diff --git a/.github/workflows/tax-benefit.yml b/.github/workflows/tax-benefit.yml new file mode 100644 index 00000000..5236a135 --- /dev/null +++ b/.github/workflows/tax-benefit.yml @@ -0,0 +1,19 @@ +name: Validate, integrate & deploy to tax-benefit.org + +on: + - push + - workflow_dispatch + +jobs: + validate_yaml: + uses: tax-benefit/actions/.github/workflows/validate_yaml.yml@v2.1.0 + with: + parameters_path: "openfisca_france_indirect_taxation/parameters" + secrets: + token: ${{ secrets.CONTROL_CENTER_TOKEN }} + deploy: + uses: tax-benefit/actions/.github/workflows/deploy.yml@v2.1.0 + with: + python_package: "openfisca_france_indirect_taxation" + secrets: + token: ${{ secrets.CONTROL_CENTER_TOKEN }} diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 00000000..bc125862 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,85 @@ +name: OpenFisca France Indirect Taxation + +on: + push: + pull_request: + types: [opened, reopened] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + os: ["ubuntu-20.04"] + python-version: ["3.10.6"] + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Cache build + id: restore-build + uses: actions/cache@v3 + with: + path: ${{ env.pythonLocation }} + key: build-${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ github.sha }}-${{ matrix.os }} + restore-keys: | # in case of a cache miss (systematically unless the same commit is built repeatedly), the keys below will be used to restore dependencies from previous builds, and the cache will be stored at the end of the job, making up-to-date dependencies available for all jobs of the workflow; see more at https://docs.github.com/en/actions/advanced-guides/caching-dependencies-to-speed-up-workflows#example-using-the-cache-action + build-${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ matrix.os }} + build-${{ env.pythonLocation }}-${{ matrix.os }} + - name: Build package + run: make build + - name: Cache release + id: restore-release + uses: actions/cache@v3 + with: + path: dist + key: release-${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ github.sha }}-${{ matrix.os }} + + lint-files: + runs-on: ubuntu-20.04 + needs: [ build ] + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 # Fetch all the tags + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.10.6 + - name: Cache build + id: restore-build + uses: actions/cache@v3 + with: + path: ${{ env.pythonLocation }} + key: build-${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ github.sha }}-ubuntu-20.04 + - name: check-syntax-errors + run: make check-syntax-errors + - name: format-style + run: make format-style + - name: check-style + run: make check-style + + tests: + runs-on: ubuntu-20.04 + needs: [ build ] + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 # Fetch all the tags + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: 3.10.6 + - name: Cache build + id: restore-build + uses: actions/cache@v3 + with: + path: ${{ env.pythonLocation }} + key: build-${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ github.sha }}-ubuntu-20.04 + - name: Test carburants + run: openfisca test --country-package openfisca_france_indirect_taxation openfisca_france_indirect_taxation/tests/formulas/*carbu* + - name: Test TVA + run: openfisca test --country-package openfisca_france_indirect_taxation openfisca_france_indirect_taxation/tests/formulas/*carbu* diff --git a/.gitignore b/.gitignore index 1c8bfde4..1a50c71f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,9 @@ -openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matched_final.csv -openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matched_rank.csv -openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_bdf.csv -openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_entd.csv -openfisca_france_indirect_taxation/assets/matching/matching_erfs/data_matched_rank.csv openfisca_france_indirect_taxation/examples/notebooks/.ipynb_checkpoints/*.ipynb openfisca_france_indirect_taxation/assets/matching/*.csv openfisca_france_indirect_taxation/assets/quaids/*.csv +openfisca_france_indirect_taxation/assets/matching/*/*.csv openfisca_france_indirect_taxation/assets/matching/*.csv openfisca_france_indirect_taxation/assets/legislation/nomenclature_coicop_by*.csv !openfisca_france_indirect_taxation/assets/quaids/data_elasticities_no_alime_all.csv @@ -44,6 +40,7 @@ sdist/ var/ *.egg-info/ .installed.cfg +.venv/ *.egg # PyInstaller @@ -78,3 +75,4 @@ docs/_build/ target/ openfisca_france_indirect_taxation/elasticite_depense.csv +openfisca_france_indirect_taxation/assets/matching/matching_enl/data_matching_bdf.csv diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d515aff6..bebd46fc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,49 +33,68 @@ Build survey collections: stage: build_collections image: $CI_REGISTRY_IMAGE:latest tags: - - ipp + - data-in before_script: - mkdir -p ~/.config/openfisca-survey-manager - cp ./runner/openfisca_survey_manager_raw_data.ini ~/.config/openfisca-survey-manager/raw_data.ini - cp ./runner/openfisca_survey_manager_config.ini ~/.config/openfisca-survey-manager/config.ini - mkdir -p /root/ci-files/data_collections - - pip3 install -e .[dev,survey] + - pip3 install -e .[dev] + - cat ~/.config/openfisca-survey-manager/raw_data.ini script: - - build-collection -c budget_des_familles -d -m -s 2005 2011 2017 - - build-collection -c aliss -m -d - - build-collection -c enquete_logement -d -m -s 2013 - - build-collection -c enquete_transports -d -m -s 2008 - - build-collection -c erfs_fpr -d -m -s 2013 - - cp ~/.config/openfisca-survey-manager/config.ini /home/ipp/data/openfisca-france-indirect-taxation/openfisca_survey_manager_config.ini + - cat ~/.config/openfisca-survey-manager/raw_data.ini + - build-collection -c budget_des_familles -d -m -s 2017 -p ~/.config/openfisca-survey-manager + - build-collection -c budget_des_familles -d -s 2011 -p ~/.config/openfisca-survey-manager + - build-collection -c budget_des_familles -d -s 2005 -p ~/.config/openfisca-survey-manager + # - build-collection -c aliss -m -d + - build-collection -c enquete_logement -d -m -s 2013 -p ~/.config/openfisca-survey-manager + - build-collection -c enquete_transports -d -m -s 2008 -p ~/.config/openfisca-survey-manager + - build-collection -c erfs_fpr -d -m -s 2013 -p ~/.config/openfisca-survey-manager + - cp ~/.config/openfisca-survey-manager/config.ini /mnt/data-out/openfisca-france-indirect-taxation/openfisca_survey_manager_config.ini when: manual Build matched data: stage: build_matched_data image: $CI_REGISTRY_IMAGE:latest tags: - - ipp + - data-in before_script: - mkdir -p ~/.config/openfisca-survey-manager - - pip3 install -e .[dev,survey] + - pip3 install -e .[dev] - cp ./runner/openfisca_survey_manager_raw_data.ini ~/.config/openfisca-survey-manager/raw_data.ini - - cp /home/ipp/data/openfisca-france-indirect-taxation/openfisca_survey_manager_config.ini ~/.config/openfisca-survey-manager/config.ini + - cp /mnt/data-out/openfisca-france-indirect-taxation/openfisca_survey_manager_config.ini ~/.config/openfisca-survey-manager/config.ini - mkdir -p /root/ci-files/data_collections script: - - build-survey-data -v - - cp ~/.config/openfisca-survey-manager/config.ini /home/ipp/data/openfisca-france-indirect-taxation/openfisca_survey_manager_config_with_matched_data.ini + - build-survey-data -v -p ~/.config/openfisca-survey-manager + - cp ~/.config/openfisca-survey-manager/config.ini /mnt/data-out/openfisca-france-indirect-taxation/openfisca_survey_manager_config_with_matched_data.ini when: manual -Test: +Test_YAML_Carburants: stage: test image: $CI_REGISTRY_IMAGE:latest tags: - - ipp + - data-in before_script: - mkdir -p ~/.config/openfisca-survey-manager - - pip3 install -e .[dev,survey] + - pip3 install -e .[dev] - cp ./runner/openfisca_survey_manager_raw_data.ini ~/.config/openfisca-survey-manager/raw_data.ini - - cp /home/ipp/data/openfisca-france-indirect-taxation/openfisca_survey_manager_config_with_matched_data.ini ~/.config/openfisca-survey-manager/config.ini + - cp /mnt/data-out/openfisca-france-indirect-taxation/openfisca_survey_manager_config_with_matched_data.ini ~/.config/openfisca-survey-manager/config.ini + - mkdir -p /root/ci-files/data_collections + script: + - openfisca test --country-package openfisca_france_indirect_taxation openfisca_france_indirect_taxation/tests/formulas/*carbu* + + +Test_All: + stage: test + image: $CI_REGISTRY_IMAGE:latest + tags: + - data-in + before_script: + - mkdir -p ~/.config/openfisca-survey-manager + - pip3 install -e .[dev] + - cp ./runner/openfisca_survey_manager_raw_data.ini ~/.config/openfisca-survey-manager/raw_data.ini + - cp /mnt/data-out/openfisca-france-indirect-taxation/openfisca_survey_manager_config_with_matched_data.ini ~/.config/openfisca-survey-manager/config.ini - mkdir -p /root/ci-files/data_collections script: - make test diff --git a/Dockerfile.ci b/Dockerfile.ci index 16ddb22e..bfc28527 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -1,4 +1,4 @@ -FROM python:3.8-buster +FROM python:3.9-buster LABEL maintainer="mahdi.benjelloul@ipp.eu" diff --git a/Makefile b/Makefile index 16d5eab5..9ff033da 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,6 @@ check-style: test: clean check-syntax-errors check-style @# Launch tests from openfisca_france_indirect_taxation/tests directory (and not .) because TaxBenefitSystem must be initialized @# before parsing source files containing formulas. - pytest openfisca test --country-package openfisca_france_indirect_taxation openfisca_france_indirect_taxation/tests diff --git a/docs/calcul_taxation_carburants.ods b/docs/calcul_taxation_carburants.ods new file mode 100644 index 00000000..ec62f025 Binary files /dev/null and b/docs/calcul_taxation_carburants.ods differ diff --git a/openfisca_france_indirect_taxation/almost_ideal_demand_system/aids_estimation_from_stata.py b/openfisca_france_indirect_taxation/almost_ideal_demand_system/aids_estimation_from_stata.py index 835b7ddd..0660d1b7 100644 --- a/openfisca_france_indirect_taxation/almost_ideal_demand_system/aids_estimation_from_stata.py +++ b/openfisca_france_indirect_taxation/almost_ideal_demand_system/aids_estimation_from_stata.py @@ -81,7 +81,7 @@ def test(): # weights are the share of the household in total consumption data_quaids['part_depenses_tot'] = data_quaids['depenses_tot'] / data_quaids['depenses_tot'].sum() data_quaids.fillna(0, inplace=True) - assert 0.999 < sum(data_quaids['part_depenses_tot']) < 1.001, "the sum of the shares is not equal to 1" + assert 0.999 < sum(data_quaids['part_depenses_tot']) < 1.001, 'the sum of the shares is not equal to 1' for i in range(1, 5): data_quaids['el_{}'.format(i)] = \ @@ -112,7 +112,7 @@ def test(): sum(data_quaids['el_uncomp_{}'.format(i)]) -if __name__ == "__main__": +if __name__ == '__main__': year = 2011 create_data_elasticities() df = get_elasticities(year) diff --git a/openfisca_france_indirect_taxation/almost_ideal_demand_system/elasticites_aidsills.py b/openfisca_france_indirect_taxation/almost_ideal_demand_system/elasticites_aidsills.py index 1a34bf70..406e6ffa 100644 --- a/openfisca_france_indirect_taxation/almost_ideal_demand_system/elasticites_aidsills.py +++ b/openfisca_france_indirect_taxation/almost_ideal_demand_system/elasticites_aidsills.py @@ -164,7 +164,7 @@ def get_elasticities_aidsills(data_year, non_positive): return dataframe -if __name__ == "__main__": +if __name__ == '__main__': year = 2011 create_data_elasticities_aidsills() df = get_elasticities_aidsills(year, True) diff --git a/openfisca_france_indirect_taxation/almost_ideal_demand_system/test_build_energy.py b/openfisca_france_indirect_taxation/almost_ideal_demand_system/test_build_energy.py index a403fdf3..72a7282f 100644 --- a/openfisca_france_indirect_taxation/almost_ideal_demand_system/test_build_energy.py +++ b/openfisca_france_indirect_taxation/almost_ideal_demand_system/test_build_energy.py @@ -7,7 +7,7 @@ from openfisca_france_indirect_taxation.almost_ideal_demand_system.aids_price_index_builder import \ df_indice_prix_produit -""" Check if depenses_tot is equal to the sum of all expenses """ +''' Check if depenses_tot is equal to the sum of all expenses ''' aggregates_data_frame['dep_tot'] = 0 for i in range(1, 13): @@ -17,7 +17,7 @@ 'Issue in depenses_tot calculation' -""" Check that the sum of the share for the four categories is 1 """ +''' Check that the sum of the share for the four categories is 1 ''' data_frame_for_reg['sum_shares'] = 0 for i in range(1, 5): @@ -26,14 +26,14 @@ del data_frame_for_reg['sum_shares'] -""" Check that the prices do not take unlikely values """ +''' Check that the prices do not take unlikely values ''' # This test is problematic, it does not achieves its goal for i in range(1, 5): assert (data_frame_for_reg['p{}'.format(i)] > 500).any(), 'Some prices seem too small' assert (data_frame_for_reg['p{}'.format(i)] < 200).any(), 'Some prices seem too big' -""" Check period fixed effects sum to 1 """ +''' Check period fixed effects sum to 1 ''' data_frame_for_reg['sum_vag'] = 0 for i in range(0, 30): @@ -44,8 +44,8 @@ assert (data_frame_for_reg['sum_vag'] == 1).any(), 'Vag fixed effects do not sum to 1' -""" Check if the price index of all goods in aggregate_data_frame is filled in indice_prix_mensuel_98_15 -If this was not the case, we would have issues in the calculation of the price index for some people """ +''' Check if the price index of all goods in aggregate_data_frame is filled in indice_prix_mensuel_98_15 +If this was not the case, we would have issues in the calculation of the price index for some people ''' df_bien = df_indice_prix_produit[['bien']] df_bien = df_bien.drop_duplicates(subset = 'bien', take_last = True) @@ -61,9 +61,9 @@ 'The price indexes is not filled for some goods in df_indice_prix_produit (or before)' -""" Check if the goods that drop from the dataframe in the match with prices are meaningful goods or not. If the test +''' Check if the goods that drop from the dataframe in the match with prices are meaningful goods or not. If the test fails, it means that some meaningful goods are not matched with any price. This test achieves the same goal as the -previous one but in a later stage of the dataframe construction """ +previous one but in a later stage of the dataframe construction ''' check = df.drop_duplicates(subset = ['indice_prix_produit'], keep = 'last') check = check['indice_prix_produit'] @@ -79,7 +79,7 @@ del common, short_name -""" Check if the shares of each poste in their broad category sum to 1 """ +''' Check if the shares of each poste in their broad category sum to 1 ''' for i in range(0, 100): df_ident_men_0 = df_depenses_prix[df_depenses_prix['ident_men'] == '{}'.format(i)] diff --git a/openfisca_france_indirect_taxation/almost_ideal_demand_system/test_build_energy_no_alime.py b/openfisca_france_indirect_taxation/almost_ideal_demand_system/test_build_energy_no_alime.py index 2cd65d63..f8ea3403 100644 --- a/openfisca_france_indirect_taxation/almost_ideal_demand_system/test_build_energy_no_alime.py +++ b/openfisca_france_indirect_taxation/almost_ideal_demand_system/test_build_energy_no_alime.py @@ -31,7 +31,7 @@ data_frame_for_reg_2011.set_index('Unnamed: 0', inplace = True) -""" Check that the sum of the share for the four categories is 1 """ +''' Check that the sum of the share for the four categories is 1 ''' data_frame_for_reg_2011['sum_shares'] = 0 for i in range(1, 4): @@ -40,13 +40,13 @@ del data_frame_for_reg_2011['sum_shares'] -""" Check that the prices do not take unlikely values """ +''' Check that the prices do not take unlikely values ''' for i in range(1, 4): assert max(data_frame_for_reg_2011['p{}'.format(i)]) < 400, 'Some prices seem too big' assert min(data_frame_for_reg_2011['p{}'.format(i)]) > 10, 'Some prices seem too small' -""" Check period fixed effects sum to 1 """ +''' Check period fixed effects sum to 1 ''' data_frame_for_reg_2011['sum_vag'] = 0 for i in range(0, 30): diff --git a/openfisca_france_indirect_taxation/assets/documentation.md b/openfisca_france_indirect_taxation/assets/documentation.md index ed054cde..dcd423de 100644 --- a/openfisca_france_indirect_taxation/assets/documentation.md +++ b/openfisca_france_indirect_taxation/assets/documentation.md @@ -1,6 +1,6 @@ Prix du sp_e10 : en 2009 le sp_e10 est introduit sur le marché, et représente en moyenne près de 6% des consommations d’essence dès sa -première année. Toutefois, nos données de prix de l’e10 ne commencent qu’en 2013. Etant donné la proximité entre le prix de l’e10 -et celui du sp95 classique en 2013 et 2014, nous appliquons pour l’e10 les prix du sp95 entre 2009 et 2012 inclus. +première année. Toutefois, nos données de prix de l'E10 ne commencent qu’en 2013. Etant donné la proximité entre le prix de l’e10 +et celui du SP95 classique en 2013 et 2014, nous appliquons pour l'E10 les prix du SP95 entre 2009 et 2012 inclus. Part des types de carburants : nos données ne commençant qu’en 2001, nous appliquons pour 2000 les mêmes parts qu’en 2001. De même, les parts de 2011 sont élargies jusqu’en 2015. diff --git a/openfisca_france_indirect_taxation/assets/inflateurs/inflators_by_year_wip.csv b/openfisca_france_indirect_taxation/assets/inflateurs/inflators_by_year_wip.csv index 2f16736f..b468a275 100644 --- a/openfisca_france_indirect_taxation/assets/inflateurs/inflators_by_year_wip.csv +++ b/openfisca_france_indirect_taxation/assets/inflateurs/inflators_by_year_wip.csv @@ -1,117 +1,91 @@ -loyer_impute,1.3705966261289382,2011 -depenses_electricite,1.1123754146020817,2011 -depenses_gaz_ville,1.5096127816073226,2011 -depenses_combustibles_liquides,1.5308685381500458,2011 -depenses_combustibles_solides,1.2050390283658854,2011 -depenses_carburants,1.1039672695542464,2011 -depenses_tot,1.2707961552308173,2011 -rev_disponible,1.4429859121265207,2011 -rev_disp_loyerimput,1.1277692906497165,2011 -depenses_gaz_liquefie,1.5096127816073226,2011 -depenses_diesel,1.1039672695542464,2011 -depenses_essence,1.1039672695542464,2011 -revtot,1.4429859121265207,2011 -loyer_impute,1.4145210896094844,2012 -depenses_electricite,1.2438755171757327,2012 -depenses_gaz_ville,1.6345090765384598,2012 -depenses_combustibles_liquides,1.7146656703283385,2012 -depenses_combustibles_solides,1.201658370555319,2012 -depenses_carburants,1.140172158911232,2012 -depenses_tot,1.2853325824740642,2012 -rev_disponible,1.4574612143145158,2012 -rev_disp_loyerimput,1.1357018393983587,2012 -depenses_gaz_liquefie,1.6345090765384598,2012 -depenses_diesel,1.140172158911232,2012 -depenses_essence,1.140172158911232,2012 -revtot,1.4574612143145158,2012 -loyer_impute,1.4537477398518701,2013 -depenses_electricite,1.345929765125562,2013 -depenses_gaz_ville,1.769321942043223,2013 -depenses_combustibles_liquides,1.5864560091388822,2013 -depenses_combustibles_solides,1.38792631956344,2013 -depenses_carburants,1.0972034081004096,2013 -depenses_tot,1.3011237056353988,2013 -rev_disponible,1.4497936489793777,2013 -rev_disp_loyerimput,1.1244985867371504,2013 -depenses_gaz_liquefie,1.769321942043223,2013 -depenses_diesel,1.0972034081004096,2013 -depenses_essence,1.0972034081004096,2013 -revtot,1.4497936489793777,2013 -loyer_impute,1.4823894114260716,2014 -depenses_electricite,1.2903745465996819,2014 -depenses_gaz_ville,1.4510771695473093,2014 -depenses_combustibles_liquides,1.3169066989403424,2014 -depenses_combustibles_solides,1.5249172255806283,2014 -depenses_carburants,1.0575088104622405,2014 -depenses_tot,1.3131442631017747,2014 -rev_disponible,1.468876497933728,2014 -rev_disp_loyerimput,1.1382346715862834,2014 -depenses_gaz_liquefie,1.4510771695473093,2014 -depenses_diesel,1.0575088104622405,2014 -depenses_essence,1.0575088104622405,2014 -revtot,1.468876497933728,2014 -loyer_impute,1.5055721962558577,2015 -depenses_electricite,1.3945472013569804,2015 -depenses_gaz_ville,1.443970318189655,2015 -depenses_combustibles_liquides,1.086645214366492,2015 -depenses_combustibles_solides,1.5571795824848569,2015 -depenses_carburants,0.9756784762003746,2015 -depenses_tot,1.3344181822541437,2015 -rev_disponible,1.4852049738782258,2015 -rev_disp_loyerimput,1.1501365469380433,2015 -depenses_gaz_liquefie,1.443970318189655,2015 -depenses_diesel,0.9756784762003746,2015 -depenses_essence,0.9756784762003746,2015 -revtot,1.4852049738782258,2015 -loyer_impute,1.5260677733447854,2016 -depenses_electricite,1.4489902563089392,2016 -depenses_gaz_ville,1.496786220557063,2016 -depenses_combustibles_liquides,1.0022733903510286,2016 -depenses_combustibles_solides,1.5768443878628913,2016 -depenses_carburants,0.9509522921978825,2016 -depenses_tot,1.3618175330851263,2016 -rev_disponible,1.5117863979500417,2016 -rev_disp_loyerimput,1.1714437510239935,2016 -depenses_gaz_liquefie,1.496786220557063,2016 -depenses_diesel,0.9509522921978825,2016 -depenses_essence,0.9509522921978825,2016 -revtot,1.5117863979500417,2016 -loyer_impute,1.5489605655500205,2017 -depenses_electricite,1.4407814299299957,2017 -depenses_gaz_ville,1.4526087375989516,2017 -depenses_combustibles_liquides,1.2122078531279084,2017 -depenses_combustibles_solides,1.5955163066346705,2017 -depenses_carburants,1.0326506470202648,2017 -depenses_tot,1.3938488523943549,2017 -rev_disponible,1.5503841210814513,2017 -rev_disp_loyerimput,1.2031524519803853,2017 -depenses_gaz_liquefie,1.4526087375989516,2017 -depenses_diesel,1.0326506470202648,2017 -depenses_essence,1.0326506470202648,2017 -revtot,1.5503841210814513,2017 -loyer_impute,1.576840880335594,2018 -depenses_electricite,1.4783301905923876,2018 -depenses_gaz_ville,1.4782989723622797,2018 -depenses_combustibles_liquides,1.5022014544886026,2018 -depenses_combustibles_solides,1.6071338871527392,2018 -depenses_carburants,1.1612469965743724,2018 -depenses_tot,1.4300985296023405,2018 -rev_disponible,1.596809665439816,2018 -rev_disp_loyerimput,1.2412532212319902,2018 -depenses_gaz_liquefie,1.4782989723622797,2018 -depenses_diesel,1.1612469965743724,2018 -depenses_essence,1.1612469965743724,2018 -revtot,1.596809665439816,2018 -loyer_impute,1.6102171387410447,2019 -depenses_electricite,1.5199039241889707,2019 -depenses_gaz_ville,1.515172973920927,2019 -depenses_combustibles_liquides,1.4720451096190557,2019 -depenses_combustibles_solides,1.6697559719116486,2019 -depenses_carburants,1.1726815956894496,2019 -depenses_tot,1.4657031153099314,2019 -rev_disponible,1.6459759898738016,2019 -rev_disp_loyerimput,1.281171978289918,2019 -depenses_gaz_liquefie,1.515172973920927,2019 -depenses_diesel,1.1726815956894496,2019 -depenses_essence,1.1726815956894496,2019 -revtot,1.6459759898738016,2019 +loyer_impute,1.857673821820721,2011 +depenses_electricite,1.4540605992137672,2011 +depenses_gaz_ville,2.3730946136342657,2011 +depenses_combustibles_liquides,3.542608464997074,2011 +depenses_combustibles_solides,1.5166171016527261,2011 +depenses_carburants,1.6758332963199403,2011 +depenses_tot,1.923435452196511,2011 +rev_disponible,2.157293775660784,2011 +rev_disp_loyerimput,1.6667987620704543,2011 +depenses_gaz_liquefie,2.3730946136342657,2011 +depenses_diesel,1.6758332963199403,2011 +depenses_essence,1.6758332963199403,2011 +revtot,2.157293775660784,2011 +loyer_impute,1.9172079870081777,2012 +depenses_electricite,1.62595321337525,2012 +depenses_gaz_ville,2.569430209341387,2012 +depenses_combustibles_liquides,3.9679364798270367,2012 +depenses_combustibles_solides,1.512362332031452,2012 +depenses_carburants,1.730792678493031,2012 +depenses_tot,1.9454373125207247,2012 +rev_disponible,2.1789346517417925,2012 +rev_disp_loyerimput,1.678522757876975,2012 +depenses_gaz_liquefie,2.569430209341387,2012 +depenses_diesel,1.730792678493031,2012 +depenses_essence,1.730792678493031,2012 +revtot,2.1789346517417925,2012 +loyer_impute,1.9703748487119086,2013 +depenses_electricite,1.7593551737011368,2013 +depenses_gaz_ville,2.78135454442639,2013 +depenses_combustibles_liquides,3.671244360480825,2013 +depenses_combustibles_solides,1.7467922138076295,2013 +depenses_carburants,1.6655656873530442,2013 +depenses_tot,1.9693382395053483,2013 +rev_disponible,2.1674714830213238,2013 +rev_disp_loyerimput,1.6619647900180468,2013 +depenses_gaz_liquefie,2.78135454442639,2013 +depenses_diesel,1.6655656873530442,2013 +depenses_essence,1.6655656873530442,2013 +revtot,2.1674714830213238,2013 +loyer_impute,2.009195083989195,2014 +depenses_electricite,1.6867352170940506,2014 +depenses_gaz_ville,2.2810772782103426,2014 +depenses_combustibles_liquides,3.0474757975724684,2014 +depenses_combustibles_solides,1.9192038502326418,2014 +depenses_carburants,1.6053088932970698,2014 +depenses_tot,1.9875321617098056,2014 +rev_disponible,2.196000736789593,2014 +rev_disp_loyerimput,1.6822661844717293,2014 +depenses_gaz_liquefie,2.2810772782103426,2014 +depenses_diesel,1.6053088932970698,2014 +depenses_essence,1.6053088932970698,2014 +revtot,2.196000736789593,2014 +loyer_impute,2.0406164749908866,2015 +depenses_electricite,1.822906289206671,2015 +depenses_gaz_ville,2.2699053863966077,2015 +depenses_combustibles_liquides,2.514623848443076,2015 +depenses_combustibles_solides,1.9598080473323227,2015 +depenses_carburants,1.4810896319231377,2015 +depenses_tot,2.019731669188955,2015 +rev_disponible,2.2204121459551756,2015 +rev_disp_loyerimput,1.6998566892559137,2015 +depenses_gaz_liquefie,2.2699053863966077,2015 +depenses_diesel,1.4810896319231377,2015 +depenses_essence,1.4810896319231377,2015 +revtot,2.2204121459551756,2015 +loyer_impute,2.068395689017368,2016 +depenses_electricite,1.894072462125722,2016 +depenses_gaz_ville,2.35293140137833,2016 +depenses_combustibles_liquides,2.3193776006329143,2016 +depenses_combustibles_solides,1.9845574367171985,2016 +depenses_carburants,1.443555038656581,2016 +depenses_tot,2.061202429498196,2016 +rev_disponible,2.2601519245742336,2016 +rev_disp_loyerimput,1.7313479008788015,2016 +depenses_gaz_liquefie,2.35293140137833,2016 +depenses_diesel,1.443555038656581,2016 +depenses_essence,1.443555038656581,2016 +revtot,2.2601519245742336,2016 +loyer_impute,2.0994240309651806,2017 +depenses_electricite,1.8833421539521298,2017 +depenses_gaz_ville,2.2834848862658976,2017 +depenses_combustibles_liquides,2.8051904489567288,2017 +depenses_combustibles_solides,2.008057216113018,2017 +depenses_carburants,1.5675739539285807,2017 +depenses_tot,2.109683985636368,2017 +rev_disponible,2.317856318751831,2017 +rev_disp_loyerimput,1.7782121167598066,2017 +depenses_gaz_liquefie,2.2834848862658976,2017 +depenses_diesel,1.5675739539285807,2017 +depenses_essence,1.5675739539285807,2017 +revtot,2.317856318751831,2017 diff --git a/openfisca_france_indirect_taxation/assets/matching/matching_enl/data_matching_bdf.csv b/openfisca_france_indirect_taxation/assets/matching/matching_enl/data_matching_bdf.csv index dae767be..e5fabe60 100644 --- a/openfisca_france_indirect_taxation/assets/matching/matching_enl/data_matching_bdf.csv +++ b/openfisca_france_indirect_taxation/assets/matching/matching_enl/data_matching_bdf.csv @@ -1,10259 +1,11991 @@ ,aba,agepr,aise,amr,ancons,cataeu,chaufp,cs42cj,cs42pr,decuc,depenses_combustibles_liquides,depenses_combustibles_solides,depenses_electricite,depenses_gaz_liquefie,depenses_gaz_ville,depenses_tot,dip14cj,dip14pr,htl,ident_men,identifiant_menage,mchof,mchof_d,mfac_eau1_d,mloy_d,nactifs,nbh1,nbphab,nenfants,npers,ocde10,pondmen,poste_04_5_1_1_1_a,poste_04_5_1_1_1_b,poste_04_5_2_1_1,poste_04_5_5_1_1,revtot,situacj,situapr,stalog,surfhab_d,tau,tuu,typmen,zeat,fioul,gaz_ville,electricite,strate,rural,petite_ville,moyenne_ville,grande_ville,paris,bat_av_49,bat_49_74,bat_ap_74,log_indiv,log_colec,ouest_sud,est_nord,aides_logement,depenses_energies,part_energies_depenses_tot,part_energies_revtot,niveau_vie,niveau_vie_decile,niveau_vie_quintile,donation_class_1,donation_class_2,donation_class_3,donation_class_4 -0,1,40.0,4,435.0,4,111,1,56,85,2.0,0.0,0.0,463.8643610213215,0.0,1584.974212579044,16004.0,50,50,2,1,201100000,600.0,600.0,,,1.0,4.0,6.0,1.0,3.0,1.8,2901.594333826595,0.0,340.0,912.0,0.0,22071.0,1,7,3,93.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2048.8385736003656,0.1280204057485857,0.09282944015225253,12261.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_1 -1,2,55.0,3,0.0,6,112,2,55,21,10.0,3648.848821019429,69.396315978172,1170.5753581067465,0.0,0.0,86501.0,50,50,1,100,201100001,,,,,2.0,2.0,7.0,0.0,2.0,1.5,3901.7820205411404,0.0,858.0,0.0,0.0,72842.0,1,1,1,120.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4888.820495104348,0.05651750263123372,0.06711540725274358,48561.333333333336,10,5,10,10_1,10_0,10_0_0 -2,2,40.0,2,0.0,1,400,4,0,62,8.0,95.18736054833293,0.0,866.3349095545268,34.7582064162071,0.0,23090.0,0,50,2,1000,201100002,,,,375.0,1.0,0.0,3.0,0.0,1.0,1.0,2462.481170695108,0.0,635.0,0.0,0.0,27868.0,0,1,3,63.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,996.2804765190668,0.043147703617109866,0.03574998121569782,27868.0,8,4,8,8_0,8_0,8_1_0 -3,2,77.0,2,0.0,2,111,2,0,77,4.0,0.0,0.0,327.43366660328576,0.0,1147.0208117348345,11282.0,0,71,1,10000,201100003,,,160.0,237.0,0.0,1.0,3.0,0.0,1.0,1.0,2311.85347947249,0.0,240.0,660.0,0.0,16410.0,0,5,3,40.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1474.4544783381202,0.130690877356685,0.0898509736951932,16410.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -4,1,23.0,3,70.0,1,111,2,55,68,7.0,0.0,0.0,545.7227776721429,0.0,1282.5778167580422,15115.0,42,50,2,10003,201100004,,,,290.0,2.0,0.0,2.0,0.0,2.0,1.5,2890.751237990757,0.0,400.0,738.0,0.0,33493.0,4,1,3,47.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1828.3005944301851,0.12095935126895038,0.05458754349954274,22328.666666666668,7,4,7,7_0,7_3,7_1_0 -5,2,65.0,2,0.0,4,212,6,72,72,5.0,2855.620816449988,0.0,2592.183193942679,0.0,0.0,25900.0,60,50,1,10004,201100005,,,385.0,,0.0,3.0,6.0,0.0,2.0,1.5,2182.487377422031,0.0,1900.0,0.0,0.0,27444.0,5,5,1,120.0,2,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5447.804010392667,0.21033992318118405,0.1985061948109848,18296.0,5,3,5,5_1,5_0,5_0_1 -6,2,63.0,3,0.0,1,111,2,64,78,4.0,3172.912018277764,0.0,1581.231748305034,0.0,0.0,29642.0,71,50,1,10005,201100006,,,370.0,,1.0,7.0,6.0,0.0,2.0,1.5,2257.887725689142,0.0,1159.0,0.0,0.0,23460.0,6,5,1,148.0,8,7.0,3,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4754.143766582798,0.16038539122133452,0.20264892440676888,15640.0,4,2,4_0,4_1_0,4_3_0,4_1_0 -7,2,38.0,2,0.0,4,112,5,55,43,7.0,0.0,1040.94473967258,1637.1683330164287,281.54147197127753,0.0,50321.0,50,41,1,10006,201100007,,,450.0,,2.0,1.0,10.0,2.0,6.0,3.3,770.8421128822018,0.0,1200.0,0.0,0.0,72351.0,1,1,1,120.0,6,0.0,5,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2959.6545446602863,0.058815495412656474,0.040906892021676085,21924.545454545456,7,4,7,7_1,7_0,7_0_1 -8,2,90.0,3,0.0,1,300,4,0,78,3.0,0.0,0.0,1869.1005135270893,1018.4154479948681,0.0,20474.0,0,71,1,10007,201100008,,,150.0,,0.0,6.0,4.0,0.0,1.0,1.0,3256.207012676663,0.0,1370.0,0.0,0.0,12352.0,0,5,5,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2887.5159615219573,0.14103330866083605,0.23376910310249005,12352.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -9,2,70.0,3,0.0,6,111,2,77,74,8.0,0.0,0.0,1060.6181579212657,0.0,2978.075559741452,37789.0,50,70,1,10009,201100009,,,318.0,,0.0,2.0,7.0,0.0,2.0,1.5,981.8993171013101,1037.0,382.0,1072.0,0.0,39346.0,5,5,1,137.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4038.6937176627175,0.10687485029142654,0.10264559847666135,26230.666666666668,8,4,8,8_1,8_3,8_0_0 -10,2,77.0,4,0.0,1,111,4,77,78,3.0,0.0,0.0,497.9720346258304,0.0,203.33550753481157,14435.0,50,70,2,1001,201100010,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2693.911866011353,0.0,365.0,117.0,0.0,21626.0,5,5,1,80.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,701.307542160642,0.048583826959517976,0.03242890697126801,14417.333333333334,3,2,3_0,3_0_0,3_3_0,3_1_0 -11,2,55.0,2,0.0,4,111,1,52,46,7.0,0.0,0.0,458.40713324460006,33.02029609539675,0.0,37575.0,50,41,2,10010,201100011,,,,375.0,2.0,6.0,2.0,0.0,2.0,1.5,3734.0928562723343,0.0,336.0,0.0,0.0,32697.0,1,1,3,68.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,491.4274293399968,0.013078574300465651,0.01502974062880377,21798.0,7,4,7,7_0,7_3,7_0_1 -12,2,60.0,4,0.0,5,111,1,77,78,2.0,0.0,0.0,818.5841665082144,86.89551604051776,0.0,12723.0,71,71,2,10011,201100012,,,,290.0,0.0,1.0,4.0,0.0,2.0,1.5,6186.465363226179,0.0,600.0,0.0,0.0,16390.0,7,5,3,78.0,6,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,905.4796825487322,0.07116872455778764,0.05524586226654864,10926.666666666666,2,1,2_0,2_0_0,2_2_0,2_0_0 -14,2,77.0,3,0.0,4,111,1,0,77,4.0,0.0,0.0,294.69029994295715,0.0,333.6787815955882,8553.0,0,71,8,10016,201100014,,,,237.0,0.0,9.0,4.0,0.0,1.0,1.0,3884.466618495088,0.0,216.0,192.0,0.0,16106.0,0,5,3,60.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,628.3690815385453,0.0734676816951415,0.03901459589833263,16106.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -15,2,64.0,2,0.0,5,112,4,74,75,8.0,0.0,610.6875806079136,1889.5651176897948,104.27461924862132,0.0,25196.0,70,70,1,10017,201100015,,,180.0,,0.0,2.0,4.0,0.0,2.0,1.5,1682.583381047865,0.0,1385.0,0.0,0.0,37148.0,5,5,1,71.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2604.52731754633,0.10337066667512025,0.07011218147804268,24765.333333333332,7,4,7,7_1,7_0,7_0_0 -16,2,58.0,3,0.0,5,112,2,0,78,9.0,0.0,0.0,1454.3243335426182,0.0,2879.7516283614495,29647.0,0,50,1,10018,201100016,,,258.0,,1.0,1.0,4.0,1.0,2.0,1.5,2244.3244404912575,1327.0,560.0,836.0,0.0,46604.0,0,5,1,98.0,7,1.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4334.075961904067,0.14618936020184395,0.09299793927354019,31069.333333333332,9,5,9,9_1,9_1,9_0_0 -17,2,73.0,3,0.0,1,221,5,0,77,3.0,0.0,874.3935813249672,1268.8054580877322,140.77073598563877,0.0,12129.0,0,70,2,10019,201100017,,,,201.0,0.0,2.0,2.0,0.0,1.0,1.0,2292.4776815900336,0.0,930.0,0.0,0.0,14226.0,0,5,3,50.0,1,3.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,2283.969775398338,0.18830651953156383,0.16054897901014606,14226.0,3,2,3_0,3_0_0,3_1_0,3_1_0 -18,2,34.0,1,0.0,5,111,4,0,34,10.0,0.0,0.0,641.2242637647679,0.0,0.0,22007.0,0,10,2,1002,201100018,,,119.0,,1.0,0.0,2.0,0.0,1.0,1.0,1971.793488671841,0.0,470.0,0.0,0.0,53695.0,0,1,2,45.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,641.2242637647679,0.029137286489061113,0.011941973438211526,53695.0,10,5,10,10_0,10_2,10_0_0 -19,2,40.0,2,0.0,8,111,1,67,45,6.0,0.0,0.0,623.4882734904232,0.0,1204.3718523215762,50085.0,50,31,1,10020,201100019,,,225.0,,2.0,0.0,5.0,2.0,4.0,2.3,2529.3678696450543,0.0,457.0,693.0,0.0,47272.0,1,1,1,110.0,7,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1827.8601258119993,0.03649516074297692,0.03866686676705025,20553.04347826087,6,3,6,6_1,6_2,6_0_0 -20,2,22.0,2,0.0,7,111,4,0,46,7.0,0.0,0.0,586.6519859975537,0.0,0.0,29210.0,0,50,2,10021,201100020,,,,445.0,1.0,0.0,1.0,0.0,1.0,1.0,3672.7274431704373,0.0,430.0,0.0,0.0,21830.0,0,1,3,18.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,586.6519859975537,0.020083943375472566,0.026873659459347395,21830.0,7,4,7,7_0,7_3,7_0_0 -21,2,67.0,3,0.0,99,111,2,78,77,8.0,0.0,0.0,422.93515269591074,0.0,573.5104058674173,29862.0,70,70,2,10022,201100021,,,,,1.0,2.0,5.0,0.0,3.0,2.0,1918.1117686787602,0.0,310.0,330.0,0.0,53490.0,5,5,1,90.0,8,7.0,5,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,996.445558563328,0.03336834634529931,0.01862863261475655,26745.0,8,4,8,8_0,8_3,8_0_0 -22,2,62.0,2,0.0,7,111,5,71,77,4.0,0.0,804.9972653467952,1050.5163470188752,208.54923849724264,0.0,19554.0,71,60,1,10025,201100022,,,,,0.0,1.0,4.0,0.0,2.0,1.5,3507.8951889101977,0.0,770.0,0.0,0.0,22532.0,5,5,1,125.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2064.062850862913,0.10555706509475876,0.09160584283964641,15021.333333333334,4,2,4_0,4_1_0,4_3_0,4_0_0 -23,2,35.0,1,0.0,5,111,1,37,37,10.0,0.0,0.0,477.50743046312505,0.0,0.0,48598.0,12,31,2,10027,201100023,,,,,2.0,0.0,4.0,1.0,3.0,1.8,4131.035496796082,0.0,350.0,0.0,0.0,183051.0,1,1,2,72.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,477.50743046312505,0.00982566011899924,0.002608603233323637,101695.0,10,5,10,10_0,10_4,10_0_0 -24,2,49.0,3,0.0,7,112,2,56,62,4.0,0.0,0.0,1773.5990274344645,239.831624271829,0.0,33822.0,71,71,1,10028,201100024,,,470.0,,3.0,1.0,5.0,2.0,4.0,2.5,3152.524227620716,0.0,1300.0,0.0,0.0,39812.0,1,1,2,100.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2013.4306517062935,0.05953020672066387,0.05057346156199873,15924.8,4,2,4_0,4_1_0,4_0_0,4_0_0 -25,2,45.0,2,0.0,7,112,4,48,48,8.0,0.0,208.188947934516,1630.238922814731,50.3993993035003,50.53681552954608,49498.0,42,71,1,10029,201100025,,,337.0,,2.0,0.0,5.0,2.0,4.0,2.5,2277.880171966629,47.0,1177.0,0.0,0.0,65199.0,1,1,2,100.0,10,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1939.3640855822935,0.039180655492793516,0.029745304154700124,26079.6,8,4,8,8_1,8_1,8_0_0 -26,1,68.0,3,19.0,1,120,2,0,78,4.0,0.0,0.0,38.20059443705,0.0,121.65372245672486,14386.0,0,71,1,1003,201100026,,,,,0.0,0.0,3.0,0.0,1.0,1.0,5430.654491591048,0.0,28.0,70.0,0.0,15936.0,0,5,3,40.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,159.85431689377486,0.011111797365061508,0.010031018881386475,15936.0,4,2,4_1,4_1_1,4_1_1,4_1_0 -27,2,54.0,3,0.0,8,112,4,0,62,3.0,0.0,0.0,1920.944177405943,86.89551604051776,0.0,29775.0,0,60,1,10030,201100027,,,328.0,,2.0,0.0,4.0,1.0,2.0,1.5,1846.9384900269363,0.0,1408.0,0.0,0.0,20569.0,0,1,1,98.0,7,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2007.8396934464608,0.06743374285294579,0.09761484240587587,13712.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0 -28,1,23.0,2,35.0,1,111,4,0,42,6.0,0.0,0.0,477.50743046312505,0.0,0.0,32839.0,0,41,2,10031,201100028,,,200.0,,2.0,0.0,1.0,0.0,2.0,1.5,5360.809557850722,0.0,350.0,0.0,0.0,31263.0,0,1,3,35.0,5,4.0,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,477.50743046312505,0.014540863925915071,0.015273883839142919,20842.0,6,3,6,6_0,6_2,6_1_0 -29,2,48.0,3,0.0,5,111,2,43,64,5.0,1586.456009138882,69.396315978172,1049.8898855342027,0.0,946.221226936182,48541.0,42,71,1,10032,201100029,,,439.0,,2.0,0.0,5.0,3.0,5.0,2.8,2162.6951787946846,880.0,434.0,0.0,0.0,48691.0,1,1,2,150.0,6,4.0,4,4,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3651.963437587439,0.07523461481196182,0.07500284318636789,17389.64285714286,5,3,5,5_1,5_2,5_0_0 -30,2,39.0,4,0.0,8,112,2,52,43,7.0,0.0,0.0,955.0148609262501,0.0,1668.3939079779411,51160.0,44,33,1,10033,201100030,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1690.965596418021,0.0,700.0,960.0,0.0,50833.0,1,1,2,128.0,8,2.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2623.408768904191,0.05127851385661046,0.05160837977109734,24206.190476190473,7,4,7,7_1,7_1,7_0_0 -31,2,52.0,1,0.0,1,112,2,0,34,10.0,0.0,0.0,341.0767360450893,0.0,1824.805836850873,44991.0,0,10,2,10034,201100031,,,,503.0,1.0,0.0,2.0,0.0,1.0,1.0,1638.9963874008429,0.0,250.0,1050.0,0.0,44968.0,0,1,3,45.0,10,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2165.8825728959623,0.048140351912515,0.048164974490659186,44968.0,10,5,10,10_0,10_2,10_1_0 -32,2,72.0,2,0.0,5,111,2,77,75,7.0,2062.392811880547,0.0,1023.230208135268,333.6787815955882,0.0,26778.0,71,50,1,10036,201100032,,,681.0,,0.0,3.0,4.0,0.0,2.0,1.5,3222.9703224809646,0.0,750.0,0.0,0.0,32961.0,5,5,1,90.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3419.3018016114033,0.1276907088509748,0.103737805333922,21974.0,7,4,7,7_1,7_3,7_0_0 -33,1,41.0,3,226.0,4,111,2,63,68,5.0,0.0,0.0,439.306836026075,0.0,1320.81184381587,5465.0,71,50,2,10037,201100033,,,,,3.0,0.0,3.0,1.0,3.0,2.0,2612.196796452352,0.0,322.0,760.0,0.0,33882.0,4,1,3,50.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1760.1186798419449,0.32207112165451873,0.05194848827819919,16941.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -34,2,68.0,2,0.0,5,112,4,75,74,8.0,0.0,0.0,2633.1124022680897,104.27461924862132,0.0,20704.0,33,31,1,10038,201100034,,,168.0,,0.0,2.0,6.0,0.0,2.0,1.5,1873.2891571993578,0.0,1930.0,0.0,0.0,37617.0,6,5,1,160.0,7,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2737.387021516711,0.13221537005007297,0.07276994501200816,25078.0,8,4,8,8_1,8_0,8_0_0 -35,2,43.0,1,0.0,3,120,6,0,62,9.0,5869.887233813864,90.21521077162359,1088.716941455925,154.67401855212162,0.0,72178.0,0,50,1,10039,201100035,,,760.0,,2.0,3.0,5.0,2.0,3.0,2.0,921.1287178752167,0.0,798.0,0.0,0.0,65081.0,0,1,1,115.0,0,1.0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,7203.493404593534,0.09980178731183371,0.11068504486092,32540.5,9,5,9,9_1,9_1,9_0_1 -36,2,66.0,2,0.0,5,112,4,72,72,10.0,0.0,0.0,1091.4455553442858,417.0984769944853,0.0,13114.0,70,70,1,10040,201100036,,,350.0,,0.0,2.0,6.0,0.0,2.0,1.5,2673.5375690978,0.0,800.0,0.0,0.0,84435.0,5,5,1,140.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1508.544032338771,0.11503309686890126,0.01786633543363263,56290.0,10,5,10,10_1,10_1,10_0_0 -37,1,86.0,3,267.0,2,111,2,0,77,3.0,0.0,0.0,421.36630014266063,0.0,870.9536293389857,13398.0,0,71,1,10041,201100037,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2729.044887453408,810.0,0.0,0.0,0.0,14326.0,0,5,3,55.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1292.3199294816463,0.09645618222732097,0.0902080084798022,14326.0,3,2,3_1,3_1_1,3_2_1,3_0_1 -38,1,46.0,4,120.0,99,112,5,0,52,3.0,0.0,992.3673184878595,641.2242637647679,59.088950907552075,0.0,18408.0,0,50,1,10043,201100038,,,,,1.0,0.0,4.0,1.0,2.0,1.3,2196.351563066034,0.0,470.0,0.0,0.0,16354.0,0,1,3,90.0,6,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1692.6805331601795,0.09195352744242609,0.10350253963312825,12580.0,2,1,2_1,2_1_1,2_0_1,2_0_0 -39,2,71.0,4,0.0,3,111,1,77,77,7.0,0.0,0.0,624.8525804346036,0.0,213.76296945967368,31428.0,70,41,2,10044,201100039,,,,345.0,3.0,0.0,5.0,3.0,5.0,3.0,1633.6701544457776,0.0,458.0,123.0,0.0,68942.0,5,5,3,98.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,838.6155498942774,0.02668370720040338,0.012164073422504095,22980.666666666668,7,4,7,7_0,7_3,7_0_1 -40,2,68.0,3,0.0,5,111,2,77,74,6.0,0.0,0.0,699.8894623645233,0.0,1824.805836850873,18906.0,50,60,1,10045,201100040,,,285.0,,0.0,2.0,5.0,0.0,2.0,1.5,3047.654197958497,0.0,513.0,1050.0,0.0,28718.0,5,5,1,100.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2524.6952992153965,0.13353936841295866,0.0879133400381432,19145.333333333332,5,3,5,5_1,5_2,5_0_0 -41,2,88.0,2,0.0,7,111,1,0,77,5.0,0.0,0.0,545.7227776721429,0.0,0.0,14713.0,0,70,2,10047,201100041,,,,450.0,0.0,3.0,1.0,0.0,1.0,1.0,3410.0171237917084,0.0,400.0,0.0,0.0,18800.0,0,5,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,545.7227776721429,0.03709119674248235,0.029027807322986324,18800.0,5,3,5,5_0,5_4,5_0_0 -42,2,42.0,2,0.0,1,112,2,34,33,9.0,0.0,0.0,1077.8024859024822,0.0,4563.752502447993,139061.0,20,12,1,10048,201100042,,,867.0,,2.0,0.0,10.0,3.0,5.0,2.8,1999.9295975286575,0.0,790.0,2626.0,0.0,88457.0,1,1,2,220.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5641.5549883504755,0.04056892290685725,0.06377737192478239,31591.785714285717,9,5,9,9_1,9_0,9_1_0 -43,2,25.0,3,0.0,99,111,4,0,54,10.0,0.0,0.0,750.3688192991965,0.0,0.0,21308.0,0,30,2,1005,201100043,,,,480.0,1.0,0.0,2.0,0.0,1.0,1.0,3352.9888285002235,0.0,550.0,0.0,0.0,49344.0,0,1,3,50.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,750.3688192991965,0.03521535664066062,0.01520689079319059,49344.0,10,5,10,10_0,10_3,10_0_0 -44,2,42.0,3,0.0,9,120,5,54,22,7.0,0.0,832.755791738064,2360.251013432018,52.13730962431066,0.0,86266.0,50,50,1,10050,201100044,,,510.0,,2.0,0.0,4.0,2.0,4.0,2.3,2750.6918816261937,0.0,1730.0,0.0,0.0,49589.0,1,1,2,140.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3245.144114794393,0.03761788091246138,0.0654408057188972,21560.434782608696,6,3,6,6_1,6_0,6_0_0 -45,2,28.0,3,0.0,7,111,1,54,47,7.0,0.0,0.0,682.1534720901786,0.0,0.0,43617.0,60,41,2,10051,201100045,,,,510.0,2.0,0.0,3.0,2.0,4.0,2.1,6327.838475746988,0.0,500.0,0.0,0.0,47129.0,1,1,3,66.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,682.1534720901786,0.015639623818469374,0.014474176665963179,22442.38095238095,7,4,7,7_0,7_4,7_0_0 -46,2,50.0,2,0.0,5,400,2,21,48,9.0,475.9368027416647,138.792631956344,2128.318832921357,417.0984769944853,0.0,40720.0,50,50,1,10053,201100046,,,358.0,,2.0,1.0,6.0,0.0,2.0,1.5,1668.4411461486543,0.0,1560.0,0.0,0.0,53815.0,1,1,1,134.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3160.1467446138513,0.07760674716635195,0.05872241465416429,35876.666666666664,9,5,9,9_1,9_0,9_0_0 -47,1,82.0,2,49.0,5,120,2,0,78,5.0,0.0,0.0,1316.5562011340448,0.0,0.0,21602.0,0,71,2,10054,201100047,,,,381.0,0.0,5.0,2.0,0.0,1.0,1.0,6171.463410479574,0.0,965.0,0.0,0.0,18269.0,0,5,3,70.0,0,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1316.5562011340448,0.060946032827240294,0.07206503919941129,18269.0,5,3,5,5_0,5_1,5_0_0 -48,2,52.0,2,0.0,6,400,2,55,48,9.0,0.0,0.0,2305.6787356648038,139.0328256648284,0.0,78281.0,50,50,1,10055,201100048,,,,,4.0,1.0,5.0,2.0,4.0,2.5,1747.9163001642703,0.0,1690.0,0.0,0.0,86516.0,1,1,1,150.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2444.7115613296323,0.031229948024803368,0.02825733461243738,34606.4,9,5,9,9_1,9_0,9_0_0 -49,2,69.0,2,0.0,1,112,2,78,78,4.0,0.0,0.0,682.1534720901786,2024.6655237440639,0.0,64520.0,71,70,1,10056,201100049,,,112.0,,0.0,3.0,2.0,0.0,2.0,1.5,2359.7094965763836,0.0,500.0,0.0,0.0,22644.0,5,5,1,70.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2706.8189958342427,0.041953177244796074,0.1195380231334677,15096.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -50,1,52.0,3,42.0,8,111,2,68,55,6.0,0.0,0.0,777.6549581828036,0.0,1042.7461924862132,23465.0,50,50,1,10058,201100050,,,,,3.0,3.0,6.0,1.0,3.0,2.0,899.1566898042571,0.0,570.0,600.0,0.0,38299.0,1,1,3,76.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1820.4011506690167,0.07757942257272604,0.04753129717927405,19149.5,5,3,5,5_1,5_3,5_0_0 -51,2,41.0,3,0.0,1,112,2,62,38,7.0,0.0,832.755791738064,2046.460416270536,52.13730962431066,0.0,38159.0,50,20,1,10059,201100051,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.1,1258.3406820470482,0.0,1500.0,0.0,0.0,50674.0,1,1,2,160.0,4,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2931.3535176329106,0.07681945327793994,0.05784728889830901,24130.47619047619,7,4,7,7_1,7_0,7_1_0 -52,2,49.0,2,0.0,1,112,2,52,38,7.0,1297.7210154756056,485.77421184720396,764.011888741,0.0,0.0,38095.0,50,31,1,1006,201100052,,,190.0,,2.0,0.0,5.0,2.0,4.0,2.1,1785.8658705893586,0.0,560.0,0.0,0.0,51504.0,1,1,1,115.0,9,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2547.5071160638095,0.06687247974967343,0.049462315860201334,24525.714285714286,7,4,7,7_1,7_0,7_1_0 -53,2,31.0,2,0.0,6,111,2,47,38,10.0,0.0,0.0,2002.8025940567645,0.0,1821.3300162092523,93757.0,12,12,1,10062,201100053,,,315.0,,2.0,0.0,5.0,2.0,4.0,2.1,3589.7320446262256,0.0,1468.0,1048.0,0.0,98100.0,1,1,2,180.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3824.132610266017,0.04078770236106122,0.03898198379476062,46714.28571428571,10,5,10,10_1,10_3,10_0_0 -54,2,76.0,2,0.0,5,111,4,86,75,9.0,0.0,416.377895869032,1637.1683330164287,0.0,0.0,25808.0,70,60,1,10063,201100054,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1516.104398635898,0.0,1200.0,0.0,0.0,47180.0,6,5,1,102.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2053.5462288854606,0.07957014216078195,0.04352577848421917,31453.333333333332,9,5,9,9_1,9_2,9_0_0 -55,0,91.0,2,0.0,1,111,2,0,75,3.0,0.0,0.0,0.0,0.0,0.0,13997.0,0,50,8,10067,201100055,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3766.7140177425563,0.0,0.0,0.0,0.0,14360.0,0,5,5,88.0,8,6.0,1,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,14360.0,3,2,3_0,3_0_0,3_2_0,3_1_0 -56,2,37.0,2,0.0,3,111,1,54,47,5.0,0.0,0.0,335.6195082683679,0.0,0.0,44669.0,20,31,2,10069,201100056,,,,,2.0,0.0,4.0,3.0,5.0,2.4,2817.8154060739284,0.0,246.0,0.0,0.0,42337.0,1,1,1,103.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,335.6195082683679,0.007513477093025765,0.007927333260938845,17640.416666666668,5,3,5,5_0,5_3,5_0_1 -57,2,85.0,3,0.0,1,111,2,77,78,3.0,0.0,0.0,328.7979735474661,0.0,901.9754565005744,23279.0,71,70,1,1007,201100057,,,177.0,,0.0,2.0,3.0,0.0,2.0,1.5,3081.490042210607,0.0,241.0,519.0,0.0,19590.0,5,5,1,56.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1230.7734300480406,0.05287054555814428,0.06282661715406027,13060.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -58,2,27.0,2,0.0,3,111,1,63,62,7.0,0.0,0.0,272.86138883607146,0.0,0.0,27265.0,31,41,2,10071,201100058,,,,360.0,2.0,0.0,2.0,0.0,2.0,1.5,2895.1136386056132,0.0,200.0,0.0,0.0,34903.0,1,1,3,60.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,272.86138883607146,0.01000775312070682,0.007817705894509683,23268.666666666668,7,4,7,7_0,7_3,7_0_1 -59,2,46.0,3,0.0,8,120,2,52,63,5.0,2092.5354760541854,0.0,573.00891655575,187.69431464751835,0.0,41853.0,50,50,1,10072,201100059,,,346.0,,2.0,0.0,5.0,2.0,4.0,2.5,1627.4702062217684,0.0,420.0,0.0,0.0,42009.0,1,1,2,120.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2853.238707257454,0.06817285994450706,0.0679197007131199,16803.6,4,2,4_0,4_1_0,4_0_0,4_0_0 -60,2,63.0,2,0.0,5,111,2,0,74,7.0,0.0,222.0682111301504,1036.8732775770716,43.44775802025888,0.0,21797.0,0,41,1,10073,201100060,,,,,0.0,3.0,5.0,0.0,1.0,1.0,1961.222965917722,0.0,760.0,0.0,0.0,21955.0,0,5,1,141.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1302.3892467274807,0.05975084859051616,0.05932084931575863,21955.0,7,4,7,7_1,7_2,7_0_0 -61,2,84.0,3,0.0,99,111,1,0,77,2.0,0.0,0.0,136.43069441803573,0.0,0.0,9902.0,0,70,2,10075,201100061,,,,,0.0,4.0,1.0,0.0,1.0,1.0,2945.3276236282773,0.0,100.0,0.0,0.0,12240.0,0,5,3,30.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,136.43069441803573,0.013778094770555012,0.011146298563565011,12240.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -62,1,47.0,2,20.0,6,111,5,85,62,5.0,0.0,749.4802125642576,1227.8762497623215,139.0328256648284,0.0,37497.0,71,50,1,10079,201100062,,,,,4.0,1.0,6.0,4.0,6.0,3.3,1789.9866859615577,0.0,900.0,0.0,0.0,55714.0,6,1,3,100.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2116.389287991408,0.05644156300481126,0.0379866692032776,16883.030303030304,4,2,4_1,4_1_1,4_2_1,4_0_0 -63,2,75.0,2,0.0,1,300,2,77,74,6.0,1903.7472109666587,249.82673752141918,894.8298195477739,173.79103208103552,834.3950819346333,39729.0,70,20,1,1008,201100063,,,150.0,,0.0,3.0,5.0,0.0,2.0,1.5,1327.614472743075,776.0,360.0,0.0,0.0,30137.0,6,5,1,140.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4056.5898820515204,0.10210651871558611,0.13460496672036104,20091.333333333332,6,3,6,6_1,6_0,6_1_0 -64,2,35.0,4,0.0,1,111,6,0,37,9.0,0.0,0.0,682.1534720901786,0.0,0.0,32008.0,0,60,2,10082,201100064,,,,560.0,1.0,0.0,2.0,0.0,1.0,1.0,4153.145616202285,0.0,500.0,0.0,0.0,31462.0,0,1,3,32.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,682.1534720901786,0.021311968010815377,0.021681821628954885,31462.0,9,5,9,9_0,9_4,9_1_0 -65,2,34.0,3,0.0,4,111,1,54,62,7.0,0.0,0.0,510.2507971234536,0.0,312.82385774586396,44600.0,31,50,2,10083,201100065,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2352.046528293971,0.0,374.0,180.0,0.0,43846.0,1,1,2,62.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,823.0746548693176,0.018454588674199947,0.018771943959980785,24358.888888888887,7,4,7,7_0,7_3,7_0_1 -66,2,43.0,1,0.0,8,111,2,46,38,9.0,0.0,0.0,1637.1683330164287,0.0,0.0,78479.0,42,10,1,10086,201100066,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2397.4678817413746,0.0,1200.0,0.0,0.0,71853.0,1,1,2,84.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1637.1683330164287,0.020861228265095486,0.02278496838011536,34215.71428571428,9,5,9,9_1,9_4,9_0_0 -67,2,65.0,3,0.0,5,111,2,78,77,5.0,0.0,0.0,521.2457194357359,0.0,1077.4018970341526,48440.0,50,71,1,10087,201100067,,,358.0,559.0,0.0,5.0,3.0,0.0,2.0,1.5,2290.8897723473356,1002.0,0.0,0.0,0.0,26384.0,4,5,3,84.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1598.6476164698884,0.03300263452662858,0.06059155611241238,17589.333333333332,5,3,5,5_1,5_2,5_0_0 -68,1,43.0,5,252.0,8,111,2,0,63,3.0,0.0,0.0,764.011888741,0.0,1303.4327406077664,13760.0,0,50,1,10088,201100068,,,310.0,,1.0,3.0,4.0,0.0,1.0,1.0,2069.4858596432537,0.0,560.0,750.0,0.0,13924.0,0,1,3,87.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2067.4446293487663,0.15025033643523011,0.14848065421924492,13924.0,3,2,3_1,3_1_1,3_2_1,3_0_0 -69,2,78.0,3,0.0,4,111,1,0,74,4.0,0.0,0.0,260.1026544090498,0.0,537.6256971228307,43424.0,0,20,2,1009,201100069,,,,,0.0,2.0,4.0,0.0,2.0,1.5,3614.5681591416137,500.0,0.0,0.0,0.0,22709.0,0,5,1,85.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,797.7283515318805,0.01837067869224117,0.03512829061305564,15139.333333333334,4,2,4_0,4_0_0,4_3_0,4_0_1 -70,2,61.0,3,0.0,1,221,4,56,78,5.0,0.0,638.4461069991823,1637.1683330164287,291.9689338961397,0.0,26878.0,70,71,1,10091,201100070,,,147.0,,2.0,2.0,6.0,1.0,3.0,2.0,2450.00263857437,0.0,1200.0,0.0,0.0,34960.0,1,5,1,120.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2567.5833739117506,0.09552732249094988,0.07344346035216678,17480.0,5,3,5,5_1,5_1,5_1_0 -71,1,41.0,2,318.0,4,111,2,0,85,3.0,0.0,0.0,1964.6019996197144,0.0,0.0,5637.0,0,71,1,10092,201100071,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2616.491774988315,0.0,1440.0,0.0,0.0,12866.0,0,7,3,30.0,6,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1964.6019996197144,0.34851907036006996,0.15269718635315674,12866.0,3,2,3_1,3_1_1,3_2_1,3_0_1 -72,0,57.0,5,0.0,3,111,1,0,77,1.0,0.0,0.0,874.520751219609,48.661488982689946,0.0,14999.0,0,71,2,10093,201100072,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3436.929263800565,0.0,641.0,0.0,0.0,7740.0,0,7,5,58.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,923.182240202299,0.06154958598588566,0.1192741912406071,7740.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -73,2,70.0,3,0.0,1,111,2,78,78,6.0,0.0,0.0,512.9794110118144,0.0,2274.924609940755,31776.0,50,70,1,10094,201100073,,,429.0,,0.0,3.0,5.0,0.0,2.0,1.5,1162.6780572686614,0.0,376.0,1309.0,0.0,29424.0,5,5,1,100.0,7,6.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2787.904020952569,0.08773615373088398,0.09474932099485349,19616.0,6,3,6,6_1,6_2,6_1_0 -74,2,56.0,2,0.0,4,111,1,78,77,7.0,0.0,0.0,447.49267769115716,0.0,184.21849400589767,26070.0,50,70,2,10095,201100074,,,,390.0,0.0,5.0,4.0,0.0,2.0,1.5,3721.665318647839,0.0,328.0,106.0,0.0,34350.0,5,7,3,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,631.7111716970549,0.02423134528949194,0.018390427123640606,22900.0,7,4,7,7_0,7_4,7_0_1 -75,1,69.0,2,250.0,1,300,6,77,78,6.0,3617.119700836651,0.0,859.5133748336251,140.77073598563877,0.0,21691.0,50,50,1,10096,201100075,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1326.4602599163009,0.0,630.0,0.0,0.0,30302.0,5,5,1,100.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,4617.403811655915,0.21287187366446522,0.1523795066878726,20201.333333333332,6,3,6,6_1,6_0,6_1_0 -76,2,29.0,1,0.0,99,111,2,55,42,6.0,0.0,0.0,341.0767360450893,0.0,782.0596443646599,36092.0,50,50,2,10098,201100076,,,110.0,730.0,2.0,0.0,4.0,2.0,4.0,2.1,1433.017845977776,0.0,250.0,450.0,0.0,41423.0,1,1,3,100.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1123.136380409749,0.031118707204082597,0.027113834835954642,19725.238095238095,6,3,6,6_0,6_2,6_0_0 -77,2,43.0,1,0.0,4,111,2,0,34,10.0,0.0,0.0,204.6460416270536,0.0,782.0596443646599,30195.0,0,10,2,101,201100077,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2712.561086335965,0.0,150.0,450.0,0.0,64798.0,0,1,2,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,986.7056859917135,0.0326777839374636,0.015227409580414727,64798.0,10,5,10,10_0,10_4,10_0_1 -78,2,41.0,2,0.0,5,112,2,0,45,6.0,1110.5192063972174,0.0,409.2920832541072,0.0,0.0,10622.0,0,20,1,10100,201100078,,,250.0,,1.0,0.0,4.0,0.0,1.0,1.0,2303.4372494739346,0.0,300.0,0.0,0.0,19472.0,0,1,3,80.0,8,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1519.8112896513246,0.14308146202704997,0.07805111388924223,19472.0,6,3,6,6_1,6_0,6_0_0 -79,0,91.0,3,0.0,7,111,1,0,72,4.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,13066.0,0,70,2,10103,201100079,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3507.69281111013,600.0,0.0,0.0,0.0,15024.0,0,5,5,95.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,957.2740218382565,0.07326450496236465,0.06371632200733869,15024.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -80,2,55.0,2,0.0,1,111,2,44,35,6.0,0.0,0.0,1200.5901108787143,0.0,2259.283417053462,39957.0,41,10,1,10105,201100080,,,589.0,,2.0,2.0,5.0,2.0,4.0,2.3,2023.1752585340987,0.0,880.0,1300.0,0.0,47545.0,1,1,1,90.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3459.8735279321763,0.08658992236484662,0.07277050221752396,20671.739130434784,6,3,6,6_1,6_2,6_1_0 -81,2,42.0,3,0.0,1,112,1,85,64,4.0,0.0,0.0,447.49267769115716,97.32297796537989,0.0,19568.0,70,50,1,10107,201100081,,,,368.0,1.0,2.0,3.0,1.0,3.0,1.8,1954.6106029381679,0.0,328.0,0.0,0.0,27793.0,6,1,3,55.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,544.815655656537,0.027842173735513953,0.01960262136712615,15440.555555555555,4,2,4_0,4_1_0,4_0_0,4_1_0 -82,1,64.0,4,95.0,2,221,2,78,78,3.0,0.0,0.0,573.00891655575,0.0,2085.4923849724264,10514.0,71,71,2,10108,201100082,,,120.0,176.0,0.0,8.0,4.0,0.0,2.0,1.5,5067.627312830842,0.0,420.0,1200.0,0.0,19040.0,5,5,3,70.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,2658.5013015281766,0.252853462195946,0.13962716919790844,12693.333333333334,2,1,2_1,2_0_1,2_1_1,2_0_1 -83,2,28.0,2,0.0,1,111,2,43,47,8.0,0.0,0.0,1105.0886247860894,0.0,0.0,30134.0,20,31,2,1011,201100083,,,,362.0,2.0,0.0,3.0,0.0,2.0,1.5,2162.08292059083,0.0,810.0,0.0,0.0,39453.0,1,1,3,50.0,6,4.0,3,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1105.0886247860894,0.03667248373219916,0.028010255868656107,26302.0,8,4,8,8_0,8_2,8_1_0 -84,1,49.0,5,476.0,4,111,2,0,85,7.0,0.0,0.0,763.6613933449703,0.0,1578.469046752631,16603.0,0,71,1,10110,201100084,,,360.0,,0.0,2.0,5.0,0.0,1.0,1.0,3409.958188275026,1468.0,0.0,0.0,0.0,23612.0,0,4,3,100.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2342.1304400976014,0.1410667012044571,0.09919237845576831,23612.0,7,4,7,7_1,7_3,7_0_1 -85,2,51.0,2,0.0,1,120,2,85,21,6.0,412.4785623761094,0.0,507.5221832350929,125.12954309834558,0.0,23325.0,41,50,1,10111,201100085,,,180.0,,1.0,4.0,5.0,0.0,2.0,1.5,1518.011324615832,0.0,372.0,0.0,0.0,31677.0,5,1,1,200.0,0,3.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1045.1302887095478,0.0448073006949431,0.032993348129859136,21118.0,6,3,6,6_1,6_1,6_1_0 -86,1,56.0,1,159.0,1,111,2,77,78,5.0,0.0,0.0,804.9410970664107,0.0,1598.8774951455268,38146.0,60,50,1,10112,201100086,,,390.0,,0.0,2.0,4.0,0.0,2.0,1.5,1689.355004026297,0.0,590.0,920.0,0.0,26766.0,7,7,3,93.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2403.8185922119374,0.06301626886729768,0.08980865994963526,17844.0,5,3,5,5_1,5_3,5_1_0 -87,2,29.0,3,0.0,8,111,4,52,46,8.0,317.29120182777643,0.0,1394.321696952325,78.20596443646599,0.0,31485.0,60,33,1,10114,201100087,,,305.0,,2.0,0.0,3.0,0.0,2.0,1.5,2537.9038629610127,0.0,1022.0,0.0,0.0,42384.0,1,1,2,80.0,8,6.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1789.8188632165675,0.056846716316232095,0.04222864437562683,28256.0,8,4,8,8_1,8_2,8_0_0 -88,2,34.0,4,0.0,8,112,2,46,47,6.0,3172.912018277764,0.0,1118.731694227893,0.0,0.0,59846.0,50,31,1,10115,201100088,,,310.0,,2.0,0.0,5.0,2.0,4.0,2.1,4566.6360397790895,0.0,820.0,0.0,0.0,40441.0,1,1,2,140.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4291.643712505657,0.07171145460858967,0.1061211076013367,19257.619047619046,6,3,6,6_1,6_0,6_0_0 -89,2,54.0,3,0.0,2,400,2,0,69,2.0,0.0,730.0492440903694,712.1682248621465,243.30744491344973,0.0,33493.0,0,50,1,10116,201100089,,,,,2.0,1.0,7.0,1.0,2.0,1.5,2441.9969969677236,0.0,522.0,0.0,0.0,18487.0,0,1,1,140.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1685.5249138659656,0.05032469214062537,0.09117352268437094,12324.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_1 -90,2,49.0,2,0.0,4,112,2,47,43,6.0,0.0,499.65347504283835,2196.5341801303753,0.0,0.0,86046.0,41,33,1,10118,201100090,,,360.0,,2.0,0.0,5.0,3.0,5.0,2.8,2033.6662342017469,0.0,1610.0,0.0,0.0,54593.0,1,1,3,90.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2696.1876551732134,0.03133425906112095,0.04938705795932104,19497.5,6,3,6,6_1,6_0,6_0_1 -91,2,46.0,3,0.0,6,111,2,0,67,6.0,0.0,0.0,1850.0002163085644,57.351040586741725,0.0,24161.0,0,71,1,10120,201100091,,,240.0,378.0,1.0,2.0,3.0,0.0,1.0,1.0,2716.5982484833344,0.0,1356.0,0.0,0.0,21369.0,0,1,3,70.0,7,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1907.351256895306,0.07894339045963768,0.08925786217863756,21369.0,6,3,6,6_1,6_2,6_0_0 -92,1,20.0,3,170.0,7,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,4016.0,0,31,2,10121,201100092,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3751.89473267099,0.0,0.0,0.0,0.0,3123.0,0,3,3,20.0,8,7.0,1,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,3123.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -93,2,47.0,3,0.0,5,111,4,0,42,4.0,0.0,0.0,1623.5252635746251,0.0,0.0,32774.0,0,31,2,10122,201100093,,,180.0,,1.0,0.0,4.0,1.0,2.0,1.5,3507.010087888603,0.0,1190.0,0.0,0.0,23544.0,0,1,2,86.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1623.5252635746251,0.049536988575536255,0.06895707031832421,15696.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -94,2,64.0,3,0.0,1,111,2,0,75,10.0,0.0,0.0,859.5133748336251,0.0,6047.927916420036,28967.0,0,50,1,10123,201100094,,,,,0.0,0.0,7.0,0.0,1.0,1.0,2460.595206291102,0.0,630.0,3480.0,0.0,41571.0,0,5,1,160.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,6907.441291253661,0.23845898060736911,0.16616009456721417,41571.0,10,5,10,10_1,10_4,10_1_0 -95,2,33.0,3,0.0,6,111,2,0,64,7.0,0.0,0.0,409.2920832541072,0.0,417.0984769944853,10429.0,0,60,1,10124,201100095,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1974.2344564836255,0.0,300.0,240.0,0.0,24589.0,0,1,2,87.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,826.3905602485925,0.07923967400983722,0.033608140235413905,24589.0,7,4,7,7_1,7_3,7_0_0 -96,2,67.0,3,0.0,1,112,2,0,74,9.0,1269.1648073111057,555.170527825376,750.3688192991965,0.0,0.0,36686.0,0,41,1,10125,201100096,,,,,0.0,0.0,6.0,0.0,1.0,1.0,1958.2401005621405,0.0,550.0,0.0,0.0,30162.0,0,5,1,179.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2574.704154435678,0.07018219905238178,0.08536251423763935,30162.0,9,5,9,9_1,9_0,9_1_0 -97,2,36.0,2,0.0,10,120,2,22,63,5.0,0.0,0.0,736.7257498573929,97.32297796537989,0.0,27454.0,43,50,1,10126,201100097,,,180.0,,2.0,0.0,7.0,2.0,4.0,2.1,2164.1114768873367,0.0,540.0,0.0,0.0,36408.0,1,1,2,192.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,834.0487278227728,0.030379861871595134,0.02290839177715812,17337.142857142855,5,3,5,5_1,5_0,5_0_0 -98,2,51.0,4,0.0,6,400,4,21,56,5.0,164.99142495044376,127.68922139983647,1391.5930830639643,194.64595593075978,0.0,26717.0,50,50,1,10127,201100098,,,655.0,,3.0,0.0,3.0,2.0,4.0,2.5,2358.6551710211243,0.0,1020.0,0.0,0.0,43919.0,1,1,1,90.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1878.9196853450042,0.07032674646648217,0.04278147693128268,17567.6,5,3,5,5_1,5_0,5_0_0 -99,2,29.0,3,0.0,99,300,5,56,69,6.0,190.37472109666587,55.5170527825376,1500.737638598393,43.44775802025888,0.0,18936.0,50,50,1,10128,201100099,,,107.0,,2.0,0.0,4.0,0.0,2.0,1.5,1144.8345297277322,0.0,1100.0,0.0,0.0,28976.0,1,1,3,70.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1790.0771704978551,0.09453301491856016,0.061777925541753695,19317.333333333332,6,3,6,6_1,6_0,6_0_0 -100,2,49.0,4,0.0,5,111,1,0,55,2.0,0.0,0.0,613.9381248811608,0.0,0.0,13592.0,0,50,2,1013,201100100,,,,390.0,1.0,2.0,4.0,0.0,1.0,1.0,3816.7789364158634,0.0,450.0,0.0,0.0,11450.0,0,1,3,80.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,613.9381248811608,0.04516907922904361,0.05361905020796164,11450.0,2,1,2_0,2_0_0,2_2_0,2_0_0 -101,2,79.0,3,0.0,4,111,1,78,72,4.0,0.0,0.0,228.8903358799638,0.0,473.110613468091,30892.0,71,41,2,10130,201100101,,,450.0,318.0,0.0,3.0,3.0,0.0,2.0,1.5,3545.4810549189083,440.0,0.0,0.0,0.0,22785.0,5,5,3,67.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,702.0009493480547,0.02272436065479913,0.030809784917623644,15190.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -102,2,51.0,2,0.0,6,111,5,52,47,9.0,0.0,0.0,1091.4455553442858,0.0,695.1641283241421,48178.0,31,50,1,10131,201100102,,,800.0,,4.0,0.0,6.0,2.0,4.0,2.5,1505.5522973485188,0.0,800.0,400.0,0.0,92534.0,1,1,1,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1786.6096836684278,0.037083517034090824,0.019307602434439533,37013.6,9,5,9,9_1,9_4,9_0_0 -103,2,47.0,2,0.0,5,111,4,38,35,10.0,0.0,237.33540064534822,624.2463705817195,0.0,1290.3016730947936,70613.0,20,10,1,10132,201100103,,,,1800.0,2.0,0.0,3.0,0.0,2.0,1.5,2051.847669211402,1200.0,0.0,0.0,0.0,86633.0,1,1,3,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2151.883444321861,0.030474324052537933,0.024839073382219953,57755.333333333336,10,5,10,10_1,10_4,10_0_0 -104,0,47.0,1,0.0,9,120,1,22,47,9.0,1586.456009138882,0.0,1364.3069441803573,0.0,0.0,47372.0,31,20,8,10133,201100104,1000.0,1000.0,400.0,,2.0,1.0,5.0,0.0,2.0,1.5,1943.9741038210727,0.0,1000.0,0.0,0.0,46251.0,1,1,5,80.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,2950.7629533192394,0.06228917827660305,0.0637989006360779,30834.0,9,5,9,9_0,9_0,9_0_0 -105,2,32.0,3,0.0,5,111,1,52,62,7.0,0.0,0.0,1118.731694227893,0.0,1718.7933072814412,38156.0,50,43,1,10134,201100105,,,564.0,,2.0,0.0,5.0,1.0,3.0,1.8,2125.0088849517488,0.0,820.0,989.0,0.0,43507.0,1,1,2,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2837.5250015093343,0.07436641685473672,0.0652199646380889,24170.555555555555,7,4,7,7_1,7_3,7_0_0 -106,1,37.0,3,246.0,1,400,5,22,56,6.0,0.0,416.377895869032,941.3717914844465,93.84715732375918,0.0,17436.0,71,43,1,10135,201100106,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3201.072950026747,0.0,690.0,0.0,0.0,31232.0,1,1,3,150.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1451.5968446772376,0.08325285872202556,0.04647787028295459,20821.333333333332,6,3,6,6_1,6_0,6_1_0 -107,2,60.0,3,0.0,4,111,1,0,77,6.0,0.0,0.0,504.79356934673217,0.0,139.0328256648284,24904.0,0,71,2,10136,201100107,1100.0,1100.0,,410.0,0.0,2.0,4.0,0.0,1.0,1.0,3506.987520974085,0.0,370.0,80.0,1100.0,19310.0,0,5,3,84.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,643.8263950115606,0.025852328742834912,0.03334160512747595,19310.0,6,3,6,6_0,6_4,6_0_1 -108,2,39.0,2,0.0,9,111,2,54,62,5.0,0.0,0.0,520.2053088180996,0.0,1075.2513942456615,44018.0,43,50,1,10138,201100108,,,100.0,,2.0,0.0,6.0,2.0,4.0,2.1,2247.596569957268,1000.0,0.0,0.0,0.0,37969.0,1,1,2,106.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1595.456703063761,0.036245551889312576,0.04201998217134402,18080.47619047619,5,3,5,5_1,5_2,5_0_0 -109,2,90.0,3,0.0,5,111,1,0,77,8.0,0.0,0.0,24.557524995246432,0.0,13.903282566482842,24022.0,0,71,2,1014,201100109,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3172.6085998629337,0.0,18.0,8.0,0.0,26966.0,0,5,3,73.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,38.460807561729276,0.001601066004567866,0.0014262703983434427,26966.0,8,4,8,8_0,8_2,8_0_0 -110,1,32.0,4,23.0,8,111,2,52,21,5.0,0.0,0.0,750.3688192991965,0.0,1303.4327406077664,47337.0,50,50,1,10143,201100110,,,,,2.0,0.0,5.0,4.0,6.0,2.7,1359.0091785034742,0.0,550.0,750.0,0.0,46445.0,1,1,3,110.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2053.801559906963,0.04338681285056009,0.04422007880088197,17201.85185185185,5,3,5,5_1,5_3,5_0_0 -111,2,74.0,3,0.0,4,112,2,78,77,6.0,0.0,0.0,463.8643610213215,0.0,2155.0087978048405,21915.0,70,50,1,10144,201100111,,,200.0,,0.0,3.0,5.0,0.0,2.0,1.5,1193.4566709991614,0.0,340.0,1240.0,0.0,31349.0,5,5,1,90.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2618.873158826162,0.11950139898818901,0.08353928861610138,20899.333333333332,6,3,6,6_1,6_0,6_0_1 -112,2,83.0,3,0.0,2,111,2,77,78,5.0,0.0,0.0,341.0767360450893,0.0,1251.2954309834558,27833.0,71,70,2,10146,201100112,,,230.0,,0.0,2.0,3.0,0.0,2.0,1.5,3858.7248925915737,0.0,250.0,720.0,0.0,28330.0,5,5,1,65.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1592.3721670285452,0.057211661230501386,0.056207983304925706,18886.666666666668,5,3,5,5_0,5_3,5_0_1 -113,2,45.0,2,0.0,5,111,1,0,62,6.0,571.1241632899976,0.0,259.2183193942679,0.0,86.89551604051776,12196.0,0,50,2,10148,201100113,360.0,360.0,,308.0,1.0,0.0,2.0,0.0,1.0,1.0,2664.9122897027746,0.0,190.0,50.0,0.0,20430.0,0,1,3,60.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,917.2379987247832,0.07520810091216655,0.044896622551384394,20430.0,6,3,6,6_0,6_4,6_0_0 -114,1,94.0,3,107.0,5,111,1,0,77,3.0,0.0,0.0,818.5841665082144,0.0,145.98446694806984,14176.0,0,71,2,1015,201100114,,,130.0,128.0,0.0,1.0,3.0,0.0,1.0,1.0,3213.339450279348,0.0,600.0,84.0,0.0,14004.0,0,5,3,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,964.5686334562843,0.06804236974155504,0.06887808008113998,14004.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -115,1,34.0,2,247.0,1,300,6,85,63,4.0,0.0,0.0,1068.2523372932196,132.081184381587,0.0,30937.0,31,60,2,10151,201100115,,,,257.0,1.0,0.0,3.0,2.0,4.0,2.1,3414.910063075153,0.0,783.0,0.0,0.0,32044.0,6,1,3,70.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1200.3335216748067,0.03879928634563166,0.03745891654209233,15259.047619047618,4,2,4_1,4_0_1,4_0_1,4_1_0 -116,2,42.0,3,0.0,1,300,2,11,11,1.0,2309.8799493062124,0.0,1036.8732775770716,229.4041623469669,0.0,35915.0,50,71,1,10153,201100116,,,,,2.0,0.0,5.0,2.0,4.0,2.5,3033.138660503237,0.0,760.0,0.0,0.0,13180.0,1,1,1,123.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3576.157389230251,0.09957280771906588,0.27133212361382786,5272.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -117,1,59.0,3,133.0,1,112,2,0,56,7.0,1427.810408224994,832.755791738064,927.728722042643,145.98446694806984,0.0,29906.0,0,70,1,10154,201100117,,,373.0,,1.0,2.0,6.0,0.0,3.0,2.0,1526.8217748685518,0.0,680.0,0.0,0.0,44867.0,0,1,1,200.0,7,0.0,5,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3334.2793889537706,0.11149198786042168,0.07431473887163774,22433.5,7,4,7,7_1,7_0,7_1_0 -118,2,72.0,3,0.0,9,111,2,0,74,8.0,0.0,0.0,313.79059716148214,0.0,503.99399303500303,27625.0,0,41,2,10155,201100118,,,,700.0,0.0,1.0,4.0,0.0,1.0,1.0,2801.6518640299973,0.0,230.0,290.0,0.0,25588.0,0,5,3,100.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,817.7845901964852,0.02960306208856055,0.03195969166001583,25588.0,8,4,8,8_0,8_3,8_0_0 -119,0,44.0,3,0.0,7,112,4,22,22,4.0,0.0,0.0,1263.3482303110109,0.0,0.0,57286.0,41,12,2,10156,201100119,,,,,2.0,0.0,2.0,1.0,3.0,1.8,3338.1156769654913,0.0,926.0,0.0,0.0,28189.0,1,1,5,53.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1263.3482303110109,0.022053350387721448,0.04481706446880027,15660.555555555555,4,2,4_0,4_0_0,4_2_0,4_0_0 -120,2,55.0,2,0.0,1,111,2,0,52,8.0,0.0,0.0,289.23307216623573,0.0,1584.974212579044,16386.0,0,42,2,10159,201100120,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3229.427782743598,0.0,212.0,912.0,0.0,26810.0,0,1,2,65.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1874.2072847452796,0.1143785722412596,0.06990702292970084,26810.0,8,4,8,8_0,8_2,8_1_0 -121,2,46.0,3,0.0,99,111,2,0,46,6.0,0.0,0.0,148.70945691565893,0.0,677.7850251160386,20894.0,0,50,1,10161,201100121,,,290.0,,1.0,0.0,3.0,1.0,2.0,1.5,1298.120420616052,0.0,109.0,390.0,0.0,30407.0,0,1,2,65.0,7,5.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,826.4944820316975,0.039556546474188645,0.027181059691245357,20271.333333333332,6,3,6,6_1,6_2,6_0_0 -122,1,68.0,3,45.0,2,211,1,77,72,6.0,0.0,0.0,374.5478223490317,0.0,774.1810038568763,32709.0,50,44,2,10165,201100122,,,,,0.0,3.0,5.0,1.0,3.0,2.0,3158.7844215259615,720.0,0.0,0.0,0.0,39934.0,5,5,2,110.0,1,2.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1148.728826205908,0.03511965594197035,0.028765684033803477,19967.0,6,3,6,6_0,6_1,6_0_1 -123,2,37.0,4,0.0,8,120,1,0,48,8.0,0.0,0.0,818.5841665082144,191.17013528913907,0.0,16968.0,0,71,1,10167,201100123,,,,340.0,1.0,2.0,4.0,0.0,1.0,1.0,3077.319384516739,0.0,600.0,0.0,0.0,25490.0,0,1,4,80.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1009.7543017973535,0.05950932943171579,0.03961374271468629,25490.0,8,4,8,8_1,8_0,8_0_0 -124,2,76.0,2,0.0,1,112,4,0,75,7.0,0.0,0.0,2244.2849231766877,0.0,0.0,20125.0,0,50,1,10168,201100124,,,359.0,,0.0,2.0,5.0,0.0,1.0,1.0,2524.4541579785796,0.0,1645.0,0.0,0.0,22669.0,0,5,5,120.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2244.2849231766877,0.1115172632634379,0.09900237871880929,22669.0,7,4,7,7_1,7_0,7_1_0 -125,2,81.0,2,0.0,1,111,2,72,72,10.0,4645.143194758647,0.0,998.6726831400215,0.0,0.0,79563.0,60,60,1,10169,201100125,,,816.0,,0.0,0.0,8.0,0.0,2.0,1.5,3464.6260173703686,0.0,732.0,0.0,0.0,116692.0,5,5,1,300.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5643.815877898669,0.07093518190488882,0.048365062539837085,77794.66666666667,10,5,10,10_1,10_4,10_1_0 -126,2,59.0,3,0.0,4,111,6,77,38,10.0,2855.620816449988,0.0,941.3717914844465,0.0,0.0,41036.0,50,30,1,1017,201100126,,,420.0,,1.0,2.0,5.0,0.0,2.0,1.5,3752.3287677826597,0.0,690.0,0.0,0.0,58880.0,5,1,1,120.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3796.9926079344345,0.09252833141471963,0.06448696684671254,39253.333333333336,10,5,10,10_1,10_4,10_0_1 -127,2,19.0,3,0.0,1,111,2,0,84,1.0,0.0,0.0,327.43366660328576,0.0,552.655482017693,11389.0,0,41,2,10170,201100127,,,,235.0,0.0,0.0,2.0,0.0,1.0,1.0,3606.7413561867525,0.0,240.0,318.0,0.0,3770.0,0,3,4,50.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,880.0891486209787,0.07727536646070583,0.23344539751219592,3770.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -128,2,66.0,5,0.0,6,111,4,77,46,6.0,0.0,0.0,1759.9559579926608,295.4447545377604,0.0,26429.0,71,50,1,10171,201100128,,,,,1.0,1.0,3.0,0.0,2.0,1.5,2039.9328514700705,0.0,1290.0,0.0,0.0,29480.0,5,1,3,85.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2055.400712530421,0.07777065770670177,0.06972186948882025,19653.333333333332,6,3,6,6_1,6_2,6_0_0 -129,2,50.0,4,0.0,4,111,1,0,54,8.0,0.0,0.0,362.905647151975,0.0,112.96417085267309,25922.0,0,60,2,10172,201100129,,,,650.0,1.0,1.0,3.0,1.0,2.0,1.5,3147.7262546053707,0.0,266.0,65.0,0.0,38527.0,0,1,3,58.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,475.8698180046481,0.018357758583621948,0.012351592857078103,25684.666666666668,8,4,8,8_0,8_4,8_0_1 -130,2,42.0,2,0.0,8,112,2,52,47,6.0,0.0,0.0,873.1564442754286,0.0,1199.158121359145,43303.0,71,71,1,10174,201100130,,,700.0,457.0,2.0,0.0,4.0,3.0,5.0,2.4,3495.9145680148968,0.0,640.0,690.0,0.0,50913.0,1,1,3,96.0,9,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2072.3145656345737,0.04785614312252208,0.04070305355478117,21213.75,6,3,6,6_1,6_0,6_0_0 -131,2,38.0,2,0.0,7,111,2,63,54,8.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,83410.0,50,71,1,10175,201100131,,,300.0,,2.0,0.0,7.0,1.0,3.0,1.8,4597.382077535662,1200.0,0.0,0.0,0.0,44841.0,1,1,2,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1914.548043676513,0.022953459341523954,0.04269637259821398,24911.666666666664,8,4,8,8_1,8_4,8_0_0 -132,1,58.0,4,333.0,1,300,5,72,22,5.0,0.0,0.0,1353.3924886269144,79.94387475727635,0.0,16887.0,50,41,1,10176,201100132,,,331.0,,1.0,2.0,3.0,0.0,2.0,1.5,2741.9309386296977,0.0,992.0,0.0,0.0,27336.0,7,1,2,88.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1433.3363633841907,0.0848780934081951,0.05243401973164291,18224.0,5,3,5,5_1,5_0,5_1_0 -133,2,39.0,2,0.0,7,111,2,37,38,10.0,0.0,0.0,1193.7685761578125,0.0,4796.63248543658,47905.0,31,12,1,10177,201100133,,,383.0,,2.0,0.0,4.0,0.0,2.0,1.5,2473.7250816414503,0.0,875.0,2760.0,0.0,92908.0,1,1,2,105.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5990.401061594393,0.12504751198401823,0.06447669804101254,61938.666666666664,10,5,10,10_1,10_4,10_0_0 -134,2,38.0,3,0.0,8,111,2,0,52,4.0,0.0,0.0,723.0826804155894,0.0,973.2297796537989,29630.0,0,50,1,10178,201100134,,,350.0,,1.0,0.0,4.0,1.0,2.0,1.5,2280.1211603753723,0.0,530.0,560.0,0.0,22721.0,0,1,3,75.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1696.3124600693882,0.057249829904468044,0.07465835394874293,15147.333333333334,4,2,4_0,4_1_0,4_3_0,4_0_0 -135,2,54.0,3,0.0,2,111,2,0,54,7.0,2655.727359298489,0.0,91.40856526008393,0.0,0.0,31404.0,0,41,1,1018,201100135,,,405.0,,1.0,1.0,5.0,0.0,1.0,1.0,1658.5519811741142,0.0,67.0,0.0,0.0,21821.0,0,1,1,130.0,6,4.0,1,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2747.1359245585727,0.0874772616405099,0.1258941352164691,21821.0,7,4,7,7_1,7_2,7_0_1 -136,2,26.0,2,0.0,8,111,4,46,54,6.0,0.0,0.0,882.7065928846912,0.0,0.0,36046.0,10,10,2,10181,201100136,,,,630.0,2.0,0.0,3.0,0.0,2.0,1.5,3661.3130289286614,0.0,647.0,0.0,0.0,32339.0,1,1,3,60.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,882.7065928846912,0.024488336927389758,0.02729542017021835,21559.333333333332,6,3,6,6_0,6_3,6_0_0 -137,1,29.0,4,106.0,1,112,6,21,21,1.0,0.0,693.9631597817199,6466.814915414893,93.84715732375918,0.0,52325.0,50,50,1,10182,201100137,,,348.0,,2.0,0.0,6.0,3.0,5.0,2.4,1641.6691232195626,0.0,4740.0,0.0,0.0,18317.0,1,1,2,300.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,7254.625232520372,0.13864548939360483,0.39605968403779945,7632.083333333334,1,1,1_1,1_1_1,1_1_1,1_1_0 -138,2,25.0,2,0.0,99,111,1,0,34,6.0,0.0,0.0,25.921831939426788,0.0,0.0,13433.0,0,10,2,10184,201100138,,,,300.0,1.0,0.0,1.0,0.0,1.0,1.0,3779.894951085913,0.0,19.0,0.0,0.0,20950.0,0,1,3,20.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,25.921831939426788,0.0019297127923343102,0.0012373189469893455,20950.0,6,3,6,6_0,6_3,6_0_0 -139,2,27.0,3,0.0,2,120,2,0,54,4.0,0.0,0.0,502.06495545837146,0.0,3371.5460223720893,11789.0,0,50,1,10185,201100139,,,400.0,,1.0,0.0,4.0,1.0,3.0,2.0,4921.796048322466,0.0,368.0,1940.0,0.0,29563.0,0,1,1,100.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3873.610977830461,0.3285784186810129,0.13102902201503436,14781.5,3,2,3_0,3_1_0,3_1_0,3_0_1 -140,2,53.0,1,0.0,1,112,2,0,31,10.0,0.0,0.0,723.0826804155894,0.0,3416.7316907131585,149691.0,0,10,1,10186,201100140,,,,,1.0,3.0,6.0,0.0,1.0,1.0,3010.0917285419005,0.0,530.0,1966.0,0.0,108276.0,0,1,2,170.0,8,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4139.814371128748,0.027655733284758253,0.03823390567742387,108276.0,10,5,10,10_1,10_0,10_1_0 -141,2,86.0,3,0.0,6,111,2,86,75,4.0,0.0,0.0,1637.1683330164287,0.0,0.0,23970.0,70,70,1,10187,201100141,,,120.0,,0.0,2.0,4.0,0.0,2.0,1.5,2641.9219246523453,0.0,1200.0,0.0,0.0,24420.0,6,5,1,120.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.068300723112909,0.06704211027913304,16280.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -142,2,57.0,3,0.0,8,300,2,52,21,7.0,126.91648073111057,0.0,1364.3069441803573,4890.47964276034,0.0,39462.0,50,50,1,10188,201100142,,,,,3.0,1.0,4.0,1.0,3.0,2.0,1993.3646176458599,0.0,1000.0,0.0,0.0,44127.0,1,1,1,97.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6381.703067671808,0.16171767948081212,0.1446212764899451,22063.5,7,4,7,7_1,7_0,7_0_0 -143,0,79.0,3,0.0,1,111,5,72,78,2.0,0.0,0.0,0.0,234.61789330939797,0.0,21069.0,71,71,1,1019,201100143,,,,,0.0,1.0,5.0,0.0,2.0,1.5,3095.7579283191712,0.0,0.0,0.0,0.0,17168.0,5,5,5,121.0,8,7.0,3,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,234.61789330939797,0.011135691931719491,0.013666000309261298,11445.333333333334,2,1,2_0,2_1_0,2_3_0,2_1_0 -144,2,68.0,1,0.0,7,111,2,77,75,6.0,0.0,0.0,1791.3350177088091,0.0,0.0,32516.0,50,10,2,10191,201100144,,,149.0,,0.0,3.0,5.0,0.0,2.0,1.5,1720.0426051483578,0.0,1313.0,0.0,0.0,30821.0,5,5,1,104.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1791.3350177088091,0.055090878881437114,0.05812060016575741,20547.333333333332,6,3,6,6_0,6_2,6_0_0 -145,2,54.0,2,0.0,7,112,4,46,62,8.0,0.0,0.0,2046.460416270536,208.54923849724264,0.0,24921.0,71,71,1,10192,201100145,,,220.0,,2.0,2.0,5.0,0.0,2.0,1.5,3622.778650430504,0.0,1500.0,0.0,0.0,43171.0,1,1,1,75.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2255.0096547677786,0.09048632297130045,0.052234362298019005,28780.666666666668,8,4,8,8_1,8_0,8_0_0 -146,2,26.0,3,0.0,99,111,1,0,67,4.0,0.0,0.0,682.1534720901786,0.0,0.0,12977.0,0,50,2,10194,201100146,,,,283.0,1.0,0.0,2.0,0.0,1.0,1.0,3043.1289858447763,0.0,500.0,0.0,0.0,15264.0,0,1,3,39.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,682.1534720901786,0.05256634600371262,0.044690348014293675,15264.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -147,2,83.0,3,0.0,2,112,1,77,75,5.0,0.0,0.0,499.33634157001075,0.0,1616.2565983536304,23395.0,60,60,1,10195,201100147,,,466.0,,0.0,3.0,3.0,0.0,2.0,1.5,2428.4158697992943,0.0,366.0,930.0,0.0,26700.0,5,5,3,74.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2115.592939923641,0.09042927719271815,0.07923569063384424,17800.0,5,3,5,5_1,5_0,5_0_1 -148,2,50.0,4,0.0,1,111,2,85,42,6.0,0.0,0.0,613.9381248811608,0.0,1564.1192887293198,50773.0,50,50,1,10196,201100148,,,,,1.0,2.0,4.0,1.0,3.0,2.0,1263.2541756138464,0.0,450.0,900.0,0.0,38146.0,7,4,2,70.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2178.0574136104806,0.04289794602663779,0.05709792412338071,19073.0,5,3,5,5_1,5_2,5_1_0 -149,2,40.0,3,0.0,9,111,2,22,22,1.0,0.0,0.0,1568.9529858074109,260.6865481215533,0.0,30466.0,31,31,1,10198,201100149,,,198.0,,2.0,0.0,4.0,1.0,3.0,1.8,2728.510004282549,0.0,1150.0,0.0,0.0,12592.0,1,1,3,85.0,3,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1829.6395339289643,0.060055128140516126,0.14530174189397746,6995.555555555556,1,1,1_0,1_1_0,1_2_0,1_0_0 -150,2,74.0,3,0.0,4,111,1,0,72,3.0,0.0,0.0,343.80534993345003,0.0,0.0,23762.0,0,42,2,1020,201100150,,,,,0.0,1.0,4.0,0.0,1.0,1.0,5584.114526499541,0.0,252.0,0.0,0.0,12767.0,0,5,1,80.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,343.80534993345003,0.014468704230849677,0.026929219858498474,12767.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -151,2,74.0,3,0.0,5,111,1,0,75,8.0,0.0,0.0,376.5487165937786,0.0,0.0,24344.0,0,12,2,10200,201100151,,,,568.0,0.0,0.0,2.0,0.0,1.0,1.0,3934.7840820933034,0.0,276.0,0.0,0.0,27613.0,0,5,3,52.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,376.5487165937786,0.015467824375360605,0.013636646383724282,27613.0,8,4,8,8_0,8_4,8_0_0 -152,2,90.0,3,0.0,1,111,2,0,77,5.0,0.0,0.0,824.0052091678697,0.0,1703.1982084851277,24328.0,0,41,2,10201,201100152,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3802.3435639441864,1584.0,0.0,0.0,0.0,18159.0,0,5,1,58.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2527.2034176529974,0.1038804430143455,0.13917084738438226,18159.0,5,3,5,5_0,5_4,5_1_0 -153,2,29.0,3,0.0,3,111,4,47,33,9.0,0.0,0.0,927.728722042643,0.0,0.0,41204.0,42,12,2,10202,201100153,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2929.265517450269,0.0,680.0,0.0,0.0,50696.0,1,1,3,45.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,927.728722042643,0.022515501457204226,0.018299840658881232,33797.333333333336,9,5,9,9_0,9_4,9_0_1 -154,2,52.0,3,0.0,6,111,5,78,52,3.0,0.0,693.9631597817199,949.5576331495287,0.0,1251.2954309834558,79263.0,60,71,1,10203,201100154,,,349.0,,1.0,5.0,4.0,0.0,2.0,1.5,2637.2953285803137,0.0,696.0,720.0,0.0,21846.0,5,1,1,100.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2894.8162239147046,0.03652165857858906,0.13251012651811336,14564.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -155,2,29.0,3,0.0,7,111,4,0,55,1.0,0.0,0.0,949.5576331495287,0.0,0.0,12330.0,0,31,2,10204,201100155,,,,384.0,1.0,0.0,2.0,0.0,1.0,1.0,2315.565635253388,0.0,696.0,0.0,0.0,5043.0,0,1,3,31.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,949.5576331495287,0.07701197349144596,0.18829221359300588,5043.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -156,2,42.0,2,0.0,1,111,5,77,63,8.0,0.0,624.566843803548,881.0972370678645,114.70208117348345,182.79273702176243,65825.0,60,31,1,10206,201100156,,,248.0,,1.0,2.0,9.0,0.0,2.0,1.5,2507.1791404431297,170.0,581.0,0.0,0.0,39230.0,5,1,2,130.0,6,4.0,3,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1803.1588990666583,0.02739322292543347,0.045963775148270665,26153.333333333332,8,4,8,8_1,8_2,8_1_0 -157,2,54.0,3,0.0,6,111,2,0,46,5.0,0.0,0.0,345.16965687763036,0.0,1025.3670892781097,16763.0,0,71,2,10207,201100157,,,200.0,,1.0,3.0,2.0,0.0,1.0,1.0,8134.896331420028,0.0,253.0,590.0,0.0,17418.0,0,1,3,50.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1370.53674615574,0.08175963408433694,0.07868508130415318,17418.0,5,3,5,5_0,5_2,5_0_0 -158,0,24.0,3,0.0,5,111,1,31,84,1.0,0.0,0.0,376.5487165937786,0.0,625.6477154917279,30883.0,10,10,2,10208,201100158,,,,,1.0,0.0,2.0,0.0,2.0,1.5,2798.551282503897,0.0,276.0,360.0,0.0,10248.0,1,3,5,52.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1002.1964320855066,0.03245139500973048,0.09779434348999869,6832.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -159,2,56.0,4,0.0,5,111,2,85,22,4.0,0.0,0.0,1094.1741692326466,0.0,4567.228323089614,25316.0,60,60,1,10209,201100159,,,415.0,,3.0,2.0,4.0,1.0,5.0,2.8,1044.3631211950265,0.0,802.0,2628.0,0.0,42455.0,6,1,1,105.0,4,4.0,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5661.4024923222605,0.22362942377635728,0.1333506652295904,15162.500000000002,4,2,4_0,4_1_0,4_2_0,4_0_0 -160,2,52.0,2,0.0,5,112,5,52,63,8.0,0.0,791.1180021511608,1215.5974872646982,132.081184381587,0.0,27594.0,50,50,1,10212,201100160,,,509.0,,2.0,3.0,6.0,0.0,2.0,1.5,1260.9089563456232,0.0,891.0,0.0,0.0,39594.0,1,1,2,125.0,4,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2138.7966737974457,0.07750948299621098,0.05401820159108566,26396.0,8,4,8,8_1,8_0,8_0_0 -161,2,78.0,3,0.0,5,111,2,78,78,4.0,0.0,0.0,496.60772768165003,0.0,1579.7604816166129,26886.0,70,70,1,10213,201100161,,,183.0,,0.0,1.0,6.0,0.0,2.0,1.5,2122.2385838567816,0.0,364.0,909.0,0.0,23778.0,5,5,1,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2076.368209298263,0.07722860259236268,0.08732308054917416,15852.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -162,2,51.0,2,0.0,1,300,5,42,42,10.0,475.9368027416647,69.396315978172,916.8142664892001,260.6865481215533,0.0,30994.0,20,20,1,10217,201100162,,,176.0,,2.0,3.0,9.0,0.0,2.0,1.5,1457.9236379195638,0.0,672.0,0.0,0.0,63050.0,1,1,1,200.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1722.8339333305898,0.05558604676165031,0.027324883954489926,42033.333333333336,10,5,10,10_1,10_0,10_1_0 -163,2,83.0,4,0.0,4,111,2,0,77,4.0,0.0,0.0,327.43366660328576,0.0,1216.5372245672486,9255.0,0,71,2,10218,201100163,,,,210.0,0.0,8.0,3.0,0.0,1.0,1.0,3598.608964213746,0.0,240.0,700.0,0.0,16060.0,0,5,3,52.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1543.9708911705343,0.16682559602058716,0.09613766445644671,16060.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -164,2,38.0,2,0.0,1,111,2,33,21,2.0,0.0,0.0,927.728722042643,0.0,1105.310964035386,45678.0,20,12,2,10220,201100164,,,,800.0,2.0,1.0,3.0,0.0,2.0,1.5,3345.8292786405723,0.0,680.0,636.0,0.0,15329.0,1,1,3,95.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2033.0396860780288,0.044508071414642254,0.13262702629512876,10219.333333333334,2,1,2_0,2_0_0,2_3_0,2_1_0 -165,2,33.0,2,0.0,7,111,2,46,46,10.0,0.0,0.0,2114.6757634795536,0.0,0.0,45472.0,41,41,1,10222,201100165,,,200.0,,2.0,0.0,4.0,1.0,3.0,1.8,3208.537272804746,0.0,1550.0,0.0,0.0,93570.0,1,1,2,95.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2114.6757634795536,0.04650500887314289,0.022599933349145597,51983.33333333333,10,5,10,10_1,10_4,10_0_0 -166,2,43.0,3,0.0,1,112,2,0,52,7.0,0.0,0.0,1773.5990274344645,43.44775802025888,0.0,27438.0,0,50,1,10223,201100166,,,344.0,,1.0,0.0,6.0,1.0,2.0,1.3,2892.602926047823,0.0,1300.0,0.0,0.0,31669.0,0,1,2,165.0,9,2.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1817.0467854547232,0.06622373297815888,0.057376197084048224,24360.76923076923,7,4,7,7_1,7_1,7_1_0 -167,2,82.0,2,0.0,1,111,2,0,74,8.0,0.0,0.0,338.75086593717066,0.0,1772.1554956278756,22179.0,0,33,8,10228,201100167,,,,1112.0,0.0,0.0,3.0,0.0,1.0,1.0,4442.814833551176,166.0,185.0,917.0,0.0,28068.0,0,5,3,75.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2110.906361565046,0.09517590340254503,0.07520686766299865,28068.0,8,4,8,8_0,8_4,8_1_0 -168,2,41.0,2,0.0,9,111,2,85,37,2.0,0.0,0.0,832.2272359500179,0.0,2184.5532732586166,40554.0,71,31,1,10229,201100168,,,590.0,,1.0,0.0,5.0,2.0,4.0,2.1,2898.7673638592782,0.0,610.0,1257.0,0.0,21011.0,6,1,2,144.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3016.7805092086346,0.07438922200544051,0.14358100562603562,10005.238095238095,2,1,2_0,2_1_0,2_2_0,2_0_0 -169,2,69.0,3,0.0,5,111,2,74,74,10.0,0.0,0.0,2335.6934884367715,0.0,0.0,49242.0,60,20,1,1023,201100169,,,612.0,,0.0,1.0,4.0,0.0,2.0,1.5,1961.7051611101558,0.0,1712.0,0.0,0.0,71365.0,5,5,1,168.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2335.6934884367715,0.047432953341390915,0.03272883750349291,47576.666666666664,10,5,10,10_1,10_4,10_0_0 -170,2,38.0,2,0.0,5,111,1,46,47,10.0,0.0,0.0,1159.6609025533037,0.0,0.0,46103.0,20,31,2,10231,201100170,,,,,2.0,0.0,4.0,1.0,3.0,1.8,4171.33874083185,0.0,850.0,0.0,0.0,68087.0,1,1,1,102.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1159.6609025533037,0.025153697211749856,0.017032045802477767,37826.11111111111,10,5,10,10_0,10_4,10_0_0 -171,2,27.0,2,0.0,1,112,2,56,47,1.0,317.29120182777643,0.0,2071.017941265782,0.0,0.0,39105.0,44,41,2,10232,201100171,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2765.5131935442387,0.0,1518.0,0.0,0.0,11192.0,1,1,2,42.0,10,4.0,3,2,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2388.3091430935588,0.061074265262589404,0.2133943122849856,7461.333333333333,1,1,1_0,1_0_0,1_2_0,1_1_0 -172,2,73.0,3,0.0,1,112,2,71,71,3.0,0.0,111.0341055650752,804.9410970664107,145.98446694806984,0.0,21979.0,50,70,1,10233,201100172,,,170.0,,1.0,2.0,4.0,1.0,3.0,2.0,879.7039495231624,0.0,590.0,0.0,0.0,26821.0,5,5,1,100.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1061.9596695795558,0.048317014858708575,0.03959433539314551,13410.5,3,2,3_0,3_1_0,3_0_0,3_1_0 -173,1,81.0,2,190.0,8,111,4,0,77,4.0,0.0,0.0,1637.1683330164287,0.0,0.0,29767.0,0,60,2,10234,201100173,,,98.0,,0.0,4.0,4.0,0.0,1.0,1.0,3533.6622182102496,0.0,1200.0,0.0,0.0,15901.0,0,5,1,70.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1637.1683330164287,0.05499944008520942,0.10296008634780383,15901.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -174,2,42.0,2,0.0,1,111,2,67,67,5.0,0.0,111.0341055650752,955.0148609262501,0.0,2137.629694596737,35361.0,60,50,1,10235,201100174,,,450.0,,2.0,0.0,5.0,3.0,5.0,2.8,1385.4923918282943,0.0,700.0,1230.0,0.0,47677.0,1,1,2,95.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3203.678661088062,0.09059920989474456,0.06719547498978673,17027.5,4,2,4_0,4_1_0,4_3_0,4_1_0 -175,2,41.0,2,0.0,2,111,1,52,52,6.0,0.0,0.0,955.0148609262501,0.0,156.41192887293198,52775.0,50,31,2,10236,201100175,,,,900.0,2.0,0.0,3.0,2.0,4.0,2.3,2576.3824216099706,0.0,700.0,90.0,0.0,45801.0,1,1,3,89.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1111.4267897991822,0.021059721265735333,0.02426643064123452,19913.478260869568,6,3,6,6_0,6_4,6_0_1 -176,1,45.0,2,383.0,4,111,2,0,56,3.0,0.0,0.0,818.5841665082144,0.0,542.2280200928309,21527.0,0,71,2,1024,201100176,,,,,3.0,0.0,4.0,4.0,5.0,2.8,2526.8759439814735,0.0,600.0,312.0,0.0,40269.0,0,4,3,72.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1360.8121866010451,0.0632142047940282,0.03379304642779918,14381.785714285716,3,2,3_1,3_0_1,3_2_1,3_0_1 -177,2,48.0,1,0.0,4,111,1,85,22,10.0,1427.810408224994,0.0,3165.192110498429,0.0,34.7582064162071,53254.0,20,30,2,10240,201100177,900.0,900.0,,,1.0,0.0,5.0,2.0,4.0,2.5,8337.754402432149,0.0,2320.0,20.0,0.0,190611.0,6,1,1,91.0,10,8.0,4,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4627.76072513963,0.0868997770146774,0.024278560655679002,76244.4,10,5,10,10_0,10_4,10_0_1 -178,2,92.0,2,0.0,2,111,1,0,74,7.0,0.0,0.0,379.2773304821393,0.0,0.0,13116.0,0,71,2,10241,201100178,,,272.0,599.0,0.0,2.0,3.0,0.0,1.0,1.0,3464.620143631224,0.0,278.0,0.0,0.0,24655.0,0,5,3,75.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,379.2773304821393,0.028917149320077714,0.015383383917344931,24655.0,7,4,7,7_0,7_3,7_0_1 -179,2,78.0,2,0.0,2,111,2,0,78,5.0,1473.8176324900217,0.0,641.2242637647679,0.0,0.0,27120.0,0,70,1,10242,201100179,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2003.9008902247986,0.0,470.0,0.0,0.0,17360.0,0,5,1,86.0,6,4.0,1,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2115.0418962547897,0.07798827051086983,0.12183421061375517,17360.0,5,3,5,5_1,5_2,5_0_1 -180,2,46.0,3,0.0,7,112,2,64,43,7.0,0.0,0.0,103.68732775770715,4170.984769944853,0.0,78802.0,60,10,1,10243,201100180,,,64.0,,2.0,0.0,6.0,2.0,4.0,2.3,5876.397288426843,0.0,76.0,0.0,0.0,54582.0,1,1,2,110.0,9,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4274.67209770256,0.054245731043660816,0.0783165163918977,23731.304347826088,7,4,7,7_1,7_0,7_0_0 -181,2,61.0,3,0.0,1,300,5,0,13,1.0,0.0,27.7585263912688,675.3319373692768,304.13430614181215,0.0,28759.0,0,50,1,10244,201100181,,,450.0,,1.0,3.0,7.0,0.0,1.0,1.0,2254.641415029622,0.0,495.0,0.0,0.0,9036.0,0,1,1,151.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1007.2247699023578,0.03502294133670704,0.11146799135705598,9036.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -182,1,94.0,3,24.0,5,211,1,0,86,3.0,0.0,0.0,1678.0975413418394,0.0,0.0,11945.0,0,71,2,10245,201100182,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3836.735932459701,0.0,1230.0,0.0,0.0,14298.0,0,6,3,39.0,1,2.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1678.0975413418394,0.14048535297964332,0.11736589322575461,14298.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -183,2,83.0,2,0.0,4,111,1,86,74,10.0,0.0,0.0,3996.7647963714157,0.0,7289.62967829865,75420.0,41,12,2,10249,201100183,,,,,0.0,0.0,5.0,0.0,2.0,1.5,3093.741333980841,6634.0,400.0,90.0,0.0,84460.0,6,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,11286.394474670065,0.149647235145453,0.13363005534773933,56306.666666666664,10,5,10,10_0,10_4,10_0_1 -184,2,63.0,3,0.0,9,111,4,72,72,7.0,0.0,0.0,1978.245069061518,173.79103208103552,0.0,56411.0,70,70,1,10250,201100184,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2683.870985651167,0.0,1450.0,0.0,0.0,35520.0,5,5,1,236.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2152.0361011425534,0.038149228007703345,0.060586601946580894,23680.0,7,4,7,7_1,7_3,7_0_0 -185,2,77.0,2,0.0,5,111,2,86,74,10.0,0.0,0.0,586.6519859975537,0.0,0.0,21054.0,60,41,2,10252,201100185,,,,398.0,0.0,0.0,2.0,0.0,2.0,1.5,2163.2686370841984,0.0,430.0,0.0,0.0,78631.0,5,5,3,45.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,586.6519859975537,0.0278641581646031,0.007460823161317466,52420.666666666664,10,5,10,10_0,10_2,10_0_0 -186,2,89.0,4,0.0,7,111,4,0,78,4.0,0.0,0.0,415.1430085320041,0.0,604.2912835660617,14560.0,0,60,2,10253,201100186,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3489.3857132863723,562.0,90.0,0.0,0.0,16399.0,0,5,3,75.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1019.4342920980657,0.07001609149025177,0.0621644180802528,16399.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -187,2,61.0,2,0.0,5,111,2,0,74,10.0,0.0,0.0,2963.234039394071,0.0,6016.697303836933,28687.0,0,44,1,10254,201100187,,,426.0,,0.0,2.0,5.0,0.0,1.0,1.0,2418.0996703827063,4343.0,516.0,775.0,0.0,40151.0,0,5,1,120.0,5,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,8979.931343231005,0.31303138506051537,0.22365398976939566,40151.0,10,5,10,10_1,10_2,10_0_0 -188,1,41.0,3,180.0,2,111,1,42,43,3.0,95.18736054833293,0.0,39.01539816135747,0.0,80.6438545684246,18970.0,50,50,2,10255,201100188,60.0,60.0,240.0,320.0,2.0,0.0,5.0,3.0,5.0,2.4,2118.5619396813636,75.0,0.0,0.0,0.0,29860.0,1,4,3,90.0,8,6.0,4,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,214.846613278115,0.011325599013079337,0.007195131054190054,12441.666666666668,2,1,2_1,2_0_1,2_2_1,2_0_1 -189,2,43.0,2,0.0,2,111,1,33,34,10.0,0.0,0.0,324.70505271492505,0.0,0.0,62788.0,10,10,2,10256,201100189,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2563.7877099153793,0.0,238.0,0.0,0.0,80849.0,1,1,2,51.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,324.70505271492505,0.005171450798160875,0.004016191328463247,53899.333333333336,10,5,10,10_0,10_3,10_0_1 -190,2,69.0,3,0.0,1,111,2,0,78,2.0,0.0,0.0,785.5100163153303,0.0,1623.6296053109486,11461.0,0,70,1,10258,201100190,,,140.0,222.0,0.0,0.0,3.0,0.0,1.0,1.0,2529.344620151899,1510.0,0.0,0.0,0.0,11659.0,0,5,3,65.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2409.1396216262788,0.21020326512750012,0.2066334695622505,11659.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -191,2,29.0,3,0.0,5,111,4,0,42,4.0,0.0,0.0,253.76109161754644,0.0,0.0,14356.0,0,10,2,1026,201100191,,,34.0,450.0,1.0,0.0,1.0,0.0,1.0,1.0,3367.480599256106,0.0,186.0,0.0,0.0,14710.0,0,1,3,27.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,253.76109161754644,0.017676308973080694,0.0172509239712812,14710.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -192,1,35.0,5,50.0,9,111,5,69,85,1.0,0.0,27.7585263912688,1705.3836802254466,156.41192887293198,0.0,27452.0,43,50,1,10260,201100192,,,440.0,,1.0,0.0,5.0,2.0,4.0,2.1,1684.465332839482,0.0,1250.0,0.0,0.0,9980.0,4,7,2,120.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1889.5541354896473,0.0688312012053638,0.1893340817123895,4752.380952380952,1,1,1_1,1_1_1,1_2_1,1_0_0 -193,2,58.0,3,0.0,99,112,5,77,47,7.0,0.0,485.77421184720396,136.43069441803573,0.0,0.0,12792.0,71,50,1,10262,201100193,,,300.0,,1.0,1.0,5.0,0.0,2.0,1.5,1249.3668245068047,0.0,100.0,0.0,0.0,36057.0,7,1,1,70.0,9,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,622.2049062652397,0.04864015840097246,0.01725614738511911,24038.0,7,4,7,7_1,7_0,7_0_0 -194,2,79.0,4,0.0,7,112,2,78,78,2.0,0.0,0.0,410.9621939662987,0.0,849.4486014540726,14916.0,71,70,2,10263,201100194,,,348.0,,0.0,6.0,3.0,0.0,2.0,1.5,2654.8369260613895,790.0,0.0,0.0,0.0,18230.0,5,5,3,65.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1260.4107954203712,0.08450058966347353,0.06913937440594466,12153.333333333334,2,1,2_0,2_0_0,2_0_0,2_0_0 -195,2,49.0,3,0.0,1,111,2,56,62,5.0,0.0,0.0,709.4396109737858,0.0,1355.5700502320772,35677.0,70,50,1,10264,201100195,,,,,3.0,1.0,5.0,2.0,4.0,2.3,832.4636374454715,0.0,520.0,780.0,0.0,42814.0,1,1,3,79.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2065.009661205863,0.057880697962436944,0.04823211242130758,18614.782608695652,5,3,5,5_1,5_3,5_1_0 -196,2,34.0,2,0.0,2,111,2,0,67,9.0,1586.456009138882,0.0,458.40713324460006,0.0,0.0,13718.0,0,71,2,10265,201100196,,,390.0,440.0,1.0,0.0,3.0,0.0,1.0,1.0,6015.575253858333,0.0,336.0,0.0,0.0,29957.0,0,1,3,65.0,7,5.0,1,4,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2044.8631423834822,0.14906423256914145,0.06825994399918157,29957.0,9,5,9,9_0,9_2,9_0_1 -197,2,47.0,1,0.0,2,111,2,52,67,8.0,0.0,0.0,392.9203999239429,0.0,1381.6387050442324,27059.0,71,50,1,10267,201100197,,,310.0,,2.0,2.0,5.0,0.0,2.0,1.5,3792.113966598364,0.0,288.0,795.0,0.0,37276.0,1,4,1,145.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1774.5591049681752,0.06558110443727319,0.047605942294456895,24850.666666666668,7,4,7,7_1,7_2,7_0_1 -198,2,45.0,2,0.0,5,111,2,54,45,7.0,0.0,0.0,933.5988194157005,0.0,2123.200481750648,52164.0,60,30,2,10268,201100198,,,,495.0,2.0,0.0,4.0,2.0,4.0,2.3,2895.4554160964435,326.0,560.0,1020.0,0.0,52924.0,1,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3056.7993011663484,0.05859978723192908,0.0577582817089855,23010.434782608696,7,4,7,7_0,7_4,7_0_0 -199,2,64.0,1,0.0,6,112,4,0,74,2.0,0.0,0.0,3208.8499327122004,76.46805411565563,0.0,37503.0,0,71,1,10269,201100199,,,,523.0,0.0,3.0,4.0,0.0,1.0,1.0,3508.4048792528934,0.0,2352.0,0.0,0.0,11030.0,0,5,3,120.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3285.317986827856,0.08760147153102035,0.2978529453153088,11030.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -200,2,61.0,3,0.0,5,112,2,77,75,2.0,0.0,305.3437903039568,2025.9958121078305,187.69431464751835,0.0,24212.0,41,60,1,10270,201100200,,,468.0,,0.0,2.0,5.0,0.0,2.0,1.5,3104.824399177163,0.0,1485.0,0.0,0.0,18272.0,6,5,1,100.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2519.0339170593056,0.10404072018252543,0.13786306463765902,12181.333333333334,2,1,2_0,2_1_0,2_1_0,2_0_0 -201,2,62.0,1,0.0,3,111,2,45,74,9.0,2379.684013708323,0.0,972.222139380824,0.0,723.6441883273301,59075.0,10,44,1,10272,201100201,,,,,2.0,0.0,6.0,1.0,3.0,2.0,1407.5275024715438,673.0,456.0,0.0,0.0,71848.0,1,5,1,150.0,9,7.0,4,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4075.5503414164773,0.06898942600789636,0.05672461782396834,35924.0,9,5,9,9_1,9_3,9_0_1 -202,2,49.0,4,0.0,2,300,6,0,85,1.0,0.0,0.0,1077.8024859024822,76.46805411565563,0.0,32111.0,0,50,1,10274,201100202,,,,,0.0,5.0,3.0,1.0,2.0,1.5,1859.9645760936783,0.0,790.0,0.0,0.0,10630.0,0,6,1,80.0,0,0.0,2,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1154.2705400181378,0.03594626576619033,0.10858612794149933,7086.666666666667,1,1,1_0,1_1_0,1_0_0,1_0_1 -203,2,61.0,2,0.0,4,112,2,0,75,10.0,2617.6524150791556,0.0,412.0206971424679,0.0,0.0,23636.0,0,60,1,10276,201100203,,,135.0,,0.0,0.0,5.0,0.0,1.0,1.0,2566.0025353601636,0.0,302.0,0.0,0.0,40374.0,0,5,1,140.0,9,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3029.6731122216233,0.12818044983168148,0.07504020191761092,40374.0,10,5,10,10_1,10_0,10_0_1 -204,0,44.0,5,0.0,99,111,1,0,55,4.0,0.0,0.0,0.0,0.0,0.0,15677.0,0,60,2,10277,201100204,,,,,1.0,2.0,1.0,0.0,1.0,1.0,3607.8401288776895,0.0,0.0,0.0,0.0,15110.0,0,1,5,17.0,9,7.0,1,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,15110.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -205,2,59.0,3,0.0,3,111,2,0,56,3.0,0.0,0.0,893.621048438134,0.0,1482.437503651233,25843.0,0,20,1,10278,201100205,,,284.0,,1.0,0.0,5.0,1.0,2.0,1.5,1779.241209302906,0.0,655.0,853.0,0.0,19992.0,0,1,1,80.0,7,5.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2376.0585520893674,0.09194205595671429,0.11885046779158501,13328.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -206,2,58.0,3,0.0,7,111,2,77,78,6.0,2736.6366157645716,0.0,805.8344783604592,187.69431464751835,111.8261450015488,44968.0,50,70,1,10279,201100206,,,460.0,,1.0,1.0,5.0,1.0,4.0,2.5,1441.0058218941322,104.0,551.0,0.0,0.0,48856.0,6,5,1,125.0,6,4.0,5,8,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3841.991553774098,0.08543834624119592,0.07863909353557594,19542.4,6,3,6,6_1,6_2,6_0_0 -207,1,22.0,2,312.0,99,111,1,0,84,1.0,0.0,0.0,654.8673332065715,0.0,0.0,31673.0,0,41,2,10284,201100207,,,,678.0,1.0,0.0,4.0,0.0,3.0,2.0,4008.051357362967,0.0,480.0,0.0,0.0,13474.0,0,3,3,75.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,654.8673332065715,0.020675885871454282,0.04860229577011812,6737.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -208,2,64.0,4,0.0,6,112,5,77,78,2.0,0.0,541.2912646297416,844.5059984476411,156.41192887293198,0.0,16329.0,41,50,1,10285,201100208,,,357.0,,0.0,2.0,6.0,0.0,2.0,1.5,3328.644109879555,0.0,619.0,0.0,0.0,16550.0,6,5,1,125.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1542.2091919503146,0.09444602804521493,0.09318484543506432,11033.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -209,2,46.0,1,0.0,6,111,2,42,37,8.0,0.0,208.188947934516,1848.6359093643841,0.0,0.0,66905.0,31,20,1,10286,201100209,,,408.0,,2.0,0.0,5.0,2.0,4.0,2.5,2716.5382203462777,0.0,1355.0,0.0,0.0,71111.0,1,1,1,120.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2056.8248572989,0.03074246853447276,0.028924144749741955,28444.4,8,4,8,8_1,8_3,8_0_0 -210,2,84.0,2,0.0,5,111,2,0,86,7.0,0.0,0.0,545.7227776721429,0.0,1737.9103208103552,16220.0,0,70,2,10287,201100210,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3435.7321836314045,0.0,400.0,1000.0,0.0,23604.0,0,5,1,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2283.633098482498,0.14079118979546845,0.09674771642444069,23604.0,7,4,7,7_0,7_4,7_0_0 -211,1,56.0,3,189.0,9,111,2,0,48,3.0,0.0,0.0,474.4272416421068,0.0,980.6292715520431,5754.0,0,71,2,10288,201100211,,,,125.0,1.0,6.0,2.0,0.0,1.0,1.0,2601.076954883638,912.0,0.0,0.0,0.0,13688.0,0,1,3,44.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1455.0565131941498,0.2528773919350278,0.10630161551681398,13688.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -212,1,47.0,3,378.0,4,111,2,0,52,2.0,0.0,0.0,641.2242637647679,0.0,816.8178507808669,16503.0,0,60,2,10289,201100212,,,391.0,3.0,1.0,2.0,5.0,2.0,3.0,1.8,3147.047448878299,0.0,470.0,470.0,0.0,19505.0,0,1,3,98.0,4,3.0,2,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1458.0421145456348,0.08835012510123219,0.07475222325278826,10836.111111111111,2,1,2_1,2_0_1,2_1_1,2_0_1 -213,1,50.0,3,26.0,1,111,4,0,63,5.0,0.0,0.0,817.219859564034,48.661488982689946,0.0,16701.0,0,71,1,1029,201100213,,,115.0,,1.0,0.0,3.0,0.0,1.0,1.0,1854.665278063535,0.0,599.0,0.0,0.0,18491.0,0,1,3,40.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,865.881348546724,0.05184607799213963,0.04682717800804305,18491.0,5,3,5,5_1,5_2,5_1_0 -214,2,40.0,2,0.0,4,300,6,0,64,8.0,1903.7472109666587,0.0,1309.734666413143,180.74267336427695,0.0,26642.0,0,50,1,10290,201100214,,,,,1.0,2.0,6.0,1.0,2.0,1.5,1656.3713810998304,0.0,960.0,0.0,0.0,38420.0,0,1,1,102.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3394.2245507440784,0.1274012668247158,0.08834525119063193,25613.333333333332,8,4,8,8_1,8_0,8_0_1 -215,2,93.0,4,0.0,2,111,2,0,78,6.0,3188.7765783691534,0.0,191.00297218525,0.0,111.22626053186274,10757.0,0,70,1,10291,201100215,,,80.0,,0.0,1.0,3.0,0.0,1.0,1.0,3255.839758402495,0.0,140.0,64.0,0.0,20509.0,0,5,1,67.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3491.0058110862665,0.3245334025366056,0.17021823643699188,20509.0,6,3,6,6_1,6_4,6_0_1 -216,2,42.0,3,0.0,2,111,2,56,67,7.0,0.0,0.0,491.1504999049286,0.0,2085.4923849724264,53658.0,50,71,1,10292,201100216,,,228.0,,2.0,2.0,3.0,0.0,2.0,1.5,2647.5824236336916,0.0,360.0,1200.0,0.0,33490.0,1,1,3,90.0,5,4.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2576.642884877355,0.04801973396096304,0.07693767945289205,22326.666666666668,7,4,7,7_1,7_2,7_0_1 -217,2,54.0,3,0.0,1,221,2,78,45,6.0,0.0,0.0,2728.6138883607146,140.77073598563877,0.0,32486.0,50,31,1,10296,201100217,,,800.0,,2.0,0.0,3.0,2.0,4.0,2.5,1197.1330614562473,0.0,2000.0,0.0,0.0,52438.0,5,1,1,60.0,1,3.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2869.384624346353,0.0883268061425338,0.05471956642790254,20975.2,6,3,6,6_1,6_1,6_1_0 -218,2,41.0,1,0.0,4,111,2,0,38,10.0,0.0,0.0,234.09238896814483,0.0,483.86312741054763,19391.0,0,10,2,10298,201100218,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2601.44481276282,450.0,0.0,0.0,0.0,44496.0,0,1,2,96.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,717.9555163786924,0.037025192944081915,0.016135282191178813,44496.0,10,5,10,10_0,10_3,10_0_1 -219,2,64.0,2,0.0,5,221,4,75,78,8.0,0.0,693.9631597817199,1323.3777358549464,46.92357866187959,0.0,40666.0,20,50,1,10299,201100219,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1310.8584597754511,0.0,970.0,0.0,0.0,39719.0,5,5,1,120.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2064.264474298546,0.05076143398166886,0.05197171314228822,26479.333333333332,8,4,8,8_1,8_1,8_0_0 -220,2,73.0,4,0.0,6,400,4,0,77,3.0,0.0,0.0,894.9853553823143,93.84715732375918,0.0,8943.0,0,50,2,103,201100220,,,246.0,153.0,0.0,0.0,3.0,0.0,1.0,1.0,3213.4435468831102,0.0,656.0,0.0,0.0,12636.0,0,5,3,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,988.8325127060734,0.11057055939909129,0.07825518460795136,12636.0,2,1,2_0,2_0_0,2_0_0,2_0_0 -221,2,66.0,2,0.0,6,400,4,0,74,10.0,0.0,0.0,2168.2705445977517,52.13730962431066,2225.770386088519,33544.0,0,41,1,1030,201100221,,,60.0,,0.0,2.0,5.0,0.0,1.0,1.0,2521.742408503884,2070.0,800.0,0.0,0.0,52202.0,0,5,1,140.0,0,0.0,1,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4446.178240310581,0.13254764608605357,0.08517256504177198,52202.0,10,5,10,10_1,10_0,10_0_0 -222,1,57.0,5,292.0,7,112,2,85,78,1.0,0.0,0.0,886.7995137172322,0.0,834.1969539889706,28383.0,60,50,1,10302,201100222,,,540.0,,1.0,1.0,6.0,1.0,3.0,2.0,1172.7110906432065,0.0,650.0,480.0,0.0,17861.0,6,4,3,200.0,7,1.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1720.9964677062028,0.06063476262925705,0.09635498951381237,8930.5,1,1,1_1,1_1_1,1_1_1,1_0_0 -223,2,57.0,4,0.0,9,300,4,0,55,3.0,0.0,699.5148650599738,1923.6727912943038,100.7987986070006,0.0,36339.0,0,70,1,10303,201100223,,,149.0,,1.0,2.0,4.0,0.0,1.0,1.0,1340.7850822120233,0.0,1410.0,0.0,0.0,13880.0,0,1,1,128.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2723.986454961278,0.0749604131913723,0.19625262643813243,13880.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -224,2,72.0,2,0.0,4,112,2,86,78,3.0,0.0,0.0,272.86138883607146,0.0,2413.957435605583,15380.0,70,70,1,10304,201100224,,,250.0,,0.0,2.0,6.0,0.0,2.0,1.5,1871.2316965221694,0.0,200.0,1389.0,0.0,19733.0,5,5,1,100.0,7,2.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2686.8188244416547,0.17469563227839108,0.13615865932405893,13155.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_1 -225,2,50.0,3,0.0,6,111,3,42,65,9.0,0.0,861.9022444488962,1418.8792219475715,0.0,0.0,34749.0,30,50,1,10305,201100225,,,395.0,,2.0,2.0,5.0,0.0,2.0,1.5,1774.8231039549867,0.0,1040.0,0.0,0.0,50585.0,1,1,2,110.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2280.7814663964677,0.06563588783551952,0.04508809857460646,33723.333333333336,9,5,9,9_1,9_3,9_0_0 -226,2,58.0,3,0.0,4,112,2,78,77,2.0,1427.810408224994,0.0,573.00891655575,173.79103208103552,0.0,37729.0,71,70,1,10306,201100226,,,270.0,,0.0,5.0,5.0,1.0,3.0,2.0,1941.8303831435267,0.0,420.0,0.0,0.0,21343.0,6,5,1,110.0,6,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2174.6103568617796,0.057637635687714475,0.10188869216425898,10671.5,2,1,2_0,2_1_0,2_0_0,2_0_1 -227,2,51.0,3,0.0,4,111,2,85,67,2.0,0.0,0.0,409.2920832541072,0.0,868.9551604051776,39069.0,71,71,2,1031,201100227,,,,,1.0,0.0,5.0,2.0,4.0,2.1,3718.5668436963724,0.0,300.0,500.0,0.0,22930.0,6,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1278.2472436592848,0.03271768521485794,0.055745627721730695,10919.047619047618,2,1,2_0,2_0_0,2_4_0,2_0_1 -228,2,41.0,3,0.0,8,112,2,56,48,6.0,0.0,0.0,658.9602540391126,0.0,0.0,45975.0,60,50,1,10310,201100228,,,272.0,,2.0,2.0,4.0,0.0,2.0,1.5,2647.5616929532434,0.0,483.0,0.0,0.0,31959.0,4,1,3,90.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,658.9602540391126,0.014333012594651714,0.02061892593757979,21306.0,6,3,6,6_1,6_2,6_0_0 -229,2,81.0,2,0.0,1,111,2,75,75,8.0,0.0,0.0,3375.7492925304305,0.0,1337.612734441603,34678.0,31,31,1,10311,201100229,,,360.0,,0.0,3.0,3.0,0.0,2.0,1.5,2471.6532112802593,1244.0,2000.0,0.0,0.0,37488.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4713.362026972033,0.13591793145429473,0.12572988761662487,24992.0,8,4,8,8_1,8_4,8_1_0 -230,2,31.0,1,0.0,1,211,2,37,42,8.0,0.0,0.0,723.0826804155894,0.0,1977.7419450821842,54931.0,10,20,1,10312,201100230,,,340.0,,2.0,0.0,5.0,0.0,2.0,1.5,1543.6869045683427,0.0,530.0,1138.0,0.0,41357.0,1,1,3,120.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2700.8246254977735,0.04916758525236703,0.06530513880353443,27571.333333333332,8,4,8,8_1,8_1,8_1_0 -231,1,56.0,3,220.0,1,111,2,56,64,2.0,0.0,0.0,654.8673332065715,0.0,1564.1192887293198,29035.0,71,50,2,10314,201100231,,,,280.0,2.0,0.0,3.0,1.0,3.0,2.0,3404.7499890856143,0.0,480.0,900.0,0.0,19510.0,1,4,3,70.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,2218.9866219358914,0.07642454354867889,0.113735859658426,9755.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -232,2,47.0,2,0.0,2,111,2,0,42,9.0,0.0,0.0,448.4169762012018,0.0,926.86670183976,38063.0,0,10,2,10315,201100232,,,112.0,,1.0,0.0,3.0,0.0,1.0,1.0,3118.0580814925315,862.0,0.0,0.0,0.0,31239.0,0,1,2,60.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1375.2836780409618,0.036131773061528566,0.04402457434748109,31239.0,9,5,9,9_0,9_2,9_0_1 -233,2,37.0,4,0.0,1,111,4,0,52,4.0,0.0,0.0,1364.3069441803573,52.13730962431066,0.0,45091.0,0,50,2,10316,201100233,,,,903.0,1.0,0.0,5.0,3.0,4.0,2.1,1783.3962585030129,0.0,1000.0,0.0,0.0,31110.0,0,1,3,100.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1416.4442538046678,0.03141301487668643,0.045530191379127866,14814.285714285714,3,2,3_0,3_0_0,3_3_0,3_1_0 -234,1,53.0,4,243.0,99,400,2,0,52,2.0,0.0,0.0,504.79356934673217,0.0,1303.4327406077664,3866.0,0,60,2,10317,201100234,,,,49.0,1.0,4.0,3.0,0.0,1.0,1.0,3635.5773315779725,0.0,370.0,750.0,0.0,10446.0,0,4,3,57.0,0,0.0,1,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1808.2263099544984,0.4677253776395495,0.1731022697639765,10446.0,2,1,2_1,2_0_1,2_0_1,2_0_0 -235,2,43.0,3,0.0,8,221,2,52,52,4.0,0.0,0.0,641.2242637647679,1777.8822581889933,0.0,59237.0,50,50,1,10319,201100235,,,214.0,,2.0,0.0,6.0,3.0,5.0,2.6,2670.667441341652,0.0,470.0,0.0,0.0,42964.0,1,1,2,110.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2419.1065219537613,0.04083776224241203,0.05630543063852903,16524.615384615383,4,2,4_0,4_1_0,4_1_0,4_0_0 -236,2,26.0,3,0.0,1,111,2,0,37,2.0,0.0,0.0,327.43366660328576,0.0,312.82385774586396,29720.0,0,12,2,1032,201100236,,,,800.0,1.0,0.0,1.0,0.0,1.0,1.0,4273.391053678567,0.0,240.0,180.0,0.0,12160.0,0,1,3,22.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,640.2575243491497,0.02154298534149225,0.0526527569366077,12160.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -237,2,76.0,4,0.0,4,111,2,0,78,6.0,0.0,0.0,671.0648483753484,0.0,1387.0742985769032,15757.0,0,50,8,10323,201100237,,,91.0,647.0,0.0,3.0,4.0,0.0,1.0,1.0,3171.9298882170933,1290.0,0.0,0.0,0.0,19299.0,0,5,3,80.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2058.1391469522514,0.13061744919415189,0.10664485967937465,19299.0,6,3,6,6_0,6_2,6_0_1 -238,2,80.0,2,0.0,2,111,4,75,72,10.0,0.0,0.0,4319.978904552449,0.0,2228.996140271256,74418.0,33,71,1,10324,201100238,,,456.0,,0.0,5.0,7.0,0.0,2.0,1.5,3461.525036027886,2073.0,2376.0,0.0,0.0,60843.0,5,5,1,157.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,6548.9750448237055,0.08800256718567692,0.10763728029228845,40562.0,10,5,10,10_1,10_4,10_0_1 -239,2,46.0,4,0.0,7,400,2,56,62,5.0,0.0,208.188947934516,1413.4219941708502,173.79103208103552,0.0,22509.0,50,50,1,10325,201100239,,,160.0,,3.0,2.0,5.0,1.0,3.0,2.0,1255.9866414212038,0.0,1036.0,0.0,0.0,36896.0,1,1,2,88.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1795.4019741864017,0.07976373780205259,0.048661154981201264,18448.0,5,3,5,5_1,5_0,5_0_0 -240,2,47.0,3,0.0,1,300,5,0,12,6.0,0.0,138.792631956344,3049.2260202430984,271.11401004641544,0.0,13201.0,0,71,1,10326,201100240,,,,,1.0,0.0,5.0,1.0,3.0,2.0,1859.669021921419,0.0,2235.0,0.0,0.0,40463.0,0,1,1,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3459.132662245858,0.2620356535297218,0.08548878388270414,20231.5,6,3,6,6_1,6_0,6_1_0 -241,2,65.0,3,0.0,5,112,6,71,71,3.0,0.0,666.2046333904511,1638.532639960609,0.0,0.0,22000.0,50,50,1,10327,201100241,,,,,0.0,4.0,7.0,0.0,2.0,1.5,1556.8316108440401,0.0,1201.0,0.0,0.0,20534.0,5,5,1,120.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2304.73727335106,0.10476078515232091,0.11224005421988216,13689.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -242,2,60.0,2,0.0,6,112,2,0,77,8.0,0.0,69.396315978172,429.75668741681255,0.0,2507.8045929293426,18460.0,0,50,1,10328,201100242,,,158.0,,0.0,2.0,5.0,0.0,1.0,1.0,3549.8750799582544,0.0,315.0,1443.0,0.0,27965.0,0,5,1,133.0,7,0.0,1,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3006.957596324327,0.1628904440045681,0.10752574991326039,27965.0,8,4,8,8_1,8_0,8_0_0 -243,2,39.0,2,0.0,4,111,2,34,31,10.0,0.0,0.0,395.6490138123036,0.0,1510.2440687841986,60405.0,20,10,1,10329,201100243,,,360.0,,2.0,0.0,6.0,3.0,5.0,2.4,1920.1490919729338,0.0,290.0,869.0,0.0,105137.0,1,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1905.8930825965022,0.03155190932201808,0.01812771034551587,43807.083333333336,10,5,10,10_1,10_4,10_0_1 -244,2,38.0,2,0.0,6,111,2,34,42,8.0,0.0,0.0,818.5841665082144,0.0,1089.6697711480927,46373.0,20,20,2,1033,201100244,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2746.5157593834247,0.0,600.0,627.0,0.0,59308.0,1,1,2,78.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1908.253937656307,0.04115010755517881,0.03217532099643062,28241.90476190476,8,4,8,8_0,8_3,8_0_0 -245,2,74.0,3,0.0,7,112,2,75,75,9.0,0.0,0.0,2214.27017040472,364.9611673701746,0.0,44693.0,20,71,1,10333,201100245,,,400.0,,0.0,2.0,4.0,0.0,2.0,1.5,2398.4077870895553,0.0,1623.0,0.0,0.0,48407.0,5,5,1,120.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2579.2313377748947,0.057709962136685715,0.05328219757008066,32271.333333333332,9,5,9,9_1,9_1,9_0_0 -246,2,66.0,3,0.0,1,111,6,22,22,2.0,0.0,0.0,959.1077817587911,0.0,0.0,14813.0,50,50,1,10334,201100246,,,160.0,,2.0,0.0,3.0,0.0,2.0,1.5,2722.4466105113734,0.0,703.0,0.0,0.0,17116.0,1,1,1,80.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,959.1077817587911,0.06474770686280909,0.056035743267047855,11410.666666666666,2,1,2_0,2_1_0,2_3_0,2_1_0 -247,0,93.0,2,0.0,5,400,5,0,71,2.0,0.0,0.0,2766.8144827977644,187.69431464751835,0.0,12811.0,0,71,1,10335,201100247,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3114.980468948214,0.0,2028.0,0.0,0.0,11040.0,0,5,5,47.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2954.5087974452827,0.23062280832450882,0.26761855049323213,11040.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -248,1,82.0,4,195.0,99,112,6,0,78,3.0,0.0,0.0,818.5841665082144,0.0,0.0,14589.0,0,71,2,10336,201100248,,,,,0.0,4.0,2.0,0.0,1.0,1.0,3078.2652327484443,0.0,600.0,0.0,0.0,12870.0,0,5,3,45.0,9,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,818.5841665082144,0.05610968308370789,0.0636040533417416,12870.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -249,2,52.0,2,0.0,4,111,2,52,38,9.0,0.0,0.0,1400.0642069811126,0.0,2677.7564000979482,48808.0,42,10,1,10337,201100249,,,,,2.0,2.0,6.0,2.0,4.0,2.5,1976.1611656852863,331.0,900.0,1336.0,0.0,73959.0,1,1,2,130.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4077.820607079061,0.08354820125961034,0.05513623233249586,29583.6,9,5,9,9_1,9_3,9_0_1 -250,2,84.0,3,0.0,4,400,2,0,72,1.0,2538.3296146222115,0.0,736.7257498573929,347.58206416207105,0.0,13753.0,0,70,1,10339,201100250,,,,,0.0,0.0,6.0,0.0,1.0,1.0,2834.355387091012,0.0,540.0,0.0,0.0,8320.0,0,5,1,140.0,0,1.0,1,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3622.637428641676,0.26340706963147503,0.4354131524809706,8320.0,1,1,1_0,1_1_0,1_1_0,1_0_1 -251,2,56.0,3,0.0,9,111,4,85,54,6.0,0.0,0.0,2046.460416270536,0.0,0.0,38680.0,71,44,1,10340,201100251,,,495.0,,1.0,2.0,4.0,0.0,2.0,1.5,2529.0302897551155,0.0,1500.0,0.0,0.0,32074.0,7,1,3,100.0,8,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2046.460416270536,0.05290745647028273,0.0638043404711148,21382.666666666668,6,3,6,6_1,6_2,6_0_0 -252,0,47.0,3,0.0,1,300,5,0,67,4.0,0.0,27.7585263912688,567.5516887790286,83.41969539889705,0.0,21809.0,0,50,1,10343,201100252,,,,,1.0,1.0,5.0,0.0,1.0,1.0,2136.4615530303513,0.0,416.0,0.0,0.0,15227.0,0,1,5,140.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,678.7299105691944,0.031121551220560064,0.04457410590196325,15227.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -253,2,73.0,3,0.0,1,300,2,77,78,3.0,3360.1138273561523,222.0682111301504,686.2463929227197,156.41192887293198,0.0,21674.0,70,71,1,10344,201100253,,,,,0.0,4.0,5.0,0.0,2.0,1.5,2393.48278356596,0.0,503.0,0.0,0.0,21107.0,5,5,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4424.8403602819535,0.20415430286435146,0.20963852562097662,14071.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -254,2,51.0,2,0.0,1,111,2,46,64,6.0,0.0,0.0,728.5399081923108,0.0,2559.941902553653,55863.0,31,50,1,10347,201100254,,,130.0,,2.0,2.0,3.0,1.0,3.0,2.0,1207.3762816043884,0.0,534.0,1473.0,0.0,41833.0,1,1,2,82.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3288.481810745964,0.058866903151387574,0.07860975332263917,20916.5,6,3,6,6_1,6_3,6_1_0 -255,2,38.0,2,0.0,8,112,4,54,37,9.0,0.0,0.0,2728.6138883607146,0.0,0.0,34300.0,31,31,1,10349,201100255,,,100.0,,2.0,2.0,4.0,1.0,3.0,1.8,2094.6901137440914,0.0,2000.0,0.0,0.0,54304.0,1,1,2,125.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2728.6138883607146,0.0795514253166389,0.05024701473852229,30168.888888888887,9,5,9,9_1,9_0,9_0_0 -256,2,48.0,3,0.0,6,111,1,0,52,6.0,0.0,0.0,104.04106176361992,0.0,215.05027884913227,22049.0,0,50,2,1035,201100256,,,300.0,420.0,2.0,0.0,3.0,2.0,3.0,2.0,1871.0451550191326,200.0,0.0,0.0,0.0,38380.0,0,1,3,55.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,319.0913406127522,0.014471918935677456,0.008314000537070147,19190.0,5,3,5,5_0,5_4,5_0_0 -257,2,30.0,1,0.0,5,111,1,21,64,4.0,0.0,0.0,481.6003512956661,0.0,0.0,19025.0,31,71,2,10351,201100257,,,,310.0,2.0,0.0,3.0,0.0,2.0,1.5,3461.8864490662318,0.0,353.0,0.0,0.0,24517.0,1,1,3,77.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,481.6003512956661,0.02531407891173015,0.01964352699333793,16344.666666666666,4,2,4_0,4_0_0,4_3_0,4_0_0 -258,2,24.0,2,0.0,9,120,4,56,68,7.0,0.0,0.0,982.3009998098572,0.0,0.0,23188.0,70,71,2,10353,201100258,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3548.434713424197,0.0,720.0,0.0,0.0,36500.0,1,1,3,56.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,982.3009998098572,0.04236247196005939,0.02691235615917417,24333.333333333332,7,4,7,7_0,7_1,7_0_0 -259,2,62.0,3,0.0,6,111,2,86,78,2.0,0.0,0.0,545.7227776721429,0.0,1007.9879860700061,23346.0,71,70,1,10355,201100259,,,200.0,,0.0,4.0,4.0,0.0,2.0,1.5,1562.235016355475,0.0,400.0,580.0,0.0,17220.0,5,5,1,88.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1553.710763742149,0.0665514762161462,0.09022710590837103,11480.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -260,2,52.0,4,0.0,2,111,1,85,63,2.0,0.0,0.0,1023.230208135268,0.0,185.956404326708,27262.0,71,50,2,10356,201100260,,,,311.0,3.0,5.0,4.0,2.0,4.0,2.5,3278.7117885403586,0.0,750.0,107.0,0.0,25815.0,6,1,3,94.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1209.186612461976,0.044354288477073435,0.04684046532876142,10326.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -261,2,62.0,2,0.0,5,300,2,71,13,9.0,2062.392811880547,0.0,936.9856216572007,111.22626053186274,667.7311158265557,31334.0,71,70,1,10359,201100261,,,,,1.0,2.0,5.0,0.0,2.0,1.5,2676.2917972800233,621.0,450.0,0.0,0.0,43748.0,5,1,1,97.0,0,0.0,3,5,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3778.335809896166,0.12058261983456202,0.08636590952491922,29165.333333333332,9,5,9,9_1,9_0,9_0_0 -262,2,56.0,3,0.0,2,400,2,62,67,7.0,1070.8578061687456,69.396315978172,532.0797082303393,121.65372245672486,0.0,26696.0,71,50,1,10360,201100262,,,130.0,,2.0,2.0,5.0,0.0,2.0,1.5,2946.0607449771305,0.0,390.0,0.0,0.0,35273.0,1,1,1,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1793.9875528339817,0.06720061255746111,0.05086007861066486,23515.333333333332,7,4,7,7_1,7_0,7_0_1 -263,2,49.0,3,0.0,7,211,4,56,47,3.0,0.0,0.0,1732.6698191090536,72.99223347403492,0.0,31013.0,50,50,1,10363,201100263,,,550.0,460.0,2.0,3.0,4.0,1.0,3.0,2.0,925.4781543430653,0.0,1270.0,0.0,0.0,26752.0,1,1,3,100.0,3,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1805.6620525830886,0.058222746995875554,0.06749633868806401,13376.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -264,2,76.0,4,0.0,1,300,5,78,71,3.0,0.0,1721.0286362586655,1227.8762497623215,156.41192887293198,0.0,11783.0,71,71,1,10364,201100264,,,,,0.0,3.0,4.0,0.0,2.0,1.5,3232.25519483709,0.0,900.0,0.0,0.0,19503.0,5,5,1,88.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3105.316814893919,0.2635421212674123,0.15922252037604057,13002.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -265,0,21.0,3,0.0,1,111,6,0,84,1.0,0.0,0.0,0.0,0.0,0.0,44238.0,0,31,2,10365,201100265,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4042.496604205595,0.0,0.0,0.0,0.0,4814.0,0,3,5,13.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,4814.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -266,0,26.0,3,0.0,99,111,4,0,45,1.0,0.0,0.0,409.2920832541072,0.0,0.0,18300.0,0,20,2,10366,201100266,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3959.6775527136124,0.0,300.0,0.0,0.0,6834.0,0,1,5,43.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,409.2920832541072,0.022365687609514052,0.05989055944602095,6834.0,1,1,1_0,1_0_0,1_4_0,1_0_0 -267,2,39.0,1,0.0,9,212,4,46,33,7.0,0.0,0.0,2128.318832921357,0.0,0.0,59129.0,41,50,1,10367,201100267,,,360.0,,2.0,0.0,4.0,2.0,4.0,2.1,2367.5714078306873,0.0,1560.0,0.0,0.0,50121.0,1,1,2,100.0,2,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2128.318832921357,0.03599450071743742,0.04246361471082694,23867.142857142855,7,4,7,7_1,7_0,7_0_0 -268,2,70.0,4,0.0,99,400,2,75,78,5.0,2577.9910148506838,0.0,747.6402054108357,0.0,0.0,34837.0,50,70,1,10368,201100268,,,267.0,560.0,0.0,4.0,5.0,0.0,2.0,1.5,1857.6485724062613,0.0,548.0,0.0,0.0,25173.0,5,5,3,110.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3325.6312202615195,0.09546261791375606,0.13211104041081792,16782.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -269,1,19.0,4,214.0,6,111,4,0,84,1.0,0.0,0.0,34.10767360450893,0.0,0.0,15791.0,0,41,8,1037,201100269,,,,156.0,0.0,0.0,1.0,0.0,1.0,1.0,3679.7823663706827,0.0,25.0,0.0,0.0,4388.0,0,3,3,19.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,34.10767360450893,0.0021599438670450847,0.007772942936305591,4388.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -270,2,53.0,3,0.0,4,111,2,85,47,6.0,2538.3296146222115,0.0,1727.2125913323323,260.6865481215533,0.0,43431.0,50,50,1,10371,201100270,,,,,2.0,1.0,5.0,1.0,3.0,2.0,1088.7061513563467,0.0,1266.0,0.0,0.0,40297.0,6,1,1,120.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4526.228754076097,0.10421654472786943,0.11232173000660339,20148.5,6,3,6,6_1,6_3,6_0_1 -271,1,42.0,2,250.0,6,111,2,55,46,5.0,0.0,0.0,1978.860994744051,0.0,4090.2563037104956,41432.0,50,20,1,10372,201100271,,,1000.0,,2.0,0.0,6.0,3.0,5.0,2.8,1143.0823040653177,3804.0,0.0,0.0,0.0,49970.0,4,1,3,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,6069.1172984545465,0.14648381199204832,0.12145521910055126,17846.428571428572,5,3,5,5_1,5_3,5_0_0 -272,2,54.0,3,0.0,6,300,4,0,38,8.0,0.0,0.0,1691.740610783643,194.64595593075978,0.0,23918.0,0,31,1,10373,201100272,,,360.0,,1.0,1.0,6.0,0.0,1.0,1.0,2487.8079497991603,0.0,1240.0,0.0,0.0,26452.0,0,1,2,140.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1886.3865667144028,0.07886890905236235,0.07131357049426897,26452.0,8,4,8,8_1,8_0,8_0_0 -273,1,26.0,4,100.0,9,400,2,21,62,3.0,0.0,0.0,2046.460416270536,0.0,0.0,34097.0,50,50,1,10374,201100273,,,190.0,,2.0,0.0,4.0,2.0,4.0,2.1,2561.0814284002386,0.0,1500.0,0.0,0.0,28767.0,1,1,2,130.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2046.460416270536,0.060018782188184766,0.07113916697154851,13698.571428571428,3,2,3_1,3_1_1,3_0_1,3_0_0 -274,2,50.0,3,0.0,7,112,2,68,42,7.0,0.0,0.0,637.1313429322269,0.0,1511.981979105009,34657.0,71,50,2,10375,201100274,,,320.0,350.0,2.0,0.0,2.0,1.0,3.0,1.8,2287.938961396314,0.0,467.0,870.0,0.0,43070.0,1,1,3,50.0,10,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2149.113322037236,0.06201094503382393,0.04989815003569157,23927.777777777777,7,4,7,7_0,7_1,7_0_0 -275,2,73.0,3,0.0,4,111,2,0,77,8.0,0.0,0.0,682.1534720901786,0.0,1737.9103208103552,19738.0,0,70,1,10377,201100275,,,169.0,,0.0,2.0,3.0,0.0,1.0,1.0,3375.4750812112748,0.0,500.0,1000.0,0.0,26856.0,0,5,1,110.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2420.063792900534,0.12260937242377819,0.09011259282471455,26856.0,8,4,8,8_1,8_2,8_0_1 -276,2,75.0,1,0.0,4,112,2,77,74,10.0,4124.785623761094,0.0,1091.4455553442858,0.0,0.0,60590.0,50,12,1,10379,201100276,,,400.0,,0.0,3.0,5.0,0.0,2.0,1.5,1775.6097764413155,0.0,800.0,0.0,0.0,67506.0,5,5,5,145.0,6,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5216.23117910538,0.0860906284717838,0.07727063044922496,45004.0,10,5,10,10_1,10_0,10_0_1 -277,2,54.0,2,0.0,6,111,5,64,64,8.0,0.0,763.359475759892,686.2463929227197,0.0,156.41192887293198,37883.0,50,71,1,1038,201100277,,,393.0,,2.0,2.0,5.0,0.0,2.0,1.5,2179.96382423911,0.0,503.0,90.0,0.0,40754.0,1,1,1,80.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1606.017797555544,0.04239415562536082,0.039407611462814546,27169.333333333332,8,4,8,8_1,8_3,8_0_0 -278,2,60.0,1,0.0,7,221,2,0,72,10.0,0.0,0.0,1637.1683330164287,48.661488982689946,0.0,35926.0,0,70,1,10380,201100278,,,600.0,,0.0,1.0,3.0,0.0,1.0,1.0,2026.6445694877216,0.0,1200.0,0.0,0.0,140519.0,0,5,1,78.0,1,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1685.8298219991186,0.046925063241082185,0.011997166376070983,140519.0,10,5,10,10_1,10_1,10_0_0 -279,2,49.0,3,0.0,7,111,4,46,22,6.0,0.0,0.0,163.71683330164288,0.0,0.0,63836.0,50,60,1,10381,201100279,,,453.0,,3.0,0.0,6.0,2.0,4.0,2.5,2997.8288736824884,0.0,120.0,0.0,0.0,52926.0,1,1,2,180.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,163.71683330164288,0.002564647429375946,0.003093315824011693,21170.4,6,3,6,6_1,6_3,6_0_0 -280,2,50.0,3,0.0,2,111,1,0,46,4.0,0.0,0.0,2182.8911106885716,0.0,0.0,36191.0,0,50,2,10386,201100280,,,,,1.0,1.0,3.0,2.0,3.0,2.0,2848.437447464386,0.0,1600.0,0.0,0.0,31325.0,0,1,2,75.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2182.8911106885716,0.060315855065860895,0.06968527089189375,15662.5,4,2,4_0,4_0_0,4_3_0,4_0_1 -281,2,72.0,2,0.0,1,112,4,0,78,5.0,0.0,0.0,1637.1683330164287,208.54923849724264,0.0,17565.0,0,71,1,10388,201100281,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2485.7067229697464,0.0,1200.0,0.0,0.0,18687.0,0,5,1,61.0,9,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1845.7175715136714,0.1050792810426229,0.09877013814489599,18687.0,5,3,5,5_1,5_0,5_1_0 -282,2,56.0,3,0.0,6,112,5,56,42,4.0,0.0,582.9290542166448,1039.6018914654321,1372.9491534401807,0.0,28024.0,41,50,1,10389,201100282,,,356.0,,2.0,3.0,7.0,0.0,2.0,1.5,2607.0182176887447,0.0,762.0,0.0,0.0,23394.0,1,1,2,112.0,9,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2995.4800991222573,0.10688981227241855,0.12804480204848498,15596.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -283,2,61.0,3,0.0,4,111,1,63,68,8.0,0.0,0.0,368.36287492869644,0.0,243.30744491344973,24125.0,71,60,2,1039,201100283,,,,314.0,3.0,0.0,3.0,1.0,3.0,2.0,2447.6582059693274,0.0,270.0,140.0,0.0,55030.0,1,1,3,63.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,611.6703198421462,0.025354210148897254,0.01111521569765848,27515.0,8,4,8,8_0,8_4,8_0_1 -284,2,63.0,1,0.0,7,111,2,68,74,10.0,0.0,0.0,259.2183193942679,0.0,2954.447545377604,34835.0,41,31,2,10390,201100284,,,,620.0,1.0,3.0,4.0,0.0,2.0,1.5,2720.4615954494516,0.0,190.0,1700.0,0.0,80716.0,1,5,3,82.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3213.665864771872,0.0922539361209092,0.03981448368070608,53810.666666666664,10,5,10,10_0,10_4,10_0_0 -285,2,49.0,3,0.0,4,111,1,0,52,7.0,0.0,0.0,384.7345582588608,0.0,1892.5843393624768,30856.0,0,71,2,10394,201100285,761.0,761.0,,336.0,1.0,6.0,3.0,1.0,2.0,1.5,7321.064275222155,0.0,282.0,1089.0,0.0,36100.0,0,1,3,90.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2277.318897621338,0.07380473482049967,0.06308362597289024,24066.666666666668,7,4,7,7_0,7_4,7_0_1 -286,2,65.0,3,0.0,4,111,1,0,78,5.0,0.0,0.0,196.46019996197145,0.0,165.10148047698374,17694.0,0,50,2,10395,201100286,,,,186.0,0.0,0.0,1.0,0.0,1.0,1.0,3790.304561824213,0.0,144.0,95.0,0.0,18893.0,0,5,3,43.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,361.5616804389552,0.020434140411379857,0.019137335544326214,18893.0,5,3,5,5_0,5_3,5_0_1 -287,2,51.0,3,0.0,4,111,2,52,56,6.0,0.0,0.0,1233.3334775390429,0.0,201.5975972140012,26344.0,50,50,2,10396,201100287,,,,600.0,2.0,0.0,4.0,2.0,4.0,2.5,1497.452342508214,0.0,904.0,116.0,0.0,48920.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1434.931074753044,0.05446899008324643,0.029332196949162795,19568.0,6,3,6,6_0,6_4,6_0_1 -288,2,56.0,4,0.0,1,400,5,0,11,4.0,190.37472109666587,832.755791738064,1311.0989733573233,194.64595593075978,0.0,22418.0,0,50,1,10398,201100288,,,700.0,,1.0,0.0,3.0,1.0,2.0,1.5,2540.9129338063112,0.0,961.0,0.0,0.0,24430.0,0,1,1,100.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2528.875442122813,0.11280557775550064,0.10351516341067594,16286.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -289,2,60.0,3,0.0,6,111,1,85,78,4.0,0.0,0.0,1221.0547150414197,0.0,2259.283417053462,48568.0,71,71,1,10401,201100289,,,700.0,,1.0,1.0,8.0,4.0,6.0,3.5,2629.809061479318,0.0,895.0,1300.0,0.0,56944.0,6,4,1,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3480.338132094882,0.07165907865456436,0.06111861007472046,16269.714285714286,4,2,4_0,4_1_0,4_3_0,4_0_0 -290,2,86.0,3,0.0,4,111,2,75,74,7.0,1588.0424651480212,0.0,682.1534720901786,142.50864630644912,0.0,27921.0,50,70,1,10402,201100290,,,280.0,,0.0,0.0,4.0,0.0,2.0,1.5,2858.3554196851196,0.0,500.0,0.0,0.0,33615.0,5,5,1,105.0,6,5.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2412.704583544649,0.08641182563463518,0.07177464178327082,22410.0,7,4,7,7_1,7_2,7_0_1 -291,2,25.0,3,0.0,8,111,2,53,37,9.0,0.0,0.0,978.1502928076773,0.0,611.8180433257813,63124.0,31,10,2,10404,201100291,,,,,2.0,0.0,2.0,0.0,2.0,1.5,1997.4064840743285,569.0,500.0,0.0,0.0,51131.0,1,1,2,49.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1589.9683361334587,0.02518801622415339,0.031095975751177538,34087.333333333336,9,5,9,9_0,9_2,9_0_0 -292,2,38.0,2,0.0,9,120,6,54,42,5.0,0.0,0.0,2141.961902363161,0.0,0.0,32030.0,43,10,1,10405,201100292,,,,,2.0,0.0,4.0,3.0,5.0,2.4,1889.3153182770468,0.0,1570.0,0.0,0.0,45272.0,1,1,2,120.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2141.961902363161,0.06687361543437904,0.04731317154893004,18863.333333333336,5,3,5,5_1,5_0,5_0_0 -293,2,39.0,3,0.0,7,111,2,38,43,7.0,0.0,0.0,613.9381248811608,0.0,2085.4923849724264,49448.0,42,20,2,10407,201100293,,,150.0,,2.0,0.0,4.0,1.0,3.0,1.8,2761.718426062302,0.0,450.0,1200.0,0.0,39150.0,4,1,1,80.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2699.430509853587,0.05459129812840938,0.06895097087748625,21750.0,6,3,6,6_0,6_2,6_0_0 -294,2,70.0,2,0.0,5,300,5,77,78,6.0,1586.456009138882,971.5484236944079,552.5443123930447,130.34327406077665,0.0,26172.0,70,70,1,10408,201100294,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2250.091706432072,0.0,405.0,0.0,0.0,31643.0,5,5,1,120.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3240.892019287112,0.12383050662108788,0.10242050435442632,21095.333333333332,6,3,6,6_1,6_0,6_0_0 -295,2,81.0,2,0.0,2,112,2,77,75,7.0,2206.760308712185,0.0,440.6711429702554,86.89551604051776,0.0,12124.0,71,70,1,10409,201100295,,,,,0.0,2.0,6.0,0.0,2.0,1.5,3917.0237584787496,0.0,323.0,0.0,0.0,32493.0,5,5,1,144.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2734.326967722958,0.22553010291347395,0.08415126235567533,21662.0,6,3,6,6_1,6_0,6_0_1 -296,2,48.0,3,0.0,3,112,1,0,37,2.0,0.0,0.0,463.8643610213215,0.0,0.0,52801.0,0,31,2,1041,201100296,,,,,1.0,1.0,4.0,2.0,3.0,2.0,3302.8200620504617,0.0,340.0,0.0,0.0,19647.0,0,1,2,72.0,10,4.0,2,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,463.8643610213215,0.008785143482534829,0.023609933375137247,9823.5,1,1,1_0,1_0_0,1_2_0,1_0_1 -297,2,44.0,2,0.0,1,111,4,0,46,10.0,0.0,0.0,750.3688192991965,0.0,251.99699651750151,30049.0,0,20,2,10412,201100297,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3265.913552429865,0.0,550.0,145.0,0.0,47443.0,0,1,2,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1002.365815816698,0.033357709601540754,0.021127791577613096,47443.0,10,5,10,10_0,10_4,10_1_0 -298,2,30.0,3,0.0,99,111,2,54,34,6.0,0.0,0.0,354.7198054868929,0.0,1334.7151263823528,39507.0,43,10,2,10413,201100298,,,,800.0,2.0,0.0,3.0,1.0,3.0,1.8,3625.7337976997733,0.0,260.0,768.0,0.0,37967.0,1,1,3,85.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1689.4349318692457,0.042762926364169535,0.044497456524593616,21092.777777777777,6,3,6,6_0,6_3,6_0_0 -299,1,41.0,5,100.0,2,111,1,0,21,2.0,0.0,0.0,442.03544991443573,0.0,0.0,34783.0,0,50,2,10414,201100299,,,,,1.0,2.0,2.0,0.0,1.0,1.0,3516.128000021674,0.0,324.0,0.0,0.0,9760.0,0,1,3,29.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,442.03544991443573,0.0127083762158076,0.04529051740926596,9760.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -300,2,45.0,1,0.0,1,300,2,34,62,9.0,1381.8031839599664,0.0,896.3496623264947,0.0,0.0,50873.0,20,50,1,10415,201100300,,,163.0,,2.0,0.0,5.0,0.0,2.0,1.5,987.4047570243299,0.0,657.0,0.0,0.0,52676.0,1,1,1,150.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2278.152846286461,0.0447811775654367,0.04324840242779371,35117.333333333336,9,5,9,9_1,9_0,9_1_0 -301,2,55.0,4,0.0,6,111,4,47,47,9.0,0.0,0.0,2469.3955689664467,0.0,0.0,28699.0,50,60,1,10416,201100301,,,185.0,,2.0,1.0,5.0,0.0,2.0,1.5,1803.5048781907612,0.0,1810.0,0.0,0.0,51880.0,1,1,1,80.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2469.3955689664467,0.08604465552689804,0.04759821836866705,34586.666666666664,9,5,9,9_1,9_2,9_0_0 -302,2,32.0,2,0.0,4,111,1,21,43,7.0,0.0,0.0,425.66376658427146,0.0,159.8877495145527,30536.0,41,20,2,10418,201100302,,,,311.0,2.0,0.0,3.0,1.0,3.0,1.8,3435.5491973951753,0.0,312.0,92.0,0.0,39297.0,1,1,3,65.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,585.5515160988241,0.019175776660296833,0.0149006671272317,21831.666666666668,7,4,7,7_0,7_3,7_0_1 -303,2,57.0,2,0.0,6,111,4,75,42,10.0,0.0,346.98157989085996,4311.209943609929,0.0,0.0,51344.0,33,10,1,10419,201100303,,,1026.0,,2.0,1.0,7.0,2.0,4.0,2.5,1227.5056618506385,0.0,3160.0,0.0,0.0,127747.0,7,1,2,230.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4658.191523500789,0.09072513874066666,0.036464195037854426,51098.8,10,5,10,10_1,10_4,10_0_0 -304,2,43.0,3,0.0,1,111,2,55,48,6.0,0.0,0.0,709.4396109737858,0.0,1320.81184381587,42094.0,42,42,1,10420,201100304,,,602.0,,2.0,0.0,5.0,2.0,4.0,2.3,3904.810154260871,0.0,520.0,760.0,0.0,45872.0,1,1,2,81.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2030.2514547896558,0.04823137394378429,0.04425905682746895,19944.34782608696,6,3,6,6_1,6_2,6_1_0 -305,2,54.0,5,0.0,1,111,4,0,46,3.0,0.0,0.0,1364.3069441803573,0.0,0.0,25983.0,0,60,1,10422,201100305,,,170.0,,2.0,0.0,4.0,3.0,4.0,2.1,1074.623686965167,0.0,1000.0,0.0,0.0,28875.0,0,1,3,85.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1364.3069441803573,0.05250767594890341,0.047248725339579474,13750.0,3,2,3_0,3_1_0,3_2_0,3_1_0 -306,2,25.0,5,0.0,1,111,2,56,54,5.0,0.0,0.0,448.4169762012018,0.0,926.86670183976,19893.0,41,31,1,10423,201100306,,,,570.0,2.0,0.0,4.0,0.0,2.0,1.5,3636.0447915570453,862.0,0.0,0.0,0.0,28040.0,1,1,3,68.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1375.2836780409618,0.06913405107530095,0.04904720677749507,18693.333333333332,5,3,5,5_1,5_2,5_1_0 -307,2,68.0,2,0.0,5,111,2,75,74,9.0,0.0,569.0497910210104,1291.9986761387984,60.82686122836243,0.0,25803.0,60,70,1,10424,201100307,,,408.0,,0.0,1.0,5.0,0.0,2.0,1.5,2647.8378071504985,0.0,947.0,0.0,0.0,45061.0,5,5,1,125.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1921.8753283881713,0.07448263102694148,0.04265052547409448,30040.666666666668,9,5,9,9_1,9_3,9_0_0 -308,2,77.0,3,0.0,5,111,2,77,72,4.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,22225.0,70,70,1,10425,201100308,,,,,0.0,4.0,4.0,0.0,2.0,1.5,1841.892941067679,400.0,0.0,0.0,0.0,25020.0,5,5,5,90.0,5,4.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,638.1826812255044,0.02871463132623192,0.025506901727638066,16680.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -309,2,62.0,2,0.0,5,112,4,77,74,9.0,0.0,270.6456323148708,136.43069441803573,0.0,10.427461924862131,50461.0,70,50,1,10426,201100309,,,320.0,,0.0,2.0,6.0,0.0,2.0,1.5,1178.3155109631753,0.0,100.0,6.0,0.0,49213.0,5,5,1,102.0,9,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,417.50378865776867,0.008273791416297114,0.008483607759286544,32808.666666666664,9,5,9,9_1,9_0,9_0_0 -310,2,62.0,3,0.0,2,111,1,78,77,3.0,0.0,0.0,450.22129157951787,0.0,1334.7151263823528,18464.0,70,50,2,10428,201100310,624.0,624.0,,297.0,0.0,3.0,3.0,0.0,2.0,1.5,3144.2454123823836,0.0,330.0,768.0,0.0,21292.0,7,5,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1784.9364179618706,0.09667116648407012,0.08383131777014233,14194.666666666666,3,2,3_0,3_0_0,3_4_0,3_0_1 -311,2,45.0,3,0.0,7,111,2,56,64,3.0,0.0,0.0,824.0413942849358,0.0,1042.7461924862132,29521.0,50,50,2,10429,201100311,,,,483.0,2.0,1.0,4.0,2.0,4.0,2.5,1947.3880272942113,0.0,604.0,600.0,0.0,31019.0,1,1,3,92.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1866.787586771149,0.06323591974428878,0.06018206862797476,12407.6,2,1,2_0,2_0_0,2_3_0,2_0_0 -312,2,34.0,3,0.0,99,111,1,53,53,7.0,0.0,0.0,654.8673332065715,0.0,0.0,36818.0,41,41,2,1043,201100312,,,,600.0,2.0,0.0,4.0,1.0,3.0,1.8,3571.4848128979015,0.0,480.0,0.0,0.0,43837.0,1,1,3,85.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,654.8673332065715,0.017786607996267356,0.014938689536386421,24353.888888888887,7,4,7,7_0,7_2,7_0_0 -313,2,43.0,2,0.0,9,111,2,45,62,4.0,0.0,0.0,702.2771669044345,0.0,1451.589382231643,38511.0,50,31,1,10430,201100313,,,350.0,,2.0,0.0,5.0,2.0,4.0,2.3,1824.7803608144518,1350.0,0.0,0.0,0.0,36611.0,1,1,2,130.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2153.8665491360775,0.05592860609010614,0.05883113133036731,15917.826086956524,4,2,4_0,4_1_0,4_2_0,4_0_0 -314,2,51.0,5,0.0,1,111,6,0,52,3.0,0.0,0.0,2551.253985617268,0.0,0.0,19063.0,0,60,1,10431,201100314,,,360.0,,2.0,2.0,3.0,1.0,2.0,1.5,2800.971766315481,0.0,1870.0,0.0,0.0,20901.0,0,1,2,75.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2551.253985617268,0.1338327642877442,0.12206372832004536,13934.0,3,2,3_0,3_1_0,3_4_0,3_1_0 -315,2,32.0,2,0.0,1,111,2,34,37,10.0,0.0,0.0,682.1534720901786,0.0,2259.283417053462,47286.0,20,12,2,10434,201100315,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2488.576904809829,0.0,500.0,1300.0,0.0,88603.0,1,1,2,81.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2941.4368891436407,0.06220523810733918,0.03319793787054209,42191.90476190476,10,5,10,10_0,10_4,10_1_0 -316,2,59.0,3,0.0,1,300,6,56,75,7.0,0.0,0.0,1357.4854094594555,458.8083246939338,0.0,35083.0,50,43,1,10435,201100316,,,324.0,,1.0,4.0,8.0,0.0,2.0,1.5,1433.4395251877918,0.0,995.0,0.0,0.0,36300.0,1,5,1,250.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1816.2937341533893,0.051771334667884424,0.05003564005932202,24200.0,7,4,7,7_1,7_0,7_1_0 -317,2,55.0,3,0.0,8,111,2,77,62,4.0,0.0,0.0,532.0797082303393,0.0,1084.4560401856618,23441.0,71,50,1,10436,201100317,,,351.0,,1.0,2.0,4.0,0.0,2.0,1.5,2069.0744989815817,0.0,390.0,624.0,0.0,24621.0,5,1,2,90.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1616.535748416001,0.06896189362296835,0.06565678682490561,16414.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -318,2,78.0,3,0.0,7,111,4,0,78,9.0,0.0,0.0,444.76406380279644,0.0,0.0,16341.0,0,41,2,10437,201100318,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2990.3873347410113,0.0,326.0,0.0,0.0,30740.0,0,5,1,72.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,444.76406380279644,0.027217677241466034,0.014468577221951738,30740.0,9,5,9,9_0,9_3,9_0_0 -319,0,54.0,1,0.0,5,211,1,85,67,5.0,0.0,0.0,0.0,0.0,0.0,21837.0,71,50,2,10438,201100319,,,,,1.0,1.0,3.0,1.0,3.0,2.0,2626.5940737542874,0.0,0.0,0.0,0.0,33830.0,5,1,5,70.0,3,3.0,4,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,16915.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -320,2,71.0,2,0.0,5,112,2,77,74,9.0,0.0,0.0,1269.641053212142,0.0,1809.8381388338018,70182.0,50,12,1,1044,201100320,,,150.0,,0.0,2.0,4.0,0.0,2.0,1.5,1185.1131345770173,673.0,674.0,625.0,0.0,50073.0,5,5,1,110.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3079.479192045944,0.0438784758491628,0.06149979414147232,33382.0,9,5,9,9_1,9_0,9_0_0 -321,2,53.0,4,0.0,1,111,2,0,53,3.0,0.0,0.0,499.39709646537557,0.0,1032.241338475835,17388.0,0,50,2,10441,201100321,,,,238.0,1.0,0.0,2.0,0.0,1.0,1.0,3700.541689451607,960.0,0.0,0.0,0.0,13960.0,0,1,3,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1531.6384349412106,0.088085946338924,0.10971622026799503,13960.0,3,2,3_0,3_0_0,3_4_0,3_1_0 -322,1,45.0,4,52.0,1,111,1,85,85,2.0,0.0,0.0,818.5841665082144,0.0,625.6477154917279,34399.0,50,71,2,10442,201100322,,,,275.0,1.0,1.0,4.0,1.0,3.0,2.0,3499.2091314652675,0.0,600.0,360.0,0.0,18952.0,7,7,3,70.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1444.2318819999423,0.04198470542748168,0.07620472150696192,9476.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -323,2,45.0,2,0.0,7,112,2,54,48,7.0,1586.456009138882,0.0,818.5841665082144,0.0,0.0,62446.0,50,50,1,10443,201100323,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.3,1292.3578019173256,0.0,600.0,0.0,0.0,51074.0,1,1,1,120.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2405.0401756470965,0.038513918836228046,0.04708932481589647,22206.08695652174,7,4,7,7_1,7_0,7_0_0 -324,2,84.0,3,0.0,7,211,4,78,75,7.0,0.0,0.0,1309.734666413143,0.0,0.0,13932.0,71,70,1,10444,201100324,,,260.0,,0.0,0.0,3.0,0.0,2.0,1.5,2307.3544082302624,0.0,960.0,0.0,0.0,33227.0,5,5,1,90.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1309.734666413143,0.0940090917609204,0.03941778271926876,22151.333333333332,7,4,7,7_1,7_1,7_0_0 -325,1,43.0,4,292.0,1,300,5,56,69,2.0,0.0,138.792631956344,297.41891383131787,114.70208117348345,0.0,9461.0,50,71,1,10445,201100325,,,125.0,87.0,2.0,2.0,5.0,0.0,2.0,1.5,4241.959380033195,0.0,218.0,0.0,0.0,15380.0,4,4,3,118.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,550.9136269611453,0.058229957399973074,0.035820131792012044,10253.333333333334,2,1,2_1,2_1_1,2_0_1,2_1_0 -326,2,82.0,2,0.0,6,111,1,0,75,6.0,0.0,0.0,231.93218051066074,0.0,437.9534008442095,11265.0,0,50,2,10446,201100326,252.0,252.0,,398.0,0.0,3.0,2.0,0.0,1.0,1.0,2890.771829512205,0.0,170.0,252.0,0.0,21178.0,0,5,3,52.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,669.8855813548703,0.05946609688014827,0.031631201310552,21178.0,6,3,6,6_0,6_4,6_0_0 -327,2,51.0,3,0.0,7,112,2,0,54,8.0,2647.7950792527945,0.0,398.37762770066433,145.98446694806984,0.0,21094.0,0,50,1,10448,201100327,,,,,1.0,3.0,5.0,0.0,1.0,1.0,2114.0004040876124,0.0,292.0,0.0,0.0,26751.0,0,1,1,115.0,8,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3192.157173901529,0.15133010210967712,0.11932851758444653,26751.0,8,4,8,8_1,8_0,8_0_0 -328,2,49.0,3,0.0,2,111,1,54,53,8.0,0.0,0.0,909.9927317682983,0.0,0.0,51179.0,60,41,2,10449,201100328,,,,,3.0,0.0,4.0,2.0,4.0,2.3,3067.205010968822,0.0,667.0,0.0,0.0,60178.0,1,1,2,86.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,909.9927317682983,0.017780588361794844,0.015121684532026626,26164.34782608696,8,4,8,8_0,8_3,8_0_1 -329,2,41.0,3,0.0,99,112,4,0,46,9.0,0.0,0.0,668.510402648375,0.0,0.0,29075.0,0,20,2,1045,201100329,,,164.0,490.0,1.0,0.0,2.0,0.0,1.0,1.0,2816.326882627001,0.0,490.0,0.0,0.0,30043.0,0,1,3,34.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,668.510402648375,0.022992619179651765,0.022251785861877142,30043.0,9,5,9,9_0,9_0,9_0_0 -330,2,81.0,2,0.0,2,111,2,0,75,6.0,0.0,0.0,545.7227776721429,0.0,608.2686122836243,14059.0,0,50,1,10450,201100330,,,450.0,,0.0,1.0,3.0,0.0,1.0,1.0,2395.440485421081,0.0,400.0,350.0,0.0,19042.0,0,5,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1153.9913899557673,0.08208203925995927,0.06060242568825582,19042.0,5,3,5,5_1,5_4,5_0_1 -331,2,35.0,3,0.0,9,111,2,52,47,4.0,0.0,0.0,613.9381248811608,0.0,2085.4923849724264,50806.0,43,43,1,10454,201100331,,,370.0,,2.0,0.0,5.0,2.0,4.0,2.1,2393.6904970469673,0.0,450.0,1200.0,0.0,34610.0,1,1,2,160.0,5,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2699.430509853587,0.053132120415966363,0.0779956807238829,16480.95238095238,4,2,4_0,4_1_0,4_2_0,4_0_0 -332,1,42.0,3,64.0,6,112,2,68,62,6.0,0.0,0.0,2128.318832921357,104.27461924862132,0.0,35830.0,71,50,1,10455,201100332,,,,462.0,3.0,0.0,5.0,3.0,5.0,2.8,1920.5381333435284,0.0,1560.0,0.0,0.0,53848.0,1,1,3,92.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2232.5934521699783,0.062310729895896685,0.041461028305043425,19231.428571428572,5,3,5,5_1,5_0,5_0_0 -333,2,45.0,3,0.0,9,300,2,55,46,5.0,0.0,0.0,1594.8748177468376,0.0,0.0,45303.0,41,42,1,10457,201100333,,,355.0,,2.0,0.0,4.0,2.0,4.0,2.1,2240.4423580082944,0.0,1169.0,0.0,0.0,36748.0,1,1,2,90.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1594.8748177468376,0.035204618187467444,0.043400316146370896,17499.04761904762,5,3,5,5_1,5_0,5_0_0 -334,2,57.0,3,0.0,99,111,1,0,77,5.0,0.0,0.0,300.1475277196786,0.0,0.0,12555.0,0,71,2,10458,201100334,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3191.050171095006,0.0,220.0,0.0,0.0,17330.0,0,7,1,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,300.1475277196786,0.02390661311984696,0.01731953420194337,17330.0,5,3,5,5_0,5_4,5_0_0 -335,2,44.0,1,0.0,7,111,2,0,45,6.0,0.0,0.0,535.8114680826426,0.0,1107.5089360730312,36008.0,0,31,1,10459,201100335,,,210.0,,1.0,0.0,7.0,2.0,3.0,1.8,2136.9622829110795,1030.0,0.0,0.0,0.0,37608.0,0,1,1,150.0,6,4.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1643.3204041556737,0.04563764730492317,0.04369603286948718,20893.333333333332,6,3,6,6_1,6_2,6_0_0 -336,1,74.0,3,74.0,3,111,1,0,77,3.0,0.0,0.0,425.66376658427146,0.0,0.0,8248.0,0,70,2,1046,201100336,,,,266.0,0.0,4.0,4.0,0.0,1.0,1.0,1992.192902599123,0.0,312.0,0.0,0.0,12368.0,0,5,3,62.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,425.66376658427146,0.051608119130003814,0.03441653998902583,12368.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -337,2,41.0,3,0.0,5,111,1,85,34,5.0,1024.850581903718,0.0,245.5752499524643,0.0,0.0,27304.0,20,20,2,10460,201100337,646.0,646.0,,239.0,1.0,0.0,2.0,1.0,3.0,1.8,3567.36239868603,0.0,180.0,0.0,0.0,31545.0,6,1,3,50.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1270.4258318561822,0.04652892733138669,0.04027344529580543,17525.0,5,3,5,5_0,5_4,5_0_0 -338,2,49.0,2,0.0,3,111,1,56,56,5.0,0.0,0.0,626.216887378784,0.0,648.2405496622625,38248.0,50,60,2,10462,201100338,,,,,3.0,0.0,5.0,2.0,4.0,2.3,2322.816448242535,0.0,459.0,373.0,0.0,38559.0,1,1,2,80.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1274.4574370410464,0.03332089094961949,0.033052139242227406,16764.782608695652,4,2,4_0,4_0_0,4_3_0,4_0_1 -339,1,20.0,2,48.0,4,111,1,0,67,7.0,0.0,0.0,19.100297218525,0.0,26.06865481215533,30495.0,0,41,2,10463,201100339,,,,151.0,1.0,0.0,3.0,0.0,1.0,1.0,5246.673362524719,0.0,14.0,15.0,0.0,23522.0,0,1,3,57.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,45.16895203068033,0.0014811920652789091,0.0019202853511895387,23522.0,7,4,7,7_0,7_3,7_0_1 -340,2,53.0,3,0.0,1,111,6,78,46,5.0,475.9368027416647,0.0,878.61367205215,173.79103208103552,151.1981979105009,22064.0,71,60,1,10465,201100340,,,280.0,,1.0,2.0,5.0,0.0,2.0,1.5,2695.6053706448615,0.0,644.0,87.0,0.0,27050.0,5,1,1,100.0,9,7.0,3,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1679.5397047853514,0.07612127015887199,0.06209019241350652,18033.333333333332,5,3,5,5_1,5_3,5_1_0 -341,2,25.0,3,0.0,8,221,2,0,52,2.0,0.0,0.0,955.0148609262501,0.0,0.0,19930.0,0,71,1,10469,201100341,,,370.0,,1.0,0.0,3.0,0.0,1.0,1.0,3904.479298938231,0.0,700.0,0.0,0.0,11874.0,0,1,3,60.0,1,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,955.0148609262501,0.04791845764808079,0.08042907705290972,11874.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -342,2,61.0,2,0.0,4,112,2,75,74,9.0,0.0,256.7663691192364,2218.363091237261,0.0,537.0142891303998,34878.0,50,50,1,10473,201100342,,,150.0,,0.0,2.0,5.0,0.0,2.0,1.5,1037.5258964859863,0.0,1626.0,309.0,0.0,44900.0,5,5,1,105.0,8,2.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3012.1437494868974,0.08636228423323865,0.06708560689280395,29933.333333333332,9,5,9,9_1,9_1,9_0_1 -343,2,22.0,3,0.0,7,111,4,55,53,6.0,0.0,0.0,0.0,0.0,0.0,24286.0,31,42,2,10474,201100343,,,,420.0,2.0,0.0,2.0,0.0,2.0,1.5,3348.815393963071,0.0,0.0,0.0,0.0,29115.0,1,1,3,59.0,7,6.0,3,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,19410.0,6,3,6,6_0,6_2,6_0_0 -344,1,23.0,3,54.0,99,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,21285.0,0,31,2,10475,201100344,,,,261.0,0.0,0.0,2.0,0.0,1.0,1.0,3637.3431435007483,0.0,0.0,0.0,0.0,3987.0,0,3,3,31.0,8,7.0,1,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,3987.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -345,2,65.0,1,0.0,6,111,1,75,72,10.0,0.0,0.0,903.3004036966082,0.0,891.3834058296532,47513.0,20,10,2,10476,201100345,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2390.689477447362,829.0,346.0,0.0,0.0,72005.0,5,5,1,130.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1794.6838095262615,0.03777247931147815,0.02492443315778434,48003.333333333336,10,5,10,10_0,10_3,10_0_0 -346,2,49.0,3,0.0,1,111,2,0,47,8.0,0.0,0.0,124.84927411634389,0.0,258.06033461895873,20401.0,0,12,1,10477,201100346,,,120.0,,1.0,3.0,6.0,0.0,1.0,1.0,1268.0109534123537,240.0,0.0,0.0,0.0,28188.0,0,1,2,100.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,382.90960873530264,0.018769158802769602,0.013584135402841728,28188.0,8,4,8,8_1,8_3,8_1_0 -347,2,62.0,2,0.0,3,221,2,0,75,7.0,0.0,0.0,1200.5901108787143,0.0,0.0,31939.0,0,60,1,10479,201100347,,,180.0,,0.0,0.0,3.0,0.0,1.0,1.0,4202.20253556212,0.0,880.0,0.0,0.0,22186.0,0,5,1,70.0,1,1.0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1200.5901108787143,0.037590097087532935,0.054114762051686395,22186.0,7,4,7,7_1,7_1,7_0_1 -348,1,41.0,4,17.0,3,111,4,0,21,1.0,0.0,0.0,532.0797082303393,78.20596443646599,0.0,15245.0,0,50,2,1048,201100348,,,,283.0,1.0,3.0,1.0,0.0,1.0,1.0,5609.40478495857,0.0,390.0,0.0,0.0,5801.0,0,1,3,29.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,610.2856726668053,0.04003185783317844,0.1052035291616627,5801.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -349,2,49.0,4,0.0,1,300,2,63,43,6.0,1745.1016100527704,0.0,848.5989192801823,194.64595593075978,0.0,45971.0,50,31,1,10480,201100349,,,209.0,,2.0,0.0,8.0,2.0,4.0,2.5,904.3314899173619,0.0,622.0,0.0,0.0,48800.0,1,1,1,150.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2788.3464852637126,0.0606544666259971,0.05713824764884657,19520.0,6,3,6,6_1,6_0,6_1_0 -350,0,22.0,3,0.0,1,111,5,0,56,9.0,0.0,555.170527825376,113.40475732234572,0.0,234.40480394555416,32311.0,0,20,2,10481,201100350,,,,,1.0,0.0,7.0,0.0,1.0,1.0,3514.8431260034627,218.0,0.0,0.0,0.0,30480.0,0,3,5,200.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,902.9800890932759,0.027946522518438793,0.02962533100699724,30480.0,9,5,9,9_0,9_4,9_1_0 -351,2,84.0,1,0.0,1,212,5,0,77,8.0,0.0,999.3069500856767,630.309808211325,0.0,0.0,12951.0,0,41,1,10484,201100351,,,83.0,,0.0,2.0,3.0,0.0,1.0,1.0,2032.8141554493154,0.0,462.0,0.0,0.0,25306.0,0,5,1,65.0,1,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1629.6167582970018,0.1258294153576559,0.06439645768975744,25306.0,8,4,8,8_1,8_0,8_1_0 -352,1,45.0,3,192.0,1,400,5,85,64,2.0,0.0,971.5484236944079,3410.767360450893,417.0984769944853,0.0,40934.0,50,50,1,10486,201100352,,,,,2.0,1.0,6.0,7.0,9.0,4.4,753.1163249129326,0.0,2500.0,0.0,0.0,44067.0,6,1,3,120.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,4799.4142611397865,0.11724762449650136,0.10891175394603188,10015.227272727272,2,1,2_1,2_1_1,2_0_1,2_1_0 -353,2,22.0,1,0.0,1,221,4,56,62,8.0,0.0,0.0,832.2272359500179,0.0,0.0,51969.0,50,43,8,10488,201100353,,,,410.0,2.0,0.0,2.0,0.0,2.0,1.5,6624.045129652896,0.0,610.0,0.0,0.0,39975.0,4,1,3,68.0,1,3.0,3,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,832.2272359500179,0.01601391668013658,0.020818692581613955,26650.0,8,4,8,8_0,8_1,8_1_0 -354,2,37.0,2,0.0,9,111,2,0,31,10.0,0.0,0.0,409.2920832541072,0.0,1564.1192887293198,92286.0,0,10,1,10489,201100354,,,250.0,,1.0,0.0,6.0,0.0,1.0,1.0,1949.830243160281,0.0,300.0,900.0,0.0,66498.0,0,1,2,120.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1973.411371983427,0.02138364835385028,0.029676251496036376,66498.0,10,5,10,10_1,10_3,10_0_0 -355,1,22.0,2,134.0,1,111,2,0,34,10.0,0.0,0.0,327.43366660328576,0.0,0.0,23757.0,0,41,2,1049,201100355,,,,466.0,2.0,0.0,3.0,0.0,2.0,1.5,3956.917042857073,0.0,240.0,0.0,0.0,59018.0,0,1,3,55.0,9,7.0,5,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,327.43366660328576,0.013782618453646747,0.005548030543279775,39345.333333333336,10,5,10,10_0,10_3,10_1_0 -356,2,46.0,1,0.0,1,112,2,46,37,10.0,0.0,0.0,1185.690879857683,0.0,9890.309875716142,62318.0,20,12,1,10490,201100356,,,,,2.0,1.0,10.0,1.0,3.0,2.0,2289.902982145855,92.0,834.0,5634.0,0.0,150678.0,1,1,1,250.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,11076.000755573825,0.1777335722515778,0.07350775000712662,75339.0,10,5,10,10_1,10_2,10_1_0 -357,2,29.0,1,0.0,2,111,1,0,38,5.0,0.0,0.0,204.6460416270536,0.0,0.0,36580.0,0,10,2,10491,201100357,,,150.0,579.0,1.0,0.0,3.0,0.0,2.0,1.5,3672.82691997482,0.0,150.0,0.0,0.0,27550.0,0,1,3,70.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,204.6460416270536,0.005594478994725358,0.007428168480110838,18366.666666666668,5,3,5,5_0,5_3,5_0_1 -358,1,56.0,2,9999.0,9,112,2,56,37,10.0,0.0,0.0,650.2566360226244,0.0,1344.0642428070767,78451.0,50,50,1,10492,201100358,,,300.0,,2.0,3.0,6.0,0.0,2.0,1.5,1770.4038567777425,1250.0,0.0,0.0,0.0,57961.0,1,1,3,120.0,9,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1994.320878829701,0.025421229542385706,0.03440797913820847,38640.666666666664,10,5,10,10_1,10_1,10_0_0 -359,2,71.0,3,0.0,1,111,2,0,78,5.0,0.0,0.0,477.50743046312505,0.0,1216.5372245672486,9487.0,0,70,1,10493,201100359,,,,,0.0,1.0,2.0,0.0,1.0,1.0,1565.8342014094715,0.0,350.0,700.0,0.0,18770.0,0,5,1,40.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1694.0446550303736,0.1785648418921022,0.09025277863773967,18770.0,5,3,5,5_1,5_2,5_1_0 -360,2,86.0,1,0.0,1,111,2,72,74,9.0,0.0,0.0,155.5309916365607,0.0,2685.071445651999,37560.0,42,20,2,10494,201100360,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2590.3214127304236,0.0,114.0,1545.0,0.0,43588.0,5,5,5,117.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2840.60243728856,0.07562839289905644,0.06516936857136275,29058.666666666668,8,4,8,8_0,8_2,8_1_0 -361,2,39.0,2,0.0,6,112,4,0,34,9.0,0.0,0.0,995.9440692516608,0.0,0.0,17636.0,0,10,2,10495,201100361,,,,500.0,1.0,2.0,2.0,0.0,1.0,1.0,4839.558683114459,0.0,730.0,0.0,0.0,29550.0,0,1,3,57.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,995.9440692516608,0.056472219848699295,0.033703691006824396,29550.0,9,5,9,9_0,9_1,9_0_0 -362,2,76.0,2,0.0,5,111,2,86,78,5.0,2617.6524150791556,0.0,527.9867873977983,139.0328256648284,0.0,12899.0,71,70,1,10496,201100362,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2468.4177331812107,0.0,387.0,0.0,0.0,28364.0,5,5,1,100.0,8,7.0,3,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3284.6720281417824,0.2546454785752215,0.11580425991192295,18909.333333333332,5,3,5,5_1,5_3,5_0_0 -363,2,58.0,1,0.0,6,111,4,75,47,10.0,0.0,0.0,1874.5577413038109,93.84715732375918,0.0,28792.0,33,31,1,10498,201100363,,,472.0,,1.0,2.0,5.0,0.0,2.0,1.5,1933.1453500587081,0.0,1374.0,0.0,0.0,58523.0,5,1,1,147.0,7,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1968.40489862757,0.06836638297539491,0.03363472307686841,39015.333333333336,10,5,10,10_1,10_2,10_0_0 -364,2,43.0,1,0.0,2,300,4,0,43,10.0,0.0,346.98157989085996,1766.7774927135627,0.0,0.0,39735.0,0,20,1,10499,201100364,,,440.0,,1.0,0.0,5.0,0.0,1.0,1.0,1500.4708333438211,0.0,1295.0,0.0,0.0,38914.0,0,1,2,90.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2113.7590726044227,0.053196402984885434,0.054318730343948775,38914.0,10,5,10,10_1,10_0,10_0_1 -365,1,49.0,4,190.0,1,111,1,0,65,4.0,0.0,0.0,0.0,0.0,0.0,4165.0,0,70,2,105,201100365,,,,,1.0,0.0,1.0,0.0,1.0,1.0,1770.266773016474,0.0,0.0,0.0,0.0,15580.0,0,4,3,12.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0.0,0.0,0.0,15580.0,4,2,4_1,4_0_1,4_3_1,4_1_0 -366,2,50.0,2,0.0,7,111,2,52,38,9.0,1998.9345715149916,0.0,1077.8024859024822,0.0,0.0,68458.0,31,12,1,10500,201100366,,,260.0,,2.0,0.0,6.0,2.0,4.0,2.5,2659.730173370842,0.0,790.0,0.0,0.0,90525.0,1,1,1,110.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3076.737057417474,0.044943426004520635,0.033987705688124537,36210.0,9,5,9,9_1,9_4,9_0_0 -367,2,63.0,1,0.0,6,211,2,77,75,10.0,0.0,0.0,2496.873018815415,0.0,2670.9244633062226,114288.0,70,70,1,10501,201100367,,,650.0,,0.0,6.0,10.0,0.0,2.0,1.5,1062.6146301746467,2484.0,883.0,0.0,0.0,57438.0,5,5,1,300.0,3,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5167.797482121638,0.04521732362209189,0.08997175183888084,38292.0,10,5,10,10_1,10_2,10_0_0 -368,2,32.0,2,0.0,7,111,2,0,42,10.0,0.0,0.0,1822.7189353397816,0.0,3715.6460776807544,47317.0,0,10,2,10502,201100368,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3376.7231280499636,2502.0,382.0,590.0,0.0,51683.0,0,1,3,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,5538.365013020536,0.11704810138048768,0.10716028506511882,51683.0,10,5,10,10_0,10_4,10_0_0 -369,2,59.0,3,0.0,4,111,1,0,75,6.0,0.0,0.0,281.0472305011536,0.0,76.46805411565563,22369.0,0,33,2,10505,201100369,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3435.7377690282615,0.0,206.0,44.0,0.0,20418.0,0,5,1,69.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,357.51528461680925,0.01598262258557867,0.01750980921818049,20418.0,6,3,6,6_0,6_2,6_0_1 -370,2,49.0,1,0.0,1,112,5,0,35,2.0,0.0,555.170527825376,845.8703053918215,0.0,0.0,32137.0,0,10,1,1051,201100370,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2739.915213416985,0.0,620.0,0.0,0.0,10639.0,0,1,2,80.0,9,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1401.0408332171974,0.043595881171770774,0.1316891468387252,10639.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -371,1,82.0,4,351.0,2,111,1,78,78,1.0,0.0,0.0,478.8717374073054,0.0,0.0,11904.0,71,71,2,10510,201100371,51.0,51.0,,,0.0,0.0,4.0,0.0,3.0,2.0,3176.1847845361954,0.0,351.0,0.0,0.0,15232.0,5,5,3,123.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,478.8717374073054,0.040227800521447026,0.031438533180626664,7616.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -372,2,42.0,3,0.0,99,111,2,0,85,8.0,0.0,0.0,1964.6019996197144,0.0,2259.283417053462,25961.0,0,20,1,10512,201100372,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2985.3011009167744,0.0,1440.0,1300.0,0.0,26560.0,0,4,3,75.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4223.885416673176,0.1627011831852847,0.15903183044703223,26560.0,8,4,8,8_1,8_3,8_0_0 -373,1,22.0,3,106.0,1,111,4,84,46,1.0,0.0,0.0,0.0,0.0,0.0,16862.0,42,31,2,10513,201100373,,,,354.0,1.0,0.0,1.0,0.0,2.0,1.5,4129.866053904747,0.0,0.0,0.0,0.0,6651.0,3,1,3,30.0,8,6.0,3,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0.0,0.0,0.0,4434.0,1,1,1_1,1_0_1,1_2_1,1_1_0 -374,2,44.0,3,0.0,5,111,1,0,46,9.0,0.0,0.0,515.708024900175,0.0,0.0,25924.0,0,31,2,10516,201100374,,,,500.0,1.0,0.0,3.0,1.0,2.0,1.5,3629.7007967496456,0.0,378.0,0.0,0.0,51511.0,0,1,3,55.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,515.708024900175,0.019893073017288036,0.010011609654252004,34340.666666666664,9,5,9,9_0,9_4,9_0_0 -375,2,83.0,2,0.0,5,300,2,0,72,3.0,4918.013628330535,0.0,676.6962443134572,119.9158121359145,0.0,13526.0,0,70,1,10517,201100375,,,236.0,,0.0,2.0,5.0,0.0,1.0,1.0,2932.7199066283165,0.0,496.0,0.0,0.0,12419.0,0,5,1,125.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5714.625684779906,0.42249191814135045,0.46015183869715,12419.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -376,2,63.0,2,0.0,1,111,2,75,75,6.0,0.0,0.0,450.22129157951787,0.0,2048.996268235409,17412.0,70,60,2,10518,201100376,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2303.57315001942,0.0,330.0,1179.0,0.0,29210.0,5,5,1,130.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2499.217559814927,0.14353420398661423,0.0855603409727808,19473.333333333332,6,3,6,6_0,6_2,6_1_0 -377,2,31.0,2,0.0,8,111,2,46,46,5.0,0.0,0.0,613.9381248811608,0.0,1390.3282566482842,39046.0,50,31,1,10520,201100377,,,300.0,,2.0,0.0,4.0,3.0,5.0,2.4,1054.9725643884453,0.0,450.0,800.0,0.0,44472.0,1,1,3,78.0,7,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2004.266381529445,0.05133090153996427,0.04506805139254913,18530.0,5,3,5,5_1,5_2,5_0_0 -378,2,42.0,2,0.0,3,221,2,45,33,9.0,3172.912018277764,0.0,1091.4455553442858,52.13730962431066,0.0,37935.0,50,31,1,10521,201100378,,,,,2.0,1.0,5.0,1.0,3.0,2.0,3840.982197458508,0.0,800.0,0.0,0.0,59494.0,1,1,1,150.0,1,3.0,4,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4316.494883246361,0.11378660559500094,0.07255344880570075,29747.0,9,5,9,9_1,9_1,9_0_1 -379,0,23.0,2,0.0,5,111,1,84,53,4.0,0.0,0.0,0.0,0.0,76.46805411565563,24967.0,42,41,2,10522,201100379,,,,,1.0,0.0,5.0,0.0,2.0,1.5,4097.286983441131,0.0,0.0,44.0,0.0,23977.0,3,1,5,80.0,6,5.0,3,3,0,1,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,76.46805411565563,0.003062765014445293,0.0031892252623620817,15984.666666666666,4,2,4_0,4_0_0,4_2_0,4_0_0 -380,1,26.0,3,223.0,4,211,2,85,64,4.0,0.0,0.0,577.4278927880905,0.0,1193.529047612684,14569.0,50,50,2,10524,201100380,,,440.0,53.0,1.0,2.0,4.0,2.0,4.0,2.1,2406.7299985056543,1110.0,0.0,0.0,0.0,32404.0,6,1,3,64.0,3,3.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1770.9569404007746,0.1215565200357454,0.05465241761513315,15430.476190476189,4,2,4_1,4_0_1,4_1_1,4_0_1 -381,2,47.0,3,0.0,2,111,4,0,62,8.0,0.0,0.0,2107.854228758652,43.44775802025888,0.0,72749.0,0,60,1,10525,201100381,,,,,1.0,0.0,4.0,2.0,3.0,1.8,2059.7916027611377,0.0,1545.0,0.0,0.0,45625.0,0,1,2,75.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2151.3019867789108,0.029571567812326092,0.047151824367756945,25347.222222222223,8,4,8,8_1,8_3,8_0_1 -382,2,72.0,2,0.0,6,111,4,0,74,9.0,0.0,0.0,2926.4383952668663,0.0,0.0,22747.0,0,50,1,10527,201100382,,,240.0,,0.0,2.0,7.0,0.0,1.0,1.0,2878.367693551964,0.0,2145.0,0.0,0.0,33630.0,0,5,1,170.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2926.4383952668663,0.12865161978576808,0.08701868555655268,33630.0,9,5,9,9_1,9_3,9_0_0 -383,2,32.0,2,0.0,9,111,2,56,34,4.0,0.0,0.0,709.4396109737858,0.0,1946.4595593075978,54493.0,43,20,1,10528,201100383,,,,,2.0,1.0,4.0,1.0,3.0,1.8,1877.7974923706827,0.0,520.0,1120.0,0.0,29227.0,1,1,2,80.0,8,6.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2655.8991702813837,0.048738354839729575,0.09087142608825345,16237.222222222223,4,2,4_0,4_1_0,4_2_0,4_0_0 -384,1,38.0,3,140.0,99,111,2,0,55,3.0,0.0,0.0,657.5959470949322,0.0,1459.8446694806985,27217.0,0,41,1,1053,201100384,,,210.0,455.0,1.0,0.0,5.0,2.0,3.0,1.6,2720.5419204379878,0.0,482.0,840.0,0.0,23269.0,0,1,3,100.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2117.440616575631,0.07779845745584124,0.09099835044804809,14543.125,3,2,3_1,3_1_1,3_2_1,3_0_0 -385,2,58.0,2,0.0,3,111,2,54,62,10.0,0.0,0.0,1077.8024859024822,0.0,2485.211758758808,30120.0,50,50,1,10531,201100385,,,380.0,,2.0,1.0,5.0,0.0,2.0,1.5,1431.906477783617,0.0,790.0,1430.0,0.0,60076.0,1,1,1,130.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3563.0142446612904,0.11829396562620487,0.05930844671185316,40050.666666666664,10,5,10,10_1,10_4,10_0_1 -386,0,37.0,3,0.0,1,111,2,85,63,3.0,0.0,0.0,1159.6609025533037,0.0,1418.13482178125,36561.0,20,41,5,10532,201100386,,,240.0,,1.0,0.0,4.0,3.0,5.0,2.4,1683.8705294379201,0.0,850.0,816.0,0.0,32946.0,6,1,5,90.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2577.7957243345536,0.07050670726551664,0.07824305604123577,13727.5,3,2,3_0,3_1_0,3_2_0,3_1_0 -387,2,28.0,4,0.0,1,120,4,0,85,1.0,0.0,0.0,613.9381248811608,93.84715732375918,0.0,14120.0,0,60,2,10533,201100387,,,,317.0,0.0,0.0,2.0,0.0,1.0,1.0,3040.7187919577545,0.0,450.0,0.0,0.0,9124.0,0,7,3,73.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,707.7852822049199,0.05012643641677903,0.07757401164017097,9124.0,1,1,1_0,1_0_0,1_0_0,1_1_0 -388,2,33.0,3,0.0,9,300,5,43,63,7.0,0.0,111.0341055650752,1395.6860038965056,86.89551604051776,0.0,36788.0,33,50,1,10534,201100388,,,262.0,,2.0,0.0,5.0,2.0,4.0,2.1,1482.1283000017809,0.0,1023.0,0.0,0.0,49097.0,1,1,2,200.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1593.6156255020985,0.04331889815978304,0.0324585132595087,23379.52380952381,7,4,7,7_1,7_0,7_0_0 -389,1,57.0,3,141.0,8,112,2,78,56,1.0,0.0,0.0,491.1504999049286,0.0,1440.7276559517845,31980.0,71,71,1,10535,201100389,,,300.0,,1.0,3.0,5.0,1.0,3.0,2.0,2989.9080364992697,0.0,360.0,829.0,0.0,15723.0,5,1,2,126.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1931.8781558567132,0.060408947962999164,0.12286956406898894,7861.5,1,1,1_1,1_1_1,1_1_1,1_0_0 -390,2,56.0,2,0.0,7,112,2,85,37,10.0,0.0,0.0,914.0856526008394,1355.5700502320772,0.0,37619.0,20,41,1,10536,201100390,,,492.0,,1.0,1.0,8.0,1.0,3.0,2.0,3407.399355270239,0.0,670.0,0.0,0.0,75896.0,6,1,1,200.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2269.6557028329166,0.06033269631922477,0.029904813202710507,37948.0,10,5,10,10_1,10_0,10_0_0 -391,2,38.0,2,0.0,9,221,2,0,21,2.0,0.0,0.0,2728.6138883607146,0.0,868.9551604051776,35637.0,0,50,2,10537,201100391,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3878.879527358093,0.0,2000.0,500.0,0.0,10710.0,0,1,2,75.0,1,2.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,3597.569048765892,0.10095039000942538,0.33590747420783307,10710.0,2,1,2_0,2_0_0,2_1_0,2_0_0 -392,2,53.0,2,0.0,1,300,4,45,62,9.0,0.0,0.0,2073.108618432792,0.0,26.881284856141534,59235.0,50,50,2,10538,201100392,,,,,2.0,1.0,4.0,2.0,4.0,2.3,780.3875760225162,25.0,1510.0,0.0,0.0,70224.0,1,1,1,85.0,0,0.0,4,8,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2099.9899032889334,0.03545184271611266,0.029904162441457813,30532.17391304348,9,5,9,9_0,9_0,9_1_0 -393,1,66.0,4,16.0,5,111,7,0,55,3.0,0.0,0.0,336.9838152125482,0.0,0.0,8813.0,0,70,2,10539,201100393,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2600.9520592042763,0.0,247.0,0.0,0.0,13030.0,0,1,2,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,336.9838152125482,0.038237128697668016,0.025862150054685205,13030.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -394,1,36.0,4,360.0,4,111,2,85,22,1.0,0.0,0.0,122.78762497623215,0.0,260.6865481215533,4952.0,41,50,2,1054,201100394,,,,,1.0,0.0,3.0,2.0,4.0,2.1,3434.4385087283176,0.0,90.0,150.0,0.0,14780.0,6,4,3,70.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,383.47417309778547,0.07743824174026362,0.025945478558713497,7038.095238095238,1,1,1_1,1_0_1,1_3_1,1_0_1 -395,2,38.0,4,0.0,99,111,1,0,45,4.0,0.0,0.0,391.5560929797625,0.0,0.0,27131.0,0,10,2,10540,201100395,,,,259.0,1.0,0.0,3.0,1.0,2.0,1.5,3718.0051430977355,0.0,287.0,0.0,0.0,23497.0,0,1,3,60.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,391.5560929797625,0.014432055323422009,0.016664088733870815,15664.666666666666,4,2,4_0,4_0_0,4_3_0,4_0_0 -396,0,80.0,3,0.0,1,111,2,86,78,3.0,0.0,0.0,520.2053088180996,0.0,1075.2513942456615,24602.0,70,70,1,10541,201100396,,,200.0,,0.0,1.0,5.0,0.0,2.0,1.5,1200.8517458956815,1000.0,0.0,0.0,0.0,18635.0,6,5,5,80.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1595.456703063761,0.06485069112526466,0.08561613646706526,12423.333333333334,2,1,2_0,2_1_0,2_3_0,2_1_0 -397,2,61.0,2,0.0,5,112,2,78,55,5.0,0.0,0.0,600.2950554393572,0.0,2884.9311325451895,35785.0,71,50,1,10542,201100397,,,520.0,,1.0,1.0,3.0,0.0,2.0,1.5,3207.112810882364,0.0,440.0,1660.0,0.0,28117.0,5,1,1,100.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3485.2261879845464,0.09739349414515988,0.12395441149427558,18744.666666666668,5,3,5,5_1,5_2,5_0_0 -398,2,37.0,3,0.0,1,400,2,56,67,3.0,2379.684013708323,0.0,750.3688192991965,417.0984769944853,0.0,14660.0,50,50,1,10543,201100398,,,180.0,,2.0,0.0,4.0,2.0,4.0,2.1,1747.222560488122,0.0,550.0,0.0,0.0,28004.0,1,1,2,63.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3547.1513100020047,0.24196120804924998,0.1266658802314671,13335.238095238095,3,2,3_0,3_1_0,3_0_0,3_1_0 -399,0,62.0,3,0.0,2,112,6,0,78,1.0,0.0,0.0,859.5133748336251,60.82686122836243,0.0,8577.0,0,41,1,10545,201100399,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2979.6988827971722,0.0,630.0,0.0,0.0,8695.0,0,5,5,110.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,920.3402360619875,0.10730328040829981,0.10584706567705435,8695.0,1,1,1_0,1_1_0,1_1_0,1_0_1 -400,2,86.0,2,0.0,99,111,1,0,78,6.0,951.8736054833294,0.0,300.1475277196786,0.0,0.0,13961.0,0,70,2,10546,201100400,600.0,600.0,100.0,,0.0,1.0,3.0,0.0,1.0,1.0,2505.86141655209,0.0,220.0,0.0,0.0,20811.0,0,5,3,50.0,7,5.0,1,2,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1252.021133203008,0.08967990353148113,0.060161507529816347,20811.0,6,3,6,6_0,6_2,6_0_0 -401,2,55.0,2,0.0,6,221,2,69,12,6.0,0.0,0.0,2728.6138883607146,140.77073598563877,0.0,44426.0,60,71,1,10547,201100401,,,400.0,,2.0,2.0,3.0,0.0,2.0,1.5,2750.8932205052533,0.0,2000.0,0.0,0.0,31840.0,1,1,1,75.0,1,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2869.384624346353,0.06458795805038385,0.0901188638299734,21226.666666666668,6,3,6,6_1,6_1,6_0_0 -402,2,25.0,4,0.0,4,111,1,56,63,9.0,0.0,0.0,384.7345582588608,0.0,0.0,38831.0,60,43,2,10548,201100402,,,,,2.0,1.0,2.0,0.0,2.0,1.5,3221.7399573164034,0.0,282.0,0.0,0.0,46300.0,1,1,2,34.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,384.7345582588608,0.00990792300633156,0.008309601690256171,30866.666666666668,9,5,9,9_0,9_4,9_0_1 -403,2,58.0,2,0.0,7,111,4,34,38,10.0,0.0,0.0,2493.0291951178738,0.0,4730.030883286665,106168.0,10,12,2,10549,201100403,,,,,2.0,1.0,6.0,1.0,3.0,2.0,1962.9140490726195,4399.0,150.0,0.0,0.0,253343.0,1,1,2,130.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,7223.060078404538,0.06803424834606038,0.02851099133745372,126671.5,10,5,10,10_0,10_4,10_0_0 -404,2,72.0,3,0.0,4,111,2,56,72,2.0,2221.038412794435,0.0,955.0148609262501,243.30744491344973,0.0,18767.0,60,50,1,1055,201100404,,,180.0,,1.0,3.0,4.0,0.0,2.0,1.5,3154.817086499049,0.0,700.0,0.0,0.0,15440.0,1,5,1,96.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3419.3607186341346,0.18220070968370727,0.22146118644003462,10293.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_1 -405,2,68.0,1,0.0,5,111,4,75,74,10.0,0.0,0.0,1594.4183360591103,0.0,2675.225468883206,134068.0,30,31,1,10551,201100405,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2570.869532725585,2488.0,220.0,0.0,0.0,85600.0,5,5,1,184.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4269.643804942316,0.03184685238045108,0.04987901641287752,57066.666666666664,10,5,10,10_1,10_3,10_0_0 -406,2,50.0,3,0.0,8,112,2,52,69,3.0,2468.5255502201007,0.0,968.6579303680536,521.3730962431066,0.0,43361.0,50,50,1,10552,201100406,,,873.0,,2.0,2.0,6.0,4.0,6.0,3.1,745.40848683712,0.0,710.0,0.0,0.0,40890.0,5,1,2,140.0,5,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3958.556576831261,0.0912930185381163,0.09680989427320276,13190.322580645161,3,2,3_0,3_1_0,3_0_0,3_0_0 -407,2,41.0,3,0.0,99,111,1,54,54,6.0,0.0,0.0,886.7995137172322,0.0,139.0328256648284,56908.0,42,60,2,10554,201100407,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3033.1911630426052,0.0,650.0,80.0,0.0,40832.0,1,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1025.8323393820606,0.018026153429782466,0.02512324498878479,19443.809523809523,6,3,6,6_0,6_4,6_0_0 -408,2,65.0,2,0.0,5,112,2,75,75,9.0,0.0,0.0,1285.1771414178966,3997.193737863817,0.0,33255.0,60,60,1,10556,201100408,,,,,0.0,2.0,5.0,0.0,2.0,1.5,5039.4359310604,0.0,942.0,0.0,0.0,50023.0,5,5,1,140.0,9,1.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,5282.370879281714,0.15884441074369912,0.10559884211825989,33348.666666666664,9,5,9,9_1,9_1,9_0_0 -409,0,22.0,3,0.0,3,111,1,0,84,1.0,0.0,0.0,491.1504999049286,0.0,0.0,27085.0,0,31,2,10557,201100409,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3942.6119157141193,0.0,360.0,0.0,0.0,6298.0,0,3,5,50.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,491.1504999049286,0.01813367177053456,0.07798515400205282,6298.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -410,0,78.0,2,0.0,1,111,2,0,86,2.0,0.0,0.0,654.8673332065715,0.0,2606.865481215533,14529.0,0,71,1,10558,201100410,,,400.0,,0.0,4.0,4.0,0.0,1.0,1.0,2810.707665325193,0.0,480.0,1500.0,0.0,11385.0,0,6,5,100.0,7,6.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3261.732814422104,0.22449809446087854,0.2864938791762937,11385.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -411,2,67.0,4,0.0,4,112,2,75,74,10.0,2696.9752155360998,0.0,1557.4126085376095,0.0,1245.141114536476,61165.0,41,20,1,10559,201100411,,,280.0,,0.0,3.0,6.0,0.0,2.0,1.5,1460.0871407028915,1158.0,700.0,0.0,0.0,67700.0,4,5,1,180.0,10,0.0,3,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5499.528938610185,0.0899130048002973,0.08123381002378412,45133.333333333336,10,5,10,10_1,10_0,10_0_1 -412,2,22.0,3,0.0,99,111,2,63,56,6.0,0.0,0.0,81.85841665082144,0.0,156.41192887293198,20101.0,44,41,2,1056,201100412,,,,453.0,2.0,0.0,2.0,0.0,2.0,1.5,2568.6911466914685,0.0,60.0,90.0,0.0,29313.0,1,1,3,67.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,238.2703455237534,0.011853656311813015,0.008128487207851582,19542.0,6,3,6,6_0,6_2,6_0_0 -413,1,37.0,3,335.0,4,111,1,0,85,2.0,0.0,0.0,380.77935058648404,0.0,166.66396610807752,16285.0,0,30,2,10560,201100413,,,,,0.0,1.0,3.0,1.0,2.0,1.3,2958.5524522985247,155.0,220.0,0.0,0.0,14575.0,0,7,3,63.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,547.4433166945615,0.033616414902951273,0.037560433392422744,11211.538461538461,2,1,2_1,2_0_1,2_2_1,2_0_1 -414,2,29.0,2,0.0,7,112,4,22,43,6.0,0.0,0.0,1637.1683330164287,0.0,0.0,40511.0,42,20,1,10561,201100414,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3409.482288058001,0.0,1200.0,0.0,0.0,35333.0,1,1,2,80.0,8,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.040412933104994414,0.04633538994753994,19629.444444444445,6,3,6,6_1,6_0,6_0_0 -415,2,77.0,4,0.0,5,120,2,72,72,4.0,0.0,0.0,682.1534720901786,156.41192887293198,0.0,17256.0,50,50,1,10562,201100415,,,,,0.0,3.0,6.0,0.0,2.0,1.5,2232.9197128648,0.0,500.0,0.0,0.0,22237.0,5,5,1,200.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,838.5654009631106,0.048595584200458425,0.037710365650182605,14824.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -416,2,49.0,2,0.0,9,111,2,52,53,10.0,0.0,0.0,269.4663499677756,0.0,556.9802222192526,40087.0,41,50,1,10568,201100416,,,,,2.0,5.0,5.0,0.0,2.0,1.5,1065.2171140536445,518.0,0.0,0.0,0.0,60864.0,1,1,3,120.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,826.4465721870282,0.020616323800409814,0.013578578013062371,40576.0,10,5,10,10_1,10_2,10_0_0 -417,2,82.0,3,0.0,5,111,2,0,75,3.0,0.0,0.0,31.212318529085973,0.0,64.51508365473968,35476.0,0,70,1,1057,201100417,,,260.0,,1.0,1.0,4.0,0.0,3.0,2.0,1830.257244291491,60.0,0.0,0.0,0.0,25535.0,0,5,1,120.0,6,5.0,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,95.72740218382566,0.0026983707910651048,0.00374887026370964,12767.5,3,2,3_0,3_1_0,3_2_0,3_0_0 -418,2,31.0,2,0.0,9,112,2,47,65,8.0,0.0,0.0,1818.6211565924161,0.0,0.0,39523.0,43,31,1,10571,201100418,,,700.0,,2.0,0.0,6.0,2.0,4.0,2.1,1954.4349271058313,0.0,1333.0,0.0,0.0,56711.0,1,1,2,140.0,7,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1818.6211565924161,0.0460142488321336,0.0320682258572837,27005.238095238095,8,4,8,8_1,8_0,8_0_0 -419,2,54.0,3,0.0,7,112,2,0,42,8.0,0.0,0.0,1227.8762497623215,0.0,0.0,24188.0,0,41,2,10572,201100419,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3375.491144840095,0.0,900.0,0.0,0.0,27020.0,0,1,1,44.0,10,3.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1227.8762497623215,0.05076386016877466,0.0454432364826914,27020.0,8,4,8,8_0,8_1,8_0_0 -420,2,18.0,2,0.0,7,111,4,0,84,1.0,0.0,0.0,34.10767360450893,0.0,0.0,15892.0,0,41,2,10573,201100420,,,,330.0,0.0,0.0,1.0,0.0,1.0,1.0,4133.45888804377,0.0,25.0,0.0,0.0,4823.0,0,3,3,21.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,34.10767360450893,0.00214621656207582,0.0070718792462179,4823.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -421,2,61.0,2,0.0,1,111,2,74,74,10.0,0.0,0.0,1877.2863551921716,0.0,9681.898397234489,98896.0,20,12,1,10575,201100421,,,783.0,,0.0,3.0,20.0,0.0,2.0,1.5,1225.5969830611773,0.0,1376.0,5571.0,0.0,107387.0,5,5,1,650.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,11559.18475242666,0.11688222731381107,0.10764044765592352,71591.33333333333,10,5,10,10_1,10_3,10_1_0 -422,2,27.0,3,0.0,2,111,2,0,34,9.0,0.0,0.0,936.3695558725793,0.0,1935.4525096421905,45394.0,0,20,1,10578,201100422,,,200.0,,1.0,0.0,3.0,0.0,1.0,1.0,3811.3138938017223,1800.0,0.0,0.0,0.0,35881.0,0,1,1,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2871.8220655147697,0.06326435356026722,0.0800374032361074,35881.0,9,5,9,9_1,9_3,9_0_1 -423,2,47.0,3,0.0,3,111,2,0,43,8.0,0.0,0.0,401.10624158902505,0.0,613.4823432460554,45701.0,0,33,2,10579,201100423,,,,,1.0,0.0,4.0,1.0,2.0,1.3,3597.0448940404985,0.0,294.0,353.0,0.0,32309.0,0,1,2,67.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1014.5885848350804,0.022200577336055675,0.031402661327651134,24853.076923076922,7,4,7,7_0,7_3,7_0_1 -424,2,30.0,3,0.0,9,221,2,56,21,9.0,0.0,0.0,1227.8762497623215,0.0,0.0,53119.0,42,31,2,1058,201100424,,,360.0,530.0,2.0,0.0,2.0,0.0,2.0,1.5,4578.712945209275,0.0,900.0,0.0,0.0,55360.0,1,1,3,55.0,1,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1227.8762497623215,0.023115575401689067,0.022179845552065057,36906.666666666664,9,5,9,9_0,9_1,9_0_0 -425,2,25.0,3,0.0,99,111,1,54,67,4.0,0.0,0.0,341.0767360450893,0.0,0.0,18309.0,31,50,8,10581,201100425,,,,220.0,2.0,0.0,1.0,0.0,2.0,1.5,2982.7407715537583,0.0,250.0,0.0,0.0,24540.0,1,1,3,35.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,341.0767360450893,0.018628911248298068,0.013898807499799892,16360.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -427,2,51.0,2,0.0,6,111,2,0,43,9.0,0.0,0.0,1009.5871386934643,0.0,1911.7013528913908,73009.0,0,33,1,10584,201100427,,,580.0,,1.0,1.0,5.0,1.0,2.0,1.5,2539.482633768307,0.0,740.0,1100.0,0.0,51538.0,0,1,1,130.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2921.2884915848554,0.040012717494895905,0.05668222460291155,34358.666666666664,9,5,9,9_1,9_3,9_0_0 -428,2,91.0,4,0.0,3,111,2,0,86,3.0,0.0,0.0,109.14455553442858,0.0,1755.2894240184587,10766.0,0,71,1,10585,201100428,,,70.0,,0.0,3.0,4.0,0.0,1.0,1.0,3796.0987420110937,0.0,80.0,1010.0,0.0,13243.0,0,6,1,80.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1864.4339795528872,0.17317796577678685,0.1407863761649843,13243.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -429,1,50.0,4,219.0,99,111,1,0,52,3.0,0.0,0.0,361.5413402077947,86.89551604051776,973.2297796537989,6873.0,0,31,2,10586,201100429,560.0,560.0,,124.0,1.0,3.0,4.0,0.0,1.0,1.0,2381.5260475979107,0.0,265.0,560.0,0.0,12740.0,0,4,3,68.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1421.6666359021115,0.20684804829071896,0.11159078774741849,12740.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -430,2,32.0,3,0.0,4,111,1,0,22,6.0,0.0,0.0,532.0797082303393,0.0,0.0,49154.0,0,71,2,10587,201100430,,,,1200.0,1.0,0.0,2.0,0.0,1.0,1.0,3916.673623860374,0.0,390.0,0.0,0.0,20327.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,532.0797082303393,0.010824748916270076,0.026176007685853264,20327.0,6,3,6,6_0,6_4,6_0_1 -431,0,45.0,3,0.0,8,111,2,53,33,8.0,0.0,0.0,927.728722042643,0.0,1991.645227648667,53559.0,41,31,1,10589,201100431,,,,,2.0,0.0,5.0,2.0,4.0,2.3,3054.1032169641667,0.0,680.0,1146.0,0.0,65917.0,1,1,5,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2919.37394969131,0.05450762616350772,0.044288634945329884,28659.565217391308,8,4,8,8_1,8_4,8_0_0 -432,0,39.0,4,0.0,2,112,6,0,31,1.0,1269.1648073111057,0.0,137.79500136221608,90.37133668213848,0.0,21540.0,0,31,1,10590,201100432,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2910.20461045813,0.0,101.0,0.0,0.0,4557.0,0,1,5,150.0,7,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1497.3311453554602,0.06951398075002137,0.3285782631896994,4557.0,1,1,1_0,1_1_0,1_1_0,1_0_1 -433,1,29.0,3,221.0,1,112,2,84,46,5.0,0.0,0.0,1023.230208135268,3475.8206416207104,3475.8206416207104,40089.0,10,12,1,10591,201100433,,,,429.0,1.0,0.0,3.0,1.0,3.0,1.8,2452.172309769958,0.0,750.0,2000.0,0.0,30532.0,3,1,3,54.0,9,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,7974.871491376689,0.19892916988143103,0.2611971535234079,16962.222222222223,4,2,4_1,4_1_1,4_0_1,4_1_0 -434,1,38.0,2,107.0,4,111,1,0,56,3.0,0.0,0.0,294.69029994295715,0.0,93.84715732375918,20124.0,0,43,2,10596,201100434,,,,146.0,1.0,0.0,3.0,1.0,2.0,1.3,2826.513028543269,0.0,216.0,54.0,0.0,18934.0,0,1,3,80.0,7,5.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,388.53745726671633,0.019307168419137165,0.020520622016833016,14564.615384615385,3,2,3_1,3_0_1,3_2_1,3_0_1 -435,2,43.0,3,0.0,5,111,1,0,37,9.0,0.0,0.0,300.1475277196786,0.0,0.0,29065.0,0,31,2,10598,201100435,,,,291.0,1.0,0.0,2.0,0.0,1.0,1.0,2990.925492006226,0.0,220.0,0.0,0.0,33819.0,0,1,3,52.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,300.1475277196786,0.010326768543598094,0.008875115400209308,33819.0,9,5,9,9_0,9_4,9_0_0 -436,2,51.0,3,0.0,7,111,4,52,47,9.0,0.0,0.0,2728.6138883607146,187.69431464751835,0.0,60992.0,41,42,1,106,201100436,,,880.0,,2.0,0.0,4.0,1.0,3.0,2.0,1935.519316563005,0.0,2000.0,0.0,0.0,64801.0,1,1,1,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2916.308203008233,0.047814601964327005,0.045004061712137666,32400.5,9,5,9,9_1,9_3,9_0_0 -437,2,43.0,3,0.0,3,400,5,0,42,1.0,0.0,187.3700531410644,1948.23031628955,140.77073598563877,0.0,25395.0,0,20,1,10600,201100437,,,280.0,,1.0,0.0,4.0,3.0,4.0,2.1,2574.7114866784304,0.0,1428.0,0.0,0.0,12703.0,0,1,5,72.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2276.371105416253,0.08963855504690897,0.179199488736224,6049.047619047618,1,1,1_0,1_1_0,1_0_0,1_0_1 -438,2,55.0,3,0.0,1,112,4,52,63,8.0,0.0,0.0,1985.322588123431,0.0,437.62731745798413,46894.0,50,50,1,10601,201100438,,,83.0,,3.0,1.0,5.0,0.0,4.0,2.5,996.745251226975,407.0,1300.0,0.0,0.0,72218.0,1,1,1,115.0,9,0.0,5,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2422.949905581415,0.05166865495759404,0.033550498567966644,28887.2,8,4,8,8_1,8_0,8_1_0 -439,2,61.0,4,0.0,3,111,1,0,67,8.0,0.0,0.0,873.1564442754286,0.0,660.405921907935,14521.0,0,71,2,10602,201100439,,,,345.0,1.0,3.0,4.0,0.0,1.0,1.0,3419.9590626154695,0.0,640.0,380.0,0.0,24803.0,0,1,3,63.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1533.5623661833636,0.10560996943622089,0.06182971278407304,24803.0,7,4,7,7_0,7_4,7_0_1 -440,2,27.0,2,0.0,6,111,2,42,34,7.0,0.0,0.0,676.2669014635294,0.0,1397.8268125193597,40172.0,43,20,1,10603,201100440,,,,,2.0,0.0,8.0,1.0,3.0,1.8,1891.7105649916878,1300.0,0.0,0.0,0.0,40423.0,1,1,2,115.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2074.0937139828893,0.05163033242016552,0.051309742324490745,22457.222222222223,7,4,7,7_1,7_2,7_0_0 -441,2,80.0,1,0.0,1,112,2,0,71,3.0,0.0,0.0,2101.0326940377504,104.27461924862132,0.0,20707.0,0,70,1,10604,201100441,,,100.0,,0.0,0.0,7.0,0.0,1.0,1.0,2512.5532045572418,0.0,1540.0,0.0,0.0,12670.0,0,5,1,200.0,9,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2205.307313286372,0.10650057049724113,0.17405740436356526,12670.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -442,2,81.0,3,0.0,1,400,2,71,71,3.0,2062.392811880547,0.0,654.8673332065715,194.64595593075978,0.0,23703.0,71,70,1,10605,201100442,,,,,0.0,3.0,5.0,0.0,2.0,1.5,3289.7405509593564,0.0,480.0,0.0,0.0,20363.0,5,5,1,110.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2911.9061010178784,0.12284968573673706,0.1429998576348219,13575.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -443,2,79.0,3,0.0,1,400,5,0,71,2.0,0.0,333.10231669522557,688.9750068110804,156.41192887293198,0.0,17493.0,0,71,1,10607,201100443,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2853.3844754686866,0.0,505.0,0.0,0.0,11846.0,0,5,5,104.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1178.489252379238,0.06736919066936706,0.09948415096903918,11846.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -444,2,38.0,3,0.0,9,112,2,52,54,4.0,0.0,0.0,1256.526695590109,201.5975972140012,0.0,34900.0,31,60,1,10608,201100444,,,468.0,,2.0,0.0,4.0,2.0,4.0,2.1,2685.382247581698,0.0,921.0,0.0,0.0,32394.0,1,1,2,120.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1458.1242928041102,0.041780065696392844,0.04501217178502532,15425.714285714284,4,2,4_0,4_1_0,4_0_0,4_0_0 -445,2,46.0,4,0.0,7,300,5,0,48,6.0,0.0,356.6970641278041,777.6549581828036,86.89551604051776,0.0,14424.0,0,71,1,10609,201100445,,,400.0,,1.0,0.0,3.0,0.0,1.0,1.0,2928.128989053381,0.0,570.0,0.0,0.0,20152.0,0,1,2,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1221.2475383511255,0.08466774392340028,0.06060180321313644,20152.0,6,3,6,6_1,6_0,6_0_0 -446,1,20.0,2,90.0,99,111,2,0,84,2.0,0.0,0.0,0.0,0.0,0.0,15213.0,0,41,8,10611,201100446,,,,275.0,0.0,0.0,3.0,0.0,1.0,1.0,3785.6956963638545,0.0,0.0,0.0,0.0,9534.0,0,3,3,57.0,9,7.0,1,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,9534.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -447,2,77.0,3,0.0,1,112,2,77,72,2.0,3312.520147081986,0.0,828.1343151174768,208.54923849724264,0.0,12739.0,70,70,1,10612,201100447,,,250.0,,0.0,3.0,4.0,0.0,2.0,1.5,2265.2859938088654,0.0,607.0,0.0,0.0,17500.0,5,5,3,80.0,6,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4349.203700696706,0.34140856430620187,0.24852592575409746,11666.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -448,2,77.0,3,0.0,4,221,2,0,77,4.0,0.0,0.0,315.1549041056625,0.0,0.0,13387.0,0,50,1,10613,201100448,,,163.0,,0.0,1.0,4.0,0.0,1.0,1.0,3917.8080096247027,0.0,231.0,0.0,0.0,15572.0,0,5,1,140.0,1,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,315.1549041056625,0.023541861814122846,0.020238563068691404,15572.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -449,2,55.0,1,0.0,7,112,2,54,67,9.0,0.0,0.0,1637.1683330164287,0.0,0.0,28576.0,20,50,1,10614,201100449,,,120.0,,2.0,1.0,5.0,0.0,2.0,1.5,1579.8018364127242,0.0,1200.0,0.0,0.0,43647.0,1,1,1,150.0,10,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.057291724979578275,0.037509298073554395,29098.0,8,4,8,8_1,8_1,8_0_0 -450,2,37.0,2,0.0,2,111,2,0,46,8.0,0.0,0.0,532.0797082303393,0.0,868.9551604051776,23560.0,0,43,2,10619,201100450,,,,262.0,1.0,0.0,3.0,0.0,1.0,1.0,3252.6624321174186,0.0,390.0,500.0,0.0,27979.0,0,1,3,70.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1401.034868635517,0.05946667523919851,0.05007451548073615,27979.0,8,4,8,8_0,8_2,8_0_1 -451,2,66.0,1,0.0,2,112,2,72,72,10.0,3966.1400228472053,0.0,3733.913416544305,0.0,893.5339086181447,129197.0,43,43,1,10621,201100451,,,,,0.0,2.0,11.0,0.0,2.0,1.5,2919.900587448948,831.0,2420.0,0.0,0.0,91426.0,5,5,1,300.0,10,0.0,3,1,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,8593.587348009654,0.06651537843765455,0.09399500522837764,60950.666666666664,10,5,10,10_1,10_0,10_0_1 -452,2,78.0,1,0.0,6,111,2,0,75,10.0,0.0,0.0,559.3658471139465,0.0,69.5164128324142,13879.0,0,42,1,10623,201100452,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2294.2574670197764,0.0,410.0,40.0,0.0,54160.0,0,5,1,140.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,628.8822599463607,0.04531178470684925,0.011611563145242997,54160.0,10,5,10,10_1,10_3,10_0_0 -453,2,52.0,2,0.0,7,221,2,64,43,8.0,1507.1332086819382,0.0,854.0561470569037,86.89551604051776,0.0,76381.0,50,41,1,10624,201100453,,,490.0,,2.0,0.0,4.0,2.0,4.0,2.3,2143.904456709013,0.0,626.0,0.0,0.0,61770.0,1,1,2,107.0,1,2.0,4,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2448.0848717793597,0.032050966494015,0.03963226277771345,26856.521739130436,8,4,8,8_1,8_1,8_0_0 -454,2,25.0,1,0.0,4,111,1,31,46,5.0,0.0,0.0,296.5170260263168,0.0,612.893294720027,42311.0,41,20,2,10626,201100454,,,,700.0,2.0,0.0,3.0,0.0,2.0,1.5,3126.1728023820597,570.0,0.0,0.0,0.0,26604.0,1,1,3,86.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,909.4103207463438,0.021493472637052865,0.0341832175893228,17736.0,5,3,5,5_0,5_2,5_0_1 -456,0,38.0,3,0.0,2,111,1,0,56,3.0,0.0,0.0,0.0,0.0,0.0,16499.0,0,41,2,10628,201100456,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3116.925007170509,0.0,0.0,0.0,0.0,13075.0,0,1,5,12.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,13075.0,3,2,3_0,3_0_0,3_4_0,3_0_1 -457,1,34.0,4,164.0,4,111,1,0,56,2.0,0.0,0.0,182.07185808633486,0.0,376.3379879859815,7978.0,0,71,2,1063,201100457,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3518.4418304711007,350.0,0.0,0.0,0.0,10510.0,0,4,3,32.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,558.4098460723163,0.06999371347108503,0.05313128887462572,10510.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -458,2,41.0,1,0.0,9,112,2,37,21,10.0,0.0,0.0,3069.6906244058036,52.13730962431066,0.0,62595.0,50,31,1,10631,201100458,,,355.0,,2.0,0.0,5.0,1.0,3.0,1.8,6596.108903004372,0.0,2250.0,0.0,0.0,85766.0,1,1,2,132.0,9,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3121.827934030114,0.04987343931672041,0.03639936494683341,47647.777777777774,10,5,10,10_1,10_1,10_0_0 -459,2,58.0,2,0.0,9,221,4,56,78,5.0,0.0,0.0,903.1711970473965,158.14983919374234,0.0,26936.0,41,70,2,10632,201100459,,,,,1.0,2.0,3.0,0.0,2.0,1.5,2439.525072671846,0.0,662.0,0.0,0.0,27870.0,1,5,3,65.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1061.321036241139,0.03940158287203516,0.038081127959854286,18580.0,5,3,5,5_0,5_1,5_0_0 -460,0,75.0,4,0.0,2,111,2,0,78,5.0,0.0,0.0,371.09148881705715,0.0,1251.2954309834558,20771.0,0,70,2,10633,201100460,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2708.791247216397,0.0,272.0,720.0,0.0,16863.0,0,5,5,62.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1622.386919800513,0.07810827210054946,0.09620986300186876,16863.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -461,2,54.0,3,0.0,6,111,1,0,45,8.0,0.0,0.0,709.4396109737858,48.661488982689946,0.0,32360.0,0,41,2,10634,201100461,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2889.7832828617047,0.0,520.0,0.0,0.0,27321.0,0,1,1,80.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,758.1010999564758,0.023427104448593195,0.027747926501829206,27321.0,8,4,8,8_0,8_3,8_0_0 -462,2,35.0,3,0.0,8,111,6,42,42,8.0,0.0,0.0,668.510402648375,0.0,0.0,52811.0,20,20,2,10636,201100462,,,,251.0,2.0,0.0,4.0,1.0,3.0,1.8,2938.31973788655,0.0,490.0,0.0,0.0,46903.0,1,1,3,85.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,668.510402648375,0.012658544671533866,0.014253041439745326,26057.222222222223,8,4,8,8_0,8_4,8_0_0 -463,2,77.0,2,0.0,2,111,2,0,75,5.0,0.0,0.0,257.8540124500875,0.0,938.4715732375919,24141.0,0,70,2,10637,201100463,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2092.7394932657044,0.0,189.0,540.0,0.0,17934.0,0,5,1,60.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1196.3255856876794,0.04955575931766205,0.06670712533108505,17934.0,5,3,5,5_0,5_2,5_0_1 -464,2,36.0,2,0.0,6,111,4,43,37,8.0,0.0,0.0,818.5841665082144,0.0,0.0,35616.0,10,31,2,10641,201100464,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3426.862538553863,0.0,600.0,0.0,0.0,38793.0,1,1,1,45.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,818.5841665082144,0.022983607550208174,0.02110133700688821,25862.0,8,4,8,8_0,8_3,8_0_0 -465,1,33.0,3,250.0,5,221,2,0,22,3.0,0.0,0.0,315.2444171437684,0.0,651.6023449128708,50467.0,0,60,1,10642,201100465,,,,316.0,1.0,0.0,5.0,2.0,3.0,1.6,3330.3247144373195,606.0,0.0,0.0,0.0,22867.0,0,1,3,90.0,1,2.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,966.8467620566391,0.019157999525564014,0.04228131202416754,14291.875,3,2,3_1,3_1_1,3_1_1,3_0_0 -466,2,66.0,2,0.0,5,111,2,77,74,9.0,3966.1400228472053,0.0,1637.1683330164287,48.661488982689946,0.0,30714.0,60,50,1,10643,201100466,,,400.0,,0.0,1.0,4.0,0.0,2.0,1.5,3847.1325127351056,0.0,1200.0,0.0,0.0,50403.0,5,5,2,130.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5651.969844846323,0.184019334663226,0.11213558408916777,33602.0,9,5,9,9_1,9_3,9_0_0 -467,2,45.0,3,0.0,1,120,1,68,38,9.0,0.0,0.0,1432.5222913893751,4638.482646242838,0.0,50395.0,41,31,1,10644,201100467,,,291.0,,2.0,2.0,5.0,1.0,3.0,2.0,4332.103958712776,0.0,1050.0,0.0,0.0,60005.0,1,1,2,122.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6071.004937632213,0.12046839840524284,0.10117498437850535,30002.5,9,5,9,9_1,9_0,9_1_0 -468,2,46.0,1,0.0,1,111,2,0,63,7.0,0.0,0.0,368.36287492869644,0.0,1254.7712516250765,33000.0,0,50,2,10645,201100468,,,,,1.0,1.0,4.0,0.0,1.0,1.0,3251.782504293308,0.0,270.0,722.0,0.0,24680.0,0,1,2,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1623.134126553773,0.049185882622841605,0.06576718503054185,24680.0,7,4,7,7_0,7_4,7_1_0 -469,2,40.0,3,0.0,8,112,2,46,37,8.0,0.0,0.0,2101.0326940377504,0.0,0.0,44849.0,42,42,1,10647,201100469,,,790.0,,2.0,0.0,4.0,2.0,4.0,2.1,2069.0242155856263,0.0,1540.0,0.0,0.0,54288.0,1,1,2,130.0,10,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2101.0326940377504,0.046846812505022414,0.03870160429630398,25851.42857142857,8,4,8,8_1,8_1,8_0_0 -470,1,55.0,4,81.0,1,111,2,0,52,2.0,0.0,0.0,671.0648483753484,0.0,1387.0742985769032,14605.0,0,70,1,10649,201100470,,,190.0,,1.0,3.0,3.0,0.0,1.0,1.0,2218.086050066129,1290.0,0.0,0.0,0.0,10724.0,0,1,3,95.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,2058.1391469522514,0.14092017438906207,0.19191898050655085,10724.0,2,1,2_1,2_1_1,2_2_1,2_1_0 -471,2,61.0,4,0.0,99,112,5,77,78,2.0,0.0,0.0,764.011888741,556.1313026593136,0.0,10288.0,50,70,1,1065,201100471,,,576.0,,0.0,3.0,5.0,0.0,2.0,1.5,1822.0137381331672,0.0,560.0,0.0,0.0,14440.0,5,5,1,77.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1320.1431914003138,0.12831873944404293,0.09142265868423226,9626.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_0 -472,1,32.0,3,471.0,3,111,2,55,52,4.0,0.0,0.0,477.50743046312505,0.0,1998.5968689319086,20969.0,71,60,2,10650,201100472,,,,81.0,2.0,0.0,4.0,3.0,5.0,2.4,3416.36210189117,0.0,350.0,1150.0,0.0,38418.0,4,1,3,65.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2476.1042993950336,0.11808404308240897,0.06445167107592882,16007.5,4,2,4_1,4_0_1,4_3_1,4_0_1 -473,1,22.0,3,150.0,1,111,2,56,68,4.0,0.0,0.0,2182.8911106885716,151.1981979105009,0.0,19273.0,50,41,2,10651,201100473,,,350.0,350.0,2.0,0.0,4.0,1.0,3.0,1.8,3223.1859615505077,0.0,1600.0,0.0,0.0,28887.0,1,1,3,74.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2334.0893085990724,0.12110669374768186,0.08080068226534678,16048.333333333332,4,2,4_1,4_0_1,4_3_1,4_1_0 -474,2,46.0,2,0.0,8,111,2,0,48,7.0,0.0,0.0,545.7227776721429,0.0,1216.5372245672486,38399.0,0,20,1,10652,201100474,,,400.0,,2.0,1.0,4.0,2.0,3.0,1.8,2530.2601443610893,0.0,400.0,700.0,0.0,39497.0,0,1,2,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1762.2600022393915,0.04589338269849193,0.0446175659477781,21942.777777777777,7,4,7,7_1,7_4,7_0_0 -475,2,81.0,3,0.0,8,112,6,0,71,2.0,1427.810408224994,0.0,1211.5045664321572,0.0,0.0,9887.0,0,71,1,10653,201100475,,,,,0.0,4.0,4.0,0.0,1.0,1.0,3322.1524226992933,0.0,888.0,0.0,0.0,10070.0,0,5,1,85.0,7,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2639.314974657151,0.26694800997847185,0.2620968197276218,10070.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -476,2,59.0,2,0.0,1,300,2,78,78,5.0,1343.7282397406332,0.0,478.8717374073054,187.69431464751835,0.0,17974.0,70,50,1,10658,201100476,,,130.0,,0.0,2.0,6.0,0.0,2.0,1.5,1544.4492870033378,0.0,351.0,0.0,0.0,25936.0,6,5,1,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2010.294291795457,0.11184456947788232,0.07750980458804199,17290.666666666668,5,3,5,5_1,5_0,5_1_0 -477,2,71.0,1,0.0,4,400,2,75,78,9.0,0.0,0.0,2046.460416270536,222.45252106372547,0.0,28372.0,41,60,1,10659,201100477,,,,,0.0,2.0,4.0,0.0,2.0,1.5,5482.0367978043,0.0,1500.0,0.0,0.0,50669.0,5,5,1,95.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2268.912937334261,0.07997014441471384,0.04477911419870653,33779.333333333336,9,5,9,9_1,9_1,9_0_1 -478,2,83.0,2,0.0,5,112,2,0,72,10.0,0.0,0.0,3328.9089438000715,0.0,0.0,37616.0,0,70,1,1066,201100478,,,105.0,,0.0,3.0,6.0,0.0,1.0,1.0,1992.4431598951714,0.0,2440.0,0.0,0.0,45044.0,0,5,1,113.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3328.9089438000715,0.08849715397171606,0.07390349311340182,45044.0,10,5,10,10_1,10_1,10_0_0 -479,2,45.0,3,0.0,9,112,2,64,52,5.0,0.0,0.0,668.510402648375,0.0,2085.4923849724264,35208.0,71,71,1,10660,201100479,,,240.0,,3.0,0.0,6.0,2.0,4.0,2.5,2452.5823415230225,0.0,490.0,1200.0,0.0,42022.0,1,1,2,131.0,8,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2754.0027876208014,0.0782209380714838,0.06553716595166345,16808.8,4,2,4_0,4_1_0,4_1_0,4_0_0 -480,2,54.0,3,0.0,7,221,2,22,54,4.0,3855.0881022074836,0.0,968.6579303680536,208.54923849724264,0.0,31548.0,50,43,1,10661,201100480,,,160.0,,2.0,1.0,4.0,0.0,2.0,1.5,2751.3017171820206,0.0,710.0,0.0,0.0,24596.0,4,1,1,110.0,1,2.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5032.29527107278,0.15951233900953407,0.20459811640399986,16397.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0 -481,2,27.0,3,0.0,4,111,1,52,63,8.0,0.0,0.0,270.50676058541177,0.0,559.130725007744,37229.0,50,50,2,10662,201100481,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3237.4876222119015,520.0,0.0,0.0,0.0,49630.0,1,1,2,57.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,829.6374855931558,0.022284710456718038,0.016716451452612448,27572.222222222223,8,4,8,8_0,8_4,8_0_1 -482,2,61.0,4,0.0,4,111,1,0,86,9.0,0.0,0.0,261.9469332826286,55.61313026593137,0.0,27600.0,0,20,2,10663,201100482,,,228.0,,0.0,2.0,4.0,0.0,1.0,1.0,2599.627579626892,0.0,192.0,0.0,0.0,31555.0,0,6,2,70.0,5,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,317.56006354856,0.011505799403933332,0.010063700318445888,31555.0,9,5,9,9_0,9_2,9_0_1 -483,2,84.0,3,0.0,1,221,2,71,71,2.0,2379.684013708323,0.0,523.8938665652572,145.98446694806984,0.0,10544.0,70,71,1,10664,201100483,,,,,0.0,2.0,3.0,0.0,2.0,1.5,4464.152416365964,0.0,384.0,0.0,0.0,16276.0,5,5,1,70.0,1,1.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3049.5623472216503,0.28922252913710644,0.1873655902692093,10850.666666666666,2,1,2_0,2_1_0,2_1_0,2_1_0 -484,2,28.0,4,0.0,1,111,2,54,52,7.0,0.0,0.0,463.8643610213215,0.0,3475.8206416207104,35884.0,31,50,2,10665,201100484,,,358.0,550.0,2.0,0.0,5.0,0.0,2.0,1.5,3517.3464771348426,0.0,340.0,2000.0,0.0,36266.0,1,1,3,130.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,3939.685002642032,0.1097894605574081,0.10863301722390206,24177.333333333332,7,4,7,7_0,7_3,7_1_0 -485,2,78.0,4,0.0,99,112,5,77,64,5.0,0.0,222.0682111301504,556.6372332255858,119.9158121359145,0.0,21271.0,70,70,1,10666,201100485,,,,,1.0,3.0,3.0,0.0,2.0,1.5,3265.7958841214713,0.0,408.0,0.0,0.0,26160.0,5,5,3,100.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,898.6212564916507,0.04224630983459408,0.034350965462219066,17440.0,5,3,5,5_1,5_1,5_0_0 -486,1,39.0,2,329.0,8,111,2,0,56,3.0,0.0,0.0,272.86138883607146,0.0,608.2686122836243,17742.0,0,50,2,10667,201100486,,,,24.0,1.0,0.0,3.0,2.0,3.0,1.6,1785.5057510097402,0.0,200.0,350.0,0.0,22193.0,0,1,3,80.0,7,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,881.1300011196957,0.04966351037761784,0.03970305957372576,13870.625,3,2,3_1,3_0_1,3_2_1,3_0_0 -487,1,63.0,5,96.0,99,111,2,0,78,2.0,0.0,0.0,995.9440692516608,43.44775802025888,0.0,10484.0,0,70,8,10668,201100487,,,185.0,347.0,0.0,2.0,2.0,0.0,1.0,1.0,2407.731207362475,0.0,730.0,0.0,0.0,11630.0,0,5,3,40.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1039.3918272719197,0.09914076948415869,0.0893716102555391,11630.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -488,1,34.0,3,210.0,5,111,1,64,55,1.0,0.0,0.0,491.1504999049286,0.0,208.54923849724264,10390.0,71,20,2,10669,201100488,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3021.6910441072932,0.0,360.0,120.0,0.0,11590.0,4,1,3,99.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,699.6997384021713,0.0673435744371676,0.06037098691994575,5519.047619047619,1,1,1_1,1_0_1,1_3_1,1_0_0 -489,2,22.0,1,0.0,1,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,18595.0,0,41,3,1067,201100489,,,,310.0,0.0,0.0,1.0,0.0,1.0,1.0,3313.0905557732876,0.0,0.0,0.0,0.0,911.0,0,3,3,12.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,911.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -490,2,65.0,3,0.0,5,111,1,78,77,6.0,0.0,0.0,682.1534720901786,0.0,0.0,23679.0,50,70,2,10673,201100490,,,,401.0,0.0,2.0,4.0,0.0,2.0,1.5,2740.4029222977333,0.0,500.0,0.0,0.0,28946.0,5,5,3,89.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,682.1534720901786,0.028808373330384673,0.023566415811862734,19297.333333333332,6,3,6,6_0,6_4,6_0_0 -491,1,43.0,3,44.0,2,111,2,0,48,3.0,0.0,0.0,597.5664415509965,0.0,2203.6702867875306,26755.0,0,60,1,10677,201100491,,,440.0,456.0,1.0,0.0,4.0,2.0,3.0,2.0,2124.1393219197957,0.0,438.0,1268.0,0.0,27298.0,0,1,3,80.0,5,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,2801.236728338527,0.10469956002012809,0.10261692169164506,13649.0,3,2,3_1,3_1_1,3_2_1,3_0_1 -492,1,26.0,2,94.0,99,111,1,0,84,3.0,0.0,0.0,1091.4455553442858,0.0,0.0,12102.0,0,41,2,10678,201100492,,,,195.0,0.0,0.0,1.0,0.0,1.0,1.0,3253.6413378536186,0.0,800.0,0.0,0.0,12987.0,0,3,3,20.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1091.4455553442858,0.09018720503588545,0.08404139180290181,12987.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -493,2,42.0,3,0.0,1,221,2,54,62,6.0,0.0,0.0,1910.0297218525002,59.088950907552075,0.0,68278.0,31,50,1,10679,201100493,,,650.0,,2.0,0.0,4.0,2.0,4.0,2.1,2220.1726059202183,0.0,1400.0,0.0,0.0,41495.0,1,1,1,140.0,1,1.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1969.1186727600523,0.02883972396321,0.04745436010989402,19759.52380952381,6,3,6,6_1,6_1,6_1_0 -494,2,82.0,3,0.0,7,111,4,86,74,9.0,0.0,83.27557917380639,2488.1442912523144,0.0,980.6292715520431,32835.0,50,44,1,1068,201100494,,,430.0,,0.0,4.0,5.0,0.0,2.0,1.5,1663.1236814573963,912.0,1476.0,0.0,0.0,51055.0,5,5,1,120.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3552.049141978164,0.10817874651981617,0.06957299269372566,34036.666666666664,9,5,9,9_1,9_2,9_0_0 -495,1,59.0,4,51.0,6,111,2,0,52,5.0,0.0,0.0,709.4396109737858,0.0,1077.5043989024202,14996.0,0,71,2,10680,201100495,,,,395.0,2.0,2.0,4.0,1.0,2.0,1.5,2592.710592280924,0.0,520.0,620.0,0.0,27938.0,0,1,3,68.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1786.944009876206,0.11916137702562057,0.06396105697888918,18625.333333333332,5,3,5,5_0,5_3,5_0_0 -496,2,65.0,3,0.0,1,111,6,0,68,3.0,0.0,0.0,1473.4514997147858,0.0,166.8393907977941,30633.0,0,70,2,10682,201100496,,,85.0,520.0,1.0,4.0,3.0,1.0,2.0,1.5,2926.608091029373,0.0,1080.0,96.0,0.0,21445.0,0,5,3,63.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1640.2908905125798,0.05354653120858485,0.07648826721905246,14296.666666666666,3,2,3_0,3_0_0,3_3_0,3_1_0 -497,2,66.0,3,0.0,8,111,2,78,22,3.0,0.0,0.0,368.36287492869644,0.0,900.237546179764,20241.0,70,50,1,10683,201100497,,,500.0,,1.0,2.0,4.0,0.0,2.0,1.5,1347.837575088553,0.0,270.0,518.0,0.0,20490.0,6,5,3,100.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1268.6004211084605,0.06267478983787661,0.06191314890719671,13660.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -498,2,87.0,2,0.0,4,300,2,0,75,7.0,0.0,0.0,204.6460416270536,0.0,1581.4983919374233,11946.0,0,41,1,10684,201100498,,,300.0,,0.0,3.0,4.0,0.0,1.0,1.0,1658.6856793372342,0.0,150.0,910.0,0.0,22560.0,0,5,1,120.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1786.144433564477,0.14951820136987082,0.07917306886367362,22560.0,7,4,7,7_1,7_0,7_0_1 -499,2,40.0,1,0.0,6,111,4,37,38,10.0,160.2320569230271,123.52544244114615,1267.441151143552,59.088950907552075,0.0,61273.0,12,12,1,10685,201100499,,,428.0,,2.0,0.0,7.0,2.0,4.0,2.1,1976.1907907892326,0.0,929.0,0.0,0.0,136169.0,1,1,1,140.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1610.2876014152773,0.026280541207632683,0.011825654895132353,64842.38095238095,10,5,10,10_1,10_3,10_0_0 -500,2,46.0,1,0.0,1,120,2,0,56,2.0,1031.1964059402735,0.0,477.50743046312505,86.89551604051776,0.0,17096.0,0,50,1,10687,201100500,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2332.672848451324,0.0,350.0,0.0,0.0,11743.0,0,1,1,100.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1595.5993524439164,0.09333173563663526,0.13587663735365038,11743.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -501,0,53.0,4,0.0,4,111,2,0,54,2.0,0.0,0.0,589.3805998859143,0.0,3201.2308109326746,32930.0,0,20,1,10688,201100501,,,506.0,,1.0,0.0,5.0,2.0,3.0,2.0,938.3314612793471,0.0,432.0,1842.0,0.0,24445.0,0,1,5,90.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3790.611410818589,0.11511118769567534,0.15506694255752052,12222.5,2,1,2_0,2_1_0,2_3_0,2_0_1 -502,2,34.0,3,0.0,8,300,2,56,21,5.0,0.0,0.0,657.5959470949322,0.0,0.0,54665.0,50,60,1,10693,201100502,,,200.0,,2.0,0.0,5.0,2.0,4.0,2.1,2687.792280004802,0.0,482.0,0.0,0.0,36216.0,1,1,2,138.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,657.5959470949322,0.012029560909081354,0.01815760843535819,17245.714285714286,5,3,5,5_1,5_0,5_0_0 -503,2,69.0,3,0.0,1,111,2,0,77,9.0,1380.2167279508276,0.0,750.3688192991965,0.0,0.0,12261.0,0,50,1,10694,201100503,,,190.0,,0.0,1.0,4.0,0.0,1.0,1.0,2326.928231277045,0.0,550.0,0.0,0.0,29630.0,0,5,1,85.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2130.5855472500243,0.17376931304543058,0.07190636339014594,29630.0,9,5,9,9_1,9_4,9_1_0 -504,2,57.0,1,0.0,2,111,1,0,37,10.0,0.0,0.0,1937.8989800135457,0.0,2228.996140271256,93758.0,0,50,2,10695,201100504,,,,,1.0,0.0,4.0,2.0,3.0,2.0,1154.8540980796793,2073.0,630.0,0.0,0.0,74988.0,0,1,1,83.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4166.895120284802,0.044443088806126435,0.055567492402581777,37494.0,10,5,10,10_0,10_4,10_0_1 -505,2,72.0,3,0.0,1,111,2,77,75,9.0,3331.5576191916525,0.0,245.5752499524643,0.0,86.89551604051776,28549.0,60,70,1,10697,201100505,,,180.0,,0.0,1.0,3.0,0.0,2.0,1.5,2505.2041759774947,0.0,180.0,50.0,0.0,46100.0,5,5,1,55.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3664.0283851846343,0.12834174174873494,0.07948000835541506,30733.333333333332,9,5,9,9_1,9_4,9_1_0 -506,2,48.0,2,0.0,4,111,1,56,63,9.0,0.0,0.0,723.0826804155894,0.0,0.0,23167.0,60,50,2,10699,201100506,,,,,3.0,1.0,5.0,1.0,3.0,2.0,1436.493680190263,0.0,530.0,0.0,0.0,67982.0,1,1,2,100.0,8,6.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,723.0826804155894,0.031211752942357205,0.010636384343143616,33991.0,9,5,9,9_0,9_2,9_0_1 -507,2,64.0,3,0.0,3,111,2,78,78,4.0,0.0,0.0,682.1534720901786,0.0,382.34027057827814,13022.0,70,70,1,10700,201100507,,,150.0,,0.0,2.0,3.0,0.0,2.0,1.5,2087.8303409855193,0.0,500.0,220.0,0.0,24798.0,5,5,1,40.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1064.493742668457,0.08174579501370426,0.042926596607325465,16532.0,4,2,4_0,4_1_0,4_4_0,4_0_1 -508,1,25.0,3,32.0,99,111,2,67,52,3.0,0.0,0.0,409.2920832541072,0.0,3475.8206416207104,56018.0,41,50,1,10701,201100508,,,320.0,,2.0,0.0,3.0,2.0,4.0,2.1,2398.4123739396505,0.0,300.0,2000.0,0.0,27385.0,1,1,3,52.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,3885.1127248748176,0.06935472035550747,0.14187010132827524,13040.47619047619,3,2,3_1,3_1_1,3_3_1,3_0_0 -509,2,46.0,3,0.0,3,111,1,54,63,3.0,0.0,0.0,818.5841665082144,0.0,0.0,15618.0,43,50,2,10706,201100509,,,,368.0,2.0,0.0,4.0,2.0,4.0,2.3,1817.115824799345,0.0,600.0,0.0,0.0,28922.0,2,1,3,60.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,818.5841665082144,0.05241286762122003,0.0283031659811982,12574.782608695654,2,1,2_0,2_0_0,2_3_0,2_0_1 -510,2,73.0,2,0.0,5,111,4,0,75,7.0,0.0,0.0,1146.0178331115,0.0,0.0,18566.0,0,70,2,10707,201100510,,,,625.0,0.0,0.0,2.0,0.0,1.0,1.0,2856.425722746117,0.0,840.0,0.0,0.0,22991.0,0,5,3,52.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1146.0178331115,0.06172669574014328,0.04984636740948632,22991.0,7,4,7,7_0,7_3,7_0_0 -511,2,78.0,2,0.0,3,111,1,0,77,7.0,1319.93139960355,0.0,278.3186166127929,0.0,125.12954309834558,17621.0,0,70,2,10708,201100511,832.0,832.0,,293.0,0.0,4.0,3.0,0.0,1.0,1.0,3044.1336340197986,0.0,204.0,72.0,0.0,23838.0,0,5,3,61.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1723.3795593146883,0.09780259686253268,0.07229547610179916,23838.0,7,4,7,7_0,7_4,7_0_1 -512,1,64.0,3,99.0,7,111,2,0,75,2.0,0.0,0.0,736.7257498573929,0.0,0.0,10894.0,0,50,2,10709,201100512,,,,305.0,0.0,2.0,1.0,0.0,1.0,1.0,2632.524393931958,0.0,540.0,0.0,0.0,9990.0,0,5,3,28.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,736.7257498573929,0.06762674406621928,0.07374632130704634,9990.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -513,2,50.0,2,0.0,7,111,2,62,64,8.0,0.0,0.0,645.0545829344435,0.0,1333.3117288646201,29494.0,50,50,2,1071,201100513,,,,650.0,2.0,2.0,5.0,0.0,2.0,1.5,1451.862578789545,1240.0,0.0,0.0,0.0,38380.0,1,1,3,85.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1978.3663117990636,0.06707690756760913,0.051546803329834905,25586.666666666668,8,4,8,8_0,8_3,8_0_0 -514,2,57.0,1,0.0,2,111,2,63,78,9.0,602.8532834727753,0.0,600.2950554393572,0.0,0.0,40540.0,50,70,1,10710,201100514,,,240.0,,1.0,5.0,4.0,0.0,2.0,1.5,1575.8566351715626,0.0,440.0,0.0,0.0,51506.0,1,5,1,80.0,9,7.0,3,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1203.1483389121324,0.029678054733895717,0.02335938218677693,34337.333333333336,9,5,9,9_1,9_3,9_0_1 -515,2,65.0,2,0.0,5,112,2,77,75,7.0,2430.4506060007675,0.0,723.0826804155894,208.54923849724264,0.0,23997.0,70,60,1,10712,201100515,,,239.0,,0.0,3.0,7.0,0.0,2.0,1.5,1621.322007235495,0.0,530.0,0.0,0.0,35241.0,6,5,1,160.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3362.0825249135996,0.14010428490701335,0.095402585764127,23494.0,7,4,7,7_1,7_0,7_0_0 -516,2,68.0,4,0.0,7,111,6,78,86,1.0,0.0,0.0,2144.690516251522,194.64595593075978,0.0,23955.0,70,50,1,10714,201100516,,,,,0.0,0.0,3.0,0.0,2.0,1.5,1619.4463977387347,0.0,1572.0,0.0,0.0,13920.0,5,6,1,64.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2339.336472182282,0.09765545698945029,0.1680557810475777,9280.0,1,1,1_0,1_1_0,1_3_0,1_0_0 -517,1,43.0,4,304.0,6,120,6,85,55,2.0,0.0,0.0,1773.5990274344645,0.0,0.0,22362.0,60,60,1,10715,201100517,,,450.0,,1.0,0.0,3.0,3.0,5.0,2.4,2778.7237745320353,0.0,1300.0,0.0,0.0,26929.0,6,1,3,72.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1773.5990274344645,0.07931307698034454,0.06586204565466465,11220.416666666668,2,1,2_1,2_1_1,2_1_1,2_0_0 -518,2,47.0,1,0.0,1,111,2,35,37,10.0,0.0,0.0,1364.3069441803573,0.0,1480.6995933304227,51359.0,20,20,1,10716,201100518,,,,,2.0,0.0,7.0,2.0,4.0,2.1,1649.8521307129506,0.0,1000.0,852.0,0.0,101499.0,1,1,2,130.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2845.0065375107797,0.05539450802217293,0.02802989721584232,48332.85714285714,10,5,10,10_1,10_3,10_1_0 -519,2,30.0,3,0.0,2,111,1,52,54,7.0,0.0,0.0,499.33634157001075,0.0,761.2047205149356,27074.0,41,31,2,10718,201100519,,,,298.0,2.0,1.0,3.0,0.0,2.0,1.5,6958.611101604077,0.0,366.0,438.0,0.0,33860.0,1,1,3,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1260.5410620849464,0.04655909958206938,0.03722802900428075,22573.333333333332,7,4,7,7_0,7_4,7_0_1 -520,2,23.0,4,0.0,1,300,2,0,62,5.0,0.0,0.0,613.9381248811608,1094.8835021105238,0.0,29336.0,0,50,1,10721,201100520,,,170.0,,1.0,0.0,3.0,0.0,1.0,1.0,1056.0722904938775,0.0,450.0,0.0,0.0,17199.0,0,1,3,70.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1708.8216269916845,0.05824998728496334,0.09935587109667332,17199.0,5,3,5,5_1,5_0,5_1_0 -521,2,61.0,1,0.0,5,111,2,0,74,10.0,0.0,0.0,323.34074577074466,0.0,1612.7807777120097,53738.0,0,30,1,10722,201100521,,,295.0,,0.0,3.0,5.0,0.0,1.0,1.0,2043.7689204069338,0.0,237.0,928.0,0.0,50462.0,0,5,1,110.0,3,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1936.1215234827544,0.03602890921662054,0.0383679109722713,50462.0,10,5,10,10_1,10_2,10_0_0 -522,2,40.0,2,0.0,1,111,2,43,38,8.0,0.0,0.0,463.8643610213215,0.0,955.8506764456954,39743.0,10,20,2,10723,201100522,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3773.016051175211,0.0,340.0,550.0,0.0,53230.0,1,1,2,70.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1419.7150374670168,0.035722392307249495,0.026671332659534412,25347.619047619046,8,4,8,8_0,8_3,8_1_0 -523,1,46.0,4,120.0,1,112,2,0,85,2.0,0.0,0.0,272.86138883607146,0.0,364.9611673701746,8122.0,0,71,8,10724,201100523,,,540.0,,0.0,0.0,1.0,0.0,1.0,1.0,2847.3233315257,0.0,200.0,210.0,0.0,11450.0,0,7,3,25.0,8,1.0,1,3,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,637.8225562062461,0.0785302334654329,0.05570502674290359,11450.0,2,1,2_1,2_0_1,2_1_1,2_1_0 -524,2,44.0,2,0.0,9,112,2,46,31,9.0,2703.321039572655,0.0,1395.6860038965056,39.971937378638174,0.0,65197.0,43,10,1,10725,201100524,,,370.0,,2.0,0.0,6.0,2.0,4.0,2.1,3772.0844686402424,0.0,1023.0,0.0,0.0,75665.0,1,1,2,200.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4138.978980847799,0.06348419376424988,0.054701367618420656,36030.95238095238,9,5,9,9_1,9_0,9_0_0 -525,2,66.0,4,0.0,1,112,2,78,78,6.0,0.0,0.0,832.3284941089594,0.0,1720.4022307930582,37821.0,71,70,1,10727,201100525,,,560.0,,0.0,2.0,4.0,0.0,2.0,1.5,2227.005760728286,1600.0,0.0,0.0,0.0,30730.0,5,5,3,90.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2552.7307249020178,0.06749506160339541,0.08306966237884861,20486.666666666668,6,3,6,6_1,6_2,6_1_0 -526,2,34.0,3,0.0,99,111,1,85,62,1.0,0.0,0.0,466.5929749096822,0.0,250.25908619669116,43185.0,41,71,2,10728,201100526,,,,306.0,1.0,0.0,4.0,3.0,5.0,2.4,5243.244608393735,0.0,342.0,144.0,0.0,20463.0,6,1,3,110.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,716.8520611063734,0.016599561447409365,0.035031621028508694,8526.25,1,1,1_0,1_0_0,1_2_0,1_0_0 -527,2,49.0,3,0.0,9,111,2,48,45,2.0,0.0,0.0,785.8407998478858,0.0,2085.4923849724264,39964.0,50,50,1,10729,201100527,,,480.0,800.0,2.0,1.0,6.0,2.0,4.0,2.5,2804.5052939457755,0.0,576.0,1200.0,0.0,29828.0,1,1,3,110.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2871.3331848203125,0.07184799281404045,0.09626301410823095,11931.2,2,1,2_0,2_1_0,2_2_0,2_0_0 -528,2,56.0,2,0.0,6,111,6,0,37,10.0,0.0,0.0,1461.1727372171626,0.0,0.0,56639.0,0,12,1,1073,201100528,,,,,2.0,1.0,5.0,1.0,2.0,1.5,2596.84151392621,0.0,1071.0,0.0,0.0,66468.0,0,1,1,96.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1461.1727372171626,0.025797996737533548,0.02198310069833849,44312.0,10,5,10,10_1,10_4,10_0_0 -529,2,69.0,4,0.0,1,300,2,77,74,7.0,2538.3296146222115,0.0,1023.230208135268,278.0656513296568,0.0,15415.0,41,31,1,10731,201100529,,,416.0,,0.0,4.0,4.0,0.0,2.0,1.5,1638.6926509920397,0.0,750.0,0.0,0.0,34660.0,5,5,1,100.0,0,1.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3839.625474087136,0.24908371547759559,0.11077973093153883,23106.666666666668,7,4,7,7_1,7_1,7_1_0 -530,1,32.0,3,224.0,5,111,2,0,67,4.0,0.0,0.0,296.05460688713754,0.0,1110.524694997817,8010.0,0,71,2,10732,201100530,,,,66.0,1.0,0.0,2.0,0.0,1.0,1.0,2327.4461001806017,0.0,217.0,639.0,0.0,15378.0,0,1,3,51.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1406.5793018849545,0.17560290909924525,0.09146698542625534,15378.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -531,2,55.0,4,0.0,9,111,4,0,52,5.0,0.0,0.0,1094.1741692326466,0.0,0.0,39439.0,0,60,2,10733,201100531,,,,,1.0,0.0,4.0,1.0,2.0,1.5,4661.924042315237,0.0,802.0,0.0,0.0,25954.0,0,1,2,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1094.1741692326466,0.027743456204078365,0.04215820949497752,17302.666666666668,5,3,5,5_0,5_4,5_0_0 -532,2,32.0,3,0.0,9,300,4,54,37,6.0,0.0,0.0,1268.8054580877322,135.55700502320772,0.0,40127.0,50,50,1,10734,201100532,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1912.21920084216,0.0,930.0,0.0,0.0,44040.0,1,1,2,103.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1404.3624631109399,0.03499794310840431,0.03188833930769618,20971.42857142857,6,3,6,6_1,6_0,6_0_0 -533,2,64.0,3,0.0,6,111,2,0,75,4.0,1066.0984381413289,0.0,620.7596596020626,0.0,0.0,13410.0,0,71,1,10735,201100533,,,220.0,,0.0,2.0,5.0,0.0,1.0,1.0,2997.4749600467662,0.0,455.0,0.0,0.0,15919.0,0,5,1,100.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1686.8580977433915,0.12579105874298221,0.10596507932303482,15919.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -534,1,48.0,3,25.0,99,221,2,67,63,4.0,1745.1016100527704,0.0,463.8643610213215,0.0,0.0,19919.0,71,71,1,10736,201100534,,,340.0,,2.0,2.0,4.0,0.0,2.0,1.5,2882.5907659717336,0.0,340.0,0.0,0.0,23780.0,4,4,3,76.0,1,3.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2208.965971074092,0.11089743315799448,0.0928917565632503,15853.333333333334,4,2,4_1,4_1_1,4_1_1,4_0_0 -535,1,24.0,2,106.0,1,112,2,0,54,4.0,0.0,0.0,409.2920832541072,45.18566834106924,0.0,25112.0,0,31,2,10737,201100535,,,,464.0,1.0,0.0,3.0,0.0,1.0,1.0,3309.1218790938797,0.0,300.0,0.0,0.0,16639.0,0,1,3,90.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,454.4777515951764,0.018098030885440285,0.027314006346245354,16639.0,4,2,4_1,4_0_1,4_0_1,4_1_0 -536,2,70.0,2,0.0,9,111,1,0,78,5.0,0.0,0.0,3192.4782493820358,0.0,1755.2894240184587,19659.0,0,71,2,10738,201100536,,,,328.0,0.0,1.0,3.0,0.0,1.0,1.0,4147.7004501502815,0.0,2340.0,1010.0,0.0,18083.0,0,5,3,70.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,4947.7676734004945,0.2516795194771094,0.2736143158436374,18083.0,5,3,5,5_0,5_3,5_0_0 -537,2,66.0,3,0.0,4,112,2,77,78,3.0,0.0,0.0,1828.1713052016787,201.5975972140012,0.0,27977.0,70,50,1,1074,201100537,,,,,0.0,4.0,5.0,0.0,2.0,1.5,1305.599669810877,0.0,1340.0,0.0,0.0,20856.0,5,5,1,120.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2029.7689024156798,0.0725513422602738,0.0973230198703337,13904.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -538,2,35.0,3,0.0,3,111,2,43,63,6.0,0.0,0.0,545.7227776721429,0.0,1042.7461924862132,31743.0,20,50,2,10741,201100538,,,550.0,470.0,2.0,0.0,3.0,0.0,2.0,1.5,1576.8155274416085,0.0,400.0,600.0,0.0,31347.0,1,1,3,70.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1588.4689701583561,0.05004155152815916,0.05067371583112758,20898.0,6,3,6,6_0,6_2,6_0_1 -539,2,70.0,3,0.0,5,300,4,72,74,7.0,0.0,610.6875806079136,2668.584382816779,208.54923849724264,0.0,35362.0,50,43,1,10743,201100539,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1558.2608497929202,0.0,1956.0,0.0,0.0,36522.0,5,5,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3487.821201921935,0.0986318987026168,0.09549918410607128,24348.0,7,4,7,7_1,7_0,7_0_0 -540,2,76.0,3,0.0,4,111,6,0,78,3.0,0.0,0.0,1132.3747636696964,0.0,0.0,21592.0,0,71,2,10745,201100540,,,196.0,,0.0,2.0,2.0,0.0,1.0,1.0,3204.497771717296,0.0,830.0,0.0,0.0,13068.0,0,5,1,60.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1132.3747636696964,0.05244418134817046,0.08665249186330705,13068.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -541,2,71.0,4,0.0,6,112,5,77,78,4.0,0.0,1804.304215432472,1698.5621455045448,225.92834170534618,0.0,19836.0,70,50,1,10749,201100541,,,480.0,,0.0,3.0,4.0,0.0,2.0,1.5,1938.0431563182358,0.0,1245.0,0.0,0.0,24647.0,5,5,1,88.0,4,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3728.794702642363,0.1879811808147995,0.15128797430285076,16431.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0 -542,2,87.0,2,0.0,2,111,4,86,74,5.0,0.0,0.0,491.1504999049286,0.0,0.0,24314.0,71,70,2,1075,201100542,,,,,0.0,4.0,3.0,0.0,2.0,1.5,4306.882571202543,0.0,360.0,0.0,0.0,25286.0,6,5,1,63.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,491.1504999049286,0.020200316686062706,0.019423811591589363,16857.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_1 -543,2,61.0,2,0.0,3,111,1,0,37,9.0,0.0,0.0,390.1917860355822,0.0,72.99223347403492,19471.0,0,10,2,10750,201100543,,,,489.0,1.0,0.0,3.0,0.0,1.0,1.0,2618.3231220245575,0.0,286.0,42.0,0.0,31619.0,0,1,3,51.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,463.1840195096171,0.02378840426837949,0.01464891424490392,31619.0,9,5,9,9_0,9_4,9_0_1 -544,2,81.0,2,0.0,4,111,1,0,74,10.0,0.0,0.0,429.75668741681255,0.0,0.0,18890.0,0,50,2,10751,201100544,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3753.252497787213,0.0,315.0,0.0,0.0,44276.0,0,5,1,90.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,429.75668741681255,0.02275048636404513,0.009706312390839564,44276.0,10,5,10,10_0,10_3,10_0_1 -545,1,22.0,2,120.0,2,111,1,0,84,1.0,0.0,0.0,221.01772495721787,0.0,0.0,7968.0,0,31,3,10752,201100545,,,,135.0,0.0,0.0,1.0,0.0,1.0,1.0,4129.341179309842,0.0,162.0,0.0,0.0,6440.0,0,3,3,15.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,221.01772495721787,0.027738168292823526,0.03431952250888476,6440.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -546,2,29.0,4,0.0,2,111,2,0,54,8.0,0.0,0.0,577.4278927880905,0.0,1193.529047612684,33794.0,0,41,2,10753,201100546,,,,290.0,2.0,0.0,2.0,1.0,2.0,1.5,2630.1966171353574,1110.0,0.0,0.0,0.0,38000.0,0,1,3,45.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1770.9569404007746,0.05240447832161847,0.046604130010546696,25333.333333333332,8,4,8,8_0,8_4,8_0_1 -547,2,57.0,2,0.0,7,400,2,54,37,10.0,0.0,0.0,950.921940093709,2259.283417053462,0.0,49808.0,31,42,1,10754,201100547,,,,,2.0,1.0,5.0,0.0,2.0,1.5,4474.113491092262,0.0,697.0,0.0,0.0,70299.0,1,1,1,140.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3210.205357147171,0.06445160129190433,0.0456650216524726,46866.0,10,5,10,10_1,10_0,10_0_0 -548,2,53.0,3,0.0,6,112,2,22,43,3.0,0.0,0.0,1040.9661984096126,0.0,1687.5109215068549,41362.0,42,33,1,10756,201100548,,,517.0,,2.0,1.0,8.0,2.0,4.0,2.3,3836.287012635887,0.0,763.0,971.0,0.0,32083.0,1,1,1,140.0,7,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2728.4771199164675,0.06596579275461698,0.08504432627611094,13949.13043478261,3,2,3_0,3_1_0,3_0_0,3_0_0 -549,1,28.0,3,300.0,2,111,2,85,65,2.0,475.9368027416647,0.0,818.5841665082144,0.0,1042.7461924862132,27302.0,50,71,2,10757,201100549,,,696.0,,1.0,0.0,3.0,3.0,5.0,2.4,3697.458355964397,0.0,600.0,600.0,0.0,28695.0,6,1,3,100.0,8,7.0,4,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2337.267161736092,0.08560791010680874,0.08145207045604085,11956.25,2,1,2_1,2_0_1,2_3_1,2_0_1 -550,2,42.0,3,0.0,1,111,2,46,48,5.0,0.0,624.566843803548,504.79356934673217,0.0,0.0,41762.0,50,43,1,10758,201100550,,,,,2.0,0.0,6.0,3.0,5.0,2.4,1739.1742944744606,0.0,370.0,0.0,0.0,45190.0,1,1,2,240.0,7,5.0,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1129.3604131502802,0.027042776044018012,0.024991378914589073,18829.166666666668,5,3,5,5_1,5_2,5_1_0 -551,2,41.0,3,0.0,1,111,2,52,48,6.0,190.37472109666587,0.0,506.15787629091255,0.0,1480.6995933304227,30949.0,50,41,1,10759,201100551,,,416.0,,2.0,0.0,3.0,2.0,4.0,2.1,2924.5265804445435,0.0,371.0,852.0,0.0,44598.0,1,1,2,36.0,10,8.0,4,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2177.232190718001,0.07034903197899775,0.04881905445800263,21237.142857142855,6,3,6,6_1,6_4,6_1_0 -552,2,27.0,1,0.0,5,112,2,84,53,7.0,0.0,0.0,736.7257498573929,48.661488982689946,0.0,31040.0,41,30,2,1076,201100552,,,213.0,,1.0,0.0,3.0,0.0,2.0,1.5,6456.033608897349,0.0,540.0,0.0,0.0,36526.0,3,1,1,75.0,9,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,785.3872388400828,0.025302423931703698,0.021502142004054176,24350.666666666668,7,4,7,7_0,7_1,7_0_0 -553,1,52.0,3,109.0,99,111,3,72,43,5.0,0.0,0.0,513.9628451122824,0.0,1062.3483775147133,152701.0,33,33,2,10760,201100553,,,,571.0,2.0,1.0,3.0,2.0,4.0,2.5,2316.0435519786665,988.0,0.0,0.0,0.0,44180.0,7,1,3,80.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1576.3112226269957,0.01032286116415083,0.035679294310253414,17672.0,5,3,5,5_0,5_3,5_0_0 -554,2,76.0,1,0.0,2,111,2,0,74,10.0,0.0,0.0,638.4956498764072,0.0,4108.41999839568,24552.0,0,10,1,10762,201100554,,,,,0.0,0.0,5.0,0.0,1.0,1.0,1951.1306016012743,0.0,468.0,2364.0,0.0,49670.0,0,5,1,118.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4746.915648272086,0.19334130206386796,0.09556906881965142,49670.0,10,5,10,10_1,10_3,10_0_1 -555,2,37.0,3,0.0,4,111,1,0,54,5.0,0.0,0.0,368.36287492869644,0.0,0.0,18831.0,0,41,2,10763,201100555,,,,338.0,1.0,0.0,2.0,0.0,1.0,1.0,2720.652263117299,0.0,270.0,0.0,0.0,18725.0,0,1,3,50.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,368.36287492869644,0.019561514254617197,0.019672249662413696,18725.0,5,3,5,5_0,5_3,5_0_1 -556,2,37.0,2,0.0,1,111,4,48,46,8.0,0.0,0.0,1843.1786815876626,0.0,0.0,46351.0,31,31,2,10764,201100556,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3617.635073497631,0.0,1351.0,0.0,0.0,49049.0,1,1,2,94.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1843.1786815876626,0.039765672403781205,0.03757831314782488,27249.444444444445,8,4,8,8_0,8_4,8_1_0 -557,2,58.0,4,0.0,1,400,5,78,69,5.0,0.0,69.396315978172,817.219859564034,0.0,0.0,21622.0,70,70,1,10765,201100557,,,500.0,,1.0,2.0,5.0,0.0,2.0,1.5,1986.8141182463764,0.0,599.0,0.0,0.0,27440.0,5,1,1,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,886.616175542206,0.04100528052641781,0.032311085114511875,18293.333333333332,5,3,5,5_1,5_0,5_1_0 -558,1,33.0,3,98.0,1,112,2,67,63,5.0,28.55620816449988,0.0,613.9381248811608,1823.0679265300626,0.0,30148.0,50,50,1,10766,201100558,,,240.0,,2.0,0.0,4.0,2.0,4.0,2.1,2602.633411864692,0.0,450.0,0.0,0.0,35483.0,1,1,2,65.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2465.562259575723,0.08178195102745532,0.06948573287421365,16896.666666666664,4,2,4_1,4_1_1,4_0_1,4_1_0 -559,2,56.0,3,0.0,4,111,2,0,43,7.0,0.0,0.0,654.8673332065715,0.0,417.0984769944853,44062.0,0,60,2,10768,201100559,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3960.671545233935,0.0,480.0,240.0,0.0,36705.0,0,1,1,52.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1071.9658102010567,0.024328578144456825,0.02920489879310875,24470.0,7,4,7,7_0,7_3,7_0_1 -560,2,40.0,2,0.0,8,112,5,52,47,7.0,0.0,624.566843803548,1364.3069441803573,187.69431464751835,0.0,31826.0,33,50,1,1077,201100560,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.1,2218.98075537305,0.0,1000.0,0.0,0.0,46543.0,1,1,2,90.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2176.5681026314237,0.06838962177563701,0.04676467143569223,22163.333333333332,7,4,7,7_1,7_0,7_0_0 -561,1,87.0,3,201.0,7,111,1,0,78,3.0,0.0,0.0,463.8643610213215,0.0,0.0,7576.0,0,71,2,10770,201100561,,,,,0.0,2.0,1.0,0.0,1.0,1.0,3546.4380035012146,0.0,340.0,0.0,0.0,13486.0,0,5,3,30.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,463.8643610213215,0.061228136354451096,0.034395992957238726,13486.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -562,2,50.0,2,0.0,7,112,4,56,64,4.0,0.0,0.0,2728.6138883607146,194.64595593075978,0.0,39450.0,41,50,1,10771,201100562,,,321.0,,2.0,0.0,6.0,3.0,5.0,2.8,1718.2003553075501,0.0,2000.0,0.0,0.0,41394.0,1,1,2,160.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2923.259844291474,0.07410037628115271,0.07062037600356269,14783.57142857143,3,2,3_0,3_1_0,3_0_0,3_0_0 -563,2,56.0,3,0.0,6,111,2,54,47,9.0,1967.205451332214,0.0,637.1313429322269,458.8083246939338,0.0,63712.0,50,50,1,10772,201100563,,,149.0,,2.0,1.0,7.0,1.0,3.0,2.0,1068.5499076834958,0.0,467.0,0.0,0.0,64655.0,1,1,1,160.0,7,6.0,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3063.1451189583745,0.04807799345426881,0.047376770844611775,32327.5,9,5,9,9_1,9_2,9_0_0 -564,2,87.0,2,0.0,5,111,1,0,86,4.0,0.0,0.0,221.01772495721787,0.0,0.0,15997.0,0,70,2,10773,201100564,,,,,0.0,3.0,1.0,0.0,1.0,1.0,2980.9419541957323,0.0,162.0,0.0,0.0,16110.0,0,6,3,33.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,221.01772495721787,0.013816198347016181,0.01371928770684158,16110.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -565,2,57.0,2,0.0,6,112,4,75,34,10.0,0.0,582.9290542166448,2046.460416270536,0.0,0.0,61514.0,30,50,1,10774,201100565,,,300.0,,1.0,2.0,5.0,0.0,2.0,1.5,1967.4412910331587,0.0,1500.0,0.0,0.0,62850.0,5,1,1,110.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2629.389470487181,0.04274456986193681,0.041835950206637725,41900.0,10,5,10,10_1,10_0,10_0_0 -566,2,83.0,2,0.0,7,111,2,78,74,9.0,0.0,0.0,1054.6092678514162,0.0,2168.9120803713236,34117.0,70,70,1,10776,201100566,,,423.0,,0.0,2.0,5.0,0.0,2.0,1.5,1627.7970237142742,0.0,773.0,1248.0,0.0,46767.0,5,5,1,180.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3223.52134822274,0.09448431421938447,0.06892726384464987,31178.0,9,5,9,9_1,9_2,9_0_0 -567,2,32.0,2,0.0,1,112,2,54,47,9.0,1411.945848133605,555.170527825376,723.0826804155894,182.4805836850873,0.0,41538.0,43,50,1,10778,201100567,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2865.8888850239373,0.0,530.0,0.0,0.0,45810.0,1,1,3,60.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2872.6796400596577,0.06915787086666805,0.06270857105565723,30540.0,9,5,9,9_1,9_0,9_1_0 -568,2,61.0,1,0.0,5,111,4,54,21,8.0,0.0,0.0,2046.460416270536,0.0,0.0,47641.0,71,31,1,10779,201100568,,,1000.0,,2.0,2.0,5.0,0.0,2.0,1.5,3385.48975252197,0.0,1500.0,0.0,0.0,37390.0,1,1,1,170.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2046.460416270536,0.04295586608741495,0.05473282739423739,24926.666666666668,8,4,8,8_1,8_3,8_0_0 -569,2,32.0,2,0.0,2,111,2,23,38,7.0,0.0,0.0,695.7965415319821,0.0,2398.31624271829,40548.0,31,20,1,1078,201100569,,,240.0,,2.0,0.0,6.0,1.0,3.0,1.8,1584.324793650186,0.0,510.0,1380.0,0.0,43690.0,1,1,2,90.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3094.1127842502724,0.07630740811508022,0.07081970208858486,24272.222222222223,7,4,7,7_1,7_3,7_0_1 -570,2,52.0,2,0.0,1,111,4,75,56,3.0,0.0,0.0,231.93218051066074,0.0,0.0,41486.0,42,44,1,10780,201100570,,,660.0,,1.0,1.0,6.0,1.0,5.0,2.8,1296.8690036360756,0.0,170.0,0.0,0.0,40197.0,5,1,1,170.0,9,7.0,5,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,231.93218051066074,0.005590613231226456,0.005769887815276283,14356.07142857143,3,2,3_0,3_1_0,3_3_0,3_1_0 -571,1,35.0,3,30.0,4,111,1,0,63,3.0,0.0,0.0,231.93218051066074,0.0,0.0,10693.0,0,41,2,10781,201100571,,,,270.0,1.0,0.0,1.0,0.0,1.0,1.0,3079.4541736355254,0.0,170.0,0.0,0.0,13681.0,0,1,3,35.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,231.93218051066074,0.021690094502072453,0.01695286751777361,13681.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -572,1,37.0,4,327.0,5,400,2,0,69,3.0,1832.356690555409,0.0,507.5221832350929,97.32297796537989,0.0,9247.0,0,50,1,10783,201100572,,,205.0,,1.0,2.0,5.0,1.0,2.0,1.5,1870.515821120104,0.0,372.0,0.0,0.0,20274.0,0,1,3,101.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2437.2018517558818,0.26356676238303034,0.12021317212961832,13516.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -573,2,46.0,2,0.0,4,112,2,0,38,9.0,0.0,0.0,532.0797082303393,0.0,782.0596443646599,40802.0,0,42,1,10785,201100573,,,240.0,,1.0,1.0,4.0,0.0,1.0,1.0,1030.504253771836,0.0,390.0,450.0,0.0,32373.0,0,1,1,87.0,10,0.0,1,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1314.1393525949993,0.03220771904796332,0.0405936846321008,32373.0,9,5,9,9_1,9_0,9_0_1 -574,2,81.0,2,0.0,2,111,2,77,75,7.0,0.0,0.0,530.715401286159,0.0,1452.893028197457,44183.0,70,50,1,10786,201100574,,,,,0.0,4.0,4.0,0.0,2.0,1.5,978.2303834540382,0.0,389.0,836.0,0.0,36247.0,5,5,1,158.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1983.608429483616,0.04489528618436086,0.05472476148325699,24164.666666666668,7,4,7,7_1,7_3,7_0_1 -575,1,88.0,1,74.0,4,111,4,0,77,4.0,0.0,0.0,1650.8114024582324,50.3993993035003,0.0,23779.0,0,70,1,10787,201100575,,,,785.0,0.0,0.0,4.0,0.0,1.0,1.0,3826.6008324350587,0.0,1210.0,0.0,0.0,15363.0,0,5,3,70.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1701.2108017617327,0.07154257125033571,0.11073428378322805,15363.0,4,2,4_1,4_1_1,4_3_1,4_0_1 -576,2,38.0,3,0.0,8,112,4,54,62,7.0,0.0,0.0,2728.6138883607146,0.0,0.0,46809.0,31,50,1,10789,201100576,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.1,1900.8372615335522,0.0,2000.0,0.0,0.0,51361.0,1,1,2,127.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2728.6138883607146,0.05829250546605812,0.053126183064206585,24457.619047619046,7,4,7,7_1,7_0,7_0_0 -577,2,64.0,3,0.0,6,400,4,12,78,4.0,0.0,0.0,2182.8911106885716,0.0,0.0,21199.0,70,71,1,10792,201100577,,,140.0,,1.0,2.0,8.0,0.0,2.0,1.5,2162.7919094376325,0.0,1600.0,0.0,0.0,24770.0,1,5,1,150.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2182.8911106885716,0.10297141896733675,0.08812640737539651,16513.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0 -578,1,41.0,4,415.0,99,111,1,0,68,2.0,0.0,0.0,775.1059101389684,0.0,1602.1245774260356,21614.0,0,50,2,10793,201100578,,,,,1.0,2.0,5.0,5.0,6.0,2.7,1027.9735512065647,1490.0,0.0,0.0,0.0,27500.0,0,1,3,90.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2377.230487565004,0.10998568000208216,0.08644474500236378,10185.185185185184,2,1,2_1,2_0_1,2_2_1,2_0_0 -579,2,80.0,3,0.0,4,111,1,77,78,7.0,0.0,0.0,1159.6609025533037,0.0,4344.775802025888,33364.0,50,70,2,10794,201100579,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2553.610263179349,0.0,850.0,2500.0,0.0,35660.0,5,5,1,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,5504.436704579191,0.16498131832451718,0.15435885318505865,23773.333333333332,7,4,7,7_0,7_4,7_0_1 -580,2,38.0,2,0.0,9,300,4,64,56,5.0,0.0,0.0,1050.5163470188752,191.17013528913907,0.0,28667.0,71,50,1,10795,201100580,,,,406.0,2.0,0.0,4.0,1.0,3.0,1.8,3088.0402163489325,0.0,770.0,0.0,0.0,33416.0,1,1,3,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1241.6864823080143,0.043314141078871674,0.037158441534235524,18564.444444444445,5,3,5,5_1,5_0,5_0_0 -581,2,70.0,2,0.0,1,112,2,0,31,10.0,0.0,0.0,709.4396109737858,0.0,3152.5693219499844,35172.0,0,10,1,10796,201100581,,,,,1.0,1.0,4.0,0.0,1.0,1.0,2318.8059426805953,0.0,520.0,1814.0,0.0,43864.0,0,5,1,90.0,10,0.0,1,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3862.0089329237703,0.10980350656555699,0.08804506959975766,43864.0,10,5,10,10_1,10_0,10_1_0 -582,2,58.0,4,0.0,6,112,4,52,67,8.0,0.0,0.0,2182.8911106885716,208.54923849724264,0.0,19945.0,50,70,1,10799,201100582,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1186.4523243959807,0.0,1600.0,0.0,0.0,39390.0,1,1,1,92.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2391.4403491858143,0.11990174726426744,0.06071186466579879,26260.0,8,4,8,8_1,8_0,8_0_0 -583,2,52.0,5,0.0,6,111,6,68,62,4.0,0.0,0.0,3683.6287492869646,0.0,0.0,33122.0,50,71,1,10801,201100583,,,250.0,,4.0,0.0,5.0,2.0,4.0,2.5,2354.944540776386,0.0,2700.0,0.0,0.0,41798.0,1,1,1,150.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3683.6287492869646,0.11121395897853284,0.08812930640908571,16719.2,4,2,4_0,4_1_0,4_3_0,4_0_0 -584,2,52.0,2,0.0,2,111,1,0,46,8.0,0.0,0.0,300.1475277196786,0.0,93.84715732375918,16957.0,0,31,2,10802,201100584,,,,387.0,1.0,0.0,4.0,0.0,1.0,1.0,2901.83460985693,0.0,220.0,54.0,0.0,27792.0,0,1,3,92.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,393.99468504343776,0.023234928645599916,0.014176550267826632,27792.0,8,4,8,8_0,8_4,8_0_1 -585,2,44.0,3,0.0,4,111,2,46,46,4.0,0.0,0.0,491.1504999049286,0.0,1564.1192887293198,43645.0,41,60,1,10806,201100585,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.5,3560.3768318047382,0.0,360.0,900.0,0.0,39830.0,1,1,2,100.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2055.2697886342485,0.0470906126391167,0.05160104917484932,15932.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -586,1,21.0,3,55.0,7,300,6,0,52,3.0,9.518736054833294,0.0,886.7995137172322,78.20596443646599,0.0,10686.0,0,50,1,10807,201100586,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2128.379135984138,0.0,650.0,0.0,0.0,13843.0,0,1,3,67.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,974.5242142085315,0.09119635169460336,0.070398339536844,13843.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -587,1,48.0,3,394.0,5,111,2,85,85,2.0,0.0,0.0,695.7965415319821,0.0,755.9909895525045,16185.0,71,71,1,10808,201100587,,,,,1.0,0.0,4.0,2.0,4.0,2.3,3041.8792948045566,0.0,510.0,435.0,0.0,26058.0,7,5,3,83.0,4,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1451.7875310844865,0.08969956942134609,0.05571369756253306,11329.565217391306,2,1,2_1,2_1_1,2_2_1,2_0_0 -588,2,36.0,2,0.0,1,112,2,54,21,10.0,0.0,0.0,1637.1683330164287,0.0,0.0,76483.0,31,43,1,10809,201100588,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3024.817001645923,0.0,1200.0,0.0,0.0,87495.0,1,1,3,100.0,6,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1637.1683330164287,0.021405650053167746,0.01871156446672871,48608.333333333336,10,5,10,10_1,10_0,10_1_0 -589,2,56.0,3,0.0,5,112,2,0,43,5.0,0.0,0.0,2742.256957802518,139.0328256648284,0.0,51987.0,0,20,1,10811,201100589,,,350.0,,1.0,2.0,5.0,1.0,2.0,1.5,5998.472863836702,0.0,2010.0,0.0,0.0,26757.0,0,1,1,150.0,9,2.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2881.2897834673468,0.055423274731516474,0.10768358872322557,17838.0,5,3,5,5_1,5_1,5_0_0 -590,2,31.0,5,0.0,1,300,5,21,46,5.0,0.0,333.10231669522557,1528.023777482,0.0,0.0,44067.0,50,50,1,10813,201100590,,,,495.0,2.0,0.0,2.0,1.0,3.0,1.8,2426.007097196779,0.0,1120.0,0.0,0.0,32844.0,1,1,3,70.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1861.1260941772257,0.04223400944419238,0.05666563433738965,18246.666666666668,5,3,5,5_1,5_0,5_1_0 -591,2,90.0,3,0.0,1,300,2,86,78,5.0,3807.4944219333174,0.0,818.5841665082144,406.67101506962314,0.0,23498.0,70,71,1,10814,201100591,,,,,1.0,5.0,4.0,1.0,3.0,2.0,2374.287809522051,0.0,600.0,0.0,0.0,34258.0,5,5,1,100.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5032.749603511155,0.21417778549285707,0.1469072801538664,17129.0,5,3,5,5_1,5_0,5_1_0 -592,2,50.0,1,0.0,7,111,4,43,33,10.0,0.0,0.0,818.5841665082144,0.0,0.0,48200.0,10,12,2,10815,201100592,,,,,2.0,2.0,4.0,1.0,3.0,2.0,2758.690274289545,0.0,600.0,0.0,0.0,75562.0,1,1,1,96.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,818.5841665082144,0.016983073993946357,0.010833278188880845,37781.0,10,5,10,10_0,10_3,10_0_0 -593,1,45.0,4,230.0,8,300,5,0,85,1.0,0.0,638.4461069991823,1365.6712511245375,104.27461924862132,0.0,30254.0,0,33,1,10816,201100593,,,324.0,,2.0,0.0,6.0,5.0,6.0,3.1,582.6785980153381,0.0,1001.0,0.0,0.0,28511.0,0,4,2,120.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2108.391977372341,0.0696896931768474,0.0739501237196991,9197.096774193547,1,1,1_1,1_1_1,1_0_1,1_0_0 -594,2,64.0,2,0.0,8,111,2,78,68,6.0,0.0,0.0,491.1504999049286,0.0,1310.384381891008,28215.0,50,70,1,10817,201100594,,,370.0,390.0,1.0,6.0,3.0,0.0,2.0,1.5,2183.513939839021,0.0,360.0,754.0,0.0,29012.0,5,1,3,83.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1801.5348817959366,0.06385025276611507,0.062096197497447145,19341.333333333332,6,3,6,6_1,6_2,6_0_0 -595,2,81.0,3,0.0,3,112,2,0,75,7.0,3504.481324187791,0.0,1342.4780330734716,48.661488982689946,0.0,23391.0,0,10,1,1082,201100595,,,120.0,,0.0,0.0,4.0,0.0,1.0,1.0,3220.135627022235,0.0,984.0,0.0,0.0,21924.0,0,5,1,80.0,7,0.0,1,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4895.620846243953,0.20929506418040925,0.223299618967522,21924.0,7,4,7,7_1,7_0,7_0_1 -596,2,28.0,2,0.0,1,111,4,0,45,9.0,0.0,0.0,286.504458277875,0.0,0.0,36573.0,0,20,2,10820,201100596,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4488.940916049858,0.0,210.0,0.0,0.0,33863.0,0,1,2,23.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,286.504458277875,0.007833769673744976,0.008460693331301864,33863.0,9,5,9,9_0,9_4,9_1_0 -597,2,53.0,3,0.0,6,112,2,62,22,6.0,0.0,693.9631597817199,4584.071332446,104.27461924862132,0.0,30927.0,71,50,1,10821,201100597,,,360.0,,2.0,2.0,6.0,0.0,2.0,1.5,2983.4859176652644,0.0,3360.0,0.0,0.0,32200.0,1,1,1,140.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5382.309111476341,0.17403269348712586,0.16715245687814723,21466.666666666668,6,3,6,6_1,6_0,6_0_0 -598,2,49.0,3,0.0,2,111,1,85,38,2.0,0.0,0.0,2421.151619347027,0.0,4079.5037897680395,79446.0,31,12,2,10824,201100598,,,,1250.0,1.0,0.0,4.0,3.0,5.0,3.0,2246.9814393254055,3794.0,328.0,0.0,0.0,35605.0,6,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,6500.6554091150665,0.08182482955863185,0.18257703718902027,11868.333333333334,2,1,2_0,2_0_0,2_4_0,2_0_1 -599,2,79.0,4,0.0,9,112,6,86,78,4.0,0.0,0.0,1931.858632959386,0.0,0.0,43679.0,71,50,1,10825,201100599,,,,,0.0,2.0,4.0,0.0,2.0,1.5,6118.58833191519,0.0,1416.0,0.0,0.0,22467.0,5,5,1,110.0,9,1.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1931.858632959386,0.044228545364119735,0.08598649721633445,14978.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -600,2,41.0,1,0.0,4,111,2,54,43,8.0,0.0,0.0,818.5841665082144,0.0,1564.1192887293198,52991.0,31,50,1,10826,201100600,,,1200.0,,2.0,0.0,6.0,3.0,5.0,2.6,3023.1720042490224,0.0,600.0,900.0,0.0,65891.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2382.7034552375344,0.0449643044146654,0.03616128841932183,25342.69230769231,8,4,8,8_1,8_4,8_0_1 -601,2,46.0,2,0.0,6,112,6,21,52,6.0,951.8736054833294,0.0,1064.1594164606786,86.89551604051776,0.0,26548.0,50,50,1,10827,201100601,,,460.0,,2.0,1.0,5.0,1.0,3.0,2.0,1467.8299423769597,0.0,780.0,0.0,0.0,41160.0,1,1,1,95.0,8,1.0,4,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2102.9285379845255,0.0792123149760632,0.05109155826007108,20580.0,6,3,6,6_1,6_1,6_0_0 -603,2,77.0,3,0.0,4,111,1,0,86,5.0,0.0,0.0,613.9381248811608,0.0,486.61488982689946,29630.0,0,71,2,10829,201100603,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3452.734782643968,0.0,450.0,280.0,0.0,17260.0,0,6,1,90.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1100.5530147080603,0.03714319995639758,0.06376321058563501,17260.0,5,3,5,5_0,5_3,5_0_1 -604,1,80.0,3,230.0,1,112,6,0,86,2.0,1297.7210154756056,0.0,695.1202606203099,0.0,534.3999429400936,7184.0,0,71,1,10831,201100604,,,,,0.0,6.0,2.0,0.0,1.0,1.0,2989.6814853843075,497.0,320.0,0.0,0.0,11560.0,0,6,3,50.0,9,0.0,1,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2527.241219036009,0.3517874748101349,0.21861948261557174,11560.0,2,1,2_1,2_1_1,2_0_1,2_1_0 -605,2,86.0,3,0.0,2,111,1,0,86,4.0,0.0,0.0,261.9469332826286,0.0,1188.7306594342829,10570.0,0,70,2,10832,201100605,684.0,684.0,,320.0,0.0,2.0,4.0,0.0,1.0,1.0,2723.965466969233,0.0,192.0,684.0,0.0,16640.0,0,5,3,74.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1450.6775927169115,0.13724480536583836,0.08718014379308363,16640.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -606,2,80.0,3,0.0,2,111,6,0,77,5.0,0.0,0.0,345.16965687763036,0.0,1082.7181298648513,11990.0,0,71,2,10833,201100606,,,140.0,,0.0,1.0,3.0,0.0,1.0,1.0,4319.131410581207,0.0,253.0,623.0,0.0,17830.0,0,5,1,90.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1427.8877867424817,0.11908989047059898,0.08008344289077295,17830.0,5,3,5,5_0,5_3,5_0_1 -607,2,31.0,2,0.0,9,112,2,42,37,8.0,0.0,346.98157989085996,559.3658471139465,0.0,2085.4923849724264,44875.0,41,31,1,10834,201100607,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.1,3167.3820201519784,0.0,410.0,1200.0,0.0,59741.0,1,1,2,125.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2991.839811977233,0.06667052505798847,0.05008017629395612,28448.095238095237,8,4,8,8_1,8_0,8_0_0 -608,1,27.0,2,245.0,9,300,4,85,64,7.0,0.0,138.792631956344,1146.0178331115,69.5164128324142,0.0,23428.0,50,50,1,10835,201100608,,,,,1.0,0.0,2.0,0.0,2.0,1.5,3130.1464466648204,0.0,840.0,0.0,0.0,34029.0,4,1,3,70.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1354.3268779002583,0.0578080449846448,0.039799197093663,22686.0,7,4,7,7_1,7_0,7_0_0 -609,2,50.0,3,0.0,99,112,1,0,56,2.0,0.0,0.0,791.2980276246072,0.0,0.0,21910.0,0,50,2,10836,201100609,,,,,1.0,1.0,4.0,1.0,2.0,1.5,2510.282556151091,0.0,580.0,0.0,0.0,16195.0,0,1,2,72.0,9,3.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,791.2980276246072,0.036115838777937344,0.04886063770451419,10796.666666666666,2,1,2_0,2_0_0,2_1_0,2_0_0 -610,2,59.0,2,0.0,1,400,5,77,74,6.0,0.0,575.9894226188276,1043.2238866478413,130.34327406077665,111.8261450015488,29911.0,70,42,1,10838,201100610,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1276.7813351753075,104.0,725.0,0.0,0.0,32040.0,5,7,3,100.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1861.3827283289943,0.06223070871348314,0.0580955907718163,21360.0,6,3,6,6_1,6_0,6_1_0 -611,2,25.0,2,0.0,99,111,4,0,47,8.0,0.0,0.0,648.0457984856697,0.0,0.0,15747.0,0,20,2,10839,201100611,,,70.0,448.0,1.0,0.0,1.0,0.0,1.0,1.0,3613.6910176605543,0.0,475.0,0.0,0.0,27439.0,0,1,3,35.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,648.0457984856697,0.04115360376488662,0.023617690093868934,27439.0,8,4,8,8_0,8_2,8_0_0 -612,2,90.0,1,0.0,1,112,4,0,77,6.0,0.0,0.0,1923.6727912943038,0.0,78.20596443646599,10894.0,0,70,1,1084,201100612,,,140.0,,0.0,2.0,3.0,0.0,1.0,1.0,2590.8229659844746,0.0,1410.0,45.0,0.0,20719.0,0,5,1,100.0,9,0.0,1,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2001.8787557307699,0.18375975360113547,0.09662043321254742,20719.0,6,3,6,6_1,6_0,6_1_0 -613,2,38.0,3,0.0,99,112,2,54,62,9.0,0.0,0.0,1568.9529858074109,0.0,0.0,59191.0,43,43,2,10840,201100613,,,350.0,,2.0,0.0,5.0,2.0,4.0,2.1,2787.7499084316005,0.0,1150.0,0.0,0.0,62136.0,1,1,2,110.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1568.9529858074109,0.026506613941433846,0.025250305552456078,29588.571428571428,9,5,9,9_0,9_2,9_0_0 -614,2,34.0,4,0.0,6,120,6,67,54,8.0,0.0,0.0,2245.649230120868,114.70208117348345,0.0,52103.0,50,31,1,10846,201100614,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2653.2446656588836,0.0,1646.0,0.0,0.0,52016.0,1,1,2,110.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2360.3513112943515,0.045301639277860226,0.045377409091324816,24769.52380952381,7,4,7,7_1,7_1,7_0_0 -615,2,55.0,3,0.0,1,111,4,0,56,4.0,0.0,0.0,341.0767360450893,0.0,0.0,15483.0,0,50,2,10847,201100615,,,,435.0,1.0,2.0,1.0,0.0,1.0,1.0,3076.5823354819568,0.0,250.0,0.0,0.0,15492.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,341.0767360450893,0.022029111673777003,0.02201631397141036,15492.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -616,2,40.0,1,0.0,7,111,4,42,42,8.0,0.0,352.53328516911375,3233.4074577074466,135.55700502320772,0.0,34109.0,20,10,1,10848,201100616,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1716.7272943122382,0.0,2370.0,0.0,0.0,54898.0,1,1,2,110.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3721.497747899768,0.10910603500248521,0.06778931378009705,26141.90476190476,8,4,8,8_1,8_3,8_0_0 -617,2,32.0,2,0.0,9,400,2,63,42,7.0,0.0,0.0,1910.0297218525002,125.12954309834558,0.0,35964.0,50,20,1,1085,201100617,,,,648.0,2.0,0.0,4.0,2.0,4.0,2.1,3222.2905568590168,0.0,1400.0,0.0,0.0,46919.0,1,1,3,90.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2035.1592649508457,0.05658879059478494,0.04337601536586128,22342.38095238095,7,4,7,7_1,7_1,7_0_0 -618,2,71.0,2,0.0,4,112,6,77,74,10.0,79.32280045694411,0.0,1969.7273643272526,104.27461924862132,1025.789830110361,53346.0,20,12,1,10850,201100618,,,119.0,,0.0,3.0,8.0,0.0,2.0,1.5,1078.835901294405,954.0,1080.0,0.0,0.0,62792.0,5,5,1,180.0,9,1.0,3,8,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3179.1146141431786,0.0595942453819064,0.050629293765816964,41861.333333333336,10,5,10,10_1,10_1,10_0_1 -619,2,46.0,3,0.0,1,111,6,0,68,5.0,104.70609660316623,0.0,245.5752499524643,0.0,0.0,10045.0,0,71,2,10851,201100619,,,,204.0,1.0,4.0,2.0,0.0,1.0,1.0,2549.549915413594,0.0,180.0,0.0,0.0,18017.0,0,1,3,30.0,5,4.0,1,5,1,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,350.28134655563053,0.0348712141917004,0.019441713190632766,18017.0,5,3,5,5_0,5_2,5_1_0 -620,2,63.0,3,0.0,1,112,4,0,75,7.0,0.0,0.0,777.6549581828036,43.44775802025888,0.0,18063.0,0,70,2,10854,201100620,,,,407.0,0.0,2.0,2.0,0.0,1.0,1.0,2631.0822814364997,0.0,570.0,0.0,0.0,23440.0,0,5,3,36.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,821.1027162030625,0.045457715562368516,0.035029979360198915,23440.0,7,4,7,7_0,7_2,7_1_0 -621,2,46.0,3,0.0,9,111,2,52,47,8.0,0.0,0.0,1964.6019996197144,156.41192887293198,0.0,32153.0,70,31,1,10856,201100621,,,269.0,,2.0,1.0,4.0,0.0,2.0,1.5,1877.4427267866333,0.0,1440.0,0.0,0.0,41831.0,1,1,2,80.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2121.0139284926463,0.06596628397016285,0.05070435630256619,27887.333333333332,8,4,8,8_1,8_3,8_0_0 -622,1,21.0,1,140.0,8,111,2,0,84,1.0,0.0,0.0,163.71683330164288,0.0,0.0,12559.0,0,41,2,10857,201100622,,,,300.0,0.0,0.0,1.0,0.0,1.0,1.0,3703.307406451023,0.0,120.0,0.0,0.0,8951.0,0,3,3,20.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,163.71683330164288,0.013035817605035662,0.018290339995714767,8951.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -623,2,57.0,3,0.0,6,211,2,54,37,9.0,0.0,208.188947934516,390.15398161357473,0.0,806.438545684246,75998.0,30,44,1,10858,201100623,,,360.0,,2.0,2.0,8.0,0.0,2.0,1.5,1942.7980997828174,750.0,0.0,0.0,0.0,51197.0,1,1,1,150.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1404.7814752323368,0.018484453212352123,0.027438745927150746,34131.333333333336,9,5,9,9_1,9_2,9_0_0 -624,1,54.0,1,224.0,1,111,4,0,63,1.0,0.0,0.0,787.2051067920661,0.0,0.0,11027.0,0,60,2,1086,201100624,,,,,1.0,1.0,2.0,0.0,1.0,1.0,3274.968638160151,0.0,577.0,0.0,0.0,8406.0,0,4,3,57.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,787.2051067920661,0.07138887338279369,0.0936480022355539,8406.0,1,1,1_1,1_0_1,1_2_1,1_1_0 -625,2,68.0,1,0.0,1,111,2,72,72,6.0,1903.7472109666587,485.77421184720396,1023.230208135268,0.0,0.0,46178.0,50,50,1,10861,201100625,,,200.0,,0.0,0.0,5.0,0.0,2.0,1.5,2286.396954682296,0.0,750.0,0.0,0.0,28483.0,5,5,1,170.0,4,3.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3412.7516309491302,0.07390427543308783,0.11981714113503249,18988.666666666668,5,3,5,5_1,5_1,5_1_0 -626,2,64.0,3,0.0,1,112,2,0,77,4.0,3426.7449797399854,0.0,889.5281276055929,86.89551604051776,0.0,17313.0,0,70,1,10862,201100626,,,313.0,,0.0,0.0,5.0,0.0,1.0,1.0,1427.4158033093697,0.0,652.0,0.0,0.0,16611.0,0,5,2,80.0,7,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4403.1686233860955,0.25432730453336194,0.26507546947119953,16611.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -627,2,61.0,3,0.0,4,111,1,0,77,2.0,0.0,0.0,409.2920832541072,0.0,0.0,11410.0,0,71,2,10863,201100627,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3122.9093110022395,0.0,300.0,0.0,0.0,10860.0,0,5,1,49.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,409.2920832541072,0.03587134822560098,0.03768803713205407,10860.0,2,1,2_0,2_0_0,2_4_0,2_0_1 -628,1,37.0,4,77.0,99,111,1,85,85,1.0,0.0,0.0,286.504458277875,0.0,867.2172500843673,15177.0,41,41,8,10867,201100628,999999.0,149.0,600.0,,0.0,1.0,3.0,2.0,4.0,2.1,2828.2127466451107,0.0,210.0,499.0,0.0,18617.0,6,4,3,55.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1153.7217083622422,0.07601777086131925,0.06197140830220993,8865.238095238095,1,1,1_1,1_0_1,1_2_1,1_0_0 -629,2,55.0,3,0.0,4,221,2,54,48,5.0,1110.5192063972174,0.0,718.9607315561503,0.0,231.17904976281721,37433.0,42,50,1,10868,201100629,,,289.0,,4.0,0.0,8.0,2.0,4.0,2.5,1401.012910449922,215.0,445.0,0.0,0.0,45548.0,1,1,1,90.0,1,2.0,4,8,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2060.658987716185,0.05504926101878516,0.045241481244317754,18219.2,5,3,5,5_1,5_1,5_0_1 -630,2,74.0,1,0.0,4,111,2,86,74,10.0,3966.1400228472053,0.0,409.2920832541072,0.0,0.0,30075.0,20,10,1,10869,201100630,,,,,0.0,0.0,5.0,0.0,2.0,1.5,1672.2031332010602,0.0,300.0,0.0,0.0,91705.0,5,5,1,80.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4375.4321061013125,0.14548402680303615,0.047712034306758765,61136.666666666664,10,5,10,10_1,10_4,10_0_1 -631,2,63.0,3,0.0,1,112,2,72,75,5.0,0.0,0.0,971.3865442564144,0.0,1442.4655662725947,19422.0,70,50,1,1087,201100631,,,400.0,,0.0,2.0,4.0,0.0,2.0,1.5,1043.9659763186341,0.0,712.0,830.0,0.0,28002.0,6,5,1,70.0,8,1.0,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2413.852110529009,0.12428442542112085,0.0862028466012788,18668.0,5,3,5,5_1,5_1,5_1_0 -632,2,42.0,5,0.0,1,120,4,52,34,6.0,0.0,1249.133687607096,1159.6609025533037,0.0,0.0,42218.0,50,41,1,10871,201100632,,,228.0,,2.0,0.0,5.0,1.0,3.0,1.8,3652.1713166817176,0.0,850.0,0.0,0.0,38304.0,1,1,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2408.7945901604,0.05705610379838931,0.06288624138889932,21280.0,6,3,6,6_1,6_0,6_1_0 -633,2,63.0,3,0.0,1,112,5,77,78,2.0,0.0,0.0,804.9410970664107,111.22626053186274,0.0,19918.0,50,50,1,10873,201100633,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1988.2033019616815,0.0,590.0,0.0,0.0,15469.0,6,5,1,90.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,916.1673575982735,0.045996955397041545,0.05922602350496305,10312.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -634,2,73.0,1,0.0,3,111,1,0,74,8.0,399.7869143029983,0.0,382.0059443705,0.0,307.61012678343286,34516.0,0,60,2,10874,201100634,252.0,252.0,,,0.0,0.0,3.0,0.0,1.0,1.0,3662.1942922304384,0.0,280.0,177.0,0.0,25623.0,0,5,1,78.0,9,7.0,1,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1089.4029854569312,0.03156226055907206,0.04251660560656173,25623.0,8,4,8,8_0,8_3,8_0_1 -635,2,33.0,3,0.0,99,111,2,43,38,4.0,0.0,0.0,2077.5598613019133,0.0,4482.426902060299,34255.0,41,20,1,10875,201100635,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.1,4584.804731524858,2588.0,536.0,978.0,0.0,34048.0,1,1,3,129.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,6559.9867633622125,0.19150450338234454,0.19266878416829805,16213.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_0 -636,2,36.0,3,0.0,2,112,1,0,54,5.0,0.0,0.0,286.504458277875,0.0,0.0,14284.0,0,43,2,10876,201100636,,,,542.0,1.0,0.0,2.0,0.0,1.0,1.0,3294.292042613514,0.0,210.0,0.0,0.0,16761.0,0,1,3,40.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,286.504458277875,0.020057719005731937,0.017093518183752463,16761.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -637,2,40.0,4,0.0,1,111,2,0,42,7.0,0.0,41.637789586903196,695.7965415319821,0.0,2744.160396559551,31170.0,0,42,1,10878,201100637,,,230.0,,1.0,0.0,4.0,2.0,3.0,1.6,1699.4318827929098,0.0,510.0,1579.0,0.0,34798.0,0,1,2,90.0,6,5.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3481.5947276784364,0.1116969755431003,0.10005157559855268,21748.75,6,3,6,6_1,6_2,6_1_0 -638,2,59.0,3,0.0,1,400,5,86,62,9.0,0.0,0.0,955.0148609262501,130.34327406077665,0.0,9365.0,70,60,1,10879,201100638,,,90.0,,3.0,2.0,5.0,2.0,4.0,2.5,3455.1403509116744,0.0,700.0,0.0,0.0,77060.0,5,1,1,120.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1085.3581349870267,0.11589515589824097,0.014084585193187473,30824.0,9,5,9,9_1,9_0,9_1_0 -639,1,33.0,3,440.0,7,111,2,0,55,3.0,0.0,0.0,1364.3069441803573,0.0,608.2686122836243,46285.0,0,43,1,1088,201100639,,,400.0,,1.0,0.0,4.0,3.0,4.0,1.9,2438.03462396763,0.0,1000.0,350.0,0.0,24232.0,0,1,3,98.0,5,4.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1972.5755564639817,0.042618030819141874,0.08140374531462453,12753.684210526317,3,2,3_1,3_1_1,3_2_1,3_0_0 -640,2,64.0,3,0.0,4,111,7,78,77,5.0,0.0,0.0,573.00891655575,0.0,1399.017808252336,51326.0,50,70,1,10880,201100640,,,190.0,,0.0,2.0,4.0,0.0,2.0,1.5,1629.61350171152,0.0,420.0,805.0,0.0,28080.0,5,5,1,95.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1972.0267248080859,0.03842159382784721,0.07022887196609992,18720.0,5,3,5,5_1,5_2,5_0_1 -641,2,48.0,5,0.0,6,111,4,0,42,1.0,0.0,0.0,2674.0416105935,0.0,0.0,34064.0,0,60,2,10881,201100641,,,,1060.0,1.0,0.0,4.0,3.0,4.0,2.3,3594.8039309239016,0.0,1960.0,0.0,0.0,14861.0,0,4,3,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2674.0416105935,0.07850051698548322,0.17993685556782854,6461.304347826088,1,1,1_0,1_0_0,1_4_0,1_0_0 -642,2,74.0,3,0.0,2,111,1,0,77,4.0,0.0,0.0,341.0767360450893,90.37133668213848,0.0,16102.0,0,60,2,10883,201100642,,,,361.0,0.0,3.0,4.0,0.0,1.0,1.0,2786.8173814985307,0.0,250.0,0.0,0.0,15093.0,0,5,3,80.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,431.4480727272278,0.026794688406858017,0.02858597182317815,15093.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -643,1,40.0,4,393.0,4,112,1,0,67,1.0,0.0,0.0,163.71683330164288,0.0,0.0,6661.0,0,71,2,10884,201100643,840.0,840.0,,,1.0,0.0,4.0,2.0,3.0,2.0,2600.1482819329476,0.0,120.0,0.0,840.0,14136.0,0,4,3,89.0,10,5.0,2,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,163.71683330164288,0.02457841664939842,0.011581553006624426,7068.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -644,1,24.0,3,200.0,5,111,1,0,43,1.0,0.0,0.0,341.0767360450893,0.0,0.0,10019.0,0,41,2,10886,201100644,,,,125.0,1.0,0.0,1.0,0.0,1.0,1.0,3829.2021421267796,0.0,250.0,0.0,0.0,6830.0,0,2,3,24.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,341.0767360450893,0.034042991919861196,0.04993802870352699,6830.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -645,2,31.0,3,0.0,5,112,1,53,53,8.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,29370.0,41,41,2,10887,201100645,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2655.204079682432,400.0,0.0,0.0,0.0,45481.0,1,1,2,85.0,10,5.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,638.1826812255044,0.02172906643600628,0.014031852448835876,25267.222222222223,8,4,8,8_0,8_2,8_0_0 -646,2,66.0,2,0.0,1,111,2,0,34,10.0,0.0,0.0,1091.4455553442858,0.0,0.0,35850.0,0,10,2,10888,201100646,,,,1054.0,1.0,2.0,3.0,0.0,1.0,1.0,3426.6594541122768,0.0,800.0,0.0,0.0,51012.0,0,1,3,61.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1091.4455553442858,0.030444785365252046,0.021395858922298398,51012.0,10,5,10,10_0,10_4,10_1_0 -647,2,58.0,3,0.0,6,111,5,67,52,9.0,0.0,0.0,1699.926452448725,173.79103208103552,0.0,38172.0,42,50,1,10889,201100647,,,350.0,,3.0,1.0,4.0,1.0,3.0,2.0,2308.4880192358105,0.0,1246.0,0.0,0.0,58425.0,1,1,1,86.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1873.7174845297607,0.049086175325625085,0.032070474703119564,29212.5,9,5,9,9_1,9_3,9_0_0 -648,2,46.0,2,0.0,8,120,2,85,62,3.0,225.27675329772126,596.8083174122792,593.4735207184553,93.84715732375918,0.0,30722.0,50,50,1,1089,201100648,,,400.0,,1.0,0.0,5.0,2.0,4.0,2.1,981.4554835835204,0.0,435.0,0.0,0.0,28598.0,6,1,2,120.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1509.4057487522148,0.049131103077671205,0.0527801156987277,13618.095238095237,3,2,3_0,3_1_0,3_0_0,3_0_0 -649,2,38.0,3,0.0,2,111,2,68,64,1.0,0.0,0.0,545.7227776721429,0.0,1075.7664885816098,14751.0,71,50,2,10890,201100649,,,,,2.0,0.0,3.0,2.0,4.0,2.1,6755.332647377915,0.0,400.0,619.0,0.0,15810.0,1,1,1,38.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1621.4892662537527,0.10992402320207123,0.10256099090789075,7528.571428571428,1,1,1_0,1_0_0,1_4_0,1_0_1 -650,2,44.0,2,0.0,6,111,2,56,38,9.0,0.0,763.359475759892,736.7257498573929,201.5975972140012,0.0,54876.0,50,12,1,10892,201100650,,,200.0,,2.0,0.0,4.0,1.0,3.0,1.8,1673.8351168121335,0.0,540.0,0.0,0.0,63439.0,1,1,1,90.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1701.682822831286,0.031009600241112437,0.026823922552866315,35243.88888888889,9,5,9,9_1,9_3,9_0_0 -651,2,54.0,3,0.0,1,112,2,78,62,9.0,1656.260073540993,0.0,1051.8806539630555,97.32297796537989,0.0,28493.0,50,70,1,10894,201100651,,,480.0,,1.0,2.0,6.0,0.0,2.0,1.5,2243.3049488128477,0.0,771.0,0.0,0.0,46671.0,7,1,1,82.0,10,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2805.463705469428,0.09846150652684618,0.06011149762099437,31114.0,9,5,9,9_1,9_0,9_1_0 -652,2,65.0,2,0.0,5,112,2,77,75,6.0,0.0,0.0,285.1401513336947,0.0,2123.7264120302543,27116.0,70,50,1,10896,201100652,,,504.0,,0.0,3.0,4.0,0.0,2.0,1.5,1103.6666014574764,0.0,209.0,1222.0,0.0,31310.0,5,5,1,90.0,8,2.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2408.866563363949,0.08883561599660529,0.07693601288291117,20873.333333333332,6,3,6,6_1,6_1,6_0_0 -653,2,58.0,2,0.0,6,112,2,54,37,9.0,0.0,0.0,2428.466360641036,59.088950907552075,0.0,34382.0,70,50,1,109,201100653,,,320.0,,2.0,2.0,6.0,0.0,2.0,1.5,1899.863023842108,0.0,1780.0,0.0,0.0,48775.0,1,1,1,160.0,9,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2487.5553115485877,0.07235051223164993,0.05100062145665992,32516.666666666668,9,5,9,9_1,9_0,9_0_0 -654,2,34.0,2,0.0,7,111,1,55,63,4.0,0.0,0.0,545.7227776721429,0.0,0.0,50950.0,43,71,2,1090,201100654,,,,450.0,2.0,0.0,2.0,0.0,2.0,1.5,6325.016253769385,0.0,400.0,0.0,0.0,23916.0,1,1,3,50.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,545.7227776721429,0.01071094754999299,0.022818313165752755,15944.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -655,2,48.0,3,0.0,4,111,1,56,46,6.0,0.0,0.0,982.3009998098572,0.0,0.0,28482.0,71,71,2,10901,201100655,,,,391.0,4.0,0.0,4.0,3.0,5.0,2.8,4611.7666145865005,0.0,720.0,0.0,0.0,60312.0,1,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,982.3009998098572,0.03448848394810256,0.016286990977083454,21540.0,6,3,6,6_0,6_4,6_0_1 -656,2,56.0,2,0.0,6,112,5,77,52,8.0,0.0,1124.2203188463864,1705.3836802254466,0.0,0.0,35477.0,71,31,1,10902,201100656,,,267.0,,1.0,0.0,6.0,0.0,2.0,1.5,2033.4740920289541,0.0,1250.0,0.0,0.0,39183.0,7,1,1,95.0,5,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2829.6039990718327,0.07975882963812703,0.07221509325656107,26122.0,8,4,8,8_1,8_0,8_0_0 -657,2,65.0,3,0.0,4,111,2,77,75,3.0,0.0,0.0,454.31421241205896,0.0,1522.4094410298712,36026.0,60,71,1,10903,201100657,,,238.0,,0.0,3.0,5.0,0.0,2.0,1.5,3141.439207513763,0.0,333.0,876.0,0.0,19422.0,5,5,1,100.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1976.7236534419303,0.05486936250046995,0.10177755398218157,12948.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -658,2,52.0,2,0.0,5,211,2,0,52,7.0,0.0,0.0,236.0251013432018,0.0,875.906801688419,11689.0,0,50,2,10904,201100658,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2218.842327401399,0.0,173.0,504.0,0.0,21704.0,0,1,1,40.0,1,2.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1111.9319030316208,0.09512634981877156,0.05123165789861872,21704.0,6,3,6,6_0,6_1,6_0_0 -659,2,82.0,2,0.0,1,111,2,75,75,8.0,0.0,0.0,801.075132547983,0.0,3797.044944679441,31607.0,33,44,1,10905,201100659,,,285.0,,0.0,2.0,6.0,0.0,2.0,1.5,3495.989744478615,622.0,350.0,1800.0,0.0,41513.0,5,5,1,85.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4598.120077227424,0.14547790290845142,0.11076337718852948,27675.333333333332,8,4,8,8_1,8_4,8_1_0 -660,2,42.0,3,0.0,1,111,2,34,21,10.0,0.0,0.0,1180.9427393977287,0.0,3094.1772567476883,53312.0,20,41,2,10906,201100660,,,,,2.0,2.0,4.0,0.0,2.0,1.5,3317.297115452587,1326.0,360.0,960.0,0.0,65930.0,1,1,2,70.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,4275.119996145417,0.08019057615818984,0.06484331861285328,43953.333333333336,10,5,10,10_0,10_2,10_1_0 -661,2,28.0,2,0.0,9,120,5,69,54,8.0,0.0,0.0,1766.7774927135627,0.0,0.0,29265.0,71,20,1,10908,201100661,,,175.0,,2.0,0.0,5.0,1.0,3.0,1.8,2339.5632649769345,0.0,1295.0,0.0,0.0,45013.0,1,1,2,120.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1766.7774927135627,0.060371689482780204,0.03925038306075051,25007.222222222223,8,4,8,8_1,8_0,8_0_0 -662,2,34.0,4,0.0,1,111,2,46,46,6.0,0.0,0.0,1473.4514997147858,0.0,2335.7514711691174,43906.0,41,43,2,10909,201100662,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2951.319429827292,0.0,1080.0,1344.0,0.0,42213.0,4,1,2,96.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,3809.202970883903,0.08675814173197065,0.09023767490782231,20101.42857142857,6,3,6,6_0,6_3,6_1_0 -663,2,40.0,2,0.0,1,111,2,37,33,9.0,1586.456009138882,0.0,491.1504999049286,0.0,0.0,74489.0,10,10,1,1091,201100663,,,360.0,,2.0,0.0,7.0,3.0,5.0,2.4,1471.4220182549973,0.0,360.0,0.0,0.0,85290.0,1,1,2,125.0,9,7.0,4,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2077.6065090438105,0.02789145389310919,0.024359321245677225,35537.5,9,5,9,9_1,9_3,9_1_0 -664,2,86.0,3,0.0,1,400,5,78,77,5.0,0.0,0.0,1637.1683330164287,93.84715732375918,0.0,10014.0,71,70,1,10910,201100664,,,140.0,,0.0,4.0,2.0,0.0,2.0,1.5,3711.5944085827496,0.0,1200.0,0.0,0.0,26132.0,5,5,1,60.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1731.0154903401879,0.17285954567008066,0.06624121729451202,17421.333333333332,5,3,5,5_1,5_0,5_1_0 -665,2,58.0,3,0.0,5,300,2,54,62,9.0,0.0,0.0,1156.932288664943,145.98446694806984,0.0,39433.0,50,71,1,10913,201100665,,,205.0,,3.0,1.0,5.0,1.0,3.0,2.0,1364.181195631442,0.0,848.0,0.0,0.0,60454.0,4,1,1,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1302.9167556130128,0.03304127902044006,0.0215522009397726,30227.0,9,5,9,9_1,9_0,9_0_0 -666,2,44.0,2,0.0,5,111,1,38,34,10.0,0.0,0.0,873.1564442754286,0.0,0.0,54872.0,10,10,2,10916,201100666,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2830.480756642922,0.0,640.0,0.0,0.0,120960.0,1,1,2,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,873.1564442754286,0.01591260468500198,0.00721855526021353,60480.0,10,5,10,10_0,10_4,10_0_0 -667,2,79.0,3,0.0,5,400,2,0,77,4.0,0.0,0.0,341.0767360450893,1355.5700502320772,0.0,7384.0,0,71,2,10917,201100667,,,,240.0,0.0,5.0,2.0,0.0,1.0,1.0,5214.126165518822,0.0,250.0,0.0,0.0,15540.0,0,5,3,42.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1696.6467862771665,0.22977340009170727,0.10917932987626554,15540.0,4,2,4_0,4_0_0,4_0_0,4_0_0 -668,2,80.0,4,0.0,1,300,5,0,86,2.0,0.0,388.6193694777632,955.0148609262501,86.89551604051776,0.0,9076.0,0,70,1,10918,201100668,,,170.0,,0.0,1.0,2.0,0.0,1.0,1.0,989.7115202969957,0.0,700.0,0.0,0.0,10792.0,0,6,3,70.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1430.5297464445312,0.1576167636012044,0.13255464663125752,10792.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -669,2,57.0,3,0.0,9,112,4,77,62,6.0,0.0,0.0,1500.737638598393,0.0,0.0,20481.0,70,50,1,1092,201100669,,,320.0,,1.0,2.0,3.0,0.0,2.0,1.5,1353.0348337587009,0.0,1100.0,0.0,0.0,30030.0,7,1,2,87.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1500.737638598393,0.07327462714703349,0.04997461333993983,20020.0,6,3,6,6_1,6_0,6_0_0 -670,2,85.0,3,0.0,3,221,2,0,77,3.0,0.0,0.0,545.7227776721429,0.0,1564.1192887293198,13385.0,0,71,1,10920,201100670,,,150.0,,0.0,6.0,5.0,0.0,1.0,1.0,7610.841584286911,0.0,400.0,900.0,0.0,14522.0,0,5,1,90.0,1,1.0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2109.842066401463,0.15762734900272415,0.14528591560401205,14522.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -671,2,73.0,2,0.0,2,111,1,0,74,10.0,0.0,0.0,372.45579576123754,0.0,0.0,54552.0,0,60,2,10922,201100671,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3375.4790277439147,0.0,273.0,0.0,0.0,43666.0,0,5,1,67.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,372.45579576123754,0.006827536951188546,0.008529652264032371,43666.0,10,5,10,10_0,10_4,10_0_1 -672,2,68.0,2,0.0,1,111,4,0,75,8.0,0.0,0.0,944.1004053728072,0.0,0.0,23748.0,0,50,2,10923,201100672,,,,,0.0,2.0,1.0,0.0,1.0,1.0,2654.3443598065523,0.0,692.0,0.0,0.0,27177.0,0,5,1,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,944.1004053728072,0.03975494380043824,0.0347389485731614,27177.0,8,4,8,8_0,8_4,8_1_0 -673,2,78.0,2,0.0,8,111,2,75,74,10.0,0.0,0.0,433.33102224547696,0.0,895.6844114066358,42472.0,60,50,2,1093,201100673,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3619.4391695097956,833.0,0.0,0.0,0.0,69129.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1329.0154336521127,0.031291567000661914,0.01922515056853293,46086.0,10,5,10,10_0,10_4,10_0_0 -674,2,40.0,3,0.0,1,120,4,0,62,1.0,0.0,0.0,1841.8143746434823,43.44775802025888,0.0,20268.0,0,71,1,10933,201100674,,,101.0,,1.0,0.0,3.0,0.0,1.0,1.0,3264.86453308709,0.0,1350.0,0.0,0.0,8895.0,0,4,3,72.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1885.262132663741,0.09301668307991617,0.2119462768593301,8895.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -675,2,50.0,3,0.0,1,221,5,56,63,4.0,0.0,0.0,1427.0650636126536,145.98446694806984,0.0,27200.0,71,71,1,10934,201100675,,,,300.0,2.0,1.0,3.0,0.0,2.0,1.5,5164.833105800399,0.0,1046.0,0.0,0.0,24002.0,1,1,3,68.0,1,1.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1573.0495305607235,0.057832703329438365,0.06553826891762034,16001.333333333334,4,2,4_0,4_1_0,4_1_0,4_1_0 -676,2,68.0,3,0.0,4,300,4,0,75,5.0,0.0,0.0,1186.9470414369107,93.84715732375918,0.0,17235.0,0,70,1,10935,201100676,,,102.0,,0.0,1.0,4.0,0.0,1.0,1.0,1997.7565181263683,0.0,870.0,0.0,0.0,16879.0,0,5,1,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1280.7941987606698,0.07431355954515055,0.0758809288915617,16879.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -677,2,50.0,2,0.0,2,111,4,0,65,7.0,0.0,0.0,818.5841665082144,0.0,0.0,14349.0,0,71,2,10936,201100677,,,,,1.0,0.0,2.0,0.0,1.0,1.0,8635.001174767924,0.0,600.0,0.0,0.0,21950.0,0,1,1,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,818.5841665082144,0.05704816827013829,0.037293128314725026,21950.0,7,4,7,7_0,7_4,7_0_1 -678,1,55.0,3,247.0,1,112,6,0,52,1.0,0.0,166.55115834761278,750.3688192991965,97.32297796537989,0.0,12530.0,0,50,1,10939,201100678,,,100.0,,1.0,1.0,4.0,0.0,1.0,1.0,1952.8118864609128,0.0,550.0,0.0,0.0,7365.0,0,1,3,90.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1014.2429556121891,0.08094516804566554,0.13771119560246967,7365.0,1,1,1_1,1_1_1,1_1_1,1_1_0 -679,2,52.0,3,0.0,7,111,4,56,62,4.0,0.0,0.0,1500.737638598393,130.34327406077665,0.0,35572.0,50,60,1,1094,201100679,,,150.0,,3.0,2.0,5.0,1.0,3.0,2.0,1456.8055419517561,0.0,1100.0,0.0,0.0,29481.0,1,1,2,140.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1631.0809126591696,0.04585294368208618,0.055326512420174674,14740.5,3,2,3_0,3_1_0,3_3_0,3_0_0 -680,2,64.0,2,0.0,7,112,5,77,78,8.0,0.0,0.0,982.3009998098572,111.22626053186274,0.0,26168.0,71,71,1,10940,201100680,,,,413.0,0.0,4.0,3.0,0.0,2.0,1.5,3787.0425904711333,0.0,720.0,0.0,0.0,37999.0,5,5,3,85.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1093.52726034172,0.04178872135209875,0.02877779047716308,25332.666666666668,8,4,8,8_1,8_0,8_0_0 -681,2,70.0,2,0.0,1,400,1,72,72,7.0,0.0,0.0,2305.6787356648038,0.0,0.0,60139.0,70,44,1,10941,201100681,,,175.0,,0.0,1.0,5.0,0.0,2.0,1.5,2468.2613327485765,0.0,1690.0,0.0,0.0,32780.0,5,5,1,160.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2305.6787356648038,0.03833915987403854,0.07033797241198303,21853.333333333332,7,4,7,7_1,7_0,7_1_0 -682,2,85.0,3,0.0,9,111,4,75,75,8.0,0.0,0.0,654.8673332065715,0.0,0.0,41396.0,71,70,1,10942,201100682,,,260.0,,0.0,2.0,3.0,0.0,2.0,1.5,2969.781489684833,0.0,480.0,0.0,0.0,40390.0,5,5,1,100.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,654.8673332065715,0.015819579988563426,0.016213600723113928,26926.666666666668,8,4,8,8_1,8_3,8_0_0 -683,2,73.0,3,0.0,3,112,2,0,78,2.0,0.0,0.0,163.71683330164288,0.0,0.0,9460.0,0,71,1,10943,201100683,,,226.0,,0.0,0.0,5.0,0.0,1.0,1.0,2516.0005197537776,0.0,120.0,0.0,0.0,10782.0,0,5,1,100.0,9,1.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,163.71683330164288,0.01730621916507853,0.015184273168395742,10782.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -684,2,46.0,3,0.0,8,112,4,75,43,7.0,0.0,0.0,1432.5222913893751,48.661488982689946,0.0,41515.0,70,41,1,10944,201100684,,,,,1.0,4.0,5.0,1.0,3.0,2.0,1834.41678793753,0.0,1050.0,0.0,0.0,45748.0,5,1,2,140.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1481.183780372065,0.03567827966691714,0.03237701714549412,22874.0,7,4,7,7_1,7_0,7_0_0 -685,2,47.0,2,0.0,1,112,5,0,52,2.0,0.0,971.5484236944079,955.0148609262501,145.98446694806984,0.0,23134.0,0,50,1,10945,201100685,,,660.0,,1.0,0.0,5.0,1.0,3.0,1.8,4811.7313547554495,0.0,700.0,0.0,0.0,21449.0,0,1,1,170.0,4,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2072.547751568728,0.08958881955428062,0.0966267775452808,11916.111111111111,2,1,2_0,2_1_0,2_0_0,2_1_0 -686,2,46.0,4,0.0,99,111,1,0,68,2.0,0.0,0.0,564.823074890668,0.0,364.9611673701746,30717.0,0,71,2,10946,201100686,,,,,1.0,0.0,4.0,2.0,3.0,2.0,3445.878768228691,0.0,414.0,210.0,0.0,22118.0,0,1,1,76.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,929.7842422608426,0.030269370129271823,0.04203744652594459,11059.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -687,2,34.0,2,0.0,1,111,1,38,37,10.0,0.0,0.0,425.66376658427146,0.0,0.0,74490.0,12,10,2,10947,201100687,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2953.1890782274513,0.0,312.0,0.0,0.0,166965.0,1,1,2,88.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,425.66376658427146,0.005714374635310397,0.0025494191392463777,79507.14285714286,10,5,10,10_0,10_4,10_1_0 -688,2,28.0,3,0.0,10,221,4,0,52,4.0,0.0,0.0,682.1534720901786,0.0,0.0,15905.0,0,31,2,10948,201100688,,,,395.0,1.0,0.0,2.0,0.0,1.0,1.0,5246.435961129945,0.0,500.0,0.0,0.0,16184.0,0,1,3,47.0,1,1.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,682.1534720901786,0.042889246909159295,0.04214986851768281,16184.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -689,2,50.0,2,0.0,3,111,1,56,62,8.0,0.0,0.0,218.48622970360182,0.0,451.60558558317774,40691.0,71,71,2,1095,201100689,,,,,3.0,0.0,3.0,2.0,4.0,2.5,3781.992508657953,420.0,0.0,0.0,0.0,66164.0,1,1,1,58.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,670.0918152867796,0.016467813897097137,0.01012774039185629,26465.6,8,4,8,8_0,8_4,8_0_1 -690,1,25.0,4,300.0,4,111,1,63,56,1.0,0.0,0.0,272.86138883607146,0.0,1042.7461924862132,13836.0,71,50,1,10950,201100690,,,360.0,,2.0,0.0,5.0,1.0,3.0,1.8,2834.1370689405944,0.0,200.0,600.0,0.0,10950.0,4,1,3,50.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1315.6075813222847,0.09508583270614951,0.1201468110796607,6083.333333333333,1,1,1_1,1_1_1,1_3_1,1_0_1 -691,2,53.0,3,0.0,5,111,1,0,65,6.0,0.0,0.0,259.2183193942679,0.0,962.8023177289368,16996.0,0,50,2,10951,201100691,497.0,497.0,,175.0,1.0,0.0,2.0,0.0,1.0,1.0,2261.454331024732,0.0,190.0,554.0,0.0,20685.0,0,1,3,48.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1222.0206371232048,0.07190048465069457,0.05907762325952162,20685.0,6,3,6,6_0,6_2,6_0_0 -692,2,62.0,3,0.0,1,111,2,0,75,2.0,1391.3219200147996,0.0,789.9337206804269,114.70208117348345,0.0,16267.0,0,41,1,10952,201100692,,,,,0.0,1.0,5.0,0.0,1.0,1.0,1777.7717191012496,0.0,579.0,0.0,0.0,10138.0,0,5,1,195.0,6,4.0,1,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2295.9577218687095,0.14114204966304233,0.22647047956882121,10138.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -693,2,86.0,1,0.0,5,120,4,77,78,6.0,0.0,0.0,528.2339953436998,140.77073598563877,1012.8868133794131,16652.0,70,70,1,10953,201100693,,,282.0,,0.0,1.0,5.0,0.0,2.0,1.5,1747.1228717173876,942.0,28.0,0.0,0.0,30150.0,5,5,1,127.0,0,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1681.8915447087516,0.10100237477232474,0.05578413083611116,20100.0,6,3,6,6_1,6_1,6_0_0 -694,2,39.0,1,0.0,1,111,2,38,46,10.0,0.0,0.0,2260.2001248191245,0.0,2916.795003475845,115382.0,31,50,1,10955,201100694,,,768.0,,2.0,0.0,5.0,2.0,4.0,2.3,2805.7708873554993,2488.0,708.0,139.0,0.0,118812.0,1,1,2,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5176.99512829497,0.044868308126873944,0.043572998756817236,51657.39130434783,10,5,10,10_1,10_4,10_1_0 -695,2,71.0,4,0.0,4,111,2,0,77,5.0,2855.620816449988,0.0,581.1947582208322,121.65372245672486,0.0,15790.0,0,70,1,10956,201100695,,,193.0,,0.0,1.0,3.0,0.0,1.0,1.0,1716.8369051107632,0.0,426.0,0.0,0.0,17560.0,0,5,1,80.0,8,7.0,1,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3558.4692971275454,0.22536221007774196,0.20264631532617,17560.0,5,3,5,5_1,5_3,5_0_1 -696,2,35.0,1,0.0,5,112,2,47,31,10.0,1903.7472109666587,0.0,1800.8851663180715,0.0,0.0,58953.0,31,10,1,10957,201100696,,,273.0,,2.0,0.0,5.0,2.0,4.0,2.1,2107.7137807617673,0.0,1320.0,0.0,0.0,159339.0,1,1,2,120.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3704.63237728473,0.06284043860846318,0.02325000393679344,75875.71428571428,10,5,10,10_1,10_0,10_0_0 -697,2,73.0,3,0.0,3,111,2,0,77,5.0,0.0,0.0,1429.7936775010144,0.0,2365.2959466228936,29317.0,0,70,1,10958,201100697,,,136.0,,0.0,4.0,5.0,1.0,2.0,1.5,1740.2614447554663,0.0,1048.0,1361.0,0.0,25215.0,0,5,1,100.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3795.089624123908,0.12945013555697746,0.1505092057951183,16810.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -698,1,40.0,4,162.0,4,112,2,85,47,4.0,3490.203220105541,0.0,1227.8762497623215,139.0328256648284,0.0,43052.0,60,71,1,1096,201100698,,,300.0,,2.0,0.0,5.0,3.0,5.0,2.8,2027.3239928248672,0.0,900.0,0.0,0.0,44814.0,6,4,2,110.0,6,2.0,4,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,4857.11229553269,0.11281966681066362,0.10838381522588232,16005.000000000002,4,2,4_1,4_1_1,4_1_1,4_0_1 -699,2,37.0,2,0.0,4,111,4,54,63,6.0,0.0,0.0,682.1534720901786,0.0,0.0,31583.0,50,50,1,10961,201100699,,,630.0,,2.0,0.0,4.0,2.0,4.0,2.3,3106.259308561187,0.0,500.0,0.0,0.0,47920.0,1,1,2,95.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,682.1534720901786,0.021598754775992737,0.014235256095371006,20834.782608695652,6,3,6,6_1,6_4,6_0_1 -700,2,35.0,3,0.0,1,112,1,0,13,10.0,951.8736054833294,0.0,251.03247772918573,93.84715732375918,0.0,8828.0,0,41,8,10962,201100700,,,,327.0,1.0,0.0,3.0,0.0,1.0,1.0,3293.0041691965475,0.0,184.0,0.0,0.0,38307.0,0,1,3,68.0,8,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1296.7532405362742,0.14689094251656934,0.033851599982673515,38307.0,10,5,10,10_0,10_0,10_1_0 -701,1,66.0,4,248.0,1,221,4,0,86,3.0,0.0,0.0,955.0148609262501,76.46805411565563,0.0,4448.0,0,71,2,10964,201100701,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2966.8757090480676,0.0,700.0,0.0,0.0,12736.0,0,5,3,30.0,1,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1031.4829150419057,0.23189813737452916,0.08098955049009939,12736.0,3,2,3_1,3_0_1,3_1_1,3_1_0 -702,2,36.0,2,0.0,7,111,4,33,37,10.0,0.0,0.0,818.5841665082144,0.0,0.0,32491.0,10,10,2,10965,201100702,,,,595.0,2.0,0.0,3.0,0.0,2.0,1.5,2009.9097300903695,0.0,600.0,0.0,0.0,62775.0,1,1,3,67.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,818.5841665082144,0.025194181973722397,0.013039970792643798,41850.0,10,5,10,10_0,10_3,10_0_0 -703,2,53.0,2,0.0,2,111,2,52,38,7.0,0.0,0.0,368.36287492869644,0.0,3639.184211776884,38310.0,41,12,1,10966,201100703,,,,,2.0,0.0,5.0,2.0,4.0,2.5,1063.2284361822822,0.0,270.0,2094.0,0.0,55200.0,1,1,1,150.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4007.54708670558,0.10460838127657479,0.07260049070118804,22080.0,7,4,7,7_1,7_2,7_0_1 -704,2,39.0,3,0.0,8,111,5,65,46,7.0,0.0,1299.0990351113799,1493.9161038774912,0.0,0.0,62621.0,41,31,1,10967,201100704,,,384.0,,2.0,0.0,4.0,1.0,3.0,1.8,2376.963472886911,0.0,1095.0,0.0,0.0,41095.0,1,1,1,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2793.015138988871,0.04460189295905321,0.06796484095361652,22830.555555555555,7,4,7,7_1,7_4,7_0_0 -705,2,26.0,2,0.0,7,111,2,52,38,9.0,0.0,0.0,682.1534720901786,0.0,0.0,18907.0,10,12,2,1097,201100705,,,300.0,484.0,2.0,0.0,2.0,0.0,2.0,1.5,3667.1695872937375,0.0,500.0,0.0,0.0,43618.0,1,1,3,44.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,682.1534720901786,0.03607941355530643,0.01563926525952998,29078.666666666668,8,4,8,8_0,8_3,8_0_0 -706,2,31.0,2,0.0,2,111,2,0,37,10.0,0.0,0.0,1473.4514997147858,0.0,0.0,76213.0,0,12,2,10970,201100706,,,,1170.0,1.0,0.0,3.0,0.0,1.0,1.0,4091.9389372771175,0.0,1080.0,0.0,0.0,49388.0,0,1,3,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1473.4514997147858,0.019333335516444516,0.02983420060975917,49388.0,10,5,10,10_0,10_4,10_0_1 -707,1,35.0,4,353.0,2,112,5,0,85,1.0,0.0,0.0,1364.3069441803573,199.85968689319085,0.0,18622.0,0,41,1,10971,201100707,,,,,0.0,0.0,3.0,2.0,3.0,1.6,3172.678420039125,0.0,1000.0,0.0,0.0,13756.0,0,6,3,80.0,7,0.0,2,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1564.1666310735482,0.08399563049476684,0.11370795515219163,8597.5,1,1,1_1,1_1_1,1_0_1,1_0_1 -708,2,53.0,2,0.0,5,112,4,52,52,10.0,0.0,0.0,1910.0297218525002,0.0,0.0,50275.0,50,50,1,10972,201100708,,,299.0,,2.0,4.0,4.0,0.0,2.0,1.5,966.1974492602634,0.0,1400.0,0.0,0.0,59752.0,1,1,2,90.0,8,2.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1910.0297218525002,0.037991640414768775,0.03196595464340106,39834.666666666664,10,5,10,10_1,10_1,10_0_0 -709,2,32.0,2,0.0,1,111,2,55,64,3.0,0.0,0.0,843.1416915034608,0.0,855.0518778386947,52807.0,43,31,1,10974,201100709,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2522.7351911515243,0.0,618.0,492.0,0.0,30085.0,1,1,3,75.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1698.1935693421556,0.03215849355847057,0.05644652050331247,14326.190476190475,3,2,3_0,3_1_0,3_3_0,3_1_0 -710,2,73.0,2,0.0,2,111,2,0,74,10.0,2538.3296146222115,0.0,843.7418238028044,0.0,779.5572608281045,79469.0,0,50,1,10977,201100710,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2716.45491718701,725.0,342.0,0.0,0.0,38338.0,0,5,1,106.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4161.62869925312,0.05236795101552958,0.10855101203122543,38338.0,10,5,10,10_1,10_4,10_0_1 -711,2,63.0,2,0.0,8,111,6,77,74,9.0,0.0,0.0,1350.6638747385537,0.0,0.0,45671.0,50,50,2,10978,201100711,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2786.2933979375434,0.0,990.0,0.0,0.0,45285.0,6,5,2,87.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1350.6638747385537,0.02957377492804085,0.0298258556859568,30190.0,9,5,9,9_0,9_4,9_0_0 -712,1,27.0,4,400.0,2,111,2,85,64,1.0,0.0,0.0,20.808212352723984,0.0,43.01005576982645,17212.0,50,60,2,10979,201100712,,,,360.0,1.0,0.0,3.0,2.0,4.0,2.1,3428.192805182154,40.0,0.0,0.0,0.0,15560.0,4,4,3,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,63.818268122550435,0.003707777604145389,0.00410143111327445,7409.523809523809,1,1,1_1,1_0_1,1_3_1,1_0_1 -713,2,79.0,3,0.0,6,112,2,86,77,4.0,0.0,0.0,3270.2437452003164,52.13730962431066,0.0,17734.0,70,60,1,10982,201100713,,,232.0,,0.0,1.0,5.0,0.0,2.0,1.5,3054.5476604539267,0.0,2397.0,0.0,0.0,22191.0,6,5,1,110.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3322.381054824627,0.18734527206634866,0.14971750055538854,14794.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -714,2,31.0,2,0.0,5,112,2,52,47,5.0,0.0,693.9631597817199,818.5841665082144,0.0,0.0,32756.0,31,43,1,10983,201100714,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2479.000279534961,0.0,600.0,0.0,0.0,32140.0,1,1,2,100.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1512.5473262899343,0.046176191424164556,0.04706121114778887,17855.555555555555,5,3,5,5_1,5_0,5_0_0 -715,2,51.0,3,0.0,7,111,2,43,47,5.0,0.0,0.0,613.9381248811608,0.0,1120.952156922679,43428.0,50,31,1,10984,201100715,,,325.0,,2.0,0.0,3.0,1.0,3.0,2.0,1730.5895663094168,0.0,450.0,645.0,0.0,35599.0,1,1,2,120.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1734.8902818038398,0.03994865712912959,0.04873424202376021,17799.5,5,3,5,5_1,5_3,5_0_0 -716,2,63.0,3,0.0,6,400,2,69,78,4.0,0.0,166.55115834761278,811.7626317873126,130.34327406077665,0.0,33624.0,50,71,1,10985,201100716,,,198.0,,1.0,4.0,7.0,0.0,2.0,1.5,2711.511494637218,0.0,595.0,0.0,0.0,22584.0,1,5,1,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1108.6570641957019,0.03297219439078342,0.04909037655843526,15056.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -717,2,42.0,3,0.0,4,111,1,68,67,8.0,0.0,0.0,1749.041502439218,0.0,476.1874279020373,48580.0,71,71,2,10987,201100717,772.0,772.0,,,3.0,0.0,4.0,2.0,5.0,3.0,3178.7983616235056,0.0,1282.0,274.0,0.0,84350.0,1,1,2,68.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2225.2289303412554,0.04580545348582247,0.026380900181876176,28116.666666666668,8,4,8,8_0,8_4,8_0_1 -718,2,64.0,3,0.0,5,111,2,54,74,10.0,0.0,0.0,180.08851663180715,0.0,130.34327406077665,45817.0,60,31,1,10988,201100718,,,,,1.0,3.0,3.0,0.0,2.0,1.5,1993.0649361536944,0.0,132.0,75.0,0.0,60950.0,4,5,1,67.0,5,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,310.43179069258383,0.00677547178323731,0.0050932205199767655,40633.333333333336,10,5,10,10_1,10_2,10_0_0 -719,2,48.0,3,0.0,99,120,2,52,62,7.0,1578.5237290931877,0.0,854.0561470569037,191.17013528913907,0.0,47689.0,50,50,1,10991,201100719,,,420.0,,2.0,0.0,4.0,1.0,3.0,2.0,947.896596534522,0.0,626.0,0.0,0.0,49354.0,1,1,2,100.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2623.7500114392305,0.055017928902665825,0.0531618513482034,24677.0,7,4,7,7_1,7_0,7_0_0 -720,2,39.0,3,0.0,1,111,2,0,63,7.0,0.0,0.0,1773.5990274344645,0.0,0.0,26054.0,0,50,2,10993,201100720,,,,,1.0,0.0,4.0,1.0,2.0,1.5,2786.567203032988,0.0,1300.0,0.0,0.0,35931.0,0,1,2,80.0,4,4.0,2,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1773.5990274344645,0.06807396282468967,0.04936124871098674,23954.0,7,4,7,7_0,7_2,7_1_0 -721,2,55.0,3,0.0,1,112,2,55,64,6.0,0.0,291.4645271083224,963.2007025913322,99.06088828619025,0.0,27969.0,50,50,1,10994,201100721,,,142.0,,2.0,2.0,5.0,0.0,2.0,1.5,1177.9780807276575,0.0,706.0,0.0,0.0,31860.0,1,1,5,159.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1353.7261179858447,0.04840094812062801,0.04248983421173398,21240.0,6,3,6,6_1,6_0,6_1_0 -722,1,41.0,2,255.0,4,221,4,56,62,3.0,0.0,0.0,1500.737638598393,0.0,521.3730962431066,53018.0,43,50,2,10996,201100722,,,465.0,245.0,2.0,0.0,5.0,3.0,5.0,2.6,2483.235969183337,0.0,1100.0,300.0,0.0,34322.0,1,1,3,80.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,2022.1107348414996,0.038140079498311885,0.0589158771295816,13200.76923076923,3,2,3_1,3_0_1,3_1_1,3_0_1 -723,1,67.0,4,90.0,2,111,1,86,77,2.0,0.0,0.0,409.2920832541072,0.0,278.0656513296568,23421.0,10,60,2,10998,201100723,,,,240.0,0.0,9.0,4.0,0.0,2.0,1.5,2395.2439561545284,0.0,300.0,160.0,0.0,16390.0,5,5,3,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,687.357734583764,0.029347924280934374,0.04193762871163905,10926.666666666666,2,1,2_1,2_0_1,2_4_1,2_0_1 -724,2,59.0,3,0.0,4,111,2,0,52,7.0,0.0,0.0,436.5782221377143,0.0,1266.936623870749,15280.0,0,50,2,110,201100724,,,290.0,288.0,1.0,0.0,3.0,1.0,2.0,1.5,3172.530888680353,0.0,320.0,729.0,0.0,34482.0,0,1,3,67.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1703.5148460084633,0.11148657369165337,0.04940301740062825,22988.0,7,4,7,7_0,7_3,7_0_1 -725,1,33.0,3,250.0,5,112,5,0,85,1.0,0.0,0.0,1364.3069441803573,1042.7461924862132,0.0,26420.0,0,20,1,1100,201100725,,,,350.0,0.0,0.0,3.0,1.0,2.0,1.3,2978.936332577601,0.0,1000.0,0.0,0.0,6912.0,0,7,3,70.0,9,0.0,2,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2407.0531366665705,0.09110723454453333,0.34824264130014043,5316.923076923077,1,1,1_1,1_1_1,1_0_1,1_0_0 -726,2,50.0,3,0.0,4,300,4,13,13,6.0,0.0,0.0,1326.1063497433072,521.3730962431066,0.0,41559.0,42,41,1,11000,201100726,,,,,3.0,2.0,8.0,1.0,3.0,2.0,2290.4014142986057,0.0,972.0,0.0,0.0,37982.0,1,1,1,94.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1847.4794459864138,0.044454376813359654,0.04864092059360786,18991.0,5,3,5,5_1,5_0,5_0_1 -727,2,64.0,3,0.0,1,111,2,75,72,6.0,0.0,0.0,545.7227776721429,0.0,2085.4923849724264,35413.0,41,50,2,11001,201100727,,,,,0.0,3.0,5.0,0.0,2.0,1.5,3231.4076570551383,0.0,400.0,1200.0,0.0,28677.0,5,5,1,120.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2631.2151626445693,0.074300826324925,0.09175350150450079,19118.0,5,3,5,5_0,5_3,5_1_0 -728,2,54.0,3,0.0,6,112,2,52,55,8.0,1903.7472109666587,0.0,1091.4455553442858,0.0,0.0,45535.0,50,50,1,11002,201100728,,,,,2.0,0.0,7.0,2.0,4.0,2.5,1895.3885891733091,0.0,800.0,0.0,0.0,71976.0,1,1,2,202.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2995.1927663109445,0.06577781412783451,0.04161377078902613,28790.4,8,4,8,8_1,8_0,8_0_0 -729,2,69.0,1,0.0,6,111,4,86,74,5.0,0.0,0.0,2708.1492841980094,0.0,234.61789330939797,45067.0,50,71,1,11003,201100729,,,1070.0,,0.0,4.0,5.0,0.0,2.0,1.5,3767.131453774499,0.0,1985.0,135.0,0.0,26450.0,6,5,1,120.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2942.7671775074073,0.06529760528784714,0.11125773828005321,17633.333333333332,5,3,5,5_1,5_3,5_0_0 -730,1,36.0,3,90.0,9,112,4,85,53,5.0,0.0,0.0,225.11064578975893,0.0,0.0,31227.0,50,42,1,11005,201100730,,,480.0,,1.0,0.0,5.0,2.0,4.0,2.1,1523.8149023738629,0.0,165.0,0.0,0.0,37527.0,7,1,2,150.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,225.11064578975893,0.007208846376205173,0.005998631539684998,17870.0,5,3,5,5_1,5_0,5_0_0 -731,2,71.0,3,0.0,3,111,1,77,77,5.0,0.0,0.0,341.0767360450893,86.89551604051776,0.0,29168.0,60,70,2,11008,201100731,,,,326.0,0.0,7.0,4.0,0.0,2.0,1.5,2353.240027139176,0.0,250.0,0.0,0.0,25853.0,5,5,3,90.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,427.97225208560707,0.014672663606884498,0.016554065372900904,17235.333333333332,5,3,5,5_0,5_2,5_0_1 -732,2,79.0,4,0.0,9,111,2,86,78,4.0,0.0,0.0,615.3024318253412,0.0,1147.0208117348345,29025.0,71,71,1,11009,201100732,,,320.0,424.0,0.0,9.0,3.0,0.0,2.0,1.5,7393.867981918686,0.0,451.0,660.0,0.0,23117.0,5,5,3,65.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1762.3232435601758,0.060717424412064624,0.07623494586495548,15411.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_0 -733,2,71.0,2,0.0,8,112,2,63,78,5.0,0.0,0.0,2319.3218051066074,90.37133668213848,0.0,24527.0,70,70,1,1101,201100733,,,,,1.0,2.0,5.0,0.0,2.0,1.5,1443.981257514862,0.0,1700.0,0.0,0.0,26857.0,1,5,1,180.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2409.693141788746,0.09824655040521653,0.08972309423199709,17904.666666666668,5,3,5,5_1,5_0,5_0_0 -734,2,30.0,3,0.0,99,111,4,55,62,4.0,0.0,0.0,744.9115915224751,137.29491534401805,0.0,29978.0,31,50,2,11010,201100734,,,,480.0,2.0,0.0,3.0,0.0,2.0,1.5,2595.811553685942,0.0,546.0,0.0,0.0,22587.0,1,1,3,53.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,882.2065068664931,0.02942846443613627,0.03905815322382313,15058.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -735,1,30.0,3,10.0,1,112,2,42,42,6.0,0.0,1665.511583476128,1773.5990274344645,104.27461924862132,0.0,28002.0,20,20,1,11014,201100735,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,2435.7778182072634,0.0,1300.0,0.0,0.0,41119.0,1,1,2,160.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3543.3852301592133,0.12654043390326453,0.08617391546874227,19580.47619047619,6,3,6,6_1,6_0,6_1_0 -736,2,56.0,3,0.0,6,111,2,52,52,7.0,0.0,0.0,590.7449068300947,0.0,1489.3891449344744,24328.0,60,50,1,11015,201100736,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1631.4607950876975,0.0,433.0,857.0,0.0,35440.0,1,1,1,75.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2080.134051764569,0.08550370156875078,0.05869452741999348,23626.666666666668,7,4,7,7_1,7_2,7_0_0 -737,2,45.0,3,0.0,7,112,2,42,47,6.0,3172.912018277764,166.55115834761278,3192.4782493820358,0.0,0.0,71218.0,30,42,1,11016,201100737,,,500.0,,3.0,0.0,10.0,5.0,7.0,3.8,1029.8842434672,0.0,2340.0,0.0,0.0,78067.0,1,1,2,150.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6531.941426007413,0.09171756334083256,0.0836709675792257,20543.947368421053,6,3,6,6_1,6_0,6_0_0 -738,1,43.0,2,15.0,1,112,2,56,46,1.0,0.0,0.0,1637.1683330164287,260.6865481215533,0.0,23065.0,41,60,1,11018,201100738,,,358.0,,2.0,0.0,5.0,2.0,4.0,2.1,3164.3172778871503,0.0,1200.0,0.0,0.0,17598.0,1,1,2,160.0,7,2.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1897.854881137982,0.08228289100966754,0.10784491880543141,8380.0,1,1,1_1,1_1_1,1_1_1,1_1_0 -739,1,40.0,3,248.0,8,111,1,0,54,4.0,0.0,0.0,450.22129157951787,0.0,76.46805411565563,7668.0,0,50,2,11019,201100739,,,48.0,164.0,1.0,0.0,3.0,0.0,1.0,1.0,2878.8367227096455,0.0,330.0,44.0,0.0,15120.0,0,4,3,65.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,526.6893456951735,0.06868666480114417,0.03483395143486597,15120.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -740,2,63.0,1,0.0,8,111,2,74,74,10.0,0.0,0.0,725.81129430395,0.0,3660.039135626608,62123.0,20,20,1,1102,201100740,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1048.1620424264943,0.0,532.0,2106.0,0.0,156327.0,6,5,1,300.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4385.850429930559,0.07059946283873217,0.028055616943525805,104218.0,10,5,10,10_1,10_3,10_0_0 -741,2,60.0,3,0.0,7,111,1,0,77,8.0,0.0,0.0,545.7227776721429,0.0,1477.223772688802,38318.0,0,50,2,11025,201100741,,,450.0,,1.0,1.0,4.0,1.0,3.0,2.0,2326.5179069879355,0.0,400.0,850.0,0.0,53908.0,0,5,3,70.0,8,7.0,5,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2022.946550360945,0.05279363615953194,0.037525906180176316,26954.0,8,4,8,8_0,8_3,8_0_0 -742,2,52.0,3,0.0,7,111,2,85,43,4.0,0.0,0.0,450.22129157951787,0.0,868.9551604051776,16906.0,50,20,2,11027,201100742,,,300.0,,1.0,2.0,2.0,0.0,2.0,1.5,2716.802510363781,0.0,330.0,500.0,0.0,25010.0,7,7,1,55.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1319.1764519846954,0.07803007523865464,0.05274595969550961,16673.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_0 -743,2,88.0,3,0.0,3,112,2,0,75,9.0,0.0,0.0,151.43807080401965,0.0,1918.652994174632,28634.0,0,60,2,11029,201100743,,,,,1.0,2.0,3.0,1.0,2.0,1.5,2186.5512022851344,0.0,111.0,1104.0,0.0,50807.0,0,5,1,65.0,10,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2070.091064978652,0.07229486152750758,0.0407442097541412,33871.333333333336,9,5,9,9_0,9_2,9_0_1 -744,1,25.0,2,214.0,1,111,4,0,46,3.0,0.0,0.0,514.3437179559946,0.0,0.0,23178.0,0,10,2,1103,201100744,,,,106.0,1.0,0.0,1.0,0.0,1.0,1.0,3295.4170902276237,0.0,377.0,0.0,0.0,13017.0,0,3,3,25.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,514.3437179559946,0.022191031062041358,0.03951323023400128,13017.0,3,2,3_1,3_0_1,3_3_1,3_1_0 -745,2,72.0,3,0.0,4,112,2,77,78,5.0,0.0,0.0,732.6328290248518,0.0,1591.9258538622853,18461.0,70,50,1,11031,201100745,,,441.0,,0.0,2.0,5.0,0.0,2.0,1.5,1300.647909805874,0.0,537.0,916.0,0.0,26547.0,5,5,1,100.0,8,1.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2324.5586828871374,0.125917267910034,0.0875638935807111,17698.0,5,3,5,5_1,5_1,5_0_1 -746,2,66.0,3,0.0,5,111,1,0,77,7.0,0.0,0.0,532.0797082303393,0.0,0.0,26144.0,0,50,2,11033,201100746,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2952.7307597273893,0.0,390.0,0.0,0.0,24525.0,0,5,1,85.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,532.0797082303393,0.02035188602472228,0.021695400947210574,24525.0,7,4,7,7_0,7_4,7_0_0 -747,2,67.0,2,0.0,2,111,2,0,86,5.0,0.0,0.0,422.93515269591074,0.0,2228.0010312788754,10257.0,0,71,1,11034,201100747,,,221.0,,0.0,0.0,3.0,0.0,1.0,1.0,3878.192466900308,0.0,310.0,1282.0,0.0,17652.0,0,7,1,80.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2650.936183974786,0.2584514169810652,0.15017766734504795,17652.0,5,3,5,5_1,5_3,5_0_1 -748,2,44.0,1,0.0,2,111,2,0,47,9.0,0.0,0.0,736.7257498573929,0.0,2676.381894047947,40313.0,0,60,1,11035,201100748,,,140.0,,1.0,1.0,6.0,0.0,1.0,1.0,2658.5789725263508,0.0,540.0,1540.0,0.0,32998.0,0,1,1,100.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3413.1076439053395,0.08466518601705007,0.10343377307428751,32998.0,9,5,9,9_1,9_3,9_0_1 -749,2,76.0,2,0.0,3,111,2,75,74,9.0,1459.5395284077715,0.0,907.0984562295029,0.0,733.609182008552,27297.0,31,50,1,11036,201100749,,,218.0,,0.0,1.0,4.0,0.0,2.0,1.5,1237.62775721484,616.0,430.0,41.0,0.0,44941.0,5,5,1,80.0,7,5.0,3,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3100.2471666458264,0.11357464800695412,0.06898482825584269,29960.666666666668,9,5,9,9_1,9_2,9_0_1 -750,2,82.0,4,0.0,1,112,6,0,86,4.0,0.0,352.53328516911375,1633.4446696888326,0.0,3376.2893779313767,9376.0,0,70,1,11037,201100750,,,261.0,,0.0,9.0,7.0,0.0,1.0,1.0,2128.7939044631253,3140.0,0.0,0.0,0.0,16168.0,0,6,1,144.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5362.267332789323,0.5719141779852093,0.33165928579844894,16168.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -751,2,77.0,3,0.0,5,111,5,86,77,5.0,0.0,999.3069500856767,1077.8024859024822,0.0,0.0,27592.0,50,50,1,11039,201100751,,,250.0,,0.0,2.0,4.0,0.0,2.0,1.5,1424.6670598137462,0.0,790.0,0.0,0.0,25638.0,5,5,1,130.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2077.109435988159,0.07527940837881121,0.08101682798924094,17092.0,5,3,5,5_1,5_3,5_0_0 -752,1,61.0,4,150.0,1,111,2,0,78,2.0,0.0,0.0,109.14455553442858,0.0,583.9378677922793,7169.0,0,70,8,1104,201100752,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2902.501932219289,0.0,80.0,336.0,0.0,10142.0,0,4,3,38.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,693.082423326708,0.09667769888780973,0.06833784493459948,10142.0,2,1,2_1,2_0_1,2_4_1,2_1_0 -753,2,72.0,2,0.0,4,111,4,72,75,7.0,0.0,0.0,878.2999015415,34.7582064162071,174.19072586779714,21295.0,50,41,1,11041,201100753,,,170.0,,0.0,2.0,6.0,0.0,2.0,1.5,2840.7668547832836,162.0,582.0,0.0,0.0,33945.0,5,5,5,120.0,8,6.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1087.2488338255043,0.05105653129023265,0.03202971965902208,22630.0,7,4,7,7_1,7_2,7_0_1 -754,2,38.0,3,0.0,5,112,2,38,52,6.0,0.0,0.0,879.9779789963304,0.0,1399.017808252336,55526.0,20,50,1,11043,201100754,,,443.0,,2.0,0.0,4.0,3.0,5.0,2.6,5803.48429808007,0.0,645.0,805.0,0.0,54880.0,1,1,2,110.0,9,2.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2278.9957872486666,0.04104375945050367,0.04152689116706754,21107.69230769231,6,3,6,6_1,6_1,6_0_0 -755,2,41.0,1,0.0,1,111,2,43,37,9.0,0.0,0.0,728.2874323453394,0.0,1505.351951943926,85958.0,31,12,1,11044,201100755,,,360.0,,2.0,0.0,8.0,3.0,5.0,2.4,1435.5476705720475,1400.0,0.0,0.0,0.0,88573.0,1,1,2,175.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2233.6393842892653,0.025985241446860853,0.02521806176023467,36905.41666666667,9,5,9,9_1,9_3,9_1_0 -756,2,53.0,3,0.0,2,112,2,62,62,5.0,0.0,0.0,806.3182286680544,0.0,1666.639661080775,21456.0,71,71,1,11045,201100756,,,336.0,,2.0,1.0,5.0,0.0,2.0,1.5,2251.7719136575784,1550.0,0.0,0.0,0.0,27610.0,1,1,3,70.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2472.9578897488295,0.11525717234101554,0.08956747155917529,18406.666666666668,5,3,5,5_1,5_1,5_0_1 -757,1,30.0,2,262.0,99,111,2,0,43,4.0,0.0,0.0,630.309808211325,0.0,0.0,12329.0,0,10,2,11046,201100757,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2812.868279771188,0.0,462.0,0.0,0.0,16501.0,0,1,3,40.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,630.309808211325,0.051124163209613514,0.03819827938981426,16501.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -758,2,31.0,4,0.0,1,111,6,0,67,3.0,0.0,0.0,311.0619832731214,0.0,0.0,12817.0,0,43,2,11047,201100758,,,50.0,380.0,1.0,0.0,2.0,0.0,1.0,1.0,3633.6983429441666,0.0,228.0,0.0,0.0,14401.0,0,1,3,40.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,311.0619832731214,0.024269484534065806,0.02160002661434077,14401.0,3,2,3_0,3_0_0,3_3_0,3_1_0 -759,2,80.0,3,0.0,1,111,6,0,71,5.0,1745.1016100527704,0.0,1323.3777358549464,0.0,0.0,16955.0,0,70,1,11048,201100759,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2617.206997632791,0.0,970.0,0.0,0.0,16969.0,0,5,1,100.0,8,7.0,1,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3068.479345907717,0.18097784405235723,0.18082853119852182,16969.0,4,2,4_0,4_1_0,4_3_0,4_1_0 -760,2,63.0,2,0.0,3,111,1,0,75,9.0,0.0,0.0,315.1549041056625,0.0,243.30744491344973,26246.0,0,70,2,11049,201100760,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3765.94005582078,0.0,231.0,140.0,0.0,32735.0,0,5,1,74.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,558.4623490191123,0.021277998514787483,0.01706009925214945,32735.0,9,5,9,9_0,9_3,9_0_1 -761,0,50.0,4,0.0,1,400,5,56,67,6.0,0.0,208.188947934516,934.0204654071464,97.32297796537989,125.80441312674239,40294.0,60,71,1,1105,201100761,,,,,3.0,1.0,5.0,1.0,3.0,2.0,2527.4157014260086,117.0,640.0,0.0,0.0,41516.0,1,1,5,180.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1365.336804433785,0.03388436999140777,0.0328870027082037,20758.0,6,3,6,6_1,6_0,6_1_0 -762,2,34.0,2,0.0,1,221,5,62,46,7.0,0.0,638.4461069991823,1364.3069441803573,0.0,0.0,51354.0,50,31,1,11050,201100762,,,160.0,,2.0,0.0,4.0,1.0,3.0,1.8,2207.966685184279,0.0,1000.0,0.0,0.0,42842.0,1,1,2,90.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2002.7530511795396,0.03899896894457179,0.046747421949944905,23801.11111111111,7,4,7,7_1,7_1,7_1_0 -763,2,61.0,3,0.0,5,111,1,0,77,5.0,0.0,0.0,24.557524995246432,0.0,85.1576057197074,10586.0,0,70,2,11051,201100763,41.0,41.0,,249.0,0.0,0.0,2.0,0.0,1.0,1.0,2834.591318090683,0.0,18.0,49.0,0.0,18748.0,0,5,3,80.0,5,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,109.71513071495383,0.010364172559508202,0.0058520978619028075,18748.0,5,3,5,5_0,5_2,5_0_0 -764,2,56.0,3,0.0,1,111,2,56,46,5.0,0.0,0.0,1773.5990274344645,0.0,0.0,20220.0,70,50,1,11053,201100764,,,300.0,,2.0,7.0,4.0,0.0,2.0,1.5,1041.4015835699397,0.0,1300.0,0.0,0.0,26350.0,1,1,3,90.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1773.5990274344645,0.08771508543197154,0.06730926100320549,17566.666666666668,5,3,5,5_1,5_2,5_1_0 -765,2,57.0,1,0.0,9,111,2,74,31,10.0,0.0,0.0,1637.1683330164287,0.0,0.0,58306.0,12,10,1,11054,201100765,,,998.0,,1.0,2.0,6.0,1.0,3.0,2.0,2649.259598003095,0.0,1200.0,0.0,0.0,86980.0,6,1,2,200.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.028078899821912473,0.018822353794164505,43490.0,10,5,10,10_1,10_3,10_0_0 -766,2,42.0,3,0.0,1,300,2,62,42,6.0,1737.169330007076,624.566843803548,682.1534720901786,246.78326555507044,0.0,24897.0,50,20,1,11055,201100766,,,200.0,,2.0,0.0,5.0,2.0,4.0,2.1,1254.3045822367087,0.0,500.0,0.0,0.0,41935.0,1,1,1,200.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3290.672911455873,0.13217146288532244,0.07847079793623161,19969.04761904762,6,3,6,6_1,6_0,6_1_0 -767,2,79.0,2,0.0,6,112,2,78,75,3.0,0.0,0.0,637.1313429322269,0.0,1089.6697711480927,29133.0,71,41,1,11056,201100767,,,234.0,,0.0,3.0,6.0,0.0,2.0,1.5,5585.5847727951705,0.0,467.0,627.0,0.0,18860.0,5,5,1,90.0,8,3.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1726.8011140803196,0.0592730276346521,0.09155891379004875,12573.333333333334,2,1,2_0,2_1_0,2_1_0,2_0_0 -768,1,39.0,3,50.0,9,112,2,56,55,4.0,0.0,0.0,2114.6757634795536,0.0,0.0,28700.0,71,71,1,11057,201100768,,,,,2.0,0.0,6.0,3.0,5.0,2.4,2854.928831902979,0.0,1550.0,0.0,0.0,37994.0,1,1,2,160.0,9,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2114.6757634795536,0.07368208235120395,0.05565815032582917,15830.833333333334,4,2,4_1,4_1_1,4_0_1,4_0_0 -769,2,50.0,3,0.0,8,112,2,47,48,9.0,0.0,0.0,955.0148609262501,0.0,0.0,31927.0,31,10,1,11058,201100769,,,450.0,,2.0,3.0,5.0,1.0,3.0,1.8,2022.4655142690528,0.0,700.0,0.0,0.0,55294.0,4,1,2,100.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,955.0148609262501,0.029912452185493474,0.017271582105223896,30718.888888888887,9,5,9,9_1,9_0,9_0_0 -770,2,60.0,2,0.0,5,112,2,75,75,10.0,0.0,0.0,2865.0445827787503,156.41192887293198,0.0,49086.0,70,41,1,1106,201100770,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2856.39751613317,0.0,2100.0,0.0,0.0,57195.0,7,5,1,120.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3021.4565116516824,0.06155434363467552,0.052827284057202245,38130.0,10,5,10,10_1,10_0,10_0_0 -771,2,28.0,2,0.0,5,111,3,33,46,10.0,0.0,0.0,573.00891655575,0.0,0.0,47475.0,10,31,2,11060,201100771,,,,603.0,2.0,0.0,3.0,0.0,2.0,1.5,3116.266674973828,0.0,420.0,0.0,0.0,63924.0,1,1,3,70.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,573.00891655575,0.012069698084375987,0.008963908963077248,42616.0,10,5,10,10_0,10_3,10_0_0 -772,1,62.0,1,133.0,5,111,2,0,56,2.0,0.0,0.0,409.2920832541072,0.0,973.2297796537989,16824.0,0,70,2,11061,201100772,,,,165.0,1.0,3.0,2.0,0.0,1.0,1.0,2516.749021234986,0.0,300.0,560.0,0.0,9692.0,0,1,3,65.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1382.521862907906,0.08217557435258595,0.14264567301980047,9692.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -773,2,57.0,5,0.0,5,112,5,78,67,3.0,0.0,510.7568855993459,1814.528235759875,0.0,0.0,27607.0,71,70,1,11062,201100773,,,650.0,,1.0,3.0,5.0,0.0,2.0,1.5,2129.869180474903,0.0,1330.0,0.0,0.0,20130.0,7,1,1,100.0,5,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2325.285121359221,0.08422809871986167,0.11551341884546554,13420.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -774,2,74.0,3,0.0,3,111,2,0,77,5.0,2051.2876198165745,0.0,601.6593623835375,0.0,0.0,15762.0,0,50,1,11065,201100774,,,155.0,,0.0,2.0,4.0,0.0,1.0,1.0,2687.3526375211527,0.0,441.0,0.0,0.0,16939.0,0,5,1,90.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2652.946982200112,0.1683128398807329,0.15661768594368689,16939.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -775,2,40.0,3,0.0,5,111,2,52,47,9.0,0.0,208.188947934516,573.00891655575,0.0,1042.7461924862132,39610.0,50,44,1,11066,201100775,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.1,2414.328510749927,0.0,420.0,600.0,0.0,71200.0,1,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1823.9440569764793,0.046047565184965396,0.025617191811467405,33904.7619047619,9,5,9,9_1,9_4,9_0_0 -776,2,84.0,3,0.0,1,300,5,0,71,2.0,0.0,652.3253701948167,272.86138883607146,201.5975972140012,0.0,11376.0,0,71,5,11067,201100776,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2139.1790751354206,0.0,200.0,0.0,0.0,10210.0,0,5,1,53.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1126.7843562448893,0.09904925775711051,0.1103608576145827,10210.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -777,1,23.0,3,261.0,7,111,4,43,68,2.0,0.0,0.0,968.6579303680536,45.18566834106924,0.0,31324.0,20,43,2,11068,201100777,,,135.0,189.0,2.0,0.0,2.0,0.0,2.0,1.5,3188.103618819134,0.0,710.0,0.0,0.0,18088.0,4,1,3,49.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1013.8435987091228,0.032366351638013116,0.056050619123679944,12058.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_0 -778,1,45.0,4,407.0,1,111,2,0,55,2.0,0.0,0.0,272.86138883607146,0.0,0.0,12642.0,0,50,2,11069,201100778,,,,195.0,1.0,1.0,1.0,1.0,2.0,1.3,3444.3355808816173,0.0,200.0,0.0,0.0,12617.0,0,4,3,25.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,272.86138883607146,0.02158372004715009,0.021626487186817107,9705.384615384615,1,1,1_1,1_0_1,1_4_1,1_1_0 -779,2,53.0,2,0.0,5,112,4,77,62,5.0,0.0,83.27557917380639,435.213915193534,0.0,0.0,33765.0,50,71,1,1107,201100779,,,165.0,,1.0,1.0,3.0,1.0,3.0,2.0,2953.1955911124064,0.0,319.0,0.0,0.0,36334.0,5,1,1,99.0,7,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,518.4894943673404,0.015355826873014672,0.014270091219445709,18167.0,5,3,5,5_1,5_0,5_0_0 -780,0,72.0,2,0.0,1,111,1,75,75,4.0,0.0,0.0,559.3658471139465,0.0,0.0,20995.0,71,71,2,11070,201100780,,,215.0,,0.0,1.0,3.0,0.0,2.0,1.5,3184.96154503059,0.0,410.0,0.0,0.0,24641.0,5,5,5,86.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,559.3658471139465,0.026642812436958634,0.02270061471181959,16427.333333333332,4,2,4_0,4_0_0,4_2_0,4_1_0 -781,2,59.0,3,0.0,5,111,2,78,77,2.0,1015.3318458488845,0.0,491.1504999049286,187.69431464751835,0.0,20351.0,70,70,1,11073,201100781,,,98.0,,0.0,2.0,4.0,0.0,2.0,1.5,1340.0525350308621,0.0,360.0,0.0,0.0,17492.0,5,5,1,90.0,6,4.0,3,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1694.1766604013314,0.08324783354141474,0.09685437116403678,11661.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0 -782,2,65.0,3,0.0,5,111,2,77,78,5.0,0.0,0.0,1166.4824372742055,0.0,1689.2488318276653,19683.0,70,71,1,11074,201100782,,,429.0,,0.0,3.0,4.0,0.0,2.0,1.5,2440.7362034367343,0.0,855.0,972.0,0.0,27136.0,5,5,1,88.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2855.7312691018706,0.14508617939856072,0.10523773839555832,18090.666666666668,5,3,5,5_1,5_3,5_0_0 -783,2,59.0,2,0.0,6,111,2,0,52,8.0,0.0,0.0,313.79059716148214,0.0,1268.6745341915594,13990.0,0,50,1,11075,201100783,,,130.0,,1.0,2.0,4.0,0.0,1.0,1.0,1566.5332252208427,0.0,230.0,730.0,0.0,27438.0,0,1,1,84.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1582.4651313530414,0.11311401939621454,0.057674215735587196,27438.0,8,4,8,8_1,8_2,8_0_0 -784,2,75.0,1,0.0,5,112,4,0,72,10.0,0.0,0.0,4432.146672390728,60.82686122836243,2308.564743445435,34140.0,0,50,1,11076,201100784,,,85.0,,0.0,2.0,5.0,0.0,1.0,1.0,3106.1299349197243,2147.0,2430.0,0.0,0.0,68165.0,0,5,1,160.0,10,3.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6801.538277064526,0.19922490559650047,0.0997805072554027,68165.0,10,5,10,10_1,10_1,10_0_0 -785,2,54.0,2,0.0,6,111,2,52,64,10.0,0.0,0.0,905.1572373434933,0.0,1870.9374259874508,34530.0,50,70,1,11077,201100785,,,500.0,,3.0,1.0,5.0,1.0,3.0,2.0,1702.2150327037543,1740.0,0.0,0.0,0.0,78050.0,1,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2776.094663330944,0.08039660189200533,0.035568157121472696,39025.0,10,5,10,10_1,10_4,10_0_0 -786,2,58.0,1,0.0,5,111,2,54,47,9.0,0.0,0.0,975.4794650889554,0.0,1927.3425457786839,56067.0,50,50,1,11079,201100786,,,343.0,,2.0,3.0,5.0,0.0,2.0,1.5,1266.351067501147,0.0,715.0,1109.0,0.0,49174.0,1,1,1,113.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2902.822010867639,0.05177416324874952,0.05903164295903606,32782.666666666664,9,5,9,9_1,9_3,9_0_0 -787,2,33.0,1,0.0,7,111,2,42,38,10.0,0.0,0.0,218.28911106885715,93.84715732375918,0.0,34462.0,20,12,1,1108,201100787,,,310.0,,2.0,0.0,5.0,3.0,5.0,2.4,1824.3625183715344,0.0,160.0,0.0,0.0,133457.0,1,1,2,120.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,312.13626839261633,0.009057404340799035,0.0023388527270402928,55607.083333333336,10,5,10,10_1,10_3,10_0_0 -788,2,30.0,4,0.0,5,111,1,0,85,1.0,0.0,0.0,204.6460416270536,0.0,0.0,10443.0,0,50,8,11080,201100788,,,100.0,300.0,0.0,0.0,2.0,0.0,1.0,1.0,2912.1264084626478,0.0,150.0,0.0,0.0,9234.0,0,7,3,47.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,204.6460416270536,0.019596480094518202,0.022162231062059085,9234.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -789,2,76.0,4,0.0,1,221,2,0,77,2.0,2538.3296146222115,0.0,698.5251554203429,173.79103208103552,0.0,13993.0,0,71,1,11081,201100789,,,,,0.0,4.0,5.0,0.0,1.0,1.0,2889.588834736759,0.0,512.0,0.0,0.0,9760.0,0,5,5,95.0,1,3.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3410.64580212359,0.24373942700804616,0.34945141415200714,9760.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -790,2,26.0,3,0.0,1,111,2,0,34,5.0,0.0,0.0,245.5752499524643,0.0,417.0984769944853,16793.0,0,10,2,11082,201100790,,,,500.0,1.0,0.0,3.0,0.0,1.0,1.0,4157.90861913154,0.0,180.0,240.0,0.0,18925.0,0,1,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,662.6737269469496,0.039461306910435874,0.03501578477923115,18925.0,5,3,5,5_0,5_4,5_1_0 -791,1,27.0,3,75.0,9,221,4,56,63,4.0,0.0,0.0,1923.6727912943038,140.77073598563877,0.0,40992.0,50,50,1,11087,201100791,,,510.0,,2.0,0.0,4.0,2.0,4.0,2.1,1646.6187055018122,0.0,1410.0,0.0,0.0,31300.0,1,1,2,140.0,1,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2064.4435272799424,0.05036210790593146,0.06595666221341669,14904.761904761905,3,2,3_1,3_1_1,3_1_1,3_0_0 -792,1,44.0,4,259.0,99,111,1,0,68,1.0,0.0,0.0,575.7375304441108,0.0,0.0,4068.0,0,50,2,11088,201100792,,,,56.0,1.0,1.0,3.0,0.0,1.0,1.0,1683.9844602745661,0.0,422.0,0.0,0.0,8190.0,0,4,3,50.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,575.7375304441108,0.14152839981418652,0.07029762276484869,8190.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -793,1,50.0,3,464.0,5,111,1,0,52,3.0,0.0,0.0,695.7965415319821,0.0,156.41192887293198,12236.0,0,71,2,1109,201100793,,,,7.0,2.0,2.0,5.0,4.0,5.0,2.8,3011.3392604868072,0.0,510.0,90.0,0.0,37808.0,0,1,3,100.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,852.2084704049141,0.06964763569834212,0.022540427168983128,13502.857142857143,3,2,3_1,3_0_1,3_4_1,3_0_0 -794,2,49.0,2,0.0,8,400,4,0,54,4.0,0.0,0.0,1814.528235759875,97.32297796537989,0.0,22123.0,0,60,1,11090,201100794,,,280.0,,2.0,2.0,6.0,1.0,2.0,1.5,2290.740759634787,0.0,1330.0,0.0,0.0,22399.0,0,1,1,110.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1911.851213725255,0.08641916619469579,0.08535431107305036,14932.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -795,2,66.0,2,0.0,1,120,2,0,75,9.0,3426.7449797399854,0.0,1364.3069441803573,0.0,0.0,66302.0,0,43,1,11093,201100795,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2485.929395899904,0.0,1000.0,0.0,0.0,33419.0,0,5,1,130.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4791.051923920342,0.07226104678471754,0.14336311451331105,33419.0,9,5,9,9_1,9_0,9_1_0 -796,2,28.0,4,0.0,2,111,5,33,65,6.0,0.0,69.396315978172,818.5841665082144,250.25908619669116,0.0,21629.0,50,50,1,11094,201100796,,,,,2.0,0.0,7.0,0.0,2.0,1.5,2753.8806621399617,0.0,600.0,0.0,0.0,30927.0,1,1,2,80.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1138.2395686830776,0.05262562155823559,0.036804073097393135,20618.0,6,3,6,6_1,6_2,6_0_1 -797,1,48.0,4,320.0,5,111,1,52,68,2.0,0.0,0.0,654.8673332065715,0.0,0.0,6924.0,50,71,2,11095,201100797,,,,,2.0,0.0,5.0,3.0,5.0,2.8,2007.7529286810473,0.0,480.0,0.0,0.0,27730.0,1,4,3,90.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,654.8673332065715,0.0945793375514979,0.023615843245819383,9903.57142857143,2,1,2_1,2_0_1,2_3_1,2_0_0 -798,1,59.0,5,262.0,8,111,2,0,56,1.0,0.0,0.0,81.85841665082144,0.0,208.54923849724264,5054.0,0,50,2,11096,201100798,,,,21.0,1.0,0.0,2.0,0.0,1.0,1.0,2560.9679628577665,0.0,60.0,120.0,0.0,8224.0,0,4,3,50.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,290.40765514806407,0.05746095274002059,0.03531221487695332,8224.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -799,2,66.0,2,0.0,7,111,2,75,75,10.0,0.0,360.86084308649436,2121.4972982004556,59.088950907552075,0.0,54147.0,31,41,1,11098,201100799,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2053.6414444615093,0.0,1555.0,0.0,0.0,76374.0,5,5,1,125.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2541.4470921945017,0.046936064642445596,0.0332763387041991,50916.0,10,5,10,10_1,10_2,10_0_0 -800,1,29.0,3,187.0,5,221,1,0,68,2.0,0.0,0.0,409.2920832541072,104.27461924862132,0.0,6090.0,0,71,2,11099,201100800,,,438.0,,1.0,0.0,2.0,0.0,1.0,1.0,8707.716037413975,0.0,300.0,0.0,0.0,11474.0,0,1,3,69.0,1,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,513.5667025027285,0.08432950780011962,0.04475916877311561,11474.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -801,1,61.0,3,176.0,1,111,6,0,54,8.0,0.0,0.0,1185.5827344927304,0.0,0.0,17543.0,0,20,2,111,201100801,,,,224.0,1.0,2.0,2.0,0.0,1.0,1.0,2898.880860698972,0.0,869.0,0.0,0.0,26263.0,0,1,3,45.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1185.5827344927304,0.06758152736092632,0.04514270016725928,26263.0,8,4,8,8_0,8_3,8_1_0 -802,2,68.0,3,0.0,6,111,4,54,43,9.0,0.0,69.396315978172,2455.752499524643,0.0,0.0,34817.0,50,31,1,11101,201100802,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2082.608869639719,0.0,1800.0,0.0,0.0,51364.0,1,1,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2525.148815502815,0.07252631804873524,0.04916184127993955,34242.666666666664,9,5,9,9_1,9_4,9_0_0 -803,2,53.0,3,0.0,3,111,1,0,63,7.0,0.0,0.0,335.6195082683679,0.0,135.55700502320772,10705.0,0,71,2,11102,201100803,,,,251.0,1.0,0.0,3.0,0.0,1.0,1.0,5860.057315772012,0.0,246.0,78.0,0.0,24600.0,0,1,3,38.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,471.1765132915756,0.04401462057838165,0.019153516800470553,24600.0,7,4,7,7_0,7_2,7_0_1 -804,2,65.0,4,0.0,2,111,1,52,54,6.0,0.0,0.0,499.33634157001075,0.0,0.0,42155.0,33,12,2,11103,201100804,,,,406.0,3.0,4.0,4.0,1.0,3.0,2.0,2321.824034714431,0.0,366.0,0.0,0.0,39826.0,1,1,3,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,499.33634157001075,0.011845245915550012,0.012537948615728689,19913.0,6,3,6,6_0,6_4,6_0_1 -805,2,87.0,3,0.0,1,120,2,0,71,1.0,1427.810408224994,0.0,818.5841665082144,104.27461924862132,0.0,8127.0,0,70,1,11106,201100805,,,140.0,,0.0,3.0,5.0,0.0,1.0,1.0,2179.915479962081,0.0,600.0,0.0,0.0,6541.0,0,5,1,90.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2350.6691939818293,0.28924193355258143,0.3593745901210563,6541.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -806,2,82.0,4,0.0,2,400,2,0,71,1.0,951.8736054833294,0.0,1170.5753581067465,0.0,0.0,11772.0,0,70,1,11107,201100806,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2425.6441507002423,0.0,858.0,0.0,0.0,8990.0,0,5,5,103.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2122.448963590076,0.180296378150703,0.2360899848264823,8990.0,1,1,1_0,1_1_0,1_0_0,1_0_1 -807,2,32.0,3,0.0,4,221,2,42,63,4.0,0.0,0.0,600.2950554393572,0.0,1086.193950506472,29510.0,20,43,1,11108,201100807,,,158.0,,2.0,0.0,3.0,1.0,3.0,1.8,2390.18266710534,0.0,440.0,625.0,0.0,28083.0,1,1,3,70.0,1,2.0,4,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1686.4890059458291,0.057149746050350024,0.06005373378719614,15601.666666666666,4,2,4_0,4_1_0,4_1_0,4_0_1 -808,2,29.0,3,0.0,2,120,6,85,62,4.0,1427.810408224994,0.0,1064.1594164606786,1167.8757355845587,0.0,27746.0,50,50,1,1111,201100808,,,220.0,465.0,1.0,0.0,4.0,2.0,4.0,2.1,1935.165056184157,0.0,780.0,0.0,0.0,34009.0,6,1,3,75.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3659.845560270231,0.13190533987854938,0.10761403041166254,16194.761904761905,4,2,4_0,4_1_0,4_0_0,4_0_1 -809,2,64.0,2,0.0,8,111,4,0,52,9.0,0.0,0.0,865.0998092595581,0.0,891.3834058296532,23649.0,0,42,2,11112,201100809,,,,480.0,1.0,2.0,1.0,0.0,1.0,1.0,4053.8398995376574,829.0,318.0,0.0,0.0,29919.0,0,1,3,21.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1756.4832150892112,0.07427304389569163,0.05870795197330162,29919.0,9,5,9,9_0,9_4,9_0_0 -810,1,25.0,5,130.0,1,111,2,0,56,1.0,0.0,0.0,0.0,0.0,0.0,4843.0,0,50,2,11114,201100810,,,,45.0,1.0,0.0,2.0,0.0,1.0,1.0,2501.2319839683028,0.0,0.0,0.0,0.0,2790.0,0,4,4,20.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0.0,0.0,0.0,2790.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -811,2,71.0,2,0.0,1,111,4,0,75,6.0,0.0,0.0,1296.0915969713394,0.0,0.0,17212.0,0,60,1,11116,201100811,,,195.0,,0.0,0.0,3.0,0.0,1.0,1.0,3188.112071697195,0.0,950.0,0.0,0.0,19387.0,0,5,1,60.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1296.0915969713394,0.07530162659605737,0.06685364403834215,19387.0,6,3,6,6_1,6_2,6_1_0 -812,1,34.0,4,237.0,99,111,1,0,85,3.0,0.0,0.0,3956.490138123036,0.0,0.0,13925.0,0,41,2,11117,201100812,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3026.8347850019977,0.0,2900.0,0.0,0.0,12886.0,0,7,3,38.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,3956.490138123036,0.2841285557000385,0.3070378812760388,12886.0,3,2,3_1,3_0_1,3_4_1,3_0_0 -813,2,71.0,3,0.0,4,112,2,77,78,6.0,1903.7472109666587,0.0,545.7227776721429,79.94387475727635,0.0,15710.0,71,50,1,1112,201100813,,,150.0,,0.0,3.0,4.0,0.0,2.0,1.5,2722.891419207093,0.0,400.0,0.0,0.0,30797.0,5,5,1,100.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2529.413863396078,0.16100661129192093,0.08213182658687787,20531.333333333332,6,3,6,6_1,6_0,6_0_1 -814,2,49.0,3,0.0,7,112,2,22,54,7.0,0.0,0.0,682.1534720901786,0.0,1042.7461924862132,23584.0,50,50,1,11120,201100814,,,400.0,,3.0,2.0,4.0,1.0,3.0,2.0,3193.566953723514,0.0,500.0,600.0,0.0,49073.0,1,1,3,86.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1724.8996645763918,0.07313855429852407,0.03514966813882159,24536.5,7,4,7,7_1,7_1,7_0_0 -815,0,44.0,4,0.0,2,111,4,0,64,4.0,0.0,0.0,1964.6019996197144,0.0,0.0,12716.0,0,71,1,11121,201100815,,,,,1.0,2.0,2.0,0.0,1.0,1.0,4308.478412959327,0.0,1440.0,0.0,0.0,15310.0,0,1,5,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1964.6019996197144,0.1544984271484519,0.12832148919789121,15310.0,4,2,4_0,4_1_0,4_4_0,4_0_1 -816,2,49.0,2,0.0,5,111,2,67,67,4.0,0.0,0.0,354.7198054868929,0.0,460.5462350147441,47258.0,71,71,2,11122,201100816,,,,364.0,2.0,1.0,3.0,2.0,4.0,2.1,3086.75718614272,0.0,260.0,265.0,0.0,31660.0,1,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,815.266040501637,0.017251386865750496,0.025750664576804708,15076.190476190475,4,2,4_0,4_0_0,4_4_0,4_0_0 -817,2,54.0,2,0.0,1,111,2,46,38,10.0,0.0,0.0,1391.5930830639643,0.0,4031.9519442800242,50290.0,41,10,1,11124,201100817,,,621.0,,3.0,1.0,6.0,1.0,3.0,2.0,1141.9517034372868,0.0,1020.0,2320.0,0.0,134429.0,1,1,1,220.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5423.545027343988,0.10784539724287111,0.040345052238311585,67214.5,10,5,10,10_1,10_2,10_1_0 -818,2,59.0,3,0.0,1,221,2,67,78,8.0,0.0,0.0,450.22129157951787,0.0,2589.4863780074293,35665.0,71,70,1,11125,201100818,,,272.0,,2.0,0.0,4.0,1.0,3.0,2.0,1685.098675920469,0.0,330.0,1490.0,0.0,55025.0,1,5,1,110.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3039.7076695869473,0.08522943136371645,0.055242302037018576,27512.5,8,4,8,8_1,8_1,8_1_0 -819,2,65.0,3,0.0,4,111,1,0,77,3.0,0.0,0.0,231.93218051066074,0.0,912.4029184254365,17434.0,0,50,2,11126,201100819,465.0,465.0,,274.0,0.0,4.0,3.0,0.0,1.0,1.0,1682.6339868400205,0.0,170.0,525.0,0.0,14543.0,0,5,3,60.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1144.3350989360972,0.06563812658805192,0.07868631636774374,14543.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -820,2,79.0,3,0.0,4,111,1,77,78,3.0,0.0,0.0,455.119699972943,0.0,1809.8764910870168,18137.0,70,50,1,11127,201100820,,,347.0,,0.0,3.0,5.0,0.0,2.0,1.5,3162.579301808261,332.0,207.0,836.0,0.0,19999.0,5,5,1,99.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2264.99619105996,0.12488262618183603,0.11325547232661433,13332.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_1 -821,2,50.0,4,0.0,2,111,2,56,37,8.0,0.0,0.0,1188.3113483810912,0.0,2723.3054727098265,57598.0,31,50,1,1113,201100821,,,591.0,,2.0,2.0,5.0,1.0,3.0,1.8,2743.263111888491,0.0,871.0,1567.0,0.0,49278.0,1,1,2,128.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3911.6168210909177,0.06791237232353411,0.0793785628696562,27376.666666666664,8,4,8,8_1,8_4,8_0_1 -822,1,37.0,4,120.0,4,111,1,85,85,1.0,0.0,0.0,1465.2656580497037,234.61789330939797,0.0,20997.0,42,50,2,11130,201100822,,,,206.0,0.0,0.0,3.0,1.0,3.0,1.8,2506.8852750739347,0.0,1074.0,0.0,0.0,13390.0,6,4,3,65.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1699.8835513591016,0.08095840126489982,0.12695172153540715,7438.888888888889,1,1,1_1,1_0_1,1_2_1,1_0_1 -823,2,47.0,1,0.0,1,112,5,43,62,5.0,0.0,0.0,682.1534720901786,130.34327406077665,0.0,30000.0,71,50,1,11131,201100823,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.3,2694.0853168286826,0.0,500.0,0.0,0.0,42194.0,1,1,1,95.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,812.4967461509552,0.027083224871698508,0.019256215247451185,18345.217391304348,5,3,5,5_1,5_0,5_1_0 -824,2,75.0,2,0.0,4,111,1,0,75,9.0,0.0,0.0,382.0059443705,0.0,0.0,23530.0,0,41,2,11132,201100824,,,120.0,,0.0,2.0,2.0,0.0,1.0,1.0,2960.716275535163,0.0,280.0,0.0,0.0,32230.0,0,5,1,50.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,382.0059443705,0.016234846764577135,0.011852495946959354,32230.0,9,5,9,9_0,9_2,9_0_1 -825,2,86.0,3,0.0,2,111,2,77,72,3.0,0.0,0.0,525.2581735094376,0.0,1477.223772688802,22833.0,50,70,1,11135,201100825,,,311.0,,0.0,4.0,4.0,0.0,2.0,1.5,2037.9400860231522,0.0,385.0,850.0,0.0,21390.0,5,5,1,70.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2002.4819461982397,0.08770121955933254,0.09361766929398035,14260.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -826,2,69.0,3,0.0,5,112,2,77,77,6.0,2021.1449556429359,0.0,586.6519859975537,57.351040586741725,0.0,35698.0,50,50,1,11136,201100826,,,280.0,,0.0,3.0,7.0,0.0,2.0,1.5,1131.8819519789438,0.0,430.0,0.0,0.0,30765.0,5,5,1,120.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2665.1479822272313,0.07465818763592445,0.0866292209402643,20510.0,6,3,6,6_1,6_0,6_0_0 -827,2,60.0,3,0.0,1,111,2,0,78,4.0,2538.3296146222115,0.0,515.708024900175,0.0,521.3730962431066,18701.0,0,70,2,11137,201100827,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2878.0733172196974,0.0,378.0,300.0,0.0,14971.0,0,5,1,50.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3575.410735765493,0.19118821109916545,0.23882243909995945,14971.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -828,2,50.0,5,0.0,7,111,2,0,43,7.0,0.0,41.637789586903196,1500.737638598393,139.0328256648284,0.0,76713.0,0,10,1,11138,201100828,,,320.0,,1.0,1.0,5.0,2.0,3.0,1.8,1809.3485807761733,0.0,1100.0,0.0,0.0,42624.0,0,1,3,93.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1681.4082538501245,0.021918165810881136,0.03944745340301531,23680.0,7,4,7,7_1,7_2,7_0_0 -829,2,37.0,3,0.0,5,111,1,0,53,8.0,0.0,0.0,368.36287492869644,0.0,0.0,14016.0,0,41,2,1114,201100829,,,,315.0,1.0,1.0,4.0,0.0,1.0,1.0,3067.0921257477858,0.0,270.0,0.0,0.0,25661.0,0,1,3,65.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,368.36287492869644,0.026281597811693525,0.01435496960090006,25661.0,8,4,8,8_0,8_3,8_0_0 -830,0,69.0,3,0.0,1,300,5,0,78,4.0,0.0,0.0,818.5841665082144,38.23402705782782,0.0,14039.0,0,70,1,11140,201100830,,,220.0,,0.0,3.0,4.0,0.0,1.0,1.0,1957.254787101047,0.0,600.0,0.0,0.0,16520.0,0,5,5,70.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,856.8181935660422,0.06103128382121534,0.05186550808511151,16520.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -831,2,49.0,2,0.0,7,111,6,85,38,7.0,0.0,0.0,2182.8911106885716,0.0,0.0,29983.0,60,31,1,11141,201100831,,,200.0,,1.0,1.0,4.0,1.0,3.0,2.0,2877.827296044359,0.0,1600.0,0.0,0.0,44464.0,6,1,1,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2182.8911106885716,0.07280429278886608,0.04909344887298875,22232.0,7,4,7,7_1,7_3,7_0_0 -832,1,34.0,4,428.0,6,120,4,55,68,2.0,0.0,0.0,3061.5047827407216,0.0,0.0,30287.0,50,71,1,11142,201100832,,,,,2.0,0.0,5.0,3.0,5.0,2.4,3460.524163019692,0.0,2244.0,0.0,0.0,28362.0,1,1,3,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3061.5047827407216,0.10108313080664053,0.1079438961547395,11817.5,2,1,2_1,2_1_1,2_0_1,2_0_0 -833,2,63.0,2,0.0,1,221,4,75,74,10.0,0.0,0.0,1702.9331914989837,364.9611673701746,1827.9273702176245,78046.0,42,12,1,11143,201100833,,,320.0,,0.0,2.0,6.0,0.0,2.0,1.5,1562.1823025237495,1700.0,600.0,0.0,0.0,76266.0,5,5,1,130.0,1,3.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3895.8217290867824,0.04991699419684266,0.05108202513684712,50844.0,10,5,10,10_1,10_1,10_1_0 -834,0,78.0,3,0.0,1,400,5,0,71,2.0,7.9322800456944105,0.0,0.0,104.27461924862132,0.0,10259.0,0,70,1,11144,201100834,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2607.80885569946,0.0,0.0,0.0,0.0,11820.0,0,5,5,80.0,0,0.0,1,9,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,112.20689929431573,0.010937410984922092,0.009492969483444648,11820.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -835,2,28.0,3,0.0,2,300,6,52,63,6.0,1427.810408224994,0.0,491.1504999049286,0.0,0.0,38813.0,42,50,1,11145,201100835,,,90.0,,2.0,0.0,3.0,0.0,2.0,1.5,1792.8735644353262,0.0,360.0,0.0,0.0,31730.0,1,1,3,70.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1918.9609081299227,0.04944119001700262,0.06047780990009211,21153.333333333332,6,3,6,6_1,6_0,6_0_1 -836,2,80.0,3,0.0,1,112,2,75,75,4.0,3014.2664173638764,0.0,409.2920832541072,86.89551604051776,0.0,25513.0,71,71,1,11148,201100836,,,216.0,,0.0,1.0,6.0,0.0,2.0,1.5,3011.3245242495295,0.0,300.0,0.0,0.0,23841.0,5,5,1,80.0,9,3.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3510.454016658501,0.13759471707202214,0.14724441158753832,15894.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -837,2,46.0,5,0.0,1,111,6,0,67,1.0,1237.435687128328,0.0,818.5841665082144,90.37133668213848,0.0,20953.0,0,60,1,1115,201100837,,,270.0,,2.0,1.0,5.0,1.0,2.0,1.5,3171.833039140813,0.0,600.0,0.0,0.0,11780.0,0,1,2,90.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2146.391190318681,0.10243837113151724,0.18220638287934474,7853.333333333333,1,1,1_0,1_1_0,1_3_0,1_1_0 -838,2,74.0,1,0.0,5,111,6,75,74,10.0,0.0,0.0,4502.212915795179,0.0,0.0,62627.0,41,70,1,11150,201100838,,,314.0,,0.0,1.0,8.0,0.0,2.0,1.5,1380.3112779034989,0.0,3300.0,0.0,0.0,65087.0,5,5,1,240.0,7,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4502.212915795179,0.07188932753916327,0.06917222972014656,43391.333333333336,10,5,10,10_1,10_2,10_0_0 -840,2,34.0,3,0.0,9,211,4,46,46,8.0,0.0,0.0,1428.429370556834,0.0,0.0,52938.0,31,41,1,11153,201100840,,,156.0,,2.0,0.0,6.0,1.0,3.0,1.8,2165.7898810198994,0.0,1047.0,0.0,0.0,50587.0,1,1,2,115.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1428.429370556834,0.026983062649832523,0.028237084044454783,28103.888888888887,8,4,8,8_1,8_1,8_0_0 -841,2,75.0,4,0.0,4,111,1,0,78,6.0,0.0,0.0,518.4366387885358,208.54923849724264,0.0,41082.0,0,70,2,11155,201100841,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2718.271306321586,0.0,380.0,0.0,0.0,21248.0,0,5,1,80.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,726.9858772857784,0.01769597091879116,0.034214320278886406,21248.0,6,3,6,6_0,6_2,6_0_1 -842,1,49.0,2,531.0,1,111,2,85,43,4.0,0.0,0.0,785.5100163153303,0.0,1623.6296053109486,17440.0,43,71,1,11157,201100842,,,,,1.0,1.0,6.0,3.0,6.0,3.3,1775.8891860236447,1510.0,0.0,0.0,0.0,50622.0,6,1,3,110.0,8,7.0,5,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2409.1396216262788,0.13813873977214902,0.04759076333661805,15340.0,4,2,4_1,4_1_1,4_3_1,4_1_0 -843,2,84.0,1,0.0,1,221,4,77,74,5.0,0.0,394.17107475601694,1605.7892733002805,271.11401004641544,0.0,17753.0,60,20,1,11159,201100843,,,596.0,,0.0,2.0,5.0,0.0,2.0,1.5,2353.348429388337,0.0,1177.0,0.0,0.0,28060.0,5,5,1,120.0,1,2.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2271.0743581027127,0.12792622982609772,0.08093636343915583,18706.666666666668,5,3,5,5_1,5_1,5_1_0 -844,2,76.0,3,0.0,3,111,2,0,71,9.0,3028.544521446126,0.0,634.4027290438661,194.64595593075978,0.0,23820.0,0,71,1,1116,201100844,,,,,0.0,1.0,6.0,0.0,1.0,1.0,3212.31888395525,0.0,465.0,0.0,0.0,36028.0,0,5,1,167.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3857.593206420752,0.16194765770028346,0.10707208855392339,36028.0,9,5,9,9_1,9_3,9_0_1 -845,2,34.0,2,0.0,7,111,4,0,33,10.0,0.0,0.0,855.420454001084,0.0,0.0,40467.0,0,10,2,11162,201100845,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2879.6372324852823,0.0,627.0,0.0,0.0,37338.0,0,1,2,53.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,855.420454001084,0.021138716831024883,0.02291018410201628,37338.0,9,5,9,9_0,9_3,9_0_0 -846,2,49.0,1,0.0,5,112,2,0,22,10.0,0.0,0.0,109.14455553442858,834.1969539889706,0.0,135030.0,0,42,1,11163,201100846,,,,,1.0,2.0,5.0,0.0,1.0,1.0,2745.8331409546768,0.0,80.0,0.0,0.0,290365.0,0,1,1,128.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,943.3415095233992,0.006986162404824107,0.003248812734053344,290365.0,10,5,10,10_1,10_0,10_0_0 -847,2,57.0,3,0.0,5,111,4,56,64,7.0,0.0,0.0,764.011888741,0.0,0.0,32423.0,70,70,1,11164,201100847,,,,,2.0,1.0,2.0,0.0,2.0,1.5,1840.0105034685016,0.0,560.0,0.0,0.0,33204.0,1,1,3,36.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,764.011888741,0.02356388639980878,0.023009634042314177,22136.0,7,4,7,7_1,7_3,7_0_0 -848,2,79.0,9,0.0,3,111,1,0,86,4.0,0.0,0.0,409.2920832541072,0.0,0.0,16821.0,0,71,2,11167,201100848,,,,722.0,0.0,4.0,3.0,0.0,1.0,1.0,4652.958675220868,0.0,300.0,0.0,0.0,14664.0,0,5,3,99.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,409.2920832541072,0.0243322087422928,0.027911353195179157,14664.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -849,2,58.0,3,0.0,5,300,2,78,67,6.0,0.0,0.0,1418.8792219475715,173.79103208103552,0.0,20463.0,70,71,1,11168,201100849,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2147.8927258121507,0.0,1040.0,0.0,0.0,31410.0,5,1,1,95.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1592.6702540286071,0.07783170864626922,0.050705834257516944,20940.0,6,3,6,6_1,6_0,6_0_0 -850,2,49.0,2,0.0,9,111,4,0,43,10.0,0.0,0.0,600.2950554393572,0.0,0.0,23721.0,0,20,2,11169,201100850,,,,454.0,1.0,1.0,2.0,0.0,1.0,1.0,2892.2284576272505,0.0,440.0,0.0,0.0,47168.0,0,1,3,45.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,600.2950554393572,0.025306481827889093,0.012726743882279451,47168.0,10,5,10,10_0,10_2,10_0_0 -851,2,69.0,2,0.0,3,111,1,42,74,10.0,0.0,0.0,1262.1435074637245,0.0,1407.5040750675707,48179.0,41,20,2,11174,201100851,,,,,1.0,0.0,4.0,1.0,3.0,2.0,2665.433316896533,1309.0,426.0,0.0,0.0,86270.0,1,5,1,88.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2669.6475825312955,0.05541102103678564,0.030945260027023247,43135.0,10,5,10,10_0,10_4,10_0_1 -852,1,54.0,4,50.0,7,400,5,52,62,4.0,0.0,0.0,845.8703053918215,0.0,0.0,17492.0,50,71,1,11175,201100852,,,,,2.0,1.0,4.0,2.0,4.0,2.3,4872.959342588225,0.0,620.0,0.0,0.0,36710.0,1,1,2,120.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,845.8703053918215,0.0483575523320273,0.023041958741264548,15960.869565217392,4,2,4_1,4_1_1,4_0_1,4_0_0 -853,2,81.0,2,0.0,4,111,1,0,77,4.0,0.0,0.0,35.47198054868929,0.0,0.0,13538.0,0,71,2,11176,201100853,,,55.0,,0.0,2.0,3.0,0.0,1.0,1.0,3533.921008749275,0.0,26.0,0.0,0.0,14800.0,0,5,1,74.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,35.47198054868929,0.0026201787966235253,0.002396755442479006,14800.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -854,2,74.0,3,0.0,5,111,2,0,77,4.0,0.0,0.0,573.00891655575,3997.193737863817,0.0,10082.0,0,60,1,11177,201100854,,,150.0,,0.0,1.0,3.0,0.0,1.0,1.0,3272.2429475404074,0.0,420.0,0.0,0.0,16545.0,0,5,5,60.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4570.202654419567,0.4533031793711136,0.2762286282514093,16545.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -855,2,57.0,3,0.0,6,112,6,55,75,8.0,0.0,0.0,216.9248041246768,128.6053637399663,0.0,30203.0,50,50,1,11178,201100855,,,338.0,,1.0,0.0,5.0,0.0,2.0,1.5,1345.8392753044361,0.0,159.0,0.0,0.0,38902.0,1,5,1,98.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,345.5301678646431,0.011440259837256004,0.00888206693395309,25934.666666666668,8,4,8,8_1,8_1,8_0_0 -856,2,43.0,2,0.0,8,112,2,52,47,8.0,0.0,0.0,1510.2877872076556,52.13730962431066,0.0,32597.0,50,42,1,11179,201100856,,,423.0,,2.0,1.0,6.0,1.0,3.0,1.8,3878.838006422582,0.0,1107.0,0.0,0.0,50844.0,1,1,2,120.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1562.4250968319661,0.04793156108942437,0.030729783196286015,28246.666666666664,8,4,8,8_1,8_0,8_0_0 -857,1,78.0,3,44.0,1,120,5,71,71,2.0,0.0,0.0,422.93515269591074,156.41192887293198,0.0,12101.0,71,71,1,1118,201100857,,,254.0,,0.0,0.0,4.0,0.0,2.0,1.5,2528.586722872758,0.0,310.0,0.0,0.0,16200.0,5,5,3,65.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,579.3470815688427,0.047875967405077484,0.035762165528940904,10800.0,2,1,2_1,2_1_1,2_0_1,2_1_0 -858,2,42.0,3,0.0,2,111,2,34,34,8.0,0.0,0.0,1776.3276413228252,0.0,1916.915083853822,49917.0,30,20,1,11182,201100858,,,487.0,,2.0,0.0,6.0,3.0,5.0,2.4,1415.108971520642,0.0,1302.0,1103.0,0.0,63400.0,1,1,1,90.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3693.242725176647,0.0739876740424434,0.058253039829284654,26416.666666666668,8,4,8,8_1,8_3,8_0_1 -859,2,70.0,3,0.0,3,112,5,71,71,2.0,0.0,0.0,1034.1446636887108,486.61488982689946,0.0,15676.0,70,50,1,11183,201100859,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1636.8374925941896,0.0,758.0,0.0,0.0,13960.0,5,5,1,100.0,8,0.0,3,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1520.7595535156102,0.09701196437328465,0.10893693076759385,9306.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_1 -860,2,50.0,3,0.0,2,211,2,52,63,6.0,0.0,0.0,1268.8054580877322,0.0,1717.055396960631,40877.0,50,50,1,11184,201100860,,,703.0,,2.0,0.0,3.0,2.0,4.0,2.5,851.6934498021942,0.0,930.0,988.0,0.0,47700.0,1,1,2,75.0,3,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2985.860855048363,0.07304500954200072,0.06259666362784828,19080.0,5,3,5,5_1,5_2,5_0_1 -861,2,32.0,2,0.0,9,111,6,0,37,8.0,0.0,0.0,1211.5045664321572,0.0,0.0,22199.0,0,20,8,11185,201100861,,,,684.0,1.0,0.0,2.0,0.0,1.0,1.0,3816.133349586524,0.0,888.0,0.0,0.0,28842.0,0,1,3,53.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1211.5045664321572,0.054574736088659724,0.042004873671456805,28842.0,8,4,8,8_0,8_3,8_0_0 -862,2,48.0,4,0.0,7,112,2,52,56,3.0,1110.5192063972174,0.0,1309.734666413143,0.0,0.0,32187.0,50,60,1,11186,201100862,,,,,2.0,0.0,6.0,2.0,4.0,2.3,1798.655074715425,0.0,960.0,0.0,0.0,30829.0,1,1,1,180.0,8,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2420.2538728103605,0.07519352138473173,0.07850575344027898,13403.913043478262,3,2,3_0,3_1_0,3_0_0,3_0_0 -863,0,27.0,3,0.0,6,112,4,54,64,6.0,0.0,0.0,1841.8143746434823,0.0,0.0,68934.0,43,71,1,11187,201100863,,,550.0,,2.0,0.0,5.0,1.0,3.0,1.8,3539.597885368317,0.0,1350.0,0.0,0.0,35399.0,1,1,5,90.0,10,3.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1841.8143746434823,0.02671851879542,0.052030124428472053,19666.11111111111,6,3,6,6_1,6_1,6_0_0 -864,1,57.0,3,180.0,5,221,2,0,68,1.0,0.0,0.0,491.1504999049286,0.0,260.6865481215533,8315.0,0,71,2,11189,201100864,,,,125.0,1.0,2.0,2.0,0.0,1.0,1.0,4061.8357580924912,0.0,360.0,150.0,0.0,7540.0,0,4,3,35.0,1,2.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,751.8370480264819,0.09041936837359975,0.09971313634303473,7540.0,1,1,1_1,1_0_1,1_1_1,1_0_0 -865,2,44.0,3,0.0,4,300,4,56,63,2.0,0.0,0.0,2455.752499524643,0.0,0.0,31554.0,71,50,1,1119,201100865,,,,,2.0,1.0,4.0,2.0,4.0,2.3,2882.3073247013763,0.0,1800.0,0.0,0.0,26390.0,1,1,2,72.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2455.752499524643,0.07782697913179448,0.09305617656402589,11473.913043478262,2,1,2_0,2_1_0,2_0_0,2_0_1 -866,2,29.0,2,0.0,1,111,2,43,34,9.0,0.0,0.0,1009.5871386934643,0.0,0.0,34063.0,30,10,2,11191,201100866,,,254.0,685.0,2.0,0.0,2.0,0.0,2.0,1.5,3464.7552860063556,0.0,740.0,0.0,0.0,47318.0,1,1,3,67.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1009.5871386934643,0.0296388203826282,0.02133621747946795,31545.333333333332,9,5,9,9_0,9_3,9_1_0 -867,2,25.0,2,0.0,9,400,2,0,42,10.0,0.0,0.0,0.0,0.0,0.0,14207.0,0,20,2,11192,201100867,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5331.456180945429,0.0,0.0,0.0,0.0,45753.0,0,1,3,43.0,0,0.0,1,7,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,45753.0,10,5,10,10_0,10_0,10_0_0 -868,2,52.0,3,0.0,1,112,2,21,21,5.0,3569.526020562485,0.0,1091.4455553442858,434.4775802025888,0.0,41533.0,50,50,8,11193,201100868,,,900.0,,3.0,0.0,5.0,2.0,4.0,2.5,1516.3113154463042,0.0,800.0,0.0,0.0,43743.0,1,1,1,150.0,8,1.0,4,3,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,5095.44915610936,0.12268435114509811,0.11648604705002766,17497.2,5,3,5,5_0,5_1,5_1_0 -869,2,30.0,2,0.0,2,111,2,43,37,8.0,2776.298015993044,0.0,627.5811943229643,0.0,0.0,63249.0,33,20,1,11195,201100869,,,107.0,,2.0,0.0,3.0,2.0,4.0,2.1,2410.082835812549,0.0,460.0,0.0,0.0,58354.0,1,1,3,70.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3403.879210316008,0.053817122963462,0.05833154899948603,27787.619047619046,8,4,8,8_1,8_4,8_0_1 -870,1,29.0,4,260.0,1,111,2,0,85,2.0,0.0,0.0,238.75371523156252,0.0,304.13430614181215,6467.0,0,71,2,11196,201100870,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3756.0911355983685,0.0,175.0,175.0,0.0,11870.0,0,7,3,54.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,542.8880213733746,0.08394742869543445,0.04573614333389845,11870.0,2,1,2_1,2_0_1,2_3_1,2_1_0 -871,2,76.0,4,0.0,6,111,1,78,78,3.0,0.0,0.0,1391.5930830639643,0.0,0.0,7508.0,71,71,2,112,201100871,,,,,0.0,0.0,2.0,0.0,2.0,1.5,3115.8559626528327,0.0,1020.0,0.0,0.0,21280.0,5,5,3,30.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1391.5930830639643,0.185348039832707,0.06539441179811863,14186.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_0 -872,2,37.0,3,0.0,1,300,5,22,54,2.0,0.0,69.396315978172,1910.0297218525002,0.0,0.0,14587.0,43,31,1,11201,201100872,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2374.00073104376,0.0,1400.0,0.0,0.0,18560.0,1,1,2,100.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1979.4260378306722,0.1356979528231077,0.10665010979691121,10311.111111111111,2,1,2_0,2_1_0,2_0_0,2_1_0 -873,2,63.0,3,0.0,2,300,2,0,75,4.0,1554.7268889561046,0.0,450.22129157951787,97.32297796537989,0.0,23165.0,0,50,1,11202,201100873,,,330.0,,0.0,2.0,5.0,0.0,1.0,1.0,1944.015990881671,0.0,330.0,0.0,0.0,15324.0,0,5,1,90.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2102.2711585010024,0.09075204655734956,0.13718814660016984,15324.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -874,2,69.0,3,0.0,4,111,2,78,78,4.0,0.0,0.0,722.5651739483404,0.0,1493.5241866072236,17850.0,70,70,1,11203,201100874,,,274.0,,0.0,7.0,5.0,0.0,2.0,1.5,1749.0287656946698,1389.0,0.0,0.0,0.0,22757.0,5,5,1,110.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2216.089360555564,0.12415066445689434,0.09738055809445725,15171.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_1 -875,2,53.0,3,0.0,1,120,6,0,69,3.0,1285.0293674024945,0.0,540.2655498954215,100.7987986070006,0.0,9859.0,0,71,1,11205,201100875,,,74.0,,1.0,0.0,2.0,0.0,1.0,1.0,3762.9607294820607,0.0,396.0,0.0,0.0,14108.0,0,1,3,30.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1926.0937159049167,0.1953640040475623,0.13652493024559942,14108.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -876,2,64.0,3,0.0,1,300,4,0,75,5.0,0.0,0.0,1637.1683330164287,93.84715732375918,0.0,16069.0,0,71,1,11206,201100876,,,,,0.0,4.0,4.0,0.0,1.0,1.0,3064.5004980331178,0.0,1200.0,0.0,0.0,18034.0,0,5,1,55.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1731.0154903401879,0.10772390878960657,0.09598621993679649,18034.0,5,3,5,5_1,5_0,5_1_0 -877,1,37.0,3,200.0,2,111,1,54,48,5.0,0.0,0.0,477.50743046312505,0.0,608.2686122836243,31168.0,50,42,2,11207,201100877,,,,205.0,2.0,0.0,3.0,2.0,4.0,2.1,2878.8032346042,0.0,350.0,350.0,0.0,37170.0,1,1,3,58.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1085.7760427467492,0.03483624367128944,0.029211085357727987,17700.0,5,3,5,5_0,5_4,5_0_1 -878,2,67.0,1,0.0,7,111,4,31,74,10.0,0.0,555.170527825376,4365.782221377143,0.0,0.0,111167.0,20,12,1,11208,201100878,,,350.0,,1.0,2.0,6.0,0.0,2.0,1.5,1280.7707993623485,0.0,3200.0,0.0,0.0,159408.0,1,5,1,195.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4920.952749202519,0.04426630878950155,0.030870174327527596,106272.0,10,5,10,10_1,10_4,10_0_0 -879,2,50.0,2,0.0,5,111,2,85,42,6.0,0.0,0.0,1091.4455553442858,0.0,2085.4923849724264,42075.0,10,50,1,11209,201100879,,,500.0,,1.0,0.0,5.0,2.0,4.0,2.3,1837.2296321407384,0.0,800.0,1200.0,0.0,47144.0,7,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3176.9379403167122,0.07550654641275609,0.06738795902589327,20497.391304347828,6,3,6,6_1,6_4,6_0_0 -880,2,48.0,2,0.0,6,111,1,22,34,4.0,0.0,0.0,409.2920832541072,0.0,0.0,43807.0,41,20,2,11210,201100880,,,,,2.0,0.0,4.0,2.0,4.0,2.3,8602.254447259797,0.0,300.0,0.0,0.0,36763.0,1,1,1,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,409.2920832541072,0.009343074925334014,0.011133261247833615,15983.913043478262,4,2,4_0,4_0_0,4_4_0,4_0_0 -881,2,64.0,2,0.0,1,111,2,34,74,9.0,0.0,0.0,1023.230208135268,0.0,0.0,104910.0,10,10,2,11211,201100881,,,,,1.0,5.0,3.0,0.0,2.0,1.5,2128.1760635487744,0.0,750.0,0.0,0.0,46181.0,1,5,2,60.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1023.230208135268,0.00975340966671688,0.022156952169404474,30787.333333333332,9,5,9,9_0,9_4,9_1_0 -882,2,30.0,2,0.0,5,111,2,54,68,8.0,0.0,0.0,545.7227776721429,0.0,1216.5372245672486,27512.0,42,50,2,11212,201100882,,,,436.0,2.0,0.0,3.0,1.0,3.0,1.8,2598.906776691298,0.0,400.0,700.0,0.0,47493.0,4,1,3,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1762.2600022393915,0.06405423096246698,0.037105678778754585,26385.0,8,4,8,8_0,8_3,8_0_0 -883,2,80.0,3,0.0,2,112,2,77,72,5.0,0.0,0.0,1059.5377838083668,0.0,4147.32752032373,31346.0,70,50,1,11214,201100883,,,250.0,,0.0,2.0,4.0,0.0,2.0,1.5,1262.3462825849913,673.0,520.0,1970.0,0.0,27399.0,5,5,1,120.0,10,1.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5206.865304132097,0.1661094016503572,0.1900385161550457,18266.0,5,3,5,5_1,5_1,5_0_1 -884,2,45.0,4,0.0,1,120,6,67,64,4.0,3648.848821019429,277.585263912688,1023.230208135268,0.0,0.0,32751.0,50,50,1,11216,201100884,,,,,3.0,0.0,5.0,3.0,5.0,3.0,1823.7639805712329,0.0,750.0,0.0,0.0,46580.0,4,1,2,140.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4949.664293067385,0.1511301729128083,0.10626157778160981,15526.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -885,1,29.0,3,240.0,6,111,2,0,54,1.0,0.0,0.0,791.2980276246072,0.0,0.0,8035.0,0,20,2,11217,201100885,,,,60.0,1.0,0.0,3.0,0.0,1.0,1.0,2082.6205818500857,0.0,580.0,0.0,0.0,5670.0,0,4,3,50.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,791.2980276246072,0.09848139733971466,0.13955873503079494,5670.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -886,2,39.0,3,0.0,6,111,5,0,67,8.0,0.0,20.818894793451598,300.1475277196786,250.25908619669116,0.0,13045.0,0,50,1,11218,201100886,,,134.0,,1.0,0.0,4.0,0.0,1.0,1.0,2503.677682908654,0.0,220.0,0.0,0.0,24862.0,0,1,2,88.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,571.2255087098213,0.04378884696893992,0.02297584702396514,24862.0,7,4,7,7_1,7_3,7_0_0 -887,2,41.0,4,0.0,1,400,6,85,67,2.0,237.96840137083234,0.0,804.9410970664107,0.0,0.0,12859.0,50,50,1,1122,201100887,,,,,1.0,0.0,3.0,0.0,2.0,1.5,1915.904277062569,0.0,590.0,0.0,0.0,16190.0,7,1,3,49.0,0,0.0,3,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1042.9094984372432,0.08110346826636933,0.06441689304738994,10793.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -888,2,44.0,3,0.0,9,111,4,85,38,3.0,0.0,0.0,2742.256957802518,0.0,0.0,77224.0,41,31,1,11220,201100888,,,405.0,,1.0,0.0,6.0,2.0,4.0,2.3,2667.0466732016143,0.0,2010.0,0.0,0.0,31661.0,6,1,2,119.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2742.256957802518,0.03551042367401997,0.08661308732517982,13765.652173913044,3,2,3_0,3_1_0,3_3_0,3_0_0 -889,1,36.0,4,203.0,7,111,2,63,47,3.0,0.0,0.0,573.00891655575,0.0,1532.8369029547332,28516.0,41,50,2,11221,201100889,,,,276.0,2.0,0.0,3.0,2.0,4.0,2.1,3669.193143990143,0.0,420.0,882.0,0.0,30663.0,1,1,3,75.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2105.845819510483,0.07384786854784973,0.06867709681083009,14601.42857142857,3,2,3_1,3_0_1,3_3_1,3_0_0 -890,2,82.0,3,0.0,1,112,4,72,72,6.0,0.0,0.0,3762.7585520494254,312.82385774586396,0.0,29485.0,71,60,1,11223,201100890,,,200.0,,0.0,2.0,5.0,0.0,2.0,1.5,5908.603179956206,0.0,2758.0,0.0,0.0,32090.0,5,5,1,142.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4075.582409795289,0.13822562013889397,0.1270047494482795,21393.333333333332,6,3,6,6_1,6_0,6_1_0 -891,2,61.0,3,0.0,8,111,4,77,75,5.0,0.0,0.0,92.77287220426429,125.12954309834558,0.0,15946.0,70,20,2,11224,201100891,,,,628.0,0.0,2.0,3.0,0.0,2.0,1.5,2211.802099630097,0.0,68.0,0.0,0.0,27346.0,5,5,3,67.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,217.90241530260988,0.01366502040026401,0.007968346935661884,18230.666666666668,5,3,5,5_0,5_3,5_0_0 -892,1,71.0,3,97.0,1,111,1,0,78,2.0,0.0,0.0,238.75371523156252,0.0,0.0,4876.0,0,50,3,11225,201100892,,,,50.0,0.0,4.0,1.0,0.0,1.0,1.0,3088.168118592477,0.0,175.0,0.0,0.0,9593.0,0,5,3,25.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,238.75371523156252,0.04896507695479133,0.024888326407960234,9593.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -893,1,45.0,2,161.0,2,111,2,0,68,3.0,0.0,0.0,0.0,0.0,1564.1192887293198,8690.0,0,50,2,11226,201100893,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2154.9970393557883,0.0,0.0,900.0,0.0,13115.0,0,1,3,40.0,7,5.0,1,2,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1564.1192887293198,0.1799907121667802,0.11926185960574302,13115.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -895,2,49.0,2,0.0,9,221,6,47,47,9.0,0.0,0.0,790.2989299230182,0.0,1134.3902209291728,81067.0,42,42,1,1123,201100895,,,190.0,,2.0,3.0,5.0,2.0,4.0,2.5,4480.480161010403,1055.0,177.0,0.0,0.0,78376.0,1,1,2,120.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1924.689150852191,0.023741956046877163,0.02455712400291149,31350.4,9,5,9,9_1,9_1,9_0_0 -896,0,25.0,3,0.0,6,300,6,0,42,2.0,0.0,0.0,0.0,0.0,0.0,17628.0,0,31,1,11230,201100896,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3086.436882497447,0.0,0.0,0.0,0.0,10557.0,0,4,5,35.0,0,0.0,1,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,10557.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -897,2,48.0,3,0.0,3,112,1,0,67,7.0,0.0,0.0,354.7198054868929,0.0,104.27461924862132,23534.0,0,50,8,11231,201100897,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2909.537254073066,0.0,260.0,60.0,0.0,22182.0,0,1,2,60.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,458.9944247355142,0.01950345987658342,0.020692201998715815,22182.0,7,4,7,7_0,7_2,7_0_1 -898,2,38.0,2,0.0,8,111,5,52,62,4.0,0.0,555.170527825376,1637.1683330164287,43.44775802025888,0.0,30466.0,30,50,1,11234,201100898,,,330.0,,2.0,0.0,5.0,2.0,4.0,2.1,4819.648281779074,0.0,1200.0,0.0,0.0,34006.0,1,1,2,110.0,4,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2235.7866188620633,0.07338628697111742,0.06574682758519271,16193.333333333332,4,2,4_0,4_1_0,4_2_0,4_0_0 -899,2,56.0,3,0.0,8,111,2,56,52,8.0,0.0,0.0,736.7257498573929,0.0,1129.641708526731,30683.0,71,70,1,11235,201100899,,,,356.0,2.0,1.0,4.0,0.0,2.0,1.5,1934.3036441546967,0.0,540.0,650.0,0.0,39530.0,1,1,3,88.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1866.367458384124,0.06082741121742085,0.04721395037652729,26353.333333333332,8,4,8,8_1,8_2,8_0_0 -900,2,57.0,2,0.0,6,111,2,37,43,10.0,0.0,0.0,1173.3039719951073,0.0,2346.1789330939796,88821.0,42,60,1,11237,201100900,,,460.0,,2.0,3.0,6.0,0.0,2.0,1.5,2610.550782811515,0.0,860.0,1350.0,0.0,76174.0,1,1,1,136.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3519.4829050890867,0.03962444585277228,0.04620320457228302,50782.666666666664,10,5,10,10_1,10_4,10_0_0 -901,2,52.0,3,0.0,5,111,1,35,34,4.0,0.0,0.0,1036.8732775770716,0.0,0.0,29050.0,20,20,2,11238,201100901,,,,552.0,2.0,0.0,3.0,1.0,3.0,2.0,2417.0832788255384,0.0,760.0,0.0,0.0,31430.0,1,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1036.8732775770716,0.03569271179267028,0.03298992292641017,15715.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -902,2,66.0,3,0.0,2,111,1,78,78,7.0,0.0,0.0,409.2920832541072,0.0,868.9551604051776,26519.0,70,50,2,11239,201100902,,,,250.0,0.0,3.0,3.0,0.0,2.0,1.5,2274.172356945734,0.0,300.0,500.0,0.0,32376.0,5,5,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1278.2472436592848,0.04820118570305384,0.03948132084443059,21584.0,6,3,6,6_0,6_4,6_0_1 -903,2,85.0,3,0.0,4,221,2,0,77,6.0,3807.4944219333174,0.0,739.3076043063227,0.0,259.1355860132044,16119.0,0,50,1,1124,201100903,,,205.0,,0.0,0.0,3.0,0.0,1.0,1.0,2253.6203004312115,241.0,450.0,0.0,0.0,21027.0,0,5,1,70.0,1,3.0,1,9,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4805.937612252845,0.29815358348860627,0.22856030875792288,21027.0,6,3,6,6_1,6_1,6_0_1 -904,2,37.0,2,0.0,9,112,4,54,37,9.0,0.0,0.0,2373.8940828738214,0.0,0.0,77380.0,30,30,1,11241,201100904,,,,,2.0,0.0,6.0,3.0,5.0,2.4,1914.2087216368777,0.0,1740.0,0.0,0.0,70714.0,1,1,2,140.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2373.8940828738214,0.030678393420442252,0.03357035499156916,29464.166666666668,9,5,9,9_1,9_0,9_0_0 -905,2,89.0,2,0.0,2,111,1,0,86,6.0,0.0,0.0,491.1504999049286,0.0,1477.223772688802,9263.0,0,71,1,11245,201100905,,,65.0,,0.0,0.0,3.0,0.0,1.0,1.0,5537.819973401685,0.0,360.0,850.0,0.0,20680.0,0,5,1,80.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1968.3742725937307,0.21249857201702804,0.09518250834592508,20680.0,6,3,6,6_1,6_3,6_0_1 -907,2,67.0,2,0.0,9,400,4,86,86,2.0,0.0,333.10231669522557,1287.9057553062573,208.54923849724264,0.0,35191.0,60,50,1,11247,201100907,,,364.0,,0.0,5.0,5.0,0.0,2.0,1.5,1236.554534190403,0.0,944.0,0.0,0.0,14110.0,5,5,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1829.5573104987257,0.05198935268957192,0.12966387742726618,9406.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_0 -908,2,51.0,3,0.0,9,120,4,52,62,7.0,0.0,0.0,2952.439074660191,0.0,180.64223423327113,37204.0,50,71,1,11248,201100908,,,,,4.0,1.0,6.0,2.0,4.0,2.5,2579.7129357247422,168.0,2100.0,0.0,0.0,60918.0,1,1,2,116.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3133.0813088934624,0.08421356060889856,0.051431125593313344,24367.2,7,4,7,7_1,7_0,7_0_0 -909,1,47.0,4,25.0,4,111,6,0,43,6.0,0.0,0.0,477.50743046312505,0.0,868.9551604051776,31318.0,0,33,1,11249,201100909,,,351.0,,1.0,1.0,4.0,1.0,2.0,1.3,2133.0137020162856,0.0,350.0,500.0,0.0,26947.0,0,1,2,77.0,5,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1346.4625908683026,0.04299324959666335,0.049967068351516035,20728.46153846154,6,3,6,6_1,6_2,6_0_1 -910,0,63.0,2,0.0,1,111,4,77,78,7.0,0.0,277.585263912688,81.85841665082144,194.64595593075978,0.0,15705.0,71,50,1,1125,201100910,,,160.0,,0.0,0.0,3.0,0.0,3.0,2.0,1529.6548180377176,0.0,60.0,0.0,0.0,44767.0,5,5,5,70.0,8,7.0,5,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,554.0896364942691,0.035281097516349516,0.012377189369273553,22383.5,7,4,7,7_1,7_3,7_1_0 -911,2,59.0,4,0.0,5,111,4,0,56,3.0,0.0,0.0,1227.8762497623215,0.0,0.0,11725.0,0,71,2,11253,201100911,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2987.767166166413,0.0,900.0,0.0,0.0,13050.0,0,1,2,26.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1227.8762497623215,0.10472292108847092,0.09409013408140394,13050.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -913,2,50.0,2,0.0,1,120,2,78,56,3.0,0.0,0.0,2506.231856459316,48.661488982689946,0.0,32601.0,50,60,1,11256,201100913,,,222.0,,1.0,2.0,6.0,0.0,5.0,2.6,1803.7902939405471,0.0,1837.0,0.0,0.0,33385.0,5,1,1,191.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2554.893345442006,0.07836855757314212,0.07652818168165362,12840.384615384615,3,2,3_0,3_1_0,3_0_0,3_1_0 -914,1,44.0,3,365.0,1,111,2,0,63,2.0,0.0,0.0,1040.4106176361993,0.0,2150.502788491323,15941.0,0,60,1,11258,201100914,,,560.0,,1.0,1.0,5.0,3.0,4.0,2.3,1938.2537228885963,2000.0,0.0,0.0,0.0,23641.0,0,1,3,84.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,3190.913406127522,0.20017021555282116,0.13497370695518474,10278.695652173914,2,1,2_1,2_1_1,2_2_1,2_1_0 -915,1,77.0,3,24.0,5,211,2,0,77,4.0,0.0,0.0,442.1745124953847,0.0,913.9636851088122,19260.0,0,70,2,11259,201100915,,,,333.0,0.0,2.0,2.0,0.0,1.0,1.0,3158.1884819239476,850.0,0.0,0.0,0.0,14669.0,0,5,3,55.0,1,2.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1356.1381976041969,0.07041215979253358,0.09244926018162089,14669.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -916,2,47.0,3,0.0,1,400,2,85,31,2.0,2379.684013708323,416.377895869032,120.05901108787144,130.34327406077665,0.0,175452.0,20,10,1,11261,201100916,,,,,1.0,1.0,7.0,2.0,4.0,2.1,1292.7674399374912,0.0,88.0,0.0,0.0,22371.0,6,1,1,176.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3046.4641947260034,0.017363519337060866,0.1361791692247107,10652.857142857143,2,1,2_0,2_1_0,2_0_0,2_1_0 -917,2,54.0,2,0.0,7,221,2,54,65,10.0,0.0,0.0,204.6460416270536,0.0,0.0,40917.0,41,50,1,11262,201100917,,,359.0,,2.0,2.0,5.0,0.0,2.0,1.5,2785.290979899701,0.0,150.0,0.0,0.0,77684.0,1,1,1,130.0,1,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,204.6460416270536,0.005001491840238864,0.0026343396533012407,51789.333333333336,10,5,10,10_1,10_1,10_0_0 -918,1,18.0,3,170.0,2,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,14182.0,0,41,2,11264,201100918,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3576.193807073985,0.0,0.0,0.0,0.0,3134.0,0,3,3,25.0,9,7.0,1,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0.0,0.0,0.0,3134.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -919,2,63.0,2,0.0,5,300,2,0,78,6.0,475.9368027416647,499.65347504283835,245.5752499524643,46.92357866187959,0.0,18701.0,0,71,1,11265,201100919,,,107.0,,0.0,3.0,7.0,0.0,1.0,1.0,2952.5229780952554,0.0,180.0,0.0,0.0,20108.0,0,5,1,150.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1268.089106398847,0.06780862554937421,0.06306391020483623,20108.0,6,3,6,6_1,6_0,6_0_0 -920,2,21.0,4,0.0,3,111,2,0,55,3.0,0.0,0.0,728.5399081923108,0.0,684.73666639928,29275.0,0,50,2,11266,201100920,,,,237.0,2.0,1.0,3.0,2.0,3.0,1.8,3190.5234191285726,0.0,534.0,394.0,0.0,22260.0,0,1,3,55.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1413.2765745915908,0.048275886407910876,0.06348951368335988,12366.666666666666,2,1,2_0,2_0_0,2_3_0,2_0_1 -921,2,45.0,3,0.0,6,111,2,63,37,8.0,0.0,0.0,890.8924345497733,0.0,882.8584429716605,45729.0,50,31,1,11267,201100921,,,492.0,,2.0,0.0,4.0,2.0,4.0,2.3,1202.6549378389464,0.0,653.0,508.0,0.0,61126.0,1,1,1,88.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1773.7508775214337,0.03878831545674372,0.02901794453295543,26576.521739130436,8,4,8,8_1,8_3,8_0_0 -922,0,52.0,3,0.0,1,300,5,0,22,1.0,0.0,152.6718951519784,0.0,93.84715732375918,0.0,10876.0,0,50,1,1127,201100922,,,,,1.0,1.0,6.0,0.0,1.0,1.0,2603.73014933291,0.0,0.0,0.0,0.0,5010.0,0,1,5,100.0,0,0.0,1,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,246.51905247573757,0.02266633435782802,0.049205399695756,5010.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -923,2,28.0,3,0.0,5,111,2,0,85,1.0,0.0,0.0,687.6106998669001,0.0,651.7163703038832,23409.0,0,42,2,11271,201100923,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3248.0386418176345,0.0,504.0,375.0,0.0,5220.0,0,7,2,49.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1339.3270701707834,0.057214194120670823,0.25657606708252556,5220.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -924,1,27.0,3,293.0,6,120,4,63,55,3.0,0.0,180.43042154324718,1227.8762497623215,0.0,0.0,21779.0,71,50,1,11274,201100924,,,,,2.0,0.0,4.0,3.0,5.0,2.4,3505.445175989053,0.0,900.0,0.0,0.0,33583.0,4,1,3,85.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1408.3066713055687,0.06466351399538861,0.04193510619377568,13992.916666666668,3,2,3_1,3_1_1,3_0_1,3_0_0 -925,2,58.0,2,0.0,5,300,5,42,71,6.0,0.0,166.55115834761278,1637.1683330164287,0.0,0.0,65715.0,20,44,1,11275,201100925,,,,,1.0,2.0,7.0,0.0,2.0,1.5,1381.371394365546,0.0,1200.0,0.0,0.0,30225.0,1,5,1,130.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1803.7194913640415,0.027447606959811938,0.05967640997068789,20150.0,6,3,6,6_1,6_0,6_0_0 -926,2,45.0,3,0.0,1,112,2,52,37,8.0,0.0,1110.341055650752,955.0148609262501,0.0,0.0,28998.0,20,31,1,11276,201100926,,,320.0,,2.0,0.0,4.0,2.0,4.0,2.1,2212.2094010929004,0.0,700.0,0.0,0.0,55265.0,1,1,2,100.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2065.355916577002,0.07122408154276164,0.03737186133315846,26316.666666666664,8,4,8,8_1,8_0,8_1_0 -927,2,55.0,2,0.0,1,400,5,77,21,1.0,396.6140022847205,971.5484236944079,1364.3069441803573,93.84715732375918,0.0,19739.0,71,41,1,11277,201100927,,,465.0,,1.0,4.0,3.0,0.0,2.0,1.5,3829.4189708625017,0.0,1000.0,0.0,0.0,6810.0,6,1,1,102.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2826.316527483245,0.14318438256665714,0.41502445337492583,4540.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -928,2,33.0,4,0.0,3,111,1,0,34,1.0,0.0,0.0,545.7227776721429,0.0,347.58206416207105,41657.0,0,20,8,11278,201100928,,,,,1.0,0.0,3.0,0.0,2.0,1.5,3510.015538417125,0.0,400.0,200.0,0.0,8331.0,0,6,1,55.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,893.3048418342139,0.021444291279598002,0.10722660446935708,5554.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -929,2,91.0,3,0.0,1,111,2,0,72,1.0,0.0,0.0,141.88792219475715,0.0,2704.1884591809126,11823.0,0,70,1,11279,201100929,,,198.0,,0.0,0.0,4.0,0.0,1.0,1.0,3250.183065194666,0.0,104.0,1556.0,0.0,5920.0,0,5,1,96.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2846.07638137567,0.24072370645146493,0.48075614550264695,5920.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -930,2,60.0,3,0.0,7,111,2,0,75,5.0,0.0,0.0,472.0502026864036,0.0,809.8662094976255,17811.0,0,50,2,1128,201100930,,,,380.0,0.0,1.0,3.0,0.0,1.0,1.0,2002.4367650838574,0.0,346.0,466.0,0.0,17940.0,0,5,3,70.0,6,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1281.916412184029,0.07197329808455612,0.07145576433578757,17940.0,5,3,5,5_0,5_2,5_0_0 -931,1,34.0,3,387.0,6,111,2,85,62,3.0,0.0,0.0,676.2669014635294,0.0,1397.8268125193597,13908.0,50,50,1,11283,201100931,,,500.0,87.0,1.0,0.0,4.0,3.0,5.0,2.4,906.6816205661223,1300.0,0.0,0.0,0.0,31913.0,6,1,3,80.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2074.0937139828893,0.149129545152638,0.06499212590426752,13297.083333333334,3,2,3_1,3_1_1,3_3_1,3_0_0 -932,2,37.0,3,0.0,1,300,5,0,63,7.0,0.0,832.755791738064,764.011888741,0.0,0.0,19193.0,0,31,1,11284,201100932,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2920.2529209112295,0.0,560.0,0.0,0.0,22561.0,0,1,2,102.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1596.767680479064,0.08319531498353899,0.07077557202602118,22561.0,7,4,7,7_1,7_0,7_1_0 -933,1,45.0,4,326.0,99,111,6,0,56,4.0,0.0,0.0,1882.743582968893,97.32297796537989,0.0,23866.0,0,60,2,11286,201100933,,,,135.0,2.0,0.0,4.0,3.0,4.0,2.3,2405.281532100686,0.0,1380.0,0.0,0.0,33826.0,0,1,3,78.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1980.0665609342727,0.08296600020674905,0.05853682259014582,14706.956521739132,3,2,3_1,3_0_1,3_3_1,3_0_0 -934,2,50.0,2,0.0,6,112,5,78,54,8.0,0.0,480.2225065689502,1020.5015942469072,0.0,0.0,29767.0,50,50,1,11287,201100934,,,310.0,,1.0,2.0,6.0,0.0,2.0,1.5,1374.6654399998938,0.0,748.0,0.0,0.0,38881.0,5,1,1,118.0,9,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1500.7241008158574,0.050415698619809095,0.03859787816197776,25920.666666666668,8,4,8,8_1,8_1,8_0_0 -935,2,40.0,3,0.0,3,111,2,43,38,7.0,0.0,555.170527825376,467.9572818538625,0.0,1141.8070807724034,73201.0,33,12,1,11289,201100935,,,440.0,,2.0,0.0,7.0,4.0,6.0,2.7,2000.8280281594507,0.0,343.0,657.0,0.0,66422.0,1,1,2,150.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2164.934890451642,0.029575209224623186,0.03259364202299903,24600.74074074074,7,4,7,7_1,7_3,7_0_1 -936,2,84.0,2,0.0,2,111,2,0,74,9.0,0.0,0.0,586.6519859975537,0.0,4316.969236892923,23368.0,0,31,1,1129,201100936,,,192.0,,0.0,2.0,6.0,0.0,1.0,1.0,2265.87312058799,0.0,430.0,2484.0,0.0,36190.0,0,5,1,95.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4903.621222890476,0.209843427888158,0.13549657979802365,36190.0,9,5,9,9_1,9_3,9_0_1 -937,2,39.0,2,0.0,5,112,1,42,37,10.0,0.0,0.0,873.1564442754286,0.0,2711.1401004641543,66510.0,20,12,1,11290,201100937,,,80.0,,2.0,0.0,7.0,2.0,4.0,2.1,2627.4562564055777,0.0,640.0,1560.0,0.0,80190.0,1,1,2,120.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3584.2965447395827,0.0538910922378527,0.04469755012769152,38185.71428571428,10,5,10,10_1,10_0,10_0_0 -938,1,33.0,4,332.0,1,111,1,85,85,3.0,0.0,0.0,130.0513272045249,0.0,268.81284856141536,37862.0,43,71,2,11293,201100938,,,,768.0,0.0,0.0,3.0,1.0,3.0,1.8,3730.382440243878,250.0,0.0,0.0,0.0,23471.0,6,4,3,103.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,398.8641757659403,0.010534683211820302,0.016993914863701602,13039.444444444443,3,2,3_1,3_0_1,3_3_1,3_1_0 -939,2,32.0,4,0.0,2,111,1,0,85,3.0,0.0,0.0,341.0767360450893,0.0,802.9145682143841,11297.0,0,71,2,11294,201100939,432.0,432.0,,266.0,0.0,1.0,1.0,0.0,1.0,1.0,3605.344228635316,0.0,250.0,462.0,0.0,12831.0,0,4,3,46.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1143.9913042594735,0.1012650530458948,0.08915839016908063,12831.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -940,1,44.0,4,627.0,1,111,6,0,85,2.0,95.18736054833293,0.0,553.3799075174543,0.0,845.2979107840549,24673.0,0,70,2,11295,201100940,,,,,0.0,0.0,3.0,5.0,7.0,3.2,1720.8488025459205,673.0,149.0,70.0,0.0,31526.0,0,6,3,60.0,9,7.0,5,8,1,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1493.865178849842,0.06054655610788482,0.04738517981506826,9851.875,1,1,1_1,1_0_1,1_3_1,1_1_0 -941,2,56.0,4,0.0,3,111,1,0,67,2.0,0.0,0.0,425.66376658427146,0.0,0.0,15496.0,0,31,8,11296,201100941,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2793.47459332285,0.0,312.0,0.0,0.0,11501.0,0,4,3,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,425.66376658427146,0.027469267332490416,0.03701102222278684,11501.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -942,2,24.0,2,0.0,8,120,2,0,43,3.0,0.0,0.0,523.8938665652572,0.0,1788.3097201138555,32633.0,0,33,2,11298,201100942,,,,461.0,1.0,1.0,4.0,1.0,2.0,1.5,6130.580123410371,0.0,384.0,1029.0,0.0,20653.0,0,1,3,75.0,0,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2312.203586679113,0.07085476623905596,0.11195485337138009,13768.666666666666,3,2,3_0,3_0_0,3_1_0,3_0_0 -943,2,66.0,3,0.0,2,111,1,77,78,6.0,0.0,0.0,545.7227776721429,0.0,420.57429763610594,18048.0,50,50,2,11299,201100943,,,,409.0,0.0,6.0,4.0,0.0,2.0,1.5,1522.4893817460477,0.0,400.0,242.0,0.0,31000.0,5,5,3,79.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,966.2970753082488,0.05354039645989854,0.031170873397040284,20666.666666666668,6,3,6,6_0,6_2,6_0_1 -944,1,47.0,3,258.0,99,111,1,0,52,2.0,0.0,0.0,545.7227776721429,0.0,0.0,19908.0,0,71,2,113,201100944,,,,132.0,2.0,0.0,4.0,3.0,4.0,2.5,2868.8211671403456,0.0,400.0,0.0,0.0,27350.0,0,1,3,66.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,545.7227776721429,0.027412235165367838,0.019953300828963176,10940.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -945,1,23.0,4,319.0,5,111,1,85,52,1.0,0.0,0.0,341.0767360450893,0.0,1334.7151263823528,19434.0,50,43,2,11300,201100945,768.0,768.0,,11.0,1.0,0.0,3.0,2.0,4.0,2.1,2877.9077500539793,0.0,250.0,768.0,0.0,13032.0,6,4,3,69.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1675.791862427442,0.08622989927073388,0.12859053579093324,6205.714285714285,1,1,1_1,1_0_1,1_4_1,1_0_0 -946,2,28.0,4,0.0,4,111,2,0,67,3.0,0.0,0.0,26.530470749723083,0.0,54.83782110652873,13116.0,0,50,2,11302,201100946,,,,360.0,1.0,0.0,2.0,0.0,1.0,1.0,2835.420730233823,51.0,0.0,0.0,0.0,13622.0,0,1,3,27.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,81.36829185625182,0.006203742898463847,0.005973299945400955,13622.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -947,2,79.0,3,0.0,4,300,2,78,78,3.0,0.0,0.0,1500.737638598393,0.0,1390.3282566482842,31862.0,70,71,1,11303,201100947,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1655.2594518641772,0.0,1100.0,800.0,0.0,19690.0,5,5,1,75.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2891.0658952466774,0.09073711302638496,0.14682914653360474,13126.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1 -948,2,32.0,1,0.0,3,111,1,0,47,8.0,0.0,0.0,409.2920832541072,0.0,0.0,61305.0,0,31,2,11304,201100948,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3238.727014285879,0.0,300.0,0.0,0.0,25763.0,0,1,2,70.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,409.2920832541072,0.006676324659556434,0.015886817655323803,25763.0,8,4,8,8_0,8_3,8_0_1 -949,2,28.0,2,0.0,8,111,2,0,47,6.0,0.0,0.0,750.3688192991965,0.0,0.0,12489.0,0,10,2,11305,201100949,,,,537.0,1.0,0.0,2.0,0.0,1.0,1.0,2888.4256009850706,0.0,550.0,0.0,0.0,20772.0,0,1,3,49.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,750.3688192991965,0.06008237803660794,0.03612405253703045,20772.0,6,3,6,6_0,6_2,6_0_0 -950,2,39.0,3,0.0,4,111,1,85,62,4.0,0.0,0.0,446.33615496592944,0.0,922.5656962627774,31400.0,71,71,2,11306,201100950,,,,447.0,1.0,0.0,5.0,4.0,6.0,2.7,3006.515047632371,858.0,0.0,0.0,0.0,41260.0,6,1,3,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1368.9018512287068,0.04359560035760213,0.033177456403991924,15281.48148148148,4,2,4_0,4_0_0,4_4_0,4_0_1 -951,2,81.0,4,0.0,3,300,2,0,77,7.0,3172.912018277764,0.0,631.6741151555054,604.7927916420036,0.0,33235.0,0,71,1,11308,201100951,,,,,1.0,2.0,5.0,1.0,2.0,1.5,2974.484069113713,0.0,463.0,0.0,0.0,32582.0,0,5,1,120.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4409.378925075273,0.13267275237175488,0.13533174529112005,21721.333333333332,6,3,6,6_1,6_0,6_0_1 -952,1,26.0,1,30.0,5,111,4,52,47,8.0,0.0,0.0,1047.7877331305144,0.0,0.0,26905.0,30,20,2,11309,201100952,,,,214.0,2.0,0.0,1.0,0.0,2.0,1.5,2435.0296340049217,0.0,768.0,0.0,0.0,37404.0,1,1,3,30.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1047.7877331305144,0.038943978187344894,0.028012718776882536,24936.0,8,4,8,8_0,8_2,8_0_0 -953,2,37.0,2,0.0,4,111,2,38,37,10.0,0.0,0.0,1023.230208135268,0.0,2085.4923849724264,77341.0,31,41,1,1131,201100953,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.1,1573.1979853674925,0.0,750.0,1200.0,0.0,92745.0,4,1,2,145.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3108.7225931076946,0.04019501419826088,0.033519031679418776,44164.28571428571,10,5,10,10_1,10_4,10_0_1 -954,2,46.0,1,0.0,9,112,2,54,67,9.0,0.0,0.0,1170.5753581067465,97.32297796537989,0.0,38161.0,41,71,1,11310,201100954,,,321.0,,2.0,0.0,5.0,0.0,2.0,1.5,2743.544345440826,0.0,858.0,0.0,0.0,43975.0,1,1,2,200.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1267.8983360721263,0.033224976705854836,0.02883225323643266,29316.666666666668,9,5,9,9_1,9_1,9_0_0 -955,2,60.0,1,0.0,1,111,2,0,77,1.0,0.0,0.0,272.86138883607146,0.0,312.82385774586396,13119.0,0,60,2,11312,201100955,,,10.0,,0.0,0.0,3.0,0.0,1.0,1.0,3013.340522799847,0.0,200.0,180.0,0.0,6840.0,0,5,1,70.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,585.6852465819354,0.04464404654180466,0.08562649803829465,6840.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -956,2,67.0,3,0.0,2,111,2,77,74,5.0,0.0,0.0,954.6917742521766,0.0,2231.888413019546,40271.0,60,31,1,11313,201100956,,,430.0,,0.0,3.0,6.0,0.0,2.0,1.5,1571.1541209811428,419.0,540.0,1025.0,0.0,27533.0,6,5,2,100.0,7,6.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3186.580187271723,0.07912840970603469,0.11573675906264203,18355.333333333332,5,3,5,5_1,5_2,5_0_1 -957,2,34.0,4,0.0,3,111,2,85,53,6.0,0.0,0.0,712.1682248621465,0.0,2419.1711665680145,31709.0,31,41,2,11314,201100957,,,,,1.0,0.0,4.0,2.0,4.0,2.1,2866.8637101560994,0.0,522.0,1392.0,0.0,39917.0,7,1,2,75.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3131.339391430161,0.0987523854877215,0.07844626077686602,19008.095238095237,5,3,5,5_0,5_3,5_0_1 -958,2,70.0,3,0.0,1,300,2,77,75,4.0,1586.456009138882,0.0,534.8083221187001,291.9689338961397,0.0,20450.0,70,50,1,11315,201100958,,,159.0,,0.0,1.0,6.0,0.0,2.0,1.5,1143.4666657722362,0.0,392.0,0.0,0.0,24454.0,5,5,1,150.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2413.2332651537217,0.11800651663343383,0.09868460232083592,16302.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -959,2,49.0,2,0.0,8,112,6,48,46,9.0,0.0,0.0,1637.1683330164287,52.13730962431066,0.0,34254.0,50,71,1,11316,201100959,,,251.0,,2.0,1.0,5.0,0.0,2.0,1.5,5855.377844795941,0.0,1200.0,0.0,0.0,54776.0,1,1,2,101.0,9,1.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1689.3056426407393,0.04931703283239153,0.03084025198336387,36517.333333333336,9,5,9,9_1,9_1,9_0_0 -960,2,47.0,3,0.0,2,111,2,22,22,1.0,0.0,0.0,1746.3128885508572,0.0,2033.3550753481156,70440.0,50,42,1,11318,201100960,,,650.0,,3.0,0.0,5.0,1.0,3.0,2.0,1415.0180078158112,0.0,1280.0,1170.0,0.0,16900.0,1,1,1,200.0,7,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3779.6679638989726,0.053657977908844016,0.22364899194668478,8450.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -961,2,67.0,3,0.0,5,120,2,86,72,5.0,0.0,131.8530003585268,785.8407998478858,0.0,0.0,29278.0,71,71,1,11320,201100961,,,194.0,,0.0,6.0,7.0,0.0,2.0,1.5,2818.58146642548,0.0,576.0,0.0,0.0,26492.0,5,5,1,196.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,917.6938002064126,0.03134414236650087,0.034640412207700914,17661.333333333332,5,3,5,5_1,5_1,5_0_0 -962,1,74.0,4,300.0,1,221,4,0,72,5.0,0.0,0.0,0.0,0.0,0.0,10063.0,0,70,2,11321,201100962,,,,,0.0,2.0,1.0,0.0,1.0,1.0,4325.3755459298245,0.0,0.0,0.0,0.0,17480.0,0,5,3,22.0,1,2.0,1,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0.0,0.0,0.0,17480.0,5,3,5,5_0,5_1,5_1_0 -963,2,80.0,3,0.0,5,111,1,0,71,1.0,0.0,0.0,300.1475277196786,0.0,0.0,11717.0,0,70,2,11323,201100963,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2834.6585634458906,0.0,220.0,0.0,0.0,7871.0,0,5,1,72.0,7,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,300.1475277196786,0.02561641441663212,0.03813334109003667,7871.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -964,2,26.0,2,0.0,6,111,1,0,37,8.0,0.0,0.0,0.0,0.0,0.0,35383.0,0,10,2,11324,201100964,,,,300.0,1.0,0.0,3.0,0.0,1.0,1.0,3715.679422450929,0.0,0.0,0.0,0.0,26725.0,0,1,4,75.0,9,7.0,1,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,26725.0,8,4,8,8_0,8_3,8_0_0 -965,2,60.0,4,0.0,5,112,2,78,78,8.0,0.0,0.0,1289.2700622504376,156.41192887293198,0.0,22461.0,70,70,1,11326,201100965,,,270.0,,0.0,2.0,4.0,0.0,2.0,1.5,3863.0615323007382,0.0,945.0,0.0,0.0,37290.0,5,5,1,100.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1445.6819911233697,0.06436409737426516,0.03876862405801474,24860.0,7,4,7,7_1,7_1,7_0_0 -966,1,21.0,3,300.0,4,111,1,0,52,3.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,6772.0,0,50,8,1133,201100966,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2904.203227443598,600.0,0.0,0.0,0.0,18302.0,0,1,3,60.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,957.2740218382565,0.14135765236831904,0.05230433951689742,14078.461538461537,3,2,3_1,3_0_1,3_3_1,3_0_1 -967,2,70.0,4,0.0,1,221,6,0,77,2.0,0.0,0.0,297.41891383131787,55.61313026593137,0.0,11729.0,0,41,1,11330,201100967,,,438.0,,0.0,4.0,8.0,0.0,1.0,1.0,2287.3365747126636,0.0,218.0,0.0,0.0,11520.0,0,5,1,156.0,1,2.0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,353.03204409724924,0.030099074439189126,0.030645142716775108,11520.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -968,0,45.0,4,0.0,5,211,2,85,85,3.0,0.0,0.0,622.1239665462429,0.0,1390.3282566482842,51472.0,50,50,1,11331,201100968,,,,,0.0,0.0,5.0,3.0,5.0,2.4,2882.551955833796,0.0,456.0,800.0,0.0,30430.0,6,5,5,90.0,2,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2012.452223194527,0.039097999362654005,0.06613382264852209,12679.166666666668,2,1,2_0,2_1_0,2_1_0,2_0_0 -969,2,34.0,2,0.0,9,112,6,56,21,3.0,0.0,0.0,4229.351526959107,0.0,0.0,32624.0,43,50,1,11332,201100969,,,620.0,,2.0,0.0,6.0,2.0,4.0,2.1,4430.030274075657,0.0,3100.0,0.0,0.0,30063.0,1,1,2,162.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4229.351526959107,0.12963926946294468,0.14068295003689277,14315.714285714284,3,2,3_0,3_1_0,3_0_0,3_0_0 -970,2,36.0,3,0.0,4,111,4,56,53,6.0,0.0,0.0,2046.460416270536,0.0,0.0,25537.0,42,50,2,11333,201100970,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2887.2330358521363,0.0,1500.0,0.0,0.0,38686.0,1,1,2,64.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2046.460416270536,0.0801370723370222,0.052899250795392025,21492.222222222223,6,3,6,6_0,6_3,6_0_1 -971,2,59.0,2,0.0,5,112,4,78,74,9.0,0.0,416.377895869032,2687.6846800353037,86.89551604051776,0.0,61287.0,50,50,1,11334,201100971,,,331.0,,0.0,1.0,4.0,0.0,2.0,1.5,1556.209685933585,0.0,1970.0,0.0,0.0,48653.0,5,7,1,100.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3190.958091944853,0.05206582296318719,0.06558605002661405,32435.333333333332,9,5,9,9_1,9_0,9_0_0 -972,2,61.0,3,0.0,1,400,5,0,78,1.0,0.0,41.637789586903196,163.71683330164288,312.82385774586396,0.0,6771.0,0,70,1,11335,201100972,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2677.7241088352775,0.0,120.0,0.0,0.0,5010.0,0,5,1,70.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,518.1784806344101,0.07652909180836068,0.10342883844998206,5010.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -973,1,47.0,3,160.0,1,112,5,0,52,5.0,0.0,1110.341055650752,1159.6609025533037,0.0,0.0,22637.0,0,71,1,11336,201100973,,,,333.0,1.0,2.0,5.0,2.0,3.0,2.0,1401.0421290369552,0.0,850.0,0.0,0.0,34202.0,0,1,3,90.0,3,0.0,2,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2270.001958204056,0.10027839193373927,0.06637044495070626,17101.0,5,3,5,5_1,5_0,5_1_0 -974,2,41.0,2,0.0,6,111,1,0,46,7.0,0.0,0.0,349.26257771017146,0.0,1042.7461924862132,26250.0,0,10,2,11337,201100974,600.0,600.0,,,1.0,0.0,2.0,0.0,1.0,1.0,3005.9059080789007,0.0,256.0,600.0,0.0,21994.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1392.0087701963846,0.05302890553129084,0.06329038693263547,21994.0,7,4,7,7_0,7_4,7_0_0 -975,0,74.0,3,0.0,2,111,1,0,77,2.0,0.0,0.0,0.0,0.0,0.0,10351.0,0,71,2,11338,201100975,,,,,0.0,6.0,4.0,0.0,1.0,1.0,5031.153982726393,0.0,0.0,0.0,0.0,10349.0,0,5,5,78.0,7,5.0,1,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,10349.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -976,1,53.0,4,262.0,2,111,1,0,67,1.0,0.0,0.0,109.14455553442858,0.0,0.0,4193.0,0,71,2,11339,201100976,,,,73.0,1.0,2.0,1.0,0.0,1.0,1.0,5327.519007729251,0.0,80.0,0.0,0.0,8744.0,0,4,3,29.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,109.14455553442858,0.026030182574392696,0.012482222728091099,8744.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -977,2,39.0,2,0.0,4,111,1,37,35,9.0,0.0,0.0,422.93515269591074,0.0,264.162368763174,39103.0,41,31,2,1134,201100977,,,,1200.0,2.0,0.0,5.0,2.0,4.0,2.1,3630.0943264876355,0.0,310.0,152.0,0.0,72885.0,4,1,3,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,687.0975214590848,0.017571478440505453,0.009427145797613841,34707.142857142855,9,5,9,9_0,9_4,9_0_1 -978,2,53.0,4,0.0,3,111,1,77,52,1.0,0.0,0.0,982.3009998098572,0.0,1459.8446694806985,16755.0,50,50,2,11341,201100978,,,,320.0,3.0,0.0,4.0,2.0,6.0,3.3,1233.8547253497675,0.0,720.0,840.0,0.0,29960.0,7,1,3,70.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2442.145669290556,0.1457562321271594,0.0815135403635032,9078.78787878788,1,1,1_0,1_0_0,1_4_0,1_0_1 -979,2,44.0,3,0.0,7,221,5,11,11,1.0,0.0,180.43042154324718,545.7227776721429,172.05312176022517,0.0,31939.0,41,50,5,11344,201100979,,,150.0,,2.0,0.0,6.0,3.0,5.0,2.8,2667.082271678077,0.0,400.0,0.0,0.0,13570.0,1,1,1,130.0,1,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,898.2063209756152,0.028122556153154926,0.06619059108147496,4846.428571428572,1,1,1_0,1_1_0,1_1_0,1_0_0 -980,2,68.0,3,0.0,5,300,4,78,75,6.0,0.0,0.0,1548.4883816447054,130.34327406077665,0.0,25270.0,71,50,1,11348,201100980,,,223.0,,0.0,2.0,4.0,0.0,2.0,1.5,2066.7202809423775,0.0,1135.0,0.0,0.0,29781.0,5,5,1,85.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1678.831655705482,0.06643576002000325,0.056372574987592156,19854.0,6,3,6,6_1,6_0,6_0_0 -981,1,21.0,2,147.0,5,111,2,0,46,9.0,0.0,0.0,436.5782221377143,0.0,0.0,17541.0,0,31,2,1135,201100981,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2990.792996583858,0.0,320.0,0.0,0.0,33066.0,0,1,3,37.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,436.5782221377143,0.02488901557138785,0.013203236621838574,33066.0,9,5,9,9_0,9_2,9_0_0 -982,2,47.0,1,0.0,7,112,3,34,11,3.0,0.0,0.0,904.5355039915769,159.8877495145527,0.0,60757.0,30,44,1,11350,201100982,,,660.0,,2.0,0.0,8.0,4.0,6.0,3.1,1063.5230415520857,0.0,663.0,0.0,0.0,38745.0,1,1,1,150.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1064.4232535061296,0.01751935173734927,0.02747253203009755,12498.387096774193,2,1,2_0,2_1_0,2_0_0,2_0_0 -983,2,47.0,4,0.0,1,221,5,52,31,6.0,0.0,333.10231669522557,341.0767360450893,46.92357866187959,0.0,32725.0,31,12,1,11351,201100983,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2593.2984540842813,0.0,250.0,0.0,0.0,29451.0,1,1,2,80.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,721.1026314021944,0.022035221738798915,0.02448482670884501,19634.0,6,3,6,6_1,6_1,6_1_0 -984,1,19.0,3,201.0,99,111,2,0,84,3.0,0.0,0.0,47.7507430463125,0.0,364.9611673701746,9391.0,0,42,2,11352,201100984,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3128.214752387563,0.0,35.0,210.0,0.0,12362.0,0,3,3,29.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,412.7119104164871,0.04394759987397371,0.03338552907429923,12362.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -985,2,46.0,2,0.0,2,112,2,42,37,9.0,3490.203220105541,0.0,1948.23031628955,0.0,0.0,62057.0,10,31,1,11354,201100985,,,300.0,,2.0,0.0,5.0,3.0,5.0,2.8,1465.126481941986,0.0,1428.0,0.0,0.0,93856.0,1,1,2,150.0,10,4.0,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,5438.43353639509,0.0876361012681098,0.057944441872603676,33520.0,9,5,9,9_1,9_2,9_0_1 -986,2,53.0,3,0.0,1,300,2,78,77,5.0,0.0,69.396315978172,1637.1683330164287,234.61789330939797,0.0,10844.0,71,60,1,11356,201100986,,,120.0,,1.0,2.0,5.0,1.0,3.0,2.0,2441.2344777380204,0.0,1200.0,0.0,0.0,35412.0,7,5,1,114.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1941.1825423039986,0.17900982500036874,0.05481708297481076,17706.0,5,3,5,5_1,5_0,5_1_0 -987,1,77.0,4,160.0,1,111,2,0,77,2.0,0.0,0.0,261.9469332826286,0.0,1390.3282566482842,9008.0,0,50,2,11357,201100987,,,,189.0,0.0,6.0,2.0,0.0,1.0,1.0,3579.263989745511,0.0,192.0,800.0,0.0,11580.0,0,5,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1652.2751899309128,0.18342308946835179,0.14268352244653823,11580.0,2,1,2_1,2_0_1,2_4_1,2_1_0 -988,2,41.0,2,0.0,7,112,2,38,43,9.0,2855.620816449988,0.0,955.0148609262501,0.0,0.0,69893.0,10,31,1,11358,201100988,,,420.0,,2.0,0.0,7.0,2.0,4.0,2.1,1603.9108814417657,0.0,700.0,0.0,0.0,67840.0,1,1,2,170.0,5,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3810.635677376238,0.05452099176421442,0.05617092684811672,32304.761904761905,9,5,9,9_1,9_0,9_0_0 -989,2,47.0,1,0.0,1,112,4,85,38,10.0,0.0,346.98157989085996,2523.9678467336607,0.0,0.0,33808.0,31,12,1,1136,201100989,,,624.0,,1.0,0.0,6.0,1.0,3.0,2.0,1568.7136106693786,0.0,1850.0,0.0,0.0,99090.0,6,1,1,166.0,10,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2870.9494266245206,0.08491923292192737,0.02897314993061379,49545.0,10,5,10,10_1,10_1,10_1_0 -991,2,41.0,1,0.0,5,112,2,62,38,7.0,1258.0596152471335,0.0,1069.6166442374001,100.7987986070006,0.0,41945.0,50,42,1,11361,201100991,,,245.0,,2.0,0.0,6.0,2.0,4.0,2.3,2097.1774339735093,0.0,784.0,0.0,0.0,50364.0,1,1,1,135.0,7,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2428.4750580915343,0.0578966517604371,0.04821847069516985,21897.391304347828,7,4,7,7_1,7_1,7_0_0 -992,2,43.0,2,0.0,2,111,6,56,63,4.0,0.0,0.0,477.50743046312505,0.0,660.405921907935,24673.0,50,50,2,11364,201100992,,,,,2.0,0.0,3.0,2.0,4.0,2.5,2491.5302782813887,0.0,350.0,380.0,0.0,36690.0,1,1,1,55.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1137.91335237106,0.0461197808280736,0.03101426416928482,14676.0,3,2,3_0,3_0_0,3_4_0,3_0_1 -993,2,67.0,3,0.0,2,111,1,0,78,4.0,793.228004569441,0.0,150.0737638598393,0.0,198.1217765723805,19362.0,0,50,2,11365,201100993,500.0,500.0,,246.0,0.0,2.0,3.0,0.0,1.0,1.0,2373.7710792637063,0.0,110.0,114.0,0.0,15346.0,0,5,3,55.0,7,5.0,1,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1141.4235450016608,0.058951737682143415,0.07437922227301322,15346.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -994,2,40.0,1,0.0,1,111,2,0,38,9.0,0.0,0.0,382.0059443705,0.0,1025.3670892781097,21684.0,0,20,2,11366,201100994,,,147.0,,1.0,0.0,3.0,0.0,1.0,1.0,4210.074326386647,0.0,280.0,590.0,0.0,31734.0,0,1,2,63.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1407.3730336486096,0.0649037554717123,0.04434905885323658,31734.0,9,5,9,9_0,9_1,9_1_0 -995,2,33.0,2,0.0,1,111,6,46,34,8.0,428.3431224674982,0.0,1267.441151143552,0.0,0.0,51093.0,31,20,1,11367,201100995,,,604.0,430.0,2.0,0.0,3.0,2.0,4.0,2.1,1616.9034649564178,0.0,929.0,0.0,0.0,53017.0,1,1,3,50.0,6,4.0,4,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1695.7842736110501,0.033190148819036855,0.03198567013620254,25246.190476190473,8,4,8,8_1,8_2,8_1_0 -996,2,67.0,2,0.0,5,112,2,0,47,10.0,2379.684013708323,0.0,955.0148609262501,0.0,0.0,27074.0,0,70,1,11368,201100996,,,,,1.0,2.0,5.0,0.0,1.0,1.0,1885.8217582773816,0.0,700.0,0.0,0.0,43565.0,0,5,1,86.0,7,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3334.6988746345733,0.1231697892677319,0.07654536611120333,43565.0,10,5,10,10_1,10_0,10_0_0 -997,1,48.0,4,9.0,4,400,2,0,68,3.0,0.0,0.0,736.7257498573929,1438.989745630974,0.0,10442.0,0,71,1,11369,201100997,,,,249.0,1.0,0.0,4.0,0.0,1.0,1.0,3459.9407340881285,0.0,540.0,0.0,0.0,12668.0,0,4,3,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2175.715495488367,0.20836195130131843,0.17174893396655883,12668.0,2,1,2_1,2_1_1,2_0_1,2_0_1 -998,2,42.0,2,0.0,8,221,6,62,62,7.0,0.0,0.0,2989.196514699163,0.0,0.0,43511.0,50,43,1,1137,201100998,,,280.0,,2.0,0.0,7.0,3.0,5.0,2.8,2841.8291870553785,0.0,2191.0,0.0,0.0,65912.0,1,1,2,164.0,1,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2989.196514699163,0.06869978889704127,0.04535132471627568,23540.0,7,4,7,7_1,7_1,7_0_0 -999,2,71.0,3,0.0,4,111,2,0,77,1.0,0.0,55.5170527825376,2019.1742773869287,62.56477154917279,0.0,31264.0,0,50,1,11371,201100999,,,180.0,,0.0,1.0,4.0,0.0,1.0,1.0,2858.2156861515114,0.0,1480.0,0.0,0.0,8060.0,0,5,1,88.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2137.256101718639,0.0683615692719626,0.26516825083357803,8060.0,1,1,1_0,1_1_0,1_3_0,1_0_1 -1000,0,47.0,3,0.0,8,111,5,52,47,7.0,0.0,111.0341055650752,2365.7082412087393,0.0,213.76296945967368,33439.0,50,50,1,11372,201101000,,,323.0,,2.0,0.0,3.0,1.0,3.0,2.0,2921.1951112270203,0.0,1734.0,123.0,0.0,43250.0,1,1,5,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2690.505316233488,0.08046010096693944,0.0622082154042425,21625.0,6,3,6,6_1,6_4,6_0_0 -1001,2,56.0,1,0.0,5,111,2,0,37,10.0,0.0,0.0,955.0148609262501,0.0,0.0,38556.0,0,41,2,11373,201101001,,,,820.0,1.0,0.0,3.0,0.0,1.0,1.0,3478.828542483331,0.0,700.0,0.0,0.0,45831.0,0,1,3,85.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,955.0148609262501,0.0247695523634778,0.020837748705597743,45831.0,10,5,10,10_0,10_3,10_0_0 -1002,1,80.0,4,130.0,5,111,1,0,72,3.0,0.0,0.0,613.9381248811608,0.0,0.0,12985.0,0,70,2,11374,201101002,,,,387.0,0.0,2.0,2.0,0.0,1.0,1.0,2628.0502712733037,0.0,450.0,0.0,0.0,13124.0,0,5,3,59.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,613.9381248811608,0.04728056410328539,0.04677980226159408,13124.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -1003,2,83.0,3,0.0,1,400,6,0,78,2.0,1237.435687128328,0.0,218.28911106885715,140.77073598563877,0.0,7148.0,0,71,1,11375,201101003,,,109.0,,0.0,3.0,4.0,0.0,1.0,1.0,3802.3793149785106,0.0,160.0,0.0,0.0,11380.0,0,5,1,80.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1596.495534182824,0.2233485638196452,0.1402895899984907,11380.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -1004,2,27.0,2,0.0,1,111,2,37,38,10.0,0.0,0.0,682.1534720901786,0.0,868.9551604051776,40691.0,10,10,2,11376,201101004,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3135.2119497639637,0.0,500.0,500.0,0.0,57244.0,1,1,2,53.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1551.1086324953562,0.03811920651975514,0.027096440369215224,38162.666666666664,10,5,10,10_0,10_3,10_1_0 -1005,2,41.0,1,0.0,6,111,4,46,37,10.0,0.0,0.0,3101.069684121952,0.0,0.0,78353.0,31,12,1,11378,201101005,,,700.0,,2.0,0.0,9.0,2.0,4.0,2.1,3496.253015959016,0.0,2273.0,0.0,0.0,102337.0,1,1,2,115.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3101.069684121952,0.03957818697589054,0.030302526790134086,48731.90476190476,10,5,10,10_1,10_4,10_0_0 -1006,1,57.0,4,9999.0,2,112,1,52,78,1.0,0.0,0.0,682.1534720901786,0.0,521.3730962431066,19179.0,71,71,2,11379,201101006,,,,,1.0,4.0,5.0,3.0,5.0,3.0,3441.9474041620356,0.0,500.0,300.0,0.0,21414.0,1,5,3,94.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1203.5265683332852,0.06275231077393427,0.05620279108682569,7138.0,1,1,1_1,1_0_1,1_1_1,1_0_1 -1007,2,24.0,2,0.0,5,111,1,0,38,9.0,0.0,0.0,658.9602540391126,0.0,0.0,27968.0,0,12,2,1138,201101007,,,,725.0,1.0,0.0,1.0,0.0,1.0,1.0,3733.986879992689,0.0,483.0,0.0,0.0,28913.0,0,1,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,658.9602540391126,0.023561221897851564,0.02279114080306826,28913.0,8,4,8,8_0,8_4,8_0_0 -1008,1,59.0,4,46.0,1,112,4,0,67,3.0,0.0,0.0,1882.743582968893,0.0,0.0,11989.0,0,70,2,11380,201101008,,,240.0,,1.0,1.0,3.0,0.0,1.0,1.0,2883.399427841276,0.0,1380.0,0.0,0.0,14042.0,0,4,2,65.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1882.743582968893,0.1570392512276998,0.13407944615930018,14042.0,3,2,3_1,3_0_1,3_0_1,3_1_0 -1009,2,35.0,3,0.0,4,222,6,69,52,6.0,1903.7472109666587,0.0,1652.1757094024126,201.5975972140012,0.0,37451.0,50,20,1,11381,201101009,,,,,2.0,0.0,6.0,1.0,3.0,1.8,1016.8651692401764,0.0,1211.0,0.0,0.0,35615.0,1,1,3,102.0,1,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3757.5205175830724,0.10033164715449715,0.1055038752655643,19786.11111111111,6,3,6,6_1,6_0,6_0_1 -1010,2,33.0,2,0.0,1,111,6,0,37,10.0,0.0,0.0,600.2950554393572,0.0,0.0,44238.0,0,10,2,11382,201101010,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3457.3761683084813,0.0,440.0,0.0,0.0,51457.0,0,1,2,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,600.2950554393572,0.013569669863903367,0.011665955174987993,51457.0,10,5,10,10_0,10_4,10_1_0 -1011,2,31.0,2,0.0,1,111,2,0,38,10.0,0.0,0.0,654.8673332065715,0.0,0.0,17787.0,0,31,2,11383,201101011,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3956.7523337797234,0.0,480.0,0.0,0.0,45859.0,0,1,3,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,654.8673332065715,0.03681718857629569,0.014280017732758488,45859.0,10,5,10,10_0,10_4,10_1_0 -1012,2,48.0,4,0.0,2,111,2,0,63,3.0,0.0,0.0,484.3289651840268,0.0,943.6853042000229,39149.0,0,50,2,11384,201101012,,,250.0,326.0,1.0,0.0,4.0,2.0,3.0,2.0,3379.7836252402644,0.0,355.0,543.0,0.0,28490.0,0,1,3,76.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1428.0142693840496,0.036476391973844786,0.05012335097873112,14245.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -1013,2,25.0,3,0.0,4,111,4,46,56,9.0,0.0,0.0,1811.7996218715143,0.0,0.0,66125.0,31,60,2,11385,201101013,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2918.8911423852855,0.0,1328.0,0.0,0.0,54283.0,1,1,2,80.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1811.7996218715143,0.027399616209777156,0.033376925038621934,30157.222222222223,9,5,9,9_0,9_2,9_0_1 -1014,2,65.0,1,0.0,99,111,2,0,74,7.0,0.0,0.0,1753.134423271759,0.0,0.0,18034.0,0,41,2,11386,201101014,,,,448.0,0.0,3.0,3.0,0.0,1.0,1.0,3926.166270392744,0.0,1285.0,0.0,0.0,22264.0,0,5,3,75.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1753.134423271759,0.09721273279759117,0.07874301218432263,22264.0,7,4,7,7_0,7_3,7_0_0 -1015,2,80.0,1,0.0,4,111,1,0,78,7.0,0.0,0.0,290.5973791104161,0.0,0.0,9877.0,0,71,2,11389,201101015,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3558.732381931047,0.0,213.0,0.0,0.0,23314.0,0,5,1,80.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,290.5973791104161,0.029421623884824957,0.012464501119945789,23314.0,7,4,7,7_0,7_3,7_0_1 -1016,2,31.0,3,0.0,9,112,4,55,47,6.0,0.0,277.585263912688,1337.02080529675,43.44775802025888,0.0,39245.0,43,42,1,1139,201101016,,,95.0,,2.0,0.0,3.0,2.0,4.0,2.1,2127.467464586762,0.0,980.0,0.0,0.0,42208.0,1,1,2,65.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1658.0538272296967,0.04224879162261936,0.03928292805225779,20099.04761904762,6,3,6,6_1,6_0,6_0_0 -1017,2,57.0,2,0.0,3,111,1,0,37,5.0,0.0,0.0,542.9941637837821,0.0,1032.318730561351,59342.0,0,12,2,11390,201101017,,,,,1.0,0.0,3.0,1.0,2.0,1.5,2892.250087116418,0.0,398.0,594.0,0.0,26164.0,0,1,1,96.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1575.3128943451331,0.026546339765176993,0.06020917651525505,17442.666666666668,5,3,5,5_0,5_3,5_0_1 -1018,2,65.0,2,0.0,1,111,2,75,75,9.0,0.0,0.0,409.2920832541072,104.27461924862132,0.0,61359.0,50,50,1,11391,201101018,,,400.0,,0.0,3.0,8.0,0.0,2.0,1.5,1384.2871377794663,0.0,300.0,0.0,0.0,46914.0,5,5,1,180.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,513.5667025027285,0.00836986754188837,0.010946981764563424,31276.0,9,5,9,9_1,9_2,9_1_0 -1019,2,62.0,2,0.0,1,111,2,0,75,9.0,0.0,0.0,750.3688192991965,0.0,2554.7281715912222,34757.0,0,60,1,11392,201101019,,,280.0,,0.0,3.0,5.0,0.0,1.0,1.0,2065.365538113301,0.0,550.0,1470.0,0.0,29556.0,0,5,1,89.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3305.096990890419,0.09509154964152311,0.11182490833977599,29556.0,9,5,9,9_1,9_3,9_1_0 -1020,2,46.0,2,0.0,9,111,2,85,45,7.0,0.0,0.0,1994.6167523916822,0.0,0.0,51208.0,44,50,1,11393,201101020,,,299.0,,1.0,0.0,4.0,2.0,4.0,2.5,2725.8441720665433,0.0,1462.0,0.0,0.0,56515.0,5,1,2,124.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1994.6167523916822,0.038951272308851786,0.035293581392403475,22606.0,7,4,7,7_1,7_3,7_0_0 -1021,2,55.0,3,0.0,5,111,1,0,52,8.0,0.0,0.0,353.73960999630776,0.0,731.1709480870497,34585.0,0,50,2,11394,201101021,,,,,1.0,3.0,3.0,0.0,1.0,1.0,2953.973911989347,680.0,0.0,0.0,0.0,25224.0,0,1,2,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1084.9105580833575,0.03136939592549826,0.043011043374697015,25224.0,8,4,8,8_0,8_4,8_0_0 -1022,2,40.0,3,0.0,9,112,2,43,47,9.0,0.0,0.0,1353.3924886269144,0.0,0.0,50083.0,10,20,1,11395,201101022,,,335.0,,2.0,0.0,6.0,2.0,4.0,2.1,2501.6242674739624,0.0,992.0,0.0,0.0,66437.0,1,1,2,140.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1353.3924886269144,0.027022991606471546,0.02037106565056993,31636.666666666664,9,5,9,9_1,9_0,9_0_0 -1023,2,48.0,3,0.0,7,111,2,62,35,2.0,0.0,0.0,0.0,0.0,0.0,37629.0,42,71,2,11398,201101023,,,,950.0,2.0,0.0,4.0,2.0,4.0,2.1,3652.212017433107,0.0,0.0,0.0,0.0,24450.0,1,1,3,86.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,11642.857142857143,2,1,2_0,2_0_0,2_4_0,2_0_0 -1024,1,33.0,3,200.0,99,111,2,0,85,1.0,1903.7472109666587,0.0,818.5841665082144,145.98446694806984,0.0,22203.0,0,50,1,11399,201101024,,,60.0,,0.0,0.0,4.0,0.0,1.0,1.0,2568.088433070949,0.0,600.0,0.0,0.0,6072.0,0,7,3,90.0,6,5.0,1,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2868.315844422943,0.12918595885344067,0.47238403234896953,6072.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -1025,2,57.0,1,0.0,4,111,2,48,38,10.0,0.0,0.0,3238.661489295883,0.0,1618.2533483397203,38549.0,20,12,1,114,201101025,,,600.0,,2.0,2.0,5.0,0.0,2.0,1.5,2223.042514047571,1505.0,1800.0,0.0,0.0,109391.0,1,1,1,130.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4856.914837635603,0.12599327706647653,0.044399583490740586,72927.33333333333,10,5,10,10_1,10_4,10_0_1 -1026,2,65.0,1,0.0,1,111,2,85,72,3.0,0.0,0.0,1155.5679817207626,0.0,1871.7294155127527,111770.0,71,71,1,1140,201101026,,,663.0,,0.0,1.0,6.0,1.0,3.0,2.0,3131.0575917363863,0.0,847.0,1077.0,0.0,28584.0,6,5,1,160.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3027.2973972335153,0.027085062156513514,0.10590880902720107,14292.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -1027,2,52.0,3,0.0,5,112,4,54,37,10.0,0.0,0.0,1637.1683330164287,151.1981979105009,0.0,33624.0,41,43,1,11400,201101027,,,,,2.0,1.0,4.0,0.0,2.0,1.5,1618.594690581331,0.0,1200.0,0.0,0.0,60671.0,1,1,1,90.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1788.3665309269297,0.05318720351317302,0.029476463729408278,40447.333333333336,10,5,10,10_1,10_1,10_0_0 -1028,2,70.0,3,0.0,1,111,2,77,34,9.0,0.0,0.0,2728.6138883607146,0.0,4344.775802025888,63481.0,41,10,1,11402,201101028,,,1200.0,,1.0,2.0,5.0,0.0,2.0,1.5,1208.6708723617915,0.0,2000.0,2500.0,0.0,43477.0,5,1,1,140.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,7073.3896903866025,0.11142530348272085,0.16269268096663989,28984.666666666668,8,4,8,8_1,8_3,8_1_0 -1029,2,53.0,2,0.0,6,112,4,72,21,8.0,0.0,0.0,3410.767360450893,0.0,0.0,47206.0,71,71,1,11404,201101029,,,436.0,,1.0,2.0,5.0,0.0,2.0,1.5,6364.300125738766,0.0,2500.0,0.0,0.0,42134.0,6,1,1,150.0,8,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3410.767360450893,0.07225283566603595,0.08095047611076311,28089.333333333332,8,4,8,8_1,8_1,8_0_0 -1030,2,63.0,3,0.0,8,111,2,78,78,4.0,0.0,0.0,465.2286679655018,0.0,1411.1831804980084,17022.0,71,70,1,11405,201101030,,,293.0,,0.0,2.0,3.0,0.0,2.0,1.5,2194.883394817082,0.0,341.0,812.0,0.0,22001.0,5,5,3,65.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1876.41184846351,0.11023451113050817,0.08528757094966184,14667.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0 -1031,2,80.0,3,0.0,4,111,2,86,74,1.0,0.0,0.0,839.2554753532446,69.5164128324142,2931.591402277723,29130.0,70,50,1,11406,201101031,,,262.0,,0.0,3.0,5.0,0.0,2.0,1.5,1749.3452699498098,302.0,500.0,1500.0,0.0,12860.0,6,5,1,82.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3840.3632904633814,0.1318353343791068,0.29862856068922095,8573.333333333334,1,1,1_0,1_1_0,1_4_0,1_0_1 -1032,2,67.0,4,0.0,2,112,1,77,74,8.0,3172.912018277764,0.0,818.5841665082144,0.0,0.0,43292.0,50,50,2,11409,201101032,4000.0,4000.0,600.0,,0.0,0.0,5.0,0.0,2.0,1.5,1997.0367531212248,0.0,600.0,0.0,0.0,38714.0,5,5,1,106.0,7,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,3991.4961847859786,0.0921993944559267,0.10310213836818667,25809.333333333332,8,4,8,8_0,8_0,8_0_1 -1033,2,54.0,3,0.0,8,112,2,0,34,9.0,0.0,0.0,545.7227776721429,0.0,1390.3282566482842,37369.0,0,20,1,1141,201101033,,,254.0,,1.0,0.0,3.0,0.0,1.0,1.0,1697.847146737131,0.0,400.0,800.0,0.0,32550.0,0,1,3,70.0,8,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1936.051034320427,0.051809013736531004,0.05947929444916827,32550.0,9,5,9,9_1,9_1,9_0_0 -1034,2,60.0,4,0.0,1,120,6,0,54,1.0,1348.4876077680499,0.0,622.1239665462429,161.62565983536302,0.0,15408.0,0,50,1,11411,201101034,,,108.0,,1.0,0.0,4.0,0.0,1.0,1.0,1762.328906695724,0.0,456.0,0.0,0.0,8100.0,0,4,1,110.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2132.2372341496557,0.1383850749058707,0.26323916470983405,8100.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -1035,2,44.0,2,0.0,7,111,2,43,56,7.0,0.0,166.55115834761278,893.621048438134,0.0,1970.790303798943,43044.0,33,31,1,11412,201101035,,,240.0,,2.0,0.0,7.0,3.0,5.0,2.6,1244.6743767947469,0.0,655.0,1134.0,0.0,58425.0,1,1,1,170.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3030.96251058469,0.07041544723038495,0.051877835012147024,22471.153846153844,7,4,7,7_1,7_2,7_0_0 -1036,2,42.0,2,0.0,8,300,2,67,67,6.0,0.0,0.0,573.00891655575,104.27461924862132,0.0,21931.0,60,50,1,11413,201101036,,,796.0,,2.0,0.0,4.0,1.0,3.0,1.8,3319.0146011627717,0.0,420.0,0.0,0.0,36993.0,1,1,2,95.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,677.2835358043714,0.030882473932076573,0.0183084241830717,20551.666666666668,6,3,6,6_1,6_1,6_0_0 -1037,2,41.0,1,0.0,5,111,2,37,38,10.0,4040.7034552767327,0.0,941.3717914844465,0.0,0.0,64460.0,10,12,1,11414,201101037,,,,,2.0,0.0,7.0,3.0,5.0,2.4,1907.4156723984365,0.0,690.0,0.0,0.0,131373.0,1,1,3,180.0,8,7.0,4,5,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4982.075246761179,0.07728940810985385,0.03792312915714172,54738.75,10,5,10,10_1,10_3,10_0_0 -1038,2,51.0,1,0.0,7,300,5,56,38,9.0,0.0,346.98157989085996,1330.1992705758482,135.55700502320772,0.0,85490.0,60,50,1,11415,201101038,,,,,3.0,0.0,5.0,2.0,4.0,2.5,1657.764205049835,0.0,975.0,0.0,0.0,86757.0,1,1,1,123.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1812.737855489916,0.021204092355713137,0.020894427602267437,34702.8,9,5,9,9_1,9_0,9_0_0 -1039,2,72.0,2,0.0,5,111,4,86,77,5.0,0.0,0.0,2046.460416270536,60.82686122836243,0.0,40872.0,50,50,1,11416,201101039,,,225.0,,0.0,3.0,5.0,0.0,2.0,1.5,1475.64937337023,0.0,1500.0,0.0,0.0,26625.0,6,5,1,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2107.287277498898,0.05155821289633241,0.07914693999995862,17750.0,5,3,5,5_1,5_3,5_0_0 -1040,2,50.0,5,0.0,2,111,1,0,63,8.0,0.0,0.0,1227.8762497623215,0.0,695.1641283241421,63744.0,0,50,2,11417,201101040,,,,318.0,2.0,0.0,3.0,1.0,2.0,1.5,5739.803973714396,0.0,900.0,400.0,0.0,41444.0,0,1,3,52.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1923.0403780864635,0.03016817862208935,0.04640093567431868,27629.333333333332,8,4,8,8_0,8_4,8_0_1 -1041,2,32.0,2,0.0,7,111,4,0,38,9.0,0.0,0.0,961.8363956471519,0.0,0.0,24590.0,0,30,2,11423,201101041,,,,550.0,1.0,0.0,1.0,0.0,1.0,1.0,3150.1252403721674,0.0,705.0,0.0,0.0,33914.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,961.8363956471519,0.039114940855923215,0.028361042508909355,33914.0,9,5,9,9_0,9_4,9_0_0 -1042,2,52.0,2,0.0,6,111,4,46,38,10.0,0.0,0.0,2845.631054817889,166.8393907977941,473.110613468091,71502.0,10,12,1,11424,201101042,,,,1488.0,3.0,5.0,5.0,1.0,3.0,2.0,1555.6902744771696,440.0,1918.0,0.0,0.0,101026.0,4,1,3,160.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3485.581059083774,0.048748021860700035,0.034501821898162595,50513.0,10,5,10,10_1,10_3,10_0_0 -1043,2,42.0,2,0.0,8,112,6,48,67,8.0,2538.3296146222115,0.0,682.1534720901786,0.0,0.0,29455.0,50,50,1,11425,201101043,,,280.0,,2.0,0.0,5.0,1.0,3.0,1.8,1321.1453618819855,0.0,500.0,0.0,0.0,45541.0,1,1,2,99.0,3,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3220.48308671239,0.10933570146706467,0.07071612583633188,25300.555555555555,8,4,8,8_1,8_0,8_0_0 -1044,2,50.0,3,0.0,8,112,4,34,62,6.0,0.0,208.188947934516,2152.876357916604,0.0,0.0,45676.0,20,50,1,11426,201101044,,,150.0,,2.0,3.0,7.0,3.0,5.0,2.4,1011.4201318091716,0.0,1578.0,0.0,0.0,47452.0,1,1,2,150.0,4,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2361.06530585112,0.05169159527653735,0.04975691869365084,19771.666666666668,6,3,6,6_1,6_0,6_0_0 -1045,2,58.0,2,0.0,2,111,4,0,62,5.0,0.0,0.0,1042.330505353793,0.0,123.39163277753522,23033.0,0,42,2,11427,201101045,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3336.6331868879042,0.0,764.0,71.0,0.0,18609.0,0,1,1,60.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1165.7221381313282,0.050610955504334136,0.06264292214150831,18609.0,5,3,5,5_0,5_3,5_0_1 -1046,2,77.0,3,0.0,3,111,2,0,78,4.0,0.0,0.0,389.63377630475657,0.0,805.3632942900005,17013.0,0,71,8,11429,201101046,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4525.9423541078095,749.0,0.0,0.0,0.0,15790.0,0,5,1,65.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1194.9970705947571,0.07024023221035426,0.07568062511683073,15790.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -1047,2,71.0,4,0.0,3,111,1,0,74,5.0,0.0,0.0,522.5295596210768,0.0,139.0328256648284,23376.0,0,43,2,1143,201101047,,,149.0,,0.0,3.0,4.0,0.0,1.0,1.0,2755.096382634844,0.0,383.0,80.0,0.0,18031.0,0,5,1,90.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,661.5623852859053,0.028300923395187597,0.036690277038761314,18031.0,5,3,5,5_0,5_3,5_0_1 -1048,2,49.0,2,0.0,7,111,4,43,65,9.0,0.0,173.49078994542998,2960.546068871375,0.0,0.0,66389.0,20,50,1,11430,201101048,,,640.0,,3.0,1.0,5.0,1.0,3.0,2.0,1146.8076254490554,0.0,2170.0,0.0,0.0,70368.0,1,1,1,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3134.0368588168053,0.04720717074841924,0.04453781347795596,35184.0,9,5,9,9_1,9_4,9_0_0 -1049,2,83.0,3,0.0,3,111,2,0,86,9.0,0.0,0.0,2500.1889403456557,0.0,4738.289608431156,19033.0,0,71,1,11431,201101049,,,200.0,,0.0,0.0,4.0,0.0,2.0,1.5,3059.1746776469327,1659.0,1200.0,1700.0,0.0,52170.0,0,5,1,100.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,7238.478548776811,0.38031201328097575,0.13874791161159308,34780.0,9,5,9,9_1,9_3,9_0_1 -1050,2,69.0,5,0.0,5,112,4,0,75,4.0,0.0,0.0,6412.242637647679,0.0,0.0,23954.0,0,71,1,11432,201101050,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2623.9588941075954,0.0,4700.0,0.0,0.0,16240.0,0,5,1,135.0,9,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6412.242637647679,0.2676898487788127,0.3948425269487487,16240.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -1051,2,79.0,2,0.0,2,400,2,0,71,5.0,3893.163046426817,0.0,573.00891655575,48.661488982689946,0.0,10624.0,0,70,1,11440,201101051,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2412.186249452249,0.0,420.0,0.0,0.0,17748.0,0,5,1,114.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4514.833451965256,0.4249654981141996,0.2543854773476029,17748.0,5,3,5,5_1,5_0,5_0_1 -1052,2,54.0,3,0.0,6,112,5,77,52,8.0,0.0,777.2387389555264,679.4248582018179,156.41192887293198,0.0,37063.0,50,41,1,11441,201101052,,,484.0,,1.0,2.0,5.0,0.0,2.0,1.5,1353.3035973569656,0.0,498.0,0.0,0.0,41012.0,5,1,1,120.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1613.0755260302763,0.043522529909351,0.03933179376841598,27341.333333333332,8,4,8,8_1,8_1,8_0_0 -1053,2,59.0,2,0.0,1,300,2,22,34,1.0,2344.781981507268,0.0,1337.02080529675,0.0,0.0,38068.0,31,20,1,11442,201101053,,,,,2.0,2.0,6.0,0.0,2.0,1.5,2143.396761921742,0.0,980.0,0.0,0.0,11362.0,1,1,1,200.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3681.802786804018,0.09671647543354045,0.3240453077630715,7574.666666666667,1,1,1_0,1_1_0,1_0_0,1_1_0 -1054,2,39.0,1,0.0,1,111,2,0,37,10.0,0.0,0.0,206.01034857123395,0.0,1164.399914942938,20616.0,0,10,2,11443,201101054,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2812.868279771188,0.0,151.0,670.0,0.0,39681.0,0,1,2,70.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1370.410263514172,0.06647314044985311,0.03453567862488778,39681.0,10,5,10,10_0,10_2,10_1_0 -1055,2,86.0,3,0.0,4,111,1,0,75,7.0,0.0,0.0,204.6460416270536,0.0,521.3730962431066,17299.0,0,70,2,11445,201101055,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2874.01177505583,0.0,150.0,300.0,0.0,23398.0,0,5,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,726.0191378701602,0.041968850099436975,0.031029110944104633,23398.0,7,4,7,7_0,7_4,7_0_1 -1056,2,30.0,1,0.0,4,111,1,0,37,10.0,0.0,0.0,491.1504999049286,0.0,0.0,129128.0,0,10,8,11446,201101056,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3980.2650385506718,0.0,360.0,0.0,0.0,172517.0,0,1,3,72.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,491.1504999049286,0.0038035941074354798,0.002846968703982382,172517.0,10,5,10,10_0,10_4,10_0_1 -1057,2,63.0,3,0.0,1,112,2,74,72,9.0,2379.684013708323,1832.0627418237407,518.4366387885358,391.02982218232995,0.0,35500.0,70,41,1,11447,201101057,,,220.0,,0.0,3.0,5.0,0.0,2.0,1.5,1958.7342594055986,0.0,380.0,0.0,0.0,43932.0,5,5,2,150.0,4,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5121.213216502929,0.14425952722543461,0.11657136521221272,29288.0,9,5,9,9_1,9_0,9_1_0 -1058,1,43.0,3,148.0,9,120,4,85,64,2.0,0.0,0.0,2292.035666223,0.0,0.0,19910.0,71,50,1,1145,201101058,,,230.0,259.0,1.0,0.0,5.0,3.0,5.0,2.6,4164.275378180055,0.0,1680.0,0.0,0.0,31166.0,6,1,3,98.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2292.035666223,0.11511982251245606,0.07354282443120709,11986.923076923076,2,1,2_1,2_1_1,2_0_1,2_0_0 -1059,2,43.0,3,0.0,1,112,2,68,68,7.0,0.0,0.0,890.8924345497733,5213.730962431066,0.0,34269.0,50,50,1,11450,201101059,,,477.0,,2.0,0.0,8.0,1.0,3.0,2.0,1175.0442196733989,0.0,653.0,0.0,0.0,43942.0,1,1,1,155.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6104.623396980839,0.17813835819489449,0.13892456868100767,21971.0,7,4,7,7_1,7_0,7_1_0 -1060,1,21.0,5,237.0,9,111,4,55,46,5.0,0.0,0.0,955.0148609262501,0.0,0.0,14233.0,41,42,2,11451,201101060,,,,243.0,2.0,0.0,3.0,0.0,2.0,1.5,3553.6330177741256,0.0,700.0,0.0,0.0,26432.0,1,4,3,62.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,955.0148609262501,0.06709863422512823,0.03613101017426794,17621.333333333332,5,3,5,5_0,5_2,5_0_0 -1061,2,46.0,3,0.0,1,112,4,54,63,6.0,0.0,416.377895869032,1227.8762497623215,0.0,0.0,80259.0,31,50,1,11452,201101061,,,400.0,,2.0,1.0,4.0,1.0,3.0,2.0,2435.7273461307022,0.0,900.0,0.0,0.0,41279.0,1,1,1,150.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1644.2541456313536,0.020486850641440256,0.039832702963525125,20639.5,6,3,6,6_1,6_0,6_1_0 -1062,2,33.0,3,0.0,1,111,2,46,38,9.0,0.0,0.0,491.1504999049286,0.0,608.2686122836243,73518.0,20,10,8,11454,201101062,,,,514.0,2.0,0.0,2.0,0.0,2.0,1.5,2135.1237106209383,0.0,360.0,350.0,0.0,44945.0,4,1,3,50.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1099.4191121885528,0.014954420851880531,0.024461433133575544,29963.333333333332,9,5,9,9_0,9_3,9_1_0 -1063,2,52.0,4,0.0,7,111,2,0,68,3.0,0.0,0.0,348.53755690812676,0.0,720.4184341445931,11117.0,0,50,2,11455,201101063,,,170.0,306.0,1.0,3.0,2.0,0.0,1.0,1.0,1611.796513366542,670.0,0.0,0.0,0.0,12890.0,0,1,3,50.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1068.9559910527198,0.09615507700393269,0.08292909162550192,12890.0,3,2,3_0,3_0_0,3_2_0,3_0_0 -1064,2,64.0,3,0.0,1,112,5,0,78,4.0,0.0,832.755791738064,545.7227776721429,0.0,0.0,6958.0,0,71,1,11456,201101064,,,80.0,,0.0,0.0,3.0,0.0,1.0,1.0,2516.218364412748,0.0,400.0,0.0,0.0,15020.0,0,5,1,70.0,5,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1378.478569410207,0.19811419508626144,0.09177620302331604,15020.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -1065,2,34.0,2,0.0,1,111,2,37,31,10.0,0.0,0.0,2319.3218051066074,0.0,2954.447545377604,77276.0,10,10,2,11457,201101065,,,,,2.0,0.0,4.0,2.0,4.0,2.1,7910.297045213364,0.0,1700.0,1700.0,0.0,210738.0,1,1,2,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,5273.769350484212,0.06824588941565572,0.02502524153443713,100351.42857142857,10,5,10,10_0,10_4,10_1_0 -1066,2,32.0,3,0.0,1,111,6,55,55,9.0,0.0,0.0,1650.8114024582324,0.0,0.0,28096.0,41,50,2,1146,201101066,,,,,2.0,0.0,1.0,0.0,2.0,1.5,2789.1160519751015,0.0,1210.0,0.0,0.0,44280.0,1,1,2,35.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1650.8114024582324,0.05875610060002251,0.03728119698415159,29520.0,9,5,9,9_0,9_4,9_1_0 -1067,2,59.0,3,0.0,1,111,2,0,43,10.0,158.64560091388822,0.0,1300.5132720452489,0.0,2688.1284856141533,46166.0,0,33,1,11460,201101067,,,150.0,,1.0,2.0,7.0,0.0,1.0,1.0,2065.9134122737046,2500.0,0.0,0.0,0.0,42377.0,0,1,1,114.0,8,7.0,1,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4147.2873585732905,0.08983423642016398,0.09786646904153881,42377.0,10,5,10,10_1,10_3,10_1_0 -1068,0,31.0,2,0.0,1,120,1,42,46,7.0,0.0,0.0,0.0,43.44775802025888,0.0,19713.0,20,10,1,11461,201101068,,,,,2.0,0.0,1.0,0.0,2.0,1.5,1504.9254985528582,0.0,0.0,0.0,0.0,35194.0,1,1,5,25.0,0,0.0,3,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,43.44775802025888,0.002204015523779175,0.0012345217372352925,23462.666666666668,7,4,7,7_1,7_0,7_1_0 -1069,2,60.0,3,0.0,7,111,2,43,35,10.0,0.0,0.0,1650.8114024582324,130.34327406077665,0.0,40729.0,33,31,1,11462,201101069,,,,,3.0,1.0,5.0,1.0,3.0,2.0,1738.399608373007,0.0,1210.0,0.0,0.0,77533.0,1,1,3,114.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1781.154676519009,0.0437318538760836,0.02297285899576966,38766.5,10,5,10,10_1,10_2,10_0_0 -1070,2,68.0,1,0.0,1,111,2,77,74,8.0,0.0,346.98157989085996,886.7995137172322,0.0,2259.283417053462,36695.0,50,71,1,11464,201101070,,,125.0,,0.0,3.0,7.0,0.0,2.0,1.5,1275.4000648431875,0.0,650.0,1300.0,0.0,37609.0,5,5,1,167.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3493.0645106615543,0.09519183841563031,0.09287842034251255,25072.666666666668,8,4,8,8_1,8_2,8_1_0 -1071,2,60.0,2,0.0,9,111,4,0,74,9.0,0.0,0.0,859.5133748336251,0.0,0.0,16640.0,0,41,2,11465,201101071,,,,703.0,0.0,0.0,2.0,0.0,1.0,1.0,3281.7163070346937,0.0,630.0,0.0,0.0,34826.0,0,5,3,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,859.5133748336251,0.05165344800682843,0.02468022095083056,34826.0,9,5,9,9_0,9_3,9_0_0 -1072,1,27.0,2,340.0,8,111,2,46,55,8.0,0.0,0.0,102.3230208135268,0.0,0.0,22922.0,20,20,2,11466,201101072,,,,356.0,2.0,0.0,3.0,1.0,3.0,1.8,3353.9301438249017,0.0,75.0,0.0,0.0,47028.0,4,1,3,66.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,102.3230208135268,0.004463965658037117,0.0021757893343014117,26126.666666666664,8,4,8,8_0,8_3,8_0_0 -1073,2,34.0,2,0.0,5,112,2,54,62,7.0,0.0,0.0,994.6325504602064,0.0,2055.8806657977048,25681.0,31,43,1,11467,201101073,,,240.0,,2.0,0.0,4.0,2.0,4.0,2.1,4023.7509474426506,1912.0,0.0,0.0,0.0,50948.0,4,1,3,100.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3050.513216257911,0.11878482988426896,0.05987503368646289,24260.95238095238,7,4,7,7_1,7_0,7_0_0 -1074,2,36.0,1,0.0,2,111,2,37,38,10.0,0.0,0.0,61.393812488116076,0.0,243.30744491344973,59641.0,10,12,1,11468,201101074,,,150.0,,2.0,0.0,7.0,1.0,3.0,1.8,1251.4525000574008,0.0,45.0,140.0,0.0,67980.0,1,4,2,150.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,304.7012574015658,0.005108922677379081,0.004482219143888876,37766.666666666664,10,5,10,10_1,10_3,10_0_1 -1075,1,35.0,3,93.0,5,300,2,56,64,4.0,2046.528251789158,0.0,1457.0798163846216,59.088950907552075,0.0,35569.0,50,60,1,11469,201101075,,,,,2.0,1.0,4.0,2.0,4.0,2.1,1545.817862768308,0.0,1068.0,0.0,0.0,34516.0,1,1,3,90.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3562.6970190813313,0.10016297953502576,0.10321871071622817,16436.190476190477,4,2,4_1,4_1_1,4_0_1,4_0_0 -1076,2,37.0,3,0.0,1,400,5,62,52,4.0,0.0,0.0,1732.6698191090536,55.61313026593137,0.0,23848.0,50,71,1,11472,201101076,,,,,2.0,1.0,6.0,2.0,4.0,2.3,4740.631432248903,0.0,1270.0,0.0,0.0,38358.0,1,1,2,110.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1788.282949374985,0.07498670535789102,0.04662086003897453,16677.391304347828,4,2,4_0,4_1_0,4_0_0,4_1_0 -1077,2,53.0,2,0.0,6,300,2,46,45,9.0,0.0,0.0,1664.4544719000357,97.32297796537989,0.0,53995.0,50,60,1,11474,201101077,,,213.0,,2.0,2.0,4.0,0.0,2.0,1.5,2974.626725761268,0.0,1220.0,0.0,0.0,48183.0,1,1,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1761.7774498654157,0.03262852949097909,0.03656429549561911,32122.0,9,5,9,9_1,9_0,9_0_0 -1078,2,71.0,1,0.0,3,111,1,77,77,5.0,0.0,0.0,338.3481221567286,0.0,133.81909470239736,22873.0,71,70,2,11475,201101078,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2929.4081650829216,0.0,248.0,77.0,0.0,26217.0,5,5,1,72.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,472.167216859126,0.020642994660041356,0.01800996364416699,17478.0,5,3,5,5_0,5_3,5_0_1 -1079,2,33.0,3,0.0,2,111,2,55,64,4.0,0.0,0.0,1098.1534069150082,0.0,2269.855693252591,51586.0,50,50,1,11477,201101079,,,290.0,,2.0,0.0,6.0,2.0,4.0,2.1,1571.5140605624697,2111.0,0.0,0.0,0.0,33089.0,1,1,2,110.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3368.009100167599,0.06528920831558173,0.1017863670756928,15756.666666666666,4,2,4_0,4_1_0,4_3_0,4_0_1 -1080,2,81.0,1,0.0,7,111,2,77,74,9.0,0.0,0.0,327.43366660328576,0.0,1251.2954309834558,26522.0,31,10,2,1148,201101080,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2429.4899199769507,0.0,240.0,720.0,0.0,44929.0,5,5,1,104.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1578.7290975867415,0.05952526572606672,0.03513830927878968,29952.666666666668,9,5,9,9_0,9_3,9_0_0 -1081,2,76.0,2,0.0,5,111,2,77,75,6.0,0.0,0.0,1364.3069441803573,3475.8206416207104,0.0,28848.0,70,42,1,11480,201101081,,,174.0,,0.0,3.0,5.0,0.0,2.0,1.5,2259.110758134453,0.0,1000.0,0.0,0.0,31837.0,5,5,1,127.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4840.127585801068,0.16778035169859498,0.15202838162518667,21224.666666666668,6,3,6,6_1,6_3,6_0_0 -1082,2,38.0,2,0.0,1,111,4,0,37,9.0,0.0,0.0,818.5841665082144,0.0,0.0,44659.0,0,20,2,11482,201101082,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3741.140595140943,0.0,600.0,0.0,0.0,35257.0,0,1,1,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,818.5841665082144,0.01832965732569503,0.023217635264152207,35257.0,9,5,9,9_0,9_4,9_1_0 -1083,2,37.0,5,0.0,5,111,1,85,65,5.0,0.0,0.0,1023.230208135268,0.0,1272.15035483318,27286.0,71,71,2,11483,201101083,432.0,432.0,309.0,293.0,1.0,0.0,3.0,2.0,4.0,2.1,3680.9818362822807,0.0,750.0,732.0,0.0,35563.0,6,1,3,63.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2295.380562968448,0.08412301410864355,0.06454406441999966,16934.761904761905,4,2,4_0,4_0_0,4_3_0,4_0_0 -1084,2,84.0,2,0.0,5,111,4,0,75,10.0,0.0,0.0,826.7700081732964,0.0,0.0,25536.0,0,20,2,11485,201101084,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2748.514989221939,0.0,606.0,0.0,0.0,46159.0,0,5,5,90.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,826.7700081732964,0.03237664505691167,0.017911350076329567,46159.0,10,5,10,10_0,10_4,10_0_0 -1085,2,44.0,2,0.0,7,112,2,52,34,8.0,0.0,0.0,2161.062199581686,1929.0804560994943,0.0,89485.0,50,10,1,11486,201101085,,,,,3.0,0.0,6.0,3.0,5.0,3.0,2546.731343370975,0.0,1584.0,0.0,0.0,75346.0,1,1,1,144.0,9,1.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4090.1426556811803,0.04570757842857664,0.05428480152471505,25115.333333333332,8,4,8,8_1,8_1,8_0_0 -1086,2,63.0,3,0.0,9,300,6,0,75,8.0,0.0,0.0,818.5841665082144,0.0,0.0,8389.0,0,20,1,11487,201101086,,,160.0,,0.0,1.0,4.0,0.0,1.0,1.0,2338.703158797684,0.0,600.0,0.0,0.0,26931.0,0,5,1,75.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,818.5841665082144,0.09757827709002437,0.030395609762289347,26931.0,8,4,8,8_1,8_0,8_0_0 -1087,2,59.0,2,0.0,2,120,2,77,77,4.0,2855.620816449988,0.0,832.2272359500179,104.27461924862132,0.0,17854.0,71,50,1,11488,201101087,,,505.0,,0.0,0.0,4.0,0.0,2.0,1.5,5004.4742209296455,0.0,610.0,0.0,0.0,24365.0,6,5,1,82.0,0,3.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3792.122671648627,0.21239625135256118,0.15563811498660485,16243.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_1 -1088,2,24.0,1,0.0,6,111,1,0,37,1.0,0.0,0.0,122.78762497623215,0.0,0.0,42567.0,0,10,2,11490,201101088,,,,320.0,1.0,0.0,3.0,0.0,1.0,1.0,3818.364318310569,0.0,90.0,0.0,0.0,397.0,0,1,3,75.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,122.78762497623215,0.0028845731429565664,0.3092887278998291,397.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -1089,2,83.0,1,0.0,6,111,4,77,74,10.0,0.0,0.0,1364.3069441803573,278.0656513296568,0.0,53768.0,70,12,1,11491,201101089,,,246.0,,0.0,5.0,4.0,0.0,2.0,1.5,1345.3499380355252,0.0,1000.0,0.0,0.0,60148.0,6,5,1,120.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1642.372595510014,0.030545540014693014,0.02730552296851124,40098.666666666664,10,5,10,10_1,10_2,10_0_0 -1090,2,65.0,2,0.0,1,112,2,0,78,3.0,2379.684013708323,0.0,682.1534720901786,281.54147197127753,0.0,18356.0,0,70,1,11492,201101090,,,70.0,,0.0,0.0,4.0,0.0,1.0,1.0,1783.5046767280808,0.0,500.0,0.0,0.0,14555.0,0,5,1,73.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3343.3789577697794,0.18214093254357047,0.2297065584177107,14555.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -1091,2,54.0,2,0.0,6,111,4,0,52,7.0,0.0,0.0,1364.3069441803573,0.0,0.0,31033.0,0,70,1,11494,201101091,,,130.0,,1.0,1.0,4.0,0.0,1.0,1.0,1612.636386465368,0.0,1000.0,0.0,0.0,23302.0,0,1,1,80.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1364.3069441803573,0.04396310199401789,0.058548920443754066,23302.0,7,4,7,7_1,7_2,7_0_0 -1092,2,87.0,1,0.0,3,111,1,0,74,10.0,0.0,0.0,638.3395742735529,0.0,3065.872621434217,32507.0,0,20,2,11496,201101092,1403.0,1403.0,,,0.0,6.0,6.0,0.0,1.0,1.0,2579.3011305580217,498.0,278.0,1456.0,0.0,98789.0,0,5,5,120.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,3704.2121957077698,0.11395121652898667,0.03749620095058934,98789.0,10,5,10,10_0,10_2,10_0_1 -1093,2,50.0,1,0.0,6,111,4,0,37,10.0,0.0,0.0,750.3688192991965,0.0,0.0,33782.0,0,12,2,11497,201101093,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2627.99362058782,0.0,550.0,0.0,0.0,54355.0,0,1,1,72.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,750.3688192991965,0.022212089849600276,0.013804964019854595,54355.0,10,5,10,10_0,10_4,10_0_0 -1094,2,54.0,3,0.0,1,400,1,43,34,9.0,0.0,0.0,1305.641745580602,0.0,0.0,78374.0,41,31,1,115,201101094,,,,,4.0,2.0,6.0,3.0,5.0,2.8,1053.5203222806847,0.0,957.0,0.0,0.0,93715.0,1,1,2,240.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1305.641745580602,0.0166591184012632,0.013932046583584292,33469.64285714286,9,5,9,9_1,9_0,9_1_0 -1095,2,39.0,4,0.0,99,111,2,47,47,6.0,0.0,0.0,1440.7081330544572,0.0,1147.0208117348345,36051.0,50,31,2,11500,201101095,,,,480.0,3.0,1.0,3.0,3.0,6.0,2.9,1414.076116305597,0.0,1056.0,660.0,0.0,59489.0,1,1,3,67.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2587.7289447892917,0.07177967170922558,0.043499284654125836,20513.44827586207,6,3,6,6_0,6_3,6_0_0 -1096,2,41.0,3,0.0,3,111,1,43,63,7.0,0.0,0.0,440.6711429702554,0.0,556.1313026593136,46908.0,50,50,2,11501,201101096,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2968.613517916022,0.0,323.0,320.0,0.0,47927.0,1,1,2,55.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,996.8024456295691,0.021250158728352713,0.0207983484388668,22822.38095238095,7,4,7,7_0,7_4,7_0_1 -1097,1,34.0,4,82.0,2,111,2,85,65,4.0,0.0,0.0,553.908619337225,0.0,2867.552029337086,21925.0,42,71,2,11502,201101097,,,,173.0,1.0,0.0,3.0,2.0,4.0,2.1,3147.06533459441,0.0,406.0,1650.0,0.0,31464.0,7,1,3,50.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,3421.460648674311,0.15605293722573824,0.10874207502778765,14982.857142857143,4,2,4_1,4_0_1,4_3_1,4_0_1 -1098,2,54.0,3,0.0,6,111,6,0,53,10.0,0.0,499.65347504283835,1841.8143746434823,187.69431464751835,0.0,29877.0,0,50,1,11504,201101098,,,364.0,,2.0,2.0,6.0,1.0,2.0,1.5,2151.8953566354285,0.0,1350.0,0.0,0.0,56388.0,0,1,1,140.0,6,5.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2529.162164333839,0.0846524806484533,0.04485284394434701,37592.0,10,5,10,10_1,10_2,10_0_0 -1099,2,28.0,2,0.0,2,111,2,55,54,5.0,0.0,0.0,478.58888411265167,0.0,989.2312827060084,39004.0,42,44,2,11505,201101099,,,440.0,550.0,2.0,0.0,5.0,1.0,3.0,1.8,2039.0577531371193,920.0,0.0,0.0,0.0,31776.0,1,1,3,83.0,5,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1467.82016681866,0.03763255478460312,0.0461927293183113,17653.333333333332,5,3,5,5_0,5_2,5_0_1 -1100,2,69.0,2,0.0,5,112,2,75,75,9.0,0.0,416.377895869032,1227.8762497623215,0.0,0.0,17071.0,50,50,1,11506,201101100,,,400.0,,0.0,2.0,6.0,0.0,2.0,1.5,1320.6938837479925,0.0,900.0,0.0,0.0,53802.0,5,5,1,100.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1644.2541456313536,0.09631856046109505,0.030561208609928135,35868.0,9,5,9,9_1,9_0,9_0_0 -1101,2,63.0,3,0.0,5,112,2,0,77,7.0,126.91648073111057,0.0,2060.1034857123395,173.79103208103552,0.0,31368.0,0,50,1,11508,201101101,,,185.0,,0.0,2.0,5.0,0.0,1.0,1.0,1514.121776910861,0.0,1510.0,0.0,0.0,23225.0,0,5,1,100.0,6,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2360.8109985244855,0.07526176353368036,0.10164955860170014,23225.0,7,4,7,7_1,7_0,7_0_0 -1102,2,87.0,2,0.0,5,111,1,78,78,3.0,0.0,0.0,510.2507971234536,0.0,0.0,30165.0,71,70,2,11509,201101102,,,,,0.0,3.0,4.0,0.0,2.0,1.5,3006.815090242315,0.0,374.0,0.0,0.0,19300.0,5,5,1,78.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,510.2507971234536,0.01691532561324229,0.026437865135930237,12866.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_0 -1103,1,44.0,3,51.0,1,300,4,67,54,4.0,237.96840137083234,485.77421184720396,2769.5430966861254,361.4853467285539,0.0,32801.0,43,60,1,1151,201101103,,,180.0,,2.0,0.0,5.0,3.0,5.0,2.4,1566.0279652532454,0.0,2030.0,0.0,0.0,35596.0,4,1,2,200.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3854.7710566327155,0.11751992489962854,0.10829225352940543,14831.666666666668,3,2,3_1,3_1_1,3_0_1,3_1_0 -1104,2,55.0,2,0.0,1,400,5,0,62,8.0,0.0,208.188947934516,791.2980276246072,52.13730962431066,0.0,11910.0,0,50,1,11510,201101104,,,,,1.0,3.0,6.0,0.0,1.0,1.0,1757.0425059247104,0.0,580.0,0.0,0.0,24790.0,0,1,1,135.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1051.624285183434,0.08829758901624131,0.04242131041482187,24790.0,7,4,7,7_1,7_0,7_1_0 -1105,2,58.0,3,0.0,5,300,6,62,78,6.0,0.0,0.0,2319.3218051066074,135.55700502320772,0.0,49081.0,60,50,1,11511,201101105,,,150.0,,1.0,2.0,6.0,0.0,2.0,1.5,1818.4982012764217,0.0,1700.0,0.0,0.0,30186.0,1,4,1,80.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2454.878810129815,0.050016886577898066,0.08132507818623916,20124.0,6,3,6,6_1,6_0,6_0_0 -1106,2,62.0,3,0.0,5,112,2,77,75,8.0,0.0,0.0,417.4779249191893,1404.231539214767,0.0,28324.0,50,50,1,11512,201101106,,,230.0,,0.0,1.0,4.0,0.0,2.0,1.5,2009.2453240535167,0.0,306.0,0.0,0.0,41360.0,5,5,1,90.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1821.7094641339563,0.06431681486138809,0.044045199809815194,27573.333333333332,8,4,8,8_1,8_0,8_0_0 -1107,2,47.0,3,0.0,8,112,4,63,52,8.0,0.0,0.0,1364.3069441803573,43.44775802025888,0.0,22522.0,71,71,1,11513,201101107,,,320.0,,2.0,0.0,4.0,0.0,2.0,1.5,6265.32008299066,0.0,1000.0,0.0,0.0,40076.0,1,1,2,95.0,8,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1407.754702200616,0.0625057589113141,0.03512712601558579,26717.333333333332,8,4,8,8_1,8_1,8_0_0 -1108,1,21.0,3,150.0,1,111,2,0,52,3.0,0.0,0.0,818.5841665082144,0.0,868.9551604051776,21065.0,0,31,2,11514,201101108,,,,500.0,1.0,0.0,4.0,0.0,2.0,1.5,3168.439655378887,0.0,600.0,500.0,0.0,20140.0,0,1,3,90.0,9,7.0,5,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1687.539326913392,0.080111052784875,0.08379043331248222,13426.666666666666,3,2,3_1,3_0_1,3_3_1,3_1_0 -1109,2,37.0,2,0.0,4,111,1,0,42,10.0,0.0,0.0,0.0,0.0,1120.952156922679,39442.0,0,10,2,11515,201101109,645.0,645.0,,306.0,1.0,0.0,2.0,0.0,1.0,1.0,6724.143598530216,0.0,0.0,645.0,0.0,76425.0,0,1,3,50.0,10,8.0,1,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1120.952156922679,0.028420266642733102,0.014667349125582978,76425.0,10,5,10,10_0,10_4,10_0_1 -1110,1,47.0,4,156.0,6,300,6,0,56,3.0,285.5620816449988,0.0,965.929316479693,291.9689338961397,0.0,37601.0,0,60,1,11516,201101110,,,560.0,,1.0,1.0,4.0,2.0,3.0,1.8,1543.001363060824,0.0,708.0,0.0,0.0,22225.0,0,1,3,100.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1543.4603320208316,0.04104838520307523,0.06944703406167971,12347.222222222223,2,1,2_1,2_1_1,2_0_1,2_0_0 -1111,2,30.0,3,0.0,1,111,4,0,38,7.0,0.0,0.0,502.06495545837146,0.0,0.0,25056.0,0,31,2,11517,201101111,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2395.489935416576,0.0,368.0,0.0,0.0,22632.0,0,1,1,65.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,502.06495545837146,0.020037713739558247,0.022183852750900117,22632.0,7,4,7,7_0,7_2,7_1_0 -1112,2,45.0,2,0.0,1,111,4,0,34,7.0,0.0,0.0,1822.7140774249574,45.18566834106924,0.0,27179.0,0,10,1,11519,201101112,,,312.0,500.0,1.0,2.0,4.0,0.0,1.0,1.0,2197.562973830327,0.0,1336.0,0.0,0.0,24273.0,0,1,3,75.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1867.8997457660266,0.06872584516597471,0.07695380652436974,24273.0,7,4,7,7_1,7_3,7_1_0 -1113,1,34.0,4,207.0,4,111,1,0,62,5.0,0.0,0.0,272.86138883607146,0.0,0.0,32736.0,0,50,2,11520,201101113,,,,63.0,1.0,1.0,1.0,0.0,1.0,1.0,4456.268825223768,0.0,200.0,0.0,0.0,18044.0,0,1,3,24.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,272.86138883607146,0.008335208603252427,0.015122001154736836,18044.0,5,3,5,5_0,5_3,5_0_1 -1114,2,42.0,3,0.0,1,112,2,35,45,9.0,2221.038412794435,0.0,736.7257498573929,93.84715732375918,0.0,43526.0,50,41,1,11522,201101114,,,196.0,,2.0,0.0,5.0,0.0,2.0,1.5,1884.6805693609579,0.0,540.0,0.0,0.0,47049.0,1,1,3,125.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3051.6113199755873,0.07011007949215613,0.06486028013295898,31366.0,9,5,9,9_1,9_0,9_1_0 -1115,2,65.0,2,0.0,5,111,2,75,74,9.0,0.0,0.0,458.30087706874576,0.0,947.2964783304277,63665.0,42,50,2,11523,201101115,,,,770.0,0.0,1.0,4.0,0.0,2.0,1.5,3866.3103126382057,881.0,0.0,0.0,0.0,47851.0,5,5,3,74.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1405.5973553991735,0.022078023331487843,0.029374461461603173,31900.666666666668,9,5,9,9_0,9_4,9_0_0 -1116,0,33.0,1,0.0,99,112,4,56,21,9.0,0.0,0.0,1446.1653608311788,0.0,0.0,27902.0,43,50,2,11526,201101116,,,260.0,,2.0,2.0,4.0,2.0,4.0,2.1,2871.5719932180928,0.0,1060.0,0.0,0.0,76121.0,4,1,5,80.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1446.1653608311788,0.05183016847649555,0.0189982443850078,36248.09523809524,9,5,9,9_0,9_1,9_0_0 -1117,2,48.0,2,0.0,6,112,2,54,46,9.0,0.0,0.0,886.7995137172322,90.37133668213848,0.0,65818.0,43,50,1,11527,201101117,,,340.0,,3.0,1.0,6.0,1.0,3.0,2.0,2160.477011376133,0.0,650.0,0.0,0.0,59746.0,1,1,1,165.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,977.1708503993707,0.014846559457889494,0.016355418779489348,29873.0,9,5,9,9_1,9_1,9_0_0 -1118,2,55.0,3,0.0,1,120,2,0,37,9.0,0.0,0.0,736.7257498573929,93.84715732375918,0.0,65747.0,0,43,1,11528,201101118,,,300.0,,1.0,4.0,5.0,0.0,1.0,1.0,2534.5322276100073,0.0,540.0,0.0,0.0,34940.0,0,1,2,120.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,830.572907181152,0.012632863966130043,0.023771405471698683,34940.0,9,5,9,9_1,9_0,9_1_0 -1119,2,82.0,3,0.0,4,111,2,72,72,5.0,2379.684013708323,0.0,1496.4689302995232,0.0,490.31463577602153,32628.0,50,70,1,1153,201101119,,,1260.0,,1.0,1.0,4.0,0.0,3.0,2.0,2161.2029367234572,456.0,923.0,0.0,0.0,37113.0,5,5,1,100.0,9,7.0,5,8,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4366.467579783868,0.1338257809177353,0.11765331769956264,18556.5,5,3,5,5_1,5_3,5_0_1 -1120,2,65.0,1,0.0,2,111,1,34,34,10.0,0.0,0.0,651.7077571633416,0.0,501.0671497184782,85231.0,20,10,2,11530,201101120,,,,1390.0,2.0,3.0,5.0,0.0,2.0,1.5,2651.1519297124105,466.0,300.0,0.0,0.0,88305.0,1,1,3,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1152.7749068818198,0.013525300734261241,0.0130544692472886,58870.0,10,5,10,10_0,10_4,10_0_1 -1121,2,69.0,1,0.0,5,221,2,77,75,7.0,2538.3296146222115,0.0,753.0974331875572,159.8877495145527,0.0,28017.0,70,71,1,11531,201101121,,,271.0,,0.0,1.0,7.0,0.0,2.0,1.5,1730.9303931967884,0.0,552.0,0.0,0.0,32790.0,5,5,1,130.0,1,2.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3451.3147973243213,0.1231864509877689,0.10525510208369385,21860.0,7,4,7,7_1,7_1,7_0_0 -1122,2,64.0,3,0.0,4,111,1,0,77,5.0,0.0,0.0,444.76406380279644,0.0,114.70208117348345,11948.0,0,50,2,11533,201101122,,,110.0,,0.0,3.0,3.0,0.0,1.0,1.0,2677.2416912515646,0.0,326.0,66.0,0.0,18560.0,0,5,2,49.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,559.4661449762799,0.046825087460351515,0.03014365005260129,18560.0,5,3,5,5_0,5_3,5_0_1 -1123,2,22.0,3,0.0,4,111,1,0,68,5.0,0.0,0.0,122.78762497623215,0.0,156.41192887293198,11198.0,0,71,2,11536,201101123,,,,245.0,2.0,0.0,2.0,1.0,2.0,1.5,3630.1529691670526,0.0,90.0,90.0,0.0,25930.0,0,1,3,51.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,279.19955384916415,0.024932983912231126,0.010767433623184117,17286.666666666668,5,3,5,5_0,5_3,5_0_1 -1124,2,71.0,2,0.0,7,112,6,77,75,5.0,0.0,0.0,1096.9027831210071,217.2387901012944,0.0,14041.0,70,70,1,11538,201101124,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2077.3275795647587,0.0,804.0,0.0,0.0,28370.0,5,5,1,82.0,9,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1314.1415732223015,0.0935931609730291,0.04632152179141,18913.333333333332,5,3,5,5_1,5_1,5_0_0 -1125,2,53.0,1,0.0,6,112,6,75,43,10.0,0.0,485.77421184720396,1650.8114024582324,0.0,0.0,45704.0,50,33,1,11539,201101125,,,370.0,,1.0,0.0,4.0,0.0,2.0,1.5,1755.2334452271277,0.0,1210.0,0.0,0.0,61011.0,7,1,2,150.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2136.585614305436,0.046748328686885963,0.035019678653118884,40674.0,10,5,10,10_1,10_1,10_0_0 -1126,1,41.0,3,339.0,4,111,1,0,56,4.0,1513.4790327184935,0.0,504.79356934673217,278.0656513296568,0.0,19520.0,0,50,2,1154,201101126,954.0,954.0,,,1.0,0.0,4.0,3.0,4.0,2.1,3118.9544068427604,0.0,370.0,0.0,0.0,31368.0,0,1,3,85.0,8,7.0,2,4,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2296.3382533948825,0.11764027937473784,0.07320639675449128,14937.142857142857,4,2,4_1,4_0_1,4_3_1,4_0_1 -1127,1,36.0,4,160.0,99,111,2,0,55,3.0,0.0,0.0,166.46569882179188,0.0,344.0804461586116,21530.0,0,50,1,11540,201101127,,,205.0,327.0,1.0,0.0,3.0,1.0,2.0,1.3,1476.3769557304458,320.0,0.0,0.0,0.0,18030.0,0,1,3,55.0,5,4.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,510.5461449804035,0.02371324407712046,0.028316480586822155,13869.23076923077,3,2,3_1,3_1_1,3_2_1,3_0_0 -1128,1,40.0,3,55.0,1,400,5,0,62,2.0,0.0,499.65347504283835,818.5841665082144,139.0328256648284,0.0,41418.0,0,31,1,11541,201101128,,,320.0,,1.0,0.0,3.0,2.0,3.0,1.6,3465.1961691834936,0.0,600.0,0.0,0.0,19638.0,0,1,2,70.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1457.2704672158811,0.035184472142930155,0.07420666397881052,12273.75,2,1,2_1,2_1_1,2_0_1,2_1_0 -1129,2,51.0,2,0.0,8,300,2,22,22,6.0,3490.203220105541,624.566843803548,2046.460416270536,0.0,0.0,46257.0,41,71,1,11545,201101129,,,,,2.0,0.0,6.0,1.0,3.0,2.0,3465.0911399998545,0.0,1500.0,0.0,0.0,39300.0,1,1,2,180.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6161.230480179625,0.13319563482672084,0.156774312472764,19650.0,6,3,6,6_1,6_0,6_0_0 -1130,2,69.0,3,0.0,1,112,2,77,72,7.0,0.0,0.0,2455.752499524643,0.0,152.93610823131127,29214.0,50,50,1,11546,201101130,,,206.0,,0.0,2.0,6.0,0.0,2.0,1.5,1925.2042434586995,0.0,1800.0,88.0,0.0,32570.0,5,5,1,110.0,9,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2608.6886077559543,0.08929583787759138,0.08009482983592123,21713.333333333332,6,3,6,6_1,6_0,6_1_0 -1131,1,64.0,4,248.0,1,111,2,0,78,3.0,0.0,0.0,24.557524995246432,0.0,206.81132817643228,8917.0,0,60,2,11547,201101131,,,,149.0,0.0,3.0,2.0,0.0,1.0,1.0,2318.829361341189,0.0,18.0,119.0,0.0,12736.0,0,5,3,40.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,231.36885317167872,0.025946938787897132,0.018166524275414472,12736.0,3,2,3_1,3_0_1,3_2_1,3_1_0 -1132,2,52.0,2,0.0,4,111,4,54,38,7.0,0.0,0.0,1807.7067010389733,0.0,705.5915902490042,55129.0,31,50,1,11548,201101132,,,453.0,,3.0,0.0,7.0,2.0,4.0,2.5,3081.3458995734663,0.0,1325.0,406.0,0.0,59017.0,1,1,2,150.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2513.2982912879775,0.04558940469241193,0.04258600557954449,23606.8,7,4,7,7_1,7_2,7_0_1 -1133,2,63.0,2,0.0,1,112,2,0,54,3.0,63.458240365555284,0.0,327.43366660328576,50.3993993035003,0.0,14451.0,0,12,1,11549,201101133,,,,,1.0,1.0,4.0,0.0,1.0,1.0,2133.0868842401455,0.0,240.0,0.0,0.0,13756.0,0,4,1,60.0,9,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,441.29130627234133,0.030537077452933454,0.03207991467522109,13756.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -1134,2,58.0,5,0.0,8,112,2,56,47,9.0,0.0,0.0,3533.5549854271253,2937.0684421695005,0.0,50213.0,50,50,1,1155,201101134,,,440.0,,4.0,2.0,5.0,1.0,5.0,2.8,844.767214798914,0.0,2590.0,0.0,0.0,85440.0,1,1,2,110.0,10,0.0,5,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6470.623427596625,0.12886350999933535,0.07573295210202043,30514.285714285717,9,5,9,9_1,9_0,9_0_0 -1135,2,74.0,1,0.0,1,111,2,0,74,10.0,3966.1400228472053,0.0,2046.460416270536,55.61313026593137,0.0,48794.0,0,20,1,11550,201101135,,,468.0,,0.0,0.0,5.0,0.0,1.0,1.0,2191.3365673104113,0.0,1500.0,0.0,0.0,37230.0,0,5,3,111.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,6068.213569383673,0.12436392936393148,0.16299257505731057,37230.0,9,5,9,9_1,9_3,9_1_0 -1136,2,35.0,4,0.0,99,111,1,0,52,4.0,0.0,0.0,32.743366660328576,0.0,33.02029609539675,13770.0,0,71,2,11551,201101136,,,,224.0,1.0,0.0,3.0,1.0,2.0,1.3,3134.3078786559604,0.0,24.0,19.0,0.0,20680.0,0,1,3,55.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,65.76366275572533,0.0047758651238725735,0.003180061061688846,15907.692307692307,4,2,4_0,4_0_0,4_4_0,4_0_0 -1137,2,34.0,2,0.0,2,111,1,46,38,8.0,0.0,0.0,1560.615926454299,0.0,3225.754182736984,53135.0,10,10,2,11552,201101137,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3049.63026362185,3000.0,0.0,0.0,0.0,49488.0,1,1,2,64.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4786.370109191283,0.09007942239938425,0.09671779237777406,27493.333333333332,8,4,8,8_0,8_4,8_0_1 -1138,2,69.0,4,0.0,9,300,2,71,71,3.0,0.0,0.0,1800.8851663180715,281.54147197127753,0.0,16085.0,71,71,1,11554,201101138,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2796.353645952776,0.0,1320.0,0.0,0.0,19540.0,5,5,2,99.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2082.426638289349,0.12946388798814726,0.10657249940068315,13026.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -1139,2,61.0,2,0.0,1,112,2,77,74,8.0,0.0,0.0,3515.8189951527806,0.0,0.0,40303.0,20,10,8,11555,201101139,,,250.0,,1.0,0.0,6.0,1.0,3.0,2.0,1752.8998816891942,0.0,2577.0,0.0,0.0,56555.0,5,5,1,200.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,3515.8189951527806,0.08723467223662706,0.06216636893559863,28277.5,8,4,8,8_0,8_0,8_1_0 -1140,2,78.0,1,0.0,1,111,2,0,77,4.0,1772.0713622081314,0.0,274.2256957802518,152.93610823131127,0.0,14812.0,0,50,1,11558,201101140,,,119.0,,0.0,0.0,2.0,0.0,1.0,1.0,4484.705235961941,0.0,201.0,0.0,0.0,15240.0,0,5,1,72.0,8,6.0,1,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2199.2331662196943,0.14847644924518597,0.144306638203392,15240.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -1141,1,39.0,3,279.0,1,221,6,0,55,3.0,0.0,0.0,818.5841665082144,0.0,1235.6542380961625,10427.0,0,43,1,1156,201101141,,,200.0,,1.0,0.0,5.0,2.0,3.0,1.8,1810.0796682748996,0.0,600.0,711.0,0.0,24663.0,0,1,3,80.0,1,2.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2054.238404604377,0.1970114514821499,0.08329231661210627,13701.666666666666,3,2,3_1,3_1_1,3_1_1,3_1_0 -1142,1,29.0,3,18.0,3,111,2,68,64,3.0,0.0,0.0,564.823074890668,0.0,1042.7461924862132,22645.0,50,71,2,11561,201101142,,,,270.0,2.0,0.0,3.0,1.0,3.0,1.8,3678.866327254831,0.0,414.0,600.0,0.0,22526.0,1,1,3,65.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1607.5692673768813,0.0709900316792617,0.07136505670677801,12514.444444444443,2,1,2_1,2_0_1,2_2_1,2_0_1 -1143,2,77.0,4,0.0,4,111,1,0,77,3.0,0.0,0.0,286.1129198499548,0.0,591.3882668351138,21961.0,0,70,2,11562,201101143,,,120.0,,0.0,3.0,3.0,0.0,1.0,1.0,2618.461092494148,550.0,0.0,0.0,0.0,12618.0,0,5,1,65.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,877.5011866850685,0.03995725088498104,0.0695436033194697,12618.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -1144,0,61.0,3,0.0,1,111,2,52,53,8.0,0.0,0.0,428.64917446611406,0.0,886.007148858425,30345.0,50,70,2,11563,201101144,,,,,2.0,2.0,3.0,0.0,2.0,1.5,2828.560434504865,824.0,0.0,0.0,0.0,42326.0,1,1,5,70.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1314.656323324539,0.04332365540697113,0.031060254295812006,28217.333333333332,8,4,8,8_0,8_3,8_1_0 -1145,2,56.0,2,0.0,5,211,4,0,63,6.0,0.0,0.0,1091.4455553442858,0.0,0.0,19488.0,0,50,2,11566,201101145,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2266.652871442527,0.0,800.0,0.0,0.0,21520.0,0,1,1,75.0,1,2.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1091.4455553442858,0.05600603219131187,0.05071773026692778,21520.0,6,3,6,6_0,6_1,6_0_0 -1146,2,50.0,3,0.0,1,112,2,85,85,3.0,0.0,902.152107716236,107.78024859024822,0.0,0.0,34403.0,71,71,1,11567,201101146,,,,,1.0,2.0,5.0,1.0,3.0,2.0,3236.3143636880145,0.0,79.0,0.0,0.0,27570.0,5,5,1,110.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1009.9323563064842,0.02935593861891359,0.03663156896287574,13785.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -1147,2,77.0,3,0.0,1,400,5,0,78,4.0,0.0,832.755791738064,259.2183193942679,312.82385774586396,0.0,9883.0,0,70,1,11568,201101147,,,101.0,,0.0,3.0,4.0,0.0,1.0,1.0,2936.1852742593483,0.0,190.0,0.0,0.0,14844.0,0,5,1,56.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1404.797968878196,0.14214286844866902,0.09463742716775773,14844.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -1148,2,52.0,2,0.0,3,111,2,75,64,10.0,6742.43803884025,0.0,822.6770873407554,0.0,0.0,65651.0,31,50,1,11569,201101148,,,395.0,,1.0,2.0,5.0,0.0,2.0,1.5,3904.412832342617,0.0,603.0,0.0,0.0,67213.0,5,1,1,120.0,8,6.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,7565.115126181005,0.11523229084371912,0.11255434404328038,44808.666666666664,10,5,10,10_1,10_2,10_0_1 -1149,2,73.0,4,0.0,4,111,6,0,75,5.0,1024.850581903718,0.0,759.918967908459,0.0,0.0,19238.0,0,50,1,1157,201101149,,,,,0.0,1.0,3.0,0.0,1.0,1.0,1644.7906789172966,0.0,557.0,0.0,0.0,18877.0,0,5,1,120.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1784.769549812177,0.09277313389188986,0.09454730888447195,18877.0,5,3,5,5_1,5_3,5_0_1 -1150,2,69.0,3,0.0,3,111,1,34,74,9.0,0.0,0.0,1637.1683330164287,0.0,1042.7461924862132,50355.0,20,20,2,11572,201101150,,,,,2.0,4.0,6.0,0.0,4.0,2.5,897.7490242153904,0.0,1200.0,600.0,0.0,79824.0,1,5,1,120.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2679.914525502642,0.05322042548908037,0.033572791710546224,31929.6,9,5,9,9_0,9_4,9_0_1 -1151,2,78.0,2,0.0,3,111,2,77,75,7.0,1269.1648073111057,0.0,1043.4908064572173,0.0,1169.8735169392796,29938.0,50,41,1,11574,201101151,,,200.0,,0.0,2.0,5.0,0.0,2.0,1.5,1415.0078190619047,1088.0,350.0,0.0,0.0,34055.0,5,5,1,85.0,8,6.0,3,5,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3482.5291307076022,0.11632470875501377,0.1022619037059933,22703.333333333332,7,4,7,7_1,7_2,7_0_1 -1152,2,83.0,1,0.0,4,111,1,0,77,5.0,0.0,0.0,64.1224263764768,0.0,0.0,21043.0,0,60,2,11575,201101152,,,,347.0,0.0,4.0,4.0,0.0,1.0,1.0,2869.9265630293453,0.0,47.0,0.0,0.0,18190.0,0,5,3,86.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,64.1224263764768,0.003047209351160804,0.0035251471344957008,18190.0,5,3,5,5_0,5_2,5_0_1 -1153,2,84.0,4,0.0,1,400,2,71,71,2.0,0.0,0.0,1964.6019996197144,3774.7412168000915,0.0,26333.0,44,50,1,11576,201101153,,,430.0,,0.0,2.0,5.0,0.0,2.0,1.5,1783.0072739083462,0.0,1440.0,0.0,0.0,16787.0,5,5,5,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5739.343216419806,0.2179525012881102,0.34189213179363825,11191.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -1154,1,25.0,2,71.0,1,112,6,67,63,6.0,0.0,0.0,1866.3718996387288,100.7987986070006,0.0,35234.0,43,50,1,11577,201101154,,,320.0,,2.0,0.0,4.0,2.0,4.0,2.1,4306.762763469834,0.0,1368.0,0.0,0.0,44676.0,4,1,3,90.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1967.1706982457295,0.05583160294731593,0.04403193433265577,21274.285714285714,6,3,6,6_1,6_0,6_1_0 -1155,2,31.0,2,0.0,1,111,2,37,42,7.0,0.0,0.0,643.9528776531287,0.0,2525.183696137446,40407.0,10,20,1,11578,201101155,,,172.0,,2.0,0.0,6.0,1.0,3.0,1.8,1291.2292101057972,0.0,472.0,1453.0,0.0,42489.0,1,1,2,147.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3169.136573790575,0.07843038517560262,0.0745872243119531,23605.0,7,4,7,7_1,7_3,7_1_0 -1156,2,55.0,2,0.0,1,112,2,46,37,9.0,6028.532834727753,0.0,1282.4485275295358,86.89551604051776,0.0,36099.0,31,31,1,11580,201101156,,,204.0,,2.0,2.0,4.0,0.0,2.0,1.5,2895.2994806120664,0.0,940.0,0.0,0.0,52114.0,1,1,2,120.0,10,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,7397.876878297806,0.20493301416376647,0.14195565257508166,34742.666666666664,9,5,9,9_1,9_0,9_1_0 -1157,2,74.0,3,0.0,4,111,1,86,78,4.0,0.0,0.0,365.63426104033573,173.79103208103552,0.0,26995.0,71,71,2,11581,201101157,,,,391.0,1.0,5.0,5.0,1.0,3.0,2.0,4508.944646925959,0.0,268.0,0.0,0.0,32970.0,6,5,3,90.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,539.4252931213713,0.019982415007274358,0.016361094726156242,16485.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -1158,2,78.0,2,0.0,2,112,2,77,78,3.0,3061.8600976380426,0.0,409.2920832541072,180.74267336427695,0.0,21566.0,71,71,1,11582,201101158,,,782.0,,0.0,4.0,4.0,0.0,2.0,1.5,2971.944357925941,0.0,300.0,0.0,0.0,20180.0,5,5,1,70.0,9,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3651.8948542564267,0.16933575323455563,0.1809660482783165,13453.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_1 -1159,1,32.0,4,395.0,1,112,4,67,55,1.0,0.0,0.0,442.03544991443573,93.84715732375918,0.0,18621.0,71,71,1,11584,201101159,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2850.6168441743835,0.0,324.0,0.0,0.0,11020.0,4,4,2,90.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,535.8826072381949,0.02877840111906959,0.04862818577479082,5247.619047619048,1,1,1_1,1_1_1,1_0_1,1_1_0 -1160,0,55.0,3,0.0,4,111,1,56,56,8.0,0.0,0.0,341.0767360450893,0.0,173.79103208103552,19959.0,50,60,2,11585,201101160,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3000.787231380257,0.0,250.0,100.0,0.0,39000.0,1,1,5,40.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,514.8677681261248,0.025796270761367042,0.01320173764425961,26000.0,8,4,8,8_0,8_4,8_0_1 -1161,1,21.0,3,233.0,1,111,2,0,46,6.0,0.0,0.0,204.6460416270536,0.0,1216.5372245672486,11418.0,0,41,2,11587,201101161,,,,167.0,1.0,0.0,2.0,0.0,1.0,1.0,3437.5673858388604,0.0,150.0,700.0,0.0,19853.0,0,1,3,52.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1421.1832661943022,0.12446866931111422,0.07158531537774152,19853.0,6,3,6,6_0,6_3,6_1_0 -1162,2,39.0,2,0.0,1,111,2,46,23,6.0,0.0,0.0,749.0956446980634,0.0,1548.3620077137525,30977.0,20,10,2,1159,201101162,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3019.8178991609147,1440.0,0.0,0.0,0.0,42284.0,1,1,1,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2297.457652411816,0.07416656398010835,0.05433397153561196,20135.238095238095,6,3,6,6_0,6_4,6_1_0 -1163,2,63.0,3,0.0,4,300,2,78,72,3.0,1665.7788095958263,0.0,2896.1402494319304,180.74267336427695,690.3113951057146,21192.0,60,50,1,11591,201101163,,,242.0,,1.0,2.0,5.0,1.0,3.0,2.0,1632.429612082951,642.0,1878.0,0.0,0.0,25971.0,6,5,1,100.0,0,0.0,4,5,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5432.9731274977485,0.25636906037645096,0.20919383649061446,12985.5,3,2,3_0,3_1_0,3_0_0,3_0_1 -1164,2,82.0,1,0.0,8,111,2,0,78,7.0,0.0,0.0,300.1475277196786,0.0,502.25608271419264,28707.0,0,50,2,11592,201101164,,,,496.0,0.0,4.0,3.0,0.0,1.0,1.0,2539.5879003457594,0.0,220.0,289.0,0.0,22217.0,0,5,3,68.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,802.4036104338712,0.02795149651422549,0.03611664988224653,22217.0,7,4,7,7_0,7_3,7_0_0 -1165,0,80.0,2,0.0,3,111,1,0,75,9.0,0.0,0.0,586.6519859975537,0.0,0.0,19723.0,0,12,2,11593,201101165,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3427.8484502936703,0.0,430.0,0.0,0.0,31025.0,0,5,5,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,586.6519859975537,0.02974456147632478,0.018909008412491657,31025.0,9,5,9,9_0,9_4,9_0_1 -1166,2,73.0,3,0.0,7,112,4,0,77,8.0,0.0,0.0,1132.3747636696964,0.0,0.0,28186.0,0,41,2,11594,201101166,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2814.2151998455447,0.0,830.0,0.0,0.0,25281.0,0,5,5,84.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1132.3747636696964,0.04017507853791586,0.04479153370791094,25281.0,8,4,8,8_0,8_1,8_0_0 -1167,2,70.0,3,0.0,3,111,1,0,77,4.0,0.0,0.0,313.79059716148214,0.0,1228.7025968129212,17522.0,0,70,2,11595,201101167,627.0,627.0,,307.0,0.0,4.0,5.0,0.0,1.0,1.0,3403.1139654158637,0.0,230.0,707.0,0.0,15909.0,0,5,3,100.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1542.4931939744033,0.08803179967894095,0.0969572690913573,15909.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -1168,2,60.0,3,0.0,9,221,2,22,22,10.0,0.0,0.0,1348.6733761938578,0.0,7873.531421896714,50346.0,70,41,1,11597,201101168,,,600.0,,2.0,3.0,8.0,0.0,2.0,1.5,4350.047173986826,1019.0,600.0,3900.0,0.0,107941.0,1,1,2,600.0,1,1.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,9222.204798090572,0.18317651448159877,0.08543745933510503,71960.66666666667,10,5,10,10_1,10_1,10_0_0 -1169,2,67.0,2,0.0,6,111,4,0,74,9.0,0.0,0.0,3792.773304821393,0.0,0.0,18471.0,0,50,1,11599,201101169,,,353.0,,0.0,1.0,5.0,0.0,1.0,1.0,1439.0974587518851,0.0,2780.0,0.0,0.0,33564.0,0,5,1,170.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3792.773304821393,0.20533665231018317,0.11300123062869125,33564.0,9,5,9,9_1,9_2,9_0_0 -1170,2,52.0,3,0.0,6,111,2,77,54,5.0,0.0,0.0,1950.9589301779108,0.0,0.0,48999.0,60,50,1,1160,201101170,,,507.0,,2.0,3.0,6.0,1.0,3.0,2.0,1275.275994637106,0.0,1430.0,0.0,0.0,37428.0,5,1,2,110.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1950.9589301779108,0.03981630094854815,0.05212565272464227,18714.0,5,3,5,5_1,5_3,5_0_0 -1171,2,29.0,3,0.0,99,111,1,0,46,4.0,0.0,0.0,573.00891655575,0.0,0.0,22761.0,0,71,2,11602,201101171,,,,500.0,1.0,0.0,1.0,0.0,1.0,1.0,3687.8302207467145,0.0,420.0,0.0,0.0,14725.0,0,1,3,32.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,573.00891655575,0.025175032580104128,0.038914018102258065,14725.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -1172,1,40.0,2,340.0,3,221,2,0,56,2.0,0.0,0.0,409.2920832541072,0.0,1390.3282566482842,10572.0,0,71,2,11603,201101172,,,,,1.0,0.0,4.0,1.0,2.0,1.3,3210.4840415226927,0.0,300.0,800.0,0.0,15471.0,0,1,3,77.0,1,2.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1799.6203399023914,0.17022515511751715,0.11632217309174529,11900.76923076923,2,1,2_1,2_0_1,2_1_1,2_0_1 -1173,2,45.0,2,0.0,5,111,6,56,48,8.0,0.0,191.5338320997547,1637.1683330164287,90.37133668213848,0.0,28943.0,71,50,1,11607,201101173,,,,,3.0,0.0,4.0,1.0,3.0,2.0,2356.867405566215,0.0,1200.0,0.0,0.0,53371.0,1,1,1,110.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1919.073501798322,0.06630527249415478,0.03595723336265616,26685.5,8,4,8,8_1,8_3,8_0_0 -1174,2,29.0,2,0.0,3,111,1,0,46,6.0,0.0,0.0,266.03985411516965,0.0,72.99223347403492,22637.0,0,10,2,1161,201101174,,,,600.0,1.0,0.0,1.0,0.0,1.0,1.0,3319.1454399728686,0.0,195.0,42.0,0.0,20951.0,0,1,3,33.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,339.0320875892046,0.014976900101126678,0.016182143458030863,20951.0,6,3,6,6_0,6_4,6_0_1 -1175,2,50.0,3,0.0,1,111,5,0,52,1.0,0.0,0.0,1459.8084302729822,48.661488982689946,0.0,32039.0,0,43,1,11610,201101175,,,282.0,,1.0,0.0,6.0,2.0,3.0,2.0,1413.8662182543787,0.0,1070.0,0.0,0.0,15131.0,0,1,1,135.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1508.469919255672,0.0470823034194473,0.09969400034734466,7565.5,1,1,1_0,1_1_0,1_3_0,1_1_0 -1176,2,90.0,4,0.0,5,111,2,0,86,2.0,0.0,0.0,286.1129198499548,0.0,591.3882668351138,14203.0,0,70,2,11611,201101176,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2826.544038092354,550.0,0.0,0.0,0.0,9640.0,0,6,1,60.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,877.5011866850685,0.061782805511868516,0.0910270940544677,9640.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -1177,1,41.0,2,90.0,4,111,4,54,63,4.0,0.0,0.0,955.0148609262501,93.84715732375918,0.0,23142.0,10,50,2,11612,201101177,,,180.0,,2.0,2.0,2.0,0.0,2.0,1.5,1907.782296863941,0.0,700.0,0.0,0.0,23691.0,1,1,3,46.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1048.8620182500092,0.04532287694451686,0.04427259373812879,15794.0,4,2,4_1,4_0_1,4_2_1,4_0_1 -1178,2,52.0,3,0.0,3,111,1,68,63,7.0,0.0,0.0,818.5841665082144,0.0,625.6477154917279,36799.0,71,71,2,11613,201101178,,,,,5.0,1.0,4.0,4.0,6.0,3.3,2981.237686319186,0.0,600.0,360.0,0.0,78770.0,1,1,3,96.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1444.2318819999423,0.03924649805701085,0.01833479601371007,23869.69696969697,7,4,7,7_0,7_4,7_0_1 -1179,2,39.0,3,0.0,8,221,5,46,37,6.0,0.0,485.77421184720396,750.3688192991965,0.0,0.0,44609.0,43,50,1,11615,201101179,,,240.0,,2.0,0.0,5.0,1.0,3.0,1.8,3972.0311190829143,0.0,550.0,0.0,0.0,38150.0,1,1,2,120.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1236.1430311464005,0.027710619631607983,0.032402176438962,21194.444444444445,6,3,6,6_1,6_1,6_0_0 -1180,2,75.0,2,0.0,1,120,6,0,71,2.0,1348.4876077680499,0.0,466.5929749096822,145.98446694806984,0.0,14495.0,0,71,1,11616,201101180,,,196.0,,0.0,4.0,6.0,0.0,1.0,1.0,3119.2319454254757,0.0,342.0,0.0,0.0,9774.0,0,5,1,83.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1961.065049625802,0.13529251808387732,0.20064099136748537,9774.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -1181,2,60.0,1,0.0,2,111,2,34,33,10.0,0.0,0.0,1485.1445738754699,0.0,4701.7934916941385,145085.0,10,10,1,11617,201101181,,,734.0,,2.0,3.0,9.0,2.0,4.0,2.5,1304.1811661974587,1659.0,456.0,1679.0,0.0,195553.0,1,1,1,180.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,6186.938065569609,0.042643540445736004,0.0316381649249544,78221.2,10,5,10,10_1,10_4,10_0_1 -1182,2,68.0,1,0.0,8,112,4,72,74,8.0,0.0,0.0,1668.547392732577,104.27461924862132,0.0,46397.0,42,12,1,11618,201101182,,,288.0,,0.0,2.0,5.0,0.0,2.0,1.5,1967.705624357852,0.0,1223.0,0.0,0.0,41869.0,6,5,2,166.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1772.8220119811983,0.038209841411755034,0.04234211497721938,27912.666666666668,8,4,8,8_1,8_2,8_0_0 -1183,2,46.0,3,0.0,1,111,2,22,56,1.0,951.8736054833294,0.0,818.5841665082144,0.0,0.0,24742.0,50,71,1,11619,201101183,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2193.0817433202355,0.0,600.0,0.0,0.0,9276.0,4,4,1,145.0,8,7.0,3,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1770.4577719915437,0.07155677681640707,0.1908643566183208,6184.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -1184,1,56.0,4,39.0,5,111,1,0,68,2.0,0.0,0.0,638.4956498764072,0.0,1564.1192887293198,23278.0,0,70,2,11622,201101184,720.0,720.0,,348.0,3.0,1.0,4.0,2.0,3.0,2.0,1689.8592036387743,0.0,468.0,900.0,0.0,22808.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2202.614938605727,0.0946221728071882,0.0965720334358877,11404.0,2,1,2_1,2_0_1,2_4_1,2_0_0 -1185,2,69.0,3,0.0,99,400,2,0,75,3.0,0.0,0.0,259.2183193942679,0.0,1171.3515562261794,11659.0,0,50,1,11624,201101185,,,254.0,,0.0,3.0,2.0,0.0,1.0,1.0,1304.5007029820258,0.0,190.0,674.0,0.0,12853.0,0,5,3,64.0,0,1.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1430.5698756204472,0.12270090707783234,0.11130240999147648,12853.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -1186,2,46.0,2,0.0,2,112,6,54,64,6.0,2062.392811880547,652.3253701948167,1459.8084302729822,542.2280200928309,0.0,45412.0,50,50,1,11625,201101186,,,324.0,,2.0,0.0,6.0,2.0,4.0,2.3,875.3010390159945,0.0,1070.0,0.0,0.0,46687.0,1,1,1,150.0,8,0.0,4,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4716.754632441177,0.10386582032152684,0.10102929364579384,20298.695652173916,6,3,6,6_1,6_0,6_0_1 -1187,2,63.0,1,0.0,6,221,2,75,78,4.0,2332.090333434157,0.0,642.5885707089483,145.98446694806984,0.0,27954.0,70,50,1,11629,201101187,,,367.0,,0.0,2.0,5.0,0.0,2.0,1.5,2068.513480379196,0.0,471.0,0.0,0.0,24549.0,5,5,1,130.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3120.663371091175,0.11163566470241021,0.1271197755953878,16366.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -1188,2,36.0,3,0.0,9,300,5,52,43,7.0,1332.6230476766611,216.51650585189662,639.8599568205875,145.98446694806984,0.0,42841.0,42,20,1,1163,201101188,,,280.0,,2.0,0.0,7.0,1.0,3.0,1.8,1872.791428755877,0.0,469.0,0.0,0.0,42684.0,1,1,2,190.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2334.9839772972155,0.054503489117836076,0.05470396348273863,23713.333333333332,7,4,7,7_1,7_0,7_0_0 -1189,2,68.0,3,0.0,1,112,2,0,77,7.0,0.0,0.0,1324.742042799127,0.0,4866.148898268994,22778.0,0,71,1,11630,201101189,,,,,0.0,1.0,7.0,0.0,1.0,1.0,2838.2985177301844,0.0,971.0,2800.0,0.0,23882.0,0,5,1,200.0,6,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6190.890941068121,0.2717925604121574,0.2592283284929286,23882.0,7,4,7,7_1,7_0,7_1_0 -1191,2,72.0,3,0.0,4,111,1,0,77,3.0,0.0,0.0,382.0059443705,0.0,95.58506764456953,10643.0,0,50,8,11633,201101191,,,,233.0,0.0,2.0,4.0,0.0,1.0,1.0,1492.9072398051744,0.0,280.0,55.0,0.0,13624.0,0,5,3,65.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,477.5910120150695,0.04487372094475895,0.03505512419370739,13624.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -1192,2,37.0,1,0.0,2,111,2,54,46,10.0,0.0,0.0,499.33634157001075,0.0,521.3730962431066,37246.0,20,20,1,11635,201101192,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2227.3043730809486,0.0,366.0,300.0,0.0,80509.0,1,1,2,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1020.7094378131173,0.02740453841521552,0.012678202906670277,53672.666666666664,10,5,10,10_1,10_4,10_0_1 -1193,2,74.0,2,0.0,1,111,1,0,77,4.0,0.0,0.0,573.00891655575,0.0,95.58506764456953,24680.0,0,41,2,11636,201101193,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3928.2813099940854,0.0,420.0,55.0,0.0,15202.0,0,5,1,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,668.5939842003196,0.027090517998392204,0.04398065940009996,15202.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -1194,2,57.0,2,0.0,5,111,2,77,47,6.0,0.0,0.0,664.417481815834,0.0,1572.8088403333716,26518.0,71,43,1,11637,201101194,,,317.0,,1.0,2.0,4.0,0.0,2.0,1.5,2387.0682497352077,0.0,487.0,905.0,0.0,32080.0,6,1,1,110.0,6,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2237.2263221492058,0.08436632936681521,0.06973897512933933,21386.666666666668,6,3,6,6_1,6_2,6_0_0 -1195,1,48.0,3,240.0,5,111,1,0,85,4.0,0.0,0.0,311.0619832731214,0.0,0.0,15306.0,0,50,2,11639,201101195,,,60.0,,0.0,0.0,1.0,0.0,1.0,1.0,3318.18285477914,0.0,228.0,0.0,0.0,15958.0,0,7,3,22.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,311.0619832731214,0.02032287882354119,0.019492541876997206,15958.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -1196,2,70.0,4,0.0,1,111,2,0,72,3.0,0.0,0.0,982.3009998098572,0.0,816.8178507808669,13136.0,0,50,1,1164,201101196,,,150.0,,0.0,3.0,6.0,0.0,1.0,1.0,1360.5876027934544,0.0,720.0,470.0,0.0,12646.0,0,5,1,83.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1799.1188505907242,0.136960935641803,0.14226781991070095,12646.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -1197,2,55.0,1,0.0,1,111,2,0,45,9.0,0.0,0.0,468.18477793628966,0.0,967.7262548210953,42429.0,0,31,2,11640,201101197,,,94.0,384.0,1.0,2.0,3.0,0.0,1.0,1.0,2832.404450907986,900.0,0.0,0.0,0.0,32393.0,0,1,3,60.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1435.9110327573849,0.03384267912883605,0.044327818749649146,32393.0,9,5,9,9_0,9_3,9_1_0 -1198,1,38.0,5,259.0,1,111,6,0,81,3.0,0.0,0.0,573.00891655575,0.0,521.3730962431066,5458.0,0,31,2,11641,201101198,,,,71.0,1.0,0.0,1.0,0.0,1.0,1.0,3354.9078491860128,0.0,420.0,300.0,0.0,13918.0,0,4,3,33.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1094.3820127988565,0.20050971286164465,0.07863069498482947,13918.0,3,2,3_1,3_0_1,3_3_1,3_1_0 -1199,2,27.0,3,0.0,2,112,2,65,52,7.0,0.0,0.0,504.79356934673217,0.0,1737.9103208103552,40469.0,71,31,1,11643,201101199,,,300.0,,2.0,0.0,3.0,1.0,3.0,1.8,2297.7563411732535,0.0,370.0,1000.0,0.0,42640.0,4,1,3,80.0,10,1.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2242.7038901570872,0.055417823276015896,0.05259624507873094,23688.888888888887,7,4,7,7_1,7_1,7_0_1 -1200,2,54.0,3,0.0,3,111,2,0,34,9.0,0.0,0.0,482.9646582398465,0.0,1730.9586795271139,37729.0,0,10,8,11644,201101200,,,320.0,,1.0,1.0,3.0,0.0,1.0,1.0,2889.441062208737,0.0,354.0,996.0,0.0,33052.0,0,1,3,80.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2213.9233377669602,0.05867961880163694,0.06698303696499334,33052.0,9,5,9,9_0,9_3,9_0_1 -1201,2,63.0,4,0.0,5,300,2,54,78,6.0,3172.912018277764,0.0,843.1416915034608,225.92834170534618,0.0,26641.0,70,50,1,11647,201101201,,,,,1.0,3.0,4.0,0.0,2.0,1.5,1658.3328347824356,0.0,618.0,0.0,0.0,31776.0,7,5,1,86.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4241.982051486571,0.15922758347984578,0.13349641400700438,21184.0,6,3,6,6_1,6_0,6_0_0 -1202,2,46.0,3,0.0,1,221,2,0,55,5.0,0.0,0.0,3323.4517160233504,215.50087978048404,0.0,37196.0,0,50,1,11649,201101202,,,,,1.0,1.0,5.0,1.0,2.0,1.5,1143.5479976990002,0.0,2436.0,0.0,0.0,28432.0,0,1,1,73.0,1,3.0,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3538.9525958038344,0.09514336476513158,0.12447075815292045,18954.666666666668,5,3,5,5_1,5_1,5_1_0 -1203,2,59.0,1,0.0,1,111,4,56,74,5.0,0.0,0.0,2728.6138883607146,0.0,0.0,28883.0,50,50,1,1165,201101203,,,493.0,,1.0,3.0,8.0,0.0,2.0,1.5,1137.3889318902327,0.0,2000.0,0.0,0.0,25157.0,1,4,1,120.0,5,4.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2728.6138883607146,0.09447127681891475,0.10846340534883787,16771.333333333332,4,2,4_0,4_1_0,4_2_0,4_1_0 -1204,1,25.0,2,60.0,9,111,2,67,62,7.0,79.32280045694411,0.0,1555.3099163656073,0.0,0.0,33402.0,43,31,2,11650,201101204,,,,350.0,2.0,0.0,2.0,0.0,2.0,1.5,3209.0563405473936,0.0,1140.0,0.0,0.0,34483.0,1,1,3,49.0,9,7.0,3,3,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1634.6327168225514,0.04893816887679035,0.04740401695973527,22988.666666666668,7,4,7,7_0,7_3,7_0_0 -1205,2,25.0,5,0.0,1,111,1,0,46,9.0,0.0,0.0,0.0,0.0,0.0,7577.0,0,43,2,11651,201101205,,,,300.0,1.0,0.0,3.0,0.0,1.0,1.0,3872.978279617956,0.0,0.0,0.0,0.0,31954.0,0,4,4,50.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,31954.0,9,5,9,9_0,9_4,9_1_0 -1206,2,68.0,3,0.0,5,112,2,0,78,4.0,0.0,0.0,204.6460416270536,52.13730962431066,0.0,34035.0,0,50,1,11653,201101206,,,250.0,,0.0,2.0,4.0,0.0,1.0,1.0,3015.065271494822,0.0,150.0,0.0,0.0,15478.0,0,5,1,90.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,256.78335125136425,0.007544684919975444,0.01659021522492339,15478.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -1207,2,87.0,3,0.0,4,111,2,78,72,3.0,0.0,0.0,395.6490138123036,0.0,1242.605879379404,20300.0,70,70,1,11654,201101207,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1688.122249862574,0.0,290.0,715.0,0.0,19319.0,5,5,1,75.0,6,5.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1638.2548931917077,0.08070221148727624,0.08480019116888594,12879.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1 -1208,2,37.0,3,0.0,4,112,2,52,63,4.0,0.0,0.0,818.5841665082144,0.0,2168.9120803713236,21361.0,50,50,1,11656,201101208,,,276.0,,2.0,0.0,4.0,2.0,4.0,2.1,2105.238347765627,0.0,600.0,1248.0,0.0,30928.0,1,1,2,120.0,8,0.0,4,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2987.496246879538,0.13985750886566817,0.09659519680805542,14727.619047619048,3,2,3_0,3_1_0,3_0_0,3_0_1 -1209,2,33.0,3,0.0,1,111,6,21,55,3.0,0.0,0.0,965.929316479693,0.0,695.1641283241421,38606.0,43,31,2,11657,201101209,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,3579.3214147032463,0.0,708.0,400.0,0.0,28722.0,1,1,1,110.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1661.0934448038352,0.04302682082587772,0.057833488085921425,13677.142857142857,3,2,3_0,3_0_0,3_3_0,3_1_0 -1210,2,62.0,3,0.0,5,111,2,55,74,9.0,0.0,208.188947934516,1990.5238315591412,86.89551604051776,0.0,40783.0,42,41,1,11658,201101210,,,731.0,,1.0,3.0,5.0,0.0,2.0,1.5,3113.195739116531,0.0,1459.0,0.0,0.0,46700.0,1,5,3,115.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2285.608295534175,0.056043162482754455,0.04894236178874036,31133.333333333332,9,5,9,9_1,9_3,9_0_0 -1211,2,36.0,2,0.0,9,112,2,34,38,8.0,0.0,0.0,1500.737638598393,0.0,0.0,47268.0,10,10,1,11659,201101211,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2073.3868959683764,0.0,1100.0,0.0,0.0,56737.0,1,1,2,150.0,9,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1500.737638598393,0.03174954807900467,0.026450775307090488,27017.619047619046,8,4,8,8_1,8_0,8_0_0 -1212,1,38.0,3,225.0,9,212,2,85,48,3.0,0.0,0.0,1773.5990274344645,41.709847699448524,0.0,31099.0,71,71,1,1166,201101212,,,199.0,,1.0,0.0,5.0,4.0,6.0,2.9,2262.4551675151642,0.0,1300.0,0.0,0.0,41499.0,6,1,2,126.0,3,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1815.308875133913,0.058371937204859094,0.04374343659206036,14310.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -1213,2,37.0,1,0.0,1,112,4,31,31,10.0,0.0,0.0,884.3490249907694,0.0,1827.9273702176245,29971.0,10,10,1,11666,201101213,,,150.0,,2.0,0.0,8.0,1.0,3.0,1.8,3498.455931031536,1700.0,0.0,0.0,0.0,122371.0,1,1,2,240.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2712.2763952083938,0.09049669331047992,0.022164372238589157,67983.88888888889,10,5,10,10_1,10_0,10_1_0 -1214,0,87.0,3,0.0,1,111,2,0,75,4.0,0.0,0.0,527.9867873977983,0.0,4209.218797002681,23776.0,0,60,1,11667,201101214,,,,,0.0,0.0,8.0,0.0,2.0,1.5,3118.2581064417554,0.0,387.0,2422.0,0.0,24420.0,0,5,5,173.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4737.205584400479,0.19924316892666888,0.1939887626699623,16280.0,4,2,4_0,4_1_0,4_3_0,4_1_0 -1215,2,67.0,3,0.0,5,120,4,86,75,7.0,0.0,0.0,1371.128478901259,0.0,0.0,33604.0,50,71,1,11669,201101215,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2361.444216652082,0.0,1005.0,0.0,0.0,33059.0,6,5,1,110.0,0,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1371.128478901259,0.040802537760423134,0.04147519522372906,22039.333333333332,7,4,7,7_1,7_1,7_0_0 -1216,2,58.0,3,0.0,1,112,2,0,55,6.0,0.0,1457.3226355416118,578.4661443324715,0.0,0.0,25830.0,0,70,1,1167,201101216,,,,,2.0,2.0,5.0,1.0,2.0,1.5,1797.2727601498834,0.0,424.0,0.0,0.0,29840.0,0,1,1,104.0,6,0.0,2,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2035.7887798740833,0.07881489662694864,0.06822348458023067,19893.333333333332,6,3,6,6_1,6_0,6_1_0 -1217,2,51.0,2,0.0,1,111,2,46,53,7.0,0.0,138.792631956344,818.5841665082144,0.0,2068.113281764323,57707.0,50,60,1,11670,201101217,,,660.0,,2.0,2.0,4.0,1.0,3.0,2.0,1874.8737663505945,0.0,600.0,1190.0,0.0,47630.0,1,1,1,120.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3025.490080228881,0.05242847627201,0.06352068192796308,23815.0,7,4,7,7_1,7_3,7_1_0 -1218,2,21.0,2,0.0,5,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,3390.0,0,41,2,11672,201101218,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3343.592488423902,0.0,0.0,0.0,0.0,971.0,0,3,3,30.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,971.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -1219,2,80.0,3,0.0,1,111,2,77,78,6.0,6345.824036555528,0.0,532.0797082303393,100.7987986070006,0.0,31791.0,70,70,1,11674,201101219,,,235.0,,0.0,2.0,4.0,0.0,2.0,1.5,1996.3179531714338,0.0,390.0,0.0,0.0,31220.0,5,5,1,90.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,6978.702543392868,0.2195181826112066,0.223533073138785,20813.333333333332,6,3,6,6_1,6_4,6_1_0 -1220,2,33.0,2,0.0,4,111,4,43,46,9.0,0.0,0.0,1752.3801045586595,0.0,802.1375401072634,38366.0,20,60,1,11675,201101220,,,168.0,,2.0,0.0,4.0,0.0,2.0,1.5,1916.4568923033025,746.0,1000.0,0.0,0.0,44130.0,1,1,5,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2554.517644665923,0.06658285056211027,0.057886191812053546,29420.0,9,5,9,9_1,9_2,9_0_1 -1221,2,80.0,3,0.0,4,111,2,86,78,4.0,1680.0569136780762,0.0,805.8944236033533,100.7987986070006,695.687652076943,26800.0,70,50,1,11676,201101221,,,254.0,,0.0,1.0,4.0,0.0,2.0,1.5,1393.1624609830212,647.0,344.0,0.0,0.0,23705.0,5,5,5,86.0,8,6.0,3,5,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3282.437787965373,0.12247902193900645,0.13847027158681177,15803.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_1 -1222,1,45.0,4,375.0,2,221,2,85,63,2.0,0.0,0.0,743.8935916098824,0.0,1537.6094937712958,37423.0,60,71,1,11677,201101222,,,,,1.0,3.0,5.0,4.0,6.0,3.1,1162.681721064473,1430.0,0.0,0.0,0.0,32125.0,6,1,3,80.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,2281.503085381178,0.06096526428616568,0.07101955129591216,10362.90322580645,2,1,2_1,2_1_1,2_1_1,2_0_1 -1223,2,45.0,2,0.0,9,111,2,54,23,7.0,0.0,0.0,878.61367205215,0.0,1741.3861414519758,69155.0,20,20,1,1168,201101223,,,298.0,,2.0,0.0,7.0,2.0,4.0,2.1,2495.704102423825,0.0,644.0,1002.0,0.0,48449.0,1,1,2,140.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2619.999813504126,0.03788590576970755,0.054077479690068445,23070.95238095238,7,4,7,7_1,7_3,7_0_0 -1224,2,52.0,3,0.0,1,111,2,64,54,3.0,0.0,0.0,1309.734666413143,0.0,2606.865481215533,17085.0,60,41,1,11680,201101224,,,240.0,,3.0,1.0,5.0,1.0,3.0,2.0,1282.2317969416865,0.0,960.0,1500.0,0.0,26533.0,4,1,1,140.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3916.6001476286756,0.22924203380911182,0.14761241275500983,13266.5,3,2,3_0,3_1_0,3_3_0,3_1_0 -1225,2,54.0,2,0.0,5,111,1,85,38,4.0,0.0,0.0,1364.3069441803573,0.0,0.0,47988.0,41,12,2,11681,201101225,,,,1950.0,2.0,0.0,4.0,2.0,4.0,2.5,1580.920505216747,0.0,1000.0,0.0,0.0,38150.0,6,1,3,134.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1364.3069441803573,0.028430168879310606,0.035761649912984465,15260.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -1226,2,24.0,1,0.0,99,111,2,0,48,6.0,0.0,0.0,613.9381248811608,0.0,0.0,18518.0,0,20,2,11684,201101226,,,,369.0,1.0,0.0,2.0,0.0,1.0,1.0,2682.715346082845,0.0,450.0,0.0,0.0,21326.0,0,1,3,27.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,613.9381248811608,0.03315358704401991,0.028788245563216765,21326.0,6,3,6,6_0,6_3,6_0_0 -1227,2,27.0,2,0.0,1,120,5,62,56,7.0,0.0,138.792631956344,750.3688192991965,0.0,0.0,45324.0,71,50,1,11685,201101227,,,450.0,,2.0,0.0,5.0,1.0,3.0,1.8,2924.6345136920295,0.0,550.0,0.0,0.0,40272.0,1,1,2,80.0,0,3.0,4,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,889.1614512555404,0.019617894520685297,0.02207889976300011,22373.333333333332,7,4,7,7_1,7_1,7_1_0 -1228,2,64.0,3,0.0,99,111,2,0,78,2.0,0.0,0.0,341.0767360450893,0.0,594.3653297171414,10039.0,0,71,2,11687,201101228,,,133.0,292.0,0.0,2.0,3.0,0.0,1.0,1.0,2722.6298470741694,0.0,250.0,342.0,0.0,11420.0,0,5,3,56.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,935.4420657622308,0.09318080145056587,0.0819126152156069,11420.0,2,1,2_0,2_0_0,2_2_0,2_0_0 -1229,2,62.0,3,0.0,5,112,2,77,78,7.0,0.0,69.396315978172,3032.8543369129343,208.54923849724264,0.0,36788.0,70,50,1,11690,201101229,,,244.0,,0.0,1.0,4.0,0.0,2.0,1.5,1702.54863947325,0.0,2223.0,0.0,0.0,34251.0,5,5,1,100.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3310.799891388349,0.08999673511439461,0.09666286798599599,22834.0,7,4,7,7_1,7_0,7_0_0 -1230,1,92.0,3,173.0,5,111,1,0,78,3.0,0.0,0.0,772.1977304060822,0.0,0.0,5388.0,0,71,1,11691,201101230,,,,180.0,0.0,8.0,1.0,0.0,1.0,1.0,3867.882603156059,0.0,566.0,0.0,0.0,13042.0,0,5,3,35.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,772.1977304060822,0.1433180642921459,0.05920853629858014,13042.0,3,2,3_1,3_1_1,3_3_1,3_0_0 -1231,1,50.0,4,97.0,6,211,2,85,68,1.0,0.0,0.0,1023.230208135268,0.0,1303.4327406077664,21029.0,71,71,1,11692,201101231,,,670.0,483.0,1.0,2.0,5.0,1.0,3.0,2.0,2898.1852356379677,0.0,750.0,750.0,0.0,18437.0,6,1,3,92.0,1,2.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2326.6629487430346,0.11064068423334607,0.12619531099110673,9218.5,1,1,1_1,1_1_1,1_1_1,1_0_0 -1232,1,26.0,2,156.0,9,111,4,0,33,6.0,0.0,0.0,654.8673332065715,0.0,0.0,13242.0,0,12,2,11693,201101232,,,,224.0,1.0,0.0,2.0,0.0,1.0,1.0,3341.6231798340054,0.0,480.0,0.0,0.0,21042.0,0,1,3,39.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,654.8673332065715,0.0494538085792608,0.031121914894333785,21042.0,6,3,6,6_0,6_2,6_0_0 -1233,1,67.0,4,115.0,3,221,1,78,78,2.0,0.0,0.0,723.0826804155894,0.0,994.0847035035232,15809.0,50,50,2,11694,201101233,572.0,572.0,544.0,111.0,0.0,2.0,4.0,0.0,2.0,1.5,4046.9388232470674,0.0,530.0,572.0,0.0,15825.0,5,5,3,85.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1717.1673839191126,0.10861960806623522,0.10850978729346683,10550.0,2,1,2_1,2_0_1,2_1_1,2_0_1 -1234,2,82.0,2,0.0,2,112,2,0,78,5.0,0.0,0.0,409.2920832541072,0.0,2085.4923849724264,14565.0,0,71,1,11696,201101234,,,300.0,,0.0,2.0,7.0,0.0,1.0,1.0,2845.309021124487,0.0,300.0,1200.0,0.0,18855.0,0,5,1,150.0,7,1.0,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2494.7844682265336,0.1712862662702735,0.1323142120512614,18855.0,5,3,5,5_1,5_1,5_0_1 -1235,1,44.0,3,250.0,1,111,2,21,34,2.0,0.0,0.0,343.80534993345003,2506.066682608532,0.0,42474.0,10,10,1,11697,201101235,,,580.0,,2.0,1.0,5.0,2.0,4.0,2.3,1825.3466609780373,0.0,252.0,0.0,0.0,23320.0,1,1,2,150.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2849.872032541982,0.0670968600212361,0.12220720551209187,10139.13043478261,2,1,2_1,2_1_1,2_3_1,2_1_0 -1236,2,79.0,4,0.0,8,111,4,0,78,4.0,0.0,0.0,272.86138883607146,0.0,0.0,16996.0,0,71,1,11699,201101236,,,,,1.0,0.0,3.0,1.0,3.0,2.0,4377.526054582167,0.0,200.0,0.0,0.0,31450.0,0,5,1,60.0,5,4.0,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,272.86138883607146,0.01605444744858034,0.00867603780082898,15725.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -1237,2,70.0,1,0.0,1,111,2,78,42,9.0,0.0,0.0,682.1534720901786,0.0,2433.074449134497,49347.0,70,20,1,117,201101237,,,500.0,,1.0,3.0,7.0,0.0,2.0,1.5,1058.6105808283683,0.0,500.0,1400.0,0.0,44626.0,5,5,1,145.0,7,6.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3115.227921224676,0.0631290234710251,0.06980746473411634,29750.666666666668,9,5,9,9_1,9_2,9_1_0 -1238,2,64.0,3,0.0,4,112,6,0,75,8.0,0.0,0.0,641.2242637647679,3128.2385774586396,0.0,35880.0,0,50,1,1170,201101238,,,276.0,,0.0,2.0,4.0,0.0,1.0,1.0,1834.710356240941,0.0,470.0,0.0,0.0,25282.0,0,5,1,100.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3769.4628412234074,0.10505749278772039,0.14909670284089105,25282.0,8,4,8,8_1,8_0,8_0_1 -1239,2,57.0,3,0.0,1,111,2,75,85,3.0,0.0,277.585263912688,2226.548932902343,208.54923849724264,0.0,47587.0,41,41,1,11700,201101239,,,,,0.0,3.0,6.0,1.0,3.0,2.0,1816.775274528026,0.0,1632.0,0.0,0.0,28828.0,6,5,1,130.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2712.6834353122736,0.05700471631563817,0.09409891200611467,14414.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -1240,1,25.0,1,81.0,7,111,4,0,47,4.0,0.0,0.0,573.00891655575,0.0,0.0,27761.0,0,31,2,11701,201101240,,,200.0,584.0,1.0,0.0,3.0,0.0,2.0,1.5,3773.7984042749936,0.0,420.0,0.0,0.0,23091.0,0,1,3,60.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,573.00891655575,0.020640788031978316,0.024815249082142395,15394.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -1241,2,46.0,3,0.0,7,112,2,52,38,7.0,0.0,0.0,785.8407998478858,0.0,3414.993780392348,73413.0,31,10,1,11702,201101241,,,801.0,,2.0,0.0,7.0,2.0,4.0,2.5,2921.025870973426,0.0,576.0,1965.0,0.0,58797.0,1,1,1,280.0,7,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4200.834580240234,0.05722194407312375,0.07144641019508195,23518.8,7,4,7,7_1,7_0,7_0_0 -1242,2,43.0,2,0.0,99,111,2,37,45,8.0,0.0,0.0,102.3230208135268,0.0,78.20596443646599,59861.0,20,30,1,11703,201101242,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2882.721546122712,0.0,75.0,45.0,0.0,60526.0,1,1,1,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,180.5289852499928,0.0030158030311888003,0.0029826683615304626,28821.90476190476,8,4,8,8_1,8_4,8_0_0 -1243,2,69.0,2,0.0,5,300,4,74,74,9.0,0.0,0.0,2687.6846800353037,0.0,0.0,53937.0,12,20,1,11704,201101243,,,149.0,,0.0,2.0,8.0,0.0,2.0,1.5,1599.5667820485921,0.0,1970.0,0.0,0.0,48791.0,5,5,1,230.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2687.6846800353037,0.04983007360504484,0.055085664979920554,32527.333333333332,9,5,9,9_1,9_0,9_0_0 -1244,2,78.0,3,0.0,5,111,2,86,78,2.0,0.0,0.0,1023.230208135268,0.0,1564.1192887293198,33017.0,71,71,1,11705,201101244,,,600.0,,1.0,2.0,5.0,1.0,3.0,2.0,6193.221009766054,0.0,750.0,900.0,0.0,21080.0,6,5,1,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2587.3494968645878,0.07836416079185231,0.12273953969945862,10540.0,2,1,2_0,2_1_0,2_4_0,2_0_0 -1245,2,60.0,3,0.0,2,111,1,0,75,5.0,0.0,0.0,354.7198054868929,0.0,1310.384381891008,20773.0,0,42,2,11706,201101245,754.0,754.0,187.0,,0.0,0.0,3.0,0.0,1.0,1.0,2844.9025180628346,0.0,260.0,754.0,0.0,18020.0,0,5,1,69.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1665.1041873779009,0.0801571360601695,0.09240311805648728,18020.0,5,3,5,5_0,5_3,5_0_1 -1246,2,60.0,3,0.0,8,111,2,0,77,1.0,0.0,0.0,682.1534720901786,0.0,521.3730962431066,9225.0,0,70,1,11707,201101246,,,202.0,,0.0,1.0,7.0,0.0,1.0,1.0,1652.6198802412919,0.0,500.0,300.0,0.0,8933.0,0,5,1,80.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1203.5265683332852,0.13046358464317456,0.13472815049068457,8933.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -1247,2,31.0,3,0.0,1,112,5,42,53,8.0,0.0,693.9631597817199,989.122534530759,139.0328256648284,0.0,40318.0,20,44,1,11709,201101247,,,457.0,,2.0,0.0,4.0,1.0,3.0,1.8,2159.8052722776124,0.0,725.0,0.0,0.0,49721.0,1,1,2,100.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1822.1185199773074,0.04519367329672373,0.03664685987766351,27622.777777777777,8,4,8,8_1,8_0,8_1_0 -1248,2,84.0,1,0.0,4,111,1,0,77,5.0,0.0,0.0,122.78762497623215,0.0,0.0,7540.0,0,70,2,1171,201101248,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3578.82404842561,0.0,90.0,0.0,0.0,18710.0,0,5,3,76.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,122.78762497623215,0.01628483089870453,0.006562673702631328,18710.0,5,3,5,5_0,5_4,5_0_1 -1249,2,55.0,3,0.0,1,400,2,0,54,6.0,2614.479503060878,0.0,474.77881657476433,97.32297796537989,0.0,35936.0,0,50,1,11711,201101249,,,230.0,,1.0,4.0,3.0,0.0,1.0,1.0,1731.506444460453,0.0,348.0,0.0,0.0,20742.0,0,4,2,90.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3186.581297601022,0.08867378944793583,0.15362941363422147,20742.0,6,3,6,6_1,6_0,6_1_0 -1250,1,20.0,2,170.0,99,111,6,0,84,1.0,0.0,0.0,493.8791137932893,0.0,0.0,17422.0,0,41,2,11712,201101250,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3691.4173727099333,0.0,362.0,0.0,0.0,4705.0,0,3,3,24.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,493.8791137932893,0.028348014796997435,0.10496899336733036,4705.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -1251,2,44.0,1,0.0,1,111,2,43,34,9.0,834.4758608070521,0.0,598.9307484951769,0.0,2198.4565558250993,83371.0,31,10,1,11714,201101251,,,,,2.0,0.0,7.0,2.0,4.0,2.3,1395.5195007453417,0.0,439.0,1265.0,0.0,66827.0,1,1,2,230.0,9,7.0,4,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3631.863165127328,0.04356266765574754,0.054347242359036436,29055.21739130435,8,4,8,8_1,8_3,8_1_0 -1252,2,58.0,3,0.0,5,400,2,0,77,3.0,0.0,749.4802125642576,545.7227776721429,389.29191186151957,0.0,13210.0,0,70,1,11715,201101252,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2453.0234364343087,0.0,400.0,0.0,0.0,13834.0,0,5,1,110.0,0,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1684.4949020979202,0.12751664663875248,0.12176484762887958,13834.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -1253,2,50.0,2,0.0,8,112,2,85,54,6.0,0.0,0.0,770.8334234619018,0.0,703.8536799281939,42756.0,20,60,1,11716,201101253,,,309.0,,1.0,1.0,5.0,1.0,3.0,2.0,1271.873567448219,0.0,565.0,405.0,0.0,41270.0,4,1,2,100.0,8,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1474.6871033900957,0.0344907639486878,0.03573266545650825,20635.0,6,3,6,6_1,6_1,6_0_0 -1254,2,34.0,2,0.0,6,111,2,0,64,5.0,0.0,0.0,518.4366387885358,0.0,1616.2565983536304,26921.0,0,31,2,11717,201101254,,,,311.0,1.0,0.0,1.0,0.0,1.0,1.0,3090.9429231939635,0.0,380.0,930.0,0.0,17667.0,0,1,4,44.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2134.6932371421663,0.07929472297248119,0.1208294128681817,17667.0,5,3,5,5_0,5_3,5_0_0 -1255,2,40.0,2,0.0,7,111,5,22,55,6.0,0.0,416.377895869032,654.8673332065715,0.0,0.0,49602.0,31,31,1,11719,201101255,,,180.0,,2.0,0.0,6.0,3.0,5.0,2.6,2486.9340720776468,0.0,480.0,0.0,0.0,50498.0,1,1,2,180.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1071.2452290756034,0.021596815230748828,0.021213616956624094,19422.30769230769,6,3,6,6_1,6_3,6_0_0 -1256,2,45.0,3,0.0,2,111,1,0,47,10.0,0.0,0.0,573.00891655575,0.0,0.0,27347.0,0,31,2,11720,201101256,,,,,1.0,2.0,1.0,0.0,1.0,1.0,3648.121486632647,0.0,420.0,0.0,0.0,39815.0,0,1,3,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,573.00891655575,0.020953264217491864,0.014391784919144796,39815.0,10,5,10,10_0,10_4,10_0_1 -1257,1,38.0,3,340.0,5,111,2,0,68,1.0,0.0,0.0,613.9381248811608,0.0,1164.399914942938,18287.0,0,71,2,11722,201101257,,,92.0,43.0,1.0,0.0,2.0,1.0,2.0,1.5,5109.600708203153,0.0,450.0,670.0,0.0,12771.0,0,4,3,67.0,5,4.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1778.3380398240988,0.097246023941822,0.13924814343623043,8514.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -1258,2,57.0,2,0.0,5,300,6,55,77,10.0,2221.038412794435,166.55115834761278,682.1534720901786,187.69431464751835,0.0,67771.0,71,50,1,11725,201101258,,,242.0,,2.0,1.0,6.0,1.0,3.0,2.0,1902.199249874934,0.0,500.0,0.0,0.0,102964.0,1,5,1,125.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3257.4373578797445,0.048065357717604056,0.03163666289071661,51482.0,10,5,10,10_1,10_0,10_0_0 -1259,0,46.0,2,0.0,1,111,2,38,48,8.0,0.0,0.0,804.9410970664107,0.0,1372.9491534401807,82709.0,31,31,2,11726,201101259,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.5,2859.1234158062916,0.0,590.0,790.0,0.0,67256.0,1,1,5,110.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2177.8902505065917,0.02633196206587665,0.03238209602870512,26902.4,8,4,8,8_0,8_3,8_1_0 -1260,2,52.0,2,0.0,5,120,2,78,65,9.0,0.0,0.0,102.3230208135268,97.32297796537989,0.0,8204.0,60,70,1,11727,201101260,,,,,1.0,2.0,5.0,0.0,2.0,1.5,2864.6086969966536,0.0,75.0,0.0,0.0,44570.0,5,1,1,90.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,199.6459987789067,0.02433520219148058,0.00447938072198579,29713.333333333332,9,5,9,9_1,9_1,9_0_0 -1261,2,72.0,4,0.0,5,111,1,78,78,6.0,0.0,0.0,395.6490138123036,0.0,161.62565983536302,23328.0,71,71,2,11730,201101261,,,,301.0,0.0,1.0,3.0,0.0,2.0,1.5,3201.498869310514,0.0,290.0,93.0,0.0,28720.0,5,5,3,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,557.2746736476666,0.02388866056445759,0.019403714263498142,19146.666666666668,5,3,5,5_0,5_4,5_0_0 -1262,1,37.0,3,90.0,8,112,6,11,52,5.0,0.0,0.0,2041.0031884938144,140.77073598563877,0.0,44294.0,50,31,1,11734,201101262,,,408.0,,2.0,0.0,7.0,4.0,6.0,2.7,1328.706036295306,0.0,1496.0,0.0,0.0,46376.0,1,1,2,200.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2181.773924479453,0.049256647051055515,0.04704532353975015,17176.296296296296,5,3,5,5_1,5_1,5_0_0 -1263,1,22.0,3,248.0,9,212,4,0,62,4.0,0.0,0.0,654.8673332065715,43.44775802025888,0.0,19750.0,0,42,1,11735,201101263,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2456.1436049060508,0.0,480.0,0.0,0.0,15796.0,0,1,3,100.0,3,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,698.3150912268304,0.03535772613806736,0.04420834965983986,15796.0,4,2,4_1,4_1_1,4_0_1,4_0_0 -1264,2,60.0,2,0.0,7,111,4,55,75,8.0,0.0,0.0,2046.460416270536,0.0,0.0,79237.0,50,50,1,11737,201101264,,,240.0,,1.0,1.0,4.0,0.0,2.0,1.5,2255.7968804820634,0.0,1500.0,0.0,0.0,38185.0,1,5,2,100.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2046.460416270536,0.025827080988307684,0.05359330669819395,25456.666666666668,8,4,8,8_1,8_3,8_0_0 -1265,2,44.0,3,0.0,9,111,2,46,37,7.0,0.0,0.0,3137.9059716148217,86.89551604051776,0.0,62874.0,31,10,1,11738,201101265,,,550.0,,2.0,0.0,5.0,2.0,4.0,2.1,2194.5434318499474,0.0,2300.0,0.0,0.0,46576.0,4,1,2,200.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3224.8014876553393,0.0512899050109002,0.06923740741273057,22179.04761904762,7,4,7,7_1,7_3,7_0_0 -1266,2,77.0,3,0.0,5,111,2,0,86,1.0,0.0,0.0,613.9381248811608,0.0,0.0,7093.0,0,71,8,11739,201101266,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3140.254515312898,0.0,450.0,0.0,0.0,1988.0,0,6,1,70.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,613.9381248811608,0.08655549483732705,0.3088219944070225,1988.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -1267,1,47.0,5,80.0,3,111,1,0,67,3.0,0.0,0.0,573.00891655575,0.0,0.0,31946.0,0,50,2,1174,201101267,,,,365.0,1.0,2.0,4.0,1.0,2.0,1.5,2795.693086587096,0.0,420.0,0.0,0.0,21350.0,0,1,3,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,573.00891655575,0.01793679698728323,0.026838825131416864,14233.333333333334,3,2,3_1,3_0_1,3_4_1,3_0_1 -1268,2,63.0,1,0.0,7,111,2,34,34,10.0,0.0,0.0,2955.957242624158,0.0,2584.90435176657,74338.0,20,10,8,11740,201101268,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2349.0302359147886,2404.0,1250.0,0.0,0.0,90092.0,1,1,1,82.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,5540.861594390728,0.07453605954411913,0.06150225984982827,60061.333333333336,10,5,10,10_0,10_3,10_0_0 -1269,2,58.0,1,0.0,6,111,4,34,34,10.0,0.0,0.0,2046.460416270536,0.0,0.0,52362.0,31,10,1,11741,201101269,,,400.0,,2.0,2.0,7.0,0.0,2.0,1.5,5634.528286466163,0.0,1500.0,0.0,0.0,94027.0,1,1,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2046.460416270536,0.03908293068008357,0.021764603957060587,62684.666666666664,10,5,10,10_1,10_4,10_0_0 -1270,2,54.0,4,0.0,7,400,5,55,64,4.0,0.0,1207.4958980201927,1023.230208135268,166.8393907977941,0.0,22319.0,71,71,1,11743,201101270,,,,,2.0,2.0,5.0,1.0,3.0,2.0,7467.858043762015,0.0,750.0,0.0,0.0,30769.0,1,1,2,100.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2397.565496953255,0.10742262184476255,0.07792146306195376,15384.5,4,2,4_0,4_1_0,4_1_0,4_0_0 -1271,2,83.0,3,0.0,6,111,1,0,77,4.0,0.0,0.0,916.8142664892001,0.0,0.0,20709.0,0,70,8,11745,201101271,248.0,248.0,235.0,,0.0,4.0,2.0,0.0,1.0,1.0,3333.3624074821923,0.0,672.0,0.0,0.0,15410.0,0,5,1,50.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,916.8142664892001,0.044271295885325225,0.05949476096620377,15410.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -1272,2,35.0,4,0.0,5,400,2,56,47,3.0,4442.07682558887,0.0,687.6106998669001,0.0,0.0,29592.0,42,42,1,11746,201101272,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3133.556994549288,0.0,504.0,0.0,0.0,30535.0,4,1,2,90.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5129.68752545577,0.17334710480723742,0.16799369659262386,14540.476190476189,3,2,3_0,3_1_0,3_0_0,3_0_0 -1273,1,26.0,3,376.0,8,111,1,85,43,3.0,0.0,0.0,58.665198599755364,0.0,0.0,43671.0,71,41,2,11748,201101273,,,,92.0,1.0,0.0,3.0,3.0,5.0,2.4,3931.7982188218134,0.0,43.0,0.0,0.0,34126.0,4,1,3,70.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,58.665198599755364,0.0013433445215304289,0.001719076323030984,14219.166666666668,3,2,3_1,3_0_1,3_3_1,3_0_0 -1274,2,41.0,3,0.0,8,111,4,0,47,7.0,0.0,0.0,794.0266415129679,0.0,0.0,21903.0,0,50,2,1175,201101274,,,,612.0,1.0,1.0,3.0,1.0,2.0,1.3,3858.7068766621755,0.0,582.0,0.0,0.0,30470.0,0,1,3,63.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,794.0266415129679,0.036251958248320684,0.02605929246842691,23438.46153846154,7,4,7,7_0,7_3,7_0_0 -1275,2,57.0,4,0.0,2,111,5,46,21,5.0,0.0,485.77421184720396,1364.3069441803573,347.58206416207105,0.0,34934.0,20,20,2,11752,201101275,,,,,2.0,0.0,3.0,1.0,3.0,2.0,3530.900119938779,0.0,1000.0,0.0,0.0,36364.0,1,1,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2197.6632201896323,0.0629090061312656,0.06043513420387285,18182.0,5,3,5,5_0,5_3,5_0_1 -1276,0,53.0,2,0.0,3,120,1,0,42,8.0,0.0,0.0,286.504458277875,173.79103208103552,0.0,18380.0,0,10,2,11753,201101276,,,,,1.0,3.0,5.0,0.0,1.0,1.0,3168.6336871671206,0.0,210.0,0.0,0.0,26029.0,0,1,5,98.0,0,3.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,460.29549035891057,0.025043280215392306,0.017683948302236373,26029.0,8,4,8,8_0,8_1,8_0_1 -1277,2,50.0,2,0.0,7,111,1,52,62,9.0,0.0,0.0,474.77881657476433,0.0,0.0,27871.0,50,50,2,11755,201101277,,,160.0,386.0,2.0,2.0,2.0,0.0,2.0,1.5,2023.7990107953283,0.0,348.0,0.0,0.0,46010.0,1,1,3,50.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,474.77881657476433,0.01703486837841356,0.010319035352635609,30673.333333333332,9,5,9,9_0,9_3,9_0_0 -1278,2,74.0,2,0.0,1,111,2,74,74,10.0,0.0,0.0,567.5516887790286,0.0,1399.017808252336,88022.0,20,10,2,11756,201101278,,,,,0.0,3.0,6.0,0.0,2.0,1.5,2196.9053151532958,0.0,416.0,805.0,0.0,133212.0,5,5,1,140.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1966.5694970313646,0.02234179519928387,0.014762705289548723,88808.0,10,5,10,10_0,10_4,10_1_0 -1279,2,50.0,3,0.0,8,120,4,85,42,1.0,0.0,0.0,3274.3366660328575,229.4041623469669,0.0,47580.0,60,31,1,11757,201101279,,,,,1.0,1.0,4.0,1.0,3.0,1.8,2455.8649763412295,0.0,2400.0,0.0,0.0,13542.0,6,1,1,120.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3503.7408283798245,0.07363894132786516,0.25873141547628303,7523.333333333333,1,1,1_0,1_1_0,1_1_0,1_0_0 -1280,2,26.0,4,0.0,7,112,2,84,64,6.0,0.0,0.0,491.1504999049286,0.0,1814.3783749260108,34223.0,43,50,2,1176,201101280,,,259.0,560.0,1.0,0.0,3.0,0.0,2.0,1.5,5547.134480247468,0.0,360.0,1044.0,0.0,28630.0,3,1,3,70.0,9,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2305.5288748309395,0.06736781915176751,0.08052842734302967,19086.666666666668,5,3,5,5_0,5_1,5_0_0 -1281,2,59.0,3,0.0,4,111,2,77,38,3.0,0.0,0.0,1057.3378817397768,0.0,2380.9371395101866,49906.0,50,50,1,11760,201101281,,,500.0,,2.0,1.0,6.0,1.0,3.0,2.0,1907.1978786536035,0.0,775.0,1370.0,0.0,28540.0,6,4,1,180.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3438.275021249963,0.0688950230683678,0.1204721451033624,14270.0,3,2,3_0,3_1_0,3_4_0,3_0_1 -1282,2,63.0,2,0.0,1,111,1,0,77,7.0,0.0,0.0,1091.4455553442858,0.0,208.54923849724264,85172.0,0,12,2,11761,201101282,,,,,1.0,1.0,5.0,1.0,2.0,1.5,3419.5864426352855,0.0,800.0,120.0,0.0,32559.0,0,4,1,106.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1299.9947938415285,0.015263170922856437,0.039927356302144675,21706.0,6,3,6,6_0,6_4,6_1_0 -1283,2,51.0,3,0.0,8,120,2,46,46,9.0,0.0,208.188947934516,955.0148609262501,0.0,0.0,36321.0,50,42,1,11762,201101283,,,140.0,,2.0,3.0,5.0,0.0,2.0,1.5,2254.672225825294,0.0,700.0,0.0,0.0,45858.0,1,1,2,100.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1163.203808860766,0.03202565482395215,0.02536534102797257,30572.0,9,5,9,9_1,9_0,9_0_0 -1284,2,50.0,3,0.0,7,112,1,52,52,6.0,0.0,388.6193694777632,215.56049718049644,0.0,0.0,49754.0,50,50,1,11763,201101284,280.0,280.0,400.0,,3.0,0.0,6.0,2.0,4.0,2.3,2779.6355144995105,0.0,158.0,0.0,0.0,48234.0,1,1,2,110.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,604.1798666582597,0.012143342578652162,0.012526016226277309,20971.304347826088,6,3,6,6_1,6_1,6_0_0 -1285,2,58.0,1,0.0,9,111,2,47,68,9.0,0.0,0.0,1234.167993126825,0.0,2195.6556052118754,55765.0,33,70,1,11764,201101285,,,636.0,,4.0,1.0,7.0,2.0,4.0,2.5,2621.0486126990572,117.0,860.0,1191.0,0.0,79188.0,1,1,2,217.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3429.8235983387003,0.061504951104432895,0.043312416001650506,31675.2,9,5,9,9_1,9_3,9_0_0 -1286,2,52.0,4,0.0,4,111,2,0,38,9.0,0.0,0.0,1064.1594164606786,0.0,3614.853467285539,50679.0,0,12,1,11765,201101286,,,548.0,,1.0,2.0,5.0,1.0,2.0,1.5,1380.2549325543048,0.0,780.0,2080.0,0.0,54372.0,0,1,1,120.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4679.012883746218,0.09232646428986796,0.08605555954804345,36248.0,9,5,9,9_1,9_2,9_0_1 -1287,2,54.0,4,0.0,7,111,4,52,43,5.0,0.0,0.0,955.0148609262501,0.0,0.0,44459.0,30,20,2,11766,201101287,,,,527.0,2.0,0.0,3.0,2.0,4.0,2.3,2476.437538603946,0.0,700.0,0.0,0.0,42472.0,1,1,3,82.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,955.0148609262501,0.02148079940903417,0.022485752046671928,18466.08695652174,5,3,5,5_0,5_4,5_0_0 -1288,2,58.0,3,0.0,5,111,2,75,45,8.0,0.0,346.98157989085996,914.0856526008394,0.0,212.02505913886333,45546.0,31,60,1,11767,201101288,,,486.0,,1.0,2.0,5.0,0.0,2.0,1.5,4590.454516006102,0.0,670.0,122.0,0.0,39717.0,5,1,1,120.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1473.0922916305626,0.03234295638762048,0.03708971703881367,26478.0,8,4,8,8_1,8_2,8_0_0 -1289,2,44.0,2,0.0,7,112,4,54,64,7.0,0.0,444.1364222603008,2141.961902363161,312.82385774586396,0.0,53634.0,31,50,1,11768,201101289,,,282.0,,2.0,0.0,6.0,2.0,4.0,2.1,1938.495926618072,0.0,1570.0,0.0,0.0,49457.0,1,1,1,170.0,9,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2898.922182369325,0.05405008357328048,0.05861500257535485,23550.95238095238,7,4,7,7_1,7_0,7_0_0 -1290,2,37.0,2,0.0,5,111,2,52,38,5.0,0.0,545.4550435884319,1159.6609025533037,0.0,0.0,45143.0,41,31,1,11769,201101290,,,,,3.0,0.0,5.0,2.0,4.0,2.3,2099.7480550750083,0.0,850.0,0.0,0.0,42700.0,1,1,2,108.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1705.1159461417355,0.03777143623910098,0.03993245775507578,18565.217391304348,5,3,5,5_1,5_2,5_0_0 -1291,1,25.0,3,420.0,7,111,2,0,55,2.0,0.0,0.0,818.5841665082144,0.0,1147.0208117348345,11451.0,0,71,2,11770,201101291,,,,24.0,1.0,0.0,3.0,2.0,3.0,1.6,4236.884973857132,0.0,600.0,660.0,0.0,15748.0,0,4,3,90.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1965.604978243049,0.171653565474024,0.12481616575076511,9842.5,1,1,1_1,1_0_1,1_3_1,1_0_0 -1292,2,51.0,3,0.0,1,111,2,22,54,1.0,0.0,0.0,1227.8762497623215,0.0,3128.2385774586396,37129.0,60,43,1,11773,201101292,,,,,2.0,1.0,5.0,2.0,5.0,3.0,1713.579098271941,0.0,900.0,1800.0,0.0,25759.0,4,1,1,90.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4356.114827220961,0.11732378537587765,0.1691104013052122,8586.333333333334,1,1,1_0,1_1_0,1_4_0,1_1_0 -1293,2,35.0,4,0.0,9,400,4,0,63,8.0,0.0,0.0,1596.2391246910179,52.13730962431066,0.0,29151.0,0,50,1,11775,201101293,,,155.0,,1.0,0.0,4.0,0.0,1.0,1.0,2588.5823764406646,0.0,1170.0,0.0,0.0,25540.0,0,1,2,129.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1648.3764343153284,0.056546136815729425,0.06454097236943337,25540.0,8,4,8,8_1,8_0,8_0_0 -1294,1,50.0,5,196.0,8,111,2,0,52,6.0,0.0,0.0,777.6549581828036,0.0,1181.7790181510416,20952.0,0,50,1,11776,201101294,,,,258.0,3.0,1.0,4.0,2.0,3.0,2.0,2354.454953656295,0.0,570.0,680.0,0.0,38218.0,0,1,3,80.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1959.4339763338453,0.09352014014575435,0.05126992454691102,19109.0,5,3,5,5_1,5_3,5_0_0 -1295,2,77.0,3,0.0,2,211,2,77,78,4.0,1534.1029608372992,0.0,327.43366660328576,166.8393907977941,0.0,15505.0,71,71,1,11777,201101295,,,220.0,,0.0,3.0,4.0,0.0,2.0,1.5,2512.239463468773,0.0,240.0,0.0,0.0,22273.0,5,5,1,76.0,3,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2028.376018238379,0.13082076867064682,0.09106882854749603,14848.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_1 -1296,2,33.0,2,0.0,6,111,2,0,33,9.0,0.0,0.0,518.4366387885358,0.0,0.0,25156.0,0,12,2,11779,201101296,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3802.9604841584046,0.0,380.0,0.0,0.0,37065.0,0,1,2,69.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,518.4366387885358,0.020608866226289387,0.01398722888947891,37065.0,9,5,9,9_0,9_3,9_0_0 -1297,1,23.0,1,259.0,7,111,4,0,46,7.0,0.0,0.0,436.5782221377143,0.0,0.0,34039.0,0,20,2,11780,201101297,,,,39.0,1.0,0.0,1.0,0.0,1.0,1.0,3138.992827949501,0.0,320.0,0.0,0.0,22686.0,0,4,3,30.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,436.5782221377143,0.012825823970672296,0.019244389585546782,22686.0,7,4,7,7_0,7_3,7_0_0 -1298,2,81.0,3,0.0,4,300,2,0,77,4.0,2696.9752155360998,0.0,955.0148609262501,48.661488982689946,0.0,18821.0,0,70,1,11781,201101298,,,134.0,,0.0,2.0,3.0,0.0,1.0,1.0,2504.213792920182,0.0,700.0,0.0,0.0,15934.0,0,5,1,70.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3700.65156544504,0.19662353570187768,0.2322487489296498,15934.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -1299,2,35.0,3,0.0,5,212,5,11,46,7.0,0.0,83.27557917380639,523.8938665652572,43.44775802025888,0.0,39111.0,31,20,1,11783,201101299,,,20.0,,2.0,0.0,6.0,2.0,4.0,2.1,1647.0722777086721,0.0,384.0,0.0,0.0,48218.0,1,1,2,120.0,3,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,650.6172037593225,0.016635146218693525,0.013493243265156631,22960.95238095238,7,4,7,7_1,7_0,7_0_0 -1300,1,20.0,4,201.0,99,111,2,0,56,1.0,0.0,0.0,253.76109161754644,0.0,735.1360657027802,13726.0,0,41,2,11784,201101300,,,,79.0,1.0,0.0,3.0,0.0,1.0,1.0,2975.133897555974,0.0,186.0,423.0,0.0,6580.0,0,3,3,47.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,988.8971573203266,0.0720455454845058,0.15028832178120466,6580.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -1302,2,63.0,3,0.0,5,111,2,77,75,6.0,349.0203220105541,0.0,961.9363043853087,0.0,1802.0857348188629,60117.0,41,41,1,11786,201101302,,,256.0,,0.0,2.0,4.0,0.0,2.0,1.5,1606.827567953401,905.0,360.0,477.0,0.0,28522.0,5,5,1,168.0,9,7.0,3,3,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3113.0423612147256,0.05178306238193399,0.10914530401846734,19014.666666666668,5,3,5,5_1,5_3,5_0_0 -1303,2,24.0,2,0.0,1,111,4,0,55,5.0,0.0,0.0,1296.0915969713394,0.0,0.0,14373.0,0,44,2,11787,201101303,,,154.0,,1.0,0.0,2.0,0.0,1.0,1.0,4387.172452883238,0.0,950.0,0.0,0.0,17981.0,0,1,3,47.0,4,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1296.0915969713394,0.09017543985050716,0.07208117440472385,17981.0,5,3,5,5_0,5_1,5_1_0 -1304,2,38.0,3,0.0,7,112,5,55,56,5.0,0.0,485.77421184720396,1364.3069441803573,1796.9992717179073,0.0,47860.0,71,50,1,1179,201101304,,,200.0,,2.0,0.0,5.0,1.0,3.0,1.8,4972.897929238602,0.0,1000.0,0.0,0.0,32684.0,1,1,2,100.0,9,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3647.0804277454686,0.07620310129012679,0.1115861102602334,18157.777777777777,5,3,5,5_1,5_1,5_0_0 -1305,2,95.0,3,0.0,6,111,4,77,75,6.0,0.0,0.0,818.5841665082144,0.0,0.0,17822.0,71,70,2,11790,201101305,,,,420.0,0.0,7.0,4.0,0.0,2.0,1.5,3934.588456530853,0.0,600.0,0.0,0.0,29031.0,5,5,3,72.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,818.5841665082144,0.04593110574055742,0.028196898712004904,19354.0,6,3,6,6_0,6_3,6_0_0 -1306,2,54.0,2,0.0,1,112,2,42,34,10.0,0.0,0.0,873.1564442754286,0.0,1098.3593227521444,63026.0,30,10,1,11791,201101306,,,586.0,,2.0,2.0,7.0,1.0,3.0,2.0,2099.539926976304,0.0,640.0,632.0,0.0,82752.0,1,1,2,180.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1971.515767027573,0.03128099144841134,0.023824388135967385,41376.0,10,5,10,10_1,10_2,10_1_0 -1307,2,79.0,3,0.0,5,120,2,0,78,5.0,2855.620816449988,0.0,559.3658471139465,86.89551604051776,0.0,13710.0,0,50,1,11793,201101307,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2648.6404156064204,0.0,410.0,0.0,0.0,18292.0,0,5,1,90.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3501.882179604452,0.2554253960324181,0.19144337303763678,18292.0,5,3,5,5_1,5_0,5_0_0 -1308,2,61.0,3,0.0,2,111,2,77,77,6.0,0.0,0.0,519.8009457327161,0.0,1711.8416659982,14908.0,60,50,1,11795,201101308,,,436.0,,0.0,1.0,4.0,0.0,2.0,1.5,1238.3529735215682,0.0,381.0,985.0,0.0,31473.0,6,5,2,90.0,5,4.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2231.642611730916,0.1496942991501822,0.07090657426145953,20982.0,6,3,6,6_1,6_2,6_0_1 -1310,2,41.0,2,0.0,1,111,2,34,34,8.0,0.0,237.33540064534822,753.0974331875572,0.0,1253.033341304266,40113.0,20,31,1,11797,201101310,,,528.0,,2.0,4.0,6.0,2.0,4.0,2.5,3771.537181974064,0.0,552.0,721.0,0.0,70723.0,1,1,2,200.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2243.4661751371714,0.05592865592543992,0.03172187513449898,28289.2,8,4,8,8_1,8_2,8_1_0 -1311,2,43.0,2,0.0,5,112,1,0,54,8.0,0.0,0.0,600.2950554393572,46.92357866187959,0.0,31463.0,0,50,2,11798,201101311,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2692.3175334485873,0.0,440.0,0.0,0.0,25402.0,0,1,1,45.0,8,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,647.2186341012367,0.020570785815123692,0.025479042362854764,25402.0,8,4,8,8_0,8_0,8_0_0 -1312,2,73.0,1,0.0,2,112,2,74,74,6.0,1994.175203487575,0.0,3324.8160229675304,0.0,0.0,30769.0,10,10,1,1180,201101312,,,347.0,,0.0,0.0,10.0,0.0,2.0,1.5,1466.2643731156982,0.0,2437.0,0.0,0.0,30487.0,5,5,1,200.0,10,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5318.991226455106,0.17286851137362624,0.17446751817020717,20324.666666666668,6,3,6,6_1,6_0,6_0_1 -1313,1,49.0,3,340.0,1,112,2,0,85,1.0,0.0,0.0,72.30853792571584,0.0,149.45994380014693,8056.0,0,50,1,11800,201101313,,,404.0,,0.0,0.0,3.0,2.0,3.0,1.8,1810.7674714737761,139.0,0.0,0.0,0.0,13100.0,0,6,3,48.0,8,0.0,2,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,221.76848172586278,0.02752836168394523,0.016928891734798685,7277.777777777777,1,1,1_1,1_1_1,1_0_1,1_1_0 -1314,1,23.0,3,330.0,99,211,2,0,67,2.0,0.0,0.0,548.4513915605036,0.0,1303.4327406077664,15031.0,0,43,2,11801,201101314,,,,170.0,1.0,0.0,4.0,1.0,2.0,1.3,8089.903221038263,0.0,402.0,750.0,0.0,14090.0,0,4,3,70.0,2,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1851.8841321682698,0.12320431988345884,0.1314325147032129,10838.461538461537,2,1,2_1,2_0_1,2_1_1,2_0_0 -1315,2,48.0,3,0.0,1,300,2,0,68,2.0,1237.435687128328,0.0,886.7995137172322,0.0,0.0,43059.0,0,71,1,11802,201101315,,,266.0,,1.0,2.0,4.0,2.0,3.0,2.0,2954.1368261415505,0.0,650.0,0.0,0.0,18838.0,0,4,1,110.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2124.23520084556,0.04933312898222346,0.11276330825170187,9419.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -1316,2,65.0,2,0.0,1,112,4,54,38,9.0,0.0,0.0,4240.26598251255,0.0,0.0,62464.0,20,12,1,11803,201101316,,,746.0,,2.0,0.0,9.0,1.0,3.0,2.0,2108.8628646764155,0.0,3108.0,0.0,0.0,68355.0,1,1,1,200.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4240.26598251255,0.06788335653356413,0.06203300391357692,34177.5,9,5,9,9_1,9_0,9_1_0 -1317,2,61.0,3,0.0,5,111,2,77,74,10.0,0.0,0.0,963.2007025913322,0.0,2085.4923849724264,36359.0,50,50,1,11804,201101317,,,249.0,,0.0,1.0,5.0,0.0,2.0,1.5,1243.8925440680741,0.0,706.0,1200.0,0.0,111115.0,5,5,1,97.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3048.6930875637586,0.08384975075122414,0.02743727748336191,74076.66666666667,10,5,10,10_1,10_3,10_0_0 -1318,1,43.0,4,393.0,99,111,2,0,54,3.0,0.0,0.0,420.20653880755003,0.0,2554.7281715912222,21743.0,0,60,8,11805,201101318,,,,113.0,2.0,0.0,4.0,1.0,4.0,2.3,2352.095661520782,0.0,308.0,1470.0,0.0,33494.0,0,1,3,100.0,7,5.0,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2974.934710398772,0.13682264224802337,0.08881992925296388,14562.608695652176,3,2,3_1,3_0_1,3_2_1,3_0_0 -1319,2,43.0,1,0.0,1,300,2,0,37,10.0,2221.038412794435,0.0,592.4043519580782,52.13730962431066,378.48849077447284,29614.0,0,10,1,11806,201101319,,,40.0,,1.0,0.0,4.0,0.0,1.0,1.0,1400.241329222649,352.0,300.0,0.0,0.0,39726.0,0,1,2,95.0,0,0.0,1,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3244.0685651512963,0.10954509911363869,0.0816610926131827,39726.0,10,5,10,10_1,10_0,10_1_0 -1320,2,47.0,5,0.0,8,112,1,52,37,7.0,0.0,0.0,949.5576331495287,2168.9120803713236,0.0,35025.0,43,20,1,11807,201101320,,,485.0,1150.0,2.0,2.0,4.0,1.0,3.0,1.8,1903.369095953496,0.0,696.0,0.0,0.0,42504.0,4,1,3,85.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3118.469713520852,0.08903553785926772,0.07336885266141663,23613.333333333332,7,4,7,7_1,7_0,7_0_0 -1321,1,49.0,3,79.0,8,111,2,0,67,3.0,0.0,0.0,300.1475277196786,0.0,827.2453127057291,12544.0,0,71,2,11808,201101321,,,268.0,139.0,1.0,0.0,2.0,0.0,1.0,1.0,2405.235589635302,0.0,220.0,476.0,0.0,14398.0,0,1,3,35.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1127.3928404254077,0.08987506699819896,0.0783020447579808,14398.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -1322,2,87.0,3,0.0,3,211,2,86,77,5.0,0.0,0.0,551.1800054488643,0.0,1699.6762937525275,16121.0,70,70,1,11811,201101322,,,388.0,,0.0,2.0,4.0,0.0,2.0,1.5,1434.4470464255887,0.0,404.0,978.0,0.0,27468.0,6,5,1,105.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2250.8562992013917,0.13962262261654934,0.08194467377316848,18312.0,5,3,5,5_1,5_1,5_0_1 -1323,2,72.0,3,0.0,9,112,2,77,78,7.0,1522.997768773327,0.0,123.80886349870771,0.0,255.9098318304674,21074.0,70,70,1,11812,201101323,,,,,0.0,3.0,3.0,0.0,2.0,1.5,1964.826942609201,238.0,0.0,0.0,0.0,33340.0,5,5,2,75.0,9,0.0,3,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1902.716464102502,0.09028739034367002,0.05707007990709364,22226.666666666668,7,4,7,7_1,7_0,7_0_0 -1324,1,54.0,2,213.0,7,111,2,0,77,2.0,0.0,0.0,518.4366387885358,0.0,625.6477154917279,10582.0,0,50,8,11813,201101324,,,,209.0,0.0,1.0,2.0,0.0,1.0,1.0,2964.356133522648,0.0,380.0,360.0,0.0,12322.0,0,7,3,49.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1144.0843542802636,0.1081160795955645,0.09284891691935267,12322.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -1325,1,52.0,2,76.0,1,300,5,0,63,1.0,0.0,1179.737371628924,709.4396109737858,104.27461924862132,0.0,14031.0,0,41,1,11816,201101325,,,120.0,,1.0,2.0,5.0,0.0,1.0,1.0,1760.3257328063223,0.0,520.0,0.0,0.0,8418.0,0,1,2,200.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1993.4516018513311,0.1420748059191313,0.23680822069984928,8418.0,1,1,1_1,1_1_1,1_0_1,1_1_0 -1326,2,77.0,3,0.0,3,111,2,77,78,4.0,0.0,0.0,242.8466360641036,0.0,1286.0536373996629,14148.0,71,71,1,11817,201101326,,,,,0.0,4.0,4.0,0.0,2.0,1.5,3383.2046535629815,0.0,178.0,740.0,0.0,24150.0,5,5,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1528.9002734637666,0.10806476346223964,0.06330849993638785,16100.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -1327,2,50.0,2,0.0,1,112,2,37,23,10.0,6256.982500043751,485.77421184720396,3547.198054868929,180.74267336427695,0.0,129946.0,20,50,1,11819,201101327,,,550.0,,2.0,2.0,7.0,4.0,6.0,3.1,995.8685073647486,0.0,2600.0,0.0,0.0,146565.0,1,1,2,195.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,10470.697440124162,0.08057729703202994,0.07144064026284694,47279.032258064515,10,5,10,10_1,10_0,10_1_0 -1328,2,62.0,3,0.0,1,111,2,37,72,9.0,0.0,0.0,1116.0049695286305,0.0,3088.2642335531955,52978.0,20,12,1,11820,201101328,,,466.0,,1.0,4.0,7.0,0.0,2.0,1.5,1451.461301868321,973.0,447.0,1175.0,0.0,54367.0,1,5,1,160.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4204.269203081826,0.07935877539887927,0.07733127086434466,36244.666666666664,9,5,9,9_1,9_2,9_1_0 -1329,1,27.0,4,140.0,6,111,2,69,56,3.0,0.0,0.0,504.59914955355663,0.0,1042.9938524182915,10915.0,71,71,2,11821,201101329,,,210.0,310.0,2.0,0.0,3.0,3.0,5.0,2.4,8341.563339660568,970.0,0.0,0.0,0.0,32487.0,4,1,3,70.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1547.593001971848,0.14178589115637635,0.04763730113497239,13536.25,3,2,3_1,3_0_1,3_2_1,3_0_0 -1330,2,46.0,3,0.0,4,111,2,0,46,6.0,0.0,0.0,376.5487165937786,0.0,1084.4560401856618,33505.0,0,31,2,11822,201101330,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3697.307285264527,0.0,276.0,624.0,0.0,29653.0,0,1,2,60.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1461.0047567794404,0.043605573997297135,0.04927004879032275,19768.666666666668,6,3,6,6_0,6_3,6_0_1 -1331,2,54.0,1,0.0,1,112,2,52,31,10.0,0.0,0.0,1227.8762497623215,0.0,7299.223347403492,79181.0,20,10,1,11823,201101331,,,836.0,,2.0,4.0,8.0,0.0,2.0,1.5,1094.0600021085656,0.0,900.0,4200.0,0.0,89361.0,1,1,1,290.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,8527.099597165814,0.10769123397236476,0.09542305476847633,59574.0,10,5,10,10_1,10_2,10_1_0 -1332,2,63.0,3,0.0,9,112,4,77,74,3.0,0.0,208.188947934516,1637.1683330164287,0.0,0.0,40297.0,60,60,1,11824,201101332,,,450.0,,0.0,2.0,6.0,0.0,2.0,1.5,1931.845904274024,0.0,1200.0,0.0,0.0,20350.0,5,5,1,150.0,6,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1845.3572809509446,0.045793912225499285,0.09068094746687688,13566.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -1333,1,40.0,3,250.0,9,300,4,85,21,4.0,0.0,0.0,3001.475277196786,0.0,0.0,46253.0,50,50,1,11825,201101333,,,360.0,,1.0,0.0,5.0,3.0,5.0,2.4,1675.087257263808,0.0,2200.0,0.0,0.0,37200.0,6,1,2,120.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3001.475277196786,0.06489255350348704,0.0806848192794835,15500.0,4,2,4_1,4_1_1,4_0_1,4_0_0 -1334,2,85.0,3,0.0,5,111,4,0,78,8.0,0.0,0.0,2005.531207945125,104.27461924862132,0.0,13008.0,0,70,1,11827,201101334,,,250.0,,0.0,2.0,5.0,0.0,1.0,1.0,3277.370731852173,0.0,1470.0,0.0,0.0,25380.0,0,5,1,83.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2109.805827193746,0.1621929448949682,0.08312867719439504,25380.0,8,4,8,8_1,8_3,8_0_0 -1335,2,52.0,4,0.0,1,211,4,0,33,5.0,0.0,0.0,1792.6993246529894,0.0,166.8393907977941,40980.0,0,20,2,11830,201101335,,,,,1.0,0.0,1.0,0.0,1.0,1.0,1979.793218849561,0.0,1314.0,96.0,0.0,18740.0,0,1,1,43.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1959.5387154507835,0.04781695254882341,0.10456449922362772,18740.0,5,3,5,5_0,5_2,5_1_0 -1336,2,29.0,2,0.0,6,300,4,0,62,4.0,114.22483265799951,0.0,1064.1594164606786,0.0,0.0,26305.0,0,31,1,11831,201101336,,,,275.0,1.0,0.0,3.0,0.0,1.0,1.0,2241.868992804478,0.0,780.0,0.0,0.0,15540.0,0,1,3,70.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1178.384249118678,0.04479696822348139,0.07582910225988919,15540.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -1337,2,49.0,2,0.0,1,300,2,43,11,3.0,2379.684013708323,0.0,682.1534720901786,97.32297796537989,0.0,34369.0,60,44,1,11832,201101337,,,250.0,,2.0,0.0,6.0,1.0,3.0,1.8,2333.8134069107864,0.0,500.0,0.0,0.0,23224.0,1,1,2,150.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3159.1604637638816,0.0919188938800629,0.13602998896675342,12902.222222222223,3,2,3_0,3_1_0,3_0_0,3_1_0 -1338,2,57.0,1,0.0,2,300,2,34,22,10.0,2696.9752155360998,0.0,1206.6573268865166,140.77073598563877,802.1375401072634,33867.0,20,12,1,11833,201101338,,,200.0,,2.0,2.0,8.0,0.0,2.0,1.5,987.8034108871612,746.0,600.0,0.0,0.0,74153.0,1,1,1,200.0,0,0.0,3,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4846.540818515518,0.14310511171687834,0.0653586613962418,49435.333333333336,10,5,10,10_1,10_0,10_0_1 -1339,2,85.0,3,0.0,1,300,4,0,77,2.0,0.0,0.0,695.7965415319821,152.93610823131127,0.0,12227.0,0,70,1,11835,201101339,,,85.0,,0.0,3.0,3.0,0.0,1.0,1.0,2459.558228809661,0.0,510.0,0.0,0.0,9697.0,0,5,1,50.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,848.7326497632935,0.06941462744445027,0.08752528099033655,9697.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -1340,2,44.0,2,0.0,7,112,2,54,47,6.0,0.0,0.0,1186.9470414369107,0.0,1598.8774951455268,35011.0,42,31,1,11839,201101340,,,384.0,,2.0,0.0,5.0,3.0,5.0,2.8,2597.8659254913437,0.0,870.0,920.0,0.0,55417.0,4,1,2,120.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2785.8245365824378,0.07956997905179623,0.05027021557613075,19791.785714285714,6,3,6,6_1,6_1,6_0_0 -1341,2,59.0,2,0.0,6,112,2,43,38,10.0,0.0,0.0,2367.07254815292,0.0,0.0,50286.0,20,31,1,1184,201101341,,,693.0,,2.0,2.0,5.0,0.0,2.0,1.5,2416.367595057327,0.0,1735.0,0.0,0.0,62920.0,1,1,1,120.0,10,3.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2367.07254815292,0.047072197990552435,0.037620352004973295,41946.666666666664,10,5,10,10_1,10_1,10_0_0 -1342,2,61.0,3,0.0,5,112,4,75,75,8.0,0.0,0.0,1660.2054754646406,208.54923849724264,535.4751943343393,32552.0,71,41,1,11840,201101342,,,400.0,,0.0,3.0,4.0,0.0,2.0,1.5,2076.320505326403,498.0,1027.0,0.0,0.0,39880.0,5,5,1,99.0,8,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2404.2299082962227,0.07385813185967752,0.06028660752999555,26586.666666666668,8,4,8,8_1,8_0,8_0_0 -1343,2,53.0,5,0.0,4,111,2,0,42,3.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,15525.0,0,71,1,11842,201101343,,,398.0,,1.0,2.0,4.0,1.0,2.0,1.5,2910.9572688896924,1200.0,0.0,0.0,0.0,21930.0,0,1,3,70.0,5,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1914.548043676513,0.1233203248744936,0.08730269237011004,14620.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -1344,2,63.0,3,0.0,6,111,2,75,75,9.0,0.0,0.0,2000.2031868176155,0.0,891.3834058296532,42916.0,31,41,2,11843,201101344,,,,,0.0,0.0,3.0,1.0,3.0,2.0,2782.863432859991,829.0,1150.0,0.0,0.0,59437.0,5,5,1,66.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2891.586592647269,0.06737782162007803,0.04864960534090329,29718.5,9,5,9,9_0,9_4,9_0_0 -1345,1,43.0,3,19.0,99,112,1,0,43,3.0,0.0,0.0,409.2920832541072,0.0,427.52593891934737,9212.0,0,50,8,11844,201101345,,,200.0,252.0,2.0,0.0,3.0,1.0,2.0,1.5,3163.118621911298,0.0,300.0,246.0,0.0,20978.0,0,1,3,63.0,10,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,836.8180221734546,0.09083999372269372,0.039890267049931094,13985.333333333334,3,2,3_1,3_0_1,3_1_1,3_0_0 -1346,1,48.0,4,61.0,99,111,1,0,67,1.0,0.0,0.0,327.43366660328576,0.0,469.23578661879594,9433.0,0,71,2,11845,201101346,,,180.0,24.0,1.0,1.0,1.0,0.0,1.0,1.0,2342.0074264955874,0.0,240.0,270.0,0.0,9123.0,0,1,3,20.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,796.6694532220818,0.08445557651034472,0.08732538125858619,9123.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -1347,2,77.0,3,0.0,1,111,2,86,78,4.0,0.0,0.0,368.36287492869644,0.0,2745.8983068803614,21377.0,71,50,1,11846,201101347,,,260.0,,0.0,5.0,4.0,0.0,2.0,1.5,3215.3892066694666,0.0,270.0,1580.0,0.0,23411.0,5,5,1,63.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3114.2611818090577,0.1456827984192851,0.133025551313872,15607.333333333334,4,2,4_0,4_1_0,4_2_0,4_1_0 -1348,2,64.0,3,0.0,1,400,2,72,74,4.0,2379.684013708323,208.188947934516,736.7257498573929,66.0405921907935,0.0,32908.0,70,41,1,11847,201101348,,,262.0,,0.0,0.0,6.0,0.0,2.0,1.5,2561.088402096456,0.0,540.0,0.0,0.0,23919.0,5,5,1,230.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3390.6393036910254,0.1030338915671273,0.1417550609846158,15946.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -1349,2,85.0,2,0.0,2,111,2,0,72,6.0,2144.888524355769,0.0,741.0251054881021,0.0,696.6390735051493,11628.0,0,41,1,11848,201101349,,,370.0,,0.0,4.0,6.0,0.0,1.0,1.0,3036.7959236545653,163.0,481.0,300.0,0.0,19373.0,0,5,1,155.0,8,7.0,1,4,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3582.55270334902,0.308097067711474,0.1849250350151768,19373.0,6,3,6,6_1,6_3,6_0_1 -1350,1,48.0,4,392.0,1,111,2,0,85,1.0,0.0,0.0,1132.3747636696964,217.2387901012944,2353.130574377221,6358.0,0,71,2,11849,201101350,,,,,1.0,1.0,4.0,2.0,3.0,1.8,2776.5154470549473,0.0,830.0,1354.0,0.0,12754.0,0,7,3,56.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,3702.7441281482115,0.5823756099635438,0.2903202233141141,7085.555555555556,1,1,1_1,1_0_1,1_3_1,1_1_0 -1351,2,90.0,4,0.0,1,111,4,78,75,2.0,0.0,0.0,1203.318724767075,0.0,97.32297796537989,15229.0,71,71,1,1185,201101351,,,270.0,,0.0,5.0,5.0,0.0,2.0,1.5,3385.6831508634727,0.0,882.0,56.0,0.0,17530.0,5,5,1,150.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1300.641702732455,0.0854055882022756,0.07419519125684285,11686.666666666666,2,1,2_0,2_1_0,2_3_0,2_1_0 -1352,1,52.0,4,450.0,5,111,1,85,64,1.0,0.0,0.0,204.6460416270536,0.0,2398.31624271829,18654.0,71,60,2,11850,201101352,1200.0,1200.0,600.0,,1.0,0.0,4.0,4.0,6.0,3.3,2371.0640768138023,0.0,150.0,1380.0,0.0,30040.0,6,1,3,86.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2602.9622843453435,0.13953909533319092,0.0866498763097651,9103.030303030304,1,1,1_1,1_0_1,1_4_1,1_0_0 -1353,2,59.0,3,0.0,5,111,2,45,42,8.0,0.0,0.0,753.0974331875572,0.0,3149.0935013083636,49748.0,41,10,1,11852,201101353,,,804.0,,2.0,0.0,5.0,2.0,4.0,2.5,1124.48660368016,0.0,552.0,1812.0,0.0,62933.0,1,1,1,134.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3902.190934495921,0.07843915201607946,0.062005480979707324,25173.2,8,4,8,8_1,8_3,8_0_0 -1354,1,31.0,4,259.0,4,111,3,0,56,2.0,0.0,0.0,532.0797082303393,0.0,0.0,6210.0,0,41,2,11853,201101354,,,161.0,58.0,1.0,0.0,1.0,0.0,1.0,1.0,3226.4221119588356,0.0,390.0,0.0,0.0,11661.0,0,1,3,30.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,532.0797082303393,0.08568111243644755,0.04562899478864071,11661.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -1355,2,56.0,3,0.0,5,111,2,0,54,8.0,0.0,0.0,1957.0123717736906,0.0,4045.095745152178,18672.0,0,41,2,11854,201101355,,,,,1.0,2.0,5.0,0.0,1.0,1.0,4067.535010851042,3762.0,0.0,0.0,0.0,26040.0,0,1,1,100.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,6002.108116925869,0.321449663502885,0.23049570341497191,26040.0,8,4,8,8_0,8_3,8_0_0 -1356,1,21.0,5,156.0,8,111,2,0,84,1.0,0.0,0.0,136.43069441803573,0.0,472.7116072604166,9686.0,0,41,2,11855,201101356,,,58.0,150.0,0.0,0.0,1.0,0.0,1.0,1.0,3013.5965300500907,0.0,100.0,272.0,0.0,7637.0,0,3,3,25.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,609.1423016784523,0.06288894297733351,0.07976198791128092,7637.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -1357,2,70.0,1,0.0,4,112,2,77,72,9.0,0.0,0.0,866.4140268925817,0.0,2990.842879194072,21242.0,50,70,1,11856,201101357,,,,,0.0,1.0,5.0,0.0,2.0,1.5,5606.378658737888,307.0,518.0,1531.0,0.0,49955.0,5,5,1,155.0,9,2.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3857.2569060866535,0.18158633396509996,0.07721463128989398,33303.333333333336,9,5,9,9_1,9_1,9_0_1 -1358,2,47.0,3,0.0,2,111,2,42,62,7.0,0.0,346.98157989085996,586.6519859975537,0.0,1998.5968689319086,24512.0,50,50,1,11858,201101358,,,690.0,,2.0,1.0,5.0,1.0,3.0,2.0,1420.1748053830331,0.0,430.0,1150.0,0.0,45514.0,1,1,1,100.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2932.2304348203224,0.11962428340487608,0.06442480192512902,22757.0,7,4,7,7_1,7_2,7_0_1 -1359,2,46.0,4,0.0,3,111,2,0,45,3.0,0.0,0.0,877.2493651079698,0.0,1809.1646439635797,50502.0,0,60,2,11859,201101359,,,350.0,,1.0,0.0,5.0,2.0,3.0,2.0,3414.5305886630904,0.0,643.0,1041.0,0.0,28729.0,0,1,2,93.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2686.4140090715496,0.0531942103099194,0.09350878934427058,14364.5,3,2,3_0,3_0_0,3_3_0,3_0_1 -1360,2,51.0,3,0.0,9,120,2,22,22,10.0,0.0,0.0,2455.752499524643,260.6865481215533,0.0,36172.0,70,50,1,1186,201101360,,,92.0,,2.0,2.0,5.0,0.0,2.0,1.5,2599.541296428502,0.0,1800.0,0.0,0.0,106708.0,1,1,2,143.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2716.4390476461963,0.07509783942403506,0.025456751580445667,71138.66666666667,10,5,10,10_1,10_0,10_0_0 -1361,2,35.0,1,0.0,1,111,4,0,31,10.0,0.0,0.0,1280.5056893385847,0.0,311.8229043312418,81905.0,0,12,2,11860,201101361,,,,1253.0,1.0,0.0,2.0,0.0,1.0,1.0,4215.577505674881,290.0,828.0,0.0,0.0,105449.0,0,1,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1592.3285936698264,0.019441164686769142,0.015100461774600294,105449.0,10,5,10,10_0,10_4,10_1_0 -1362,2,84.0,3,0.0,1,120,2,0,71,2.0,3893.163046426817,0.0,436.5782221377143,0.0,0.0,17374.0,0,71,1,11861,201101362,,,105.0,,0.0,2.0,3.0,0.0,1.0,1.0,2913.7252814956355,0.0,320.0,0.0,0.0,9345.0,0,5,1,50.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4329.741268564531,0.24920808498702263,0.4633216980807417,9345.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -1363,2,67.0,3,0.0,5,111,2,77,75,7.0,0.0,0.0,586.6519859975537,0.0,1416.3969114604395,28244.0,70,71,2,11863,201101363,,,,329.0,0.0,2.0,4.0,0.0,2.0,1.5,2576.8969295877846,0.0,430.0,815.0,0.0,36782.0,5,5,3,115.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2003.048897457993,0.070919448288415,0.05445731329068547,24521.333333333332,7,4,7,7_0,7_2,7_0_0 -1364,1,36.0,4,78.0,5,111,4,0,43,5.0,15.864560091388821,0.0,491.1504999049286,0.0,0.0,23717.0,0,31,2,11865,201101364,,,75.0,229.0,1.0,0.0,2.0,0.0,1.0,1.0,3279.2993695745513,0.0,360.0,0.0,0.0,17146.0,0,4,3,55.0,7,6.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,507.0150599963174,0.02137770628647457,0.02957045724928948,17146.0,5,3,5,5_0,5_2,5_0_0 -1365,1,19.0,2,215.0,1,111,4,0,84,1.0,0.0,0.0,81.85841665082144,0.0,0.0,13085.0,0,41,2,11866,201101365,,,,285.0,0.0,0.0,2.0,0.0,1.0,1.0,4307.427113270783,0.0,60.0,0.0,0.0,3312.0,0,3,3,35.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,81.85841665082144,0.006255897336707791,0.02471570551051372,3312.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -1366,2,61.0,2,0.0,4,111,1,0,34,10.0,0.0,0.0,245.5752499524643,0.0,0.0,34150.0,0,20,2,11867,201101366,,,,,1.0,2.0,3.0,0.0,1.0,1.0,1894.665343307374,0.0,180.0,0.0,0.0,48006.0,0,1,2,80.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,245.5752499524643,0.007191076133307886,0.005115511601726124,48006.0,10,5,10,10_0,10_3,10_0_1 -1367,2,59.0,1,0.0,1,111,2,0,37,10.0,0.0,0.0,545.7227776721429,0.0,1216.5372245672486,62046.0,0,31,2,11870,201101367,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2870.3865577603256,0.0,400.0,700.0,0.0,48945.0,0,1,1,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1762.2600022393915,0.02840247561872468,0.036004903508824015,48945.0,10,5,10,10_0,10_4,10_1_0 -1368,1,55.0,3,30.0,5,111,1,78,54,8.0,0.0,0.0,3691.8145909520467,239.831624271829,0.0,34564.0,70,50,2,11871,201101368,1320.0,1320.0,600.0,321.0,3.0,1.0,5.0,2.0,4.0,2.5,1035.364826154803,0.0,2706.0,0.0,0.0,70498.0,7,1,3,100.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,3931.6462152238755,0.11374974584029265,0.05576961353831138,28199.2,8,4,8,8_0,8_2,8_0_0 -1369,2,51.0,3,0.0,6,111,2,37,54,8.0,0.0,0.0,2341.150716213493,159.8877495145527,0.0,42709.0,31,50,1,11872,201101369,,,410.0,,2.0,2.0,4.0,0.0,2.0,1.5,2571.365394191593,0.0,1716.0,0.0,0.0,41654.0,4,1,1,110.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2501.0384657280456,0.058559986553842175,0.060043176303069226,27769.333333333332,8,4,8,8_1,8_3,8_0_0 -1370,1,76.0,4,110.0,1,111,4,0,78,5.0,0.0,0.0,1337.02080529675,0.0,465.7599659771752,15769.0,0,70,2,11874,201101370,,,,258.0,0.0,1.0,3.0,0.0,1.0,1.0,3587.8124362788917,0.0,980.0,268.0,0.0,17570.0,0,5,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1802.7807712739252,0.11432435609575275,0.10260562158644992,17570.0,5,3,5,5_0,5_4,5_1_0 -1371,2,71.0,2,0.0,3,112,2,77,72,6.0,2538.3296146222115,0.0,605.7522832160786,72.99223347403492,0.0,29700.0,70,50,1,11875,201101371,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1469.7693347057066,0.0,444.0,0.0,0.0,31408.0,5,5,1,178.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3217.074131312325,0.1083189943202803,0.1024284937376568,20938.666666666668,6,3,6,6_1,6_0,6_0_1 -1372,2,62.0,4,0.0,5,111,6,0,86,1.0,118.98420068541617,0.0,409.2920832541072,208.54923849724264,0.0,6438.0,0,70,1,11876,201101372,,,200.0,,0.0,3.0,2.0,0.0,1.0,1.0,2188.222984810959,0.0,300.0,0.0,0.0,5080.0,0,6,1,40.0,6,5.0,1,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,736.825522436766,0.11444944430518267,0.14504439418046575,5080.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -1373,2,25.0,3,0.0,6,112,2,84,63,5.0,0.0,0.0,791.2980276246072,0.0,0.0,27276.0,10,70,2,11878,201101373,,,,680.0,1.0,0.0,2.0,0.0,2.0,1.5,2030.1242804999747,0.0,580.0,0.0,0.0,25578.0,3,1,3,50.0,10,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,791.2980276246072,0.029010779719335945,0.030936665400915133,17052.0,5,3,5,5_0,5_2,5_0_0 -1374,2,42.0,2,0.0,9,111,1,46,37,10.0,0.0,0.0,573.00891655575,0.0,34.7582064162071,45147.0,31,10,2,1188,201101374,,,320.0,,2.0,0.0,4.0,2.0,4.0,2.1,2774.545766410091,0.0,420.0,20.0,0.0,207309.0,4,1,2,100.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,607.7671229719572,0.013461960328968861,0.0029316967568796203,98718.57142857142,10,5,10,10_0,10_3,10_0_0 -1375,1,57.0,2,280.0,1,111,4,54,78,2.0,0.0,0.0,750.3688192991965,0.0,0.0,21136.0,71,71,2,11880,201101375,,,,220.0,1.0,1.0,1.0,0.0,2.0,1.5,3763.903688478566,0.0,550.0,0.0,0.0,18459.0,4,7,3,30.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,750.3688192991965,0.03550193126888704,0.040650567165025,12306.0,2,1,2_1,2_0_1,2_4_1,2_1_0 -1376,2,37.0,1,0.0,2,111,2,48,46,7.0,0.0,69.396315978172,1364.3069441803573,0.0,1737.9103208103552,74508.0,31,20,1,11881,201101376,,,160.0,,2.0,0.0,6.0,2.0,4.0,2.1,1783.6335257755288,0.0,1000.0,1000.0,0.0,47512.0,1,1,1,140.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3171.6135809688844,0.042567423376937835,0.06675394807562057,22624.761904761905,7,4,7,7_1,7_3,7_0_1 -1377,2,29.0,2,0.0,99,111,2,0,33,9.0,0.0,0.0,229.20356662230003,0.0,625.6477154917279,29809.0,0,10,2,11885,201101377,,,,430.0,1.0,0.0,2.0,0.0,1.0,1.0,3330.3882996979187,0.0,168.0,360.0,0.0,29542.0,0,1,3,48.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,854.851282114028,0.028677623607434935,0.02893681139103744,29542.0,9,5,9,9_0,9_3,9_0_0 -1378,2,45.0,2,0.0,8,111,2,37,38,10.0,0.0,0.0,492.64401349832065,0.0,1047.7953347025853,137126.0,12,12,2,11886,201101378,,,,,2.0,0.0,5.0,3.0,5.0,2.8,1729.6049261219182,829.0,45.0,90.0,0.0,178576.0,1,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1540.439348200906,0.011233751062533041,0.008626239518193407,63777.14285714286,10,5,10,10_0,10_4,10_0_0 -1379,2,55.0,3,0.0,5,111,2,56,45,5.0,0.0,0.0,682.1534720901786,0.0,1407.7073598563877,32563.0,60,50,2,11888,201101379,,,,630.0,2.0,2.0,4.0,0.0,2.0,1.5,2745.953237228292,0.0,500.0,810.0,0.0,27542.0,1,1,3,110.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2089.8608319465666,0.06417900168739264,0.07587905133783192,18361.333333333332,5,3,5,5_0,5_3,5_0_0 -1380,2,54.0,3,0.0,6,120,4,52,65,7.0,0.0,693.9631597817199,2161.062199581686,48.661488982689946,0.0,19731.0,71,71,1,11889,201101380,,,230.0,,2.0,2.0,6.0,0.0,2.0,1.5,4786.963008343521,0.0,1584.0,0.0,0.0,35530.0,1,1,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2903.686848346096,0.14716369410299002,0.08172493240489997,23686.666666666668,7,4,7,7_1,7_0,7_0_0 -1381,2,56.0,3,0.0,3,111,2,0,56,4.0,0.0,0.0,731.5932280596863,0.0,510.5320104819326,22222.0,0,71,1,11892,201101381,,,,,2.0,2.0,5.0,1.0,2.0,1.5,2724.3699243993656,415.0,378.0,37.0,0.0,23540.0,0,1,1,90.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1242.125238541619,0.05589619469631982,0.05276657767806368,15693.333333333334,4,2,4_0,4_1_0,4_4_0,4_0_1 -1382,2,22.0,3,0.0,3,111,1,0,84,1.0,0.0,0.0,124.84927411634389,0.0,292.8185410351658,15764.0,0,41,2,11894,201101382,80.0,80.0,,640.0,0.0,0.0,3.0,0.0,1.0,1.0,4565.223291269515,240.0,0.0,20.0,0.0,8400.0,0,3,4,73.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,417.6678151515097,0.026495040291265523,0.0497223589466083,8400.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -1383,1,22.0,2,247.0,1,111,4,0,47,3.0,0.0,0.0,409.2920832541072,0.0,0.0,22065.0,0,20,1,11896,201101383,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2598.995645342695,0.0,300.0,0.0,0.0,14359.0,0,1,3,30.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,409.2920832541072,0.01854938061428086,0.02850421918337678,14359.0,3,2,3_1,3_1_1,3_2_1,3_1_0 -1384,2,57.0,3,0.0,4,111,1,0,52,9.0,0.0,0.0,800.8481762338697,0.0,0.0,22764.0,0,50,2,11898,201101384,,,,620.0,1.0,0.0,2.0,0.0,1.0,1.0,3664.5709489694877,0.0,587.0,0.0,0.0,30822.0,0,1,3,70.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,800.8481762338697,0.035180468117811885,0.02598300487424144,30822.0,9,5,9,9_0,9_3,9_0_1 -1385,2,34.0,2,0.0,2,111,2,0,55,1.0,0.0,0.0,409.2920832541072,0.0,0.0,20858.0,0,41,2,11899,201101385,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3744.153014861146,0.0,300.0,0.0,0.0,1460.0,0,1,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,409.2920832541072,0.019622786616842802,0.280337043324731,1460.0,1,1,1_0,1_0_0,1_4_0,1_0_1 -1386,2,77.0,3,0.0,1,112,2,72,77,4.0,0.0,0.0,4888.3117809982205,0.0,0.0,61432.0,71,70,1,119,201101386,,,479.0,,0.0,3.0,5.0,0.0,2.0,1.5,4168.7539927760145,0.0,3583.0,0.0,0.0,23423.0,5,5,1,80.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4888.3117809982205,0.0795727272593798,0.20869708325142897,15615.333333333334,4,2,4_0,4_1_0,4_0_0,4_1_0 -1387,1,55.0,4,257.0,2,111,1,0,75,1.0,0.0,0.0,491.1504999049286,0.0,0.0,6690.0,0,31,2,1190,201101387,,,,,0.0,1.0,1.0,0.0,1.0,1.0,3461.158370213242,0.0,360.0,0.0,0.0,8684.0,0,4,3,10.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,491.1504999049286,0.07341562031463805,0.056558095336818125,8684.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -1388,1,57.0,3,329.0,5,111,2,78,77,3.0,0.0,0.0,553.908619337225,0.0,1153.9724530180758,9847.0,71,71,2,11900,201101388,,,369.0,9.0,0.0,6.0,4.0,1.0,3.0,2.0,3789.7563512350994,0.0,406.0,664.0,0.0,26028.0,7,5,3,86.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1707.8810723553008,0.17344176625929733,0.06561706901626328,13014.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -1389,1,39.0,2,420.0,6,111,2,0,56,2.0,0.0,0.0,368.36287492869644,0.0,521.3730962431066,18477.0,0,20,2,11901,201101389,,,200.0,,1.0,0.0,3.0,2.0,3.0,1.6,2413.564099583958,0.0,270.0,300.0,0.0,18869.0,0,1,3,90.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,889.735971171803,0.04815370304550539,0.047153318732937786,11793.125,2,1,2_1,2_0_1,2_3_1,2_0_0 -1390,2,32.0,2,0.0,99,112,2,46,37,7.0,0.0,0.0,481.6003512956661,0.0,980.1814209370403,80233.0,10,31,2,11902,201101390,,,,515.0,2.0,0.0,4.0,1.0,3.0,1.8,1791.5776475211114,0.0,353.0,564.0,0.0,41215.0,1,1,3,70.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1461.7817722327063,0.018219208707548094,0.035467227277270565,22897.222222222223,7,4,7,7_0,7_1,7_0_0 -1391,2,62.0,3,0.0,2,300,5,0,77,1.0,0.0,832.755791738064,1364.3069441803573,139.0328256648284,0.0,25253.0,0,50,1,11904,201101391,,,,,0.0,0.0,6.0,0.0,1.0,1.0,2395.9821183104214,0.0,1000.0,0.0,0.0,5723.0,0,5,1,100.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2336.09556158325,0.09250764509496891,0.4081942270807706,5723.0,1,1,1_0,1_1_0,1_0_0,1_0_1 -1392,2,44.0,3,0.0,7,112,6,55,67,6.0,0.0,0.0,1882.743582968893,139.0328256648284,0.0,51336.0,50,50,1,11908,201101392,,,310.0,,3.0,0.0,6.0,3.0,5.0,2.8,1136.506191515843,0.0,1380.0,0.0,0.0,55607.0,1,1,1,120.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2021.7764086337213,0.0393832088326656,0.03635830756260401,19859.64285714286,6,3,6,6_1,6_1,6_0_0 -1393,2,48.0,3,0.0,7,111,2,46,67,6.0,0.0,0.0,766.7405026293608,0.0,1207.8476729631968,32972.0,50,50,1,11909,201101393,,,427.0,,2.0,2.0,5.0,1.0,3.0,2.0,1365.5637275608976,0.0,562.0,695.0,0.0,40235.0,1,1,3,107.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1974.5881755925575,0.05988681837900514,0.04907638065347477,20117.5,6,3,6,6_1,6_3,6_0_0 -1394,1,38.0,2,120.0,7,111,4,56,63,3.0,0.0,0.0,1773.5990274344645,0.0,0.0,30430.0,50,50,1,1191,201101394,,,590.0,,2.0,0.0,4.0,2.0,4.0,2.1,1463.195788667658,0.0,1300.0,0.0,0.0,27113.0,1,1,3,90.0,5,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1773.5990274344645,0.05828455561730084,0.06541507864988988,12910.95238095238,3,2,3_1,3_1_1,3_2_1,3_0_0 -1395,0,47.0,1,0.0,5,111,2,22,22,8.0,0.0,0.0,0.0,0.0,0.0,63092.0,50,50,1,11910,201101395,,,,,2.0,2.0,7.0,2.0,4.0,2.3,1186.5438631334353,0.0,0.0,0.0,0.0,57325.0,1,1,5,130.0,6,5.0,4,4,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,24923.913043478264,8,4,8,8_1,8_2,8_0_0 -1396,0,38.0,2,0.0,3,111,4,85,47,4.0,0.0,0.0,1159.6609025533037,43.44775802025888,0.0,35580.0,50,41,2,11911,201101396,,,370.0,,1.0,0.0,5.0,2.0,4.0,2.3,2795.2467105951414,0.0,850.0,0.0,0.0,37668.0,6,1,5,110.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1203.1086605735625,0.03381418382725021,0.031939807278686484,16377.391304347828,4,2,4_0,4_0_0,4_3_0,4_0_1 -1397,2,65.0,3,0.0,3,111,1,0,47,10.0,0.0,0.0,409.2920832541072,0.0,83.41969539889705,38565.0,0,41,2,11913,201101397,,,,556.0,1.0,2.0,2.0,0.0,1.0,1.0,2977.9094984831604,0.0,300.0,48.0,0.0,42355.0,0,5,3,47.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,492.7117786530042,0.01277613843259443,0.011632907062991481,42355.0,10,5,10,10_0,10_3,10_0_1 -1398,2,71.0,1,0.0,1,112,4,0,75,6.0,0.0,346.98157989085996,709.4396109737858,45.18566834106924,0.0,44749.0,0,70,1,1192,201101398,,,290.0,,0.0,1.0,3.0,0.0,1.0,1.0,2794.8157777387573,0.0,520.0,0.0,0.0,20943.0,0,5,1,75.0,5,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1101.606859205715,0.024617463165785045,0.05260024157024853,20943.0,6,3,6,6_1,6_0,6_1_0 -1399,2,25.0,1,0.0,7,112,2,38,38,10.0,0.0,0.0,51.843663878853576,66.0405921907935,0.0,58311.0,12,12,1,11920,201101399,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4774.638847459453,0.0,38.0,0.0,0.0,64057.0,1,1,2,78.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,117.88425606964708,0.0020216469631741366,0.00184030248169048,42704.666666666664,10,5,10,10_1,10_1,10_0_0 -1400,2,75.0,3,0.0,5,111,2,77,72,7.0,0.0,277.585263912688,272.86138883607146,0.0,1216.5372245672486,30369.0,71,70,2,11922,201101400,,,200.0,,0.0,1.0,3.0,0.0,2.0,1.5,3194.684594022862,0.0,200.0,700.0,0.0,36566.0,5,5,1,59.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1766.9838773160081,0.058183801814877284,0.04832313836121009,24377.333333333332,7,4,7,7_0,7_4,7_0_0 -1401,2,29.0,4,0.0,9,111,1,0,52,4.0,0.0,0.0,395.6490138123036,0.0,0.0,13781.0,0,71,2,11923,201101401,,,190.0,286.0,1.0,0.0,2.0,0.0,1.0,1.0,3199.1467425607793,0.0,290.0,0.0,0.0,15290.0,0,1,3,51.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,395.6490138123036,0.028709746303773574,0.0258763252983848,15290.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -1402,1,28.0,3,110.0,4,112,6,21,43,5.0,1348.4876077680499,0.0,732.1917410540885,39.971937378638174,329.02692663917236,66395.0,20,31,1,11924,201101402,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3157.1671119145444,306.0,420.0,0.0,0.0,33046.0,1,1,3,70.0,7,4.0,4,5,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,2449.678212839949,0.036895522446569004,0.07412934130726712,18358.888888888887,5,3,5,5_1,5_2,5_0_1 -1403,2,70.0,3,0.0,4,111,1,0,75,8.0,0.0,0.0,838.7160979492659,0.0,803.3383404152663,28415.0,0,60,2,11925,201101403,,,,340.0,0.0,2.0,4.0,0.0,1.0,1.0,3522.4259792368834,537.0,410.0,130.0,0.0,28779.0,0,5,3,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1642.0544383645322,0.057788296264808456,0.05705738345197999,28779.0,8,4,8,8_0,8_4,8_0_1 -1404,1,48.0,2,143.0,99,221,2,0,52,3.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,20478.0,0,50,2,11928,201101404,,,500.0,227.0,1.0,2.0,2.0,1.0,3.0,1.8,3062.280984779802,600.0,0.0,0.0,0.0,24985.0,0,1,3,50.0,1,2.0,5,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,957.2740218382565,0.04674646068162206,0.03831394924307611,13880.555555555555,3,2,3_1,3_0_1,3_1_1,3_0_0 -1405,0,56.0,3,0.0,2,111,4,0,54,5.0,0.0,0.0,1064.1594164606786,0.0,0.0,16887.0,0,60,2,1193,201101405,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2957.392032957574,0.0,780.0,0.0,0.0,17939.0,0,1,5,60.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1064.1594164606786,0.0630164870291158,0.05932099985844688,17939.0,5,3,5,5_0,5_3,5_0_1 -1406,2,76.0,3,0.0,2,112,2,78,78,4.0,3172.912018277764,0.0,573.00891655575,0.0,0.0,30788.0,70,70,1,11930,201101406,,,250.0,,0.0,1.0,5.0,0.0,2.0,1.5,1156.1198650835038,0.0,420.0,0.0,0.0,24264.0,5,5,1,100.0,5,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3745.9209348335144,0.12166821277229811,0.15438183872541686,16176.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -1407,2,44.0,5,0.0,8,111,4,46,37,8.0,0.0,0.0,0.0,0.0,0.0,78787.0,71,41,1,11931,201101407,,,,,3.0,1.0,6.0,4.0,7.0,3.6,2554.502555878154,0.0,0.0,0.0,0.0,91560.0,1,1,3,160.0,9,7.0,5,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,25433.333333333332,8,4,8,8_1,8_3,8_0_0 -1408,2,62.0,2,0.0,2,111,2,68,68,7.0,0.0,0.0,1023.230208135268,0.0,3997.193737863817,43563.0,42,30,1,11932,201101408,,,1500.0,,2.0,4.0,5.0,0.0,3.0,2.0,2025.6242257018578,0.0,750.0,2300.0,0.0,44639.0,1,1,1,100.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5020.423945999085,0.11524513798404805,0.11246721355763088,22319.5,7,4,7,7_1,7_3,7_0_1 -1409,1,29.0,4,468.0,7,111,2,85,67,2.0,0.0,0.0,518.4366387885358,0.0,0.0,15065.0,71,71,2,11934,201101409,,,,55.0,1.0,0.0,1.0,2.0,4.0,2.1,5276.745498458597,0.0,380.0,0.0,0.0,25596.0,6,1,3,30.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,518.4366387885358,0.03441331820700536,0.02025459598329957,12188.571428571428,2,1,2_1,2_0_1,2_4_1,2_0_0 -1410,2,52.0,3,0.0,1,400,5,0,13,5.0,0.0,138.792631956344,654.8673332065715,0.0,0.0,13630.0,0,50,1,11935,201101410,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2292.414155705478,0.0,480.0,0.0,0.0,25367.0,0,1,1,100.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,793.6599651629156,0.05822890426727187,0.031287103920956974,16911.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0 -1411,2,27.0,4,0.0,99,111,2,65,47,6.0,0.0,0.0,409.2920832541072,0.0,380.6023602574678,19919.0,50,42,2,11937,201101411,,,,429.0,2.0,0.0,2.0,0.0,2.0,1.5,2704.2192878539754,0.0,300.0,219.0,0.0,29795.0,1,4,3,52.0,8,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,789.894443511575,0.039655326246878606,0.02651097309990183,19863.333333333332,6,3,6,6_0,6_3,6_0_0 -1412,2,41.0,2,0.0,7,300,2,69,37,8.0,0.0,0.0,687.6106998669001,1216.5372245672486,0.0,48051.0,71,12,1,11938,201101412,,,528.0,,2.0,0.0,6.0,2.0,4.0,2.1,2793.2816644063105,0.0,504.0,0.0,0.0,53216.0,4,1,2,180.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1904.1479244341485,0.039627644053904156,0.03578149286744867,25340.95238095238,8,4,8,8_1,8_0,8_0_0 -1413,2,26.0,3,0.0,1,400,5,67,62,8.0,0.0,763.359475759892,2455.766133834577,104.27461924862132,2115.019492481216,33411.0,43,50,1,11939,201101413,,,396.0,,2.0,0.0,4.0,0.0,2.0,1.5,2352.079968565843,1967.0,1050.0,0.0,0.0,38730.0,1,1,3,99.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5438.419721324306,0.16277332978133865,0.140418789603003,25820.0,8,4,8,8_1,8_0,8_1_0 -1414,2,67.0,2,0.0,1,221,2,77,78,6.0,2855.620816449988,0.0,1500.737638598393,119.9158121359145,0.0,24912.0,70,70,1,11941,201101414,,,320.0,,0.0,5.0,5.0,0.0,2.0,1.5,1332.2060727757107,0.0,1100.0,0.0,0.0,31490.0,5,5,1,140.0,1,3.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4476.274267184295,0.1796834564540902,0.14214907167939966,20993.333333333332,6,3,6,6_1,6_1,6_1_0 -1415,2,42.0,3,0.0,7,112,5,56,62,3.0,0.0,0.0,859.5133748336251,97.32297796537989,0.0,32984.0,50,42,1,11942,201101415,,,430.0,,2.0,0.0,4.0,2.0,4.0,2.3,1749.9631241175484,0.0,630.0,0.0,0.0,28740.0,1,1,1,150.0,7,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,956.836352799005,0.02900910601500743,0.03329284456503149,12495.652173913044,2,1,2_0,2_1_0,2_1_0,2_0_0 -1416,2,32.0,3,0.0,1,112,2,54,38,4.0,3331.5576191916525,555.170527825376,491.1504999049286,52.13730962431066,0.0,27805.0,20,31,1,11943,201101416,,,,,2.0,0.0,7.0,2.0,4.0,2.1,3815.52936171504,0.0,360.0,0.0,0.0,35089.0,4,1,2,115.0,5,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4430.015956546267,0.15932443648790748,0.12625084660566752,16709.04761904762,4,2,4_0,4_1_0,4_0_0,4_1_0 -1417,2,66.0,2,0.0,6,111,2,56,72,6.0,0.0,277.585263912688,910.6906137325435,0.0,2145.4302554399173,48781.0,50,50,1,11944,201101417,,,200.0,,1.0,4.0,5.0,0.0,2.0,1.5,2803.5797322610074,518.0,470.0,914.0,0.0,29838.0,1,5,1,135.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3333.706133085149,0.06834025815553492,0.11172686282878037,19892.0,6,3,6,6_1,6_3,6_0_0 -1418,2,43.0,1,0.0,2,111,2,56,64,5.0,0.0,0.0,955.0148609262501,0.0,1216.5372245672486,59079.0,41,50,1,11945,201101418,,,420.0,,2.0,0.0,5.0,2.0,4.0,2.1,2997.5129596005354,0.0,700.0,700.0,0.0,36758.0,1,1,2,80.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2171.5520854934985,0.036756750884298965,0.05907699236883123,17503.809523809523,5,3,5,5_1,5_3,5_0_1 -1419,2,50.0,2,0.0,6,111,2,46,37,9.0,0.0,0.0,764.011888741,0.0,2172.387901012944,71781.0,41,42,1,11946,201101419,,,297.0,,3.0,0.0,6.0,2.0,4.0,2.5,1320.003629293141,0.0,560.0,1250.0,0.0,88941.0,1,1,1,130.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2936.399789753944,0.04090775817770641,0.03301514250743688,35576.4,9,5,9,9_1,9_2,9_0_0 -1420,2,59.0,3,0.0,5,120,2,78,78,6.0,0.0,0.0,850.5356799175928,0.0,1758.0360295916562,25800.0,70,70,1,11947,201101420,,,464.0,,0.0,3.0,5.0,0.0,2.0,1.5,3162.3164244988184,1635.0,0.0,0.0,0.0,28466.0,4,5,1,120.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2608.571709509249,0.10110743060113368,0.09163815462338401,18977.333333333332,5,3,5,5_1,5_1,5_0_0 -1421,2,49.0,3,0.0,5,111,1,48,52,6.0,0.0,0.0,590.7449068300947,0.0,0.0,55028.0,31,41,2,11948,201101421,,,,487.0,2.0,0.0,4.0,2.0,4.0,2.5,2177.6508517653315,0.0,433.0,0.0,0.0,49479.0,1,1,3,67.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,590.7449068300947,0.010735351218108867,0.01193930570201691,19791.6,6,3,6,6_0,6_4,6_0_0 -1422,2,74.0,3,0.0,5,400,2,78,75,4.0,2379.684013708323,0.0,57.30089165557501,0.0,0.0,19961.0,71,50,1,11949,201101422,,,13.0,,0.0,2.0,5.0,0.0,2.0,1.5,1802.3631007445429,0.0,42.0,0.0,0.0,22650.0,5,5,1,94.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2436.984905363898,0.1220873155334852,0.1075931525546975,15100.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -1423,2,73.0,2,0.0,7,111,6,43,74,10.0,2379.684013708323,0.0,1650.8114024582324,391.02982218232995,0.0,103568.0,33,10,1,1195,201101423,,,784.0,,1.0,2.0,6.0,0.0,2.0,1.5,1715.9234567534033,0.0,1210.0,0.0,0.0,104605.0,1,5,1,185.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4421.525238348885,0.04269200176066821,0.042268775281763635,69736.66666666667,10,5,10,10_1,10_3,10_0_0 -1424,2,72.0,3,0.0,3,111,1,78,75,2.0,0.0,0.0,351.99119159853217,0.0,396.243553144761,31011.0,71,50,2,11951,201101424,,,400.0,,0.0,2.0,3.0,0.0,2.0,1.5,3246.4227950252707,0.0,258.0,228.0,0.0,16009.0,5,5,1,60.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,748.2347447432932,0.02412804310545591,0.04673838120702687,10672.666666666666,2,1,2_0,2_0_0,2_3_0,2_0_1 -1425,2,33.0,2,0.0,9,112,2,63,43,7.0,0.0,0.0,2182.8911106885716,45.18566834106924,0.0,43956.0,43,33,1,11953,201101425,,,197.0,,2.0,0.0,5.0,2.0,4.0,2.1,3403.9940037708884,0.0,1600.0,0.0,0.0,47330.0,1,1,2,170.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2228.076779029641,0.05068879741172174,0.04707535979356942,22538.095238095237,7,4,7,7_1,7_0,7_0_0 -1426,0,61.0,2,0.0,1,111,4,0,34,10.0,0.0,0.0,953.3173414921022,0.0,434.9020399825583,92151.0,0,10,2,11954,201101426,,,,,1.0,3.0,2.0,0.0,1.0,1.0,4062.0720453625663,259.0,600.0,90.0,0.0,44166.0,0,1,5,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1388.2193814746604,0.01506461548409307,0.03143185666518726,44166.0,10,5,10,10_0,10_4,10_1_0 -1427,2,37.0,3,0.0,1,400,2,0,22,1.0,951.8736054833294,0.0,764.011888741,0.0,0.0,16846.0,0,43,8,11956,201101427,,,129.0,,1.0,0.0,4.0,1.0,2.0,1.3,2963.5414684451416,0.0,560.0,0.0,0.0,4010.0,0,1,1,80.0,0,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1715.8854942243292,0.1018571467543826,0.42790161950731403,3084.6153846153843,1,1,1_0,1_0_0,1_0_0,1_1_0 -1428,2,37.0,2,0.0,1,112,4,43,47,7.0,0.0,0.0,245.5752499524643,0.0,0.0,41675.0,31,43,1,11957,201101428,,,300.0,,2.0,0.0,6.0,3.0,5.0,2.4,2311.1109785114745,0.0,180.0,0.0,0.0,52532.0,1,1,2,170.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,245.5752499524643,0.00589262747336447,0.004674774422303821,21888.333333333336,7,4,7,7_1,7_0,7_1_0 -1429,2,50.0,3,0.0,7,112,6,67,38,9.0,951.8736054833294,416.377895869032,1678.0975413418394,194.64595593075978,0.0,56192.0,50,41,1,11958,201101429,,,215.0,,2.0,2.0,5.0,0.0,2.0,1.5,1792.0861260515185,0.0,1230.0,0.0,0.0,53570.0,1,1,1,120.0,9,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3240.9949986249603,0.05767716042541572,0.060500186645976485,35713.333333333336,9,5,9,9_1,9_0,9_0_0 -1430,1,49.0,4,298.0,1,111,1,0,85,1.0,0.0,0.0,81.85841665082144,0.0,1265.1987135499387,7344.0,0,70,2,11961,201101430,692.0,692.0,,,0.0,0.0,2.0,0.0,1.0,1.0,6790.51846970358,0.0,60.0,728.0,0.0,8656.0,0,7,3,54.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1347.0571302007602,0.18342281184650874,0.15562120265720428,8656.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -1431,2,33.0,1,0.0,2,111,2,54,38,10.0,0.0,0.0,315.1549041056625,0.0,1133.1175291683517,37571.0,20,10,1,11962,201101431,,,49.0,,2.0,0.0,4.0,1.0,3.0,1.8,1734.544614078538,0.0,231.0,652.0,0.0,68680.0,4,1,2,120.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1448.2724332740142,0.038547614736738824,0.021087251503698518,38155.555555555555,10,5,10,10_1,10_2,10_0_1 -1432,1,50.0,4,200.0,3,111,1,0,21,2.0,0.0,0.0,409.2920832541072,0.0,173.79103208103552,20254.0,0,44,2,11963,201101432,,,,100.0,1.0,1.0,4.0,0.0,1.0,1.0,3146.545816943424,0.0,300.0,100.0,0.0,9340.0,0,1,3,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,583.0831153351427,0.02878854129234436,0.06242859907228508,9340.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -1433,1,81.0,4,200.0,7,111,1,0,86,4.0,0.0,0.0,832.3284941089594,0.0,1720.4022307930582,19287.0,0,71,2,11964,201101433,,,400.0,190.0,0.0,5.0,3.0,0.0,1.0,1.0,4006.166082600906,1600.0,0.0,0.0,0.0,16468.0,0,5,3,70.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2552.7307249020178,0.13235499169917653,0.1550115815461512,16468.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -1434,2,61.0,3,0.0,6,111,2,77,38,7.0,0.0,0.0,542.9941637837821,0.0,2043.7825372729778,29307.0,31,30,1,11965,201101434,,,492.0,,1.0,3.0,5.0,0.0,3.0,2.0,2101.1125035233736,0.0,398.0,1176.0,0.0,45460.0,6,4,1,100.0,8,7.0,5,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2586.77670105676,0.08826480707874433,0.05690225915215046,22730.0,7,4,7,7_1,7_3,7_0_0 -1435,2,62.0,3,0.0,1,300,1,75,75,8.0,0.0,0.0,955.0148609262501,180.74267336427695,0.0,29548.0,70,33,1,11968,201101435,,,,,0.0,1.0,9.0,0.0,2.0,1.5,1844.054508428742,0.0,700.0,0.0,0.0,39097.0,5,5,2,300.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1135.757534290527,0.03843771268074073,0.029049736150869043,26064.666666666668,8,4,8,8_1,8_0,8_1_0 -1436,2,46.0,2,0.0,4,111,2,43,47,9.0,0.0,0.0,870.427830387068,0.0,0.0,52991.0,10,20,1,11972,201101436,,,,,2.0,0.0,5.0,1.0,3.0,1.8,938.674614717566,0.0,638.0,0.0,0.0,62037.0,1,1,1,120.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,870.427830387068,0.016425955924346924,0.0140307853440216,34465.0,9,5,9,9_1,9_2,9_0_1 -1437,2,37.0,3,0.0,2,111,5,0,62,5.0,0.0,832.755791738064,491.1504999049286,90.37133668213848,0.0,23853.0,0,31,1,11973,201101437,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2181.656106730741,0.0,360.0,0.0,0.0,18586.0,0,1,2,75.0,6,5.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1414.277628325131,0.05929139430365703,0.07609370646320515,18586.0,5,3,5,5_1,5_2,5_0_1 -1438,2,34.0,3,0.0,1,112,2,52,34,8.0,0.0,534.3516330319244,2046.460416270536,0.0,0.0,42612.0,42,12,1,11974,201101438,,,191.0,,2.0,0.0,5.0,2.0,4.0,2.1,2145.325568462317,0.0,1500.0,0.0,0.0,59488.0,1,1,2,180.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2580.8120493024603,0.06056538180095889,0.04338374208752119,28327.619047619046,8,4,8,8_1,8_0,8_1_0 -1439,0,42.0,2,0.0,8,111,2,56,53,6.0,0.0,0.0,1076.8249892534661,0.0,2225.770386088519,52358.0,20,42,1,11978,201101439,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1393.5620739135206,2070.0,0.0,0.0,0.0,42752.0,1,1,5,150.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3302.5953753419853,0.06307718735135004,0.07725007895167443,20358.095238095237,6,3,6,6_1,6_2,6_0_0 -1440,2,44.0,3,0.0,1,111,1,37,46,10.0,0.0,0.0,0.0,0.0,0.0,101378.0,31,31,1,11979,201101440,,,,,2.0,0.0,6.0,3.0,5.0,2.4,2556.9346795041492,0.0,0.0,0.0,0.0,92770.0,1,1,2,140.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0.0,0.0,0.0,38654.16666666667,10,5,10,10_1,10_4,10_1_0 -1441,1,36.0,3,99.0,7,111,4,0,55,2.0,0.0,0.0,573.00891655575,0.0,0.0,14615.0,0,41,2,11980,201101441,,,,568.0,1.0,0.0,3.0,0.0,1.0,1.0,2617.088474338671,0.0,420.0,0.0,0.0,11280.0,0,1,3,63.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,573.00891655575,0.03920690499868286,0.05079866281522607,11280.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -1442,2,68.0,2,0.0,9,111,2,0,75,6.0,0.0,0.0,3547.198054868929,0.0,537.0142891303998,31184.0,0,60,2,11981,201101442,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2602.131574150803,0.0,2600.0,309.0,0.0,19417.0,0,5,1,65.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,4084.212343999329,0.13097140661875734,0.21034208909714833,19417.0,6,3,6,6_0,6_3,6_0_0 -1443,1,51.0,3,383.0,1,111,2,85,85,1.0,0.0,0.0,401.10624158902505,0.0,1074.0285782607996,21828.0,50,71,1,11982,201101443,,,576.0,,0.0,5.0,3.0,3.0,5.0,2.4,1632.018667508002,0.0,294.0,618.0,0.0,20476.0,6,7,3,80.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1475.1348198498247,0.06757993493906106,0.07204213810557847,8531.666666666668,1,1,1_1,1_1_1,1_2_1,1_1_0 -1444,2,55.0,3,0.0,6,300,4,0,47,8.0,0.0,0.0,2201.991407907097,118.17790181510415,0.0,20305.0,0,60,1,11983,201101444,,,,,1.0,2.0,5.0,0.0,1.0,1.0,4710.30760682718,0.0,1614.0,0.0,0.0,24958.0,0,1,1,137.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2320.169309722201,0.1142659103532234,0.09296295014513187,24958.0,8,4,8,8_1,8_0,8_0_0 -1445,2,92.0,1,0.0,1,300,5,74,74,9.0,0.0,1253.2974665657862,2046.460416270536,0.0,0.0,49007.0,60,70,1,11986,201101445,,,335.0,,0.0,4.0,5.0,0.0,2.0,1.5,2228.283109422855,0.0,1500.0,0.0,0.0,52425.0,5,5,5,200.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3299.757882836322,0.06733237869766201,0.06294244888576675,34950.0,9,5,9,9_1,9_0,9_1_0 -1446,2,76.0,3,0.0,1,111,2,0,77,6.0,0.0,0.0,394.28470686812324,0.0,707.3295005698146,36749.0,0,50,2,11987,201101446,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2563.0061510303935,0.0,289.0,407.0,0.0,19282.0,0,5,3,40.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1101.614207437938,0.0299767124938893,0.05713173983186069,19282.0,6,3,6,6_0,6_3,6_1_0 -1447,2,32.0,5,0.0,1,111,1,0,46,9.0,0.0,0.0,218.48622970360182,0.0,451.60558558317774,54113.0,0,20,2,11988,201101447,,,,,1.0,0.0,2.0,1.0,2.0,1.3,2741.2432923708006,420.0,0.0,0.0,0.0,39416.0,0,1,2,51.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,670.0918152867796,0.012383194708975285,0.017000502721909366,30320.0,9,5,9,9_0,9_4,9_1_0 -1448,1,46.0,4,300.0,3,111,2,85,64,2.0,0.0,0.0,478.8717374073054,0.0,1478.9616830096122,42538.0,50,41,1,11990,201101448,,,667.0,,1.0,0.0,3.0,4.0,6.0,2.7,1195.7541428685336,0.0,351.0,851.0,0.0,26620.0,6,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1957.8334204169175,0.0460255164891842,0.07354746132294956,9859.25925925926,1,1,1_1,1_1_1,1_4_1,1_0_1 -1449,2,73.0,4,0.0,2,111,2,86,75,3.0,0.0,0.0,1432.5222913893751,0.0,0.0,30732.0,71,71,1,11992,201101449,,,360.0,,0.0,2.0,4.0,0.0,2.0,1.5,4418.091695003436,0.0,1050.0,0.0,0.0,19900.0,6,5,1,125.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1432.5222913893751,0.04661337665590834,0.07198604479343594,13266.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_1 -1450,2,76.0,3,0.0,2,111,2,0,77,8.0,0.0,0.0,327.43366660328576,0.0,2346.1789330939796,28515.0,0,50,1,11994,201101450,,,214.0,,0.0,1.0,4.0,0.0,1.0,1.0,2667.121332153033,0.0,240.0,1350.0,0.0,25259.0,0,5,1,100.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2673.6125996972655,0.09376162018927811,0.1058479195414413,25259.0,8,4,8,8_1,8_3,8_0_1 -1451,2,50.0,2,0.0,7,211,2,52,53,9.0,0.0,0.0,1350.6638747385537,0.0,0.0,82323.0,50,43,1,11996,201101451,,,573.0,,3.0,1.0,5.0,1.0,3.0,2.0,965.9804232981296,0.0,990.0,0.0,0.0,59632.0,1,1,2,110.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1350.6638747385537,0.016406883553059942,0.022649984483809928,29816.0,9,5,9,9_1,9_2,9_0_0 -1452,1,53.0,5,140.0,9,112,2,0,52,5.0,0.0,0.0,2455.752499524643,0.0,0.0,31341.0,0,50,1,11997,201101452,,,500.0,710.0,1.0,0.0,5.0,3.0,4.0,2.5,899.9496971440257,0.0,1800.0,0.0,0.0,45830.0,0,1,3,120.0,6,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2455.752499524643,0.07835590758191005,0.053583951549741285,18332.0,5,3,5,5_1,5_0,5_0_0 -1453,2,33.0,3,0.0,5,111,2,48,46,6.0,0.0,0.0,62.424637058171946,0.0,129.03016730947937,31996.0,71,60,1,11999,201101453,,,40.0,580.0,2.0,1.0,6.0,2.0,4.0,2.1,2370.2730135718516,120.0,0.0,0.0,0.0,41619.0,1,1,3,100.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,191.45480436765132,0.005983710600314143,0.004600177908350785,19818.571428571428,6,3,6,6_1,6_2,6_0_0 -1454,2,75.0,2,0.0,99,111,1,0,75,6.0,0.0,0.0,446.1283707469768,0.0,128.6053637399663,16655.0,0,70,2,12,201101454,,,,470.0,0.0,1.0,1.0,0.0,1.0,1.0,3847.4230884251247,0.0,327.0,74.0,0.0,20846.0,0,5,3,40.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,574.7337344869431,0.03450817979507314,0.027570456417871207,20846.0,6,3,6,6_0,6_3,6_0_0 -1455,2,46.0,3,0.0,2,112,2,52,54,7.0,1396.0812880422163,195.69761105844503,218.28911106885715,48.661488982689946,0.0,38031.0,50,50,1,120,201101455,,,240.0,,2.0,0.0,5.0,2.0,4.0,2.3,1027.6808294126877,0.0,160.0,0.0,0.0,54300.0,1,1,1,80.0,10,1.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1858.7294991522085,0.0488740632418871,0.03423074584074049,23608.695652173916,7,4,7,7_1,7_1,7_0_1 -1456,2,71.0,1,0.0,1,221,6,0,74,7.0,0.0,0.0,263.31124022680893,0.0,1466.7963107639398,21124.0,0,10,1,1200,201101456,,,178.0,,0.0,0.0,3.0,0.0,1.0,1.0,2234.8678507023956,0.0,193.0,844.0,0.0,24168.0,0,5,1,90.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1730.1075509907487,0.0819024593349152,0.0715867076709181,24168.0,7,4,7,7_1,7_1,7_1_0 -1457,2,58.0,3,0.0,5,112,2,75,74,7.0,0.0,111.0341055650752,936.3695558725793,0.0,1935.4525096421905,31747.0,50,50,1,12000,201101457,,,408.0,,0.0,2.0,6.0,0.0,2.0,1.5,1104.3456830477826,1800.0,0.0,0.0,0.0,32872.0,7,7,1,120.0,10,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2982.856171079845,0.09395710369735234,0.09074154815891472,21914.666666666668,7,4,7,7_1,7_1,7_0_0 -1458,2,76.0,3,0.0,2,112,1,0,78,3.0,0.0,0.0,508.88649017927327,0.0,955.8506764456954,16423.0,0,70,1,12001,201101458,,,85.0,,0.0,2.0,6.0,0.0,1.0,1.0,4175.174612727296,0.0,373.0,550.0,0.0,12956.0,0,5,1,100.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1464.7371666249687,0.08918816091000235,0.11305473654098246,12956.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -1459,0,62.0,3,0.0,1,111,2,0,77,3.0,999.4672857574958,0.0,3206.1213188238394,0.0,0.0,22658.0,0,71,1,12002,201101459,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2915.8331260908303,0.0,2350.0,0.0,0.0,12892.0,0,5,5,54.0,8,7.0,1,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4205.588604581335,0.18561164288910473,0.32621692558030835,12892.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -1460,2,49.0,3,0.0,4,111,2,0,67,2.0,0.0,0.0,368.36287492869644,0.0,834.1969539889706,31080.0,0,70,2,12006,201101460,,,,366.0,1.0,0.0,5.0,4.0,5.0,2.6,870.7020394081346,0.0,270.0,480.0,0.0,30420.0,0,1,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1202.559828917667,0.03869240118782712,0.03953188129249398,11700.0,2,1,2_0,2_0_0,2_4_0,2_0_1 -1461,2,63.0,1,0.0,1,111,1,0,37,9.0,0.0,0.0,682.1534720901786,0.0,0.0,37569.0,0,12,2,12007,201101461,0.0,,,,1.0,1.0,4.0,0.0,1.0,1.0,3580.9800038525455,0.0,500.0,0.0,0.0,35433.0,0,1,1,125.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,682.1534720901786,0.018157349732230793,0.019251925382840252,35433.0,9,5,9,9_0,9_4,9_1_0 -1462,1,43.0,3,248.0,2,111,1,22,52,2.0,0.0,0.0,518.4366387885358,0.0,853.3139675178844,30418.0,50,71,2,12008,201101462,,,,,2.0,0.0,4.0,4.0,6.0,3.1,3010.5236960493335,0.0,380.0,491.0,0.0,35690.0,4,1,2,68.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1371.7506063064202,0.04509667322987771,0.03843515288053853,11512.90322580645,2,1,2_1,2_0_1,2_3_1,2_0_1 -1463,2,73.0,2,0.0,4,111,2,0,75,9.0,2379.684013708323,83.27557917380639,526.6224804536179,208.54923849724264,0.0,39400.0,0,50,1,1201,201101463,,,270.0,,0.0,3.0,5.0,0.0,1.0,1.0,1888.6231072181558,0.0,386.0,0.0,0.0,35289.0,0,5,1,110.0,6,4.0,1,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3198.13131183299,0.08117084547799466,0.09062686139683726,35289.0,9,5,9,9_1,9_2,9_0_1 -1464,2,80.0,3,0.0,6,112,4,0,77,2.0,0.0,0.0,1364.3069441803573,86.89551604051776,0.0,13427.0,0,50,1,12010,201101464,,,230.0,,0.0,0.0,4.0,0.0,1.0,1.0,5028.178516805247,0.0,1000.0,0.0,0.0,12125.0,0,5,1,80.0,8,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1451.202460220875,0.10808091608109593,0.11968680084295877,12125.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -1465,2,35.0,3,0.0,9,112,4,65,11,7.0,63.458240365555284,0.0,1739.4913538299554,0.0,0.0,38945.0,31,31,1,12012,201101465,,,446.0,,2.0,0.0,5.0,1.0,3.0,1.8,2536.068104321122,0.0,1275.0,0.0,0.0,43914.0,1,1,2,163.0,4,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1802.9495941955106,0.04629476426230609,0.04105637368938176,24396.666666666668,7,4,7,7_1,7_0,7_0_0 -1466,1,53.0,3,200.0,5,221,2,85,21,1.0,0.0,0.0,1309.734666413143,521.3730962431066,0.0,41660.0,60,50,1,12014,201101466,,,360.0,,1.0,0.0,4.0,3.0,5.0,2.4,2437.9919614987925,0.0,960.0,0.0,0.0,14042.0,6,1,2,100.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1831.1077626562496,0.04395361888277124,0.13040220500329366,5850.833333333334,1,1,1_1,1_1_1,1_1_1,1_0_0 -1467,2,77.0,3,0.0,1,112,2,71,71,2.0,2062.392811880547,624.566843803548,1023.230208135268,145.98446694806984,0.0,25936.0,71,71,1,12015,201101467,,,,,0.0,3.0,4.0,0.0,2.0,1.5,3416.749814908389,0.0,750.0,0.0,0.0,18270.0,5,5,1,85.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3856.1743307674333,0.14868037981058888,0.21106591848754425,12180.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -1468,2,72.0,4,0.0,1,111,1,0,78,1.0,0.0,0.0,361.5413402077947,0.0,1494.6028758969055,15344.0,0,71,1,12016,201101468,,,200.0,,0.0,3.0,5.0,0.0,1.0,1.0,4461.644959771057,0.0,265.0,860.0,0.0,8982.0,0,5,1,79.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1856.1442161047003,0.12096873149796013,0.20665154933252064,8982.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -1469,2,29.0,2,0.0,10,111,4,54,43,10.0,0.0,0.0,1132.3747636696964,0.0,0.0,45266.0,41,10,2,12017,201101469,,,,542.0,2.0,0.0,2.0,0.0,2.0,1.5,2697.5379274150014,0.0,830.0,0.0,0.0,89387.0,1,1,3,65.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1132.3747636696964,0.025016011215254198,0.012668226516939784,59591.333333333336,10,5,10,10_0,10_2,10_0_0 -1470,2,35.0,3,0.0,5,112,2,54,21,3.0,2474.871374256656,0.0,1173.3039719951073,118.17790181510415,0.0,34265.0,71,50,1,12018,201101470,,,513.0,,3.0,1.0,4.0,2.0,4.0,2.3,2792.262344845029,0.0,860.0,0.0,0.0,29274.0,1,1,2,110.0,9,1.0,4,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3766.3532480668678,0.10991837875578193,0.1286586475393478,12727.826086956522,3,2,3_0,3_1_0,3_1_0,3_0_0 -1471,2,57.0,2,0.0,1,112,2,0,45,6.0,2319.398685361046,0.0,695.7965415319821,104.27461924862132,0.0,27625.0,0,50,1,12019,201101471,,,,,1.0,0.0,4.0,1.0,2.0,1.5,2580.854207434825,0.0,510.0,0.0,0.0,31054.0,0,1,1,140.0,4,0.0,2,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3119.469846141649,0.11292198538069319,0.10045307677405968,20702.666666666668,6,3,6,6_1,6_0,6_1_0 -1472,2,63.0,3,0.0,5,400,2,78,77,5.0,396.6140022847205,138.792631956344,695.7965415319821,90.37133668213848,0.0,13511.0,70,70,1,1202,201101472,,,169.0,,0.0,1.0,5.0,0.0,2.0,1.5,1577.9302340391012,0.0,510.0,0.0,0.0,27248.0,7,5,1,105.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1321.574512455185,0.09781470745727074,0.04850170700437408,18165.333333333332,5,3,5,5_1,5_0,5_0_0 -1473,2,67.0,3,0.0,1,111,6,0,74,10.0,0.0,0.0,639.8599568205875,0.0,0.0,55885.0,0,10,2,12023,201101473,,,,,0.0,4.0,4.0,0.0,1.0,1.0,3553.040818537387,0.0,469.0,0.0,0.0,43190.0,0,5,2,60.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,639.8599568205875,0.011449583194427619,0.014815002473271301,43190.0,10,5,10,10_0,10_3,10_1_0 -1474,2,77.0,1,0.0,1,111,2,0,77,10.0,0.0,0.0,750.3688192991965,0.0,782.0596443646599,34474.0,0,50,1,12024,201101474,,,,,0.0,3.0,6.0,0.0,1.0,1.0,1897.046051818596,0.0,550.0,450.0,0.0,39594.0,0,5,1,120.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1532.4284636638563,0.0444517161821621,0.0387035526510041,39594.0,10,5,10,10_1,10_2,10_1_0 -1475,1,22.0,2,235.0,7,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,12160.0,0,10,2,12028,201101475,,,,245.0,0.0,0.0,2.0,0.0,1.0,1.0,3338.3730215694222,0.0,0.0,0.0,0.0,8464.0,0,3,3,45.0,9,7.0,1,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,8464.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -1476,2,41.0,3,0.0,8,112,4,56,22,3.0,0.0,0.0,3137.9059716148217,97.32297796537989,0.0,33449.0,60,50,1,12029,201101476,,,,,3.0,0.0,8.0,2.0,4.0,2.5,2689.6600932031793,0.0,2300.0,0.0,0.0,34886.0,1,1,2,150.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3235.2289495802015,0.09672124576460288,0.09273717105945656,13954.4,3,2,3_0,3_1_0,3_0_0,3_0_0 -1477,2,64.0,2,0.0,1,111,4,75,74,9.0,0.0,0.0,129.60915969713395,0.0,0.0,37297.0,30,20,2,1203,201101477,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2210.682379109928,0.0,95.0,0.0,0.0,54832.0,5,5,1,125.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,129.60915969713395,0.003475055894499127,0.002363750359226983,36554.666666666664,9,5,9,9_0,9_2,9_1_0 -1478,2,73.0,2,0.0,6,111,6,0,75,9.0,721.8374841581914,0.0,559.3658471139465,139.0328256648284,0.0,19783.0,0,50,1,12031,201101478,,,380.0,,0.0,2.0,4.0,0.0,1.0,1.0,1870.7294191571293,0.0,410.0,0.0,0.0,34570.0,0,5,2,130.0,8,6.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1420.2361569369662,0.07179073734706395,0.04108290879192844,34570.0,9,5,9,9_1,9_2,9_0_0 -1479,2,47.0,3,0.0,8,300,2,55,56,3.0,0.0,0.0,121.4233180320518,1637.1115222033545,0.0,54340.0,71,71,2,12032,201101479,,,,514.0,2.0,0.0,4.0,1.0,5.0,2.6,2537.203763617874,0.0,89.0,0.0,0.0,33189.0,1,1,3,95.0,0,0.0,5,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1758.5348402354064,0.0323617011452964,0.05298547230213042,12765.0,3,2,3_0,3_0_0,3_0_0,3_0_0 -1480,2,42.0,2,0.0,8,111,5,85,21,9.0,0.0,693.9631597817199,2256.563685674311,0.0,0.0,49770.0,33,50,1,12033,201101480,,,445.0,,1.0,1.0,6.0,2.0,4.0,2.1,2275.846953396489,0.0,1654.0,0.0,0.0,70522.0,5,1,2,132.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2950.526845456031,0.059283239812257,0.04183838866532474,33581.90476190476,9,5,9,9_1,9_2,9_0_0 -1481,2,52.0,1,0.0,7,112,4,0,37,10.0,0.0,0.0,1500.737638598393,0.0,0.0,27155.0,0,12,1,12034,201101481,,,130.0,,1.0,2.0,5.0,0.0,1.0,1.0,2669.0834272445018,0.0,1100.0,0.0,0.0,53576.0,0,1,1,120.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1500.737638598393,0.05526560996495647,0.028011378949499646,53576.0,10,5,10,10_1,10_0,10_0_0 -1482,2,37.0,3,0.0,7,112,2,55,65,6.0,0.0,0.0,482.9646582398465,0.0,802.9145682143841,34777.0,50,50,2,12035,201101482,,,,650.0,2.0,0.0,3.0,1.0,3.0,1.8,2999.6392022563064,0.0,354.0,462.0,0.0,35993.0,1,1,3,85.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1285.8792264542305,0.03697498997769303,0.03572581408757899,19996.11111111111,6,3,6,6_0,6_1,6_0_0 -1483,2,36.0,2,0.0,4,112,2,53,55,8.0,0.0,0.0,390.15398161357473,0.0,806.438545684246,66143.0,50,31,1,12036,201101483,,,600.0,,2.0,0.0,6.0,0.0,2.0,1.5,1754.344194141556,750.0,0.0,0.0,0.0,41611.0,1,1,1,110.0,9,1.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1196.5925272978207,0.018090992656786365,0.028756639525553837,27740.666666666668,8,4,8,8_1,8_1,8_0_1 -1484,2,37.0,1,0.0,7,120,3,64,46,7.0,915.385117273135,0.0,736.7257498573929,0.0,0.0,47965.0,50,31,2,12037,201101484,,,360.0,,2.0,0.0,4.0,1.0,3.0,1.8,2162.645089205391,0.0,540.0,0.0,0.0,42700.0,1,1,2,90.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1652.1108671305278,0.03444409188221678,0.03869112101008262,23722.222222222223,7,4,7,7_0,7_0,7_0_0 -1485,1,51.0,3,336.0,4,111,1,0,56,2.0,0.0,0.0,859.5133748336251,0.0,86.89551604051776,13023.0,0,71,2,12039,201101485,,,,,1.0,3.0,4.0,2.0,3.0,1.8,2903.3785635935324,0.0,630.0,50.0,0.0,19872.0,0,1,3,68.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,946.4088908741429,0.07267211018000022,0.0476252461188679,11040.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -1486,2,40.0,3,0.0,6,112,2,46,48,9.0,0.0,170.7149373063031,3383.481221567286,0.0,0.0,63542.0,41,31,1,12040,201101486,,,300.0,,2.0,0.0,7.0,1.0,3.0,1.8,2417.1531997234283,0.0,2480.0,0.0,0.0,58522.0,1,1,2,187.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3554.196158873589,0.05593459694176433,0.060732650266115115,32512.222222222223,9,5,9,9_1,9_0,9_0_0 -1487,2,52.0,3,0.0,6,112,2,52,63,8.0,0.0,416.377895869032,1364.3069441803573,173.79103208103552,0.0,26406.0,71,50,1,12041,201101487,,,200.0,,2.0,3.0,4.0,0.0,2.0,1.5,1851.934117642823,0.0,1000.0,0.0,0.0,37462.0,1,1,1,100.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1954.475872130425,0.07401635507575645,0.05217222444424817,24974.666666666668,8,4,8,8_1,8_1,8_0_0 -1488,2,35.0,3,0.0,3,111,1,43,43,7.0,0.0,0.0,187.27391117451586,0.0,387.09050192843813,37655.0,33,33,2,12042,201101488,,,,800.0,2.0,0.0,4.0,2.0,4.0,2.1,3425.726633342249,360.0,0.0,0.0,0.0,48401.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,574.364413102954,0.015253337222226902,0.011866788147000144,23048.095238095237,7,4,7,7_0,7_4,7_0_1 -1489,2,96.0,3,0.0,1,400,2,0,71,1.0,3172.912018277764,0.0,454.31421241205896,156.41192887293198,0.0,8046.0,0,70,1,12044,201101489,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2790.768475872425,0.0,333.0,0.0,0.0,8988.0,0,5,5,70.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3783.6381595627554,0.47025082768614906,0.4209655273211788,8988.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -1490,2,42.0,2,0.0,7,112,4,47,43,9.0,0.0,534.3516330319244,2401.1802217574286,0.0,0.0,56703.0,71,33,1,12047,201101490,,,420.0,,2.0,0.0,5.0,2.0,4.0,2.5,3003.0820070023888,0.0,1760.0,0.0,0.0,75942.0,1,1,2,184.0,10,1.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2935.531854789353,0.0517703094155398,0.03865491894853115,30376.8,9,5,9,9_1,9_1,9_0_0 -1491,2,69.0,3,0.0,6,111,4,0,78,4.0,0.0,0.0,573.00891655575,0.0,0.0,21349.0,0,50,2,12048,201101491,,,,,0.0,2.0,1.0,0.0,1.0,1.0,3262.431296565685,0.0,420.0,0.0,0.0,15357.0,0,5,3,45.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,573.00891655575,0.026840082278127782,0.03731255561344989,15357.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -1492,2,58.0,3,0.0,5,111,1,52,56,5.0,0.0,0.0,785.8407998478858,125.12954309834558,0.0,16659.0,50,50,2,12049,201101492,,,,250.0,3.0,4.0,4.0,1.0,3.0,2.0,1371.6446299858515,0.0,576.0,0.0,0.0,36200.0,1,1,3,80.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,910.9703429462314,0.054683374929241337,0.025164926600724623,18100.0,5,3,5,5_0,5_3,5_0_0 -1493,1,28.0,3,230.0,6,111,2,68,52,5.0,0.0,0.0,2005.531207945125,93.84715732375918,0.0,25802.0,50,43,1,12051,201101493,,,156.0,125.0,2.0,0.0,3.0,2.0,4.0,2.1,2427.6173922453468,0.0,1470.0,0.0,0.0,37760.0,1,1,3,45.0,6,4.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2099.3783652688844,0.08136494710754533,0.05559794399546834,17980.95238095238,5,3,5,5_1,5_2,5_0_0 -1494,2,30.0,1,0.0,7,120,4,34,38,10.0,0.0,0.0,409.2920832541072,0.0,2259.283417053462,40733.0,10,12,1,12052,201101494,,,350.0,,2.0,0.0,5.0,0.0,2.0,1.5,3280.963831739236,0.0,300.0,1300.0,0.0,75185.0,1,1,2,130.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2668.575500307569,0.06551384627470526,0.03549345614560842,50123.333333333336,10,5,10,10_1,10_1,10_0_0 -1495,2,32.0,2,0.0,9,111,4,38,38,9.0,0.0,0.0,627.5811943229643,0.0,0.0,37199.0,10,12,2,12053,201101495,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2370.0264300300896,0.0,460.0,0.0,0.0,52938.0,3,1,2,66.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,627.5811943229643,0.016870915732223025,0.01185502274968764,29410.0,9,5,9,9_0,9_4,9_0_0 -1496,2,82.0,4,0.0,1,112,2,0,77,8.0,3172.912018277764,0.0,693.0679276436215,0.0,0.0,13613.0,0,71,1,12054,201101496,,,91.0,,0.0,2.0,5.0,0.0,1.0,1.0,3478.219260375393,0.0,508.0,0.0,0.0,25820.0,0,5,1,120.0,9,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3865.9799459213855,0.28399176859776576,0.14972811564374072,25820.0,8,4,8,8_1,8_0,8_1_0 -1497,2,54.0,2,0.0,99,112,4,54,69,6.0,0.0,277.585263912688,845.8703053918215,76.46805411565563,0.0,28887.0,41,50,1,12055,201101497,,,210.0,,2.0,7.0,6.0,0.0,2.0,1.5,4025.856344690392,0.0,620.0,0.0,0.0,29930.0,4,1,1,92.0,8,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1199.923623420165,0.04153853371482553,0.04009099978015921,19953.333333333332,6,3,6,6_1,6_1,6_0_0 -1498,2,37.0,4,0.0,1,112,6,69,69,2.0,0.0,0.0,772.1977304060822,93.84715732375918,0.0,24350.0,50,50,1,12056,201101498,,,590.0,,2.0,1.0,3.0,1.0,3.0,2.0,1865.4220565074863,0.0,566.0,0.0,0.0,24547.0,1,1,3,80.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,866.0448877298413,0.03556652516344318,0.035281088838955525,12273.5,2,1,2_0,2_1_0,2_1_0,2_1_0 -1499,1,39.0,3,196.0,4,111,1,56,63,4.0,0.0,0.0,368.36287492869644,0.0,1266.936623870749,35230.0,31,71,2,12058,201101499,613.0,613.0,,157.0,2.0,0.0,4.0,2.0,4.0,2.1,3636.265040198517,0.0,270.0,729.0,0.0,33138.0,1,1,3,121.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1635.2994987994452,0.04641781149019146,0.04934816521212642,15780.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -1500,0,40.0,3,0.0,2,111,4,34,34,7.0,0.0,0.0,1500.737638598393,0.0,0.0,50680.0,10,20,1,12059,201101500,,,200.0,,2.0,0.0,3.0,2.0,4.0,2.1,1240.6830037119653,0.0,1100.0,0.0,0.0,48577.0,1,1,5,86.0,5,4.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1500.737638598393,0.02961202917518534,0.030893995895143647,23131.90476190476,7,4,7,7_1,7_2,7_0_1 -1501,2,34.0,3,0.0,8,112,2,55,47,5.0,0.0,0.0,1623.5252635746251,0.0,0.0,35953.0,50,50,1,12060,201101501,,,,,2.0,2.0,6.0,2.0,4.0,2.1,2243.927223691885,0.0,1190.0,0.0,0.0,39419.0,1,1,1,170.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1623.5252635746251,0.04515687880217576,0.041186363519486166,18770.95238095238,5,3,5,5_1,5_0,5_0_0 -1502,2,78.0,1,0.0,1,111,2,86,74,10.0,0.0,0.0,1223.7833289297805,0.0,5099.028881257582,67653.0,12,10,1,12061,201101502,,,534.0,,1.0,3.0,8.0,1.0,4.0,2.3,994.15645036829,0.0,897.0,2934.0,0.0,87684.0,6,5,1,300.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,6322.812210187362,0.09345945058145777,0.07210907588827337,38123.47826086957,10,5,10,10_1,10_4,10_1_0 -1503,2,76.0,2,0.0,1,400,2,77,74,8.0,5000.509340805756,0.0,750.3688192991965,140.77073598563877,0.0,26418.0,70,70,1,12062,201101503,,,,,0.0,1.0,6.0,0.0,2.0,1.5,1340.0109948575464,0.0,550.0,0.0,0.0,40523.0,5,5,5,150.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5891.648896090592,0.22301646211259715,0.14539024494954944,27015.333333333332,8,4,8,8_1,8_0,8_1_0 -1504,2,67.0,3,0.0,1,111,2,0,77,5.0,0.0,0.0,954.3487058304719,0.0,2336.600046939513,18636.0,0,70,1,12064,201101504,,,215.0,,0.0,2.0,6.0,0.0,1.0,1.0,1545.8027981126097,657.0,449.0,938.0,0.0,18943.0,0,5,1,120.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3290.948752769985,0.1765909397279451,0.17372901614158184,18943.0,5,3,5,5_1,5_3,5_1_0 -1505,1,59.0,4,262.0,1,111,1,68,78,3.0,0.0,0.0,54.57227776721429,0.0,0.0,56719.0,71,41,2,12065,201101505,,,,38.0,1.0,2.0,2.0,0.0,2.0,1.5,3825.1230229411412,0.0,40.0,0.0,0.0,20204.0,1,7,3,55.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,54.57227776721429,0.0009621516205718417,0.002701063045298668,13469.333333333334,3,2,3_1,3_0_1,3_3_1,3_1_0 -1507,1,23.0,2,205.0,1,111,6,0,84,7.0,0.0,0.0,600.2950554393572,0.0,0.0,21566.0,0,41,2,12067,201101507,,,,415.0,0.0,0.0,2.0,0.0,1.0,1.0,3234.3083169102456,0.0,440.0,0.0,0.0,21764.0,0,3,3,26.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,600.2950554393572,0.027835252501129424,0.02758201872079384,21764.0,6,3,6,6_0,6_4,6_1_0 -1508,2,67.0,5,0.0,7,111,4,0,77,4.0,0.0,0.0,1146.0178331115,0.0,0.0,15748.0,0,50,2,12068,201101508,,,,368.0,0.0,3.0,2.0,0.0,1.0,1.0,3413.6041765642335,0.0,840.0,0.0,0.0,16040.0,0,5,3,54.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1146.0178331115,0.07277227794713614,0.07144749582989401,16040.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -1509,2,41.0,3,0.0,2,112,2,0,53,7.0,0.0,0.0,409.2920832541072,0.0,4170.984769944853,42852.0,0,71,1,12069,201101509,,,433.0,,1.0,1.0,4.0,1.0,2.0,1.5,3092.60611756621,0.0,300.0,2400.0,0.0,34506.0,0,1,1,56.0,10,0.0,2,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4580.27685319896,0.10688595288898908,0.13273856295134065,23004.0,7,4,7,7_1,7_0,7_0_1 -1510,1,24.0,5,340.0,1,112,2,0,85,4.0,0.0,0.0,1473.4514997147858,0.0,0.0,11666.0,0,43,1,12070,201101510,,,121.0,,0.0,0.0,2.0,1.0,2.0,1.3,3480.899965028866,0.0,1080.0,0.0,0.0,21223.0,0,6,3,50.0,6,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1473.4514997147858,0.1263030601504188,0.06942710737006011,16325.384615384615,4,2,4_1,4_1_1,4_0_1,4_1_0 -1511,2,43.0,3,0.0,8,211,2,65,54,6.0,0.0,0.0,993.5921398425702,0.0,2053.730163009213,22931.0,60,31,1,12071,201101511,,,400.0,,2.0,0.0,6.0,1.0,3.0,1.8,2288.2464162916503,1910.0,0.0,0.0,0.0,36260.0,1,1,2,140.0,3,3.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3047.322302851783,0.13289094687766706,0.08404087983595651,20144.444444444445,6,3,6,6_1,6_1,6_0_0 -1512,2,38.0,3,0.0,2,111,2,0,52,5.0,0.0,0.0,663.0531748716536,0.0,1744.8619620935967,32101.0,0,50,1,12073,201101512,,,160.0,,1.0,6.0,4.0,1.0,2.0,1.5,2006.6263297486505,0.0,486.0,1004.0,0.0,25455.0,0,1,3,83.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2407.9151369652504,0.07501059583705337,0.09459497689904736,16970.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -1513,2,63.0,4,0.0,3,111,4,0,72,2.0,0.0,0.0,1023.230208135268,90.37133668213848,0.0,17287.0,0,70,2,12075,201101513,,,220.0,,0.0,3.0,3.0,0.0,1.0,1.0,4711.885726234618,0.0,750.0,0.0,0.0,10670.0,0,5,3,60.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1113.6015448174064,0.06441843841137308,0.10436752997351513,10670.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -1514,2,49.0,2,0.0,1,112,2,0,34,7.0,0.0,0.0,706.7109970854251,1706.6279350357688,0.0,21213.0,0,10,1,12076,201101514,,,204.0,,1.0,1.0,6.0,0.0,1.0,1.0,1558.7649333935383,0.0,518.0,0.0,0.0,23966.0,0,1,1,150.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2413.338932121194,0.11376697931085626,0.10069844496875549,23966.0,7,4,7,7_1,7_0,7_1_0 -1515,2,55.0,3,0.0,2,400,2,56,64,8.0,2151.234348392324,0.0,1407.9647663941287,0.0,0.0,30660.0,50,50,1,12077,201101515,,,408.0,,2.0,2.0,5.0,0.0,2.0,1.5,1381.3891413356673,0.0,1032.0,0.0,0.0,39734.0,1,1,1,75.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3559.199114786453,0.11608607680321112,0.08957565598194123,26489.333333333332,8,4,8,8_1,8_0,8_0_1 -1516,2,46.0,1,0.0,8,111,2,0,34,10.0,0.0,0.0,259.2183193942679,0.0,691.6883076825214,28488.0,0,10,2,12078,201101516,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2999.3785426299805,0.0,190.0,398.0,0.0,79265.0,0,1,2,65.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,950.9066270767894,0.03337919920937901,0.011996551152170434,79265.0,10,5,10,10_0,10_2,10_0_0 -1517,2,52.0,3,0.0,9,111,4,0,38,9.0,0.0,0.0,777.6549581828036,0.0,0.0,31563.0,0,12,2,12080,201101517,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2613.245634877263,0.0,570.0,0.0,0.0,36631.0,0,1,2,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,777.6549581828036,0.024638182624680913,0.021229422024591292,36631.0,9,5,9,9_0,9_4,9_0_0 -1518,2,51.0,2,0.0,7,111,2,0,43,10.0,0.0,0.0,900.4425831590357,0.0,1564.1192887293198,34738.0,0,33,2,12085,201101518,,,,740.0,1.0,1.0,3.0,0.0,1.0,1.0,4171.128103738458,0.0,660.0,900.0,0.0,39464.0,0,1,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2464.5618718883557,0.07094714352836536,0.06245088870586751,39464.0,10,5,10,10_0,10_4,10_0_0 -1519,2,53.0,2,0.0,4,111,1,0,37,1.0,0.0,0.0,290.5973791104161,0.0,86.89551604051776,29012.0,0,31,2,12087,201101519,,,,,1.0,1.0,3.0,0.0,1.0,1.0,3933.509615700098,0.0,213.0,50.0,0.0,3006.0,0,1,1,90.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,377.49289515093386,0.013011612269093267,0.12557980543943242,3006.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -1520,2,54.0,2,0.0,9,111,4,0,37,10.0,0.0,0.0,1000.0687169526689,0.0,1263.420388238652,24488.0,0,31,2,12088,201101520,,,,,1.0,3.0,2.0,0.0,1.0,1.0,3353.0070928034274,1175.0,285.0,0.0,0.0,132399.0,0,1,2,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2263.489105191321,0.0924325835181036,0.017095968286703987,132399.0,10,5,10,10_0,10_4,10_0_0 -1521,2,24.0,2,0.0,1,111,2,55,47,6.0,0.0,0.0,914.0856526008394,67.77850251160386,0.0,59728.0,20,31,2,12089,201101521,,,360.0,,2.0,0.0,2.0,0.0,2.0,1.5,1749.5461229783496,0.0,670.0,0.0,0.0,31209.0,1,1,3,61.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,981.8641551124432,0.01643892571511591,0.031460929703369,20806.0,6,3,6,6_0,6_4,6_1_0 -1522,2,60.0,2,0.0,6,300,5,77,75,4.0,0.0,555.170527825376,986.3939206423983,78.20596443646599,0.0,28639.0,70,70,1,12090,201101522,,,350.0,,0.0,2.0,4.0,0.0,2.0,1.5,1031.8712444114933,0.0,723.0,0.0,0.0,24726.0,6,5,1,125.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1619.7704129042402,0.056558204298482496,0.06550879288620239,16484.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -1523,2,48.0,4,0.0,1,111,4,0,52,5.0,0.0,0.0,3560.8411243107325,0.0,0.0,29280.0,0,50,1,12091,201101523,,,432.0,,1.0,0.0,3.0,1.0,2.0,1.5,2632.8267471393037,0.0,2610.0,0.0,0.0,28309.0,0,1,1,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3560.8411243107325,0.12161342637673267,0.12578477248616102,18872.666666666668,5,3,5,5_1,5_4,5_1_0 -1524,2,47.0,1,0.0,8,112,2,43,63,7.0,0.0,0.0,2182.8911106885716,121.65372245672486,0.0,61730.0,31,44,1,12092,201101524,,,290.0,,2.0,0.0,6.0,2.0,4.0,2.5,2453.6830984508956,0.0,1600.0,0.0,0.0,55829.0,1,1,1,150.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2304.5448331452967,0.037332655647906964,0.04127863356222208,22331.6,7,4,7,7_1,7_0,7_0_0 -1525,2,33.0,2,0.0,6,111,2,43,34,10.0,0.0,0.0,1091.4455553442858,0.0,0.0,38310.0,33,10,2,12093,201101525,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2704.978249337729,0.0,800.0,0.0,0.0,70516.0,1,1,2,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1091.4455553442858,0.02848983438643398,0.015477984504854016,39175.555555555555,10,5,10,10_0,10_3,10_0_0 -1526,1,45.0,4,173.0,1,300,6,78,56,3.0,1903.7472109666587,0.0,351.99119159853217,135.55700502320772,0.0,13353.0,71,50,1,12094,201101526,,,131.0,,1.0,2.0,3.0,0.0,2.0,1.5,2015.302975050686,0.0,258.0,0.0,0.0,20697.0,4,1,3,85.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2391.2954075883986,0.17908300813213499,0.11553826195044685,13798.0,3,2,3_1,3_1_1,3_0_1,3_1_0 -1527,2,56.0,4,0.0,4,111,2,22,22,1.0,1269.1648073111057,0.0,700.8819427442579,243.30744491344973,636.5488253934315,35120.0,50,60,1,12095,201101527,,,182.0,,2.0,1.0,5.0,1.0,3.0,2.0,3143.338628275907,592.0,288.0,0.0,0.0,15980.0,1,1,3,105.0,10,8.0,4,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2849.9030203622447,0.08114758030644205,0.1783418661052719,7990.0,1,1,1_0,1_1_0,1_4_0,1_0_1 -1528,2,57.0,3,0.0,6,112,2,75,54,6.0,0.0,0.0,2728.6138883607146,0.0,0.0,21846.0,50,50,1,12096,201101528,,,180.0,,1.0,1.0,5.0,0.0,2.0,1.5,1858.7013221726147,0.0,2000.0,0.0,0.0,30866.0,4,1,1,100.0,9,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2728.6138883607146,0.124902219553269,0.08840192731033222,20577.333333333332,6,3,6,6_1,6_0,6_0_0 -1529,2,48.0,2,0.0,7,111,2,55,35,6.0,2855.620816449988,0.0,1113.2744664511715,0.0,0.0,42128.0,50,42,1,12097,201101529,,,660.0,,3.0,0.0,4.0,3.0,5.0,3.0,1596.3628450623505,0.0,816.0,0.0,0.0,58231.0,1,1,1,100.0,9,7.0,4,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3968.8952829011596,0.09421038935864887,0.06815777305732616,19410.333333333332,6,3,6,6_1,6_3,6_0_0 -1530,2,26.0,2,0.0,99,111,2,67,67,6.0,0.0,0.0,409.2920832541072,0.0,0.0,13891.0,50,42,2,12098,201101530,,,,290.0,2.0,0.0,2.0,0.0,2.0,1.5,5107.88729049857,0.0,300.0,0.0,0.0,29776.0,4,1,3,30.0,6,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,409.2920832541072,0.02946455138248558,0.013745704031908489,19850.666666666668,6,3,6,6_0,6_2,6_0_0 -1531,1,65.0,3,280.0,8,111,2,0,77,2.0,0.0,0.0,504.79356934673217,0.0,1338.1909470239734,17610.0,0,50,1,12099,201101531,,,246.0,337.0,0.0,1.0,4.0,0.0,1.0,1.0,1362.1135546411144,0.0,370.0,770.0,0.0,12150.0,0,5,3,71.0,3,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1842.9845163707055,0.1046555659495006,0.15168596842557247,12150.0,2,1,2_1,2_1_1,2_2_1,2_0_0 -1532,2,29.0,1,0.0,5,111,1,38,38,10.0,0.0,0.0,409.2920832541072,0.0,0.0,67813.0,12,12,2,1210,201101532,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2508.41361503023,0.0,300.0,0.0,0.0,66146.0,1,1,2,66.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,409.2920832541072,0.006035599121910359,0.006187707242374553,44097.333333333336,10,5,10,10_0,10_4,10_0_0 -1533,2,25.0,2,0.0,5,111,1,35,33,8.0,0.0,0.0,327.43366660328576,0.0,0.0,93514.0,20,12,2,12100,201101533,,,,590.0,2.0,0.0,1.0,0.0,2.0,1.5,2780.6238042986483,0.0,240.0,0.0,0.0,39603.0,1,1,3,28.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,327.43366660328576,0.00350144006890183,0.00826790057832199,26402.0,8,4,8,8_0,8_4,8_0_0 -1534,2,52.0,2,0.0,7,111,2,54,37,9.0,0.0,0.0,1091.4455553442858,0.0,2085.4923849724264,66942.0,50,10,1,12102,201101534,,,1200.0,,2.0,3.0,6.0,1.0,3.0,2.0,1410.2338463040771,0.0,800.0,1200.0,0.0,61128.0,1,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3176.9379403167122,0.04745806728685597,0.051971894063550454,30564.0,9,5,9,9_1,9_4,9_0_0 -1535,2,74.0,2,0.0,2,112,2,0,77,3.0,3172.912018277764,0.0,627.5811943229643,333.6787815955882,0.0,14229.0,0,70,1,12104,201101535,,,82.0,,0.0,5.0,5.0,0.0,1.0,1.0,1303.6174255313365,0.0,460.0,0.0,0.0,13306.0,0,5,1,120.0,8,0.0,1,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4134.1719941963165,0.290545505249583,0.31069983422488473,13306.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -1536,2,62.0,3,0.0,8,120,2,77,75,7.0,333.1557619191653,0.0,2218.363091237261,208.54923849724264,0.0,39692.0,60,60,1,12105,201101536,,,,,0.0,3.0,4.0,0.0,2.0,1.5,3087.4693157985994,0.0,1626.0,0.0,0.0,34856.0,5,5,2,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2760.068091653669,0.06953713825591225,0.07918487754342635,23237.333333333332,7,4,7,7_1,7_0,7_0_0 -1537,2,51.0,2,0.0,1,111,2,38,37,10.0,0.0,0.0,470.68589574222324,0.0,745.5635276276424,83010.0,41,60,2,12106,201101537,,,,,2.0,0.0,3.0,1.0,3.0,1.8,4086.9940373979657,0.0,345.0,429.0,0.0,113818.0,1,1,1,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1216.2494233698658,0.014651842228284131,0.010685914559822398,63232.22222222222,10,5,10,10_0,10_4,10_1_0 -1538,2,78.0,3,0.0,4,111,2,77,78,6.0,0.0,0.0,286.03353262774306,0.0,1154.5723374877618,15315.0,50,50,1,12107,201101538,,,240.0,,1.0,3.0,5.0,1.0,4.0,2.3,946.2251759993917,104.0,170.0,600.0,0.0,45040.0,5,5,1,80.0,8,6.0,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1440.6058701155048,0.09406502579924941,0.03198503264021991,19582.608695652176,6,3,6,6_1,6_2,6_0_1 -1539,1,83.0,3,98.0,7,221,2,0,77,3.0,0.0,0.0,327.43366660328576,0.0,823.7694920641084,9239.0,0,71,2,12108,201101539,,,329.0,,0.0,5.0,2.0,0.0,1.0,1.0,5436.7986323501955,0.0,240.0,474.0,0.0,13826.0,0,5,3,56.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1151.203158667394,0.12460257156265765,0.08326364520956127,13826.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -1540,2,37.0,2,0.0,7,221,2,56,68,3.0,705.9729240668025,0.0,1064.1594164606786,46.92357866187959,0.0,17021.0,50,71,1,12109,201101540,,,116.0,,2.0,0.0,4.0,0.0,2.0,1.5,4557.319896515753,0.0,780.0,0.0,0.0,19114.0,1,1,3,80.0,1,1.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1817.0559191893608,0.10675377000113746,0.09506413723916296,12742.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0 -1541,2,90.0,3,0.0,1,300,2,0,78,5.0,0.0,0.0,695.7965415319821,3663.5149562682286,0.0,18818.0,0,71,1,1211,201101541,,,115.0,,0.0,1.0,5.0,1.0,2.0,1.5,2844.08094227881,0.0,510.0,0.0,0.0,27851.0,0,5,1,150.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4359.31149780021,0.23165647240940646,0.15652262029371336,18567.333333333332,5,3,5,5_1,5_0,5_1_0 -1542,2,40.0,2,0.0,5,111,2,0,34,6.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,84699.0,0,10,2,12113,201101542,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3940.044860026975,700.0,0.0,0.0,0.0,19734.0,0,1,1,53.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1116.8196921446327,0.013185748263198299,0.05659368055866183,19734.0,6,3,6,6_0,6_4,6_0_0 -1543,2,60.0,3,0.0,1,112,6,0,77,5.0,0.0,0.0,1882.743582968893,104.27461924862132,0.0,15021.0,0,50,1,12115,201101543,,,146.0,,0.0,2.0,5.0,0.0,1.0,1.0,2604.9650362340235,0.0,1380.0,0.0,0.0,16789.0,0,5,1,110.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1987.0182022175143,0.1322826843896887,0.11835238562258112,16789.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -1544,1,71.0,3,20.0,2,221,1,0,72,3.0,0.0,0.0,412.0206971424679,31.282385774586395,943.6853042000229,8650.0,0,71,2,12117,201101544,543.0,543.0,138.0,254.0,0.0,0.0,4.0,0.0,1.0,1.0,5470.224848489817,0.0,302.0,543.0,0.0,13520.0,0,5,3,73.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1386.988387117077,0.16034547827943088,0.10258789845540511,13520.0,3,2,3_1,3_0_1,3_1_1,3_0_1 -1545,2,66.0,2,0.0,7,111,2,0,74,8.0,0.0,0.0,62.75811943229643,0.0,19.11701352891391,35342.0,0,60,1,12118,201101545,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3057.260462210719,0.0,46.0,11.0,0.0,25125.0,0,5,1,80.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,81.87513296121034,0.002316652508664205,0.0032587117596501627,25125.0,8,4,8,8_1,8_3,8_0_0 -1546,1,46.0,4,247.0,7,221,2,0,67,2.0,0.0,0.0,1637.1683330164287,50.3993993035003,0.0,7032.0,0,71,2,12119,201101546,,,250.0,55.0,1.0,4.0,2.0,0.0,1.0,1.0,3133.7681851770067,0.0,1200.0,0.0,0.0,10338.0,0,4,3,50.0,1,3.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1687.567732319929,0.23998403474401722,0.16323928538594787,10338.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -1547,2,29.0,4,0.0,9,112,2,53,46,9.0,0.0,0.0,845.8703053918215,0.0,1880.4189671168044,36794.0,43,42,1,1212,201101547,,,420.0,,2.0,0.0,4.0,0.0,2.0,1.5,3049.3726969979693,0.0,620.0,1082.0,0.0,49934.0,1,1,3,110.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2726.289272508626,0.07409602849672843,0.05459785461826863,33289.333333333336,9,5,9,9_1,9_0,9_0_0 -1548,2,63.0,2,0.0,1,112,5,72,35,1.0,0.0,659.2650017926339,1215.5974872646982,260.6865481215533,0.0,14079.0,41,20,1,12120,201101548,,,200.0,,1.0,0.0,5.0,0.0,2.0,1.5,1843.2554633494883,0.0,891.0,0.0,0.0,12507.0,7,1,1,140.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2135.5490371788856,0.15168328980601503,0.17074830392411333,8338.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -1549,2,39.0,2,0.0,1,111,2,37,37,10.0,0.0,69.396315978172,1084.624020623384,0.0,2693.760997256051,50187.0,12,12,1,12121,201101549,,,382.0,,2.0,0.0,5.0,2.0,4.0,2.1,2247.601680133425,0.0,795.0,1550.0,0.0,145078.0,1,1,2,130.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3847.781333857607,0.07666888504707607,0.026522155901360697,69084.76190476191,10,5,10,10_1,10_4,10_1_0 -1550,2,51.0,1,0.0,1,111,2,63,33,10.0,0.0,0.0,350.0981728345811,0.0,723.6441883273301,55996.0,50,10,2,12122,201101550,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2429.1044821481005,673.0,0.0,0.0,0.0,88076.0,1,1,2,92.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1073.742361161911,0.019175340402205712,0.0121910890726408,58717.333333333336,10,5,10,10_0,10_4,10_1_0 -1551,2,53.0,3,0.0,6,112,4,0,62,5.0,0.0,69.396315978172,1064.1594164606786,43.44775802025888,0.0,22230.0,0,50,1,12123,201101551,,,,,1.0,2.0,7.0,0.0,1.0,1.0,2593.24049687297,0.0,780.0,0.0,0.0,18878.0,0,1,1,230.0,9,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1177.0034904591093,0.052946625751646846,0.062347891220421094,18878.0,5,3,5,5_1,5_1,5_0_0 -1552,2,61.0,2,0.0,6,111,2,0,77,5.0,0.0,0.0,1364.3069441803573,180.74267336427695,0.0,26090.0,0,50,1,12124,201101552,,,250.0,,0.0,2.0,5.0,0.0,1.0,1.0,4493.860906597002,0.0,1000.0,0.0,0.0,18905.0,0,5,1,120.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1545.0496175446342,0.05921999300669353,0.0817270361039214,18905.0,5,3,5,5_1,5_4,5_0_0 -1553,1,47.0,3,230.0,8,111,4,0,85,2.0,0.0,0.0,955.0148609262501,0.0,0.0,11052.0,0,71,2,12125,201101553,,,,320.0,0.0,3.0,3.0,0.0,1.0,1.0,3186.7906101184412,0.0,700.0,0.0,0.0,11130.0,0,7,3,103.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,955.0148609262501,0.08641104423871246,0.08580546818744385,11130.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -1554,2,64.0,3,0.0,6,111,4,0,78,4.0,0.0,0.0,196.46019996197145,0.0,0.0,15464.0,0,71,2,12126,201101554,,,,,0.0,3.0,1.0,0.0,1.0,1.0,2858.3505818908015,0.0,144.0,0.0,0.0,16058.0,0,5,3,24.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,196.46019996197145,0.01270435850762878,0.012234412751399392,16058.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -1555,1,37.0,3,144.0,9,111,1,0,54,5.0,0.0,0.0,300.1475277196786,52.13730962431066,0.0,26192.0,0,41,2,12128,201101555,,,163.0,273.0,1.0,0.0,3.0,1.0,2.0,1.3,3537.2252038012557,0.0,220.0,0.0,0.0,22471.0,0,1,3,72.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,352.28483734398924,0.013450093056810828,0.01567731019287033,17285.384615384613,5,3,5,5_0,5_3,5_0_0 -1556,2,20.0,2,0.0,4,111,1,0,56,1.0,0.0,0.0,0.0,0.0,0.0,16377.0,0,41,2,12129,201101556,,,,178.0,1.0,0.0,3.0,0.0,1.0,1.0,5124.418079076132,0.0,0.0,0.0,0.0,7169.0,0,3,4,57.0,8,7.0,1,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,7169.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -1557,1,44.0,4,248.0,1,112,2,0,68,2.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,9629.0,0,71,1,12131,201101557,,,240.0,,1.0,0.0,3.0,0.0,1.0,1.0,3062.6555484271357,700.0,0.0,0.0,0.0,10726.0,0,1,3,70.0,5,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1116.8196921446327,0.11598501320434444,0.1041226638210547,10726.0,2,1,2_1,2_1_1,2_0_1,2_1_0 -1558,2,61.0,3,0.0,99,211,2,0,62,9.0,0.0,0.0,450.22129157951787,0.0,563.0829439425551,19395.0,0,70,1,12132,201101558,,,,439.0,1.0,5.0,4.0,0.0,1.0,1.0,4015.148034365822,0.0,330.0,324.0,0.0,35740.0,0,1,3,78.0,2,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1013.304235522073,0.05224564246053483,0.02835210507896119,35740.0,9,5,9,9_1,9_1,9_0_0 -1559,1,37.0,1,187.0,4,111,4,56,63,2.0,0.0,0.0,2182.8911106885716,0.0,0.0,37700.0,70,43,1,12133,201101559,,,520.0,,2.0,0.0,3.0,3.0,5.0,2.4,3265.459245231324,0.0,1600.0,0.0,0.0,29581.0,1,1,2,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,2182.8911106885716,0.05790162097317166,0.07379368887760968,12325.416666666668,2,1,2_1,2_1_1,2_4_1,2_0_1 -1560,2,49.0,3,0.0,6,111,6,46,46,5.0,0.0,0.0,1855.457444085286,0.0,0.0,42027.0,41,41,2,12138,201101560,,,,740.0,2.0,1.0,4.0,1.0,3.0,2.0,3308.242444537036,0.0,1360.0,0.0,0.0,36124.0,1,1,3,82.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1855.457444085286,0.04414917657899174,0.05136356560971338,18062.0,5,3,5,5_0,5_3,5_0_0 -1561,2,58.0,2,0.0,5,111,4,74,74,9.0,0.0,0.0,2194.847326280435,0.0,749.450221789226,68506.0,10,20,1,12139,201101561,,,313.0,,0.0,1.0,9.0,0.0,2.0,1.5,1575.315192642273,697.0,1343.0,0.0,0.0,52662.0,5,5,1,165.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2944.297548069661,0.042978681401186186,0.05590933781606587,35108.0,9,5,9,9_1,9_2,9_0_0 -1562,2,83.0,3,0.0,1,112,2,86,78,2.0,2538.3296146222115,0.0,477.50743046312505,281.54147197127753,0.0,9194.0,70,70,1,12140,201101562,,,300.0,,0.0,4.0,3.0,0.0,2.0,1.5,1602.7272404518772,0.0,350.0,0.0,0.0,16410.0,6,5,1,50.0,7,1.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3297.378517056614,0.3586446070324792,0.2009371430259972,10940.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -1563,2,35.0,3,0.0,99,111,2,56,46,7.0,0.0,0.0,0.0,0.0,0.0,35186.0,41,20,1,12141,201101563,,,,,2.0,0.0,13.0,2.0,4.0,2.1,2457.2209004688466,0.0,0.0,0.0,0.0,47925.0,1,1,2,130.0,8,6.0,4,9,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,22821.42857142857,7,4,7,7_1,7_2,7_0_0 -1564,2,27.0,3,0.0,5,111,1,64,64,5.0,0.0,0.0,504.79356934673217,0.0,208.54923849724264,32161.0,71,50,2,12143,201101564,,,,380.0,2.0,0.0,3.0,1.0,3.0,1.8,2973.2257197031527,0.0,370.0,120.0,0.0,32795.0,1,1,3,67.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,713.3428078439748,0.022180367769782494,0.02175157212514026,18219.444444444445,5,3,5,5_0,5_4,5_0_0 -1565,2,80.0,3,0.0,3,111,1,0,77,4.0,0.0,0.0,245.5752499524643,0.0,1571.0709300125611,9588.0,0,71,2,12144,201101565,739.0,739.0,,265.0,0.0,1.0,3.0,0.0,1.0,1.0,3236.427408965197,0.0,180.0,904.0,0.0,15635.0,0,5,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1816.6461799650253,0.18947081559918913,0.1161909932820611,15635.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -1566,2,54.0,1,0.0,7,111,2,55,38,10.0,0.0,0.0,623.4882734904232,0.0,1706.6279350357688,39546.0,50,31,1,12145,201101566,,,239.0,,2.0,2.0,5.0,0.0,2.0,1.5,1932.9530519318987,0.0,457.0,982.0,0.0,66201.0,4,1,1,120.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2330.116208526192,0.058921666123658324,0.035197598352384285,44134.0,10,5,10,10_1,10_3,10_0_0 -1567,2,41.0,2,0.0,9,111,4,34,34,7.0,0.0,0.0,1841.8143746434823,0.0,0.0,60483.0,10,20,2,12146,201101567,,,,1600.0,2.0,0.0,4.0,4.0,6.0,2.9,1573.988423389551,0.0,1350.0,0.0,0.0,69560.0,1,1,3,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1841.8143746434823,0.03045176949958637,0.02647806749056185,23986.206896551725,7,4,7,7_0,7_4,7_0_0 -1568,2,60.0,2,0.0,7,111,2,54,65,10.0,0.0,0.0,1329.6447693390626,0.0,2748.3425636919105,47993.0,50,70,1,12147,201101568,,,177.0,,2.0,2.0,4.0,0.0,2.0,1.5,1202.4002776112663,2556.0,0.0,0.0,0.0,56730.0,1,1,1,100.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4077.987333030973,0.08497046096370248,0.07188414124856289,37820.0,10,5,10,10_1,10_2,10_0_0 -1569,2,29.0,3,0.0,99,112,2,56,63,5.0,0.0,0.0,1091.4455553442858,104.27461924862132,0.0,38357.0,41,31,2,12149,201101569,,,,700.0,2.0,0.0,3.0,1.0,3.0,1.8,8231.577355851108,0.0,800.0,0.0,0.0,32080.0,4,1,3,72.0,9,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1195.7201745929071,0.031173453987353213,0.03727307277409311,17822.222222222223,5,3,5,5_0,5_1,5_0_0 -1570,1,77.0,4,115.0,8,211,4,0,77,2.0,0.0,0.0,845.8703053918215,0.0,0.0,11740.0,0,70,2,1215,201101570,,,,276.0,0.0,0.0,2.0,0.0,1.0,1.0,2820.3952302414427,0.0,620.0,0.0,0.0,11175.0,0,5,3,42.0,3,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,845.8703053918215,0.0720502815495589,0.0756930922050847,11175.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -1571,2,36.0,2,0.0,8,111,1,0,54,6.0,0.0,0.0,382.0059443705,0.0,264.162368763174,20736.0,0,31,2,12155,201101571,,,,453.0,1.0,0.0,2.0,0.0,1.0,1.0,2326.8554747532667,0.0,280.0,152.0,0.0,19320.0,0,1,3,49.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,646.168313133674,0.03116166633553598,0.033445564861991406,19320.0,6,3,6,6_0,6_3,6_0_0 -1572,1,51.0,4,245.0,1,111,6,0,52,1.0,0.0,0.0,286.504458277875,0.0,1202.6339420007657,4670.0,0,71,2,12158,201101572,,,,40.0,1.0,0.0,2.0,0.0,1.0,1.0,2607.9765652884084,0.0,210.0,692.0,0.0,6005.0,0,4,3,31.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1489.1384002786408,0.31887331911748196,0.24798308081242978,6005.0,1,1,1_1,1_0_1,1_2_1,1_1_0 -1573,2,35.0,1,0.0,9,112,2,43,38,8.0,0.0,138.792631956344,769.4691165177215,0.0,0.0,57335.0,33,12,1,1216,201101573,,,610.0,,2.0,0.0,6.0,2.0,4.0,2.1,1603.9108814417657,0.0,564.0,0.0,0.0,58087.0,1,1,2,120.0,5,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,908.2617484740656,0.015841314179368023,0.01563623097206028,27660.47619047619,8,4,8,8_1,8_0,8_0_0 -1574,2,18.0,2,0.0,99,111,1,0,84,1.0,0.0,0.0,130.0513272045249,0.0,268.81284856141536,8732.0,0,41,2,12160,201101574,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3029.267744126553,250.0,0.0,0.0,0.0,1279.0,0,3,3,25.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,398.8641757659403,0.045678444315842906,0.3118562750320096,1279.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -1575,2,65.0,2,0.0,1,300,2,0,77,9.0,0.0,0.0,2319.3218051066074,72.99223347403492,0.0,31773.0,0,60,1,12161,201101575,,,177.0,,0.0,2.0,4.0,0.0,1.0,1.0,1732.8853858061686,0.0,1700.0,0.0,0.0,35356.0,0,5,1,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2392.3140385806423,0.07529393002173677,0.06766359425785276,35356.0,9,5,9,9_1,9_0,9_1_0 -1576,2,77.0,4,0.0,2,111,1,0,77,8.0,0.0,0.0,463.8643610213215,0.0,0.0,16652.0,0,43,2,12163,201101576,,,,584.0,0.0,1.0,3.0,0.0,1.0,1.0,2832.2727066062344,0.0,340.0,0.0,0.0,24810.0,0,5,3,75.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,463.8643610213215,0.027856375271518224,0.01869666912621207,24810.0,7,4,7,7_0,7_2,7_0_1 -1577,2,49.0,2,0.0,1,300,2,11,64,1.0,0.0,138.792631956344,458.40713324460006,208.54923849724264,0.0,35534.0,50,50,1,12164,201101577,,,301.0,,2.0,0.0,4.0,1.0,3.0,2.0,1053.408041176928,0.0,336.0,0.0,0.0,17805.0,1,1,1,100.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,805.7490036981867,0.022675437713125083,0.04525408613862324,8902.5,1,1,1_0,1_1_0,1_0_0,1_1_0 -1578,2,59.0,1,0.0,5,111,2,42,54,10.0,0.0,0.0,567.5516887790286,0.0,2659.0027908398433,41095.0,20,41,1,12165,201101578,,,450.0,,2.0,1.0,4.0,0.0,2.0,1.5,1285.0407868729483,0.0,416.0,1530.0,0.0,78575.0,1,1,1,95.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3226.554479618872,0.07851452681880695,0.04106337231458952,52383.333333333336,10,5,10,10_1,10_2,10_0_0 -1579,1,49.0,4,50.0,4,111,1,85,68,1.0,0.0,0.0,613.9381248811608,0.0,2919.689338961397,32293.0,71,50,2,12167,201101579,1200.0,1200.0,,400.0,1.0,0.0,4.0,3.0,5.0,2.6,2487.415149343156,0.0,450.0,1680.0,0.0,22268.0,6,1,3,100.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,3533.6274638425575,0.10942394524641741,0.15868634200837783,8564.615384615385,1,1,1_1,1_0_1,1_2_1,1_0_1 -1580,2,77.0,3,0.0,2,112,6,78,77,4.0,2062.392811880547,0.0,515.708024900175,0.0,0.0,20973.0,71,71,1,12168,201101580,,,,500.0,0.0,1.0,5.0,0.0,2.0,1.5,2638.1166585070314,0.0,378.0,0.0,0.0,23450.0,5,5,3,80.0,8,1.0,3,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2578.100836780722,0.12292475262388414,0.10994033419107557,15633.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_1 -1581,2,43.0,4,0.0,7,221,1,0,47,2.0,0.0,0.0,276.9543096686125,0.0,0.0,12671.0,0,43,2,12169,201101581,,,156.0,417.0,1.0,0.0,3.0,2.0,3.0,1.6,5714.514361255165,0.0,203.0,0.0,0.0,19505.0,0,1,3,69.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,276.9543096686125,0.021857336411381302,0.014199144304978852,12190.625,2,1,2_0,2_0_0,2_1_0,2_0_0 -1582,2,61.0,3,0.0,7,400,2,21,54,5.0,0.0,0.0,1019.8346294986583,4586.345336618528,258.06033461895873,64898.0,50,31,1,1217,201101582,,,392.0,,2.0,1.0,5.0,1.0,3.0,2.0,1489.1371870978235,240.0,656.0,0.0,0.0,35213.0,1,1,1,130.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5864.240300736145,0.09036087862085342,0.16653623095834338,17606.5,5,3,5,5_1,5_0,5_0_0 -1583,2,77.0,4,0.0,1,111,1,0,31,7.0,0.0,0.0,417.4779249191893,0.0,83.41969539889705,18011.0,0,41,2,12170,201101583,,,,343.0,1.0,1.0,2.0,0.0,1.0,1.0,4255.576772584865,0.0,306.0,48.0,0.0,21777.0,0,5,3,37.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,500.89762031808635,0.027810650175897303,0.02300122240520211,21777.0,6,3,6,6_0,6_4,6_1_0 -1584,1,48.0,5,236.0,7,111,1,81,63,2.0,0.0,0.0,245.5752499524643,0.0,0.0,11306.0,71,50,2,12171,201101584,,,,254.0,2.0,4.0,4.0,1.0,3.0,1.8,3276.6730577816725,0.0,180.0,0.0,0.0,20222.0,4,1,3,90.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,245.5752499524643,0.02172078984189495,0.012143964491764627,11234.444444444443,2,1,2_1,2_0_1,2_3_1,2_0_0 -1585,2,49.0,3,0.0,3,221,2,0,56,4.0,0.0,0.0,2489.860173129152,208.54923849724264,0.0,16405.0,0,50,1,12172,201101585,,,252.0,,1.0,4.0,6.0,1.0,2.0,1.5,6085.22810529773,0.0,1825.0,0.0,0.0,24578.0,0,1,1,100.0,1,1.0,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2698.4094116263946,0.1644870107666196,0.10978962534080863,16385.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_1 -1586,2,37.0,3,0.0,9,112,2,54,47,6.0,0.0,138.792631956344,2455.752499524643,0.0,0.0,70035.0,42,43,1,12175,201101586,,,276.0,,2.0,0.0,5.0,2.0,4.0,2.1,3037.941502208856,0.0,1800.0,0.0,0.0,44244.0,1,1,2,168.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2594.545131480987,0.037046407246105334,0.058641739704389004,21068.571428571428,6,3,6,6_1,6_0,6_0_0 -1587,2,68.0,5,0.0,1,300,5,0,71,2.0,0.0,1057.5998555073413,226.4749527339393,444.90504212745094,0.0,7897.0,0,71,1,1218,201101587,,,99.0,,0.0,0.0,2.0,0.0,2.0,1.5,3208.6471300732887,0.0,166.0,0.0,0.0,16130.0,0,5,1,80.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1728.9798503687316,0.21894135119269742,0.10719031930370314,10753.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -1588,2,45.0,3,0.0,2,120,2,56,22,3.0,0.0,0.0,628.9455012671447,2085.4923849724264,0.0,27026.0,60,50,1,12180,201101588,,,275.0,,2.0,0.0,4.0,0.0,2.0,1.5,3324.8745525322615,0.0,461.0,0.0,0.0,20625.0,1,1,1,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2714.437886239571,0.10043801843556469,0.13160910963585798,13750.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -1589,2,60.0,2,0.0,1,112,6,0,52,6.0,1818.078586473159,0.0,433.8496082493536,86.89551604051776,0.0,13239.0,0,50,1,12181,201101589,,,97.0,,1.0,2.0,4.0,0.0,1.0,1.0,1644.754386409739,0.0,318.0,0.0,0.0,19213.0,0,1,1,110.0,7,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2338.8237107630302,0.17666165954853313,0.12173131269260554,19213.0,5,3,5,5_1,5_1,5_1_0 -1590,2,29.0,3,0.0,2,111,2,0,65,7.0,0.0,0.0,682.1534720901786,0.0,0.0,23319.0,0,50,2,12185,201101590,,,240.0,549.0,1.0,0.0,2.0,0.0,1.0,1.0,3045.81537793425,0.0,500.0,0.0,0.0,23415.0,0,1,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,682.1534720901786,0.029253118576704776,0.029133182664538914,23415.0,7,4,7,7_0,7_4,7_0_1 -1591,2,84.0,5,0.0,99,111,1,72,77,3.0,0.0,0.0,518.4366387885358,0.0,0.0,17632.0,70,70,2,12188,201101591,,,,456.0,0.0,3.0,2.0,0.0,2.0,1.5,4580.7093516682435,0.0,380.0,0.0,0.0,19730.0,5,5,3,41.0,6,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,518.4366387885358,0.029403166900438735,0.026276565574685037,13153.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_0 -1592,1,22.0,4,426.0,99,111,1,0,56,2.0,0.0,0.0,785.8407998478858,0.0,0.0,11557.0,0,60,2,12189,201101592,,,,34.0,1.0,0.0,3.0,1.0,2.0,1.3,7807.712347322874,0.0,576.0,0.0,0.0,15461.0,0,4,3,50.0,8,6.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,785.8407998478858,0.0679969542137134,0.05082729447305387,11893.076923076922,2,1,2_1,2_0_1,2_2_1,2_0_0 -1593,2,45.0,3,0.0,5,111,2,42,34,8.0,0.0,0.0,668.510402648375,0.0,2606.865481215533,40948.0,20,20,1,1219,201101593,,,450.0,,2.0,0.0,6.0,2.0,4.0,2.3,1537.1473100224748,0.0,490.0,1500.0,0.0,60055.0,1,1,2,160.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3275.375883863908,0.07998866571905607,0.05453960342792287,26110.869565217392,8,4,8,8_1,8_2,8_0_0 -1594,2,42.0,4,0.0,8,111,2,0,46,2.0,0.0,0.0,518.4366387885358,0.0,1338.1909470239734,28072.0,0,50,1,12190,201101594,,,,,1.0,0.0,5.0,2.0,3.0,2.0,1267.710815366472,0.0,380.0,770.0,0.0,23200.0,0,1,3,70.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1856.627585812509,0.06613805877075053,0.08002705111260815,11600.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -1595,1,44.0,3,179.0,8,112,4,54,54,3.0,0.0,0.0,1335.6564983525698,0.0,0.0,26288.0,31,50,1,12194,201101595,,,172.0,,2.0,0.0,5.0,2.0,4.0,2.1,1345.1562927860102,0.0,979.0,0.0,0.0,26486.0,4,1,3,90.0,7,1.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1335.6564983525698,0.05080860081986343,0.05042877362956165,12612.380952380952,2,1,2_1,2_1_1,2_1_1,2_0_0 -1596,2,64.0,2,0.0,5,112,4,56,78,6.0,0.0,277.585263912688,1637.1683330164287,140.77073598563877,0.0,11246.0,71,50,1,12195,201101596,,,150.0,,1.0,2.0,4.0,0.0,2.0,1.5,2479.475254306117,0.0,1200.0,0.0,0.0,28614.0,1,5,1,88.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2055.524332914755,0.18277826186330742,0.07183631554185906,19076.0,5,3,5,5_1,5_0,5_0_0 -1597,2,76.0,2,0.0,6,111,4,75,74,7.0,0.0,0.0,1121.4603081162536,76.46805411565563,0.0,27960.0,60,71,1,12196,201101597,,,990.0,,0.0,1.0,4.0,0.0,2.0,1.5,3959.2614556606372,0.0,822.0,0.0,0.0,33369.0,5,5,1,120.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1197.9283622319092,0.0428443620254617,0.03589943846779673,22246.0,7,4,7,7_1,7_2,7_0_0 -1598,2,63.0,3,0.0,5,111,2,55,38,10.0,4997.336428787479,0.0,886.7995137172322,0.0,378.8644499366574,100640.0,70,20,1,12197,201101598,,,740.0,,2.0,3.0,6.0,0.0,2.0,1.5,993.9642515169833,0.0,650.0,218.0,0.0,70343.0,1,4,1,140.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,6263.000392441369,0.06223172091058594,0.0890351618844998,46895.333333333336,10,5,10,10_1,10_4,10_0_0 -1599,1,73.0,3,98.0,9,112,1,0,77,4.0,0.0,0.0,251.03247772918573,0.0,747.3014379484528,14565.0,0,71,2,12198,201101599,,,215.0,,0.0,5.0,2.0,0.0,1.0,1.0,2998.666046312774,0.0,184.0,430.0,0.0,16606.0,0,5,3,43.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,998.3339156776385,0.06854335157415987,0.06011886761879071,16606.0,4,2,4_1,4_0_1,4_1_1,4_0_0 -1600,1,29.0,2,297.0,1,112,4,52,62,8.0,126.91648073111057,0.0,136.43069441803573,38.23402705782782,0.0,29903.0,41,43,1,122,201101600,,,45.0,,2.0,0.0,4.0,0.0,2.0,1.5,3619.436166717293,0.0,100.0,0.0,0.0,40058.0,1,1,3,85.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,301.5812022069741,0.010085315928400968,0.007528613565504372,26705.333333333332,8,4,8,8_1,8_0,8_1_0 -1601,2,38.0,3,0.0,1,111,2,37,37,10.0,0.0,0.0,1227.8762497623215,0.0,1216.5372245672486,60014.0,10,12,2,12204,201101601,,,,,2.0,0.0,4.0,4.0,6.0,2.7,1987.746503297228,0.0,900.0,700.0,0.0,118375.0,1,1,2,105.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2444.41347432957,0.04073072073732079,0.020649744239320547,43842.59259259259,10,5,10,10_0,10_4,10_1_0 -1602,2,59.0,3,0.0,8,112,4,0,46,10.0,0.0,0.0,1582.5960552492145,0.0,0.0,36647.0,0,70,1,12205,201101602,,,680.0,,1.0,2.0,5.0,0.0,1.0,1.0,6576.06824450822,0.0,1160.0,0.0,0.0,43562.0,0,1,2,170.0,4,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1582.5960552492145,0.043184873393435054,0.036329738194968424,43562.0,10,5,10,10_1,10_0,10_0_0 -1604,2,63.0,3,0.0,5,111,4,75,74,8.0,0.0,666.2046333904511,2865.0445827787503,239.831624271829,0.0,31508.0,20,33,1,12208,201101604,,,120.0,,0.0,2.0,6.0,0.0,2.0,1.5,3347.28959328552,0.0,2100.0,0.0,0.0,38183.0,6,5,1,162.0,6,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3771.080840441031,0.11968645551736165,0.09876334600322213,25455.333333333332,8,4,8,8_1,8_2,8_0_0 -1605,2,32.0,5,0.0,8,111,2,62,52,5.0,0.0,0.0,613.9381248811608,0.0,1007.9879860700061,32875.0,71,50,1,12209,201101605,,,170.0,497.0,2.0,0.0,4.0,1.0,3.0,1.8,2621.2632136940038,0.0,450.0,580.0,0.0,33120.0,4,1,3,85.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1621.9261109511667,0.049336155466195186,0.04897119900214875,18400.0,5,3,5,5_1,5_3,5_0_0 -1606,1,49.0,3,250.0,1,400,5,11,11,1.0,0.0,388.6193694777632,848.1279936300502,281.54147197127753,111.8261450015488,24069.0,50,50,1,1221,201101606,,,233.0,,2.0,2.0,5.0,1.0,3.0,2.0,2062.421164734613,104.0,582.0,0.0,0.0,12617.0,1,1,2,110.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1630.11498008064,0.06772674311689891,0.12919988745982722,6308.5,1,1,1_1,1_1_1,1_0_1,1_1_0 -1607,2,62.0,2,0.0,4,111,1,75,74,10.0,0.0,0.0,768.1048095735412,0.0,0.0,62779.0,31,31,2,12210,201101607,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2856.421949629142,0.0,563.0,0.0,0.0,79549.0,5,5,1,115.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,768.1048095735412,0.01223505964691284,0.009655744378603642,53032.666666666664,10,5,10,10_0,10_3,10_0_1 -1608,2,38.0,2,0.0,2,111,2,22,22,8.0,1427.810408224994,0.0,0.0,0.0,0.0,32305.0,71,42,8,12212,201101608,,,,,2.0,0.0,5.0,1.0,3.0,2.0,4787.606461327019,0.0,0.0,0.0,0.0,49777.0,1,1,2,100.0,10,8.0,4,1,1,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1427.810408224994,0.044197814834390774,0.028684139426341362,24888.5,7,4,7,7_0,7_4,7_0_1 -1609,2,56.0,3,0.0,1,111,2,0,77,3.0,0.0,0.0,1159.6609025533037,0.0,0.0,28213.0,0,41,2,12215,201101609,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3662.077890694297,0.0,850.0,0.0,0.0,13234.0,0,7,1,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1159.6609025533037,0.04110377849052932,0.0876273917601106,13234.0,3,2,3_0,3_0_0,3_4_0,3_1_0 -1610,2,55.0,3,0.0,9,112,2,52,53,10.0,0.0,555.170527825376,1637.1683330164287,0.0,0.0,34817.0,71,71,1,12217,201101610,,,250.0,,2.0,2.0,5.0,0.0,2.0,1.5,2540.8000284153077,0.0,1200.0,0.0,0.0,61157.0,1,1,2,110.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2192.3388608418045,0.06296748315023708,0.03584771752770418,40771.333333333336,10,5,10,10_1,10_0,10_0_0 -1611,2,54.0,2,0.0,4,300,5,67,47,7.0,0.0,315.05927454090084,791.2980276246072,104.27461924862132,0.0,39161.0,60,71,1,1222,201101611,,,62.0,,2.0,3.0,5.0,0.0,2.0,1.5,2876.1667044619703,0.0,580.0,0.0,0.0,32874.0,1,1,1,75.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1210.6319214141295,0.030914223881262724,0.03682642578980743,21916.0,7,4,7,7_1,7_0,7_0_1 -1612,2,79.0,3,0.0,4,111,2,74,77,9.0,5235.304830158311,0.0,777.6549581828036,0.0,0.0,36530.0,41,70,1,12220,201101612,,,360.0,,0.0,2.0,4.0,0.0,2.0,1.5,2464.4106891956344,0.0,570.0,0.0,0.0,46847.0,5,5,1,73.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,6012.959788341115,0.16460333392666618,0.12835314509661483,31231.333333333332,9,5,9,9_1,9_4,9_0_1 -1613,2,59.0,2,0.0,5,111,1,43,48,7.0,0.0,0.0,156.06159264542987,0.0,322.5754182736984,31695.0,50,41,2,12223,201101613,,,,394.0,2.0,0.0,4.0,2.0,4.0,2.5,1665.4409828210426,300.0,0.0,0.0,0.0,56812.0,1,1,3,76.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,478.6370109191283,0.015101341250011936,0.008424928024345706,22724.8,7,4,7,7_0,7_4,7_0_0 -1614,2,67.0,3,0.0,1,112,5,0,77,5.0,0.0,20.818894793451598,968.6579303680536,243.30744491344973,0.0,24445.0,0,71,1,12224,201101614,,,240.0,,1.0,2.0,6.0,1.0,2.0,1.5,3089.5675976609705,0.0,710.0,0.0,0.0,27819.0,0,5,1,120.0,7,0.0,2,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1232.784270074955,0.050430937618120474,0.044314471047663645,18546.0,5,3,5,5_1,5_0,5_1_0 -1615,2,62.0,2,0.0,5,111,4,77,37,10.0,0.0,0.0,2387.537152315625,389.29191186151957,0.0,30757.0,70,43,1,12225,201101615,,,440.0,,1.0,3.0,5.0,0.0,2.0,1.5,1891.6347866296605,0.0,1750.0,0.0,0.0,61436.0,5,1,1,92.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2776.8290641771446,0.09028283201148177,0.045198728175290456,40957.333333333336,10,5,10,10_1,10_4,10_0_0 -1616,1,53.0,3,329.0,4,111,1,85,78,2.0,0.0,0.0,374.5478223490317,0.0,774.1810038568763,17164.0,71,71,2,12226,201101616,,,,,0.0,0.0,4.0,3.0,5.0,3.0,3477.992424242999,720.0,0.0,0.0,0.0,28199.0,6,7,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1148.728826205908,0.06692663867431298,0.0407365093161427,9399.666666666666,1,1,1_1,1_0_1,1_4_1,1_0_1 -1617,2,54.0,2,0.0,5,111,4,0,45,7.0,0.0,0.0,998.6726831400215,52.13730962431066,0.0,18105.0,0,42,2,12228,201101617,,,,299.0,1.0,0.0,3.0,0.0,1.0,1.0,2485.7734092077203,0.0,732.0,0.0,0.0,23430.0,0,1,3,90.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1050.809992764332,0.05803976762023375,0.044848911342907895,23430.0,7,4,7,7_0,7_2,7_0_0 -1618,2,70.0,1,0.0,6,120,2,78,75,6.0,0.0,1165.8581084332895,518.4366387885358,0.0,1303.4327406077664,24592.0,70,50,1,12229,201101618,,,300.0,,0.0,0.0,3.0,0.0,2.0,1.5,1002.9974682317377,0.0,380.0,750.0,0.0,30882.0,5,5,1,104.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2987.7274878295916,0.121491846447202,0.09674656718572604,20588.0,6,3,6,6_1,6_1,6_0_0 -1619,2,32.0,2,0.0,1,111,4,0,34,7.0,126.91648073111057,0.0,818.5841665082144,0.0,0.0,25485.0,0,20,2,1223,201101619,,,,415.0,1.0,0.0,4.0,0.0,1.0,1.0,2437.8459486412676,0.0,600.0,0.0,0.0,23356.0,0,1,3,75.0,8,7.0,1,2,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,945.500647239325,0.037100280448865014,0.04048213081175394,23356.0,7,4,7,7_0,7_3,7_1_0 -1620,1,35.0,4,217.0,2,111,1,0,56,2.0,0.0,0.0,532.0797082303393,152.93610823131127,93.84715732375918,5445.0,0,71,2,12230,201101620,999999.0,22.0,,,2.0,0.0,3.0,3.0,4.0,2.1,2365.2183670765885,0.0,390.0,54.0,0.0,25874.0,0,1,3,65.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,778.8629737854096,0.14304186846380343,0.03010214786215543,12320.95238095238,2,1,2_1,2_0_1,2_4_1,2_0_1 -1621,1,25.0,2,76.0,7,221,4,52,63,7.0,0.0,0.0,695.7965415319821,0.0,0.0,36673.0,31,50,8,12233,201101621,,,120.0,,2.0,0.0,4.0,0.0,2.0,1.5,2872.5963966330833,0.0,510.0,0.0,0.0,32407.0,1,1,3,75.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,695.7965415319821,0.018972992161317103,0.021470563197209927,21604.666666666668,6,3,6,6_0,6_1,6_0_0 -1622,2,64.0,1,0.0,5,111,4,75,74,9.0,0.0,0.0,2832.3012161184215,100.7987986070006,0.0,46834.0,60,44,1,12235,201101622,,,469.0,,0.0,3.0,7.0,0.0,2.0,1.5,3326.169491587641,0.0,2076.0,0.0,0.0,51340.0,5,5,1,150.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2933.100014725422,0.06262757856953116,0.057130892378757736,34226.666666666664,9,5,9,9_1,9_4,9_0_0 -1623,2,85.0,4,0.0,5,111,2,0,77,6.0,0.0,0.0,272.86138883607146,0.0,1042.7461924862132,12748.0,0,70,8,12237,201101623,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4374.723422170007,0.0,200.0,600.0,0.0,20246.0,0,5,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1315.6075813222847,0.10320109674633547,0.06498111139594412,20246.0,6,3,6,6_0,6_4,6_0_0 -1624,2,56.0,3,0.0,5,111,5,55,63,7.0,0.0,0.0,1470.0564608464902,45.18566834106924,556.9802222192526,25918.0,70,50,1,12238,201101624,,,275.0,,2.0,3.0,4.0,0.0,2.0,1.5,1540.290422022344,518.0,880.0,0.0,0.0,36455.0,4,1,1,90.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2072.222351406812,0.07995301919155845,0.056843295882781836,24303.333333333332,7,4,7,7_1,7_3,7_0_0 -1625,2,77.0,3,0.0,7,112,2,86,74,7.0,0.0,0.0,773.5620373502626,2448.7156420217907,0.0,33866.0,71,60,1,1224,201101625,,,254.0,,0.0,5.0,6.0,0.0,2.0,1.5,3665.816817425724,0.0,567.0,0.0,0.0,36670.0,6,5,3,160.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3222.277679372053,0.09514786745916415,0.08787231195451467,24446.666666666668,7,4,7,7_1,7_0,7_0_0 -1626,2,71.0,3,0.0,6,111,4,0,77,5.0,0.0,0.0,908.6284248241179,323.25131967072605,0.0,16588.0,0,71,1,12241,201101626,,,422.0,,0.0,6.0,3.0,0.0,1.0,1.0,2403.8302285193404,0.0,666.0,0.0,0.0,16740.0,0,5,3,60.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1231.879744494844,0.07426330748100098,0.07358899310005042,16740.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -1627,2,57.0,1,0.0,5,111,1,54,38,5.0,0.0,0.0,1432.5222913893751,0.0,208.54923849724264,56466.0,31,31,2,12242,201101627,,,,,2.0,3.0,3.0,0.0,2.0,1.5,3849.6524447707243,0.0,1050.0,120.0,0.0,28425.0,1,1,1,105.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1641.0715298866178,0.029063003044072853,0.057733387155202036,18950.0,5,3,5,5_0,5_3,5_0_0 -1628,1,32.0,5,234.0,4,111,1,85,55,3.0,0.0,0.0,627.5811943229643,0.0,234.61789330939797,15184.0,50,30,2,12243,201101628,,,,73.0,1.0,0.0,3.0,1.0,3.0,1.8,2633.210394332396,0.0,460.0,135.0,0.0,24965.0,7,1,3,60.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,862.1990876323623,0.05678339618232102,0.03453631434537802,13869.444444444443,3,2,3_1,3_0_1,3_3_1,3_0_1 -1629,2,101.0,3,0.0,1,111,2,0,77,2.0,0.0,0.0,322.52729146722174,0.0,666.6558644323101,9583.0,0,71,1,12245,201101629,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2715.4864788329874,620.0,0.0,0.0,0.0,11640.0,0,5,1,80.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,989.1831558995318,0.10322270227481288,0.08498137078174672,11640.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -1630,2,56.0,3,0.0,4,111,1,0,64,10.0,0.0,0.0,477.50743046312505,0.0,0.0,11565.0,0,50,2,12247,201101630,,,,239.0,1.0,0.0,2.0,0.0,1.0,1.0,3116.8457127489432,0.0,350.0,0.0,0.0,65623.0,0,1,3,35.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,477.50743046312505,0.04128901257787506,0.0072765254630712565,65623.0,10,5,10,10_0,10_3,10_0_1 -1631,2,75.0,3,0.0,3,111,2,0,77,3.0,0.0,0.0,709.4396109737858,0.0,1390.3282566482842,8488.0,0,71,1,12248,201101631,,,160.0,,0.0,3.0,5.0,0.0,1.0,1.0,7981.241246392962,0.0,520.0,800.0,0.0,12616.0,0,5,1,110.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2099.76786762207,0.24738075725990455,0.1664368950239434,12616.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -1632,1,25.0,3,32.0,9,111,4,55,42,8.0,0.0,0.0,0.0,0.0,0.0,34561.0,31,20,1,12249,201101632,,,,558.0,2.0,0.0,3.0,0.0,2.0,1.5,2205.2877532590187,0.0,0.0,0.0,0.0,41579.0,1,1,3,68.0,8,6.0,3,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0.0,0.0,0.0,27719.333333333332,8,4,8,8_1,8_2,8_0_0 -1633,2,33.0,2,0.0,9,300,2,67,48,7.0,0.0,0.0,1173.3039719951073,93.84715732375918,0.0,22834.0,43,44,1,12250,201101633,,,120.0,,2.0,0.0,6.0,1.0,3.0,1.8,2291.888067848478,0.0,860.0,0.0,0.0,41552.0,1,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1267.1511293188664,0.05549404963295377,0.030495550859618463,23084.444444444445,7,4,7,7_1,7_0,7_0_0 -1634,2,59.0,1,0.0,1,111,1,0,46,8.0,0.0,0.0,245.5752499524643,0.0,0.0,18702.0,0,31,2,12252,201101634,,,,365.0,1.0,2.0,3.0,0.0,1.0,1.0,2903.794921294118,0.0,180.0,0.0,0.0,27451.0,0,1,3,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,245.5752499524643,0.013130961926663689,0.008945949144018955,27451.0,8,4,8,8_0,8_4,8_1_0 -1635,2,26.0,2,0.0,7,111,2,0,37,10.0,0.0,0.0,1227.8762497623215,0.0,0.0,19300.0,0,31,2,12256,201101635,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5144.888964389851,0.0,900.0,0.0,0.0,47260.0,0,1,2,49.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1227.8762497623215,0.06362053107576796,0.02598130024888535,47260.0,10,5,10,10_0,10_4,10_0_0 -1636,0,77.0,2,0.0,5,111,4,0,78,3.0,190.37472109666587,0.0,1637.1683330164287,0.0,0.0,23759.0,0,71,2,12257,201101636,,,,,0.0,3.0,3.0,0.0,1.0,1.0,6112.571884155582,0.0,1200.0,0.0,0.0,13898.0,0,5,5,70.0,7,5.0,1,4,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1827.5430541130945,0.07692003258188873,0.1314968379704342,13898.0,3,2,3_0,3_0_0,3_2_0,3_0_0 -1637,2,47.0,3,0.0,9,120,5,46,34,7.0,0.0,569.0497910210104,2016.445663498568,156.41192887293198,0.0,56116.0,71,31,1,12260,201101637,,,476.0,,2.0,1.0,7.0,2.0,4.0,2.1,3589.358290329298,0.0,1478.0,0.0,0.0,49340.0,4,1,1,200.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2741.9073833925104,0.04886141890713006,0.05557169402903345,23495.238095238095,7,4,7,7_1,7_0,7_0_0 -1638,2,44.0,4,0.0,8,111,2,55,63,6.0,0.0,0.0,727.1756012481304,0.0,2128.940142992685,18664.0,60,50,1,12261,201101638,,,363.0,,2.0,2.0,4.0,0.0,2.0,1.5,2731.0638997618885,0.0,533.0,1225.0,0.0,29621.0,1,1,2,118.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2856.1157442408157,0.153028061736006,0.09642198927250314,19747.333333333332,6,3,6,6_1,6_3,6_0_0 -1639,2,80.0,3,0.0,5,111,2,75,75,6.0,2855.620816449988,0.0,818.5841665082144,208.54923849724264,0.0,58078.0,70,71,1,12263,201101639,,,600.0,,0.0,2.0,5.0,0.0,2.0,1.5,2500.495122138846,0.0,600.0,0.0,0.0,29542.0,5,5,1,180.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3882.754221455445,0.0668541310213066,0.1314316641207584,19694.666666666668,6,3,6,6_1,6_3,6_0_0 -1640,2,78.0,1,0.0,1,112,2,77,78,3.0,2379.684013708323,0.0,845.8703053918215,0.0,0.0,32264.0,70,70,1,12264,201101640,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1565.1583862464788,0.0,620.0,0.0,0.0,21441.0,6,5,5,100.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3225.5543191001448,0.09997378871498093,0.1504386138286528,14294.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -1641,2,81.0,2,0.0,1,400,2,77,72,2.0,0.0,0.0,641.2242637647679,0.0,1720.5312176022517,24618.0,70,70,1,12266,201101641,,,160.0,,0.0,2.0,4.0,0.0,2.0,1.5,1859.475430331967,0.0,470.0,990.0,0.0,17728.0,5,5,1,100.0,0,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2361.7554813670195,0.09593612321744331,0.13322176677386166,11818.666666666666,2,1,2_0,2_1_0,2_1_0,2_1_0 -1642,2,71.0,3,0.0,7,120,2,71,71,2.0,1269.1648073111057,0.0,474.77881657476433,135.55700502320772,0.0,17100.0,71,71,1,12267,201101642,,,95.0,,0.0,3.0,3.0,0.0,2.0,1.5,3637.1546670080993,0.0,348.0,0.0,0.0,18160.0,5,5,1,96.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1879.5006289090777,0.10991231748006303,0.10349673066679943,12106.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0 -1643,2,29.0,1,0.0,5,112,2,31,37,10.0,2379.684013708323,0.0,327.43366660328576,0.0,0.0,95026.0,10,10,1,12268,201101643,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2204.9288683297864,0.0,240.0,0.0,0.0,59559.0,1,1,2,140.0,10,4.0,3,1,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2707.117680311609,0.028488178817498464,0.04545270538980858,39706.0,10,5,10,10_1,10_2,10_0_0 -1644,2,76.0,3,0.0,1,111,4,0,75,6.0,0.0,0.0,818.5841665082144,0.0,0.0,29870.0,0,70,8,12273,201101644,,,,1000.0,0.0,2.0,2.0,0.0,1.0,1.0,3359.614468020785,0.0,600.0,0.0,0.0,21467.0,0,5,3,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,818.5841665082144,0.02740489342176814,0.03813221067257718,21467.0,6,3,6,6_0,6_4,6_1_0 -1645,2,85.0,3,0.0,6,111,4,75,74,7.0,0.0,0.0,2741.268525685137,139.0328256648284,1605.3503316087724,37786.0,33,12,1,12275,201101645,,,,,0.0,3.0,7.0,0.0,2.0,1.5,2878.726419330526,1493.0,1440.0,0.0,0.0,35039.0,5,5,1,280.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4485.651682958738,0.11871200134861425,0.12801882710576037,23359.333333333332,7,4,7,7_1,7_3,7_0_0 -1646,2,28.0,3,0.0,4,111,1,54,64,8.0,0.0,0.0,327.43366660328576,0.0,0.0,30585.0,12,50,2,12276,201101646,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2708.182850145519,0.0,240.0,0.0,0.0,37188.0,4,1,2,51.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,327.43366660328576,0.010705694510488336,0.008804820549728023,24792.0,7,4,7,7_0,7_4,7_0_1 -1647,2,58.0,2,0.0,1,211,2,0,54,9.0,0.0,0.0,1637.1683330164287,0.0,2954.447545377604,23777.0,0,30,1,12278,201101647,,,200.0,,1.0,2.0,4.0,0.0,1.0,1.0,1641.915899410657,0.0,1200.0,1700.0,0.0,30846.0,0,1,1,100.0,1,3.0,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4591.615878394033,0.19311165741658043,0.14885612002833537,30846.0,9,5,9,9_1,9_1,9_1_0 -1648,2,31.0,3,0.0,99,111,1,0,42,7.0,0.0,0.0,466.5929749096822,0.0,0.0,10854.0,0,10,2,12279,201101648,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3940.4697638843045,0.0,342.0,0.0,0.0,22328.0,0,1,3,65.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,466.5929749096822,0.04298811266903282,0.020897213136406405,22328.0,7,4,7,7_0,7_3,7_0_0 -1650,2,38.0,3,0.0,6,112,2,42,46,8.0,0.0,208.188947934516,1514.3807080401966,0.0,0.0,67224.0,10,31,1,12281,201101650,,,981.0,,2.0,0.0,7.0,3.0,5.0,2.4,5400.459076838511,0.0,1110.0,0.0,0.0,68912.0,1,1,1,140.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1722.5696559747125,0.02562432547861943,0.024996657417789538,28713.333333333336,8,4,8,8_1,8_1,8_0_0 -1651,0,36.0,3,0.0,1,112,2,52,11,5.0,0.0,0.0,0.0,187.69431464751835,0.0,22992.0,50,42,1,12283,201101651,,,,,2.0,0.0,6.0,2.0,4.0,2.1,3417.7756714697553,0.0,0.0,0.0,0.0,38462.0,4,1,5,95.0,8,0.0,4,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,187.69431464751835,0.008163461840967222,0.004879993620912027,18315.238095238095,5,3,5,5_1,5_0,5_1_0 -1652,2,32.0,3,0.0,2,112,2,53,53,4.0,2379.684013708323,0.0,1091.4455553442858,90.37133668213848,0.0,32152.0,42,50,1,12284,201101652,,,,,2.0,1.0,3.0,1.0,3.0,1.8,1633.8172819148424,0.0,800.0,0.0,0.0,28305.0,1,1,3,80.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3561.5009057347474,0.11077074227838851,0.12582585782493366,15725.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -1653,2,60.0,2,0.0,6,111,2,77,74,7.0,0.0,0.0,1309.734666413143,0.0,2161.960439088082,44685.0,50,50,1,12286,201101653,,,504.0,,0.0,2.0,4.0,0.0,2.0,1.5,1548.552655799785,0.0,960.0,1244.0,0.0,36294.0,5,5,1,98.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3471.695105501225,0.07769262852190277,0.09565479433243029,24196.0,7,4,7,7_1,7_4,7_0_0 -1654,2,79.0,3,0.0,3,111,2,0,78,5.0,0.0,0.0,1287.9057553062573,0.0,2959.661276340035,19238.0,0,50,1,12287,201101654,,,211.0,,0.0,1.0,6.0,0.0,1.0,1.0,1764.6252653355975,0.0,944.0,1703.0,0.0,18679.0,0,5,1,130.0,3,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4247.567031646292,0.2207904684294777,0.22739798873849199,18679.0,5,3,5,5_1,5_2,5_0_1 -1655,2,43.0,3,0.0,7,111,2,0,52,7.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,14034.0,0,20,2,12288,201101655,,,,300.0,1.0,0.0,1.0,0.0,1.0,1.0,3403.107091345901,400.0,0.0,0.0,0.0,22587.0,0,1,3,26.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,638.1826812255044,0.04547404027543854,0.028254424280581947,22587.0,7,4,7,7_0,7_4,7_0_0 -1656,2,62.0,2,0.0,1,111,2,0,56,5.0,253.83296146222114,0.0,428.39238047263217,0.0,1124.4279775643,14936.0,0,50,1,12289,201101656,,,223.0,,1.0,0.0,3.0,0.0,1.0,1.0,1266.5806554445846,0.0,314.0,647.0,0.0,18665.0,0,1,1,60.0,7,5.0,1,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1806.6533194991532,0.12095964913625824,0.09679364154830716,18665.0,5,3,5,5_1,5_2,5_1_0 -1657,2,81.0,3,0.0,5,111,4,0,77,3.0,0.0,0.0,450.22129157951787,0.0,0.0,18446.0,0,41,2,12290,201101657,,,,,0.0,4.0,4.0,0.0,1.0,1.0,3072.39947616052,0.0,330.0,0.0,0.0,14187.0,0,5,1,73.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,450.22129157951787,0.024407529631330253,0.03173477772464354,14187.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -1658,2,55.0,4,0.0,6,111,2,0,54,3.0,0.0,0.0,622.1239665462429,0.0,1013.2017170324372,35322.0,0,60,1,12291,201101658,,,350.0,534.0,2.0,2.0,4.0,1.0,2.0,1.5,2287.8805186101285,0.0,456.0,583.0,0.0,21830.0,0,4,3,88.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1635.3256835786801,0.0462976525558768,0.07491184991198718,14553.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_0 -1659,2,42.0,2,0.0,4,221,4,56,62,2.0,0.0,0.0,1910.0297218525002,151.1981979105009,0.0,35267.0,60,60,1,12292,201101659,,,250.0,,2.0,1.0,5.0,2.0,4.0,2.3,3108.1908152781884,0.0,1400.0,0.0,0.0,27777.0,1,1,2,75.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2061.227919763001,0.05844636401630422,0.07420628288738888,12076.956521739132,2,1,2_0,2_1_0,2_1_0,2_0_1 -1660,2,33.0,1,0.0,1,111,1,84,46,9.0,0.0,0.0,237.38940828738217,0.0,3406.3042287882963,34962.0,12,12,2,12294,201101660,1800.0,1800.0,,,1.0,0.0,2.0,0.0,2.0,1.5,2496.020044864551,0.0,174.0,1960.0,0.0,45557.0,3,1,2,42.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3643.6936370756785,0.10421868420215315,0.07998098288025283,30371.333333333332,9,5,9,9_0,9_4,9_1_0 -1661,2,33.0,2,0.0,4,111,1,0,46,8.0,0.0,0.0,407.9277763099268,0.0,81.68178507808669,27025.0,0,20,2,12296,201101661,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3408.769365027517,0.0,299.0,47.0,0.0,28298.0,0,1,2,78.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,489.6095613880135,0.018116912539796984,0.017301913965227702,28298.0,8,4,8,8_0,8_3,8_0_1 -1662,1,35.0,4,365.0,1,111,4,85,63,3.0,0.0,0.0,641.2242637647679,271.11401004641544,0.0,7634.0,60,71,2,12297,201101662,,,,,1.0,0.0,3.0,1.0,3.0,1.8,4647.896119376806,0.0,470.0,0.0,0.0,22570.0,6,1,3,65.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,912.3382738111834,0.11950986033680684,0.040422608498501704,12538.888888888889,2,1,2_1,2_0_1,2_3_1,2_1_0 -1663,1,41.0,3,135.0,5,111,1,85,62,2.0,0.0,0.0,409.2920832541072,0.0,312.82385774586396,30693.0,71,60,2,12298,201101663,,,,329.0,1.0,0.0,5.0,4.0,6.0,3.3,3545.8585306905056,0.0,300.0,180.0,0.0,40500.0,6,1,3,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,722.1159409999711,0.023527056364642463,0.01783002323456719,12272.727272727274,2,1,2_1,2_0_1,2_4_1,2_0_0 -1664,2,47.0,2,0.0,6,111,2,38,37,10.0,0.0,0.0,733.9971359690322,0.0,2433.074449134497,67687.0,50,31,1,123,201101664,,,560.0,,3.0,1.0,6.0,1.0,3.0,2.0,3053.714136511484,0.0,538.0,1400.0,0.0,75383.0,1,1,2,125.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3167.0715851035293,0.046789953537659065,0.042013074368273076,37691.5,10,5,10,10_1,10_4,10_0_0 -1665,2,26.0,3,0.0,99,400,2,0,52,6.0,206.2392811880547,0.0,583.9233721091929,0.0,0.0,14895.0,0,50,2,12301,201101665,,,84.0,,1.0,0.0,3.0,0.0,1.0,1.0,4597.309139193345,0.0,428.0,0.0,0.0,19507.0,0,1,3,77.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,790.1626532972475,0.05304885218511229,0.04050662086929038,19507.0,6,3,6,6_0,6_0,6_0_0 -1666,2,46.0,8,0.0,4,221,1,0,55,4.0,0.0,0.0,327.43366660328576,104.27461924862132,0.0,17949.0,0,41,2,12302,201101666,,,,,1.0,0.0,3.0,2.0,3.0,1.8,4437.207936539307,0.0,240.0,0.0,0.0,27180.0,0,1,3,71.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,431.7082858519071,0.02405194082410759,0.015883307058569062,15100.0,4,2,4_0,4_0_0,4_1_0,4_0_1 -1667,1,26.0,3,282.0,8,111,4,43,84,1.0,0.0,0.0,818.5841665082144,0.0,0.0,38643.0,10,10,2,12303,201101667,,,,171.0,1.0,0.0,2.0,0.0,2.0,1.5,2733.675155278918,0.0,600.0,0.0,0.0,9467.0,4,3,3,55.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,818.5841665082144,0.021183245775644084,0.0864671138172826,6311.333333333333,1,1,1_1,1_0_1,1_2_1,1_0_0 -1668,2,56.0,3,0.0,5,222,2,78,54,8.0,228.44966531599903,277.585263912688,544.3584707279625,194.64595593075978,0.0,25935.0,71,50,1,12304,201101668,,,119.0,,1.0,2.0,5.0,0.0,2.0,1.5,2148.6055731676493,0.0,399.0,0.0,0.0,38843.0,5,1,1,109.0,1,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1245.0393558874093,0.04800614443367686,0.03205312040489688,25895.333333333332,8,4,8,8_1,8_0,8_0_0 -1669,2,65.0,3,0.0,1,300,4,77,77,3.0,0.0,0.0,2905.973791104161,86.89551604051776,0.0,16786.0,70,50,1,12305,201101669,,,140.0,,0.0,3.0,5.0,0.0,2.0,1.5,1554.5400846226546,0.0,2130.0,0.0,0.0,19644.0,5,5,1,105.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2992.8693071446787,0.17829556220330506,0.15235539132277942,13096.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -1670,1,26.0,3,400.0,5,111,2,54,21,8.0,0.0,0.0,491.1504999049286,0.0,834.1969539889706,49917.0,31,71,2,12306,201101670,,,,295.0,2.0,0.0,4.0,2.0,4.0,2.1,4156.982762955471,0.0,360.0,480.0,0.0,53530.0,1,1,3,70.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1325.3474538938992,0.026551023777348384,0.024758966073115996,25490.47619047619,8,4,8,8_0,8_3,8_0_0 -1671,1,48.0,4,262.0,99,111,1,0,55,1.0,0.0,0.0,231.93218051066074,0.0,0.0,5084.0,0,50,2,12307,201101671,,,,,1.0,2.0,3.0,0.0,1.0,1.0,3480.028463272423,0.0,170.0,0.0,0.0,8224.0,0,4,3,70.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,231.93218051066074,0.04562001976999621,0.028201870198280733,8224.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -1672,2,47.0,3,0.0,7,112,5,85,52,9.0,0.0,499.65347504283835,2046.460416270536,0.0,0.0,49793.0,71,50,1,12308,201101672,,,123.0,,3.0,0.0,6.0,3.0,5.0,2.8,925.4615160103255,0.0,1500.0,0.0,0.0,81210.0,6,1,3,150.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2546.113891313374,0.051133972472302815,0.03135222129434028,29003.57142857143,8,4,8,8_1,8_0,8_0_0 -1673,2,63.0,3,0.0,5,111,1,0,75,7.0,0.0,0.0,368.36287492869644,0.0,104.27461924862132,26289.0,0,50,2,12309,201101673,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2560.4515811346864,0.0,270.0,60.0,0.0,24567.0,0,5,1,78.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,472.63749417731776,0.01797852691914176,0.01923871429874701,24567.0,7,4,7,7_0,7_4,7_0_0 -1674,0,54.0,2,0.0,8,400,5,0,42,2.0,0.0,333.10231669522557,1530.7523913703608,194.64595593075978,0.0,17079.0,0,31,1,12313,201101674,,,280.0,,1.0,2.0,3.0,0.0,1.0,1.0,2419.050613296408,0.0,1122.0,0.0,0.0,10863.0,0,1,5,100.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2058.500663996346,0.12052817284362936,0.18949651698392211,10863.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -1675,2,49.0,2,0.0,3,112,4,0,62,9.0,0.0,0.0,4215.708457517304,0.0,0.0,39448.0,0,50,1,12314,201101675,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2696.5872142558123,0.0,3090.0,0.0,0.0,28980.0,0,1,2,240.0,9,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4215.708457517304,0.1068674826991813,0.1454695810047379,28980.0,8,4,8,8_1,8_0,8_0_1 -1676,2,67.0,1,0.0,6,111,2,22,74,10.0,951.8736054833294,0.0,2470.947948266105,199.85968689319085,877.4051377044597,127611.0,10,50,1,12315,201101676,,,,,1.0,2.0,7.0,0.0,2.0,1.5,1690.4719738833226,816.0,1500.0,0.0,0.0,70137.0,5,5,1,420.0,6,4.0,3,8,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4500.086378347085,0.035264094618387795,0.06416137528475818,46758.0,10,5,10,10_1,10_2,10_0_0 -1677,2,51.0,4,0.0,4,111,2,0,52,7.0,0.0,0.0,713.5325318063268,0.0,2433.074449134497,34529.0,0,41,1,12316,201101677,,,430.0,700.0,1.0,2.0,5.0,0.0,1.0,1.0,2517.651047100138,0.0,523.0,1400.0,0.0,24010.0,0,1,3,95.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3146.606980940824,0.09112939792466691,0.1310540183648823,24010.0,7,4,7,7_1,7_2,7_0_1 -1678,2,50.0,2,0.0,1,111,2,0,56,5.0,0.0,0.0,245.5752499524643,0.0,1343.4046779864045,15966.0,0,50,2,12317,201101678,,,,420.0,1.0,0.0,2.0,0.0,1.0,1.0,2551.191278009869,0.0,180.0,773.0,0.0,17691.0,0,1,3,60.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1588.9799279388687,0.09952273130019221,0.08981854773268153,17691.0,5,3,5,5_0,5_3,5_1_0 -1679,2,43.0,2,0.0,8,120,2,46,46,10.0,0.0,41.637789586903196,231.93218051066074,0.0,0.0,45856.0,50,31,1,12318,201101679,,,200.0,,2.0,0.0,7.0,1.0,3.0,1.8,2705.380079291208,0.0,170.0,0.0,0.0,71602.0,1,1,2,180.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,273.56997009756395,0.005965848964095515,0.0038207029146890303,39778.88888888889,10,5,10,10_1,10_0,10_0_0 -1680,2,85.0,3,0.0,1,112,2,86,72,1.0,3172.912018277764,0.0,1500.737638598393,217.2387901012944,0.0,11480.0,71,70,1,12319,201101680,,,101.0,,0.0,1.0,4.0,0.0,2.0,1.5,3338.9836537112183,0.0,1100.0,0.0,0.0,11645.0,5,5,1,100.0,9,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4890.888446977452,0.42603557900500455,0.4199990078984502,7763.333333333333,1,1,1_0,1_1_0,1_0_0,1_1_0 -1681,2,53.0,3,0.0,5,111,1,63,65,4.0,0.0,0.0,573.00891655575,0.0,0.0,14872.0,41,41,2,1232,201101681,,,,229.0,2.0,0.0,2.0,0.0,2.0,1.5,2798.382000867999,0.0,420.0,0.0,0.0,23372.0,4,1,3,56.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,573.00891655575,0.03852937846663193,0.024516896994512666,15581.333333333334,4,2,4_0,4_0_0,4_4_0,4_0_0 -1682,1,67.0,4,204.0,99,111,2,0,72,2.0,0.0,0.0,477.50743046312505,0.0,851.5760571970741,4435.0,0,71,1,12322,201101682,,,,50.0,0.0,1.0,2.0,0.0,1.0,1.0,2736.6611174010186,0.0,350.0,490.0,0.0,11188.0,0,5,3,51.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1329.0834876601991,0.29968060601131885,0.11879544937971033,11188.0,2,1,2_1,2_1_1,2_3_1,2_0_0 -1683,2,27.0,3,0.0,6,111,2,0,52,7.0,0.0,0.0,982.3009998098572,0.0,0.0,18926.0,0,50,2,12324,201101683,,,,320.0,1.0,0.0,2.0,0.0,1.0,1.0,4231.978380589775,0.0,720.0,0.0,0.0,24637.0,0,1,3,50.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,982.3009998098572,0.051902198024403316,0.0398709664248836,24637.0,7,4,7,7_0,7_3,7_0_0 -1684,2,37.0,2,0.0,9,300,2,55,63,8.0,0.0,555.170527825376,900.4425831590357,3475.8206416207104,0.0,71777.0,20,50,1,12325,201101684,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1854.6607973312794,0.0,660.0,0.0,0.0,55320.0,1,1,2,150.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4931.433752605122,0.06870492988847572,0.08914377716205933,26342.85714285714,8,4,8,8_1,8_0,8_0_0 -1685,2,64.0,1,0.0,7,111,6,74,34,10.0,0.0,0.0,1825.442691313318,1724.0070382438723,0.0,50371.0,10,10,1,12328,201101685,,,185.0,,1.0,3.0,7.0,0.0,2.0,1.5,2931.316654565306,0.0,1338.0,0.0,0.0,81354.0,5,1,1,220.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3549.44972955719,0.07046613586304004,0.043629689130923986,54236.0,10,5,10,10_1,10_3,10_0_0 -1686,1,47.0,4,245.0,3,111,1,0,52,5.0,0.0,0.0,1132.3747636696964,166.8393907977941,0.0,32870.0,0,60,2,1233,201101686,,,,,2.0,0.0,5.0,3.0,4.0,2.5,2278.984951318957,0.0,830.0,0.0,0.0,41942.0,0,1,2,84.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1299.2141544674905,0.039525833722771235,0.030976447343176065,16776.8,4,2,4_1,4_0_1,4_3_1,4_0_1 -1687,1,38.0,3,146.0,4,111,1,67,47,2.0,0.0,0.0,204.6460416270536,0.0,364.9611673701746,19478.0,60,12,2,12332,201101687,,,,149.0,2.0,0.0,3.0,2.0,4.0,2.1,2457.3250372622992,0.0,150.0,210.0,0.0,22475.0,4,4,3,62.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,569.6072089972282,0.029243618903235867,0.025344035995427283,10702.380952380952,2,1,2_1,2_0_1,2_3_1,2_0_1 -1688,2,64.0,3,0.0,4,111,4,77,78,4.0,0.0,0.0,1663.561900258458,0.0,336.553686398892,23208.0,70,71,1,12333,201101688,,,250.0,,0.0,0.0,3.0,0.0,2.0,1.5,2790.5501100090864,313.0,1100.0,0.0,0.0,22259.0,5,5,3,68.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2000.1155866573501,0.08618216074876552,0.08985648891043399,14839.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1 -1689,2,27.0,2,0.0,99,112,4,84,52,3.0,0.0,0.0,327.43366660328576,26.06865481215533,0.0,39637.0,42,42,2,12334,201101689,,,,445.0,1.0,0.0,2.0,0.0,2.0,1.5,3170.7561312263742,0.0,240.0,0.0,0.0,18588.0,3,1,3,50.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,353.5023214154411,0.008918493362652095,0.01901777068083931,12392.0,2,1,2_0,2_0_0,2_0_0,2_0_0 -1690,1,23.0,3,170.0,8,111,2,0,84,3.0,0.0,0.0,949.5576331495287,0.0,0.0,20541.0,0,20,2,12335,201101690,,,,254.0,0.0,0.0,2.0,0.0,1.0,1.0,2809.0912367087953,0.0,696.0,0.0,0.0,13146.0,0,3,3,35.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,949.5576331495287,0.04622742968451043,0.07223167755587469,13146.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -1691,1,45.0,3,155.0,4,111,1,0,46,3.0,0.0,0.0,463.8643610213215,0.0,139.0328256648284,9658.0,0,41,2,12337,201101691,,,,148.0,1.0,0.0,2.0,1.0,2.0,1.3,3017.1821791632547,0.0,340.0,80.0,0.0,18823.0,0,1,3,53.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,602.8971866861499,0.06242464140465416,0.032029813881217124,14479.23076923077,3,2,3_1,3_0_1,3_4_1,3_0_1 -1692,2,45.0,3,0.0,8,111,4,22,67,2.0,0.0,0.0,2046.460416270536,0.0,0.0,25767.0,41,41,1,12338,201101692,,,200.0,,2.0,0.0,4.0,1.0,3.0,2.0,3292.6710167384376,0.0,1500.0,0.0,0.0,24340.0,1,1,2,85.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2046.460416270536,0.07942175714171366,0.0840780779075816,12170.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -1693,2,44.0,2,0.0,7,120,4,55,54,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,27550.0,31,71,2,1234,201101693,,,,,2.0,1.0,4.0,2.0,4.0,2.1,7884.647336699138,0.0,1200.0,0.0,0.0,52487.0,1,1,3,100.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1637.1683330164287,0.059425347840886704,0.031191882428342803,24993.809523809523,8,4,8,8_0,8_0,8_0_0 -1694,2,53.0,2,0.0,6,111,4,52,46,9.0,158.64560091388822,0.0,1528.023777482,140.77073598563877,0.0,36752.0,60,31,1,12340,201101694,,,435.0,,3.0,2.0,4.0,1.0,3.0,2.0,1467.6562594348845,0.0,1120.0,0.0,0.0,66255.0,1,1,2,85.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1827.440114381527,0.04972355557198321,0.02758192007216855,33127.5,9,5,9,9_1,9_3,9_0_0 -1695,2,36.0,2,0.0,9,300,4,43,63,6.0,0.0,0.0,2406.63744953415,90.37133668213848,0.0,59731.0,50,50,1,12341,201101695,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1160.6920308994643,0.0,1764.0,0.0,0.0,41107.0,1,1,2,116.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2497.0087862162886,0.04180423542576365,0.06074412596920935,19574.761904761905,6,3,6,6_1,6_0,6_0_0 -1696,2,60.0,4,0.0,99,111,1,85,78,7.0,0.0,0.0,818.5841665082144,0.0,3128.2385774586396,20969.0,70,31,2,12342,201101696,1200.0,1200.0,,290.0,1.0,2.0,4.0,1.0,3.0,2.0,3096.5512650952933,0.0,600.0,1800.0,0.0,49278.0,6,5,3,90.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3946.822743966854,0.18822179140478107,0.08009299776709392,24639.0,7,4,7,7_0,7_3,7_0_0 -1697,2,69.0,2,0.0,4,111,1,0,77,5.0,0.0,0.0,2769.5430966861254,0.0,0.0,16237.0,0,50,2,12343,201101697,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2883.939267910039,0.0,2030.0,0.0,0.0,16798.0,0,5,1,74.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2769.5430966861254,0.17056987723631986,0.16487338353888115,16798.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -1698,1,53.0,4,352.0,3,111,1,0,78,3.0,0.0,0.0,1364.3069441803573,0.0,312.82385774586396,7172.0,0,71,2,12344,201101698,0.0,,,,2.0,5.0,4.0,2.0,3.0,2.0,3661.0950290364367,0.0,1000.0,180.0,0.0,27614.0,0,7,3,67.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1677.1308019262212,0.2338442278201647,0.06073480125755853,13807.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -1699,2,39.0,2,0.0,9,111,1,43,43,7.0,0.0,0.0,532.0797082303393,0.0,0.0,42286.0,41,10,2,12348,201101699,,,,692.0,2.0,0.0,4.0,2.0,4.0,2.1,2342.4554783514313,0.0,390.0,0.0,0.0,46607.0,1,1,3,90.0,9,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,532.0797082303393,0.012582881053548203,0.011416304594381515,22193.809523809523,7,4,7,7_0,7_3,7_0_0 -1700,2,62.0,3,0.0,3,111,2,0,74,9.0,0.0,0.0,320.61213188238395,0.0,952.3748558040746,19761.0,0,33,2,12349,201101700,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3442.988003259218,0.0,235.0,548.0,0.0,31579.0,0,5,2,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1272.9869876864586,0.06441915832632249,0.04031118742475882,31579.0,9,5,9,9_0,9_3,9_0_1 -1701,2,58.0,3,0.0,2,112,2,77,21,4.0,0.0,0.0,589.3805998859143,0.0,2097.6577572180986,27256.0,42,71,1,12350,201101701,,,,,1.0,2.0,5.0,0.0,2.0,1.5,3744.6848616365883,0.0,432.0,1207.0,0.0,25082.0,6,1,1,120.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2687.038357104013,0.09858520535309703,0.10713014740068627,16721.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1 -1702,2,47.0,2,0.0,4,400,2,13,43,8.0,1269.1648073111057,0.0,631.6741151555054,246.78326555507044,0.0,63036.0,42,10,1,12351,201101702,,,,,2.0,0.0,6.0,2.0,4.0,2.3,3665.45980660829,0.0,463.0,0.0,0.0,60132.0,1,1,1,207.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2147.6221880216817,0.03406977263820169,0.035715129848029034,26144.34782608696,8,4,8,8_1,8_0,8_0_1 -1703,2,59.0,3,0.0,3,111,2,54,55,7.0,0.0,0.0,1279.1848543837068,0.0,2644.043178450081,38705.0,33,50,2,12352,201101703,,,,,2.0,2.0,5.0,0.0,2.0,1.5,3614.4778959848163,2459.0,0.0,0.0,0.0,35956.0,1,1,1,85.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3923.228032833788,0.10136230546011595,0.1091119154754085,23970.666666666668,7,4,7,7_0,7_4,7_0_1 -1704,1,49.0,4,90.0,6,112,6,0,53,4.0,0.0,0.0,613.9381248811608,130.34327406077665,0.0,4260.0,0,71,7,12353,201101704,,,130.0,,1.0,0.0,1.0,0.0,1.0,1.0,6166.132948899003,0.0,450.0,0.0,0.0,15170.0,0,4,2,20.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,744.2813989419374,0.17471394341360033,0.049062715816871286,15170.0,4,2,4_1,4_1_1,4_0_1,4_0_0 -1705,2,75.0,3,0.0,1,111,5,0,78,6.0,0.0,0.0,214.19619023631608,0.0,0.0,9056.0,0,50,1,12354,201101705,,,35.0,,0.0,2.0,3.0,0.0,1.0,1.0,3244.0445111838962,0.0,157.0,0.0,0.0,21254.0,0,5,1,27.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,214.19619023631608,0.023652406165670947,0.010077923696072084,21254.0,6,3,6,6_1,6_3,6_1_0 -1706,1,26.0,3,180.0,5,221,2,85,67,2.0,951.8736054833294,0.0,409.2920832541072,0.0,0.0,24402.0,60,43,2,12355,201101706,,,,,1.0,0.0,4.0,1.0,3.0,1.8,1895.3160621990435,0.0,300.0,0.0,0.0,20750.0,6,4,3,64.0,1,2.0,4,9,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1361.1656887374365,0.05578090684113747,0.06559834644517766,11527.777777777777,2,1,2_1,2_0_1,2_1_1,2_0_0 -1707,2,36.0,2,0.0,9,112,2,62,38,8.0,0.0,693.9631597817199,1915.4869496292215,0.0,0.0,69208.0,50,12,1,12356,201101707,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1812.0458466628443,0.0,1404.0,0.0,0.0,55956.0,1,1,2,140.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2609.4501094109414,0.03770445771313925,0.046633964354330926,26645.714285714286,8,4,8,8_1,8_0,8_0_0 -1708,2,27.0,1,0.0,1,111,2,0,38,10.0,0.0,0.0,341.0767360450893,0.0,764.6805411565563,26392.0,0,12,8,12359,201101708,,,,840.0,1.0,0.0,2.0,0.0,1.0,1.0,3904.3835366921753,0.0,250.0,440.0,0.0,41621.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1105.7572772016456,0.04189744154295414,0.02656729240531572,41621.0,10,5,10,10_0,10_4,10_1_0 -1709,2,45.0,3,0.0,7,111,1,67,56,7.0,0.0,0.0,477.50743046312505,0.0,0.0,28027.0,10,60,2,12360,201101709,,,400.0,547.0,2.0,0.0,2.0,1.0,3.0,1.8,4947.227979388958,0.0,350.0,0.0,0.0,42033.0,1,1,3,45.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,477.50743046312505,0.017037407873233847,0.011360298585947353,23351.666666666668,7,4,7,7_0,7_4,7_0_0 -1710,1,22.0,3,170.0,1,111,4,0,84,2.0,0.0,0.0,818.5841665082144,0.0,0.0,17442.0,0,10,2,12361,201101710,,,,318.0,0.0,0.0,1.0,0.0,1.0,1.0,4197.027266984197,0.0,600.0,0.0,0.0,11645.0,0,3,3,24.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,818.5841665082144,0.04693178342553689,0.07029490480963627,11645.0,2,1,2_1,2_0_1,2_3_1,2_1_0 -1711,2,62.0,3,0.0,4,111,1,0,75,9.0,0.0,0.0,545.7227776721429,0.0,835.9348643097809,42540.0,0,31,1,12362,201101711,,,237.0,,0.0,3.0,3.0,0.0,1.0,1.0,2317.4559520773464,0.0,400.0,481.0,0.0,30050.0,0,5,2,80.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1381.657641981924,0.03247902308373117,0.04597862369324206,30050.0,9,5,9,9_1,9_3,9_0_1 -1712,2,83.0,3,0.0,99,111,6,86,75,6.0,0.0,0.0,409.2920832541072,0.0,695.1641283241421,13583.0,71,71,1,12363,201101712,,,,,0.0,0.0,2.0,0.0,2.0,1.5,3544.0813318779947,0.0,300.0,400.0,0.0,31158.0,5,5,1,45.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1104.4562115782492,0.08131165512613187,0.035446954604860685,20772.0,6,3,6,6_1,6_4,6_0_0 -1713,0,76.0,4,0.0,1,111,2,0,86,2.0,0.0,0.0,603.4381582289956,0.0,1247.291617324967,19679.0,0,71,1,12364,201101713,,,,,1.0,4.0,4.0,1.0,2.0,1.5,2901.9437844628874,1160.0,0.0,0.0,0.0,15564.0,0,5,5,90.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1850.7297755539626,0.0940459258882038,0.11891093392148307,10376.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -1714,2,74.0,3,0.0,3,212,2,78,72,4.0,0.0,277.585263912688,433.17278756936736,93.84715732375918,235.48005533979983,55015.0,70,31,1,12365,201101714,,,205.0,,0.0,3.0,6.0,1.0,3.0,2.0,2341.1650931782474,219.0,234.0,0.0,0.0,32905.0,5,5,1,120.0,2,0.0,4,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1040.0852641456145,0.0189054851248862,0.03160873010623354,16452.5,4,2,4_0,4_1_0,4_0_0,4_0_1 -1715,2,28.0,4,0.0,9,111,2,55,54,9.0,0.0,0.0,1432.5222913893751,0.0,0.0,58467.0,60,31,2,12366,201101715,,,,609.0,2.0,0.0,2.0,0.0,2.0,1.5,4400.661082757866,0.0,1050.0,0.0,0.0,44757.0,1,1,3,36.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1432.5222913893751,0.024501381828884245,0.032006664686850664,29838.0,9,5,9,9_0,9_4,9_0_0 -1716,1,55.0,4,210.0,2,111,4,0,85,1.0,0.0,0.0,1637.1683330164287,500.5181723933823,0.0,5826.0,0,71,1,12367,201101716,,,,105.0,0.0,4.0,2.0,0.0,1.0,1.0,4752.757740881012,0.0,1200.0,0.0,0.0,6740.0,0,6,3,40.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2137.686505409811,0.3669218169258172,0.3171641699421085,6740.0,1,1,1_1,1_1_1,1_3_1,1_0_1 -1717,1,36.0,4,232.0,1,112,4,46,69,5.0,0.0,0.0,3061.5047827407216,52.13730962431066,0.0,46897.0,43,71,1,12368,201101717,,,,,2.0,0.0,6.0,3.0,5.0,2.4,4169.1764255788385,0.0,2244.0,0.0,0.0,45319.0,1,1,2,180.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3113.642092365032,0.06639320409333288,0.06870500435501736,18882.916666666668,5,3,5,5_1,5_0,5_1_0 -1718,1,36.0,4,176.0,1,400,6,45,48,5.0,793.228004569441,0.0,1380.6786275105214,83.41969539889705,0.0,32736.0,41,60,1,12371,201101718,,,,,2.0,0.0,7.0,3.0,5.0,2.4,2468.455347554581,0.0,1012.0,0.0,0.0,42298.0,2,2,2,150.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2257.3263274788596,0.06895547188046369,0.05336721186530946,17624.166666666668,5,3,5,5_1,5_0,5_1_0 -1719,2,80.0,2,0.0,4,111,2,0,77,7.0,0.0,0.0,1364.3069441803573,0.0,4170.984769944853,22386.0,0,70,2,12372,201101719,,,,460.0,0.0,3.0,5.0,0.0,1.0,1.0,3457.4252460464027,0.0,1000.0,2400.0,0.0,22410.0,0,5,3,90.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,5535.29171412521,0.24726577834920085,0.24700096894802365,22410.0,7,4,7,7_0,7_3,7_0_1 -1720,2,51.0,1,0.0,8,112,2,64,37,10.0,0.0,277.585263912688,953.6505539820697,0.0,2794.559795863051,67690.0,71,50,1,12374,201101720,,,525.0,,3.0,2.0,7.0,1.0,3.0,2.0,2240.530910260935,0.0,699.0,1608.0,0.0,81625.0,1,1,2,160.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4025.7956137578085,0.059474008180791973,0.04932062007666534,40812.5,10,5,10,10_1,10_0,10_0_0 -1721,2,73.0,1,0.0,2,111,1,74,74,10.0,0.0,0.0,955.3598185370531,0.0,911.963497227286,70067.0,31,10,2,12375,201101721,,,,3698.0,0.0,0.0,3.0,0.0,2.0,1.5,8038.0837615574255,735.0,420.0,70.0,0.0,155514.0,5,5,3,89.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1867.323315764339,0.02665053899502389,0.012007429014521773,103676.0,10,5,10,10_0,10_4,10_0_1 -1722,2,65.0,1,0.0,3,111,2,86,74,10.0,3902.6817824816503,0.0,979.5723859214966,156.41192887293198,0.0,62310.0,41,12,1,12376,201101722,,,816.0,,0.0,2.0,6.0,0.0,2.0,1.5,2021.1528632207783,0.0,718.0,0.0,0.0,63373.0,6,5,1,155.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,5038.666097276078,0.08086448559261881,0.07950808857519888,42248.666666666664,10,5,10,10_1,10_4,10_0_1 -1723,2,61.0,2,0.0,4,111,1,0,74,7.0,0.0,0.0,545.7227776721429,0.0,0.0,26600.0,0,50,2,12377,201101723,,,100.0,750.0,0.0,0.0,2.0,0.0,1.0,1.0,3335.5098421386087,0.0,400.0,0.0,0.0,24698.0,0,5,3,65.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,545.7227776721429,0.02051589389744898,0.022095828717796702,24698.0,7,4,7,7_0,7_2,7_0_1 -1724,2,29.0,2,0.0,2,111,4,63,47,5.0,0.0,0.0,1296.0915969713394,0.0,0.0,26827.0,60,43,2,12379,201101724,,,,613.0,2.0,0.0,3.0,1.0,3.0,1.8,3023.183823553102,0.0,950.0,0.0,0.0,30143.0,1,1,3,50.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1296.0915969713394,0.04831295325497966,0.042998095643145655,16746.11111111111,4,2,4_0,4_0_0,4_4_0,4_0_1 -1725,2,41.0,2,0.0,1,111,4,38,34,10.0,0.0,0.0,2262.0209134510324,0.0,0.0,67561.0,12,12,2,12380,201101725,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2704.347300241756,0.0,1658.0,0.0,0.0,125640.0,1,1,2,150.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2262.0209134510324,0.03348116388820521,0.018003986894707356,59828.57142857143,10,5,10,10_0,10_3,10_1_0 -1726,2,68.0,3,0.0,4,111,2,75,75,9.0,2221.038412794435,0.0,507.5221832350929,90.37133668213848,0.0,41019.0,20,12,1,12381,201101726,,,240.0,,0.0,3.0,4.0,0.0,2.0,1.5,947.3995351125984,0.0,372.0,0.0,0.0,48123.0,5,5,1,140.0,7,5.0,3,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2818.9319327116664,0.0687225903291564,0.05857764338698058,32082.0,9,5,9,9_1,9_2,9_0_1 -1727,2,38.0,2,0.0,5,111,2,34,53,10.0,0.0,0.0,3763.6663773058785,0.0,2675.225468883206,97415.0,12,12,1,12382,201101727,,,560.0,,2.0,0.0,5.0,4.0,6.0,2.7,1278.2330879942863,2488.0,1810.0,0.0,0.0,102795.0,1,1,2,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,6438.891846189084,0.0660975398674648,0.06263818129470387,38072.22222222222,10,5,10,10_1,10_4,10_0_0 -1728,2,51.0,2,0.0,1,111,2,0,67,6.0,0.0,0.0,582.6299458762716,0.0,1204.2815615551408,27481.0,0,50,2,12383,201101728,,,,,1.0,1.0,3.0,1.0,2.0,1.3,2867.540092177022,1120.0,0.0,0.0,0.0,25566.0,0,1,3,100.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1786.9115074314122,0.06502352561520368,0.06989405880589111,19666.153846153844,6,3,6,6_0,6_2,6_1_0 -1729,2,50.0,2,0.0,7,111,2,52,62,7.0,0.0,0.0,559.3658471139465,0.0,4588.083246939338,21156.0,50,71,1,12384,201101729,,,470.0,,2.0,0.0,5.0,1.0,3.0,2.0,1501.6731969748964,0.0,410.0,2640.0,0.0,48498.0,1,1,1,160.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5147.449094053285,0.24330918387470624,0.10613734780925574,24249.0,7,4,7,7_1,7_2,7_0_0 -1730,2,49.0,3,0.0,1,400,5,46,85,1.0,0.0,1804.304215432472,682.1534720901786,347.58206416207105,0.0,19869.0,41,41,1,12389,201101730,,,,,1.0,0.0,3.0,3.0,5.0,2.6,1687.1877214544577,0.0,500.0,0.0,0.0,20480.0,4,7,1,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2834.0397516847215,0.1426362550548453,0.13838084725023053,7876.923076923076,1,1,1_0,1_1_0,1_0_0,1_1_0 -1731,2,87.0,4,0.0,5,211,2,0,86,2.0,0.0,0.0,341.0767360450893,0.0,1303.4327406077664,8587.0,0,70,1,1239,201101731,,,95.0,,0.0,0.0,4.0,0.0,1.0,1.0,4395.7477249300855,0.0,250.0,750.0,0.0,12170.0,0,6,1,90.0,3,3.0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1644.5094766528557,0.1915115263366549,0.13512814105610976,12170.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -1732,2,63.0,2,0.0,1,111,5,75,75,9.0,0.0,0.0,545.7227776721429,0.0,0.0,28897.0,31,30,1,12390,201101732,,,150.0,,0.0,2.0,4.0,0.0,2.0,1.5,5504.285451412295,0.0,400.0,0.0,0.0,47929.0,5,5,1,100.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,545.7227776721429,0.01888510148707973,0.011386066424756263,31952.666666666668,9,5,9,9_1,9_2,9_1_0 -1733,2,43.0,2,0.0,9,112,4,56,53,6.0,0.0,0.0,2182.8911106885716,0.0,0.0,56632.0,41,41,1,12391,201101733,,,340.0,,2.0,0.0,6.0,3.0,5.0,2.6,3041.394732758605,0.0,1600.0,0.0,0.0,55623.0,1,1,2,140.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2182.8911106885716,0.038545188421538555,0.039244397294079275,21393.46153846154,6,3,6,6_1,6_0,6_0_0 -1734,1,38.0,2,156.0,8,120,2,0,56,1.0,0.0,166.55115834761278,422.93515269591074,0.0,86.89551604051776,15832.0,0,71,1,12392,201101734,,,155.0,,1.0,0.0,3.0,1.0,2.0,1.5,5149.690644001595,0.0,310.0,50.0,0.0,13225.0,0,1,2,75.0,0,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,676.3818270840413,0.042722449916879825,0.05114418352242279,8816.666666666666,1,1,1_1,1_1_1,1_1_1,1_0_0 -1735,2,71.0,2,0.0,5,300,2,43,75,7.0,0.0,555.170527825376,573.00891655575,629.1235361333486,0.0,37297.0,60,42,1,12394,201101735,,,280.0,,1.0,3.0,4.0,0.0,2.0,1.5,2064.0627820448262,0.0,420.0,0.0,0.0,36444.0,1,5,1,90.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1757.3029805144745,0.04711646997116321,0.04821926738323111,24296.0,7,4,7,7_1,7_0,7_0_0 -1736,2,77.0,2,0.0,4,112,2,72,72,4.0,5552.596031986088,0.0,503.42926240255184,0.0,165.10148047698374,25069.0,70,50,1,12399,201101736,,,350.0,,0.0,1.0,5.0,0.0,2.0,1.5,2589.505740428035,0.0,369.0,95.0,0.0,23210.0,5,5,1,100.0,10,4.0,3,1,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,6221.126774865624,0.24816014898343067,0.2680364831911083,15473.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_1 -1737,2,33.0,2,0.0,5,111,2,42,47,6.0,0.0,0.0,541.6298568396019,0.0,1619.732418995251,52776.0,20,31,1,124,201101737,,,278.0,,2.0,0.0,5.0,2.0,4.0,2.1,4015.105203806269,0.0,397.0,932.0,0.0,44380.0,1,1,2,100.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2161.362275834853,0.04095350681815319,0.04870126804494937,21133.333333333332,6,3,6,6_1,6_2,6_0_0 -1738,2,52.0,3,0.0,6,221,2,78,55,6.0,1586.456009138882,0.0,538.9012429512411,52.13730962431066,0.0,18587.0,60,70,1,1240,201101738,,,209.0,,1.0,2.0,4.0,0.0,2.0,1.5,4755.066878902941,0.0,395.0,0.0,0.0,31543.0,5,1,1,93.0,1,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2177.494561714434,0.11715148015895163,0.06903257653724865,21028.666666666668,6,3,6,6_1,6_1,6_0_0 -1739,1,34.0,3,90.0,8,111,1,85,38,7.0,0.0,0.0,0.0,0.0,0.0,36808.0,30,10,8,12402,201101739,,,,590.0,1.0,0.0,3.0,1.0,3.0,1.8,3396.1160285619712,0.0,0.0,0.0,0.0,42420.0,6,1,3,72.0,9,7.0,4,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,23566.666666666668,7,4,7,7_0,7_3,7_0_0 -1740,2,53.0,2,0.0,2,111,4,0,52,4.0,0.0,0.0,1500.737638598393,0.0,0.0,16280.0,0,60,2,12403,201101740,,,600.0,,1.0,3.0,4.0,0.0,1.0,1.0,2832.715916852222,0.0,1100.0,0.0,0.0,15440.0,0,1,3,90.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1500.737638598393,0.09218290163380792,0.09719803358797882,15440.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -1741,2,65.0,2,0.0,1,112,5,0,78,10.0,0.0,55.5170527825376,163.71683330164288,97.32297796537989,0.0,21353.0,0,50,1,12405,201101741,,,,,0.0,0.0,3.0,0.0,1.0,1.0,1729.5555842279582,0.0,120.0,0.0,0.0,39472.0,0,5,1,70.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,316.5568640495604,0.014824936264204579,0.008019782733318818,39472.0,10,5,10,10_1,10_0,10_1_0 -1742,2,58.0,1,0.0,8,111,6,74,38,10.0,0.0,0.0,115.96609025533037,0.0,0.0,49211.0,12,12,2,12406,201101742,,,,,1.0,3.0,6.0,0.0,2.0,1.5,2608.4895885746505,0.0,85.0,0.0,0.0,102918.0,6,1,2,125.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,115.96609025533037,0.002356507493351697,0.0011267814206973549,68612.0,10,5,10,10_0,10_4,10_0_0 -1743,2,33.0,3,0.0,8,112,2,0,45,6.0,2062.392811880547,832.755791738064,1281.0842205853555,69.5164128324142,0.0,28528.0,0,10,1,12407,201101743,,,203.0,,1.0,0.0,4.0,1.0,2.0,1.3,2096.8610796144444,0.0,939.0,0.0,0.0,26158.0,0,1,2,160.0,7,0.0,2,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4245.749237036381,0.14882744100660336,0.16231169191208733,20121.53846153846,6,3,6,6_1,6_0,6_0_0 -1744,1,80.0,4,84.0,2,111,1,0,78,3.0,0.0,0.0,61.393812488116076,0.0,0.0,7125.0,0,71,2,12408,201101744,,,,284.0,0.0,7.0,1.0,0.0,1.0,1.0,3649.076501202223,0.0,45.0,0.0,0.0,14608.0,0,5,3,30.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,61.393812488116076,0.008616675436928572,0.004202752771639929,14608.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -1745,2,61.0,4,0.0,6,211,2,85,75,4.0,1269.1648073111057,555.170527825376,1391.5930830639643,0.0,0.0,21275.0,70,50,1,12409,201101745,,,400.0,,0.0,1.0,5.0,0.0,2.0,1.5,3408.4173835563406,0.0,1020.0,0.0,0.0,23798.0,6,5,1,115.0,2,3.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3215.928418200446,0.15115997265336995,0.13513439861334758,15865.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_0 -1746,2,52.0,2,0.0,4,112,2,54,21,9.0,0.0,0.0,0.0,0.0,0.0,59544.0,41,50,1,1241,201101746,,,1000.0,,3.0,0.0,7.0,1.0,3.0,2.0,2746.3563935226516,0.0,0.0,0.0,0.0,62907.0,1,1,1,257.0,10,1.0,4,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,31453.5,9,5,9,9_1,9_1,9_0_1 -1747,1,26.0,3,80.0,5,111,2,0,47,7.0,0.0,0.0,532.0797082303393,0.0,0.0,16864.0,0,31,2,12411,201101747,,,,99.0,1.0,0.0,2.0,0.0,1.0,1.0,2838.7715202726245,0.0,390.0,0.0,0.0,22139.0,0,1,3,38.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,532.0797082303393,0.03155121609525257,0.02403359267493289,22139.0,7,4,7,7_0,7_2,7_0_0 -1748,1,61.0,5,193.0,99,112,1,0,78,1.0,0.0,0.0,491.1504999049286,0.0,0.0,9182.0,0,70,2,12412,201101748,,,,178.0,0.0,0.0,1.0,0.0,1.0,1.0,5619.336104850632,0.0,360.0,0.0,0.0,5716.0,0,5,3,35.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,491.1504999049286,0.053490579384113335,0.08592555981541788,5716.0,1,1,1_1,1_0_1,1_1_1,1_0_0 -1749,2,47.0,4,0.0,1,300,5,34,43,7.0,0.0,1623.8737938892248,631.6741151555054,0.0,0.0,37560.0,20,33,1,12413,201101749,,,,,2.0,1.0,6.0,1.0,3.0,2.0,1541.4414156632092,0.0,463.0,0.0,0.0,47277.0,1,1,2,115.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2255.54790904473,0.06005186126317173,0.04770920128275335,23638.5,7,4,7,7_1,7_0,7_1_0 -1750,2,38.0,2,0.0,3,112,2,46,54,8.0,0.0,0.0,64.1224263764768,0.0,159.8877495145527,39371.0,43,71,1,12414,201101750,,,355.0,,2.0,0.0,4.0,1.0,3.0,1.8,2297.7563411732535,0.0,47.0,92.0,0.0,46760.0,1,1,2,100.0,10,1.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,224.0101758910295,0.0056897253280594725,0.004790636781245285,25977.777777777777,8,4,8,8_1,8_1,8_0_1 -1751,2,42.0,2,0.0,1,120,2,48,38,10.0,0.0,277.585263912688,504.79356934673217,0.0,2433.074449134497,45245.0,42,12,1,12415,201101751,,,247.0,,2.0,0.0,6.0,0.0,2.0,1.5,1510.7313085039525,0.0,370.0,1400.0,0.0,75722.0,1,1,2,120.0,0,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3215.453282393917,0.07106759382017719,0.0424639243864916,50481.333333333336,10,5,10,10_1,10_0,10_1_0 -1752,2,80.0,3,0.0,1,111,2,0,72,10.0,0.0,0.0,776.2906512386232,0.0,4442.098779991268,28407.0,0,41,1,12416,201101752,,,450.0,,0.0,2.0,6.0,0.0,1.0,1.0,2785.6669964082944,0.0,569.0,2556.0,0.0,60827.0,0,5,1,150.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5218.389431229892,0.1837008283602595,0.08579067570700333,60827.0,10,5,10,10_1,10_3,10_1_0 -1753,2,53.0,2,0.0,8,112,2,52,47,8.0,0.0,138.792631956344,676.6962443134572,0.0,1258.2470722666972,66455.0,71,42,1,12417,201101753,,,,,2.0,1.0,4.0,1.0,3.0,2.0,2032.3648995389965,0.0,496.0,724.0,0.0,57537.0,1,1,2,110.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2073.7359485364987,0.03120511546966366,0.0360417809155239,28768.5,8,4,8,8_1,8_2,8_0_0 -1754,2,89.0,3,0.0,3,120,2,0,71,2.0,0.0,0.0,682.1534720901786,0.0,2085.4923849724264,13154.0,0,70,1,12418,201101754,,,210.0,,0.0,2.0,3.0,0.0,1.0,1.0,4193.219329473043,0.0,500.0,1200.0,0.0,11354.0,0,5,1,90.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2767.645857062605,0.21040336453265965,0.24375954351440945,11354.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -1755,1,44.0,4,251.0,4,111,1,0,85,1.0,0.0,0.0,234.09238896814483,0.0,483.86312741054763,15178.0,0,50,2,12419,201101755,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2671.637781789095,450.0,0.0,0.0,0.0,8455.0,0,4,3,32.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,717.9555163786924,0.047302379521589964,0.08491490436176137,8455.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -1756,2,54.0,2,0.0,1,211,4,0,42,5.0,0.0,0.0,750.3688192991965,0.0,74.73014379484528,18053.0,0,10,2,1242,201101756,,,188.0,,1.0,2.0,3.0,0.0,1.0,1.0,2060.8437390186846,0.0,550.0,43.0,0.0,18498.0,0,1,1,63.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,825.0989630940418,0.045704257635519954,0.044604766087903654,18498.0,5,3,5,5_0,5_2,5_1_0 -1757,1,59.0,4,112.0,6,112,4,78,78,1.0,0.0,0.0,920.9071873217412,145.98446694806984,0.0,13653.0,71,50,1,12421,201101757,,,210.0,,0.0,5.0,3.0,0.0,2.0,1.5,3838.336224857866,0.0,675.0,0.0,0.0,11397.0,7,7,3,50.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1066.891654269811,0.07814338638173375,0.09361162185398007,7598.0,1,1,1_1,1_1_1,1_0_1,1_0_0 -1758,2,62.0,2,0.0,1,111,1,34,34,10.0,0.0,0.0,738.6305137421797,0.0,814.3914841716531,51119.0,10,10,2,12422,201101758,,,,,3.0,1.0,5.0,1.0,3.0,2.0,1847.155359464273,321.0,419.0,270.0,0.0,126881.0,1,1,2,105.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1553.0219979138328,0.030380523834852655,0.012239988634341097,63440.5,10,5,10,10_0,10_4,10_1_0 -1759,2,66.0,3,0.0,3,111,2,0,77,1.0,0.0,0.0,2046.460416270536,0.0,0.0,13030.0,0,71,1,12423,201101759,,,240.0,,0.0,0.0,7.0,0.0,1.0,1.0,2626.9949302060377,0.0,1500.0,0.0,0.0,8502.0,0,5,1,150.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2046.460416270536,0.1570575914252138,0.24070341287585698,8502.0,1,1,1_0,1_1_0,1_4_0,1_0_1 -1760,2,87.0,3,0.0,1,112,2,0,71,4.0,0.0,0.0,518.4366387885358,1105.310964035386,0.0,7150.0,0,71,1,12424,201101760,,,150.0,,0.0,1.0,4.0,0.0,1.0,1.0,3426.739920483971,0.0,380.0,0.0,0.0,16131.0,0,5,1,110.0,4,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1623.7476028239216,0.2270975668285205,0.10066007084643988,16131.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -1761,2,36.0,3,0.0,1,300,4,85,35,3.0,0.0,0.0,1637.1683330164287,0.0,0.0,31956.0,10,10,1,12426,201101761,,,,,1.0,0.0,5.0,1.0,3.0,1.8,1472.4995224523548,0.0,1200.0,0.0,0.0,23300.0,6,1,1,100.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1637.1683330164287,0.05123195434398638,0.0702647353225935,12944.444444444443,3,2,3_0,3_1_0,3_0_0,3_1_0 -1762,2,69.0,3,0.0,1,400,2,71,11,5.0,0.0,0.0,1881.3792760247127,218.97670042210476,0.0,31741.0,50,70,1,12428,201101762,,,217.0,,1.0,3.0,4.0,0.0,2.0,1.5,1821.190530974484,0.0,1379.0,0.0,0.0,27009.0,5,5,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2100.3559764468173,0.06617170147275818,0.07776504041048603,18006.0,5,3,5,5_1,5_0,5_1_0 -1763,2,49.0,2,0.0,1,112,6,65,43,7.0,1110.5192063972174,249.82673752141918,2199.262794018736,312.82385774586396,0.0,36381.0,50,20,1,1243,201101763,,,,,2.0,0.0,7.0,2.0,4.0,2.1,1426.4460817323245,0.0,1612.0,0.0,0.0,45352.0,1,1,2,320.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3872.4325956832363,0.10644107076999633,0.08538614825549559,21596.190476190477,6,3,6,6_1,6_0,6_1_0 -1764,2,54.0,2,0.0,6,112,4,48,43,9.0,0.0,0.0,2114.6757634795536,0.0,0.0,26731.0,60,33,1,12431,201101764,,,,,2.0,2.0,6.0,0.0,2.0,1.5,3273.2880863751393,0.0,1550.0,0.0,0.0,54520.0,4,1,1,150.0,8,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2114.6757634795536,0.07910948948709565,0.038787156336748965,36346.666666666664,9,5,9,9_1,9_0,9_0_0 -1765,2,73.0,2,0.0,7,111,4,74,74,10.0,0.0,0.0,2499.244390203823,0.0,512.8949150551805,57442.0,20,10,2,12432,201101765,,,,,0.0,1.0,4.0,0.0,2.0,1.5,3059.966018625788,477.0,1650.0,0.0,0.0,92060.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3012.139305259004,0.05243792530307099,0.03271930594459053,61373.333333333336,10,5,10,10_0,10_4,10_0_0 -1766,0,28.0,2,0.0,7,112,2,52,47,8.0,0.0,0.0,884.0708998288715,52.13730962431066,0.0,23917.0,42,41,2,12437,201101766,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3749.5398145280756,0.0,648.0,0.0,0.0,40085.0,1,1,5,75.0,8,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,936.2082094531821,0.039144048561825566,0.023355574640219087,26723.333333333332,8,4,8,8_0,8_0,8_0_0 -1767,2,38.0,3,0.0,4,111,2,0,64,6.0,0.0,0.0,156.89529858074107,0.0,1616.2565983536304,13901.0,0,50,2,12438,201101767,,,,,1.0,0.0,2.0,0.0,1.0,1.0,1967.0445695256337,0.0,115.0,930.0,0.0,19777.0,0,1,2,44.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1773.1518969343715,0.12755570800189708,0.08965727344563744,19777.0,6,3,6,6_0,6_2,6_0_1 -1768,2,76.0,2,0.0,1,400,2,0,71,10.0,1586.456009138882,0.0,0.0,0.0,0.0,24147.0,0,70,1,12439,201101768,,,,,0.0,4.0,5.0,0.0,1.0,1.0,2481.674321810198,0.0,0.0,0.0,0.0,63565.0,0,5,5,130.0,0,0.0,1,8,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1586.456009138882,0.06569992169374589,0.024958011628079636,63565.0,10,5,10,10_1,10_0,10_1_0 -1769,2,40.0,1,0.0,1,111,2,38,37,10.0,0.0,0.0,409.2920832541072,0.0,2606.865481215533,76514.0,10,10,1,1244,201101769,,,430.0,,2.0,0.0,5.0,3.0,5.0,2.4,1416.2777938877787,0.0,300.0,1500.0,0.0,220188.0,1,1,2,106.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3016.15756446964,0.03941968220808793,0.013698101460886333,91745.0,10,5,10,10_1,10_4,10_1_0 -1770,2,26.0,2,0.0,9,111,4,0,38,7.0,0.0,0.0,777.6549581828036,0.0,0.0,16176.0,0,12,2,12440,201101770,,,,470.0,1.0,0.0,2.0,0.0,1.0,1.0,3606.922932974069,0.0,570.0,0.0,0.0,23976.0,0,1,3,45.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,777.6549581828036,0.0480746141309844,0.03243472464893242,23976.0,7,4,7,7_0,7_3,7_0_0 -1771,2,63.0,3,0.0,1,300,2,72,72,2.0,2062.392811880547,0.0,800.8481762338697,152.93610823131127,0.0,25927.0,70,71,1,12442,201101771,,,300.0,,0.0,4.0,6.0,0.0,2.0,1.5,2389.5287643549964,0.0,587.0,0.0,0.0,17990.0,5,5,1,150.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3016.177096345728,0.11633343990225356,0.16765853787358131,11993.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -1772,2,67.0,2,0.0,6,112,2,75,74,10.0,0.0,0.0,1091.4455553442858,0.0,0.0,34467.0,41,12,1,12443,201101772,,,160.0,,0.0,3.0,5.0,0.0,2.0,1.5,1357.3395880120656,0.0,800.0,0.0,0.0,59360.0,5,5,1,160.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1091.4455553442858,0.03166639264642371,0.018386886040166542,39573.333333333336,10,5,10,10_1,10_1,10_0_0 -1773,2,37.0,2,0.0,2,111,6,85,37,5.0,1316.7584875852722,0.0,1413.4219941708502,0.0,0.0,106077.0,43,31,1,12444,201101773,,,346.0,,1.0,0.0,9.0,4.0,6.0,2.7,2681.173347849413,0.0,1036.0,0.0,0.0,50321.0,6,1,2,300.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2730.1804817561224,0.025737723368459916,0.05425529066902729,18637.407407407405,5,3,5,5_1,5_3,5_0_1 -1774,2,49.0,3,0.0,2,221,2,56,63,4.0,1269.1648073111057,0.0,545.7227776721429,145.98446694806984,0.0,33403.0,50,41,1,12445,201101774,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1365.2257354313272,0.0,400.0,0.0,0.0,22745.0,4,1,2,72.0,1,2.0,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1960.8720519313185,0.05870347130291646,0.08621112560700456,15163.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_1 -1775,2,50.0,2,0.0,2,111,2,68,45,9.0,0.0,0.0,852.6918401127233,0.0,1598.8774951455268,55275.0,50,41,1,12446,201101775,,,400.0,,2.0,1.0,4.0,0.0,2.0,1.5,1006.4421993040838,0.0,625.0,920.0,0.0,45782.0,1,1,1,140.0,5,4.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2451.5693352582502,0.044352226779886934,0.05354876010786445,30521.333333333332,9,5,9,9_1,9_2,9_0_1 -1776,2,54.0,2,0.0,5,111,4,45,48,9.0,0.0,208.188947934516,2319.3218051066074,86.89551604051776,0.0,81009.0,60,50,1,1245,201101776,,,200.0,,2.0,2.0,7.0,1.0,3.0,2.0,1662.0307045834043,0.0,1700.0,0.0,0.0,59257.0,1,1,1,150.0,5,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2614.406269081641,0.032273034713200276,0.044119787857664766,29628.5,9,5,9,9_1,9_2,9_0_0 -1777,2,71.0,2,0.0,1,112,4,78,71,4.0,0.0,0.0,1221.606377334548,208.54923849724264,1115.0356958327507,31555.0,50,50,1,12450,201101777,,,500.0,,0.0,2.0,4.0,0.0,2.0,1.5,1204.4632347409256,1037.0,500.0,0.0,0.0,24331.0,5,5,1,120.0,4,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2545.191311664541,0.08065889119520016,0.10460693402098314,16220.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -1778,2,25.0,3,0.0,9,111,4,0,34,10.0,0.0,0.0,218.28911106885715,43.44775802025888,0.0,15791.0,0,10,2,12451,201101778,,,,448.0,1.0,0.0,1.0,0.0,1.0,1.0,3485.69984462431,0.0,160.0,0.0,0.0,43427.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,261.73686908911606,0.01657506611925249,0.006027053885580769,43427.0,10,5,10,10_0,10_4,10_0_0 -1779,2,65.0,3,0.0,5,111,2,0,75,9.0,0.0,0.0,409.2920832541072,0.0,1604.091226107958,41896.0,0,10,2,12452,201101779,,,,644.0,0.0,1.0,3.0,0.0,1.0,1.0,1213.347476947835,0.0,300.0,923.0,0.0,29369.0,0,5,3,75.0,7,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2013.3833093620651,0.04805669537335462,0.06855471106820338,29369.0,9,5,9,9_0,9_2,9_0_0 -1780,2,73.0,2,0.0,4,111,2,77,78,5.0,0.0,0.0,480.23604435148576,0.0,1856.0882226254594,17016.0,60,50,1,12455,201101780,,,258.0,,0.0,2.0,4.0,0.0,2.0,1.5,1262.1497897127012,0.0,352.0,1068.0,0.0,26358.0,5,5,1,100.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2336.324266976945,0.13730161418529296,0.08863814655804482,17572.0,5,3,5,5_1,5_3,5_0_1 -1781,2,43.0,3,0.0,4,111,2,0,62,6.0,0.0,0.0,245.5752499524643,0.0,1042.7461924862132,28293.0,0,50,2,12456,201101781,,,,540.0,1.0,0.0,3.0,0.0,1.0,1.0,3930.0919541662406,0.0,180.0,600.0,0.0,20830.0,0,1,3,85.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1288.3214424386774,0.04553498895269775,0.06184932512907717,20830.0,6,3,6,6_0,6_3,6_0_1 -1782,2,76.0,2,0.0,1,111,2,78,75,4.0,3050.7549055740706,0.0,713.5325318063268,151.1981979105009,0.0,23087.0,71,71,1,12458,201101782,,,193.0,,0.0,3.0,4.0,0.0,2.0,1.5,3503.6729201151516,0.0,523.0,0.0,0.0,23904.0,5,5,1,100.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3915.4856352908982,0.1695969868450166,0.16380043654998738,15936.0,4,2,4_0,4_1_0,4_3_0,4_1_0 -1783,2,61.0,2,0.0,1,221,2,0,74,9.0,0.0,0.0,868.7702744481828,4261.356106626991,667.7311158265557,46186.0,0,60,1,12459,201101783,,,70.0,,0.0,0.0,7.0,0.0,1.0,1.0,2271.834975827841,621.0,400.0,0.0,0.0,33027.0,0,5,1,100.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,5797.85749690173,0.1255327912549632,0.1755490204045699,33027.0,9,5,9,9_1,9_1,9_1_0 -1784,2,54.0,1,0.0,1,300,5,21,21,10.0,0.0,2081.88947934516,764.011888741,0.0,0.0,32355.0,50,50,1,1246,201101784,,,,,2.0,1.0,7.0,0.0,2.0,1.5,2158.14345497476,0.0,560.0,0.0,0.0,95977.0,1,1,1,380.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2845.90136808616,0.0879586267373253,0.0296519100210067,63984.666666666664,10,5,10,10_1,10_0,10_1_0 -1785,2,76.0,4,0.0,1,111,2,0,77,4.0,0.0,0.0,245.5752499524643,0.0,573.5104058674173,20616.0,0,50,2,12460,201101785,,,145.0,,0.0,4.0,3.0,0.0,1.0,1.0,4228.666495475174,0.0,180.0,330.0,0.0,15732.0,0,5,3,65.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,819.0856558198816,0.03973058089929577,0.05206494125475983,15732.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -1786,2,42.0,3,0.0,3,112,2,52,43,7.0,0.0,0.0,1227.8762497623215,0.0,3065.6738059094664,72857.0,50,33,1,12461,201101786,,,610.0,,2.0,0.0,7.0,3.0,5.0,2.4,1998.6639927559204,0.0,900.0,1764.0,0.0,54650.0,1,1,2,120.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4293.550055671788,0.05893119474685738,0.07856450239106656,22770.833333333336,7,4,7,7_1,7_0,7_0_1 -1787,2,71.0,2,0.0,7,211,4,77,74,6.0,0.0,180.43042154324718,2728.6138883607146,173.79103208103552,0.0,31907.0,70,60,1,12463,201101787,,,628.0,,0.0,2.0,7.0,0.0,2.0,1.5,1068.5606420671456,0.0,2000.0,0.0,0.0,30330.0,5,5,2,220.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3082.8353419849973,0.09661940458159643,0.10164310392301343,20220.0,6,3,6,6_1,6_2,6_0_0 -1788,2,29.0,3,0.0,4,111,2,0,21,5.0,0.0,0.0,586.6519859975537,52.13730962431066,0.0,22587.0,0,50,8,12464,201101788,,,300.0,,1.0,0.0,4.0,0.0,1.0,1.0,3464.002259660862,0.0,430.0,0.0,0.0,18588.0,0,1,3,90.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,638.7892956218643,0.028281281074151694,0.03436568192499808,18588.0,5,3,5,5_0,5_3,5_0_1 -1789,1,64.0,3,214.0,7,300,2,0,72,2.0,1586.456009138882,0.0,242.8466360641036,0.0,0.0,7822.0,0,70,2,12465,201101789,,,51.0,,0.0,2.0,2.0,0.0,1.0,1.0,6791.062938899213,0.0,178.0,0.0,0.0,11338.0,0,5,3,80.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1829.3026452029858,0.23386635709575374,0.16134262173249125,11338.0,2,1,2_1,2_0_1,2_0_1,2_0_0 -1790,2,82.0,2,0.0,4,111,2,0,75,6.0,1897.4013869301032,0.0,298.78322077549825,151.1981979105009,0.0,15734.0,0,70,1,12466,201101790,,,210.0,,0.0,0.0,4.0,0.0,1.0,1.0,4174.469137184236,0.0,219.0,0.0,0.0,19016.0,0,5,1,100.0,7,5.0,1,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2347.3828056161024,0.1491917379951762,0.12344251186454051,19016.0,5,3,5,5_1,5_2,5_0_1 -1791,2,49.0,4,0.0,1,112,5,0,56,2.0,0.0,555.170527825376,955.0148609262501,52.13730962431066,0.0,10866.0,0,71,1,12467,201101791,,,,,1.0,2.0,7.0,1.0,2.0,1.5,3419.5621105118844,0.0,700.0,0.0,0.0,15350.0,0,1,1,150.0,7,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1562.3226983759369,0.14378084836885116,0.1017799803502239,10233.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -1792,0,21.0,3,0.0,1,111,2,0,84,1.0,380.74944219333173,0.0,0.0,0.0,0.0,10466.0,0,41,1,12468,201101792,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2990.600315735364,0.0,0.0,0.0,0.0,2013.0,0,3,5,80.0,10,8.0,1,1,1,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,380.74944219333173,0.036379652416714287,0.18914527679748222,2013.0,1,1,1_0,1_1_0,1_4_0,1_1_0 -1793,2,61.0,3,0.0,1,111,2,78,78,6.0,0.0,0.0,1787.242096876268,97.32297796537989,0.0,24867.0,71,50,1,12469,201101793,,,157.0,,0.0,2.0,5.0,0.0,2.0,1.5,2032.4596688737008,0.0,1310.0,0.0,0.0,29566.0,5,5,1,118.0,6,5.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1884.5650748416479,0.07578578336114722,0.06374095497671811,19710.666666666668,6,3,6,6_1,6_2,6_1_0 -1794,2,71.0,3,0.0,1,111,2,72,72,4.0,0.0,0.0,840.4130776151001,0.0,1425.0864630644912,21082.0,50,71,1,12470,201101794,,,392.0,,0.0,3.0,5.0,0.0,2.0,1.5,1920.682478752277,0.0,616.0,820.0,0.0,23094.0,5,5,1,120.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2265.4995406795915,0.10746131964138086,0.09809905346321951,15396.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -1795,2,79.0,1,0.0,1,211,2,77,78,4.0,0.0,555.170527825376,477.50743046312505,0.0,1772.6685272265624,17690.0,70,50,1,12471,201101795,,,350.0,,0.0,2.0,4.0,0.0,2.0,1.5,1358.3558524696089,0.0,350.0,1020.0,0.0,23886.0,5,5,1,84.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2805.3464855150633,0.15858374706133765,0.11744731162668774,15924.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -1796,2,66.0,4,0.0,9,111,2,77,75,8.0,0.0,0.0,1227.8762497623215,250.25908619669116,0.0,15013.0,50,50,1,12472,201101796,,,230.0,,0.0,2.0,3.0,0.0,2.0,1.5,1437.0804612642103,0.0,900.0,0.0,0.0,41780.0,5,5,5,110.0,7,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1478.1353359590128,0.09845702630780076,0.03537901713640528,27853.333333333332,8,4,8,8_1,8_2,8_0_0 -1797,2,36.0,1,0.0,8,112,2,46,43,10.0,0.0,0.0,826.7700081732964,0.0,2128.940142992685,57717.0,20,41,1,12474,201101797,,,767.0,,2.0,0.0,8.0,2.0,4.0,2.1,1882.2916358531575,0.0,606.0,1225.0,0.0,92325.0,1,1,2,170.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2955.7101511659816,0.05121039123942654,0.032014190643552466,43964.28571428571,10,5,10,10_1,10_0,10_0_0 -1798,2,58.0,3,0.0,1,221,2,0,71,6.0,0.0,0.0,3956.490138123036,104.27461924862132,0.0,17157.0,0,50,1,12476,201101798,,,,,0.0,2.0,2.0,0.0,1.0,1.0,1746.968346744731,0.0,2900.0,0.0,0.0,21480.0,0,5,1,30.0,1,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4060.7647573716577,0.2366826809682146,0.18904863861134347,21480.0,6,3,6,6_1,6_1,6_1_0 -1799,0,53.0,3,0.0,2,111,2,0,52,8.0,0.0,0.0,0.0,156.41192887293198,0.0,12538.0,0,41,1,12477,201101799,,,,,1.0,2.0,3.0,0.0,1.0,1.0,1788.3246319404352,0.0,0.0,0.0,0.0,26774.0,0,1,5,75.0,7,5.0,1,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,156.41192887293198,0.012475030217971923,0.005841933550195412,26774.0,8,4,8,8_1,8_2,8_0_1 -1800,2,50.0,2,0.0,1,111,2,35,38,10.0,0.0,0.0,409.2920832541072,0.0,695.1641283241421,37903.0,20,31,2,12479,201101800,,,,,2.0,1.0,4.0,1.0,3.0,2.0,4221.204865764768,0.0,300.0,400.0,0.0,76819.0,1,1,2,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1104.4562115782492,0.02913901832515234,0.014377383350190046,38409.5,10,5,10,10_0,10_4,10_1_0 -1801,2,50.0,3,0.0,2,111,1,53,46,7.0,0.0,0.0,2090.0913695306645,0.0,1965.6107996152027,54431.0,50,42,2,1248,201101801,660.0,660.0,280.0,350.0,4.0,0.0,4.0,2.0,4.0,2.5,2232.5383953945598,1327.0,1026.0,310.0,0.0,56497.0,1,1,3,80.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,4055.702169145867,0.07451088844860221,0.07178615093094974,22598.8,7,4,7,7_0,7_2,7_0_1 -1802,2,79.0,2,0.0,1,112,2,0,77,3.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,6225.0,0,70,1,12480,201101802,,,150.0,,0.0,1.0,4.0,0.0,1.0,1.0,2730.7367208701185,700.0,0.0,0.0,0.0,13568.0,0,5,1,100.0,5,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1116.8196921446327,0.179408785886688,0.08231277212150889,13568.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -1803,2,30.0,3,0.0,1,112,4,0,31,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,21547.0,0,10,1,12483,201101803,,,200.0,,1.0,0.0,2.0,0.0,1.0,1.0,5764.433580054943,0.0,1200.0,0.0,0.0,25436.0,0,1,2,55.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1637.1683330164287,0.07598126574541368,0.06436422130116483,25436.0,8,4,8,8_1,8_0,8_1_0 -1804,2,62.0,1,0.0,5,112,2,77,74,8.0,0.0,0.0,2392.9943800923465,97.32297796537989,0.0,23449.0,43,30,1,12484,201101804,,,400.0,,0.0,1.0,8.0,0.0,2.0,1.5,2635.0771501674426,0.0,1754.0,0.0,0.0,42486.0,5,5,1,120.0,8,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2490.3173580577263,0.10620143110826587,0.05861501101675202,28324.0,8,4,8,8_1,8_0,8_0_0 -1805,2,46.0,3,0.0,7,111,5,21,38,6.0,0.0,832.755791738064,409.2920832541072,0.0,0.0,48660.0,70,43,1,12485,201101805,,,300.0,,3.0,4.0,6.0,2.0,4.0,2.3,6345.1627560973275,0.0,300.0,0.0,0.0,46274.0,1,1,2,130.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1242.0478749921713,0.025525028257134635,0.026841160802873562,20119.13043478261,6,3,6,6_1,6_4,6_0_0 -1806,0,36.0,1,0.0,4,111,1,0,43,6.0,0.0,0.0,229.20356662230003,0.0,69.5164128324142,23547.0,0,20,2,12487,201101806,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2524.8653950092653,0.0,168.0,40.0,0.0,20346.0,0,1,5,41.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,298.71997945471423,0.012686116254924799,0.014682000366397044,20346.0,6,3,6,6_0,6_3,6_0_1 -1807,2,84.0,3,0.0,2,111,1,78,74,5.0,0.0,0.0,427.02807352845184,0.0,3887.705387652765,27719.0,70,70,1,12488,201101807,,,353.0,,0.0,2.0,4.0,0.0,2.0,1.5,1861.874692137277,0.0,313.0,2237.0,0.0,27415.0,5,5,1,90.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4314.733461181217,0.1556597806984818,0.15738586398618334,18276.666666666668,5,3,5,5_1,5_3,5_0_1 -1808,1,45.0,3,121.0,4,111,6,56,68,2.0,0.0,0.0,409.2920832541072,0.0,660.405921907935,24630.0,71,71,2,12489,201101808,,,380.0,,2.0,1.0,3.0,1.0,3.0,1.8,3434.6961941922395,0.0,300.0,380.0,0.0,18882.0,1,1,3,65.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1069.6980051620421,0.04343069448485758,0.05665173208145547,10490.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -1809,2,39.0,3,0.0,3,111,2,46,54,6.0,3172.912018277764,277.585263912688,73.67257498573929,0.0,0.0,35746.0,50,44,1,12490,201101809,,,,1000.0,2.0,0.0,4.0,1.0,3.0,2.0,2114.5926654991986,0.0,54.0,0.0,0.0,41347.0,1,1,3,111.0,9,7.0,4,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3524.1698571761913,0.09858920878353358,0.0852339917569882,20673.5,6,3,6,6_1,6_3,6_0_1 -1810,2,40.0,5,0.0,9,111,2,0,68,2.0,0.0,0.0,1432.5222913893751,0.0,1741.3861414519758,13481.0,0,71,8,12491,201101810,,,,275.0,1.0,2.0,2.0,0.0,1.0,1.0,3375.5420977963113,0.0,1050.0,1002.0,0.0,11400.0,0,1,3,57.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3173.908432841351,0.23543568228183007,0.2784130204246799,11400.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -1811,2,64.0,1,0.0,6,111,2,74,74,8.0,0.0,0.0,935.3458883926916,0.0,1985.417988380238,62609.0,50,60,1,12492,201101811,,,167.0,,0.0,1.0,4.0,2.0,4.0,2.5,2107.065851718023,311.0,567.0,950.0,0.0,70499.0,6,5,1,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2920.7638767729295,0.04665086292342841,0.041429862505467166,28199.6,8,4,8,8_1,8_3,8_0_0 -1812,2,75.0,3,0.0,3,221,2,0,71,5.0,2062.392811880547,0.0,668.510402648375,52.13730962431066,0.0,18952.0,0,71,1,12495,201101812,,,,,0.0,7.0,5.0,0.0,1.0,1.0,7390.395660888656,0.0,490.0,0.0,0.0,17143.0,0,5,1,110.0,1,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2783.0405241532326,0.14684679844624485,0.16234267771995756,17143.0,5,3,5,5_1,5_1,5_0_1 -1813,2,60.0,2,0.0,1,111,2,52,33,10.0,6345.824036555528,0.0,818.5841665082144,0.0,0.0,51589.0,20,20,1,12496,201101813,,,460.0,,3.0,2.0,7.0,1.0,3.0,2.0,919.7929473857217,0.0,600.0,0.0,0.0,84054.0,1,1,1,160.0,7,5.0,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,7164.408203063743,0.13887472529151065,0.08523577941637213,42027.0,10,5,10,10_1,10_2,10_1_0 -1814,2,43.0,3,0.0,8,111,2,67,62,5.0,0.0,0.0,654.8673332065715,0.0,1685.7730111860446,44139.0,50,71,1,12497,201101814,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2910.66943158892,0.0,480.0,970.0,0.0,40681.0,1,1,3,100.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2340.640344392616,0.05302884851022035,0.05753645053938242,16950.416666666668,4,2,4_0,4_1_0,4_3_0,4_0_0 -1815,2,62.0,1,0.0,9,111,2,54,38,10.0,0.0,0.0,1637.1683330164287,0.0,1840.4470297381663,55444.0,50,12,1,12498,201101815,,,434.0,,2.0,3.0,6.0,0.0,2.0,1.5,2131.0459982152656,0.0,1200.0,1059.0,0.0,90733.0,1,1,2,140.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3477.615362754595,0.06272302436250261,0.03832801034634141,60488.666666666664,10,5,10,10_1,10_3,10_0_0 -1816,1,37.0,3,361.0,9,111,2,0,56,4.0,0.0,0.0,306.9690624405804,0.0,625.6477154917279,11764.0,0,31,2,12499,201101816,,,,322.0,1.0,0.0,3.0,1.0,2.0,1.3,2866.844579268729,0.0,225.0,360.0,0.0,20594.0,0,1,3,70.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,932.6167779323083,0.07927718275521152,0.04528584917608567,15841.538461538461,4,2,4_1,4_0_1,4_3_1,4_0_0 -1817,1,45.0,4,55.0,5,111,2,0,54,3.0,0.0,0.0,1296.0915969713394,0.0,0.0,19665.0,0,60,2,125,201101817,,,200.0,246.0,1.0,0.0,3.0,1.0,2.0,1.5,2726.4792404692625,0.0,950.0,0.0,0.0,19499.0,0,1,3,50.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1296.0915969713394,0.06590854802803658,0.06646964444183494,12999.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_0 -1818,2,57.0,3,0.0,1,400,6,55,64,7.0,0.0,555.170527825376,1719.0267496672502,104.27461924862132,0.0,49621.0,50,50,1,1250,201101818,,,700.0,,2.0,2.0,8.0,0.0,3.0,2.0,853.3741304490226,0.0,1260.0,0.0,0.0,43909.0,5,1,1,410.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2378.4718967412473,0.04793276831868055,0.054168209176734775,21954.5,7,4,7,7_1,7_0,7_1_0 -1819,2,36.0,3,0.0,8,112,5,42,33,8.0,0.0,416.377895869032,1548.4883816447054,139.0328256648284,0.0,53768.0,10,20,1,12501,201101819,,,609.0,,2.0,0.0,6.0,2.0,4.0,2.1,2005.166397615875,0.0,1135.0,0.0,0.0,58895.0,1,1,2,130.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2103.899103178566,0.039129205162523543,0.03572288145307014,28045.238095238095,8,4,8,8_1,8_0,8_0_0 -1820,2,70.0,3,0.0,5,112,2,0,78,2.0,2062.392811880547,0.0,272.86138883607146,86.89551604051776,0.0,11603.0,0,70,1,12502,201101820,,,60.0,,0.0,0.0,3.0,0.0,1.0,1.0,1812.2483457920055,0.0,200.0,0.0,0.0,11030.0,0,5,1,65.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2422.149716757136,0.2087520224732514,0.2195965291710912,11030.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -1821,2,28.0,2,0.0,9,111,2,46,47,7.0,0.0,0.0,313.79059716148214,0.0,940.2094835584022,26573.0,20,20,2,12508,201101821,,,,442.0,2.0,0.0,2.0,0.0,2.0,1.5,3489.9715219381515,0.0,230.0,541.0,0.0,36439.0,1,1,3,51.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1254.0000807198844,0.04719076057351012,0.034413679868269834,24292.666666666668,7,4,7,7_0,7_3,7_0_0 -1822,1,56.0,5,337.0,4,111,1,0,68,1.0,0.0,0.0,627.5811943229643,0.0,208.54923849724264,13854.0,0,41,2,12510,201101822,,,,,1.0,0.0,4.0,2.0,3.0,2.0,1532.0274514748814,0.0,460.0,120.0,0.0,13750.0,0,4,3,80.0,4,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,836.1304328202069,0.060352997893764034,0.06080948602328778,6875.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -1823,2,38.0,4,0.0,1,120,1,54,67,4.0,0.0,0.0,1064.1594164606786,312.82385774586396,0.0,39681.0,71,31,1,12513,201101823,,,406.0,,2.0,0.0,4.0,2.0,4.0,2.1,3241.6292201598294,0.0,780.0,0.0,0.0,31410.0,4,1,1,160.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1376.9832742065425,0.03470132492141182,0.043839009048282154,14957.142857142857,4,2,4_0,4_1_0,4_0_0,4_1_0 -1824,2,37.0,3,0.0,9,112,2,43,43,9.0,0.0,0.0,613.9381248811608,0.0,2085.4923849724264,64304.0,33,33,1,12515,201101824,,,451.0,,2.0,0.0,7.0,1.0,3.0,1.8,2101.100218785457,0.0,450.0,1200.0,0.0,57615.0,1,1,2,200.0,4,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2699.430509853587,0.041979200514020695,0.04685291173919269,32008.333333333332,9,5,9,9_1,9_0,9_0_0 -1825,2,64.0,2,0.0,8,111,6,0,75,10.0,0.0,0.0,1800.8851663180715,0.0,0.0,38906.0,0,10,1,12518,201101825,,,570.0,,0.0,2.0,3.0,0.0,1.0,1.0,3159.680244919108,0.0,1320.0,0.0,0.0,40347.0,0,5,1,75.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1800.8851663180715,0.04628810893738939,0.044634921216399524,40347.0,10,5,10,10_1,10_2,10_0_0 -1826,2,43.0,3,0.0,8,111,2,64,63,4.0,0.0,0.0,641.2242637647679,0.0,1657.966446053079,34277.0,42,50,1,12519,201101826,,,375.0,,2.0,0.0,7.0,2.0,4.0,2.1,2892.9929256041287,0.0,470.0,954.0,0.0,31807.0,1,1,2,140.0,4,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2299.1907098178467,0.06707677771735703,0.07228568270562602,15146.190476190475,4,2,4_0,4_1_0,4_1_0,4_0_0 -1827,2,35.0,3,0.0,9,112,2,56,63,3.0,0.0,416.377895869032,1620.7966496862643,0.0,0.0,43710.0,41,43,1,1252,201101827,,,458.0,,2.0,0.0,5.0,2.0,4.0,2.1,2549.044470270009,0.0,1188.0,0.0,0.0,29356.0,1,1,2,144.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2037.1745455552964,0.04660660136250964,0.06939550843286879,13979.047619047618,3,2,3_0,3_1_0,3_0_0,3_0_0 -1828,2,80.0,1,0.0,1,111,2,74,86,2.0,0.0,0.0,1204.0973433743166,0.0,3521.7523838639077,55064.0,50,50,2,12520,201101828,,,200.0,4032.0,0.0,4.0,6.0,0.0,2.0,1.5,3529.392056327608,1659.0,250.0,1000.0,0.0,17610.0,5,6,3,275.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4725.849727238225,0.0858246717862528,0.26836171080285204,11740.0,2,1,2_0,2_0_0,2_3_0,2_1_0 -1829,2,60.0,2,0.0,2,111,2,72,72,8.0,0.0,0.0,530.715401286159,0.0,1087.9318608272824,20584.0,50,10,1,12521,201101829,,,328.0,,0.0,1.0,5.0,0.0,2.0,1.5,2144.866030263993,0.0,389.0,626.0,0.0,38351.0,5,5,1,120.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1618.6472621134415,0.07863618646101056,0.04220612923035753,25567.333333333332,8,4,8,8_1,8_3,8_0_1 -1830,2,66.0,3,0.0,2,111,1,0,78,7.0,0.0,0.0,873.1564442754286,0.0,521.3730962431066,19534.0,0,70,2,12522,201101830,,,,320.0,0.0,0.0,3.0,0.0,1.0,1.0,2954.363945985437,0.0,640.0,300.0,0.0,22062.0,0,5,3,56.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1394.5295405185352,0.07138986078215087,0.06320957032538008,22062.0,7,4,7,7_0,7_4,7_0_1 -1831,2,39.0,1,0.0,8,111,4,38,38,10.0,0.0,0.0,3547.198054868929,0.0,0.0,67380.0,10,10,1,12524,201101831,,,800.0,,2.0,0.0,5.0,1.0,3.0,1.8,2772.966274343798,0.0,2600.0,0.0,0.0,126432.0,1,1,2,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3547.198054868929,0.05264467282381907,0.028056172921957487,70240.0,10,5,10,10_1,10_4,10_0_0 -1832,2,42.0,3,0.0,8,112,1,0,34,8.0,0.0,0.0,1034.168153930382,0.0,2137.5997717603746,48245.0,0,10,1,12525,201101832,,,459.0,,1.0,0.0,4.0,2.0,3.0,1.8,2320.214260448469,1988.0,0.0,0.0,0.0,51542.0,0,1,2,156.0,8,0.0,2,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3171.767925690757,0.06574293555167907,0.06153754075687317,28634.444444444445,8,4,8,8_1,8_0,8_0_0 -1833,2,62.0,3,0.0,1,111,2,78,56,2.0,0.0,0.0,163.71683330164288,222.45252106372547,0.0,9015.0,71,71,2,12526,201101833,,,,,1.0,0.0,1.0,0.0,2.0,1.5,3946.7078118377713,0.0,120.0,0.0,0.0,14880.0,4,1,1,18.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,386.16935436536835,0.04283631218695157,0.02595224155681239,9920.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -1834,2,79.0,3,0.0,1,212,2,0,78,2.0,750.3936923226913,0.0,343.80534993345003,46.92357866187959,0.0,16257.0,0,70,1,12527,201101834,,,148.0,,0.0,3.0,5.0,0.0,1.0,1.0,2559.703630119736,0.0,252.0,0.0,0.0,11670.0,0,5,1,100.0,2,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1141.122620918021,0.07019269366537621,0.09778257248654851,11670.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -1835,2,55.0,3,0.0,5,112,2,78,52,6.0,2284.4966531599903,0.0,709.4396109737858,93.84715732375918,0.0,18296.0,50,71,1,12529,201101835,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2754.860506432695,0.0,520.0,0.0,0.0,31496.0,5,1,1,127.0,6,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3087.7834214575355,0.16876822373510797,0.09803731970591617,20997.333333333332,6,3,6,6_1,6_0,6_0_0 -1837,1,77.0,4,150.0,1,111,4,0,78,2.0,0.0,0.0,1159.6609025533037,0.0,0.0,10997.0,0,71,2,12531,201101837,,,200.0,,0.0,6.0,1.0,0.0,1.0,1.0,3028.028459153049,0.0,850.0,0.0,0.0,10600.0,0,5,3,33.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1159.6609025533037,0.10545247818071325,0.10940197193899091,10600.0,2,1,2_1,2_0_1,2_3_1,2_1_0 -1838,2,71.0,3,0.0,4,111,2,78,78,4.0,0.0,166.55115834761278,321.4868808495856,0.0,664.5053616438188,22984.0,50,71,1,12532,201101838,,,,,0.0,2.0,4.0,0.0,2.0,1.5,4638.884283479188,618.0,0.0,0.0,0.0,24935.0,5,5,1,85.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1152.543400841017,0.050145466448008054,0.04622191300746008,16623.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_1 -1839,2,39.0,2,0.0,1,300,2,0,21,9.0,1348.4876077680499,0.0,1678.0975413418394,86.89551604051776,0.0,15664.0,0,50,1,12533,201101839,,,,,1.0,0.0,5.0,2.0,3.0,1.6,2144.45327711997,0.0,1230.0,0.0,0.0,48219.0,0,1,3,156.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3113.480665150407,0.19876664103360617,0.0645695818069725,30136.875,9,5,9,9_1,9_0,9_1_0 -1840,2,84.0,4,0.0,1,221,2,86,78,2.0,0.0,0.0,122.78762497623215,0.0,1042.7461924862132,10845.0,71,71,1,12534,201101840,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,7382.727511859652,0.0,90.0,600.0,0.0,15395.0,6,5,1,156.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1165.5338174624453,0.10747199792184835,0.0757085948335463,10263.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0 -1841,2,33.0,3,0.0,99,111,2,42,54,6.0,0.0,0.0,463.8643610213215,0.0,1647.5389841282167,38096.0,30,20,1,12535,201101841,,,300.0,,2.0,0.0,4.0,1.0,3.0,1.8,1178.8126105020144,0.0,340.0,948.0,0.0,38114.0,1,1,3,75.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2111.4033451495384,0.05542322934558847,0.055397054760705736,21174.444444444445,6,3,6,6_1,6_3,6_0_0 -1842,0,43.0,2,0.0,6,111,4,67,62,4.0,0.0,0.0,0.0,83.41969539889705,0.0,60199.0,71,44,8,12536,201101842,,,,,2.0,0.0,4.0,2.0,4.0,2.3,3731.577460440975,0.0,0.0,0.0,0.0,37881.0,1,1,5,85.0,5,4.0,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,83.41969539889705,0.0013857322447033513,0.002202151352891873,16470.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -1843,1,49.0,4,445.0,1,212,6,85,67,4.0,0.0,22.20682111301504,1227.8762497623215,119.9158121359145,0.0,13942.0,71,71,1,12537,201101843,,,300.0,,1.0,6.0,3.0,1.0,3.0,1.8,1682.4296312205151,0.0,900.0,0.0,0.0,26750.0,6,1,3,90.0,2,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1369.998883011251,0.09826415743876425,0.05121491151443929,14861.111111111111,3,2,3_1,3_1_1,3_0_1,3_1_0 -1844,2,30.0,4,0.0,2,111,4,0,62,4.0,0.0,0.0,1841.8143746434823,0.0,0.0,16176.0,0,50,2,12538,201101844,,,,400.0,1.0,0.0,2.0,0.0,1.0,1.0,4088.9492087595877,0.0,1350.0,0.0,0.0,15586.0,0,4,3,70.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1841.8143746434823,0.11386092820496305,0.11817107498033379,15586.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -1845,2,39.0,3,0.0,5,111,1,35,43,6.0,0.0,0.0,573.00891655575,0.0,0.0,47716.0,31,33,2,1254,201101845,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3468.5131888274504,0.0,420.0,0.0,0.0,35429.0,1,1,2,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,573.00891655575,0.012008737458205843,0.016173443127261565,19682.777777777777,6,3,6,6_0,6_4,6_0_0 -1846,2,21.0,2,0.0,1,111,6,84,63,1.0,0.0,0.0,654.8673332065715,104.27461924862132,0.0,27107.0,10,44,2,12540,201101846,,,180.0,,1.0,0.0,2.0,0.0,2.0,1.5,3861.7607390808857,0.0,480.0,0.0,0.0,6875.0,3,1,1,26.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,759.1419524551928,0.028005384308672773,0.11042064762984623,4583.333333333333,1,1,1_0,1_0_0,1_3_0,1_1_0 -1847,2,87.0,2,0.0,1,111,2,0,31,10.0,0.0,0.0,10503.903789795464,0.0,14235.090160152165,212860.0,0,10,1,12542,201101847,,,1800.0,,4.0,0.0,10.0,2.0,6.0,3.1,970.2412543661212,8390.0,4500.0,3000.0,0.0,303790.0,0,1,1,500.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,24738.99394994763,0.11622190148429781,0.08143452368395152,97996.77419354838,10,5,10,10_1,10_4,10_1_0 -1848,1,43.0,4,38.0,4,112,4,0,52,5.0,0.0,0.0,927.728722042643,43.44775802025888,0.0,17428.0,0,42,1,12543,201101848,,,228.0,442.0,1.0,1.0,3.0,0.0,1.0,1.0,4848.075544934775,0.0,680.0,0.0,0.0,17346.0,0,1,3,70.0,8,3.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,971.1764800629019,0.05572506771074718,0.05598849763996898,17346.0,5,3,5,5_1,5_1,5_0_1 -1849,1,38.0,5,212.0,8,111,2,62,52,4.0,0.0,0.0,1788.6064038204483,125.12954309834558,0.0,29702.0,71,60,8,12544,201101849,,,,211.0,2.0,0.0,5.0,3.0,5.0,2.4,2703.3355239763087,0.0,1311.0,0.0,0.0,37069.0,1,1,3,90.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1913.7359469187938,0.06443121496595494,0.0516263170551888,15445.416666666668,4,2,4_1,4_0_1,4_2_1,4_0_0 -1850,1,47.0,4,244.0,99,111,1,0,52,2.0,0.0,0.0,204.6460416270536,0.0,0.0,2012.0,0,43,2,12545,201101850,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2586.0992137035005,0.0,150.0,0.0,0.0,9668.0,0,4,3,41.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,204.6460416270536,0.10171274434744214,0.02116736053238039,9668.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -1851,2,53.0,2,0.0,4,111,1,74,38,10.0,0.0,0.0,613.9381248811608,0.0,0.0,61549.0,31,10,2,12547,201101851,,,,,1.0,0.0,3.0,0.0,2.0,1.5,2983.78894497162,0.0,450.0,0.0,0.0,118598.0,5,1,2,100.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,613.9381248811608,0.009974786347156912,0.005176631350285509,79065.33333333333,10,5,10,10_0,10_4,10_0_1 -1852,2,60.0,2,0.0,99,111,1,0,42,9.0,0.0,0.0,435.213915193534,0.0,1369.47333279856,29812.0,0,42,2,12549,201101852,720.0,720.0,,,1.0,1.0,4.0,0.0,1.0,1.0,2689.9158934681823,0.0,319.0,788.0,0.0,29910.0,0,1,1,95.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1804.687247992094,0.06053559801395726,0.060337253359815914,29910.0,9,5,9,9_0,9_2,9_0_0 -1853,2,61.0,3,0.0,1,111,4,78,78,5.0,0.0,0.0,995.9440692516608,260.6865481215533,0.0,22608.0,50,50,1,1255,201101853,,,390.0,,0.0,3.0,3.0,0.0,2.0,1.5,1168.1623074928611,0.0,730.0,0.0,0.0,27751.0,5,5,1,75.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1256.6306173732141,0.05558344910532617,0.04528235441509186,18500.666666666668,5,3,5,5_1,5_3,5_1_0 -1854,2,58.0,4,0.0,6,111,2,55,78,6.0,0.0,0.0,1991.8881385033217,312.82385774586396,0.0,20951.0,71,71,1,12552,201101854,,,700.0,,1.0,0.0,4.0,0.0,2.0,1.5,6573.591167310269,0.0,1460.0,0.0,0.0,30940.0,1,7,1,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2304.7119962491856,0.11000486832366883,0.07448972192143458,20626.666666666668,6,3,6,6_1,6_3,6_0_0 -1855,2,36.0,3,0.0,7,111,2,0,55,6.0,0.0,0.0,354.7198054868929,0.0,782.0596443646599,10895.0,0,30,2,12553,201101855,,,,331.0,1.0,0.0,1.0,0.0,1.0,1.0,6125.052771095893,0.0,260.0,450.0,0.0,20270.0,0,1,3,25.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1136.7794498515527,0.10433955482804523,0.05608186728424039,20270.0,6,3,6,6_0,6_4,6_0_0 -1856,2,39.0,2,0.0,9,112,2,38,38,10.0,0.0,0.0,709.4396109737858,0.0,2780.6565132965684,61257.0,12,12,1,12555,201101856,,,340.0,,2.0,0.0,9.0,4.0,6.0,2.7,854.0412746544434,0.0,520.0,1600.0,0.0,139214.0,1,1,2,180.0,8,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3490.0961242703543,0.0569746498240259,0.02507000821950633,51560.74074074074,10,5,10,10_1,10_1,10_0_0 -1857,2,55.0,3,0.0,2,112,5,78,62,4.0,0.0,0.0,822.6770873407554,156.41192887293198,0.0,21876.0,70,50,1,12557,201101857,,,190.0,,1.0,1.0,3.0,0.0,2.0,1.5,1815.8268309788893,0.0,603.0,0.0,0.0,23541.0,6,1,1,55.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,979.0890162136874,0.044756309024213174,0.04159079972021951,15694.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -1858,2,27.0,5,0.0,5,111,4,85,55,3.0,0.0,0.0,1282.4485275295358,0.0,0.0,21862.0,71,71,2,12558,201101858,,,,412.0,1.0,0.0,4.0,3.0,5.0,2.4,4075.679395168509,0.0,940.0,0.0,0.0,30498.0,6,1,3,90.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1282.4485275295358,0.05866107984308553,0.04205025009933556,12707.5,3,2,3_0,3_0_0,3_3_0,3_0_0 -1859,2,44.0,4,0.0,8,112,5,48,62,8.0,428.3431224674982,541.2912646297416,941.3717914844465,0.0,0.0,43447.0,71,44,1,12559,201101859,,,1100.0,,2.0,2.0,8.0,1.0,3.0,1.8,2320.3242606217277,0.0,690.0,0.0,0.0,48452.0,1,1,1,160.0,5,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1911.0061785816863,0.0439847671549632,0.03944122386241407,26917.777777777777,8,4,8,8_1,8_0,8_0_0 -1860,2,40.0,1,0.0,2,111,1,31,43,10.0,0.0,0.0,25.49006013208688,0.0,52.687318318037406,72005.0,10,10,2,12561,201101860,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2646.7560983174844,49.0,0.0,0.0,0.0,89743.0,1,1,1,86.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,78.17737845012428,0.0010857215255902267,0.0008711250844090824,42734.7619047619,10,5,10,10_0,10_3,10_0_1 -1861,2,35.0,2,0.0,1,120,4,54,22,9.0,0.0,693.9631597817199,3028.7614160803932,180.74267336427695,0.0,49783.0,50,50,1,12563,201101861,,,700.0,,2.0,0.0,5.0,2.0,4.0,2.1,1615.001560785562,0.0,2220.0,0.0,0.0,70003.0,1,1,2,130.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3903.46724922639,0.07840964283442922,0.055761428070602546,33334.7619047619,9,5,9,9_1,9_0,9_1_0 -1862,2,74.0,3,0.0,5,221,2,75,75,9.0,0.0,0.0,374.9201886817913,0.0,2332.6122260678358,38826.0,70,60,1,12564,201101862,,,157.0,,0.0,0.0,4.0,0.0,2.0,1.5,2874.528590836618,406.0,120.0,1091.0,0.0,47772.0,5,5,1,110.0,1,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2707.532414749627,0.06973503360504886,0.056676136957833606,31848.0,9,5,9,9_1,9_1,9_0_0 -1863,1,24.0,3,420.0,7,111,1,85,85,2.0,0.0,0.0,409.2920832541072,500.5181723933823,1564.1192887293198,14897.0,71,60,2,12566,201101863,900.0,900.0,,,0.0,0.0,4.0,2.0,4.0,2.1,4365.062859414841,0.0,300.0,900.0,0.0,20650.0,6,6,3,79.0,8,6.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2473.929544376809,0.16606897659775854,0.11980288350493022,9833.333333333332,1,1,1_1,1_0_1,1_2_1,1_0_0 -1864,0,45.0,3,0.0,1,112,4,52,47,6.0,0.0,0.0,794.586270548735,140.77073598563877,91.39636851088122,33928.0,31,42,1,12570,201101864,,,360.0,,2.0,0.0,2.0,3.0,5.0,2.4,4085.6469211168724,85.0,550.0,0.0,0.0,51458.0,1,1,5,65.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1026.753375045255,0.03026271442599785,0.019953231276871528,21440.833333333336,6,3,6,6_1,6_1,6_1_0 -1865,1,57.0,5,180.0,3,111,2,0,63,1.0,0.0,0.0,354.7198054868929,0.0,782.0596443646599,5573.0,0,50,2,12575,201101865,,,,,1.0,2.0,3.0,0.0,1.0,1.0,1365.15503372085,0.0,260.0,450.0,0.0,5220.0,0,4,3,49.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1136.7794498515527,0.20397980438750274,0.21777384096773042,5220.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -1866,2,59.0,1,0.0,6,112,2,77,75,7.0,0.0,0.0,787.2051067920661,0.0,2017.7138824608223,26794.0,50,50,1,12577,201101866,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2381.039102198207,0.0,577.0,1161.0,0.0,35655.0,5,5,1,160.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2804.9189892528884,0.10468459316462224,0.078668321112127,23770.0,7,4,7,7_1,7_0,7_0_0 -1867,2,36.0,2,0.0,1,111,2,52,62,9.0,0.0,0.0,327.43366660328576,0.0,0.0,33479.0,31,31,1,12578,201101867,,,,,2.0,0.0,6.0,2.0,4.0,2.1,3254.851556594891,0.0,240.0,0.0,0.0,75273.0,1,1,2,200.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,327.43366660328576,0.009780270217249193,0.004349948409167773,35844.28571428571,9,5,9,9_1,9_2,9_1_0 -1868,2,72.0,4,0.0,1,400,2,77,74,9.0,2776.298015993044,0.0,1159.6609025533037,100.7987986070006,0.0,34457.0,70,50,1,12579,201101868,,,200.0,,0.0,2.0,6.0,0.0,2.0,1.5,1764.3859729535645,0.0,850.0,0.0,0.0,44585.0,5,5,1,117.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4036.757717153348,0.11715348745257416,0.09054071362909831,29723.333333333332,9,5,9,9_1,9_0,9_1_0 -1869,2,81.0,3,0.0,2,300,5,0,71,3.0,0.0,971.5484236944079,390.1917860355822,0.0,0.0,20405.0,0,70,1,1258,201101869,,,,,0.0,4.0,6.0,0.0,1.0,1.0,1822.2009785573196,0.0,286.0,0.0,0.0,13007.0,0,5,1,135.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1361.74020972999,0.06673561429698555,0.10469287381640578,13007.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -1870,2,28.0,3,0.0,9,111,2,65,43,7.0,0.0,0.0,252.39678467336608,0.0,886.3342636132812,27337.0,71,33,2,12580,201101870,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2840.108165029744,0.0,185.0,510.0,0.0,34095.0,4,1,3,62.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1138.7310482866474,0.041655304103839025,0.03339876956406063,22730.0,7,4,7,7_0,7_2,7_0_0 -1871,1,60.0,4,9999.0,1,111,2,0,77,1.0,0.0,0.0,1146.0178331115,0.0,0.0,7739.0,0,60,2,12582,201101871,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2948.0951667528,0.0,840.0,0.0,0.0,7560.0,0,5,3,30.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1146.0178331115,0.1480834517523582,0.15158966046448413,7560.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -1872,2,63.0,2,0.0,5,112,4,0,75,7.0,0.0,0.0,1609.8821941328215,104.27461924862132,0.0,21055.0,0,44,1,12583,201101872,,,233.0,,0.0,2.0,5.0,0.0,1.0,1.0,3762.079477305956,0.0,1180.0,0.0,0.0,24354.0,0,5,1,115.0,7,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1714.1568133814428,0.08141328964053397,0.07038502149057414,24354.0,7,4,7,7_1,7_0,7_0_0 -1873,2,63.0,2,0.0,7,111,4,0,31,4.0,0.0,0.0,955.0148609262501,0.0,0.0,15389.0,0,31,2,12585,201101873,,,,,1.0,1.0,2.0,0.0,1.0,1.0,4057.3807653477197,0.0,700.0,0.0,0.0,15250.0,0,1,1,44.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,955.0148609262501,0.062058279350591335,0.06262392530663935,15250.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -1874,2,30.0,2,0.0,1,111,4,63,22,8.0,0.0,0.0,750.3688192991965,0.0,0.0,59645.0,50,71,2,12588,201101874,,,200.0,,2.0,0.0,3.0,1.0,3.0,1.8,4052.0898059107035,0.0,550.0,0.0,0.0,51493.0,1,1,2,64.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,750.3688192991965,0.01258058209907279,0.014572249029949634,28607.222222222223,8,4,8,8_0,8_3,8_1_0 -1875,0,53.0,1,0.0,1,111,2,52,52,9.0,0.0,0.0,0.0,0.0,0.0,39863.0,41,60,2,12589,201101875,,,,,2.0,1.0,5.0,1.0,3.0,2.0,2356.8639659075393,0.0,0.0,0.0,0.0,67672.0,1,1,5,110.0,8,7.0,4,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,33836.0,9,5,9,9_0,9_3,9_1_0 -1876,2,46.0,2,0.0,9,112,4,0,64,9.0,0.0,0.0,1623.5252635746251,69.5164128324142,0.0,21671.0,0,50,1,1259,201101876,,,110.0,,1.0,2.0,4.0,0.0,1.0,1.0,1310.4777080307229,0.0,1190.0,0.0,0.0,31589.0,0,1,2,86.0,6,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1693.0416764070394,0.07812476011291769,0.05359592505008197,31589.0,9,5,9,9_1,9_1,9_0_0 -1877,2,46.0,4,0.0,5,111,4,0,52,3.0,0.0,0.0,2182.8911106885716,0.0,0.0,45602.0,0,41,2,12590,201101877,,,,,1.0,0.0,4.0,2.0,3.0,2.0,3161.9893026999766,0.0,1600.0,0.0,0.0,28380.0,0,1,2,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2182.8911106885716,0.04786831960634559,0.07691652962257123,14190.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -1878,2,45.0,2,0.0,2,111,4,54,21,8.0,0.0,0.0,2728.6138883607146,0.0,0.0,36413.0,50,71,1,12591,201101878,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.5,2844.550194050213,0.0,2000.0,0.0,0.0,72135.0,1,1,2,136.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2728.6138883607146,0.07493515745367628,0.037826490446533786,28854.0,8,4,8,8_1,8_3,8_0_1 -1879,2,61.0,2,0.0,1,400,7,56,72,2.0,0.0,0.0,272.86138883607146,0.0,0.0,23273.0,50,71,8,12593,201101879,,,,,3.0,0.0,5.0,2.0,4.0,2.5,4531.750625900087,0.0,200.0,0.0,0.0,27000.0,1,5,1,130.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,272.86138883607146,0.01172437540652565,0.010105977364298942,10800.0,2,1,2_0,2_0_0,2_0_0,2_1_0 -1880,2,86.0,2,0.0,2,112,2,72,74,4.0,1727.6505939522426,0.0,638.820355855422,88.63342636132812,446.2293286119494,43040.0,70,70,1,12594,201101880,,,250.0,,0.0,0.0,4.0,0.0,2.0,1.5,2157.205063311434,415.0,310.0,0.0,0.0,24134.0,5,5,1,68.0,10,2.0,3,2,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2901.333704780942,0.06741016972074679,0.12021768893598002,16089.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_1 -1881,1,47.0,3,316.0,2,221,1,0,85,1.0,0.0,0.0,923.6358012101018,111.22626053186274,0.0,9833.0,0,50,2,12596,201101881,,,,,0.0,1.0,4.0,1.0,2.0,1.3,5439.6405834507505,0.0,677.0,0.0,0.0,11319.0,0,6,3,61.0,1,2.0,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1034.8620617419645,0.10524377725434399,0.09142698663680224,8706.923076923076,1,1,1_1,1_0_1,1_1_1,1_0_1 -1882,2,68.0,3,0.0,99,111,5,78,72,3.0,0.0,693.9631597817199,463.8643610213215,243.30744491344973,0.0,9951.0,70,70,1,12597,201101882,,,,,0.0,0.0,3.0,0.0,2.0,1.5,2923.593127544998,0.0,340.0,0.0,0.0,19717.0,6,5,1,80.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1401.134965716491,0.140803433395286,0.07106227954133443,13144.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0 -1883,2,68.0,3,0.0,6,111,2,0,74,6.0,0.0,0.0,399.74193464484466,0.0,1423.348552743681,24502.0,0,60,2,12598,201101883,,,,366.0,0.0,4.0,3.0,0.0,1.0,1.0,3326.3222699892754,0.0,293.0,819.0,0.0,19629.0,0,5,3,73.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1823.0904873885256,0.07440578268665927,0.09287740014206153,19629.0,6,3,6,6_0,6_2,6_0_0 -1884,2,62.0,3,0.0,1,112,5,78,78,2.0,0.0,1537.8223620762915,818.5841665082144,1293.0052786829042,0.0,28346.0,71,71,1,12599,201101884,,,230.0,,0.0,2.0,5.0,2.0,4.0,2.5,3795.560229112847,0.0,600.0,0.0,0.0,26640.0,6,5,1,78.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3649.41180726741,0.1287452129848095,0.1369899327052331,10656.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -1885,1,49.0,5,117.0,8,112,2,0,46,4.0,0.0,0.0,573.00891655575,97.32297796537989,0.0,6492.0,0,41,1,126,201101885,,,359.0,,1.0,3.0,4.0,0.0,1.0,1.0,2067.5847103843203,0.0,420.0,0.0,0.0,14854.0,0,4,3,80.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,670.3318945211299,0.10325506693178219,0.04512803921644876,14854.0,3,2,3_1,3_1_1,3_1_1,3_0_0 -1886,2,50.0,2,0.0,7,112,6,54,65,7.0,0.0,208.188947934516,1684.9190760627412,93.84715732375918,0.0,25131.0,41,50,1,1260,201101886,,,293.0,,2.0,0.0,4.0,1.0,3.0,2.0,1798.416850593999,0.0,1235.0,0.0,0.0,46020.0,1,1,2,110.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1986.9551813210162,0.07906391235211556,0.043175905721882145,23010.0,7,4,7,7_1,7_0,7_0_0 -1887,2,81.0,3,0.0,5,112,4,86,74,8.0,0.0,0.0,4775.07430463125,0.0,0.0,28396.0,41,41,1,12601,201101887,,,,,0.0,0.0,6.0,0.0,2.0,1.5,2840.6076041023193,0.0,3500.0,0.0,0.0,41174.0,6,5,1,200.0,10,4.0,3,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4775.07430463125,0.1681601036988044,0.11597304863824866,27449.333333333332,8,4,8,8_1,8_2,8_0_0 -1888,2,47.0,2,0.0,7,400,5,67,11,3.0,0.0,0.0,2373.8940828738214,201.5975972140012,0.0,29205.0,50,50,1,12602,201101888,,,238.0,,2.0,2.0,5.0,0.0,2.0,1.5,1580.1974323572222,0.0,1740.0,0.0,0.0,19997.0,1,1,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2575.4916800878227,0.08818666940893076,0.1287939030898546,13331.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -1889,2,46.0,3,0.0,8,400,2,54,11,5.0,0.0,0.0,327.43366660328576,4482.070717369907,0.0,32897.0,43,43,1,12603,201101889,,,100.0,,2.0,0.0,4.0,2.0,4.0,2.1,4021.5405198713693,0.0,240.0,0.0,0.0,36090.0,1,1,2,140.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4809.5043839731925,0.1461988747901995,0.13326418354040434,17185.714285714286,5,3,5,5_1,5_0,5_0_0 -1890,2,63.0,3,0.0,6,112,2,77,74,7.0,2062.392811880547,0.0,545.7227776721429,156.41192887293198,0.0,20490.0,41,50,1,12604,201101890,,,150.0,,0.0,2.0,6.0,0.0,2.0,1.5,1424.9766614459872,0.0,400.0,0.0,0.0,35930.0,5,5,1,130.0,4,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2764.527518425622,0.13492081593097227,0.07694204059074929,23953.333333333332,7,4,7,7_1,7_0,7_0_0 -1891,2,50.0,2,0.0,1,112,2,0,54,7.0,1776.8307302355481,0.0,272.86138883607146,182.4805836850873,0.0,33317.0,0,50,1,12605,201101891,,,180.0,,1.0,0.0,5.0,0.0,3.0,2.0,1836.7160223686024,0.0,200.0,0.0,0.0,43560.0,0,1,1,99.0,6,0.0,5,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2232.1727027567067,0.06699801010765395,0.05124363413123753,21780.0,6,3,6,6_1,6_0,6_1_0 -1892,2,87.0,4,0.0,4,300,2,86,78,4.0,0.0,693.9631597817199,2442.1094300828395,0.0,0.0,18957.0,50,70,1,12606,201101892,,,243.0,,0.0,4.0,2.0,0.0,2.0,1.5,1424.6520227643468,0.0,1790.0,0.0,0.0,23993.0,6,5,1,70.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3136.0725898645596,0.16543084822833568,0.1307078143568774,15995.333333333334,4,2,4_0,4_1_0,4_0_0,4_0_1 -1893,2,39.0,2,0.0,8,112,2,54,62,9.0,2141.715612337491,0.0,1293.3629830829786,0.0,0.0,86787.0,43,42,1,12608,201101893,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1996.2049438228755,0.0,948.0,0.0,0.0,65557.0,1,1,2,160.0,7,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3435.07859542047,0.0395805661610664,0.05239834945803606,31217.619047619046,9,5,9,9_1,9_0,9_0_0 -1894,2,65.0,1,0.0,4,111,1,77,74,10.0,0.0,0.0,382.0059443705,0.0,139.0328256648284,45678.0,50,31,2,12609,201101894,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2630.775981525749,0.0,280.0,80.0,0.0,78621.0,5,5,1,85.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,521.0387700353284,0.011406777223944314,0.006627221353522957,52414.0,10,5,10,10_0,10_4,10_0_1 -1895,2,50.0,2,0.0,4,111,2,47,46,5.0,0.0,0.0,941.3717914844465,0.0,1713.5795763190104,27682.0,70,60,1,1261,201101895,,,474.0,299.0,3.0,1.0,4.0,1.0,3.0,2.0,888.3097010225841,0.0,690.0,986.0,0.0,37110.0,1,1,3,66.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2654.951367803457,0.09590894327734473,0.07154274771768948,18555.0,5,3,5,5_1,5_2,5_0_1 -1896,2,41.0,3,0.0,1,111,5,34,34,7.0,0.0,485.77421184720396,1751.7701163275788,0.0,0.0,33946.0,20,20,1,12611,201101896,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1845.3130830657108,0.0,1284.0,0.0,0.0,51877.0,1,1,2,118.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2237.5443281747825,0.06591481553569736,0.043131721729760444,24703.333333333332,7,4,7,7_1,7_4,7_1_0 -1897,2,59.0,1,0.0,1,111,2,0,74,9.0,0.0,0.0,482.9646582398465,0.0,2554.7281715912222,20126.0,0,60,2,12612,201101897,,,,627.0,0.0,2.0,3.0,0.0,1.0,1.0,2646.1123405413823,0.0,354.0,1470.0,0.0,31530.0,0,7,3,75.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,3037.6928298310686,0.15093375881104384,0.09634293783162286,31530.0,9,5,9,9_0,9_2,9_1_0 -1898,2,44.0,3,0.0,4,111,2,0,46,4.0,0.0,0.0,532.0797082303393,0.0,2094.181936576478,56512.0,0,50,1,12613,201101898,,,438.0,,1.0,2.0,5.0,1.0,3.0,2.0,982.5787590147651,0.0,390.0,1205.0,0.0,33092.0,0,1,3,100.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2626.2616448068175,0.04647263669321237,0.07936243336174355,16546.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -1899,2,44.0,3,0.0,3,120,2,55,64,5.0,2379.684013708323,555.170527825376,491.1504999049286,0.0,0.0,30698.0,71,50,1,12616,201101899,,,,,3.0,0.0,3.0,1.0,3.0,2.0,1204.3214894330083,0.0,360.0,0.0,0.0,36872.0,1,1,1,80.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3426.005041438628,0.11160352600946732,0.09291617057492482,18436.0,5,3,5,5_1,5_0,5_0_1 -1900,2,70.0,4,0.0,1,111,6,77,75,5.0,396.6140022847205,0.0,573.00891655575,236.3558036302083,0.0,21537.0,60,60,2,12617,201101900,,,,794.0,0.0,1.0,3.0,0.0,2.0,1.5,4043.631119755632,0.0,420.0,0.0,0.0,26600.0,5,5,3,68.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1205.9787224706788,0.05599566896367548,0.045337545957544315,17733.333333333332,5,3,5,5_0,5_3,5_1_0 -1901,2,28.0,3,0.0,1,111,4,0,55,5.0,0.0,0.0,90.04425831590358,0.0,0.0,18427.0,0,10,2,12618,201101901,,,,610.0,1.0,0.0,3.0,0.0,1.0,1.0,4624.499296304439,0.0,66.0,0.0,0.0,16888.0,0,3,3,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,90.04425831590358,0.0048865392259132565,0.00533184855020746,16888.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -1902,2,58.0,2,0.0,99,111,2,63,56,10.0,0.0,0.0,573.00891655575,0.0,1053.1736544110752,28265.0,50,70,2,12620,201101902,,,174.0,,2.0,0.0,3.0,0.0,2.0,1.5,2016.632464852148,0.0,420.0,606.0,0.0,64456.0,1,1,1,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1626.182570966825,0.05753343608585972,0.02522934359821933,42970.666666666664,10,5,10,10_0,10_3,10_0_0 -1903,2,73.0,2,0.0,1,120,5,71,71,3.0,0.0,346.98157989085996,472.0502026864036,260.6865481215533,0.0,18848.0,50,70,1,12621,201101903,,,,,0.0,8.0,8.0,0.0,2.0,1.5,1638.0698919435501,0.0,346.0,0.0,0.0,19556.0,5,5,1,234.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1079.7183306988168,0.05728556508376575,0.05521161437404463,13037.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -1904,0,25.0,1,0.0,5,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,6500.0,0,20,2,12622,201101904,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2832.0033278239366,0.0,0.0,0.0,0.0,4949.0,0,3,5,37.0,8,7.0,1,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,4949.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -1905,2,63.0,2,0.0,3,111,1,72,74,10.0,0.0,0.0,532.0797082303393,0.0,0.0,75838.0,20,60,2,12626,201101905,,,,,0.0,0.0,4.0,0.0,2.0,1.5,2592.4335987782324,0.0,390.0,0.0,0.0,82768.0,4,5,1,90.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,532.0797082303393,0.007016003958837776,0.0064285679034208785,55178.666666666664,10,5,10,10_0,10_4,10_0_1 -1906,2,41.0,3,0.0,8,111,2,85,23,10.0,0.0,0.0,2455.752499524643,0.0,2259.283417053462,88291.0,50,43,1,12627,201101906,,,1500.0,,1.0,1.0,5.0,3.0,5.0,2.8,2956.6031260661607,0.0,1800.0,1300.0,0.0,125660.0,6,1,1,115.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4715.035916578105,0.05340335840094806,0.03752217027358033,44878.571428571435,10,5,10,10_1,10_3,10_0_0 -1907,1,44.0,3,192.0,1,111,1,46,47,5.0,0.0,0.0,744.9115915224751,0.0,1352.0942295904563,26594.0,31,71,2,12628,201101907,688.0,688.0,,91.0,2.0,5.0,3.0,0.0,2.0,1.5,3236.3561885538916,0.0,546.0,778.0,0.0,26005.0,4,1,3,56.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,2097.0058211129312,0.07885259160385542,0.08063856262691525,17336.666666666668,5,3,5,5_0,5_4,5_1_0 -1908,1,20.0,2,170.0,99,111,1,0,46,4.0,0.0,0.0,755.8260470759179,52.13730962431066,0.0,16891.0,0,31,2,12629,201101908,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3511.8993397935337,0.0,554.0,0.0,0.0,15535.0,0,2,3,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,807.9633567002286,0.04783395634954879,0.052009227981990896,15535.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -1909,2,39.0,2,0.0,4,111,1,43,45,8.0,0.0,0.0,427.02807352845184,0.0,729.9223347403492,52864.0,33,30,2,12630,201101909,,,,268.0,2.0,0.0,3.0,1.0,3.0,1.8,4038.9562904348627,0.0,313.0,420.0,0.0,47451.0,4,1,3,59.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1156.950408268801,0.021885411778692514,0.02438200266103562,26361.666666666664,8,4,8,8_0,8_3,8_0_1 -1910,1,46.0,3,120.0,99,111,1,85,53,2.0,0.0,0.0,750.3688192991965,0.0,312.82385774586396,21113.0,71,50,2,12631,201101910,,,,,1.0,0.0,4.0,5.0,7.0,3.2,2273.2874805678885,0.0,550.0,180.0,0.0,32554.0,6,1,3,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1063.1926770450605,0.050357252737415835,0.032659356055939684,10173.125,2,1,2_1,2_0_1,2_4_1,2_0_0 -1911,2,81.0,2,0.0,3,120,2,74,74,8.0,2379.684013708323,527.4120014341072,600.2950554393572,145.98446694806984,0.0,36483.0,41,41,1,12632,201101911,,,336.0,,0.0,4.0,5.0,0.0,2.0,1.5,1905.4050381312477,0.0,440.0,0.0,0.0,42611.0,5,5,1,135.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3653.375537529858,0.1001391206186404,0.08573785026237023,28407.333333333332,8,4,8,8_1,8_1,8_0_1 -1912,1,27.0,4,312.0,4,111,1,85,63,1.0,0.0,0.0,540.2655498954215,0.0,458.8083246939338,14915.0,60,71,2,12633,201101912,,,396.0,38.0,1.0,0.0,4.0,3.0,5.0,2.4,4141.385031940223,0.0,396.0,264.0,0.0,16781.0,6,4,3,72.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,999.0738745893552,0.06698450382764702,0.05953601540965111,6992.083333333334,1,1,1_1,1_0_1,1_3_1,1_0_1 -1913,2,72.0,2,0.0,5,112,2,77,78,4.0,3371.219019420125,0.0,401.10624158902505,194.64595593075978,0.0,51287.0,70,50,1,12634,201101913,,,305.0,,0.0,1.0,4.0,0.0,2.0,1.5,2040.1052341692953,0.0,294.0,0.0,0.0,23410.0,5,5,1,75.0,9,3.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3966.97121693991,0.0773484746025291,0.16945626727637378,15606.666666666666,4,2,4_0,4_1_0,4_1_0,4_0_0 -1914,2,24.0,2,0.0,6,300,4,55,63,8.0,0.0,0.0,1800.8851663180715,97.32297796537989,0.0,36700.0,43,43,1,12637,201101914,,,180.0,402.0,2.0,0.0,4.0,1.0,3.0,1.8,2362.9255322895056,0.0,1320.0,0.0,0.0,47019.0,1,1,3,87.0,0,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1898.2081442834515,0.05172229275976707,0.04037108709848043,26121.666666666664,8,4,8,8_1,8_1,8_0_0 -1915,2,76.0,4,0.0,1,111,2,74,74,8.0,0.0,0.0,600.2950554393572,0.0,3011.7985859643454,31387.0,10,10,2,12638,201101915,,,404.0,800.0,0.0,2.0,3.0,0.0,2.0,1.5,1594.8047855475547,0.0,440.0,1733.0,0.0,38061.0,5,5,3,100.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3612.0936414037023,0.11508247495471699,0.0949027519351489,25374.0,8,4,8,8_0,8_3,8_1_0 -1916,1,22.0,2,280.0,8,300,4,52,67,5.0,0.0,0.0,1091.4455553442858,97.32297796537989,0.0,30807.0,41,42,2,12639,201101916,,,,165.0,2.0,0.0,3.0,1.0,3.0,1.8,3264.734158911762,0.0,800.0,0.0,0.0,30927.0,1,1,3,95.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1188.7685333096656,0.038587611040012515,0.03843788706662999,17181.666666666668,5,3,5,5_0,5_0,5_0_0 -1917,2,26.0,4,0.0,9,111,2,0,43,6.0,0.0,0.0,1337.02080529675,0.0,0.0,16022.0,0,33,2,1264,201101917,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2783.166518212529,0.0,980.0,0.0,0.0,20661.0,0,1,2,40.0,4,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1337.02080529675,0.08344905787646674,0.0647122987898335,20661.0,6,3,6,6_0,6_2,6_0_0 -1918,2,35.0,1,0.0,1,111,6,0,33,9.0,0.0,0.0,491.1504999049286,0.0,0.0,23417.0,0,10,2,12641,201101918,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3794.7116316520655,0.0,360.0,0.0,0.0,33655.0,0,1,1,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,491.1504999049286,0.020974100008751276,0.014593685927943207,33655.0,9,5,9,9_0,9_4,9_1_0 -1919,1,67.0,3,165.0,1,111,6,0,86,2.0,285.5620816449988,0.0,143.2522291389375,0.0,0.0,9744.0,0,71,2,12645,201101919,,,,300.0,0.0,2.0,1.0,0.0,1.0,1.0,2973.4257187660937,0.0,105.0,0.0,0.0,10780.0,0,6,3,25.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,428.8143107839363,0.04400803682101153,0.039778693022628604,10780.0,2,1,2_1,2_0_1,2_4_1,2_1_0 -1920,2,68.0,4,0.0,4,112,2,0,56,3.0,1427.810408224994,0.0,491.1504999049286,0.0,0.0,15699.0,0,71,1,12647,201101920,,,,485.0,1.0,9.0,4.0,0.0,1.0,1.0,1995.657176388602,0.0,360.0,0.0,0.0,13789.0,0,5,3,70.0,8,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1918.9609081299227,0.12223459507802552,0.1391660677445734,13789.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -1921,2,85.0,2,0.0,1,111,2,77,75,10.0,0.0,0.0,544.3584707279625,0.0,2751.1120378427922,43288.0,60,70,1,12648,201101921,,,320.0,,0.0,2.0,5.0,0.0,2.0,1.5,3115.305781622403,0.0,399.0,1583.0,0.0,85388.0,5,5,1,150.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3295.4705085707546,0.07612896203499249,0.03859407069577405,56925.333333333336,10,5,10,10_1,10_2,10_1_0 -1922,2,57.0,4,0.0,1,400,5,0,56,2.0,0.0,1457.3226355416118,1500.737638598393,208.54923849724264,0.0,22487.0,0,70,1,12649,201101922,,,222.0,,1.0,3.0,2.0,0.0,1.0,1.0,1749.266467281666,0.0,1100.0,0.0,0.0,9550.0,0,1,5,70.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3166.6095126372475,0.14081956297581924,0.33158214792013063,9550.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -1923,2,77.0,3,0.0,1,112,2,71,71,2.0,0.0,0.0,0.0,194.64595593075978,0.0,11527.0,70,71,1,12651,201101923,,,183.0,,0.0,4.0,4.0,0.0,2.0,1.5,2708.2214782463784,0.0,0.0,0.0,0.0,17237.0,5,5,1,90.0,9,0.0,3,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,194.64595593075978,0.01688608969643097,0.01129233369674304,11491.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -1924,1,65.0,4,108.0,1,400,2,0,75,2.0,0.0,2081.88947934516,671.2390165367358,2606.865481215533,0.0,47036.0,0,70,1,12652,201101924,,,541.0,,0.0,2.0,5.0,2.0,4.0,2.1,1937.7643667858474,0.0,492.0,0.0,0.0,20716.0,0,5,1,121.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,5359.993977097429,0.11395514025634469,0.2587369172184509,9864.761904761905,1,1,1_1,1_1_1,1_0_1,1_1_0 -1925,2,74.0,1,0.0,3,111,2,0,75,7.0,0.0,0.0,793.252341052237,0.0,2296.765869576464,13826.0,0,50,1,12653,201101925,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2219.644781638343,565.0,366.0,972.0,0.0,22163.0,0,5,1,91.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3090.018210628701,0.22349328877684804,0.13942238012131486,22163.0,7,4,7,7_1,7_3,7_0_1 -1926,1,42.0,3,324.0,2,211,2,0,52,2.0,0.0,0.0,1009.5871386934643,0.0,1251.2954309834558,15829.0,0,50,2,12654,201101926,,,158.0,,1.0,0.0,5.0,2.0,3.0,1.8,1602.584480461569,0.0,740.0,720.0,0.0,17285.0,0,4,3,130.0,2,3.0,2,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,2260.88256967692,0.14283167412198622,0.1308002643723992,9602.777777777777,1,1,1_1,1_0_1,1_1_1,1_0_1 -1927,2,56.0,4,0.0,2,111,2,0,63,3.0,3077.7246577294313,0.0,150.0737638598393,0.0,0.0,20938.0,0,60,1,12655,201101927,,,405.0,,1.0,1.0,6.0,1.0,2.0,1.5,1759.0812068757248,0.0,110.0,0.0,0.0,20970.0,0,1,1,140.0,6,4.0,2,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3227.7984215892707,0.15415982527410788,0.15392457899805773,13980.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -1928,2,60.0,2,0.0,7,111,2,0,75,10.0,0.0,0.0,2034.9871413337967,0.0,356.9834628895596,26512.0,0,50,1,12656,201101928,,,135.0,,0.0,0.0,4.0,0.0,1.0,1.0,2560.3972777102067,332.0,1365.0,0.0,0.0,37870.0,0,6,1,87.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2391.970604223356,0.09022218633914288,0.06316267769272131,37870.0,10,5,10,10_1,10_4,10_0_0 -1929,2,41.0,3,0.0,8,111,4,52,48,9.0,0.0,0.0,1309.734666413143,208.54923849724264,0.0,39989.0,50,50,1,12657,201101929,,,,,3.0,1.0,4.0,2.0,4.0,2.3,2661.0266710273563,0.0,960.0,0.0,0.0,66740.0,1,1,2,90.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1518.2839049103857,0.03796753869590101,0.022749234415798406,29017.391304347828,8,4,8,8_1,8_3,8_0_0 -1930,2,51.0,3,0.0,4,111,2,54,48,4.0,0.0,0.0,654.8673332065715,0.0,3128.2385774586396,36672.0,50,42,1,12658,201101930,,,480.0,,2.0,1.0,4.0,1.0,3.0,2.0,1059.8622170401243,0.0,480.0,1800.0,0.0,31902.0,1,1,1,90.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3783.105910665211,0.1031606105656962,0.11858522696587083,15951.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -1931,2,50.0,9,0.0,2,111,2,67,56,6.0,0.0,0.0,450.22129157951787,0.0,1199.158121359145,28774.0,71,71,2,12659,201101931,,,,338.0,4.0,3.0,5.0,2.0,5.0,2.8,2451.9114539222596,0.0,330.0,690.0,0.0,54750.0,1,1,3,136.0,7,6.0,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1649.3794129386629,0.05732186741289577,0.03012565137787512,19553.57142857143,6,3,6,6_0,6_2,6_0_1 -1932,1,35.0,2,124.0,2,111,1,52,65,4.0,0.0,0.0,436.5782221377143,0.0,347.58206416207105,30161.0,50,41,2,1266,201101932,,,450.0,165.0,2.0,0.0,4.0,3.0,5.0,2.4,2771.966410858274,0.0,320.0,200.0,0.0,37670.0,1,1,3,64.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,784.1602862997854,0.025999147452000444,0.020816572505967225,15695.833333333334,4,2,4_1,4_0_1,4_4_1,4_0_1 -1933,2,56.0,2,0.0,1,112,5,67,42,10.0,0.0,451.076053858118,1650.8114024582324,0.0,0.0,47387.0,50,50,1,12660,201101933,,,310.0,,3.0,2.0,5.0,0.0,3.0,2.0,1019.775346971346,0.0,1210.0,0.0,0.0,115451.0,1,1,1,90.0,7,0.0,5,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2101.8874563163504,0.044355782309839206,0.018205883503099585,57725.5,10,5,10,10_1,10_0,10_1_0 -1934,2,60.0,1,0.0,8,221,4,77,74,9.0,0.0,0.0,1296.0915969713394,0.0,0.0,37303.0,50,10,2,12661,201101934,,,,,0.0,3.0,3.0,0.0,2.0,1.5,3905.573103082672,0.0,950.0,0.0,0.0,52994.0,6,5,2,78.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1296.0915969713394,0.03474496949230194,0.02445732718744272,35329.333333333336,9,5,9,9_0,9_1,9_0_0 -1935,2,77.0,3,0.0,1,300,2,0,71,2.0,1427.810408224994,0.0,1219.6904080972395,542.2280200928309,0.0,8842.0,0,71,1,12662,201101935,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2580.195419755277,0.0,894.0,0.0,0.0,9480.0,0,5,1,125.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3189.7288364150645,0.3607474368259517,0.33646928654167346,9480.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -1936,1,55.0,3,100.0,7,112,2,56,64,4.0,0.0,0.0,70.22771669044344,0.0,145.15893822316428,43380.0,50,50,1,12663,201101936,,,85.0,,2.0,1.0,4.0,3.0,5.0,2.8,1149.4100455287778,135.0,0.0,0.0,0.0,41730.0,1,1,3,95.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,215.38665491360774,0.004965114221152783,0.0051614343377332315,14903.57142857143,3,2,3_1,3_1_1,3_0_1,3_0_0 -1937,1,29.0,2,120.0,9,300,2,85,63,3.0,0.0,0.0,1582.5960552492145,86.89551604051776,0.0,28179.0,50,43,1,12664,201101937,,,580.0,,1.0,0.0,5.0,3.0,5.0,2.4,1638.6122276658848,0.0,1160.0,0.0,0.0,31781.0,6,1,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1669.4915712897323,0.05924594809218681,0.0525311214653325,13242.083333333334,3,2,3_1,3_1_1,3_0_1,3_0_0 -1938,2,47.0,2,0.0,2,111,7,85,42,9.0,0.0,0.0,791.2980276246072,0.0,3128.2385774586396,49012.0,50,31,1,12665,201101938,,,370.0,,2.0,2.0,6.0,3.0,5.0,2.8,1892.9552686940217,0.0,580.0,1800.0,0.0,98668.0,7,1,2,110.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3919.5366050832467,0.07997095823641652,0.03972449634210937,35238.57142857143,9,5,9,9_1,9_3,9_0_1 -1939,2,55.0,2,0.0,6,111,4,54,52,9.0,0.0,0.0,2815.1869591959935,0.0,1870.9374259874508,64681.0,50,12,1,12668,201101939,,,,,3.0,0.0,8.0,3.0,5.0,3.0,1651.938852834593,1740.0,1400.0,0.0,0.0,109941.0,1,1,1,140.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4686.124385183444,0.07244978255103422,0.04262399273413416,36647.0,9,5,9,9_1,9_2,9_0_0 -1940,2,39.0,2,0.0,9,300,5,85,56,7.0,0.0,555.170527825376,1728.5768982765126,0.0,0.0,22145.0,10,43,1,1267,201101940,,,170.0,,1.0,0.0,6.0,1.0,3.0,1.8,3699.912724905697,0.0,1267.0,0.0,0.0,41844.0,6,1,2,120.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2283.747426101889,0.1031270005013271,0.05457765572368532,23246.666666666668,7,4,7,7_1,7_0,7_0_0 -1941,2,33.0,3,0.0,8,212,4,63,43,7.0,0.0,0.0,899.0782762148555,0.0,0.0,21898.0,31,41,2,12670,201101941,,,217.0,,2.0,0.0,3.0,1.0,3.0,1.8,2699.7938743192094,0.0,659.0,0.0,0.0,42174.0,1,1,3,65.0,2,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,899.0782762148555,0.041057552115026735,0.021318306924049308,23430.0,7,4,7,7_0,7_0,7_0_0 -1942,1,44.0,3,140.0,9,111,2,85,62,2.0,3172.912018277764,0.0,706.7109970854251,681.2608457576592,0.0,42492.0,71,50,1,12671,201101942,,,600.0,,1.0,0.0,3.0,3.0,5.0,2.4,1509.1738339760277,0.0,518.0,0.0,0.0,25468.0,6,1,2,85.0,6,4.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,4560.883861120848,0.10733511863693986,0.17908292214232954,10611.666666666668,2,1,2_1,2_1_1,2_2_1,2_0_0 -1943,2,46.0,2,0.0,1,400,2,52,62,8.0,1467.471808453466,555.170527825376,1214.233180320518,52.13730962431066,0.0,40805.0,42,71,1,12672,201101943,,,147.0,,4.0,0.0,6.0,2.0,4.0,2.5,2057.388405197322,0.0,890.0,0.0,0.0,69458.0,1,1,1,100.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3289.0128262236703,0.08060318162538097,0.04735254148152366,27783.2,8,4,8,8_1,8_0,8_1_0 -1944,2,81.0,4,0.0,1,112,2,0,78,3.0,0.0,0.0,387.4631721472215,0.0,2247.1180448077894,11962.0,0,70,1,12673,201101944,,,110.0,,0.0,3.0,5.0,0.0,1.0,1.0,3054.8589138315783,0.0,284.0,1293.0,0.0,14022.0,0,5,1,83.0,8,0.0,1,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2634.581216955011,0.22024588003302215,0.1878891183108694,14022.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -1945,2,54.0,3,0.0,5,112,2,75,46,9.0,2379.684013708323,0.0,491.1504999049286,180.74267336427695,0.0,32018.0,70,41,1,12675,201101945,,,220.0,,1.0,2.0,5.0,0.0,2.0,1.5,2000.7434414842792,0.0,360.0,0.0,0.0,45809.0,5,1,1,125.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3051.5771869775285,0.09530817624391057,0.06661523253023485,30539.333333333332,9,5,9,9_1,9_0,9_0_0 -1946,0,82.0,3,0.0,2,111,2,0,71,2.0,0.0,0.0,491.1504999049286,0.0,1564.1192887293198,13944.0,0,70,1,12677,201101946,,,120.0,,0.0,1.0,3.0,0.0,1.0,1.0,1447.8927432038024,0.0,360.0,900.0,0.0,9663.0,0,5,5,69.0,5,4.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2055.2697886342485,0.14739456315506658,0.2126947934010399,9663.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -1947,2,56.0,2,0.0,3,112,2,56,38,10.0,2379.684013708323,0.0,1004.1299109167429,0.0,0.0,35513.0,50,41,1,12678,201101947,,,,,2.0,2.0,6.0,0.0,2.0,1.5,1202.2395926066695,0.0,736.0,0.0,0.0,71844.0,4,1,1,100.0,8,1.0,3,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3383.813924625066,0.09528380943950289,0.04709946445945474,47896.0,10,5,10,10_1,10_1,10_0_1 -1948,2,47.0,2,0.0,3,111,1,0,62,10.0,0.0,0.0,261.9469332826286,0.0,3117.8111155337774,15708.0,0,50,2,12679,201101948,498.0,498.0,,,1.0,0.0,2.0,0.0,1.0,1.0,2748.4629747721065,0.0,192.0,1794.0,0.0,37541.0,0,1,1,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3379.758048816406,0.21516157682813888,0.09002845019622295,37541.0,10,5,10,10_0,10_4,10_0_1 -1949,2,54.0,2,0.0,6,400,6,52,62,5.0,0.0,0.0,1105.0886247860894,208.54923849724264,0.0,41638.0,60,50,1,12681,201101949,,,,,3.0,2.0,5.0,1.0,3.0,2.0,1401.1234900304937,0.0,810.0,0.0,0.0,33961.0,1,1,1,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1313.637863283332,0.0315490144407352,0.03868077687003716,16980.5,4,2,4_0,4_1_0,4_0_0,4_0_0 -1950,2,29.0,3,0.0,99,111,2,52,46,9.0,0.0,0.0,1227.8762497623215,0.0,0.0,36827.0,10,10,2,12683,201101950,,,,771.0,2.0,0.0,2.0,1.0,3.0,1.8,3647.769328195531,0.0,900.0,0.0,0.0,60750.0,1,4,3,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1227.8762497623215,0.033341739749703246,0.020211954728597884,33750.0,9,5,9,9_0,9_4,9_0_0 -1951,2,65.0,5,0.0,9,111,1,78,78,7.0,0.0,0.0,204.6460416270536,0.0,0.0,24189.0,71,71,2,12684,201101951,,,,,0.0,3.0,3.0,0.0,2.0,1.5,3861.4203744379047,0.0,150.0,0.0,0.0,33910.0,5,5,1,80.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,204.6460416270536,0.00846029358911297,0.006034976161222459,22606.666666666668,7,4,7,7_0,7_3,7_0_0 -1952,2,64.0,3,0.0,1,111,2,77,75,8.0,0.0,0.0,1040.4106176361993,0.0,2150.502788491323,30902.0,70,50,1,12686,201101952,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1790.0693528979243,2000.0,0.0,0.0,0.0,42067.0,5,5,1,105.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3190.913406127522,0.10325912258518938,0.07585312492280225,28044.666666666668,8,4,8,8_1,8_4,8_1_0 -1953,2,64.0,3,0.0,1,221,2,72,77,2.0,0.0,0.0,982.3009998098572,0.0,3098.6941020048635,22605.0,60,70,1,12688,201101953,,,246.0,,0.0,2.0,4.0,0.0,2.0,1.5,2757.7571674973756,0.0,720.0,1783.0,0.0,15675.0,5,5,1,250.0,1,2.0,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4080.995101814721,0.18053506311943024,0.2603505647090731,10450.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -1954,2,34.0,3,0.0,1,111,1,43,37,8.0,0.0,0.0,586.6519859975537,0.0,0.0,43857.0,20,10,2,1269,201101954,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2185.536960445404,0.0,430.0,0.0,0.0,47898.0,1,1,2,90.0,9,7.0,4,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,586.6519859975537,0.013376473219726695,0.01224794325436456,26610.0,8,4,8,8_0,8_3,8_1_0 -1955,2,60.0,2,0.0,5,221,4,86,75,6.0,0.0,0.0,847.2346123360019,79.94387475727635,0.0,26980.0,70,50,1,12690,201101955,,,,,0.0,6.0,3.0,0.0,2.0,1.5,1240.3276305359268,0.0,621.0,0.0,0.0,29700.0,5,5,1,110.0,1,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,927.1784870932782,0.03436539981813485,0.031218130878561557,19800.0,6,3,6,6_1,6_1,6_0_0 -1956,1,76.0,4,142.0,1,111,2,0,78,4.0,0.0,0.0,474.77881657476433,0.0,1397.2798979315255,6636.0,0,71,2,12691,201101956,,,,346.0,0.0,8.0,2.0,0.0,1.0,1.0,4015.442036484052,0.0,348.0,804.0,0.0,15084.0,0,5,3,35.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1872.0587145062898,0.28210649706243063,0.12410890443558006,15084.0,4,2,4_1,4_0_1,4_3_1,4_1_0 -1957,2,42.0,5,0.0,1,400,2,56,47,2.0,0.0,693.9631597817199,1571.6815996957716,251.99699651750151,0.0,34135.0,42,42,1,12692,201101957,,,225.0,,2.0,0.0,4.0,2.0,4.0,2.3,3257.3203717486576,0.0,1152.0,0.0,0.0,27506.0,1,1,1,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2517.641755994993,0.07375543448059158,0.09153063898767518,11959.13043478261,2,1,2_0,2_1_0,2_0_0,2_1_0 -1958,2,73.0,2,0.0,3,221,2,0,78,7.0,1427.810408224994,0.0,368.36287492869644,173.79103208103552,0.0,16833.0,0,71,1,12694,201101958,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2765.65073345518,0.0,270.0,0.0,0.0,23140.0,0,5,1,86.0,1,2.0,1,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1969.9643152347262,0.11702990050702347,0.08513242503175135,23140.0,7,4,7,7_1,7_1,7_0_1 -1959,2,46.0,3,0.0,7,111,2,56,55,4.0,0.0,0.0,405.7601408781176,0.0,838.6960875116158,30732.0,50,50,1,12695,201101959,,,,,2.0,0.0,5.0,3.0,5.0,2.8,1447.866914619467,780.0,0.0,0.0,0.0,45644.0,4,1,1,116.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1244.4562283897335,0.04049382495085688,0.02726439900950253,16301.428571428572,4,2,4_0,4_1_0,4_4_0,4_0_0 -1960,1,35.0,4,188.0,9,111,2,67,68,3.0,0.0,0.0,1091.4455553442858,0.0,1390.3282566482842,23196.0,71,43,1,12696,201101960,,,90.0,197.0,2.0,0.0,3.0,2.0,4.0,2.1,2424.8429811973033,0.0,800.0,800.0,0.0,26258.0,1,1,3,75.0,6,5.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2481.77381199257,0.10699145594035911,0.09451495970723474,12503.809523809523,2,1,2_1,2_1_1,2_2_1,2_0_0 -1961,1,51.0,4,258.0,3,111,1,0,85,1.0,0.0,0.0,272.86138883607146,0.0,156.41192887293198,7261.0,0,50,2,12697,201101961,,,150.0,15.0,0.0,2.0,3.0,0.0,1.0,1.0,3739.030464106389,0.0,200.0,90.0,0.0,8855.0,0,7,3,70.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,429.27331770900344,0.05912041285070974,0.04847807088752156,8855.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -1962,1,65.0,4,115.0,3,211,2,0,77,2.0,0.0,0.0,654.8673332065715,0.0,834.1969539889706,7598.0,0,70,2,12698,201101962,,,156.0,,0.0,3.0,2.0,0.0,1.0,1.0,2188.927906134064,0.0,480.0,480.0,0.0,10908.0,0,5,3,51.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1489.064287195542,0.19598108544295104,0.1365112107806694,10908.0,2,1,2_1,2_0_1,2_1_1,2_0_1 -1963,2,30.0,3,0.0,3,111,2,0,46,5.0,0.0,0.0,395.6490138123036,0.0,1557.1676474460783,26157.0,0,50,2,1270,201101963,,,,249.0,1.0,0.0,4.0,0.0,1.0,1.0,3420.6594445490564,0.0,290.0,896.0,0.0,18311.0,0,1,3,63.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1952.8166612583818,0.0746575165828796,0.1066471880977763,18311.0,5,3,5,5_0,5_3,5_0_1 -1964,2,53.0,3,0.0,5,300,2,56,67,6.0,1903.7472109666587,0.0,1896.3866524106966,93.84715732375918,0.0,67380.0,50,50,1,12700,201101964,,,100.0,,2.0,3.0,5.0,0.0,2.0,1.5,1206.7978942722218,0.0,1390.0,0.0,0.0,31980.0,1,1,1,170.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3893.9810207011146,0.0577913478881139,0.12176300877739571,21320.0,6,3,6,6_1,6_0,6_0_0 -1965,2,79.0,3,0.0,1,111,2,0,78,5.0,0.0,0.0,684.4111603284074,0.0,893.8857893662087,16771.0,0,50,2,12701,201101965,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3532.4042836788853,104.0,462.0,450.0,0.0,16750.0,0,5,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1578.2969496946162,0.09410869654132825,0.09422668356385767,16750.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -1966,2,56.0,2,0.0,6,300,5,56,65,5.0,0.0,1151.9788452376552,1309.734666413143,0.0,0.0,48363.0,60,60,1,12702,201101966,,,228.0,,2.0,1.0,5.0,1.0,3.0,2.0,1106.7319040524724,0.0,960.0,0.0,0.0,34855.0,1,1,1,100.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2461.713511650798,0.05090076115317077,0.07062727045332945,17427.5,5,3,5,5_1,5_0,5_0_0 -1967,2,44.0,3,0.0,7,111,2,68,68,3.0,0.0,0.0,545.7227776721429,0.0,868.9551604051776,31536.0,71,50,1,12703,201101967,,,350.0,,2.0,0.0,4.0,3.0,5.0,2.8,4793.456049440735,0.0,400.0,500.0,0.0,36493.0,4,1,2,88.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1414.6779380773205,0.044859143140452834,0.038765734197717935,13033.214285714286,3,2,3_0,3_1_0,3_4_0,3_0_0 -1968,2,73.0,2,0.0,5,111,4,75,75,6.0,0.0,0.0,234.66079439902146,0.0,0.0,33949.0,71,71,1,12706,201101968,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2954.2069423661064,0.0,172.0,0.0,0.0,29380.0,5,5,1,100.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,234.66079439902146,0.0069121563050169805,0.007987093070082418,19586.666666666668,6,3,6,6_1,6_4,6_0_0 -1969,2,31.0,3,0.0,4,111,2,54,55,6.0,634.5824036555529,0.0,1195.132883101993,38.23402705782782,0.0,24845.0,50,31,1,12707,201101969,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2106.8538193446325,0.0,876.0,0.0,0.0,29183.0,1,1,3,90.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1867.949313815374,0.07518411405978563,0.06400813191979488,19455.333333333332,6,3,6,6_1,6_3,6_0_1 -1970,2,23.0,2,0.0,1,111,4,0,47,6.0,0.0,0.0,341.0767360450893,0.0,0.0,16284.0,0,31,2,12708,201101970,,,,580.0,1.0,0.0,2.0,0.0,1.0,1.0,3737.1010240918818,0.0,250.0,0.0,0.0,21325.0,0,1,3,34.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,341.0767360450893,0.02094551314450315,0.01599421974420114,21325.0,6,3,6,6_0,6_4,6_1_0 -1971,2,56.0,2,0.0,2,111,2,63,63,10.0,0.0,0.0,95.501486092625,0.0,260.6865481215533,68702.0,50,50,2,1271,201101971,,,,,2.0,1.0,4.0,0.0,2.0,1.5,1755.3659889898174,0.0,70.0,150.0,0.0,56730.0,1,1,2,87.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,356.1880342141783,0.005184536610494284,0.006278653872980404,37820.0,10,5,10,10_0,10_3,10_0_1 -1972,2,42.0,2,0.0,4,111,2,22,38,10.0,0.0,0.0,764.011888741,0.0,2850.1729261289825,65943.0,10,12,1,12711,201101972,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2350.2040753698425,0.0,560.0,1640.0,0.0,81475.0,1,1,3,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3614.1848148699823,0.05480770991416803,0.0443594331374039,38797.619047619046,10,5,10,10_1,10_4,10_0_1 -1973,2,77.0,2,0.0,4,111,2,75,75,7.0,4442.07682558887,0.0,641.2242637647679,234.61789330939797,0.0,28651.0,70,71,1,12712,201101973,,,,,0.0,1.0,3.0,0.0,2.0,1.5,1921.3597685853647,0.0,470.0,0.0,0.0,35970.0,5,5,1,95.0,6,4.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,5317.918982663035,0.18561023987515393,0.1478431743859615,23980.0,7,4,7,7_1,7_2,7_0_1 -1974,2,62.0,3,0.0,4,111,1,0,22,10.0,0.0,0.0,654.8673332065715,0.0,0.0,37183.0,0,60,2,12713,201101974,,,300.0,,1.0,0.0,3.0,0.0,1.0,1.0,3077.8917047537343,0.0,480.0,0.0,0.0,40741.0,0,1,1,80.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,654.8673332065715,0.017612009068837142,0.016073914071980843,40741.0,10,5,10,10_0,10_2,10_0_1 -1975,2,42.0,3,0.0,2,111,5,52,45,7.0,0.0,291.4645271083224,1828.1713052016787,62.56477154917279,0.0,45333.0,31,42,1,12714,201101975,,,600.0,,2.0,0.0,3.0,2.0,4.0,2.1,5719.391869764487,0.0,1340.0,0.0,0.0,49321.0,1,1,2,90.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2182.200603859174,0.04813713197580513,0.044244857238482066,23486.190476190473,7,4,7,7_1,7_2,7_0_1 -1976,2,57.0,2,0.0,99,111,1,56,62,7.0,0.0,0.0,627.5811943229643,0.0,703.8536799281939,64801.0,50,50,2,12715,201101976,,,,366.0,3.0,0.0,4.0,1.0,3.0,2.0,2302.3984578066443,0.0,460.0,405.0,0.0,48379.0,1,1,3,82.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1331.4348742511581,0.020546517403298686,0.02752092590279167,24189.5,7,4,7,7_0,7_3,7_0_0 -1977,2,69.0,1,0.0,6,111,2,0,75,8.0,0.0,0.0,573.00891655575,0.0,0.0,17942.0,0,50,2,12716,201101977,,,85.0,,0.0,0.0,2.0,0.0,1.0,1.0,4101.3968420908795,0.0,420.0,0.0,0.0,27893.0,0,5,3,33.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,573.00891655575,0.0319367359578503,0.020543108183262826,27893.0,8,4,8,8_0,8_2,8_0_0 -1978,1,30.0,3,278.0,1,300,6,0,55,4.0,3014.2664173638764,0.0,709.4396109737858,0.0,0.0,13074.0,0,43,1,12717,201101978,,,100.0,,1.0,0.0,3.0,1.0,2.0,1.3,1719.041424502332,0.0,520.0,0.0,0.0,20173.0,0,1,3,70.0,0,0.0,2,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3723.7060283376622,0.2848176555252916,0.18458860994089438,15517.692307692307,4,2,4_1,4_1_1,4_0_1,4_1_0 -1979,1,22.0,3,170.0,99,111,1,0,34,1.0,0.0,0.0,245.5752499524643,0.0,0.0,21198.0,0,41,2,12718,201101979,,,,380.0,1.0,0.0,3.0,0.0,1.0,1.0,3942.6119157141193,0.0,180.0,0.0,0.0,3623.0,0,3,3,55.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,245.5752499524643,0.011584831113900572,0.0677822936661508,3623.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -1980,2,45.0,3,0.0,6,221,4,0,46,6.0,0.0,0.0,2592.183193942679,0.0,0.0,99900.0,0,50,1,1272,201101980,,,,,1.0,0.0,6.0,2.0,3.0,1.8,2959.0593516268495,0.0,1900.0,0.0,0.0,34711.0,0,1,2,110.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2592.183193942679,0.025947779719145934,0.07467901224230586,19283.888888888887,6,3,6,6_1,6_1,6_0_0 -1981,2,56.0,4,0.0,2,221,1,68,53,2.0,0.0,0.0,504.79356934673217,100.7987986070006,0.0,20454.0,71,50,2,12720,201101981,,,,222.0,2.0,1.0,3.0,0.0,2.0,1.5,4750.640972308391,0.0,370.0,0.0,0.0,17528.0,4,1,3,74.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,605.5923679537327,0.029607527522916434,0.03454999817170999,11685.333333333334,2,1,2_0,2_0_0,2_1_0,2_0_1 -1982,0,52.0,3,0.0,2,111,2,77,85,5.0,0.0,0.0,1236.0620914274036,0.0,2572.1072747993258,29707.0,71,41,1,12721,201101982,,,256.0,,0.0,6.0,5.0,1.0,3.0,2.0,2215.6436715137993,0.0,906.0,1480.0,0.0,34199.0,5,5,5,120.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3808.1693662267294,0.1281909774203632,0.11135323741123218,17099.5,5,3,5,5_1,5_3,5_0_1 -1983,2,36.0,2,0.0,3,112,5,56,62,7.0,0.0,736.9888756881866,570.2803026673894,0.0,0.0,27588.0,41,43,1,12722,201101983,,,167.0,,2.0,0.0,3.0,1.0,3.0,1.8,2014.284693499496,0.0,418.0,0.0,0.0,40252.0,1,1,2,70.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1307.269178355576,0.047385427662591566,0.0324771235803333,22362.222222222223,7,4,7,7_1,7_0,7_0_1 -1984,2,38.0,3,0.0,2,111,2,0,62,5.0,0.0,0.0,409.2920832541072,0.0,1737.9103208103552,14622.0,0,50,1,12723,201101984,,,280.0,,1.0,0.0,4.0,1.0,2.0,1.5,1510.438366207455,0.0,300.0,1000.0,0.0,28391.0,0,1,3,92.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2147.2024040644624,0.1468473809372495,0.07562968560686352,18927.333333333332,5,3,5,5_1,5_2,5_0_1 -1985,2,55.0,3,0.0,1,212,5,52,52,3.0,0.0,485.77421184720396,1214.233180320518,0.0,0.0,31053.0,70,50,1,12724,201101985,,,355.0,,3.0,0.0,4.0,1.0,3.0,2.0,891.3132713707024,0.0,890.0,0.0,0.0,27655.0,1,1,1,95.0,2,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1700.007392167722,0.0547453512436068,0.0614719722353181,13827.5,3,2,3_0,3_1_0,3_0_0,3_1_0 -1986,2,61.0,2,0.0,1,111,4,0,37,10.0,0.0,0.0,1637.1683330164287,0.0,0.0,74464.0,0,30,2,12725,201101986,,,,1662.0,1.0,2.0,4.0,0.0,1.0,1.0,2936.837655184849,0.0,1200.0,0.0,0.0,92577.0,0,1,3,92.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1637.1683330164287,0.021986037991733303,0.01768439604887206,92577.0,10,5,10,10_0,10_4,10_1_0 -1987,2,40.0,3,0.0,4,212,5,55,62,4.0,0.0,624.566843803548,1350.6638747385537,180.74267336427695,0.0,25876.0,71,50,1,12726,201101987,,,,,2.0,0.0,6.0,3.0,5.0,2.6,1339.3678879506638,0.0,990.0,0.0,0.0,40296.0,1,1,2,134.0,3,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2155.9733919063788,0.08331942309114156,0.05350340956686467,15498.461538461537,4,2,4_0,4_1_0,4_0_0,4_0_1 -1988,1,54.0,5,233.0,4,111,2,0,56,1.0,0.0,0.0,682.1534720901786,0.0,834.1969539889706,8008.0,0,41,2,12730,201101988,,,,,1.0,0.0,2.0,1.0,2.0,1.5,3930.6915143969,0.0,500.0,480.0,0.0,10579.0,0,4,3,47.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1516.3504260791492,0.18935444881108257,0.14333589432641547,7052.666666666667,1,1,1_1,1_0_1,1_3_1,1_0_1 -1989,1,22.0,3,66.0,1,112,1,0,55,1.0,0.0,0.0,409.2920832541072,48.661488982689946,0.0,20334.0,0,50,2,12731,201101989,,,,364.0,1.0,0.0,5.0,0.0,1.0,1.0,2737.53478585079,0.0,300.0,0.0,0.0,9172.0,0,1,3,75.0,7,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,457.95357223679713,0.022521568419238573,0.04992952161325743,9172.0,1,1,1_1,1_0_1,1_1_1,1_1_0 -1990,2,53.0,2,0.0,6,400,4,42,42,8.0,0.0,333.10231669522557,2697.2348286445663,156.41192887293198,0.0,48032.0,41,41,1,12732,201101990,,,756.0,,2.0,2.0,6.0,2.0,4.0,2.5,1977.8860499090956,0.0,1977.0,0.0,0.0,62883.0,1,1,1,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3186.749074212724,0.06634637479623426,0.05067743387263209,25153.2,8,4,8,8_1,8_0,8_0_0 -1991,2,48.0,1,0.0,7,111,2,47,33,9.0,0.0,0.0,9532.433799734463,0.0,18607.778824010333,97309.0,33,20,1,12733,201101991,,,450.0,,2.0,0.0,6.0,2.0,4.0,2.5,4056.7075021702935,15964.0,900.0,830.0,0.0,79255.0,1,1,1,117.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,28140.212623744796,0.2891840695490119,0.3550591460948179,31702.0,9,5,9,9_1,9_3,9_0_0 -1992,1,51.0,4,177.0,1,300,5,0,85,1.0,0.0,444.1364222603008,436.5782221377143,121.65372245672486,0.0,12697.0,0,31,1,12734,201101992,,,230.0,,0.0,3.0,4.0,1.0,2.0,1.3,2735.4888403023438,0.0,320.0,0.0,0.0,11104.0,0,5,3,90.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1002.3683668547399,0.0789452915534961,0.09027092640982888,8541.538461538461,1,1,1_1,1_1_1,1_0_1,1_1_0 -1993,1,53.0,4,182.0,3,111,1,0,52,2.0,0.0,0.0,682.1534720901786,0.0,312.82385774586396,20363.0,0,70,2,12735,201101993,,,300.0,60.0,2.0,0.0,4.0,1.0,2.0,1.5,2596.661249827646,0.0,500.0,180.0,0.0,16854.0,0,1,3,60.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,994.9773298360426,0.04886202081402753,0.05903508542993014,11236.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -1994,2,44.0,2,0.0,4,111,2,43,46,8.0,0.0,0.0,571.782322771734,0.0,854.8764531489783,59804.0,50,12,1,12736,201101994,,,,,2.0,0.0,5.0,3.0,5.0,2.6,2240.635571083702,155.0,360.0,396.0,0.0,71548.0,1,1,1,91.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1426.6587759207123,0.023855574475297844,0.019939883377882155,27518.46153846154,8,4,8,8_1,8_4,8_0_1 -1995,2,49.0,3,0.0,6,112,2,54,46,7.0,0.0,416.377895869032,886.7995137172322,180.74267336427695,0.0,47297.0,50,71,1,12737,201101995,,,210.0,,3.0,1.0,4.0,1.0,3.0,2.0,2392.8511913977036,0.0,650.0,0.0,0.0,48644.0,1,1,1,125.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1483.9200829505412,0.03137450753643024,0.030505716695800947,24322.0,7,4,7,7_1,7_0,7_0_0 -1996,2,28.0,2,0.0,1,112,2,54,67,7.0,0.0,832.755791738064,1637.1683330164287,0.0,695.1641283241421,48192.0,42,50,1,1274,201101996,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3314.85165429905,0.0,1200.0,400.0,0.0,34695.0,1,1,3,90.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3165.088253078635,0.06567663207749491,0.09122606292199553,23130.0,7,4,7,7_1,7_0,7_1_0 -1997,2,56.0,4,0.0,2,111,2,85,34,9.0,0.0,0.0,545.7227776721429,0.0,1390.3282566482842,58624.0,41,31,2,12740,201101997,,,,361.0,2.0,1.0,4.0,1.0,3.0,2.0,2398.324984006191,0.0,400.0,800.0,0.0,60055.0,6,1,3,88.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1936.051034320427,0.03302488800355532,0.03223796577005124,30027.5,9,5,9,9_0,9_3,9_0_1 -1998,2,74.0,4,0.0,4,111,2,0,78,3.0,0.0,0.0,811.5202817562352,0.0,1677.3921750232316,16350.0,0,50,1,12743,201101998,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2362.97968837784,1560.0,0.0,0.0,0.0,13160.0,0,6,5,90.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2488.912456779467,0.1522270615767258,0.18912708638141845,13160.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -1999,2,76.0,3,0.0,1,112,2,0,78,5.0,0.0,0.0,422.93515269591074,133.81909470239736,2155.0087978048405,14460.0,0,71,1,12744,201101999,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2513.779507901521,0.0,310.0,1240.0,0.0,18245.0,0,5,1,80.0,8,1.0,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2711.7630452031485,0.18753548030450543,0.14863047658005746,18245.0,5,3,5,5_1,5_1,5_1_0 -2000,2,81.0,2,0.0,6,111,4,0,77,7.0,0.0,0.0,1487.0945691565894,0.0,0.0,26263.0,0,70,1,12745,201102000,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2956.52726081193,0.0,1090.0,0.0,0.0,24461.0,0,5,1,85.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1487.0945691565894,0.05662317972648172,0.06079451245478882,24461.0,7,4,7,7_1,7_3,7_0_0 -2001,2,46.0,3,0.0,3,111,2,0,35,4.0,0.0,0.0,409.2920832541072,0.0,1555.429737125268,34098.0,0,20,1,12746,201102001,,,135.0,,1.0,0.0,5.0,2.0,3.0,2.0,1290.7749603464752,0.0,300.0,895.0,0.0,31747.0,0,1,2,172.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1964.7218203793752,0.05761985513459368,0.061886849793031634,15873.5,4,2,4_0,4_1_0,4_2_0,4_0_1 -2002,2,58.0,3,0.0,5,111,1,0,52,7.0,0.0,0.0,504.79356934673217,0.0,0.0,11533.0,0,60,2,12747,201102002,,,,296.0,1.0,2.0,4.0,0.0,1.0,1.0,3612.204967824698,0.0,370.0,0.0,0.0,22110.0,0,1,3,70.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,504.79356934673217,0.04376949357034008,0.02283100720699829,22110.0,7,4,7,7_0,7_3,7_0_0 -2003,2,61.0,2,0.0,1,111,2,45,54,10.0,0.0,0.0,467.9572818538625,0.0,1727.4828588854932,61799.0,60,60,1,12749,201102003,,,268.0,,2.0,3.0,4.0,0.0,2.0,1.5,1561.2768246222638,0.0,343.0,994.0,0.0,87538.0,1,1,1,80.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2195.4401407393557,0.0355254962174041,0.02507985264387301,58358.666666666664,10,5,10,10_1,10_2,10_1_0 -2004,1,42.0,2,152.0,8,112,5,0,42,5.0,0.0,0.0,641.2242637647679,0.0,0.0,12707.0,0,42,1,1275,201102004,,,170.0,269.0,1.0,0.0,5.0,1.0,2.0,1.3,3202.659306010358,0.0,470.0,0.0,0.0,21874.0,0,1,3,85.0,7,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,641.2242637647679,0.050462285650804115,0.029314449289785494,16826.153846153844,4,2,4_1,4_1_1,4_2_1,4_0_0 -2005,2,68.0,2,0.0,1,111,2,0,77,5.0,0.0,0.0,682.1534720901786,0.0,2659.0027908398433,14534.0,0,71,1,12751,201102005,,,110.0,,0.0,2.0,4.0,0.0,1.0,1.0,1753.6252827452652,0.0,500.0,1530.0,0.0,17230.0,0,5,1,79.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3341.156262930022,0.22988552792968364,0.1939150471810808,17230.0,5,3,5,5_1,5_2,5_1_0 -2006,2,34.0,2,0.0,9,111,2,42,62,8.0,0.0,0.0,654.8673332065715,0.0,2085.4923849724264,66860.0,20,31,1,12752,201102006,,,560.0,,2.0,0.0,7.0,3.0,5.0,2.4,1201.801021473911,0.0,480.0,1200.0,0.0,61747.0,1,1,2,176.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2740.359718178998,0.04098653482170203,0.044380451166518176,25727.916666666668,8,4,8,8_1,8_2,8_0_0 -2007,1,27.0,3,173.0,1,120,5,55,68,4.0,0.0,499.65347504283835,573.00891655575,46.92357866187959,0.0,39703.0,71,20,1,12753,201102007,,,,,2.0,0.0,6.0,1.0,3.0,1.8,2631.3032216811266,0.0,420.0,0.0,0.0,29193.0,4,1,3,65.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1119.585970260468,0.028199027032225977,0.03835117905869448,16218.333333333332,4,2,4_1,4_1_1,4_1_1,4_1_0 -2008,2,37.0,3,0.0,99,112,5,54,62,7.0,0.0,0.0,925.0001081542822,0.0,0.0,38456.0,43,50,1,12755,201102008,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2801.591783576714,0.0,678.0,0.0,0.0,45560.0,1,1,2,110.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,925.0001081542822,0.024053466511188948,0.0203028996522011,21695.238095238095,6,3,6,6_1,6_1,6_0_0 -2009,2,66.0,2,0.0,5,221,2,0,77,1.0,0.0,180.43042154324718,582.5590651650125,0.0,521.3730962431066,11622.0,0,50,1,12756,201102009,,,191.0,,0.0,1.0,4.0,0.0,1.0,1.0,1619.2002988431764,0.0,427.0,300.0,0.0,8410.0,0,5,1,93.0,1,3.0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1284.3625829513662,0.11051132188533525,0.15271849975640503,8410.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -2010,2,67.0,4,0.0,4,221,5,78,72,5.0,0.0,485.77421184720396,1296.0915969713394,208.54923849724264,0.0,23182.0,71,70,1,12757,201102010,,,600.0,,0.0,2.0,5.0,0.0,2.0,1.5,2556.539016314835,0.0,950.0,0.0,0.0,26917.0,5,5,1,100.0,1,3.0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1990.415047315786,0.08586036784210965,0.07394639251461106,17944.666666666668,5,3,5,5_1,5_1,5_0_1 -2011,2,62.0,3,0.0,1,400,2,77,77,1.0,0.0,832.755791738064,1364.3069441803573,0.0,0.0,32126.0,60,60,1,12758,201102011,,,750.0,,0.0,2.0,2.0,0.0,2.0,1.5,2381.1169654343007,0.0,1000.0,0.0,0.0,5510.0,7,5,1,40.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2197.0627359184214,0.0683889290891621,0.39874096840624706,3673.3333333333335,1,1,1_0,1_1_0,1_1_0,1_1_0 -2012,2,68.0,4,0.0,5,111,4,0,77,5.0,0.0,0.0,709.4396109737858,0.0,0.0,18527.0,0,70,2,12764,201102012,,,,347.0,0.0,3.0,3.0,0.0,1.0,1.0,3153.7592953276285,0.0,520.0,0.0,0.0,17215.0,0,5,3,60.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,709.4396109737858,0.03829220116445111,0.041210549577332896,17215.0,5,3,5,5_0,5_3,5_0_0 -2013,2,66.0,3,0.0,6,111,5,62,78,5.0,0.0,693.9631597817199,927.728722042643,0.0,0.0,21210.0,50,70,1,12767,201102013,,,312.0,,1.0,1.0,4.0,1.0,3.0,2.0,1512.1058139368824,0.0,680.0,0.0,0.0,35831.0,1,5,1,90.0,7,6.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1621.691881824363,0.07645883459803691,0.04525946476024568,17915.5,5,3,5,5_1,5_2,5_0_0 -2014,2,54.0,3,0.0,4,111,2,85,78,4.0,0.0,0.0,409.2920832541072,0.0,1042.7461924862132,14803.0,71,71,1,12773,201102014,,,300.0,,0.0,1.0,3.0,0.0,2.0,1.5,5146.4471764269665,0.0,300.0,600.0,0.0,24810.0,7,7,2,40.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1452.0382757403204,0.09809081103427146,0.058526331146324884,16540.0,4,2,4_0,4_1_0,4_4_0,4_0_1 -2015,2,54.0,3,0.0,6,120,2,78,62,8.0,0.0,97.1548423694408,2046.460416270536,215.50087978048404,0.0,66445.0,71,71,1,12774,201102015,,,,,1.0,3.0,5.0,0.0,2.0,1.5,7312.153173876718,0.0,1500.0,0.0,0.0,43021.0,5,1,1,90.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2359.1161384204606,0.03550479552141562,0.05483638544944238,28680.666666666668,8,4,8,8_1,8_0,8_0_0 -2016,1,32.0,2,113.0,5,111,2,85,67,3.0,0.0,0.0,654.8673332065715,0.0,1477.223772688802,28751.0,50,41,1,12776,201102016,,,45.0,227.0,1.0,0.0,4.0,3.0,5.0,2.4,1691.76639042509,0.0,480.0,850.0,0.0,33416.0,6,1,3,53.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2132.0911058953734,0.07415711126205604,0.06380449802176721,13923.333333333334,3,2,3_1,3_1_1,3_3_1,3_0_0 -2017,2,72.0,2,0.0,1,111,2,0,75,9.0,0.0,0.0,682.1534720901786,0.0,782.0596443646599,23459.0,0,41,2,12777,201102017,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3317.4568646314747,0.0,500.0,450.0,0.0,36947.0,0,5,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1464.2131164548387,0.062415836841077564,0.03963009490499469,36947.0,9,5,9,9_0,9_4,9_1_0 -2018,2,64.0,2,0.0,9,111,2,78,74,7.0,0.0,0.0,594.8378276626357,0.0,722.9706934571078,46737.0,71,50,1,12778,201102018,,,224.0,,0.0,3.0,3.0,0.0,2.0,1.5,1948.7964116407595,0.0,436.0,416.0,0.0,32427.0,6,5,1,75.0,3,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1317.8085211197435,0.028196258234797773,0.04063923647330137,21618.0,6,3,6,6_1,6_2,6_0_0 -2019,0,25.0,5,0.0,1,400,4,0,52,5.0,0.0,0.0,1732.6698191090536,0.0,0.0,28555.0,0,31,1,12779,201102019,,,207.0,,1.0,0.0,3.0,0.0,1.0,1.0,2701.628421779937,0.0,1270.0,0.0,0.0,17622.0,0,1,5,70.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1732.6698191090536,0.06067833371070053,0.09832424350862862,17622.0,5,3,5,5_1,5_0,5_1_0 -2020,2,33.0,2,0.0,5,111,1,0,48,8.0,0.0,0.0,245.5752499524643,0.0,0.0,18399.0,0,31,2,1278,201102020,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4200.670547096112,0.0,180.0,0.0,0.0,28680.0,0,1,2,47.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,245.5752499524643,0.013347206367327806,0.008562595883977137,28680.0,8,4,8,8_0,8_3,8_0_0 -2021,2,54.0,2,0.0,8,112,2,52,54,9.0,0.0,0.0,643.9528776531287,0.0,2158.4846184464614,35066.0,60,41,1,12780,201102021,,,605.0,,2.0,2.0,6.0,0.0,2.0,1.5,2520.5988589283056,0.0,472.0,1242.0,0.0,51952.0,1,1,2,150.0,9,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2802.43749609959,0.07991893846174614,0.053942822145434055,34634.666666666664,9,5,9,9_1,9_1,9_0_0 -2022,2,43.0,3,0.0,5,111,4,46,63,7.0,0.0,0.0,1863.643285750368,86.89551604051776,0.0,64772.0,20,50,1,12781,201102022,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,1535.174947086757,0.0,1366.0,0.0,0.0,46301.0,1,1,2,92.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1950.5388017908858,0.030113919622535755,0.042127357979112455,22048.095238095237,7,4,7,7_1,7_3,7_0_0 -2023,2,37.0,3,0.0,1,112,2,0,67,7.0,504.49301090616456,215.1285795323332,469.3215887980429,0.0,0.0,29057.0,0,50,1,12782,201102023,,,121.0,,1.0,1.0,4.0,0.0,1.0,1.0,1697.463643568239,0.0,344.0,0.0,0.0,22096.0,0,1,3,95.0,5,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1188.9431792365406,0.040917616382852344,0.053808072919828955,22096.0,7,4,7,7_1,7_0,7_1_0 -2024,1,31.0,4,170.0,99,111,4,0,63,3.0,0.0,0.0,392.9203999239429,0.0,0.0,14932.0,0,50,2,12783,201102024,,,,560.0,2.0,1.0,4.0,0.0,2.0,1.5,4032.9631997372294,0.0,288.0,0.0,0.0,21192.0,0,4,3,85.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,392.9203999239429,0.026313983386280666,0.018540977723855365,14128.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -2025,1,86.0,4,150.0,1,111,2,86,78,2.0,0.0,0.0,982.3009998098572,0.0,764.6805411565563,7544.0,71,71,2,12785,201102025,,,220.0,250.0,0.0,2.0,3.0,0.0,2.0,1.5,3670.20192791806,0.0,720.0,440.0,0.0,15900.0,6,5,3,60.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1746.9815409664134,0.23157231455016083,0.1098730528909694,10600.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -2026,2,40.0,2,0.0,6,112,2,0,54,9.0,0.0,249.82673752141918,579.5087140233629,0.0,1197.8300531896668,59397.0,0,31,1,12786,201102026,,,347.0,,1.0,0.0,4.0,0.0,1.0,1.0,2158.401651236164,1114.0,0.0,0.0,0.0,33439.0,0,1,2,105.0,9,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2027.1655047344489,0.03412908909093808,0.060622790894896646,33439.0,9,5,9,9_1,9_1,9_0_0 -2027,1,44.0,3,210.0,99,111,2,0,67,6.0,0.0,0.0,1364.3069441803573,114.70208117348345,0.0,21348.0,0,71,1,12788,201102027,,,250.0,670.0,1.0,2.0,3.0,1.0,2.0,1.5,6541.80802850016,0.0,1000.0,0.0,0.0,28724.0,0,1,3,68.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1479.0090253538408,0.06928091743272628,0.051490357378980674,19149.333333333332,5,3,5,5_1,5_3,5_0_0 -2028,1,50.0,3,259.0,99,111,2,0,43,2.0,0.0,0.0,487.0575790723875,0.0,1303.4327406077664,7428.0,0,50,2,1279,201102028,,,,11.0,1.0,1.0,3.0,0.0,1.0,1.0,2915.135785406236,0.0,357.0,750.0,0.0,10268.0,0,4,3,61.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1790.4903196801538,0.24104608504040842,0.17437576155825416,10268.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -2029,2,83.0,3,0.0,1,400,2,71,78,4.0,0.0,1138.0995820420208,474.77881657476433,215.50087978048404,0.0,12810.0,71,70,1,12792,201102029,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2876.310773990306,0.0,348.0,0.0,0.0,24955.0,5,5,1,90.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1828.379278397269,0.14273062282570406,0.07326705182918329,16636.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0 -2030,2,66.0,4,0.0,4,111,2,0,78,3.0,0.0,0.0,1429.7936775010144,0.0,392.7677325031403,18727.0,0,70,1,12793,201102030,,,,,1.0,3.0,5.0,1.0,2.0,1.5,1784.0535616316483,0.0,1048.0,226.0,0.0,19825.0,0,5,1,99.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1822.5614100041546,0.09732265766028486,0.0919324796975614,13216.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_1 -2031,2,65.0,2,0.0,1,120,2,77,75,9.0,2815.9594162215158,0.0,6017.981550803295,187.69431464751835,7645.037413086653,53714.0,60,60,1,12794,201102031,,,750.0,,0.0,2.0,8.0,0.0,2.0,1.5,2360.96014255766,7110.0,1700.0,0.0,0.0,47167.0,6,5,1,320.0,0,1.0,3,5,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,16666.672694758985,0.31028545062290996,0.3533545210583456,31444.666666666668,9,5,9,9_1,9_1,9_1_0 -2032,2,46.0,3,0.0,6,111,6,68,68,5.0,0.0,249.82673752141918,2041.0031884938144,0.0,0.0,28767.0,50,50,1,12796,201102032,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.1,1159.655894808994,0.0,1496.0,0.0,0.0,35529.0,1,1,1,140.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2290.8299260152335,0.07963395300223289,0.0644777484875801,16918.571428571428,4,2,4_0,4_1_0,4_2_0,4_0_0 -2033,1,43.0,4,180.0,2,111,2,0,81,1.0,0.0,0.0,556.6372332255858,0.0,1564.1192887293198,7184.0,0,60,2,12797,201102033,,,,120.0,1.0,0.0,3.0,1.0,2.0,1.3,3617.2937851811594,0.0,408.0,900.0,0.0,9740.0,0,4,3,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2120.7565219549056,0.29520552922534876,0.21773680923561659,7492.307692307692,1,1,1_1,1_0_1,1_3_1,1_0_1 -2034,2,43.0,3,0.0,4,111,2,46,21,5.0,0.0,0.0,682.1534720901786,0.0,2606.865481215533,55516.0,42,41,1,12798,201102034,,,800.0,,2.0,0.0,5.0,2.0,4.0,2.3,2725.34035687828,0.0,500.0,1500.0,0.0,42674.0,1,1,3,100.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3289.0189533057114,0.05924452326006397,0.07707313477306349,18553.913043478264,5,3,5,5_1,5_2,5_0_1 -2035,2,58.0,1,0.0,7,111,2,85,33,8.0,0.0,0.0,866.3349095545268,0.0,1824.805836850873,40731.0,20,10,1,128,201102035,,,140.0,,1.0,2.0,6.0,3.0,5.0,2.4,1655.8456754617393,0.0,635.0,1050.0,0.0,60924.0,6,1,1,110.0,5,4.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2691.1407464054,0.06607106985847143,0.04417209550268203,25385.0,8,4,8,8_1,8_2,8_0_0 -2036,1,70.0,5,44.0,7,111,2,0,77,3.0,0.0,0.0,1118.731694227893,0.0,1355.5700502320772,12780.0,0,50,1,12800,201102036,,,180.0,468.0,0.0,4.0,4.0,0.0,1.0,1.0,2203.449167304625,0.0,820.0,780.0,0.0,13398.0,0,5,3,85.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2474.30174445997,0.193607335247259,0.18467694763845127,13398.0,3,2,3_1,3_1_1,3_3_1,3_0_0 -2037,2,86.0,3,0.0,1,111,4,0,75,9.0,0.0,0.0,2046.460416270536,0.0,260.6865481215533,27424.0,0,33,1,12801,201102037,,,250.0,,1.0,0.0,5.0,2.0,3.0,2.0,2674.0502622916783,0.0,1500.0,150.0,0.0,67317.0,0,5,1,75.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2307.146964392089,0.08412875453588423,0.034272872593729506,33658.5,9,5,9,9_1,9_3,9_1_0 -2039,2,64.0,3,0.0,99,111,1,77,78,4.0,591.748091408803,0.0,518.4366387885358,0.0,0.0,26399.0,50,50,2,12803,201102039,373.0,373.0,,157.0,0.0,0.0,1.0,0.0,2.0,1.5,3024.706066523041,0.0,380.0,0.0,0.0,23109.0,7,5,3,23.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1110.184730197339,0.04205404485765896,0.04804122766875844,15406.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -2040,2,65.0,3,0.0,3,111,1,0,78,4.0,0.0,0.0,463.8643610213215,0.0,0.0,12419.0,0,50,2,12804,201102040,,,,600.0,0.0,4.0,3.0,0.0,1.0,1.0,4408.531340251446,0.0,340.0,0.0,0.0,15300.0,0,5,3,80.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,463.8643610213215,0.03735118455763922,0.030317932092896828,15300.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -2041,2,30.0,3,0.0,6,111,4,0,54,5.0,0.0,0.0,1088.716941455925,0.0,0.0,18548.0,0,43,1,12805,201102041,,,396.0,335.0,1.0,0.0,2.0,0.0,1.0,1.0,2309.938937695547,0.0,798.0,0.0,0.0,18541.0,0,1,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1088.716941455925,0.058697268786711505,0.05871942945126612,18541.0,5,3,5,5_1,5_4,5_0_0 -2042,2,59.0,3,0.0,1,111,2,77,78,5.0,0.0,0.0,658.9602540391126,0.0,1637.1115222033545,31608.0,70,71,1,12806,201102042,,,253.0,,0.0,1.0,4.0,0.0,2.0,1.5,2907.2548005899826,0.0,483.0,942.0,0.0,26203.0,5,5,1,100.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2296.071776242467,0.07264210884087785,0.08762629379240801,17468.666666666668,5,3,5,5_1,5_3,5_1_0 -2043,2,69.0,3,0.0,6,111,2,0,74,5.0,0.0,0.0,231.93218051066074,0.0,945.4232145208332,18560.0,0,60,2,12807,201102043,,,300.0,,0.0,0.0,2.0,0.0,1.0,1.0,2365.316177351609,0.0,170.0,544.0,0.0,18446.0,0,5,1,54.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1177.355395031494,0.06343509671505894,0.06382713840569738,18446.0,5,3,5,5_0,5_2,5_0_0 -2044,2,47.0,5,0.0,1,112,2,46,34,6.0,2776.298015993044,0.0,890.8924345497733,97.32297796537989,0.0,36771.0,60,10,1,12809,201102044,,,343.0,,2.0,0.0,5.0,2.0,4.0,2.5,1661.791047726037,0.0,653.0,0.0,0.0,53564.0,1,1,3,100.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3764.513428508197,0.10237723827223076,0.07028066291741089,21425.6,6,3,6,6_1,6_0,6_1_0 -2045,2,87.0,2,0.0,4,111,1,0,78,5.0,0.0,0.0,545.7227776721429,0.0,667.3575631911764,36217.0,0,71,2,12812,201102045,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3589.239456648389,0.0,400.0,384.0,0.0,17550.0,0,5,1,72.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1213.0803408633192,0.03349477706224478,0.06912138694377887,17550.0,5,3,5,5_0,5_3,5_0_1 -2046,2,23.0,3,0.0,9,111,4,0,52,5.0,0.0,0.0,890.8924345497733,0.0,0.0,26931.0,0,41,2,12813,201102046,,,135.0,482.0,1.0,0.0,2.0,0.0,1.0,1.0,3974.4729884929443,0.0,653.0,0.0,0.0,18762.0,0,1,3,49.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,890.8924345497733,0.03308055529129157,0.04748387349694986,18762.0,5,3,5,5_0,5_3,5_0_0 -2047,2,51.0,3,0.0,2,111,2,0,47,4.0,0.0,0.0,804.9410970664107,0.0,1499.8166068593366,23120.0,0,41,1,12814,201102047,,,152.0,,1.0,0.0,7.0,2.0,3.0,2.0,1565.0680817152304,0.0,590.0,863.0,0.0,32504.0,0,1,1,112.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2304.7577039257476,0.09968675189990257,0.07090689465683447,16252.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -2048,2,60.0,1,0.0,1,211,2,75,74,8.0,0.0,256.7663691192364,955.0148609262501,0.0,1477.223772688802,127388.0,60,50,1,12815,201102048,,,630.0,,0.0,1.0,5.0,0.0,2.0,1.5,1725.3356241061636,0.0,700.0,850.0,0.0,38598.0,5,5,1,150.0,1,2.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2689.0050027342886,0.021108777928331466,0.06966695172636636,25732.0,8,4,8,8_1,8_1,8_1_0 -2049,2,29.0,3,0.0,9,300,2,52,38,7.0,0.0,0.0,1066.8880303490394,2085.4923849724264,0.0,42095.0,42,42,1,12816,201102049,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1528.6535837217275,0.0,782.0,0.0,0.0,48220.0,1,1,2,150.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3152.380415321466,0.07488728864049093,0.06537495676734686,22961.90476190476,7,4,7,7_1,7_0,7_0_0 -2050,2,46.0,1,0.0,5,111,3,0,34,10.0,0.0,0.0,0.0,0.0,0.0,27576.0,0,20,2,12818,201102050,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2452.3813173244325,0.0,0.0,0.0,0.0,45099.0,0,1,1,55.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,45099.0,10,5,10,10_0,10_4,10_0_0 -2051,2,53.0,3,0.0,1,300,5,67,54,8.0,0.0,971.5484236944079,91.40856526008393,0.0,0.0,28889.0,50,60,1,12819,201102051,,,,,3.0,1.0,6.0,1.0,3.0,2.0,1093.2304599266085,0.0,67.0,0.0,0.0,50703.0,1,1,1,140.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1062.9569889544919,0.03679452348487285,0.020964380588022243,25351.5,8,4,8,8_1,8_0,8_1_0 -2052,2,44.0,3,0.0,7,112,2,0,47,8.0,0.0,208.188947934516,736.7257498573929,0.0,0.0,31250.0,0,50,1,1282,201102052,,,325.0,,1.0,2.0,4.0,0.0,1.0,1.0,2549.2829423900203,0.0,540.0,0.0,0.0,28183.0,0,1,1,110.0,9,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,944.9146977919089,0.030237270329341086,0.03352782520639779,28183.0,8,4,8,8_1,8_0,8_0_0 -2053,2,65.0,2,0.0,9,111,4,0,74,4.0,0.0,0.0,1005.2009688662185,0.0,667.7311158265557,29201.0,0,20,2,12820,201102053,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2591.6935867085276,621.0,500.0,0.0,0.0,14880.0,0,5,2,70.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1672.9320846927742,0.05729023268698929,0.11242823149817031,14880.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -2054,2,62.0,3,0.0,2,111,4,0,86,9.0,0.0,0.0,1201.9754791071537,0.0,792.4602775590524,20429.0,0,33,2,12822,201102054,,,,495.0,0.0,1.0,1.0,0.0,1.0,1.0,3447.807188950655,737.0,600.0,0.0,0.0,36810.0,0,5,3,40.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1994.435756666206,0.09762767422126419,0.05418190047992953,36810.0,9,5,9,9_0,9_3,9_0_1 -2055,2,56.0,3,0.0,7,111,2,68,21,6.0,0.0,0.0,2865.0445827787503,0.0,0.0,62248.0,41,31,1,12823,201102055,,,1200.0,,2.0,2.0,5.0,3.0,5.0,2.8,2486.336251025496,0.0,2100.0,0.0,0.0,58580.0,1,1,2,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2865.0445827787503,0.04602629133110703,0.04890823801261097,20921.428571428572,6,3,6,6_1,6_4,6_0_0 -2056,2,66.0,3,0.0,1,111,2,0,77,4.0,0.0,0.0,245.5752499524643,0.0,644.7647290206418,15537.0,0,70,2,12824,201102056,,,,444.0,0.0,3.0,3.0,0.0,1.0,1.0,1818.781215269949,0.0,180.0,371.0,0.0,16679.0,0,5,3,80.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,890.3399789731061,0.057304497584675686,0.05338089687469909,16679.0,4,2,4_0,4_0_0,4_2_0,4_1_0 -2057,2,71.0,4,0.0,5,111,2,77,78,4.0,0.0,0.0,613.9381248811608,347.58206416207105,0.0,12070.0,71,71,1,12825,201102057,,,,,0.0,1.0,3.0,0.0,2.0,1.5,3498.4680045957075,0.0,450.0,0.0,0.0,25090.0,5,5,1,60.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,961.5201890432318,0.07966198749322549,0.03832284531858238,16726.666666666668,4,2,4_0,4_1_0,4_4_0,4_0_0 -2058,2,62.0,3,0.0,1,300,5,78,71,3.0,0.0,0.0,693.176342892731,125.12954309834558,248.38307207074777,28939.0,70,70,1,12826,201102058,,,,,0.0,3.0,3.0,0.0,2.0,1.5,1308.554876888844,231.0,420.0,0.0,0.0,19192.0,5,5,1,64.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1066.6889580618245,0.036859910779979424,0.055579874846906234,12794.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -2059,1,52.0,5,225.0,99,111,1,0,48,1.0,0.0,0.0,613.9381248811608,104.27461924862132,0.0,11911.0,0,71,2,12827,201102059,,,300.0,126.0,1.0,2.0,4.0,2.0,3.0,2.0,2601.551803591623,0.0,450.0,0.0,0.0,18596.0,0,1,3,70.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,718.2127441297821,0.06029827421121502,0.03862189417776845,9298.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -2060,2,72.0,2,0.0,4,112,2,77,78,6.0,0.0,0.0,556.6372332255858,0.0,2200.1944661459097,47246.0,71,71,1,12828,201102060,,,,,0.0,3.0,4.0,0.0,2.0,1.5,5288.69401105922,0.0,408.0,1266.0,0.0,30660.0,5,5,1,98.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2756.8316993714952,0.058350584163135405,0.08991623285621315,20440.0,6,3,6,6_1,6_0,6_0_1 -2061,2,48.0,3,0.0,8,400,6,56,52,3.0,1189.8420068541616,0.0,914.0856526008394,234.61789330939797,0.0,30920.0,50,70,1,12829,201102061,,,,,4.0,0.0,4.0,3.0,5.0,2.8,1755.7415994270002,0.0,670.0,0.0,0.0,37069.0,1,1,2,90.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2338.545552764399,0.07563213301307888,0.0630862864594243,13238.928571428572,3,2,3_0,3_1_0,3_0_0,3_0_0 -2062,2,89.0,2,0.0,99,120,2,0,77,6.0,0.0,0.0,196.46019996197145,0.0,83.41969539889705,20357.0,0,70,2,1283,201102062,,,,635.0,0.0,6.0,3.0,0.0,1.0,1.0,5601.5275057656,0.0,144.0,48.0,0.0,19405.0,0,5,3,73.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,279.8798953608685,0.0137485825691835,0.014423081440910512,19405.0,6,3,6,6_0,6_1,6_0_0 -2063,2,70.0,1,0.0,6,111,4,0,75,9.0,0.0,0.0,879.9779789963304,0.0,0.0,14307.0,0,33,2,12830,201102063,,,,314.0,0.0,1.0,2.0,0.0,1.0,1.0,2103.067391744608,0.0,645.0,0.0,0.0,32724.0,0,5,3,47.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,879.9779789963304,0.06150681337781019,0.026890905115399415,32724.0,9,5,9,9_0,9_2,9_0_0 -2064,2,67.0,3,0.0,1,111,2,0,77,6.0,0.0,0.0,807.6697109547715,0.0,2780.6565132965684,22319.0,0,71,1,12831,201102064,,,,,0.0,4.0,5.0,0.0,1.0,1.0,3603.1773652537977,0.0,592.0,1600.0,0.0,20554.0,0,5,3,93.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3588.32622425134,0.16077450711283392,0.17458043321257857,20554.0,6,3,6,6_1,6_2,6_1_0 -2065,2,56.0,1,0.0,5,120,2,54,47,7.0,0.0,0.0,427.02807352845184,208.54923849724264,0.0,21120.0,60,60,1,12833,201102065,,,260.0,,2.0,2.0,4.0,0.0,2.0,1.5,2220.8813399866385,0.0,313.0,0.0,0.0,36405.0,1,4,1,100.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,635.5773120256945,0.03009362272848932,0.017458517017599078,24270.0,7,4,7,7_1,7_0,7_0_0 -2066,2,66.0,2,0.0,5,111,1,0,75,4.0,0.0,0.0,313.79059716148214,0.0,0.0,27185.0,0,50,2,12834,201102066,,,,,0.0,0.0,3.0,0.0,1.0,1.0,6697.3860923394295,0.0,230.0,0.0,0.0,15720.0,0,5,1,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,313.79059716148214,0.011542784519458603,0.019961233916124817,15720.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -2067,2,64.0,3,0.0,5,300,5,77,78,2.0,0.0,138.792631956344,1237.4263983715841,243.30744491344973,0.0,27123.0,60,50,1,12836,201102067,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1624.1567440844894,0.0,907.0,0.0,0.0,16949.0,6,5,1,88.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1619.5264752413777,0.059710447783850526,0.09555292201553943,11299.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -2068,2,37.0,3,0.0,2,112,2,85,52,3.0,1205.7065669455505,749.4802125642576,818.5841665082144,152.93610823131127,0.0,35651.0,50,71,1,12837,201102068,,,700.0,,1.0,0.0,5.0,2.0,4.0,2.3,2060.3905314726344,0.0,600.0,0.0,0.0,28961.0,7,1,2,90.0,8,1.0,4,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2926.707054249334,0.0820932667877292,0.10105683692722399,12591.739130434784,2,1,2_0,2_1_0,2_1_0,2_0_1 -2069,2,47.0,3,0.0,1,111,2,22,67,3.0,951.8736054833294,0.0,1091.4455553442858,156.41192887293198,0.0,43859.0,50,50,8,12838,201102069,,,321.0,,2.0,0.0,4.0,3.0,5.0,2.4,1656.1954941057568,0.0,800.0,0.0,0.0,31510.0,1,1,2,70.0,5,4.0,4,2,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2199.7310897005473,0.05015461113341725,0.06981057092036011,13129.166666666668,3,2,3_0,3_0_0,3_2_0,3_1_0 -2070,1,20.0,3,83.0,1,111,4,0,52,2.0,0.0,0.0,682.1534720901786,0.0,0.0,21518.0,0,41,2,1284,201102070,,,,317.0,1.0,0.0,2.0,0.0,1.0,1.0,3433.9768816519854,0.0,500.0,0.0,0.0,10116.0,0,3,3,34.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,682.1534720901786,0.031701527655459555,0.06743312298242177,10116.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -2071,2,56.0,2,0.0,2,111,2,78,65,8.0,0.0,0.0,1144.451679399819,0.0,2365.553067340455,35200.0,70,70,1,12842,201102071,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2680.6245211605283,2200.0,0.0,0.0,0.0,40769.0,7,1,1,105.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3510.004746740274,0.09971604394148506,0.08609494338198813,27179.333333333332,8,4,8,8_1,8_3,8_0_1 -2072,2,27.0,2,0.0,9,111,2,0,54,4.0,0.0,0.0,148.70945691565893,0.0,0.0,27054.0,0,43,2,12844,201102072,,,,357.0,1.0,0.0,2.0,0.0,1.0,1.0,7746.752739654508,0.0,109.0,0.0,0.0,15291.0,0,1,3,40.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,148.70945691565893,0.005496764135272379,0.0097252931080805,15291.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -2073,2,72.0,2,0.0,5,111,1,0,78,4.0,0.0,0.0,3683.6287492869646,0.0,107.75043989024202,13567.0,0,50,2,12846,201102073,,,120.0,329.0,0.0,0.0,3.0,0.0,1.0,1.0,2023.6702282580109,0.0,2700.0,62.0,0.0,16704.0,0,5,3,64.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3791.3791891772066,0.27945597325696225,0.22697432885399943,16704.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -2074,1,25.0,2,300.0,5,111,2,85,52,2.0,0.0,0.0,245.5752499524643,0.0,625.6477154917279,20281.0,71,71,2,12848,201102074,,,,,1.0,0.0,3.0,1.0,3.0,1.8,3804.2643937719054,0.0,180.0,360.0,0.0,20240.0,6,1,3,65.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,871.2229654441923,0.042957594075449544,0.04304461291720318,11244.444444444443,2,1,2_1,2_0_1,2_3_1,2_0_0 -2075,2,78.0,4,0.0,99,111,1,0,77,4.0,0.0,0.0,245.5752499524643,0.0,104.27461924862132,19148.0,0,71,2,1285,201102075,,,,,0.0,1.0,1.0,0.0,1.0,1.0,4070.558945723753,0.0,180.0,60.0,0.0,15351.0,0,5,1,28.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,349.84986920108565,0.018270830854454023,0.022790037730511737,15351.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -2076,2,45.0,2,0.0,1,111,2,0,21,9.0,0.0,0.0,1309.734666413143,0.0,2155.0087978048405,45243.0,0,71,1,12850,201102076,,,1250.0,,1.0,0.0,4.0,2.0,3.0,2.0,3644.6043011069123,0.0,960.0,1240.0,0.0,58500.0,0,1,2,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3464.7434642179833,0.07658076308418944,0.05922638400372621,29250.0,9,5,9,9_1,9_3,9_1_0 -2077,2,49.0,3,0.0,7,111,6,68,21,5.0,0.0,0.0,1006.8585248051037,0.0,1275.6261754748007,51597.0,50,50,1,12851,201102077,,,574.0,,3.0,0.0,4.0,2.0,4.0,2.5,1977.56860273811,0.0,738.0,734.0,0.0,43860.0,1,1,2,114.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2282.4847002799042,0.04423677152314871,0.05204023484450306,17544.0,5,3,5,5_1,5_2,5_0_0 -2078,1,21.0,3,313.0,5,111,4,52,55,1.0,0.0,0.0,515.708024900175,0.0,0.0,20356.0,20,20,8,12852,201102078,,,,107.0,2.0,0.0,2.0,0.0,2.0,1.5,2330.769234144837,0.0,378.0,0.0,0.0,3809.0,3,3,3,38.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,515.708024900175,0.025334448069373895,0.13539197293257418,2539.3333333333335,1,1,1_1,1_0_1,1_3_1,1_0_0 -2079,2,41.0,2,0.0,4,111,4,42,37,10.0,0.0,1110.341055650752,1899.1152662990573,0.0,0.0,84010.0,10,12,1,12853,201102079,,,460.0,,2.0,0.0,7.0,2.0,4.0,2.1,2689.371747460932,0.0,1392.0,0.0,0.0,89303.0,1,1,2,150.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3009.4563219498095,0.035822596380785734,0.033699386604591215,42525.23809523809,10,5,10,10_1,10_4,10_0_1 -2080,2,61.0,4,0.0,1,111,2,0,75,8.0,0.0,0.0,54.57227776721429,0.0,104.27461924862132,21175.0,0,60,1,12854,201102080,,,170.0,484.0,0.0,6.0,5.0,0.0,1.0,1.0,2110.8862945233054,0.0,40.0,60.0,0.0,27997.0,0,5,3,90.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,158.84689701583562,0.0075016244163322605,0.005673711362497254,27997.0,8,4,8,8_1,8_2,8_1_0 -2081,2,30.0,2,0.0,4,111,1,34,37,9.0,0.0,0.0,532.0797082303393,0.0,425.78802859853704,53801.0,10,12,2,12855,201102081,245.0,245.0,,,2.0,0.0,3.0,1.0,3.0,1.8,2376.309527799688,0.0,390.0,245.0,0.0,59220.0,1,1,2,53.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,957.8677368288763,0.01780390209901073,0.016174733820143134,32900.0,9,5,9,9_0,9_4,9_0_1 -2082,2,54.0,3,0.0,6,111,2,0,46,8.0,0.0,333.10231669522557,511.615104067634,0.0,1616.2565983536304,31071.0,0,60,1,12856,201102082,,,259.0,,1.0,1.0,5.0,0.0,1.0,1.0,2244.3320693592605,0.0,375.0,930.0,0.0,25589.0,0,1,1,119.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2460.97401911649,0.07920485401552863,0.09617312201010161,25589.0,8,4,8,8_1,8_2,8_0_0 -2083,2,40.0,2,0.0,1,111,2,0,37,5.0,0.0,249.82673752141918,3492.6257771017144,173.79103208103552,0.0,25968.0,0,20,1,12858,201102083,,,315.0,,1.0,0.0,7.0,2.0,3.0,1.6,1197.9479401054273,0.0,2560.0,0.0,0.0,28950.0,0,1,2,170.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3916.243546704169,0.15081036455268673,0.1352761156029074,18093.75,5,3,5,5_1,5_3,5_1_0 -2084,2,49.0,3,0.0,8,111,1,56,46,5.0,0.0,0.0,995.9440692516608,0.0,234.61789330939797,35765.0,50,60,2,12859,201102084,,,520.0,540.0,4.0,0.0,4.0,2.0,4.0,2.5,1989.830195614234,0.0,730.0,135.0,0.0,42661.0,1,1,3,80.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1230.5619625610589,0.03440687718610538,0.028845126990953304,17064.4,5,3,5,5_0,5_2,5_0_0 -2085,1,45.0,4,400.0,2,111,2,0,54,2.0,0.0,0.0,1637.1683330164287,0.0,1086.193950506472,21506.0,0,50,2,1286,201102085,,,260.0,398.0,1.0,0.0,4.0,3.0,4.0,2.3,3355.6109889308136,0.0,1200.0,625.0,0.0,26410.0,0,1,3,120.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2723.3622835229007,0.12663267383627363,0.10311860217807273,11482.608695652174,2,1,2_1,2_0_1,2_3_1,2_0_1 -2086,2,56.0,2,0.0,2,400,2,85,78,6.0,0.0,0.0,1146.0178331115,0.0,0.0,23440.0,50,50,1,12860,201102086,,,300.0,,1.0,2.0,4.0,1.0,3.0,2.0,2011.7992885039976,0.0,840.0,0.0,0.0,38683.0,6,5,1,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1146.0178331115,0.04889154578120734,0.029625877856202985,19341.5,6,3,6,6_1,6_0,6_0_1 -2087,2,30.0,2,0.0,9,221,2,0,48,9.0,0.0,0.0,1227.8762497623215,208.54923849724264,0.0,23112.0,0,43,1,12861,201102087,,,300.0,,1.0,0.0,4.0,0.0,1.0,1.0,2738.7338903234036,0.0,900.0,0.0,0.0,29002.0,0,1,2,112.0,1,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1436.4254882595642,0.0621506355252494,0.04952849762980361,29002.0,8,4,8,8_1,8_1,8_0_0 -2088,1,55.0,3,101.0,4,111,4,0,52,5.0,0.0,0.0,1337.02080529675,0.0,0.0,29752.0,0,50,2,12862,201102088,,,,299.0,4.0,0.0,4.0,3.0,4.0,2.5,1667.6969733477124,0.0,980.0,0.0,0.0,44876.0,0,1,3,90.0,7,5.0,2,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1337.02080529675,0.044938854708817894,0.029793671568249178,17950.4,5,3,5,5_0,5_2,5_0_1 -2089,2,34.0,3,0.0,4,111,1,0,55,6.0,0.0,0.0,436.5782221377143,0.0,0.0,20882.0,0,31,2,12864,201102089,,,,450.0,1.0,0.0,1.0,0.0,1.0,1.0,3655.0854879366016,0.0,320.0,0.0,0.0,18976.0,0,1,3,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,436.5782221377143,0.020906916106585304,0.02300686246509877,18976.0,5,3,5,5_0,5_4,5_0_1 -2090,2,43.0,3,0.0,8,112,2,0,48,5.0,0.0,0.0,2278.3925967811965,140.77073598563877,0.0,40087.0,0,50,1,12866,201102090,,,510.0,,1.0,0.0,5.0,2.0,3.0,2.0,1761.5687686499152,0.0,1670.0,0.0,0.0,35184.0,0,1,3,150.0,7,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2419.163332766835,0.06034782679588982,0.06875748444653351,17592.0,5,3,5,5_1,5_0,5_0_0 -2091,2,65.0,3,0.0,4,300,2,78,21,5.0,2950.808176998321,0.0,560.7301540581268,264.162368763174,0.0,31106.0,70,70,1,12867,201102091,,,302.0,,1.0,2.0,4.0,0.0,2.0,1.5,1902.1656632670827,0.0,411.0,0.0,0.0,25630.0,6,1,1,120.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3775.7006998196216,0.12138174949590502,0.14731567303236917,17086.666666666668,5,3,5,5_1,5_0,5_0_1 -2092,2,49.0,2,0.0,4,111,1,0,43,8.0,0.0,0.0,600.2950554393572,0.0,0.0,37249.0,0,20,2,12868,201102092,,,,,1.0,0.0,4.0,1.0,2.0,1.5,2764.4881848737623,0.0,440.0,0.0,0.0,43184.0,0,1,1,73.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,600.2950554393572,0.016115736138939494,0.013900867345298194,28789.333333333332,8,4,8,8_0,8_4,8_0_1 -2093,1,33.0,3,203.0,1,300,4,62,65,4.0,0.0,0.0,1159.6609025533037,217.2387901012944,0.0,66969.0,50,50,1,1287,201102093,,,380.0,,2.0,0.0,5.0,3.0,5.0,2.6,1234.917218848792,0.0,850.0,0.0,0.0,39595.0,1,1,3,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1376.899692654598,0.020560254635049024,0.03477458498938245,15228.846153846152,4,2,4_1,4_1_1,4_0_1,4_1_0 -2094,2,63.0,2,0.0,5,112,5,78,74,7.0,0.0,693.9631597817199,886.7995137172322,208.54923849724264,0.0,26547.0,50,44,1,12870,201102094,,,400.0,,0.0,2.0,6.0,0.0,2.0,1.5,1396.043808149794,0.0,650.0,0.0,0.0,33979.0,5,5,1,150.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1789.3119119961948,0.06740166165654103,0.052659345831136725,22652.666666666668,7,4,7,7_1,7_0,7_0_0 -2095,0,25.0,2,0.0,3,300,4,0,12,1.0,0.0,0.0,0.0,0.0,0.0,25358.0,0,43,2,12871,201102095,,,,,1.0,0.0,1.0,0.0,1.0,1.0,1169.2606780545725,0.0,0.0,0.0,0.0,271.0,0,1,5,25.0,0,0.0,1,8,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,271.0,1,1,1_0,1_0_0,1_0_0,1_0_1 -2096,2,80.0,2,0.0,2,111,1,86,74,10.0,0.0,0.0,1967.9065756953455,0.0,3822.669021450291,38250.0,41,20,2,12872,201102096,,,,775.0,0.0,0.0,3.0,0.0,2.0,1.5,3073.5725379838914,3442.0,130.0,70.0,0.0,78510.0,7,5,3,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,5790.5755971456365,0.15138759731099705,0.07375589857528514,52340.0,10,5,10,10_0,10_4,10_0_1 -2097,2,53.0,1,0.0,1,112,4,13,37,10.0,0.0,0.0,3001.475277196786,100.7987986070006,0.0,69770.0,43,41,1,12874,201102097,,,800.0,,4.0,0.0,7.0,2.0,4.0,2.5,1337.3246386182277,0.0,2200.0,0.0,0.0,99889.0,1,1,1,200.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3102.2740758037867,0.04446429806225866,0.031057214265872986,39955.6,10,5,10,10_1,10_0,10_1_0 -2098,1,56.0,3,220.0,4,111,6,0,56,2.0,0.0,0.0,0.0,0.0,0.0,29848.0,0,50,1,12875,201102098,,,,200.0,1.0,3.0,3.0,0.0,1.0,1.0,1585.0178779050539,0.0,0.0,0.0,0.0,12130.0,0,1,3,70.0,7,5.0,1,7,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0.0,0.0,0.0,12130.0,2,1,2_1,2_1_1,2_2_1,2_0_1 -2099,1,51.0,5,390.0,5,111,1,85,68,1.0,0.0,0.0,916.8142664892001,0.0,0.0,19327.0,71,71,2,12876,201102099,,,550.0,,2.0,2.0,5.0,3.0,5.0,2.8,3420.581886900765,0.0,672.0,0.0,0.0,25100.0,6,4,3,84.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,916.8142664892001,0.0474369672732033,0.03652646480036654,8964.285714285716,1,1,1_1,1_0_1,1_2_1,1_0_0 -2100,1,30.0,4,280.0,5,111,1,85,67,2.0,0.0,0.0,523.8938665652572,0.0,0.0,19902.0,41,41,2,12879,201102100,,,,103.0,1.0,0.0,5.0,2.0,4.0,2.1,2818.58064598202,0.0,384.0,0.0,0.0,22769.0,6,4,3,89.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,523.8938665652572,0.026323679357112714,0.02300908544798881,10842.380952380952,2,1,2_1,2_0_1,2_3_1,2_0_0 -2101,2,52.0,3,0.0,1,111,2,52,52,5.0,0.0,0.0,724.4469873597697,0.0,1225.2267761713003,41214.0,71,70,1,12880,201102101,,,232.0,,2.0,3.0,5.0,0.0,2.0,1.5,2720.341444813733,0.0,531.0,705.0,0.0,27924.0,1,1,1,126.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1949.67376353107,0.04730610383682899,0.06982071922113844,18616.0,5,3,5,5_1,5_3,5_1_0 -2102,2,82.0,2,0.0,2,120,2,77,72,2.0,0.0,0.0,1550.9237465383612,0.0,2753.223500798982,35161.0,60,71,1,12883,201102102,,,250.0,,0.0,2.0,5.0,0.0,2.0,1.5,7096.191080446731,621.0,900.0,1200.0,0.0,18393.0,5,5,1,121.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4304.147247337343,0.12241253796357736,0.2340100716216682,12262.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -2103,2,55.0,3,0.0,6,112,2,0,67,7.0,0.0,0.0,364.2699540961554,0.0,1551.9539164836472,14521.0,0,50,1,12884,201102103,,,132.0,,1.0,0.0,4.0,0.0,1.0,1.0,1025.6210979536954,0.0,267.0,893.0,0.0,22200.0,0,1,1,60.0,6,2.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1916.2238705798027,0.13196225263961178,0.08631639056665778,22200.0,7,4,7,7_1,7_1,7_0_0 -2104,1,63.0,4,185.0,99,111,4,0,77,2.0,0.0,0.0,3492.6257771017144,0.0,0.0,12390.0,0,50,2,12885,201102104,,,,461.0,0.0,2.0,1.0,0.0,1.0,1.0,2261.4331185007213,0.0,2560.0,0.0,0.0,9895.0,0,5,3,29.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,3492.6257771017144,0.2818907003310504,0.3529687495807695,9895.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -2105,1,85.0,3,246.0,1,221,2,0,71,3.0,0.0,0.0,1000.0369900842019,93.84715732375918,0.0,9857.0,0,71,1,12886,201102105,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2872.7866153331074,0.0,733.0,0.0,0.0,12402.0,0,5,3,70.0,1,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1093.884147407961,0.11097536242345146,0.0882022373333302,12402.0,2,1,2_1,2_1_1,2_1_1,2_1_0 -2106,2,53.0,3,0.0,7,112,2,0,52,8.0,1465.885352444327,0.0,341.0767360450893,39.971937378638174,0.0,22105.0,0,60,1,12887,201102106,,,250.0,,1.0,0.0,5.0,0.0,1.0,1.0,1907.0332676009891,0.0,250.0,0.0,0.0,26728.0,0,1,1,163.0,7,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1846.9340258680545,0.08355277203655528,0.0691010934551053,26728.0,8,4,8,8_1,8_1,8_0_0 -2107,2,49.0,3,0.0,8,111,4,85,22,6.0,0.0,0.0,1528.023777482,0.0,0.0,27253.0,50,50,2,12890,201102107,,,,670.0,2.0,0.0,3.0,1.0,3.0,2.0,2694.615617609715,0.0,1120.0,0.0,0.0,40098.0,6,1,3,75.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1528.023777482,0.05606809442931054,0.03810723171933762,20049.0,6,3,6,6_0,6_3,6_0_0 -2108,1,84.0,2,53.0,5,111,2,0,75,4.0,0.0,0.0,407.9277763099268,0.0,1233.9163277753523,17891.0,0,42,2,12892,201102108,,,,254.0,0.0,0.0,2.0,0.0,1.0,1.0,3446.895481958211,0.0,299.0,710.0,0.0,15705.0,0,5,3,49.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1641.844104085279,0.09176927528283936,0.10454276371125623,15705.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -2109,2,59.0,4,0.0,7,120,6,85,21,4.0,0.0,0.0,3600.406025691963,43.44775802025888,0.0,36204.0,41,12,1,12893,201102109,,,670.0,,1.0,1.0,7.0,1.0,3.0,2.0,2007.8413686119864,0.0,2639.0,0.0,0.0,33450.0,6,1,1,230.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3643.8537837122217,0.1006478229950343,0.10893434330978241,16725.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -2110,2,63.0,2,0.0,7,120,5,0,78,2.0,0.0,13.8792631956344,409.2920832541072,156.41192887293198,0.0,9969.0,0,71,1,12896,201102110,,,180.0,,0.0,0.0,3.0,0.0,1.0,1.0,5364.246933315212,0.0,300.0,0.0,0.0,11387.0,0,5,1,82.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,579.5832753226736,0.058138557059150726,0.050898680541202564,11387.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -2111,2,48.0,2,0.0,6,111,2,52,47,9.0,0.0,69.396315978172,804.9410970664107,0.0,1737.9103208103552,47653.0,33,12,1,12899,201102111,,,370.0,,2.0,0.0,6.0,3.0,5.0,2.8,1755.2838472030076,0.0,590.0,1000.0,0.0,80950.0,1,1,2,130.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2612.247733854938,0.054818117093466054,0.03226989170914068,28910.714285714286,8,4,8,8_1,8_2,8_0_0 -2112,2,84.0,1,0.0,2,221,2,77,74,7.0,0.0,0.0,3369.8381521254823,0.0,2328.799829885876,26047.0,70,50,1,129,201102112,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2923.601607639471,0.0,2470.0,1340.0,0.0,36413.0,5,5,1,100.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5698.637982011358,0.21878289177300103,0.15650009562550074,24275.333333333332,7,4,7,7_1,7_1,7_0_1 -2113,1,21.0,3,90.0,7,111,4,84,65,1.0,0.0,0.0,466.5929749096822,0.0,0.0,23054.0,31,20,2,1290,201102113,,,,306.0,1.0,0.0,2.0,0.0,2.0,1.5,3427.643884411812,0.0,342.0,0.0,0.0,5787.0,3,1,3,32.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,466.5929749096822,0.02023913311831709,0.08062778208219841,3858.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -2114,2,45.0,2,0.0,7,112,5,21,56,4.0,0.0,582.9290542166448,1637.1683330164287,0.0,0.0,48260.0,60,60,1,12900,201102114,,,,,2.0,3.0,4.0,1.0,3.0,2.0,3680.3204837541984,0.0,1200.0,0.0,0.0,32385.0,1,1,1,111.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2220.0973872330733,0.04600284681378104,0.06855326191857568,16192.5,4,2,4_0,4_1_0,4_0_0,4_0_0 -2115,2,32.0,3,0.0,6,112,5,43,63,7.0,0.0,41.637789586903196,1023.230208135268,52.13730962431066,0.0,46788.0,20,50,1,12901,201102115,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1481.5751898234917,0.0,750.0,0.0,0.0,50855.0,1,1,2,100.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1117.005307346482,0.02387375624832183,0.021964512975056177,24216.666666666664,7,4,7,7_1,7_0,7_0_0 -2116,2,69.0,3,0.0,1,111,6,0,75,3.0,0.0,0.0,915.4499595450197,121.65372245672486,0.0,18560.0,0,50,1,12902,201102116,,,150.0,,0.0,0.0,3.0,0.0,1.0,1.0,2092.6052375988265,0.0,671.0,0.0,0.0,14500.0,0,5,1,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1037.1036820017446,0.05587843114233538,0.07152439186218928,14500.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -2117,2,79.0,2,0.0,3,111,2,77,75,6.0,1538.8623288647157,0.0,405.7601408781176,0.0,838.6960875116158,19171.0,71,71,1,12907,201102117,,,,,0.0,0.0,4.0,0.0,2.0,1.5,4204.200690518255,780.0,0.0,0.0,0.0,30707.0,5,5,1,100.0,7,5.0,3,4,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2783.318557254449,0.14518379621587027,0.09064117488697851,20471.333333333332,6,3,6,6_1,6_2,6_0_1 -2118,1,50.0,5,482.0,99,112,1,68,68,1.0,0.0,0.0,818.5841665082144,0.0,1876.9431464751838,25302.0,50,71,1,12908,201102118,,,1111.0,,2.0,1.0,5.0,2.0,4.0,2.3,2127.446203949061,0.0,600.0,1080.0,0.0,20435.0,4,4,3,125.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2695.527312983398,0.10653415986812893,0.13190738013131384,8884.782608695652,1,1,1_1,1_1_1,1_0_1,1_0_0 -2119,1,44.0,4,207.0,2,111,1,0,85,3.0,0.0,0.0,682.1534720901786,0.0,0.0,15419.0,0,71,2,12909,201102119,,,,192.0,0.0,0.0,2.0,0.0,1.0,1.0,4302.803692230119,0.0,500.0,0.0,0.0,12494.0,0,7,3,30.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,682.1534720901786,0.044241096834436645,0.054598485040033506,12494.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -2120,2,28.0,2,0.0,1,112,4,0,38,9.0,0.0,0.0,3690.4502840078662,0.0,0.0,55006.0,0,20,1,1291,201102120,,,617.0,,2.0,1.0,8.0,1.0,3.0,2.0,2018.6012988029368,0.0,2705.0,0.0,0.0,71427.0,0,1,1,260.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3690.4502840078662,0.06709177696992812,0.05166744065980464,35713.5,9,5,9,9_1,9_0,9_1_0 -2121,2,30.0,8,0.0,9,112,2,85,63,2.0,0.0,0.0,1364.3069441803573,1737.9103208103552,0.0,31786.0,50,50,1,12910,201102121,,,140.0,,1.0,0.0,4.0,2.0,4.0,2.1,1506.6705613340398,0.0,1000.0,0.0,0.0,20135.0,6,1,2,100.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3102.2172649907125,0.09759696926290544,0.15407088477728892,9588.095238095239,1,1,1_0,1_1_0,1_0_0,1_0_0 -2122,2,47.0,3,0.0,2,111,2,85,43,4.0,0.0,0.0,1321.2807112502396,0.0,3196.9504458743763,44975.0,20,10,1,12911,201102122,,,210.0,,1.0,0.0,5.0,2.0,4.0,2.3,1276.8492951059839,1761.0,297.0,750.0,0.0,37460.0,6,1,1,120.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4518.2311571246155,0.10046094846302647,0.1206148199979876,16286.956521739132,4,2,4_0,4_1_0,4_3_0,4_0_1 -2123,1,46.0,2,249.0,4,111,1,56,47,1.0,0.0,0.0,409.2920832541072,0.0,0.0,22732.0,43,20,2,12912,201102123,,,,62.0,2.0,0.0,4.0,3.0,5.0,2.4,1875.4569049085374,0.0,300.0,0.0,0.0,21589.0,4,1,3,79.0,8,6.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,409.2920832541072,0.018005106601007705,0.01895836227959179,8995.416666666668,1,1,1_1,1_0_1,1_2_1,1_0_1 -2124,2,68.0,1,0.0,4,112,2,75,78,9.0,0.0,0.0,695.7965415319821,0.0,2259.283417053462,37102.0,41,50,1,12913,201102124,,,200.0,,0.0,1.0,6.0,0.0,2.0,1.5,1041.9492321608982,0.0,510.0,1300.0,0.0,48753.0,5,5,1,125.0,6,2.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2955.0799585854443,0.07964745724180487,0.06061329474258906,32502.0,9,5,9,9_1,9_1,9_0_1 -2125,2,42.0,3,0.0,7,111,4,0,63,6.0,0.0,0.0,477.50743046312505,0.0,0.0,13957.0,0,70,2,12914,201102125,,,,580.0,1.0,0.0,1.0,0.0,1.0,1.0,3205.0931921384445,0.0,350.0,0.0,0.0,20693.0,0,1,3,26.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,477.50743046312505,0.034212755639687974,0.023075795218824,20693.0,6,3,6,6_0,6_3,6_0_0 -2126,1,48.0,3,222.0,99,111,1,0,64,3.0,0.0,0.0,362.905647151975,0.0,0.0,11415.0,0,71,2,12916,201102126,,,,,1.0,2.0,1.0,0.0,1.0,1.0,2678.5468737154097,0.0,266.0,0.0,0.0,14584.0,0,4,3,15.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,362.905647151975,0.03179199712238064,0.024883821115741566,14584.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -2127,2,28.0,1,0.0,2,111,2,37,37,10.0,0.0,0.0,212.83188329213573,0.0,1760.5031549808898,70112.0,10,10,2,12917,201102127,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2672.5413371780983,0.0,156.0,1013.0,0.0,59759.0,1,1,2,72.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1973.3350382730255,0.02814546779828026,0.03302155387929894,39839.333333333336,10,5,10,10_0,10_3,10_0_1 -2128,2,26.0,3,0.0,4,111,2,55,45,6.0,0.0,0.0,1364.3069441803573,97.32297796537989,0.0,18342.0,43,50,2,12918,201102128,,,270.0,,2.0,0.0,3.0,0.0,2.0,1.5,3381.757208442776,0.0,1000.0,0.0,0.0,29447.0,1,1,2,65.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1461.629922145737,0.07968759797981338,0.049635953480685197,19631.333333333332,6,3,6,6_0,6_3,6_0_1 -2129,1,28.0,2,35.0,7,111,2,84,55,2.0,0.0,0.0,1064.1594164606786,0.0,0.0,17619.0,20,31,2,12919,201102129,,,,365.0,1.0,0.0,2.0,0.0,2.0,1.5,4131.84794433536,0.0,780.0,0.0,0.0,15025.0,3,1,3,40.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1064.1594164606786,0.06039840038939092,0.07082591790087711,10016.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0 -2130,2,68.0,1,0.0,4,111,2,0,72,9.0,3490.203220105541,0.0,1659.1264507725261,90.37133668213848,891.3834058296532,37094.0,0,50,1,1292,201102130,,,250.0,,1.0,1.0,4.0,1.0,2.0,1.5,2057.5337553565146,829.0,900.0,0.0,0.0,48206.0,0,5,1,125.0,6,5.0,2,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,6131.084413389859,0.16528507072275458,0.12718508927083474,32137.333333333332,9,5,9,9_1,9_2,9_0_1 -2131,2,71.0,3,0.0,4,111,2,0,78,5.0,0.0,0.0,450.22129157951787,0.0,2606.865481215533,11869.0,0,70,1,12920,201102131,,,180.0,,0.0,4.0,5.0,0.0,1.0,1.0,1440.8928795625143,0.0,330.0,1500.0,0.0,17636.0,0,5,1,100.0,3,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3057.086772795051,0.25756902626969846,0.17334354574705438,17636.0,5,3,5,5_1,5_2,5_0_1 -2132,2,35.0,3,0.0,1,111,6,0,52,8.0,1269.1648073111057,0.0,1875.9220482479911,0.0,0.0,54776.0,0,50,1,12922,201102132,,,,,1.0,4.0,4.0,0.0,2.0,1.5,2440.465470033463,0.0,1375.0,0.0,0.0,39865.0,0,1,3,100.0,7,6.0,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3145.086855559097,0.05741724214179744,0.07889343673796806,26576.666666666668,8,4,8,8_1,8_2,8_1_0 -2133,2,57.0,3,0.0,3,111,2,85,55,9.0,0.0,0.0,573.00891655575,0.0,868.9551604051776,15758.0,50,70,1,12924,201102133,,,350.0,,1.0,1.0,3.0,0.0,2.0,1.5,1591.0307775599144,0.0,420.0,500.0,0.0,49790.0,6,1,2,55.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1441.9640769609277,0.09150679508572965,0.028960917392266073,33193.333333333336,9,5,9,9_1,9_3,9_0_1 -2134,1,41.0,4,476.0,9,111,4,0,56,2.0,0.0,0.0,2551.253985617268,0.0,0.0,14159.0,0,50,2,12925,201102134,,,,69.0,1.0,0.0,6.0,3.0,4.0,2.1,1464.2635186257571,0.0,1870.0,0.0,0.0,21220.0,0,1,3,110.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2551.253985617268,0.18018602907106915,0.12022874578780716,10104.761904761905,2,1,2_1,2_0_1,2_3_1,2_0_0 -2135,1,25.0,3,29.0,2,112,2,67,56,3.0,2076.6709159627967,0.0,736.7257498573929,239.831624271829,0.0,35391.0,60,41,1,12926,201102135,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.1,3258.2739418004458,0.0,540.0,0.0,0.0,26302.0,1,1,3,90.0,7,2.0,4,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,3053.228290092019,0.08627132011223246,0.1160835027789529,12524.761904761905,2,1,2_1,2_1_1,2_1_1,2_0_1 -2136,2,89.0,3,0.0,4,111,2,0,72,3.0,0.0,0.0,597.5664415509965,0.0,1821.3300162092523,13394.0,0,70,1,12927,201102136,,,140.0,,0.0,3.0,4.0,0.0,1.0,1.0,2365.630284920001,0.0,438.0,1048.0,0.0,13987.0,0,5,5,70.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2418.8964577602487,0.18059552469465795,0.1729389045370879,13987.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -2137,2,72.0,4,0.0,3,111,1,78,78,1.0,0.0,0.0,545.7227776721429,0.0,260.6865481215533,25726.0,71,71,2,12928,201102137,,,,,0.0,2.0,4.0,0.0,2.0,1.5,7224.361596571147,0.0,400.0,150.0,0.0,11240.0,5,5,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,806.4093257936962,0.03134608278759606,0.07174460193894094,7493.333333333333,1,1,1_0,1_0_0,1_4_0,1_0_1 -2138,2,50.0,2,0.0,7,112,2,31,31,10.0,0.0,0.0,2220.3885552603065,0.0,4203.162856949444,104085.0,10,10,1,12929,201102138,,,80.0,,2.0,0.0,8.0,2.0,4.0,2.5,1486.652436880936,1824.0,932.0,1290.0,0.0,261244.0,1,1,1,259.0,8,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,6423.55141220975,0.06171447770773647,0.024588321309617637,104497.6,10,5,10,10_1,10_1,10_0_0 -2139,0,85.0,3,0.0,3,111,2,0,77,1.0,0.0,0.0,327.43366660328576,0.0,677.7850251160386,27802.0,0,30,2,1293,201102139,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3481.835280810405,0.0,240.0,390.0,0.0,13555.0,0,5,5,60.0,8,7.0,5,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1005.2186917193244,0.036156344569431134,0.07415851654144776,9036.666666666666,1,1,1_0,1_0_0,1_3_0,1_0_1 -2140,2,78.0,3,0.0,1,300,4,78,78,5.0,0.0,0.0,2148.783437084063,97.32297796537989,0.0,20448.0,50,50,1,12933,201102140,,,243.0,,0.0,1.0,4.0,0.0,2.0,1.5,1364.7036446650407,0.0,1575.0,0.0,0.0,26140.0,5,5,1,95.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2246.1064150494426,0.10984479729310655,0.08592602964994042,17426.666666666668,5,3,5,5_1,5_0,5_1_0 -2141,2,62.0,2,0.0,7,400,2,85,71,10.0,0.0,0.0,3888.274790914018,0.0,0.0,44434.0,60,50,1,12934,201102141,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2077.345577490113,0.0,2850.0,0.0,0.0,103510.0,6,5,1,200.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3888.274790914018,0.08750674688108245,0.03756424298052379,69006.66666666667,10,5,10,10_1,10_0,10_0_0 -2142,2,84.0,3,0.0,5,111,1,0,75,6.0,0.0,0.0,1313.827587245684,0.0,0.0,12601.0,0,70,2,12935,201102142,633.0,633.0,,,0.0,3.0,3.0,0.0,1.0,1.0,2747.8979209686336,0.0,963.0,0.0,0.0,20330.0,0,5,1,65.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1313.827587245684,0.1042637558325279,0.0646250657769643,20330.0,6,3,6,6_0,6_3,6_0_0 -2143,1,35.0,3,37.0,9,111,2,55,47,3.0,0.0,0.0,641.2242637647679,0.0,1390.3282566482842,40944.0,31,43,1,12936,201102143,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2461.7169363696416,0.0,470.0,800.0,0.0,28240.0,4,1,2,84.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2031.5525204130522,0.049617832171088616,0.07193882862652451,13447.619047619048,3,2,3_1,3_1_1,3_2_1,3_0_0 -2144,2,64.0,3,0.0,6,111,1,52,72,7.0,0.0,0.0,573.00891655575,0.0,72.99223347403492,61062.0,50,50,2,12937,201102144,,,,428.0,1.0,2.0,4.0,0.0,2.0,1.5,2309.388875427924,0.0,420.0,42.0,0.0,33020.0,1,5,3,85.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,646.001150029785,0.010579429924171907,0.019563935494542245,22013.333333333332,7,4,7,7_0,7_2,7_0_0 -2145,2,51.0,2,0.0,3,221,1,55,62,9.0,0.0,0.0,586.6519859975537,90.37133668213848,0.0,47366.0,50,42,2,12938,201102145,,,239.0,386.0,2.0,1.0,3.0,0.0,2.0,1.5,4601.031430026642,0.0,430.0,0.0,0.0,45522.0,1,1,3,56.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,677.0233226796921,0.014293445143767515,0.014872442394439878,30348.0,9,5,9,9_0,9_1,9_0_1 -2146,2,83.0,3,0.0,1,112,2,71,71,6.0,0.0,0.0,2701.3277494771073,208.54923849724264,0.0,11161.0,50,70,1,1294,201102146,,,78.0,,0.0,2.0,7.0,0.0,2.0,1.5,1174.58911411523,0.0,1980.0,0.0,0.0,29574.0,5,5,1,120.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2909.87698797435,0.2607183037339262,0.09839308135437716,19716.0,6,3,6,6_1,6_0,6_1_0 -2147,2,58.0,1,0.0,5,112,6,0,62,8.0,1903.7472109666587,0.0,627.5811943229643,86.89551604051776,0.0,22725.0,0,50,1,12940,201102147,,,186.0,,1.0,3.0,5.0,0.0,1.0,1.0,1644.754386409739,0.0,460.0,0.0,0.0,24913.0,0,1,1,120.0,7,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2618.2239213301405,0.11521337387591377,0.10509468636174449,24913.0,8,4,8,8_1,8_1,8_0_0 -2148,1,37.0,3,333.0,6,111,4,0,67,3.0,190.37472109666587,0.0,2264.749527339393,90.37133668213848,0.0,22284.0,0,50,1,12942,201102148,,,1100.0,,1.0,0.0,4.0,3.0,4.0,1.9,2647.2220353570665,0.0,1660.0,0.0,0.0,27015.0,0,1,3,80.0,4,4.0,2,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2545.495585118197,0.11422974264576365,0.09422526689314074,14218.42105263158,3,2,3_1,3_1_1,3_2_1,3_0_0 -2149,2,42.0,2,0.0,6,111,2,0,47,9.0,0.0,0.0,818.5841665082144,0.0,0.0,32665.0,0,31,2,12943,201102149,,,,535.0,1.0,0.0,2.0,0.0,1.0,1.0,4235.7240862161225,0.0,600.0,0.0,0.0,36611.0,0,1,3,55.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,818.5841665082144,0.025059977545024165,0.02235896770118856,36611.0,9,5,9,9_0,9_4,9_0_0 -2150,2,80.0,4,0.0,1,112,2,71,71,2.0,2059.219899862269,0.0,658.9602540391126,215.50087978048404,0.0,19668.0,71,71,1,12946,201102150,,,,,0.0,2.0,3.0,0.0,2.0,1.5,4820.356352678851,0.0,483.0,0.0,0.0,14915.0,5,5,5,95.0,5,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2933.6810336818653,0.14916010950182354,0.19669333112181464,9943.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -2151,2,69.0,1,0.0,9,211,2,0,74,10.0,0.0,0.0,422.93515269591074,0.0,1903.011801287339,24712.0,0,31,1,12948,201102151,,,300.0,,0.0,1.0,5.0,0.0,1.0,1.0,1652.724425921166,0.0,310.0,1095.0,0.0,37603.0,0,5,1,162.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2325.94695398325,0.09412216550595864,0.06185535606157088,37603.0,10,5,10,10_1,10_2,10_0_0 -2152,1,26.0,4,49.0,3,111,1,52,53,6.0,0.0,0.0,541.0135211708235,0.0,1118.261450015488,23398.0,50,50,2,12949,201102152,,,,219.0,2.0,0.0,4.0,1.0,3.0,1.8,2975.320398277426,1040.0,0.0,0.0,0.0,34543.0,1,1,3,80.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1659.2749711863116,0.07091524793513598,0.04803505691996386,19190.555555555555,5,3,5,5_0,5_3,5_0_1 -2153,2,56.0,4,0.0,1,111,2,0,54,3.0,2379.684013708323,0.0,409.2920832541072,156.41192887293198,0.0,11845.0,0,70,1,1295,201102153,,,,,1.0,3.0,4.0,0.0,1.0,1.0,1676.7320210912999,0.0,300.0,0.0,0.0,13610.0,0,4,1,100.0,6,5.0,1,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2945.3880258353624,0.24866087174633705,0.21641352136924044,13610.0,3,2,3_0,3_1_0,3_2_0,3_1_0 -2154,2,42.0,2,0.0,1,111,2,62,54,7.0,0.0,0.0,489.7861929607483,0.0,1494.6028758969055,46333.0,50,43,1,12950,201102154,,,,,2.0,0.0,4.0,2.0,4.0,2.3,1471.6393072845187,0.0,359.0,860.0,0.0,54020.0,1,1,1,122.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1984.389068857654,0.04282884917569883,0.036734340408323844,23486.956521739132,7,4,7,7_1,7_2,7_1_0 -2155,1,51.0,5,272.0,2,111,2,85,54,3.0,0.0,0.0,476.14312351894466,0.0,83.41969539889705,15708.0,50,50,2,12951,201102155,,,,155.0,1.0,0.0,1.0,0.0,2.0,1.5,2977.837833898282,0.0,349.0,48.0,0.0,19474.0,6,1,3,26.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,559.5628189178417,0.03562279213890003,0.0287338409632249,12982.666666666666,3,2,3_1,3_0_1,3_4_1,3_0_1 -2156,1,36.0,2,50.0,9,111,4,0,52,7.0,0.0,0.0,1193.7685761578125,0.0,0.0,33902.0,0,20,2,12952,201102156,,,,,1.0,0.0,3.0,1.0,2.0,1.3,3793.173200596069,0.0,875.0,0.0,0.0,28277.0,0,1,2,63.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1193.7685761578125,0.035212334852156586,0.04221694579190906,21751.53846153846,6,3,6,6_0,6_3,6_0_0 -2157,2,81.0,4,0.0,1,300,2,72,78,3.0,2966.6727370897097,0.0,497.9720346258304,208.54923849724264,0.0,16978.0,50,50,1,12953,201102157,,,316.0,,0.0,3.0,5.0,0.0,2.0,1.5,1957.5420939289575,0.0,365.0,0.0,0.0,19400.0,5,5,1,100.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3673.194010212783,0.2163502185306151,0.1893398974336486,12933.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -2158,0,19.0,3,0.0,1,111,4,0,54,2.0,0.0,0.0,0.0,0.0,0.0,9177.0,0,41,2,12954,201102158,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3115.8588016349017,0.0,0.0,0.0,0.0,12040.0,0,1,5,25.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,12040.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -2159,2,40.0,3,0.0,1,111,2,55,55,5.0,0.0,0.0,791.2980276246072,0.0,903.7133668213847,27465.0,43,50,1,12956,201102159,,,220.0,,2.0,0.0,6.0,1.0,3.0,1.8,1579.2711249012218,0.0,580.0,520.0,0.0,33865.0,1,1,2,117.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1695.011394445992,0.06171532475681748,0.050052012238180774,18813.888888888887,5,3,5,5_1,5_3,5_1_0 -2160,2,55.0,1,0.0,7,221,4,56,65,6.0,0.0,0.0,1697.1978385603645,90.37133668213848,0.0,37959.0,50,50,1,12957,201102160,,,,,3.0,0.0,4.0,1.0,3.0,2.0,2417.602452199058,0.0,1244.0,0.0,0.0,41793.0,1,1,2,87.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1787.569175242503,0.04709210398699921,0.04277197557587402,20896.5,6,3,6,6_1,6_1,6_0_0 -2161,1,43.0,3,230.0,1,111,2,0,55,1.0,0.0,0.0,442.1745124953847,0.0,913.9636851088122,38919.0,0,71,2,12959,201102161,,,570.0,540.0,1.0,0.0,4.0,3.0,4.0,1.9,4430.405760418898,850.0,0.0,0.0,0.0,17573.0,0,1,3,90.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1356.1381976041969,0.03484514498327801,0.07717169507791481,9248.947368421053,1,1,1_1,1_0_1,1_2_1,1_1_0 -2162,2,60.0,2,0.0,3,111,2,47,47,9.0,0.0,0.0,995.3751240524704,0.0,1811.6273000887463,60171.0,30,71,1,1296,201102162,,,448.0,,2.0,2.0,6.0,1.0,3.0,2.0,2556.613206627677,172.0,664.0,936.0,0.0,66807.0,1,1,1,140.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2807.0024241412166,0.046650420038577,0.042016591437143064,33403.5,9,5,9,9_1,9_2,9_0_1 -2163,1,27.0,2,264.0,9,111,4,0,85,3.0,0.0,0.0,341.0767360450893,0.0,0.0,3976.0,0,60,2,12960,201102163,,,,,0.0,0.0,2.0,0.0,1.0,1.0,4160.50268228652,0.0,250.0,0.0,0.0,13264.0,0,7,3,60.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,341.0767360450893,0.08578388733528404,0.025714470449720243,13264.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -2164,1,24.0,3,163.0,7,111,2,0,84,1.0,0.0,0.0,54.57227776721429,0.0,0.0,16171.0,0,10,2,12961,201102164,,,,187.0,0.0,0.0,1.0,0.0,1.0,1.0,3416.9349915188923,0.0,40.0,0.0,0.0,2893.0,0,3,3,22.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,54.57227776721429,0.0033747002515128496,0.01886355954621994,2893.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -2165,1,41.0,3,40.0,1,111,2,52,52,4.0,1586.456009138882,0.0,661.6888679274732,97.32297796537989,0.0,38905.0,31,60,1,12962,201102165,,,418.0,,2.0,0.0,3.0,2.0,4.0,2.1,2135.167458209485,0.0,485.0,0.0,0.0,32699.0,1,1,2,70.0,6,5.0,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,2345.4678550317353,0.06028705449252629,0.07172903926822641,15570.95238095238,4,2,4_1,4_1_1,4_2_1,4_1_0 -2166,2,53.0,2,0.0,5,111,2,54,22,10.0,5157.568485710506,0.0,1693.3121621784621,0.0,623.6458086624835,81290.0,41,41,1,12964,201102166,,,,,2.0,3.0,7.0,0.0,2.0,1.5,2756.205376768226,580.0,1020.0,0.0,0.0,351392.0,1,1,1,250.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,7474.526456551452,0.0919489046198973,0.021271191309282657,234261.33333333334,10,5,10,10_1,10_3,10_0_0 -2167,2,70.0,1,0.0,5,112,6,75,75,9.0,0.0,277.585263912688,2969.9401418777834,125.12954309834558,535.4751943343393,78375.0,41,41,1,12967,201102167,,,350.0,,0.0,4.0,5.0,1.0,3.0,2.0,1854.4684020696423,498.0,1987.0,0.0,0.0,59374.0,5,5,1,100.0,7,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3908.130143223156,0.04986449943506419,0.0658222478395115,29687.0,9,5,9,9_1,9_1,9_0_0 -2168,2,75.0,4,0.0,1,120,2,0,86,2.0,0.0,0.0,825.4057012291162,0.0,3592.260633115004,14016.0,0,71,1,1297,201102168,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2313.079699037242,0.0,605.0,2067.0,0.0,9471.0,0,5,5,75.0,0,3.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4417.6663343441205,0.31518738116039674,0.4664413825724972,9471.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -2169,2,55.0,1,0.0,7,111,2,54,54,9.0,0.0,215.1285795323332,2455.752499524643,86.89551604051776,0.0,33923.0,60,50,1,12970,201102169,,,408.0,,2.0,2.0,5.0,0.0,2.0,1.5,1437.3192831464305,0.0,1800.0,0.0,0.0,51423.0,1,1,1,100.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2757.776595097494,0.08129518601236606,0.05362924362828878,34282.0,9,5,9,9_1,9_3,9_0_0 -2170,2,41.0,3,0.0,4,111,2,38,38,10.0,0.0,0.0,1233.9269925165322,0.0,2550.496307150709,82322.0,20,12,1,12971,201102170,,,688.0,,2.0,0.0,5.0,3.0,5.0,2.4,2587.386531184881,2372.0,0.0,0.0,0.0,101969.0,1,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3784.4232996672413,0.045970983451170296,0.037113468796077645,42487.083333333336,10,5,10,10_1,10_4,10_0_1 -2171,2,46.0,2,0.0,4,111,1,0,38,10.0,0.0,0.0,1118.731694227893,0.0,0.0,118679.0,0,12,2,12972,201102171,,,,2042.0,1.0,0.0,5.0,2.0,3.0,1.8,3090.682108544915,0.0,820.0,0.0,0.0,125436.0,0,1,3,120.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1118.731694227893,0.009426534553104535,0.008918744971363031,69686.66666666667,10,5,10,10_0,10_4,10_0_1 -2172,2,58.0,1,0.0,8,221,6,54,22,10.0,0.0,0.0,341.0767360450893,0.0,0.0,39864.0,41,12,1,12975,201102172,,,500.0,,2.0,2.0,6.0,1.0,3.0,2.0,3110.0081266898756,0.0,250.0,0.0,0.0,107484.0,1,1,2,213.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,341.0767360450893,0.008556008831153154,0.0031732791489439294,53742.0,10,5,10,10_1,10_1,10_0_0 -2173,1,89.0,3,232.0,2,111,1,0,77,2.0,0.0,0.0,218.28911106885715,135.55700502320772,0.0,7390.0,0,71,2,12976,201102173,,,,19.0,0.0,0.0,3.0,0.0,1.0,1.0,8199.768542690115,0.0,160.0,0.0,0.0,11584.0,0,5,3,87.0,8,6.0,1,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,353.8461160920649,0.04788174777971108,0.030546108088058087,11584.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -2174,2,51.0,1,0.0,1,111,1,38,31,10.0,0.0,0.0,955.0148609262501,0.0,4170.984769944853,160804.0,12,12,1,12977,201102174,,,1000.0,,2.0,0.0,7.0,4.0,6.0,3.1,1104.9277213679131,0.0,700.0,2400.0,0.0,320864.0,1,1,1,210.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5125.999630871103,0.03187731418914395,0.01597561468681779,103504.51612903226,10,5,10,10_1,10_4,10_1_0 -2176,2,75.0,3,0.0,1,400,5,72,74,6.0,0.0,485.77421184720396,1500.737638598393,302.3963958210018,0.0,26794.0,50,70,1,12979,201102176,,,260.0,,0.0,3.0,5.0,0.0,2.0,1.5,1969.3466128329212,0.0,1100.0,0.0,0.0,29155.0,5,5,1,99.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2288.908246266599,0.08542614937174736,0.07850825746069624,19436.666666666668,6,3,6,6_1,6_0,6_1_0 -2177,2,81.0,3,0.0,3,111,1,0,78,6.0,0.0,0.0,259.2183193942679,0.0,0.0,10860.0,0,70,2,12981,201102177,,,,255.0,0.0,2.0,4.0,0.0,1.0,1.0,3410.0150142896427,0.0,190.0,0.0,0.0,19210.0,0,5,3,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,259.2183193942679,0.023869090183634246,0.013493926048634456,19210.0,5,3,5,5_0,5_4,5_0_1 -2178,1,81.0,3,176.0,7,112,6,0,77,3.0,0.0,0.0,772.1977304060822,208.54923849724264,0.0,10045.0,0,71,1,12983,201102178,,,263.0,,0.0,4.0,4.0,0.0,1.0,1.0,3477.883682847967,0.0,566.0,0.0,0.0,12781.0,0,5,3,85.0,7,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,980.7469689033248,0.09763533786991785,0.07673476010510327,12781.0,3,2,3_1,3_1_1,3_1_1,3_0_0 -2179,1,55.0,4,159.0,7,112,2,85,63,4.0,0.0,0.0,390.15398161357473,0.0,806.438545684246,13887.0,71,50,1,12984,201102179,,,910.0,,2.0,3.0,4.0,1.0,3.0,2.0,2812.686302417522,750.0,0.0,0.0,0.0,29398.0,6,1,3,100.0,5,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1196.5925272978207,0.08616638059320376,0.04070319502339685,14699.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -2180,2,29.0,1,0.0,5,111,1,33,33,10.0,0.0,0.0,491.1504999049286,0.0,0.0,65294.0,12,12,2,12986,201102180,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2587.2807543220683,0.0,360.0,0.0,0.0,140418.0,1,1,2,74.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,491.1504999049286,0.007522138326721117,0.003497774501167433,93612.0,10,5,10,10_0,10_4,10_0_0 -2181,2,70.0,2,0.0,1,112,2,0,71,7.0,793.228004569441,0.0,613.9381248811608,0.0,0.0,16239.0,0,70,1,12988,201102181,,,,,0.0,1.0,7.0,0.0,1.0,1.0,1535.8432726209612,0.0,450.0,0.0,0.0,23913.0,0,5,1,130.0,8,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1407.1661294506018,0.0866534964868897,0.058845236041090696,23913.0,7,4,7,7_1,7_0,7_1_0 -2182,2,59.0,2,0.0,1,400,2,78,54,9.0,1411.945848133605,138.792631956344,654.8673332065715,156.41192887293198,0.0,24474.0,50,50,1,1299,201102182,,,213.0,,1.0,2.0,8.0,0.0,2.0,1.5,1822.0346573974145,0.0,480.0,0.0,0.0,44800.0,5,1,1,145.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2362.0177421694525,0.09651130759865377,0.05272361031628242,29866.666666666668,9,5,9,9_1,9_0,9_1_0 -2183,2,55.0,4,0.0,6,112,4,77,52,7.0,2221.038412794435,0.0,1889.5651176897948,0.0,0.0,32397.0,50,41,1,12990,201102183,,,,,1.0,1.0,4.0,0.0,2.0,1.5,2419.2171694764434,0.0,1385.0,0.0,0.0,32668.0,5,1,1,90.0,9,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4110.60353048423,0.1268822276903488,0.12582966604886217,21778.666666666668,6,3,6,6_1,6_0,6_0_0 -2184,2,40.0,3,0.0,9,112,2,85,48,4.0,0.0,0.0,635.7670359880465,0.0,1835.2332987757352,27627.0,71,43,1,12991,201102184,,,148.0,,1.0,0.0,5.0,2.0,4.0,2.1,2824.9586944787184,0.0,466.0,1056.0,0.0,32569.0,6,1,2,130.0,7,1.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2471.0003347637817,0.08944150051629861,0.07586970231704325,15509.047619047618,4,2,4_0,4_1_0,4_1_0,4_0_0 -2185,2,52.0,3,0.0,6,112,4,54,47,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,43007.0,43,43,1,12996,201102185,,,120.0,,2.0,0.0,5.0,2.0,4.0,2.3,1508.157970293454,0.0,1200.0,0.0,0.0,65319.0,1,1,1,110.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1637.1683330164287,0.03806748513070962,0.02506419775281968,28399.565217391308,8,4,8,8_1,8_1,8_0_0 -2186,2,42.0,2,0.0,8,112,3,85,52,3.0,0.0,374.7401062821288,144.61653608311786,260.6865481215533,0.0,27391.0,50,50,1,12997,201102186,,,255.0,,1.0,0.0,4.0,2.0,4.0,2.1,1853.2368300623405,0.0,106.0,0.0,0.0,28531.0,7,1,1,88.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,780.0431904868,0.02847808369489248,0.027340198047274892,13586.190476190475,3,2,3_0,3_1_0,3_0_0,3_0_0 -2187,2,45.0,2,0.0,6,111,4,0,47,4.0,0.0,0.0,573.00891655575,0.0,0.0,13893.0,0,42,2,12998,201102187,,,,455.0,1.0,0.0,1.0,0.0,1.0,1.0,3019.496740451127,0.0,420.0,0.0,0.0,14735.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,573.00891655575,0.041244433639656665,0.03888760886024771,14735.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -2188,2,65.0,3,0.0,4,111,1,78,78,6.0,0.0,0.0,349.26257771017146,0.0,187.69431464751835,16771.0,50,71,2,13,201102188,,,182.0,,0.0,1.0,3.0,0.0,2.0,1.5,2997.943136245827,0.0,256.0,108.0,0.0,31840.0,5,5,1,72.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,536.9568923576899,0.03201698720157951,0.016864224006208853,21226.666666666668,6,3,6,6_0,6_2,6_0_1 -2190,2,35.0,4,0.0,1,111,2,46,46,9.0,0.0,0.0,559.3658471139465,0.0,3237.726927669692,48356.0,50,20,1,1300,201102190,,,393.0,,2.0,0.0,6.0,1.0,3.0,1.8,1858.340395047403,0.0,410.0,1863.0,0.0,52284.0,1,1,2,120.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3797.0927747836386,0.07852371525319791,0.07262437408736207,29046.666666666664,8,4,8,8_1,8_2,8_1_0 -2191,2,61.0,4,0.0,5,300,4,0,86,1.0,125.3300247219717,98.54276868900423,1091.4455553442858,130.34327406077665,0.0,7126.0,0,71,1,13000,201102191,,,,,0.0,5.0,2.0,0.0,1.0,1.0,3104.37437359441,0.0,800.0,0.0,0.0,8250.0,0,5,1,50.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1445.6616228160383,0.20287140370699386,0.1752317118564895,8250.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -2192,2,46.0,3,0.0,8,211,2,85,33,9.0,0.0,0.0,1009.5871386934643,0.0,2780.6565132965684,44360.0,42,10,1,13001,201102192,,,810.0,,1.0,0.0,8.0,3.0,5.0,2.4,1349.1969555276166,0.0,740.0,1600.0,0.0,72860.0,6,1,2,180.0,1,2.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3790.243651990033,0.08544282353449127,0.05202091205037103,30358.333333333336,9,5,9,9_1,9_1,9_0_0 -2193,2,90.0,2,0.0,6,300,4,71,71,2.0,0.0,0.0,2087.3896245959468,208.54923849724264,0.0,14482.0,71,70,1,13004,201102193,,,,,0.0,8.0,5.0,0.0,2.0,1.5,5558.165598397141,0.0,1530.0,0.0,0.0,17229.0,5,5,5,105.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2295.9388630931894,0.1585374163163368,0.1332601348362174,11486.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -2194,2,83.0,2,0.0,1,112,2,71,71,5.0,1586.456009138882,0.0,379.2773304821393,243.30744491344973,0.0,16728.0,70,71,1,13007,201102194,,,86.0,,0.0,0.0,5.0,0.0,2.0,1.5,3615.551021473812,0.0,278.0,0.0,0.0,27097.0,5,5,1,70.0,9,2.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2209.040784534471,0.13205647922850736,0.08152344482911286,18064.666666666668,5,3,5,5_1,5_1,5_1_0 -2195,2,84.0,3,0.0,4,111,2,0,77,6.0,0.0,0.0,485.80195726147366,0.0,1723.8685906491958,21786.0,0,71,1,13009,201102195,,,136.0,,0.0,2.0,4.0,0.0,1.0,1.0,4963.086434290531,370.0,215.0,763.0,0.0,20816.0,0,5,1,80.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2209.6705479106695,0.10142617038055032,0.10615250518402525,20816.0,6,3,6,6_1,6_3,6_0_1 -2196,1,24.0,2,110.0,1,111,2,0,84,1.0,0.0,0.0,169.06672536588235,0.0,349.4567031298399,17261.0,0,41,2,1301,201102196,,,,230.0,0.0,0.0,3.0,0.0,1.0,1.0,4355.909960702192,325.0,0.0,0.0,0.0,9245.0,0,3,4,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,518.5234284957223,0.030040173135723443,0.056086904109867206,9245.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -2197,2,88.0,2,0.0,2,111,2,0,74,6.0,1772.0713622081314,0.0,327.43366660328576,0.0,0.0,7903.0,0,70,1,13011,201102197,,,165.0,,0.0,1.0,3.0,0.0,1.0,1.0,2574.0064068905735,0.0,240.0,0.0,0.0,20229.0,0,5,1,70.0,8,6.0,1,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2099.505028811417,0.2656592469709499,0.10378689153252346,20229.0,6,3,6,6_1,6_2,6_0_1 -2198,1,34.0,4,190.0,5,111,4,52,46,3.0,0.0,0.0,2019.1742773869287,0.0,0.0,34121.0,50,20,2,13014,201102198,,,,340.0,2.0,0.0,3.0,2.0,4.0,2.1,2458.9417019235398,0.0,1480.0,0.0,0.0,26278.0,4,1,3,75.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2019.1742773869287,0.059176878678436406,0.0768389632919906,12513.333333333332,2,1,2_1,2_0_1,2_4_1,2_0_0 -2199,2,62.0,2,0.0,1,300,5,77,22,9.0,0.0,0.0,1364.3069441803573,0.0,0.0,23463.0,41,31,1,13015,201102199,,,250.0,,1.0,1.0,8.0,0.0,2.0,1.5,1086.5468941199488,0.0,1000.0,0.0,0.0,44041.0,5,1,1,300.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1364.3069441803573,0.058147165502295414,0.030978110037927324,29360.666666666668,9,5,9,9_1,9_0,9_1_0 -2200,1,26.0,4,292.0,7,300,4,84,52,1.0,0.0,0.0,916.8142664892001,39.971937378638174,0.0,10728.0,60,71,1,13018,201102200,,,,,1.0,0.0,2.0,0.0,2.0,1.5,2759.3896131729653,0.0,672.0,0.0,0.0,13934.0,3,1,3,32.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,956.7862038678383,0.08918588775800133,0.06866558087181271,9289.333333333334,1,1,1_1,1_1_1,1_0_1,1_0_0 -2201,2,63.0,3,0.0,4,111,2,77,77,7.0,0.0,0.0,2066.925020433241,0.0,0.0,42133.0,50,60,1,13019,201102201,,,247.0,,0.0,2.0,5.0,0.0,2.0,1.5,1958.8261781341628,0.0,1515.0,0.0,0.0,34529.0,5,5,1,95.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2066.925020433241,0.049057152835858854,0.05986055259153874,23019.333333333332,7,4,7,7_1,7_2,7_0_1 -2202,1,23.0,2,290.0,99,111,4,0,55,2.0,0.0,0.0,548.4513915605036,0.0,0.0,22102.0,0,41,2,1302,201102202,,,,10.0,1.0,0.0,1.0,0.0,1.0,1.0,3320.324739235986,0.0,402.0,0.0,0.0,11620.0,0,1,3,24.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,548.4513915605036,0.024814559386503645,0.04719891493636003,11620.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -2203,2,33.0,1,0.0,6,112,5,46,33,10.0,0.0,0.0,2896.1232364100256,0.0,2139.750274548866,54035.0,10,10,1,13020,201102203,,,715.0,,2.0,0.0,5.0,2.0,4.0,2.1,5214.872384810705,1990.0,1364.0,0.0,0.0,121181.0,1,1,2,100.0,9,1.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5035.8735109588915,0.09319651172312189,0.04155662612916952,57705.23809523809,10,5,10,10_1,10_1,10_0_0 -2204,2,29.0,3,0.0,9,111,2,55,64,6.0,0.0,0.0,687.6106998669001,0.0,1173.0894665469898,40497.0,31,71,2,13022,201102204,,,,382.0,2.0,0.0,3.0,1.0,3.0,1.8,3067.7880690264756,0.0,504.0,675.0,0.0,34270.0,1,1,3,70.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1860.7001664138897,0.04594661743867175,0.05429530686938692,19038.888888888887,5,3,5,5_0,5_3,5_0_0 -2205,1,21.0,2,240.0,1,111,6,0,62,3.0,206.2392811880547,0.0,818.5841665082144,0.0,0.0,9956.0,0,31,2,13023,201102205,,,,10.0,1.0,0.0,2.0,0.0,1.0,1.0,4312.978740655815,0.0,600.0,0.0,0.0,14074.0,0,4,3,35.0,7,5.0,1,2,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1024.823447696269,0.10293525991324519,0.07281678610887232,14074.0,3,2,3_1,3_0_1,3_2_1,3_1_0 -2206,2,56.0,5,0.0,1,111,2,31,22,9.0,0.0,0.0,545.7227776721429,0.0,955.8506764456954,46533.0,71,20,2,13024,201102206,,,,1429.0,2.0,0.0,4.0,3.0,5.0,2.4,4129.986123231533,0.0,400.0,550.0,0.0,74971.57142857142,1,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1501.5734541178383,0.032269001657272006,0.02002857117045293,31238.15476190476,9,5,9,9_0,9_4,9_1_0 -2207,2,51.0,2,0.0,4,111,2,54,21,9.0,0.0,0.0,1064.1594164606786,0.0,667.3575631911764,44396.0,50,50,1,13025,201102207,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2013.467874864421,0.0,780.0,384.0,0.0,69304.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1731.5169796518549,0.039001643833945734,0.024984372902745224,33001.90476190476,9,5,9,9_1,9_4,9_0_1 -2208,2,37.0,2,0.0,6,112,4,43,43,8.0,0.0,449.6881275385545,1364.3069441803573,208.54923849724264,0.0,68019.0,10,10,1,13027,201102208,,,600.0,,2.0,0.0,7.0,2.0,4.0,2.1,1612.0322294982457,0.0,1000.0,0.0,0.0,56570.0,1,1,2,140.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2022.5443102161544,0.02973499037351555,0.0357529487399002,26938.095238095237,8,4,8,8_1,8_0,8_0_0 -2209,2,62.0,3,0.0,4,400,4,69,68,4.0,0.0,0.0,1637.1683330164287,0.0,0.0,33320.0,60,70,1,13029,201102209,,,220.0,,2.0,1.0,5.0,0.0,2.0,1.5,1367.1884549635797,0.0,1200.0,0.0,0.0,23120.0,1,1,1,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1637.1683330164287,0.04913470387204168,0.07081177910970712,15413.333333333334,4,2,4_0,4_1_0,4_0_0,4_0_1 -2210,2,63.0,3,0.0,2,111,2,0,75,6.0,0.0,0.0,263.31124022680893,0.0,1220.0130452088695,18108.0,0,41,2,1303,201102210,,,,436.0,0.0,0.0,3.0,0.0,1.0,1.0,3432.8961760859993,0.0,193.0,702.0,0.0,19086.0,0,5,3,65.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1483.3242854356783,0.08191541227278984,0.077717923369783,19086.0,5,3,5,5_0,5_3,5_0_1 -2211,2,63.0,3,0.0,1,221,1,0,75,7.0,0.0,0.0,428.39238047263217,97.32297796537989,973.2297796537989,30467.0,0,41,2,13030,201102211,560.0,560.0,184.0,,0.0,1.0,3.0,0.0,1.0,1.0,5748.100637730849,0.0,314.0,560.0,0.0,23110.0,0,5,3,71.0,1,1.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1498.945138091811,0.04919897390920704,0.06486132142327179,23110.0,7,4,7,7_0,7_1,7_1_0 -2212,2,62.0,4,0.0,4,112,5,77,77,6.0,0.0,541.2912646297416,613.9381248811608,0.0,740.3497966652113,22457.0,70,70,1,13032,201102212,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2990.31922454696,0.0,450.0,426.0,0.0,28687.0,5,5,1,80.0,7,1.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1895.5791861761136,0.08440927934168026,0.06607798606254099,19124.666666666668,5,3,5,5_1,5_1,5_0_1 -2213,2,25.0,3,0.0,8,400,2,0,47,5.0,0.0,0.0,1064.1594164606786,0.0,0.0,14604.0,0,20,2,13033,201102213,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3070.3413466207744,0.0,780.0,0.0,0.0,17644.0,0,1,3,60.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1064.1594164606786,0.07286766751990403,0.06031282115510534,17644.0,5,3,5,5_0,5_0,5_0_0 -2214,2,30.0,2,0.0,5,112,2,43,47,8.0,0.0,0.0,955.0148609262501,0.0,0.0,34884.0,20,20,2,13035,201102214,,,360.0,,2.0,0.0,3.0,0.0,2.0,1.5,2835.97081893358,0.0,700.0,0.0,0.0,37977.0,1,1,2,69.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,955.0148609262501,0.027376873664896516,0.025147190692425683,25318.0,8,4,8,8_0,8_1,8_0_0 -2215,1,59.0,2,125.0,2,111,1,0,22,7.0,0.0,0.0,409.2920832541072,0.0,521.3730962431066,24498.0,0,20,2,13036,201102215,,,,186.0,1.0,6.0,3.0,0.0,2.0,1.5,3093.777391518803,0.0,300.0,300.0,0.0,34675.0,0,1,3,72.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,930.6651794972138,0.03798943503539937,0.026839659105903788,23116.666666666668,7,4,7,7_0,7_4,7_0_1 -2216,2,34.0,2,0.0,9,120,1,0,47,9.0,0.0,0.0,245.5752499524643,0.0,0.0,32172.0,0,43,2,13037,201102216,,,,490.0,1.0,1.0,3.0,0.0,1.0,1.0,2784.4837370596365,0.0,180.0,0.0,0.0,30281.0,0,1,3,80.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,245.5752499524643,0.0076331981211135245,0.00810987913055924,30281.0,9,5,9,9_0,9_0,9_0_0 -2217,1,57.0,5,234.0,2,111,1,0,67,4.0,0.0,0.0,630.309808211325,0.0,93.84715732375918,8381.0,0,71,2,13039,201102217,,,,35.0,1.0,1.0,4.0,1.0,2.0,1.5,3826.3085418146934,0.0,462.0,54.0,0.0,23338.0,0,1,3,92.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,724.1569655350843,0.08640460154338198,0.031029092704391307,15558.666666666666,4,2,4_1,4_0_1,4_3_1,4_0_1 -2218,2,71.0,2,0.0,1,111,2,72,31,10.0,0.0,0.0,2471.569411733865,0.0,5320.45018228078,57499.0,41,12,1,1304,201102218,,,303.0,,1.0,2.0,6.0,0.0,2.0,1.5,2693.7957582597337,2417.0,890.0,1566.0,0.0,56337.0,5,5,1,75.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,7792.019594014644,0.13551574103922928,0.13831087196717334,37558.0,10,5,10,10_1,10_4,10_1_0 -2220,2,37.0,1,0.0,5,111,2,46,47,9.0,0.0,0.0,136.43069441803573,0.0,57.351040586741725,55752.0,31,31,1,13041,201102220,,,200.0,1020.0,2.0,0.0,4.0,1.0,3.0,1.8,3096.615187190677,0.0,100.0,33.0,0.0,56792.0,1,1,3,100.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,193.78173500477746,0.0034757808689334455,0.00341213084597791,31551.11111111111,9,5,9,9_1,9_2,9_0_0 -2221,1,49.0,4,51.0,5,111,2,0,67,5.0,0.0,0.0,267.40416105935003,0.0,910.6650081046262,11288.0,0,50,2,13043,201102221,,,74.0,277.0,1.0,0.0,2.0,0.0,1.0,1.0,2138.383018406255,0.0,196.0,524.0,0.0,17432.0,0,4,3,55.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1178.0691691639763,0.1043647385864614,0.06758083806585453,17432.0,5,3,5,5_0,5_2,5_0_0 -2222,2,73.0,2,0.0,5,111,1,0,75,9.0,0.0,0.0,1153.5580411967492,0.0,1199.980555978158,27828.0,0,50,2,13045,201102222,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2094.0049897250947,1116.0,420.0,0.0,0.0,29110.0,0,5,1,82.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2353.5385971749074,0.08457447884055294,0.08084983157591574,29110.0,9,5,9,9_0,9_3,9_0_0 -2223,2,50.0,1,0.0,9,111,2,45,53,9.0,0.0,277.585263912688,780.3079632271495,0.0,1612.877091368492,41964.0,50,60,1,13046,201102223,,,350.0,,2.0,2.0,6.0,0.0,2.0,1.5,3917.6062922978845,1500.0,0.0,0.0,0.0,45276.0,1,1,2,200.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2670.7703185083296,0.06364432176409135,0.05898865444183076,30184.0,9,5,9,9_1,9_2,9_0_0 -2224,2,41.0,2,0.0,1,111,2,54,54,9.0,0.0,0.0,721.718373471409,0.0,1911.7013528913908,30283.0,50,42,1,13047,201102224,,,405.0,,2.0,0.0,3.0,1.0,3.0,1.8,2176.517632123474,0.0,529.0,1100.0,0.0,57814.0,1,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2633.4197263628,0.08696033174925866,0.04554986208120524,32118.888888888887,9,5,9,9_1,9_4,9_1_0 -2225,2,67.0,3,0.0,7,111,2,0,77,8.0,0.0,0.0,3451.696568776304,0.0,721.2327831362974,22943.0,0,50,2,13048,201102225,,,,442.0,0.0,2.0,2.0,0.0,1.0,1.0,1905.829523365239,0.0,2530.0,415.0,0.0,24794.0,0,5,3,49.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,4172.929351912601,0.1818824631439917,0.16830399902849888,24794.0,7,4,7,7_0,7_2,7_0_0 -2226,2,66.0,3,0.0,9,300,2,71,71,2.0,1586.456009138882,0.0,955.0148609262501,0.0,0.0,21277.0,50,50,1,13049,201102226,,,140.0,,0.0,4.0,4.0,0.0,2.0,1.5,1046.1279252927377,0.0,700.0,0.0,0.0,16070.0,5,5,1,100.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2541.470870065132,0.11944686140269456,0.15815002302832185,10713.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -2227,2,71.0,3,0.0,4,111,1,75,75,2.0,0.0,0.0,436.5782221377143,0.0,0.0,19497.0,70,70,2,13051,201102227,,,,372.0,0.0,2.0,4.0,0.0,2.0,1.5,2146.9897164907115,0.0,320.0,0.0,0.0,18390.0,5,5,3,78.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,436.5782221377143,0.022392071710402334,0.023739979452839278,12260.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -2228,2,50.0,2,0.0,1,111,2,0,85,2.0,0.0,430.2571590646664,997.3083761958411,0.0,1355.5700502320772,37923.0,0,30,1,13052,201102228,,,622.0,,0.0,2.0,7.0,0.0,1.0,1.0,3212.668798081786,0.0,731.0,780.0,0.0,11259.0,0,7,1,200.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2783.1355854925846,0.0733891196765178,0.24719207616063457,11259.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -2229,1,60.0,3,11.0,1,111,2,0,77,5.0,0.0,0.0,540.2655498954215,0.0,152.93610823131127,14132.0,0,50,2,13054,201102229,,,85.0,,0.0,0.0,2.0,0.0,1.0,1.0,2773.0121774081454,0.0,396.0,88.0,0.0,17310.0,0,5,3,50.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,693.2016581267328,0.049051914670728336,0.04004631185018676,17310.0,5,3,5,5_0,5_2,5_1_0 -2230,2,64.0,2,0.0,1,111,2,86,74,9.0,6345.824036555528,0.0,954.2208486020446,0.0,562.3564791904809,30458.0,20,20,1,13055,201102230,,,180.0,,0.0,4.0,8.0,0.0,2.0,1.5,1048.8790188687387,523.0,500.0,0.0,0.0,47334.0,5,5,1,170.0,8,7.0,3,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,7862.401364348054,0.25813912155584917,0.16610473157451416,31556.0,9,5,9,9_1,9_3,9_1_0 -2231,2,47.0,2,0.0,8,112,5,85,11,6.0,0.0,48.5774211847204,279.68292355697326,151.1981979105009,0.0,10677.0,71,50,1,13056,201102231,,,,,1.0,0.0,3.0,0.0,2.0,1.5,2486.7138101820783,0.0,205.0,0.0,0.0,30420.0,6,1,1,100.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,479.4585426521945,0.04490573594194947,0.015761293315325265,20280.0,6,3,6,6_1,6_0,6_0_0 -2232,2,62.0,3,0.0,99,111,2,86,75,5.0,0.0,0.0,499.39709646537557,0.0,1032.241338475835,16323.0,70,50,2,13057,201102232,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2633.4905829706477,960.0,0.0,0.0,0.0,25720.0,5,5,1,90.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1531.6384349412106,0.09383314555787604,0.0595504834736085,17146.666666666668,5,3,5,5_0,5_3,5_0_0 -2233,2,77.0,3,0.0,6,112,2,0,75,5.0,0.0,0.0,758.5546609642786,0.0,1183.516928471852,19246.0,0,50,1,13058,201102233,,,210.0,,0.0,2.0,3.0,0.0,1.0,1.0,1640.261702087585,0.0,556.0,681.0,0.0,17842.0,0,5,1,75.0,7,1.0,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1942.0715894361306,0.10090780367017202,0.10884831237731928,17842.0,5,3,5,5_1,5_1,5_0_0 -2234,2,65.0,5,0.0,2,111,1,0,77,5.0,0.0,0.0,507.5221832350929,0.0,182.4805836850873,35219.0,0,50,2,13059,201102234,,,,330.0,0.0,3.0,5.0,0.0,1.0,1.0,2978.7270467288236,0.0,372.0,105.0,0.0,16770.0,0,5,3,68.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,690.0027669201802,0.019591776226473782,0.041145066602276695,16770.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -2235,2,55.0,4,0.0,4,111,2,56,54,8.0,0.0,0.0,25.921831939426788,0.0,677.7850251160386,30459.0,50,50,2,1306,201102235,,,,500.0,2.0,3.0,1.0,0.0,2.0,1.5,2824.422157029765,0.0,19.0,390.0,0.0,37620.0,1,1,3,30.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,703.7068570554653,0.023103413016036814,0.018705658082282438,25080.0,8,4,8,8_0,8_3,8_0_1 -2236,1,34.0,3,66.0,1,112,2,54,63,6.0,0.0,0.0,914.0856526008394,3128.2385774586396,104.27461924862132,34810.0,43,71,8,13060,201102236,,,350.0,,2.0,0.0,4.0,2.0,4.0,2.1,3083.911237944758,0.0,670.0,60.0,0.0,40818.0,1,1,3,150.0,9,2.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,4146.5988493081,0.11912090920161161,0.10158750672027293,19437.142857142855,6,3,6,6_0,6_1,6_1_0 -2237,1,25.0,3,61.0,1,112,2,84,63,3.0,0.0,0.0,1241.5193192041252,55.61313026593137,0.0,25785.0,41,50,1,13064,201102237,,,300.0,,1.0,0.0,3.0,1.0,3.0,1.8,2032.8440898686376,0.0,910.0,0.0,0.0,22982.0,3,1,3,100.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1297.1324494700566,0.05030569902928279,0.056441234421288684,12767.777777777777,3,2,3_1,3_1_1,3_0_1,3_1_0 -2238,2,51.0,3,0.0,2,111,1,77,62,7.0,0.0,0.0,544.142989650528,0.0,368.71147667434326,33993.0,50,71,2,13065,201102238,,,,,1.0,2.0,2.0,0.0,2.0,1.5,2701.985342186604,233.0,310.0,68.0,0.0,33451.0,5,1,2,46.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,912.8544663248713,0.026854189577997567,0.027289302751034986,22300.666666666668,7,4,7,7_0,7_2,7_0_1 -2239,1,38.0,3,100.0,5,112,6,55,56,3.0,0.0,0.0,2182.8911106885716,111.22626053186274,0.0,35353.0,50,41,1,13066,201102239,,,840.0,,2.0,1.0,4.0,2.0,4.0,2.1,1649.6441659233242,0.0,1600.0,0.0,0.0,27822.0,1,1,2,100.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2294.1173712204345,0.06489173114644965,0.08245695389333745,13248.571428571428,3,2,3_1,3_1_1,3_0_1,3_0_0 -2240,2,53.0,1,0.0,7,112,2,85,37,7.0,0.0,0.0,1399.7789247290466,93.84715732375918,0.0,27246.0,70,31,1,13067,201102240,,,351.0,,1.0,2.0,6.0,0.0,2.0,1.5,1978.0354313573716,0.0,1026.0,0.0,0.0,36390.0,6,1,1,130.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1493.6260820528057,0.05482001328829207,0.04104495966069815,24260.0,7,4,7,7_1,7_0,7_0_0 -2241,2,27.0,3,0.0,4,111,2,42,47,7.0,0.0,0.0,884.0708998288715,0.0,0.0,29549.0,20,20,2,13069,201102241,,,,531.0,2.0,0.0,3.0,0.0,2.0,1.5,3860.5162400312643,0.0,648.0,0.0,0.0,34280.0,1,1,3,55.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,884.0708998288715,0.029918809429384123,0.02578969952826346,22853.333333333332,7,4,7,7_0,7_3,7_0_1 -2242,2,40.0,3,0.0,5,111,2,54,43,6.0,0.0,0.0,936.3695558725793,0.0,1935.4525096421905,67197.0,31,42,1,1307,201102242,,,340.0,,2.0,0.0,7.0,3.0,5.0,2.4,1345.695115479204,1800.0,0.0,0.0,0.0,51043.0,1,1,2,140.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2871.8220655147697,0.04273735532114186,0.05626279931655212,21267.916666666668,6,3,6,6_1,6_2,6_0_0 -2243,2,60.0,1,0.0,6,400,2,43,31,10.0,5552.596031986088,0.0,1118.731694227893,243.30744491344973,0.0,91656.0,10,10,1,13070,201102243,,,,,2.0,3.0,7.0,1.0,3.0,2.0,1294.0948815009347,0.0,820.0,0.0,0.0,114566.0,1,1,1,245.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6914.635171127431,0.07544116229300243,0.06035503701907574,57283.0,10,5,10,10_1,10_0,10_0_0 -2244,2,37.0,2,0.0,4,111,2,0,42,9.0,2538.3296146222115,0.0,1214.5293980409488,0.0,976.3282659750604,36492.0,0,20,1,13072,201102244,,,502.0,,1.0,1.0,7.0,1.0,3.0,2.0,1639.134997875345,908.0,544.0,0.0,0.0,60227.0,0,1,1,140.0,10,8.0,4,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4729.187278638221,0.1295951791800455,0.0785227103896628,30113.5,9,5,9,9_1,9_4,9_0_1 -2245,2,65.0,3,0.0,6,111,2,0,77,4.0,0.0,166.55115834761278,1207.4116455996161,45.18566834106924,0.0,15973.0,0,71,1,13075,201102245,,,700.0,,0.0,2.0,4.0,0.0,1.0,1.0,4409.075248057789,0.0,885.0,0.0,0.0,16420.0,0,5,1,89.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1419.148472288298,0.08884670833833958,0.0864280433793117,16420.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -2246,1,18.0,2,43.0,1,111,2,0,84,1.0,0.0,0.0,736.7257498573929,0.0,0.0,9976.0,0,60,2,13077,201102246,,,,347.0,0.0,0.0,1.0,0.0,1.0,1.0,3860.417685106148,0.0,540.0,0.0,0.0,7476.0,0,3,3,33.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,736.7257498573929,0.07384981454063681,0.09854544540628583,7476.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -2247,2,81.0,3,0.0,1,300,6,0,71,3.0,1142.2483265799951,0.0,676.6962443134572,90.37133668213848,0.0,19297.0,0,70,1,13080,201102247,,,151.0,,0.0,1.0,4.0,0.0,1.0,1.0,2287.7028821442213,0.0,496.0,0.0,0.0,12747.0,0,5,1,73.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1909.3159075755907,0.09894366521094422,0.14978551091045664,12747.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -2248,2,69.0,1,0.0,5,111,1,74,74,10.0,0.0,0.0,1832.8385689165484,0.0,2804.255636192685,51611.0,10,10,2,13082,201102248,,,,,0.0,5.0,5.0,0.0,2.0,1.5,2531.370886464496,2608.0,349.0,0.0,0.0,102564.0,5,5,1,113.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,4637.094205109233,0.08984701333260804,0.04521171371152874,68376.0,10,5,10,10_0,10_3,10_0_0 -2249,2,66.0,2,0.0,7,400,2,75,45,10.0,0.0,0.0,1191.039962269452,4827.914871211166,0.0,57066.0,41,41,1,13083,201102249,,,,,1.0,2.0,6.0,0.0,2.0,1.5,3785.705938715254,0.0,873.0,0.0,0.0,57212.0,5,5,1,240.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6018.954833480619,0.10547357153963163,0.10520441224709184,38141.333333333336,10,5,10,10_1,10_0,10_0_0 -2250,2,65.0,3,0.0,7,111,2,74,72,10.0,0.0,0.0,2728.6138883607146,0.0,0.0,59085.0,30,10,2,13084,201102250,,,900.0,,0.0,2.0,5.0,0.0,2.0,1.5,4182.534696290695,0.0,2000.0,0.0,0.0,91511.0,5,5,2,150.0,6,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2728.6138883607146,0.046181160842188616,0.029817332215369897,61007.333333333336,10,5,10,10_0,10_2,10_0_0 -2251,2,74.0,2,0.0,1,300,5,77,75,4.0,0.0,0.0,1036.8732775770716,93.84715732375918,0.0,24602.0,41,41,1,13085,201102251,,,210.0,,0.0,1.0,7.0,0.0,2.0,1.5,2485.488343416222,0.0,760.0,0.0,0.0,24899.0,5,5,1,300.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1130.7204349008307,0.04596050869444886,0.04541228301943173,16599.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0 -2252,2,62.0,3,0.0,5,111,1,75,77,4.0,0.0,0.0,627.5811943229643,0.0,0.0,22464.0,50,50,2,13087,201102252,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2077.946311151649,0.0,460.0,0.0,0.0,23046.0,5,5,3,75.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,627.5811943229643,0.027937197040730246,0.02723167553254206,15364.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -2253,2,50.0,2,0.0,5,112,4,85,38,7.0,0.0,0.0,272.86138883607146,0.0,0.0,68001.0,41,41,1,13089,201102253,,,460.0,,1.0,0.0,8.0,3.0,5.0,2.8,2070.695785384579,0.0,200.0,0.0,0.0,67334.0,6,1,2,190.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,272.86138883607146,0.004012608473935257,0.004052356741558075,24047.857142857145,7,4,7,7_1,7_2,7_0_0 -2254,2,68.0,3,0.0,2,111,1,0,72,5.0,0.0,0.0,1064.1594164606786,0.0,0.0,38445.0,0,43,2,1309,201102254,,,300.0,,0.0,1.0,4.0,0.0,1.0,1.0,3824.1165244925687,0.0,780.0,0.0,0.0,18472.0,0,5,1,130.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1064.1594164606786,0.02768004724829441,0.05760932310852526,18472.0,5,3,5,5_0,5_3,5_0_1 -2255,2,54.0,4,0.0,3,111,1,0,52,10.0,0.0,0.0,720.3540665272286,0.0,384.0781808990885,57548.0,0,20,2,13090,201102255,221.0,221.0,,,2.0,1.0,5.0,1.0,2.0,1.5,3313.1201716210317,0.0,528.0,221.0,0.0,58105.0,0,1,1,80.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1104.4322474263172,0.01919149661893232,0.019007525125657294,38736.666666666664,10,5,10,10_0,10_3,10_0_1 -2256,1,46.0,4,197.0,4,221,1,0,68,3.0,0.0,0.0,1113.2744664511715,97.32297796537989,0.0,4257.0,0,71,2,13091,201102256,,,,,1.0,0.0,1.0,0.0,1.0,1.0,5911.564493547984,0.0,816.0,0.0,0.0,14594.0,0,4,3,32.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1210.5974444165513,0.2843780701002,0.08295172292836449,14594.0,3,2,3_1,3_0_1,3_1_1,3_0_1 -2257,2,45.0,2,0.0,5,112,2,52,68,4.0,0.0,124.91336876070959,1514.3807080401966,166.8393907977941,0.0,38145.0,50,50,1,13092,201102257,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.5,1120.8859919142078,0.0,1110.0,0.0,0.0,41381.0,1,1,2,100.0,8,1.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1806.1334675987002,0.04734915369245511,0.04364644323720307,16552.4,4,2,4_0,4_1_0,4_1_0,4_0_0 -2258,0,88.0,3,0.0,2,111,2,0,77,7.0,0.0,0.0,3547.198054868929,0.0,1042.7461924862132,10040.0,0,71,2,13093,201102258,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3725.841606685018,0.0,2600.0,600.0,0.0,22040.0,0,5,5,60.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,4589.944247355143,0.4571657616887592,0.2082551836368032,22040.0,7,4,7,7_0,7_3,7_0_1 -2259,2,80.0,3,0.0,1,111,2,0,71,2.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,10304.0,0,71,1,13094,201102259,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2850.454576084928,1200.0,0.0,0.0,0.0,9720.0,0,5,5,117.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1914.548043676513,0.1858062930586678,0.19696996334120506,9720.0,1,1,1_0,1_1_0,1_2_0,1_1_0 -2260,2,64.0,1,0.0,9,211,2,75,46,10.0,0.0,0.0,0.0,0.0,0.0,74782.0,33,60,1,13095,201102260,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1673.1451489624615,0.0,0.0,0.0,0.0,62505.0,5,1,3,105.0,4,4.0,3,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,41670.0,10,5,10,10_1,10_2,10_0_0 -2261,2,43.0,3,0.0,2,111,2,0,68,4.0,0.0,0.0,695.7965415319821,0.0,2085.4923849724264,28167.0,0,50,2,13097,201102261,,,,276.0,2.0,0.0,3.0,2.0,3.0,2.0,1488.8510408376053,0.0,510.0,1200.0,0.0,29738.0,0,1,3,80.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2781.2889265044087,0.09874281700232217,0.09352642835780511,14869.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -2262,2,85.0,3,0.0,1,111,1,0,75,6.0,0.0,0.0,163.71683330164288,0.0,128.6053637399663,20248.0,0,70,8,13098,201102262,,,,,0.0,0.0,1.0,0.0,2.0,1.5,4155.478714451585,0.0,120.0,74.0,0.0,28672.0,0,5,1,35.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,292.3221970416092,0.014437089936863353,0.010195389126730231,19114.666666666668,5,3,5,5_0,5_4,5_1_0 -2263,1,21.0,3,250.0,1,111,1,0,84,1.0,0.0,0.0,272.86138883607146,0.0,0.0,15299.0,0,41,2,13099,201102263,,,,215.0,0.0,0.0,1.0,0.0,1.0,1.0,3148.6716817781585,0.0,200.0,0.0,0.0,5422.0,0,3,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,272.86138883607146,0.01783524340388728,0.05032485961565317,5422.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -2264,2,69.0,3,0.0,5,111,5,77,77,7.0,0.0,1665.511583476128,1200.5901108787143,0.0,0.0,23567.0,70,70,1,1310,201102264,,,147.0,,0.0,5.0,3.0,0.0,2.0,1.5,1838.0632941123183,0.0,880.0,0.0,0.0,34663.0,5,5,1,82.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2866.101694354842,0.12161504198051691,0.08268475591711168,23108.666666666668,7,4,7,7_1,7_3,7_0_0 -2265,2,56.0,3,0.0,2,111,2,72,54,5.0,0.0,0.0,450.22129157951787,0.0,0.0,36127.0,50,41,2,13100,201102265,,,,,1.0,1.0,3.0,0.0,2.0,1.5,3314.972409097869,0.0,330.0,0.0,0.0,26054.0,6,1,1,64.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,450.22129157951787,0.012462183175450989,0.017280313640113527,17369.333333333332,5,3,5,5_0,5_4,5_0_1 -2266,2,36.0,2,0.0,6,111,2,34,35,7.0,0.0,277.585263912688,733.9971359690322,0.0,1235.6542380961625,93302.0,12,20,1,13103,201102266,,,325.0,,2.0,0.0,6.0,3.0,5.0,2.4,1924.3454755458838,0.0,538.0,711.0,0.0,55462.0,1,1,2,105.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2247.2366379778828,0.024085621294054605,0.0405184926251827,23109.166666666668,7,4,7,7_1,7_3,7_0_0 -2267,2,78.0,4,0.0,2,300,2,77,75,4.0,0.0,0.0,1991.8881385033217,0.0,2832.793822920879,16207.0,50,60,1,13105,201102267,,,300.0,,0.0,1.0,3.0,0.0,2.0,1.5,1840.7519884206174,0.0,1460.0,1630.0,0.0,22100.0,5,5,1,80.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4824.6819614242,0.2976912421437774,0.21831140096942084,14733.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_1 -2268,1,23.0,3,140.0,99,111,1,0,52,9.0,0.0,0.0,491.1504999049286,0.0,104.27461924862132,18618.0,0,31,2,13108,201102268,,,,260.0,1.0,0.0,1.0,0.0,1.0,1.0,4083.2105979241574,0.0,360.0,60.0,0.0,33214.0,0,1,3,33.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,595.42511915355,0.03198115367674025,0.01792693199113476,33214.0,9,5,9,9_0,9_3,9_0_0 -2269,2,72.0,2,0.0,1,112,5,0,77,9.0,475.9368027416647,277.585263912688,709.4396109737858,52.13730962431066,0.0,11410.0,0,70,1,13109,201102269,,,106.0,,0.0,2.0,4.0,0.0,1.0,1.0,2680.5716874189743,0.0,520.0,0.0,0.0,28912.0,0,5,1,150.0,8,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1515.0989872524492,0.13278694016235312,0.05240381112522306,28912.0,8,4,8,8_1,8_0,8_1_0 -2270,2,56.0,3,0.0,6,111,2,56,62,2.0,1269.1648073111057,83.27557917380639,1002.7656039725625,243.30744491344973,0.0,50041.0,60,50,1,13110,201102270,,,230.0,,2.0,2.0,6.0,1.0,3.0,2.0,1229.4689740230642,0.0,735.0,0.0,0.0,24222.0,1,1,1,123.0,3,4.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2598.513435370924,0.05192768800325581,0.10727906181863281,12111.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -2271,2,51.0,1,0.0,4,112,2,77,45,10.0,0.0,0.0,2318.341609616022,391.02982218232995,731.1709480870497,76106.0,50,41,1,13111,201102271,,,80.0,,1.0,3.0,11.0,0.0,2.0,1.5,3382.5603020920535,680.0,1440.0,0.0,0.0,67920.0,5,1,1,260.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3440.5423798854017,0.04520724226585817,0.05065580653541522,45280.0,10,5,10,10_1,10_0,10_0_1 -2272,2,62.0,3,0.0,2,211,4,77,78,6.0,0.0,0.0,2061.46779265652,0.0,0.0,15444.0,50,70,1,13113,201102272,,,225.0,,0.0,5.0,4.0,0.0,2.0,1.5,1498.0578833106701,0.0,1511.0,0.0,0.0,28960.0,5,5,2,150.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2061.46779265652,0.13348017305468274,0.07118328013316713,19306.666666666668,6,3,6,6_1,6_1,6_0_1 -2273,2,55.0,3,0.0,2,221,4,0,63,9.0,0.0,0.0,1177.1233556964178,97.32297796537989,712.8916743848736,17812.0,0,50,1,13114,201102273,,,193.0,,1.0,1.0,5.0,0.0,1.0,1.0,2905.3268137107125,663.0,610.0,0.0,0.0,34952.0,0,1,1,180.0,1,1.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1987.3380080466713,0.11157298495658384,0.056859064089227265,34952.0,9,5,9,9_1,9_1,9_0_1 -2274,2,44.0,3,0.0,5,111,2,42,64,5.0,0.0,0.0,384.7345582588608,0.0,1988.1694070070464,47411.0,10,41,1,13116,201102274,,,260.0,,2.0,0.0,5.0,2.0,4.0,2.3,1842.231835579016,0.0,282.0,1144.0,0.0,38710.0,1,1,2,130.0,6,5.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2372.903965265907,0.050049650192274094,0.06129950827346699,16830.434782608696,4,2,4_0,4_1_0,4_2_0,4_0_0 -2275,1,45.0,3,59.0,8,112,2,85,64,2.0,0.0,0.0,2758.6286411326823,0.0,0.0,27461.0,50,50,1,13119,201102275,,,1500.0,,1.0,0.0,5.0,3.0,5.0,2.8,2002.5712595992122,0.0,2022.0,0.0,0.0,31048.0,6,1,2,105.0,9,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2758.6286411326823,0.10045623397300471,0.08885044579788336,11088.57142857143,2,1,2_1,2_1_1,2_1_1,2_0_0 -2276,2,30.0,1,0.0,2,111,2,0,54,7.0,0.0,0.0,368.36287492869644,0.0,1114.0005156394377,23010.0,0,31,2,1312,201102276,,,,333.0,1.0,0.0,2.0,0.0,1.0,1.0,2062.7008420426278,0.0,270.0,641.0,0.0,22628.0,0,1,3,55.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1482.363390568134,0.06442257238453429,0.06551013746544697,22628.0,7,4,7,7_0,7_3,7_0_1 -2277,2,77.0,3,0.0,2,111,1,0,75,5.0,0.0,0.0,94.13717914844464,0.0,109.48835021105238,24224.0,0,41,2,13120,201102277,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3438.203485157306,0.0,69.0,63.0,0.0,16785.0,0,5,1,58.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,203.62552935949702,0.008405941601696542,0.012131398829877689,16785.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -2278,2,46.0,2,0.0,4,111,3,0,47,9.0,0.0,0.0,409.2920832541072,0.0,0.0,15047.0,0,50,2,13121,201102278,,,,563.0,1.0,0.0,2.0,0.0,1.0,1.0,2801.4111667751426,0.0,300.0,0.0,0.0,31944.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,409.2920832541072,0.0272009093675887,0.012812800001693814,31944.0,9,5,9,9_0,9_4,9_0_1 -2279,2,78.0,3,0.0,5,300,4,0,78,7.0,0.0,0.0,1309.734666413143,0.0,0.0,28447.0,0,50,1,13122,201102279,,,188.0,,0.0,0.0,3.0,0.0,1.0,1.0,2580.250610201608,0.0,960.0,0.0,0.0,23260.0,0,5,1,85.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1309.734666413143,0.046041222849971634,0.05630845513384106,23260.0,7,4,7,7_1,7_0,7_0_0 -2280,2,35.0,2,0.0,7,111,2,0,45,6.0,0.0,0.0,98.23009998098573,0.0,0.0,14990.0,0,31,1,13123,201102280,,,,375.0,1.0,0.0,2.0,0.0,1.0,1.0,3816.945484169002,0.0,72.0,0.0,0.0,19576.0,0,1,3,35.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,98.23009998098573,0.006553042026750215,0.005017884142878307,19576.0,6,3,6,6_1,6_2,6_0_0 -2281,2,53.0,1,0.0,4,111,1,54,37,9.0,0.0,0.0,341.0767360450893,0.0,0.0,37017.0,41,41,8,13126,201102281,,,,561.0,2.0,2.0,2.0,0.0,2.0,1.5,3210.2871393561845,0.0,250.0,0.0,0.0,47889.0,1,1,3,70.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,341.0767360450893,0.009214056677880144,0.007122235503875406,31926.0,9,5,9,9_0,9_3,9_0_1 -2282,2,48.0,3,0.0,5,112,6,0,45,5.0,0.0,0.0,518.4366387885358,232.8799829885876,0.0,38667.0,0,41,1,13128,201102282,,,360.0,,1.0,0.0,5.0,2.0,3.0,2.0,2270.8354626427704,0.0,380.0,0.0,0.0,37628.0,0,1,2,110.0,7,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,751.3166217771234,0.019430434783591265,0.0199669560374488,18814.0,5,3,5,5_1,5_2,5_0_0 -2283,2,57.0,1,0.0,1,111,2,75,38,10.0,0.0,0.0,708.5196306102516,0.0,1464.4923989625909,39778.0,20,41,1,1313,201102283,,,713.0,,1.0,3.0,8.0,0.0,2.0,1.5,1473.8811484305281,1362.0,0.0,0.0,0.0,57862.0,5,1,1,270.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2173.0120295728425,0.054628488852452174,0.03755507983776645,38574.666666666664,10,5,10,10_1,10_3,10_1_0 -2284,2,74.0,3,0.0,5,111,1,78,78,6.0,0.0,0.0,474.77881657476433,0.0,0.0,15432.0,71,50,2,13130,201102284,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2625.452230213445,0.0,348.0,0.0,0.0,30920.0,5,5,1,80.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,474.77881657476433,0.030765864215575707,0.015355071687411525,20613.333333333332,6,3,6,6_0,6_3,6_0_0 -2285,2,60.0,2,0.0,5,120,2,54,38,10.0,3172.912018277764,1027.0654764769456,775.1429049085051,48.661488982689946,347.30620034134864,38771.0,20,20,1,13135,201102285,,,,,2.0,1.0,5.0,0.0,2.0,1.5,1233.5626318582238,323.0,445.0,0.0,0.0,57020.0,1,1,1,80.0,0,0.0,3,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5371.088088987254,0.13853364857721634,0.09419656417024297,38013.333333333336,10,5,10,10_1,10_0,10_0_0 -2286,2,36.0,3,0.0,1,111,4,0,68,4.0,0.0,0.0,187.27391117451586,0.0,387.09050192843813,11749.0,0,71,2,13137,201102286,,,235.0,233.0,1.0,0.0,2.0,0.0,1.0,1.0,2901.8829294533098,360.0,0.0,0.0,0.0,15341.0,0,1,3,40.0,4,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,574.364413102954,0.0488862382418039,0.03743982876624431,15341.0,4,2,4_0,4_0_0,4_2_0,4_1_0 -2287,2,41.0,3,0.0,1,112,2,46,67,8.0,2379.684013708323,249.82673752141918,682.1534720901786,41.709847699448524,0.0,27195.0,50,50,1,13140,201102287,,,160.0,,2.0,0.0,4.0,0.0,2.0,1.5,1661.9638215986147,0.0,500.0,0.0,0.0,38235.0,1,1,2,85.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3353.3740710193692,0.12330847843424782,0.08770430419823118,25490.0,8,4,8,8_1,8_0,8_1_0 -2288,2,35.0,2,0.0,5,111,2,54,22,7.0,0.0,0.0,573.00891655575,0.0,3128.2385774586396,109697.0,50,31,1,13141,201102288,,,750.0,,2.0,0.0,5.0,3.0,5.0,2.4,2086.339648242852,0.0,420.0,1800.0,0.0,54067.0,1,1,2,110.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3701.2474940143898,0.03374064463033984,0.06845668326362457,22527.916666666668,7,4,7,7_1,7_3,7_0_0 -2289,2,33.0,3,0.0,9,112,2,42,42,6.0,0.0,0.0,613.9381248811608,0.0,1477.223772688802,28001.0,43,50,2,13145,201102289,,,300.0,570.0,2.0,0.0,3.0,2.0,4.0,2.1,2640.0423426038137,0.0,450.0,850.0,0.0,41699.0,1,1,3,65.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,2091.161897569963,0.07468168628156005,0.050148969941004894,19856.666666666664,6,3,6,6_0,6_1,6_0_0 -2290,2,53.0,1,0.0,1,112,2,34,34,10.0,1.5864560091388822,0.0,2046.460416270536,0.0,0.0,107271.0,10,10,1,13150,201102290,,,240.0,,2.0,2.0,6.0,1.0,3.0,2.0,1624.3920460380152,0.0,1500.0,0.0,0.0,104435.0,1,1,1,200.0,9,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2048.046872279675,0.019092269786612177,0.01961073272638172,52217.5,10,5,10,10_1,10_0,10_1_0 -2291,2,42.0,2,0.0,9,111,4,55,48,7.0,0.0,0.0,1091.4455553442858,100.7987986070006,0.0,67092.0,50,50,1,13152,201102291,,,,,2.0,0.0,3.0,1.0,3.0,2.0,1417.0881659978631,0.0,800.0,0.0,0.0,48515.0,1,1,3,84.0,5,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1192.2443539512865,0.01777029085362318,0.024574757373003946,24257.5,7,4,7,7_1,7_2,7_0_0 -2292,2,52.0,2,0.0,6,112,6,55,52,8.0,0.0,0.0,783.2413926087368,0.0,3498.2488870451857,51677.0,31,33,1,13153,201102292,,,220.0,,2.0,1.0,4.0,0.0,2.0,1.5,1503.1026503143298,829.0,258.0,1500.0,0.0,38208.0,1,1,1,107.0,9,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4281.490279653923,0.08285098360303274,0.11205742984856372,25472.0,8,4,8,8_1,8_0,8_0_0 -2293,2,58.0,3,0.0,2,111,2,77,62,9.0,0.0,0.0,671.2390165367358,0.0,1644.063163486596,68156.0,70,71,1,13154,201102293,,,368.0,,2.0,0.0,4.0,1.0,3.0,2.0,2334.970913533365,0.0,492.0,946.0,0.0,58001.0,5,1,1,63.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2315.302180023332,0.03397062885180075,0.03991831485704267,29000.5,8,4,8,8_1,8_4,8_0_1 -2294,2,79.0,2,0.0,4,111,2,77,77,5.0,0.0,0.0,313.79059716148214,0.0,660.405921907935,21403.0,70,70,2,13155,201102294,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2940.1304201382604,0.0,230.0,380.0,0.0,25243.0,5,5,1,60.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,974.196519069417,0.04551682096292188,0.03859273933642662,16828.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1 -2295,2,85.0,1,0.0,8,400,4,0,78,6.0,0.0,0.0,900.4425831590357,0.0,0.0,9283.0,0,71,1,13158,201102295,,,,368.0,0.0,3.0,4.0,0.0,1.0,1.0,2674.775609273147,0.0,660.0,0.0,0.0,21439.0,0,5,3,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,900.4425831590357,0.09699909330593944,0.042000213776717,21439.0,6,3,6,6_1,6_0,6_0_0 -2296,2,63.0,4,0.0,3,111,1,78,78,8.0,0.0,0.0,753.0974331875572,0.0,0.0,15297.0,71,50,8,13159,201102296,,,250.0,430.0,0.0,1.0,2.0,0.0,2.0,1.5,3882.158238964377,0.0,552.0,0.0,0.0,38770.0,5,5,3,43.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,753.0974331875572,0.049231707732729106,0.01942474679359188,25846.666666666668,8,4,8,8_0,8_2,8_0_1 -2297,2,51.0,5,0.0,1,112,5,11,37,6.0,0.0,555.170527825376,0.0,0.0,0.0,97686.0,50,50,1,1316,201102297,,,,,2.0,1.0,5.0,1.0,3.0,2.0,1584.2103960469983,0.0,0.0,0.0,0.0,42265.0,1,1,1,120.0,8,0.0,4,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,555.170527825376,0.0056832148703537455,0.013135467356568698,21132.5,6,3,6,6_1,6_0,6_1_0 -2298,2,53.0,2,0.0,6,111,6,52,62,6.0,317.29120182777643,0.0,1978.245069061518,20.854923849724262,0.0,33953.0,50,71,1,13160,201102298,,,200.0,,2.0,2.0,4.0,1.0,3.0,1.8,1196.9391945643122,0.0,1450.0,0.0,0.0,38224.0,1,1,1,91.0,5,4.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2316.391194739019,0.06822346168936526,0.06060043937680564,21235.555555555555,6,3,6,6_1,6_2,6_0_0 -2299,2,54.0,2,0.0,3,120,2,54,38,10.0,0.0,582.9290542166448,859.5133748336251,0.0,3157.7830529124153,30457.0,50,44,1,13161,201102299,,,424.0,,3.0,1.0,5.0,1.0,3.0,2.0,2520.1778205733085,0.0,630.0,1817.0,0.0,75575.0,1,1,2,150.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4600.225481962685,0.1510400066310761,0.06086967227208316,37787.5,10,5,10,10_1,10_1,10_0_1 -2300,2,56.0,3,0.0,2,111,1,77,52,6.0,0.0,0.0,750.3688192991965,0.0,147.7223772688802,43651.0,60,50,2,13162,201102300,85.0,85.0,,425.0,2.0,2.0,4.0,1.0,3.0,2.0,1730.5896426602874,0.0,550.0,85.0,0.0,41870.0,6,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,898.0911965680767,0.020574355606242163,0.021449515084023804,20935.0,6,3,6,6_0,6_4,6_0_1 -2301,2,71.0,3,0.0,1,300,2,75,74,9.0,0.0,666.2046333904511,1900.4795732432376,208.54923849724264,0.0,34211.0,50,50,1,13163,201102301,,,266.0,,0.0,2.0,6.0,0.0,2.0,1.5,1181.88258532858,0.0,1393.0,0.0,0.0,47030.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2775.233445130931,0.08112108518110933,0.0590098542447572,31353.333333333332,9,5,9,9_1,9_0,9_1_0 -2302,2,29.0,3,0.0,2,111,4,84,38,10.0,0.0,0.0,682.1534720901786,0.0,260.6865481215533,32686.0,20,10,2,13165,201102302,,,,680.0,1.0,0.0,2.0,0.0,2.0,1.5,3277.5569463020247,0.0,500.0,150.0,0.0,64188.0,3,1,3,40.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,942.8400202117319,0.028845377844084072,0.01468872717971789,42792.0,10,5,10,10_0,10_4,10_0_1 -2303,2,79.0,2,0.0,6,400,4,75,77,10.0,0.0,0.0,4560.657905184744,0.0,3067.6922277828717,41428.0,20,12,1,13166,201102303,,,455.0,,0.0,0.0,4.0,0.0,2.0,1.5,1546.2759597086124,2853.0,2255.0,0.0,0.0,77678.0,5,5,1,100.0,0,0.0,3,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,7628.3501329676155,0.18413512921134537,0.0982047701146736,51785.333333333336,10,5,10,10_1,10_0,10_0_0 -2304,2,38.0,3,0.0,5,300,5,63,63,4.0,0.0,1157.530550515909,1582.5960552492145,93.84715732375918,0.0,40068.0,50,50,1,13167,201102304,,,298.0,,3.0,0.0,7.0,2.0,4.0,2.5,1177.4526293004071,0.0,1160.0,0.0,0.0,40854.0,4,1,2,180.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2833.973763088883,0.0707291045994031,0.06936833022687823,16341.6,4,2,4_0,4_1_0,4_0_0,4_0_0 -2305,2,60.0,3,0.0,3,112,4,55,55,8.0,0.0,0.0,2257.9279926184913,264.162368763174,0.0,45802.0,71,71,1,13168,201102305,,,650.0,,2.0,4.0,5.0,0.0,2.0,1.5,3478.93347412248,0.0,1655.0,0.0,0.0,40612.0,1,1,2,120.0,10,3.0,3,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2522.0903613816654,0.055065070551103996,0.06210209695118845,27074.666666666668,8,4,8,8_1,8_1,8_0_1 -2306,2,66.0,3,0.0,1,111,2,77,78,3.0,0.0,0.0,433.8496082493536,0.0,2168.9120803713236,15132.0,71,71,2,13169,201102306,,,196.0,205.0,0.0,1.0,3.0,0.0,2.0,1.5,2870.9699312281514,0.0,318.0,1248.0,0.0,19990.0,5,5,3,60.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2602.761688620677,0.17200381235928344,0.13020318602404587,13326.666666666666,3,2,3_0,3_0_0,3_2_0,3_1_0 -2307,2,62.0,1,0.0,7,112,2,46,75,10.0,0.0,0.0,800.5735595660117,0.0,2933.9424395386823,55542.0,31,20,1,13170,201102307,,,268.0,,1.0,2.0,9.0,0.0,2.0,1.5,2393.028913076878,107.0,546.0,1622.0,0.0,91163.0,1,5,1,218.0,10,3.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3734.515999104694,0.0672376939812159,0.040965260018918793,60775.333333333336,10,5,10,10_1,10_1,10_0_0 -2308,2,50.0,4,0.0,8,300,2,68,69,3.0,0.0,555.170527825376,1487.0945691565894,0.0,0.0,57741.0,50,50,1,13171,201102308,,,,,2.0,0.0,5.0,3.0,5.0,2.8,1009.3885869713279,0.0,1090.0,0.0,0.0,40714.0,1,1,2,87.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2042.2650969819654,0.03536940989906592,0.0501612491276211,14540.714285714286,3,2,3_0,3_1_0,3_0_0,3_0_0 -2309,2,80.0,3,0.0,1,111,6,78,78,4.0,0.0,0.0,457.0428263004197,0.0,1850.8744916630283,21868.0,71,71,2,13172,201102309,,,,399.0,0.0,2.0,4.0,0.0,2.0,1.5,3132.8476143532002,0.0,335.0,1065.0,0.0,22720.0,5,5,3,70.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2307.917317963448,0.10553856401881508,0.1015808678681095,15146.666666666666,4,2,4_0,4_0_0,4_2_0,4_1_0 -2310,2,73.0,3,0.0,2,111,2,0,77,4.0,0.0,0.0,294.69029994295715,0.0,1510.2440687841986,6878.0,0,50,1,13174,201102310,,,100.0,,0.0,2.0,3.0,0.0,1.0,1.0,1496.4847817757643,0.0,216.0,869.0,0.0,16590.0,0,5,3,60.0,4,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1804.9343687271557,0.2624213970234306,0.10879652614389125,16590.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -2311,2,75.0,3,0.0,9,221,4,0,72,10.0,0.0,0.0,1964.6019996197144,0.0,0.0,46783.0,0,50,1,13176,201102311,,,400.0,,0.0,1.0,3.0,0.0,1.0,1.0,4547.1014172747755,0.0,1440.0,0.0,0.0,47474.0,0,5,1,105.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1964.6019996197144,0.04199392941067726,0.041382693676954005,47474.0,10,5,10,10_1,10_1,10_0_0 -2312,2,48.0,3,0.0,5,111,2,52,22,2.0,0.0,0.0,682.1534720901786,0.0,1564.1192887293198,33645.0,71,71,2,13177,201102312,,,,,2.0,3.0,4.0,2.0,4.0,2.3,3666.521631549897,0.0,500.0,900.0,0.0,22410.0,4,1,1,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2246.272760819498,0.06676393998571847,0.10023528606958938,9743.478260869566,1,1,1_0,1_0_0,1_4_0,1_0_0 -2313,2,31.0,3,0.0,9,112,4,46,47,9.0,0.0,0.0,1637.1683330164287,0.0,0.0,55692.0,20,30,1,13178,201102313,,,340.0,,2.0,0.0,5.0,1.0,3.0,1.8,1811.3883584742587,0.0,1200.0,0.0,0.0,59068.0,1,1,2,110.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1637.1683330164287,0.029396831376435194,0.027716671175872364,32815.555555555555,9,5,9,9_1,9_0,9_0_0 -2314,2,61.0,1,0.0,9,111,2,0,43,10.0,0.0,0.0,435.213915193534,0.0,2554.7281715912222,62848.0,0,42,2,13179,201102314,,,,,1.0,3.0,4.0,0.0,1.0,1.0,4564.044714066877,0.0,319.0,1470.0,0.0,82112.0,0,1,2,103.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2989.942086784756,0.04757418035235419,0.036412973582238356,82112.0,10,5,10,10_0,10_3,10_0_0 -2315,2,56.0,3,0.0,4,111,1,78,52,7.0,0.0,0.0,1125.5532289487946,0.0,156.41192887293198,27079.0,50,70,2,1318,201102315,,,,313.0,1.0,0.0,4.0,0.0,2.0,1.5,2216.575587833343,0.0,825.0,90.0,0.0,36146.0,5,1,3,120.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1281.9651578217267,0.047341672802604484,0.0354663076916319,24097.333333333332,7,4,7,7_0,7_3,7_0_1 -2316,2,67.0,1,0.0,4,111,2,54,22,10.0,0.0,0.0,1214.233180320518,0.0,0.0,31784.0,70,70,1,13183,201102316,,,400.0,,2.0,2.0,8.0,0.0,2.0,1.5,3326.060658729269,0.0,890.0,0.0,0.0,78340.0,1,1,1,180.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1214.233180320518,0.038202654804949596,0.015499530001538395,52226.666666666664,10,5,10,10_1,10_3,10_0_1 -2317,1,27.0,4,221.0,99,111,2,56,52,2.0,0.0,0.0,367.2649480255783,0.0,759.127484337437,18900.0,71,71,2,13184,201102317,,,,209.0,2.0,0.0,3.0,1.0,3.0,1.8,3242.5394086844585,706.0,0.0,0.0,0.0,19604.0,4,4,3,62.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1126.3924323630154,0.059597483193810336,0.057457275676546384,10891.111111111111,2,1,2_1,2_0_1,2_3_1,2_0_0 -2318,1,45.0,4,390.0,1,400,2,85,11,1.0,0.0,0.0,1489.8231830449502,69.5164128324142,0.0,20793.0,71,50,1,13185,201102318,,,,,1.0,0.0,7.0,3.0,5.0,2.6,2171.918640217359,0.0,1092.0,0.0,0.0,22483.0,6,1,3,139.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1559.3395958773644,0.07499348799487157,0.06935638464072252,8647.307692307691,1,1,1_1,1_1_1,1_0_1,1_1_0 -2319,2,57.0,4,0.0,6,111,6,85,62,3.0,0.0,0.0,2914.159632769243,180.74267336427695,0.0,19896.0,50,71,1,13187,201102319,,,494.0,,1.0,1.0,4.0,1.0,3.0,2.0,2718.2307010572313,0.0,2136.0,0.0,0.0,26185.0,6,1,1,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3094.90230613352,0.1555539960863249,0.1181937103736307,13092.5,3,2,3_0,3_1_0,3_3_0,3_0_0 -2320,2,65.0,3,0.0,5,221,2,86,75,8.0,0.0,0.0,2230.1227279626937,0.0,596.764523806342,22098.0,41,41,1,13188,201102320,,,330.0,,0.0,4.0,6.0,0.0,2.0,1.5,1545.9218608923052,555.0,1423.0,0.0,0.0,42148.0,5,5,1,110.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2826.8872517690356,0.12792502723183255,0.06707049567640305,28098.666666666668,8,4,8,8_1,8_1,8_0_0 -2321,2,29.0,3,0.0,2,111,2,67,46,7.0,0.0,0.0,720.3540665272286,0.0,2094.181936576478,22866.0,50,41,2,13189,201102321,,,,280.0,2.0,0.0,3.0,0.0,2.0,1.5,2190.5213464461885,0.0,528.0,1205.0,0.0,36495.0,1,1,3,67.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2814.5360031037067,0.1230882534375801,0.07712113996722035,24330.0,7,4,7,7_0,7_3,7_0_1 -2322,2,46.0,2,0.0,9,111,4,0,33,10.0,0.0,0.0,551.4176273471855,0.0,1139.766477900401,50261.0,0,41,2,13192,201102322,,,,480.0,1.0,2.0,3.0,0.0,1.0,1.0,3093.2129377988226,1060.0,0.0,0.0,0.0,49160.0,0,1,3,57.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1691.1841052475866,0.03364803933959903,0.034401629480219416,49160.0,10,5,10,10_0,10_2,10_0_0 -2323,2,24.0,2,0.0,1,111,2,0,84,1.0,0.0,0.0,491.1504999049286,0.0,125.12954309834558,18163.0,0,41,2,13193,201102323,,,,,0.0,0.0,3.0,0.0,1.0,1.0,4528.802453231144,0.0,360.0,72.0,0.0,8440.0,0,3,3,47.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,616.2800430032742,0.03393052045384981,0.07301896244114622,8440.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -2324,2,31.0,2,0.0,1,111,4,0,84,3.0,0.0,0.0,540.2655498954215,0.0,0.0,29101.0,0,10,2,13196,201102324,,,,533.0,0.0,0.0,1.0,0.0,1.0,1.0,3420.87271865853,0.0,396.0,0.0,0.0,14190.0,0,3,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,540.2655498954215,0.018565188477901843,0.038073682163172765,14190.0,3,2,3_0,3_0_0,3_4_0,3_1_0 -2325,2,33.0,3,0.0,1,111,4,0,22,1.0,0.0,0.0,573.00891655575,45.18566834106924,0.0,24148.0,0,50,2,132,201102325,,,180.0,460.0,1.0,0.0,2.0,0.0,1.0,1.0,2982.8000363902424,0.0,420.0,0.0,0.0,6061.0,0,1,3,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,618.1945848968193,0.02560023956008031,0.10199547680198305,6061.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -2326,1,81.0,4,183.0,4,111,2,0,78,2.0,0.0,0.0,218.28911106885715,0.0,1586.7121228998544,9004.0,0,71,2,1320,201102326,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3836.77698171836,0.0,160.0,913.0,0.0,10936.0,0,5,3,73.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1805.0012339687116,0.20046659639812434,0.16505131985814847,10936.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -2327,2,45.0,4,0.0,99,300,5,85,62,2.0,0.0,27.7585263912688,955.0148609262501,0.0,0.0,18090.0,60,50,1,13200,201102327,,,220.0,,1.0,0.0,2.0,2.0,4.0,2.3,1837.3981013074128,0.0,700.0,0.0,0.0,21600.0,6,1,1,72.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,982.7733873175189,0.05432688708222879,0.04549876793136662,9391.304347826088,1,1,1_0,1_1_0,1_0_0,1_0_0 -2328,2,43.0,1,0.0,1,120,4,43,43,8.0,0.0,0.0,1442.0724399986377,0.0,0.0,65743.0,33,33,1,13204,201102328,,,516.0,,2.0,0.0,9.0,2.0,4.0,2.3,2210.7456258857806,0.0,1057.0,0.0,0.0,65301.0,1,1,1,250.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1442.0724399986377,0.021934995969131888,0.022083466409375627,28391.739130434784,8,4,8,8_1,8_1,8_1_0 -2329,2,31.0,1,0.0,4,111,1,0,38,8.0,0.0,0.0,204.6460416270536,0.0,0.0,24412.0,0,20,2,13206,201102329,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4153.972253487674,0.0,150.0,0.0,0.0,26233.0,0,1,3,15.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,204.6460416270536,0.00838301006173413,0.007801091816683322,26233.0,8,4,8,8_0,8_4,8_0_1 -2330,2,53.0,3,0.0,7,112,2,55,42,5.0,4105.748151651427,0.0,1500.737638598393,104.27461924862132,0.0,64118.0,50,44,1,13207,201102330,,,212.0,,2.0,2.0,5.0,1.0,3.0,2.0,2136.9808261531257,0.0,1100.0,0.0,0.0,35335.0,1,1,1,200.0,9,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5710.760409498442,0.08906641519539664,0.161617671133393,17667.5,5,3,5,5_1,5_0,5_0_0 -2331,2,63.0,3,0.0,2,112,2,75,77,9.0,2657.3138153076275,0.0,1189.6756553252715,93.84715732375918,0.0,20208.0,60,50,1,13208,201102331,,,380.0,,0.0,0.0,4.0,0.0,2.0,1.5,1528.0032274741372,0.0,872.0,0.0,0.0,51232.0,5,5,1,90.0,10,1.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3940.836627956658,0.19501368903190114,0.07692138952132765,34154.666666666664,9,5,9,9_1,9_1,9_0_1 -2332,2,33.0,2,0.0,99,111,2,0,45,10.0,0.0,0.0,245.5752499524643,0.0,166.8393907977941,12678.0,0,31,2,13209,201102332,,,,238.0,1.0,0.0,1.0,0.0,1.0,1.0,3897.833583744314,0.0,180.0,96.0,0.0,54543.0,0,1,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,412.4146407502584,0.03252994484542186,0.007561275337811605,54543.0,10,5,10,10_0,10_4,10_0_0 -2333,2,70.0,3,0.0,9,221,2,0,72,5.0,0.0,0.0,1773.5990274344645,93.84715732375918,0.0,16622.0,0,70,1,13210,201102333,,,300.0,,0.0,3.0,4.0,0.0,1.0,1.0,1965.6964334254023,0.0,1300.0,0.0,0.0,18591.0,0,5,2,100.0,1,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1867.4461847582236,0.11234786335929633,0.10044893683815952,18591.0,5,3,5,5_1,5_1,5_0_0 -2334,2,30.0,3,0.0,8,112,2,69,46,8.0,0.0,0.0,1064.1594164606786,43.44775802025888,0.0,24235.0,60,20,1,13211,201102334,,,178.0,567.0,2.0,0.0,5.0,0.0,2.0,1.5,2687.6087014079294,0.0,780.0,0.0,0.0,39331.0,1,1,3,110.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1107.6071744809374,0.045702792427519595,0.02816117501413484,26220.666666666668,8,4,8,8_1,8_0,8_0_0 -2335,2,67.0,2,0.0,6,120,2,78,75,6.0,2379.684013708323,0.0,150.0737638598393,130.34327406077665,0.0,24100.0,70,33,1,13213,201102335,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2315.076086880799,0.0,110.0,0.0,0.0,30390.0,5,5,1,107.0,0,3.0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2660.1010516289393,0.11037763699705143,0.08753211752645408,20260.0,6,3,6,6_1,6_1,6_0_0 -2336,2,41.0,3,0.0,8,111,2,43,54,6.0,0.0,0.0,207.3746555154143,0.0,2085.4923849724264,48658.0,50,50,1,13214,201102336,,,612.0,,2.0,0.0,4.0,2.0,4.0,2.3,2741.7708008994455,0.0,152.0,1200.0,0.0,44098.0,1,1,2,130.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2292.8670404878408,0.047122097917872516,0.05199480793885983,19173.04347826087,5,3,5,5_1,5_2,5_0_0 -2337,2,78.0,3,0.0,4,111,1,0,77,3.0,0.0,0.0,46.386436102132144,0.0,0.0,17368.0,0,70,2,13215,201102337,,,,,0.0,4.0,5.0,0.0,1.0,1.0,4127.523616978924,0.0,34.0,0.0,0.0,13470.0,0,5,1,100.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,46.386436102132144,0.0026707989464608557,0.003443684937055096,13470.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -2338,2,71.0,2,0.0,1,111,2,86,75,7.0,0.0,0.0,512.9794110118144,0.0,1981.2177657238049,37465.0,60,60,2,13216,201102338,,,,574.0,0.0,8.0,4.0,0.0,2.0,1.5,2635.6165044110544,0.0,376.0,1140.0,0.0,33134.0,5,5,3,120.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2494.197176735619,0.06657406050275241,0.07527606617781188,22089.333333333332,7,4,7,7_0,7_3,7_1_0 -2339,1,70.0,3,19.0,1,111,1,0,78,4.0,0.0,0.0,443.3997568586161,0.0,0.0,10087.0,0,71,2,13217,201102339,,,,332.0,0.0,2.0,2.0,0.0,1.0,1.0,3905.9970580706054,0.0,325.0,0.0,0.0,14918.0,0,5,3,26.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,443.3997568586161,0.043957545043978995,0.02972246660803165,14918.0,3,2,3_1,3_0_1,3_4_1,3_1_0 -2340,2,70.0,3,0.0,5,111,1,0,77,6.0,0.0,0.0,463.8643610213215,0.0,0.0,25691.0,0,71,2,13219,201102340,,,,359.0,0.0,6.0,3.0,0.0,1.0,1.0,2968.7175759376564,0.0,340.0,0.0,0.0,19563.0,0,5,3,57.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,463.8643610213215,0.018055519871601786,0.023711310178465547,19563.0,6,3,6,6_0,6_2,6_0_0 -2341,1,63.0,5,69.0,99,111,2,0,74,4.0,0.0,0.0,560.7301540581268,0.0,1094.8835021105238,22027.0,0,20,2,1322,201102341,,,404.0,226.0,1.0,1.0,3.0,1.0,2.0,1.5,1666.9849011531246,0.0,411.0,630.0,0.0,24972.0,0,5,3,70.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1655.6136561686506,0.07516292078670044,0.06629880090375823,16648.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -2342,2,50.0,2,0.0,4,112,6,64,37,10.0,0.0,0.0,1173.3039719951073,0.0,2433.074449134497,31545.0,50,50,1,13220,201102342,,,390.0,,2.0,2.0,5.0,0.0,2.0,1.5,549.1068100670375,0.0,860.0,1400.0,0.0,66452.0,1,1,2,110.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3606.3784211296042,0.11432488258454919,0.054270427092180884,44301.333333333336,10,5,10,10_1,10_0,10_0_1 -2343,2,66.0,2,0.0,2,112,5,75,72,8.0,0.0,971.5484236944079,327.43366660328576,281.54147197127753,0.0,17310.0,70,70,1,13222,201102343,,,90.0,,0.0,2.0,5.0,0.0,2.0,1.5,2191.109724323415,0.0,240.0,0.0,0.0,39494.0,5,5,1,95.0,8,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1580.5235622689713,0.09130696489133283,0.04001933362710719,26329.333333333332,8,4,8,8_1,8_0,8_0_1 -2344,2,50.0,1,0.0,8,111,2,55,48,8.0,0.0,0.0,2865.0445827787503,0.0,0.0,47340.0,71,50,1,13223,201102344,,,1320.0,,3.0,0.0,5.0,1.0,3.0,2.0,1609.6679086841484,0.0,2100.0,0.0,0.0,52742.0,1,1,2,100.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2865.0445827787503,0.060520586877455644,0.05432187976904081,26371.0,8,4,8,8_1,8_3,8_0_0 -2345,1,34.0,2,203.0,8,111,2,0,45,5.0,50.76659229244423,38.861936947776314,1506.1948663751143,0.0,0.0,39858.0,0,31,1,13224,201102345,,,,496.0,1.0,0.0,5.0,3.0,4.0,1.9,2566.2207220229984,0.0,1104.0,0.0,0.0,32547.0,0,1,3,180.0,8,7.0,2,5,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1595.823395615335,0.04003771879209531,0.04903135144914539,17130.0,5,3,5,5_1,5_3,5_0_0 -2346,2,91.0,3,0.0,1,300,2,71,71,4.0,0.0,0.0,1200.5901108787143,312.82385774586396,0.0,16249.0,70,50,1,13225,201102346,,,360.0,,0.0,1.0,7.0,0.0,2.0,1.5,1448.9253940738733,0.0,880.0,0.0,0.0,23402.0,5,5,1,138.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1513.4139686245783,0.09313889892452325,0.0646702832503452,15601.333333333334,4,2,4_0,4_1_0,4_0_0,4_1_0 -2347,2,68.0,3,0.0,5,111,2,78,78,6.0,0.0,0.0,399.74193464484466,0.0,1755.2894240184587,17361.0,70,50,1,13227,201102347,,,200.0,,0.0,1.0,5.0,0.0,2.0,1.5,3065.9457219921587,0.0,293.0,1010.0,0.0,32047.0,5,5,5,110.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2155.0313586633033,0.12413060069485071,0.0672459624508785,21364.666666666668,6,3,6,6_1,6_3,6_0_0 -2348,2,64.0,2,0.0,6,120,4,0,75,9.0,158.64560091388822,0.0,1702.6550663370858,48.661488982689946,0.0,39773.0,0,20,1,13228,201102348,,,334.0,,0.0,3.0,6.0,0.0,1.0,1.0,1536.7371781998772,0.0,1248.0,0.0,0.0,33603.0,0,5,1,120.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1909.962156233664,0.04802157635163714,0.05683903687866155,33603.0,9,5,9,9_1,9_0,9_0_0 -2349,2,48.0,2,0.0,2,111,2,0,22,10.0,0.0,0.0,409.2920832541072,0.0,3823.4027057827816,94990.0,0,31,1,13229,201102349,,,,,1.0,0.0,4.0,2.0,3.0,2.0,3218.9679968961723,0.0,300.0,2200.0,0.0,83934.0,0,1,3,115.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4232.694789036888,0.04455937245011989,0.050428846343995144,41967.0,10,5,10,10_1,10_2,10_0_1 -2350,2,44.0,2,0.0,2,111,6,21,35,10.0,0.0,0.0,3090.1552285685093,0.0,0.0,68282.0,31,20,1,13231,201102350,,,760.0,,2.0,0.0,5.0,2.0,4.0,2.3,2142.5221144776,0.0,2265.0,0.0,0.0,93208.0,1,1,1,122.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3090.1552285685093,0.0452557808583303,0.03315332620127574,40525.21739130435,10,5,10,10_1,10_4,10_0_1 -2351,2,38.0,3,0.0,8,112,2,65,43,7.0,0.0,0.0,2373.8940828738214,0.0,0.0,43852.0,71,10,1,13233,201102351,,,64.0,,2.0,0.0,4.0,2.0,4.0,2.1,2927.084601719448,0.0,1740.0,0.0,0.0,51241.0,1,1,2,100.0,9,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2373.8940828738214,0.054134226098554714,0.04632802019620658,24400.47619047619,7,4,7,7_1,7_0,7_0_0 -2352,2,46.0,2,0.0,1,112,2,0,43,9.0,0.0,0.0,573.00891655575,0.0,2189.7670042210475,77695.0,0,33,2,13234,201102352,,,400.0,,1.0,0.0,6.0,2.0,3.0,1.6,3232.0590239278404,0.0,420.0,1260.0,0.0,48935.0,0,1,2,140.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2762.7759207767976,0.03555924989737818,0.056458075422025085,30584.375,9,5,9,9_0,9_2,9_1_0 -2353,2,55.0,1,0.0,1,111,2,74,38,10.0,0.0,0.0,1657.6329371791342,0.0,3352.4290088431753,49381.0,41,12,1,13235,201102353,,,570.0,,1.0,1.0,5.0,0.0,2.0,1.5,1537.636684619636,0.0,1215.0,1929.0,0.0,178505.0,6,1,2,171.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5010.06194602231,0.10145728004743342,0.028066787742765244,119003.33333333333,10,5,10,10_1,10_3,10_1_0 -2354,2,50.0,4,0.0,1,111,2,0,52,9.0,0.0,0.0,341.0767360450893,0.0,955.8506764456954,20504.0,0,31,2,13238,201102354,,,195.0,264.0,1.0,0.0,4.0,1.0,2.0,1.5,3784.180182525598,0.0,250.0,550.0,0.0,44930.0,0,1,3,120.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1296.9274124907847,0.06325240989518069,0.028865511072574776,29953.333333333332,9,5,9,9_0,9_3,9_1_0 -2355,1,83.0,3,79.0,5,111,3,0,74,5.0,0.0,0.0,845.8703053918215,0.0,0.0,11833.0,0,60,2,13239,201102355,,,,,0.0,2.0,1.0,0.0,1.0,1.0,2797.286304035016,0.0,620.0,0.0,0.0,17882.0,0,5,3,35.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,845.8703053918215,0.07148401127286584,0.04730289147700601,17882.0,5,3,5,5_0,5_2,5_0_0 -2356,2,42.0,3,0.0,8,112,2,43,48,8.0,0.0,0.0,1964.6019996197144,145.98446694806984,0.0,43389.0,10,50,1,13240,201102356,,,235.0,,2.0,0.0,4.0,1.0,3.0,1.8,1312.594345313158,0.0,1440.0,0.0,0.0,47393.0,1,1,2,108.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2110.586466567784,0.04864335353586817,0.044533717354203875,26329.444444444445,8,4,8,8_1,8_0,8_0_0 -2357,2,64.0,3,0.0,2,111,2,52,63,3.0,0.0,0.0,968.6579303680536,0.0,1946.4595593075978,26658.0,60,71,2,13241,201102357,,,600.0,,2.0,0.0,3.0,4.0,6.0,3.3,3107.940976753993,0.0,710.0,1120.0,0.0,41830.0,1,1,1,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2915.1174896756515,0.1093524454075944,0.06968963637761538,12675.757575757576,2,1,2_0,2_0_0,2_4_0,2_0_1 -2358,2,75.0,2,0.0,3,111,2,77,77,7.0,0.0,0.0,1672.640313565118,0.0,573.5104058674173,36992.0,60,70,1,13243,201102358,,,180.0,,0.0,3.0,4.0,0.0,2.0,1.5,1468.550061240831,0.0,1226.0,330.0,0.0,32965.0,5,5,1,98.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2246.1507194325354,0.06071990482895046,0.06813744029827197,21976.666666666668,7,4,7,7_1,7_2,7_0_1 -2359,2,42.0,1,0.0,1,111,4,37,47,9.0,0.0,0.0,2728.6138883607146,208.54923849724264,0.0,61953.0,10,42,1,13244,201102359,,,420.0,,2.0,0.0,5.0,2.0,4.0,2.1,2769.8740203556044,0.0,2000.0,0.0,0.0,73937.0,1,1,2,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2937.163126857957,0.04740953830900775,0.03972521372057234,35208.09523809524,9,5,9,9_1,9_4,9_1_0 -2360,1,54.0,3,36.0,8,111,2,0,55,3.0,0.0,0.0,313.79059716148214,0.0,503.99399303500303,22076.0,0,41,2,13245,201102360,,,182.0,305.0,1.0,2.0,3.0,0.0,1.0,1.0,2725.3474575167024,0.0,230.0,290.0,0.0,12836.0,0,1,3,75.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,817.7845901964852,0.037044056450284704,0.0637102360701531,12836.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -2361,2,77.0,3,0.0,4,111,2,75,75,9.0,0.0,0.0,597.5664415509965,0.0,1056.649475052696,39392.0,60,70,2,13247,201102361,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2278.789227868292,0.0,438.0,608.0,0.0,44787.0,5,5,1,77.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1654.2159166036927,0.04199370218835532,0.03693518022202185,29858.0,9,5,9,9_0,9_2,9_0_1 -2362,1,36.0,3,381.0,1,111,2,63,55,2.0,0.0,0.0,1637.1683330164287,0.0,0.0,18373.0,50,50,1,13248,201102362,,,494.0,,2.0,0.0,5.0,4.0,6.0,2.7,977.6334719530331,0.0,1200.0,0.0,0.0,28850.0,4,1,2,80.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1637.1683330164287,0.0891072951078446,0.05674760253089874,10685.185185185184,2,1,2_1,2_1_1,2_3_1,2_1_0 -2363,2,79.0,2,0.0,4,111,1,0,74,10.0,0.0,0.0,32.743366660328576,0.0,0.0,28079.0,0,60,2,13249,201102363,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3067.2702827413,0.0,24.0,0.0,0.0,49390.0,0,5,1,80.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,32.743366660328576,0.001166115839607129,0.0006629553889517832,49390.0,10,5,10,10_0,10_4,10_0_1 -2364,2,40.0,2,0.0,1,111,2,42,38,8.0,0.0,0.0,429.75668741681255,0.0,2780.6565132965684,47142.0,20,41,1,1325,201102364,,,420.0,,2.0,0.0,5.0,3.0,5.0,2.4,1948.1288241211157,0.0,315.0,1600.0,0.0,66399.0,1,1,2,122.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3210.413200713381,0.06810091215292904,0.048350324563824466,27666.25,8,4,8,8_1,8_4,8_1_0 -2365,2,45.0,2,0.0,9,111,2,54,38,9.0,0.0,0.0,2653.577006430795,0.0,0.0,57042.0,50,50,1,13250,201102365,,,718.0,,2.0,0.0,6.0,2.0,4.0,2.1,1322.0388887834722,0.0,1945.0,0.0,0.0,69240.0,1,1,2,220.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2653.577006430795,0.04651970489167271,0.038324335737013215,32971.42857142857,9,5,9,9_1,9_3,9_0_0 -2366,1,38.0,5,635.0,99,111,2,22,56,1.0,31.729120182777642,0.0,1872.7391117451587,0.0,3870.905019284381,39906.0,71,50,1,13252,201102366,,,1145.0,,2.0,0.0,5.0,7.0,10.0,4.9,1780.7327064565604,3600.0,0.0,0.0,0.0,36730.0,4,4,3,90.0,9,7.0,5,9,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,5775.373251212317,0.14472443369950175,0.15723858565783602,7495.918367346938,1,1,1_1,1_1_1,1_3_1,1_0_0 -2367,1,21.0,2,172.0,8,111,1,0,84,1.0,0.0,0.0,409.2920832541072,0.0,0.0,15671.0,0,41,2,13253,201102367,,,,126.0,0.0,0.0,1.0,0.0,1.0,1.0,3395.900949336477,0.0,300.0,0.0,0.0,4654.0,0,3,3,26.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,409.2920832541072,0.026117802517650897,0.08794415196693321,4654.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -2368,2,81.0,3,0.0,1,112,2,0,78,3.0,0.0,0.0,293.3259929987768,2000.3347792527188,0.0,9754.0,0,71,1,13257,201102368,,,65.0,,0.0,2.0,3.0,0.0,1.0,1.0,3451.2667409984433,0.0,215.0,0.0,0.0,13890.0,0,5,1,60.0,9,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2293.6607722514955,0.23515078657489188,0.16513036517289384,13890.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -2369,2,51.0,2,0.0,8,111,2,85,34,10.0,0.0,0.0,818.5841665082144,0.0,2606.865481215533,82370.0,33,10,1,13258,201102369,,,800.0,,1.0,0.0,4.0,3.0,5.0,2.4,1059.3181680587268,0.0,600.0,1500.0,0.0,128480.0,5,1,1,95.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3425.449647723747,0.041586131452273245,0.026661345327862292,53533.333333333336,10,5,10,10_1,10_2,10_0_0 -2370,2,27.0,2,0.0,1,111,4,37,46,10.0,0.0,0.0,272.86138883607146,0.0,347.58206416207105,72499.0,12,12,2,1326,201102370,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3943.095339440225,0.0,200.0,200.0,0.0,76218.0,1,1,3,26.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,620.4434529981424,0.008557958771819507,0.008140379608467061,50812.0,10,5,10,10_0,10_4,10_1_0 -2371,2,82.0,3,0.0,1,120,6,77,78,6.0,0.0,0.0,491.1504999049286,3175.162156120519,0.0,19533.0,70,70,1,13261,201102371,,,640.0,,0.0,1.0,4.0,0.0,2.0,1.5,1838.6295585351177,0.0,360.0,0.0,0.0,29099.0,5,5,1,64.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3666.3126560254473,0.18769839021273985,0.12599445534298248,19399.333333333332,6,3,6,6_1,6_0,6_1_0 -2372,2,46.0,4,0.0,1,112,2,64,65,7.0,0.0,0.0,82.19243879325974,0.0,169.8897202908145,27408.0,71,50,1,13263,201102372,,,,,2.0,1.0,3.0,2.0,4.0,2.1,1727.0357389185258,158.0,0.0,0.0,0.0,47995.0,1,1,3,70.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,252.08215908407425,0.009197393428344799,0.005252258757872158,22854.761904761905,7,4,7,7_1,7_0,7_1_0 -2373,2,55.0,2,0.0,6,111,5,46,53,9.0,0.0,437.1967906624836,914.0856526008394,97.32297796537989,0.0,62619.0,50,71,1,13264,201102373,,,470.0,,2.0,2.0,4.0,0.0,2.0,1.5,2403.764318344503,0.0,670.0,0.0,0.0,49118.0,1,1,1,89.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1448.6054212287027,0.023133640288549844,0.029492353541037963,32745.333333333332,9,5,9,9_1,9_3,9_0_0 -2374,2,66.0,3,0.0,6,112,2,77,75,7.0,0.0,0.0,1473.4514997147858,2068.113281764323,0.0,40725.0,71,70,1,13268,201102374,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2267.955541064398,0.0,1080.0,0.0,0.0,32830.0,5,5,1,120.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3541.5647814791087,0.08696291667229242,0.10787586906728933,21886.666666666668,7,4,7,7_1,7_0,7_0_0 -2375,2,69.0,1,0.0,5,111,2,86,75,8.0,0.0,0.0,724.1337566174335,0.0,2245.779140694653,44734.0,50,70,1,13269,201102375,,,,,1.0,2.0,6.0,1.0,3.0,2.0,1548.2221334514559,440.0,363.0,1020.0,0.0,54162.0,5,5,1,150.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2969.9128973120864,0.06639050604265405,0.05483388533126706,27081.0,8,4,8,8_1,8_3,8_0_0 -2376,2,37.0,3,0.0,1,111,2,0,43,5.0,0.0,0.0,443.3997568586161,0.0,1277.3640857956111,30748.0,0,33,8,13270,201102376,,,,520.0,1.0,0.0,3.0,2.0,3.0,1.6,3065.3459467414764,0.0,325.0,735.0,0.0,30118.0,0,1,3,88.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1720.7638426542271,0.05596343965962752,0.057134067423276015,18823.75,5,3,5,5_0,5_3,5_1_0 -2377,2,51.0,3,0.0,99,112,2,0,31,8.0,0.0,0.0,665.7817887600144,2259.283417053462,0.0,34649.0,0,10,1,13271,201102377,,,,,1.0,0.0,4.0,1.0,2.0,1.3,3809.4252526030677,0.0,488.0,0.0,0.0,33928.0,0,1,3,67.0,9,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2925.0652058134765,0.0844199026180691,0.0862139001949268,26098.46153846154,8,4,8,8_1,8_0,8_0_0 -2378,2,45.0,3,0.0,8,112,2,52,62,6.0,0.0,444.1364222603008,416.11361797500894,0.0,95.58506764456953,29768.0,33,71,1,13273,201102378,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.1,2084.030158338801,0.0,305.0,55.0,0.0,42205.0,1,1,2,90.0,6,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,955.8351078798793,0.032109483602522144,0.02264743769410921,20097.619047619046,6,3,6,6_1,6_0,6_0_0 -2379,2,41.0,3,0.0,7,400,5,13,13,3.0,0.0,0.0,818.5841665082144,312.82385774586396,0.0,20081.0,43,31,1,13275,201102379,,,500.0,,2.0,0.0,5.0,3.0,5.0,2.8,2236.8090438294457,0.0,600.0,0.0,0.0,35610.0,1,1,2,111.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1131.4080242540783,0.056342215240977954,0.031772199501659035,12717.857142857143,3,2,3_0,3_1_0,3_0_0,3_0_0 -2380,2,52.0,4,0.0,6,221,4,0,56,2.0,63.458240365555284,0.0,1841.8143746434823,0.0,0.0,19299.0,0,71,1,13276,201102380,,,451.0,,2.0,2.0,4.0,1.0,2.0,1.5,3522.1861772576763,0.0,1350.0,0.0,0.0,14500.0,0,1,1,96.0,1,2.0,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1905.2726150090375,0.09872390357060146,0.13139811137993362,9666.666666666666,1,1,1_0,1_1_0,1_1_0,1_0_0 -2381,2,55.0,4,0.0,1,111,1,0,68,2.0,0.0,0.0,0.0,0.0,0.0,13418.0,0,50,3,13277,201102381,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2975.069086146329,0.0,0.0,0.0,0.0,12190.0,0,1,3,10.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,12190.0,2,1,2_0,2_0_0,2_3_0,2_1_0 -2382,1,38.0,3,260.0,5,111,4,0,63,4.0,0.0,0.0,1091.4455553442858,104.27461924862132,0.0,24369.0,0,41,2,13278,201102382,,,280.0,,1.0,0.0,4.0,1.0,2.0,1.3,3460.4513553117818,0.0,800.0,0.0,0.0,19679.0,0,1,3,80.0,8,6.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1195.7201745929071,0.049067264745902874,0.06076122641358337,15137.692307692307,4,2,4_1,4_0_1,4_2_1,4_0_0 -2383,2,69.0,3,0.0,5,300,2,78,78,4.0,0.0,0.0,1951.2836361569257,104.27461924862132,446.2293286119494,21242.0,71,50,1,13279,201102383,,,385.0,,0.0,2.0,5.0,0.0,2.0,1.5,4719.942680334968,415.0,1272.0,0.0,0.0,24601.0,5,5,1,110.0,0,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2501.7875840174966,0.11777551944343737,0.10169454835240424,16400.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0 -2384,2,83.0,3,0.0,4,112,2,74,74,10.0,1462.7124404260494,0.0,4273.78796778012,52.13730962431066,1783.8420630535522,81117.0,20,20,1,1328,201102384,,,800.0,,0.0,1.0,8.0,0.0,2.0,1.5,1316.9048724640013,1659.0,2500.0,0.0,0.0,91014.0,5,5,1,450.0,10,0.0,3,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,7572.479780884032,0.09335256211255387,0.08320126333183941,60676.0,10,5,10,10_1,10_0,10_0_1 -2385,2,66.0,2,0.0,1,400,2,77,38,6.0,3172.912018277764,0.0,750.3688192991965,333.6787815955882,0.0,41091.0,50,42,1,13280,201102385,,,,,1.0,2.0,6.0,0.0,3.0,2.0,3837.322734475589,0.0,550.0,0.0,0.0,42424.0,6,5,1,160.0,0,1.0,5,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4256.9596191725495,0.10359834560299212,0.10034319298445572,21212.0,6,3,6,6_1,6_1,6_1_0 -2386,2,56.0,2,0.0,5,112,1,75,37,10.0,0.0,0.0,2157.688491881806,229.4041623469669,1498.900443578452,61742.0,43,42,1,13281,201102386,,,1765.0,,1.0,3.0,6.0,0.0,2.0,1.5,2202.500860657798,1394.0,1050.0,0.0,0.0,70499.0,5,1,1,120.0,9,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3885.9930978072252,0.06293921638118663,0.05512125133416396,46999.333333333336,10,5,10,10_1,10_1,10_0_0 -2387,2,51.0,2,0.0,1,111,1,0,45,7.0,0.0,0.0,709.4396109737858,0.0,0.0,21272.0,0,10,2,13282,201102387,,,,1476.0,1.0,0.0,3.0,0.0,1.0,1.0,3120.403687487258,0.0,520.0,0.0,0.0,23520.0,0,1,3,69.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,709.4396109737858,0.033350865502716515,0.030163248765892253,23520.0,7,4,7,7_0,7_4,7_1_0 -2388,1,21.0,3,91.0,99,111,2,0,53,4.0,0.0,0.0,374.5478223490317,0.0,774.1810038568763,25681.0,0,71,2,13284,201102388,,,,679.0,2.0,0.0,4.0,0.0,3.0,2.0,3849.6269054127456,720.0,0.0,0.0,0.0,31542.0,0,1,3,91.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1148.728826205908,0.044730689077758186,0.036419023086865385,15771.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -2389,2,45.0,3,0.0,1,112,2,21,53,2.0,0.0,0.0,1964.8976775718313,0.0,677.4083783747667,49374.0,41,31,1,13285,201102389,,,460.0,,2.0,0.0,4.0,2.0,4.0,2.5,1867.0224119851139,630.0,1200.0,0.0,0.0,28766.0,1,1,2,107.0,9,1.0,4,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2642.306055946598,0.053516143232199095,0.09185517819462553,11506.4,2,1,2_0,2_1_0,2_1_0,2_1_0 -2390,2,44.0,2,0.0,1,111,2,0,37,9.0,0.0,0.0,545.7227776721429,0.0,868.9551604051776,29463.0,0,12,2,13286,201102390,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3837.5977305647048,0.0,400.0,500.0,0.0,31764.0,0,1,1,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1414.6779380773205,0.048015407055538147,0.04453714702421989,31764.0,9,5,9,9_0,9_4,9_1_0 -2391,1,75.0,4,248.0,2,111,1,0,78,2.0,0.0,0.0,327.43366660328576,0.0,295.4447545377604,10715.0,0,70,2,13288,201102391,,,,,0.0,5.0,3.0,0.0,1.0,1.0,3897.147156267485,0.0,240.0,170.0,0.0,11291.0,0,5,3,50.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,622.8784211410461,0.058131443876905844,0.055165921631480486,11291.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -2392,2,37.0,2,0.0,8,112,2,43,21,8.0,894.7611891543296,399.7227800342707,1173.3039719951073,52.13730962431066,0.0,40157.0,33,42,1,13289,201102392,,,280.0,,2.0,0.0,7.0,3.0,5.0,2.4,4469.2654236094695,0.0,860.0,0.0,0.0,62586.0,1,1,2,160.0,5,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2519.925250808018,0.06275183033613113,0.040263401572364715,26077.5,8,4,8,8_1,8_0,8_0_0 -2393,2,55.0,4,0.0,1,111,2,75,48,8.0,0.0,0.0,362.0628949373973,0.0,748.3749703949803,16402.0,33,12,2,1329,201102393,,,100.0,300.0,1.0,2.0,2.0,0.0,2.0,1.5,1970.9181920916124,696.0,0.0,0.0,0.0,42540.0,5,1,3,42.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1110.4378653323777,0.06770136967030714,0.02610338188369482,28360.0,8,4,8,8_0,8_3,8_1_0 -2394,2,32.0,2,0.0,4,111,1,0,34,7.0,0.0,0.0,376.5487165937786,0.0,0.0,19231.0,0,10,2,13290,201102394,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3446.4697741213513,0.0,276.0,0.0,0.0,24081.0,0,1,1,64.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,376.5487165937786,0.019580298299296896,0.015636755807224723,24081.0,7,4,7,7_0,7_4,7_0_1 -2395,2,61.0,4,0.0,99,111,1,0,52,3.0,0.0,0.0,54.57227776721429,0.0,104.27461924862132,7477.0,0,71,2,13291,201102395,,,,245.0,1.0,7.0,1.0,0.0,1.0,1.0,3879.810906915969,0.0,40.0,60.0,0.0,13610.0,0,1,3,37.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,158.84689701583562,0.02124473679494926,0.011671337032757944,13610.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -2396,2,64.0,2,0.0,5,120,2,75,75,7.0,1903.7472109666587,0.0,967.1767016638111,264.162368763174,476.33636765082804,35573.0,50,43,1,13293,201102396,,,140.0,,0.0,2.0,4.0,0.0,2.0,1.5,768.0760042447382,443.0,540.0,0.0,0.0,35170.0,5,5,1,87.0,0,0.0,3,3,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3611.4226490444717,0.10152145304147729,0.10268474975958122,23446.666666666668,7,4,7,7_1,7_0,7_0_0 -2397,2,47.0,2,0.0,4,111,2,85,37,10.0,0.0,0.0,1206.117679598381,0.0,2582.44513353684,105824.0,50,60,1,13294,201102397,,,456.0,,1.0,0.0,6.0,3.0,5.0,2.8,1342.2064043503376,842.0,563.0,965.0,0.0,113317.0,5,1,2,200.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3788.562813135221,0.035800601122006545,0.03343331374052632,40470.357142857145,10,5,10,10_1,10_3,10_0_1 -2398,2,78.0,2,0.0,3,111,2,0,77,7.0,0.0,0.0,327.43366660328576,0.0,1195.6823007175244,14067.0,0,50,2,13295,201102398,,,297.0,540.0,0.0,3.0,3.0,0.0,1.0,1.0,2982.917092147426,0.0,240.0,688.0,0.0,22454.0,0,5,3,50.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1523.1159673208101,0.1082758205246897,0.06783272322618732,22454.0,7,4,7,7_0,7_2,7_0_1 -2399,2,79.0,1,0.0,5,111,1,77,74,9.0,0.0,0.0,368.36287492869644,0.0,0.0,28181.0,70,50,2,13296,201102399,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1865.1684035020487,0.0,270.0,0.0,0.0,52223.0,5,5,5,80.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,368.36287492869644,0.013071320213218,0.007053652125092324,34815.333333333336,9,5,9,9_0,9_3,9_0_0 -2400,2,65.0,3,0.0,6,120,5,72,78,5.0,0.0,430.2571590646664,832.2272359500179,86.89551604051776,0.0,16063.0,70,70,1,13297,201102400,,,422.0,,0.0,2.0,4.0,0.0,2.0,1.5,1554.9087387826446,0.0,610.0,0.0,0.0,28181.0,5,5,1,85.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1349.379911055202,0.08400547289144009,0.04788261279071722,18787.333333333332,5,3,5,5_1,5_0,5_0_0 -2401,2,39.0,1,0.0,4,111,2,38,38,10.0,0.0,0.0,45.02212915795179,0.0,100.7987986070006,56238.0,12,12,8,13298,201102401,,,,,2.0,2.0,4.0,2.0,4.0,2.1,3573.1362432005576,0.0,33.0,58.0,0.0,89969.0,1,1,2,78.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,145.8209277649524,0.0025929252065321024,0.001620790803109431,42842.380952380954,10,5,10,10_0,10_3,10_0_1 -2402,2,43.0,2,0.0,7,112,6,52,48,6.0,1586.456009138882,0.0,1077.8024859024822,121.65372245672486,0.0,37651.0,50,44,1,13299,201102402,,,142.0,,2.0,0.0,4.0,2.0,4.0,2.5,2188.3212052890035,0.0,790.0,0.0,0.0,48119.0,1,1,1,99.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2785.9122174980894,0.07399304713017156,0.05789630327933019,19247.6,6,3,6,6_1,6_0,6_0_0 -2403,2,82.0,4,0.0,1,300,5,0,71,2.0,0.0,832.755791738064,477.50743046312505,104.27461924862132,0.0,7459.0,0,71,1,133,201102403,,,,,0.0,0.0,4.0,1.0,2.0,1.5,3403.269566057394,0.0,350.0,0.0,0.0,14970.0,0,5,1,60.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1414.5378414498102,0.1896417537806422,0.09449150577487042,9980.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -2404,2,74.0,3,0.0,5,111,2,78,78,5.0,0.0,0.0,545.7227776721429,0.0,1911.7013528913908,26652.0,70,50,1,1330,201102404,,,250.0,,0.0,4.0,6.0,0.0,2.0,1.5,1220.1689588108577,0.0,400.0,1100.0,0.0,28460.0,5,5,1,113.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2457.4241305635337,0.09220411716057082,0.08634659629527525,18973.333333333332,5,3,5,5_1,5_3,5_0_0 -2405,2,34.0,2,0.0,9,211,4,46,46,6.0,0.0,0.0,2087.3896245959468,0.0,0.0,79705.0,31,31,1,13300,201102405,,,200.0,,2.0,0.0,6.0,3.0,5.0,2.4,2007.5444153117992,0.0,1530.0,0.0,0.0,49797.0,1,1,2,114.0,2,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2087.3896245959468,0.026188942031189346,0.04191797948864283,20748.75,6,3,6,6_1,6_1,6_0_0 -2406,2,68.0,2,0.0,5,111,2,0,77,5.0,0.0,0.0,368.36287492869644,0.0,1164.399914942938,31219.0,0,60,2,13301,201102406,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2333.9250339988394,0.0,270.0,670.0,0.0,18017.0,0,5,1,98.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1532.7627898716346,0.049097113612596,0.08507314147036879,18017.0,5,3,5,5_0,5_2,5_0_0 -2407,2,63.0,3,0.0,1,120,4,78,78,5.0,0.0,582.9290542166448,1377.950013622161,43.44775802025888,0.0,23479.0,50,71,1,13305,201102407,,,248.0,,0.0,3.0,6.0,0.0,2.0,1.5,1681.4729945130016,0.0,1010.0,0.0,0.0,25380.0,5,5,1,116.0,0,3.0,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2004.3268258590645,0.08536678844324991,0.07897268817411601,16920.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -2408,2,60.0,3,0.0,2,111,1,63,55,8.0,0.0,0.0,597.6064050462592,0.0,660.3550147633448,26404.0,71,71,2,13309,201102408,,,,326.0,2.0,1.0,3.0,0.0,2.0,1.5,3122.491227760084,362.0,300.0,156.0,0.0,37294.0,1,1,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1257.961419809604,0.04764283516927753,0.03373093312086673,24862.666666666668,7,4,7,7_0,7_4,7_0_1 -2409,2,78.0,3,0.0,4,112,2,78,74,7.0,0.0,0.0,663.0531748716536,0.0,1159.186183980507,31583.0,70,60,1,13312,201102409,,,295.0,,0.0,1.0,5.0,0.0,2.0,1.5,1105.1187221526561,0.0,486.0,667.0,0.0,33112.0,5,5,1,92.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1822.2393588521604,0.057696841935603344,0.05503259721104616,22074.666666666668,7,4,7,7_1,7_1,7_0_1 -2410,2,69.0,3,0.0,1,300,4,71,71,5.0,0.0,488.5500644863308,3290.7083493630216,194.64595593075978,0.0,31627.0,71,50,1,13314,201102410,,,,,1.0,1.0,6.0,1.0,3.0,2.0,2373.5169052300653,0.0,2412.0,0.0,0.0,36654.0,5,5,1,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3973.9043697801126,0.1256491089822023,0.1084166631139879,18327.0,5,3,5,5_1,5_0,5_1_0 -2411,2,47.0,3,0.0,7,111,1,0,37,9.0,0.0,0.0,955.0148609262501,0.0,0.0,21715.0,0,10,2,13315,201102411,300.0,300.0,,166.0,1.0,5.0,1.0,0.0,1.0,1.0,2847.6598871928727,0.0,700.0,0.0,0.0,28890.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,955.0148609262501,0.043979500848549395,0.033056935303781586,28890.0,8,4,8,8_0,8_4,8_0_0 -2412,1,36.0,4,339.0,2,111,2,22,85,1.0,0.0,0.0,573.00891655575,0.0,4160.55730801999,31879.0,50,71,1,13317,201102412,,,,,3.0,0.0,4.0,2.0,4.0,2.5,2470.036534851194,0.0,420.0,2394.0,0.0,20586.0,4,6,3,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,4733.56622457574,0.1484854049554798,0.22994103879217626,8234.4,1,1,1_1,1_1_1,1_3_1,1_0_1 -2413,1,25.0,1,204.0,6,111,1,0,53,6.0,0.0,0.0,545.7227776721429,66.0405921907935,0.0,23107.0,0,50,2,13318,201102413,,,,351.0,2.0,0.0,2.0,0.0,2.0,1.5,5310.199999612226,0.0,400.0,0.0,0.0,31352.0,0,1,3,50.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,611.7633698629364,0.026475239964639997,0.01951273825794005,20901.333333333332,6,3,6,6_0,6_4,6_0_0 -2414,2,34.0,3,0.0,2,111,2,46,22,6.0,0.0,0.0,1500.737638598393,0.0,0.0,42490.0,20,31,1,13319,201102414,,,490.0,,2.0,0.0,6.0,1.0,3.0,1.8,1931.156456392717,0.0,1100.0,0.0,0.0,37648.0,1,1,2,110.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1500.737638598393,0.035319784386876746,0.03986234696659565,20915.555555555555,6,3,6,6_1,6_2,6_0_1 -2415,2,42.0,1,0.0,8,111,2,54,22,8.0,0.0,0.0,2101.4559593341373,52.13730962431066,672.0321214035383,99925.0,31,43,1,13320,201102415,,,586.0,,2.0,0.0,6.0,2.0,4.0,2.1,2809.452905327217,625.0,1302.0,0.0,0.0,58278.0,1,1,2,110.0,3,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2825.6253903619863,0.028277462000119952,0.04848528416146721,27751.42857142857,8,4,8,8_1,8_2,8_0_0 -2416,2,38.0,1,0.0,9,112,2,43,38,9.0,0.0,0.0,579.8304512766518,0.0,1303.4327406077664,48021.0,20,12,1,13321,201102416,,,247.0,,2.0,0.0,5.0,1.0,3.0,1.8,1725.8025155412204,0.0,425.0,750.0,0.0,54520.0,1,1,2,105.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1883.2631918844181,0.03921749217809746,0.03454261173669145,30288.888888888887,9,5,9,9_1,9_1,9_0_0 -2417,2,56.0,2,0.0,1,111,2,35,21,7.0,0.0,0.0,7640.118887410001,0.0,0.0,44114.0,60,50,1,13322,201102417,,,250.0,,2.0,3.0,5.0,0.0,2.0,1.5,2434.2493444691067,0.0,5600.0,0.0,0.0,32400.0,1,1,2,160.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,7640.118887410001,0.17319034518316181,0.23580613850030865,21600.0,6,3,6,6_1,6_3,6_1_0 -2418,2,52.0,3,0.0,1,111,2,0,43,9.0,0.0,0.0,278.3186166127929,0.0,3128.2385774586396,19628.0,0,33,2,13323,201102418,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3245.7028402014985,0.0,204.0,1800.0,0.0,29602.0,0,1,2,60.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,3406.5571940714326,0.1735560013282776,0.1150786161094329,29602.0,9,5,9,9_0,9_3,9_1_0 -2419,2,36.0,1,0.0,7,111,4,0,34,10.0,0.0,0.0,682.1534720901786,0.0,0.0,22694.0,0,20,2,13325,201102419,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3084.510305011327,0.0,500.0,0.0,0.0,39170.0,0,1,1,64.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,682.1534720901786,0.030058758794843512,0.017415202248919546,39170.0,10,5,10,10_0,10_3,10_0_0 -2420,2,47.0,3,0.0,4,120,5,63,52,7.0,0.0,728.6613177708059,638.4956498764072,0.0,460.5462350147441,29161.0,50,50,1,13329,201102420,,,300.0,,3.0,3.0,4.0,2.0,4.0,2.3,1845.9303607171616,0.0,468.0,265.0,0.0,54335.0,1,1,1,70.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1827.7032026619572,0.06267628691272444,0.03363767742085133,23623.913043478264,7,4,7,7_1,7_1,7_0_1 -2421,2,44.0,3,0.0,6,112,6,85,12,1.0,190.37472109666587,0.0,1489.8231830449502,156.41192887293198,0.0,23342.0,71,71,1,1333,201102421,,,,,1.0,0.0,5.0,3.0,5.0,2.4,7890.999616202699,0.0,1092.0,0.0,0.0,20970.0,6,1,1,110.0,9,1.0,4,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1836.6098330145478,0.07868262501133355,0.08758272928061744,8737.5,1,1,1_0,1_1_0,1_1_0,1_0_0 -2422,2,60.0,3,0.0,1,112,4,21,47,1.0,0.0,0.0,3274.3366660328575,48.661488982689946,0.0,22563.0,50,70,1,13330,201102422,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3813.0139801098658,0.0,2400.0,0.0,0.0,13810.0,1,1,1,100.0,9,1.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3322.9981550155476,0.14727643287752282,0.24062260354927933,9206.666666666666,1,1,1_0,1_1_0,1_1_0,1_1_0 -2423,2,56.0,2,0.0,5,111,2,77,65,4.0,618.717843564164,0.0,574.3732234999304,0.0,0.0,13144.0,60,71,1,13331,201102423,,,,,1.0,1.0,4.0,0.0,2.0,1.5,3334.924894350106,0.0,421.0,0.0,0.0,23002.0,6,1,1,100.0,8,7.0,3,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1193.0910670640944,0.09077077503530846,0.05186901430589055,15334.666666666666,4,2,4_0,4_1_0,4_3_0,4_0_0 -2424,2,55.0,3,0.0,1,112,2,52,21,1.0,47.593680274166466,0.0,627.5811943229643,139.0328256648284,0.0,27126.0,71,42,1,13332,201102424,,,150.0,,3.0,3.0,4.0,1.0,3.0,2.0,1941.81964995591,0.0,460.0,0.0,0.0,16639.0,1,1,3,80.0,8,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,814.2077002619592,0.030015767170314796,0.048933691944345166,8319.5,1,1,1_0,1_1_0,1_0_0,1_1_0 -2425,2,36.0,3,0.0,1,112,2,0,62,6.0,1903.7472109666587,0.0,1186.9470414369107,165.10148047698374,0.0,29646.0,0,60,1,13333,201102425,,,,,2.0,2.0,4.0,1.0,3.0,2.0,3598.6162578628496,0.0,870.0,0.0,0.0,39300.0,0,1,1,90.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3255.7957328805533,0.10982242909264499,0.08284467513690975,19650.0,6,3,6,6_1,6_0,6_1_0 -2426,2,65.0,1,0.0,5,111,2,77,23,10.0,4759.368027416646,0.0,613.9381248811608,0.0,0.0,50069.0,50,50,1,13336,201102426,,,300.0,,1.0,2.0,5.0,0.0,2.0,1.5,2181.663485296314,0.0,450.0,0.0,0.0,110610.0,5,5,1,150.0,8,6.0,3,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5373.306152297807,0.10731802417259795,0.04857884596598686,73740.0,10,5,10,10_1,10_2,10_0_0 -2427,2,53.0,1,0.0,1,400,2,55,21,10.0,3648.848821019429,0.0,1170.5753581067465,140.77073598563877,0.0,40459.0,50,44,8,13337,201102427,,,,,2.0,2.0,7.0,0.0,2.0,1.5,5346.901604938989,0.0,858.0,0.0,0.0,119340.0,1,1,3,97.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,4960.194915111814,0.12259806013771507,0.041563557190479425,79560.0,10,5,10,10_0,10_0,10_1_0 -2428,2,78.0,3,0.0,2,111,1,0,78,6.0,0.0,0.0,491.1504999049286,0.0,121.65372245672486,13509.0,0,71,2,13338,201102428,,,,374.0,0.0,2.0,3.0,0.0,1.0,1.0,3176.470360342349,0.0,360.0,70.0,0.0,20850.0,0,5,3,69.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,612.8042223616535,0.04536266358439955,0.029391089801518153,20850.0,6,3,6,6_0,6_4,6_0_1 -2429,2,46.0,3,0.0,9,112,6,46,38,5.0,3172.912018277764,0.0,843.1416915034608,0.0,0.0,44294.0,20,12,1,1334,201102429,,,418.0,,2.0,0.0,6.0,3.0,5.0,2.4,1089.1036443347948,0.0,618.0,0.0,0.0,44469.0,1,1,2,170.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4016.053709781225,0.09066812005646871,0.09031131147049011,18528.75,5,3,5,5_1,5_0,5_0_0 -2430,2,88.0,3,0.0,1,221,2,0,77,4.0,2062.392811880547,0.0,371.09148881705715,208.54923849724264,0.0,14511.0,0,60,1,13340,201102430,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2457.0679548451367,0.0,272.0,0.0,0.0,15540.0,0,5,3,130.0,1,2.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2642.033539194847,0.18207108670628122,0.17001502826221668,15540.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -2431,2,64.0,2,0.0,3,112,2,77,72,6.0,0.0,0.0,955.0148609262501,0.0,2259.283417053462,20809.0,50,50,1,13341,201102431,,,,,0.0,3.0,7.0,0.0,2.0,1.5,2767.5235562759017,0.0,700.0,1300.0,0.0,30497.0,5,5,1,150.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3214.298277979712,0.15446673448890924,0.10539719572350435,20331.333333333332,6,3,6,6_1,6_0,6_0_1 -2432,1,46.0,3,111.0,5,111,4,68,67,1.0,0.0,0.0,1773.5990274344645,0.0,0.0,40467.0,71,71,2,13342,201102432,,,,,2.0,0.0,4.0,4.0,7.0,3.8,2312.135496371471,0.0,1300.0,0.0,0.0,33676.0,4,1,3,73.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1773.5990274344645,0.04382828051089689,0.05266655860061956,8862.105263157895,1,1,1_1,1_0_1,1_4_1,1_0_0 -2433,2,97.0,2,0.0,1,112,2,0,74,10.0,5482.791967583977,0.0,1096.9027831210071,251.99699651750151,0.0,22429.0,0,10,1,13343,201102433,,,123.0,,0.0,2.0,6.0,0.0,1.0,1.0,3289.4228994689856,0.0,804.0,0.0,0.0,50761.0,0,5,5,130.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6831.691747222485,0.304591900986334,0.13458544447947213,50761.0,10,5,10,10_1,10_0,10_1_0 -2434,2,76.0,3,0.0,1,112,4,0,75,6.0,0.0,0.0,728.5399081923108,0.0,0.0,18335.0,0,70,1,13344,201102434,,,,504.0,0.0,2.0,4.0,0.0,1.0,1.0,3565.97751409889,0.0,534.0,0.0,0.0,21399.0,0,5,3,80.0,7,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,728.5399081923108,0.03973492818065508,0.034045511855334866,21399.0,6,3,6,6_1,6_1,6_1_0 -2435,1,70.0,3,187.0,5,112,2,0,78,7.0,0.0,0.0,251.03247772918573,0.0,2394.8404220766697,30116.0,0,50,1,13346,201102435,,,170.0,,0.0,1.0,5.0,0.0,1.0,1.0,3626.15306906338,0.0,184.0,1378.0,0.0,23864.0,0,5,1,98.0,7,0.0,1,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2645.8728998058555,0.08785605325427864,0.11087298440353065,23864.0,7,4,7,7_1,7_0,7_0_0 -2436,2,49.0,2,0.0,5,300,2,52,13,7.0,2855.620816449988,0.0,650.7744123740304,208.54923849724264,0.0,21365.0,50,50,1,13347,201102436,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1496.1983795766432,0.0,477.0,0.0,0.0,34175.0,1,1,1,150.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3714.944467321261,0.17387991890106536,0.10870356890479184,22783.333333333332,7,4,7,7_1,7_0,7_0_0 -2437,1,48.0,2,45.0,2,111,2,52,48,7.0,0.0,0.0,886.7995137172322,0.0,0.0,47821.0,50,71,1,13348,201102437,,,,,2.0,0.0,4.0,2.0,4.0,2.5,2769.1740877165926,0.0,650.0,0.0,0.0,58733.0,1,1,3,90.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,886.7995137172322,0.01854414407304808,0.015098828830763493,23493.2,7,4,7,7_1,7_3,7_0_1 -2438,2,54.0,3,0.0,1,111,6,0,52,7.0,0.0,0.0,523.8938665652572,0.0,2433.074449134497,17780.0,0,71,2,13351,201102438,,,,,1.0,3.0,2.0,0.0,1.0,1.0,2838.355844313318,0.0,384.0,1400.0,0.0,23180.0,0,1,3,40.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2956.9683156997544,0.16630867917321454,0.12756550110870382,23180.0,7,4,7,7_0,7_2,7_1_0 -2439,1,53.0,5,175.0,2,111,1,0,68,2.0,0.0,0.0,204.6460416270536,67.77850251160386,0.0,11344.0,0,50,2,13353,201102439,,,,385.0,1.0,1.0,3.0,0.0,1.0,1.0,2379.6830581470995,0.0,150.0,0.0,0.0,10981.0,0,4,3,55.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,272.42454413865744,0.024014857558062187,0.024808719072821915,10981.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -2440,2,58.0,3,0.0,5,112,2,54,68,8.0,0.0,0.0,1364.3069441803573,0.0,0.0,21714.0,50,71,1,13354,201102440,,,,,2.0,1.0,4.0,0.0,2.0,1.5,3194.3425060183577,0.0,1000.0,0.0,0.0,37540.0,1,1,1,106.0,9,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1364.3069441803573,0.06283075178135568,0.03634275290837393,25026.666666666668,8,4,8,8_1,8_0,8_0_0 -2441,1,26.0,2,205.0,1,112,5,85,63,2.0,0.0,0.0,160.98821941328217,0.0,0.0,14408.0,60,50,1,13355,201102441,,,,,1.0,0.0,4.0,1.0,3.0,1.8,2080.2197590703713,0.0,118.0,0.0,0.0,19783.0,6,1,3,90.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,160.98821941328217,0.011173529942620917,0.008137705070680998,10990.555555555555,2,1,2_1,2_1_1,2_0_1,2_1_0 -2442,2,34.0,5,0.0,8,211,4,0,52,5.0,0.0,0.0,773.5620373502626,0.0,0.0,23930.0,0,42,2,13356,201102442,,,,441.0,1.0,0.0,2.0,0.0,1.0,1.0,2662.9783167878923,0.0,567.0,0.0,0.0,17190.0,0,1,3,45.0,3,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,773.5620373502626,0.032326035827424264,0.045000700253069376,17190.0,5,3,5,5_0,5_1,5_0_0 -2443,2,80.0,3,0.0,7,300,2,74,74,6.0,3298.242042999736,0.0,245.5752499524643,194.64595593075978,0.0,35159.0,41,12,1,13357,201102443,,,238.0,,0.0,5.0,7.0,0.0,4.0,2.1,1209.3391152607155,0.0,180.0,0.0,0.0,40813.0,5,5,5,150.0,0,0.0,5,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3738.46324888296,0.106330192806478,0.09159981498255361,19434.761904761905,6,3,6,6_1,6_0,6_0_0 -2444,2,48.0,2,0.0,7,112,2,42,33,10.0,0.0,277.585263912688,3547.198054868929,0.0,0.0,131667.0,30,41,1,13358,201102444,,,400.0,,3.0,0.0,6.0,1.0,3.0,2.0,1650.7372869089431,0.0,2600.0,0.0,0.0,93008.0,1,1,1,130.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3824.783318781617,0.02904891368969914,0.04112316487594204,46504.0,10,5,10,10_1,10_0,10_0_0 -2445,2,63.0,1,0.0,5,400,2,77,77,6.0,1586.456009138882,0.0,671.2390165367358,0.0,0.0,45598.0,70,70,1,1336,201102445,,,,,1.0,0.0,4.0,1.0,4.0,2.5,1569.7403605898808,0.0,492.0,0.0,0.0,49870.0,5,5,1,103.0,0,0.0,5,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2257.695025675618,0.04951302745023067,0.045271606690908725,19948.0,6,3,6,6_1,6_0,6_0_0 -2446,2,35.0,1,0.0,6,112,2,47,47,9.0,0.0,0.0,747.6402054108357,0.0,1817.8541955676317,86250.0,31,31,1,13361,201102446,,,366.0,,2.0,0.0,6.0,2.0,4.0,2.1,1634.7944612815083,0.0,548.0,1046.0,0.0,66407.0,1,1,2,127.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2565.4944009784676,0.029744862620040204,0.038632891125611274,31622.38095238095,9,5,9,9_1,9_2,9_0_0 -2447,2,42.0,2,0.0,9,112,2,0,43,9.0,0.0,0.0,1186.9470414369107,0.0,2698.9747282184817,44674.0,0,33,1,13362,201102447,,,1300.0,,1.0,0.0,7.0,2.0,3.0,1.6,1359.9554205441718,0.0,870.0,1553.0,0.0,49709.0,0,1,2,150.0,9,2.0,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3885.9217696553924,0.08698396762446596,0.07817340460792598,31068.125,9,5,9,9_1,9_1,9_0_0 -2448,2,48.0,3,0.0,1,112,5,85,62,3.0,0.0,971.5484236944079,1200.5901108787143,173.79103208103552,0.0,29566.0,50,50,1,13363,201102448,,,,,2.0,1.0,5.0,2.0,4.0,2.5,842.67241330128,0.0,880.0,0.0,0.0,31980.0,6,1,3,100.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2345.929566654158,0.07934551737313664,0.0733561465495359,12792.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -2449,2,83.0,2,0.0,7,111,1,0,78,6.0,0.0,0.0,245.5752499524643,0.0,663.8817425495557,16983.0,0,50,2,13364,201102449,,,200.0,336.0,0.0,0.0,2.0,0.0,1.0,1.0,2492.599290154646,0.0,180.0,382.0,0.0,20400.0,0,5,3,62.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,909.4569925020201,0.053551021168345994,0.04458122512264804,20400.0,6,3,6,6_0,6_2,6_0_0 -2450,2,45.0,3,0.0,8,112,2,0,55,10.0,1189.8420068541616,0.0,545.7227776721429,67.77850251160386,0.0,29364.0,0,31,1,13365,201102450,,,150.0,,1.0,0.0,5.0,0.0,1.0,1.0,3237.681582082675,0.0,400.0,0.0,0.0,40504.0,0,1,2,120.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1803.3432870379083,0.061413407132472016,0.04452259744810163,40504.0,10,5,10,10_1,10_0,10_0_0 -2451,1,50.0,5,191.0,1,120,6,0,55,2.0,0.0,0.0,379.74987543721267,0.0,784.9335177993328,33215.0,0,41,1,13369,201102451,,,415.0,,1.0,0.0,4.0,1.0,2.0,1.5,2784.726594362213,730.0,0.0,0.0,0.0,15791.0,0,4,2,135.0,0,2.0,2,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1164.6833932365455,0.03506498248491782,0.07375615181030622,10527.333333333334,2,1,2_1,2_1_1,2_1_1,2_1_0 -2452,2,70.0,3,0.0,4,111,1,0,77,6.0,0.0,0.0,204.6460416270536,0.0,0.0,13954.0,0,71,2,13370,201102452,,,,685.0,0.0,0.0,2.0,0.0,1.0,1.0,2849.751317305054,0.0,150.0,0.0,0.0,20113.0,0,5,3,38.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,204.6460416270536,0.014665761905335644,0.010174814380105085,20113.0,6,3,6,6_0,6_2,6_0_1 -2453,2,21.0,2,0.0,7,111,2,0,84,1.0,0.0,0.0,218.28911106885715,0.0,0.0,18058.0,0,20,2,13371,201102453,,,,474.0,0.0,0.0,1.0,0.0,1.0,1.0,3009.5179681664663,0.0,160.0,0.0,0.0,6100.0,0,3,3,20.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,218.28911106885715,0.012088221899925637,0.03578510017522248,6100.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -2454,2,33.0,2,0.0,1,400,2,69,21,9.0,1110.5192063972174,388.6193694777632,2344.6749617310006,180.74267336427695,334.40318361040073,28472.0,43,50,1,13372,201102454,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2945.7433692588565,311.0,1600.0,0.0,0.0,51329.0,1,1,3,90.0,0,0.0,3,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4358.959394580659,0.15309635412266995,0.08492196213798553,34219.333333333336,9,5,9,9_1,9_0,9_1_0 -2455,1,33.0,5,376.0,1,111,2,0,85,1.0,0.0,0.0,645.0545829344435,0.0,1333.3117288646201,18487.0,0,50,1,13374,201102455,,,900.0,,0.0,0.0,3.0,3.0,4.0,1.9,1307.0926528818995,1240.0,0.0,0.0,0.0,15850.0,0,6,3,47.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1978.3663117990636,0.10701391852648151,0.12481806383590306,8342.105263157895,1,1,1_1,1_1_1,1_3_1,1_1_0 -2456,2,53.0,2,0.0,1,112,6,34,34,10.0,1586.456009138882,721.7216861729887,750.3688192991965,166.8393907977941,0.0,60695.0,41,41,1,13375,201102456,,,783.0,,3.0,1.0,7.0,1.0,3.0,2.0,1201.582204661805,0.0,550.0,0.0,0.0,75850.0,1,1,1,125.0,8,0.0,4,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3225.3859054088616,0.05314088319316025,0.04252321562833041,37925.0,10,5,10,10_1,10_0,10_1_0 -2457,1,36.0,3,100.0,4,120,1,0,48,6.0,0.0,0.0,219.6534180130375,0.0,521.3730962431066,12674.0,0,50,2,13376,201102457,,,,240.0,1.0,1.0,3.0,0.0,1.0,1.0,5385.126007392517,0.0,161.0,300.0,0.0,19566.0,0,1,3,55.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,741.0265142561441,0.05846824319521415,0.037873173579481965,19566.0,6,3,6,6_0,6_1,6_0_1 -2458,2,59.0,3,0.0,6,400,2,85,74,7.0,0.0,693.9631597817199,1910.0297218525002,0.0,0.0,39776.0,70,41,1,13378,201102458,,,143.0,,0.0,3.0,5.0,0.0,2.0,1.5,5717.516959199444,0.0,1400.0,0.0,0.0,35649.0,6,5,1,130.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2603.99288163422,0.06546643407165678,0.07304532754450951,23766.0,7,4,7,7_1,7_0,7_0_0 -2459,2,68.0,3,0.0,6,112,5,77,78,4.0,237.96840137083234,693.9631597817199,1227.8762497623215,0.0,0.0,27748.0,71,50,1,13380,201102459,,,260.0,,0.0,3.0,6.0,0.0,2.0,1.5,3627.4789581500286,0.0,900.0,0.0,0.0,22258.0,5,5,1,123.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2159.8078109148737,0.07783652194445992,0.09703512494001588,14838.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -2460,2,33.0,1,0.0,8,111,2,37,38,10.0,0.0,0.0,1736.7627399415949,0.0,3877.2779257279026,80203.0,20,20,1,13381,201102460,,,352.0,,2.0,0.0,6.0,1.0,3.0,1.8,1198.0002789476086,0.0,1273.0,2231.0,0.0,123298.0,1,1,2,200.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5614.040665669498,0.06999788867834741,0.04553229302721454,68498.88888888889,10,5,10,10_1,10_3,10_0_0 -2461,1,22.0,2,313.0,8,111,4,84,43,4.0,0.0,0.0,627.5811943229643,34.7582064162071,0.0,28469.0,20,33,8,13382,201102461,,,,32.0,1.0,0.0,1.0,0.0,2.0,1.5,3101.9398397200175,0.0,460.0,0.0,0.0,24184.0,3,1,3,35.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,662.3394007391714,0.023265285072857193,0.02738750416552975,16122.666666666666,4,2,4_1,4_0_1,4_3_1,4_0_0 -2462,1,38.0,3,215.0,9,112,5,56,62,4.0,0.0,180.43042154324718,1678.0975413418394,182.4805836850873,0.0,28164.0,50,50,1,13383,201102462,,,,,2.0,1.0,6.0,3.0,5.0,2.4,1245.8938355646853,0.0,1230.0,0.0,0.0,38470.0,1,1,2,130.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2041.0085465701738,0.07246870283234533,0.05305455020977837,16029.166666666668,4,2,4_1,4_1_1,4_0_1,4_0_0 -2463,0,85.0,2,0.0,5,111,4,0,86,2.0,0.0,0.0,545.7227776721429,0.0,1737.9103208103552,13653.0,0,70,2,13385,201102463,,,,,0.0,5.0,3.0,0.0,1.0,1.0,4239.924213141133,0.0,400.0,1000.0,0.0,11310.0,0,6,5,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2283.633098482498,0.1672623671341462,0.20191274080305022,11310.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -2464,2,52.0,2,0.0,5,111,2,46,22,8.0,3014.2664173638764,0.0,294.69029994295715,0.0,0.0,88198.0,71,50,1,13386,201102464,,,,,3.0,0.0,5.0,2.0,4.0,2.3,2448.4729341911284,0.0,216.0,0.0,0.0,63366.0,1,1,2,120.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3308.9567173068335,0.03751736680317959,0.05221975061242359,27550.434782608696,8,4,8,8_1,8_3,8_0_0 -2465,2,70.0,3,0.0,4,111,2,0,78,4.0,2062.392811880547,0.0,1309.734666413143,0.0,0.0,11898.0,0,71,1,13387,201102465,,,457.0,,0.0,1.0,4.0,0.0,1.0,1.0,4172.120319891252,0.0,960.0,0.0,0.0,14923.0,0,5,1,76.0,8,7.0,1,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3372.12747829369,0.28341969056090854,0.22596847003241238,14923.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -2466,2,27.0,2,0.0,8,112,2,42,23,10.0,0.0,763.359475759892,1410.6933802824894,0.0,0.0,46409.0,20,12,1,13388,201102466,,,160.0,,2.0,0.0,4.0,0.0,2.0,1.5,5710.300224665016,0.0,1034.0,0.0,0.0,63054.0,1,1,2,106.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2174.0528560423813,0.04684550100287404,0.03447922187398708,42036.0,10,5,10,10_1,10_0,10_0_0 -2467,2,75.0,3,0.0,4,111,2,77,75,8.0,0.0,0.0,1491.7298361188352,0.0,3476.867689126312,38438.0,50,60,1,1339,201102467,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1360.8932804479246,1294.0,600.0,1200.0,0.0,41483.0,5,5,1,90.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4968.597525245147,0.12926264439474341,0.11977430574561018,27655.333333333332,8,4,8,8_1,8_2,8_0_1 -2468,2,35.0,2,0.0,2,111,2,42,37,8.0,0.0,0.0,818.5841665082144,0.0,1390.3282566482842,73076.0,30,10,1,13392,201102468,,,300.0,,2.0,0.0,7.0,3.0,5.0,2.4,1122.6989368370284,0.0,600.0,800.0,0.0,60615.0,1,1,2,141.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2208.9124231564983,0.030227604455039934,0.03644167983430666,25256.25,8,4,8,8_1,8_3,8_0_1 -2469,2,33.0,1,0.0,1,111,2,0,37,10.0,0.0,0.0,54.57227776721429,0.0,139.0328256648284,51030.0,0,20,2,13395,201102469,,,,1050.0,1.0,1.0,4.0,0.0,1.0,1.0,3457.3761683084813,0.0,40.0,80.0,0.0,45685.0,0,1,3,68.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,193.6051034320427,0.0037939467652761652,0.004237826495174405,45685.0,10,5,10,10_0,10_4,10_1_0 -2470,2,50.0,5,0.0,99,111,1,0,52,5.0,0.0,0.0,368.36287492869644,0.0,88.63342636132812,9599.0,0,71,2,13397,201102470,,,109.0,252.0,1.0,4.0,4.0,0.0,1.0,1.0,3140.7134299778186,0.0,270.0,51.0,0.0,18493.0,0,1,3,80.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,456.9963012900246,0.047608740628192994,0.02471185320337558,18493.0,5,3,5,5_0,5_3,5_0_0 -2471,2,51.0,2,0.0,7,111,6,0,43,9.0,0.0,0.0,1934.5872468477467,194.64595593075978,0.0,30166.0,0,33,1,13399,201102471,,,458.0,,1.0,1.0,5.0,1.0,2.0,1.5,2678.6871249778224,0.0,1418.0,0.0,0.0,46644.0,0,1,2,109.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2129.2332027785064,0.07058387597886714,0.04564859794997227,31096.0,9,5,9,9_1,9_3,9_0_0 -2472,2,43.0,4,0.0,99,112,2,22,46,7.0,0.0,0.0,0.0,0.0,0.0,23751.0,31,50,2,134,201102472,,,,,2.0,1.0,3.0,1.0,3.0,1.8,3645.3997211268475,0.0,0.0,0.0,0.0,43398.0,1,1,3,76.0,10,2.0,4,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,24110.0,7,4,7,7_0,7_1,7_0_0 -2473,2,41.0,3,0.0,8,112,2,0,21,2.0,0.0,0.0,269.9865552765937,0.0,558.0554736134983,23589.0,0,42,1,1340,201102473,,,,,1.0,0.0,4.0,1.0,2.0,1.3,2991.110547263188,519.0,0.0,0.0,0.0,13779.0,0,1,1,100.0,8,0.0,2,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,828.0420288900921,0.03510288816355471,0.0600944937143546,10599.23076923077,2,1,2_0,2_1_0,2_0_0,2_0_0 -2474,2,60.0,3,0.0,99,111,1,0,75,7.0,0.0,0.0,477.50743046312505,76.46805411565563,0.0,19701.0,0,71,1,13400,201102474,,,,402.0,0.0,2.0,2.0,0.0,1.0,1.0,1913.4073351610655,0.0,350.0,0.0,0.0,23354.0,0,5,3,55.0,4,4.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,553.9754845787807,0.028119155605237332,0.023720796633500928,23354.0,7,4,7,7_1,7_2,7_0_0 -2475,2,48.0,3,0.0,7,111,2,0,54,2.0,0.0,0.0,540.2655498954215,0.0,896.7617255381433,24821.0,0,60,2,13401,201102475,,,,404.0,2.0,1.0,3.0,2.0,3.0,2.0,2390.2354380853553,0.0,396.0,516.0,0.0,22317.0,0,1,3,70.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1437.0272754335647,0.05789562368291224,0.06439159723231459,11158.5,2,1,2_0,2_0_0,2_3_0,2_0_0 -2476,1,23.0,2,171.0,1,111,4,0,84,1.0,0.0,0.0,245.5752499524643,0.0,0.0,16387.0,0,41,2,13402,201102476,,,118.0,214.0,0.0,0.0,1.0,0.0,1.0,1.0,3396.3167049853137,0.0,180.0,0.0,0.0,8552.0,0,3,3,20.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,245.5752499524643,0.014985979737137018,0.028715534372364862,8552.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -2477,1,77.0,3,49.0,5,211,2,0,77,4.0,0.0,0.0,272.86138883607146,0.0,782.0596443646599,11154.0,0,50,2,13405,201102477,,,240.0,195.0,0.0,4.0,2.0,0.0,1.0,1.0,3030.7927912902924,0.0,200.0,450.0,0.0,15590.0,0,5,3,65.0,1,2.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1054.9210332007315,0.09457782259285741,0.06766651912769285,15590.0,4,2,4_1,4_0_1,4_1_1,4_0_0 -2478,2,41.0,2,0.0,7,400,2,72,34,8.0,2379.684013708323,0.0,1596.2391246910179,0.0,0.0,56168.0,50,20,1,13407,201102478,,,,,1.0,3.0,6.0,0.0,2.0,1.5,2027.3315752068781,0.0,1170.0,0.0,0.0,42638.0,5,1,1,130.0,0,0.0,3,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3975.923138399341,0.07078626866542054,0.09324834979125055,28425.333333333332,8,4,8,8_1,8_0,8_0_0 -2479,2,41.0,2,0.0,2,111,1,52,53,6.0,0.0,0.0,955.0148609262501,0.0,1042.7461924862132,44425.0,50,42,2,13408,201102479,,,,380.0,2.0,0.0,4.0,2.0,4.0,2.1,2734.641030086515,0.0,700.0,600.0,0.0,41084.0,1,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1997.7610534124633,0.044969297769554606,0.048626254829433925,19563.809523809523,6,3,6,6_0,6_4,6_0_1 -2480,2,64.0,3,0.0,7,111,4,0,77,5.0,0.0,0.0,873.1564442754286,0.0,0.0,19672.0,0,70,2,13410,201102480,,,,342.0,0.0,4.0,2.0,0.0,1.0,1.0,3114.7231653814097,0.0,640.0,0.0,0.0,18670.0,0,5,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,873.1564442754286,0.04438574848899088,0.04676788667784835,18670.0,5,3,5,5_0,5_4,5_0_0 -2481,2,43.0,3,0.0,7,112,2,0,67,6.0,2379.684013708323,0.0,1186.9470414369107,0.0,0.0,14821.0,0,60,1,13411,201102481,,,,,1.0,4.0,3.0,0.0,2.0,1.5,3224.021679307632,0.0,870.0,0.0,0.0,29079.0,0,4,1,79.0,8,0.0,5,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3566.631055145234,0.24064712604717858,0.12265315365539509,19386.0,6,3,6,6_1,6_0,6_0_0 -2482,2,76.0,3,0.0,3,221,2,72,78,5.0,0.0,0.0,690.3393137552607,7299.223347403492,0.0,17158.0,50,50,1,13413,201102482,,,300.0,,0.0,0.0,4.0,0.0,2.0,1.5,1618.6488170926218,0.0,506.0,0.0,0.0,27370.0,5,5,1,100.0,1,3.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,7989.562661158752,0.46564650082519826,0.29190948707193104,18246.666666666668,5,3,5,5_1,5_1,5_0_1 -2483,1,19.0,2,195.0,99,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,15550.0,0,43,3,13414,201102483,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3130.867901542752,0.0,0.0,0.0,0.0,4620.0,0,3,3,21.0,8,6.0,1,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,4620.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -2484,2,84.0,3,0.0,4,111,2,0,74,4.0,0.0,0.0,422.93515269591074,0.0,615.2202535668657,18252.0,0,10,2,13416,201102484,,,,500.0,0.0,2.0,1.0,0.0,1.0,1.0,3745.29397422221,0.0,310.0,354.0,0.0,15660.0,0,7,3,39.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1038.1554062627765,0.05687899442596847,0.06629344867578395,15660.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -2485,2,60.0,4,0.0,5,112,2,52,78,4.0,396.6140022847205,0.0,964.5650095355126,194.64595593075978,0.0,24107.0,70,50,1,13419,201102485,,,192.0,,1.0,3.0,5.0,0.0,2.0,1.5,1893.6946558671345,0.0,707.0,0.0,0.0,23455.0,5,5,1,123.0,9,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1555.8249677509928,0.06453830703741621,0.06633233714564028,15636.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -2486,2,28.0,2,0.0,1,221,2,42,34,10.0,0.0,0.0,491.1504999049286,0.0,1296.481099324525,33354.0,20,20,2,13423,201102486,,,190.0,588.0,2.0,0.0,4.0,0.0,2.0,1.5,5478.20249728113,0.0,360.0,746.0,0.0,56779.0,1,1,3,71.0,1,3.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1787.6315992294537,0.05359571863133219,0.03148402753182433,37852.666666666664,10,5,10,10_0,10_1,10_1_0 -2487,2,30.0,1,0.0,9,111,4,22,38,9.0,0.0,0.0,1768.141799657743,0.0,0.0,60055.0,20,12,2,13424,201102487,,,379.0,730.0,2.0,0.0,3.0,0.0,2.0,1.5,2238.264203887796,0.0,1296.0,0.0,0.0,44264.0,1,1,3,90.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1768.141799657743,0.029442041456294112,0.03994536868917727,29509.333333333332,9,5,9,9_0,9_3,9_0_0 -2488,2,50.0,1,0.0,6,111,4,31,31,10.0,0.0,0.0,3361.4573508989106,0.0,744.0739648179976,77914.0,10,10,1,13426,201102488,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.1,2291.382482418896,692.0,2200.0,0.0,0.0,590979.0,1,1,2,200.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4105.5313157169085,0.052693114404560266,0.006947000343018802,281418.5714285714,10,5,10,10_1,10_4,10_0_0 -2489,2,70.0,2,0.0,7,111,3,77,75,8.0,0.0,0.0,995.9440692516608,0.0,0.0,35670.0,41,43,2,13428,201102489,,,180.0,,0.0,2.0,3.0,0.0,2.0,1.5,2686.884064197945,0.0,730.0,0.0,0.0,41645.0,5,5,1,73.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,995.9440692516608,0.0279210560485467,0.023915093510665408,27763.333333333332,8,4,8,8_0,8_2,8_0_0 -2490,2,40.0,3,0.0,6,111,4,56,52,7.0,158.64560091388822,0.0,764.011888741,0.0,0.0,22449.0,71,43,2,13429,201102490,,,,618.0,2.0,1.0,2.0,0.0,2.0,1.5,3667.2083789847406,0.0,560.0,0.0,0.0,34636.0,1,1,3,50.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,922.6574896548882,0.04110015990266329,0.026638684884365636,23090.666666666668,7,4,7,7_0,7_3,7_0_0 -2491,1,57.0,3,93.0,4,111,2,0,68,2.0,0.0,0.0,461.94231423047245,0.0,954.8232380901472,10437.0,0,50,2,1343,201102491,,,,,2.0,2.0,3.0,1.0,2.0,1.5,2785.4720228265865,888.0,0.0,0.0,0.0,16650.0,0,1,3,62.0,4,4.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1416.7655523206197,0.1357445197202855,0.08509102416340059,11100.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -2492,2,87.0,2,0.0,2,111,2,0,72,2.0,0.0,0.0,229.20356662230003,0.0,1216.5372245672486,11629.0,0,70,1,13433,201102492,,,138.0,,0.0,3.0,5.0,0.0,1.0,1.0,3280.1564221472936,0.0,168.0,700.0,0.0,11900.0,0,6,1,100.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1445.7407911895486,0.1243220217722546,0.1214908227890377,11900.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -2493,1,63.0,3,55.0,2,111,1,0,77,3.0,0.0,0.0,573.00891655575,0.0,205.07341785562193,12113.0,0,70,8,13434,201102493,,,,509.0,0.0,1.0,2.0,0.0,1.0,1.0,3133.715931827735,0.0,420.0,118.0,0.0,12420.0,0,5,3,53.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,778.0823344113719,0.06423531201282687,0.06264753095099612,12420.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -2494,1,27.0,4,320.0,99,112,2,85,63,2.0,0.0,0.0,1637.1683330164287,52.13730962431066,0.0,16261.0,43,71,1,13436,201102494,,,100.0,,1.0,0.0,4.0,1.0,3.0,1.8,4540.554119458587,0.0,1200.0,0.0,0.0,21530.0,6,1,3,90.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1689.3056426407393,0.10388694684464296,0.07846287239390336,11961.111111111111,2,1,2_1,2_1_1,2_0_1,2_0_0 -2495,2,29.0,3,0.0,99,111,2,85,65,2.0,285.5620816449988,0.0,196.46019996197145,0.0,291.9689338961397,44355.0,50,50,1,13437,201102495,,,,,1.0,0.0,4.0,3.0,5.0,2.4,1553.69886419479,0.0,144.0,168.0,0.0,25739.0,6,1,2,76.0,8,7.0,4,3,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,773.99121550311,0.017449920313450794,0.030070757041963946,10724.583333333334,2,1,2_0,2_1_0,2_3_0,2_0_0 -2496,1,31.0,3,313.0,99,111,2,85,63,2.0,0.0,0.0,750.3688192991965,3058.722164626225,0.0,10618.0,50,50,1,13441,201102496,,,199.0,,1.0,0.0,5.0,3.0,5.0,2.4,2651.892749392505,0.0,550.0,0.0,0.0,27996.0,6,4,3,100.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,3809.090983925422,0.3587390265516502,0.13605840062599736,11665.0,2,1,2_1,2_1_1,2_2_1,2_0_0 -2497,2,27.0,2,0.0,99,112,2,43,38,9.0,2379.684013708323,0.0,968.6579303680536,34.7582064162071,0.0,58673.0,33,12,1,13443,201102497,,,600.0,,2.0,0.0,4.0,0.0,2.0,1.5,2365.454765012453,0.0,710.0,0.0,0.0,50464.0,1,1,3,80.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3383.100150492584,0.05766025515130612,0.06703987298851823,33642.666666666664,9,5,9,9_1,9_0,9_0_0 -2498,2,58.0,3,0.0,6,300,4,52,74,7.0,0.0,0.0,2617.9196523681962,173.79103208103552,617.1943002970096,53508.0,41,50,1,13444,201102498,,,174.0,,1.0,3.0,5.0,0.0,2.0,1.5,1937.1535767945352,574.0,1700.0,0.0,0.0,35070.0,1,5,1,135.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3408.9049847462416,0.06370832370386188,0.09720287951942519,23380.0,7,4,7,7_1,7_0,7_0_0 -2499,2,80.0,3,0.0,4,111,1,75,77,10.0,0.0,0.0,559.3658471139465,0.0,1911.7013528913908,44625.0,60,70,1,13446,201102499,,,400.0,,0.0,1.0,4.0,0.0,2.0,1.5,2016.4416916403457,0.0,410.0,1100.0,0.0,58020.0,5,5,1,90.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2471.0672000053373,0.05537405490208039,0.04258992071708613,38680.0,10,5,10,10_1,10_2,10_0_1 -2500,2,77.0,3,0.0,3,111,1,77,74,9.0,0.0,0.0,1208.0317596465911,0.0,1078.4523824351904,57127.0,41,60,2,13450,201102500,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2890.2997826284936,906.0,540.0,60.0,0.0,47609.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2286.4841420817816,0.040024579307188925,0.0480263005331299,31739.333333333332,9,5,9,9_0,9_4,9_0_1 -2501,2,73.0,3,0.0,6,111,2,77,78,4.0,0.0,0.0,866.3349095545268,0.0,3444.5382558461242,34871.0,50,70,1,13451,201102501,,,391.0,,0.0,1.0,4.0,0.0,2.0,1.5,1673.896489391105,0.0,635.0,1982.0,0.0,24382.0,5,5,1,103.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4310.8731654006515,0.1236234454245835,0.17680556006072723,16254.666666666666,4,2,4_0,4_1_0,4_3_0,4_0_0 -2502,2,60.0,2,0.0,2,111,2,77,37,6.0,0.0,0.0,368.36287492869644,0.0,1835.2332987757352,28150.0,50,31,1,13453,201102502,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1418.7017753817777,0.0,270.0,1056.0,0.0,32190.0,5,5,1,104.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2203.5961737044317,0.07828050350637412,0.06845592338317588,21460.0,6,3,6,6_1,6_2,6_0_1 -2503,2,59.0,4,0.0,8,112,2,0,78,4.0,0.0,0.0,358.9416630844887,0.0,741.9234620295064,19246.0,0,71,1,13454,201102503,,,282.0,,0.0,1.0,4.0,0.0,2.0,1.5,3666.337996937887,690.0,0.0,0.0,0.0,24150.0,0,5,3,90.0,5,0.0,5,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1100.865125113995,0.05719968435591785,0.04558447723039317,16100.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -2504,2,66.0,3,0.0,6,111,2,75,74,7.0,0.0,555.170527825376,2876.7957129932306,0.0,1321.483963527918,91065.0,41,31,1,13455,201102504,,,122.0,,0.0,1.0,7.0,0.0,2.0,1.5,1656.3184347140011,1229.0,1640.0,0.0,0.0,32786.0,5,5,1,220.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4753.4502043465245,0.05219843193703975,0.14498414580450572,21857.333333333332,7,4,7,7_1,7_3,7_0_0 -2505,2,38.0,2,0.0,9,300,5,12,12,4.0,0.0,124.91336876070959,1064.1594164606786,260.6865481215533,0.0,21084.0,31,43,1,13456,201102505,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2839.80964304374,0.0,780.0,0.0,0.0,35101.0,1,1,2,120.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1449.7593333429413,0.06876111427352216,0.04130250800099545,16714.761904761905,4,2,4_0,4_1_0,4_0_0,4_0_0 -2506,2,55.0,3,0.0,8,112,2,78,46,9.0,0.0,0.0,518.4366387885358,0.0,782.0596443646599,50915.0,70,71,1,13458,201102506,,,400.0,410.0,1.0,1.0,3.0,0.0,2.0,1.5,3144.1286489130343,0.0,380.0,450.0,0.0,48963.0,5,1,3,65.0,9,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1300.4962831531957,0.02554249795056851,0.02656079658422065,32642.0,9,5,9,9_1,9_0,9_0_0 -2507,2,55.0,1,0.0,1,111,2,37,33,10.0,0.0,0.0,1227.8762497623215,0.0,2606.865481215533,45479.0,31,20,1,13459,201102507,,,600.0,,2.0,3.0,4.0,0.0,2.0,1.5,2530.3753927709663,0.0,900.0,1500.0,0.0,81422.0,1,1,1,75.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3834.7417309778543,0.0843189544840004,0.04709712032347344,54281.333333333336,10,5,10,10_1,10_4,10_1_0 -2508,2,52.0,2,0.0,9,112,2,0,38,10.0,0.0,0.0,1828.1713052016787,86.89551604051776,0.0,45399.0,0,31,1,13461,201102508,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3609.8828372971466,0.0,1340.0,0.0,0.0,55950.0,0,1,2,107.0,9,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1915.0668212421965,0.042183017714976026,0.03422818268529395,55950.0,10,5,10,10_1,10_0,10_0_0 -2509,1,36.0,4,232.0,2,111,2,0,81,1.0,0.0,0.0,417.4779249191893,0.0,1032.318730561351,2903.0,0,71,2,13462,201102509,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2554.9957284613242,0.0,306.0,594.0,0.0,7864.0,0,4,3,32.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1449.7966554805403,0.4994132468069377,0.18435867948633522,7864.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -2510,2,75.0,3,0.0,1,400,4,0,78,2.0,0.0,0.0,1105.0886247860894,86.89551604051776,0.0,9582.0,0,71,1,13463,201102510,,,110.0,,0.0,1.0,3.0,0.0,1.0,1.0,3324.579128233579,0.0,810.0,0.0,0.0,9737.0,0,5,1,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1191.9841408266072,0.12439826140958123,0.12241800768477018,9737.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -2511,2,81.0,1,0.0,4,111,1,86,74,9.0,0.0,0.0,547.0870846163233,0.0,0.0,49383.0,41,10,2,13466,201102511,,,,,0.0,1.0,9.0,0.0,2.0,1.5,3831.4171170899763,0.0,401.0,0.0,0.0,52072.0,6,5,1,179.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,547.0870846163233,0.011078449762394412,0.010506358208179507,34714.666666666664,9,5,9,9_0,9_3,9_0_1 -2512,2,29.0,4,0.0,2,111,2,85,62,4.0,0.0,0.0,781.8685791536037,0.0,1616.102845551229,33106.0,50,71,2,13468,201102512,,,500.0,460.0,1.0,0.0,3.0,2.0,4.0,2.1,4691.58537374343,1503.0,0.0,0.0,0.0,31602.0,6,1,3,80.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2397.9714247048328,0.07243313673366861,0.07588036911286732,15048.571428571428,4,2,4_0,4_0_0,4_2_0,4_0_1 -2513,1,34.0,2,60.0,6,221,2,0,52,3.0,0.0,0.0,573.00891655575,0.0,1021.8912686364889,8629.0,0,50,2,13469,201102513,,,121.0,261.0,1.0,0.0,2.0,0.0,1.0,1.0,4336.811295521305,0.0,420.0,588.0,0.0,12850.0,0,1,3,55.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1594.900185192239,0.18483024512599824,0.12411674592935712,12850.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -2514,1,24.0,2,101.0,8,111,2,0,37,4.0,0.0,0.0,777.6549581828036,0.0,0.0,45109.0,0,31,2,13471,201102514,,,,429.0,1.0,0.0,2.0,0.0,1.0,1.0,3329.448203006111,0.0,570.0,0.0,0.0,14935.0,0,1,3,50.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,777.6549581828036,0.017239463481407338,0.05206929750135947,14935.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -2515,2,36.0,2,0.0,1,120,6,0,67,10.0,2221.038412794435,0.0,708.34060453404,0.0,161.2877091368492,41375.0,0,50,1,13473,201102515,,,250.0,,2.0,0.0,6.0,1.0,2.0,1.5,958.7505380892336,150.0,462.0,0.0,0.0,83027.0,0,1,1,125.0,0,1.0,2,4,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3090.6667264653242,0.07469889369100481,0.037224839226580805,55351.333333333336,10,5,10,10_1,10_1,10_1_0 -2516,2,56.0,3,0.0,2,300,4,52,78,5.0,0.0,0.0,2414.8232911992322,0.0,0.0,32288.0,70,50,1,13474,201102516,,,128.0,,2.0,1.0,5.0,1.0,3.0,2.0,1384.668213239097,0.0,1770.0,0.0,0.0,37051.0,1,5,1,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2414.8232911992322,0.07479011679878693,0.0651756576394492,18525.5,5,3,5,5_1,5_0,5_0_1 -2517,2,39.0,3,0.0,9,112,5,54,62,6.0,0.0,721.7216861729887,1091.4455553442858,0.0,0.0,27558.0,31,71,1,13475,201102517,,,475.0,,2.0,0.0,5.0,2.0,4.0,2.1,2349.010831524592,0.0,800.0,0.0,0.0,45136.0,1,1,2,137.0,5,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1813.1672415172745,0.06579458747068999,0.04017119907650821,21493.333333333332,6,3,6,6_1,6_0,6_0_0 -2518,1,32.0,5,463.0,7,111,1,0,85,2.0,0.0,0.0,1334.2921914083895,0.0,0.0,16518.0,0,41,2,13479,201102518,,,,,0.0,0.0,1.0,2.0,3.0,1.6,2973.4146493308126,0.0,978.0,0.0,0.0,15698.0,0,6,3,32.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1334.2921914083895,0.08077807188572403,0.08499759150263661,9811.25,1,1,1_1,1_0_1,1_4_1,1_0_0 -2519,2,65.0,1,0.0,7,111,2,74,74,10.0,0.0,0.0,2072.8249554856675,111.22626053186274,567.7327361617092,87957.0,41,20,1,1348,201102519,,,345.0,,0.0,2.0,4.0,0.0,2.0,1.5,1746.1684711323173,528.0,1318.0,0.0,0.0,171531.0,5,5,1,100.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2751.7839521792393,0.031285559445856946,0.016042487667997266,114354.0,10,5,10,10_1,10_3,10_0_0 -2520,2,25.0,3,0.0,6,111,1,0,52,6.0,0.0,0.0,1091.4455553442858,0.0,0.0,23430.0,0,42,2,13480,201102520,,,800.0,,3.0,0.0,3.0,3.0,5.0,3.0,6407.893746529654,0.0,800.0,0.0,0.0,61680.0,0,1,1,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1091.4455553442858,0.04658325033479666,0.017695291104803595,20560.0,6,3,6,6_0,6_4,6_0_0 -2521,2,60.0,1,0.0,6,111,4,78,75,8.0,0.0,277.585263912688,2068.4185340266336,0.0,1030.4162314944815,65246.0,70,33,1,13484,201102521,,,341.0,,1.0,1.0,5.0,1.0,3.0,2.0,1343.4440892392827,829.0,1200.0,80.0,0.0,54915.0,5,5,1,115.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3376.420029433803,0.05174907319121177,0.06148447654436498,27457.5,8,4,8,8_1,8_2,8_0_0 -2522,2,54.0,3,0.0,1,111,2,74,22,8.0,0.0,0.0,749.0045123550161,0.0,2323.5860989234448,68148.0,31,41,1,13485,201102522,,,217.0,,1.0,2.0,5.0,2.0,4.0,2.5,2449.89634418893,0.0,549.0,1337.0,0.0,62099.0,5,1,2,120.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3072.590611278461,0.0450870254633806,0.04947890644420137,24839.6,7,4,7,7_1,7_2,7_1_0 -2523,2,62.0,2,0.0,4,111,1,0,65,7.0,0.0,0.0,477.50743046312505,0.0,295.4447545377604,20620.0,0,70,8,13486,201102523,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2629.5109002757854,0.0,350.0,170.0,0.0,24432.0,0,1,2,52.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,772.9521850008855,0.037485556983554096,0.031636877251182284,24432.0,7,4,7,7_0,7_4,7_0_1 -2524,2,32.0,2,0.0,5,111,1,34,38,9.0,0.0,0.0,613.9381248811608,0.0,0.0,62822.0,10,10,2,13487,201102524,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3030.6736759946966,0.0,450.0,0.0,0.0,59283.0,1,1,2,61.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,613.9381248811608,0.009772661247352214,0.010356056962049167,32935.0,9,5,9,9_0,9_4,9_0_0 -2525,1,21.0,5,194.0,7,111,2,0,55,4.0,0.0,0.0,545.7227776721429,0.0,0.0,20258.0,0,42,2,13488,201102525,,,,236.0,1.0,0.0,1.0,0.0,1.0,1.0,3282.9901559267496,0.0,400.0,0.0,0.0,15560.0,0,4,3,36.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,545.7227776721429,0.02693863054951836,0.03507215794808116,15560.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -2526,2,27.0,1,0.0,8,111,1,42,37,8.0,0.0,0.0,1343.994227256064,0.0,2580.6033461895872,48219.0,20,10,8,13491,201102526,,,,560.0,2.0,0.0,3.0,0.0,2.0,1.5,2218.686569427986,2400.0,70.0,0.0,0.0,41392.0,1,1,3,70.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,3924.5975734456515,0.0813911025414391,0.09481536464644501,27594.666666666668,8,4,8,8_0,8_2,8_0_0 -2527,1,55.0,4,420.0,6,111,1,85,72,1.0,0.0,0.0,395.6490138123036,0.0,139.0328256648284,16456.0,50,71,2,13493,201102527,,,,,0.0,2.0,4.0,1.0,3.0,2.0,3563.588535296185,0.0,290.0,80.0,0.0,17300.0,7,7,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,534.681839477132,0.03249160424630117,0.03090646470966081,8650.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -2528,2,54.0,3,0.0,1,111,5,0,52,1.0,234.79548935255457,693.9631597817199,369.3457692608507,0.0,763.4284899144195,10666.0,0,71,1,13494,201102528,,,,,1.0,1.0,5.0,0.0,1.0,1.0,4188.099912718408,710.0,0.0,0.0,0.0,8820.0,0,1,1,80.0,6,5.0,1,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2061.532908309545,0.19328079020340755,0.23373388983101415,8820.0,1,1,1_0,1_1_0,1_2_0,1_1_0 -2529,2,46.0,3,0.0,1,111,2,0,43,5.0,0.0,1110.341055650752,491.1504999049286,130.34327406077665,0.0,16661.0,0,33,1,13495,201102529,,,324.0,,1.0,0.0,4.0,1.0,2.0,1.5,4131.6036892476695,0.0,360.0,0.0,0.0,25711.0,0,1,2,90.0,8,6.0,2,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1731.8348296164572,0.10394543122360346,0.06735773908507865,17140.666666666668,5,3,5,5_1,5_2,5_1_0 -2530,2,71.0,4,0.0,1,400,6,0,78,10.0,1269.1648073111057,0.0,671.2390165367358,286.75520293370863,0.0,15722.0,0,71,1,13496,201102530,,,,,0.0,1.0,2.0,0.0,2.0,1.5,3213.377261933189,0.0,492.0,0.0,0.0,66883.0,0,5,1,48.0,0,0.0,5,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2227.15902678155,0.14165876013112516,0.03329932907886234,44588.666666666664,10,5,10,10_1,10_0,10_1_0 -2531,2,54.0,2,0.0,5,111,2,0,75,6.0,0.0,0.0,245.5752499524643,0.0,344.10624352045033,19582.0,0,50,2,13497,201102531,,,,480.0,0.0,2.0,2.0,0.0,1.0,1.0,1993.0784949447466,0.0,180.0,198.0,0.0,19439.0,0,7,3,54.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,589.6814934729147,0.030113445688536137,0.030334970598946173,19439.0,6,3,6,6_0,6_2,6_0_0 -2532,2,60.0,4,0.0,4,112,6,78,75,3.0,0.0,0.0,1920.944177405943,0.0,0.0,25060.0,50,70,1,13498,201102532,,,200.0,,0.0,3.0,3.0,0.0,2.0,1.5,1689.5357934218139,0.0,1408.0,0.0,0.0,20000.0,6,5,2,100.0,6,0.0,3,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1920.944177405943,0.07665379798108313,0.09604720887029715,13333.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_1 -2533,1,40.0,4,281.0,5,111,1,0,67,2.0,0.0,0.0,1487.0945691565894,0.0,451.85668341069237,12665.0,0,50,2,13499,201102533,,,,69.0,1.0,0.0,2.0,2.0,3.0,1.6,2669.513524013531,0.0,1090.0,260.0,0.0,18702.0,0,4,3,56.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1938.9512525672817,0.15309524299781144,0.10367614439991882,11688.75,2,1,2_1,2_0_1,2_4_1,2_0_0 -2534,2,41.0,2,0.0,4,111,2,33,34,7.0,0.0,0.0,2406.63744953415,0.0,0.0,47110.0,20,20,1,135,201102534,,,150.0,,2.0,0.0,6.0,3.0,5.0,2.4,999.1074736379651,0.0,1764.0,0.0,0.0,58893.0,1,1,2,120.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2406.63744953415,0.05108549033186479,0.04086457557832256,24538.75,7,4,7,7_1,7_3,7_0_1 -2535,2,74.0,2,0.0,4,300,2,77,77,4.0,1903.7472109666587,416.377895869032,654.8673332065715,194.64595593075978,0.0,34060.0,70,70,1,13500,201102535,,,,,0.0,5.0,7.0,0.0,2.0,1.5,2448.897291186231,0.0,480.0,0.0,0.0,24007.0,5,5,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3169.638395973022,0.09306043440907287,0.1320297578195119,16004.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_1 -2536,2,45.0,4,0.0,7,300,5,46,52,5.0,0.0,138.792631956344,927.728722042643,140.77073598563877,0.0,46392.0,50,60,1,13503,201102536,,,150.0,,2.0,0.0,5.0,1.0,3.0,2.0,1897.6285741597524,0.0,680.0,0.0,0.0,35614.0,1,1,1,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1207.2920899846258,0.02602371292431078,0.0338993679447584,17807.0,5,3,5,5_1,5_0,5_0_0 -2537,2,45.0,2,0.0,6,111,4,37,37,10.0,0.0,0.0,3354.8307757394987,0.0,0.0,90615.0,10,20,1,13506,201102537,,,350.0,,2.0,1.0,6.0,1.0,3.0,2.0,1745.2982571703717,0.0,2459.0,0.0,0.0,93077.0,1,1,1,145.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3354.8307757394987,0.03702290763934778,0.0360436066454602,46538.5,10,5,10,10_1,10_3,10_0_0 -2538,2,53.0,3,0.0,6,111,2,63,62,4.0,0.0,0.0,825.4057012291162,0.0,990.6088828619024,33541.0,50,50,1,13509,201102538,,,576.0,540.0,2.0,1.0,4.0,1.0,3.0,2.0,1762.4644073837965,0.0,605.0,570.0,0.0,32021.0,1,4,3,120.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1816.0145840910186,0.0541431258486932,0.05671323769060987,16010.5,4,2,4_0,4_1_0,4_2_0,4_0_0 -2539,2,48.0,3,0.0,6,111,5,85,62,5.0,0.0,693.9631597817199,934.5502567635447,130.34327406077665,0.0,21435.0,60,50,1,13510,201102539,,,248.0,,1.0,3.0,4.0,0.0,2.0,1.5,1234.9284554442409,0.0,685.0,0.0,0.0,27501.0,6,1,1,85.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1758.8566906060412,0.08205536228626271,0.0639560994366038,18334.0,5,3,5,5_1,5_3,5_0_0 -2540,2,41.0,2,0.0,7,111,2,0,37,8.0,0.0,0.0,761.2832748526394,0.0,0.0,21024.0,0,10,2,13511,201102540,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3144.1005024107294,0.0,558.0,0.0,0.0,27490.0,0,1,2,61.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,761.2832748526394,0.036210201429444415,0.027693098394057453,27490.0,8,4,8,8_0,8_2,8_0_0 -2541,2,45.0,3,0.0,1,111,5,52,52,7.0,0.0,416.377895869032,1222.4190219856,139.0328256648284,0.0,52459.0,50,50,1,13512,201102541,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1227.557637452568,0.0,896.0,0.0,0.0,35777.0,1,1,1,135.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1777.8297435194604,0.03388989007643036,0.04969197371270538,23851.333333333332,7,4,7,7_1,7_3,7_1_0 -2542,2,45.0,3,0.0,8,300,5,52,52,5.0,0.0,381.679737879946,1214.233180320518,111.22626053186274,0.0,29738.0,50,50,1,13513,201102542,,,,,2.0,0.0,5.0,2.0,4.0,2.3,1224.5669043487414,0.0,890.0,0.0,0.0,40591.0,1,1,3,85.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1707.1391787323266,0.057405984892471805,0.042057086022328265,17648.26086956522,5,3,5,5_1,5_0,5_0_0 -2543,2,65.0,3,0.0,6,400,4,0,77,5.0,0.0,222.0682111301504,1036.8732775770716,135.55700502320772,0.0,10170.0,0,70,1,13514,201102543,,,200.0,,0.0,2.0,6.0,0.0,1.0,1.0,2486.715407387399,0.0,760.0,0.0,0.0,17131.0,0,5,1,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1394.4984937304296,0.13711882927536181,0.08140204855118963,17131.0,5,3,5,5_1,5_0,5_0_0 -2544,2,77.0,3,0.0,6,400,2,78,78,8.0,0.0,0.0,2455.752499524643,187.69431464751835,0.0,33327.0,70,50,1,13515,201102544,,,420.0,,0.0,1.0,4.0,0.0,2.0,1.5,3265.8522275526166,0.0,1800.0,0.0,0.0,39670.0,5,5,1,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2643.4468141721613,0.07931847493540256,0.06663591666680517,26446.666666666668,8,4,8,8_1,8_0,8_0_0 -2545,1,32.0,5,389.0,1,111,2,0,21,2.0,0.0,0.0,616.443290949448,0.0,1274.1729021811086,17846.0,0,41,1,13516,201102545,,,290.0,160.0,1.0,0.0,3.0,2.0,3.0,1.6,2245.003478831818,1185.0,0.0,0.0,0.0,16288.0,0,1,3,65.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1890.6161931305567,0.10594061375829635,0.1160741768866992,10180.0,2,1,2_1,2_1_1,2_2_1,2_1_0 -2546,1,75.0,4,210.0,4,120,2,78,72,1.0,0.0,832.755791738064,1313.827587245684,389.29191186151957,0.0,16406.0,70,70,1,13517,201102546,,,420.0,,0.0,2.0,5.0,0.0,2.0,1.5,2262.0551616239636,0.0,963.0,0.0,0.0,12814.0,5,5,3,115.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2535.8752908452675,0.1545699921275916,0.1978988052790126,8542.666666666666,1,1,1_1,1_1_1,1_0_1,1_0_1 -2547,1,33.0,3,303.0,99,300,4,85,69,2.0,0.0,0.0,3001.475277196786,79.94387475727635,0.0,14774.0,71,50,1,13518,201102547,,,200.0,,1.0,0.0,4.0,4.0,6.0,2.7,879.9264008289123,0.0,2200.0,0.0,0.0,27784.0,6,1,3,60.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3081.4191519540623,0.20857040422052675,0.11090624647113671,10290.37037037037,2,1,2_1,2_1_1,2_0_1,2_0_0 -2548,2,53.0,3,0.0,2,111,6,0,54,5.0,317.29120182777643,0.0,695.7965415319821,156.41192887293198,0.0,17261.0,0,50,1,13519,201102548,,,230.0,,1.0,2.0,3.0,0.0,1.0,1.0,1334.3140537135098,0.0,510.0,0.0,0.0,16864.0,0,1,1,80.0,6,5.0,1,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1169.4996722326905,0.067753877077382,0.06934888948248877,16864.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -2549,2,54.0,2,0.0,1,111,2,54,54,9.0,79.32280045694411,0.0,1637.1683330164287,0.0,0.0,34872.0,41,41,1,1352,201102549,,,250.0,,2.0,2.0,4.0,0.0,2.0,1.5,2510.0458702145843,0.0,1200.0,0.0,0.0,55669.0,1,1,1,90.0,6,5.0,3,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1716.4911334733729,0.049222617959204316,0.030833877624411664,37112.666666666664,9,5,9,9_1,9_2,9_1_0 -2550,2,60.0,2,0.0,1,300,5,12,12,7.0,0.0,0.0,982.3009998098572,166.8393907977941,0.0,35914.0,33,71,1,13523,201102550,,,495.0,,5.0,0.0,4.0,3.0,5.0,3.0,1957.8888334829212,0.0,720.0,0.0,0.0,65740.0,1,1,1,104.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1149.1403906076514,0.03199700369236653,0.017480078956611675,21913.333333333332,7,4,7,7_1,7_0,7_1_0 -2551,2,62.0,3,0.0,8,111,2,0,77,4.0,0.0,0.0,1948.23031628955,0.0,973.2297796537989,19856.0,0,50,2,13524,201102551,,,265.0,273.0,0.0,2.0,2.0,0.0,1.0,1.0,2382.499279240177,0.0,1428.0,560.0,0.0,16244.0,0,5,3,50.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2921.460095943349,0.14713235777313402,0.17984856537449823,16244.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -2552,1,61.0,4,180.0,3,111,1,0,52,2.0,0.0,0.0,409.2920832541072,0.0,312.82385774586396,10779.0,0,41,2,13525,201102552,,,,,1.0,1.0,3.0,0.0,1.0,1.0,3023.7494942730873,0.0,300.0,180.0,0.0,10919.0,0,1,2,55.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,722.1159409999711,0.06699285100658421,0.06613388964190596,10919.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -2553,2,28.0,1,0.0,2,111,2,0,21,1.0,0.0,0.0,156.06159264542987,0.0,322.5754182736984,132364.0,0,41,1,13527,201102553,,,,,2.0,0.0,6.0,1.0,3.0,2.0,1915.7435106707899,300.0,0.0,0.0,0.0,18496.0,0,1,1,210.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,478.6370109191283,0.0036160663845088412,0.02587786607477986,9248.0,1,1,1_0,1_1_0,1_4_0,1_0_1 -2554,2,33.0,2,0.0,4,111,6,55,37,6.0,0.0,0.0,1637.1683330164287,130.34327406077665,0.0,49680.0,50,41,1,13529,201102554,,,250.0,,2.0,0.0,3.0,1.0,3.0,1.8,2114.2608493094726,0.0,1200.0,0.0,0.0,37112.0,1,1,2,90.0,7,5.0,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1767.5116070772053,0.03557793089929962,0.04762641752201997,20617.777777777777,6,3,6,6_1,6_2,6_0_1 -2555,2,80.0,2,0.0,5,400,5,0,71,7.0,0.0,41.637789586903196,788.5694137362465,312.82385774586396,0.0,14928.0,0,70,1,1353,201102555,,,233.0,,0.0,0.0,4.0,0.0,1.0,1.0,2077.736000646446,0.0,578.0,0.0,0.0,22300.0,0,5,5,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1143.0310610690135,0.07656960484117185,0.051256998254215855,22300.0,7,4,7,7_1,7_0,7_0_0 -2556,2,45.0,3,0.0,9,111,4,0,52,7.0,0.0,0.0,1203.318724767075,78.20596443646599,0.0,38959.0,0,50,2,13530,201102556,,,,627.0,1.0,0.0,3.0,1.0,2.0,1.5,2133.8930393984033,0.0,882.0,0.0,0.0,32590.0,0,1,3,44.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1281.5246892035411,0.032894188485421624,0.03932263544656463,21726.666666666668,6,3,6,6_0,6_2,6_0_0 -2558,2,50.0,2,0.0,2,300,2,0,48,7.0,1269.1648073111057,0.0,556.6372332255858,43.44775802025888,0.0,14206.0,0,50,1,13534,201102558,,,180.0,,1.0,0.0,6.0,0.0,1.0,1.0,3833.2589636982016,0.0,408.0,0.0,0.0,24070.0,0,1,1,136.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1869.2497985569503,0.13158171185111575,0.0776589031390507,24070.0,7,4,7,7_1,7_0,7_0_1 -2559,2,37.0,3,0.0,6,112,2,0,48,1.0,0.0,0.0,1043.6948122979734,52.13730962431066,0.0,23584.0,0,50,2,13535,201102559,,,,283.0,1.0,0.0,2.0,0.0,1.0,1.0,7957.797559082551,0.0,765.0,0.0,0.0,6393.0,0,7,3,40.0,9,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1095.832121922284,0.046465066228047996,0.1714112501051594,6393.0,1,1,1_0,1_0_0,1_1_0,1_0_0 -2561,2,32.0,2,0.0,1,300,5,43,45,8.0,0.0,971.5484236944079,723.0826804155894,145.98446694806984,0.0,19757.0,12,31,1,13537,201102561,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2152.4762831262187,0.0,530.0,0.0,0.0,41366.0,1,1,2,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1840.6155710580672,0.09316270542380256,0.044495855800852566,27577.333333333332,8,4,8,8_1,8_0,8_1_0 -2562,2,47.0,2,0.0,9,112,2,33,46,8.0,0.0,0.0,1896.3866524106966,0.0,0.0,35403.0,31,60,1,13538,201102562,,,204.0,,2.0,2.0,4.0,0.0,2.0,1.5,3652.75074803725,0.0,1390.0,0.0,0.0,40611.0,1,1,2,90.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1896.3866524106966,0.053565704951859916,0.04669637911922131,27074.0,8,4,8,8_1,8_0,8_0_0 -2563,2,57.0,5,0.0,7,112,5,34,34,8.0,0.0,693.9631597817199,1908.6654149083197,234.61789330939797,0.0,61193.0,20,20,1,1354,201102563,,,536.0,,2.0,1.0,7.0,3.0,5.0,3.0,959.8313769230454,0.0,1399.0,0.0,0.0,76996.0,1,1,1,160.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2837.2464679994373,0.046365539653219115,0.03684927097510828,25665.333333333332,8,4,8,8_1,8_0,8_0_0 -2564,2,57.0,4,0.0,2,111,5,0,68,8.0,0.0,1665.511583476128,1364.3069441803573,0.0,0.0,14319.0,0,70,1,13540,201102564,,,380.0,,3.0,1.0,5.0,2.0,3.0,2.0,2432.982968482459,0.0,1000.0,0.0,0.0,54360.0,0,1,1,100.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3029.8185276564855,0.21159428225829216,0.05573617600545411,27180.0,8,4,8,8_1,8_3,8_0_1 -2565,2,73.0,3,0.0,5,111,1,0,77,5.0,0.0,0.0,316.5192110498429,0.0,0.0,13405.0,0,71,2,13541,201102565,,,,,0.0,5.0,1.0,0.0,1.0,1.0,3070.836055595472,0.0,232.0,0.0,0.0,16951.0,0,5,3,36.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,316.5192110498429,0.023612026187977836,0.01867259813874361,16951.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -2566,2,48.0,2,0.0,7,111,2,37,37,9.0,0.0,0.0,549.815698504684,0.0,1152.2345426972656,41640.0,20,43,1,13543,201102566,,,348.0,,2.0,0.0,4.0,1.0,3.0,2.0,2599.909456831425,0.0,403.0,663.0,0.0,62610.0,1,1,1,96.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1702.0502412019496,0.04087536602310157,0.027184958332565876,31305.0,9,5,9,9_1,9_2,9_0_0 -2567,2,39.0,2,0.0,1,112,2,54,21,8.0,0.0,0.0,3683.6287492869646,0.0,0.0,62008.0,43,50,1,13544,201102567,,,,,2.0,0.0,7.0,2.0,4.0,2.1,2897.5877784871573,0.0,2700.0,0.0,0.0,53790.0,1,1,1,200.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3683.6287492869646,0.059405701672154636,0.06848166479432914,25614.285714285714,8,4,8,8_1,8_0,8_1_0 -2568,2,54.0,3,0.0,5,112,2,77,47,6.0,0.0,0.0,796.7552554013287,0.0,1753.5515136976485,28500.0,31,41,1,13545,201102568,,,,,1.0,0.0,5.0,0.0,2.0,1.5,2777.97413163123,0.0,584.0,1009.0,0.0,30760.0,7,1,1,100.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2550.3067690989774,0.08948444803856061,0.08290984294860135,20506.666666666668,6,3,6,6_1,6_2,6_0_0 -2569,2,34.0,3,0.0,3,111,1,52,63,4.0,0.0,0.0,477.50743046312505,0.0,0.0,38341.0,42,50,2,13546,201102569,,,,380.0,2.0,0.0,4.0,1.0,3.0,1.8,2593.1145391685855,0.0,350.0,0.0,0.0,29987.0,1,4,3,75.0,7,5.0,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,477.50743046312505,0.012454224732352444,0.0159238146684605,16659.444444444445,4,2,4_0,4_0_0,4_2_0,4_0_1 -2570,2,73.0,3,0.0,3,112,2,77,75,5.0,0.0,0.0,376.5487165937786,0.0,0.0,21441.0,71,50,1,13547,201102570,,,44.0,,0.0,5.0,6.0,0.0,2.0,1.5,2205.1480680441196,0.0,276.0,0.0,0.0,26179.0,5,5,1,142.0,9,0.0,3,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,376.5487165937786,0.01756208743033341,0.014383617273149416,17452.666666666668,5,3,5,5_1,5_0,5_0_1 -2571,2,82.0,1,0.0,4,111,2,75,74,9.0,3490.203220105541,0.0,1050.5163470188752,260.6865481215533,0.0,53641.0,41,20,1,13549,201102571,,,,,0.0,3.0,7.0,0.0,2.0,1.5,1552.5374432888352,0.0,770.0,0.0,0.0,48636.0,5,5,1,172.0,8,7.0,3,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4801.40611524597,0.08951000382628903,0.09872123766851652,32424.0,9,5,9,9_1,9_3,9_0_1 -2572,2,48.0,4,0.0,6,111,1,0,52,4.0,0.0,0.0,545.7227776721429,0.0,1216.5372245672486,15633.0,0,50,2,1355,201102572,700.0,700.0,,281.0,1.0,0.0,2.0,0.0,1.0,1.0,2608.529417730856,0.0,400.0,700.0,0.0,16675.0,0,1,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1762.2600022393915,0.11272692395825443,0.10568275875498599,16675.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -2573,2,46.0,2,0.0,6,112,2,34,38,9.0,1231.0898630917725,0.0,1050.5163470188752,0.0,0.0,56263.0,20,20,1,13550,201102573,,,210.0,,2.0,0.0,8.0,2.0,4.0,2.3,950.2226256573734,0.0,770.0,0.0,0.0,67680.0,1,1,2,140.0,6,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2281.6062101106477,0.040552516042703865,0.0337116756813039,29426.08695652174,9,5,9,9_1,9_0,9_0_0 -2574,2,61.0,2,0.0,5,221,5,78,78,6.0,0.0,388.6193694777632,945.4647123169876,166.8393907977941,0.0,26174.0,70,70,1,13553,201102574,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1744.5816958199246,0.0,693.0,0.0,0.0,30076.0,5,5,1,93.0,1,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1500.9234725925448,0.05734406176329735,0.04990435804603487,20050.666666666668,6,3,6,6_1,6_1,6_0_0 -2575,1,22.0,4,270.0,2,111,4,0,55,10.0,0.0,0.0,77.76549581828036,0.0,0.0,8666.0,0,41,2,13554,201102575,,,,150.0,1.0,0.0,1.0,0.0,1.0,1.0,4000.640583836787,0.0,57.0,0.0,0.0,39360.0,0,1,3,9.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,77.76549581828036,0.008973632104578855,0.0019757493856270418,39360.0,10,5,10,10_0,10_4,10_0_1 -2576,0,33.0,2,0.0,1,300,5,0,63,2.0,1173.9774467627728,1249.133687607096,341.0767360450893,111.22626053186274,0.0,15628.0,0,50,1,13556,201102576,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1334.4430062896663,0.0,250.0,0.0,0.0,11827.0,0,1,5,70.0,0,1.0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2875.4141309468205,0.18399117807440624,0.24312286555735355,11827.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -2577,2,74.0,2,0.0,5,111,4,77,75,8.0,0.0,0.0,2201.991407907097,0.0,0.0,34225.0,60,41,1,13557,201102577,,,309.0,,0.0,1.0,5.0,0.0,2.0,1.5,1582.197625491111,0.0,1614.0,0.0,0.0,40969.0,5,5,1,106.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2201.991407907097,0.06433868248085016,0.05374774604962525,27312.666666666668,8,4,8,8_1,8_2,8_0_0 -2578,2,40.0,2,0.0,7,221,2,65,62,8.0,1903.7472109666587,0.0,586.6519859975537,312.82385774586396,0.0,43332.0,41,42,1,13560,201102578,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2211.376917819598,0.0,430.0,0.0,0.0,45155.0,1,1,2,160.0,1,3.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2803.223054710076,0.06469175331648842,0.062080014499171214,25086.11111111111,8,4,8,8_1,8_1,8_0_0 -2579,2,63.0,2,0.0,2,111,2,77,77,7.0,0.0,0.0,987.0236207369535,0.0,4950.504366098829,35283.0,70,50,1,13561,201102579,,,420.0,,0.0,3.0,7.0,0.0,2.0,1.5,1600.0075868941524,788.0,423.0,2361.0,0.0,33131.0,5,5,1,180.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,5937.527986835783,0.16828296876217394,0.17921366656109936,22087.333333333332,7,4,7,7_1,7_4,7_0_1 -2580,2,81.0,2,0.0,3,111,2,78,75,9.0,0.0,0.0,413.3850040866482,0.0,2022.9276134232534,29805.0,50,41,1,13562,201102580,,,220.0,,0.0,2.0,5.0,0.0,2.0,1.5,1432.8824021515609,0.0,303.0,1164.0,0.0,47456.0,5,5,1,104.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2436.3126175099014,0.08174174190605273,0.0513383474694433,31637.333333333332,9,5,9,9_1,9_2,9_0_1 -2581,2,82.0,3,0.0,5,111,2,77,86,6.0,0.0,0.0,818.5841665082144,2970.088738264897,0.0,35811.0,41,70,1,13563,201102581,,,408.0,,0.0,2.0,5.0,0.0,2.0,1.5,2026.7894955602947,0.0,600.0,0.0,0.0,29034.0,5,5,1,104.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3788.6729047731114,0.10579634483184248,0.13049090393239346,19356.0,6,3,6,6_1,6_3,6_0_0 -2582,2,49.0,1,0.0,4,111,1,31,37,10.0,0.0,0.0,573.00891655575,0.0,0.0,177053.0,10,12,2,13564,201102582,,,,,2.0,0.0,6.0,3.0,5.0,2.8,2562.2124344438444,0.0,420.0,0.0,0.0,489152.0,1,1,1,130.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,573.00891655575,0.0032363694292429387,0.0011714332488791828,174697.14285714287,10,5,10,10_0,10_4,10_0_1 -2583,2,80.0,3,0.0,99,111,2,78,78,4.0,0.0,0.0,341.0767360450893,0.0,2127.2022326718748,17986.0,71,71,2,13565,201102583,,,,282.0,0.0,5.0,4.0,0.0,2.0,1.5,6747.28057295312,0.0,250.0,1224.0,0.0,24990.0,5,5,3,67.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2468.2789687169643,0.13723334642038054,0.09877066701548477,16660.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -2584,2,43.0,2,0.0,7,111,2,48,52,6.0,0.0,0.0,1146.0178331115,0.0,0.0,65063.0,50,50,1,13567,201102584,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.5,1328.6940654767077,0.0,840.0,0.0,0.0,49087.0,1,1,2,110.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1146.0178331115,0.01761397158310407,0.023346666797960765,19634.8,6,3,6,6_1,6_3,6_0_0 -2585,2,81.0,3,0.0,6,300,2,71,71,2.0,2221.038412794435,0.0,982.3009998098572,114.70208117348345,0.0,11053.0,71,50,1,13568,201102585,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2584.876695325935,0.0,720.0,0.0,0.0,16736.0,5,5,5,130.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3318.0414937777755,0.3001937477406836,0.1982577374389206,11157.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -2586,1,61.0,4,217.0,7,120,4,0,78,1.0,0.0,0.0,109.14455553442858,0.0,0.0,7565.0,0,70,2,13569,201102586,,,120.0,,0.0,0.0,1.0,0.0,1.0,1.0,3051.325042327208,0.0,80.0,0.0,0.0,9144.0,0,5,3,31.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,109.14455553442858,0.014427568477783023,0.011936193737360955,9144.0,1,1,1_1,1_0_1,1_0_1,1_0_0 -2587,0,69.0,1,0.0,4,111,1,0,74,10.0,0.0,0.0,45.02212915795179,0.0,0.0,72731.0,0,31,2,13570,201102587,,,,,0.0,3.0,4.0,0.0,1.0,1.0,7659.298340325333,0.0,33.0,0.0,0.0,74389.0,0,5,5,138.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,45.02212915795179,0.0006190225510160975,0.0006052256268796702,74389.0,10,5,10,10_0,10_4,10_0_1 -2588,2,62.0,3,0.0,6,111,2,55,75,9.0,0.0,0.0,699.8894623645233,0.0,1068.8148472983685,28409.0,50,50,1,13573,201102588,,,445.0,,1.0,1.0,3.0,0.0,2.0,1.5,947.5607076215881,0.0,513.0,615.0,0.0,45759.0,1,5,1,96.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1768.7043096628918,0.06225859092762476,0.0386525996997944,30506.0,9,5,9,9_1,9_2,9_0_0 -2589,2,47.0,1,0.0,6,111,4,54,48,9.0,0.0,0.0,1405.236152505768,156.41192887293198,0.0,34666.0,50,50,1,13574,201102589,,,,480.0,2.0,4.0,3.0,0.0,2.0,1.5,1965.9977637471832,0.0,1030.0,0.0,0.0,52941.0,1,1,3,45.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1561.6480813786998,0.04504840712452258,0.029497895419026837,35294.0,9,5,9,9_1,9_3,9_0_0 -2590,1,49.0,4,500.0,99,111,6,0,85,1.0,1427.810408224994,0.0,1972.7878412847965,782.0596443646599,0.0,13444.0,0,71,1,13575,201102590,,,,100.0,4.0,0.0,2.0,4.0,5.0,3.0,3249.3640742351104,0.0,1446.0,0.0,0.0,23220.0,0,6,3,50.0,10,8.0,2,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,4182.657893874451,0.31111707035662384,0.18013169224265507,7740.0,1,1,1_1,1_1_1,1_4_1,1_0_0 -2591,2,54.0,3,0.0,7,111,2,54,48,9.0,0.0,0.0,1096.9027831210071,0.0,1734.4345001687345,33774.0,50,71,1,13578,201102591,,,522.0,510.0,2.0,2.0,4.0,0.0,2.0,1.5,3598.1492972666188,0.0,804.0,998.0,0.0,43512.0,1,1,3,70.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2831.3372832897417,0.08383186129240663,0.06507026299158258,29008.0,8,4,8,8_1,8_3,8_0_0 -2592,0,83.0,3,0.0,4,120,2,0,77,2.0,0.0,0.0,271.49708189189107,0.0,1576.2846609749922,7531.0,0,71,2,1358,201102592,,,229.0,,0.0,3.0,6.0,0.0,1.0,1.0,8059.7678812551485,0.0,199.0,907.0,0.0,9651.0,0,6,5,100.0,0,3.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1847.7817428668832,0.24535675778341298,0.1914601329257987,9651.0,1,1,1_0,1_0_0,1_1_0,1_0_1 -2593,2,70.0,3,0.0,1,120,2,0,78,3.0,0.0,0.0,227.83925967811967,0.0,599.5790606795725,6417.0,0,71,1,13580,201102593,,,63.0,,0.0,0.0,4.0,0.0,1.0,1.0,5430.654491591048,0.0,167.0,345.0,0.0,13950.0,0,5,1,70.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,827.4183203576922,0.12894161140060656,0.05931314124427901,13950.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -2594,2,63.0,2,0.0,6,400,6,74,75,6.0,1256.4731592379947,0.0,682.1534720901786,135.55700502320772,0.0,29607.0,41,41,1,13581,201102594,,,,,0.0,2.0,6.0,1.0,3.0,2.0,1971.2877803164174,0.0,500.0,0.0,0.0,41305.0,5,5,1,110.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2074.183636351381,0.07005720391635023,0.05021628462296045,20652.5,6,3,6,6_1,6_0,6_0_0 -2595,2,53.0,2,0.0,8,111,2,43,34,9.0,0.0,0.0,818.5841665082144,0.0,1737.9103208103552,64068.0,20,10,1,13582,201102595,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2071.7991157642523,0.0,600.0,1000.0,0.0,77834.0,1,1,1,130.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2556.4944873185696,0.039902829607894263,0.03284547225272464,31133.6,9,5,9,9_1,9_4,9_0_0 -2596,2,51.0,2,0.0,1,212,5,68,56,6.0,0.0,555.170527825376,832.2272359500179,201.5975972140012,0.0,23365.0,50,50,1,13583,201102596,,,,,2.0,3.0,4.0,0.0,2.0,1.5,1018.6577008021993,0.0,610.0,0.0,0.0,31196.0,1,1,3,70.0,3,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1588.995360989395,0.06800750528522984,0.05093586873283097,20797.333333333332,6,3,6,6_1,6_0,6_1_0 -2597,2,61.0,1,0.0,8,111,2,0,75,9.0,0.0,0.0,360.1770332636143,0.0,1216.5372245672486,34476.0,0,70,1,13585,201102597,,,,,0.0,1.0,6.0,0.0,1.0,1.0,3333.3681849321124,0.0,264.0,700.0,0.0,32595.0,0,5,1,160.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1576.7142578308628,0.04573367727784148,0.04837288718609795,32595.0,9,5,9,9_1,9_4,9_0_0 -2598,2,31.0,3,0.0,5,112,4,52,47,4.0,0.0,0.0,1914.1226426850412,166.8393907977941,0.0,17802.0,41,31,1,13587,201102598,,,211.0,,2.0,0.0,5.0,3.0,5.0,2.4,1861.80469858426,0.0,1403.0,0.0,0.0,36518.0,1,1,2,89.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2080.9620334828355,0.11689484515688324,0.056984556478526634,15215.833333333334,4,2,4_0,4_1_0,4_0_0,4_0_0 -2599,2,38.0,1,0.0,6,221,2,55,21,7.0,1110.5192063972174,388.6193694777632,900.4425831590357,0.0,0.0,47274.0,60,50,1,13588,201102599,,,,,2.0,0.0,7.0,1.0,3.0,2.0,2607.977655916321,0.0,660.0,0.0,0.0,49227.0,1,1,2,140.0,1,3.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2399.5811590340163,0.050759004083301945,0.04874522434911768,24613.5,7,4,7,7_1,7_1,7_0_0 -2600,2,74.0,3,0.0,1,111,2,0,75,9.0,0.0,0.0,327.43366660328576,0.0,2189.7670042210475,25809.0,0,70,2,1359,201102600,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3953.658970084323,0.0,240.0,1260.0,0.0,35795.0,0,5,1,64.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2517.2006708243334,0.09753189471983933,0.07032268950480049,35795.0,9,5,9,9_0,9_4,9_1_0 -2601,2,36.0,2,0.0,1,112,2,52,22,10.0,0.0,0.0,682.1534720901786,0.0,2085.4923849724264,72061.0,20,20,1,13590,201102601,,,300.0,,2.0,0.0,5.0,3.0,5.0,2.4,2178.7801447115603,0.0,500.0,1200.0,0.0,98291.0,1,1,2,120.0,10,2.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2767.645857062605,0.03840698654005086,0.028157673205711664,40954.583333333336,10,5,10,10_1,10_1,10_1_0 -2602,0,54.0,2,0.0,5,111,2,53,55,10.0,0.0,485.77421184720396,650.2566360226244,0.0,1344.0642428070767,73843.0,41,60,1,13591,201102602,,,,,2.0,4.0,5.0,0.0,2.0,1.5,3412.58788243566,1250.0,0.0,0.0,0.0,70352.0,1,1,5,96.0,5,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2480.095090676905,0.033586055424033485,0.03525265935121823,46901.333333333336,10,5,10,10_1,10_2,10_0_0 -2603,2,65.0,2,0.0,7,112,2,75,75,8.0,0.0,0.0,622.1239665462429,0.0,1564.1192887293198,33286.0,50,50,1,13592,201102603,,,428.0,,0.0,2.0,4.0,0.0,2.0,1.5,2071.544392338251,0.0,456.0,900.0,0.0,41119.0,5,5,1,100.0,7,0.0,3,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2186.2432552755627,0.06568056405923099,0.05316868735318375,27412.666666666668,8,4,8,8_1,8_0,8_0_0 -2604,2,58.0,1,0.0,5,112,2,78,54,8.0,2554.1941747136,0.0,62.75811943229643,187.69431464751835,0.0,28351.0,70,41,1,13594,201102604,,,,,1.0,1.0,6.0,0.0,2.0,1.5,2088.9063349645876,0.0,46.0,0.0,0.0,41809.0,5,1,1,148.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2804.646608793415,0.09892584419573966,0.06708236525134337,27872.666666666668,8,4,8,8_1,8_0,8_0_0 -2605,2,30.0,2,0.0,1,111,1,37,46,10.0,0.0,0.0,382.0059443705,0.0,0.0,72096.0,41,10,2,13595,201102605,,,,1206.0,2.0,0.0,3.0,1.0,3.0,1.8,3249.6066928562777,0.0,280.0,0.0,0.0,67308.0,1,1,3,56.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,382.0059443705,0.005298573351787894,0.005675490942688833,37393.333333333336,9,5,9,9_0,9_4,9_1_0 -2606,2,80.0,1,0.0,1,111,2,74,75,9.0,0.0,0.0,1286.8099874763943,0.0,3345.1352913868964,35221.0,31,41,1,13598,201102606,,,350.0,,0.0,3.0,6.0,0.0,2.0,1.5,1980.7968383159625,1818.0,250.0,800.0,0.0,55141.0,5,5,1,100.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4631.945278863291,0.13151089630797794,0.08400183672518255,36760.666666666664,9,5,9,9_1,9_3,9_1_0 -2607,2,32.0,3,0.0,99,111,1,0,68,3.0,0.0,0.0,566.1873818348482,0.0,83.41969539889705,18042.0,0,50,2,13599,201102607,,,226.0,240.0,1.0,0.0,2.0,0.0,1.0,1.0,2600.840026763505,0.0,415.0,48.0,0.0,12618.0,0,1,3,45.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,649.6070772337453,0.03600526977240579,0.051482570711186025,12618.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -2608,2,54.0,1,0.0,6,300,4,52,46,10.0,0.0,0.0,3609.9561743012255,180.74267336427695,0.0,60795.0,50,50,1,136,201102608,,,160.0,,2.0,2.0,7.0,0.0,2.0,1.5,1265.839964693113,0.0,2646.0,0.0,0.0,88681.0,1,1,1,160.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3790.6988476655024,0.062352148164577716,0.042745332683049385,59120.666666666664,10,5,10,10_1,10_0,10_0_0 -2609,2,51.0,1,0.0,8,111,2,43,38,9.0,0.0,582.9290542166448,735.3614429132126,0.0,2671.168163085516,51753.0,33,10,1,1360,201102609,,,,,2.0,0.0,6.0,3.0,5.0,2.8,1441.5701987929017,0.0,539.0,1537.0,0.0,83122.0,1,1,2,150.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3989.458660215373,0.07708651981943797,0.04799521979999727,29686.428571428572,9,5,9,9_1,9_3,9_0_0 -2610,2,60.0,1,0.0,5,112,2,75,74,10.0,0.0,0.0,1500.737638598393,135.55700502320772,0.0,36544.0,42,41,1,13600,201102610,,,254.0,,0.0,2.0,5.0,0.0,2.0,1.5,2268.121238873093,0.0,1100.0,0.0,0.0,56063.0,5,5,1,170.0,9,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1636.2946436216007,0.04477601367178198,0.029186712156352688,37375.333333333336,9,5,9,9_1,9_0,9_0_0 -2611,2,54.0,3,0.0,2,111,2,0,75,7.0,0.0,0.0,409.2920832541072,0.0,1042.7461924862132,16236.0,0,50,1,13601,201102611,,,80.0,,0.0,1.0,5.0,0.0,1.0,1.0,2485.025373009403,0.0,300.0,600.0,0.0,21975.0,0,5,2,90.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1452.0382757403204,0.08943325177016016,0.0660768271099122,21975.0,7,4,7,7_1,7_2,7_0_1 -2612,2,55.0,4,0.0,1,112,2,0,75,4.0,1887.8826508752697,0.0,723.0826804155894,48.661488982689946,0.0,12740.0,0,50,1,13602,201102612,,,184.0,,0.0,2.0,4.0,0.0,1.0,1.0,3107.188679901919,0.0,530.0,0.0,0.0,15033.0,0,4,2,91.0,7,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2659.626820273549,0.2087619168189599,0.17691923237368118,15033.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -2613,2,53.0,1,0.0,4,111,1,56,53,2.0,0.0,0.0,1146.0178331115,0.0,0.0,42292.0,71,71,2,13603,201102613,,,240.0,298.0,2.0,2.0,5.0,1.0,3.0,2.0,3601.404084052841,0.0,840.0,0.0,0.0,22422.0,1,1,3,100.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1146.0178331115,0.027097745037158328,0.05111131179696281,11211.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -2614,2,59.0,3,0.0,1,400,4,0,78,4.0,0.0,0.0,1200.5901108787143,0.0,0.0,15283.0,0,70,2,13604,201102614,,,500.0,,0.0,2.0,3.0,0.0,1.0,1.0,2550.5236890653755,0.0,880.0,0.0,0.0,16180.0,0,7,3,54.0,0,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1200.5901108787143,0.07855722769604884,0.07420210821252869,16180.0,4,2,4_0,4_0_0,4_1_0,4_1_0 -2615,2,59.0,2,0.0,8,111,4,77,74,9.0,0.0,0.0,2198.147584209555,43.44775802025888,2059.1064199804414,46951.0,60,44,1,13605,201102615,,,359.0,850.0,0.0,3.0,4.0,0.0,2.0,1.5,3476.59760062797,1915.0,881.0,0.0,0.0,46885.0,4,5,3,90.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4300.701762210256,0.09159979046687516,0.09172873546358656,31256.666666666668,9,5,9,9_1,9_3,9_0_0 -2616,2,55.0,1,0.0,6,111,2,52,77,10.0,0.0,0.0,487.0575790723875,0.0,947.1611248416436,33575.0,60,60,1,13606,201102616,,,917.0,,1.0,1.0,5.0,0.0,2.0,1.5,3571.7857816304863,0.0,357.0,545.0,0.0,58213.0,1,5,1,110.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1434.2187039140313,0.042716863854475984,0.02463742985096166,38808.666666666664,10,5,10,10_1,10_3,10_0_0 -2617,2,55.0,3,0.0,9,111,4,75,43,8.0,0.0,555.170527825376,1500.737638598393,0.0,0.0,33495.0,33,33,1,13608,201102617,,,,,1.0,2.0,3.0,0.0,2.0,1.5,2628.065514678732,0.0,1100.0,0.0,0.0,41982.0,5,1,1,107.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2055.908166423769,0.06137955415506103,0.048971182088127514,27988.0,8,4,8,8_1,8_3,8_0_0 -2618,2,47.0,2,0.0,1,111,2,54,47,9.0,0.0,0.0,1637.1683330164287,0.0,2954.447545377604,45068.0,42,31,1,1361,201102618,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.5,3424.9560711608146,0.0,1200.0,1700.0,0.0,75579.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4591.615878394033,0.1018819534568659,0.06075253547141445,30231.6,9,5,9,9_1,9_4,9_1_0 -2620,2,42.0,1,0.0,9,112,2,85,22,10.0,0.0,0.0,3256.600675758513,0.0,3067.411716230277,116446.0,50,60,1,13612,201102620,,,456.0,,1.0,0.0,7.0,2.0,4.0,2.1,7691.75399301741,0.0,2387.0,1765.0,0.0,99128.0,6,1,2,220.0,9,2.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,6324.01239198879,0.05430854122931479,0.06379642877883938,47203.80952380952,10,5,10,10_1,10_1,10_0_0 -2621,1,18.0,2,170.0,7,111,4,0,84,1.0,0.0,0.0,54.57227776721429,0.0,0.0,8865.0,0,41,2,13613,201102621,,,,150.0,0.0,0.0,1.0,0.0,1.0,1.0,3627.503857645704,0.0,40.0,0.0,0.0,2056.0,0,3,3,18.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,54.57227776721429,0.006155925298050117,0.026542936657205394,2056.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -2622,1,46.0,4,361.0,3,111,1,85,55,1.0,0.0,0.0,538.9012429512411,0.0,0.0,14674.0,60,71,2,13614,201102622,,,,,1.0,4.0,4.0,1.0,3.0,1.8,3325.960625130243,0.0,395.0,0.0,0.0,14272.0,6,1,3,75.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,538.9012429512411,0.036724904112800945,0.03775933596911723,7928.888888888889,1,1,1_1,1_0_1,1_3_1,1_0_1 -2623,2,55.0,2,0.0,4,111,1,75,31,9.0,0.0,0.0,517.0723318443554,0.0,106.01252956943166,62739.0,20,10,8,13615,201102623,,,,,1.0,0.0,4.0,0.0,2.0,1.5,3511.8307746466185,0.0,379.0,61.0,0.0,51788.0,5,1,2,96.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,623.084861413787,0.00993138018479394,0.012031452487328861,34525.333333333336,9,5,9,9_0,9_4,9_0_1 -2624,2,63.0,2,0.0,9,221,2,75,75,6.0,0.0,0.0,204.6460416270536,0.0,0.0,33730.0,41,50,1,13616,201102624,,,580.0,,0.0,3.0,6.0,0.0,2.0,1.5,2953.420355267917,0.0,150.0,0.0,0.0,30467.0,5,5,2,130.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,204.6460416270536,0.006067181785563403,0.006716973828307795,20311.333333333332,6,3,6,6_1,6_1,6_0_0 -2625,1,63.0,3,146.0,1,111,5,0,78,3.0,0.0,666.2046333904511,0.0,140.77073598563877,0.0,18164.0,0,71,1,13617,201102625,,,,,0.0,3.0,2.0,0.0,1.0,1.0,2603.5473580469697,0.0,0.0,0.0,0.0,14482.0,0,5,3,50.0,7,5.0,1,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,806.9753693760899,0.04442718395596179,0.055722646690794776,14482.0,3,2,3_1,3_1_1,3_2_1,3_1_0 -2626,0,25.0,3,0.0,1,112,4,0,22,4.0,0.0,0.0,914.0856526008394,0.0,0.0,25815.0,0,60,2,13618,201102626,,,329.0,,1.0,0.0,3.0,0.0,1.0,1.0,3163.1192738393165,0.0,670.0,0.0,0.0,15081.0,0,1,5,60.0,8,1.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,914.0856526008394,0.035409089777293797,0.06061174011012793,15081.0,4,2,4_0,4_0_0,4_1_0,4_1_0 -2627,0,44.0,1,0.0,1,111,1,85,33,4.0,0.0,0.0,982.3009998098572,0.0,52.13730962431066,86881.0,20,10,2,13619,201102627,,,144.0,,1.0,0.0,5.0,3.0,5.0,2.6,3375.036513694094,0.0,720.0,30.0,0.0,41944.0,7,1,5,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1034.4383094341679,0.011906381250609084,0.02466236671357448,16132.307692307691,4,2,4_0,4_0_0,4_4_0,4_1_0 -2628,1,59.0,1,147.0,9,111,4,0,37,10.0,0.0,0.0,481.5135370991294,0.0,842.9970930885985,46292.0,0,20,1,1362,201102628,,,,825.0,1.0,2.0,5.0,0.0,1.0,1.0,1585.0110136146216,784.0,54.0,0.0,0.0,65795.0,0,1,3,110.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1324.5106301877279,0.028612084813525618,0.020130870585724263,65795.0,10,5,10,10_1,10_3,10_0_0 -2630,2,78.0,2,0.0,4,111,2,77,72,8.0,0.0,0.0,492.514806849109,0.0,1922.128814816253,30658.0,50,60,1,13623,201102630,,,390.0,,0.0,2.0,4.0,0.0,2.0,1.5,3467.2311006678024,0.0,361.0,1106.0,0.0,40619.0,5,5,1,115.0,8,6.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2414.643621665362,0.07876063740835547,0.05944616119710879,27079.333333333332,8,4,8,8_1,8_2,8_0_1 -2631,2,47.0,1,0.0,6,112,2,0,31,10.0,0.0,0.0,2128.318832921357,0.0,0.0,37810.0,0,10,1,13624,201102631,,,200.0,,1.0,0.0,6.0,0.0,1.0,1.0,1889.3361166877037,0.0,1560.0,0.0,0.0,80392.0,0,1,1,150.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2128.318832921357,0.05628983953772434,0.026474261530019867,80392.0,10,5,10,10_1,10_0,10_0_0 -2632,2,55.0,3,0.0,1,111,2,43,46,4.0,0.0,0.0,982.3009998098572,0.0,1268.6745341915594,39344.0,41,31,1,13625,201102632,,,,,2.0,0.0,5.0,2.0,4.0,2.3,1593.9353065341347,0.0,720.0,730.0,0.0,33779.0,1,1,1,106.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2250.9755340014167,0.05721267624037761,0.0666383117913916,14686.521739130436,3,2,3_0,3_1_0,3_2_0,3_1_0 -2633,2,74.0,3,0.0,5,112,2,0,77,4.0,0.0,0.0,1944.137395457009,0.0,0.0,17685.0,0,70,1,13626,201102633,,,154.0,,0.0,1.0,4.0,0.0,1.0,1.0,1256.9563394399574,0.0,1425.0,0.0,0.0,15933.0,0,5,1,75.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1944.137395457009,0.10993143316126712,0.12201954405680092,15933.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -2634,2,49.0,3,0.0,4,300,4,68,64,4.0,0.0,0.0,2633.1124022680897,156.41192887293198,0.0,27727.0,50,71,1,13627,201102634,,,169.0,,2.0,2.0,4.0,1.0,3.0,2.0,2086.0322366006653,0.0,1930.0,0.0,0.0,32376.0,1,1,2,81.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2789.524331141022,0.10060678512428398,0.08616025238266067,16188.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -2635,0,84.0,3,0.0,6,111,1,0,86,7.0,0.0,0.0,109.14455553442858,0.0,0.0,23500.0,0,60,2,13629,201102635,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2883.1690131701075,0.0,80.0,0.0,0.0,23904.0,0,5,5,72.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,109.14455553442858,0.004644449171677812,0.004565953628448317,23904.0,7,4,7,7_0,7_3,7_0_0 -2636,2,65.0,4,0.0,1,111,2,0,75,5.0,0.0,0.0,354.7198054868929,0.0,782.0596443646599,12264.0,0,50,2,13630,201102636,,,80.0,216.0,0.0,2.0,2.0,0.0,1.0,1.0,1990.2975059052935,0.0,260.0,450.0,0.0,16745.0,0,5,3,60.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1136.7794498515527,0.0926923882788285,0.06788769482541372,16745.0,4,2,4_0,4_0_0,4_2_0,4_1_0 -2637,0,48.0,1,0.0,2,111,1,0,52,7.0,0.0,0.0,0.0,0.0,0.0,84969.0,0,70,1,13631,201102637,,,,,4.0,0.0,7.0,4.0,5.0,3.0,1418.072403844022,0.0,0.0,0.0,0.0,68431.0,0,1,5,120.0,8,7.0,2,4,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,22810.333333333332,7,4,7,7_1,7_3,7_0_1 -2638,2,53.0,3,0.0,6,400,4,62,63,5.0,0.0,0.0,196.46019996197145,0.0,0.0,26202.0,71,50,1,13632,201102638,,,,,3.0,1.0,4.0,1.0,3.0,2.0,1546.0340303921555,0.0,144.0,0.0,0.0,34820.0,4,1,3,70.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,196.46019996197145,0.007497908555147373,0.005642165421079019,17410.0,5,3,5,5_1,5_0,5_0_0 -2639,2,26.0,3,0.0,1,111,4,0,55,6.0,0.0,0.0,409.2920832541072,0.0,0.0,21523.0,0,31,2,13633,201102639,,,,490.0,1.0,0.0,1.0,0.0,1.0,1.0,3758.641340468502,0.0,300.0,0.0,0.0,20787.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,409.2920832541072,0.019016497851326822,0.019689810133935018,20787.0,6,3,6,6_0,6_4,6_1_0 -2640,2,43.0,3,0.0,6,111,2,46,63,5.0,0.0,0.0,998.7941929307511,0.0,2064.48267695167,31742.0,43,43,1,13634,201102640,,,,,2.0,0.0,4.0,2.0,4.0,2.5,2834.2262084181607,1920.0,0.0,0.0,0.0,46310.0,1,1,1,124.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3063.276869882421,0.09650547759695108,0.06614720081801816,18524.0,5,3,5,5_1,5_2,5_0_0 -2641,2,63.0,4,0.0,4,111,1,56,21,10.0,0.0,0.0,818.5841665082144,0.0,0.0,65774.0,50,50,2,13635,201102641,,,,,2.0,3.0,2.0,0.0,2.0,1.5,3192.4657029935474,0.0,600.0,0.0,0.0,75550.0,1,1,2,61.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,818.5841665082144,0.01244540649053143,0.010834998894880403,50366.666666666664,10,5,10,10_0,10_4,10_0_1 -2642,2,62.0,2,0.0,1,111,2,0,74,9.0,0.0,0.0,622.1239665462429,0.0,2634.6720463484985,29443.0,0,20,1,13637,201102642,,,80.0,,0.0,0.0,6.0,0.0,1.0,1.0,1918.1571466778178,0.0,456.0,1516.0,0.0,29352.0,0,5,1,140.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3256.7960128947416,0.11061359280286458,0.11095652810352759,29352.0,9,5,9,9_1,9_2,9_1_0 -2643,2,34.0,2,0.0,1,120,2,21,52,2.0,1189.8420068541616,0.0,998.6726831400215,180.74267336427695,0.0,58013.0,50,31,1,13638,201102643,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2196.370784083494,0.0,732.0,0.0,0.0,25173.0,1,1,1,140.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2369.2573633584598,0.0408401110674928,0.09411899111581694,10488.75,2,1,2_0,2_1_0,2_1_0,2_1_0 -2644,2,56.0,1,0.0,7,111,2,0,43,10.0,0.0,0.0,1309.734666413143,0.0,3277.69886504833,78843.0,0,20,1,13639,201102644,,,,,2.0,1.0,9.0,3.0,4.0,2.5,992.7182436292314,0.0,960.0,1886.0,0.0,100720.0,0,1,1,180.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4587.433531461473,0.058184411190105305,0.04554640122578905,40288.0,10,5,10,10_1,10_3,10_0_0 -2645,2,73.0,4,0.0,2,111,2,0,77,2.0,0.0,0.0,2728.6138883607146,0.0,0.0,9012.0,0,71,1,13642,201102645,,,220.0,,0.0,0.0,5.0,0.0,1.0,1.0,3082.748617126272,0.0,2000.0,0.0,0.0,10580.0,0,5,1,110.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2728.6138883607146,0.3027756201021654,0.25790301402275184,10580.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -2646,2,53.0,2,0.0,3,111,2,46,64,5.0,2538.3296146222115,0.0,709.4396109737858,222.45252106372547,0.0,56458.0,31,50,1,13645,201102646,,,340.0,,2.0,3.0,4.0,1.0,3.0,2.0,2842.098983276836,0.0,520.0,0.0,0.0,37090.0,1,1,2,85.0,6,5.0,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3470.2217466597226,0.061465545124866676,0.0935621932235029,18545.0,5,3,5,5_1,5_2,5_0_1 -2647,2,28.0,4,0.0,4,211,2,69,62,2.0,0.0,0.0,818.5841665082144,0.0,3128.2385774586396,25698.0,50,60,1,13646,201102647,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2182.694778637704,0.0,600.0,1800.0,0.0,23570.0,1,1,3,110.0,4,3.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3946.822743966854,0.15358482154124267,0.16745111344789368,11223.809523809523,2,1,2_0,2_1_0,2_1_0,2_0_1 -2648,1,64.0,2,224.0,5,221,1,85,78,2.0,0.0,0.0,845.8703053918215,60.82686122836243,0.0,19547.0,71,71,8,13649,201102648,,,700.0,106.0,2.0,6.0,4.0,2.0,4.0,2.5,3099.846608224245,0.0,620.0,0.0,0.0,29199.0,6,5,3,75.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,906.6971666201839,0.04638548967208185,0.031052336265631832,11679.6,2,1,2_1,2_0_1,2_1_1,2_0_0 -2649,2,51.0,4,0.0,99,112,2,0,52,2.0,0.0,0.0,0.0,0.0,0.0,49876.0,0,70,2,1365,201102649,,,,536.0,2.0,0.0,4.0,2.0,3.0,2.0,1799.7440030129137,0.0,0.0,0.0,0.0,22922.0,0,1,3,72.0,9,3.0,2,7,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,11461.0,2,1,2_0,2_0_0,2_1_0,2_0_0 -2650,2,78.0,4,0.0,4,111,1,77,78,3.0,0.0,0.0,573.00891655575,151.1981979105009,0.0,10396.0,70,50,2,13650,201102650,,,,355.0,0.0,8.0,5.0,0.0,2.0,1.5,1959.4826764640427,0.0,420.0,0.0,0.0,20070.0,5,5,3,90.0,7,5.0,3,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,724.2071144662509,0.06966209258043968,0.03608406150803443,13380.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -2651,1,56.0,3,259.0,2,111,2,0,43,9.0,0.0,69.396315978172,3478.982707659911,0.0,1186.9927491134727,20416.0,0,33,1,13651,201102651,,,,388.0,1.0,0.0,3.0,0.0,1.0,1.0,2164.3620301115234,0.0,2550.0,683.0,0.0,29858.0,0,1,3,90.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,4735.371772751556,0.23194415031110677,0.15859641545822079,29858.0,9,5,9,9_1,9_3,9_0_1 -2652,1,40.0,2,213.0,3,111,2,85,62,2.0,2379.684013708323,0.0,777.6549581828036,312.82385774586396,0.0,25120.0,33,50,1,13653,201102652,,,,,1.0,0.0,4.0,3.0,5.0,2.4,1507.7733307205203,0.0,570.0,0.0,0.0,22910.0,6,1,2,100.0,6,5.0,4,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,3470.162829636991,0.1381434247466955,0.15146935092260982,9545.833333333334,1,1,1_1,1_1_1,1_2_1,1_0_1 -2653,2,47.0,2,0.0,99,112,2,38,37,10.0,0.0,0.0,1268.8054580877322,3481.0343725831417,0.0,97681.0,10,10,1,13654,201102653,,,626.0,,2.0,0.0,4.0,2.0,4.0,2.1,3199.521124677405,0.0,930.0,0.0,0.0,95357.0,1,1,1,120.0,9,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4749.839830670874,0.04862603608348475,0.0498111290274534,45408.09523809524,10,5,10,10_1,10_1,10_0_0 -2654,2,84.0,3,0.0,4,112,2,0,86,3.0,3252.2348187347084,0.0,255.1253985617268,238.09371395101866,0.0,20632.0,0,70,1,13656,201102654,,,280.0,,0.0,3.0,5.0,0.0,1.0,1.0,1912.9989736500013,0.0,187.0,0.0,0.0,13503.0,0,5,1,112.0,8,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3745.453931247454,0.18153615409303286,0.2773793920793493,13503.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -2655,1,33.0,2,341.0,3,111,1,85,65,3.0,0.0,0.0,597.5664415509965,0.0,1216.5372245672486,13043.0,71,50,2,13657,201102655,700.0,700.0,,,1.0,0.0,4.0,4.0,6.0,2.7,1977.833658859956,0.0,438.0,700.0,0.0,34070.0,6,1,3,70.0,5,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1814.1036661182452,0.1390863809030319,0.05324636531019211,12618.518518518518,2,1,2_1,2_0_1,2_2_1,2_0_1 -2656,1,40.0,4,309.0,3,111,2,85,53,2.0,0.0,0.0,246.93955689664466,0.0,992.3467931827129,15324.0,71,71,2,13658,201102656,,,,85.0,1.0,0.0,3.0,1.0,3.0,1.8,3651.5299832381756,0.0,181.0,571.0,0.0,17748.0,6,4,3,74.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1239.2863500793576,0.08087224941786463,0.06982681711062416,9860.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -2657,2,33.0,2,0.0,6,112,4,56,48,7.0,0.0,0.0,1473.4514997147858,121.65372245672486,0.0,63671.0,31,31,1,13659,201102657,,,360.0,,2.0,0.0,5.0,1.0,3.0,1.8,2224.4798109565627,0.0,1080.0,0.0,0.0,42160.0,1,1,2,110.0,7,1.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1595.1052221715106,0.025052303594595822,0.03783456409325215,23422.222222222223,7,4,7,7_1,7_1,7_0_0 -2658,2,50.0,3,0.0,8,112,5,67,68,7.0,0.0,277.585263912688,818.5841665082144,187.69431464751835,0.0,33243.0,71,71,1,1366,201102658,,,,,2.0,1.0,4.0,0.0,2.0,1.5,2793.1934658410682,0.0,600.0,0.0,0.0,34980.0,1,1,2,100.0,7,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1283.8637450684205,0.03862057410788498,0.036702794312990866,23320.0,7,4,7,7_1,7_1,7_0_0 -2659,2,69.0,3,0.0,4,112,2,71,71,2.0,1348.4876077680499,0.0,873.1564442754286,199.85968689319085,0.0,19867.0,71,70,1,13660,201102659,,,,,0.0,5.0,5.0,0.0,2.0,1.5,1932.586090094847,0.0,640.0,0.0,0.0,18475.0,5,5,1,100.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2421.5037389366694,0.12188572703159356,0.1310692145567886,12316.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_1 -2660,2,45.0,4,0.0,3,111,2,0,63,1.0,0.0,0.0,93.63695558725793,0.0,193.54525096421906,11527.0,0,50,2,13662,201102660,,,,400.0,1.0,1.0,1.0,0.0,1.0,1.0,3045.60274653985,180.0,0.0,0.0,0.0,7017.0,0,4,3,25.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,287.182206551477,0.024913872347660015,0.040926636247894686,7017.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -2661,2,63.0,3,0.0,1,111,1,0,77,6.0,0.0,0.0,1910.0297218525002,52.13730962431066,0.0,14948.0,0,60,1,13663,201102661,,,,,0.0,1.0,3.0,0.0,1.0,1.0,1865.4442083026302,0.0,1400.0,0.0,0.0,19963.0,0,5,5,71.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1962.1670314768107,0.13126619156253752,0.09829018842242201,19963.0,6,3,6,6_1,6_3,6_1_0 -2662,2,53.0,1,0.0,2,112,2,0,43,9.0,2538.3296146222115,388.6193694777632,851.3275331685429,208.54923849724264,0.0,25920.0,0,33,1,13665,201102662,,,,,1.0,2.0,6.0,0.0,1.0,1.0,2596.00713670857,0.0,624.0,0.0,0.0,31979.0,0,1,1,105.0,8,0.0,1,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3986.8257557657603,0.1538127220588642,0.12467011963368961,31979.0,9,5,9,9_1,9_0,9_0_1 -2663,2,59.0,3,0.0,1,112,6,11,63,6.0,1269.1648073111057,69.396315978172,859.5133748336251,93.84715732375918,0.0,17574.0,71,70,1,13667,201102663,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2542.130555760747,0.0,630.0,0.0,0.0,29700.0,1,1,1,120.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2291.921655446662,0.13041548056484933,0.07716907930796842,19800.0,6,3,6,6_1,6_0,6_1_0 -2664,2,57.0,3,0.0,6,112,4,0,65,7.0,0.0,0.0,1637.1683330164287,39.971937378638174,0.0,14420.0,0,50,1,13668,201102664,,,324.0,,1.0,2.0,5.0,0.0,1.0,1.0,1928.854130404608,0.0,1200.0,0.0,0.0,24452.0,0,1,2,100.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1677.1402703950669,0.11630653747538605,0.06858908352670812,24452.0,7,4,7,7_1,7_2,7_0_0 -2665,0,25.0,3,0.0,1,400,5,52,63,6.0,285.5620816449988,782.7904442337801,3401.2172118416306,166.8393907977941,0.0,53073.0,50,50,1,1367,201102665,,,306.0,,2.0,0.0,6.0,2.0,4.0,2.1,2309.2565340092833,0.0,2493.0,0.0,0.0,43211.0,1,1,5,150.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4636.409128518204,0.08735909273111006,0.10729696439606128,20576.666666666664,6,3,6,6_1,6_0,6_1_0 -2666,2,79.0,4,0.0,1,112,2,0,71,2.0,3172.912018277764,0.0,409.2920832541072,364.9611673701746,0.0,12692.0,0,70,1,13670,201102666,,,350.0,,0.0,2.0,5.0,0.0,1.0,1.0,2433.9431851482036,0.0,300.0,0.0,0.0,10040.0,0,5,5,150.0,6,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3947.165268902046,0.3109963180666598,0.39314395108586114,10040.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -2667,2,32.0,3,0.0,4,111,1,52,47,7.0,0.0,0.0,249.69854823268778,0.0,1141.7683847296453,35971.0,42,42,8,13671,201102667,360.0,360.0,,,2.0,0.0,4.0,2.0,4.0,2.1,3059.3057675340974,480.0,0.0,360.0,0.0,45789.0,1,1,3,80.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1391.466932962333,0.0386830205710804,0.0303886726716533,21804.285714285714,7,4,7,7_0,7_2,7_0_1 -2668,1,72.0,3,150.0,7,111,1,0,86,5.0,0.0,0.0,477.50743046312505,0.0,0.0,14184.0,0,71,2,13672,201102668,,,,369.0,0.0,5.0,3.0,0.0,1.0,1.0,6065.8707076853,0.0,350.0,0.0,0.0,18500.0,0,5,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,477.50743046312505,0.03366521647371158,0.025811212457466218,18500.0,5,3,5,5_0,5_4,5_0_0 -2669,2,39.0,2,0.0,8,112,2,0,34,8.0,0.0,97.1548423694408,1222.2634861510596,0.0,5005.379851879486,62896.0,0,31,1,13674,201102669,,,360.0,,1.0,0.0,6.0,2.0,3.0,1.8,2593.745385046788,776.0,600.0,2400.0,0.0,49798.0,0,1,2,179.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,6324.798180399986,0.10055962510175506,0.12700908029238095,27665.555555555555,8,4,8,8_1,8_2,8_0_0 -2670,2,51.0,4,0.0,2,111,2,0,54,1.0,0.0,69.396315978172,769.4691165177215,0.0,2544.30070966636,36038.0,0,10,1,13676,201102670,,,310.0,,1.0,1.0,7.0,2.0,3.0,2.0,1166.0094730009791,0.0,564.0,1464.0,0.0,8956.0,0,1,1,150.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3383.1661421622534,0.09387774410794865,0.3777541471820292,4478.0,1,1,1_0,1_1_0,1_3_0,1_0_1 -2671,2,26.0,3,0.0,10,300,4,46,63,7.0,0.0,0.0,1323.3777358549464,48.661488982689946,0.0,14399.0,31,50,1,13677,201102671,,,443.0,,2.0,0.0,3.0,0.0,2.0,1.5,1858.4690907628312,0.0,970.0,0.0,0.0,34271.0,1,1,2,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1372.0392248376363,0.09528711888586959,0.040034992408673115,22847.333333333332,7,4,7,7_1,7_0,7_0_0 -2672,2,45.0,3,0.0,1,111,4,54,62,9.0,0.0,0.0,2373.8940828738214,83.41969539889705,0.0,88579.0,50,50,1,13678,201102672,,,668.0,,2.0,0.0,4.0,2.0,4.0,2.3,858.8116295013313,0.0,1740.0,0.0,0.0,84626.0,1,1,1,130.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2457.3137782727185,0.0277414937882875,0.029037338149891505,36793.913043478264,9,5,9,9_1,9_4,9_1_0 -2673,2,44.0,2,0.0,6,112,2,54,47,6.0,0.0,0.0,2043.7318023821751,0.0,0.0,40574.0,31,20,1,1368,201102673,,,1595.0,,2.0,0.0,9.0,2.0,4.0,2.1,1453.5592552622118,0.0,1498.0,0.0,0.0,44855.0,1,1,2,165.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2043.7318023821751,0.050370478690347886,0.04556307663319976,21359.52380952381,6,3,6,6_1,6_1,6_0_0 -2674,2,48.0,4,0.0,1,221,2,0,65,2.0,0.0,0.0,620.7596596020626,0.0,1249.5575206626454,13276.0,0,60,1,13683,201102674,,,337.0,,1.0,0.0,4.0,1.0,2.0,1.5,2070.8884799677403,0.0,455.0,719.0,0.0,17151.0,0,1,1,62.0,1,3.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1870.317180264708,0.14087957067375023,0.10905003674798601,11434.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -2675,2,78.0,2,0.0,2,111,1,0,77,9.0,0.0,0.0,341.0767360450893,0.0,0.0,38123.0,0,70,2,13685,201102675,,,,,0.0,2.0,2.0,0.0,1.0,1.0,8422.017197274092,0.0,250.0,0.0,0.0,30765.0,0,5,1,68.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,341.0767360450893,0.008946744381215784,0.01108651831773409,30765.0,9,5,9,9_0,9_4,9_0_1 -2676,2,78.0,2,0.0,4,111,1,0,72,9.0,0.0,0.0,687.749762447849,0.0,913.9636851088122,37274.0,0,70,2,13686,201102676,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3076.27977741671,850.0,180.0,0.0,0.0,35460.0,0,5,1,79.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1601.7134475566613,0.042971332498703156,0.04516958396944899,35460.0,9,5,9,9_0,9_4,9_0_1 -2677,1,67.0,3,198.0,1,400,2,0,71,3.0,0.0,0.0,613.9381248811608,52.13730962431066,0.0,11176.0,0,70,1,13687,201102677,,,,72.0,0.0,3.0,2.0,0.0,1.0,1.0,2508.7946168306235,0.0,450.0,0.0,0.0,12836.0,0,5,3,36.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,666.0754345054714,0.059598732507647766,0.051891199322645014,12836.0,3,2,3_1,3_1_1,3_0_1,3_1_0 -2678,1,46.0,4,443.0,4,111,1,85,56,2.0,0.0,0.0,1637.1683330164287,0.0,1737.9103208103552,15778.0,60,71,2,13689,201102678,,,,,1.0,0.0,4.0,5.0,7.0,3.4,2288.3448006220246,0.0,1200.0,1000.0,0.0,34017.0,6,4,3,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,3375.078653826784,0.213910422983064,0.09921741052493706,10005.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -2679,1,54.0,4,132.0,99,112,3,0,56,2.0,0.0,0.0,0.0,201.5975972140012,0.0,10052.0,0,50,8,1369,201102679,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2030.3922539092098,0.0,0.0,0.0,0.0,10784.0,0,4,3,27.0,8,0.0,1,2,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,1,201.5975972140012,0.020055471270792,0.018694139207529787,10784.0,2,1,2_1,2_0_1,2_0_1,2_0_0 -2680,1,45.0,5,279.0,2,112,2,0,54,3.0,1903.7472109666587,0.0,532.0797082303393,104.27461924862132,0.0,27027.0,0,71,1,13691,201102680,,,210.0,,1.0,0.0,3.0,2.0,3.0,1.8,2384.5325408513113,0.0,390.0,0.0,0.0,22306.0,0,1,2,75.0,10,0.0,2,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,2540.1015384456196,0.09398385090633883,0.11387525950173136,12392.222222222223,2,1,2_1,2_1_1,2_0_1,2_0_1 -2681,2,86.0,2,0.0,7,111,4,0,77,9.0,0.0,0.0,1435.4482937966375,0.0,601.0655293833247,44302.0,0,70,2,13692,201102681,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3233.771205500069,559.0,839.0,0.0,0.0,31761.0,0,5,1,90.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2036.5138231799622,0.045968891318224056,0.06411995287238947,31761.0,9,5,9,9_0,9_3,9_0_0 -2682,1,25.0,3,128.0,4,111,2,0,63,5.0,0.0,0.0,343.80534993345003,0.0,1564.1192887293198,32967.0,0,50,2,13695,201102682,,,,100.0,1.0,0.0,3.0,0.0,1.0,1.0,3437.6026964393163,0.0,252.0,900.0,0.0,16761.0,0,4,3,56.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1907.92463866277,0.05787377191320927,0.11383119376306723,16761.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -2683,2,60.0,1,0.0,8,212,2,72,72,3.0,1299.3074714847446,0.0,1350.6638747385537,107.75043989024202,0.0,70051.0,60,50,1,13696,201102683,,,330.0,,2.0,1.0,8.0,3.0,5.0,3.0,1721.471141446312,0.0,990.0,0.0,0.0,43858.0,6,5,2,120.0,2,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2757.7217861135405,0.03936734359414627,0.06287842095201653,14619.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -2684,2,33.0,1,0.0,2,111,1,38,38,9.0,0.0,0.0,491.1504999049286,0.0,60.82686122836243,51631.0,10,12,2,13697,201102684,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2877.8578914956593,0.0,360.0,35.0,0.0,63987.0,1,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,551.9773611332911,0.01069081290568246,0.008626398504903982,35548.333333333336,9,5,9,9_0,9_4,9_0_1 -2685,1,30.0,3,153.0,2,111,2,0,84,7.0,0.0,0.0,191.00297218525,0.0,901.9754565005744,15275.0,0,20,2,137,201102685,,,,172.0,0.0,0.0,2.0,0.0,1.0,1.0,3117.082658360117,0.0,140.0,519.0,0.0,23558.0,0,3,3,32.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1092.9784286858244,0.07155341595324546,0.046395213035309635,23558.0,7,4,7,7_0,7_3,7_0_1 -2686,2,24.0,2,0.0,6,111,2,55,62,3.0,0.0,0.0,694.4322345878019,0.0,0.0,26051.0,50,50,2,13701,201102686,,,,433.0,2.0,0.0,3.0,0.0,2.0,1.5,3343.300346700141,0.0,509.0,0.0,0.0,20826.0,1,1,3,69.0,8,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,694.4322345878019,0.026656644066938,0.033344484518765094,13884.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -2687,2,55.0,3,0.0,6,112,5,63,45,5.0,0.0,1110.341055650752,45.25786186717466,0.0,93.54687129937254,23166.0,70,20,1,13703,201102687,,,600.0,,2.0,1.0,6.0,0.0,2.0,1.5,1292.567533547429,87.0,0.0,0.0,0.0,27400.0,1,1,2,90.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1249.145788817299,0.05392151380546055,0.04558926236559486,18266.666666666668,5,3,5,5_1,5_0,5_0_0 -2688,1,51.0,4,120.0,9,112,5,56,13,2.0,713.905204112497,693.9631597817199,900.4425831590357,199.85968689319085,0.0,33276.0,50,50,1,13705,201102688,,,555.0,,2.0,2.0,5.0,1.0,3.0,1.8,1400.1282752529994,0.0,660.0,0.0,0.0,22048.0,1,1,2,120.0,6,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2508.1706339464436,0.07537476361180562,0.11375955342645336,12248.888888888889,2,1,2_1,2_1_1,2_0_1,2_0_0 -2689,1,75.0,3,215.0,5,111,1,0,86,2.0,0.0,0.0,253.76109161754644,0.0,92.10924700294883,8842.0,0,70,2,13706,201102689,,,,,0.0,6.0,3.0,0.0,1.0,1.0,3133.784186696783,0.0,186.0,53.0,0.0,11829.0,0,5,3,83.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,345.87033862049526,0.03911675397200806,0.029239186627821056,11829.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -2690,2,58.0,3,0.0,6,112,2,0,67,5.0,0.0,0.0,1159.6609025533037,156.41192887293198,0.0,32764.0,0,70,1,13708,201102690,,,250.0,,1.0,2.0,4.0,0.0,1.0,1.0,2065.8108262107885,0.0,850.0,0.0,0.0,18210.0,0,1,1,150.0,8,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1316.0728314262356,0.04016825880314478,0.0722719841530058,18210.0,5,3,5,5_1,5_0,5_0_0 -2691,2,62.0,2,0.0,1,112,4,78,78,4.0,0.0,0.0,2455.752499524643,0.0,0.0,31807.0,71,70,1,13710,201102691,,,240.0,,0.0,2.0,3.0,0.0,2.0,1.5,2916.3965291675554,0.0,1800.0,0.0,0.0,23730.0,5,5,1,70.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2455.752499524643,0.07720792591330974,0.10348725240306124,15820.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -2692,2,74.0,3,0.0,4,120,6,11,78,4.0,0.0,0.0,2440.745123138659,104.27461924862132,0.0,32638.0,71,71,1,13711,201102692,,,549.0,,2.0,3.0,6.0,1.0,3.0,2.0,3045.526099329274,0.0,1789.0,0.0,0.0,30810.0,5,5,1,187.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2545.0197423872805,0.07797719659253878,0.08260369173603636,15405.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -2693,2,40.0,5,0.0,8,111,4,0,62,5.0,0.0,0.0,613.9381248811608,0.0,0.0,12497.0,0,41,2,13712,201102693,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3636.768793233514,0.0,450.0,0.0,0.0,17360.0,0,1,3,35.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,613.9381248811608,0.04912684043219659,0.03536509935951387,17360.0,5,3,5,5_0,5_3,5_0_0 -2694,2,51.0,3,0.0,1,112,4,68,63,5.0,0.0,0.0,1773.5990274344645,225.92834170534618,0.0,58044.0,60,50,1,13714,201102694,,,350.0,,2.0,1.0,5.0,2.0,4.0,2.5,2075.5091114152365,0.0,1300.0,0.0,0.0,42366.0,1,1,2,160.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1999.5273691398106,0.034448476485766155,0.047196510625025036,16946.4,4,2,4_0,4_1_0,4_0_0,4_1_0 -2695,2,47.0,3,0.0,9,112,2,56,63,5.0,0.0,0.0,2064.1964065448806,50.3993993035003,0.0,24857.0,50,50,1,13715,201102695,,,165.0,,2.0,0.0,5.0,2.0,4.0,2.1,1922.2935278320956,0.0,1513.0,0.0,0.0,37722.0,4,1,2,100.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2114.5958058483807,0.08507043512283786,0.056057361906801884,17962.85714285714,5,3,5,5_1,5_0,5_0_0 -2696,2,72.0,3,0.0,5,221,2,77,78,5.0,0.0,0.0,1604.4249663561002,0.0,191.17013528913907,45697.0,70,71,1,13716,201102696,,,321.0,,0.0,4.0,5.0,0.0,2.0,1.5,2514.6158191202644,0.0,1176.0,110.0,0.0,26360.0,5,5,1,117.0,1,2.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1795.5951016452393,0.0392935007034431,0.06811817532796811,17573.333333333332,5,3,5,5_1,5_1,5_0_0 -2697,2,54.0,1,0.0,1,111,2,31,23,8.0,0.0,0.0,997.3083761958411,0.0,1522.4094410298712,72211.0,10,10,2,13717,201102697,,,,,2.0,1.0,6.0,2.0,4.0,2.5,2302.112105473469,0.0,731.0,876.0,0.0,70810.0,1,1,1,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2519.717817225712,0.03489382250939209,0.03558420868840153,28324.0,8,4,8,8_0,8_4,8_1_0 -2698,2,50.0,2,0.0,1,112,2,42,47,9.0,1337.3824157040776,728.6613177708059,526.6224804536179,86.89551604051776,0.0,35564.0,41,31,1,13719,201102698,,,159.0,,2.0,2.0,5.0,0.0,2.0,1.5,3873.500656726697,0.0,386.0,0.0,0.0,54466.0,1,1,1,140.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2679.561729969019,0.07534477927030196,0.049196961957349884,36310.666666666664,9,5,9,9_1,9_0,9_1_0 -2699,2,44.0,1,0.0,1,120,2,48,46,10.0,2078.2573719719358,0.0,750.3688192991965,46.92357866187959,0.0,32668.0,31,31,1,13721,201102699,,,318.0,,2.0,0.0,5.0,0.0,2.0,1.5,4974.652457804696,0.0,550.0,0.0,0.0,63573.0,1,1,2,170.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2875.549769933012,0.08802344097995017,0.04523224906694685,42382.0,10,5,10,10_1,10_0,10_1_0 -2700,1,37.0,3,470.0,1,111,2,85,85,2.0,0.0,0.0,38.20059443705,0.0,2606.865481215533,13340.0,60,71,1,13722,201102700,,,1600.0,,0.0,0.0,3.0,3.0,5.0,2.4,2725.237762543673,0.0,28.0,1500.0,0.0,26076.0,6,7,3,68.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,2645.0660756525826,0.19828081526631056,0.10143680302395239,10865.0,2,1,2_1,2_1_1,2_3_1,2_1_0 -2701,2,53.0,2,0.0,6,221,2,47,52,8.0,0.0,0.0,927.728722042643,86.89551604051776,0.0,61229.0,50,50,1,13723,201102701,,,,,2.0,2.0,9.0,0.0,2.0,1.5,2699.3370816542583,0.0,680.0,0.0,0.0,40568.0,1,1,1,200.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1014.6242380831608,0.01657097516018816,0.025010457456200966,27045.333333333332,8,4,8,8_1,8_1,8_0_0 -2702,2,31.0,1,0.0,7,120,2,67,63,5.0,0.0,0.0,1364.3069441803573,0.0,0.0,14984.0,71,71,2,13724,201102702,,,,354.0,2.0,0.0,3.0,0.0,2.0,1.5,6349.622005657197,0.0,1000.0,0.0,0.0,27954.0,1,1,3,65.0,0,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1364.3069441803573,0.09105091725709806,0.0488054283530213,18636.0,5,3,5,5_0,5_1,5_0_0 -2703,2,80.0,4,0.0,99,111,2,0,77,6.0,0.0,0.0,791.2980276246072,0.0,1969.0523934781324,24186.0,0,41,1,13725,201102703,,,328.0,,1.0,1.0,5.0,1.0,2.0,1.5,2966.801757430386,0.0,580.0,1133.0,0.0,28487.0,0,5,1,100.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2760.35042110274,0.11413009266115685,0.09689860010189699,18991.333333333332,5,3,5,5_1,5_3,5_0_0 -2704,0,62.0,3,0.0,1,300,2,67,56,6.0,0.0,0.0,713.5325318063268,0.0,1034.0566408821614,41812.0,70,50,1,13726,201102704,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1430.9424662428162,0.0,523.0,595.0,0.0,30932.0,1,1,5,70.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1747.5891726884884,0.04179635446016666,0.056497774883243514,20621.333333333332,6,3,6,6_1,6_0,6_1_0 -2705,0,27.0,2,0.0,3,111,1,46,53,8.0,0.0,0.0,0.0,0.0,0.0,36366.0,31,31,2,13727,201102705,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3255.0875546662423,0.0,0.0,0.0,0.0,53528.0,1,1,5,100.0,8,7.0,4,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,25489.52380952381,8,4,8,8_0,8_3,8_0_1 -2706,2,40.0,3,0.0,1,112,4,0,56,5.0,0.0,0.0,527.9867873977983,0.0,0.0,12087.0,0,71,1,13729,201102706,,,150.0,,1.0,0.0,4.0,0.0,1.0,1.0,2238.716840755361,0.0,387.0,0.0,0.0,17187.0,0,1,2,64.0,9,0.0,1,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,527.9867873977983,0.043682202978224394,0.03072012494314297,17187.0,5,3,5,5_1,5_0,5_1_0 -2707,2,45.0,3,0.0,8,111,4,54,54,6.0,0.0,0.0,572.2258396999096,0.0,1182.7765336702275,36237.0,31,42,1,1373,201102707,,,304.0,,2.0,0.0,5.0,1.0,3.0,1.8,1584.7403719446304,1100.0,0.0,0.0,0.0,37921.0,1,1,3,95.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1755.002373370137,0.04843122701576116,0.04628048768149936,21067.222222222223,6,3,6,6_1,6_2,6_0_0 -2708,2,52.0,2,0.0,6,111,4,47,54,10.0,0.0,277.585263912688,1695.540282621479,86.89551604051776,667.7311158265557,32864.0,31,43,1,13730,201102708,,,300.0,,2.0,3.0,7.0,0.0,2.0,1.5,4261.316501782239,621.0,1006.0,0.0,0.0,60847.0,1,1,1,80.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2727.75217840124,0.08300122256576314,0.04482969050900192,40564.666666666664,10,5,10,10_1,10_2,10_0_0 -2709,2,49.0,2,0.0,1,112,6,38,31,10.0,0.0,388.6193694777632,1364.3069441803573,0.0,0.0,58498.0,10,10,1,13731,201102709,,,240.0,,2.0,0.0,5.0,2.0,4.0,2.1,2462.4124638309618,0.0,1000.0,0.0,0.0,129349.0,1,1,2,200.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1752.9263136581205,0.02996557683438956,0.01355191237395048,61594.7619047619,10,5,10,10_1,10_0,10_1_0 -2710,2,75.0,3,0.0,1,112,5,77,75,7.0,0.0,0.0,703.9823831970643,2606.865481215533,0.0,21768.0,50,31,1,13733,201102710,,,150.0,,0.0,3.0,5.0,0.0,2.0,1.5,3344.447759577778,0.0,516.0,0.0,0.0,34617.0,5,5,1,120.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3310.847864412597,0.15209701692450373,0.09564225277790095,23078.0,7,4,7,7_1,7_1,7_1_0 -2711,2,48.0,3,0.0,99,111,1,0,52,6.0,0.0,0.0,261.9469332826286,0.0,0.0,15885.0,0,50,2,13734,201102711,,,,290.0,1.0,0.0,2.0,0.0,1.0,1.0,3327.0785138860897,0.0,192.0,0.0,0.0,20758.0,0,1,3,50.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,261.9469332826286,0.016490206690754083,0.01261908340315197,20758.0,6,3,6,6_0,6_3,6_0_0 -2712,2,67.0,2,0.0,4,112,3,77,74,9.0,0.0,0.0,2455.752499524643,0.0,0.0,22080.0,71,10,1,13735,201102712,,,270.0,,0.0,2.0,8.0,0.0,2.0,1.5,6138.62179239554,0.0,1800.0,0.0,0.0,55586.0,5,5,1,140.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2455.752499524643,0.11122067479731174,0.044179334716019196,37057.333333333336,9,5,9,9_1,9_1,9_0_1 -2713,2,43.0,2,0.0,1,111,2,55,46,4.0,0.0,277.585263912688,1091.4455553442858,0.0,1390.3282566482842,36551.0,50,31,1,13736,201102713,,,150.0,,2.0,0.0,7.0,3.0,5.0,2.8,2622.583119045899,0.0,800.0,800.0,0.0,45820.0,1,1,1,140.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2759.3590759052577,0.07549339487032523,0.06022171706471536,16364.285714285716,4,2,4_0,4_1_0,4_2_0,4_1_0 -2714,2,74.0,3,0.0,1,300,2,0,78,5.0,3172.912018277764,0.0,1248.4982789486658,34.7582064162071,211.8245246663953,13814.0,0,71,1,13737,201102714,,,408.0,,0.0,4.0,5.0,0.0,1.0,1.0,2921.314735284585,197.0,840.0,0.0,0.0,16970.0,0,5,5,107.0,0,0.0,1,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4667.9930283090325,0.33791754946496544,0.2750732485744863,16970.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -2715,2,37.0,2,0.0,4,111,1,0,47,3.0,0.0,0.0,380.3084249363521,0.0,278.4901111096263,16760.0,0,30,2,13738,201102715,0.0,,,,1.0,1.0,2.0,0.0,1.0,1.0,3575.1678300500553,259.0,180.0,0.0,0.0,14467.0,0,1,2,55.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,658.7985360459784,0.03930778854689609,0.04553802004879923,14467.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -2716,2,55.0,2,0.0,6,112,4,0,34,10.0,0.0,485.77421184720396,856.7847609452643,64.30268186998315,0.0,25364.0,0,10,1,13739,201102716,,,122.0,,1.0,0.0,4.0,0.0,1.0,1.0,2328.614573766752,0.0,628.0,0.0,0.0,43232.0,0,1,1,150.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1406.8616546624514,0.05546686857997364,0.03254213671961629,43232.0,10,5,10,10_1,10_0,10_0_0 -2717,1,24.0,2,158.0,99,111,2,0,47,1.0,0.0,0.0,834.9558498383786,0.0,0.0,20663.0,0,20,2,1374,201102717,,,,245.0,1.0,0.0,1.0,0.0,1.0,1.0,5829.328547450284,0.0,612.0,0.0,0.0,6757.0,0,1,3,35.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,834.9558498383786,0.040408258715500106,0.12356901729145754,6757.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -2718,1,48.0,3,337.0,1,111,4,0,54,1.0,0.0,0.0,1200.5901108787143,0.0,0.0,13097.0,0,50,1,13740,201102718,,,,24.0,2.0,1.0,3.0,1.0,2.0,1.5,1549.424454957772,0.0,880.0,0.0,0.0,10842.0,0,4,3,60.0,5,4.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1200.5901108787143,0.091669092989136,0.11073511445108968,7228.0,1,1,1_1,1_1_1,1_2_1,1_1_0 -2719,2,43.0,3,0.0,4,111,2,46,65,3.0,0.0,69.396315978172,1091.4455553442858,0.0,1042.7461924862132,24244.0,41,41,1,13741,201102719,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.5,3470.5044839349,0.0,800.0,600.0,0.0,31506.0,4,1,1,110.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2203.588063808671,0.0908920996456307,0.06994185437087129,12602.4,2,1,2_0,2_1_0,2_3_0,2_0_1 -2720,2,30.0,3,0.0,4,112,2,43,46,8.0,0.0,277.585263912688,545.7227776721429,2606.865481215533,0.0,40450.0,33,60,1,13742,201102720,,,,,2.0,0.0,3.0,1.0,3.0,1.8,5351.384220711722,0.0,400.0,0.0,0.0,51009.0,1,1,2,80.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3430.1735228003636,0.08480033430903247,0.06724643735027865,28338.333333333332,8,4,8,8_1,8_0,8_0_1 -2721,2,31.0,3,0.0,7,111,2,43,43,6.0,0.0,0.0,982.3009998098572,34.7582064162071,0.0,40137.0,33,30,2,13743,201102721,,,,461.0,2.0,0.0,2.0,0.0,2.0,1.5,2993.8034699983564,0.0,720.0,0.0,0.0,30846.0,1,1,3,50.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1017.0592062260644,0.025339691711539585,0.03297215866647424,20564.0,6,3,6,6_0,6_2,6_0_0 -2722,1,22.0,2,5.0,5,111,1,55,47,3.0,0.0,0.0,109.14455553442858,0.0,0.0,22343.0,42,43,2,13745,201102722,,,,295.0,2.0,0.0,1.0,0.0,2.0,1.5,3503.1109922717346,0.0,80.0,0.0,0.0,18669.0,1,1,3,30.0,8,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,109.14455553442858,0.004884955267172205,0.005846298973401285,12446.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -2723,2,84.0,2,0.0,1,111,2,0,75,8.0,0.0,0.0,491.1504999049286,0.0,1129.641708526731,12322.0,0,70,2,13746,201102723,,,160.0,,0.0,2.0,3.0,0.0,1.0,1.0,3756.118138305562,0.0,360.0,650.0,0.0,24790.0,0,5,3,70.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1620.7922084316597,0.1315364558051988,0.06538088779474222,24790.0,7,4,7,7_0,7_3,7_1_0 -2724,1,26.0,3,249.0,2,111,2,0,81,2.0,0.0,0.0,1068.2523372932196,0.0,0.0,12340.0,0,10,2,13748,201102724,,,,153.0,1.0,0.0,2.0,0.0,1.0,1.0,3447.156281923046,0.0,783.0,0.0,0.0,9934.0,0,4,3,26.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1068.2523372932196,0.0865682607206823,0.1075349644949889,9934.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -2725,1,39.0,2,34.0,8,112,2,56,47,3.0,1427.810408224994,0.0,750.3688192991965,0.0,0.0,39922.0,50,42,1,13749,201102725,,,330.0,,2.0,0.0,5.0,2.0,4.0,2.1,2090.229412979016,0.0,550.0,0.0,0.0,29759.0,1,1,2,116.0,9,1.0,4,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2178.1792275241905,0.05456087439317145,0.07319396577587253,14170.95238095238,3,2,3_1,3_1_1,3_1_1,3_0_0 -2726,1,54.0,4,238.0,99,221,2,0,69,1.0,1269.1648073111057,0.0,914.0856526008394,114.70208117348345,0.0,7366.0,0,50,1,1375,201102726,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2981.0984430981225,0.0,670.0,0.0,0.0,7936.0,0,4,3,68.0,1,1.0,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2297.9525410854285,0.3119674913230286,0.2895605520520953,7936.0,1,1,1_1,1_1_1,1_1_1,1_0_0 -2727,2,33.0,2,0.0,1,112,2,52,46,9.0,2040.1824277526025,666.2046333904511,627.5811943229643,0.0,0.0,52993.0,50,50,1,13751,201102727,,,311.0,,2.0,0.0,6.0,0.0,2.0,1.5,2315.3527690036417,0.0,460.0,0.0,0.0,46442.0,1,1,2,170.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3333.968255466018,0.06291337073700334,0.07178778380487529,30961.333333333332,9,5,9,9_1,9_0,9_1_0 -2728,1,20.0,2,240.0,99,111,2,0,68,2.0,0.0,0.0,0.0,0.0,0.0,13335.0,0,41,2,13752,201102728,,,,150.0,1.0,0.0,1.0,0.0,1.0,1.0,6189.072627491745,0.0,0.0,0.0,0.0,10245.0,0,2,3,23.0,6,5.0,1,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,10245.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -2729,1,33.0,5,393.0,2,300,2,69,85,1.0,0.0,0.0,416.1642470544797,0.0,860.2011153965291,10184.0,50,50,1,13753,201102729,,,400.0,,1.0,0.0,3.0,2.0,4.0,2.1,1626.3329009728604,800.0,0.0,0.0,0.0,16756.0,4,6,3,80.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1276.3653624510089,0.12533045585732608,0.0761736310844479,7979.047619047618,1,1,1_1,1_1_1,1_0_1,1_0_1 -2730,2,55.0,3,0.0,4,111,1,0,55,4.0,0.0,0.0,177.35990274344644,0.0,0.0,11614.0,0,60,2,13754,201102730,,,,200.0,1.0,3.0,4.0,0.0,1.0,1.0,2402.5829062118764,0.0,130.0,0.0,0.0,15140.0,0,1,3,80.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,177.35990274344644,0.015271216010284694,0.011714656720174799,15140.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -2731,1,52.0,4,132.0,5,111,2,0,56,7.0,0.0,0.0,941.3717914844465,0.0,1876.9431464751838,14949.0,0,50,1,13755,201102731,,,,,2.0,1.0,5.0,2.0,3.0,2.0,1840.7264751634932,0.0,690.0,1080.0,0.0,45574.0,0,1,3,90.0,8,6.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2818.3149379596302,0.1885286599745555,0.06184041203229101,22787.0,7,4,7,7_1,7_2,7_0_0 -2732,2,58.0,3,0.0,2,111,1,48,52,9.0,0.0,0.0,327.43366660328576,0.0,417.0984769944853,31742.0,50,71,2,13756,201102732,,,250.0,,2.0,1.0,2.0,0.0,2.0,1.5,6312.831996740342,0.0,240.0,240.0,0.0,46946.0,1,1,2,60.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,744.532143597771,0.023455741402487903,0.015859330797038534,31297.333333333332,9,5,9,9_0,9_2,9_0_1 -2733,1,39.0,4,120.0,4,111,1,85,68,1.0,0.0,0.0,525.2581735094376,0.0,1338.1909470239734,21888.0,71,71,2,13757,201102733,,,,140.0,1.0,0.0,3.0,2.0,4.0,2.1,3548.5803839606538,0.0,385.0,770.0,0.0,19100.0,6,1,3,71.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1863.4491205334111,0.08513565060916535,0.09756278117975975,9095.238095238095,1,1,1_1,1_0_1,1_3_1,1_0_1 -2734,2,70.0,2,0.0,1,111,2,74,74,10.0,0.0,0.0,695.7965415319821,0.0,1762.2410653017002,76761.0,20,10,2,1376,201102734,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2472.9432971775295,0.0,510.0,1014.0,0.0,60078.0,5,5,1,105.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2458.0376068336823,0.03202195915678121,0.04091410511058428,40052.0,10,5,10,10_0,10_3,10_1_0 -2735,2,70.0,4,0.0,1,112,5,0,77,1.0,0.0,277.585263912688,777.6549581828036,201.5975972140012,0.0,12890.0,0,70,1,13760,201102735,,,127.0,,0.0,2.0,6.0,0.0,1.0,1.0,1834.9122746581822,0.0,570.0,0.0,0.0,7390.0,0,5,1,100.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1256.8378193094927,0.09750487349181479,0.1700727766318664,7390.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -2736,2,51.0,2,0.0,6,300,2,42,21,7.0,1077.203630205301,0.0,985.029613698218,48.661488982689946,0.0,98057.0,41,50,1,13761,201102736,,,250.0,,4.0,1.0,6.0,2.0,4.0,2.5,1420.2882595300066,0.0,722.0,0.0,0.0,59710.0,1,1,1,120.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2110.894732886209,0.02152722123750685,0.03535244905185411,23884.0,7,4,7,7_1,7_0,7_0_0 -2737,2,51.0,4,0.0,4,111,1,0,46,5.0,0.0,0.0,341.0767360450893,0.0,330.2029609539675,23706.0,0,41,2,13763,201102737,,,,325.0,1.0,0.0,3.0,1.0,2.0,1.5,2955.918525327085,0.0,250.0,190.0,0.0,27048.0,0,1,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,671.2796969990568,0.028316869020461353,0.024818089951163,18032.0,5,3,5,5_0,5_4,5_0_1 -2738,2,61.0,3,0.0,5,112,2,0,77,4.0,0.0,138.792631956344,791.2980276246072,0.0,0.0,12525.0,0,70,1,13766,201102738,,,206.0,,0.0,2.0,4.0,0.0,1.0,1.0,2206.0847363394655,0.0,580.0,0.0,0.0,15675.0,0,5,1,128.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,930.0906595809513,0.07425873529588434,0.0593359272459937,15675.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -2739,2,75.0,3,0.0,1,112,5,0,77,2.0,0.0,555.170527825376,477.50743046312505,145.98446694806984,0.0,7536.0,0,70,1,13767,201102739,,,54.0,,0.0,3.0,2.0,0.0,1.0,1.0,4180.038507131527,0.0,350.0,0.0,0.0,11791.0,0,5,1,43.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1178.662425236571,0.15640424963330293,0.09996288908799686,11791.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -2740,2,68.0,2,0.0,5,112,4,0,77,9.0,0.0,0.0,2201.991407907097,251.99699651750151,0.0,32872.0,0,50,1,13768,201102740,,,339.0,,0.0,1.0,5.0,0.0,1.0,1.0,2115.487306481419,0.0,1614.0,0.0,0.0,35214.0,0,5,1,100.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2453.9884044245982,0.07465284754272931,0.06968786290749697,35214.0,9,5,9,9_1,9_0,9_0_0 -2741,2,32.0,3,0.0,1,111,6,0,48,5.0,634.5824036555529,0.0,654.8673332065715,0.0,0.0,27969.0,0,71,2,13769,201102741,,,,325.0,1.0,0.0,2.0,1.0,2.0,1.3,3142.440197922825,0.0,480.0,0.0,0.0,22688.0,0,1,3,60.0,4,4.0,2,2,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1289.4497368621244,0.046102818722947705,0.05683399756973397,17452.30769230769,5,3,5,5_0,5_2,5_1_0 -2742,2,55.0,3,0.0,1,111,2,78,62,6.0,0.0,0.0,682.1534720901786,0.0,2302.731175073721,27452.0,71,50,1,1377,201102742,,,360.0,,2.0,2.0,5.0,1.0,3.0,2.0,1720.3101380776413,0.0,500.0,1325.0,0.0,38919.0,6,1,1,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2984.8846471638994,0.10873104499358514,0.07669479295880931,19459.5,6,3,6,6_1,6_3,6_1_0 -2743,2,62.0,2,0.0,5,400,2,56,75,4.0,0.0,0.0,376.5487165937786,147.7223772688802,0.0,16516.0,70,50,1,13770,201102743,,,276.0,,1.0,3.0,5.0,0.0,2.0,1.5,1787.641000232183,0.0,276.0,0.0,0.0,22033.0,1,5,1,91.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,524.2710938626587,0.031743224380156136,0.02379481204841187,14688.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -2744,1,21.0,2,152.0,1,111,1,0,56,1.0,0.0,0.0,450.22129157951787,0.0,0.0,16243.0,0,30,2,13772,201102744,,,,75.0,1.0,0.0,1.0,0.0,1.0,1.0,3236.227186772326,0.0,330.0,0.0,0.0,4283.0,0,3,3,16.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,450.22129157951787,0.027717865639322655,0.10511820956794721,4283.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -2745,2,51.0,2,0.0,1,400,5,55,48,6.0,0.0,138.792631956344,736.7257498573929,208.54923849724264,0.0,32695.0,50,50,1,13774,201102745,,,186.0,,2.0,0.0,7.0,1.0,3.0,2.0,1256.3580824199375,0.0,540.0,0.0,0.0,42901.0,1,1,5,136.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1084.0676203109795,0.03315698486958188,0.02526905247688817,21450.5,6,3,6,6_1,6_0,6_1_0 -2746,2,52.0,2,0.0,1,112,6,34,37,9.0,2855.620816449988,0.0,1309.734666413143,69.5164128324142,0.0,55824.0,20,10,1,13775,201102746,,,960.0,,3.0,0.0,7.0,3.0,5.0,2.8,900.4545437542668,0.0,960.0,0.0,0.0,82104.0,1,1,2,300.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4234.871895695545,0.07586113312724894,0.051579361489032756,29322.857142857145,9,5,9,9_1,9_0,9_1_0 -2747,2,52.0,4,0.0,1,112,5,0,62,4.0,0.0,416.377895869032,1151.4750608882216,104.27461924862132,0.0,26677.0,0,71,1,13776,201102747,,,198.0,,1.0,0.0,3.0,0.0,1.0,1.0,4502.045032732161,0.0,844.0,0.0,0.0,16068.0,0,1,3,89.0,5,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1672.127576005875,0.06268049540824962,0.1040656942995939,16068.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -2748,2,44.0,3,0.0,2,221,2,42,46,8.0,0.0,0.0,2161.062199581686,0.0,2659.0027908398433,62773.0,31,31,1,13777,201102748,,,,,2.0,0.0,5.0,0.0,2.0,1.5,4480.909685166493,0.0,1584.0,1530.0,0.0,40632.0,4,1,2,105.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4820.06499042153,0.07678564017047981,0.11862731321179193,27088.0,8,4,8,8_1,8_1,8_0_1 -2749,1,45.0,3,17.0,99,111,1,0,68,3.0,0.0,0.0,311.0619832731214,0.0,0.0,13575.0,0,71,2,13778,201102749,,,,253.0,1.0,2.0,2.0,0.0,1.0,1.0,3219.49973287894,0.0,228.0,0.0,0.0,14101.0,0,1,3,65.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,311.0619832731214,0.02291432657628887,0.022059569057025843,14101.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -2750,2,51.0,2,0.0,8,111,2,0,43,8.0,0.0,0.0,1227.8762497623215,0.0,0.0,22713.0,0,10,1,1378,201102750,,,160.0,,1.0,2.0,3.0,0.0,1.0,1.0,4188.763287706454,0.0,900.0,0.0,0.0,26776.0,0,1,3,65.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1227.8762497623215,0.05406050498667378,0.04585734425464302,26776.0,8,4,8,8_1,8_2,8_0_0 -2751,2,45.0,3,0.0,7,111,1,52,46,6.0,0.0,0.0,654.8673332065715,0.0,135.55700502320772,41146.0,71,71,2,13784,201102751,,,,568.0,2.0,0.0,4.0,2.0,4.0,2.5,3509.459684129973,0.0,480.0,78.0,0.0,47574.0,1,1,3,96.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,790.4243382297792,0.01921023521678363,0.016614628541425553,19029.6,5,3,5,5_0,5_4,5_0_0 -2752,2,36.0,3,0.0,5,221,6,54,21,3.0,1110.5192063972174,863.2901707684597,804.9410970664107,159.8877495145527,0.0,50038.0,43,50,1,13788,201102752,,,466.0,,2.0,0.0,6.0,3.0,5.0,2.4,2098.0035134653017,0.0,590.0,0.0,0.0,32731.0,4,1,3,140.0,1,3.0,4,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2938.6382237466405,0.05872813109530038,0.08978149838827536,13637.916666666668,3,2,3_0,3_1_0,3_1_0,3_0_0 -2753,2,62.0,2,0.0,5,111,4,74,75,10.0,0.0,0.0,3512.8370957649777,0.0,1056.972120543485,54610.0,70,60,1,1379,201102753,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1926.3843407056543,983.0,2200.0,0.0,0.0,57677.0,5,5,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4569.809216308463,0.08368081333654025,0.07923104905436244,38451.333333333336,10,5,10,10_1,10_4,10_0_0 -2754,2,78.0,1,0.0,6,111,2,77,75,8.0,0.0,0.0,818.5841665082144,2481.7359381171873,0.0,25728.0,60,70,1,13791,201102754,,,350.0,,0.0,2.0,4.0,0.0,2.0,1.5,2848.0683529668163,0.0,600.0,0.0,0.0,39875.0,5,5,1,109.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3300.3201046254017,0.12827736725067637,0.0827666483918596,26583.333333333332,8,4,8,8_1,8_3,8_0_0 -2755,2,28.0,3,0.0,2,111,2,0,62,5.0,0.0,0.0,573.00891655575,0.0,573.5104058674173,15955.0,0,71,2,13792,201102755,,,160.0,324.0,1.0,0.0,2.0,0.0,1.0,1.0,3160.0866360965415,0.0,420.0,330.0,0.0,18740.0,0,1,3,80.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1146.5193224231673,0.07185956267146144,0.06118032670347744,18740.0,5,3,5,5_0,5_3,5_0_1 -2756,1,24.0,2,313.0,5,111,1,0,63,2.0,0.0,0.0,1637.1683330164287,0.0,2606.865481215533,9688.0,0,50,2,13793,201102756,,,280.0,,1.0,0.0,3.0,1.0,2.0,1.3,3626.8248766348283,0.0,1200.0,1500.0,0.0,15414.0,0,1,3,37.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,4244.0338142319615,0.4380712029554048,0.275336305581417,11856.923076923076,2,1,2_1,2_0_1,2_3_1,2_0_0 -2757,1,73.0,4,192.0,5,111,1,77,78,2.0,0.0,0.0,102.3230208135268,0.0,86.89551604051776,19724.0,70,70,2,13795,201102757,,,,158.0,1.0,2.0,4.0,1.0,3.0,2.0,2045.7488859339935,0.0,75.0,50.0,0.0,21204.0,5,5,3,78.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,189.21853685404454,0.009593314583960887,0.00892371896123583,10602.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -2758,1,39.0,4,228.0,2,111,2,0,85,2.0,0.0,0.0,286.504458277875,0.0,573.5104058674173,5204.0,0,41,2,13796,201102758,,,,52.0,0.0,1.0,2.0,0.0,1.0,1.0,3655.2927988249053,0.0,210.0,330.0,0.0,11971.0,0,7,3,44.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,860.0148641452922,0.16526035052753502,0.07184152235780572,11971.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -2759,2,48.0,3,0.0,1,111,4,0,54,6.0,0.0,0.0,986.3939206423983,0.0,107.75043989024202,17194.0,0,20,2,13798,201102759,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2910.952051635372,0.0,723.0,62.0,0.0,19268.0,0,4,1,53.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1094.1443605326403,0.06363524255744099,0.056785569884401095,19268.0,6,3,6,6_0,6_2,6_1_0 -2760,2,71.0,3,0.0,2,111,6,75,74,9.0,3966.1400228472053,0.0,482.9646582398465,0.0,0.0,49912.0,50,30,1,13799,201102760,,,360.0,,0.0,1.0,4.0,0.0,2.0,1.5,1954.2145842381371,0.0,354.0,0.0,0.0,55373.0,5,5,1,91.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4449.104681087052,0.08913897822341425,0.08034790748355791,36915.333333333336,9,5,9,9_1,9_4,9_0_1 -2761,2,41.0,2,0.0,2,111,2,46,47,5.0,1586.456009138882,0.0,613.9381248811608,0.0,0.0,65245.0,20,31,1,138,201102761,,,400.0,,2.0,0.0,4.0,1.0,3.0,1.8,1806.8777089350267,0.0,450.0,0.0,0.0,33301.0,1,1,2,100.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2200.3941340200427,0.033725099762741094,0.06607591766073219,18500.555555555555,5,3,5,5_1,5_3,5_0_1 -2762,2,46.0,2,0.0,1,300,5,0,37,9.0,0.0,0.0,1358.8497164036357,69.5164128324142,0.0,21823.0,0,44,1,13800,201102762,,,105.0,,1.0,0.0,5.0,0.0,1.0,1.0,2858.6233587953134,0.0,996.0,0.0,0.0,33223.0,0,1,1,110.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1428.36612923605,0.06545232686780232,0.04299329167251753,33223.0,9,5,9,9_1,9_0,9_1_0 -2763,2,67.0,2,0.0,7,111,2,75,75,7.0,0.0,0.0,1159.6609025533037,97.32297796537989,0.0,34395.0,41,33,1,13802,201102763,,,200.0,,0.0,2.0,5.0,0.0,2.0,1.5,2161.2916455771874,0.0,850.0,0.0,0.0,36135.0,5,5,1,130.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1256.9838805186837,0.036545540936725796,0.034785772257331773,24090.0,7,4,7,7_1,7_3,7_0_0 -2764,2,44.0,4,0.0,1,111,6,63,62,4.0,0.0,0.0,1040.4106176361993,469.23578661879594,2150.502788491323,29564.0,50,71,1,13803,201102764,,,700.0,,3.0,0.0,6.0,3.0,5.0,2.8,1027.5407348422998,2000.0,0.0,0.0,0.0,45121.0,4,1,2,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3660.149192746318,0.12380426169484231,0.08111853001365923,16114.642857142859,4,2,4_0,4_1_0,4_3_0,4_1_0 -2765,1,65.0,4,186.0,5,120,1,78,78,1.0,0.0,0.0,845.8703053918215,0.0,1112.2626053186273,13383.0,71,71,2,13804,201102765,,,,182.0,0.0,5.0,4.0,0.0,2.0,1.5,6080.018362444906,0.0,620.0,640.0,0.0,12902.0,5,5,3,75.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1958.1329107104489,0.1463149451326645,0.1517697187033366,8601.333333333334,1,1,1_1,1_0_1,1_1_1,1_0_0 -2766,1,45.0,5,127.0,5,221,2,62,22,1.0,2760.433455901655,0.0,791.2980276246072,0.0,608.2686122836243,44922.0,50,50,1,13806,201102766,,,,,2.0,0.0,5.0,4.0,6.0,3.1,2146.8985066105756,0.0,580.0,350.0,0.0,27598.0,6,1,2,140.0,1,2.0,4,2,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,4160.000095809886,0.09260496184074365,0.15073556401949004,8902.58064516129,1,1,1_1,1_1_1,1_1_1,1_0_0 -2767,2,64.0,1,0.0,2,400,3,0,31,10.0,0.0,0.0,3295.057114434486,3672.204507872281,5795.605014984115,88194.0,0,10,1,13808,201102767,,,60.0,,1.0,2.0,7.0,0.0,1.0,1.0,1713.715842547353,5390.0,360.0,0.0,0.0,92210.0,0,5,1,150.0,0,0.0,1,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,12762.866637290881,0.14471354782968093,0.13841087341167857,92210.0,10,5,10,10_1,10_0,10_0_1 -2768,2,41.0,3,0.0,99,211,2,0,67,5.0,0.0,0.0,207.3746555154143,0.0,603.0548813211933,18200.0,0,71,2,13809,201102768,,,,279.0,1.0,0.0,2.0,0.0,1.0,1.0,2682.6676930642266,0.0,152.0,347.0,0.0,17957.0,0,1,3,61.0,3,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,810.4295368366077,0.04452909543058284,0.045131677721034005,17957.0,5,3,5,5_0,5_2,5_0_0 -2769,2,28.0,2,0.0,5,111,1,37,43,7.0,0.0,0.0,491.1504999049286,0.0,0.0,62901.0,12,20,2,1381,201102769,,,,1100.0,2.0,0.0,2.0,0.0,2.0,1.5,3436.223154855449,0.0,360.0,0.0,0.0,33662.0,1,1,3,53.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,491.1504999049286,0.007808309882274186,0.014590651176547103,22441.333333333332,7,4,7,7_0,7_4,7_0_0 -2770,2,43.0,4,0.0,8,112,4,63,63,6.0,0.0,0.0,2237.463388455786,0.0,0.0,38311.0,50,50,1,13810,201102770,,,350.0,,2.0,0.0,4.0,2.0,5.0,2.6,782.4713799131714,0.0,1640.0,0.0,0.0,51096.0,1,1,2,80.0,8,2.0,5,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2237.463388455786,0.05840263601722184,0.04378940403271853,19652.30769230769,6,3,6,6_1,6_1,6_0_0 -2771,2,62.0,1,0.0,2,111,2,74,74,10.0,0.0,0.0,2608.554877272843,0.0,2219.3114796748237,58604.0,31,50,1,13811,201102771,,,720.0,,0.0,2.0,5.0,0.0,2.0,1.5,3162.302426320698,0.0,1912.0,1277.0,0.0,70596.0,4,5,1,153.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4827.866356947667,0.08238117461176142,0.06838725079250477,47064.0,10,5,10,10_1,10_4,10_0_1 -2772,1,76.0,4,104.0,1,120,5,78,77,3.0,0.0,555.170527825376,1110.5458525628108,444.90504212745094,0.0,27186.0,12,70,1,13812,201102772,,,241.0,,0.0,2.0,3.0,0.0,2.0,1.5,2007.9360934968204,0.0,814.0,0.0,0.0,19628.0,5,5,3,65.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2110.6214225156377,0.07763633570645324,0.10753115052555726,13085.333333333334,3,2,3_1,3_1_1,3_0_1,3_1_0 -2773,2,35.0,2,0.0,1,111,4,37,23,10.0,0.0,0.0,1364.3069441803573,0.0,0.0,54096.0,12,10,2,13813,201102773,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3486.643224478929,0.0,1000.0,0.0,0.0,118752.0,1,1,2,94.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1364.3069441803573,0.025220107663789508,0.011488707088557306,56548.57142857143,10,5,10,10_0,10_4,10_1_0 -2774,2,42.0,1,0.0,6,111,2,85,22,10.0,0.0,0.0,2223.8203190139825,0.0,0.0,92159.0,20,60,2,13814,201102774,,,,,1.0,0.0,5.0,3.0,5.0,2.6,2824.667945598459,0.0,1630.0,0.0,0.0,160899.0,6,1,2,133.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2223.8203190139825,0.024130256611009045,0.013821219019471734,61884.230769230766,10,5,10,10_0,10_3,10_0_0 -2775,2,60.0,3,0.0,4,111,1,0,52,5.0,0.0,0.0,286.504458277875,0.0,1359.0458708736978,19998.0,0,70,2,13815,201102775,,,,232.0,1.0,0.0,2.0,0.0,1.0,1.0,3117.5611820564186,0.0,210.0,782.0,0.0,17998.0,0,1,3,44.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1645.550329151573,0.08228574503208186,0.09142962157748488,17998.0,5,3,5,5_0,5_4,5_0_1 -2776,2,44.0,3,0.0,4,111,2,52,37,8.0,0.0,0.0,915.4499595450197,0.0,1911.7013528913908,83075.0,50,50,1,13816,201102776,,,510.0,,2.0,0.0,6.0,2.0,4.0,2.3,2514.274462854798,0.0,671.0,1100.0,0.0,59709.0,1,1,2,114.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2827.1513124364105,0.03403131281897575,0.047348830367891115,25960.434782608696,8,4,8,8_1,8_3,8_0_1 -2777,2,37.0,1,0.0,7,111,2,37,37,10.0,0.0,0.0,231.93218051066074,0.0,0.0,39336.0,50,20,2,13817,201102777,,,,822.0,2.0,0.0,2.0,0.0,2.0,1.5,3073.7343450265835,0.0,170.0,0.0,0.0,58881.0,1,1,3,54.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,231.93218051066074,0.00589618111934769,0.00393899866698359,39254.0,10,5,10,10_0,10_4,10_0_0 -2778,2,72.0,2,0.0,5,111,5,0,77,5.0,0.0,1138.0995820420208,1500.737638598393,187.69431464751835,0.0,46465.0,0,60,1,13818,201102778,,,180.0,,0.0,2.0,6.0,0.0,1.0,1.0,2019.1085291834868,0.0,1100.0,0.0,0.0,17899.0,0,5,1,121.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2826.531535287932,0.060831411498718006,0.15791561178210695,17899.0,5,3,5,5_1,5_3,5_0_0 -2779,2,64.0,3,0.0,6,221,4,77,74,7.0,0.0,0.0,2236.0990815116056,100.7987986070006,0.0,30337.0,60,60,1,13819,201102779,,,325.0,,0.0,1.0,5.0,0.0,2.0,1.5,4183.941153110764,0.0,1639.0,0.0,0.0,35853.0,5,5,1,140.0,1,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2336.8978801186063,0.07703127798129697,0.06517998159480674,23902.0,7,4,7,7_1,7_1,7_0_0 -2780,2,20.0,3,0.0,6,120,5,84,67,2.0,0.0,541.2912646297416,1058.7021886839573,0.0,0.0,84156.0,60,41,1,13820,201102780,,,,,1.0,0.0,5.0,0.0,2.0,1.5,4023.725479898148,0.0,776.0,0.0,0.0,17217.0,3,4,1,88.0,0,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1599.9934533136989,0.01901223267875967,0.09293102476120688,11478.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -2781,2,52.0,3,0.0,4,111,5,54,65,8.0,0.0,999.3069500856767,702.618076252884,0.0,0.0,44470.0,50,50,1,13821,201102781,,,286.0,,3.0,0.0,4.0,1.0,3.0,2.0,1094.8925923779818,0.0,515.0,0.0,0.0,50001.0,1,1,1,65.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1701.9250263385607,0.03827130709104027,0.03403781977037581,25000.5,8,4,8,8_1,8_3,8_0_1 -2782,2,61.0,2,0.0,4,111,1,0,74,9.0,0.0,0.0,443.3997568586161,0.0,0.0,23308.0,0,31,2,13822,201102782,,,226.0,337.0,0.0,2.0,4.0,0.0,1.0,1.0,4989.847178530959,0.0,325.0,0.0,0.0,36254.0,0,5,3,75.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,443.3997568586161,0.01902350080910486,0.012230367872748279,36254.0,9,5,9,9_0,9_2,9_0_1 -2783,2,59.0,3,0.0,1,111,2,85,75,3.0,0.0,0.0,596.2021346068161,0.0,1326.025574778301,38578.0,60,10,1,13823,201102783,,,419.0,,0.0,3.0,5.0,1.0,3.0,2.0,837.7441102381667,0.0,437.0,763.0,0.0,24740.0,6,7,1,80.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1922.2277093851171,0.049827044154313785,0.07769715882720764,12370.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -2784,2,42.0,1,0.0,9,300,2,43,31,10.0,0.0,0.0,1364.3069441803573,0.0,2259.283417053462,81469.0,10,10,1,13824,201102784,,,94.0,,2.0,0.0,6.0,1.0,3.0,1.8,1358.7418382086655,0.0,1000.0,1300.0,0.0,100499.0,1,1,2,158.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3623.5903612338193,0.04447814949531502,0.03605598425092607,55832.777777777774,10,5,10,10_1,10_0,10_0_0 -2785,2,41.0,1,0.0,8,111,2,37,37,8.0,0.0,0.0,1227.8762497623215,0.0,0.0,54971.0,12,41,1,13825,201102785,,,400.0,,2.0,0.0,7.0,4.0,6.0,3.1,1793.085247236381,0.0,900.0,0.0,0.0,81416.0,1,1,1,180.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1227.8762497623215,0.022336800308568546,0.015081510388158612,26263.225806451614,8,4,8,8_1,8_4,8_0_0 -2786,2,58.0,4,0.0,1,111,6,85,78,1.0,1343.7282397406332,0.0,491.1504999049286,479.663248543658,0.0,8394.0,71,71,1,13826,201102786,,,,,0.0,5.0,4.0,0.0,2.0,1.5,3481.216716698088,0.0,360.0,0.0,0.0,10680.0,6,4,2,84.0,8,7.0,3,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2314.54198818922,0.2757376683570669,0.2167174146244588,7120.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -2787,2,67.0,4,0.0,6,112,2,0,78,5.0,0.0,505.20518032109214,1637.1683330164287,250.25908619669116,0.0,15654.0,0,71,1,13827,201102787,,,910.0,,1.0,3.0,4.0,1.0,2.0,1.5,3910.7285959825426,0.0,1200.0,0.0,0.0,27749.0,0,5,1,114.0,10,2.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2392.6325995342117,0.15284480640949352,0.08622410175264737,18499.333333333332,5,3,5,5_1,5_1,5_0_0 -2788,2,31.0,3,0.0,7,111,2,46,47,8.0,0.0,0.0,873.1564442754286,0.0,0.0,30521.0,30,31,2,13829,201102788,,,,580.0,2.0,0.0,2.0,0.0,2.0,1.5,5923.402344723623,0.0,640.0,0.0,0.0,40084.0,1,1,3,41.0,6,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,873.1564442754286,0.028608382565296964,0.021783166457325333,26722.666666666668,8,4,8,8_0,8_2,8_0_0 -2789,2,59.0,2,0.0,99,111,1,0,43,7.0,0.0,0.0,4079.277763099268,0.0,107.75043989024202,25933.0,0,43,2,13830,201102789,,,,334.0,2.0,1.0,3.0,1.0,2.0,1.5,3354.1302379513363,0.0,2990.0,62.0,0.0,35973.0,0,1,3,73.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4187.028202989511,0.1614556049431038,0.11639363419757903,23982.0,7,4,7,7_0,7_4,7_0_0 -2790,2,39.0,4,0.0,2,111,2,64,68,7.0,2538.3296146222115,0.0,764.011888741,104.27461924862132,0.0,25990.0,71,71,2,13831,201102790,,,410.0,465.0,2.0,0.0,3.0,0.0,2.0,1.5,6448.090535865123,0.0,560.0,0.0,0.0,32723.0,1,1,3,90.0,7,5.0,3,4,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3406.616122611833,0.13107411014281772,0.10410463962997991,21815.333333333332,7,4,7,7_0,7_2,7_0_1 -2791,1,20.0,3,353.0,99,111,1,67,62,3.0,0.0,0.0,60.02950554393572,0.0,0.0,14918.0,50,50,2,13833,201102791,,,,,2.0,0.0,3.0,1.0,3.0,1.8,1880.0407803101632,0.0,44.0,0.0,0.0,24259.0,1,1,3,61.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,60.02950554393572,0.004023964710010438,0.0024745251471180066,13477.222222222223,3,2,3_1,3_0_1,3_3_1,3_0_0 -2792,2,60.0,3,0.0,1,111,2,0,77,2.0,0.0,0.0,311.0619832731214,0.0,1312.1222922118181,9961.0,0,20,1,13834,201102792,,,140.0,,0.0,2.0,4.0,0.0,1.0,1.0,2298.436297084113,0.0,228.0,755.0,0.0,12180.0,0,5,1,70.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1623.1842754849395,0.16295394794548132,0.13326636087725283,12180.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -2793,2,50.0,2,0.0,1,111,2,54,22,5.0,0.0,0.0,545.7227776721429,0.0,1793.5234510762866,30681.0,41,50,2,13835,201102793,,,375.0,729.0,2.0,0.0,4.0,3.0,5.0,2.4,2842.207537391857,0.0,400.0,1032.0,0.0,45125.0,1,1,3,80.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2339.2462287484295,0.07624413248422247,0.051839251606613394,18802.083333333336,5,3,5,5_0,5_2,5_1_0 -2794,1,29.0,3,30.0,1,111,2,0,42,5.0,0.0,0.0,450.22129157951787,0.0,347.58206416207105,18840.0,0,20,2,13836,201102794,,,130.0,,1.0,0.0,2.0,1.0,2.0,1.3,3396.5002668907327,0.0,330.0,200.0,0.0,21794.0,0,1,3,40.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,797.8033557415889,0.04234625030475525,0.03660655940816688,16764.615384615383,4,2,4_1,4_0_1,4_3_1,4_1_0 -2795,2,40.0,3,0.0,2,111,2,52,48,4.0,0.0,0.0,548.4513915605036,0.0,2325.324009244255,34734.0,50,44,1,13838,201102795,,,488.0,,2.0,0.0,6.0,3.0,5.0,2.8,967.4506538478638,0.0,402.0,1338.0,0.0,44113.0,1,1,2,100.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2873.7754008047586,0.08273666726564054,0.06514577110613104,15754.642857142859,4,2,4_0,4_1_0,4_3_0,4_0_1 -2796,2,68.0,3,0.0,4,221,2,77,75,9.0,5552.596031986088,0.0,2167.093230472422,208.54923849724264,2505.335748592391,55995.0,44,41,1,1384,201102796,,,220.0,,0.0,1.0,4.0,0.0,2.0,1.5,1651.584858970395,2330.0,700.0,0.0,0.0,50269.0,5,5,1,100.0,1,2.0,3,9,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,10433.574249548145,0.18633046253322877,0.207554839952021,33512.666666666664,9,5,9,9_1,9_1,9_0_1 -2797,1,28.0,4,393.0,8,112,2,46,52,4.0,0.0,0.0,1937.3158607361072,0.0,0.0,23417.0,43,71,1,13840,201102797,,,750.0,81.0,2.0,0.0,5.0,2.0,4.0,2.1,2318.291563837543,0.0,1420.0,0.0,0.0,33594.0,4,1,3,84.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1937.3158607361072,0.08273117225674113,0.05766850808882858,15997.142857142857,4,2,4_1,4_1_1,4_0_1,4_0_0 -2798,2,44.0,1,0.0,4,111,1,0,31,10.0,0.0,0.0,732.8597853389651,0.0,668.8063672208015,59026.0,0,31,2,13842,201102798,,,,1391.0,1.0,0.0,4.0,2.0,3.0,2.0,3553.4883480675294,622.0,300.0,0.0,0.0,86376.0,0,1,3,89.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1401.6661525597665,0.023746588834746833,0.016227495514492065,43188.0,10,5,10,10_0,10_4,10_0_1 -2799,2,59.0,3,0.0,6,112,1,0,54,8.0,0.0,1249.133687607096,1091.4455553442858,0.0,782.0596443646599,25260.0,0,50,1,13844,201102799,,,400.0,,1.0,3.0,6.0,0.0,1.0,1.0,5246.829855978846,0.0,800.0,450.0,0.0,25268.0,0,1,1,130.0,9,2.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3122.6388873160417,0.12361990844481559,0.12358076964207859,25268.0,8,4,8,8_1,8_1,8_0_0 -2800,2,32.0,3,0.0,4,111,1,46,43,8.0,0.0,0.0,425.66376658427146,0.0,375.3886292950367,44468.0,44,33,2,13845,201102800,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3083.741603183243,0.0,312.0,216.0,0.0,44868.0,1,1,2,63.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,801.0523958793082,0.018014131417633087,0.01785353472138959,24926.666666666664,8,4,8,8_0,8_4,8_0_1 -2801,2,60.0,3,0.0,7,111,2,56,48,10.0,0.0,0.0,1014.4003521952943,0.0,2096.74021877904,46193.0,71,71,1,13846,201102801,,,680.0,,3.0,1.0,5.0,1.0,3.0,2.0,3631.0112475133324,1950.0,0.0,0.0,0.0,89530.0,1,1,1,130.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3111.140570974334,0.06735090968272972,0.034749699217852495,44765.0,10,5,10,10_1,10_4,10_0_0 -2802,2,60.0,3,0.0,6,111,2,72,31,3.0,0.0,208.188947934516,2245.649230120868,0.0,0.0,50866.0,60,10,1,13849,201102802,,,190.0,,1.0,3.0,4.0,0.0,2.0,1.5,2412.0152125429054,0.0,1646.0,0.0,0.0,18817.0,5,1,1,100.0,8,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2453.838178055384,0.04824122553484418,0.1304053875780084,12544.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_0 -2803,2,31.0,3,0.0,2,120,2,63,43,6.0,0.0,0.0,2141.961902363161,0.0,0.0,38272.0,50,33,1,13850,201102803,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1982.4032871582426,0.0,1570.0,0.0,0.0,43163.0,1,1,2,50.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2141.961902363161,0.05596681392044212,0.04962495429796726,20553.809523809523,6,3,6,6_1,6_0,6_0_1 -2804,2,74.0,1,0.0,4,111,6,0,75,10.0,1026.4370379128568,0.0,463.8643610213215,0.0,0.0,64397.0,0,70,1,13852,201102804,,,,,0.0,1.0,5.0,0.0,1.0,1.0,4975.517958421847,0.0,340.0,0.0,0.0,91299.0,0,5,1,80.0,8,6.0,1,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1490.3013989341782,0.023142404132710813,0.016323304734270672,91299.0,10,5,10,10_1,10_2,10_0_1 -2805,2,53.0,3,0.0,1,112,6,54,68,9.0,1745.1016100527704,624.566843803548,764.011888741,0.0,0.0,32662.0,60,70,1,13853,201102805,,,460.0,,2.0,3.0,4.0,0.0,2.0,1.5,2153.8083933634994,0.0,560.0,0.0,0.0,49110.0,1,1,2,118.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3133.6803425973185,0.0959426961789639,0.06380941442877863,32740.0,9,5,9,9_1,9_0,9_1_0 -2806,2,76.0,2,0.0,2,111,2,0,77,6.0,0.0,0.0,272.86138883607146,0.0,938.4715732375919,20981.0,0,71,2,13855,201102806,,,155.0,215.0,0.0,1.0,3.0,0.0,1.0,1.0,3082.5361147697217,0.0,200.0,540.0,0.0,20485.0,0,5,3,60.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1211.3329620736633,0.05773475821331983,0.05913268059915369,20485.0,6,3,6,6_0,6_2,6_0_1 -2807,1,26.0,2,175.0,1,111,2,0,35,2.0,0.0,0.0,184.18143746434822,0.0,0.0,7594.0,0,20,2,13856,201102807,,,,100.0,1.0,0.0,1.0,0.0,1.0,1.0,2768.701979701799,0.0,135.0,0.0,0.0,10391.0,0,4,3,28.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,184.18143746434822,0.02425354720362763,0.01772509262480495,10391.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -2808,2,53.0,3,0.0,6,111,5,62,63,10.0,0.0,832.755791738064,2221.0917051256215,130.34327406077665,0.0,96839.0,50,50,1,13857,201102808,,,572.0,,3.0,1.0,4.0,1.0,3.0,2.0,1294.9381898257664,0.0,1628.0,0.0,0.0,98823.0,1,1,2,88.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3184.1907709244624,0.03288128513227587,0.032221150652423654,49411.5,10,5,10,10_1,10_2,10_0_0 -2809,2,44.0,1,0.0,1,112,2,55,48,8.0,2390.7892057722956,0.0,605.7522832160786,97.32297796537989,0.0,45617.0,50,71,1,13858,201102809,,,239.0,,2.0,0.0,6.0,1.0,3.0,1.8,4456.847358971077,0.0,444.0,0.0,0.0,47376.0,1,1,1,110.0,5,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3093.864466953754,0.0678226202282867,0.06530446780972969,26320.0,8,4,8,8_1,8_0,8_1_0 -2810,1,50.0,5,240.0,4,120,1,0,85,2.0,57.11241632899976,0.0,354.7198054868929,0.0,0.0,3558.0,0,71,2,1386,201102810,36.0,36.0,,,0.0,1.0,3.0,0.0,1.0,1.0,3555.0190826695425,0.0,260.0,0.0,0.0,11649.0,0,7,3,65.0,0,3.0,1,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,411.83222181589264,0.11574823547383155,0.03535343993612264,11649.0,2,1,2_1,2_0_1,2_1_1,2_0_1 -2811,1,36.0,4,200.0,7,111,2,0,52,3.0,0.0,0.0,504.79356934673217,0.0,1737.9103208103552,40608.0,0,50,1,13860,201102811,,,600.0,,1.0,0.0,5.0,4.0,5.0,2.6,1568.0519396879922,0.0,370.0,1000.0,0.0,35340.0,0,1,3,125.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2242.7038901570872,0.05522812968274939,0.06346077787654462,13592.307692307691,3,2,3_1,3_1_1,3_2_1,3_0_0 -2812,2,82.0,3,0.0,2,111,4,77,78,5.0,0.0,0.0,327.43366660328576,0.0,1685.7730111860446,25027.0,70,70,2,13862,201102812,,,,,0.0,3.0,3.0,0.0,2.0,1.5,3435.9063335477986,0.0,240.0,970.0,0.0,25250.0,5,5,1,57.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2013.2066777893303,0.0804413904099305,0.07973095753621111,16833.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_1 -2813,1,29.0,3,70.0,4,111,1,0,65,6.0,0.0,0.0,409.2920832541072,0.0,0.0,15572.0,0,50,2,13865,201102813,,,,230.0,1.0,0.0,1.0,0.0,1.0,1.0,3485.426682194594,0.0,300.0,0.0,0.0,20344.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,409.2920832541072,0.026283848141157667,0.020118564847331263,20344.0,6,3,6,6_0,6_4,6_0_1 -2814,1,47.0,3,196.0,1,111,5,56,68,1.0,0.0,555.170527825376,982.3009998098572,0.0,0.0,8519.0,42,71,2,13866,201102814,,,154.0,,2.0,0.0,2.0,0.0,2.0,1.5,2963.2219464671875,0.0,720.0,0.0,0.0,12882.0,4,4,3,60.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1537.471527635233,0.18047558723268378,0.11935037475820781,8588.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -2815,2,23.0,3,0.0,4,111,2,56,65,2.0,0.0,0.0,818.5841665082144,0.0,1390.3282566482842,12648.0,60,41,2,13867,201102815,,,,250.0,2.0,0.0,2.0,1.0,3.0,1.8,3075.0008969637797,0.0,600.0,800.0,0.0,19517.0,4,1,3,45.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2208.9124231564983,0.17464519474671872,0.11317889138476704,10842.777777777777,2,1,2_0,2_0_0,2_3_0,2_0_1 -2816,2,54.0,3,0.0,1,400,2,13,13,9.0,3331.5576191916525,0.0,941.3717914844465,0.0,0.0,33087.0,70,71,1,13869,201102816,,,,,2.0,1.0,7.0,0.0,2.0,1.5,2634.047731432488,0.0,690.0,0.0,0.0,51113.0,1,1,1,159.0,0,0.0,3,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4272.929410676099,0.1291422434997461,0.08359770333723512,34075.333333333336,9,5,9,9_1,9_0,9_1_0 -2817,1,26.0,4,236.0,1,111,4,0,63,1.0,0.0,0.0,802.2124831780501,0.0,0.0,6554.0,0,50,2,1387,201102817,,,,220.0,1.0,0.0,1.0,0.0,1.0,1.0,2384.3780670903984,0.0,588.0,0.0,0.0,8113.0,0,4,3,17.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,802.2124831780501,0.12240043991120692,0.09887988206311477,8113.0,1,1,1_1,1_0_1,1_2_1,1_1_0 -2818,1,53.0,3,250.0,9,221,4,85,21,2.0,0.0,0.0,2455.752499524643,0.0,0.0,25734.0,71,31,1,13870,201102818,,,320.0,500.0,3.0,2.0,4.0,4.0,6.0,3.3,2961.389904694652,0.0,1800.0,0.0,0.0,32180.0,6,1,3,110.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2455.752499524643,0.0954283243772691,0.07631300495726051,9751.515151515152,1,1,1_1,1_1_1,1_1_1,1_0_0 -2819,2,81.0,3,0.0,3,111,2,0,77,7.0,0.0,0.0,3656.3426104033574,0.0,156.41192887293198,17337.0,0,50,1,13871,201102819,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3741.753950132186,0.0,2680.0,90.0,0.0,23598.0,0,5,5,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3812.7545392762895,0.2199200864784155,0.1615710881971476,23598.0,7,4,7,7_1,7_4,7_0_1 -2820,2,52.0,2,0.0,6,112,4,38,22,10.0,0.0,555.170527825376,1064.1594164606786,0.0,0.0,98952.0,50,50,1,13872,201102820,,,190.0,,2.0,1.0,4.0,0.0,2.0,1.5,1920.242963294729,0.0,780.0,0.0,0.0,76213.0,1,1,2,72.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1619.3299442860546,0.01636480257383433,0.021247424248960867,50808.666666666664,10,5,10,10_1,10_0,10_0_0 -2821,2,53.0,3,0.0,6,120,2,78,64,7.0,0.0,0.0,1412.0576872266697,0.0,0.0,30208.0,70,50,1,13874,201102821,,,403.0,,1.0,1.0,5.0,0.0,2.0,1.5,1446.251922762157,0.0,1035.0,0.0,0.0,33780.0,5,1,1,110.0,0,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1412.0576872266697,0.046744494412959144,0.041801589319913256,22520.0,7,4,7,7_1,7_1,7_0_0 -2822,2,60.0,3,0.0,5,112,5,21,21,10.0,0.0,693.9631597817199,690.6637498501187,78.20596443646599,296.7693848118026,24099.0,50,50,1,13875,201102822,,,149.0,,2.0,2.0,4.0,0.0,2.0,1.5,3049.6504559493696,276.0,401.0,0.0,0.0,61141.0,1,1,1,90.0,7,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1759.6022588801075,0.07301557155401085,0.028779415758330866,40760.666666666664,10,5,10,10_1,10_1,10_0_0 -2823,2,39.0,2,0.0,2,111,2,37,21,9.0,3680.5779412022066,0.0,824.0413942849358,302.3963958210018,0.0,47838.0,50,43,1,13876,201102823,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2728.1332070750195,0.0,604.0,0.0,0.0,54319.0,1,1,2,135.0,8,6.0,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4807.015731308144,0.10048529895288565,0.08849602774918801,30177.222222222223,9,5,9,9_1,9_2,9_0_1 -2824,2,34.0,2,0.0,2,112,2,0,34,5.0,0.0,0.0,2305.6787356648038,0.0,0.0,29143.0,0,20,1,13878,201102824,,,91.0,,1.0,0.0,6.0,2.0,3.0,1.6,1638.878165475892,0.0,1690.0,0.0,0.0,29312.0,0,1,3,90.0,7,0.0,2,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2305.6787356648038,0.079116039380462,0.07865989136411039,18320.0,5,3,5,5_1,5_0,5_0_1 -2825,2,50.0,2,0.0,1,120,4,85,85,2.0,0.0,0.0,750.3688192991965,0.0,0.0,30473.0,60,50,1,13879,201102825,,,400.0,,0.0,1.0,1.0,1.0,3.0,2.0,2972.406639600135,0.0,550.0,0.0,0.0,19730.0,6,5,1,70.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,750.3688192991965,0.024624054713982754,0.03803187122651781,9865.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -2826,1,52.0,3,362.0,1,111,6,0,85,1.0,475.9368027416647,0.0,1118.731694227893,0.0,0.0,23523.0,0,50,1,1388,201102826,,,504.0,93.0,1.0,2.0,6.0,2.0,3.0,2.0,1473.584619839343,0.0,820.0,0.0,0.0,11874.0,0,6,3,91.0,8,7.0,2,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1594.6684969695577,0.06779188440970785,0.13429918283388562,5937.0,1,1,1_1,1_1_1,1_3_1,1_1_0 -2827,1,54.0,4,103.0,2,111,1,0,46,6.0,0.0,0.0,465.2286679655018,0.0,1060.1252956943167,23004.0,0,43,2,13881,201102827,,,,234.0,2.0,1.0,5.0,2.0,3.0,2.0,2188.0027729796316,0.0,341.0,610.0,0.0,39067.0,0,1,3,76.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1525.3539636598184,0.066308205688568,0.03904456353597201,19533.5,6,3,6,6_0,6_3,6_0_1 -2828,2,58.0,3,0.0,1,221,2,75,46,7.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,32807.0,50,50,1,13882,201102828,,,300.0,,1.0,1.0,5.0,0.0,2.0,1.5,2532.0749867804398,600.0,0.0,0.0,0.0,33656.0,7,1,2,120.0,1,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,957.2740218382565,0.029178956376329945,0.028442893446584756,22437.333333333332,7,4,7,7_1,7_1,7_1_0 -2829,2,55.0,3,0.0,5,111,2,0,42,8.0,0.0,0.0,1373.3283809698491,0.0,2461.5545091376853,33934.0,0,30,2,13883,201102829,,,,,1.0,1.0,4.0,1.0,2.0,1.5,4082.704663120031,673.0,750.0,1000.0,0.0,42536.0,0,1,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3834.8828901075344,0.11301004568007116,0.09015617101061535,28357.333333333332,8,4,8,8_0,8_4,8_0_0 -2830,2,58.0,2,0.0,1,112,4,34,42,10.0,0.0,416.377895869032,2616.740718937925,130.34327406077665,0.0,36146.0,20,20,1,13885,201102830,,,180.0,,2.0,1.0,6.0,0.0,2.0,1.5,1378.155205088222,0.0,1918.0,0.0,0.0,63421.0,1,1,1,160.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3163.4618888677337,0.0875190031778823,0.049880353335137156,42280.666666666664,10,5,10,10_1,10_0,10_1_0 -2831,2,42.0,3,0.0,99,300,2,52,48,6.0,1903.7472109666587,0.0,1005.2009688662185,139.0328256648284,667.7311158265557,41253.0,44,31,1,13888,201102831,,,350.0,,2.0,0.0,6.0,2.0,4.0,2.3,2767.166190626379,621.0,500.0,0.0,0.0,44905.0,1,1,1,200.0,0,0.0,4,5,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3715.7121213242613,0.0900713189664815,0.0827460666145031,19523.913043478264,6,3,6,6_1,6_0,6_0_0 -2832,2,38.0,4,0.0,3,111,2,0,46,8.0,0.0,0.0,654.8673332065715,0.0,625.6477154917279,46859.0,0,31,2,1389,201102832,,,,680.0,1.0,0.0,3.0,1.0,2.0,1.3,3012.178181290481,0.0,480.0,360.0,0.0,37255.0,0,1,3,65.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1280.5150486982993,0.027326981982080268,0.03437162927656152,28657.69230769231,8,4,8,8_0,8_3,8_0_1 -2833,2,67.0,2,0.0,2,111,1,78,75,8.0,0.0,0.0,865.3155602211496,0.0,1061.4237848169766,50484.0,50,50,2,13891,201102833,,,,336.0,0.0,1.0,3.0,0.0,2.0,1.5,2076.6518151487658,735.0,354.0,156.0,0.0,41298.0,5,5,3,67.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1926.7393450381262,0.03816534634811279,0.04665454368342598,27532.0,8,4,8,8_0,8_4,8_0_1 -2834,2,22.0,3,0.0,8,112,4,0,54,7.0,0.0,0.0,293.3259929987768,0.0,0.0,20596.0,0,31,1,13892,201102834,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2925.8021731072326,0.0,215.0,0.0,0.0,22240.0,0,1,3,60.0,9,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,293.3259929987768,0.014241891289511402,0.013189118390232771,22240.0,7,4,7,7_1,7_0,7_0_0 -2835,2,50.0,3,0.0,6,111,5,0,65,4.0,0.0,315.05927454090084,594.8378276626357,46.92357866187959,0.0,14299.0,0,50,1,13893,201102835,,,96.0,,1.0,0.0,4.0,0.0,1.0,1.0,1645.1175731970272,0.0,436.0,0.0,0.0,16436.0,0,1,1,75.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,956.8206808654162,0.06691521650922555,0.05821493556007643,16436.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -2836,2,51.0,5,0.0,2,111,2,74,48,8.0,0.0,0.0,900.4425831590357,0.0,52.13730962431066,28361.0,50,50,1,13894,201102836,,,,720.0,2.0,3.0,3.0,1.0,3.0,2.0,1753.786700874154,0.0,660.0,30.0,0.0,56430.0,5,1,3,61.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,952.5798927833464,0.03358766943278962,0.01688073529653281,28215.0,8,4,8,8_1,8_4,8_0_1 -2837,2,61.0,3,0.0,5,111,2,77,75,6.0,1983.0700114236026,0.0,545.7227776721429,225.92834170534618,0.0,22346.0,50,50,1,13895,201102837,,,82.0,,0.0,3.0,5.0,0.0,2.0,1.5,3048.121062016641,0.0,400.0,0.0,0.0,31894.0,5,5,1,180.0,4,4.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2754.7211308010915,0.12327580465412563,0.08637113973791595,21262.666666666668,6,3,6,6_1,6_2,6_0_0 -2838,2,52.0,1,0.0,4,111,2,33,33,10.0,0.0,0.0,759.918967908459,0.0,2704.1884591809126,94549.0,20,20,1,13896,201102838,,,653.0,,2.0,0.0,9.0,2.0,4.0,2.5,1541.7388422356123,0.0,557.0,1556.0,0.0,141945.0,1,1,2,190.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3464.1074270893714,0.036638223853127705,0.024404575202292236,56778.0,10,5,10,10_1,10_3,10_0_1 -2839,2,38.0,3,0.0,8,111,4,85,21,5.0,0.0,0.0,2111.947149591193,302.3963958210018,0.0,32784.0,60,50,1,13897,201102839,,,800.0,,1.0,0.0,5.0,3.0,5.0,2.6,2318.2633309678645,0.0,1548.0,0.0,0.0,43774.0,6,1,2,200.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2414.343545412195,0.07364395880344665,0.05515473900973626,16836.153846153844,4,2,4_0,4_1_0,4_3_0,4_0_0 -2840,2,89.0,3,0.0,1,400,4,0,71,4.0,0.0,0.0,2489.860173129152,312.82385774586396,0.0,15417.0,0,70,1,13898,201102840,,,186.0,,0.0,4.0,5.0,0.0,1.0,1.0,2753.3399966015395,0.0,1825.0,0.0,0.0,16380.0,0,5,1,77.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2802.684030875016,0.18179179028831913,0.17110403118895093,16380.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -2841,2,67.0,2,0.0,1,111,2,0,75,8.0,237.96840137083234,0.0,212.83188329213573,0.0,757.7288998733148,11786.0,0,41,1,139,201102841,,,150.0,,0.0,2.0,4.0,0.0,1.0,1.0,3497.768108413451,0.0,156.0,436.0,0.0,28010.0,0,5,1,88.0,9,7.0,1,8,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1208.5291845362829,0.10253938439982037,0.043146347180874074,28010.0,8,4,8,8_1,8_3,8_1_0 -2842,2,65.0,3,0.0,6,111,4,0,77,4.0,0.0,0.0,1528.023777482,0.0,0.0,16814.0,0,71,1,13900,201102842,,,300.0,,0.0,1.0,4.0,1.0,2.0,1.5,2945.8919225938253,0.0,1120.0,0.0,0.0,23330.0,0,5,1,90.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1528.023777482,0.0908780645582253,0.06549608990492928,15553.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_0 -2843,1,40.0,3,247.0,1,111,2,0,85,3.0,0.0,0.0,520.2053088180996,0.0,1075.2513942456615,8559.0,0,71,2,13901,201102843,,,160.0,30.0,0.0,0.0,2.0,0.0,1.0,1.0,3083.059907826647,1000.0,0.0,0.0,0.0,13908.0,0,7,3,50.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1595.456703063761,0.1864069053702256,0.11471503473279847,13908.0,3,2,3_1,3_0_1,3_2_1,3_1_0 -2844,2,81.0,3,0.0,6,211,1,0,77,9.0,0.0,0.0,518.4366387885358,0.0,0.0,17346.0,0,70,2,13902,201102844,,,,,0.0,3.0,2.0,0.0,1.0,1.0,2751.9261233972675,0.0,380.0,0.0,0.0,30290.0,0,5,3,24.0,4,3.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,518.4366387885358,0.029887964878850214,0.017115768860631753,30290.0,9,5,9,9_0,9_1,9_0_0 -2845,2,66.0,3,0.0,2,111,2,78,75,6.0,0.0,0.0,777.6549581828036,0.0,1390.3282566482842,44227.0,71,70,1,13903,201102845,,,250.0,,0.0,1.0,5.0,0.0,2.0,1.5,2020.3039034720582,0.0,570.0,800.0,0.0,31865.0,5,5,1,82.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2167.983214831088,0.0490194499927892,0.06803650446669035,21243.333333333332,6,3,6,6_1,6_3,6_0_1 -2846,2,92.0,3,0.0,4,111,1,78,72,3.0,0.0,0.0,311.0619832731214,0.0,625.6477154917279,26176.0,70,71,2,13904,201102846,,,,,0.0,2.0,2.0,0.0,2.0,1.5,3519.0392447673266,0.0,228.0,360.0,0.0,19890.0,5,5,1,48.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,936.7096987648493,0.03578505878533196,0.047094504714170406,13260.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -2847,2,51.0,2,0.0,7,112,2,85,21,9.0,0.0,0.0,240.11802217574288,7707.632272793925,0.0,79262.0,50,31,1,13906,201102847,,,,,1.0,2.0,5.0,1.0,3.0,2.0,2131.4034288039966,0.0,176.0,0.0,0.0,65268.0,5,1,1,200.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,7947.750294969668,0.10027188684324984,0.12177101021893835,32634.0,9,5,9,9_1,9_0,9_0_0 -2848,2,34.0,2,0.0,5,111,2,0,37,6.0,0.0,0.0,245.5752499524643,0.0,933.2578422751608,41409.0,0,41,2,13907,201102848,,,220.0,275.0,1.0,0.0,3.0,0.0,1.0,1.0,2635.0713570578387,0.0,180.0,537.0,0.0,21505.0,0,1,3,80.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1178.833092227625,0.02846804057638738,0.054816698080800974,21505.0,6,3,6,6_0,6_3,6_0_0 -2849,2,52.0,2,0.0,2,111,2,0,23,10.0,0.0,0.0,884.3490249907694,0.0,1827.9273702176245,37902.0,0,10,1,13908,201102849,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2674.322531034732,1700.0,0.0,0.0,0.0,67722.0,0,1,1,120.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2712.2763952083938,0.07156024471553991,0.040050152021623604,67722.0,10,5,10,10_1,10_3,10_0_1 -2850,2,80.0,3,0.0,1,400,5,71,71,2.0,0.0,104.094473967258,335.6195082683679,97.32297796537989,0.0,11035.0,60,71,1,13909,201102850,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2760.985310707613,0.0,246.0,0.0,0.0,16632.0,5,5,1,96.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,537.0369602010057,0.048666693266969256,0.03228937952146499,11088.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -2851,2,51.0,3,0.0,2,221,2,0,56,2.0,2197.2415726573518,0.0,545.7227776721429,604.7927916420036,0.0,21216.0,0,71,1,1391,201102851,,,370.0,,1.0,2.0,4.0,0.0,1.0,1.0,3197.7866500778314,0.0,400.0,0.0,0.0,12220.0,0,1,3,90.0,1,2.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3347.757141971498,0.1577939829360623,0.2739572129272912,12220.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -2852,2,40.0,1,0.0,6,111,6,46,38,10.0,0.0,0.0,1746.3128885508572,0.0,0.0,54804.0,20,12,2,13910,201102852,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2512.0254234611425,0.0,1280.0,0.0,0.0,88243.0,1,1,2,66.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1746.3128885508572,0.0318646976233643,0.019789817759492054,58828.666666666664,10,5,10,10_0,10_4,10_0_0 -2853,1,28.0,4,420.0,1,111,2,0,85,1.0,0.0,0.0,341.0767360450893,0.0,1390.3282566482842,4811.0,0,71,1,13912,201102853,,,250.0,,0.0,0.0,2.0,2.0,3.0,1.6,2919.368091372304,0.0,250.0,800.0,0.0,14349.0,0,4,3,40.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1731.4049926933735,0.3598846378493813,0.12066380881548355,8968.125,1,1,1_1,1_1_1,1_3_1,1_1_0 -2854,2,92.0,2,0.0,1,120,4,0,77,6.0,0.0,0.0,1596.2391246910179,208.54923849724264,0.0,19152.0,0,50,1,13913,201102854,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2374.17540875409,0.0,1170.0,0.0,0.0,29917.0,0,5,1,98.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1804.7883631882605,0.09423498136947893,0.06032651546573054,19944.666666666668,6,3,6,6_1,6_0,6_1_0 -2855,2,58.0,2,0.0,1,111,1,37,38,10.0,0.0,0.0,470.68589574222324,0.0,69.5164128324142,61056.0,41,31,2,13914,201102855,40.0,40.0,,460.0,2.0,0.0,2.0,0.0,2.0,1.5,4215.123067356567,0.0,345.0,40.0,0.0,73296.0,4,1,3,63.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,540.2023085746374,0.008847653114757558,0.007370147191860912,48864.0,10,5,10,10_0,10_4,10_1_0 -2856,2,59.0,3,0.0,1,111,2,0,35,1.0,0.0,0.0,204.6460416270536,0.0,938.4715732375919,12874.0,0,20,2,13916,201102856,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2994.8016955338862,0.0,150.0,540.0,0.0,5080.0,0,4,1,38.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1143.1176148646455,0.08879273068701611,0.22502315253241054,5080.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -2857,2,50.0,2,0.0,4,212,2,0,13,6.0,0.0,0.0,1146.0178331115,4636.744735922028,0.0,24227.0,0,42,1,13917,201102857,,,,,1.0,0.0,5.0,0.0,1.0,1.0,1453.2420533688376,0.0,840.0,0.0,0.0,19172.0,0,1,1,70.0,2,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5782.762569033528,0.23869082300877237,0.30162542087594035,19172.0,5,3,5,5_1,5_0,5_0_1 -2858,2,58.0,5,0.0,5,111,2,0,54,8.0,0.0,0.0,147.34514997147858,0.0,396.243553144761,36178.0,0,50,2,13919,201102858,,,,,3.0,0.0,4.0,2.0,3.0,2.0,2715.628398861246,0.0,108.0,228.0,0.0,53440.0,0,1,2,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,543.5887031162396,0.015025393971923257,0.010171944294839813,26720.0,8,4,8,8_0,8_4,8_0_0 -2859,2,45.0,2,0.0,1,111,2,0,52,5.0,0.0,0.0,272.86138883607146,0.0,1042.7461924862132,12762.0,0,50,2,1392,201102859,,,,206.0,1.0,0.0,2.0,0.0,1.0,1.0,3170.8829833571217,0.0,200.0,600.0,0.0,18880.0,0,1,3,47.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1315.6075813222847,0.10308788444775777,0.06968260494291761,18880.0,5,3,5,5_0,5_4,5_1_0 -2860,0,54.0,2,0.0,99,111,2,78,53,8.0,0.0,0.0,62.75811943229643,0.0,151.1981979105009,39177.0,60,20,2,13921,201102860,,,,,1.0,4.0,5.0,0.0,2.0,1.5,2967.2268614847917,0.0,46.0,87.0,0.0,39219.0,6,1,5,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,213.95631734279735,0.005461273638685896,0.005455425108819637,26146.0,8,4,8,8_0,8_3,8_0_0 -2861,2,70.0,2,0.0,1,300,2,78,78,3.0,396.6140022847205,0.0,2622.1979467146466,187.69431464751835,0.0,23882.0,70,50,1,13923,201102861,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1117.3455145774133,0.0,1922.0,0.0,0.0,20876.0,5,5,1,89.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3206.506263646885,0.13426456174721066,0.15359773249889275,13917.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -2862,2,49.0,3,0.0,5,300,2,67,43,9.0,1269.1648073111057,0.0,1009.5871386934643,76.46805411565563,0.0,28643.0,50,50,1,13924,201102862,,,,,4.0,0.0,5.0,2.0,4.0,2.5,1560.2057159847075,0.0,740.0,0.0,0.0,73052.0,1,1,1,97.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2355.220000120226,0.082226722065434,0.032240321964083475,29220.8,9,5,9,9_1,9_0,9_0_0 -2864,2,80.0,3,0.0,4,300,2,71,71,4.0,1864.0858107381866,0.0,791.2980276246072,159.8877495145527,0.0,37570.0,70,71,1,13926,201102864,,,,,0.0,5.0,4.0,0.0,2.0,1.5,2451.167004823923,0.0,580.0,0.0,0.0,23729.0,5,5,5,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2815.2715878773465,0.07493403215004915,0.11864265615396125,15819.333333333334,4,2,4_0,4_1_0,4_0_0,4_0_1 -2865,2,63.0,1,0.0,1,111,6,74,74,10.0,4759.368027416646,0.0,2182.8911106885716,0.0,0.0,47809.0,30,12,1,13927,201102865,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1546.0274499024983,0.0,1600.0,0.0,0.0,81774.0,5,5,1,200.0,9,7.0,3,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,6942.259138105218,0.14520820636501952,0.08489567757606596,54516.0,10,5,10,10_1,10_3,10_1_0 -2866,2,52.0,4,0.0,1,111,2,75,62,5.0,0.0,0.0,541.0135211708235,156.41192887293198,1118.261450015488,19651.0,50,50,1,13928,201102866,,,362.0,,1.0,4.0,3.0,0.0,2.0,1.5,1801.7700619760346,1040.0,0.0,0.0,0.0,25510.0,5,1,4,61.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1815.6869000592435,0.0923966668393081,0.07117549588628944,17006.666666666668,4,2,4_0,4_1_0,4_2_0,4_1_0 -2867,2,49.0,4,0.0,5,111,2,0,52,3.0,0.0,0.0,463.8643610213215,0.0,1737.9103208103552,15453.0,0,71,2,13929,201102867,,,,398.0,2.0,0.0,3.0,2.0,3.0,2.0,6026.021690763543,0.0,340.0,1000.0,0.0,28437.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2201.774681831677,0.14248202173245822,0.07742640510010468,14218.5,3,2,3_0,3_0_0,3_4_0,3_0_0 -2868,2,74.0,4,0.0,1,111,2,78,78,4.0,0.0,0.0,1555.3099163656073,0.0,1303.4327406077664,15658.0,71,71,1,1393,201102868,,,460.0,333.0,0.0,5.0,4.0,0.0,2.0,1.5,5592.818464430078,0.0,1140.0,750.0,0.0,23047.0,5,5,3,80.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2858.7426569733734,0.18257393389790352,0.12403968659579874,15364.666666666666,4,2,4_0,4_1_0,4_2_0,4_1_0 -2869,2,55.0,3,0.0,7,111,5,56,78,6.0,0.0,333.10231669522557,759.918967908459,291.9689338961397,0.0,37133.0,70,71,1,13930,201102869,,,200.0,,2.0,0.0,4.0,1.0,3.0,2.0,2655.1649703595663,0.0,557.0,0.0,0.0,38610.0,1,5,1,79.0,6,4.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1384.990218499824,0.03729809653138244,0.03587128253042798,19305.0,6,3,6,6_1,6_2,6_0_0 -2870,2,24.0,3,0.0,99,112,6,0,47,6.0,0.0,0.0,613.9381248811608,55.61313026593137,0.0,9418.0,0,44,2,13931,201102870,,,,,1.0,0.0,4.0,0.0,1.0,1.0,8599.468069866123,0.0,450.0,0.0,0.0,19354.0,0,1,3,50.0,9,1.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,669.5512551470921,0.07109272193109918,0.03459498063176047,19354.0,6,3,6,6_0,6_1,6_0_0 -2871,2,58.0,3,0.0,3,112,2,56,63,6.0,1745.1016100527704,0.0,750.3688192991965,130.34327406077665,0.0,33305.0,71,50,1,13934,201102871,,,420.0,,2.0,3.0,3.0,0.0,2.0,1.5,1816.2787418246423,0.0,550.0,0.0,0.0,31771.0,1,1,2,48.0,10,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2625.813703412744,0.07884142631474986,0.08264812890411835,21180.666666666668,6,3,6,6_1,6_0,6_0_1 -2872,2,49.0,5,0.0,2,111,2,38,37,10.0,0.0,0.0,1290.6343691946179,0.0,3076.1012678343286,106554.0,12,12,1,13935,201102872,,,968.0,,3.0,0.0,6.0,4.0,6.0,3.3,1037.2579072197714,0.0,946.0,1770.0,0.0,155115.0,1,1,2,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4366.735637028946,0.040981433236001896,0.028151601308893055,47004.545454545456,10,5,10,10_1,10_4,10_0_1 -2873,2,59.0,3,0.0,1,112,2,72,71,1.0,2141.715612337491,0.0,686.2463929227197,0.0,0.0,34797.0,71,60,1,13937,201102873,,,170.0,,0.0,2.0,4.0,0.0,2.0,1.5,3977.1486498140416,0.0,503.0,0.0,0.0,12814.0,5,7,1,130.0,9,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2827.962005260211,0.08127028207202376,0.22069314852974956,8542.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0 -2874,2,57.0,3,0.0,1,120,2,78,78,6.0,2062.392811880547,0.0,1364.3069441803573,140.77073598563877,0.0,41336.0,71,71,1,13938,201102874,,,263.0,,0.0,2.0,7.0,0.0,2.0,1.5,2770.673951580971,0.0,1000.0,0.0,0.0,30240.0,5,7,5,96.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3567.470492046543,0.08630420195583856,0.11797190780577192,20160.0,6,3,6,6_1,6_0,6_1_0 -2875,2,54.0,4,0.0,7,111,1,56,64,6.0,0.0,0.0,491.1504999049286,0.0,0.0,50743.0,60,71,2,13939,201102875,,,,950.0,3.0,4.0,3.0,1.0,3.0,2.0,3377.118313940542,0.0,360.0,0.0,0.0,42286.0,1,1,3,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,491.1504999049286,0.009679177421613398,0.011614967126352188,21143.0,6,3,6,6_0,6_3,6_0_0 -2876,2,41.0,5,0.0,6,112,4,56,62,2.0,0.0,0.0,2196.5341801303753,194.64595593075978,0.0,31658.0,50,71,1,1394,201102876,,,220.0,,2.0,0.0,4.0,2.0,4.0,2.1,2048.271370163423,0.0,1610.0,0.0,0.0,21540.0,1,1,2,90.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2391.1801360611353,0.07553162347782978,0.11101114837795428,10257.142857142857,2,1,2_0,2_1_0,2_0_0,2_0_0 -2877,2,58.0,2,0.0,1,112,2,78,54,9.0,0.0,555.170527825376,1890.9294246339753,180.74267336427695,0.0,68993.0,71,50,1,13942,201102877,,,372.0,,2.0,2.0,3.0,1.0,3.0,2.0,2606.736403161649,0.0,1386.0,0.0,0.0,64526.0,5,1,1,80.0,10,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2626.842625823628,0.03807404556728405,0.04070983209595556,32263.0,9,5,9,9_1,9_1,9_1_0 -2878,2,53.0,1,0.0,1,111,2,48,38,10.0,0.0,0.0,716.2611456946876,0.0,2104.6093985013404,54225.0,31,20,1,13943,201102878,,,472.0,,2.0,1.0,5.0,1.0,3.0,2.0,2200.0812179757745,0.0,525.0,1211.0,0.0,74715.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2820.870544196028,0.05202158679937349,0.03775507654682497,37357.5,9,5,9,9_1,9_4,9_1_0 -2879,2,67.0,2,0.0,7,111,1,75,78,6.0,0.0,0.0,335.6195082683679,0.0,0.0,19131.0,50,50,2,13945,201102879,,,,,0.0,0.0,3.0,0.0,2.0,1.5,2059.833230870208,0.0,246.0,0.0,0.0,29596.0,5,5,1,66.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,335.6195082683679,0.017543228700453082,0.011340029337355315,19730.666666666668,6,3,6,6_0,6_3,6_0_0 -2880,2,68.0,4,0.0,2,111,1,0,75,7.0,0.0,0.0,409.2920832541072,0.0,0.0,22291.0,0,20,2,13946,201102880,,,,230.0,0.0,0.0,1.0,0.0,1.0,1.0,2346.39247598558,0.0,300.0,0.0,0.0,21585.0,0,5,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,409.2920832541072,0.018361315475039577,0.01896187552717661,21585.0,6,3,6,6_0,6_4,6_0_1 -2881,2,56.0,2,0.0,4,111,1,0,22,6.0,0.0,0.0,338.3481221567286,0.0,0.0,19587.0,0,42,2,13947,201102881,,,,,1.0,1.0,4.0,0.0,1.0,1.0,3373.509643406437,0.0,248.0,0.0,0.0,20172.0,0,1,1,70.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,338.3481221567286,0.01727411661595592,0.01677315695799765,20172.0,6,3,6,6_0,6_3,6_0_1 -2882,2,58.0,3,0.0,6,112,4,52,75,9.0,0.0,0.0,2946.9029994295715,59.088950907552075,0.0,35493.0,50,50,1,13948,201102882,,,285.0,,1.0,3.0,6.0,0.0,2.0,1.5,1889.516359155815,0.0,2160.0,0.0,0.0,44781.0,1,5,1,150.0,10,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3005.9919503371234,0.08469252952235999,0.06712650343532131,29854.0,9,5,9,9_1,9_1,9_0_0 -2883,2,63.0,3,0.0,1,111,6,77,74,8.0,0.0,0.0,1394.321696952325,45.18566834106924,0.0,26152.0,50,44,1,1395,201102883,,,335.0,,0.0,1.0,4.0,0.0,2.0,1.5,1532.8364073254397,0.0,1022.0,0.0,0.0,40111.0,5,5,1,88.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1439.5073652933943,0.05504387294636717,0.03588809466962664,26740.666666666668,8,4,8,8_1,8_3,8_1_0 -2884,2,46.0,3,0.0,5,400,2,11,11,2.0,285.5620816449988,208.188947934516,1104.294342577727,243.30744491344973,412.89653539033395,66033.0,60,50,1,13954,201102884,,,246.0,,2.0,0.0,5.0,2.0,4.0,2.5,1603.4492922825887,384.0,663.0,0.0,0.0,30807.0,1,1,1,120.0,0,0.0,4,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2254.2493524610254,0.03413822410705292,0.07317328374918121,12322.8,2,1,2_0,2_1_0,2_0_0,2_0_0 -2885,2,61.0,3,0.0,1,221,2,78,75,5.0,2696.9752155360998,305.3437903039568,960.2366258779056,319.7754990291054,55.9130725007744,46321.0,71,70,1,13955,201102885,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2030.871643455287,52.0,684.0,0.0,0.0,26222.0,5,5,1,90.0,1,3.0,3,7,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4338.244203247842,0.09365609989524928,0.16544291828418284,17481.333333333332,5,3,5,5_1,5_1,5_1_0 -2886,2,63.0,2,0.0,9,111,2,77,74,9.0,0.0,0.0,1803.6137802064322,0.0,0.0,50925.0,50,20,1,13956,201102886,,,250.0,,0.0,6.0,3.0,0.0,2.0,1.5,1090.7279439367296,0.0,1322.0,0.0,0.0,45962.0,5,5,2,85.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1803.6137802064322,0.03541705999423529,0.03924141204052113,30641.333333333332,9,5,9,9_1,9_2,9_0_0 -2887,2,77.0,3,0.0,1,300,6,0,71,3.0,1427.810408224994,0.0,286.504458277875,0.0,0.0,13180.0,0,70,5,13957,201102887,,,,,0.0,2.0,3.0,0.0,1.0,1.0,1778.0987261287266,0.0,210.0,0.0,0.0,13774.0,0,5,1,76.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1714.314866502869,0.1300694132399749,0.12446020520566786,13774.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -2888,1,19.0,3,170.0,7,111,2,0,84,2.0,0.0,0.0,122.78762497623215,0.0,0.0,16657.0,0,41,2,13959,201102888,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3328.4614049183,0.0,90.0,0.0,0.0,11069.0,0,3,3,22.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,122.78762497623215,0.007371532987706799,0.011092928446673787,11069.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -2889,2,60.0,4,0.0,3,111,1,0,77,1.0,0.0,0.0,341.0767360450893,0.0,281.54147197127753,13673.0,0,43,8,13960,201102889,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2595.641020857525,0.0,250.0,162.0,0.0,9211.0,0,5,1,64.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,622.6182080163669,0.04553632765423586,0.06759507198093224,9211.0,1,1,1_0,1_0_0,1_2_0,1_0_1 -2890,2,38.0,3,0.0,9,112,4,47,53,7.0,0.0,0.0,2933.259929987768,0.0,0.0,34044.0,31,31,1,13961,201102890,,,346.0,,2.0,0.0,6.0,3.0,5.0,2.4,4449.522262050821,0.0,2150.0,0.0,0.0,58458.0,1,1,2,226.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2933.259929987768,0.08616084860732487,0.05017722005521516,24357.5,7,4,7,7_1,7_0,7_0_0 -2891,2,70.0,3,0.0,1,111,2,0,77,7.0,0.0,0.0,2083.2967037634057,0.0,0.0,15542.0,0,50,2,13962,201102891,,,104.0,350.0,0.0,3.0,2.0,0.0,1.0,1.0,2583.2533305481056,0.0,1527.0,0.0,0.0,22204.0,0,5,3,30.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2083.2967037634057,0.13404302559280695,0.09382528840584606,22204.0,7,4,7,7_0,7_2,7_1_0 -2892,2,76.0,3,0.0,1,111,4,78,75,5.0,0.0,0.0,2006.8955148893056,333.6787815955882,0.0,25666.0,71,50,2,13963,201102892,,,,,0.0,1.0,4.0,0.0,2.0,1.5,3438.242373741287,0.0,1471.0,0.0,0.0,27212.0,5,5,1,92.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2340.5742964848937,0.09119357502084055,0.08601257888008576,18141.333333333332,5,3,5,5_0,5_3,5_1_0 -2893,1,45.0,2,137.0,1,111,2,0,68,3.0,0.0,0.0,177.35990274344644,0.0,938.4715732375919,19735.0,0,71,2,13964,201102893,,,,101.0,1.0,1.0,2.0,0.0,1.0,1.0,3683.403217085381,0.0,130.0,540.0,0.0,14517.0,0,1,3,38.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1115.8314759810382,0.05654073858530723,0.07686377874085819,14517.0,3,2,3_1,3_0_1,3_4_1,3_1_0 -2894,2,26.0,3,0.0,99,112,4,56,63,5.0,0.0,0.0,477.50743046312505,0.0,1532.8369029547332,44069.0,43,50,1,13965,201102894,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2738.7351039739865,0.0,350.0,882.0,0.0,34098.0,1,1,3,96.0,9,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2010.3443334178583,0.04561810645619048,0.05895783721678275,18943.333333333332,5,3,5,5_1,5_0,5_0_0 -2895,2,41.0,2,0.0,1,111,2,85,48,4.0,0.0,277.585263912688,791.2980276246072,0.0,2068.113281764323,19768.0,71,43,1,13967,201102895,,,,,1.0,0.0,6.0,2.0,4.0,2.3,4842.943496982569,0.0,580.0,1190.0,0.0,37832.0,6,1,2,115.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3136.996573301618,0.15869064009012637,0.08291913124607787,16448.695652173916,4,2,4_0,4_1_0,4_2_0,4_1_0 -2896,1,27.0,3,186.0,1,111,1,84,63,4.0,0.0,0.0,272.86138883607146,0.0,0.0,20561.0,20,31,2,13968,201102896,,,,364.0,1.0,0.0,2.0,0.0,2.0,1.5,3766.3732636270106,0.0,200.0,0.0,0.0,23604.0,3,1,3,50.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,272.86138883607146,0.013270822860564732,0.011559963939843732,15736.0,4,2,4_1,4_0_1,4_3_1,4_1_0 -2897,1,26.0,2,95.0,1,112,4,54,46,4.0,0.0,0.0,1023.230208135268,86.89551604051776,0.0,27359.0,50,33,1,13969,201102897,,,,415.0,2.0,0.0,4.0,1.0,3.0,1.8,2287.7441226850374,0.0,750.0,0.0,0.0,28998.0,1,1,3,80.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1110.1257241757858,0.040576253670667264,0.03828283758106717,16110.0,4,2,4_1,4_1_1,4_0_1,4_1_0 -2898,2,54.0,2,0.0,4,112,2,52,37,9.0,0.0,555.170527825376,3547.198054868929,139.0328256648284,0.0,37741.0,50,44,1,1397,201102898,,,290.0,,2.0,2.0,4.0,0.0,2.0,1.5,1971.3444500593055,0.0,2600.0,0.0,0.0,53440.0,1,1,2,160.0,6,0.0,3,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4241.401408359133,0.11238179720619837,0.07936754132408556,35626.666666666664,9,5,9,9_1,9_0,9_0_1 -2899,2,55.0,1,0.0,1,111,2,42,52,7.0,1285.0293674024945,156.83567411066872,1215.5974872646982,0.0,0.0,46723.0,60,71,1,13971,201102899,,,200.0,731.0,4.0,3.0,5.0,2.0,4.0,2.5,2152.0669159765284,0.0,891.0,0.0,0.0,57511.0,4,1,3,150.0,7,5.0,4,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2657.4625287778617,0.05687696699222785,0.04620789985877244,23004.4,7,4,7,7_1,7_2,7_1_0 -2900,1,66.0,4,177.0,3,221,1,86,78,1.0,0.0,0.0,537.0462984934544,135.55700502320772,66.665586443231,23322.0,71,71,2,13972,201102900,,,,,0.0,4.0,4.0,0.0,2.0,1.5,5995.367005293699,62.0,370.0,0.0,0.0,13264.0,6,5,3,84.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,739.2688899598932,0.03169834876768258,0.05573498868817047,8842.666666666666,1,1,1_1,1_0_1,1_1_1,1_0_1 -2901,2,44.0,3,0.0,8,300,4,45,47,7.0,0.0,249.82673752141918,2101.0326940377504,177.26685272265624,0.0,44498.0,31,60,1,13973,201102901,,,335.0,,2.0,0.0,4.0,2.0,4.0,2.1,1979.4119454757672,0.0,1540.0,0.0,0.0,45439.0,1,1,2,118.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2528.1262842818255,0.056814380068358705,0.05563780638398348,21637.619047619046,6,3,6,6_1,6_0,6_0_0 -2902,2,79.0,4,0.0,7,111,2,0,77,2.0,28.55620816449988,0.0,3547.198054868929,0.0,521.3730962431066,12414.0,0,71,2,13974,201102902,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3073.2403142411345,0.0,2600.0,300.0,0.0,9740.0,0,5,3,60.0,8,7.0,1,9,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,4097.127359276536,0.33004086992722215,0.4206496262090899,9740.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -2903,2,55.0,2,0.0,1,112,6,42,34,9.0,3648.848821019429,277.585263912688,884.0708998288715,234.61789330939797,0.0,62786.0,41,31,1,13975,201102903,,,540.0,,2.0,2.0,9.0,2.0,4.0,2.5,2259.2469388825107,0.0,648.0,0.0,0.0,91168.0,1,1,1,175.0,8,0.0,4,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5045.122878070386,0.08035426493279371,0.055338746907581456,36467.2,9,5,9,9_1,9_0,9_1_0 -2904,2,54.0,2,0.0,7,111,4,0,38,10.0,0.0,0.0,1391.5930830639643,0.0,0.0,42013.0,0,31,2,13976,201102904,,,,500.0,2.0,1.0,3.0,1.0,2.0,1.5,2747.057451511612,0.0,1020.0,0.0,0.0,58360.0,0,1,3,65.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1391.5930830639643,0.03312291631314032,0.023844980861274234,38906.666666666664,10,5,10,10_0,10_4,10_0_0 -2905,2,26.0,3,0.0,1,111,4,0,63,4.0,0.0,0.0,545.7227776721429,0.0,0.0,14633.0,0,50,2,13977,201102905,,,,335.0,1.0,0.0,1.0,0.0,1.0,1.0,3082.8267581888276,0.0,400.0,0.0,0.0,15813.0,0,1,3,22.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,545.7227776721429,0.03729397783586024,0.034511021164367474,15813.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -2906,2,57.0,3,0.0,1,400,2,0,75,8.0,0.0,124.91336876070959,1208.7759525437966,156.41192887293198,0.0,21264.0,0,50,1,13979,201102906,,,265.0,,0.0,3.0,3.0,0.0,1.0,1.0,2751.689407333052,0.0,886.0,0.0,0.0,26644.0,0,5,1,150.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1490.101250177438,0.07007624389472526,0.05592633426577984,26644.0,8,4,8,8_1,8_0,8_1_0 -2907,2,63.0,3,0.0,5,111,1,0,77,10.0,0.0,0.0,545.7227776721429,0.0,0.0,20225.0,0,60,2,1398,201102907,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3119.6973768951507,0.0,400.0,0.0,0.0,48613.0,0,5,1,54.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,545.7227776721429,0.02698258480455589,0.011225860935802006,48613.0,10,5,10,10_0,10_3,10_0_0 -2908,2,79.0,3,0.0,4,111,1,0,77,4.0,0.0,0.0,327.43366660328576,0.0,0.0,11889.0,0,70,2,13980,201102908,,,,429.0,0.0,1.0,3.0,0.0,1.0,1.0,3458.7865542823997,0.0,240.0,0.0,0.0,15019.0,0,5,3,60.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,327.43366660328576,0.027540892135863887,0.021801296131785455,15019.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -2909,2,72.0,3,0.0,5,111,4,78,78,4.0,0.0,832.755791738064,900.4425831590357,0.0,0.0,18490.0,50,71,1,13981,201102909,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2429.5021206471492,0.0,660.0,0.0,0.0,24410.0,5,5,1,100.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1733.1983748970997,0.0937370673281287,0.07100362043822613,16273.333333333334,4,2,4_0,4_1_0,4_3_0,4_0_0 -2910,1,24.0,4,230.0,2,111,2,0,68,2.0,0.0,0.0,272.86138883607146,0.0,938.4715732375919,15722.0,0,71,2,13982,201102910,,,,226.0,1.0,0.0,4.0,1.0,2.0,1.5,6328.198352556367,0.0,200.0,540.0,0.0,17853.0,0,1,3,85.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1211.3329620736633,0.07704700178562927,0.06785038716594764,11902.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -2911,2,40.0,3,0.0,8,120,2,46,47,8.0,0.0,0.0,1828.1713052016787,0.0,0.0,62785.0,31,31,1,13983,201102911,,,252.0,,2.0,0.0,7.0,2.0,4.0,2.1,2011.1467993485755,0.0,1340.0,0.0,0.0,56054.0,1,1,2,170.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1828.1713052016787,0.0291179629720742,0.03261446650019051,26692.38095238095,8,4,8,8_1,8_0,8_0_0 -2912,2,55.0,3,0.0,2,111,1,52,62,8.0,0.0,0.0,682.1534720901786,0.0,225.92834170534618,24479.0,70,71,2,13985,201102912,,,500.0,,3.0,1.0,3.0,1.0,3.0,2.0,5596.970099659257,0.0,500.0,130.0,0.0,54480.0,4,1,1,72.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,908.0818137955248,0.03709636070899648,0.016668168388317268,27240.0,8,4,8,8_0,8_4,8_0_1 -2913,2,57.0,2,0.0,5,111,2,55,67,8.0,0.0,0.0,916.8142664892001,0.0,48.661488982689946,39867.0,50,60,2,13986,201102913,,,250.0,332.0,3.0,1.0,4.0,1.0,3.0,2.0,1684.2024700865265,0.0,672.0,28.0,0.0,52072.0,1,1,3,100.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,965.4757554718901,0.024217416797649438,0.018541169063448496,26036.0,8,4,8,8_0,8_2,8_0_0 -2914,2,45.0,2,0.0,1,111,2,0,47,6.0,0.0,0.0,272.86138883607146,0.0,868.9551604051776,11564.0,0,31,2,13987,201102914,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3099.4949085371386,0.0,200.0,500.0,0.0,20178.0,0,1,1,60.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1141.816549241249,0.09873889218620278,0.0565872013698706,20178.0,6,3,6,6_0,6_3,6_1_0 -2915,2,75.0,3,0.0,8,112,4,0,77,4.0,571.1241632899976,0.0,834.9558498383786,43.44775802025888,0.0,13442.0,0,71,1,13989,201102915,,,217.0,,0.0,4.0,3.0,0.0,1.0,1.0,4438.839991418285,0.0,612.0,0.0,0.0,14990.0,0,5,1,88.0,9,2.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1449.527771148635,0.10783572170425793,0.09669965117736058,14990.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -2916,2,47.0,2,0.0,6,120,5,45,38,8.0,0.0,763.359475759892,982.3009998098572,156.41192887293198,0.0,53096.0,31,31,1,13990,201102916,,,,,2.0,0.0,6.0,2.0,4.0,2.5,1500.1925721862347,0.0,720.0,0.0,0.0,62780.0,1,1,1,150.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1902.072404442681,0.03582327113987271,0.030297426002591287,25112.0,8,4,8,8_1,8_0,8_0_0 -2917,2,50.0,2,0.0,4,300,4,33,21,10.0,0.0,0.0,2284.3037371861446,90.37133668213848,1337.612734441603,52702.0,41,50,1,13991,201102917,,,230.0,,2.0,2.0,4.0,0.0,2.0,1.5,3034.970318771899,1244.0,1200.0,0.0,0.0,90048.0,1,1,1,120.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3712.287808309886,0.07043922068061717,0.04122565529839514,60032.0,10,5,10,10_1,10_0,10_0_1 -2918,2,52.0,3,0.0,1,120,4,0,63,3.0,0.0,0.0,195.0958930177911,31.282385774586395,0.0,14462.0,0,70,1,13992,201102918,,,180.0,,1.0,0.0,3.0,0.0,1.0,1.0,1780.6840330392386,0.0,143.0,0.0,0.0,14290.0,0,1,3,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,226.3782787923775,0.015653317576571533,0.015841726997367214,14290.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -2919,2,70.0,1,0.0,4,111,2,0,72,9.0,0.0,0.0,1746.3128885508572,0.0,4344.775802025888,58471.0,0,10,1,13993,201102919,,,643.0,,0.0,2.0,6.0,0.0,1.0,1.0,4527.6647303993095,0.0,1280.0,2500.0,0.0,30398.0,0,5,1,150.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,6091.088690576746,0.10417281542263251,0.2003779423178086,30398.0,9,5,9,9_1,9_4,9_0_1 -2920,2,20.0,3,0.0,9,111,2,84,52,2.0,0.0,0.0,2728.6138883607146,0.0,278.0656513296568,32390.0,42,41,8,13994,201102920,,,,500.0,1.0,0.0,1.0,0.0,2.0,1.5,3151.0370159287995,0.0,2000.0,160.0,0.0,17162.0,3,1,3,32.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3006.6795396903713,0.09282740165762184,0.17519400650800437,11441.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_0 -2921,1,48.0,4,300.0,6,111,1,85,63,1.0,0.0,0.0,374.5478223490317,0.0,774.1810038568763,12707.0,60,60,2,13997,201102921,,,,94.0,1.0,0.0,3.0,5.0,7.0,3.2,1955.046390829877,720.0,0.0,0.0,0.0,27070.0,6,1,3,63.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1148.728826205908,0.09040126121082144,0.04243549413394562,8459.375,1,1,1_1,1_0_1,1_4_1,1_0_0 -2922,2,51.0,4,0.0,9,120,6,52,52,5.0,0.0,0.0,2103.761307926111,333.6787815955882,0.0,50285.0,50,50,1,14,201102922,,,330.0,,3.0,0.0,5.0,3.0,5.0,3.0,778.1646167884289,0.0,1542.0,0.0,0.0,55894.0,1,1,2,165.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2437.440089521699,0.048472508492029415,0.04360826009091672,18631.333333333332,5,3,5,5_1,5_1,5_0_0 -2923,2,75.0,3,0.0,4,111,2,78,77,4.0,0.0,0.0,394.28470686812324,0.0,1115.7384259602482,21338.0,70,50,2,1400,201102923,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2302.3539476477827,0.0,289.0,642.0,0.0,23301.0,5,5,1,76.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1510.0231328283714,0.0707668541019951,0.06480507844420288,15534.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -2924,2,85.0,1,0.0,4,111,6,86,74,8.0,0.0,0.0,0.0,0.0,0.0,36892.0,70,12,1,14000,201102924,,,,,1.0,2.0,4.0,0.0,3.0,2.0,1510.9500982735701,0.0,0.0,0.0,0.0,57392.0,7,5,3,120.0,9,7.0,5,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,28696.0,8,4,8,8_1,8_3,8_0_1 -2925,2,39.0,2,0.0,1,111,2,42,37,9.0,0.0,0.0,491.1504999049286,0.0,941.9473938792125,43961.0,20,10,2,14001,201102925,,,,1080.0,2.0,0.0,3.0,2.0,4.0,2.1,3684.363723637891,0.0,360.0,542.0,0.0,73045.0,1,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1433.0978937841412,0.03259930151234369,0.019619383856309687,34783.33333333333,9,5,9,9_0,9_4,9_1_0 -2926,2,34.0,2,0.0,1,111,2,38,31,7.0,0.0,0.0,832.3284941089594,0.0,1720.4022307930582,32012.0,10,10,1,14002,201102926,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1735.9312217813685,1600.0,0.0,0.0,0.0,48810.0,1,1,2,116.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2552.7307249020178,0.07974293155385535,0.052299338760541235,23242.85714285714,7,4,7,7_1,7_3,7_1_0 -2927,2,56.0,2,0.0,8,111,2,34,38,9.0,0.0,0.0,581.1947582208322,0.0,1657.966446053079,59747.0,10,10,1,14003,201102927,,,370.0,,2.0,1.0,7.0,1.0,3.0,2.0,1003.4993070940642,0.0,426.0,954.0,0.0,65941.0,1,1,1,130.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2239.161204273911,0.03747738303636854,0.03395704044940039,32970.5,9,5,9,9_1,9_3,9_0_0 -2928,2,64.0,3,0.0,4,221,1,0,77,6.0,0.0,0.0,341.0767360450893,53.87521994512101,0.0,16088.0,0,70,2,14005,201102928,,,,,0.0,2.0,4.0,0.0,1.0,1.0,4266.18758816291,0.0,250.0,0.0,0.0,19410.0,0,4,1,91.0,1,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,394.9519559902103,0.02454947513613938,0.020347859659464725,19410.0,6,3,6,6_0,6_1,6_0_1 -2929,2,85.0,2,0.0,2,111,2,0,77,3.0,0.0,0.0,218.28911106885715,0.0,52.13730962431066,12535.0,0,71,1,14011,201102929,,,210.0,,0.0,4.0,4.0,0.0,1.0,1.0,3450.1916674718586,0.0,160.0,30.0,0.0,12867.0,0,5,1,100.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,270.4264206931678,0.021573707275083193,0.02101705297996175,12867.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -2930,2,33.0,1,0.0,7,111,1,35,37,10.0,0.0,0.0,409.2920832541072,0.0,0.0,39744.0,10,12,2,14014,201102930,,,,450.0,2.0,0.0,3.0,2.0,4.0,2.1,2942.66306660746,0.0,300.0,0.0,0.0,185923.0,1,1,3,63.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,409.2920832541072,0.010298210629380716,0.0022014064061687214,88534.76190476191,10,5,10,10_0,10_4,10_0_0 -2931,2,32.0,3,0.0,3,111,1,52,68,6.0,1745.1016100527704,0.0,1122.824615060434,0.0,0.0,29841.0,31,50,2,14017,201102931,1100.0,1100.0,276.0,,2.0,0.0,6.0,2.0,4.0,2.1,2993.561117712226,0.0,823.0,0.0,0.0,40060.0,1,1,2,118.0,8,7.0,4,5,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2867.9262251132045,0.09610690744657366,0.07159076947361968,19076.190476190477,5,3,5,5_0,5_3,5_0_1 -2932,2,59.0,2,0.0,1,111,1,54,74,8.0,0.0,0.0,643.9528776531287,0.0,510.94563431824446,51260.0,50,41,2,14018,201102932,,,,372.0,1.0,0.0,3.0,1.0,3.0,2.0,3039.419497168763,0.0,472.0,294.0,0.0,52344.0,1,5,3,71.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1154.8985119713732,0.022530208973300297,0.022063627387501398,26172.0,8,4,8,8_0,8_4,8_1_0 -2933,2,66.0,3,0.0,4,112,2,77,78,5.0,0.0,0.0,494.1950433771946,0.0,1021.4888245333784,21380.0,71,50,1,1402,201102933,,,263.0,,0.0,3.0,4.0,0.0,2.0,1.5,1857.4458931363329,950.0,0.0,0.0,0.0,27807.0,4,5,1,80.0,8,1.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1515.683867910573,0.07089260373763204,0.05450727758875726,18538.0,5,3,5,5_1,5_1,5_0_1 -2934,2,75.0,3,0.0,5,112,2,71,71,3.0,1594.3882891845767,0.0,504.79356934673217,130.34327406077665,0.0,21488.0,70,71,1,14020,201102934,,,269.0,,0.0,4.0,4.0,0.0,2.0,1.5,3212.8149534138806,0.0,370.0,0.0,0.0,21722.0,5,5,1,85.0,9,2.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2229.525132592086,0.10375675412286327,0.1026390356593355,14481.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0 -2935,2,46.0,1,0.0,8,111,6,34,37,7.0,0.0,76.3359475759892,3750.4797895518022,198.1217765723805,0.0,99466.0,20,30,1,14021,201102935,,,,,2.0,0.0,7.0,3.0,5.0,2.6,1612.9811919621282,0.0,2749.0,0.0,0.0,57576.0,1,1,1,170.0,7,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4024.937513700172,0.04046546069712437,0.06990651510525518,22144.615384615383,7,4,7,7_1,7_2,7_0_0 -2936,2,69.0,2,0.0,6,111,4,75,34,9.0,0.0,0.0,2728.6138883607146,0.0,0.0,70798.0,31,10,1,14024,201102936,,,600.0,,2.0,1.0,7.0,1.0,3.0,2.0,1822.5480662458467,0.0,2000.0,0.0,0.0,70746.0,6,5,1,149.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2728.6138883607146,0.038540832909979304,0.038569161342842204,35373.0,9,5,9,9_1,9_4,9_0_0 -2937,2,79.0,4,0.0,4,300,2,77,78,2.0,836.0623168161909,0.0,802.2124831780501,173.79103208103552,0.0,17499.0,71,70,1,14025,201102937,,,118.0,,0.0,4.0,5.0,0.0,2.0,1.5,2353.2897764566,0.0,588.0,0.0,0.0,14915.0,5,5,1,95.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1812.0658320752766,0.10355253626351658,0.12149284827859716,9943.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1 -2938,1,28.0,4,362.0,3,111,1,68,56,3.0,0.0,0.0,682.1534720901786,0.0,139.0328256648284,29312.0,43,50,2,14026,201102938,,,480.0,,2.0,0.0,4.0,2.0,4.0,2.1,3093.453018563827,0.0,500.0,80.0,0.0,27175.0,4,1,3,68.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,821.186297755007,0.028015362232362413,0.030218447019503478,12940.47619047619,3,2,3_1,3_0_1,3_2_1,3_0_1 -2939,2,59.0,3,0.0,4,111,1,0,67,7.0,0.0,0.0,272.86138883607146,0.0,0.0,14597.0,0,71,2,14027,201102939,,,,316.0,1.0,2.0,2.0,0.0,1.0,1.0,3072.6896857113147,0.0,200.0,0.0,0.0,23410.0,0,1,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,272.86138883607146,0.018692977244370176,0.011655762017773236,23410.0,7,4,7,7_0,7_4,7_0_1 -2940,2,63.0,3,0.0,1,300,5,78,78,4.0,0.0,936.8502657053219,736.7257498573929,151.1981979105009,0.0,28009.0,71,70,1,1403,201102940,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2703.9422868787183,0.0,540.0,0.0,0.0,24576.0,5,5,1,80.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1824.774213473216,0.06514956669189247,0.07425025282687239,16384.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -2941,2,29.0,2,0.0,99,112,1,84,37,9.0,0.0,0.0,491.1504999049286,34.7582064162071,0.0,20698.0,42,12,1,14031,201102941,,,,690.0,1.0,0.0,5.0,0.0,2.0,1.5,3959.6782794794894,0.0,360.0,0.0,0.0,49366.0,3,1,3,100.0,7,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,525.9087063211357,0.025408672640889734,0.01065325743064327,32910.666666666664,9,5,9,9_1,9_1,9_0_0 -2943,2,43.0,2,0.0,3,111,1,54,46,8.0,0.0,0.0,518.4366387885358,0.0,121.65372245672486,38423.0,41,31,2,14033,201102943,,,,494.0,2.0,0.0,3.0,2.0,4.0,2.3,3169.8305839418945,0.0,380.0,70.0,0.0,58631.0,1,1,3,55.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,640.0903612452606,0.016659041752212493,0.01091726836051339,25491.739130434784,8,4,8,8_0,8_3,8_0_1 -2944,2,85.0,2,0.0,6,111,6,0,77,4.0,0.0,0.0,1231.9691705948626,0.0,125.12954309834558,9309.0,0,70,1,14036,201102944,,,102.0,,0.0,0.0,4.0,0.0,1.0,1.0,2236.4709949953844,0.0,903.0,72.0,0.0,16640.0,0,5,1,60.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1357.098713693208,0.14578351205212248,0.08155641308252452,16640.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -2945,2,85.0,1,0.0,5,111,1,0,77,7.0,0.0,0.0,1506.1948663751143,0.0,0.0,11980.0,0,70,2,14037,201102945,,,,372.0,0.0,0.0,2.0,0.0,1.0,1.0,2929.6379568040984,0.0,1104.0,0.0,0.0,22217.0,0,5,3,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1506.1948663751143,0.1257257818343167,0.06779470074155441,22217.0,7,4,7,7_0,7_3,7_0_0 -2946,2,36.0,3,0.0,2,111,1,0,48,2.0,0.0,0.0,327.43366660328576,0.0,0.0,26619.0,0,42,2,14038,201102946,,,,480.0,1.0,0.0,5.0,0.0,1.0,1.0,7539.442625807492,0.0,240.0,0.0,0.0,10920.0,0,1,3,70.0,8,6.0,1,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,327.43366660328576,0.012300750088406242,0.029984768003963897,10920.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -2947,2,96.0,9,0.0,5,111,2,0,77,5.0,396.6140022847205,0.0,684.8820859785393,140.77073598563877,0.0,28188.0,0,60,1,14039,201102947,,,250.0,,0.0,5.0,3.0,0.0,1.0,1.0,2269.640757192858,0.0,502.0,0.0,0.0,17540.0,0,5,1,66.0,5,4.0,1,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1222.2668242488987,0.04336124678050585,0.06968453958089503,17540.0,5,3,5,5_1,5_2,5_0_0 -2948,2,55.0,1,0.0,8,300,4,0,63,8.0,0.0,0.0,2339.7864092693126,469.23578661879594,0.0,24617.0,0,50,1,14040,201102948,,,306.0,,2.0,1.0,7.0,3.0,4.0,2.5,1235.134306871648,0.0,1715.0,0.0,0.0,72090.0,0,1,1,127.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2809.0221958881084,0.11410903830231582,0.038965490302234826,28836.0,8,4,8,8_1,8_0,8_0_0 -2949,2,81.0,3,0.0,1,112,2,0,78,1.0,2538.3296146222115,0.0,218.28911106885715,83.41969539889705,0.0,16164.0,0,70,1,14041,201102949,,,120.0,,0.0,0.0,3.0,0.0,1.0,1.0,2430.6160785104507,0.0,160.0,0.0,0.0,9290.0,0,5,1,94.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2840.0384210899656,0.17570146133939407,0.3057091949504807,9290.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -2950,2,43.0,4,0.0,7,400,5,52,62,5.0,0.0,138.792631956344,1710.840908002168,140.77073598563877,0.0,21278.0,50,71,1,14042,201102950,,,,,3.0,0.0,4.0,2.0,4.0,2.5,1621.3843800715938,0.0,1254.0,0.0,0.0,42366.0,1,1,1,124.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1990.4042759441506,0.09354282714278365,0.04698117065439623,16946.4,4,2,4_0,4_1_0,4_0_0,4_0_0 -2951,2,79.0,3,0.0,99,111,1,0,77,6.0,0.0,0.0,290.5973791104161,0.0,86.89551604051776,10397.0,0,71,2,14043,201102951,,,,,0.0,0.0,3.0,0.0,1.0,1.0,4148.619857693256,0.0,213.0,50.0,0.0,20550.0,0,5,1,80.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,377.49289515093386,0.0363078671877401,0.018369483948950553,20550.0,6,3,6,6_0,6_3,6_0_0 -2952,2,72.0,1,0.0,5,111,1,75,74,10.0,0.0,0.0,612.2406054470129,0.0,278.4901111096263,41870.0,31,12,2,14044,201102952,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2243.031117342655,259.0,350.0,0.0,0.0,58787.0,5,5,1,98.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,890.7307165566392,0.02127372143674801,0.015151831468804994,39191.333333333336,10,5,10,10_0,10_4,10_0_0 -2953,2,66.0,3,0.0,5,400,1,85,72,2.0,0.0,0.0,375.18440964959825,145.98446694806984,0.0,4932.0,41,70,1,14045,201102953,,,165.0,,0.0,1.0,3.0,0.0,2.0,1.5,2740.09816883237,0.0,275.0,0.0,0.0,14011.0,6,5,1,135.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,521.168876597668,0.10567089955346066,0.037197122018247666,9340.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_0 -2954,2,60.0,1,0.0,7,111,4,75,74,10.0,0.0,0.0,1440.7081330544572,0.0,0.0,36484.0,31,31,2,14046,201102954,,,,,0.0,0.0,3.0,0.0,2.0,1.5,2964.988124016478,0.0,1056.0,0.0,0.0,79725.0,5,5,1,74.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1440.7081330544572,0.03948876584405375,0.01807097062470313,53150.0,10,5,10,10_0,10_4,10_0_0 -2955,2,40.0,4,0.0,1,111,2,21,22,4.0,0.0,0.0,1637.1683330164287,0.0,0.0,29834.0,50,31,1,14049,201102955,,,700.0,,2.0,1.0,3.0,2.0,4.0,2.3,3342.4284545462187,0.0,1200.0,0.0,0.0,37640.0,1,1,2,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1637.1683330164287,0.05487592454972276,0.043495439240606504,16365.21739130435,4,2,4_0,4_1_0,4_3_0,4_1_0 -2956,1,75.0,1,35.0,1,111,7,78,78,4.0,0.0,0.0,368.36287492869644,0.0,139.0328256648284,12814.0,71,71,2,1405,201102956,,,,271.0,0.0,5.0,4.0,0.0,2.0,1.5,3185.392645421641,0.0,270.0,80.0,0.0,22090.0,5,5,3,63.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,507.39570059352485,0.03959697991209028,0.022969474902377766,14726.666666666666,3,2,3_1,3_0_1,3_2_1,3_1_0 -2957,2,58.0,1,0.0,7,111,2,75,22,10.0,0.0,1387.9263195634398,420.20653880755003,0.0,0.0,88874.0,41,41,1,14050,201102957,,,600.0,,2.0,0.0,5.0,1.0,3.0,2.0,1433.3838419865933,0.0,308.0,0.0,0.0,122501.0,6,1,1,150.0,6,4.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1808.1328583709899,0.020344902427830297,0.014760147740597954,61250.5,10,5,10,10_1,10_2,10_0_0 -2958,2,49.0,1,0.0,1,111,2,34,34,10.0,0.0,0.0,804.9410970664107,0.0,2259.283417053462,66293.0,20,10,1,14051,201102958,,,596.0,,2.0,1.0,6.0,2.0,4.0,2.5,1255.950386457795,0.0,590.0,1300.0,0.0,97173.0,1,1,1,150.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3064.2245141198728,0.04622244451329511,0.03153370292282705,38869.2,10,5,10,10_1,10_3,10_1_0 -2959,2,41.0,3,0.0,1,212,2,0,11,1.0,2538.3296146222115,0.0,413.3850040866482,79.94387475727635,0.0,19660.0,0,44,1,14052,201102959,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2408.370936668646,0.0,303.0,0.0,0.0,7255.0,0,1,1,100.0,3,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3031.658493466136,0.15420439946419817,0.41787160488850944,7255.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -2960,1,87.0,4,126.0,1,111,2,0,77,3.0,0.0,0.0,399.74193464484466,0.0,860.2656088011258,11610.0,0,70,2,14054,201102960,,,,219.0,0.0,0.0,2.0,0.0,1.0,1.0,3459.180663057488,0.0,293.0,495.0,0.0,13158.0,0,5,3,43.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1260.0075434459704,0.10852778151989409,0.09575980722343597,13158.0,3,2,3_1,3_0_1,3_2_1,3_1_0 -2961,2,40.0,3,0.0,1,112,4,47,46,8.0,0.0,0.0,1500.737638598393,0.0,0.0,25143.0,42,20,2,14055,201102961,,,300.0,,2.0,0.0,3.0,1.0,3.0,1.8,5396.628744059667,0.0,1100.0,0.0,0.0,45770.0,1,1,1,60.0,9,3.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1500.737638598393,0.0596880896710175,0.03278867464711368,25427.777777777777,8,4,8,8_0,8_1,8_1_0 -2962,2,40.0,4,0.0,5,111,2,0,52,4.0,0.0,0.0,450.22129157951787,0.0,2549.514440628791,25627.0,0,50,2,14056,201102962,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3566.7971907672186,0.0,330.0,1467.0,0.0,23491.0,0,1,2,75.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2999.735732208309,0.11705372194202633,0.12769723435393593,15660.666666666666,4,2,4_0,4_0_0,4_4_0,4_0_0 -2963,2,75.0,4,0.0,1,111,2,0,71,3.0,1427.810408224994,0.0,1191.039962269452,130.34327406077665,0.0,19771.0,0,70,1,14058,201102963,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2658.6893146401235,0.0,873.0,0.0,0.0,12758.0,0,5,5,150.0,8,7.0,1,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2749.193644555223,0.13905182563123883,0.21548782289976665,12758.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -2964,2,50.0,4,0.0,1,111,2,62,45,8.0,0.0,0.0,750.3688192991965,0.0,3545.337054453125,63732.0,50,50,1,14059,201102964,,,600.0,,2.0,1.0,6.0,1.0,3.0,2.0,1054.8646619149717,0.0,550.0,2040.0,0.0,50417.0,4,1,3,160.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4295.705873752321,0.06740265288634158,0.08520352011726841,25208.5,8,4,8,8_1,8_2,8_1_0 -2965,1,18.0,3,39.0,8,111,4,0,84,1.0,0.0,0.0,81.85841665082144,0.0,0.0,7295.0,0,42,2,1406,201102965,,,,231.0,0.0,0.0,1.0,0.0,1.0,1.0,2917.3342095572784,0.0,60.0,0.0,0.0,1442.0,0,3,3,23.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,81.85841665082144,0.011221167464129054,0.056767279230805434,1442.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -2966,0,70.0,3,0.0,3,400,2,22,22,9.0,0.0,0.0,0.0,1390.3282566482842,0.0,20306.0,41,41,1,14060,201102966,,,,,2.0,1.0,2.0,0.0,2.0,1.5,6537.281841565063,0.0,0.0,0.0,0.0,55449.0,1,1,5,150.0,0,0.0,3,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1390.3282566482842,0.06846883958673713,0.02507400055272925,36966.0,9,5,9,9_1,9_0,9_0_1 -2967,1,26.0,4,22.0,4,111,1,0,46,1.0,0.0,0.0,43.65782221377143,0.0,0.0,14757.0,0,31,2,14061,201102967,,,,338.0,1.0,0.0,1.0,0.0,1.0,1.0,3666.285119352025,0.0,32.0,0.0,0.0,4104.0,0,4,3,26.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,43.65782221377143,0.0029584483440923924,0.01063787090978836,4104.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -2968,2,71.0,2,0.0,1,111,2,0,77,8.0,0.0,0.0,461.1357471329608,0.0,2877.979491261948,18734.0,0,50,1,14063,201102968,,,125.0,,0.0,2.0,7.0,0.0,1.0,1.0,1442.3581212149788,0.0,338.0,1656.0,0.0,24976.0,0,5,1,96.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3339.115238394909,0.17823824268148333,0.13369295477237783,24976.0,8,4,8,8_1,8_3,8_1_0 -2969,2,66.0,3,0.0,1,111,4,78,74,10.0,0.0,0.0,1227.8762497623215,0.0,1042.7461924862132,25340.0,50,20,2,14064,201102969,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2385.2078832301295,0.0,900.0,600.0,0.0,61421.0,5,5,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2270.6224422485348,0.08960625265384904,0.036968177695715386,40947.333333333336,10,5,10,10_0,10_4,10_1_0 -2970,2,68.0,3,0.0,1,120,4,77,78,6.0,0.0,416.377895869032,1418.8792219475715,173.79103208103552,0.0,22023.0,50,70,1,14065,201102970,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1665.7349319790249,0.0,1040.0,0.0,0.0,30142.0,7,5,1,73.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2009.0481498976392,0.09122499886017524,0.06665278182926279,20094.666666666668,6,3,6,6_1,6_1,6_1_0 -2971,2,34.0,3,0.0,3,111,4,46,37,9.0,0.0,0.0,1364.3069441803573,0.0,0.0,38300.0,20,10,2,14066,201102971,,,,1050.0,2.0,0.0,4.0,1.0,3.0,1.8,2833.9871711684627,0.0,1000.0,0.0,0.0,55489.0,1,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1364.3069441803573,0.03562159123186311,0.024586980197523065,30827.222222222223,9,5,9,9_0,9_4,9_0_1 -2972,2,65.0,4,0.0,3,300,2,0,22,2.0,1562.659169001799,0.0,518.4366387885358,145.98446694806984,0.0,16660.0,0,71,1,14067,201102972,,,,,1.0,5.0,7.0,0.0,1.0,1.0,3948.5458562576923,0.0,380.0,0.0,0.0,9993.0,0,5,1,160.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2227.0802747384046,0.13367828779942403,0.22286403229644797,9993.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -2973,2,71.0,3,0.0,4,111,2,72,72,8.0,2221.038412794435,0.0,982.3009998098572,104.27461924862132,0.0,39873.0,71,50,1,14068,201102973,,,500.0,,0.0,2.0,5.0,0.0,2.0,1.5,2903.31604219197,0.0,720.0,0.0,0.0,41512.0,5,5,1,120.0,6,5.0,3,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3307.6140318529133,0.0829537288855344,0.07967850336897556,27674.666666666668,8,4,8,8_1,8_2,8_0_1 -2974,2,27.0,2,0.0,9,300,4,46,37,8.0,0.0,0.0,368.36287492869644,45.18566834106924,0.0,79568.0,10,12,1,14069,201102974,,,,,2.0,0.0,7.0,0.0,2.0,1.5,2287.7494259675746,0.0,270.0,0.0,0.0,38172.0,1,1,2,143.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,413.5485432697657,0.005197422874393797,0.01083381911531399,25448.0,8,4,8,8_1,8_0,8_0_0 -2975,1,46.0,4,241.0,1,111,2,0,55,3.0,0.0,0.0,42.293515269591076,2085.4923849724264,0.0,30311.0,0,60,1,1407,201102975,,,,340.0,1.0,0.0,3.0,2.0,3.0,1.8,2605.65394906366,0.0,31.0,0.0,0.0,24347.0,0,1,3,70.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2127.7859002420173,0.07019847250971652,0.08739417177648241,13526.111111111111,3,2,3_1,3_1_1,3_3_1,3_1_0 -2976,2,48.0,3,0.0,9,111,2,0,52,4.0,0.0,0.0,436.5782221377143,0.0,1286.0536373996629,25753.0,0,50,1,14070,201102976,,,,,2.0,2.0,5.0,1.0,2.0,1.5,2639.4632253097216,0.0,320.0,740.0,0.0,21985.0,0,1,2,80.0,4,3.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1722.6318595373773,0.06689053157058895,0.07835487193711063,14656.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0 -2977,2,43.0,3,0.0,8,112,6,0,43,7.0,0.0,0.0,1768.141799657743,104.27461924862132,0.0,42730.0,0,20,1,14072,201102977,,,333.0,,1.0,0.0,4.0,1.0,2.0,1.5,1573.3341977815892,0.0,1296.0,0.0,0.0,33204.0,0,1,2,82.0,7,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1872.4164189063642,0.04381971492877052,0.05639129077539948,22136.0,7,4,7,7_1,7_1,7_0_0 -2978,2,74.0,3,0.0,6,111,2,77,75,5.0,0.0,946.565749942266,723.0826804155894,0.0,1214.7993142464384,20469.0,70,70,1,14073,201102978,,,245.0,,0.0,2.0,4.0,0.0,2.0,1.5,1270.8065237643043,0.0,530.0,699.0,0.0,26725.0,5,5,1,81.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2884.447744604294,0.14091786333500875,0.107930692033837,17816.666666666668,5,3,5,5_1,5_3,5_0_0 -2979,2,31.0,2,0.0,8,112,2,47,43,8.0,690.1083639754138,0.0,306.9690624405804,52.13730962431066,0.0,49122.0,43,20,1,14074,201102979,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1799.9232345279331,0.0,225.0,0.0,0.0,51055.90909090909,1,1,2,114.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1049.2147360403048,0.021359365173248337,0.020550309547364927,28364.393939393936,8,4,8,8_1,8_1,8_0_0 -2980,2,44.0,2,0.0,4,111,2,0,54,8.0,0.0,0.0,395.6490138123036,0.0,1216.5372245672486,29801.0,0,60,1,14075,201102980,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2002.7267522815553,0.0,290.0,700.0,0.0,25702.0,0,1,2,85.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1612.1862383795522,0.054098393959248085,0.06272610062950557,25702.0,8,4,8,8_1,8_2,8_0_1 -2981,2,67.0,3,0.0,1,111,6,0,77,6.0,0.0,0.0,1896.3866524106966,48.661488982689946,0.0,11672.0,0,50,1,14076,201102981,,,95.0,,0.0,4.0,5.0,0.0,1.0,1.0,1395.4066447837906,0.0,1390.0,0.0,0.0,20017.0,0,5,1,112.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1945.0481413933865,0.16664223281300433,0.0971698127288498,20017.0,6,3,6,6_1,6_2,6_1_0 -2982,2,69.0,2,0.0,99,111,2,0,75,8.0,0.0,0.0,680.3781847387604,0.0,2699.4982519712826,30918.0,0,41,1,14077,201102982,,,170.0,,1.0,3.0,5.0,1.0,2.0,1.5,2065.4610303015884,647.0,252.0,1153.0,0.0,38358.0,0,5,1,110.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3379.876436710043,0.10931743439776322,0.08811399021612291,25572.0,8,4,8,8_1,8_2,8_0_0 -2983,1,31.0,5,447.0,1,400,2,85,69,1.0,1110.5192063972174,0.0,556.6372332255858,55.61313026593137,0.0,19238.0,71,71,1,14078,201102983,,,,,1.0,0.0,7.0,3.0,5.0,2.4,3096.4978963421763,0.0,408.0,0.0,0.0,19778.0,6,4,3,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1722.7695698887346,0.08955034670385355,0.08710534785563427,8240.833333333334,1,1,1_1,1_1_1,1_0_1,1_1_0 -2984,2,62.0,3,0.0,4,120,2,77,78,5.0,0.0,0.0,1609.8821941328215,114.70208117348345,0.0,25023.0,50,70,1,14080,201102984,,,252.0,,0.0,2.0,4.0,0.0,2.0,1.5,1654.4126042763544,0.0,1180.0,0.0,0.0,25230.0,6,5,1,86.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1724.584275306305,0.06891996464477901,0.06835450952462564,16820.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -2985,2,74.0,2,0.0,4,300,2,0,78,4.0,1008.9860218123291,0.0,611.2095109928,86.89551604051776,0.0,11237.0,0,50,1,14081,201102985,,,140.0,,0.0,5.0,6.0,0.0,1.0,1.0,1850.9740085826013,0.0,448.0,0.0,0.0,15475.0,0,5,1,150.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1707.0910488456468,0.15191697506858118,0.11031283029697234,15475.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -2986,2,54.0,3,0.0,7,111,4,34,22,8.0,0.0,0.0,2165.284327063439,0.0,891.3834058296532,80460.0,10,50,2,14083,201102986,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2690.31374983219,829.0,1271.0,0.0,0.0,56691.0,1,1,1,95.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3056.667732893092,0.0379899047090864,0.05391804224467891,28345.5,8,4,8,8_0,8_3,8_0_0 -2987,2,43.0,1,0.0,5,111,4,85,38,4.0,0.0,0.0,1610.336646529362,0.0,1636.5326220418967,44184.0,50,12,2,14086,201102987,,,,,1.0,0.0,4.0,3.0,5.0,2.8,2742.1533633237354,1522.0,600.0,0.0,0.0,44521.0,5,1,2,86.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3246.8692685712585,0.0734851817076602,0.07292893844637943,15900.357142857143,4,2,4_0,4_0_0,4_3_0,4_0_0 -2988,2,49.0,2,0.0,99,111,1,77,46,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,30195.0,41,50,2,14088,201102988,500.0,500.0,,,1.0,1.0,4.0,0.0,2.0,1.5,3276.755669869465,0.0,1200.0,0.0,0.0,38765.0,5,1,1,90.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1637.1683330164287,0.0542198487503371,0.04223315704930811,25843.333333333332,8,4,8,8_0,8_4,8_0_0 -2989,1,62.0,3,35.0,1,300,5,77,72,6.0,0.0,746.7043599251307,1148.7464469998608,86.89551604051776,0.0,19459.0,71,71,1,14089,201102989,,,189.0,365.0,0.0,3.0,4.0,0.0,2.0,1.5,1304.6457854536109,0.0,842.0,0.0,0.0,28820.0,4,5,3,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1982.3463229655092,0.10187298026442825,0.06878370308693647,19213.333333333332,5,3,5,5_1,5_0,5_1_0 -2990,2,28.0,4,0.0,2,111,4,0,67,2.0,0.0,0.0,368.36287492869644,0.0,0.0,11302.0,0,71,2,1409,201102990,,,,450.0,1.0,1.0,1.0,0.0,1.0,1.0,3855.2419259142725,0.0,270.0,0.0,0.0,11160.0,0,4,3,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,368.36287492869644,0.032592715884683814,0.03300742606887961,11160.0,2,1,2_0,2_0_0,2_4_0,2_0_1 -2991,0,64.0,3,0.0,5,111,1,0,46,7.0,0.0,0.0,472.0502026864036,0.0,0.0,26640.0,0,50,2,14090,201102991,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2210.264704513491,0.0,346.0,0.0,0.0,23968.0,0,1,5,87.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,472.0502026864036,0.01771960220294308,0.01969501846989334,23968.0,7,4,7,7_0,7_3,7_0_0 -2992,1,71.0,5,25.0,4,111,1,0,72,3.0,0.0,0.0,409.2920832541072,0.0,0.0,14403.0,0,71,2,14092,201102992,,,,,0.0,2.0,1.0,0.0,1.0,1.0,3090.173309370602,0.0,300.0,0.0,0.0,12740.0,0,5,2,25.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,409.2920832541072,0.028417141099361744,0.03212653714710417,12740.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -2993,0,78.0,3,0.0,2,111,1,0,78,3.0,0.0,0.0,463.8643610213215,0.0,1956.88702123246,16285.0,0,71,1,14093,201102993,,,195.0,,0.0,2.0,3.0,0.0,1.0,1.0,4041.5501456789,0.0,340.0,1126.0,0.0,13568.0,0,5,5,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2420.7513822537817,0.14864914843437407,0.17841622805526103,13568.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -2994,2,41.0,3,0.0,4,111,2,55,38,8.0,0.0,0.0,962.3798213134843,0.0,1989.2150793544736,45109.0,71,41,1,14094,201102994,,,440.0,,2.0,0.0,5.0,2.0,4.0,2.1,2890.149730014031,1850.0,0.0,0.0,0.0,59988.0,1,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2951.594900667958,0.06543250572320286,0.04920308896225842,28565.714285714286,8,4,8,8_1,8_4,8_0_1 -2995,1,44.0,4,117.0,99,400,2,0,62,4.0,0.0,374.7401062821288,818.5841665082144,0.0,3023.963958210018,38937.0,0,50,1,14095,201102995,,,472.0,,1.0,0.0,5.0,2.0,3.0,1.6,1922.867998585075,0.0,600.0,1740.0,0.0,23628.0,0,1,2,123.0,0,0.0,2,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,4217.2882310003615,0.10831055887716982,0.1784868897494651,14767.5,3,2,3_1,3_1_1,3_0_1,3_0_0 -2996,2,76.0,2,0.0,1,111,1,86,74,9.0,0.0,0.0,545.7227776721429,0.0,139.0328256648284,35393.0,20,20,2,14096,201102996,,,,,0.0,1.0,5.0,0.0,2.0,1.5,3212.568376858755,0.0,400.0,80.0,0.0,48950.0,6,5,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,684.7556033369713,0.019347204343711222,0.013988878515566319,32633.333333333332,9,5,9,9_0,9_4,9_1_0 -2997,2,70.0,2,0.0,1,400,2,71,71,2.0,0.0,138.792631956344,341.0767360450893,199.85968689319085,0.0,13651.0,50,50,1,14097,201102997,,,,,0.0,4.0,6.0,0.0,2.0,1.5,1277.8320445804973,0.0,250.0,0.0,0.0,18487.0,6,5,1,90.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,679.7290548946241,0.04979335249392895,0.036767948011825834,12324.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -2998,2,50.0,4,0.0,2,111,1,54,45,8.0,0.0,0.0,582.5590651650125,0.0,213.76296945967368,35859.0,50,41,2,14098,201102998,,,436.0,,3.0,0.0,3.0,1.0,3.0,2.0,2028.3955484381777,0.0,427.0,123.0,0.0,54320.0,1,1,2,60.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,796.3220346246862,0.022207034067449907,0.014659831270704828,27160.0,8,4,8,8_0,8_3,8_0_1 -2999,1,36.0,4,562.0,8,111,4,42,67,5.0,0.0,0.0,968.6579303680536,0.0,0.0,14476.0,10,10,2,14099,201102999,,,,,2.0,3.0,3.0,2.0,4.0,2.1,3845.3051711417847,0.0,710.0,0.0,0.0,39394.0,4,1,3,50.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,968.6579303680536,0.06691475064714379,0.024588971172464173,18759.04761904762,5,3,5,5_0,5_4,5_0_0 -3000,2,32.0,2,0.0,99,111,1,46,35,2.0,0.0,0.0,422.93515269591074,0.0,0.0,75477.0,10,12,2,1410,201103000,,,,1200.0,2.0,0.0,3.0,2.0,4.0,2.1,6998.196375422359,0.0,310.0,0.0,0.0,21750.0,1,1,3,65.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,422.93515269591074,0.005603497127547607,0.019445294376823484,10357.142857142857,2,1,2_0,2_0_0,2_4_0,2_0_0 -3001,2,66.0,3,0.0,1,112,2,77,78,3.0,2855.620816449988,138.792631956344,515.708024900175,208.54923849724264,0.0,20661.0,70,50,1,14101,201103001,,,380.0,,0.0,3.0,3.0,0.0,2.0,1.5,3491.0494434735333,0.0,378.0,0.0,0.0,21139.0,5,5,1,70.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3718.67071180375,0.17998503033753205,0.17591516683872227,14092.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -3002,0,26.0,1,0.0,7,111,6,47,37,10.0,0.0,0.0,769.4691165177215,0.0,0.0,54718.0,43,12,2,14102,201103002,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3082.079573322004,0.0,564.0,0.0,0.0,56517.0,1,1,5,52.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,769.4691165177215,0.014062449587297078,0.013614825919948361,37678.0,10,5,10,10_0,10_4,10_0_0 -3003,2,27.0,1,0.0,6,111,1,38,38,10.0,0.0,0.0,425.66376658427146,0.0,0.0,52049.0,12,12,2,14105,201103003,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3558.977519160568,0.0,312.0,0.0,0.0,102216.0,1,1,2,41.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,425.66376658427146,0.008178135345237593,0.0041643555469229035,68144.0,10,5,10,10_0,10_4,10_0_0 -3004,2,84.0,3,0.0,3,111,2,0,77,5.0,0.0,0.0,320.61213188238395,0.0,1701.4142040733377,17649.0,0,70,1,14108,201103004,,,152.0,,0.0,1.0,4.0,0.0,1.0,1.0,2465.6176912442893,0.0,235.0,979.0,0.0,17789.0,0,5,1,80.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2022.0263359557216,0.114568889792947,0.11366722895922883,17789.0,5,3,5,5_1,5_2,5_0_1 -3005,1,56.0,4,130.0,5,111,2,0,78,2.0,0.0,0.0,229.20356662230003,0.0,729.9223347403492,7797.0,0,71,2,14109,201103005,,,121.0,,0.0,3.0,2.0,0.0,1.0,1.0,3024.0650600942504,0.0,168.0,420.0,0.0,10270.0,0,7,3,45.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,959.1259013626493,0.12301217152272019,0.09339103226510705,10270.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -3006,2,40.0,2,0.0,9,111,2,54,21,9.0,0.0,0.0,2451.659578692102,0.0,0.0,58683.0,31,43,1,1411,201103006,,,544.0,,2.0,0.0,6.0,2.0,4.0,2.1,3335.183762623154,0.0,1797.0,0.0,0.0,63317.0,1,1,2,170.0,6,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2451.659578692102,0.04177802052880906,0.03872040018781847,30150.952380952378,9,5,9,9_1,9_2,9_0_0 -3007,2,51.0,2,0.0,6,111,2,0,43,10.0,0.0,0.0,1043.6948122979734,0.0,0.0,53894.0,0,10,1,14110,201103007,,,120.0,,1.0,0.0,4.0,0.0,1.0,1.0,2684.7650598909727,0.0,765.0,0.0,0.0,38646.0,0,1,1,90.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1043.6948122979734,0.019365695852933042,0.02700654174553572,38646.0,10,5,10,10_1,10_3,10_0_0 -3008,2,83.0,2,0.0,1,112,6,71,71,7.0,0.0,1943.0968473888158,1665.8187788442162,667.3575631911764,0.0,37142.0,71,70,1,14112,201103008,,,473.0,,2.0,1.0,5.0,3.0,5.0,3.0,4632.333310668068,0.0,1221.0,0.0,0.0,64981.0,5,5,1,97.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4276.273189424209,0.11513308894039655,0.06580805449937996,21660.333333333332,6,3,6,6_1,6_0,6_1_0 -3009,2,31.0,3,0.0,1,111,4,63,38,9.0,0.0,0.0,1227.8762497623215,0.0,0.0,34972.0,44,10,2,14113,201103009,,,230.0,,2.0,0.0,2.0,0.0,2.0,1.5,3534.274749259914,0.0,900.0,0.0,0.0,55600.0,4,1,2,50.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1227.8762497623215,0.03511026677806021,0.022084105211552546,37066.666666666664,9,5,9,9_0,9_3,9_1_0 -3010,2,31.0,1,0.0,1,112,4,48,38,8.0,507.66592292444227,0.0,1364.3069441803573,0.0,0.0,37581.0,20,31,1,14114,201103010,,,,520.0,2.0,0.0,5.0,1.0,3.0,1.8,3073.8535023594254,0.0,1000.0,0.0,0.0,45455.0,1,1,3,90.0,9,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1871.9728671047997,0.04981168322037199,0.04118299124639313,25252.777777777777,8,4,8,8_1,8_0,8_1_0 -3011,2,53.0,1,0.0,1,211,5,54,62,8.0,539.39504310722,55.5170527825376,1500.737638598393,0.0,0.0,41493.0,50,50,1,14115,201103011,,,300.0,,2.0,3.0,6.0,0.0,2.0,1.5,1062.446229361684,0.0,1100.0,0.0,0.0,37289.0,4,1,2,177.0,1,3.0,3,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2095.6497344881504,0.05050610306529175,0.05620021278361314,24859.333333333332,7,4,7,7_1,7_1,7_1_0 -3012,1,79.0,3,36.0,1,111,1,0,77,5.0,0.0,0.0,409.2920832541072,0.0,0.0,10146.0,0,60,2,14116,201103012,,,,407.0,0.0,3.0,2.0,0.0,1.0,1.0,3471.0703009542385,0.0,300.0,0.0,0.0,17313.0,0,5,3,38.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,409.2920832541072,0.04034024080959069,0.023640737206382902,17313.0,5,3,5,5_0,5_3,5_1_0 -3013,2,45.0,2,0.0,2,112,2,46,62,8.0,0.0,0.0,570.2803026673894,0.0,1969.0523934781324,53732.0,20,50,1,14118,201103013,,,,,2.0,1.0,6.0,1.0,3.0,1.8,1940.4582257872316,0.0,418.0,1133.0,0.0,48698.0,1,1,2,130.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2539.332696145522,0.04725922534328746,0.052144496614758756,27054.444444444445,8,4,8,8_1,8_0,8_0_1 -3014,2,32.0,2,0.0,9,212,6,45,53,8.0,0.0,0.0,2303.857947032896,260.6865481215533,2675.225468883206,40502.0,31,42,1,14119,201103014,,,175.0,,2.0,0.0,5.0,2.0,4.0,2.1,4845.850850224843,2488.0,740.0,0.0,0.0,57561.0,1,1,1,120.0,3,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5239.769964037655,0.12937064747512853,0.09102986334562733,27410.0,8,4,8,8_1,8_0,8_0_0 -3015,2,53.0,2,0.0,2,111,2,85,53,8.0,0.0,0.0,95.501486092625,0.0,179.0047630434666,27491.0,50,50,2,1412,201103015,,,,270.0,1.0,4.0,3.0,0.0,2.0,1.5,1755.3659889898174,0.0,70.0,103.0,0.0,40515.0,7,1,3,74.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,274.5062491360916,0.00998531334386132,0.006775422661633755,27010.0,8,4,8,8_0,8_3,8_0_1 -3016,2,45.0,4,0.0,99,120,6,0,37,8.0,0.0,0.0,3683.6287492869646,139.0328256648284,0.0,27321.0,0,60,1,14121,201103016,,,,406.0,1.0,0.0,2.0,0.0,1.0,1.0,3485.4974100466475,0.0,2700.0,0.0,0.0,28736.0,0,1,3,55.0,0,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3822.661574951793,0.13991660535675096,0.13302692006374559,28736.0,8,4,8,8_1,8_1,8_0_0 -3017,1,44.0,3,235.0,99,111,2,0,67,1.0,0.0,0.0,395.3560347017557,0.0,817.1910596267026,4382.0,0,71,2,14123,201103017,,,170.0,,1.0,0.0,2.0,0.0,1.0,1.0,3372.6308194950698,760.0,0.0,0.0,0.0,8420.0,0,4,3,44.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1212.5470943284581,0.2767108841461566,0.14400796844756034,8420.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -3018,2,48.0,3,0.0,4,111,1,54,46,4.0,0.0,0.0,728.5399081923108,59.088950907552075,0.0,42517.0,42,50,2,14124,201103018,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2883.136851276912,0.0,534.0,0.0,0.0,33890.0,1,1,2,102.0,6,4.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,787.6288590998629,0.018525033730034172,0.02324074532605084,14734.782608695654,3,2,3_0,3_0_0,3_2_0,3_0_1 -3019,2,56.0,1,0.0,7,111,2,0,31,2.0,0.0,0.0,1268.8054580877322,0.0,1911.7013528913908,52572.0,0,10,1,14127,201103019,,,450.0,,1.0,1.0,6.0,1.0,2.0,1.5,3800.027744806857,0.0,930.0,1100.0,0.0,17762.0,0,1,1,220.0,5,4.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3180.5068109791227,0.060498113272828176,0.179062426020669,11841.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0 -3020,2,84.0,2,0.0,3,111,2,78,75,7.0,0.0,0.0,504.79356934673217,0.0,2919.689338961397,21152.0,50,41,1,14128,201103020,,,310.0,,0.0,2.0,6.0,0.0,2.0,1.5,1463.930263629651,0.0,370.0,1680.0,0.0,33705.0,5,5,1,100.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3424.482908308129,0.16189877592228297,0.10160162908494672,22470.0,7,4,7,7_1,7_3,7_0_1 -3021,2,58.0,2,0.0,5,120,4,47,54,6.0,0.0,0.0,2182.8911106885716,60.82686122836243,0.0,27944.0,50,70,1,14129,201103021,,,190.0,,2.0,2.0,4.0,0.0,2.0,1.5,1872.0763670013228,0.0,1600.0,0.0,0.0,31782.0,1,1,1,150.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2243.717971916934,0.08029337145422752,0.07059712956758335,21188.0,6,3,6,6_1,6_0,6_0_0 -3022,1,53.0,3,131.0,7,111,2,0,48,4.0,0.0,0.0,466.5929749096822,0.0,903.7133668213847,25299.0,0,50,1,1413,201103022,,,270.0,,2.0,1.0,4.0,1.0,2.0,1.5,5516.124382133881,0.0,342.0,520.0,0.0,23703.0,0,1,3,118.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1370.3063417310668,0.054164446884504,0.05781151507113306,15802.0,4,2,4_1,4_1_1,4_2_1,4_0_0 -3023,2,57.0,4,0.0,5,111,2,43,54,6.0,0.0,0.0,682.1534720901786,0.0,1963.8386625157013,46766.0,41,33,1,14130,201103023,,,400.0,,2.0,3.0,9.0,2.0,4.0,2.5,1724.6365746041292,0.0,500.0,1130.0,0.0,51560.0,1,1,1,172.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2645.99213460588,0.056579398165459524,0.05131869927474554,20624.0,6,3,6,6_1,6_3,6_0_0 -3024,2,79.0,4,0.0,3,112,2,0,72,1.0,0.0,0.0,214.19619023631608,0.0,1381.6387050442324,9635.0,0,70,1,14131,201103024,,,113.0,,0.0,3.0,4.0,0.0,1.0,1.0,2185.7568953367327,0.0,157.0,795.0,0.0,7233.0,0,5,5,99.0,8,2.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1595.8348952805486,0.16562894605921624,0.22063250314952973,7233.0,1,1,1_0,1_1_0,1_1_0,1_0_1 -3025,2,77.0,5,0.0,1,400,7,0,75,3.0,0.0,0.0,1623.584938933362,111.22626053186274,434.4015632752472,14892.0,0,70,1,14133,201103025,,,182.0,,0.0,3.0,5.0,0.0,1.0,1.0,2550.8499794382587,404.0,1036.0,0.0,0.0,14025.0,0,5,3,78.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2169.212762740472,0.14566295747652916,0.15466757666598732,14025.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -3026,2,56.0,3,0.0,1,300,2,78,52,7.0,0.0,2081.88947934516,794.0266415129679,234.61789330939797,0.0,33727.0,70,71,1,14134,201103026,,,,,1.0,4.0,5.0,0.0,2.0,1.5,2677.970169589472,0.0,582.0,0.0,0.0,33110.0,4,1,1,140.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3110.534014167526,0.09222682166120692,0.0939454549733472,22073.333333333332,7,4,7,7_1,7_0,7_1_0 -3027,2,38.0,3,0.0,99,111,4,56,34,8.0,0.0,0.0,764.011888741,0.0,0.0,30969.0,41,20,2,14135,201103027,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2490.4455653748537,0.0,560.0,0.0,0.0,47061.0,1,1,2,76.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,764.011888741,0.024670215013109884,0.01623450179003846,26145.0,8,4,8,8_0,8_3,8_0_0 -3028,2,56.0,3,0.0,4,112,4,52,52,6.0,0.0,138.792631956344,1814.528235759875,97.32297796537989,0.0,24021.0,70,60,1,14136,201103028,,,500.0,,2.0,3.0,4.0,0.0,2.0,1.5,1611.9875862875454,0.0,1330.0,0.0,0.0,32171.0,1,1,1,100.0,7,1.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2050.643845681599,0.08536879587367716,0.06374199887108262,21447.333333333332,6,3,6,6_1,6_1,6_0_1 -3029,2,58.0,3,0.0,7,111,4,0,52,5.0,0.0,0.0,1637.1683330164287,100.7987986070006,0.0,16013.0,0,71,1,1414,201103029,,,190.0,,1.0,2.0,4.0,0.0,1.0,1.0,2063.4599323816046,0.0,1200.0,0.0,0.0,17780.0,0,1,1,80.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1737.9671316234294,0.10853476123296256,0.09774843259974293,17780.0,5,3,5,5_1,5_2,5_0_0 -3030,2,28.0,2,0.0,1,112,2,52,37,8.0,0.0,0.0,968.6579303680536,0.0,1438.989745630974,42115.0,50,20,1,14140,201103030,,,130.0,,2.0,0.0,7.0,1.0,3.0,1.8,1718.9479099300086,0.0,710.0,828.0,0.0,46947.0,1,1,2,200.0,9,1.0,4,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2407.647675999028,0.05716841210967655,0.05128437761729243,26081.666666666664,8,4,8,8_1,8_1,8_1_0 -3031,1,53.0,3,64.0,6,300,4,55,63,2.0,0.0,66.62046333904512,1113.2744664511715,130.34327406077665,0.0,44468.0,50,70,1,14141,201103031,,,564.0,,2.0,0.0,5.0,3.0,5.0,2.8,862.9182291015984,0.0,816.0,0.0,0.0,31532.0,1,1,2,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1310.2382038509932,0.02946474327271281,0.04155265139702503,11261.428571428572,2,1,2_1,2_1_1,2_0_1,2_0_0 -3032,2,64.0,2,0.0,4,112,2,75,74,10.0,1389.7354640056608,0.0,1639.8969469047895,0.0,0.0,31394.0,60,20,1,14142,201103032,,,,,0.0,2.0,8.0,0.0,2.0,1.5,1504.8061100843736,0.0,1202.0,0.0,0.0,61918.0,5,5,1,150.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3029.6324109104503,0.09650354879628115,0.0489297524291878,41278.666666666664,10,5,10,10_1,10_0,10_0_1 -3033,2,59.0,1,0.0,1,111,2,0,31,10.0,4124.785623761094,0.0,540.2655498954215,0.0,79.94387475727635,50325.0,0,10,1,14143,201103033,,,,,1.0,1.0,5.0,0.0,1.0,1.0,3116.035542058334,0.0,396.0,46.0,0.0,74802.0,0,1,1,120.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4744.995048413793,0.09428703523922091,0.06343406658129185,74802.0,10,5,10,10_1,10_4,10_1_0 -3034,2,64.0,2,0.0,6,111,2,0,77,8.0,0.0,0.0,1195.132883101993,45.18566834106924,0.0,23978.0,0,42,1,14145,201103034,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3268.154423289223,0.0,876.0,0.0,0.0,26107.0,0,5,1,123.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1240.3185514430622,0.051727356386815505,0.04750904169161766,26107.0,8,4,8,8_1,8_3,8_0_0 -3035,2,74.0,3,0.0,4,112,2,77,78,4.0,4795.8565156268405,0.0,1170.9000640857614,215.50087978048404,446.2293286119494,25630.0,50,50,1,14146,201103035,,,559.0,,0.0,2.0,5.0,0.0,2.0,1.5,2372.6860926505683,415.0,700.0,0.0,0.0,22125.0,5,5,1,130.0,7,0.0,3,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,6628.486788105035,0.25862219227877625,0.299592623191188,14750.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -3036,2,28.0,4,0.0,2,111,1,65,54,7.0,0.0,0.0,545.7227776721429,0.0,712.5432315322456,35993.0,60,41,2,14147,201103036,,,,670.0,2.0,1.0,4.0,1.0,3.0,1.8,3482.6514959880647,0.0,400.0,410.0,0.0,39220.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1258.2660092043884,0.03495863110061369,0.03208225418675136,21788.888888888887,7,4,7,7_0,7_4,7_0_1 -3037,2,46.0,3,0.0,2,111,2,54,38,6.0,0.0,0.0,886.7995137172322,0.0,1425.0864630644912,68635.0,60,31,1,14149,201103037,,,500.0,,2.0,0.0,6.0,3.0,5.0,2.8,2994.9190651236136,0.0,650.0,820.0,0.0,56311.0,1,1,1,147.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2311.8859767817235,0.03368377616058459,0.04105567254677991,20111.07142857143,6,3,6,6_1,6_2,6_0_1 -3038,1,25.0,3,412.0,1,111,2,81,63,2.0,634.5824036555529,0.0,982.3009998098572,0.0,2433.074449134497,21186.0,71,50,1,1415,201103038,,,204.0,,2.0,0.0,5.0,0.0,3.0,2.0,4137.5279919599325,0.0,720.0,1400.0,0.0,21296.0,4,1,3,91.0,8,7.0,5,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,4049.9578525999073,0.1911619868120413,0.19017457985536754,10648.0,2,1,2_1,2_1_1,2_3_1,2_1_0 -3039,2,45.0,3,0.0,2,111,2,85,38,4.0,0.0,0.0,1227.8762497623215,0.0,187.69431464751835,26097.0,10,12,1,14150,201103039,,,372.0,,1.0,0.0,5.0,3.0,5.0,2.6,998.913394499911,0.0,900.0,108.0,0.0,40380.0,5,1,1,100.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1415.5705644098398,0.0542426548802483,0.03505622992594948,15530.76923076923,4,2,4_0,4_1_0,4_2_0,4_0_1 -3040,2,51.0,2,0.0,7,112,5,63,54,8.0,0.0,208.188947934516,2181.1935912544236,0.0,278.4901111096263,44901.0,50,42,1,14151,201103040,,,160.0,,2.0,0.0,4.0,0.0,2.0,1.5,1978.5605631322017,259.0,1500.0,0.0,0.0,42707.0,1,1,1,140.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2667.872650298566,0.05941677580228873,0.06246921231410696,28471.333333333332,8,4,8,8_1,8_0,8_0_0 -3041,2,60.0,3,0.0,2,112,2,0,78,8.0,1522.997768773327,0.0,425.66376658427146,43.44775802025888,0.0,17962.0,0,60,1,14152,201103041,,,110.0,,0.0,1.0,3.0,0.0,1.0,1.0,2443.0891225963187,0.0,312.0,0.0,0.0,25408.0,0,5,1,70.0,3,0.0,1,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1992.1092933778573,0.1109068752576471,0.07840480531241567,25408.0,8,4,8,8_1,8_0,8_0_1 -3042,2,40.0,3,0.0,1,111,4,0,56,4.0,0.0,0.0,1159.6609025533037,0.0,0.0,33978.0,0,50,2,14153,201103042,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2681.91595396618,0.0,850.0,0.0,0.0,15662.0,0,1,1,15.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1159.6609025533037,0.03412975756528647,0.07404296402460118,15662.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -3043,1,32.0,5,247.0,99,111,4,0,85,1.0,0.0,0.0,627.5811943229643,0.0,0.0,11196.0,0,42,2,14154,201103043,,,80.0,153.0,0.0,0.0,2.0,0.0,1.0,1.0,3182.572323678492,0.0,460.0,0.0,0.0,7064.0,0,7,3,50.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,627.5811943229643,0.056054054512590594,0.08884218492680694,7064.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -3044,2,59.0,1,0.0,6,212,4,0,78,5.0,0.0,0.0,586.6519859975537,93.84715732375918,0.0,14544.0,0,71,1,14157,201103044,,,170.0,,0.0,3.0,5.0,0.0,1.0,1.0,2543.962314411013,0.0,430.0,0.0,0.0,17706.0,0,5,1,90.0,1,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,680.4991433213129,0.04678899500284055,0.03843325106299068,17706.0,5,3,5,5_1,5_0,5_0_0 -3045,2,79.0,3,0.0,4,111,1,86,77,3.0,423.5837544400815,0.0,462.5000540771411,0.0,429.26384924015775,17355.0,70,71,2,14158,201103045,267.0,267.0,,189.0,0.0,2.0,2.0,0.0,2.0,1.5,3526.2863321917175,0.0,339.0,247.0,0.0,20020.0,6,5,3,55.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1315.3476577573804,0.075790703414427,0.06570168120666235,13346.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_1 -3046,2,86.0,2,0.0,1,111,2,0,74,10.0,0.0,0.0,327.43366660328576,0.0,375.3886292950367,20563.0,0,20,1,14159,201103046,,,160.0,,0.0,3.0,5.0,0.0,1.0,1.0,2403.5514621130774,0.0,240.0,216.0,0.0,39803.0,0,5,1,88.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,702.8222958983224,0.03417897660352684,0.01765752068684075,39803.0,10,5,10,10_1,10_3,10_1_0 -3047,2,48.0,4,0.0,2,111,1,0,64,7.0,0.0,0.0,671.2390165367358,0.0,782.0596443646599,21179.0,0,60,2,1416,201103047,,,,305.0,1.0,1.0,3.0,0.0,1.0,1.0,2992.3003653771266,0.0,492.0,450.0,0.0,23360.0,0,1,3,49.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1453.2986609013956,0.06861979606692457,0.06221312760708029,23360.0,7,4,7,7_0,7_4,7_0_1 -3048,2,44.0,3,0.0,2,221,2,85,64,3.0,1713.3724898699927,0.0,1528.023777482,52.13730962431066,0.0,28708.0,60,50,1,14160,201103048,,,340.0,,1.0,1.0,6.0,3.0,5.0,2.4,3011.35076991605,0.0,1120.0,0.0,0.0,31822.0,7,1,2,80.0,1,1.0,4,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3293.5335769763033,0.11472528831602004,0.10349863544014529,13259.166666666668,3,2,3_0,3_1_0,3_1_0,3_0_1 -3049,2,56.0,2,0.0,5,111,2,34,34,8.0,0.0,0.0,354.7198054868929,0.0,2085.4923849724264,51711.0,31,10,1,14161,201103049,,,484.0,,2.0,0.0,5.0,2.0,4.0,2.3,1912.8930460832257,0.0,260.0,1200.0,0.0,63464.0,1,1,1,180.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2440.212190459319,0.047189421795349525,0.03845033704870981,27593.04347826087,8,4,8,8_1,8_4,8_0_0 -3050,2,43.0,2,0.0,8,112,2,52,54,5.0,0.0,346.98157989085996,2073.746555154143,0.0,0.0,32658.0,50,50,1,14162,201103050,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2213.425270993105,0.0,1520.0,0.0,0.0,33103.0,1,1,2,100.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2420.728135045003,0.07412358794307683,0.07312715267634362,18390.555555555555,5,3,5,5_1,5_0,5_0_0 -3051,1,64.0,4,22.0,6,111,2,0,77,3.0,79.32280045694411,0.0,927.728722042643,0.0,1400.7557185731464,14838.0,0,70,1,14163,201103051,,,243.0,,0.0,4.0,5.0,0.0,1.0,1.0,1084.2467977168244,0.0,680.0,806.0,0.0,14332.0,0,5,3,100.0,7,5.0,1,3,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2407.8072410727336,0.16227303147814623,0.16800217981249885,14332.0,3,2,3_1,3_1_1,3_2_1,3_0_0 -3052,1,67.0,3,82.0,6,111,2,0,77,3.0,0.0,0.0,212.83188329213573,0.0,1084.4560401856618,9235.0,0,50,2,14165,201103052,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2917.1094767489817,0.0,156.0,624.0,0.0,12961.0,0,5,3,50.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1297.2879234777974,0.14047514060398456,0.10009165369013173,12961.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -3053,2,51.0,2,0.0,1,111,2,54,54,10.0,0.0,0.0,272.86138883607146,0.0,9384.715732375918,37227.0,50,20,2,14167,201103053,,,,582.0,2.0,0.0,2.0,0.0,2.0,1.5,2909.596660804065,0.0,200.0,5400.0,0.0,75433.0,1,1,3,41.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,9657.57712121199,0.25942399659419213,0.12802854349173426,50288.666666666664,10,5,10,10_0,10_4,10_1_0 -3054,2,72.0,3,0.0,4,111,2,77,75,5.0,0.0,0.0,386.0988652030411,0.0,1651.0148047698374,17934.0,71,70,1,14170,201103054,,,250.0,,0.0,2.0,4.0,0.0,2.0,1.5,1730.9227953357988,0.0,283.0,950.0,0.0,25724.0,5,5,3,63.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2037.1136699728786,0.11358947641200394,0.07919117050120038,17149.333333333332,5,3,5,5_1,5_2,5_0_1 -3055,2,49.0,3,0.0,4,111,4,85,43,3.0,0.0,0.0,1296.0915969713394,391.02982218232995,0.0,29736.0,50,60,2,14171,201103055,,,396.0,434.0,1.0,0.0,3.0,0.0,2.0,1.5,2619.7324158605848,0.0,950.0,0.0,0.0,18544.0,7,1,3,100.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1687.1214191536694,0.05673666327527809,0.09097936902252315,12362.666666666666,2,1,2_0,2_0_0,2_2_0,2_0_1 -3056,0,74.0,1,0.0,1,112,2,86,74,8.0,0.0,0.0,1691.740610783643,0.0,9488.99035162454,94224.0,50,20,1,14172,201103056,,,700.0,,0.0,3.0,10.0,1.0,3.0,2.0,2800.445615924396,0.0,1240.0,5460.0,0.0,51046.0,6,5,5,250.0,7,1.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,11180.730962408183,0.11866117934292943,0.2190324601811735,25523.0,8,4,8,8_1,8_1,8_1_0 -3057,2,52.0,2,0.0,7,300,2,52,43,9.0,0.0,0.0,1741.839094874604,2250.59386544941,1062.3483775147133,49928.0,70,10,1,14173,201103057,,,354.0,,2.0,1.0,5.0,1.0,3.0,2.0,1855.380296853231,988.0,900.0,0.0,0.0,58905.0,1,1,1,80.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5054.781337838727,0.10124141439350119,0.08581243252421233,29452.5,9,5,9,9_1,9_0,9_0_0 -3058,2,78.0,3,0.0,7,111,2,0,75,7.0,0.0,380.29181156038254,963.2007025913322,43.44775802025888,0.0,17294.0,0,70,1,14174,201103058,,,178.0,,0.0,1.0,4.0,0.0,1.0,1.0,1238.8446959706416,0.0,706.0,0.0,0.0,21704.0,0,5,1,93.0,4,4.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1386.9402721719734,0.08019777218526503,0.0639025189905996,21704.0,6,3,6,6_1,6_2,6_0_0 -3059,2,60.0,2,0.0,7,112,2,77,72,10.0,2379.684013708323,1832.0627418237407,859.5133748336251,104.27461924862132,0.0,54190.0,70,50,1,14177,201103059,,,180.0,,0.0,2.0,5.0,0.0,2.0,1.5,2102.8249460318116,0.0,630.0,0.0,0.0,126475.0,7,5,2,160.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5175.5347496143095,0.09550719227928232,0.040921405413040596,84316.66666666667,10,5,10,10_1,10_0,10_0_0 -3060,2,41.0,2,0.0,1,300,2,52,63,4.0,2298.7747572422404,0.0,1118.731694227893,0.0,0.0,32477.0,60,71,1,14178,201103060,,,309.0,,2.0,0.0,6.0,2.0,4.0,2.3,3085.3178070159065,0.0,820.0,0.0,0.0,35600.0,1,1,1,115.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3417.5064514701335,0.10522851407057714,0.09599737223230712,15478.260869565218,4,2,4_0,4_1_0,4_0_0,4_1_0 -3061,2,64.0,3,0.0,2,111,2,77,78,4.0,0.0,138.792631956344,784.4764929037054,0.0,1637.1115222033545,24468.0,50,71,1,14179,201103061,,,450.0,,0.0,2.0,4.0,0.0,2.0,1.5,2146.1223245865126,0.0,575.0,942.0,0.0,22164.0,6,5,1,100.0,7,6.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2560.380647063404,0.10464200780870542,0.11551979097019509,14776.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -3062,1,23.0,3,200.0,8,112,5,0,54,6.0,0.0,0.0,207.3746555154143,45.18566834106924,0.0,18828.0,0,10,2,14180,201103062,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2872.622244351237,0.0,152.0,0.0,0.0,19870.0,0,2,3,55.0,9,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,252.56032385648354,0.013414081360552556,0.012710635322419906,19870.0,6,3,6,6_0,6_1,6_0_0 -3063,2,59.0,4,0.0,5,111,6,77,63,5.0,0.0,0.0,1910.0297218525002,0.0,347.58206416207105,37803.0,70,70,1,14181,201103063,,,680.0,,1.0,1.0,5.0,1.0,5.0,2.8,2095.1840063369336,0.0,1400.0,200.0,0.0,46930.0,5,1,1,95.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2257.6117860145714,0.05972043980675003,0.04810594046483212,16760.714285714286,4,2,4_0,4_1_0,4_4_0,4_0_0 -3064,2,43.0,3,0.0,2,111,2,54,23,5.0,0.0,0.0,750.3688192991965,0.0,1737.9103208103552,43483.0,43,41,2,14183,201103064,,,,,2.0,0.0,3.0,3.0,5.0,2.6,3099.606698786426,0.0,550.0,1000.0,0.0,47380.0,1,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2488.279140109552,0.057224182786595953,0.05251749979125268,18223.076923076922,5,3,5,5_0,5_4,5_0_1 -3065,2,46.0,4,0.0,6,111,2,85,52,2.0,0.0,0.0,750.3688192991965,0.0,1465.0584004431294,46798.0,71,50,1,14184,201103065,,,483.0,,1.0,0.0,5.0,2.0,4.0,2.3,1936.9428845299894,0.0,550.0,843.0,0.0,22800.0,6,1,2,90.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2215.427219742326,0.04734021154199594,0.0971678605150143,9913.04347826087,2,1,2_0,2_1_0,2_2_0,2_0_0 -3066,1,77.0,3,202.0,2,112,4,0,71,4.0,0.0,0.0,1773.5990274344645,215.50087978048404,0.0,11227.0,0,71,1,14185,201103066,,,120.0,248.0,0.0,4.0,4.0,1.0,2.0,1.5,3094.6107933750395,0.0,1300.0,0.0,0.0,24653.0,0,5,3,80.0,9,0.0,2,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1989.0999072149484,0.17717109710652432,0.08068388866324376,16435.333333333332,4,2,4_1,4_1_1,4_0_1,4_0_1 -3067,2,48.0,3,0.0,5,112,6,52,21,5.0,1586.456009138882,0.0,731.2685220806715,156.41192887293198,0.0,41955.0,50,50,1,14188,201103067,,,570.0,,2.0,0.0,5.0,2.0,4.0,2.5,2169.0265986210434,0.0,536.0,0.0,0.0,45076.0,1,1,1,90.0,7,4.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2474.136460092486,0.05897119437712992,0.05488811030465183,18030.4,5,3,5,5_1,5_2,5_0_0 -3068,2,38.0,1,0.0,9,111,2,85,37,10.0,0.0,0.0,809.9596658297811,0.0,1674.1664208404948,57430.0,31,10,1,14189,201103068,,,,,1.0,0.0,4.0,2.0,4.0,2.1,2096.1055633500146,1557.0,0.0,0.0,0.0,101696.0,5,1,3,100.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2484.126086670276,0.04325485089100254,0.02442697929781187,48426.666666666664,10,5,10,10_1,10_2,10_0_0 -3069,2,34.0,4,0.0,7,111,1,85,64,4.0,0.0,0.0,368.36287492869644,0.0,0.0,27392.0,41,60,2,14190,201103069,,,,486.0,1.0,0.0,2.0,1.0,3.0,1.8,6140.252830406801,0.0,270.0,0.0,0.0,27640.0,6,1,3,50.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,368.36287492869644,0.013447826917665611,0.013327166241993359,15355.555555555555,4,2,4_0,4_0_0,4_4_0,4_0_0 -3070,1,34.0,3,522.0,3,112,2,56,64,2.0,0.0,0.0,884.3490249907694,0.0,1827.9273702176245,32678.0,71,50,1,14193,201103070,,,600.0,9.0,2.0,0.0,6.0,4.0,7.0,3.4,903.6499514702549,1700.0,0.0,0.0,0.0,41283.0,4,1,3,151.0,10,4.0,5,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,2712.2763952083938,0.08300007329727627,0.06569959535906775,12142.058823529413,2,1,2_1,2_1_1,2_2_1,2_0_1 -3071,2,67.0,2,0.0,6,400,4,75,74,10.0,0.0,0.0,3027.3971091362127,151.1981979105009,0.0,34549.0,42,33,1,14194,201103071,,,363.0,,0.0,1.0,6.0,0.0,2.0,1.5,2641.2660654722968,0.0,2219.0,0.0,0.0,62102.0,5,5,1,160.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3178.5953070467135,0.09200252704989186,0.05118346119362844,41401.333333333336,10,5,10,10_1,10_0,10_0_0 -3072,2,39.0,2,0.0,3,111,2,52,67,7.0,0.0,0.0,1023.230208135268,0.0,460.5462350147441,25754.0,41,50,2,14195,201103072,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2992.878123542838,0.0,750.0,265.0,0.0,41875.0,1,1,2,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1483.776443150012,0.05761343648171205,0.035433467299104765,23263.888888888887,7,4,7,7_0,7_3,7_0_1 -3073,2,43.0,4,0.0,1,111,4,0,43,6.0,0.0,0.0,886.7995137172322,0.0,0.0,18240.0,0,33,1,14196,201103073,,,350.0,,1.0,0.0,3.0,0.0,1.0,1.0,2216.2908974529146,0.0,650.0,0.0,0.0,20254.0,0,1,2,77.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,886.7995137172322,0.04861839439239212,0.04378391990309234,20254.0,6,3,6,6_1,6_3,6_1_0 -3074,2,37.0,4,0.0,6,111,1,0,54,4.0,0.0,0.0,409.2920832541072,0.0,0.0,17312.0,0,42,2,14197,201103074,,,,540.0,1.0,0.0,2.0,0.0,1.0,1.0,3029.42118593056,0.0,300.0,0.0,0.0,16600.0,0,4,3,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,409.2920832541072,0.02364210277576867,0.024656149593620915,16600.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -3075,2,56.0,3,0.0,99,111,2,78,46,8.0,2379.684013708323,0.0,1238.635169481224,0.0,3941.7787355435485,35607.0,50,41,1,14198,201103075,,,,,1.0,0.0,6.0,0.0,2.0,1.5,2197.898547906509,776.0,612.0,1788.0,0.0,41389.0,5,1,1,170.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,7560.097918733096,0.21232055266473154,0.18265959358121955,27592.666666666668,8,4,8,8_1,8_4,8_0_0 -3076,2,72.0,3,0.0,5,111,1,72,74,6.0,0.0,0.0,450.22129157951787,0.0,0.0,33477.0,42,60,2,14199,201103076,,,,,0.0,4.0,3.0,0.0,2.0,1.5,2743.4680132411786,0.0,330.0,0.0,0.0,30310.0,5,5,1,95.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,450.22129157951787,0.013448674958315197,0.014853886228291582,20206.666666666668,6,3,6,6_0,6_4,6_0_0 -3077,2,48.0,1,0.0,8,111,2,0,52,5.0,0.0,0.0,279.68292355697326,0.0,0.0,38730.0,0,20,1,142,201103077,,,173.0,,1.0,0.0,3.0,0.0,1.0,1.0,2112.4520746588046,0.0,205.0,0.0,0.0,18780.0,0,1,3,80.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,279.68292355697326,0.007221350982622599,0.014892594438603475,18780.0,5,3,5,5_1,5_2,5_0_0 -3078,2,54.0,2,0.0,6,111,2,43,34,9.0,2221.038412794435,0.0,818.5841665082144,0.0,0.0,101690.0,33,20,1,1420,201103078,,,,,3.0,3.0,7.0,1.0,3.0,2.0,1675.72565544666,0.0,600.0,0.0,0.0,66975.0,1,1,1,130.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3039.6225793026492,0.02989106676470301,0.04538443567454497,33487.5,9,5,9,9_1,9_3,9_0_0 -3079,2,68.0,3,0.0,4,111,2,0,75,7.0,0.0,0.0,1307.0060525247823,0.0,0.0,24109.0,0,50,1,14200,201103079,,,545.0,,0.0,2.0,5.0,0.0,1.0,1.0,4839.724408069362,0.0,958.0,0.0,0.0,22574.0,0,5,1,114.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1307.0060525247823,0.0542123710035581,0.057898735382510065,22574.0,7,4,7,7_1,7_3,7_0_1 -3080,2,53.0,2,0.0,1,111,2,62,43,9.0,0.0,0.0,709.4396109737858,0.0,2504.3287722877217,25827.0,50,30,1,14201,201103080,,,948.0,,2.0,1.0,5.0,0.0,2.0,1.5,1781.9345101034564,0.0,520.0,1441.0,0.0,53878.0,1,1,2,134.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3213.7683832615076,0.12443444392540781,0.05964899185681554,35918.666666666664,9,5,9,9_1,9_2,9_1_0 -3081,2,51.0,3,0.0,5,112,2,31,42,9.0,0.0,666.2046333904511,2728.6138883607146,0.0,0.0,107282.0,20,31,1,14202,201103081,,,,,2.0,2.0,10.0,2.0,4.0,2.5,7608.12219398386,0.0,2000.0,0.0,0.0,83188.0,1,1,2,300.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3394.8185217511655,0.03164387802008879,0.04080899314505897,33275.2,9,5,9,9_1,9_1,9_0_0 -3082,2,80.0,2,0.0,5,111,4,0,77,5.0,0.0,0.0,668.510402648375,0.0,0.0,7519.0,0,71,1,14203,201103082,,,70.0,291.0,0.0,1.0,3.0,0.0,1.0,1.0,3062.4853620409003,0.0,490.0,0.0,0.0,17504.0,0,5,3,36.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,668.510402648375,0.08890948299619299,0.03819186486793733,17504.0,5,3,5,5_1,5_3,5_0_0 -3083,2,86.0,1,0.0,7,111,2,0,74,10.0,0.0,0.0,612.8018537877213,0.0,1266.6461424213892,33657.0,0,12,2,14204,201103083,,,,932.0,0.0,4.0,4.0,0.0,1.0,1.0,3018.2844748116527,1178.0,0.0,0.0,0.0,66565.0,0,5,3,90.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1879.4479962091104,0.05584122162430135,0.028234777979555477,66565.0,10,5,10,10_0,10_3,10_0_0 -3084,2,42.0,1,0.0,5,111,2,46,47,10.0,1903.7472109666587,0.0,1334.2921914083895,0.0,0.0,28559.0,20,10,1,14205,201103084,,,449.0,,2.0,0.0,5.0,1.0,3.0,1.8,1317.0727081747953,0.0,978.0,0.0,0.0,76606.0,1,1,1,160.0,6,4.0,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3238.039402375048,0.11338069968749075,0.04226874399361732,42558.88888888889,10,5,10,10_1,10_2,10_0_0 -3085,1,42.0,5,169.0,7,111,1,0,62,1.0,0.0,0.0,450.22129157951787,0.0,0.0,14407.0,0,71,2,14206,201103085,,,,267.0,1.0,0.0,2.0,1.0,2.0,1.3,6409.615196012889,0.0,330.0,0.0,0.0,11858.0,0,1,3,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,450.22129157951787,0.0312501764128214,0.03796772571930493,9121.538461538461,1,1,1_1,1_0_1,1_4_1,1_0_0 -3086,2,53.0,3,0.0,6,120,5,54,63,4.0,0.0,721.7216861729887,1342.4780330734716,93.84715732375918,0.0,26187.0,42,50,1,14208,201103086,,,406.0,,2.0,2.0,5.0,1.0,3.0,2.0,1457.862688352031,0.0,984.0,0.0,0.0,29563.0,1,1,1,100.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2158.04687657022,0.08240909140299461,0.072998236869405,14781.5,3,2,3_0,3_1_0,3_0_0,3_0_0 -3087,2,64.0,2,0.0,5,111,1,77,74,8.0,0.0,0.0,1717.2059610353426,0.0,2675.225468883206,45494.0,60,60,2,14209,201103087,,,,,0.0,1.0,4.0,0.0,2.0,1.5,3414.9610783860767,2488.0,310.0,0.0,0.0,37475.0,5,5,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4392.431429918548,0.0965496863304732,0.11720964456086852,24983.333333333332,8,4,8,8_0,8_4,8_0_0 -3088,2,36.0,2,0.0,4,111,2,0,52,1.0,0.0,0.0,386.0988652030411,0.0,1315.5981128534388,21441.0,0,30,8,1421,201103088,,,,509.0,1.0,0.0,3.0,1.0,2.0,1.3,3738.898273977921,0.0,283.0,757.0,0.0,10088.0,0,1,3,60.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1701.69697805648,0.07936649307665128,0.1686852674520698,7760.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -3089,2,81.0,1,0.0,8,111,2,74,72,10.0,0.0,0.0,2619.469332826286,0.0,2780.6565132965684,122744.0,41,70,2,14211,201103089,,,38.0,,0.0,1.0,6.0,0.0,2.0,1.5,2714.4618842192504,0.0,1920.0,1600.0,0.0,100988.0,5,5,1,220.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,5400.125846122854,0.04399502905333747,0.05347294575714792,67325.33333333333,10,5,10,10_0,10_3,10_0_0 -3090,2,92.0,2,0.0,1,212,5,0,71,1.0,0.0,0.0,368.36287492869644,121.65372245672486,0.0,7436.0,0,70,5,14215,201103090,,,120.0,,0.0,2.0,5.0,0.0,1.0,1.0,2115.439979724338,0.0,270.0,0.0,0.0,8586.0,0,5,1,165.0,2,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,490.0165973854213,0.06589787485011045,0.05707158134002111,8586.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -3091,2,62.0,2,0.0,1,212,2,46,74,9.0,3617.119700836651,0.0,774.926344294443,72.99223347403492,0.0,44867.0,50,50,1,14216,201103091,,,281.0,,1.0,5.0,9.0,0.0,2.0,1.5,1133.5081085803872,0.0,568.0,0.0,0.0,44636.0,1,5,1,140.0,3,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4465.038278605129,0.09951720147558626,0.100032222390114,29757.333333333332,9,5,9,9_1,9_0,9_1_0 -3092,1,24.0,3,152.0,5,221,1,0,56,2.0,0.0,0.0,447.49267769115716,0.0,0.0,17389.0,0,50,2,14217,201103092,,,,248.0,1.0,0.0,3.0,1.0,2.0,1.3,5603.573599739959,0.0,328.0,0.0,0.0,16024.0,0,1,3,85.0,1,1.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,447.49267769115716,0.025734238753876426,0.02792640275156997,12326.153846153846,2,1,2_1,2_0_1,2_1_1,2_0_0 -3093,2,75.0,3,0.0,1,111,6,0,86,3.0,2750.9147198468218,0.0,463.8643610213215,166.8393907977941,0.0,16909.0,0,70,1,14219,201103093,,,50.0,,0.0,4.0,6.0,0.0,1.0,1.0,2045.6483810717114,0.0,340.0,0.0,0.0,12585.0,0,6,1,100.0,8,7.0,1,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3381.6184716659377,0.1999892643956436,0.26870230207913687,12585.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -3094,2,63.0,2,0.0,7,111,2,67,75,9.0,0.0,0.0,679.4248582018179,0.0,1451.1551178766467,62350.0,70,44,1,14220,201103094,,,381.0,,1.0,2.0,4.0,0.0,2.0,1.5,1134.937809565171,0.0,498.0,835.0,0.0,44800.0,1,5,1,115.0,4,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2130.579976078465,0.03417129071497137,0.047557588751751444,29866.666666666668,9,5,9,9_1,9_2,9_0_0 -3095,2,46.0,2,0.0,7,120,2,0,47,2.0,0.0,1110.341055650752,2701.3277494771073,0.0,0.0,18044.0,0,71,1,14221,201103095,,,120.0,,1.0,0.0,6.0,0.0,1.0,1.0,3738.032043061,0.0,1980.0,0.0,0.0,12280.0,0,1,1,120.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3811.6688051278593,0.2112430062695555,0.31039648250226864,12280.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -3097,2,39.0,3,0.0,5,111,2,43,43,7.0,0.0,0.0,2188.939154601213,0.0,1055.8968691492396,48008.0,33,20,2,14223,201103097,,,,,2.0,0.0,4.0,2.0,4.0,2.3,3272.8185815385614,982.0,1230.0,0.0,0.0,52542.0,1,1,2,90.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3244.8360237504526,0.06758948558053768,0.06175699485650437,22844.34782608696,7,4,7,7_0,7_3,7_0_0 -3098,2,47.0,3,0.0,6,111,4,67,68,6.0,0.0,0.0,2131.047446809718,125.12954309834558,0.0,52731.0,71,71,1,14226,201103098,,,354.0,,3.0,1.0,5.0,1.0,3.0,2.0,1611.5277850351897,0.0,1562.0,0.0,0.0,38990.0,1,1,1,90.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2256.1769899080637,0.042786539036014176,0.05786552936414629,19495.0,6,3,6,6_1,6_3,6_0_0 -3099,2,79.0,3,0.0,4,111,6,77,75,3.0,0.0,0.0,2165.5381523311944,201.5975972140012,133.331172886462,23019.0,70,70,1,14227,201103099,,,170.0,,0.0,3.0,4.0,0.0,2.0,1.5,1942.03324855925,124.0,1540.0,0.0,0.0,20159.0,5,5,1,95.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2500.4669224316576,0.10862621844700715,0.12403724998420843,13439.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1 -3100,1,63.0,5,245.0,1,111,4,0,78,1.0,0.0,0.0,221.01772495721787,0.0,0.0,7774.0,0,70,2,14228,201103100,,,,40.0,0.0,0.0,1.0,0.0,1.0,1.0,3156.126156555153,0.0,162.0,0.0,0.0,7953.0,0,5,3,25.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,221.01772495721787,0.02843037367599921,0.027790484717366764,7953.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -3102,2,27.0,2,0.0,1,221,4,0,55,6.0,0.0,0.0,1214.233180320518,52.13730962431066,0.0,16360.0,0,31,1,14230,201103102,,,335.0,,1.0,0.0,3.0,0.0,1.0,1.0,5942.317997791243,0.0,890.0,0.0,0.0,20005.0,0,1,3,50.0,1,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1266.3704899448285,0.07740650916533182,0.0633026988225358,20005.0,6,3,6,6_1,6_1,6_1_0 -3103,2,43.0,2,0.0,8,111,6,68,68,5.0,0.0,0.0,1377.950013622161,0.0,0.0,60431.0,50,71,1,14231,201103103,,,464.0,,3.0,0.0,4.0,2.0,4.0,2.5,1264.7430017869335,0.0,1010.0,0.0,0.0,44855.0,1,1,3,80.0,7,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1377.950013622161,0.022802038914169234,0.03072009839755124,17942.0,5,3,5,5_1,5_2,5_0_0 -3105,2,78.0,1,0.0,1,120,6,86,78,8.0,2855.620816449988,0.0,663.0531748716536,0.0,0.0,24860.0,70,71,1,14234,201103105,,,,,0.0,1.0,5.0,0.0,2.0,1.5,4318.918967736541,0.0,486.0,0.0,0.0,42550.0,5,5,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3518.6739913216416,0.14153958130819153,0.08269504092412788,28366.666666666668,8,4,8,8_1,8_0,8_1_0 -3106,2,53.0,3,0.0,2,111,2,55,78,6.0,0.0,0.0,1091.4455553442858,0.0,2606.865481215533,16938.0,71,50,1,14236,201103106,,,613.0,,1.0,2.0,5.0,0.0,2.0,1.5,3535.8281641685426,0.0,800.0,1500.0,0.0,31514.0,1,5,1,73.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3698.3110365598186,0.21834402152319154,0.11735454199910575,21009.333333333332,6,3,6,6_1,6_2,6_0_1 -3107,1,22.0,5,246.0,7,111,2,0,55,1.0,0.0,0.0,395.6490138123036,0.0,545.7038407344515,4681.0,0,41,2,14237,201103107,,,200.0,70.0,1.0,0.0,2.0,0.0,1.0,1.0,2895.641254152553,0.0,290.0,314.0,0.0,3794.0,0,4,3,48.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,941.3528545467552,0.20110080208219508,0.24811619782465874,3794.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -3108,2,36.0,3,0.0,6,221,2,56,53,7.0,0.0,0.0,1023.230208135268,0.0,0.0,34355.0,41,60,1,14239,201103108,,,450.0,,2.0,0.0,3.0,1.0,3.0,1.8,2861.1753836870726,0.0,750.0,0.0,0.0,41327.0,4,1,3,80.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1023.230208135268,0.02978402585170333,0.02475936332507242,22959.444444444445,7,4,7,7_1,7_1,7_0_0 -3109,2,55.0,2,0.0,6,112,4,74,45,9.0,0.0,0.0,1637.1683330164287,0.0,0.0,42783.0,44,50,1,14240,201103109,,,660.0,,1.0,3.0,5.0,0.0,2.0,1.5,1618.4713194905203,0.0,1200.0,0.0,0.0,48218.0,5,1,1,150.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.038266795994119834,0.033953468269451836,32145.333333333332,9,5,9,9_1,9_0,9_0_0 -3110,1,18.0,2,58.0,2,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,11159.0,0,41,2,14242,201103110,,,,322.0,0.0,0.0,1.0,0.0,1.0,1.0,4043.462376971861,0.0,0.0,0.0,0.0,1189.0,0,3,3,22.0,8,6.0,1,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0.0,0.0,0.0,1189.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -3111,2,29.0,3,0.0,7,112,4,54,45,7.0,0.0,346.98157989085996,1637.1683330164287,0.0,0.0,49359.0,43,33,1,14243,201103111,,,432.0,,2.0,0.0,5.0,2.0,4.0,2.1,2366.0672874893166,0.0,1200.0,0.0,0.0,50135.0,1,1,2,115.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1984.1499129072886,0.04019834098963287,0.03957614267292887,23873.809523809523,7,4,7,7_1,7_0,7_0_0 -3112,2,53.0,1,0.0,8,400,2,69,11,8.0,0.0,0.0,955.0148609262501,319.7754990291054,0.0,23261.0,71,71,1,14244,201103112,,,180.0,,2.0,2.0,4.0,0.0,2.0,1.5,3177.8061317854904,0.0,700.0,0.0,0.0,39295.0,1,1,2,106.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1274.7903599553556,0.05480376423865507,0.0324415411618617,26196.666666666668,8,4,8,8_1,8_0,8_0_0 -3113,2,49.0,3,0.0,9,111,2,85,47,5.0,0.0,0.0,3051.954634131459,0.0,0.0,38020.0,71,50,1,14245,201103113,,,,,1.0,0.0,4.0,2.0,4.0,2.1,1988.766173589804,0.0,2237.0,0.0,0.0,38847.0,6,1,2,147.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3051.954634131459,0.08027234703133769,0.07856345751619068,18498.571428571428,5,3,5,5_1,5_3,5_0_0 -3114,2,59.0,2,0.0,6,112,5,21,54,10.0,0.0,0.0,1296.0915969713394,166.8393907977941,0.0,28924.0,71,50,1,14247,201103114,,,,,3.0,3.0,5.0,1.0,3.0,2.0,1612.375028544109,0.0,950.0,0.0,0.0,79020.0,1,1,1,100.0,6,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1462.9309877691335,0.05057844654159637,0.018513426825729352,39510.0,10,5,10,10_1,10_1,10_0_0 -3115,1,62.0,4,262.0,5,111,2,0,78,3.0,0.0,0.0,816.7223348444163,0.0,1688.1446889656884,12335.0,0,60,2,14249,201103115,,,,268.0,0.0,2.0,2.0,0.0,1.0,1.0,2454.9241456795116,1570.0,0.0,0.0,0.0,13310.0,0,5,3,50.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,2504.867023810105,0.20306988437860599,0.18819436692788166,13310.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -3116,2,39.0,2,0.0,9,400,2,37,22,10.0,2696.9752155360998,0.0,993.2154553633001,104.27461924862132,0.0,42801.0,31,50,1,14251,201103116,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2345.7375904455885,0.0,728.0,0.0,0.0,89574.0,1,1,2,215.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3794.4652901480213,0.08865365973103481,0.04236123529314334,42654.28571428571,10,5,10,10_1,10_0,10_0_0 -3117,2,47.0,3,0.0,8,111,4,56,65,4.0,190.37472109666587,0.0,2755.900027244322,0.0,0.0,57555.0,50,60,1,14252,201103117,,,600.0,,3.0,0.0,6.0,4.0,6.0,3.1,998.601408201253,0.0,2020.0,0.0,0.0,45750.0,1,1,2,150.0,6,4.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2946.2747483409876,0.051190595922873554,0.06439944805116912,14758.064516129032,3,2,3_0,3_1_0,3_2_0,3_0_0 -3118,2,54.0,1,0.0,1,111,2,31,31,10.0,6901.083639754138,0.0,141.88792219475715,86.89551604051776,0.0,176593.0,10,10,1,14256,201103118,,,900.0,,2.0,3.0,10.0,0.0,2.0,1.5,3297.1926940333224,0.0,104.0,0.0,0.0,442151.0,1,1,1,400.0,7,5.0,3,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,7129.867077989413,0.04037457361271066,0.0161254120831784,294767.3333333333,10,5,10,10_1,10_2,10_1_0 -3119,2,41.0,1,0.0,9,112,2,52,64,5.0,1427.810408224994,0.0,327.43366660328576,83.41969539889705,0.0,56042.0,31,50,1,14257,201103119,,,80.0,,2.0,0.0,5.0,3.0,5.0,2.6,2958.154821313503,0.0,240.0,0.0,0.0,49329.0,1,1,2,80.0,9,2.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1838.6637702271769,0.032808675104870934,0.037273485581041106,18972.69230769231,5,3,5,5_1,5_1,5_0_0 -3120,2,50.0,2,0.0,1,111,2,62,34,8.0,0.0,0.0,1200.5901108787143,0.0,1668.3939079779411,67512.0,50,10,1,14258,201103120,,,194.0,,2.0,0.0,7.0,2.0,4.0,2.5,1157.803712120963,0.0,880.0,960.0,0.0,64248.0,1,1,2,173.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2868.9840188566554,0.04249591211720369,0.04465483779816734,25699.2,8,4,8,8_1,8_3,8_1_0 -3121,0,50.0,3,0.0,5,111,1,0,56,5.0,0.0,0.0,556.9619392046006,0.0,663.4681187132438,28705.0,0,60,2,14259,201103121,50.0,50.0,,,1.0,1.0,2.0,0.0,1.0,1.0,4145.409020317434,415.0,250.0,125.0,0.0,18020.0,0,1,5,50.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1220.4300579178444,0.042516288378952945,0.06772641830842643,18020.0,5,3,5,5_0,5_3,5_0_0 -3122,2,75.0,4,0.0,3,111,2,77,78,4.0,0.0,0.0,613.9381248811608,0.0,1737.9103208103552,12720.0,71,50,2,14260,201103122,,,300.0,335.0,0.0,4.0,4.0,0.0,2.0,1.5,1813.303416004896,0.0,450.0,1000.0,0.0,23370.0,5,5,3,70.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2351.8484456915157,0.18489374573046508,0.10063536352980385,15580.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -3123,2,67.0,2,0.0,1,112,2,75,75,8.0,0.0,0.0,612.4760682720788,0.0,2368.8962848096407,27913.0,44,60,1,14261,201103123,,,432.0,,0.0,1.0,5.0,0.0,2.0,1.5,1853.885859577858,207.0,370.0,1235.0,0.0,38726.0,5,5,1,80.0,6,0.0,3,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2981.3723530817197,0.10680945627778167,0.07698632322165262,25817.333333333332,8,4,8,8_1,8_0,8_1_0 -3124,2,55.0,3,0.0,1,300,2,46,64,8.0,0.0,0.0,2455.752499524643,130.34327406077665,0.0,40496.0,41,50,1,14263,201103124,,,880.0,,2.0,2.0,6.0,1.0,3.0,2.0,1580.3463090393263,0.0,1800.0,0.0,0.0,50040.0,1,1,1,114.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2586.09577358542,0.06386052384397027,0.05168057101489648,25020.0,8,4,8,8_1,8_0,8_1_0 -3125,2,79.0,2,0.0,4,111,2,0,77,6.0,0.0,0.0,477.50743046312505,0.0,1564.1192887293198,16067.0,0,10,2,14264,201103125,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2695.8883422861213,0.0,350.0,900.0,0.0,20065.0,0,5,1,62.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2041.6267191924449,0.12706956614131107,0.10175064635895564,20065.0,6,3,6,6_0,6_2,6_0_1 -3127,2,57.0,3,0.0,5,112,4,43,33,10.0,0.0,0.0,2865.0445827787503,166.8393907977941,0.0,46183.0,41,43,1,14267,201103127,,,320.0,,2.0,2.0,6.0,0.0,2.0,1.5,1478.359749914137,0.0,2100.0,0.0,0.0,84600.0,1,1,1,85.0,8,1.0,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3031.8839735765446,0.06564935092082681,0.03583787202809154,56400.0,10,5,10,10_1,10_1,10_0_0 -3128,2,70.0,2,0.0,8,112,2,75,74,9.0,2855.620816449988,0.0,1882.743582968893,173.79103208103552,0.0,29193.0,41,60,1,14269,201103128,,,,,0.0,2.0,8.0,0.0,2.0,1.5,2327.455180895396,0.0,1380.0,0.0,0.0,49958.0,5,5,1,400.0,8,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4912.155431499916,0.16826483854005808,0.098325702219863,33305.333333333336,9,5,9,9_1,9_0,9_0_0 -3129,2,54.0,3,0.0,1,111,2,0,55,7.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,16734.0,0,41,2,1427,201103129,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2331.1361511446403,600.0,0.0,0.0,0.0,22170.0,0,1,2,48.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,957.2740218382565,0.057205331769944814,0.04317880116546038,22170.0,7,4,7,7_0,7_3,7_1_0 -3130,2,30.0,2,0.0,9,300,6,54,47,7.0,0.0,0.0,1118.731694227893,104.27461924862132,0.0,31674.0,31,31,1,14271,201103130,,,351.0,,2.0,0.0,5.0,1.0,3.0,1.8,5924.05721212325,0.0,820.0,0.0,0.0,39211.0,1,1,2,108.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1223.0063134765144,0.038612310206368454,0.0311903882450464,21783.888888888887,7,4,7,7_1,7_1,7_0_0 -3131,2,34.0,3,0.0,4,111,2,0,63,7.0,0.0,0.0,364.2699540961554,2606.865481215533,0.0,28416.0,0,43,2,14272,201103131,,,,600.0,1.0,1.0,3.0,0.0,1.0,1.0,2912.7293402294663,0.0,267.0,0.0,0.0,23060.0,0,1,3,110.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2971.135435311688,0.1045585386863629,0.12884368756772283,23060.0,7,4,7,7_0,7_3,7_0_1 -3132,2,68.0,3,0.0,2,120,6,78,78,6.0,0.0,0.0,676.7159561769317,1355.5700502320772,45.16055855831778,20580.0,50,70,1,14274,201103132,,,102.0,,0.0,1.0,3.0,0.0,2.0,1.5,718.6793776318565,42.0,480.0,0.0,0.0,31873.0,5,5,1,74.0,0,0.0,3,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2077.4465649673266,0.10094492541143472,0.06517888385051067,21248.666666666668,6,3,6,6_1,6_0,6_0_1 -3133,2,57.0,2,0.0,6,111,6,75,54,7.0,0.0,0.0,1004.1299109167429,0.0,0.0,37690.0,50,42,1,14275,201103133,,,168.0,,1.0,0.0,5.0,1.0,3.0,2.0,1639.4761103375083,0.0,736.0,0.0,0.0,46683.0,5,1,1,120.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1004.1299109167429,0.02664181244141,0.02150954118023141,23341.5,7,4,7,7_1,7_3,7_0_0 -3134,2,57.0,2,0.0,5,111,2,0,34,9.0,0.0,0.0,443.3997568586161,0.0,1268.6745341915594,55328.0,0,20,1,14276,201103134,,,118.0,,1.0,0.0,5.0,0.0,1.0,1.0,1342.0526617460202,0.0,325.0,730.0,0.0,35533.0,0,1,1,95.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1712.0742910501754,0.03094408420781838,0.048182655307747034,35533.0,9,5,9,9_1,9_3,9_0_0 -3135,1,65.0,2,78.0,4,111,1,0,86,1.0,0.0,0.0,596.2021346068161,0.0,137.29491534401805,10288.0,0,71,2,14277,201103135,,,,450.0,0.0,6.0,4.0,0.0,1.0,1.0,3417.1891406979244,0.0,437.0,79.0,0.0,8356.0,0,5,3,70.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,733.4970499508341,0.0712963695519862,0.0877808819950735,8356.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -3136,2,82.0,2,0.0,1,112,5,0,86,2.0,0.0,799.4455600685415,388.8274790914018,173.79103208103552,0.0,5912.0,0,71,1,14278,201103136,,,95.0,,0.0,2.0,3.0,0.0,1.0,1.0,2348.1004282318036,0.0,285.0,0.0,0.0,9754.0,0,5,1,70.0,8,1.0,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1362.0640712409788,0.23038972788243892,0.1396415902441028,9754.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -3137,2,73.0,2,0.0,3,111,1,77,72,10.0,0.0,0.0,851.9676289631493,0.0,1168.798265545034,46755.0,70,70,2,14280,201103137,,,,,0.0,1.0,2.0,0.0,2.0,1.5,2854.313057187231,1087.0,210.0,0.0,0.0,57671.0,5,5,1,51.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2020.7658945081832,0.043220316426225716,0.0350395501119832,38447.333333333336,10,5,10,10_0,10_4,10_0_1 -3138,2,77.0,2,0.0,4,112,6,0,75,6.0,2489.149478338906,0.0,1596.2391246910179,0.0,0.0,22256.0,0,41,1,14281,201103138,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3772.5215819209425,0.0,1170.0,0.0,0.0,19830.0,0,5,3,181.0,9,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4085.388603029924,0.18356347066094195,0.20602060529651658,19830.0,6,3,6,6_1,6_0,6_0_1 -3139,2,45.0,2,0.0,7,400,2,52,43,10.0,1269.1648073111057,249.82673752141918,577.1018373882911,0.0,0.0,30548.0,42,33,1,14282,201103139,,,260.0,600.0,2.0,0.0,5.0,0.0,2.0,1.5,2367.9570452379467,0.0,423.0,0.0,0.0,58381.0,1,1,3,150.0,0,0.0,3,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2096.093382220816,0.06861638674285767,0.03590369096488268,38920.666666666664,10,5,10,10_1,10_0,10_0_0 -3140,2,31.0,3,0.0,7,111,2,0,52,3.0,0.0,0.0,351.99119159853217,0.0,1185.2548387926622,30361.0,0,50,2,14284,201103140,,,222.0,405.0,1.0,0.0,3.0,1.0,3.0,2.0,3408.326370098954,0.0,258.0,682.0,0.0,26061.0,0,1,3,67.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1537.2460303911944,0.05063225949050408,0.05898645602207108,13030.5,3,2,3_0,3_0_0,3_3_0,3_0_0 -3141,2,73.0,3,0.0,4,112,2,77,75,4.0,3172.912018277764,0.0,341.0767360450893,39.971937378638174,0.0,21344.0,70,60,1,14285,201103141,,,112.0,,0.0,1.0,4.0,0.0,2.0,1.5,1609.2886518082662,0.0,250.0,0.0,0.0,22462.0,5,5,1,80.0,7,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3553.9606917014917,0.16650865309695895,0.1582210262532941,14974.666666666666,4,2,4_0,4_1_0,4_1_0,4_0_1 -3142,2,87.0,2,0.0,2,211,4,0,78,7.0,0.0,0.0,1146.0178331115,52.13730962431066,0.0,26792.0,0,50,1,14286,201103142,,,,,0.0,4.0,5.0,0.0,1.0,1.0,1337.5894569293073,0.0,840.0,0.0,0.0,22517.0,0,5,1,80.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1198.1551427358108,0.04472063088742202,0.05321113570794559,22517.0,7,4,7,7_1,7_2,7_0_1 -3143,0,28.0,3,0.0,2,111,4,54,35,3.0,0.0,0.0,1534.8453122029018,0.0,0.0,42067.0,20,30,1,14288,201103143,,,610.0,,2.0,0.0,3.0,0.0,2.0,1.5,2794.7813885388705,0.0,1125.0,0.0,0.0,20485.0,1,1,5,70.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1534.8453122029018,0.03648573257429581,0.07492532644388097,13656.666666666666,3,2,3_0,3_1_0,3_4_0,3_0_1 -3144,2,34.0,1,0.0,9,112,2,46,45,9.0,0.0,0.0,47.7507430463125,0.0,137.29491534401805,38292.0,31,43,1,14289,201103144,,,161.0,,2.0,0.0,3.0,1.0,3.0,1.8,3963.717420747666,0.0,35.0,79.0,0.0,52664.0,1,1,2,90.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,185.04565839033054,0.004832488728463662,0.0035137030683261915,29257.777777777777,9,5,9,9_1,9_1,9_0_0 -3145,0,54.0,2,0.0,3,111,4,0,33,9.0,0.0,0.0,0.0,0.0,0.0,31801.0,0,10,2,1429,201103145,,,,,1.0,2.0,4.0,0.0,1.0,1.0,3959.2011833531024,0.0,0.0,0.0,0.0,29480.0,0,1,5,60.0,5,4.0,1,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,29480.0,9,5,9,9_0,9_2,9_0_1 -3146,1,47.0,4,212.0,4,111,1,0,85,1.0,0.0,0.0,336.9838152125482,0.0,139.0328256648284,8421.0,0,43,2,14290,201103146,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3024.0030370320264,0.0,247.0,80.0,0.0,7985.0,0,7,3,30.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,476.01664087737663,0.056527329399997224,0.05961385608984053,7985.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -3147,2,41.0,5,0.0,1,111,2,0,52,3.0,475.9368027416647,0.0,491.1504999049286,406.67101506962314,0.0,21303.0,0,41,1,14293,201103147,,,158.0,,1.0,0.0,2.0,0.0,1.0,1.0,3199.0760091368447,0.0,360.0,0.0,0.0,12970.0,0,1,2,54.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1373.7583177162164,0.06448661304587225,0.1059181432317823,12970.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -3148,2,79.0,1,0.0,1,111,2,78,74,3.0,0.0,0.0,252.39678467336608,0.0,3395.876766863434,18665.0,71,60,1,14294,201103148,,,350.0,,0.0,3.0,5.0,0.0,2.0,1.5,2319.2735900481016,0.0,185.0,1954.0,0.0,20536.0,5,5,1,90.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3648.2735515368004,0.1954606778214198,0.17765258821273863,13690.666666666666,3,2,3_0,3_1_0,3_3_0,3_1_0 -3149,0,81.0,3,0.0,7,111,6,0,86,4.0,1361.179255841161,0.0,941.3717914844465,41.709847699448524,0.0,26127.0,0,71,1,14295,201103149,,,150.0,,1.0,9.0,6.0,0.0,2.0,1.5,6076.688855063051,0.0,690.0,0.0,0.0,22330.0,0,5,5,95.0,8,7.0,5,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2344.2608950250556,0.08972560550484386,0.10498257478840374,14886.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0 -3150,2,72.0,1,0.0,1,111,4,0,75,4.0,0.0,0.0,831.267561975378,0.0,1224.7113380458084,36711.0,0,50,2,14299,201103150,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2582.650976154021,1139.0,175.0,0.0,0.0,16723.0,0,5,1,84.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2055.9789000211863,0.056004437362675664,0.12294318603248139,16723.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -3151,2,53.0,3,0.0,2,111,4,0,48,9.0,0.0,0.0,1301.5488247480607,0.0,0.0,52585.0,0,43,1,14300,201103151,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2508.4952215675694,0.0,954.0,0.0,0.0,50256.0,0,1,1,70.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1301.5488247480607,0.024751332599563768,0.02589837680571595,33504.0,9,5,9,9_1,9_3,9_0_1 -3152,2,64.0,2,0.0,8,111,6,56,77,7.0,0.0,0.0,1271.534071976093,90.37133668213848,0.0,29673.0,50,50,1,14301,201103152,,,,,2.0,1.0,4.0,1.0,3.0,2.0,1242.610112170711,0.0,932.0,0.0,0.0,43451.0,1,5,2,100.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1361.9054086582314,0.04589712562458233,0.031343476759067256,21725.5,6,3,6,6_1,6_3,6_0_0 -3153,2,71.0,2,0.0,2,400,2,52,75,7.0,0.0,0.0,633.0384220996858,0.0,3797.3340509706263,34323.0,50,70,1,14303,201103153,,,369.0,,1.0,2.0,5.0,0.0,2.0,1.5,2024.3497749039786,0.0,464.0,2185.0,0.0,36231.0,5,5,1,169.0,0,0.0,3,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4430.3724730703125,0.12907882391021508,0.12228126391958026,24154.0,7,4,7,7_1,7_0,7_0_1 -3154,1,28.0,3,190.0,4,111,1,55,43,8.0,0.0,0.0,265.3047074972308,0.0,548.3782110652872,29043.0,50,41,2,14304,201103154,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2969.490525939744,510.0,0.0,0.0,0.0,48877.0,4,1,3,87.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,813.6829185625181,0.028016489982526534,0.016647562627872377,27153.888888888887,8,4,8,8_0,8_3,8_0_1 -3155,2,86.0,1,0.0,2,211,2,0,86,10.0,0.0,0.0,1296.0915969713394,0.0,5839.378677922794,55075.0,0,41,1,14305,201103155,,,639.0,,0.0,3.0,8.0,0.0,1.0,1.0,2286.7249881002754,0.0,950.0,3360.0,0.0,53700.0,0,6,1,152.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,7135.470274894134,0.12955915160951673,0.13287654143192054,53700.0,10,5,10,10_1,10_2,10_0_1 -3156,2,57.0,3,0.0,1,112,2,71,13,6.0,2301.947669260518,0.0,1337.02080529675,234.61789330939797,0.0,34143.0,50,50,1,14306,201103156,,,,,1.0,2.0,5.0,0.0,2.0,1.5,2753.676745109329,0.0,980.0,0.0,0.0,31209.0,5,1,1,86.0,5,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3873.586367866666,0.11345184570385339,0.12411760607089833,20806.0,6,3,6,6_1,6_0,6_1_0 -3157,2,66.0,4,0.0,1,400,2,78,74,4.0,1903.7472109666587,0.0,1364.3069441803573,239.831624271829,0.0,14984.0,70,42,1,14309,201103157,,,,,0.0,3.0,6.0,0.0,2.0,1.5,2122.5867956596608,0.0,1000.0,0.0,0.0,22790.0,6,5,1,250.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3507.8857794188452,0.23410876798043548,0.15392214916274002,15193.333333333334,4,2,4_0,4_1_0,4_0_0,4_1_0 -3158,1,29.0,4,211.0,2,111,1,0,43,2.0,0.0,0.0,0.0,0.0,0.0,8525.0,0,20,2,1431,201103158,,,,259.0,1.0,0.0,1.0,0.0,1.0,1.0,3455.50223354571,0.0,0.0,0.0,0.0,9519.0,0,3,3,15.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0.0,0.0,0.0,9519.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -3159,2,48.0,2,0.0,5,111,6,62,62,9.0,0.0,0.0,409.2920832541072,0.0,1042.7461924862132,75004.0,10,31,1,14310,201103159,,,200.0,,2.0,0.0,4.0,2.0,4.0,2.1,1842.9665033929973,0.0,300.0,600.0,0.0,71754.0,1,1,2,65.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1452.0382757403204,0.019359477837719595,0.020236339099427493,34168.57142857143,9,5,9,9_1,9_3,9_0_0 -3160,2,79.0,4,0.0,1,112,2,0,78,3.0,951.8736054833294,0.0,368.36287492869644,0.0,0.0,8471.0,0,70,1,14311,201103160,,,150.0,,0.0,4.0,4.0,0.0,1.0,1.0,1948.1842877007903,0.0,270.0,0.0,0.0,14089.0,0,5,5,80.0,5,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1320.2364804120257,0.15585367493944347,0.09370689760891658,14089.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -3161,2,46.0,3,0.0,4,111,1,81,67,1.0,0.0,0.0,409.2920832541072,0.0,625.6477154917279,16588.0,41,71,2,14312,201103161,,,,312.0,2.0,0.0,3.0,2.0,4.0,2.1,4535.896141854887,0.0,300.0,360.0,0.0,18680.0,4,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1034.939798745835,0.062390872844576506,0.05540362948318175,8895.238095238095,1,1,1_0,1_0_0,1_4_0,1_0_1 -3162,2,64.0,3,0.0,5,112,7,75,72,10.0,0.0,0.0,2068.2893273774216,0.0,0.0,38326.0,70,60,1,14313,201103162,,,452.0,,0.0,1.0,7.0,0.0,2.0,1.5,3030.3650519435487,0.0,1516.0,0.0,0.0,57327.0,5,5,1,180.0,10,4.0,3,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2068.2893273774216,0.053965697630262,0.036078799298365896,38218.0,10,5,10,10_1,10_2,10_0_0 -3163,2,35.0,1,0.0,5,111,2,38,37,10.0,0.0,0.0,1091.4455553442858,0.0,2085.4923849724264,83155.0,10,10,1,14314,201103163,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.1,1393.0781972362192,0.0,800.0,1200.0,0.0,107294.0,1,1,2,150.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3176.9379403167122,0.038205014013790055,0.029609651428008203,51092.38095238095,10,5,10,10_1,10_3,10_0_0 -3164,2,39.0,2,0.0,9,112,4,34,53,8.0,0.0,263.7060007170536,1162.3895164416645,0.0,0.0,45559.0,20,42,1,14315,201103164,,,629.0,,2.0,0.0,6.0,2.0,4.0,2.1,1259.615533564056,0.0,852.0,0.0,0.0,51910.0,1,1,2,140.0,6,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1426.095517158718,0.03130216899314554,0.027472462283928297,24719.04761904762,7,4,7,7_1,7_1,7_0_0 -3165,2,39.0,3,0.0,1,400,1,52,69,7.0,0.0,0.0,682.1534720901786,1437.2518353101639,0.0,21709.0,42,50,1,14317,201103165,,,230.0,,2.0,0.0,5.0,0.0,2.0,1.5,2222.7630539932525,0.0,500.0,0.0,0.0,36919.0,1,1,3,110.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2119.4053074003423,0.09762795648810826,0.05740689908720015,24612.666666666668,7,4,7,7_1,7_0,7_1_0 -3166,2,73.0,1,0.0,1,112,2,77,75,6.0,3172.912018277764,0.0,1049.6922271311441,0.0,195.69575375271037,57698.0,71,50,1,14319,201103166,,,200.0,,0.0,2.0,8.0,0.0,2.0,1.5,2047.534736148603,182.0,700.0,0.0,0.0,28857.0,5,5,1,150.0,9,1.0,3,9,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4418.299999161619,0.07657631112277061,0.15311016388264959,19238.0,6,3,6,6_1,6_1,6_1_0 -3167,2,70.0,3,0.0,1,300,4,0,78,7.0,0.0,0.0,955.0148609262501,130.34327406077665,0.0,8968.0,0,70,1,1432,201103167,,,,,0.0,3.0,6.0,0.0,1.0,1.0,2427.1446473584037,0.0,700.0,0.0,0.0,24701.0,0,5,1,99.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1085.3581349870267,0.1210256617960556,0.04393984595712832,24701.0,7,4,7,7_1,7_0,7_1_0 -3168,1,78.0,3,264.0,8,111,2,0,77,4.0,0.0,0.0,486.3919637449231,0.0,1005.3600536196934,18051.0,0,71,2,14320,201103168,,,,313.0,0.0,6.0,3.0,0.0,1.0,1.0,4413.261677395954,935.0,0.0,0.0,0.0,16186.0,0,5,3,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1491.7520173646164,0.08264096268154764,0.09216310498978231,16186.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -3169,2,81.0,3,0.0,2,111,1,77,77,5.0,0.0,0.0,293.3259929987768,0.0,389.29191186151957,36340.0,70,70,2,14321,201103169,,,,,0.0,1.0,3.0,0.0,2.0,1.5,3446.7860940893324,0.0,215.0,224.0,0.0,25240.0,5,5,1,55.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,682.6179048602964,0.018784202115032924,0.02704508339383108,16826.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1 -3170,2,44.0,1,0.0,6,111,2,54,33,9.0,0.0,312.283421901774,870.427830387068,0.0,2073.3270127267538,49159.0,20,20,1,14322,201103170,,,,,2.0,0.0,5.0,2.0,4.0,2.3,1367.3667577434398,0.0,638.0,1193.0,0.0,68704.0,1,1,2,114.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3256.0382650155957,0.06623483522886137,0.04739226631659868,29871.304347826088,9,5,9,9_1,9_2,9_0_0 -3171,2,34.0,2,0.0,2,211,2,62,46,8.0,0.0,0.0,559.3658471139465,0.0,1181.7790181510416,44639.0,31,31,2,14323,201103171,,,,427.0,2.0,0.0,3.0,0.0,2.0,1.5,3237.153421346404,0.0,410.0,680.0,0.0,42378.0,1,1,3,65.0,1,2.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1741.144865264988,0.03900501501523305,0.041086055624734254,28252.0,8,4,8,8_0,8_1,8_0_1 -3172,1,29.0,2,297.0,5,111,1,46,37,10.0,0.0,0.0,818.5841665082144,0.0,782.0596443646599,45872.0,20,10,2,14325,201103172,450.0,450.0,,533.0,2.0,0.0,2.0,0.0,2.0,1.5,3112.1341087701176,0.0,600.0,450.0,0.0,82115.0,1,1,3,45.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1600.6438108728744,0.034893700097507724,0.019492709138073123,54743.333333333336,10,5,10,10_0,10_4,10_0_0 -3173,2,66.0,3,0.0,1,120,2,77,71,6.0,0.0,0.0,1389.3260786623123,0.0,1415.8088943030418,35336.0,71,70,1,14327,201103173,,,,,0.0,1.0,10.0,0.0,2.0,1.5,2020.9140071559477,153.0,960.0,720.0,0.0,30970.0,5,5,1,300.0,0,1.0,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2805.134972965354,0.0793846211502534,0.09057587901082835,20646.666666666668,6,3,6,6_1,6_1,6_1_0 -3174,2,27.0,3,0.0,99,400,2,34,34,9.0,0.0,0.0,491.1504999049286,0.0,1668.3939079779411,52382.0,10,20,8,14328,201103174,,,480.0,,2.0,0.0,5.0,0.0,2.0,1.5,4106.677778896626,0.0,360.0,960.0,0.0,48539.0,1,1,3,85.0,0,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,2159.5444078828696,0.041226841431844324,0.044490912624546644,32359.333333333332,9,5,9,9_0,9_0,9_0_0 -3175,2,32.0,1,0.0,2,111,2,37,63,9.0,0.0,0.0,2223.8203190139825,48.661488982689946,0.0,36227.0,20,43,1,14329,201103175,,,220.0,,2.0,0.0,4.0,1.0,3.0,1.8,1574.267743550395,0.0,1630.0,0.0,0.0,52646.0,1,1,2,80.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2272.4818079966726,0.0627289537636755,0.04316532705232444,29247.777777777777,9,5,9,9_1,9_3,9_0_1 -3176,2,55.0,3,0.0,5,400,2,67,56,5.0,1269.1648073111057,0.0,886.7995137172322,243.30744491344973,0.0,24409.0,50,70,1,1433,201103176,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1390.8096861040092,0.0,650.0,0.0,0.0,26732.0,1,1,1,153.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2399.2717659417876,0.0982945538916706,0.08975279687048435,17821.333333333332,5,3,5,5_1,5_0,5_0_0 -3177,2,63.0,1,0.0,1,111,2,77,74,10.0,0.0,0.0,1443.0851720101607,0.0,2847.1449561023646,50615.0,20,12,1,14330,201103177,,,643.0,,0.0,3.0,7.0,0.0,2.0,1.5,2060.9330306199818,912.0,710.0,1074.0,0.0,93100.0,6,5,1,200.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4290.230128112526,0.08476202959819273,0.04608195626329244,62066.666666666664,10,5,10,10_1,10_3,10_1_0 -3178,2,51.0,2,0.0,5,112,2,55,62,8.0,2221.038412794435,0.0,1105.0886247860894,0.0,0.0,20535.0,71,50,1,14332,201103178,,,,,3.0,1.0,7.0,1.0,3.0,2.0,1495.295579228734,0.0,810.0,0.0,0.0,54565.0,1,1,1,160.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3326.1270375805243,0.1619735591711967,0.06095715270925546,27282.5,8,4,8,8_1,8_0,8_0_0 -3179,2,77.0,3,0.0,1,111,2,75,74,10.0,5774.699873265531,0.0,1746.3128885508572,69.5164128324142,159.8877495145527,45115.0,41,12,1,14333,201103179,,,756.0,,0.0,1.0,7.0,0.0,2.0,1.5,2877.4413175558097,0.0,1280.0,92.0,0.0,89527.0,5,5,1,170.0,8,6.0,3,3,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,7750.416924163354,0.1717924620229049,0.08657072083464602,59684.666666666664,10,5,10,10_1,10_2,10_1_0 -3180,2,55.0,3,0.0,4,111,2,77,64,3.0,0.0,0.0,613.9381248811608,0.0,1998.5968689319086,38097.0,50,60,1,14335,201103180,,,490.0,,2.0,1.0,5.0,1.0,3.0,2.0,1608.9727201293597,0.0,450.0,1150.0,0.0,26596.0,6,1,1,134.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2612.5349938130694,0.06857587195351522,0.09823037275579295,13298.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -3181,2,64.0,1,0.0,5,112,2,77,78,8.0,0.0,0.0,459.7714401887804,0.0,1720.5312176022517,27546.0,70,60,1,14339,201103181,,,279.0,,0.0,2.0,6.0,0.0,2.0,1.5,2753.806368706473,0.0,337.0,990.0,0.0,38227.0,5,5,1,100.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2180.3026577910323,0.07915133441483455,0.05703567263429075,25484.666666666668,8,4,8,8_1,8_0,8_0_0 -3182,2,67.0,2,0.0,1,112,2,86,72,9.0,0.0,0.0,468.18477793628966,0.0,967.7262548210953,17558.0,70,44,1,1434,201103182,,,600.0,,0.0,2.0,4.0,0.0,2.0,1.5,2283.738930592594,900.0,0.0,0.0,0.0,54701.0,6,5,1,150.0,5,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1435.9110327573849,0.0817810133703944,0.026250178840558396,36467.333333333336,9,5,9,9_1,9_0,9_1_0 -3183,2,36.0,3,0.0,2,111,5,56,47,7.0,0.0,710.6182756164812,1377.950013622161,34.7582064162071,0.0,29831.0,50,43,1,14340,201103183,,,,419.0,2.0,3.0,4.0,0.0,2.0,1.5,2463.048291873831,0.0,1010.0,0.0,0.0,35006.0,1,1,3,82.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2123.326495654849,0.07117852219687068,0.06065607312046076,23337.333333333332,7,4,7,7_1,7_2,7_0_1 -3184,2,76.0,3,0.0,1,112,2,77,72,5.0,0.0,69.396315978172,985.2688549014806,0.0,2036.5261407012829,14579.0,50,50,1,14341,201103184,,,200.0,,0.0,2.0,3.0,0.0,2.0,1.5,2075.836607622293,1894.0,0.0,0.0,0.0,25610.0,5,5,1,110.0,10,2.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3091.1913115809357,0.21203040754379146,0.12070251119019663,17073.333333333332,5,3,5,5_1,5_1,5_1_0 -3185,1,26.0,3,164.0,1,221,2,0,62,3.0,0.0,0.0,286.1129198499548,0.0,591.3882668351138,6945.0,0,41,1,14342,201103185,,,,,1.0,0.0,5.0,0.0,1.0,1.0,1732.199491987036,550.0,0.0,0.0,0.0,13312.0,0,4,4,100.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,877.5011866850685,0.12635006287761966,0.06591805789401056,13312.0,3,2,3_1,3_1_1,3_1_1,3_1_0 -3186,1,71.0,3,97.0,2,111,2,0,78,4.0,0.0,0.0,3492.6257771017144,0.0,955.8506764456954,11295.0,0,60,2,14344,201103186,,,235.0,194.0,0.0,0.0,4.0,0.0,1.0,1.0,2778.8855121469433,0.0,2560.0,550.0,0.0,15585.0,0,5,3,99.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,4448.47645354741,0.3938447502034006,0.2854332020242162,15585.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -3187,1,47.0,5,150.0,5,111,4,85,67,2.0,0.0,0.0,2674.0416105935,0.0,0.0,21258.0,50,50,1,14345,201103187,,,220.0,,1.0,1.0,3.0,2.0,4.0,2.3,1601.2496258883066,0.0,1960.0,0.0,0.0,25750.0,6,1,3,70.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2674.0416105935,0.12578989606705712,0.1038462761395534,11195.652173913044,2,1,2_1,2_1_1,2_2_1,2_0_0 -3188,2,81.0,3,0.0,7,221,2,0,78,2.0,0.0,555.170527825376,477.50743046312505,104.27461924862132,0.0,11038.0,0,50,1,14346,201103188,,,340.0,,0.0,0.0,3.0,0.0,1.0,1.0,2102.4395736327083,0.0,350.0,0.0,0.0,11765.0,0,5,1,73.0,1,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1136.9525775371224,0.10300349497527835,0.09663855312682723,11765.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -3189,1,39.0,5,575.0,1,111,2,0,56,1.0,0.0,0.0,1227.8762497623215,0.0,1320.81184381587,22495.0,0,50,1,14352,201103189,,,1500.0,,1.0,1.0,5.0,4.0,5.0,2.6,891.8766159948561,0.0,900.0,760.0,0.0,21830.0,0,1,3,150.0,7,6.0,2,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,2548.6880935781915,0.11330020420440949,0.11675163048915214,8396.153846153846,1,1,1_1,1_1_1,1_2_1,1_1_0 -3190,2,54.0,2,0.0,9,111,2,0,31,8.0,0.0,0.0,750.3688192991965,0.0,1477.223772688802,83525.0,0,50,1,14354,201103190,,,150.0,,1.0,1.0,5.0,0.0,1.0,1.0,3179.17725039023,0.0,550.0,850.0,0.0,26179.0,0,1,2,92.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2227.5925919879983,0.02666977063140375,0.08509082058092357,26179.0,8,4,8,8_1,8_3,8_0_0 -3191,2,45.0,3,0.0,7,111,2,52,64,3.0,0.0,0.0,1036.8732775770716,0.0,1720.5312176022517,35601.0,50,71,1,14357,201103191,,,768.0,479.0,2.0,1.0,4.0,2.0,4.0,2.5,2108.699866180275,0.0,760.0,990.0,0.0,34355.0,1,1,3,81.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2757.404495179323,0.0774530068025989,0.08026210144605801,13742.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -3192,2,46.0,3,0.0,2,111,2,85,46,4.0,0.0,0.0,785.8407998478858,0.0,834.1969539889706,62631.0,50,50,2,14359,201103192,,,,723.0,2.0,2.0,4.0,1.0,3.0,2.0,3885.6091764930584,0.0,576.0,480.0,0.0,33285.0,6,1,3,72.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1620.0377538368564,0.025866388111907144,0.0486717065896607,16642.5,4,2,4_0,4_0_0,4_3_0,4_0_1 -3193,2,46.0,2,0.0,8,112,4,33,38,10.0,0.0,0.0,1405.236152505768,0.0,0.0,72948.0,20,50,1,1436,201103193,,,170.0,,2.0,4.0,3.0,0.0,2.0,1.5,1068.799874821014,0.0,1030.0,0.0,0.0,60216.0,1,1,3,80.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1405.236152505768,0.019263532276495146,0.023336590814829413,40144.0,10,5,10,10_1,10_1,10_0_0 -3194,2,49.0,3,0.0,6,112,2,54,63,8.0,0.0,0.0,1364.3069441803573,243.30744491344973,0.0,82872.0,44,50,1,14361,201103194,,,,,3.0,1.0,5.0,1.0,3.0,2.0,1740.190541610931,0.0,1000.0,0.0,0.0,54453.0,1,1,1,120.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1607.614389093807,0.019398764227891288,0.02952297190409724,27226.5,8,4,8,8_1,8_0,8_0_0 -3195,1,44.0,4,174.0,4,111,1,85,62,2.0,0.0,0.0,401.10624158902505,0.0,229.4041623469669,21125.0,50,50,2,14362,201103195,,,,175.0,1.0,0.0,4.0,3.0,5.0,2.4,1975.5227161807877,0.0,294.0,132.0,0.0,27968.0,6,1,3,88.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,630.5104039359919,0.029846646340165296,0.02254399327574342,11653.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_1 -3196,2,62.0,2,0.0,5,111,2,78,74,10.0,0.0,0.0,682.1534720901786,0.0,1564.1192887293198,51518.0,71,12,2,14364,201103196,,,,,0.0,1.0,4.0,0.0,2.0,1.5,3413.802964407035,0.0,500.0,900.0,0.0,63206.0,5,5,1,85.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2246.272760819498,0.043601707380323346,0.03553891657152008,42137.333333333336,10,5,10,10_0,10_4,10_0_0 -3197,2,56.0,3,0.0,4,111,1,67,52,9.0,0.0,0.0,458.40713324460006,0.0,0.0,42757.0,60,50,2,14365,201103197,,,190.0,,2.0,0.0,4.0,0.0,2.0,1.5,2518.8147754088077,0.0,336.0,0.0,0.0,44258.0,1,1,1,81.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,458.40713324460006,0.010721218355932363,0.010357610674784221,29505.333333333332,9,5,9,9_0,9_2,9_0_1 -3198,2,56.0,2,0.0,1,112,2,75,42,10.0,0.0,555.170527825376,1023.230208135268,0.0,2050.7341785562194,47197.0,41,41,1,14367,201103198,,,310.0,,1.0,2.0,11.0,0.0,2.0,1.5,1427.9895172939641,0.0,750.0,1180.0,0.0,70403.0,5,1,1,300.0,6,2.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3629.1349145168633,0.07689333886723443,0.05154801520555748,46935.333333333336,10,5,10,10_1,10_1,10_1_0 -3199,2,90.0,3,0.0,5,111,2,0,86,2.0,0.0,0.0,3233.4074577074466,0.0,0.0,23118.0,0,41,2,14369,201103199,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3401.497268269219,0.0,2370.0,0.0,0.0,11570.0,0,5,3,90.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3233.4074577074466,0.13986536282150042,0.27946477594705676,11570.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -3200,1,81.0,3,200.0,3,111,1,86,77,2.0,0.0,0.0,374.5478223490317,0.0,774.1810038568763,6853.0,71,71,2,1437,201103200,,,,,0.0,5.0,5.0,0.0,2.0,1.5,3214.9203576620953,720.0,0.0,0.0,0.0,15290.0,6,5,3,73.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1148.728826205908,0.16762422679204844,0.07512941963413394,10193.333333333334,2,1,2_1,2_0_1,2_4_1,2_0_1 -3201,2,28.0,1,0.0,1,111,4,0,38,10.0,0.0,0.0,562.0944610023072,0.0,0.0,44022.0,0,12,2,14371,201103201,,,,875.0,1.0,0.0,2.0,0.0,1.0,1.0,3747.7144813742334,0.0,412.0,0.0,0.0,38030.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,562.0944610023072,0.012768489868754422,0.014780290849390145,38030.0,10,5,10,10_0,10_4,10_1_0 -3202,2,36.0,1,0.0,9,111,4,23,31,10.0,0.0,0.0,2592.183193942679,0.0,0.0,39661.0,12,12,1,14374,201103202,,,513.0,,2.0,0.0,5.0,1.0,3.0,1.8,1793.6843783325414,0.0,1900.0,0.0,0.0,259103.0,1,1,2,174.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2592.183193942679,0.06535849307739791,0.010004450716289193,143946.1111111111,10,5,10,10_1,10_2,10_0_0 -3203,2,39.0,3,0.0,8,300,2,62,62,5.0,0.0,0.0,1551.2169955330662,156.41192887293198,0.0,21972.0,60,50,1,14375,201103203,,,286.0,,2.0,0.0,4.0,2.0,4.0,2.1,1715.538421147666,0.0,1137.0,0.0,0.0,37506.0,1,1,2,84.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1707.628924405998,0.0777184109050609,0.04552948659963734,17860.0,5,3,5,5_1,5_0,5_0_0 -3204,2,47.0,3,0.0,9,111,1,22,55,6.0,0.0,0.0,1146.0178331115,118.17790181510415,0.0,39609.0,50,71,2,14376,201103204,,,,777.0,3.0,0.0,4.0,2.0,4.0,2.5,2691.3236200626966,0.0,840.0,0.0,0.0,51179.0,1,1,3,100.0,6,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1264.1957349266042,0.031916880883804295,0.024701454403693004,20471.6,6,3,6,6_0,6_2,6_0_0 -3205,2,75.0,3,0.0,3,400,2,77,78,5.0,79.32280045694411,0.0,3047.861713298918,302.3963958210018,0.0,26384.0,60,50,1,14377,201103205,,,,,0.0,2.0,5.0,0.0,2.0,1.5,4555.74459918368,0.0,2234.0,0.0,0.0,26848.0,5,5,1,120.0,0,1.0,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3429.580909576864,0.12998714787662463,0.12774064770474017,17898.666666666668,5,3,5,5_1,5_1,5_0_1 -3206,2,38.0,4,0.0,7,112,2,13,69,2.0,3966.1400228472053,0.0,1268.8054580877322,173.79103208103552,0.0,46087.0,50,31,1,14378,201103206,,,,,2.0,0.0,7.0,4.0,6.0,2.9,1220.6571655077046,0.0,930.0,0.0,0.0,30650.0,1,1,1,130.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5408.736513015972,0.1173592664529254,0.17646774920117364,10568.96551724138,2,1,2_0,2_1_0,2_0_0,2_0_0 -3207,2,48.0,2,0.0,1,112,2,85,38,5.0,1427.810408224994,388.6193694777632,1200.5901108787143,312.82385774586396,0.0,53618.0,50,42,1,1438,201103207,,,310.0,,1.0,0.0,6.0,3.0,5.0,2.8,1130.1127381275583,0.0,880.0,0.0,0.0,48430.0,6,1,1,119.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3329.843746327336,0.06210309497421269,0.06875580727498112,17296.428571428572,5,3,5,5_1,5_0,5_1_0 -3208,2,40.0,3,0.0,6,111,2,56,62,6.0,0.0,0.0,682.1534720901786,0.0,1216.5372245672486,28906.0,71,71,2,14380,201103208,,,,767.0,2.0,2.0,3.0,2.0,4.0,2.3,4776.452805721484,0.0,500.0,700.0,0.0,44565.0,1,1,3,62.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1898.6906966574272,0.06568500299790449,0.04260497468096998,19376.08695652174,6,3,6,6_0,6_4,6_0_0 -3209,2,32.0,2,0.0,2,111,2,0,38,10.0,2855.620816449988,0.0,2164.875505729456,0.0,2782.750608307772,46300.0,0,20,1,14381,201103209,,,340.0,,1.0,1.0,4.0,1.0,2.0,1.5,2664.8285980585906,2588.0,600.0,0.0,0.0,74570.0,0,1,1,90.0,10,8.0,2,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,7803.246930487216,0.16853665076646254,0.10464324702276004,49713.333333333336,10,5,10,10_1,10_4,10_0_1 -3210,2,33.0,3,0.0,9,111,2,0,47,5.0,0.0,0.0,0.0,0.0,93.84715732375918,26364.0,0,44,1,14383,201103210,,,,,1.0,0.0,4.0,0.0,1.0,1.0,4610.775307152382,0.0,0.0,54.0,0.0,16910.0,0,1,3,72.0,8,6.0,1,5,0,1,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,93.84715732375918,0.0035596706616507047,0.005549802325473635,16910.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -3211,1,57.0,2,312.0,6,112,4,0,69,5.0,0.0,0.0,1742.2199677183162,100.7987986070006,0.0,15982.0,0,70,1,14385,201103211,,,120.0,123.0,2.0,2.0,4.0,1.0,2.0,1.5,1457.321162828856,0.0,1277.0,0.0,0.0,25501.0,0,1,3,83.0,8,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1843.0187663253168,0.11531840610219728,0.07227241152603102,17000.666666666668,4,2,4_1,4_1_1,4_0_1,4_0_0 -3212,1,75.0,2,40.0,5,111,2,0,78,5.0,0.0,0.0,545.7227776721429,0.0,1546.740185521216,11964.0,0,70,1,14386,201103212,,,170.0,,0.0,2.0,3.0,0.0,1.0,1.0,3696.1463271679495,0.0,400.0,890.0,0.0,18499.0,0,5,3,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2092.462963193359,0.1748966034096756,0.11311222029262982,18499.0,5,3,5,5_1,5_3,5_0_0 -3213,2,59.0,3,0.0,5,111,2,46,75,7.0,4045.4628233041494,0.0,540.2655498954215,180.74267336427695,0.0,35602.0,50,33,1,14389,201103213,,,609.0,,1.0,2.0,4.0,0.0,2.0,1.5,1736.257096739072,0.0,396.0,0.0,0.0,36918.0,4,5,1,109.0,8,6.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4766.471046563848,0.1338821146723175,0.12910967675832516,24612.0,7,4,7,7_1,7_2,7_0_0 -3214,2,45.0,5,0.0,1,111,2,0,34,6.0,0.0,0.0,515.8657198079708,0.0,2446.7768534389684,36219.0,0,20,2,1439,201103214,,,,493.0,1.0,1.0,4.0,1.0,2.0,1.5,1720.5163925017832,336.0,250.0,1200.0,0.0,30080.0,0,1,3,75.0,5,4.0,2,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2962.6425732469393,0.08179802239838038,0.098492106823369,20053.333333333332,6,3,6,6_0,6_2,6_1_0 -3215,2,47.0,4,0.0,6,111,4,55,63,1.0,0.0,0.0,982.3009998098572,55.61313026593137,0.0,16733.0,50,50,2,14390,201103215,,,,,2.0,0.0,4.0,1.0,3.0,1.8,4371.303726833911,0.0,720.0,0.0,0.0,10348.0,4,4,1,72.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1037.9141300757885,0.062027976458243504,0.10030094028563863,5748.888888888889,1,1,1_0,1_0_0,1_2_0,1_0_0 -3216,1,43.0,4,80.0,8,111,4,0,46,6.0,0.0,0.0,1500.737638598393,173.79103208103552,0.0,37857.0,0,42,1,14391,201103216,,,,,1.0,0.0,4.0,2.0,3.0,1.8,2216.0479699576363,0.0,1100.0,0.0,0.0,36239.0,0,1,3,93.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1674.5286706794286,0.0442329997273801,0.046207916076034895,20132.777777777777,6,3,6,6_1,6_3,6_0_0 -3217,1,60.0,3,127.0,3,111,1,0,78,4.0,0.0,0.0,564.823074890668,0.0,206.81132817643228,11959.0,0,50,2,14393,201103217,,,230.0,127.0,0.0,3.0,2.0,0.0,1.0,1.0,2681.5841097253615,0.0,414.0,119.0,0.0,16559.0,0,5,3,50.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,771.6344030671003,0.06452332160440674,0.04659909433341991,16559.0,4,2,4_1,4_0_1,4_2_1,4_0_1 -3218,2,46.0,2,0.0,8,111,2,34,33,9.0,0.0,0.0,1287.122138682103,0.0,3316.9310952044307,106871.0,31,31,1,14394,201103218,,,470.0,,2.0,0.0,6.0,2.0,4.0,2.5,1234.628296426617,822.0,630.0,1400.0,0.0,75857.0,1,1,2,159.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4604.053233886534,0.043080473036525666,0.060693848081080644,30342.8,9,5,9,9_1,9_4,9_0_0 -3219,2,64.0,3,0.0,1,300,5,0,78,7.0,0.0,0.0,818.5841665082144,1213.061403925628,0.0,22566.0,0,50,1,14395,201103219,,,50.0,,0.0,1.0,4.0,0.0,1.0,1.0,1175.203741971051,0.0,600.0,0.0,0.0,22180.0,0,5,5,100.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2031.6455704338423,0.09003126696950467,0.0915980870348892,22180.0,7,4,7,7_1,7_0,7_1_0 -3220,2,54.0,2,0.0,3,111,1,0,46,5.0,0.0,0.0,818.5841665082144,0.0,0.0,33681.0,0,41,8,14396,201103220,,,,359.0,1.0,0.0,3.0,1.0,2.0,1.5,3037.5071855532206,0.0,600.0,0.0,0.0,27170.0,0,1,3,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,818.5841665082144,0.024304033921445752,0.030128235793456547,18113.333333333332,5,3,5,5_0,5_4,5_0_1 -3221,1,47.0,4,230.0,2,111,1,68,63,2.0,0.0,0.0,401.10624158902505,0.0,260.6865481215533,9635.0,71,71,2,14397,201103221,,,,250.0,2.0,1.0,4.0,3.0,5.0,2.8,3653.8705288596852,0.0,294.0,150.0,0.0,27280.0,1,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,661.7927897105783,0.06868633001666614,0.02425926648499187,9742.857142857143,1,1,1_1,1_0_1,1_4_1,1_0_1 -3222,2,64.0,4,0.0,6,111,4,77,78,4.0,0.0,471.89494865156956,1214.233180320518,243.30744491344973,0.0,27249.0,50,71,1,14399,201103222,,,117.0,,0.0,2.0,5.0,0.0,2.0,1.5,2309.106322100127,0.0,890.0,0.0,0.0,22470.0,5,5,1,100.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1929.4355738855372,0.07080757363152913,0.08586718174835502,14980.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -3223,2,63.0,3,0.0,5,111,2,77,77,7.0,0.0,0.0,338.1334507317647,0.0,698.9134062596798,20262.0,71,70,1,14401,201103223,,,250.0,,0.0,4.0,6.0,0.0,2.0,1.5,2666.8689878332643,650.0,0.0,0.0,0.0,35200.0,5,5,1,90.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1037.0468569914447,0.051181860477319346,0.02946155843725695,23466.666666666668,7,4,7,7_1,7_2,7_0_0 -3224,2,33.0,2,0.0,6,112,2,34,38,10.0,0.0,0.0,1886.836503801434,0.0,0.0,57379.0,10,12,2,14405,201103224,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1332.0027809080027,0.0,1383.0,0.0,0.0,81259.0,1,1,1,80.0,10,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1886.836503801434,0.03288374673315035,0.023220031058731144,45143.88888888889,10,5,10,10_0,10_2,10_0_0 -3225,2,56.0,3,0.0,1,400,1,55,52,8.0,0.0,0.0,1350.6638747385537,264.162368763174,0.0,20264.0,50,70,1,14407,201103225,,,,350.0,2.0,5.0,3.0,0.0,2.0,1.5,1071.6180986522472,0.0,990.0,0.0,0.0,38010.0,1,1,3,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1614.8262435017277,0.07968941193751124,0.04248424739546771,25340.0,8,4,8,8_1,8_0,8_1_0 -3226,1,35.0,4,310.0,4,111,1,85,63,1.0,951.8736054833294,0.0,3424.410429892697,0.0,173.79103208103552,10766.0,60,71,8,14409,201103226,600.0,600.0,,,1.0,0.0,2.0,1.0,3.0,1.8,3179.6136743797065,0.0,2510.0,100.0,0.0,13570.0,6,1,3,49.0,10,8.0,4,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,4550.075067457061,0.4226337606777876,0.33530398433729264,7538.888888888889,1,1,1_1,1_0_1,1_4_1,1_0_1 -3227,2,34.0,2,0.0,5,112,1,85,21,9.0,0.0,0.0,409.2920832541072,0.0,521.3730962431066,26350.0,60,50,8,1441,201103227,300.0,300.0,,,1.0,0.0,2.0,2.0,4.0,2.1,5591.469192665953,0.0,300.0,300.0,0.0,63035.0,7,1,2,47.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,930.6651794972138,0.03531936165074815,0.0147642607995116,30016.666666666664,9,5,9,9_0,9_1,9_0_0 -3228,2,57.0,4,0.0,99,111,1,68,63,5.0,0.0,0.0,1964.6019996197144,0.0,364.9611673701746,19069.0,71,50,2,14411,201103228,,,,288.0,2.0,4.0,5.0,0.0,2.0,1.5,2700.682658438558,0.0,1440.0,210.0,0.0,26052.0,1,1,3,70.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2329.563166989889,0.12216493612616755,0.08941974385804886,17368.0,5,3,5,5_0,5_3,5_0_0 -3229,2,48.0,3,0.0,7,221,4,63,52,6.0,0.0,0.0,2046.460416270536,166.8393907977941,0.0,56224.0,50,50,1,14412,201103229,,,450.0,,2.0,0.0,4.0,2.0,4.0,2.3,1809.8784873030982,0.0,1500.0,0.0,0.0,48376.0,1,1,2,100.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2213.29980706833,0.039365747849109456,0.04575202180974719,21033.04347826087,6,3,6,6_1,6_1,6_0_0 -3230,2,46.0,2,0.0,7,111,2,43,33,10.0,0.0,0.0,759.4997508744253,0.0,1569.8670355986656,65598.0,20,12,1,14413,201103230,,,600.0,,2.0,0.0,5.0,0.0,2.0,1.5,1799.672895172153,1460.0,0.0,0.0,0.0,78680.0,1,1,2,110.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2329.366786473091,0.03550972265119502,0.02960557684892083,52453.333333333336,10,5,10,10_1,10_3,10_0_0 -3231,2,52.0,2,0.0,7,112,5,54,64,9.0,0.0,194.3096847388816,682.1534720901786,0.0,691.6883076825214,53643.0,41,50,1,14414,201103231,,,396.0,,2.0,2.0,4.0,0.0,2.0,1.5,1960.4002021689166,0.0,500.0,398.0,0.0,43766.0,1,1,2,100.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1568.1514645115817,0.029233105242279175,0.035830358372060084,29177.333333333332,9,5,9,9_1,9_0,9_0_0 -3232,1,39.0,4,587.0,4,111,6,85,21,1.0,0.0,0.0,642.5885707089483,0.0,1527.6231719923023,38480.0,71,71,2,14415,201103232,,,416.0,,1.0,0.0,4.0,6.0,8.0,4.1,3984.8544151008246,0.0,471.0,879.0,0.0,24624.0,6,1,3,80.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2170.211742701251,0.056398434061882816,0.08813400514543741,6005.8536585365855,1,1,1_1,1_0_1,1_2_1,1_0_1 -3233,2,58.0,3,0.0,5,112,2,85,67,2.0,0.0,0.0,442.03544991443573,0.0,761.2047205149356,13301.0,71,71,1,14419,201103233,,,780.0,416.0,2.0,2.0,5.0,1.0,3.0,2.0,2103.0314356597,0.0,324.0,438.0,0.0,22270.0,6,1,3,80.0,8,1.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1203.2401704293713,0.09046238406355697,0.05402964393486176,11135.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -3234,2,38.0,2,0.0,5,111,2,43,43,6.0,0.0,0.0,444.6564582061576,0.0,1128.0408706424228,37063.0,20,41,2,1442,201103234,,,,424.0,2.0,0.0,3.0,1.0,3.0,1.8,3696.9537845583613,186.0,255.0,534.0,0.0,38216.0,1,1,3,75.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1572.6973288485804,0.04243308228822762,0.04115285034667627,21231.11111111111,6,3,6,6_0,6_2,6_0_0 -3235,0,55.0,3,0.0,1,111,4,0,77,6.0,0.0,0.0,736.7257498573929,52.13730962431066,0.0,10202.0,0,60,1,14420,201103235,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2116.576002598269,0.0,540.0,0.0,0.0,18980.0,0,5,5,100.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,788.8630594817035,0.07732435399742242,0.041562858771428006,18980.0,5,3,5,5_1,5_3,5_1_0 -3236,2,62.0,3,0.0,6,111,5,77,68,8.0,0.0,929.9106341075047,347.8982707659911,0.0,0.0,35996.0,50,41,1,14424,201103236,,,365.0,,1.0,1.0,4.0,0.0,2.0,1.5,1682.9621801827225,0.0,255.0,0.0,0.0,39673.0,5,5,1,100.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1277.8089048734957,0.035498636094940986,0.03220852733278289,26448.666666666668,8,4,8,8_1,8_3,8_0_0 -3237,2,78.0,3,0.0,6,111,6,77,78,6.0,0.0,0.0,2544.4324508963664,0.0,0.0,25657.0,70,71,1,14425,201103237,,,600.0,,0.0,3.0,4.0,0.0,2.0,1.5,2121.53965388588,0.0,1865.0,0.0,0.0,30638.0,5,5,1,85.0,4,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2544.4324508963664,0.09917108200087174,0.08304825546368452,20425.333333333332,6,3,6,6_1,6_2,6_0_0 -3238,2,55.0,2,0.0,1,112,2,43,34,9.0,1759.3797141350203,804.9972653467952,723.0826804155894,109.48835021105238,0.0,53171.0,31,31,1,14427,201103238,,,,,2.0,3.0,7.0,0.0,2.0,1.5,2815.710890249928,0.0,530.0,0.0,0.0,50450.0,1,1,1,130.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3396.9480101084573,0.06388723195178683,0.06733296353039558,33633.333333333336,9,5,9,9_1,9_0,9_1_0 -3239,1,65.0,5,296.0,3,111,2,85,78,4.0,0.0,0.0,654.8673332065715,0.0,917.6166493878676,69084.0,71,71,2,14429,201103239,,,600.0,137.0,2.0,3.0,4.0,4.0,6.0,3.5,2335.7861860527646,0.0,480.0,528.0,0.0,53662.0,6,5,3,80.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1572.483982594439,0.02276191278146082,0.02930349190478251,15332.0,4,2,4_1,4_0_1,4_2_1,4_0_1 -3240,2,49.0,3,0.0,7,112,4,0,52,6.0,0.0,0.0,955.0148609262501,0.0,0.0,16398.0,0,50,1,14430,201103240,,,,,1.0,2.0,5.0,0.0,1.0,1.0,2333.8063855776513,0.0,700.0,0.0,0.0,20574.0,0,1,2,96.0,9,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,955.0148609262501,0.05823971587548787,0.046418531200848163,20574.0,6,3,6,6_1,6_1,6_0_0 -3241,2,53.0,1,0.0,6,111,2,65,37,9.0,0.0,0.0,741.339145882909,0.0,1175.9022844725023,42959.0,50,41,1,14431,201103241,,,350.0,,3.0,1.0,6.0,1.0,3.0,2.0,3113.747975720782,140.0,490.0,590.0,0.0,69821.0,1,1,2,135.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1917.2414303554112,0.04462956377837965,0.027459380850394743,34910.5,9,5,9,9_1,9_3,9_0_0 -3242,2,75.0,2,0.0,1,111,1,0,21,2.0,0.0,0.0,197.8245069061518,0.0,0.0,22075.0,0,50,2,14432,201103242,,,,,1.0,2.0,2.0,0.0,1.0,1.0,3654.321202262007,0.0,145.0,0.0,0.0,12283.0,0,1,1,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,197.8245069061518,0.008961472566530094,0.016105552951734253,12283.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -3243,0,28.0,3,0.0,6,111,4,35,31,1.0,0.0,0.0,0.0,0.0,0.0,59803.0,10,10,2,14433,201103243,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3998.5302336621467,0.0,0.0,0.0,0.0,9032.0,1,1,5,83.0,9,7.0,3,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,6021.333333333333,1,1,1_0,1_0_0,1_3_0,1_0_0 -3244,2,79.0,4,0.0,4,111,1,78,78,5.0,0.0,0.0,392.9203999239429,0.0,0.0,34143.0,70,50,2,14435,201103244,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2131.5465898904013,0.0,288.0,0.0,0.0,28109.0,5,5,1,105.0,7,6.0,3,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,392.9203999239429,0.01150808071709993,0.01397845529630876,18739.333333333332,5,3,5,5_0,5_2,5_0_1 -3245,2,85.0,4,0.0,6,400,2,78,75,5.0,0.0,0.0,2158.333585693325,375.3886292950367,0.0,30354.0,70,71,1,14437,201103245,,,,,0.0,4.0,5.0,0.0,2.0,1.5,2244.687025786902,0.0,1582.0,0.0,0.0,25400.0,5,5,1,90.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2533.722214988362,0.08347243246321281,0.09975284310977803,16933.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0 -3246,2,65.0,3,0.0,4,111,1,0,78,3.0,0.0,0.0,311.0619832731214,0.0,166.8393907977941,8791.0,0,70,2,14438,201103246,,,,251.0,0.0,2.0,2.0,0.0,1.0,1.0,3586.937068660392,0.0,228.0,96.0,0.0,13563.0,0,5,3,42.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,477.9013740709155,0.05436257241166141,0.03523566866260529,13563.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -3247,2,64.0,3,0.0,4,111,2,0,71,2.0,1110.5192063972174,0.0,354.7198054868929,52.13730962431066,0.0,16517.0,0,70,1,14439,201103247,,,139.0,,0.0,0.0,4.0,0.0,1.0,1.0,2957.968797417416,0.0,260.0,0.0,0.0,9560.0,0,5,1,78.0,8,6.0,1,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1517.376321508421,0.09186754988850403,0.15872137254272187,9560.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -3248,2,61.0,4,0.0,2,111,1,0,68,1.0,0.0,0.0,736.7257498573929,0.0,519.6351859222962,12817.0,0,71,2,1444,201103248,,,,380.0,1.0,3.0,5.0,0.0,1.0,1.0,3491.920440262305,0.0,540.0,299.0,0.0,5855.0,0,1,3,75.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1256.360935779689,0.09802301129591083,0.21457915213999812,5855.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -3249,2,61.0,1,0.0,1,112,2,77,74,9.0,0.0,444.1364222603008,624.2463705817195,0.0,1290.3016730947936,33866.0,42,41,1,14440,201103249,,,360.0,,0.0,2.0,6.0,0.0,2.0,1.5,1813.659115363269,1200.0,0.0,0.0,0.0,50941.0,5,5,2,145.0,4,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2358.684465936814,0.06964756587541528,0.04630228040157857,33960.666666666664,9,5,9,9_1,9_0,9_1_0 -3250,2,42.0,3,0.0,9,112,2,63,46,4.0,0.0,346.98157989085996,1200.5901108787143,0.0,2033.3550753481156,54715.0,50,50,1,14442,201103250,,,,,2.0,0.0,5.0,2.0,4.0,2.5,3654.564017983756,0.0,880.0,1170.0,0.0,40359.0,1,1,2,150.0,9,1.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3580.92676611769,0.06544689328552847,0.08872684571267103,16143.6,4,2,4_0,4_1_0,4_1_0,4_0_0 -3251,1,27.0,2,220.0,7,111,4,0,35,4.0,0.0,0.0,661.6888679274732,0.0,0.0,9522.0,0,30,2,14443,201103251,,,,238.0,1.0,0.0,1.0,0.0,1.0,1.0,3098.932834072681,0.0,485.0,0.0,0.0,15757.0,0,1,3,40.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,661.6888679274732,0.06949053433390813,0.04199332791314801,15757.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -3252,2,35.0,2,0.0,9,112,4,54,37,10.0,0.0,0.0,1773.5990274344645,83.41969539889705,0.0,34884.0,44,31,1,14445,201103252,,,323.0,,2.0,0.0,5.0,2.0,4.0,2.1,2213.1945946083483,0.0,1300.0,0.0,0.0,79002.0,1,1,2,98.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1857.0187228333616,0.05323411084833624,0.02350597102394068,37620.0,10,5,10,10_1,10_0,10_0_0 -3253,2,29.0,3,0.0,2,111,1,0,67,5.0,0.0,0.0,477.50743046312505,0.0,0.0,18383.0,0,50,2,14446,201103253,,,,226.0,1.0,0.0,2.0,0.0,1.0,1.0,2626.274848376598,0.0,350.0,0.0,0.0,17140.0,0,1,3,42.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,477.50743046312505,0.025975489879950228,0.027859243317568557,17140.0,5,3,5,5_0,5_2,5_0_1 -3255,2,67.0,5,0.0,1,111,2,0,77,4.0,3601.2551407452625,0.0,600.2950554393572,182.4805836850873,0.0,22487.0,0,60,1,14448,201103255,,,250.0,,0.0,0.0,5.0,0.0,1.0,1.0,1844.9086338344605,0.0,440.0,0.0,0.0,16667.0,0,5,1,90.0,6,5.0,1,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4384.030779869707,0.19495845510160123,0.2630365860604612,16667.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -3256,2,61.0,3,0.0,6,211,4,77,78,4.0,0.0,0.0,2455.752499524643,0.0,0.0,30576.0,70,70,1,14450,201103256,,,620.0,,0.0,1.0,4.0,0.0,2.0,1.5,1546.3024336404003,0.0,1800.0,0.0,0.0,24374.0,6,5,3,100.0,3,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2455.752499524643,0.08031634286776043,0.10075295394783963,16249.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_0 -3257,2,56.0,3,0.0,6,111,2,52,33,7.0,253.83296146222114,0.0,1828.1713052016787,121.65372245672486,0.0,41765.0,50,50,1,14453,201103257,,,350.0,,3.0,0.0,5.0,2.0,4.0,2.5,1786.2193991832971,0.0,1340.0,0.0,0.0,57642.0,1,1,1,112.0,7,5.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2203.6579891206247,0.052763270420702134,0.03823007510358115,23056.8,7,4,7,7_1,7_2,7_0_0 -3258,2,34.0,1,0.0,7,111,2,0,23,10.0,0.0,0.0,1227.8762497623215,0.0,0.0,27458.0,0,12,2,14454,201103258,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3295.989412406356,0.0,900.0,0.0,0.0,43199.0,0,1,2,68.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1227.8762497623215,0.04471834255088941,0.028423719293555905,43199.0,10,5,10,10_0,10_3,10_0_0 -3259,2,43.0,2,0.0,1,112,4,0,67,4.0,0.0,124.91336876070959,1364.3069441803573,0.0,0.0,27061.0,0,41,1,14455,201103259,,,355.0,,1.0,0.0,4.0,2.0,3.0,1.6,2129.752403741523,0.0,1000.0,0.0,0.0,25575.0,0,1,1,120.0,8,0.0,2,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1489.2203129410668,0.055031976384504154,0.058229533252827634,15984.375,4,2,4_0,4_1_0,4_0_0,4_1_0 -3260,2,80.0,2,0.0,5,400,2,72,72,4.0,0.0,0.0,750.3688192991965,3823.4027057827816,0.0,26355.0,70,50,1,14457,201103260,,,520.0,,0.0,1.0,4.0,0.0,2.0,1.5,1780.1496352474028,0.0,550.0,0.0,0.0,24850.0,5,5,1,120.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4573.771525081978,0.1735447362960341,0.18405519215621644,16566.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0 -3261,2,80.0,1,0.0,1,300,2,77,74,6.0,0.0,0.0,668.510402648375,3302.0296095396748,0.0,20729.0,60,70,1,14458,201103261,,,420.0,,0.0,3.0,4.0,0.0,2.0,1.5,1804.735277030454,0.0,490.0,0.0,0.0,28926.0,5,5,1,120.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3970.54001218805,0.1915451788406604,0.13726543636133753,19284.0,6,3,6,6_1,6_0,6_1_0 -3262,1,54.0,4,86.0,8,111,1,0,77,1.0,0.0,0.0,720.3540665272286,0.0,125.12954309834558,12733.0,0,71,2,1446,201103262,,,,372.0,0.0,4.0,3.0,0.0,1.0,1.0,3053.5867687776704,0.0,528.0,72.0,0.0,8562.0,0,7,3,69.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,845.4836096255742,0.06640097460343786,0.09874837767175593,8562.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -3263,2,36.0,1,0.0,8,111,2,85,23,10.0,1745.1016100527704,0.0,1159.6609025533037,0.0,0.0,66760.0,31,43,1,14461,201103263,,,,,1.0,0.0,6.0,1.0,3.0,1.8,2830.862360122972,0.0,850.0,0.0,0.0,146970.0,6,1,2,200.0,5,4.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2904.762512606074,0.043510522956951375,0.019764322736654242,81650.0,10,5,10,10_1,10_2,10_0_0 -3264,0,36.0,2,0.0,2,111,2,0,55,2.0,0.0,0.0,192.3672791294304,0.0,521.3730962431066,23283.0,0,10,2,14463,201103264,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2862.5336515918275,0.0,141.0,300.0,0.0,11820.0,0,4,5,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,713.740375372537,0.030655000445498303,0.06038412651205896,11820.0,2,1,2_0,2_0_0,2_4_0,2_0_1 -3265,0,27.0,3,0.0,4,111,1,0,48,7.0,0.0,0.0,0.0,0.0,0.0,14540.0,0,31,2,14464,201103265,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4454.026086914992,0.0,0.0,0.0,0.0,21687.0,0,1,5,17.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,21687.0,6,3,6,6_0,6_4,6_0_1 -3266,2,58.0,2,0.0,6,111,4,52,38,10.0,0.0,0.0,2046.460416270536,114.70208117348345,0.0,35847.0,50,31,1,14466,201103266,,,260.0,,2.0,2.0,6.0,1.0,3.0,2.0,2397.7186352655162,0.0,1500.0,0.0,0.0,79279.0,1,1,1,140.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2161.162497444019,0.06028851779630148,0.027260213895786013,39639.5,10,5,10,10_1,10_3,10_0_0 -3267,2,76.0,3,0.0,4,112,2,0,78,4.0,1154.9399746531062,0.0,384.7345582588608,48.661488982689946,0.0,7148.0,0,71,1,14467,201103267,,,43.0,,0.0,1.0,4.0,0.0,1.0,1.0,2864.796176171821,0.0,282.0,0.0,0.0,16310.0,0,5,1,75.0,9,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1588.3360218946568,0.22220705398638177,0.09738418282615921,16310.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -3268,2,63.0,1,0.0,7,111,4,75,34,10.0,0.0,0.0,2881.800647446667,39.971937378638174,880.6308918871968,43824.0,33,10,1,14469,201103268,,,,,1.0,3.0,5.0,0.0,2.0,1.5,3311.4858835315836,819.0,1800.0,0.0,0.0,107470.0,5,1,1,125.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3802.403476712502,0.08676532212286651,0.03538106891888436,71646.66666666667,10,5,10,10_1,10_2,10_0_0 -3270,2,71.0,3,0.0,1,111,6,0,77,4.0,0.0,0.0,1364.3069441803573,0.0,93.84715732375918,19855.0,0,50,2,14470,201103270,,,140.0,,0.0,2.0,4.0,0.0,1.0,1.0,3124.711594738301,0.0,1000.0,54.0,0.0,15773.0,0,5,1,78.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1458.1541015041164,0.07344014613468226,0.09244621197642278,15773.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -3271,2,84.0,3,0.0,4,112,2,86,78,1.0,2379.684013708323,0.0,477.50743046312505,208.54923849724264,0.0,17545.0,71,71,1,14472,201103271,,,150.0,,0.0,2.0,3.0,0.0,2.0,1.5,4698.739002072026,0.0,350.0,0.0,0.0,13860.0,6,5,1,85.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3065.7406826686906,0.17473586108114508,0.22119341144795748,9240.0,1,1,1_0,1_1_0,1_0_0,1_0_1 -3272,2,61.0,2,0.0,4,111,2,75,75,8.0,0.0,0.0,1017.7729803585465,0.0,1936.0320973827356,49536.0,50,50,1,14473,201103272,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1362.7755223519703,0.0,746.0,1114.0,0.0,42790.0,5,5,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2953.8050777412823,0.059629462971198366,0.06903026589720221,28526.666666666668,8,4,8,8_1,8_3,8_0_1 -3273,2,82.0,2,0.0,1,400,6,0,71,3.0,1185.082638826745,0.0,1937.3158607361072,104.27461924862132,0.0,13782.0,0,70,1,14475,201103273,,,,,0.0,6.0,4.0,0.0,1.0,1.0,2075.6183517203785,0.0,1420.0,0.0,0.0,13526.0,0,5,5,73.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3226.6731188114736,0.2341222695408122,0.23855338746203414,13526.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -3274,2,74.0,3,0.0,3,111,2,75,74,9.0,0.0,277.585263912688,955.0148609262501,0.0,1564.1192887293198,44087.0,50,43,1,14477,201103274,,,340.0,,0.0,2.0,4.0,0.0,2.0,1.5,2329.6338257927546,0.0,700.0,900.0,0.0,46308.0,5,5,1,120.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2796.7194135682576,0.06343637384190935,0.060393871762292856,30872.0,9,5,9,9_1,9_3,9_0_1 -3275,2,65.0,4,0.0,3,111,2,0,78,2.0,0.0,0.0,615.3024318253412,0.0,2606.865481215533,10945.0,0,50,1,1448,201103275,,,236.0,,0.0,5.0,5.0,0.0,1.0,1.0,4033.582369968843,0.0,451.0,1500.0,0.0,11999.0,0,5,1,75.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3222.167913040874,0.2943963374180789,0.26853637078430487,11999.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -3276,2,72.0,2,0.0,5,112,2,54,74,10.0,3648.848821019429,0.0,1227.8762497623215,0.0,0.0,49423.0,50,50,1,14480,201103276,,,210.0,,1.0,2.0,6.0,0.0,2.0,1.5,1146.121658235806,0.0,900.0,0.0,0.0,67476.0,5,5,1,150.0,3,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4876.725070781751,0.09867319002856466,0.07227347606232959,44984.0,10,5,10,10_1,10_0,10_0_0 -3277,1,32.0,3,137.0,1,120,2,0,85,1.0,0.0,0.0,384.7345582588608,48.661488982689946,0.0,24295.0,0,31,1,14481,201103277,,,,,1.0,0.0,3.0,1.0,3.0,1.8,2644.836912184114,0.0,282.0,0.0,0.0,14124.0,0,4,3,80.0,0,3.0,5,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,433.3960472415507,0.017838898836861523,0.030685078394332394,7846.666666666666,1,1,1_1,1_1_1,1_1_1,1_1_0 -3278,2,58.0,1,0.0,9,112,2,0,75,9.0,0.0,0.0,300.1475277196786,0.0,1035.7945512029717,31003.0,0,10,1,14483,201103278,,,266.0,,0.0,2.0,5.0,0.0,1.0,1.0,1130.3516077603376,0.0,220.0,596.0,0.0,29515.0,0,5,1,87.0,9,2.0,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1335.9420789226501,0.04309073570050157,0.04526315700229206,29515.0,9,5,9,9_1,9_1,9_0_0 -3279,2,77.0,3,0.0,1,111,2,78,56,4.0,2221.038412794435,0.0,750.3688192991965,145.98446694806984,0.0,14250.0,70,71,1,14485,201103279,,,500.0,,1.0,2.0,5.0,0.0,2.0,1.5,1491.774826401887,0.0,550.0,0.0,0.0,25067.0,5,5,1,80.0,6,5.0,3,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3117.391699041701,0.21876432975731236,0.12436237679186585,16711.333333333332,4,2,4_0,4_1_0,4_2_0,4_1_0 -3280,2,49.0,3,0.0,99,112,4,85,21,7.0,0.0,388.6193694777632,3929.203999239429,90.37133668213848,0.0,35304.0,50,50,1,14486,201103280,,,240.0,,1.0,2.0,4.0,3.0,5.0,2.6,1432.1894097099334,0.0,2880.0,0.0,0.0,58292.0,4,1,3,113.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4408.194705399331,0.12486388809764704,0.07562263613187625,22420.0,7,4,7,7_1,7_0,7_0_0 -3281,2,62.0,2,0.0,3,111,1,0,75,6.0,0.0,0.0,409.2920832541072,0.0,0.0,17763.0,0,31,2,14488,201103281,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2971.4286601144054,0.0,300.0,0.0,0.0,20622.0,0,5,1,58.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,409.2920832541072,0.02304183320689676,0.019847351530118667,20622.0,6,3,6,6_0,6_3,6_0_1 -3282,2,42.0,2,0.0,5,111,2,62,43,8.0,0.0,0.0,320.61213188238395,0.0,1268.6745341915594,18566.0,43,20,2,14489,201103282,,,,290.0,2.0,0.0,4.0,0.0,2.0,1.5,1220.4574929152802,0.0,235.0,730.0,0.0,42710.0,1,1,3,80.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1589.2866660739433,0.08560199644909745,0.03721111369875774,28473.333333333332,8,4,8,8_0,8_2,8_0_0 -3283,1,40.0,4,244.0,1,111,4,0,54,2.0,0.0,0.0,1091.4455553442858,46.92357866187959,0.0,13694.0,0,50,1,1449,201103283,,,300.0,322.0,1.0,0.0,5.0,0.0,1.0,1.0,1357.1564574037016,0.0,800.0,0.0,0.0,11813.0,0,1,3,116.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1138.3691340061655,0.08312904439945709,0.09636579480285834,11813.0,2,1,2_1,2_1_1,2_2_1,2_1_0 -3284,2,45.0,3,0.0,7,111,4,54,46,7.0,0.0,208.188947934516,1841.8143746434823,109.48835021105238,0.0,57095.0,50,41,1,14492,201103284,,,210.0,,2.0,2.0,5.0,1.0,3.0,2.0,1230.9512052629461,0.0,1350.0,0.0,0.0,44082.0,1,1,2,90.0,7,6.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2159.491672789051,0.03782278085277259,0.04898806026924937,22041.0,7,4,7,7_1,7_2,7_0_0 -3285,2,44.0,3,0.0,99,111,1,0,34,5.0,0.0,0.0,573.00891655575,0.0,1259.9849825875076,41766.0,0,31,2,14494,201103285,635.0,635.0,,,1.0,0.0,4.0,4.0,5.0,2.6,2144.404936244185,0.0,420.0,725.0,0.0,47264.0,0,1,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1832.9938991432577,0.04388722643162519,0.03878203070292945,18178.46153846154,5,3,5,5_0,5_4,5_0_0 -3286,2,80.0,4,0.0,6,211,4,0,78,5.0,0.0,97.1548423694408,1146.0178331115,93.84715732375918,0.0,9964.0,0,71,1,14495,201103286,,,70.0,,0.0,1.0,3.0,0.0,1.0,1.0,2234.280926213858,0.0,840.0,0.0,0.0,18940.0,0,5,5,60.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1337.0198328047,0.13418504945852067,0.07059238821566526,18940.0,5,3,5,5_1,5_2,5_0_0 -3287,2,74.0,3,0.0,1,300,2,77,78,4.0,1407.1864801061886,416.377895869032,1219.6904080972395,145.98446694806984,0.0,27626.0,70,60,1,14496,201103287,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2647.7897519979697,0.0,894.0,0.0,0.0,22156.0,5,5,1,88.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3189.23925102053,0.11544339575112322,0.1439447215661911,14770.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -3288,2,89.0,3,0.0,1,112,5,71,71,2.0,951.8736054833294,1110.341055650752,1285.1771414178966,199.85968689319085,0.0,27386.0,71,71,1,145,201103288,,,,,0.0,3.0,6.0,0.0,2.0,1.5,3543.6807109577667,0.0,942.0,0.0,0.0,16580.0,5,5,1,114.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3547.2514894451688,0.12952791533795255,0.21394761697498002,11053.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -3289,2,25.0,2,0.0,4,111,3,84,47,3.0,0.0,0.0,703.9823831970643,0.0,0.0,31065.0,50,42,2,1450,201103289,0.0,,221.0,,1.0,0.0,1.0,0.0,2.0,1.5,3538.228959596642,0.0,516.0,0.0,0.0,19373.0,3,1,3,36.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,703.9823831970643,0.02266159289222805,0.03633832566959502,12915.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_1 -3290,2,63.0,3,0.0,4,111,1,0,75,3.0,0.0,0.0,294.69029994295715,0.0,0.0,19377.0,0,41,2,14500,201103290,,,,,0.0,3.0,4.0,0.0,1.0,1.0,4583.745716530249,0.0,216.0,0.0,0.0,13969.0,0,5,1,87.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,294.69029994295715,0.015208252048457303,0.02109601975395212,13969.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -3291,2,75.0,2,0.0,3,111,2,86,75,6.0,0.0,0.0,409.2920832541072,0.0,1616.2565983536304,27281.0,70,70,1,14501,201103291,,,270.0,,0.0,3.0,5.0,0.0,2.0,1.5,2563.2888115201617,0.0,300.0,930.0,0.0,30282.0,6,5,1,80.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2025.5486816077375,0.07424759655466213,0.06688952782536614,20188.0,6,3,6,6_1,6_3,6_0_1 -3292,2,72.0,3,0.0,6,111,1,72,77,4.0,0.0,0.0,491.1504999049286,0.0,0.0,22276.0,70,43,8,14502,201103292,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2766.2955578585124,0.0,360.0,0.0,0.0,22731.0,5,5,1,76.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,491.1504999049286,0.022048415330621685,0.021607078434953526,15154.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -3293,1,43.0,3,150.0,4,111,2,63,63,4.0,0.0,0.0,682.1534720901786,0.0,1668.3939079779411,25938.0,71,50,1,14503,201103293,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3280.865209600026,0.0,500.0,960.0,0.0,35020.0,1,1,2,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,2350.5473800681198,0.09062176652278972,0.06712014220639977,16676.190476190477,4,2,4_1,4_1_1,4_4_1,4_0_1 -3294,2,37.0,4,0.0,99,211,2,0,52,4.0,553.6731471894699,0.0,593.0340520526336,0.0,1225.786589440054,12828.0,0,71,2,14504,201103294,,,150.0,287.0,1.0,0.0,3.0,0.0,1.0,1.0,2969.8864044746965,1140.0,0.0,0.0,0.0,15222.0,0,1,3,50.0,3,3.0,1,9,1,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,2372.493788682157,0.184946506757262,0.15585953151242657,15222.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -3295,2,66.0,3,0.0,5,111,1,0,52,10.0,0.0,0.0,764.011888741,0.0,1790.047630434666,27176.0,0,50,2,14505,201103295,999999.0,430.0,,,1.0,3.0,5.0,0.0,1.0,1.0,2208.7797202375623,0.0,560.0,1030.0,0.0,54280.0,0,1,3,98.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2554.059519175666,0.09398217247481845,0.04705341781826946,54280.0,10,5,10,10_0,10_4,10_0_0 -3296,2,70.0,4,0.0,1,400,2,56,77,4.0,3490.203220105541,0.0,1064.1594164606786,208.54923849724264,0.0,28865.0,70,70,1,14506,201103296,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1929.576876822902,0.0,780.0,0.0,0.0,22960.0,5,5,1,70.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4762.9118750634625,0.16500647410578426,0.20744389699753757,15306.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -3297,2,53.0,3,0.0,7,300,7,52,21,5.0,0.0,0.0,1637.1683330164287,145.98446694806984,0.0,21344.0,33,50,1,14509,201103297,,,,,2.0,2.0,2.0,0.0,2.0,1.5,2226.5372135408106,0.0,1200.0,0.0,0.0,28330.0,1,1,1,90.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1783.1527999644986,0.08354351574046565,0.06294220967047295,18886.666666666668,5,3,5,5_1,5_0,5_0_0 -3298,2,54.0,2,0.0,2,111,2,0,48,10.0,0.0,0.0,39.564901381230364,0.0,104.27461924862132,37156.0,0,41,2,1451,201103298,,,30.0,,1.0,3.0,4.0,0.0,1.0,1.0,2079.6784041320084,0.0,29.0,60.0,0.0,39478.0,0,1,3,112.0,7,5.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,143.83952062985168,0.0038712326577094325,0.003643536162669124,39478.0,10,5,10,10_0,10_2,10_0_1 -3299,2,47.0,3,0.0,9,111,5,54,47,5.0,0.0,0.0,1364.3069441803573,0.0,0.0,55963.0,20,50,1,14510,201103299,,,450.0,,2.0,1.0,4.0,3.0,5.0,2.4,1196.9764533975808,0.0,1000.0,0.0,0.0,45029.0,1,1,2,135.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1364.3069441803573,0.024378731379310566,0.030298406453182554,18762.083333333336,5,3,5,5_1,5_3,5_0_0 -3300,2,43.0,3,0.0,1,111,2,52,52,3.0,1427.810408224994,0.0,1227.8762497623215,130.34327406077665,0.0,56743.0,71,50,1,14514,201103300,,,,,2.0,0.0,5.0,2.0,4.0,2.5,3029.623128943818,0.0,900.0,0.0,0.0,32398.0,1,1,1,90.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2786.0299320480926,0.04909909472618812,0.08599388641422596,12959.2,3,2,3_0,3_1_0,3_3_0,3_1_0 -3301,2,57.0,2,0.0,1,111,2,0,34,9.0,0.0,0.0,764.011888741,0.0,1988.1694070070464,90387.0,0,10,2,14515,201103301,,,325.0,950.0,1.0,0.0,3.0,1.0,2.0,1.5,3331.5561720903797,0.0,560.0,1144.0,0.0,44316.0,0,1,3,130.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2752.1812957480465,0.030448862068085527,0.06210355843821749,29544.0,9,5,9,9_0,9_3,9_1_0 -3302,2,50.0,5,0.0,6,400,4,0,52,3.0,0.0,208.188947934516,1173.3039719951073,0.0,0.0,9149.0,0,50,1,14516,201103302,,,324.0,,1.0,3.0,5.0,0.0,1.0,1.0,2335.9896755673453,0.0,860.0,0.0,0.0,13383.0,0,1,1,100.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1381.4929199296232,0.1509993354388046,0.10322744675555728,13383.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -3303,2,76.0,2,0.0,3,120,2,0,71,2.0,1903.7472109666587,0.0,499.33634157001075,59.088950907552075,0.0,9308.0,0,71,1,14521,201103303,,,,,0.0,5.0,4.0,0.0,1.0,1.0,3445.47335292003,0.0,366.0,0.0,0.0,11204.0,0,5,1,80.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2462.172503444221,0.26452218558704566,0.219758345541255,11204.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -3304,2,74.0,3,0.0,1,300,2,0,78,5.0,1454.780160380355,0.0,1732.6698191090536,156.41192887293198,0.0,12566.0,0,70,1,14524,201103304,,,64.0,,0.0,1.0,2.0,0.0,1.0,1.0,2312.971282986547,0.0,1270.0,0.0,0.0,18929.0,0,5,1,70.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3343.8619083623407,0.26610392395052845,0.17665285584882143,18929.0,5,3,5,5_1,5_0,5_1_0 -3305,2,53.0,3,0.0,2,111,4,0,64,3.0,0.0,624.566843803548,346.53396382181074,208.54923849724264,0.0,9324.0,0,50,1,14525,201103305,,,184.0,,1.0,0.0,3.0,1.0,2.0,1.5,3451.4923559014865,0.0,254.0,0.0,0.0,18913.0,0,1,2,80.0,7,5.0,2,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1179.6500461226015,0.12651759396424297,0.06237244467417128,12608.666666666666,2,1,2_0,2_1_0,2_2_0,2_0_1 -3306,2,56.0,2,0.0,6,111,4,0,45,7.0,0.0,0.0,1828.1713052016787,0.0,0.0,59236.0,0,60,1,14526,201103306,,,,,2.0,2.0,3.0,1.0,2.0,1.5,2453.049592204189,0.0,1340.0,0.0,0.0,36514.0,0,1,2,75.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1828.1713052016787,0.030862504308219303,0.05006768103197893,24342.666666666668,7,4,7,7_1,7_4,7_0_0 -3307,2,50.0,3,0.0,1,111,2,67,54,5.0,2538.3296146222115,0.0,1169.2110511625663,187.69431464751835,0.0,40457.0,71,60,1,14528,201103307,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.5,2178.6936898988447,0.0,857.0,0.0,0.0,44172.0,1,1,1,110.0,7,5.0,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3895.234980432296,0.0962808656210865,0.08818335100136503,17668.8,5,3,5,5_1,5_2,5_1_0 -3308,2,33.0,2,0.0,1,300,4,52,43,6.0,0.0,0.0,1672.640313565118,93.84715732375918,0.0,30375.0,50,33,1,14529,201103308,,,150.0,,2.0,0.0,4.0,2.0,4.0,2.1,2550.425594023389,0.0,1226.0,0.0,0.0,44215.0,1,1,2,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1766.4874708888772,0.058155966119798425,0.03995222143817431,21054.761904761905,6,3,6,6_1,6_0,6_1_0 -3309,2,49.0,1,0.0,8,111,2,0,65,6.0,0.0,0.0,2728.6138883607146,0.0,1704.8900247149586,15503.0,0,50,2,1453,201103309,,,235.0,325.0,1.0,2.0,2.0,0.0,1.0,1.0,1945.6871104694503,0.0,2000.0,981.0,0.0,20478.0,0,1,3,50.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,4433.503913075673,0.28597716010292673,0.21650082591442882,20478.0,6,3,6,6_0,6_3,6_0_0 -3310,2,57.0,3,0.0,7,112,2,77,38,9.0,0.0,0.0,1533.4810052587216,0.0,1948.1974696284083,45205.0,41,31,1,14530,201103310,,,700.0,,1.0,3.0,6.0,1.0,3.0,1.8,2736.3759114850723,0.0,1124.0,1121.0,0.0,55013.0,6,1,2,153.0,10,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3481.6784748871296,0.0770197649571315,0.06328828594854179,30562.777777777777,9,5,9,9_1,9_1,9_0_0 -3311,2,69.0,3,0.0,1,300,5,0,77,3.0,0.0,721.7216861729887,620.7596596020626,184.21849400589767,0.0,31361.0,0,70,1,14531,201103311,,,110.0,,0.0,1.0,4.0,0.0,1.0,1.0,1379.849602371096,0.0,455.0,0.0,0.0,13832.0,0,5,1,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1526.6998397809489,0.048681478262203016,0.11037448234390897,13832.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -3312,0,67.0,2,0.0,7,300,5,72,74,2.0,0.0,0.0,2442.692549360278,0.0,2228.996140271256,49650.0,20,20,1,14532,201103312,,,,,0.0,4.0,3.0,0.0,2.0,1.5,621.6086014916766,2073.0,1000.0,0.0,0.0,16629.0,6,5,5,70.0,0,0.0,3,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4671.688689631534,0.09409242073779524,0.28093623727413153,11086.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -3313,2,22.0,2,0.0,3,111,1,0,46,7.0,0.0,0.0,466.5929749096822,0.0,0.0,11723.0,0,31,2,14533,201103313,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3677.3004067902543,0.0,342.0,0.0,0.0,21634.0,0,1,3,30.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,466.5929749096822,0.039801499181922904,0.021567577651367395,21634.0,6,3,6,6_0,6_3,6_0_1 -3314,2,64.0,5,0.0,7,112,2,68,77,6.0,0.0,0.0,682.1534720901786,0.0,0.0,14795.0,71,71,1,14535,201103314,,,1400.0,,3.0,0.0,5.0,2.0,4.0,2.5,3182.680726239387,0.0,500.0,0.0,0.0,51768.0,1,5,2,100.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,682.1534720901786,0.04610702751538889,0.013177126257343894,20707.2,6,3,6,6_1,6_2,6_0_0 -3315,2,73.0,3,0.0,5,120,2,0,77,8.0,0.0,0.0,607.116590160259,0.0,2655.526970198223,24799.0,0,70,1,14537,201103315,,,258.0,,0.0,2.0,5.0,0.0,1.0,1.0,3410.9801534786197,0.0,445.0,1528.0,0.0,27077.0,0,5,1,120.0,0,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3262.643560358482,0.13156351305933633,0.12049501644785175,27077.0,8,4,8,8_1,8_1,8_0_0 -3316,0,25.0,2,0.0,1,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,17637.0,0,10,2,14538,201103316,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3725.98817050213,0.0,0.0,0.0,0.0,2840.0,0,3,5,30.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,2840.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -3317,2,54.0,1,0.0,8,112,2,33,37,10.0,0.0,0.0,559.3658471139465,0.0,4601.986529505821,58890.0,33,12,1,14539,201103317,,,230.0,,2.0,2.0,6.0,0.0,2.0,1.5,1890.6370955211676,0.0,410.0,2648.0,0.0,105236.0,1,1,2,230.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5161.352376619767,0.08764395273594441,0.04904550131722763,70157.33333333333,10,5,10,10_1,10_0,10_0_0 -3318,2,58.0,2,0.0,7,111,2,68,62,9.0,0.0,166.55115834761278,845.8703053918215,458.8083246939338,0.0,30866.0,71,50,1,14540,201103318,,,281.0,,3.0,2.0,4.0,1.0,3.0,2.0,1405.9261253409513,0.0,620.0,0.0,0.0,66228.0,1,1,1,100.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1471.2297884333682,0.0476650615056492,0.022214619019649818,33114.0,9,5,9,9_1,9_3,9_0_0 -3319,2,40.0,2,0.0,99,111,2,85,22,10.0,0.0,0.0,2046.460416270536,0.0,0.0,142725.0,31,20,2,14541,201103319,,,,,1.0,0.0,5.0,2.0,4.0,2.1,4352.193742420157,0.0,1500.0,0.0,0.0,224265.0,6,1,2,122.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2046.460416270536,0.014338486013456199,0.009125188577221305,106792.85714285714,10,5,10,10_0,10_3,10_0_0 -3320,2,56.0,3,0.0,5,111,6,67,75,6.0,0.0,527.4120014341072,1147.3821400556803,208.54923849724264,0.0,36806.0,70,50,1,14542,201103320,,,,,2.0,2.0,5.0,1.0,3.0,2.0,1430.0711230900718,0.0,841.0,0.0,0.0,41782.0,1,5,1,100.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1883.3433799870302,0.05116946639099685,0.04507547221260424,20891.0,6,3,6,6_1,6_3,6_0_0 -3321,2,30.0,3,0.0,1,111,1,0,54,9.0,0.0,0.0,654.8673332065715,0.0,0.0,26630.0,0,41,2,14544,201103321,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2879.2181696168896,0.0,480.0,0.0,0.0,35670.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,654.8673332065715,0.024591338085113462,0.018359050552469065,35670.0,9,5,9,9_0,9_4,9_1_0 -3322,2,29.0,4,0.0,4,111,1,0,46,8.0,0.0,0.0,573.00891655575,0.0,0.0,25058.0,0,20,8,14545,201103322,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4325.0276372910985,0.0,420.0,0.0,0.0,26242.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,573.00891655575,0.022867304515753452,0.021835565755496916,26242.0,8,4,8,8_0,8_4,8_0_1 -3323,2,30.0,3,0.0,1,111,9,81,63,2.0,0.0,0.0,818.5841665082144,0.0,797.7008372519531,10253.0,71,71,2,14546,201103323,,,,,3.0,2.0,3.0,0.0,3.0,2.0,4482.555373263192,0.0,600.0,459.0,0.0,19380.0,4,1,3,60.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1616.2850037601675,0.1576402032341917,0.08339963899691266,9690.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -3324,2,59.0,2,0.0,6,221,2,0,74,10.0,1370.6979918959942,0.0,663.0531748716536,132.081184381587,0.0,48115.0,0,42,1,1455,201103324,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2998.800009568144,0.0,486.0,0.0,0.0,37817.0,0,5,1,135.0,1,2.0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2165.8323511492345,0.04501366208353392,0.05727139517014133,37817.0,10,5,10,10_1,10_1,10_0_0 -3325,2,56.0,4,0.0,1,300,2,11,62,2.0,0.0,0.0,1301.5488247480607,291.9689338961397,0.0,22667.0,71,50,1,14550,201103325,,,380.0,,2.0,1.0,4.0,1.0,3.0,2.0,2592.184760927726,0.0,954.0,0.0,0.0,23714.0,1,1,1,90.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1593.5177586442005,0.07030122021635861,0.06719734159754577,11857.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -3326,2,52.0,2,0.0,7,112,2,46,38,9.0,0.0,0.0,1364.3069441803573,0.0,0.0,45529.0,60,50,1,14551,201103326,,,650.0,,3.0,1.0,6.0,1.0,3.0,2.0,1227.5340150583872,0.0,1000.0,0.0,0.0,69930.0,1,1,2,140.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1364.3069441803573,0.02996566900613581,0.01950960881138792,34965.0,9,5,9,9_1,9_2,9_0_0 -3328,2,40.0,3,0.0,6,111,4,0,47,8.0,0.0,0.0,613.9381248811608,0.0,0.0,25896.0,0,31,2,14554,201103328,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4241.52365715855,0.0,450.0,0.0,0.0,25040.0,0,1,2,42.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,613.9381248811608,0.023707836147712418,0.024518295722091084,25040.0,8,4,8,8_0,8_3,8_0_0 -3329,2,54.0,3,0.0,9,111,2,0,45,6.0,0.0,0.0,627.5811943229643,0.0,729.9223347403492,17560.0,0,30,2,14555,201103329,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3440.966339868981,0.0,460.0,420.0,0.0,20691.0,0,1,2,62.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1357.5035290633136,0.07730657910383334,0.06560840602500187,20691.0,6,3,6,6_0,6_3,6_0_0 -3330,2,25.0,3,0.0,99,111,1,67,53,8.0,0.0,0.0,458.40713324460006,0.0,177.26685272265624,19482.0,60,50,2,14556,201103330,,,,352.0,2.0,0.0,3.0,1.0,3.0,1.8,4719.997810323946,0.0,336.0,102.0,0.0,44830.0,1,1,3,61.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,635.6739859672563,0.0326287848253391,0.014179656167014417,24905.555555555555,7,4,7,7_0,7_4,7_0_0 -3331,2,69.0,1,0.0,1,111,2,75,74,10.0,0.0,0.0,968.6579303680536,0.0,2780.6565132965684,39688.0,33,60,2,14557,201103331,,,305.0,,0.0,2.0,5.0,0.0,2.0,1.5,3265.410752387965,0.0,710.0,1600.0,0.0,58127.0,5,5,1,118.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3749.314443664622,0.09446972494619588,0.06450211508704427,38751.333333333336,10,5,10,10_0,10_4,10_1_0 -3332,2,44.0,2,0.0,4,111,1,0,64,7.0,0.0,0.0,320.61213188238395,0.0,347.58206416207105,22463.0,0,43,2,14558,201103332,,,,240.0,1.0,0.0,2.0,0.0,1.0,1.0,3794.6415848139977,0.0,235.0,200.0,0.0,23102.0,0,1,3,48.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,668.194196044455,0.029746436185925967,0.028923651460672453,23102.0,7,4,7,7_0,7_3,7_0_1 -3333,2,57.0,1,0.0,8,111,2,62,43,9.0,0.0,0.0,709.4396109737858,0.0,1607.5670467495786,26794.0,50,33,1,14559,201103333,,,280.0,,2.0,5.0,6.0,0.0,2.0,1.5,2669.374823522427,0.0,520.0,925.0,0.0,49070.0,5,4,3,173.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2317.0066577233642,0.0864748323402017,0.04721839530718085,32713.333333333332,9,5,9,9_1,9_1,9_0_0 -3334,2,88.0,2,0.0,3,111,1,0,72,4.0,0.0,0.0,327.43366660328576,0.0,2321.8481886026348,16425.0,0,70,2,14560,201103334,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2998.2236610843324,0.0,240.0,1336.0,0.0,15420.0,0,5,1,83.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2649.2818552059207,0.161295698947088,0.17180816181620756,15420.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -3335,2,57.0,3,0.0,5,111,6,75,43,8.0,0.0,346.98157989085996,1507.5591733192948,291.9689338961397,0.0,25533.0,33,33,1,14562,201103335,,,164.0,,1.0,3.0,4.0,0.0,2.0,1.5,1399.2502527471515,0.0,1105.0,0.0,0.0,40286.0,5,1,1,100.0,5,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2146.5096871062947,0.08406805651926114,0.053281777468755766,26857.333333333332,8,4,8,8_1,8_2,8_0_0 -3336,2,77.0,2,0.0,7,111,4,77,74,9.0,0.0,0.0,1405.6303897752575,0.0,903.2111711663555,46344.0,44,43,2,14563,201103336,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2859.8583947728175,840.0,710.0,0.0,0.0,55089.0,5,5,1,83.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2308.841560941613,0.04981964355561913,0.04191111766308361,36726.0,9,5,9,9_0,9_4,9_0_0 -3337,2,48.0,1,0.0,1,111,2,22,22,10.0,0.0,0.0,682.1534720901786,0.0,2085.4923849724264,93242.0,12,10,1,14564,201103337,,,1600.0,,2.0,0.0,10.0,2.0,4.0,2.1,2478.5082383282534,0.0,500.0,1200.0,0.0,98479.0,1,1,1,350.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2767.645857062605,0.029682394812022533,0.02810391918137476,46894.7619047619,10,5,10,10_1,10_4,10_1_0 -3339,1,53.0,3,249.0,99,111,1,85,67,2.0,0.0,0.0,462.5000540771411,0.0,48.661488982689946,33552.0,41,50,2,14566,201103339,,,438.0,,1.0,1.0,4.0,5.0,7.0,3.2,935.8705245107802,0.0,339.0,28.0,0.0,36935.0,6,4,3,70.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,511.16154305983105,0.015234905312942032,0.013839489456066903,11542.1875,2,1,2_1,2_0_1,2_2_1,2_0_0 -3340,1,49.0,4,42.0,1,400,5,52,63,4.0,0.0,693.9631597817199,1446.1653608311788,88.63342636132812,0.0,16744.0,50,71,1,14567,201103340,,,,,2.0,3.0,4.0,1.0,3.0,1.8,2095.542054558506,0.0,1060.0,0.0,0.0,29374.0,1,1,3,120.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2228.7619469742267,0.1331080952564636,0.07587533012099908,16318.888888888889,4,2,4_1,4_1_1,4_0_1,4_1_0 -3341,2,50.0,1,0.0,6,112,4,48,43,9.0,0.0,0.0,982.3009998098572,208.54923849724264,0.0,41711.0,60,41,1,14568,201103341,,,60.0,,2.0,2.0,6.0,0.0,2.0,1.5,2075.5632864535933,0.0,720.0,0.0,0.0,52459.0,1,1,1,110.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1190.8502383071,0.028550028489058042,0.022700589761663392,34972.666666666664,9,5,9,9_1,9_0,9_0_0 -3342,2,55.0,3,0.0,1,112,2,0,68,2.0,2585.923294896378,0.0,529.3510943419786,121.65372245672486,0.0,15630.0,0,50,1,14570,201103342,,,99.0,,1.0,0.0,4.0,0.0,1.0,1.0,2362.5869250916585,0.0,388.0,0.0,0.0,11834.0,0,1,1,80.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3236.928111695082,0.20709712806750363,0.273527810689123,11834.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -3343,2,63.0,3,0.0,5,112,2,77,74,9.0,0.0,0.0,1091.4455553442858,0.0,0.0,77610.0,60,41,1,14572,201103343,,,410.0,,0.0,2.0,5.0,0.0,2.0,1.5,7259.335766178467,0.0,800.0,0.0,0.0,44645.0,5,5,1,140.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1091.4455553442858,0.014063207774053418,0.024447206973777263,29763.333333333332,9,5,9,9_1,9_1,9_0_0 -3344,2,56.0,3,0.0,1,221,2,85,21,7.0,0.0,0.0,2874.453639515877,0.0,4749.888635406747,24905.0,71,50,1,14573,201103344,,,,,2.0,4.0,6.0,1.0,3.0,2.0,2565.05921506013,3160.0,902.0,778.0,0.0,47685.0,6,1,1,120.0,1,2.0,4,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,7624.342274922625,0.3061370116411413,0.15988974048280644,23842.5,7,4,7,7_1,7_1,7_1_0 -3345,2,75.0,1,0.0,6,112,4,52,74,10.0,0.0,0.0,1110.7040872389205,0.0,660.2043560668361,41643.0,60,41,1,14575,201103345,,,310.0,,1.0,3.0,5.0,0.0,2.0,1.5,1896.9191183771827,614.0,580.0,0.0,0.0,58532.0,1,5,1,110.0,6,0.0,3,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1770.9084433057565,0.04252595738313177,0.030255389245297554,39021.333333333336,10,5,10,10_1,10_0,10_0_0 -3346,2,57.0,1,0.0,5,111,2,77,22,8.0,0.0,0.0,1091.4455553442858,0.0,1320.81184381587,78317.0,71,70,1,14576,201103346,,,700.0,,1.0,3.0,5.0,0.0,2.0,1.5,3538.5648906279516,0.0,800.0,760.0,0.0,38472.0,6,1,1,120.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2412.2573991601557,0.03080119768581733,0.06270163753275514,25648.0,8,4,8,8_1,8_3,8_0_0 -3347,1,72.0,2,100.0,5,111,2,0,77,5.0,0.0,0.0,392.9203999239429,0.0,2565.1556335160844,16086.0,0,70,1,14577,201103347,,,,,0.0,2.0,2.0,0.0,1.0,1.0,1546.0748424943226,0.0,288.0,1476.0,0.0,18604.0,0,5,3,46.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2958.0760334400275,0.18389133615815165,0.15900215187271702,18604.0,5,3,5,5_1,5_3,5_0_0 -3348,0,62.0,3,0.0,1,112,4,56,78,2.0,0.0,0.0,2087.3896245959468,180.74267336427695,0.0,21461.0,71,71,1,14578,201103348,,,570.0,,1.0,3.0,4.0,0.0,2.0,1.5,2945.299147963879,0.0,1530.0,0.0,0.0,18468.0,7,5,5,95.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2268.1322979602237,0.10568623540190222,0.12281418117610048,12312.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -3349,0,53.0,4,0.0,1,221,5,0,72,1.0,0.0,166.55115834761278,0.0,52.13730962431066,0.0,7929.0,0,20,1,1458,201103349,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4832.138010592045,0.0,0.0,0.0,0.0,5310.0,0,5,5,80.0,1,2.0,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,218.68846797192344,0.027580838437624346,0.041184268921266184,5310.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -3350,1,71.0,3,21.0,3,111,1,0,77,3.0,0.0,0.0,504.79356934673217,0.0,151.1981979105009,16417.0,0,70,2,14581,201103350,,,,477.0,0.0,0.0,4.0,0.0,1.0,1.0,3696.5236893176243,0.0,370.0,87.0,0.0,13612.0,0,5,3,83.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,655.991767257233,0.03995807804454121,0.04819216626926484,13612.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -3351,1,63.0,3,130.0,99,111,2,0,21,2.0,0.0,0.0,682.1534720901786,132.081184381587,0.0,8197.0,0,70,2,14582,201103351,,,,,1.0,4.0,2.0,0.0,1.0,1.0,6443.471932518273,0.0,500.0,0.0,0.0,11740.0,0,5,3,28.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,814.2346564717657,0.0993332507590296,0.06935559254444341,11740.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -3352,2,34.0,2,0.0,9,112,4,46,62,8.0,0.0,0.0,2101.0326940377504,0.0,0.0,35620.0,31,50,1,14583,201103352,,,594.0,,2.0,0.0,4.0,2.0,4.0,2.1,1308.736621010999,0.0,1540.0,0.0,0.0,53505.0,1,1,2,115.0,6,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2101.0326940377504,0.058984634869111464,0.0392679692372255,25478.571428571428,8,4,8,8_1,8_1,8_0_0 -3353,2,50.0,4,0.0,7,111,2,0,46,5.0,0.0,0.0,495.2434207374697,0.0,1515.4577997466297,27159.0,0,60,2,14584,201103353,,,,474.0,1.0,0.0,4.0,2.0,3.0,2.0,3295.03380033195,0.0,363.0,872.0,0.0,35100.0,0,1,3,80.0,8,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2010.7012204840994,0.0740344350117493,0.05728493505652705,17550.0,5,3,5,5_0,5_3,5_0_0 -3354,2,35.0,2,0.0,5,111,1,0,54,8.0,0.0,0.0,477.50743046312505,0.0,0.0,25214.0,0,42,2,14586,201103354,,,,343.0,1.0,0.0,2.0,1.0,2.0,1.3,3002.4215936955056,0.0,350.0,0.0,0.0,34020.0,0,1,3,42.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,477.50743046312505,0.01893818634342528,0.014036079672637421,26169.23076923077,8,4,8,8_0,8_4,8_0_0 -3355,2,48.0,3,0.0,3,111,2,42,45,8.0,1586.456009138882,416.377895869032,654.8673332065715,125.12954309834558,0.0,36523.0,50,20,1,14587,201103355,,,350.0,,2.0,2.0,6.0,1.0,3.0,1.8,2106.339482119152,0.0,480.0,0.0,0.0,45877.0,1,1,2,100.0,8,6.0,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2782.8307813128313,0.07619392660276623,0.06065851693251153,25487.222222222223,8,4,8,8_1,8_2,8_0_1 -3356,2,56.0,4,0.0,8,111,2,85,38,8.0,0.0,0.0,654.8673332065715,0.0,0.0,76236.0,60,31,1,1459,201103356,,,,,2.0,2.0,4.0,1.0,3.0,2.0,1674.424876204621,0.0,480.0,0.0,0.0,53540.0,6,1,3,100.0,7,5.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,654.8673332065715,0.008590001222605744,0.012231365954549336,26770.0,8,4,8,8_1,8_2,8_0_0 -3357,2,55.0,3,0.0,8,111,2,56,56,3.0,0.0,0.0,780.3079632271495,0.0,1612.877091368492,27721.0,71,71,2,14590,201103357,,,,,2.0,1.0,3.0,0.0,2.0,1.5,4530.682110472109,1500.0,0.0,0.0,0.0,18980.0,1,1,3,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2393.1850545956413,0.08633112278040624,0.12608983427795792,12653.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_0 -3358,2,73.0,3,0.0,5,111,4,77,74,5.0,0.0,485.77421184720396,1166.4824372742055,119.9158121359145,0.0,28041.0,60,60,1,14592,201103358,,,250.0,,0.0,3.0,5.0,0.0,2.0,1.5,1656.1431587005134,0.0,855.0,0.0,0.0,26696.0,5,5,1,110.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1772.172461257324,0.06319933173771705,0.06638344550709184,17797.333333333332,5,3,5,5_1,5_2,5_0_0 -3359,2,57.0,3,0.0,5,111,1,0,34,10.0,0.0,0.0,941.3717914844465,0.0,0.0,41122.0,0,20,2,14594,201103359,,,,,1.0,2.0,5.0,0.0,1.0,1.0,4008.9215413237966,0.0,690.0,0.0,0.0,41973.0,0,1,1,110.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,941.3717914844465,0.022892169434474162,0.02242803210360104,41973.0,10,5,10,10_0,10_3,10_0_0 -3360,2,46.0,3,0.0,1,300,5,0,21,8.0,951.8736054833294,0.0,545.7227776721429,135.55700502320772,0.0,12961.0,0,50,1,14595,201103360,,,,,1.0,1.0,5.0,0.0,1.0,1.0,3359.5909053444148,0.0,400.0,0.0,0.0,25377.0,0,1,1,180.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1633.15338817868,0.1260051993039642,0.06435565229060487,25377.0,8,4,8,8_1,8_0,8_1_0 -3361,2,48.0,2,0.0,3,300,5,0,62,5.0,0.0,34.698157989086,654.8673332065715,48.661488982689946,0.0,13851.0,0,50,1,14596,201103361,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3004.249576593028,0.0,480.0,0.0,0.0,16988.0,0,1,1,136.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,738.2269801783475,0.053297738804299145,0.04345579115719022,16988.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -3362,2,49.0,4,0.0,99,111,4,0,37,8.0,0.0,624.566843803548,1227.8762497623215,156.41192887293198,0.0,39012.0,0,31,1,14597,201103362,,,340.0,,2.0,0.0,4.0,1.0,2.0,1.5,3267.72154811241,0.0,900.0,0.0,0.0,37442.0,0,1,3,110.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2008.8550224388014,0.051493259059745757,0.05365244972060257,24961.333333333332,8,4,8,8_1,8_3,8_0_0 -3363,2,36.0,3,0.0,5,111,2,52,67,6.0,0.0,0.0,1352.5338029270588,0.0,2795.6536250387194,46144.0,50,44,1,146,201103363,,,600.0,,5.0,0.0,4.0,0.0,5.0,3.0,1089.0882539292022,2600.0,0.0,0.0,0.0,60144.0,1,1,2,160.0,8,7.0,5,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4148.187427965779,0.08989657220799624,0.06897092690818334,20048.0,6,3,6,6_1,6_3,6_0_0 -3364,2,55.0,3,0.0,3,400,5,77,62,8.0,0.0,832.755791738064,1256.526695590109,145.98446694806984,0.0,46938.0,60,50,1,1460,201103364,,,300.0,,2.0,1.0,5.0,1.0,3.0,2.0,992.6796780819304,0.0,921.0,0.0,0.0,49436.0,5,1,1,108.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2235.266954276243,0.04762169147122253,0.045215368441545487,24718.0,7,4,7,7_1,7_0,7_0_1 -3365,1,29.0,1,10.0,8,111,2,56,64,6.0,0.0,0.0,791.2980276246072,0.0,0.0,25651.0,50,60,2,14600,201103365,,,,590.0,2.0,0.0,3.0,1.0,3.0,1.8,3450.936129824884,0.0,580.0,0.0,0.0,36565.0,1,1,3,51.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,791.2980276246072,0.030848622963027063,0.021640859500194374,20313.888888888887,6,3,6,6_0,6_3,6_0_0 -3366,2,79.0,3,0.0,4,400,2,86,78,2.0,1548.381064919549,0.0,409.2920832541072,194.64595593075978,0.0,13653.0,70,70,1,14601,201103366,,,169.0,,0.0,2.0,4.0,0.0,2.0,1.5,2766.058836556925,0.0,300.0,0.0,0.0,14186.0,5,5,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2152.319104104416,0.15764440812308037,0.15172135232654843,9457.333333333334,1,1,1_0,1_1_0,1_0_0,1_0_1 -3367,2,39.0,3,0.0,1,112,2,0,11,1.0,0.0,346.98157989085996,682.1534720901786,0.0,0.0,15555.0,0,31,1,14603,201103367,,,,,1.0,1.0,4.0,0.0,1.0,1.0,3324.4255664820157,0.0,500.0,0.0,0.0,7104.0,0,1,1,90.0,8,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1029.1350519810385,0.06616104480752417,0.14486698366850204,7104.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -3368,2,62.0,1,0.0,2,111,2,75,74,10.0,5552.596031986088,0.0,1440.8373397036692,0.0,1099.9326443268958,136089.0,10,12,1,14604,201103368,,,450.0,,0.0,3.0,7.0,0.0,2.0,1.5,1969.0577672364689,829.0,740.0,120.0,0.0,72476.0,6,5,1,151.0,7,5.0,3,4,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,8093.366016016653,0.05947112563114324,0.11166960119234853,48317.333333333336,10,5,10,10_1,10_2,10_0_1 -3369,2,50.0,2,0.0,1,112,2,56,65,9.0,2379.684013708323,0.0,982.3009998098572,0.0,0.0,26300.0,41,60,1,14608,201103369,,,,,2.0,1.0,5.0,0.0,2.0,1.5,4372.844704050132,0.0,720.0,0.0,0.0,52555.0,1,1,1,160.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3361.9850135181805,0.1278321297915658,0.06397079276031169,35036.666666666664,9,5,9,9_1,9_0,9_1_0 -3370,2,31.0,2,0.0,2,300,2,43,47,10.0,0.0,0.0,2319.3218051066074,0.0,0.0,13015.0,20,31,1,14609,201103370,,,354.0,,2.0,0.0,3.0,0.0,2.0,1.5,2249.3229666539432,0.0,1700.0,0.0,0.0,234348.0,1,1,2,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2319.3218051066074,0.1782037499121481,0.009896913159517502,156232.0,10,5,10,10_1,10_0,10_0_1 -3372,2,60.0,1,0.0,4,111,4,0,72,2.0,0.0,180.43042154324718,4092.920832541072,0.0,0.0,55539.0,0,50,1,14610,201103372,,,300.0,,0.0,2.0,6.0,0.0,1.0,1.0,2948.6755138417125,0.0,3000.0,0.0,0.0,12184.0,0,5,1,100.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4273.351254084319,0.07694325166251317,0.35073467285655935,12184.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -3373,2,30.0,3,0.0,4,111,1,54,64,7.0,0.0,0.0,341.0767360450893,0.0,938.4715732375919,38809.0,31,50,2,14611,201103373,,,,364.0,2.0,0.0,3.0,1.0,3.0,1.8,2637.0214339185472,0.0,250.0,540.0,0.0,41660.0,1,1,3,76.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1279.5483092826812,0.03297040143478784,0.03071407367457228,23144.444444444445,7,4,7,7_0,7_4,7_0_1 -3374,2,35.0,2,0.0,1,221,5,0,52,6.0,0.0,416.377895869032,859.5133748336251,46.92357866187959,0.0,37291.0,0,43,1,14612,201103374,,,227.0,305.0,2.0,0.0,3.0,0.0,2.0,1.5,2106.7039258303794,0.0,630.0,0.0,0.0,29528.0,0,1,3,90.0,1,2.0,5,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1322.8148493645367,0.03547276418879989,0.04479866057181444,19685.333333333332,6,3,6,6_1,6_1,6_1_0 -3375,2,55.0,4,0.0,5,300,2,78,69,6.0,0.0,277.585263912688,818.5841665082144,816.8178507808669,0.0,26937.0,70,50,1,14613,201103375,,,,,1.0,3.0,4.0,0.0,2.0,1.5,1162.6031011098582,0.0,600.0,0.0,0.0,30529.0,6,1,1,100.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1912.9872812017693,0.07101708732233616,0.06266131485478625,20352.666666666668,6,3,6,6_1,6_1,6_0_0 -3376,2,40.0,2,0.0,1,111,2,54,63,7.0,0.0,0.0,695.7965415319821,0.0,868.9551604051776,33138.0,41,71,2,14614,201103376,,,,310.0,2.0,0.0,3.0,0.0,2.0,1.5,3749.4788180587593,0.0,510.0,500.0,0.0,36975.0,1,1,3,51.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1564.7517019371599,0.04721925589767517,0.042319180579774435,24650.0,7,4,7,7_0,7_4,7_1_0 -3377,1,34.0,4,30.0,9,400,6,62,67,4.0,0.0,0.0,1428.429370556834,0.0,0.0,26723.0,50,31,1,14615,201103377,,,390.0,,2.0,0.0,4.0,2.0,4.0,2.1,1921.758246357806,0.0,1047.0,0.0,0.0,31329.0,1,1,2,113.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1428.429370556834,0.053453181549857204,0.04559447701991235,14918.571428571428,3,2,3_1,3_1_1,3_0_1,3_0_0 -3378,2,59.0,1,0.0,9,300,4,0,34,10.0,0.0,555.170527825376,1690.3763038394627,0.0,0.0,38499.0,0,20,1,14617,201103378,,,400.0,,1.0,2.0,4.0,0.0,1.0,1.0,1723.9584399754465,0.0,1239.0,0.0,0.0,40019.0,0,1,2,150.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2245.5468316648385,0.05832740672913163,0.056112017583268906,40019.0,10,5,10,10_1,10_0,10_0_0 -3379,2,78.0,3,0.0,5,400,4,0,71,2.0,0.0,0.0,1364.3069441803573,0.0,0.0,15308.0,0,70,1,14619,201103379,,,114.0,,0.0,0.0,5.0,0.0,1.0,1.0,2321.2468413884044,0.0,1000.0,0.0,0.0,11772.0,0,5,1,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1364.3069441803573,0.08912378783514223,0.11589423582911632,11772.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -3380,2,56.0,3,0.0,5,112,2,78,62,5.0,0.0,0.0,560.7301540581268,0.0,2115.036860426202,25923.0,71,60,1,14620,201103380,,,378.0,,2.0,1.0,7.0,1.0,3.0,2.0,1083.9773107519063,0.0,411.0,1217.0,0.0,33782.0,6,1,1,90.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2675.7670144843287,0.10321980536528676,0.07920688575230385,16891.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -3381,1,33.0,2,14.0,4,111,1,0,56,4.0,0.0,0.0,409.2920832541072,0.0,0.0,55871.0,0,50,2,14621,201103381,,,,406.0,1.0,0.0,3.0,0.0,1.0,1.0,2939.0296617035124,0.0,300.0,0.0,0.0,15078.0,0,1,3,75.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,409.2920832541072,0.007325662387537492,0.027144984961805757,15078.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -3382,2,73.0,1,0.0,4,112,2,74,74,10.0,2221.038412794435,0.0,631.6741151555054,130.34327406077665,0.0,33404.0,50,44,1,14622,201103382,,,220.0,,0.0,0.0,6.0,0.0,2.0,1.5,1501.0352655083232,0.0,463.0,0.0,0.0,57707.0,5,5,1,130.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2983.0558020107173,0.08930235307180928,0.051693136049538485,38471.333333333336,10,5,10,10_1,10_0,10_0_1 -3383,2,69.0,4,0.0,1,400,5,78,77,2.0,610.7855635184696,0.0,929.0930289868232,145.98446694806984,0.0,11841.0,71,71,1,14623,201103383,,,72.0,,0.0,1.0,3.0,0.0,2.0,1.5,3023.669276217628,0.0,681.0,0.0,0.0,15910.0,5,5,3,55.0,0,1.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1685.863059453363,0.14237505780367898,0.10596248016677329,10606.666666666666,2,1,2_0,2_1_0,2_1_0,2_1_0 -3384,2,58.0,3,0.0,4,111,2,0,62,5.0,0.0,0.0,1227.8762497623215,0.0,0.0,9580.0,0,50,1,14624,201103384,,,,,1.0,1.0,4.0,0.0,1.0,1.0,1138.8507690981116,0.0,900.0,0.0,0.0,18820.0,0,1,3,80.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1227.8762497623215,0.12817079851381227,0.06524315886090976,18820.0,5,3,5,5_1,5_2,5_0_1 -3385,1,34.0,4,140.0,9,221,2,85,65,2.0,0.0,0.0,2182.8911106885716,0.0,0.0,36696.0,71,50,1,14625,201103385,,,750.0,,1.0,0.0,5.0,4.0,6.0,2.9,2556.218786490228,0.0,1600.0,0.0,0.0,31232.0,6,1,3,96.0,1,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2182.8911106885716,0.05948580528364322,0.06989277377973142,10769.655172413793,2,1,2_1,2_1_1,2_1_1,2_0_0 -3386,2,46.0,2,0.0,1,120,2,22,42,2.0,1818.078586473159,374.7401062821288,1800.8851663180715,444.90504212745094,0.0,51958.0,31,20,1,14626,201103386,,,400.0,,2.0,0.0,7.0,3.0,5.0,3.0,1130.1408168714597,0.0,1320.0,0.0,0.0,34371.0,1,1,3,220.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4438.60890120081,0.08542686210402267,0.12913819502489918,11457.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -3387,2,24.0,4,0.0,5,111,1,0,42,6.0,0.0,0.0,361.5413402077947,0.0,531.8005581679687,31156.0,0,20,2,14627,201103387,,,,755.0,1.0,0.0,2.0,0.0,1.0,1.0,3413.5835010325095,0.0,265.0,306.0,0.0,21489.0,0,1,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,893.3418983757633,0.02867318970265,0.04157205539465603,21489.0,6,3,6,6_0,6_4,6_0_0 -3388,1,50.0,4,90.0,7,300,4,78,68,1.0,0.0,0.0,1110.5458525628108,218.97670042210476,0.0,33498.0,50,44,1,14628,201103388,,,,260.0,1.0,2.0,3.0,2.0,4.0,2.5,1507.2458284291242,0.0,814.0,0.0,0.0,22280.0,6,4,3,85.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1329.5225529849156,0.03968960991655966,0.059673364137563537,8912.0,1,1,1_1,1_1_1,1_0_1,1_0_0 -3389,2,68.0,2,0.0,6,112,4,77,77,6.0,0.0,0.0,2319.3218051066074,0.0,0.0,18110.0,70,70,1,1463,201103389,,,600.0,,0.0,3.0,5.0,0.0,2.0,1.5,1648.1043281071534,0.0,1700.0,0.0,0.0,31763.0,5,5,1,105.0,10,1.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2319.3218051066074,0.1280685701328883,0.07301960788044604,21175.333333333332,6,3,6,6_1,6_1,6_0_0 -3390,1,41.0,4,300.0,1,111,2,85,22,1.0,0.0,0.0,791.2980276246072,0.0,695.1641283241421,36298.0,50,50,2,14630,201103390,,,,,1.0,0.0,3.0,5.0,7.0,3.4,1672.9703373688797,0.0,580.0,400.0,0.0,21860.0,6,1,3,85.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1486.4621559487493,0.040951626975280986,0.06799918371220262,6429.411764705883,1,1,1_1,1_0_1,1_3_1,1_1_0 -3391,2,54.0,1,0.0,6,111,4,52,62,9.0,0.0,0.0,1582.5960552492145,0.0,0.0,35313.0,70,70,1,14631,201103391,,,238.0,,2.0,2.0,4.0,0.0,2.0,1.5,1506.767499824534,0.0,1160.0,0.0,0.0,46406.0,1,1,1,72.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1582.5960552492145,0.04481624487438662,0.03410326369972018,30937.333333333332,9,5,9,9_1,9_2,9_0_0 -3392,1,45.0,4,333.0,5,111,2,0,56,3.0,0.0,0.0,581.1947582208322,0.0,1345.142588307215,36319.0,0,50,2,14632,201103392,,,,150.0,1.0,0.0,4.0,2.0,3.0,1.8,3374.6809048154723,0.0,426.0,774.0,0.0,22350.0,0,1,3,75.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1926.3373465280472,0.05303938287199667,0.0861895904486822,12416.666666666666,2,1,2_1,2_0_1,2_4_1,2_0_0 -3393,2,53.0,2,0.0,2,112,5,52,68,7.0,0.0,208.188947934516,613.9381248811608,0.0,0.0,14485.0,50,71,1,14635,201103393,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2358.9611422297435,0.0,450.0,0.0,0.0,32626.0,1,1,1,115.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,822.1270728156768,0.05675713309048511,0.025198524882476453,21750.666666666668,6,3,6,6_1,6_2,6_0_1 -3394,2,57.0,3,0.0,1,300,4,0,68,6.0,0.0,0.0,818.5841665082144,0.0,0.0,10255.0,0,50,1,14637,201103394,,,,235.0,1.0,2.0,4.0,0.0,1.0,1.0,1892.9546720227797,0.0,600.0,0.0,0.0,19670.0,0,1,3,70.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,818.5841665082144,0.07982293188768545,0.04161587018343744,19670.0,6,3,6,6_1,6_0,6_1_0 -3395,2,90.0,3,0.0,7,112,4,0,77,7.0,0.0,0.0,1364.3069441803573,0.0,0.0,13664.0,0,70,2,14639,201103395,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3292.898977893401,0.0,1000.0,0.0,0.0,24439.0,0,5,3,50.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1364.3069441803573,0.0998468196853306,0.05582499055527466,24439.0,7,4,7,7_0,7_1,7_0_0 -3396,2,44.0,1,0.0,8,211,4,35,46,10.0,0.0,0.0,2480.3100245198893,0.0,0.0,108924.0,10,31,1,14640,201103396,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2067.2176728092745,0.0,1818.0,0.0,0.0,84508.0,1,1,2,120.0,1,2.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2480.3100245198893,0.02277101487752827,0.029350002656788582,56338.666666666664,10,5,10,10_1,10_1,10_0_0 -3397,2,63.0,3,0.0,1,111,4,0,78,2.0,0.0,0.0,1473.4514997147858,0.0,222.45252106372547,11145.0,0,70,2,14642,201103397,,,,566.0,0.0,1.0,1.0,0.0,1.0,1.0,3650.712174477267,0.0,1080.0,128.0,0.0,11120.0,0,5,3,15.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1695.9040207785113,0.15216725175222173,0.15250935438655677,11120.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -3398,2,60.0,3,0.0,1,112,5,56,75,4.0,0.0,555.170527825376,1405.236152505768,208.54923849724264,0.0,38093.0,50,31,1,14644,201103398,,,400.0,,1.0,4.0,6.0,0.0,2.0,1.5,3969.9056430851947,0.0,1030.0,0.0,0.0,23065.0,1,5,1,200.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2168.9559188283865,0.05693843800247779,0.09403667543153638,15376.666666666666,4,2,4_0,4_1_0,4_1_0,4_1_0 -3399,2,49.0,2,0.0,6,111,2,48,37,8.0,158.64560091388822,0.0,1040.4106176361993,0.0,2150.502788491323,47774.0,50,31,1,14645,201103399,,,600.0,,2.0,0.0,5.0,3.0,5.0,2.6,1969.919484693902,2000.0,0.0,0.0,0.0,68714.0,4,1,2,90.0,10,8.0,4,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3349.5590070414105,0.07011259277099281,0.04874638366332058,26428.46153846154,8,4,8,8_1,8_4,8_0_0 -3400,2,73.0,3,0.0,1,112,2,75,72,3.0,0.0,0.0,886.7995137172322,2867.552029337086,0.0,20965.0,71,50,1,14647,201103400,,,,,0.0,9.0,3.0,0.0,2.0,1.5,2390.861905744272,0.0,650.0,0.0,0.0,18492.0,5,5,1,75.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3754.3515430543184,0.17907710675193506,0.20302571615046067,12328.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -3401,1,25.0,2,262.0,5,111,1,0,85,3.0,0.0,0.0,296.05460688713754,0.0,0.0,8122.0,0,43,2,14649,201103401,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3475.8952108041526,0.0,217.0,0.0,0.0,13486.0,0,7,3,42.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,296.05460688713754,0.03645094889031489,0.021952736681531776,13486.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -3402,1,83.0,3,37.0,7,111,1,0,77,1.0,0.0,0.0,736.7257498573929,0.0,0.0,11528.0,0,70,2,1465,201103402,,,,413.0,0.0,2.0,1.0,0.0,1.0,1.0,3410.0171237917084,0.0,540.0,0.0,0.0,9254.0,0,5,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,736.7257498573929,0.06390750779470791,0.07961160037361065,9254.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -3403,2,32.0,3,0.0,4,111,1,0,64,6.0,0.0,0.0,436.5782221377143,0.0,123.39163277753522,12715.0,0,41,2,14652,201103403,,,,,1.0,2.0,4.0,1.0,2.0,1.5,4035.6284699839844,0.0,320.0,71.0,0.0,30557.0,0,1,1,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,559.9698549152495,0.0440400986956547,0.01832541986828712,20371.333333333332,6,3,6,6_0,6_3,6_0_1 -3404,2,51.0,2,0.0,99,111,1,0,54,8.0,0.0,0.0,360.1770332636143,0.0,166.8393907977941,38264.0,0,43,2,14654,201103404,,,,377.0,3.0,0.0,4.0,2.0,3.0,2.0,2369.694730957805,0.0,264.0,96.0,0.0,52757.0,0,1,3,79.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,527.0164240614084,0.013773166006204485,0.009989507061838399,26378.5,8,4,8,8_0,8_4,8_0_0 -3405,2,75.0,3,0.0,4,111,2,78,78,5.0,0.0,0.0,859.5133748336251,0.0,2259.283417053462,23965.0,71,70,1,14655,201103405,,,360.0,,0.0,2.0,5.0,0.0,2.0,1.5,2202.337239996199,0.0,630.0,1300.0,0.0,26223.0,5,5,1,100.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3118.7967918870872,0.1301396533230581,0.11893363809964867,17482.0,5,3,5,5_1,5_2,5_0_1 -3406,2,74.0,3,0.0,1,111,2,75,75,9.0,0.0,0.0,477.50743046312505,0.0,2519.969965175015,28390.0,50,41,1,14657,201103406,,,,,0.0,1.0,3.0,0.0,2.0,1.5,1724.6578709577605,0.0,350.0,1450.0,0.0,47908.0,5,5,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2997.4773956381405,0.10558215553498206,0.06256736652830719,31938.666666666668,9,5,9,9_1,9_4,9_1_0 -3407,2,70.0,2,0.0,7,111,4,0,77,10.0,0.0,0.0,122.78762497623215,0.0,0.0,25452.0,0,70,2,14658,201103407,,,,1000.0,0.0,1.0,3.0,0.0,1.0,1.0,2642.727551202266,0.0,90.0,0.0,0.0,46060.0,0,5,3,91.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,122.78762497623215,0.004824281980835775,0.002665819039866091,46060.0,10,5,10,10_0,10_4,10_0_0 -3408,1,24.0,2,120.0,2,111,2,0,43,6.0,0.0,0.0,477.50743046312505,0.0,2606.865481215533,19689.0,0,33,2,14660,201103408,,,,230.0,1.0,0.0,2.0,0.0,1.0,1.0,3034.893551448958,0.0,350.0,1500.0,0.0,19932.0,0,1,3,45.0,4,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,3084.372911678658,0.15665462500272528,0.15474477782854998,19932.0,6,3,6,6_0,6_2,6_0_1 -3409,2,52.0,4,0.0,1,111,2,85,52,7.0,0.0,0.0,777.6549581828036,0.0,1651.0148047698374,34622.0,50,70,1,14663,201103409,,,320.0,,1.0,1.0,4.0,1.0,3.0,2.0,1335.896292634875,0.0,570.0,950.0,0.0,43722.0,7,1,1,55.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2428.669762952641,0.07014816483601875,0.05554800244619736,21861.0,7,4,7,7_1,7_4,7_1_0 -3410,2,44.0,4,0.0,1,400,5,0,52,5.0,396.6140022847205,832.755791738064,417.4779249191893,104.27461924862132,0.0,24897.0,0,50,1,14664,201103410,,,116.0,,1.0,1.0,4.0,0.0,1.0,1.0,1753.5138639290715,0.0,306.0,0.0,0.0,17633.0,0,1,3,130.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1751.122338190595,0.07033467237782041,0.09930938230537033,17633.0,5,3,5,5_1,5_0,5_1_0 -3411,2,57.0,3,0.0,8,111,2,75,75,8.0,0.0,499.65347504283835,504.79356934673217,0.0,962.8023177289368,45901.0,20,20,1,14665,201103411,,,,,0.0,0.0,4.0,0.0,2.0,1.5,1273.9954489427762,0.0,370.0,554.0,0.0,37641.0,5,5,2,120.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1967.2493621185072,0.042858529489956804,0.05226347233385158,25094.0,8,4,8,8_1,8_3,8_0_0 -3412,2,28.0,4,0.0,2,111,1,55,46,8.0,0.0,0.0,573.00891655575,0.0,448.38086276907165,27001.0,20,31,2,14666,201103412,,,331.0,375.0,2.0,0.0,3.0,0.0,2.0,1.5,2922.670336564258,0.0,420.0,258.0,0.0,40043.0,1,1,3,63.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1021.3897793248217,0.037827850054621005,0.025507324109702613,26695.333333333332,8,4,8,8_0,8_2,8_0_1 -3413,2,44.0,3,0.0,8,111,2,0,52,5.0,0.0,0.0,368.36287492869644,3128.2385774586396,0.0,31881.0,0,50,1,14667,201103413,,,160.0,,1.0,0.0,5.0,1.0,2.0,1.3,1901.6993626916121,0.0,270.0,0.0,0.0,23693.0,0,1,2,108.0,8,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3496.601452387336,0.10967665544955729,0.14757951514739948,18225.384615384613,5,3,5,5_1,5_3,5_0_0 -3414,2,61.0,2,0.0,1,111,2,75,38,10.0,0.0,0.0,727.1756012481304,0.0,2513.018323891774,70482.0,20,12,1,14669,201103414,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1819.9800429803256,0.0,533.0,1446.0,0.0,92936.0,5,1,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3240.1939251399044,0.04597193503504305,0.034864787866272534,61957.333333333336,10,5,10,10_1,10_4,10_1_0 -3415,2,60.0,3,0.0,5,300,2,78,21,10.0,0.0,624.566843803548,1637.1683330164287,0.0,0.0,30843.0,70,70,1,14670,201103415,,,160.0,,1.0,2.0,4.0,0.0,2.0,1.5,1793.302724273251,0.0,1200.0,0.0,0.0,59221.0,5,1,1,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2261.735176819977,0.07333058317349081,0.03819143845629045,39480.666666666664,10,5,10,10_1,10_0,10_0_0 -3416,1,83.0,3,72.0,6,112,2,0,78,4.0,0.0,0.0,538.9012429512411,48.661488982689946,0.0,8192.0,0,71,1,14671,201103416,,,151.0,276.0,0.0,3.0,3.0,0.0,1.0,1.0,4828.296231165403,0.0,395.0,0.0,0.0,14836.0,0,5,3,61.0,5,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,587.562731933931,0.07172396630052869,0.03960385089875512,14836.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -3417,2,66.0,1,0.0,1,112,4,74,43,10.0,0.0,0.0,6935.4322748109935,0.0,1363.4187679034987,37542.0,10,10,1,14672,201103417,,,705.0,,1.0,0.0,7.0,0.0,2.0,1.5,1036.5745407031065,1268.0,4600.0,0.0,0.0,59505.0,5,1,1,130.0,7,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,8298.851042714492,0.2210551127461108,0.13946476838441293,39670.0,10,5,10,10_1,10_1,10_1_0 -3418,2,52.0,4,0.0,1,111,1,0,67,6.0,0.0,0.0,395.6490138123036,0.0,156.41192887293198,25735.0,0,50,2,14673,201103418,,,180.0,448.0,3.0,0.0,3.0,2.0,3.0,2.0,2479.0214674243384,0.0,290.0,90.0,0.0,43012.0,0,1,3,73.0,6,5.0,2,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,552.0609426852357,0.02145175607869577,0.012835044701135397,21506.0,6,3,6,6_0,6_2,6_1_0 -3419,2,42.0,2,0.0,3,111,2,13,13,2.0,0.0,0.0,0.0,0.0,4224.859989889974,30557.0,50,50,1,14674,201103419,,,,,2.0,0.0,7.0,2.0,4.0,2.3,1613.6702696920547,0.0,0.0,2431.0,0.0,27609.0,1,1,1,140.0,8,7.0,4,2,0,1,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4224.859989889974,0.13826160912033164,0.1530247379437855,12003.913043478262,2,1,2_0,2_1_0,2_3_0,2_0_1 -3420,1,25.0,4,240.0,2,111,1,0,55,2.0,0.0,0.0,382.0059443705,0.0,330.2029609539675,14378.0,0,31,2,14675,201103420,,,,89.0,1.0,5.0,3.0,1.0,3.0,2.0,4245.451951452447,0.0,280.0,190.0,0.0,20830.0,0,1,3,70.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,712.2089053244674,0.049534629665076324,0.03419149809526968,10415.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -3421,1,35.0,3,108.0,5,400,2,63,85,7.0,0.0,0.0,4333.991501383354,86.89551604051776,5754.745462002779,19480.0,44,43,2,14677,201103421,,,,168.0,1.0,0.0,2.0,0.0,2.0,1.5,5448.647855702244,5352.0,1136.0,0.0,0.0,33755.0,1,4,3,41.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,10175.632479426651,0.5223630636255981,0.30145556152945197,22503.333333333332,7,4,7,7_0,7_0,7_0_0 -3422,2,45.0,1,0.0,8,112,2,47,54,9.0,2221.038412794435,0.0,491.1504999049286,145.98446694806984,0.0,54421.0,71,20,1,14679,201103422,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1754.231351666464,0.0,360.0,0.0,0.0,63946.0,1,1,3,100.0,7,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2858.173379647433,0.05251967769146898,0.044696671873884736,30450.47619047619,9,5,9,9_1,9_0,9_0_0 -3423,2,52.0,2,0.0,2,111,1,0,35,8.0,0.0,0.0,272.86138883607146,0.0,0.0,51480.0,0,50,2,1468,201103423,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3860.3858498092277,0.0,200.0,0.0,0.0,28090.0,0,1,2,54.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,272.86138883607146,0.005300337778478466,0.009713826587257795,28090.0,8,4,8,8_0,8_4,8_0_1 -3424,2,24.0,1,0.0,9,111,2,43,43,10.0,0.0,124.91336876070959,682.1534720901786,0.0,3475.8206416207104,92028.0,33,33,1,14680,201103424,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2275.673442109283,0.0,500.0,2000.0,0.0,138805.0,1,1,2,86.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4282.887482471599,0.046538960777932785,0.030855426551432575,92536.66666666667,10,5,10,10_1,10_3,10_0_0 -3425,0,27.0,4,0.0,8,111,2,0,81,2.0,0.0,0.0,682.1534720901786,60.82686122836243,0.0,16115.0,0,10,3,14682,201103425,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2996.6650250950697,0.0,500.0,0.0,0.0,10023.0,0,4,5,75.0,7,6.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,742.980333318541,0.046104891921721444,0.0741275399898774,10023.0,2,1,2_0,2_0_0,2_2_0,2_0_0 -3426,1,40.0,3,25.0,6,111,2,0,63,4.0,0.0,0.0,38.20059443705,0.0,66.0405921907935,9898.0,0,43,2,14684,201103426,,,,380.0,1.0,0.0,3.0,0.0,1.0,1.0,2446.7992864756875,0.0,28.0,38.0,0.0,14967.0,0,1,4,40.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,104.2411866278435,0.010531540374605325,0.006964734858545033,14967.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -3427,2,47.0,3,0.0,1,111,4,0,48,7.0,0.0,0.0,5457.227776721429,0.0,0.0,21335.0,0,50,2,14685,201103427,,,,,1.0,1.0,2.0,0.0,1.0,1.0,2406.7771401861173,0.0,4000.0,0.0,0.0,24100.0,0,1,3,70.0,7,6.0,1,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,5457.227776721429,0.2557875686300178,0.2264409865859514,24100.0,7,4,7,7_0,7_2,7_1_0 -3428,0,62.0,2,0.0,1,112,2,0,72,8.0,0.0,0.0,0.0,0.0,0.0,44956.0,0,70,2,14686,201103428,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3018.5110293431985,0.0,0.0,0.0,0.0,25960.0,0,5,5,41.0,10,1.0,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,25960.0,8,4,8,8_0,8_1,8_1_0 -3429,2,86.0,3,0.0,1,111,2,0,78,7.0,0.0,0.0,191.43555364506065,0.0,395.69251308240337,17913.0,0,70,2,14687,201103429,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3951.738095965081,368.0,0.0,0.0,0.0,22240.0,0,5,5,66.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,587.128066727464,0.03277664638683995,0.026399643288105394,22240.0,7,4,7,7_0,7_3,7_1_0 -3430,0,32.0,1,0.0,99,111,1,0,37,9.0,0.0,0.0,264.6755471709893,0.0,0.0,25806.0,0,10,2,14688,201103430,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4066.009676452394,0.0,194.0,0.0,0.0,33787.0,0,1,5,46.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,264.6755471709893,0.01025635693912227,0.007833650432740086,33787.0,9,5,9,9_0,9_4,9_0_0 -3431,2,52.0,3,0.0,1,400,2,54,63,5.0,1903.7472109666587,0.0,818.5841665082144,243.30744491344973,0.0,35031.0,50,50,1,1469,201103431,,,210.0,,2.0,0.0,5.0,0.0,4.0,2.3,1045.7718088701947,0.0,600.0,0.0,0.0,42031.0,1,1,1,150.0,0,0.0,5,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2965.6388223883228,0.08465755537633304,0.07055836935567374,18274.34782608696,5,3,5,5_1,5_0,5_1_0 -3432,2,45.0,3,0.0,7,112,2,55,21,5.0,0.0,0.0,1255.1623886459286,2754.587858484413,0.0,38828.0,50,50,1,14691,201103432,,,320.0,,3.0,0.0,6.0,2.0,4.0,2.3,2430.586729533179,0.0,920.0,0.0,0.0,40663.0,4,1,1,200.0,9,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4009.7502471303414,0.10326955411379266,0.09860930691612378,17679.565217391304,5,3,5,5_1,5_0,5_0_0 -3433,2,41.0,3,0.0,4,111,2,46,37,8.0,1427.810408224994,0.0,499.33634157001075,0.0,0.0,69338.0,50,10,1,14692,201103433,,,120.0,,2.0,0.0,4.0,2.0,4.0,2.1,1503.466595064974,0.0,366.0,0.0,0.0,55738.0,1,1,2,100.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1927.1467497950048,0.027793515096988734,0.0345750968781622,26541.90476190476,8,4,8,8_1,8_3,8_0_1 -3434,2,42.0,1,0.0,6,112,5,56,37,6.0,0.0,319.2230534995912,1637.1683330164287,217.2387901012944,0.0,39027.0,31,31,1,14694,201103434,,,44.0,,2.0,0.0,6.0,2.0,4.0,2.3,4254.564982649287,0.0,1200.0,0.0,0.0,43699.0,1,1,2,130.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2173.630176617314,0.05569554863600364,0.049740959212277495,18999.565217391304,5,3,5,5_1,5_0,5_0_0 -3435,2,40.0,1,0.0,2,111,2,52,54,9.0,1365.9386238685775,0.0,422.93515269591074,0.0,0.0,30879.0,50,31,1,14695,201103435,,,242.0,,2.0,0.0,5.0,0.0,2.0,1.5,2282.7121858852265,0.0,310.0,0.0,0.0,46888.0,1,1,1,150.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1788.8737765644883,0.05793172630475366,0.03815205972881096,31258.666666666668,9,5,9,9_1,9_4,9_0_1 -3436,1,34.0,3,76.0,5,111,2,56,67,3.0,0.0,0.0,654.8673332065715,0.0,709.067410890625,33610.0,50,50,2,14697,201103436,,,,325.0,2.0,1.0,3.0,1.0,3.0,1.8,2170.139980716441,0.0,480.0,408.0,0.0,24962.0,4,1,3,88.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1363.9347440971965,0.0405812182117583,0.05464044323760903,13867.777777777777,3,2,3_1,3_0_1,3_2_1,3_0_0 -3437,2,51.0,4,0.0,99,112,2,46,37,9.0,0.0,416.377895869032,1364.3069441803573,0.0,1911.7013528913908,53745.0,50,41,1,14699,201103437,,,,,2.0,2.0,6.0,1.0,3.0,2.0,2213.2544093139913,0.0,1000.0,1100.0,0.0,72565.0,1,1,1,170.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3692.3861929407803,0.06870194795684771,0.05088384473149287,36282.5,9,5,9,9_1,9_0,9_0_0 -3438,2,44.0,2,0.0,5,111,2,34,37,10.0,0.0,208.188947934516,1637.1683330164287,0.0,2085.4923849724264,43150.0,10,10,1,14700,201103438,,,300.0,,2.0,0.0,6.0,3.0,5.0,2.6,1550.8522104974372,0.0,1200.0,1200.0,0.0,165410.0,4,1,2,170.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3930.849665923371,0.09109732713611521,0.02376428067180564,63619.230769230766,10,5,10,10_1,10_3,10_0_0 -3439,0,90.0,2,0.0,1,111,2,0,78,6.0,0.0,0.0,559.3658471139465,0.0,1214.7993142464384,11445.0,0,71,2,14701,201103439,,,210.0,,0.0,3.0,3.0,0.0,1.0,1.0,5955.47988087677,0.0,410.0,699.0,0.0,20757.0,0,5,5,50.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1774.165161360385,0.1550166152346339,0.0854731011880515,20757.0,6,3,6,6_0,6_2,6_1_0 -3440,2,48.0,5,0.0,7,112,4,22,52,3.0,0.0,0.0,2578.540124500875,0.0,0.0,47756.0,50,60,1,14703,201103440,,,700.0,,2.0,3.0,7.0,1.0,3.0,1.8,3567.901549237391,0.0,1890.0,0.0,0.0,25057.0,1,1,2,150.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2578.540124500875,0.05399405571029557,0.10290697707231014,13920.555555555555,3,2,3_0,3_1_0,3_0_0,3_0_0 -3441,2,50.0,3,0.0,1,111,4,85,85,6.0,0.0,0.0,955.0148609262501,0.0,0.0,21398.0,71,50,1,14704,201103441,,,300.0,,1.0,3.0,6.0,1.0,4.0,2.5,1940.2319815441276,0.0,700.0,0.0,0.0,51899.0,6,7,2,120.0,8,6.0,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,955.0148609262501,0.044631033784757926,0.018401411605739035,20759.6,6,3,6,6_1,6_2,6_1_0 -3442,2,67.0,3,0.0,9,300,4,34,37,10.0,0.0,766.1353283990188,2832.3012161184215,79.94387475727635,0.0,43169.0,20,20,1,14705,201103442,,,,,2.0,1.0,5.0,1.0,3.0,1.8,1252.6915727608296,0.0,2076.0,0.0,0.0,110990.0,1,1,2,134.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3678.3804192747166,0.0852088401231142,0.03314154806085878,61661.11111111111,10,5,10,10_1,10_0,10_0_0 -3443,2,69.0,3,0.0,4,111,2,56,78,3.0,0.0,0.0,900.4425831590357,0.0,2481.7359381171873,21331.0,70,50,1,14706,201103443,,,720.0,,1.0,2.0,3.0,1.0,3.0,2.0,863.5384799277784,0.0,660.0,1428.0,0.0,25673.0,1,5,1,88.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3382.178521276223,0.1585569603523615,0.13174068169969316,12836.5,3,2,3_0,3_1_0,3_2_0,3_0_1 -3444,2,28.0,3,0.0,99,111,1,46,54,6.0,0.0,0.0,409.2920832541072,0.0,0.0,31021.0,42,42,2,14707,201103444,,,,378.0,2.0,0.0,2.0,0.0,2.0,1.5,3154.383646300548,0.0,300.0,0.0,0.0,32160.0,1,1,3,54.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,409.2920832541072,0.013194032534544573,0.012726743882279453,21440.0,6,3,6,6_0,6_4,6_0_0 -3445,2,83.0,2,0.0,2,212,6,71,71,2.0,0.0,0.0,791.2980276246072,86.89551604051776,0.0,5955.0,70,70,1,14708,201103445,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1031.5431087250377,0.0,580.0,0.0,0.0,14980.0,5,5,5,113.0,2,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,878.193543665125,0.14747162781950043,0.05862440211382677,9986.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_1 -3446,2,39.0,3,0.0,1,120,5,11,11,1.0,0.0,0.0,914.0856526008394,208.54923849724264,0.0,14432.0,50,44,2,1471,201103446,,,,460.0,2.0,0.0,4.0,1.0,3.0,1.8,3751.57679357296,0.0,670.0,0.0,0.0,4849.0,1,1,3,70.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1122.6348910980819,0.07778789433883605,0.23151884741144194,2693.8888888888887,1,1,1_0,1_0_0,1_1_0,1_1_0 -3447,2,62.0,4,0.0,99,300,6,0,78,3.0,250.6600494439434,249.82673752141918,869.0635234428876,0.0,0.0,12370.0,0,70,1,14711,201103447,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2283.5718637767536,0.0,637.0,0.0,0.0,12488.0,0,4,1,93.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1369.5503104082502,0.11071546567568716,0.10966930736773305,12488.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -3448,2,59.0,1,0.0,6,112,2,54,45,9.0,0.0,693.9631597817199,293.3259929987768,104.27461924862132,0.0,39856.0,60,50,1,14712,201103448,,,220.0,,2.0,4.0,6.0,0.0,2.0,1.5,2317.9669498075023,0.0,215.0,0.0,0.0,49624.0,1,1,1,150.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1091.5637720291181,0.027387689984672774,0.02199669055354502,33082.666666666664,9,5,9,9_1,9_1,9_0_0 -3449,2,48.0,3,0.0,4,111,2,68,54,9.0,0.0,499.65347504283835,817.219859564034,0.0,1199.158121359145,55224.0,50,50,1,14713,201103449,,,415.0,,3.0,3.0,4.0,1.0,3.0,2.0,864.1337699769119,0.0,599.0,690.0,0.0,71484.0,1,1,3,97.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2516.0314559660173,0.04556047109890659,0.035197127412652025,35742.0,9,5,9,9_1,9_2,9_0_1 -3450,2,46.0,1,0.0,9,112,2,52,48,9.0,0.0,0.0,2182.8911106885716,0.0,0.0,76890.0,43,50,1,14715,201103450,,,327.0,,3.0,1.0,4.0,1.0,3.0,2.0,1199.8753438265985,0.0,1600.0,0.0,0.0,60958.0,1,1,2,140.0,7,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2182.8911106885716,0.02838979204953273,0.035809756072846415,30479.0,9,5,9,9_1,9_0,9_0_0 -3451,2,46.0,1,0.0,9,112,2,55,22,7.0,2855.620816449988,0.0,573.00891655575,182.4805836850873,0.0,69900.0,31,41,1,14717,201103451,,,500.0,,2.0,1.0,4.0,1.0,3.0,2.0,3205.775226659826,0.0,420.0,0.0,0.0,47480.0,1,1,1,150.0,4,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3611.1103166908256,0.05166109179815201,0.07605539841387586,23740.0,7,4,7,7_1,7_0,7_0_0 -3452,2,27.0,4,0.0,4,112,2,48,54,7.0,0.0,0.0,1391.5930830639643,0.0,0.0,31306.0,43,43,1,14718,201103452,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3007.543489863779,0.0,1020.0,0.0,0.0,32876.0,1,1,2,25.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1391.5930830639643,0.04445132188922137,0.04232854006156358,21917.333333333332,7,4,7,7_1,7_0,7_0_1 -3453,1,48.0,3,393.0,99,111,4,0,56,5.0,0.0,0.0,1146.0178331115,201.5975972140012,0.0,22732.0,0,31,2,14719,201103453,,,230.0,50.0,1.0,0.0,5.0,2.0,3.0,1.8,2386.758638563227,0.0,840.0,0.0,0.0,33665.0,0,4,3,85.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1347.6154303255012,0.059282748122712524,0.04003016279000449,18702.777777777777,5,3,5,5_0,5_2,5_0_0 -3454,2,28.0,4,0.0,7,221,6,52,67,6.0,0.0,0.0,2455.752499524643,173.79103208103552,0.0,26776.0,60,50,1,14720,201103454,,,,402.0,2.0,0.0,4.0,1.0,3.0,1.8,2252.307481914792,0.0,1800.0,0.0,0.0,36459.0,1,1,3,90.0,1,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2629.5435316056787,0.09820524094732891,0.07212330375505853,20255.0,6,3,6,6_1,6_1,6_0_0 -3455,2,73.0,4,0.0,2,111,1,0,78,5.0,0.0,0.0,245.5752499524643,0.0,208.54923849724264,17028.0,0,71,2,14721,201103455,,,,380.0,1.0,3.0,4.0,0.0,2.0,1.5,3167.575778194258,0.0,180.0,120.0,0.0,27173.0,0,5,3,80.0,8,6.0,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,454.124488449707,0.026669279331084508,0.016712342709664263,18115.333333333332,5,3,5,5_0,5_2,5_0_1 -3456,2,19.0,1,0.0,1,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,23142.0,0,41,8,14723,201103456,,,,400.0,0.0,0.0,1.0,0.0,1.0,1.0,3723.5340698997643,0.0,0.0,0.0,0.0,6172.0,0,3,3,22.0,9,7.0,1,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,6172.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -3457,2,85.0,3,0.0,3,111,1,0,86,1.0,0.0,0.0,409.2920832541072,0.0,0.0,6168.0,0,70,2,14726,201103457,,,,285.0,0.0,0.0,2.0,0.0,1.0,1.0,2936.790749472032,0.0,300.0,0.0,0.0,8429.0,0,6,3,50.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,409.2920832541072,0.06635734164301349,0.04855760864326814,8429.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -3458,2,93.0,2,0.0,1,120,2,71,71,2.0,0.0,0.0,0.0,208.54923849724264,0.0,24477.0,70,70,1,14727,201103458,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2054.969750871526,0.0,0.0,0.0,0.0,16340.0,5,5,1,170.0,0,0.0,3,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,208.54923849724264,0.008520212382940828,0.012763111291140921,10893.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -3459,2,42.0,2,0.0,7,111,6,46,34,7.0,951.8736054833294,0.0,777.6549581828036,83.41969539889705,0.0,37074.0,10,10,1,14729,201103459,,,199.0,,2.0,0.0,5.0,3.0,5.0,2.4,1253.4465161150633,0.0,570.0,0.0,0.0,57332.0,1,1,1,135.0,7,5.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1812.94825906503,0.04890079999635944,0.03162192595871468,23888.333333333336,7,4,7,7_1,7_2,7_0_0 -3460,2,28.0,4,0.0,4,111,2,52,67,6.0,0.0,0.0,545.7227776721429,0.0,2259.283417053462,54881.0,50,60,1,1473,201103460,,,,,2.0,0.0,6.0,1.0,3.0,1.8,2722.0522700731476,0.0,400.0,1300.0,0.0,38220.0,1,1,2,109.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2805.006194725605,0.051110697595262565,0.07339105690019898,21233.333333333332,6,3,6,6_1,6_3,6_0_1 -3461,2,36.0,3,0.0,6,111,4,0,46,4.0,0.0,0.0,736.7257498573929,0.0,0.0,30739.0,0,20,1,14731,201103461,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2605.3951072652458,0.0,540.0,0.0,0.0,21188.0,0,1,2,35.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,736.7257498573929,0.023967134580090206,0.03477089625530455,16298.461538461537,4,2,4_0,4_1_0,4_3_0,4_0_0 -3462,2,61.0,1,0.0,1,112,2,77,72,9.0,0.0,0.0,2953.7245341504736,86.89551604051776,0.0,30535.0,31,50,1,14732,201103462,,,264.0,,0.0,1.0,5.0,0.0,2.0,1.5,1988.7718499945959,0.0,2165.0,0.0,0.0,53889.0,5,5,1,145.0,9,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3040.620050190991,0.09957819060720456,0.05642376088238771,35926.0,9,5,9,9_1,9_0,9_1_0 -3463,2,81.0,2,0.0,2,111,1,0,74,10.0,0.0,0.0,231.93218051066074,0.0,121.65372245672486,41279.0,0,10,2,14733,201103463,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2814.069931716118,0.0,170.0,70.0,0.0,72198.0,0,5,1,95.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,353.5859029673856,0.00856575747880001,0.00489744733880974,72198.0,10,5,10,10_0,10_3,10_0_1 -3464,2,91.0,2,0.0,1,112,2,86,78,4.0,2744.568895810266,526.0240751145437,744.9115915224751,145.98446694806984,0.0,15215.0,70,71,1,14734,201103464,,,150.0,,0.0,2.0,5.0,0.0,2.0,1.5,3433.404176274506,0.0,546.0,0.0,0.0,22600.0,5,5,5,150.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4161.489029395355,0.2735122595724847,0.18413668271660863,15066.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -3465,2,52.0,1,0.0,9,111,2,54,21,10.0,0.0,624.566843803548,392.9203999239429,0.0,643.0268186998314,32216.0,50,50,1,14735,201103465,,,264.0,,2.0,2.0,4.0,0.0,2.0,1.5,1771.5268811543247,0.0,288.0,370.0,0.0,114469.0,1,1,2,92.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1660.5140624273222,0.05154314820050044,0.014506233673984417,76312.66666666667,10,5,10,10_1,10_2,10_0_0 -3466,2,45.0,2,0.0,7,111,4,62,33,9.0,0.0,0.0,1773.5990274344645,0.0,0.0,72918.0,42,20,1,14736,201103466,,,700.0,,2.0,0.0,8.0,3.0,5.0,2.6,1590.6416337458063,0.0,1300.0,0.0,0.0,89819.0,1,1,2,150.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1773.5990274344645,0.024323199037747392,0.01974636800047278,34545.76923076923,9,5,9,9_1,9_3,9_0_0 -3467,2,38.0,3,0.0,5,111,2,46,37,7.0,0.0,0.0,1548.4883816447054,0.0,990.6088828619024,21385.0,20,20,1,14737,201103467,,,330.0,,2.0,0.0,3.0,1.0,3.0,1.8,2142.76988348329,0.0,1135.0,570.0,0.0,44421.0,1,4,2,70.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2539.0972645066076,0.11873262868864193,0.057159840267139585,24678.333333333332,7,4,7,7_1,7_2,7_0_0 -3468,1,63.0,3,50.0,8,111,4,0,77,3.0,0.0,0.0,58.665198599755364,60.82686122836243,0.0,11397.0,0,50,2,14740,201103468,,,18.0,440.0,0.0,1.0,2.0,0.0,1.0,1.0,3734.1183746294973,0.0,43.0,0.0,0.0,12940.0,0,5,3,62.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,119.49205982811779,0.010484518717918556,0.009234316833703075,12940.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -3469,2,62.0,3,0.0,4,111,1,78,78,4.0,0.0,707.8424229773543,523.8938665652572,0.0,0.0,18653.0,71,70,2,14741,201103469,510.0,510.0,220.0,237.0,0.0,4.0,2.0,0.0,2.0,1.5,3468.066570344747,0.0,384.0,0.0,0.0,23490.0,5,5,3,48.0,7,6.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1231.7362895426115,0.06603421913593585,0.052436623650175034,15660.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -3470,2,24.0,4,0.0,99,111,1,64,52,3.0,0.0,0.0,382.0059443705,0.0,503.99399303500303,18598.0,71,50,2,14742,201103470,,,,263.0,2.0,0.0,3.0,1.0,3.0,1.8,5023.663390158317,0.0,280.0,290.0,0.0,24721.0,1,1,3,53.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,885.999937405503,0.04763952776672239,0.035839971579042236,13733.888888888889,3,2,3_0,3_0_0,3_4_0,3_0_0 -3471,2,62.0,2,0.0,1,111,2,42,75,9.0,0.0,0.0,1568.9529858074109,260.6865481215533,0.0,49730.0,31,20,2,14743,201103471,,,,,1.0,2.0,3.0,1.0,3.0,2.0,2591.411248552718,0.0,1150.0,0.0,0.0,60366.0,1,5,1,75.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1829.6395339289643,0.03679146458735098,0.03030910668139291,30183.0,9,5,9,9_0,9_3,9_1_0 -3472,2,76.0,3,0.0,1,111,2,0,78,5.0,0.0,0.0,682.1534720901786,0.0,1477.223772688802,12767.0,0,71,1,14744,201103472,,,360.0,,1.0,5.0,3.0,0.0,2.0,1.5,2925.14016819609,0.0,500.0,850.0,0.0,27878.0,0,5,3,45.0,9,7.0,5,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2159.3772447789806,0.16913740461964288,0.07745811194414881,18585.333333333332,5,3,5,5_1,5_3,5_1_0 -3473,2,32.0,3,0.0,6,111,2,85,37,7.0,0.0,0.0,504.79356934673217,0.0,1216.5372245672486,43661.0,43,31,2,14745,201103473,,,,,1.0,0.0,3.0,3.0,5.0,2.4,3702.313271471846,0.0,370.0,700.0,0.0,57800.0,7,1,2,68.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1721.3307939139809,0.03942490538269808,0.029780809583286865,24083.333333333336,7,4,7,7_0,7_3,7_0_0 -3474,1,41.0,4,249.0,3,400,5,64,69,1.0,0.0,541.2912646297416,1637.1683330164287,516.1593652806755,0.0,26902.0,31,31,1,14749,201103474,,,,141.0,2.0,0.0,6.0,2.0,4.0,2.1,2624.3068352677824,0.0,1200.0,0.0,0.0,18840.0,1,1,3,92.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2694.618962926846,0.10016426150200157,0.14302648423178588,8971.42857142857,1,1,1_1,1_1_1,1_0_1,1_0_1 -3475,2,28.0,3,0.0,2,111,4,43,34,9.0,0.0,0.0,955.0148609262501,0.0,260.6865481215533,29784.0,33,33,2,1475,201103475,,,,720.0,2.0,0.0,2.0,0.0,2.0,1.5,3704.5340829955508,0.0,700.0,150.0,0.0,43779.0,1,1,3,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1215.7014090478033,0.04081726460676213,0.02776905386253234,29186.0,9,5,9,9_0,9_4,9_0_1 -3476,2,47.0,2,0.0,7,111,2,43,62,5.0,0.0,0.0,945.4071960315056,0.0,2533.9465143524903,47517.0,44,60,1,14750,201103476,,,,,2.0,0.0,5.0,2.0,4.0,2.5,1345.7705559550102,708.0,423.0,1020.0,0.0,44785.0,1,1,1,120.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3479.353710383996,0.07322334554757236,0.07769015765064186,17914.0,5,3,5,5_1,5_2,5_0_0 -3477,2,56.0,4,0.0,6,112,6,0,55,7.0,1903.7472109666587,0.0,382.0059443705,48.661488982689946,0.0,15131.0,0,70,1,14752,201103477,,,190.0,,1.0,1.0,5.0,0.0,1.0,1.0,1920.3900229221704,0.0,280.0,0.0,0.0,21800.0,0,1,5,112.0,7,4.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2334.414644319849,0.15428026199985784,0.10708324056513067,21800.0,7,4,7,7_1,7_2,7_0_0 -3478,1,22.0,2,260.0,1,111,4,0,47,1.0,0.0,0.0,750.3688192991965,0.0,0.0,11247.0,0,31,2,14753,201103478,,,,300.0,1.0,0.0,2.0,0.0,1.0,1.0,3436.2842660155857,0.0,550.0,0.0,0.0,3321.0,0,2,3,37.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,750.3688192991965,0.06671724186887139,0.2259466483887975,3321.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -3479,2,64.0,2,0.0,5,111,2,0,75,8.0,0.0,0.0,150.0737638598393,0.0,0.0,17264.0,0,20,2,14754,201103479,,,,,0.0,1.0,2.0,0.0,1.0,1.0,1614.5150742485187,0.0,110.0,0.0,0.0,27131.0,0,5,1,52.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,150.0737638598393,0.00869287325416122,0.005531449775527599,27131.0,8,4,8,8_0,8_2,8_0_0 -3480,2,23.0,3,0.0,1,112,4,0,63,4.0,0.0,0.0,695.7965415319821,0.0,0.0,7271.0,0,50,1,14758,201103480,,,100.0,300.0,1.0,0.0,3.0,0.0,1.0,1.0,2319.7878592488933,0.0,510.0,0.0,0.0,15560.0,0,1,3,60.0,7,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,695.7965415319821,0.09569475196423906,0.04471700138380348,15560.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -3481,2,55.0,1,0.0,1,300,2,75,56,6.0,2649.381535261933,0.0,1023.230208135268,45.18566834106924,0.0,38424.0,31,60,1,1476,201103481,,,88.0,,1.0,3.0,10.0,0.0,2.0,1.5,2091.8400051107656,0.0,750.0,0.0,0.0,32036.0,5,1,2,300.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3717.7974117382705,0.09675716770087109,0.11605061217812057,21357.333333333332,6,3,6,6_1,6_0,6_1_0 -3482,2,44.0,2,0.0,1,111,2,37,37,10.0,0.0,0.0,1302.07942575693,0.0,2355.930493621814,80885.0,10,10,1,14761,201103482,,,732.0,,2.0,0.0,5.0,2.0,4.0,2.5,1537.1355510698017,300.0,840.0,1170.0,0.0,138062.0,4,1,2,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3658.009919378744,0.04522482437261228,0.026495414519409715,55224.8,10,5,10,10_1,10_4,10_1_0 -3483,2,55.0,4,0.0,1,120,5,0,45,10.0,872.5508050263852,208.188947934516,536.1726290628804,86.89551604051776,0.0,27861.0,0,12,1,14762,201103483,,,160.0,,1.0,0.0,4.0,0.0,1.0,1.0,1819.7792830369965,0.0,393.0,0.0,0.0,43710.0,0,1,2,92.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1703.8078980642993,0.06115386734375289,0.038979819219041395,43710.0,10,5,10,10_1,10_0,10_1_0 -3484,2,34.0,2,0.0,6,111,6,34,34,10.0,0.0,0.0,1519.837935816918,0.0,0.0,56440.0,10,10,1,14764,201103484,,,348.0,,2.0,0.0,5.0,0.0,2.0,1.5,1523.1407365425985,0.0,1114.0,0.0,0.0,74528.0,1,1,2,120.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1519.837935816918,0.02692838298754284,0.020392844780712186,49685.333333333336,10,5,10,10_1,10_3,10_0_0 -3485,2,67.0,3,0.0,1,400,2,71,71,3.0,0.0,138.792631956344,946.8290192611679,434.4775802025888,0.0,26007.0,50,50,1,14765,201103485,,,435.0,,0.0,2.0,5.0,0.0,2.0,1.5,1591.9859014402332,0.0,694.0,0.0,0.0,18944.0,5,5,1,110.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1520.0992314201008,0.05844961861883727,0.08024172463155092,12629.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -3486,2,33.0,3,0.0,6,112,5,53,53,8.0,0.0,0.0,1227.8762497623215,90.37133668213848,0.0,45763.0,43,41,1,14766,201103486,,,300.0,,2.0,1.0,4.0,0.0,2.0,1.5,2188.4618285386596,0.0,900.0,0.0,0.0,37610.0,1,1,2,90.0,9,1.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1318.24758644446,0.028805969592125953,0.03505045430588833,25073.333333333332,8,4,8,8_1,8_1,8_0_0 -3487,2,46.0,3,0.0,1,112,2,22,55,5.0,0.0,0.0,488.88349550327644,0.0,1554.8417199678704,19961.0,71,71,2,14767,201103487,,,,,2.0,0.0,3.0,3.0,5.0,2.8,3099.333268056602,153.0,300.0,800.0,0.0,49275.0,1,1,1,73.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2043.7252154711468,0.10238591330450111,0.04147590493092129,17598.214285714286,5,3,5,5_0,5_2,5_1_0 -3488,2,53.0,2,0.0,2,111,1,52,63,7.0,0.0,0.0,779.019265126984,0.0,0.0,55102.0,50,71,2,14768,201103488,,,,435.0,3.0,1.0,4.0,2.0,4.0,2.3,2518.554035492595,0.0,571.0,0.0,0.0,52832.0,1,1,3,97.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,779.019265126984,0.014137767506206381,0.014745216253917778,22970.434782608696,7,4,7,7_0,7_4,7_0_1 -3489,2,52.0,4,0.0,7,111,2,46,21,9.0,0.0,277.585263912688,1364.3069441803573,0.0,2780.6565132965684,37877.0,41,50,1,1477,201103489,,,150.0,,2.0,3.0,5.0,0.0,2.0,1.5,3181.0993125624505,0.0,1000.0,1600.0,0.0,43951.0,1,1,1,150.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4422.548721389614,0.11676079735432093,0.10062453007644,29300.666666666668,9,5,9,9_1,9_3,9_0_0 -3490,2,53.0,2,0.0,1,112,2,0,52,7.0,1745.1016100527704,0.0,785.8407998478858,104.27461924862132,0.0,15803.0,0,50,1,14770,201103490,,,280.0,,1.0,1.0,4.0,0.0,1.0,1.0,2253.17213309278,0.0,576.0,0.0,0.0,21902.0,0,1,3,70.0,7,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2635.2170291492776,0.16675422572608223,0.12031855671396574,21902.0,7,4,7,7_1,7_0,7_1_0 -3491,2,60.0,3,0.0,4,111,2,78,77,7.0,0.0,0.0,523.8938665652572,0.0,1788.3097201138555,36504.0,70,60,1,14771,201103491,,,296.0,,0.0,1.0,4.0,0.0,2.0,1.5,1641.632472938618,0.0,384.0,1029.0,0.0,33559.0,5,5,1,100.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2312.203586679113,0.06334110198003268,0.06889965692300465,22372.666666666668,7,4,7,7_1,7_2,7_0_1 -3492,2,27.0,3,0.0,9,221,2,56,68,2.0,0.0,0.0,1227.8762497623215,323.25131967072605,0.0,22907.0,50,50,2,14773,201103492,,,600.0,615.0,2.0,0.0,3.0,1.0,3.0,1.8,2938.530649675622,0.0,900.0,0.0,0.0,21566.0,1,1,3,60.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1551.1275694330475,0.06771412971725008,0.07192467631610162,11981.111111111111,2,1,2_0,2_0_0,2_1_0,2_0_0 -3493,2,44.0,2,0.0,8,112,2,54,37,9.0,0.0,59.68083174122792,2046.460416270536,72.99223347403492,0.0,42750.0,31,31,1,14774,201103493,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2392.0214649930044,0.0,1500.0,0.0,0.0,52850.0,1,4,2,175.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2179.1334814857987,0.05097388260785494,0.041232421598596004,29361.11111111111,9,5,9,9_1,9_0,9_0_0 -3494,2,62.0,3,0.0,6,112,4,77,75,7.0,0.0,0.0,1751.7701163275788,100.7987986070006,0.0,36259.0,70,50,1,14775,201103494,,,530.0,,0.0,3.0,4.0,0.0,2.0,1.5,1563.8519138003928,0.0,1284.0,0.0,0.0,34033.0,5,5,1,90.0,4,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1852.5689149345794,0.051092664302230605,0.054434487554273187,22688.666666666668,7,4,7,7_1,7_0,7_0_0 -3495,2,31.0,4,0.0,3,111,1,0,67,4.0,0.0,0.0,327.43366660328576,0.0,177.26685272265624,11810.0,0,31,2,14776,201103495,,,,151.0,1.0,1.0,1.0,0.0,1.0,1.0,3407.634456621304,0.0,240.0,102.0,0.0,15945.0,0,1,3,25.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,504.70051932594197,0.04273501433750567,0.031652588229911696,15945.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -3496,1,36.0,4,530.0,99,111,1,0,56,1.0,0.0,0.0,532.0797082303393,0.0,0.0,8463.0,0,20,2,14780,201103496,,,,220.0,1.0,0.0,3.0,4.0,5.0,2.4,1284.6800558809996,0.0,390.0,0.0,0.0,16840.0,0,1,3,46.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,532.0797082303393,0.06287128775024688,0.031596182198951266,7016.666666666667,1,1,1_1,1_0_1,1_3_1,1_0_0 -3497,2,86.0,1,0.0,1,111,2,0,77,5.0,0.0,0.0,477.50743046312505,0.0,2606.865481215533,12144.0,0,70,1,14781,201103497,,,140.0,,0.0,2.0,5.0,0.0,1.0,1.0,2047.1302618272023,0.0,350.0,1500.0,0.0,17806.0,0,5,3,100.0,7,6.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3084.372911678658,0.25398327665338094,0.1732209879635324,17806.0,5,3,5,5_1,5_2,5_1_0 -3498,2,35.0,2,0.0,3,120,2,84,38,9.0,0.0,1665.511583476128,682.1534720901786,0.0,0.0,52843.0,10,12,1,14783,201103498,,,400.0,,1.0,0.0,4.0,1.0,3.0,1.8,1717.771894959624,0.0,500.0,0.0,0.0,57017.0,3,1,2,95.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2347.6650555663064,0.04442717210541238,0.041174826026734244,31676.11111111111,9,5,9,9_1,9_0,9_0_1 -3499,2,35.0,1,0.0,99,111,1,0,42,8.0,0.0,0.0,361.5413402077947,0.0,1604.091226107958,12541.0,0,20,2,14784,201103499,636.0,636.0,,,1.0,0.0,4.0,0.0,1.0,1.0,2116.2349651593377,0.0,265.0,923.0,0.0,26864.0,0,1,3,70.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1965.6325663157527,0.15673650955392335,0.0731697649760182,26864.0,8,4,8,8_0,8_2,8_0_0 -3500,2,44.0,2,0.0,1,120,2,55,63,9.0,2696.9752155360998,69.396315978172,818.5841665082144,86.89551604051776,0.0,30534.0,50,50,1,14787,201103500,,,,,2.0,5.0,6.0,0.0,2.0,1.5,2040.0526836733852,0.0,600.0,0.0,0.0,54489.0,1,1,2,100.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3671.8512140630037,0.12025451018743052,0.06738701782126674,36326.0,9,5,9,9_1,9_0,9_1_0 -3501,2,62.0,1,0.0,1,400,2,74,33,10.0,2538.3296146222115,0.0,859.5133748336251,86.89551604051776,0.0,58455.0,20,12,1,1479,201103501,,,291.0,,1.0,2.0,5.0,0.0,2.0,1.5,1628.846748216114,0.0,630.0,0.0,0.0,98560.0,5,1,1,120.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3484.7385054963543,0.05961403653231296,0.03535651892751983,65706.66666666667,10,5,10,10_1,10_0,10_1_0 -3502,2,55.0,5,0.0,6,112,6,0,56,5.0,1269.1648073111057,0.0,1405.236152505768,194.64595593075978,0.0,20709.0,0,50,1,14791,201103502,,,,,2.0,2.0,4.0,1.0,2.0,1.5,3532.6461799216872,0.0,1030.0,0.0,0.0,25164.0,0,1,1,90.0,8,0.0,2,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2869.0469157476336,0.13854106503199737,0.11401394514972316,16776.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -3503,2,51.0,3,0.0,1,111,6,85,43,1.0,0.0,0.0,5702.803026673893,50.3993993035003,0.0,32229.0,12,33,1,14792,201103503,,,,,1.0,1.0,8.0,3.0,5.0,2.6,1696.8027835035846,0.0,4180.0,0.0,0.0,22425.0,6,1,3,95.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5753.202425977393,0.17851011281694726,0.2565530624739083,8625.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -3504,2,59.0,3,0.0,4,111,1,0,78,3.0,0.0,0.0,296.05460688713754,0.0,0.0,10758.0,0,50,2,14794,201103504,,,,243.0,0.0,0.0,2.0,0.0,1.0,1.0,2619.709031641508,0.0,217.0,0.0,0.0,14129.0,0,7,3,45.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,296.05460688713754,0.027519483815498933,0.020953684399967268,14129.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -3505,2,39.0,1,0.0,1,111,2,34,34,10.0,0.0,0.0,491.1504999049286,0.0,782.0596443646599,56536.0,10,10,2,14795,201103505,,,,,2.0,1.0,5.0,1.0,3.0,1.8,2660.257238128121,0.0,360.0,450.0,0.0,135893.0,1,1,2,128.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1273.2101442695885,0.022520343573468028,0.00936921066036947,75496.11111111111,10,5,10,10_0,10_3,10_1_0 -3506,2,61.0,1,0.0,1,112,2,75,31,10.0,2696.9752155360998,0.0,1082.1223630491365,177.26685272265624,668.8063672208015,95507.0,30,10,1,14797,201103506,,,255.0,,1.0,3.0,7.0,0.0,2.0,1.5,3202.7171315766304,622.0,556.0,0.0,0.0,92048.0,6,1,1,340.0,7,0.0,3,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4625.170798528694,0.04842755817404686,0.05024737961203605,61365.333333333336,10,5,10,10_1,10_0,10_1_0 -3507,2,56.0,2,0.0,5,112,2,52,62,9.0,4759.368027416646,0.0,491.1504999049286,173.79103208103552,0.0,21579.0,60,50,1,14798,201103507,,,340.0,,2.0,2.0,3.0,0.0,2.0,1.5,1747.0375548104214,0.0,360.0,0.0,0.0,49811.0,1,1,1,93.0,6,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5424.30955940261,0.2513698298995602,0.10889782496642529,33207.333333333336,9,5,9,9_1,9_0,9_0_0 -3508,2,87.0,5,0.0,2,111,1,0,78,5.0,0.0,0.0,231.93218051066074,0.0,0.0,7332.0,0,71,2,14799,201103508,,,,230.0,0.0,1.0,1.0,0.0,1.0,1.0,3241.704987919705,0.0,170.0,0.0,0.0,18090.0,0,5,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,231.93218051066074,0.03163286695453638,0.012821016059185225,18090.0,5,3,5,5_0,5_4,5_0_1 -3509,1,24.0,4,130.0,5,111,1,85,63,1.0,0.0,0.0,491.1504999049286,0.0,0.0,13612.0,71,60,2,14801,201103509,,,,270.0,1.0,0.0,1.0,1.0,3.0,1.8,4557.932315176857,0.0,360.0,0.0,0.0,15634.0,7,1,3,27.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,491.1504999049286,0.036082170137006216,0.03141553664480802,8685.555555555555,1,1,1_1,1_0_1,1_4_1,1_0_0 -3510,0,57.0,3,0.0,1,111,1,0,63,5.0,0.0,0.0,0.0,0.0,0.0,10039.0,0,60,2,14803,201103510,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2719.5272762204754,0.0,0.0,0.0,0.0,18196.0,0,1,5,52.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,18196.0,5,3,5,5_0,5_3,5_1_0 -3511,2,43.0,3,0.0,4,111,2,0,43,3.0,0.0,0.0,1208.7759525437966,0.0,425.78802859853704,31755.0,0,10,2,14804,201103511,,,,,1.0,0.0,4.0,2.0,3.0,2.0,3915.1754113712977,0.0,886.0,245.0,0.0,25786.0,0,1,2,75.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1634.5639811423337,0.0514742239377211,0.06338959051975233,12893.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -3512,2,36.0,1,0.0,4,111,1,0,38,10.0,0.0,0.0,327.43366660328576,0.0,0.0,37245.0,0,10,2,14805,201103512,,,,,1.0,0.0,2.0,0.0,1.0,1.0,6076.852009391861,0.0,240.0,0.0,0.0,104847.0,0,1,1,56.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,327.43366660328576,0.008791345592785226,0.0031229664807127123,104847.0,10,5,10,10_0,10_2,10_0_1 -3513,2,43.0,1,0.0,1,111,4,54,38,10.0,0.0,0.0,1195.132883101993,0.0,0.0,66885.0,31,12,1,14806,201103513,,,,,2.0,0.0,5.0,0.0,2.0,1.5,3661.1294574015606,0.0,876.0,0.0,0.0,109980.0,1,1,3,125.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1195.132883101993,0.017868473994198893,0.010866820177323086,73320.0,10,5,10,10_1,10_4,10_1_0 -3514,2,61.0,1,0.0,5,112,6,77,31,9.0,0.0,0.0,2642.8895071914653,0.0,668.8063672208015,53689.0,41,10,1,14807,201103514,,,,,1.0,4.0,7.0,0.0,2.0,1.5,2464.7316462335734,622.0,1700.0,0.0,0.0,47348.0,5,1,1,250.0,9,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3311.6958744122667,0.06168294947591251,0.06994373309141393,31565.333333333332,9,5,9,9_1,9_0,9_0_0 -3515,2,51.0,3,0.0,9,111,2,69,43,10.0,0.0,0.0,968.6579303680536,0.0,1953.4112005908394,45604.0,50,33,1,14808,201103515,,,275.0,,3.0,2.0,5.0,1.0,3.0,2.0,1382.6703555875608,0.0,710.0,1124.0,0.0,100340.0,1,1,1,120.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2922.069130958893,0.0640748427979759,0.029121677605729448,50170.0,10,5,10,10_1,10_2,10_0_0 -3516,2,58.0,2,0.0,99,112,2,0,78,5.0,0.0,0.0,136.43069441803573,0.0,519.6351859222962,16264.0,0,50,2,14809,201103516,,,,338.0,0.0,3.0,2.0,0.0,1.0,1.0,2769.472924047109,0.0,100.0,299.0,0.0,18957.0,0,5,3,40.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,656.0658803403319,0.04033853174743802,0.03460810678590135,18957.0,5,3,5,5_0,5_1,5_0_0 -3517,2,57.0,3,0.0,1,111,2,77,75,8.0,0.0,0.0,886.7995137172322,0.0,2259.283417053462,55946.0,50,70,1,1481,201103517,,,380.0,,0.0,2.0,4.0,0.0,2.0,1.5,1331.9408632844543,0.0,650.0,1300.0,0.0,38778.0,5,5,2,70.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3146.0829307706945,0.0562342782463571,0.08113061351206081,25852.0,8,4,8,8_1,8_2,8_1_0 -3518,2,73.0,1,0.0,5,111,2,74,77,8.0,3985.177494956872,0.0,511.615104067634,0.0,163.36357015617338,39690.0,50,50,1,14811,201103518,,,400.0,,0.0,0.0,7.0,0.0,2.0,1.5,2081.8450129348626,0.0,375.0,94.0,0.0,39770.0,5,5,1,140.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4660.156169180679,0.11741386165736153,0.11717767586574501,26513.333333333332,8,4,8,8_1,8_4,8_0_0 -3519,2,67.0,3,0.0,4,111,1,77,75,3.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,29033.0,70,50,2,14813,201103519,,,300.0,,0.0,3.0,4.0,0.0,2.0,1.5,2822.800403916006,400.0,0.0,0.0,0.0,21896.0,6,5,1,83.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,638.1826812255044,0.021981286164898715,0.029146085185673385,14597.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_1 -3520,2,41.0,4,0.0,2,111,2,22,37,2.0,0.0,0.0,682.1534720901786,0.0,4344.775802025888,29164.0,20,20,1,14814,201103520,,,350.0,,2.0,0.0,7.0,2.0,4.0,2.1,2346.0655694984903,0.0,500.0,2500.0,0.0,25770.0,4,1,1,150.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5026.929274116066,0.1723676201521076,0.19506904439720862,12271.42857142857,2,1,2_0,2_1_0,2_3_0,2_0_1 -3521,2,24.0,3,0.0,99,111,2,38,46,5.0,0.0,0.0,477.50743046312505,0.0,2085.4923849724264,53170.0,10,31,2,14815,201103521,,,,560.0,2.0,0.0,3.0,0.0,2.0,1.5,3121.421129306902,0.0,350.0,1200.0,0.0,25480.0,3,1,3,80.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2562.9998154355517,0.04820387089402956,0.10058868977376577,16986.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_0 -3522,1,43.0,3,245.0,9,111,6,64,56,3.0,0.0,0.0,491.1504999049286,0.0,1524.1473513506814,22023.0,50,50,1,14816,201103522,,,302.0,99.0,2.0,2.0,3.0,1.0,3.0,2.0,2417.137694118201,0.0,360.0,877.0,0.0,24835.0,1,1,3,70.0,7,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2015.29785125561,0.09150877951485312,0.08114748746750997,12417.5,2,1,2_1,2_1_1,2_2_1,2_0_0 -3523,1,33.0,4,17.0,9,112,4,85,53,3.0,475.9368027416647,0.0,1637.1683330164287,0.0,0.0,22193.0,43,60,1,14818,201103523,,,,,1.0,0.0,5.0,2.0,4.0,2.1,3858.409422646402,0.0,1200.0,0.0,0.0,26603.0,6,1,3,117.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2113.1051357580936,0.09521493875357516,0.079431084304706,12668.095238095237,2,1,2_1,2_1_1,2_0_1,2_0_0 -3524,2,43.0,2,0.0,5,111,2,52,52,4.0,0.0,0.0,450.22129157951787,0.0,1077.5043989024202,31618.0,50,71,2,14819,201103524,,,,,2.0,0.0,3.0,1.0,3.0,2.0,2481.2167030912547,0.0,330.0,620.0,0.0,33208.0,1,1,2,84.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1527.725690481938,0.048318226658293946,0.04600474856907787,16604.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -3525,2,59.0,3,0.0,6,111,2,74,33,8.0,0.0,0.0,1166.4824372742055,0.0,2080.278654009995,41450.0,20,10,1,14821,201103525,,,513.0,,1.0,0.0,7.0,3.0,5.0,3.0,2164.642961267424,0.0,855.0,1197.0,0.0,78944.0,5,1,1,150.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3246.7610912842006,0.07832958000685647,0.04112739525846423,26314.666666666668,8,4,8,8_1,8_2,8_0_0 -3526,2,63.0,2,0.0,6,111,2,0,74,9.0,0.0,735.6009493686231,589.3805998859143,0.0,974.9676899746092,31520.0,0,42,1,14826,201103526,,,,,0.0,3.0,6.0,0.0,1.0,1.0,2606.117838620435,0.0,432.0,561.0,0.0,32254.0,0,5,1,130.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2299.9492392291468,0.07296793271666074,0.07130741114990843,32254.0,9,5,9,9_1,9_2,9_0_0 -3527,2,52.0,4,0.0,7,111,4,0,52,5.0,0.0,0.0,1637.1683330164287,208.54923849724264,0.0,12799.0,0,50,1,14827,201103527,,,270.0,413.0,1.0,2.0,4.0,0.0,1.0,1.0,1295.993068555922,0.0,1200.0,0.0,0.0,17150.0,0,1,3,85.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1845.7175715136714,0.14420795152071814,0.10762201583170096,17150.0,5,3,5,5_1,5_2,5_0_0 -3528,2,87.0,3,0.0,7,111,2,77,72,3.0,0.0,0.0,681.4689545517105,0.0,1408.5793264618164,19583.0,50,70,1,14828,201103528,,,170.0,,0.0,4.0,3.0,0.0,2.0,1.5,1679.8235927885019,1310.0,0.0,0.0,0.0,19530.0,5,5,3,66.0,5,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2090.048281013527,0.10672768631024494,0.10701732109644274,13020.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -3529,2,37.0,3,0.0,99,111,1,31,56,4.0,0.0,0.0,392.9203999239429,0.0,1555.429737125268,20612.0,10,50,2,14829,201103529,703.0,703.0,,292.0,2.0,4.0,3.0,1.0,3.0,1.8,2373.934081399704,0.0,288.0,895.0,0.0,28928.0,4,1,3,109.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1948.3501370492108,0.09452504060980065,0.06735170551193345,16071.111111111111,4,2,4_0,4_0_0,4_2_0,4_0_0 -3530,2,72.0,3,0.0,8,112,2,77,78,5.0,0.0,0.0,723.0826804155894,0.0,1644.063163486596,24008.0,71,70,1,1483,201103530,,,260.0,,0.0,4.0,4.0,0.0,2.0,1.5,2213.9769479844863,0.0,530.0,946.0,0.0,26665.0,5,5,1,85.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2367.1458439021853,0.09859821075900473,0.08877351749117515,17776.666666666668,5,3,5,5_1,5_1,5_0_0 -3531,2,51.0,4,0.0,6,111,2,68,67,4.0,0.0,0.0,1227.8762497623215,0.0,1946.4595593075978,42281.0,60,71,1,14831,201103531,,,500.0,,3.0,2.0,6.0,2.0,4.0,2.5,1998.6511869284316,0.0,900.0,1120.0,0.0,40693.0,1,1,1,110.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3174.3358090699194,0.07507712232610202,0.07800692524684637,16277.2,4,2,4_0,4_1_0,4_2_0,4_0_0 -3532,1,25.0,3,237.0,3,111,1,85,63,2.0,0.0,0.0,845.8703053918215,0.0,0.0,9917.0,71,50,2,14832,201103532,,,,90.0,1.0,0.0,5.0,3.0,5.0,2.4,2760.430431019313,0.0,620.0,0.0,0.0,25870.0,6,4,3,94.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,845.8703053918215,0.08529497886375129,0.032696958074674196,10779.166666666668,2,1,2_1,2_0_1,2_3_1,2_0_1 -3533,2,64.0,3,0.0,4,111,2,0,75,6.0,0.0,0.0,248.30386384082502,0.0,2179.3395422961853,29264.0,0,50,1,14833,201103533,,,103.0,,0.0,2.0,4.0,0.0,1.0,1.0,1498.6437022540977,0.0,182.0,1254.0,0.0,20138.0,0,5,1,60.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2427.6434061370105,0.08295665001835055,0.12055037273497916,20138.0,6,3,6,6_1,6_2,6_0_1 -3534,1,42.0,4,93.0,1,120,4,0,69,4.0,0.0,0.0,491.1504999049286,156.41192887293198,0.0,7632.0,0,50,1,14834,201103534,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2507.975373423845,0.0,360.0,0.0,0.0,14756.0,0,4,3,60.0,0,2.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,647.5624287778605,0.08484832662183707,0.04388468614650722,14756.0,3,2,3_1,3_1_1,3_1_1,3_1_0 -3535,2,61.0,3,0.0,9,111,2,0,77,8.0,0.0,0.0,255.1253985617268,0.0,1312.1222922118181,30462.0,0,50,1,14837,201103535,,,108.0,,0.0,1.0,5.0,0.0,1.0,1.0,4789.134835453396,0.0,187.0,755.0,0.0,27397.0,0,5,1,100.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1567.247690773545,0.0514492709202792,0.05720508416153393,27397.0,8,4,8,8_1,8_2,8_0_0 -3536,2,51.0,1,0.0,5,112,4,54,23,10.0,0.0,0.0,4514.491678292802,104.27461924862132,0.0,72514.0,31,31,1,14838,201103536,,,,,2.0,3.0,7.0,0.0,2.0,1.5,3010.7521507789133,0.0,3309.0,0.0,0.0,93026.0,1,1,1,300.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4618.766297541423,0.06369482165569991,0.04965027301551634,62017.333333333336,10,5,10,10_1,10_2,10_0_0 -3537,1,31.0,1,278.0,7,111,2,64,56,5.0,0.0,0.0,573.00891655575,0.0,764.6805411565563,28351.0,50,50,1,14839,201103537,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2259.8657150664512,0.0,420.0,440.0,0.0,36497.0,1,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1337.6894577123062,0.047183149014578186,0.0366520387350277,17379.52380952381,5,3,5,5_1,5_4,5_0_0 -3538,2,83.0,2,0.0,4,111,4,77,74,7.0,0.0,0.0,1077.8024859024822,0.0,347.58206416207105,17718.0,70,71,1,1484,201103538,,,250.0,,0.0,1.0,3.0,0.0,2.0,1.5,4573.627173179326,0.0,790.0,200.0,0.0,33914.0,5,5,1,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1425.3845500645532,0.08044838864795988,0.042029384621824414,22609.333333333332,7,4,7,7_1,7_4,7_0_1 -3539,2,55.0,3,0.0,2,111,2,54,52,9.0,0.0,0.0,682.1534720901786,0.0,2954.447545377604,43651.0,50,60,1,14841,201103539,,,,,2.0,1.0,4.0,0.0,2.0,1.5,1523.8692669470988,0.0,500.0,1700.0,0.0,53029.0,1,1,1,90.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3636.6010174677826,0.08331082947624986,0.0685775899501741,35352.666666666664,9,5,9,9_1,9_2,9_0_1 -3540,2,44.0,2,0.0,8,400,2,42,34,8.0,0.0,555.170527825376,2674.0416105935,0.0,0.0,57816.0,10,10,1,14842,201103540,,,,,2.0,0.0,5.0,2.0,4.0,2.5,1840.0575408050872,0.0,1960.0,0.0,0.0,63050.0,1,1,2,110.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3229.212138418876,0.05585326100766009,0.05121668736588225,25220.0,8,4,8,8_1,8_0,8_0_0 -3541,2,35.0,2,0.0,1,111,2,0,35,9.0,0.0,0.0,218.28911106885715,0.0,842.8865055930223,25200.0,0,31,2,14844,201103541,,,,700.0,1.0,0.0,2.0,0.0,1.0,1.0,2989.7560358906926,0.0,160.0,485.0,0.0,29002.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1061.1756166618795,0.04211014351832855,0.03658973921322252,29002.0,8,4,8,8_0,8_4,8_1_0 -3542,2,43.0,1,0.0,5,111,2,37,37,10.0,0.0,0.0,2865.0445827787503,0.0,0.0,65156.0,10,10,1,14848,201103542,,,350.0,,3.0,0.0,7.0,2.0,4.0,2.3,2359.8320530391443,0.0,2100.0,0.0,0.0,102586.0,1,1,1,150.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2865.0445827787503,0.043972075983466606,0.027928222006694387,44602.608695652176,10,5,10,10_1,10_4,10_0_0 -3543,2,59.0,2,0.0,99,112,5,75,54,10.0,0.0,832.755791738064,1428.429370556834,100.7987986070006,0.0,34841.0,60,60,1,14849,201103543,,,264.0,,1.0,3.0,5.0,0.0,2.0,1.5,2248.433896132066,0.0,1047.0,0.0,0.0,67150.0,5,1,2,106.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2361.9839609018986,0.06779323098940612,0.03517474253018464,44766.666666666664,10,5,10,10_1,10_0,10_0_0 -3544,2,71.0,2,0.0,5,111,4,75,74,10.0,0.0,0.0,2598.094334347627,0.0,1337.612734441603,137258.0,60,12,1,14852,201103544,,,540.0,,0.0,1.0,4.0,0.0,2.0,1.5,1594.2501541390147,1244.0,1430.0,0.0,0.0,57972.0,5,5,1,99.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3935.70706878923,0.028673790007061373,0.06788979281013645,38648.0,10,5,10,10_1,10_3,10_0_0 -3545,1,40.0,5,390.0,8,111,2,56,22,1.0,0.0,0.0,409.2920832541072,0.0,1529.3610823131125,25451.0,50,60,1,14853,201103545,,,610.0,410.0,2.0,0.0,6.0,3.0,5.0,2.6,3368.263090249974,0.0,300.0,880.0,0.0,21595.0,4,1,3,90.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1938.6531655672197,0.07617198403077363,0.08977324221195739,8305.76923076923,1,1,1_1,1_1_1,1_3_1,1_0_0 -3546,2,48.0,2,0.0,1,112,4,21,67,6.0,0.0,0.0,1364.3069441803573,222.45252106372547,0.0,37000.0,60,60,1,14854,201103546,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2183.745155654,0.0,1000.0,0.0,0.0,28936.0,1,1,1,70.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1586.7594652440828,0.042885390952542776,0.054836862912775876,19290.666666666668,6,3,6,6_1,6_1,6_1_0 -3547,2,44.0,3,0.0,2,111,2,42,31,1.0,0.0,0.0,955.0148609262501,0.0,1737.9103208103552,26380.0,20,60,1,14855,201103547,,,,,2.0,0.0,3.0,1.0,3.0,2.0,1637.4154141379247,0.0,700.0,1000.0,0.0,16819.0,1,1,1,65.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2692.9251817366053,0.10208207663899187,0.16011208643418784,8409.5,1,1,1_0,1_1_0,1_2_0,1_0_1 -3548,2,47.0,4,0.0,4,111,2,31,34,8.0,3141.1828980949867,0.0,1135.1033775580572,0.0,0.0,28763.0,42,41,1,14856,201103548,,,280.0,,2.0,2.0,5.0,0.0,2.0,1.5,3045.44782376385,0.0,832.0,0.0,0.0,38400.0,1,1,2,80.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4276.286275653044,0.14867316606936146,0.11136162176179802,25600.0,8,4,8,8_1,8_4,8_0_1 -3549,1,75.0,4,82.0,1,111,4,0,78,3.0,0.0,0.0,458.40713324460006,0.0,149.46028758969055,9847.0,0,71,1,14857,201103549,,,,,0.0,5.0,2.0,0.0,1.0,1.0,3775.1642400653877,0.0,336.0,86.0,0.0,12434.0,0,5,3,40.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,607.8674208342907,0.06173122990091304,0.04888751977113485,12434.0,2,1,2_1,2_1_1,2_2_1,2_1_0 -3550,2,35.0,1,0.0,1,111,2,34,38,9.0,0.0,0.0,286.504458277875,0.0,2243.6422241661685,61493.0,20,10,1,14859,201103550,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1789.136616790752,0.0,210.0,1291.0,0.0,65479.0,1,1,3,90.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2530.1466824440436,0.04114527966506828,0.0386405822087088,36377.22222222222,9,5,9,9_1,9_3,9_1_0 -3551,2,71.0,3,0.0,1,212,6,71,75,7.0,2949.221720989182,0.0,1085.9883275675643,180.74267336427695,0.0,33999.0,71,41,1,14863,201103551,,,250.0,,0.0,2.0,5.0,0.0,2.0,1.5,1878.7257364135858,0.0,796.0,0.0,0.0,34447.0,5,5,1,130.0,1,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4215.952721921023,0.12400225659345931,0.12238954689584065,22964.666666666668,7,4,7,7_1,7_0,7_1_0 -3552,2,82.0,2,0.0,3,111,1,0,77,8.0,0.0,0.0,466.5929749096822,121.65372245672486,0.0,37000.0,0,71,2,14864,201103552,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3491.084792030304,0.0,342.0,0.0,0.0,38618.0,0,5,1,45.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,588.246697366407,0.01589855938828127,0.01523244853090287,25745.333333333332,8,4,8,8_0,8_3,8_0_1 -3553,2,76.0,3,0.0,5,111,1,0,78,1.0,0.0,0.0,143.5766652337955,0.0,296.7693848118026,15877.0,0,70,2,14866,201103553,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3582.001524112882,276.0,0.0,0.0,0.0,8998.0,0,5,3,35.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,440.3460500455981,0.027734839708105943,0.048938214052633704,8998.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -3554,1,45.0,3,304.0,5,111,2,85,46,6.0,0.0,0.0,523.8938665652572,0.0,2782.394423617379,22416.0,71,50,2,14868,201103554,,,360.0,8.0,1.0,0.0,3.0,0.0,2.0,1.5,3377.4887192591086,0.0,384.0,1601.0,0.0,31252.0,7,1,3,65.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3306.288290182636,0.1474968009539006,0.10579445444076015,20834.666666666668,6,3,6,6_0,6_2,6_0_0 -3555,1,22.0,3,272.0,5,111,2,84,55,5.0,0.0,0.0,1028.6874359119893,0.0,0.0,27094.0,20,20,2,1487,201103555,,,,259.0,1.0,0.0,2.0,0.0,2.0,1.5,2533.3871664957146,0.0,754.0,0.0,0.0,26026.0,3,4,3,37.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1028.6874359119893,0.03796735203041224,0.039525376005225134,17350.666666666668,5,3,5,5_0,5_3,5_0_0 -3556,2,90.0,3,0.0,1,221,2,71,71,6.0,1983.0700114236026,0.0,777.6549581828036,194.64595593075978,0.0,17403.0,71,70,1,14870,201103556,,,386.0,,0.0,3.0,6.0,0.0,2.0,1.5,2304.811219382247,0.0,570.0,0.0,0.0,29840.0,5,5,1,120.0,1,3.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2955.370925537166,0.16981962452089674,0.09904058061451629,19893.333333333332,6,3,6,6_1,6_1,6_1_0 -3557,1,62.0,3,280.0,3,111,1,78,86,4.0,0.0,0.0,47.7507430463125,0.0,34.7582064162071,7584.0,70,70,2,14871,201103557,,,,50.0,0.0,6.0,3.0,0.0,2.0,1.5,2619.996765726117,0.0,35.0,20.0,0.0,23000.0,5,5,3,60.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,82.50894946251961,0.010879344602125475,0.0035873456288052,15333.333333333334,4,2,4_1,4_0_1,4_2_1,4_0_1 -3558,2,75.0,1,0.0,1,300,2,0,74,10.0,0.0,0.0,1994.6167523916822,1856.0882226254594,0.0,46086.0,0,12,1,14872,201103558,,,197.0,,0.0,2.0,7.0,0.0,1.0,1.0,1664.635483812928,0.0,1462.0,0.0,0.0,39344.0,0,5,1,96.0,0,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3850.704975017142,0.08355476663232092,0.0978727372666008,39344.0,10,5,10,10_1,10_1,10_1_0 -3559,2,73.0,3,0.0,5,111,2,86,75,8.0,0.0,0.0,532.0797082303393,0.0,1336.4530367031632,23390.0,70,41,1,14875,201103559,,,450.0,,0.0,1.0,4.0,0.0,2.0,1.5,1362.791333973759,0.0,390.0,769.0,0.0,37446.0,6,5,1,95.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1868.5327449335025,0.07988596600827287,0.04989939499368431,24964.0,8,4,8,8_1,8_2,8_0_0 -3560,2,69.0,2,0.0,4,111,4,75,75,8.0,0.0,0.0,606.3622714471594,0.0,802.1375401072634,37732.0,70,50,1,14876,201103560,,,70.0,,0.0,2.0,7.0,0.0,2.0,1.5,1213.9176904384435,746.0,160.0,0.0,0.0,40374.0,5,5,1,125.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1408.4998115544226,0.037329052569554294,0.03488630830619762,26916.0,8,4,8,8_1,8_2,8_0_1 -3561,1,41.0,4,445.0,9,111,2,43,42,5.0,0.0,0.0,964.5650095355126,0.0,1383.3766153650429,37598.0,71,50,1,14878,201103561,,,,18.0,4.0,0.0,5.0,3.0,5.0,2.8,2499.21569171711,0.0,707.0,796.0,0.0,52327.0,4,1,3,118.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2347.9416249005553,0.06244857771425489,0.04487055678522666,18688.214285714286,5,3,5,5_1,5_2,5_0_0 -3562,2,55.0,2,0.0,1,111,2,46,46,10.0,0.0,0.0,679.4248582018179,0.0,2427.8607181720663,43934.0,41,60,1,14879,201103562,,,367.0,,2.0,3.0,6.0,0.0,2.0,1.5,1973.9999025184422,0.0,498.0,1397.0,0.0,56140.0,1,1,3,115.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3107.2855763738844,0.07072621605985989,0.05534887025959894,37426.666666666664,9,5,9,9_1,9_2,9_1_0 -3563,2,77.0,3,0.0,9,120,4,0,74,9.0,0.0,0.0,3700.356595580454,0.0,1560.1897730504547,30326.0,0,33,1,1488,201103563,,,364.0,,0.0,3.0,8.0,0.0,1.0,1.0,3241.8440018871734,1451.0,2159.0,0.0,0.0,34781.0,0,5,1,166.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5260.546368630909,0.17346654252558558,0.15124770330441645,34781.0,9,5,9,9_1,9_0,9_0_0 -3564,1,26.0,3,212.0,7,111,4,0,42,1.0,0.0,0.0,354.7198054868929,0.0,0.0,11164.0,0,20,1,14880,201103564,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2610.1410207327845,0.0,260.0,0.0,0.0,8245.0,0,3,3,30.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,354.7198054868929,0.03177354044131968,0.04302241424947154,8245.0,1,1,1_1,1_1_1,1_3_1,1_0_0 -3565,2,56.0,1,0.0,6,111,4,37,22,9.0,0.0,0.0,4955.162821263058,0.0,0.0,113542.0,20,50,1,14881,201103565,,,2222.0,,2.0,2.0,6.0,0.0,2.0,1.5,2100.6264303828953,0.0,3632.0,0.0,0.0,54488.0,1,1,1,190.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4955.162821263058,0.043641672872268035,0.09094044232240232,36325.333333333336,9,5,9,9_1,9_4,9_0_0 -3566,2,34.0,1,0.0,7,111,4,0,38,9.0,0.0,0.0,398.37762770066433,0.0,0.0,26423.0,0,10,2,14882,201103566,,,,415.0,1.0,0.0,2.0,0.0,1.0,1.0,3403.474423663689,0.0,292.0,0.0,0.0,32377.0,0,1,3,31.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,398.37762770066433,0.015076926454250628,0.012304340355828653,32377.0,9,5,9,9_0,9_3,9_0_0 -3567,2,36.0,3,0.0,8,112,2,45,42,8.0,2221.038412794435,0.0,654.8673332065715,0.0,0.0,47715.0,20,10,1,14883,201103567,,,600.0,,2.0,0.0,6.0,3.0,5.0,2.4,1125.4674903441824,0.0,480.0,0.0,0.0,61497.0,1,1,2,140.0,10,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2875.9057460010063,0.06027257143458045,0.046764976275281825,25623.75,8,4,8,8_1,8_0,8_0_0 -3568,2,43.0,3,0.0,4,111,2,0,42,5.0,0.0,0.0,2332.964874548411,0.0,0.0,53444.0,0,20,1,14885,201103568,,,850.0,,1.0,0.0,5.0,2.0,3.0,1.8,1396.6717011592282,0.0,1710.0,0.0,0.0,33406.0,0,1,1,140.0,7,6.0,2,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2332.964874548411,0.04365251243448116,0.06983670222560052,18558.888888888887,5,3,5,5_1,5_2,5_0_1 -3569,1,60.0,4,247.0,1,111,2,0,77,2.0,0.0,0.0,457.26046645110955,0.0,945.1459755419362,12747.0,0,71,2,14886,201103569,,,178.0,,0.0,5.0,2.0,0.0,1.0,1.0,5678.921270176356,879.0,0.0,0.0,0.0,10236.0,0,5,3,50.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1402.4064419930457,0.11001854883447444,0.13700727256672976,10236.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -3570,2,74.0,2,0.0,6,112,4,0,75,5.0,0.0,0.0,886.7995137172322,121.65372245672486,0.0,20105.0,0,33,1,14887,201103570,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3435.418924806822,0.0,650.0,0.0,0.0,17566.0,0,5,1,95.0,8,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1008.4532361739571,0.050159325350607166,0.0574093838195353,17566.0,5,3,5,5_1,5_0,5_0_0 -3571,2,59.0,2,0.0,4,112,2,46,38,9.0,0.0,0.0,1364.3069441803573,0.0,2433.074449134497,36531.0,20,12,1,14889,201103571,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1608.8816729972707,0.0,1000.0,1400.0,0.0,62850.0,1,1,2,150.0,10,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3797.3813933148544,0.10394956046412238,0.06041975168360946,29928.571428571428,9,5,9,9_1,9_1,9_0_1 -3572,2,39.0,3,0.0,4,120,4,52,43,6.0,0.0,0.0,2330.23626066005,0.0,0.0,38369.0,33,20,1,1489,201103572,,,250.0,,2.0,0.0,6.0,2.0,4.0,2.1,1155.8040185347754,0.0,1708.0,0.0,0.0,41595.0,1,1,2,96.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2330.23626066005,0.06073226460580286,0.05602202814424931,19807.142857142855,6,3,6,6_1,6_1,6_0_1 -3573,2,49.0,3,0.0,5,300,5,64,63,4.0,0.0,666.2046333904511,1337.02080529675,140.77073598563877,0.0,23458.0,50,50,1,14892,201103573,,,,,3.0,0.0,4.0,2.0,4.0,2.3,1423.3864742803617,0.0,980.0,0.0,0.0,34710.0,1,1,1,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2143.99617467284,0.0913972280106079,0.06176883245960357,15091.304347826088,4,2,4_0,4_1_0,4_0_0,4_0_0 -3574,2,59.0,3,0.0,8,111,2,0,55,8.0,0.0,0.0,313.79059716148214,0.0,375.3886292950367,17229.0,0,50,2,14893,201103574,,,,581.0,1.0,0.0,3.0,0.0,1.0,1.0,2522.920842332218,0.0,230.0,216.0,0.0,25729.0,0,1,3,68.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,689.1792264565188,0.040001115935719936,0.026786086768102874,25729.0,8,4,8,8_0,8_3,8_0_0 -3575,1,27.0,3,135.0,5,111,1,81,56,5.0,0.0,0.0,356.08411243107327,0.0,0.0,15456.0,20,43,2,14894,201103575,,,,249.0,2.0,0.0,2.0,0.0,2.0,1.5,2710.8521529740624,0.0,261.0,0.0,0.0,26047.0,4,1,3,50.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,356.08411243107327,0.023038568350871716,0.013670830131342314,17364.666666666668,5,3,5,5_0,5_2,5_0_0 -3576,2,58.0,2,0.0,1,221,1,0,43,6.0,0.0,0.0,376.5487165937786,0.0,938.4715732375919,17319.0,0,70,2,14895,201103576,540.0,540.0,,222.0,1.0,0.0,4.0,0.0,1.0,1.0,4644.884552202633,0.0,276.0,540.0,0.0,20667.0,0,1,3,84.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1315.0202898313705,0.07592934290844566,0.0636289877501026,20667.0,6,3,6,6_0,6_1,6_1_0 -3577,2,40.0,1,0.0,8,112,6,52,38,9.0,0.0,0.0,834.9558498383786,0.0,1167.8757355845587,55647.0,50,31,1,14898,201103577,,,,,2.0,0.0,5.0,1.0,3.0,2.0,3113.320651388561,0.0,612.0,672.0,0.0,67984.0,1,1,2,110.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2002.8315854229372,0.0359917261563595,0.029460337512104865,33992.0,9,5,9,9_1,9_1,9_0_0 -3578,2,51.0,5,0.0,8,111,2,0,54,8.0,0.0,111.0341055650752,436.5782221377143,0.0,922.8303803502986,21940.0,0,41,1,149,201103578,,,349.0,,2.0,2.0,6.0,1.0,2.0,1.5,2180.182886675799,0.0,320.0,531.0,0.0,40388.0,0,1,2,120.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1470.4427080530882,0.06702108970159928,0.036407910964967025,26925.333333333332,8,4,8,8_1,8_2,8_0_0 -3579,2,29.0,3,0.0,1,111,4,0,42,6.0,0.0,0.0,654.8673332065715,0.0,0.0,16371.0,0,20,2,1490,201103579,,,1006.0,,1.0,0.0,2.0,0.0,1.0,1.0,3655.572941479346,0.0,480.0,0.0,0.0,21543.0,0,1,3,45.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,654.8673332065715,0.04000166961129873,0.030398149431674862,21543.0,6,3,6,6_0,6_3,6_1_0 -3580,1,72.0,3,10.0,9,400,6,77,77,3.0,0.0,0.0,1634.439719128068,417.0984769944853,0.0,37627.0,70,50,1,14901,201103580,,,,,1.0,5.0,5.0,1.0,3.0,2.0,3499.3693189867427,0.0,1198.0,0.0,0.0,27980.0,5,5,3,87.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2051.538196122553,0.05452303388849903,0.07332159385713198,13990.0,3,2,3_1,3_1_1,3_1_1,3_0_0 -3581,2,81.0,3,0.0,4,111,2,71,71,6.0,2693.802303517822,0.0,889.5281276055929,0.0,0.0,29553.0,71,70,1,14902,201103581,,,,,0.0,3.0,5.0,0.0,2.0,1.5,3611.7358126625436,0.0,652.0,0.0,0.0,31009.0,5,5,1,116.0,4,3.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3583.330431123415,0.12125098741662149,0.11555775520408318,20672.666666666668,6,3,6,6_1,6_1,6_0_1 -3582,2,48.0,2,0.0,8,111,2,62,65,7.0,0.0,0.0,744.9115915224751,0.0,1595.4016745039062,33995.0,50,50,1,14904,201103582,,,416.0,,2.0,0.0,4.0,1.0,3.0,2.0,1533.3887070412227,0.0,546.0,918.0,0.0,46450.0,1,1,1,103.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2340.3132660263814,0.0688428670694626,0.050383493348253636,23225.0,7,4,7,7_1,7_3,7_0_0 -3583,2,65.0,2,0.0,4,112,2,54,74,7.0,0.0,1040.94473967258,1057.4953067634158,0.0,211.8245246663953,47649.0,50,50,1,14905,201103583,,,156.0,,1.0,2.0,5.0,0.0,2.0,1.5,1223.4006336649838,197.0,700.0,0.0,0.0,34263.0,5,5,1,99.0,8,0.0,3,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2310.2645711023915,0.04848505889110771,0.06742738730124016,22842.0,7,4,7,7_1,7_0,7_0_1 -3584,2,68.0,1,0.0,1,111,2,77,74,10.0,0.0,0.0,1398.6048492135997,0.0,2809.958664129226,107264.0,43,12,2,14906,201103584,,,154.0,,0.0,3.0,4.0,0.0,2.0,1.5,2489.6523303863023,1928.0,290.0,424.0,0.0,76636.0,5,5,1,98.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4208.563513342826,0.03923556378041865,0.054916273205058014,51090.666666666664,10,5,10,10_0,10_3,10_1_0 -3585,2,43.0,2,0.0,1,111,2,0,54,5.0,0.0,0.0,480.2754680784347,0.0,782.0094247991569,27120.0,0,10,2,14908,201103585,,,260.0,,1.0,0.0,3.0,0.0,1.0,1.0,2549.9848311153964,84.0,320.0,398.0,0.0,17110.0,0,1,1,98.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1262.2848928775916,0.04654442820345102,0.07377468690108659,17110.0,5,3,5,5_0,5_3,5_1_0 -3586,2,43.0,3,0.0,1,111,2,85,38,3.0,3648.848821019429,0.0,843.1416915034608,130.34327406077665,0.0,48109.0,50,31,1,14909,201103586,,,343.0,,1.0,0.0,7.0,3.0,5.0,2.8,1512.9052902678816,0.0,618.0,0.0,0.0,38718.0,6,1,2,138.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4622.333786583667,0.0960804378927782,0.11938462179305921,13827.857142857143,3,2,3_0,3_1_0,3_3_0,3_1_0 -3587,2,41.0,4,0.0,4,111,1,85,85,1.0,0.0,0.0,409.2920832541072,0.0,260.6865481215533,19233.0,71,41,2,1491,201103587,,,,563.0,0.0,0.0,4.0,1.0,4.0,2.3,3056.768380737422,0.0,300.0,150.0,0.0,8360.0,7,6,3,75.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,669.9786313756605,0.034834847989167604,0.08014098461431346,3634.7826086956525,1,1,1_0,1_0_0,1_4_0,1_0_1 -3588,0,31.0,2,0.0,1,111,2,0,65,7.0,0.0,0.0,0.0,0.0,0.0,7677.0,0,50,1,14911,201103588,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2411.8203223816554,0.0,0.0,0.0,0.0,23531.0,0,1,5,30.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0.0,0.0,0.0,23531.0,7,4,7,7_1,7_4,7_1_0 -3589,1,43.0,3,123.0,7,111,2,54,64,3.0,0.0,0.0,1227.8762497623215,201.5975972140012,0.0,29261.0,43,50,1,14912,201103589,,,100.0,,2.0,0.0,5.0,2.0,4.0,2.3,2099.6374603524137,0.0,900.0,0.0,0.0,28596.0,1,1,1,130.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1429.4738469763229,0.04885252886013201,0.04998859445294177,12433.04347826087,2,1,2_1,2_1_1,2_2_1,2_0_0 -3590,2,58.0,4,0.0,5,112,6,0,77,1.0,2062.392811880547,0.0,450.22129157951787,79.94387475727635,0.0,19233.0,0,70,1,14913,201103590,,,175.0,,0.0,3.0,4.0,0.0,1.0,1.0,3099.4335991329904,0.0,330.0,0.0,0.0,8933.0,0,5,1,90.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2592.5579782173413,0.13479737837141068,0.2902225431789255,8933.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -3591,2,53.0,3,0.0,99,111,2,0,42,8.0,0.0,0.0,712.1682248621465,0.0,0.0,19921.0,0,31,2,14916,201103591,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2306.825841829541,0.0,522.0,0.0,0.0,26650.0,0,1,3,88.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,712.1682248621465,0.03574962225099877,0.026723010313776604,26650.0,8,4,8,8_0,8_3,8_0_0 -3592,2,56.0,3,0.0,1,111,4,0,37,10.0,0.0,0.0,1338.3851122409305,0.0,0.0,54272.0,0,12,2,14917,201103592,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3179.0059972178638,0.0,981.0,0.0,0.0,58962.0,0,1,2,49.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1338.3851122409305,0.024660692663637428,0.022699113195633298,39308.0,10,5,10,10_0,10_4,10_1_0 -3593,2,46.0,2,0.0,9,111,2,56,21,9.0,0.0,416.377895869032,1024.5945150794482,0.0,1998.5968689319086,38217.0,70,70,1,14918,201103593,,,500.0,,2.0,0.0,6.0,2.0,4.0,2.5,2416.8431324186326,0.0,751.0,1150.0,0.0,74418.0,1,1,1,160.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3439.569279880389,0.09000102781171701,0.046219587732543053,29767.2,9,5,9,9_1,9_4,9_0_0 -3594,2,32.0,3,0.0,7,111,4,56,38,8.0,63.458240365555284,1040.94473967258,1637.1683330164287,0.0,0.0,47334.0,50,50,1,14921,201103594,,,,,2.0,0.0,4.0,3.0,5.0,2.4,1624.6622620329188,0.0,1200.0,0.0,0.0,64824.0,1,1,1,80.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2741.5713130545637,0.05791970492784391,0.04229253537354319,27010.0,8,4,8,8_1,8_4,8_0_0 -3595,2,41.0,2,0.0,1,111,2,22,63,5.0,0.0,0.0,1205.3157005315368,0.0,2491.3574804671975,38304.0,44,31,1,14922,201103595,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2838.284154359604,2317.0,0.0,0.0,0.0,38428.0,1,1,2,107.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3696.673180998734,0.09650880276208057,0.09619738682728048,18299.04761904762,5,3,5,5_1,5_3,5_1_0 -3596,2,55.0,3,0.0,4,111,1,0,46,8.0,0.0,0.0,559.602659359797,52.13730962431066,691.3866464999603,23989.0,0,50,2,14923,201103596,,,122.0,,1.0,1.0,3.0,0.0,1.0,1.0,3631.176922309114,643.0,165.0,0.0,0.0,27284.0,0,1,2,68.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1303.126615484068,0.054321839821754474,0.04776156778639745,27284.0,8,4,8,8_0,8_3,8_0_1 -3597,2,68.0,2,0.0,1,112,4,0,77,3.0,0.0,0.0,2712.2422050305504,0.0,0.0,24152.0,0,50,1,14926,201103597,,,221.0,,0.0,5.0,3.0,0.0,1.0,1.0,2920.232348028431,0.0,1988.0,0.0,0.0,12449.0,0,5,1,80.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2712.2422050305504,0.11229886572667068,0.21786827898068523,12449.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -3598,2,90.0,3,0.0,2,111,1,0,78,1.0,0.0,0.0,184.18143746434822,0.0,0.0,10335.0,0,71,2,14927,201103598,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3070.1538357665495,0.0,135.0,0.0,0.0,8990.0,0,5,1,40.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,184.18143746434822,0.017821135700469108,0.020487367904821828,8990.0,1,1,1_0,1_0_0,1_2_0,1_0_1 -3599,2,83.0,2,0.0,1,111,2,78,78,8.0,0.0,0.0,1507.5549849548524,0.0,3116.0785405239267,17868.0,71,70,1,14928,201103599,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2712.3167913786306,2898.0,0.0,0.0,0.0,39674.0,5,5,1,83.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4623.633525478779,0.2587661476090653,0.1165406443887377,26449.333333333332,8,4,8,8_1,8_2,8_1_0 -3600,2,82.0,2,0.0,2,111,2,77,77,3.0,0.0,0.0,500.70064851419113,0.0,3164.734694195657,29205.0,50,71,1,14929,201103600,,,502.0,,0.0,1.0,6.0,0.0,2.0,1.5,2098.3347787426756,0.0,367.0,1821.0,0.0,21487.0,5,5,1,140.0,7,6.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3665.435342709848,0.12550711668241218,0.17058851131892996,14324.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_1 -3601,1,57.0,4,352.0,2,111,2,85,62,1.0,0.0,0.0,455.69985052465523,0.0,941.9202213591993,13966.0,71,50,2,14930,201103601,,,,298.0,1.0,0.0,2.0,0.0,3.0,2.0,2405.590086172648,876.0,0.0,0.0,0.0,13714.0,7,4,3,40.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1397.6200718838545,0.10007303965944826,0.10191192007319926,6857.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -3602,0,35.0,2,0.0,8,111,5,85,68,3.0,0.0,0.0,0.0,0.0,0.0,50333.0,41,50,1,14933,201103602,,,,,1.0,0.0,4.0,3.0,5.0,2.4,1315.0680773655342,0.0,0.0,0.0,0.0,32036.0,6,1,5,100.0,6,5.0,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,13348.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0 -3603,2,56.0,2,0.0,5,120,2,52,37,10.0,0.0,0.0,150.0737638598393,0.0,0.0,30958.0,41,10,1,14934,201103603,,,,,2.0,2.0,5.0,1.0,3.0,1.8,2250.7186619267623,0.0,110.0,0.0,0.0,80870.0,1,1,2,120.0,0,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,150.0737638598393,0.004847656950056182,0.0018557408663266884,44927.777777777774,10,5,10,10_1,10_1,10_0_0 -3604,2,42.0,3,0.0,99,221,1,55,63,5.0,0.0,0.0,668.510402648375,100.7987986070006,0.0,18118.0,50,50,2,14935,201103604,,,,268.0,2.0,0.0,3.0,1.0,3.0,1.8,3687.8663965844007,0.0,490.0,0.0,0.0,30595.0,1,1,3,75.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,769.3092012553757,0.042461044334660324,0.025144932219492586,16997.222222222223,4,2,4_0,4_0_0,4_1_0,4_0_0 -3605,2,49.0,1,0.0,7,111,4,0,37,10.0,0.0,0.0,1364.3069441803573,0.0,0.0,63018.0,0,12,2,14937,201103605,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2726.368253384306,0.0,1000.0,0.0,0.0,78767.0,0,1,1,75.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1364.3069441803573,0.021649480214864916,0.017320793532575283,78767.0,10,5,10,10_0,10_4,10_0_0 -3606,2,49.0,2,0.0,1,111,2,21,22,3.0,0.0,0.0,608.4808971044394,0.0,2038.5688063105467,30895.0,50,60,1,14938,201103606,,,700.0,,2.0,2.0,5.0,1.0,3.0,2.0,1971.2133438857866,0.0,446.0,1173.0,0.0,27420.0,1,1,3,80.0,4,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2647.049703414986,0.08567890284560564,0.09653718830835106,13710.0,3,2,3_0,3_1_0,3_2_0,3_1_0 -3607,2,75.0,4,0.0,99,111,2,85,78,1.0,0.0,0.0,914.0856526008394,0.0,1042.7461924862132,7307.0,71,71,2,14939,201103607,,,230.0,172.0,0.0,7.0,2.0,0.0,2.0,1.5,3679.4331849180476,0.0,670.0,600.0,0.0,5990.0,6,5,3,50.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1956.8318450870524,0.267802360077604,0.32668311270234596,3993.3333333333335,1,1,1_0,1_0_0,1_3_0,1_0_0 -3608,2,40.0,3,0.0,3,111,2,0,47,6.0,0.0,0.0,623.4882734904232,0.0,1445.9413869142156,22676.0,0,43,2,1494,201103608,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3428.728745088288,0.0,457.0,832.0,0.0,20297.0,0,1,2,75.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2069.429660404639,0.09126078939868755,0.10195741540151938,20297.0,6,3,6,6_0,6_2,6_0_1 -3609,2,61.0,1,0.0,1,221,2,74,31,10.0,47.593680274166466,0.0,1637.1683330164287,0.0,2780.6565132965684,29821.0,10,10,1,14942,201103609,,,300.0,,1.0,4.0,8.0,0.0,2.0,1.5,1517.2003379508367,0.0,1200.0,1600.0,0.0,95770.0,5,1,1,138.0,1,3.0,3,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4465.418526587164,0.14974073728537488,0.04662648560704984,63846.666666666664,10,5,10,10_1,10_1,10_1_0 -3610,2,49.0,3,0.0,7,111,2,62,54,5.0,0.0,0.0,775.1059101389684,0.0,1602.1245774260356,33947.0,50,44,1,14943,201103610,,,,,2.0,0.0,6.0,1.0,3.0,2.0,1787.759307504056,1490.0,0.0,0.0,0.0,37630.0,1,1,2,125.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2377.230487565004,0.0700277045855305,0.06317381045880956,18815.0,5,3,5,5_1,5_3,5_0_0 -3611,2,44.0,2,0.0,8,112,1,56,46,8.0,0.0,0.0,1910.0297218525002,90.37133668213848,0.0,29024.0,71,50,1,14944,201103611,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2435.088151962698,0.0,1400.0,0.0,0.0,53379.0,1,1,2,120.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2000.4010585346387,0.06892230769482631,0.03747543150929464,25418.571428571428,8,4,8,8_1,8_0,8_0_0 -3612,2,49.0,3,0.0,6,111,2,54,43,9.0,1641.9819694587432,624.566843803548,1159.6609025533037,180.74267336427695,0.0,84640.0,50,33,1,14946,201103612,,,362.0,,2.0,1.0,5.0,1.0,3.0,2.0,1027.2194793065983,0.0,850.0,0.0,0.0,60882.0,1,1,2,150.0,6,5.0,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3606.9523891798717,0.042615221989365216,0.05924497206366203,30441.0,9,5,9,9_1,9_2,9_0_0 -3613,2,74.0,3,0.0,3,112,2,0,75,4.0,1570.5914490474934,0.0,457.0428263004197,62.56477154917279,0.0,16289.0,0,33,1,14947,201103613,,,182.0,,0.0,2.0,5.0,0.0,1.0,1.0,2312.5335865812735,0.0,335.0,0.0,0.0,16572.0,0,5,1,100.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2090.1990468970857,0.12831966645571158,0.12612835185234647,16572.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -3614,1,63.0,3,22.0,2,111,2,0,78,3.0,0.0,0.0,3901.9178603558216,0.0,1286.0536373996629,25388.0,0,70,1,14948,201103614,,,140.0,,0.0,3.0,3.0,0.0,1.0,1.0,1858.624901606732,0.0,2860.0,740.0,0.0,13068.0,0,5,3,68.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,5187.971497755485,0.2043473884416057,0.39699812501955045,13068.0,3,2,3_1,3_1_1,3_3_1,3_0_1 -3615,2,40.0,1,0.0,7,111,6,45,35,9.0,190.37472109666587,0.0,1732.6698191090536,0.0,0.0,55477.0,20,12,1,14949,201103615,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2093.8142184859917,0.0,1270.0,0.0,0.0,47517.0,1,1,2,62.0,9,7.0,3,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1923.0445402057194,0.03466381636003604,0.0404706639772233,31678.0,9,5,9,9_1,9_3,9_0_0 -3616,2,68.0,1,0.0,5,111,2,0,74,9.0,0.0,0.0,49.115049990492864,0.0,79.94387475727635,21430.0,0,20,2,1495,201103616,,,190.0,,0.0,1.0,5.0,0.0,1.0,1.0,1264.3017195636007,0.0,36.0,46.0,0.0,31400.0,0,5,1,98.0,5,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,129.0589247477692,0.006022348331673784,0.00411015683910093,31400.0,9,5,9,9_0,9_2,9_0_0 -3617,2,47.0,3,0.0,6,400,2,52,56,2.0,0.0,0.0,915.4499595450197,0.0,1955.1491109116496,31025.0,50,50,1,14950,201103617,,,340.0,,2.0,0.0,5.0,1.0,3.0,2.0,1002.9580037765018,0.0,671.0,1125.0,0.0,18610.0,1,1,1,60.0,0,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2870.5990704566693,0.09252535279473552,0.15425035306054108,9305.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -3618,1,36.0,5,380.0,2,112,2,0,56,2.0,0.0,0.0,1637.1683330164287,104.27461924862132,0.0,9163.0,0,70,2,14953,201103618,,,,,1.0,0.0,3.0,1.0,2.0,1.3,5412.169595769078,0.0,1200.0,0.0,0.0,14107.0,0,4,3,51.0,9,3.0,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1741.44295226505,0.1900516154387264,0.12344530745481322,10851.538461538461,2,1,2_1,2_0_1,2_1_1,2_0_1 -3619,2,42.0,3,0.0,2,111,1,56,21,1.0,0.0,0.0,341.0767360450893,0.0,260.6865481215533,30142.0,20,50,2,14954,201103619,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2869.6234256731486,0.0,250.0,150.0,0.0,15560.0,1,1,2,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,601.7632841666426,0.01996427855373375,0.038673732915594,7409.523809523809,1,1,1_0,1_0_0,1_4_0,1_0_1 -3620,2,80.0,3,0.0,1,120,4,0,71,1.0,0.0,0.0,163.71683330164288,208.54923849724264,0.0,9801.0,0,70,1,14955,201103620,,,,,0.0,6.0,2.0,0.0,1.0,1.0,2453.823201148838,0.0,120.0,0.0,0.0,8900.0,0,5,1,70.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,372.2660717988855,0.03798245809599893,0.041827648516728703,8900.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -3621,2,77.0,2,0.0,8,221,2,0,86,4.0,0.0,0.0,559.3658471139465,0.0,1296.481099324525,74229.0,0,71,2,14956,201103621,,,280.0,,0.0,2.0,3.0,0.0,1.0,1.0,3957.499050960419,0.0,410.0,746.0,0.0,16307.0,0,5,1,110.0,1,1.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1855.8469464384716,0.025001642840917587,0.11380676681415783,16307.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -3622,2,44.0,3,0.0,1,120,5,0,21,9.0,0.0,416.377895869032,764.011888741,43.44775802025888,0.0,6225.0,0,50,1,14958,201103622,,,,,1.0,1.0,2.0,0.0,1.0,1.0,2960.6081546407763,0.0,560.0,0.0,0.0,33170.0,0,1,1,80.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1223.8375426302907,0.19660040845466517,0.036895916268624984,33170.0,9,5,9,9_1,9_0,9_1_0 -3623,1,49.0,4,225.0,4,111,1,52,68,4.0,71.3905204112497,0.0,218.48622970360182,0.0,451.60558558317774,11105.0,71,50,2,14959,201103623,45.0,45.0,320.0,40.0,2.0,1.0,3.0,0.0,2.0,1.5,2285.6002633029198,420.0,0.0,0.0,0.0,22160.0,1,1,3,60.0,6,5.0,3,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,741.4823356980293,0.06677013378640516,0.033460394210199876,14773.333333333334,3,2,3_1,3_0_1,3_2_1,3_0_1 -3624,2,46.0,2,0.0,8,111,2,0,54,1.0,0.0,0.0,2633.1124022680897,0.0,0.0,39070.0,0,41,1,14961,201103624,,,140.0,,1.0,0.0,4.0,0.0,1.0,1.0,2297.8819954873343,0.0,1930.0,0.0,0.0,8866.0,0,1,2,120.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2633.1124022680897,0.06739473770842308,0.2969898942328096,8866.0,1,1,1_0,1_1_0,1_4_0,1_0_0 -3625,2,64.0,3,0.0,7,111,2,0,75,8.0,0.0,0.0,628.9455012671447,0.0,1763.9789756225105,23451.0,0,33,1,14962,201103625,,,460.0,,0.0,2.0,5.0,0.0,1.0,1.0,2520.205268097841,0.0,461.0,1015.0,0.0,26102.0,0,5,1,104.0,6,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2392.924476889655,0.10203933635621744,0.09167590517545227,26102.0,8,4,8,8_1,8_2,8_0_0 -3626,2,55.0,3,0.0,6,300,5,63,62,8.0,0.0,555.170527825376,955.0148609262501,0.0,1824.805836850873,47112.0,50,70,1,14963,201103626,,,250.0,,2.0,5.0,5.0,1.0,3.0,2.0,846.3527183028312,0.0,700.0,1050.0,0.0,54417.0,1,1,1,110.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3334.991225602499,0.0707885724571765,0.06128583394164506,27208.5,8,4,8,8_1,8_1,8_0_0 -3627,2,29.0,3,0.0,9,112,2,64,38,8.0,0.0,0.0,1227.8762497623215,0.0,0.0,49949.0,31,10,2,14964,201103627,,,,578.0,2.0,0.0,3.0,0.0,2.0,1.5,3316.27160405872,0.0,900.0,0.0,0.0,43039.0,1,1,3,75.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1227.8762497623215,0.024582599246477838,0.02852938613263137,28692.666666666668,8,4,8,8_0,8_1,8_0_0 -3628,2,51.0,3,0.0,7,221,5,47,52,1.0,0.0,388.6193694777632,1493.9161038774912,208.54923849724264,0.0,35118.0,31,42,1,14967,201103628,,,,,2.0,3.0,7.0,2.0,4.0,2.5,2007.7348802655165,0.0,1095.0,0.0,0.0,21510.0,4,1,1,123.0,1,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2091.084711852497,0.0595445273606839,0.09721453797547638,8604.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -3629,2,53.0,2,0.0,1,111,2,46,55,8.0,0.0,0.0,709.4396109737858,0.0,1404.231539214767,16601.0,50,60,1,14969,201103629,,,166.0,,2.0,2.0,4.0,0.0,2.0,1.5,1461.1210010431626,0.0,520.0,808.0,0.0,41759.0,1,1,1,130.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2113.671150188553,0.12732191736573417,0.05061594267555624,27839.333333333332,8,4,8,8_1,8_3,8_1_0 -3630,2,45.0,3,0.0,1,300,2,55,47,4.0,682.1760839297193,346.98157989085996,1825.442691313318,0.0,0.0,33180.0,50,50,1,1497,201103630,,,219.0,,2.0,1.0,5.0,1.0,3.0,2.0,1848.7054159635602,0.0,1338.0,0.0,0.0,33388.0,1,1,3,96.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2854.600355133897,0.08603376597751348,0.0854977942714118,16694.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -3631,2,42.0,2,0.0,5,300,2,42,34,8.0,1522.997768773327,0.0,2259.292299562672,0.0,0.0,57738.0,20,31,1,14971,201103631,,,540.0,,2.0,0.0,6.0,2.0,4.0,2.1,1617.3557981610152,0.0,1656.0,0.0,0.0,53542.0,1,1,1,128.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3782.2900683359985,0.06550781233045826,0.07064155370243917,25496.190476190473,8,4,8,8_1,8_0,8_0_0 -3632,2,66.0,1,0.0,5,112,4,74,74,10.0,0.0,0.0,2849.616909822105,406.67101506962314,972.0272603980779,71009.0,20,10,1,14972,201103632,,,67.0,,0.0,2.0,5.0,0.0,2.0,1.5,1225.5200519370794,904.0,1744.0,0.0,0.0,76509.0,5,5,1,120.0,8,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4228.315185289806,0.05954618689588371,0.0552655920909933,51006.0,10,5,10,10_1,10_0,10_0_0 -3633,2,71.0,3,0.0,1,300,2,0,71,3.0,2062.392811880547,0.0,1579.8674413608537,0.0,0.0,14616.0,0,70,1,14978,201103633,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1475.484826360855,0.0,1158.0,0.0,0.0,20510.0,0,5,1,133.0,0,0.0,5,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3642.2602532414007,0.2491967879886016,0.17758460522873723,13673.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -3634,1,34.0,3,115.0,99,111,1,85,45,4.0,0.0,0.0,668.510402648375,0.0,590.8895090755208,22333.0,50,12,2,14979,201103634,,,,,1.0,0.0,3.0,3.0,5.0,2.4,2153.259428491899,0.0,490.0,340.0,0.0,36830.0,6,1,3,56.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1259.399911723896,0.056391882493345986,0.03419494737235666,15345.833333333334,4,2,4_1,4_0_1,4_4_1,4_0_0 -3635,2,81.0,3,0.0,1,111,2,0,86,8.0,0.0,0.0,368.36287492869644,0.0,0.0,20841.0,0,71,2,1498,201103635,,,,552.0,0.0,1.0,3.0,0.0,1.0,1.0,2696.3740080177063,0.0,270.0,0.0,0.0,25558.0,0,6,3,78.0,5,4.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,368.36287492869644,0.017674913628362193,0.014412820836086408,25558.0,8,4,8,8_0,8_2,8_1_0 -3636,2,52.0,2,0.0,6,400,2,85,46,10.0,0.0,0.0,1425.7007566684733,93.84715732375918,0.0,17793.0,33,31,1,14980,201103636,,,167.0,,1.0,3.0,5.0,0.0,2.0,1.5,4503.599556952556,0.0,1045.0,0.0,0.0,60512.0,5,1,1,130.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1519.5479139922325,0.0854014451746323,0.025111513650056722,40341.333333333336,10,5,10,10_1,10_0,10_0_0 -3637,2,62.0,3,0.0,7,112,6,77,33,8.0,0.0,208.188947934516,2547.161064784727,112.96417085267309,0.0,41078.0,50,50,1,14981,201103637,,,290.0,,1.0,2.0,5.0,0.0,2.0,1.5,3433.0733757555013,0.0,1867.0,0.0,0.0,40557.0,6,1,2,140.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2868.314183571916,0.06982604273752169,0.07072303630869926,27038.0,8,4,8,8_1,8_0,8_0_0 -3638,2,43.0,2,0.0,8,300,4,56,64,8.0,0.0,0.0,1510.2877872076556,78.20596443646599,0.0,36811.0,50,60,1,14983,201103638,,,117.0,,2.0,2.0,3.0,0.0,2.0,1.5,1436.3565983232468,0.0,1107.0,0.0,0.0,42242.0,1,1,3,70.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1588.4937516441216,0.043152692174733685,0.03760460564471667,28161.333333333332,8,4,8,8_1,8_0,8_0_0 -3639,2,38.0,1,0.0,8,112,2,34,34,9.0,3510.8271482243463,0.0,859.5133748336251,29.544475453776037,0.0,81779.0,20,20,1,14984,201103639,,,387.0,,2.0,0.0,6.0,2.0,4.0,2.1,2684.641728473634,0.0,630.0,0.0,0.0,66927.0,1,1,2,180.0,7,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4399.884998511747,0.053802137449855666,0.06574155420849204,31870.0,9,5,9,9_1,9_0,9_0_0 -3640,2,54.0,2,0.0,5,111,2,54,42,6.0,2379.684013708323,97.1548423694408,1118.731694227893,0.0,0.0,48874.0,50,20,1,14985,201103640,,,,,2.0,1.0,7.0,2.0,4.0,2.3,1278.1920376210592,0.0,820.0,0.0,0.0,47871.0,1,1,2,100.0,8,6.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3595.570550305657,0.07356816610683915,0.07510957678564595,20813.478260869568,6,3,6,6_1,6_2,6_0_0 -3641,2,55.0,1,0.0,8,111,2,75,42,10.0,0.0,0.0,818.5841665082144,0.0,1129.641708526731,46546.0,50,33,2,14986,201103641,,,180.0,,1.0,4.0,3.0,0.0,2.0,1.5,2378.766937910816,0.0,600.0,650.0,0.0,59451.0,5,1,2,78.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1948.2258750349454,0.04185592478483533,0.03277027930623447,39634.0,10,5,10,10_0,10_2,10_0_0 -3642,1,76.0,3,29.0,5,111,2,0,86,3.0,0.0,0.0,927.728722042643,0.0,1546.740185521216,11631.0,0,70,2,14987,201103642,,,180.0,431.0,0.0,3.0,2.0,0.0,1.0,1.0,2873.157176291492,0.0,680.0,890.0,0.0,13727.0,0,5,3,60.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2474.468907563859,0.21274773515294118,0.18026290577430312,13727.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -3643,2,87.0,2,0.0,2,300,2,0,75,9.0,1586.456009138882,0.0,283.7758443895143,43.44775802025888,0.0,17606.0,0,30,1,14988,201103643,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2976.703269258578,0.0,208.0,0.0,0.0,32447.0,0,5,5,70.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1913.6796115486552,0.10869474108534904,0.05897863012138735,32447.0,9,5,9,9_1,9_0,9_0_1 -3644,2,62.0,2,0.0,2,111,2,72,75,10.0,0.0,0.0,538.9012429512411,0.0,1737.9103208103552,26294.0,50,50,1,14989,201103644,,,425.0,,0.0,0.0,2.0,0.0,2.0,1.5,2602.2061198585648,0.0,395.0,1000.0,0.0,70498.0,5,5,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2276.8115637615965,0.08659053638706916,0.032296115687843574,46998.666666666664,10,5,10,10_1,10_4,10_0_1 -3645,2,56.0,1,0.0,5,111,4,78,62,7.0,0.0,0.0,1732.6698191090536,173.79103208103552,0.0,29838.0,41,50,1,1499,201103645,,,,,1.0,3.0,7.0,0.0,2.0,1.5,1935.8935893170722,0.0,1270.0,0.0,0.0,33883.0,6,1,1,130.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1906.4608511900892,0.06389372113379212,0.05626599920875038,22588.666666666668,7,4,7,7_1,7_3,7_0_0 -3646,1,39.0,3,495.0,1,111,4,68,62,3.0,0.0,0.0,1910.0297218525002,625.6477154917279,0.0,35937.0,71,50,1,14990,201103646,,,300.0,,2.0,0.0,4.0,5.0,7.0,3.0,1389.4939884375683,0.0,1400.0,0.0,0.0,42724.0,1,1,2,65.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2535.677437344228,0.0705589625551445,0.059350188122465786,14241.333333333334,3,2,3_1,3_1_1,3_3_1,3_1_0 -3647,2,46.0,4,0.0,5,111,2,0,52,5.0,0.0,0.0,545.7227776721429,0.0,83.41969539889705,13150.0,0,42,2,14991,201103647,,,,286.0,1.0,0.0,2.0,0.0,1.0,1.0,1773.591502001578,0.0,400.0,48.0,0.0,18324.0,0,1,3,56.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,629.14247307104,0.04784353407384334,0.03433434146862257,18324.0,5,3,5,5_0,5_2,5_0_0 -3648,2,32.0,4,0.0,4,111,1,0,54,4.0,0.0,0.0,791.2980276246072,0.0,0.0,29538.0,0,43,2,14992,201103648,,,,,1.0,0.0,4.0,2.0,3.0,1.6,2747.5088592260777,0.0,580.0,0.0,0.0,25099.0,0,1,2,65.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,791.2980276246072,0.0267891538907376,0.0315270738923705,15686.875,4,2,4_0,4_0_0,4_4_0,4_0_1 -3649,2,63.0,2,0.0,1,112,2,77,75,5.0,0.0,0.0,446.1283707469768,2693.760997256051,0.0,21069.0,60,31,1,14993,201103649,,,238.0,,0.0,2.0,4.0,0.0,2.0,1.5,2613.479883754964,0.0,327.0,0.0,0.0,25840.0,5,5,1,100.0,9,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3139.889368003028,0.14902887502980813,0.12151274643974566,17226.666666666668,5,3,5,5_1,5_0,5_1_0 -3650,0,41.0,3,0.0,5,112,2,13,52,6.0,1269.1648073111057,0.0,654.8673332065715,140.77073598563877,0.0,16538.0,50,60,1,14994,201103650,,,130.0,,2.0,0.0,3.0,2.0,4.0,2.3,3273.0547983603437,0.0,480.0,0.0,0.0,49074.0,1,1,5,70.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2064.802876503316,0.12485203026383576,0.04207529193673464,21336.521739130436,6,3,6,6_1,6_0,6_0_0 -3651,2,58.0,3,0.0,8,111,2,85,62,3.0,0.0,0.0,272.86138883607146,0.0,848.1002365554533,20991.0,71,71,2,14995,201103651,,,480.0,450.0,1.0,5.0,3.0,0.0,2.0,1.5,3171.8847852085228,0.0,200.0,488.0,0.0,21589.0,6,1,3,70.0,7,6.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1120.9616253915246,0.053402011595041904,0.0519228137195574,14392.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_0 -3652,2,81.0,3,0.0,1,111,4,0,77,5.0,0.0,0.0,1337.02080529675,86.89551604051776,0.0,13545.0,0,70,2,14996,201103652,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2907.977868332875,0.0,980.0,0.0,0.0,16793.0,0,5,1,48.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1423.9163213372678,0.10512486683922244,0.08479225399495431,16793.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -3653,2,73.0,3,0.0,6,111,4,0,78,4.0,0.0,0.0,2073.746555154143,0.0,0.0,24628.0,0,70,1,14999,201103653,,,,,0.0,2.0,3.0,0.0,1.0,1.0,1902.5693592525874,0.0,1520.0,0.0,0.0,16638.0,0,5,1,100.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2073.746555154143,0.08420279986820461,0.12463917268626898,16638.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -3654,2,66.0,3,0.0,2,111,1,0,75,5.0,0.0,0.0,3820.0594437050004,0.0,1171.3515562261794,16930.0,0,50,1,150,201103654,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2732.1862120454357,0.0,2800.0,674.0,0.0,17810.0,0,5,3,70.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4991.4109999311795,0.29482640283113876,0.2802588994908018,17810.0,5,3,5,5_1,5_2,5_0_1 -3655,1,28.0,3,23.0,3,111,1,43,47,6.0,0.0,0.0,582.5590651650125,0.0,676.0471147952281,31338.0,42,31,2,15002,201103655,,,,372.0,2.0,0.0,3.0,1.0,3.0,1.8,3548.314158089566,0.0,427.0,389.0,0.0,35338.0,1,1,3,66.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1258.6061799602408,0.040162300719900464,0.03561622559172112,19632.222222222223,6,3,6,6_0,6_2,6_0_1 -3656,2,62.0,2,0.0,1,112,2,85,46,6.0,31.729120182777642,1582.2360043023216,1309.734666413143,46.92357866187959,0.0,56887.0,50,60,1,15003,201103656,,,,,3.0,1.0,5.0,0.0,4.0,2.5,1609.3074105585088,0.0,960.0,0.0,0.0,51732.0,7,5,1,124.0,8,0.0,5,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2970.623369560122,0.05221972277603181,0.05742332346632881,20692.8,6,3,6,6_1,6_0,6_1_0 -3657,2,42.0,2,0.0,5,111,2,54,52,8.0,0.0,377.5159589212557,687.6106998669001,0.0,1433.776014668543,24671.0,20,31,1,15005,201103657,,,150.0,,2.0,0.0,5.0,0.0,2.0,1.5,1817.1618135331466,0.0,504.0,825.0,0.0,39654.0,1,1,2,93.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2498.9026734566987,0.1012890711141299,0.06301766967914205,26436.0,8,4,8,8_1,8_2,8_0_0 -3658,0,20.0,2,0.0,6,111,6,0,84,1.0,0.0,0.0,0.0,0.0,0.0,24487.0,0,41,2,15006,201103658,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3595.658472796176,0.0,0.0,0.0,0.0,6039.0,0,3,5,36.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,6039.0,1,1,1_0,1_0_0,1_4_0,1_0_0 -3659,1,26.0,3,167.0,1,111,2,0,42,3.0,0.0,0.0,633.0384220996858,0.0,0.0,8094.0,0,10,2,15007,201103659,,,,163.0,1.0,0.0,1.0,0.0,1.0,1.0,3444.7622390148545,0.0,464.0,0.0,0.0,13723.0,0,3,3,25.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,633.0384220996858,0.07821082556210598,0.04612974000580673,13723.0,3,2,3_1,3_0_1,3_3_1,3_1_0 -3660,2,56.0,3,0.0,1,111,2,72,37,9.0,0.0,0.0,878.61367205215,0.0,2825.8421816376376,38783.0,71,12,1,15008,201103660,,,363.0,,1.0,2.0,4.0,0.0,2.0,1.5,1840.3567006667952,0.0,644.0,1626.0,0.0,46391.0,6,1,2,200.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3704.4558536897875,0.09551751679059865,0.07985289934879153,30927.333333333332,9,5,9,9_1,9_2,9_1_0 -3661,2,80.0,3,0.0,1,111,2,77,72,8.0,0.0,0.0,600.2950554393572,0.0,3145.617680666743,29713.0,70,44,1,15009,201103661,,,,,0.0,3.0,6.0,0.0,2.0,1.5,2772.827920883694,0.0,440.0,1810.0,0.0,42449.0,5,5,1,150.0,6,4.0,3,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3745.9127361061,0.12606982587103624,0.08824501722316427,28299.333333333332,8,4,8,8_1,8_2,8_1_0 -3662,2,76.0,3,0.0,3,112,4,78,78,5.0,0.0,0.0,2379.990057024365,0.0,421.49854654429924,38399.0,70,70,1,1501,201103662,,,274.0,,0.0,1.0,4.0,0.0,2.0,1.5,1604.491182220183,392.0,1595.0,0.0,0.0,27290.0,5,5,1,60.0,9,0.0,3,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2801.488603568664,0.07295733231512967,0.10265623318316834,18193.333333333332,5,3,5,5_1,5_0,5_0_1 -3663,2,77.0,2,0.0,1,300,4,74,72,9.0,0.0,346.98157989085996,1637.1683330164287,208.54923849724264,0.0,31171.0,41,20,1,15010,201103663,,,400.0,,0.0,3.0,8.0,0.0,2.0,1.5,2149.2198954835485,0.0,1200.0,0.0,0.0,44630.0,5,5,1,200.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2192.699151404531,0.07034420299010398,0.049130610607316404,29753.333333333332,9,5,9,9_1,9_0,9_1_0 -3664,2,74.0,3,0.0,1,300,2,75,78,4.0,3172.912018277764,0.0,573.00891655575,0.0,0.0,33409.0,60,71,1,15011,201103664,,,130.0,,0.0,4.0,6.0,0.0,2.0,1.5,2007.668299061191,0.0,420.0,0.0,0.0,22212.0,5,5,1,150.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3745.9209348335144,0.11212310858850952,0.16864401831593348,14808.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -3665,0,38.0,3,0.0,1,300,4,0,43,6.0,0.0,0.0,818.5841665082144,92.10924700294883,0.0,10663.0,0,42,1,15013,201103665,,,190.0,,1.0,0.0,5.0,0.0,1.0,1.0,2219.7945037819973,0.0,600.0,0.0,0.0,20554.0,0,1,5,200.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,910.6934135111632,0.08540686612690267,0.04430735688971311,20554.0,6,3,6,6_1,6_0,6_1_0 -3666,2,30.0,1,0.0,1,111,2,0,37,10.0,0.0,0.0,272.86138883607146,0.0,1042.7461924862132,31805.0,0,12,2,15014,201103666,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3507.4575608995456,0.0,200.0,600.0,0.0,53715.0,0,1,2,46.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1315.6075813222847,0.04136480368880002,0.024492368636736195,53715.0,10,5,10,10_0,10_4,10_1_0 -3667,2,74.0,3,0.0,1,221,4,71,71,3.0,0.0,0.0,2094.2111593168484,0.0,0.0,15479.0,50,70,1,15015,201103667,,,154.0,,0.0,3.0,4.0,0.0,2.0,1.5,2228.9507688487,0.0,1535.0,0.0,0.0,20228.0,5,5,1,100.0,1,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2094.2111593168484,0.13529369851520437,0.10353031240443189,13485.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0 -3668,2,46.0,4,0.0,1,111,2,0,35,7.0,0.0,0.0,668.510402648375,0.0,1042.7461924862132,35807.0,0,41,2,15016,201103668,,,,,1.0,0.0,3.0,1.0,2.0,1.3,4368.8988558888805,0.0,490.0,600.0,0.0,31721.0,0,1,2,75.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1711.2565951345882,0.047791118919054604,0.05394712005089966,24400.76923076923,7,4,7,7_0,7_3,7_1_0 -3669,2,55.0,2,0.0,9,112,2,56,75,3.0,0.0,0.0,777.6549581828036,0.0,1286.0536373996629,63191.0,50,60,1,15017,201103669,,,,,1.0,4.0,6.0,1.0,3.0,2.0,1570.71419685964,0.0,570.0,740.0,0.0,24672.0,1,5,2,100.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2063.7085955824664,0.03265826772139176,0.08364577640979516,12336.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -3670,2,80.0,4,0.0,3,112,5,0,72,4.0,0.0,610.6875806079136,532.0797082303393,0.0,0.0,14371.0,0,70,1,15018,201103670,,,266.0,,1.0,4.0,6.0,1.0,2.0,1.5,1538.644679024181,0.0,390.0,0.0,0.0,23358.0,0,5,1,90.0,8,1.0,2,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1142.7672888382529,0.07951898189675408,0.04892402127058194,15572.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -3672,2,62.0,4,0.0,6,111,4,72,52,4.0,0.0,0.0,2728.6138883607146,0.0,0.0,30132.0,71,71,2,15020,201103672,,,300.0,,1.0,6.0,3.0,0.0,2.0,1.5,4340.951072496494,0.0,2000.0,0.0,0.0,22160.0,7,1,3,80.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2728.6138883607146,0.09055535272669303,0.12313239568414777,14773.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_0 -3673,1,47.0,3,134.0,99,120,5,85,64,2.0,0.0,1054.8240028682144,1064.1594164606786,201.5975972140012,0.0,30436.0,50,71,1,15022,201103673,,,220.0,,1.0,0.0,5.0,3.0,5.0,2.6,1736.3465699232668,0.0,780.0,0.0,0.0,31832.0,6,1,3,144.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2320.5810165428943,0.07624461218763616,0.07290088642067398,12243.076923076922,2,1,2_1,2_1_1,2_1_1,2_0_0 -3674,2,75.0,3,0.0,4,221,6,78,78,4.0,951.8736054833294,166.55115834761278,654.8673332065715,140.77073598563877,0.0,44775.0,70,71,1,15023,201103674,,,191.0,,0.0,3.0,4.0,0.0,2.0,1.5,4755.338703256165,0.0,480.0,0.0,0.0,24947.0,5,5,1,90.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1914.0628330231523,0.042748471982649965,0.07672517068277357,16631.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_1 -3675,2,67.0,2,0.0,6,111,2,77,74,10.0,0.0,0.0,623.4882734904232,0.0,1145.282901414024,55713.0,70,42,2,15024,201103675,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2471.9416378736933,0.0,457.0,659.0,0.0,61086.0,5,5,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1768.7711749044474,0.03174790757820343,0.02895542636454257,40724.0,10,5,10,10_0,10_4,10_0_0 -3676,2,71.0,3,0.0,2,111,4,78,77,6.0,0.0,0.0,1023.230208135268,119.9158121359145,0.0,22989.0,70,70,2,15025,201103676,,,320.0,,0.0,2.0,3.0,0.0,2.0,1.5,3357.7804523562663,0.0,750.0,0.0,0.0,31175.0,5,5,3,70.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1143.1460202711824,0.04972578277746672,0.03666867747461692,20783.333333333332,6,3,6,6_0,6_2,6_0_1 -3677,2,34.0,3,0.0,99,112,2,52,64,4.0,0.0,0.0,920.9071873217412,0.0,1571.0709300125611,44613.0,43,50,2,15026,201103677,,,190.0,,2.0,0.0,3.0,2.0,4.0,2.1,3362.1553907352168,0.0,675.0,904.0,0.0,32030.0,4,1,3,90.0,6,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,2491.978117334302,0.05585766743626975,0.0778013773754075,15252.380952380952,4,2,4_0,4_0_0,4_0_0,4_0_0 -3678,2,59.0,3,0.0,5,400,6,64,78,5.0,0.0,0.0,871.7921373312482,0.0,0.0,28418.0,70,50,1,15028,201103678,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1959.2925576221683,0.0,639.0,0.0,0.0,26256.0,1,5,1,98.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,871.7921373312482,0.03067746278173159,0.033203539660696536,17504.0,5,3,5,5_1,5_0,5_0_0 -3679,2,90.0,4,0.0,2,111,2,0,86,1.0,0.0,0.0,187.27391117451586,0.0,387.09050192843813,15490.0,0,71,2,15029,201103679,,,,,0.0,6.0,4.0,0.0,1.0,1.0,3775.3446422064853,360.0,0.0,0.0,0.0,7530.0,0,5,1,90.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,574.364413102954,0.03707969096855739,0.07627681448910412,7530.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -3680,2,60.0,1,0.0,3,221,2,33,31,10.0,1173.9774467627728,0.0,1637.1683330164287,130.34327406077665,0.0,48827.0,33,10,1,1503,201103680,,,800.0,,2.0,2.0,5.0,0.0,2.0,1.5,2837.7487067211673,0.0,1200.0,0.0,0.0,100364.0,1,1,1,175.0,1,2.0,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2941.4890538399786,0.060243083823294054,0.02930820865888146,66909.33333333333,10,5,10,10_1,10_1,10_0_1 -3681,2,52.0,4,0.0,6,120,2,52,85,7.0,3172.912018277764,277.585263912688,1091.4455553442858,0.0,0.0,24818.0,33,50,1,15031,201103681,,,600.0,,1.0,3.0,6.0,0.0,2.0,1.5,3890.934119496833,0.0,800.0,0.0,0.0,36908.0,4,5,1,120.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4541.942837534738,0.18301002649426779,0.12306120184065075,24605.333333333332,7,4,7,7_1,7_0,7_0_0 -3682,2,32.0,3,0.0,7,400,5,85,46,4.0,0.0,555.170527825376,2128.318832921357,139.0328256648284,0.0,17006.0,71,50,1,15032,201103682,,,,,1.0,0.0,4.0,3.0,5.0,2.4,2347.3102892939564,0.0,1560.0,0.0,0.0,39497.0,6,1,2,97.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2822.5221864115615,0.16597213844593448,0.0714616853536107,16457.083333333336,4,2,4_0,4_1_0,4_0_0,4_0_0 -3683,2,52.0,2,0.0,9,222,2,55,63,8.0,0.0,0.0,1773.5990274344645,0.0,0.0,30981.0,50,71,1,15033,201103683,,,158.0,,2.0,2.0,5.0,0.0,2.0,1.5,1702.1885701390297,0.0,1300.0,0.0,0.0,42686.0,4,1,2,110.0,1,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1773.5990274344645,0.05724795931165761,0.041549899907099855,28457.333333333332,8,4,8,8_1,8_0,8_0_0 -3684,2,60.0,1,0.0,6,111,4,43,31,10.0,0.0,0.0,4352.722271212778,0.0,2228.996140271256,40728.0,31,10,1,15034,201103684,,,620.0,,3.0,1.0,4.0,1.0,3.0,2.0,1927.5585577387913,2073.0,2400.0,0.0,0.0,166342.0,4,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,6581.718411484034,0.1616018073925563,0.03956738774022216,83171.0,10,5,10,10_1,10_4,10_0_0 -3685,2,47.0,4,0.0,7,112,2,47,52,6.0,0.0,416.377895869032,1091.4455553442858,0.0,0.0,35986.0,50,50,1,15035,201103685,,,220.0,,3.0,0.0,5.0,3.0,5.0,2.8,773.2243117878734,0.0,800.0,0.0,0.0,55795.0,1,1,1,100.0,6,2.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1507.8234512133179,0.0419002793089901,0.027024347185470345,19926.785714285714,6,3,6,6_1,6_1,6_0_0 -3686,1,32.0,5,350.0,99,111,2,0,56,2.0,0.0,0.0,656.2316401507518,0.0,853.3139675178844,15366.0,0,50,2,15036,201103686,,,,1.0,1.0,0.0,5.0,3.0,4.0,1.9,2433.442611619952,0.0,481.0,491.0,0.0,21060.0,0,4,3,80.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1509.5456076686362,0.09823933409271354,0.07167832894912803,11084.21052631579,2,1,2_1,2_0_1,2_3_1,2_0_0 -3687,2,63.0,2,0.0,5,112,2,77,78,7.0,0.0,0.0,720.3540665272286,0.0,1889.1085187208562,22874.0,70,50,1,15037,201103687,,,120.0,,0.0,3.0,5.0,0.0,2.0,1.5,1452.8831161926562,0.0,528.0,1087.0,0.0,32590.0,5,5,1,98.0,9,1.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2609.462585248085,0.11407985421212227,0.08006942575170559,21726.666666666668,6,3,6,6_1,6_1,6_0_0 -3688,2,81.0,3,0.0,1,112,2,0,78,7.0,3172.912018277764,0.0,709.4396109737858,251.99699651750151,0.0,36928.0,0,70,1,15038,201103688,,,225.0,,0.0,2.0,7.0,1.0,2.0,1.5,1788.4732495565681,0.0,520.0,0.0,0.0,36486.0,0,5,1,119.0,8,0.0,2,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4134.348625769052,0.11195701434599903,0.11331328799454728,24324.0,7,4,7,7_1,7_0,7_1_0 -3690,2,89.0,5,0.0,1,111,4,0,86,2.0,0.0,0.0,1077.8024859024822,0.0,729.9223347403492,11940.0,0,71,8,1504,201103690,,,,500.0,0.0,6.0,3.0,0.0,1.0,1.0,3159.3766258838004,0.0,790.0,420.0,0.0,12170.0,0,7,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1807.7248206428314,0.1514007387473058,0.1485394265113255,12170.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -3691,1,42.0,5,39.0,1,400,2,0,63,5.0,396.6140022847205,0.0,1841.8143746434823,114.70208117348345,0.0,27935.0,0,71,1,15043,201103691,,,,271.0,1.0,2.0,3.0,0.0,1.0,1.0,4415.556904253526,0.0,1350.0,0.0,0.0,17218.0,0,1,3,80.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2353.130458101686,0.08423592117779438,0.13666688686849146,17218.0,5,3,5,5_1,5_0,5_1_0 -3692,2,74.0,1,0.0,1,112,2,86,74,10.0,0.0,0.0,886.7995137172322,0.0,4692.357866187959,51692.0,41,10,1,15044,201103692,,,600.0,,0.0,3.0,10.0,0.0,2.0,1.5,1863.1863539064636,0.0,650.0,2700.0,0.0,77120.0,6,5,1,275.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5579.157379905191,0.10793077033013215,0.07234384569379138,51413.333333333336,10,5,10,10_1,10_2,10_1_0 -3693,2,60.0,1,0.0,5,111,4,74,72,8.0,0.0,0.0,2946.9029994295715,0.0,0.0,26443.0,20,41,1,15045,201103693,,,376.0,,0.0,1.0,4.0,0.0,2.0,1.5,2009.497293399202,0.0,2160.0,0.0,0.0,40523.0,5,5,1,102.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2946.9029994295715,0.11144359563701439,0.07272173825801573,27015.333333333332,8,4,8,8_1,8_3,8_0_0 -3694,1,50.0,4,220.0,1,111,2,0,35,1.0,0.0,0.0,150.0737638598393,0.0,695.1641283241421,17827.0,0,10,2,15046,201103694,,,,294.0,1.0,1.0,3.0,0.0,1.0,1.0,3704.3391935405484,0.0,110.0,400.0,0.0,7490.0,0,1,3,60.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,845.2378921839813,0.047413355706735924,0.11284885075887602,7490.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -3695,2,56.0,3,0.0,2,300,2,13,13,9.0,0.0,0.0,492.514806849109,0.0,434.4775802025888,25315.0,50,50,1,15047,201103695,,,41.0,,2.0,2.0,10.0,0.0,2.0,1.5,1372.498105524435,0.0,361.0,250.0,0.0,54373.0,5,1,3,270.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,926.9923870516977,0.03661830484107042,0.01704876293475986,36248.666666666664,9,5,9,9_1,9_0,9_0_1 -3696,2,72.0,1,0.0,4,112,2,77,75,8.0,2379.684013708323,0.0,1064.1594164606786,403.1951944280024,0.0,23400.0,70,50,1,15048,201103696,,,150.0,,1.0,2.0,5.0,1.0,3.0,2.0,1064.1676745581608,0.0,780.0,0.0,0.0,56463.0,5,5,1,130.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3847.038624597004,0.16440336002551298,0.06813379778964992,28231.5,8,4,8,8_1,8_0,8_0_1 -3697,2,50.0,2,0.0,6,112,6,52,62,6.0,0.0,1387.9263195634398,1118.731694227893,135.55700502320772,0.0,38766.0,50,50,1,15049,201103697,,,580.0,,3.0,0.0,5.0,2.0,4.0,2.5,2222.2697816239165,0.0,820.0,0.0,0.0,51376.0,1,1,1,100.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2642.2150188145406,0.06815805135465461,0.05142897498471155,20550.4,6,3,6,6_1,6_0,6_0_0 -3698,2,31.0,1,0.0,6,111,2,38,38,10.0,0.0,0.0,3626.6441868815205,0.0,7521.272915252825,74287.0,12,12,1,1505,201103698,,,200.0,,2.0,0.0,4.0,0.0,2.0,1.5,2544.824378556877,6211.0,290.0,485.0,0.0,70897.0,1,1,3,85.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,11147.917102134346,0.15006551754862016,0.15724102715396063,47264.666666666664,10,5,10,10_1,10_3,10_0_0 -3699,2,37.0,2,0.0,1,120,5,0,34,7.0,0.0,0.0,1276.9912997528145,208.54923849724264,0.0,35329.0,0,20,1,15050,201103699,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2335.710295098561,0.0,936.0,0.0,0.0,23698.0,0,1,2,130.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1485.5405382500571,0.04204875706218849,0.0626863253544627,23698.0,7,4,7,7_1,7_1,7_1_0 -3700,2,72.0,3,0.0,1,400,5,77,78,3.0,0.0,721.7216861729887,1023.230208135268,302.3963958210018,0.0,16691.0,71,71,1,15051,201103700,,,134.0,,0.0,1.0,2.0,0.0,2.0,1.5,2968.7121786030093,0.0,750.0,0.0,0.0,21521.0,5,5,1,70.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2047.3482901292584,0.12266181116345685,0.09513258167042696,14347.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -3701,0,20.0,3,0.0,1,111,6,0,84,1.0,0.0,0.0,491.1504999049286,0.0,0.0,14783.0,0,30,2,15053,201103701,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4042.85986668039,0.0,360.0,0.0,0.0,1810.0,0,3,5,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,491.1504999049286,0.03322400729925784,0.2713538673507893,1810.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -3702,2,38.0,4,0.0,4,111,2,56,55,4.0,0.0,0.0,873.9449188144073,0.0,1806.422342332711,31568.0,20,43,1,15054,201103702,,,520.0,,2.0,0.0,3.0,2.0,4.0,2.1,1467.839770100108,1680.0,0.0,0.0,0.0,31040.0,1,1,2,70.0,4,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2680.3672611471184,0.08490773128317025,0.08635203805242005,14780.95238095238,3,2,3_0,3_1_0,3_2_0,3_0_1 -3703,1,29.0,3,261.0,6,111,2,0,56,1.0,0.0,0.0,982.3009998098572,0.0,1042.7461924862132,15448.0,0,43,2,15055,201103703,,,,166.0,1.0,0.0,4.0,1.0,2.0,1.3,4574.688428732981,0.0,720.0,600.0,0.0,11961.0,0,1,3,95.0,8,6.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2025.0471922960705,0.1310879850010403,0.16930417124789487,9200.76923076923,1,1,1_1,1_0_1,1_2_1,1_0_0 -3704,2,60.0,2,0.0,2,111,2,22,22,10.0,3331.5576191916525,0.0,1675.1734281236754,145.98446694806984,445.15407721770384,36274.0,41,60,1,15057,201103704,,,105.0,,2.0,2.0,9.0,0.0,2.0,1.5,2365.882528821645,414.0,1070.0,0.0,0.0,200907.0,1,1,1,300.0,6,5.0,3,9,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,5597.869591481102,0.15432181704474562,0.027862989300925813,133938.0,10,5,10,10_1,10_2,10_0_1 -3705,2,40.0,4,0.0,1,111,2,54,46,6.0,0.0,0.0,613.9381248811608,0.0,2085.4923849724264,32142.0,42,42,1,15058,201103705,,,178.0,,2.0,0.0,5.0,0.0,2.0,1.5,3023.8054600523296,0.0,450.0,1200.0,0.0,30330.0,1,1,2,100.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2699.430509853587,0.08398452211603469,0.08900199504957425,20220.0,6,3,6,6_1,6_2,6_1_0 -3706,2,38.0,1,0.0,2,111,1,43,38,9.0,0.0,0.0,613.9381248811608,0.0,173.79103208103552,88718.0,20,10,2,15059,201103706,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3235.170118501899,0.0,450.0,100.0,0.0,71760.0,1,1,2,78.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,787.7291569621963,0.0088790229374219,0.01097727364774521,34171.42857142857,9,5,9,9_0,9_3,9_0_1 -3707,2,67.0,4,0.0,4,111,1,75,75,6.0,44.4207682558887,0.0,382.0059443705,0.0,166.8393907977941,32624.0,50,50,2,15061,201103707,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2540.189625194887,0.0,280.0,96.0,0.0,29763.0,5,5,2,102.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,593.2661034241828,0.018184959030903104,0.019933007540375056,19842.0,6,3,6,6_0,6_3,6_0_1 -3708,2,73.0,2,0.0,4,111,2,74,74,10.0,2712.8397756274885,18.04304215432472,851.3275331685429,22.59283417053462,0.0,68620.0,20,10,1,15062,201103708,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1260.6687629155617,0.0,624.0,0.0,0.0,67441.0,5,5,1,110.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3604.8031851208907,0.05253283569106515,0.05345121195001395,44960.666666666664,10,5,10,10_1,10_4,10_0_1 -3709,2,76.0,1,0.0,6,111,4,77,74,10.0,0.0,0.0,1400.9871560703727,0.0,535.4751943343393,40716.0,50,41,2,15063,201103709,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2007.7372840853805,498.0,837.0,0.0,0.0,63703.0,5,5,1,90.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1936.4623504047122,0.047560230631808434,0.03039829129561735,42468.666666666664,10,5,10,10_0,10_3,10_0_0 -3710,2,56.0,3,0.0,4,111,1,0,63,8.0,0.0,0.0,515.708024900175,0.0,1228.7025968129212,16631.0,0,50,1,15064,201103710,,,,,1.0,2.0,5.0,0.0,1.0,1.0,3455.0113530015115,0.0,378.0,707.0,0.0,26347.0,0,1,2,99.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1744.4106217130961,0.10488909997673598,0.0662090796566249,26347.0,8,4,8,8_1,8_3,8_0_1 -3711,2,55.0,2,0.0,3,111,4,0,37,9.0,0.0,0.0,1146.0178331115,48.661488982689946,0.0,16971.0,0,42,1,15065,201103711,,,66.0,,1.0,1.0,3.0,0.0,1.0,1.0,3075.1457141954575,0.0,840.0,0.0,0.0,36516.0,0,1,1,120.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1194.67932209419,0.07039534040976901,0.03271659880858226,36516.0,9,5,9,9_1,9_2,9_0_1 -3712,2,80.0,3,0.0,8,221,2,77,78,4.0,0.0,0.0,1047.7877331305144,0.0,2606.865481215533,29772.0,71,71,2,15066,201103712,,,,250.0,1.0,2.0,3.0,1.0,3.0,2.0,7688.567449231613,0.0,768.0,1500.0,0.0,31591.0,5,5,3,64.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,3654.653214346047,0.12275470960452933,0.11568653142812976,15795.5,4,2,4_0,4_0_0,4_1_0,4_0_0 -3713,2,47.0,1,0.0,4,111,4,0,33,10.0,0.0,0.0,1964.6019996197144,0.0,0.0,38662.0,0,12,1,15067,201103713,,,,,1.0,1.0,4.0,2.0,3.0,1.8,4054.083188677773,0.0,1440.0,0.0,0.0,95716.0,0,1,2,135.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1964.6019996197144,0.050814805225278425,0.02052532491558062,53175.555555555555,10,5,10,10_1,10_3,10_0_1 -3714,1,42.0,3,261.0,9,111,2,85,21,1.0,0.0,0.0,682.1534720901786,0.0,1737.9103208103552,25948.0,71,71,2,1507,201103714,,,,333.0,1.0,0.0,3.0,2.0,4.0,2.1,3222.0479065057543,0.0,500.0,1000.0,0.0,18485.0,6,1,3,46.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2420.063792900534,0.09326590846695444,0.1309204107601046,8802.380952380952,1,1,1_1,1_0_1,1_4_1,1_0_0 -3715,2,78.0,3,0.0,5,111,1,77,75,7.0,0.0,0.0,926.769048068003,0.0,1320.296405690378,32150.0,50,44,2,15070,201103715,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2510.248880401272,1139.0,245.0,55.0,0.0,32476.0,5,5,1,80.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2247.065453758381,0.0698931711899963,0.06919157081408982,21650.666666666668,6,3,6,6_0,6_3,6_0_0 -3716,2,46.0,2,0.0,6,112,6,43,33,8.0,0.0,0.0,1200.5901108787143,229.4041623469669,0.0,42312.0,33,60,1,15071,201103716,,,,,2.0,2.0,5.0,1.0,3.0,2.0,2097.011263453147,0.0,880.0,0.0,0.0,53567.0,1,1,1,180.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1429.9942732256811,0.03379642354948197,0.026695433256028547,26783.5,8,4,8,8_1,8_0,8_0_0 -3717,2,53.0,2,0.0,99,111,2,0,22,2.0,0.0,0.0,425.66376658427146,0.0,0.0,21425.0,0,31,2,15072,201103717,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3792.522961092394,0.0,312.0,0.0,0.0,10090.0,0,1,1,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,425.66376658427146,0.01986762037732889,0.04218669639090897,10090.0,2,1,2_0,2_0_0,2_4_0,2_0_0 -3718,2,70.0,3,0.0,1,300,2,78,75,4.0,0.0,0.0,1506.1948663751143,2914.4756079989656,0.0,43136.0,50,10,1,15073,201103718,,,680.0,,0.0,2.0,4.0,0.0,2.0,1.5,1069.1563642905257,0.0,1104.0,0.0,0.0,23397.0,5,5,1,200.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4420.67047437408,0.10248216047788576,0.1889417649431158,15598.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -3719,1,34.0,3,350.0,6,111,1,0,45,3.0,0.0,0.0,1186.9470414369107,0.0,0.0,22135.0,0,20,2,15077,201103719,,,,354.0,1.0,0.0,4.0,3.0,4.0,2.1,2461.054292083751,0.0,870.0,0.0,0.0,28948.0,0,1,3,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1186.9470414369107,0.05362308748303188,0.04100273046279227,13784.761904761905,3,2,3_1,3_0_1,3_4_1,3_0_0 -3720,2,65.0,2,0.0,5,111,2,22,23,10.0,0.0,0.0,2222.1939501752504,0.0,1632.231616464914,73575.0,70,50,1,15079,201103720,,,1500.0,,2.0,2.0,5.0,0.0,2.0,1.5,2595.179156994927,1518.0,1050.0,0.0,0.0,120274.0,5,5,1,170.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3854.425566640164,0.05238770732776302,0.03204703898299021,80182.66666666667,10,5,10,10_1,10_4,10_0_0 -3721,2,77.0,2,0.0,1,111,2,86,75,5.0,0.0,0.0,491.1504999049286,0.0,2172.387901012944,49828.0,71,71,1,15080,201103721,,,187.0,,1.0,2.0,4.0,1.0,3.0,2.0,5165.801969075083,0.0,360.0,1250.0,0.0,37863.0,5,5,1,88.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2663.5384009178724,0.05345465202131076,0.07034673430308935,18931.5,5,3,5,5_1,5_2,5_1_0 -3722,2,52.0,2,0.0,1,120,4,0,56,9.0,0.0,0.0,671.2390165367358,0.0,0.0,19462.0,0,41,1,15081,201103722,,,,,1.0,0.0,5.0,0.0,2.0,1.5,2671.2249062130904,0.0,492.0,0.0,0.0,54580.0,0,1,1,90.0,0,2.0,5,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,671.2390165367358,0.034489724413561594,0.01229825973867233,36386.666666666664,9,5,9,9_1,9_1,9_1_0 -3723,2,31.0,1,0.0,1,111,2,0,37,8.0,0.0,0.0,186.91005135270893,0.0,370.17489833260566,14687.0,0,20,2,15082,201103723,,,,498.0,1.0,0.0,2.0,0.0,1.0,1.0,3046.2438393752595,0.0,137.0,213.0,0.0,24711.0,0,1,3,45.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,557.0849496853145,0.037930479314040616,0.022544006704921474,24711.0,7,4,7,7_0,7_3,7_1_0 -3724,1,40.0,3,20.0,5,111,2,22,67,3.0,0.0,0.0,373.82010270541787,0.0,1272.15035483318,55366.0,31,50,2,15084,201103724,,,,567.0,2.0,0.0,3.0,2.0,4.0,2.1,2953.825627398479,0.0,274.0,732.0,0.0,30174.0,1,1,3,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1645.9704575385979,0.02972890325359603,0.054549296001146615,14368.571428571428,3,2,3_1,3_0_1,3_3_1,3_0_0 -3725,2,76.0,3,0.0,1,112,2,86,78,2.0,0.0,0.0,416.1642470544797,0.0,860.2011153965291,12701.0,71,70,1,15086,201103725,,,300.0,,0.0,6.0,3.0,0.0,2.0,1.5,2531.541620467602,800.0,0.0,0.0,0.0,14110.0,6,5,1,80.0,5,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1276.3653624510089,0.10049329678379725,0.09045821137143932,9406.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0 -3726,2,38.0,2,0.0,8,111,2,37,46,9.0,0.0,0.0,750.3688192991965,0.0,0.0,40341.0,30,20,1,15088,201103726,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2345.5076449016296,0.0,550.0,0.0,0.0,73631.0,1,1,1,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,750.3688192991965,0.018600649941726694,0.010190936145091015,35062.380952380954,9,5,9,9_1,9_4,9_0_0 -3727,2,55.0,1,0.0,7,111,4,56,21,5.0,0.0,249.82673752141918,2487.5151309260727,0.0,432.2510604867559,44705.0,31,31,1,15089,201103727,,,687.0,,3.0,2.0,5.0,1.0,3.0,2.0,3596.4823593190727,402.0,1670.0,0.0,0.0,35637.0,1,4,2,130.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3169.5929289342475,0.07090018854567157,0.08894107048669213,17818.5,5,3,5,5_1,5_3,5_0_0 -3728,2,48.0,2,0.0,1,111,1,84,34,10.0,0.0,0.0,613.9381248811608,0.0,0.0,44151.0,33,10,2,1509,201103728,,,,1200.0,1.0,0.0,3.0,0.0,2.0,1.5,3277.7360689718835,0.0,450.0,0.0,0.0,60390.0,3,1,3,55.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,613.9381248811608,0.013905418334378854,0.010166221640688207,40260.0,10,5,10,10_0,10_4,10_1_0 -3729,2,59.0,2,0.0,9,300,2,78,22,8.0,0.0,0.0,2423.0091328643143,1129.641708526731,0.0,34488.0,71,70,1,15090,201103729,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2145.707434645476,0.0,1776.0,0.0,0.0,40074.0,6,1,1,65.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3552.650841391045,0.10301121669540261,0.08865226434573652,26716.0,8,4,8,8_1,8_0,8_0_0 -3730,2,62.0,3,0.0,5,111,5,77,77,8.0,0.0,166.55115834761278,2056.9575439790437,104.27461924862132,2616.0866421996943,54959.0,50,50,1,15091,201103730,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1025.6010350052215,2433.0,580.0,0.0,0.0,41304.0,5,5,1,97.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4943.869963774972,0.0899556026087624,0.11969470181519883,27536.0,8,4,8,8_1,8_2,8_0_0 -3731,2,41.0,3,0.0,8,111,6,0,47,6.0,793.228004569441,0.0,1023.230208135268,0.0,0.0,35462.0,0,31,1,15092,201103731,,,,,1.0,0.0,4.0,2.0,3.0,1.6,2454.9717319346564,0.0,750.0,0.0,0.0,30524.0,0,1,2,120.0,8,7.0,2,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1816.458212704709,0.05122266687453356,0.0595091800781257,19077.5,5,3,5,5_1,5_3,5_0_0 -3732,1,52.0,4,201.0,1,111,4,0,85,1.0,0.0,0.0,540.2655498954215,0.0,0.0,6311.0,0,42,2,15093,201103732,,,,,0.0,3.0,1.0,0.0,1.0,1.0,2267.2405187957943,0.0,396.0,0.0,0.0,2412.0,0,7,3,25.0,5,4.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,540.2655498954215,0.08560696401448606,0.22399069232811836,2412.0,1,1,1_1,1_0_1,1_2_1,1_1_0 -3733,2,42.0,3,0.0,5,300,2,62,64,5.0,1507.1332086819382,0.0,586.6519859975537,97.32297796537989,0.0,68558.0,43,50,1,15096,201103733,,,120.0,,2.0,0.0,6.0,1.0,3.0,1.8,2959.491320751528,0.0,430.0,0.0,0.0,31781.0,1,1,1,125.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2191.1081726448715,0.03195991966867282,0.06894396566013881,17656.11111111111,5,3,5,5_1,5_0,5_0_0 -3734,2,34.0,3,0.0,1,112,2,67,46,7.0,0.0,0.0,1155.5679817207626,0.0,2624.2445844236363,38025.0,50,20,1,15097,201103734,,,105.0,,2.0,0.0,5.0,2.0,4.0,2.1,1836.0649813132254,0.0,847.0,1510.0,0.0,47104.0,1,1,3,160.0,7,2.0,4,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3779.812566144399,0.09940335479669689,0.08024398280707369,22430.47619047619,7,4,7,7_1,7_1,7_1_0 -3735,2,26.0,2,0.0,4,111,1,52,52,8.0,0.0,0.0,382.0059443705,0.0,0.0,30401.0,43,43,2,15099,201103735,,,,,2.0,0.0,2.0,0.0,2.0,1.5,4272.082892228452,0.0,280.0,0.0,0.0,37913.0,1,1,3,65.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,382.0059443705,0.012565571671014112,0.010075856417864584,25275.333333333332,8,4,8,8_0,8_4,8_0_1 -3736,2,46.0,5,0.0,5,111,6,48,37,8.0,460.0722426502758,0.0,1800.8851663180715,0.0,0.0,71289.0,42,50,1,151,201103736,,,648.0,,3.0,3.0,6.0,2.0,4.0,2.5,1872.4474139184651,0.0,1320.0,0.0,0.0,61962.0,1,1,3,120.0,9,7.0,4,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2260.9574089683474,0.03171537556941951,0.03648941946625912,24784.8,7,4,7,7_1,7_3,7_0_0 -3737,2,75.0,4,0.0,99,111,2,0,86,6.0,0.0,0.0,335.6195082683679,0.0,1539.7885442379747,13836.0,0,71,1,1510,201103737,,,,340.0,0.0,2.0,5.0,0.0,1.0,1.0,2840.864337758111,0.0,246.0,886.0,0.0,20845.0,0,5,3,85.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1875.4080525063428,0.1355455371860612,0.08996920376619538,20845.0,6,3,6,6_1,6_2,6_0_0 -3738,2,55.0,1,0.0,5,111,4,46,53,10.0,0.0,0.0,2196.5341801303753,0.0,0.0,69394.0,42,70,1,15101,201103738,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2761.2215913855357,0.0,1610.0,0.0,0.0,60753.0,1,1,1,99.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2196.5341801303753,0.031653084994817636,0.03615515579692156,40502.0,10,5,10,10_1,10_3,10_0_0 -3739,0,23.0,3,0.0,2,111,1,0,56,2.0,0.0,0.0,0.0,0.0,0.0,12318.0,0,41,2,15103,201103739,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1742.6136725688625,0.0,0.0,0.0,0.0,9650.0,0,1,5,90.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,9650.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -3740,2,81.0,2,0.0,1,300,6,77,74,10.0,3617.119700836651,0.0,2046.460416270536,434.4775802025888,0.0,29352.0,71,12,1,15104,201103740,,,350.0,,1.0,3.0,13.0,0.0,3.0,2.0,1858.5438373625148,0.0,1500.0,0.0,0.0,76730.0,5,5,1,400.0,0,0.0,5,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6098.057697309776,0.20775612214873862,0.07947423038328914,38365.0,10,5,10,10_1,10_0,10_1_0 -3741,2,44.0,3,0.0,1,300,5,0,62,7.0,0.0,0.0,592.1092137742751,291.9689338961397,0.0,26966.0,0,50,1,15105,201103741,,,182.0,,2.0,0.0,5.0,2.0,3.0,2.0,3078.794470535455,0.0,434.0,0.0,0.0,46721.0,0,1,1,130.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,884.0781476704148,0.03278491981274252,0.018922500538738785,23360.5,7,4,7,7_1,7_0,7_1_0 -3742,2,68.0,1,0.0,1,211,4,46,75,8.0,0.0,0.0,390.1917860355822,0.0,0.0,32862.0,50,50,1,15106,201103742,,,359.0,,1.0,2.0,6.0,0.0,2.0,1.5,927.7874358949175,0.0,286.0,0.0,0.0,42575.0,4,5,1,100.0,3,4.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,390.1917860355822,0.01187364694892527,0.009164810006707744,28383.333333333332,8,4,8,8_1,8_2,8_1_0 -3743,2,43.0,3,0.0,8,112,5,42,47,7.0,0.0,208.188947934516,2182.8911106885716,208.54923849724264,0.0,38593.0,10,50,1,15107,201103743,,,,,2.0,0.0,5.0,2.0,4.0,2.3,1672.620791693219,0.0,1600.0,0.0,0.0,53557.0,1,1,2,150.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2599.62929712033,0.06736012481849896,0.04853948684803724,23285.652173913044,7,4,7,7_1,7_0,7_0_0 -3744,2,86.0,2,0.0,5,112,4,0,71,2.0,0.0,0.0,1514.3807080401966,0.0,0.0,17395.0,0,71,1,15108,201103744,,,,,0.0,4.0,4.0,0.0,1.0,1.0,3004.5896133134192,0.0,1110.0,0.0,0.0,11282.0,0,5,5,100.0,8,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1514.3807080401966,0.0870583908042654,0.13422980925724132,11282.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -3745,2,48.0,3,0.0,1,112,2,0,45,1.0,0.0,0.0,728.2874323453394,0.0,1505.351951943926,17093.0,0,42,1,15109,201103745,,,232.0,,1.0,1.0,5.0,1.0,2.0,1.5,1966.4714902190271,1400.0,0.0,0.0,0.0,5750.0,0,1,2,100.0,9,0.0,2,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2233.6393842892653,0.13067567918383347,0.3884590233546548,3833.3333333333335,1,1,1_0,1_1_0,1_0_0,1_1_0 -3746,1,60.0,4,184.0,2,221,4,0,78,1.0,0.0,0.0,586.6519859975537,48.661488982689946,0.0,8616.0,0,71,2,15110,201103746,,,130.0,,0.0,3.0,1.0,0.0,1.0,1.0,3073.495576694816,0.0,430.0,0.0,0.0,9249.0,0,5,3,42.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,635.3134749802437,0.0737364757405111,0.06868996377773204,9249.0,1,1,1_1,1_0_1,1_1_1,1_0_1 -3747,2,83.0,2,0.0,5,111,4,0,77,8.0,0.0,0.0,3462.6110243297467,0.0,0.0,20430.0,0,50,1,15112,201103747,,,,,0.0,4.0,5.0,0.0,1.0,1.0,3053.0165363397628,0.0,2538.0,0.0,0.0,25504.0,0,5,1,115.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3462.6110243297467,0.16948658954134835,0.13576737077829934,25504.0,8,4,8,8_1,8_3,8_0_0 -3748,1,44.0,3,216.0,3,111,2,0,54,2.0,0.0,0.0,428.39238047263217,0.0,1445.9413869142156,20686.0,0,42,8,15114,201103748,,,,255.0,1.0,0.0,4.0,2.0,3.0,1.8,1794.8138578413657,0.0,314.0,832.0,0.0,19197.0,0,1,3,100.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1874.3337673868477,0.0906088063128129,0.09763680613569035,10665.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -3749,2,51.0,2,0.0,6,111,2,46,38,6.0,0.0,0.0,3054.68324801982,0.0,0.0,71167.0,50,20,1,15117,201103749,,,550.0,,2.0,0.0,5.0,3.0,5.0,3.0,797.8684475359364,0.0,2239.0,0.0,0.0,58016.0,4,1,1,105.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3054.68324801982,0.04292274857756854,0.05265242774441223,19338.666666666668,6,3,6,6_1,6_3,6_0_0 -3750,2,76.0,3,0.0,6,111,2,0,77,2.0,0.0,0.0,1248.492741163439,0.0,2580.6033461895872,17095.0,0,70,1,15118,201103750,,,,,0.0,1.0,5.0,0.0,1.0,1.0,1451.2469087041911,2400.0,0.0,0.0,0.0,10790.0,0,5,1,75.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3829.096087353026,0.22398924172875262,0.3548745215341081,10790.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -3751,2,58.0,3,0.0,1,112,4,22,75,2.0,0.0,0.0,2960.546068871375,52.13730962431066,0.0,30854.0,60,30,1,15119,201103751,,,400.0,,1.0,3.0,4.0,0.0,2.0,1.5,2230.981046215333,0.0,2170.0,0.0,0.0,17430.0,1,5,1,120.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3012.6833784956857,0.09764320277745789,0.1728447147731317,11620.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -3752,2,52.0,3,0.0,99,120,1,0,67,6.0,0.0,0.0,477.50743046312505,0.0,69.5164128324142,17743.0,0,71,2,15120,201103752,,,,260.0,1.0,1.0,3.0,0.0,1.0,1.0,5864.418324184731,0.0,350.0,40.0,0.0,20761.0,0,1,3,60.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,547.0238432955392,0.03083040316155888,0.02634862691082025,20761.0,6,3,6,6_0,6_1,6_0_0 -3753,2,80.0,4,0.0,5,111,4,75,75,3.0,0.0,0.0,592.1092137742751,312.82385774586396,0.0,14914.0,71,70,1,15122,201103753,,,615.0,,0.0,1.0,4.0,0.0,2.0,1.5,3633.165807890411,0.0,434.0,0.0,0.0,20790.0,5,5,1,100.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,904.933071520139,0.06067675147647439,0.043527324267442956,13860.0,3,2,3_0,3_1_0,3_3_0,3_0_0 -3754,1,28.0,4,120.0,6,111,2,63,68,6.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,35952.0,50,41,2,15123,201103754,,,,430.0,2.0,0.0,3.0,2.0,4.0,2.1,5883.184132608083,1200.0,0.0,0.0,0.0,44663.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1914.548043676513,0.053252893960739685,0.0428665347978531,21268.095238095237,6,3,6,6_0,6_4,6_0_0 -3755,2,57.0,3,0.0,7,120,4,54,21,6.0,0.0,0.0,2444.8380439712,173.79103208103552,0.0,51795.0,41,50,1,15127,201103755,,,533.0,,3.0,0.0,7.0,3.0,5.0,3.0,3361.520543984857,0.0,1792.0,0.0,0.0,58963.0,1,1,2,150.0,0,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2618.6290760522356,0.05055756493970916,0.04441139487563787,19654.333333333332,6,3,6,6_1,6_1,6_0_0 -3756,1,58.0,3,264.0,3,111,1,0,56,4.0,0.0,0.0,985.7890602102987,0.0,2923.9356557088095,14818.0,0,71,2,15128,201103756,510.0,510.0,,17.0,2.0,3.0,4.0,1.0,2.0,1.5,3737.5604337392533,1895.0,0.0,510.0,0.0,23913.0,0,1,3,68.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,3909.7247159191083,0.263849690641052,0.16349787629821053,15942.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -3757,2,42.0,3,0.0,8,211,2,21,21,5.0,0.0,0.0,2551.097910014414,0.0,535.4751943343393,24566.0,50,50,1,15129,201103757,,,150.0,,2.0,0.0,6.0,2.0,4.0,2.5,2622.1533616068555,498.0,1680.0,0.0,0.0,43010.0,1,1,2,200.0,3,3.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3086.5731043487535,0.12564410585153274,0.0717640805475181,17204.0,5,3,5,5_1,5_1,5_0_0 -3758,2,73.0,1,0.0,4,112,4,77,74,9.0,1062.925526123051,0.0,1480.2730344356876,0.0,0.0,22157.0,60,10,1,15130,201103758,,,202.0,,0.0,4.0,6.0,0.0,2.0,1.5,5716.948504558753,0.0,1085.0,0.0,0.0,43901.0,5,5,1,137.0,9,2.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2543.198560558739,0.1147808169228117,0.05793031048401492,29267.333333333332,9,5,9,9_1,9_1,9_0_1 -3759,2,56.0,3,0.0,1,221,4,56,38,8.0,0.0,0.0,1004.1299109167429,291.9689338961397,0.0,55935.0,50,50,1,15131,201103759,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1390.8657433144456,0.0,736.0,0.0,0.0,37452.0,1,1,1,140.0,1,3.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1296.0988448128826,0.023171517740464515,0.03460693273557841,24968.0,8,4,8,8_1,8_1,8_1_0 -3760,2,47.0,4,0.0,1,112,2,0,38,9.0,0.0,0.0,622.1239665462429,0.0,3458.441538412607,26936.0,0,50,1,15132,201103760,,,204.0,,1.0,2.0,5.0,1.0,2.0,1.5,2819.040969059434,0.0,456.0,1990.0,0.0,55532.0,0,4,2,210.0,8,1.0,2,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4080.5655049588495,0.15149114586274315,0.07348133517537365,37021.333333333336,9,5,9,9_1,9_1,9_1_0 -3761,0,39.0,2,0.0,1,111,4,54,63,7.0,0.0,0.0,0.0,0.0,0.0,47251.0,50,50,3,15133,201103761,,,,,2.0,1.0,1.0,1.0,3.0,1.8,3206.165985794465,0.0,0.0,0.0,0.0,41228.0,1,1,5,50.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,22904.444444444445,7,4,7,7_0,7_4,7_1_0 -3762,2,24.0,1,0.0,6,111,4,0,46,5.0,0.0,0.0,272.86138883607146,0.0,0.0,19724.0,0,10,2,15134,201103762,,,,320.0,1.0,0.0,1.0,0.0,2.0,1.5,3943.1020655426237,0.0,200.0,0.0,0.0,25953.0,0,1,3,30.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,272.86138883607146,0.013833978342936091,0.010513674289526122,17302.0,5,3,5,5_0,5_3,5_0_0 -3763,2,39.0,2,0.0,4,112,2,85,21,5.0,0.0,0.0,343.80534993345003,0.0,1783.0959891514244,20491.0,50,50,1,15135,201103763,,,260.0,,1.0,0.0,5.0,2.0,4.0,2.1,1411.7801010752703,0.0,252.0,1026.0,0.0,35648.0,6,1,1,235.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2126.9013390848745,0.10379685418402589,0.0596639738298046,16975.238095238095,4,2,4_0,4_1_0,4_1_0,4_0_1 -3764,1,81.0,3,206.0,1,111,1,0,78,1.0,0.0,0.0,422.93515269591074,0.0,0.0,7544.0,0,71,2,15136,201103764,,,,,0.0,3.0,1.0,0.0,1.0,1.0,3943.8037478989777,0.0,310.0,0.0,0.0,2872.0,0,5,3,25.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,422.93515269591074,0.05606245396287258,0.1472615434177962,2872.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -3765,1,42.0,5,295.0,6,111,1,0,85,3.0,0.0,0.0,3956.490138123036,0.0,0.0,17340.0,0,20,2,15138,201103765,,,,195.0,0.0,0.0,4.0,0.0,1.0,1.0,2900.0006733939745,0.0,2900.0,0.0,0.0,14285.0,0,7,3,57.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,3956.490138123036,0.22817128824238964,0.27696815807651637,14285.0,3,2,3_1,3_0_1,3_4_1,3_0_0 -3766,2,51.0,2,0.0,7,111,2,54,37,9.0,0.0,208.188947934516,1050.5163470188752,0.0,778.5838237230391,64371.0,31,31,1,1514,201103766,,,415.0,,2.0,1.0,6.0,2.0,4.0,2.3,2069.908369997909,0.0,770.0,448.0,0.0,67148.0,1,1,1,120.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2037.2891186764302,0.031649176161259424,0.030340279958843603,29194.782608695656,9,5,9,9_1,9_2,9_0_0 -3767,2,63.0,3,0.0,1,221,2,0,74,8.0,0.0,0.0,1828.1713052016787,215.50087978048404,0.0,24048.0,0,20,1,15141,201103767,,,194.0,,0.0,1.0,4.0,0.0,1.0,1.0,2081.4732903042905,0.0,1340.0,0.0,0.0,26166.0,0,5,1,80.0,1,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2043.6721849821627,0.08498304162434143,0.07810411163273571,26166.0,8,4,8,8_1,8_1,8_1_0 -3768,2,58.0,2,0.0,8,111,4,35,37,10.0,0.0,0.0,3274.3366660328575,0.0,0.0,77551.0,20,30,1,15142,201103768,,,423.0,,2.0,0.0,6.0,3.0,5.0,2.6,1772.0504486732684,0.0,2400.0,0.0,0.0,111344.0,1,1,2,160.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3274.3366660328575,0.04222172075192915,0.029407392100453168,42824.61538461538,10,5,10,10_1,10_4,10_0_0 -3769,2,48.0,3,0.0,4,112,2,54,21,8.0,2379.684013708323,0.0,646.6814915414893,0.0,0.0,32631.0,50,33,1,15144,201103769,,,354.0,,2.0,3.0,5.0,0.0,2.0,1.5,2483.0011031893305,0.0,474.0,0.0,0.0,41430.0,1,1,2,120.0,9,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3026.3655052498125,0.09274510450950975,0.07304768296523804,27620.0,8,4,8,8_1,8_0,8_0_1 -3770,2,68.0,2,0.0,3,111,1,77,74,9.0,0.0,0.0,1637.1683330164287,0.0,0.0,58799.0,41,42,2,15145,201103770,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3332.8160885674392,0.0,1200.0,0.0,0.0,54719.0,5,5,1,80.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1637.1683330164287,0.027843472389265614,0.029919558709340974,36479.333333333336,9,5,9,9_0,9_3,9_0_1 -3771,1,64.0,4,153.0,1,120,6,0,78,2.0,0.0,0.0,375.18440964959825,0.0,0.0,6138.0,0,70,2,15146,201103771,,,,,0.0,3.0,2.0,0.0,1.0,1.0,3305.334370881484,0.0,275.0,0.0,0.0,10626.0,0,5,3,40.0,0,2.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,375.18440964959825,0.061124863090517796,0.035308150729305314,10626.0,2,1,2_1,2_0_1,2_1_1,2_1_0 -3772,2,67.0,1,0.0,4,112,2,74,74,9.0,1586.456009138882,0.0,854.8616346177877,0.0,356.9834628895596,47603.0,20,20,1,15147,201103772,,,220.0,,0.0,3.0,8.0,0.0,2.0,1.5,1460.6605312689564,332.0,500.0,0.0,0.0,51205.0,5,5,1,170.0,6,0.0,3,9,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2798.3011066462295,0.05878413349255781,0.05464898167456751,34136.666666666664,9,5,9,9_1,9_0,9_0_1 -3773,2,51.0,2,0.0,1,111,6,37,38,10.0,0.0,0.0,728.2874323453394,0.0,1505.351951943926,50279.0,20,31,1,15148,201103773,,,,,3.0,1.0,5.0,2.0,4.0,2.5,1645.5615537761996,1400.0,0.0,0.0,0.0,95805.0,1,1,2,180.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2233.6393842892653,0.04442489676185416,0.023314434364482703,38322.0,10,5,10,10_1,10_4,10_1_0 -3774,2,34.0,3,0.0,9,111,5,85,62,5.0,0.0,693.9631597817199,900.4425831590357,0.0,0.0,31812.0,50,43,1,15149,201103774,,,,,1.0,0.0,5.0,2.0,4.0,2.1,2284.3018670595793,0.0,660.0,0.0,0.0,37421.0,6,1,2,145.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1594.4057429407558,0.05011963230670048,0.042607245742784954,17819.52380952381,5,3,5,5_1,5_3,5_0_0 -3775,2,57.0,3,0.0,5,111,1,74,31,10.0,0.0,0.0,1568.9529858074109,0.0,0.0,38151.0,60,10,2,15152,201103775,,,,,1.0,3.0,6.0,0.0,2.0,1.5,2601.4082597892216,0.0,1150.0,0.0,0.0,157437.0,5,1,2,150.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1568.9529858074109,0.041124819423014096,0.00996559249609311,104958.0,10,5,10,10_0,10_4,10_0_0 -3776,2,33.0,2,0.0,2,111,2,54,65,7.0,0.0,0.0,650.2566360226244,0.0,1344.0642428070767,28222.0,31,43,8,15154,201103776,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3760.009555852807,1250.0,0.0,0.0,0.0,41684.0,1,1,2,75.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1994.320878829701,0.07066546945041816,0.04784379807191491,23157.777777777777,7,4,7,7_0,7_3,7_0_1 -3777,2,41.0,3,0.0,3,112,2,56,47,3.0,0.0,138.792631956344,92.77287220426429,0.0,225.92834170534618,25145.0,50,50,1,15155,201103777,,,430.0,,2.0,0.0,5.0,2.0,4.0,2.5,1124.1699765386384,0.0,68.0,130.0,0.0,35850.0,1,1,2,90.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,457.4938458659544,0.01819422731620419,0.012761334612718394,14340.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -3778,2,72.0,3,0.0,4,400,2,77,46,7.0,1269.1648073111057,55.5170527825376,548.4513915605036,145.98446694806984,0.0,17192.0,71,50,1,15156,201103778,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2343.8989608359593,0.0,402.0,0.0,0.0,35364.0,5,1,1,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2019.1177186022169,0.117445190705108,0.05709528669274451,23576.0,7,4,7,7_1,7_0,7_0_1 -3779,2,30.0,4,0.0,9,111,2,0,84,5.0,0.0,0.0,1473.4514997147858,0.0,0.0,35839.0,0,31,2,15159,201103779,,,252.0,513.0,0.0,0.0,2.0,0.0,1.0,1.0,2747.0284685616134,0.0,1080.0,0.0,0.0,18673.0,0,3,3,50.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1473.4514997147858,0.04111307513364731,0.07890812936939891,18673.0,5,3,5,5_0,5_3,5_0_0 -3780,1,50.0,3,253.0,1,111,2,0,85,1.0,0.0,0.0,409.2920832541072,0.0,828.9832230265395,7398.0,0,71,2,1516,201103780,,,,38.0,0.0,0.0,2.0,0.0,1.0,1.0,3374.8557657956376,0.0,300.0,477.0,0.0,6746.0,0,7,3,30.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1238.2753062806466,0.16737973861592953,0.18355696802262772,6746.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -3781,2,79.0,2,0.0,1,120,2,0,78,7.0,1427.810408224994,0.0,75.03688192991964,0.0,0.0,11169.0,0,70,1,15160,201103781,,,,,0.0,3.0,3.0,0.0,2.0,1.5,3357.7114296270984,0.0,55.0,0.0,0.0,32986.0,0,5,1,70.0,0,3.0,5,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1502.8472901549137,0.1345552234000281,0.045560155525220206,21990.666666666668,7,4,7,7_1,7_1,7_1_0 -3782,2,58.0,3,0.0,5,112,5,78,77,9.0,0.0,1387.9263195634398,1452.9868955520806,0.0,0.0,42493.0,50,70,1,15161,201103782,,,613.0,,2.0,2.0,5.0,0.0,4.0,2.5,1035.2016631596293,0.0,1065.0,0.0,0.0,77175.0,5,5,1,170.0,9,0.0,5,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2840.9132151155204,0.06685602840739699,0.03681131474072589,30870.0,9,5,9,9_1,9_0,9_0_0 -3783,2,76.0,3,0.0,3,111,6,0,75,6.0,2633.5169751705444,0.0,657.5959470949322,26.06865481215533,0.0,24259.0,0,31,1,15163,201103783,,,211.0,,0.0,1.0,3.0,0.0,1.0,1.0,2786.968269425129,0.0,482.0,0.0,0.0,19578.0,0,5,5,80.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3317.1815770776316,0.136740243912677,0.16943413919080763,19578.0,6,3,6,6_1,6_4,6_0_1 -3784,1,32.0,2,10.0,9,111,2,31,55,10.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,20452.0,10,50,2,15164,201103784,,,160.0,460.0,2.0,0.0,3.0,0.0,2.0,1.5,1953.2565369865476,1200.0,0.0,0.0,0.0,63020.0,1,1,3,62.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1914.548043676513,0.09361177604520404,0.030380007040249336,42013.333333333336,10,5,10,10_0,10_2,10_0_0 -3785,2,46.0,2,0.0,6,111,2,0,42,9.0,0.0,0.0,477.50743046312505,0.0,0.0,36943.0,0,31,2,15165,201103785,,,250.0,555.0,1.0,0.0,2.0,0.0,1.0,1.0,2792.442830007334,0.0,350.0,0.0,0.0,32597.0,0,1,3,55.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,477.50743046312505,0.012925518514011452,0.014648815242602848,32597.0,9,5,9,9_0,9_3,9_0_0 -3786,2,33.0,3,0.0,1,111,4,0,52,6.0,0.0,0.0,477.50743046312505,0.0,0.0,18457.0,0,50,2,15166,201103786,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3120.1605407434918,0.0,350.0,0.0,0.0,21271.0,0,1,2,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,477.50743046312505,0.025871345855942193,0.022448753253872647,21271.0,6,3,6,6_0,6_4,6_1_0 -3787,1,38.0,3,111.0,8,211,2,85,67,4.0,0.0,0.0,1635.8040260722482,0.0,0.0,32240.0,60,60,1,15167,201103787,,,360.0,,1.0,0.0,5.0,3.0,5.0,2.6,1783.2951364707187,0.0,1199.0,0.0,0.0,41168.0,6,1,2,95.0,2,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1635.8040260722482,0.050738338277675196,0.03973484322950467,15833.846153846152,4,2,4_1,4_1_1,4_1_1,4_0_0 -3788,2,63.0,3,0.0,5,112,5,77,11,5.0,0.0,277.585263912688,2504.867549515136,71.25432315322456,0.0,17126.0,50,50,1,15169,201103788,,,120.0,,1.0,2.0,5.0,0.0,2.0,1.5,1909.4797200559822,0.0,1836.0,0.0,0.0,28460.0,5,1,1,160.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2853.7071365810484,0.16663010256808644,0.10027080592343811,18973.333333333332,5,3,5,5_1,5_0,5_0_0 -3789,2,72.0,1,0.0,8,111,4,75,75,9.0,0.0,0.0,2094.390455277217,0.0,1452.6646336258887,65400.0,41,41,2,15171,201103789,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2367.5201379161563,1351.0,1020.0,0.0,0.0,54369.0,5,5,1,97.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3547.0550889031056,0.054236316344084184,0.06524039597754429,36246.0,9,5,9,9_0,9_3,9_0_0 -3790,2,63.0,3,0.0,2,112,2,78,78,5.0,0.0,0.0,520.2053088180996,0.0,1075.2513942456615,16872.0,71,71,1,15175,201103790,,,192.0,,0.0,2.0,3.0,0.0,2.0,1.5,4271.805413067791,1000.0,0.0,0.0,0.0,28424.0,5,5,1,45.0,10,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1595.456703063761,0.0945623934959555,0.05613061859920353,18949.333333333332,5,3,5,5_1,5_1,5_0_1 -3791,2,58.0,4,0.0,5,111,1,0,64,7.0,0.0,0.0,318.511868667794,0.0,99.9983796648465,18698.0,0,70,8,15177,201103791,,,,329.0,1.0,0.0,3.0,0.0,1.0,1.0,2742.374266983118,93.0,198.0,0.0,0.0,22283.0,0,1,3,111.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,418.51024833264046,0.02238262104677722,0.018781593516700643,22283.0,7,4,7,7_0,7_4,7_0_0 -3792,2,63.0,2,0.0,7,221,2,56,75,6.0,1062.925526123051,0.0,613.9381248811608,79.94387475727635,0.0,17973.0,71,70,1,1518,201103792,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2369.0096085533482,0.0,450.0,0.0,0.0,31689.0,1,5,1,100.0,1,3.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1756.807525761488,0.0977470386558442,0.05543903328478299,21126.0,6,3,6,6_1,6_1,6_0_0 -3793,2,73.0,2,0.0,6,111,2,0,72,9.0,0.0,0.0,491.1504999049286,0.0,2210.621928070772,19042.0,0,31,1,15183,201103793,,,462.0,,0.0,0.0,4.0,0.0,1.0,1.0,3429.542335886978,0.0,360.0,1272.0,0.0,30678.0,0,5,1,130.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2701.7724279757003,0.1418849085167367,0.08806872768680163,30678.0,9,5,9,9_1,9_4,9_0_0 -3794,2,30.0,3,0.0,4,111,1,0,56,3.0,0.0,0.0,245.5752499524643,0.0,260.6865481215533,13830.0,0,71,2,15184,201103794,,,,233.0,1.0,0.0,2.0,0.0,1.0,1.0,2743.888343389804,0.0,180.0,150.0,0.0,14530.0,0,1,3,41.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,506.26179807401763,0.03660605915213432,0.034842518793807134,14530.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -3795,1,44.0,4,381.0,5,111,1,85,63,1.0,0.0,0.0,682.1534720901786,0.0,868.9551604051776,4817.0,71,71,2,15186,201103795,,,500.0,,1.0,2.0,4.0,2.0,4.0,2.1,2769.7458100604103,0.0,500.0,500.0,0.0,15602.0,6,4,3,60.0,7,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1551.1086324953562,0.3220071896398913,0.09941729473755648,7429.523809523809,1,1,1_1,1_0_1,1_2_1,1_0_0 -3796,2,56.0,4,0.0,1,300,6,0,65,5.0,0.0,0.0,918.1785734333804,43.44775802025888,0.0,10891.0,0,50,1,15187,201103796,,,156.0,,1.0,1.0,3.0,0.0,1.0,1.0,1591.8188423747215,0.0,673.0,0.0,0.0,18231.0,0,1,2,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,961.6263314536393,0.08829550376031947,0.05274676822190989,18231.0,5,3,5,5_1,5_0,5_1_0 -3797,2,52.0,4,0.0,1,300,4,64,62,4.0,0.0,0.0,1050.5163470188752,0.0,0.0,23297.0,50,50,1,15189,201103797,,,410.0,,3.0,1.0,5.0,2.0,4.0,2.3,1046.6124852689159,0.0,770.0,0.0,0.0,34920.0,1,1,1,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1050.5163470188752,0.04509234437991481,0.030083515092178558,15182.608695652176,4,2,4_0,4_1_0,4_0_0,4_1_0 -3798,2,76.0,3,0.0,7,400,2,0,71,3.0,0.0,0.0,1075.0738720141214,50.3993993035003,0.0,21747.0,0,70,1,1519,201103798,,,130.0,,0.0,4.0,4.0,0.0,1.0,1.0,3059.187246384731,0.0,788.0,0.0,0.0,14009.0,0,5,2,98.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1125.4732713176218,0.05175303588162145,0.0803393012575931,14009.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -3799,2,74.0,3,0.0,1,112,2,71,71,6.0,2538.3296146222115,0.0,1227.8762497623215,347.58206416207105,0.0,21082.0,70,70,1,15190,201103799,,,130.0,,0.0,1.0,3.0,0.0,2.0,1.5,1460.14286462936,0.0,900.0,0.0,0.0,30543.0,5,5,1,80.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4113.787928546604,0.19513271646649294,0.1346884041694203,20362.0,6,3,6,6_1,6_0,6_1_0 -3800,1,54.0,5,79.0,2,111,1,63,56,2.0,0.0,0.0,335.6195082683679,0.0,229.4041623469669,18231.0,50,71,2,15192,201103800,,,,161.0,2.0,6.0,2.0,0.0,2.0,1.5,2848.6595413555074,0.0,246.0,132.0,0.0,16308.0,1,1,3,41.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,565.0236706153348,0.03099246725990537,0.03464702419765359,10872.0,2,1,2_1,2_0_1,2_4_1,2_0_1 -3801,2,31.0,3,0.0,2,111,2,54,54,8.0,0.0,0.0,1773.5990274344645,0.0,0.0,41981.0,41,41,1,15194,201103801,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3470.313171635027,0.0,1300.0,0.0,0.0,39764.0,1,1,2,85.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1773.5990274344645,0.042247660309055635,0.04460313417750891,26509.333333333332,8,4,8,8_1,8_3,8_0_1 -3802,2,36.0,1,0.0,1,111,6,0,63,6.0,0.0,0.0,613.9381248811608,0.0,686.4745767200903,31827.0,0,50,8,15196,201103802,,,,315.0,1.0,0.0,2.0,0.0,1.0,1.0,2187.6221583428905,0.0,450.0,395.0,0.0,20464.0,0,1,3,57.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1300.4127016012512,0.04085878975716377,0.06354635953876325,20464.0,6,3,6,6_0,6_2,6_1_0 -3803,2,31.0,4,0.0,6,400,2,85,67,2.0,0.0,111.0341055650752,982.3009998098572,104.27461924862132,0.0,23320.0,71,43,1,15197,201103803,,,360.0,,1.0,0.0,6.0,2.0,4.0,2.1,2958.4111636547873,0.0,720.0,0.0,0.0,25209.0,6,1,1,110.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1197.6097246235538,0.051355477042176405,0.0475072285542288,12004.285714285714,2,1,2_0,2_1_0,2_0_0,2_0_0 -3804,2,42.0,3,0.0,1,111,6,0,46,3.0,0.0,0.0,165.08114024582324,0.0,0.0,18008.0,0,50,2,15198,201103804,,,,,1.0,0.0,2.0,1.0,2.0,1.3,3365.241670870132,0.0,121.0,0.0,0.0,18658.0,0,1,2,19.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,165.08114024582324,0.00916710019134958,0.008847740392637112,14352.307692307691,3,2,3_0,3_0_0,3_4_0,3_1_0 -3805,2,34.0,3,0.0,99,111,4,0,52,6.0,0.0,0.0,259.2183193942679,0.0,0.0,19100.0,0,41,2,15199,201103805,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2938.101548524232,0.0,190.0,0.0,0.0,20952.0,0,1,3,29.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,259.2183193942679,0.013571639758862193,0.012372008371242263,20952.0,6,3,6,6_0,6_4,6_0_0 -3806,1,52.0,5,240.0,8,111,2,0,52,2.0,0.0,0.0,491.1504999049286,0.0,0.0,7788.0,0,60,2,1520,201103806,,,,80.0,1.0,0.0,1.0,0.0,1.0,1.0,3300.154323339386,0.0,360.0,0.0,0.0,9510.0,0,1,3,30.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,491.1504999049286,0.0630650359405404,0.051645688738688605,9510.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -3807,2,29.0,3,0.0,2,111,2,0,48,6.0,0.0,0.0,341.0767360450893,0.0,921.0924700294883,34105.0,0,31,2,15200,201103807,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4213.8715626276235,0.0,250.0,530.0,0.0,20351.0,0,1,2,68.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1262.1692060745777,0.03700833326710388,0.06202000914326459,20351.0,6,3,6,6_0,6_3,6_0_1 -3808,1,31.0,4,115.0,2,111,2,22,46,2.0,0.0,0.0,477.50743046312505,0.0,156.41192887293198,26956.0,50,50,2,15201,201103808,,,,336.0,2.0,2.0,4.0,1.0,3.0,1.8,1474.670945934249,0.0,350.0,90.0,0.0,20896.0,1,1,3,70.0,5,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,633.919359336057,0.023516818494437493,0.03033687592534729,11608.888888888889,2,1,2_1,2_0_1,2_2_1,2_0_1 -3809,2,83.0,3,0.0,4,300,2,77,78,5.0,0.0,0.0,927.728722042643,0.0,2033.3550753481156,11945.0,70,71,1,15204,201103809,,,309.0,,0.0,2.0,6.0,0.0,2.0,1.5,2631.3707215510944,0.0,680.0,1170.0,0.0,27306.0,5,5,1,100.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2961.0837973907587,0.2478931600996868,0.10844077482570712,18204.0,5,3,5,5_1,5_0,5_0_1 -3810,2,33.0,3,0.0,6,111,2,85,38,7.0,0.0,0.0,764.011888741,0.0,1772.6685272265624,64026.0,12,12,1,15205,201103810,,,,,1.0,0.0,5.0,3.0,5.0,2.4,4152.32066645658,0.0,560.0,1020.0,0.0,52002.0,6,1,2,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2536.6804159675626,0.039619536062967586,0.04878043952093309,21667.5,6,3,6,6_1,6_4,6_0_0 -3811,2,66.0,4,0.0,1,111,2,0,77,5.0,0.0,0.0,477.50743046312505,0.0,1876.9431464751838,13246.0,0,60,2,15206,201103811,,,,330.0,0.0,5.0,3.0,0.0,1.0,1.0,3366.4471518086993,0.0,350.0,1080.0,0.0,17192.0,0,5,3,60.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2354.4505769383086,0.17774804295170682,0.13695035929143257,17192.0,5,3,5,5_0,5_2,5_1_0 -3812,2,24.0,3,0.0,4,111,1,56,63,5.0,0.0,0.0,1432.5222913893751,0.0,0.0,19395.0,50,42,1,15209,201103812,,,,670.0,2.0,0.0,6.0,0.0,2.0,1.5,2768.288386735031,0.0,1050.0,0.0,0.0,27685.0,1,1,3,86.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1432.5222913893751,0.07386039140960944,0.05174362620153062,18456.666666666668,5,3,5,5_1,5_2,5_0_1 -3813,2,58.0,3,0.0,7,112,2,77,37,7.0,0.0,610.6875806079136,2102.3970009819304,139.0328256648284,0.0,32270.0,50,60,1,1521,201103813,,,222.0,,1.0,2.0,5.0,0.0,2.0,1.5,1580.1295008060727,0.0,1541.0,0.0,0.0,36483.0,6,5,1,130.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2852.1174072546723,0.08838293793785784,0.07817661396416611,24322.0,7,4,7,7_1,7_0,7_0_0 -3814,2,30.0,1,0.0,8,111,2,43,43,10.0,0.0,0.0,849.9632262243625,0.0,1948.1974696284083,52246.0,33,33,2,15210,201103814,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2336.5831298531853,0.0,623.0,1121.0,0.0,61776.0,1,1,2,150.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2798.160695852771,0.053557414842337614,0.04529527155938829,41184.0,10,5,10,10_0,10_3,10_0_0 -3815,1,32.0,2,461.0,5,400,2,69,52,6.0,0.0,0.0,2114.6757634795536,1849.136581342218,0.0,37735.0,50,50,1,15211,201103815,,,250.0,,2.0,0.0,4.0,4.0,6.0,2.7,1051.5089599260182,0.0,1550.0,0.0,0.0,57049.0,1,1,3,90.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3963.8123448217716,0.10504339061406577,0.06948083831130733,21129.25925925926,6,3,6,6_1,6_0,6_0_0 -3816,2,83.0,3,0.0,99,112,1,0,74,8.0,0.0,0.0,341.0767360450893,0.0,121.65372245672486,31527.0,0,50,2,15216,201103816,,,,,0.0,1.0,5.0,0.0,1.0,1.0,3268.936441397758,0.0,250.0,70.0,0.0,28660.0,0,5,1,79.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,462.73045850181416,0.014677275303765476,0.016145514951214728,28660.0,8,4,8,8_0,8_2,8_0_0 -3817,1,23.0,4,201.0,2,111,4,0,84,1.0,0.0,0.0,545.7227776721429,0.0,0.0,13111.0,0,10,2,15217,201103817,,,,94.0,0.0,0.0,1.0,0.0,1.0,1.0,2865.9123933017527,0.0,400.0,0.0,0.0,5420.0,0,3,3,21.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,545.7227776721429,0.04162327646038768,0.10068685934910386,5420.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -3818,2,74.0,3,0.0,1,300,5,0,77,6.0,2268.6320930686015,1526.718951519784,66.85104026483751,86.89551604051776,0.0,22842.0,0,70,1,15219,201103818,,,80.0,,0.0,7.0,3.0,0.0,1.0,1.0,1808.3513331445959,0.0,49.0,0.0,0.0,20010.0,0,5,1,100.0,0,0.0,1,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3949.097600893741,0.17288755804630684,0.1973562019437152,20010.0,6,3,6,6_1,6_0,6_1_0 -3819,2,59.0,4,0.0,4,111,2,77,62,3.0,0.0,0.0,613.9381248811608,0.0,1835.2332987757352,24817.0,70,70,1,1522,201103819,,,324.0,,1.0,2.0,4.0,1.0,3.0,2.0,1028.2224649689886,0.0,450.0,1056.0,0.0,29061.0,6,1,1,80.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2449.171423656896,0.09868926234665334,0.08427691489132845,14530.5,3,2,3_0,3_1_0,3_2_0,3_0_1 -3820,2,54.0,1,0.0,1,111,1,0,37,10.0,0.0,0.0,682.1534720901786,0.0,104.27461924862132,54810.0,0,12,2,15221,201103820,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2556.708635999302,0.0,500.0,60.0,0.0,113323.0,0,1,2,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,786.4280913388,0.014348259283685457,0.006939704131895555,113323.0,10,5,10,10_0,10_4,10_1_0 -3821,1,37.0,3,125.0,7,400,2,46,21,3.0,0.0,0.0,2455.752499524643,4170.984769944853,0.0,41668.0,50,50,1,15222,201103821,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2395.762637597888,0.0,1800.0,0.0,0.0,29358.0,1,1,2,160.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,6626.737269469496,0.15903660529589844,0.22572168640471066,13980.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -3822,2,57.0,2,0.0,8,120,4,54,46,5.0,0.0,0.0,1588.0532830259358,0.0,0.0,35171.0,43,50,1,15223,201103822,,,347.0,,2.0,3.0,5.0,0.0,2.0,1.5,1852.744254655323,0.0,1164.0,0.0,0.0,27778.0,1,1,2,95.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1588.0532830259358,0.045152349464784504,0.057169460833247025,18518.666666666668,5,3,5,5_1,5_0,5_0_0 -3823,2,37.0,3,0.0,5,111,1,46,37,9.0,0.0,0.0,341.0767360450893,0.0,0.0,26665.0,31,41,2,15225,201103823,,,,750.0,2.0,0.0,2.0,0.0,2.0,1.5,3017.9688583035263,0.0,250.0,0.0,0.0,44200.0,1,1,3,43.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,341.0767360450893,0.01279117705025649,0.007716668236314238,29466.666666666668,9,5,9,9_0,9_4,9_0_0 -3824,2,33.0,4,0.0,4,111,1,42,33,6.0,0.0,0.0,442.03544991443573,0.0,201.5975972140012,40619.0,31,31,2,15228,201103824,,,,352.0,2.0,0.0,3.0,2.0,4.0,2.1,3662.978313416401,0.0,324.0,116.0,0.0,43889.0,1,1,3,75.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,643.6330471284369,0.01584561528172621,0.01466501964338301,20899.52380952381,6,3,6,6_0,6_4,6_0_1 -3825,2,49.0,3,0.0,1,111,2,46,46,4.0,2538.3296146222115,416.377895869032,2182.8911106885716,0.0,0.0,64536.0,31,50,1,15229,201103825,,,,,2.0,0.0,4.0,3.0,5.0,2.8,1642.4483937064156,0.0,1600.0,0.0,0.0,45314.0,1,1,2,110.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5137.598621179815,0.07960825928442754,0.11337773361830374,16183.57142857143,4,2,4_0,4_1_0,4_3_0,4_1_0 -3826,2,35.0,3,0.0,8,111,2,43,33,9.0,0.0,0.0,0.0,0.0,0.0,62025.0,31,20,1,1523,201103826,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2393.645209653085,0.0,0.0,0.0,0.0,69051.0,1,1,2,80.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0.0,0.0,0.0,32881.42857142857,9,5,9,9_1,9_4,9_0_0 -3827,2,52.0,2,0.0,6,111,2,52,63,8.0,0.0,0.0,818.5841665082144,0.0,1598.8774951455268,49411.0,50,50,1,15231,201103827,,,700.0,,2.0,3.0,5.0,0.0,2.0,1.5,1956.5832613975863,0.0,600.0,920.0,0.0,40442.0,1,1,1,120.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2417.4616616537414,0.04892557652453384,0.05977601655837351,26961.333333333332,8,4,8,8_1,8_3,8_0_0 -3828,2,58.0,3,0.0,3,221,2,78,77,2.0,0.0,0.0,1678.0975413418394,0.0,747.3014379484528,17342.0,71,71,1,15232,201103828,,,240.0,,0.0,0.0,5.0,1.0,3.0,2.0,2795.14981747974,0.0,1230.0,430.0,0.0,23960.0,6,5,1,90.0,1,3.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2425.398979290292,0.13985693572196356,0.10122700247455309,11980.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -3829,2,55.0,4,0.0,4,111,2,0,52,8.0,0.0,0.0,612.5738179369804,0.0,4035.4277649216447,20914.0,0,10,1,15235,201103829,,,,,1.0,1.0,5.0,2.0,3.0,2.0,914.693349935731,0.0,449.0,2322.0,0.0,51442.0,0,1,1,120.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4648.001582858625,0.22224354895565768,0.09035421606583384,25721.0,8,4,8,8_1,8_2,8_0_1 -3830,2,38.0,3,0.0,9,111,2,52,38,6.0,0.0,0.0,764.011888741,0.0,1699.6762937525275,41847.0,20,31,1,15238,201103830,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2345.5076449016296,0.0,560.0,978.0,0.0,42019.0,1,1,2,83.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2463.6881824935276,0.05887371095881491,0.05863271811546033,20009.04761904762,6,3,6,6_1,6_4,6_0_0 -3831,1,28.0,3,274.0,4,111,1,85,63,1.0,0.0,0.0,409.2920832541072,0.0,156.41192887293198,27400.0,71,50,2,1524,201103831,,,,33.0,1.0,0.0,4.0,3.0,5.0,2.4,2255.600557240881,0.0,300.0,90.0,0.0,21431.0,7,4,3,90.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,565.7040121270392,0.020646131829453983,0.026396528959313107,8929.583333333334,1,1,1_1,1_0_1,1_3_1,1_0_1 -3832,2,51.0,2,0.0,6,112,4,63,62,7.0,0.0,0.0,1346.5709539060126,0.0,0.0,39005.0,71,50,1,15240,201103832,,,,,3.0,0.0,6.0,0.0,3.0,2.0,2838.5465442158143,0.0,987.0,0.0,0.0,47425.0,1,1,1,94.0,9,2.0,5,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1346.5709539060126,0.03452303432652257,0.028393694336447287,23712.5,7,4,7,7_1,7_1,7_0_0 -3833,2,76.0,3,0.0,1,111,2,0,86,4.0,0.0,0.0,321.97643882656433,0.0,1416.3969114604395,14010.0,0,70,1,15241,201103833,,,245.0,,0.0,0.0,4.0,0.0,1.0,1.0,2195.6981386847597,0.0,236.0,815.0,0.0,15032.0,0,5,1,72.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1738.3733502870039,0.12408089580920799,0.11564484767742175,15032.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -3834,1,22.0,2,203.0,7,111,4,0,84,1.0,0.0,0.0,76.4011888741,0.0,0.0,18731.0,0,20,2,15242,201103834,,,,397.0,0.0,0.0,1.0,0.0,1.0,1.0,3057.7276952212787,0.0,56.0,0.0,0.0,5062.0,0,3,3,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,76.4011888741,0.00407886332145107,0.01509308353893718,5062.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -3835,2,49.0,4,0.0,4,111,2,0,56,2.0,0.0,0.0,527.9867873977983,0.0,1496.340786217716,9278.0,0,70,1,15243,201103835,,,214.0,,1.0,3.0,5.0,0.0,1.0,1.0,1663.7491736245522,0.0,387.0,861.0,0.0,9718.0,0,1,2,92.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2024.3275736155142,0.2181857699520925,0.2083070151899068,9718.0,1,1,1_0,1_1_0,1_3_0,1_0_1 -3836,1,41.0,3,577.0,8,111,2,0,85,1.0,0.0,0.0,1023.230208135268,0.0,2106.3473088221504,12982.0,0,71,1,15244,201103836,,,,,0.0,0.0,5.0,7.0,8.0,3.9,1610.4527328596155,0.0,750.0,1212.0,0.0,32254.0,0,6,3,80.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,3129.577516957418,0.2410705220272237,0.09702912869589564,8270.25641025641,1,1,1_1,1_1_1,1_2_1,1_0_0 -3837,2,53.0,3,0.0,1,111,2,74,37,7.0,0.0,0.0,422.93515269591074,0.0,1087.9318608272824,27756.0,10,10,2,15245,201103837,,,,,1.0,0.0,2.0,0.0,2.0,1.5,6055.10953446565,0.0,310.0,626.0,0.0,35530.0,6,1,2,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1510.8670135231932,0.0544338886555409,0.04252369866375438,23686.666666666668,7,4,7,7_0,7_4,7_1_0 -3838,2,58.0,3,0.0,6,212,4,55,47,9.0,0.0,346.98157989085996,3027.3971091362127,0.0,0.0,38479.0,50,41,1,15247,201103838,,,290.0,,2.0,2.0,5.0,0.0,2.0,1.5,1417.5978303518411,0.0,2219.0,0.0,0.0,47584.0,1,1,1,88.0,1,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3374.3786890270726,0.08769403282380188,0.07091414528049497,31722.666666666668,9,5,9,9_1,9_0,9_0_0 -3839,2,32.0,2,0.0,1,111,4,52,37,10.0,0.0,0.0,1091.4455553442858,0.0,0.0,27747.0,20,20,2,15248,201103839,,,260.0,577.0,2.0,0.0,3.0,0.0,2.0,1.5,3011.0853363781907,0.0,800.0,0.0,0.0,59141.0,1,1,3,54.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1091.4455553442858,0.0393356238636352,0.018454972951831822,39427.333333333336,10,5,10,10_0,10_4,10_1_0 -3840,2,70.0,4,0.0,5,112,2,78,78,7.0,1502.3738406545215,0.0,2406.63744953415,218.97670042210476,0.0,63825.0,71,71,1,1525,201103840,,,430.0,,2.0,4.0,6.0,2.0,4.0,2.5,2702.304627099587,0.0,1764.0,0.0,0.0,58810.0,5,5,1,113.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4127.987990610776,0.06467666260259736,0.0701919399865801,23524.0,7,4,7,7_1,7_0,7_0_0 -3841,2,52.0,4,0.0,1,112,6,22,46,8.0,0.0,0.0,613.9381248811608,76.46805411565563,0.0,44154.0,70,60,1,15251,201103841,,,530.0,,2.0,3.0,3.0,0.0,2.0,1.5,2299.138191622043,0.0,450.0,0.0,0.0,41560.0,1,1,2,64.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,690.4061789968164,0.015636322394274954,0.016612275721771326,27706.666666666668,8,4,8,8_1,8_0,8_1_0 -3842,1,43.0,4,367.0,4,111,1,63,67,1.0,0.0,0.0,682.1534720901786,180.74267336427695,0.0,24737.0,71,50,2,15252,201103842,,,,,2.0,3.0,5.0,4.0,6.0,2.9,954.2275188978971,0.0,500.0,0.0,0.0,22254.0,4,4,3,98.0,6,4.0,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,862.8961454544556,0.03488281301105452,0.038774878469239486,7673.793103448276,1,1,1_1,1_0_1,1_2_1,1_0_1 -3843,2,76.0,3,0.0,2,111,2,0,78,5.0,0.0,0.0,818.5841665082144,0.0,1216.5372245672486,8252.0,0,71,1,15253,201103843,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3296.794870823314,0.0,600.0,700.0,0.0,18283.0,0,5,3,50.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2035.121391075463,0.24662159368340558,0.11131222398268681,18283.0,5,3,5,5_1,5_3,5_0_1 -3844,2,31.0,3,0.0,99,111,4,0,52,2.0,0.0,0.0,971.3865442564144,0.0,0.0,18901.0,0,30,2,15255,201103844,,,,595.0,1.0,0.0,3.0,1.0,2.0,1.3,2835.9203130933424,0.0,712.0,0.0,0.0,12417.0,0,1,3,93.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,971.3865442564144,0.05139339422551264,0.07823037321868521,9551.538461538461,1,1,1_0,1_0_0,1_3_0,1_0_0 -3845,2,44.0,3,0.0,2,111,1,85,53,6.0,0.0,0.0,732.6328290248518,0.0,0.0,87274.0,41,12,2,15256,201103845,,,,838.0,2.0,0.0,6.0,5.0,7.0,3.6,1886.3677145991585,0.0,537.0,0.0,0.0,74786.0,6,1,3,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,732.6328290248518,0.008394628744240573,0.00979639008671211,20773.888888888887,6,3,6,6_0,6_4,6_0_1 -3846,1,39.0,3,240.0,5,111,1,85,68,2.0,0.0,0.0,191.00297218525,0.0,194.64595593075978,16389.0,31,71,2,15257,201103846,,,,76.0,1.0,0.0,3.0,2.0,4.0,2.1,3918.0777833628263,0.0,140.0,112.0,0.0,23050.0,6,4,3,64.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,385.64892811600976,0.023530961505644626,0.01673097302021734,10976.190476190475,2,1,2_1,2_0_1,2_2_1,2_0_0 -3847,2,62.0,3,0.0,9,400,2,77,78,7.0,0.0,0.0,1768.141799657743,55.61313026593137,0.0,73510.0,50,60,1,15259,201103847,,,,,0.0,2.0,4.0,0.0,2.0,1.5,4080.886155224221,0.0,1296.0,0.0,0.0,36341.0,5,5,1,166.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1823.7549299236744,0.02480961678579342,0.050184500424415246,24227.333333333332,7,4,7,7_1,7_0,7_0_0 -3848,2,53.0,2,0.0,1,111,2,0,46,6.0,0.0,0.0,896.576618640608,0.0,1711.5525597070146,40818.0,0,12,8,15260,201103848,,,,,1.0,0.0,6.0,0.0,1.0,1.0,4038.6515259244024,622.0,420.0,600.0,0.0,19428.0,0,1,1,120.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2608.1291783476227,0.0638965451111672,0.13424589141175738,19428.0,6,3,6,6_0,6_4,6_1_0 -3849,2,50.0,3,0.0,6,112,4,56,48,4.0,0.0,0.0,3196.437235432609,145.98446694806984,1925.7752470939793,66605.0,60,60,1,15261,201103849,,,350.0,,3.0,0.0,4.0,2.0,4.0,2.5,2169.2671109243292,1791.0,1660.0,0.0,0.0,37274.0,1,1,1,110.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5268.196949474658,0.07909611815140993,0.1413370432332097,14909.6,3,2,3_0,3_1_0,3_0_0,3_0_0 -3850,2,51.0,4,0.0,1,111,2,0,67,1.0,0.0,97.1548423694408,600.2950554393572,0.0,799.4387475727634,6583.0,0,70,1,15262,201103850,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1918.2222481311592,0.0,440.0,460.0,0.0,5670.0,0,4,2,47.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1496.8886453815612,0.2273870037037158,0.2640015247586528,5670.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -3851,2,35.0,2,0.0,2,112,2,31,38,10.0,0.0,693.9631597817199,1227.8762497623215,90.37133668213848,0.0,36601.0,10,12,1,15265,201103851,,,280.0,,2.0,0.0,6.0,0.0,2.0,1.5,1720.318648466757,0.0,900.0,0.0,0.0,68316.0,1,1,2,127.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2012.21074622618,0.054976933587229306,0.029454457904827272,45544.0,10,5,10,10_1,10_0,10_0_1 -3852,2,27.0,3,0.0,2,111,4,0,46,10.0,0.0,0.0,422.93515269591074,0.0,208.54923849724264,26518.0,0,31,2,15266,201103852,,,,560.0,1.0,0.0,1.0,0.0,1.0,1.0,3729.1343308842856,0.0,310.0,120.0,0.0,45321.0,0,1,3,25.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,631.4843911931534,0.023813424511394277,0.013933593503964023,45321.0,10,5,10,10_0,10_4,10_0_1 -3853,2,56.0,3,0.0,1,300,2,85,13,9.0,0.0,1292.1594035135627,1432.5222913893751,0.0,0.0,17667.0,60,12,1,15267,201103853,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1271.8087750545594,0.0,1050.0,0.0,0.0,55432.0,6,1,1,150.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2724.681694902938,0.1542243558557162,0.049153588088160956,36954.666666666664,9,5,9,9_1,9_0,9_1_0 -3854,2,29.0,4,0.0,5,111,2,0,85,2.0,0.0,0.0,341.0767360450893,0.0,1911.7013528913908,29862.0,0,50,2,15268,201103854,,,,418.0,0.0,0.0,2.0,0.0,1.0,1.0,3546.0001520736278,0.0,250.0,1100.0,0.0,9883.0,0,4,3,57.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2252.7780889364803,0.07543962524065637,0.22794476261625826,9883.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -3855,2,65.0,3,0.0,4,112,2,0,77,5.0,3172.912018277764,0.0,409.2920832541072,93.84715732375918,0.0,40084.0,0,50,1,15271,201103855,,,150.0,,0.0,2.0,6.0,0.0,1.0,1.0,1509.0146566936617,0.0,300.0,0.0,0.0,17532.0,0,5,5,90.0,7,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3676.0512588556307,0.09170869321563793,0.20967666317908001,17532.0,5,3,5,5_1,5_1,5_0_1 -3856,0,33.0,3,0.0,99,111,2,54,21,1.0,0.0,0.0,0.0,0.0,0.0,18823.0,43,71,8,15273,201103856,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3200.580465236495,0.0,0.0,0.0,0.0,15310.0,4,1,5,54.0,6,4.0,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,8505.555555555555,1,1,1_0,1_0_0,1_2_0,1_0_0 -3857,2,60.0,3,0.0,5,111,2,77,77,5.0,0.0,242.88710592360198,1227.8762497623215,0.0,610.0065226044347,15961.0,50,50,1,15276,201103857,,,338.0,,0.0,3.0,5.0,0.0,2.0,1.5,1950.5093034583667,0.0,900.0,351.0,0.0,27730.0,6,5,1,160.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2080.769878290358,0.13036588423597256,0.07503677887812327,18486.666666666668,5,3,5,5_1,5_3,5_0_0 -3858,1,55.0,3,293.0,3,111,1,56,63,3.0,0.0,0.0,1200.5901108787143,0.0,0.0,43836.0,60,31,2,15277,201103858,,,,211.0,2.0,0.0,6.0,6.0,8.0,3.7,1229.7885343143653,0.0,880.0,0.0,0.0,48301.0,1,1,3,147.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1200.5901108787143,0.027388222257475916,0.024856423487685853,13054.324324324323,3,2,3_1,3_0_1,3_4_1,3_0_1 -3859,2,28.0,1,0.0,99,111,2,0,38,9.0,0.0,0.0,278.3186166127929,0.0,729.9223347403492,22398.0,0,12,2,15279,201103859,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4990.057572263797,0.0,204.0,420.0,0.0,31823.0,0,1,3,24.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1008.2409513531421,0.04501477593325932,0.031682775079443865,31823.0,9,5,9,9_0,9_2,9_0_0 -3860,2,55.0,3,0.0,6,111,4,0,63,1.0,0.0,0.0,1642.62556079315,97.32297796537989,0.0,24015.0,0,50,1,1528,201103860,,,317.0,,1.0,1.0,4.0,1.0,2.0,1.3,1770.624412418902,0.0,1204.0,0.0,0.0,11897.0,0,1,1,98.0,8,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1739.94853875853,0.07245257292352822,0.14625103292918634,9151.538461538461,1,1,1_0,1_1_0,1_2_0,1_0_0 -3861,2,81.0,3,0.0,6,111,4,78,78,4.0,0.0,0.0,2080.5680898750447,0.0,0.0,32427.0,71,70,2,15282,201103861,,,386.0,,0.0,1.0,3.0,0.0,2.0,1.5,2874.6120801901625,0.0,1525.0,0.0,0.0,24890.0,5,5,1,50.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2080.5680898750447,0.0641615965052285,0.08359052189132361,16593.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_0 -3862,2,27.0,3,0.0,2,111,1,0,52,3.0,0.0,0.0,221.01772495721787,0.0,0.0,16481.0,0,20,2,15287,201103862,,,,280.0,1.0,0.0,1.0,0.0,1.0,1.0,2444.5317357421222,0.0,162.0,0.0,0.0,14194.0,0,1,3,20.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,221.01772495721787,0.013410455977017042,0.015571207901734385,14194.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -3863,2,62.0,2,0.0,5,112,2,71,11,2.0,0.0,0.0,982.3009998098572,3109.1215639297257,0.0,39739.0,50,50,1,15288,201103863,,,,,2.0,3.0,6.0,1.0,3.0,2.0,1463.978964225913,0.0,720.0,0.0,0.0,20246.0,5,1,1,135.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4091.422563739583,0.10295736087318712,0.2020854768220677,10123.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -3864,2,31.0,3,0.0,99,112,2,85,85,1.0,0.0,0.0,523.8467459798262,0.0,1082.778154005381,11307.0,60,30,2,15290,201103864,,,120.0,395.0,0.0,0.0,2.0,0.0,2.0,1.5,3123.779633910219,1007.0,0.0,0.0,0.0,5688.0,6,6,3,50.0,9,3.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1606.6248999852073,0.1420911736079603,0.28245866736730085,3792.0,1,1,1_0,1_0_0,1_1_0,1_0_0 -3865,1,22.0,4,35.0,99,111,1,55,56,5.0,0.0,0.0,461.1357471329608,0.0,225.92834170534618,14057.0,41,50,2,15292,201103865,,,,328.0,2.0,0.0,3.0,0.0,2.0,1.5,6781.697787316464,0.0,338.0,130.0,0.0,27621.0,1,1,3,70.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,687.0640888383069,0.04887700710239076,0.02487470000500731,18414.0,5,3,5,5_0,5_2,5_0_0 -3866,2,33.0,2,0.0,9,111,2,47,56,10.0,0.0,0.0,2128.318832921357,0.0,0.0,47279.0,41,60,1,15294,201103866,,,1200.0,,2.0,0.0,5.0,1.0,3.0,1.8,2330.358007670222,0.0,1560.0,0.0,0.0,78563.0,1,1,2,130.0,6,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2128.318832921357,0.04501615586034724,0.027090600319760665,43646.11111111111,10,5,10,10_1,10_2,10_0_0 -3867,1,54.0,4,450.0,2,111,1,56,67,4.0,0.0,0.0,886.7995137172322,0.0,608.2686122836243,64071.0,71,71,2,15295,201103867,,,,,4.0,0.0,5.0,6.0,8.0,4.3,2188.942367153276,0.0,650.0,350.0,0.0,69095.0,1,1,3,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1495.0681260008564,0.023334552699362528,0.021637862739718596,16068.604651162792,4,2,4_1,4_0_1,4_4_1,4_0_1 -3868,2,80.0,3,0.0,6,112,2,0,72,1.0,1078.79008621444,0.0,723.0826804155894,0.0,0.0,11587.0,0,70,1,15298,201103868,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3126.1189369050435,0.0,530.0,0.0,0.0,7717.0,0,5,1,70.0,5,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1801.8727666300292,0.1555081355510511,0.2334939441013385,7717.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -3869,2,32.0,2,0.0,9,221,6,85,21,5.0,0.0,0.0,1513.0164010960161,118.17790181510415,0.0,57448.0,41,31,1,15299,201103869,,,284.0,,1.0,0.0,6.0,2.0,4.0,2.1,4060.1449028453117,0.0,1109.0,0.0,0.0,39734.0,6,1,2,160.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1631.1943029111203,0.028394274873122134,0.0410528590856979,18920.95238095238,5,3,5,5_1,5_1,5_0_0 -3870,2,78.0,3,0.0,4,300,2,71,71,4.0,1386.5625519873831,0.0,818.5841665082144,312.82385774586396,0.0,16392.0,70,70,1,153,201103870,,,127.0,,0.0,5.0,7.0,0.0,2.0,1.5,1797.402643582297,0.0,600.0,0.0,0.0,22066.0,5,5,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2517.9705762414615,0.1536097228063361,0.11411087538482106,14710.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1 -3871,2,47.0,4,0.0,1,111,2,22,22,1.0,0.0,0.0,538.9012429512411,0.0,648.2405496622625,24090.0,60,50,1,1530,201103871,,,800.0,,3.0,0.0,4.0,2.0,4.0,2.5,1955.675172244964,0.0,395.0,373.0,0.0,10645.0,1,1,1,83.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1187.1417926135036,0.049279443445973584,0.11152107023142355,4258.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -3872,2,51.0,3,0.0,1,112,2,67,63,5.0,0.0,0.0,1196.472210281629,0.0,2473.078206765021,20617.0,60,50,1,15301,201103872,,,400.0,,2.0,1.0,5.0,1.0,3.0,2.0,1502.3846814266474,2300.0,0.0,0.0,0.0,35880.0,1,1,1,150.0,5,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3669.55041704665,0.17798663321757047,0.10227286558101031,17940.0,5,3,5,5_1,5_0,5_1_0 -3873,1,26.0,4,212.0,5,111,1,0,84,1.0,0.0,0.0,360.1770332636143,0.0,0.0,12825.0,0,30,2,15304,201103873,,,,43.0,0.0,0.0,1.0,0.0,1.0,1.0,3761.252079256562,0.0,264.0,0.0,0.0,4344.0,0,3,3,33.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,360.1770332636143,0.02808397920184127,0.08291368169051895,4344.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -3874,2,32.0,3,0.0,1,111,2,56,54,7.0,0.0,0.0,573.00891655575,0.0,1668.3939079779411,46063.0,50,50,1,15306,201103874,,,352.0,344.0,2.0,0.0,3.0,1.0,3.0,2.0,1819.4411902485324,0.0,420.0,960.0,0.0,47593.0,1,1,3,91.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2241.4028245336913,0.04865950599252526,0.04709522040076674,23796.5,7,4,7,7_1,7_4,7_1_0 -3875,2,41.0,3,0.0,1,111,1,0,54,9.0,0.0,0.0,573.00891655575,0.0,52.13730962431066,19214.0,0,31,2,15307,201103875,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3738.8783703749205,0.0,420.0,30.0,0.0,32778.0,0,1,2,39.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,625.1462261800607,0.03253597513167798,0.019072128445300526,32778.0,9,5,9,9_0,9_4,9_1_0 -3876,2,40.0,3,0.0,8,111,2,85,37,7.0,0.0,0.0,1053.2449609072357,0.0,2092.4440262556677,41035.0,71,50,1,15308,201103876,,,444.0,,1.0,0.0,5.0,2.0,4.0,2.5,4485.715036894854,0.0,772.0,1204.0,0.0,56310.0,7,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3145.6889871629037,0.07665868130042412,0.05586377174858646,22524.0,7,4,7,7_1,7_4,7_0_0 -3877,1,52.0,3,241.0,4,111,2,56,85,3.0,0.0,0.0,566.1873818348482,0.0,1143.5449910932136,29808.0,50,50,2,1531,201103877,,,258.0,132.0,1.0,1.0,5.0,0.0,2.0,1.5,2914.9662157685634,0.0,415.0,658.0,0.0,19774.0,1,7,3,96.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1709.732372928062,0.057358171394527036,0.08646365798159512,13182.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_1 -3878,1,50.0,4,337.0,2,211,2,0,63,1.0,317.29120182777643,0.0,165.08114024582324,0.0,895.023815217333,13738.0,0,71,2,15310,201103878,,,420.0,,1.0,3.0,3.0,1.0,2.0,1.5,3400.222070382201,0.0,121.0,515.0,0.0,11604.0,0,4,3,80.0,4,3.0,2,2,1,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1377.3961572909327,0.10026176716341044,0.1187001169675054,7736.0,1,1,1_1,1_0_1,1_1_1,1_0_1 -3879,2,34.0,2,0.0,9,112,5,56,64,5.0,0.0,1117.2806872485692,1461.1727372171626,38.23402705782782,0.0,55761.0,50,50,1,15312,201103879,,,300.0,,2.0,0.0,5.0,1.0,3.0,1.8,1517.8862369672233,0.0,1071.0,0.0,0.0,32617.0,1,1,2,110.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2616.6874515235595,0.046926838677992855,0.08022465130219086,18120.555555555555,5,3,5,5_1,5_0,5_0_0 -3880,2,61.0,1,0.0,4,111,1,0,75,3.0,0.0,0.0,410.6563901982875,0.0,0.0,34013.0,0,30,2,15313,201103880,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3363.093065773603,0.0,301.0,0.0,0.0,13391.0,0,5,1,100.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,410.6563901982875,0.012073512780357143,0.030666596236150215,13391.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -3881,2,55.0,3,0.0,99,111,1,0,56,3.0,0.0,0.0,1064.1594164606786,0.0,86.89551604051776,29337.0,0,50,2,15314,201103881,,,,450.0,1.0,1.0,3.0,1.0,2.0,1.5,2973.2533142116617,0.0,780.0,50.0,0.0,18650.0,0,1,3,60.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1151.0549325011964,0.03923560461196429,0.06171876313679337,12433.333333333334,2,1,2_0,2_0_0,2_4_0,2_0_0 -3882,1,70.0,4,295.0,3,111,1,0,75,3.0,0.0,0.0,368.36287492869644,0.0,0.0,10485.0,0,20,2,15315,201103882,,,,46.0,0.0,2.0,1.0,0.0,1.0,1.0,3390.432046515864,0.0,270.0,0.0,0.0,13500.0,0,5,3,34.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,368.36287492869644,0.03513236766129675,0.027286138883607144,13500.0,3,2,3_1,3_0_1,3_4_1,3_0_1 -3883,2,62.0,3,0.0,1,300,2,74,72,6.0,2855.620816449988,0.0,890.6188974185428,385.81609121989885,712.8916743848736,34416.0,70,50,1,15316,201103883,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2129.8901176456393,663.0,400.0,0.0,0.0,31458.0,5,5,1,100.0,0,0.0,3,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4844.947479473303,0.1407760192780481,0.15401320743446192,20972.0,6,3,6,6_1,6_0,6_1_0 -3884,1,39.0,4,276.0,5,111,4,85,67,4.0,0.0,0.0,1424.336449724293,0.0,0.0,43448.0,50,10,2,15317,201103884,,,,92.0,1.0,0.0,3.0,2.0,4.0,2.1,2658.4902430944367,0.0,1044.0,0.0,0.0,31479.0,6,1,3,70.0,7,5.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1424.336449724293,0.03278255500194009,0.04524719494660863,14990.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -3885,1,26.0,2,319.0,8,111,4,54,62,8.0,0.0,0.0,750.3688192991965,0.0,0.0,16904.0,20,43,8,15319,201103885,,,,251.0,2.0,0.0,3.0,0.0,2.0,1.5,3843.519883889087,0.0,550.0,0.0,0.0,43283.0,1,1,3,50.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,750.3688192991965,0.044390015339517065,0.01733634034838612,28855.333333333332,8,4,8,8_0,8_3,8_0_0 -3886,2,46.0,1,0.0,1,111,2,85,37,7.0,0.0,346.98157989085996,1500.737638598393,0.0,2085.4923849724264,68167.0,20,31,1,1532,201103886,,,1400.0,,1.0,0.0,7.0,3.0,5.0,2.8,2607.770257329307,0.0,1100.0,1200.0,0.0,67095.0,6,1,1,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3933.2116034616793,0.057699643573307896,0.05862153071706803,23962.5,7,4,7,7_1,7_4,7_1_0 -3887,2,49.0,3,0.0,2,111,2,22,22,8.0,0.0,0.0,1156.9366068114534,0.0,2391.359100802351,37193.0,50,50,1,15322,201103887,,,334.0,,2.0,1.0,3.0,1.0,3.0,2.0,1311.2427472795196,2224.0,0.0,0.0,0.0,54654.0,1,1,3,80.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3548.2957076138046,0.09540224525082151,0.06492289141899595,27327.0,8,4,8,8_1,8_3,8_0_1 -3888,2,74.0,3,0.0,3,111,1,0,75,7.0,0.0,0.0,1770.6502043359133,0.0,3067.6922277828717,31911.0,0,41,2,15323,201103888,,,,,0.0,0.0,2.0,0.0,1.0,1.0,4030.0689462367422,2853.0,210.0,0.0,0.0,22594.0,0,5,1,57.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4838.342432118785,0.15161989383343627,0.2141428003947413,22594.0,7,4,7,7_0,7_4,7_0_1 -3889,2,31.0,2,0.0,9,112,2,0,47,7.0,0.0,0.0,474.77881657476433,0.0,1369.47333279856,21632.0,0,31,1,15324,201103889,,,80.0,,1.0,0.0,4.0,0.0,1.0,1.0,3697.167482622873,0.0,348.0,788.0,0.0,23624.0,0,1,1,95.0,7,1.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1844.2521493733243,0.08525573915372246,0.07806688746077398,23624.0,7,4,7,7_1,7_1,7_0_0 -3890,2,61.0,1,0.0,5,112,2,42,43,10.0,1464.2988964351882,0.0,975.4794650889554,121.65372245672486,0.0,30812.0,10,33,1,15325,201103890,,,258.0,,2.0,5.0,6.0,0.0,2.0,1.5,1493.503004379791,0.0,715.0,0.0,0.0,76486.0,1,1,1,200.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2561.432083980869,0.08313099065237144,0.03348890102738892,50990.666666666664,10,5,10,10_1,10_0,10_0_0 -3891,0,36.0,4,0.0,2,300,2,0,69,5.0,0.0,0.0,0.0,0.0,0.0,20580.0,0,43,1,15327,201103891,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2847.7674187488856,0.0,0.0,0.0,0.0,18690.0,0,1,5,70.0,0,0.0,1,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,18690.0,5,3,5,5_1,5_0,5_0_1 -3892,1,24.0,3,124.0,6,300,4,85,65,3.0,0.0,0.0,1500.737638598393,0.0,0.0,23810.0,60,50,1,15328,201103892,,,,278.0,1.0,0.0,4.0,2.0,4.0,2.1,2270.647846784528,0.0,1100.0,0.0,0.0,27458.0,6,1,3,60.0,0,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1500.737638598393,0.06302972022672797,0.05465575200664262,13075.238095238095,3,2,3_1,3_1_1,3_1_1,3_0_0 -3893,2,48.0,3,0.0,6,111,1,0,65,5.0,0.0,0.0,458.40713324460006,0.0,0.0,16057.0,0,30,2,15329,201103893,,,,260.0,1.0,0.0,1.0,0.0,1.0,1.0,4758.021734792809,0.0,336.0,0.0,0.0,18753.0,0,1,3,40.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,458.40713324460006,0.028548740938195184,0.024444469324620063,18753.0,5,3,5,5_0,5_2,5_0_0 -3894,2,62.0,1,0.0,4,120,2,0,72,10.0,6345.824036555528,0.0,2427.277970945253,0.0,5017.1230055502565,55618.0,0,50,1,15330,201103894,,,,,0.0,0.0,6.0,0.0,1.0,1.0,4642.800755776199,4666.0,0.0,0.0,0.0,66558.0,0,5,1,130.0,0,3.0,1,4,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,13790.225013051038,0.24794535965067133,0.20719109668335944,66558.0,10,5,10,10_1,10_1,10_0_1 -3895,2,30.0,2,0.0,99,111,1,0,67,6.0,0.0,0.0,545.7227776721429,48.661488982689946,0.0,15551.0,0,42,2,15331,201103895,,,245.0,350.0,1.0,0.0,3.0,0.0,1.0,1.0,2678.5981910966166,0.0,400.0,0.0,0.0,19684.0,0,1,3,55.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,594.3842666548328,0.038221610613776144,0.030196315111503395,19684.0,6,3,6,6_0,6_2,6_0_0 -3896,2,66.0,2,0.0,5,111,2,78,78,4.0,0.0,0.0,449.6819141755392,0.0,1590.8750246717038,21693.0,50,50,1,15332,201103896,,,170.0,,0.0,2.0,5.0,0.0,2.0,1.5,1535.3411497016941,235.0,240.0,770.0,0.0,22536.0,6,5,1,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2040.5569388472431,0.09406522559568724,0.09054654503227029,15024.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -3897,2,56.0,4,0.0,1,400,5,63,21,4.0,0.0,1179.737371628924,2046.460416270536,521.3730962431066,0.0,30636.0,60,50,1,15338,201103897,,,200.0,,2.0,2.0,6.0,0.0,2.0,1.5,4120.895870818676,0.0,1500.0,0.0,0.0,25040.0,1,1,1,135.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3747.5708841425667,0.12232572412007334,0.1496633739673549,16693.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0 -3898,2,63.0,1,0.0,5,111,2,75,74,10.0,0.0,0.0,749.0045123550161,0.0,2669.4302527647055,62724.0,42,31,1,15339,201103898,,,474.0,,0.0,2.0,5.0,0.0,2.0,1.5,1960.2329250286941,0.0,549.0,1536.0,0.0,88318.0,6,5,1,170.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3418.4347651197218,0.05449962956953832,0.03870598026585432,58878.666666666664,10,5,10,10_1,10_3,10_0_0 -3899,2,34.0,3,0.0,4,111,3,35,31,8.0,0.0,0.0,1358.8497164036357,0.0,0.0,48230.0,10,20,2,1534,201103899,,,,,2.0,1.0,5.0,1.0,3.0,1.8,2492.332293070002,0.0,996.0,0.0,0.0,49932.0,1,1,2,120.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1358.8497164036357,0.028174366916932113,0.027214005375383234,27740.0,8,4,8,8_0,8_3,8_0_1 -3900,2,55.0,3,0.0,6,111,6,52,52,8.0,0.0,0.0,0.0,0.0,0.0,42264.0,60,50,1,15340,201103900,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1896.041738525509,0.0,0.0,0.0,0.0,42544.0,1,1,2,76.0,9,7.0,3,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,28362.666666666668,8,4,8,8_1,8_3,8_0_0 -3901,2,32.0,3,0.0,1,111,2,45,47,9.0,0.0,0.0,1200.5901108787143,0.0,0.0,50206.0,20,20,2,15343,201103901,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3375.353498755705,0.0,880.0,0.0,0.0,49998.0,1,1,2,70.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1200.5901108787143,0.02391327950600953,0.02401276272808341,33332.0,9,5,9,9_0,9_3,9_1_0 -3902,2,76.0,4,0.0,6,120,5,0,86,5.0,0.0,485.77421184720396,1978.245069061518,0.0,0.0,23622.0,0,71,1,15344,201103902,,,300.0,,1.0,3.0,5.0,1.0,3.0,2.0,3109.7339951456547,0.0,1450.0,0.0,0.0,34060.0,0,5,1,120.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2464.019280908722,0.10431035817918559,0.07234349033789554,17030.0,5,3,5,5_1,5_0,5_0_0 -3903,2,60.0,4,0.0,1,300,2,42,75,5.0,0.0,0.0,1091.4455553442858,3185.589618045381,0.0,42739.0,20,31,1,15345,201103903,,,,,1.0,2.0,6.0,1.0,3.0,2.0,1393.0456493943645,0.0,800.0,0.0,0.0,35651.0,1,5,1,180.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4277.035173389667,0.10007335626452811,0.11996957093460679,17825.5,5,3,5,5_1,5_0,5_1_0 -3904,2,49.0,3,0.0,7,112,2,69,45,7.0,1054.9932460773566,0.0,1705.3836802254466,0.0,0.0,42978.0,50,41,1,15346,201103904,,,330.0,,2.0,1.0,5.0,1.0,3.0,2.0,1737.981280670507,0.0,1250.0,0.0,0.0,43130.0,1,1,2,130.0,9,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2760.3769263028034,0.06422767290946073,0.06400131987718069,21565.0,6,3,6,6_1,6_0,6_0_0 -3905,2,56.0,4,0.0,1,400,5,0,77,1.0,0.0,277.585263912688,231.93218051066074,88.63342636132812,0.0,11875.0,0,41,1,15347,201103905,,,70.0,,0.0,3.0,5.0,0.0,1.0,1.0,2901.6326234540734,0.0,170.0,0.0,0.0,8758.0,0,7,1,100.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,598.1508707846768,0.05037059964502542,0.06829765594709715,8758.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -3906,2,67.0,1,0.0,4,300,2,77,74,3.0,3569.526020562485,0.0,477.50743046312505,130.34327406077665,0.0,33014.0,70,50,1,15349,201103906,,,360.0,,0.0,3.0,5.0,0.0,2.0,1.5,873.3310854752684,0.0,350.0,0.0,0.0,20022.0,5,5,1,100.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4177.376725086387,0.12653349261181276,0.2086393329880325,13348.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -3907,2,41.0,2,0.0,8,400,2,13,13,7.0,3490.203220105541,111.0341055650752,682.1534720901786,194.64595593075978,0.0,35218.0,41,50,1,15352,201103907,,,,,2.0,0.0,7.0,3.0,5.0,2.4,2374.4945636811053,0.0,500.0,0.0,0.0,59108.0,1,1,2,150.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4478.036753691554,0.12715193235537378,0.07576024825220873,24628.333333333336,7,4,7,7_1,7_0,7_0_0 -3908,2,73.0,1,0.0,1,400,2,0,75,2.0,3256.994186762125,0.0,375.18440964959825,104.27461924862132,0.0,16143.0,0,60,1,15353,201103908,,,,,0.0,0.0,6.0,0.0,1.0,1.0,3377.1980360215075,0.0,275.0,0.0,0.0,11380.0,0,5,1,200.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3736.4532156603445,0.23145965530944337,0.3283350804622447,11380.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -3909,2,75.0,4,0.0,5,111,1,0,75,6.0,0.0,0.0,354.7198054868929,0.0,0.0,17820.0,0,70,2,15354,201103909,,,,,0.0,3.0,1.0,0.0,1.0,1.0,3580.633175164182,0.0,260.0,0.0,0.0,20820.0,0,5,1,31.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,354.7198054868929,0.019905712990285797,0.017037454634336834,20820.0,6,3,6,6_0,6_2,6_0_0 -3910,2,54.0,3,0.0,5,111,4,56,46,8.0,0.0,0.0,1637.1683330164287,264.162368763174,0.0,25074.0,60,31,1,15355,201103910,,,160.0,,2.0,4.0,5.0,0.0,2.0,1.5,1813.0286681145867,0.0,1200.0,0.0,0.0,38493.0,1,1,1,120.0,7,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1901.3307017796028,0.07582877489748754,0.04939419379574475,25662.0,8,4,8,8_1,8_2,8_0_0 -3911,2,64.0,3,0.0,6,112,2,75,75,8.0,0.0,416.377895869032,440.6711429702554,0.0,1671.8697286195618,36769.0,70,41,1,15357,201103911,,,200.0,,0.0,3.0,6.0,0.0,2.0,1.5,2400.7340051284323,0.0,323.0,962.0,0.0,42587.0,5,5,1,130.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2528.9187674588493,0.06877855713940682,0.059382411709180016,28391.333333333332,8,4,8,8_1,8_0,8_0_0 -3912,2,78.0,3,0.0,4,112,2,0,78,3.0,0.0,208.188947934516,1118.731694227893,145.98446694806984,0.0,18401.0,0,71,1,15359,201103912,,,205.0,,0.0,1.0,4.0,0.0,1.0,1.0,2244.1915635546825,0.0,820.0,0.0,0.0,14642.0,0,5,1,71.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1472.9051091104789,0.08004484044945812,0.10059453005808489,14642.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -3913,2,47.0,3,0.0,9,112,2,77,52,8.0,0.0,0.0,729.9042151364911,0.0,1485.9133242928538,30629.0,50,41,1,1536,201103913,,,382.0,500.0,2.0,3.0,5.0,1.0,3.0,2.0,1681.3608016903993,0.0,535.0,855.0,0.0,55090.0,5,1,3,120.0,7,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2215.817539429345,0.07234377679419324,0.04022177417733427,27545.0,8,4,8,8_1,8_1,8_0_0 -3914,2,67.0,3,0.0,9,112,1,75,75,4.0,0.0,0.0,573.00891655575,0.0,0.0,21873.0,50,50,1,15360,201103914,,,333.0,230.0,0.0,2.0,4.0,0.0,2.0,1.5,1145.8912176769493,0.0,420.0,0.0,0.0,24112.0,5,5,3,90.0,9,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,573.00891655575,0.026197088490639144,0.023764470660075896,16074.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -3915,2,59.0,4,0.0,8,112,5,64,53,6.0,0.0,41.637789586903196,1268.8054580877322,0.0,104.27461924862132,42000.0,50,50,1,15361,201103915,,,390.0,,2.0,3.0,5.0,1.0,3.0,2.0,982.8918341594932,0.0,930.0,60.0,0.0,39350.0,1,1,1,105.0,8,1.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1414.7178669232567,0.03368375873626801,0.03595216942625811,19675.0,6,3,6,6_1,6_1,6_0_0 -3916,2,48.0,1,0.0,4,112,2,63,62,7.0,2834.9968883311826,0.0,955.0148609262501,38.23402705782782,0.0,18434.0,50,60,1,15362,201103916,,,214.0,,2.0,0.0,5.0,0.0,2.0,1.5,1523.0113680435568,0.0,700.0,0.0,0.0,32919.0,1,1,1,90.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3828.2457763152606,0.2076730919125128,0.116292893961398,21946.0,7,4,7,7_1,7_0,7_0_1 -3917,2,30.0,2,0.0,2,111,2,48,54,4.0,0.0,0.0,709.4396109737858,0.0,2954.447545377604,68854.0,31,31,1,15363,201103917,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.1,2202.7858037469773,0.0,520.0,1700.0,0.0,34960.0,1,1,2,100.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3663.88715635139,0.05321240823120501,0.10480226419769421,16647.619047619046,4,2,4_0,4_1_0,4_2_0,4_0_1 -3918,1,61.0,1,262.0,99,111,2,0,77,2.0,0.0,0.0,474.77881657476433,0.0,333.6787815955882,18411.0,0,50,2,15364,201103918,,,,1.0,0.0,0.0,4.0,0.0,1.0,1.0,2708.449295423315,0.0,348.0,192.0,0.0,11989.0,0,5,3,64.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,808.4575981703525,0.043911661407329994,0.06743328035452102,11989.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -3919,2,74.0,3,0.0,6,111,4,77,77,8.0,0.0,0.0,1706.7479871696269,0.0,100.7987986070006,28490.0,70,70,1,15365,201103919,,,300.0,,0.0,4.0,4.0,0.0,2.0,1.5,2011.870865931804,0.0,1251.0,58.0,0.0,39336.0,5,5,1,140.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1807.5467857766275,0.06344495562571525,0.045951463945917925,26224.0,8,4,8,8_1,8_4,8_0_0 -3920,2,83.0,1,0.0,6,120,4,74,75,8.0,0.0,277.585263912688,444.76406380279644,0.0,0.0,23426.0,70,41,1,15366,201103920,,,112.0,,0.0,1.0,6.0,0.0,2.0,1.5,3384.775978538517,0.0,326.0,0.0,0.0,40332.0,5,5,1,150.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,722.3493277154844,0.030835367869695398,0.017910079532765157,26888.0,8,4,8,8_1,8_0,8_0_0 -3921,2,62.0,3,0.0,1,112,6,0,78,6.0,0.0,506.59310664065555,3290.7083493630216,90.37133668213848,0.0,21426.0,0,71,1,15367,201103921,,,,,0.0,2.0,7.0,0.0,1.0,1.0,3065.2492824580377,0.0,2412.0,0.0,0.0,19532.0,0,5,1,70.0,7,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3887.6727926858157,0.18144650390580677,0.19904120380328771,19532.0,6,3,6,6_1,6_1,6_1_0 -3922,2,53.0,1,0.0,1,112,4,38,55,8.0,0.0,0.0,195.96956244836502,0.0,66.665586443231,54435.0,33,41,1,15368,201103922,,,,595.0,2.0,1.0,4.0,1.0,3.0,1.8,2364.3100322347086,62.0,120.0,0.0,0.0,50668.0,1,1,3,75.0,9,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,262.63514889159603,0.004824747844063489,0.005183452058332597,28148.888888888887,8,4,8,8_1,8_0,8_1_0 -3923,0,35.0,1,0.0,5,111,2,46,46,8.0,0.0,0.0,342.44104298926965,0.0,1383.3766153650429,56360.0,50,20,2,15370,201103923,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2689.1248787876057,0.0,251.0,796.0,0.0,54910.0,1,1,5,102.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1725.8176583543125,0.03062132112055203,0.031429933679736156,26147.619047619046,8,4,8,8_0,8_2,8_0_0 -3924,2,66.0,3,0.0,9,111,2,77,74,7.0,0.0,0.0,1108.683481130699,0.0,2171.2844457300544,34982.0,60,60,2,15371,201103924,,,,,0.0,1.0,3.0,0.0,2.0,1.5,3217.829611788929,1292.0,320.0,450.0,0.0,33774.0,5,5,1,73.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3279.9679268607533,0.09376158958495093,0.09711517518981327,22516.0,7,4,7,7_0,7_3,7_0_0 -3925,2,52.0,3,0.0,3,111,1,77,56,8.0,0.0,0.0,573.00891655575,0.0,0.0,21407.0,70,50,2,15375,201103925,,,,,1.0,1.0,3.0,0.0,2.0,1.5,2538.4103565888913,0.0,420.0,0.0,0.0,42249.0,5,1,1,72.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,573.00891655575,0.026767361916931378,0.013562662230011362,28166.0,8,4,8,8_0,8_4,8_0_1 -3926,1,41.0,4,222.0,4,111,1,85,48,3.0,0.0,0.0,409.2920832541072,0.0,521.3730962431066,20798.0,60,30,2,15376,201103926,,,,165.0,1.0,0.0,4.0,3.0,7.0,3.4,2570.117022106873,0.0,300.0,300.0,0.0,48334.0,6,1,3,80.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,930.6651794972138,0.04474782092014683,0.01925487606027256,14215.882352941177,3,2,3_1,3_0_1,3_4_1,3_0_1 -3927,2,58.0,3,0.0,9,221,2,21,38,9.0,0.0,0.0,2102.3970009819304,156.41192887293198,0.0,42037.0,31,10,1,15377,201103927,,,300.0,,2.0,1.0,5.0,0.0,2.0,1.5,1562.1823025237495,0.0,1541.0,0.0,0.0,47218.0,1,1,2,150.0,1,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2258.8089298548625,0.05373382805278356,0.04783787813661872,31478.666666666668,9,5,9,9_1,9_1,9_0_0 -3928,2,63.0,2,0.0,1,112,2,71,71,3.0,0.0,0.0,1987.7952176707804,166.8393907977941,0.0,16730.0,71,71,1,15378,201103928,,,,,0.0,3.0,5.0,0.0,2.0,1.5,4846.168588965168,0.0,1457.0,0.0,0.0,21798.0,5,5,3,106.0,5,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2154.6346084685747,0.128788679525916,0.09884551832592782,14532.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -3929,1,67.0,3,130.0,6,111,2,0,72,2.0,0.0,0.0,545.7227776721429,0.0,1129.641708526731,19247.0,0,70,2,15379,201103929,,,130.0,282.0,0.0,3.0,3.0,0.0,1.0,1.0,2555.2190744465015,0.0,400.0,650.0,0.0,12090.0,0,5,3,60.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1675.364486198874,0.0870454868914051,0.1385743991893196,12090.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -3930,2,63.0,4,0.0,3,112,2,77,72,3.0,5035.411373006812,0.0,927.728722042643,173.79103208103552,0.0,31544.0,50,50,1,1538,201103930,,,537.0,,0.0,2.0,5.0,0.0,2.0,1.5,2260.1707413393647,0.0,680.0,0.0,0.0,20108.0,6,5,1,150.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,6136.9311271304905,0.19455145597040613,0.3051984845400085,13405.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_1 -3931,1,26.0,3,157.0,7,111,1,0,55,3.0,0.0,0.0,300.1475277196786,0.0,0.0,16335.0,0,20,2,15380,201103931,,,,,1.0,0.0,1.0,0.0,1.0,1.0,5860.809602045041,0.0,220.0,0.0,0.0,13079.0,0,1,3,12.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,300.1475277196786,0.01837450429872535,0.022948813190586326,13079.0,3,2,3_1,3_0_1,3_4_1,3_0_0 -3932,1,87.0,4,169.0,4,400,2,0,71,4.0,0.0,0.0,354.7198054868929,1428.562283706112,0.0,6869.0,0,70,1,15381,201103932,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2520.185156769897,0.0,260.0,0.0,0.0,15866.0,0,5,3,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1783.282089193005,0.25961305709608457,0.11239645085043522,15866.0,4,2,4_1,4_1_1,4_0_1,4_0_1 -3934,2,49.0,2,0.0,8,112,4,56,46,3.0,0.0,0.0,1380.6786275105214,166.8393907977941,0.0,20391.0,50,60,1,15383,201103934,,,348.0,,2.0,2.0,5.0,0.0,2.0,1.5,1315.8206455630934,0.0,1012.0,0.0,0.0,21828.0,1,1,2,86.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1547.5180183083155,0.07589220824424087,0.07089600596977806,14552.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -3935,2,61.0,3,0.0,1,300,4,72,74,2.0,0.0,0.0,2455.752499524643,121.65372245672486,0.0,23372.0,41,12,1,15384,201103935,,,304.0,,0.0,0.0,7.0,0.0,2.0,1.5,2015.6588074395636,0.0,1800.0,0.0,0.0,14390.0,6,5,1,230.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2577.406221981368,0.11027752105003287,0.17911092578049814,9593.333333333334,1,1,1_0,1_1_0,1_0_0,1_1_0 -3936,1,28.0,2,300.0,1,111,1,0,38,10.0,0.0,0.0,750.3688192991965,0.0,0.0,29825.0,0,10,8,15385,201103936,,,,530.0,1.0,0.0,2.0,0.0,1.0,1.0,3511.3723702935695,0.0,550.0,0.0,0.0,42754.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,750.3688192991965,0.025159055131574064,0.01755084481684045,42754.0,10,5,10,10_0,10_4,10_1_0 -3937,2,52.0,1,0.0,1,111,2,43,31,10.0,0.0,0.0,2210.8972723573106,0.0,6321.600552458557,104973.0,10,10,1,15386,201103937,,,690.0,,2.0,0.0,5.0,2.0,4.0,2.1,1903.2864171695212,1811.0,930.0,2517.0,0.0,121174.0,1,1,2,400.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,8532.497824815868,0.0812827853335226,0.07041525265168987,57701.904761904756,10,5,10,10_1,10_3,10_1_0 -3938,2,27.0,3,0.0,1,112,4,0,47,7.0,0.0,0.0,1091.4455553442858,0.0,0.0,8897.0,0,43,1,15389,201103938,,,400.0,,1.0,1.0,4.0,0.0,1.0,1.0,3501.7081737348612,0.0,800.0,0.0,0.0,23121.0,0,1,2,100.0,5,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1091.4455553442858,0.12267568341511587,0.047205810965974045,23121.0,7,4,7,7_1,7_0,7_1_0 -3939,2,57.0,2,0.0,4,111,5,56,63,8.0,964.5652535564403,0.0,1159.6609025533037,55.61313026593137,0.0,39163.0,50,50,1,1539,201103939,,,533.0,,2.0,3.0,5.0,0.0,2.0,1.5,1942.158902052206,0.0,850.0,0.0,0.0,39786.0,1,1,1,82.0,8,7.0,3,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2179.8392863756753,0.055660681928750996,0.05478910386507001,26524.0,8,4,8,8_1,8_3,8_0_1 -3940,2,72.0,9,0.0,2,111,1,0,77,4.0,0.0,0.0,608.8745946056148,0.0,732.896647306028,22312.0,0,70,2,15390,201103940,,,,303.0,0.0,3.0,4.0,0.0,1.0,1.0,3152.2807557678852,562.0,232.0,74.0,0.0,16210.0,0,5,3,78.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1341.7712419116428,0.060136753402278725,0.08277429006240856,16210.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -3941,2,38.0,2,0.0,6,111,2,38,38,9.0,0.0,0.0,1592.1462038584768,0.0,0.0,55384.0,10,10,1,15392,201103941,,,250.0,,2.0,0.0,5.0,2.0,4.0,2.1,1202.103142196534,0.0,1167.0,0.0,0.0,61661.0,1,1,2,90.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1592.1462038584768,0.02874740365192974,0.02582095982644584,29362.38095238095,9,5,9,9_1,9_3,9_0_0 -3942,2,47.0,4,0.0,4,112,2,0,46,7.0,0.0,0.0,1493.9161038774912,0.0,0.0,36771.0,0,41,2,15393,201103942,,,,816.0,1.0,0.0,3.0,1.0,2.0,1.3,2327.986443189832,0.0,1095.0,0.0,0.0,31819.0,0,1,3,72.0,10,4.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1493.9161038774912,0.04062756258675291,0.046950441681935046,24476.153846153844,7,4,7,7_0,7_2,7_0_1 -3943,2,50.0,3,0.0,6,211,2,22,64,8.0,0.0,0.0,517.0723318443554,0.0,1677.0834595819929,52999.0,42,50,1,15394,201103943,,,624.0,,2.0,1.0,5.0,1.0,3.0,2.0,1845.9899208952356,0.0,379.0,965.0,0.0,50699.0,1,1,1,150.0,3,3.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2194.1557914263485,0.04139994700704445,0.04327808815610463,25349.5,8,4,8,8_1,8_1,8_0_0 -3944,2,61.0,3,0.0,2,112,6,0,69,9.0,6531.4393896247775,0.0,720.3540665272286,0.0,0.0,26291.0,0,70,1,15396,201103944,,,240.0,,1.0,2.0,4.0,0.0,1.0,1.0,1649.2081331140214,0.0,528.0,0.0,0.0,29788.0,0,1,1,96.0,9,3.0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,7251.793456152006,0.2758279812921534,0.24344680596723534,29788.0,9,5,9,9_1,9_1,9_0_1 -3945,2,57.0,3,0.0,1,112,2,35,42,8.0,0.0,693.9631597817199,0.0,0.0,0.0,19865.0,60,41,2,15397,201103945,,,,,2.0,1.0,6.0,0.0,2.0,1.5,4347.6223271846,0.0,0.0,0.0,0.0,40330.0,4,1,1,200.0,8,0.0,3,9,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,693.9631597817199,0.03493396223416662,0.0172071202524602,26886.666666666668,8,4,8,8_0,8_0,8_1_0 -3946,2,30.0,2,0.0,1,111,2,56,63,6.0,0.0,0.0,450.22129157951787,0.0,1407.7073598563877,42042.0,42,31,1,15398,201103946,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2395.9596322867637,0.0,330.0,810.0,0.0,34734.0,1,1,3,90.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1857.9286514359055,0.04419220425850116,0.05349020128507818,19296.666666666668,6,3,6,6_1,6_3,6_1_0 -3947,2,45.0,3,0.0,1,111,2,45,37,10.0,0.0,0.0,2783.1861661279286,0.0,0.0,82311.0,10,41,1,154,201103947,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1491.7995429021562,0.0,2040.0,0.0,0.0,62815.0,1,1,2,110.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2783.1861661279286,0.033813052521873485,0.044307668011270056,41876.666666666664,10,5,10,10_1,10_3,10_1_0 -3948,2,76.0,2,0.0,1,111,4,75,74,8.0,0.0,0.0,486.59731900646364,0.0,721.8190813459769,52036.0,70,42,1,1540,201103948,,,326.0,,0.0,3.0,5.0,0.0,2.0,1.5,2396.8873848923486,542.0,150.0,80.0,0.0,42996.0,5,5,1,80.0,8,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1208.4164003524406,0.02322269967623262,0.028105321433445917,28664.0,8,4,8,8_1,8_3,8_1_0 -3949,2,46.0,5,0.0,1,120,4,67,65,2.0,0.0,0.0,2515.7820050685787,132.081184381587,0.0,39477.0,71,71,1,15401,201103949,,,261.0,,3.0,2.0,6.0,4.0,6.0,3.1,2909.3872376129707,0.0,1844.0,0.0,0.0,37875.0,4,1,2,90.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2647.8631894501655,0.06707356661980812,0.06991057925941031,12217.741935483871,2,1,2_0,2_1_0,2_0_0,2_1_0 -3950,2,53.0,2,0.0,6,112,5,85,62,3.0,0.0,832.755791738064,1091.4455553442858,104.27461924862132,0.0,23089.0,50,50,1,15402,201103950,,,,,1.0,4.0,5.0,1.0,3.0,2.0,1843.3235694528612,0.0,800.0,0.0,0.0,28415.0,6,1,1,110.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2028.4759663309712,0.08785464794191915,0.07138750541372413,14207.5,3,2,3_0,3_1_0,3_0_0,3_0_0 -3951,1,31.0,1,79.0,9,111,2,56,63,2.0,0.0,0.0,818.5841665082144,0.0,1390.3282566482842,43842.0,50,71,1,15404,201103951,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,1880.648769933187,0.0,600.0,800.0,0.0,23156.0,1,1,2,107.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2208.9124231564983,0.05038347755933804,0.09539265949026163,11026.666666666666,2,1,2_1,2_1_1,2_2_1,2_0_0 -3952,2,35.0,2,0.0,8,112,6,48,43,7.0,0.0,0.0,1528.023777482,0.0,0.0,37129.0,50,20,1,15406,201103952,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2512.4576241895184,0.0,1120.0,0.0,0.0,47172.0,1,1,1,120.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1528.023777482,0.04115445547905949,0.03239260106592894,22462.85714285714,7,4,7,7_1,7_0,7_0_0 -3953,1,24.0,2,55.0,1,111,6,0,84,1.0,0.0,0.0,163.71683330164288,0.0,0.0,4499.0,0,10,2,15407,201103953,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2621.192463566799,0.0,120.0,0.0,0.0,660.0,0,3,4,9.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,163.71683330164288,0.03638960509038517,0.24805580803279223,660.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -3954,2,42.0,2,0.0,3,111,1,0,46,6.0,0.0,0.0,657.5959470949322,0.0,83.41969539889705,15275.0,0,43,2,15408,201103954,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2762.259899035893,0.0,482.0,48.0,0.0,25727.0,0,1,2,70.0,4,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,741.0156424938292,0.048511662356388166,0.028803033485980845,19790.0,6,3,6,6_0,6_2,6_0_1 -3955,2,53.0,4,0.0,3,111,2,85,47,3.0,0.0,0.0,272.86138883607146,109.48835021105238,0.0,46106.0,50,50,1,15410,201103955,,,,,1.0,2.0,6.0,3.0,5.0,3.0,1405.5420310988975,0.0,200.0,0.0,0.0,38230.0,6,1,3,100.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,382.3497390471238,0.008292841258125273,0.010001301047531358,12743.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1 -3956,2,50.0,4,0.0,5,111,2,55,54,8.0,0.0,0.0,1056.0167769007421,0.0,2182.760330318693,47066.0,31,31,1,15412,201103956,,,600.0,,2.0,1.0,5.0,1.0,3.0,2.0,1815.7051094445553,2030.0,0.0,0.0,0.0,51961.0,4,1,1,120.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3238.777107219435,0.06881351946669433,0.06233092333133379,25980.5,8,4,8,8_1,8_2,8_0_0 -3957,2,73.0,3,0.0,1,111,2,0,77,3.0,0.0,0.0,523.8938665652572,0.0,2641.62368763174,10172.0,0,71,2,15413,201103957,,,80.0,,0.0,5.0,3.0,0.0,1.0,1.0,2895.5145504408233,0.0,384.0,1520.0,0.0,13970.0,0,5,3,70.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,3165.517554196997,0.31119913037721164,0.22659395520379363,13970.0,3,2,3_0,3_0_0,3_2_0,3_1_0 -3958,2,68.0,1,0.0,5,111,2,74,74,10.0,0.0,0.0,978.8183370925537,0.0,951.5974839074104,34771.0,60,31,2,15415,201103958,,,,,0.0,0.0,2.0,0.0,2.0,1.5,3284.182662158987,885.0,380.0,0.0,0.0,59551.0,5,5,1,49.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1930.4158209999641,0.055517983980902595,0.032416178082651244,39700.666666666664,10,5,10,10_0,10_3,10_0_0 -3959,0,89.0,3,0.0,2,111,2,0,86,1.0,0.0,0.0,245.5752499524643,0.0,868.9551604051776,19872.0,0,71,1,15416,201103959,,,230.0,,0.0,2.0,3.0,0.0,1.0,1.0,3854.8984514923345,0.0,180.0,500.0,0.0,7800.0,0,5,5,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1114.5304103576418,0.056085467509945745,0.1428885141484156,7800.0,1,1,1_0,1_1_0,1_3_0,1_0_1 -3960,2,51.0,2,0.0,7,111,4,45,52,8.0,0.0,180.43042154324718,1462.537044161343,208.54923849724264,0.0,21766.0,42,44,1,15417,201103960,,,180.0,,2.0,2.0,4.0,0.0,2.0,1.5,2925.0329678908897,0.0,1072.0,0.0,0.0,41040.0,1,1,2,96.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1851.5167042018327,0.08506462851244292,0.04511492943961581,27360.0,8,4,8,8_1,8_3,8_0_0 -3961,1,25.0,4,280.0,1,112,4,55,64,2.0,0.0,0.0,1506.1948663751143,104.27461924862132,0.0,19996.0,50,50,2,15418,201103961,,,,300.0,2.0,0.0,2.0,1.0,3.0,1.8,3116.644637240763,0.0,1104.0,0.0,0.0,20207.0,4,4,3,35.0,10,3.0,4,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1610.4694856237356,0.0805395821976263,0.07969859383499459,11226.111111111111,2,1,2_1,2_0_1,2_1_1,2_1_0 -3962,2,60.0,3,0.0,1,300,6,0,78,1.0,0.0,0.0,204.6460416270536,97.32297796537989,0.0,19736.0,0,71,1,1542,201103962,,,110.0,,0.0,0.0,6.0,0.0,1.0,1.0,4004.0660460779295,0.0,150.0,0.0,0.0,5090.0,0,7,1,130.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,301.9690195924335,0.015300416477119654,0.05932593705155864,5090.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -3963,2,45.0,1,0.0,5,111,1,85,34,10.0,0.0,0.0,624.8525804346036,0.0,1103.5730537145755,29624.0,33,10,2,15421,201103963,999999.0,635.0,,,1.0,0.0,3.0,2.0,4.0,2.1,2687.0604376194874,0.0,458.0,635.0,0.0,83983.0,6,1,3,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1728.4256341491791,0.05834545078818455,0.02058066077836204,39991.90476190476,10,5,10,10_0,10_4,10_0_0 -3964,1,20.0,2,180.0,1,111,2,0,84,1.0,0.0,0.0,118.69470414369108,0.0,437.9534008442095,25935.0,0,31,2,15422,201103964,,,,450.0,0.0,0.0,3.0,0.0,2.0,1.5,3691.4687496592896,0.0,87.0,252.0,0.0,12317.0,0,3,3,86.0,9,7.0,5,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,556.6481049879006,0.021463200500786605,0.04519348096029071,8211.333333333334,1,1,1_1,1_0_1,1_3_1,1_1_0 -3965,2,42.0,3,0.0,5,112,2,85,65,3.0,0.0,0.0,40.92920832541072,0.0,123.39163277753522,18793.0,50,71,2,15423,201103965,,,,,1.0,0.0,2.0,1.0,3.0,1.8,2773.8994281055416,0.0,30.0,71.0,0.0,24970.0,6,1,3,55.0,10,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,164.32084110294593,0.00874372591406087,0.006580730520742728,13872.222222222223,3,2,3_0,3_0_0,3_1_0,3_0_0 -3966,2,82.0,3,0.0,4,221,5,0,71,6.0,0.0,1263.0129508027303,1159.6609025533037,90.37133668213848,0.0,19345.0,0,70,5,15424,201103966,,,83.0,,0.0,1.0,5.0,0.0,1.0,1.0,4813.0398367606085,0.0,850.0,0.0,0.0,19434.0,0,5,1,80.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2513.045190038172,0.12990670405986934,0.1293117829596672,19434.0,6,3,6,6_1,6_1,6_0_1 -3967,2,58.0,2,0.0,1,112,2,75,37,8.0,0.0,0.0,1282.4485275295358,0.0,2688.5472662936195,53493.0,50,42,1,15427,201103967,,,550.0,,1.0,5.0,6.0,0.0,2.0,1.5,5967.542955909113,0.0,940.0,1547.0,0.0,42195.0,5,4,1,170.0,9,2.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3970.9957938231555,0.07423393329637813,0.09411057693620466,28130.0,8,4,8,8_1,8_1,8_1_0 -3968,2,67.0,2,0.0,4,111,2,78,75,6.0,0.0,0.0,821.312780396575,0.0,1202.6339420007657,31026.0,70,50,1,15428,201103968,,,270.0,,0.0,2.0,6.0,0.0,2.0,1.5,966.4701132697674,0.0,602.0,692.0,0.0,29200.0,5,5,1,120.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2023.9467223973406,0.06523389165207699,0.06931324391771715,19466.666666666668,6,3,6,6_1,6_2,6_0_1 -3969,2,41.0,1,0.0,4,111,1,85,37,7.0,0.0,0.0,613.9381248811608,0.0,69.5164128324142,58760.0,31,10,2,1543,201103969,,,,,1.0,0.0,4.0,2.0,4.0,2.1,3419.9100509400255,0.0,450.0,40.0,0.0,51865.0,7,1,2,84.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,683.454537713575,0.011631288933178607,0.01317756748700617,24697.619047619046,7,4,7,7_0,7_4,7_0_1 -3970,1,36.0,4,290.0,1,111,2,0,84,3.0,0.0,0.0,390.15398161357473,0.0,806.438545684246,18119.0,0,50,2,15430,201103970,,,,233.0,0.0,0.0,2.0,1.0,2.0,1.3,4735.886652596073,750.0,0.0,0.0,0.0,18590.0,0,3,3,50.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1196.5925272978207,0.06604075982658097,0.06436753777825824,14300.0,3,2,3_1,3_0_1,3_2_1,3_1_0 -3971,2,80.0,3,0.0,4,221,4,0,78,4.0,0.0,249.82673752141918,1282.4485275295358,140.77073598563877,0.0,14487.0,0,71,1,15431,201103971,,,207.0,,0.0,0.0,4.0,0.0,1.0,1.0,2753.6179492113506,0.0,940.0,0.0,0.0,16178.0,0,5,1,100.0,1,2.0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1673.0460010365937,0.1154860220222678,0.1034148844750027,16178.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -3972,2,71.0,2,0.0,3,111,2,86,74,5.0,0.0,0.0,780.3079632271495,0.0,1612.877091368492,32650.0,50,42,1,15434,201103972,,,250.0,,0.0,4.0,4.0,0.0,2.0,1.5,1412.7549411566133,1500.0,0.0,0.0,0.0,26358.0,5,5,1,87.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2393.1850545956413,0.07329816399986651,0.09079539625903488,17572.0,5,3,5,5_1,5_2,5_0_1 -3973,2,88.0,2,0.0,2,111,2,0,74,8.0,0.0,0.0,1234.6977844832234,3580.095260869332,0.0,22010.0,0,60,1,15435,201103973,,,513.0,,0.0,0.0,4.0,0.0,1.0,1.0,3231.722876452207,0.0,905.0,0.0,0.0,26781.0,0,5,1,117.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4814.793045352555,0.2187547953363269,0.17978391566231863,26781.0,8,4,8,8_1,8_3,8_0_1 -3974,2,84.0,2,0.0,7,111,2,74,75,7.0,0.0,0.0,774.926344294443,0.0,2572.1072747993258,86768.0,70,20,1,15436,201103974,,,732.0,,0.0,0.0,4.0,0.0,2.0,1.5,1721.1314164096043,0.0,568.0,1480.0,0.0,34547.0,5,5,1,150.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3347.0336190937687,0.03857451617063628,0.09688348102856308,23031.333333333332,7,4,7,7_1,7_3,7_0_0 -3975,2,74.0,3,0.0,4,300,2,72,72,2.0,2855.620816449988,0.0,755.8260470759179,0.0,0.0,22755.0,50,50,1,15437,201103975,,,208.0,,0.0,4.0,6.0,0.0,2.0,1.5,1632.8157052422337,0.0,554.0,0.0,0.0,17810.0,5,5,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3611.446863525906,0.158710035751523,0.20277635393183077,11873.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1 -3976,1,64.0,4,23.0,2,111,2,0,75,3.0,0.0,0.0,354.7198054868929,0.0,1656.2285357322685,13916.0,0,70,2,15438,201103976,,,460.0,,0.0,1.0,3.0,0.0,1.0,1.0,3043.6191115142365,0.0,260.0,953.0,0.0,13339.0,0,5,3,76.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,2010.9483412191614,0.1445062044566802,0.1507570538435536,13339.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -3977,2,41.0,4,0.0,6,111,2,56,52,4.0,475.9368027416647,0.0,1910.0297218525002,152.93610823131127,0.0,32483.0,60,50,1,15440,201103977,,,,,2.0,0.0,5.0,3.0,5.0,2.8,1853.8131822129678,0.0,1400.0,0.0,0.0,45868.0,1,1,2,100.0,8,6.0,4,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2538.9026328254763,0.07816096520719996,0.055352372739719984,16381.428571428572,4,2,4_0,4_1_0,4_2_0,4_0_0 -3978,2,83.0,3,0.0,1,120,5,71,77,3.0,1586.456009138882,693.9631597817199,341.0767360450893,156.41192887293198,0.0,17088.0,71,71,1,15442,201103978,,,,,0.0,1.0,8.0,0.0,2.0,1.5,3443.600643613964,0.0,250.0,0.0,0.0,19906.0,5,5,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2777.907833838623,0.1625648311001067,0.13955128272071854,13270.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -3979,1,50.0,3,348.0,8,111,4,0,85,4.0,0.0,0.0,148.70945691565893,0.0,0.0,40182.0,0,30,1,15443,201103979,,,,382.0,0.0,0.0,5.0,2.0,3.0,2.0,1659.303885784427,0.0,109.0,0.0,0.0,30114.0,0,7,3,100.0,7,6.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,148.70945691565893,0.0037008973399944986,0.004938216673828084,15057.0,4,2,4_1,4_1_1,4_2_1,4_0_0 -3980,2,79.0,3,0.0,2,112,5,77,78,3.0,0.0,0.0,654.8673332065715,130.34327406077665,0.0,19398.0,71,50,1,15444,201103980,,,,,0.0,4.0,4.0,0.0,2.0,1.5,1772.7173988303907,0.0,480.0,0.0,0.0,21100.0,5,5,1,100.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,785.2106072673482,0.04047894665776617,0.03721377285627243,14066.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_1 -3981,2,77.0,3,0.0,5,400,2,77,78,5.0,0.0,0.0,683.8427548975308,5815.047933431449,595.6892724120964,15041.0,70,50,1,15446,201103981,,,,,0.0,3.0,2.0,0.0,2.0,1.5,3264.192448363097,554.0,290.0,0.0,0.0,26455.0,5,5,1,40.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,7094.579960741075,0.47168273125065324,0.26817539069140334,17636.666666666668,5,3,5,5_1,5_0,5_0_0 -3982,2,47.0,3,0.0,3,400,2,11,11,1.0,0.0,48.5774211847204,511.615104067634,187.69431464751835,0.0,31604.0,41,50,1,15447,201103982,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2319.174237703893,0.0,375.0,0.0,0.0,9548.0,1,1,1,89.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,747.8868398998727,0.023664309577897506,0.07832916211770766,6365.333333333333,1,1,1_0,1_1_0,1_0_0,1_0_1 -3983,2,29.0,3,0.0,6,111,4,43,65,9.0,0.0,0.0,886.7995137172322,45.18566834106924,0.0,36486.0,33,31,2,15449,201103983,,,,500.0,2.0,0.0,3.0,0.0,2.0,1.5,2061.8809397665855,0.0,650.0,0.0,0.0,45079.0,1,1,3,76.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,931.9851820583015,0.025543638164180822,0.020674486613684897,30052.666666666668,9,5,9,9_0,9_2,9_0_0 -3984,2,72.0,2,0.0,7,112,2,75,75,5.0,336.328673937443,260.93014807792673,170.53836802254466,0.0,0.0,26380.0,41,50,1,15451,201103984,,,37.0,,0.0,0.0,5.0,0.0,2.0,1.5,1626.7075186177672,0.0,125.0,0.0,0.0,27600.0,5,5,1,150.0,8,0.0,3,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,767.7971900379144,0.029105276347153694,0.027818738769489655,18400.0,5,3,5,5_1,5_0,5_0_0 -3985,2,38.0,3,0.0,9,112,2,46,67,7.0,1819.6650424822978,0.0,431.1209943609929,0.0,0.0,41551.0,31,43,1,15453,201103985,,,359.0,,2.0,0.0,5.0,2.0,4.0,2.1,2111.5883868543315,0.0,316.0,0.0,0.0,49967.0,1,1,2,100.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2250.7860368432907,0.054169238690844765,0.045045450734350484,23793.809523809523,7,4,7,7_1,7_0,7_0_0 -3986,2,61.0,2,0.0,1,112,4,0,75,9.0,0.0,0.0,118.69470414369108,0.0,0.0,14707.0,0,60,1,15454,201103986,,,228.0,,0.0,1.0,3.0,0.0,1.0,1.0,3046.0118290854957,0.0,87.0,0.0,0.0,31623.0,0,5,1,60.0,5,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,118.69470414369108,0.008070626514155918,0.003753429596929168,31623.0,9,5,9,9_1,9_0,9_1_0 -3987,2,57.0,2,0.0,2,111,2,43,37,6.0,5076.659229244423,0.0,575.7375304441108,281.54147197127753,0.0,40998.0,20,50,1,15456,201103987,,,650.0,,2.0,2.0,7.0,3.0,5.0,2.8,1042.885472659539,0.0,422.0,0.0,0.0,54303.0,1,4,2,130.0,9,7.0,4,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5933.938231659811,0.1447372611263918,0.10927459314696815,19393.928571428572,6,3,6,6_1,6_3,6_0_1 -3988,2,38.0,2,0.0,8,111,1,47,46,9.0,0.0,0.0,311.0619832731214,0.0,0.0,65209.0,20,43,2,15458,201103988,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2625.402597601451,0.0,228.0,0.0,0.0,51552.0,1,1,2,83.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,311.0619832731214,0.004770230846556786,0.006033945982175695,34368.0,9,5,9,9_0,9_3,9_0_0 -3989,1,77.0,2,361.0,4,111,1,0,86,3.0,0.0,0.0,382.0059443705,0.0,128.6053637399663,18187.0,0,71,2,15459,201103989,,,504.0,,1.0,3.0,5.0,1.0,3.0,2.0,2725.3448247070232,0.0,280.0,74.0,0.0,27807.0,0,6,3,80.0,9,7.0,5,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,510.6113081104663,0.028075620394263284,0.018362689542577994,13903.5,3,2,3_1,3_0_1,3_3_1,3_0_1 -3990,2,53.0,1,0.0,5,112,4,0,45,8.0,0.0,0.0,2981.010673034081,156.41192887293198,0.0,23372.0,0,20,1,15461,201103990,,,213.0,,1.0,2.0,6.0,0.0,1.0,1.0,1673.0425685866417,0.0,2185.0,0.0,0.0,26374.0,0,1,1,160.0,7,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3137.422601907013,0.1342385162547926,0.11895892173758296,26374.0,8,4,8,8_1,8_1,8_0_0 -3991,1,47.0,3,38.0,1,111,4,55,22,5.0,0.0,0.0,2727.249581416534,121.65372245672486,0.0,31368.0,41,50,1,15462,201103991,,,522.0,813.0,2.0,0.0,6.0,2.0,4.0,2.3,2255.429460406507,0.0,1999.0,0.0,0.0,39497.0,4,1,3,100.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,2848.903303873259,0.09082196199544948,0.07212961247368811,17172.608695652176,5,3,5,5_1,5_3,5_1_0 -3992,2,35.0,2,0.0,2,111,2,56,54,7.0,0.0,0.0,466.5929749096822,0.0,1856.0882226254594,55997.0,20,31,1,15463,201103992,,,280.0,,2.0,0.0,5.0,1.0,3.0,1.8,2058.4415235839692,0.0,342.0,1068.0,0.0,40900.0,1,1,2,85.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2322.6811975351416,0.04147867202770044,0.05678927133337754,22722.222222222223,7,4,7,7_1,7_3,7_0_1 -3993,2,48.0,3,0.0,7,300,2,55,65,6.0,793.228004569441,0.0,628.9282183610825,0.0,1299.9789356430044,59232.0,20,60,1,15465,201103993,,,,,2.0,1.0,5.0,2.0,4.0,2.3,1509.2775244333614,1209.0,0.0,0.0,0.0,44382.0,1,1,1,98.0,0,0.0,4,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2722.1351585735283,0.045957171099634125,0.061334215640879826,19296.521739130436,6,3,6,6_1,6_0,6_0_0 -3994,2,59.0,1,0.0,1,112,2,75,75,9.0,0.0,936.8502657053219,1187.3987949918821,0.0,2130.1025910474737,86184.0,31,20,1,15467,201103994,,,750.0,,0.0,1.0,7.0,0.0,2.0,1.5,1903.1478586259716,132.0,820.0,1144.0,0.0,44108.0,5,5,1,184.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4254.351651744678,0.04936359012977673,0.09645306184240224,29405.333333333332,9,5,9,9_1,9_0,9_1_0 -3995,2,50.0,2,0.0,2,111,2,85,46,4.0,0.0,0.0,1725.848284388152,0.0,1849.136581342218,56203.0,30,50,1,15469,201103995,,,650.0,,1.0,1.0,7.0,3.0,5.0,2.6,1006.5459642642403,0.0,1265.0,1064.0,0.0,39044.0,6,1,2,120.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3574.98486573037,0.06360843488301994,0.09156297678850452,15016.923076923076,4,2,4_0,4_1_0,4_2_0,4_0_1 -3996,2,62.0,2,0.0,7,120,4,0,74,8.0,0.0,0.0,1586.6889760817555,0.0,0.0,63852.0,0,31,1,15470,201103996,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2560.9246081603696,0.0,1163.0,0.0,0.0,27634.0,0,5,1,105.0,0,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1586.6889760817555,0.024849479673021292,0.057417998700215515,27634.0,8,4,8,8_1,8_1,8_0_0 -3997,1,55.0,3,244.0,1,111,6,0,63,1.0,237.96840137083234,0.0,320.61213188238395,86.89551604051776,0.0,7425.0,0,70,2,15471,201103997,,,150.0,,1.0,4.0,2.0,0.0,1.0,1.0,1451.4544063205956,0.0,235.0,0.0,0.0,8036.0,0,4,3,45.0,6,4.0,1,3,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,645.4760492937341,0.08693280125168136,0.08032305242580066,8036.0,1,1,1_1,1_0_1,1_2_1,1_1_0 -3998,2,77.0,4,0.0,99,111,1,86,75,7.0,0.0,0.0,457.0428263004197,2462.6189245882733,0.0,25787.0,50,44,1,15472,201103998,,,625.0,,0.0,2.0,3.0,0.0,2.0,1.5,2043.9281107233912,0.0,335.0,0.0,0.0,32860.0,6,5,1,75.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2919.661750888693,0.11322223410589417,0.08885154445796388,21906.666666666668,7,4,7,7_1,7_3,7_0_0 -3999,1,26.0,2,48.0,4,111,2,53,63,3.0,0.0,0.0,315.1549041056625,0.0,564.8208542633655,10326.0,42,50,2,15473,201103999,,,252.0,161.0,2.0,0.0,3.0,0.0,2.0,1.5,6398.257585582652,0.0,231.0,325.0,0.0,19580.0,4,1,3,58.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,879.975758369028,0.08521942265824405,0.044942582143464145,13053.333333333334,3,2,3_1,3_0_1,3_2_1,3_0_1 -4000,2,42.0,2,0.0,5,111,2,85,38,7.0,3172.912018277764,0.0,695.7965415319821,0.0,0.0,53104.0,20,12,1,15475,201104000,,,740.0,,1.0,0.0,9.0,3.0,5.0,2.6,1070.5056107690284,0.0,510.0,0.0,0.0,57587.0,6,1,1,230.0,8,7.0,4,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3868.7085598097465,0.07285154714917419,0.06718024137061744,22148.846153846152,7,4,7,7_1,7_3,7_0_0 -4001,2,63.0,2,0.0,4,120,2,37,74,9.0,0.0,0.0,54.57227776721429,0.0,225.92834170534618,34544.0,50,50,1,15477,201104001,,,200.0,,1.0,0.0,4.0,0.0,2.0,1.5,2555.3192836164185,0.0,40.0,130.0,0.0,52962.0,1,5,1,100.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,280.50061947256046,0.008120096673012982,0.005296261838158688,35308.0,9,5,9,9_1,9_1,9_0_1 -4002,2,35.0,2,0.0,4,112,2,0,33,10.0,0.0,0.0,450.22129157951787,0.0,1633.6357015617339,21277.0,0,12,1,15478,201104002,,,125.0,,1.0,0.0,5.0,0.0,1.0,1.0,1677.642548647,0.0,330.0,940.0,0.0,41074.0,0,1,2,90.0,8,0.0,1,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2083.8569931412517,0.09793941782870008,0.05073421125629965,41074.0,10,5,10,10_1,10_0,10_0_1 -4003,2,45.0,4,0.0,3,400,5,63,52,6.0,0.0,596.8083174122792,1530.7523913703608,0.0,780.3217340438495,36248.0,50,71,1,1548,201104003,,,640.0,,3.0,1.0,7.0,2.0,4.0,2.3,3213.2296723630343,0.0,1122.0,449.0,0.0,46066.0,1,1,2,96.0,0,1.0,4,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2907.8824428264898,0.08022187273301946,0.06312426611441171,20028.695652173916,6,3,6,6_1,6_1,6_0_1 -4004,1,18.0,2,83.0,4,111,1,0,84,1.0,0.0,0.0,148.70945691565893,0.0,0.0,7803.0,0,41,1,15480,201104004,,,,167.0,0.0,0.0,3.0,0.0,1.0,1.0,2210.6384954198916,0.0,109.0,0.0,0.0,1504.0,0,3,3,80.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,148.70945691565893,0.019057984994958213,0.09887596869392216,1504.0,1,1,1_1,1_1_1,1_3_1,1_0_1 -4005,2,46.0,2,0.0,7,112,5,56,63,5.0,0.0,41.637789586903196,1432.5222913893751,229.4041623469669,0.0,24815.0,50,50,1,15483,201104005,,,220.0,,3.0,0.0,4.0,2.0,4.0,2.5,1603.3899657681438,0.0,1050.0,0.0,0.0,42059.0,1,1,2,130.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1703.5642433232451,0.06865058405493633,0.04050415471892449,16823.6,4,2,4_0,4_1_0,4_0_0,4_0_0 -4006,2,31.0,3,0.0,4,111,2,0,43,7.0,0.0,0.0,392.9203999239429,0.0,1369.47333279856,36151.0,0,20,2,15485,201104006,,,,394.0,1.0,0.0,2.0,0.0,1.0,1.0,2143.2189676687763,0.0,288.0,788.0,0.0,23487.0,0,1,3,60.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1762.393732722503,0.04875089852901726,0.07503698781123613,23487.0,7,4,7,7_0,7_2,7_0_1 -4007,1,25.0,2,150.0,1,111,4,0,46,1.0,0.0,0.0,136.43069441803573,0.0,0.0,18246.0,0,41,2,15486,201104007,,,,440.0,1.0,0.0,3.0,0.0,1.0,1.0,3165.1417796229757,0.0,100.0,0.0,0.0,9261.0,0,2,3,53.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,136.43069441803573,0.007477293347475377,0.014731745429007206,9261.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -4008,2,39.0,1,0.0,6,111,4,31,38,10.0,0.0,0.0,698.5251554203429,0.0,0.0,24028.0,10,10,2,15487,201104008,,,,461.0,2.0,0.0,3.0,0.0,2.0,1.5,2810.4337012642773,0.0,512.0,0.0,0.0,70733.0,1,1,3,60.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,698.5251554203429,0.029071298294504035,0.00987551998954297,47155.333333333336,10,5,10,10_0,10_3,10_0_0 -4009,1,36.0,3,42.0,9,112,4,52,53,3.0,0.0,0.0,1500.737638598393,78.20596443646599,0.0,24389.0,41,60,1,15488,201104009,,,,,2.0,0.0,4.0,2.0,4.0,2.3,1784.4512754452653,0.0,1100.0,0.0,0.0,30507.0,4,1,2,109.0,6,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1578.943603034859,0.06473998946389188,0.05175676412085289,13263.913043478262,3,2,3_1,3_1_1,3_1_1,3_0_0 -4010,2,26.0,3,0.0,1,300,5,65,63,8.0,0.0,262.31807439749014,1031.41604980035,90.37133668213848,0.0,44836.0,42,50,1,1549,201104010,,,240.0,,2.0,0.0,2.0,0.0,2.0,1.5,2587.1736328252678,0.0,756.0,0.0,0.0,38680.0,1,1,2,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1384.1054608799786,0.030870404605227466,0.035783491749740916,25786.666666666668,8,4,8,8_1,8_0,8_1_0 -4011,2,53.0,2,0.0,1,111,2,0,52,8.0,0.0,0.0,523.8938665652572,0.0,208.54923849724264,31647.0,0,41,2,15490,201104011,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3483.3914700515847,0.0,384.0,120.0,0.0,28000.0,0,1,1,53.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,732.4431050624999,0.02314415600412361,0.02615868232366071,28000.0,8,4,8,8_0,8_4,8_1_0 -4012,2,47.0,3,0.0,7,111,1,0,47,9.0,0.0,0.0,654.8673332065715,0.0,875.906801688419,15941.0,0,42,2,15492,201104012,504.0,504.0,,431.0,1.0,1.0,3.0,0.0,1.0,1.0,3307.9324374964117,0.0,480.0,504.0,0.0,29848.0,0,4,3,70.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1530.7741348949905,0.0960274847810671,0.05128565179894769,29848.0,9,5,9,9_0,9_2,9_0_0 -4013,2,89.0,2,0.0,2,111,2,0,86,1.0,0.0,0.0,1500.737638598393,0.0,0.0,10657.0,0,71,1,15493,201104013,,,,,0.0,1.0,4.0,0.0,1.0,1.0,4085.032831783708,0.0,1100.0,0.0,0.0,8800.0,0,6,1,90.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1500.737638598393,0.14082177335069843,0.17053836802254466,8800.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -4014,2,80.0,3,0.0,4,111,1,0,77,5.0,0.0,0.0,319.2478249382036,0.0,0.0,17901.0,0,50,2,15496,201104014,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3411.0185801122634,0.0,234.0,0.0,0.0,17369.0,0,5,1,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,319.2478249382036,0.017834077701704018,0.018380322697806647,17369.0,5,3,5,5_0,5_4,5_0_1 -4015,2,61.0,2,0.0,5,111,2,77,77,4.0,0.0,0.0,559.3658471139465,0.0,1319.0739334950597,17987.0,50,42,1,15497,201104015,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1408.461391610067,0.0,410.0,759.0,0.0,24030.0,5,5,1,100.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1878.4397806090062,0.10443318955962674,0.07817061092838144,16020.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -4016,2,43.0,3,0.0,8,111,2,0,34,10.0,0.0,0.0,518.4366387885358,0.0,1020.1533583156785,32261.0,0,20,1,15498,201104016,,,220.0,,1.0,2.0,4.0,0.0,1.0,1.0,1492.0762057404688,0.0,380.0,587.0,0.0,37550.0,0,1,2,75.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1538.5899971042143,0.04769194994278585,0.04097443401076469,37550.0,10,5,10,10_1,10_3,10_0_0 -4017,1,41.0,4,337.0,5,221,1,56,85,3.0,0.0,0.0,249.69854823268778,0.0,1854.311616261891,13792.0,71,71,2,155,201104017,770.0,770.0,,,1.0,0.0,3.0,1.0,3.0,1.8,5229.956204477322,480.0,0.0,770.0,0.0,22614.0,1,7,3,80.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2104.010164494579,0.15255294116114987,0.09304015939217206,12563.333333333332,2,1,2_1,2_0_1,2_1_1,2_0_0 -4018,2,80.0,3,0.0,6,111,2,0,77,7.0,0.0,0.0,327.43366660328576,0.0,1240.8679690585936,14975.0,0,50,1,1550,201104018,,,180.0,458.0,0.0,2.0,3.0,0.0,1.0,1.0,1495.2262212462945,0.0,240.0,714.0,0.0,22802.0,0,5,3,65.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1568.3016356618793,0.10472798902583501,0.06877912620216996,22802.0,7,4,7,7_1,7_2,7_0_0 -4019,2,56.0,3,0.0,2,111,1,56,63,4.0,0.0,0.0,293.3259929987768,0.0,0.0,49013.0,60,50,2,15500,201104019,,,,461.0,3.0,1.0,4.0,1.0,3.0,2.0,1734.7097299990173,0.0,215.0,0.0,0.0,31834.0,1,1,3,90.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,293.3259929987768,0.005984656988937156,0.009214236131142075,15917.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -4020,1,60.0,1,140.0,1,400,2,0,56,2.0,3014.2664173638764,0.0,463.8643610213215,41.709847699448524,0.0,20478.0,0,71,1,15503,201104020,,,,,1.0,3.0,5.0,0.0,1.0,1.0,4914.393214595521,0.0,340.0,0.0,0.0,10583.0,0,1,1,95.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3519.8406260846464,0.17188400361776768,0.3325938416408057,10583.0,2,1,2_1,2_1_1,2_0_1,2_1_0 -4021,2,56.0,3,0.0,1,111,2,62,54,9.0,2189.3092926116574,0.0,2062.233586606298,151.1981979105009,117.20240197277708,43576.0,50,50,1,15504,201104021,,,529.0,,2.0,3.0,4.0,0.0,2.0,1.5,1208.8896404182694,109.0,1470.0,0.0,0.0,48100.0,1,1,1,100.0,9,7.0,3,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4519.943479101234,0.1037255250390406,0.09396971890023355,32066.666666666668,9,5,9,9_1,9_3,9_1_0 -4022,2,64.0,3,0.0,5,111,2,0,77,5.0,0.0,555.170527825376,1637.1683330164287,201.5975972140012,0.0,32836.0,0,60,1,15506,201104022,,,300.0,,0.0,2.0,5.0,0.0,1.0,1.0,4192.861590880605,0.0,1200.0,0.0,0.0,18256.0,0,5,1,100.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2393.936458055806,0.07290584900888676,0.1311314887190954,18256.0,5,3,5,5_1,5_2,5_0_0 -4023,1,29.0,3,203.0,99,111,1,0,85,3.0,0.0,0.0,353.35549854271255,0.0,434.4775802025888,18670.0,0,44,2,15508,201104023,,,254.0,7.0,0.0,0.0,4.0,1.0,2.0,1.3,3532.0913086024643,0.0,259.0,250.0,0.0,18041.0,0,4,3,56.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,787.8330787453013,0.04219780818132305,0.043669036014927186,13877.692307692307,3,2,3_1,3_0_1,3_2_1,3_0_0 -4024,2,56.0,2,0.0,1,400,5,0,52,6.0,0.0,555.170527825376,245.5752499524643,43.44775802025888,0.0,18585.0,0,50,1,15509,201104024,,,,,1.0,3.0,4.0,0.0,1.0,1.0,1859.5420716935403,0.0,180.0,0.0,0.0,20042.0,0,1,3,141.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,844.1935357980992,0.04542338099532414,0.042121222223236165,20042.0,6,3,6,6_1,6_0,6_1_0 -4025,2,35.0,3,0.0,9,111,4,55,65,9.0,0.0,0.0,2046.460416270536,118.17790181510415,0.0,48213.0,50,50,1,1551,201104025,,,471.0,,2.0,0.0,6.0,2.0,4.0,2.1,2422.414043589267,0.0,1500.0,0.0,0.0,61290.0,1,1,2,130.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2164.63831808564,0.0448973994168718,0.035317968968602384,29185.714285714286,9,5,9,9_1,9_3,9_0_0 -4026,2,32.0,2,0.0,9,112,4,46,38,9.0,0.0,0.0,2182.8911106885716,0.0,0.0,40820.0,41,31,1,15510,201104026,,,,,2.0,0.0,6.0,2.0,4.0,2.1,4371.183045031322,0.0,1600.0,0.0,0.0,67183.0,1,1,1,105.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2182.8911106885716,0.05347601937012669,0.032491718302078976,31991.90476190476,9,5,9,9_1,9_0,9_0_0 -4027,2,57.0,3,0.0,1,300,5,56,52,4.0,0.0,485.77421184720396,886.7995137172322,0.0,0.0,18473.0,71,71,1,15511,201104027,,,160.0,,2.0,2.0,4.0,0.0,2.0,1.5,4215.796133003814,0.0,650.0,0.0,0.0,24920.0,1,1,1,60.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1372.5737255644362,0.0743016145490411,0.055079202470482994,16613.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0 -4028,2,33.0,2,0.0,2,112,6,68,65,5.0,0.0,0.0,3145.7924867316588,93.84715732375918,2737.5900497494536,39724.0,50,50,1,15512,201104028,,,240.0,,2.0,0.0,5.0,2.0,4.0,2.1,1435.1444019110745,2546.0,1335.0,0.0,0.0,39709.0,4,1,3,90.0,7,1.0,4,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5977.229693804871,0.15046897829535977,0.1505258176686613,18909.04761904762,5,3,5,5_1,5_1,5_0_1 -4029,1,29.0,4,193.0,99,112,2,55,55,6.0,0.0,0.0,356.08411243107327,53.87521994512101,0.0,20682.0,71,50,2,15513,201104029,,,,247.0,2.0,0.0,3.0,0.0,2.0,1.5,2656.468255971562,0.0,261.0,0.0,0.0,29045.0,4,1,3,75.0,3,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,409.95933237619425,0.019822035217880004,0.014114626695685807,19363.333333333332,6,3,6,6_0,6_0,6_0_0 -4030,2,62.0,3,0.0,7,111,1,68,78,5.0,920.1444853005517,0.0,900.4425831590357,375.3886292950367,0.0,24222.0,70,70,1,15514,201104030,580.0,580.0,350.0,,2.0,3.0,4.0,1.0,3.0,2.0,1465.6295534808075,0.0,660.0,0.0,0.0,36917.0,1,5,1,110.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2195.975697754624,0.09066037890160283,0.05948413191089807,18458.5,5,3,5,5_1,5_3,5_0_0 -4031,1,39.0,4,299.0,99,400,4,0,67,4.0,0.0,0.0,450.22129157951787,52.13730962431066,0.0,9110.0,0,50,1,15516,201104031,,,130.0,,1.0,0.0,4.0,1.0,2.0,1.3,2253.4833661574617,0.0,330.0,0.0,0.0,19832.0,0,1,3,83.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,502.3586012038285,0.05514364447901521,0.02533070800745404,15255.384615384615,4,2,4_1,4_1_1,4_0_1,4_0_0 -4032,2,68.0,1,0.0,5,111,4,0,74,10.0,0.0,0.0,1551.5417015120809,0.0,446.2293286119494,32546.0,0,20,2,15517,201104032,,,140.0,,0.0,0.0,4.0,0.0,1.0,1.0,1443.420330328113,415.0,979.0,0.0,0.0,38866.0,0,5,1,86.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1997.7710301240304,0.061382997299945626,0.051401508519632336,38866.0,10,5,10,10_0,10_3,10_0_0 -4033,2,66.0,3,0.0,5,111,2,77,74,8.0,1768.8984501898537,0.0,720.3540665272286,0.0,0.0,28113.0,50,44,1,15518,201104033,,,560.0,,0.0,2.0,3.0,0.0,2.0,1.5,1400.8672675889534,0.0,528.0,0.0,0.0,41450.0,5,5,1,100.0,5,4.0,3,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2489.2525167170825,0.08854453515160539,0.06005434298473058,27633.333333333332,8,4,8,8_1,8_2,8_0_0 -4034,2,37.0,3,0.0,1,111,2,0,53,5.0,0.0,0.0,398.37762770066433,0.0,868.9551604051776,14217.0,0,70,2,15519,201104034,,,200.0,300.0,1.0,0.0,3.0,0.0,1.0,1.0,2523.904106496253,0.0,292.0,500.0,0.0,17090.0,0,1,3,75.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1267.332788105842,0.08914206851697559,0.07415639485698314,17090.0,5,3,5,5_0,5_2,5_1_0 -4035,2,70.0,2,0.0,4,112,2,77,78,7.0,2062.392811880547,0.0,682.1534720901786,104.27461924862132,0.0,25922.0,70,70,1,1552,201104035,,,320.0,,0.0,2.0,4.0,0.0,2.0,1.5,1860.6491927993884,0.0,500.0,0.0,0.0,33119.0,5,5,1,90.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2848.820903219347,0.10989973394102875,0.08601772104288617,22079.333333333332,7,4,7,7_1,7_0,7_0_1 -4036,2,33.0,2,0.0,9,112,4,46,47,8.0,0.0,0.0,2046.460416270536,43.44775802025888,0.0,69858.0,31,60,1,15520,201104036,,,210.0,,2.0,0.0,5.0,2.0,4.0,2.1,2635.8889760882576,0.0,1500.0,0.0,0.0,56231.0,1,1,2,140.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2089.9081742907947,0.02991651885669207,0.03716647710854857,26776.666666666664,8,4,8,8_1,8_0,8_0_0 -4037,2,58.0,2,0.0,1,111,1,62,56,3.0,0.0,0.0,286.1129198499548,0.0,2624.7433421832293,24671.0,71,71,2,15521,201104037,1170.0,1170.0,,479.0,2.0,3.0,4.0,1.0,3.0,2.0,3486.9190230748186,550.0,0.0,1170.0,0.0,25151.0,1,1,3,83.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2910.856262033184,0.11798695885992397,0.1157352098140505,12575.5,2,1,2_0,2_0_0,2_4_0,2_1_0 -4038,2,73.0,3,0.0,5,111,1,0,72,4.0,0.0,0.0,327.43366660328576,0.0,0.0,32559.0,0,50,2,15522,201104038,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2215.3182779878803,0.0,240.0,0.0,0.0,16152.0,0,5,1,70.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,327.43366660328576,0.01005662540628661,0.02027201997296222,16152.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -4039,2,63.0,2,0.0,5,112,5,77,77,7.0,0.0,69.396315978172,463.8643610213215,0.0,556.1313026593136,16543.0,50,41,1,15523,201104039,,,350.0,,0.0,2.0,4.0,0.0,2.0,1.5,2449.515041509122,0.0,340.0,320.0,0.0,36469.0,6,5,1,100.0,9,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1089.391979658807,0.0658521416707252,0.029871726114201295,24312.666666666668,7,4,7,7_1,7_0,7_0_0 -4040,2,35.0,2,0.0,1,112,2,37,54,10.0,2855.620816449988,0.0,1036.8732775770716,0.0,0.0,73662.0,60,42,1,15524,201104040,,,700.0,,2.0,0.0,5.0,2.0,4.0,2.1,2557.1767481111256,0.0,760.0,0.0,0.0,78932.0,1,1,2,135.0,10,4.0,4,1,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3892.49409402706,0.05284263384142516,0.04931452508522602,37586.666666666664,10,5,10,10_1,10_2,10_1_0 -4041,2,44.0,3,0.0,7,111,2,54,22,8.0,0.0,0.0,1637.1683330164287,0.0,1772.6685272265624,51464.0,50,50,1,15525,201104041,,,1000.0,,2.0,0.0,5.0,2.0,4.0,2.3,2148.6153623075975,0.0,1200.0,1020.0,0.0,63155.0,1,1,2,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3409.836860242991,0.06625673986170898,0.05399155823359973,27458.695652173916,8,4,8,8_1,8_4,8_0_0 -4042,2,53.0,1,0.0,8,112,5,62,31,9.0,475.9368027416647,555.170527825376,818.5841665082144,97.32297796537989,0.0,41948.0,70,42,1,15527,201104042,,,280.0,,2.0,4.0,4.0,0.0,2.0,1.5,2757.756778425262,0.0,600.0,0.0,0.0,55683.0,1,1,2,110.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1947.0144750406348,0.04641495363403821,0.034966048435620116,37122.0,9,5,9,9_1,9_0,9_0_0 -4043,2,56.0,4,0.0,1,112,2,52,67,3.0,2062.392811880547,208.188947934516,1000.0369900842019,187.69431464751835,0.0,56773.0,71,70,1,1553,201104043,,,345.0,,3.0,2.0,7.0,3.0,5.0,2.6,1891.3992200359673,0.0,733.0,0.0,0.0,33779.0,4,1,2,150.0,10,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3458.313064546783,0.06091474934470229,0.10238056379841863,12991.923076923076,3,2,3_0,3_1_0,3_0_0,3_1_0 -4044,2,49.0,2,0.0,2,111,2,52,52,9.0,0.0,0.0,735.3614429132126,0.0,2542.5627993455496,35511.0,60,50,1,15531,201104044,,,200.0,,2.0,0.0,4.0,0.0,2.0,1.5,2143.373648743507,0.0,539.0,1463.0,0.0,52187.0,1,1,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3277.924242258762,0.09230729188867569,0.062811126185808,34791.333333333336,9,5,9,9_1,9_4,9_0_1 -4045,2,50.0,3,0.0,9,211,4,85,62,5.0,0.0,0.0,613.9381248811608,0.0,0.0,35516.0,71,50,1,15533,201104045,,,240.0,,1.0,2.0,5.0,1.0,3.0,2.0,3392.2336683462877,0.0,450.0,0.0,0.0,33724.0,6,1,1,169.0,3,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,613.9381248811608,0.017286240705067034,0.01820478368168547,16862.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -4046,1,44.0,4,124.0,1,111,2,0,52,5.0,0.0,0.0,294.69029994295715,0.0,828.9832230265395,7842.0,0,50,1,15535,201104046,,,,107.0,1.0,1.0,3.0,0.0,1.0,1.0,2294.452377714904,0.0,216.0,477.0,0.0,18558.0,0,1,3,56.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1123.6735229694966,0.14328915110552112,0.06054927917714714,18558.0,5,3,5,5_1,5_2,5_1_0 -4047,2,62.0,2,0.0,9,112,5,0,75,9.0,0.0,20.818894793451598,1036.8732775770716,39.971937378638174,0.0,58953.0,0,10,1,15536,201104047,,,145.0,,0.0,2.0,5.0,0.0,1.0,1.0,1512.1497585120426,0.0,760.0,0.0,0.0,29874.0,0,5,1,200.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1097.6641097491613,0.01861930876713927,0.03674312478239142,29874.0,9,5,9,9_1,9_0,9_0_0 -4048,2,65.0,2,0.0,1,120,6,75,74,10.0,3360.1138273561523,2612.077333418394,3410.767360450893,208.54923849724264,0.0,71916.0,20,70,1,15538,201104048,,,250.0,,0.0,3.0,9.0,0.0,2.0,1.5,1511.6988987102284,0.0,2500.0,0.0,0.0,70518.0,5,5,1,160.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,9591.507759722681,0.13337098503424386,0.1360150282158127,47012.0,10,5,10,10_1,10_0,10_1_0 -4049,2,80.0,2,0.0,4,300,4,0,75,7.0,0.0,0.0,2312.5002703857053,48.661488982689946,0.0,15803.0,0,50,1,15539,201104049,,,86.0,,0.0,3.0,4.0,0.0,1.0,1.0,3343.163994563092,0.0,1695.0,0.0,0.0,21560.0,0,5,5,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2361.1617593683955,0.14941224826731606,0.10951585154769923,21560.0,6,3,6,6_1,6_0,6_0_1 -4050,2,59.0,5,0.0,1,400,5,22,72,1.0,0.0,1387.9263195634398,504.79356934673217,1159.186183980507,0.0,17476.0,41,71,1,1554,201104050,,,,,1.0,3.0,3.0,0.0,2.0,1.5,2985.2875733635988,0.0,370.0,0.0,0.0,13430.0,4,5,2,40.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3051.906072890679,0.1746341309733737,0.22724542612737741,8953.333333333334,1,1,1_0,1_1_0,1_0_0,1_1_0 -4051,2,71.0,1,0.0,1,400,2,74,74,10.0,5152.809117683089,0.0,1410.0269553025544,385.81609121989885,556.9802222192526,96776.0,20,20,1,15542,201104051,,,333.0,,0.0,3.0,16.0,0.0,2.0,1.5,942.1601277932972,518.0,836.0,0.0,0.0,85329.0,5,5,1,330.0,0,0.0,3,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,7505.632386424796,0.07755675360032235,0.0879610963028372,56886.0,10,5,10,10_1,10_0,10_1_0 -4052,1,44.0,4,267.0,2,111,1,0,56,6.0,0.0,0.0,581.1947582208322,0.0,625.6477154917279,22785.0,0,50,2,15544,201104052,,,,52.0,1.0,4.0,4.0,2.0,3.0,2.0,2937.82153530347,0.0,426.0,360.0,0.0,38854.0,0,1,3,59.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1206.8424737125601,0.0529665338473803,0.031060958298053228,19427.0,6,3,6,6_0,6_4,6_0_1 -4053,2,43.0,1,0.0,2,111,2,33,37,10.0,0.0,0.0,1091.4455553442858,0.0,2780.6565132965684,158972.0,12,10,8,15546,201104053,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3317.85884204578,0.0,800.0,1600.0,0.0,113486.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3872.102068640854,0.024357132505352225,0.03411964531872525,63047.777777777774,10,5,10,10_0,10_4,10_0_1 -4054,2,48.0,3,0.0,7,112,6,56,55,5.0,0.0,277.585263912688,1514.3807080401966,173.79103208103552,0.0,28551.0,50,50,1,15548,201104054,,,780.0,,4.0,1.0,6.0,3.0,5.0,2.8,1725.6528302028405,0.0,1110.0,0.0,0.0,47363.0,1,1,2,170.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1965.75700403392,0.06885072340842423,0.04150406443920191,16915.357142857145,4,2,4_0,4_1_0,4_0_0,4_0_0 -4055,2,34.0,3,0.0,9,112,2,43,43,8.0,0.0,0.0,1050.5163470188752,0.0,1824.805836850873,57277.0,20,20,1,15549,201104055,,,300.0,,2.0,0.0,5.0,1.0,3.0,1.8,1571.9613857154484,0.0,770.0,1050.0,0.0,46001.0,1,1,2,106.0,8,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2875.322183869748,0.05020029302983306,0.06250564517879499,25556.11111111111,8,4,8,8_1,8_0,8_0_0 -4056,2,55.0,4,0.0,7,111,2,74,23,8.0,0.0,0.0,2169.248041246768,0.0,5891.5159875471045,148966.0,12,12,1,1555,201104056,,,,,1.0,1.0,10.0,4.0,7.0,4.0,874.4811978705426,0.0,1590.0,3390.0,0.0,99959.0,6,1,1,250.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,8060.764028793872,0.05411143501734538,0.08064070297615894,24989.75,8,4,8,8_1,8_4,8_0_0 -4057,2,36.0,2,0.0,8,120,4,0,37,6.0,0.0,0.0,545.7227776721429,52.13730962431066,0.0,23047.0,0,10,2,15550,201104057,,,,378.0,1.0,0.0,2.0,0.0,1.0,1.0,5296.026608312328,0.0,400.0,0.0,0.0,19598.0,0,1,3,45.0,0,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,597.8600872964536,0.025940907159129327,0.030506178553753115,19598.0,6,3,6,6_0,6_1,6_0_0 -4058,2,82.0,2,0.0,1,120,2,0,78,7.0,0.0,0.0,1504.830559430934,0.0,0.0,9296.0,0,71,1,15552,201104058,,,99.0,,0.0,2.0,5.0,0.0,1.0,1.0,3702.324350203459,0.0,1103.0,0.0,0.0,21824.0,0,5,1,106.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1504.830559430934,0.1618793631057373,0.0689530131704057,21824.0,7,4,7,7_1,7_0,7_1_0 -4059,2,51.0,3,0.0,1,112,2,52,47,7.0,0.0,0.0,4105.199595038695,344.10624352045033,0.0,72339.0,50,50,1,15555,201104059,,,,,2.0,1.0,5.0,1.0,3.0,2.0,1387.3478887043213,0.0,3009.0,0.0,0.0,45358.0,1,1,3,115.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4449.305838559146,0.06150632215760718,0.09809307814628392,22679.0,7,4,7,7_1,7_0,7_1_0 -4060,2,42.0,2,0.0,7,111,2,85,22,10.0,0.0,0.0,409.2920832541072,0.0,990.6088828619024,61006.0,20,10,1,15556,201104060,,,,,1.0,3.0,4.0,0.0,2.0,1.5,4873.568827620746,0.0,300.0,570.0,0.0,98916.0,6,1,1,110.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1399.9009661160096,0.02294693908986017,0.014152421914715614,65944.0,10,5,10,10_1,10_2,10_0_0 -4061,2,46.0,2,0.0,8,112,2,0,47,5.0,0.0,0.0,474.77881657476433,0.0,1124.4279775643,26604.0,0,50,2,15558,201104061,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1918.3862506415544,0.0,348.0,647.0,0.0,18911.0,0,1,2,70.0,9,2.0,1,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1599.2067941390642,0.060111516844800185,0.08456489842626325,18911.0,5,3,5,5_0,5_1,5_0_0 -4062,2,25.0,1,0.0,1,111,2,54,55,7.0,0.0,0.0,1494.029646925582,0.0,3088.1220042735395,21643.0,20,60,2,15559,201104062,,,258.0,300.0,2.0,0.0,2.0,0.0,2.0,1.5,3917.5342575175346,2872.0,0.0,0.0,0.0,32703.0,1,1,3,50.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4582.151651199121,0.21171518048325655,0.14011410730511334,21802.0,7,4,7,7_0,7_3,7_1_0 -4063,2,43.0,3,0.0,8,111,1,46,42,7.0,0.0,0.0,695.7965415319821,0.0,0.0,37065.0,31,10,2,15560,201104063,,,,651.0,2.0,0.0,3.0,1.0,3.0,1.8,2553.657751644202,0.0,510.0,0.0,0.0,41998.0,1,1,3,65.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,695.7965415319821,0.018772333509563796,0.016567373244725514,23332.222222222223,7,4,7,7_0,7_4,7_0_0 -4064,2,91.0,2,0.0,2,111,4,86,86,5.0,0.0,0.0,1227.8762497623215,172.05312176022517,0.0,12598.0,71,70,1,15561,201104064,,,280.0,,0.0,1.0,4.0,0.0,2.0,1.5,4104.047390573368,0.0,900.0,0.0,0.0,25640.0,5,5,1,100.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1399.9293715225467,0.11112314427072129,0.054599429466557985,17093.333333333332,5,3,5,5_1,5_2,5_0_1 -4065,1,30.0,5,163.0,1,300,4,67,48,3.0,0.0,0.0,2455.752499524643,180.74267336427695,0.0,24232.0,50,31,1,15562,201104065,,,267.0,,2.0,0.0,6.0,3.0,5.0,2.4,1609.8531861262034,0.0,1800.0,0.0,0.0,32567.0,1,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2636.49517288892,0.10880221083232586,0.08095603441793595,13569.583333333334,3,2,3_1,3_1_1,3_0_1,3_1_0 -4066,1,40.0,4,496.0,1,221,2,0,56,2.0,0.0,0.0,1091.4455553442858,0.0,0.0,27971.0,0,71,1,15563,201104066,,,450.0,133.0,1.0,0.0,5.0,4.0,5.0,2.4,2253.4174932445458,0.0,800.0,0.0,0.0,25162.0,0,4,3,120.0,1,2.0,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1091.4455553442858,0.039020612611071676,0.04337674093252865,10484.166666666668,2,1,2_1,2_1_1,2_1_1,2_1_0 -4067,2,76.0,2,0.0,4,112,2,77,74,10.0,4124.785623761094,0.0,815.8555526198536,0.0,0.0,38442.0,50,42,1,15566,201104067,,,414.0,,0.0,2.0,7.0,0.0,2.0,1.5,1547.0457543601908,0.0,598.0,0.0,0.0,57969.0,5,5,1,160.0,3,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4940.641176380947,0.12852195974145328,0.08522902200108588,38646.0,10,5,10,10_1,10_0,10_0_1 -4068,2,53.0,3,0.0,1,300,2,56,63,2.0,0.0,208.188947934516,3274.3366660328575,323.25131967072605,0.0,43282.0,30,31,1,15567,201104068,,,,,2.0,0.0,10.0,4.0,7.0,3.4,891.3489270647418,0.0,2400.0,0.0,0.0,37186.0,1,1,1,220.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3805.7769336380993,0.0879297845210041,0.10234434823960897,10937.058823529413,2,1,2_0,2_1_0,2_0_0,2_1_0 -4069,2,68.0,4,0.0,2,112,5,78,74,5.0,1586.456009138882,832.755791738064,886.7995137172322,0.0,0.0,18010.0,50,70,1,15568,201104069,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1011.5625122421737,0.0,650.0,0.0,0.0,27801.0,5,5,1,150.0,5,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3306.0113145941787,0.18356531452494051,0.11891699271947695,18534.0,5,3,5,5_1,5_0,5_0_1 -4070,2,26.0,2,0.0,1,120,2,46,63,6.0,0.0,0.0,886.7995137172322,0.0,0.0,25888.0,10,50,2,1557,201104070,,,120.0,,2.0,0.0,2.0,0.0,2.0,1.5,3302.0179935121155,0.0,650.0,0.0,0.0,31870.0,4,1,3,55.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,886.7995137172322,0.03425523461515885,0.027825526003050903,21246.666666666668,6,3,6,6_0,6_1,6_1_0 -4071,2,38.0,3,0.0,1,112,2,34,46,8.0,2538.3296146222115,1387.9263195634398,682.1534720901786,0.0,0.0,39327.0,20,30,1,15570,201104071,,,390.0,,2.0,0.0,10.0,2.0,4.0,2.1,3500.766117682141,0.0,500.0,0.0,0.0,55144.0,1,1,2,200.0,7,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4608.40940627583,0.117181819266047,0.08357045927527619,26259.04761904762,8,4,8,8_1,8_0,8_1_0 -4073,2,55.0,3,0.0,5,112,2,22,22,10.0,4124.785623761094,0.0,982.3009998098572,93.84715732375918,0.0,53408.0,50,50,1,15573,201104073,,,,,5.0,0.0,8.0,1.0,5.0,3.0,792.3705596517086,0.0,720.0,0.0,0.0,165176.0,1,1,1,295.0,7,0.0,5,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5200.93378089471,0.09738117474712983,0.031487224420585984,55058.666666666664,10,5,10,10_1,10_0,10_0_0 -4074,2,58.0,3,0.0,5,111,2,77,78,4.0,1586.456009138882,0.0,613.9381248811608,97.32297796537989,0.0,24697.0,50,50,1,15574,201104074,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1172.0899863727986,0.0,450.0,0.0,0.0,22195.0,6,5,1,125.0,6,4.0,3,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2297.7171119854224,0.09303628424445975,0.10352408704597534,14796.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0 -4075,2,51.0,3,0.0,1,300,4,0,38,9.0,0.0,0.0,1476.0330842795586,93.84715732375918,109.67564221305746,52443.0,0,50,1,15579,201104075,,,144.0,,1.0,0.0,4.0,0.0,1.0,1.0,2404.374113875763,102.0,1043.0,0.0,0.0,30874.0,0,1,1,80.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1679.5558838163752,0.03202631206865311,0.05440033308986122,30874.0,9,5,9,9_1,9_0,9_1_0 -4076,0,37.0,3,0.0,9,112,5,69,11,2.0,0.0,124.91336876070959,1309.734666413143,0.0,0.0,23849.0,43,43,1,1558,201104076,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2824.4126588146296,0.0,960.0,0.0,0.0,19974.0,6,1,5,80.0,6,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1434.6480351738526,0.06015547969197252,0.07182577526653913,9511.42857142857,1,1,1_0,1_1_0,1_0_0,1_0_0 -4077,2,56.0,2,0.0,2,111,6,0,46,8.0,0.0,0.0,596.2021346068161,0.0,903.7133668213847,27426.0,0,50,2,15580,201104077,,,120.0,,1.0,0.0,2.0,0.0,1.0,1.0,2004.3501189430483,0.0,437.0,520.0,0.0,26735.0,0,1,1,70.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1499.915501428201,0.05468954646788452,0.056103067193873236,26735.0,8,4,8,8_0,8_2,8_0_1 -4078,2,47.0,3,0.0,2,111,5,0,63,6.0,0.0,0.0,818.5841665082144,43.44775802025888,0.0,8782.0,0,50,1,15581,201104078,,,,,1.0,1.0,3.0,0.0,1.0,1.0,1852.6739889148225,0.0,600.0,0.0,0.0,19023.0,0,4,1,76.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,862.0319245284733,0.09815895291829575,0.04531524599319105,19023.0,5,3,5,5_1,5_3,5_0_1 -4079,2,54.0,3,0.0,99,211,2,54,53,5.0,0.0,0.0,1937.3158607361072,347.58206416207105,0.0,27418.0,41,50,1,15583,201104079,,,370.0,,2.0,1.0,6.0,1.0,3.0,2.0,1149.1708601013472,0.0,1420.0,0.0,0.0,33515.0,1,1,3,160.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2284.897924898178,0.08333568914210293,0.06817538191550584,16757.5,4,2,4_0,4_1_0,4_1_0,4_0_0 -4080,2,28.0,2,0.0,2,112,2,0,67,7.0,0.0,0.0,682.1534720901786,0.0,1390.3282566482842,33365.0,0,42,2,15585,201104080,,,,397.0,1.0,0.0,2.0,0.0,1.0,1.0,4073.4360030320886,0.0,500.0,800.0,0.0,23046.0,0,1,3,50.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2072.481728738463,0.06211544219207142,0.08992804515918003,23046.0,7,4,7,7_0,7_2,7_0_1 -4081,2,63.0,4,0.0,3,400,5,0,71,3.0,0.0,0.0,0.0,95.58506764456953,0.0,7628.0,0,70,1,15586,201104081,,,270.0,,0.0,0.0,3.0,0.0,1.0,1.0,1244.4313392691479,0.0,0.0,0.0,0.0,13614.0,0,5,1,90.0,0,1.0,1,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,95.58506764456953,0.012530816419057358,0.0070210862086506195,13614.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -4082,1,25.0,4,241.0,4,112,4,55,46,4.0,0.0,0.0,368.36287492869644,0.0,0.0,19649.0,71,71,2,15589,201104082,,,912.0,,2.0,1.0,3.0,3.0,5.0,2.4,3117.971190724134,0.0,270.0,0.0,0.0,35969.0,1,1,3,70.0,10,5.0,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,368.36287492869644,0.018747156340205427,0.010241120824284702,14987.083333333334,4,2,4_1,4_0_1,4_2_1,4_0_1 -4083,2,50.0,3,0.0,2,112,2,56,47,3.0,0.0,309.5075692626471,2627.655174491368,0.0,0.0,33606.0,71,50,1,15590,201104083,,,642.0,,2.0,2.0,5.0,1.0,3.0,2.0,1974.8296213303736,0.0,1926.0,0.0,0.0,27820.0,1,1,1,140.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2937.162743754015,0.08739995071576549,0.10557738115578774,13910.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -4084,2,69.0,4,0.0,6,112,4,0,77,4.0,0.0,0.0,654.8673332065715,0.0,0.0,16811.0,0,50,1,15591,201104084,,,,,0.0,2.0,2.0,0.0,1.0,1.0,1295.0486599464766,0.0,480.0,0.0,0.0,15930.0,0,5,3,47.0,6,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,654.8673332065715,0.03895469235658625,0.041109060464944856,15930.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -4085,2,41.0,3,0.0,7,111,1,52,67,6.0,0.0,0.0,0.0,0.0,0.0,45684.0,41,60,2,15592,201104085,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3502.891697850763,0.0,0.0,0.0,0.0,44800.0,1,1,3,103.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,21333.333333333332,6,3,6,6_0,6_4,6_0_0 -4086,2,38.0,2,0.0,4,111,2,47,45,8.0,0.0,0.0,300.1475277196786,0.0,1633.6357015617339,28643.0,31,41,2,15593,201104086,,,,326.0,2.0,0.0,5.0,2.0,4.0,2.1,2980.851026614917,0.0,220.0,940.0,0.0,55269.0,1,1,3,80.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1933.7832292814123,0.06751329222781875,0.034988569166827924,26318.571428571428,8,4,8,8_0,8_3,8_0_1 -4087,2,39.0,2,0.0,1,111,2,46,38,8.0,0.0,0.0,529.3510943419786,0.0,1319.0739334950597,41296.0,30,10,1,15596,201104087,,,499.0,,2.0,0.0,5.0,2.0,4.0,2.1,2409.1601490946446,0.0,388.0,759.0,0.0,51951.0,1,1,2,105.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1848.4250278370382,0.044760389089428476,0.035580162611634776,24738.571428571428,7,4,7,7_1,7_3,7_1_0 -4088,2,64.0,1,0.0,1,120,2,46,74,10.0,0.0,416.377895869032,3192.4782493820358,145.98446694806984,0.0,83430.0,20,50,1,15598,201104088,,,177.0,,1.0,2.0,6.0,0.0,2.0,1.5,1763.0358664625662,0.0,2340.0,0.0,0.0,71550.0,1,5,1,228.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3754.8406121991375,0.045005880524980675,0.052478555027241615,47700.0,10,5,10,10_1,10_0,10_1_0 -4089,1,39.0,3,159.0,99,111,1,0,67,5.0,0.0,0.0,382.0059443705,0.0,335.4166919163986,22397.0,0,50,2,15600,201104089,,,,45.0,1.0,3.0,3.0,0.0,1.0,1.0,2332.6737889119604,0.0,280.0,193.0,0.0,18707.0,0,2,3,65.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,717.4226362868985,0.03203208627436257,0.03835049106146889,18707.0,5,3,5,5_0,5_2,5_0_0 -4090,2,69.0,1,0.0,6,111,4,0,75,9.0,0.0,0.0,395.3560347017557,0.0,817.1910596267026,21898.0,0,30,1,15603,201104090,,,180.0,,0.0,3.0,4.0,0.0,1.0,1.0,3295.4620690976813,760.0,0.0,0.0,0.0,32497.0,0,5,1,85.0,5,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1212.5470943284581,0.055372504079297565,0.03731258560262357,32497.0,9,5,9,9_1,9_2,9_0_0 -4091,2,40.0,2,0.0,1,111,2,0,34,10.0,0.0,0.0,327.43366660328576,0.0,2059.423730160271,17700.0,0,10,1,15605,201104091,,,303.0,,1.0,0.0,4.0,0.0,1.0,1.0,1497.577904338625,0.0,240.0,1185.0,0.0,44479.0,0,1,2,100.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2386.857396763557,0.13485070038212188,0.05366256877995362,44479.0,10,5,10,10_1,10_3,10_1_0 -4092,2,75.0,1,0.0,1,112,4,0,78,7.0,0.0,0.0,1682.9464001924214,0.0,94.62212269361821,17343.0,0,70,1,15606,201104092,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2511.020071264715,88.0,1200.0,0.0,0.0,21750.0,0,5,1,107.0,6,0.0,1,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1777.5685228860395,0.10249486956616731,0.08172728840855355,21750.0,6,3,6,6_1,6_0,6_1_0 -4093,1,52.0,4,381.0,8,111,2,0,68,5.0,0.0,0.0,421.36630014266063,0.0,870.9536293389857,12016.0,0,71,1,15607,201104093,,,444.0,199.0,1.0,0.0,5.0,3.0,4.0,2.3,1875.9903919657186,810.0,0.0,0.0,0.0,38862.0,0,1,3,95.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1292.3199294816463,0.10754992755339933,0.03325407671971711,16896.521739130436,4,2,4_1,4_1_1,4_3_1,4_0_0 -4094,2,52.0,4,0.0,5,111,4,0,85,1.0,0.0,0.0,409.2920832541072,625.6477154917279,0.0,7650.0,0,71,1,15608,201104094,,,,,0.0,4.0,2.0,0.0,1.0,1.0,3069.4069929812517,0.0,300.0,0.0,0.0,5680.0,0,5,1,75.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1034.939798745835,0.13528624820206994,0.18220771104680195,5680.0,1,1,1_0,1_1_0,1_4_0,1_0_0 -4096,2,56.0,1,0.0,1,111,6,0,34,10.0,0.0,0.0,1282.4485275295358,0.0,0.0,35372.0,0,20,2,1561,201104096,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3540.2641224601634,0.0,940.0,0.0,0.0,56900.0,0,1,1,50.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1282.4485275295358,0.03625603662584914,0.022538638445158802,56900.0,10,5,10,10_0,10_3,10_1_0 -4097,2,76.0,3,0.0,6,111,1,0,75,6.0,0.0,0.0,2046.460416270536,0.0,0.0,30996.0,0,50,2,15610,201104097,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2988.043215900585,0.0,1500.0,0.0,0.0,19523.0,0,5,1,105.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2046.460416270536,0.06602337128244083,0.10482305056961204,19523.0,6,3,6,6_0,6_3,6_0_0 -4098,2,60.0,3,0.0,2,400,5,71,77,4.0,0.0,41.637789586903196,1910.0297218525002,187.69431464751835,0.0,14548.0,50,42,1,15611,201104098,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1953.5153784055015,0.0,1400.0,0.0,0.0,23368.0,5,5,5,100.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2139.3618260869216,0.1470553908500771,0.09155091689861869,15578.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_1 -4099,2,65.0,2,0.0,1,111,4,77,72,8.0,0.0,0.0,1633.7732941481331,0.0,974.078699213738,19416.0,50,60,1,15612,201104099,,,420.0,,0.0,1.0,4.0,0.0,2.0,1.5,2646.7094307956104,518.0,1000.0,240.0,0.0,37968.0,5,5,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2607.851993361871,0.13431458556663942,0.06868552447750398,25312.0,8,4,8,8_1,8_4,8_1_0 -4100,2,68.0,1,0.0,1,111,2,0,74,10.0,0.0,0.0,450.22129157951787,0.0,7716.321824397977,31261.0,0,12,1,15614,201104100,,,300.0,,0.0,2.0,5.0,0.0,1.0,1.0,2707.6884694264745,0.0,330.0,4440.0,0.0,40182.0,0,5,1,75.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,8166.543115977495,0.2612374241379833,0.2032388411721043,40182.0,10,5,10,10_1,10_4,10_1_0 -4101,1,21.0,3,225.0,7,111,2,84,84,1.0,0.0,0.0,302.8761416080393,0.0,700.3778592865732,13999.0,41,41,2,15616,201104101,,,,55.0,0.0,0.0,3.0,0.0,2.0,1.5,3088.0872054729757,0.0,222.0,403.0,0.0,2894.0,3,3,3,67.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1003.2540008946125,0.07166611907240607,0.34666689733746114,1929.3333333333333,1,1,1_1,1_0_1,1_3_1,1_0_0 -4102,2,52.0,4,0.0,1,112,2,63,52,4.0,0.0,0.0,915.4499595450197,0.0,2389.6266911142384,37875.0,71,71,1,15619,201104102,,,220.0,,2.0,1.0,6.0,1.0,3.0,2.0,2110.3988305749767,0.0,671.0,1375.0,0.0,31874.0,4,1,3,120.0,4,0.0,4,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3305.076650659258,0.08726274985238966,0.10369193231659843,15937.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -4103,2,35.0,3,0.0,4,111,5,22,46,2.0,0.0,749.4802125642576,859.5133748336251,0.0,1710.1037556773895,32867.0,31,31,1,1562,201104103,,,233.0,,2.0,0.0,5.0,2.0,4.0,2.1,1563.1185044132467,0.0,630.0,984.0,0.0,23161.0,1,1,2,100.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3319.097343075272,0.10098571038048108,0.14330544203943146,11029.047619047618,2,1,2_0,2_1_0,2_2_0,2_0_1 -4104,2,45.0,3,0.0,8,112,6,67,52,4.0,0.0,0.0,414.7493110308286,0.0,0.0,43291.0,50,50,1,15620,201104104,,,,,2.0,0.0,5.0,3.0,5.0,2.8,898.9143521284398,0.0,304.0,0.0,0.0,45862.0,1,1,2,118.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,414.7493110308286,0.009580497355820576,0.009043419629122773,16379.285714285716,4,2,4_0,4_1_0,4_0_0,4_0_0 -4105,2,76.0,3,0.0,3,211,2,0,77,6.0,0.0,0.0,358.9416630844887,0.0,741.9234620295064,12672.0,0,70,1,15622,201104105,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2409.172604065802,690.0,0.0,0.0,0.0,19189.0,0,5,1,100.0,1,2.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1100.865125113995,0.08687382616114228,0.05736959326249388,19189.0,5,3,5,5_1,5_1,5_0_1 -4106,2,64.0,4,0.0,7,112,5,0,77,3.0,0.0,485.77421184720396,1605.7892733002805,172.05312176022517,0.0,28197.0,0,70,1,15623,201104106,,,,,0.0,3.0,4.0,0.0,1.0,1.0,1938.0688445286976,0.0,1177.0,0.0,0.0,14498.0,0,5,1,110.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2263.6166069077094,0.08027863272361277,0.15613302572132085,14498.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -4107,1,26.0,4,105.0,1,111,4,0,63,2.0,0.0,0.0,573.00891655575,0.0,0.0,14138.0,0,20,2,15625,201104107,,,,235.0,1.0,0.0,2.0,0.0,1.0,1.0,4784.376525095616,0.0,420.0,0.0,0.0,11791.0,0,1,3,35.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,573.00891655575,0.04052970127003466,0.04859714329198118,11791.0,2,1,2_1,2_0_1,2_3_1,2_1_0 -4108,2,42.0,3,0.0,2,221,2,64,62,4.0,2836.583344340321,0.0,1091.4455553442858,111.22626053186274,0.0,38259.0,50,71,1,15626,201104108,,,300.0,,2.0,0.0,5.0,4.0,6.0,3.3,989.0679912698719,0.0,800.0,0.0,0.0,54036.0,1,1,2,170.0,1,2.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4039.25516021647,0.10557660054409342,0.07475118736058313,16374.545454545456,4,2,4_0,4_1_0,4_1_0,4_0_1 -4109,2,53.0,3,0.0,9,112,2,0,46,7.0,1237.435687128328,0.0,499.33634157001075,125.12954309834558,0.0,26903.0,0,41,1,15627,201104109,,,,,1.0,2.0,5.0,1.0,2.0,1.5,2227.501746553937,0.0,366.0,0.0,0.0,34002.0,0,1,2,122.0,7,0.0,2,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1861.9015717966843,0.06920795345488177,0.054758589841676496,22668.0,7,4,7,7_1,7_0,7_0_0 -4110,2,53.0,3,0.0,6,400,4,11,52,6.0,0.0,0.0,1637.1683330164287,291.9689338961397,0.0,37352.0,50,50,1,15628,201104110,,,,,2.0,2.0,6.0,0.0,2.0,1.5,1342.5277056773677,0.0,1200.0,0.0,0.0,29921.0,1,1,1,90.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1929.1372669125685,0.051647495901493055,0.06447435803992409,19947.333333333332,6,3,6,6_1,6_0,6_0_0 -4111,2,58.0,2,0.0,4,111,2,43,31,8.0,0.0,0.0,1064.1594164606786,0.0,4170.984769944853,76094.0,33,10,1,15630,201104111,,,420.0,,3.0,1.0,6.0,2.0,4.0,2.5,2419.857761414311,0.0,780.0,2400.0,0.0,64512.0,1,1,1,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,5235.144186405531,0.06879838339955228,0.08114992848470876,25804.8,8,4,8,8_1,8_4,8_0_1 -4112,2,49.0,3,0.0,5,111,2,0,47,8.0,0.0,0.0,607.116590160259,0.0,0.0,17803.0,0,50,2,15631,201104112,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2880.657214716996,0.0,445.0,0.0,0.0,27809.0,0,1,2,66.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,607.116590160259,0.034101926088875974,0.02183165846165842,27809.0,8,4,8,8_0,8_2,8_0_0 -4113,1,27.0,3,158.0,5,111,2,0,52,3.0,0.0,0.0,249.69854823268778,0.0,516.1206692379175,14897.0,0,71,2,15633,201104113,,,,40.0,1.0,0.0,2.0,0.0,1.0,1.0,2972.5138794757827,480.0,0.0,0.0,0.0,12328.0,0,1,3,31.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,765.8192174706053,0.051407613443687,0.062120312903196404,12328.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -4114,2,55.0,5,0.0,6,112,4,0,77,3.0,0.0,0.0,712.1682248621465,46.92357866187959,0.0,8299.0,0,50,2,15634,201104114,,,,410.0,0.0,2.0,2.0,0.0,1.0,1.0,4258.175129441208,0.0,522.0,0.0,0.0,13890.0,0,7,3,37.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,759.0918035240261,0.09146786402265647,0.0546502378347031,13890.0,3,2,3_0,3_0_0,3_1_0,3_0_0 -4115,2,35.0,3,0.0,1,111,2,55,53,7.0,0.0,0.0,982.6678283573902,0.0,2031.1498837300544,36912.0,31,42,1,15635,201104115,,,478.0,,2.0,0.0,4.0,1.0,3.0,1.8,2056.2893055601085,1889.0,0.0,0.0,0.0,42717.0,1,1,2,70.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3013.8177120874448,0.08164872431966419,0.07055312199095079,23731.666666666668,7,4,7,7_1,7_3,7_1_0 -4116,2,71.0,3,0.0,4,112,4,78,75,6.0,0.0,0.0,2738.164036969977,0.0,0.0,29066.0,70,44,1,15637,201104116,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1751.6367800502387,0.0,2007.0,0.0,0.0,30096.0,5,5,1,130.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2738.164036969977,0.09420505184648652,0.09098099538044847,20064.0,6,3,6,6_1,6_0,6_0_1 -4117,2,64.0,3,0.0,6,111,2,78,78,3.0,0.0,0.0,598.2361051408145,0.0,1236.5391033825106,25900.0,50,50,1,15639,201104117,,,,,0.0,3.0,4.0,1.0,3.0,2.0,1316.8449556760518,1150.0,0.0,0.0,0.0,25189.0,6,5,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1834.775208523325,0.07084074164182723,0.07284033540526917,12594.5,2,1,2_0,2_1_0,2_4_0,2_0_0 -4118,0,30.0,2,0.0,6,120,1,0,46,7.0,0.0,0.0,859.5133748336251,46.92357866187959,0.0,23062.0,0,43,1,15641,201104118,,,,,1.0,0.0,4.0,1.0,2.0,1.3,2029.6023857097218,0.0,630.0,0.0,0.0,29881.0,0,1,5,86.0,0,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,906.4369534955047,0.03930435146541951,0.030334893527509274,22985.384615384613,7,4,7,7_1,7_0,7_0_0 -4119,2,72.0,2,0.0,5,400,2,43,74,7.0,0.0,0.0,1053.2449609072357,0.0,0.0,26909.0,60,70,1,15642,201104119,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2593.530559087687,0.0,772.0,0.0,0.0,32402.0,1,5,3,75.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1053.2449609072357,0.03914099226679683,0.03250555400614887,21601.333333333332,6,3,6,6_1,6_0,6_0_0 -4120,2,71.0,4,0.0,1,112,6,0,78,2.0,2696.9752155360998,0.0,1091.4455553442858,173.79103208103552,0.0,14117.0,0,70,1,15644,201104120,,,234.0,,0.0,0.0,3.0,0.0,1.0,1.0,1566.1439649788663,0.0,800.0,0.0,0.0,11960.0,0,5,1,90.0,9,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3962.211802961421,0.2806695333967147,0.33128861228774426,11960.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -4121,2,66.0,2,0.0,4,212,4,77,77,4.0,0.0,0.0,1804.9780871506127,312.82385774586396,0.0,30884.0,50,71,1,15645,201104121,,,260.0,,0.0,4.0,6.0,0.0,2.0,1.5,1707.9898493190628,0.0,1323.0,0.0,0.0,22577.0,5,5,1,120.0,3,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2117.801944896477,0.0685727867146897,0.09380351441274204,15051.333333333334,4,2,4_0,4_1_0,4_0_0,4_0_1 -4122,2,49.0,3,0.0,99,111,2,0,44,1.0,0.0,0.0,0.0,0.0,0.0,13213.0,0,10,8,15647,201104122,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2948.2105355565745,0.0,0.0,0.0,0.0,7541.0,0,1,3,55.0,8,7.0,1,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,7541.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -4123,2,44.0,2,0.0,7,222,2,43,43,4.0,0.0,0.0,3274.3366660328575,0.0,0.0,97510.0,33,33,1,15648,201104123,,,750.0,,2.0,0.0,7.0,3.0,5.0,2.4,2866.1011284160104,0.0,2400.0,0.0,0.0,35262.0,1,1,1,160.0,1,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3274.3366660328575,0.03357949611355612,0.09285737241316028,14692.5,3,2,3_0,3_1_0,3_0_0,3_0_0 -4124,1,47.0,2,50.0,1,112,2,62,54,3.0,0.0,0.0,818.5841665082144,2606.865481215533,0.0,66673.0,50,50,1,15650,201104124,,,,512.0,3.0,0.0,7.0,3.0,5.0,2.8,794.8775806423602,0.0,600.0,0.0,0.0,38307.0,1,1,3,120.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3425.449647723747,0.0513768639137844,0.08942098435595967,13681.07142857143,3,2,3_1,3_1_1,3_0_1,3_1_0 -4125,2,42.0,3,0.0,8,112,2,43,63,5.0,3172.912018277764,0.0,886.7995137172322,0.0,0.0,37130.0,42,50,1,15651,201104125,,,460.0,,2.0,0.0,4.0,2.0,4.0,2.3,3056.2245597959754,0.0,650.0,0.0,0.0,41505.0,1,1,2,100.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4059.711531994996,0.10933777355224876,0.09781258961558839,18045.652173913044,5,3,5,5_1,5_0,5_0_0 -4126,1,39.0,3,55.0,4,111,1,0,43,2.0,0.0,0.0,654.8673332065715,0.0,625.6477154917279,16713.0,0,41,2,15653,201104126,,,,294.0,1.0,0.0,4.0,2.0,3.0,1.8,2794.4602586036303,0.0,480.0,360.0,0.0,20500.0,0,1,3,77.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1280.5150486982993,0.0766179051455932,0.062464148716990214,11388.888888888889,2,1,2_1,2_0_1,2_2_1,2_0_1 -4127,2,61.0,3,0.0,1,111,6,77,78,4.0,0.0,0.0,545.7227776721429,0.0,0.0,20626.0,70,71,2,15654,201104127,,,,,0.0,2.0,5.0,1.0,3.0,2.0,2504.5205580132497,0.0,400.0,0.0,0.0,31458.0,6,5,2,92.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,545.7227776721429,0.026458003377879517,0.017347662841634654,15729.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -4128,1,55.0,3,130.0,4,111,1,0,62,6.0,0.0,0.0,338.1334507317647,0.0,698.9134062596798,16860.0,0,50,2,15656,201104128,,,,170.0,3.0,0.0,3.0,2.0,3.0,2.0,1496.367299137428,650.0,0.0,0.0,0.0,38371.0,0,4,3,100.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1037.0468569914447,0.061509303498899444,0.027026839461870806,19185.5,5,3,5,5_0,5_4,5_0_1 -4129,2,84.0,2,0.0,1,112,2,0,75,9.0,3966.1400228472053,0.0,937.9370590050448,234.61789330939797,317.1991613024701,28712.0,0,31,1,15659,201104129,,,125.0,,0.0,3.0,7.0,0.0,1.0,1.0,2589.545463791973,295.0,575.0,0.0,0.0,34128.0,0,5,1,160.0,10,0.0,1,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5455.894136464119,0.1900213895397088,0.15986562753352435,34128.0,9,5,9,9_1,9_0,9_1_0 -4130,2,65.0,3,0.0,2,111,1,0,74,9.0,0.0,0.0,305.6047554964,0.0,116.4399914942938,15510.0,0,70,8,1566,201104130,,,,351.0,0.0,0.0,2.0,0.0,1.0,1.0,2167.3905893994315,0.0,224.0,67.0,0.0,29698.0,0,5,3,45.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,422.0447469906938,0.027211137781476068,0.014211217825802876,29698.0,9,5,9,9_0,9_2,9_0_1 -4131,2,43.0,3,0.0,9,400,5,45,63,4.0,0.0,277.585263912688,1459.8084302729822,364.9611673701746,0.0,59599.0,42,50,1,15661,201104131,,,438.0,,2.0,0.0,7.0,4.0,6.0,2.9,1363.0036752353908,0.0,1070.0,0.0,0.0,46981.0,1,1,1,215.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2102.3548615558448,0.03527500229124389,0.0447490445404705,16200.344827586207,4,2,4_0,4_1_0,4_0_0,4_0_0 -4132,2,47.0,1,0.0,1,111,2,34,22,10.0,0.0,0.0,472.86662571565256,0.0,977.4035173693062,75550.0,20,12,1,15663,201104132,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2076.1633656990775,909.0,0.0,0.0,0.0,212790.0,1,1,2,143.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1450.2701430849588,0.019196163376372716,0.006815499521053427,106395.0,10,5,10,10_1,10_4,10_1_0 -4133,2,65.0,3,0.0,5,111,2,56,78,3.0,0.0,0.0,1091.4455553442858,0.0,0.0,26092.0,71,70,1,15667,201104133,,,,,1.0,3.0,3.0,0.0,2.0,1.5,2202.911789519325,0.0,800.0,0.0,0.0,20360.0,1,5,3,73.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1091.4455553442858,0.04183065902745232,0.05360734554736178,13573.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0 -4134,2,64.0,3,0.0,4,112,2,77,75,8.0,0.0,0.0,769.4691165177215,0.0,3051.770523342984,29618.0,70,70,1,15668,201104134,,,515.0,,0.0,1.0,6.0,0.0,2.0,1.5,2310.4156622125324,0.0,564.0,1756.0,0.0,39332.0,7,5,2,130.0,10,3.0,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3821.239639860705,0.12901747720510182,0.0971534536728543,26221.333333333332,8,4,8,8_1,8_1,8_0_1 -4135,2,71.0,4,0.0,1,300,2,78,78,5.0,0.0,798.057633748978,1077.8024859024822,97.32297796537989,0.0,44758.0,71,70,1,15669,201104135,,,283.0,,0.0,3.0,5.0,1.0,3.0,2.0,2646.1502490736116,0.0,790.0,0.0,0.0,34113.0,5,5,2,110.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1973.1830976168399,0.044085595817883724,0.05784255555409491,17056.5,5,3,5,5_1,5_0,5_1_0 -4136,1,20.0,2,150.0,6,111,4,0,84,1.0,0.0,0.0,218.28911106885715,0.0,0.0,9464.0,0,41,2,1567,201104136,,,,165.0,0.0,0.0,1.0,0.0,1.0,1.0,3688.4203430230573,0.0,160.0,0.0,0.0,7847.0,0,3,4,25.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,218.28911106885715,0.023065206156895304,0.027818161216879973,7847.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -4137,2,38.0,5,0.0,6,111,4,54,52,5.0,0.0,0.0,3830.973899258443,0.0,0.0,47730.0,42,71,1,15671,201104137,,,780.0,,2.0,0.0,4.0,4.0,6.0,2.9,1837.1008130702994,0.0,2808.0,0.0,0.0,52565.0,1,1,2,96.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3830.973899258443,0.08026343807371554,0.07288069816909432,18125.862068965518,5,3,5,5_1,5_4,5_0_0 -4138,2,50.0,3,0.0,7,111,5,54,38,6.0,0.0,416.377895869032,1907.3011079641394,114.70208117348345,0.0,37478.0,42,50,1,15673,201104138,,,346.0,,2.0,1.0,5.0,2.0,4.0,2.5,1533.31007995375,0.0,1398.0,0.0,0.0,53405.0,4,1,2,200.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2438.3810850066548,0.06506166511037555,0.04565829201398099,21362.0,6,3,6,6_1,6_2,6_0_0 -4139,2,28.0,3,0.0,1,120,1,0,12,1.0,0.0,0.0,613.9381248811608,0.0,0.0,22537.0,0,43,1,15679,201104139,,,207.0,,1.0,0.0,3.0,0.0,1.0,1.0,2156.11406719691,0.0,450.0,0.0,0.0,8990.0,0,1,3,60.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,613.9381248811608,0.02724134201007946,0.0682912263494061,8990.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -4140,1,45.0,4,212.0,1,212,5,0,43,2.0,0.0,485.77421184720396,775.7904276774365,145.98446694806984,193.54525096421906,29123.0,0,33,1,1568,201104140,,,282.0,,2.0,0.0,5.0,2.0,3.0,2.0,2244.979280240866,180.0,500.0,0.0,0.0,20965.0,0,1,2,100.0,2,0.0,2,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1601.0943574369294,0.054976972064585704,0.07636987156865868,10482.5,2,1,2_1,2_1_1,2_0_1,2_1_0 -4141,2,61.0,3,0.0,2,111,2,75,74,9.0,0.0,0.0,728.5399081923108,0.0,6016.64553064545,67589.0,30,10,1,15682,201104141,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2025.5925995065493,0.0,534.0,3462.0,0.0,49317.0,5,5,1,120.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,6745.185438837761,0.09979708885821303,0.13677201449475354,32878.0,9,5,9,9_1,9_4,9_0_1 -4142,2,48.0,1,0.0,1,211,2,0,65,9.0,0.0,0.0,941.3717914844465,0.0,3215.134093499157,35616.0,0,50,1,15686,201104142,,,,,1.0,3.0,5.0,0.0,1.0,1.0,1135.0527547169117,0.0,690.0,1850.0,0.0,36811.0,0,1,2,110.0,3,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4156.505884983604,0.11670333235016858,0.11291477778336921,36811.0,9,5,9,9_1,9_2,9_1_0 -4143,1,45.0,3,125.0,8,112,5,67,64,5.0,0.0,971.5484236944079,477.50743046312505,0.0,0.0,22799.0,50,71,1,1569,201104143,,,600.0,,2.0,1.0,5.0,2.0,4.0,2.1,2375.830638008782,0.0,350.0,0.0,0.0,35760.0,1,1,2,70.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1449.0558541575328,0.06355786894852988,0.04052169614534488,17028.571428571428,5,3,5,5_1,5_0,5_0_0 -4144,2,62.0,1,0.0,6,111,1,0,74,10.0,0.0,0.0,455.67851935623935,0.0,0.0,28207.0,0,41,2,15690,201104144,,,,579.0,0.0,5.0,2.0,0.0,1.0,1.0,3368.603123363773,0.0,334.0,0.0,0.0,43846.0,0,5,3,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,455.67851935623935,0.016154802685724796,0.010392704450947391,43846.0,10,5,10,10_0,10_3,10_0_0 -4145,1,64.0,5,56.0,2,111,1,78,68,3.0,0.0,0.0,450.22129157951787,0.0,0.0,41649.0,71,71,2,15691,201104145,,,,469.0,2.0,2.0,3.0,1.0,3.0,2.0,3746.593313833737,0.0,330.0,0.0,0.0,25823.0,5,1,3,62.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,450.22129157951787,0.010809894393131117,0.01743489492233737,12911.5,3,2,3_1,3_0_1,3_3_1,3_0_1 -4146,2,48.0,3,0.0,6,221,2,13,42,4.0,0.0,0.0,1309.734666413143,0.0,0.0,66582.0,20,20,1,15692,201104146,,,,,2.0,1.0,5.0,3.0,5.0,2.8,1601.4637594105868,0.0,960.0,0.0,0.0,41308.0,1,1,1,150.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1309.734666413143,0.019671002168951714,0.031706562080302675,14752.857142857143,3,2,3_0,3_1_0,3_1_0,3_0_0 -4147,2,46.0,2,0.0,1,221,2,62,46,8.0,0.0,0.0,851.3275331685429,2606.865481215533,0.0,24796.0,71,50,1,15693,201104147,,,335.0,,2.0,2.0,5.0,0.0,2.0,1.5,3355.9875475285585,0.0,624.0,0.0,0.0,40977.0,1,1,1,125.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3458.1930143840755,0.13946576118664605,0.08439351378539364,27318.0,8,4,8,8_1,8_1,8_1_0 -4148,2,40.0,3,0.0,1,111,2,43,43,9.0,0.0,0.0,1500.737638598393,0.0,4170.984769944853,64446.0,41,10,1,15695,201104148,,,680.0,,2.0,0.0,5.0,3.0,5.0,2.4,1472.9972308991264,0.0,1100.0,2400.0,0.0,84488.0,6,1,2,140.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5671.722408543246,0.08800736133419058,0.06713050857569414,35203.333333333336,9,5,9,9_1,9_3,9_1_0 -4149,2,38.0,1,0.0,8,111,4,42,42,9.0,0.0,0.0,2237.463388455786,0.0,0.0,31435.0,50,20,1,15698,201104149,,,442.0,,2.0,0.0,3.0,0.0,2.0,1.5,1816.754572686737,0.0,1640.0,0.0,0.0,45987.0,1,1,2,80.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2237.463388455786,0.07117745787993593,0.04865425856124092,30658.0,9,5,9,9_1,9_2,9_0_0 -4150,2,21.0,3,0.0,1,111,4,43,56,9.0,0.0,0.0,679.4248582018179,375.3886292950367,0.0,23749.0,30,71,1,15699,201104150,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3657.797587437078,0.0,498.0,0.0,0.0,45638.0,1,1,3,23.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1054.8134874968546,0.04441506958174469,0.023112614213963247,30425.333333333332,9,5,9,9_1,9_4,9_1_0 -4151,2,19.0,1,0.0,1,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,3955.0,0,41,8,157,201104151,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3329.983984928582,0.0,0.0,0.0,0.0,2400.0,0,3,3,17.0,8,7.0,1,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,2400.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -4152,2,20.0,2,0.0,5,111,1,0,84,1.0,0.0,0.0,54.57227776721429,0.0,0.0,16222.0,0,30,2,1570,201104152,,,,400.0,0.0,0.0,2.0,0.0,1.0,1.0,3146.300420008694,0.0,40.0,0.0,0.0,2416.0,0,3,3,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,54.57227776721429,0.0033640906033296936,0.022587863314244325,2416.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -4153,2,73.0,4,0.0,2,111,2,0,72,2.0,0.0,0.0,2504.867549515136,0.0,1710.1037556773895,11564.0,0,70,1,15702,201104153,,,,,0.0,1.0,4.0,0.0,1.0,1.0,1765.7611116810554,0.0,1836.0,984.0,0.0,9359.0,0,5,1,98.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4214.9713051925255,0.3644907735379216,0.4503655631149189,9359.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -4154,2,39.0,3,0.0,1,112,5,0,62,8.0,0.0,971.5484236944079,613.9381248811608,0.0,0.0,25093.0,0,50,2,15703,201104154,,,,262.0,1.0,2.0,3.0,0.0,1.0,1.0,2284.5160873678137,0.0,450.0,0.0,0.0,25762.0,0,1,3,100.0,5,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1585.4865485755686,0.0631844159158159,0.06154361263005856,25762.0,8,4,8,8_0,8_0,8_1_0 -4155,2,61.0,3,0.0,4,400,2,0,75,3.0,0.0,0.0,286.504458277875,1970.790303798943,0.0,22982.0,0,50,1,15704,201104155,,,,,0.0,2.0,5.0,0.0,1.0,1.0,5407.069320176602,0.0,210.0,0.0,0.0,12743.0,0,5,1,86.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2257.2947620768177,0.09822011844386118,0.17713997975961843,12743.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -4156,2,53.0,3,0.0,9,111,2,0,52,5.0,0.0,0.0,1091.4455553442858,0.0,0.0,19370.0,0,60,2,15707,201104156,,,,385.0,1.0,1.0,3.0,0.0,1.0,1.0,3214.13466272672,0.0,800.0,0.0,0.0,18273.0,0,1,3,65.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1091.4455553442858,0.05634721504100598,0.059729959795560984,18273.0,5,3,5,5_0,5_3,5_0_0 -4157,2,58.0,4,0.0,5,111,2,75,42,5.0,0.0,0.0,955.0148609262501,0.0,2780.6565132965684,55112.0,31,20,1,15709,201104157,,,400.0,,1.0,2.0,7.0,1.0,3.0,2.0,2448.6812895031585,0.0,700.0,1600.0,0.0,34736.0,4,1,1,138.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3735.6713742228185,0.06778326633442477,0.1075446618557928,17368.0,5,3,5,5_1,5_4,5_0_0 -4158,2,48.0,1,0.0,99,111,4,0,37,9.0,0.0,0.0,723.0826804155894,0.0,0.0,16043.0,0,50,2,1571,201104158,,,,410.0,1.0,0.0,2.0,0.0,1.0,1.0,4038.6147045686125,0.0,530.0,0.0,0.0,31636.0,0,1,3,56.0,4,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,723.0826804155894,0.04507153776822224,0.02285632445364741,31636.0,9,5,9,9_0,9_1,9_0_0 -4159,2,29.0,3,0.0,99,111,2,0,47,5.0,0.0,0.0,573.00891655575,0.0,1876.9431464751838,21510.0,0,20,1,15710,201104159,,,360.0,,1.0,0.0,3.0,0.0,1.0,1.0,1938.7273586191377,0.0,420.0,1080.0,0.0,17798.0,0,1,3,55.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2449.952063030934,0.11389828280013639,0.13765322300432262,17798.0,5,3,5,5_1,5_2,5_0_0 -4160,2,37.0,4,0.0,99,111,2,0,35,4.0,0.0,0.0,1146.0178331115,0.0,0.0,49933.0,0,12,2,15711,201104160,,,,688.0,1.0,0.0,3.0,1.0,2.0,1.3,2742.7093148732565,0.0,840.0,0.0,0.0,19630.0,0,1,3,40.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1146.0178331115,0.022951111151172574,0.05838093902758533,15100.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -4161,1,38.0,4,329.0,99,111,1,85,84,1.0,0.0,0.0,1146.0178331115,0.0,750.7772585900734,9044.0,71,71,2,15712,201104161,999999.0,432.0,,,0.0,0.0,2.0,1.0,3.0,1.8,3250.212368122981,0.0,840.0,432.0,0.0,12288.0,6,3,3,42.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1896.7950917015735,0.20972966515939556,0.15436157972831815,6826.666666666666,1,1,1_1,1_0_1,1_4_1,1_0_0 -4162,1,30.0,4,329.0,99,111,1,0,85,1.0,0.0,0.0,343.80534993345003,0.0,479.663248543658,5799.0,0,60,2,15714,201104162,,,,,0.0,0.0,3.0,1.0,2.0,1.3,3614.5943811554007,0.0,252.0,276.0,0.0,11856.0,0,6,3,66.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,823.4685984771081,0.14200182763874947,0.06945585344779927,9120.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -4163,2,69.0,3,0.0,99,111,2,78,78,2.0,0.0,0.0,409.2920832541072,0.0,719.494872815487,13712.0,70,43,1,15718,201104163,,,,,0.0,3.0,4.0,0.0,3.0,1.8,2719.1286498308978,0.0,300.0,414.0,0.0,20353.0,5,5,1,80.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1128.7869560695942,0.08232110239714077,0.05546047049916937,11307.222222222223,2,1,2_0,2_1_0,2_4_0,2_0_0 -4164,2,42.0,3,0.0,8,112,2,55,62,6.0,4442.07682558887,277.585263912688,620.7596596020626,173.79103208103552,0.0,42021.0,42,50,1,15719,201104164,,,343.0,,2.0,0.0,5.0,2.0,4.0,2.1,3220.0639698883692,0.0,455.0,0.0,0.0,43984.0,1,1,2,101.0,7,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5514.212781184655,0.13122516792043631,0.12536860633831973,20944.761904761905,6,3,6,6_1,6_0,6_0_0 -4165,2,44.0,1,0.0,6,111,4,85,21,9.0,0.0,0.0,2653.813818676645,0.0,691.3866464999603,142153.0,41,41,1,1572,201104165,,,1200.0,,1.0,1.0,6.0,1.0,3.0,1.8,4136.172067934147,643.0,1700.0,0.0,0.0,61126.0,6,4,1,300.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3345.2004651766056,0.023532394428373692,0.05472631065629365,33958.88888888889,9,5,9,9_1,9_3,9_0_0 -4166,1,61.0,3,226.0,1,112,2,0,77,1.0,0.0,0.0,538.9012429512411,0.0,100.7987986070006,13350.0,0,44,1,15720,201104166,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3596.4166944502376,0.0,395.0,58.0,0.0,5422.0,0,5,3,45.0,9,0.0,1,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,639.7000415582418,0.04791760610923159,0.11798230202107005,5422.0,1,1,1_1,1_1_1,1_0_1,1_1_0 -4167,2,68.0,1,0.0,4,112,5,56,78,8.0,0.0,0.0,1500.737638598393,140.77073598563877,0.0,12331.0,70,70,1,15723,201104167,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1736.0856906462022,0.0,1100.0,0.0,0.0,37560.0,1,5,1,150.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1641.5083745840318,0.1331204585665422,0.043703630846220226,25040.0,8,4,8,8_1,8_1,8_0_1 -4168,1,39.0,3,178.0,1,111,2,68,21,2.0,0.0,0.0,828.1343151174768,0.0,1626.6840602784926,24921.0,60,50,1,15724,201104168,,,437.0,,2.0,0.0,6.0,2.0,4.0,2.3,2437.3951672390385,0.0,607.0,936.0,0.0,28001.0,4,1,2,140.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2454.8183753959693,0.0985040076801079,0.087668953801506,12174.347826086958,2,1,2_1,2_1_1,2_3_1,2_1_0 -4169,2,78.0,3,0.0,2,111,2,0,77,4.0,0.0,0.0,1227.8762497623215,100.7987986070006,0.0,18099.0,0,50,1,15726,201104169,,,,,0.0,1.0,4.0,0.0,1.0,1.0,5388.796716109584,0.0,900.0,0.0,0.0,15894.0,0,5,1,96.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1328.6750483693222,0.07341151712079795,0.08359601411660515,15894.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -4170,2,53.0,2,0.0,99,112,6,13,43,10.0,2273.3914610960182,0.0,974.115158144775,0.0,0.0,44070.0,43,33,1,15727,201104170,,,,,2.0,2.0,8.0,0.0,2.0,1.5,3862.029995014615,0.0,714.0,0.0,0.0,109093.0,1,1,1,150.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3247.506619240793,0.07368973494987051,0.029768240118438333,72728.66666666667,10,5,10,10_1,10_0,10_0_0 -4171,1,81.0,3,69.0,99,112,2,0,71,4.0,0.0,0.0,643.9528776531287,104.27461924862132,0.0,8842.0,0,71,2,15729,201104171,,,128.0,217.0,0.0,2.0,3.0,0.0,1.0,1.0,3686.7558097261362,0.0,472.0,0.0,0.0,15648.0,0,5,3,49.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,748.22749690175,0.08462197431596358,0.04781617439300549,15648.0,4,2,4_1,4_0_1,4_1_1,4_0_0 -4172,2,50.0,3,0.0,6,112,2,11,54,4.0,729.7697642038858,0.0,777.6549581828036,187.69431464751835,0.0,35384.0,50,50,1,1573,201104172,,,310.0,,2.0,1.0,4.0,1.0,3.0,2.0,1299.5548373529061,0.0,570.0,0.0,0.0,29849.0,1,1,1,98.0,6,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1695.1190370342078,0.047906371157421655,0.05678980994452772,14924.5,3,2,3_0,3_1_0,3_0_0,3_0_0 -4173,2,44.0,3,0.0,7,300,2,11,52,7.0,0.0,138.792631956344,0.0,135.55700502320772,0.0,23338.0,50,50,1,15730,201104173,,,,,3.0,0.0,6.0,3.0,5.0,2.8,939.3426373043292,0.0,0.0,0.0,0.0,62040.0,1,1,1,162.0,0,0.0,4,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,274.34963697955175,0.011755490486740584,0.004422141150540808,22157.14285714286,7,4,7,7_1,7_0,7_0_0 -4174,1,37.0,4,360.0,1,111,2,0,85,5.0,0.0,0.0,266.03985411516965,0.0,1075.7664885816098,15848.0,0,41,2,15731,201104174,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3620.9552750122,0.0,195.0,619.0,0.0,18487.0,0,7,3,70.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1341.8063426967794,0.08466723515249744,0.07258107549612049,18487.0,5,3,5,5_0,5_2,5_1_0 -4175,1,51.0,4,262.0,3,111,4,85,85,1.0,0.0,0.0,777.6549581828036,0.0,0.0,12863.0,70,50,2,15734,201104175,,,,29.0,0.0,6.0,3.0,0.0,2.0,1.5,3145.4237933200993,0.0,570.0,0.0,0.0,11624.0,7,7,3,74.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,777.6549581828036,0.060456733124683484,0.06690080507422605,7749.333333333333,1,1,1_1,1_0_1,1_3_1,1_0_1 -4176,1,21.0,3,274.0,4,221,1,85,67,1.0,0.0,0.0,991.8511484191197,104.27461924862132,1060.1252956943167,7821.0,71,71,2,15735,201104176,610.0,610.0,,,1.0,0.0,3.0,1.0,3.0,1.8,5337.334706434544,0.0,727.0,610.0,0.0,13108.0,6,1,3,50.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,2156.2510633620577,0.2757001743206825,0.16449886049451157,7282.222222222222,1,1,1_1,1_0_1,1_1_1,1_0_1 -4177,2,59.0,3,0.0,5,400,2,77,64,6.0,0.0,0.0,1810.435314927334,208.54923849724264,0.0,22707.0,70,50,1,15738,201104177,,,358.0,,1.0,1.0,4.0,0.0,2.0,1.5,1465.9453466128116,0.0,1327.0,0.0,0.0,28987.0,5,1,1,89.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2018.9845534245767,0.08891463220260609,0.06965138004707547,19324.666666666668,6,3,6,6_1,6_0,6_0_0 -4178,2,75.0,4,0.0,4,112,2,86,78,3.0,0.0,1387.9263195634398,487.0575790723875,0.0,1847.3986710214076,23643.0,71,71,1,15740,201104178,,,,,0.0,3.0,6.0,0.0,2.0,1.5,5279.012828742617,0.0,357.0,1063.0,0.0,20032.0,5,5,1,170.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3722.382569657235,0.1574412117606579,0.18582181358113192,13354.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1 -4179,2,78.0,3,0.0,1,111,6,0,78,4.0,0.0,0.0,43.65782221377143,0.0,139.0328256648284,8449.0,0,71,1,15741,201104179,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3797.6390832321817,0.0,32.0,80.0,0.0,15608.0,0,5,1,86.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,182.69064787859983,0.021622753921008382,0.011704936435071747,15608.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -4180,1,61.0,3,210.0,1,111,4,0,75,1.0,0.0,0.0,750.3688192991965,0.0,0.0,12795.0,0,71,2,15743,201104180,,,200.0,,0.0,1.0,1.0,0.0,1.0,1.0,2975.7761627345853,0.0,550.0,0.0,0.0,7576.0,0,4,3,28.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,750.3688192991965,0.05864547239540418,0.09904551469102382,7576.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -4181,2,66.0,2,0.0,5,112,4,0,75,7.0,0.0,0.0,1337.02080529675,0.0,0.0,43329.0,0,33,1,15744,201104181,,,100.0,,0.0,0.0,4.0,0.0,1.0,1.0,2130.1413814288208,0.0,980.0,0.0,0.0,23624.0,0,5,1,80.0,8,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1337.02080529675,0.030857412017280574,0.0565958688324056,23624.0,7,4,7,7_1,7_1,7_0_0 -4182,1,39.0,3,240.0,9,111,2,68,63,2.0,0.0,0.0,682.1534720901786,0.0,2919.689338961397,24631.0,41,71,1,15745,201104182,,,140.0,,2.0,0.0,4.0,3.0,5.0,2.4,4387.2051322621355,0.0,500.0,1680.0,0.0,25540.0,1,1,2,105.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,3601.8428110515756,0.14623209821166724,0.14102751805213687,10641.666666666668,2,1,2_1,2_1_1,2_4_1,2_0_0 -4183,2,54.0,1,0.0,8,111,2,33,33,10.0,0.0,0.0,988.3900867543892,0.0,2042.9776490667568,59203.0,20,20,1,15746,201104183,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1442.7909971900676,1900.0,0.0,0.0,0.0,117278.0,1,1,2,190.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3031.367735821146,0.0512029413344112,0.02584771002081504,78185.33333333333,10,5,10,10_1,10_2,10_0_0 -4184,1,77.0,2,20.0,4,111,2,0,75,3.0,0.0,0.0,218.28911106885715,0.0,330.2029609539675,17047.0,0,70,2,15747,201104184,,,,343.0,0.0,0.0,2.0,0.0,1.0,1.0,2358.5985588735593,0.0,160.0,190.0,0.0,14204.0,0,5,3,55.0,6,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,548.4920720228247,0.032175284332892864,0.0386153246988753,14204.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -4185,1,44.0,3,78.0,6,111,2,43,34,6.0,0.0,0.0,2742.256957802518,0.0,0.0,41263.0,33,10,1,15748,201104185,,,341.0,,2.0,0.0,5.0,3.0,5.0,2.4,1398.1871580399607,0.0,2010.0,0.0,0.0,47413.0,1,1,2,130.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2742.256957802518,0.06645801220954653,0.057837659667233,19755.416666666668,6,3,6,6_1,6_3,6_0_0 -4186,2,24.0,1,0.0,1,111,4,0,46,9.0,0.0,0.0,409.2920832541072,0.0,0.0,22875.0,0,20,2,15749,201104186,,,66.0,500.0,1.0,0.0,2.0,0.0,1.0,1.0,3524.084517408739,0.0,300.0,0.0,0.0,31585.0,0,1,3,50.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,409.2920832541072,0.01789255008761124,0.01295843227019494,31585.0,9,5,9,9_0,9_3,9_1_0 -4187,2,73.0,3,0.0,1,120,6,0,77,3.0,1200.9471989181338,0.0,525.2581735094376,90.37133668213848,0.0,9716.0,0,70,1,1575,201104187,,,88.0,,0.0,1.0,3.0,0.0,1.0,1.0,2311.057566226161,0.0,385.0,0.0,0.0,12760.0,0,5,5,53.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1816.57670910971,0.18696754931141518,0.14236494585499296,12760.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -4188,2,36.0,3,0.0,9,111,4,85,37,8.0,0.0,0.0,1227.8762497623215,0.0,0.0,59591.0,43,42,2,15751,201104188,,,,,1.0,0.0,3.0,2.0,4.0,2.1,3620.7722403447992,0.0,900.0,0.0,0.0,52169.0,6,1,2,64.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1227.8762497623215,0.02060506200201912,0.023536511141910358,24842.38095238095,7,4,7,7_0,7_4,7_0_0 -4189,1,41.0,3,17.0,1,300,4,0,63,5.0,0.0,0.0,1099.631397009368,62.56477154917279,0.0,26515.0,0,50,1,15752,201104189,,,,,1.0,0.0,2.0,0.0,1.0,1.0,1876.1401085357236,0.0,806.0,0.0,0.0,17441.0,0,1,2,80.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1162.1961685585406,0.043831648823629665,0.06663586770016287,17441.0,5,3,5,5_1,5_0,5_1_0 -4190,2,58.0,2,0.0,1,111,2,75,33,10.0,0.0,0.0,948.1933262053483,0.0,3056.9842543054147,29249.0,41,12,1,15754,201104190,,,430.0,,1.0,3.0,5.0,0.0,2.0,1.5,2577.7832182211223,0.0,695.0,1759.0,0.0,83752.0,5,1,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4005.1775805107627,0.13693382955009617,0.047821873871797246,55834.666666666664,10,5,10,10_1,10_4,10_1_0 -4191,2,76.0,3,0.0,8,111,2,0,77,4.0,0.0,0.0,261.9469332826286,0.0,813.3420301392463,16999.0,0,71,2,15755,201104191,,,,363.0,0.0,7.0,3.0,0.0,1.0,1.0,3682.400200758022,0.0,192.0,468.0,0.0,14850.0,0,5,3,68.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1075.288963421875,0.06325601290792841,0.07241003120686026,14850.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -4192,2,59.0,2,0.0,3,111,1,0,46,8.0,0.0,0.0,245.5752499524643,0.0,364.9611673701746,22525.0,0,50,2,15756,201104192,,,,305.0,2.0,1.0,3.0,1.0,2.0,1.5,2417.7684038017014,0.0,180.0,210.0,0.0,38580.0,0,1,3,60.0,6,4.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,610.536417322639,0.027104835397231474,0.0158252052183162,25720.0,8,4,8,8_0,8_2,8_0_1 -4193,2,45.0,3,0.0,1,300,2,13,13,1.0,1507.1332086819382,0.0,1091.4455553442858,139.0328256648284,0.0,26246.0,50,50,1,15758,201104193,,,,,2.0,0.0,8.0,2.0,4.0,2.3,1412.671329636667,0.0,800.0,0.0,0.0,18399.0,1,1,3,147.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2737.611589691053,0.10430585954778072,0.14879132505522327,7999.565217391305,1,1,1_0,1_1_0,1_0_0,1_1_0 -4194,2,66.0,4,0.0,1,112,4,0,78,3.0,0.0,138.792631956344,955.0148609262501,0.0,0.0,14215.0,0,70,1,1576,201104194,,,310.0,,0.0,1.0,5.0,0.0,1.0,1.0,1951.5288347888081,0.0,700.0,0.0,0.0,12410.0,0,5,1,110.0,5,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1093.807492882594,0.07694741420208188,0.08813920168272313,12410.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -4195,2,39.0,1,0.0,1,111,2,37,38,7.0,0.0,0.0,20.46460416270536,0.0,104.27461924862132,51573.0,12,10,2,15761,201104195,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2960.5730865046617,0.0,15.0,60.0,0.0,49324.0,1,1,2,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,124.73922341132668,0.0024186924051601937,0.002528976226813046,23487.619047619046,7,4,7,7_0,7_4,7_1_0 -4196,2,55.0,2,0.0,5,111,2,75,33,10.0,0.0,0.0,3470.7968659948287,0.0,0.0,36487.0,41,31,1,15762,201104196,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2343.1112977459115,0.0,2544.0,0.0,0.0,57800.0,5,1,1,125.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3470.7968659948287,0.09512420494956639,0.06004838868503164,38533.333333333336,10,5,10,10_1,10_3,10_0_0 -4197,2,77.0,3,0.0,3,111,2,77,75,4.0,0.0,0.0,559.3658471139465,0.0,2259.283417053462,25471.0,50,50,1,15763,201104197,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1103.078788815472,0.0,410.0,1300.0,0.0,23627.0,5,5,1,150.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2818.6492641674085,0.1106611151571359,0.11929780607641294,15751.333333333334,4,2,4_0,4_1_0,4_3_0,4_0_1 -4198,2,49.0,4,0.0,4,111,2,35,46,9.0,0.0,0.0,1293.3629830829786,0.0,3545.337054453125,46700.0,50,71,1,15764,201104198,,,391.0,,3.0,2.0,6.0,2.0,4.0,2.5,2707.9912528258355,0.0,948.0,2040.0,0.0,74250.0,1,1,2,145.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4838.700037536104,0.1036124205039851,0.06516767727321353,29700.0,9,5,9,9_1,9_4,9_0_1 -4199,2,58.0,2,0.0,8,111,4,45,45,10.0,0.0,0.0,1672.0220887072414,0.0,72.04184341445932,70230.0,60,41,1,15765,201104199,,,600.0,,2.0,2.0,6.0,0.0,2.0,1.5,2306.8244008988668,67.0,1200.0,0.0,0.0,63957.0,1,1,1,170.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1744.0639321217009,0.024833602906474454,0.027269320514122,42638.0,10,5,10,10_1,10_2,10_0_0 -4201,2,85.0,3,0.0,3,111,1,0,74,10.0,0.0,0.0,491.1504999049286,0.0,0.0,40749.0,0,10,2,15770,201104201,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2718.938024054064,0.0,360.0,0.0,0.0,50563.0,0,5,1,64.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,491.1504999049286,0.012053068784631,0.009713634473922208,50563.0,10,5,10,10_0,10_4,10_0_1 -4202,2,58.0,3,0.0,2,111,1,0,56,4.0,269.69752155361,0.0,455.67851935623935,0.0,0.0,7491.0,0,71,2,15771,201104202,170.0,170.0,,,1.0,3.0,1.0,0.0,1.0,1.0,3378.6764273219565,0.0,334.0,0.0,0.0,16672.0,0,1,3,33.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,725.3760409098493,0.09683300506071943,0.043508639689890195,16672.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -4203,2,51.0,5,0.0,4,211,2,0,68,4.0,0.0,0.0,712.6812730807964,0.0,1473.094410116556,27119.0,0,50,1,15772,201104203,,,551.0,517.0,3.0,0.0,5.0,2.0,3.0,2.0,1144.0077246843173,1370.0,0.0,0.0,0.0,33003.0,0,1,3,90.0,1,2.0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2185.7756831973525,0.08059942045050895,0.06622960589029338,16501.5,4,2,4_0,4_1_0,4_1_0,4_0_1 -4204,2,31.0,1,0.0,2,111,1,52,65,8.0,0.0,0.0,572.2258396999096,0.0,1182.7765336702275,28054.0,43,50,2,15774,201104204,,,,361.0,2.0,0.0,3.0,0.0,2.0,1.5,2744.1013134439077,1100.0,0.0,0.0,0.0,41124.0,1,1,3,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1755.002373370137,0.06255800860376906,0.042675867458664946,27416.0,8,4,8,8_0,8_4,8_0_1 -4205,2,51.0,3,0.0,99,111,4,0,38,7.0,0.0,0.0,1276.9912997528145,147.7223772688802,0.0,81214.0,0,10,1,15775,201104205,,,297.0,,2.0,0.0,4.0,2.0,3.0,2.0,988.3790534036456,0.0,936.0,0.0,0.0,43914.0,0,1,3,94.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1424.7136770216946,0.017542710333460915,0.032443268138217754,21957.0,7,4,7,7_1,7_2,7_0_0 -4206,2,29.0,3,0.0,8,111,4,0,55,9.0,0.0,0.0,791.2980276246072,0.0,0.0,40827.0,0,31,2,15776,201104206,,,,549.0,1.0,0.0,2.0,0.0,1.0,1.0,3355.9533401999292,0.0,580.0,0.0,0.0,31869.0,0,1,3,42.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,791.2980276246072,0.01938173335353093,0.02482970998853454,31869.0,9,5,9,9_0,9_2,9_0_0 -4207,2,51.0,3,0.0,6,111,1,85,63,5.0,0.0,0.0,599.6571187180061,0.0,756.8036195964908,31881.0,50,50,2,15778,201104207,,,,,2.0,0.0,2.0,6.0,8.0,4.5,960.7104417746897,25.0,430.0,420.0,0.0,79750.0,6,1,1,47.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1356.460738314497,0.042547622041795956,0.017008912079178644,17722.222222222223,5,3,5,5_0,5_3,5_0_0 -4208,2,54.0,2,0.0,6,300,2,22,11,5.0,2379.684013708323,0.0,287.76115962541655,26.06865481215533,199.996759329693,30112.0,60,50,1,15779,201104208,,,,,2.0,3.0,7.0,0.0,2.0,1.5,1942.579336886299,186.0,140.0,0.0,0.0,26135.0,5,1,1,150.0,0,0.0,3,5,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2893.5105874755877,0.09609161090181946,0.11071400755598193,17423.333333333332,5,3,5,5_1,5_0,5_0_0 -4209,2,32.0,2,0.0,4,111,1,0,38,9.0,0.0,0.0,272.86138883607146,0.0,0.0,22905.0,0,20,2,1578,201104209,,,,494.0,1.0,0.0,1.0,0.0,1.0,1.0,3447.2166131595363,0.0,200.0,0.0,0.0,31566.0,0,1,3,21.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,272.86138883607146,0.011912743454969284,0.008644154749923064,31566.0,9,5,9,9_0,9_4,9_0_1 -4210,2,89.0,2,0.0,1,111,2,0,77,5.0,0.0,0.0,282.411537445334,0.0,1350.356319269646,5446.0,0,70,1,15780,201104210,,,92.0,,0.0,1.0,3.0,0.0,1.0,1.0,2182.8111107883396,0.0,207.0,777.0,0.0,17217.0,0,5,5,63.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1632.76785671498,0.2998104768114176,0.09483463185891736,17217.0,5,3,5,5_1,5_3,5_1_0 -4211,1,26.0,3,151.0,1,111,6,84,55,1.0,0.0,0.0,1261.9839233668304,0.0,0.0,24626.0,20,20,2,15781,201104211,,,,674.0,1.0,0.0,2.0,0.0,2.0,1.5,3242.944431253079,0.0,925.0,0.0,0.0,12385.0,3,1,3,35.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1261.9839233668304,0.051245997050549434,0.1018961585278022,8256.666666666666,1,1,1_1,1_0_1,1_4_1,1_1_0 -4212,2,52.0,5,0.0,4,111,1,0,55,4.0,0.0,0.0,493.15463275955835,0.0,1019.3383217448869,27562.0,0,50,2,15782,201104212,,,,261.0,1.0,1.0,3.0,1.0,2.0,1.5,1425.5357760864827,948.0,0.0,0.0,0.0,23310.0,0,1,3,45.0,4,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1512.4929545044452,0.05487602331124175,0.06488601263425334,15540.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -4213,2,30.0,3,0.0,1,111,2,63,42,7.0,0.0,0.0,573.00891655575,0.0,1042.7461924862132,42155.0,42,20,1,15783,201104213,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1731.2965651600296,0.0,420.0,600.0,0.0,46380.0,1,1,2,100.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1615.7551090419634,0.03832890781738734,0.03483732447265984,22085.714285714286,7,4,7,7_1,7_3,7_1_0 -4214,2,29.0,2,0.0,6,111,2,21,21,6.0,0.0,0.0,1091.4455553442858,0.0,2954.447545377604,38292.0,71,42,1,15784,201104214,,,520.0,,2.0,0.0,5.0,2.0,4.0,2.1,8342.715762926871,0.0,800.0,1700.0,0.0,42700.0,1,1,2,103.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4045.89310072189,0.10565896533797894,0.09475159486468127,20333.333333333332,6,3,6,6_1,6_2,6_0_0 -4215,2,73.0,3,0.0,5,111,1,77,75,5.0,0.0,0.0,669.7966717911282,130.34327406077665,267.73759716716967,37955.0,70,71,1,15786,201104215,,,,,0.0,3.0,6.0,0.0,2.0,1.5,2179.335146754034,249.0,396.0,0.0,0.0,26873.0,5,5,1,100.0,7,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1067.8775430190747,0.028135358793810423,0.03973793558661388,17915.333333333332,5,3,5,5_1,5_2,5_0_0 -4216,2,37.0,3,0.0,2,111,1,46,37,10.0,0.0,0.0,2066.6454057484702,0.0,2782.750608307772,93601.0,12,31,2,15787,201104216,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3100.549087272937,2588.0,528.0,0.0,0.0,120816.0,1,1,2,120.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,4849.396014056242,0.051809232957513725,0.040138690356047564,57531.42857142857,10,5,10,10_0,10_3,10_0_1 -4217,1,49.0,3,390.0,2,111,1,0,85,1.0,0.0,0.0,163.71683330164288,0.0,782.0596443646599,13675.0,0,71,2,15788,201104217,450.0,450.0,,,2.0,2.0,4.0,4.0,5.0,2.8,1366.251824989298,0.0,120.0,450.0,0.0,19420.0,0,6,3,61.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,945.7764776663028,0.06916098556974791,0.04870115744934618,6935.714285714286,1,1,1_1,1_0_1,1_3_1,1_0_1 -4218,2,58.0,2,0.0,6,111,2,52,38,9.0,0.0,0.0,667.4234112136218,0.0,1379.5475388171835,33471.0,71,31,1,15789,201104218,,,405.0,,2.0,2.0,4.0,0.0,2.0,1.5,2729.5253772946194,1283.0,0.0,0.0,0.0,48859.0,1,1,1,150.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2046.9709500308054,0.06115655194140616,0.04189547371069415,32572.666666666668,9,5,9,9_1,9_3,9_0_0 -4219,2,38.0,2,0.0,8,112,2,43,63,7.0,1586.456009138882,0.0,900.4425831590357,83.41969539889705,0.0,75543.0,33,43,1,1579,201104219,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1319.7983050571136,0.0,660.0,0.0,0.0,56566.0,1,1,2,120.0,6,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2570.318287696815,0.03402457259702176,0.045439279561871354,23569.166666666668,7,4,7,7_1,7_1,7_0_0 -4220,2,57.0,1,0.0,6,111,2,74,37,10.0,0.0,0.0,188.2743582968893,0.0,1395.5419876107153,77007.0,10,60,1,15791,201104220,,,339.0,,1.0,0.0,7.0,0.0,2.0,1.5,2636.3327380376822,0.0,138.0,803.0,0.0,91919.0,7,1,1,168.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1583.8163459076045,0.020567173710280943,0.017230565453362247,61279.333333333336,10,5,10,10_1,10_3,10_0_0 -4221,2,48.0,2,0.0,6,111,4,0,42,7.0,0.0,0.0,573.00891655575,0.0,0.0,22728.0,0,41,2,15794,201104221,,,,390.0,1.0,0.0,1.0,0.0,1.0,1.0,3982.3953439989077,0.0,420.0,0.0,0.0,22084.0,0,1,3,24.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,573.00891655575,0.025211585557715153,0.025946790280553796,22084.0,7,4,7,7_0,7_3,7_0_0 -4222,2,74.0,4,0.0,3,111,6,78,78,2.0,1903.7472109666587,0.0,491.1504999049286,260.6865481215533,0.0,15629.0,71,71,1,15795,201104222,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2976.791099249691,0.0,360.0,0.0,0.0,18490.0,5,5,1,80.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2655.5842589931403,0.16991389461853865,0.14362272898827153,12326.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_1 -4223,2,42.0,2,0.0,2,111,1,0,37,5.0,0.0,0.0,654.8673332065715,0.0,208.54923849724264,51265.0,0,20,2,15796,201104223,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3342.0680048357276,0.0,480.0,120.0,0.0,18439.0,0,4,1,68.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,863.4165717038142,0.016842223187434197,0.04682556384314844,18439.0,5,3,5,5_0,5_4,5_0_1 -4224,2,39.0,2,0.0,8,300,4,67,62,5.0,0.0,346.98157989085996,1637.1683330164287,180.74267336427695,0.0,34126.0,70,50,1,15797,201104224,,,150.0,,2.0,0.0,6.0,2.0,4.0,2.1,3488.97375571492,0.0,1200.0,0.0,0.0,38627.0,1,1,2,150.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2164.8925862715655,0.06343821679281385,0.05604609693405042,18393.809523809523,5,3,5,5_1,5_1,5_0_0 -4225,2,46.0,4,0.0,2,111,5,85,85,1.0,0.0,1110.341055650752,504.79356934673217,333.6787815955882,0.0,15861.0,50,50,1,158,201104225,,,130.0,,0.0,1.0,4.0,0.0,2.0,1.5,2717.9673600944843,0.0,370.0,0.0,0.0,7370.0,6,7,4,80.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1948.8134065930722,0.12286825588506854,0.26442515693257423,4913.333333333333,1,1,1_0,1_1_0,1_3_0,1_0_1 -4226,2,39.0,4,0.0,9,112,2,85,38,5.0,0.0,0.0,2251.1064578975893,104.27461924862132,0.0,59083.0,20,12,1,1580,201104226,,,800.0,,1.0,0.0,6.0,2.0,4.0,2.1,5288.658799442691,0.0,1650.0,0.0,0.0,39815.0,6,1,3,110.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2355.3810771462104,0.03986563101308685,0.059158133295145306,18959.52380952381,5,3,5,5_1,5_1,5_0_0 -4227,1,37.0,3,284.0,7,112,3,56,63,2.0,0.0,416.377895869032,668.510402648375,1042.7461924862132,0.0,22985.0,43,50,1,1581,201104227,,,690.0,,2.0,0.0,4.0,3.0,5.0,2.4,2133.615494482469,0.0,490.0,0.0,0.0,26117.0,1,1,3,90.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2127.6344910036205,0.09256621670670527,0.08146550105309264,10882.083333333334,2,1,2_1,2_1_1,2_0_1,2_0_0 -4228,1,35.0,5,240.0,1,111,2,0,35,1.0,0.0,0.0,818.5841665082144,0.0,173.79103208103552,9108.0,0,10,2,1585,201104228,,,170.0,134.0,1.0,0.0,2.0,0.0,1.0,1.0,3414.6644725607816,0.0,600.0,100.0,0.0,7890.0,0,4,3,40.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,992.3751985892499,0.10895643374936867,0.12577632428254118,7890.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -4229,2,45.0,3,0.0,6,112,4,52,52,6.0,0.0,0.0,2159.6978926375054,0.0,0.0,16607.0,43,60,1,1587,201104229,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2494.028670865976,0.0,1583.0,0.0,0.0,32298.0,4,1,2,104.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2159.6978926375054,0.13004744340564253,0.0668678522706516,21532.0,6,3,6,6_1,6_0,6_0_0 -4230,2,77.0,3,0.0,2,111,1,0,77,4.0,0.0,0.0,409.2920832541072,0.0,0.0,11232.0,0,70,2,1588,201104230,,,224.0,336.0,0.0,2.0,3.0,0.0,1.0,1.0,3336.975586841658,0.0,300.0,0.0,0.0,15080.0,0,5,3,90.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,409.2920832541072,0.03643982222703946,0.027141384831174217,15080.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -4231,2,27.0,2,0.0,8,120,2,0,37,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,38449.0,0,20,1,1589,201104231,,,50.0,,1.0,0.0,4.0,0.0,1.0,1.0,4913.858841482674,0.0,1200.0,0.0,0.0,27645.0,0,1,2,62.0,0,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.04258025782247728,0.05922113702356407,27645.0,8,4,8,8_1,8_1,8_0_0 -4232,1,23.0,2,30.0,2,111,2,84,43,5.0,0.0,0.0,447.49267769115716,0.0,905.4512771421951,21402.0,20,33,2,1591,201104232,,,,450.0,1.0,0.0,3.0,0.0,2.0,1.5,3388.6685507400193,0.0,328.0,521.0,0.0,26668.0,3,1,3,65.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1352.943954833352,0.06321577211631399,0.050732861663167546,17778.666666666668,5,3,5,5_0,5_3,5_0_1 -4233,2,55.0,3,0.0,6,400,2,13,45,6.0,0.0,0.0,1364.3069441803573,417.0984769944853,0.0,17152.0,50,50,1,1593,201104233,,,140.0,,2.0,3.0,6.0,0.0,2.0,1.5,1440.3101127497896,0.0,1000.0,0.0,0.0,29748.0,1,1,1,120.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1781.4054211748426,0.1038599242755855,0.05988319958231957,19832.0,6,3,6,6_1,6_0,6_0_0 -4234,2,66.0,5,0.0,6,111,4,77,74,6.0,0.0,388.6193694777632,2428.466360641036,0.0,0.0,43626.0,50,41,1,1594,201104234,,,528.0,,0.0,2.0,4.0,0.0,2.0,1.5,2317.952605226408,0.0,1780.0,0.0,0.0,30871.0,5,5,1,74.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2817.085730118799,0.0645735508668867,0.09125346539207667,20580.666666666668,6,3,6,6_1,6_4,6_0_0 -4235,2,43.0,3,0.0,8,111,2,52,22,6.0,0.0,0.0,804.9410970664107,0.0,1216.5372245672486,23060.0,41,50,1,1595,201104235,,,400.0,,2.0,0.0,4.0,1.0,3.0,2.0,4737.397096917316,0.0,590.0,700.0,0.0,40096.0,1,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2021.4783216336593,0.08766167916884907,0.05041595973747155,20048.0,6,3,6,6_1,6_4,6_0_0 -4236,2,57.0,2,0.0,5,111,1,56,45,8.0,0.0,0.0,750.3688192991965,0.0,260.6865481215533,29732.0,70,70,2,1596,201104236,,,,450.0,3.0,2.0,4.0,1.0,3.0,2.0,2995.8179705247,0.0,550.0,150.0,0.0,53533.0,1,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1011.0553674207498,0.03400562920155892,0.018886581499649745,26766.5,8,4,8,8_0,8_4,8_0_0 -4237,2,40.0,3,0.0,1,112,2,0,21,8.0,0.0,555.170527825376,504.79356934673217,0.0,0.0,24375.0,0,71,1,1599,201104237,,,,,1.0,1.0,5.0,0.0,1.0,1.0,3177.074354073051,0.0,370.0,0.0,0.0,28198.0,0,1,2,125.0,8,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1059.9640971721083,0.043485706550650594,0.037590045293003346,28198.0,8,4,8,8_1,8_0,8_1_0 -4238,2,48.0,2,0.0,8,211,2,52,48,7.0,0.0,0.0,422.93515269591074,0.0,2015.9759721400121,20086.0,50,50,1,16,201104238,,,,553.0,2.0,0.0,4.0,1.0,3.0,2.0,1673.2743941514125,0.0,310.0,1160.0,0.0,48279.0,1,1,3,80.0,1,2.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2438.9111248359227,0.12142343546927824,0.05051701826541401,24139.5,7,4,7,7_1,7_1,7_0_0 -4239,2,68.0,2,0.0,2,111,2,78,75,5.0,2855.620816449988,0.0,586.6519859975537,182.4805836850873,0.0,22055.0,50,41,1,1600,201104239,,,387.0,,0.0,1.0,6.0,0.0,2.0,1.5,2142.815933934523,0.0,430.0,0.0,0.0,26612.636363636364,6,5,1,152.0,7,5.0,3,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3624.753386132629,0.16435064094911037,0.13620422030361148,17741.757575757576,5,3,5,5_1,5_2,5_0_1 -4240,2,67.0,2,0.0,1,112,2,77,77,8.0,2696.9752155360998,458.01568545593517,1151.4750608882216,260.6865481215533,0.0,32800.0,60,71,1,1601,201104240,,,155.0,,0.0,5.0,5.0,0.0,2.0,1.5,2721.5653278947298,0.0,844.0,0.0,0.0,38372.0,5,5,5,102.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4567.15251000181,0.1392424545732259,0.11902305092259485,25581.333333333332,8,4,8,8_1,8_0,8_1_0 -4241,2,63.0,3,0.0,5,112,2,77,75,8.0,579.056443335692,485.77421184720396,845.8703053918215,0.0,0.0,58272.0,60,60,1,1602,201104241,,,145.0,,0.0,4.0,6.0,0.0,2.0,1.5,1705.5720648899362,0.0,620.0,0.0,0.0,37080.0,5,5,1,100.0,6,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1910.7009605747176,0.032789349268511764,0.051529152119059264,24720.0,7,4,7,7_1,7_0,7_0_0 -4242,2,34.0,3,0.0,9,111,4,48,48,7.0,0.0,0.0,1309.734666413143,0.0,0.0,15211.0,60,71,1,1603,201104242,,,720.0,,2.0,0.0,4.0,3.0,5.0,2.4,2694.762909459206,0.0,960.0,0.0,0.0,52732.0,1,1,2,95.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1309.734666413143,0.08610444194419453,0.024837568580997175,21971.666666666668,7,4,7,7_1,7_4,7_0_0 -4243,2,58.0,2,0.0,5,111,2,0,48,9.0,0.0,0.0,302.8761416080393,0.0,610.0065226044347,12923.0,0,41,2,1604,201104243,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3092.5211248703113,0.0,222.0,351.0,0.0,32193.0,0,1,1,55.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,912.8826642124741,0.07064015044590839,0.028356557767603954,32193.0,9,5,9,9_0,9_2,9_0_0 -4244,1,21.0,2,300.0,1,111,4,84,84,3.0,0.0,0.0,477.50743046312505,0.0,0.0,16021.0,41,41,2,1606,201104244,,,360.0,400.0,0.0,0.0,2.0,0.0,2.0,1.5,3966.0978388650105,0.0,350.0,0.0,0.0,18746.0,3,3,3,37.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,477.50743046312505,0.029805095216473693,0.02547249709074603,12497.333333333334,2,1,2_1,2_0_1,2_3_1,2_1_0 -4245,2,39.0,3,0.0,4,112,2,0,22,6.0,0.0,0.0,995.9440692516608,0.0,3759.1000239127984,40736.0,0,20,1,1607,201104245,,,380.0,,1.0,0.0,5.0,1.0,2.0,1.3,2681.2330424219804,0.0,730.0,2163.0,0.0,27616.0,0,1,1,300.0,10,1.0,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4755.044093164459,0.11672830158003876,0.17218438923683585,21243.076923076922,6,3,6,6_1,6_1,6_0_1 -4246,2,53.0,1,0.0,7,111,2,0,22,10.0,3172.912018277764,0.0,1364.3069441803573,0.0,0.0,60152.0,0,41,1,1609,201104246,,,600.0,,1.0,0.0,6.0,1.0,2.0,1.5,2829.5484271933624,0.0,1000.0,0.0,0.0,204934.0,0,1,1,170.0,9,7.0,2,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4537.2189624581215,0.07542922866169241,0.022139903395523054,136622.66666666666,10,5,10,10_1,10_3,10_0_0 -4247,2,53.0,3,0.0,2,111,2,0,43,9.0,1218.3982150186616,0.0,341.0767360450893,26.06865481215533,0.0,25893.0,0,33,1,1610,201104247,,,120.0,,1.0,0.0,2.0,0.0,1.0,1.0,1799.0872937022887,0.0,250.0,0.0,0.0,32588.0,0,1,2,80.0,6,4.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1585.5436058759062,0.061234449692036695,0.048654216456238686,32588.0,9,5,9,9_1,9_2,9_0_1 -4248,2,42.0,3,0.0,4,111,2,0,47,4.0,0.0,0.0,566.1873818348482,0.0,1136.5933498099723,17411.0,0,31,2,1612,201104248,,,,,1.0,1.0,3.0,0.0,1.0,1.0,4882.931836666314,0.0,415.0,654.0,0.0,16472.0,0,1,1,57.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1702.7807316448207,0.09779913454969966,0.10337425519941845,16472.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -4249,2,78.0,1,0.0,3,111,2,78,77,7.0,0.0,0.0,4011.06241589025,0.0,2269.7108789783238,36708.0,71,70,1,1613,201104249,,,208.0,,0.0,0.0,6.0,0.0,2.0,1.5,2377.634763953168,0.0,2940.0,1306.0,0.0,35913.0,5,5,1,80.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,6280.773294868573,0.17110093970983364,0.1748885722403746,23942.0,7,4,7,7_1,7_3,7_0_1 -4250,2,61.0,3,0.0,1,400,2,56,56,4.0,1903.7472109666587,0.0,900.4425831590357,86.89551604051776,0.0,23471.0,50,70,1,1615,201104250,,,,,2.0,3.0,5.0,0.0,2.0,1.5,1059.3704946451162,0.0,660.0,0.0,0.0,23935.0,1,1,2,150.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2891.085310166212,0.12317691236701513,0.12078902486593741,15956.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -4251,2,54.0,2,0.0,1,120,4,0,52,8.0,0.0,138.792631956344,1739.4913538299554,222.45252106372547,0.0,20773.0,0,50,1,1617,201104251,,,347.0,,2.0,6.0,6.0,1.0,3.0,2.0,1615.543325427561,0.0,1275.0,0.0,0.0,54797.0,0,1,1,120.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2100.736506850025,0.10112821965291603,0.038336706514043195,27398.5,8,4,8,8_1,8_0,8_1_0 -4252,2,56.0,2,0.0,1,111,2,34,34,10.0,0.0,104.094473967258,1773.5990274344645,0.0,0.0,66438.0,10,10,2,1618,201104252,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2591.80357318214,0.0,1300.0,0.0,0.0,80669.0,1,1,1,100.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1877.6935014017224,0.02826234235530453,0.023276518878400904,53779.333333333336,10,5,10,10_0,10_4,10_1_0 -4253,1,20.0,2,213.0,6,111,2,0,55,3.0,0.0,0.0,491.1504999049286,0.0,0.0,9127.0,0,41,2,162,201104253,,,,57.0,1.0,0.0,1.0,0.0,1.0,1.0,3246.1560864866583,0.0,360.0,0.0,0.0,13816.0,0,1,3,30.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,491.1504999049286,0.05381291770624834,0.03554939924036831,13816.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -4254,2,42.0,2,0.0,5,111,2,48,48,9.0,0.0,0.0,877.2493651079698,0.0,1160.9240943013174,65472.0,31,31,1,1620,201104254,,,350.0,,2.0,0.0,5.0,2.0,4.0,2.1,2183.5408892270375,0.0,643.0,668.0,0.0,65311.0,1,1,2,87.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2038.1734594092873,0.031130459729491803,0.0312072003094316,31100.47619047619,9,5,9,9_1,9_3,9_0_0 -4255,2,73.0,2,0.0,4,111,1,77,74,9.0,0.0,0.0,3132.8134133123776,0.0,835.4703333288788,21866.0,42,31,2,1624,201104255,,,,,0.0,3.0,5.0,0.0,2.0,1.5,4019.358245122844,777.0,2000.0,0.0,0.0,52310.0,5,5,1,150.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3968.2837466412566,0.18148192383797934,0.07586090129308462,34873.333333333336,9,5,9,9_0,9_3,9_0_1 -4256,1,67.0,4,35.0,4,111,1,0,77,3.0,0.0,0.0,354.7198054868929,97.32297796537989,0.0,11294.0,0,70,2,1626,201104256,,,,276.0,0.0,3.0,4.0,0.0,1.0,1.0,3915.338728835554,0.0,260.0,0.0,0.0,14060.0,0,5,3,90.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,452.0427834522728,0.04002503837898643,0.03215098033088711,14060.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -4257,2,50.0,3,0.0,9,221,5,55,85,6.0,0.0,555.170527825376,873.1564442754286,125.12954309834558,0.0,20801.0,50,42,1,1627,201104257,,,225.0,,1.0,3.0,4.0,0.0,2.0,1.5,2920.3112349536227,0.0,640.0,0.0,0.0,29561.0,1,7,2,100.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1553.45651519915,0.07468181891251142,0.0525508783599726,19707.333333333332,6,3,6,6_1,6_1,6_0_0 -4258,2,67.0,3,0.0,3,221,4,77,78,3.0,0.0,832.755791738064,1023.230208135268,187.69431464751835,0.0,9569.0,70,50,1,1628,201104258,,,180.0,,0.0,2.0,3.0,0.0,2.0,1.5,2966.938271688375,0.0,750.0,0.0,0.0,19580.0,5,5,1,70.0,1,1.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2043.68031452085,0.21357302900207442,0.10437590983252554,13053.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_1 -4259,1,44.0,4,20.0,1,400,2,52,47,5.0,682.1760839297193,0.0,1077.8024859024822,66.0405921907935,0.0,31456.0,43,50,1,163,201104259,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1916.3653947948478,0.0,790.0,0.0,0.0,37804.0,4,1,3,125.0,0,1.0,4,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1826.019162022995,0.0580499479279945,0.048302273886969505,18001.90476190476,5,3,5,5_1,5_1,5_1_0 -4260,2,72.0,3,0.0,99,111,1,0,77,4.0,0.0,0.0,447.49267769115716,0.0,152.93610823131127,14433.0,0,70,2,1630,201104260,,,,,0.0,4.0,5.0,0.0,1.0,1.0,1915.2021342298756,0.0,328.0,88.0,0.0,16410.0,0,5,1,76.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,600.4287859224685,0.041601107595265606,0.03658920084841368,16410.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -4261,2,53.0,1,0.0,2,111,1,56,63,5.0,0.0,0.0,532.0797082303393,0.0,149.46028758969055,16704.0,71,50,2,1634,201104261,,,,289.0,2.0,3.0,4.0,0.0,2.0,1.5,2339.8005585948613,0.0,390.0,86.0,0.0,25158.0,1,1,3,70.0,4,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,681.5399958200298,0.04080100549688876,0.027090388576994587,16772.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -4262,2,31.0,2,0.0,1,212,2,55,63,6.0,0.0,0.0,1869.1005135270893,125.12954309834558,0.0,33966.0,44,50,1,1635,201104262,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1488.0627358072236,0.0,1370.0,0.0,0.0,44955.0,1,1,2,180.0,3,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1994.2300566254348,0.05871253773259833,0.04436058406462985,21407.142857142855,6,3,6,6_1,6_0,6_1_0 -4263,2,78.0,2,0.0,1,111,2,0,75,9.0,0.0,0.0,429.75668741681255,0.0,3129.9764877794496,29477.0,0,41,1,1639,201104263,,,160.0,,0.0,2.0,4.0,0.0,1.0,1.0,4681.859198079847,0.0,315.0,1801.0,0.0,32780.0,0,5,1,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3559.733175196262,0.12076307545531302,0.10859466672349792,32780.0,9,5,9,9_1,9_4,9_1_0 -4264,2,61.0,4,0.0,2,111,5,0,74,8.0,0.0,249.82673752141918,750.3688192991965,0.0,0.0,16798.0,0,50,1,164,201104264,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2097.0647676457984,0.0,550.0,0.0,0.0,26785.0,0,5,5,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1000.1955568206157,0.059542538208156665,0.03734162989810027,26785.0,8,4,8,8_1,8_3,8_0_1 -4265,2,74.0,2,0.0,1,112,4,0,75,6.0,0.0,0.0,2292.035666223,43.44775802025888,0.0,27428.0,0,50,1,1640,201104265,,,280.0,,0.0,3.0,5.0,0.0,1.0,1.0,1692.2482693414634,0.0,1680.0,0.0,0.0,19627.0,0,5,5,120.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2335.483424243259,0.08514960712568394,0.11899339808647572,19627.0,6,3,6,6_1,6_0,6_1_0 -4266,2,58.0,4,0.0,1,112,6,65,78,2.0,1364.3521678594386,0.0,573.00891655575,260.6865481215533,0.0,11085.0,71,71,1,1641,201104266,,,181.0,,1.0,4.0,3.0,0.0,2.0,1.5,5967.581448860313,0.0,420.0,0.0,0.0,16582.0,4,7,1,80.0,9,3.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2198.0476325367417,0.19829026906059916,0.13255624367004834,11054.666666666666,2,1,2_0,2_1_0,2_1_0,2_1_0 -4267,1,24.0,1,108.0,7,111,2,67,63,5.0,0.0,0.0,1146.0178331115,0.0,0.0,46404.0,50,50,2,1642,201104267,,,200.0,363.0,2.0,0.0,2.0,1.0,3.0,1.8,2766.191988537535,0.0,840.0,0.0,0.0,34152.0,4,1,3,42.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1146.0178331115,0.02469653118505948,0.0335563900536279,18973.333333333332,5,3,5,5_0,5_2,5_0_0 -4268,2,77.0,3,0.0,1,300,2,78,72,2.0,0.0,69.396315978172,2193.8055662420143,469.23578661879594,0.0,32633.0,70,50,1,1644,201104268,,,,,0.0,4.0,6.0,0.0,2.0,1.5,2180.8166628857293,0.0,1608.0,0.0,0.0,15433.0,5,5,1,200.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2732.437668838982,0.08373234666867839,0.17705162112609227,10288.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -4269,2,29.0,2,0.0,2,111,2,85,46,7.0,0.0,0.0,728.2874323453394,0.0,1505.351951943926,21988.0,31,60,1,1645,201104269,,,160.0,,1.0,0.0,4.0,1.0,3.0,1.8,2437.3390706924274,1400.0,0.0,0.0,0.0,40896.0,6,1,2,100.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2233.6393842892653,0.10158447263458548,0.05461755145464753,22720.0,7,4,7,7_1,7_3,7_0_1 -4271,1,70.0,9,85.0,4,111,1,86,78,4.0,0.0,0.0,682.1534720901786,0.0,521.3730962431066,13977.0,71,71,2,1647,201104271,,,,269.0,1.0,6.0,5.0,3.0,5.0,3.0,3130.9661678230964,0.0,500.0,300.0,0.0,45770.0,6,5,3,85.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1203.5265683332852,0.08610764601368572,0.026295096533390544,15256.666666666666,4,2,4_1,4_0_1,4_2_1,4_0_1 -4272,2,62.0,2,0.0,4,120,4,77,75,2.0,0.0,0.0,3206.1213188238394,0.0,0.0,34908.0,50,70,1,1648,201104272,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1014.4227561197958,0.0,2350.0,0.0,0.0,16127.0,6,7,1,130.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3206.1213188238394,0.09184488709819638,0.19880457114304206,10751.333333333334,2,1,2_0,2_1_0,2_1_0,2_0_1 -4273,0,64.0,5,0.0,1,111,4,85,53,1.0,0.0,0.0,0.0,208.54923849724264,0.0,25464.0,71,71,1,165,201104273,,,,,1.0,0.0,5.0,6.0,8.0,3.7,2016.8785295418058,0.0,0.0,0.0,0.0,30170.0,6,1,5,118.0,6,5.0,4,8,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,208.54923849724264,0.008189963811547386,0.00691247061641507,8154.054054054053,1,1,1_0,1_1_0,1_2_0,1_1_0 -4274,2,41.0,5,0.0,2,111,1,65,48,3.0,0.0,0.0,245.5752499524643,0.0,304.13430614181215,36114.0,42,20,2,1651,201104274,,,,410.0,2.0,1.0,3.0,2.0,4.0,2.1,3256.073337118055,0.0,180.0,175.0,0.0,29797.0,4,1,3,78.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,549.7095560942764,0.015221508448088731,0.018448486629334376,14189.047619047618,3,2,3_0,3_0_0,3_4_0,3_0_1 -4275,2,49.0,2,0.0,1,400,2,64,64,6.0,0.0,832.755791738064,1828.1713052016787,79.94387475727635,0.0,60605.0,60,71,1,1652,201104275,,,,,2.0,2.0,5.0,2.0,4.0,2.3,2868.398127119408,0.0,1340.0,0.0,0.0,45187.0,1,1,2,100.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2740.870971697019,0.04522516247334409,0.06065618367444218,19646.521739130436,6,3,6,6_1,6_0,6_1_0 -4276,2,73.0,3,0.0,5,221,2,72,72,5.0,0.0,555.170527825376,390.1917860355822,0.0,1136.5933498099723,34882.0,70,71,1,1653,201104276,,,118.0,,0.0,0.0,3.0,0.0,2.0,1.5,2325.990090921054,0.0,286.0,654.0,0.0,25940.0,5,5,1,72.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2081.9556636709303,0.05968567351846025,0.08026043422015923,17293.333333333332,5,3,5,5_1,5_1,5_0_0 -4277,2,82.0,3,0.0,8,111,2,0,86,1.0,0.0,0.0,1487.0945691565894,271.11401004641544,0.0,16087.0,0,70,1,1654,201104277,,,66.0,,0.0,5.0,4.0,0.0,1.0,1.0,1766.7843788620269,0.0,1090.0,0.0,0.0,9264.0,0,5,1,108.0,6,4.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1758.2085792030048,0.10929375142680454,0.18978935440446942,9264.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -4278,2,47.0,4,0.0,7,111,2,54,47,6.0,0.0,0.0,1910.0297218525002,0.0,2954.447545377604,53652.0,50,50,1,1656,201104278,,,460.0,,2.0,0.0,6.0,2.0,4.0,2.5,2196.1669931057486,0.0,1400.0,1700.0,0.0,49110.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4864.477267230104,0.09066721216786149,0.09905268310385063,19644.0,6,3,6,6_1,6_4,6_0_0 -4279,2,46.0,3,0.0,7,112,5,48,45,5.0,0.0,277.585263912688,1023.230208135268,0.0,0.0,33763.0,50,42,1,1657,201104279,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.5,2127.3129920983656,0.0,750.0,0.0,0.0,47377.0,1,1,2,110.0,7,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1300.815472047956,0.03852784029997204,0.02745668725432079,18950.8,5,3,5,5_1,5_2,5_0_0 -4280,2,81.0,2,0.0,7,111,2,77,74,10.0,0.0,0.0,1055.9735747955965,0.0,2334.013560848307,54393.0,70,41,1,1659,201104280,,,496.0,,0.0,2.0,6.0,0.0,2.0,1.5,2037.562096186354,0.0,774.0,1343.0,0.0,61084.0,5,5,1,180.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3389.9871356439035,0.06232395962061117,0.055497137313271945,40722.666666666664,10,5,10,10_1,10_3,10_0_0 -4281,2,38.0,3,0.0,4,112,4,43,43,6.0,0.0,0.0,2046.460416270536,0.0,0.0,56848.0,33,20,1,166,201104281,,,480.0,,2.0,0.0,6.0,3.0,5.0,2.4,1563.7889782382197,0.0,1500.0,0.0,0.0,49111.0,1,1,2,150.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2046.460416270536,0.03599881115026977,0.041670102752347456,20462.916666666668,6,3,6,6_1,6_1,6_0_1 -4282,2,51.0,3,0.0,4,300,2,52,68,5.0,1586.456009138882,0.0,1159.6609025533037,43.44775802025888,0.0,42928.0,71,50,1,1660,201104282,,,90.0,,2.0,0.0,4.0,2.0,4.0,2.5,960.233767121396,0.0,850.0,0.0,0.0,43331.0,1,4,1,87.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2789.5646697124444,0.06498240471749078,0.06437803581067698,17332.4,5,3,5,5_1,5_0,5_0_1 -4283,2,25.0,1,0.0,99,111,2,62,45,8.0,0.0,0.0,1260.61961642265,45.18566834106924,0.0,44418.0,31,20,1,1661,201104283,,,300.0,,2.0,0.0,3.0,0.0,2.0,1.5,1801.3952650903202,0.0,924.0,0.0,0.0,40749.0,1,1,3,60.0,5,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1305.8052847637193,0.02939811078309963,0.03204508784911824,27166.0,8,4,8,8_1,8_2,8_0_0 -4284,2,41.0,3,0.0,5,112,4,62,62,4.0,63.458240365555284,0.0,1337.02080529675,145.98446694806984,0.0,38836.0,43,50,1,1662,201104284,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1669.7367654818818,0.0,980.0,0.0,0.0,33087.0,1,1,2,70.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1546.4635126103751,0.03982036029998906,0.04673930887086696,15755.714285714284,4,2,4_0,4_1_0,4_0_0,4_0_0 -4285,2,65.0,2,0.0,1,211,5,0,74,10.0,0.0,208.188947934516,343.80534993345003,0.0,0.0,33414.0,0,50,1,1663,201104285,,,104.0,,0.0,4.0,3.0,0.0,1.0,1.0,1788.982031059901,0.0,252.0,0.0,0.0,41386.0,0,5,1,80.0,2,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,551.994297867966,0.016519850896868558,0.013337705936016188,41386.0,10,5,10,10_1,10_1,10_1_0 -4286,2,52.0,3,0.0,99,120,4,0,43,4.0,0.0,249.82673752141918,953.6505539820697,0.0,0.0,14838.0,0,20,1,1664,201104286,,,172.0,,1.0,2.0,4.0,1.0,2.0,1.5,3551.470996769685,0.0,699.0,0.0,0.0,23478.0,0,1,2,100.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1203.477291503489,0.08110778349531533,0.05125978752463962,15652.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -4287,2,62.0,4,0.0,4,112,6,0,78,6.0,7139.05204112497,0.0,573.00891655575,0.0,0.0,26959.0,0,70,1,1665,201104287,,,400.0,,1.0,3.0,5.0,1.0,2.0,1.5,1345.2535619656617,0.0,420.0,0.0,0.0,29480.0,0,5,1,177.0,9,0.0,2,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,7712.06095768072,0.2860662842716985,0.2616031532456147,19653.333333333332,6,3,6,6_1,6_0,6_0_1 -4288,2,73.0,2,0.0,1,120,2,72,72,9.0,4188.243864126649,0.0,1910.0297218525002,312.82385774586396,0.0,47296.0,60,50,1,1666,201104288,,,210.0,,0.0,2.0,6.0,0.0,2.0,1.5,1804.5061976753782,0.0,1400.0,0.0,0.0,45512.0,5,5,1,200.0,0,1.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,6411.097443725013,0.13555263539675688,0.14086608902542216,30341.333333333332,9,5,9,9_1,9_1,9_1_0 -4289,1,21.0,5,350.0,1,111,4,21,56,1.0,0.0,0.0,1364.3069441803573,201.5975972140012,0.0,9674.0,71,71,2,1668,201104289,,,,226.0,2.0,0.0,1.0,1.0,3.0,1.8,3309.1081800254756,0.0,1000.0,0.0,0.0,10200.0,4,1,3,32.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1565.9045413943586,0.16186732906702073,0.1535200530778783,5666.666666666667,1,1,1_1,1_0_1,1_4_1,1_1_0 -4290,2,63.0,1,0.0,5,112,2,77,34,10.0,0.0,0.0,1836.3571468667608,0.0,0.0,22175.0,33,12,1,167,201104290,,,3.0,,1.0,4.0,6.0,0.0,2.0,1.5,1934.5796474571926,0.0,1346.0,0.0,0.0,57938.0,5,1,1,115.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1836.3571468667608,0.08281204720932404,0.03169521120623357,38625.333333333336,10,5,10,10_1,10_0,10_0_0 -4291,2,27.0,4,0.0,8,111,2,0,54,5.0,0.0,0.0,300.1475277196786,0.0,573.5104058674173,17077.0,0,20,2,1671,201104291,,,226.0,455.0,1.0,0.0,2.0,0.0,1.0,1.0,2876.966640809301,0.0,220.0,330.0,0.0,16766.0,0,1,3,43.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,873.6579335870958,0.051159918814024465,0.052108906929923406,16766.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -4292,2,48.0,2,0.0,1,112,2,45,37,8.0,1707.0266658334372,0.0,1227.8762497623215,121.65372245672486,0.0,44291.0,42,50,1,1672,201104292,,,464.0,,2.0,0.0,5.0,2.0,4.0,2.5,2329.8152885166664,0.0,900.0,0.0,0.0,69638.0,1,1,2,160.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3056.556638052484,0.06901078408824556,0.04389207958373997,27855.2,8,4,8,8_1,8_0,8_1_0 -4293,1,75.0,3,28.0,6,111,2,0,78,2.0,0.0,0.0,573.00891655575,0.0,1564.1192887293198,24803.0,0,71,1,1673,201104293,,,199.0,,1.0,5.0,4.0,1.0,2.0,1.5,4237.931945009472,0.0,420.0,900.0,0.0,15111.0,0,5,2,87.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2137.1282052850697,0.08616410132988227,0.14142864173681885,10074.0,2,1,2_1,2_1_1,2_2_1,2_0_0 -4294,2,31.0,3,0.0,8,111,6,54,47,7.0,0.0,0.0,1227.8762497623215,0.0,0.0,40041.0,42,50,2,1675,201104294,,,340.0,,2.0,0.0,3.0,1.0,3.0,1.8,3841.5703618510884,0.0,900.0,0.0,0.0,38926.0,1,1,2,73.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1227.8762497623215,0.03066547413307164,0.031543858854295885,21625.555555555555,6,3,6,6_0,6_3,6_0_0 -4295,2,86.0,2,0.0,1,111,4,0,72,2.0,0.0,0.0,1473.4514997147858,0.0,0.0,16287.0,0,70,2,1676,201104295,,,150.0,,0.0,1.0,3.0,0.0,1.0,1.0,3424.388525656176,0.0,1080.0,0.0,0.0,10906.0,0,5,1,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1473.4514997147858,0.09046794988118044,0.13510466712954206,10906.0,2,1,2_0,2_0_0,2_3_0,2_1_0 -4296,2,48.0,4,0.0,3,111,4,22,22,1.0,0.0,0.0,1364.3069441803573,0.0,0.0,40890.0,50,50,1,1678,201104296,,,95.0,,2.0,2.0,8.0,0.0,2.0,1.5,3339.9792900557213,0.0,1000.0,0.0,0.0,12320.0,1,1,1,240.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1364.3069441803573,0.0333652957735475,0.11073920001463938,8213.333333333334,1,1,1_0,1_1_0,1_2_0,1_0_1 -4297,2,37.0,3,0.0,5,111,4,52,48,7.0,0.0,0.0,1637.1683330164287,0.0,0.0,43182.0,43,43,2,168,201104297,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3519.4339241223956,0.0,1200.0,0.0,0.0,50082.0,1,1,2,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1637.1683330164287,0.037913212287907665,0.03268975546137193,23848.571428571428,7,4,7,7_0,7_4,7_0_0 -4298,1,33.0,3,327.0,9,111,6,85,56,2.0,158.64560091388822,0.0,914.0856526008394,93.84715732375918,0.0,18624.0,50,50,1,1681,201104298,,,80.0,,1.0,0.0,4.0,2.0,4.0,2.1,1390.0687180101106,0.0,670.0,0.0,0.0,23128.0,6,1,3,88.0,8,7.0,4,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1166.5784108384867,0.06263844559914555,0.05044009040290932,11013.333333333332,2,1,2_1,2_1_1,2_3_1,2_0_0 -4299,1,36.0,4,190.0,5,111,1,0,55,4.0,0.0,0.0,900.4425831590357,100.7987986070006,0.0,33787.0,0,30,2,1682,201104299,,,,167.0,1.0,0.0,3.0,1.0,2.0,1.3,2952.002419914057,0.0,660.0,0.0,0.0,19932.0,0,1,3,73.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1001.2413817660363,0.029633923750733603,0.05023286081507306,15332.307692307691,4,2,4_1,4_0_1,4_2_1,4_0_0 -4300,1,50.0,4,190.0,99,111,1,0,85,2.0,0.0,0.0,311.0619832731214,0.0,177.26685272265624,31227.0,0,50,2,1683,201104300,,,,,1.0,3.0,4.0,3.0,5.0,2.6,2128.30969733451,0.0,228.0,102.0,0.0,25014.0,0,6,3,71.0,6,5.0,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,488.3288359957777,0.01563803234366983,0.019522220996073307,9620.76923076923,1,1,1_1,1_0_1,1_2_1,1_0_0 -4301,2,35.0,1,0.0,7,112,2,38,38,10.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,40518.0,60,12,1,1685,201104301,,,230.0,,2.0,0.0,4.0,0.0,2.0,1.5,2418.5122200145447,1200.0,0.0,0.0,0.0,77795.0,4,1,2,100.0,10,1.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1914.548043676513,0.04725179040615314,0.02461016831000081,51863.333333333336,10,5,10,10_1,10_1,10_0_0 -4302,2,55.0,3,0.0,1,111,2,56,47,3.0,1323.1043116218277,0.0,968.6579303680536,156.41192887293198,0.0,46279.0,60,41,1,1687,201104302,,,253.0,,2.0,0.0,4.0,2.0,4.0,2.3,2054.930273972114,0.0,710.0,0.0,0.0,33320.0,1,1,1,80.0,7,5.0,4,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2448.1741708628133,0.05290032565230047,0.07347461497187315,14486.956521739132,3,2,3_0,3_1_0,3_2_0,3_1_0 -4303,2,43.0,3,0.0,2,111,2,56,62,4.0,0.0,916.0313709118703,777.6549581828036,0.0,1929.0804560994943,39141.0,50,50,1,1688,201104303,,,520.0,,2.0,0.0,7.0,2.0,4.0,2.3,1300.1055154826356,0.0,570.0,1110.0,0.0,35486.0,1,1,2,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3622.7667851941683,0.09255682750042585,0.1020900294537048,15428.695652173914,4,2,4_0,4_1_0,4_3_0,4_0_1 -4304,2,41.0,2,0.0,8,300,2,22,43,5.0,2062.392811880547,0.0,1255.1623886459286,0.0,0.0,38406.0,60,41,1,1689,201104304,,,130.0,,2.0,0.0,5.0,2.0,4.0,2.3,2303.9115475440094,0.0,920.0,0.0,0.0,42478.0,1,1,2,150.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3317.5552005264753,0.08638116962262343,0.07810055088578735,18468.695652173916,5,3,5,5_1,5_0,5_0_0 -4305,2,24.0,2,0.0,1,300,1,0,47,7.0,0.0,0.0,416.11361797500894,0.0,0.0,29609.0,0,20,2,1690,201104305,,,240.0,325.0,1.0,0.0,3.0,0.0,1.0,1.0,3081.098779461222,0.0,305.0,0.0,0.0,21588.0,0,1,3,70.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,416.11361797500894,0.014053619439191088,0.01927522781058963,21588.0,6,3,6,6_0,6_0,6_1_0 -4306,1,43.0,2,27.0,7,211,4,56,63,4.0,0.0,0.0,1364.3069441803573,145.98446694806984,0.0,31190.0,41,50,1,1691,201104306,,,552.0,481.0,2.0,2.0,4.0,2.0,4.0,2.1,1174.7293747566684,0.0,1000.0,0.0,0.0,35035.0,1,1,3,92.0,3,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1510.2914111284272,0.04842229596436124,0.04310807509999792,16683.333333333332,4,2,4_1,4_1_1,4_2_1,4_0_0 -4307,2,33.0,1,0.0,5,112,4,38,38,9.0,0.0,0.0,1773.5990274344645,0.0,0.0,55624.0,12,12,1,1694,201104307,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1792.7552532712984,0.0,1300.0,0.0,0.0,71544.0,1,1,2,95.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1773.5990274344645,0.03188549955836446,0.02479032521852936,34068.57142857143,9,5,9,9_1,9_0,9_0_0 -4308,2,42.0,1,0.0,6,112,2,47,37,8.0,0.0,0.0,518.4366387885358,0.0,2172.387901012944,58173.0,50,31,1,1695,201104308,,,350.0,,2.0,0.0,5.0,3.0,5.0,2.8,5799.103106760391,0.0,380.0,1250.0,0.0,71380.0,1,1,1,100.0,9,2.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2690.8245398014797,0.04625555738575421,0.03769717763801456,25492.857142857145,8,4,8,8_1,8_1,8_0_0 -4309,2,71.0,2,0.0,2,300,2,0,71,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,18417.0,0,70,1,1696,201104309,,,195.0,,0.0,2.0,5.0,0.0,1.0,1.0,1700.5346688953769,0.0,1200.0,0.0,0.0,28570.0,0,5,1,140.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1637.1683330164287,0.08889440913375841,0.057303756843417174,28570.0,8,4,8,8_1,8_0,8_0_1 -4310,2,56.0,2,0.0,6,111,2,56,62,5.0,0.0,0.0,450.22129157951787,0.0,973.2297796537989,35324.0,71,50,1,1697,201104310,,,225.0,,2.0,3.0,4.0,0.0,2.0,1.5,3153.4007467869164,0.0,330.0,560.0,0.0,26841.0,1,1,1,90.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1423.4510712333167,0.04029699556203478,0.05303271380475082,17894.0,5,3,5,5_1,5_3,5_0_0 -4311,2,47.0,2,0.0,1,112,2,0,62,5.0,0.0,0.0,750.3688192991965,0.0,3069.1496265510873,32838.0,0,71,1,17,201104311,,,,,1.0,4.0,4.0,1.0,2.0,1.5,5744.891587005811,0.0,550.0,1766.0,0.0,26178.0,0,4,1,153.0,7,0.0,2,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3819.5184458502836,0.11631397910500894,0.14590566299374602,17452.0,5,3,5,5_1,5_0,5_1_0 -4312,2,91.0,1,0.0,1,111,1,0,74,9.0,0.0,0.0,573.00891655575,0.0,139.0328256648284,39901.0,0,10,2,170,201104312,,,172.0,,0.0,4.0,4.0,0.0,1.0,1.0,2064.280901985578,0.0,420.0,80.0,0.0,30877.0,0,5,1,70.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,712.0417422205785,0.017845210451381634,0.02306058691649378,30877.0,9,5,9,9_0,9_2,9_1_0 -4313,2,40.0,2,0.0,7,300,4,37,43,5.0,0.0,0.0,1691.740610783643,104.27461924862132,0.0,36099.0,20,20,1,1700,201104313,,,360.0,,2.0,0.0,4.0,2.0,4.0,2.1,1636.380010123936,0.0,1240.0,0.0,0.0,39052.0,1,1,3,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1796.0152300322643,0.04975249259071621,0.04599035209546923,18596.190476190477,5,3,5,5_1,5_0,5_0_0 -4314,2,75.0,3,0.0,3,111,2,0,77,4.0,0.0,0.0,660.6607421989866,0.0,1365.56927069199,20758.0,0,41,2,1702,201104314,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2936.2613789422708,1270.0,0.0,0.0,0.0,15408.0,0,5,1,84.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2026.2300128909765,0.09761200563112904,0.13150506314193772,15408.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -4315,2,58.0,2,0.0,2,300,2,54,64,6.0,1427.810408224994,0.0,1049.1520400746947,199.85968689319085,0.0,27292.0,60,50,1,1703,201104315,,,219.0,,2.0,5.0,5.0,0.0,2.0,1.5,1226.3653843887664,0.0,769.0,0.0,0.0,29051.0,1,5,1,140.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2676.8221351928796,0.09808083450069176,0.09214216843457643,19367.333333333332,6,3,6,6_1,6_0,6_0_1 -4316,1,24.0,3,300.0,1,111,4,65,55,5.0,0.0,0.0,682.1534720901786,0.0,0.0,21647.0,71,50,2,1704,201104316,,,,200.0,2.0,0.0,2.0,1.0,3.0,1.8,3461.1471256515233,0.0,500.0,0.0,0.0,30295.0,1,1,3,27.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,682.1534720901786,0.03151261015799781,0.02251703159234787,16830.555555555555,4,2,4_1,4_0_1,4_3_1,4_1_0 -4317,2,64.0,2,0.0,1,111,2,77,74,9.0,0.0,0.0,1146.0178331115,0.0,2022.9276134232534,65536.0,60,42,1,1705,201104317,,,216.0,,0.0,2.0,6.0,0.0,2.0,1.5,1722.931953371982,0.0,840.0,1164.0,0.0,50624.0,5,5,1,110.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3168.9454465347535,0.048354270119243675,0.06259768976245958,33749.333333333336,9,5,9,9_1,9_2,9_1_0 -4318,2,64.0,2,0.0,2,111,2,77,75,6.0,0.0,0.0,532.0797082303393,0.0,1546.740185521216,32312.0,71,50,1,1707,201104318,,,170.0,,0.0,2.0,4.0,0.0,2.0,1.5,2405.7633368197075,0.0,390.0,890.0,0.0,29935.0,5,5,1,128.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2078.8198937515554,0.06433584716983026,0.06944445945386855,19956.666666666668,6,3,6,6_1,6_2,6_0_1 -4319,2,38.0,2,0.0,1,120,2,64,31,9.0,0.0,0.0,630.2120585464235,0.0,3307.3678580472324,38396.0,31,10,1,1709,201104319,,,189.0,,2.0,1.0,5.0,1.0,3.0,1.8,1320.173439237799,207.0,383.0,1775.0,0.0,54562.0,1,1,2,240.0,0,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3937.579916593656,0.10255182614318303,0.07216707445829801,30312.222222222223,9,5,9,9_1,9_0,9_1_0 -4320,2,53.0,2,0.0,6,111,2,0,65,9.0,0.0,0.0,613.9381248811608,0.0,1112.2626053186273,20492.0,0,50,2,1710,201104320,,,,559.0,1.0,1.0,3.0,0.0,1.0,1.0,3079.2461601966343,0.0,450.0,640.0,0.0,36803.0,0,1,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1726.200730199788,0.08423778695099493,0.04690380485829384,36803.0,9,5,9,9_0,9_4,9_0_0 -4321,2,57.0,1,0.0,6,111,6,75,43,9.0,0.0,69.396315978172,1064.1594164606786,291.9689338961397,0.0,22457.0,50,33,1,1711,201104321,,,342.0,,1.0,2.0,6.0,0.0,2.0,1.5,3949.9176020855048,0.0,780.0,0.0,0.0,44420.0,5,5,1,102.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1425.5246663349903,0.06347796528187159,0.03209195556809974,29613.333333333332,9,5,9,9_1,9_2,9_0_0 -4322,2,56.0,1,0.0,8,111,2,45,74,10.0,0.0,0.0,1312.4632803015036,0.0,2012.5001514983915,36453.0,41,41,1,1712,201104322,,,523.0,,1.0,0.0,5.0,0.0,2.0,1.5,3142.4722483479322,0.0,962.0,1158.0,0.0,80373.0,1,5,1,140.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3324.9634317998953,0.09121234004882713,0.041369159192762434,53582.0,10,5,10,10_1,10_3,10_0_0 -4323,2,23.0,3,0.0,1,120,6,84,62,8.0,0.0,0.0,1541.6668469238036,0.0,0.0,25727.0,20,42,8,1713,201104323,,,300.0,540.0,1.0,0.0,4.0,0.0,2.0,1.5,4058.4226405071813,0.0,1130.0,0.0,0.0,38777.0,3,1,3,90.0,0,2.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1541.6668469238036,0.0599240815844756,0.03975724906320251,25851.333333333332,8,4,8,8_0,8_1,8_1_0 -4324,2,40.0,2,0.0,3,111,2,0,31,9.0,0.0,0.0,297.41891383131787,0.0,775.1080030814185,28375.0,0,10,2,1715,201104324,,,210.0,,1.0,0.0,2.0,0.0,1.0,1.0,2590.8498483215044,0.0,218.0,446.0,0.0,31485.0,0,1,2,57.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1072.5269169127364,0.037798305441858554,0.03406469483604054,31485.0,9,5,9,9_0,9_2,9_0_1 -4325,2,81.0,2,0.0,1,111,5,0,78,5.0,0.0,1276.8922139983647,382.0059443705,90.37133668213848,0.0,7727.0,0,70,1,1716,201104325,,,70.0,,0.0,1.0,5.0,0.0,1.0,1.0,3095.0987099956865,0.0,280.0,0.0,0.0,17392.0,0,5,3,120.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1749.269495051003,0.2263840423257413,0.10057897280652042,17392.0,5,3,5,5_1,5_4,5_1_0 -4326,2,53.0,3,0.0,8,300,2,0,46,5.0,0.0,0.0,1500.737638598393,0.0,0.0,18341.0,0,50,1,1719,201104326,,,140.0,,1.0,2.0,4.0,0.0,1.0,1.0,1810.3608224827778,0.0,1100.0,0.0,0.0,18330.0,0,1,1,100.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1500.737638598393,0.08182419925840428,0.08187330270585887,18330.0,5,3,5,5_1,5_0,5_0_0 -4327,1,40.0,3,277.0,8,112,2,42,67,6.0,1269.1648073111057,0.0,818.5841665082144,130.34327406077665,0.0,39280.0,50,50,1,172,201104327,,,210.0,,2.0,1.0,4.0,3.0,5.0,2.4,1145.3191070758483,0.0,600.0,0.0,0.0,45812.0,1,1,3,95.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2218.0922478800967,0.056468743581468854,0.04841727599493793,19088.333333333336,5,3,5,5_1,5_0,5_0_0 -4328,1,63.0,5,250.0,1,111,3,0,77,1.0,0.0,0.0,1031.41604980035,104.27461924862132,0.0,13188.0,0,71,2,1720,201104328,,,,,0.0,4.0,2.0,0.0,1.0,1.0,3476.1699517171683,0.0,756.0,0.0,0.0,6200.0,0,5,3,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1135.6906690489714,0.08611545867826595,0.1831759143627373,6200.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -4329,2,53.0,4,0.0,3,111,1,0,55,4.0,0.0,0.0,302.8761416080393,0.0,90.37133668213848,10023.0,0,50,2,1721,201104329,,,100.0,265.0,1.0,0.0,3.0,0.0,1.0,1.0,2702.62795658873,0.0,222.0,52.0,0.0,15288.0,0,1,3,70.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,393.24747829017775,0.03923450845956079,0.02572262416864062,15288.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -4330,2,61.0,3,0.0,5,120,4,78,75,8.0,0.0,0.0,1500.737638598393,0.0,0.0,26862.0,70,70,1,1724,201104330,,,340.0,,0.0,1.0,4.0,0.0,2.0,1.5,1745.7057408994622,0.0,1100.0,0.0,0.0,40907.0,5,5,1,96.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1500.737638598393,0.05586842523261086,0.036686572923910164,27271.333333333332,8,4,8,8_1,8_0,8_0_0 -4331,2,49.0,1,0.0,4,112,4,34,37,9.0,0.0,0.0,2592.183193942679,0.0,0.0,56342.0,10,20,1,1726,201104331,,,693.0,,2.0,2.0,9.0,1.0,3.0,2.0,946.3265188643239,0.0,1900.0,0.0,0.0,73719.0,1,1,1,160.0,8,2.0,4,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2592.183193942679,0.04600800812790953,0.03516302708857525,36859.5,9,5,9,9_1,9_1,9_0_1 -4332,0,60.0,4,0.0,1,111,6,43,35,5.0,0.0,0.0,682.1534720901786,0.0,0.0,14838.0,20,20,1,1727,201104332,,,300.0,,2.0,2.0,2.0,0.0,2.0,1.5,1123.4324211564272,0.0,500.0,0.0,0.0,26590.0,1,1,5,37.0,4,4.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,682.1534720901786,0.04597341097790664,0.025654511925166552,17726.666666666668,5,3,5,5_1,5_2,5_1_0 -4333,2,57.0,2,0.0,1,111,2,74,37,8.0,0.0,0.0,2182.8911106885716,782.0596443646599,0.0,38536.0,20,12,1,1728,201104333,,,,,1.0,0.0,6.0,2.0,4.0,2.1,1547.4081498401404,0.0,1600.0,0.0,0.0,59577.0,5,1,2,140.0,7,5.0,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2964.9507550532317,0.07693976424780029,0.04976670116073706,28370.0,8,4,8,8_1,8_2,8_1_0 -4334,1,20.0,3,160.0,7,111,2,0,84,1.0,0.0,0.0,654.8673332065715,0.0,0.0,15493.0,0,41,8,1729,201104334,,,,190.0,0.0,0.0,2.0,0.0,1.0,1.0,3441.784034234084,0.0,480.0,0.0,0.0,3135.0,0,3,3,29.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,654.8673332065715,0.042268594410803044,0.20888910150129872,3135.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -4335,2,81.0,3,0.0,5,111,4,0,71,2.0,0.0,0.0,955.0148609262501,104.27461924862132,0.0,22165.0,0,71,1,1731,201104335,,,,,0.0,1.0,5.0,0.0,1.0,1.0,3469.580545254972,0.0,700.0,0.0,0.0,10042.0,0,5,1,100.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1059.2894801748714,0.04779108866117173,0.10548590720721683,10042.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -4336,2,39.0,3,0.0,9,112,2,47,46,3.0,0.0,0.0,2264.749527339393,0.0,0.0,33734.0,41,71,1,1732,201104336,,,525.0,,2.0,0.0,5.0,1.0,3.0,1.8,3270.19929237104,0.0,1660.0,0.0,0.0,23106.0,4,1,2,117.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2264.749527339393,0.06713551690696012,0.09801564647015464,12836.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -4337,2,48.0,2,0.0,2,221,2,47,43,9.0,2284.4966531599903,0.0,927.728722042643,0.0,0.0,60096.0,50,10,1,1733,201104337,,,850.0,,2.0,1.0,6.0,1.0,3.0,2.0,1641.403608908494,0.0,680.0,0.0,0.0,63715.0,1,1,2,100.0,1,1.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3212.225375202633,0.05345156707938354,0.05041552813627298,31857.5,9,5,9,9_1,9_1,9_0_1 -4338,2,76.0,3,0.0,1,112,5,71,78,4.0,0.0,971.5484236944079,1841.8143746434823,312.82385774586396,0.0,17152.0,71,71,1,1734,201104338,,,209.0,,0.0,3.0,3.0,0.0,2.0,1.5,4876.483200546682,0.0,1350.0,0.0,0.0,22071.0,5,5,1,47.0,5,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3126.1866560837543,0.18226368097503232,0.1416422752065495,14714.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -4339,2,88.0,2,0.0,4,111,1,0,77,3.0,0.0,0.0,545.7227776721429,0.0,0.0,11408.0,0,71,2,1735,201104339,,,,310.0,0.0,3.0,3.0,0.0,1.0,1.0,3483.7855286338454,0.0,400.0,0.0,0.0,14228.0,0,5,3,63.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,545.7227776721429,0.04783684937518784,0.03835555086253464,14228.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -4340,2,43.0,2,0.0,8,112,2,42,45,6.0,0.0,0.0,1637.1683330164287,251.99699651750151,0.0,38198.0,20,31,1,1737,201104340,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2395.2217220255284,0.0,1200.0,0.0,0.0,44355.0,1,1,2,100.0,6,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1889.1653295339302,0.04945717915948296,0.042591936186087934,21121.42857142857,6,3,6,6_1,6_0,6_0_0 -4341,1,68.0,3,89.0,3,111,4,0,77,2.0,507.66592292444227,0.0,313.79059716148214,0.0,417.0984769944853,20062.0,0,50,2,1738,201104341,,,,162.0,0.0,3.0,4.0,0.0,1.0,1.0,2345.171781917026,0.0,230.0,240.0,0.0,11692.0,0,5,3,63.0,7,5.0,1,9,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1238.5549970804097,0.061736367115961005,0.10593183348275828,11692.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -4342,1,78.0,3,285.0,5,111,1,0,86,5.0,0.0,0.0,425.66376658427146,0.0,0.0,18836.0,0,71,2,1742,201104342,,,340.0,30.0,0.0,8.0,3.0,0.0,1.0,1.0,2771.008839361378,0.0,312.0,0.0,0.0,17172.0,0,5,3,55.0,7,5.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,425.66376658427146,0.02259841614909065,0.024788246365261557,17172.0,5,3,5,5_0,5_2,5_0_0 -4343,1,46.0,4,200.0,4,111,2,0,85,2.0,0.0,0.0,234.09238896814483,0.0,483.86312741054763,8715.0,0,60,2,1743,201104343,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3030.7477404102915,450.0,0.0,0.0,0.0,11220.0,0,4,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,717.9555163786924,0.08238158535613224,0.06398890520309201,11220.0,2,1,2_1,2_0_1,2_4_1,2_0_1 -4344,1,27.0,3,408.0,1,112,6,0,85,1.0,0.0,0.0,682.1534720901786,208.54923849724264,0.0,16900.0,0,71,2,1744,201104344,,,150.0,,0.0,0.0,3.0,3.0,4.0,1.9,3421.11393148071,0.0,500.0,0.0,0.0,16508.0,0,6,3,58.0,9,2.0,2,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,890.7027105874213,0.05270430240162256,0.05395582206126855,8688.42105263158,1,1,1_1,1_0_1,1_1_1,1_1_0 -4345,2,40.0,3,0.0,6,111,1,0,62,6.0,0.0,0.0,518.4366387885358,0.0,886.3342636132812,19273.0,0,50,1,1745,201104345,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3056.546217786225,0.0,380.0,510.0,0.0,21155.0,0,1,3,70.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1404.770902401817,0.07288802482238453,0.06640372972828254,21155.0,6,3,6,6_1,6_2,6_0_0 -4346,2,60.0,2,0.0,6,111,2,52,74,9.0,0.0,0.0,736.7257498573929,0.0,1911.7013528913908,64012.0,50,50,1,1746,201104346,,,290.0,,1.0,2.0,4.0,0.0,2.0,1.5,1306.2833126642395,0.0,540.0,1100.0,0.0,46775.0,1,5,1,100.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2648.427102748784,0.041373915871223896,0.05662056873861644,31183.333333333332,9,5,9,9_1,9_3,9_0_0 -4347,2,25.0,3,0.0,2,111,6,0,46,6.0,0.0,0.0,1023.230208135268,0.0,0.0,23622.0,0,31,2,1747,201104347,,,,500.0,1.0,0.0,1.0,0.0,1.0,1.0,3104.160987843383,0.0,750.0,0.0,0.0,19210.0,0,1,3,24.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1023.230208135268,0.04331683211139056,0.053265497560399166,19210.0,5,3,5,5_0,5_4,5_0_1 -4348,2,77.0,1,0.0,4,111,2,74,78,9.0,0.0,0.0,754.6788405141136,0.0,2434.535808055498,18924.0,50,50,1,1748,201104348,,,320.0,,0.0,1.0,4.0,0.0,2.0,1.5,1460.932657497521,601.0,324.0,1029.0,0.0,44072.0,5,5,1,87.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3189.2146485696117,0.16852751260672225,0.07236373771486684,29381.333333333332,9,5,9,9_1,9_3,9_0_1 -4349,2,43.0,3,0.0,9,112,2,52,62,4.0,0.0,0.0,1227.8762497623215,2606.865481215533,0.0,41255.0,50,42,1,1749,201104349,,,800.0,,2.0,0.0,5.0,2.0,4.0,2.3,2392.170724650996,0.0,900.0,0.0,0.0,35272.0,1,1,2,180.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3834.7417309778543,0.09295216897292097,0.10871914637610157,15335.652173913044,4,2,4_0,4_1_0,4_0_0,4_0_0 -4350,2,67.0,2,0.0,5,111,2,75,75,9.0,0.0,244.2750322431654,1734.034126053234,114.70208117348345,0.0,38719.0,50,43,1,1753,201104350,,,323.0,,0.0,2.0,6.0,0.0,2.0,1.5,1837.4563848258592,0.0,1271.0,0.0,0.0,50153.0,5,5,1,115.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2093.011239469883,0.05405643842738405,0.04173252326819698,33435.333333333336,9,5,9,9_1,9_3,9_0_0 -4351,2,71.0,1,0.0,4,111,2,86,78,5.0,0.0,0.0,706.0445721054899,0.0,2651.1621587957306,54757.0,50,50,1,1754,201104351,,,510.0,,0.0,5.0,5.0,0.0,2.0,1.5,1141.3251626939868,518.0,320.0,1205.0,0.0,26870.0,6,5,1,120.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3357.2067309012205,0.06131100554999763,0.12494256534801713,17913.333333333332,5,3,5,5_1,5_3,5_0_1 -4352,2,63.0,3,0.0,2,111,2,77,78,6.0,0.0,0.0,515.708024900175,0.0,2544.30070966636,43075.0,70,50,1,1755,201104352,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1915.7575731069294,0.0,378.0,1464.0,0.0,28686.0,5,5,1,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3060.008734566535,0.07103908844031423,0.1066725487891841,19124.0,5,3,5,5_1,5_4,5_0_1 -4353,0,61.0,4,0.0,4,111,4,0,77,1.0,0.0,0.0,182.07185808633486,0.0,376.3379879859815,9551.0,0,71,2,1757,201104353,,,240.0,,0.0,3.0,3.0,0.0,1.0,1.0,3319.5271267461694,350.0,0.0,0.0,0.0,5870.0,0,5,5,60.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,558.4098460723163,0.058466113084736294,0.09512944566819699,5870.0,1,1,1_0,1_0_0,1_2_0,1_0_1 -4354,1,58.0,5,106.0,6,300,4,0,78,3.0,218.93092926116574,0.0,184.18143746434822,48.661488982689946,0.0,8213.0,0,70,1,1758,201104354,,,19.0,,0.0,3.0,2.0,0.0,1.0,1.0,3403.0759651864782,0.0,135.0,0.0,0.0,14518.0,0,4,3,70.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,451.77385570820394,0.05500716616439839,0.031118188160091192,14518.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -4355,2,75.0,3,0.0,7,112,2,0,77,2.0,0.0,0.0,752.4310082076221,4249.190734381318,556.9802222192526,22240.0,0,70,1,1760,201104355,,,332.0,,1.0,1.0,4.0,1.0,2.0,1.5,2729.681731676156,518.0,354.0,0.0,0.0,17333.0,0,5,1,80.0,10,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5558.601964808193,0.24993713870540435,0.32069474209935916,11555.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -4356,2,50.0,1,0.0,8,120,4,48,43,9.0,0.0,0.0,1616.7037288537233,0.0,0.0,50267.0,50,33,1,1761,201104356,,,299.0,,2.0,2.0,5.0,0.0,2.0,1.5,1644.6809287543135,0.0,1185.0,0.0,0.0,53310.0,1,1,1,110.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1616.7037288537233,0.032162327746905986,0.030326462743457575,35540.0,9,5,9,9_1,9_0,9_0_0 -4357,2,86.0,2,0.0,99,111,4,0,77,3.0,0.0,0.0,660.3245609832929,0.0,0.0,22206.0,0,70,2,1762,201104357,,,120.0,,0.0,2.0,2.0,0.0,1.0,1.0,3821.8919821806267,0.0,484.0,0.0,0.0,12470.0,0,5,1,47.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,660.3245609832929,0.02973631275255755,0.052953052203952924,12470.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -4358,2,64.0,1,0.0,5,112,6,75,74,2.0,0.0,430.2571590646664,1732.6698191090536,161.62565983536302,0.0,65847.0,41,20,1,1763,201104358,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1686.5056993607236,0.0,1270.0,0.0,0.0,15264.0,5,5,1,180.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2324.552638009083,0.03530233173886559,0.15228987408340428,10176.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -4359,2,74.0,2,0.0,5,111,1,0,74,9.0,0.0,0.0,751.6966712421539,0.0,1553.7382646849805,22601.0,0,60,1,1764,201104359,,,437.0,,0.0,2.0,4.0,0.0,1.0,1.0,4938.344388545194,1445.0,0.0,0.0,0.0,31044.0,0,5,1,108.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2305.4349359271346,0.10200588186041036,0.07426346269575874,31044.0,9,5,9,9_1,9_2,9_0_0 -4360,2,60.0,3,0.0,1,111,1,0,47,7.0,0.0,0.0,702.2771669044345,0.0,1451.589382231643,42545.0,0,50,2,1766,201104360,,,,560.0,1.0,4.0,1.0,0.0,1.0,1.0,3188.4144873302002,1350.0,0.0,0.0,0.0,22321.0,0,1,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2153.8665491360775,0.05062560933449471,0.09649507410671912,22321.0,7,4,7,7_0,7_4,7_1_0 -4361,2,60.0,3,0.0,4,111,2,0,74,9.0,0.0,0.0,409.2920832541072,0.0,1840.4470297381663,27150.0,0,10,2,1767,201104361,,,,863.0,0.0,0.0,4.0,0.0,1.0,1.0,2508.9169273572024,0.0,300.0,1059.0,0.0,35650.0,0,5,3,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2249.7391129922735,0.0828633190789051,0.06310628647944666,35650.0,9,5,9,9_0,9_4,9_0_1 -4363,2,73.0,2,0.0,4,112,4,77,78,7.0,0.0,0.0,1132.3747636696964,104.27461924862132,0.0,20238.0,50,70,1,177,201104363,,,442.0,,0.0,2.0,4.0,0.0,2.0,1.5,1029.6657244888731,0.0,830.0,0.0,0.0,34740.0,5,5,1,110.0,8,2.0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1236.6493829183178,0.06110531588686223,0.035597276422519225,23160.0,7,4,7,7_1,7_1,7_0_1 -4364,2,53.0,2,0.0,2,120,4,52,75,8.0,0.0,0.0,1023.230208135268,86.89551604051776,0.0,34738.0,44,50,1,1770,201104364,,,240.0,,1.0,1.0,6.0,0.0,2.0,1.5,1482.5899649289045,0.0,750.0,0.0,0.0,38928.0,1,4,1,150.0,0,3.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1110.1257241757858,0.031957099550227006,0.028517409683923804,25952.0,8,4,8,8_1,8_1,8_0_1 -4365,2,81.0,3,0.0,2,300,5,71,71,2.0,0.0,832.755791738064,395.6490138123036,201.5975972140012,0.0,17535.0,70,71,1,1773,201104365,,,132.0,,0.0,2.0,5.0,0.0,2.0,1.5,2073.035133290282,0.0,290.0,0.0,0.0,18221.0,5,5,1,80.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1430.002402764369,0.08155132037435808,0.0784810055850046,12147.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1 -4366,2,41.0,2,0.0,1,120,4,69,62,6.0,0.0,0.0,2046.460416270536,0.0,0.0,25524.0,71,50,1,1774,201104366,,,300.0,,2.0,0.0,5.0,1.0,3.0,2.0,2765.316378175649,0.0,1500.0,0.0,0.0,38447.0,1,1,1,110.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2046.460416270536,0.08017788811591192,0.0532280910414476,19223.5,5,3,5,5_1,5_0,5_1_0 -4367,2,75.0,3,0.0,4,120,1,75,72,4.0,0.0,0.0,1465.2656580497037,0.0,3618.3292879271594,20797.0,50,50,1,1775,201104367,,,132.0,,0.0,2.0,8.0,0.0,2.0,1.5,1158.2607638218292,0.0,1074.0,2082.0,0.0,24961.0,5,5,1,150.0,0,1.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5083.5949459768635,0.24443885877659582,0.20366150979435374,16640.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_1 -4368,1,40.0,2,9999.0,1,111,2,62,65,4.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,29437.0,71,71,2,1776,201104368,,,,,2.0,0.0,3.0,2.0,4.0,2.3,3844.819848224026,1200.0,0.0,0.0,0.0,35673.0,1,1,3,75.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1914.548043676513,0.06503883016871669,0.05366938703435408,15510.000000000002,4,2,4_1,4_0_1,4_3_1,4_1_0 -4369,2,64.0,3,0.0,1,112,6,0,75,3.0,571.1241632899976,0.0,204.6460416270536,0.0,0.0,9889.0,0,31,1,1777,201104369,,,,,0.0,3.0,6.0,0.0,1.0,1.0,2309.2962387373195,0.0,150.0,0.0,0.0,13541.0,0,5,1,160.0,7,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,775.7702049170512,0.07844779097148864,0.05729046635529512,13541.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -4370,2,45.0,3,0.0,4,300,2,65,62,4.0,2379.684013708323,0.0,804.6273265557608,90.37133668213848,174.19072586779714,40217.0,50,71,1,1778,201104370,,,188.0,,2.0,0.0,3.0,2.0,4.0,2.3,1880.5933972147175,162.0,528.0,0.0,0.0,35805.0,1,1,1,75.0,0,1.0,4,2,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3448.8734028140193,0.08575660548559115,0.09632379284496632,15567.391304347828,4,2,4_0,4_1_0,4_1_0,4_0_1 -4371,2,41.0,3,0.0,1,300,6,0,67,6.0,0.0,0.0,1489.8231830449502,0.0,0.0,27707.0,0,50,1,1779,201104371,,,,,1.0,3.0,3.0,1.0,2.0,1.5,1389.484249050625,0.0,1092.0,0.0,0.0,29967.0,0,1,3,60.0,0,0.0,2,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1489.8231830449502,0.0537706421859079,0.049715459773916316,19978.0,6,3,6,6_1,6_0,6_1_0 -4372,2,45.0,3,0.0,1,111,1,55,65,5.0,0.0,0.0,343.33550381994576,0.0,709.6659202021365,25397.0,50,31,2,178,201104372,,,,740.0,2.0,0.0,4.0,2.0,4.0,2.3,2216.9735111891177,660.0,0.0,0.0,0.0,43624.0,1,1,3,120.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1053.0014240220821,0.04146164602205308,0.02413812176834041,18966.956521739132,5,3,5,5_0,5_2,5_1_0 -4373,2,82.0,3,0.0,5,211,2,75,77,6.0,0.0,0.0,368.36287492869644,0.0,212.02505913886333,14560.0,60,71,1,1780,201104373,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2482.866874670366,0.0,270.0,122.0,0.0,30954.0,5,5,1,83.0,3,3.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,580.3879340675597,0.03986180865848624,0.018750014022987652,20636.0,6,3,6,6_1,6_1,6_0_0 -4374,2,42.0,3,0.0,6,112,4,0,47,8.0,0.0,0.0,2046.460416270536,0.0,0.0,21948.0,0,50,1,1784,201104374,,,700.0,,1.0,1.0,5.0,1.0,2.0,1.5,1957.9251068846331,0.0,1500.0,0.0,0.0,40082.0,0,1,1,96.0,10,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2046.460416270536,0.09324131657875596,0.05105684387681592,26721.333333333332,8,4,8,8_1,8_0,8_0_0 -4375,2,62.0,2,0.0,2,221,2,0,77,6.0,0.0,0.0,395.6490138123036,0.0,1790.047630434666,24499.0,0,50,1,1785,201104375,,,,309.0,0.0,4.0,4.0,0.0,1.0,1.0,1556.664068798537,0.0,290.0,1030.0,0.0,19193.0,0,5,3,81.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2185.6966442469698,0.08921574938760642,0.11387988559615327,19193.0,5,3,5,5_1,5_1,5_0_1 -4376,1,22.0,2,265.0,9,111,4,0,34,10.0,0.0,0.0,0.0,0.0,0.0,6413.0,0,41,8,1786,201104376,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3329.983984928582,0.0,0.0,0.0,0.0,44132.0,0,3,3,30.0,8,7.0,1,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,44132.0,10,5,10,10_0,10_3,10_0_0 -4377,1,44.0,3,152.0,99,111,4,0,55,2.0,0.0,0.0,409.2920832541072,0.0,0.0,10592.0,0,50,2,1787,201104377,,,,151.0,1.0,0.0,2.0,0.0,1.0,1.0,2033.5610090924706,0.0,300.0,0.0,0.0,10043.0,0,4,3,50.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,409.2920832541072,0.038641624174292594,0.04075396627044779,10043.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -4378,2,48.0,4,0.0,4,112,6,46,38,7.0,0.0,0.0,1171.9396650509268,0.0,1505.0303378217677,64853.0,60,50,1,1788,201104378,,,550.0,,2.0,0.0,6.0,2.0,4.0,2.3,2597.223783657903,0.0,859.0,866.0,0.0,56786.0,1,1,1,150.0,7,0.0,4,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2676.9700028726947,0.04127750455449547,0.04714137292418368,24689.565217391308,7,4,7,7_1,7_0,7_0_1 -4379,1,25.0,4,548.0,99,111,2,63,85,2.0,0.0,0.0,1146.0178331115,166.8393907977941,0.0,17417.0,50,60,1,1789,201104379,,,1440.0,7.0,1.0,0.0,6.0,5.0,8.0,3.5,798.9582451163657,0.0,840.0,0.0,0.0,40126.0,4,6,3,93.0,6,5.0,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1312.8572239092941,0.07537791949872505,0.03271836773935339,11464.57142857143,2,1,2_1,2_1_1,2_2_1,2_0_0 -4380,2,38.0,4,0.0,1,400,3,21,38,10.0,0.0,416.377895869032,573.00891655575,0.0,0.0,57484.0,31,12,1,1790,201104380,,,,650.0,2.0,0.0,3.0,2.0,4.0,2.1,2295.6567916125887,0.0,420.0,0.0,0.0,132182.0,1,1,3,120.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,989.386812424782,0.01721151646414275,0.007485034364927009,62943.80952380952,10,5,10,10_1,10_0,10_1_0 -4381,1,22.0,2,171.0,4,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,24302.0,0,41,2,1791,201104381,,,,12.0,0.0,0.0,4.0,0.0,1.0,1.0,3392.7262439921547,0.0,0.0,0.0,0.0,2146.0,0,3,3,84.0,8,6.0,1,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0.0,0.0,0.0,2146.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -4382,2,65.0,2,0.0,1,112,6,0,77,7.0,1110.5192063972174,0.0,1050.5163470188752,208.54923849724264,0.0,26280.0,0,50,1,1792,201104382,,,350.0,,0.0,3.0,4.0,0.0,1.0,1.0,2570.5471180620275,0.0,770.0,0.0,0.0,24135.0,0,5,3,100.0,9,2.0,1,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2369.5847919133353,0.09016684900735675,0.09818043471776819,24135.0,7,4,7,7_1,7_1,7_1_0 -4383,2,79.0,1,0.0,5,112,2,0,74,7.0,2221.038412794435,0.0,463.8643610213215,0.0,0.0,44241.0,0,12,1,1793,201104383,,,60.0,,0.0,6.0,7.0,0.0,1.0,1.0,1592.2693936514563,0.0,340.0,0.0,0.0,24385.0,0,5,1,190.0,7,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2684.9027738157565,0.060688112244654424,0.11010468623398632,24385.0,7,4,7,7_1,7_0,7_0_0 -4384,2,33.0,1,0.0,1,111,2,0,23,10.0,0.0,0.0,1710.8457659169924,0.0,4428.189309213,135980.0,0,42,1,1794,201104384,,,500.0,,1.0,0.0,4.0,0.0,1.0,1.0,2267.4637324127643,2502.0,300.0,1000.0,0.0,91919.0,0,1,1,145.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,6139.035075129993,0.04514660299404319,0.06678744410981399,91919.0,10,5,10,10_1,10_2,10_1_0 -4386,2,27.0,2,0.0,8,112,6,38,38,6.0,0.0,0.0,477.50743046312505,0.0,0.0,33957.0,10,10,2,1798,201104386,,,216.0,400.0,2.0,0.0,2.0,0.0,2.0,1.5,2590.3724660945136,0.0,350.0,0.0,0.0,29091.0,1,1,3,40.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,477.50743046312505,0.014062120636779606,0.016414266627586712,19394.0,6,3,6,6_0,6_1,6_0_0 -4387,2,55.0,3,0.0,1,120,2,78,62,5.0,1983.0700114236026,0.0,695.7965415319821,0.0,0.0,18054.0,50,50,1,18,201104387,,,280.0,,1.0,1.0,3.0,0.0,2.0,1.5,1144.0045291615413,0.0,510.0,0.0,0.0,28130.0,5,1,2,60.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2678.8665529555847,0.14838077727681315,0.09523165847691378,18753.333333333332,5,3,5,5_1,5_0,5_1_0 -4388,2,77.0,3,0.0,1,111,2,0,77,6.0,0.0,0.0,772.1977304060822,0.0,1842.1849400589765,11023.0,0,70,1,180,201104388,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2636.69256708809,0.0,566.0,1060.0,0.0,20781.0,0,5,3,60.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2614.3826704650587,0.23717523999501575,0.12580639384365808,20781.0,6,3,6,6_1,6_2,6_1_0 -4389,2,72.0,4,0.0,7,111,4,0,77,4.0,0.0,0.0,579.8304512766518,0.0,0.0,10639.0,0,50,2,1800,201104389,,,,500.0,0.0,3.0,2.0,0.0,1.0,1.0,2643.44236733742,0.0,425.0,0.0,0.0,16130.0,0,5,3,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,579.8304512766518,0.05450046538928958,0.035947331139284056,16130.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -4390,2,31.0,4,0.0,1,400,2,0,68,4.0,0.0,0.0,1047.7877331305144,48.661488982689946,0.0,20124.0,0,50,1,1801,201104390,,,,,1.0,3.0,4.0,0.0,1.0,1.0,2811.5992324314025,0.0,768.0,0.0,0.0,16390.0,0,1,5,88.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1096.4492221132043,0.05448465623699087,0.06689745101361833,16390.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -4391,2,43.0,2,0.0,1,300,5,64,62,3.0,0.0,2081.88947934516,1227.8762497623215,0.0,0.0,46518.0,71,71,1,1802,201104391,,,270.0,,2.0,0.0,4.0,3.0,5.0,3.0,2053.8465853407442,0.0,900.0,0.0,0.0,42032.0,1,1,2,100.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3309.7657291074815,0.07115021559627416,0.0787439505402427,14010.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -4392,2,34.0,3,0.0,1,111,2,47,46,8.0,0.0,0.0,613.9381248811608,0.0,938.4715732375919,41411.0,31,20,1,1803,201104392,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1420.8840746280473,0.0,450.0,540.0,0.0,58869.0,1,1,2,106.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1552.4096981187527,0.03748785825309103,0.026370580409362358,28032.85714285714,8,4,8,8_1,8_3,8_1_0 -4393,2,59.0,3,0.0,4,400,5,11,71,7.0,0.0,277.585263912688,461.1357471329608,281.54147197127753,0.0,24846.0,60,50,1,1805,201104393,,,,,1.0,1.0,4.0,0.0,2.0,1.5,2064.5347959342234,0.0,338.0,0.0,0.0,36899.0,1,5,1,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1020.2624830169264,0.04106345017374734,0.02765013910991968,24599.333333333332,7,4,7,7_1,7_0,7_0_1 -4394,2,71.0,2,0.0,5,111,1,0,77,8.0,0.0,0.0,654.8673332065715,0.0,0.0,27601.0,0,50,2,1807,201104394,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2467.6878320961746,0.0,480.0,0.0,0.0,24831.0,0,5,1,100.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,654.8673332065715,0.02372621764452634,0.02637297463680768,24831.0,7,4,7,7_0,7_4,7_0_0 -4395,0,65.0,4,0.0,3,300,2,0,78,1.0,0.0,0.0,327.43366660328576,0.0,2433.074449134497,9586.0,0,71,1,1809,201104395,,,92.0,,0.0,2.0,3.0,0.0,1.0,1.0,1706.7237035857634,0.0,240.0,1400.0,0.0,7588.0,0,5,5,75.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2760.508115737783,0.2879728891860821,0.3637991718157331,7588.0,1,1,1_0,1_1_0,1_1_0,1_0_1 -4396,2,43.0,4,0.0,9,111,4,52,52,5.0,0.0,0.0,1308.3703594689625,97.32297796537989,0.0,34146.0,71,50,1,181,201104396,,,534.0,,2.0,0.0,5.0,2.0,4.0,2.3,2073.464884846439,0.0,959.0,0.0,0.0,39374.0,1,1,2,130.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1405.6933374343425,0.04116714512488557,0.0357010549457597,17119.13043478261,5,3,5,5_1,5_2,5_0_0 -4397,2,26.0,1,0.0,1,111,4,0,46,8.0,0.0,0.0,491.1504999049286,0.0,0.0,20151.0,0,41,2,1810,201104397,,,,670.0,1.0,0.0,2.0,0.0,1.0,1.0,4583.52524447666,0.0,360.0,0.0,0.0,27680.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,491.1504999049286,0.02437350503225292,0.017743876441652044,27680.0,8,4,8,8_0,8_4,8_1_0 -4398,2,28.0,3,0.0,6,112,4,46,64,8.0,0.0,0.0,2319.3218051066074,24.330744491344973,0.0,53482.0,41,50,1,1813,201104398,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2498.6971794468373,0.0,1700.0,0.0,0.0,37388.0,1,1,2,80.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2343.652549597952,0.04382133333828114,0.06268461938584445,24925.333333333332,8,4,8,8_1,8_0,8_0_0 -4399,2,57.0,2,0.0,2,111,2,46,46,7.0,0.0,0.0,1560.615926454299,0.0,3225.754182736984,50032.0,50,41,1,1814,201104399,,,1200.0,,2.0,2.0,5.0,0.0,2.0,1.5,1713.0621904947286,3000.0,0.0,0.0,0.0,35973.0,1,1,3,160.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4786.370109191283,0.09566617583129362,0.13305451614242023,23982.0,7,4,7,7_1,7_2,7_0_1 -4400,1,26.0,2,147.0,1,112,4,21,46,4.0,0.0,0.0,206.01034857123395,0.0,0.0,21569.0,43,10,1,1815,201104400,,,,503.0,2.0,0.0,3.0,0.0,2.0,1.5,4176.317632593558,0.0,151.0,0.0,0.0,24114.0,1,1,3,85.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,206.01034857123395,0.009551223912616901,0.008543184397911336,16076.0,4,2,4_1,4_1_1,4_0_1,4_1_0 -4401,2,43.0,3,0.0,2,111,2,56,63,3.0,0.0,0.0,207.3746555154143,0.0,0.0,48884.0,50,50,1,1818,201104401,,,350.0,,2.0,0.0,5.0,3.0,5.0,2.6,1022.1546153302068,0.0,152.0,0.0,0.0,33597.0,1,1,3,80.0,7,6.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,207.3746555154143,0.004242178535214269,0.006172415856041144,12921.923076923076,3,2,3_0,3_1_0,3_2_0,3_0_1 -4402,2,54.0,2,0.0,4,112,4,85,38,7.0,0.0,0.0,1910.0297218525002,0.0,0.0,62401.0,50,10,1,1819,201104402,,,800.0,,3.0,0.0,4.0,3.0,5.0,3.0,2063.1447257281925,0.0,1400.0,0.0,0.0,66602.0,6,1,2,120.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1910.0297218525002,0.03060896014250573,0.02867826374361881,22200.666666666668,7,4,7,7_1,7_0,7_0_1 -4403,2,66.0,3,0.0,5,112,2,56,78,5.0,2455.8339021469897,0.0,597.5664415509965,278.0656513296568,0.0,29270.0,70,70,1,182,201104403,,,,,1.0,6.0,4.0,0.0,2.0,1.5,1556.2076458997865,0.0,438.0,0.0,0.0,25368.0,1,5,1,75.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3331.4659950276427,0.11381844875393382,0.13132552802852582,16912.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -4404,2,54.0,1,0.0,1,111,2,46,53,10.0,0.0,0.0,1019.9227931159795,0.0,4541.89696897319,38980.0,50,50,1,1820,201104404,,,486.0,,2.0,2.0,5.0,0.0,2.0,1.5,1211.014179651966,151.0,690.0,2520.0,0.0,58570.0,1,1,1,170.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,5561.81976208917,0.14268393437889096,0.09496021447992437,39046.666666666664,10,5,10,10_1,10_2,10_1_0 -4405,2,78.0,3,0.0,2,111,4,0,77,2.0,0.0,0.0,1346.5709539060126,0.0,0.0,14272.0,0,71,2,1821,201104405,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3546.4380035012146,0.0,987.0,0.0,0.0,11520.0,0,5,1,53.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1346.5709539060126,0.09435054329498407,0.11688983974878582,11520.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -4406,2,54.0,3,0.0,3,111,2,46,43,9.0,0.0,0.0,2182.8911106885716,0.0,3649.611673701746,50063.0,70,71,1,1822,201104406,,,600.0,,2.0,0.0,7.0,2.0,4.0,2.5,2995.2324223544865,0.0,1600.0,2100.0,0.0,76898.0,1,1,2,170.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5832.502784390317,0.11650326157821779,0.07584726240461803,30759.2,9,5,9,9_1,9_3,9_0_1 -4407,2,64.0,3,0.0,8,300,5,78,78,3.0,0.0,902.152107716236,564.823074890668,0.0,0.0,32937.0,71,71,1,1823,201104407,,,,,0.0,2.0,5.0,0.0,2.0,1.5,3129.480062148666,0.0,414.0,0.0,0.0,20710.0,4,5,1,80.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1466.975182606904,0.04453882207265094,0.0708341469148674,13806.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -4408,2,51.0,2,0.0,9,112,2,0,45,8.0,0.0,0.0,317.32523837904074,0.0,655.9033504898534,15894.0,0,20,2,1824,201104408,,,210.0,,1.0,0.0,2.0,0.0,1.0,1.0,2601.586029712402,610.0,0.0,0.0,0.0,28224.0,0,1,2,45.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,973.2285888688941,0.06123245179746408,0.03448230544461785,28224.0,8,4,8,8_0,8_1,8_0_0 -4409,2,59.0,3,0.0,6,112,2,75,75,6.0,807.5061086516911,0.0,579.8304512766518,50.3993993035003,0.0,24260.0,50,60,1,1826,201104409,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2191.426075089373,0.0,425.0,0.0,0.0,30158.0,7,7,1,96.0,6,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1437.7359592318433,0.05926364217773468,0.04767345179494142,20105.333333333332,6,3,6,6_1,6_0,6_0_0 -4410,2,56.0,2,0.0,7,111,4,34,37,10.0,0.0,97.1548423694408,2865.0445827787503,0.0,0.0,42383.0,20,12,1,1827,201104410,,,,,2.0,3.0,6.0,0.0,2.0,1.5,2389.6892868662044,0.0,2100.0,0.0,0.0,161960.0,1,1,1,175.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2962.199425148191,0.06989121641101836,0.0182896976114361,107973.33333333333,10,5,10,10_1,10_4,10_0_0 -4411,1,52.0,3,244.0,6,112,6,0,54,3.0,79.32280045694411,0.0,409.2920832541072,45.18566834106924,0.0,5610.0,0,71,1,1828,201104411,,,150.0,,1.0,3.0,5.0,0.0,1.0,1.0,2547.144744873139,0.0,300.0,0.0,0.0,12648.0,0,1,3,100.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,533.8005520521206,0.09515161355652774,0.04220434472265343,12648.0,2,1,2_1,2_1_1,2_0_1,2_0_0 -4412,2,42.0,3,0.0,1,112,2,48,47,5.0,79.32280045694411,0.0,900.4425831590357,0.0,2568.631454157705,66131.0,60,60,1,1829,201104412,,,396.0,,2.0,0.0,5.0,3.0,5.0,2.4,1772.880013288755,0.0,660.0,1478.0,0.0,45177.0,1,1,2,107.0,9,0.0,4,3,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3548.3968377736846,0.05365708726276156,0.07854432206152875,18823.75,5,3,5,5_1,5_0,5_1_0 -4413,1,39.0,4,349.0,3,111,1,68,85,1.0,0.0,0.0,811.7626317873126,0.0,749.0393482692631,24251.0,50,50,1,183,201104413,,,432.0,79.0,1.0,0.0,6.0,4.0,6.0,3.1,1126.513130308353,0.0,595.0,431.0,0.0,26081.0,1,7,3,110.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1560.8019800565758,0.06436031421617977,0.05984440704177661,8413.225806451612,1,1,1_1,1_1_1,1_3_1,1_0_1 -4414,2,35.0,3,0.0,1,111,2,43,52,5.0,0.0,0.0,545.7227776721429,0.0,1911.7013528913908,26080.0,10,33,1,1830,201104414,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1573.2124493297938,0.0,400.0,1100.0,0.0,36967.0,1,1,2,140.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2457.4241305635337,0.09422638537436863,0.06647615793987972,17603.333333333332,5,3,5,5_1,5_2,5_1_0 -4415,2,42.0,4,0.0,10,120,6,63,63,3.0,0.0,0.0,1541.6668469238036,2850.1729261289825,0.0,32741.0,71,71,1,1832,201104415,,,354.0,,2.0,0.0,6.0,4.0,6.0,3.3,1815.1057822039286,0.0,1130.0,0.0,0.0,41069.0,1,1,2,101.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4391.839773052786,0.1341388403852291,0.10693807429089547,12445.151515151516,2,1,2_0,2_1_0,2_0_0,2_0_0 -4416,1,41.0,5,95.0,7,111,4,52,53,4.0,0.0,0.0,1364.3069441803573,0.0,0.0,25829.0,30,41,2,1833,201104416,,,,385.0,2.0,0.0,3.0,2.0,4.0,2.1,2969.719159642675,0.0,1000.0,0.0,0.0,32831.0,1,1,3,45.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1364.3069441803573,0.05282074196369806,0.04155544894095085,15633.809523809523,4,2,4_1,4_0_1,4_4_1,4_0_0 -4417,2,65.0,3,0.0,9,111,4,68,74,3.0,0.0,0.0,3137.9059716148217,48.661488982689946,0.0,31436.0,50,20,1,1835,201104417,,,200.0,,1.0,2.0,4.0,0.0,2.0,1.5,1437.6225910079215,0.0,2300.0,0.0,0.0,21914.0,1,5,2,110.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3186.567460597512,0.10136682340620663,0.1454124057952684,14609.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_0 -4418,2,48.0,4,0.0,6,111,1,54,33,9.0,0.0,0.0,2455.752499524643,0.0,0.0,113565.0,41,30,2,1836,201104418,,,,497.0,2.0,0.0,4.0,3.0,5.0,2.8,3534.5706897861264,0.0,1800.0,0.0,0.0,87623.0,1,1,3,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2455.752499524643,0.021624201994669513,0.028026345817018853,31293.928571428572,9,5,9,9_0,9_4,9_0_0 -4419,2,58.0,2,0.0,7,111,2,62,75,4.0,0.0,0.0,1364.3069441803573,0.0,368.43698801179534,63478.0,41,60,2,1837,201104419,,,350.0,500.0,1.0,2.0,4.0,2.0,4.0,2.5,3742.110292751987,0.0,1000.0,212.0,0.0,37953.0,1,5,3,100.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1732.7439321921527,0.02729676316506747,0.045654992548471864,15181.2,4,2,4_0,4_0_0,4_2_0,4_0_0 -4420,0,82.0,3,0.0,1,111,2,0,78,3.0,0.0,0.0,422.93515269591074,0.0,1442.4655662725947,16235.0,0,70,1,1838,201104420,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1795.8348381055202,0.0,310.0,830.0,0.0,13885.0,0,5,5,70.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1865.4007189685055,0.11489995189211615,0.13434646877698997,13885.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -4421,2,39.0,3,0.0,9,120,2,63,52,7.0,1651.5007055135763,0.0,436.5782221377143,0.0,0.0,26669.0,50,50,1,184,201104421,,,190.0,,2.0,0.0,6.0,1.0,3.0,1.8,968.5259050217131,0.0,320.0,0.0,0.0,39772.0,1,1,2,135.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2088.0789276512905,0.07829610887739662,0.052501230203441884,22095.555555555555,7,4,7,7_1,7_1,7_0_0 -4422,2,57.0,3,0.0,1,400,5,13,13,3.0,0.0,41.637789586903196,620.7596596020626,521.3730962431066,0.0,37296.0,41,10,1,1840,201104422,,,,,2.0,0.0,7.0,0.0,4.0,2.5,1342.214275717479,0.0,455.0,0.0,0.0,31740.0,1,1,1,91.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1183.7705454320724,0.03173987948927693,0.03729585839420518,12696.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -4423,2,70.0,2,0.0,5,112,2,71,71,3.0,634.5824036555529,138.792631956344,1186.9470414369107,182.4805836850873,0.0,13678.0,70,71,1,1842,201104423,,,210.0,,0.0,5.0,8.0,0.0,2.0,1.5,2185.4582443912504,0.0,870.0,0.0,0.0,20880.0,5,5,1,152.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2142.8026607338948,0.15666052498420052,0.10262464850258117,13920.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -4424,2,68.0,1,0.0,3,111,2,77,75,6.0,0.0,0.0,2701.3277494771073,0.0,1546.740185521216,28352.0,70,70,1,1843,201104424,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2335.015822814846,0.0,1980.0,890.0,0.0,32041.0,5,5,1,75.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4248.067934998324,0.14983309590146457,0.13258225195837595,21360.666666666668,6,3,6,6_1,6_2,6_0_1 -4425,2,37.0,2,0.0,1,111,2,56,35,1.0,0.0,0.0,261.9469332826286,0.0,0.0,27979.0,44,71,2,1844,201104425,,,,352.0,2.0,1.0,3.0,0.0,2.0,1.5,3132.9871595913546,0.0,192.0,0.0,0.0,11056.0,1,1,3,27.0,4,4.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,261.9469332826286,0.009362269319226155,0.023692739985765973,7370.666666666667,1,1,1_0,1_0_0,1_2_0,1_1_0 -4426,2,62.0,3,0.0,5,120,2,0,78,6.0,1903.7472109666587,0.0,753.0974331875572,0.0,0.0,18829.0,0,70,1,1845,201104426,,,100.0,,0.0,0.0,5.0,0.0,1.0,1.0,1295.7579283487748,0.0,552.0,0.0,0.0,19453.0,0,5,1,113.0,0,1.0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2656.844644154216,0.14110386341038908,0.13657763039912693,19453.0,6,3,6,6_1,6_1,6_0_0 -4427,1,41.0,5,440.0,1,112,2,85,21,1.0,2379.684013708323,0.0,1091.4455553442858,55.61313026593137,0.0,17715.0,50,50,1,1847,201104427,,,180.0,,1.0,1.0,5.0,3.0,5.0,2.6,1980.017963206541,0.0,800.0,0.0,0.0,23960.0,6,1,3,125.0,6,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3526.7426993185404,0.19908228615966922,0.1471929340283197,9215.384615384615,1,1,1_1,1_1_1,1_0_1,1_1_0 -4428,2,41.0,1,0.0,7,111,2,85,33,9.0,0.0,0.0,558.0015401697661,0.0,1426.8243733853017,48541.0,20,12,1,1848,201104428,,,228.0,886.0,1.0,0.0,5.0,3.0,5.0,2.4,1901.443521868711,0.0,409.0,821.0,0.0,70001.0,6,1,3,110.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1984.825913555068,0.04088967910745695,0.028354250847203152,29167.083333333336,9,5,9,9_1,9_3,9_0_0 -4429,2,66.0,1,0.0,4,111,3,72,74,10.0,672.657347874886,521.8602961558535,7224.0052694349915,0.0,0.0,102129.0,41,41,1,185,201104429,,,1464.0,,0.0,0.0,6.0,0.0,2.0,1.5,2189.646317795377,0.0,5295.0,0.0,0.0,57734.0,5,5,1,230.0,6,5.0,3,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,8418.522913465731,0.08243028829681806,0.14581568769643072,38489.333333333336,10,5,10,10_1,10_2,10_0_1 -4430,2,67.0,3,0.0,4,111,1,85,75,1.0,0.0,0.0,463.8643610213215,0.0,99.06088828619025,30772.0,71,50,2,1850,201104430,,,,414.0,0.0,0.0,4.0,2.0,4.0,2.5,2807.797047414328,0.0,340.0,57.0,0.0,21285.0,6,5,3,75.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,562.9252493075118,0.018293424194316645,0.026447040136599095,8514.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -4431,1,43.0,3,150.0,2,111,2,85,54,2.0,0.0,0.0,294.69029994295715,0.0,834.1969539889706,25471.0,41,20,1,1851,201104431,,,250.0,,1.0,0.0,3.0,3.0,5.0,2.4,3748.993415480455,0.0,216.0,480.0,0.0,22680.0,6,1,2,55.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1128.8872539319277,0.0443204920863699,0.049774570279185526,9450.0,1,1,1_1,1_1_1,1_4_1,1_0_1 -4432,1,43.0,3,366.0,2,111,2,0,52,1.0,0.0,0.0,324.70505271492505,0.0,2867.552029337086,19282.0,0,60,2,1854,201104432,,,304.0,,1.0,0.0,4.0,3.0,4.0,2.3,3262.934485488682,0.0,238.0,1650.0,0.0,16144.0,0,4,3,80.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,3192.257082052011,0.16555632621367133,0.1977364396712098,7019.130434782609,1,1,1_1,1_0_1,1_3_1,1_0_1 -4433,2,82.0,4,0.0,6,221,2,72,78,1.0,0.0,0.0,818.5841665082144,217.2387901012944,0.0,14753.0,70,70,1,1855,201104433,,,230.0,,0.0,1.0,4.0,0.0,2.0,1.5,3573.9651785215615,0.0,600.0,0.0,0.0,11771.0,6,5,1,90.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1035.8229566095088,0.07021100498946037,0.08799787245004748,7847.333333333333,1,1,1_0,1_1_0,1_1_0,1_0_0 -4434,1,44.0,3,246.0,1,400,2,0,56,1.0,0.0,0.0,366.9985679845161,0.0,1598.8774951455268,8372.0,0,50,2,1856,201104434,,,322.0,,1.0,0.0,3.0,0.0,1.0,1.0,3112.336814887061,0.0,269.0,920.0,0.0,9082.0,0,4,3,75.0,0,1.0,1,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1965.876063130043,0.2348155832692359,0.21645849627064995,9082.0,1,1,1_1,1_0_1,1_1_1,1_1_0 -4435,2,52.0,3,0.0,6,112,4,0,42,9.0,0.0,527.4120014341072,1800.8851663180715,52.13730962431066,0.0,32220.0,0,33,1,1857,201104435,,,328.0,,1.0,2.0,5.0,0.0,1.0,1.0,2970.933774159511,0.0,1320.0,0.0,0.0,30086.0,0,1,2,110.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2380.434477376489,0.07388064796326782,0.07912100237241539,30086.0,9,5,9,9_1,9_0,9_0_0 -4436,2,62.0,2,0.0,1,111,2,0,54,9.0,0.0,0.0,666.901856484019,0.0,2829.6291242473026,31949.0,0,50,8,186,201104436,,,361.0,,1.0,2.0,4.0,0.0,1.0,1.0,1822.3104335059131,587.0,265.0,1265.0,0.0,31772.0,0,1,5,100.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,3496.5309807313215,0.10944101476513574,0.11005070441682367,31772.0,9,5,9,9_0,9_2,9_1_0 -4437,1,26.0,3,210.0,4,221,1,0,85,2.0,0.0,0.0,327.43366660328576,0.0,1480.6995933304227,14940.0,0,71,2,1860,201104437,492.0,492.0,,,0.0,0.0,2.0,0.0,1.0,1.0,5091.603836238727,0.0,240.0,852.0,0.0,10900.0,0,7,3,70.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1808.1332599337084,0.12102632261939146,0.16588378531501913,10900.0,2,1,2_1,2_0_1,2_1_1,2_0_1 -4438,2,71.0,1,0.0,8,111,2,77,74,10.0,0.0,0.0,1568.9529858074109,0.0,3215.134093499157,55535.0,50,31,1,1861,201104438,,,1100.0,,0.0,3.0,8.0,0.0,2.0,1.5,1370.18660889268,0.0,1150.0,1850.0,0.0,121721.0,5,5,1,230.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4784.087079306568,0.0861454412407773,0.0393037115970668,81147.33333333333,10,5,10,10_1,10_3,10_0_0 -4439,2,46.0,4,0.0,99,111,2,54,46,7.0,0.0,0.0,634.6504767580815,0.0,1311.8067009797069,19816.0,50,71,1,1862,201104439,,,140.0,,2.0,1.0,4.0,1.0,3.0,1.8,2377.8484950301563,1220.0,0.0,0.0,0.0,40060.0,1,4,3,70.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1946.4571777377882,0.09822654308325536,0.04858854662350944,22255.555555555555,7,4,7,7_1,7_2,7_0_0 -4440,2,61.0,3,0.0,1,111,1,0,78,3.0,31.729120182777642,0.0,409.2920832541072,208.54923849724264,0.0,9530.0,0,50,2,1863,201104440,,,,,0.0,2.0,1.0,0.0,1.0,1.0,1889.9795826341067,0.0,300.0,0.0,0.0,13487.0,0,5,3,16.0,7,5.0,1,5,1,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,649.5704419341275,0.06816059201827152,0.04816270793609606,13487.0,3,2,3_0,3_0_0,3_2_0,3_1_0 -4441,2,55.0,4,0.0,1,111,6,46,22,7.0,2379.684013708323,0.0,1889.5651176897948,0.0,0.0,17672.0,50,70,8,1868,201104441,,,514.0,,2.0,2.0,2.0,0.0,2.0,1.5,2222.4638371795754,0.0,1385.0,0.0,0.0,32960.0,1,1,3,60.0,9,7.0,3,2,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,4269.249131398118,0.24158268059065857,0.12952818966620505,21973.333333333332,7,4,7,7_0,7_3,7_1_0 -4442,2,83.0,3,0.0,7,111,4,0,78,6.0,0.0,0.0,947.2227167623435,0.0,604.2912835660617,9939.0,0,70,2,1869,201104442,,,,338.0,0.0,0.0,2.0,0.0,1.0,1.0,3575.0594485061383,562.0,480.0,0.0,0.0,20677.0,0,5,3,36.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1551.514000328405,0.1561036321891946,0.07503574021030154,20677.0,6,3,6,6_0,6_4,6_0_0 -4443,2,42.0,3,0.0,1,112,2,56,63,3.0,1094.6546463058287,971.5484236944079,532.0797082303393,166.8393907977941,0.0,42997.0,71,31,1,187,201104443,,,70.0,,2.0,0.0,4.0,2.0,4.0,2.3,2945.6470652788253,0.0,390.0,0.0,0.0,32913.0,1,1,2,96.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2765.12216902837,0.06430965344159756,0.08401306988206393,14310.000000000002,3,2,3_0,3_1_0,3_0_0,3_1_0 -4444,2,79.0,2,0.0,7,400,2,71,71,7.0,1218.3982150186616,0.0,1214.233180320518,156.41192887293198,0.0,31050.0,60,70,1,1870,201104444,,,362.0,,0.0,1.0,5.0,0.0,2.0,1.5,1699.5955038023478,0.0,890.0,0.0,0.0,34824.0,5,5,1,150.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2589.0433242121117,0.08338303781681519,0.07434652320848012,23216.0,7,4,7,7_1,7_0,7_0_0 -4445,2,51.0,3,0.0,1,221,5,77,55,7.0,0.0,624.566843803548,1046.423426186334,0.0,0.0,18757.0,50,60,1,1872,201104445,,,300.0,,1.0,5.0,4.0,0.0,2.0,1.5,2394.725197272252,0.0,767.0,0.0,0.0,35778.0,5,1,1,120.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1670.9902699898819,0.08908622220983536,0.046704406897810996,23852.0,7,4,7,7_1,7_1,7_1_0 -4446,2,54.0,4,0.0,1,112,5,56,69,2.0,0.0,346.98157989085996,709.4396109737858,111.22626053186274,0.0,17465.0,71,70,1,1873,201104446,,,127.0,,2.0,6.0,2.0,0.0,3.0,2.0,2304.381340252547,0.0,520.0,0.0,0.0,23330.0,1,1,1,76.0,7,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1167.6474513965084,0.06685642435708608,0.05004918351463816,11665.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -4447,2,55.0,4,0.0,1,112,2,22,45,5.0,4045.4628233041494,0.0,927.728722042643,208.54923849724264,0.0,49790.0,50,41,1,1874,201104447,,,,,2.0,0.0,7.0,0.0,2.0,1.5,2027.3410390169547,0.0,680.0,0.0,0.0,27300.0,4,1,3,120.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5181.740783844036,0.1040719177313524,0.18980735471956175,18200.0,5,3,5,5_1,5_0,5_1_0 -4448,2,75.0,3,0.0,5,111,2,72,72,3.0,0.0,0.0,2046.460416270536,182.4805836850873,0.0,23096.0,50,70,1,1875,201104448,,,429.0,,0.0,2.0,5.0,0.0,2.0,1.5,2862.857869012877,0.0,1500.0,0.0,0.0,20065.0,5,5,1,96.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2228.9409999556233,0.09650766366278245,0.11108602043137918,13376.666666666666,3,2,3_0,3_1_0,3_4_0,3_0_0 -4449,2,37.0,3,0.0,3,111,2,52,38,7.0,3966.1400228472053,0.0,733.9971359690322,97.32297796537989,0.0,52824.0,60,31,1,1876,201104449,,,320.0,,2.0,0.0,6.0,2.0,4.0,2.1,2766.6705419007503,0.0,538.0,0.0,0.0,47461.0,1,1,1,150.0,8,6.0,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4797.460136781618,0.09081970575461187,0.10108215454334332,22600.47619047619,7,4,7,7_1,7_2,7_0_1 -4450,2,57.0,2,0.0,1,111,6,0,43,9.0,2538.3296146222115,735.6009493686231,1043.6948122979734,156.41192887293198,0.0,21946.0,0,20,1,1877,201104450,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2132.71144202283,0.0,765.0,0.0,0.0,32741.0,0,1,1,90.0,8,7.0,1,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4474.03730516174,0.20386572975310943,0.1366493786128017,32741.0,9,5,9,9_1,9_3,9_1_0 -4451,2,59.0,3,0.0,6,111,4,42,46,8.0,0.0,0.0,3533.5549854271253,0.0,0.0,72215.0,20,41,1,1879,201104451,,,364.0,,2.0,2.0,6.0,1.0,3.0,2.0,1442.1370494417372,0.0,2590.0,0.0,0.0,57206.0,1,1,1,140.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3533.5549854271253,0.048931039055973485,0.061768957546885384,28603.0,8,4,8,8_1,8_4,8_0_0 -4452,1,21.0,4,172.0,99,111,1,52,63,3.0,0.0,0.0,291.96168605459644,45.18566834106924,0.0,30841.0,41,50,2,1880,201104452,,,,228.0,2.0,0.0,2.0,0.0,2.0,1.5,3634.644272733626,0.0,214.0,0.0,0.0,19706.0,4,1,3,44.0,8,6.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,337.1473543956657,0.01093179061624674,0.017108868080567628,13137.333333333334,3,2,3_1,3_0_1,3_2_1,3_0_0 -4453,1,67.0,5,352.0,2,111,1,78,77,1.0,0.0,0.0,764.011888741,0.0,0.0,16456.0,60,41,2,1882,201104453,80.0,80.0,,63.0,1.0,0.0,4.0,1.0,4.0,2.5,2990.0863580775576,0.0,560.0,0.0,0.0,20474.0,5,5,3,75.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,764.011888741,0.0464275576531964,0.03731620048554264,8189.6,1,1,1_1,1_0_1,1_4_1,1_0_1 -4454,2,79.0,2,0.0,1,120,5,0,71,3.0,0.0,0.0,0.0,125.12954309834558,0.0,7199.0,0,71,1,1883,201104454,,,200.0,,0.0,2.0,4.0,0.0,1.0,1.0,3383.1561122068415,0.0,0.0,0.0,0.0,13232.0,0,5,5,120.0,0,0.0,1,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,125.12954309834558,0.017381517307729626,0.009456585784336878,13232.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -4455,2,43.0,2,0.0,99,111,2,52,68,7.0,0.0,0.0,759.4997508744253,0.0,1569.8670355986656,19611.0,50,50,2,1884,201104455,,,,500.0,2.0,0.0,2.0,0.0,2.0,1.5,3688.521657604184,1460.0,0.0,0.0,0.0,32932.0,1,1,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2329.366786473091,0.11877858275830355,0.07073262439187085,21954.666666666668,7,4,7,7_0,7_4,7_0_0 -4456,1,35.0,5,258.0,1,111,2,62,46,4.0,0.0,0.0,695.7965415319821,0.0,3475.8206416207104,23138.0,50,60,1,1885,201104456,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1888.0852381420648,0.0,510.0,2000.0,0.0,22746.0,4,1,3,66.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,4171.617183152693,0.1802929027207491,0.18340003443034786,15164.0,4,2,4_1,4_1_1,4_3_1,4_1_0 -4457,2,64.0,2,0.0,7,111,4,0,78,9.0,0.0,0.0,1043.6948122979734,173.79103208103552,0.0,23607.0,0,70,1,1888,201104457,,,254.0,,0.0,1.0,4.0,0.0,1.0,1.0,2818.513083508687,0.0,765.0,0.0,0.0,34860.0,0,5,1,90.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1217.485844379009,0.05157308613457911,0.03492500987891592,34860.0,9,5,9,9_1,9_2,9_0_0 -4458,2,59.0,3,0.0,2,112,6,77,78,4.0,0.0,0.0,914.0856526008394,0.0,2033.3550753481156,16298.0,70,50,1,189,201104458,,,333.0,,0.0,2.0,5.0,0.0,2.0,1.5,1069.5772437011892,0.0,670.0,1170.0,0.0,23090.0,5,5,1,65.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2947.440727948955,0.18084677432500645,0.12765009648977718,15393.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_1 -4459,2,49.0,3,0.0,2,111,1,52,63,6.0,0.0,0.0,859.5133748336251,0.0,432.73966988177847,28099.0,41,50,1,1891,201104459,,,200.0,,2.0,0.0,5.0,2.0,4.0,2.3,2332.0013833882354,0.0,630.0,249.0,0.0,45930.0,1,1,2,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1292.2530447154036,0.04598928946636548,0.028135272038219108,19969.565217391308,6,3,6,6_1,6_3,6_0_1 -4460,0,44.0,2,0.0,4,111,1,0,46,2.0,0.0,0.0,245.5752499524643,0.0,83.41969539889705,56519.0,0,10,2,1892,201104460,,,,,1.0,0.0,5.0,0.0,1.0,1.0,3319.1454399728686,0.0,180.0,48.0,0.0,12154.0,0,1,5,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,328.99494535136137,0.005820961895139004,0.02706886172053327,12154.0,2,1,2_0,2_0_0,2_4_0,2_0_1 -4461,2,50.0,2,0.0,6,111,2,52,21,10.0,0.0,0.0,671.2390165367358,0.0,490.0907104685202,47448.0,60,50,8,1893,201104461,,,,,2.0,2.0,3.0,0.0,2.0,1.5,3499.518242032156,0.0,492.0,282.0,0.0,66915.0,1,1,1,80.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1161.329727005256,0.024475841489741527,0.017355297422181216,44610.0,10,5,10,10_0,10_3,10_0_0 -4462,1,45.0,3,340.0,8,111,6,0,56,3.0,0.0,0.0,436.5782221377143,0.0,1216.5372245672486,24007.0,0,50,1,1894,201104462,,,300.0,,1.0,1.0,3.0,1.0,2.0,1.3,1597.9350416807208,0.0,320.0,700.0,0.0,16871.0,0,1,3,67.0,7,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1653.1154467049628,0.06885972619256728,0.09798562306353878,12977.692307692307,3,2,3_1,3_1_1,3_2_1,3_0_0 -4463,2,58.0,1,0.0,6,211,4,43,43,10.0,0.0,0.0,4978.356039314123,0.0,0.0,51052.0,10,10,1,1896,201104463,,,300.0,,2.0,2.0,6.0,0.0,2.0,1.5,1223.1240905512377,0.0,3649.0,0.0,0.0,57702.0,1,1,1,140.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4978.356039314123,0.09751539683683545,0.08627701014374066,38468.0,10,5,10,10_1,10_1,10_0_0 -4464,2,27.0,4,0.0,1,111,4,0,46,2.0,0.0,0.0,296.5170260263168,0.0,612.893294720027,31942.0,0,31,8,1899,201104464,,,,865.0,1.0,0.0,1.0,0.0,1.0,1.0,4447.466109800105,570.0,0.0,0.0,0.0,11359.0,0,1,3,24.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,909.4103207463438,0.02847067562288973,0.08006077302107086,11359.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -4465,2,36.0,4,0.0,8,111,2,85,67,1.0,0.0,0.0,272.86138883607146,0.0,4170.984769944853,50688.0,60,10,1,19,201104465,,,,468.0,1.0,0.0,4.0,3.0,5.0,2.4,1957.3386844352506,0.0,200.0,2400.0,0.0,15737.0,6,4,3,85.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4443.846158780924,0.08767057604918174,0.2823820397013995,6557.083333333334,1,1,1_0,1_1_0,1_3_0,1_0_0 -4466,2,28.0,3,0.0,2,111,2,0,43,4.0,0.0,0.0,0.0,0.0,0.0,8721.0,0,33,2,190,201104466,,,,,1.0,0.0,2.0,0.0,1.0,1.0,7492.119150756924,0.0,0.0,0.0,0.0,15153.0,0,4,4,30.0,8,7.0,1,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,15153.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -4467,2,88.0,4,0.0,2,120,5,0,78,5.0,0.0,485.77421184720396,613.9381248811608,0.0,0.0,6264.0,0,70,1,1900,201104467,,,80.0,,0.0,4.0,3.0,0.0,1.0,1.0,2459.558228809661,0.0,450.0,0.0,0.0,16842.0,0,5,1,90.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1099.7123367283648,0.1755607178685129,0.06529582809217224,16842.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -4468,2,78.0,1,0.0,1,111,2,0,78,9.0,0.0,0.0,1092.4311485180092,0.0,2258.027927915889,21860.0,0,50,1,1901,201104468,,,132.0,,0.0,3.0,4.0,0.0,1.0,1.0,2117.9862497907534,2100.0,0.0,0.0,0.0,33618.0,0,5,3,80.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3350.459076433898,0.1532689421973421,0.09966265323439522,33618.0,9,5,9,9_1,9_2,9_1_0 -4469,2,45.0,1,0.0,5,111,2,37,37,10.0,0.0,0.0,1742.3281130832688,0.0,4139.564624154677,95477.0,12,12,1,1902,201104469,,,901.0,,2.0,0.0,7.0,3.0,5.0,2.8,2306.9361871324704,92.0,1242.0,2325.0,0.0,170838.0,1,1,1,250.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5881.892737237946,0.06160533675375164,0.034429651115313605,61013.571428571435,10,5,10,10_1,10_4,10_0_0 -4470,2,63.0,3,0.0,4,111,1,0,77,5.0,1110.5192063972174,0.0,261.9469332826286,0.0,187.69431464751835,21997.0,0,42,2,1905,201104470,700.0,700.0,,340.0,0.0,2.0,4.0,0.0,1.0,1.0,2576.3294506765155,0.0,192.0,108.0,0.0,18697.0,0,5,3,127.0,6,4.0,1,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1560.1604543273643,0.07092605602251963,0.08344442714485556,18697.0,5,3,5,5_0,5_2,5_0_1 -4471,2,30.0,2,0.0,7,300,2,0,62,7.0,0.0,0.0,1009.5871386934643,48.661488982689946,0.0,13788.0,0,43,1,1909,201104471,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3748.0020363583194,0.0,740.0,0.0,0.0,22370.0,0,1,3,50.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1058.2486276761542,0.07675142353322847,0.047306599359685036,22370.0,7,4,7,7_1,7_0,7_0_0 -4472,2,42.0,3,0.0,5,111,2,43,42,6.0,0.0,133.24092667809023,372.45579576123754,0.0,2909.2618770365348,52778.0,31,60,1,1911,201104472,,,606.0,,2.0,0.0,5.0,2.0,4.0,2.1,2214.6960053072435,0.0,273.0,1674.0,0.0,44457.0,1,1,2,115.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3414.9585994758627,0.06470420628814777,0.07681486828791557,21170.0,6,3,6,6_1,6_3,6_0_0 -4473,2,35.0,2,0.0,6,111,4,34,53,9.0,0.0,0.0,1637.1683330164287,0.0,0.0,38097.0,10,20,1,1912,201104473,,,260.0,,2.0,0.0,4.0,1.0,3.0,1.8,1298.0478190988058,0.0,1200.0,0.0,0.0,59038.0,1,1,2,90.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.04297368120892534,0.02773075532735575,32798.88888888889,9,5,9,9_1,9_3,9_0_0 -4474,2,58.0,3,0.0,6,111,4,0,48,6.0,0.0,444.1364222603008,845.8703053918215,59.088950907552075,0.0,34594.0,0,50,1,1914,201104474,,,96.0,,1.0,2.0,5.0,0.0,1.0,1.0,1412.2599794617604,0.0,620.0,0.0,0.0,20849.0,0,1,1,112.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1349.0956785596743,0.03899796723592745,0.06470793220584557,20849.0,6,3,6,6_1,6_2,6_0_0 -4475,2,74.0,1,0.0,2,111,2,74,74,10.0,3851.915190189206,0.0,287.8687652220554,0.0,0.0,40381.0,30,41,1,1915,201104475,,,205.0,,0.0,4.0,6.0,0.0,2.0,1.5,1511.9702299685894,0.0,211.0,0.0,0.0,72370.0,5,5,1,145.0,6,5.0,3,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4139.783955411262,0.10251811385085217,0.05720303931755232,48246.666666666664,10,5,10,10_1,10_2,10_0_1 -4476,2,64.0,1,0.0,6,111,2,77,74,10.0,0.0,0.0,716.9798190590349,0.0,1199.980555978158,72112.0,50,12,1,1917,201104476,,,200.0,,0.0,5.0,4.0,0.0,2.0,1.5,1482.7036900167482,1116.0,100.0,0.0,0.0,61037.0,5,5,1,90.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1916.960375037193,0.026583098167256392,0.031406530056149434,40691.333333333336,10,5,10,10_1,10_3,10_0_0 -4477,2,50.0,3,0.0,1,211,4,0,64,6.0,0.0,0.0,1047.7877331305144,0.0,0.0,13463.0,0,42,8,1918,201104477,,,110.0,,1.0,0.0,2.0,0.0,1.0,1.0,2661.8717528234974,0.0,768.0,0.0,0.0,19544.0,0,1,3,35.0,2,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1047.7877331305144,0.0778272103639987,0.05361173419619906,19544.0,6,3,6,6_0,6_1,6_1_0 -4478,2,50.0,2,0.0,7,111,6,37,65,8.0,0.0,0.0,573.00891655575,0.0,729.9223347403492,28553.0,31,60,2,192,201104478,,,390.0,350.0,2.0,2.0,2.0,1.0,3.0,1.8,6262.460340101621,0.0,420.0,420.0,0.0,45392.0,1,1,3,55.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1302.9312512960992,0.045632026452425284,0.028703984210788226,25217.777777777777,8,4,8,8_0,8_2,8_0_0 -4479,2,84.0,2,0.0,1,111,2,0,74,10.0,0.0,0.0,764.011888741,0.0,1981.2177657238049,10949.0,0,20,2,1920,201104479,,,370.0,,0.0,0.0,3.0,0.0,1.0,1.0,2337.0816114453296,0.0,560.0,1140.0,0.0,55073.0,0,5,1,78.0,7,6.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2745.2296544648048,0.2507288021248337,0.04984710574083134,55073.0,10,5,10,10_0,10_2,10_1_0 -4480,2,25.0,2,0.0,1,111,2,0,43,7.0,0.0,0.0,433.8496082493536,0.0,1214.7993142464384,34656.0,0,20,2,1924,201104480,,,350.0,385.0,1.0,0.0,3.0,0.0,1.0,1.0,3361.2098035069707,0.0,318.0,699.0,0.0,24128.0,0,1,3,76.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1648.648922495792,0.04757181793905217,0.06832928226524337,24128.0,7,4,7,7_0,7_3,7_1_0 -4481,2,48.0,3,0.0,5,112,4,43,38,7.0,0.0,0.0,2182.8911106885716,0.0,0.0,53632.0,33,20,1,1925,201104481,,,650.0,,2.0,0.0,6.0,4.0,6.0,3.1,1046.003786868399,0.0,1600.0,0.0,0.0,70853.0,1,1,1,180.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2182.8911106885716,0.040701281150965316,0.030808732314631302,22855.8064516129,7,4,7,7_1,7_1,7_0_0 -4482,2,63.0,3,0.0,1,300,2,0,78,3.0,0.0,0.0,354.7198054868929,0.0,2137.629694596737,18709.0,0,50,1,1926,201104482,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2484.3900239440472,0.0,260.0,1230.0,0.0,13950.0,0,5,5,125.0,0,0.0,1,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2492.3495000836297,0.1332166069850676,0.17866304660097704,13950.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -4483,2,64.0,3,0.0,5,111,2,72,22,1.0,0.0,0.0,3734.335062535751,0.0,668.8063672208015,82432.0,41,43,1,1927,201104483,,,350.0,,1.0,0.0,5.0,1.0,3.0,1.8,5800.630383665267,622.0,2500.0,0.0,0.0,16499.0,5,5,1,160.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4403.1414297565525,0.053415438540330845,0.2668732304840628,9166.111111111111,1,1,1_0,1_1_0,1_3_0,1_0_0 -4484,2,61.0,3,0.0,5,111,1,78,52,9.0,0.0,0.0,679.388133316438,0.0,1404.2783208848336,35827.0,71,71,1,1929,201104484,,,,,3.0,0.0,5.0,1.0,5.0,3.0,4203.516179794963,1306.0,0.0,0.0,0.0,96086.0,5,1,1,100.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2083.666454201272,0.05815911056469344,0.02168543236476981,32028.666666666668,9,5,9,9_1,9_4,9_0_0 -4485,2,86.0,3,0.0,1,221,6,78,78,5.0,2111.5729481638523,0.0,695.7965415319821,281.54147197127753,0.0,20912.0,70,71,1,193,201104485,,,243.0,,0.0,0.0,3.0,0.0,2.0,1.5,5162.07821372362,0.0,510.0,0.0,0.0,27667.0,5,5,1,55.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3088.910961667112,0.14770997330083743,0.11164603902364233,18444.666666666668,5,3,5,5_1,5_1,5_1_0 -4486,2,86.0,3,0.0,1,112,6,0,77,2.0,2538.3296146222115,0.0,315.1549041056625,0.0,208.54923849724264,18900.0,0,70,1,1931,201104486,,,220.0,,0.0,3.0,6.0,0.0,1.0,1.0,2243.1064722878036,0.0,231.0,120.0,0.0,9937.0,0,5,5,140.0,9,0.0,1,4,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3062.0337572251165,0.16201236810714903,0.3081446872522005,9937.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -4487,2,24.0,3,0.0,9,112,2,43,53,7.0,0.0,0.0,955.0148609262501,0.0,364.9611673701746,37150.0,20,20,1,1932,201104487,,,100.0,,2.0,0.0,3.0,0.0,2.0,1.5,2913.0544839761415,0.0,700.0,210.0,0.0,34496.0,4,1,3,70.0,7,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1319.9760282964248,0.035530983265045085,0.03826461120989172,22997.333333333332,7,4,7,7_1,7_1,7_0_0 -4488,2,73.0,2,0.0,1,120,2,75,75,4.0,0.0,1526.718951519784,1028.6874359119893,145.98446694806984,0.0,42316.0,43,20,1,1933,201104488,,,562.0,,0.0,5.0,6.0,0.0,2.0,1.5,1501.6759153699043,0.0,754.0,0.0,0.0,24153.0,5,5,1,195.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2701.3908543798434,0.06383852099394657,0.11184494076842807,16102.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -4489,2,79.0,2,0.0,3,221,2,74,74,8.0,0.0,0.0,1127.7230234538592,0.0,2359.056152463089,32761.0,50,71,1,1935,201104489,,,382.0,,0.0,2.0,4.0,0.0,2.0,1.5,4268.515484307398,332.0,700.0,1152.0,0.0,40118.0,5,5,1,100.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3486.779175916948,0.10643079197573176,0.08691308579482895,26745.333333333332,8,4,8,8_1,8_1,8_0_1 -4490,1,57.0,3,123.0,9,112,4,56,63,4.0,0.0,0.0,163.71683330164288,0.0,0.0,20969.0,50,71,1,1938,201104490,,,27.0,,2.0,1.0,4.0,2.0,4.0,2.1,1813.1855138210651,0.0,120.0,0.0,0.0,33760.0,1,1,2,90.0,7,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,163.71683330164288,0.007807565134324139,0.004849432266043924,16076.190476190475,4,2,4_1,4_1_1,4_1_1,4_0_0 -4491,2,53.0,3,0.0,4,111,2,54,62,8.0,0.0,0.0,472.0502026864036,0.0,1315.5981128534388,50167.0,42,42,8,194,201104491,,,285.0,,3.0,0.0,3.0,1.0,3.0,2.0,2724.877550287974,0.0,346.0,757.0,0.0,53081.0,1,1,2,70.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1787.6483155398423,0.03563394892139937,0.033677743741448773,26540.5,8,4,8,8_0,8_2,8_0_1 -4492,2,42.0,3,0.0,7,112,2,0,34,6.0,0.0,874.3935813249672,955.0148609262501,0.0,0.0,39902.0,0,20,1,1940,201104492,,,320.0,,1.0,0.0,5.0,2.0,3.0,1.6,1651.4277027367818,0.0,700.0,0.0,0.0,30894.0,0,1,2,125.0,6,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1829.4084422512174,0.04584753752321231,0.05921565489257517,19308.75,6,3,6,6_1,6_0,6_0_0 -4493,2,49.0,1,0.0,1,300,2,0,34,10.0,3109.4537779122093,0.0,1263.3482303110109,0.0,0.0,23913.0,0,10,1,1941,201104493,,,414.0,,1.0,0.0,4.0,0.0,1.0,1.0,2613.0455993699843,0.0,926.0,0.0,0.0,44440.0,0,1,1,110.0,0,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4372.80200822322,0.18286296191290174,0.0983978849735198,44440.0,10,5,10,10_1,10_0,10_1_0 -4494,2,66.0,3,0.0,5,112,6,0,74,2.0,574.2970753082753,0.0,560.7301540581268,0.0,151.1981979105009,17615.0,0,31,1,1943,201104494,,,229.0,,0.0,0.0,3.0,0.0,1.0,1.0,1523.1080311876758,0.0,411.0,87.0,0.0,9960.0,0,5,5,90.0,6,0.0,1,8,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1286.225427276903,0.07301875828991786,0.12913909912418706,9960.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -4495,2,72.0,1,0.0,7,111,4,75,74,10.0,0.0,0.0,1500.737638598393,0.0,0.0,36805.0,60,12,1,1944,201104495,,,600.0,,0.0,2.0,4.0,0.0,2.0,1.5,2514.9358486059123,0.0,1100.0,0.0,0.0,78890.0,5,5,1,150.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1500.737638598393,0.04077537396001611,0.019023166923544086,52593.333333333336,10,5,10,10_1,10_3,10_0_0 -4496,2,53.0,3,0.0,2,112,6,46,63,7.0,0.0,0.0,802.2124831780501,0.0,2184.5532732586166,26754.0,50,50,1,1945,201104496,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2038.4528912351848,0.0,588.0,1257.0,0.0,36534.0,1,1,1,90.0,9,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2986.765756436667,0.11163810108532059,0.08175304528484882,24356.0,7,4,7,7_1,7_1,7_0_1 -4497,2,30.0,1,0.0,2,120,5,52,34,8.0,0.0,1061.7636344660316,1364.3069441803573,0.0,0.0,36358.0,42,20,1,1946,201104497,,,,,2.0,0.0,8.0,2.0,4.0,2.1,1396.3644147531732,0.0,1000.0,0.0,0.0,60220.0,1,1,2,176.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2426.0705786463886,0.06672728364174016,0.04028679140894036,28676.190476190473,8,4,8,8_1,8_0,8_0_1 -4498,0,75.0,3,0.0,2,111,1,0,77,3.0,0.0,0.0,586.6519859975537,0.0,1564.1192887293198,23489.0,0,71,1,1947,201104498,,,296.0,,0.0,2.0,3.0,0.0,1.0,1.0,4041.5501456789,0.0,430.0,900.0,0.0,13034.0,0,5,5,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2150.7712747268733,0.09156504213576029,0.16501237338705488,13034.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -4499,2,32.0,2,0.0,9,112,4,22,42,6.0,0.0,0.0,1923.6727912943038,0.0,0.0,55670.0,50,20,1,1948,201104499,,,,,2.0,0.0,7.0,3.0,5.0,2.4,2183.3973947191403,0.0,1410.0,0.0,0.0,51212.0,1,1,2,140.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1923.6727912943038,0.03455492709348489,0.037562930393155974,21338.333333333336,6,3,6,6_1,6_0,6_0_0 -4500,2,67.0,3,0.0,5,111,2,0,77,3.0,0.0,0.0,638.4956498764072,0.0,0.0,16364.0,0,50,2,1949,201104500,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3315.959928075298,0.0,468.0,0.0,0.0,14253.0,0,5,1,70.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,638.4956498764072,0.039018311529968666,0.04479728126544638,14253.0,3,2,3_0,3_0_0,3_2_0,3_0_0 -4501,2,70.0,2,0.0,5,111,2,78,78,8.0,1269.1648073111057,0.0,845.8703053918215,104.27461924862132,0.0,28563.0,71,50,1,1951,201104501,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1677.0151725551343,0.0,620.0,0.0,0.0,37160.0,5,5,1,120.0,6,4.0,3,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2219.309731951548,0.07769876175302133,0.05972308213002014,24773.333333333332,7,4,7,7_1,7_2,7_0_0 -4502,2,48.0,1,0.0,2,111,2,37,22,9.0,0.0,0.0,1637.1683330164287,0.0,3823.4027057827816,126254.0,10,20,1,1952,201104502,,,740.0,,2.0,3.0,5.0,2.0,4.0,2.1,1407.4542794390497,0.0,1200.0,2200.0,0.0,69156.0,1,1,2,150.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,5460.57103879921,0.043250677513577473,0.07896019201225071,32931.42857142857,9,5,9,9_1,9_2,9_0_1 -4503,2,66.0,3,0.0,8,300,4,0,78,5.0,0.0,0.0,1377.950013622161,144.24655662725948,0.0,76110.0,0,71,2,1953,201104503,,,288.0,370.0,0.0,1.0,3.0,0.0,1.0,1.0,3438.2204272905174,0.0,1010.0,0.0,0.0,18096.0,0,5,3,45.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1522.1965702494203,0.01999995493692577,0.08411784760441093,18096.0,5,3,5,5_0,5_0,5_0_0 -4504,2,61.0,3,0.0,1,111,2,0,86,8.0,0.0,0.0,682.1534720901786,0.0,2085.4923849724264,30884.0,0,12,2,1954,201104504,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2981.4401559910916,0.0,500.0,1200.0,0.0,25846.0,0,6,1,155.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2767.645857062605,0.08961422927932279,0.10708217353024085,25846.0,8,4,8,8_0,8_4,8_1_0 -4505,2,66.0,4,0.0,4,111,2,0,75,4.0,4124.785623761094,0.0,491.1504999049286,0.0,0.0,32609.0,0,41,1,1955,201104505,,,,,0.0,0.0,5.0,0.0,1.0,1.0,1562.070328832235,0.0,360.0,0.0,0.0,15282.0,0,5,1,130.0,4,4.0,1,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4615.9361236660225,0.14155405328792733,0.3020505250403103,15282.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -4506,2,48.0,3,0.0,5,112,6,0,62,4.0,0.0,0.0,1276.9912997528145,43.44775802025888,0.0,11022.0,0,50,1,1956,201104506,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1631.0900095946777,0.0,936.0,0.0,0.0,16284.0,0,1,1,80.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1320.4390577730733,0.11980031371557551,0.08108812685906862,16284.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -4507,1,46.0,2,260.0,99,111,1,85,64,2.0,0.0,0.0,245.5752499524643,0.0,0.0,35678.0,71,50,2,1957,201104507,,,,,2.0,0.0,4.0,5.0,7.0,3.4,1376.9451709370053,0.0,180.0,0.0,0.0,31870.0,6,1,3,86.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,245.5752499524643,0.006883100228501158,0.007705530277767942,9373.529411764706,1,1,1_1,1_0_1,1_4_1,1_0_0 -4508,2,63.0,3,0.0,3,111,2,77,74,8.0,1578.5237290931877,0.0,481.6003512956661,0.0,651.7163703038832,64592.0,50,50,1,1958,201104508,,,303.0,,0.0,1.0,3.0,0.0,2.0,1.5,838.9478326382956,0.0,353.0,375.0,0.0,42899.0,5,5,1,80.0,7,5.0,3,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2711.8404506927372,0.04198415362107904,0.063214537651058,28599.333333333332,8,4,8,8_1,8_2,8_0_1 -4509,2,74.0,3,0.0,6,120,2,77,77,6.0,0.0,624.566843803548,1562.131451086509,0.0,0.0,39420.0,71,71,1,196,201104509,,,384.0,,0.0,2.0,5.0,0.0,2.0,1.5,5417.544892900689,0.0,1145.0,0.0,0.0,30335.0,5,5,1,90.0,0,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2186.698294890057,0.05547179844977313,0.0720849940626358,20223.333333333332,6,3,6,6_1,6_1,6_0_0 -4510,2,47.0,3,0.0,7,112,2,63,43,5.0,0.0,0.0,2971.4621437297596,0.0,896.7596628008815,66083.0,50,33,1,1961,201104510,,,770.0,,2.0,0.0,7.0,3.0,5.0,3.0,2333.767248980385,834.0,1860.0,0.0,0.0,56861.0,1,1,1,130.0,5,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3868.221806530641,0.05853580809785635,0.06802943681135824,18953.666666666668,5,3,5,5_1,5_0,5_0_0 -4511,2,53.0,3,0.0,1,111,2,34,34,10.0,0.0,0.0,736.7257498573929,0.0,1147.0208117348345,43323.0,20,30,1,1962,201104511,,,420.0,,2.0,0.0,7.0,0.0,2.0,1.5,1539.7693496644854,0.0,540.0,660.0,0.0,67585.0,1,1,2,121.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1883.7465615922274,0.04348144315011027,0.027872258068983167,45056.666666666664,10,5,10,10_1,10_3,10_1_0 -4512,2,78.0,2,0.0,6,112,4,75,75,9.0,0.0,832.755791738064,3410.767360450893,0.0,0.0,20394.0,50,50,1,1963,201104512,,,500.0,,0.0,2.0,5.0,0.0,2.0,1.5,1711.7091980582418,0.0,2500.0,0.0,0.0,43766.0,5,5,1,185.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4243.523152188957,0.20807703992296545,0.09695935548574137,29177.333333333332,9,5,9,9_1,9_0,9_0_0 -4513,2,80.0,3,0.0,1,120,2,71,71,3.0,1689.5756497329096,0.0,646.6814915414893,234.61789330939797,0.0,19958.0,71,71,1,1965,201104513,,,85.0,,0.0,3.0,3.0,0.0,2.0,1.5,3825.7805961845966,0.0,474.0,0.0,0.0,20597.0,5,5,5,58.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2570.875034583797,0.12881426167871515,0.12481793632974691,13731.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -4514,2,25.0,2,0.0,9,111,1,43,43,8.0,0.0,0.0,777.6549581828036,0.0,0.0,45104.0,20,20,2,1966,201104514,,,,715.0,2.0,0.0,3.0,0.0,2.0,1.5,2763.4249729998555,0.0,570.0,0.0,0.0,41594.0,1,1,3,72.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,777.6549581828036,0.017241374560633283,0.01869632538786372,27729.333333333332,8,4,8,8_0,8_3,8_0_0 -4515,2,60.0,3,0.0,3,221,2,52,78,9.0,0.0,0.0,1077.8024859024822,3524.4821306034005,3524.4821306034005,30694.0,50,70,1,1967,201104515,,,160.0,,1.0,3.0,4.0,0.0,2.0,1.5,1474.0324055547333,0.0,790.0,2028.0,0.0,52443.0,1,5,2,98.0,1,2.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,8126.766747109283,0.2647672752690846,0.15496380350302771,34962.0,9,5,9,9_1,9_1,9_0_1 -4516,2,36.0,3,0.0,2,111,5,0,63,3.0,0.0,41.637789586903196,204.6460416270536,479.663248543658,0.0,12602.0,0,50,1,1968,201104516,,,130.0,,1.0,0.0,3.0,0.0,1.0,1.0,2442.6601893408797,0.0,150.0,0.0,0.0,13815.0,0,1,1,44.0,6,5.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,725.9470797576148,0.057605703837296844,0.05254774373924103,13815.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -4517,2,83.0,3,0.0,1,112,2,0,71,3.0,1427.810408224994,0.0,477.50743046312505,135.55700502320772,0.0,12053.0,0,70,1,1969,201104517,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2042.6844755730424,0.0,350.0,0.0,0.0,14320.0,0,5,1,120.0,8,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2040.8748437113268,0.16932505133255843,0.14251919299660104,14320.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -4518,2,72.0,3,0.0,4,400,2,0,77,4.0,1205.7065669455505,0.0,147.34514997147858,0.0,0.0,15329.0,0,70,1,1970,201104518,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2078.779141374056,0.0,108.0,0.0,0.0,16289.0,0,5,5,80.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1353.0517169170291,0.08826744842566567,0.08306536416704703,16289.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -4519,2,71.0,1,0.0,6,112,2,75,74,9.0,0.0,0.0,4638.643610213215,194.64595593075978,0.0,36189.0,50,60,1,1971,201104519,,,370.0,,0.0,3.0,7.0,0.0,2.0,1.5,1702.0883422565312,0.0,3400.0,0.0,0.0,50448.0,5,5,1,150.0,6,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4833.289566143974,0.1335568699368309,0.09580735740057038,33632.0,9,5,9,9_1,9_0,9_0_0 -4520,2,59.0,3,0.0,1,112,2,52,52,7.0,2062.392811880547,0.0,1073.7095650699412,145.98446694806984,0.0,27661.0,50,50,1,1973,201104520,,,270.0,,2.0,2.0,4.0,0.0,2.0,1.5,1218.198203195684,0.0,787.0,0.0,0.0,33090.0,1,1,1,100.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3282.086843898558,0.11865394757595742,0.09918666799330789,22060.0,7,4,7,7_1,7_0,7_1_0 -4521,1,69.0,4,118.0,1,112,2,0,77,2.0,0.0,0.0,2095.575466261029,0.0,0.0,22876.0,0,20,2,1976,201104521,,,377.0,,0.0,2.0,4.0,0.0,1.0,1.0,2883.4030132772364,0.0,1536.0,0.0,0.0,11996.0,0,5,3,80.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,2095.575466261029,0.09160585182116755,0.17468951869465063,11996.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -4522,2,33.0,2,0.0,7,111,2,38,54,10.0,0.0,0.0,1091.4455553442858,0.0,0.0,42872.0,31,60,2,1977,201104522,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3943.1616321212814,0.0,800.0,0.0,0.0,88200.0,1,1,2,93.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1091.4455553442858,0.025458237435722286,0.012374666160366053,58800.0,10,5,10,10_0,10_3,10_0_0 -4523,2,74.0,3,0.0,2,111,1,0,77,6.0,0.0,0.0,143.5766652337955,0.0,296.7693848118026,12408.0,0,70,2,1980,201104523,,,,360.0,0.0,1.0,4.0,0.0,1.0,1.0,3073.252259963689,276.0,0.0,0.0,0.0,19460.0,0,5,3,75.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,440.3460500455981,0.03548888217646664,0.022628265675518913,19460.0,6,3,6,6_0,6_4,6_0_1 -4524,1,48.0,3,280.0,5,111,1,0,56,5.0,0.0,0.0,1136.4676845022375,0.0,0.0,11198.0,0,71,2,1981,201104524,245.0,245.0,,82.0,2.0,0.0,5.0,3.0,4.0,2.1,2445.563432032566,0.0,833.0,0.0,0.0,36907.0,0,4,3,91.0,8,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1136.4676845022375,0.10148845191125536,0.030792740794489865,17574.761904761905,5,3,5,5_0,5_3,5_0_0 -4525,2,52.0,3,0.0,1,111,2,85,37,7.0,0.0,0.0,1477.5444205473268,0.0,1732.696589847924,35927.0,50,60,1,1983,201104525,,,515.0,,1.0,1.0,4.0,1.0,3.0,2.0,2566.2363116691304,0.0,1083.0,997.0,0.0,43748.0,7,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3210.2410103952507,0.08935455257592481,0.07338029190809296,21874.0,7,4,7,7_1,7_4,7_1_0 -4526,2,71.0,3,0.0,5,112,2,77,78,7.0,0.0,0.0,1163.7538233858447,0.0,1793.5234510762866,39180.0,70,50,1,1984,201104526,,,380.0,,0.0,2.0,7.0,0.0,2.0,1.5,1203.4354965269504,0.0,853.0,1032.0,0.0,33614.0,5,5,1,150.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2957.2772744621316,0.07547925662231066,0.0879775472857182,22409.333333333332,7,4,7,7_1,7_0,7_0_0 -4527,2,27.0,2,0.0,4,111,1,56,35,7.0,0.0,0.0,477.50743046312505,0.0,0.0,40145.0,60,20,2,1985,201104527,,,,450.0,2.0,0.0,4.0,0.0,2.0,1.5,2898.17901040222,0.0,350.0,0.0,0.0,32863.0,4,4,3,72.0,7,5.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,477.50743046312505,0.011894567952749409,0.014530244666132886,21908.666666666668,7,4,7,7_0,7_2,7_0_1 -4528,1,62.0,4,218.0,7,111,2,85,78,1.0,0.0,0.0,395.6490138123036,0.0,1564.1192887293198,29483.0,71,71,2,1987,201104528,,,,580.0,0.0,4.0,3.0,1.0,3.0,2.0,3145.165219357374,0.0,290.0,900.0,0.0,13846.0,6,5,3,72.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1959.7683025416234,0.06647112921146503,0.1415403945212786,6923.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -4529,2,46.0,2,0.0,5,111,2,0,37,9.0,0.0,0.0,900.4425831590357,0.0,1042.7461924862132,38788.0,0,41,2,1989,201104529,,,,444.0,1.0,0.0,3.0,1.0,2.0,1.5,3000.940124795162,0.0,660.0,600.0,0.0,49527.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1943.1887756452488,0.050097679066856984,0.03923493802663696,33018.0,9,5,9,9_0,9_4,9_0_0 -4530,2,66.0,3,0.0,6,400,1,0,77,4.0,0.0,0.0,327.43366660328576,53.87521994512101,0.0,25419.0,0,41,2,1990,201104530,,,,,0.0,2.0,3.0,0.0,1.0,1.0,6663.338709148836,0.0,240.0,0.0,0.0,15389.0,0,5,1,83.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,381.30888654840675,0.015000939712357164,0.02477801589111747,15389.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -4531,1,47.0,3,146.0,3,111,2,62,56,2.0,0.0,0.0,1364.3069441803573,0.0,2709.402190143344,40694.0,71,60,1,1991,201104531,,,700.0,,2.0,6.0,5.0,0.0,5.0,3.0,1510.825289593415,0.0,1000.0,1559.0,0.0,29542.0,1,1,3,110.0,9,7.0,5,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,4073.709134323701,0.10010589114669734,0.1378955092520378,9847.333333333334,1,1,1_1,1_1_1,1_3_1,1_0_1 -4532,2,68.0,3,0.0,7,111,2,77,74,5.0,0.0,0.0,442.03544991443573,0.0,2554.7281715912222,38424.0,41,41,8,1992,201104532,,,,760.0,0.0,4.0,5.0,0.0,2.0,1.5,1925.0969944750232,0.0,324.0,1470.0,0.0,27027.0,5,5,3,127.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2996.763621505658,0.07799197432608937,0.11088036487607424,18018.0,5,3,5,5_0,5_3,5_0_0 -4533,2,55.0,4,0.0,4,111,1,0,68,4.0,0.0,0.0,573.00891655575,111.22626053186274,0.0,12370.0,0,71,8,1993,201104533,,,,391.0,1.0,4.0,5.0,0.0,1.0,1.0,2978.4534928140965,0.0,420.0,0.0,0.0,16360.0,0,1,3,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,684.2351770876128,0.05531408060530418,0.04182366608114992,16360.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -4534,2,28.0,4,0.0,9,112,4,48,52,5.0,0.0,0.0,1013.6800595260055,0.0,0.0,38506.0,43,50,1,1995,201104534,,,281.0,,2.0,0.0,5.0,0.0,2.0,1.5,2232.3082087831835,0.0,743.0,0.0,0.0,26373.0,4,1,2,150.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1013.6800595260055,0.026325249559185724,0.03843628178538678,17582.0,5,3,5,5_1,5_0,5_0_0 -4535,2,67.0,2,0.0,6,112,2,72,78,5.0,0.0,0.0,463.8643610213215,0.0,0.0,26481.0,71,70,1,1996,201104535,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2567.619354953218,0.0,340.0,0.0,0.0,25103.0,5,5,1,79.0,10,4.0,3,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,463.8643610213215,0.01751687477894798,0.018478443254643727,16735.333333333332,4,2,4_0,4_1_0,4_2_0,4_0_0 -4536,2,34.0,2,0.0,8,112,2,65,43,10.0,0.0,0.0,886.7995137172322,0.0,1529.3610823131125,70445.0,50,33,1,1997,201104536,,,200.0,,2.0,0.0,5.0,2.0,4.0,2.1,1663.2026428190782,0.0,650.0,880.0,0.0,88047.0,1,1,2,140.0,9,1.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2416.160596030345,0.03429853922961665,0.027441714039437404,41927.142857142855,10,5,10,10_1,10_1,10_0_0 -4537,2,71.0,2,0.0,5,300,2,78,75,9.0,1310.4126635487166,0.0,941.3717914844465,55.61313026593137,0.0,49824.0,60,41,1,1998,201104537,,,300.0,,0.0,6.0,6.0,0.0,2.0,1.5,1440.926334194772,0.0,690.0,0.0,0.0,44444.0,5,5,1,130.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2307.3975852990943,0.04631096630738388,0.05191696483887801,29629.333333333332,9,5,9,9_1,9_0,9_0_0 -4539,2,77.0,3,0.0,5,300,2,71,71,5.0,3490.203220105541,0.0,798.1195623455089,187.69431464751835,0.0,22234.0,50,70,1,2,201104539,,,334.0,,0.0,6.0,6.0,0.0,2.0,1.5,656.7065594434698,0.0,585.0,0.0,0.0,26566.0,5,5,1,150.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4476.017097098568,0.20131407291079284,0.168486678351975,17710.666666666668,5,3,5,5_1,5_0,5_0_0 -4540,2,56.0,4,0.0,1,112,2,0,13,6.0,0.0,0.0,2728.6138883607146,0.0,0.0,23286.0,0,41,1,20,201104540,,,,,2.0,0.0,4.0,2.0,3.0,2.0,2315.6380812529665,0.0,2000.0,0.0,0.0,39775.0,0,1,1,120.0,9,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2728.6138883607146,0.11717829976641392,0.0686012291228338,19887.5,6,3,6,6_1,6_0,6_1_0 -4541,2,34.0,2,0.0,2,221,2,0,47,9.0,0.0,0.0,98.23009998098573,0.0,0.0,19329.0,0,31,2,2001,201104541,,,,353.0,1.0,0.0,4.0,0.0,1.0,1.0,6901.72750457334,0.0,72.0,0.0,0.0,34598.0,0,1,4,90.0,1,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,98.23009998098573,0.005082006310775815,0.0028391843453663716,34598.0,9,5,9,9_0,9_1,9_0_1 -4542,2,63.0,1,0.0,6,112,2,75,74,10.0,0.0,0.0,3956.490138123036,0.0,0.0,63601.0,41,50,1,2002,201104542,,,660.0,,0.0,2.0,6.0,0.0,2.0,1.5,791.475034861362,0.0,2900.0,0.0,0.0,99398.0,5,5,1,160.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3956.490138123036,0.06220798632290429,0.03980452461943939,66265.33333333333,10,5,10,10_1,10_0,10_0_0 -4543,2,65.0,2,0.0,4,111,4,21,74,9.0,0.0,0.0,673.665874919439,0.0,1392.4505555481314,33776.0,50,70,2,2003,201104543,,,,590.0,1.0,0.0,2.0,0.0,2.0,1.5,1834.4144089118427,1295.0,0.0,0.0,0.0,44814.0,1,5,3,68.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2066.1164304675704,0.06117114017253583,0.04610426274083033,29876.0,9,5,9,9_0,9_2,9_0_1 -4544,2,54.0,4,0.0,3,111,1,0,68,2.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,29654.0,0,71,2,2004,201104544,,,300.0,268.0,1.0,5.0,3.0,1.0,2.0,1.3,2401.073368598065,400.0,0.0,0.0,0.0,13760.0,0,4,3,75.0,5,4.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,638.1826812255044,0.02152096449806112,0.04637955532162096,10584.615384615385,2,1,2_0,2_0_0,2_2_0,2_0_1 -4545,2,56.0,3,0.0,3,111,1,0,46,8.0,0.0,0.0,654.8673332065715,0.0,0.0,36516.0,0,50,2,2006,201104545,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2763.213162922315,0.0,480.0,0.0,0.0,35454.0,0,1,2,65.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,654.8673332065715,0.01793370942070795,0.018470901258153424,27272.30769230769,8,4,8,8_0,8_4,8_0_1 -4546,2,36.0,3,0.0,9,112,2,42,43,8.0,0.0,208.188947934516,600.2950554393572,0.0,1442.4655662725947,40260.0,20,33,1,2008,201104546,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1379.8995082009496,0.0,440.0,830.0,0.0,53200.0,1,1,2,100.0,8,1.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2250.949569646468,0.055910322147204865,0.0423110821362118,25333.333333333332,8,4,8,8_1,8_1,8_0_0 -4547,2,78.0,3,0.0,6,111,4,0,74,10.0,0.0,0.0,4092.920832541072,0.0,0.0,50989.0,0,71,2,2015,201104547,,,,,0.0,1.0,6.0,0.0,1.0,1.0,3603.2088050407006,0.0,3000.0,0.0,0.0,111612.0,0,5,1,190.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,4092.920832541072,0.08027066293790959,0.03667097473874737,111612.0,10,5,10,10_0,10_3,10_0_0 -4548,2,52.0,2,0.0,6,300,4,78,55,6.0,991.5350057118013,0.0,1560.7671441423288,0.0,0.0,29141.0,71,41,1,2016,201104548,,,,,1.0,1.0,4.0,0.0,3.0,2.0,2264.6654833716316,0.0,1144.0,0.0,0.0,42761.0,7,1,1,110.0,0,0.0,5,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2552.30214985413,0.08758457670821626,0.05968761604859873,21380.5,6,3,6,6_1,6_0,6_0_0 -4549,2,73.0,3,0.0,4,111,1,0,75,5.0,0.0,0.0,28.650445827787504,0.0,53.87521994512101,10886.0,0,60,2,2019,201104549,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3122.059164126389,0.0,21.0,31.0,0.0,17777.0,0,5,1,47.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,82.52566577290851,0.007580898931922516,0.004642271799117315,17777.0,5,3,5,5_0,5_3,5_0_1 -4550,2,46.0,2,0.0,4,112,2,43,43,9.0,0.0,0.0,286.504458277875,0.0,1668.3939079779411,33103.0,50,20,1,2020,201104550,,,100.0,,2.0,0.0,3.0,1.0,3.0,1.8,1787.430834643743,0.0,210.0,960.0,0.0,56807.0,1,1,2,60.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1954.8983662558162,0.05905502118405632,0.034412983721298716,31559.444444444445,9,5,9,9_1,9_2,9_0_1 -4551,2,47.0,3,0.0,5,112,2,52,42,3.0,3014.2664173638764,0.0,1717.5646930581681,278.0656513296568,222.57703860885192,55189.0,60,43,1,2021,201104551,,,550.0,,3.0,0.0,6.0,3.0,5.0,2.8,2231.159505155138,207.0,1180.0,0.0,0.0,35760.0,1,1,1,154.0,7,0.0,4,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5232.4738003605535,0.0948100853496268,0.14632197428301325,12771.428571428572,3,2,3_0,3_1_0,3_0_0,3_0_0 -4552,2,70.0,3,0.0,6,300,5,71,11,9.0,0.0,388.6193694777632,1062.9328226766627,135.55700502320772,166.66396610807752,16412.0,50,33,1,2022,201104552,,,240.0,,1.0,1.0,4.0,0.0,2.0,1.5,3052.0573343214746,155.0,720.0,0.0,0.0,50455.0,5,5,5,90.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1753.7731632857112,0.10685919834789856,0.0347591549556181,33636.666666666664,9,5,9,9_1,9_0,9_0_0 -4553,1,50.0,2,237.0,7,112,2,85,62,2.0,0.0,0.0,2226.548932902343,97.32297796537989,0.0,21830.0,71,50,1,2023,201104553,,,69.0,214.0,1.0,3.0,5.0,1.0,3.0,2.0,1784.4527124706358,0.0,1632.0,0.0,0.0,22966.0,6,1,3,100.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2323.871910867723,0.10645313380062862,0.10118749067611786,11483.0,2,1,2_1,2_1_1,2_1_1,2_0_0 -4554,2,78.0,2,0.0,5,211,2,78,77,5.0,0.0,0.0,1735.3984329974144,0.0,0.0,18845.0,70,70,1,2025,201104554,,,320.0,,0.0,2.0,4.0,0.0,2.0,1.5,1508.8689436035922,0.0,1272.0,0.0,0.0,26146.0,5,5,1,87.0,3,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1735.3984329974144,0.09208800387356934,0.06637338151141338,17430.666666666668,5,3,5,5_1,5_1,5_0_0 -4555,2,49.0,1,0.0,8,111,2,43,22,10.0,4132.717903806788,0.0,2766.8144827977644,145.98446694806984,0.0,102416.0,33,41,1,2027,201104555,,,840.0,,2.0,0.0,5.0,2.0,4.0,2.3,2314.9123478053175,0.0,2028.0,0.0,0.0,93191.0,1,1,2,160.0,6,4.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,7045.516853552623,0.06879312659694406,0.0756029751108221,40517.82608695653,10,5,10,10_1,10_2,10_0_0 -4556,2,40.0,4,0.0,7,111,6,55,63,7.0,0.0,333.10231669522557,1459.8084302729822,0.0,0.0,58166.0,50,50,1,203,201104556,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1803.795943060611,0.0,1070.0,0.0,0.0,46894.0,1,1,2,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1792.9107469682076,0.030824033747691222,0.038233265385085674,22330.47619047619,7,4,7,7_1,7_4,7_0_0 -4557,2,65.0,3,0.0,5,300,2,78,78,4.0,0.0,0.0,682.1534720901786,0.0,2085.4923849724264,30461.0,70,70,1,2030,201104557,,,232.0,,0.0,1.0,4.0,0.0,2.0,1.5,1219.1313536999733,0.0,500.0,1200.0,0.0,23089.0,5,5,1,90.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2767.645857062605,0.09085866705172532,0.11986858924434168,15392.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -4558,1,38.0,2,34.0,99,111,4,0,52,5.0,553.6731471894699,0.0,474.77881657476433,0.0,0.0,19368.0,0,50,2,2031,201104558,,,,307.0,1.0,0.0,2.0,0.0,1.0,1.0,2910.6810525370556,0.0,348.0,0.0,0.0,16932.0,0,1,3,52.0,9,7.0,1,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1028.4519637642343,0.05310057640253171,0.060740134878586954,16932.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -4559,2,61.0,3,0.0,1,120,2,0,68,9.0,1142.2483265799951,0.0,278.3186166127929,104.27461924862132,0.0,21912.0,0,50,1,2033,201104559,,,280.0,,1.0,2.0,5.0,0.0,1.0,1.0,1569.7435752285385,0.0,204.0,0.0,0.0,29320.0,0,5,2,135.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1524.8415624414095,0.06958933746081643,0.05200687457167154,29320.0,9,5,9,9_1,9_1,9_1_0 -4560,2,62.0,3,0.0,6,111,5,77,42,8.0,0.0,353.92121148867716,819.9484734523948,104.27461924862132,0.0,53598.0,41,20,1,2036,201104560,,,250.0,,2.0,1.0,5.0,1.0,3.0,2.0,1924.2503904486305,0.0,601.0,0.0,0.0,55016.0,6,1,2,98.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1278.1443041896932,0.023846865632853712,0.023232228882319565,27508.0,8,4,8,8_1,8_3,8_0_0 -4561,1,71.0,4,149.0,4,112,1,0,77,4.0,0.0,0.0,245.5752499524643,187.69431464751835,0.0,9731.0,0,70,8,2039,201104561,,,,78.0,0.0,7.0,3.0,0.0,1.0,1.0,2120.7770849394246,0.0,180.0,0.0,0.0,14878.0,0,5,3,70.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,433.2695645999827,0.04452467008529264,0.029121492445219967,14878.0,3,2,3_1,3_0_1,3_1_1,3_0_1 -4562,2,27.0,3,0.0,9,112,2,46,46,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,46581.0,20,42,1,204,201104562,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3304.5376843122144,0.0,1200.0,0.0,0.0,50941.0,1,1,2,100.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1637.1683330164287,0.03514669785999504,0.032138519719212985,28300.555555555555,8,4,8,8_1,8_0,8_0_0 -4563,2,52.0,4,0.0,7,111,2,54,62,7.0,0.0,416.377895869032,1705.3836802254466,0.0,0.0,35335.0,42,50,1,2040,201104563,,,300.0,,2.0,1.0,4.0,1.0,3.0,2.0,2177.5103913848857,0.0,1250.0,0.0,0.0,47636.0,1,1,2,97.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2121.7615760944786,0.0600470235204324,0.04454113645340664,23818.0,7,4,7,7_1,7_3,7_0_0 -4564,2,57.0,3,0.0,1,112,2,77,48,6.0,1158.112886671384,1110.341055650752,822.3049908921528,417.0984769944853,487.0888815932846,45808.0,71,50,1,2041,201104564,,,191.0,,1.0,2.0,4.0,0.0,2.0,1.5,4155.208492757215,453.0,430.0,0.0,0.0,30372.0,5,1,1,128.0,5,0.0,3,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3994.9462918020586,0.08721066826323041,0.13153385657191027,20248.0,6,3,6,6_1,6_0,6_1_0 -4565,2,55.0,1,0.0,5,212,2,75,34,9.0,2349.5413495346847,0.0,776.2906512386232,38.23402705782782,0.0,27079.0,33,31,1,2044,201104565,,,234.0,,1.0,4.0,8.0,0.0,2.0,1.5,1377.529537101352,0.0,569.0,0.0,0.0,50840.0,5,1,1,150.0,2,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3164.066027831136,0.1168457486550883,0.06223575979211519,33893.333333333336,9,5,9,9_1,9_0,9_0_0 -4566,1,42.0,4,272.0,99,211,1,0,68,2.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,14761.0,0,50,2,2046,201104566,,,420.0,,1.0,0.0,4.0,2.0,3.0,1.8,1886.5808172132975,600.0,0.0,0.0,0.0,21814.0,0,4,3,70.0,3,3.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,957.2740218382565,0.06485156980138584,0.04388347033273387,12118.888888888889,2,1,2_1,2_0_1,2_1_1,2_0_0 -4567,2,36.0,2,0.0,9,120,2,55,67,5.0,0.0,0.0,1146.0178331115,97.32297796537989,0.0,29304.0,71,71,1,2047,201104567,,,,590.0,2.0,0.0,3.0,2.0,4.0,2.1,3881.280221706122,0.0,840.0,0.0,0.0,37641.0,1,1,3,67.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1243.34081107688,0.04242904760704614,0.03303155631032332,17924.285714285714,5,3,5,5_1,5_0,5_0_0 -4568,2,55.0,2,0.0,99,111,1,37,47,9.0,0.0,0.0,2455.752499524643,0.0,0.0,59624.0,42,50,2,205,201104568,999999.0,1320.0,,,3.0,0.0,4.0,1.0,3.0,2.0,2377.7807919462157,0.0,1800.0,0.0,0.0,72209.0,1,1,1,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2455.752499524643,0.04118731550256009,0.034008953170998675,36104.5,9,5,9,9_0,9_4,9_0_0 -4569,1,65.0,5,225.0,5,111,1,0,86,1.0,0.0,0.0,491.1504999049286,0.0,347.58206416207105,3128.0,0,71,2,2050,201104569,200.0,200.0,,,0.0,1.0,3.0,0.0,1.0,1.0,5154.730301909687,0.0,360.0,200.0,0.0,7090.0,0,6,3,60.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,838.7325640669997,0.268137008972826,0.11829796390225665,7090.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -4570,2,89.0,3,0.0,2,112,1,71,78,3.0,0.0,0.0,0.0,304.13430614181215,0.0,20780.0,71,50,2,2051,201104570,,,600.0,,0.0,3.0,5.0,0.0,2.0,1.5,3183.1960141931527,0.0,0.0,0.0,0.0,19040.0,6,5,5,106.0,7,0.0,3,4,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,304.13430614181215,0.01463591463627585,0.015973440448624587,12693.333333333334,2,1,2_0,2_0_0,2_0_0,2_0_1 -4571,2,60.0,3,0.0,5,111,1,0,21,9.0,0.0,0.0,93.63695558725793,0.0,193.54525096421906,30158.0,0,44,2,2052,201104571,,,,,1.0,1.0,3.0,0.0,1.0,1.0,3386.4074615898953,180.0,0.0,0.0,0.0,32740.0,0,1,2,60.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,287.182206551477,0.009522587921993403,0.00877160068880504,32740.0,9,5,9,9_0,9_3,9_0_0 -4572,2,53.0,2,0.0,4,112,2,75,54,10.0,0.0,0.0,163.71683330164288,0.0,0.0,54837.0,50,31,1,2053,201104572,,,126.0,,1.0,2.0,6.0,0.0,2.0,1.5,1967.4412910331587,0.0,120.0,0.0,0.0,64355.0,5,1,1,110.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,163.71683330164288,0.002985517685169555,0.002543964467432878,42903.333333333336,10,5,10,10_1,10_0,10_0_1 -4573,2,83.0,3,0.0,5,111,4,78,78,8.0,0.0,0.0,1398.414617784866,135.55700502320772,0.0,22554.0,70,50,1,2055,201104573,,,,,0.0,0.0,4.0,1.0,3.0,2.0,2634.3882768287426,0.0,1025.0,0.0,0.0,51410.0,5,5,1,106.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1533.9716228080738,0.06801328468600132,0.029838000832679904,25705.0,8,4,8,8_1,8_2,8_0_0 -4574,2,30.0,3,0.0,1,111,2,54,54,7.0,0.0,0.0,1227.8762497623215,0.0,0.0,29293.0,41,31,1,2056,201104574,,,300.0,,2.0,0.0,4.0,1.0,3.0,1.8,1849.8247806303782,0.0,900.0,0.0,0.0,40466.0,1,1,2,70.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1227.8762497623215,0.04191705355417067,0.030343405569177126,22481.11111111111,7,4,7,7_1,7_3,7_1_0 -4575,2,39.0,3,0.0,2,111,2,0,38,6.0,0.0,0.0,368.36287492869644,0.0,1390.3282566482842,31695.0,0,31,2,2057,201104575,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3408.156706292697,0.0,270.0,800.0,0.0,19418.0,0,4,2,47.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1758.6911315769808,0.05548796755251556,0.09057014788222169,19418.0,6,3,6,6_0,6_2,6_0_1 -4576,2,32.0,1,0.0,9,112,2,54,37,10.0,0.0,485.77421184720396,720.3540665272286,0.0,1584.974212579044,104781.0,31,31,1,2058,201104576,,,420.0,,2.0,0.0,5.0,1.0,3.0,1.8,1704.040242518112,0.0,528.0,912.0,0.0,68289.0,1,1,2,120.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2791.1024909534763,0.026637486671758012,0.04087191921031903,37938.333333333336,10,5,10,10_1,10_1,10_0_0 -4577,2,48.0,3,0.0,4,111,2,52,48,10.0,0.0,277.585263912688,1040.4106176361993,0.0,2150.502788491323,35708.0,50,50,1,2059,201104577,,,400.0,,2.0,1.0,4.0,0.0,2.0,1.5,2004.1753254907571,2000.0,0.0,0.0,0.0,59805.0,1,1,2,84.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3468.49867004021,0.09713505853142741,0.05799680076983881,39870.0,10,5,10,10_1,10_3,10_0_1 -4578,2,57.0,2,0.0,5,221,4,52,62,9.0,0.0,0.0,1459.8084302729822,145.98446694806984,0.0,23002.0,50,42,1,206,201104578,,,220.0,,2.0,2.0,5.0,0.0,2.0,1.5,2666.131268027621,0.0,1070.0,0.0,0.0,45572.0,1,1,1,140.0,1,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1605.792897221052,0.06981101196509225,0.03523639289961055,30381.333333333332,9,5,9,9_1,9_1,9_0_0 -4579,2,76.0,2,0.0,8,111,2,77,75,9.0,0.0,0.0,890.5994554392253,0.0,2595.073317815696,32434.0,71,50,1,2060,201104579,,,139.0,,0.0,2.0,4.0,0.0,2.0,1.5,2496.9542485681222,760.0,363.0,1023.0,0.0,43505.0,5,5,1,100.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3485.6727732549216,0.10746971613908003,0.0801211992473261,29003.333333333332,8,4,8,8_1,8_2,8_0_0 -4580,2,80.0,3,0.0,7,111,4,72,71,5.0,0.0,0.0,1364.3069441803573,0.0,0.0,33405.0,50,71,1,2061,201104580,,,454.0,,0.0,4.0,4.0,0.0,2.0,1.5,2180.318464664063,0.0,1000.0,0.0,0.0,28281.0,5,5,1,138.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1364.3069441803573,0.040841399316879426,0.04824111396981568,18854.0,5,3,5,5_1,5_3,5_0_0 -4581,2,76.0,1,0.0,4,111,1,0,74,10.0,0.0,0.0,1231.3834822579236,0.0,1877.6892203773114,46334.0,0,12,2,2062,201104581,,,,670.0,0.0,3.0,5.0,0.0,1.0,1.0,3390.8014083273024,1659.0,270.0,54.0,0.0,73305.0,0,5,3,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3109.072702635235,0.06710132305942149,0.04241283272130462,73305.0,10,5,10,10_0,10_4,10_0_1 -4582,1,45.0,3,445.0,3,111,1,56,63,2.0,0.0,0.0,106.41594164606786,0.0,31.282385774586395,17081.0,71,71,2,2064,201104582,,,,,3.0,2.0,4.0,4.0,6.0,3.3,2661.9340547524826,0.0,78.0,18.0,0.0,39351.0,1,1,3,96.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,137.69832742065427,0.008061490979489156,0.0034992332449151043,11924.545454545456,2,1,2_1,2_0_1,2_4_1,2_0_1 -4583,2,37.0,2,0.0,1,300,3,52,54,6.0,0.0,333.10231669522557,1564.8600649748698,79.94387475727635,0.0,35315.0,50,20,1,2065,201104583,,,297.0,,2.0,0.0,5.0,2.0,4.0,2.1,1790.5946903224565,0.0,1147.0,0.0,0.0,44334.0,1,1,2,149.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1977.9062564273718,0.056007539471255044,0.044613755953159466,21111.42857142857,6,3,6,6_1,6_0,6_1_0 -4584,2,31.0,2,0.0,99,111,1,65,62,6.0,1028.0234939219956,0.0,613.9381248811608,0.0,0.0,35066.0,71,43,2,2066,201104584,648.0,648.0,,411.0,2.0,0.0,4.0,1.0,3.0,1.8,2708.5781886325485,0.0,450.0,0.0,0.0,38328.0,4,1,3,81.0,7,5.0,4,2,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1641.9616188031564,0.04682489074326004,0.042839741671967135,21293.333333333332,6,3,6,6_0,6_2,6_0_0 -4585,2,68.0,3,0.0,4,111,2,0,77,5.0,2157.58017242888,0.0,684.8820859785393,271.11401004641544,0.0,20695.0,0,70,1,2067,201104585,,,,,0.0,4.0,5.0,0.0,1.0,1.0,1796.1149424744222,0.0,502.0,0.0,0.0,17790.0,0,5,1,140.0,7,5.0,1,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3113.5762684538345,0.15045065322318601,0.17501833999178384,17790.0,5,3,5,5_1,5_2,5_0_1 -4586,2,63.0,3,0.0,3,112,2,78,78,3.0,2379.684013708323,0.0,682.1534720901786,187.69431464751835,0.0,26315.0,70,70,1,2068,201104586,,,250.0,,0.0,3.0,6.0,0.0,2.0,1.5,3749.524879679919,0.0,500.0,0.0,0.0,21549.0,6,5,1,150.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3249.53180044602,0.12348591299433859,0.1507973363240067,14366.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -4587,2,63.0,2,0.0,1,112,5,77,77,6.0,0.0,41.637789586903196,683.7551310485233,260.6865481215533,990.3065341002541,48624.0,71,50,1,207,201104587,,,,,0.0,4.0,7.0,0.0,2.0,1.5,2042.8681552660496,921.0,150.0,0.0,0.0,29779.0,5,5,5,200.0,6,0.0,3,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1976.386002857234,0.040646306409535087,0.06636844765966735,19852.666666666668,6,3,6,6_1,6_0,6_1_0 -4588,2,61.0,2,0.0,5,112,4,56,75,4.0,47.593680274166466,0.0,1799.5208593738912,187.69431464751835,0.0,30163.0,50,42,1,2070,201104588,,,300.0,,1.0,2.0,4.0,0.0,2.0,1.5,2300.113979972437,0.0,1319.0,0.0,0.0,23748.0,1,5,1,90.0,7,2.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2034.808854295576,0.06746042682410822,0.08568337772846454,15832.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -4589,2,57.0,2,0.0,4,111,1,64,46,5.0,0.0,0.0,682.1534720901786,0.0,0.0,33682.0,60,41,2,2073,201104589,,,,520.0,2.0,1.0,3.0,0.0,2.0,1.5,3227.699543879433,0.0,500.0,0.0,0.0,25247.0,1,1,3,70.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,682.1534720901786,0.020252760290071215,0.02701918929338847,16831.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_1 -4590,2,86.0,2,0.0,1,400,4,72,75,4.0,0.0,0.0,1937.2966886409467,291.9689338961397,253.75932904197606,12261.0,70,70,1,2074,201104590,,,233.0,,0.0,0.0,5.0,0.0,2.0,1.5,2407.90105081007,236.0,1330.0,0.0,0.0,24350.0,5,5,1,79.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2483.0249515790624,0.20251406505008257,0.10197227727224076,16233.333333333334,4,2,4_0,4_1_0,4_0_0,4_1_0 -4591,2,34.0,2,0.0,6,112,2,55,63,7.0,0.0,832.755791738064,1555.3099163656073,0.0,1042.7461924862132,55396.0,43,43,1,2075,201104591,,,400.0,,2.0,0.0,7.0,2.0,4.0,2.1,2980.3497816108857,0.0,1140.0,600.0,0.0,49410.0,4,1,2,140.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3430.8119005898843,0.06193248430554344,0.06943557783019398,23528.571428571428,7,4,7,7_1,7_0,7_0_0 -4592,2,38.0,4,0.0,7,111,2,0,37,1.0,0.0,0.0,998.6726831400215,0.0,0.0,38348.0,0,10,1,2076,201104592,,,,,1.0,0.0,4.0,2.0,3.0,1.6,1446.2758728640958,0.0,732.0,0.0,0.0,14265.0,0,4,3,85.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,998.6726831400215,0.026042366828518345,0.07000860029022232,8915.625,1,1,1_0,1_1_0,1_3_0,1_0_0 -4593,2,81.0,2,0.0,4,112,1,77,78,9.0,0.0,0.0,559.3658471139465,0.0,2135.8917842759265,21103.0,70,50,1,2077,201104593,,,422.0,,0.0,2.0,4.0,0.0,2.0,1.5,718.7936965152753,0.0,410.0,1229.0,0.0,46942.0,5,5,1,75.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2695.257631389873,0.12771916937828143,0.057416761778149056,31294.666666666668,9,5,9,9_1,9_0,9_0_1 -4594,2,48.0,2,0.0,4,111,2,47,38,10.0,0.0,0.0,1418.8792219475715,0.0,2467.8326555507047,52897.0,42,31,1,2078,201104594,,,950.0,,3.0,0.0,6.0,3.0,5.0,2.8,1532.6701880615497,0.0,1040.0,1420.0,0.0,104125.0,1,1,1,125.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3886.7118774982764,0.07347698125599328,0.037327364969971445,37187.5,9,5,9,9_1,9_4,9_0_1 -4595,2,42.0,3,0.0,1,300,5,43,53,5.0,0.0,777.2387389555264,709.4396109737858,97.32297796537989,0.0,27384.0,42,50,1,2079,201104595,,,380.0,,2.0,0.0,5.0,2.0,4.0,2.1,2010.8842010201702,0.0,520.0,0.0,0.0,38634.0,1,1,2,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1584.0013278946922,0.05784404498592945,0.04100018967476037,18397.142857142855,5,3,5,5_1,5_0,5_1_0 -4596,2,78.0,3,0.0,5,112,2,0,78,5.0,0.0,0.0,791.2980276246072,0.0,2259.283417053462,8307.0,0,71,1,208,201104596,,,198.0,,0.0,0.0,3.0,0.0,1.0,1.0,3138.3216430832576,0.0,580.0,1300.0,0.0,16775.0,0,5,1,90.0,8,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3050.581444678069,0.36723022085928364,0.1818528431998849,16775.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -4597,1,30.0,2,74.0,7,111,2,0,54,4.0,0.0,0.0,323.34074577074466,0.0,1621.4703293160615,11106.0,0,50,2,2080,201104597,,,272.0,269.0,1.0,0.0,2.0,0.0,1.0,1.0,2337.311737176189,0.0,237.0,933.0,0.0,15474.0,0,1,3,50.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1944.811075086806,0.17511354899034812,0.125682504529327,15474.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -4598,1,43.0,3,156.0,2,112,2,54,65,6.0,0.0,0.0,746.2758984666555,2770.229051371706,0.0,57860.0,41,42,1,2081,201104598,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2027.755237440794,0.0,547.0,0.0,0.0,49244.0,1,1,3,80.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,3516.5049498383614,0.060776096609719346,0.07140981540570143,20518.333333333336,6,3,6,6_1,6_0,6_0_1 -4599,2,62.0,2,0.0,4,111,1,0,75,7.0,0.0,0.0,354.7198054868929,0.0,0.0,22145.0,0,30,2,2082,201104599,,,,374.0,0.0,0.0,1.0,0.0,1.0,1.0,2795.8725245855608,0.0,260.0,0.0,0.0,21744.0,0,5,3,35.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,354.7198054868929,0.01601805398450634,0.016313456838065347,21744.0,6,3,6,6_0,6_3,6_0_1 -4600,2,38.0,2,0.0,2,112,4,56,52,3.0,0.0,0.0,2155.6049718049644,107.75043989024202,0.0,28556.0,50,41,1,2083,201104600,,,,403.0,2.0,0.0,4.0,2.0,4.0,2.5,2333.086372206143,0.0,1580.0,0.0,0.0,34550.0,1,1,3,80.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2263.3554116952064,0.07926023993889923,0.06550956329074403,13820.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -4601,2,44.0,1,0.0,9,112,4,85,48,7.0,0.0,0.0,4288.016725558863,0.0,0.0,69057.0,71,71,1,2085,201104601,,,430.0,,2.0,1.0,7.0,2.0,4.0,2.5,6267.394745231037,0.0,3143.0,0.0,0.0,55679.0,7,1,1,200.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4288.016725558863,0.062093874995422085,0.07701317777903452,22271.6,7,4,7,7_1,7_0,7_0_0 -4602,2,27.0,3,0.0,1,111,1,0,35,6.0,0.0,0.0,442.03544991443573,0.0,0.0,27431.0,0,10,2,2086,201104602,,,,570.0,1.0,0.0,1.0,0.0,1.0,1.0,4435.347368821452,0.0,324.0,0.0,0.0,21356.0,0,1,3,29.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,442.03544991443573,0.016114448977960546,0.020698419643867566,21356.0,6,3,6,6_0,6_4,6_1_0 -4603,2,23.0,2,0.0,2,111,2,0,84,1.0,0.0,0.0,72.30826804155893,0.0,0.0,12680.0,0,31,2,2087,201104603,,,,420.0,0.0,0.0,2.0,0.0,1.0,1.0,3655.028669159827,0.0,53.0,0.0,0.0,6084.0,0,3,3,47.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,72.30826804155893,0.005702544798230199,0.01188498817251133,6084.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -4604,2,33.0,3,0.0,9,112,4,85,46,6.0,0.0,0.0,1337.02080529675,0.0,0.0,32487.0,50,41,1,2089,201104604,,,370.0,,1.0,0.0,4.0,1.0,3.0,1.8,1477.1606724403766,0.0,980.0,0.0,0.0,34843.0,4,1,2,95.0,6,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1337.02080529675,0.04115556392700927,0.03837272351108544,19357.222222222223,6,3,6,6_1,6_1,6_0_0 -4605,2,68.0,3,0.0,6,112,2,0,75,10.0,2221.038412794435,0.0,1342.4780330734716,0.0,0.0,12839.0,0,43,1,2090,201104605,,,,,0.0,3.0,2.0,0.0,1.0,1.0,2752.962325657016,0.0,984.0,0.0,0.0,47667.0,0,5,1,30.0,8,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3563.5164458679064,0.27755404983783055,0.07475856348979182,47667.0,10,5,10,10_1,10_0,10_0_0 -4606,2,68.0,3,0.0,4,111,2,78,75,5.0,0.0,0.0,377.91302353795896,0.0,1326.025574778301,26001.0,70,70,1,2091,201104606,,,319.0,,0.0,2.0,5.0,0.0,2.0,1.5,891.8202781660534,0.0,277.0,763.0,0.0,27823.0,5,5,1,85.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1703.93859831626,0.06553357941295565,0.061242087421063865,18548.666666666668,5,3,5,5_1,5_2,5_0_1 -4607,1,43.0,5,340.0,7,221,6,0,85,1.0,0.0,0.0,368.36287492869644,0.0,1390.3282566482842,12016.0,0,50,2,2093,201104607,,,,60.0,1.0,1.0,4.0,1.0,2.0,1.5,6156.016559862211,0.0,270.0,800.0,0.0,13300.0,0,7,3,100.0,1,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1758.6911315769808,0.14636244437225207,0.13223241590804366,8866.666666666666,1,1,1_1,1_0_1,1_1_1,1_0_0 -4608,2,80.0,3,0.0,2,112,2,77,78,3.0,0.0,0.0,907.2641178799375,0.0,2492.1634000420495,40981.0,70,70,1,2094,201104608,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1440.0265661613607,0.0,665.0,1434.0,0.0,19555.0,5,5,2,95.0,7,1.0,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3399.427517921987,0.08295130714043061,0.1738393003284064,13036.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_1 -4609,2,56.0,2,0.0,5,111,4,0,45,6.0,0.0,0.0,316.5192110498429,0.0,0.0,22199.0,0,41,2,2095,201104609,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3419.872582096836,0.0,232.0,0.0,0.0,20467.0,0,1,1,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,316.5192110498429,0.014258264383523712,0.015464856161129765,20467.0,6,3,6,6_0,6_3,6_0_0 -4610,1,51.0,3,152.0,6,300,2,72,52,7.0,0.0,0.0,1227.8762497623215,0.0,1494.6028758969055,65202.0,50,71,1,2098,201104610,,,460.0,,3.0,2.0,5.0,0.0,4.0,2.5,1367.622762272923,0.0,900.0,860.0,0.0,57392.0,7,1,3,140.0,0,0.0,5,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2722.479125659227,0.04175453399679806,0.04743656129180421,22956.8,7,4,7,7_1,7_0,7_0_0 -4611,1,27.0,4,115.0,4,111,1,0,46,1.0,0.0,0.0,197.15781204205973,0.0,407.5202784191057,6543.0,0,43,2,2099,201104611,,,,133.0,1.0,0.0,3.0,0.0,1.0,1.0,2620.0837715623243,379.0,0.0,0.0,0.0,8221.0,0,4,3,66.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,604.6780904611654,0.09241603094317064,0.07355286345470934,8221.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -4612,2,45.0,2,0.0,5,111,2,85,38,9.0,0.0,0.0,1125.5532289487946,0.0,2780.6565132965684,66197.0,12,41,1,2100,201104612,,,820.0,,1.0,0.0,7.0,3.0,5.0,2.8,1861.2168736520568,0.0,825.0,1600.0,0.0,89289.0,6,1,2,191.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3906.209742245363,0.05900886357758453,0.04374793918898591,31888.928571428572,9,5,9,9_1,9_4,9_0_0 -4613,2,39.0,2,0.0,1,112,5,0,34,9.0,190.37472109666587,624.566843803548,818.5841665082144,86.89551604051776,0.0,23704.0,0,10,1,2102,201104613,,,75.0,,1.0,0.0,3.0,0.0,1.0,1.0,1964.0645911659292,0.0,600.0,0.0,0.0,32625.0,0,1,2,65.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1720.4212474489461,0.07257936413470073,0.05273321831261137,32625.0,9,5,9,9_1,9_0,9_1_0 -4614,2,56.0,4,0.0,2,112,6,0,33,10.0,2221.038412794435,0.0,818.5841665082144,97.32297796537989,0.0,17594.0,0,50,1,2103,201104614,,,300.0,,1.0,3.0,2.0,0.0,1.0,1.0,1342.9514581153292,0.0,600.0,0.0,0.0,55520.0,0,1,2,70.0,10,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3136.945557268029,0.1782963258649556,0.0565011807865279,55520.0,10,5,10,10_1,10_1,10_0_1 -4615,2,67.0,3,0.0,5,111,4,77,47,10.0,0.0,555.170527825376,3137.9059716148217,0.0,0.0,76780.0,71,10,1,2104,201104615,,,110.0,,1.0,2.0,6.0,0.0,2.0,1.5,2839.647971951228,0.0,2300.0,0.0,0.0,68771.0,5,5,1,150.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3693.076499440198,0.04809945948736908,0.05370107311861392,45847.333333333336,10,5,10,10_1,10_3,10_0_0 -4616,1,60.0,4,226.0,2,111,2,0,78,4.0,0.0,0.0,163.71683330164288,0.0,260.6865481215533,4670.0,0,50,8,2105,201104616,,,158.0,,0.0,4.0,2.0,0.0,1.0,1.0,3862.9712540192095,0.0,120.0,150.0,0.0,15025.0,0,5,3,37.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,424.40338142319615,0.09087866839897134,0.028246481292725202,15025.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -4617,2,60.0,2,0.0,5,111,1,54,77,10.0,0.0,0.0,409.2920832541072,0.0,0.0,41822.0,60,50,2,2109,201104617,,,,,1.0,1.0,3.0,0.0,2.0,1.5,3268.222751524946,0.0,300.0,0.0,0.0,68481.0,1,5,1,60.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,409.2920832541072,0.009786525829805059,0.005976724686469344,45654.0,10,5,10,10_0,10_4,10_0_0 -4618,2,41.0,2,0.0,7,111,4,0,37,10.0,0.0,0.0,742.1829776341143,0.0,0.0,22508.0,0,12,2,211,201104618,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3237.037897373187,0.0,544.0,0.0,0.0,37502.0,0,1,2,65.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,742.1829776341143,0.032974185962063016,0.019790490577412254,37502.0,10,5,10,10_0,10_3,10_0_0 -4619,2,77.0,4,0.0,3,120,2,71,71,2.0,2284.4966531599903,0.0,361.5413402077947,264.162368763174,0.0,20788.0,70,71,1,2111,201104619,,,,,0.0,0.0,4.0,0.0,2.0,1.5,3416.257386381267,0.0,265.0,0.0,0.0,14792.0,5,5,1,85.0,0,2.0,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2910.200362130959,0.13999424485909945,0.19674150636363974,9861.333333333334,1,1,1_0,1_1_0,1_1_0,1_0_1 -4620,2,49.0,2,0.0,1,120,2,56,46,9.0,0.0,0.0,27.286138883607144,0.0,114.70208117348345,29314.0,42,44,1,2112,201104620,,,,,2.0,2.0,4.0,0.0,2.0,1.5,4154.8593197969085,0.0,20.0,66.0,0.0,50634.0,1,1,3,120.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,141.9882200570906,0.004843699940543446,0.002804207055675842,33756.0,9,5,9,9_1,9_1,9_1_0 -4621,2,34.0,2,0.0,4,111,2,43,43,6.0,1427.810408224994,416.377895869032,717.625452638868,0.0,0.0,45029.0,50,41,1,2113,201104621,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2111.281871757608,0.0,526.0,0.0,0.0,41134.0,1,1,2,100.0,7,6.0,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2561.813756732894,0.05689253051884106,0.062279714025693926,19587.619047619046,6,3,6,6_1,6_2,6_0_1 -4622,2,33.0,1,0.0,3,111,2,0,63,6.0,0.0,0.0,272.86138883607146,0.0,4918.286207893305,19994.0,0,50,2,2114,201104622,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2075.5546037635477,0.0,200.0,2830.0,0.0,20163.0,0,1,2,58.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,5191.147596729376,0.2596352704175941,0.257459088267092,20163.0,6,3,6,6_0,6_2,6_0_1 -4623,2,58.0,1,0.0,1,300,2,34,31,10.0,2696.9752155360998,0.0,1223.7833289297805,43.44775802025888,0.0,57783.0,10,10,1,2116,201104623,,,,,2.0,2.0,7.0,0.0,2.0,1.5,1374.7929713071355,0.0,897.0,0.0,0.0,167948.0,1,1,1,250.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3964.206302486139,0.06860506208549468,0.023603772015660437,111965.33333333333,10,5,10,10_1,10_0,10_1_0 -4624,2,38.0,3,0.0,9,300,5,52,62,3.0,0.0,0.0,1841.8143746434823,145.98446694806984,0.0,29956.0,50,60,1,2117,201104624,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1188.9508742053688,0.0,1350.0,0.0,0.0,29872.0,1,1,1,105.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1987.7988415915522,0.06635728540497904,0.06654388194936905,12446.666666666668,2,1,2_0,2_1_0,2_0_0,2_0_0 -4625,2,54.0,3,0.0,1,111,2,0,52,5.0,0.0,0.0,785.5100163153303,0.0,1623.6296053109486,30754.0,0,60,1,2119,201104625,,,360.0,289.0,1.0,2.0,4.0,0.0,1.0,1.0,1453.420183317483,1510.0,0.0,0.0,0.0,17910.0,0,1,3,51.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2409.1396216262788,0.07833581393074979,0.13451365838226012,17910.0,5,3,5,5_1,5_3,5_1_0 -4626,1,60.0,4,246.0,99,111,2,0,77,3.0,0.0,0.0,313.79059716148214,0.0,1438.989745630974,8077.0,0,71,2,212,201104626,,,,144.0,0.0,2.0,5.0,0.0,1.0,1.0,4096.874689197337,0.0,230.0,828.0,0.0,13990.0,0,4,3,83.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1752.7803427924562,0.217008832833039,0.12528808740475025,13990.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -4627,1,47.0,4,262.0,5,111,2,0,52,1.0,0.0,0.0,245.5752499524643,0.0,573.5104058674173,8871.0,0,41,2,2120,201104627,,,,109.0,1.0,0.0,2.0,0.0,1.0,1.0,3772.8745093685084,0.0,180.0,330.0,0.0,8253.0,0,4,3,43.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,819.0856558198816,0.0923329563543999,0.09924701997090532,8253.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -4628,2,35.0,2,0.0,9,112,4,56,47,8.0,0.0,208.188947934516,2182.8911106885716,0.0,0.0,28194.0,41,41,1,2122,201104628,,,182.0,,2.0,0.0,6.0,1.0,3.0,1.8,1931.2658319091017,0.0,1600.0,0.0,0.0,46005.0,1,1,2,120.0,8,2.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2391.0800586230876,0.08480811728109128,0.051974351888340126,25558.333333333332,8,4,8,8_1,8_1,8_0_0 -4629,2,22.0,2,0.0,1,111,2,0,47,4.0,0.0,0.0,545.7227776721429,0.0,0.0,13421.0,0,42,2,2123,201104629,,,200.0,,1.0,0.0,1.0,0.0,1.0,1.0,3535.1444771211854,0.0,400.0,0.0,0.0,15530.0,0,1,3,12.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,545.7227776721429,0.040661856618146405,0.03513990841417533,15530.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -4630,1,40.0,3,393.0,8,300,6,0,81,2.0,1618.1851293216598,0.0,613.9381248811608,0.0,0.0,13421.0,0,71,2,2124,201104630,,,,,1.0,0.0,5.0,2.0,3.0,1.6,2732.086022799751,0.0,450.0,0.0,0.0,15625.0,0,4,3,110.0,0,0.0,2,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,2232.1232542028206,0.16631571821792868,0.14285588826898052,9765.625,1,1,1_1,1_0_1,1_0_1,1_0_0 -4631,2,55.0,3,0.0,2,111,2,75,56,6.0,0.0,485.77421184720396,1978.245069061518,156.41192887293198,0.0,28643.0,50,50,1,2125,201104631,,,500.0,,1.0,2.0,4.0,0.0,2.0,1.5,2171.221124827406,0.0,1450.0,0.0,0.0,29039.0,4,1,1,105.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2620.431209781654,0.09148592011247614,0.09023834187753209,19359.333333333332,6,3,6,6_1,6_3,6_0_1 -4632,2,81.0,3,0.0,1,222,2,0,77,6.0,2002.1074835332693,0.0,641.2242637647679,86.89551604051776,0.0,15713.0,0,70,1,2126,201104632,,,,,0.0,1.0,8.0,0.0,1.0,1.0,2099.9489353715667,0.0,470.0,0.0,0.0,20183.0,0,5,1,193.0,1,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2730.2272633385546,0.1737559513357446,0.13527360963873333,20183.0,6,3,6,6_1,6_0,6_1_0 -4633,2,30.0,2,0.0,1,111,1,46,54,8.0,0.0,0.0,573.00891655575,0.0,0.0,44767.0,31,20,2,2127,201104633,,,,800.0,2.0,0.0,2.0,2.0,4.0,2.1,2676.791196523609,0.0,420.0,0.0,0.0,55493.0,1,1,3,41.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,573.00891655575,0.01279980603023991,0.010325787334542195,26425.238095238095,8,4,8,8_0,8_4,8_1_0 -4634,2,41.0,1,0.0,8,221,2,52,21,8.0,0.0,0.0,669.8747095925554,0.0,2160.2225287672713,54398.0,50,50,1,2128,201104634,,,544.0,,2.0,1.0,5.0,2.0,4.0,2.3,4024.6514442709645,0.0,491.0,1243.0,0.0,56971.0,1,1,2,130.0,1,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2830.097238359827,0.0520257590051073,0.04967610254971524,24770.000000000004,7,4,7,7_1,7_1,7_0_0 -4635,2,85.0,2,0.0,2,111,2,86,72,1.0,2890.522848651043,0.0,409.2920832541072,0.0,521.3730962431066,20764.0,70,71,1,2129,201104635,,,160.0,,0.0,1.0,3.0,0.0,2.0,1.5,2880.9663553459022,0.0,300.0,300.0,0.0,12623.0,6,5,1,60.0,8,7.0,3,2,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3821.188028148257,0.18402947544539863,0.30271631372480845,8415.333333333334,1,1,1_0,1_1_0,1_3_0,1_0_1 -4636,2,70.0,2,0.0,1,400,2,74,77,7.0,1221.5711270369393,222.0682111301504,1582.5960552492145,194.64595593075978,0.0,27919.0,20,71,1,2131,201104636,,,230.0,,0.0,5.0,5.0,0.0,2.0,1.5,2257.692990377048,0.0,1160.0,0.0,0.0,34715.0,5,5,1,140.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3220.8813493470634,0.11536521183950225,0.09278068124289394,23143.333333333332,7,4,7,7_1,7_0,7_1_0 -4637,2,63.0,2,0.0,5,300,4,75,77,8.0,0.0,0.0,2182.8911106885716,43.44775802025888,0.0,45643.0,33,71,1,2132,201104637,,,693.0,,0.0,1.0,5.0,0.0,2.0,1.5,2566.051285764478,0.0,1600.0,0.0,0.0,37712.0,5,5,1,95.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2226.3388687088304,0.04877722473783122,0.05903529032426894,25141.333333333332,8,4,8,8_1,8_1,8_0_0 -4638,1,47.0,4,132.0,4,111,6,0,52,3.0,0.0,0.0,300.1475277196786,0.0,88.63342636132812,20516.0,0,41,2,2133,201104638,,,,,1.0,2.0,4.0,1.0,2.0,1.5,4168.82379239628,0.0,220.0,51.0,0.0,20434.0,0,1,3,70.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,388.7809540810067,0.018950134240641778,0.01902617960658739,13622.666666666666,3,2,3_1,3_0_1,3_2_1,3_0_1 -4639,1,47.0,2,240.0,4,111,1,0,64,4.0,0.0,0.0,409.2920832541072,52.13730962431066,0.0,10508.0,0,71,2,2134,201104639,,,86.0,,1.0,3.0,4.0,0.0,1.0,1.0,5950.286001672486,0.0,300.0,0.0,0.0,14780.0,0,4,3,70.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,461.42939287841784,0.04391219955066786,0.03121985066836386,14780.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -4640,2,74.0,2,0.0,1,221,2,78,74,9.0,0.0,0.0,1025.047887939361,0.0,5002.866288609729,35922.0,43,50,1,2135,201104640,,,,,0.0,2.0,7.0,0.0,2.0,1.5,2697.4637649250926,966.0,383.0,2281.0,0.0,51368.0,5,5,1,195.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,6027.91417654909,0.16780563934494433,0.11734765177832679,34245.333333333336,9,5,9,9_1,9_1,9_1_0 -4641,1,48.0,4,164.0,1,221,2,0,52,2.0,0.0,0.0,286.1129198499548,0.0,591.3882668351138,11282.0,0,60,1,2137,201104641,,,,,1.0,1.0,5.0,0.0,1.0,1.0,1690.1786032961857,550.0,0.0,0.0,0.0,9873.0,0,4,4,100.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,877.5011866850685,0.0777788678146666,0.08887888045022471,9873.0,2,1,2_1,2_1_1,2_1_1,2_1_0 -4642,2,65.0,3,0.0,4,111,1,0,75,7.0,0.0,0.0,95.501486092625,0.0,0.0,21051.0,0,41,2,2138,201104642,,,,456.0,0.0,1.0,2.0,0.0,1.0,1.0,3156.3828860899316,0.0,70.0,0.0,0.0,23690.0,0,5,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,95.501486092625,0.0045366721814937535,0.0040312995395789366,23690.0,7,4,7,7_0,7_4,7_0_1 -4643,2,84.0,3,0.0,1,112,2,0,86,9.0,6345.824036555528,0.0,409.2920832541072,86.89551604051776,0.0,18575.0,0,41,1,2140,201104643,,,220.0,,0.0,3.0,6.0,0.0,1.0,1.0,2622.2124389484025,0.0,300.0,0.0,0.0,29818.0,0,6,1,150.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6842.011635850154,0.36834517555047935,0.22945910644074566,29818.0,9,5,9,9_1,9_0,9_1_0 -4644,2,48.0,2,0.0,6,111,4,46,54,9.0,0.0,0.0,1630.346798295527,396.243553144761,0.0,49807.0,50,41,1,2141,201104644,,,320.0,,3.0,0.0,6.0,2.0,4.0,2.5,1501.9807676368507,0.0,1195.0,0.0,0.0,86450.0,1,1,1,140.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2026.590351440288,0.040688866051765575,0.023442340676001018,34580.0,9,5,9,9_1,9_3,9_0_0 -4645,2,55.0,3,0.0,5,111,1,0,55,8.0,0.0,0.0,204.6460416270536,0.0,0.0,21698.0,0,50,2,2142,201104645,,,,350.0,1.0,0.0,2.0,0.0,1.0,1.0,2958.693848736322,0.0,150.0,0.0,0.0,25432.0,0,1,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,204.6460416270536,0.009431562430963849,0.008046793080648536,25432.0,8,4,8,8_0,8_4,8_0_0 -4646,2,63.0,3,0.0,5,400,4,77,78,5.0,0.0,0.0,3342.552013241875,93.84715732375918,0.0,31827.0,42,70,1,2143,201104646,,,540.0,,0.0,1.0,4.0,0.0,2.0,1.5,2201.2914005639614,0.0,2450.0,0.0,0.0,25749.0,5,5,1,91.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3436.3991705656344,0.10797119334419313,0.13345757779197773,17166.0,5,3,5,5_1,5_0,5_0_0 -4647,2,68.0,3,0.0,1,111,1,0,74,9.0,0.0,0.0,387.4631721472215,0.0,104.27461924862132,28688.0,0,33,2,2144,201104647,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3966.623143313943,0.0,284.0,60.0,0.0,33676.0,0,5,2,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,491.7377913958428,0.017140887876319115,0.014602024925639707,33676.0,9,5,9,9_0,9_4,9_1_0 -4648,2,83.0,2,0.0,6,111,1,0,75,9.0,0.0,0.0,573.00891655575,0.0,0.0,17079.0,0,60,2,2146,201104648,,,,633.0,0.0,0.0,1.0,0.0,1.0,1.0,4489.879639801183,0.0,420.0,0.0,0.0,30066.0,0,5,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,573.00891655575,0.03355049572900931,0.019058368807149274,30066.0,9,5,9,9_0,9_4,9_0_0 -4649,2,60.0,5,0.0,1,111,2,0,75,8.0,0.0,0.0,791.2980276246072,52.13730962431066,0.0,24448.0,0,50,1,2148,201104649,,,103.0,,0.0,2.0,3.0,0.0,1.0,1.0,2116.8990118495976,0.0,580.0,0.0,0.0,25620.0,0,5,2,60.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,843.4353372489179,0.03449915482857158,0.0329209733508555,25620.0,8,4,8,8_1,8_3,8_1_0 -4650,2,70.0,3,0.0,9,211,2,72,74,9.0,0.0,0.0,586.6519859975537,0.0,1251.2954309834558,31973.0,50,41,1,2149,201104650,,,,800.0,0.0,5.0,4.0,0.0,2.0,1.5,1269.1576427226823,0.0,430.0,720.0,0.0,48128.0,5,5,3,100.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1837.9474169810096,0.05748435920873892,0.03818873456160675,32085.333333333332,9,5,9,9_1,9_2,9_0_0 -4651,2,73.0,3,0.0,3,111,2,0,77,9.0,0.0,0.0,577.7997193525364,0.0,3780.8038673224614,29639.0,0,44,1,215,201104651,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2971.561461348498,518.0,226.0,1855.0,0.0,34566.0,0,5,1,85.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4358.603586674998,0.14705636447501597,0.12609511041702823,34566.0,9,5,9,9_1,9_4,9_0_1 -4652,1,58.0,3,127.0,1,400,4,0,52,3.0,0.0,0.0,1309.734666413143,151.1981979105009,0.0,13404.0,0,70,1,2150,201104652,,,420.0,,1.0,5.0,4.0,0.0,1.0,1.0,1915.040950808239,0.0,960.0,0.0,0.0,12914.0,0,1,3,81.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1460.932864323644,0.10899230560456909,0.1131278352426548,12914.0,3,2,3_1,3_1_1,3_0_1,3_1_0 -4653,2,60.0,1,0.0,4,111,1,42,74,10.0,0.0,0.0,1356.5257354848156,0.0,1224.7113380458084,47457.0,41,30,2,2151,201104653,,,,,1.0,2.0,4.0,0.0,2.0,1.5,3235.0515717231924,1139.0,560.0,0.0,0.0,67267.0,1,5,1,92.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2581.237073530624,0.05439107135998112,0.03837300717336323,44844.666666666664,10,5,10,10_0,10_3,10_0_1 -4654,2,43.0,3,0.0,99,111,6,0,47,3.0,0.0,0.0,192.3672791294304,0.0,425.78802859853704,12187.0,0,50,2,2153,201104654,,,,367.0,1.0,0.0,3.0,0.0,1.0,1.0,3834.801479569259,0.0,141.0,245.0,0.0,14630.0,0,1,3,45.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,618.1553077279674,0.05072251642963546,0.04225258426028485,14630.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -4655,1,33.0,3,134.0,99,111,1,85,67,3.0,0.0,0.0,477.50743046312505,0.0,434.4775802025888,21019.0,71,42,2,2154,201104655,,,600.0,108.0,1.0,0.0,4.0,3.0,5.0,2.4,2649.9830933039702,0.0,350.0,250.0,0.0,30536.0,6,1,3,78.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,911.9850106657138,0.04338860129719367,0.02986589634089972,12723.333333333334,3,2,3_1,3_0_1,3_2_1,3_0_0 -4656,2,60.0,3,0.0,7,111,5,54,74,10.0,0.0,902.152107716236,1170.5753581067465,173.79103208103552,0.0,46331.0,42,44,1,2159,201104656,,,300.0,,1.0,2.0,6.0,0.0,2.0,1.5,2077.9771194295395,0.0,858.0,0.0,0.0,58710.0,1,5,1,191.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2246.518497904018,0.04848845261064985,0.0382646652683362,39140.0,10,5,10,10_1,10_3,10_0_0 -4657,2,40.0,2,0.0,9,112,5,0,67,8.0,1110.5192063972174,1040.94473967258,2619.469332826286,264.162368763174,0.0,51509.0,0,50,1,216,201104657,,,362.0,,1.0,3.0,3.0,1.0,2.0,1.5,1916.4669431990758,0.0,1920.0,0.0,0.0,42387.0,0,1,1,100.0,8,0.0,2,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5035.095647659257,0.09775176469469912,0.11878867689761619,28258.0,8,4,8,8_1,8_0,8_0_0 -4658,2,50.0,2,0.0,7,221,4,46,47,9.0,0.0,0.0,409.2920832541072,0.0,0.0,65082.0,41,50,1,2160,201104658,,,250.0,,3.0,1.0,7.0,1.0,3.0,2.0,1953.4197248443954,0.0,300.0,0.0,0.0,63145.0,1,1,2,160.0,1,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,409.2920832541072,0.006288867632434578,0.006481781348548692,31572.5,9,5,9,9_1,9_1,9_0_0 -4659,2,78.0,3,0.0,1,300,5,71,78,2.0,0.0,166.55115834761278,542.9941637837821,271.11401004641544,0.0,11077.0,71,71,1,2161,201104659,,,153.0,,0.0,1.0,4.0,0.0,2.0,1.5,2854.2387426156815,0.0,398.0,0.0,0.0,17730.0,5,5,1,87.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,980.6593321778103,0.08853113046653519,0.05531073503540949,11820.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -4660,1,40.0,3,262.0,8,111,2,0,63,4.0,0.0,0.0,38.20059443705,0.0,295.4447545377604,5889.0,0,50,2,2163,201104660,,,,,1.0,6.0,2.0,0.0,1.0,1.0,3158.8430567039923,0.0,28.0,170.0,0.0,15868.0,0,1,3,60.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,333.6453489748104,0.056655688397828224,0.02102630129662279,15868.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -4661,2,56.0,2,0.0,2,111,2,0,74,2.0,0.0,0.0,377.91302353795896,0.0,1591.9258538622853,15414.0,0,50,1,2165,201104661,,,160.0,,0.0,0.0,4.0,0.0,1.0,1.0,4207.818737898315,0.0,277.0,916.0,0.0,10015.0,0,7,1,70.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1969.8388774002442,0.12779543774492308,0.19668885445833692,10015.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -4662,1,49.0,4,264.0,99,111,4,0,67,1.0,0.0,0.0,0.0,0.0,0.0,5407.0,0,71,2,2166,201104662,,,,,1.0,3.0,2.0,0.0,1.0,1.0,2534.665729550742,0.0,0.0,0.0,0.0,8263.0,0,4,3,35.0,7,6.0,1,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,8263.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -4663,2,42.0,3,0.0,6,221,5,56,63,2.0,0.0,1110.341055650752,1227.8762497623215,208.54923849724264,0.0,27847.0,50,71,1,2167,201104663,,,250.0,,2.0,0.0,5.0,2.0,4.0,2.3,2346.531451861893,0.0,900.0,0.0,0.0,26278.0,1,1,1,120.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2546.766543910316,0.09145568800625978,0.09691630047607566,11425.217391304348,2,1,2_0,2_1_0,2_1_0,2_0_0 -4664,0,47.0,1,0.0,7,112,7,0,53,7.0,0.0,0.0,791.2980276246072,0.0,1981.2177657238049,38241.0,0,60,1,2168,201104664,,,,,1.0,1.0,4.0,1.0,2.0,1.5,7470.848367400091,0.0,580.0,1140.0,0.0,34600.0,0,1,5,110.0,9,1.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2772.515793348412,0.07250113211862692,0.08013051425862462,23066.666666666668,7,4,7,7_1,7_1,7_0_0 -4665,2,62.0,3,0.0,7,112,2,0,56,8.0,79.32280045694411,0.0,435.213915193534,0.0,1084.4560401856618,15315.0,0,20,1,2169,201104665,,,135.0,,1.0,2.0,4.0,0.0,1.0,1.0,2566.3415350184137,0.0,319.0,624.0,0.0,27786.0,0,5,1,90.0,7,0.0,1,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1598.9927558361398,0.10440697067163825,0.057546705385306984,27786.0,8,4,8,8_1,8_0,8_0_0 -4666,2,52.0,2,0.0,1,111,6,43,21,5.0,2823.89169626721,0.0,613.9381248811608,0.0,0.0,39051.0,31,50,1,217,201104666,,,300.0,,3.0,2.0,6.0,1.0,3.0,2.0,2234.490856360785,0.0,450.0,0.0,0.0,37256.0,1,1,1,150.0,5,4.0,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3437.8298211483707,0.08803436073719932,0.09227587022622855,18628.0,5,3,5,5_1,5_2,5_1_0 -4667,2,29.0,2,0.0,4,211,2,0,42,9.0,0.0,0.0,354.7198054868929,0.0,862.0035191219362,35323.0,0,20,1,2171,201104667,,,120.0,,1.0,0.0,4.0,0.0,1.0,1.0,1635.4954107875974,0.0,260.0,496.0,0.0,34692.0,0,1,2,74.0,1,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1216.723324608829,0.034445639515579905,0.035072158555541015,34692.0,9,5,9,9_1,9_1,9_0_1 -4668,0,57.0,4,0.0,4,111,1,56,46,10.0,0.0,0.0,1192.0532340492887,0.0,1279.549159152337,37585.0,41,70,2,2172,201104668,,,,,2.0,4.0,3.0,0.0,2.0,1.5,2771.238047368578,1190.0,420.0,0.0,0.0,57910.0,1,1,5,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2471.602393201626,0.06576034038051419,0.0426800620480336,38606.666666666664,10,5,10,10_0,10_4,10_0_1 -4669,2,23.0,2,0.0,7,111,4,63,42,3.0,0.0,0.0,654.8673332065715,0.0,0.0,24239.0,30,20,2,2173,201104669,,,,470.0,2.0,0.0,2.0,0.0,2.0,1.5,3299.8194642027115,0.0,480.0,0.0,0.0,18635.0,3,3,3,57.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,654.8673332065715,0.027017093659250445,0.03514179410821419,12423.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_0 -4670,2,81.0,3,0.0,2,112,2,0,75,8.0,0.0,0.0,150.0737638598393,0.0,0.0,20645.0,0,70,1,2174,201104670,,,,,0.0,3.0,5.0,0.0,1.0,1.0,4879.6717989755025,0.0,110.0,0.0,0.0,24824.0,0,5,1,100.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,150.0737638598393,0.007269254728013528,0.006045510951492076,24824.0,7,4,7,7_1,7_1,7_0_1 -4671,2,54.0,3,0.0,5,111,2,0,64,6.0,0.0,0.0,343.33550381994576,0.0,709.6659202021365,25635.0,0,50,1,2175,201104671,,,,450.0,1.0,2.0,4.0,0.0,1.0,1.0,2338.979067395245,660.0,0.0,0.0,0.0,21106.0,0,1,3,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1053.0014240220821,0.041076708563373594,0.04989109371847257,21106.0,6,3,6,6_1,6_4,6_0_0 -4672,0,37.0,2,0.0,5,111,3,0,34,10.0,0.0,0.0,286.504458277875,0.0,0.0,31039.0,0,20,2,2177,201104672,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2541.515553499302,0.0,210.0,0.0,0.0,42077.0,0,1,5,55.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,286.504458277875,0.009230466776567383,0.006809051459891984,42077.0,10,5,10,10_0,10_4,10_0_0 -4673,1,19.0,3,207.0,7,111,1,0,84,1.0,0.0,0.0,573.00891655575,0.0,0.0,5591.0,0,41,2,2178,201104673,,,,,0.0,0.0,1.0,0.0,1.0,1.0,8893.306859738836,0.0,420.0,0.0,0.0,2484.0,0,3,3,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,573.00891655575,0.10248773324195136,0.23067991809812805,2484.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -4674,2,37.0,2,0.0,5,111,2,85,34,8.0,0.0,0.0,709.4396109737858,0.0,1564.1192887293198,73159.0,12,10,1,218,201104674,,,,,1.0,0.0,8.0,3.0,5.0,2.4,1520.1337426636471,0.0,520.0,900.0,0.0,61713.0,6,1,3,170.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2273.5588997031055,0.031076954300948693,0.036840842281255254,25713.75,8,4,8,8_1,8_3,8_0_0 -4675,2,49.0,2,0.0,99,112,6,62,48,9.0,0.0,0.0,1878.357413141647,90.37133668213848,667.7311158265557,47703.0,70,50,1,2183,201104675,,,80.0,,2.0,4.0,3.0,0.0,2.0,1.5,3734.856381251868,621.0,1140.0,0.0,0.0,52980.0,1,1,3,85.0,9,1.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2636.4598656503413,0.05526821930801713,0.049763304372411124,35320.0,9,5,9,9_1,9_1,9_0_0 -4676,0,49.0,4,0.0,1,111,2,46,33,10.0,0.0,0.0,780.3079632271495,0.0,1612.877091368492,62010.0,41,20,1,2184,201104676,,,320.0,,2.0,2.0,6.0,0.0,2.0,1.5,2364.626492279741,1500.0,0.0,0.0,0.0,61292.0,1,1,5,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2393.1850545956413,0.038593534181513324,0.03904563490497359,40861.333333333336,10,5,10,10_1,10_4,10_1_0 -4677,2,63.0,3,0.0,5,111,5,43,75,7.0,0.0,860.5143181293328,1405.236152505768,344.10624352045033,0.0,24417.0,50,50,1,2185,201104677,,,600.0,,1.0,1.0,5.0,1.0,3.0,2.0,1310.250022719017,0.0,1030.0,0.0,0.0,44900.0,1,5,1,170.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2609.856714155551,0.10688687038356681,0.05812598472506795,22450.0,7,4,7,7_1,7_3,7_0_0 -4678,1,26.0,2,127.0,1,111,2,0,46,4.0,0.0,0.0,425.66376658427146,0.0,302.3963958210018,11316.0,0,60,2,2186,201104678,,,,330.0,1.0,0.0,2.0,0.0,1.0,1.0,3834.5923192019263,0.0,312.0,174.0,0.0,16655.0,0,1,3,60.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,728.0601624052733,0.06433900339389124,0.04371420969110017,16655.0,4,2,4_1,4_0_1,4_3_1,4_1_0 -4679,2,84.0,3,0.0,1,400,5,77,78,2.0,0.0,534.3516330319244,180.08851663180715,140.77073598563877,0.0,8228.0,71,70,1,2187,201104679,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2980.8314164877033,0.0,132.0,0.0,0.0,17105.0,5,5,1,40.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,855.2108856493703,0.10393909645714272,0.04999771327970595,11403.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -4680,2,59.0,3,0.0,1,111,2,0,78,1.0,0.0,0.0,422.93515269591074,0.0,358.0095260869332,12958.0,0,60,1,2188,201104680,,,,,0.0,6.0,5.0,1.0,2.0,1.5,3184.7281393024487,0.0,310.0,206.0,0.0,7310.0,0,4,1,82.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,780.944678782844,0.06026737758781016,0.10683237739847387,4873.333333333333,1,1,1_0,1_1_0,1_3_0,1_1_0 -4681,2,82.0,3,0.0,9,111,2,72,72,2.0,0.0,0.0,703.9823831970643,0.0,1492.864965576095,24266.0,71,70,1,2189,201104681,,,,,0.0,0.0,4.0,0.0,2.0,1.5,4526.8890282878665,0.0,516.0,859.0,0.0,17691.0,5,5,1,97.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2196.8473487731594,0.09053191085358771,0.1241788111906144,11794.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -4682,2,58.0,2,0.0,1,300,2,0,78,6.0,0.0,346.98157989085996,3833.702513146804,1329.5013954199217,0.0,16590.0,0,50,1,2190,201104682,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2334.0469618809498,0.0,2810.0,0.0,0.0,19725.0,0,5,1,120.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5510.185488457586,0.33213896856284425,0.27935034162015643,19725.0,6,3,6,6_1,6_0,6_1_0 -4683,1,46.0,4,263.0,2,111,1,0,22,2.0,0.0,0.0,491.1504999049286,0.0,260.6865481215533,5309.0,0,71,2,2192,201104683,,,,1.0,1.0,0.0,2.0,0.0,1.0,1.0,3942.43481701238,0.0,360.0,150.0,0.0,11510.0,0,1,3,33.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,751.8370480264819,0.14161556753182933,0.06532033432028513,11510.0,2,1,2_1,2_0_1,2_4_1,2_0_1 -4684,2,82.0,2,0.0,7,112,6,72,72,6.0,0.0,0.0,1545.7597677563447,208.54923849724264,0.0,18206.0,50,70,1,2194,201104684,,,275.0,,0.0,2.0,5.0,0.0,2.0,1.5,1643.495253400978,0.0,1133.0,0.0,0.0,28680.0,5,5,1,100.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1754.3090062535873,0.09635883808928855,0.0611683753923845,19120.0,5,3,5,5_1,5_1,5_0_0 -4685,0,63.0,4,0.0,1,112,2,0,77,2.0,999.4672857574958,0.0,253.76109161754644,83.41969539889705,0.0,11374.0,0,70,1,2195,201104685,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2131.6670564946985,0.0,186.0,0.0,0.0,12015.0,0,5,5,68.0,9,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1336.6480727739395,0.11751785412114818,0.11124827904901702,12015.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -4686,1,61.0,5,177.0,4,111,2,0,78,3.0,0.0,0.0,468.18477793628966,0.0,967.7262548210953,8360.0,0,70,2,2197,201104686,,,,48.0,0.0,3.0,2.0,0.0,1.0,1.0,3194.0143074809102,900.0,0.0,0.0,0.0,13864.0,0,5,3,35.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1435.9110327573849,0.17175969291356277,0.10357119393806873,13864.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -4687,2,51.0,3,0.0,1,111,2,54,54,8.0,0.0,0.0,553.908619337225,0.0,2514.756234212584,25986.0,50,70,1,2198,201104687,,,420.0,,2.0,0.0,3.0,0.0,2.0,1.5,1283.3766897014889,0.0,406.0,1447.0,0.0,37435.0,1,1,1,70.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3068.664853549809,0.1180891577599403,0.0819731495538883,24956.666666666668,8,4,8,8_1,8_3,8_1_0 -4688,2,43.0,5,0.0,1,300,4,85,85,1.0,0.0,346.98157989085996,3124.262902173018,182.4805836850873,0.0,20076.0,43,50,1,2199,201104688,,,,,0.0,1.0,6.0,3.0,5.0,2.6,1484.236617195877,0.0,2290.0,0.0,0.0,22990.0,7,7,1,150.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3653.7250657489653,0.18199467352804172,0.15892671012392193,8842.307692307691,1,1,1_0,1_1_0,1_0_0,1_1_0 -4689,2,75.0,3,0.0,1,221,2,77,77,6.0,2538.3296146222115,0.0,368.36287492869644,260.6865481215533,0.0,23541.0,71,70,1,22,201104689,,,235.0,,0.0,2.0,5.0,0.0,2.0,1.5,2739.6399774681213,0.0,270.0,0.0,0.0,32098.0,5,5,1,102.0,1,1.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3167.379037672461,0.13454734453389663,0.09867839235069041,21398.666666666668,6,3,6,6_1,6_1,6_1_0 -4690,2,48.0,2,0.0,9,300,5,65,52,5.0,0.0,832.755791738064,955.0148609262501,46.92357866187959,0.0,44605.0,71,50,1,220,201104690,,,,,2.0,2.0,4.0,2.0,4.0,2.3,1692.992263484472,0.0,700.0,0.0,0.0,41707.0,1,1,2,140.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1834.6942313261939,0.04113203074377746,0.04399007915520641,18133.478260869568,5,3,5,5_1,5_0,5_0_0 -4692,2,35.0,3,0.0,1,111,2,42,47,5.0,0.0,0.0,613.9381248811608,0.0,955.8506764456954,49145.0,41,42,1,2202,201104692,,,450.0,,2.0,2.0,4.0,1.0,3.0,1.8,2192.1770271542764,0.0,450.0,550.0,0.0,34110.0,1,1,2,100.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1569.7888013268562,0.03194198395211835,0.04602136620717843,18950.0,5,3,5,5_1,5_2,5_1_0 -4693,2,42.0,3,0.0,1,300,6,48,43,8.0,2181.377012565963,0.0,573.00891655575,182.4805836850873,0.0,39812.0,43,10,1,2203,201104693,,,449.0,,3.0,2.0,7.0,2.0,4.0,2.3,2332.991429212116,0.0,420.0,0.0,0.0,57597.0,1,1,2,180.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2936.8665128068005,0.07376837417881042,0.05098992157242219,25042.17391304348,8,4,8,8_1,8_0,8_1_0 -4694,2,46.0,3,0.0,1,111,2,52,46,4.0,0.0,0.0,720.3540665272286,0.0,604.7927916420036,46520.0,31,41,1,2206,201104694,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2060.7305581828314,0.0,528.0,348.0,0.0,31514.0,4,1,2,135.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1325.1468581692322,0.028485530055228553,0.04204946557622746,15006.666666666666,4,2,4_0,4_1_0,4_3_0,4_1_0 -4695,2,57.0,2,0.0,2,112,1,0,54,8.0,0.0,0.0,245.5752499524643,121.65372245672486,0.0,16418.0,0,60,2,2207,201104695,,,,298.0,1.0,2.0,3.0,0.0,1.0,1.0,3193.9786344057434,0.0,180.0,0.0,0.0,28221.0,0,1,3,55.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,367.22897240918917,0.022367460860591375,0.013012613741865603,28221.0,8,4,8,8_0,8_2,8_0_1 -4696,2,66.0,2,0.0,2,111,2,77,72,10.0,0.0,0.0,2994.6969445810296,0.0,5390.942782534608,40629.0,70,50,1,2208,201104696,,,644.0,,0.0,3.0,6.0,0.0,2.0,1.5,2965.4005179953733,2030.0,1421.0,1846.0,0.0,78648.0,5,5,1,140.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,8385.639727115638,0.20639542511791178,0.10662241540936372,52432.0,10,5,10,10_1,10_2,10_0_1 -4697,1,22.0,2,480.0,1,111,2,0,85,1.0,0.0,0.0,158.25960552492145,0.0,0.0,9426.0,0,71,2,2209,201104697,,,,,0.0,3.0,4.0,3.0,8.0,3.7,2397.1099889601355,0.0,116.0,0.0,0.0,14653.0,0,6,3,92.0,6,4.0,5,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,158.25960552492145,0.016789688682890033,0.010800491744006106,3960.27027027027,1,1,1_1,1_0_1,1_2_1,1_1_0 -4698,2,63.0,2,0.0,1,111,6,0,77,2.0,0.0,0.0,764.011888741,0.0,0.0,9843.0,0,70,2,221,201104698,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2493.3901889576446,0.0,560.0,0.0,0.0,11894.0,0,5,1,40.0,5,4.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,764.011888741,0.07761982004886722,0.06423506715495207,11894.0,2,1,2_0,2_0_0,2_2_0,2_1_0 -4699,2,62.0,3,0.0,7,111,2,77,74,6.0,0.0,0.0,894.9853553823143,0.0,1670.1318182987513,56156.0,50,31,1,2210,201104699,,,423.0,,0.0,2.0,6.0,0.0,2.0,1.5,1952.1888534296154,0.0,656.0,961.0,0.0,28798.0,5,5,2,147.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2565.1171736810657,0.045678416797511674,0.08907275413851884,19198.666666666668,5,3,5,5_1,5_4,5_0_0 -4700,2,80.0,2,0.0,2,111,4,0,75,5.0,0.0,0.0,654.8673332065715,0.0,0.0,12479.0,0,41,1,2211,201104700,,,,410.0,0.0,0.0,2.0,0.0,1.0,1.0,5744.410645632105,0.0,480.0,0.0,0.0,18476.0,0,5,3,30.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,654.8673332065715,0.05247754893874281,0.03544421591289086,18476.0,5,3,5,5_1,5_2,5_0_1 -4701,2,62.0,3,0.0,1,112,2,78,77,7.0,1522.997768773327,0.0,559.3658471139465,194.64595593075978,0.0,48385.0,71,43,1,2212,201104701,,,253.0,,0.0,5.0,5.0,0.0,2.0,1.5,4995.123109858771,0.0,410.0,0.0,0.0,32720.0,5,5,2,230.0,7,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2277.009571818033,0.04706023709451344,0.0695907570849032,21813.333333333332,7,4,7,7_1,7_0,7_1_0 -4702,2,50.0,3,0.0,4,111,1,67,63,5.0,0.0,0.0,409.2920832541072,0.0,625.6477154917279,32782.0,71,50,2,2213,201104702,,,,,5.0,1.0,4.0,4.0,6.0,3.5,4373.060786434376,0.0,300.0,360.0,0.0,59960.0,4,1,3,79.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1034.939798745835,0.03157036784655711,0.01726050364819605,17131.428571428572,5,3,5,5_0,5_4,5_0_1 -4703,2,60.0,2,0.0,6,111,4,78,78,5.0,0.0,277.585263912688,784.4764929037054,180.74267336427695,0.0,46679.0,70,70,1,2214,201104703,,,551.0,,0.0,2.0,4.0,0.0,2.0,1.5,1406.9281129472754,0.0,575.0,0.0,0.0,28030.0,5,4,1,110.0,6,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1242.8044301806704,0.026624487032298687,0.04433836711311703,18686.666666666668,5,3,5,5_1,5_2,5_0_0 -4704,1,54.0,3,105.0,5,211,2,0,78,4.0,0.0,0.0,327.72934455540275,0.0,677.4083783747667,5869.0,0,70,2,2215,201104704,,,,170.0,0.0,3.0,1.0,0.0,1.0,1.0,2963.348484780475,630.0,0.0,0.0,0.0,14710.0,0,5,3,40.0,1,2.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1005.1377229301695,0.1712621780422848,0.06833023269409717,14710.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -4705,1,48.0,2,40.0,2,120,6,54,46,2.0,0.0,0.0,409.2920832541072,0.0,2328.799829885876,41285.0,71,50,1,2216,201104705,,,,261.0,2.0,0.0,3.0,1.0,3.0,2.0,3076.3055247980687,0.0,300.0,1340.0,0.0,21085.0,4,1,3,70.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,2738.0919131399833,0.0663217128046502,0.1298597065752897,10542.5,2,1,2_1,2_1_1,2_0_1,2_0_1 -4707,2,26.0,2,0.0,1,112,4,42,63,7.0,0.0,0.0,1500.737638598393,69.5164128324142,0.0,24326.0,20,50,1,2218,201104707,,,400.0,,2.0,0.0,3.0,1.0,3.0,1.8,1394.389306921834,0.0,1100.0,0.0,0.0,39705.0,1,1,2,80.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1570.2540514308073,0.0645504419728195,0.039548017917914804,22058.333333333332,7,4,7,7_1,7_0,7_1_0 -4708,2,55.0,3,0.0,6,112,4,54,63,5.0,0.0,0.0,3356.1950826836787,0.0,0.0,34786.0,50,50,1,2219,201104708,,,270.0,,3.0,1.0,5.0,1.0,3.0,2.0,1118.8475041479594,0.0,2460.0,0.0,0.0,37524.0,1,1,1,150.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3356.1950826836787,0.09648120170998904,0.08944129311064063,18762.0,5,3,5,5_1,5_0,5_0_0 -4709,2,31.0,1,0.0,5,111,1,0,37,9.0,0.0,0.0,177.35990274344644,0.0,145.98446694806984,27717.0,0,10,2,2220,201104709,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3106.0729161254676,0.0,130.0,84.0,0.0,30580.0,0,1,2,65.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,323.34436969151625,0.011665922346989798,0.010573720395406026,30580.0,9,5,9,9_0,9_2,9_0_0 -4710,2,47.0,2,0.0,3,111,2,85,34,6.0,0.0,0.0,182.81713052016786,0.0,1640.5873428449754,34526.0,31,10,1,2221,201104710,,,500.0,,1.0,0.0,6.0,3.0,5.0,2.4,2128.4548029860907,0.0,134.0,944.0,0.0,48870.0,6,1,2,100.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1823.4044733651433,0.052812502849016486,0.03731132542183637,20362.5,6,3,6,6_1,6_2,6_0_1 -4711,2,53.0,5,0.0,1,111,2,0,75,1.0,0.0,0.0,589.3805998859143,0.0,959.326497087316,26217.0,0,20,2,2222,201104711,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2889.441062208737,0.0,432.0,552.0,0.0,4842.0,0,4,1,55.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1548.7070969732304,0.05907262833174011,0.3198486363017824,4842.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -4712,2,83.0,2,0.0,1,111,2,75,75,9.0,0.0,0.0,951.6198220579543,0.0,3337.636735515821,21298.0,41,41,1,2223,201104712,,,200.0,,0.0,2.0,3.0,0.0,2.0,1.5,1780.3969001881917,518.0,500.0,1600.0,0.0,47281.0,5,5,1,90.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4289.256557573775,0.20139245739382924,0.090718397613709,31520.666666666668,9,5,9,9_1,9_2,9_1_0 -4713,2,60.0,2,0.0,5,112,2,56,75,3.0,0.0,0.0,532.0797082303393,0.0,2155.0087978048405,24077.0,70,50,1,2224,201104713,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1059.3660254113893,0.0,390.0,1240.0,0.0,21256.0,1,5,1,96.0,8,1.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2687.0885060351798,0.11160395838498068,0.12641553001670963,14170.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0 -4714,2,39.0,2,0.0,7,112,4,48,42,9.0,0.0,0.0,1920.944177405943,139.0328256648284,0.0,51709.0,43,20,1,2225,201104714,,,513.0,,2.0,0.0,4.0,1.0,3.0,1.8,2876.159399023245,0.0,1408.0,0.0,0.0,52127.0,1,1,2,110.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2059.9770030707714,0.03983788127928932,0.03951842621042399,28959.444444444445,8,4,8,8_1,8_0,8_0_0 -4715,2,62.0,2,0.0,2,112,1,78,78,4.0,0.0,0.0,532.0797082303393,173.79103208103552,0.0,12392.0,71,70,2,2226,201104715,,,250.0,219.0,0.0,5.0,3.0,0.0,2.0,1.5,2949.246610318857,0.0,390.0,0.0,0.0,21994.0,5,5,3,67.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,705.8707403113748,0.05696180925688951,0.03209378650138105,14662.666666666666,3,2,3_0,3_0_0,3_0_0,3_0_1 -4716,2,68.0,2,0.0,1,111,2,86,86,9.0,0.0,0.0,1773.5990274344645,0.0,86.89551604051776,46599.0,70,50,2,2227,201104716,,,,600.0,0.0,1.0,3.0,0.0,2.0,1.5,2206.5579889923824,0.0,1300.0,50.0,0.0,49839.0,5,5,3,90.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1860.4945434749823,0.03992563238427825,0.037330093771443695,33226.0,9,5,9,9_0,9_3,9_1_0 -4717,2,72.0,1,0.0,4,111,1,75,74,9.0,0.0,0.0,2046.460416270536,0.0,0.0,46519.0,41,43,2,2228,201104717,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2973.0873910729124,0.0,1500.0,0.0,0.0,55194.0,5,5,1,110.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2046.460416270536,0.04399192622950915,0.03707758843842693,36796.0,9,5,9,9_0,9_3,9_0_1 -4718,2,37.0,2,0.0,9,221,4,56,56,5.0,0.0,0.0,382.0059443705,52.13730962431066,0.0,36285.0,50,41,1,223,201104718,,,,585.0,2.0,0.0,3.0,0.0,2.0,1.5,1847.3977668974667,0.0,280.0,0.0,0.0,27993.0,1,1,3,70.0,1,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,434.14325399481066,0.011964813393821432,0.015508993462465996,18662.0,5,3,5,5_1,5_1,5_0_0 -4719,2,66.0,3,0.0,6,111,2,77,75,7.0,0.0,222.0682111301504,1732.6698191090536,151.1981979105009,0.0,31989.0,50,50,1,2230,201104719,,,490.0,,0.0,2.0,5.0,0.0,2.0,1.5,1875.5005760248491,0.0,1270.0,0.0,0.0,36780.0,5,5,1,115.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2105.9362281497047,0.06583313727061504,0.05725764622484243,24520.0,7,4,7,7_1,7_3,7_0_0 -4720,1,36.0,4,445.0,5,112,4,62,52,6.0,0.0,0.0,3567.662659031634,0.0,0.0,34429.0,31,50,1,2231,201104720,,,350.0,171.0,2.0,0.0,6.0,3.0,5.0,2.6,1792.1487587287843,0.0,2615.0,0.0,0.0,51191.0,1,4,3,90.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3567.662659031634,0.10362376656399065,0.06969316206035503,19688.846153846152,6,3,6,6_1,6_0,6_0_0 -4721,1,36.0,3,167.0,8,112,5,56,48,3.0,0.0,0.0,1657.6329371791342,0.0,0.0,38867.0,42,42,1,2233,201104721,,,574.0,,2.0,0.0,4.0,4.0,6.0,2.7,1294.1777267681396,0.0,1215.0,0.0,0.0,33720.0,1,1,2,90.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1657.6329371791342,0.0426488521671118,0.04915874665418547,12488.888888888889,2,1,2_1,2_1_1,2_0_1,2_0_0 -4722,1,54.0,4,177.0,1,221,4,0,69,1.0,0.0,0.0,102.3230208135268,0.0,0.0,2878.0,0,71,2,2234,201104722,,,,38.0,1.0,0.0,1.0,0.0,1.0,1.0,4361.33705296493,0.0,75.0,0.0,0.0,7670.0,0,4,3,19.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,102.3230208135268,0.03555351661345615,0.0133406806797297,7670.0,1,1,1_1,1_0_1,1_1_1,1_1_0 -4723,2,46.0,3,0.0,4,111,2,42,37,8.0,0.0,0.0,1146.0178331115,0.0,521.3730962431066,40983.0,20,50,1,2235,201104723,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.3,997.6181671413598,0.0,840.0,300.0,0.0,62769.0,1,1,1,132.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1667.3909293546067,0.04068494081337644,0.02656392374188862,27290.869565217392,8,4,8,8_1,8_3,8_0_1 -4724,2,80.0,3,0.0,1,111,2,0,86,5.0,0.0,0.0,422.93515269591074,0.0,1390.3282566482842,13958.0,0,70,2,2236,201104724,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2864.881590849342,0.0,310.0,800.0,0.0,16769.0,0,5,1,80.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1813.263409344195,0.12990854057488144,0.10813187484907835,16769.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -4725,2,66.0,3,0.0,4,211,1,77,75,3.0,0.0,0.0,299.63825787922536,0.0,619.3448030855009,23028.0,50,50,1,2238,201104725,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1394.6489029656896,576.0,0.0,0.0,0.0,21694.0,5,5,1,100.0,1,2.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,918.9830609647263,0.0399072025779367,0.042361162577889105,14462.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_1 -4726,2,24.0,2,0.0,1,400,5,11,11,9.0,0.0,0.0,0.0,187.69431464751835,0.0,17913.0,31,43,5,2239,201104726,,,,,2.0,0.0,7.0,0.0,2.0,1.5,4408.008914164744,0.0,0.0,0.0,0.0,49487.0,1,1,3,143.0,0,0.0,3,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,187.69431464751835,0.010478106104366568,0.0037928004253140898,32991.333333333336,9,5,9,9_1,9_0,9_1_0 -4727,2,42.0,5,0.0,6,111,4,0,46,4.0,0.0,0.0,661.6888679274732,0.0,0.0,12582.0,0,41,8,224,201104727,,,,200.0,1.0,0.0,1.0,0.0,1.0,1.0,3533.7664344613777,0.0,485.0,0.0,0.0,16050.0,0,1,3,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,661.6888679274732,0.05259011825842261,0.04122672074314475,16050.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -4728,1,42.0,3,440.0,8,111,2,85,21,1.0,0.0,0.0,1227.8762497623215,0.0,2606.865481215533,46324.0,71,41,2,2240,201104728,,,900.0,60.0,1.0,0.0,4.0,3.0,5.0,2.8,5964.481791380339,0.0,900.0,1500.0,0.0,12247.0,6,1,3,120.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3834.7417309778543,0.08278088530735374,0.31311682297524734,4373.928571428572,1,1,1_1,1_0_1,1_2_1,1_0_0 -4729,1,37.0,3,295.0,4,111,1,85,85,3.0,0.0,0.0,282.411537445334,0.0,0.0,17121.0,71,71,2,2244,201104729,,,150.0,,0.0,2.0,3.0,0.0,2.0,1.5,3160.6449023235687,0.0,207.0,0.0,0.0,19230.0,7,7,3,100.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,282.411537445334,0.016495037523820685,0.014685987386652832,12820.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -4730,2,62.0,3,0.0,5,111,4,74,78,8.0,0.0,0.0,395.6490138123036,0.0,676.0471147952281,19530.0,70,50,1,2246,201104730,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1811.024036306545,0.0,290.0,389.0,0.0,42546.0,5,4,1,100.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1071.6961286075318,0.054874353743345206,0.025189115982878103,28364.0,8,4,8,8_1,8_3,8_0_0 -4731,2,43.0,3,0.0,7,111,4,0,85,1.0,0.0,0.0,351.99119159853217,0.0,0.0,16751.0,0,12,1,2248,201104731,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3030.3522530845744,0.0,258.0,0.0,0.0,2890.0,0,7,1,70.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,351.99119159853217,0.021013144982301484,0.12179626006869625,2890.0,1,1,1_0,1_1_0,1_3_0,1_0_0 -4732,0,22.0,2,0.0,5,111,1,0,84,2.0,0.0,0.0,0.0,0.0,0.0,13978.0,0,41,2,2249,201104732,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3436.5926492638573,0.0,0.0,0.0,0.0,10276.0,0,3,5,47.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,10276.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -4733,2,62.0,2,0.0,4,111,1,0,34,10.0,0.0,0.0,1705.3836802254466,0.0,0.0,55604.0,0,20,2,2250,201104733,,,,,2.0,1.0,6.0,2.0,3.0,2.0,1891.8143268351498,0.0,1250.0,0.0,0.0,92459.0,0,1,1,120.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1705.3836802254466,0.03067016186291358,0.018444755840161007,46229.5,10,5,10,10_0,10_4,10_0_1 -4734,2,67.0,2,0.0,5,111,4,0,75,8.0,0.0,0.0,1064.1594164606786,0.0,0.0,21188.0,0,41,1,2252,201104734,,,550.0,,0.0,1.0,5.0,1.0,2.0,1.5,5478.754894817351,0.0,780.0,0.0,0.0,39671.0,0,5,1,90.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1064.1594164606786,0.0502246279243288,0.026824617893692587,26447.333333333332,8,4,8,8_1,8_2,8_0_0 -4735,2,44.0,2,0.0,99,111,2,0,34,10.0,0.0,0.0,613.9381248811608,0.0,0.0,33700.0,0,20,2,2254,201104735,,,,310.0,1.0,3.0,1.0,0.0,1.0,1.0,5171.249693066696,0.0,450.0,0.0,0.0,56710.0,0,1,3,19.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,613.9381248811608,0.018217748512794087,0.010825923556359739,56710.0,10,5,10,10_0,10_2,10_0_0 -4736,2,47.0,2,0.0,6,111,2,21,21,4.0,0.0,0.0,818.5841665082144,0.0,2954.447545377604,41582.0,10,71,1,2255,201104736,,,500.0,,2.0,1.0,5.0,2.0,4.0,2.3,4335.374089706619,0.0,600.0,1700.0,0.0,36770.0,1,1,2,130.0,5,4.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3773.0317118858184,0.09073713895160931,0.10261168648044107,15986.956521739132,4,2,4_0,4_1_0,4_2_0,4_0_0 -4737,2,88.0,1,0.0,5,111,1,86,75,9.0,0.0,0.0,211.46757634795537,0.0,0.0,27296.0,41,71,2,2256,201104737,,,,,0.0,6.0,4.0,0.0,2.0,1.5,3095.502444115092,0.0,155.0,0.0,0.0,45116.0,6,5,1,95.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,211.46757634795537,0.007747200188597427,0.004687196922332551,30077.333333333332,9,5,9,9_0,9_2,9_0_0 -4738,2,40.0,3,0.0,3,111,2,0,63,4.0,0.0,0.0,319.2478249382036,0.0,552.655482017693,12042.0,0,50,2,2257,201104738,,,,371.0,1.0,3.0,3.0,0.0,1.0,1.0,2797.8089737894547,0.0,234.0,318.0,0.0,15602.0,0,1,3,70.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,871.9033069558966,0.07240519074538254,0.05588407300063432,15602.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -4739,1,34.0,4,297.0,5,112,1,85,64,3.0,0.0,0.0,556.6372332255858,0.0,0.0,11342.0,42,71,8,2259,201104739,,,,63.0,1.0,1.0,5.0,3.0,5.0,2.4,2432.9398925480914,0.0,408.0,0.0,0.0,30227.0,6,1,3,71.0,8,2.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,556.6372332255858,0.049077520122164146,0.018415232514824024,12594.583333333334,2,1,2_1,2_0_1,2_1_1,2_0_0 -4740,2,48.0,3,0.0,8,400,2,52,47,8.0,0.0,0.0,1817.2568496482359,121.65372245672486,0.0,49177.0,41,50,1,2262,201104740,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2213.1472209929457,0.0,1332.0,0.0,0.0,41731.0,1,1,2,90.0,0,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1938.9105721049607,0.03942718287217522,0.046462116223070636,27820.666666666668,8,4,8,8_1,8_1,8_0_0 -4741,2,61.0,3,0.0,8,112,2,77,75,7.0,1269.1648073111057,0.0,402.4705485332054,27.806565132965684,0.0,43687.0,70,70,1,2265,201104741,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1836.575709706658,0.0,295.0,0.0,0.0,35134.0,5,5,2,135.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1699.4419209772768,0.038900403346013156,0.04837029432963161,23422.666666666668,7,4,7,7_1,7_0,7_0_0 -4742,2,89.0,1,0.0,2,111,2,77,77,6.0,0.0,0.0,368.36287492869644,0.0,2050.7341785562194,12263.0,71,70,1,2266,201104742,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2194.3414136854844,0.0,270.0,1180.0,0.0,29473.0,5,5,1,70.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2419.0970534849157,0.19726796489316772,0.08207841256352987,19648.666666666668,6,3,6,6_1,6_2,6_0_1 -4743,2,41.0,2,0.0,8,212,4,42,46,7.0,0.0,0.0,2046.460416270536,271.11401004641544,0.0,35883.0,20,20,1,2268,201104743,,,,,2.0,0.0,6.0,3.0,5.0,2.4,1000.5560591662936,0.0,1500.0,0.0,0.0,55542.0,1,1,2,150.0,1,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2317.5744263169513,0.06458697506665974,0.04172652094481566,23142.5,7,4,7,7_1,7_0,7_0_0 -4744,2,49.0,3,0.0,4,111,1,54,52,3.0,0.0,0.0,341.0767360450893,0.0,1122.6900672434895,50157.0,42,31,2,2269,201104744,646.0,646.0,,355.0,2.0,0.0,3.0,2.0,4.0,2.5,5211.7957916401965,0.0,250.0,646.0,0.0,34460.0,4,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1463.7668032885788,0.02918369925012618,0.04247727229508354,13784.0,3,2,3_0,3_0_0,3_4_0,3_0_1 -4745,1,24.0,3,108.0,5,111,2,84,63,4.0,0.0,0.0,268.42593935013934,0.0,554.8297194307613,19734.0,20,44,2,2273,201104745,,,,472.0,1.0,0.0,3.0,0.0,2.0,1.5,3059.2936603189432,516.0,0.0,0.0,0.0,24088.0,3,1,3,55.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,823.2556587809006,0.041717627383242153,0.03417700343660331,16058.666666666666,4,2,4_1,4_0_1,4_3_1,4_0_0 -4746,2,30.0,3,0.0,9,112,2,69,68,4.0,0.0,0.0,90.04425831590358,0.0,43.44775802025888,23515.0,50,50,1,2274,201104746,,,45.0,,2.0,0.0,3.0,1.0,3.0,1.8,1519.1385679413863,0.0,66.0,25.0,0.0,29311.0,4,1,3,80.0,7,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,133.49201633616246,0.0056768877880570895,0.004554331695819401,16283.888888888889,4,2,4_0,4_1_0,4_1_0,4_0_0 -4747,2,88.0,3,0.0,4,111,1,0,77,7.0,0.0,0.0,3547.198054868929,0.0,0.0,14851.0,0,41,2,228,201104747,,,,,0.0,2.0,4.0,0.0,1.0,1.0,4058.5084620296475,0.0,2600.0,0.0,0.0,22669.0,0,5,3,65.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3547.198054868929,0.23885247154191158,0.156477923810884,22669.0,7,4,7,7_0,7_3,7_0_1 -4748,2,77.0,2,0.0,5,111,2,75,75,7.0,0.0,0.0,608.4808971044394,0.0,2683.3335353311886,25589.0,50,60,1,2282,201104748,,,400.0,,0.0,1.0,5.0,0.0,2.0,1.5,3745.587450250043,0.0,446.0,1544.0,0.0,32340.0,5,5,1,120.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3291.814432435628,0.12864177703058455,0.10178770663066258,21560.0,6,3,6,6_1,6_4,6_0_0 -4749,2,35.0,1,0.0,1,400,2,55,47,6.0,0.0,0.0,1268.8054580877322,5307.578119754825,0.0,20795.0,43,43,1,2283,201104749,,,187.0,,2.0,0.0,6.0,2.0,4.0,2.1,3676.57238336351,0.0,930.0,0.0,0.0,43384.0,1,1,2,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6576.383577842557,0.31624830862431147,0.15158545956671945,20659.04761904762,6,3,6,6_1,6_0,6_1_0 -4750,2,51.0,2,0.0,6,400,6,13,13,1.0,0.0,0.0,0.0,156.41192887293198,0.0,29850.0,60,71,1,2284,201104750,,,,,2.0,1.0,6.0,2.0,4.0,2.3,2579.08691193398,0.0,0.0,0.0,0.0,15464.0,1,1,1,139.0,0,0.0,4,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,156.41192887293198,0.005239930615508609,0.010114584122667613,6723.478260869566,1,1,1_0,1_1_0,1_0_0,1_0_0 -4751,2,80.0,3,0.0,3,111,2,0,75,6.0,0.0,0.0,357.4484193752536,0.0,3180.37588708295,22949.0,0,50,1,2286,201104751,,,252.0,,0.0,4.0,4.0,0.0,1.0,1.0,1448.5315891704784,0.0,262.0,1830.0,0.0,19672.0,0,5,1,80.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3537.824306458204,0.15416028177516247,0.17984060118229991,19672.0,6,3,6,6_1,6_2,6_0_1 -4752,2,77.0,3,0.0,1,112,2,0,77,8.0,3466.4063799684577,0.0,982.3009998098572,104.27461924862132,0.0,13691.0,0,70,1,2287,201104752,,,270.0,,0.0,2.0,4.0,0.0,1.0,1.0,3579.8876954490456,0.0,720.0,0.0,0.0,25590.0,0,5,1,120.0,7,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4552.981999026936,0.332552917904239,0.17792035947741056,25590.0,8,4,8,8_1,8_0,8_1_0 -4753,2,58.0,3,0.0,2,111,2,0,54,7.0,2221.038412794435,0.0,941.3717914844465,0.0,0.0,48353.0,0,30,1,229,201104753,,,,,2.0,0.0,5.0,0.0,4.0,2.5,959.1324415099382,0.0,690.0,0.0,0.0,55995.0,0,1,1,80.0,9,7.0,5,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3162.4102042788813,0.06540256456225842,0.05647665334902904,22398.0,7,4,7,7_1,7_3,7_0_1 -4754,1,40.0,4,280.0,6,112,2,56,53,2.0,0.0,0.0,462.4625195392905,0.0,955.898489484393,18215.0,50,50,1,2290,201104754,,,800.0,,3.0,0.0,4.0,4.0,6.0,3.1,976.0057935645879,889.0,0.0,0.0,0.0,38010.0,1,4,3,100.0,5,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1418.3610090236834,0.07786774685828622,0.037315469850662544,12261.290322580644,2,1,2_1,2_1_1,2_0_1,2_0_0 -4755,1,24.0,3,298.0,9,111,6,0,37,9.0,0.0,0.0,409.2920832541072,0.0,0.0,17479.0,0,12,2,2292,201104755,,,,262.0,1.0,0.0,1.0,0.0,1.0,1.0,3106.7749617916916,0.0,300.0,0.0,0.0,29854.0,0,1,3,24.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,409.2920832541072,0.023416218505298198,0.013709790421856608,29854.0,9,5,9,9_0,9_4,9_0_0 -4756,2,80.0,2,0.0,5,111,1,0,75,9.0,0.0,0.0,371.09148881705715,0.0,95.58506764456953,24832.0,0,41,2,2297,201104756,,,,,0.0,8.0,5.0,0.0,1.0,1.0,2318.975863053018,0.0,272.0,55.0,0.0,29287.0,0,5,1,130.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,466.67655646162666,0.01879335359462092,0.015934597482214864,29287.0,9,5,9,9_0,9_2,9_0_0 -4757,2,39.0,3,0.0,2,221,5,63,52,5.0,0.0,0.0,338.1334507317647,0.0,698.9134062596798,27432.0,50,50,1,2298,201104757,,,157.0,,2.0,2.0,5.0,2.0,4.0,2.1,1300.0879196031067,650.0,0.0,0.0,0.0,36363.0,4,1,2,110.0,1,2.0,4,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1037.0468569914447,0.03780427446017223,0.02851928765479869,17315.714285714286,5,3,5,5_1,5_1,5_0_1 -4758,2,37.0,4,0.0,9,111,4,52,54,5.0,0.0,0.0,1637.1683330164287,0.0,0.0,20745.0,31,71,1,2299,201104758,,,160.0,,2.0,0.0,4.0,2.0,4.0,2.1,2672.5087332319777,0.0,1200.0,0.0,0.0,36948.0,1,1,2,90.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1637.1683330164287,0.07891869525265986,0.044310066391047655,17594.285714285714,5,3,5,5_1,5_3,5_0_0 -4759,2,55.0,2,0.0,1,111,2,0,33,10.0,0.0,0.0,682.1534720901786,0.0,0.0,24952.0,0,20,2,23,201104759,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2998.99156430886,0.0,500.0,0.0,0.0,66950.0,0,1,1,47.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,682.1534720901786,0.027338629051385805,0.010188998836298412,66950.0,10,5,10,10_0,10_3,10_1_0 -4760,2,55.0,4,0.0,6,111,2,0,52,3.0,0.0,0.0,695.7965415319821,0.0,2088.968205614047,30999.0,0,50,1,230,201104760,,,,,1.0,1.0,6.0,1.0,2.0,1.5,1391.3727942101489,0.0,510.0,1202.0,0.0,18873.0,0,1,1,120.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2784.764747146029,0.08983401874725085,0.14755283988481052,12582.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -4761,2,46.0,3,0.0,8,111,2,0,47,2.0,0.0,0.0,955.0148609262501,0.0,0.0,18303.0,0,43,2,2300,201104761,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,3865.26956885417,0.0,700.0,0.0,0.0,12320.0,0,1,3,35.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,955.0148609262501,0.05217805064340546,0.07751744001024757,12320.0,2,1,2_0,2_0_0,2_2_0,2_0_0 -4762,2,85.0,3,0.0,5,112,4,72,72,1.0,0.0,0.0,458.40713324460006,434.4775802025888,0.0,12898.0,70,70,1,2303,201104762,,,,,0.0,1.0,2.0,0.0,2.0,1.5,1505.7300128551376,0.0,336.0,0.0,0.0,10470.0,5,5,1,40.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,892.8847134471889,0.06922660206599388,0.08528029736840391,6980.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -4764,2,88.0,2,0.0,6,112,4,71,71,4.0,0.0,582.9290542166448,1678.0975413418394,119.9158121359145,0.0,17817.0,71,71,1,2306,201104764,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2507.195819647971,0.0,1230.0,0.0,0.0,25065.0,5,5,1,90.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2380.9424076943988,0.13363318222452708,0.09499072043464588,16710.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -4765,2,79.0,1,0.0,5,111,2,78,74,10.0,0.0,0.0,1364.3069441803573,0.0,2259.283417053462,38420.0,71,50,1,2307,201104765,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,2859.8250389223663,0.0,1000.0,1300.0,0.0,59894.0,5,5,1,140.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3623.5903612338193,0.09431520981868348,0.060500056119708476,39929.333333333336,10,5,10,10_1,10_3,10_0_0 -4766,2,54.0,2,0.0,6,111,4,56,62,6.0,0.0,0.0,2128.318832921357,66.0405921907935,0.0,42072.0,60,50,1,2309,201104766,,,360.0,,3.0,2.0,5.0,1.0,3.0,2.0,1516.669799908581,0.0,1560.0,0.0,0.0,42720.0,1,1,1,160.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2194.359425112151,0.05215724056646109,0.05136609141180128,21360.0,6,3,6,6_1,6_2,6_0_0 -4767,1,37.0,5,407.0,5,400,2,0,52,2.0,0.0,0.0,613.9381248811608,834.1969539889706,0.0,14020.0,0,50,2,2310,201104767,,,,,1.0,0.0,4.0,4.0,5.0,2.4,1885.9873348415917,0.0,450.0,0.0,0.0,28204.0,0,1,3,80.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1448.1350788701313,0.10329066183096515,0.051345024779114005,11751.666666666668,2,1,2_1,2_0_1,2_0_1,2_0_0 -4768,2,44.0,2,0.0,2,120,2,85,38,10.0,3331.5576191916525,555.170527825376,2171.829895695698,0.0,259.1355860132044,63865.0,60,42,1,2311,201104768,,,,,1.0,2.0,6.0,1.0,3.0,1.8,5406.090876861792,241.0,1500.0,0.0,0.0,132108.0,6,1,2,160.0,0,3.0,4,4,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,6317.6936287259305,0.09892262786699961,0.04782218812430686,73393.33333333333,10,5,10,10_1,10_1,10_0_1 -4769,2,50.0,3,0.0,6,221,5,0,85,3.0,107.87900862144399,582.9290542166448,447.49267769115716,0.0,0.0,34795.0,0,31,1,2312,201104769,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2468.815280371081,0.0,328.0,0.0,0.0,14456.0,0,5,2,100.0,1,3.0,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1138.300740529246,0.03271449175252898,0.07874244192925055,14456.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -4770,2,59.0,3,0.0,1,111,2,77,78,5.0,0.0,0.0,608.4808971044394,0.0,917.6166493878676,44218.0,50,50,2,2313,201104770,,,574.0,,1.0,0.0,4.0,2.0,4.0,2.5,1312.6279093855912,0.0,446.0,528.0,0.0,41989.0,4,5,1,70.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1526.097546492307,0.034513038728398095,0.036345174843228155,16795.6,4,2,4_0,4_0_0,4_3_0,4_1_0 -4771,1,47.0,3,45.0,4,111,1,68,56,1.0,0.0,0.0,482.9646582398465,0.0,458.8083246939338,21068.0,50,50,2,2315,201104771,,,,231.0,2.0,0.0,3.0,2.0,4.0,2.1,1821.2064490487724,0.0,354.0,264.0,0.0,17310.0,1,4,3,65.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,941.7729829337802,0.04470158453264573,0.05440629595226922,8242.857142857143,1,1,1_1,1_0_1,1_3_1,1_0_1 -4772,1,51.0,4,220.0,7,111,2,62,48,3.0,0.0,0.0,982.3009998098572,0.0,1876.9431464751838,26450.0,60,60,1,2316,201104772,,,552.0,131.0,2.0,2.0,5.0,2.0,4.0,2.3,1517.925716660489,0.0,720.0,1080.0,0.0,28750.0,4,1,3,80.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2859.244146285041,0.108099967723442,0.09945197030556664,12500.000000000002,2,1,2_1,2_1_1,2_2_1,2_0_0 -4773,1,55.0,3,292.0,5,111,1,56,77,3.0,0.0,0.0,573.00891655575,0.0,0.0,25850.0,50,70,2,2317,201104773,,,,51.0,1.0,0.0,3.0,2.0,4.0,2.1,2047.1048622527508,0.0,420.0,0.0,0.0,28627.0,4,5,3,70.0,8,6.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,573.00891655575,0.022166689228462284,0.0200163802199235,13631.904761904761,3,2,3_1,3_0_1,3_2_1,3_0_0 -4774,2,55.0,3,0.0,6,112,4,54,75,9.0,0.0,0.0,163.71683330164288,46.92357866187959,0.0,21576.0,50,50,1,2318,201104774,,,245.0,,1.0,2.0,7.0,0.0,2.0,1.5,1460.454810632819,0.0,120.0,0.0,0.0,47902.0,1,5,1,97.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,210.64041196352247,0.009762718389113944,0.004397319777118334,31934.666666666668,9,5,9,9_1,9_0,9_0_0 -4775,2,38.0,3,0.0,4,111,5,46,22,7.0,1499.2009286362436,624.566843803548,848.5989192801823,0.0,0.0,39318.0,31,31,1,232,201104775,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2058.7681526177034,0.0,622.0,0.0,0.0,46713.0,1,1,1,120.0,4,4.0,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2972.366691719974,0.07559811515641625,0.06363039607218492,22244.285714285714,7,4,7,7_1,7_2,7_0_1 -4776,2,58.0,2,0.0,5,111,2,0,21,6.0,0.0,0.0,907.2641178799375,0.0,1320.81184381587,18741.0,0,50,1,2322,201104776,,,500.0,,1.0,1.0,5.0,3.0,4.0,2.5,1416.2748936287219,0.0,665.0,760.0,0.0,50890.0,0,1,2,130.0,7,5.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2228.0759616958076,0.1188877840934746,0.04378219614257826,20356.0,6,3,6,6_1,6_2,6_0_0 -4777,2,35.0,5,0.0,6,111,4,0,53,6.0,0.0,0.0,1146.0178331115,0.0,0.0,15703.0,0,70,2,2323,201104777,,,,430.0,1.0,1.0,1.0,0.0,1.0,1.0,2501.4938740921784,0.0,840.0,0.0,0.0,20010.0,0,1,3,30.0,4,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1146.0178331115,0.07298082106040248,0.057272255527811095,20010.0,6,3,6,6_0,6_2,6_0_0 -4778,2,48.0,2,0.0,99,111,2,85,38,6.0,0.0,0.0,695.7965415319821,0.0,1303.4327406077664,30745.0,60,50,8,2325,201104778,,,468.0,590.0,2.0,2.0,4.0,1.0,3.0,2.0,1947.537150196384,0.0,510.0,750.0,0.0,42056.0,6,1,3,75.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1999.2292821397486,0.065026159770361,0.04753731410832577,21028.0,6,3,6,6_0,6_3,6_0_0 -4779,2,81.0,2,0.0,4,300,2,78,77,8.0,0.0,0.0,278.3186166127929,3197.7549902910537,0.0,28542.0,70,70,1,2328,201104779,,,,,0.0,0.0,4.0,0.0,2.0,1.5,1652.3639241774788,0.0,204.0,0.0,0.0,40974.0,5,5,1,103.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3476.0736069038467,0.12178801790007171,0.08483608158597761,27316.0,8,4,8,8_1,8_0,8_0_1 -4780,2,42.0,2,0.0,1,111,4,34,34,9.0,0.0,0.0,3274.3366660328575,0.0,0.0,52346.0,10,10,2,233,201104780,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2080.6673926929398,0.0,2400.0,0.0,0.0,66958.0,1,1,1,140.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3274.3366660328575,0.0625518027362713,0.048901351086245964,31884.761904761905,9,5,9,9_0,9_3,9_1_0 -4781,2,60.0,4,0.0,1,112,2,0,46,9.0,0.0,0.0,442.03544991443573,0.0,959.326497087316,17095.0,0,50,2,2333,201104781,,,200.0,480.0,1.0,0.0,4.0,0.0,1.0,1.0,2381.441183275194,0.0,324.0,552.0,0.0,29555.0,0,1,3,80.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1401.3619470017518,0.08197496033938297,0.04741539323301478,29555.0,9,5,9,9_0,9_2,9_1_0 -4782,1,48.0,4,471.0,8,111,4,0,46,2.0,0.0,0.0,1759.9559579926608,29.544475453776037,0.0,38359.0,0,41,1,2334,201104782,,,300.0,151.0,1.0,1.0,4.0,3.0,4.0,2.3,934.4828374287404,0.0,1290.0,0.0,0.0,22102.0,0,4,3,80.0,7,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1789.5004334464368,0.04665138385897538,0.080965543093224,9609.565217391306,1,1,1_1,1_1_1,1_2_1,1_0_0 -4783,1,35.0,4,88.0,1,111,2,0,56,5.0,0.0,0.0,638.4956498764072,0.0,0.0,34054.0,0,41,2,2335,201104783,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2724.6360735411286,0.0,468.0,0.0,0.0,18806.0,0,1,2,32.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,638.4956498764072,0.01874950519399798,0.033951698919302734,18806.0,5,3,5,5_0,5_3,5_1_0 -4785,2,66.0,3,0.0,5,221,4,78,75,8.0,0.0,0.0,204.6460416270536,0.0,0.0,32893.0,50,43,1,2338,201104785,,,400.0,,0.0,2.0,5.0,0.0,2.0,1.5,2650.6144692654802,0.0,150.0,0.0,0.0,37186.0,5,5,1,120.0,1,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,204.6460416270536,0.006221568164261502,0.005503308815873006,24790.666666666668,7,4,7,7_1,7_1,7_0_0 -4786,1,26.0,2,300.0,6,111,1,84,46,3.0,0.0,0.0,461.1357471329608,39.971937378638174,0.0,17138.0,30,20,2,2339,201104786,,,,248.0,1.0,0.0,4.0,0.0,2.0,1.5,4095.8333004907913,0.0,338.0,0.0,0.0,19935.0,3,1,3,67.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,501.10768451159896,0.029239566140249678,0.02513707973471778,13290.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -4787,1,74.0,3,246.0,4,111,2,0,77,5.0,0.0,0.0,466.5929749096822,0.0,3475.8206416207104,17273.0,0,71,2,2341,201104787,,,170.0,,0.0,9.0,3.0,1.0,2.0,1.5,3695.8867142850745,0.0,342.0,2000.0,0.0,27798.0,0,5,3,84.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,3942.4136165303926,0.22824139504025892,0.1418236425832935,18532.0,5,3,5,5_0,5_3,5_0_1 -4788,2,71.0,2,0.0,6,111,2,86,75,7.0,1189.8420068541616,0.0,706.7109970854251,0.0,2061.161640481081,29432.0,50,31,1,2342,201104788,,,,,0.0,3.0,7.0,0.0,2.0,1.5,2280.3840049351816,0.0,518.0,1186.0,0.0,36668.0,6,5,1,260.0,9,7.0,3,9,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3957.714644420668,0.13446978269980525,0.10793374725702705,24445.333333333332,7,4,7,7_1,7_3,7_0_0 -4789,2,59.0,2,0.0,4,112,6,85,34,9.0,3807.4944219333174,277.585263912688,873.1564442754286,0.0,0.0,29105.0,20,10,1,2343,201104789,,,200.0,,1.0,2.0,8.0,0.0,2.0,1.5,1316.5863882429312,0.0,640.0,0.0,0.0,52624.0,6,1,2,156.0,10,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4958.236130121434,0.17035685037352463,0.0942200541601063,35082.666666666664,9,5,9,9_1,9_0,9_0_1 -4790,2,66.0,3,0.0,7,111,4,52,74,10.0,0.0,0.0,2251.1064578975893,0.0,0.0,32550.0,50,20,1,2344,201104790,,,680.0,,1.0,4.0,6.0,0.0,2.0,1.5,1261.9485179296782,0.0,1650.0,0.0,0.0,64717.0,1,5,2,154.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2251.1064578975893,0.06915841652527156,0.034783850578636054,43144.666666666664,10,5,10,10_1,10_3,10_0_0 -4791,2,25.0,2,0.0,2,111,2,47,43,7.0,0.0,0.0,705.398398757343,0.0,1458.0408905971167,31107.0,10,41,2,2346,201104791,,,200.0,,2.0,0.0,4.0,0.0,2.0,1.5,3411.716174698302,1356.0,0.0,0.0,0.0,32885.0,1,1,2,75.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2163.4392893544596,0.06954831032740089,0.06578802765256073,21923.333333333332,7,4,7,7_0,7_2,7_0_1 -4792,2,35.0,3,0.0,8,111,2,0,43,7.0,0.0,0.0,409.2920832541072,0.0,728.1844244195388,31681.0,0,20,2,2348,201104792,,,,402.0,1.0,0.0,3.0,0.0,1.0,1.0,3094.787218642231,0.0,300.0,419.0,0.0,22212.0,0,1,3,63.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1137.476507673646,0.035904059457518574,0.051209999445058794,22212.0,7,4,7,7_0,7_3,7_0_0 -4793,2,82.0,4,0.0,2,111,2,0,86,2.0,0.0,2310.8973220731273,1023.230208135268,542.2280200928309,0.0,20226.0,0,70,1,2349,201104793,,,220.0,,1.0,2.0,4.0,1.0,3.0,2.0,2890.975767044654,0.0,750.0,0.0,0.0,20500.0,0,5,1,50.0,8,7.0,5,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3876.355550301226,0.19165210868689933,0.18909051464884027,10250.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -4794,2,40.0,4,0.0,1,300,2,43,34,7.0,1903.7472109666587,555.170527825376,818.5841665082144,86.89551604051776,0.0,26339.0,50,20,1,235,201104794,,,150.0,,2.0,0.0,5.0,2.0,4.0,2.3,1518.6470811187107,0.0,600.0,0.0,0.0,50520.0,1,1,2,180.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3364.3974213407664,0.12773444023466216,0.06659535671695896,21965.217391304348,7,4,7,7_1,7_0,7_1_0 -4795,2,42.0,2,0.0,8,112,2,21,47,1.0,0.0,346.98157989085996,2032.8173468287323,66.0405921907935,0.0,19769.0,50,50,1,2351,201104795,,,,,2.0,0.0,3.0,1.0,3.0,1.8,4180.986519366842,0.0,1490.0,0.0,0.0,16220.0,1,1,2,90.0,9,1.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2445.839518910386,0.12372095295211623,0.15079158562949357,9011.111111111111,1,1,1_0,1_1_0,1_1_0,1_0_0 -4796,1,59.0,4,77.0,99,111,2,0,78,1.0,0.0,0.0,300.1475277196786,0.0,625.6477154917279,7903.0,0,70,2,2352,201104796,,,116.0,218.0,1.0,1.0,3.0,1.0,2.0,1.5,3119.258641850484,0.0,220.0,360.0,0.0,13154.0,0,5,3,65.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,925.7952432114065,0.11714478593083721,0.07038127134038365,8769.333333333334,1,1,1_1,1_0_1,1_3_1,1_0_0 -4797,2,28.0,3,0.0,1,111,1,0,46,1.0,255.41941747136002,0.0,536.1726290628804,0.0,0.0,19595.0,0,31,2,2353,201104797,161.0,161.0,,,1.0,0.0,2.0,0.0,1.0,1.0,3093.780975128456,0.0,393.0,0.0,0.0,3458.0,0,4,1,29.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,791.5920465342405,0.04039765483716461,0.2289161499520649,3458.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -4798,2,80.0,3,0.0,1,400,2,77,78,3.0,0.0,971.5484236944079,1332.927884464209,166.8393907977941,0.0,19892.0,70,70,1,2354,201104798,,,133.0,,0.0,7.0,4.0,0.0,2.0,1.5,2083.073786284617,0.0,977.0,0.0,0.0,19463.0,5,5,1,70.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2471.3156989564113,0.12423666292762976,0.12697506545529524,12975.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -4799,1,32.0,3,262.0,1,111,2,46,46,8.0,0.0,0.0,545.7227776721429,0.0,834.1969539889706,22691.0,10,20,2,2355,201104799,,,,318.0,2.0,0.0,4.0,0.0,2.0,1.5,3723.8118181277673,0.0,400.0,480.0,0.0,37584.0,4,1,3,100.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1379.9197316611135,0.06081352658151309,0.03671561652993597,25056.0,8,4,8,8_0,8_3,8_1_0 -4800,2,77.0,3,0.0,4,221,2,0,77,9.0,0.0,0.0,532.0797082303393,0.0,2120.2505913886334,18744.0,0,60,1,2356,201104800,,,156.0,,0.0,3.0,6.0,0.0,1.0,1.0,4862.200328181966,0.0,390.0,1220.0,0.0,29404.0,0,5,1,141.0,1,1.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2652.3302996189727,0.14150289690668869,0.0902030437906058,29404.0,9,5,9,9_1,9_1,9_0_1 -4801,1,37.0,4,421.0,4,111,4,0,56,1.0,0.0,0.0,338.3481221567286,0.0,0.0,7135.0,0,50,2,2358,201104801,,,,,1.0,0.0,4.0,2.0,3.0,1.8,3132.3391646414807,0.0,248.0,0.0,0.0,16091.0,0,4,3,67.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,338.3481221567286,0.04742090009204325,0.021027165630273358,8939.444444444443,1,1,1_1,1_0_1,1_3_1,1_0_1 -4802,2,35.0,3,0.0,5,300,2,62,54,8.0,1586.456009138882,0.0,613.9381248811608,76.46805411565563,0.0,29627.0,50,20,1,2359,201104802,,,200.0,,2.0,2.0,5.0,1.0,3.0,1.8,1233.9391062506586,0.0,450.0,0.0,0.0,47147.0,1,1,2,90.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2276.8621881356985,0.07685091936867379,0.04829283280242006,26192.777777777777,8,4,8,8_1,8_0,8_0_0 -4803,2,53.0,3,0.0,4,120,2,78,62,7.0,2347.9548935255457,194.3096847388816,695.7965415319821,0.0,0.0,32128.0,71,50,1,236,201104803,,,280.0,,1.0,1.0,5.0,0.0,2.0,1.5,1326.740596166014,0.0,510.0,0.0,0.0,35463.0,6,1,1,100.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3238.0611197964095,0.10078626493390219,0.09130815553665537,23642.0,7,4,7,7_1,7_1,7_0_1 -4804,2,91.0,2,0.0,2,111,2,77,71,4.0,7205.683193508803,0.0,1169.2110511625663,145.98446694806984,0.0,29019.0,71,71,2,2360,201104804,,,,,0.0,6.0,6.0,0.0,2.0,1.5,3655.05812945436,0.0,857.0,0.0,0.0,24477.0,5,5,1,150.0,6,4.0,3,8,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,8520.87871161944,0.29363102490159687,0.34811777226046653,16318.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -4805,2,57.0,2,0.0,1,300,4,0,64,6.0,0.0,0.0,234.66079439902146,38.23402705782782,0.0,15221.0,0,50,1,2363,201104805,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1911.0893301418541,0.0,172.0,0.0,0.0,19969.0,0,1,1,85.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,272.8948214568493,0.01792883657163454,0.013665923253885987,19969.0,6,3,6,6_1,6_0,6_1_0 -4806,2,29.0,2,0.0,1,111,4,0,45,9.0,0.0,0.0,463.8643610213215,0.0,0.0,19282.0,0,10,2,2364,201104806,,,,510.0,1.0,0.0,1.0,0.0,1.0,1.0,3690.0866961502647,0.0,340.0,0.0,0.0,35433.0,0,1,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,463.8643610213215,0.024056859299933692,0.013091309260331372,35433.0,9,5,9,9_0,9_4,9_1_0 -4807,2,28.0,3,0.0,3,211,2,54,37,9.0,0.0,0.0,794.0266415129679,0.0,2773.704872013327,40730.0,31,31,1,2365,201104807,,,,,3.0,1.0,5.0,0.0,4.0,2.5,1032.1899731516087,0.0,582.0,1596.0,0.0,91862.0,1,1,1,95.0,1,2.0,5,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3567.731513526295,0.08759468483983048,0.03883794728534427,36744.8,9,5,9,9_1,9_1,9_0_1 -4808,2,41.0,3,0.0,8,111,4,0,56,6.0,0.0,0.0,177.35990274344644,0.0,0.0,16234.0,0,71,8,2368,201104808,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3579.9985890073517,0.0,130.0,0.0,0.0,20540.0,0,1,2,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,177.35990274344644,0.010925212685933623,0.00863485407709087,20540.0,6,3,6,6_0,6_3,6_0_0 -4809,2,26.0,4,0.0,7,111,2,0,42,5.0,0.0,0.0,2384.8085384272645,0.0,1876.9431464751838,22076.0,0,41,1,2371,201104809,,,1896.0,415.0,1.0,6.0,5.0,1.0,3.0,2.0,2167.3874491399615,0.0,1748.0,1080.0,0.0,35059.0,0,1,3,119.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4261.751684902449,0.1930490888250792,0.12155941940450238,17529.5,5,3,5,5_1,5_3,5_0_0 -4810,2,80.0,3,0.0,1,111,2,0,86,2.0,0.0,0.0,305.6047554964,0.0,1835.2332987757352,18391.0,0,70,1,2372,201104810,,,241.0,,0.0,2.0,4.0,0.0,1.0,1.0,2783.119558139893,0.0,224.0,1056.0,0.0,12250.0,0,6,5,80.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2140.838054272135,0.11640683237845333,0.1747622901446641,12250.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -4811,2,54.0,1,0.0,2,111,2,45,46,9.0,988.3620936935235,0.0,1358.8497164036357,140.77073598563877,0.0,38919.0,41,42,1,2375,201104811,,,,,2.0,2.0,5.0,1.0,3.0,2.0,2883.298614037638,0.0,996.0,0.0,0.0,65655.0,1,1,1,100.0,9,7.0,4,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2487.982546082798,0.0639271961274133,0.03789479165460053,32827.5,9,5,9,9_1,9_3,9_0_1 -4812,0,37.0,2,0.0,6,111,5,52,46,7.0,0.0,485.77421184720396,499.33634157001075,52.13730962431066,0.0,24913.0,41,31,1,2376,201104812,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3223.113923216736,0.0,366.0,0.0,0.0,36393.0,3,1,5,90.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1037.2478630415253,0.04163480363832237,0.02850130143273501,24262.0,7,4,7,7_1,7_2,7_0_0 -4813,2,41.0,3,0.0,1,111,2,42,34,6.0,0.0,0.0,649.4101054298501,0.0,1148.7587220556447,58735.0,60,20,1,2377,201104813,,,278.0,,2.0,2.0,4.0,1.0,3.0,1.8,1354.2098388279403,0.0,476.0,661.0,0.0,37916.0,1,1,2,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1798.1688274854948,0.030614945560321696,0.047425066660130154,21064.444444444445,6,3,6,6_1,6_3,6_1_0 -4814,1,30.0,3,250.0,99,111,4,0,52,1.0,0.0,0.0,261.9469332826286,0.0,0.0,4827.0,0,20,2,2378,201104814,,,,75.0,1.0,0.0,2.0,0.0,1.0,1.0,3472.9455286015623,0.0,192.0,0.0,0.0,8010.0,0,4,3,16.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,261.9469332826286,0.054267025747385254,0.03270248854964152,8010.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -4815,2,48.0,2,0.0,4,111,2,43,22,10.0,2535.156702603934,346.98157989085996,1365.8982074386508,0.0,668.8063672208015,92643.0,33,31,1,238,201104815,,,380.0,,2.0,6.0,7.0,0.0,2.0,1.5,2435.6089492546685,622.0,764.0,0.0,0.0,92471.0,1,1,2,232.0,5,4.0,3,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4916.842857154246,0.05307300991067049,0.053171727970436636,61647.333333333336,10,5,10,10_1,10_2,10_0_1 -4816,1,49.0,3,88.0,4,111,1,0,85,3.0,0.0,0.0,605.7522832160786,0.0,0.0,29860.0,0,33,2,2380,201104816,,,,322.0,1.0,0.0,3.0,1.0,2.0,1.5,3136.3282220511555,0.0,444.0,0.0,0.0,19712.0,0,7,3,145.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,605.7522832160786,0.020286412699801692,0.030730128004062426,13141.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_1 -4817,2,32.0,2,0.0,9,112,4,48,54,8.0,0.0,277.585263912688,155.5309916365607,0.0,0.0,40065.0,50,31,1,2383,201104817,,,191.0,,2.0,0.0,4.0,2.0,4.0,2.1,2239.6934655824098,0.0,114.0,0.0,0.0,54551.0,1,1,2,90.0,6,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,433.1162555492487,0.010810339586902501,0.007939657486558426,25976.666666666664,8,4,8,8_1,8_0,8_0_0 -4819,2,82.0,1,0.0,3,111,2,0,77,8.0,2570.058734804989,0.0,834.9558498383786,208.54923849724264,0.0,15908.0,0,70,1,2386,201104819,,,1576.0,,0.0,3.0,5.0,0.0,1.0,1.0,1744.615037485687,0.0,612.0,0.0,0.0,27651.0,0,5,1,132.0,7,6.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3613.56382314061,0.22715387372017917,0.1306847427991975,27651.0,8,4,8,8_1,8_2,8_0_1 -4820,2,73.0,3,0.0,9,111,2,77,77,4.0,0.0,0.0,709.4396109737858,0.0,1654.4906254114583,49665.0,70,70,1,2387,201104820,,,306.0,,0.0,1.0,4.0,0.0,2.0,1.5,1922.592516624132,0.0,520.0,952.0,0.0,24230.0,5,5,1,150.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2363.930236385244,0.047597508031516036,0.09756212283884622,16153.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_0 -4821,2,47.0,2,0.0,1,111,2,46,46,10.0,237.96840137083234,0.0,895.7935417847675,0.0,1851.582900891029,39275.0,50,71,1,2388,201104821,,,182.0,,2.0,0.0,4.0,0.0,2.0,1.5,3278.867815743744,1722.0,0.0,0.0,0.0,60151.0,1,1,1,90.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2985.344844046629,0.07601132639202111,0.04963084311227792,40100.666666666664,10,5,10,10_1,10_4,10_1_0 -4822,2,32.0,2,0.0,2,111,2,55,55,8.0,0.0,0.0,1604.4249663561002,0.0,667.3575631911764,60559.0,60,43,2,239,201104822,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2924.7598937474477,0.0,1176.0,384.0,0.0,37925.0,1,1,1,80.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2271.7825295472767,0.03751354100211821,0.059901978366441046,25283.333333333332,8,4,8,8_0,8_2,8_0_1 -4823,2,31.0,2,0.0,7,111,4,0,56,5.0,0.0,0.0,613.9381248811608,0.0,0.0,18787.0,0,42,8,2390,201104823,,,,462.0,1.0,0.0,1.0,0.0,1.0,1.0,3415.1265292544144,0.0,450.0,0.0,0.0,18164.0,0,1,3,35.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,613.9381248811608,0.03267888033646462,0.033799720594646594,18164.0,5,3,5,5_0,5_3,5_0_0 -4824,2,42.0,2,0.0,9,111,4,0,54,6.0,0.0,0.0,736.7257498573929,0.0,0.0,19846.0,0,50,2,2391,201104824,,,204.0,,1.0,0.0,3.0,0.0,1.0,1.0,2287.9302874055707,0.0,540.0,0.0,0.0,19816.0,0,1,2,70.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,736.7257498573929,0.0371221278775266,0.0371783281114954,19816.0,6,3,6,6_0,6_3,6_0_0 -4825,2,32.0,5,0.0,1,111,6,0,35,9.0,0.0,0.0,654.8673332065715,0.0,0.0,28882.0,0,20,2,2393,201104825,,,,750.0,1.0,0.0,2.0,0.0,1.0,1.0,3469.277623746239,0.0,480.0,0.0,0.0,28990.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,654.8673332065715,0.022673891462037653,0.02258942163527325,28990.0,8,4,8,8_0,8_4,8_1_0 -4826,2,41.0,4,0.0,2,111,1,85,65,4.0,0.0,0.0,477.50743046312505,0.0,0.0,21014.0,71,71,2,2394,201104826,,,,,2.0,0.0,4.0,3.0,5.0,3.0,4390.683065258503,0.0,350.0,0.0,0.0,48760.0,6,1,2,90.0,7,5.0,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,477.50743046312505,0.022723300202870708,0.009793015390958266,16253.333333333334,4,2,4_0,4_0_0,4_2_0,4_0_1 -4827,2,49.0,2,0.0,1,300,2,54,13,8.0,3490.203220105541,0.0,545.7227776721429,0.0,0.0,37868.0,60,50,1,2395,201104827,,,140.0,,2.0,0.0,5.0,2.0,4.0,2.5,1171.2454526167062,0.0,400.0,0.0,0.0,70179.0,1,1,1,200.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4035.9259977776837,0.10657879998356617,0.05750902688521757,28071.6,8,4,8,8_1,8_0,8_1_0 -4828,2,42.0,1,0.0,8,111,2,54,23,9.0,0.0,0.0,747.6402054108357,0.0,2460.881014267463,66058.0,41,31,1,2396,201104828,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2989.9070932277227,0.0,548.0,1416.0,0.0,70527.0,1,1,2,134.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3208.5212196782986,0.04857127402704137,0.045493516237445214,33584.28571428571,9,5,9,9_1,9_3,9_0_0 -4829,2,54.0,3,0.0,7,111,2,56,78,8.0,0.0,0.0,818.5841665082144,0.0,2002.0726895735293,51242.0,70,70,1,2397,201104829,,,588.0,486.0,3.0,2.0,5.0,2.0,5.0,2.8,1155.1312377187749,0.0,600.0,1152.0,0.0,69481.0,4,5,3,112.0,8,7.0,5,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2820.6568560817436,0.05504579946297458,0.040596088946355746,24814.64285714286,7,4,7,7_1,7_3,7_0_0 -4830,2,68.0,2,0.0,7,111,4,77,74,9.0,0.0,0.0,3410.767360450893,0.0,0.0,53235.0,50,44,1,24,201104830,,,740.0,,0.0,2.0,5.0,0.0,2.0,1.5,2041.8852356157297,0.0,2500.0,0.0,0.0,45979.0,5,5,1,200.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3410.767360450893,0.06407001710248696,0.07418098176234571,30652.666666666668,9,5,9,9_1,9_3,9_0_0 -4832,2,37.0,1,0.0,1,112,1,42,38,6.0,0.0,0.0,573.00891655575,0.0,0.0,51837.0,10,10,1,2403,201104832,,,400.0,,2.0,0.0,8.0,3.0,5.0,2.4,1110.2635545642022,0.0,420.0,0.0,0.0,47056.0,1,1,3,200.0,7,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,573.00891655575,0.011054052444311013,0.012177170107016109,19606.666666666668,6,3,6,6_1,6_0,6_1_0 -4833,2,65.0,3,0.0,9,221,5,78,74,8.0,0.0,346.98157989085996,926.3644150984626,0.0,0.0,43066.0,50,30,1,2404,201104833,,,307.0,,0.0,1.0,5.0,0.0,2.0,1.5,3474.359065684856,0.0,679.0,0.0,0.0,40574.0,5,5,2,95.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1273.3459949893227,0.02956731516716952,0.0313832995265274,27049.333333333332,8,4,8,8_1,8_1,8_0_0 -4834,2,57.0,3,0.0,2,400,4,11,52,3.0,0.0,0.0,1594.8748177468376,391.02982218232995,0.0,31548.0,42,42,1,2407,201104834,,,150.0,,2.0,3.0,5.0,1.0,3.0,2.0,3658.8085141562533,0.0,1169.0,0.0,0.0,25134.0,1,1,3,97.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1985.9046399291676,0.0629486699609854,0.07901267764498957,12567.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -4835,2,63.0,8,0.0,8,221,4,0,74,9.0,0.0,0.0,1414.4382346764128,0.0,2923.6085409539533,52808.0,0,31,1,2408,201104835,,,,,0.0,1.0,5.0,0.0,1.0,1.0,3033.5013762406165,2719.0,0.0,0.0,0.0,36858.0,0,5,1,100.0,1,2.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4338.046775630366,0.08214753021569395,0.11769620640377573,36858.0,9,5,9,9_1,9_1,9_0_0 -4836,1,41.0,4,167.0,1,112,4,31,46,8.0,0.0,0.0,1088.716941455925,156.41192887293198,0.0,26759.0,42,31,2,2410,201104836,,,,513.0,2.0,2.0,3.0,1.0,3.0,1.8,3379.7652567540626,0.0,798.0,0.0,0.0,51922.0,4,1,3,70.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1245.128870328857,0.0465312182939892,0.02398075710351791,28845.555555555555,8,4,8,8_0,8_1,8_1_0 -4837,2,56.0,2,0.0,9,111,2,85,74,4.0,0.0,0.0,955.0148609262501,0.0,0.0,29831.0,50,60,1,2411,201104837,,,200.0,,0.0,2.0,5.0,0.0,2.0,1.5,4585.476178921693,0.0,700.0,0.0,0.0,24490.0,6,4,2,130.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,955.0148609262501,0.03201417521793604,0.03899611518686199,16326.666666666666,4,2,4_0,4_1_0,4_2_0,4_0_0 -4838,2,51.0,2,0.0,5,111,4,85,38,7.0,0.0,346.98157989085996,259.2183193942679,79.94387475727635,0.0,58255.0,50,12,1,2417,201104838,,,322.0,,1.0,0.0,6.0,2.0,4.0,2.5,1795.3343895623289,0.0,190.0,0.0,0.0,59191.0,6,1,1,131.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,686.1437740424043,0.011778281246972866,0.011592028755087838,23676.4,7,4,7,7_1,7_3,7_0_0 -4839,0,39.0,3,0.0,5,111,1,34,34,8.0,0.0,0.0,327.43366660328576,0.0,0.0,67576.0,20,20,2,2418,201104839,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2456.868697824232,0.0,240.0,0.0,0.0,49169.0,1,1,5,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,327.43366660328576,0.004845413558116576,0.006659351758288469,27316.11111111111,8,4,8,8_0,8_4,8_0_0 -4840,2,59.0,3,0.0,1,300,2,52,77,5.0,904.2799252091628,0.0,1537.8802696275877,125.12954309834558,1148.3684890543664,37997.0,70,50,1,2419,201104840,,,172.0,,1.0,7.0,5.0,0.0,2.0,1.5,2146.7661042938016,1068.0,720.0,0.0,0.0,27050.0,4,5,3,80.0,0,0.0,3,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3715.6582269894625,0.09778819977865259,0.13736259619184704,18033.333333333332,5,3,5,5_1,5_0,5_1_0 -4841,2,41.0,2,0.0,9,111,4,43,43,10.0,0.0,0.0,1841.8143746434823,0.0,0.0,38767.0,50,50,1,242,201104841,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1838.1605833142505,0.0,1350.0,0.0,0.0,69310.0,1,1,2,100.0,5,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1841.8143746434823,0.04750985050799603,0.026573573433032495,46206.666666666664,10,5,10,10_1,10_2,10_0_0 -4842,2,54.0,3,0.0,3,112,2,78,33,6.0,0.0,0.0,926.3644150984626,0.0,2559.941902553653,50245.0,70,50,1,2422,201104842,,,306.0,,1.0,0.0,5.0,0.0,5.0,2.8,931.4039252801729,0.0,679.0,1473.0,0.0,59722.0,7,1,1,120.0,9,1.0,5,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3486.3063176521155,0.06938613429499682,0.05837557880935192,21329.285714285717,6,3,6,6_1,6_1,6_0_1 -4843,2,35.0,3,0.0,4,112,2,46,46,7.0,0.0,0.0,712.1682248621465,0.0,1494.6028758969055,62659.0,31,12,1,2424,201104843,,,,,2.0,0.0,4.0,1.0,3.0,1.8,5109.479982469782,0.0,522.0,860.0,0.0,41650.0,1,1,2,80.0,9,1.0,4,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2206.771100759052,0.03521874113469816,0.052983699898176514,23138.888888888887,7,4,7,7_1,7_1,7_0_1 -4844,2,52.0,3,0.0,1,120,2,62,52,8.0,2855.620816449988,0.0,1009.5871386934643,100.7987986070006,0.0,34901.0,50,70,1,2426,201104844,,,,,2.0,1.0,4.0,0.0,2.0,1.5,1401.4064045813334,0.0,740.0,0.0,0.0,40677.0,1,1,1,110.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3966.0067537504533,0.11363590595542974,0.09749998165426293,27118.0,8,4,8,8_1,8_0,8_1_0 -4845,2,23.0,3,0.0,99,111,1,64,62,6.0,0.0,0.0,187.27391117451586,0.0,387.09050192843813,26477.0,60,50,2,2427,201104845,,,369.0,200.0,2.0,0.0,2.0,0.0,2.0,1.5,2697.881524626795,360.0,0.0,0.0,0.0,29172.0,1,1,3,48.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,574.364413102954,0.021692956645501908,0.0196888939086437,19448.0,6,3,6,6_0,6_2,6_0_0 -4846,2,35.0,2,0.0,1,111,2,37,38,10.0,0.0,0.0,545.7227776721429,0.0,4170.984769944853,85040.0,12,12,2,2428,201104846,,,455.0,1041.0,2.0,0.0,4.0,2.0,4.0,2.1,2673.1514535651927,0.0,400.0,2400.0,0.0,87582.0,1,1,3,90.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,4716.707547616996,0.05546457605382168,0.05385475951242259,41705.71428571428,10,5,10,10_0,10_3,10_1_0 -4847,2,58.0,1,0.0,1,111,2,34,38,10.0,0.0,0.0,976.9729786823475,0.0,2803.0847587210437,59291.0,10,10,1,2429,201104847,,,800.0,,2.0,2.0,6.0,1.0,3.0,2.0,1312.3032464207304,829.0,400.0,1100.0,0.0,139403.0,1,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3780.057737403391,0.06375432590786782,0.027116042964666406,69701.5,10,5,10,10_1,10_4,10_1_0 -4848,1,62.0,3,234.0,4,111,1,85,78,2.0,0.0,0.0,955.0148609262501,0.0,1911.7013528913908,48214.0,71,70,2,243,201104848,900.0,900.0,,177.0,0.0,0.0,5.0,5.0,7.0,3.2,2177.8902838047215,0.0,700.0,1100.0,0.0,36563.0,6,5,3,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2866.716213817641,0.059458170112781365,0.07840484133735309,11425.9375,2,1,2_1,2_0_1,2_4_1,2_0_1 -4849,2,57.0,1,0.0,1,400,2,56,13,10.0,4759.368027416646,0.0,1091.4455553442858,0.0,0.0,40511.0,42,60,1,2430,201104849,,,300.0,,2.0,1.0,6.0,1.0,3.0,2.0,2061.9952060709875,0.0,800.0,0.0,0.0,100474.0,1,1,1,173.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5850.813582760932,0.14442530628127995,0.0582321155996669,50237.0,10,5,10,10_1,10_0,10_1_0 -4850,1,42.0,3,32.0,6,221,2,0,47,5.0,0.0,0.0,564.823074890668,0.0,417.0984769944853,19655.0,0,50,1,2432,201104850,,,324.0,,2.0,0.0,4.0,0.0,2.0,1.5,2666.966294157661,0.0,414.0,240.0,0.0,26841.0,0,1,3,85.0,1,2.0,5,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,981.9215518851532,0.04995785051565267,0.03658289750326565,17894.0,5,3,5,5_1,5_1,5_0_0 -4851,0,29.0,5,0.0,5,212,2,52,64,5.0,0.0,0.0,1432.5222913893751,0.0,0.0,55069.0,42,50,2,2433,201104851,,,306.0,,2.0,0.0,5.0,2.0,4.0,2.1,2717.3819824823113,0.0,1050.0,0.0,0.0,35936.0,1,1,5,95.0,2,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1432.5222913893751,0.02601322507017333,0.03986315370072838,17112.38095238095,5,3,5,5_0,5_0,5_0_0 -4852,2,28.0,2,0.0,4,111,1,46,48,3.0,0.0,0.0,654.8673332065715,0.0,260.6865481215533,48370.0,20,31,2,2435,201104852,,,,985.0,2.0,0.0,4.0,0.0,3.0,2.0,3575.728664535271,0.0,480.0,150.0,0.0,28082.0,1,1,3,85.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,915.5538813281248,0.0189281348217516,0.03260287306203706,14041.0,3,2,3_0,3_0_0,3_4_0,3_0_1 -4853,1,29.0,3,102.0,9,300,4,85,64,2.0,0.0,0.0,2210.177249572179,69.5164128324142,0.0,32123.0,43,50,1,2436,201104853,,,432.0,,1.0,0.0,4.0,3.0,5.0,2.4,1593.433580929908,0.0,1620.0,0.0,0.0,27161.0,6,1,2,103.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2279.693662404593,0.07096764506442714,0.08393261155349924,11317.083333333334,2,1,2_1,2_1_1,2_0_1,2_0_0 -4854,2,33.0,3,0.0,1,111,2,55,63,8.0,0.0,0.0,818.5841665082144,5213.730962431066,0.0,47628.0,31,50,1,2439,201104854,,,600.0,749.0,2.0,1.0,4.0,1.0,3.0,1.8,2763.2724493395276,0.0,600.0,0.0,0.0,47300.0,1,1,3,100.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,6032.31512893928,0.12665480660408332,0.1275330894067501,26277.777777777777,8,4,8,8_1,8_3,8_1_0 -4855,2,39.0,2,0.0,9,112,4,21,37,10.0,0.0,0.0,4358.342321696276,0.0,5430.01954094059,69619.0,50,20,1,244,201104855,,,200.0,,2.0,0.0,4.0,0.0,2.0,1.5,3196.5791606831704,5050.0,1269.0,0.0,0.0,97129.0,1,1,2,130.0,7,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,9788.361862636866,0.14059900117262336,0.10077692411779042,64752.666666666664,10,5,10,10_1,10_0,10_0_0 -4856,2,59.0,2,0.0,6,111,2,77,74,7.0,0.0,0.0,871.7921373312482,0.0,1315.5981128534388,26591.0,70,44,1,2440,201104856,,,444.0,,0.0,2.0,6.0,0.0,2.0,1.5,2864.057033904428,0.0,639.0,757.0,0.0,37060.0,5,5,1,105.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2187.390250184687,0.08226054868883032,0.059022942530617566,24706.666666666668,7,4,7,7_1,7_3,7_0_0 -4857,2,42.0,4,0.0,5,111,2,46,37,5.0,111.05192063972176,0.0,791.2980276246072,0.0,2311.4207266777726,31251.0,42,31,1,2441,201104857,,,410.0,,2.0,0.0,5.0,2.0,4.0,2.1,1717.7054762475886,0.0,580.0,1330.0,0.0,36706.0,1,1,2,100.0,5,4.0,4,5,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3213.7706749421013,0.10283737080228157,0.08755436917512399,17479.04761904762,5,3,5,5_1,5_2,5_0_0 -4858,1,46.0,3,195.0,9,112,4,56,63,5.0,0.0,208.188947934516,1637.1683330164287,145.98446694806984,0.0,45004.0,50,50,1,2442,201104858,,,200.0,,2.0,0.0,5.0,1.0,3.0,2.0,1092.6465653402493,0.0,1200.0,0.0,0.0,34252.0,1,1,2,140.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1991.3417478990145,0.04424810567725124,0.05813796998420573,17126.0,5,3,5,5_1,5_0,5_0_0 -4859,1,25.0,4,114.0,8,111,1,0,56,2.0,0.0,0.0,463.8643610213215,0.0,0.0,10472.0,0,41,2,2443,201104859,,,,,1.0,0.0,1.0,0.0,1.0,1.0,5922.809184019549,0.0,340.0,0.0,0.0,11928.0,0,4,3,23.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,463.8643610213215,0.04429568000585576,0.03888869559199543,11928.0,2,1,2_1,2_0_1,2_4_1,2_0_0 -4860,2,39.0,3,0.0,9,112,4,63,54,8.0,0.0,0.0,73.67257498573929,587.4136884339001,0.0,33042.0,43,31,1,2445,201104860,,,200.0,600.0,2.0,1.0,4.0,2.0,4.0,2.1,2092.045343964673,0.0,54.0,0.0,0.0,56373.0,4,1,3,70.0,9,1.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,661.0862634196394,0.020007453042177815,0.011727001639430922,26844.285714285714,8,4,8,8_1,8_1,8_0_0 -4861,2,37.0,2,0.0,1,111,2,22,22,9.0,0.0,0.0,118.69470414369108,0.0,0.0,53438.0,31,41,2,2446,201104861,,,,850.0,2.0,2.0,3.0,1.0,3.0,1.8,3562.5975354851385,0.0,87.0,0.0,0.0,54421.0,4,1,3,78.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,118.69470414369108,0.002221166663117839,0.0021810459959150158,30233.888888888887,9,5,9,9_0,9_3,9_1_0 -4862,2,79.0,3,0.0,7,212,2,71,71,3.0,2141.715612337491,0.0,817.219859564034,90.37133668213848,0.0,30937.0,71,71,1,2448,201104862,,,31.0,,0.0,4.0,3.0,0.0,2.0,1.5,2728.3455339175457,0.0,599.0,0.0,0.0,18575.0,5,5,1,90.0,3,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3049.3068085836635,0.09856504536909408,0.1641618739479765,12383.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -4863,2,43.0,1,0.0,9,112,2,64,64,8.0,0.0,48.5774211847204,777.6549581828036,0.0,0.0,29517.0,42,43,1,2450,201104863,,,341.0,,2.0,0.0,5.0,1.0,3.0,1.8,2556.8979540935375,0.0,570.0,0.0,0.0,49159.0,1,1,2,134.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,826.232379367524,0.0279917464297701,0.016807347166694277,27310.555555555555,8,4,8,8_1,8_0,8_0_0 -4864,2,69.0,2,0.0,4,111,2,72,75,5.0,1841.8754266102421,0.0,256.4897055059072,208.54923849724264,0.0,13629.0,50,50,1,2451,201104864,,,228.0,,0.0,1.0,4.0,0.0,2.0,1.5,2523.5413474106263,0.0,188.0,0.0,0.0,27158.0,5,5,1,63.0,7,5.0,3,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2306.914370613392,0.1692651236784351,0.08494419215750025,18105.333333333332,5,3,5,5_1,5_2,5_0_1 -4866,2,79.0,3,0.0,1,400,2,77,74,5.0,3252.2348187347084,0.0,861.7819985402188,100.7987986070006,732.2461994812954,16879.0,71,71,1,2454,201104866,,,,,0.0,1.0,5.0,0.0,2.0,1.5,3328.6941252341285,681.0,372.0,0.0,0.0,26040.0,5,5,1,100.0,0,0.0,3,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4947.061815363223,0.29308974556331674,0.18997933238722056,17360.0,5,3,5,5_1,5_0,5_1_0 -4867,2,67.0,2,0.0,7,300,4,0,71,4.0,0.0,0.0,2585.361659221777,364.9611673701746,0.0,16060.0,0,70,1,2456,201104867,,,316.0,,0.0,0.0,5.0,0.0,3.0,2.0,1676.6823655930712,0.0,1895.0,0.0,0.0,31173.0,0,5,1,105.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2950.3228265919515,0.18370627811905052,0.09464353211407152,15586.5,4,2,4_0,4_1_0,4_0_0,4_0_0 -4868,1,43.0,4,350.0,99,111,4,0,68,4.0,0.0,0.0,1049.1520400746947,0.0,0.0,17689.0,0,10,2,2457,201104868,,,,,1.0,0.0,3.0,2.0,3.0,1.8,3305.8724580404546,0.0,769.0,0.0,0.0,27510.0,0,1,3,65.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1049.1520400746947,0.059310986493001,0.03813711523354034,15283.333333333332,4,2,4_1,4_0_1,4_3_1,4_0_0 -4869,2,44.0,2,0.0,1,221,2,85,45,9.0,0.0,0.0,552.5443123930447,0.0,2108.085219142961,35930.0,41,20,1,2458,201104869,,,153.0,,1.0,3.0,7.0,0.0,2.0,1.5,2425.2681547505836,0.0,405.0,1213.0,0.0,54885.0,4,1,1,200.0,1,2.0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2660.6295315360057,0.07405036269234638,0.048476442225307566,36590.0,9,5,9,9_1,9_1,9_1_0 -4870,2,38.0,2,0.0,7,112,2,0,37,9.0,0.0,0.0,245.5752499524643,0.0,0.0,31844.0,0,10,8,246,201104870,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3305.35807613484,0.0,180.0,0.0,0.0,32582.0,0,1,2,45.0,9,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,245.5752499524643,0.007711821691761848,0.007537144741036901,32582.0,9,5,9,9_0,9_1,9_0_0 -4871,2,56.0,2,0.0,1,111,5,56,21,2.0,63.458240365555284,346.98157989085996,886.7995137172322,0.0,0.0,23592.0,60,50,1,2460,201104871,,,295.0,,2.0,1.0,4.0,0.0,2.0,1.5,2067.4193336966196,0.0,650.0,0.0,0.0,14740.0,1,1,1,80.0,6,5.0,3,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1297.2393339736475,0.054986407849001676,0.08800809592765586,9826.666666666666,1,1,1_0,1_1_0,1_2_0,1_1_0 -4872,1,50.0,3,41.0,9,400,2,68,52,1.0,0.0,555.170527825376,1118.731694227893,0.0,0.0,17432.0,71,70,1,2462,201104872,,,500.0,,2.0,0.0,4.0,3.0,5.0,2.6,1583.0647299238233,0.0,820.0,0.0,0.0,19937.0,4,1,2,95.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1673.902222053269,0.0960246800168236,0.08395958379160702,7668.076923076923,1,1,1_1,1_1_1,1_0_1,1_0_0 -4873,1,40.0,2,148.0,9,112,2,55,52,6.0,0.0,0.0,1470.7228858264252,145.98446694806984,0.0,24179.0,42,41,1,2463,201104873,,,280.0,,2.0,0.0,7.0,3.0,6.0,2.7,1738.5298018017263,0.0,1078.0,0.0,0.0,51398.0,1,1,2,150.0,6,0.0,5,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1616.7073527744951,0.06686411153374809,0.03145467436037385,19036.296296296296,5,3,5,5_1,5_0,5_0_0 -4874,2,34.0,2,0.0,1,112,2,54,53,7.0,0.0,0.0,995.9440692516608,0.0,0.0,26444.0,50,60,2,2464,201104874,,,,,2.0,1.0,3.0,1.0,3.0,1.8,2721.728791494711,0.0,730.0,0.0,0.0,42334.0,1,1,2,63.0,9,0.0,4,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,995.9440692516608,0.037662383499155225,0.023525867370238127,23518.888888888887,7,4,7,7_0,7_0,7_1_0 -4875,1,33.0,2,127.0,1,111,2,56,63,2.0,0.0,0.0,985.029613698218,0.0,2038.5688063105467,44979.0,41,71,1,2465,201104875,,,312.0,525.0,2.0,0.0,6.0,3.0,5.0,2.6,2283.833954856121,0.0,722.0,1173.0,0.0,28692.0,1,1,3,85.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3023.5984200087646,0.06722244647521654,0.1053812358848726,11035.384615384615,2,1,2_1,2_1_1,2_3_1,2_1_0 -4876,2,47.0,2,0.0,3,111,1,43,48,9.0,0.0,0.0,777.6549581828036,0.0,86.89551604051776,33564.0,41,31,2,2466,201104876,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3952.455771789996,0.0,570.0,50.0,0.0,52593.0,1,1,2,75.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,864.5504742233214,0.025758267018928655,0.016438508436927374,35062.0,9,5,9,9_0,9_3,9_0_1 -4877,2,42.0,4,0.0,1,112,2,43,46,4.0,2062.392811880547,0.0,682.1534720901786,139.0328256648284,0.0,51057.0,41,41,1,2467,201104877,,,260.0,,2.0,0.0,5.0,3.0,5.0,2.6,2377.1971133605484,0.0,500.0,0.0,0.0,40961.0,1,1,2,134.0,9,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2883.5791096355542,0.0564776447820192,0.07039816190121223,15754.23076923077,4,2,4_0,4_1_0,4_0_0,4_1_0 -4878,2,66.0,2,0.0,6,111,1,75,75,9.0,0.0,0.0,884.0708998288715,2639.88577731093,0.0,35217.0,41,50,1,2468,201104878,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1857.8839688257099,0.0,648.0,0.0,0.0,51304.0,5,5,1,100.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3523.9566771398013,0.10006407919867681,0.06868775684429676,34202.666666666664,9,5,9,9_1,9_2,9_0_0 -4879,2,61.0,2,0.0,1,111,2,0,42,9.0,0.0,0.0,409.2920832541072,0.0,1737.9103208103552,55135.0,0,31,1,2469,201104879,,,240.0,,1.0,0.0,4.0,1.0,2.0,1.5,2662.1930439699927,0.0,300.0,1000.0,0.0,45125.0,0,1,1,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2147.2024040644624,0.0389444527807103,0.0475834327770518,30083.333333333332,9,5,9,9_1,9_4,9_1_0 -4880,2,55.0,3,0.0,1,400,2,0,63,3.0,1903.7472109666587,0.0,1064.1594164606786,0.0,0.0,7976.0,0,70,1,247,201104880,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2190.2658405242887,0.0,780.0,0.0,0.0,12620.0,0,1,1,129.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2967.9066274273373,0.37210464235548363,0.23517485161864796,12620.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -4881,2,28.0,4,0.0,8,111,4,0,54,7.0,0.0,0.0,477.50743046312505,0.0,0.0,25911.0,0,43,2,2470,201104881,,,,,1.0,0.0,3.0,0.0,1.0,1.0,6431.221930505136,0.0,350.0,0.0,0.0,22029.0,0,1,2,63.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,477.50743046312505,0.0184287534430599,0.021676309885293253,22029.0,7,4,7,7_0,7_3,7_0_0 -4882,2,65.0,3,0.0,2,111,2,0,75,7.0,0.0,0.0,573.00891655575,0.0,1944.7216489867876,33910.0,0,20,1,2471,201104882,,,320.0,703.0,0.0,5.0,8.0,0.0,1.0,1.0,2207.1834205477207,0.0,420.0,1119.0,0.0,24486.0,0,5,3,200.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2517.7305655425375,0.07424743631797516,0.1028232690330204,24486.0,7,4,7,7_1,7_3,7_0_1 -4883,2,84.0,3,0.0,1,120,4,71,71,2.0,0.0,0.0,818.5841665082144,151.1981979105009,0.0,13567.0,71,70,1,2472,201104883,,,326.0,,0.0,3.0,3.0,0.0,2.0,1.5,2589.4606250830143,0.0,600.0,0.0,0.0,16829.0,5,5,1,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,969.7823644187152,0.07148097327476341,0.05762566786016491,11219.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -4884,2,80.0,1,0.0,3,111,1,75,72,10.0,0.0,0.0,900.4425831590357,0.0,1675.3455492611824,49206.0,41,31,2,2474,201104884,964.0,964.0,418.0,,0.0,3.0,4.0,0.0,2.0,1.5,5337.995666107628,0.0,660.0,964.0,0.0,58427.0,5,5,5,110.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2575.788132420218,0.052347033541036016,0.044085579140127305,38951.333333333336,10,5,10,10_0,10_2,10_0_1 -4885,1,26.0,3,84.0,1,120,2,42,45,4.0,0.0,0.0,646.6814915414893,97.32297796537989,0.0,17384.0,31,20,2,2476,201104885,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3481.458551430765,0.0,474.0,0.0,0.0,22398.0,1,1,3,67.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,744.0044695068692,0.04279823225419174,0.03321745108968967,14932.0,3,2,3_1,3_0_1,3_1_1,3_1_0 -4886,2,57.0,3,0.0,2,111,1,0,54,6.0,0.0,0.0,540.2655498954215,0.0,1989.9073173278568,25712.0,0,50,1,2478,201104886,,,590.0,,2.0,0.0,4.0,0.0,3.0,2.0,2370.637653984413,0.0,396.0,1145.0,0.0,40475.0,0,1,2,95.0,8,7.0,5,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2530.1728672232784,0.09840435855722147,0.06251199177821565,20237.5,6,3,6,6_1,6_3,6_0_1 -4887,1,33.0,4,128.0,2,111,2,0,69,2.0,0.0,0.0,723.0826804155894,0.0,0.0,11675.0,0,31,2,2479,201104887,,,,244.0,1.0,0.0,2.0,0.0,1.0,1.0,3151.2078023687477,0.0,530.0,0.0,0.0,12066.0,0,4,3,34.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,723.0826804155894,0.061934276695125426,0.05992728993996265,12066.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -4888,2,49.0,2,0.0,2,111,2,0,54,8.0,0.0,0.0,327.43366660328576,0.0,278.0656513296568,30865.0,0,41,1,248,201104888,,,120.0,,1.0,1.0,4.0,1.0,2.0,1.5,2335.3078489742384,0.0,240.0,160.0,0.0,41287.0,0,1,3,75.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,605.4993179329426,0.01961766784166346,0.014665616730034699,27524.666666666668,8,4,8,8_1,8_4,8_0_1 -4889,2,32.0,2,0.0,9,112,2,56,67,6.0,0.0,0.0,785.8407998478858,0.0,1261.7228929083178,32227.0,50,43,1,2480,201104889,,,,,2.0,0.0,5.0,1.0,3.0,1.8,3124.9528025610393,0.0,576.0,726.0,0.0,38745.0,1,1,2,127.0,7,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2047.5636927562036,0.06353565931536301,0.05284717235143124,21525.0,6,3,6,6_1,6_0,6_0_0 -4890,2,72.0,1,0.0,4,300,2,77,72,10.0,6028.532834727753,0.0,1467.8387361035238,100.7987986070006,834.3950819346333,69284.0,70,60,1,2481,201104890,,,269.0,,0.0,2.0,6.0,0.0,2.0,1.5,2411.716503787109,776.0,780.0,0.0,0.0,60174.0,5,5,1,150.0,0,0.0,3,4,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,8431.56545137291,0.12169570826414337,0.1401197435997758,40116.0,10,5,10,10_1,10_0,10_0_1 -4892,1,28.0,3,90.0,99,111,2,0,84,1.0,0.0,0.0,327.43366660328576,0.0,417.0984769944853,15079.0,0,20,2,2483,201104892,,,,190.0,0.0,0.0,2.0,0.0,1.0,1.0,3771.1711349102293,0.0,240.0,240.0,0.0,2292.0,0,3,3,55.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,744.532143597771,0.04937543229642357,0.3248395041875092,2292.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -4893,2,51.0,3,0.0,7,111,4,56,63,7.0,0.0,0.0,1227.8762497623215,0.0,0.0,25526.0,70,50,1,2485,201104893,,,140.0,,2.0,2.0,4.0,0.0,2.0,1.5,2171.6445061798704,0.0,900.0,0.0,0.0,33978.0,1,1,1,107.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1227.8762497623215,0.04810296363559984,0.036137390363244495,22652.0,7,4,7,7_1,7_2,7_0_0 -4894,2,49.0,2,0.0,1,300,2,54,22,8.0,1903.7472109666587,277.585263912688,613.9381248811608,104.27461924862132,0.0,45071.0,60,60,1,2488,201104894,,,238.0,,3.0,0.0,4.0,1.0,3.0,2.0,2691.3922849590326,0.0,450.0,0.0,0.0,54334.0,1,1,2,150.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2899.5452190091282,0.06433283528231298,0.05336520813871845,27167.0,8,4,8,8_1,8_0,8_1_0 -4895,2,63.0,2,0.0,1,111,2,75,78,9.0,0.0,0.0,540.2655498954215,0.0,1268.6745341915594,23440.0,50,42,2,249,201104895,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2650.9502889901983,0.0,396.0,730.0,0.0,45158.0,5,5,3,48.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1808.9400840869807,0.0771732117784548,0.04005802037483903,30105.333333333332,9,5,9,9_0,9_3,9_1_0 -4896,2,51.0,3,0.0,1,112,6,11,12,2.0,5235.304830158311,0.0,925.0001081542822,0.0,0.0,30249.0,60,42,1,2490,201104896,,,255.0,,2.0,3.0,6.0,2.0,4.0,2.5,2991.088700667828,0.0,678.0,0.0,0.0,30390.0,1,1,1,150.0,9,3.0,4,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,6160.304938312594,0.20365317657815443,0.2027082901715233,12156.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -4897,2,51.0,4,0.0,6,112,2,56,47,5.0,0.0,0.0,2319.3218051066074,130.34327406077665,0.0,25923.0,50,50,1,2491,201104897,,,240.0,,2.0,2.0,4.0,0.0,2.0,1.5,1493.8161454944056,0.0,1700.0,0.0,0.0,25332.0,1,1,1,125.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2449.665079167384,0.09449774637068951,0.09670239535636287,16888.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -4898,1,38.0,2,108.0,9,112,5,0,63,4.0,0.0,680.0838965860855,927.728722042643,198.1217765723805,0.0,45365.0,0,50,1,2493,201104898,,,240.0,,1.0,0.0,4.0,3.0,4.0,1.9,1808.3808268625896,0.0,680.0,0.0,0.0,31182.0,0,1,2,98.0,10,0.0,2,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1805.934395201109,0.03980898038578439,0.057915925700760346,16411.578947368424,4,2,4_1,4_1_1,4_0_1,4_0_0 -4899,2,44.0,2,0.0,7,111,2,0,47,9.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,24819.0,0,50,2,2494,201104899,,,240.0,430.0,1.0,1.0,3.0,0.0,1.0,1.0,4471.254191898434,600.0,0.0,0.0,0.0,34335.0,0,1,3,65.0,5,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,957.2740218382565,0.038570209188051756,0.02788041420819154,34335.0,9,5,9,9_0,9_2,9_0_0 -4900,2,63.0,2,0.0,4,111,6,72,72,1.0,0.0,0.0,3455.789489608845,0.0,198.1217765723805,26064.0,60,70,1,2496,201104900,,,397.0,,0.0,3.0,6.0,0.0,2.0,1.5,2122.9540814755733,0.0,2533.0,114.0,0.0,12274.0,5,5,1,130.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3653.9112661812255,0.14018996570676895,0.29769523107228496,8182.666666666667,1,1,1_0,1_1_0,1_2_0,1_0_1 -4901,2,39.0,2,0.0,1,111,6,56,37,8.0,0.0,0.0,3956.490138123036,182.4805836850873,0.0,32275.0,50,31,1,2497,201104901,,,860.0,,2.0,0.0,5.0,3.0,5.0,2.8,1615.6422573260222,0.0,2900.0,0.0,0.0,76092.0,1,1,2,140.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4138.970721808123,0.1282407659739155,0.0543942953504721,27175.714285714286,8,4,8,8_1,8_3,8_1_0 -4902,2,34.0,2,0.0,3,111,1,42,63,6.0,0.0,0.0,510.2507971234536,0.0,111.22626053186274,36465.0,20,31,2,2498,201104902,,,186.0,,2.0,0.0,4.0,2.0,4.0,2.1,2966.3395095199303,0.0,374.0,64.0,0.0,42903.0,1,1,2,69.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,621.4770576553163,0.01704311141245897,0.01448563171935101,20430.0,6,3,6,6_0,6_3,6_0_1 -4903,1,66.0,3,144.0,7,300,4,0,86,3.0,0.0,0.0,914.0856526008394,130.34327406077665,0.0,9321.0,0,71,1,2499,201104903,,,294.0,,0.0,1.0,3.0,0.0,1.0,1.0,2464.748119981504,0.0,670.0,0.0,0.0,13326.0,0,5,3,69.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1044.428926661616,0.11205116689857483,0.07837527590136696,13326.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -4904,2,72.0,3,0.0,7,111,6,55,74,5.0,0.0,0.0,1289.2700622504376,0.0,0.0,58889.0,50,70,1,250,201104904,,,347.0,,1.0,3.0,4.0,0.0,2.0,1.5,1316.9265642807827,0.0,945.0,0.0,0.0,27563.0,1,5,3,90.0,7,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1289.2700622504376,0.021893223900056675,0.04677538955303986,18375.333333333332,5,3,5,5_1,5_2,5_0_0 -4905,2,45.0,2,0.0,1,112,5,0,54,8.0,0.0,416.377895869032,915.4499595450197,0.0,224.19043138453583,26784.0,0,41,1,2501,201104905,,,500.0,,2.0,6.0,7.0,1.0,4.0,2.5,2143.62260985119,0.0,671.0,129.0,0.0,66168.0,0,1,1,212.0,9,0.0,5,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1556.0182867985877,0.05809506745813126,0.02351617529317174,26467.2,8,4,8,8_1,8_0,8_1_0 -4906,2,46.0,2,0.0,7,112,2,54,47,6.0,1903.7472109666587,693.9631597817199,845.8703053918215,0.0,0.0,53970.0,31,42,1,2503,201104906,,,,,3.0,0.0,5.0,3.0,5.0,2.8,2143.2468236444165,0.0,620.0,0.0,0.0,60195.0,4,1,1,110.0,9,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3443.5806761402,0.06380545999889198,0.05720708823224853,21498.214285714286,6,3,6,6_1,6_0,6_0_0 -4907,2,83.0,3,0.0,2,112,5,0,11,2.0,0.0,277.585263912688,245.5752499524643,486.61488982689946,0.0,8710.0,0,71,1,2504,201104907,,,253.0,,2.0,1.0,3.0,1.0,2.0,1.5,3591.108100461523,0.0,180.0,0.0,0.0,16255.0,0,5,1,60.0,8,1.0,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1009.7754036920518,0.11593288216900709,0.06212091071621358,10836.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_1 -4908,2,75.0,3,0.0,4,112,5,86,78,3.0,0.0,693.9631597817199,132.33777358549466,0.0,0.0,50773.0,71,70,1,2508,201104908,,,100.0,,0.0,4.0,3.0,0.0,2.0,1.5,2141.4586774268964,0.0,97.0,0.0,0.0,19821.0,5,5,1,100.0,7,1.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,826.3009333672146,0.016274416193000504,0.04168815566153144,13214.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -4909,2,28.0,2,0.0,9,112,5,43,53,9.0,0.0,69.396315978172,1678.0975413418394,104.27461924862132,0.0,90012.0,33,42,1,2509,201104909,,,,,2.0,0.0,5.0,1.0,3.0,1.8,6705.636094547278,0.0,1230.0,0.0,0.0,53009.0,1,1,2,130.0,9,1.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1851.7684765686327,0.020572462300233664,0.03493309582464549,29449.444444444445,9,5,9,9_1,9_1,9_0_0 -4910,2,40.0,1,0.0,1,111,2,46,43,6.0,0.0,0.0,879.9779789963304,0.0,3448.0140764877447,73307.0,31,33,1,2510,201104910,,,378.0,,2.0,0.0,8.0,3.0,5.0,2.4,1857.2669045330251,0.0,645.0,1984.0,0.0,51634.0,1,1,1,160.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4327.9920554840755,0.05903927395042868,0.08382058441112591,21514.166666666668,6,3,6,6_1,6_3,6_1_0 -4911,2,87.0,3,0.0,6,211,2,77,75,4.0,0.0,0.0,349.26257771017146,0.0,938.4715732375919,21638.0,50,50,1,2511,201104911,,,420.0,424.0,0.0,4.0,4.0,0.0,2.0,1.5,933.5901951929904,0.0,256.0,540.0,0.0,23153.0,6,5,3,97.0,3,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1287.7341509477633,0.059512623668904856,0.05561845769221108,15435.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_0 -4912,2,40.0,3,0.0,1,111,4,0,46,6.0,0.0,0.0,545.7227776721429,0.0,189.4322249683287,15855.0,0,31,2,2512,201104912,,,,390.0,1.0,0.0,1.0,0.0,1.0,1.0,3571.5499414857336,0.0,400.0,109.0,0.0,20742.0,0,1,3,25.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,735.1550026404716,0.04636739215644728,0.03544282145600577,20742.0,6,3,6,6_0,6_4,6_1_0 -4913,2,58.0,3,0.0,4,111,4,52,34,10.0,0.0,0.0,1431.1681102610887,0.0,172.0402230793058,25863.0,70,31,1,2513,201104913,,,,,2.0,1.0,5.0,0.0,2.0,1.5,1978.5042036135128,160.0,988.0,0.0,0.0,55826.0,1,1,1,93.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1603.2083333403946,0.06198849063683233,0.028717951014588086,37217.333333333336,9,5,9,9_1,9_2,9_0_1 -4914,1,26.0,3,23.0,99,111,2,54,11,2.0,0.0,0.0,545.7227776721429,0.0,1042.7461924862132,21884.0,43,31,1,2515,201104914,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2925.604926320235,0.0,400.0,600.0,0.0,17045.0,1,1,3,90.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1588.4689701583561,0.0725858604532241,0.09319266472034944,11363.333333333334,2,1,2_1,2_1_1,2_3_1,2_0_0 -4915,2,62.0,2,0.0,4,111,4,77,74,7.0,0.0,0.0,1077.8024859024822,0.0,0.0,31404.0,50,41,1,2516,201104915,,,200.0,,0.0,0.0,4.0,0.0,2.0,1.5,2519.1527381516726,0.0,790.0,0.0,0.0,33698.0,5,5,1,128.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1077.8024859024822,0.034320547888883016,0.03198416778154437,22465.333333333332,7,4,7,7_1,7_2,7_0_1 -4916,2,32.0,3,0.0,1,112,2,67,46,6.0,0.0,416.377895869032,2296.128587055541,312.82385774586396,0.0,46681.0,50,42,1,2517,201104916,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2447.8788562287714,0.0,1683.0,0.0,0.0,42581.0,1,1,2,90.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3025.330340670437,0.06480860180095621,0.07104883259365533,20276.666666666664,6,3,6,6_1,6_0,6_1_0 -4917,1,27.0,4,19.0,99,111,6,0,84,1.0,0.0,0.0,627.5811943229643,0.0,0.0,9484.0,0,20,2,2518,201104917,,,,221.0,0.0,0.0,1.0,0.0,1.0,1.0,4195.345544985483,0.0,460.0,0.0,0.0,7028.0,0,3,3,19.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,627.5811943229643,0.06617262698470733,0.08929726726280084,7028.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -4918,2,52.0,2,0.0,1,111,2,46,23,10.0,0.0,0.0,1394.2239472874235,0.0,2308.0694235812784,57678.0,60,12,1,252,201104918,,,255.0,,2.0,0.0,5.0,1.0,3.0,2.0,2270.370327311313,207.0,943.0,1200.0,0.0,98894.0,4,1,1,125.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3702.293370868702,0.06418900396804157,0.037436986782501486,49447.0,10,5,10,10_1,10_2,10_1_0 -4919,2,46.0,1,0.0,1,111,2,43,37,10.0,0.0,645.3857385969995,2121.057829534634,0.0,2355.428297966785,100489.0,20,20,1,2521,201104919,,,530.0,,2.0,0.0,8.0,2.0,4.0,2.3,891.0223627063108,1140.0,1120.0,650.0,0.0,103161.0,1,1,1,300.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5121.871866098419,0.050969477913984804,0.04964930415659424,44852.608695652176,10,5,10,10_1,10_3,10_1_0 -4920,2,24.0,2,0.0,99,111,2,85,53,5.0,0.0,0.0,341.0767360450893,0.0,1042.7461924862132,24998.0,50,43,2,2522,201104920,,,,400.0,1.0,0.0,4.0,0.0,2.0,1.5,2848.8505336239004,0.0,250.0,600.0,0.0,25739.0,4,1,3,72.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1383.8229285313025,0.05535734572891041,0.05376366325542183,17159.333333333332,5,3,5,5_0,5_2,5_0_0 -4921,2,73.0,3,0.0,2,111,2,77,78,7.0,0.0,0.0,1705.3836802254466,208.54923849724264,0.0,26690.0,31,50,1,2523,201104921,,,447.0,,0.0,1.0,4.0,0.0,2.0,1.5,2596.8267904298787,0.0,1250.0,0.0,0.0,36621.0,5,5,1,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1913.9329187226892,0.07170973843097374,0.05226326202787169,24414.0,7,4,7,7_1,7_3,7_0_1 -4922,2,22.0,4,0.0,1,112,2,0,42,2.0,0.0,0.0,654.8673332065715,0.0,0.0,6617.0,0,41,2,2524,201104922,,,20.0,,1.0,0.0,2.0,0.0,1.0,1.0,4404.785313748579,0.0,480.0,0.0,0.0,10530.0,0,1,3,30.0,10,2.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,654.8673332065715,0.09896740716436021,0.06219062993414734,10530.0,2,1,2_0,2_0_0,2_1_0,2_1_0 -4923,1,38.0,3,305.0,99,111,1,62,64,3.0,0.0,0.0,573.00891655575,0.0,851.5760571970741,65931.0,41,60,2,2525,201104923,,,,,2.0,0.0,4.0,4.0,6.0,2.7,1235.6011441585422,0.0,420.0,490.0,0.0,33713.0,4,1,2,87.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1424.5849737528242,0.021607210170524097,0.04225625051917137,12486.296296296296,2,1,2_1,2_0_1,2_2_1,2_0_0 -4924,2,45.0,2,0.0,6,111,4,0,33,10.0,0.0,0.0,1479.1463493898284,0.0,1139.766477900401,33248.0,0,30,2,2526,201104924,,,,,1.0,0.0,3.0,1.0,2.0,1.3,3106.4751154037017,1060.0,680.0,0.0,0.0,49518.0,0,1,1,75.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2618.9128272902294,0.07876903354458101,0.052888097808680264,38090.76923076923,10,5,10,10_0,10_4,10_0_0 -4925,2,58.0,3,0.0,6,111,2,0,43,7.0,0.0,0.0,613.9381248811608,0.0,1899.5359806457184,59460.0,0,33,1,2527,201104925,,,510.0,,2.0,2.0,7.0,1.0,2.0,1.5,2131.4875432301665,0.0,450.0,1093.0,0.0,34460.0,0,1,1,150.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2513.474105526879,0.04227168021404102,0.07293888872683921,22973.333333333332,7,4,7,7_1,7_3,7_0_0 -4926,1,21.0,3,200.0,99,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,21568.0,0,71,3,2532,201104926,,,,270.0,0.0,0.0,1.0,0.0,1.0,1.0,3969.6805487259603,0.0,0.0,0.0,0.0,3300.0,0,3,3,14.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0.0,0.0,0.0,3300.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -4927,2,33.0,3,0.0,1,112,6,53,38,8.0,317.29120182777643,0.0,1207.736081694474,145.98446694806984,296.7693848118026,32120.0,43,12,1,2533,201104927,,,511.0,,2.0,0.0,3.0,0.0,2.0,1.5,2625.100642487696,276.0,780.0,0.0,0.0,41700.0,1,1,2,62.0,8,0.0,3,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1967.781135282123,0.06126342264265638,0.04718899604993101,27800.0,8,4,8,8_1,8_0,8_1_0 -4928,2,89.0,4,0.0,1,221,6,0,77,5.0,0.0,0.0,671.2390165367358,0.0,104.27461924862132,10826.0,0,70,1,2537,201104928,,,,,0.0,5.0,3.0,0.0,1.0,1.0,4478.817678920996,0.0,492.0,60.0,0.0,18604.0,0,5,1,87.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,775.5136357853571,0.0716343650272822,0.04168531690955478,18604.0,5,3,5,5_1,5_1,5_1_0 -4929,2,88.0,1,0.0,5,111,2,0,86,9.0,0.0,0.0,542.9941637837821,0.0,2299.2553544321,19911.0,0,70,2,2538,201104929,,,,,0.0,4.0,5.0,0.0,1.0,1.0,3340.6321019844904,0.0,398.0,1323.0,0.0,29976.0,0,6,1,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2842.249518215882,0.14274770318998956,0.09481750461088477,29976.0,9,5,9,9_0,9_4,9_0_0 -4930,2,36.0,3,0.0,5,111,2,12,31,3.0,0.0,0.0,409.2920832541072,0.0,0.0,46411.0,50,10,1,2539,201104930,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2973.6314062490446,0.0,300.0,0.0,0.0,29897.0,1,1,3,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,409.2920832541072,0.008818859392258455,0.01369007202241386,14236.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0 -4931,2,67.0,3,0.0,2,111,4,0,86,2.0,0.0,0.0,1227.8762497623215,0.0,2085.4923849724264,16556.0,0,71,1,2541,201104931,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2563.683911737497,0.0,900.0,1200.0,0.0,11974.0,0,5,1,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3313.368634734748,0.20013098784336483,0.27671359902578485,11974.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -4932,2,49.0,3,0.0,1,111,2,46,56,6.0,0.0,0.0,1023.230208135268,180.74267336427695,0.0,25816.0,41,50,1,2542,201104932,,,344.0,,2.0,2.0,5.0,0.0,2.0,1.5,1423.4499207076753,0.0,750.0,0.0,0.0,32184.0,1,1,1,160.0,6,5.0,3,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1203.9728814995449,0.046636693581482216,0.037409050506448695,21456.0,6,3,6,6_1,6_2,6_1_0 -4933,1,38.0,4,262.0,99,111,2,0,85,3.0,237.96840137083234,0.0,391.714597540029,0.0,809.664299866983,18660.0,0,50,2,2544,201104933,,,,46.0,0.0,0.0,2.0,0.0,1.0,1.0,2434.6763308630602,753.0,0.0,0.0,0.0,14044.0,0,7,3,58.0,9,7.0,1,3,1,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1439.3472987778443,0.07713543937716208,0.10248841489446342,14044.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -4934,2,72.0,3,0.0,7,111,1,0,74,8.0,0.0,0.0,682.1534720901786,0.0,695.1641283241421,22786.0,0,41,2,2547,201104934,,,,499.0,0.0,2.0,3.0,0.0,2.0,1.5,2868.03720627782,0.0,500.0,400.0,0.0,39728.0,0,5,3,70.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1377.3176004143206,0.060445782516208225,0.03466868708251915,26485.333333333332,8,4,8,8_0,8_4,8_0_0 -4936,2,61.0,2,0.0,1,111,2,77,75,4.0,0.0,0.0,862.3711953711975,0.0,2629.293726640008,22083.0,70,50,1,2549,201104936,,,171.0,,0.0,2.0,6.0,0.0,2.0,1.5,943.0505836351238,829.0,316.0,1000.0,0.0,23616.0,6,5,1,148.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3491.664922011206,0.1581155151931896,0.14785166505806258,15744.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -4937,2,56.0,3,0.0,7,120,2,37,46,9.0,0.0,541.2912646297416,1166.4824372742055,78.20596443646599,0.0,44225.0,41,41,1,255,201104937,,,180.0,,2.0,0.0,4.0,0.0,2.0,1.5,1830.8316523649478,0.0,855.0,0.0,0.0,55751.0,1,1,1,90.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1785.9796663404131,0.040383938187459875,0.03203493509247212,37167.333333333336,9,5,9,9_1,9_0,9_0_0 -4938,2,41.0,2,0.0,9,112,2,43,46,7.0,0.0,0.0,1637.1683330164287,0.0,0.0,41763.0,33,50,1,2550,201104938,,,,,2.0,0.0,7.0,3.0,5.0,2.6,1295.1030296680801,0.0,1200.0,0.0,0.0,61926.0,4,1,1,150.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.03920140634093405,0.026437495284959932,23817.69230769231,7,4,7,7_1,7_0,7_0_0 -4939,2,35.0,1,0.0,9,300,2,63,46,9.0,0.0,0.0,818.5841665082144,2132.415963634306,0.0,41589.0,71,50,1,2551,201104939,,,340.0,,2.0,0.0,5.0,1.0,3.0,1.8,2327.1660208326603,0.0,600.0,0.0,0.0,55378.0,1,1,2,160.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2951.0001301425204,0.07095626560250355,0.05328831178703674,30765.555555555555,9,5,9,9_1,9_0,9_0_0 -4940,2,68.0,4,0.0,5,111,2,77,78,3.0,0.0,0.0,780.3079632271495,0.0,1612.877091368492,33683.0,71,71,1,2554,201104940,,,200.0,,0.0,2.0,4.0,0.0,2.0,1.5,3664.6547099057175,1500.0,0.0,0.0,0.0,20290.0,5,5,1,110.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2393.1850545956413,0.07105023467611678,0.11794899234083989,13526.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0 -4941,2,84.0,2,0.0,4,111,1,0,74,10.0,0.0,0.0,3410.767360450893,0.0,0.0,66475.0,0,30,2,2556,201104941,,,,,0.0,2.0,4.0,0.0,1.0,1.0,4121.317362724045,0.0,2500.0,0.0,0.0,56057.0,0,5,3,94.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3410.767360450893,0.051309023850333105,0.06084462886795393,56057.0,10,5,10,10_0,10_4,10_0_1 -4942,2,67.0,1,0.0,4,111,2,77,74,10.0,0.0,0.0,1312.6724139412408,0.0,4224.593586854735,68686.0,50,44,1,2557,201104942,,,200.0,,0.0,1.0,5.0,0.0,2.0,1.5,1438.938558798746,1553.0,370.0,1470.0,0.0,60738.0,5,5,1,130.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,5537.266000795976,0.08061709811018222,0.0911664197174088,40492.0,10,5,10,10_1,10_2,10_0_1 -4943,2,92.0,2,0.0,4,111,2,0,72,3.0,0.0,0.0,244.5939749252515,0.0,1184.7669169767269,9015.0,0,50,1,2558,201104943,,,71.0,,0.0,2.0,5.0,0.0,1.0,1.0,2303.7529096310013,124.0,132.0,605.0,0.0,12408.0,0,5,1,80.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1429.3608919019784,0.15855362084325883,0.11519671920551083,12408.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -4944,2,67.0,3,0.0,1,300,2,78,78,5.0,2538.3296146222115,0.0,734.9493829693471,187.69431464751835,97.84787687635519,17262.0,70,71,1,256,201104944,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,3330.058232250494,91.0,504.0,0.0,0.0,28129.0,5,5,1,90.0,0,0.0,3,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3558.821189115432,0.2061650555622426,0.12651787084913904,18752.666666666668,5,3,5,5_1,5_0,5_1_0 -4945,2,70.0,1,0.0,8,111,2,77,72,10.0,0.0,0.0,3274.3366660328575,0.0,0.0,53607.0,70,50,1,2561,201104945,,,240.0,,0.0,3.0,5.0,0.0,2.0,1.5,4138.810070739493,0.0,2400.0,0.0,0.0,58724.0,5,5,1,120.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3274.3366660328575,0.06108039371785135,0.05575806597018012,39149.333333333336,10,5,10,10_1,10_2,10_0_0 -4946,2,35.0,3,0.0,1,111,2,0,42,6.0,0.0,0.0,545.7227776721429,0.0,608.2686122836243,31430.0,0,20,2,2563,201104946,,,,,1.0,0.0,2.0,1.0,2.0,1.3,2832.2222960537238,0.0,400.0,350.0,0.0,25367.0,0,1,2,48.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1153.9913899557673,0.03671623894227704,0.04549183545376936,19513.076923076922,6,3,6,6_0,6_4,6_1_0 -4947,2,31.0,4,0.0,1,112,2,52,46,9.0,0.0,0.0,177.35990274344644,0.0,0.0,45746.0,71,41,2,2564,201104947,,,,,2.0,0.0,3.0,1.0,3.0,1.8,1154.4084088270367,0.0,130.0,0.0,0.0,58377.0,1,1,2,73.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,177.35990274344644,0.003877058163412024,0.0030381811799757856,32431.666666666664,9,5,9,9_0,9_0,9_1_0 -4948,2,66.0,2,0.0,4,221,2,75,78,8.0,1427.810408224994,0.0,564.823074890668,156.41192887293198,0.0,29763.0,70,50,1,2565,201104948,,,231.0,,0.0,2.0,5.0,0.0,2.0,1.5,3683.772367562455,0.0,414.0,0.0,0.0,40980.0,5,5,1,90.0,1,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2149.045411988594,0.072205268688929,0.052441322888935916,27320.0,8,4,8,8_1,8_1,8_0_1 -4949,2,77.0,2,0.0,4,111,2,77,75,8.0,0.0,0.0,545.7227776721429,0.0,2259.283417053462,32146.0,50,50,1,2566,201104949,,,320.0,,0.0,1.0,4.0,0.0,2.0,1.5,2012.638053899802,0.0,400.0,1300.0,0.0,37370.0,5,5,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2805.006194725605,0.08725832746611102,0.07506037449091799,24913.333333333332,8,4,8,8_1,8_3,8_0_1 -4950,1,72.0,3,123.0,4,111,1,0,78,2.0,0.0,0.0,260.5826263384482,0.0,0.0,6856.0,0,71,2,2569,201104950,,,,134.0,0.0,7.0,3.0,0.0,1.0,1.0,2788.0311017627027,0.0,191.0,0.0,0.0,10716.0,0,5,3,70.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,260.5826263384482,0.03800796766896853,0.024317154380220998,10716.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -4951,2,37.0,2,0.0,8,111,4,52,37,8.0,0.0,0.0,2182.8911106885716,0.0,0.0,41137.0,33,31,1,2571,201104951,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.1,2168.7287805624046,0.0,1600.0,0.0,0.0,56022.0,1,1,2,112.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2182.8911106885716,0.053063935403373404,0.038964890769493624,26677.142857142855,8,4,8,8_1,8_2,8_0_0 -4952,2,31.0,2,0.0,2,111,1,37,37,10.0,0.0,0.0,573.00891655575,0.0,106.01252956943166,90326.0,12,12,2,2574,201104952,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3090.0268245456305,0.0,420.0,61.0,0.0,127601.0,1,1,2,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,679.0214461251817,0.007517452849956621,0.005321442983402808,85067.33333333333,10,5,10,10_0,10_4,10_0_1 -4953,1,74.0,3,279.0,5,111,4,0,77,4.0,0.0,0.0,1489.8231830449502,0.0,0.0,17693.0,0,70,2,2575,201104953,,,,171.0,0.0,3.0,4.0,0.0,1.0,1.0,3011.5283025366084,0.0,1092.0,0.0,0.0,15511.0,0,5,3,80.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1489.8231830449502,0.08420410235940486,0.09604946057926311,15511.0,4,2,4_1,4_0_1,4_4_1,4_0_0 -4954,2,67.0,4,0.0,6,400,2,78,77,5.0,1269.1648073111057,0.0,204.6460416270536,50.3993993035003,0.0,10140.0,70,60,1,2576,201104954,,,200.0,,0.0,4.0,3.0,0.0,2.0,1.5,2198.140790522097,0.0,150.0,0.0,0.0,27160.0,5,5,1,120.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1524.2102482416597,0.15031659252876328,0.05611967040654123,18106.666666666668,5,3,5,5_1,5_0,5_0_0 -4955,1,78.0,4,293.0,3,111,4,78,78,3.0,0.0,0.0,955.0148609262501,104.27461924862132,0.0,10329.0,71,71,2,2577,201104955,,,249.0,151.0,0.0,7.0,5.0,0.0,2.0,1.5,3440.0517470794907,0.0,700.0,0.0,0.0,19304.0,5,5,3,80.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1059.2894801748714,0.10255489206843561,0.05487409242513839,12869.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_1 -4956,2,59.0,3,0.0,7,111,4,0,54,5.0,0.0,0.0,463.8643610213215,0.0,0.0,16802.0,0,70,2,2579,201104956,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4623.76187279126,0.0,340.0,0.0,0.0,18770.0,0,1,2,36.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,463.8643610213215,0.027607687240883316,0.024713071977694272,18770.0,5,3,5,5_0,5_2,5_0_0 -4957,1,27.0,4,330.0,99,400,4,0,55,3.0,0.0,0.0,1364.3069441803573,0.0,0.0,15114.0,0,50,1,258,201104957,,,200.0,,1.0,0.0,4.0,2.0,3.0,1.6,1397.2011288038932,0.0,1000.0,0.0,0.0,21450.0,0,4,3,85.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1364.3069441803573,0.0902677612928647,0.0636040533417416,13406.25,3,2,3_1,3_1_1,3_0_1,3_0_0 -4958,2,51.0,4,0.0,1,111,4,52,69,3.0,0.0,0.0,682.1534720901786,0.0,521.3730962431066,16883.0,71,71,1,2581,201104958,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,3645.3226416491098,0.0,500.0,300.0,0.0,30377.0,1,1,2,85.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1203.5265683332852,0.07128629795257271,0.0396196651523615,14465.238095238095,3,2,3_0,3_1_0,3_3_0,3_1_0 -4959,2,48.0,2,0.0,8,400,2,0,64,8.0,1189.8420068541616,104.094473967258,375.18440964959825,90.37133668213848,0.0,43666.0,0,71,1,2582,201104959,,,,,1.0,1.0,4.0,0.0,1.0,1.0,3197.712295147481,0.0,275.0,0.0,0.0,24795.0,0,1,1,100.0,0,1.0,1,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1759.4922271531564,0.040294330306260166,0.07096157399286777,24795.0,7,4,7,7_1,7_1,7_0_0 -4961,2,44.0,3,0.0,1,212,5,46,62,4.0,0.0,451.076053858118,1146.0178331115,312.82385774586396,0.0,38011.0,50,50,1,2584,201104961,,,290.0,,3.0,0.0,5.0,2.0,4.0,2.5,993.4869734661805,0.0,840.0,0.0,0.0,38722.0,1,1,1,120.0,2,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1909.917744715482,0.05024644825749078,0.0493238403159827,15488.8,4,2,4_0,4_1_0,4_0_0,4_1_0 -4962,2,62.0,3,0.0,6,400,6,77,74,8.0,0.0,0.0,1487.9988859190028,187.69431464751835,732.2461994812954,34391.0,70,44,1,2586,201104962,,,297.0,,0.0,1.0,5.0,0.0,2.0,1.5,1893.40872116079,681.0,831.0,0.0,0.0,41887.0,5,5,1,73.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2407.939400047817,0.07001655665865537,0.0574865566893742,27924.666666666668,8,4,8,8_1,8_0,8_0_0 -4963,2,27.0,2,0.0,1,111,1,0,38,7.0,0.0,0.0,204.6460416270536,0.0,0.0,16213.0,0,12,2,2587,201104963,,,,430.0,1.0,0.0,2.0,0.0,1.0,1.0,2488.303798680894,0.0,150.0,0.0,0.0,23849.0,0,1,3,45.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,204.6460416270536,0.012622342664963523,0.008580906605184855,23849.0,7,4,7,7_0,7_2,7_1_0 -4964,2,58.0,2,0.0,6,112,5,78,67,9.0,0.0,943.7898973031391,1320.6491219665859,39.971937378638174,0.0,33916.0,70,70,1,2593,201104964,,,539.0,,1.0,1.0,3.0,0.0,2.0,1.5,1174.7777720073623,0.0,968.0,0.0,0.0,46502.0,5,1,1,100.0,8,1.0,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2304.4109566483635,0.06794465611063696,0.04955509347228858,31001.333333333332,9,5,9,9_1,9_1,9_0_0 -4965,2,48.0,3,0.0,8,221,2,52,37,7.0,0.0,0.0,1364.3069441803573,2815.4147197127754,0.0,33087.0,50,31,1,2596,201104965,,,806.0,,3.0,2.0,6.0,2.0,4.0,2.3,2994.489720099293,0.0,1000.0,0.0,0.0,55435.0,1,1,2,168.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4179.721663893133,0.12632519309375687,0.07539860492275878,24102.17391304348,7,4,7,7_1,7_1,7_0_0 -4966,1,68.0,4,264.0,4,111,1,0,86,1.0,0.0,0.0,545.7227776721429,0.0,0.0,2548.0,0,71,2,2597,201104966,,,,,0.0,2.0,3.0,1.0,2.0,1.5,3965.2546622148943,0.0,400.0,0.0,0.0,3168.0,0,6,3,50.0,8,6.0,2,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,545.7227776721429,0.21417691431402783,0.17226097780055016,2112.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -4967,1,39.0,4,375.0,1,111,2,0,55,3.0,0.0,0.0,613.9381248811608,0.0,2155.0087978048405,28320.0,0,71,2,2598,201104967,,,,230.0,1.0,0.0,4.0,2.0,3.0,1.8,3151.7428992841037,0.0,450.0,1240.0,0.0,23475.0,0,1,3,100.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,2768.946922686001,0.09777354952987291,0.11795301055105435,13041.666666666666,3,2,3_1,3_0_1,3_3_1,3_1_0 -4968,2,44.0,1,0.0,3,111,2,85,37,7.0,0.0,0.0,955.0148609262501,0.0,1025.3670892781097,44048.0,42,12,1,2599,201104968,,,221.0,,1.0,0.0,9.0,2.0,4.0,2.3,2527.2673504240224,0.0,700.0,590.0,0.0,55756.0,6,1,1,180.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1980.3819502043598,0.04495963381321195,0.03551872354911328,24241.739130434784,7,4,7,7_1,7_2,7_0_1 -4969,0,75.0,2,0.0,1,221,2,72,72,3.0,0.0,0.0,1025.9588220236287,2360.082215660462,0.0,27530.0,70,70,1,26,201104969,,,131.0,,0.0,2.0,4.0,0.0,2.0,1.5,1979.1303941573744,0.0,752.0,0.0,0.0,20455.0,5,5,5,100.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3386.041037684091,0.12299458909132187,0.16553610548443368,13636.666666666666,3,2,3_0,3_1_0,3_1_0,3_1_0 -4970,2,39.0,1,0.0,1,111,4,46,37,10.0,0.0,0.0,990.4868414749394,0.0,0.0,47683.0,20,31,8,260,201104970,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2533.1598800178413,0.0,726.0,0.0,0.0,95080.0,1,1,2,77.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,990.4868414749394,0.020772326436569413,0.010417404727334238,63386.666666666664,10,5,10,10_0,10_3,10_1_0 -4971,2,46.0,1,0.0,2,111,2,38,37,9.0,0.0,249.82673752141918,818.5841665082144,0.0,3107.383653608915,62995.0,12,12,1,2601,201104971,,,,,2.0,0.0,5.0,3.0,5.0,2.8,1287.5680828044656,0.0,600.0,1788.0,0.0,92628.0,1,1,2,135.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4175.794557638548,0.06628771422555041,0.045081342117270676,33081.42857142857,9,5,9,9_1,9_2,9_0_1 -4972,1,29.0,2,307.0,6,111,1,46,52,4.0,0.0,0.0,376.5487165937786,0.0,114.70208117348345,18160.0,50,50,2,2602,201104972,,,,126.0,2.0,0.0,4.0,3.0,5.0,2.4,2614.2133380560354,0.0,276.0,66.0,0.0,39144.0,1,1,3,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,491.25079776726204,0.027051255383659805,0.01254983644408497,16310.0,4,2,4_1,4_0_1,4_4_1,4_0_0 -4973,2,92.0,1,0.0,6,111,2,77,75,6.0,0.0,0.0,680.7891651459983,0.0,1637.1115222033545,28337.0,50,70,1,2603,201104973,,,259.0,,0.0,3.0,5.0,0.0,2.0,1.5,1343.1278437713856,0.0,499.0,942.0,0.0,28566.0,5,5,1,93.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2317.9006873493527,0.08179767397216899,0.08114194102602229,19044.0,5,3,5,5_1,5_3,5_0_0 -4974,2,82.0,3,0.0,1,112,6,0,71,1.0,1732.4099619796593,0.0,573.00891655575,145.98446694806984,0.0,13589.0,0,71,1,2607,201104974,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3400.154759637121,0.0,420.0,0.0,0.0,9286.0,0,5,1,70.0,9,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2451.4033454834794,0.18039615464592534,0.26398916061635574,9286.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -4975,2,48.0,3,0.0,1,300,4,55,63,5.0,0.0,0.0,4102.470981150334,0.0,0.0,56107.0,50,50,1,2608,201104975,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.3,1410.550477816492,0.0,3007.0,0.0,0.0,40620.0,1,1,2,98.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4102.470981150334,0.07311870143030877,0.10099633139217958,17660.869565217392,5,3,5,5_1,5_0,5_1_0 -4976,1,40.0,4,300.0,4,111,1,0,68,1.0,0.0,0.0,280.9108667617738,0.0,580.6357528926571,8402.0,0,71,2,261,201104976,,,,,2.0,2.0,4.0,2.0,3.0,1.8,3380.650527174727,540.0,0.0,0.0,0.0,11710.0,0,1,3,90.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,861.546619654431,0.10254065932568805,0.07357357981677463,6505.555555555556,1,1,1_1,1_0_1,1_2_1,1_0_1 -4977,2,29.0,3,0.0,3,111,1,55,62,4.0,0.0,0.0,341.0767360450893,0.0,0.0,22169.0,43,60,2,2610,201104977,,,150.0,285.0,2.0,0.0,3.0,1.0,3.0,1.8,3498.3184957181934,0.0,250.0,0.0,0.0,29977.0,1,1,3,66.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,341.0767360450893,0.015385300917726975,0.011377947628017792,16653.888888888887,4,2,4_0,4_0_0,4_3_0,4_0_1 -4978,2,44.0,2,0.0,8,112,4,53,43,7.0,0.0,0.0,1392.9573900081448,145.98446694806984,0.0,28413.0,71,33,1,2611,201104978,,,564.0,,2.0,0.0,5.0,1.0,3.0,1.8,2783.089365912456,0.0,1021.0,0.0,0.0,42822.0,1,1,2,120.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1538.9418569562147,0.05416330049471069,0.035938112581295006,23790.0,7,4,7,7_1,7_1,7_0_0 -4979,2,79.0,3,0.0,99,111,1,0,77,4.0,0.0,0.0,354.7198054868929,0.0,387.55400154070924,10584.0,0,70,2,2613,201104979,,,111.0,424.0,0.0,1.0,4.0,0.0,1.0,1.0,3397.6939772646924,0.0,260.0,223.0,0.0,15810.0,0,5,3,78.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,742.2738070276021,0.07013169000638719,0.04694963991319431,15810.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -4980,1,27.0,4,109.0,3,111,1,0,84,1.0,0.0,0.0,327.43366660328576,0.0,0.0,12867.0,0,20,2,2614,201104980,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3793.0084254361936,0.0,240.0,0.0,0.0,1647.0,0,3,4,70.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,327.43366660328576,0.02544755316727176,0.1988061120845694,1647.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -4981,2,61.0,3,0.0,6,111,2,52,62,1.0,0.0,0.0,955.0148609262501,0.0,1390.3282566482842,26396.0,71,71,1,2617,201104981,,,400.0,,3.0,2.0,4.0,2.0,4.0,2.5,3575.8440270104047,0.0,700.0,800.0,0.0,14050.0,1,4,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2345.3431175745345,0.08885221691068854,0.1669283357704295,5620.0,1,1,1_0,1_1_0,1_4_0,1_0_0 -4982,2,29.0,3,0.0,5,112,4,0,47,6.0,0.0,416.377895869032,1601.6963524677394,0.0,0.0,29341.0,0,31,1,2618,201104982,,,45.0,,1.0,1.0,5.0,1.0,3.0,2.0,1659.6098228923677,0.0,1174.0,0.0,0.0,41708.0,0,1,1,120.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2018.0742483367715,0.0687800091454542,0.048385783263085534,20854.0,6,3,6,6_1,6_0,6_0_0 -4983,2,24.0,1,0.0,6,111,6,0,38,5.0,0.0,0.0,182.81713052016786,0.0,0.0,8774.0,0,12,1,2619,201104983,,,,,1.0,0.0,4.0,0.0,1.0,1.0,4072.1119918137865,0.0,134.0,0.0,0.0,18066.0,0,1,3,90.0,8,6.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,182.81713052016786,0.020836235527714596,0.010119402774281406,18066.0,5,3,5,5_1,5_2,5_0_0 -4984,2,56.0,3,0.0,99,111,2,0,54,10.0,0.0,0.0,49.115049990492864,0.0,191.17013528913907,59583.0,0,41,2,262,201104984,,,,1170.0,1.0,1.0,3.0,0.0,1.0,1.0,2711.380524790571,0.0,36.0,110.0,0.0,93528.0,0,1,3,58.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,240.28518527963195,0.004032780915355587,0.0025691256658929083,93528.0,10,5,10,10_0,10_4,10_0_0 -4985,1,43.0,3,32.0,1,111,4,0,43,6.0,0.0,0.0,1773.5990274344645,0.0,0.0,38458.0,0,20,1,2622,201104985,,,340.0,,1.0,0.0,6.0,2.0,3.0,1.8,1499.8697927481262,0.0,1300.0,0.0,0.0,34279.0,0,1,2,93.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1773.5990274344645,0.046117817552510904,0.051740104070552365,19043.888888888887,5,3,5,5_1,5_3,5_1_0 -4986,2,71.0,2,0.0,1,111,2,0,75,9.0,0.0,0.0,443.3997568586161,0.0,1032.318730561351,29319.0,0,41,2,2628,201104986,,,,,0.0,3.0,5.0,0.0,1.0,1.0,3080.8545481623446,0.0,325.0,594.0,0.0,29817.0,0,5,1,130.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1475.718487419967,0.05033317942017009,0.04949252062313335,29817.0,9,5,9,9_0,9_3,9_1_0 -4987,0,77.0,4,0.0,5,300,4,71,71,2.0,0.0,0.0,2110.5828426470125,145.98446694806984,0.0,18824.0,71,50,1,2629,201104987,,,428.0,,0.0,1.0,5.0,0.0,2.0,1.5,2270.012822216021,0.0,1547.0,0.0,0.0,13970.0,5,5,5,150.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2256.5673095950824,0.11987714139370391,0.16152951392949766,9313.333333333334,1,1,1_0,1_1_0,1_0_0,1_0_0 -4988,2,34.0,2,0.0,9,111,2,52,63,4.0,0.0,0.0,1227.8762497623215,0.0,1129.641708526731,29007.0,50,50,1,263,201104988,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1053.4042136446062,0.0,900.0,650.0,0.0,39831.0,1,1,2,130.0,6,4.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2357.5179582890523,0.08127410481225401,0.059188018334690375,16596.25,4,2,4_0,4_1_0,4_2_0,4_0_0 -4989,2,48.0,2,0.0,4,111,6,0,63,5.0,0.0,0.0,203.28173468287324,156.41192887293198,0.0,22430.0,0,50,1,2633,201104989,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2989.3687115729776,0.0,149.0,0.0,0.0,18739.0,0,1,3,70.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,359.6936635558052,0.01603627568238097,0.019194923077848616,18739.0,5,3,5,5_1,5_3,5_0_1 -4990,2,43.0,4,0.0,1,112,5,52,63,4.0,0.0,693.9631597817199,1146.0178331115,104.27461924862132,0.0,24892.0,71,50,1,2634,201104990,,,370.0,,2.0,0.0,4.0,2.0,4.0,2.1,2612.1391008584724,0.0,840.0,0.0,0.0,32509.0,1,1,2,120.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1944.2556121418413,0.07810764953165038,0.059806687752371385,15480.476190476189,4,2,4_0,4_1_0,4_0_0,4_1_0 -4991,2,87.0,3,0.0,6,112,2,75,75,8.0,0.0,0.0,2455.752499524643,0.0,0.0,25146.0,50,50,1,2635,201104991,,,700.0,,0.0,0.0,3.0,0.0,2.0,1.5,3209.5903281863184,0.0,1800.0,0.0,0.0,40175.0,5,5,1,80.0,9,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2455.752499524643,0.09765976694204419,0.061126384555684955,26783.333333333332,8,4,8,8_1,8_1,8_0_0 -4992,0,39.0,3,0.0,4,111,2,0,68,3.0,0.0,0.0,0.0,0.0,0.0,14361.0,0,71,1,2636,201104992,,,,,1.0,0.0,6.0,0.0,1.0,1.0,1049.7203112829238,0.0,0.0,0.0,0.0,14118.0,0,1,5,130.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,14118.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -4993,1,39.0,4,62.0,9,111,1,0,53,2.0,0.0,0.0,613.9381248811608,0.0,0.0,16709.0,0,30,2,2637,201104993,,,,172.0,1.0,1.0,1.0,0.0,1.0,1.0,4020.035155342514,0.0,450.0,0.0,0.0,9500.0,0,4,3,20.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,613.9381248811608,0.03674296037352091,0.0646250657769643,9500.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -4994,1,58.0,3,267.0,2,111,2,68,68,3.0,0.0,0.0,294.69029994295715,0.0,844.6244159138326,42061.0,71,70,2,2639,201104994,,,,,2.0,1.0,3.0,1.0,3.0,1.8,1769.2001656070363,0.0,216.0,486.0,0.0,22713.0,1,4,3,56.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1139.31471585679,0.0270871999205152,0.050161348824760706,12618.333333333332,2,1,2_1,2_0_1,2_2_1,2_0_1 -4995,2,67.0,3,0.0,6,111,2,77,75,9.0,0.0,0.0,818.5841665082144,0.0,1564.1192887293198,62035.0,60,70,2,2640,201104995,,,,,0.0,3.0,5.0,0.0,2.0,1.5,5572.629748555133,0.0,600.0,900.0,0.0,52399.0,5,5,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2382.7034552375344,0.03840901838055186,0.04547230777758229,34932.666666666664,9,5,9,9_0,9_4,9_0_0 -4996,2,62.0,1,0.0,1,112,2,43,31,10.0,2677.937743426433,666.2046333904511,854.0561470569037,251.99699651750151,0.0,44256.0,41,12,1,2641,201104996,,,,,2.0,3.0,7.0,0.0,2.0,1.5,2650.822623698471,0.0,626.0,0.0,0.0,60754.0,1,1,1,200.0,8,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4450.195520391289,0.10055575561260144,0.07324942424188184,40502.666666666664,10,5,10,10_1,10_0,10_1_0 -4997,2,46.0,3,0.0,1,111,2,0,56,3.0,0.0,0.0,0.0,0.0,0.0,13791.0,0,71,2,2642,201104997,,,,,1.0,1.0,1.0,1.0,2.0,1.3,4459.365496520962,0.0,0.0,0.0,0.0,16480.0,0,1,3,20.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,12676.923076923076,2,1,2_0,2_0_0,2_4_0,2_1_0 -4998,2,60.0,2,0.0,6,112,4,75,75,6.0,0.0,416.377895869032,2017.8099704427484,0.0,0.0,31804.0,50,41,1,2643,201104998,,,600.0,,0.0,3.0,6.0,0.0,2.0,1.5,2403.2395201470877,0.0,1479.0,0.0,0.0,31735.0,7,5,1,150.0,10,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2434.1878663117805,0.07653716093295751,0.07670357228018845,21156.666666666668,6,3,6,6_1,6_1,6_0_0 -4999,2,74.0,3,0.0,2,111,4,78,75,7.0,0.0,0.0,1705.3836802254466,0.0,0.0,46066.0,50,50,1,2644,201104999,,,224.0,,0.0,2.0,3.0,0.0,2.0,1.5,1081.2458538421693,0.0,1250.0,0.0,0.0,33058.0,5,5,1,81.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1705.3836802254466,0.037020441979452236,0.051587624182510936,22038.666666666668,7,4,7,7_1,7_2,7_0_1 -5000,2,31.0,2,0.0,1,111,2,0,38,10.0,0.0,0.0,503.42926240255184,0.0,0.0,21176.0,0,10,2,2645,201105000,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1976.2107084480472,0.0,369.0,0.0,0.0,41566.0,0,1,1,65.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,503.42926240255184,0.02377357680404948,0.012111563835888751,41566.0,10,5,10,10_0,10_2,10_1_0 -5001,1,38.0,4,33.0,1,221,1,0,53,4.0,0.0,0.0,773.5620373502626,0.0,0.0,5482.0,0,50,2,2646,201105001,,,,,1.0,2.0,2.0,0.0,1.0,1.0,4332.161516323565,0.0,567.0,0.0,0.0,15276.0,0,1,3,20.0,1,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,773.5620373502626,0.1411094559194204,0.05063904407896456,15276.0,4,2,4_1,4_0_1,4_1_1,4_1_0 -5002,2,40.0,2,0.0,1,400,2,0,34,6.0,1586.456009138882,874.3935813249672,900.4425831590357,217.2387901012944,0.0,38329.0,0,10,1,2647,201105002,,,326.0,,1.0,0.0,6.0,2.0,3.0,1.6,2412.9381853700324,0.0,660.0,0.0,0.0,31388.0,0,1,1,162.0,0,1.0,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3578.5309637241794,0.0933635358011996,0.11400952477775518,19617.5,6,3,6,6_1,6_1,6_1_0 -5003,2,73.0,1,0.0,4,111,2,0,78,10.0,0.0,0.0,559.3658471139465,0.0,2137.629694596737,40601.0,0,60,2,2649,201105003,,,461.0,,0.0,2.0,4.0,0.0,1.0,1.0,3000.5813769480683,0.0,410.0,1230.0,0.0,81084.0,0,5,5,100.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2696.9955417106835,0.0664268254897831,0.03326174759151847,81084.0,10,5,10,10_0,10_3,10_0_1 -5004,2,61.0,2,0.0,1,112,5,77,72,8.0,0.0,693.9631597817199,1005.2009688662185,0.0,667.7311158265557,55186.0,50,50,1,265,201105004,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1712.0935821280698,621.0,500.0,0.0,0.0,42783.0,6,5,1,95.0,7,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2366.895244474494,0.04288941478770873,0.05532326495277316,28522.0,8,4,8,8_1,8_1,8_1_0 -5005,0,79.0,3,0.0,2,111,2,0,86,2.0,0.0,0.0,619.0443174935385,0.0,1279.549159152337,14799.0,0,70,1,2650,201105005,,,145.0,,0.0,1.0,3.0,0.0,1.0,1.0,1618.274793763528,1190.0,0.0,0.0,0.0,11508.0,0,6,5,56.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1898.5934766458756,0.12829201139576157,0.16498031601024293,11508.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -5006,2,90.0,3,0.0,4,111,2,77,78,4.0,0.0,0.0,548.4513915605036,0.0,2205.4081971083406,17558.0,71,70,1,2651,201105006,,,125.0,,0.0,2.0,5.0,0.0,2.0,1.5,2638.10856775806,0.0,402.0,1269.0,0.0,24886.0,5,5,5,90.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2753.859588668844,0.15684358062813783,0.11065898853447095,16590.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_1 -5007,2,76.0,3,0.0,4,112,2,71,78,2.0,2221.038412794435,0.0,395.6490138123036,151.1981979105009,0.0,13441.0,71,71,1,2653,201105007,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2643.3699520544947,0.0,290.0,0.0,0.0,16074.0,5,5,1,90.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2767.885624517239,0.205928548807175,0.17219644298352862,10716.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -5008,2,60.0,3,0.0,1,221,6,0,52,5.0,396.6140022847205,0.0,341.0767360450893,0.0,0.0,23154.0,0,41,1,2654,201105008,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3979.446936799717,0.0,250.0,0.0,0.0,17340.0,0,1,2,48.0,1,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,737.6907383298098,0.03186018564091776,0.04254271847346078,17340.0,5,3,5,5_1,5_1,5_1_0 -5009,2,47.0,3,0.0,2,111,1,0,56,3.0,0.0,0.0,416.1642470544797,0.0,860.2011153965291,21462.0,0,20,2,2657,201105009,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2978.9274670943955,800.0,0.0,0.0,0.0,21180.0,0,1,2,51.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1276.3653624510089,0.059470942244479026,0.060262764988244046,14120.0,3,2,3_0,3_0_0,3_4_0,3_0_1 -5010,2,54.0,3,0.0,99,111,1,0,54,4.0,0.0,0.0,886.7995137172322,0.0,0.0,32834.0,0,50,2,2658,201105010,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2413.036020772859,0.0,650.0,0.0,0.0,15713.0,0,1,3,65.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,886.7995137172322,0.027008573847756356,0.05643731392587235,15713.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -5011,2,59.0,3,0.0,1,112,2,13,13,10.0,1586.456009138882,0.0,2218.363091237261,260.6865481215533,0.0,41956.0,50,44,1,2659,201105011,,,110.0,,4.0,0.0,6.0,2.0,4.0,2.5,1090.1996494527675,0.0,1626.0,0.0,0.0,96129.0,1,1,1,132.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4065.5056484976963,0.09689926705352503,0.0422921870455086,38451.6,10,5,10,10_1,10_0,10_1_0 -5012,2,84.0,3,0.0,4,111,1,77,78,6.0,0.0,0.0,491.1504999049286,0.0,0.0,23066.0,50,71,2,266,201105012,,,,329.0,0.0,4.0,3.0,0.0,2.0,1.5,4088.496235218091,0.0,360.0,0.0,0.0,29220.0,5,5,3,98.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,491.1504999049286,0.02129326714232761,0.016808709784562923,19480.0,6,3,6,6_0,6_4,6_0_1 -5013,2,75.0,3,0.0,1,111,1,0,86,1.0,0.0,0.0,338.3481221567286,0.0,2137.629694596737,7839.0,0,71,1,2660,201105013,,,335.0,,0.0,2.0,3.0,0.0,1.0,1.0,2643.00888226277,0.0,248.0,1230.0,0.0,8750.0,0,5,1,90.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2475.9778167534655,0.3158537845073945,0.2829688933432532,8750.0,1,1,1_0,1_1_0,1_2_0,1_1_0 -5014,2,78.0,1,0.0,3,111,6,77,74,6.0,3966.1400228472053,0.0,140.5236152505768,0.0,0.0,37184.0,41,12,1,2663,201105014,,,280.0,,0.0,2.0,5.0,0.0,2.0,1.5,2203.546928934147,0.0,103.0,0.0,0.0,31927.0,5,5,1,110.0,8,6.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4106.6636380977825,0.11044168562009957,0.1286266682775639,21284.666666666668,6,3,6,6_1,6_2,6_0_1 -5015,2,29.0,2,0.0,1,112,4,37,42,9.0,0.0,0.0,1023.230208135268,34.7582064162071,0.0,49935.0,31,20,2,2664,201105015,,,450.0,648.0,2.0,0.0,4.0,0.0,2.0,1.5,3431.2484438315037,0.0,750.0,0.0,0.0,52877.0,1,1,3,92.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1057.988414551475,0.021187311796364773,0.020008480332686707,35251.333333333336,9,5,9,9_0,9_0,9_1_0 -5016,2,64.0,3,0.0,4,111,2,78,78,4.0,1872.018090783881,0.0,491.1504999049286,0.0,0.0,27347.0,70,50,1,2667,201105016,,,435.0,,0.0,2.0,5.0,0.0,2.0,1.5,1751.110296209206,0.0,360.0,0.0,0.0,24442.0,5,5,1,120.0,6,4.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2363.1685906888097,0.08641418037403772,0.09668474718471523,16294.666666666666,4,2,4_0,4_1_0,4_2_0,4_0_1 -5017,2,68.0,3,0.0,3,112,2,0,77,4.0,3966.1400228472053,0.0,736.7257498573929,208.54923849724264,0.0,14697.0,0,71,1,2668,201105017,,,220.0,,0.0,5.0,5.0,0.0,1.0,1.0,2191.7941590421688,0.0,540.0,0.0,0.0,16077.0,0,5,1,100.0,4,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4911.4150112018415,0.33417806431257,0.305493251925225,16077.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -5018,2,41.0,4,0.0,2,111,2,0,55,8.0,1586.456009138882,0.0,851.3275331685429,79.94387475727635,0.0,59343.0,0,71,1,267,201105018,,,390.0,,2.0,1.0,5.0,0.0,2.0,1.5,2988.0405626021125,0.0,624.0,0.0,0.0,37200.0,0,1,1,120.0,9,7.0,5,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2517.727417064701,0.04242669593826907,0.06768084454475003,24800.0,7,4,7,7_1,7_3,7_0_1 -5019,1,21.0,1,242.0,1,111,1,0,46,1.0,0.0,0.0,573.00891655575,0.0,0.0,12951.0,0,42,2,2670,201105019,,,,233.0,1.0,0.0,2.0,0.0,1.0,1.0,3386.401711669207,0.0,420.0,0.0,0.0,5495.0,0,2,3,30.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,573.00891655575,0.044244376230078764,0.10427823777174705,5495.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -5020,2,67.0,3,0.0,5,211,2,86,78,2.0,0.0,208.188947934516,545.7227776721429,0.0,2085.4923849724264,13961.0,71,70,1,2671,201105020,,,240.0,,0.0,2.0,6.0,0.0,2.0,1.5,2484.7545588266494,0.0,400.0,1200.0,0.0,17060.0,6,5,1,124.0,4,3.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2839.404110579085,0.20338114107722122,0.16643634880299443,11373.333333333334,2,1,2_0,2_1_0,2_1_0,2_0_0 -5021,2,23.0,2,0.0,1,112,2,0,63,5.0,951.8736054833294,0.0,695.7965415319821,48.661488982689946,0.0,11663.0,0,31,1,2672,201105021,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2913.261037580421,0.0,510.0,0.0,0.0,18374.0,0,1,3,50.0,8,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1696.3316359980015,0.14544556597770741,0.09232239229334938,18374.0,5,3,5,5_1,5_1,5_1_0 -5022,1,63.0,4,82.0,9,112,4,77,78,4.0,0.0,0.0,2046.460416270536,166.8393907977941,0.0,13721.0,71,71,1,2673,201105022,,,210.0,,0.0,1.0,4.0,0.0,2.0,1.5,2952.445936702363,0.0,1500.0,0.0,0.0,24054.0,7,5,3,97.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2213.29980706833,0.16130747081614533,0.09201379425743453,16036.0,4,2,4_1,4_1_1,4_0_1,4_0_0 -5023,2,87.0,2,0.0,2,111,1,0,78,4.0,0.0,0.0,272.86138883607146,0.0,104.27461924862132,11601.0,0,70,2,2675,201105023,,,,289.0,0.0,7.0,3.0,0.0,1.0,1.0,2965.6351494184996,0.0,200.0,60.0,0.0,16690.0,0,5,3,70.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,377.1360080846928,0.032508922341582,0.02259652534959214,16690.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -5024,2,64.0,3,0.0,5,111,2,74,74,10.0,555.2596031986087,0.0,1699.6332034540203,0.0,667.7311158265557,46726.0,50,12,1,2676,201105024,,,280.0,,0.0,2.0,6.0,0.0,2.0,1.5,1931.2091356553424,621.0,1009.0,0.0,0.0,62755.0,5,5,1,120.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2922.623922479185,0.06254813000212268,0.04657196912563437,41836.666666666664,10,5,10,10_1,10_3,10_0_0 -5025,2,42.0,2,0.0,2,112,6,0,69,4.0,428.3431224674982,41.637789586903196,0.0,0.0,0.0,13484.0,0,50,1,2678,201105025,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2399.8909758201867,0.0,0.0,0.0,0.0,14675.0,0,1,1,89.0,9,0.0,1,5,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,469.98091205440136,0.03485471017905676,0.03202595652840895,14675.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -5026,2,51.0,2,0.0,7,111,6,45,33,9.0,0.0,0.0,2455.752499524643,0.0,0.0,45001.0,31,10,1,2679,201105026,,,511.0,,2.0,0.0,5.0,1.0,3.0,1.8,1707.0863448646817,0.0,1800.0,0.0,0.0,58184.0,1,1,1,120.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2455.752499524643,0.05457106507687925,0.04220666333570471,32324.444444444445,9,5,9,9_1,9_3,9_0_0 -5027,2,64.0,2,0.0,2,300,2,0,74,7.0,2379.684013708323,0.0,668.510402648375,0.0,0.0,33495.0,0,41,1,268,201105027,,,,,0.0,2.0,4.0,1.0,3.0,2.0,1358.502568172695,0.0,490.0,0.0,0.0,44840.0,0,5,1,100.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3048.194416356698,0.09100446085555151,0.06797935808110389,22420.0,7,4,7,7_1,7_0,7_0_1 -5028,2,48.0,3,0.0,3,111,2,62,43,9.0,0.0,0.0,1.3643069441803573,0.0,1684.0351008652342,43737.0,50,41,1,2681,201105028,,,,,2.0,1.0,4.0,0.0,2.0,1.5,1535.6249468447552,0.0,1.0,969.0,0.0,51600.0,1,1,2,100.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1685.3994078094145,0.03853486539564704,0.03266277922111269,34400.0,9,5,9,9_1,9_2,9_0_1 -5029,1,26.0,3,197.0,1,400,2,68,63,3.0,0.0,416.377895869032,1487.0945691565894,46.92357866187959,0.0,30182.0,41,50,1,2682,201105029,,,180.0,,2.0,0.0,4.0,2.0,4.0,2.1,2943.3195548035696,0.0,1090.0,0.0,0.0,27249.0,4,1,3,81.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1950.396043687501,0.0646211663802101,0.07157679341214361,12975.714285714284,3,2,3_1,3_1_1,3_0_1,3_1_0 -5030,2,45.0,3,0.0,6,300,4,56,67,5.0,0.0,187.3700531410644,3751.8440964959823,104.27461924862132,0.0,17490.0,50,50,1,2687,201105030,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1091.1358778274569,0.0,2750.0,0.0,0.0,31660.0,1,4,2,113.0,0,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4043.488768885668,0.23118860885566997,0.12771600659777851,17588.888888888887,5,3,5,5_1,5_1,5_0_0 -5031,1,40.0,2,169.0,2,111,2,22,22,4.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,38938.0,50,50,2,269,201105031,,,300.0,,2.0,0.0,3.0,1.0,3.0,1.8,2903.276460057325,700.0,0.0,0.0,0.0,29554.0,1,1,3,100.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1116.8196921446327,0.028681999387349957,0.03778912134210708,16418.888888888887,4,2,4_1,4_0_1,4_2_1,4_0_1 -5032,2,65.0,3,0.0,4,111,2,77,75,3.0,1594.3882891845767,0.0,559.3658471139465,114.70208117348345,0.0,21007.0,70,50,1,2690,201105032,,,350.0,,0.0,2.0,3.0,0.0,2.0,1.5,1311.3018457257433,0.0,410.0,0.0,0.0,21003.0,6,5,1,94.0,6,5.0,3,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2268.4562174720063,0.10798572939839131,0.10800629517078543,14002.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -5033,0,29.0,2,0.0,99,120,4,55,55,5.0,0.0,0.0,1637.1683330164287,208.54923849724264,0.0,23792.0,60,50,1,2693,201105033,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3316.8935334743232,0.0,1200.0,0.0,0.0,28033.0,1,1,5,60.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1845.7175715136714,0.07757723484842263,0.06584088650924523,18688.666666666668,5,3,5,5_1,5_0,5_0_0 -5034,2,88.0,3,0.0,7,400,2,0,77,8.0,0.0,902.152107716236,1885.4721968572537,156.41192887293198,0.0,17531.0,0,71,1,2694,201105034,,,,,0.0,1.0,5.0,0.0,1.0,1.0,5465.974238620556,0.0,1382.0,0.0,0.0,28600.0,0,5,1,129.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2944.0362334464216,0.16793316031295544,0.10293832984078398,28600.0,8,4,8,8_1,8_0,8_0_0 -5035,2,65.0,3,0.0,5,112,5,75,74,9.0,0.0,1065.9274134247219,1159.6609025533037,250.25908619669116,0.0,62575.0,71,50,1,2695,201105035,,,336.0,,0.0,2.0,6.0,0.0,2.0,1.5,1516.8996732571622,0.0,850.0,0.0,0.0,49340.0,5,5,1,167.0,9,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2475.8474021747165,0.039566079139827674,0.05017931500151432,32893.333333333336,9,5,9,9_1,9_0,9_0_0 -5036,1,36.0,2,190.0,5,111,5,43,67,4.0,0.0,111.0341055650752,95.501486092625,0.0,0.0,37786.0,42,50,1,2697,201105036,,,170.0,,2.0,0.0,5.0,2.0,4.0,2.1,3381.5891451096227,0.0,70.0,0.0,0.0,34580.0,1,1,3,90.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,206.5355916577002,0.005465928959342089,0.005972689174600931,16466.666666666664,4,2,4_1,4_1_1,4_2_1,4_0_0 -5037,2,77.0,2,0.0,1,112,2,78,78,3.0,2538.3296146222115,0.0,545.7227776721429,243.30744491344973,0.0,15843.0,50,71,1,2698,201105037,,,,,0.0,4.0,4.0,0.0,2.0,1.5,3984.126348984549,0.0,400.0,0.0,0.0,21239.0,5,5,1,90.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3327.359837207804,0.2100208191130344,0.15666273540222253,14159.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -5038,2,58.0,3,0.0,1,120,2,48,43,6.0,0.0,0.0,2060.1034857123395,0.0,2294.041623469669,58229.0,31,33,1,2699,201105038,,,240.0,,3.0,2.0,6.0,2.0,4.0,2.5,1056.1488978918767,0.0,1510.0,1320.0,0.0,51203.0,1,1,1,130.0,0,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4354.145109182009,0.07477623021487591,0.08503691403202955,20481.2,6,3,6,6_1,6_0,6_1_0 -5039,2,64.0,4,0.0,5,112,6,0,77,2.0,0.0,0.0,1997.345366280043,0.0,125.12954309834558,20037.0,0,60,1,27,201105039,,,600.0,,0.0,1.0,4.0,0.0,1.0,1.0,1834.4258748182513,0.0,1464.0,72.0,0.0,11929.0,0,5,1,88.0,8,2.0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2122.4749093783885,0.10592777907762582,0.17792563579330944,11929.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -5040,2,81.0,3,0.0,1,111,6,0,77,6.0,190.37472109666587,0.0,382.0059443705,0.0,0.0,11541.0,0,71,2,2700,201105040,,,,320.0,0.0,1.0,1.0,0.0,1.0,1.0,3811.8864511740653,0.0,280.0,0.0,0.0,19579.0,0,5,3,25.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,572.3806654671658,0.0495954133495508,0.029234417767361246,19579.0,6,3,6,6_0,6_3,6_1_0 -5041,2,64.0,3,0.0,9,111,2,77,75,7.0,0.0,0.0,1237.4263983715841,0.0,0.0,32740.0,71,50,2,2702,201105041,,,317.0,,0.0,2.0,2.0,0.0,2.0,1.5,7553.199617501134,0.0,907.0,0.0,0.0,36462.0,5,5,3,56.0,4,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1237.4263983715841,0.037795552790824194,0.03393742521999847,24308.0,7,4,7,7_0,7_2,7_0_0 -5042,2,66.0,3,0.0,7,112,2,78,74,6.0,0.0,0.0,2387.537152315625,6951.641283241421,0.0,89861.0,70,70,1,2703,201105042,,,,,1.0,0.0,6.0,2.0,5.0,2.8,984.8885538676179,0.0,1750.0,0.0,0.0,59155.0,5,5,1,170.0,8,0.0,5,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,9339.178435557045,0.1039291621009898,0.1578763998910835,21126.785714285717,6,3,6,6_1,6_0,6_0_0 -5043,2,53.0,5,0.0,2,111,2,85,65,2.0,0.0,0.0,818.5841665082144,0.0,2259.283417053462,15867.0,70,70,1,2704,201105043,,,160.0,,1.0,0.0,5.0,1.0,3.0,2.0,2808.454999403764,0.0,600.0,1300.0,0.0,21310.0,6,1,1,90.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3077.8675835616764,0.1939791758720411,0.14443301659135038,10655.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -5044,2,34.0,3,0.0,4,112,2,63,45,8.0,0.0,0.0,368.36287492869644,0.0,1581.4983919374233,41138.0,50,31,1,2705,201105044,,,165.0,,2.0,0.0,3.0,1.0,3.0,1.8,1613.8364163892272,0.0,270.0,910.0,0.0,45941.0,1,1,2,70.0,9,1.0,4,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1949.8612668661199,0.04739805695138606,0.0424427258193361,25522.777777777777,8,4,8,8_1,8_1,8_0_1 -5045,2,60.0,2,0.0,2,111,2,0,77,6.0,0.0,0.0,409.2920832541072,0.0,1108.7867846770066,24252.0,0,71,1,2706,201105045,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3249.7791281018153,0.0,300.0,638.0,0.0,20572.0,0,5,1,65.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1518.0788679311138,0.06259602787114935,0.07379345070635397,20572.0,6,3,6,6_1,6_3,6_0_1 -5046,2,38.0,3,0.0,6,111,2,0,64,5.0,0.0,0.0,1437.9795191660965,0.0,0.0,32418.0,0,12,2,2708,201105046,,,,377.0,2.0,0.0,1.0,0.0,2.0,1.5,3143.5901754514266,0.0,1054.0,0.0,0.0,26133.0,0,4,3,36.0,9,7.0,5,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1437.9795191660965,0.0443574409021561,0.05502542835365616,17422.0,5,3,5,5_0,5_3,5_0_0 -5047,2,44.0,3,0.0,2,111,6,0,53,6.0,158.64560091388822,0.0,474.77881657476433,0.0,0.0,20995.0,0,41,2,271,201105047,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2750.3369027042713,0.0,348.0,0.0,0.0,20700.0,0,1,3,42.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,633.4244174886526,0.030170250892529296,0.030600213405248915,20700.0,6,3,6,6_0,6_3,6_0_1 -5048,2,74.0,3,0.0,2,211,2,0,77,5.0,0.0,0.0,720.3540665272286,0.0,3475.8206416207104,12392.0,0,70,1,2712,201105048,,,,,0.0,0.0,5.0,1.0,2.0,1.5,6248.915924120271,0.0,528.0,2000.0,0.0,25570.0,0,5,1,100.0,2,3.0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4196.174708147939,0.33861965043156383,0.1641053855357035,17046.666666666668,5,3,5,5_1,5_1,5_0_1 -5049,2,88.0,2,0.0,1,400,2,71,71,2.0,2379.684013708323,0.0,0.0,667.3575631911764,0.0,14092.0,70,70,1,2713,201105049,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1817.2634415906061,0.0,0.0,0.0,0.0,15810.0,5,5,1,150.0,0,0.0,3,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3047.0415768994994,0.21622492030226365,0.19272875249206195,10540.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -5050,0,30.0,1,0.0,4,111,1,0,23,9.0,0.0,0.0,0.0,0.0,0.0,26324.0,0,44,8,2714,201105050,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3959.4120289692696,0.0,0.0,0.0,0.0,29204.0,0,1,5,75.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,29204.0,9,5,9,9_0,9_4,9_0_1 -5051,2,24.0,1,0.0,7,111,2,0,38,8.0,0.0,0.0,286.504458277875,0.0,0.0,16046.0,0,12,2,2715,201105051,,,42.0,336.0,1.0,0.0,2.0,0.0,1.0,1.0,2808.785386043736,0.0,210.0,0.0,0.0,26768.0,0,1,3,35.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,286.504458277875,0.0178551949568662,0.010703244854971422,26768.0,8,4,8,8_0,8_3,8_0_0 -5052,2,44.0,2,0.0,9,111,4,55,37,8.0,0.0,0.0,2101.0326940377504,0.0,0.0,59482.0,42,20,1,2716,201105052,,,,,2.0,1.0,5.0,2.0,4.0,2.5,2330.5556226552208,0.0,1540.0,0.0,0.0,63691.0,1,1,3,130.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2101.0326940377504,0.0353221595446984,0.032987905575948724,25476.4,8,4,8,8_1,8_3,8_0_0 -5053,2,45.0,2,0.0,1,112,2,0,37,6.0,3172.912018277764,0.0,491.1504999049286,173.79103208103552,0.0,24698.0,0,43,1,2718,201105053,,,,,1.0,0.0,8.0,1.0,2.0,1.3,3190.1123640925216,0.0,360.0,0.0,0.0,26685.0,0,1,1,148.0,6,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3837.8535502637283,0.15539126853444524,0.1438206314507674,20526.923076923074,6,3,6,6_1,6_0,6_1_0 -5054,2,59.0,3,0.0,4,111,2,0,56,5.0,0.0,0.0,136.43069441803573,0.0,1042.7461924862132,11972.0,0,60,1,2719,201105054,,,130.0,,1.0,1.0,4.0,0.0,1.0,1.0,3091.6562799531516,0.0,100.0,600.0,0.0,16838.0,0,1,1,100.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1179.176886904249,0.09849456121819654,0.07003069764249013,16838.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -5055,1,31.0,2,23.0,1,400,2,85,37,6.0,702.8000120485248,0.0,0.0,0.0,0.0,78568.0,44,44,1,272,201105055,,,,,1.0,0.0,6.0,2.0,4.0,2.1,3099.08457534884,0.0,0.0,0.0,0.0,41135.0,6,1,2,160.0,0,0.0,4,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,702.8000120485248,0.008945117758483412,0.017085207537341066,19588.095238095237,6,3,6,6_1,6_0,6_1_0 -5056,2,33.0,3,0.0,1,111,2,22,38,9.0,0.0,0.0,873.1564442754286,0.0,0.0,58976.0,20,12,1,2720,201105056,,,,,2.0,0.0,5.0,1.0,3.0,1.8,3428.58235859993,0.0,640.0,0.0,0.0,55131.0,1,1,2,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,873.1564442754286,0.014805284255891017,0.015837848837776,30628.333333333332,9,5,9,9_1,9_4,9_1_0 -5057,2,50.0,5,0.0,7,111,2,77,62,6.0,0.0,0.0,941.3717914844465,0.0,1025.3670892781097,22108.0,50,41,1,2721,201105057,,,250.0,,1.0,5.0,5.0,0.0,2.0,1.5,1412.8379017404789,0.0,690.0,590.0,0.0,30150.0,5,1,3,120.0,5,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1966.7388807625562,0.08896050663843659,0.06523180367371663,20100.0,6,3,6,6_1,6_2,6_0_0 -5058,2,87.0,3,0.0,2,111,2,0,86,3.0,0.0,0.0,324.70505271492505,0.0,2007.2864205359604,15732.0,0,70,1,2723,201105058,,,224.0,,0.0,2.0,4.0,0.0,1.0,1.0,2216.304856749677,0.0,238.0,1155.0,0.0,13172.0,0,5,1,100.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2331.9914732508855,0.1482323590929879,0.17704156341109062,13172.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -5059,2,85.0,2,0.0,1,111,1,74,74,10.0,0.0,0.0,601.4340253743658,0.0,1183.8039720257757,18894.0,41,12,1,2725,201105059,,,,,0.0,1.0,6.0,0.0,2.0,1.5,2206.1985447234983,212.0,360.0,550.0,0.0,73810.0,5,5,1,160.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1785.2379974001415,0.09448703278290153,0.02418693940387673,49206.666666666664,10,5,10,10_1,10_3,10_1_0 -5060,2,36.0,1,0.0,9,111,2,37,22,9.0,0.0,693.9631597817199,1296.0915969713394,0.0,1042.7461924862132,61890.0,20,31,1,2726,201105060,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.1,2457.8266840155084,0.0,950.0,600.0,0.0,73695.0,1,1,2,175.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3032.8009492392725,0.04900308530035987,0.04115341541813247,35092.857142857145,9,5,9,9_1,9_2,9_0_0 -5061,2,45.0,3,0.0,9,112,2,52,63,4.0,1522.997768773327,0.0,1118.731694227893,83.41969539889705,0.0,30629.0,60,50,1,2728,201105061,,,640.0,,2.0,0.0,4.0,2.0,4.0,2.3,1757.135761355308,0.0,820.0,0.0,0.0,35525.0,1,1,2,140.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2725.1491584001174,0.08897284137255926,0.07671074337509128,15445.652173913044,4,2,4_0,4_1_0,4_0_0,4_0_0 -5062,2,35.0,2,0.0,1,111,2,55,46,8.0,0.0,0.0,688.9750068110804,0.0,2328.799829885876,40380.0,31,41,1,2730,201105062,,,256.0,,2.0,0.0,5.0,1.0,3.0,1.8,1499.1320303136415,0.0,505.0,1340.0,0.0,51904.0,4,1,2,100.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3017.7748366969563,0.07473439417278248,0.058141469572613985,28835.555555555555,8,4,8,8_1,8_2,8_1_0 -5063,2,45.0,5,0.0,7,112,2,0,52,3.0,0.0,0.0,1637.1683330164287,0.0,2189.7670042210475,20687.0,0,41,1,2732,201105063,,,363.0,524.0,1.0,2.0,4.0,1.0,2.0,1.3,2444.0630526284945,0.0,1200.0,1260.0,0.0,17391.0,0,4,3,90.0,10,1.0,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3826.9353372374762,0.18499228197599826,0.2200526328122291,13377.692307692307,3,2,3_0,3_1_0,3_1_0,3_0_0 -5064,2,70.0,2,0.0,8,120,4,72,72,4.0,0.0,707.8424229773543,1214.233180320518,208.54923849724264,0.0,23526.0,70,50,1,2733,201105064,,,,,0.0,4.0,6.0,0.0,2.0,1.5,2382.483128459589,0.0,890.0,0.0,0.0,23311.0,5,5,1,160.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2130.6248417951147,0.0905646876560025,0.09139997605401376,15540.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -5065,2,35.0,1,0.0,5,111,2,0,47,8.0,0.0,0.0,1146.0178331115,0.0,0.0,22748.0,0,20,2,2734,201105065,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2681.872220833957,0.0,840.0,0.0,0.0,24812.0,0,1,2,26.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1146.0178331115,0.0503788391555961,0.04618804744121796,24812.0,7,4,7,7_0,7_3,7_0_0 -5066,1,41.0,4,95.0,7,221,4,0,54,3.0,0.0,0.0,2062.8320996007,166.8393907977941,0.0,28832.0,0,43,2,2737,201105066,,,,356.0,2.0,0.0,3.0,1.0,2.0,1.5,4191.469656343697,0.0,1512.0,0.0,0.0,20564.0,0,1,3,67.0,1,1.0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2229.6714903984944,0.07733322316864923,0.10842596238078654,13709.333333333334,3,2,3_1,3_0_1,3_1_1,3_0_0 -5067,2,57.0,3,0.0,2,111,2,74,46,5.0,0.0,0.0,586.6519859975537,0.0,1812.6404646052006,26792.0,71,71,1,2741,201105067,,,599.0,,1.0,2.0,5.0,0.0,2.0,1.5,3441.7825377371637,0.0,430.0,1043.0,0.0,28296.0,7,1,1,90.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2399.2924506027543,0.08955256981945187,0.08479263678974959,18864.0,5,3,5,5_1,5_3,5_0_1 -5068,2,22.0,5,0.0,2,111,1,0,52,6.0,0.0,0.0,409.2920832541072,52.13730962431066,0.0,17117.0,0,60,2,2742,201105068,,,,530.0,1.0,0.0,1.0,0.0,1.0,1.0,3637.313562829282,0.0,300.0,0.0,0.0,20594.0,0,1,3,37.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,461.42939287841784,0.026957375292306938,0.022406011113839847,20594.0,6,3,6,6_0,6_2,6_0_1 -5069,2,61.0,2,0.0,5,112,2,22,75,9.0,3966.1400228472053,0.0,1019.1372873027269,0.0,0.0,59621.0,42,50,1,2743,201105069,,,700.0,,1.0,2.0,5.0,0.0,2.0,1.5,1955.041865845445,0.0,747.0,0.0,0.0,44748.0,1,5,1,140.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4985.277310149932,0.08361613039281347,0.11140782404017906,29832.0,9,5,9,9_1,9_0,9_0_0 -5070,1,76.0,4,124.0,6,111,4,0,78,3.0,0.0,0.0,1500.737638598393,97.32297796537989,0.0,8022.0,0,71,2,2744,201105070,,,290.0,,0.0,2.0,4.0,0.0,1.0,1.0,5762.0677301359065,0.0,1100.0,0.0,0.0,13768.0,0,5,3,53.0,6,4.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1598.0606165637728,0.19920975025726412,0.11607064327162789,13768.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -5071,2,29.0,4,0.0,1,111,2,0,35,4.0,0.0,0.0,491.1504999049286,0.0,417.0984769944853,28012.0,0,20,2,2746,201105071,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2850.269271772086,0.0,360.0,240.0,0.0,16264.0,0,1,2,55.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,908.248976899414,0.03242356764598793,0.05584413286395806,16264.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -5072,2,82.0,3,0.0,2,111,2,0,75,6.0,0.0,0.0,375.18440964959825,0.0,187.69431464751835,10540.0,0,70,1,2747,201105072,,,144.0,,0.0,2.0,4.0,0.0,1.0,1.0,3532.729155318646,0.0,275.0,108.0,0.0,20529.0,0,5,1,80.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,562.8787242971166,0.053404053538625866,0.027418711300945812,20529.0,6,3,6,6_1,6_2,6_0_1 -5073,2,52.0,3,0.0,2,111,2,0,48,6.0,0.0,0.0,196.46019996197145,0.0,1007.9879860700061,19929.0,0,31,1,2749,201105073,,,85.0,,1.0,0.0,4.0,0.0,1.0,1.0,2966.966407186341,0.0,144.0,580.0,0.0,19996.0,0,1,1,70.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1204.4481860319775,0.060436960511414395,0.06023445619283744,19996.0,6,3,6,6_1,6_3,6_0_1 -5074,1,69.0,4,275.0,99,111,1,0,86,1.0,0.0,0.0,736.7257498573929,0.0,583.9378677922793,8256.0,0,71,2,275,201105074,,,,5.0,0.0,0.0,3.0,0.0,2.0,1.5,3360.8528774925126,0.0,540.0,336.0,0.0,12750.0,0,6,3,87.0,9,7.0,5,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1320.6636176496722,0.15996410097500874,0.10358146020781743,8500.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -5075,2,86.0,2,0.0,1,111,2,77,75,10.0,0.0,0.0,818.5841665082144,0.0,2085.4923849724264,52644.0,60,20,2,2750,201105075,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2597.8588817924165,0.0,600.0,1200.0,0.0,60490.0,5,5,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2904.076551480641,0.055164435671313745,0.048009200718807085,40326.666666666664,10,5,10,10_0,10_4,10_1_0 -5076,2,31.0,3,0.0,2,111,2,52,63,6.0,2379.684013708323,0.0,2223.8203190139825,0.0,0.0,36127.0,43,50,1,2752,201105076,,,396.0,,2.0,0.0,4.0,1.0,3.0,1.8,1718.8696937948332,0.0,1630.0,0.0,0.0,37770.0,1,1,2,75.0,8,6.0,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4603.504332722306,0.1274255911844965,0.1218825610993462,20983.333333333332,6,3,6,6_1,6_2,6_0_1 -5077,1,50.0,5,9999.0,4,400,4,85,69,2.0,0.0,0.0,1800.8851663180715,0.0,0.0,31643.0,71,71,1,2754,201105077,,,,,3.0,1.0,7.0,5.0,7.0,3.6,1881.480984843964,0.0,1320.0,0.0,0.0,36470.0,6,1,2,180.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1800.8851663180715,0.05691259255816678,0.049379905849138234,10130.555555555555,2,1,2_1,2_1_1,2_0_1,2_0_1 -5078,2,58.0,2,0.0,6,221,2,13,62,2.0,0.0,0.0,0.0,0.0,0.0,16781.0,71,70,1,2757,201105078,,,,,2.0,2.0,5.0,0.0,2.0,1.5,5680.777778818313,0.0,0.0,0.0,0.0,16930.0,1,1,1,100.0,1,1.0,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,11286.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0 -5079,2,64.0,2,0.0,6,221,2,78,75,7.0,0.0,0.0,1091.4455553442858,2954.447545377604,0.0,48882.0,41,31,1,2759,201105079,,,1200.0,,0.0,2.0,6.0,0.0,2.0,1.5,1804.124819400463,0.0,800.0,0.0,0.0,33380.0,5,5,1,180.0,1,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4045.89310072189,0.08276856717650444,0.1212071030773484,22253.333333333332,7,4,7,7_1,7_1,7_0_0 -5080,2,31.0,9,0.0,9,112,2,67,46,8.0,0.0,0.0,818.5841665082144,0.0,0.0,73691.0,44,44,1,2763,201105080,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2983.0062906317835,0.0,600.0,0.0,0.0,44590.0,1,1,2,160.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,818.5841665082144,0.011108332991928652,0.01835802122691667,24772.222222222223,7,4,7,7_1,7_0,7_0_0 -5081,2,37.0,3,0.0,1,400,2,52,63,5.0,0.0,0.0,810.3983248431322,2400.0541530391006,0.0,48735.0,50,50,1,2765,201105081,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1237.904477836305,0.0,594.0,0.0,0.0,45483.0,1,1,2,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3210.452477882233,0.065875704891397,0.07058576782275208,18951.25,5,3,5,5_1,5_0,5_1_0 -5082,2,49.0,2,0.0,1,112,2,52,43,9.0,0.0,277.585263912688,586.6519859975537,0.0,3128.2385774586396,23847.0,50,33,1,2766,201105082,,,353.0,,2.0,2.0,6.0,0.0,2.0,1.5,1315.957288008382,0.0,430.0,1800.0,0.0,53812.0,1,1,1,121.0,9,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3992.4758273688813,0.1674204649376811,0.07419303923602322,35874.666666666664,9,5,9,9_1,9_0,9_1_0 -5083,2,47.0,3,0.0,4,112,1,0,62,3.0,0.0,0.0,463.3934353711895,0.0,111.8261450015488,21545.0,0,50,2,2767,201105083,488.0,488.0,,272.0,1.0,0.0,3.0,1.0,3.0,2.0,2687.670144906297,104.0,300.0,0.0,488.0,27423.0,0,1,3,52.0,10,5.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,575.2195803727383,0.026698518467056776,0.020975807912071556,13711.5,3,2,3_0,3_0_0,3_2_0,3_0_1 -5084,1,47.0,4,225.0,7,111,2,0,55,2.0,0.0,0.0,2155.6049718049644,0.0,0.0,22758.0,0,50,2,2769,201105084,,,,539.0,1.0,0.0,4.0,1.0,2.0,1.5,3217.2478661958435,0.0,1580.0,0.0,0.0,16201.0,0,1,3,97.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2155.6049718049644,0.09471855926728906,0.13305382209770783,10800.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0 -5085,2,46.0,2,0.0,99,111,2,0,22,10.0,0.0,0.0,109.14455553442858,0.0,0.0,25896.0,0,41,1,277,201105085,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2780.643394627894,0.0,80.0,0.0,0.0,97840.0,0,1,2,70.0,5,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,109.14455553442858,0.004214726426259985,0.001115541246263579,97840.0,10,5,10,10_1,10_2,10_0_0 -5086,2,60.0,3,0.0,4,111,1,85,62,5.0,0.0,0.0,818.5841665082144,0.0,1842.1849400589765,27213.0,71,60,2,2771,201105086,760.0,760.0,,395.0,3.0,2.0,4.0,4.0,6.0,3.3,2360.0516188845054,0.0,600.0,1060.0,0.0,60220.0,6,1,3,87.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2660.7691065671906,0.09777566260857644,0.04418414325086666,18248.484848484848,5,3,5,5_0,5_2,5_0_1 -5087,1,50.0,2,125.0,5,111,1,85,12,6.0,0.0,0.0,743.5472845782947,0.0,0.0,34474.0,70,71,2,2772,201105087,,,420.0,,1.0,2.0,5.0,2.0,4.0,2.1,1996.4174099940776,0.0,545.0,0.0,0.0,45230.0,7,1,2,85.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,743.5472845782947,0.021568349613572395,0.016439250156495572,21538.095238095237,6,3,6,6_0,6_2,6_0_0 -5088,2,77.0,3,0.0,5,120,2,77,75,4.0,0.0,0.0,27.286138883607144,0.0,121.65372245672486,11265.0,70,50,1,2773,201105088,,,76.0,,0.0,3.0,4.0,0.0,2.0,1.5,2325.6828298789114,0.0,20.0,70.0,0.0,24413.0,5,5,1,84.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,148.93986134033202,0.013221470158928718,0.006100842229153812,16275.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_0 -5089,1,21.0,3,295.0,99,111,2,0,54,1.0,0.0,0.0,338.1334507317647,0.0,698.9134062596798,14325.0,0,43,2,2774,201105089,,,,282.0,1.0,0.0,2.0,0.0,1.0,1.0,4989.166606567034,650.0,0.0,0.0,0.0,3558.0,0,1,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1037.0468569914447,0.07239419595053714,0.29146904356139536,3558.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -5090,1,80.0,2,58.0,6,111,4,0,77,4.0,0.0,0.0,1425.7007566684733,86.89551604051776,0.0,13128.0,0,60,2,2775,201105090,,,,288.0,0.0,1.0,2.0,0.0,1.0,1.0,3647.041917415096,0.0,1045.0,0.0,0.0,16138.0,0,5,3,60.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1512.5962727089911,0.11521909450860689,0.09372885566420815,16138.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -5091,2,82.0,3,0.0,2,111,2,0,77,4.0,0.0,0.0,489.7861929607483,0.0,1751.813603376838,26692.0,0,50,1,2776,201105091,,,95.0,,0.0,1.0,5.0,0.0,1.0,1.0,3412.801887997706,0.0,359.0,1008.0,0.0,15943.0,0,5,1,88.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2241.599796337586,0.08398021116205553,0.14060087789861295,15943.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -5092,2,48.0,3,0.0,2,111,1,0,47,7.0,0.0,0.0,886.7995137172322,0.0,2954.447545377604,18759.0,0,31,2,2777,201105092,,,,428.0,1.0,1.0,3.0,0.0,1.0,1.0,3448.000994325675,0.0,650.0,1700.0,0.0,23078.0,0,1,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3841.247059094836,0.20476822107227657,0.16644627173476192,23078.0,7,4,7,7_0,7_4,7_0_1 -5093,2,38.0,3,0.0,99,111,1,62,38,8.0,0.0,0.0,212.83188329213573,0.0,271.11401004641544,28248.0,50,31,2,2778,201105093,,,,,2.0,0.0,4.0,0.0,2.0,1.5,5019.515462323959,0.0,156.0,156.0,0.0,41601.0,4,1,2,73.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,483.9458933385512,0.017132040970636902,0.011633035103448262,27734.0,8,4,8,8_0,8_2,8_0_0 -5094,2,66.0,3,0.0,3,300,2,77,71,2.0,634.5824036555529,41.637789586903196,0.0,0.0,0.0,19077.0,70,50,1,2779,201105094,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2018.3820745129794,0.0,0.0,0.0,0.0,17871.0,5,5,1,75.0,0,0.0,3,7,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,676.220193242456,0.03544688332769597,0.03783896778257826,11914.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -5095,2,40.0,3,0.0,5,112,4,63,52,5.0,0.0,0.0,2496.681707850054,112.96417085267309,0.0,20979.0,50,42,1,2780,201105095,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,1308.736621010999,0.0,1830.0,0.0,0.0,36584.0,1,1,3,100.0,6,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2609.6458787027273,0.12439324461140794,0.07133298378260243,17420.95238095238,5,3,5,5_1,5_1,5_0_0 -5096,2,68.0,3,0.0,6,111,2,77,78,7.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,23084.0,60,70,1,2781,201105096,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1923.114297906965,1200.0,0.0,0.0,0.0,32430.0,5,5,1,92.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1914.548043676513,0.08293831414297839,0.05903632573778949,21620.0,6,3,6,6_1,6_2,6_0_0 -5097,2,71.0,3,0.0,6,111,2,0,78,2.0,0.0,0.0,272.86138883607146,0.0,434.4775802025888,9745.0,0,71,1,2782,201105097,,,240.0,,0.0,5.0,5.0,0.0,1.0,1.0,2244.4356973186823,0.0,200.0,250.0,0.0,10971.0,0,5,1,100.0,7,6.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,707.3389690386603,0.07258480954732276,0.06447351827897732,10971.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -5098,2,56.0,3,0.0,2,111,2,85,43,6.0,0.0,971.5484236944079,682.1534720901786,173.79103208103552,0.0,24417.0,31,20,1,2784,201105098,,,320.0,,1.0,3.0,5.0,0.0,2.0,1.5,2048.614990510685,0.0,500.0,0.0,0.0,29146.0,6,1,1,100.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1827.4929278656223,0.07484510496234682,0.06270132875405278,19430.666666666668,6,3,6,6_1,6_2,6_0_1 -5099,2,43.0,1,0.0,6,111,4,42,48,9.0,0.0,0.0,1637.1683330164287,0.0,0.0,51427.0,10,10,1,2787,201105099,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1797.0387763497645,0.0,1200.0,0.0,0.0,55563.0,1,1,2,100.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.03183480142758529,0.02946508167335149,30868.333333333332,9,5,9,9_1,9_3,9_0_0 -5100,2,62.0,2,0.0,5,112,6,46,74,10.0,2776.298015993044,277.585263912688,682.1534720901786,52.13730962431066,0.0,38274.0,50,50,1,2789,201105100,,,445.0,,1.0,1.0,6.0,0.0,2.0,1.5,2173.051391522398,0.0,500.0,0.0,0.0,64434.0,4,5,1,160.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3788.174061620221,0.09897512832785235,0.05879153958500514,42956.0,10,5,10,10_1,10_0,10_0_0 -5101,2,39.0,2,0.0,8,111,2,0,34,10.0,0.0,0.0,242.8466360641036,0.0,1405.9694495355775,53466.0,0,10,1,279,201105101,,,466.0,,1.0,0.0,4.0,2.0,3.0,1.6,1594.9015904328323,0.0,178.0,809.0,0.0,69282.0,0,1,3,90.0,5,4.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1648.8160855996812,0.030838590610849533,0.023798621367738824,43301.25,10,5,10,10_1,10_2,10_0_0 -5102,1,64.0,2,28.0,3,111,1,0,78,3.0,0.0,0.0,180.08851663180715,0.0,260.6865481215533,8924.0,0,71,2,2790,201105102,,,,204.0,0.0,8.0,2.0,0.0,1.0,1.0,3683.2715462297965,0.0,132.0,150.0,0.0,13306.0,0,5,3,40.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,440.7750647533604,0.0493920960055312,0.03312603823488354,13306.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -5103,2,40.0,2,0.0,8,300,2,54,62,7.0,2300.361213251379,0.0,619.3953526578822,48.661488982689946,0.0,35692.0,31,50,1,2792,201105103,,,184.0,,2.0,0.0,5.0,2.0,4.0,2.1,1902.379159793667,0.0,454.0,0.0,0.0,46635.0,1,1,1,155.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2968.418054891951,0.08316760212069794,0.0636521508500472,22207.142857142855,7,4,7,7_1,7_0,7_0_0 -5104,2,47.0,1,0.0,6,111,4,0,43,10.0,0.0,41.637789586903196,780.3079632271495,0.0,1612.877091368492,73874.0,0,50,1,2793,201105104,,,307.0,,2.0,0.0,3.0,2.0,3.0,1.8,2764.248585586223,1500.0,0.0,0.0,0.0,121176.0,0,1,2,110.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2434.822844182545,0.03295913100932053,0.020093276260831724,67320.0,10,5,10,10_1,10_4,10_0_0 -5105,1,41.0,4,400.0,5,111,1,0,43,3.0,0.0,0.0,182.07185808633486,0.0,376.3379879859815,12955.0,0,71,2,2796,201105105,,,,,1.0,0.0,4.0,4.0,5.0,2.6,2663.126652039853,350.0,0.0,0.0,0.0,37610.0,0,4,3,60.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,558.4098460723163,0.04310380903684418,0.014847376922954436,14465.384615384615,3,2,3_1,3_0_1,3_4_1,3_0_0 -5106,2,81.0,3,0.0,2,111,1,77,78,7.0,0.0,0.0,163.71683330164288,0.0,182.4805836850873,15924.0,71,71,2,2797,201105106,,,,,0.0,3.0,3.0,0.0,2.0,1.5,3893.947200595317,0.0,120.0,105.0,0.0,32989.0,5,5,1,55.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,346.1974169867302,0.021740606442271427,0.010494328927422178,21992.666666666668,7,4,7,7_0,7_3,7_0_1 -5107,0,51.0,3,0.0,1,111,2,52,53,9.0,0.0,0.0,654.8673332065715,0.0,1737.9103208103552,28824.0,50,50,2,2798,201105107,,,500.0,,2.0,2.0,4.0,0.0,2.0,1.5,1259.9658794191603,0.0,480.0,1000.0,0.0,45192.0,1,1,5,90.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2392.7776540169266,0.08301337961479761,0.05294692985521611,30128.0,9,5,9,9_0,9_3,9_1_0 -5108,2,31.0,3,0.0,4,112,2,56,65,5.0,0.0,0.0,1195.132883101993,0.0,1737.9103208103552,34326.0,71,71,1,2799,201105108,,,800.0,,2.0,2.0,5.0,2.0,6.0,3.1,3714.9539601003926,0.0,876.0,1000.0,0.0,54480.0,1,1,2,120.0,7,0.0,5,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2933.043203912348,0.08544669358248407,0.05383706321425014,17574.193548387095,5,3,5,5_1,5_0,5_0_1 -5109,0,19.0,2,0.0,3,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,8604.0,0,41,2,280,201105109,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3564.623728103519,0.0,0.0,0.0,0.0,2192.0,0,3,5,70.0,8,7.0,1,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,2192.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -5110,2,73.0,4,0.0,1,112,5,0,78,3.0,0.0,0.0,611.2095109928,0.0,1737.9103208103552,12116.0,0,71,1,2800,201105110,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2234.041976640884,0.0,448.0,1000.0,0.0,13876.0,0,5,1,90.0,9,2.0,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2349.119831803155,0.19388575699927,0.16929373247356264,13876.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -5111,2,38.0,1,0.0,1,111,2,0,34,10.0,0.0,0.0,442.03544991443573,0.0,1734.4345001687345,46001.0,0,10,2,2801,201105111,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3725.0733394558088,0.0,324.0,998.0,0.0,67064.0,0,1,3,60.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2176.4699500831703,0.04731353557712159,0.032453625642418736,67064.0,10,5,10,10_0,10_3,10_1_0 -5112,2,36.0,4,0.0,4,112,1,0,62,7.0,0.0,0.0,245.5752499524643,0.0,0.0,17198.0,0,50,8,2802,201105112,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3529.7229864613246,0.0,180.0,0.0,0.0,22437.0,0,4,2,49.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,245.5752499524643,0.014279291193886748,0.010945101838590912,22437.0,7,4,7,7_0,7_1,7_0_1 -5113,1,63.0,3,34.0,1,300,2,0,56,4.0,1903.7472109666587,0.0,477.50743046312505,0.0,0.0,12243.0,0,70,1,2803,201105113,,,,,1.0,3.0,2.0,0.0,1.0,1.0,1607.556524091284,0.0,350.0,0.0,0.0,15748.0,0,5,3,40.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2381.254641429784,0.1944992764379469,0.1512099721507356,15748.0,4,2,4_1,4_1_1,4_0_1,4_1_0 -5114,2,57.0,1,0.0,7,111,4,75,37,9.0,0.0,0.0,1930.4943260152056,104.27461924862132,0.0,44080.0,50,50,1,2804,201105114,,,593.0,,1.0,1.0,5.0,0.0,2.0,1.5,2075.4837738007104,0.0,1415.0,0.0,0.0,49580.0,6,1,2,98.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2034.768945263827,0.04616081999237357,0.04104011587865726,33053.333333333336,9,5,9,9_1,9_3,9_0_0 -5115,2,42.0,1,0.0,1,111,2,0,37,7.0,0.0,0.0,541.0135211708235,0.0,1118.261450015488,64733.0,0,41,1,2805,201105115,,,240.0,,1.0,0.0,5.0,2.0,3.0,2.0,1364.032434929964,1040.0,0.0,0.0,0.0,43428.0,0,1,2,120.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1659.2749711863116,0.025632598074958855,0.038207492198266364,21714.0,6,3,6,6_1,6_3,6_1_0 -5116,2,74.0,4,0.0,5,120,4,72,72,1.0,0.0,208.188947934516,1405.236152505768,260.6865481215533,0.0,21651.0,70,50,1,2809,201105116,,,175.0,,0.0,3.0,4.0,0.0,2.0,1.5,3423.4615451295963,0.0,1030.0,0.0,0.0,13041.0,5,5,1,95.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1874.1116485618372,0.08656005027767019,0.14370919780399027,8694.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -5117,2,51.0,2,0.0,9,112,4,43,55,8.0,0.0,0.0,695.7965415319821,0.0,0.0,16918.0,33,50,1,281,201105117,,,160.0,,2.0,0.0,4.0,0.0,2.0,1.5,1458.9311088918055,0.0,510.0,0.0,0.0,41747.0,1,1,1,90.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,695.7965415319821,0.0411275884579727,0.016666983053440537,27831.333333333332,8,4,8,8_1,8_0,8_0_0 -5118,2,52.0,2,0.0,1,111,1,34,34,10.0,3172.912018277764,0.0,1206.6573268865166,0.0,802.1375401072634,81109.0,20,20,2,2810,201105118,2000.0,2000.0,,,2.0,2.0,5.0,1.0,3.0,2.0,1964.886708387304,746.0,600.0,0.0,0.0,85618.0,1,1,1,120.0,8,7.0,4,2,1,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,5181.706885271545,0.06388572026866987,0.06052123251269061,42809.0,10,5,10,10_0,10_3,10_1_0 -5119,1,47.0,2,230.0,5,111,4,0,52,3.0,0.0,0.0,76.4011888741,0.0,0.0,18045.0,0,30,2,2811,201105119,,,45.0,7.0,1.0,0.0,1.0,0.0,1.0,1.0,2896.12463745764,0.0,56.0,0.0,0.0,13970.0,0,4,3,35.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,76.4011888741,0.004233925678808534,0.005468946948754474,13970.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -5120,2,75.0,3,0.0,3,111,1,0,75,10.0,0.0,0.0,375.58823296666793,0.0,776.3315066453675,23409.0,0,20,2,2814,201105120,,,,720.0,0.0,1.0,3.0,0.0,1.0,1.0,3687.4077517354963,722.0,0.0,0.0,0.0,60512.0,0,5,3,55.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1151.9197396120355,0.049208412986972344,0.01903621991690963,60512.0,10,5,10,10_0,10_3,10_0_1 -5121,1,42.0,5,420.0,1,300,4,85,52,2.0,317.29120182777643,0.0,1773.5990274344645,187.69431464751835,0.0,14156.0,41,71,1,2816,201105121,,,210.0,,1.0,1.0,5.0,3.0,5.0,2.6,1720.1567259757703,0.0,1300.0,0.0,0.0,26390.0,7,4,3,160.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2278.5845439097593,0.16096245718492225,0.08634272618074117,10150.0,2,1,2_1,2_1_1,2_0_1,2_1_0 -5122,2,46.0,2,0.0,7,112,5,54,55,6.0,0.0,388.6193694777632,736.7257498573929,0.0,1470.2721314055605,42553.0,50,42,1,2818,201105122,,,222.0,,2.0,0.0,6.0,2.0,4.0,2.5,947.84469880572,0.0,540.0,846.0,0.0,52282.0,1,1,2,130.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2595.6172507407164,0.060997279880166295,0.04964647968212227,20912.8,6,3,6,6_1,6_1,6_0_0 -5123,2,70.0,2,0.0,4,111,1,75,74,10.0,0.0,0.0,526.6224804536179,0.0,2728.519203672258,44744.0,33,60,1,282,201105123,,,480.0,,0.0,1.0,7.0,0.0,2.0,1.5,1359.4879657365898,0.0,386.0,1570.0,0.0,57776.0,5,5,1,180.0,4,4.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3255.1416841258756,0.07275035053025826,0.05634072424754008,38517.333333333336,10,5,10,10_1,10_2,10_0_1 -5124,1,19.0,2,170.0,7,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,11306.0,0,41,2,2820,201105124,,,,357.0,0.0,0.0,1.0,0.0,1.0,1.0,4048.0893655616123,0.0,0.0,0.0,0.0,4683.0,0,3,3,25.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,4683.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -5125,2,82.0,3,0.0,1,300,2,71,71,2.0,0.0,0.0,244.21094300828395,6372.9171464115725,0.0,27220.0,70,70,1,2821,201105125,,,100.0,,0.0,3.0,4.0,0.0,2.0,1.5,2215.406171169678,0.0,179.0,0.0,0.0,17063.0,5,5,1,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6617.128089419856,0.24309801944966408,0.3878056666131311,11375.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -5126,2,57.0,4,0.0,6,300,4,78,78,5.0,0.0,0.0,1276.9912997528145,135.55700502320772,0.0,24569.0,71,70,1,2822,201105126,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2703.00450498536,0.0,936.0,0.0,0.0,27246.0,7,7,1,98.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1412.5483047760222,0.05749311346721569,0.051844245202085526,18164.0,5,3,5,5_1,5_0,5_0_0 -5127,2,44.0,3,0.0,4,111,1,0,52,2.0,0.0,0.0,613.9381248811608,0.0,0.0,23063.0,0,50,2,2828,201105127,,,,350.0,1.0,0.0,3.0,2.0,3.0,2.0,1233.1663470550386,0.0,450.0,0.0,0.0,20303.0,0,1,3,71.0,6,4.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,613.9381248811608,0.026620046172707836,0.030238788596816273,10151.5,2,1,2_0,2_0_0,2_2_0,2_0_1 -5128,2,48.0,2,0.0,1,112,2,45,13,9.0,2855.620816449988,0.0,1227.8762497623215,139.0328256648284,0.0,57193.0,60,50,5,2829,201105128,,,220.0,,2.0,1.0,6.0,2.0,4.0,2.3,1461.4973392058728,0.0,900.0,0.0,0.0,78557.0,1,1,1,174.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4222.529891877138,0.07382948773236477,0.053751160200582224,34155.21739130435,9,5,9,9_1,9_0,9_1_0 -5129,2,46.0,3,0.0,1,111,2,46,54,9.0,0.0,0.0,368.36287492869644,0.0,950.6369454832643,34799.0,71,50,2,283,201105129,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3507.103688801094,0.0,270.0,547.0,0.0,43724.0,1,1,2,39.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1318.9998204119606,0.03790338286766748,0.03016649484063582,29149.333333333332,9,5,9,9_0,9_4,9_1_0 -5130,2,60.0,3,0.0,7,211,4,77,74,7.0,0.0,0.0,3069.6906244058036,0.0,0.0,67704.0,50,60,1,2830,201105130,,,570.0,,0.0,2.0,7.0,0.0,2.0,1.5,1170.7404016285004,0.0,2250.0,0.0,0.0,32399.0,5,5,2,140.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3069.6906244058036,0.04533987097373573,0.09474646206382308,21599.333333333332,6,3,6,6_1,6_2,6_0_0 -5131,1,52.0,3,280.0,5,111,1,0,54,3.0,0.0,0.0,859.5133748336251,173.79103208103552,729.9223347403492,22819.0,0,71,2,2832,201105131,420.0,420.0,,,2.0,1.0,5.0,3.0,4.0,2.5,4346.4696882170865,0.0,630.0,420.0,0.0,35980.0,0,1,3,78.0,4,3.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1763.2267416550098,0.07727011445089661,0.04900574601598137,14392.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -5132,2,46.0,4,0.0,3,111,1,0,43,2.0,0.0,0.0,654.8673332065715,0.0,191.17013528913907,18237.0,0,44,2,2833,201105132,,,,,1.0,0.0,3.0,1.0,2.0,1.3,3611.43813250149,0.0,480.0,110.0,0.0,12412.0,0,1,1,85.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,846.0374684957105,0.04639126328319957,0.06816286404251616,9547.692307692307,1,1,1_0,1_0_0,1_2_0,1_0_1 -5133,2,71.0,3,0.0,4,111,1,0,74,9.0,0.0,0.0,313.79059716148214,0.0,0.0,22624.0,0,30,2,2834,201105133,,,,415.0,0.0,0.0,3.0,0.0,1.0,1.0,2368.017165386608,0.0,230.0,0.0,0.0,29443.0,0,5,3,66.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,313.79059716148214,0.013869810694902852,0.010657561972675412,29443.0,9,5,9,9_0,9_3,9_0_1 -5134,0,30.0,3,0.0,8,112,4,42,42,6.0,0.0,0.0,1173.3039719951073,156.41192887293198,0.0,25038.0,31,10,1,2837,201105134,,,237.0,,2.0,0.0,4.0,1.0,3.0,1.8,2706.9873666813387,0.0,860.0,0.0,0.0,37897.0,1,1,5,87.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1329.7159008680392,0.05310791200846869,0.03508762965058024,21053.888888888887,6,3,6,6_1,6_0,6_0_0 -5135,1,74.0,3,223.0,3,111,1,0,77,2.0,0.0,0.0,136.43069441803573,0.0,868.9551604051776,9077.0,0,70,2,2838,201105135,500.0,500.0,60.0,31.0,0.0,3.0,3.0,0.0,1.0,1.0,2764.612596429161,0.0,100.0,500.0,0.0,10934.0,0,5,3,81.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1005.3858548232133,0.11076190975247475,0.09195041657428328,10934.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -5136,2,52.0,1,0.0,1,111,2,37,38,10.0,0.0,0.0,1637.1683330164287,4344.775802025888,0.0,89023.0,41,12,1,2839,201105136,,,600.0,,3.0,0.0,7.0,3.0,5.0,2.8,984.2721322434669,0.0,1200.0,0.0,0.0,108725.0,4,1,1,250.0,7,5.0,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,5981.944135042317,0.06719549032320093,0.055019030904045224,38830.357142857145,10,5,10,10_1,10_2,10_1_0 -5137,1,32.0,3,330.0,2,111,1,85,85,1.0,0.0,0.0,300.1475277196786,0.0,139.0328256648284,9382.0,50,50,2,284,201105137,,,,,0.0,0.0,3.0,1.0,3.0,1.8,2264.5039000994534,0.0,220.0,80.0,0.0,15520.0,6,7,3,70.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,439.180353384507,0.04681095218338382,0.02829770318199143,8622.222222222223,1,1,1_1,1_0_1,1_3_1,1_0_1 -5138,2,45.0,2,0.0,2,111,2,34,34,8.0,0.0,0.0,783.112185959525,0.0,1624.946149957682,89193.0,20,10,1,2842,201105138,,,901.0,,2.0,0.0,5.0,4.0,6.0,2.7,966.8934607754778,0.0,574.0,935.0,0.0,68844.0,1,1,2,98.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2408.058335917207,0.02699828838493163,0.03497847794894554,25497.777777777777,8,4,8,8_1,8_3,8_0_1 -5139,2,51.0,3,0.0,6,111,2,56,53,8.0,1624.5309533582154,138.792631956344,1193.7685761578125,0.0,0.0,53463.0,50,50,1,2844,201105139,,,892.0,,2.0,0.0,5.0,2.0,4.0,2.5,838.8061032995756,0.0,875.0,0.0,0.0,61918.0,1,1,1,175.0,8,7.0,4,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2957.092161472372,0.05531100315119563,0.04775819893201286,24767.2,7,4,7,7_1,7_3,7_0_0 -5140,2,83.0,1,0.0,7,111,4,0,75,10.0,0.0,0.0,1516.0699908475485,0.0,595.6892724120964,26082.0,0,20,2,2845,201105140,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3272.513308083585,554.0,900.0,0.0,0.0,40135.0,0,5,1,105.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2111.759263259645,0.08096615532779868,0.05261640122734883,40135.0,10,5,10,10_0,10_3,10_0_0 -5141,1,66.0,4,100.0,7,300,2,0,78,3.0,2208.346764721324,0.0,698.5251554203429,104.27461924862132,0.0,12263.0,0,70,1,2847,201105141,,,,,0.0,0.0,4.0,0.0,1.0,1.0,1784.9306140478825,0.0,512.0,0.0,0.0,14070.0,0,5,3,80.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3011.146539390288,0.24554729995843497,0.2140118364882934,14070.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -5142,2,25.0,3,0.0,5,221,4,64,62,5.0,0.0,0.0,349.26257771017146,0.0,0.0,28398.0,50,50,2,2849,201105142,,,,384.0,2.0,0.0,3.0,0.0,2.0,1.5,2462.521156494655,0.0,256.0,0.0,0.0,25772.0,1,1,3,62.0,1,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,349.26257771017146,0.012298844204175345,0.013552016828735506,17181.333333333332,5,3,5,5_0,5_1,5_0_0 -5143,0,55.0,4,0.0,1,112,2,0,52,4.0,2257.5269010046295,0.0,955.0148609262501,78.20596443646599,0.0,13278.0,0,60,1,285,201105143,,,,,1.0,2.0,5.0,0.0,1.0,1.0,1678.950223715514,0.0,700.0,0.0,0.0,15540.0,0,1,5,100.0,8,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3290.7477263673454,0.24783459303866134,0.21175982795156664,15540.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -5144,2,71.0,3,0.0,5,111,2,0,77,4.0,0.0,0.0,317.32523837904074,0.0,655.9033504898534,9708.0,0,70,1,2850,201105144,,,130.0,,0.0,2.0,5.0,0.0,1.0,1.0,1373.3773735315667,610.0,0.0,0.0,0.0,16370.0,0,5,1,100.0,7,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,973.2285888688941,0.1002501636659347,0.05945196022412304,16370.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -5145,1,54.0,5,128.0,5,111,2,0,55,2.0,0.0,0.0,320.61213188238395,0.0,729.9223347403492,7569.0,0,42,2,2852,201105145,,,,192.0,1.0,0.0,1.0,0.0,1.0,1.0,2430.155438019389,0.0,235.0,420.0,0.0,10596.0,0,4,3,40.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1050.5344666227331,0.1387943541581098,0.09914443814861582,10596.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -5146,1,30.0,4,407.0,7,111,2,85,52,3.0,0.0,0.0,573.00891655575,0.0,2085.4923849724264,24947.0,60,71,2,2853,201105146,,,,21.0,1.0,0.0,2.0,1.0,3.0,1.8,3151.3216968469637,0.0,420.0,1200.0,0.0,23671.0,6,1,3,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2658.5013015281766,0.10656597192160086,0.11231047701948277,13150.555555555555,3,2,3_1,3_0_1,3_4_1,3_0_0 -5147,2,32.0,3,0.0,5,120,4,85,52,3.0,0.0,0.0,1989.159524614961,86.89551604051776,0.0,24759.0,71,71,1,2855,201105147,,,120.0,,1.0,0.0,3.0,2.0,4.0,2.1,3534.546276185687,0.0,1458.0,0.0,0.0,26400.0,6,1,3,65.0,0,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2076.0550406554785,0.08385052064523925,0.07863844850967722,12571.42857142857,2,1,2_0,2_1_0,2_1_0,2_0_0 -5148,2,65.0,1,0.0,9,221,4,75,75,9.0,0.0,0.0,1472.0871927706055,0.0,0.0,32659.0,31,42,1,2856,201105148,,,430.0,,0.0,3.0,4.0,0.0,2.0,1.5,4216.160857620018,0.0,1079.0,0.0,0.0,54783.0,7,5,1,110.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1472.0871927706055,0.045074472358939514,0.026871240946472547,36522.0,9,5,9,9_1,9_1,9_0_0 -5149,2,55.0,2,0.0,6,111,2,56,37,9.0,0.0,0.0,4027.4340992204147,0.0,0.0,40191.0,50,50,1,2857,201105149,,,193.0,,2.0,2.0,4.0,0.0,2.0,1.5,918.1686672378848,0.0,2952.0,0.0,0.0,44411.0,1,1,1,150.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4027.4340992204147,0.10020736232540656,0.0906855080772875,29607.333333333332,9,5,9,9_1,9_2,9_0_0 -5150,1,52.0,2,40.0,5,300,6,22,48,2.0,0.0,0.0,0.0,0.0,0.0,54196.0,10,50,1,286,201105150,,,,,3.0,0.0,5.0,2.0,4.0,2.5,1299.2458484750032,0.0,0.0,0.0,0.0,30737.0,1,1,5,129.0,0,0.0,4,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0.0,0.0,0.0,12294.8,2,1,2_1,2_1_1,2_0_1,2_0_0 -5151,2,37.0,2,0.0,6,111,2,46,45,6.0,0.0,0.0,859.5133748336251,0.0,0.0,42363.0,31,41,2,2860,201105151,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3061.357195858638,0.0,630.0,0.0,0.0,43175.0,1,1,1,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,859.5133748336251,0.020289247098496922,0.019907663574606257,20559.52380952381,6,3,6,6_0,6_4,6_0_0 -5152,2,51.0,2,0.0,4,111,2,37,37,9.0,4442.07682558887,0.0,1296.0915969713394,0.0,0.0,67565.0,41,10,1,2861,201105152,,,1000.0,,3.0,1.0,6.0,4.0,6.0,3.5,1941.7168320701155,0.0,950.0,0.0,0.0,116545.0,1,1,1,150.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,5738.168422560209,0.08492811992244816,0.04923564651044841,33298.57142857143,9,5,9,9_1,9_4,9_0_1 -5153,2,60.0,2,0.0,1,221,2,71,71,6.0,0.0,0.0,1556.6742233097875,1428.562283706112,0.0,61087.0,60,50,1,2862,201105153,,,676.0,,0.0,2.0,6.0,0.0,2.0,1.5,1471.2203730849012,0.0,1141.0,0.0,0.0,28631.0,6,5,1,110.0,1,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2985.2365070158994,0.0488686055464485,0.10426588337871187,19087.333333333332,5,3,5,5_1,5_1,5_1_0 -5154,2,63.0,3,0.0,5,111,2,77,77,5.0,0.0,235.94747432578478,827.8410661227721,0.0,2317.008010275583,17931.0,70,50,1,2863,201105154,,,260.0,,0.0,3.0,5.0,0.0,2.0,1.5,2467.084439116217,621.0,370.0,949.0,0.0,25639.0,6,5,1,90.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3380.7965507241397,0.1885447856072801,0.13186148253536173,17092.666666666668,5,3,5,5_1,5_3,5_0_0 -5155,2,42.0,1,0.0,8,400,2,47,34,8.0,1269.1648073111057,277.585263912688,1173.3039719951073,78.20596443646599,0.0,62261.0,31,20,1,2866,201105155,,,137.0,,2.0,0.0,5.0,2.0,4.0,2.1,2069.039222381633,0.0,860.0,0.0,0.0,52906.0,1,1,2,110.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2798.2600076553667,0.04494402607820894,0.052891165607972,25193.333333333332,8,4,8,8_1,8_0,8_0_0 -5156,2,77.0,2,0.0,1,111,2,77,74,9.0,0.0,0.0,1237.4263983715841,0.0,1710.1037556773895,56687.0,50,60,1,2867,201105156,,,429.0,,0.0,3.0,4.0,0.0,2.0,1.5,1650.7358889040818,0.0,907.0,984.0,0.0,55534.0,5,5,1,80.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2947.5301540489736,0.05199658041612669,0.05307613631377127,37022.666666666664,9,5,9,9_1,9_3,9_1_0 -5157,2,70.0,2,0.0,1,300,2,0,77,7.0,0.0,0.0,398.37762770066433,1042.7461924862132,0.0,9011.0,0,50,1,2868,201105157,,,58.0,,0.0,0.0,2.0,0.0,1.0,1.0,2814.4006968203234,0.0,292.0,0.0,0.0,24330.0,0,5,1,48.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1441.1238201868775,0.1599293996434222,0.05923238060776315,24330.0,7,4,7,7_1,7_0,7_1_0 -5158,2,32.0,3,0.0,99,111,4,0,54,3.0,0.0,0.0,1330.1992705758482,0.0,0.0,19884.0,0,10,2,2870,201105158,,,145.0,,1.0,0.0,3.0,0.0,1.0,1.0,2837.6830267461874,0.0,975.0,0.0,0.0,14138.0,0,1,1,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1330.1992705758482,0.06689797176502958,0.09408680651972331,14138.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -5159,2,44.0,2,0.0,1,112,2,46,47,7.0,4124.785623761094,0.0,1637.1683330164287,208.54923849724264,0.0,46534.0,50,60,1,2872,201105159,,,250.0,,2.0,0.0,6.0,3.0,5.0,2.6,1490.649810857113,0.0,1200.0,0.0,0.0,59671.0,1,1,2,179.0,10,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5970.503195274765,0.12830410442417942,0.10005703265027845,22950.384615384613,7,4,7,7_1,7_0,7_1_0 -5160,1,79.0,4,150.0,2,111,1,0,86,3.0,0.0,0.0,671.2390165367358,0.0,1042.7461924862132,8514.0,0,71,2,2873,201105160,,,,200.0,0.0,6.0,3.0,0.0,1.0,1.0,3775.3446422064853,0.0,492.0,600.0,0.0,14440.0,0,5,3,80.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1713.985209022949,0.2013137431316595,0.1186970366359383,14440.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -5161,2,37.0,1,0.0,1,112,2,54,65,7.0,0.0,194.3096847388816,1050.5163470188752,97.32297796537989,0.0,44424.0,42,43,1,2874,201105161,,,130.0,,2.0,0.0,6.0,3.0,5.0,2.4,1434.0840466182458,0.0,770.0,0.0,0.0,57871.0,1,1,1,105.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1342.1490097231367,0.030212250353933386,0.023192082558157568,24112.916666666668,7,4,7,7_1,7_0,7_1_0 -5162,2,63.0,2,0.0,4,111,2,55,74,4.0,0.0,0.0,327.43366660328576,0.0,417.0984769944853,70396.0,43,10,2,2876,201105162,,,,639.0,1.0,2.0,3.0,1.0,3.0,2.0,3943.2067047917917,0.0,240.0,240.0,0.0,32006.0,1,5,3,60.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,744.532143597771,0.010576341604604963,0.02326226781221555,16003.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -5163,2,88.0,3,0.0,2,211,4,0,86,2.0,0.0,0.0,2210.177249572179,161.62565983536302,0.0,18267.0,0,70,1,2878,201105163,,,,,0.0,2.0,3.0,0.0,1.0,1.0,1466.5182700346252,0.0,1620.0,0.0,0.0,11863.0,0,5,5,75.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2371.802909407542,0.12984085560888717,0.19993280868309382,11863.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -5164,2,48.0,2,0.0,5,111,4,54,37,8.0,0.0,138.792631956344,1364.3069441803573,139.0328256648284,0.0,31613.0,31,31,1,2879,201105164,,,320.0,,2.0,0.0,5.0,2.0,4.0,2.5,2746.696512201908,0.0,1000.0,0.0,0.0,70740.0,1,1,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1642.1324018015296,0.051944845531949814,0.02321363304780223,28296.0,8,4,8,8_1,8_3,8_0_0 -5165,2,85.0,2,0.0,1,120,2,0,71,3.0,2062.392811880547,0.0,0.0,60.82686122836243,0.0,9560.0,0,70,1,2880,201105165,,,,,0.0,4.0,8.0,0.0,1.0,1.0,2969.367234390353,0.0,0.0,0.0,0.0,12668.0,0,5,5,150.0,0,0.0,1,9,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2123.2196731089093,0.2220941080657855,0.16760496314405662,12668.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -5166,2,71.0,3,0.0,8,111,4,77,75,8.0,0.0,0.0,1799.5208593738912,444.90504212745094,0.0,28601.0,71,50,1,2885,201105166,,,500.0,,0.0,1.0,5.0,0.0,2.0,1.5,1769.4615161136937,0.0,1319.0,0.0,0.0,40725.0,5,5,1,132.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2244.425901501342,0.07847368628723968,0.055111747120966045,27150.0,8,4,8,8_1,8_2,8_0_0 -5167,2,69.0,2,0.0,5,112,4,0,75,9.0,0.0,0.0,1637.1683330164287,43.44775802025888,0.0,20402.0,0,60,1,2887,201105167,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2368.284222612681,0.0,1200.0,0.0,0.0,36837.0,0,5,1,110.0,7,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1680.6160910366875,0.08237506573064834,0.04562304452145092,36837.0,9,5,9,9_1,9_1,9_0_0 -5168,2,86.0,3,0.0,1,400,5,77,75,4.0,0.0,464.95531705375237,1877.2863551921716,323.25131967072605,0.0,12354.0,70,70,1,2888,201105168,,,363.0,,0.0,0.0,4.0,0.0,2.0,1.5,1642.0093713965766,0.0,1376.0,0.0,0.0,24673.0,5,5,1,70.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2665.4929919166498,0.2157595104352153,0.10803278855091192,16448.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0 -5169,2,58.0,2,0.0,6,120,2,0,46,9.0,0.0,0.0,1364.3069441803573,46.92357866187959,0.0,17344.0,0,60,1,2889,201105169,,,150.0,,1.0,2.0,4.0,0.0,1.0,1.0,2096.355841155816,0.0,1000.0,0.0,0.0,33166.0,0,1,1,108.0,0,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1411.230522842237,0.08136707350335776,0.042550519292113516,33166.0,9,5,9,9_1,9_1,9_0_0 -5170,2,41.0,2,0.0,1,112,5,54,38,6.0,0.0,874.3935813249672,764.011888741,312.82385774586396,0.0,35245.0,20,20,1,2892,201105170,,,,,2.0,0.0,9.0,3.0,5.0,2.4,2090.937070837376,0.0,560.0,0.0,0.0,46247.0,4,1,2,250.0,8,0.0,4,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1951.2293278118311,0.05536187623242534,0.04219147896754019,19269.583333333336,6,3,6,6_1,6_0,6_1_0 -5171,1,28.0,4,413.0,7,400,4,0,85,1.0,0.0,0.0,0.0,173.79103208103552,0.0,11181.0,0,71,1,2893,201105171,,,,405.0,0.0,3.0,4.0,3.0,4.0,1.9,3359.8825679425104,0.0,0.0,0.0,0.0,17446.0,0,6,3,90.0,0,0.0,2,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,173.79103208103552,0.015543424745643103,0.00996165493987364,9182.105263157895,1,1,1_1,1_1_1,1_0_1,1_0_0 -5172,2,39.0,3,0.0,2,111,2,21,37,7.0,0.0,0.0,1623.5252635746251,0.0,1477.223772688802,44724.0,31,12,1,2894,201105172,,,450.0,,2.0,0.0,6.0,2.0,4.0,2.1,2061.2487580303036,0.0,1190.0,850.0,0.0,50985.0,1,1,2,180.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3100.749036263427,0.06933076281780313,0.060816888031056726,24278.571428571428,7,4,7,7_1,7_2,7_0_1 -5173,2,60.0,3,0.0,1,400,5,11,11,4.0,0.0,138.792631956344,1637.1683330164287,312.82385774586396,0.0,29485.0,44,71,1,2895,201105173,,,200.0,,2.0,3.0,6.0,0.0,3.0,2.0,1829.0066577806072,0.0,1200.0,0.0,0.0,31741.0,5,4,1,150.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2088.784822718637,0.07084228667860393,0.06580715234928443,15870.5,4,2,4_0,4_1_0,4_0_0,4_1_0 -5174,2,26.0,3,0.0,99,111,1,56,69,6.0,0.0,0.0,327.43366660328576,0.0,0.0,22603.0,60,50,2,2896,201105174,,,,273.0,2.0,0.0,3.0,1.0,3.0,1.8,2553.5958987907043,0.0,240.0,0.0,0.0,34628.0,1,1,3,69.0,4,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,327.43366660328576,0.01448629237726345,0.00945574871789551,19237.777777777777,6,3,6,6_0,6_2,6_0_0 -5175,2,73.0,2,0.0,3,112,2,86,74,8.0,0.0,0.0,1877.9411648333396,0.0,3881.657533226837,37055.0,70,70,1,2899,201105175,,,220.0,,0.0,2.0,5.0,0.0,2.0,1.5,1865.1667681806045,3610.0,0.0,0.0,0.0,38799.0,6,5,5,150.0,8,1.0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5759.5986980601765,0.15543377946458445,0.1484470913698852,25866.0,8,4,8,8_1,8_1,8_0_1 -5176,2,36.0,3,0.0,7,111,4,0,55,3.0,0.0,0.0,351.99119159853217,0.0,0.0,13446.0,0,43,2,290,201105176,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2616.45826253923,0.0,258.0,0.0,0.0,14388.0,0,1,2,48.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,351.99119159853217,0.02617813413643702,0.02446421959956437,14388.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -5177,2,50.0,2,0.0,8,111,4,0,42,6.0,0.0,0.0,3036.9472577454753,0.0,0.0,41817.0,0,50,2,2900,201105177,,,,750.0,2.0,1.0,3.0,1.0,2.0,1.5,2352.797497042437,0.0,2226.0,0.0,0.0,32238.0,0,1,3,75.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3036.9472577454753,0.07262470425294677,0.09420395985313838,21492.0,6,3,6,6_0,6_3,6_0_0 -5178,2,30.0,3,0.0,1,112,5,0,62,10.0,0.0,555.170527825376,573.00891655575,0.0,0.0,21550.0,0,50,1,2901,201105178,,,,,2.0,0.0,6.0,0.0,2.0,1.5,1180.1658805917286,0.0,420.0,0.0,0.0,108063.0,0,1,1,160.0,8,2.0,5,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1128.179444381126,0.05235171435643276,0.01044001595718355,72042.0,10,5,10,10_1,10_1,10_1_0 -5179,2,87.0,2,0.0,5,111,2,0,86,10.0,0.0,0.0,58.665198599755364,0.0,185.956404326708,28859.0,0,10,2,2903,201105179,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3068.8584136510926,0.0,43.0,107.0,0.0,50780.0,0,5,1,105.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,244.62160292646337,0.008476440726513856,0.0048172824522737965,50780.0,10,5,10,10_0,10_3,10_0_0 -5180,2,27.0,2,0.0,5,111,4,0,33,8.0,0.0,0.0,395.3560347017557,0.0,817.1910596267026,36502.0,0,20,2,2905,201105180,,,,345.0,1.0,0.0,1.0,0.0,1.0,1.0,3543.340908663511,760.0,0.0,0.0,0.0,27611.0,0,1,3,44.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1212.5470943284581,0.03321864813786801,0.043915363236697626,27611.0,8,4,8,8_0,8_4,8_0_0 -5181,2,55.0,2,0.0,5,111,1,54,67,7.0,0.0,0.0,211.46757634795537,72.99223347403492,0.0,30850.0,60,71,2,2907,201105181,,,,182.0,2.0,0.0,2.0,0.0,2.0,1.5,3636.3480971243976,0.0,155.0,0.0,0.0,32636.0,1,1,3,56.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,284.4598098219903,0.009220739378346525,0.008716135856783621,21757.333333333332,6,3,6,6_0,6_2,6_0_0 -5182,2,61.0,2,0.0,2,111,4,77,63,8.0,317.29120182777643,0.0,1500.737638598393,260.6865481215533,0.0,20908.0,42,50,1,2908,201105182,,,480.0,,1.0,3.0,4.0,0.0,2.0,1.5,2463.923687863255,0.0,1100.0,0.0,0.0,38329.0,6,1,1,110.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2078.715388547723,0.09942201016585626,0.054233488704315866,25552.666666666668,8,4,8,8_1,8_3,8_0_1 -5183,2,51.0,4,0.0,99,112,1,0,46,5.0,0.0,0.0,409.2920832541072,0.0,0.0,23265.0,0,50,2,2909,201105183,,,,270.0,1.0,1.0,4.0,0.0,1.0,1.0,3753.5541215459084,0.0,300.0,0.0,0.0,17207.0,0,1,3,65.0,7,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,409.2920832541072,0.017592610498779592,0.023786370852217537,17207.0,5,3,5,5_0,5_0,5_0_0 -5184,2,49.0,3,0.0,7,112,2,42,38,6.0,0.0,0.0,914.0856526008394,0.0,1717.055396960631,79906.0,20,10,1,291,201105184,,,300.0,,4.0,0.0,6.0,3.0,5.0,3.0,2220.443417397422,0.0,670.0,988.0,0.0,63800.0,1,1,1,110.0,7,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2631.1410495614705,0.032927953464839566,0.0412404553222801,21266.666666666668,6,3,6,6_1,6_1,6_0_0 -5185,2,87.0,1,0.0,7,111,2,0,72,1.0,0.0,0.0,1350.6638747385537,0.0,0.0,14983.0,0,70,2,2910,201105185,,,,,0.0,5.0,3.0,0.0,1.0,1.0,3304.906966249212,0.0,990.0,0.0,0.0,8042.0,0,5,1,85.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1350.6638747385537,0.0901464242634021,0.16795124033058365,8042.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -5186,1,50.0,4,201.0,99,221,1,0,67,1.0,0.0,0.0,286.504458277875,0.0,0.0,9486.0,0,50,2,2911,201105186,,,,,1.0,1.0,1.0,0.0,1.0,1.0,4612.75098775012,0.0,210.0,0.0,0.0,6836.0,0,4,4,31.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,286.504458277875,0.030202873527079382,0.0419111261377816,6836.0,1,1,1_1,1_0_1,1_1_1,1_0_0 -5187,2,56.0,4,0.0,5,400,4,56,52,3.0,0.0,0.0,1350.6638747385537,93.84715732375918,0.0,25033.0,71,70,1,2913,201105187,,,310.0,,2.0,0.0,5.0,0.0,2.0,1.5,3171.1915154891803,0.0,990.0,0.0,0.0,21380.0,1,1,3,85.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1444.5110320623128,0.057704271643922535,0.06756365912358807,14253.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -5188,2,63.0,3,0.0,1,111,2,0,35,9.0,0.0,0.0,240.11802217574288,0.0,0.0,26843.0,0,10,2,2914,201105188,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3268.289439667315,0.0,176.0,0.0,0.0,36468.0,0,1,2,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,240.11802217574288,0.008945275199334756,0.006584348529553112,36468.0,9,5,9,9_0,9_4,9_1_0 -5189,2,74.0,3,0.0,3,111,1,75,74,8.0,0.0,0.0,581.1947582208322,0.0,719.494872815487,27906.0,50,20,2,2915,201105189,,,,,1.0,1.0,5.0,1.0,3.0,2.0,1090.6801327665903,0.0,426.0,414.0,0.0,49622.0,4,5,1,88.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1300.6896310363193,0.04660967645081055,0.026211955000530394,24811.0,7,4,7,7_0,7_4,7_0_1 -5190,2,25.0,2,0.0,2,111,2,0,63,6.0,0.0,0.0,955.0148609262501,0.0,3475.8206416207104,17031.0,0,50,1,2916,201105190,,,500.0,,3.0,0.0,5.0,0.0,3.0,2.0,1970.2702784832481,0.0,700.0,2000.0,0.0,42597.0,0,1,1,110.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4430.835502546961,0.2601629676793471,0.10401754824393646,21298.5,6,3,6,6_1,6_3,6_0_1 -5191,2,76.0,3,0.0,5,111,6,0,75,1.0,0.0,0.0,407.9277763099268,0.0,2029.879254706495,26957.0,0,42,1,2917,201105191,,,150.0,,0.0,5.0,4.0,0.0,1.0,1.0,3058.146286343289,0.0,299.0,1168.0,0.0,8561.0,0,5,1,80.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2437.8070310164217,0.09043317249754874,0.2847572749697958,8561.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -5192,1,38.0,3,298.0,3,111,2,0,31,1.0,0.0,0.0,382.0059443705,0.0,1112.2626053186273,10345.0,0,20,2,292,201105192,,,400.0,11.0,1.0,1.0,3.0,0.0,1.0,1.0,3490.165207716885,0.0,280.0,640.0,0.0,8626.0,0,1,3,59.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1494.2685496891272,0.1444435524107421,0.17322844304302426,8626.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -5193,2,35.0,2,0.0,9,112,5,43,64,6.0,0.0,166.55115834761278,1568.9529858074109,173.79103208103552,0.0,34910.0,31,50,1,2920,201105193,,,250.0,,2.0,0.0,4.0,1.0,3.0,1.8,1592.7555472500553,0.0,1150.0,0.0,0.0,36875.0,1,1,2,93.0,9,1.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1909.2951762360592,0.054691927133659675,0.05177749630470669,20486.11111111111,6,3,6,6_1,6_1,6_0_0 -5194,2,58.0,2,0.0,1,111,2,43,33,10.0,0.0,0.0,421.36630014266063,0.0,870.9536293389857,40352.0,33,41,1,2921,201105194,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1805.7140235814413,810.0,0.0,0.0,0.0,68240.0,1,1,1,128.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1292.3199294816463,0.03202616795900194,0.018937865320657186,45493.333333333336,10,5,10,10_1,10_2,10_1_0 -5195,2,51.0,2,0.0,6,400,2,0,52,7.0,2179.790556556824,0.0,431.1209943609929,0.0,0.0,28296.0,0,50,1,2922,201105195,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1452.4031815337746,0.0,316.0,0.0,0.0,24025.0,0,1,1,100.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2610.911550917817,0.09227140058375095,0.10867477839408186,24025.0,7,4,7,7_1,7_0,7_0_0 -5196,2,74.0,3,0.0,1,120,5,71,71,3.0,0.0,735.6009493686231,1377.950013622161,0.0,0.0,27345.0,70,71,1,2923,201105196,,,231.0,,0.0,2.0,5.0,0.0,2.0,1.5,2465.3634913575843,0.0,1010.0,0.0,0.0,19550.0,5,5,1,95.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2113.550962990784,0.07729204472447554,0.10811002368239303,13033.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -5197,0,85.0,2,0.0,1,111,2,0,77,2.0,0.0,0.0,604.3879762718983,0.0,331.94087127477786,21924.0,0,41,1,2924,201105197,,,984.0,,0.0,0.0,5.0,0.0,1.0,1.0,2752.175413938268,0.0,443.0,191.0,0.0,10597.0,0,5,5,100.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,936.3288475466761,0.042707938676640946,0.08835791710358366,10597.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -5198,2,55.0,3,0.0,5,111,1,72,62,6.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,23077.0,50,50,2,2925,201105198,,,,300.0,1.0,2.0,4.0,0.0,2.0,1.5,1768.7178744390476,600.0,0.0,0.0,0.0,28963.0,6,1,3,90.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,957.2740218382565,0.04148173600720442,0.03305161833505702,19308.666666666668,6,3,6,6_0,6_2,6_0_0 -5199,2,41.0,3,0.0,2,111,2,0,63,6.0,0.0,0.0,409.2920832541072,0.0,729.9223347403492,14918.0,0,50,2,2926,201105199,,,220.0,268.0,1.0,0.0,3.0,0.0,1.0,1.0,2354.4755139003814,0.0,300.0,420.0,0.0,20564.0,0,1,3,60.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1139.2144179944564,0.07636509036026655,0.05539848366049681,20564.0,6,3,6,6_0,6_2,6_0_1 -5200,2,39.0,2,0.0,4,111,1,52,62,5.0,0.0,0.0,354.7198054868929,0.0,347.58206416207105,16825.0,50,50,8,2928,201105200,,,,288.0,2.0,0.0,4.0,1.0,3.0,1.8,1819.354671981221,0.0,260.0,200.0,0.0,34021.0,1,1,3,80.0,5,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,702.3018696489639,0.04174156728968582,0.020643187138795566,18900.555555555555,5,3,5,5_0,5_2,5_0_1 -5201,1,43.0,4,200.0,7,111,1,46,63,7.0,0.0,0.0,1105.0886247860894,0.0,955.8506764456954,39113.0,31,50,2,2929,201105201,,,,550.0,2.0,0.0,4.0,3.0,5.0,2.4,3330.716868638484,0.0,810.0,550.0,0.0,57921.0,1,1,3,68.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2060.939301231785,0.05269192598961432,0.0355819012315358,24133.75,7,4,7,7_0,7_3,7_0_0 -5202,2,63.0,3,0.0,99,111,2,0,77,4.0,0.0,0.0,263.7440915707765,0.0,545.1524568825504,8982.0,0,70,2,293,201105202,,,,240.0,0.0,2.0,2.0,0.0,1.0,1.0,2389.3666100987266,507.0,0.0,0.0,0.0,16044.0,0,5,3,55.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,808.8965484533269,0.09005750929117423,0.05041738646555266,16044.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -5203,2,75.0,3,0.0,1,111,2,78,78,4.0,0.0,0.0,409.2920832541072,0.0,856.7897881595052,15594.0,71,50,1,2936,201105203,,,310.0,,0.0,1.0,2.0,0.0,2.0,1.5,2271.174883803349,0.0,300.0,493.0,0.0,24213.0,5,5,5,70.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1266.0818714136124,0.08119032136806544,0.052289343386346686,16142.0,4,2,4_0,4_1_0,4_3_0,4_1_0 -5204,2,66.0,3,0.0,8,111,2,72,72,2.0,0.0,0.0,405.1991624215661,0.0,1492.864965576095,23876.0,70,50,1,2938,201105204,,,142.0,,0.0,3.0,5.0,0.0,2.0,1.5,1693.7670491675376,0.0,297.0,859.0,0.0,17724.0,4,5,1,117.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1898.0641279976612,0.07949673848205986,0.10709005461507906,11816.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -5205,2,75.0,4,0.0,4,111,1,0,78,6.0,0.0,0.0,477.50743046312505,0.0,837.6727746305912,17699.0,0,60,2,2939,201105205,430.0,430.0,,266.0,0.0,2.0,2.0,0.0,1.0,1.0,3081.5257019644605,0.0,350.0,482.0,0.0,21510.0,0,5,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1315.1802050937163,0.07430816459086481,0.061142733849080255,21510.0,6,3,6,6_0,6_4,6_0_1 -5206,2,44.0,4,0.0,7,400,2,13,68,4.0,2538.3296146222115,0.0,379.2773304821393,0.0,0.0,59947.0,50,71,1,294,201105206,,,,,2.0,0.0,4.0,3.0,5.0,3.0,2139.809163026159,0.0,278.0,0.0,0.0,47985.0,1,1,1,100.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2917.606945104351,0.048669774052151914,0.06080247879763157,15995.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -5207,2,67.0,3,0.0,4,112,2,78,78,8.0,2408.240221872823,0.0,668.510402648375,104.27461924862132,0.0,38152.0,70,70,1,2940,201105207,,,133.0,,0.0,0.0,5.0,0.0,2.0,1.5,1056.4653943290273,0.0,490.0,0.0,0.0,38508.0,5,5,1,75.0,6,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3181.025243769819,0.08337767990589796,0.0826068672423865,25672.0,8,4,8,8_1,8_0,8_0_1 -5208,2,73.0,3,0.0,1,111,6,0,78,5.0,1207.2930229546894,499.65347504283835,477.50743046312505,100.7987986070006,0.0,7278.0,0,71,1,2941,201105208,,,160.0,,0.0,2.0,4.0,0.0,1.0,1.0,2425.2032747325393,0.0,350.0,0.0,0.0,18470.0,0,5,1,100.0,7,5.0,1,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2285.2527270676533,0.3139946038839864,0.12372781413468616,18470.0,5,3,5,5_1,5_2,5_1_0 -5209,2,42.0,2,0.0,7,112,2,55,47,4.0,1189.8420068541616,0.0,725.81129430395,0.0,0.0,40522.0,50,50,1,2944,201105209,,,411.0,,2.0,0.0,5.0,2.0,4.0,2.5,1320.4092621876307,0.0,532.0,0.0,0.0,38591.0,1,1,1,100.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1915.6533011581116,0.04727440158822643,0.04963989793366618,15436.4,4,2,4_0,4_1_0,4_1_0,4_0_0 -5210,2,53.0,3,0.0,1,300,5,0,11,6.0,0.0,138.792631956344,654.8673332065715,0.0,0.0,73596.0,0,60,1,2948,201105210,,,209.0,,1.0,0.0,3.0,0.0,2.0,1.5,3217.79103730578,0.0,480.0,0.0,0.0,30400.0,0,1,1,70.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,793.6599651629156,0.01078400952718783,0.026107235696148538,20266.666666666668,6,3,6,6_1,6_0,6_1_0 -5211,2,55.0,3,0.0,7,221,2,43,43,9.0,0.0,0.0,2728.6138883607146,97.32297796537989,0.0,24591.0,50,10,1,2949,201105211,,,1200.0,,2.0,0.0,6.0,0.0,2.0,1.5,1374.737857259697,0.0,2000.0,0.0,0.0,46285.0,1,1,2,145.0,1,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2825.9368663260943,0.11491752536806532,0.06105513376528237,30856.666666666668,9,5,9,9_1,9_1,9_0_0 -5212,2,40.0,3,0.0,8,211,2,43,47,6.0,79.32280045694411,0.0,1370.2207834268743,0.0,2832.212172443072,46451.0,33,31,1,295,201105212,,,,,2.0,0.0,7.0,3.0,5.0,2.4,2023.9543329788362,2634.0,0.0,0.0,0.0,50103.0,1,1,2,146.0,1,2.0,4,4,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4281.755756326891,0.09217790265714174,0.08545906944348425,20876.25,6,3,6,6_1,6_1,6_0_0 -5213,1,22.0,2,23.0,1,221,2,0,65,5.0,0.0,0.0,382.0059443705,0.0,903.7133668213847,17423.0,0,43,2,2951,201105213,,,,442.0,1.0,0.0,3.0,0.0,1.0,1.0,5320.167096010601,0.0,280.0,520.0,0.0,18439.0,0,1,3,65.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1285.7193111918848,0.07379437015392784,0.06972825593534816,18439.0,5,3,5,5_0,5_1,5_1_0 -5214,1,31.0,3,70.0,9,111,4,54,54,5.0,0.0,0.0,1773.5990274344645,0.0,0.0,28868.0,20,41,1,2953,201105214,,,368.0,,2.0,0.0,5.0,2.0,4.0,2.1,2026.1756192541945,0.0,1300.0,0.0,0.0,37146.0,1,1,3,98.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1773.5990274344645,0.061438237059528354,0.047746702940679064,17688.571428571428,5,3,5,5_1,5_2,5_0_0 -5215,2,47.0,4,0.0,1,112,2,0,67,6.0,0.0,0.0,1637.1683330164287,111.22626053186274,0.0,26982.0,0,50,1,2954,201105215,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2249.775236950232,0.0,1200.0,0.0,0.0,20350.0,0,1,3,80.0,8,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1748.3945935482914,0.06479855435283861,0.08591619624315928,20350.0,6,3,6,6_1,6_0,6_1_0 -5216,0,68.0,3,0.0,2,111,2,78,77,5.0,0.0,0.0,204.6460416270536,0.0,1372.9491534401807,20258.0,71,71,1,2955,201105216,,,180.0,,0.0,4.0,3.0,0.0,2.0,1.5,2696.7625761400063,0.0,150.0,790.0,0.0,28386.0,6,5,5,70.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1577.5951950672343,0.07787517005959296,0.055576523464638705,18924.0,5,3,5,5_1,5_3,5_0_1 -5217,2,21.0,1,0.0,2,111,1,0,46,2.0,0.0,0.0,491.1504999049286,0.0,191.17013528913907,25127.0,0,60,2,2957,201105217,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4217.007257374969,0.0,360.0,110.0,0.0,10092.0,0,1,1,47.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,682.3206351940677,0.027154878624351005,0.06761005104974907,10092.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -5218,1,42.0,4,325.0,1,111,2,85,21,1.0,0.0,0.0,44.21745124953847,0.0,91.39636851088122,22072.0,71,71,1,2958,201105218,,,85.0,,3.0,0.0,4.0,3.0,5.0,3.0,3683.5744815912317,85.0,0.0,0.0,0.0,12743.0,6,4,2,80.0,5,4.0,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,135.6138197604197,0.0061441563863908885,0.010642220808319837,4247.666666666667,1,1,1_1,1_1_1,1_2_1,1_1_0 -5219,2,44.0,2,0.0,7,112,2,43,43,7.0,761.4988843866635,346.98157989085996,447.33660208830287,0.0,535.4751943343393,74474.0,50,50,1,296,201105219,,,,,2.0,0.0,6.0,1.0,3.0,1.8,1939.9910473042967,498.0,138.0,0.0,0.0,42614.0,1,1,1,110.0,6,0.0,4,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2091.2922607001656,0.028080837080057007,0.04907523960905256,23674.444444444445,7,4,7,7_1,7_0,7_0_0 -5220,2,51.0,4,0.0,6,112,4,52,48,6.0,0.0,1199.1683401028122,2046.460416270536,52.13730962431066,0.0,60452.0,50,71,1,2963,201105220,,,204.0,,2.0,1.0,4.0,1.0,3.0,2.0,2176.9539165859524,0.0,1500.0,0.0,0.0,42864.0,1,1,2,120.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3297.7660659976586,0.054551810791994615,0.07693556518284944,21432.0,6,3,6,6_1,6_0,6_0_0 -5221,2,54.0,3,0.0,7,111,2,0,46,3.0,0.0,0.0,1637.1683330164287,100.7987986070006,0.0,27072.0,0,41,1,2964,201105221,,,,,1.0,1.0,4.0,1.0,2.0,1.5,2739.946157139718,0.0,1200.0,0.0,0.0,19216.0,0,1,1,100.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1737.9671316234294,0.0641979584671775,0.09044375164568222,12810.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0 -5222,2,80.0,2,0.0,3,111,2,0,75,6.0,0.0,0.0,551.1800054488643,0.0,1190.4685697550933,16289.0,0,70,1,2965,201105222,,,101.0,,0.0,1.0,5.0,0.0,1.0,1.0,2222.1767775809276,0.0,404.0,685.0,0.0,21099.0,0,5,1,147.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1741.6485752039575,0.10692176163079117,0.08254649865889177,21099.0,6,3,6,6_1,6_3,6_0_1 -5223,1,52.0,3,402.0,6,111,1,0,85,1.0,0.0,0.0,422.93515269591074,97.32297796537989,556.1313026593136,11932.0,0,71,2,2967,201105223,320.0,320.0,,14.0,0.0,0.0,3.0,1.0,2.0,1.5,3056.250300927976,0.0,310.0,320.0,0.0,12428.0,0,6,3,106.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1076.3894333206042,0.0902103112068894,0.08661002842940169,8285.333333333334,1,1,1_1,1_0_1,1_4_1,1_0_0 -5224,2,60.0,3,0.0,7,111,2,85,34,6.0,0.0,0.0,1364.3069441803573,0.0,2085.4923849724264,68753.0,30,20,1,2968,201105224,,,420.0,,1.0,5.0,8.0,2.0,5.0,2.8,2026.267350224992,0.0,1000.0,1200.0,0.0,55288.0,6,1,1,170.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3449.7993291527837,0.050176709803976316,0.0623968913535086,19745.714285714286,6,3,6,6_1,6_3,6_0_0 -5225,2,44.0,2,0.0,1,111,2,85,33,7.0,3172.912018277764,0.0,654.8673332065715,147.7223772688802,0.0,72377.0,20,20,1,2969,201105225,,,380.0,,1.0,0.0,8.0,3.0,5.0,2.4,1446.0068839339533,0.0,480.0,0.0,0.0,55959.0,6,1,1,160.0,9,7.0,4,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3975.501728753216,0.05492769427792277,0.07104311600909981,23316.25,7,4,7,7_1,7_3,7_1_0 -5226,2,54.0,1,0.0,9,111,6,46,31,10.0,3331.5576191916525,0.0,1327.4706566874877,0.0,0.0,65353.0,42,10,1,2970,201105226,,,710.0,,2.0,0.0,8.0,2.0,4.0,2.3,1003.3186548505748,0.0,973.0,0.0,0.0,114639.0,1,1,2,200.0,7,5.0,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4659.02827587914,0.07129019747952106,0.04064086633588168,49843.04347826087,10,5,10,10_1,10_2,10_0_0 -5227,2,56.0,3,0.0,99,112,2,78,56,7.0,0.0,0.0,1637.1683330164287,208.54923849724264,0.0,23910.0,70,71,1,2971,201105227,,,,,1.0,6.0,3.0,0.0,2.0,1.5,2698.319176367813,0.0,1200.0,0.0,0.0,36740.0,5,1,1,63.0,8,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1845.7175715136714,0.07719437772955548,0.05023727739558169,24493.333333333332,7,4,7,7_1,7_1,7_0_0 -5228,2,40.0,3,0.0,8,112,2,52,55,5.0,0.0,0.0,759.918967908459,0.0,2111.5610397845817,35844.0,31,42,1,2972,201105228,,,426.0,,2.0,0.0,4.0,2.0,4.0,2.1,2030.5980112498312,0.0,557.0,1215.0,0.0,36817.0,1,1,2,100.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2871.4800076930405,0.08011047895583753,0.07799331851299782,17531.90476190476,5,3,5,5_1,5_0,5_0_0 -5229,2,32.0,3,0.0,8,111,2,0,42,5.0,0.0,0.0,613.9381248811608,0.0,0.0,18648.0,0,20,2,2974,201105229,,,,465.0,1.0,0.0,2.0,0.0,1.0,1.0,2384.8528400319974,0.0,450.0,0.0,0.0,17653.0,0,1,3,54.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,613.9381248811608,0.03292246486921711,0.034778118443389835,17653.0,5,3,5,5_0,5_3,5_0_0 -5230,2,53.0,1,0.0,6,111,4,55,38,10.0,0.0,624.566843803548,1691.4886747049854,0.0,1804.2718395442198,52172.0,71,42,1,2975,201105230,,,160.0,,2.0,2.0,4.0,0.0,2.0,1.5,4502.633992842735,1678.0,600.0,0.0,0.0,62691.0,1,1,3,90.0,5,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4120.327358052753,0.07897583681002747,0.0657243840113055,41794.0,10,5,10,10_1,10_2,10_0_0 -5231,1,24.0,3,300.0,6,111,4,0,34,1.0,0.0,0.0,81.85841665082144,0.0,0.0,6511.0,0,10,8,2976,201105231,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3478.719771605141,0.0,60.0,0.0,0.0,9152.0,0,3,3,23.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,81.85841665082144,0.012572326317128159,0.008944320001182412,9152.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5232,1,44.0,3,180.0,5,112,2,56,62,2.0,555.2596031986087,0.0,1712.2052149463484,145.98446694806984,0.0,29042.0,71,50,1,2977,201105232,,,669.0,,2.0,0.0,5.0,3.0,5.0,2.8,1616.6847696780312,0.0,1255.0,0.0,0.0,28313.0,1,1,3,100.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2413.449285093027,0.08310203447052637,0.0852417364847606,10111.785714285716,2,1,2_1,2_1_1,2_1_1,2_0_0 -5233,2,42.0,3,0.0,7,112,2,46,53,8.0,2379.684013708323,0.0,649.4101054298501,104.27461924862132,0.0,38773.0,20,60,1,2979,201105233,,,403.0,,2.0,0.0,5.0,2.0,4.0,2.1,3173.797127312839,0.0,476.0,0.0,0.0,53291.0,1,1,2,140.0,7,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3133.3687383867946,0.08081316221047623,0.0587973342287965,25376.666666666664,8,4,8,8_1,8_0,8_0_0 -5234,2,52.0,4,0.0,2,111,2,67,33,4.0,0.0,0.0,873.1564442754286,0.0,2221.049389995634,28889.0,71,71,1,298,201105234,,,,607.0,2.0,5.0,4.0,1.0,3.0,2.0,3789.8556177180526,0.0,640.0,1278.0,0.0,33011.0,4,1,3,74.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3094.2058342710625,0.10710671308356338,0.09373256897007247,16505.5,4,2,4_0,4_1_0,4_4_0,4_0_1 -5235,2,72.0,2,0.0,2,111,1,0,77,1.0,0.0,0.0,156.06159264542987,0.0,322.5754182736984,15697.0,0,41,2,2980,201105235,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2809.901376289566,300.0,0.0,0.0,0.0,1848.0,0,5,1,91.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,478.6370109191283,0.030492260363071177,0.2590027115363248,1848.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -5236,2,33.0,2,0.0,8,112,5,43,53,8.0,0.0,832.755791738064,955.0148609262501,0.0,0.0,63582.0,31,31,1,2981,201105236,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2366.0672874893166,0.0,700.0,0.0,0.0,56108.0,1,1,2,120.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1787.7706526643142,0.028117559256775726,0.03186302581921142,26718.095238095237,8,4,8,8_1,8_0,8_0_0 -5237,2,25.0,2,0.0,7,111,4,46,37,10.0,0.0,0.0,1227.8762497623215,0.0,0.0,40763.0,20,20,2,2982,201105237,,,140.0,406.0,2.0,0.0,3.0,0.0,2.0,1.5,2917.6609468259935,0.0,900.0,0.0,0.0,100873.0,1,1,3,63.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1227.8762497623215,0.030122322934090267,0.012172496602285265,67248.66666666667,10,5,10,10_0,10_3,10_0_0 -5238,0,43.0,1,0.0,9,111,2,0,34,10.0,0.0,0.0,0.0,0.0,0.0,39911.0,0,20,2,2984,201105238,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2750.1550273351572,0.0,0.0,0.0,0.0,38449.0,0,1,5,90.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,38449.0,10,5,10,10_0,10_4,10_0_0 -5239,2,27.0,2,0.0,9,221,4,47,47,7.0,0.0,0.0,1309.734666413143,100.7987986070006,0.0,44282.0,31,31,1,2986,201105239,,,,,2.0,0.0,2.0,1.0,3.0,1.8,4953.688692932792,0.0,960.0,0.0,0.0,44079.0,1,1,3,50.0,1,1.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1410.5334650201437,0.031853427239513656,0.03200012398239851,24488.333333333332,7,4,7,7_1,7_1,7_0_0 -5240,1,46.0,4,300.0,1,111,4,0,85,2.0,0.0,0.0,682.1534720901786,260.6865481215533,0.0,15040.0,0,71,2,2987,201105240,,,200.0,,0.0,3.0,3.0,1.0,2.0,1.3,5258.282653290866,0.0,500.0,0.0,0.0,13020.0,0,6,3,60.0,5,4.0,2,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,942.8400202117319,0.0626888311310992,0.07241474809613917,10015.384615384615,2,1,2_1,2_0_1,2_2_1,2_1_0 -5241,2,61.0,4,0.0,8,111,5,77,74,8.0,0.0,582.9290542166448,995.9440692516608,0.0,0.0,31444.0,50,70,1,2988,201105241,,,321.0,,0.0,2.0,6.0,0.0,2.0,1.5,1167.3201389752487,0.0,730.0,0.0,0.0,40893.0,5,5,2,129.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1578.8731234683055,0.050212222473868,0.03860986289752049,27262.0,8,4,8,8_1,8_3,8_0_0 -5242,1,46.0,3,289.0,5,111,2,85,62,3.0,0.0,0.0,440.6711429702554,0.0,1640.5873428449754,26405.0,50,71,8,2990,201105242,,,,46.0,1.0,3.0,4.0,3.0,5.0,2.4,3312.1923800923664,0.0,323.0,944.0,0.0,30596.0,6,1,3,80.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2081.258485815231,0.07882062055728956,0.06802387520640707,12748.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_0 -5243,2,42.0,3,0.0,2,111,1,0,43,5.0,0.0,0.0,682.1534720901786,0.0,173.79103208103552,42931.0,0,20,2,2991,201105243,,,,,1.0,0.0,4.0,3.0,4.0,2.3,1970.9750646558132,0.0,500.0,100.0,0.0,43370.0,0,1,2,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,855.9445041712141,0.01993767916356978,0.01973586590203399,18856.521739130436,5,3,5,5_0,5_4,5_0_1 -5244,1,47.0,3,100.0,6,221,2,0,52,5.0,0.0,0.0,818.5841665082144,0.0,1042.7461924862132,19411.0,0,50,1,2992,201105244,,,,,1.0,1.0,4.0,1.0,2.0,1.3,2473.264337072564,0.0,600.0,600.0,0.0,21768.0,0,1,3,82.0,1,2.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1861.3303589944276,0.09589049296761772,0.08550764236468338,16744.615384615383,4,2,4_1,4_1_1,4_1_1,4_0_0 -5245,2,59.0,2,0.0,5,111,4,75,74,9.0,0.0,0.0,2338.4050893032268,0.0,1449.4388794431516,45348.0,31,60,1,2993,201105245,,,328.0,,0.0,2.0,5.0,0.0,2.0,1.5,2523.535662689929,1348.0,1200.0,0.0,0.0,54536.0,5,5,1,93.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3787.8439687463783,0.08352835778306382,0.06945584510683546,36357.333333333336,9,5,9,9_1,9_4,9_0_0 -5246,2,78.0,2,0.0,7,111,2,0,75,10.0,0.0,0.0,382.0059443705,0.0,1379.900794723422,39870.0,0,42,2,2997,201105246,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3677.7026368305533,0.0,280.0,794.0,0.0,40532.0,0,5,1,82.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1761.906739093922,0.044191290170401853,0.04346952381066619,40532.0,10,5,10,10_0,10_4,10_0_0 -5247,0,45.0,3,0.0,4,211,2,0,52,3.0,0.0,0.0,425.66376658427146,0.0,1251.2954309834558,18137.0,0,50,1,2999,201105247,,,,,1.0,0.0,5.0,1.0,2.0,1.5,1890.9947670018455,0.0,312.0,720.0,0.0,21334.0,0,1,5,120.0,3,3.0,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1676.9591975677272,0.09246067142127845,0.07860500597955035,14222.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_1 -5248,1,20.0,2,170.0,99,111,2,0,84,1.0,0.0,0.0,286.504458277875,0.0,0.0,19536.0,0,41,2,3,201105248,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3494.5161973082627,0.0,210.0,0.0,0.0,6007.0,0,3,3,17.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,286.504458277875,0.01466546162356035,0.04769509876442068,6007.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -5249,1,45.0,4,133.0,8,111,2,85,37,2.0,0.0,0.0,1227.8762497623215,0.0,1042.7461924862132,33109.0,41,50,2,30,201105249,,,,,1.0,1.0,3.0,3.0,5.0,2.6,2213.5260979303644,0.0,900.0,600.0,0.0,26196.0,6,4,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2270.6224422485348,0.068580218135508,0.08667821202658936,10075.384615384615,2,1,2_1,2_0_1,2_4_1,2_0_0 -5250,2,41.0,3,0.0,8,111,2,54,52,1.0,0.0,0.0,1637.1683330164287,0.0,0.0,71247.0,41,20,2,3004,201105250,,,,1000.0,2.0,0.0,3.0,2.0,4.0,2.1,2693.775497923409,0.0,1200.0,0.0,0.0,16310.0,1,1,3,63.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1637.1683330164287,0.02297876869224569,0.10037819331799072,7766.666666666666,1,1,1_0,1_0_0,1_4_0,1_0_0 -5251,2,40.0,5,0.0,9,111,2,85,22,10.0,0.0,0.0,1364.3069441803573,0.0,2780.6565132965684,64658.0,41,50,1,3005,201105251,,,1000.0,,1.0,0.0,5.0,1.0,3.0,1.8,2735.57089799868,0.0,1000.0,1600.0,0.0,78410.0,4,1,2,180.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4144.963457476926,0.06410596457479238,0.05286268916562844,43561.11111111111,10,5,10,10_1,10_3,10_0_0 -5252,2,30.0,2,0.0,9,400,4,85,65,3.0,63.458240365555284,0.0,1320.6491219665859,104.27461924862132,0.0,30928.0,60,41,1,3007,201105252,,,190.0,,1.0,0.0,4.0,1.0,3.0,1.8,2452.542640278197,0.0,968.0,0.0,0.0,24884.0,6,1,2,100.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1488.3819815807624,0.04812409407594291,0.059812810704901236,13824.444444444443,3,2,3_0,3_1_0,3_0_0,3_0_0 -5253,2,59.0,3,0.0,5,112,2,72,74,10.0,0.0,0.0,3137.9059716148217,52.13730962431066,0.0,23132.0,70,50,1,3008,201105253,,,309.0,,0.0,2.0,6.0,0.0,2.0,1.5,1579.8619011559974,0.0,2300.0,0.0,0.0,61236.0,5,4,1,150.0,9,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3190.0432812391323,0.1379060730260735,0.05209424654188929,40824.0,10,5,10,10_1,10_0,10_0_0 -5254,2,82.0,3,0.0,6,112,4,0,75,8.0,0.0,0.0,2537.6109161754644,208.54923849724264,0.0,62918.0,0,70,1,3009,201105254,,,310.0,,0.0,0.0,6.0,1.0,2.0,1.5,1866.6553062241255,0.0,1860.0,0.0,0.0,37750.0,0,5,1,120.0,6,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2746.160154672707,0.043646653655117884,0.07274596436219091,25166.666666666668,8,4,8,8_1,8_0,8_0_0 -5255,2,75.0,4,0.0,2,111,1,77,75,4.0,0.0,0.0,545.7227776721429,0.0,0.0,19653.0,50,50,2,301,201105255,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2228.1800766417387,0.0,400.0,0.0,0.0,23910.0,5,5,3,50.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,545.7227776721429,0.027767912159575785,0.02282403921673538,15940.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -5256,2,49.0,3,0.0,1,112,2,0,43,5.0,0.0,0.0,955.0148609262501,78.20596443646599,0.0,22919.0,0,60,1,3010,201105256,,,,643.0,1.0,0.0,3.0,0.0,1.0,1.0,2995.2469696713706,0.0,700.0,0.0,0.0,18433.0,0,1,3,65.0,8,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1033.2208253627161,0.045081409545037573,0.05605277629049618,18433.0,5,3,5,5_1,5_0,5_1_0 -5257,2,41.0,3,0.0,1,112,5,85,64,1.0,0.0,138.792631956344,491.1504999049286,0.0,0.0,23334.0,71,71,1,3011,201105257,,,309.0,,1.0,2.0,5.0,3.0,5.0,2.6,2910.1684175043583,0.0,360.0,0.0,0.0,23845.0,6,1,1,120.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,629.9431318612726,0.026996791457155764,0.026418248348134728,9171.153846153846,1,1,1_0,1_1_0,1_0_0,1_1_0 -5258,2,48.0,2,0.0,2,112,1,54,42,7.0,0.0,0.0,492.514806849109,0.0,0.0,52816.0,31,10,2,3012,201105258,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2213.2515235882947,0.0,361.0,0.0,0.0,41870.0,1,1,2,75.0,10,5.0,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,492.514806849109,0.009325106158154897,0.011762952157848316,23261.11111111111,7,4,7,7_0,7_2,7_0_1 -5259,2,90.0,3,0.0,1,112,4,0,72,2.0,0.0,0.0,409.2920832541072,48.661488982689946,0.0,3229.0,0,71,1,3013,201105259,,,200.0,,0.0,0.0,2.0,0.0,1.0,1.0,2987.1862132563742,0.0,300.0,0.0,0.0,11160.0,0,5,1,45.0,7,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,457.95357223679713,0.1418252004449666,0.04103526632946211,11160.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -5260,2,64.0,3,0.0,5,300,4,77,75,6.0,0.0,0.0,1173.3039719951073,291.9689338961397,0.0,27013.0,50,71,1,3015,201105260,,,236.0,,0.0,1.0,4.0,0.0,2.0,1.5,3532.0529333557274,0.0,860.0,0.0,0.0,28474.0,5,5,1,90.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1465.2729058912469,0.054243249764603964,0.05146003040989137,18982.666666666668,5,3,5,5_1,5_0,5_0_0 -5261,1,59.0,3,249.0,4,111,2,0,78,1.0,0.0,0.0,327.43366660328576,0.0,802.9145682143841,4780.0,0,71,2,3017,201105261,,,360.0,,1.0,0.0,3.0,1.0,2.0,1.5,3113.065365442685,0.0,240.0,462.0,0.0,11738.0,0,7,3,60.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1130.34823481767,0.23647452611248324,0.09629819686638864,7825.333333333333,1,1,1_1,1_0_1,1_2_1,1_0_1 -5262,2,58.0,3,0.0,1,111,2,52,56,10.0,0.0,0.0,656.2316401507518,0.0,2295.7795337904795,35436.0,60,41,1,3019,201105262,,,335.0,,2.0,2.0,4.0,0.0,2.0,1.5,1615.9514130415719,0.0,481.0,1321.0,0.0,58796.0,1,1,1,150.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2952.0111739412314,0.08330542877134077,0.05020768715458928,39197.333333333336,10,5,10,10_1,10_2,10_1_0 -5263,2,46.0,3,0.0,1,111,2,63,67,4.0,0.0,0.0,1337.02080529675,0.0,1251.2954309834558,14637.0,50,50,2,302,201105263,,,,211.0,2.0,0.0,2.0,0.0,2.0,1.5,2267.8904520000024,0.0,980.0,720.0,0.0,23680.0,4,1,3,40.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2588.316236280206,0.17683379355607062,0.10930389511318438,15786.666666666666,4,2,4_0,4_0_0,4_2_0,4_1_0 -5264,2,46.0,3,0.0,5,112,2,52,46,5.0,0.0,208.188947934516,818.5841665082144,0.0,3128.2385774586396,42409.0,50,50,1,3020,201105264,,,480.0,,2.0,0.0,4.0,3.0,5.0,2.8,941.4177403789014,0.0,600.0,1800.0,0.0,51490.0,1,1,2,120.0,10,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4155.01169190137,0.09797476224153764,0.08069550770831947,18389.285714285714,5,3,5,5_1,5_1,5_0_0 -5265,2,59.0,4,0.0,3,111,1,54,31,7.0,0.0,0.0,1091.4455553442858,0.0,2189.7670042210475,23376.0,30,20,2,3021,201105265,,,,600.0,2.0,0.0,3.0,1.0,3.0,1.8,3939.629536891034,0.0,800.0,1260.0,0.0,40000.0,1,1,3,96.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3281.2125595653333,0.1403667248274013,0.08203031398913334,22222.222222222223,7,4,7,7_0,7_4,7_0_1 -5266,2,43.0,3,0.0,2,120,2,55,67,3.0,2379.684013708323,0.0,961.8363956471519,0.0,0.0,33740.0,50,50,1,3022,201105266,,,650.0,,2.0,0.0,5.0,2.0,4.0,2.1,2929.6501569023485,0.0,705.0,0.0,0.0,30615.0,1,1,2,90.0,0,3.0,4,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3341.520409355475,0.09903735653098622,0.10914651018636207,14578.571428571428,3,2,3_0,3_1_0,3_1_0,3_0_1 -5267,2,69.0,1,0.0,2,120,2,71,71,5.0,0.0,55.5170527825376,510.2507971234536,194.64595593075978,0.0,17548.0,70,71,1,3023,201105267,,,156.0,,0.0,3.0,4.0,0.0,2.0,1.5,2132.937896989455,0.0,374.0,0.0,0.0,27146.0,5,5,1,120.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,760.413805836751,0.04333336025967352,0.028012001983229607,18097.333333333332,5,3,5,5_1,5_1,5_0_1 -5268,2,83.0,3,0.0,1,112,2,0,71,2.0,1158.112886671384,0.0,832.2272359500179,151.1981979105009,0.0,9123.0,0,71,1,3024,201105268,,,,,0.0,4.0,3.0,0.0,1.0,1.0,3116.042200393504,0.0,610.0,0.0,0.0,11450.0,0,5,3,70.0,6,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2141.5383205319026,0.23474058100755263,0.18703391445693474,11450.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -5269,2,34.0,4,0.0,1,300,1,52,67,7.0,0.0,0.0,1064.1594164606786,0.0,0.0,23915.0,20,41,1,3025,201105269,,,142.0,,2.0,0.0,6.0,0.0,2.0,1.5,1858.1936982666718,0.0,780.0,0.0,0.0,36925.0,1,1,2,149.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1064.1594164606786,0.044497571250707864,0.02881948318106103,24616.666666666668,7,4,7,7_1,7_0,7_1_0 -5270,1,48.0,4,228.0,5,111,2,0,56,2.0,0.0,0.0,272.86138883607146,0.0,1390.3282566482842,34731.0,0,50,2,3026,201105270,,,,273.0,2.0,1.0,4.0,2.0,3.0,2.0,5532.728934741899,0.0,200.0,800.0,0.0,21465.0,0,1,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1663.1896454843557,0.04788775576529198,0.07748379433889381,10732.5,2,1,2_1,2_0_1,2_4_1,2_0_0 -5271,2,45.0,2,0.0,1,120,5,0,45,4.0,1066.0984381413289,1346.2885299765367,709.4396109737858,97.32297796537989,0.0,31615.0,0,43,1,3028,201105271,,,256.0,,1.0,0.0,7.0,2.0,3.0,2.0,2649.1528218989815,0.0,520.0,0.0,0.0,32750.0,0,1,2,180.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3219.1495570570314,0.10182348749191938,0.09829464296357347,16375.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -5272,2,57.0,1,0.0,6,112,2,71,11,10.0,552.086691180331,346.98157989085996,1046.423426186334,187.69431464751835,0.0,46621.0,31,31,1,3029,201105272,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1836.183015244713,0.0,767.0,0.0,0.0,67790.0,5,1,1,140.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2133.186011905043,0.045755904247121316,0.031467561762871264,45193.333333333336,10,5,10,10_1,10_0,10_0_0 -5273,1,52.0,3,421.0,3,111,1,74,56,1.0,0.0,0.0,392.9203999239429,0.0,658.6680115871246,23893.0,50,71,2,303,201105273,,,712.0,2.0,1.0,4.0,6.0,2.0,4.0,2.3,3512.186307721788,0.0,288.0,379.0,0.0,16783.0,4,1,3,95.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1051.5884115110675,0.04401240578876941,0.06265795218441682,7296.956521739131,1,1,1_1,1_0_1,1_2_1,1_0_1 -5274,2,57.0,2,0.0,1,112,2,75,42,9.0,1078.79008621444,0.0,477.50743046312505,135.55700502320772,0.0,45551.0,20,20,1,3030,201105274,,,200.0,,1.0,2.0,4.0,0.0,2.0,1.5,1434.496007083593,0.0,350.0,0.0,0.0,49004.0,5,1,1,96.0,9,3.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1691.8545217007727,0.037141984186972246,0.034524824946958875,32669.333333333332,9,5,9,9_1,9_1,9_1_0 -5275,2,81.0,2,0.0,2,112,2,0,75,6.0,2235.316516876685,0.0,354.7198054868929,93.84715732375918,0.0,15782.0,0,50,1,3031,201105275,,,257.0,,0.0,0.0,5.0,0.0,1.0,1.0,3016.6086218288146,0.0,260.0,0.0,0.0,21140.0,0,5,1,120.0,9,2.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2683.883479687337,0.17005978201034957,0.126957591281331,21140.0,6,3,6,6_1,6_1,6_0_1 -5276,2,40.0,3,0.0,1,120,5,52,47,6.0,0.0,41.637789586903196,2873.2304244438324,0.0,0.0,78435.0,41,50,1,3035,201105276,,,460.0,,2.0,0.0,5.0,2.0,4.0,2.3,3099.383423099628,0.0,2106.0,0.0,0.0,44823.0,1,1,1,110.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2914.8682140307355,0.03716285094703558,0.06503063637040661,19488.26086956522,6,3,6,6_1,6_1,6_1_0 -5277,1,51.0,4,193.0,1,111,1,0,52,2.0,0.0,0.0,313.79059716148214,0.0,0.0,13588.0,0,50,8,3039,201105277,,,,79.0,1.0,4.0,4.0,1.0,2.0,1.5,2037.7726380182671,0.0,230.0,0.0,0.0,16236.0,0,1,3,90.0,6,4.0,2,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,313.79059716148214,0.023093214392219764,0.01932684141176904,10824.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -5278,2,58.0,1,0.0,1,112,4,77,75,7.0,293.4943616906932,229.00784272796759,1814.528235759875,182.4805836850873,0.0,40775.0,60,41,1,304,201105278,,,126.0,,0.0,4.0,6.0,0.0,2.0,1.5,2368.88009561033,0.0,1330.0,0.0,0.0,35256.0,5,5,1,140.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2519.5110238636234,0.0617905830499969,0.07146332606828976,23504.0,7,4,7,7_1,7_0,7_1_0 -5279,2,55.0,2,0.0,5,112,2,85,47,7.0,1126.3837664886064,0.0,907.2641178799375,0.0,0.0,41461.0,70,41,1,3040,201105279,,,275.0,,1.0,2.0,7.0,0.0,2.0,1.5,1991.0298763074604,0.0,665.0,0.0,0.0,35540.0,6,1,1,220.0,9,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2033.647884368544,0.04904965833840342,0.05722138110209747,23693.333333333332,7,4,7,7_1,7_0,7_0_0 -5280,2,69.0,5,0.0,5,112,2,78,77,7.0,0.0,0.0,2521.2392328453,0.0,0.0,22388.0,71,71,1,3041,201105280,,,336.0,,0.0,3.0,5.0,0.0,2.0,1.5,5803.393740619236,0.0,1848.0,0.0,0.0,33941.0,5,5,1,110.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2521.2392328453,0.11261565270883063,0.07428299793303969,22627.333333333332,7,4,7,7_1,7_1,7_0_0 -5281,2,66.0,2,0.0,1,111,2,75,74,10.0,0.0,0.0,1237.6355320113212,0.0,4168.9804565888035,49510.0,43,10,1,3042,201105281,,,346.0,,0.0,3.0,5.0,0.0,2.0,1.5,2051.8227027840167,1553.0,315.0,1438.0,0.0,88928.0,5,5,1,130.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,5406.615988600124,0.10920250431428245,0.06079767889303846,59285.333333333336,10,5,10,10_1,10_3,10_1_0 -5282,2,51.0,4,0.0,5,112,5,52,63,6.0,0.0,832.755791738064,2563.781845249891,104.27461924862132,2059.1064199804414,40688.0,50,50,1,3045,201105282,,,367.0,,4.0,0.0,4.0,0.0,4.0,2.5,982.0171809965912,1915.0,1149.0,0.0,0.0,49540.0,1,4,1,92.0,8,1.0,5,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5559.9186762170175,0.1366476277088335,0.11223089778395272,19816.0,6,3,6,6_1,6_1,6_0_0 -5283,2,42.0,1,0.0,1,111,2,45,42,8.0,0.0,0.0,1040.4106176361993,0.0,2150.502788491323,77585.0,50,20,1,3046,201105283,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.1,1594.9191993054353,2000.0,0.0,0.0,0.0,51957.0,1,1,2,102.0,6,5.0,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3190.913406127522,0.0411279681140365,0.061414504419568534,24741.42857142857,7,4,7,7_1,7_2,7_1_0 -5284,2,44.0,3,0.0,7,300,4,52,64,6.0,0.0,0.0,1446.1653608311788,97.32297796537989,0.0,44519.0,42,50,1,3048,201105284,,,,,3.0,2.0,5.0,2.0,4.0,2.3,1688.0800572040362,0.0,1060.0,0.0,0.0,47540.0,1,1,3,79.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1543.4883387965588,0.034670328147455215,0.03246715058469833,20669.565217391308,6,3,6,6_1,6_0,6_0_0 -5285,2,48.0,3,0.0,3,112,1,85,62,5.0,0.0,0.0,654.8673332065715,0.0,0.0,21626.0,50,50,2,3049,201105285,,,,360.0,1.0,0.0,5.0,2.0,4.0,2.3,1788.4490170149006,0.0,480.0,0.0,0.0,40060.0,4,1,3,90.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,654.8673332065715,0.0302814821606664,0.01634716258628486,17417.391304347828,5,3,5,5_0,5_1,5_0_1 -5286,2,49.0,3,0.0,1,111,4,0,52,9.0,0.0,0.0,598.6084714735741,0.0,898.910165589373,12798.0,0,50,2,3050,201105286,,,,378.0,1.0,0.0,1.0,0.0,1.0,1.0,7186.1179909353605,836.0,120.0,0.0,0.0,35130.0,0,1,3,9.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1497.5186370629472,0.11701192663407932,0.04262791451929824,35130.0,9,5,9,9_0,9_4,9_1_0 -5287,2,39.0,2,0.0,8,112,2,85,34,9.0,0.0,0.0,1904.7017007249906,0.0,3237.5623389236325,26481.0,50,20,1,3051,201105287,,,350.0,,1.0,0.0,3.0,0.0,2.0,1.5,3023.6306715503465,829.0,1080.0,1350.0,0.0,43640.0,6,1,1,155.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5142.264039648623,0.1941869279728342,0.11783373143099503,29093.333333333332,8,4,8,8_1,8_0,8_0_0 -5288,2,72.0,4,0.0,6,221,4,0,75,7.0,0.0,124.91336876070959,1459.8084302729822,0.0,0.0,18088.0,0,33,1,3053,201105288,,,140.0,,0.0,2.0,4.0,0.0,1.0,1.0,3381.0032656079698,0.0,1070.0,0.0,0.0,22971.0,0,5,1,103.0,1,1.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1584.7217990336917,0.08761177570951413,0.06898793256861659,22971.0,7,4,7,7_1,7_1,7_0_0 -5289,1,50.0,4,311.0,2,111,2,85,52,2.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,16584.0,60,20,2,3055,201105289,,,,109.0,1.0,0.0,3.0,3.0,5.0,2.4,1238.486569347579,1200.0,0.0,0.0,0.0,22537.0,4,1,3,57.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1914.548043676513,0.11544549226221136,0.08495132642661016,9390.416666666668,1,1,1_1,1_0_1,1_3_1,1_0_1 -5290,2,33.0,2,0.0,1,112,2,33,46,8.0,0.0,277.585263912688,491.1504999049286,0.0,868.9551604051776,47965.0,20,31,1,3056,201105290,,,240.0,,2.0,0.0,4.0,0.0,2.0,1.5,2759.9722104666075,0.0,360.0,500.0,0.0,41584.0,1,1,2,81.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1637.6909242227941,0.034143457192177505,0.03938271749285288,27722.666666666668,8,4,8,8_1,8_0,8_1_0 -5291,2,59.0,2,0.0,6,400,2,0,77,8.0,0.0,0.0,0.0,46.92357866187959,0.0,37306.0,0,71,1,3057,201105291,,,,400.0,0.0,3.0,3.0,0.0,1.0,1.0,3486.4123121095868,0.0,0.0,0.0,0.0,24884.0,0,7,3,77.0,0,0.0,1,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,46.92357866187959,0.0012578024623888808,0.0018856927608856932,24884.0,7,4,7,7_1,7_0,7_0_0 -5292,2,43.0,3,0.0,1,111,2,62,46,5.0,0.0,0.0,723.0826804155894,0.0,2288.8278925072377,59910.0,20,20,1,3058,201105292,,,801.0,,2.0,0.0,7.0,3.0,5.0,2.6,1188.7222103935374,0.0,530.0,1317.0,0.0,47906.0,1,1,2,150.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3011.910572922827,0.05027392042935783,0.06287125981970583,18425.384615384613,5,3,5,5_1,5_2,5_1_0 -5293,2,73.0,3,0.0,6,111,2,0,77,4.0,0.0,0.0,780.3079632271495,0.0,1612.877091368492,22671.0,0,71,1,3060,201105293,,,150.0,,0.0,2.0,4.0,0.0,1.0,1.0,2691.5115509039238,1500.0,0.0,0.0,0.0,15582.0,0,5,1,90.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2393.1850545956413,0.10556151270767242,0.1535865135794918,15582.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -5294,2,50.0,4,0.0,1,400,2,52,52,6.0,5273.379774377644,0.0,2865.0445827787503,291.9689338961397,0.0,46772.0,60,41,1,3063,201105294,,,,,2.0,2.0,5.0,2.0,4.0,2.1,1858.9180112705913,0.0,2100.0,0.0,0.0,41621.0,1,1,1,182.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,8430.393291052535,0.18024444734141226,0.20255143535841366,19819.52380952381,6,3,6,6_1,6_0,6_1_0 -5295,2,42.0,3,0.0,1,111,2,52,46,8.0,0.0,0.0,1296.0915969713394,0.0,434.4775802025888,47541.0,50,31,1,3065,201105295,,,360.0,,3.0,0.0,7.0,4.0,6.0,2.9,1137.2149004013957,0.0,950.0,250.0,0.0,75517.0,1,4,2,160.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1730.5691771739282,0.036401614967584366,0.02291628609682493,26040.344827586207,8,4,8,8_1,8_3,8_1_0 -5296,2,25.0,2,0.0,2,111,2,52,42,8.0,0.0,0.0,409.2920832541072,0.0,556.1313026593136,48561.0,31,31,2,3066,201105296,,,,580.0,2.0,0.0,3.0,0.0,2.0,1.5,3144.6131598108864,0.0,300.0,320.0,0.0,39039.0,1,1,3,62.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,965.4233859134208,0.019880632316332466,0.02472971607657524,26026.0,8,4,8,8_0,8_4,8_0_1 -5297,2,55.0,3,0.0,6,111,2,11,11,5.0,0.0,0.0,1444.8010538869983,140.77073598563877,0.0,27078.0,70,71,1,3067,201105297,,,227.0,,2.0,2.0,5.0,0.0,2.0,1.5,3908.315330837478,0.0,1059.0,0.0,0.0,25847.0,1,1,1,135.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1585.571789872637,0.05855572013710898,0.0613445192816434,17231.333333333332,5,3,5,5_1,5_4,5_0_0 -5298,0,30.0,2,0.0,1,111,4,0,54,2.0,0.0,0.0,477.50743046312505,0.0,0.0,17755.0,0,20,2,3068,201105298,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3051.7184565834305,0.0,350.0,0.0,0.0,9868.0,0,4,5,65.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,477.50743046312505,0.026894251222930165,0.0483894842382575,9868.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -5299,2,56.0,3,0.0,1,111,5,56,47,4.0,0.0,555.170527825376,450.22129157951787,0.0,1790.047630434666,27925.0,50,50,1,3069,201105299,,,,,2.0,3.0,6.0,1.0,3.0,2.0,1524.9285359252117,0.0,330.0,1030.0,0.0,32960.0,1,1,2,140.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2795.4394498395595,0.10010526230401287,0.08481309010435557,16480.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -5300,2,65.0,3,0.0,1,221,2,0,77,1.0,1951.3408912408252,0.0,409.2920832541072,139.0328256648284,0.0,15256.0,0,70,1,307,201105300,,,180.0,,0.0,2.0,4.0,0.0,1.0,1.0,1429.1690064356683,0.0,300.0,0.0,0.0,8823.0,0,5,1,85.0,1,2.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2499.665800159761,0.16384804668063457,0.2833124560988055,8823.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -5301,2,63.0,1,0.0,1,400,2,75,72,10.0,0.0,0.0,6548.673332065715,139.0328256648284,0.0,37029.0,41,31,1,3070,201105301,,,300.0,,0.0,2.0,9.0,0.0,2.0,1.5,3442.100844372876,0.0,4800.0,0.0,0.0,57134.0,5,5,1,220.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6687.706157730543,0.18060725803371797,0.1170530009754357,38089.333333333336,10,5,10,10_1,10_0,10_1_0 -5302,2,40.0,2,0.0,7,111,5,54,62,7.0,0.0,832.755791738064,678.0605512576376,86.89551604051776,0.0,31547.0,31,43,1,3071,201105302,,,293.0,,2.0,0.0,4.0,1.0,3.0,1.8,1909.2941572073523,0.0,497.0,0.0,0.0,42311.0,1,1,2,70.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1597.7118590362195,0.05064544517818555,0.037761146251240094,23506.11111111111,7,4,7,7_1,7_3,7_0_0 -5303,2,75.0,1,0.0,2,111,2,0,77,4.0,0.0,0.0,1322.0134289107662,0.0,1718.7933072814412,21405.0,0,70,1,3072,201105303,,,120.0,,0.0,6.0,5.0,0.0,1.0,1.0,1860.8548170159265,0.0,969.0,989.0,0.0,14714.0,0,5,5,90.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3040.8067361922076,0.14206058099473057,0.20666078130978713,14714.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -5304,2,32.0,2,0.0,2,400,6,55,62,8.0,1332.6230476766611,0.0,1091.4455553442858,0.0,0.0,39389.0,42,42,1,3073,201105304,,,140.0,,2.0,0.0,5.0,1.0,3.0,1.8,1617.3074159046791,0.0,800.0,0.0,0.0,50860.0,1,1,2,150.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2424.068603020947,0.06154176554421151,0.04766159266655421,28255.555555555555,8,4,8,8_1,8_0,8_0_1 -5305,2,75.0,3,0.0,9,112,2,77,75,8.0,0.0,0.0,1296.0915969713394,100.7987986070006,0.0,20434.0,60,71,1,3074,201105305,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2167.527300327234,0.0,950.0,0.0,0.0,38072.0,5,5,1,140.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1396.89039557834,0.0683610842506773,0.03669075424402028,25381.333333333332,8,4,8,8_1,8_1,8_0_0 -5306,2,43.0,2,0.0,9,120,2,46,47,6.0,0.0,416.377895869032,1841.8143746434823,0.0,0.0,55184.0,42,50,1,3077,201105306,,,498.0,,2.0,1.0,6.0,2.0,4.0,2.3,2599.8040741573263,0.0,1350.0,0.0,0.0,47330.0,1,1,2,170.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2258.1922705125144,0.04092114146333203,0.0477116473803616,20578.26086956522,6,3,6,6_1,6_0,6_0_0 -5307,1,24.0,2,95.0,6,111,1,0,43,7.0,0.0,0.0,341.0767360450893,0.0,0.0,29964.0,0,20,2,3078,201105307,,,60.0,400.0,1.0,0.0,2.0,0.0,1.0,1.0,2963.6282469767325,0.0,250.0,0.0,0.0,22969.0,0,1,3,40.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,341.0767360450893,0.011382883995631067,0.014849437765905757,22969.0,7,4,7,7_0,7_2,7_0_0 -5308,2,72.0,3,0.0,4,112,2,0,71,2.0,2379.684013708323,0.0,556.6372332255858,145.98446694806984,0.0,24160.0,0,70,1,3079,201105308,,,130.0,,0.0,3.0,9.0,0.0,1.0,1.0,1341.1441216722587,0.0,408.0,0.0,0.0,12284.0,0,5,5,130.0,8,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3082.3057138819786,0.1275788788858435,0.2509203609477352,12284.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -5309,2,53.0,2,0.0,9,111,4,0,43,10.0,0.0,0.0,955.0148609262501,0.0,0.0,51899.0,0,60,2,3080,201105309,,,,,1.0,2.0,4.0,0.0,1.0,1.0,4230.477256080595,0.0,700.0,0.0,0.0,40161.0,0,1,1,76.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,955.0148609262501,0.018401411605739035,0.023779658398103885,40161.0,10,5,10,10_0,10_3,10_0_0 -5310,1,21.0,2,170.0,6,111,4,0,84,3.0,0.0,0.0,436.5782221377143,0.0,0.0,12557.0,0,41,2,3081,201105310,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3699.376680771543,0.0,320.0,0.0,0.0,12724.0,0,3,3,23.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,436.5782221377143,0.03476771698158113,0.03431139752732744,12724.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -5311,2,65.0,2,0.0,5,221,2,0,77,3.0,2474.871374256656,0.0,436.5782221377143,104.27461924862132,0.0,13951.0,0,70,1,3082,201105311,,,260.0,,0.0,3.0,5.0,0.0,1.0,1.0,3873.904739636242,0.0,320.0,0.0,0.0,13936.0,0,5,1,90.0,1,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3015.724215642992,0.21616545162662118,0.21639812109952583,13936.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -5312,2,40.0,3,0.0,2,111,2,0,65,7.0,0.0,0.0,668.510402648375,0.0,1911.7013528913908,19142.0,0,50,1,3084,201105312,,,,313.0,1.0,2.0,4.0,1.0,2.0,1.5,2520.493697828362,0.0,490.0,1100.0,0.0,36996.0,0,1,3,70.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2580.211755539766,0.1347932167767091,0.06974299263541371,24664.0,7,4,7,7_1,7_3,7_0_1 -5313,1,88.0,3,112.0,5,211,1,0,77,3.0,0.0,0.0,581.1947582208322,0.0,0.0,12630.0,0,70,8,3086,201105313,,,170.0,271.0,0.0,2.0,3.0,0.0,1.0,1.0,2906.22162567287,0.0,426.0,0.0,0.0,12936.0,0,5,3,71.0,4,3.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,581.1947582208322,0.0460170038179598,0.04492847543451084,12936.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -5314,2,64.0,4,0.0,9,111,2,0,78,2.0,0.0,0.0,564.823074890668,0.0,2429.5986284928767,10407.0,0,71,2,309,201105314,,,220.0,320.0,0.0,3.0,2.0,0.0,1.0,1.0,2458.8835962407366,0.0,414.0,1398.0,0.0,9486.0,0,5,3,48.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2994.421703383545,0.287731498355294,0.3156674787458934,9486.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -5315,2,74.0,2,0.0,1,111,2,0,77,4.0,0.0,166.55115834761278,382.0059443705,0.0,1021.8912686364889,11665.0,0,70,1,3090,201105315,,,48.0,,0.0,2.0,5.0,0.0,1.0,1.0,1875.9738609196131,0.0,280.0,588.0,0.0,15308.0,0,5,1,90.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1570.4483713546017,0.13462909312941293,0.10259004254994786,15308.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -5316,1,41.0,3,255.0,99,221,2,85,62,2.0,2062.392811880547,0.0,982.3009998098572,104.27461924862132,0.0,35128.0,71,71,1,3091,201105316,,,600.0,,1.0,0.0,4.0,3.0,5.0,2.6,3443.4783444121376,0.0,720.0,0.0,0.0,27805.0,6,1,3,95.0,1,1.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,3148.968430939026,0.08964269047309913,0.11325187667466376,10694.23076923077,2,1,2_1,2_1_1,2_1_1,2_0_0 -5317,1,29.0,4,130.0,1,111,4,0,81,1.0,0.0,0.0,286.504458277875,0.0,0.0,7526.0,0,71,2,3094,201105317,,,,35.0,1.0,1.0,2.0,1.0,2.0,1.3,2140.7509979871647,0.0,210.0,0.0,0.0,9150.0,0,4,3,20.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,286.504458277875,0.03806862320992227,0.031311962653319675,7038.461538461538,1,1,1_1,1_0_1,1_3_1,1_1_0 -5319,2,37.0,3,0.0,99,221,1,0,63,5.0,0.0,0.0,474.77881657476433,26.06865481215533,834.1969539889706,11799.0,0,50,2,3096,201105319,480.0,480.0,,242.0,1.0,0.0,4.0,0.0,1.0,1.0,5072.038349043925,0.0,348.0,480.0,0.0,16892.0,0,1,3,80.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1335.0444253758901,0.11314894697651412,0.07903412416385805,16892.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -5320,2,48.0,4,0.0,6,112,4,85,43,9.0,0.0,0.0,3166.556417442609,86.89551604051776,0.0,30623.0,33,33,1,3097,201105320,,,367.0,,1.0,3.0,5.0,0.0,2.0,1.5,1547.3100208196383,0.0,2321.0,0.0,0.0,53865.0,5,1,1,110.0,6,2.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3253.4519334831266,0.10624210343477539,0.060400110154703916,35910.0,9,5,9,9_1,9_1,9_0_0 -5321,2,38.0,2,0.0,9,400,2,37,11,10.0,2379.684013708323,0.0,1105.0886247860894,0.0,0.0,70203.0,50,50,1,3098,201105321,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1918.1448104363951,0.0,810.0,0.0,0.0,172237.0,1,1,2,200.0,0,0.0,4,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3484.7726384944126,0.04963851457194725,0.020232427634564076,82017.61904761904,10,5,10,10_1,10_0,10_0_0 -5322,1,71.0,3,44.0,99,111,1,78,78,2.0,0.0,0.0,1015.6444987695294,469.23578661879594,779.5572608281045,19067.0,71,71,2,3099,201105322,,,,248.0,0.0,7.0,4.0,0.0,2.0,1.5,2889.7154814322453,725.0,468.0,0.0,0.0,15344.0,5,5,3,70.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2264.43754621643,0.1187621307083668,0.1475780465469519,10229.333333333334,2,1,2_1,2_0_1,2_2_1,2_0_0 -5323,2,26.0,2,0.0,9,111,2,0,43,6.0,0.0,0.0,465.58375139219913,0.0,962.3499978498669,14743.0,0,33,2,3100,201105323,,,193.0,434.0,1.0,0.0,2.0,0.0,1.0,1.0,2843.8166821262275,895.0,0.0,0.0,0.0,20486.0,0,1,3,64.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1427.933749242066,0.0968550328455583,0.069702906826226,20486.0,6,3,6,6_0,6_2,6_0_0 -5324,2,70.0,1,0.0,6,111,1,74,74,10.0,0.0,0.0,68.21534720901786,0.0,0.0,51660.0,31,12,2,3101,201105324,,,,,0.0,0.0,4.0,0.0,2.0,1.5,2335.042643570441,0.0,50.0,0.0,0.0,56606.0,5,5,1,78.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,68.21534720901786,0.0013204674256488166,0.0012050904004702304,37737.333333333336,10,5,10,10_0,10_4,10_0_0 -5325,2,75.0,3,0.0,1,300,2,77,78,4.0,2221.038412794435,0.0,769.4691165177215,271.11401004641544,0.0,21114.0,71,70,1,3102,201105325,,,124.0,,1.0,1.0,5.0,1.0,3.0,2.0,1135.7600496606985,0.0,564.0,0.0,0.0,31659.0,5,5,1,108.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3261.6215393585717,0.1544767234706153,0.1030235174629196,15829.5,4,2,4_0,4_1_0,4_0_0,4_1_0 -5326,2,31.0,2,0.0,3,111,1,52,48,9.0,0.0,0.0,192.47596426269683,0.0,397.8430158708947,51227.0,60,43,2,3104,201105326,,,,1000.0,2.0,0.0,3.0,0.0,2.0,1.5,3015.0958697275587,370.0,0.0,0.0,0.0,54705.0,1,1,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,590.3189801335916,0.011523590687207754,0.010790951103803886,36470.0,9,5,9,9_0,9_4,9_0_1 -5327,0,28.0,3,0.0,1,111,4,0,54,1.0,0.0,0.0,477.50743046312505,0.0,0.0,21006.0,0,20,2,3105,201105327,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3406.9534507732164,0.0,350.0,0.0,0.0,8084.0,0,1,5,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,477.50743046312505,0.022731954225608163,0.05906821257584426,8084.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -5328,2,30.0,4,0.0,1,111,2,0,47,7.0,0.0,0.0,301.7190791144978,0.0,623.6458086624835,24390.0,0,42,2,3106,201105328,,,144.0,,1.0,0.0,2.0,0.0,1.0,1.0,3105.14694765005,580.0,0.0,0.0,0.0,23448.0,0,1,3,50.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,925.3648877769813,0.03794033980225425,0.03946455509113704,23448.0,7,4,7,7_0,7_3,7_1_0 -5329,2,59.0,2,0.0,1,112,5,78,34,5.0,0.0,1249.133687607096,409.2920832541072,695.1641283241421,0.0,25301.0,20,10,1,3107,201105329,,,,,1.0,1.0,5.0,0.0,2.0,1.5,1573.2204541835097,0.0,300.0,0.0,0.0,25599.0,6,1,1,150.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2353.589899185345,0.09302359192068871,0.09194069687039905,17066.0,5,3,5,5_1,5_0,5_1_0 -5330,2,51.0,4,0.0,2,111,1,0,34,8.0,0.0,0.0,900.4425831590357,0.0,156.41192887293198,26769.0,0,10,2,3108,201105330,,,400.0,,1.0,0.0,3.0,0.0,1.0,1.0,2618.4096064492655,0.0,660.0,90.0,0.0,25261.0,0,1,1,95.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1056.8545120319677,0.039480537638012916,0.04183739804568179,25261.0,8,4,8,8_0,8_2,8_0_1 -5331,2,45.0,2,0.0,7,120,2,54,45,9.0,0.0,0.0,1255.1623886459286,104.27461924862132,0.0,58310.0,43,41,1,3109,201105331,,,150.0,,3.0,1.0,5.0,1.0,3.0,2.0,2334.411949866757,0.0,920.0,0.0,0.0,65296.0,1,1,1,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1359.4370078945499,0.023313960005051447,0.020819606222349758,32648.0,9,5,9,9_1,9_0,9_0_0 -5332,2,79.0,2,0.0,5,111,1,0,75,9.0,0.0,0.0,1398.122448326789,0.0,1265.5708910271435,24895.0,0,41,2,311,201105332,616.0,616.0,,478.0,0.0,2.0,3.0,0.0,1.0,1.0,2848.8920165532686,1177.0,576.0,0.0,616.0,35782.0,0,5,3,70.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2663.6933393539325,0.10699712148439175,0.0744422709561772,35782.0,9,5,9,9_0,9_3,9_0_0 -5333,2,75.0,3,0.0,1,400,5,0,77,8.0,0.0,399.7227800342707,406.56346936574647,0.0,0.0,16009.0,0,60,2,3111,201105333,,,,,0.0,3.0,5.0,0.0,1.0,1.0,3084.0481756486615,0.0,298.0,0.0,0.0,28155.0,0,5,5,164.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,806.2862494000171,0.05036456052220733,0.028637408964660528,28155.0,8,4,8,8_0,8_0,8_1_0 -5334,2,36.0,3,0.0,1,400,4,0,21,3.0,0.0,0.0,1064.1594164606786,0.0,0.0,17610.0,0,44,8,3112,201105334,,,180.0,,1.0,0.0,4.0,0.0,1.0,1.0,4754.214154167581,0.0,780.0,0.0,0.0,14273.0,0,1,1,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1064.1594164606786,0.06042926839640424,0.07455751534090091,14273.0,3,2,3_0,3_0_0,3_0_0,3_1_0 -5335,2,44.0,3,0.0,99,111,2,0,37,6.0,0.0,416.377895869032,234.09238896814483,0.0,483.86312741054763,41603.0,0,31,1,3113,201105335,,,,278.0,1.0,0.0,4.0,0.0,1.0,1.0,2412.569566083953,450.0,0.0,0.0,0.0,20050.0,0,4,3,69.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1134.3334122477245,0.027265663828274993,0.056575232531058575,20050.0,6,3,6,6_1,6_2,6_0_0 -5336,2,41.0,2,0.0,8,111,2,56,11,8.0,0.0,0.0,955.0148609262501,86.89551604051776,0.0,98145.0,71,50,1,3114,201105336,,,436.0,,2.0,0.0,7.0,2.0,4.0,2.3,2891.0688078049684,0.0,700.0,0.0,0.0,57368.0,1,1,1,270.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1041.910376966768,0.010616031147452932,0.01816187381409092,24942.608695652176,8,4,8,8_1,8_2,8_0_0 -5337,1,25.0,3,180.0,2,111,1,0,67,3.0,0.0,0.0,605.7522832160786,0.0,145.98446694806984,21932.0,0,50,2,3118,201105337,,,,110.0,1.0,0.0,2.0,1.0,2.0,1.3,2739.1240983472126,0.0,444.0,84.0,0.0,16621.0,0,4,3,35.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,751.7367501641484,0.03427579564855683,0.045228130086285324,12785.384615384615,3,2,3_1,3_0_1,3_3_1,3_0_1 -5338,0,36.0,2,0.0,4,400,2,56,37,7.0,0.0,0.0,0.0,0.0,0.0,13699.0,50,41,2,3119,201105338,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3715.260833737176,0.0,0.0,0.0,0.0,45706.0,1,1,5,70.0,0,0.0,4,8,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,21764.761904761905,6,3,6,6_0,6_0,6_0_1 -5339,1,66.0,3,187.0,1,111,2,78,78,4.0,0.0,0.0,757.9391349479712,0.0,1566.6412814159287,15765.0,71,50,2,312,201105339,,,425.0,13.0,0.0,1.0,3.0,0.0,2.0,1.5,1961.0654376135717,1457.0,0.0,0.0,0.0,24538.0,7,5,3,63.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,2324.5804163639,0.1474519769339613,0.09473389911011085,16358.666666666666,4,2,4_1,4_0_1,4_2_1,4_1_0 -5340,2,65.0,2,0.0,99,111,1,78,77,9.0,0.0,0.0,518.4366387885358,0.0,149.46028758969055,15383.0,70,50,2,3120,201105340,,,,383.0,0.0,3.0,3.0,0.0,2.0,1.5,2321.8667049594364,0.0,380.0,86.0,0.0,44129.0,5,5,3,75.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,667.8969263782263,0.04341785908978914,0.015135102231598866,29419.333333333332,9,5,9,9_0,9_3,9_0_0 -5341,2,63.0,3,0.0,1,111,2,77,75,5.0,0.0,0.0,247.61772699741542,0.0,511.8196636609348,44392.0,70,71,1,3123,201105341,,,346.0,,0.0,3.0,3.0,1.0,3.0,2.0,1031.709056775372,476.0,0.0,0.0,0.0,34515.0,5,5,3,80.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,759.4373906583502,0.017107528173057086,0.022003111419914536,17257.5,5,3,5,5_1,5_2,5_1_0 -5342,2,83.0,3,0.0,99,111,2,86,72,2.0,0.0,0.0,896.3496623264947,0.0,1525.885261671492,14859.0,70,70,1,3124,201105342,,,178.0,,0.0,3.0,6.0,0.0,2.0,1.5,1780.6289016710969,0.0,657.0,878.0,0.0,14448.0,5,5,1,85.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2422.2349239979867,0.16301466612813692,0.16765191888136674,9632.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -5343,1,20.0,4,172.0,9,111,2,0,84,2.0,0.0,0.0,0.0,0.0,0.0,9702.0,0,60,2,3125,201105343,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3463.7269510055985,0.0,0.0,0.0,0.0,9628.0,0,3,3,45.0,8,6.0,1,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,9628.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5344,2,33.0,3,0.0,4,111,2,46,47,8.0,0.0,0.0,709.4396109737858,0.0,1390.3282566482842,49457.0,31,20,1,3126,201105344,,,430.0,,2.0,0.0,4.0,1.0,3.0,1.8,2855.2985782405267,0.0,520.0,800.0,0.0,46284.0,1,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2099.76786762207,0.04245643422815921,0.04536703542524565,25713.333333333332,8,4,8,8_1,8_4,8_0_1 -5345,2,46.0,3,0.0,7,112,2,0,48,9.0,0.0,0.0,682.1534720901786,0.0,434.4775802025888,21009.0,0,41,1,3127,201105345,,,160.0,,1.0,3.0,4.0,0.0,1.0,1.0,3075.368337831215,0.0,500.0,250.0,0.0,29960.0,0,1,2,100.0,7,2.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1116.6310522927674,0.05315012862548277,0.03727072938226861,29960.0,9,5,9,9_1,9_1,9_0_0 -5346,2,43.0,3,0.0,9,111,2,0,67,6.0,0.0,0.0,728.2874323453394,0.0,1505.351951943926,40187.0,0,71,1,3128,201105346,,,160.0,,2.0,9.0,4.0,2.0,4.0,2.5,3132.417165477831,1400.0,0.0,0.0,0.0,53289.0,0,1,2,78.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2233.6393842892653,0.05558114276480616,0.04191558078194872,21315.6,6,3,6,6_1,6_2,6_0_0 -5347,2,73.0,2,0.0,4,111,3,86,74,9.0,0.0,0.0,2714.970818918911,0.0,0.0,20402.0,41,31,1,3129,201105347,,,300.0,,0.0,2.0,6.0,0.0,2.0,1.5,2193.1104563641115,0.0,1990.0,0.0,0.0,51232.0,6,5,1,120.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2714.970818918911,0.13307375840206406,0.05299365277402621,34154.666666666664,9,5,9,9_1,9_2,9_0_1 -5348,2,25.0,3,0.0,6,111,2,0,48,3.0,0.0,0.0,155.54138733661176,0.0,321.50016687945276,18729.0,0,43,2,313,201105348,,,288.0,375.0,1.0,0.0,2.0,0.0,1.0,1.0,6124.8584326456385,299.0,0.0,0.0,0.0,14091.0,0,1,3,50.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,477.0415542160645,0.025470743457529206,0.033854343496988466,14091.0,3,2,3_0,3_0_0,3_2_0,3_0_0 -5349,2,64.0,3,0.0,5,111,2,77,78,6.0,0.0,0.0,409.2920832541072,0.0,2085.4923849724264,27630.0,70,71,1,3130,201105349,,,250.0,,1.0,3.0,4.0,1.0,3.0,2.0,2658.0382874654265,0.0,300.0,1200.0,0.0,38720.0,7,5,1,90.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2494.7844682265336,0.09029259747472072,0.0644314170513051,19360.0,6,3,6,6_1,6_2,6_0_0 -5350,1,47.0,3,153.0,7,111,2,85,63,2.0,0.0,0.0,272.86138883607146,0.0,1303.4327406077664,19087.0,71,10,2,3131,201105350,,,,500.0,1.0,0.0,3.0,3.0,5.0,2.4,4340.196672527799,0.0,200.0,750.0,0.0,27146.0,6,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1576.2941294438378,0.08258469793282537,0.05806727066395925,11310.833333333334,2,1,2_1,2_0_1,2_4_1,2_0_0 -5351,1,34.0,3,111.0,1,300,2,52,53,4.0,2113.159404172991,0.0,1144.6535261673198,86.89551604051776,0.0,27015.0,43,44,1,3133,201105351,,,213.0,,2.0,0.0,5.0,2.0,4.0,2.1,2566.9256456019643,0.0,839.0,0.0,0.0,33675.0,6,1,3,120.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3344.7084463808283,0.12380930765799845,0.09932319068688428,16035.714285714284,4,2,4_1,4_1_1,4_0_1,4_1_0 -5352,2,39.0,2,0.0,1,112,2,52,62,8.0,0.0,0.0,965.929316479693,0.0,0.0,20888.0,42,50,2,3134,201105352,,,,455.0,2.0,0.0,1.0,0.0,2.0,1.5,2647.58801487939,0.0,708.0,0.0,0.0,37684.0,1,1,3,31.0,10,5.0,3,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,965.929316479693,0.04624326486402207,0.025632345729744533,25122.666666666668,8,4,8,8_0,8_2,8_1_0 -5353,1,20.0,4,200.0,1,111,6,0,84,1.0,0.0,0.0,302.8761416080393,0.0,0.0,15297.0,0,41,2,3136,201105353,,,,170.0,0.0,0.0,1.0,0.0,1.0,1.0,3607.525804535764,0.0,222.0,0.0,0.0,8404.0,0,3,3,13.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,302.8761416080393,0.019799708544684533,0.03603952184769625,8404.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -5354,2,60.0,2,0.0,1,112,2,0,37,5.0,0.0,624.566843803548,2409.3660634225107,139.0328256648284,0.0,25165.0,0,20,1,3137,201105354,,,539.0,,1.0,1.0,5.0,1.0,2.0,1.5,835.9733988566495,0.0,1766.0,0.0,0.0,26822.0,0,1,1,80.0,10,0.0,2,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3172.9657328908875,0.12608645868829277,0.11829713417682826,17881.333333333332,5,3,5,5_1,5_0,5_1_0 -5355,1,23.0,5,211.0,9,112,4,68,53,3.0,0.0,0.0,49.115049990492864,26.06865481215533,0.0,13618.0,50,71,1,3138,201105355,,,,180.0,2.0,0.0,4.0,2.0,4.0,2.1,2348.6698027971916,0.0,36.0,0.0,0.0,26993.0,1,1,3,76.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,75.1837048026482,0.005520906506289338,0.002785303775150898,12853.809523809523,3,2,3_1,3_1_1,3_0_1,3_0_0 -5356,2,50.0,3,0.0,1,111,2,54,37,10.0,0.0,0.0,2742.256957802518,0.0,2033.3550753481156,33966.0,31,50,1,3139,201105356,,,1330.0,,2.0,3.0,4.0,0.0,2.0,1.5,1608.1305087694268,0.0,2010.0,1170.0,0.0,79455.0,4,1,2,125.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4775.612033150634,0.1405997772228297,0.06010461309106581,52970.0,10,5,10,10_1,10_3,10_1_0 -5357,2,60.0,1,0.0,1,112,2,11,11,10.0,0.0,0.0,305.6047554964,4191.839693794577,0.0,22359.0,12,12,1,3141,201105357,,,101.0,,2.0,3.0,6.0,0.0,2.0,1.5,1349.679194109781,0.0,224.0,0.0,0.0,119472.0,1,1,1,150.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4497.444449290977,0.20114694079748544,0.037644338834965325,79648.0,10,5,10,10_1,10_0,10_1_0 -5358,2,38.0,3,0.0,8,120,5,54,47,8.0,0.0,416.377895869032,1105.0886247860894,0.0,0.0,37677.0,41,31,1,3142,201105358,,,380.0,,2.0,0.0,4.0,2.0,4.0,2.1,7739.9710500111805,0.0,810.0,0.0,0.0,55612.0,1,1,2,137.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1521.4665206551215,0.040381838274149255,0.027358601033142513,26481.90476190476,8,4,8,8_1,8_0,8_0_0 -5359,2,61.0,3,0.0,8,111,2,77,74,9.0,0.0,0.0,768.1048095735412,0.0,1942.9837386659772,53021.0,60,42,1,3143,201105359,,,407.0,,0.0,1.0,6.0,0.0,2.0,1.5,3507.1100542125546,0.0,563.0,1118.0,0.0,46417.0,6,5,1,125.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2711.0885482395183,0.05113235412835515,0.05840723330330522,30944.666666666668,9,5,9,9_1,9_3,9_0_0 -5360,2,54.0,3,0.0,7,111,2,46,48,8.0,0.0,0.0,1268.8054580877322,0.0,1616.2565983536304,56627.0,60,43,1,3144,201105360,,,620.0,415.0,2.0,3.0,5.0,3.0,5.0,2.6,1153.3694549780603,0.0,930.0,930.0,0.0,65193.0,1,1,3,105.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2885.0620564413625,0.0509485237862038,0.044254169258070075,25074.23076923077,8,4,8,8_1,8_3,8_0_0 -5361,2,35.0,3,0.0,9,112,6,54,13,3.0,0.0,0.0,2144.690516251522,0.0,0.0,38762.0,31,31,1,3145,201105361,,,,,2.0,0.0,6.0,3.0,5.0,2.4,2361.3985610674795,0.0,1572.0,0.0,0.0,34331.0,1,1,2,169.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2144.690516251522,0.05532971766811624,0.06247095966477882,14304.583333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -5362,2,22.0,3,0.0,2,112,4,55,65,5.0,0.0,0.0,1391.5930830639643,34.7582064162071,0.0,22131.0,50,71,1,3146,201105362,,,140.0,,2.0,0.0,3.0,0.0,2.0,1.5,2914.0720115774757,0.0,1020.0,0.0,0.0,27346.0,1,1,3,46.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1426.3512894801713,0.06445037682346805,0.052159412326489116,18230.666666666668,5,3,5,5_1,5_0,5_0_1 -5363,2,42.0,3,0.0,1,111,2,22,56,1.0,0.0,0.0,1009.5871386934643,0.0,1737.9103208103552,49306.0,50,33,1,3149,201105363,,,345.0,,2.0,0.0,5.0,2.0,4.0,2.3,3029.8287581028007,0.0,740.0,1000.0,0.0,20099.0,1,1,2,88.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2747.4974595038193,0.05572338984107044,0.13669821680202096,8738.695652173914,1,1,1_0,1_1_0,1_3_0,1_1_0 -5364,2,60.0,4,0.0,4,112,6,0,74,5.0,1903.7472109666587,0.0,1424.336449724293,0.0,0.0,26092.0,0,20,1,3150,201105364,,,297.0,,0.0,1.0,7.0,0.0,2.0,1.5,1720.5870241877735,0.0,1044.0,0.0,0.0,25221.0,0,5,1,148.0,10,5.0,5,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3328.0836606909515,0.12755188029629586,0.13195684789227038,16814.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -5365,1,54.0,3,361.0,9,111,2,85,78,1.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,22544.0,60,50,2,3151,201105365,,,,104.0,0.0,0.0,3.0,1.0,3.0,2.0,3433.6703439684347,700.0,0.0,0.0,0.0,14456.0,6,7,3,71.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1116.8196921446327,0.04953955341308697,0.07725648119428837,7228.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -5366,2,60.0,3,0.0,6,111,2,78,75,7.0,0.0,0.0,504.79356934673217,0.0,2160.2225287672713,41717.0,70,41,2,3153,201105366,,,420.0,428.0,0.0,2.0,3.0,0.0,2.0,1.5,3073.3458848665564,0.0,370.0,1243.0,0.0,35731.0,5,5,3,75.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2665.0160981140034,0.06388321543049605,0.07458554471226675,23820.666666666668,7,4,7,7_0,7_3,7_0_0 -5367,2,53.0,2,0.0,1,112,7,52,47,6.0,0.0,0.0,1910.0297218525002,0.0,0.0,46360.0,50,31,1,3154,201105367,,,,,2.0,2.0,5.0,1.0,3.0,2.0,1041.2045132635324,0.0,1400.0,0.0,0.0,38602.0,1,1,2,110.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1910.0297218525002,0.04119995085963115,0.049480071546875816,19301.0,6,3,6,6_1,6_0,6_1_0 -5368,2,62.0,1,0.0,1,111,2,72,75,7.0,0.0,0.0,1189.4511279685705,0.0,3383.9974068030547,76061.0,50,41,1,3156,201105368,,,779.0,,0.0,2.0,4.0,0.0,2.0,1.5,2097.980570698764,629.0,632.0,1558.0,0.0,34407.0,5,5,1,90.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4573.448534771625,0.060128693216913075,0.1329220372241586,22938.0,7,4,7,7_1,7_3,7_1_0 -5369,1,47.0,5,220.0,9,300,2,85,63,1.0,0.0,0.0,1841.8143746434823,333.6787815955882,0.0,32015.0,50,44,1,3158,201105369,,,320.0,,1.0,4.0,5.0,3.0,5.0,2.4,1391.3681389091105,0.0,1350.0,0.0,0.0,21516.0,6,1,2,111.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2175.4931562390707,0.06795230848786728,0.1011104831864227,8965.0,1,1,1_1,1_1_1,1_0_1,1_0_0 -5370,1,49.0,2,40.0,5,221,4,85,38,8.0,0.0,0.0,523.580635822921,0.0,473.110613468091,64289.0,50,42,1,3159,201105370,,,275.0,538.0,2.0,0.0,7.0,3.0,5.0,3.0,2501.144878806943,440.0,216.0,0.0,0.0,83505.0,6,1,3,120.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,996.6912492910119,0.015503293709515031,0.011935707434177737,27835.0,8,4,8,8_1,8_1,8_0_0 -5371,2,44.0,1,0.0,4,112,2,42,34,8.0,3966.1400228472053,0.0,682.1534720901786,0.0,0.0,71189.0,20,20,1,3160,201105371,,,540.0,,2.0,0.0,7.0,4.0,6.0,3.3,1803.6738944609835,0.0,500.0,0.0,0.0,81583.0,1,1,1,160.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4648.293494937384,0.06529510872378294,0.05697625111772531,24722.121212121212,7,4,7,7_1,7_0,7_0_1 -5372,2,68.0,3,0.0,5,111,2,75,74,9.0,0.0,0.0,166.4454471900036,104.27461924862132,0.0,49900.0,50,12,1,3161,201105372,,,310.0,,0.0,2.0,5.0,0.0,2.0,1.5,953.3943051901816,0.0,122.0,0.0,0.0,48621.0,5,5,1,110.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,270.72006643862494,0.005425251832437373,0.005567965826260771,32414.0,9,5,9,9_1,9_2,9_0_0 -5373,2,24.0,2,0.0,5,111,1,43,64,6.0,0.0,0.0,383.3702513146804,118.17790181510415,0.0,37610.0,42,50,2,3167,201105373,,,,690.0,2.0,0.0,3.0,0.0,2.0,1.5,2969.3793881341903,0.0,281.0,0.0,0.0,31760.0,1,1,3,80.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,501.5481531297845,0.01333549995027345,0.01579181842348188,21173.333333333332,6,3,6,6_0,6_2,6_0_0 -5374,1,29.0,3,300.0,6,120,5,52,62,3.0,0.0,277.585263912688,955.0148609262501,291.9689338961397,0.0,24932.0,43,44,2,3170,201105374,,,550.0,,2.0,0.0,4.0,2.0,4.0,2.1,3060.486508419527,0.0,700.0,0.0,0.0,29075.0,4,1,3,76.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1524.5690587350778,0.06114908786840517,0.052435737187792875,13845.238095238095,3,2,3_1,3_0_1,3_0_1,3_0_0 -5375,1,71.0,4,227.0,6,111,1,78,78,1.0,0.0,0.0,559.3658471139465,0.0,573.5104058674173,20591.0,71,71,2,3171,201105375,,,,128.0,1.0,4.0,5.0,1.0,4.0,2.5,3659.656710836596,0.0,410.0,330.0,0.0,21184.0,6,5,3,89.0,8,6.0,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1132.876252981364,0.055018029866512747,0.053477919797081,8473.6,1,1,1_1,1_0_1,1_2_1,1_0_0 -5376,2,60.0,1,0.0,5,111,2,78,78,6.0,0.0,0.0,523.8938665652572,0.0,1313.8602025326286,25112.0,71,70,1,3173,201105376,,,300.0,,0.0,3.0,4.0,0.0,2.0,1.5,4056.576885641934,0.0,384.0,756.0,0.0,30239.0,5,5,1,85.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1837.7540690978858,0.0731823060328881,0.06077430037692668,20159.333333333332,6,3,6,6_1,6_3,6_0_0 -5377,2,47.0,2,0.0,4,111,2,74,37,10.0,0.0,0.0,825.4651067036964,0.0,3234.1754338902733,115393.0,60,10,1,3174,201105377,,,560.0,,1.0,0.0,5.0,1.0,3.0,1.8,3306.934573242284,265.0,504.0,1697.0,0.0,84273.0,5,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4059.6405405939695,0.03518099486618746,0.04817249345097445,46818.333333333336,10,5,10,10_1,10_4,10_0_1 -5378,2,77.0,3,0.0,7,112,2,72,74,4.0,0.0,0.0,2592.183193942679,83.41969539889705,0.0,14852.0,50,50,1,3176,201105378,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1524.3981174065666,0.0,1900.0,0.0,0.0,22792.0,5,5,1,172.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2675.602889341576,0.18015101598044547,0.1173921941620558,15194.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -5379,2,55.0,3,0.0,1,112,2,85,67,7.0,0.0,0.0,1487.0945691565894,0.0,1372.9491534401807,42917.0,71,71,1,3178,201105379,,,870.0,,1.0,3.0,5.0,0.0,2.0,1.5,2805.197294276587,0.0,1090.0,790.0,0.0,33000.0,6,4,1,60.0,7,1.0,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2860.04372259677,0.06664127787582473,0.0866679915938415,22000.0,7,4,7,7_1,7_1,7_1_0 -5380,2,80.0,2,0.0,2,400,2,71,71,2.0,0.0,97.1548423694408,687.6106998669001,166.8393907977941,0.0,20164.0,70,70,1,3181,201105380,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1806.6585379546977,0.0,504.0,0.0,0.0,14671.0,5,5,1,150.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,951.6049330341349,0.04719326190409318,0.06486299045969156,9780.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_1 -5381,2,26.0,3,0.0,5,111,2,55,63,2.0,0.0,0.0,203.28173468287324,0.0,0.0,36865.0,43,50,1,3184,201105381,,,150.0,,2.0,0.0,5.0,2.0,4.0,2.1,2229.1830760654407,0.0,149.0,0.0,0.0,23330.0,1,1,3,90.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,203.28173468287324,0.005514220390149823,0.008713319103423628,11109.52380952381,2,1,2_0,2_1_0,2_3_0,2_0_0 -5382,2,57.0,2,0.0,3,111,2,45,38,9.0,2538.3296146222115,0.0,1227.8762497623215,0.0,0.0,55825.0,43,12,1,3185,201105382,,,600.0,,2.0,2.0,5.0,0.0,2.0,1.5,1962.0948828268076,0.0,900.0,0.0,0.0,54047.0,1,1,1,120.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3766.205864384533,0.06746450272072607,0.06968390224035623,36031.333333333336,9,5,9,9_1,9_4,9_0_1 -5383,2,34.0,2,0.0,7,111,2,0,47,10.0,0.0,0.0,839.0487706709197,0.0,0.0,28412.0,0,31,2,3186,201105383,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3515.755760851028,0.0,615.0,0.0,0.0,39655.0,0,1,2,51.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,839.0487706709197,0.02953149270276361,0.02115871316784566,39655.0,10,5,10,10_0,10_4,10_0_0 -5384,2,55.0,3,0.0,3,111,2,0,46,8.0,0.0,0.0,520.2053088180996,0.0,1075.2513942456615,27087.0,0,71,2,3187,201105384,,,,,2.0,0.0,3.0,1.0,2.0,1.5,4047.1804729435858,1000.0,0.0,0.0,0.0,38172.0,0,1,3,50.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1595.456703063761,0.05890119625886075,0.04179651847070526,25448.0,8,4,8,8_0,8_4,8_0_1 -5385,2,28.0,2,0.0,6,112,2,62,55,10.0,0.0,180.43042154324718,1757.2273441043,139.0328256648284,0.0,57228.0,50,31,1,3188,201105385,,,,,2.0,0.0,6.0,0.0,2.0,1.5,2420.969565688291,0.0,1288.0,0.0,0.0,77570.0,1,1,2,120.0,8,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2076.6905913123755,0.036288016203822875,0.026771826625143425,51713.333333333336,10,5,10,10_1,10_0,10_0_0 -5386,2,59.0,5,0.0,5,111,2,46,54,3.0,0.0,0.0,1337.02080529675,0.0,0.0,39846.0,50,31,8,3190,201105386,,,,423.0,3.0,0.0,3.0,1.0,3.0,2.0,3006.904522657889,0.0,980.0,0.0,0.0,29010.0,1,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1337.02080529675,0.033554705749554534,0.04608827319189073,14505.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -5387,1,26.0,2,268.0,1,111,4,0,46,8.0,0.0,0.0,1309.734666413143,0.0,0.0,20394.0,0,12,8,3191,201105387,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4209.767126130429,0.0,960.0,0.0,0.0,26227.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1309.734666413143,0.06422156842272939,0.04993840951741118,26227.0,8,4,8,8_0,8_4,8_1_0 -5388,2,47.0,4,0.0,1,111,2,0,65,5.0,0.0,0.0,491.1504999049286,0.0,903.7133668213847,17249.0,0,50,2,3193,201105388,,,240.0,320.0,1.0,3.0,2.0,0.0,1.0,1.0,3033.864568310367,0.0,360.0,520.0,0.0,18862.0,0,1,3,70.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1394.8638667263133,0.08086636133841459,0.073951005552238,18862.0,5,3,5,5_0,5_3,5_1_0 -5389,1,31.0,5,340.0,6,111,2,0,55,5.0,0.0,0.0,988.3900867543892,0.0,2042.9776490667568,20370.0,0,43,2,3194,201105389,,,170.0,32.0,1.0,0.0,3.0,1.0,2.0,1.3,3066.191451011608,1900.0,0.0,0.0,0.0,22270.0,0,1,3,70.0,6,5.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3031.367735821146,0.14881530367310486,0.13611889249309142,17130.76923076923,5,3,5,5_0,5_2,5_0_0 -5390,2,29.0,2,0.0,7,212,5,46,33,7.0,0.0,624.566843803548,2046.460416270536,90.37133668213848,0.0,75446.0,10,10,1,3195,201105390,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1821.335823340186,0.0,1500.0,0.0,0.0,41194.0,1,1,2,100.0,2,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2761.398596756222,0.036600994045492434,0.06703400001835758,22885.555555555555,7,4,7,7_1,7_0,7_0_0 -5391,0,38.0,3,0.0,5,300,2,69,11,2.0,1237.435687128328,0.0,982.3009998098572,406.67101506962314,0.0,41143.0,42,50,1,3197,201105391,,,360.0,,2.0,0.0,6.0,3.0,5.0,2.6,1549.0321687227306,0.0,720.0,0.0,0.0,31095.0,4,1,5,150.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2626.4077020078084,0.06383607665964583,0.0844639878439559,11959.615384615385,2,1,2_0,2_1_0,2_0_0,2_0_0 -5392,2,71.0,2,0.0,1,111,2,72,75,9.0,0.0,0.0,959.1077817587911,0.0,2172.387901012944,29783.0,50,41,1,3198,201105392,,,307.0,,0.0,0.0,5.0,0.0,2.0,1.5,2601.7404636168344,0.0,703.0,1250.0,0.0,46192.0,5,5,1,164.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3131.495682771735,0.10514372906596835,0.06779303088785364,30794.666666666668,9,5,9,9_1,9_3,9_1_0 -5393,2,68.0,1,0.0,6,112,2,86,74,10.0,0.0,229.00784272796759,1528.023777482,4170.984769944853,0.0,62822.0,41,10,1,32,201105393,,,320.0,,0.0,2.0,5.0,0.0,2.0,1.5,3495.063291618568,0.0,1120.0,0.0,0.0,98340.0,6,5,5,130.0,9,1.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,5928.01639015482,0.09436210865866768,0.060280825606618064,65560.0,10,5,10,10_1,10_1,10_0_0 -5394,2,23.0,4,0.0,7,112,2,55,63,7.0,0.0,0.0,491.1504999049286,0.0,957.5885867665057,24395.0,43,60,2,320,201105394,,,312.0,354.0,2.0,0.0,2.0,0.0,2.0,1.5,3090.5085729660964,0.0,360.0,551.0,0.0,36755.0,1,1,3,51.0,9,0.0,3,7,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1448.7390866714343,0.05938672214271098,0.039416109010241715,24503.333333333332,7,4,7,7_0,7_0,7_0_0 -5395,1,52.0,4,48.0,1,112,4,85,68,2.0,0.0,0.0,837.6844637267393,0.0,0.0,46004.0,60,71,1,3203,201105395,,,,,1.0,1.0,4.0,2.0,4.0,2.3,2583.999380556473,0.0,614.0,0.0,0.0,28264.0,4,1,2,105.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,837.6844637267393,0.018208948433326218,0.02963785959972896,12288.695652173914,2,1,2_1,2_1_1,2_0_1,2_1_0 -5396,1,45.0,4,394.0,9,111,2,0,55,2.0,0.0,0.0,436.5782221377143,0.0,1120.952156922679,19053.0,0,50,1,3204,201105396,,,,17.0,1.0,0.0,4.0,2.0,3.0,1.8,1220.4054449685184,0.0,320.0,645.0,0.0,17959.0,0,2,3,80.0,6,4.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1557.5303790603934,0.08174725130217779,0.08672701036028696,9977.222222222223,2,1,2_1,2_1_1,2_2_1,2_0_0 -5397,2,61.0,3,0.0,5,111,2,77,74,8.0,0.0,0.0,682.1534720901786,2259.283417053462,0.0,47241.0,60,41,1,3205,201105397,,,340.0,,0.0,1.0,4.0,0.0,2.0,1.5,2956.345253706885,0.0,500.0,0.0,0.0,39239.0,5,5,1,98.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2941.4368891436407,0.06226449247779769,0.0749620757191478,26159.333333333332,8,4,8,8_1,8_3,8_0_0 -5398,2,63.0,2,0.0,1,112,2,74,75,9.0,2221.038412794435,0.0,382.0059443705,0.0,0.0,62889.0,41,41,1,3207,201105398,,,248.0,,0.0,1.0,6.0,0.0,2.0,1.5,1755.6375947952224,0.0,280.0,0.0,0.0,55402.0,5,5,1,140.0,5,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2603.044357164935,0.04139109156076476,0.04698466404037643,36934.666666666664,9,5,9,9_1,9_0,9_1_0 -5399,2,81.0,3,0.0,7,211,2,86,72,6.0,0.0,0.0,458.40713324460006,0.0,2867.552029337086,17652.0,50,42,1,3209,201105399,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2189.2084499343528,0.0,336.0,1650.0,0.0,28656.0,5,5,1,153.0,3,3.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3325.959162581686,0.18841826209957432,0.11606501823637932,19104.0,5,3,5,5_1,5_1,5_0_0 -5400,2,52.0,4,0.0,6,112,2,85,53,5.0,515.5982029701368,0.0,343.80534993345003,93.84715732375918,0.0,31944.0,60,50,1,321,201105400,,,369.0,,1.0,1.0,6.0,1.0,3.0,2.0,1162.3499632782725,0.0,252.0,0.0,0.0,36607.0,6,1,1,140.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,953.250710227346,0.02984130698182275,0.02604012102131685,18303.5,5,3,5,5_1,5_0,5_0_0 -5401,1,21.0,3,280.0,3,111,1,84,84,1.0,0.0,0.0,225.11064578975893,0.0,0.0,23034.0,41,41,2,3210,201105401,,,,250.0,0.0,0.0,2.0,0.0,2.0,1.5,4299.554232591206,0.0,165.0,0.0,0.0,4946.0,3,3,3,40.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,225.11064578975893,0.009772972379515453,0.045513676868127566,3297.3333333333335,1,1,1_1,1_0_1,1_3_1,1_0_1 -5402,1,70.0,4,269.0,6,111,2,0,75,2.0,0.0,0.0,136.43069441803573,0.0,0.0,23913.0,0,12,1,3212,201105402,,,,,0.0,1.0,1.0,0.0,1.0,1.0,2556.173936554413,0.0,100.0,0.0,0.0,12138.0,0,5,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,136.43069441803573,0.005705293958015964,0.01123996493804875,12138.0,2,1,2_1,2_1_1,2_4_1,2_0_0 -5403,2,60.0,2,0.0,5,112,4,67,78,6.0,0.0,0.0,1118.731694227893,208.54923849724264,0.0,18656.0,71,71,1,3214,201105403,,,120.0,,1.0,2.0,4.0,0.0,2.0,1.5,2844.0070006433507,0.0,820.0,0.0,0.0,28810.0,1,5,1,70.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1327.2809327251357,0.0711449899616818,0.04607014691860936,19206.666666666668,5,3,5,5_1,5_0,5_0_0 -5404,2,29.0,3,0.0,9,111,2,47,52,5.0,0.0,0.0,1773.5990274344645,90.37133668213848,0.0,32987.0,50,50,1,3216,201105404,,,180.0,,2.0,0.0,4.0,2.0,4.0,2.1,1700.6601443264838,0.0,1300.0,0.0,0.0,36646.0,1,1,2,90.0,6,5.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1863.970364116603,0.05650621045007436,0.05086422431142834,17450.47619047619,5,3,5,5_1,5_2,5_0_0 -5405,2,77.0,3,0.0,6,120,4,0,77,2.0,0.0,277.585263912688,2537.6109161754644,312.82385774586396,0.0,24077.0,0,71,1,3217,201105405,,,290.0,,0.0,0.0,5.0,0.0,1.0,1.0,3536.3711559433305,0.0,1860.0,0.0,0.0,10157.0,0,5,1,77.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3128.020037834016,0.12991735007824962,0.30796692309087487,10157.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -5406,1,21.0,2,201.0,2,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,8564.0,0,20,2,3218,201105406,,,,,0.0,0.0,1.0,0.0,1.0,1.0,7779.891909080402,0.0,0.0,0.0,0.0,7177.0,0,3,3,30.0,6,4.0,1,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0.0,0.0,0.0,7177.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -5407,2,40.0,1,0.0,1,111,2,34,31,10.0,0.0,0.0,1800.8851663180715,0.0,0.0,122169.0,10,10,1,3219,201105407,,,1200.0,,2.0,0.0,9.0,6.0,8.0,3.7,758.1009068520959,0.0,1320.0,0.0,0.0,259955.0,1,1,2,270.0,7,5.0,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1800.8851663180715,0.014740934003864085,0.006927680430528636,70258.1081081081,10,5,10,10_1,10_2,10_1_0 -5408,1,31.0,5,257.0,99,111,6,0,55,2.0,0.0,0.0,613.9381248811608,104.27461924862132,0.0,23667.0,0,60,1,3221,201105408,,,,,1.0,0.0,3.0,2.0,3.0,1.6,2278.017134602584,0.0,450.0,0.0,0.0,17366.0,0,4,3,77.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,718.2127441297821,0.030346589940836697,0.04135740781583451,10853.75,2,1,2_1,2_1_1,2_3_1,2_0_0 -5409,2,57.0,1,0.0,7,112,4,38,46,10.0,0.0,0.0,879.6671772114064,0.0,1818.2501076694132,78119.0,12,41,1,3222,201105409,,,,,2.0,2.0,7.0,1.0,3.0,2.0,1716.3220105336468,1691.0,0.0,0.0,0.0,281851.0,1,1,2,175.0,9,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2697.9172848808194,0.03453599361078379,0.009572140190671026,140925.5,10,5,10,10_1,10_0,10_0_0 -5411,2,45.0,2,0.0,6,111,6,43,62,9.0,2696.9752155360998,971.5484236944079,873.1564442754286,152.93610823131127,0.0,49037.0,20,42,1,3224,201105411,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2202.18640639673,0.0,640.0,0.0,0.0,62822.0,1,1,2,120.0,8,6.0,4,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4694.616191737248,0.09573620310657766,0.07472885600167534,29915.238095238095,9,5,9,9_1,9_2,9_0_0 -5412,2,39.0,2,0.0,8,112,4,54,38,8.0,0.0,0.0,1637.1683330164287,83.41969539889705,0.0,48139.0,41,12,1,3225,201105412,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.1,1636.5953478519966,0.0,1200.0,0.0,0.0,57798.0,1,1,2,125.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1720.5880284153259,0.03574208081628879,0.029768989037948126,27522.85714285714,8,4,8,8_1,8_0,8_0_0 -5414,1,41.0,5,454.0,99,111,1,0,81,1.0,0.0,0.0,260.1026544090498,0.0,2219.9228876672546,20406.0,0,71,2,3228,201105414,968.0,968.0,,,1.0,0.0,5.0,5.0,6.0,2.9,3027.8672486443634,500.0,0.0,968.0,0.0,21968.0,0,4,3,92.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2480.025542076304,0.12153413417996198,0.11289264120886308,7575.172413793103,1,1,1_1,1_0_1,1_2_1,1_0_0 -5415,2,65.0,2,0.0,7,400,4,77,74,6.0,0.0,0.0,1611.246501077002,104.27461924862132,0.0,29084.0,42,10,1,3229,201105415,,,299.0,,0.0,1.0,7.0,0.0,2.0,1.5,1937.1412315631999,0.0,1181.0,0.0,0.0,30172.0,6,5,1,200.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1715.5211203256233,0.058985047459965044,0.05685805118406547,20114.666666666668,6,3,6,6_1,6_0,6_0_0 -5416,2,57.0,3,0.0,7,111,4,0,37,10.0,0.0,0.0,311.0619832731214,0.0,0.0,52854.0,0,10,2,323,201105416,,,,,1.0,1.0,3.0,0.0,1.0,1.0,3325.200048833478,0.0,228.0,0.0,0.0,38300.0,0,1,1,70.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,311.0619832731214,0.005885306377438253,0.008121722800864789,38300.0,10,5,10,10_0,10_3,10_0_0 -5417,2,93.0,4,0.0,1,111,2,0,77,5.0,2696.9752155360998,0.0,491.1504999049286,0.0,278.0656513296568,24003.0,0,70,1,3230,201105417,,,150.0,,0.0,2.0,5.0,0.0,1.0,1.0,2691.8454600607915,0.0,360.0,160.0,0.0,17250.0,0,5,1,58.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3466.191366770685,0.14440658945842957,0.20093862995772085,17250.0,5,3,5,5_1,5_4,5_1_0 -5418,2,36.0,1,0.0,4,111,1,37,38,10.0,0.0,0.0,955.0148609262501,0.0,0.0,120449.0,10,10,2,3231,201105418,,,,1100.0,2.0,0.0,4.0,1.0,3.0,1.8,3544.2085508209584,0.0,700.0,0.0,0.0,98072.0,1,1,3,85.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,955.0148609262501,0.007928790284072514,0.009737895229283079,54484.444444444445,10,5,10,10_0,10_4,10_0_1 -5419,2,40.0,2,0.0,99,111,2,52,48,7.0,0.0,0.0,750.3688192991965,0.0,0.0,40321.0,50,50,1,3232,201105419,,,350.0,,2.0,0.0,4.0,2.0,4.0,2.1,2508.4497164007594,0.0,550.0,0.0,0.0,46675.0,1,1,2,130.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,750.3688192991965,0.018609876225768124,0.01607646104551037,22226.190476190477,7,4,7,7_1,7_4,7_0_0 -5420,2,59.0,2,0.0,5,300,4,55,21,7.0,0.0,0.0,1081.8954067350232,0.0,0.0,45930.0,70,70,1,3233,201105420,,,375.0,,3.0,0.0,4.0,1.0,3.0,2.0,691.5812160522004,0.0,793.0,0.0,0.0,48896.0,1,1,1,137.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1081.8954067350232,0.023555310401372157,0.0221264603798884,24448.0,7,4,7,7_1,7_0,7_0_0 -5421,2,75.0,3,0.0,4,120,2,0,71,2.0,1346.901151758911,0.0,564.823074890668,151.1981979105009,0.0,10202.0,0,71,1,3234,201105421,,,183.0,,0.0,7.0,5.0,0.0,1.0,1.0,3016.206536847871,0.0,414.0,0.0,0.0,11780.0,0,5,1,80.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2062.92242456008,0.2022076479670731,0.1751207491137589,11780.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -5422,2,31.0,3,0.0,9,300,2,63,62,6.0,0.0,0.0,1624.8895705188054,52.13730962431066,0.0,16420.0,70,60,1,3235,201105422,,,245.0,,2.0,0.0,5.0,1.0,3.0,1.8,1820.7959780506353,0.0,1191.0,0.0,0.0,35046.0,1,1,2,96.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1677.0268801431162,0.10213318393076225,0.04785216230505952,19470.0,6,3,6,6_1,6_0,6_0_0 -5423,2,28.0,3,0.0,9,300,2,52,38,7.0,0.0,0.0,1732.6698191090536,0.0,0.0,36267.0,50,44,1,3236,201105423,,,302.0,,2.0,0.0,5.0,2.0,4.0,2.1,1066.2053320687673,0.0,1270.0,0.0,0.0,46673.0,1,1,2,140.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1732.6698191090536,0.04777538310610344,0.03712360077794557,22225.238095238095,7,4,7,7_1,7_0,7_0_0 -5424,2,60.0,3,0.0,6,111,2,77,78,4.0,0.0,0.0,613.9381248811608,0.0,1671.8697286195618,23635.0,70,50,1,3237,201105424,,,142.0,,0.0,3.0,4.0,0.0,2.0,1.5,1033.3838600542208,0.0,450.0,962.0,0.0,22444.0,6,5,1,125.0,7,5.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2285.8078535007226,0.09671283492704559,0.1018449408973767,14962.666666666666,4,2,4_0,4_1_0,4_2_0,4_0_0 -5425,2,67.0,2,0.0,1,112,2,0,77,7.0,2221.038412794435,624.566843803548,1199.225803934534,152.93610823131127,0.0,32708.0,0,70,1,3239,201105425,,,,,1.0,6.0,5.0,1.0,2.0,1.5,1766.1839969068749,0.0,879.0,0.0,0.0,32975.0,0,5,1,81.0,6,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4197.7671687638285,0.1283406863386275,0.1273015062551578,21983.333333333332,7,4,7,7_1,7_0,7_1_0 -5426,2,71.0,1,0.0,1,111,2,77,74,10.0,0.0,0.0,477.50743046312505,0.0,2693.760997256051,53750.0,41,12,1,324,201105426,,,335.0,,0.0,3.0,5.0,0.0,2.0,1.5,2034.9269412916199,0.0,350.0,1550.0,0.0,85486.0,6,5,1,89.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3171.2684277191756,0.05900034284128699,0.03709693315536083,56990.666666666664,10,5,10,10_1,10_4,10_1_0 -5427,1,44.0,5,30.0,4,111,1,85,65,3.0,0.0,0.0,218.28911106885715,0.0,260.6865481215533,24225.0,31,60,2,3240,201105427,,,,226.0,1.0,1.0,3.0,1.0,3.0,1.8,4287.650751043158,0.0,160.0,150.0,0.0,24792.0,6,1,3,70.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,478.97565919041045,0.019771957035723858,0.019319766827622237,13773.333333333332,3,2,3_1,3_0_1,3_3_1,3_0_1 -5428,2,40.0,2,0.0,8,111,2,52,67,7.0,0.0,0.0,1850.0002163085644,140.77073598563877,0.0,32470.0,50,71,1,3241,201105428,,,460.0,,3.0,0.0,4.0,2.0,4.0,2.5,2957.877944537268,0.0,1356.0,0.0,0.0,56206.0,1,1,2,90.0,6,5.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1990.7709522942032,0.06131108568814916,0.035419189273284045,22482.4,7,4,7,7_1,7_2,7_0_0 -5429,2,84.0,3,0.0,2,111,1,0,75,9.0,0.0,0.0,704.0623101875898,0.0,2968.2490136549063,16466.0,0,70,2,3245,201105429,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2861.776219870092,724.0,240.0,1260.0,0.0,30755.0,0,5,1,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3672.311323842496,0.22302388703039575,0.11940534299601678,30755.0,9,5,9,9_0,9_4,9_0_1 -5430,2,44.0,4,0.0,1,400,6,0,68,2.0,412.4785623761094,0.0,491.1504999049286,173.79103208103552,0.0,19863.0,0,50,1,3246,201105430,,,163.0,,1.0,0.0,3.0,2.0,3.0,1.6,2580.7573357316915,0.0,360.0,0.0,0.0,16080.0,0,4,1,60.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1077.4200943620735,0.054242566297239767,0.06700373721157174,10050.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -5431,2,88.0,3,0.0,6,111,2,72,72,5.0,0.0,0.0,163.71683330164288,0.0,1338.1909470239734,18213.0,70,70,2,3247,201105431,,,,,0.0,1.0,4.0,0.0,2.0,1.5,3109.1746947288293,0.0,120.0,770.0,0.0,26420.0,5,5,1,85.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1501.9077803256164,0.08246350301024633,0.056847380027464665,17613.333333333332,5,3,5,5_0,5_2,5_0_0 -5432,1,58.0,4,40.0,5,111,1,85,63,3.0,0.0,0.0,654.8673332065715,0.0,469.23578661879594,24695.0,50,50,2,3248,201105432,,,300.0,250.0,1.0,1.0,4.0,3.0,5.0,2.4,1813.9794566109406,0.0,480.0,270.0,0.0,35062.0,6,1,3,70.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1124.1031198253675,0.04551946223224813,0.03206043921696901,14609.166666666668,3,2,3_1,3_0_1,3_3_1,3_0_0 -5433,2,56.0,3,0.0,6,111,6,56,78,5.0,0.0,0.0,4738.238017138381,0.0,613.4823432460554,31643.0,50,70,1,3250,201105433,,,508.0,,1.0,3.0,5.0,0.0,2.0,1.5,1745.6422097099764,0.0,3473.0,353.0,0.0,26486.0,1,5,1,90.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5351.720360384436,0.16912809658959127,0.2020584595780577,17657.333333333332,5,3,5,5_1,5_3,5_0_0 -5434,2,48.0,3,0.0,1,111,4,0,54,7.0,0.0,0.0,622.1239665462429,0.0,0.0,10224.0,0,50,2,3252,201105434,,,,520.0,1.0,0.0,2.0,0.0,1.0,1.0,2682.3886654956987,0.0,456.0,0.0,0.0,23800.0,0,1,3,60.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,622.1239665462429,0.06084937074982814,0.02613966245992617,23800.0,7,4,7,7_0,7_3,7_1_0 -5435,2,55.0,4,0.0,5,221,5,0,55,2.0,0.0,0.0,1146.0178331115,86.89551604051776,0.0,6370.0,0,60,1,3253,201105435,,,,,1.0,1.0,4.0,0.0,1.0,1.0,2003.2674810575566,0.0,840.0,0.0,0.0,9587.0,0,1,1,80.0,1,3.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1232.9133491520179,0.1935499763189981,0.12860262325566058,9587.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -5436,1,67.0,3,133.0,99,111,1,77,77,4.0,0.0,0.0,145.98084302729822,0.0,688.2124870409007,27118.0,50,71,2,3254,201105436,,,,315.0,1.0,5.0,3.0,1.0,3.0,2.0,2498.0323174912173,0.0,107.0,396.0,0.0,31864.0,5,5,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,834.1933300681989,0.03076160963449365,0.02617980573902206,15932.0,4,2,4_1,4_0_1,4_4_1,4_0_0 -5437,1,73.0,4,46.0,4,111,1,85,78,3.0,0.0,0.0,395.6490138123036,0.0,314.5617680666743,19911.0,50,71,2,3255,201105437,,,,265.0,2.0,2.0,4.0,3.0,5.0,3.0,3093.6132823431326,0.0,290.0,181.0,0.0,43372.0,6,5,3,77.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,710.210781878978,0.035669267333583346,0.016374868161001983,14457.333333333334,3,2,3_1,3_0_1,3_4_1,3_0_1 -5438,2,59.0,2,0.0,5,212,2,75,47,7.0,1427.810408224994,0.0,2155.6049718049644,0.0,0.0,27727.0,50,70,1,3256,201105438,,,250.0,,1.0,2.0,5.0,0.0,2.0,1.5,1429.0817574769894,0.0,1580.0,0.0,0.0,36640.0,5,1,1,120.0,2,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3583.415380029958,0.12923920294406024,0.09780063810125432,24426.666666666668,7,4,7,7_1,7_0,7_0_0 -5439,2,46.0,4,0.0,8,111,2,67,52,3.0,0.0,0.0,1159.6609025533037,0.0,0.0,27959.0,71,50,2,3257,201105439,,,312.0,484.0,2.0,1.0,4.0,1.0,3.0,2.0,3876.6559294034655,0.0,850.0,0.0,0.0,28898.0,4,1,3,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1159.6609025533037,0.0414771952699776,0.040129451953536704,14449.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -5440,2,59.0,3,0.0,1,111,2,42,34,10.0,0.0,0.0,1024.4088716813824,0.0,2806.961648307601,50822.0,10,10,1,3258,201105440,,,243.0,,2.0,3.0,7.0,0.0,2.0,1.5,1087.8393496460658,435.0,585.0,1346.0,0.0,61002.0,1,1,1,150.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3831.3705199889837,0.07538803116738782,0.06280729353117903,40668.0,10,5,10,10_1,10_2,10_1_0 -5441,2,74.0,2,0.0,5,112,2,77,78,3.0,2869.8989205322378,0.0,579.8304512766518,156.41192887293198,0.0,12477.0,70,50,1,3259,201105441,,,186.0,,0.0,2.0,4.0,0.0,2.0,1.5,1944.8772516949878,0.0,425.0,0.0,0.0,19320.0,5,5,1,79.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3606.1413006818216,0.2890231065706357,0.1866532764328065,12880.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -5442,2,80.0,2,0.0,3,112,2,72,72,6.0,0.0,0.0,955.0148609262501,0.0,2780.6565132965684,21222.0,50,50,1,326,201105442,,,330.0,,1.0,0.0,5.0,1.0,3.0,2.0,3319.56412237985,0.0,700.0,1600.0,0.0,41458.0,5,5,1,75.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3735.6713742228185,0.17602824306016485,0.09010737069378211,20729.0,6,3,6,6_1,6_1,6_0_1 -5443,1,65.0,3,42.0,7,112,4,0,77,7.0,47.593680274166466,0.0,777.6549581828036,24.330744491344973,0.0,34203.0,0,70,1,3262,201105443,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4057.2843758573313,0.0,570.0,0.0,0.0,22574.0,0,5,3,82.0,8,3.0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,849.579382948315,0.024839323537359737,0.03763530534899951,22574.0,7,4,7,7_1,7_1,7_0_0 -5444,1,62.0,4,183.0,1,111,2,78,78,2.0,0.0,0.0,351.99119159853217,0.0,396.243553144761,21539.0,71,71,2,3263,201105444,,,,,0.0,1.0,2.0,0.0,2.0,1.5,3134.4152554517136,0.0,258.0,228.0,0.0,15161.0,5,5,3,45.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,748.2347447432932,0.034738601826607235,0.04935259842644239,10107.333333333334,2,1,2_1,2_0_1,2_2_1,2_1_0 -5445,2,32.0,3,0.0,5,221,2,22,22,1.0,0.0,0.0,1364.3069441803573,0.0,0.0,25700.0,41,10,2,3265,201105445,,,450.0,740.0,2.0,0.0,3.0,1.0,3.0,1.8,3918.51680434173,0.0,1000.0,0.0,0.0,14239.0,1,1,3,55.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1364.3069441803573,0.05308587331441079,0.09581480049022806,7910.555555555556,1,1,1_0,1_0_0,1_1_0,1_0_0 -5446,2,63.0,3,0.0,5,112,2,77,78,6.0,0.0,0.0,716.2611456946876,0.0,1871.7294155127527,34595.0,50,50,1,3267,201105446,,,288.0,,0.0,2.0,6.0,0.0,2.0,1.5,1480.2799175696673,0.0,525.0,1077.0,0.0,32323.0,5,5,1,140.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2587.9905612074404,0.07480822550100999,0.08006653346556447,21548.666666666668,6,3,6,6_1,6_1,6_0_0 -5447,2,65.0,2,0.0,1,112,2,75,75,10.0,0.0,0.0,1049.1520400746947,0.0,2942.2821731319314,69120.0,42,31,1,3268,201105447,,,362.0,,0.0,1.0,7.0,0.0,2.0,1.5,3889.0579581738994,0.0,769.0,1693.0,0.0,56232.0,5,5,1,133.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3991.434213206626,0.05774644405680882,0.07098154455126308,37488.0,10,5,10,10_1,10_0,10_1_0 -5448,2,39.0,3,0.0,1,111,2,0,65,1.0,0.0,0.0,545.7227776721429,0.0,0.0,12956.0,0,50,2,327,201105448,,,220.0,400.0,1.0,0.0,2.0,0.0,1.0,1.0,3339.6414799208324,0.0,400.0,0.0,0.0,5610.0,0,4,3,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,545.7227776721429,0.04212123940044326,0.0972767874638401,5610.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -5449,2,65.0,3,0.0,6,211,2,0,77,5.0,0.0,0.0,390.1917860355822,0.0,695.1641283241421,17747.0,0,70,2,3271,201105449,,,,453.0,0.0,2.0,3.0,0.0,1.0,1.0,2188.927906134064,0.0,286.0,400.0,0.0,18840.0,0,5,3,86.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1085.3559143597242,0.061157148496068306,0.057609124966015085,18840.0,5,3,5,5_0,5_1,5_0_0 -5450,2,60.0,4,0.0,4,400,4,0,55,7.0,0.0,0.0,377.91302353795896,45.18566834106924,0.0,13757.0,0,70,1,3273,201105450,,,84.0,,1.0,0.0,4.0,0.0,1.0,1.0,1483.7151823130844,0.0,277.0,0.0,0.0,24546.0,0,5,3,70.0,0,1.0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,423.0986918790282,0.030755156784111958,0.017236971069788488,24546.0,7,4,7,7_1,7_1,7_0_1 -5451,2,48.0,3,0.0,5,111,2,85,68,6.0,0.0,0.0,664.417481815834,218.97670042210476,0.0,40195.0,50,71,2,3275,201105451,,,265.0,346.0,1.0,3.0,4.0,0.0,2.0,1.5,4374.617947605264,0.0,487.0,0.0,0.0,30931.0,6,1,3,66.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,883.3941822379387,0.021977713204078583,0.028560155903072603,20620.666666666668,6,3,6,6_0,6_2,6_0_0 -5452,2,94.0,1,0.0,1,112,2,0,75,8.0,0.0,0.0,136.43069441803573,0.0,1129.641708526731,10365.0,0,50,1,3276,201105452,,,180.0,,0.0,0.0,3.0,0.0,1.0,1.0,2389.132821934647,0.0,100.0,650.0,0.0,27619.0,0,5,1,70.0,5,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1266.0724029447667,0.12214880877421773,0.04584063155598562,27619.0,8,4,8,8_1,8_0,8_1_0 -5453,2,30.0,2,0.0,7,111,4,0,34,7.0,0.0,0.0,682.1534720901786,0.0,0.0,21201.0,0,20,2,3277,201105453,,,,610.0,1.0,0.0,2.0,0.0,1.0,1.0,4363.981536565815,0.0,500.0,0.0,0.0,23944.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,682.1534720901786,0.03217553285647746,0.028489536923245014,23944.0,7,4,7,7_0,7_4,7_0_0 -5454,2,64.0,2,0.0,5,120,4,74,74,9.0,0.0,346.98157989085996,1593.5105108026573,26.06865481215533,0.0,48075.0,41,50,1,3278,201105454,,,216.0,,0.0,3.0,6.0,0.0,2.0,1.5,3244.898504479038,0.0,1168.0,0.0,0.0,45500.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1966.5607455056725,0.040906099750508004,0.043221115285838954,30333.333333333332,9,5,9,9_1,9_0,9_0_0 -5455,2,85.0,2,0.0,1,111,2,0,86,2.0,263.35169751705445,0.0,620.6049334199929,0.0,1282.774913335074,17933.0,0,71,1,3279,201105455,,,58.0,,0.0,5.0,4.0,0.0,1.0,1.0,2155.1329300622515,1193.0,0.0,0.0,0.0,10839.0,0,6,5,60.0,7,5.0,1,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2166.731544272121,0.12082370737032962,0.19990142487979712,10839.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -5456,2,53.0,3,0.0,1,111,2,0,45,5.0,0.0,0.0,1000.0369900842019,0.0,0.0,26978.0,0,50,2,328,201105456,,,240.0,537.0,1.0,0.0,3.0,1.0,2.0,1.5,3510.745044968611,0.0,733.0,0.0,0.0,25664.0,0,1,3,87.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1000.0369900842019,0.037068611093639334,0.038966528603655,17109.333333333332,5,3,5,5_0,5_3,5_1_0 -5457,2,73.0,1,0.0,3,111,2,0,74,10.0,0.0,0.0,422.93515269591074,0.0,1616.2565983536304,51634.0,0,12,2,3280,201105457,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2339.918535196796,0.0,310.0,930.0,0.0,128359.0,0,5,1,89.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2039.1917510495412,0.03949319733217534,0.01588662852662876,128359.0,10,5,10,10_0,10_4,10_0_1 -5458,2,44.0,2,0.0,2,111,2,0,54,5.0,0.0,0.0,402.4705485332054,0.0,2334.013560848307,16626.0,0,50,1,3281,201105458,,,280.0,,1.0,0.0,4.0,1.0,2.0,1.3,1827.1443149951763,0.0,295.0,1343.0,0.0,24657.0,0,1,2,84.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2736.484109381512,0.16459064774338458,0.11098203793573883,18966.923076923078,5,3,5,5_1,5_3,5_0_1 -5459,1,40.0,1,31.0,4,111,2,0,55,3.0,0.0,0.0,368.36287492869644,0.0,1098.3593227521444,14250.0,0,43,2,3282,201105459,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3433.3566498034747,0.0,270.0,632.0,0.0,14389.0,0,1,2,80.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1466.722197680841,0.10292787352146253,0.10193357409693801,14389.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -5460,1,41.0,2,72.0,4,111,1,0,64,3.0,0.0,0.0,291.96168605459644,0.0,159.8877495145527,19038.0,0,50,2,3284,201105460,,,,162.0,1.0,0.0,3.0,1.0,2.0,1.5,2469.76834833758,0.0,214.0,92.0,0.0,20778.0,0,1,3,85.0,6,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,451.84943556914914,0.023734081078324885,0.021746531695502412,13852.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -5461,2,46.0,3,0.0,1,221,6,0,64,6.0,0.0,0.0,1543.0311538679841,111.22626053186274,0.0,10007.0,0,50,2,3287,201105461,,,,250.0,1.0,0.0,1.0,0.0,1.0,1.0,5070.374054836608,0.0,1131.0,0.0,0.0,20680.0,0,1,3,35.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1654.2574143998468,0.16531002442288867,0.07999310514506029,20680.0,6,3,6,6_0,6_1,6_1_0 -5462,0,43.0,2,0.0,7,111,2,43,34,10.0,0.0,0.0,0.0,0.0,0.0,108278.0,30,20,2,3288,201105462,,,,,2.0,0.0,5.0,4.0,6.0,2.7,2085.1825051377923,0.0,0.0,0.0,0.0,102481.0,1,1,5,130.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,37955.92592592593,10,5,10,10_0,10_4,10_0_0 -5463,2,53.0,2,0.0,6,300,2,45,38,9.0,3014.2664173638764,0.0,1227.8762497623215,0.0,0.0,47929.0,41,31,1,3289,201105463,,,350.0,,2.0,1.0,6.0,2.0,4.0,2.5,1386.0483197612434,0.0,900.0,0.0,0.0,73857.0,1,1,1,100.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4242.142667126198,0.08850889163400442,0.057437245855182284,29542.8,9,5,9,9_1,9_0,9_0_0 -5464,2,66.0,2,0.0,8,111,4,0,74,9.0,0.0,166.55115834761278,1422.9721427801126,0.0,0.0,22391.0,0,31,1,329,201105464,,,383.0,,0.0,1.0,3.0,0.0,1.0,1.0,2316.2983173501175,0.0,1043.0,0.0,0.0,35163.0,0,5,1,110.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1589.5233011277253,0.07098938417791636,0.04520442798190499,35163.0,9,5,9,9_1,9_3,9_0_0 -5465,2,56.0,4,0.0,5,111,1,0,47,6.0,0.0,0.0,641.2242637647679,0.0,130.34327406077665,21304.0,0,50,2,3290,201105465,,,,,1.0,3.0,6.0,0.0,1.0,1.0,3076.5809732093558,0.0,470.0,75.0,0.0,19712.0,0,1,2,130.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,771.5675378255446,0.03621702674735001,0.03914202200819524,19712.0,6,3,6,6_0,6_3,6_0_0 -5466,2,77.0,2,0.0,4,112,2,0,71,10.0,2303.534125269657,333.10231669522557,1047.7877331305144,187.69431464751835,0.0,27237.0,0,70,1,3292,201105466,,,341.0,,0.0,3.0,5.0,0.0,1.0,1.0,2155.5311399265015,0.0,768.0,0.0,0.0,38589.0,0,5,5,100.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3872.1184897429152,0.14216391268285478,0.10034254553740483,38589.0,10,5,10,10_1,10_0,10_0_1 -5467,1,41.0,5,250.0,2,111,2,0,21,1.0,0.0,0.0,163.71683330164288,0.0,1390.3282566482842,12219.0,0,30,2,3293,201105467,,,,230.0,1.0,0.0,2.0,0.0,1.0,1.0,3659.426988975299,0.0,120.0,800.0,0.0,4358.0,0,1,3,55.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1554.0450899499272,0.1271826737007879,0.35659593619778046,4358.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -5468,2,63.0,1,0.0,4,111,2,77,72,8.0,0.0,62.456684380354794,538.9012429512411,0.0,1760.5031549808898,28541.0,50,43,1,3294,201105468,,,271.0,,0.0,2.0,5.0,0.0,2.0,1.5,1258.9930210194418,0.0,395.0,1013.0,0.0,39982.0,5,5,1,95.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2361.8610823124855,0.08275327011360799,0.05907310995729292,26654.666666666668,8,4,8,8_1,8_2,8_0_1 -5469,2,28.0,2,0.0,1,111,4,0,38,9.0,0.0,0.0,875.8850581637894,0.0,156.41192887293198,19508.0,0,12,8,3295,201105469,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3534.903669586187,0.0,642.0,90.0,0.0,31529.0,0,1,2,57.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1032.2969870367215,0.052916597654127616,0.03274119023872376,31529.0,9,5,9,9_0,9_3,9_1_0 -5470,2,41.0,3,0.0,1,120,2,62,34,7.0,1310.4126635487166,0.0,1391.5930830639643,0.0,0.0,74897.0,42,12,1,3296,201105470,,,265.0,,2.0,0.0,4.0,3.0,5.0,2.4,1199.3193920673718,0.0,1020.0,0.0,0.0,52571.0,1,1,2,100.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2702.005746612681,0.03607628805710083,0.05139726744046491,21904.583333333336,7,4,7,7_1,7_0,7_1_0 -5471,2,49.0,2,0.0,5,211,4,42,43,10.0,0.0,277.585263912688,1500.737638598393,0.0,0.0,53790.0,41,50,1,3297,201105471,,,270.0,,2.0,2.0,4.0,0.0,2.0,1.5,3442.436257593905,0.0,1100.0,0.0,0.0,64370.0,1,1,1,100.0,3,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1778.3229025110809,0.033060474112494534,0.02762657919078889,42913.333333333336,10,5,10,10_1,10_1,10_0_0 -5472,2,55.0,3,0.0,5,111,1,56,63,7.0,0.0,0.0,1064.1594164606786,0.0,834.1969539889706,32089.0,70,60,2,3298,201105472,,,,,4.0,0.0,4.0,4.0,6.0,3.5,1072.5820258986228,0.0,780.0,480.0,0.0,77140.0,4,1,2,79.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1898.3563704496491,0.05915910032876217,0.02460923477378337,22040.0,7,4,7,7_0,7_4,7_0_0 -5473,2,30.0,2,0.0,6,111,4,0,34,7.0,0.0,0.0,613.9381248811608,0.0,0.0,13529.0,0,10,2,3299,201105473,,,,366.0,1.0,0.0,1.0,0.0,1.0,1.0,3027.312082152899,0.0,450.0,0.0,0.0,22270.0,0,1,3,30.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,613.9381248811608,0.04537941642997714,0.027567944538893614,22270.0,7,4,7,7_0,7_3,7_0_0 -5474,2,57.0,4,0.0,99,112,2,0,52,9.0,0.0,0.0,3105.2698005648867,0.0,7441.595443530787,66732.0,0,50,1,330,201105474,,,,,1.0,2.0,6.0,0.0,1.0,1.0,1526.9357387592352,4658.0,500.0,1400.0,0.0,37070.0,0,1,1,180.0,9,0.0,1,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,10546.865244095674,0.15804809153173402,0.2845121457808383,37070.0,9,5,9,9_1,9_0,9_0_0 -5475,2,76.0,2,0.0,1,111,4,0,77,5.0,0.0,0.0,311.0619832731214,0.0,0.0,6074.0,0,60,2,3301,201105475,,,259.0,,0.0,2.0,2.0,0.0,1.0,1.0,4421.706591456032,0.0,228.0,0.0,0.0,18640.0,0,5,3,50.0,4,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,311.0619832731214,0.05121204861263112,0.016687874639115956,18640.0,5,3,5,5_0,5_1,5_1_0 -5476,2,21.0,3,0.0,6,111,4,0,63,7.0,0.0,0.0,1637.1683330164287,0.0,0.0,56040.0,0,43,2,3302,201105476,,,300.0,,4.0,1.0,3.0,1.0,4.0,2.5,3729.27456330297,0.0,1200.0,0.0,0.0,60758.0,0,1,1,60.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1637.1683330164287,0.029214281459964825,0.026945724563290904,24303.2,7,4,7,7_0,7_4,7_0_0 -5477,2,84.0,9,0.0,1,400,2,0,74,6.0,4978.298956677812,0.0,1882.743582968893,172.05312176022517,0.0,42926.0,0,42,1,3303,201105477,,,360.0,,0.0,2.0,10.0,0.0,1.0,1.0,2822.2288390498065,0.0,1380.0,0.0,0.0,21167.0,0,5,5,200.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,7033.095661406931,0.1638423254299709,0.332267003420746,21167.0,6,3,6,6_1,6_0,6_1_0 -5478,2,54.0,1,0.0,1,111,1,85,33,9.0,0.0,0.0,545.7227776721429,0.0,347.58206416207105,55109.0,60,71,2,3304,201105478,,,,,2.0,2.0,5.0,1.0,3.0,2.0,2518.4332735302255,0.0,400.0,200.0,0.0,68040.0,5,1,2,150.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,893.3048418342139,0.016209781375713838,0.013129112901737417,34020.0,9,5,9,9_0,9_3,9_1_0 -5479,2,70.0,3,0.0,1,111,2,0,56,8.0,0.0,0.0,433.8496082493536,0.0,1390.3282566482842,12936.0,0,70,1,3305,201105479,,,150.0,,1.0,2.0,4.0,0.0,1.0,1.0,1171.8793077754447,0.0,318.0,800.0,0.0,25350.0,0,5,1,90.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1824.1778648976378,0.14101560489313836,0.07195967908866421,25350.0,8,4,8,8_1,8_2,8_1_0 -5480,2,63.0,1,0.0,5,111,2,75,75,9.0,0.0,0.0,1088.6306670277022,0.0,2719.939551984695,45788.0,60,41,1,3306,201105480,,,185.0,,0.0,2.0,6.0,0.0,2.0,1.5,2677.201291177182,1062.0,393.0,908.0,0.0,46659.0,5,5,1,120.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3808.570219012397,0.08317834845401409,0.08162562890358553,31106.0,9,5,9,9_1,9_3,9_0_0 -5481,2,39.0,3,0.0,9,400,2,54,63,4.0,0.0,0.0,1005.4942178609233,199.85968689319085,0.0,34075.0,71,43,1,3307,201105481,,,247.0,,2.0,0.0,4.0,4.0,6.0,3.1,4628.653568619504,0.0,737.0,0.0,0.0,46708.0,1,1,2,100.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1205.3539047541142,0.03537355553203563,0.025806155364265525,15067.096774193547,4,2,4_0,4_1_0,4_0_0,4_0_0 -5482,2,50.0,2,0.0,1,111,6,0,54,8.0,0.0,0.0,1036.8732775770716,0.0,139.0328256648284,19674.0,0,31,2,331,201105482,,,,505.0,1.0,0.0,1.0,0.0,1.0,1.0,3631.1510215922654,0.0,760.0,80.0,0.0,26063.0,0,1,3,27.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1175.9061032419,0.059769548807659854,0.04511783383501131,26063.0,8,4,8,8_0,8_4,8_1_0 -5483,2,85.0,3,0.0,1,111,1,0,75,8.0,0.0,0.0,382.0059443705,0.0,0.0,24284.0,0,70,2,3310,201105483,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2624.4483389660177,0.0,280.0,0.0,0.0,28800.0,0,5,1,72.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,382.0059443705,0.01573076693998106,0.013264095290642361,28800.0,8,4,8,8_0,8_3,8_1_0 -5484,2,76.0,3,0.0,1,111,2,78,78,5.0,0.0,0.0,504.79356934673217,0.0,3275.9609547275195,19331.0,70,50,1,3312,201105484,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1265.2654265187844,0.0,370.0,1885.0,0.0,25753.0,5,5,1,90.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3780.7545240742515,0.1955798729540247,0.14680831452934615,17168.666666666668,5,3,5,5_1,5_2,5_1_0 -5485,2,48.0,3,0.0,7,111,1,0,55,5.0,0.0,0.0,477.50743046312505,0.0,521.3730962431066,16626.0,0,50,2,3313,201105485,,,170.0,350.0,2.0,2.0,5.0,1.0,2.0,1.5,3800.25576470891,0.0,350.0,300.0,0.0,25603.0,0,4,3,80.0,6,5.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,998.8805267062316,0.06007942540035075,0.039014198598063966,17068.666666666668,5,3,5,5_0,5_2,5_0_0 -5486,1,39.0,3,413.0,1,111,2,63,62,4.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,12205.0,50,44,2,3315,201105486,,,180.0,137.0,2.0,3.0,3.0,0.0,2.0,1.5,2063.958783042598,400.0,0.0,0.0,0.0,25036.0,1,4,3,80.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,638.1826812255044,0.05228862607337193,0.025490600783891374,16690.666666666668,4,2,4_1,4_0_1,4_2_1,4_1_0 -5487,1,43.0,3,190.0,2,111,1,0,85,2.0,0.0,0.0,245.5752499524643,0.0,291.9689338961397,9869.0,0,71,2,3317,201105487,,,150.0,,0.0,0.0,2.0,0.0,1.0,1.0,3021.374012051643,0.0,180.0,168.0,0.0,12295.0,0,7,3,38.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,537.544183848604,0.054467948510345934,0.04372055175669817,12295.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -5488,2,56.0,3,0.0,1,111,2,68,52,6.0,3172.912018277764,166.55115834761278,818.5841665082144,0.0,0.0,24161.0,50,50,1,3318,201105488,,,450.0,,2.0,2.0,5.0,0.0,2.0,1.5,869.673734291981,0.0,600.0,0.0,0.0,31963.0,1,1,1,90.0,6,5.0,3,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4158.047343133591,0.17209748533312327,0.1300893953362823,21308.666666666668,6,3,6,6_1,6_2,6_1_0 -5489,1,22.0,1,172.0,7,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,11479.0,0,20,8,3319,201105489,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2819.985687807714,0.0,0.0,0.0,0.0,8111.0,0,3,3,21.0,9,7.0,1,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,8111.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -5490,1,59.0,4,200.0,4,111,3,0,78,1.0,0.0,0.0,1113.2744664511715,0.0,86.89551604051776,8121.0,0,50,2,332,201105490,480.0,480.0,50.0,115.0,0.0,2.0,3.0,0.0,1.0,1.0,3095.102316657215,0.0,816.0,50.0,0.0,5570.0,0,7,3,80.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1200.1699824916893,0.14778598479148988,0.21547037387642537,5570.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -5491,2,80.0,3,0.0,2,111,2,74,74,9.0,0.0,0.0,2734.791138922568,0.0,5423.100916599604,80104.0,12,20,1,3320,201105491,,,250.0,,0.0,2.0,5.0,0.0,4.0,2.5,1053.3146887616485,1811.0,1314.0,2000.0,0.0,81272.0,5,5,1,180.0,8,7.0,5,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,8157.892055522172,0.10184125705984935,0.10037764612070789,32508.8,9,5,9,9_1,9_3,9_0_1 -5492,2,67.0,2,0.0,5,300,4,75,74,9.0,0.0,0.0,2361.6153203761983,0.0,0.0,40859.0,41,31,1,3324,201105492,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2290.618218403288,0.0,1731.0,0.0,0.0,50694.0,5,5,1,150.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2361.6153203761983,0.057799146341716595,0.04658569693407895,33796.0,9,5,9,9_1,9_0,9_0_0 -5493,2,55.0,1,0.0,1,111,2,0,67,10.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,11764.0,0,50,1,3328,201105493,,,,,1.0,2.0,4.0,0.0,1.0,1.0,1490.399708202154,400.0,0.0,0.0,0.0,40179.0,0,1,3,67.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,638.1826812255044,0.054248782831137744,0.0158834884199583,40179.0,10,5,10,10_1,10_3,10_1_0 -5494,2,39.0,3,0.0,1,300,2,55,62,4.0,2062.392811880547,693.9631597817199,654.8673332065715,0.0,0.0,56466.0,41,31,1,3329,201105494,,,240.0,,2.0,0.0,6.0,2.0,4.0,2.3,1311.6279885710494,0.0,480.0,0.0,0.0,38168.0,1,1,2,90.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3411.223304868838,0.060411987831063614,0.08937390758931142,16594.782608695652,4,2,4_0,4_1_0,4_0_0,4_1_0 -5495,2,65.0,2,0.0,6,111,2,0,75,8.0,0.0,0.0,581.1947582208322,0.0,1433.776014668543,20593.0,0,31,1,3332,201105495,,,340.0,,0.0,0.0,4.0,0.0,1.0,1.0,1948.339447696177,0.0,426.0,825.0,0.0,25651.0,0,5,1,85.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2014.9707728893752,0.09784736429317609,0.07855330290785448,25651.0,8,4,8,8_1,8_2,8_0_0 -5496,2,75.0,2,0.0,1,111,2,0,77,8.0,0.0,0.0,327.43366660328576,0.0,868.9551604051776,15973.0,0,50,8,3334,201105496,,,97.0,,0.0,2.0,3.0,0.0,1.0,1.0,2774.1168091212603,0.0,240.0,500.0,0.0,27176.0,0,5,1,72.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1196.3888270084633,0.07490069661356434,0.044023727811615516,27176.0,8,4,8,8_0,8_3,8_1_0 -5497,1,22.0,3,118.0,1,112,5,63,52,4.0,0.0,902.152107716236,1282.4485275295358,0.0,0.0,40353.0,50,41,1,3338,201105497,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2622.186944900243,0.0,940.0,0.0,0.0,29087.0,1,1,2,85.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2184.6006352457716,0.05413725460921794,0.07510573917027441,16159.444444444443,4,2,4_1,4_1_1,4_0_1,4_1_0 -5498,2,47.0,3,0.0,5,112,4,47,42,4.0,0.0,346.98157989085996,1991.8881385033217,112.96417085267309,0.0,39290.0,20,12,1,3339,201105498,,,,,2.0,0.0,8.0,3.0,5.0,2.8,928.6005556631156,0.0,1460.0,0.0,0.0,43365.0,4,1,1,165.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2451.833889246855,0.06240350952524447,0.05653946475837323,15487.500000000002,4,2,4_0,4_1_0,4_0_0,4_0_0 -5499,2,42.0,2,0.0,4,120,2,0,48,7.0,0.0,0.0,450.22129157951787,0.0,886.3342636132812,21983.0,0,60,2,3340,201105499,,,228.0,368.0,1.0,0.0,4.0,0.0,1.0,1.0,6716.093050097976,0.0,330.0,510.0,0.0,21760.0,0,1,3,75.0,0,3.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1336.5555551927991,0.06079950667301092,0.06142258985261025,21760.0,6,3,6,6_0,6_1,6_0_1 -5500,2,75.0,3,0.0,1,400,2,78,78,4.0,3490.203220105541,0.0,923.6358012101018,246.78326555507044,0.0,26438.0,70,71,1,3342,201105500,,,250.0,,0.0,1.0,5.0,0.0,2.0,1.5,2503.109397766893,0.0,677.0,0.0,0.0,23407.0,5,5,1,133.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4660.622286870713,0.17628497945649113,0.19911232908406515,15604.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -5501,2,64.0,3,0.0,99,111,2,78,75,2.0,0.0,0.0,540.2655498954215,0.0,2419.1711665680145,20594.0,50,41,1,3344,201105501,,,,,0.0,0.0,4.0,0.0,2.0,1.5,2292.9586039259034,0.0,396.0,1392.0,0.0,17030.0,5,5,1,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2959.436716463436,0.14370383201240342,0.17377784594617945,11353.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_0 -5502,2,48.0,3,0.0,3,111,4,0,47,5.0,0.0,0.0,832.3284941089594,0.0,1720.4022307930582,16766.0,0,50,1,3348,201105502,,,300.0,,1.0,0.0,3.0,0.0,1.0,1.0,2430.050904493134,1600.0,0.0,0.0,0.0,17778.0,0,1,1,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2552.7307249020178,0.15225639537767016,0.1435893084093834,17778.0,5,3,5,5_1,5_4,5_0_1 -5503,2,52.0,3,0.0,7,111,2,34,21,9.0,0.0,0.0,845.664950130281,0.0,2812.2004890527837,52952.0,20,50,1,3349,201105503,,,1524.0,,3.0,0.0,4.0,2.0,4.0,2.5,2699.1638541655134,393.0,470.0,1375.0,0.0,85330.0,1,1,1,115.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3657.8654391830646,0.06907889105573094,0.04286728511875149,34132.0,9,5,9,9_1,9_4,9_0_0 -5504,2,37.0,4,0.0,8,111,2,48,54,6.0,0.0,0.0,600.2950554393572,3727.817638138212,0.0,62375.0,50,43,1,335,201105504,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2182.675667145531,0.0,440.0,0.0,0.0,44666.0,1,1,2,120.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4328.112693577569,0.06938858025775663,0.09689949163967154,21269.52380952381,6,3,6,6_1,6_3,6_0_0 -5505,2,69.0,2,0.0,7,400,6,78,74,5.0,3420.39915570343,0.0,2749.0784925234198,0.0,0.0,42169.0,71,44,1,3351,201105505,,,530.0,,0.0,2.0,4.0,0.0,2.0,1.5,3577.8560864311235,0.0,2015.0,0.0,0.0,27598.0,5,5,1,140.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6169.47764822685,0.14630362702997107,0.22354799797908725,18398.666666666668,5,3,5,5_1,5_0,5_0_0 -5506,2,74.0,1,0.0,4,112,1,86,75,8.0,0.0,0.0,525.5732934408721,97.32297796537989,573.1089931329375,24044.0,70,60,2,3352,201105506,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2659.2922692836437,533.0,182.0,0.0,0.0,41784.0,6,5,1,100.0,9,3.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1196.0052645391895,0.04974235836546288,0.028623522509553644,27856.0,8,4,8,8_0,8_1,8_0_1 -5507,2,45.0,3,0.0,2,111,4,0,85,1.0,0.0,0.0,1132.3747636696964,0.0,0.0,17797.0,0,50,2,3353,201105507,,,220.0,,0.0,0.0,3.0,0.0,1.0,1.0,4425.357713596701,0.0,830.0,0.0,0.0,8775.0,0,7,1,90.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1132.3747636696964,0.06362728345618343,0.12904555711335572,8775.0,1,1,1_0,1_0_0,1_2_0,1_0_1 -5508,1,24.0,3,238.0,4,111,2,0,62,3.0,0.0,0.0,491.1504999049286,0.0,1084.4560401856618,9229.0,0,50,2,3354,201105508,,,,20.0,1.0,0.0,2.0,0.0,1.0,1.0,2540.5428356265074,0.0,360.0,624.0,0.0,13726.0,0,4,3,45.0,4,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1575.6065400905904,0.1707234305006599,0.11478992715216307,13726.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -5509,1,44.0,2,346.0,1,111,1,47,85,1.0,0.0,0.0,1637.1683330164287,0.0,1254.7712516250765,41984.0,42,41,8,3355,201105509,,,,754.0,2.0,1.0,4.0,2.0,4.0,2.5,4027.859781283933,0.0,1200.0,722.0,0.0,16972.0,4,6,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,2891.9395846415055,0.06888194513723098,0.1703947433797729,6788.8,1,1,1_1,1_0_1,1_4_1,1_1_0 -5510,1,30.0,4,367.0,3,111,1,67,85,3.0,0.0,0.0,1227.8762497623215,0.0,312.82385774586396,27903.0,71,71,2,3358,201105510,,,,,1.0,0.0,4.0,5.0,8.0,3.5,2493.0092526328617,0.0,900.0,180.0,0.0,44294.0,1,6,3,61.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1540.7001075081855,0.05521628884020304,0.034783494547979084,12655.42857142857,2,1,2_1,2_0_1,2_3_1,2_0_1 -5511,2,49.0,5,0.0,1,112,2,0,52,4.0,0.0,693.9631597817199,2765.4501758535844,0.0,0.0,15489.0,0,60,1,336,201105511,,,233.0,,1.0,2.0,8.0,0.0,1.0,1.0,1682.4221332444654,0.0,2027.0,0.0,0.0,15630.0,0,1,2,160.0,7,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3459.413335635304,0.22334646107788134,0.2213316273599043,15630.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -5512,2,42.0,3,0.0,6,300,2,21,11,3.0,539.39504310722,0.0,1077.8024859024822,97.32297796537989,0.0,40601.0,50,50,1,3361,201105512,,,660.0,,3.0,1.0,6.0,3.0,5.0,2.6,1183.9638750468496,0.0,790.0,0.0,0.0,35847.0,1,1,1,190.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1714.5205069750818,0.042228529025764926,0.04782884221762161,13787.307692307691,3,2,3_0,3_1_0,3_0_0,3_0_0 -5513,2,78.0,3,0.0,4,112,2,0,77,6.0,2538.3296146222115,0.0,545.7227776721429,45.18566834106924,0.0,10629.0,0,50,1,3362,201105513,,,200.0,,0.0,3.0,5.0,0.0,1.0,1.0,2856.88229804661,0.0,400.0,0.0,0.0,19266.0,0,5,1,100.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3129.2380606354236,0.29440568827127894,0.16242282054580212,19266.0,6,3,6,6_1,6_0,6_0_1 -5514,2,57.0,2,0.0,1,112,2,0,68,5.0,1832.356690555409,0.0,422.93515269591074,97.32297796537989,0.0,27229.0,0,70,1,3363,201105514,,,311.0,,1.0,1.0,5.0,1.0,2.0,1.5,3002.0896179390097,0.0,310.0,0.0,0.0,27632.0,0,1,2,100.0,7,2.0,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2352.6148212166995,0.08640107316525394,0.08514095328664952,18421.333333333332,5,3,5,5_1,5_1,5_1_0 -5515,2,49.0,3,0.0,4,300,2,52,46,6.0,3569.526020562485,0.0,2215.6344773489,104.27461924862132,0.0,31232.0,71,50,1,3364,201105515,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2753.039482816628,0.0,1624.0,0.0,0.0,40811.0,1,1,1,80.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5889.4351171600065,0.1885705403803793,0.14430999282448376,20405.5,6,3,6,6_1,6_0,6_0_1 -5516,2,42.0,3,0.0,1,300,6,0,21,1.0,0.0,0.0,382.0059443705,408.40892539043347,0.0,17622.0,0,41,1,3365,201105516,,,420.0,,1.0,0.0,4.0,3.0,4.0,2.1,2201.1140280975533,0.0,280.0,0.0,0.0,18030.0,0,1,1,90.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,790.4148697609335,0.04485386844631333,0.04383887242157146,8585.714285714286,1,1,1_0,1_1_0,1_0_0,1_1_0 -5517,2,47.0,1,0.0,6,111,2,62,63,7.0,0.0,277.585263912688,1637.1683330164287,0.0,1939.5079180243565,54792.0,50,50,1,3366,201105517,,,300.0,,4.0,0.0,4.0,2.0,4.0,2.5,1452.2603942509068,0.0,1200.0,1116.0,0.0,54070.0,1,1,1,76.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3854.261514953473,0.07034350844928955,0.0712828095978079,21628.0,6,3,6,6_1,6_2,6_0_0 -5518,2,77.0,4,0.0,4,111,2,75,78,3.0,0.0,0.0,750.3688192991965,0.0,2346.1789330939796,17258.0,71,71,1,3367,201105518,,,260.0,,0.0,6.0,4.0,0.0,2.0,1.5,3133.344628214943,0.0,550.0,1350.0,0.0,20451.0,5,5,3,90.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3096.547752393176,0.17942680220148197,0.15141302393003647,13634.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -5519,1,23.0,1,157.0,99,221,4,0,34,3.0,0.0,0.0,1473.4514997147858,34.7582064162071,0.0,36009.0,0,10,1,3368,201105519,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2489.1194727737907,0.0,1080.0,0.0,0.0,14066.0,0,1,3,67.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1508.2097061309928,0.041884242998444635,0.10722378118377597,14066.0,3,2,3_1,3_1_1,3_1_1,3_0_0 -5520,2,48.0,3,0.0,1,112,5,78,67,7.0,0.0,555.170527825376,818.5841665082144,0.0,0.0,16933.0,70,60,1,337,201105520,,,350.0,,1.0,1.0,4.0,0.0,2.0,1.5,2383.3706749463695,0.0,600.0,0.0,0.0,34410.0,5,1,1,100.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1373.7546943335904,0.08112884275282527,0.03992312392716043,22940.0,7,4,7,7_1,7_0,7_1_0 -5521,2,54.0,4,0.0,5,111,1,0,52,3.0,0.0,0.0,204.6460416270536,86.89551604051776,0.0,16483.0,0,71,8,3370,201105521,,,,297.0,2.0,1.0,3.0,1.0,2.0,1.5,3205.3433602623863,0.0,150.0,0.0,0.0,19258.0,0,1,3,60.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,291.54155766757134,0.017687408703972052,0.015138724564730052,12838.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_0 -5522,2,58.0,3,0.0,5,120,4,0,78,5.0,0.0,0.0,1334.2921914083895,0.0,0.0,9111.0,0,50,1,3371,201105522,,,70.0,,0.0,1.0,4.0,0.0,1.0,1.0,1301.1948561466115,0.0,978.0,0.0,0.0,17031.0,0,7,1,120.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1334.2921914083895,0.14644848989226095,0.07834491171442602,17031.0,5,3,5,5_1,5_1,5_0_0 -5523,2,67.0,3,0.0,4,111,1,0,37,9.0,1002.6401977757736,0.0,2401.1802217574286,0.0,0.0,50958.0,0,50,2,3374,201105523,632.0,632.0,,,1.0,0.0,2.0,0.0,1.0,1.0,3025.921621765115,0.0,1760.0,0.0,0.0,34071.0,0,5,1,42.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3403.8204195332023,0.06679658580660941,0.09990374275874504,34071.0,9,5,9,9_0,9_4,9_0_1 -5524,2,68.0,3,0.0,4,111,1,0,74,6.0,0.0,0.0,518.4366387885358,0.0,0.0,33945.0,0,31,2,3375,201105524,,,,,0.0,1.0,4.0,1.0,2.0,1.5,3853.108032837912,0.0,380.0,0.0,0.0,28679.0,0,5,1,96.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,518.4366387885358,0.015272842503712941,0.018077221618206206,19119.333333333332,5,3,5,5_0,5_3,5_0_1 -5525,2,29.0,3,0.0,9,111,2,0,46,5.0,0.0,0.0,148.70945691565893,0.0,231.14207266777726,21353.0,0,10,1,3376,201105525,,,138.0,,1.0,0.0,7.0,0.0,1.0,1.0,1263.2755803834068,0.0,109.0,133.0,0.0,18596.0,0,1,3,120.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,379.8515295834362,0.017789141084786037,0.020426518046001086,18596.0,5,3,5,5_1,5_3,5_0_0 -5526,2,39.0,2,0.0,1,112,4,85,47,5.0,0.0,0.0,2455.752499524643,0.0,0.0,39318.0,10,20,1,3377,201105526,,,300.0,,1.0,0.0,4.0,3.0,5.0,2.4,938.2294761397,0.0,1800.0,0.0,0.0,41260.0,6,1,1,100.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2455.752499524643,0.06245873390113035,0.05951896508784884,17191.666666666668,5,3,5,5_1,5_1,5_1_0 -5527,1,37.0,2,70.0,1,120,5,56,64,3.0,0.0,166.55115834761278,736.7257498573929,90.37133668213848,0.0,50279.0,50,50,1,3378,201105527,,,,360.0,2.0,0.0,5.0,2.0,4.0,2.1,2087.0969141270507,0.0,540.0,0.0,0.0,30368.0,1,1,3,100.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,993.6482448871441,0.019762689092606138,0.032720239886958116,14460.95238095238,3,2,3_1,3_1_1,3_1_1,3_1_0 -5528,1,20.0,2,120.0,5,111,2,0,84,2.0,0.0,0.0,34.10767360450893,0.0,0.0,26890.0,0,41,2,3380,201105528,,,,265.0,0.0,0.0,2.0,0.0,1.0,1.0,3677.3004067902543,0.0,25.0,0.0,0.0,11236.0,0,3,3,32.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,34.10767360450893,0.0012684147863335415,0.0030355708085180607,11236.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -5529,2,60.0,2,0.0,6,111,2,52,42,10.0,0.0,0.0,1910.0297218525002,93.84715732375918,0.0,31939.0,50,20,1,3381,201105529,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1479.9427713970504,0.0,1400.0,0.0,0.0,74221.0,1,1,1,100.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2003.8768791762593,0.06274075203282067,0.026998785777290247,49480.666666666664,10,5,10,10_1,10_3,10_0_0 -5530,2,58.0,5,0.0,6,300,4,0,72,10.0,0.0,1387.9263195634398,1009.5871386934643,139.0328256648284,0.0,17375.0,0,50,1,3382,201105530,,,170.0,,0.0,2.0,4.0,0.0,1.0,1.0,2785.396135453279,0.0,740.0,0.0,0.0,43460.0,0,7,1,90.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2536.546283921733,0.14598827533362493,0.05836507786290228,43460.0,10,5,10,10_1,10_0,10_0_0 -5531,2,38.0,3,0.0,9,120,4,43,62,7.0,0.0,0.0,2728.6138883607146,0.0,0.0,50363.0,50,50,1,3383,201105531,,,360.0,,2.0,0.0,6.0,2.0,4.0,2.1,1102.1488662438358,0.0,2000.0,0.0,0.0,46003.0,1,1,2,112.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2728.6138883607146,0.054178938672452284,0.059313824932302556,21906.190476190477,7,4,7,7_1,7_0,7_0_0 -5532,2,84.0,3,0.0,1,111,2,0,77,6.0,0.0,0.0,2080.8212352723986,0.0,4301.005576982646,19682.0,0,70,1,3384,201105532,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2187.47723249671,4000.0,0.0,0.0,0.0,21523.0,0,5,1,70.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,6381.826812255044,0.3242468657786325,0.2965119552225547,21523.0,6,3,6,6_1,6_2,6_1_0 -5533,2,46.0,4,0.0,4,111,2,0,43,6.0,0.0,0.0,1637.1683330164287,0.0,0.0,41251.0,0,33,1,3386,201105533,,,,,1.0,0.0,4.0,1.0,2.0,1.5,4271.33094644395,0.0,1200.0,0.0,0.0,29698.0,0,1,2,80.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1637.1683330164287,0.039687967152709724,0.055127225167231085,19798.666666666668,6,3,6,6_1,6_2,6_0_1 -5534,2,32.0,3,0.0,1,111,1,0,52,5.0,1248.5408791923003,0.0,491.1504999049286,0.0,139.0328256648284,38466.0,0,20,2,3387,201105534,787.0,787.0,,295.0,3.0,0.0,3.0,0.0,3.0,2.0,4761.795820034366,0.0,360.0,80.0,0.0,35020.0,0,1,3,55.0,10,8.0,5,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1878.7242047620573,0.048841163748818625,0.05364717889097822,17510.0,5,3,5,5_0,5_4,5_1_0 -5535,2,43.0,3,0.0,99,221,2,0,62,5.0,951.8736054833294,0.0,955.0148609262501,0.0,0.0,16727.0,0,71,1,3389,201105535,,,440.0,,1.0,6.0,7.0,1.0,2.0,1.5,3800.7843000546163,0.0,700.0,0.0,0.0,26100.0,0,1,1,100.0,1,1.0,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1906.8884664095795,0.11400062571947028,0.07306086078197623,17400.0,5,3,5,5_1,5_1,5_0_0 -5536,1,74.0,3,146.0,6,111,1,0,77,2.0,0.0,0.0,93.11675027843984,0.0,192.4699995699734,8542.0,0,70,8,3391,201105536,,,94.0,188.0,0.0,2.0,2.0,0.0,1.0,1.0,3342.530000329579,179.0,0.0,0.0,0.0,10312.0,0,5,3,61.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,285.5867498484132,0.033433241611848886,0.027694603360009038,10312.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -5537,0,24.0,3,0.0,3,111,1,0,34,2.0,0.0,0.0,0.0,0.0,0.0,16238.0,0,10,2,3392,201105537,,,,,1.0,0.0,1.0,0.0,1.0,1.0,8257.78988770933,0.0,0.0,0.0,0.0,10325.0,0,1,5,13.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,10325.0,2,1,2_0,2_0_0,2_4_0,2_0_1 -5538,2,60.0,2,0.0,8,112,2,46,78,4.0,0.0,0.0,968.6579303680536,0.0,3369.808112051279,37852.0,70,60,1,3393,201105538,,,,,1.0,2.0,5.0,1.0,3.0,2.0,3122.525772789281,0.0,710.0,1939.0,0.0,33247.0,4,5,2,165.0,7,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4338.466042419333,0.11461656035135086,0.13049195543716222,16623.5,4,2,4_0,4_1_0,4_0_0,4_0_0 -5539,2,36.0,3,0.0,8,111,4,63,34,9.0,0.0,0.0,925.0001081542822,50.3993993035003,0.0,35108.0,50,31,1,3397,201105539,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2822.1607135661034,0.0,678.0,0.0,0.0,43474.0,1,1,2,100.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,975.3995074577825,0.02778282748825859,0.022436387437497873,28982.666666666668,8,4,8,8_1,8_2,8_0_0 -5540,2,42.0,2,0.0,4,221,4,0,55,10.0,0.0,0.0,1773.5990274344645,0.0,0.0,28551.0,0,50,1,3398,201105540,,,500.0,,1.0,0.0,6.0,2.0,3.0,1.6,3334.3802161051844,0.0,1300.0,0.0,0.0,59494.0,0,1,2,110.0,1,1.0,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1773.5990274344645,0.06212038203336011,0.02981139320661688,37183.75,9,5,9,9_1,9_1,9_0_1 -5541,2,67.0,2,0.0,1,400,5,0,78,5.0,0.0,693.9631597817199,654.8673332065715,59.088950907552075,0.0,13576.0,0,70,1,3399,201105541,,,80.0,,0.0,2.0,3.0,0.0,1.0,1.0,2291.6180976986197,0.0,480.0,0.0,0.0,16920.0,0,5,3,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1407.9194438958436,0.10370649999232791,0.08321036902457704,16920.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -5542,2,31.0,1,0.0,5,111,1,0,34,10.0,0.0,0.0,341.0767360450893,0.0,86.89551604051776,31721.0,0,10,2,340,201105542,,,,545.0,1.0,0.0,2.0,0.0,1.0,1.0,3620.9006194820777,0.0,250.0,50.0,0.0,65619.0,0,1,3,50.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,427.97225208560707,0.013491764196765772,0.006522078240838889,65619.0,10,5,10,10_0,10_3,10_0_0 -5543,2,31.0,1,0.0,2,111,2,55,38,5.0,0.0,0.0,491.1504999049286,0.0,2294.041623469669,53533.0,41,20,1,3400,201105543,,,544.0,,2.0,0.0,4.0,2.0,4.0,2.1,1882.8191347734703,0.0,360.0,1320.0,0.0,35166.0,4,1,2,97.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2785.1921233745975,0.05202757408280122,0.07920127746614905,16745.714285714286,4,2,4_0,4_1_0,4_3_0,4_0_1 -5544,2,82.0,3,0.0,3,111,2,0,78,5.0,0.0,0.0,364.2699540961554,0.0,2057.6858198394607,8438.0,0,70,1,3402,201105544,,,178.0,,0.0,1.0,3.0,0.0,1.0,1.0,2019.7293137967454,0.0,267.0,1184.0,0.0,18573.0,0,5,1,67.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2421.955773935616,0.2870296010826755,0.1304019691991394,18573.0,5,3,5,5_1,5_2,5_0_1 -5545,2,75.0,3,0.0,1,120,5,71,71,2.0,0.0,55.5170527825376,1036.8732775770716,194.64595593075978,0.0,17245.0,70,50,1,3403,201105545,,,121.0,,0.0,2.0,4.0,0.0,2.0,1.5,1280.419965508087,0.0,760.0,0.0,0.0,17055.0,5,5,1,89.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1287.036286290369,0.07463243179416462,0.07546386902904538,11370.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -5546,2,61.0,2,0.0,1,112,5,78,56,5.0,0.0,624.566843803548,1685.5474267365119,38.23402705782782,99.9983796648465,34684.0,50,60,1,3404,201105546,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1618.7326008226266,93.0,1200.0,0.0,0.0,26030.0,5,1,1,190.0,7,0.0,3,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2448.3466772627344,0.07059008987610237,0.09405865068239472,17353.333333333332,5,3,5,5_1,5_0,5_1_0 -5547,2,56.0,2,0.0,7,111,2,43,34,10.0,0.0,0.0,1040.4106176361993,0.0,2150.502788491323,73787.0,33,10,1,3405,201105547,,,943.0,,2.0,0.0,7.0,2.0,4.0,2.5,1128.6010712395976,2000.0,0.0,0.0,0.0,155286.0,1,1,1,200.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3190.913406127522,0.04324492669613241,0.02054862258109245,62114.4,10,5,10,10_1,10_3,10_0_0 -5548,2,46.0,3,0.0,8,112,5,67,42,6.0,0.0,0.0,477.50743046312505,0.0,0.0,63713.0,50,30,1,3407,201105548,,,,,2.0,1.0,7.0,2.0,4.0,2.3,2129.9439913941537,0.0,350.0,0.0,0.0,45643.0,1,1,2,170.0,8,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,477.50743046312505,0.007494662478036273,0.010461788893436562,19844.782608695652,6,3,6,6_1,6_0,6_0_0 -5549,2,34.0,3,0.0,5,111,1,65,55,5.0,0.0,0.0,313.79059716148214,0.0,980.1814209370403,19221.0,60,42,2,3408,201105549,516.0,516.0,,196.0,2.0,0.0,2.0,1.0,3.0,1.8,3171.303175889408,0.0,230.0,564.0,0.0,33004.0,1,1,3,60.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1293.9720180985225,0.06732074387901371,0.039206520970140664,18335.555555555555,5,3,5,5_0,5_2,5_0_0 -5550,2,65.0,4,0.0,4,112,6,77,78,3.0,0.0,666.2046333904511,1218.5333456036979,4275.259389193474,623.6458086624835,34474.0,71,50,1,3410,201105550,,,185.0,,0.0,3.0,6.0,0.0,2.0,1.5,2231.572567487214,580.0,672.0,0.0,0.0,21483.0,5,5,1,160.0,4,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,6783.643176850106,0.1967756331394705,0.31576796429037407,14322.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -5551,2,37.0,3,0.0,9,112,4,43,43,9.0,0.0,0.0,1405.236152505768,0.0,0.0,25030.0,10,10,1,3413,201105551,,,133.0,,2.0,0.0,5.0,0.0,2.0,1.5,1910.580232792622,0.0,1030.0,0.0,0.0,46840.0,1,1,2,110.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1405.236152505768,0.05614207560949932,0.030000771829755933,31226.666666666668,9,5,9,9_1,9_0,9_0_0 -5552,2,28.0,2,0.0,1,112,2,65,53,9.0,0.0,0.0,818.5841665082144,0.0,0.0,30477.0,10,20,2,3414,201105552,,,190.0,,2.0,0.0,2.0,0.0,2.0,1.5,2208.9411976010174,0.0,600.0,0.0,0.0,43995.0,1,1,3,40.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,818.5841665082144,0.026859079519251053,0.018606299954727,29330.0,9,5,9,9_0,9_0,9_1_0 -5553,2,70.0,3,0.0,1,112,5,78,78,3.0,0.0,680.0838965860855,507.5221832350929,0.0,0.0,14904.0,71,71,1,3415,201105553,,,,,1.0,3.0,6.0,0.0,3.0,2.0,3657.4286555475483,0.0,372.0,0.0,0.0,26830.0,5,5,1,100.0,5,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1187.6060798211784,0.07968371442707853,0.044264110317598894,13415.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -5554,2,50.0,2,0.0,1,112,5,0,67,7.0,0.0,138.792631956344,2046.460416270536,0.0,0.0,6812.0,0,50,1,3416,201105554,,,150.0,,1.0,0.0,4.0,0.0,1.0,1.0,1565.1310575940067,0.0,1500.0,0.0,0.0,23720.0,0,1,1,80.0,7,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2185.25304822688,0.32079463420829124,0.09212702564194265,23720.0,7,4,7,7_1,7_1,7_1_0 -5555,2,48.0,4,0.0,4,111,2,0,55,8.0,0.0,555.170527825376,873.1564442754286,1796.9992717179073,0.0,41442.0,0,60,1,3417,201105555,,,337.0,,1.0,4.0,6.0,0.0,1.0,1.0,4615.708204410891,0.0,640.0,0.0,0.0,28386.0,0,1,2,100.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3225.326243818712,0.07782747560008475,0.11362383723732516,28386.0,8,4,8,8_1,8_2,8_0_1 -5556,2,71.0,3,0.0,4,111,1,0,77,7.0,0.0,0.0,332.8908943800072,0.0,429.26384924015775,17294.0,0,43,2,3419,201105556,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2758.6817439966703,0.0,244.0,247.0,0.0,24438.0,0,5,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,762.1547436201649,0.04407047204927518,0.03118727979458896,24438.0,7,4,7,7_0,7_4,7_0_1 -5557,2,52.0,3,0.0,1,120,2,78,54,6.0,0.0,0.0,559.3658471139465,0.0,2815.4147197127754,29862.0,50,50,1,342,201105557,,,240.0,,1.0,3.0,5.0,0.0,2.0,1.5,2860.9064430749213,0.0,410.0,1620.0,0.0,29090.0,5,1,1,80.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3374.780566826722,0.1130125432598862,0.11601170735052327,19393.333333333332,6,3,6,6_1,6_1,6_1_0 -5558,2,75.0,2,0.0,1,300,6,78,77,9.0,2492.322390357184,0.0,427.02807352845184,0.0,0.0,16972.0,70,30,1,3420,201105558,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1580.010554788709,0.0,313.0,0.0,0.0,52877.0,5,5,1,110.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2919.3504638856357,0.17200980814786918,0.05521021358786685,35251.333333333336,9,5,9,9_1,9_0,9_1_0 -5559,2,64.0,1,0.0,4,112,6,78,74,7.0,1507.1332086819382,0.0,463.8643610213215,132.081184381587,0.0,31524.0,70,50,1,3423,201105559,,,175.0,,0.0,3.0,5.0,0.0,2.0,1.5,1484.8265752655484,0.0,340.0,0.0,0.0,32490.0,5,5,1,160.0,7,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2103.0787540848464,0.06671357550072474,0.06473003244336246,21660.0,6,3,6,6_1,6_1,6_0_1 -5560,1,21.0,3,172.0,99,111,1,0,42,1.0,0.0,0.0,272.86138883607146,0.0,0.0,12354.0,0,42,2,3424,201105560,,,,269.0,1.0,0.0,2.0,0.0,1.0,1.0,4113.736342451141,0.0,200.0,0.0,0.0,7800.0,0,3,3,25.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,272.86138883607146,0.022086885934601865,0.03498222933795788,7800.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -5561,0,26.0,2,0.0,2,112,2,0,53,3.0,0.0,0.0,1023.230208135268,52.13730962431066,0.0,33345.0,0,50,1,3425,201105561,,,140.0,,1.0,0.0,4.0,0.0,1.0,1.0,3769.1884131721417,0.0,750.0,0.0,0.0,13870.0,0,1,5,110.0,7,1.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1075.3675177595787,0.03224973812444381,0.07753190466903956,13870.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -5562,1,38.0,4,394.0,2,400,2,0,56,3.0,3414.0533316668743,0.0,818.5841665082144,43.44775802025888,0.0,19419.0,0,50,1,3427,201105562,,,247.0,,1.0,0.0,4.0,2.0,3.0,2.0,1014.2244363839815,0.0,600.0,0.0,0.0,25008.0,0,1,3,53.0,0,0.0,2,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,4276.085256195348,0.2202011049073252,0.17098869386577686,12504.0,2,1,2_1,2_1_1,2_0_1,2_0_1 -5563,2,29.0,2,0.0,99,111,1,46,37,9.0,0.0,0.0,504.79356934673217,0.0,507.46981367662374,47109.0,60,20,2,3429,201105563,,,,328.0,2.0,0.0,3.0,2.0,4.0,2.1,4256.614657121558,0.0,370.0,292.0,0.0,63389.0,1,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1012.2633830233559,0.02148768564442794,0.015969070075618104,30185.238095238095,9,5,9,9_0,9_4,9_0_0 -5564,1,52.0,5,354.0,7,112,2,0,22,1.0,0.0,0.0,886.4298462260417,0.0,1832.228375794607,18083.0,0,42,2,3430,201105564,,,,181.0,2.0,0.0,5.0,1.0,2.0,1.5,2871.364111802847,1704.0,0.0,0.0,0.0,12052.0,0,1,3,90.0,9,2.0,2,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2718.6582220206487,0.15034331814525514,0.22557734998511855,8034.666666666667,1,1,1_1,1_0_1,1_1_1,1_0_0 -5565,2,61.0,3,0.0,5,111,1,86,72,7.0,0.0,0.0,54.57227776721429,0.0,137.29491534401805,39744.0,60,71,3,3433,201105565,,,,,0.0,2.0,4.0,0.0,2.0,1.5,4177.574222741202,0.0,40.0,79.0,0.0,32846.0,5,5,1,85.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,191.86719311123233,0.004827576316204517,0.0058414173144745885,21897.333333333332,7,4,7,7_0,7_3,7_0_0 -5566,2,25.0,2,0.0,1,111,4,38,38,9.0,0.0,0.0,1146.0178331115,0.0,0.0,38130.0,10,10,8,3435,201105566,,,,962.0,2.0,0.0,2.0,0.0,2.0,1.5,3699.1953160556664,0.0,840.0,0.0,0.0,47427.0,1,1,3,38.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1146.0178331115,0.030055542436703386,0.024163827210481374,31618.0,9,5,9,9_0,9_4,9_1_0 -5567,1,71.0,3,248.0,7,112,2,0,75,3.0,0.0,0.0,114.60178331115002,0.0,0.0,10509.0,0,70,2,3436,201105567,,,,1.0,0.0,0.0,3.0,0.0,1.0,1.0,947.1577325476319,0.0,84.0,0.0,0.0,13190.0,0,5,3,44.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,114.60178331115002,0.010905108317741937,0.008688535505015164,13190.0,3,2,3_1,3_0_1,3_0_1,3_0_0 -5568,2,51.0,2,0.0,5,111,2,52,43,8.0,0.0,0.0,1019.6024052834752,0.0,2107.492732721496,24906.0,41,31,1,3437,201105568,,,240.0,,2.0,4.0,4.0,1.0,3.0,1.8,4967.091149419334,1960.0,0.0,0.0,0.0,46366.0,1,1,2,100.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3127.095138004971,0.12555589568798567,0.0674437117285289,25758.888888888887,8,4,8,8_1,8_2,8_0_0 -5569,1,30.0,5,326.0,4,111,1,0,85,2.0,0.0,0.0,1669.9116996767573,0.0,0.0,18147.0,0,60,8,3438,201105569,,,,,0.0,1.0,4.0,2.0,3.0,1.6,2518.5892361181723,0.0,1224.0,0.0,0.0,16962.0,0,6,3,90.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1669.9116996767573,0.09202136439503815,0.09845016505581637,10601.25,2,1,2_1,2_0_1,2_2_1,2_0_1 -5570,1,54.0,4,189.0,4,211,2,0,56,2.0,0.0,0.0,214.19619023631608,0.0,1265.1987135499387,8669.0,0,50,2,3439,201105570,,,360.0,,1.0,4.0,3.0,0.0,1.0,1.0,2107.98130957801,0.0,157.0,728.0,0.0,11108.0,0,4,3,53.0,3,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1479.3949037862549,0.17065346681119561,0.13318283253387242,11108.0,2,1,2_1,2_0_1,2_1_1,2_0_1 -5571,2,51.0,3,0.0,3,112,1,46,47,3.0,0.0,0.0,529.3510943419786,0.0,347.58206416207105,27242.0,50,50,2,344,201105571,200.0,200.0,400.0,317.0,2.0,1.0,4.0,1.0,3.0,2.0,3902.573285068076,0.0,388.0,200.0,0.0,25300.0,1,1,3,60.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,876.9331585040497,0.032190483756847875,0.03466138966419169,12650.0,2,1,2_0,2_0_0,2_1_0,2_0_1 -5572,1,27.0,2,235.0,5,111,1,0,35,7.0,0.0,0.0,25.921831939426788,0.0,0.0,19089.0,0,10,2,3440,201105572,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3845.146005225267,0.0,19.0,0.0,0.0,22173.0,0,1,3,27.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,25.921831939426788,0.00135794603905007,0.0011690719316027054,22173.0,7,4,7,7_0,7_3,7_0_0 -5573,2,74.0,2,0.0,7,111,4,0,74,9.0,0.0,0.0,1528.023777482,0.0,0.0,53453.0,0,41,2,3445,201105573,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3625.2555714988084,0.0,1120.0,0.0,0.0,31464.0,0,5,1,93.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1528.023777482,0.028586305305258825,0.04856419328381643,31464.0,9,5,9,9_0,9_4,9_0_0 -5574,2,77.0,4,0.0,4,112,1,75,75,8.0,0.0,0.0,382.0059443705,187.69431464751835,0.0,31655.0,50,50,1,3446,201105574,,,180.0,,0.0,1.0,5.0,0.0,2.0,1.5,1268.9389762390101,0.0,280.0,0.0,0.0,41762.0,5,5,1,120.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,569.7002590180184,0.017997165029790506,0.013641594248791208,27841.333333333332,8,4,8,8_1,8_0,8_0_1 -5575,2,46.0,2,0.0,7,112,2,52,33,7.0,0.0,346.98157989085996,1257.8910025342893,0.0,0.0,55820.0,43,30,1,3447,201105575,,,432.0,,2.0,0.0,5.0,2.0,4.0,2.5,2325.7753004114334,0.0,922.0,0.0,0.0,55983.0,1,1,1,90.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1604.8725824251492,0.028750852426104426,0.02866714149697496,22393.2,7,4,7,7_1,7_1,7_0_0 -5576,2,42.0,3,0.0,5,111,2,46,22,9.0,0.0,0.0,641.2242637647679,0.0,0.0,32561.0,10,31,2,3448,201105576,,,,,2.0,0.0,2.0,1.0,3.0,1.8,2810.6549176487956,0.0,470.0,0.0,0.0,58760.0,1,1,3,70.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,641.2242637647679,0.0196930150721651,0.010912598089938188,32644.444444444445,9,5,9,9_0,9_3,9_0_0 -5577,2,64.0,2,0.0,5,211,5,56,77,4.0,0.0,27.7585263912688,553.908619337225,0.0,159.8877495145527,25103.0,71,71,1,3449,201105577,,,,,1.0,3.0,5.0,0.0,2.0,1.5,3014.637779774086,0.0,406.0,92.0,0.0,24374.0,1,5,1,120.0,3,3.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,741.5548952430465,0.029540488995062206,0.03042401309768797,16249.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_0 -5578,2,57.0,2,0.0,6,400,5,52,62,8.0,0.0,166.55115834761278,1064.1594164606786,180.74267336427695,0.0,27154.0,50,50,1,3451,201105578,,,,,3.0,1.0,5.0,1.0,3.0,2.0,1264.4949147171328,0.0,780.0,0.0,0.0,49822.0,1,4,1,110.0,0,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1411.4532481725682,0.051979570161765055,0.028329919476788732,24911.0,8,4,8,8_1,8_1,8_0_0 -5579,2,37.0,3,0.0,1,300,5,67,65,3.0,0.0,0.0,1055.9735747955965,156.41192887293198,0.0,28930.0,50,50,1,3456,201105579,,,370.0,,2.0,0.0,5.0,1.0,3.0,1.8,848.319904069689,0.0,774.0,0.0,0.0,25574.0,1,1,2,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1212.3855036685286,0.04190755284025332,0.04740695642717325,14207.777777777777,3,2,3_0,3_1_0,3_0_0,3_1_0 -5580,1,23.0,2,172.0,1,111,2,0,84,5.0,0.0,0.0,518.4366387885358,0.0,0.0,19848.0,0,20,2,3458,201105580,,,,160.0,0.0,0.0,2.0,0.0,1.0,1.0,3086.180009567878,0.0,380.0,0.0,0.0,17029.0,0,3,3,30.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,518.4366387885358,0.026120346573384513,0.030444338410272817,17029.0,5,3,5,5_0,5_2,5_1_0 -5581,2,75.0,2,0.0,1,120,2,71,71,8.0,3966.1400228472053,0.0,641.2242637647679,0.0,0.0,27205.0,70,70,1,3459,201105581,,,384.0,,0.0,3.0,7.0,0.0,2.0,1.5,1408.4814994731996,0.0,470.0,0.0,0.0,41082.0,5,5,1,87.0,0,3.0,3,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4607.3642866119735,0.16935726104069007,0.1121504378222086,27388.0,8,4,8,8_1,8_1,8_1_0 -5582,2,84.0,3,0.0,1,300,2,72,72,1.0,3084.070481765987,0.0,530.8531144463234,151.1981979105009,166.66396610807752,14193.0,70,70,1,346,201105582,,,154.0,,0.0,3.0,4.0,0.0,2.0,1.5,1699.9780567657351,155.0,330.0,0.0,0.0,10285.0,5,5,1,100.0,0,0.0,3,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3932.7857602308886,0.27709333898618255,0.38238072535059686,6856.666666666667,1,1,1_0,1_1_0,1_0_0,1_1_0 -5583,2,35.0,2,0.0,1,111,1,81,65,5.0,0.0,0.0,409.2920832541072,0.0,0.0,24223.0,20,31,2,3461,201105583,,,,,2.0,0.0,1.0,0.0,2.0,1.5,7768.845735940512,0.0,300.0,0.0,0.0,26696.0,4,1,3,25.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,409.2920832541072,0.01689683702489812,0.015331588374816721,17797.333333333332,5,3,5,5_0,5_4,5_1_0 -5584,2,76.0,4,0.0,1,111,2,0,75,1.0,0.0,0.0,1012.3157525818251,0.0,0.0,16424.0,0,60,2,3463,201105584,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3536.1086237392874,0.0,742.0,0.0,0.0,8500.0,0,5,3,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1012.3157525818251,0.06163637071248326,0.11909597089197943,8500.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -5585,2,42.0,3,0.0,6,111,2,85,34,5.0,0.0,0.0,409.2920832541072,0.0,1564.1192887293198,35655.0,20,10,1,3464,201105585,,,,,1.0,0.0,5.0,2.0,4.0,2.1,1540.7676490502722,0.0,300.0,900.0,0.0,39152.0,6,1,2,130.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1973.411371983427,0.05534739509138766,0.050403845831207265,18643.809523809523,5,3,5,5_1,5_3,5_0_0 -5586,2,67.0,1,0.0,1,112,2,75,74,10.0,0.0,0.0,757.1903540200983,0.0,3475.8206416207104,53289.0,41,31,1,3465,201105586,,,550.0,,0.0,2.0,9.0,0.0,2.0,1.5,1700.4373062314635,0.0,555.0,2000.0,0.0,69081.0,5,5,1,220.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4233.010995640809,0.07943498650079395,0.06127605268656807,46054.0,10,5,10,10_1,10_0,10_1_0 -5587,2,56.0,3,0.0,6,211,2,0,62,7.0,0.0,0.0,320.61213188238395,0.0,1020.1533583156785,15374.0,0,50,2,3466,201105587,,,,284.0,1.0,2.0,2.0,0.0,1.0,1.0,2133.662397676352,0.0,235.0,587.0,0.0,22737.0,0,1,3,55.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1340.7654901980625,0.08720993171575793,0.05896844307507861,22737.0,7,4,7,7_0,7_1,7_0_0 -5588,2,76.0,2,0.0,4,112,2,86,74,10.0,0.0,0.0,2570.9642710668736,0.0,802.1375401072634,61383.0,60,20,1,3467,201105588,,,250.0,,0.0,2.0,4.0,0.0,2.0,1.5,3484.711901155746,746.0,1600.0,0.0,0.0,60851.0,6,5,1,110.0,9,3.0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3373.101811174137,0.05495172622996818,0.055432150846726216,40567.333333333336,10,5,10,10_1,10_1,10_0_1 -5589,2,33.0,2,0.0,99,111,1,0,45,4.0,0.0,0.0,400.5580877899367,0.0,827.9435735691593,18169.0,0,20,2,3469,201105589,,,,500.0,2.0,0.0,2.0,0.0,2.0,1.5,3547.552275891477,770.0,0.0,0.0,0.0,22996.0,0,1,3,50.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1228.501661359096,0.06761526013314414,0.053422406564580624,15330.666666666666,4,2,4_0,4_0_0,4_3_0,4_0_0 -5590,2,42.0,5,0.0,99,111,1,0,62,4.0,0.0,0.0,362.905647151975,0.0,0.0,10098.0,0,31,2,347,201105590,,,,278.0,1.0,4.0,2.0,0.0,1.0,1.0,3020.1647415720804,0.0,266.0,0.0,0.0,15640.0,0,1,3,29.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,362.905647151975,0.035938368701918695,0.02320368587928229,15640.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -5591,2,36.0,2,0.0,6,111,6,0,54,6.0,0.0,0.0,615.3024318253412,0.0,0.0,21919.0,0,10,2,3470,201105591,,,,560.0,1.0,0.0,1.0,0.0,1.0,1.0,2582.2643778480237,0.0,451.0,0.0,0.0,19226.0,0,4,3,31.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,615.3024318253412,0.028071647056222507,0.03200366336343187,19226.0,5,3,5,5_0,5_4,5_0_0 -5592,2,44.0,4,0.0,2,211,2,21,62,7.0,0.0,0.0,720.3540665272286,0.0,1574.5467506541818,37863.0,44,50,1,3471,201105592,,,270.0,,2.0,2.0,4.0,1.0,3.0,1.8,1281.3207347857142,0.0,528.0,906.0,0.0,43195.0,1,1,2,98.0,1,3.0,4,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2294.9008171814103,0.06061064409004596,0.0531288532742542,23997.222222222223,7,4,7,7_1,7_1,7_0_1 -5593,2,52.0,2,0.0,1,111,4,0,47,8.0,0.0,0.0,422.93515269591074,0.0,191.17013528913907,21983.0,0,20,2,3472,201105593,,,,520.0,1.0,0.0,2.0,0.0,1.0,1.0,3140.804662412226,0.0,310.0,110.0,0.0,26376.0,0,1,3,38.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,614.1052879850498,0.027935463220900233,0.023282730057061336,26376.0,8,4,8,8_0,8_4,8_1_0 -5594,2,80.0,3,0.0,99,111,1,0,71,6.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,15356.0,0,70,2,3473,201105594,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2982.7696154418118,1200.0,0.0,0.0,0.0,19452.0,0,5,3,134.0,5,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1914.548043676513,0.12467752303181252,0.09842422597555589,19452.0,6,3,6,6_0,6_2,6_0_0 -5595,1,27.0,5,239.0,2,111,6,43,42,5.0,0.0,0.0,955.0148609262501,0.0,0.0,14672.0,33,20,2,3476,201105595,,,,261.0,2.0,3.0,2.0,0.0,2.0,1.5,4660.121412723443,0.0,700.0,0.0,0.0,26981.0,4,1,3,60.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,955.0148609262501,0.06509098016127658,0.03539582895097476,17987.333333333332,5,3,5,5_0,5_2,5_0_1 -5596,0,37.0,1,0.0,5,111,4,85,47,2.0,0.0,0.0,613.9381248811608,444.90504212745094,0.0,34887.0,43,50,1,3478,201105596,,,140.0,,1.0,0.0,4.0,1.0,3.0,2.0,3337.7984906252154,0.0,450.0,0.0,0.0,22255.0,6,1,5,120.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1058.8431670086118,0.030350651159704527,0.047577765311552986,11127.5,2,1,2_0,2_1_0,2_3_0,2_0_0 -5597,2,25.0,2,0.0,4,111,1,47,46,8.0,0.0,0.0,231.93218051066074,0.0,0.0,28360.0,20,31,2,348,201105597,,,,420.0,2.0,0.0,2.0,0.0,2.0,1.5,3529.4520254958866,0.0,170.0,0.0,0.0,37718.0,1,1,3,57.0,8,6.0,3,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,231.93218051066074,0.008178144587823016,0.006149111313183645,25145.333333333332,8,4,8,8_0,8_2,8_0_1 -5598,2,29.0,2,0.0,1,111,4,0,43,8.0,0.0,0.0,736.7257498573929,0.0,0.0,13260.0,0,10,2,3481,201105598,,,60.0,396.0,1.0,0.0,2.0,0.0,1.0,1.0,2896.23611638976,0.0,540.0,0.0,0.0,27081.0,0,1,3,47.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,736.7257498573929,0.05556001130146251,0.02720452530768409,27081.0,8,4,8,8_0,8_2,8_1_0 -5599,1,35.0,4,244.0,1,111,2,0,42,5.0,0.0,0.0,804.9410970664107,0.0,2068.113281764323,10726.0,0,43,1,3482,201105599,,,400.0,,1.0,1.0,3.0,1.0,2.0,1.5,968.1403042706795,0.0,590.0,1190.0,0.0,26702.0,0,1,3,74.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,2873.0543788307336,0.26785888297881166,0.10759697321664047,17801.333333333332,5,3,5,5_1,5_2,5_1_0 -5600,2,69.0,2,0.0,6,111,4,75,75,7.0,0.0,0.0,1870.4648204712698,0.0,0.0,52691.0,31,60,1,3483,201105600,,,365.0,,0.0,2.0,5.0,0.0,2.0,1.5,1200.589271088951,0.0,1371.0,0.0,0.0,35755.0,5,5,1,100.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1870.4648204712698,0.035498753496256856,0.0523133777225918,23836.666666666668,7,4,7,7_1,7_2,7_0_0 -5601,1,81.0,3,165.0,2,111,2,0,78,3.0,0.0,0.0,272.86138883607146,0.0,943.6853042000229,15543.0,0,71,1,3484,201105601,,,,87.0,0.0,3.0,2.0,0.0,1.0,1.0,2616.204431678275,0.0,200.0,543.0,0.0,13040.0,0,5,3,37.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1216.5466930360944,0.07826974799177086,0.09329345805491522,13040.0,3,2,3_1,3_1_1,3_3_1,3_0_1 -5602,1,23.0,2,260.0,2,111,4,0,54,6.0,0.0,0.0,545.7227776721429,0.0,0.0,11079.0,0,31,2,3486,201105602,,,,270.0,1.0,0.0,2.0,0.0,1.0,1.0,3648.0937541441267,0.0,400.0,0.0,0.0,19344.0,0,1,3,37.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,545.7227776721429,0.049257403887728396,0.028211475272546676,19344.0,6,3,6,6_0,6_3,6_0_1 -5603,2,42.0,3,0.0,7,400,5,12,54,2.0,0.0,138.792631956344,1118.731694227893,1433.776014668543,0.0,34794.0,31,20,1,3487,201105603,,,,,2.0,0.0,9.0,5.0,7.0,3.4,1132.7060040125762,0.0,820.0,0.0,0.0,35939.0,1,1,1,150.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2691.30034085278,0.07734955282096856,0.0748852316662339,10570.29411764706,2,1,2_0,2_1_0,2_0_0,2_0_0 -5604,2,31.0,2,0.0,7,111,4,0,67,9.0,0.0,0.0,613.9381248811608,0.0,0.0,12813.0,0,31,2,3488,201105604,,,,385.0,1.0,0.0,2.0,0.0,1.0,1.0,3769.0628909632974,0.0,450.0,0.0,0.0,29600.0,0,1,3,43.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,613.9381248811608,0.04791525207844851,0.020741152867606784,29600.0,9,5,9,9_0,9_2,9_0_0 -5605,2,72.0,4,0.0,3,300,6,0,78,3.0,2855.620816449988,0.0,1567.5886788632304,406.67101506962314,0.0,15360.0,0,71,1,3489,201105605,,,180.0,,0.0,7.0,5.0,0.0,1.0,1.0,1588.8946188952702,0.0,1149.0,0.0,0.0,13888.0,0,5,1,100.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4829.880510382842,0.3144453457280496,0.34777365426143736,13888.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -5606,2,63.0,3,0.0,2,111,2,56,75,5.0,0.0,0.0,613.8422644053575,0.0,1268.7966452098804,20547.0,50,50,1,349,201105606,,,163.0,,1.0,0.0,4.0,1.0,3.0,2.0,1531.084942429033,1180.0,0.0,0.0,0.0,37530.0,1,5,1,100.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1882.638909615238,0.09162597506279446,0.0501635733976882,18765.0,5,3,5,5_1,5_2,5_0_1 -5607,2,31.0,1,0.0,4,111,1,31,34,10.0,0.0,0.0,422.93515269591074,0.0,0.0,36754.0,20,10,2,3491,201105607,,,,730.0,2.0,0.0,3.0,0.0,2.0,1.5,2896.3577973414535,0.0,310.0,0.0,0.0,71119.0,1,1,3,72.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,422.93515269591074,0.011507187046196625,0.005946865854355527,47412.666666666664,10,5,10,10_0,10_3,10_0_1 -5608,1,32.0,4,300.0,8,221,2,46,53,3.0,0.0,0.0,1596.2391246910179,145.98446694806984,0.0,26052.0,41,50,1,3492,201105608,,,1000.0,,2.0,0.0,4.0,2.0,4.0,2.1,1707.6810712456522,0.0,1170.0,0.0,0.0,26101.0,1,1,3,120.0,1,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1742.2235916390878,0.06687484997846951,0.0667493043040147,12429.047619047618,2,1,2_1,2_1_1,2_1_1,2_0_0 -5609,2,41.0,3,0.0,1,112,5,0,69,5.0,0.0,138.792631956344,750.3688192991965,151.1981979105009,0.0,14347.0,0,71,1,3493,201105609,,,520.0,,1.0,3.0,5.0,0.0,2.0,1.5,2704.615263824845,0.0,550.0,0.0,0.0,25643.0,0,1,5,120.0,6,1.0,5,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1040.3596491660414,0.07251408999554203,0.04057090235799405,17095.333333333332,5,3,5,5_1,5_1,5_1_0 -5610,2,38.0,2,0.0,1,111,2,85,38,6.0,2934.943616906932,0.0,473.41450963058395,0.0,166.8393907977941,88717.0,12,12,1,3494,201105610,,,436.0,1198.0,1.0,0.0,6.0,4.0,6.0,2.7,1912.5714904656732,0.0,347.0,96.0,0.0,57552.0,6,1,3,140.0,6,5.0,4,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3575.1975173353103,0.04029890006802879,0.062121168983446454,21315.555555555555,6,3,6,6_1,6_2,6_1_0 -5611,1,50.0,4,347.0,99,300,2,0,54,3.0,0.0,0.0,952.2862470378893,955.8506764456954,0.0,7289.0,0,71,1,3496,201105611,,,206.0,,2.0,0.0,3.0,1.0,2.0,1.5,2893.638887910592,0.0,698.0,0.0,0.0,18920.0,0,4,3,100.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1908.1369234835847,0.2617830873211119,0.1008529029325362,12613.333333333334,2,1,2_1,2_1_1,2_0_1,2_0_0 -5612,2,86.0,3,0.0,6,112,2,0,77,4.0,0.0,0.0,804.9410970664107,43.44775802025888,0.0,13578.0,0,70,1,3498,201105612,,,105.0,,0.0,3.0,5.0,0.0,1.0,1.0,5565.041915301562,0.0,590.0,0.0,0.0,14931.0,0,5,5,97.0,8,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,848.3888550866697,0.06248260826975031,0.056820631912575824,14931.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -5613,2,65.0,2,0.0,1,111,2,0,74,10.0,0.0,0.0,409.2920832541072,0.0,1651.0148047698374,28872.0,0,31,1,3499,201105613,,,600.0,,0.0,1.0,4.0,1.0,2.0,1.5,2898.006108985976,0.0,300.0,950.0,0.0,66899.0,0,5,1,77.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2060.3068880239443,0.0713600335281222,0.03079727481761976,44599.333333333336,10,5,10,10_1,10_3,10_1_0 -5614,2,39.0,2,0.0,1,111,2,55,62,6.0,0.0,0.0,463.8643610213215,0.0,1320.81184381587,32380.0,50,50,1,350,201105614,,,370.0,370.0,2.0,0.0,3.0,1.0,3.0,1.8,1029.0038862111853,0.0,340.0,760.0,0.0,36579.0,1,1,3,70.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1784.6762048371913,0.05511662152060504,0.04878963899606854,20321.666666666668,6,3,6,6_1,6_3,6_1_0 -5615,1,58.0,4,80.0,1,111,2,0,43,3.0,0.0,0.0,477.50743046312505,0.0,2606.865481215533,22563.0,0,41,2,3500,201105615,,,210.0,275.0,1.0,2.0,4.0,0.0,1.0,1.0,2746.477763225028,0.0,350.0,1500.0,0.0,14649.0,0,4,3,83.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,3084.372911678658,0.13670047917735487,0.21055177224920868,14649.0,3,2,3_1,3_0_1,3_3_1,3_1_0 -5616,2,57.0,3,0.0,2,111,2,65,62,7.0,0.0,0.0,489.92390612091265,0.0,590.7140843858042,23288.0,50,70,1,3502,201105616,,,,,2.0,3.0,3.0,0.0,2.0,1.5,1616.7925853557772,155.0,300.0,244.0,0.0,34684.0,4,1,2,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1080.637990506717,0.04640321154700777,0.031156671390460067,23122.666666666668,7,4,7,7_1,7_4,7_0_1 -5617,2,68.0,3,0.0,4,400,2,78,78,4.0,1302.4803835030223,0.0,457.0428263004197,163.36357015617338,0.0,21268.0,70,71,1,3503,201105617,,,458.0,,0.0,2.0,4.0,0.0,2.0,1.5,2065.814515488582,0.0,335.0,0.0,0.0,22027.0,5,5,1,95.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1922.8867799596153,0.09041220518899827,0.08729680755253168,14684.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1 -5618,2,30.0,3,0.0,1,111,6,56,46,8.0,0.0,0.0,192.3672791294304,0.0,0.0,34449.0,43,31,2,3504,201105618,,,,650.0,2.0,0.0,2.0,0.0,2.0,1.5,3969.093521821193,0.0,141.0,0.0,0.0,39353.0,4,1,3,25.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,192.3672791294304,0.005584117946222833,0.004888249412482667,26235.333333333332,8,4,8,8_0,8_4,8_1_0 -5619,2,31.0,3,0.0,2,111,2,52,52,4.0,0.0,832.755791738064,723.0826804155894,140.77073598563877,0.0,28633.0,60,50,1,3506,201105619,,,203.0,,2.0,0.0,5.0,2.0,4.0,2.1,1878.2361285468437,0.0,530.0,0.0,0.0,34619.0,1,1,2,110.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1696.6092081392922,0.05925363071069368,0.04900803628467871,16485.238095238095,4,2,4_0,4_1_0,4_2_0,4_0_1 -5620,2,25.0,4,0.0,4,111,1,85,21,3.0,0.0,0.0,409.2920832541072,208.54923849724264,521.3730962431066,15864.0,41,50,2,3507,201105620,300.0,300.0,,264.0,1.0,0.0,3.0,0.0,2.0,1.5,4214.052946658397,0.0,300.0,300.0,0.0,19090.0,6,4,3,50.0,8,6.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1139.2144179944564,0.0718112971504322,0.059675977893895046,12726.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_1 -5621,2,60.0,4,0.0,6,111,6,0,45,8.0,0.0,0.0,1773.5990274344645,156.41192887293198,0.0,27215.0,0,41,1,3508,201105621,,,480.0,810.0,2.0,1.0,3.0,1.0,2.0,1.5,2312.6064444490657,0.0,1300.0,0.0,0.0,43189.0,0,1,3,75.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1930.0109563073966,0.0709171764213631,0.04468755832057692,28792.666666666668,8,4,8,8_1,8_3,8_0_0 -5622,2,65.0,2,0.0,1,300,2,86,78,6.0,1110.5192063972174,0.0,450.22129157951787,260.6865481215533,0.0,38893.0,70,70,1,351,201105622,,,112.0,,0.0,2.0,4.0,0.0,2.0,1.5,1410.1352790112364,0.0,330.0,0.0,0.0,29769.0,5,5,1,120.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1821.4270460982884,0.04683174468666054,0.06118536215856389,19846.0,6,3,6,6_1,6_0,6_1_0 -5623,2,31.0,3,0.0,1,111,2,43,52,5.0,0.0,0.0,532.0797082303393,0.0,1171.3515562261794,39141.0,31,43,2,3510,201105623,,,380.0,,2.0,0.0,4.0,2.0,4.0,2.1,2912.9607553589435,0.0,390.0,674.0,0.0,38920.0,1,1,2,93.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1703.4312644565186,0.043520381810799896,0.043767504225501505,18533.333333333332,5,3,5,5_0,5_2,5_1_0 -5624,2,27.0,2,0.0,9,300,5,0,43,6.0,0.0,0.0,575.7375304441108,48.661488982689946,0.0,26684.0,0,10,1,3511,201105624,,,55.0,,1.0,0.0,5.0,0.0,1.0,1.0,3489.560000825268,0.0,422.0,0.0,0.0,21556.0,0,1,2,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,624.3990194268008,0.02339975338880231,0.028966367574076862,21556.0,6,3,6,6_1,6_0,6_0_0 -5625,1,44.0,1,137.0,2,111,2,0,38,9.0,0.0,0.0,245.5752499524643,0.0,696.9020386449524,42796.0,0,41,2,3512,201105625,,,,283.0,1.0,2.0,1.0,0.0,1.0,1.0,3503.4297459154945,0.0,180.0,401.0,0.0,30393.0,0,1,3,25.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,942.4772885974168,0.022022555579900384,0.03100968277555413,30393.0,9,5,9,9_0,9_3,9_0_1 -5626,2,53.0,4,0.0,4,111,2,0,56,6.0,0.0,0.0,354.7198054868929,0.0,782.0596443646599,31118.0,0,50,2,3515,201105626,,,,,1.0,2.0,4.0,1.0,2.0,1.3,2744.6988662300787,0.0,260.0,450.0,0.0,26414.0,0,1,2,97.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1136.7794498515527,0.036531250396926306,0.04303700499172987,20318.46153846154,6,3,6,6_0,6_3,6_0_1 -5627,1,21.0,3,210.0,1,111,6,0,84,2.0,0.0,0.0,491.1504999049286,0.0,0.0,12091.0,0,41,2,3516,201105627,,,,260.0,0.0,0.0,2.0,0.0,1.0,1.0,3605.4896262608045,0.0,360.0,0.0,0.0,10934.0,0,3,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,491.1504999049286,0.04062116449465955,0.04491956282283964,10934.0,2,1,2_1,2_0_1,2_4_1,2_1_0 -5628,2,39.0,2,0.0,99,111,1,0,67,6.0,0.0,0.0,226.4749527339393,0.0,83.41969539889705,24713.0,0,71,2,3517,201105628,,,165.0,178.0,1.0,0.0,1.0,0.0,1.0,1.0,3142.6332690947625,0.0,166.0,48.0,0.0,19372.0,0,1,3,34.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,309.8946481328363,0.012539742165371922,0.01599703944522178,19372.0,6,3,6,6_0,6_3,6_0_0 -5629,2,60.0,3,0.0,1,111,2,0,77,6.0,0.0,0.0,491.1504999049286,0.0,1181.7790181510416,17767.0,0,70,1,3518,201105629,,,180.0,,0.0,2.0,3.0,0.0,1.0,1.0,2359.5305607557643,0.0,360.0,680.0,0.0,20623.0,0,5,1,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1672.9295180559702,0.0941593695084128,0.08111960035183874,20623.0,6,3,6,6_1,6_4,6_1_0 -5630,2,66.0,2,0.0,4,112,2,0,72,10.0,0.0,0.0,682.1534720901786,0.0,3128.2385774586396,117138.0,0,60,1,3519,201105630,,,1314.0,,0.0,2.0,4.0,0.0,1.0,1.0,3437.0241175131137,0.0,500.0,1800.0,0.0,66597.0,0,5,2,100.0,10,0.0,1,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3810.3920495488182,0.03252908577531474,0.057215671119552204,66597.0,10,5,10,10_1,10_0,10_0_1 -5631,2,76.0,3,0.0,8,111,2,77,78,4.0,0.0,0.0,532.0797082303393,0.0,1133.1175291683517,26088.0,71,50,1,352,201105631,,,358.0,502.0,0.0,6.0,3.0,0.0,2.0,1.5,5611.580016988197,0.0,390.0,652.0,0.0,23880.0,5,5,3,60.0,4,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1665.197237398691,0.06383000756664715,0.06973187761301052,15920.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -5632,2,64.0,2,0.0,3,111,1,0,77,4.0,0.0,0.0,654.8673332065715,0.0,139.0328256648284,23589.0,0,50,2,3521,201105632,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2949.09122824891,0.0,480.0,80.0,0.0,15195.0,0,5,1,55.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,793.9001588714,0.033655524137157146,0.05224746027452452,15195.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -5633,2,57.0,3,0.0,3,111,2,0,38,4.0,0.0,0.0,470.68589574222324,0.0,1390.3282566482842,26458.0,0,20,2,3522,201105633,,,,,1.0,0.0,6.0,2.0,3.0,2.0,3906.3010572788276,0.0,345.0,800.0,0.0,29475.0,0,4,1,115.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1861.0141523905074,0.07033842892095046,0.06313873290553036,14737.5,3,2,3_0,3_0_0,3_3_0,3_0_1 -5634,2,52.0,4,0.0,1,112,5,0,64,7.0,0.0,416.377895869032,1036.8732775770716,48.661488982689946,0.0,16994.0,0,50,1,3523,201105634,,,250.0,,1.0,4.0,5.0,0.0,1.0,1.0,1743.7380747009634,0.0,760.0,0.0,0.0,22470.0,0,1,3,110.0,4,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1501.9126624287935,0.08837899625919698,0.06684079494565169,22470.0,7,4,7,7_1,7_0,7_1_0 -5635,2,33.0,2,0.0,1,300,2,0,35,7.0,428.3431224674982,0.0,463.8643610213215,156.41192887293198,0.0,28074.0,0,20,1,3524,201105635,,,570.0,,1.0,0.0,2.0,1.0,2.0,1.3,2279.62709488196,0.0,340.0,0.0,0.0,28509.0,0,1,2,25.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1048.6194123617515,0.03735197735847231,0.03678204820799577,21930.0,7,4,7,7_1,7_0,7_1_0 -5636,2,37.0,2,0.0,2,400,2,43,21,7.0,3172.912018277764,0.0,1009.5871386934643,104.27461924862132,0.0,39509.0,41,43,1,3525,201105636,,,349.0,,2.0,0.0,4.0,2.0,4.0,2.1,3657.210299994297,0.0,740.0,0.0,0.0,49771.0,1,1,2,100.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4286.773776219849,0.10850119659368371,0.08612995069859657,23700.47619047619,7,4,7,7_1,7_0,7_0_1 -5637,2,48.0,3,0.0,6,300,4,65,46,6.0,0.0,444.1364222603008,2473.4884897989878,100.7987986070006,0.0,33220.0,50,44,1,3526,201105637,,,300.0,,3.0,1.0,5.0,1.0,3.0,2.0,828.0884726481066,0.0,1813.0,0.0,0.0,41284.0,1,1,1,115.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3018.423710666289,0.09086164089904543,0.07311364476955452,20642.0,6,3,6,6_1,6_1,6_0_0 -5638,1,24.0,4,180.0,6,111,2,0,34,1.0,0.0,0.0,638.4956498764072,0.0,0.0,17314.0,0,41,2,3527,201105638,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3630.970319426804,0.0,468.0,0.0,0.0,6771.0,0,3,2,44.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,638.4956498764072,0.03687741999979249,0.09429857478605926,6771.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -5639,2,68.0,2,0.0,4,111,2,0,75,7.0,253.83296146222114,0.0,654.8673332065715,0.0,0.0,18601.0,0,20,1,3528,201105639,,,,,0.0,1.0,5.0,0.0,1.0,1.0,3546.175509506846,0.0,480.0,0.0,0.0,24560.0,0,5,3,100.0,6,4.0,1,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,908.7002946687926,0.048852228088209916,0.03699919766566745,24560.0,7,4,7,7_1,7_2,7_0_1 -5640,2,58.0,3,0.0,6,111,4,85,77,3.0,0.0,0.0,1720.3910566114305,0.0,0.0,19623.0,50,60,2,3529,201105640,,,,,0.0,0.0,5.0,0.0,2.0,1.5,2492.0166627033923,0.0,1261.0,0.0,0.0,21881.0,6,5,1,110.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1720.3910566114305,0.0876721732972242,0.07862488262014672,14587.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_0 -5641,2,82.0,3,0.0,1,400,6,0,72,3.0,1745.1016100527704,0.0,518.4366387885358,312.82385774586396,0.0,13886.0,0,70,1,3530,201105641,,,,,0.0,2.0,4.0,0.0,1.0,1.0,4669.103709381156,0.0,380.0,0.0,0.0,12420.0,0,5,1,86.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2576.3621065871703,0.1855366633002427,0.20743656252714737,12420.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -5642,2,41.0,5,0.0,2,221,1,47,43,6.0,0.0,0.0,892.2567414939537,145.98446694806984,0.0,35420.0,43,43,1,3532,201105642,,,240.0,,2.0,0.0,7.0,2.0,4.0,2.1,4541.767716811242,0.0,654.0,0.0,0.0,43450.0,1,1,2,112.0,1,1.0,4,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1038.2412084420234,0.029312287081931773,0.023895079595903878,20690.47619047619,6,3,6,6_1,6_1,6_0_1 -5643,2,35.0,2,0.0,1,111,2,22,43,4.0,0.0,0.0,559.3658471139465,0.0,1374.687063760991,64223.0,41,33,2,3533,201105643,,,,,2.0,0.0,4.0,3.0,5.0,2.4,3777.439811176277,0.0,410.0,791.0,0.0,38550.0,1,1,1,88.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1934.0529108749374,0.030114646012720323,0.05016998471789721,16062.5,4,2,4_0,4_0_0,4_4_0,4_1_0 -5644,2,65.0,3,0.0,1,111,2,0,77,9.0,0.0,0.0,856.1183359653293,0.0,904.5622863813238,22294.0,0,50,1,3534,201105644,,,,,1.0,1.0,4.0,1.0,2.0,1.5,2282.982734500802,518.0,430.0,200.0,0.0,49104.0,0,5,5,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1760.680622346653,0.07897553702102149,0.03585615473987156,32736.0,9,5,9,9_1,9_4,9_1_0 -5645,2,65.0,3,0.0,7,300,5,77,72,4.0,53.93950431072199,832.755791738064,1637.1683330164287,104.27461924862132,0.0,24530.0,50,50,1,3535,201105645,,,210.0,,0.0,2.0,4.0,0.0,2.0,1.5,1981.8474129166098,0.0,1200.0,0.0,0.0,23254.0,5,5,1,90.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2628.138248313836,0.1071397573711307,0.11301876014078592,15502.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -5646,2,67.0,2,0.0,4,112,2,77,75,6.0,2062.392811880547,0.0,297.74361981033275,121.65372245672486,446.2293286119494,38551.0,70,44,1,3536,201105646,,,113.0,,0.0,2.0,6.0,0.0,3.0,2.0,1920.4261949141892,415.0,60.0,0.0,0.0,43002.0,6,5,1,150.0,6,0.0,5,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2928.019482759554,0.07595184256594004,0.06809030935211279,21501.0,6,3,6,6_1,6_0,6_0_1 -5647,2,91.0,2,0.0,2,111,1,78,77,5.0,0.0,0.0,532.0797082303393,0.0,112.96417085267309,13806.0,71,70,2,3537,201105647,,,,345.0,0.0,1.0,3.0,0.0,2.0,1.5,3086.414842841661,0.0,390.0,65.0,0.0,27590.0,5,5,3,70.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,645.0438790830124,0.04672199616710215,0.023379625918195448,18393.333333333332,5,3,5,5_0,5_3,5_0_1 -5648,2,71.0,3,0.0,5,112,4,0,74,10.0,0.0,0.0,182.81713052016786,0.0,0.0,27737.0,0,43,1,3538,201105648,,,200.0,,0.0,3.0,5.0,0.0,1.0,1.0,2282.696823057794,0.0,134.0,0.0,0.0,49186.0,0,5,1,240.0,8,0.0,1,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,182.81713052016786,0.0065910924224021296,0.0037168529768667477,49186.0,10,5,10,10_1,10_0,10_0_0 -5649,2,69.0,3,0.0,6,221,4,75,78,3.0,0.0,0.0,1931.858632959386,72.99223347403492,0.0,36276.0,71,70,1,3539,201105649,,,373.0,553.0,0.0,3.0,4.0,0.0,2.0,1.5,5180.689289247648,0.0,1416.0,0.0,0.0,21701.0,5,5,3,85.0,1,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2004.8508664334208,0.055266591311980945,0.09238518346773977,14467.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0 -5650,2,53.0,3,0.0,2,111,2,85,22,1.0,0.0,0.0,1812.8608238892527,0.0,3252.0163177629297,34004.0,70,60,1,354,201105650,,,1200.0,,2.0,0.0,5.0,3.0,5.0,3.0,2545.5872674661223,600.0,1100.0,1500.0,0.0,19355.0,6,1,1,120.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5064.877141652182,0.14894945128961834,0.26168313829254364,6451.666666666667,1,1,1_0,1_1_0,1_3_0,1_0_1 -5651,2,42.0,3,0.0,8,112,2,63,43,7.0,0.0,0.0,1238.7907053157644,100.7987986070006,0.0,30878.0,50,33,1,3541,201105651,,,271.0,,2.0,0.0,5.0,2.0,4.0,2.1,2739.5185576328695,0.0,908.0,0.0,0.0,46635.0,1,1,2,117.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1339.589503922765,0.04338329891582243,0.028724981321384478,22207.142857142855,7,4,7,7_1,7_0,7_0_0 -5652,2,43.0,3,0.0,4,211,2,42,38,9.0,0.0,0.0,573.00891655575,0.0,3328.0982643518305,31780.0,20,10,1,3542,201105652,,,600.0,,2.0,0.0,5.0,1.0,3.0,1.8,1013.1625062117469,0.0,420.0,1915.0,0.0,61072.0,1,1,2,85.0,3,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3901.1071809075806,0.12275352992157271,0.06387718071960277,33928.88888888889,9,5,9,9_1,9_2,9_0_1 -5653,2,76.0,3,0.0,1,111,2,0,74,7.0,0.0,0.0,1100.9957039535484,0.0,4466.429524482613,15387.0,0,70,1,3546,201105653,,,150.0,,0.0,2.0,5.0,0.0,1.0,1.0,3467.2780154278967,0.0,807.0,2570.0,0.0,24330.0,0,5,5,150.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5567.425228436161,0.361826556732057,0.2288296435855389,24330.0,7,4,7,7_1,7_2,7_1_0 -5654,2,63.0,3,0.0,1,400,2,71,71,2.0,0.0,277.585263912688,750.3688192991965,260.6865481215533,0.0,19390.0,41,50,1,3547,201105654,,,176.0,,0.0,3.0,5.0,0.0,2.0,1.5,2128.491476489546,0.0,550.0,0.0,0.0,17694.0,5,5,1,130.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1288.6406313334378,0.06645903204401432,0.0728292433216592,11796.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -5655,2,36.0,4,0.0,1,111,6,21,52,2.0,0.0,0.0,1009.5871386934643,0.0,3241.2027483113125,26860.0,31,31,1,3548,201105655,,,,,2.0,0.0,7.0,3.0,5.0,2.4,2291.3914925181457,0.0,740.0,1865.0,0.0,26688.0,1,1,2,100.0,4,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4250.789887004777,0.15825725565915028,0.15927719900347634,11120.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -5656,2,37.0,3,0.0,5,112,2,55,48,9.0,0.0,0.0,3683.6287492869646,451.85668341069237,0.0,40209.0,31,60,1,3549,201105656,,,370.0,,2.0,3.0,9.0,1.0,5.0,2.8,617.0193956892708,0.0,2700.0,0.0,0.0,86541.0,1,1,1,320.0,8,0.0,5,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4135.485432697657,0.10284974589513933,0.0477864299314505,30907.500000000004,9,5,9,9_1,9_0,9_0_0 -5657,2,65.0,3,0.0,99,112,4,0,78,3.0,0.0,0.0,463.8643610213215,100.7987986070006,0.0,10828.0,0,71,1,355,201105657,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2430.294815522701,0.0,340.0,0.0,0.0,12814.0,0,5,3,40.0,6,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,564.6631596283221,0.0521484262678539,0.04406611203592337,12814.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -5658,1,24.0,2,250.0,2,111,2,0,37,6.0,0.0,0.0,736.7257498573929,0.0,521.3730962431066,55465.0,0,10,2,3550,201105658,,,,350.0,1.0,0.0,2.0,0.0,2.0,1.5,3180.718850591021,0.0,540.0,300.0,0.0,29646.0,0,1,3,35.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1258.0988461004995,0.022682752115757675,0.04243738939824933,19764.0,6,3,6,6_0,6_4,6_0_1 -5659,2,84.0,4,0.0,4,111,2,86,86,5.0,0.0,0.0,613.9381248811608,330.2029609539675,2175.863721654565,18784.0,71,71,1,3552,201105659,,,500.0,,0.0,3.0,3.0,0.0,2.0,1.5,3732.7929146014053,0.0,450.0,1252.0,0.0,25480.0,5,5,1,97.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3120.004807489693,0.16609906343109523,0.12244916826882626,16986.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_1 -5660,2,55.0,1,0.0,6,111,4,43,33,4.0,0.0,0.0,4120.206971424679,0.0,0.0,95748.0,10,11,1,3553,201105660,,,,,2.0,0.0,7.0,1.0,3.0,2.0,2159.976297563482,0.0,3020.0,0.0,0.0,32007.0,1,1,1,143.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4120.206971424679,0.04303178104424823,0.12872830853952819,16003.5,4,2,4_0,4_1_0,4_4_0,4_0_0 -5661,2,30.0,4,0.0,9,112,2,46,52,5.0,0.0,0.0,2046.460416270536,90.37133668213848,0.0,24204.0,31,50,1,3554,201105661,,,350.0,,2.0,0.0,5.0,2.0,4.0,2.1,2549.221970948622,0.0,1500.0,0.0,0.0,35216.0,1,1,2,95.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2136.8317529526744,0.08828424033022123,0.06067786667857435,16769.52380952381,4,2,4_0,4_1_0,4_0_0,4_0_0 -5662,2,42.0,2,0.0,4,111,1,0,47,3.0,0.0,0.0,177.35990274344644,0.0,417.0984769944853,19246.0,0,20,8,3557,201105662,240.0,240.0,50.0,,1.0,0.0,1.0,0.0,1.0,1.0,2975.084226657132,0.0,130.0,240.0,0.0,13187.0,0,1,3,40.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,594.4583797379318,0.030887372946998427,0.04507912184256706,13187.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -5663,2,62.0,3,0.0,2,111,1,77,78,2.0,0.0,0.0,613.9381248811608,0.0,104.27461924862132,29752.0,44,70,2,3558,201105663,,,,251.0,1.0,2.0,4.0,1.0,3.0,2.0,2379.964384450796,0.0,450.0,60.0,0.0,22842.0,5,5,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,718.2127441297821,0.02413998198876654,0.03144263830355407,11421.0,2,1,2_0,2_0_0,2_4_0,2_0_1 -5664,2,63.0,2,0.0,3,111,1,65,77,7.0,0.0,0.0,450.22129157951787,0.0,278.0656513296568,47661.0,42,50,2,3559,201105664,,,360.0,,1.0,3.0,4.0,0.0,2.0,1.5,3449.8474496215626,0.0,330.0,160.0,0.0,35057.0,1,5,1,72.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,728.2869429091747,0.01528056362453945,0.020774365830195818,23371.333333333332,7,4,7,7_0,7_3,7_0_1 -5665,2,38.0,3,0.0,7,111,2,85,54,5.0,0.0,0.0,34.10767360450893,0.0,34.7582064162071,23370.0,41,42,8,356,201105665,,,360.0,405.0,1.0,0.0,3.0,1.0,3.0,1.8,2297.6320874959088,0.0,25.0,20.0,0.0,31660.0,6,1,4,105.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,68.86588002071603,0.0029467642285287135,0.0021751699311660148,17588.888888888887,5,3,5,5_0,5_2,5_0_0 -5666,2,88.0,3,0.0,3,111,2,0,72,10.0,7614.988843866635,0.0,1173.3039719951073,0.0,0.0,25904.0,0,50,1,3565,201105666,,,,,0.0,1.0,5.0,0.0,1.0,1.0,4072.1797214969965,0.0,860.0,0.0,0.0,62277.0,0,5,1,150.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,8788.292815861741,0.3392639289631617,0.14111618761118458,62277.0,10,5,10,10_1,10_3,10_0_1 -5667,2,51.0,2,0.0,6,111,2,52,63,8.0,0.0,0.0,682.1534720901786,0.0,1077.5043989024202,33343.0,42,50,1,3566,201105667,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1398.455951137106,0.0,500.0,620.0,0.0,40966.0,1,1,2,133.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1759.6578709925989,0.052774431544630025,0.04295410513578574,27310.666666666668,8,4,8,8_1,8_2,8_0_0 -5668,1,43.0,4,76.0,2,111,2,85,64,2.0,0.0,0.0,613.9381248811608,0.0,2224.5252106372545,43560.0,50,60,1,3567,201105668,,,456.0,,1.0,3.0,5.0,3.0,5.0,2.6,2617.222147792731,0.0,450.0,1280.0,0.0,30730.0,6,1,2,109.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,2838.463335518415,0.06516215187140531,0.09236782738426343,11819.23076923077,2,1,2_1,2_1_1,2_2_1,2_0_1 -5669,2,38.0,3,0.0,4,112,4,37,37,8.0,0.0,0.0,2046.460416270536,0.0,0.0,46752.0,20,31,1,3568,201105669,,,430.0,,2.0,0.0,6.0,3.0,5.0,2.4,1121.5275723905559,0.0,1500.0,0.0,0.0,65886.0,1,1,2,146.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2046.460416270536,0.04377268173063261,0.031060626176585858,27452.5,8,4,8,8_1,8_1,8_0_1 -5670,2,33.0,2,0.0,99,112,2,62,48,7.0,0.0,0.0,1342.4780330734716,0.0,1958.6249315532702,40154.0,41,60,1,3569,201105670,,,307.0,,2.0,0.0,6.0,2.0,4.0,2.1,3848.2906555855093,0.0,984.0,1127.0,0.0,49992.0,1,1,2,160.0,7,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3301.1029646267416,0.08221106152878273,0.06603262451245683,23805.714285714286,7,4,7,7_1,7_1,7_0_0 -5671,2,70.0,3,0.0,4,112,2,0,72,5.0,1427.810408224994,0.0,477.50743046312505,104.27461924862132,0.0,16843.0,0,70,1,357,201105671,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2748.0432627396153,0.0,350.0,0.0,0.0,18636.0,0,5,1,100.0,9,0.0,1,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2009.5924579367404,0.11931321367551745,0.10783389450186416,18636.0,5,3,5,5_1,5_0,5_0_1 -5672,2,58.0,4,0.0,5,111,1,0,37,10.0,0.0,0.0,545.7227776721429,0.0,0.0,45332.0,0,50,2,3575,201105672,,,,1100.0,1.0,2.0,4.0,0.0,1.0,1.0,3135.0440027462246,0.0,400.0,0.0,0.0,46619.0,0,1,3,90.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,545.7227776721429,0.012038356517959562,0.011706016381135222,46619.0,10,5,10,10_0,10_4,10_0_0 -5673,2,76.0,3,0.0,5,111,1,77,74,6.0,0.0,0.0,156.06159264542987,0.0,322.5754182736984,22874.0,71,60,2,3576,201105673,,,,700.0,0.0,6.0,2.0,0.0,2.0,1.5,2922.325591597111,300.0,0.0,0.0,0.0,31880.0,5,5,3,62.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,478.6370109191283,0.020924937086610487,0.01501370799620854,21253.333333333332,6,3,6,6_0,6_2,6_0_0 -5674,2,51.0,3,0.0,6,112,2,67,52,8.0,0.0,0.0,675.3319373692768,0.0,1312.1222922118181,23162.0,71,42,1,3577,201105674,,,256.0,,2.0,2.0,5.0,0.0,2.0,1.5,2472.2188799537666,0.0,495.0,755.0,0.0,39691.0,1,1,1,100.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1987.454229581095,0.08580667600298311,0.050073170985389506,26460.666666666668,8,4,8,8_1,8_1,8_0_0 -5675,2,80.0,2,0.0,2,111,2,0,75,7.0,0.0,0.0,3233.4074577074466,0.0,1682.2971905444238,18286.0,0,50,1,3578,201105675,,,139.0,,0.0,5.0,5.0,0.0,1.0,1.0,2443.3472534343477,0.0,2370.0,968.0,0.0,23827.0,0,5,1,91.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4915.704648251871,0.2688233975856869,0.206308165033444,23827.0,7,4,7,7_1,7_3,7_0_1 -5676,1,52.0,4,20.0,1,111,4,0,42,3.0,0.0,0.0,956.3791678704305,0.0,0.0,16006.0,0,50,2,3579,201105676,,,,125.0,1.0,3.0,2.0,0.0,1.0,1.0,2714.1230087475124,0.0,701.0,0.0,0.0,12761.0,0,1,3,46.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,956.3791678704305,0.05975129125768028,0.0749454719748006,12761.0,3,2,3_1,3_0_1,3_2_1,3_1_0 -5677,2,27.0,3,0.0,8,400,3,85,62,7.0,0.0,416.377895869032,109.14455553442858,0.0,0.0,18364.0,60,50,1,358,201105677,,,,,1.0,0.0,4.0,0.0,2.0,1.5,2985.2092660560393,0.0,80.0,0.0,0.0,34467.0,7,1,2,160.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,525.5224514034605,0.028616992561721875,0.015247119024094367,22978.0,7,4,7,7_1,7_0,7_0_0 -5678,2,41.0,3,0.0,6,111,4,43,47,9.0,0.0,0.0,2155.6049718049644,0.0,0.0,39133.0,20,31,1,3580,201105678,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.1,2872.190415950777,0.0,1580.0,0.0,0.0,69328.0,1,1,2,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2155.6049718049644,0.05508407154588108,0.031092848081654807,33013.33333333333,9,5,9,9_1,9_4,9_0_0 -5679,1,62.0,3,374.0,4,221,2,0,77,5.0,0.0,0.0,354.7198054868929,0.0,1263.4608032291283,33059.0,0,70,1,3581,201105679,,,478.0,,0.0,4.0,4.0,1.0,2.0,1.5,2258.317888921354,0.0,260.0,727.0,0.0,26638.0,0,5,3,72.0,1,1.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1618.1806087160212,0.048948262461539105,0.060747075933479285,17758.666666666668,5,3,5,5_1,5_1,5_0_1 -5680,1,79.0,3,47.0,1,111,2,0,77,3.0,0.0,0.0,818.5841665082144,0.0,0.0,6791.0,0,50,2,3582,201105680,,,218.0,659.0,0.0,5.0,2.0,0.0,1.0,1.0,3854.828327164545,0.0,600.0,0.0,0.0,13558.0,0,5,3,35.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,818.5841665082144,0.12053956214227866,0.060376468985706915,13558.0,3,2,3_1,3_0_1,3_3_1,3_1_0 -5681,2,57.0,2,0.0,1,111,2,68,64,8.0,0.0,0.0,286.504458277875,0.0,1293.0052786829042,28147.0,71,71,2,3583,201105681,,,,,2.0,1.0,2.0,0.0,2.0,1.5,3088.9209629471884,0.0,210.0,744.0,0.0,41889.0,1,1,1,40.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1579.5097369607793,0.056116450668304944,0.03770702898041919,27926.0,8,4,8,8_0,8_4,8_1_0 -5682,2,49.0,2,0.0,3,111,6,37,38,9.0,999.4672857574958,624.566843803548,1282.4485275295358,0.0,0.0,79713.0,50,12,1,3585,201105682,,,380.0,,2.0,0.0,6.0,2.0,5.0,3.0,891.5464533787879,0.0,940.0,0.0,0.0,95990.0,1,1,2,150.0,9,7.0,5,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2906.48265709058,0.03646184006486495,0.030279015075430564,31996.666666666668,9,5,9,9_1,9_3,9_0_1 -5683,0,21.0,2,0.0,99,111,2,0,84,1.0,0.0,0.0,0.0,0.0,1911.7013528913908,10421.0,0,41,2,3588,201105683,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3384.9784717539123,0.0,0.0,1100.0,0.0,7155.0,0,3,5,50.0,8,7.0,1,5,0,1,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1911.7013528913908,0.18344701591895124,0.26718397664449905,7155.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -5684,2,31.0,3,0.0,4,120,2,47,52,5.0,2919.079056815543,0.0,545.7227776721429,145.98446694806984,0.0,42925.0,42,42,1,3589,201105684,,,370.0,,2.0,0.0,4.0,2.0,4.0,2.1,4815.407276031199,0.0,400.0,0.0,0.0,38501.0,1,1,2,86.0,0,2.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3610.786301435756,0.08411849275330824,0.09378422122635141,18333.809523809523,5,3,5,5_1,5_1,5_0_1 -5685,2,33.0,3,0.0,2,111,2,0,31,10.0,2062.392811880547,0.0,485.6932721282072,0.0,0.0,37251.0,0,10,1,359,201105685,,,,,1.0,0.0,6.0,0.0,1.0,1.0,2897.2037941465755,0.0,356.0,0.0,0.0,41308.0,0,1,2,80.0,8,6.0,1,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2548.0860840087544,0.06840315921743724,0.06168505093465562,41308.0,10,5,10,10_1,10_2,10_0_1 -5686,0,83.0,2,0.0,2,111,2,0,86,3.0,0.0,0.0,818.5841665082144,0.0,1303.4327406077664,20625.0,0,70,1,3590,201105686,,,200.0,,0.0,1.0,3.0,0.0,1.0,1.0,2441.3882865576525,0.0,600.0,750.0,0.0,14495.0,0,5,5,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2122.0169071159808,0.10288566822380513,0.14639647513735637,14495.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -5687,2,51.0,3,0.0,7,112,1,77,38,10.0,0.0,0.0,624.2463705817195,0.0,1495.3750909504156,31002.0,50,50,2,3592,201105687,118.0,118.0,,800.0,1.0,4.0,3.0,0.0,2.0,1.5,2496.4806798965415,1200.0,0.0,118.0,0.0,66542.0,5,1,3,63.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2119.621461532135,0.06837047485749742,0.03185388869484138,44361.333333333336,10,5,10,10_0,10_2,10_0_0 -5688,2,51.0,3,0.0,1,112,2,75,34,7.0,0.0,2081.88947934516,955.0148609262501,0.0,0.0,47337.0,20,10,1,3593,201105688,,,360.0,,1.0,2.0,7.0,3.0,5.0,3.0,859.8049810370094,0.0,700.0,0.0,0.0,67126.0,5,1,1,270.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3036.90434027141,0.0641549810987475,0.04524184876607291,22375.333333333332,7,4,7,7_1,7_0,7_1_0 -5689,1,40.0,3,285.0,99,111,1,68,67,2.0,0.0,0.0,436.5782221377143,0.0,208.54923849724264,15571.0,50,71,2,3595,201105689,,,190.0,16.0,2.0,0.0,4.0,5.0,7.0,3.2,2037.8342688277203,0.0,320.0,120.0,0.0,39124.0,1,1,3,85.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,645.127460634957,0.04143134420621392,0.016489302234816403,12226.25,2,1,2_1,2_0_1,2_3_1,2_0_0 -5690,2,67.0,1,0.0,1,111,2,74,75,10.0,2696.9752155360998,0.0,1378.5003264945044,0.0,367.7359768320162,28756.0,60,41,1,3597,201105690,,,250.0,,0.0,3.0,9.0,0.0,2.0,1.5,1964.105386511402,342.0,880.0,0.0,0.0,72178.0,5,5,1,300.0,7,5.0,3,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4443.21151886262,0.15451424116228335,0.061559083361448365,48118.666666666664,10,5,10,10_1,10_2,10_1_0 -5691,2,58.0,1,0.0,5,111,2,75,75,8.0,1741.9286980344925,138.792631956344,1207.9140282340582,180.74267336427695,1002.1342994369564,40439.0,33,33,1,36,201105691,,,209.0,,0.0,3.0,6.0,0.0,2.0,1.5,2565.974154592133,932.0,530.0,0.0,0.0,43057.0,5,5,1,120.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4271.512331026128,0.10562853510289888,0.0992059904551206,28704.666666666668,8,4,8,8_1,8_3,8_0_0 -5692,2,41.0,3,0.0,8,221,2,68,62,4.0,2696.9752155360998,0.0,532.0797082303393,312.82385774586396,0.0,38458.0,41,50,1,360,201105692,,,260.0,,2.0,0.0,6.0,4.0,6.0,2.9,2175.8486789239,0.0,390.0,0.0,0.0,42653.0,1,4,2,134.0,1,2.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3541.8787815123032,0.092097321272877,0.08303938249389968,14707.931034482759,3,2,3_0,3_1_0,3_1_0,3_0_0 -5693,2,31.0,1,0.0,9,112,2,38,37,9.0,1960.8596272956584,0.0,769.4691165177215,0.0,0.0,43412.0,20,12,1,3600,201105693,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1559.7824023259648,0.0,564.0,0.0,0.0,64951.0,1,1,2,125.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2730.32874381338,0.06289341066556205,0.04203674683705223,36083.88888888889,9,5,9,9_1,9_0,9_0_0 -5694,1,58.0,5,264.0,5,111,1,85,78,2.0,0.0,0.0,1009.5871386934643,0.0,0.0,21284.0,60,70,2,3601,201105694,,,448.0,,0.0,2.0,4.0,0.0,2.0,1.5,2558.2325193795623,0.0,740.0,0.0,0.0,14200.0,6,7,3,62.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1009.5871386934643,0.0474340884558102,0.0710976858234834,9466.666666666666,1,1,1_1,1_0_1,1_3_1,1_0_0 -5695,2,58.0,3,0.0,1,300,5,0,52,5.0,0.0,416.377895869032,791.2980276246072,208.54923849724264,0.0,11487.0,0,50,1,3603,201105695,,,,,1.0,1.0,6.0,0.0,1.0,1.0,1359.696240021512,0.0,580.0,0.0,0.0,18910.0,0,1,1,200.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1416.2251619908818,0.12328938469494923,0.07489292236863468,18910.0,5,3,5,5_1,5_0,5_1_0 -5696,2,88.0,4,0.0,2,111,2,0,78,5.0,2538.3296146222115,0.0,245.5752499524643,48.661488982689946,0.0,18221.0,0,71,1,3604,201105696,,,208.0,,0.0,1.0,4.0,0.0,1.0,1.0,2700.3813259570693,0.0,180.0,0.0,0.0,18206.0,0,5,1,95.0,6,5.0,1,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2832.566353557366,0.15545614146080708,0.15558422242982345,18206.0,5,3,5,5_1,5_2,5_0_1 -5697,2,43.0,1,0.0,1,111,1,0,37,10.0,0.0,0.0,163.71683330164288,0.0,0.0,37789.0,0,31,2,3605,201105697,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4389.90682628865,0.0,120.0,0.0,0.0,42112.0,0,1,2,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,163.71683330164288,0.004332393905677389,0.003887652766471383,42112.0,10,5,10,10_0,10_4,10_1_0 -5698,2,56.0,3,0.0,1,112,2,0,13,7.0,1586.456009138882,0.0,654.8673332065715,52.13730962431066,0.0,16509.0,0,70,1,3606,201105698,,,,,1.0,2.0,7.0,0.0,1.0,1.0,2187.1615548941563,0.0,480.0,0.0,0.0,22878.0,0,1,5,150.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2293.460651969764,0.13892183972195554,0.10024742774585908,22878.0,7,4,7,7_1,7_0,7_1_0 -5699,2,45.0,3,0.0,1,221,5,22,63,3.0,793.228004569441,888.2728445206016,1023.230208135268,187.69431464751835,0.0,56849.0,41,50,1,3607,201105699,,,450.0,,2.0,1.0,8.0,3.0,5.0,2.8,1153.7759816198836,0.0,750.0,0.0,0.0,38840.0,1,1,1,153.0,1,3.0,4,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2892.425371872829,0.050879089726694034,0.07447027219034061,13871.428571428572,3,2,3_0,3_1_0,3_1_0,3_1_0 -5700,2,70.0,2,0.0,4,111,2,78,75,7.0,3280.791026899208,69.396315978172,1525.6420103935409,173.79103208103552,1836.5293813715894,36680.0,71,41,1,3610,201105700,,,300.0,,0.0,1.0,3.0,0.0,2.0,1.5,4090.6777148519386,1708.0,467.0,0.0,0.0,36399.0,5,5,1,66.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,6886.149766723545,0.18773581697719588,0.1891851360400985,24266.0,7,4,7,7_1,7_4,7_0_1 -5701,2,42.0,1,0.0,1,212,2,0,48,7.0,1110.5192063972174,0.0,382.0059443705,43.44775802025888,0.0,13142.0,0,71,1,3611,201105701,,,108.0,,1.0,0.0,4.0,0.0,1.0,1.0,2806.1161377509434,0.0,280.0,0.0,0.0,23369.0,0,1,3,150.0,3,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1535.9729087879762,0.11687512622036038,0.06572694205092114,23369.0,7,4,7,7_1,7_0,7_1_0 -5702,2,33.0,3,0.0,2,111,1,0,54,8.0,0.0,0.0,177.35990274344644,0.0,234.61789330939797,23733.0,0,41,2,3613,201105702,,,,282.0,1.0,0.0,2.0,0.0,1.0,1.0,6498.449375764155,0.0,130.0,135.0,0.0,27610.0,0,1,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,411.9777960528444,0.017358858806423308,0.014921325463703165,27610.0,8,4,8,8_0,8_4,8_0_1 -5703,1,38.0,4,80.0,4,111,2,0,67,2.0,0.0,0.0,302.8761416080393,48.661488982689946,0.0,6453.0,0,50,1,3614,201105703,,,,,1.0,0.0,1.0,0.0,1.0,1.0,1751.696595040164,0.0,222.0,0.0,0.0,10460.0,0,4,3,28.0,6,5.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,351.53763059072924,0.054476620268205364,0.033607804071771434,10460.0,2,1,2_1,2_1_1,2_2_1,2_0_1 -5704,2,67.0,3,0.0,3,300,4,0,77,1.0,0.0,0.0,2128.318832921357,43.44775802025888,0.0,14363.0,0,70,1,3616,201105704,,,221.0,,0.0,3.0,3.0,0.0,1.0,1.0,2214.065606345191,0.0,1560.0,0.0,0.0,9080.0,0,5,5,93.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2171.766590941616,0.15120563885968225,0.2391813426147154,9080.0,1,1,1_0,1_1_0,1_0_0,1_0_1 -5705,2,45.0,1,0.0,1,111,1,0,38,10.0,0.0,0.0,422.93515269591074,0.0,0.0,36814.0,0,20,2,3618,201105705,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3582.248492508513,0.0,310.0,0.0,0.0,72611.0,0,1,1,41.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,422.93515269591074,0.011488432463082272,0.005824670541597151,72611.0,10,5,10,10_0,10_4,10_1_0 -5706,0,49.0,3,0.0,3,111,1,55,56,3.0,0.0,0.0,571.6446096115696,0.0,208.54923849724264,29392.0,70,50,2,3622,201105706,,,310.0,,3.0,0.0,4.0,4.0,6.0,3.3,1129.864909792292,0.0,419.0,120.0,0.0,47100.0,1,1,5,67.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,780.1938481088123,0.026544428691780496,0.016564625225240177,14272.727272727274,3,2,3_0,3_0_0,3_2_0,3_0_1 -5707,2,56.0,3,0.0,7,221,2,62,62,8.0,0.0,0.0,818.5841665082144,0.0,1390.3282566482842,27946.0,60,60,1,3623,201105707,,,500.0,,4.0,0.0,5.0,2.0,4.0,2.5,3148.4123648298396,0.0,600.0,800.0,0.0,67816.0,1,1,1,90.0,1,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2208.9124231564983,0.07904216786504324,0.03257214260877224,27126.4,8,4,8,8_1,8_1,8_0_0 -5708,2,76.0,4,0.0,8,111,4,78,72,6.0,0.0,0.0,982.3009998098572,139.0328256648284,0.0,18788.0,31,70,2,3624,201105708,,,,630.0,0.0,4.0,3.0,0.0,2.0,1.5,3792.871992519694,0.0,720.0,0.0,0.0,29480.0,5,5,3,78.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1121.3338254746857,0.05968351210744548,0.038037103984894356,19653.333333333332,6,3,6,6_0,6_3,6_0_0 -5709,2,62.0,3,0.0,5,112,4,77,78,5.0,0.0,0.0,1759.9559579926608,173.79103208103552,0.0,20586.0,71,71,1,3625,201105709,,,,,0.0,1.0,4.0,0.0,2.0,1.5,4927.631600367207,0.0,1290.0,0.0,0.0,27350.0,5,5,1,76.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1933.7469900736965,0.09393505246641876,0.07070372907033624,18233.333333333332,5,3,5,5_1,5_0,5_0_0 -5710,2,47.0,1,0.0,6,112,1,54,38,9.0,0.0,0.0,1023.230208135268,0.0,3475.8206416207104,99539.0,44,10,1,3626,201105710,,,,,2.0,0.0,8.0,3.0,5.0,2.6,1432.589886805068,0.0,750.0,2000.0,0.0,80670.0,4,1,3,150.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4499.050849755979,0.04519887531275157,0.055771053052633926,31026.923076923074,9,5,9,9_1,9_0,9_0_0 -5711,2,57.0,3,0.0,5,112,2,85,21,2.0,2379.684013708323,0.0,859.5133748336251,0.0,0.0,35196.0,71,50,1,3627,201105711,,,,,1.0,2.0,6.0,0.0,2.0,1.5,7230.893196830755,0.0,630.0,0.0,0.0,15570.0,6,1,1,100.0,9,1.0,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3239.1973885419484,0.09203311139169078,0.2080409369648008,10380.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -5712,2,47.0,5,0.0,4,111,2,62,64,5.0,0.0,0.0,2107.854228758652,104.27461924862132,0.0,51415.0,71,71,1,3628,201105712,,,385.0,,2.0,2.0,5.0,1.0,3.0,2.0,3510.5932151680736,0.0,1545.0,0.0,0.0,34684.0,1,1,2,90.0,6,5.0,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2212.1288480072735,0.043024970300637434,0.06377951931747415,17342.0,5,3,5,5_1,5_2,5_0_1 -5713,2,39.0,2,0.0,4,111,5,56,47,5.0,0.0,0.0,2046.460416270536,0.0,0.0,22552.0,50,60,1,3629,201105713,,,192.0,,2.0,0.0,4.0,2.0,4.0,2.3,2477.022737819163,0.0,1500.0,0.0,0.0,39480.0,1,1,2,84.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2046.460416270536,0.09074407663491202,0.05183537021961844,17165.217391304348,5,3,5,5_1,5_3,5_0_1 -5714,2,46.0,3,0.0,1,400,2,0,42,2.0,0.0,1249.133687607096,654.8673332065715,243.30744491344973,0.0,41074.0,0,50,1,363,201105714,,,,,1.0,1.0,6.0,2.0,3.0,1.6,2066.1891785743887,0.0,480.0,0.0,0.0,15329.0,0,1,2,120.0,0,1.0,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2147.308465727117,0.05227901995732378,0.14008144469483444,9580.625,1,1,1_0,1_1_0,1_1_0,1_1_0 -5715,2,49.0,3,0.0,8,112,2,37,62,7.0,0.0,0.0,717.625452638868,0.0,2309.682816356962,52927.0,60,71,1,3630,201105715,,,80.0,,2.0,2.0,6.0,2.0,4.0,2.5,1928.863014528221,0.0,526.0,1329.0,0.0,59165.0,1,1,2,160.0,8,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3027.30826899583,0.05719780582681486,0.051167214890489816,23666.0,7,4,7,7_1,7_1,7_0_0 -5716,2,33.0,3,0.0,9,112,4,47,62,6.0,0.0,205.4130952953891,1214.233180320518,107.75043989024202,0.0,58667.0,50,41,1,3631,201105716,,,233.0,,2.0,0.0,4.0,2.0,4.0,2.1,3245.4990705799214,0.0,890.0,0.0,0.0,42563.0,1,1,2,115.0,9,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1527.3967155061491,0.026035023360767538,0.035885551194844094,20268.095238095237,6,3,6,6_1,6_1,6_0_0 -5717,2,22.0,4,0.0,3,111,1,0,46,1.0,0.0,0.0,1173.3039719951073,0.0,0.0,30805.0,0,43,2,3634,201105717,,,800.0,,1.0,0.0,3.0,4.0,5.0,3.0,1979.748108826466,0.0,860.0,0.0,0.0,21556.0,0,2,3,54.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1173.3039719951073,0.038088101671647695,0.05443050528832378,7185.333333333333,1,1,1_0,1_0_0,1_4_0,1_0_1 -5718,2,90.0,2,0.0,1,112,2,0,77,3.0,0.0,0.0,504.79356934673217,2318.372367961014,0.0,12253.0,0,71,1,3635,201105718,,,112.0,,0.0,1.0,5.0,0.0,1.0,1.0,2983.327526044451,0.0,370.0,0.0,0.0,12655.0,0,5,5,130.0,6,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2823.165937307746,0.23040609951095617,0.22308699623135092,12655.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -5719,2,68.0,2,0.0,5,120,2,77,77,5.0,0.0,0.0,609.8452040486197,2843.221284845741,0.0,31607.0,50,50,1,3636,201105719,,,,,0.0,9.0,7.0,0.0,2.0,1.5,1953.357654953439,0.0,447.0,0.0,0.0,27648.0,5,5,2,118.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3453.066488894361,0.10925005501611545,0.12489389789114443,18432.0,5,3,5,5_1,5_0,5_0_0 -5720,2,62.0,5,0.0,2,111,1,78,78,2.0,0.0,0.0,540.2655498954215,0.0,552.655482017693,19031.0,70,70,2,3637,201105720,,,,209.0,0.0,3.0,3.0,0.0,2.0,1.5,1990.8260910514828,0.0,396.0,318.0,0.0,15750.0,5,5,3,60.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1092.9210319131143,0.05742846050723106,0.06939181155003901,10500.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -5721,1,74.0,3,248.0,6,111,4,0,77,5.0,0.0,0.0,682.1534720901786,0.0,0.0,11601.0,0,71,1,3638,201105721,,,,,0.0,6.0,2.0,0.0,1.0,1.0,6847.01619311948,0.0,500.0,0.0,0.0,18349.0,0,5,4,40.0,4,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,682.1534720901786,0.0588012647263321,0.03717660210857151,18349.0,5,3,5,5_1,5_2,5_0_0 -5722,2,28.0,4,0.0,7,221,2,0,56,3.0,0.0,444.1364222603008,1091.4455553442858,46.92357866187959,0.0,13205.0,0,42,1,3640,201105722,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2678.632814724935,0.0,800.0,0.0,0.0,14390.0,0,1,3,50.0,1,2.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1582.5055562664663,0.11984139009969454,0.10997258903867035,14390.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -5723,2,36.0,3,0.0,1,111,2,0,43,3.0,0.0,0.0,1091.4455553442858,0.0,0.0,35842.0,0,33,2,3641,201105723,,,,470.0,1.0,0.0,2.0,0.0,1.0,1.0,3897.833583744314,0.0,800.0,0.0,0.0,13798.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1091.4455553442858,0.03045158069706729,0.07910172165127452,13798.0,3,2,3_0,3_0_0,3_4_0,3_1_0 -5724,2,58.0,2,0.0,1,112,5,74,72,8.0,0.0,0.0,1273.331230264241,173.79103208103552,545.1524568825504,36740.0,50,50,1,3643,201105724,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1363.0209283182312,507.0,740.0,0.0,0.0,42268.0,4,5,1,150.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1992.274719227827,0.05422631244495991,0.047134350317683045,28178.666666666668,8,4,8,8_1,8_0,8_1_0 -5725,2,64.0,4,0.0,1,400,5,71,72,1.0,0.0,1068.7032660638488,526.6224804536179,604.7927916420036,0.0,17827.0,70,50,1,3644,201105725,,,401.0,,0.0,1.0,4.0,0.0,2.0,1.5,3942.722392408795,0.0,386.0,0.0,0.0,12187.0,5,5,5,108.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2200.11853815947,0.12341496259378863,0.18052995307782638,8124.666666666667,1,1,1_0,1_1_0,1_0_0,1_1_0 -5726,2,44.0,1,0.0,2,111,6,46,62,4.0,0.0,0.0,2453.819517265429,0.0,681.9852477724717,33878.0,31,31,1,3647,201105726,,,300.0,,2.0,0.0,7.0,3.0,5.0,2.6,1372.1327821314571,311.0,1680.0,200.0,0.0,42761.0,1,1,1,120.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3135.804765037901,0.09256168501794382,0.07333328886223196,16446.53846153846,4,2,4_0,4_1_0,4_3_0,4_0_1 -5727,2,71.0,3,0.0,5,111,5,71,71,2.0,0.0,610.6875806079136,1091.4455553442858,333.6787815955882,0.0,19714.0,71,71,1,3648,201105727,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2858.469589633234,0.0,800.0,0.0,0.0,18190.0,5,5,1,95.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2035.8119175477875,0.10326731853240273,0.11191929178382559,12126.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_0 -5728,2,30.0,3,0.0,1,112,2,52,53,6.0,0.0,0.0,1176.0325858834678,53.87521994512101,0.0,29464.0,43,20,1,3649,201105728,,,209.0,,2.0,0.0,6.0,1.0,3.0,1.8,1891.043869975247,0.0,862.0,0.0,0.0,37044.0,1,1,2,169.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1229.9078058285888,0.04174273030914298,0.03320126891881516,20580.0,6,3,6,6_1,6_0,6_1_0 -5729,0,70.0,2,0.0,1,111,2,0,77,4.0,0.0,0.0,3206.1213188238394,0.0,1543.2643648795954,16887.0,0,50,1,365,201105729,,,120.0,,0.0,1.0,4.0,0.0,1.0,1.0,1357.8490137365425,0.0,2350.0,888.0,0.0,16394.0,0,5,5,100.0,7,6.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4749.385683703435,0.2812450810507156,0.2897026768148978,16394.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -5730,2,57.0,4,0.0,5,111,2,0,46,7.0,0.0,0.0,540.2655498954215,0.0,1042.7461924862132,32361.0,0,50,2,3651,201105730,,,,,1.0,1.0,4.0,0.0,1.0,1.0,3270.104077034182,0.0,396.0,600.0,0.0,21920.0,0,1,1,80.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1583.0117423816346,0.04891726900842479,0.07221768897726435,21920.0,7,4,7,7_0,7_3,7_0_0 -5731,0,84.0,3,0.0,1,400,4,0,71,1.0,0.0,804.9972653467952,1241.5193192041252,145.98446694806984,0.0,8058.0,0,70,1,3652,201105731,,,,,0.0,3.0,2.0,0.0,1.0,1.0,1885.4071986971467,0.0,910.0,0.0,0.0,9288.0,0,5,5,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2192.5010514989904,0.2720899790889787,0.23605739141892662,9288.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -5732,2,64.0,1,0.0,4,112,6,74,74,10.0,1034.3693179585512,0.0,3466.3547991870428,243.30744491344973,2325.768765753365,54385.0,44,10,1,3653,201105732,,,426.0,,0.0,4.0,8.0,0.0,2.0,1.5,2195.294078358089,2163.0,1716.0,0.0,0.0,67630.0,5,5,1,253.0,9,3.0,3,4,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,7069.800327812409,0.12999540917187477,0.1045364531688956,45086.666666666664,10,5,10,10_1,10_1,10_0_1 -5733,2,57.0,3,0.0,1,111,1,0,56,7.0,1332.6230476766611,0.0,368.36287492869644,0.0,234.61789330939797,29861.0,0,71,2,3654,201105733,840.0,840.0,180.0,253.0,1.0,2.0,2.0,0.0,1.0,1.0,2687.6159282794165,0.0,270.0,135.0,0.0,22758.0,0,1,3,60.0,6,4.0,1,2,1,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1935.6038159147556,0.06482046200444579,0.08505157816656805,22758.0,7,4,7,7_0,7_2,7_1_0 -5734,1,74.0,3,148.0,1,111,4,0,78,2.0,0.0,0.0,573.00891655575,0.0,0.0,5648.0,0,71,2,3655,201105734,,,,163.0,0.0,2.0,2.0,0.0,1.0,1.0,7228.8049696361795,0.0,420.0,0.0,0.0,12016.0,0,5,3,37.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,573.00891655575,0.10145342007006905,0.04768716016609105,12016.0,2,1,2_1,2_0_1,2_4_1,2_1_0 -5735,2,36.0,3,0.0,9,111,2,43,46,8.0,0.0,0.0,1607.153580244461,0.0,0.0,40775.0,33,20,1,3656,201105735,,,157.0,,2.0,0.0,4.0,1.0,3.0,1.8,1771.2664947201654,0.0,1178.0,0.0,0.0,44585.0,1,1,2,100.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1607.153580244461,0.03941517057619769,0.03604695705381767,24769.444444444445,7,4,7,7_1,7_3,7_0_0 -5736,2,77.0,3,0.0,4,111,1,77,75,6.0,0.0,0.0,570.0355236789,0.0,540.801919319152,32007.0,50,50,2,3657,201105736,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1733.3641478490688,309.0,300.0,120.0,0.0,29413.0,5,5,1,100.0,8,6.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1110.837442998052,0.034706078139096194,0.037766886852685956,19608.666666666668,6,3,6,6_0,6_2,6_0_1 -5737,2,49.0,4,0.0,7,112,4,78,52,7.0,0.0,416.377895869032,2101.0326940377504,0.0,0.0,39928.0,70,42,1,366,201105737,,,650.0,,1.0,0.0,5.0,1.0,3.0,2.0,3987.648798278775,0.0,1540.0,0.0,0.0,44020.0,5,1,2,100.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2517.410589906782,0.06304875250217347,0.0571878825512672,22010.0,7,4,7,7_1,7_0,7_0_0 -5738,2,44.0,2,0.0,2,112,2,0,38,9.0,0.0,0.0,709.4396109737858,0.0,1998.5968689319086,57757.0,0,31,1,3661,201105738,,,560.0,,1.0,1.0,6.0,1.0,2.0,1.3,3375.691597731497,0.0,520.0,1150.0,0.0,46382.0,0,1,2,130.0,8,0.0,2,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2708.0364799056943,0.046886723339260944,0.05838550471962602,35678.46153846154,9,5,9,9_1,9_0,9_0_1 -5739,2,41.0,5,0.0,99,112,6,0,38,5.0,0.0,0.0,1856.8217510294662,0.0,0.0,34653.0,0,31,1,3662,201105739,,,270.0,,2.0,0.0,5.0,1.0,3.0,1.8,2921.9271120460594,0.0,1361.0,0.0,0.0,31160.0,0,1,2,100.0,9,1.0,5,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1856.8217510294662,0.05358329007674563,0.05958991498810867,17311.11111111111,5,3,5,5_1,5_1,5_0_0 -5740,2,74.0,3,0.0,6,400,4,72,72,3.0,0.0,895.2124761184187,914.0856526008394,391.02982218232995,0.0,21113.0,50,70,1,3663,201105740,,,,,0.0,5.0,6.0,0.0,2.0,1.5,1317.0804964126041,0.0,670.0,0.0,0.0,19760.0,5,5,1,150.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2200.327950901588,0.10421673617683834,0.11135262909420991,13173.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -5741,2,56.0,2,0.0,5,111,2,0,37,9.0,0.0,0.0,311.0619832731214,0.0,1220.0130452088695,20730.0,0,41,2,3664,201105741,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3299.5845563110574,0.0,228.0,702.0,0.0,29682.0,0,1,1,65.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1531.075028481991,0.0738579367333329,0.05158260994818378,29682.0,9,5,9,9_0,9_3,9_0_0 -5742,2,58.0,2,0.0,4,111,2,38,43,9.0,0.0,0.0,682.1534720901786,0.0,2606.865481215533,46269.0,50,33,1,3666,201105742,,,346.0,,2.0,1.0,5.0,1.0,3.0,2.0,1513.072300279778,0.0,500.0,1500.0,0.0,59547.0,1,1,1,180.0,5,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3289.0189533057114,0.07108472094287129,0.05523399924942837,29773.5,9,5,9,9_1,9_2,9_0_1 -5743,2,65.0,2,0.0,4,111,1,74,74,8.0,0.0,0.0,171.66775190997288,0.0,1918.952248830388,30629.0,20,31,8,3667,201105743,900.0,900.0,100.0,,0.0,3.0,2.0,0.0,2.0,1.5,2900.218014646737,330.0,0.0,900.0,0.0,42815.0,5,5,1,80.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2090.620000740361,0.068256227782179,0.048829148680143895,28543.333333333332,8,4,8,8_0,8_2,8_0_1 -5744,2,56.0,2,0.0,8,112,2,45,33,10.0,0.0,0.0,697.1608484761625,0.0,1715.3174866398206,72890.0,50,31,1,3668,201105744,,,780.0,,2.0,1.0,7.0,1.0,3.0,2.0,1883.5289813361505,0.0,511.0,987.0,0.0,84704.0,1,1,1,125.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2412.478335115983,0.03309752140370398,0.02848127992911767,42352.0,10,5,10,10_1,10_1,10_0_0 -5745,2,38.0,2,0.0,4,111,1,38,38,10.0,0.0,0.0,682.1534720901786,0.0,0.0,64223.0,12,10,2,3669,201105745,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2859.9690457724923,0.0,500.0,0.0,0.0,82393.0,1,1,2,58.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,682.1534720901786,0.010621638230698949,0.008279264890102056,45773.88888888889,10,5,10,10_0,10_4,10_0_1 -5746,2,28.0,2,0.0,3,111,1,0,54,7.0,0.0,0.0,484.3289651840268,93.84715732375918,0.0,24324.0,0,20,2,367,201105746,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3024.4857132160855,0.0,355.0,0.0,0.0,22401.0,0,1,2,55.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,578.176122507786,0.023769779744605573,0.025810281795803133,22401.0,7,4,7,7_0,7_3,7_0_1 -5747,2,19.0,1,0.0,9,111,2,0,84,1.0,0.0,0.0,148.70945691565893,0.0,231.14207266777726,14416.0,0,41,1,3671,201105747,,,138.0,,0.0,0.0,7.0,0.0,1.0,1.0,3025.881811079487,0.0,109.0,133.0,0.0,1857.0,0,3,3,120.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,379.8515295834362,0.026349301441692303,0.20455117371213583,1857.0,1,1,1_0,1_1_0,1_3_0,1_0_0 -5748,2,51.0,2,0.0,5,111,2,54,22,9.0,0.0,0.0,810.3983248431322,0.0,3206.4445418951054,47597.0,41,50,1,3673,201105748,,,294.0,,2.0,2.0,5.0,0.0,2.0,1.5,1970.4478326446906,0.0,594.0,1845.0,0.0,55130.0,1,1,2,134.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4016.8428667382377,0.08439277405589087,0.07286128907560743,36753.333333333336,9,5,9,9_1,9_2,9_0_0 -5749,2,78.0,3,0.0,3,221,2,72,72,3.0,3521.9323402883183,0.0,319.2478249382036,225.92834170534618,0.0,21663.0,71,71,1,3674,201105749,,,,,0.0,0.0,4.0,0.0,2.0,1.5,3364.8804551886806,0.0,234.0,0.0,0.0,20499.0,5,5,1,65.0,1,2.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4067.1085069318683,0.18774447246142587,0.19840521522668755,13666.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -5750,2,36.0,2,0.0,2,112,2,55,37,7.0,2379.684013708323,0.0,327.43366660328576,86.89551604051776,0.0,44427.0,10,31,1,3676,201105750,,,240.0,,2.0,0.0,3.0,1.0,3.0,1.8,3422.455503385538,0.0,240.0,0.0,0.0,44009.0,4,1,2,65.0,9,0.0,4,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2794.0131963521267,0.06288998123555781,0.06348731387561923,24449.444444444445,7,4,7,7_1,7_0,7_0_1 -5751,2,44.0,3,0.0,9,300,4,67,63,2.0,0.0,0.0,2523.9678467336607,0.0,0.0,23460.0,50,50,1,3677,201105751,,,320.0,,4.0,0.0,6.0,3.0,5.0,2.8,1121.794323079257,0.0,1850.0,0.0,0.0,33074.0,1,1,2,110.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2523.9678467336607,0.10758601222223618,0.07631274858600898,11812.142857142859,2,1,2_0,2_1_0,2_0_0,2_0_0 -5752,2,61.0,3,0.0,6,111,2,77,77,7.0,0.0,0.0,1319.2848150224054,0.0,0.0,20022.0,70,70,1,3678,201105752,,,210.0,,0.0,2.0,4.0,0.0,2.0,1.5,2371.070649254485,0.0,967.0,0.0,0.0,34660.0,5,5,1,98.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1319.2848150224054,0.06589175981532341,0.03806361266654372,23106.666666666668,7,4,7,7_1,7_2,7_0_0 -5753,2,77.0,3,0.0,1,400,2,0,78,3.0,0.0,0.0,493.8791137932893,0.0,2422.646987209635,20999.0,0,70,1,3679,201105753,,,234.0,,0.0,1.0,4.0,0.0,1.0,1.0,3167.853278867634,0.0,362.0,1394.0,0.0,13388.0,0,5,5,80.0,0,1.0,1,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2916.5261010029244,0.1388888090386649,0.21784628779525878,13388.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -5754,1,32.0,3,470.0,2,111,6,0,85,2.0,0.0,0.0,1091.4455553442858,0.0,312.82385774586396,29661.0,0,50,2,368,201105754,,,,80.0,0.0,0.0,3.0,3.0,4.0,1.9,2351.460608037366,0.0,800.0,180.0,0.0,23415.0,0,6,3,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1404.2694130901498,0.047343967266449204,0.05997306910485372,12323.684210526317,2,1,2_1,2_0_1,2_3_1,2_0_1 -5755,1,38.0,4,78.0,1,300,5,0,68,5.0,0.0,749.4802125642576,1146.0178331115,583.9378677922793,0.0,27562.0,0,50,1,3680,201105755,,,720.0,,1.0,5.0,3.0,1.0,3.0,2.0,2340.5303410162105,0.0,840.0,0.0,0.0,37349.0,0,1,3,95.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2479.435913468037,0.08995849043857619,0.06638560372347418,18674.5,5,3,5,5_1,5_0,5_1_0 -5756,2,69.0,4,0.0,1,400,5,0,13,2.0,0.0,0.0,1773.5990274344645,304.13430614181215,0.0,17484.0,0,50,1,3682,201105756,,,250.0,,1.0,3.0,4.0,0.0,1.0,1.0,1546.2942334381753,0.0,1300.0,0.0,0.0,9450.0,0,1,1,123.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2077.7333335762764,0.11883626936492087,0.2198659612250028,9450.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -5757,2,49.0,4,0.0,1,111,2,52,62,7.0,0.0,0.0,641.2242637647679,0.0,2598.175929611481,27632.0,60,60,1,3683,201105757,,,480.0,,3.0,1.0,4.0,1.0,3.0,2.0,1131.799170425298,0.0,470.0,1495.0,0.0,46037.0,1,1,1,68.0,4,4.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3239.400193376249,0.11723364915229621,0.0703651452826259,23018.5,7,4,7,7_1,7_2,7_1_0 -5758,2,40.0,1,0.0,4,111,1,67,62,4.0,0.0,0.0,615.3024318253412,0.0,95.58506764456953,49939.0,71,50,2,3687,201105758,,,203.0,315.0,2.0,0.0,4.0,2.0,4.0,2.1,3385.5834599260174,0.0,451.0,55.0,0.0,34475.0,1,1,3,70.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,710.8874994699107,0.014235116831933172,0.02062037706946804,16416.666666666664,4,2,4_0,4_0_0,4_3_0,4_0_1 -5759,2,52.0,2,0.0,5,400,2,11,67,6.0,2379.684013708323,0.0,409.2920832541072,215.50087978048404,0.0,21350.0,70,60,1,3688,201105759,,,300.0,,3.0,1.0,4.0,1.0,3.0,2.0,2983.2373151527445,0.0,300.0,0.0,0.0,38784.0,1,1,1,100.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3004.4769767429143,0.14072491694346204,0.07746691874852811,19392.0,6,3,6,6_1,6_0,6_0_0 -5760,2,44.0,2,0.0,9,300,4,55,48,9.0,0.0,0.0,1402.5075386174074,0.0,0.0,42296.0,50,31,1,3690,201105760,,,,,3.0,2.0,4.0,1.0,3.0,2.0,2415.757311335425,0.0,1028.0,0.0,0.0,67721.0,1,1,3,80.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1402.5075386174074,0.03315934222189822,0.02071008311480054,33860.5,9,5,9,9_1,9_0,9_0_0 -5761,2,58.0,3,0.0,4,111,2,85,64,4.0,0.0,0.0,253.76109161754644,0.0,469.23578661879594,13155.0,71,70,2,3692,201105761,,,,281.0,2.0,0.0,3.0,1.0,3.0,2.0,2889.9329897909506,0.0,186.0,270.0,0.0,31473.0,6,1,3,83.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,722.9968782363424,0.05495985391382306,0.022971972110581843,15736.5,4,2,4_0,4_0_0,4_3_0,4_0_1 -5762,1,42.0,4,246.0,99,111,2,0,85,3.0,0.0,0.0,354.7198054868929,0.0,0.0,6669.0,0,60,2,3693,201105762,,,,4.0,0.0,0.0,1.0,0.0,1.0,1.0,3014.83212931741,0.0,260.0,0.0,0.0,14170.0,0,7,3,25.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,354.7198054868929,0.0531893545489418,0.025033154939089124,14170.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -5763,2,37.0,2,0.0,8,111,2,22,37,7.0,0.0,0.0,955.0148609262501,0.0,2433.074449134497,46128.0,60,20,2,3694,201105763,,,,599.0,2.0,0.0,3.0,1.0,3.0,1.8,3768.2650839784997,0.0,700.0,1400.0,0.0,42131.0,1,1,3,71.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3388.0893100607473,0.07344973356878137,0.0804179656324499,23406.11111111111,7,4,7,7_0,7_3,7_0_0 -5764,2,59.0,3,0.0,5,120,2,77,77,7.0,0.0,0.0,791.2980276246072,0.0,2137.629694596737,31498.0,41,60,1,3695,201105764,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2698.1648164283424,0.0,580.0,1230.0,0.0,33370.0,5,4,1,96.0,0,2.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2928.927722221344,0.09298773643473694,0.08777128325505976,22246.666666666668,7,4,7,7_1,7_1,7_0_0 -5765,2,39.0,2,0.0,7,111,2,45,45,8.0,1427.810408224994,0.0,717.625452638868,608.2686122836243,0.0,48168.0,20,20,1,3696,201105765,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2372.946616780948,0.0,526.0,0.0,0.0,54414.0,1,1,2,120.0,8,7.0,4,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2753.7044731474866,0.05716875255662445,0.050606543778209404,25911.42857142857,8,4,8,8_1,8_3,8_0_0 -5766,2,60.0,2,0.0,1,111,1,0,52,10.0,0.0,0.0,1964.6019996197144,0.0,0.0,35115.0,0,60,8,3697,201105766,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4150.131135651029,0.0,1440.0,0.0,0.0,42490.0,0,1,1,67.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1964.6019996197144,0.055947657685311535,0.046236808651911376,42490.0,10,5,10,10_0,10_4,10_1_0 -5767,1,41.0,5,287.0,99,111,2,0,85,2.0,0.0,0.0,523.8938665652572,0.0,771.6321824397977,6459.0,0,71,1,3699,201105767,,,168.0,,0.0,2.0,4.0,0.0,1.0,1.0,2867.171144304186,0.0,384.0,444.0,0.0,11148.0,0,4,3,70.0,3,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1295.526049005055,0.20057687707153662,0.11621152215689406,11148.0,2,1,2_1,2_1_1,2_2_1,2_0_0 -5768,1,37.0,4,26.0,2,111,1,85,67,3.0,0.0,0.0,300.1475277196786,0.0,782.0596443646599,21641.0,71,71,2,37,201105768,,,,644.0,1.0,1.0,1.0,1.0,3.0,1.8,3247.041046674947,0.0,220.0,450.0,0.0,25364.0,6,1,3,25.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1082.2071720843385,0.05000726269970604,0.042667054568851066,14091.111111111111,3,2,3_1,3_0_1,3_4_1,3_0_1 -5769,1,39.0,3,15.0,99,111,6,53,56,7.0,0.0,0.0,463.8643610213215,0.0,1193.944390396714,46038.0,50,31,2,370,201105769,,,238.0,491.0,2.0,0.0,4.0,1.0,3.0,1.8,2653.5658941810443,0.0,340.0,687.0,0.0,43996.0,1,1,3,98.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1657.8087514180354,0.036009573643903635,0.037680897159242555,24442.222222222223,7,4,7,7_0,7_3,7_0_0 -5770,2,69.0,3,0.0,3,111,2,0,75,7.0,0.0,0.0,818.5841665082144,0.0,1737.9103208103552,28827.0,0,60,2,3700,201105770,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3180.5542000112464,0.0,600.0,1000.0,0.0,23865.0,0,5,1,57.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2556.4944873185696,0.0886840284219159,0.10712317147783657,23865.0,7,4,7,7_0,7_3,7_0_1 -5771,1,48.0,4,150.0,9,112,2,63,64,6.0,0.0,138.792631956344,2728.6138883607146,145.98446694806984,0.0,52356.0,50,50,1,3701,201105771,,,580.0,,2.0,2.0,8.0,2.0,4.0,2.5,1920.4071282025302,0.0,2000.0,0.0,0.0,50744.0,1,1,2,164.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3013.3909872651284,0.057555790879080304,0.05938418310076321,20297.6,6,3,6,6_1,6_0,6_0_0 -5772,2,57.0,1,0.0,2,111,2,77,52,6.0,0.0,0.0,2892.3307216623575,0.0,2954.447545377604,17874.0,70,71,1,3702,201105772,,,,,1.0,0.0,4.0,0.0,2.0,1.5,1924.53043217,0.0,2120.0,1700.0,0.0,32180.0,5,1,1,82.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5846.778267039961,0.3271107903681303,0.1816898156320684,21453.333333333332,6,3,6,6_1,6_3,6_0_1 -5773,0,63.0,2,0.0,1,111,1,75,43,8.0,0.0,0.0,1871.1784958187043,0.0,3867.679265101644,30620.0,44,31,2,3703,201105773,,,,,1.0,2.0,4.0,0.0,2.0,1.5,3730.93487554956,3597.0,0.0,0.0,0.0,38526.0,5,1,5,100.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,5738.8577609203485,0.18742187331549146,0.14896064374501242,25684.0,8,4,8,8_0,8_3,8_1_0 -5774,2,61.0,3,0.0,7,111,2,75,46,10.0,0.0,0.0,931.821642875184,0.0,2019.4517927816328,65537.0,50,50,1,3704,201105774,,,407.0,,1.0,1.0,5.0,0.0,2.0,1.5,1385.133748785874,0.0,683.0,1162.0,0.0,110095.0,5,1,1,160.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2951.2734356568167,0.04503217168403828,0.026806607345082126,73396.66666666667,10,5,10,10_1,10_3,10_0_0 -5775,2,61.0,2,0.0,8,111,2,78,78,8.0,0.0,0.0,618.0310457137018,0.0,1374.687063760991,30964.0,71,50,1,3705,201105775,,,273.0,,0.0,2.0,6.0,0.0,2.0,1.5,2282.2868649352877,0.0,453.0,791.0,0.0,39067.0,5,5,2,122.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1992.7181094746927,0.06435596529759374,0.05100770751464644,26044.666666666668,8,4,8,8_1,8_2,8_0_0 -5776,2,30.0,1,0.0,8,111,2,38,37,10.0,0.0,0.0,458.40713324460006,0.0,2085.4923849724264,70546.0,10,20,2,3706,201105776,,,284.0,,2.0,0.0,3.0,0.0,2.0,1.5,5368.6079107448395,0.0,336.0,1200.0,0.0,145359.0,1,1,2,74.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2543.8995182170265,0.03606015249931997,0.01750080502904551,96906.0,10,5,10,10_0,10_2,10_0_0 -5777,2,54.0,3,0.0,1,111,2,0,33,8.0,0.0,0.0,2017.8099704427484,0.0,0.0,49748.0,0,20,2,3709,201105777,,,,427.0,1.0,0.0,3.0,1.0,2.0,1.5,2536.443847420685,0.0,1479.0,0.0,0.0,38390.0,0,1,3,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2017.8099704427484,0.04056062495864655,0.05256082236110311,25593.333333333332,8,4,8,8_0,8_4,8_1_0 -5778,2,31.0,2,0.0,9,111,2,63,34,8.0,0.0,0.0,1964.6019996197144,0.0,0.0,53408.0,41,30,1,3710,201105778,,,233.0,,2.0,0.0,6.0,0.0,2.0,1.5,2262.127633971481,0.0,1440.0,0.0,0.0,42576.0,1,1,2,114.0,8,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1964.6019996197144,0.036784788788565656,0.046143414121094385,28384.0,8,4,8,8_1,8_2,8_0_0 -5779,2,39.0,4,0.0,6,111,2,0,52,6.0,0.0,0.0,1009.5871386934643,0.0,0.0,20759.0,0,50,2,3712,201105779,,,,,1.0,1.0,1.0,0.0,1.0,1.0,3253.299793508345,0.0,740.0,0.0,0.0,20910.0,0,1,2,28.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1009.5871386934643,0.04863370772645428,0.04828250304607672,20910.0,6,3,6,6_0,6_2,6_0_0 -5780,1,61.0,4,117.0,5,112,1,0,78,4.0,0.0,0.0,556.6372332255858,0.0,0.0,7945.0,0,70,2,3715,201105780,,,,162.0,0.0,3.0,3.0,0.0,1.0,1.0,2522.896478591077,0.0,408.0,0.0,0.0,15154.0,0,5,3,60.0,10,5.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,556.6372332255858,0.0700613257678522,0.036732033339420996,15154.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -5781,2,43.0,1,0.0,4,111,1,38,38,10.0,0.0,0.0,700.5774883970313,0.0,534.3999429400936,77834.0,10,12,2,3716,201105781,,,,900.0,2.0,4.0,4.0,0.0,2.0,1.5,3238.1898449507626,497.0,324.0,0.0,0.0,122073.0,1,1,3,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1234.977431337125,0.015866811821789,0.010116712387973794,81382.0,10,5,10,10_0,10_4,10_0_1 -5782,2,59.0,3,0.0,5,111,2,77,75,6.0,0.0,0.0,854.6973223881376,0.0,1766.6380407456215,28906.0,50,41,1,3718,201105782,,,604.0,,0.0,5.0,6.0,0.0,4.0,2.3,1694.0357222983882,1643.0,0.0,0.0,0.0,48406.0,5,5,1,96.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2621.335363133759,0.09068481848521964,0.054153108357099515,21046.08695652174,6,3,6,6_1,6_3,6_0_0 -5783,2,47.0,2,0.0,4,120,6,0,69,8.0,0.0,0.0,0.0,0.0,0.0,15801.0,0,50,1,3720,201105783,,,,,1.0,2.0,4.0,0.0,1.0,1.0,1680.434495371337,0.0,0.0,0.0,0.0,25816.0,0,1,3,80.0,0,1.0,1,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,25816.0,8,4,8,8_1,8_1,8_0_1 -5784,2,82.0,3,0.0,3,111,2,0,77,4.0,0.0,0.0,249.66817078500537,0.0,60.82686122836243,12140.0,0,50,1,3721,201105784,,,412.0,,0.0,3.0,3.0,0.0,1.0,1.0,3047.8543569518856,0.0,183.0,35.0,0.0,16268.0,0,6,1,62.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,310.4950320133678,0.025576197035697513,0.019086244898780906,16268.0,4,2,4_0,4_1_0,4_4_0,4_0_1 -5785,2,58.0,4,0.0,1,111,6,0,77,2.0,0.0,0.0,720.3540665272286,0.0,0.0,22976.0,0,12,2,3722,201105785,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3811.4068130588216,0.0,528.0,0.0,0.0,12300.0,0,4,1,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,720.3540665272286,0.03135245763088565,0.05856537126237631,12300.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -5786,2,45.0,2,0.0,9,111,2,56,65,9.0,0.0,0.0,1108.5575130913703,0.0,2291.3607211375042,40150.0,60,50,1,3723,201105786,,,800.0,,4.0,0.0,7.0,3.0,5.0,3.0,844.2486974328074,2131.0,0.0,0.0,0.0,106037.0,1,1,2,123.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3399.9182342288746,0.08468040433944893,0.032063508343586435,35345.666666666664,9,5,9,9_1,9_2,9_0_0 -5787,2,63.0,1,0.0,1,111,2,77,72,7.0,0.0,0.0,545.7227776721429,0.0,2433.074449134497,29318.0,50,31,1,3724,201105787,,,745.0,,0.0,2.0,4.0,0.0,2.0,1.5,2086.580684549935,0.0,400.0,1400.0,0.0,33008.0,5,5,3,135.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2978.79722680664,0.10160301612683813,0.09024470512623121,22005.333333333332,7,4,7,7_1,7_2,7_1_0 -5788,2,82.0,3,0.0,1,300,4,77,77,6.0,0.0,333.10231669522557,2037.1194013010106,43.44775802025888,1669.865415263512,20513.0,70,70,1,3725,201105788,,,156.0,,0.0,0.0,3.0,0.0,2.0,1.5,3058.9202691284677,1553.0,901.0,0.0,0.0,30941.0,5,5,1,60.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4083.5348912800073,0.19907058408228964,0.13197811613328617,20627.333333333332,6,3,6,6_1,6_0,6_1_0 -5789,2,51.0,3,0.0,10,111,4,0,46,8.0,0.0,0.0,1814.528235759875,0.0,0.0,15669.0,0,50,3,3726,201105789,,,250.0,,1.0,0.0,3.0,0.0,1.0,1.0,2373.8290078109903,0.0,1330.0,0.0,0.0,24929.0,0,1,1,70.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1814.528235759875,0.11580370385856628,0.0727878469156354,24929.0,8,4,8,8_0,8_2,8_0_0 -5790,1,49.0,5,362.0,6,111,2,0,68,2.0,0.0,0.0,540.2655498954215,0.0,437.9534008442095,10212.0,0,50,2,3729,201105790,,,,67.0,1.0,0.0,3.0,1.0,2.0,1.3,3047.787413094445,0.0,396.0,252.0,0.0,14014.0,0,4,3,68.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,978.218950739631,0.09579112326083343,0.06980297921647147,10780.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -5791,2,55.0,2,0.0,6,221,2,85,48,7.0,0.0,0.0,773.9943489259163,2817.152630033586,246.23256928225643,42429.0,50,71,1,373,201105791,,,235.0,,1.0,2.0,5.0,0.0,2.0,1.5,2952.9499696211797,229.0,480.0,0.0,0.0,34819.0,7,1,1,135.0,1,2.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3837.3795482417586,0.09044237545645098,0.11020935547378612,23212.666666666668,7,4,7,7_1,7_1,7_0_0 -5792,2,44.0,3,0.0,4,111,2,52,21,4.0,0.0,0.0,654.8673332065715,0.0,868.9551604051776,32126.0,50,71,1,3730,201105792,,,,,2.0,0.0,5.0,3.0,5.0,2.8,3153.952726278022,0.0,480.0,500.0,0.0,44261.0,1,1,3,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1523.822493611749,0.047432686721401635,0.03442810812254014,15807.500000000002,4,2,4_0,4_1_0,4_4_0,4_0_1 -5793,2,53.0,3,0.0,8,112,2,0,43,9.0,0.0,0.0,1432.5222913893751,111.22626053186274,0.0,29664.0,0,33,1,3731,201105793,,,316.0,,2.0,0.0,4.0,1.0,2.0,1.5,1727.8330352675011,0.0,1050.0,0.0,0.0,44861.0,0,1,3,70.0,8,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1543.7485519212378,0.05204114589809998,0.03441181765723541,29907.333333333332,9,5,9,9_1,9_1,9_0_0 -5794,0,29.0,5,0.0,3,112,5,0,54,6.0,0.0,0.0,1637.1683330164287,69.5164128324142,0.0,29764.0,0,42,1,3733,201105794,,,288.0,,2.0,0.0,4.0,1.0,3.0,1.8,2902.7523986954093,0.0,1200.0,0.0,0.0,34233.0,0,1,5,90.0,4,0.0,5,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1706.684745848843,0.05734057068434495,0.04985495708377422,19018.333333333332,5,3,5,5_1,5_0,5_0_1 -5795,2,33.0,1,0.0,1,111,2,0,37,10.0,0.0,0.0,327.43366660328576,0.0,2398.31624271829,61534.0,0,10,2,3734,201105795,,,,767.0,1.0,0.0,3.0,0.0,1.0,1.0,2870.016891525838,0.0,240.0,1380.0,0.0,48502.0,0,1,3,85.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2725.749909321576,0.04429664753342179,0.05619871158553413,48502.0,10,5,10,10_0,10_3,10_1_0 -5796,2,39.0,3,0.0,1,120,5,56,48,5.0,0.0,832.755791738064,1719.0267496672502,208.54923849724264,0.0,42410.0,50,31,1,3735,201105796,,,415.0,,3.0,0.0,6.0,2.0,4.0,2.3,1535.9828489588956,0.0,1260.0,0.0,0.0,41302.0,1,1,3,145.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2760.3317799025567,0.06508681395667429,0.06683288411947501,17957.391304347828,5,3,5,5_1,5_0,5_1_0 -5797,2,55.0,3,0.0,5,221,2,0,62,6.0,1586.456009138882,0.0,491.1504999049286,52.13730962431066,0.0,16814.0,0,50,1,3736,201105797,,,160.0,,1.0,2.0,7.0,0.0,1.0,1.0,3771.896753902753,0.0,360.0,0.0,0.0,19285.0,0,1,1,134.0,1,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2129.743818668121,0.1266649113041585,0.11043525116246415,19285.0,6,3,6,6_1,6_1,6_0_0 -5798,2,64.0,2,0.0,5,112,5,77,72,9.0,2159.1666284380185,943.7898973031391,1361.226755359339,0.0,980.6292715520431,33321.0,50,50,1,3737,201105798,,,520.0,,0.0,2.0,9.0,0.0,2.0,1.5,1647.9779604443524,912.0,650.0,0.0,0.0,44693.0,5,5,1,200.0,9,0.0,3,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5444.81255265254,0.16340483636903275,0.12182696513218043,29795.333333333332,9,5,9,9_1,9_0,9_0_0 -5799,2,54.0,3,0.0,2,111,2,75,55,3.0,1118.451486442912,12.49133687607096,927.728722042643,90.37133668213848,0.0,31597.0,50,50,1,3738,201105799,,,280.0,,2.0,1.0,3.0,1.0,3.0,2.0,1622.3892003642702,0.0,680.0,0.0,0.0,25523.0,5,1,1,75.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2149.0428820437646,0.06801414317953491,0.08420024613265543,12761.5,3,2,3_0,3_1_0,3_4_0,3_0_1 -5800,1,63.0,3,259.0,3,111,2,0,78,2.0,0.0,0.0,300.1475277196786,0.0,1703.1521143941482,18733.0,0,71,2,374,201105800,,,,80.0,1.0,4.0,2.0,1.0,2.0,1.5,3915.566651338874,0.0,220.0,980.0,0.0,15068.0,0,5,3,60.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2003.2996421138268,0.10693960615565189,0.13295060008719317,10045.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_1 -5801,2,60.0,2,0.0,6,112,5,75,74,9.0,0.0,555.170527825376,1609.8821941328215,0.0,0.0,87239.0,44,44,1,3740,201105801,,,392.0,,0.0,2.0,4.0,0.0,2.0,1.5,2841.0420196056857,0.0,1180.0,0.0,0.0,50017.0,5,5,1,116.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2165.0527219581973,0.024817486696984116,0.0432863370845552,33344.666666666664,9,5,9,9_1,9_0,9_0_0 -5802,2,64.0,3,0.0,9,112,4,77,75,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,33288.0,50,41,1,3741,201105802,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2430.5480636640773,0.0,1200.0,0.0,0.0,42480.0,5,5,2,115.0,8,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.0491819374253914,0.0385397441858858,28320.0,8,4,8,8_1,8_0,8_0_0 -5803,2,62.0,3,0.0,6,111,2,86,63,4.0,0.0,0.0,409.2920832541072,0.0,2085.4923849724264,32808.0,71,71,2,3743,201105803,,,300.0,,2.0,2.0,4.0,0.0,3.0,2.0,6326.957497554981,0.0,300.0,1200.0,0.0,33413.0,6,1,1,80.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2494.7844682265336,0.07604195526172072,0.0746650844948533,16706.5,4,2,4_0,4_0_0,4_4_0,4_0_0 -5804,2,81.0,2,0.0,5,111,1,86,75,4.0,0.0,0.0,593.3174451156011,0.0,535.4751943343393,38106.0,50,70,2,3746,201105804,,,,,0.0,1.0,5.0,0.0,2.0,1.5,3484.5674712730283,498.0,245.0,0.0,0.0,24245.0,5,5,1,102.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1128.7926394499405,0.029622438446699744,0.0465577496164133,16163.333333333334,4,2,4_0,4_0_0,4_4_0,4_0_0 -5805,2,68.0,1,0.0,7,111,2,0,75,10.0,0.0,0.0,1386.2650619364547,0.0,891.3834058296532,24296.0,0,41,2,3749,201105805,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3446.2376049873023,829.0,700.0,0.0,0.0,68060.0,0,5,1,80.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2277.648467766108,0.09374582103087371,0.033465302200501146,68060.0,10,5,10,10_0,10_3,10_0_0 -5806,2,60.0,1,0.0,1,120,4,55,38,10.0,0.0,485.77421184720396,1637.1683330164287,0.0,0.0,34845.0,60,70,1,375,201105806,,,358.0,,2.0,2.0,5.0,0.0,2.0,1.5,2473.5742525738096,0.0,1200.0,0.0,0.0,63517.0,1,1,1,200.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2122.9425448636325,0.06092531338394698,0.03342321811268845,42344.666666666664,10,5,10,10_1,10_0,10_1_0 -5807,2,73.0,1,0.0,1,211,2,0,75,7.0,0.0,0.0,317.88351799402324,0.0,985.3951518994714,15265.0,0,50,1,3750,201105807,,,110.0,,0.0,3.0,2.0,0.0,1.0,1.0,1389.130284343508,0.0,233.0,567.0,0.0,22080.0,0,5,3,60.0,2,3.0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1303.2786698934947,0.08537691908899409,0.05902530207850972,22080.0,7,4,7,7_1,7_1,7_1_0 -5808,2,35.0,5,0.0,6,111,4,52,47,5.0,0.0,0.0,2046.460416270536,0.0,0.0,32567.0,50,31,1,3752,201105808,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2845.2563959854615,0.0,1500.0,0.0,0.0,27445.0,4,1,3,70.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2046.460416270536,0.06283846888784769,0.07456587415815398,18296.666666666668,5,3,5,5_1,5_3,5_0_0 -5809,2,36.0,1,0.0,2,111,1,38,38,10.0,0.0,0.0,354.7198054868929,0.0,0.0,51065.0,10,10,2,3754,201105809,,,,,2.0,0.0,1.0,0.0,2.0,1.5,2965.055370697192,0.0,260.0,0.0,0.0,91348.0,1,1,2,31.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,354.7198054868929,0.006946437001603699,0.003883169916001367,60898.666666666664,10,5,10,10_0,10_4,10_0_1 -5810,2,60.0,2,0.0,5,111,4,75,74,8.0,0.0,277.585263912688,1698.5621455045448,86.89551604051776,0.0,52739.0,60,60,1,3755,201105810,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1632.508866586432,0.0,1245.0,0.0,0.0,42277.0,5,5,1,180.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2063.0429254577502,0.03911797579509946,0.04879823368398302,28184.666666666668,8,4,8,8_1,8_2,8_0_0 -5811,2,58.0,2,0.0,5,111,2,0,54,9.0,0.0,0.0,1957.0123717736906,0.0,4045.095745152178,27444.0,0,41,1,3756,201105811,,,270.0,,1.0,2.0,6.0,0.0,1.0,1.0,1828.9394649544154,3762.0,0.0,0.0,0.0,31145.0,0,1,1,200.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,6002.108116925869,0.2187038375209834,0.19271498208142138,31145.0,9,5,9,9_1,9_2,9_0_0 -5812,2,38.0,4,0.0,3,111,2,55,64,7.0,0.0,0.0,627.5811943229643,0.0,1737.9103208103552,31993.0,43,50,1,3758,201105812,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1613.9080572060154,0.0,460.0,1000.0,0.0,39399.0,1,1,3,90.0,6,4.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2365.4915151333194,0.07393778373810894,0.060039379556164355,21888.333333333332,7,4,7,7_1,7_2,7_0_1 -5813,1,23.0,3,156.0,9,111,4,0,46,1.0,0.0,0.0,263.2238862619584,0.0,544.0772054883046,15069.0,0,31,2,3759,201105813,,,215.0,219.0,1.0,0.0,1.0,0.0,1.0,1.0,3898.9825628408025,506.0,0.0,0.0,0.0,1948.0,0,3,3,35.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,807.3010917502629,0.053573634066644296,0.41442561178144915,1948.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -5814,2,41.0,2,0.0,7,111,4,46,37,10.0,0.0,0.0,1473.4514997147858,0.0,0.0,66864.0,50,71,2,376,201105814,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3011.002404906274,0.0,1080.0,0.0,0.0,115778.0,1,1,2,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1473.4514997147858,0.022036544324521203,0.012726524034918429,64321.11111111111,10,5,10,10_0,10_4,10_0_0 -5815,1,32.0,3,344.0,4,111,1,0,52,4.0,0.0,0.0,39.564901381230364,0.0,13.903282566482842,24756.0,0,70,8,3760,201105815,,,,45.0,1.0,0.0,4.0,2.0,3.0,1.6,2440.8331402471754,0.0,29.0,8.0,0.0,24224.0,0,1,3,75.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,53.46818394771321,0.0021598070749601394,0.0022072400903118067,15140.0,4,2,4_1,4_0_1,4_4_1,4_0_1 -5816,1,77.0,3,65.0,2,111,2,0,72,3.0,951.8736054833294,0.0,152.8023777482,0.0,2057.6858198394607,21617.0,0,71,1,3761,201105816,,,,,0.0,3.0,5.0,0.0,1.0,1.0,3096.102622736861,0.0,112.0,1184.0,0.0,12590.0,0,5,3,80.0,9,7.0,1,9,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,3162.36180307099,0.14629050298704677,0.25118044504138126,12590.0,2,1,2_1,2_1_1,2_3_1,2_0_1 -5817,2,64.0,2,0.0,9,400,5,0,78,3.0,0.0,624.566843803548,955.0148609262501,0.0,0.0,20171.0,0,70,1,3762,201105817,,,,,0.0,4.0,4.0,1.0,2.0,1.5,1064.1016559978184,0.0,700.0,0.0,0.0,21110.0,0,5,1,88.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1579.581704729798,0.07830953868076933,0.07482622949927988,14073.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -5818,2,40.0,1,0.0,7,111,4,0,43,9.0,0.0,0.0,1268.8054580877322,0.0,0.0,31245.0,0,33,2,3765,201105818,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3617.7102945208244,0.0,930.0,0.0,0.0,29599.0,0,1,2,45.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1268.8054580877322,0.040608271982324605,0.042866497452202175,29599.0,9,5,9,9_0,9_2,9_0_0 -5819,2,56.0,2,0.0,4,111,1,0,43,7.0,0.0,0.0,818.5841665082144,0.0,0.0,21021.0,0,20,2,3766,201105819,,,,409.0,1.0,0.0,3.0,1.0,2.0,1.5,2528.941822376374,0.0,600.0,0.0,0.0,35742.0,0,1,3,75.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,818.5841665082144,0.03894125714800506,0.02290258425684669,23828.0,7,4,7,7_0,7_4,7_0_1 -5820,2,46.0,3,0.0,1,221,2,47,37,8.0,4759.368027416646,0.0,982.3009998098572,0.0,0.0,68807.0,50,31,1,3767,201105820,,,240.0,,2.0,0.0,6.0,2.0,4.0,2.5,2915.347467843498,0.0,720.0,0.0,0.0,69890.0,1,1,1,250.0,1,2.0,4,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,5741.669027226503,0.08344600152929939,0.08215294072437407,27956.0,8,4,8,8_1,8_1,8_1_0 -5821,2,58.0,3,0.0,2,111,1,0,52,7.0,0.0,0.0,878.61367205215,0.0,521.3730962431066,17929.0,0,50,2,3768,201105821,,,,236.0,1.0,0.0,1.0,0.0,1.0,1.0,3028.585906466588,0.0,644.0,300.0,0.0,22028.0,0,1,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1399.9867682952568,0.07808504480424211,0.0635548741735635,22028.0,7,4,7,7_0,7_4,7_0_1 -5822,2,32.0,4,0.0,8,211,4,55,63,4.0,0.0,0.0,1023.230208135268,0.0,0.0,21768.0,20,50,2,377,201105822,,,,378.0,2.0,0.0,2.0,0.0,2.0,1.5,2072.7183201105195,0.0,750.0,0.0,0.0,24096.0,1,1,3,37.0,3,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1023.230208135268,0.04700616538658894,0.042464733073342795,16064.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -5823,1,36.0,4,31.0,7,111,1,0,68,1.0,0.0,0.0,1500.737638598393,0.0,0.0,37668.0,0,20,2,3770,201105823,600.0,600.0,,432.0,1.0,0.0,4.0,2.0,3.0,1.8,2203.482625578656,0.0,1100.0,0.0,0.0,12062.0,0,1,3,100.0,7,6.0,2,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1500.737638598393,0.03984118186785582,0.12441864024194935,6701.111111111111,1,1,1_1,1_0_1,1_2_1,1_0_0 -5824,2,38.0,4,0.0,7,111,2,37,62,9.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,59283.0,20,41,2,3771,201105824,,,,760.0,2.0,0.0,3.0,1.0,3.0,1.8,2622.0499815097523,1200.0,0.0,0.0,0.0,64596.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1914.548043676513,0.03229506002861719,0.029638801840307653,35886.666666666664,9,5,9,9_0,9_4,9_0_0 -5825,1,38.0,5,542.0,4,112,4,69,62,1.0,0.0,0.0,955.0148609262501,333.6787815955882,0.0,22439.0,50,50,1,3772,201105825,,,700.0,,2.0,0.0,5.0,5.0,7.0,3.0,881.7587424891046,0.0,700.0,0.0,0.0,17854.0,4,4,3,120.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1288.6936425218382,0.05743097475475013,0.07217954758159731,5951.333333333333,1,1,1_1,1_1_1,1_0_1,1_0_1 -5826,2,65.0,3,0.0,1,112,5,0,77,6.0,0.0,971.5484236944079,796.4809086176276,0.0,264.5118429844327,16445.0,0,41,1,3773,201105826,,,150.0,,0.0,2.0,3.0,0.0,1.0,1.0,2609.100912057486,246.0,490.0,0.0,0.0,20094.0,0,5,2,90.0,7,2.0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2032.541175296468,0.12359630132541612,0.1011516460284895,20094.0,6,3,6,6_1,6_1,6_1_0 -5827,2,87.0,1,0.0,1,111,2,0,86,8.0,0.0,0.0,1230.5785344653534,0.0,3866.884003002644,34893.0,0,60,2,3774,201105827,,,254.0,,0.0,2.0,4.0,0.0,1.0,1.0,3398.1976618826448,1605.0,290.0,1232.0,0.0,27272.0,0,6,5,85.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,5097.462537467997,0.14608839989304437,0.18691194402566724,27272.0,8,4,8,8_0,8_3,8_1_0 -5828,2,63.0,3,0.0,9,111,2,78,75,5.0,1259.6460712562725,0.0,615.3024318253412,0.0,0.0,29684.0,70,60,1,3777,201105828,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2659.6190212646657,0.0,451.0,0.0,0.0,27681.0,5,5,3,90.0,8,7.0,3,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1874.9485030816136,0.06316360676059876,0.06773413182622064,18454.0,5,3,5,5_1,5_3,5_0_0 -5829,2,72.0,2,0.0,5,111,4,71,77,3.0,0.0,0.0,1159.6609025533037,333.6787815955882,0.0,22984.0,70,70,1,3778,201105829,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2913.037851377694,0.0,850.0,0.0,0.0,21243.0,5,5,1,150.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1493.3396841488918,0.06497301097062703,0.07029796564274782,14162.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -5830,2,45.0,2,0.0,2,111,2,0,56,6.0,0.0,0.0,3700.000432617129,86.89551604051776,0.0,16385.0,0,71,2,3779,201105830,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3053.6191186739707,0.0,2712.0,0.0,0.0,20179.0,0,1,3,32.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3786.8959486576464,0.2311196795030605,0.18766519394705616,20179.0,6,3,6,6_0,6_3,6_0_1 -5831,2,81.0,2,0.0,3,112,2,71,71,4.0,0.0,0.0,538.4124946267331,104.27461924862132,1112.8851930442595,14907.0,71,70,1,3782,201105831,,,305.0,,0.0,1.0,5.0,0.0,2.0,1.5,2465.21666277977,1035.0,0.0,0.0,0.0,23698.0,5,5,1,110.0,4,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1755.5723069196138,0.1177683173622871,0.07408103244660368,15798.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_1 -5832,2,69.0,3,0.0,3,111,1,0,74,8.0,0.0,0.0,159.6239124691018,0.0,125.12954309834558,25750.0,0,10,2,3783,201105832,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2810.5692711350357,0.0,117.0,72.0,0.0,28800.0,0,5,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,284.7534555674474,0.01105838662397854,0.009887272762758591,28800.0,8,4,8,8_0,8_4,8_0_1 -5833,0,71.0,4,0.0,4,111,2,0,78,1.0,0.0,0.0,1719.0267496672502,0.0,1042.7461924862132,10832.0,0,70,1,3784,201105833,,,180.0,,0.0,5.0,5.0,0.0,1.0,1.0,2776.4086314035167,0.0,1260.0,600.0,0.0,8800.0,0,5,5,90.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2761.772942153463,0.25496426718551174,0.3138378343356208,8800.0,1,1,1_0,1_1_0,1_3_0,1_0_1 -5834,1,81.0,3,110.0,99,111,2,0,78,3.0,0.0,0.0,409.2920832541072,0.0,1129.641708526731,11101.0,0,71,1,3786,201105834,,,,155.0,0.0,2.0,3.0,0.0,1.0,1.0,3454.482440198663,0.0,300.0,650.0,0.0,14316.0,0,5,3,75.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1538.9337917808382,0.13863019473748656,0.1074974707865911,14316.0,3,2,3_1,3_1_1,3_3_1,3_0_0 -5835,1,67.0,3,72.0,5,211,2,0,72,2.0,0.0,0.0,296.05460688713754,0.0,1047.9599234486443,11087.0,0,71,1,3787,201105835,,,105.0,290.0,0.0,7.0,3.0,0.0,1.0,1.0,2020.0514814960898,0.0,217.0,603.0,0.0,12244.0,0,5,3,64.0,3,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1344.0145303357817,0.1212243646014054,0.10976923638809064,12244.0,2,1,2_1,2_1_1,2_2_1,2_0_0 -5836,2,46.0,2,0.0,5,112,2,56,65,8.0,0.0,749.4802125642576,668.510402648375,0.0,1720.5312176022517,22751.0,60,50,1,3788,201105836,,,230.0,,2.0,4.0,4.0,0.0,2.0,1.5,2301.491929234487,0.0,490.0,990.0,0.0,37739.0,1,1,1,85.0,7,2.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3138.5218328148844,0.13795093986263832,0.08316388438524827,25159.333333333332,8,4,8,8_1,8_1,8_0_0 -5837,2,68.0,1,0.0,1,111,1,37,46,10.0,0.0,0.0,2567.0791344532854,0.0,1898.4942684510763,93797.0,12,41,2,379,201105837,,,,2488.0,2.0,4.0,4.0,0.0,2.0,1.5,6491.065023982954,1604.0,1270.0,100.0,0.0,171813.0,1,1,3,105.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4465.5734029043615,0.04760891502824569,0.025990893604700235,114542.0,10,5,10,10_0,10_4,10_1_0 -5838,2,36.0,3,0.0,4,111,1,43,55,5.0,0.0,0.0,982.3009998098572,0.0,225.92834170534618,42895.0,20,31,2,3790,201105838,,,320.0,,2.0,0.0,4.0,3.0,5.0,2.4,2333.650008894873,0.0,720.0,130.0,0.0,41844.0,1,1,2,74.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1208.2293415152035,0.02816713699767347,0.02887461383986243,17435.0,5,3,5,5_0,5_2,5_0_1 -5839,2,40.0,3,0.0,4,111,2,68,68,6.0,0.0,0.0,477.50743046312505,0.0,2259.283417053462,16017.0,50,43,1,3791,201105839,,,300.0,,2.0,0.0,4.0,0.0,2.0,1.5,1662.185742671419,0.0,350.0,1300.0,0.0,30360.0,1,1,3,90.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2736.790847516587,0.1708678808463874,0.09014462607103382,20240.0,6,3,6,6_1,6_2,6_0_1 -5840,2,66.0,3,0.0,4,111,2,77,75,5.0,0.0,0.0,736.7257498573929,0.0,2243.6422241661685,24925.0,50,50,1,3792,201105840,,,,,0.0,3.0,4.0,0.0,2.0,1.5,999.4093751485693,0.0,540.0,1291.0,0.0,27291.0,5,5,1,105.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2980.367974023561,0.11957343927877878,0.1092069903639867,18194.0,5,3,5,5_1,5_2,5_0_1 -5841,2,64.0,3,0.0,4,111,1,0,77,3.0,0.0,0.0,341.0767360450893,0.0,260.6865481215533,17014.0,0,50,2,3793,201105841,,,180.0,,0.0,3.0,4.0,0.0,1.0,1.0,3423.140580061316,0.0,250.0,150.0,0.0,13313.0,0,5,2,72.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,601.7632841666426,0.03536871306962752,0.045201178109114594,13313.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -5842,2,60.0,3,0.0,99,111,1,0,54,9.0,0.0,0.0,3929.203999239429,0.0,121.65372245672486,24665.0,0,43,2,3794,201105842,,,,383.0,1.0,3.0,3.0,0.0,1.0,1.0,2844.9711604803315,0.0,2880.0,70.0,0.0,30027.0,0,1,3,78.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4050.857721696154,0.16423505865380716,0.1349071742663654,30027.0,9,5,9,9_0,9_4,9_0_0 -5843,2,82.0,3,0.0,5,111,1,0,78,5.0,0.0,0.0,143.5766652337955,0.0,296.7693848118026,11309.0,0,70,2,3795,201105843,,,,450.0,0.0,0.0,4.0,0.0,1.0,1.0,2900.2439339425514,276.0,0.0,0.0,0.0,17470.0,0,5,3,85.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,440.3460500455981,0.03893766469587037,0.02520584144508289,17470.0,5,3,5,5_0,5_3,5_0_0 -5844,2,70.0,2,0.0,4,111,2,0,77,4.0,1507.1332086819382,152.6718951519784,736.7257498573929,0.0,0.0,18098.0,0,60,1,3796,201105844,,,260.0,,0.0,2.0,5.0,0.0,1.0,1.0,1883.5535039754714,0.0,540.0,0.0,0.0,15855.0,0,5,1,104.0,8,7.0,1,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2396.5308536913094,0.13241965154665208,0.15115300244032226,15855.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -5845,2,63.0,3,0.0,6,112,2,54,74,8.0,0.0,693.9631597817199,1582.5960552492145,208.54923849724264,0.0,37297.0,50,20,1,38,201105845,,,530.0,,1.0,2.0,5.0,0.0,2.0,1.5,1007.994529243464,0.0,1160.0,0.0,0.0,38433.0,1,5,2,124.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2485.108453528177,0.06663025051688277,0.06466079810392572,25622.0,8,4,8,8_1,8_1,8_0_0 -5846,2,53.0,3,0.0,6,221,4,85,31,7.0,190.37472109666587,0.0,1541.6668469238036,0.0,0.0,23513.0,71,71,1,3800,201105846,,,241.0,,1.0,2.0,4.0,0.0,2.0,1.5,3676.7339513124934,0.0,1130.0,0.0,0.0,35080.0,6,1,3,86.0,1,2.0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1732.0415680204694,0.07366314668568322,0.04937404697891874,23386.666666666668,7,4,7,7_1,7_1,7_0_0 -5847,1,47.0,3,152.0,6,112,2,0,67,3.0,60.28532834727752,0.0,95.501486092625,97.32297796537989,0.0,30971.0,0,50,1,3801,201105847,,,140.0,291.0,1.0,2.0,3.0,1.0,2.0,1.5,2286.1357376514943,0.0,70.0,0.0,0.0,20076.0,0,1,3,60.0,9,1.0,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,253.1097924052824,0.008172477233711613,0.01260758081317406,13384.0,3,2,3_1,3_1_1,3_1_1,3_0_0 -5848,0,28.0,3,0.0,1,112,2,85,52,6.0,0.0,0.0,0.0,364.9611673701746,0.0,23397.0,43,10,1,3802,201105848,,,,,1.0,0.0,4.0,1.0,3.0,1.8,2153.9140260323807,0.0,0.0,0.0,0.0,35762.0,6,1,5,70.0,7,0.0,4,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,364.9611673701746,0.015598630908670967,0.010205278434376562,19867.777777777777,6,3,6,6_1,6_0,6_1_0 -5849,2,42.0,3,0.0,4,120,2,52,48,9.0,1903.7472109666587,0.0,1036.8732775770716,0.0,0.0,23909.0,41,50,1,3803,201105849,,,,,3.0,0.0,4.0,2.0,4.0,2.3,2879.766710965443,0.0,760.0,0.0,0.0,67540.0,1,1,2,90.0,0,3.0,4,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2940.62048854373,0.1229921991109511,0.04353894712087252,29365.21739130435,9,5,9,9_1,9_1,9_0_1 -5850,2,47.0,3,0.0,5,111,2,0,37,9.0,0.0,0.0,1009.5871386934643,0.0,0.0,52917.0,0,41,2,3804,201105850,,,,444.0,2.0,1.0,3.0,1.0,2.0,1.5,2958.9889249812854,0.0,740.0,0.0,0.0,52082.0,0,1,3,69.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1009.5871386934643,0.01907869188906144,0.0193845693078888,34721.333333333336,9,5,9,9_0,9_4,9_0_0 -5851,2,72.0,2,0.0,5,111,2,75,74,7.0,0.0,610.6875806079136,790.7120694035114,0.0,1634.382119253405,28732.0,60,50,1,3806,201105851,,,339.0,,0.0,2.0,5.0,0.0,2.0,1.5,1645.5610809384868,1520.0,0.0,0.0,0.0,35920.0,5,5,1,101.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3035.78176926483,0.10565856081250279,0.08451508266327477,23946.666666666668,7,4,7,7_1,7_2,7_0_0 -5852,2,71.0,4,0.0,5,111,1,0,78,3.0,0.0,0.0,695.7965415319821,0.0,0.0,15997.0,0,70,2,3807,201105852,,,193.0,313.0,0.0,3.0,3.0,0.0,1.0,1.0,2322.037618868774,0.0,510.0,0.0,0.0,14050.0,0,5,3,80.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,695.7965415319821,0.0434954392406065,0.049522885518290545,14050.0,3,2,3_0,3_0_0,3_2_0,3_0_0 -5853,2,47.0,1,0.0,2,211,2,45,62,9.0,0.0,0.0,676.2669014635294,0.0,1397.8268125193597,19548.0,31,43,1,3809,201105853,,,300.0,,2.0,1.0,4.0,0.0,2.0,1.5,2079.1897442662266,1300.0,0.0,0.0,0.0,44681.0,1,1,2,80.0,1,2.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2074.0937139828893,0.10610260456225135,0.046420037912824,29787.333333333332,9,5,9,9_1,9_1,9_0_1 -5854,2,51.0,2,0.0,2,111,2,54,64,9.0,0.0,416.377895869032,935.914563707725,0.0,940.2094835584022,38465.0,60,50,1,381,201105854,,,500.0,,2.0,2.0,6.0,0.0,2.0,1.5,1311.1208341568286,0.0,686.0,541.0,0.0,44746.0,1,1,1,140.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2292.5019431351593,0.05959968654972467,0.05123367324755641,29830.666666666668,9,5,9,9_1,9_2,9_0_1 -5855,2,55.0,2,0.0,6,400,4,21,21,8.0,0.0,249.82673752141918,2055.3534560632866,130.34327406077665,280.6406138981176,36104.0,50,50,1,3810,201105855,,,124.0,,2.0,2.0,5.0,1.0,3.0,2.0,1639.5757910891177,261.0,1407.0,0.0,0.0,51022.0,1,1,1,180.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2716.1640815436,0.07523166634011744,0.05323515506141664,25511.0,8,4,8,8_1,8_0,8_0_0 -5856,2,81.0,4,0.0,5,112,2,0,78,2.0,0.0,0.0,1773.5990274344645,0.0,0.0,8091.0,0,70,1,3811,201105856,,,240.0,,0.0,0.0,3.0,0.0,1.0,1.0,2304.3271589458136,0.0,1300.0,0.0,0.0,12035.0,0,5,1,98.0,10,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1773.5990274344645,0.21920640556599486,0.14737008952509054,12035.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -5857,2,52.0,1,0.0,6,112,2,0,34,9.0,0.0,0.0,2253.8350717859503,0.0,0.0,63058.0,0,10,1,3812,201105857,,,297.0,,1.0,2.0,8.0,1.0,2.0,1.5,2365.059143962135,0.0,1652.0,0.0,0.0,51729.0,0,1,1,150.0,9,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2253.8350717859503,0.035742254302165474,0.0435700491365762,34486.0,9,5,9,9_1,9_1,9_0_0 -5858,2,62.0,2,0.0,4,112,2,74,75,7.0,0.0,208.188947934516,867.6992164987072,0.0,2071.5891024059433,20911.0,41,50,1,3813,201105858,,,400.0,,0.0,4.0,5.0,0.0,2.0,1.5,1611.548030358107,0.0,636.0,1192.0,0.0,36733.0,5,5,1,115.0,10,1.0,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3147.4772668391665,0.15051777852992046,0.08568527664060019,24488.666666666668,7,4,7,7_1,7_1,7_0_1 -5859,2,69.0,2,0.0,2,111,2,0,74,8.0,0.0,0.0,412.0206971424679,0.0,1365.9975121569391,20982.0,0,42,1,3814,201105859,,,102.0,,0.0,2.0,3.0,0.0,1.0,1.0,2660.3793249101664,0.0,302.0,786.0,0.0,27436.0,0,5,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1778.018209299407,0.08474016820605315,0.06480602891454319,27436.0,8,4,8,8_1,8_4,8_0_1 -5860,1,26.0,3,326.0,1,400,5,55,13,1.0,0.0,138.792631956344,2170.6123481909485,0.0,0.0,26137.0,41,42,1,3815,201105860,,,,,2.0,0.0,6.0,2.0,4.0,2.1,5407.290985505189,0.0,1591.0,0.0,0.0,17921.0,1,1,2,100.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2309.4049801472925,0.08835769140097534,0.12886585459222658,8533.809523809523,1,1,1_1,1_1_1,1_0_1,1_1_0 -5861,0,42.0,3,0.0,3,112,2,21,48,4.0,1269.1648073111057,0.0,750.3688192991965,145.98446694806984,0.0,49528.0,42,43,5,3816,201105861,,,4000.0,,2.0,0.0,9.0,4.0,6.0,3.3,1509.3820481380278,0.0,550.0,0.0,0.0,52219.0,1,1,5,300.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2165.518093558372,0.0437231080107893,0.041469926531690994,15823.939393939394,4,2,4_0,4_1_0,4_0_0,4_0_1 -5862,2,68.0,2,0.0,4,112,2,77,78,8.0,2771.538647965627,0.0,675.3319373692768,0.0,0.0,26542.0,71,71,1,3817,201105862,,,,,2.0,0.0,4.0,2.0,4.0,2.5,3205.935823130201,0.0,495.0,0.0,0.0,71380.0,5,5,1,108.0,8,0.0,4,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3446.870585334904,0.12986476472514896,0.04828902473150608,28552.0,8,4,8,8_1,8_0,8_0_1 -5863,2,79.0,2,0.0,3,111,1,77,72,8.0,0.0,0.0,794.3617431920339,0.0,903.2865005146098,37339.0,60,41,2,3818,201105863,,,,,0.0,3.0,3.0,0.0,2.0,1.5,4127.418701249304,714.0,310.0,78.0,0.0,41961.0,5,5,1,77.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1697.6482437066438,0.04546581975164423,0.04045776420263206,27974.0,8,4,8,8_0,8_3,8_0_1 -5864,2,44.0,3,0.0,8,111,2,42,37,10.0,0.0,0.0,859.5133748336251,0.0,2346.1789330939796,42089.0,20,20,1,382,201105864,,,480.0,,2.0,0.0,5.0,1.0,3.0,2.0,1619.0137942618323,0.0,630.0,1350.0,0.0,75450.0,1,1,2,140.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3205.692307927605,0.07616461089423851,0.042487638276045125,37725.0,10,5,10,10_1,10_2,10_0_0 -5865,1,20.0,4,200.0,99,111,2,0,84,1.0,0.0,0.0,611.2095109928,0.0,0.0,8782.0,0,42,2,3820,201105865,,,,38.0,0.0,0.0,1.0,0.0,1.0,1.0,3517.9389648003585,0.0,448.0,0.0,0.0,4102.0,0,3,3,15.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,611.2095109928,0.06959798576552038,0.14900280619034617,4102.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5866,2,57.0,3,0.0,5,111,2,64,54,9.0,0.0,208.188947934516,664.417481815834,0.0,1176.5652871886105,23877.0,50,50,1,3824,201105866,,,248.0,,2.0,2.0,5.0,0.0,2.0,1.5,910.8690933088795,0.0,487.0,677.0,0.0,43879.0,1,1,1,130.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2049.1717169389603,0.085821992584452,0.046700510880807684,29252.666666666668,9,5,9,9_1,9_2,9_0_0 -5867,2,45.0,3,0.0,1,112,5,56,62,5.0,0.0,763.359475759892,573.00891655575,208.54923849724264,0.0,25736.0,71,71,1,3825,201105867,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3337.688825470582,0.0,420.0,0.0,0.0,26125.0,1,1,2,80.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1544.9176308128847,0.060029438561271554,0.05913560309331616,17416.666666666668,5,3,5,5_1,5_0,5_1_0 -5868,2,78.0,3,0.0,1,221,2,77,77,8.0,0.0,0.0,429.75668741681255,0.0,2648.5753289149816,24594.0,70,50,1,3826,201105868,,,160.0,,0.0,1.0,8.0,0.0,2.0,1.5,1312.8854520528812,0.0,315.0,1524.0,0.0,38505.0,5,5,1,120.0,1,3.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3078.332016331794,0.12516597610522054,0.07994629311340849,25670.0,8,4,8,8_1,8_1,8_1_0 -5869,1,53.0,5,270.0,4,111,2,0,77,3.0,66.63115238383305,52.741200143410715,0.0,0.0,0.0,5078.0,0,41,1,3827,201105869,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2835.055012590795,0.0,0.0,0.0,0.0,13660.0,0,7,3,45.0,9,7.0,1,8,1,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,1,119.37235252724378,0.023507749611509213,0.008738825221613747,13660.0,3,2,3_1,3_1_1,3_3_1,3_0_1 -5870,2,29.0,4,0.0,1,111,2,0,84,7.0,0.0,0.0,36.41437161726697,0.0,75.2675975971963,23301.0,0,31,2,3828,201105870,,,,435.0,0.0,0.0,2.0,0.0,1.0,1.0,4313.668508022138,70.0,0.0,0.0,0.0,22440.0,0,3,3,45.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,111.68196921446327,0.00479301185418923,0.004976914849129379,22440.0,7,4,7,7_0,7_3,7_1_0 -5871,2,58.0,3,0.0,1,111,2,0,37,8.0,0.0,0.0,719.9641474042498,0.0,1488.1479296359953,17537.0,0,50,1,3829,201105871,,,,,1.0,0.0,6.0,0.0,1.0,1.0,2384.5436725892614,1384.0,0.0,0.0,0.0,27455.0,0,1,1,148.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2208.112077040245,0.1259116198346493,0.08042659176981405,27455.0,8,4,8,8_1,8_4,8_1_0 -5872,2,62.0,3,0.0,1,221,2,72,72,3.0,0.0,0.0,605.5168203910126,0.0,1809.464586198423,23027.0,50,50,1,383,201105872,,,352.0,,0.0,2.0,6.0,0.0,2.0,1.5,3351.219133248158,52.0,424.0,1009.0,0.0,19416.0,6,5,2,115.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2414.9814065894357,0.10487607619704849,0.12438099539500595,12944.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -5873,0,65.0,2,0.0,1,221,6,75,78,5.0,2379.684013708323,0.0,927.728722042643,187.69431464751835,0.0,41078.0,41,71,1,3833,201105873,,,450.0,,0.0,3.0,5.0,0.0,2.0,1.5,4593.25286480609,0.0,680.0,0.0,0.0,27943.0,5,5,5,190.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3495.1070503984843,0.08508464507518584,0.12507987869586246,18628.666666666668,5,3,5,5_1,5_1,5_1_0 -5874,2,75.0,4,0.0,1,112,2,0,78,2.0,2067.1521799079633,0.0,477.50743046312505,0.0,0.0,11648.0,0,71,1,3835,201105874,,,58.0,,0.0,7.0,3.0,0.0,1.0,1.0,2924.9264221635895,0.0,350.0,0.0,0.0,10830.0,0,5,1,80.0,9,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2544.659610371088,0.21846322204422117,0.23496395294285208,10830.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -5875,2,40.0,2,0.0,3,111,2,42,53,8.0,2379.684013708323,277.585263912688,1091.4455553442858,93.84715732375918,0.0,38895.0,20,42,1,3837,201105875,,,160.0,,2.0,0.0,5.0,2.0,4.0,2.1,1719.8559966414184,0.0,800.0,0.0,0.0,59293.0,1,1,2,97.0,8,7.0,4,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3842.561990289056,0.09879321224550858,0.0648063344794336,28234.761904761905,8,4,8,8_1,8_3,8_0_1 -5876,1,54.0,3,313.0,99,111,1,85,46,1.0,0.0,0.0,409.2920832541072,0.0,1240.8679690585936,34199.0,31,31,2,3839,201105876,,,,24.0,1.0,0.0,4.0,4.0,6.0,3.3,1815.4119198689866,0.0,300.0,714.0,0.0,22842.0,5,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1650.1600523127008,0.04825170479583324,0.07224236285407148,6921.818181818182,1,1,1_1,1_0_1,1_4_1,1_0_0 -5877,2,54.0,3,0.0,5,112,2,52,46,9.0,0.0,0.0,2455.752499524643,0.0,0.0,26239.0,50,50,1,384,201105877,,,460.0,,2.0,1.0,6.0,0.0,2.0,1.5,740.4355966537496,0.0,1800.0,0.0,0.0,49110.0,1,1,1,160.0,9,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2455.752499524643,0.09359169554955002,0.05000514150935946,32740.0,9,5,9,9_1,9_0,9_0_0 -5878,2,74.0,3,0.0,6,112,4,78,75,6.0,0.0,0.0,1773.5990274344645,0.0,0.0,20819.0,70,70,2,3842,201105878,,,,424.0,0.0,2.0,4.0,0.0,2.0,1.5,1925.4045106105075,0.0,1300.0,0.0,0.0,29050.0,5,5,3,100.0,9,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1773.5990274344645,0.08519136497595775,0.06105332280325179,19366.666666666668,6,3,6,6_0,6_1,6_0_0 -5879,1,83.0,4,370.0,5,111,1,0,78,5.0,0.0,0.0,300.1475277196786,0.0,1147.0208117348345,8531.0,0,70,2,3843,201105879,660.0,660.0,170.0,118.0,0.0,7.0,2.0,0.0,1.0,1.0,2858.225459087187,0.0,220.0,660.0,0.0,17840.0,0,5,3,35.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1447.168339454513,0.16963642473971552,0.0811193015389301,17840.0,5,3,5,5_0,5_3,5_0_0 -5880,2,49.0,2,0.0,5,112,6,52,68,7.0,0.0,0.0,2728.2223499327943,250.25908619669116,591.3882668351138,39539.0,50,50,1,3845,201105880,,,300.0,,3.0,1.0,7.0,1.0,3.0,2.0,1119.7613919759349,550.0,1790.0,0.0,0.0,44753.0,1,1,1,120.0,7,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3569.869702964599,0.0902873037498318,0.07976827705326121,22376.5,7,4,7,7_1,7_1,7_0_0 -5881,2,83.0,2,0.0,4,111,2,0,77,9.0,0.0,0.0,409.2920832541072,0.0,2189.7670042210475,20944.0,0,50,1,3846,201105881,,,135.0,573.0,0.0,2.0,6.0,0.0,1.0,1.0,2018.2328583804178,0.0,300.0,1260.0,0.0,30951.0,0,5,3,90.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2599.0590874751547,0.12409564015828661,0.08397334779086797,30951.0,9,5,9,9_1,9_3,9_0_1 -5882,2,41.0,3,0.0,1,221,2,54,62,6.0,3331.5576191916525,0.0,1146.0178331115,208.54923849724264,0.0,45863.0,50,50,1,3847,201105882,,,336.0,,2.0,0.0,5.0,1.0,3.0,2.0,1823.951055709774,0.0,840.0,0.0,0.0,40669.0,1,1,2,150.0,1,2.0,4,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4686.124690800396,0.10217658441009955,0.11522596303819607,20334.5,6,3,6,6_1,6_1,6_1_0 -5883,2,68.0,3,0.0,9,120,2,78,72,4.0,0.0,485.77421184720396,1031.41604980035,1737.9103208103552,0.0,26119.0,70,50,1,3848,201105883,,,470.0,,0.0,4.0,4.0,0.0,2.0,1.5,1203.0717563541705,0.0,756.0,0.0,0.0,24601.0,5,5,1,80.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3255.1005824579092,0.12462577366889656,0.13231578319815898,16400.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0 -5884,2,40.0,3,0.0,1,112,5,62,45,8.0,0.0,832.755791738064,654.8673332065715,86.89551604051776,0.0,34988.0,50,60,1,3851,201105884,,,135.0,,2.0,1.0,5.0,0.0,2.0,1.5,1912.2000131669847,0.0,480.0,0.0,0.0,40258.0,1,1,2,100.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1574.5186409851533,0.04500167603135799,0.0391107019967498,26838.666666666668,8,4,8,8_1,8_0,8_1_0 -5885,2,63.0,3,0.0,6,111,2,77,72,7.0,1275.5106313476613,555.170527825376,942.1876747453816,0.0,678.4836297690124,35452.0,50,50,1,3852,201105885,,,160.0,,0.0,2.0,6.0,0.0,2.0,1.5,1551.7975282150583,631.0,450.0,0.0,0.0,32684.0,5,5,1,130.0,6,4.0,3,4,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3451.3524636874317,0.09735282815320523,0.10559761545977946,21789.333333333332,7,4,7,7_1,7_2,7_0_0 -5886,2,56.0,4,0.0,99,111,1,0,56,1.0,0.0,0.0,377.91302353795896,312.82385774586396,0.0,14373.0,0,71,2,3853,201105886,,,140.0,334.0,2.0,1.0,4.0,1.0,2.0,1.5,3959.3615808636364,0.0,277.0,0.0,0.0,13800.0,0,1,3,85.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,690.7368812838229,0.048057947629849225,0.05005339719447992,9200.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -5887,2,62.0,2,0.0,1,400,2,0,78,7.0,0.0,0.0,1768.0859026772023,0.0,1658.0376499268098,48103.0,0,50,8,3854,201105887,,,,,0.0,3.0,3.0,0.0,1.0,1.0,5142.369743815219,1542.0,708.0,0.0,0.0,23813.0,0,5,3,65.0,0,0.0,1,7,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,3426.123552604012,0.0712247375964911,0.14387618328660864,23813.0,7,4,7,7_0,7_0,7_1_0 -5888,1,40.0,4,70.0,9,112,2,54,64,4.0,0.0,0.0,955.0148609262501,0.0,2085.4923849724264,71350.0,20,71,1,3856,201105888,,,400.0,,2.0,0.0,5.0,6.0,8.0,3.7,955.7816652029614,0.0,700.0,1200.0,0.0,59977.0,1,1,3,150.0,6,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3040.5072458986765,0.04261397681708026,0.05069455367722087,16210.0,4,2,4_1,4_1_1,4_0_1,4_0_0 -5889,2,57.0,4,0.0,1,111,1,0,52,7.0,0.0,0.0,878.61367205215,0.0,0.0,10131.0,0,70,2,3857,201105889,,,,,1.0,2.0,1.0,0.0,1.0,1.0,3790.6155955351774,0.0,644.0,0.0,0.0,23190.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,878.61367205215,0.08672526621776232,0.037887609834072876,23190.0,7,4,7,7_0,7_4,7_1_0 -5890,2,42.0,3,0.0,5,111,2,56,62,2.0,0.0,0.0,750.3688192991965,0.0,538.7521994512101,33092.0,50,71,1,3858,201105890,,,245.0,,2.0,0.0,4.0,2.0,4.0,2.3,1575.0573037193565,0.0,550.0,310.0,0.0,25235.0,1,1,3,90.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1289.1210187504066,0.03895566961049216,0.05108464508620593,10971.739130434784,2,1,2_0,2_1_0,2_2_0,2_0_0 -5891,2,28.0,2,0.0,1,111,2,46,37,10.0,0.0,0.0,717.8833261689774,0.0,1483.8469240590127,51178.0,31,10,2,3862,201105891,,,,1247.0,2.0,0.0,2.0,0.0,2.0,1.5,3366.2221874323945,1380.0,0.0,0.0,0.0,64682.0,1,1,3,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2201.73025022799,0.04302102954839951,0.03403930382839105,43121.333333333336,10,5,10,10_0,10_4,10_1_0 -5892,2,50.0,2,0.0,6,111,2,62,52,6.0,0.0,0.0,590.7449068300947,0.0,1489.3891449344744,57034.0,70,71,1,3863,201105892,,,,,2.0,1.0,4.0,0.0,2.0,1.5,1361.1163805768842,0.0,433.0,857.0,0.0,31846.0,1,1,1,82.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2080.134051764569,0.03647182473199441,0.06531853456523799,21230.666666666668,6,3,6,6_1,6_2,6_0_0 -5893,2,55.0,2,0.0,1,111,2,74,37,10.0,0.0,0.0,1475.3581527886708,0.0,2767.800278235687,45029.0,60,41,2,3864,201105893,,,,800.0,1.0,2.0,3.0,0.0,2.0,1.5,2883.4842166846042,1294.0,588.0,792.0,0.0,74445.0,5,1,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4243.158431024358,0.09423168249404512,0.056997225213571874,49630.0,10,5,10,10_0,10_4,10_1_0 -5894,2,79.0,2,0.0,3,111,1,0,74,10.0,0.0,0.0,245.5752499524643,0.0,208.54923849724264,29282.0,0,31,2,3866,201105894,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3016.416828823618,0.0,180.0,120.0,0.0,47531.0,0,5,1,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,454.124488449707,0.015508656801096475,0.009554280121388294,47531.0,10,5,10,10_0,10_4,10_0_1 -5895,1,27.0,4,15.0,2,111,2,0,46,4.0,0.0,0.0,755.8260470759179,52.13730962431066,0.0,14385.0,0,42,2,3867,201105895,,,,385.0,1.0,0.0,2.0,0.0,1.0,1.0,4067.778876165384,0.0,554.0,0.0,0.0,15804.0,0,1,3,58.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,807.9633567002286,0.05616707380606386,0.051123978530766175,15804.0,4,2,4_1,4_0_1,4_2_1,4_0_1 -5896,2,34.0,3,0.0,99,112,2,85,48,5.0,0.0,0.0,1146.0178331115,0.0,3475.8206416207104,31500.0,41,42,1,3868,201105896,,,750.0,,1.0,0.0,4.0,2.0,4.0,2.1,2501.2015265741275,0.0,840.0,2000.0,0.0,39614.0,6,1,3,150.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4621.838474732211,0.1467250309438797,0.11667184517423665,18863.809523809523,5,3,5,5_1,5_2,5_0_0 -5897,2,36.0,3,0.0,2,112,2,52,43,7.0,0.0,199.86139001713536,1030.0517428561698,187.69431464751835,0.0,39641.0,44,33,1,3869,201105897,,,269.0,,2.0,0.0,6.0,2.0,4.0,2.1,2849.8334316070236,0.0,755.0,0.0,0.0,47164.0,1,1,2,140.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1417.6074475208234,0.03576114244143244,0.030056980907489258,22459.04761904762,7,4,7,7_1,7_0,7_0_1 -5898,1,55.0,5,338.0,4,111,2,0,46,1.0,0.0,0.0,436.97245940720364,0.0,903.2111711663555,7204.0,0,31,2,387,201105898,,,,,1.0,1.0,3.0,2.0,3.0,1.6,2228.6054366093,840.0,0.0,0.0,0.0,14876.0,0,4,3,45.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1340.1836305735592,0.1860332635443586,0.090090322033716,9297.5,1,1,1_1,1_0_1,1_3_1,1_0_1 -5899,2,66.0,2,0.0,1,112,2,75,75,9.0,3172.912018277764,693.9631597817199,1545.2510376842051,0.0,918.2646906857947,75490.0,20,41,1,3872,201105899,,,203.0,,0.0,2.0,7.0,0.0,2.0,1.5,1061.6100309151543,854.0,807.0,0.0,0.0,52982.0,5,5,1,240.0,8,2.0,3,9,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,6330.390906429483,0.08385734410424538,0.11948191662129559,35321.333333333336,9,5,9,9_1,9_1,9_1_0 -5900,2,51.0,3,0.0,99,221,5,55,11,5.0,0.0,277.585263912688,1473.4514997147858,754.2530792316942,0.0,21138.0,71,50,1,3873,201105900,,,,,2.0,1.0,5.0,0.0,2.0,1.5,2238.9789337962197,0.0,1080.0,0.0,0.0,27773.0,1,1,3,120.0,1,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2505.289842859168,0.11852066623423067,0.09020594976628984,18515.333333333332,5,3,5,5_1,5_1,5_0_0 -5901,2,55.0,4,0.0,1,112,5,11,52,3.0,0.0,416.377895869032,1503.4662524867538,281.54147197127753,0.0,24498.0,50,50,1,3874,201105901,,,,,2.0,3.0,7.0,0.0,2.0,1.5,2251.711863734296,0.0,1102.0,0.0,0.0,21823.0,1,4,1,136.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2201.3856203270634,0.08985980979374085,0.10087456446533764,14548.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -5902,2,73.0,3,0.0,9,112,5,77,78,3.0,0.0,555.170527825376,1526.6594705378197,0.0,0.0,37749.0,41,60,1,3875,201105902,,,236.0,,0.0,3.0,5.0,0.0,2.0,1.5,5587.818413981486,0.0,1119.0,0.0,0.0,19093.0,5,5,1,140.0,8,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2081.829998363196,0.0551492754341359,0.10903629593899314,12728.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0 -5903,2,49.0,2,0.0,5,111,2,55,22,10.0,0.0,0.0,3478.982707659911,0.0,0.0,55085.0,50,71,1,3876,201105903,,,723.0,,3.0,1.0,6.0,2.0,4.0,2.5,2243.193403058729,0.0,2550.0,0.0,0.0,101765.0,1,1,1,170.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3478.982707659911,0.06315662535463212,0.03418643647285325,40706.0,10,5,10,10_1,10_3,10_0_0 -5904,2,87.0,3,0.0,1,221,4,0,78,2.0,0.0,0.0,1694.4692246720037,291.9689338961397,0.0,6811.0,0,71,1,3877,201105904,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4157.508772736592,0.0,1242.0,0.0,0.0,9605.0,0,5,3,69.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1986.4381585681435,0.2916514694711707,0.20681292645165472,9605.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -5905,2,41.0,1,0.0,8,112,2,56,47,5.0,0.0,69.396315978172,1637.1683330164287,0.0,0.0,46333.0,42,31,1,3878,201105905,,,30.0,,2.0,0.0,6.0,3.0,5.0,2.4,1954.2376856177755,0.0,1200.0,0.0,0.0,41383.0,1,1,1,150.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1706.5646489946007,0.03683259553654201,0.04123830193544694,17242.916666666668,5,3,5,5_1,5_1,5_0_0 -5906,2,39.0,2,0.0,8,212,4,52,43,7.0,0.0,832.755791738064,1637.1683330164287,0.0,0.0,56702.0,50,20,1,3879,201105906,,,250.0,,2.0,0.0,6.0,2.0,4.0,2.1,1346.6523342029022,0.0,1200.0,0.0,0.0,49168.0,1,1,1,150.0,2,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2469.924124754493,0.043559735542917234,0.05023438262191858,23413.333333333332,7,4,7,7_1,7_0,7_0_0 -5907,2,86.0,3,0.0,2,111,2,77,74,8.0,0.0,0.0,238.75371523156252,0.0,948.899035162454,28848.0,50,10,2,388,201105907,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2756.414831916337,0.0,175.0,546.0,0.0,42253.0,5,5,1,54.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1187.6527503940165,0.04116932717671993,0.028108128426242315,28168.666666666668,8,4,8,8_0,8_3,8_0_1 -5908,2,61.0,4,0.0,3,111,6,0,75,5.0,0.0,0.0,1881.63472059741,0.0,138.70742985769033,21972.0,0,60,1,3880,201105908,,,350.0,,1.0,3.0,4.0,1.0,2.0,1.5,6125.73925844157,129.0,1330.0,0.0,0.0,26365.0,0,5,1,150.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2020.3421504551004,0.09195076235459222,0.07662970417049499,17576.666666666668,5,3,5,5_1,5_3,5_0_1 -5909,2,69.0,1,0.0,4,111,2,74,74,10.0,0.0,0.0,181.4528235759875,0.0,1355.5700502320772,22392.0,20,10,1,3881,201105909,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1058.6897783938336,0.0,133.0,780.0,0.0,61791.0,5,5,1,130.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1537.0228738080646,0.06864160744051735,0.02487454279438858,41194.0,10,5,10,10_1,10_3,10_0_1 -5910,2,38.0,3,0.0,6,111,6,48,46,8.0,0.0,0.0,1159.6609025533037,0.0,0.0,50228.0,20,31,2,3883,201105910,,,,576.0,2.0,0.0,3.0,0.0,2.0,1.5,3546.507655504868,0.0,850.0,0.0,0.0,38586.0,4,1,3,66.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1159.6609025533037,0.023087937058081223,0.030053928952296267,25724.0,8,4,8,8_0,8_3,8_0_0 -5911,2,27.0,1,0.0,4,111,1,34,38,10.0,0.0,0.0,791.2980276246072,0.0,0.0,57311.0,10,10,3,3884,201105911,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3405.2190990795857,0.0,580.0,0.0,0.0,76976.0,1,1,1,36.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,791.2980276246072,0.013807088126618053,0.01027980185544335,51317.333333333336,10,5,10,10_0,10_4,10_0_1 -5912,2,33.0,2,0.0,6,111,2,0,43,8.0,0.0,0.0,147.34514997147858,0.0,450.118773089882,16725.0,0,20,2,3885,201105912,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3046.2438393752595,0.0,108.0,259.0,0.0,28184.0,0,1,2,48.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,597.4639230613606,0.03572280556420691,0.021198691564765844,28184.0,8,4,8,8_0,8_3,8_0_0 -5913,2,76.0,3,0.0,1,112,6,52,78,5.0,2538.3296146222115,69.396315978172,654.8673332065715,139.0328256648284,0.0,19524.0,70,70,1,3886,201105913,,,320.0,,1.0,3.0,4.0,0.0,2.0,1.5,1849.6160748886343,0.0,480.0,0.0,0.0,27423.0,1,5,1,85.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3401.6260894717834,0.17422792918827,0.1240428140419277,18282.0,5,3,5,5_1,5_0,5_1_0 -5914,2,57.0,3,0.0,1,111,5,78,78,3.0,0.0,263.7060007170536,845.8703053918215,281.54147197127753,0.0,8895.0,50,50,1,3889,201105914,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1354.4247611004403,0.0,620.0,0.0,0.0,21550.0,6,5,1,68.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1391.1177780801527,0.15639322968860625,0.0645530291452507,14366.666666666666,3,2,3_0,3_1_0,3_3_0,3_1_0 -5915,2,50.0,2,0.0,1,111,1,0,38,10.0,0.0,0.0,1158.2965956091234,0.0,121.65372245672486,58202.0,0,12,2,389,201105915,,,,1192.0,1.0,2.0,3.0,0.0,1.0,1.0,2661.743870838463,0.0,849.0,70.0,0.0,93800.0,0,1,3,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1279.9503180658483,0.021991517784025433,0.013645525778953607,93800.0,10,5,10,10_0,10_4,10_1_0 -5916,2,29.0,2,0.0,8,111,7,55,43,7.0,0.0,0.0,150.8595395572489,0.0,311.8229043312418,31675.0,41,10,1,3891,201105916,,,210.0,635.0,2.0,0.0,3.0,1.0,3.0,1.8,2103.095126725018,290.0,0.0,0.0,0.0,44421.0,1,1,3,71.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,462.68244388849064,0.014607180548965766,0.010415849348022121,24678.333333333332,7,4,7,7_1,7_2,7_0_0 -5917,2,26.0,2,0.0,1,400,2,55,67,4.0,1745.1016100527704,0.0,982.3009998098572,194.64595593075978,0.0,24852.0,50,71,1,3893,201105917,,,180.0,,2.0,0.0,3.0,1.0,3.0,1.8,4038.3063563741257,0.0,720.0,0.0,0.0,29699.0,1,1,2,80.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2922.0485657933878,0.11757800441788942,0.0983887863494861,16499.444444444445,4,2,4_0,4_1_0,4_0_0,4_1_0 -5918,2,84.0,3,0.0,1,111,4,0,77,2.0,0.0,0.0,1364.3069441803573,100.7987986070006,0.0,6679.0,0,71,1,3894,201105918,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3188.99756390797,0.0,1000.0,0.0,0.0,11443.0,0,5,1,39.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1465.105742787358,0.21936004533423537,0.1280351081698294,11443.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -5919,2,59.0,3,0.0,4,111,2,74,56,5.0,0.0,0.0,1910.0297218525002,0.0,3128.2385774586396,42387.0,71,33,1,3895,201105919,,,700.0,,1.0,2.0,8.0,1.0,3.0,2.0,2602.8549282876124,0.0,1400.0,1800.0,0.0,35087.0,5,1,1,250.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5038.268299311139,0.11886352653670086,0.14359359019896656,17543.5,5,3,5,5_1,5_3,5_0_1 -5920,2,62.0,4,0.0,6,112,2,54,75,5.0,0.0,0.0,759.918967908459,3644.397942739315,0.0,51188.0,50,31,1,3896,201105920,,,,,1.0,1.0,6.0,1.0,3.0,2.0,1777.546970873046,0.0,557.0,0.0,0.0,37813.0,1,5,2,115.0,10,1.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4404.316910647774,0.0860419807503277,0.1164762624136613,18906.5,5,3,5,5_1,5_1,5_0_0 -5921,0,38.0,3,0.0,7,111,4,0,56,4.0,0.0,0.0,1910.0297218525002,0.0,0.0,25080.0,0,50,2,3898,201105921,,,,,1.0,0.0,3.0,2.0,3.0,1.6,2769.357035342227,0.0,1400.0,0.0,0.0,25556.0,0,1,5,60.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1910.0297218525002,0.07615748492234849,0.07473899365520818,15972.5,4,2,4_0,4_0_0,4_4_0,4_0_0 -5922,2,27.0,4,0.0,7,111,6,54,46,3.0,0.0,0.0,1500.737638598393,69.5164128324142,0.0,48648.0,31,60,2,390,201105922,,,,550.0,2.0,0.0,2.0,0.0,2.0,1.5,3509.1616887884006,0.0,1100.0,0.0,0.0,21784.0,1,1,3,42.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1570.2540514308073,0.032277874762185646,0.07208290724526291,14522.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_0 -5923,2,60.0,1,0.0,2,111,2,43,31,10.0,0.0,0.0,1096.9027831210071,0.0,4880.052180835478,46242.0,33,20,1,3903,201105923,,,,,2.0,3.0,7.0,0.0,2.0,1.5,1402.965905907882,0.0,804.0,2808.0,0.0,70440.0,1,1,1,250.0,6,5.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,5976.954963956485,0.1292538160969786,0.08485171726230104,46960.0,10,5,10,10_1,10_2,10_0_1 -5924,2,63.0,3,0.0,5,112,5,71,71,4.0,0.0,804.9972653467952,1036.8732775770716,0.0,0.0,17669.0,71,71,1,3905,201105924,,,,,0.0,3.0,5.0,0.0,2.0,1.5,3509.6500699903286,0.0,760.0,0.0,0.0,23236.0,5,5,1,90.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1841.8705429238667,0.10424305523367856,0.07926796965587307,15490.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -5925,2,33.0,2,0.0,4,120,1,43,48,3.0,0.0,0.0,818.5841665082144,180.74267336427695,0.0,43686.0,42,50,2,3906,201105925,,,,257.0,2.0,0.0,3.0,2.0,4.0,2.1,5133.065429867235,0.0,600.0,0.0,0.0,30195.0,1,1,3,60.0,0,2.0,4,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,999.3268398724913,0.022875219518209297,0.033095772143483734,14378.571428571428,3,2,3_0,3_0_0,3_1_0,3_0_1 -5927,0,47.0,3,0.0,9,112,2,52,21,1.0,2030.663691697769,0.0,654.8673332065715,302.3963958210018,0.0,34177.0,50,50,1,3909,201105927,,,,,2.0,2.0,4.0,2.0,4.0,2.1,2229.717003331798,0.0,480.0,0.0,0.0,15342.0,4,1,5,90.0,6,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2987.9274207253425,0.08742509350514505,0.19475475301299325,7305.714285714285,1,1,1_0,1_1_0,1_0_0,1_0_0 -5928,2,47.0,2,0.0,7,111,2,85,21,6.0,0.0,0.0,2728.6138883607146,104.27461924862132,0.0,16338.0,71,50,1,391,201105928,,,300.0,,1.0,2.0,4.0,0.0,2.0,1.5,3269.223097767791,0.0,2000.0,0.0,0.0,29860.0,6,1,2,100.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2832.8885076093356,0.17339261278059345,0.0948723545749945,19906.666666666668,6,3,6,6_1,6_3,6_0_0 -5929,2,93.0,2,0.0,3,111,2,0,75,10.0,0.0,0.0,204.6460416270536,0.0,1042.7461924862132,17974.0,0,60,8,3910,201105929,,,300.0,,0.0,2.0,4.0,0.0,1.0,1.0,3120.693701927165,0.0,150.0,600.0,0.0,37713.0,0,5,5,66.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1247.3922341132668,0.06939981273579987,0.03307592167457553,37713.0,10,5,10,10_0,10_3,10_0_1 -5930,2,68.0,3,0.0,5,111,2,77,78,7.0,2379.684013708323,0.0,504.79356934673217,0.0,0.0,27610.0,50,50,1,3911,201105930,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1145.3763940057809,0.0,370.0,0.0,0.0,33169.0,5,5,5,85.0,9,7.0,3,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2884.477583055055,0.10447220510883938,0.08696305535454958,22112.666666666668,7,4,7,7_1,7_3,7_0_0 -5931,2,69.0,2,0.0,5,111,1,86,74,3.0,621.8907555824418,0.0,2161.062199581686,0.0,0.0,50486.0,10,20,2,3914,201105931,392.0,392.0,,,0.0,0.0,3.0,0.0,2.0,1.5,3175.6809657479225,0.0,1584.0,0.0,0.0,19948.0,6,5,1,65.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2782.9529551641276,0.055123261006301306,0.1395103747325109,13298.666666666666,3,2,3_0,3_0_0,3_4_0,3_0_0 -5932,2,68.0,3,0.0,1,400,2,71,71,2.0,3145.9422661224035,0.0,784.4764929037054,156.41192887293198,0.0,90797.0,70,50,1,3915,201105932,,,530.0,,0.0,1.0,7.0,0.0,2.0,1.5,1442.5686807827178,0.0,575.0,0.0,0.0,17077.0,5,5,1,180.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4086.830687899041,0.04501063568068373,0.23931783614797922,11384.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -5933,2,69.0,2,0.0,1,111,6,13,71,8.0,2379.684013708323,0.0,1115.572118184663,347.58206416207105,501.0671497184782,34756.0,50,50,1,3916,201105933,,,,,1.0,2.0,4.0,0.0,2.0,1.5,3611.926592556838,466.0,640.0,0.0,0.0,41878.0,5,5,1,90.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4343.905345773535,0.1249828906022999,0.10372762180079123,27918.666666666668,8,4,8,8_1,8_3,8_1_0 -5934,2,64.0,2,0.0,1,221,2,0,78,3.0,0.0,0.0,203.28173468287324,0.0,1365.9975121569391,8750.0,0,70,1,3917,201105934,,,150.0,,0.0,0.0,5.0,0.0,1.0,1.0,2077.900770305605,0.0,149.0,786.0,0.0,13353.0,0,5,1,90.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1569.2792468398125,0.17934619963883572,0.11752259768140585,13353.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -5935,2,53.0,2,0.0,5,112,4,72,52,7.0,0.0,0.0,1364.3069441803573,145.98446694806984,0.0,32447.0,50,50,1,3918,201105935,,,150.0,,1.0,2.0,5.0,0.0,2.0,1.5,1285.1538954623052,0.0,1000.0,0.0,0.0,34371.0,5,1,1,110.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1510.2914111284272,0.04654641141333335,0.043940863260551834,22914.0,7,4,7,7_1,7_1,7_0_0 -5936,2,25.0,5,0.0,7,112,4,0,56,3.0,0.0,0.0,1910.0297218525002,0.0,0.0,17948.0,0,50,2,3919,201105936,,,,694.0,1.0,0.0,2.0,1.0,2.0,1.3,3402.8663918762195,0.0,1400.0,0.0,0.0,17743.0,0,4,3,52.0,10,3.0,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1910.0297218525002,0.10642019845400603,0.1076497617005298,13648.461538461537,3,2,3_0,3_0_0,3_1_0,3_0_0 -5937,1,41.0,3,296.0,5,111,1,45,45,8.0,0.0,0.0,3683.6287492869646,0.0,295.4447545377604,55771.0,31,31,2,392,201105937,,,,276.0,2.0,0.0,4.0,2.0,4.0,2.1,2935.8627635310013,0.0,2700.0,170.0,0.0,59840.0,1,1,3,75.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,3979.073503824725,0.07134664079583879,0.06649521229653618,28495.238095238095,8,4,8,8_0,8_4,8_0_0 -5938,1,24.0,3,421.0,6,111,1,0,85,2.0,0.0,0.0,2941.4457716528505,173.79103208103552,0.0,12974.0,0,50,2,3920,201105938,,,351.0,44.0,0.0,0.0,3.0,2.0,3.0,1.6,2006.8739715059794,0.0,2156.0,0.0,0.0,15402.0,0,6,3,60.0,7,5.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3115.236803733886,0.24011382794310823,0.2022618363676072,9626.25,1,1,1_1,1_0_1,1_2_1,1_0_0 -5939,2,30.0,2,0.0,8,112,2,52,62,7.0,1697.507929778604,0.0,736.7257498573929,46.92357866187959,0.0,35881.0,60,71,1,3921,201105939,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2820.9418063276935,0.0,540.0,0.0,0.0,39791.0,1,1,3,148.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2481.1572582978765,0.06914961283960526,0.06235473494754785,22106.11111111111,7,4,7,7_1,7_0,7_0_0 -5940,2,47.0,3,0.0,6,111,2,67,47,4.0,0.0,0.0,545.7227776721429,0.0,1390.3282566482842,28000.0,31,31,1,3925,201105940,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.5,5003.362308065589,0.0,400.0,800.0,0.0,39426.0,4,1,2,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1936.051034320427,0.06914467979715812,0.04910594618577657,15770.4,4,2,4_0,4_1_0,4_4_0,4_0_0 -5941,2,46.0,4,0.0,1,120,2,0,85,2.0,3172.912018277764,0.0,654.8673332065715,0.0,0.0,22138.0,0,71,1,3926,201105941,,,500.0,,0.0,1.0,4.0,1.0,2.0,1.3,8432.81136854894,0.0,480.0,0.0,0.0,15691.0,0,6,1,90.0,0,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3827.7793514843356,0.17290538221539142,0.24394744448947395,12070.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -5942,2,43.0,3,0.0,9,221,6,54,63,3.0,0.0,0.0,944.1004053728072,0.0,1572.8088403333716,37630.0,50,71,1,3928,201105942,,,420.0,,2.0,0.0,5.0,2.0,4.0,2.5,4377.811029079702,0.0,692.0,905.0,0.0,34927.0,4,1,2,145.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2516.909245706179,0.0668857094261541,0.07206199346368651,13970.8,3,2,3_0,3_1_0,3_1_0,3_0_0 -5943,2,20.0,3,0.0,2,111,2,0,84,1.0,0.0,0.0,81.85841665082144,0.0,0.0,12986.0,0,31,2,3929,201105943,,,,230.0,0.0,0.0,1.0,0.0,1.0,1.0,3019.1461874721454,0.0,60.0,0.0,0.0,3789.0,0,3,3,22.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,81.85841665082144,0.006303589762114696,0.021604227144582065,3789.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -5944,2,50.0,4,0.0,5,111,1,0,64,3.0,0.0,0.0,341.0767360450893,286.75520293370863,0.0,8111.0,0,71,2,393,201105944,,,,300.0,1.0,3.0,1.0,0.0,1.0,1.0,5090.115429985244,0.0,250.0,0.0,0.0,12820.0,0,4,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,627.831938978798,0.07740499802475626,0.04897285015435242,12820.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -5945,2,46.0,4,0.0,1,111,6,85,64,1.0,0.0,0.0,1091.4455553442858,347.58206416207105,0.0,11219.0,71,71,2,3930,201105945,,,,406.0,1.0,0.0,1.0,2.0,4.0,2.1,3556.227618966841,0.0,800.0,0.0,0.0,15650.0,4,4,4,17.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1439.0276195063568,0.12826701305877145,0.09195064661382471,7452.380952380952,1,1,1_0,1_0_0,1_4_0,1_1_0 -5947,2,21.0,2,0.0,99,112,4,0,68,5.0,0.0,0.0,818.5841665082144,0.0,0.0,17907.0,0,60,2,3933,201105947,,,172.0,534.0,1.0,0.0,2.0,0.0,1.0,1.0,3176.4730006618533,0.0,600.0,0.0,0.0,17745.0,0,1,3,45.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,818.5841665082144,0.04571308239840366,0.04613041231379061,17745.0,5,3,5,5_0,5_0,5_0_0 -5948,2,32.0,3,0.0,7,111,2,43,43,8.0,0.0,0.0,400.5580877899367,0.0,827.9435735691593,35705.0,33,33,2,3934,201105948,,,,,2.0,0.0,3.0,1.0,3.0,1.8,4029.9205998690377,770.0,0.0,0.0,0.0,49223.0,1,1,2,60.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1228.501661359096,0.034406992336062064,0.02495787866158292,27346.11111111111,8,4,8,8_0,8_3,8_0_0 -5949,2,58.0,3,0.0,1,221,2,78,22,3.0,0.0,0.0,951.4555098283042,0.0,1966.6348000753146,24089.0,71,42,1,3935,201105949,,,481.0,,1.0,3.0,7.0,0.0,2.0,1.5,6808.686682459186,1829.0,0.0,0.0,0.0,19706.0,6,4,1,120.0,1,3.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2918.0903099036186,0.12113787662018426,0.14808131076340295,13137.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0 -5950,1,19.0,3,9998.0,1,111,2,0,84,1.0,0.0,0.0,93.63695558725793,0.0,193.54525096421906,9981.0,0,41,2,3936,201105950,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3413.599604061042,180.0,0.0,0.0,0.0,2064.0,0,3,3,19.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,287.182206551477,0.028772889144522293,0.13913866596486288,2064.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -5951,2,25.0,2,0.0,99,111,4,42,55,8.0,0.0,0.0,1159.6609025533037,0.0,0.0,26291.0,20,31,2,3937,201105951,,,,640.0,2.0,0.0,2.0,0.0,2.0,1.5,4882.001580395171,0.0,850.0,0.0,0.0,41407.0,1,1,3,44.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1159.6609025533037,0.04410866465913445,0.028006397530690553,27604.666666666668,8,4,8,8_0,8_4,8_0_0 -5952,2,62.0,2,0.0,1,300,2,77,78,4.0,2379.684013708323,0.0,613.9381248811608,0.0,0.0,30465.0,70,70,1,3939,201105952,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2288.8197574555566,0.0,450.0,0.0,0.0,22547.0,5,5,1,120.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2993.622138589484,0.09826430784800538,0.1327725257723637,15031.333333333334,4,2,4_0,4_1_0,4_0_0,4_1_0 -5953,2,76.0,2,0.0,1,111,1,0,77,7.0,0.0,0.0,4073.605324129269,0.0,1692.9987973422903,15904.0,0,70,1,3941,201105953,,,93.0,,0.0,3.0,4.0,0.0,1.0,1.0,3866.020260599039,372.0,2844.0,744.0,0.0,23003.0,0,5,1,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5766.604121471559,0.3625882873158676,0.2506892197309724,23003.0,7,4,7,7_1,7_4,7_1_0 -5954,2,73.0,2,0.0,5,400,2,78,75,7.0,1142.2483265799951,0.0,463.8643610213215,0.0,0.0,26419.0,50,70,1,3942,201105954,,,150.0,,0.0,0.0,5.0,0.0,2.0,1.5,1009.7006298845089,0.0,340.0,0.0,0.0,35548.0,5,5,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1606.1126876013166,0.060793848654427364,0.04518152041187455,23698.666666666668,7,4,7,7_1,7_0,7_0_0 -5955,2,47.0,1,0.0,5,111,4,42,48,7.0,0.0,191.5338320997547,1910.0297218525002,0.0,0.0,45900.0,31,20,1,3943,201105955,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2093.880874774449,0.0,1400.0,0.0,0.0,60458.0,1,1,1,130.0,5,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2101.563553952255,0.04578569834318638,0.034760719076917114,24183.2,7,4,7,7_1,7_2,7_0_0 -5956,2,54.0,3,0.0,2,120,2,62,63,9.0,1110.5192063972174,0.0,736.7257498573929,140.77073598563877,0.0,18736.0,50,50,1,3944,201105956,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1234.3989637000434,0.0,540.0,0.0,0.0,44682.0,1,1,2,100.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1988.015692240249,0.10610672994450518,0.044492540446717896,29788.0,9,5,9,9_1,9_1,9_0_1 -5957,2,68.0,3,0.0,6,111,2,52,78,10.0,0.0,0.0,2750.4427994676003,208.54923849724264,0.0,39667.0,70,50,1,3945,201105957,,,399.0,,1.0,2.0,7.0,0.0,2.0,1.5,1333.5325238191394,0.0,2016.0,0.0,0.0,55910.0,5,5,1,130.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2958.992037964843,0.07459581107633154,0.05292420028554539,37273.333333333336,9,5,9,9_1,9_3,9_0_0 -5958,2,83.0,3,0.0,2,111,2,0,77,2.0,0.0,0.0,429.75668741681255,0.0,1418.13482178125,10407.0,0,71,1,3949,201105958,,,130.0,,0.0,5.0,3.0,0.0,1.0,1.0,3562.8617705519177,0.0,315.0,816.0,0.0,11250.0,0,5,1,70.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1847.8915091980625,0.17756236275565124,0.16425702303982778,11250.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -5959,2,52.0,2,0.0,5,111,2,0,52,9.0,0.0,0.0,382.0059443705,100.7987986070006,1685.7730111860446,27032.0,0,50,1,395,201105959,,,440.0,,1.0,1.0,5.0,0.0,1.0,1.0,1405.940400913816,0.0,280.0,970.0,0.0,29089.0,0,1,2,140.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2168.5777541635453,0.08022261594271772,0.07454975262688801,29089.0,8,4,8,8_1,8_3,8_0_0 -5960,0,58.0,3,0.0,2,111,2,56,64,5.0,0.0,0.0,965.4405681551848,0.0,2007.9090082615926,17633.0,60,71,2,3950,201105960,,,,,3.0,2.0,2.0,1.0,3.0,2.0,4103.802844539769,1035.0,313.0,515.0,0.0,37713.0,1,1,5,45.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2973.3495764167774,0.16862414656704913,0.07884150230469009,18856.5,5,3,5,5_0,5_3,5_0_1 -5961,1,62.0,3,200.0,3,111,1,0,77,3.0,0.0,0.0,477.50743046312505,0.0,90.37133668213848,6592.0,0,70,2,3951,201105961,999999.0,52.0,,155.0,0.0,4.0,2.0,0.0,1.0,1.0,3484.069398892705,0.0,350.0,52.0,0.0,13387.0,0,5,3,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,567.8787671452635,0.0861466576373276,0.04242016636627052,13387.0,3,2,3_1,3_0_1,3_4_1,3_0_1 -5962,2,43.0,3,0.0,6,112,4,46,45,7.0,0.0,0.0,1991.8881385033217,104.27461924862132,0.0,46519.0,60,10,1,3953,201105962,,,471.0,,2.0,0.0,6.0,1.0,3.0,1.8,2772.947509996007,0.0,1460.0,0.0,0.0,38816.0,1,1,2,131.0,10,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2096.162757751943,0.0450603572250466,0.05400254425370834,21564.444444444445,6,3,6,6_1,6_1,6_0_0 -5963,2,81.0,2,0.0,3,111,2,77,75,5.0,0.0,0.0,1637.1683330164287,0.0,0.0,25422.0,60,60,2,3954,201105963,,,,,0.0,2.0,3.0,0.0,2.0,1.5,4257.809976492043,0.0,1200.0,0.0,0.0,27068.0,5,5,1,63.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1637.1683330164287,0.06439966694266497,0.060483535282120165,18045.333333333332,5,3,5,5_0,5_3,5_0_1 -5964,2,76.0,3,0.0,3,111,1,75,77,9.0,0.0,0.0,777.6549581828036,0.0,0.0,31639.0,50,50,2,3955,201105964,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2473.4576393042967,0.0,570.0,0.0,0.0,45498.0,5,5,1,85.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,777.6549581828036,0.02457899927882688,0.017092069061998408,30332.0,9,5,9,9_0,9_4,9_0_1 -5965,2,40.0,2,0.0,6,120,4,54,53,9.0,0.0,555.170527825376,1705.3836802254466,0.0,0.0,24978.0,43,43,1,3956,201105965,,,,,2.0,3.0,4.0,0.0,2.0,1.5,4851.820169582413,0.0,1250.0,0.0,0.0,55116.0,1,1,3,95.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2260.5542080508226,0.0905018099147579,0.04101448232910267,36744.0,9,5,9,9_1,9_0,9_0_0 -5966,2,51.0,3,0.0,6,112,2,0,55,2.0,3418.812699694291,222.0682111301504,825.4057012291162,194.64595593075978,0.0,34542.0,0,50,2,396,201105966,,,248.0,,1.0,1.0,4.0,1.0,2.0,1.5,2858.4376740884013,0.0,605.0,0.0,0.0,16061.0,0,4,1,178.0,7,0.0,2,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,4660.932567984317,0.13493522575370034,0.2902018907903815,10707.333333333334,2,1,2_0,2_0_0,2_0_0,2_0_0 -5967,2,71.0,3,0.0,1,400,4,77,78,3.0,0.0,0.0,2237.463388455786,225.92834170534618,0.0,19511.0,70,71,1,3960,201105967,,,243.0,,0.0,3.0,4.0,0.0,2.0,1.5,5212.97451650792,0.0,1640.0,0.0,0.0,20861.0,5,5,1,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2463.3917301611323,0.12625655938502037,0.11808598485984048,13907.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -5968,2,74.0,3,0.0,1,111,4,0,75,2.0,0.0,0.0,845.8703053918215,0.0,729.9223347403492,9208.0,0,71,2,3963,201105968,,,,,0.0,3.0,1.0,0.0,1.0,1.0,3150.5118166418397,0.0,620.0,420.0,0.0,12311.0,0,5,1,28.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1575.7926401321706,0.1711329974079247,0.12799875234604585,12311.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -5969,0,22.0,2,0.0,1,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,18546.0,0,20,2,3964,201105969,,,,,0.0,0.0,3.0,0.0,2.0,1.5,3808.421116217771,0.0,0.0,0.0,0.0,8431.0,0,3,5,60.0,10,8.0,5,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,5620.666666666667,1,1,1_0,1_0_0,1_4_0,1_1_0 -5970,2,71.0,4,0.0,3,111,6,0,86,3.0,0.0,0.0,249.69854823268778,0.0,516.1206692379175,7226.0,0,70,2,3965,201105970,,,180.0,,0.0,4.0,2.0,0.0,1.0,1.0,1827.8130666803197,480.0,0.0,0.0,0.0,12950.0,0,6,3,38.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,765.8192174706053,0.10598107078198246,0.05913661910969925,12950.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -5971,2,34.0,3,0.0,99,111,2,54,65,8.0,317.29120182777643,0.0,600.2950554393572,0.0,782.0596443646599,22707.0,10,43,2,3966,201105971,,,,461.0,2.0,0.0,3.0,0.0,2.0,1.5,2561.494848630564,0.0,440.0,450.0,0.0,37976.0,1,1,3,70.0,8,7.0,3,4,1,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1699.6459016317935,0.07485118693054096,0.04475579054223176,25317.333333333332,8,4,8,8_0,8_3,8_0_0 -5973,2,58.0,1,0.0,6,112,4,0,38,9.0,0.0,0.0,53.060941499446166,0.0,109.67564221305746,63068.0,0,50,1,397,201105973,,,,,1.0,2.0,5.0,0.0,1.0,1.0,2349.3484444280602,102.0,0.0,0.0,0.0,31430.0,0,1,1,120.0,10,0.0,1,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,162.73658371250363,0.0025803352526242093,0.005177746856904347,31430.0,9,5,9,9_1,9_0,9_0_0 -5974,2,39.0,2,0.0,9,112,5,52,38,7.0,0.0,149.89604251285152,136.43069441803573,0.0,0.0,28237.0,31,50,1,3970,201105974,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2008.8828653007522,0.0,100.0,0.0,0.0,47976.0,1,1,1,120.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,286.32673693088725,0.010140125967025083,0.005968124414934285,22845.714285714286,7,4,7,7_1,7_0,7_0_0 -5975,1,41.0,2,282.0,2,111,2,85,64,4.0,0.0,0.0,1841.8143746434823,0.0,1564.1192887293198,62796.0,71,50,1,3971,201105975,,,500.0,,1.0,1.0,4.0,3.0,5.0,3.0,2010.8007420875379,0.0,1350.0,900.0,0.0,45678.0,6,1,3,79.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,3405.933663372802,0.05423806712804641,0.07456398404861864,15226.0,4,2,4_1,4_1_1,4_2_1,4_0_1 -5976,2,61.0,3,0.0,8,212,2,71,77,5.0,1196.1878308907171,0.0,600.2950554393572,145.98446694806984,0.0,76724.0,71,70,1,3973,201105976,,,201.0,,0.0,3.0,5.0,0.0,2.0,1.5,1494.4173685156816,0.0,440.0,0.0,0.0,27668.0,5,5,1,98.0,2,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1942.4673532781442,0.02531759753503655,0.07020627993632153,18445.333333333332,5,3,5,5_1,5_0,5_0_0 -5977,2,39.0,3,0.0,1,112,4,48,37,9.0,0.0,0.0,2223.8203190139825,0.0,0.0,49666.0,42,43,1,3974,201105977,,,160.0,,2.0,0.0,4.0,1.0,3.0,1.8,2631.3860163104496,0.0,1630.0,0.0,0.0,58220.0,1,1,2,105.0,8,1.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2223.8203190139825,0.04477550676547301,0.03819684505348647,32344.444444444445,9,5,9,9_1,9_1,9_1_0 -5978,2,40.0,2,0.0,7,112,2,52,46,6.0,0.0,0.0,922.2714942659215,0.0,1604.091226107958,44300.0,50,31,1,3975,201105978,,,324.0,,2.0,0.0,5.0,2.0,4.0,2.3,3022.2581306323987,0.0,676.0,923.0,0.0,44953.0,1,1,2,140.0,7,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2526.3627203738797,0.05702850384591151,0.05620009165959735,19544.782608695652,6,3,6,6_1,6_1,6_0_0 -5979,2,45.0,2,0.0,6,112,2,54,38,7.0,0.0,0.0,3547.198054868929,0.0,0.0,63857.0,50,44,1,3976,201105979,,,240.0,1106.0,2.0,0.0,6.0,2.0,4.0,2.5,2988.8130523727004,0.0,2600.0,0.0,0.0,58930.0,4,1,3,140.0,7,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3547.198054868929,0.05554908709881343,0.060193416848276414,23572.0,7,4,7,7_1,7_1,7_0_0 -5980,2,47.0,3,0.0,7,111,2,53,54,6.0,0.0,0.0,1732.6698191090536,0.0,0.0,44298.0,50,42,1,3977,201105980,,,235.0,,3.0,0.0,4.0,2.0,4.0,2.5,2786.995693538059,0.0,1270.0,0.0,0.0,50949.0,1,1,1,115.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1732.6698191090536,0.0391139513998161,0.03400792594769384,20379.6,6,3,6,6_1,6_3,6_0_0 -5981,1,46.0,3,336.0,9,111,2,0,22,3.0,0.0,0.0,627.5811943229643,0.0,573.5104058674173,21599.0,0,31,2,3980,201105981,,,137.0,238.0,1.0,0.0,3.0,1.0,2.0,1.3,3417.431595040315,0.0,460.0,330.0,0.0,16205.0,0,1,3,60.0,7,5.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1201.0916001903815,0.05560866707673418,0.0741185806967221,12465.384615384615,2,1,2_1,2_0_1,2_2_1,2_0_0 -5982,2,41.0,1,0.0,6,112,2,0,46,9.0,1903.7472109666587,0.0,204.6460416270536,100.7987986070006,0.0,33846.0,0,31,1,3981,201105982,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2996.2727410026823,0.0,150.0,0.0,0.0,29108.0,0,1,1,95.0,6,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2209.192051200713,0.0652718800212939,0.07589638763229055,29108.0,9,5,9,9_1,9_0,9_0_0 -5983,2,43.0,3,0.0,10,111,2,11,43,3.0,2221.038412794435,0.0,1978.245069061518,279.8035616504672,0.0,36612.0,31,33,1,3982,201105983,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2585.547220892013,0.0,1450.0,0.0,0.0,26037.0,1,1,2,160.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4479.087043506421,0.12233931616700593,0.17202776984700313,12398.571428571428,2,1,2_0,2_1_0,2_3_0,2_0_0 -5984,1,29.0,4,243.0,6,111,2,0,85,3.0,0.0,0.0,74.90956446980634,0.0,154.83620077137522,3736.0,0,50,2,3985,201105984,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2359.7569433120807,144.0,0.0,0.0,0.0,13179.0,0,7,3,28.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,229.74576524118157,0.06149511917590513,0.017432716081734696,13179.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -5985,1,49.0,5,180.0,1,112,2,85,65,3.0,4600.722426502758,0.0,804.9410970664107,151.1981979105009,0.0,17648.0,71,71,1,3986,201105985,,,200.0,,1.0,4.0,4.0,1.0,3.0,1.8,3117.198769192389,0.0,590.0,0.0,0.0,24713.0,6,1,3,80.0,6,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,5556.8617214796695,0.31487203770850347,0.22485581359930681,13729.444444444443,3,2,3_1,3_1_1,3_0_1,3_1_0 -5986,2,52.0,2,0.0,7,300,2,0,43,5.0,33.31557619191653,26.370600071705358,818.5841665082144,104.27461924862132,0.0,27298.0,0,41,1,3987,201105986,,,200.0,,1.0,0.0,4.0,1.0,2.0,1.3,2666.7727213059165,0.0,600.0,0.0,0.0,24210.0,0,1,1,85.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,982.5449620204575,0.03599329482088276,0.04058426113260874,18623.076923076922,5,3,5,5_1,5_0,5_0_0 -5987,2,30.0,3,0.0,4,111,1,0,56,3.0,0.0,0.0,191.00297218525,0.0,104.27461924862132,14625.0,0,31,2,3988,201105987,,,,183.0,1.0,0.0,1.0,0.0,1.0,1.0,3255.2041209285076,0.0,140.0,60.0,0.0,13240.0,0,3,3,39.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,295.2775914338713,0.020189920781803164,0.02230193288775463,13240.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -5988,2,72.0,3,0.0,6,111,2,0,77,6.0,0.0,0.0,368.36287492869644,0.0,782.0596443646599,29793.0,0,41,2,3991,201105988,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3082.6848314891117,0.0,270.0,450.0,0.0,20065.0,0,5,1,97.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1150.4225192933563,0.03861385289475234,0.05733478790397988,20065.0,6,3,6,6_0,6_2,6_0_0 -5989,2,60.0,2,0.0,4,120,2,72,75,8.0,0.0,0.0,596.2021346068161,0.0,2005.54851021515,22966.0,50,60,1,3994,201105989,,,367.0,,0.0,1.0,6.0,0.0,2.0,1.5,2356.0065101304526,0.0,437.0,1154.0,0.0,39557.0,5,5,1,180.0,0,3.0,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2601.750644821966,0.11328706108255535,0.06577219315979387,26371.333333333332,8,4,8,8_1,8_1,8_0_1 -5990,1,53.0,3,72.0,1,111,2,0,46,1.0,0.0,0.0,359.9820737021249,0.0,744.0739648179976,22840.0,0,50,2,3995,201105990,,,,456.0,1.0,0.0,3.0,2.0,3.0,2.0,2025.822372407839,692.0,0.0,0.0,0.0,16314.0,0,4,3,50.0,4,4.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1104.0560385201225,0.04833870571454126,0.06767537320829486,8157.0,1,1,1_1,1_0_1,1_2_1,1_1_0 -5991,2,62.0,2,0.0,2,111,2,78,77,4.0,0.0,0.0,409.2920832541072,0.0,1458.106759159888,26891.0,70,50,1,3996,201105991,,,243.0,,0.0,0.0,4.0,0.0,2.0,1.5,1242.3754077837484,0.0,300.0,839.0,0.0,22154.0,5,5,1,74.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1867.3988424139952,0.06944326512268027,0.0842917234997741,14769.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_1 -5992,1,51.0,2,503.0,1,111,2,85,56,4.0,0.0,0.0,545.7227776721429,0.0,695.1641283241421,29480.0,60,60,2,3997,201105992,,,,967.0,1.0,0.0,3.0,4.0,6.0,3.1,2368.258308948739,0.0,400.0,400.0,0.0,50416.0,6,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1240.886905996285,0.04209250020340179,0.024612958306813013,16263.225806451612,4,2,4_1,4_0_1,4_4_1,4_1_0 -5993,2,51.0,4,0.0,99,111,6,62,54,10.0,0.0,0.0,1023.230208135268,0.0,660.405921907935,24328.0,50,50,1,3999,201105993,,,,,2.0,1.0,4.0,0.0,2.0,1.5,1424.1307151726915,0.0,750.0,380.0,0.0,62490.0,4,1,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1683.636130043203,0.06920569426353185,0.02694248887891187,41660.0,10,5,10,10_1,10_4,10_0_0 -5994,1,47.0,4,489.0,1,300,2,85,62,2.0,2379.684013708323,0.0,1487.0945691565894,194.64595593075978,0.0,46638.0,70,71,1,4,201105994,,,,,3.0,4.0,6.0,4.0,6.0,3.1,2346.497290551437,0.0,1090.0,0.0,0.0,36244.0,6,1,3,160.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,4061.4245387956726,0.08708402030094928,0.11205784512734998,11691.612903225807,2,1,2_1,2_1_1,2_0_1,2_1_0 -5995,2,65.0,3,0.0,1,111,6,46,72,9.0,951.8736054833294,0.0,982.3009998098572,0.0,0.0,46699.0,60,50,1,4001,201105995,,,,,3.0,0.0,8.0,2.0,4.0,2.5,1919.8074185424873,0.0,720.0,0.0,0.0,81396.0,1,5,1,190.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1934.1746052931867,0.04141790199561418,0.02376252647910446,32558.4,9,5,9,9_1,9_3,9_1_0 -5996,2,59.0,2,0.0,1,111,2,0,52,5.0,2062.392811880547,0.0,1874.5577413038109,0.0,298.9205751793811,19531.0,0,50,1,4004,201105996,,,99.0,,1.0,0.0,5.0,0.0,1.0,1.0,1836.1609465346207,0.0,1374.0,172.0,0.0,18952.0,0,1,1,102.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4235.8711283637385,0.2168793778282596,0.22350523049618715,18952.0,5,3,5,5_1,5_4,5_1_0 -5997,2,72.0,4,0.0,3,400,6,0,11,1.0,0.0,0.0,450.22129157951787,187.69431464751835,0.0,9323.0,0,70,1,4006,201105997,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2303.2507091341613,0.0,330.0,0.0,0.0,4311.0,0,1,1,55.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,637.9156062270363,0.06842385565022378,0.14797392860752406,4311.0,1,1,1_0,1_1_0,1_0_0,1_0_1 -5998,2,44.0,3,0.0,8,111,6,0,37,6.0,0.0,0.0,1364.3069441803573,0.0,0.0,50638.0,0,50,1,4008,201105998,,,170.0,870.0,1.0,0.0,3.0,2.0,3.0,1.8,1793.356619052108,0.0,1000.0,0.0,0.0,34225.0,0,1,3,100.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1364.3069441803573,0.02694235444094074,0.03986287638218721,19013.888888888887,5,3,5,5_1,5_3,5_0_0 -5999,2,67.0,3,0.0,6,300,4,78,77,2.0,92.01444853005516,72.17216861729888,1118.731694227893,291.9689338961397,0.0,22307.0,71,70,1,401,201105999,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1812.1205280602942,0.0,820.0,0.0,0.0,18209.0,5,5,1,98.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1574.8872452713867,0.07060058480617684,0.08648949669237117,12139.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -6000,1,37.0,4,200.0,2,111,1,85,67,3.0,0.0,0.0,327.43366660328576,312.82385774586396,0.0,36801.0,50,71,2,4010,201106000,,,,,1.0,0.0,3.0,3.0,5.0,2.4,3235.5677430834826,0.0,240.0,0.0,0.0,31115.0,6,1,3,96.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,640.2575243491497,0.0173978295249898,0.02057713399804434,12964.583333333334,3,2,3_1,3_0_1,3_4_1,3_0_1 -6001,2,53.0,3,0.0,2,111,3,42,54,5.0,0.0,0.0,955.0148609262501,0.0,1616.2565983536304,53898.0,30,31,1,4011,201106001,,,300.0,,3.0,0.0,6.0,2.0,4.0,2.5,1792.7105437864357,0.0,700.0,930.0,0.0,45896.0,1,1,1,98.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2571.27145927988,0.0477062499402553,0.056023868295273664,18358.4,5,3,5,5_1,5_3,5_0_1 -6002,2,69.0,3,0.0,5,111,2,0,77,8.0,0.0,0.0,1082.202290039662,0.0,1794.8704408167312,41093.0,0,70,2,4012,201106002,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3264.937185306671,1346.0,280.0,200.0,0.0,25440.0,0,5,1,45.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2877.0727308563933,0.07001369408065591,0.11309248155882048,25440.0,8,4,8,8_0,8_2,8_0_0 -6003,2,57.0,4,0.0,6,112,4,78,56,3.0,0.0,0.0,2371.165468985461,156.41192887293198,0.0,35301.0,71,50,1,4013,201106003,,,237.0,,1.0,3.0,6.0,1.0,3.0,2.0,2568.549977361362,0.0,1738.0,0.0,0.0,26696.0,7,1,1,140.0,7,1.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2527.577397858393,0.07160073079681575,0.09468000441483342,13348.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -6004,2,67.0,2,0.0,4,111,2,77,74,10.0,0.0,0.0,814.4912456756733,0.0,2396.5783323974797,52454.0,50,12,1,4014,201106004,,,301.0,,0.0,2.0,4.0,0.0,2.0,1.5,966.2298422739807,0.0,597.0,1379.0,0.0,64157.0,5,5,1,110.0,6,5.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3211.069578073153,0.061216867694992814,0.05005018280270513,42771.333333333336,10,5,10,10_1,10_2,10_0_1 -6005,2,49.0,2,0.0,4,111,1,0,31,10.0,0.0,0.0,401.10624158902505,0.0,78.20596443646599,40071.0,0,10,2,4015,201106005,,,,,1.0,0.0,2.0,0.0,1.0,1.0,8325.285661277827,0.0,294.0,45.0,0.0,48347.0,0,1,1,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,479.31220602549104,0.011961573357926955,0.009914000993349971,48347.0,10,5,10,10_0,10_4,10_0_1 -6006,2,38.0,3,0.0,9,300,2,52,48,6.0,0.0,277.585263912688,1841.8143746434823,0.0,0.0,67570.0,50,31,1,4017,201106006,,,,,2.0,0.0,5.0,4.0,6.0,3.1,1521.1525316533152,0.0,1350.0,0.0,0.0,59291.0,1,1,2,104.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2119.3996385561704,0.031365985475154214,0.03574572259796884,19126.129032258064,5,3,5,5_1,5_0,5_0_0 -6007,2,80.0,1,0.0,5,300,5,0,86,4.0,0.0,0.0,169.1740610783643,86.89551604051776,0.0,7402.0,0,41,1,4018,201106007,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2903.5563228210276,0.0,124.0,0.0,0.0,15688.0,0,6,1,80.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,256.0695771188821,0.03459464700336153,0.01632264005092313,15688.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -6008,2,35.0,3,0.0,1,112,4,85,11,1.0,0.0,0.0,1296.0915969713394,0.0,0.0,15084.0,50,43,2,402,201106008,,,,,1.0,0.0,3.0,3.0,5.0,2.6,2504.902361205145,0.0,950.0,0.0,0.0,19552.0,6,1,3,65.0,7,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1296.0915969713394,0.08592492687426011,0.0662894638385505,7520.0,1,1,1_0,1_0_0,1_0_0,1_1_0 -6009,2,65.0,2,0.0,6,111,1,0,74,6.0,0.0,0.0,477.50743046312505,0.0,0.0,21216.0,0,20,2,4020,201106009,,,168.0,,0.0,0.0,3.0,0.0,1.0,1.0,2343.7793595708517,0.0,350.0,0.0,0.0,21322.0,0,5,1,49.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,477.50743046312505,0.022506949022583194,0.022395058177615845,21322.0,6,3,6,6_0,6_2,6_0_0 -6010,2,38.0,2,0.0,7,111,6,0,46,8.0,0.0,0.0,523.8938665652572,0.0,0.0,15894.0,0,31,2,4021,201106010,,,,310.0,1.0,0.0,1.0,0.0,1.0,1.0,4128.679922492676,0.0,384.0,0.0,0.0,26602.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,523.8938665652572,0.03296173817574287,0.019693777406407684,26602.0,8,4,8,8_0,8_4,8_0_0 -6011,2,49.0,3,0.0,1,111,2,52,48,7.0,0.0,0.0,955.0148609262501,0.0,3128.2385774586396,54220.0,42,42,1,4024,201106011,,,470.0,,2.0,0.0,5.0,2.0,4.0,2.5,1199.950336492699,0.0,700.0,1800.0,0.0,55150.0,1,1,1,98.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4083.2534383848897,0.07530899001078734,0.07403904693354288,22060.0,7,4,7,7_1,7_2,7_1_0 -6012,2,51.0,2,0.0,1,112,2,54,21,6.0,3490.203220105541,0.0,1162.3895164416645,173.79103208103552,0.0,34339.0,50,50,1,4027,201106012,,,226.0,,3.0,1.0,7.0,2.0,4.0,2.5,1264.8727548493412,0.0,852.0,0.0,0.0,53288.0,1,1,1,170.0,9,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4826.38376862824,0.14055108677096714,0.09057168159113196,21315.2,6,3,6,6_1,6_0,6_1_0 -6013,2,45.0,2,0.0,1,111,6,0,64,7.0,0.0,0.0,764.011888741,60.82686122836243,0.0,20600.0,0,43,2,4028,201106013,,,182.0,384.0,1.0,1.0,3.0,0.0,1.0,1.0,6146.267396521897,0.0,560.0,0.0,0.0,22358.0,0,1,3,90.0,8,6.0,1,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,824.8387499693624,0.04004071601793022,0.03689233160252985,22358.0,7,4,7,7_0,7_2,7_1_0 -6014,2,54.0,3,0.0,1,300,2,0,64,6.0,0.0,0.0,477.50743046312505,52.13730962431066,0.0,21491.0,0,50,1,4029,201106014,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2374.5011920750276,0.0,350.0,0.0,0.0,20909.0,0,1,2,70.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,529.6447400874357,0.024644955566862206,0.02533094553003184,20909.0,6,3,6,6_1,6_0,6_1_0 -6015,2,75.0,1,0.0,4,211,2,75,74,10.0,0.0,0.0,1070.1477850145832,0.0,4213.755938988997,38444.0,33,60,1,4031,201106015,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1873.8585442933597,578.0,564.0,2067.0,0.0,56850.0,5,5,5,200.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5283.90372400358,0.13744417136623607,0.09294465653480351,37900.0,10,5,10,10_1,10_1,10_0_1 -6016,2,23.0,2,0.0,4,112,1,63,52,5.0,0.0,0.0,3820.0594437050004,0.0,0.0,35677.0,60,60,2,4033,201106016,,,,346.0,2.0,0.0,3.0,1.0,3.0,1.8,3006.154185320183,0.0,2800.0,0.0,0.0,33176.0,1,1,3,70.0,10,5.0,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3820.0594437050004,0.10707344910460521,0.1151452689807391,18431.11111111111,5,3,5,5_0,5_2,5_0_1 -6017,2,53.0,4,0.0,1,111,2,0,62,6.0,0.0,0.0,139.15930830639644,0.0,218.97670042210476,10173.0,0,50,1,4034,201106017,,,,349.0,1.0,1.0,3.0,0.0,1.0,1.0,1785.3006158977087,0.0,102.0,126.0,0.0,21502.0,0,1,3,60.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,358.1360087285012,0.035204561951096155,0.01665593938835928,21502.0,6,3,6,6_1,6_3,6_1_0 -6018,2,58.0,2,0.0,1,112,2,85,63,4.0,1189.8420068541616,0.0,682.1534720901786,97.32297796537989,0.0,18137.0,60,50,1,4035,201106018,,,390.0,,1.0,2.0,6.0,1.0,3.0,2.0,1342.9300918425527,0.0,500.0,0.0,0.0,29535.0,6,1,1,120.0,8,1.0,4,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1969.3184569097202,0.10858016523734466,0.06667744902352193,14767.5,3,2,3_0,3_1_0,3_1_0,3_1_0 -6019,2,39.0,1,0.0,9,221,2,31,37,10.0,0.0,0.0,1671.2760066209376,0.0,0.0,93923.0,10,10,1,4036,201106019,,,224.0,,2.0,2.0,6.0,1.0,3.0,1.8,3184.869343067114,0.0,1225.0,0.0,0.0,68859.0,5,1,2,160.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1671.2760066209376,0.017794108009975593,0.024270988637954915,38255.0,10,5,10,10_1,10_1,10_0_0 -6020,1,64.0,3,160.0,1,111,1,86,78,1.0,0.0,0.0,341.0767360450893,0.0,260.6865481215533,19937.0,71,71,2,4037,201106020,,,380.0,120.0,0.0,6.0,3.0,0.0,2.0,1.5,3098.584032560892,0.0,250.0,150.0,0.0,13300.0,5,5,3,51.0,4,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,601.7632841666426,0.030183241418801354,0.04524535971177764,8866.666666666666,1,1,1_1,1_0_1,1_2_1,1_1_0 -6021,2,63.0,2,0.0,8,111,2,74,74,10.0,0.0,0.0,130.0513272045249,0.0,268.81284856141536,55819.0,20,12,1,4039,201106021,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1539.5578762945631,250.0,0.0,0.0,0.0,76864.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,398.8641757659403,0.007145670394774903,0.005189219605614336,51242.666666666664,10,5,10,10_1,10_4,10_0_0 -6022,2,77.0,3,0.0,1,112,2,71,71,2.0,2379.684013708323,0.0,341.0767360450893,194.64595593075978,0.0,21483.0,70,71,1,404,201106022,,,114.0,,0.0,4.0,4.0,0.0,2.0,1.5,2019.3787862966678,0.0,250.0,0.0,0.0,17807.0,5,5,1,110.0,4,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2915.4067056841723,0.13570761558833366,0.16372250832168092,11871.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -6023,2,75.0,3,0.0,1,112,2,0,78,2.0,2379.684013708323,0.0,88.43490249907694,0.0,182.79273702176243,14117.0,0,50,1,4040,201106023,,,140.0,,0.0,1.0,3.0,0.0,1.0,1.0,2639.31852220258,170.0,0.0,0.0,0.0,11070.0,0,5,1,70.0,7,2.0,1,5,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2650.9116532291628,0.18778151542318927,0.2394680806891746,11070.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -6024,2,44.0,1,0.0,7,211,2,0,37,8.0,0.0,0.0,442.1745124953847,0.0,913.9636851088122,34718.0,0,20,1,4042,201106024,,,,,1.0,0.0,4.0,1.0,2.0,1.3,1912.82705975068,850.0,0.0,0.0,0.0,35320.0,0,1,2,97.0,4,4.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1356.1381976041969,0.03906152997304559,0.0383957587090656,27169.23076923077,8,4,8,8_1,8_2,8_0_0 -6025,2,27.0,3,0.0,3,111,2,54,63,8.0,0.0,0.0,450.22129157951787,0.0,868.9551604051776,87683.0,44,43,2,4043,201106025,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3168.5509190259595,0.0,330.0,500.0,0.0,38215.0,1,1,2,56.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1319.1764519846954,0.015044837106220081,0.03451986005455176,25476.666666666668,8,4,8,8_0,8_4,8_0_1 -6026,2,40.0,2,0.0,6,112,4,55,21,6.0,0.0,388.6193694777632,2046.460416270536,0.0,0.0,62085.0,41,12,1,4044,201106026,,,,,2.0,0.0,4.0,3.0,5.0,2.4,3227.069481463059,0.0,1500.0,0.0,0.0,46356.0,1,1,2,90.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2435.079785748299,0.03922170871785937,0.05252998070904088,19315.0,6,3,6,6_1,6_0,6_0_0 -6027,2,55.0,4,0.0,9,112,2,0,52,3.0,0.0,0.0,688.9750068110804,0.0,3084.7908194383804,25484.0,0,50,2,4048,201106027,,,,,2.0,0.0,4.0,1.0,2.0,1.5,5033.064263838043,0.0,505.0,1775.0,0.0,21740.0,0,1,3,108.0,7,0.0,2,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,3773.7658262494606,0.1480837319984877,0.17358628455609296,14493.333333333334,3,2,3_0,3_0_0,3_0_0,3_0_0 -6028,2,63.0,3,0.0,1,111,6,77,75,4.0,0.0,0.0,1098.9649720294328,0.0,668.2064827511153,30826.0,50,50,2,4049,201106028,,,151.0,,0.0,2.0,4.0,0.0,2.0,1.5,2078.544947681946,518.0,608.0,64.0,0.0,24425.0,5,5,1,76.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1767.1714547805482,0.057327303405584513,0.07235092957136328,16283.333333333334,4,2,4_0,4_0_0,4_3_0,4_1_0 -6029,2,51.0,2,0.0,9,111,2,0,38,8.0,1427.810408224994,0.0,341.0767360450893,0.0,0.0,26105.0,0,43,1,4050,201106029,,,,,1.0,2.0,4.0,0.0,1.0,1.0,3182.076122606265,0.0,250.0,0.0,0.0,24830.0,0,1,2,96.0,9,7.0,1,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1768.8871442700834,0.06776047286995147,0.07123991720781649,24830.0,7,4,7,7_1,7_3,7_0_0 -6030,2,50.0,1,0.0,2,112,1,85,23,10.0,0.0,0.0,1604.4249663561002,0.0,347.58206416207105,83153.0,50,41,2,4052,201106030,200.0,200.0,,,1.0,1.0,6.0,1.0,3.0,2.0,1864.8533352826173,0.0,1176.0,200.0,0.0,103166.0,6,1,1,170.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1952.0070305181712,0.023474884015227005,0.01892103048017924,51583.0,10,5,10,10_0,10_2,10_0_1 -6031,2,58.0,3,0.0,1,111,5,54,65,8.0,0.0,693.9631597817199,744.2451665425399,0.0,942.7963134391516,28563.0,71,71,1,4055,201106031,,,,,2.0,1.0,4.0,0.0,2.0,1.5,3023.932452850324,518.0,348.0,222.0,0.0,38817.0,1,1,2,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2381.0046397634114,0.08335975351900751,0.06133922352998458,25878.0,8,4,8,8_1,8_4,8_1_0 -6032,2,48.0,3,0.0,6,120,2,62,11,4.0,0.0,0.0,477.50743046312505,2259.283417053462,0.0,45065.0,50,50,1,4056,201106032,,,180.0,,2.0,0.0,6.0,2.0,4.0,2.5,1130.1927720648132,0.0,350.0,0.0,0.0,39352.0,1,1,1,152.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2736.790847516587,0.06072985348977226,0.06954642324447517,15740.8,4,2,4_0,4_1_0,4_0_0,4_0_0 -6033,2,55.0,3,0.0,1,112,4,0,45,8.0,0.0,0.0,1358.8497164036357,62.56477154917279,0.0,25878.0,0,20,1,4057,201106033,,,130.0,,2.0,1.0,3.0,1.0,2.0,1.5,992.5625076604338,0.0,996.0,0.0,0.0,40630.0,0,1,1,70.0,9,2.0,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1421.4144879528085,0.054927524845537076,0.03498435855163201,27086.666666666668,8,4,8,8_1,8_1,8_1_0 -6034,2,51.0,2,0.0,7,111,1,63,37,10.0,0.0,799.4455600685415,414.7493110308286,0.0,0.0,38227.0,50,71,2,4058,201106034,576.0,576.0,,572.0,2.0,1.0,3.0,0.0,2.0,1.5,2901.556305992432,0.0,304.0,0.0,0.0,68657.0,1,1,3,77.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1214.1948710993702,0.03176275593427081,0.01768493920648106,45771.333333333336,10,5,10,10_0,10_4,10_0_0 -6035,2,26.0,2,0.0,1,211,4,42,46,9.0,0.0,0.0,1457.0798163846216,312.82385774586396,0.0,48939.0,20,20,1,4059,201106035,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1950.8302630175515,0.0,1068.0,0.0,0.0,50708.0,1,1,3,60.0,1,2.0,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1769.9036741304856,0.036165505509521766,0.03490383517651033,33805.333333333336,9,5,9,9_1,9_1,9_1_0 -6036,2,65.0,4,0.0,1,112,2,0,77,3.0,1903.7472109666587,0.0,791.2980276246072,0.0,0.0,13795.0,0,71,1,4060,201106036,,,310.0,,0.0,2.0,5.0,0.0,1.0,1.0,2390.746602530475,0.0,580.0,0.0,0.0,12902.0,0,5,5,90.0,9,3.0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2695.045238591266,0.19536391725924362,0.20888585014658703,12902.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -6037,2,54.0,2,0.0,1,300,6,56,75,5.0,0.0,0.0,1146.0178331115,1216.5372245672486,0.0,29243.0,50,60,1,4061,201106037,,,320.0,,1.0,4.0,9.0,0.0,2.0,1.5,1615.6098370301331,0.0,840.0,0.0,0.0,25443.0,1,5,1,270.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2362.5550576787487,0.08079044754911427,0.09285678016266748,16962.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -6038,2,27.0,3,0.0,7,111,4,47,46,9.0,0.0,0.0,927.728722042643,0.0,0.0,33801.0,31,41,2,4063,201106038,,,,469.0,2.0,0.0,2.0,0.0,2.0,1.5,4016.5204384208923,0.0,680.0,0.0,0.0,53401.0,1,1,3,40.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,927.728722042643,0.027446783291696784,0.01737287170732089,35600.666666666664,9,5,9,9_0,9_3,9_0_0 -6039,0,90.0,3,0.0,1,111,2,0,78,3.0,0.0,0.0,676.2669014635294,0.0,1397.8268125193597,18097.0,0,70,1,4064,201106039,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2293.032792428683,1300.0,0.0,0.0,0.0,13601.0,0,5,5,36.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2074.0937139828893,0.11460980902817534,0.15249567781654946,13601.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -6040,2,55.0,1,0.0,6,111,4,43,37,10.0,0.0,0.0,7048.009673635725,0.0,0.0,98738.0,50,10,1,4066,201106040,,,532.0,,3.0,0.0,8.0,2.0,4.0,2.5,1136.2952264147873,0.0,5166.0,0.0,0.0,424363.0,4,1,2,185.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,7048.009673635725,0.07138092399720194,0.016608445301865914,169745.2,10,5,10,10_1,10_4,10_0_0 -6041,2,50.0,3,0.0,8,111,4,65,48,7.0,0.0,0.0,1837.7214538109413,354.5337054453125,0.0,47783.0,31,50,1,4068,201106041,,,345.0,,2.0,1.0,4.0,2.0,4.0,2.1,1618.3762439452403,0.0,1347.0,0.0,0.0,46693.0,1,1,2,133.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2192.2551592562536,0.04587939558538086,0.046950402828180963,22234.761904761905,7,4,7,7_1,7_2,7_0_0 -6042,2,47.0,3,0.0,6,112,4,78,52,6.0,0.0,693.9631597817199,1637.1683330164287,0.0,0.0,32284.0,50,50,1,4069,201106042,,,500.0,,1.0,1.0,5.0,1.0,3.0,2.0,2219.6379182701703,0.0,1200.0,0.0,0.0,43042.0,5,1,2,117.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2331.1314927981484,0.07220702183119032,0.0541594603596057,21521.0,6,3,6,6_1,6_0,6_0_0 -6043,2,61.0,2,0.0,5,111,2,75,75,9.0,0.0,0.0,1780.4205621553663,173.79103208103552,0.0,20724.0,30,30,1,407,201106043,,,217.0,,0.0,2.0,4.0,0.0,2.0,1.5,1872.7341609925077,0.0,1305.0,0.0,0.0,45818.0,5,5,1,104.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1954.2115942364019,0.09429702732273701,0.04265161277743249,30545.333333333332,9,5,9,9_1,9_2,9_0_0 -6044,2,41.0,3,0.0,7,111,2,77,46,7.0,0.0,0.0,477.50743046312505,0.0,1286.0536373996629,35679.0,50,50,1,4070,201106044,,,244.0,,1.0,2.0,3.0,1.0,3.0,1.8,2740.313016192382,0.0,350.0,740.0,0.0,40589.0,5,1,2,90.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1763.561067862788,0.04942854530291734,0.043449236686363,22549.444444444445,7,4,7,7_1,7_2,7_0_0 -6045,2,54.0,4,0.0,5,111,1,0,67,7.0,0.0,0.0,1616.7037288537233,0.0,0.0,36852.0,0,60,2,4071,201106045,540.0,540.0,,325.0,2.0,1.0,3.0,1.0,2.0,1.5,2096.9249999189456,0.0,1185.0,0.0,0.0,34360.0,0,1,3,62.0,6,5.0,2,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1616.7037288537233,0.043870176078739914,0.04705191294684876,22906.666666666668,7,4,7,7_0,7_2,7_0_0 -6046,2,60.0,2,0.0,5,400,2,0,43,9.0,0.0,0.0,3102.4339910661324,104.27461924862132,0.0,29408.0,0,10,1,4073,201106046,,,90.0,,1.0,2.0,5.0,0.0,1.0,1.0,2393.6707969684917,0.0,2274.0,0.0,0.0,35185.0,0,1,1,110.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3206.708610314754,0.10904205013311867,0.09113851386428176,35185.0,9,5,9,9_1,9_0,9_0_0 -6047,2,74.0,1,0.0,6,111,4,0,75,9.0,0.0,166.55115834761278,1910.0297218525002,78.20596443646599,0.0,23688.0,0,50,1,4075,201106047,,,350.0,,0.0,2.0,4.0,0.0,1.0,1.0,3280.2779992418746,0.0,1400.0,0.0,0.0,30316.0,0,5,1,150.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2154.7868446365787,0.0909653345422399,0.0710775446838824,30316.0,9,5,9,9_1,9_3,9_0_0 -6048,2,60.0,2,0.0,1,111,2,75,75,9.0,2650.967991271072,0.0,409.2920832541072,450.118773089882,0.0,32699.0,30,30,1,4077,201106048,,,170.0,,0.0,2.0,11.0,0.0,2.0,1.5,2113.516188919225,0.0,300.0,0.0,0.0,48567.0,5,5,1,400.0,8,7.0,3,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3510.378847615061,0.10735431810193159,0.07227909583904835,32378.0,9,5,9,9_1,9_3,9_1_0 -6049,2,38.0,1,0.0,8,111,2,42,47,9.0,0.0,0.0,442.03544991443573,0.0,1993.3831379694775,81250.0,20,31,1,4079,201106049,,,,,2.0,0.0,7.0,2.0,4.0,2.1,2140.0656502365755,0.0,324.0,1147.0,0.0,68480.0,1,1,2,180.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2435.4185878839135,0.029974382620109704,0.03556393965951976,32609.52380952381,9,5,9,9_1,9_3,9_0_0 -6050,2,55.0,2,0.0,4,111,2,77,52,8.0,0.0,0.0,476.14312351894466,0.0,1781.3580788306142,38536.0,70,71,1,408,201106050,,,209.0,,1.0,2.0,4.0,0.0,2.0,1.5,1560.7827463733388,0.0,349.0,1025.0,0.0,37499.0,5,1,1,75.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2257.5012023495588,0.05858161725009235,0.06020163743965329,24999.333333333332,8,4,8,8_1,8_2,8_0_1 -6051,2,83.0,3,0.0,1,300,5,71,71,2.0,0.0,693.9631597817199,750.3688192991965,304.13430614181215,0.0,11775.0,71,71,1,4080,201106051,,,,,0.0,2.0,4.0,0.0,2.0,1.5,3411.4726876566915,0.0,550.0,0.0,0.0,14548.0,5,5,1,75.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1748.4662852227286,0.14848970575139947,0.12018602455476551,9698.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0 -6052,1,25.0,2,180.0,1,111,2,0,56,1.0,0.0,0.0,535.8114680826426,0.0,1107.5089360730312,19394.0,0,10,2,4081,201106052,,,,260.0,1.0,0.0,4.0,0.0,2.0,1.5,2512.0806380964827,1030.0,0.0,0.0,0.0,12370.0,0,3,3,40.0,8,6.0,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1643.3204041556737,0.08473344354726584,0.1328472436665864,8246.666666666666,1,1,1_1,1_0_1,1_2_1,1_1_0 -6053,2,65.0,3,0.0,4,112,2,77,72,8.0,596.5074594362197,0.0,1596.2391246910179,0.0,0.0,33113.0,70,50,1,4082,201106053,,,940.0,,0.0,2.0,4.0,0.0,2.0,1.5,2140.662365929895,0.0,1170.0,0.0,0.0,38058.0,5,5,1,85.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2192.746584127238,0.06622011246722549,0.057615917392591254,25372.0,8,4,8,8_1,8_0,8_0_1 -6054,2,42.0,1,0.0,6,111,4,0,37,10.0,0.0,0.0,1302.9131316922412,0.0,0.0,35922.0,0,20,2,4083,201106054,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2765.711685752031,0.0,955.0,0.0,0.0,48831.0,0,1,2,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1302.9131316922412,0.03627061777440681,0.02668208989560405,48831.0,10,5,10,10_0,10_4,10_0_0 -6055,1,44.0,3,355.0,1,112,4,0,52,2.0,0.0,0.0,1227.8762497623215,0.0,0.0,13701.0,0,10,2,4084,201106055,,,,50.0,1.0,0.0,2.0,1.0,2.0,1.3,3149.0787418399154,0.0,900.0,0.0,0.0,14664.0,0,1,3,55.0,10,4.0,2,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1227.8762497623215,0.0896194620657121,0.08373405958553748,11280.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -6056,2,66.0,3,0.0,4,111,1,77,77,5.0,0.0,0.0,376.5487165937786,0.0,0.0,15113.0,70,50,2,4085,201106056,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2439.8996456910318,0.0,276.0,0.0,0.0,28447.0,5,5,1,74.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,376.5487165937786,0.024915550624877825,0.013236851569366843,18964.666666666668,5,3,5,5_0,5_3,5_0_1 -6057,1,28.0,4,134.0,7,111,2,0,56,1.0,0.0,0.0,711.6408624631603,0.0,1470.9439073280648,23408.0,0,50,2,4087,201106057,,,,353.0,1.0,0.0,4.0,2.0,3.0,1.6,2212.173741918344,1368.0,0.0,0.0,0.0,7042.0,0,1,3,90.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2182.584769791225,0.09324097615307694,0.309938195085377,4401.25,1,1,1_1,1_0_1,1_3_1,1_0_0 -6058,1,60.0,3,142.0,6,112,4,52,78,6.0,0.0,0.0,573.00891655575,152.93610823131127,0.0,27438.0,71,50,1,409,201106058,,,,286.0,2.0,2.0,4.0,1.0,3.0,2.0,1629.141673592729,0.0,420.0,0.0,0.0,38284.0,1,5,3,70.0,8,1.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,725.9450247870614,0.026457650877872343,0.018962099696663393,19142.0,5,3,5,5_1,5_1,5_0_0 -6059,2,51.0,2,0.0,4,111,2,0,46,5.0,0.0,0.0,416.1642470544797,0.0,860.2011153965291,12514.0,0,50,2,4090,201106059,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2981.3382317886676,800.0,0.0,0.0,0.0,18064.0,0,1,1,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1276.3653624510089,0.10199499460212633,0.07065795850592388,18064.0,5,3,5,5_0,5_3,5_0_1 -6060,2,51.0,2,0.0,1,111,2,62,56,6.0,0.0,0.0,597.5664415509965,0.0,912.4029184254365,30304.0,50,71,1,4092,201106060,,,332.0,,3.0,1.0,3.0,1.0,3.0,2.0,1058.1846035411415,0.0,438.0,525.0,0.0,39686.0,4,1,2,70.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1509.969359976433,0.04982739440260141,0.03804791009364594,19843.0,6,3,6,6_1,6_3,6_1_0 -6061,2,74.0,3,0.0,8,111,2,0,77,5.0,0.0,0.0,204.6460416270536,0.0,0.0,17766.0,0,70,2,4093,201106061,,,,,0.0,1.0,4.0,0.0,1.0,1.0,5140.766773169313,0.0,150.0,0.0,0.0,17899.0,0,5,1,90.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,204.6460416270536,0.011518971159915209,0.011433378491929918,17899.0,5,3,5,5_0,5_3,5_0_0 -6062,2,45.0,3,0.0,99,111,1,53,56,3.0,0.0,0.0,409.2920832541072,0.0,347.58206416207105,16862.0,71,50,2,4094,201106062,,,333.0,402.0,2.0,0.0,3.0,1.0,3.0,1.8,2849.022276124011,0.0,300.0,200.0,0.0,24813.0,4,1,3,65.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,756.8741474161782,0.044886380465910224,0.03050312930383985,13785.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -6063,2,77.0,3,0.0,3,112,2,77,78,4.0,0.0,0.0,522.5295596210768,0.0,2502.5908619669117,15988.0,70,50,1,4095,201106063,,,412.0,,0.0,4.0,5.0,0.0,2.0,1.5,2360.993447738439,0.0,383.0,1440.0,0.0,22734.0,5,5,1,110.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3025.1204215879884,0.18921193530072483,0.1330659110402036,15156.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -6064,2,50.0,3,0.0,9,111,2,52,46,6.0,0.0,0.0,628.9455012671447,0.0,0.0,29969.0,42,31,2,4096,201106064,,,,,2.0,0.0,2.0,0.0,2.0,1.5,4288.897999474653,0.0,461.0,0.0,0.0,32017.0,4,1,2,50.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,628.9455012671447,0.020986536129572048,0.019644110980639805,21344.666666666668,6,3,6,6_0,6_2,6_0_0 -6065,2,39.0,2,0.0,9,221,2,37,37,10.0,0.0,0.0,1609.8821941328215,0.0,0.0,53460.0,33,10,1,41,201106065,,,750.0,,2.0,0.0,5.0,0.0,2.0,1.5,2605.6231188215834,0.0,1180.0,0.0,0.0,76243.0,1,1,2,130.0,1,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1609.8821941328215,0.0301137709340221,0.02111514754315572,50828.666666666664,10,5,10,10_1,10_1,10_0_0 -6066,2,52.0,1,0.0,6,211,2,62,43,8.0,0.0,291.4645271083224,1217.280422634353,0.0,2516.0882625348477,56468.0,60,33,1,410,201106066,,,1050.0,,2.0,1.0,6.0,1.0,3.0,2.0,1827.601993800435,2340.0,0.0,0.0,0.0,51775.0,1,1,1,100.0,1,2.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4024.833212277523,0.07127635496701713,0.07773700071999079,25887.5,8,4,8,8_1,8_1,8_0_0 -6067,1,22.0,2,313.0,2,211,2,85,63,1.0,0.0,0.0,0.0,0.0,0.0,16463.0,50,60,2,4100,201106067,,,,237.0,1.0,0.0,4.0,0.0,2.0,1.5,3424.1784124532114,0.0,0.0,0.0,0.0,11931.0,6,1,3,63.0,1,2.0,3,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0.0,0.0,0.0,7954.0,1,1,1_1,1_0_1,1_1_1,1_0_1 -6068,2,50.0,2,0.0,7,111,2,0,48,10.0,0.0,0.0,1410.6933802824894,0.0,0.0,27724.0,0,43,2,4101,201106068,,,100.0,,1.0,0.0,3.0,0.0,1.0,1.0,2963.9041880646605,0.0,1034.0,0.0,0.0,39855.0,0,1,2,75.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1410.6933802824894,0.05088347209214,0.035395643715531035,39855.0,10,5,10,10_0,10_2,10_0_0 -6069,1,28.0,2,158.0,99,111,1,0,84,6.0,0.0,0.0,341.0767360450893,0.0,0.0,13083.0,0,10,2,4102,201106069,,,,147.0,0.0,0.0,1.0,0.0,1.0,1.0,3621.24583150119,0.0,250.0,0.0,0.0,20836.0,0,3,3,20.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,341.0767360450893,0.02607022365245657,0.016369588022897355,20836.0,6,3,6,6_0,6_2,6_0_0 -6070,1,29.0,3,365.0,8,111,2,85,85,1.0,0.0,0.0,272.86138883607146,0.0,1303.4327406077664,18798.0,60,71,2,4104,201106070,,,,8.0,0.0,0.0,4.0,2.0,4.0,2.1,3802.7290028344887,0.0,200.0,750.0,0.0,16577.0,6,7,3,70.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1576.2941294438378,0.08385435309308638,0.09508922781226023,7893.809523809524,1,1,1_1,1_0_1,1_3_1,1_0_0 -6071,2,33.0,5,0.0,1,400,4,0,53,5.0,0.0,0.0,2182.8911106885716,0.0,0.0,13736.0,0,60,1,4105,201106071,,,200.0,,1.0,1.0,4.0,0.0,1.0,1.0,2780.8747527187334,0.0,1600.0,0.0,0.0,17042.0,0,1,2,110.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2182.8911106885716,0.15891752407459026,0.12808890451171057,17042.0,5,3,5,5_1,5_0,5_1_0 -6072,2,25.0,3,0.0,2,112,5,0,63,6.0,0.0,832.755791738064,327.43366660328576,43.44775802025888,0.0,30605.0,0,50,1,4108,201106072,,,60.0,,1.0,0.0,3.0,0.0,1.0,1.0,4297.779534541896,0.0,240.0,0.0,0.0,18985.0,0,1,3,62.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1203.6372163616086,0.03932812339034826,0.063399379318494,18985.0,5,3,5,5_1,5_0,5_0_1 -6073,2,43.0,3,0.0,1,112,4,0,65,4.0,0.0,0.0,1866.3718996387288,130.34327406077665,0.0,12908.0,0,50,1,4109,201106073,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2380.523153789552,0.0,1368.0,0.0,0.0,14690.0,0,4,3,68.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1996.7151736995054,0.15468819133091924,0.13592342911501057,14690.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -6074,2,53.0,2,0.0,6,400,2,52,11,8.0,840.8216848436076,0.0,829.8036161771976,161.62565983536302,401.0687700536317,16113.0,50,50,1,4110,201106074,,,126.0,,2.0,2.0,5.0,0.0,2.0,1.5,1615.1147590849798,373.0,466.0,0.0,0.0,38410.0,1,1,1,108.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2233.3197309098,0.13860359529012597,0.05814422626685238,25606.666666666668,8,4,8,8_1,8_0,8_0_0 -6075,2,50.0,2,0.0,6,300,2,0,54,5.0,1110.5192063972174,69.396315978172,461.1357471329608,52.13730962431066,0.0,21986.0,0,50,1,4111,201106075,,,214.0,,1.0,2.0,5.0,0.0,1.0,1.0,3436.6574327771364,0.0,338.0,0.0,0.0,18336.0,0,1,2,99.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1693.1885791326608,0.07701212494917951,0.09234230907137111,18336.0,5,3,5,5_1,5_1,5_0_0 -6076,2,51.0,2,0.0,8,112,5,46,47,10.0,0.0,1290.771477193999,1227.8762497623215,93.84715732375918,0.0,62213.0,41,50,1,4113,201106076,,,400.0,,2.0,1.0,6.0,0.0,2.0,1.5,1442.6734995033282,0.0,900.0,0.0,0.0,59828.0,1,1,2,160.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2612.49488428008,0.04199274885120602,0.04366675944842014,39885.333333333336,10,5,10,10_1,10_0,10_0_0 -6077,2,82.0,3,0.0,2,112,2,0,78,2.0,2855.620816449988,0.0,354.7198054868929,97.32297796537989,0.0,11130.0,0,71,1,4114,201106077,,,106.0,,0.0,3.0,4.0,0.0,1.0,1.0,2809.991466305901,0.0,260.0,0.0,0.0,11805.0,0,5,1,70.0,10,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3307.6635999022606,0.29718451032365323,0.28019174925050916,11805.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -6078,1,24.0,3,100.0,5,112,2,0,64,4.0,0.0,0.0,81.85841665082144,0.0,0.0,15993.0,0,20,8,4115,201106078,,,,350.0,1.0,0.0,2.0,0.0,1.0,1.0,5138.380529117353,0.0,60.0,0.0,0.0,14718.0,0,1,3,48.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,81.85841665082144,0.005118390336448536,0.005561789417775611,14718.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -6079,1,42.0,2,54.0,99,111,4,0,52,4.0,0.0,0.0,1500.737638598393,0.0,0.0,19672.0,0,33,2,4117,201106079,,,,616.0,1.0,1.0,3.0,1.0,2.0,1.5,4681.140065700141,0.0,1100.0,0.0,0.0,22330.0,0,1,3,60.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1500.737638598393,0.07628800521545308,0.06720723862957426,14886.666666666666,3,2,3_1,3_0_1,3_4_1,3_0_0 -6080,2,66.0,1,0.0,1,112,2,0,11,8.0,4442.07682558887,0.0,575.7375304441108,93.84715732375918,0.0,24224.0,0,30,1,4118,201106080,,,590.0,,1.0,0.0,8.0,0.0,1.0,1.0,2454.2693695858793,0.0,422.0,0.0,0.0,27656.0,0,1,1,200.0,10,0.0,1,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5111.66151335674,0.21101640989748763,0.18483010968168717,27656.0,8,4,8,8_1,8_0,8_1_0 -6081,2,51.0,2,0.0,1,400,4,0,85,8.0,0.0,0.0,1671.2760066209376,0.0,0.0,20625.0,0,10,1,4119,201106081,,,,,0.0,0.0,5.0,0.0,1.0,1.0,1753.3847175422486,0.0,1225.0,0.0,0.0,25994.0,0,4,1,130.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1671.2760066209376,0.08103156395737879,0.06429468364318448,25994.0,8,4,8,8_1,8_0,8_1_0 -6082,2,53.0,3,0.0,8,112,2,56,64,4.0,910.6257492457183,0.0,1050.5163470188752,208.54923849724264,0.0,20774.0,50,50,1,412,201106082,,,,,3.0,1.0,6.0,2.0,4.0,2.3,1036.9420023699765,0.0,770.0,0.0,0.0,36184.0,1,1,2,116.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2169.691334761836,0.1044426366978837,0.05996272758019666,15732.17391304348,4,2,4_0,4_1_0,4_0_0,4_0_0 -6083,1,40.0,3,110.0,7,221,4,56,63,2.0,0.0,0.0,1910.0297218525002,304.13430614181215,0.0,46112.0,41,43,1,4121,201106083,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.3,3677.274283796864,0.0,1400.0,0.0,0.0,23261.0,1,1,3,98.0,1,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2214.164027994312,0.048017089434297194,0.09518782631848641,10113.478260869566,2,1,2_1,2_1_1,2_1_1,2_0_0 -6084,2,30.0,3,0.0,3,221,2,0,47,5.0,0.0,0.0,0.0,5213.730962431066,0.0,34254.0,0,20,1,4123,201106084,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2290.320709852287,0.0,0.0,0.0,0.0,17574.0,0,1,3,67.0,1,3.0,1,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5213.730962431066,0.15220794542041996,0.2966729806777663,17574.0,5,3,5,5_1,5_1,5_0_1 -6085,2,27.0,5,0.0,5,111,2,0,48,6.0,0.0,0.0,982.3009998098572,0.0,0.0,17781.0,0,31,2,4124,201106085,,,,445.0,1.0,0.0,1.0,0.0,1.0,1.0,4431.007447331546,0.0,720.0,0.0,0.0,21300.0,0,1,3,27.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,982.3009998098572,0.0552444181885078,0.046117417831448695,21300.0,6,3,6,6_0,6_3,6_0_0 -6086,2,44.0,2,0.0,8,300,2,54,64,9.0,1903.7472109666587,971.5484236944079,654.8673332065715,156.41192887293198,0.0,42726.0,42,70,1,4125,201106086,,,60.0,,2.0,0.0,5.0,1.0,3.0,1.8,1691.045668205132,0.0,480.0,0.0,0.0,62655.0,1,1,1,120.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3686.5748967405702,0.08628411030146914,0.05883927694103536,34808.333333333336,9,5,9,9_1,9_0,9_0_0 -6087,2,73.0,4,0.0,8,400,5,86,78,3.0,0.0,55.5170527825376,818.5841665082144,159.8877495145527,0.0,28035.0,70,50,1,4126,201106087,,,200.0,,0.0,1.0,5.0,0.0,2.0,1.5,1529.4556383744457,0.0,600.0,0.0,0.0,21740.0,6,5,1,150.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1033.9889688053047,0.03688207486375262,0.04756159010143996,14493.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -6088,2,47.0,3,0.0,7,112,2,52,34,6.0,0.0,0.0,1609.8821941328215,0.0,0.0,33742.0,42,20,1,4127,201106088,,,650.0,,2.0,0.0,4.0,2.0,4.0,2.5,1957.2147113410995,0.0,1180.0,0.0,0.0,52962.0,1,1,2,75.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1609.8821941328215,0.047711522557430545,0.030396929763468552,21184.8,6,3,6,6_1,6_2,6_0_0 -6089,2,39.0,1,0.0,99,111,2,0,37,9.0,0.0,0.0,121.4233180320518,0.0,954.1127661248851,20973.0,0,31,2,4128,201106089,,,,522.0,1.0,0.0,2.0,0.0,1.0,1.0,3009.710357192487,0.0,89.0,549.0,0.0,31188.0,0,1,3,72.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1075.5360841569368,0.051281937927665895,0.03448557407198079,31188.0,9,5,9,9_0,9_3,9_0_0 -6090,2,64.0,2,0.0,5,300,2,75,71,7.0,3172.912018277764,0.0,764.011888741,0.0,0.0,35873.0,60,50,1,4129,201106090,,,130.0,,0.0,2.0,6.0,0.0,2.0,1.5,1321.823502708531,0.0,560.0,0.0,0.0,36287.0,5,5,1,150.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3936.923907018764,0.10974615747271664,0.10849405867166655,24191.333333333332,7,4,7,7_1,7_0,7_0_0 -6091,1,31.0,2,110.0,4,300,2,0,37,5.0,0.0,0.0,170.53836802254466,0.0,1129.641708526731,29028.0,0,20,1,413,201106091,,,310.0,,1.0,0.0,5.0,1.0,2.0,1.3,1591.0526451364885,0.0,125.0,650.0,0.0,23582.0,0,1,2,120.0,0,0.0,2,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1300.1800765492758,0.044790549695097,0.05513442780719514,18140.0,5,3,5,5_1,5_0,5_0_1 -6092,2,30.0,2,0.0,8,111,1,46,47,7.0,0.0,0.0,675.3319373692768,0.0,0.0,56074.0,10,12,2,4130,201106092,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1711.3784144772744,0.0,495.0,0.0,0.0,42049.0,1,1,2,84.0,9,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,675.3319373692768,0.012043584145402091,0.01606059448189676,23360.555555555555,7,4,7,7_0,7_3,7_0_0 -6093,2,61.0,4,0.0,3,111,2,85,78,2.0,3172.912018277764,0.0,573.00891655575,312.82385774586396,0.0,34122.0,71,70,1,4132,201106093,,,648.0,,0.0,2.0,5.0,2.0,4.0,2.3,2014.6963464948506,0.0,420.0,0.0,0.0,24576.0,6,5,2,90.0,6,4.0,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4058.7447925793786,0.1189480333092837,0.1651507483959708,10685.217391304348,2,1,2_0,2_1_0,2_2_0,2_0_1 -6094,2,33.0,3,0.0,2,120,2,43,46,4.0,2538.3296146222115,0.0,2193.8055662420143,0.0,0.0,41388.0,50,50,1,4133,201106094,,,880.0,,2.0,0.0,5.0,3.0,5.0,2.4,1413.69646813723,0.0,1608.0,0.0,0.0,37649.0,1,1,1,80.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4732.135180864226,0.11433592299372344,0.1256908598067472,15687.083333333334,4,2,4_0,4_1_0,4_0_0,4_0_1 -6095,0,28.0,3,0.0,5,111,4,54,42,7.0,0.0,0.0,842.1412443810874,0.0,387.09050192843813,35635.0,10,10,8,4135,201106095,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2825.279167216104,360.0,480.0,0.0,0.0,34977.0,1,1,5,50.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1229.2317463095255,0.034495067947510186,0.03514400166708195,23318.0,7,4,7,7_0,7_3,7_0_0 -6096,1,47.0,3,86.0,2,111,1,0,55,4.0,0.0,0.0,1050.5163470188752,0.0,417.0984769944853,47705.0,0,71,2,4138,201106096,,,,317.0,2.0,0.0,3.0,2.0,4.0,2.3,3387.394331822049,0.0,770.0,240.0,0.0,35282.0,0,1,3,55.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1467.6148240133605,0.03076438159550069,0.041596701547909995,15340.000000000002,4,2,4_1,4_0_1,4_4_1,4_0_1 -6097,2,52.0,2,0.0,1,300,2,55,65,6.0,1854.5670746833532,138.792631956344,933.1859498193644,86.89551604051776,0.0,36747.0,71,71,1,4139,201106097,,,352.0,,3.0,2.0,6.0,1.0,3.0,2.0,2263.4148498363984,0.0,684.0,0.0,0.0,39247.0,1,1,2,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3013.441172499579,0.08200509354503983,0.07678143991896397,19623.5,6,3,6,6_1,6_0,6_1_0 -6098,1,44.0,3,50.0,99,112,4,85,53,2.0,0.0,0.0,3410.767360450893,97.32297796537989,0.0,40439.0,50,71,1,414,201106098,,,,,2.0,0.0,5.0,8.0,10.0,4.3,918.0774883011879,0.0,2500.0,0.0,0.0,51800.0,6,1,2,126.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3508.090338416273,0.08675017528663599,0.06772375170687786,12046.511627906977,2,1,2_1,2_1_1,2_0_1,2_0_0 -6099,2,32.0,3,0.0,7,112,5,45,65,5.0,0.0,416.377895869032,1800.8851663180715,0.0,0.0,40542.0,31,43,1,4140,201106099,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.1,1860.2518576546054,0.0,1320.0,0.0,0.0,38498.0,1,1,2,100.0,5,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2217.2630621871035,0.05469052000856158,0.057594240277082015,18332.38095238095,5,3,5,5_1,5_0,5_0_0 -6100,2,52.0,3,0.0,1,112,2,85,62,8.0,0.0,0.0,586.6519859975537,3441.0624352045033,0.0,74233.0,60,50,1,4143,201106100,,,260.0,,1.0,3.0,7.0,0.0,2.0,1.5,2128.5521552675673,0.0,430.0,0.0,0.0,37680.0,5,1,1,150.0,9,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4027.714421202057,0.054257734716393745,0.10689263325907795,25120.0,8,4,8,8_1,8_0,8_1_0 -6101,2,31.0,2,0.0,9,120,6,54,47,7.0,0.0,0.0,1317.920508078225,208.54923849724264,0.0,31564.0,10,31,1,4144,201106101,,,205.0,,2.0,0.0,5.0,2.0,4.0,2.1,2707.682711242541,0.0,966.0,0.0,0.0,49194.0,1,1,2,128.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1526.4697465754678,0.048361099562015834,0.031029591953804687,23425.714285714286,7,4,7,7_1,7_0,7_0_0 -6102,2,58.0,4,0.0,1,111,2,0,56,8.0,2538.3296146222115,0.0,491.1504999049286,52.13730962431066,0.0,11078.0,0,50,1,4146,201106102,,,330.0,,1.0,0.0,3.0,0.0,1.0,1.0,1255.131531879264,0.0,360.0,0.0,0.0,24860.0,0,1,1,68.0,5,4.0,1,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3081.6174241514505,0.2781745282678688,0.12395886661912511,24860.0,7,4,7,7_1,7_2,7_1_0 -6103,2,45.0,3,0.0,2,111,2,21,67,7.0,951.8736054833294,0.0,955.0148609262501,0.0,0.0,42196.0,30,30,1,4148,201106103,,,150.0,,2.0,0.0,4.0,1.0,3.0,1.8,2749.629246157154,0.0,700.0,0.0,0.0,42796.0,1,1,1,130.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1906.8884664095795,0.04519121401103374,0.04455763310612159,23775.555555555555,7,4,7,7_1,7_3,7_0_1 -6104,2,55.0,1,0.0,1,111,1,77,37,10.0,0.0,0.0,470.68589574222324,0.0,417.0984769944853,46401.0,50,70,2,4149,201106104,,,,935.0,1.0,2.0,4.0,0.0,2.0,1.5,1710.704885151619,0.0,345.0,240.0,0.0,64327.0,5,1,3,106.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,887.7843727367085,0.019132871548818098,0.013801115748234933,42884.666666666664,10,5,10,10_0,10_3,10_1_0 -6105,2,49.0,2,0.0,7,112,2,67,42,8.0,1427.810408224994,249.82673752141918,900.4425831590357,0.0,0.0,25171.0,50,50,1,415,201106105,,,390.0,,2.0,1.0,4.0,1.0,3.0,2.0,1724.973162592887,0.0,660.0,0.0,0.0,55864.0,1,1,1,100.0,9,3.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2578.079728905449,0.102422618446047,0.04614921468039254,27932.0,8,4,8,8_1,8_1,8_0_0 -6106,2,49.0,2,0.0,6,111,2,55,63,4.0,0.0,0.0,2060.1034857123395,173.79103208103552,0.0,53399.0,50,50,1,4150,201106106,,,200.0,,3.0,0.0,5.0,2.0,4.0,2.5,1511.05251560459,0.0,1510.0,0.0,0.0,41810.0,1,1,2,104.0,8,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2233.894517793375,0.041834014078791275,0.05342967036099917,16724.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -6107,1,42.0,5,394.0,8,111,2,0,56,2.0,0.0,0.0,859.5133748336251,0.0,1180.041107830231,14075.0,0,71,1,4152,201106107,,,,79.0,2.0,1.0,4.0,2.0,3.0,1.8,1167.7621299645568,0.0,630.0,679.0,0.0,21089.0,0,1,3,77.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2039.554482663856,0.14490617994059368,0.09671176834671422,11716.111111111111,2,1,2_1,2_1_1,2_2_1,2_0_0 -6108,2,50.0,1,0.0,7,112,4,54,38,8.0,0.0,0.0,2237.463388455786,0.0,0.0,61007.0,31,31,1,4153,201106108,,,340.0,,2.0,0.0,4.0,2.0,4.0,2.5,2424.807532300347,0.0,1640.0,0.0,0.0,63463.0,4,4,2,103.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2237.463388455786,0.03667551901348675,0.03525618688772649,25385.2,8,4,8,8_1,8_0,8_0_0 -6109,2,31.0,4,0.0,9,111,4,65,46,4.0,0.0,0.0,2046.460416270536,93.84715732375918,0.0,50055.0,50,31,1,4154,201106109,,,500.0,,2.0,0.0,4.0,1.0,3.0,1.8,1821.702832388518,0.0,1500.0,0.0,0.0,28021.0,1,1,3,100.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2140.3075735942953,0.04275911644379773,0.076382269497673,15567.222222222223,4,2,4_0,4_1_0,4_2_0,4_0_0 -6110,0,41.0,2,0.0,1,111,2,22,56,10.0,0.0,0.0,0.0,0.0,0.0,109476.0,10,71,2,4156,201106110,,,,,2.0,0.0,3.0,3.0,5.0,2.8,4052.630440640472,0.0,0.0,0.0,0.0,128812.0,1,1,5,70.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,46004.28571428572,10,5,10,10_0,10_4,10_1_0 -6111,2,48.0,3,0.0,1,112,6,75,63,7.0,0.0,0.0,968.6579303680536,0.0,2250.59386544941,18708.0,70,50,1,4159,201106111,,,,,1.0,0.0,5.0,0.0,2.0,1.5,2281.696756868556,0.0,710.0,1295.0,0.0,35999.0,7,1,1,97.0,9,3.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3219.2517958174635,0.17207888581448919,0.08942614505451439,23999.333333333332,7,4,7,7_1,7_1,7_1_0 -6112,2,32.0,3,0.0,7,300,2,0,63,7.0,136.43521678594388,0.0,1151.4750608882216,46.92357866187959,0.0,22951.0,0,31,1,416,201106112,,,184.0,383.0,1.0,0.0,3.0,0.0,1.0,1.0,2381.9173251849493,0.0,844.0,0.0,0.0,22041.0,0,1,3,73.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1334.833856336045,0.05816016105337654,0.060561401766528064,22041.0,7,4,7,7_1,7_0,7_0_0 -6113,2,78.0,2,0.0,4,111,2,77,78,6.0,2538.3296146222115,0.0,800.8481762338697,0.0,0.0,29456.0,71,71,1,4162,201106113,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2951.63310228907,0.0,587.0,0.0,0.0,31240.0,5,5,1,112.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3339.177790856081,0.11336154911923144,0.10688789343329325,20826.666666666668,6,3,6,6_1,6_3,6_0_1 -6114,2,51.0,2,0.0,6,111,4,54,38,10.0,0.0,0.0,2483.0386384082503,0.0,0.0,55999.0,31,31,1,4163,201106114,,,328.0,,2.0,1.0,6.0,0.0,2.0,1.5,2348.226358410967,0.0,1820.0,0.0,0.0,71253.0,1,1,1,160.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2483.0386384082503,0.04434076748528099,0.03484819780792739,47502.0,10,5,10,10_1,10_4,10_0_0 -6115,2,74.0,3,0.0,99,111,1,0,78,3.0,0.0,0.0,241.48232911992324,0.0,1828.2816574924937,10191.0,0,71,2,4164,201106115,,,,313.0,0.0,0.0,4.0,0.0,1.0,1.0,3333.3671181780533,0.0,177.0,1052.0,0.0,13990.0,0,5,3,61.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2069.763986612417,0.20309724135142937,0.14794596044406125,13990.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -6116,2,52.0,1,0.0,7,111,2,0,37,9.0,0.0,0.0,1484.3659552682286,0.0,0.0,45317.0,0,20,1,4166,201106116,,,,940.0,1.0,1.0,5.0,0.0,1.0,1.0,1773.7235995438614,0.0,1088.0,0.0,0.0,31386.0,0,1,3,120.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1484.3659552682286,0.032755168154737266,0.0472938875698792,31386.0,9,5,9,9_1,9_3,9_0_0 -6117,2,71.0,2,0.0,6,111,4,75,75,8.0,168.1643369687215,130.46507403896337,2523.9678467336607,225.92834170534618,0.0,22451.0,60,41,1,4167,201106117,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1297.4179629627292,0.0,1850.0,0.0,0.0,42671.0,5,5,1,150.0,7,5.0,3,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3048.525599446692,0.13578573780440478,0.07144256285174222,28447.333333333332,8,4,8,8_1,8_2,8_0_0 -6118,2,31.0,3,0.0,7,111,4,52,64,5.0,0.0,0.0,818.5841665082144,0.0,0.0,34132.0,43,43,1,4168,201106118,,,,,2.0,0.0,4.0,1.0,3.0,1.8,7151.854145043647,0.0,600.0,0.0,0.0,33818.0,1,1,2,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,818.5841665082144,0.023982894834999834,0.024205575921350003,18787.777777777777,5,3,5,5_1,5_4,5_0_0 -6119,2,39.0,3,0.0,8,120,6,0,37,5.0,1110.5192063972174,0.0,879.9779789963304,57.351040586741725,0.0,27857.0,0,50,1,417,201106119,,,,,1.0,0.0,5.0,1.0,2.0,1.5,2469.377627998013,0.0,645.0,0.0,0.0,27997.0,0,1,2,91.0,0,2.0,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2047.8482259802895,0.07351287740892018,0.07314527363575703,18664.666666666668,5,3,5,5_1,5_1,5_0_0 -6120,2,56.0,4,0.0,1,300,5,0,78,7.0,218.93092926116574,624.566843803548,607.116590160259,389.29191186151957,0.0,29381.0,0,50,1,4170,201106120,,,320.0,,0.0,1.0,3.0,0.0,1.0,1.0,911.2685063821812,0.0,445.0,0.0,0.0,21865.0,0,5,1,85.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1839.9062750864923,0.06262231629578613,0.08414846901836233,21865.0,7,4,7,7_1,7_0,7_1_0 -6121,2,65.0,2,0.0,3,111,2,68,78,5.0,0.0,0.0,535.9371662378144,0.0,1557.4675896809215,15526.0,71,71,1,4171,201106121,,,450.0,,1.0,3.0,5.0,0.0,2.0,1.5,2752.490416624495,52.0,373.0,864.0,0.0,27029.0,1,5,1,94.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2093.4047559187356,0.134832201205638,0.07745032209548025,18019.333333333332,5,3,5,5_1,5_3,5_0_1 -6122,2,65.0,1,0.0,4,120,2,75,74,7.0,0.0,1665.511583476128,668.510402648375,0.0,2377.4613188685657,60069.0,41,20,1,4173,201106122,,,500.0,,0.0,7.0,7.0,1.0,3.0,2.0,1585.3705508607063,0.0,490.0,1368.0,0.0,48105.0,5,5,1,130.0,0,3.0,4,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4711.483304993069,0.07843452204952753,0.09794165481744246,24052.5,7,4,7,7_1,7_1,7_0_1 -6123,2,30.0,1,0.0,7,111,2,43,43,10.0,0.0,0.0,338.6728281357435,312.82385774586396,446.2293286119494,48724.0,33,33,1,4174,201106123,,,220.0,,2.0,0.0,5.0,2.0,4.0,2.1,5824.845468934216,415.0,90.0,0.0,0.0,148520.0,1,1,1,96.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1097.7260144935567,0.022529472426187438,0.007391098939493379,70723.80952380953,10,5,10,10_1,10_3,10_0_0 -6124,2,61.0,3,0.0,4,111,1,78,78,7.0,0.0,0.0,395.6490138123036,0.0,208.54923849724264,29801.0,50,71,2,4176,201106124,,,,520.0,0.0,0.0,3.0,0.0,2.0,1.5,3997.2847883716813,0.0,290.0,120.0,0.0,32450.0,5,5,3,43.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,604.1982523095462,0.020274428787944908,0.018619360625871995,21633.333333333332,6,3,6,6_0,6_3,6_0_1 -6125,2,71.0,3,0.0,5,111,4,77,78,8.0,0.0,0.0,2182.8911106885716,0.0,0.0,15246.0,50,50,1,4177,201106125,,,290.0,,0.0,1.0,4.0,0.0,2.0,1.5,1847.6935209878063,0.0,1600.0,0.0,0.0,42035.0,5,5,1,90.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2182.8911106885716,0.14317795557448326,0.05193032260470017,28023.333333333332,8,4,8,8_1,8_4,8_0_0 -6126,1,22.0,3,134.0,9,111,4,0,84,1.0,0.0,0.0,122.78762497623215,0.0,0.0,6965.0,0,41,2,418,201106126,,,,66.0,0.0,0.0,1.0,0.0,1.0,1.0,4283.600026832776,0.0,90.0,0.0,0.0,6408.0,0,3,3,17.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,122.78762497623215,0.017629235459616963,0.01916161438455558,6408.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -6127,2,57.0,4,0.0,99,111,2,21,21,1.0,0.0,0.0,736.7257498573929,0.0,1668.3939079779411,27958.0,71,50,2,4181,201106127,,,,650.0,2.0,2.0,3.0,0.0,2.0,1.5,3290.1163570097265,0.0,540.0,960.0,0.0,11665.0,1,1,3,60.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2405.119657835334,0.08602616989181393,0.20618256818134023,7776.666666666667,1,1,1_0,1_0_0,1_3_0,1_0_0 -6128,2,31.0,3,0.0,8,111,2,56,56,7.0,0.0,0.0,941.3717914844465,0.0,0.0,53044.0,20,20,2,4182,201106128,,,,363.0,2.0,0.0,2.0,0.0,2.0,1.5,2825.252054251885,0.0,690.0,0.0,0.0,33159.0,1,1,3,49.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,941.3717914844465,0.017746998557507852,0.028389631517369236,22106.0,7,4,7,7_0,7_3,7_0_0 -6129,2,21.0,3,0.0,99,111,2,0,84,2.0,0.0,0.0,39.564901381230364,0.0,0.0,19103.0,0,41,8,4184,201106129,,,,390.0,0.0,0.0,3.0,0.0,1.0,1.0,3724.673848966429,0.0,29.0,0.0,0.0,9610.0,0,3,3,57.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,39.564901381230364,0.0020711354960598004,0.004117055294612941,9610.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -6130,2,62.0,2,0.0,2,111,2,37,75,10.0,0.0,0.0,459.7714401887804,3856.423001878178,0.0,45307.0,41,50,1,4185,201106130,,,198.0,,1.0,1.0,5.0,0.0,2.0,1.5,2109.069298159001,0.0,337.0,0.0,0.0,59822.0,4,5,1,120.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4316.194442066959,0.0952655095695358,0.07215062087638258,39881.333333333336,10,5,10,10_1,10_2,10_0_1 -6131,2,63.0,3,0.0,4,300,2,77,78,5.0,0.0,0.0,818.5841665082144,0.0,1407.7073598563877,25698.0,50,70,1,4186,201106131,,,356.0,,0.0,1.0,5.0,0.0,2.0,1.5,1123.9792510611699,0.0,600.0,810.0,0.0,26300.0,5,5,1,140.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2226.291526364602,0.08663287128821705,0.08464986792260844,17533.333333333332,5,3,5,5_1,5_0,5_0_1 -6132,2,38.0,3,0.0,8,120,2,67,62,7.0,1570.5914490474934,0.0,900.4425831590357,0.0,0.0,41106.0,71,43,1,4188,201106132,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2258.2279203389426,0.0,660.0,0.0,0.0,48843.0,1,1,2,158.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2471.034032206529,0.0601137068118165,0.05059136482620906,23258.571428571428,7,4,7,7_1,7_0,7_0_0 -6133,2,57.0,3,0.0,6,112,4,52,47,9.0,0.0,0.0,2176.0695759676696,97.32297796537989,0.0,32301.0,71,71,1,419,201106133,,,410.0,,2.0,2.0,4.0,0.0,2.0,1.5,8621.087221388101,0.0,1595.0,0.0,0.0,50172.0,1,1,1,90.0,4,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2273.3925539330494,0.07038149140686199,0.04531197787477177,33448.0,9,5,9,9_1,9_0,9_0_0 -6134,2,67.0,1,0.0,7,112,4,43,74,10.0,0.0,0.0,2592.183193942679,0.0,0.0,56334.0,41,10,1,4190,201106134,,,600.0,,1.0,2.0,5.0,0.0,2.0,1.5,5747.950890275059,0.0,1900.0,0.0,0.0,70948.0,1,5,1,120.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2592.183193942679,0.046014541732216405,0.03653638148986129,47298.666666666664,10,5,10,10_1,10_1,10_0_0 -6135,2,45.0,2,0.0,6,400,2,0,37,10.0,4759.368027416646,0.0,409.2920832541072,69.5164128324142,0.0,38260.0,0,12,1,4191,201106135,,,120.0,,1.0,0.0,6.0,0.0,1.0,1.0,2012.630151770522,0.0,300.0,0.0,0.0,48020.0,0,1,2,180.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5238.176523503167,0.13690999800060552,0.10908322622872069,48020.0,10,5,10,10_1,10_0,10_0_0 -6136,2,68.0,3,0.0,8,111,2,0,78,5.0,0.0,0.0,1289.2700622504376,0.0,0.0,20793.0,0,60,1,4193,201106136,,,185.0,,0.0,1.0,3.0,0.0,1.0,1.0,2144.3985051850123,0.0,945.0,0.0,0.0,18830.0,0,5,1,80.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1289.2700622504376,0.06200500467707582,0.0684689358603525,18830.0,5,3,5,5_1,5_2,5_0_0 -6137,2,68.0,3,0.0,1,120,6,71,71,2.0,4442.07682558887,0.0,818.5841665082144,469.23578661879594,0.0,21431.0,71,71,1,4196,201106137,,,365.0,,0.0,4.0,3.0,0.0,2.0,1.5,3127.742794397186,0.0,600.0,0.0,0.0,16350.0,5,5,1,80.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5729.89677871588,0.267364881653487,0.3504524023679437,10900.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -6138,2,42.0,3,0.0,9,112,5,43,43,2.0,0.0,888.2728445206016,982.3009998098572,250.25908619669116,0.0,55732.0,44,30,1,42,201106138,,,288.0,709.0,2.0,0.0,4.0,4.0,6.0,2.9,1123.5691905665537,0.0,720.0,0.0,0.0,28110.0,1,4,3,98.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2120.83293052715,0.03805413282364082,0.07544763182238172,9693.103448275862,1,1,1_0,1_1_0,1_1_0,1_0_0 -6139,2,50.0,4,0.0,1,112,5,85,85,2.0,0.0,0.0,1899.1152662990573,0.0,1525.885261671492,53039.0,71,50,1,4200,201106139,,,795.0,,0.0,2.0,8.0,4.0,6.0,3.1,1542.8072824495023,0.0,1392.0,878.0,0.0,30069.0,6,7,1,131.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3425.0005279705492,0.06457513391976752,0.11390470344775513,9699.677419354839,1,1,1_0,1_1_0,1_0_0,1_1_0 -6140,2,30.0,2,0.0,4,111,1,45,43,8.0,0.0,0.0,351.99119159853217,0.0,0.0,35310.0,10,33,2,4201,201106140,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3878.439213889111,0.0,258.0,0.0,0.0,41536.0,1,1,2,79.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,351.99119159853217,0.009968597892906604,0.008474364204510115,27690.666666666668,8,4,8,8_0,8_3,8_0_1 -6141,2,44.0,3,0.0,9,112,4,46,63,7.0,0.0,0.0,2319.3218051066074,0.0,0.0,69478.0,31,50,1,4204,201106141,,,116.0,,2.0,0.0,7.0,2.0,4.0,2.1,2491.5334043079824,0.0,1700.0,0.0,0.0,48600.0,1,1,2,103.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2319.3218051066074,0.03338210376099783,0.04772267088696723,23142.85714285714,7,4,7,7_1,7_0,7_0_0 -6142,1,49.0,2,527.0,1,111,4,0,55,3.0,0.0,0.0,57.30089165557501,0.0,83.41969539889705,8289.0,0,71,2,4205,201106142,,,,456.0,1.0,0.0,3.0,0.0,1.0,1.0,3075.674173649823,0.0,42.0,48.0,0.0,12345.0,0,4,3,70.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,140.72058705447205,0.016976786953127283,0.011398994496109522,12345.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -6143,1,41.0,3,80.0,9,211,2,85,62,3.0,0.0,0.0,627.5811943229643,0.0,1185.2548387926622,33764.0,71,71,1,421,201106143,,,,,1.0,0.0,5.0,3.0,5.0,2.8,3954.545273527282,0.0,460.0,682.0,0.0,36930.0,6,1,3,112.0,1,2.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1812.8360331156264,0.053691388257185946,0.049088438481332965,13189.285714285716,3,2,3_1,3_1_1,3_1_1,3_0_0 -6144,2,75.0,2,0.0,5,112,4,77,74,7.0,0.0,0.0,2265.8501530840804,0.0,735.4719536640324,39672.0,50,50,1,4210,201106144,,,240.0,,0.0,2.0,5.0,0.0,2.0,1.5,1087.5737645755319,684.0,1400.0,0.0,0.0,35612.0,5,5,1,120.0,9,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3001.3221067481127,0.07565341063591734,0.08427839230450726,23741.333333333332,7,4,7,7_1,7_0,7_0_0 -6145,2,67.0,2,0.0,2,111,1,85,74,8.0,0.0,0.0,968.6305216460971,0.0,1127.9387125636988,47122.0,71,12,2,4211,201106145,,,,,0.0,2.0,2.0,1.0,3.0,1.8,2897.761561009715,1049.0,310.0,0.0,0.0,45165.0,6,5,1,33.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2096.569234209796,0.0444923652266414,0.04642021995372071,25091.666666666664,8,4,8,8_0,8_4,8_0_1 -6146,2,74.0,3,0.0,7,111,4,0,72,5.0,0.0,0.0,1064.1594164606786,0.0,0.0,19057.0,0,50,2,4212,201106146,,,,,0.0,2.0,1.0,0.0,1.0,1.0,3006.122737581125,0.0,780.0,0.0,0.0,17500.0,0,5,1,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1064.1594164606786,0.05584086773682524,0.06080910951203878,17500.0,5,3,5,5_0,5_4,5_0_0 -6147,1,22.0,2,165.0,1,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,10809.0,0,41,2,4214,201106147,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4279.0612315187,0.0,0.0,0.0,0.0,2002.0,0,3,3,24.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0.0,0.0,0.0,2002.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -6148,2,70.0,4,0.0,1,112,2,75,74,5.0,0.0,0.0,695.7965415319821,3058.722164626225,0.0,19756.0,42,41,1,4216,201106148,,,290.0,,0.0,2.0,4.0,0.0,2.0,1.5,1609.3555862146413,0.0,510.0,0.0,0.0,26840.0,5,5,1,67.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3754.5187061582074,0.19004447793876328,0.13988519769590937,17893.333333333332,5,3,5,5_1,5_0,5_1_0 -6149,2,51.0,2,0.0,2,111,1,0,56,4.0,0.0,0.0,433.8496082493536,0.0,312.82385774586396,23021.0,0,50,2,4218,201106149,,,,264.0,1.0,4.0,4.0,0.0,1.0,1.0,1711.8462083168888,0.0,318.0,180.0,0.0,16020.0,0,1,3,60.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,746.6734659952176,0.03243444967617469,0.04660883058646802,16020.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -6150,1,75.0,4,58.0,1,111,4,0,78,3.0,0.0,0.0,1105.0886247860894,0.0,0.0,9968.0,0,71,2,4220,201106150,,,430.0,272.0,0.0,3.0,1.0,0.0,1.0,1.0,3736.7041122063047,0.0,810.0,0.0,0.0,12900.0,0,5,3,30.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1105.0886247860894,0.11086362608207158,0.08566578486713872,12900.0,3,2,3_1,3_0_1,3_3_1,3_1_0 -6151,2,41.0,2,0.0,8,111,2,37,37,10.0,0.0,0.0,1227.8762497623215,0.0,2224.5252106372545,81775.0,31,12,1,4223,201106151,,,360.0,,2.0,0.0,6.0,2.0,4.0,2.1,2205.0657184928673,0.0,900.0,1280.0,0.0,132804.0,1,1,2,149.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3452.401460399576,0.042218299729741074,0.025996215930239874,63240.0,10,5,10,10_1,10_4,10_0_0 -6152,0,37.0,2,0.0,6,120,1,53,46,8.0,0.0,0.0,995.9440692516608,0.0,0.0,81079.0,12,12,2,4224,201106152,,,,,2.0,0.0,4.0,3.0,5.0,2.4,2809.011990179285,0.0,730.0,0.0,0.0,59459.0,1,1,5,100.0,0,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,995.9440692516608,0.012283625467157474,0.016750097869988746,24774.583333333336,7,4,7,7_0,7_1,7_0_0 -6153,1,40.0,4,293.0,3,111,3,85,46,7.0,0.0,693.9631597817199,2592.183193942679,90.37133668213848,0.0,59392.0,71,41,1,4225,201106153,,,374.0,,1.0,0.0,4.0,1.0,3.0,2.0,2728.169050985038,0.0,1900.0,0.0,0.0,44283.0,7,1,3,118.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,3376.5176904065374,0.05685138891444197,0.0762486211504762,22141.5,7,4,7,7_1,7_3,7_0_1 -6154,2,32.0,2,0.0,1,211,2,0,54,4.0,0.0,0.0,409.2920832541072,0.0,0.0,15291.0,0,20,2,4226,201106154,,,,331.0,1.0,0.0,2.0,0.0,1.0,1.0,2368.014917668394,0.0,300.0,0.0,0.0,16210.0,0,1,3,44.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,409.2920832541072,0.026766861765359178,0.02524935738766855,16210.0,4,2,4_0,4_0_0,4_1_0,4_1_0 -6155,2,67.0,2,0.0,8,112,2,75,72,10.0,3620.2926128549293,0.0,1195.132883101993,83.41969539889705,0.0,66568.0,60,70,1,4227,201106155,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2016.4719300877027,0.0,876.0,0.0,0.0,70920.0,5,5,1,170.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4898.845191355819,0.07359159342861163,0.0690756513163539,47280.0,10,5,10,10_1,10_0,10_0_0 -6156,2,27.0,4,0.0,2,111,2,52,63,7.0,0.0,0.0,728.2874323453394,0.0,1505.351951943926,59090.0,33,50,1,4228,201106156,,,200.0,,2.0,0.0,4.0,1.0,3.0,1.8,2665.6582406615244,1400.0,0.0,0.0,0.0,41782.0,1,1,3,100.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2233.6393842892653,0.03780063266693629,0.05345936968764696,23212.222222222223,7,4,7,7_1,7_2,7_0_1 -6157,2,46.0,3,0.0,5,300,6,56,63,6.0,0.0,0.0,2043.7318023821751,364.9611673701746,0.0,42089.0,71,50,1,4230,201106157,,,400.0,,2.0,2.0,4.0,2.0,4.0,2.3,1886.6475193038766,0.0,1498.0,0.0,0.0,48064.0,1,1,1,90.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2408.6929697523497,0.05722856256390861,0.050114284490519925,20897.391304347828,6,3,6,6_1,6_0,6_0_0 -6158,2,59.0,3,0.0,6,400,4,77,34,9.0,0.0,0.0,2114.6757634795536,48.661488982689946,0.0,35499.0,50,20,1,4231,201106158,,,200.0,,1.0,2.0,8.0,0.0,2.0,1.5,2514.1823670074814,0.0,1550.0,0.0,0.0,45273.0,6,1,1,194.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2163.3372524622437,0.06094079417623718,0.047784269928262846,30182.0,9,5,9,9_1,9_0,9_0_0 -6159,2,49.0,4,0.0,2,111,2,0,46,8.0,0.0,0.0,650.2457005542597,0.0,1484.8489088422657,23418.0,0,71,1,4232,201106159,,,600.0,,1.0,2.0,3.0,2.0,3.0,1.6,3306.815140972501,673.0,220.0,438.0,0.0,41130.0,0,1,3,40.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2135.0946093965254,0.09117322612505446,0.05191088279592816,25706.25,8,4,8,8_1,8_4,8_0_1 -6160,2,44.0,1,0.0,7,111,2,54,21,8.0,0.0,0.0,1272.09370101186,0.0,3532.458803715385,112712.0,60,42,1,4233,201106160,,,,,2.0,0.0,7.0,3.0,7.0,3.8,1622.890038083123,85.0,900.0,1980.0,0.0,108502.0,1,1,1,170.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4804.552504727245,0.04262680552849071,0.04428077366986088,28553.157894736843,8,4,8,8_1,8_4,8_0_0 -6161,1,51.0,3,246.0,8,400,2,0,85,3.0,0.0,0.0,316.5192110498429,0.0,0.0,13683.0,0,50,2,4235,201106161,,,,101.0,0.0,5.0,3.0,0.0,1.0,1.0,3771.242466709741,0.0,232.0,0.0,0.0,12642.0,0,7,3,85.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,316.5192110498429,0.02313229635678162,0.025037115254694108,12642.0,2,1,2_1,2_0_1,2_0_1,2_0_0 -6162,2,59.0,1,0.0,6,112,2,48,21,10.0,0.0,0.0,1704.019373281266,1141.8070807724034,0.0,34003.0,70,50,1,4236,201106162,,,464.0,,2.0,2.0,5.0,0.0,2.0,1.5,1849.8025238418888,0.0,1249.0,0.0,0.0,81657.0,1,1,1,123.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2845.8264540536693,0.08369339334922417,0.03485097975744479,54438.0,10,5,10,10_1,10_0,10_0_0 -6163,2,83.0,3,0.0,1,111,2,77,75,8.0,0.0,0.0,386.0988652030411,0.0,1779.6201685098038,26544.0,70,50,1,4237,201106163,,,88.0,,0.0,1.0,4.0,0.0,2.0,1.5,1470.584452277921,0.0,283.0,1024.0,0.0,37230.0,4,4,1,80.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2165.719033712845,0.08158977673722291,0.058171341222477704,24820.0,7,4,7,7_1,7_2,7_1_0 -6164,2,54.0,1,0.0,2,111,1,34,34,10.0,0.0,0.0,1837.8517399967807,0.0,1489.223181030241,136284.0,10,10,2,4238,201106164,,,,,2.0,2.0,5.0,1.0,3.0,2.0,4153.615277869957,1385.0,819.0,0.0,0.0,150463.0,1,1,2,143.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3327.0749210270214,0.024412806499860742,0.022112246339811258,75231.5,10,5,10,10_0,10_4,10_0_1 -6165,2,64.0,3,0.0,7,111,2,0,77,6.0,0.0,0.0,334.2552013241875,52.13730962431066,0.0,15977.0,0,50,2,424,201106165,,,188.0,555.0,0.0,1.0,2.0,0.0,1.0,1.0,2474.7879609942856,0.0,245.0,0.0,0.0,19384.0,0,5,3,46.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,386.39251094849817,0.02418429686101885,0.01993357980543222,19384.0,6,3,6,6_0,6_3,6_0_0 -6166,2,57.0,3,0.0,6,112,4,46,62,6.0,0.0,222.0682111301504,2046.460416270536,260.6865481215533,0.0,39212.0,60,50,1,4240,201106166,,,400.0,,2.0,4.0,6.0,0.0,2.0,1.5,1173.2023640132832,0.0,1500.0,0.0,0.0,30126.0,1,1,2,110.0,8,2.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2529.2151755222394,0.06450105007452411,0.08395456335133239,20084.0,6,3,6,6_1,6_1,6_0_0 -6167,2,37.0,2,0.0,9,112,4,62,37,9.0,0.0,0.0,1637.1683330164287,100.7987986070006,0.0,62206.0,43,50,1,4241,201106167,,,152.0,,2.0,0.0,4.0,1.0,3.0,1.8,2079.4113712714657,0.0,1200.0,0.0,0.0,56089.0,1,1,2,110.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1737.9671316234294,0.02793889868539095,0.030985881930921024,31160.555555555555,9,5,9,9_1,9_0,9_0_0 -6168,2,44.0,3,0.0,5,300,2,67,48,7.0,0.0,693.9631597817199,1301.5488247480607,0.0,0.0,14811.0,60,44,1,4242,201106168,,,380.0,,4.0,0.0,5.0,2.0,5.0,2.8,832.0084886066765,0.0,954.0,0.0,0.0,61405.0,4,1,2,100.0,0,1.0,5,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1995.5119845297806,0.13473175238199855,0.03249754880758539,21930.357142857145,7,4,7,7_1,7_1,7_0_0 -6169,2,53.0,3,0.0,5,111,1,54,34,8.0,0.0,0.0,532.0797082303393,0.0,0.0,34813.0,71,41,2,4243,201106169,,,,,2.0,0.0,4.0,2.0,4.0,2.5,3781.4206500807586,0.0,390.0,0.0,0.0,70778.0,1,1,2,89.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,532.0797082303393,0.015283937271431342,0.007517586089326334,28311.2,8,4,8,8_0,8_3,8_0_0 -6170,2,84.0,3,0.0,5,111,4,0,75,8.0,0.0,0.0,1076.438178958302,104.27461924862132,0.0,30516.0,0,70,2,4245,201106170,,,269.0,,0.0,0.0,2.0,0.0,1.0,1.0,2877.8553652299784,0.0,789.0,0.0,0.0,27676.0,0,5,1,55.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1180.7127982069233,0.03869159779154946,0.042661974208950834,27676.0,8,4,8,8_0,8_3,8_0_0 -6171,2,53.0,3,0.0,6,112,2,11,11,5.0,0.0,277.585263912688,750.3688192991965,194.64595593075978,0.0,26417.0,41,50,1,4246,201106171,,,,,2.0,2.0,7.0,0.0,2.0,1.5,2121.646496196022,0.0,550.0,0.0,0.0,26596.0,1,1,1,120.0,6,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1222.6000391426444,0.046280805509431214,0.04596932016628983,17730.666666666668,5,3,5,5_1,5_0,5_0_0 -6172,0,30.0,3,0.0,9,111,6,0,21,2.0,0.0,0.0,1309.734666413143,0.0,0.0,61362.0,0,50,1,4247,201106172,,,220.0,,1.0,2.0,3.0,0.0,1.0,1.0,2323.7010854608325,0.0,960.0,0.0,0.0,12251.0,0,1,5,90.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1309.734666413143,0.02134439337722276,0.10690838841018227,12251.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -6173,2,65.0,2,0.0,5,112,2,75,75,7.0,0.0,0.0,627.5811943229643,6421.578635394262,0.0,34741.0,50,71,1,4248,201106173,,,,,0.0,3.0,6.0,0.0,2.0,1.5,2428.1536389226226,0.0,460.0,0.0,0.0,34178.0,5,5,1,140.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,7049.159829717227,0.20290607149239304,0.20624845894192834,22785.333333333332,7,4,7,7_1,7_0,7_0_0 -6174,2,74.0,3,0.0,3,111,2,77,72,5.0,0.0,0.0,1799.5208593738912,0.0,243.30744491344973,16533.0,70,50,1,4251,201106174,,,224.0,,0.0,3.0,4.0,0.0,2.0,1.5,1099.4199581684325,0.0,1319.0,140.0,0.0,25162.0,5,5,1,100.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2042.8283042873409,0.1235606547079986,0.08118704015131313,16774.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_1 -6175,2,59.0,3,0.0,7,112,5,78,33,10.0,0.0,638.4461069991823,1699.926452448725,121.65372245672486,0.0,29165.0,71,10,1,4253,201106175,,,,,1.0,6.0,4.0,0.0,2.0,1.5,2345.146191349596,0.0,1246.0,0.0,0.0,71639.0,5,1,2,120.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2460.0262819046325,0.084348578155482,0.03433920464976664,47759.333333333336,10,5,10,10_1,10_0,10_0_0 -6176,2,46.0,4,0.0,6,112,2,53,62,7.0,0.0,0.0,1337.02080529675,4190.101783473767,0.0,56077.0,42,50,1,4254,201106176,,,1113.0,,2.0,1.0,4.0,1.0,3.0,2.0,1359.0582323388896,0.0,980.0,0.0,0.0,48448.0,1,1,2,110.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5527.122588770517,0.09856309340318699,0.11408360693466225,24224.0,7,4,7,7_1,7_0,7_0_0 -6177,2,65.0,2,0.0,7,112,4,0,75,6.0,0.0,0.0,2023.2671982194697,41.709847699448524,0.0,26803.0,0,33,1,4255,201106177,,,210.0,633.0,0.0,3.0,3.0,0.0,1.0,1.0,1302.778984895655,0.0,1483.0,0.0,0.0,20868.0,0,5,3,80.0,9,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2064.977045918918,0.07704275812106548,0.09895423835149118,20868.0,6,3,6,6_1,6_1,6_0_0 -6178,2,45.0,3,0.0,8,120,5,63,43,6.0,0.0,541.2912646297416,1255.1623886459286,187.69431464751835,0.0,37685.0,50,33,1,4256,201106178,,,537.0,,2.0,0.0,7.0,3.0,5.0,2.6,1705.4190651123831,0.0,920.0,0.0,0.0,50726.0,1,1,2,145.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1984.1479679231884,0.052650868194857064,0.03911500942166125,19510.0,6,3,6,6_1,6_0,6_0_0 -6179,0,74.0,2,0.0,5,112,2,0,44,1.0,0.0,0.0,0.0,0.0,0.0,8386.0,0,20,1,4257,201106179,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1812.1877784860437,0.0,0.0,0.0,0.0,8300.0,0,1,5,108.0,7,1.0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,8300.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -6180,2,47.0,3,0.0,7,300,2,56,67,2.0,2343.195525498129,0.0,1053.2449609072357,375.3886292950367,0.0,25926.0,71,50,1,4258,201106180,,,68.0,,2.0,2.0,7.0,1.0,3.0,2.0,1590.0374623372907,0.0,772.0,0.0,0.0,19635.0,1,1,2,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3771.8291157004014,0.14548442165009648,0.19209723023684244,9817.5,1,1,1_0,1_1_0,1_0_0,1_0_0 -6181,2,78.0,3,0.0,1,400,1,0,71,2.0,237.96840137083234,707.8424229773543,1170.5753581067465,93.84715732375918,0.0,18374.0,0,70,1,4259,201106181,999999.0,510.0,,,0.0,3.0,5.0,0.0,1.0,1.0,2582.2783914313163,0.0,858.0,0.0,0.0,10957.0,0,5,5,87.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2210.2333397786924,0.12029135407525267,0.20171884090341266,10957.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -6182,2,31.0,3,0.0,2,111,2,43,47,9.0,0.0,0.0,1603.0606594119197,0.0,0.0,77915.0,20,31,1,426,201106182,,,360.0,,2.0,0.0,5.0,0.0,2.0,1.5,3055.5536320215147,0.0,1175.0,0.0,0.0,44730.0,1,1,2,120.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1603.0606594119197,0.02057448064444484,0.035838601820074215,29820.0,9,5,9,9_1,9_2,9_0_1 -6183,2,28.0,3,0.0,5,112,4,85,63,5.0,0.0,0.0,245.5752499524643,0.0,0.0,33289.0,71,71,1,4260,201106183,,,460.0,,1.0,0.0,5.0,2.0,4.0,2.1,1174.1361449796652,0.0,180.0,0.0,0.0,35403.0,6,1,2,110.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,245.5752499524643,0.007377069000344387,0.006936566108873946,16858.571428571428,4,2,4_0,4_1_0,4_0_0,4_0_0 -6184,2,59.0,3,0.0,6,112,2,63,75,6.0,0.0,308.11964294308365,824.0413942849358,0.0,1807.4267336427695,16885.0,50,70,1,4261,201106184,,,320.0,,1.0,2.0,8.0,0.0,2.0,1.5,1406.3936510149813,0.0,604.0,1040.0,0.0,31708.0,4,5,1,180.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2939.587770870789,0.17409462664322115,0.0927080790611451,21138.666666666668,6,3,6,6_1,6_0,6_0_0 -6185,2,36.0,3,0.0,9,112,2,54,53,7.0,0.0,0.0,663.0531748716536,0.0,2808.463078429534,56428.0,31,31,1,4262,201106185,,,357.0,,2.0,0.0,5.0,2.0,4.0,2.1,2405.280601466138,0.0,486.0,1616.0,0.0,48777.0,1,1,2,127.0,8,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3471.5162533011876,0.06152116419687367,0.07117117193146745,23227.142857142855,7,4,7,7_1,7_0,7_0_0 -6186,2,51.0,2,0.0,2,111,1,55,37,10.0,0.0,0.0,338.1334507317647,0.0,698.9134062596798,69658.0,41,20,2,4263,201106186,,,,,3.0,1.0,5.0,2.0,4.0,2.5,2196.867371811395,650.0,0.0,0.0,0.0,106806.0,1,1,2,81.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1037.0468569914447,0.014887692109900437,0.009709631078698244,42722.4,10,5,10,10_0,10_4,10_0_1 -6187,1,29.0,3,167.0,8,111,2,0,62,7.0,0.0,0.0,736.7257498573929,0.0,848.1002365554533,27931.0,0,50,2,4264,201106187,,,600.0,234.0,2.0,0.0,5.0,3.0,5.0,3.0,2848.2512638228554,0.0,540.0,488.0,0.0,71524.0,0,1,3,100.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1584.8259864128463,0.05674075351447661,0.022157960774185536,23841.333333333332,7,4,7,7_0,7_2,7_0_0 -6188,2,53.0,3,0.0,7,112,4,46,38,10.0,0.0,0.0,3698.6361256729483,0.0,0.0,104592.0,60,12,1,4266,201106188,,,500.0,,2.0,0.0,6.0,2.0,4.0,2.3,1784.1963968836337,0.0,2711.0,0.0,0.0,121238.0,1,1,1,120.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3698.6361256729483,0.035362514586899076,0.030507234742184367,52712.17391304348,10,5,10,10_1,10_0,10_0_0 -6189,1,42.0,3,160.0,99,112,4,85,67,2.0,0.0,0.0,147.34514997147858,271.11401004641544,0.0,41026.0,71,50,1,4269,201106189,,,580.0,,1.0,0.0,5.0,3.0,5.0,3.0,1910.0811976370685,0.0,108.0,0.0,0.0,34840.0,6,1,3,90.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,418.459160017894,0.010199852776724371,0.012010882893739782,11613.333333333334,2,1,2_1,2_1_1,2_0_1,2_0_0 -6190,2,25.0,4,0.0,4,111,1,0,48,9.0,0.0,0.0,973.7531875120665,0.0,2935.7916249341556,47775.0,0,31,2,427,201106190,1250.0,1250.0,,440.0,3.0,1.0,4.0,1.0,3.0,2.0,2843.9682177843365,613.0,480.0,1310.0,0.0,61257.0,0,1,3,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3909.544812446222,0.08183243982095702,0.06382200911644746,30628.5,9,5,9,9_0,9_4,9_0_1 -6191,2,59.0,3,0.0,5,111,1,75,75,8.0,0.0,0.0,442.03544991443573,0.0,125.12954309834558,44172.0,50,33,2,4271,201106191,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2695.3530805163514,0.0,324.0,72.0,0.0,40348.0,5,5,2,72.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,567.1649930127813,0.012839921058878505,0.014056830400832292,26898.666666666668,8,4,8,8_0,8_4,8_0_0 -6192,2,64.0,1,0.0,5,112,2,0,74,10.0,2284.4966531599903,0.0,3915.6774415714417,104.27461924862132,4732.181386075155,120286.0,0,20,1,4272,201106192,,,,,0.0,0.0,5.0,1.0,2.0,1.5,2197.654510634641,4401.0,1192.0,0.0,0.0,123546.0,0,5,1,100.0,6,0.0,2,7,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,11036.630100055208,0.09175323894763487,0.08933215239712503,82364.0,10,5,10,10_1,10_0,10_0_0 -6193,2,51.0,1,0.0,1,300,2,85,22,1.0,0.0,0.0,1876.5339256681705,62.56477154917279,1848.3571467082918,55154.0,10,41,1,4273,201106193,,,,,1.0,4.0,4.0,3.0,5.0,2.8,1456.2996701959078,1719.0,720.0,0.0,0.0,22485.0,4,1,1,100.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3787.4558439256352,0.06867055596920686,0.16844366661888527,8030.357142857143,1,1,1_0,1_1_0,1_0_0,1_1_0 -6194,2,62.0,2,0.0,1,111,2,0,78,8.0,0.0,0.0,1089.748035910138,0.0,1929.5049158794636,12136.0,0,60,1,4275,201106194,,,100.0,,0.0,0.0,5.0,0.0,1.0,1.0,4333.05758179249,259.0,700.0,950.0,0.0,26611.0,0,5,1,90.0,5,4.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3019.252951789602,0.24878485100441677,0.11345883100182638,26611.0,8,4,8,8_1,8_2,8_1_0 -6195,1,38.0,3,107.0,4,111,1,52,21,2.0,0.0,0.0,654.8673332065715,0.0,0.0,41147.0,41,31,2,4276,201106195,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3651.076703977985,0.0,480.0,0.0,0.0,24268.0,1,1,2,84.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,654.8673332065715,0.015915311765294468,0.026984808521780597,11556.190476190475,2,1,2_1,2_0_1,2_3_1,2_0_1 -6196,2,60.0,2,0.0,7,300,4,47,72,8.0,0.0,624.566843803548,1166.4824372742055,0.0,0.0,70647.0,31,60,1,4277,201106196,,,,,2.0,2.0,5.0,1.0,3.0,2.0,2884.1916632715343,0.0,855.0,0.0,0.0,53310.0,1,5,1,112.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1791.0492810777534,0.025352092531568976,0.033596872651993126,26655.0,8,4,8,8_1,8_0,8_0_0 -6197,2,73.0,3,0.0,4,111,2,77,78,6.0,0.0,0.0,736.7257498573929,0.0,1390.3282566482842,17400.0,70,71,1,4278,201106197,,,150.0,,0.0,1.0,2.0,0.0,2.0,1.5,1841.323282263989,0.0,540.0,800.0,0.0,30000.0,5,5,3,60.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2127.054006505677,0.12224448313251017,0.07090180021685591,20000.0,6,3,6,6_1,6_3,6_0_1 -6198,2,30.0,2,0.0,7,221,2,0,42,8.0,0.0,0.0,1023.230208135268,0.0,0.0,46676.0,0,20,2,428,201106198,,,350.0,,1.0,0.0,4.0,1.0,2.0,1.3,3335.27223259656,0.0,750.0,0.0,0.0,33150.0,0,1,3,80.0,1,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1023.230208135268,0.02192197720745711,0.03086667294525695,25500.0,8,4,8,8_0,8_1,8_0_0 -6199,2,64.0,3,0.0,5,112,2,78,78,6.0,1427.810408224994,0.0,982.3009998098572,156.41192887293198,0.0,29362.0,70,70,1,4281,201106199,,,340.0,,1.0,1.0,6.0,1.0,3.0,2.0,2022.966428515857,0.0,720.0,0.0,0.0,42899.0,5,5,1,101.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2566.5233369077832,0.08740969065144688,0.0598271133804467,21449.5,6,3,6,6_1,6_0,6_0_0 -6200,2,76.0,3,0.0,1,111,4,78,77,4.0,0.0,0.0,1705.3836802254466,139.0328256648284,0.0,18164.0,70,70,1,4283,201106200,,,215.0,,0.0,2.0,3.0,0.0,2.0,1.5,1169.4276972706512,0.0,1250.0,0.0,0.0,23010.0,5,5,1,57.0,5,4.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1844.416505890275,0.10154241939497219,0.080157171051294,15340.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -6201,1,54.0,4,189.0,6,111,2,78,68,2.0,0.0,0.0,382.0059443705,0.0,868.9551604051776,13585.0,50,50,2,4288,201106201,,,,301.0,1.0,3.0,3.0,0.0,2.0,1.5,3071.2340263546084,0.0,280.0,500.0,0.0,16988.0,4,1,3,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1250.9611047756775,0.0920839974071165,0.07363792705295959,11325.333333333334,2,1,2_1,2_0_1,2_4_1,2_0_0 -6202,2,62.0,3,0.0,4,111,2,52,75,8.0,0.0,0.0,518.4366387885358,0.0,1459.8446694806985,27361.0,71,50,1,4290,201106202,,,278.0,,1.0,2.0,6.0,0.0,2.0,1.5,1981.5087353676306,0.0,380.0,840.0,0.0,40433.0,1,5,2,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1978.2813082692342,0.07230296072034041,0.048927393670250396,26955.333333333332,8,4,8,8_1,8_2,8_0_1 -6203,2,57.0,3,0.0,6,111,2,77,34,8.0,1745.1016100527704,166.55115834761278,1346.797910220126,130.34327406077665,668.8063672208015,45887.0,41,10,1,4291,201106203,,,,,2.0,3.0,7.0,1.0,3.0,2.0,1328.911808073789,622.0,750.0,0.0,0.0,54860.0,6,1,1,140.0,8,6.0,4,7,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4057.6003199020874,0.08842592280824825,0.07396282026799285,27430.0,8,4,8,8_1,8_2,8_0_0 -6204,2,31.0,3,0.0,5,111,1,0,52,5.0,0.0,0.0,491.1504999049286,0.0,83.41969539889705,19844.0,0,20,2,4292,201106204,,,,435.0,1.0,0.0,2.0,0.0,1.0,1.0,2984.9600859264297,0.0,360.0,48.0,0.0,18583.0,0,1,3,47.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,574.5701953038257,0.02895435372424036,0.030919130135275558,18583.0,5,3,5,5_0,5_4,5_0_0 -6205,1,45.0,3,340.0,1,111,2,0,52,4.0,0.0,0.0,163.71683330164288,0.0,834.1969539889706,9324.0,0,10,8,4293,201106205,,,,40.0,1.0,1.0,3.0,1.0,2.0,1.5,2797.446403592731,0.0,120.0,480.0,0.0,23206.0,0,1,3,60.0,6,5.0,2,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,997.9137872906134,0.107026360713279,0.043002404002870524,15470.666666666666,4,2,4_1,4_0_1,4_2_1,4_1_0 -6206,2,65.0,5,0.0,5,111,1,85,78,3.0,0.0,0.0,941.3717914844465,0.0,0.0,25529.0,50,71,2,4294,201106206,,,,497.0,0.0,2.0,4.0,1.0,3.0,2.0,2831.0573993371418,0.0,690.0,0.0,0.0,27472.0,6,5,3,90.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,941.3717914844465,0.03687460501721362,0.03426659112858352,13736.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -6207,2,83.0,3,0.0,1,111,2,0,86,8.0,0.0,0.0,654.8673332065715,0.0,1042.7461924862132,25810.0,0,41,1,4295,201106207,,,,,0.0,4.0,3.0,0.0,1.0,1.0,3152.5314196677286,0.0,480.0,600.0,0.0,27016.0,0,6,1,100.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1697.6135256927846,0.06577348026705868,0.06283733808457154,27016.0,8,4,8,8_1,8_3,8_1_0 -6208,2,77.0,3,0.0,4,111,2,77,74,7.0,0.0,0.0,698.5251554203429,0.0,2572.1072747993258,26006.0,70,50,1,4296,201106208,,,212.0,,0.0,2.0,5.0,0.0,2.0,1.5,1879.5726712996805,0.0,512.0,1480.0,0.0,36492.0,5,5,1,150.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3270.6324302196685,0.12576453242404323,0.08962601200865035,24328.0,7,4,7,7_1,7_3,7_0_1 -6209,2,57.0,2,0.0,6,112,4,33,47,10.0,0.0,0.0,2060.1034857123395,0.0,0.0,34723.0,60,50,1,4297,201106209,,,328.0,,2.0,2.0,5.0,0.0,2.0,1.5,2028.4295540376238,0.0,1510.0,0.0,0.0,59534.0,1,1,2,110.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2060.1034857123395,0.05932965140432392,0.03460381438694426,39689.333333333336,10,5,10,10_1,10_0,10_0_0 -6210,2,72.0,3,0.0,3,111,1,0,71,4.0,0.0,0.0,343.80534993345003,0.0,144.24655662725948,16733.0,0,50,2,4298,201106210,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2541.0534386307577,0.0,252.0,83.0,0.0,14901.0,0,5,5,74.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,488.05190656070954,0.029167029615771802,0.03275296332868328,14901.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -6211,2,61.0,1,0.0,4,112,4,77,74,10.0,0.0,0.0,1583.9603621933948,114.70208117348345,0.0,44371.0,50,50,1,4299,201106211,,,360.0,,1.0,1.0,7.0,1.0,3.0,2.0,1514.4654077908951,0.0,1161.0,0.0,0.0,86776.0,6,5,1,288.0,7,4.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1698.6624433668783,0.03828316791072724,0.01957525633086197,43388.0,10,5,10,10_1,10_2,10_0_1 -6212,2,86.0,2,0.0,99,111,1,0,72,3.0,0.0,0.0,412.0206971424679,0.0,0.0,10469.0,0,71,2,43,201106212,,,,465.0,0.0,3.0,1.0,0.0,1.0,1.0,4750.347438192846,0.0,302.0,0.0,0.0,13450.0,0,5,3,30.0,4,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,412.0206971424679,0.03935626107006093,0.030633509081224378,13450.0,3,2,3_0,3_0_0,3_1_0,3_0_0 -6213,2,68.0,2,0.0,4,112,2,0,74,10.0,0.0,0.0,642.5885707089483,0.0,2627.720405065257,25563.0,0,50,1,430,201106213,,,230.0,,0.0,1.0,3.0,0.0,1.0,1.0,5180.133004577849,0.0,471.0,1512.0,0.0,40729.0,0,5,1,70.0,9,2.0,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3270.3089757742055,0.1279313451384503,0.0802943596890227,40729.0,10,5,10,10_1,10_1,10_0_1 -6214,1,25.0,2,200.0,1,111,2,84,84,1.0,0.0,0.0,0.0,0.0,0.0,14500.0,20,20,3,4300,201106214,,,,,0.0,0.0,2.0,0.0,2.0,1.5,2572.1967064862397,0.0,0.0,0.0,0.0,6950.0,3,3,3,50.0,8,7.0,3,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0.0,0.0,0.0,4633.333333333333,1,1,1_1,1_0_1,1_3_1,1_1_0 -6215,2,41.0,1,0.0,8,300,2,45,21,6.0,2855.620816449988,1.38792631956344,1967.1969486102644,0.0,2075.2351908941264,38767.0,31,50,1,4302,201106215,,,,,2.0,0.0,7.0,3.0,5.0,2.6,1702.0968043597677,1930.0,706.0,0.0,0.0,52069.0,1,1,2,200.0,0,0.0,4,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6899.440882273942,0.17797200924172474,0.1325057305166979,20026.53846153846,6,3,6,6_1,6_0,6_0_0 -6216,2,33.0,1,0.0,6,112,4,85,52,4.0,0.0,0.0,682.1534720901786,0.0,0.0,48315.0,30,42,2,4304,201106216,,,,,1.0,0.0,3.0,1.0,3.0,1.8,2445.6622106442587,0.0,500.0,0.0,0.0,28374.0,7,1,1,50.0,6,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,682.1534720901786,0.014118875547763192,0.024041498276245105,15763.333333333332,4,2,4_0,4_0_0,4_0_0,4_0_0 -6217,2,37.0,4,0.0,6,111,4,0,47,4.0,0.0,0.0,457.0428263004197,0.0,0.0,12854.0,0,12,2,4306,201106217,,,,450.0,1.0,2.0,1.0,0.0,1.0,1.0,3011.2058778994337,0.0,335.0,0.0,0.0,16660.0,0,1,3,16.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,457.0428263004197,0.03555646695973391,0.02743354299522327,16660.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -6218,1,29.0,3,373.0,2,112,6,85,63,3.0,3966.1400228472053,0.0,1080.531099790843,130.34327406077665,0.0,30326.0,71,50,1,4308,201106218,,,,187.0,1.0,0.0,6.0,3.0,5.0,2.4,1580.1883692850733,0.0,792.0,0.0,0.0,31624.0,7,1,3,180.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,5177.014396698825,0.17071207533795507,0.16370523642483004,13176.666666666668,3,2,3_1,3_1_1,3_0_1,3_0_1 -6219,2,59.0,3,0.0,2,111,2,0,77,5.0,0.0,0.0,272.86138883607146,0.0,677.7850251160386,17435.0,0,60,2,4309,201106219,,,,271.0,0.0,2.0,3.0,0.0,1.0,1.0,3024.5505998358844,0.0,200.0,390.0,0.0,17289.0,0,5,3,48.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,950.64641395211,0.05452517430181302,0.054985621722026146,17289.0,5,3,5,5_0,5_4,5_0_1 -6220,2,69.0,2,0.0,5,111,1,0,75,9.0,0.0,0.0,342.44104298926965,0.0,128.6053637399663,16960.0,0,31,2,431,201106220,,,,256.0,0.0,0.0,2.0,0.0,1.0,1.0,2383.7049190571915,0.0,251.0,74.0,0.0,33070.0,0,5,3,46.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,471.04640672923597,0.02777396266092193,0.014243919163266887,33070.0,9,5,9,9_0,9_3,9_0_0 -6221,2,49.0,2,0.0,1,120,2,37,48,10.0,2379.684013708323,0.0,1159.6609025533037,0.0,0.0,78746.0,20,42,1,4310,201106221,,,240.0,,2.0,0.0,4.0,1.0,3.0,2.0,2266.2141330076,0.0,850.0,0.0,0.0,76601.0,1,1,1,130.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3539.344916261627,0.04494634541769267,0.04620494401197931,38300.5,10,5,10,10_1,10_0,10_1_0 -6222,1,65.0,3,17.0,6,112,2,0,77,4.0,0.0,0.0,1442.0724399986377,59.088950907552075,0.0,17108.0,0,50,7,4311,201106222,,,229.0,416.0,0.0,6.0,3.0,0.0,1.0,1.0,2035.5533309229208,0.0,1057.0,0.0,0.0,15354.0,0,5,3,70.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1501.1613909061898,0.08774616500503798,0.0977700528140022,15354.0,4,2,4_1,4_1_1,4_1_1,4_0_0 -6223,2,35.0,1,0.0,1,111,2,0,46,2.0,0.0,166.55115834761278,1227.8762497623215,26.06865481215533,0.0,68332.0,0,20,1,4313,201106223,,,320.0,,1.0,0.0,4.0,2.0,3.0,1.8,2288.1606730062754,0.0,900.0,0.0,0.0,17402.0,0,1,1,85.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1420.4960629220895,0.020788152884769793,0.08162832219986724,9667.777777777777,1,1,1_0,1_1_0,1_2_0,1_1_0 -6224,2,77.0,3,0.0,4,111,1,0,77,5.0,0.0,0.0,327.43366660328576,0.0,86.89551604051776,16462.0,0,71,2,4314,201106224,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3542.43456999356,0.0,240.0,50.0,0.0,17028.0,0,5,1,75.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,414.3291826438035,0.02516882411880716,0.02433222825016464,17028.0,5,3,5,5_0,5_3,5_0_1 -6225,2,34.0,3,0.0,2,111,2,0,46,8.0,0.0,0.0,136.43069441803573,0.0,1129.641708526731,13876.0,0,42,2,4315,201106225,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3053.212958754257,0.0,100.0,650.0,0.0,28805.0,0,1,2,60.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1266.0724029447667,0.09124188548175027,0.04395321655770758,28805.0,8,4,8,8_0,8_2,8_0_1 -6226,2,61.0,3,0.0,6,111,2,0,75,5.0,0.0,0.0,586.6519859975537,0.0,0.0,14906.0,0,41,2,4316,201106226,,,,400.0,0.0,0.0,2.0,0.0,1.0,1.0,3108.374156433367,0.0,430.0,0.0,0.0,18172.0,0,5,3,50.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,586.6519859975537,0.03935676814689076,0.032283292207657584,18172.0,5,3,5,5_0,5_3,5_0_0 -6227,2,64.0,2,0.0,4,111,1,0,74,8.0,0.0,0.0,163.71683330164288,0.0,99.06088828619025,33495.0,0,31,2,4317,201106227,,,,608.0,0.0,2.0,5.0,0.0,1.0,1.0,2971.0240997814944,0.0,120.0,57.0,0.0,26951.0,0,5,3,98.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,262.7777215878331,0.00784528202979051,0.00975020301984465,26951.0,8,4,8,8_0,8_4,8_0_1 -6228,2,39.0,5,0.0,5,111,2,65,46,6.0,0.0,0.0,545.7227776721429,0.0,0.0,23325.0,71,43,2,4319,201106228,,,,370.0,2.0,0.0,1.0,0.0,2.0,1.5,3326.033529275137,0.0,400.0,0.0,0.0,31104.0,4,1,3,42.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,545.7227776721429,0.023396474926994336,0.017545099590796774,20736.0,6,3,6,6_0,6_3,6_0_0 -6229,2,58.0,3,0.0,3,111,1,0,37,1.0,0.0,0.0,354.7198054868929,0.0,0.0,20617.0,0,10,2,4320,201106229,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3532.383960616888,0.0,260.0,0.0,0.0,7336.0,0,4,1,82.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,354.7198054868929,0.01720520955943604,0.048353299548376895,7336.0,1,1,1_0,1_0_0,1_4_0,1_0_1 -6230,2,62.0,4,0.0,3,111,1,0,78,6.0,0.0,0.0,521.1652526768964,0.0,1717.055396960631,20388.0,0,50,2,4321,201106230,688.0,688.0,,283.0,0.0,2.0,3.0,0.0,1.0,1.0,2882.7760827009097,0.0,382.0,988.0,0.0,20387.0,0,5,3,56.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2238.2206496375275,0.10978127573266272,0.1097866605992803,20387.0,6,3,6,6_0,6_4,6_0_1 -6231,2,75.0,2,0.0,5,112,2,71,77,8.0,1189.8420068541616,0.0,1364.3069441803573,0.0,0.0,14704.0,71,71,1,4322,201106231,,,221.0,,0.0,6.0,5.0,0.0,2.0,1.5,3414.555186018369,0.0,1000.0,0.0,0.0,41375.0,5,5,1,100.0,8,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2554.148951034519,0.17370436282878937,0.06173169670174064,27583.333333333332,8,4,8,8_1,8_1,8_0_0 -6232,2,38.0,2,0.0,1,112,2,64,67,5.0,0.0,0.0,638.4956498764072,0.0,1852.6124019838387,19175.0,50,42,2,4323,201106232,,,,,2.0,0.0,3.0,1.0,3.0,1.8,4316.262350265711,0.0,468.0,1066.0,0.0,31732.0,1,1,3,60.0,7,0.0,4,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2491.1080518602457,0.1299143703708081,0.07850460266797699,17628.888888888887,5,3,5,5_0,5_0,5_1_0 -6233,2,25.0,4,0.0,1,111,1,0,68,1.0,0.0,0.0,0.0,0.0,0.0,3582.0,0,71,8,4324,201106233,,,,,1.0,0.0,1.0,1.0,2.0,1.3,3748.1382878372583,0.0,0.0,0.0,0.0,11290.0,0,1,3,15.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,8684.615384615385,1,1,1_0,1_0_0,1_4_0,1_1_0 -6234,2,61.0,2,0.0,6,111,2,75,31,10.0,0.0,0.0,1459.8084302729822,0.0,2721.567562389016,56642.0,20,10,1,4325,201106234,,,500.0,,1.0,2.0,7.0,0.0,2.0,1.5,2113.6453359876296,0.0,1070.0,1566.0,0.0,103415.0,5,1,1,220.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4181.375992661999,0.07382112200596729,0.040432973868993846,68943.33333333333,10,5,10,10_1,10_4,10_0_0 -6235,1,73.0,3,175.0,2,111,1,0,86,2.0,0.0,0.0,450.22129157951787,0.0,587.4136884339001,13885.0,0,71,2,4326,201106235,,,,130.0,1.0,5.0,4.0,1.0,2.0,1.5,3675.3867528458663,0.0,330.0,338.0,0.0,16170.0,0,5,3,130.0,9,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1037.634980013418,0.07473064314104559,0.06417037600577724,10780.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -6236,2,58.0,2,0.0,1,111,2,46,52,6.0,0.0,0.0,620.7596596020626,0.0,1803.9509130011488,32994.0,50,50,1,4327,201106236,,,107.0,,2.0,3.0,4.0,0.0,2.0,1.5,1942.0572519583136,0.0,455.0,1038.0,0.0,29590.0,1,1,1,65.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2424.7105726032114,0.07348943967397743,0.08194358136543466,19726.666666666668,6,3,6,6_1,6_3,6_1_0 -6237,2,48.0,4,0.0,1,400,5,0,56,4.0,0.0,1040.94473967258,1043.6948122979734,234.61789330939797,0.0,16311.0,0,71,1,4328,201106237,,,,,1.0,9.0,3.0,1.0,3.0,2.0,2924.921269331852,0.0,765.0,0.0,0.0,29477.0,0,1,3,86.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2319.2574452799513,0.14218977654833861,0.0786802403663857,14738.5,3,2,3_0,3_1_0,3_0_0,3_1_0 -6238,2,26.0,2,0.0,6,111,4,43,47,9.0,0.0,0.0,623.4882734904232,66.0405921907935,0.0,53551.0,33,31,1,4329,201106238,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3483.0780294481106,0.0,457.0,0.0,0.0,50297.0,1,1,2,32.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,689.5288656812168,0.01287611558479238,0.01370914499236966,33531.333333333336,9,5,9,9_1,9_3,9_0_0 -6239,2,51.0,1,0.0,6,111,2,56,85,7.0,0.0,0.0,900.4425831590357,229.4041623469669,0.0,36490.0,50,50,1,433,201106239,,,172.0,,1.0,4.0,5.0,0.0,2.0,1.5,1116.636602752652,0.0,660.0,0.0,0.0,32598.0,1,5,1,100.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1129.8467455060027,0.03096318842164984,0.03466000200950987,21732.0,6,3,6,6_1,6_3,6_0_0 -6240,1,42.0,5,145.0,1,112,2,0,65,6.0,0.0,0.0,933.1859498193644,0.0,0.0,9735.0,0,71,2,4330,201106240,,,,355.0,1.0,0.0,2.0,0.0,1.0,1.0,3039.1943909833694,0.0,684.0,0.0,0.0,20790.0,0,1,3,37.0,10,5.0,1,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,933.1859498193644,0.0958588546296214,0.0448862890726005,20790.0,6,3,6,6_0,6_2,6_1_0 -6241,0,30.0,2,0.0,1,400,2,0,21,4.0,0.0,138.792631956344,335.6195082683679,48.661488982689946,0.0,17615.0,0,43,1,4331,201106241,,,110.0,,1.0,0.0,11.0,0.0,1.0,1.0,3109.8372640395614,0.0,246.0,0.0,0.0,16342.0,0,1,5,220.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,523.0736292074018,0.02969478451361918,0.032007932273124574,16342.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -6242,1,45.0,3,240.0,1,300,5,0,85,4.0,0.0,222.0682111301504,491.1504999049286,0.0,86.89551604051776,14918.0,0,70,1,4332,201106242,,,180.0,,0.0,0.0,5.0,0.0,1.0,1.0,2658.24335671519,0.0,360.0,50.0,0.0,15050.0,0,7,3,118.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,800.1142270755968,0.05363414848341579,0.05316373601831208,15050.0,4,2,4_1,4_1_1,4_0_1,4_1_0 -6243,2,71.0,3,0.0,4,111,1,77,77,6.0,0.0,0.0,286.504458277875,0.0,1494.6028758969055,15230.0,70,50,2,4333,201106243,660.0,660.0,,308.0,0.0,1.0,3.0,0.0,2.0,1.5,2300.0972393972374,0.0,210.0,860.0,0.0,31581.0,5,5,3,62.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1781.1073341747806,0.11694729705678139,0.056398066374553704,21054.0,6,3,6,6_0,6_4,6_0_1 -6244,2,48.0,2,0.0,8,300,2,64,48,10.0,2221.038412794435,0.0,682.1534720901786,43.44775802025888,0.0,42563.0,60,42,1,4335,201106244,,,240.0,,2.0,3.0,6.0,0.0,2.0,1.5,1601.6572625117599,0.0,500.0,0.0,0.0,68253.0,1,1,2,150.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2946.6396429048723,0.06923007407618993,0.04317230953811367,45502.0,10,5,10,10_1,10_0,10_0_0 -6245,2,31.0,2,0.0,2,111,1,0,38,10.0,0.0,0.0,491.1504999049286,0.0,0.0,35756.0,0,31,2,4340,201106245,,,,,2.0,0.0,3.0,1.0,3.0,2.0,2508.195303130517,0.0,360.0,0.0,0.0,86811.0,0,1,1,59.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,491.1504999049286,0.013736170150602097,0.0056576989080292656,43405.5,10,5,10,10_0,10_4,10_0_1 -6246,2,81.0,2,0.0,8,111,2,77,75,8.0,0.0,0.0,395.6490138123036,0.0,941.9473938792125,25938.0,71,70,2,4341,201106246,,,250.0,574.0,0.0,3.0,3.0,0.0,2.0,1.5,3363.2288034401417,0.0,290.0,542.0,0.0,39676.0,5,5,4,85.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1337.596407691516,0.05156898788231614,0.03371298537381581,26450.666666666668,8,4,8,8_0,8_2,8_0_0 -6247,2,36.0,4,0.0,1,400,2,0,67,7.0,0.0,277.585263912688,873.1564442754286,484.8769795060891,0.0,27213.0,0,50,1,4342,201106247,,,,,3.0,2.0,4.0,1.0,3.0,2.0,3435.6881168662044,0.0,640.0,0.0,0.0,48997.0,0,1,1,85.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1635.6186876942058,0.060104313662374814,0.033382017015209216,24498.5,7,4,7,7_1,7_0,7_1_0 -6248,2,38.0,2,0.0,1,300,2,55,68,1.0,0.0,333.10231669522557,2046.460416270536,90.37133668213848,0.0,44693.0,20,20,1,4343,201106248,,,250.0,,2.0,0.0,6.0,1.0,3.0,1.8,2605.9962100531384,0.0,1500.0,0.0,0.0,12305.0,4,1,2,180.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2469.9340696479,0.05526445012972725,0.20072605198276308,6836.111111111111,1,1,1_0,1_1_0,1_0_0,1_1_0 -6249,1,25.0,2,219.0,7,111,2,0,37,7.0,0.0,0.0,63.98525298462626,0.0,132.25592149221634,17464.0,0,41,8,4344,201106249,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3048.1619846379203,123.0,0.0,0.0,0.0,21914.0,0,3,3,54.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,196.24117447684262,0.011236897301697355,0.008955059527098777,21914.0,7,4,7,7_0,7_3,7_0_0 -6250,1,24.0,3,105.0,7,111,2,0,55,2.0,0.0,0.0,409.2920832541072,0.0,521.3730962431066,10084.0,0,60,2,4345,201106250,,,,195.0,1.0,0.0,1.0,0.0,1.0,1.0,5488.765980823884,0.0,300.0,300.0,0.0,11688.0,0,1,3,30.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,930.6651794972138,0.0922912712710446,0.07962569982009016,11688.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -6251,2,78.0,4,0.0,1,112,6,0,75,7.0,0.0,0.0,679.388133316438,0.0,1404.2783208848336,26282.0,0,41,1,4346,201106251,,,,,0.0,0.0,2.0,0.0,1.0,1.0,4401.53070809704,1306.0,0.0,0.0,0.0,22929.0,0,5,1,75.0,5,0.0,1,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2083.666454201272,0.07928112222057955,0.0908747199703987,22929.0,7,4,7,7_1,7_0,7_1_0 -6252,2,56.0,3,0.0,4,112,6,75,42,10.0,1078.79008621444,0.0,755.8260470759179,135.55700502320772,0.0,34482.0,71,20,1,4348,201106252,,,362.0,,1.0,1.0,4.0,0.0,2.0,1.5,1503.9998697012606,0.0,554.0,0.0,0.0,60625.0,5,1,1,110.0,9,2.0,3,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1970.1731383135657,0.05713627800920961,0.03249770125053304,40416.666666666664,10,5,10,10_1,10_1,10_0_1 -6253,2,74.0,1,0.0,9,112,2,77,74,10.0,0.0,0.0,3513.4558603911682,0.0,1283.8501647293197,46808.0,41,31,1,4350,201106253,,,565.0,,0.0,2.0,8.0,0.0,2.0,1.5,1535.379087921852,1194.0,2120.0,0.0,0.0,76783.0,5,5,1,200.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4797.306025120488,0.10248901950778687,0.062478752134202724,51188.666666666664,10,5,10,10_1,10_0,10_0_0 -6254,2,54.0,3,0.0,1,221,2,33,43,9.0,0.0,0.0,750.3688192991965,0.0,4205.74297636106,48114.0,50,33,1,4351,201106254,,,540.0,,3.0,1.0,6.0,1.0,3.0,2.0,3247.624936002052,0.0,550.0,2420.0,0.0,70163.0,1,1,1,140.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4956.111795660257,0.10300768582242709,0.07063711351652946,35081.5,9,5,9,9_1,9_1,9_1_0 -6255,2,26.0,2,0.0,6,120,4,55,52,7.0,0.0,693.9631597817199,1227.8762497623215,0.0,0.0,18982.0,31,50,2,4355,201106255,,,,490.0,2.0,0.0,3.0,0.0,2.0,1.5,2150.15538371996,0.0,900.0,0.0,0.0,35732.0,1,1,3,60.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1921.8394095440415,0.10124535926372571,0.053784826193441215,23821.333333333332,7,4,7,7_0,7_1,7_0_0 -6256,1,38.0,3,254.0,99,111,2,0,85,2.0,0.0,0.0,1910.0297218525002,0.0,0.0,4898.0,0,71,1,4356,201106256,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2739.6949338633353,0.0,1400.0,0.0,0.0,11798.0,0,7,3,51.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1910.0297218525002,0.3899611518686199,0.16189436530365317,11798.0,2,1,2_1,2_1_1,2_2_1,2_0_0 -6257,2,84.0,2,0.0,2,111,1,86,74,7.0,0.0,0.0,910.5928640676419,0.0,2430.5720655979417,12447.0,70,70,1,4357,201106257,,,146.0,,0.0,2.0,5.0,0.0,2.0,1.5,2423.4474277558443,725.0,391.0,950.0,0.0,35155.0,6,5,1,100.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3341.1649296655837,0.268431343268706,0.09504095945571281,23436.666666666668,7,4,7,7_1,7_2,7_0_1 -6258,2,43.0,2,0.0,6,112,2,46,38,9.0,0.0,416.377895869032,1637.1683330164287,0.0,0.0,71929.0,20,12,1,436,201106258,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1846.8521872191893,0.0,1200.0,0.0,0.0,62804.0,1,1,2,120.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2053.5462288854606,0.028549628507075875,0.03269769805880932,34891.11111111111,9,5,9,9_1,9_0,9_0_0 -6259,1,33.0,4,295.0,99,111,2,0,85,3.0,0.0,0.0,654.8673332065715,0.0,0.0,19996.0,0,50,2,4360,201106259,,,,335.0,0.0,0.0,1.0,0.0,1.0,1.0,3260.883529552525,0.0,480.0,0.0,0.0,13185.0,0,7,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,654.8673332065715,0.032749916643657305,0.04966760206344873,13185.0,3,2,3_1,3_0_1,3_4_1,3_0_0 -6260,1,22.0,3,160.0,99,111,6,43,42,4.0,0.0,0.0,1500.737638598393,45.18566834106924,0.0,18075.0,42,20,1,4361,201106260,,,,220.0,2.0,0.0,2.0,0.0,2.0,1.5,2596.3173791170234,0.0,1100.0,0.0,0.0,24477.0,1,1,3,88.0,5,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1545.9233069394622,0.08552826041158851,0.06315820186050015,16318.0,4,2,4_1,4_1_1,4_2_1,4_0_0 -6261,1,23.0,4,160.0,99,112,2,0,43,4.0,25.383296146222115,19.430968473888157,682.1534720901786,604.7927916420036,0.0,7191.0,0,33,1,4362,201106261,,,80.0,,1.0,0.0,3.0,0.0,1.0,1.0,3691.2617138258443,0.0,500.0,0.0,0.0,16147.0,0,1,3,90.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1331.7605283522926,0.18519823784623732,0.08247727307563588,16147.0,4,2,4_1,4_1_1,4_0_1,4_0_0 -6262,2,70.0,4,0.0,1,111,2,78,78,4.0,0.0,0.0,351.99119159853217,0.0,3910.298221823299,21464.0,71,71,2,4363,201106262,,,,,1.0,1.0,3.0,1.0,3.0,2.0,7291.153481780635,0.0,258.0,2250.0,0.0,31393.0,5,5,1,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4262.289413421831,0.19857852280198618,0.13577196870072408,15696.5,4,2,4_0,4_0_0,4_4_0,4_1_0 -6263,2,73.0,3,0.0,2,112,5,77,78,5.0,0.0,1387.9263195634398,1487.0945691565894,0.0,0.0,13214.0,71,71,1,4364,201106263,,,,,0.0,2.0,7.0,0.0,2.0,1.5,2545.206942429491,0.0,1090.0,0.0,0.0,25304.0,5,5,1,110.0,5,0.0,3,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2875.0208887200292,0.21757385263508622,0.11361922576351681,16869.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1 -6264,2,33.0,3,0.0,2,211,1,0,67,8.0,0.0,0.0,638.4956498764072,0.0,0.0,21979.0,0,50,2,4365,201106264,,,,227.0,2.0,0.0,3.0,0.0,2.0,1.5,5718.532835630156,0.0,468.0,0.0,0.0,39347.0,0,1,3,60.0,2,3.0,5,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,638.4956498764072,0.02905025933283622,0.016227301951264574,26231.333333333332,8,4,8,8_0,8_1,8_0_1 -6265,2,54.0,3,0.0,9,112,2,0,34,10.0,0.0,0.0,1091.4455553442858,0.0,2780.6565132965684,72927.0,0,10,1,4368,201106265,,,350.0,,1.0,0.0,7.0,2.0,3.0,2.0,1117.3572422766197,0.0,800.0,1600.0,0.0,79016.0,0,1,2,170.0,6,0.0,2,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3872.102068640854,0.053095589680651256,0.049004025370062446,39508.0,10,5,10,10_1,10_0,10_0_0 -6266,2,44.0,2,0.0,6,300,2,54,37,9.0,0.0,0.0,818.5841665082144,0.0,0.0,57740.0,20,20,1,437,201106266,,,220.0,,2.0,0.0,5.0,2.0,4.0,2.1,1760.2171847062807,0.0,600.0,0.0,0.0,65286.0,1,1,2,210.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,818.5841665082144,0.01417707250620392,0.01253843345446519,31088.571428571428,9,5,9,9_1,9_0,9_0_0 -6267,1,22.0,2,216.0,7,111,4,0,47,1.0,0.0,0.0,545.7227776721429,0.0,0.0,11882.0,0,20,2,4370,201106267,,,,128.0,1.0,0.0,1.0,0.0,1.0,1.0,3136.6184398206356,0.0,400.0,0.0,0.0,5994.0,0,1,3,22.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,545.7227776721429,0.045928528671279494,0.0910448411198103,5994.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -6268,1,20.0,2,29.0,99,111,2,0,84,1.0,0.0,0.0,750.3688192991965,0.0,0.0,12940.0,0,41,2,4372,201106268,,,,412.0,0.0,0.0,2.0,0.0,1.0,1.0,3581.5465835703253,0.0,550.0,0.0,0.0,6366.0,0,3,3,50.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,750.3688192991965,0.05798831679282817,0.11787131939981095,6366.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -6269,2,58.0,2,0.0,3,400,5,0,43,6.0,0.0,0.0,1152.8393678324019,139.0328256648284,0.0,17837.0,0,20,1,4373,201106269,,,,,1.0,0.0,3.0,1.0,2.0,1.5,1194.3843686403306,0.0,845.0,0.0,0.0,28854.0,0,1,1,90.0,0,1.0,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1291.8721934972302,0.07242653997293436,0.04477272452683268,19236.0,5,3,5,5_1,5_1,5_0_1 -6270,2,55.0,2,0.0,1,300,2,45,37,10.0,0.0,184.5942005019375,491.1504999049286,2975.302469227328,0.0,46115.0,60,31,1,4374,201106270,,,140.0,,2.0,1.0,6.0,0.0,2.0,1.5,2033.495634275452,0.0,360.0,0.0,0.0,59273.0,1,1,1,103.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3651.047169634194,0.07917265899672978,0.06159713815116822,39515.333333333336,10,5,10,10_1,10_1,10_1_0 -6271,2,79.0,3,0.0,6,300,2,77,78,7.0,1921.1982270671863,0.0,907.9619998441827,187.69431464751835,556.9802222192526,28051.0,70,71,1,4375,201106271,,,472.0,,0.0,1.0,3.0,0.0,2.0,1.5,1982.9808978690937,518.0,468.0,0.0,0.0,35313.0,5,5,1,70.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3573.83476377814,0.1274048969298114,0.10120450722901311,23542.0,7,4,7,7_1,7_0,7_0_0 -6272,2,78.0,4,0.0,1,400,5,0,71,2.0,0.0,55.5170527825376,1544.3954608121644,583.9378677922793,0.0,21069.0,0,71,1,4377,201106272,,,360.0,,1.0,1.0,5.0,1.0,2.0,1.5,3156.5277839415903,0.0,1132.0,0.0,0.0,18110.0,0,5,1,150.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2183.850381386981,0.10365230344994927,0.1205880939473761,12073.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -6273,2,57.0,2,0.0,6,112,4,21,54,7.0,0.0,0.0,204.6460416270536,194.64595593075978,0.0,30116.0,50,50,1,4378,201106273,,,80.0,,3.0,0.0,7.0,1.0,3.0,2.0,1243.5369294431978,0.0,150.0,0.0,0.0,47016.0,1,1,1,200.0,6,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,399.2919975578134,0.013258467178835614,0.008492683289897341,23508.0,7,4,7,7_1,7_1,7_0_0 -6274,1,47.0,3,106.0,7,300,2,85,63,3.0,1001.0537417666346,362.2487694060578,995.9440692516608,156.41192887293198,0.0,45366.0,50,71,1,4379,201106274,,,363.0,,2.0,0.0,6.0,3.0,5.0,2.8,1252.1921725750226,0.0,730.0,0.0,0.0,38476.0,6,1,2,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2515.6585092972855,0.05545250869147127,0.06538253740766414,13741.428571428572,3,2,3_1,3_1_1,3_0_1,3_0_0 -6275,2,36.0,4,0.0,9,111,2,0,46,6.0,0.0,0.0,272.86138883607146,0.0,608.2686122836243,21895.0,0,31,2,4380,201106275,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4045.644154180406,0.0,200.0,350.0,0.0,21098.0,0,1,2,63.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,881.1300011196957,0.04024343462524301,0.04176367433499364,21098.0,6,3,6,6_0,6_3,6_0_0 -6276,1,63.0,3,9999.0,4,112,5,0,86,2.0,0.0,208.188947934516,409.2920832541072,0.0,0.0,14268.0,0,71,2,4381,201106276,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3640.78959418627,0.0,300.0,0.0,0.0,10294.0,0,7,3,90.0,8,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,617.4810311886232,0.04327733607994275,0.059984557138976415,10294.0,2,1,2_1,2_0_1,2_0_1,2_0_1 -6277,1,56.0,4,244.0,4,111,1,0,54,1.0,0.0,0.0,229.20356662230003,0.0,895.023815217333,13186.0,0,50,2,4384,201106277,515.0,515.0,,,1.0,0.0,2.0,0.0,1.0,1.0,1827.1673517389504,0.0,168.0,515.0,0.0,8418.0,0,4,3,45.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1124.227381839633,0.08525916743816418,0.13355041361839307,8418.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -6278,1,35.0,3,39.0,1,212,5,56,63,3.0,0.0,166.55115834761278,1242.8836261483054,90.37133668213848,0.0,33320.0,41,71,1,4385,201106278,,,104.0,,2.0,0.0,6.0,4.0,6.0,2.7,1571.3414184761814,0.0,911.0,0.0,0.0,36493.0,1,1,2,115.0,1,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1499.8061211780566,0.045012188510745996,0.041098460558958064,13515.925925925925,3,2,3_1,3_1_1,3_0_1,3_1_0 -6279,2,34.0,3,0.0,1,112,2,34,47,9.0,0.0,0.0,518.4366387885358,0.0,2572.1072747993258,50101.0,10,10,1,4386,201106279,,,648.0,,2.0,0.0,5.0,1.0,3.0,1.8,2020.7694064308032,0.0,380.0,1480.0,0.0,55323.0,1,1,2,80.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3090.5439135878614,0.06168627200231256,0.05586363562330064,30735.0,9,5,9,9_1,9_2,9_1_0 -6280,2,50.0,4,0.0,2,111,1,56,47,5.0,0.0,0.0,143.2522291389375,0.0,2158.4846184464614,57791.0,70,12,2,4390,201106280,,,,460.0,2.0,2.0,6.0,6.0,8.0,3.5,926.690221929893,0.0,105.0,1242.0,0.0,60044.0,4,1,3,97.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2301.7368475853987,0.03982863850055197,0.038334169069105965,17155.428571428572,5,3,5,5_0,5_4,5_0_1 -6281,2,47.0,3,0.0,7,112,2,52,62,5.0,1292.961647448189,0.0,900.4425831590357,0.0,0.0,29226.0,50,50,1,4391,201106281,,,159.0,,2.0,1.0,4.0,1.0,3.0,1.8,957.5713946529464,0.0,660.0,0.0,0.0,31062.0,1,1,2,120.0,8,2.0,4,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2193.4042306072247,0.07504975811288662,0.0706137476855072,17256.666666666668,5,3,5,5_1,5_1,5_0_0 -6282,1,36.0,5,450.0,4,111,1,0,55,2.0,0.0,0.0,736.7257498573929,0.0,243.30744491344973,17097.0,0,50,2,4392,201106282,,,,,1.0,0.0,5.0,5.0,6.0,2.9,2110.0636020389225,0.0,540.0,140.0,0.0,28420.0,0,1,3,90.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,980.0331947708426,0.05732193921570115,0.034483926628108466,9800.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -6283,1,47.0,3,300.0,1,112,2,67,67,4.0,0.0,416.377895869032,1364.3069441803573,0.0,0.0,24384.0,71,71,1,4393,201106283,,,600.0,,3.0,0.0,5.0,3.0,5.0,2.8,3036.2156125673514,0.0,1000.0,0.0,0.0,46710.0,1,1,2,100.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1780.6848400493893,0.07302677329598874,0.03812213316312116,16682.14285714286,4,2,4_1,4_1_1,4_0_1,4_1_0 -6284,2,36.0,2,0.0,2,111,1,0,46,10.0,0.0,0.0,504.79356934673217,0.0,0.0,25317.0,0,12,2,4394,201106284,,,214.0,,1.0,0.0,4.0,0.0,1.0,1.0,3535.171470555579,0.0,370.0,0.0,0.0,37368.0,0,1,2,75.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,504.79356934673217,0.019938917302473918,0.013508712517307113,37368.0,9,5,9,9_0,9_3,9_0_1 -6285,2,26.0,3,0.0,8,111,4,0,43,3.0,0.0,0.0,750.3688192991965,0.0,0.0,36847.0,0,20,2,4395,201106285,,,,525.0,1.0,0.0,2.0,0.0,1.0,1.0,3816.2064784807576,0.0,550.0,0.0,0.0,12343.0,0,1,3,43.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,750.3688192991965,0.020364448104301477,0.060793066458656446,12343.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -6286,2,37.0,3,0.0,1,111,2,42,38,8.0,0.0,0.0,573.00891655575,0.0,1299.9569199661457,41116.0,20,20,8,4396,201106286,,,,917.0,2.0,0.0,2.0,1.0,3.0,1.8,3006.532217096406,0.0,420.0,748.0,0.0,46293.0,1,1,3,45.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1872.9658365218957,0.04555321131729487,0.04045894274559643,25718.333333333332,8,4,8,8_0,8_4,8_1_0 -6287,1,24.0,4,225.0,99,111,2,64,55,2.0,0.0,0.0,532.0797082303393,0.0,990.6088828619024,20978.0,60,41,2,4397,201106287,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2936.3948437778918,0.0,390.0,570.0,0.0,17762.0,1,1,3,48.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1522.6885910922417,0.07258502197979987,0.08572731624210346,11841.333333333334,2,1,2_1,2_0_1,2_2_1,2_0_0 -6288,1,37.0,3,350.0,4,111,4,0,85,2.0,0.0,0.0,1227.8762497623215,0.0,0.0,45002.0,0,50,2,4399,201106288,,,,40.0,0.0,0.0,4.0,2.0,3.0,1.6,3412.8857210193596,0.0,900.0,0.0,0.0,15156.0,0,7,3,80.0,7,5.0,2,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1227.8762497623215,0.02728492622021958,0.08101585179218274,9472.5,1,1,1_1,1_0_1,1_2_1,1_0_1 -6289,2,57.0,3,0.0,99,111,1,56,67,4.0,0.0,0.0,927.728722042643,0.0,104.27461924862132,23804.0,70,50,2,44,201106289,,,,452.0,2.0,5.0,3.0,0.0,2.0,1.5,1096.242325620607,0.0,680.0,60.0,0.0,23296.0,1,4,3,60.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1032.0033412912644,0.04335419850828703,0.04429959397713189,15530.666666666666,4,2,4_0,4_0_0,4_2_0,4_0_0 -6290,1,25.0,4,262.0,5,111,1,0,84,1.0,0.0,0.0,559.3658471139465,0.0,0.0,9914.0,0,43,2,440,201106290,,,,149.0,0.0,0.0,1.0,0.0,1.0,1.0,4495.272036150394,0.0,410.0,0.0,0.0,6598.0,0,3,3,20.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,559.3658471139465,0.056421812297150147,0.08477809140860057,6598.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -6291,2,25.0,2,0.0,5,111,1,0,37,7.0,0.0,0.0,0.0,0.0,0.0,16322.0,0,31,2,4400,201106291,,,,360.0,1.0,0.0,2.0,0.0,1.0,1.0,3572.8938814441763,0.0,0.0,0.0,0.0,22324.0,0,1,3,50.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,22324.0,7,4,7,7_0,7_4,7_0_0 -6292,2,72.0,4,0.0,5,221,2,0,77,7.0,0.0,0.0,447.49267769115716,0.0,1263.4608032291283,19644.0,0,71,1,4402,201106292,,,277.0,,2.0,1.0,5.0,1.0,3.0,2.0,4058.5000820920336,0.0,328.0,727.0,0.0,46396.0,0,5,1,90.0,1,3.0,5,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1710.9534809202855,0.08709801878030368,0.036877176500566544,23198.0,7,4,7,7_1,7_1,7_0_0 -6293,2,28.0,2,0.0,1,300,4,0,62,7.0,0.0,0.0,545.7227776721429,0.0,0.0,12518.0,0,50,2,4405,201106293,,,,440.0,1.0,0.0,3.0,0.0,1.0,1.0,3000.109243668191,0.0,400.0,0.0,0.0,24136.0,0,1,3,60.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,545.7227776721429,0.043595045348469634,0.02261032390090085,24136.0,7,4,7,7_0,7_0,7_1_0 -6294,1,20.0,2,298.0,1,111,4,0,47,8.0,0.0,0.0,654.8673332065715,0.0,0.0,18144.0,0,60,2,4407,201106294,,,,342.0,1.0,0.0,1.0,0.0,1.0,1.0,4305.786826907814,0.0,480.0,0.0,0.0,25227.0,0,2,3,16.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,654.8673332065715,0.03609277630106766,0.025958985737763965,25227.0,8,4,8,8_0,8_4,8_1_0 -6295,2,76.0,3,0.0,3,111,1,0,74,9.0,0.0,0.0,1825.2224821031275,0.0,3067.6922277828717,36523.0,0,60,2,4409,201106295,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3656.311560175292,2853.0,250.0,0.0,0.0,30701.0,0,5,1,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4892.914709885999,0.13396803958836895,0.15937313800482067,30701.0,9,5,9,9_0,9_4,9_0_1 -6296,2,66.0,1,0.0,4,111,2,74,31,10.0,0.0,0.0,1439.238919355207,0.0,4315.364961113178,67548.0,10,10,1,441,201106296,,,200.0,,1.0,0.0,5.0,0.0,2.0,1.5,946.3386015278788,1576.0,454.0,1508.0,0.0,125327.0,5,1,1,250.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5754.603880468385,0.08519280926849625,0.04591671292274119,83551.33333333333,10,5,10,10_1,10_3,10_0_1 -6297,1,55.0,4,430.0,8,112,2,85,85,1.0,0.0,0.0,518.4366387885358,0.0,1459.8446694806985,12044.0,71,71,1,4411,201106297,,,520.0,,1.0,0.0,5.0,3.0,5.0,3.0,3117.9856557794387,0.0,380.0,840.0,0.0,22010.0,6,7,3,100.0,5,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1978.2813082692342,0.16425450915553255,0.08988102263831141,7336.666666666667,1,1,1_1,1_1_1,1_0_1,1_0_0 -6298,2,53.0,2,0.0,1,111,1,52,52,4.0,0.0,0.0,409.2920832541072,0.0,156.41192887293198,25627.0,60,42,2,4412,201106298,,,,335.0,2.0,0.0,3.0,2.0,4.0,2.5,2084.3445694425554,0.0,300.0,90.0,0.0,41142.0,1,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,565.7040121270392,0.02207453124154365,0.013750036753853462,16456.8,4,2,4_0,4_0_0,4_4_0,4_1_0 -6299,2,51.0,2,0.0,2,221,2,85,47,3.0,0.0,0.0,450.22129157951787,0.0,2971.8266485857075,24893.0,70,50,2,4414,201106299,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1762.7414144329052,0.0,330.0,1710.0,0.0,21390.0,6,1,1,102.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,3422.0479401652256,0.13747029044973388,0.1599835409146903,14260.0,3,2,3_0,3_0_0,3_1_0,3_0_1 -6300,1,49.0,4,350.0,1,111,2,0,85,1.0,0.0,0.0,556.6372332255858,0.0,2168.9120803713236,7109.0,0,50,1,4417,201106300,,,408.0,,1.0,2.0,4.0,2.0,3.0,2.0,1892.1144190661878,0.0,408.0,1248.0,0.0,17980.0,0,7,3,86.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2725.549313596909,0.38339419237542677,0.1515878372412074,8990.0,1,1,1_1,1_1_1,1_3_1,1_1_0 -6301,0,19.0,3,0.0,99,111,4,0,84,1.0,0.0,0.0,491.1504999049286,0.0,0.0,15680.0,0,41,2,4419,201106301,,,,,0.0,0.0,2.0,0.0,1.0,1.0,4028.3078524960224,0.0,360.0,0.0,0.0,2400.0,0,3,5,30.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,491.1504999049286,0.03132337371842657,0.20464604162705358,2400.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -6302,2,46.0,3,0.0,1,300,5,0,85,2.0,0.0,208.188947934516,540.2655498954215,90.37133668213848,0.0,13229.0,0,60,1,442,201106302,,,361.0,,0.0,0.0,4.0,1.0,2.0,1.3,2281.4046746389026,0.0,396.0,0.0,0.0,13241.0,0,6,1,100.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,838.825834512076,0.06340810601799653,0.06335064077577796,10185.384615384615,2,1,2_0,2_1_0,2_0_0,2_1_0 -6303,2,69.0,3,0.0,2,111,2,72,75,9.0,0.0,0.0,552.5443123930447,0.0,2163.698349408892,49901.0,70,70,2,4421,201106303,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2979.551980928606,0.0,405.0,1245.0,0.0,44668.0,5,5,1,70.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2716.242661801937,0.05443262984312814,0.06080958766459069,29778.666666666668,9,5,9,9_0,9_3,9_0_1 -6304,2,40.0,1,0.0,99,112,4,85,38,10.0,0.0,0.0,2517.146312012759,151.1981979105009,0.0,39825.0,33,10,1,4422,201106304,,,,,1.0,0.0,6.0,0.0,2.0,1.5,2571.973256628922,0.0,1845.0,0.0,0.0,66372.0,6,4,3,100.0,8,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2668.34450992326,0.0670017453841371,0.0402028643090951,44248.0,10,5,10,10_1,10_0,10_0_0 -6305,2,54.0,3,0.0,6,112,2,63,63,6.0,1903.7472109666587,0.0,641.2242637647679,39.971937378638174,0.0,16488.0,44,50,1,4423,201106305,,,186.0,,2.0,1.0,6.0,0.0,2.0,1.5,1613.5023896386583,0.0,470.0,0.0,0.0,28480.0,1,1,1,120.0,9,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2584.943412110065,0.1567772569207948,0.09076346250386463,18986.666666666668,5,3,5,5_1,5_0,5_0_0 -6306,2,36.0,2,0.0,2,111,1,42,38,9.0,0.0,0.0,73.67257498573929,0.0,0.0,89980.0,10,10,8,4424,201106306,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2953.1883381740367,0.0,54.0,0.0,0.0,63430.0,1,1,2,115.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,73.67257498573929,0.0008187661145336663,0.0011614784011625301,30204.761904761905,9,5,9,9_0,9_4,9_0_1 -6307,2,59.0,4,0.0,6,120,5,71,11,1.0,0.0,208.188947934516,0.0,354.5337054453125,0.0,10625.0,20,50,1,4426,201106307,,,,,1.0,1.0,4.0,0.0,2.0,1.5,1032.9844642057797,0.0,0.0,0.0,0.0,1790.0,5,1,1,90.0,0,1.0,3,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,562.7226533798284,0.05296213208280738,0.31437019741889854,1193.3333333333333,1,1,1_0,1_1_0,1_1_0,1_0_0 -6308,2,49.0,3,0.0,1,111,5,43,52,7.0,269.69752155361,458.01568545593517,818.5841665082144,243.30744491344973,0.0,50602.0,33,50,1,4427,201106308,,,200.0,,2.0,0.0,4.0,2.0,4.0,2.1,2480.3013284373515,0.0,600.0,0.0,0.0,49989.0,1,1,2,90.0,8,6.0,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1789.6048184312092,0.03536628628179141,0.035799972362543946,23804.285714285714,7,4,7,7_1,7_2,7_1_0 -6309,2,67.0,2,0.0,4,111,4,86,74,10.0,0.0,0.0,2200.6271009629163,0.0,0.0,41921.0,50,12,2,4428,201106309,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1707.3197236066353,0.0,1613.0,0.0,0.0,66150.0,6,5,1,220.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2200.6271009629163,0.05249462324283572,0.03326722752778407,44100.0,10,5,10,10_0,10_3,10_0_1 -6310,2,56.0,3,0.0,1,111,2,78,22,5.0,0.0,0.0,327.43366660328576,0.0,0.0,13431.0,71,50,2,4429,201106310,,,60.0,200.0,1.0,2.0,1.0,0.0,2.0,1.5,3557.4426690451764,0.0,240.0,0.0,0.0,26830.0,5,1,3,22.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,327.43366660328576,0.024378949192412014,0.012204012918497419,17886.666666666668,5,3,5,5_0,5_3,5_1_0 -6311,2,35.0,2,0.0,1,211,2,42,38,10.0,0.0,0.0,1200.5901108787143,0.0,2954.447545377604,87752.0,20,12,1,443,201106311,,,520.0,,2.0,0.0,7.0,2.0,4.0,2.1,995.5434122178355,0.0,880.0,1700.0,0.0,78576.0,1,1,2,240.0,3,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4155.037656256318,0.04734977728435042,0.05287922083405006,37417.142857142855,9,5,9,9_1,9_2,9_1_0 -6312,2,75.0,3,0.0,1,112,5,71,71,2.0,0.0,173.49078994542998,1191.039962269452,1129.641708526731,0.0,17184.0,50,71,1,4431,201106312,,,,,0.0,0.0,8.0,0.0,2.0,1.5,1643.6788169816614,0.0,873.0,0.0,0.0,17955.0,5,5,1,180.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2494.1724607416127,0.1451450454342186,0.138912417752248,11970.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -6313,2,66.0,3,0.0,4,112,5,77,78,7.0,0.0,202.63724265626223,720.3540665272286,698.6399489657628,0.0,37730.0,50,70,1,4433,201106313,,,292.0,,0.0,1.0,4.0,0.0,2.0,1.5,1455.1330594917372,0.0,528.0,0.0,0.0,32651.0,5,5,1,100.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1621.6312581492534,0.04297989022393993,0.04966559242134248,21767.333333333332,6,3,6,6_1,6_0,6_0_1 -6314,1,81.0,4,160.0,99,211,6,0,78,3.0,222.10384127944351,0.0,272.86138883607146,0.0,0.0,10853.0,0,71,2,4434,201106314,,,50.0,,0.0,2.0,4.0,0.0,1.0,1.0,3063.6090727411597,0.0,200.0,0.0,0.0,12602.0,0,5,3,95.0,3,3.0,1,2,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,494.96523011551494,0.04560630517972127,0.03927672037101372,12602.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -6315,2,65.0,3,0.0,4,111,2,75,74,10.0,93.60090453919405,0.0,879.9779789963304,0.0,3797.3340509706263,82522.0,71,12,1,4436,201106315,,,500.0,,0.0,1.0,4.0,0.0,2.0,1.5,3137.1489951119565,0.0,645.0,2185.0,0.0,66287.0,5,5,1,88.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4770.912934506151,0.05781383066947179,0.07197358357605792,44191.333333333336,10,5,10,10_1,10_4,10_0_1 -6316,2,44.0,3,0.0,7,111,2,52,53,7.0,0.0,0.0,1872.7391117451587,0.0,3870.905019284381,64684.0,71,50,1,4439,201106316,,,,,2.0,0.0,6.0,2.0,4.0,2.3,2229.001403957423,3600.0,0.0,0.0,0.0,51720.0,1,1,2,120.0,6,4.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5743.6441310295395,0.08879543830049996,0.11105267074689752,22486.956521739132,7,4,7,7_1,7_2,7_0_0 -6317,2,51.0,3,0.0,6,112,2,63,56,4.0,2062.392811880547,0.0,1091.4455553442858,201.5975972140012,0.0,38826.0,50,50,1,444,201106317,,,,,3.0,1.0,4.0,2.0,4.0,2.5,1409.9368307712346,0.0,800.0,0.0,0.0,38865.0,1,1,2,90.0,6,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3355.435964438834,0.08642239644668094,0.08633567385665339,15546.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -6318,2,55.0,3,0.0,5,111,2,54,47,10.0,0.0,0.0,1500.737638598393,0.0,0.0,42326.0,50,60,1,4440,201106318,,,460.0,,3.0,1.0,4.0,1.0,3.0,2.0,2265.191139071096,0.0,1100.0,0.0,0.0,83660.0,1,1,1,110.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1500.737638598393,0.03545663749464615,0.01793853261532863,41830.0,10,5,10,10_1,10_3,10_0_0 -6319,2,75.0,2,0.0,4,300,2,77,75,3.0,3966.1400228472053,0.0,327.43366660328576,151.1981979105009,0.0,25415.0,70,70,1,4441,201106319,,,80.0,,0.0,3.0,5.0,0.0,2.0,1.5,1024.2483239651938,0.0,240.0,0.0,0.0,20668.0,5,5,1,90.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4444.771887360992,0.17488773902659815,0.215055732889539,13778.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1 -6320,2,47.0,4,0.0,9,111,5,48,23,10.0,0.0,20.818894793451598,1058.5466528494167,104.27461924862132,834.3950819346333,26631.0,31,31,1,4444,201106320,,,560.0,,2.0,0.0,4.0,2.0,4.0,2.3,1878.5633913977044,776.0,480.0,0.0,0.0,133790.0,1,1,1,150.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2018.0352488261228,0.075777674470584,0.015083603025832445,58169.56521739131,10,5,10,10_1,10_2,10_0_0 -6321,2,44.0,2,0.0,1,111,2,38,34,10.0,0.0,0.0,409.2920832541072,0.0,2440.026090417739,41091.0,10,10,1,4445,201106321,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1591.203083474756,0.0,300.0,1404.0,0.0,107480.0,1,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2849.318173671846,0.06934166055028708,0.026510217469965073,51180.95238095238,10,5,10,10_1,10_4,10_1_0 -6322,2,48.0,4,0.0,8,111,1,56,65,3.0,0.0,0.0,1255.1623886459286,312.82385774586396,0.0,18692.0,70,70,2,4446,201106322,,,,,2.0,4.0,2.0,0.0,2.0,1.5,3390.870644045408,0.0,920.0,0.0,0.0,20250.0,4,1,3,60.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1567.9862463917925,0.08388541870274945,0.07743141957490333,13500.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -6323,2,54.0,2,0.0,7,111,2,77,43,10.0,0.0,0.0,413.3850040866482,0.0,1372.9491534401807,61378.0,50,33,1,4449,201106323,,,392.0,,1.0,2.0,4.0,0.0,2.0,1.5,2855.0055302006454,0.0,303.0,790.0,0.0,57934.0,5,1,2,95.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1786.334157526829,0.029103818265939406,0.03083395169549537,38622.666666666664,10,5,10,10_1,10_2,10_0_0 -6324,1,36.0,3,323.0,99,111,1,85,46,3.0,0.0,0.0,703.9823831970643,0.0,1911.7013528913908,43027.0,60,41,8,445,201106324,,,,176.0,1.0,0.0,4.0,4.0,6.0,2.7,4494.517288579153,0.0,516.0,1100.0,0.0,38723.0,6,1,3,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2615.683736088455,0.060791682805876664,0.06754858187868851,14341.85185185185,3,2,3_1,3_0_1,3_4_1,3_0_0 -6325,2,37.0,1,0.0,5,111,2,38,37,9.0,0.0,0.0,654.8673332065715,0.0,1042.7461924862132,69745.0,12,12,1,4451,201106325,,,310.0,,2.0,0.0,5.0,2.0,4.0,2.1,1969.8033586738925,0.0,480.0,600.0,0.0,76116.0,1,1,2,90.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1697.6135256927846,0.024340289994878264,0.02230297868638374,36245.71428571428,9,5,9,9_1,9_3,9_0_0 -6326,1,61.0,3,397.0,5,112,2,85,78,2.0,0.0,0.0,64.1224263764768,46.92357866187959,0.0,37267.0,50,70,1,4452,201106326,,,,,1.0,4.0,5.0,3.0,5.0,2.8,1045.772984442211,0.0,47.0,0.0,0.0,29314.0,6,5,3,90.0,9,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,111.04600503835638,0.002979740924634566,0.0037881560018542806,10469.285714285716,2,1,2_1,2_1_1,2_0_1,2_0_0 -6327,2,79.0,1,0.0,5,111,2,0,74,10.0,0.0,0.0,469.3215887980429,0.0,2307.9449060361517,24574.0,0,70,1,4454,201106327,,,191.0,,0.0,2.0,5.0,0.0,1.0,1.0,2066.29757416397,0.0,344.0,1328.0,0.0,42582.0,0,5,1,99.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2777.2664948341944,0.11301646027647898,0.06522160760025819,42582.0,10,5,10,10_1,10_3,10_0_0 -6328,1,22.0,3,240.0,1,111,2,0,84,1.0,380.74944219333173,0.0,545.7227776721429,0.0,0.0,17664.0,0,10,2,4455,201106328,,,,70.0,0.0,0.0,2.0,0.0,1.0,1.0,3075.7259365325426,0.0,400.0,0.0,0.0,4093.0,0,3,3,32.0,8,7.0,1,2,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,926.4722198654747,0.05244974070796392,0.2263552943722147,4093.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -6329,1,39.0,5,530.0,99,111,1,85,67,2.0,0.0,0.0,47.7507430463125,0.0,1958.6249315532702,32366.0,60,41,2,4459,201106329,95.0,95.0,,,1.0,0.0,5.0,5.0,8.0,3.5,1290.0686641314176,0.0,35.0,1127.0,0.0,38837.0,6,1,3,110.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2006.3756745995827,0.061990226614335495,0.05166144847953196,11096.285714285714,2,1,2_1,2_0_1,2_4_1,2_0_0 -6330,0,77.0,2,0.0,5,111,4,56,78,4.0,0.0,0.0,1757.2273441043,0.0,0.0,27083.0,71,50,2,446,201106330,,,286.0,,1.0,2.0,3.0,0.0,2.0,1.5,4754.70006947825,0.0,1288.0,0.0,0.0,23589.0,6,5,5,75.0,7,5.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1757.2273441043,0.06488303895817672,0.07449350731715207,15726.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -6331,2,53.0,1,0.0,7,111,2,53,33,10.0,0.0,0.0,1487.0945691565894,4240.501182777267,0.0,51660.0,50,41,1,4461,201106331,,,564.0,,2.0,2.0,6.0,0.0,2.0,1.5,2421.806904741429,0.0,1090.0,0.0,0.0,72952.0,1,1,1,135.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5727.595751933856,0.1108709979081273,0.07851184000347977,48634.666666666664,10,5,10,10_1,10_3,10_0_0 -6332,2,85.0,2,0.0,2,400,2,0,71,4.0,3331.5576191916525,0.0,330.16228049164647,151.1981979105009,0.0,7685.0,0,70,1,4462,201106332,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2412.186249452249,0.0,242.0,0.0,0.0,14743.0,0,5,5,86.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3812.9180975937998,0.4961506958482498,0.2586256594718714,14743.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -6333,2,68.0,3,0.0,1,300,2,0,71,4.0,0.0,900.7641813966725,791.2980276246072,1353.8321399112667,0.0,11860.0,0,70,1,4463,201106333,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3344.8056608793886,0.0,580.0,0.0,0.0,15062.0,0,5,5,72.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3045.8943489325466,0.25682077141083864,0.2022237650333652,15062.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -6334,2,36.0,1,0.0,4,300,4,54,46,9.0,0.0,0.0,2742.256957802518,0.0,0.0,26090.0,31,20,1,4464,201106334,,,449.0,,2.0,0.0,4.0,2.0,4.0,2.1,2241.234216825259,0.0,2010.0,0.0,0.0,76005.0,1,1,1,80.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2742.256957802518,0.10510758749722185,0.036079954710907414,36192.857142857145,9,5,9,9_1,9_0,9_0_1 -6335,2,57.0,2,0.0,2,111,2,75,56,6.0,0.0,0.0,682.1534720901786,0.0,2606.865481215533,35534.0,71,71,1,4466,201106335,,,200.0,,1.0,2.0,4.0,0.0,2.0,1.5,3046.9452357993714,0.0,500.0,1500.0,0.0,29483.0,5,1,1,67.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3289.0189533057114,0.09255977242375503,0.11155645467916125,19655.333333333332,6,3,6,6_1,6_4,6_0_1 -6336,2,43.0,3,0.0,10,300,6,63,52,4.0,0.0,555.170527825376,1514.3807080401966,69.5164128324142,0.0,38131.0,50,50,1,4467,201106336,,,120.0,,3.0,0.0,6.0,3.0,5.0,2.6,1125.7441678071862,0.0,1110.0,0.0,0.0,43495.0,1,1,2,120.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2139.0676486979864,0.05609786390857797,0.049179621765673906,16728.846153846152,4,2,4_0,4_1_0,4_0_0,4_0_0 -6337,2,45.0,2,0.0,8,111,2,34,53,9.0,0.0,0.0,865.6216338733178,0.0,1789.2183200247807,74273.0,20,50,1,4468,201106337,,,200.0,,2.0,0.0,6.0,2.0,4.0,2.1,1870.581823178964,1664.0,0.0,0.0,0.0,61117.0,1,1,2,145.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2654.8399538980984,0.035744347931254944,0.0434386497029975,29103.333333333332,9,5,9,9_1,9_3,9_0_0 -6338,2,74.0,2,0.0,1,111,2,0,74,9.0,0.0,0.0,549.815698504684,0.0,1487.651234613664,29479.0,0,44,1,4469,201106338,,,436.0,,0.0,0.0,4.0,0.0,2.0,1.5,2924.3768884081023,0.0,403.0,856.0,0.0,51158.0,0,5,1,105.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2037.466933118348,0.06911587683158682,0.0398269465795838,34105.333333333336,9,5,9,9_1,9_3,9_1_0 -6339,2,36.0,3,0.0,9,112,2,46,48,7.0,0.0,0.0,818.5841665082144,0.0,3336.7878159558823,54893.0,31,50,1,4470,201106339,,,281.0,,2.0,0.0,7.0,1.0,3.0,1.8,2446.833255473413,0.0,600.0,1920.0,0.0,44236.0,1,1,2,160.0,9,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4155.371982464097,0.07569948777556514,0.09393643146903194,24575.555555555555,7,4,7,7_1,7_0,7_0_0 -6340,2,45.0,1,0.0,2,111,1,42,31,10.0,0.0,0.0,409.2920832541072,0.0,0.0,68527.0,10,12,2,4471,201106340,,,,,2.0,0.0,7.0,4.0,6.0,3.1,1605.8939646416286,0.0,300.0,0.0,0.0,148220.0,1,1,2,150.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,409.2920832541072,0.005972712700893184,0.00276138229155382,47812.90322580645,10,5,10,10_0,10_4,10_0_1 -6341,2,80.0,1,0.0,5,111,2,0,71,2.0,0.0,693.9631597817199,1541.6668469238036,0.0,2346.1789330939796,19455.0,0,70,1,4472,201106341,,,,,0.0,3.0,6.0,0.0,1.0,1.0,1757.8970566803239,0.0,1130.0,1350.0,0.0,12275.0,0,5,1,180.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4581.808939799503,0.23550804111022888,0.37326345741747474,12275.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -6342,2,45.0,4,0.0,7,111,2,0,43,4.0,0.0,0.0,51.500325572991855,0.0,106.44988803032048,28883.0,0,50,2,4475,201106342,,,,,1.0,1.0,4.0,1.0,2.0,1.3,4131.515580496016,99.0,0.0,0.0,0.0,21595.0,0,1,3,84.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,157.95021360331233,0.005468622151553243,0.007314202991586587,16611.53846153846,4,2,4_0,4_0_0,4_3_0,4_0_0 -6343,1,41.0,3,137.0,99,111,4,0,85,1.0,0.0,0.0,1337.02080529675,208.54923849724264,0.0,20161.0,0,20,2,4478,201106343,,,170.0,148.0,0.0,0.0,3.0,1.0,2.0,1.5,2836.7742685778235,0.0,980.0,0.0,0.0,11582.0,0,5,3,55.0,6,4.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1545.5700437939927,0.07666137809602662,0.13344586805335804,7721.333333333333,1,1,1_1,1_0_1,1_2_1,1_0_0 -6344,1,52.0,3,300.0,5,111,1,0,85,3.0,0.0,0.0,272.86138883607146,0.0,0.0,9860.0,0,50,2,4480,201106344,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3332.8367200394773,0.0,200.0,0.0,0.0,13610.0,0,7,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,272.86138883607146,0.02767356884747175,0.0200485957998583,13610.0,3,2,3_1,3_0_1,3_4_1,3_0_0 -6345,2,34.0,2,0.0,9,112,2,31,34,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,66679.0,20,20,1,4486,201106345,,,220.0,,2.0,0.0,5.0,2.0,4.0,2.1,1610.0164670920813,0.0,1200.0,0.0,0.0,52619.0,1,1,2,141.0,9,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.024552982693448144,0.03111363448595429,25056.666666666664,8,4,8,8_1,8_0,8_0_0 -6346,1,21.0,2,170.0,1,111,2,0,84,1.0,0.0,0.0,777.6549581828036,0.0,0.0,28371.0,0,42,2,449,201106346,,,,,0.0,0.0,2.0,0.0,2.0,1.5,4943.528418179599,0.0,570.0,0.0,0.0,11716.0,0,3,3,32.0,8,7.0,5,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,777.6549581828036,0.02741020613241703,0.06637546587425773,7810.666666666667,1,1,1_1,1_0_1,1_3_1,1_1_0 -6347,2,66.0,3,0.0,1,111,1,0,72,5.0,0.0,0.0,2504.867549515136,0.0,0.0,30670.0,0,41,8,4491,201106347,,,,610.0,0.0,1.0,1.0,0.0,1.0,1.0,3780.9261492519245,0.0,1836.0,0.0,0.0,18647.0,0,5,3,16.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2504.867549515136,0.08167158622481696,0.13433086016598575,18647.0,5,3,5,5_0,5_4,5_1_0 -6348,2,41.0,2,0.0,99,111,2,0,38,10.0,126.91648073111057,0.0,462.5000540771411,0.0,514.4214549598652,52802.0,0,20,2,4492,201106348,,,,871.0,1.0,0.0,3.0,0.0,1.0,1.0,3434.040065674032,0.0,339.0,296.0,0.0,38109.0,0,1,3,53.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1103.8379897681168,0.020905230668689004,0.028965283522740477,38109.0,10,5,10,10_0,10_4,10_0_0 -6349,1,53.0,9,250.0,2,111,1,78,52,2.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,22381.0,71,60,2,4495,201106349,,,,,1.0,2.0,4.0,2.0,4.0,2.3,3414.8954025266835,700.0,0.0,0.0,0.0,24740.0,5,1,3,49.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1116.8196921446327,0.04990034815891303,0.04514226726534489,10756.521739130436,2,1,2_1,2_0_1,2_4_1,2_0_1 -6350,2,82.0,1,0.0,4,111,2,77,75,7.0,0.0,0.0,111.87316942278929,0.0,519.6351859222962,19801.0,50,70,1,45,201106350,,,,,0.0,3.0,3.0,0.0,2.0,1.5,1375.82605633765,0.0,82.0,299.0,0.0,32884.0,5,5,3,65.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,631.5083553450854,0.0318927506360833,0.01920412222798581,21922.666666666668,7,4,7,7_1,7_3,7_0_1 -6351,1,24.0,2,172.0,7,111,4,0,84,2.0,0.0,0.0,432.48530130517327,0.0,0.0,11307.0,0,41,2,450,201106351,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4167.316511717654,0.0,317.0,0.0,0.0,11696.0,0,3,3,20.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,432.48530130517327,0.03824934123155331,0.03697719744401276,11696.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -6352,2,53.0,2,0.0,3,111,1,0,34,3.0,0.0,0.0,337.3668471295158,0.0,550.4296498809473,33616.0,0,10,2,4501,201106352,,,300.0,,1.0,0.0,5.0,3.0,4.0,2.3,2756.809118537721,124.0,200.0,240.0,0.0,32087.0,0,1,1,90.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,887.7964970104631,0.02640993863072534,0.027668417022796245,13950.869565217392,3,2,3_0,3_0_0,3_3_0,3_0_1 -6353,1,56.0,5,259.0,99,111,2,0,56,1.0,77.73634444780522,0.0,156.06159264542987,0.0,322.5754182736984,6657.0,0,70,2,4502,201106353,,,,180.0,1.0,3.0,1.0,0.0,1.0,1.0,3316.776677309249,300.0,0.0,0.0,0.0,9174.0,0,4,3,26.0,9,7.0,1,7,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,556.3733553669335,0.0835771902308748,0.060646757724758395,9174.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -6354,1,43.0,2,100.0,9,111,2,43,37,8.0,0.0,0.0,568.915995723209,0.0,961.0644074081265,59983.0,30,10,2,4503,201106354,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3258.965719607396,0.0,417.0,553.0,0.0,52318.0,1,1,2,86.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1529.9804031313356,0.02550690034061877,0.029243862592823418,24913.333333333332,8,4,8,8_0,8_3,8_0_0 -6355,1,66.0,4,20.0,5,211,2,85,78,1.0,0.0,0.0,463.8643610213215,0.0,1251.2954309834558,28671.0,71,71,2,4504,201106355,,,400.0,261.0,0.0,6.0,3.0,1.0,3.0,2.0,3176.134045291905,0.0,340.0,720.0,0.0,16430.0,6,5,3,70.0,4,3.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1715.1597920047773,0.059822112657555625,0.10439195325652935,8215.0,1,1,1_1,1_0_1,1_1_1,1_0_0 -6356,1,42.0,4,204.0,1,111,2,0,85,1.0,0.0,0.0,804.9410970664107,0.0,862.0035191219362,8328.0,0,71,1,4506,201106356,,,333.0,133.0,1.0,2.0,5.0,1.0,2.0,1.5,2395.337384389531,0.0,590.0,496.0,0.0,9720.0,0,6,3,82.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1666.944616188347,0.2001614572752578,0.17149635969015917,6480.0,1,1,1_1,1_1_1,1_3_1,1_1_0 -6357,2,55.0,2,0.0,99,111,2,48,47,8.0,0.0,0.0,24.557524995246432,0.0,15.641192887293197,35073.0,71,50,1,4507,201106357,,,120.0,,2.0,0.0,3.0,0.0,2.0,1.5,2917.733514624776,0.0,18.0,9.0,0.0,42596.0,1,1,2,66.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,40.198717882539626,0.0011461442671724582,0.0009437204874293273,28397.333333333332,8,4,8,8_1,8_3,8_0_0 -6358,2,47.0,3,0.0,9,111,2,53,62,7.0,0.0,832.755791738064,1227.8762497623215,107.75043989024202,0.0,35019.0,41,50,1,4509,201106358,,,1100.0,,2.0,1.0,4.0,1.0,3.0,2.0,2758.631422180081,0.0,900.0,0.0,0.0,46580.0,1,1,2,117.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2168.3824813906276,0.06192017137527136,0.04655179221534194,23290.0,7,4,7,7_1,7_3,7_0_0 -6359,2,60.0,3,0.0,5,300,2,77,75,8.0,1878.3639148204365,0.0,668.510402648375,104.27461924862132,0.0,16075.0,70,42,1,4510,201106359,,,,,0.0,4.0,5.0,0.0,2.0,1.5,4304.604493765621,0.0,490.0,0.0,0.0,41284.0,5,5,1,89.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2651.1489367174327,0.16492372856718088,0.06421734659232227,27522.666666666668,8,4,8,8_1,8_1,8_0_0 -6360,2,27.0,2,0.0,3,111,2,0,63,5.0,0.0,0.0,300.1475277196786,0.0,903.7133668213847,37318.0,0,43,2,4513,201106360,,,,493.0,1.0,0.0,3.0,0.0,1.0,1.0,3086.373312835258,0.0,220.0,520.0,0.0,16808.0,0,1,3,55.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1203.8608945410633,0.032259523408035354,0.07162427977993,16808.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -6361,1,50.0,3,247.0,1,400,5,0,21,1.0,0.0,832.755791738064,545.7227776721429,278.0656513296568,0.0,17133.0,0,30,2,4515,201106361,,,,,1.0,2.0,5.0,0.0,1.0,1.0,3607.5569580541987,0.0,400.0,0.0,0.0,9024.0,0,1,3,143.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1656.5442207398637,0.0966873414311483,0.18357094644723668,9024.0,1,1,1_1,1_0_1,1_1_1,1_1_0 -6362,2,62.0,3,0.0,4,112,2,78,75,8.0,1158.112886671384,0.0,474.77881657476433,79.94387475727635,0.0,32243.0,70,44,1,4518,201106362,,,202.0,,0.0,2.0,5.0,0.0,2.0,1.5,1647.8836788211202,0.0,348.0,0.0,0.0,41160.0,5,5,1,98.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1712.8355780034246,0.05312271122424789,0.04161408109823675,27440.0,8,4,8,8_1,8_0,8_0_1 -6363,2,50.0,2,0.0,1,111,6,0,85,8.0,0.0,0.0,395.6490138123036,0.0,1087.9318608272824,27767.0,0,10,2,4520,201106363,,,226.0,,1.0,0.0,4.0,1.0,2.0,1.5,2131.8669911377892,0.0,290.0,626.0,0.0,40618.0,0,4,1,90.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1483.580874639586,0.05342964218819411,0.03652520741148225,27078.666666666668,8,4,8,8_0,8_2,8_1_0 -6364,2,57.0,3,0.0,1,111,2,75,45,9.0,65.04469637469417,0.0,4146.701116955247,0.0,9429.17236411637,55388.0,70,42,1,4521,201106364,,,,,1.0,1.0,5.0,0.0,2.0,1.5,1410.207292869799,6618.0,516.0,1331.0,0.0,47742.0,5,1,1,81.0,7,6.0,3,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,13640.91817744631,0.24627930557966185,0.285721548687661,31828.0,9,5,9,9_1,9_2,9_1_0 -6365,2,59.0,2,0.0,6,112,2,52,47,9.0,0.0,346.98157989085996,811.7626317873126,0.0,1882.1568774376146,56186.0,50,50,1,4522,201106365,,,589.0,,2.0,2.0,4.0,0.0,2.0,1.5,2007.7921932023237,0.0,595.0,1083.0,0.0,50051.0,1,1,1,96.0,8,0.0,3,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3040.9010891157873,0.05412204266393385,0.060756050610692836,33367.333333333336,9,5,9,9_1,9_0,9_0_0 -6366,2,33.0,2,0.0,1,111,2,0,37,10.0,0.0,0.0,341.0767360450893,0.0,486.61488982689946,41610.0,0,10,2,4526,201106366,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3349.450385147926,0.0,250.0,280.0,0.0,55169.0,0,1,2,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,827.6916258719888,0.019891651667195115,0.015002839019594134,55169.0,10,5,10,10_0,10_4,10_1_0 -6367,2,28.0,2,0.0,1,111,5,63,47,7.0,0.0,0.0,1091.4455553442858,52.13730962431066,0.0,41029.0,41,31,1,4528,201106367,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2961.432762376063,0.0,800.0,0.0,0.0,34362.0,1,1,1,120.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1143.5828649685964,0.027872550268556298,0.03328045122427671,22908.0,7,4,7,7_1,7_2,7_1_0 -6368,2,38.0,5,0.0,1,400,5,52,52,4.0,0.0,1387.9263195634398,1773.5990274344645,312.82385774586396,0.0,39572.0,50,50,1,4529,201106368,,,600.0,,2.0,0.0,6.0,3.0,5.0,2.8,1230.327559701123,0.0,1300.0,0.0,0.0,42415.0,1,1,3,70.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3474.3492047437685,0.08779817054340869,0.08191321949177811,15148.214285714286,4,2,4_0,4_1_0,4_0_0,4_1_0 -6369,2,82.0,3,0.0,6,400,5,71,71,2.0,0.0,138.792631956344,1064.1594164606786,86.89551604051776,0.0,13355.0,60,70,1,453,201106369,,,290.0,,0.0,2.0,5.0,0.0,2.0,1.5,2066.4412480425517,0.0,780.0,0.0,0.0,16855.0,5,5,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1289.8475644575403,0.09658162219824339,0.07652610883758768,11236.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0 -6370,2,56.0,2,0.0,5,112,2,78,56,7.0,3474.338660014152,0.0,916.8142664892001,66.0405921907935,0.0,28450.0,70,71,1,4530,201106370,,,,,1.0,2.0,4.0,0.0,2.0,1.5,3239.0824142110037,0.0,672.0,0.0,0.0,36580.0,5,1,1,90.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4457.1935186941455,0.15666761049891548,0.12184782719229485,24386.666666666668,7,4,7,7_1,7_0,7_0_0 -6371,2,69.0,3,0.0,1,221,4,56,78,5.0,0.0,0.0,1091.4455553442858,201.5975972140012,0.0,15960.0,70,71,1,4532,201106371,,,200.0,,2.0,2.0,4.0,1.0,3.0,2.0,2673.107095108011,0.0,800.0,0.0,0.0,37718.0,1,5,1,80.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1293.0431525582871,0.08101774138836386,0.03428185886203635,18859.0,5,3,5,5_1,5_1,5_1_0 -6372,2,78.0,2,0.0,5,111,1,0,78,5.0,0.0,0.0,236.0251013432018,0.0,0.0,20699.0,0,70,8,4533,201106372,331.0,331.0,,237.0,0.0,2.0,1.0,0.0,1.0,1.0,3760.5851114293496,0.0,173.0,0.0,331.0,18250.0,0,5,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,236.0251013432018,0.011402729665355903,0.012932882265380922,18250.0,5,3,5,5_0,5_4,5_0_0 -6373,2,35.0,3,0.0,8,400,2,0,46,6.0,634.5824036555529,416.377895869032,600.2950554393572,312.82385774586396,0.0,22600.0,0,30,1,4534,201106373,,,154.0,,1.0,1.0,5.0,1.0,3.0,2.0,1875.8898677360837,0.0,440.0,0.0,0.0,38783.0,0,1,5,130.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1964.079212709806,0.08690615985441619,0.050642787115741585,19391.5,6,3,6,6_1,6_0,6_0_0 -6374,2,58.0,4,0.0,99,111,1,78,68,3.0,0.0,0.0,1309.734666413143,0.0,1668.3939079779411,10527.0,70,71,2,4536,201106374,,,,,2.0,3.0,3.0,1.0,3.0,2.0,6342.205812612493,0.0,960.0,960.0,0.0,25340.0,5,1,3,75.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2978.128574391084,0.2829038258184748,0.11752677878417853,12670.0,2,1,2_0,2_0_0,2_2_0,2_0_0 -6375,0,28.0,3,0.0,1,111,1,56,55,8.0,0.0,0.0,409.2920832541072,0.0,0.0,52277.0,41,20,2,4537,201106375,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3587.193402875983,0.0,300.0,0.0,0.0,39170.0,1,1,5,65.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,409.2920832541072,0.007829295545920906,0.010449121349351729,26113.333333333332,8,4,8,8_0,8_4,8_1_0 -6376,2,33.0,2,0.0,2,111,1,0,46,9.0,0.0,0.0,129.60915969713395,0.0,0.0,33530.0,0,31,2,454,201106376,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4137.819251122364,0.0,95.0,0.0,0.0,34909.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,129.60915969713395,0.003865468526607037,0.0037127720558347115,34909.0,9,5,9,9_0,9_4,9_0_1 -6377,1,54.0,4,105.0,5,112,4,0,56,3.0,0.0,0.0,1364.3069441803573,173.79103208103552,0.0,8431.0,0,70,1,4544,201106377,,,114.0,,1.0,0.0,2.0,0.0,1.0,1.0,1456.4246388099596,0.0,1000.0,0.0,0.0,12859.0,0,1,3,70.0,9,1.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1538.097976261393,0.182433634949756,0.11961256522757546,12859.0,3,2,3_1,3_1_1,3_1_1,3_0_0 -6378,1,39.0,3,338.0,8,400,2,85,21,2.0,0.0,0.0,750.3688192991965,104.27461924862132,0.0,15632.0,50,50,1,4546,201106378,,,203.0,,1.0,0.0,5.0,3.0,5.0,2.4,1511.931369702961,0.0,550.0,0.0,0.0,24355.0,6,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,854.6434385478178,0.05467268670341721,0.03509108760204549,10147.916666666668,2,1,2_1,2_1_1,2_0_1,2_0_0 -6379,2,56.0,1,0.0,5,111,2,43,42,10.0,0.0,0.0,354.7198054868929,0.0,2954.447545377604,40020.0,20,20,1,4549,201106379,,,340.0,,2.0,2.0,5.0,0.0,2.0,1.5,1195.1378093809528,0.0,260.0,1700.0,0.0,65903.0,1,1,1,92.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3309.1673508644967,0.08268783985168657,0.05021269670370843,43935.333333333336,10,5,10,10_1,10_3,10_0_0 -6380,2,51.0,3,0.0,7,111,2,0,54,6.0,0.0,0.0,3342.552013241875,0.0,1230.4405071337314,19972.0,0,42,1,4550,201106380,,,126.0,,1.0,2.0,6.0,0.0,1.0,1.0,1352.7556964765001,0.0,2450.0,708.0,0.0,19705.0,0,1,2,110.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4572.992520375607,0.2289701842767678,0.23207269831898536,19705.0,6,3,6,6_1,6_3,6_0_0 -6381,2,66.0,2,0.0,1,111,6,56,71,6.0,2855.620816449988,0.0,286.504458277875,194.64595593075978,0.0,25845.0,71,71,1,4551,201106381,,,120.0,,1.0,3.0,2.0,0.0,2.0,1.5,3017.0872322053283,0.0,210.0,0.0,0.0,31506.0,1,5,1,45.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3336.7712306586227,0.12910703155962944,0.10590907226111289,21004.0,6,3,6,6_1,6_4,6_1_0 -6382,2,28.0,2,0.0,9,111,6,34,54,7.0,0.0,0.0,1227.8762497623215,0.0,0.0,50712.0,20,43,1,4553,201106382,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3359.3417155286334,0.0,900.0,0.0,0.0,40626.0,1,1,2,90.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1227.8762497623215,0.024212735639736582,0.030223902175018993,22570.0,7,4,7,7_1,7_2,7_0_0 -6383,2,71.0,3,0.0,1,112,5,77,75,5.0,0.0,138.792631956344,341.0767360450893,0.0,0.0,11944.0,70,70,1,4554,201106383,,,300.0,,0.0,4.0,5.0,0.0,2.0,1.5,1751.4248040198358,0.0,250.0,0.0,0.0,27300.0,5,5,1,130.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,479.8693680014333,0.04017660482262503,0.01757763252752503,18200.0,5,3,5,5_1,5_0,5_1_0 -6384,2,54.0,2,0.0,1,120,6,63,37,4.0,0.0,0.0,2455.752499524643,0.0,0.0,53931.0,70,70,2,4555,201106384,,,700.0,590.0,3.0,2.0,5.0,2.0,4.0,2.5,2830.6105084958426,0.0,1800.0,0.0,0.0,40759.0,1,1,3,140.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,2455.752499524643,0.04553508185504892,0.0602505581472716,16303.6,4,2,4_0,4_0_0,4_1_0,4_1_0 -6385,2,45.0,3,0.0,1,111,2,37,34,6.0,0.0,0.0,3653.613996514997,0.0,3823.4027057827816,34579.0,10,10,2,4557,201106385,,,218.0,554.0,2.0,0.0,3.0,1.0,3.0,2.0,2693.3406862298066,0.0,2678.0,2200.0,0.0,38119.0,1,1,3,92.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,7477.0167022977785,0.21622998647438557,0.19614934028431436,19059.5,5,3,5,5_0,5_3,5_1_0 -6386,2,58.0,5,0.0,1,400,2,0,43,9.0,1189.8420068541616,0.0,1082.4161518121552,39.971937378638174,299.9951389945395,37092.0,0,10,1,4558,201106386,,,254.0,,1.0,3.0,7.0,0.0,1.0,1.0,2331.990855893843,279.0,687.0,0.0,0.0,34525.0,0,1,1,320.0,0,0.0,1,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2612.2252350394947,0.07042556980048244,0.07566184605472831,34525.0,9,5,9,9_1,9_0,9_1_0 -6387,2,30.0,3,0.0,2,111,1,46,64,10.0,0.0,0.0,654.8673332065715,0.0,156.41192887293198,48585.0,20,50,2,4559,201106387,,,,195.0,2.0,0.0,1.0,0.0,2.0,1.5,2946.3344464863853,0.0,480.0,90.0,0.0,72801.0,1,1,3,28.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,811.2792620795035,0.016698142679417587,0.011143792833608102,48534.0,10,5,10,10_0,10_4,10_0_1 -6388,2,47.0,3,0.0,1,111,2,56,48,6.0,2213.1061327487405,0.0,804.9410970664107,0.0,0.0,50352.0,50,31,1,456,201106388,,,352.0,,2.0,0.0,4.0,1.0,3.0,1.8,2447.3842231747676,0.0,590.0,0.0,0.0,34749.0,1,1,2,115.0,7,5.0,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3018.0472298151512,0.059938974217809644,0.0868527793552376,19305.0,6,3,6,6_1,6_2,6_1_0 -6389,2,48.0,2,0.0,1,111,5,56,62,8.0,0.0,971.5484236944079,1304.2774386364215,0.0,0.0,27287.0,60,71,1,4560,201106389,,,70.0,,2.0,2.0,4.0,0.0,2.0,1.5,2351.7727590049944,0.0,956.0,0.0,0.0,38786.0,1,1,1,100.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2275.8258623308293,0.08340330055817163,0.05867647765510311,25857.333333333332,8,4,8,8_1,8_2,8_1_0 -6390,2,60.0,1,0.0,6,111,2,85,42,5.0,3014.2664173638764,0.0,995.9440692516608,0.0,0.0,54638.0,42,50,1,4563,201106390,,,330.0,,1.0,1.0,7.0,1.0,3.0,2.0,3004.1683176711617,0.0,730.0,0.0,0.0,34943.0,6,1,1,175.0,8,6.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4010.2104866155373,0.0733959970462963,0.11476434440704969,17471.5,5,3,5,5_1,5_2,5_0_0 -6391,2,32.0,3,0.0,8,120,4,85,47,3.0,0.0,0.0,2046.460416270536,0.0,0.0,27202.0,50,31,1,4564,201106391,,,310.0,,1.0,0.0,6.0,3.0,5.0,2.4,1812.6297578568513,0.0,1500.0,0.0,0.0,33464.0,6,1,2,115.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2046.460416270536,0.07523198354056819,0.061154088461347594,13943.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -6392,2,36.0,3,0.0,9,111,4,52,46,8.0,0.0,0.0,1937.3158607361072,0.0,0.0,55409.0,31,31,1,4565,201106392,,,360.0,,2.0,0.0,4.0,2.0,4.0,2.1,6523.611322290832,0.0,1420.0,0.0,0.0,58298.0,1,1,2,92.0,6,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1937.3158607361072,0.03496392031504101,0.03323125768870471,27760.952380952378,8,4,8,8_1,8_2,8_0_0 -6393,2,97.0,1,0.0,1,221,2,0,72,10.0,2332.090333434157,0.0,1016.1252803513986,140.77073598563877,690.3113951057146,25244.0,0,70,1,4567,201106393,,,150.0,,0.0,1.0,7.0,0.0,1.0,1.0,5102.597893203396,642.0,500.0,0.0,0.0,41487.0,0,5,1,150.0,1,1.0,1,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4179.297744876909,0.16555608243055414,0.10073752608954392,41487.0,10,5,10,10_1,10_1,10_1_0 -6394,1,40.0,4,141.0,1,221,4,0,68,4.0,0.0,0.0,907.2641178799375,52.13730962431066,0.0,12350.0,0,71,1,4568,201106394,,,,,1.0,3.0,2.0,0.0,1.0,1.0,5242.33226430549,0.0,665.0,0.0,0.0,15404.0,0,1,3,40.0,1,1.0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,959.4014275042482,0.07768432611370431,0.06228261669074579,15404.0,4,2,4_1,4_1_1,4_1_1,4_1_0 -6395,1,41.0,3,24.0,7,111,2,67,65,3.0,0.0,0.0,941.3717914844465,0.0,1807.4267336427695,38457.0,71,71,1,4569,201106395,,,490.0,360.0,2.0,2.0,5.0,1.0,3.0,2.0,2596.3827383199296,0.0,690.0,1040.0,0.0,28135.0,4,1,3,100.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2748.7985251272157,0.07147719596243117,0.09770032077935724,14067.5,3,2,3_1,3_1_1,3_2_1,3_0_0 -6396,2,39.0,3,0.0,7,111,2,85,53,5.0,0.0,0.0,1350.6638747385537,0.0,0.0,35864.0,41,50,1,457,201106396,,,457.0,,1.0,0.0,6.0,1.0,3.0,1.8,1571.213027297313,0.0,990.0,0.0,0.0,31919.0,5,1,2,130.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1350.6638747385537,0.0376607147763371,0.042315356832562226,17732.777777777777,5,3,5,5_1,5_3,5_0_0 -6397,2,71.0,4,0.0,1,112,4,77,78,4.0,0.0,0.0,2332.964874548411,0.0,114.70208117348345,19875.0,71,70,2,4572,201106397,,,,405.0,0.0,3.0,3.0,0.0,2.0,1.5,2640.97607200198,0.0,1710.0,66.0,0.0,22010.0,5,5,3,35.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2447.6669557218943,0.12315305437594437,0.11120704024179438,14673.333333333334,3,2,3_0,3_0_0,3_0_0,3_1_0 -6398,2,68.0,2,0.0,7,111,2,0,75,10.0,0.0,0.0,491.1504999049286,0.0,0.0,34772.0,0,20,2,4574,201106398,,,,,0.0,2.0,1.0,0.0,1.0,1.0,2937.0572221494754,0.0,360.0,0.0,0.0,64030.0,0,7,1,38.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,491.1504999049286,0.014124884962180163,0.007670630952755405,64030.0,10,5,10,10_0,10_4,10_0_0 -6399,2,42.0,2,0.0,1,221,2,54,48,7.0,2696.9752155360998,0.0,590.7449068300947,66.0405921907935,0.0,31371.0,42,50,1,4575,201106399,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2149.6364745244055,0.0,433.0,0.0,0.0,50629.0,1,1,2,96.0,1,3.0,4,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3353.760714556988,0.1069064012800672,0.06624189129860333,22012.608695652176,7,4,7,7_1,7_1,7_1_0 -6400,2,31.0,3,0.0,9,111,2,53,22,7.0,0.0,0.0,676.2669014635294,0.0,1397.8268125193597,56295.0,50,31,1,4578,201106400,,,,,2.0,1.0,5.0,1.0,3.0,1.8,2635.900391815927,1300.0,0.0,0.0,0.0,39161.0,1,1,2,102.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2074.0937139828893,0.03684330249547721,0.05296324695444165,21756.11111111111,6,3,6,6_1,6_3,6_0_0 -6401,2,53.0,3,0.0,1,111,2,0,43,9.0,0.0,0.0,1404.554333808869,0.0,2903.178764463286,30638.0,0,33,1,4579,201106401,,,450.0,,2.0,0.0,5.0,2.0,3.0,2.0,1598.7678684824366,2700.0,0.0,0.0,0.0,69305.0,0,1,1,120.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4307.733098272155,0.14060098891155282,0.06215616619684229,34652.5,9,5,9,9_1,9_4,9_1_0 -6402,2,59.0,3,0.0,6,112,4,77,74,6.0,0.0,0.0,682.1534720901786,291.9689338961397,0.0,19638.0,70,60,1,458,201106402,,,190.0,,0.0,2.0,5.0,0.0,2.0,1.5,2270.0422517854536,0.0,500.0,0.0,0.0,29608.0,5,5,1,110.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,974.1224059863183,0.049603951827391704,0.03290064867557141,19738.666666666668,6,3,6,6_1,6_2,6_0_0 -6403,1,63.0,4,121.0,3,111,1,0,77,3.0,0.0,0.0,201.91742773869288,0.0,81.68178507808669,17690.0,0,50,2,4581,201106403,,,130.0,171.0,0.0,0.0,3.0,0.0,1.0,1.0,2801.511024403032,0.0,148.0,47.0,0.0,14114.0,0,5,3,68.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,283.5992128167796,0.016031611804227224,0.020093468387188576,14114.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -6404,1,20.0,2,259.0,1,111,2,0,42,1.0,0.0,0.0,750.3688192991965,0.0,0.0,25260.0,0,41,2,4583,201106404,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3841.252299843638,0.0,550.0,0.0,0.0,7816.0,0,2,3,33.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,750.3688192991965,0.029705812323800335,0.09600419898915001,7816.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -6405,1,58.0,4,105.0,1,111,2,0,56,1.0,0.0,0.0,660.6607421989866,0.0,1365.56927069199,10444.0,0,50,1,4584,201106405,,,399.0,296.0,1.0,4.0,5.0,0.0,1.0,1.0,1127.1667165070978,1270.0,0.0,0.0,0.0,6950.0,0,4,3,85.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2026.2300128909765,0.19400900161728998,0.29154388674690307,6950.0,1,1,1_1,1_1_1,1_3_1,1_1_0 -6406,2,37.0,2,0.0,3,111,4,54,23,10.0,0.0,0.0,3110.6198327312145,0.0,0.0,60148.0,31,31,1,4585,201106406,,,180.0,,2.0,0.0,6.0,2.0,4.0,2.1,3553.604460660049,0.0,2280.0,0.0,0.0,110100.0,1,1,2,180.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3110.6198327312145,0.05171609750500789,0.028252677863135463,52428.57142857143,10,5,10,10_1,10_3,10_0_1 -6407,1,36.0,3,580.0,5,111,2,0,85,3.0,0.0,0.0,540.2655498954215,0.0,2502.5908619669117,16059.0,0,50,1,4587,201106407,,,,,1.0,0.0,6.0,5.0,7.0,3.2,961.0548511089953,0.0,396.0,1440.0,0.0,40384.0,0,6,3,128.0,8,6.0,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,3042.856411862333,0.18947981890916826,0.07534806883573526,12620.0,2,1,2_1,2_1_1,2_2_1,2_0_0 -6408,2,69.0,4,0.0,1,400,2,72,78,1.0,0.0,0.0,941.3717914844465,0.0,1147.0208117348345,22847.0,60,71,1,4588,201106408,,,,,0.0,3.0,3.0,0.0,2.0,1.5,3469.0061338216788,0.0,690.0,660.0,0.0,13703.0,7,5,1,140.0,0,1.0,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2088.392603219281,0.09140773857483614,0.1524040431452442,9135.333333333334,1,1,1_0,1_1_0,1_1_0,1_1_0 -6409,2,41.0,2,0.0,7,112,5,56,65,6.0,0.0,346.98157989085996,818.5841665082144,90.37133668213848,0.0,44355.0,60,60,1,4589,201106409,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2450.2484787665194,0.0,600.0,0.0,0.0,40204.0,1,1,2,98.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1255.9370830812127,0.028315569452851148,0.03123910762812687,19144.761904761905,5,3,5,5_1,5_0,5_0_0 -6410,2,34.0,3,0.0,1,112,4,54,45,6.0,0.0,277.585263912688,1541.6668469238036,0.0,0.0,34786.0,20,31,1,459,201106410,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3147.886988995515,0.0,1130.0,0.0,0.0,44647.0,1,1,2,105.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1819.2521108364917,0.05229839909263761,0.04074746591790023,21260.47619047619,6,3,6,6_1,6_0,6_1_0 -6411,2,75.0,1,0.0,1,111,2,74,74,10.0,0.0,0.0,688.9750068110804,0.0,1451.1551178766467,25315.0,20,10,1,4590,201106411,,,260.0,,0.0,2.0,9.0,0.0,2.0,1.5,1127.5696362414424,0.0,505.0,835.0,0.0,69035.0,5,5,1,130.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2140.1301246877274,0.08454000097522131,0.031000653649420257,46023.333333333336,10,5,10,10_1,10_3,10_1_0 -6412,2,66.0,3,0.0,1,111,1,43,78,7.0,0.0,0.0,58.665198599755364,0.0,60.82686122836243,15539.0,31,70,2,4592,201106412,,,,345.0,1.0,3.0,4.0,0.0,2.0,1.5,3176.6957980110383,0.0,43.0,35.0,0.0,34130.0,1,5,3,98.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,119.49205982811779,0.007689816579452847,0.0035010858431912626,22753.333333333332,7,4,7,7_0,7_4,7_1_0 -6413,2,38.0,3,0.0,4,111,1,42,42,7.0,0.0,0.0,491.1504999049286,0.0,161.62565983536302,50647.0,43,20,2,4593,201106413,,,,,2.0,1.0,4.0,3.0,5.0,2.4,2961.1763455225773,0.0,360.0,93.0,0.0,56798.0,1,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,652.7761597402916,0.012888742862169362,0.011492942704677834,23665.833333333336,7,4,7,7_0,7_4,7_0_1 -6414,1,51.0,4,404.0,1,111,2,0,55,1.0,0.0,0.0,764.011888741,0.0,1772.6685272265624,35626.0,0,71,1,4594,201106414,,,1440.0,,2.0,4.0,5.0,4.0,6.0,2.7,1070.4145265898126,0.0,560.0,1020.0,0.0,23518.0,0,4,3,87.0,9,7.0,5,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2536.6804159675626,0.07120306562531754,0.10786123037535346,8710.37037037037,1,1,1_1,1_1_1,1_3_1,1_1_0 -6415,1,62.0,5,27.0,3,111,1,0,72,4.0,0.0,0.0,249.69854823268778,0.0,516.1206692379175,21819.0,0,50,2,4595,201106415,,,,298.0,1.0,1.0,4.0,1.0,3.0,1.8,1692.0501182815442,480.0,0.0,0.0,0.0,28160.0,0,5,3,80.0,4,4.0,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,765.8192174706053,0.0350987312649803,0.02719528471131411,15644.444444444443,4,2,4_1,4_0_1,4_2_1,4_0_1 -6416,2,36.0,4,0.0,5,111,1,52,63,7.0,0.0,0.0,409.2920832541072,0.0,0.0,37941.0,43,71,2,4596,201106416,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2952.796148916102,0.0,300.0,0.0,0.0,39525.0,1,1,2,81.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,409.2920832541072,0.010787593454418891,0.010355270923570074,21958.333333333332,7,4,7,7_0,7_2,7_0_0 -6417,2,31.0,3,0.0,5,111,1,22,54,2.0,0.0,0.0,491.1504999049286,0.0,121.65372245672486,15213.0,60,31,2,4597,201106417,,,,312.0,2.0,0.0,4.0,2.0,4.0,2.1,3416.793447503272,0.0,360.0,70.0,0.0,22587.0,1,1,3,83.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,612.8042223616535,0.04028161587863364,0.02713083731180119,10755.714285714284,2,1,2_0,2_0_0,2_2_0,2_0_0 -6418,2,46.0,4,0.0,7,112,2,56,65,4.0,713.905204112497,0.0,1811.0538096693676,182.4805836850873,77.41810038568761,65064.0,71,70,1,4598,201106418,,,500.0,,4.0,0.0,7.0,4.0,7.0,3.6,963.1241663889767,72.0,1300.0,0.0,0.0,57710.0,1,1,2,146.0,10,0.0,5,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2784.8576978526394,0.04280182125065535,0.04825606823518696,16030.555555555555,4,2,4_0,4_1_0,4_0_0,4_0_0 -6419,2,73.0,2,0.0,1,112,4,0,77,6.0,95.18736054833293,381.679737879946,1036.8732775770716,52.13730962431066,0.0,17287.0,0,41,1,4599,201106419,,,53.0,,0.0,0.0,4.0,0.0,1.0,1.0,5101.983717943483,0.0,760.0,0.0,0.0,20934.0,0,5,1,91.0,9,1.0,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1565.8776856296613,0.0905812278376619,0.07480069196664094,20934.0,6,3,6,6_1,6_1,6_1_0 -6420,2,44.0,3,0.0,1,112,4,54,64,3.0,0.0,156.83567411066872,3274.3366660328575,0.0,0.0,29317.0,42,71,1,46,201106420,,,526.0,,2.0,0.0,5.0,2.0,4.0,2.3,4393.0404454502495,0.0,2400.0,0.0,0.0,33360.0,1,1,2,157.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3431.172340143526,0.11703695262624164,0.1028528878939906,14504.347826086958,3,2,3_0,3_1_0,3_0_0,3_1_0 -6421,0,39.0,2,0.0,99,112,2,0,34,7.0,0.0,0.0,354.7198054868929,0.0,1911.7013528913908,36341.0,0,20,1,4601,201106421,,,400.0,,1.0,0.0,3.0,2.0,3.0,1.6,1499.5701201521288,0.0,260.0,1100.0,0.0,37517.0,0,1,5,73.0,8,0.0,2,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2266.4211583782835,0.06236540431959174,0.0604105114582265,23448.125,7,4,7,7_1,7_0,7_0_0 -6422,2,72.0,3,0.0,1,111,4,78,77,6.0,0.0,0.0,1268.8054580877322,152.93610823131127,0.0,19957.0,70,60,1,4603,201106422,,,540.0,,0.0,3.0,6.0,0.0,2.0,1.5,1934.262438015967,0.0,930.0,0.0,0.0,29550.0,5,5,1,123.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1421.7415663190434,0.07124024484236326,0.048113081770526006,19700.0,6,3,6,6_1,6_3,6_1_0 -6423,2,57.0,3,0.0,4,111,1,78,78,7.0,0.0,0.0,791.2980276246072,0.0,521.3730962431066,28982.0,71,60,2,4604,201106423,,,,360.0,0.0,3.0,4.0,1.0,3.0,2.0,3535.771606645785,0.0,580.0,300.0,0.0,43145.0,7,7,3,90.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1312.671123867714,0.04529263418217217,0.03042464072007681,21572.5,6,3,6,6_0,6_3,6_0_1 -6424,2,60.0,3,0.0,2,111,2,77,78,4.0,3966.1400228472053,0.0,2079.101844901521,156.41192887293198,3338.6555791327787,33424.0,50,50,1,4605,201106424,,,200.0,,0.0,2.0,5.0,0.0,2.0,1.5,1568.7349037084714,3105.0,340.0,0.0,0.0,23556.0,5,5,1,100.0,6,5.0,3,3,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,9540.309375754436,0.2854329037743668,0.40500549226330596,15704.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -6425,2,52.0,3,0.0,9,111,4,42,38,10.0,0.0,0.0,2046.460416270536,0.0,0.0,78790.0,20,30,1,4606,201106425,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,2183.8589889061445,0.0,1500.0,0.0,0.0,81280.0,1,1,2,105.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2046.460416270536,0.02597360599404158,0.025177908664745768,38704.7619047619,10,5,10,10_1,10_3,10_0_0 -6426,2,60.0,4,0.0,1,300,5,0,54,1.0,63.458240365555284,388.6193694777632,454.31421241205896,135.55700502320772,0.0,11793.0,0,31,1,4609,201106426,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2223.6240259834603,0.0,333.0,0.0,0.0,5730.0,0,4,1,107.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1041.9488272785852,0.08835316096655518,0.18184098207305152,5730.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -6427,2,62.0,2,0.0,5,120,2,78,77,10.0,0.0,0.0,511.615104067634,0.0,1461.5825798015087,38955.0,70,44,1,461,201106427,,,282.0,,0.0,6.0,5.0,0.0,2.0,1.5,3949.254778799619,0.0,375.0,841.0,0.0,62116.0,5,5,1,99.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1973.1976838691426,0.05065325847437152,0.03176633530602651,41410.666666666664,10,5,10,10_1,10_1,10_0_0 -6428,2,87.0,2,0.0,4,300,2,0,71,3.0,2379.684013708323,0.0,545.7227776721429,140.77073598563877,0.0,19391.0,0,70,1,4611,201106428,,,120.0,,0.0,1.0,4.0,0.0,1.0,1.0,2380.190709147076,0.0,400.0,0.0,0.0,13375.0,0,5,1,139.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3066.1775273661046,0.1581237443848231,0.22924691793391436,13375.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -6429,2,60.0,2,0.0,1,111,2,75,74,8.0,3172.912018277764,0.0,1637.1683330164287,0.0,208.54923849724264,65477.0,60,41,1,4612,201106429,,,500.0,,0.0,0.0,6.0,0.0,2.0,1.5,3259.741714307072,0.0,1200.0,120.0,0.0,42191.0,5,5,1,155.0,8,7.0,3,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5018.629589791435,0.07664721336944935,0.11895024033067325,28127.333333333332,8,4,8,8_1,8_3,8_1_0 -6430,2,73.0,3,0.0,8,111,2,77,78,4.0,396.6140022847205,0.0,473.41450963058395,0.0,1976.004034761374,41223.0,60,70,1,4613,201106430,,,268.0,,0.0,3.0,6.0,0.0,2.0,1.5,2327.5792031100177,0.0,347.0,1137.0,0.0,24858.0,5,5,1,130.0,6,4.0,3,3,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2846.0325466766785,0.06903991816890276,0.11449161423592721,16572.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -6431,2,45.0,3,0.0,5,111,2,85,52,3.0,0.0,0.0,818.5841665082144,0.0,1303.4327406077664,36762.0,60,60,2,4617,201106431,,,300.0,,1.0,0.0,4.0,2.0,4.0,2.1,5781.014743992788,0.0,600.0,750.0,0.0,28852.0,6,1,1,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2122.0169071159808,0.057723108294325136,0.07354834698169904,13739.047619047618,3,2,3_0,3_0_0,3_4_0,3_0_0 -6432,2,47.0,2,0.0,6,111,2,63,47,8.0,0.0,0.0,545.7227776721429,0.0,1737.9103208103552,37726.0,50,50,1,4618,201106432,,,765.0,,2.0,0.0,5.0,2.0,4.0,2.1,1187.121708773364,0.0,400.0,1000.0,0.0,52705.0,1,1,1,95.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2283.633098482498,0.0605320759816174,0.04332858549440277,25097.619047619046,8,4,8,8_1,8_2,8_0_0 -6433,2,67.0,2,0.0,5,221,6,77,75,6.0,2221.038412794435,0.0,914.0856526008394,201.5975972140012,0.0,16554.0,70,70,1,462,201106433,,,298.0,,0.0,3.0,5.0,0.0,2.0,1.5,2087.3136404762145,0.0,670.0,0.0,0.0,31438.0,5,5,1,90.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3336.7216626092754,0.20156588514010362,0.10613657556489839,20958.666666666668,6,3,6,6_1,6_1,6_0_0 -6434,2,24.0,3,0.0,1,112,6,67,42,8.0,951.8736054833294,0.0,769.4691165177215,0.0,0.0,23764.0,41,10,1,4620,201106434,,,,630.0,2.0,0.0,5.0,0.0,2.0,1.5,3504.414179566855,0.0,564.0,0.0,0.0,39613.0,1,1,3,115.0,9,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1721.3427220010508,0.07243488983340561,0.04345398535836849,26408.666666666668,8,4,8,8_1,8_0,8_1_0 -6435,0,33.0,1,0.0,99,112,6,55,21,5.0,0.0,0.0,0.0,0.0,0.0,48041.0,60,50,1,4624,201106435,,,,,2.0,0.0,7.0,4.0,6.0,2.7,2699.6166571026497,0.0,0.0,0.0,0.0,49192.0,1,1,5,120.0,7,0.0,4,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,18219.25925925926,5,3,5,5_1,5_0,5_0_0 -6436,2,39.0,3,0.0,2,112,2,46,46,9.0,4204.108424218038,0.0,1023.230208135268,194.64595593075978,0.0,52020.0,20,41,1,4625,201106436,,,,,2.0,0.0,6.0,1.0,3.0,1.8,1859.6600540238658,0.0,750.0,0.0,0.0,52686.0,1,1,2,350.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5421.9845882840655,0.10422884637224271,0.10291129689640637,29270.0,9,5,9,9_1,9_0,9_0_1 -6437,2,61.0,3,0.0,1,111,1,0,55,6.0,0.0,0.0,409.2920832541072,0.0,125.12954309834558,25009.0,0,31,2,4626,201106437,,,,487.0,1.0,0.0,4.0,0.0,1.0,1.0,3874.148007645378,0.0,300.0,72.0,0.0,20980.0,0,4,3,82.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,534.4216263524528,0.021369172152123347,0.025472908787056853,20980.0,6,3,6,6_0,6_4,6_1_0 -6438,0,33.0,3,0.0,99,111,2,53,53,9.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,37060.0,42,50,1,4627,201106438,,,,,2.0,0.0,6.0,0.0,2.0,1.5,4287.392557858909,400.0,0.0,0.0,0.0,52042.0,1,1,5,125.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,638.1826812255044,0.01722025583447125,0.012262839268773383,34694.666666666664,9,5,9,9_1,9_4,9_0_0 -6439,2,76.0,2,0.0,1,111,2,0,86,3.0,2792.1625760844327,0.0,341.0767360450893,86.89551604051776,0.0,24602.0,0,41,1,4628,201106439,,,344.0,,0.0,3.0,7.0,0.0,1.0,1.0,2012.975527152604,0.0,250.0,0.0,0.0,13819.0,0,6,1,165.0,7,6.0,1,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3220.1348281700393,0.1308891483688334,0.2330222757196642,13819.0,3,2,3_0,3_1_0,3_2_0,3_1_0 -6440,2,73.0,1,0.0,1,111,2,0,72,3.0,0.0,0.0,840.5422842643118,0.0,1934.1295983158661,18859.0,0,50,2,4629,201106440,,,100.0,,0.0,1.0,2.0,0.0,1.0,1.0,2920.4896779563874,829.0,300.0,600.0,0.0,13699.0,0,5,1,70.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2774.671882580178,0.14712720094279538,0.20254557869772816,13699.0,3,2,3_0,3_0_0,3_3_0,3_1_0 -6441,2,23.0,3,0.0,99,120,5,0,54,7.0,0.0,832.755791738064,1120.0960011720733,0.0,0.0,28622.0,0,31,1,463,201106441,,,190.0,,3.0,0.0,5.0,2.0,3.0,2.0,1092.809783690691,0.0,821.0,0.0,0.0,45780.0,0,1,1,124.0,0,1.0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1952.8517929101372,0.06822904733806642,0.04265731308235337,22890.0,7,4,7,7_1,7_1,7_0_0 -6442,2,48.0,3,0.0,1,111,1,65,54,6.0,0.0,0.0,589.3805998859143,0.0,156.41192887293198,23325.0,41,31,2,4630,201106442,,,,364.0,2.0,0.0,3.0,0.0,2.0,1.5,3491.1146371185514,0.0,432.0,90.0,0.0,31079.0,4,1,3,42.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,745.7925287588463,0.03197395621688516,0.02399667070236643,20719.333333333332,6,3,6,6_0,6_3,6_1_0 -6443,2,50.0,3,0.0,6,112,4,54,46,8.0,0.0,0.0,1897.7509593548768,0.0,0.0,36586.0,50,50,1,4631,201106443,,,270.0,,2.0,1.0,7.0,1.0,3.0,2.0,1347.5125847832237,0.0,1391.0,0.0,0.0,50167.0,1,1,1,202.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1897.7509593548768,0.05187096045905201,0.03782867142453957,25083.5,8,4,8,8_1,8_0,8_0_0 -6444,1,29.0,5,227.0,2,111,1,42,56,3.0,0.0,0.0,356.08411243107327,0.0,0.0,45262.0,12,31,2,4632,201106444,,,,423.0,2.0,0.0,2.0,0.0,2.0,1.5,3194.816834478817,0.0,261.0,0.0,0.0,21739.0,1,1,3,70.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,356.08411243107327,0.007867175830300766,0.01637996745163408,14492.666666666666,3,2,3_1,3_0_1,3_4_1,3_0_1 -6445,2,68.0,4,0.0,4,400,2,0,71,1.0,1300.8939274938834,0.0,477.50743046312505,95.58506764456953,0.0,8499.0,0,70,1,4633,201106445,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2803.3013478700104,0.0,350.0,0.0,0.0,8910.0,0,5,1,70.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1873.986425601578,0.22049493182745947,0.21032395349063726,8910.0,1,1,1_0,1_1_0,1_0_0,1_0_1 -6446,2,55.0,3,0.0,6,111,4,54,78,8.0,0.0,0.0,2292.035666223,0.0,0.0,38644.0,50,50,1,4635,201106446,,,600.0,556.0,3.0,0.0,4.0,2.0,4.0,2.5,1299.9081312830924,0.0,1680.0,0.0,0.0,62793.0,1,5,3,83.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2292.035666223,0.059311553312881696,0.036501451853279826,25117.2,8,4,8,8_1,8_4,8_0_0 -6447,2,55.0,2,0.0,6,112,2,46,47,9.0,0.0,0.0,2062.8320996007,0.0,225.92834170534618,40122.0,60,50,1,4637,201106447,,,,,2.0,2.0,5.0,0.0,2.0,1.5,3054.055364552494,0.0,1512.0,130.0,0.0,49523.0,1,1,1,90.0,7,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2288.7604413060462,0.05704502371033464,0.04621611052048637,33015.333333333336,9,5,9,9_1,9_1,9_0_0 -6448,2,41.0,3,0.0,1,400,2,52,68,5.0,3864.606838262317,0.0,723.0826804155894,173.79103208103552,0.0,45762.0,20,71,1,4638,201106448,,,450.0,,2.0,0.0,4.0,1.0,3.0,1.8,1877.047050320031,0.0,530.0,0.0,0.0,30228.0,1,1,2,160.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4761.480550758942,0.10404878612733144,0.15751887490932057,16793.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0 -6449,1,42.0,3,277.0,99,111,1,0,52,1.0,1031.1964059402735,0.0,740.818670689934,0.0,0.0,20608.0,0,71,2,4640,201106449,650.0,650.0,,,1.0,0.0,4.0,3.0,4.0,2.3,2684.1801977864347,0.0,543.0,0.0,0.0,19134.0,0,1,3,84.0,7,6.0,2,2,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1772.0150766302077,0.08598675643586023,0.09261080153811058,8319.13043478261,1,1,1_1,1_0_1,1_2_1,1_0_0 -6450,1,47.0,3,400.0,7,111,2,69,63,2.0,0.0,0.0,572.2258396999096,0.0,1182.7765336702275,34772.0,60,60,2,4641,201106450,,,,156.0,3.0,0.0,5.0,4.0,7.0,3.8,1231.521458089639,1100.0,0.0,0.0,0.0,36400.0,1,1,3,126.0,8,6.0,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1755.002373370137,0.05047171210658395,0.04821435091676201,9578.947368421053,1,1,1_1,1_0_1,1_2_1,1_0_0 -6451,2,54.0,3,0.0,1,300,5,0,77,1.0,0.0,0.0,60.02950554393572,83.41969539889705,0.0,6261.0,0,41,1,4642,201106451,,,,,0.0,0.0,1.0,0.0,1.0,1.0,1916.1840237909444,0.0,44.0,0.0,0.0,9000.0,0,4,1,36.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,143.44920094283276,0.02291154782667829,0.015938800104759197,9000.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -6452,2,34.0,1,0.0,9,400,4,46,23,10.0,0.0,0.0,1154.2036747765821,48.661488982689946,0.0,50034.0,20,43,1,4643,201106452,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3082.062259582746,0.0,846.0,0.0,0.0,136776.0,1,1,2,89.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1202.865163759272,0.024040955425496103,0.008794416884243376,75986.66666666667,10,5,10,10_1,10_0,10_0_0 -6453,2,28.0,3,0.0,5,111,1,0,48,7.0,0.0,0.0,375.18440964959825,0.0,0.0,19363.0,0,31,2,4644,201106453,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3627.308733416098,0.0,275.0,0.0,0.0,23469.0,0,1,1,44.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,375.18440964959825,0.01937635746783031,0.015986382447040703,23469.0,7,4,7,7_0,7_3,7_0_0 -6454,2,37.0,3,0.0,2,111,2,21,65,6.0,0.0,0.0,641.2242637647679,0.0,1590.187943541475,33682.0,44,43,1,4645,201106454,,,329.0,601.0,2.0,0.0,4.0,2.0,4.0,2.1,2203.2737458442475,0.0,470.0,915.0,0.0,44300.0,1,1,3,75.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2231.412207306243,0.06624939752111642,0.05037047872023122,21095.238095238095,6,3,6,6_1,6_2,6_0_1 -6455,2,43.0,2,0.0,1,111,2,34,33,10.0,0.0,138.792631956344,511.615104067634,0.0,2207.146107429151,79044.0,10,10,1,4646,201106455,,,193.0,,2.0,0.0,7.0,2.0,4.0,2.1,1191.850516162257,0.0,375.0,1270.0,0.0,115902.0,1,1,3,160.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2857.553843453129,0.036151432663492855,0.024654914008844793,55191.42857142857,10,5,10,10_1,10_3,10_1_0 -6456,2,58.0,2,0.0,1,111,2,74,34,10.0,0.0,0.0,622.1239665462429,0.0,4101.468357112439,61444.0,20,10,1,4647,201106456,,,480.0,,1.0,3.0,7.0,0.0,2.0,1.5,1898.3236530621461,0.0,456.0,2360.0,0.0,96262.0,5,1,1,111.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4723.592323658681,0.07687638050352649,0.0490701660432848,64174.666666666664,10,5,10,10_1,10_4,10_1_0 -6457,2,74.0,2,0.0,5,111,1,0,75,8.0,0.0,0.0,369.433932878172,0.0,667.7311158265557,27261.0,0,30,2,4648,201106457,,,,,0.0,5.0,6.0,0.0,1.0,1.0,3011.796881570089,621.0,34.0,0.0,0.0,27504.0,0,5,1,132.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1037.1650487047277,0.0380457447894328,0.03770960764633245,27504.0,8,4,8,8_0,8_3,8_0_0 -6458,2,25.0,2,0.0,8,120,2,54,43,9.0,0.0,0.0,401.10624158902505,0.0,531.8005581679687,52121.0,10,31,2,4649,201106458,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1744.236178326937,0.0,294.0,306.0,0.0,43669.0,1,1,3,65.0,0,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,932.9067997569937,0.017898866095374104,0.021363136315395215,29112.666666666668,9,5,9,9_0,9_0,9_0_0 -6459,1,37.0,2,526.0,8,111,2,54,62,1.0,0.0,0.0,545.7227776721429,0.0,1911.7013528913908,44592.0,20,10,2,4650,201106459,,,350.0,280.0,2.0,0.0,5.0,3.0,5.0,2.4,1824.497925792422,0.0,400.0,1100.0,0.0,20368.0,4,4,3,100.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,2457.4241305635337,0.0551090807894585,0.12065122400645786,8486.666666666668,1,1,1_1,1_0_1,1_2_1,1_0_0 -6460,2,42.0,3,0.0,6,112,4,63,43,7.0,0.0,0.0,2046.460416270536,0.0,0.0,31432.0,50,33,1,4651,201106460,,,500.0,,2.0,0.0,5.0,1.0,3.0,1.8,1323.5728829261766,0.0,1500.0,0.0,0.0,40466.0,1,1,2,89.0,8,2.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2046.460416270536,0.06510754696712064,0.05057234261529521,22481.11111111111,7,4,7,7_1,7_1,7_0_0 -6461,2,52.0,2,0.0,1,111,1,85,37,10.0,0.0,0.0,358.9416630844887,0.0,2876.0773359846226,55087.0,10,10,2,4653,201106461,,,,,1.0,1.0,4.0,0.0,2.0,1.5,2683.3963653618134,690.0,0.0,1228.0,0.0,208720.0,6,1,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3235.0189990691115,0.0587256339802333,0.015499324449353735,139146.66666666666,10,5,10,10_0,10_4,10_1_0 -6462,1,42.0,4,150.0,7,111,2,0,54,1.0,0.0,0.0,718.9897595830482,0.0,618.6960742084865,45471.0,0,42,2,4656,201106462,,,353.0,415.0,1.0,0.0,4.0,3.0,4.0,2.5,2441.4706289515093,0.0,527.0,356.0,0.0,23116.0,0,1,3,90.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1337.6858337915346,0.02941843886854335,0.05786839564766978,9246.4,1,1,1_1,1_0_1,1_3_1,1_0_0 -6463,0,85.0,3,0.0,2,111,1,78,78,3.0,0.0,0.0,654.8673332065715,0.0,333.6787815955882,15800.0,71,71,2,4658,201106463,,,390.0,,0.0,4.0,4.0,0.0,2.0,1.5,6324.187810751974,0.0,480.0,192.0,0.0,20988.0,5,6,5,75.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,988.5461148021598,0.06256620979760505,0.047100539108164655,13992.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -6464,2,63.0,1,0.0,1,120,2,75,74,9.0,1935.4763311494362,185.98212682150094,604.3879762718983,104.27461924862132,0.0,36038.0,20,10,1,466,201106464,,,270.0,,0.0,2.0,5.0,0.0,2.0,1.5,1695.3664667868447,0.0,443.0,0.0,0.0,54754.0,5,5,1,150.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2830.121053491457,0.07853157926331808,0.05168793245226754,36502.666666666664,9,5,9,9_1,9_0,9_1_0 -6465,1,18.0,2,215.0,8,111,1,0,84,1.0,0.0,0.0,545.7227776721429,0.0,0.0,16443.0,0,41,2,4660,201106465,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4222.577813607703,0.0,400.0,0.0,0.0,2625.0,0,3,3,21.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,545.7227776721429,0.033188759817073706,0.20789439149414968,2625.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -6466,2,87.0,3,0.0,2,111,1,0,86,7.0,1110.5192063972174,0.0,368.36287492869644,173.79103208103552,0.0,10628.0,0,70,2,4661,201106466,700.0,700.0,200.0,,0.0,3.0,3.0,0.0,1.0,1.0,2619.910130398565,0.0,270.0,0.0,0.0,24125.0,0,6,3,80.0,6,5.0,1,8,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1652.6731134069496,0.15550179840110553,0.06850458501168703,24125.0,7,4,7,7_0,7_2,7_0_1 -6467,2,65.0,2,0.0,9,111,2,75,74,10.0,0.0,0.0,648.0457984856697,0.0,2075.064923047564,82684.0,33,31,1,4663,201106467,,,426.0,,0.0,1.0,4.0,0.0,2.0,1.5,1739.8945330940273,0.0,475.0,1194.0,0.0,63568.0,5,5,2,140.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2723.110721533234,0.03293394999677367,0.04283775990330409,42378.666666666664,10,5,10,10_1,10_3,10_0_0 -6468,2,63.0,2,0.0,6,111,2,52,77,10.0,0.0,0.0,1343.9422487558088,0.0,2276.53525240009,51437.0,70,70,1,4664,201106468,,,200.0,,1.0,2.0,5.0,0.0,2.0,1.5,3090.7401110624796,905.0,640.0,750.0,0.0,60419.0,1,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3620.4775011558986,0.07038663804568498,0.05992283058567501,40279.333333333336,10,5,10,10_1,10_4,10_0_0 -6469,2,76.0,3,0.0,1,400,4,77,78,5.0,0.0,0.0,2319.3218051066074,104.27461924862132,0.0,13419.0,50,70,1,4665,201106469,,,298.0,,0.0,4.0,3.0,0.0,2.0,1.5,1654.3947599841945,0.0,1700.0,0.0,0.0,27690.0,5,5,1,60.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2423.596424355229,0.18060931696514113,0.08752605360618378,18460.0,5,3,5,5_1,5_0,5_1_0 -6470,2,54.0,3,0.0,2,111,1,67,56,8.0,0.0,0.0,57.30089165557501,0.0,126.86745341915594,22451.0,71,71,2,4666,201106470,,,,392.0,2.0,0.0,1.0,1.0,3.0,1.8,3517.620430817882,0.0,42.0,73.0,0.0,50890.0,1,1,3,36.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,184.16834507473095,0.008203124363045341,0.0036189495986388475,28272.222222222223,8,4,8,8_0,8_4,8_0_1 -6471,2,84.0,3,0.0,1,112,5,0,71,1.0,0.0,138.792631956344,777.6549581828036,255.47281715912223,0.0,21403.0,0,70,1,4667,201106471,,,,,0.0,2.0,8.0,0.0,1.0,1.0,2878.898608922947,0.0,570.0,0.0,0.0,8360.0,0,5,1,252.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1171.92040729827,0.054754959926097746,0.14018186690170695,8360.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -6472,2,34.0,1,0.0,1,221,2,85,37,6.0,2776.298015993044,0.0,654.8673332065715,132.081184381587,0.0,30526.0,43,20,1,4668,201106472,,,185.0,,1.0,0.0,6.0,2.0,4.0,2.1,3765.157171638508,0.0,480.0,0.0,0.0,40090.0,6,1,3,130.0,1,1.0,4,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3563.246533581202,0.11672824915092715,0.08888118068299332,19090.47619047619,5,3,5,5_1,5_1,5_1_0 -6473,2,75.0,3,0.0,1,112,5,0,71,1.0,0.0,832.755791738064,682.1534720901786,0.0,0.0,6279.0,0,70,1,4669,201106473,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2171.6285653720133,0.0,500.0,0.0,0.0,8800.0,0,5,1,100.0,4,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1514.9092638282427,0.2412660079356972,0.17214877998048214,8800.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -6474,2,56.0,2,0.0,4,111,1,46,47,10.0,0.0,0.0,859.5133748336251,0.0,981.9193312578507,43542.0,41,50,2,467,201106474,,,,,2.0,1.0,4.0,0.0,2.0,1.5,3789.0822274665297,0.0,630.0,565.0,0.0,68224.0,1,1,1,85.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1841.4327060914757,0.042290953701976844,0.02699098126892993,45482.666666666664,10,5,10,10_0,10_3,10_0_1 -6475,2,49.0,1,0.0,1,111,2,43,35,10.0,0.0,0.0,1637.1683330164287,0.0,3475.8206416207104,149421.0,33,12,1,4671,201106475,,,1000.0,,2.0,0.0,8.0,3.0,5.0,3.0,1871.0387064407964,0.0,1200.0,2000.0,0.0,269688.0,1,1,2,205.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5112.988974637139,0.03421867725846527,0.01895890426951566,89896.0,10,5,10,10_1,10_4,10_1_0 -6476,2,47.0,3,0.0,5,112,2,52,62,5.0,1405.6000240970495,0.0,818.5841665082144,0.0,0.0,67168.0,50,50,1,4672,201106476,,,425.0,,2.0,0.0,4.0,2.0,4.0,2.3,1274.169325868489,0.0,600.0,0.0,0.0,43108.0,1,1,1,80.0,7,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2224.184190605264,0.03311374747804407,0.05159562472407127,18742.608695652176,5,3,5,5_1,5_1,5_0_0 -6477,2,59.0,2,0.0,1,120,2,33,33,10.0,1305.6532955213,0.0,682.1534720901786,145.98446694806984,0.0,68859.0,30,31,1,4674,201106477,,,210.0,,2.0,3.0,5.0,0.0,2.0,1.5,2420.385401873021,0.0,500.0,0.0,0.0,66833.0,1,1,1,116.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2133.7912345595482,0.030987833610124287,0.031927210129121066,44555.333333333336,10,5,10,10_1,10_0,10_1_0 -6478,2,56.0,3,0.0,6,400,4,0,22,7.0,0.0,0.0,2735.435423081616,0.0,0.0,37752.0,0,50,1,4680,201106478,,,,,1.0,0.0,4.0,1.0,2.0,1.5,2360.761010186939,0.0,2005.0,0.0,0.0,34141.0,0,1,1,100.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2735.435423081616,0.07245802667624539,0.08012171357258475,22760.666666666668,7,4,7,7_1,7_0,7_0_0 -6479,2,59.0,3,0.0,3,111,2,0,77,8.0,0.0,0.0,757.1903540200983,0.0,1584.974212579044,25670.0,0,42,2,4681,201106479,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2886.426612562924,0.0,555.0,912.0,0.0,26434.0,0,7,1,67.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2342.1645665991423,0.09124131541095218,0.08860424326999858,26434.0,8,4,8,8_0,8_3,8_0_1 -6480,2,42.0,2,0.0,3,111,1,0,42,8.0,0.0,0.0,34.10767360450893,0.0,8.689551604051776,31160.0,0,20,2,4682,201106480,,,,1.0,1.0,0.0,2.0,0.0,1.0,1.0,3610.3819554152587,0.0,25.0,5.0,0.0,25514.0,0,1,3,38.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,42.797225208560704,0.001373466791032115,0.0016774016308129147,25514.0,8,4,8,8_0,8_4,8_0_1 -6481,2,52.0,3,0.0,6,111,4,68,63,4.0,0.0,0.0,2046.460416270536,243.30744491344973,0.0,48070.0,71,50,1,4683,201106481,,,330.0,,2.0,1.0,4.0,0.0,2.0,1.5,2601.854141405294,0.0,1500.0,0.0,0.0,23582.0,1,1,3,90.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2289.7678611839856,0.04763403081306398,0.09709811980256067,15721.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_0 -6482,2,50.0,3,0.0,4,111,1,78,56,4.0,0.0,0.0,518.4366387885358,0.0,451.85668341069237,13996.0,50,60,2,4684,201106482,,,250.0,271.0,1.0,4.0,3.0,0.0,2.0,1.5,2246.4047715604215,0.0,380.0,260.0,0.0,23127.0,5,1,3,70.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,970.2933221992282,0.06932647343521207,0.041955001608476164,15418.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -6483,1,63.0,4,68.0,99,111,1,78,78,2.0,0.0,0.0,390.1917860355822,0.0,460.5462350147441,10211.0,71,71,2,4685,201106483,,,,244.0,0.0,1.0,4.0,1.0,3.0,2.0,2696.482701098353,0.0,286.0,265.0,0.0,19046.0,5,5,3,60.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,850.7380210503263,0.08331583792481895,0.04466754284628407,9523.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -6484,1,35.0,5,39.0,8,300,6,52,62,7.0,4759.368027416646,0.0,1821.349770480777,0.0,0.0,20074.0,42,60,1,4686,201106484,,,,400.0,2.0,0.0,4.0,0.0,2.0,1.5,2278.1217143069466,0.0,1335.0,0.0,0.0,33204.0,1,1,3,110.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,6580.717797897423,0.32782294499837716,0.1981905131278588,22136.0,7,4,7,7_1,7_0,7_0_0 -6485,2,59.0,3,0.0,2,300,5,75,77,7.0,0.0,485.77421184720396,1364.3069441803573,0.0,0.0,53060.0,70,71,1,4687,201106485,,,288.0,,0.0,2.0,4.0,0.0,2.0,1.5,2756.694681792894,0.0,1000.0,0.0,0.0,34176.0,5,5,1,85.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1850.0811560275613,0.03486771873402867,0.054133928956798964,22784.0,7,4,7,7_1,7_0,7_0_1 -6486,2,77.0,3,0.0,5,111,2,0,72,3.0,0.0,0.0,3069.6906244058036,0.0,0.0,11981.0,0,71,1,4689,201106486,,,144.0,,0.0,3.0,5.0,0.0,1.0,1.0,3077.499676859521,0.0,2250.0,0.0,0.0,13403.0,0,5,1,150.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3069.6906244058036,0.25621322297018645,0.22903011448226543,13403.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -6487,2,65.0,3,0.0,1,212,2,47,78,5.0,1903.7472109666587,0.0,770.8334234619018,86.89551604051776,0.0,30763.0,60,71,1,469,201106487,,,292.0,,2.0,1.0,5.0,1.0,3.0,2.0,1812.9535451246286,0.0,565.0,0.0,0.0,35442.0,1,5,2,90.0,1,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2761.476150469078,0.08976615253613361,0.07791535890945991,17721.0,5,3,5,5_1,5_0,5_1_0 -6488,2,34.0,2,0.0,9,112,2,21,54,5.0,0.0,0.0,150.0737638598393,2606.865481215533,0.0,41121.0,43,43,1,4691,201106488,,,180.0,,2.0,0.0,5.0,2.0,4.0,2.1,2585.1315511459566,0.0,110.0,0.0,0.0,38782.0,1,1,2,176.0,4,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2756.939245075372,0.06704455740559258,0.07108811420440854,18467.619047619046,5,3,5,5_1,5_0,5_0_0 -6489,2,64.0,1,0.0,7,112,5,77,75,8.0,0.0,471.89494865156956,1289.2700622504376,46.92357866187959,0.0,31566.0,70,31,1,4692,201106489,,,45.0,,0.0,3.0,7.0,0.0,2.0,1.5,2207.386939357818,0.0,945.0,0.0,0.0,37324.0,5,5,1,170.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1808.088589563887,0.05727962331508227,0.048443055127100176,24882.666666666668,7,4,7,7_1,7_2,7_0_0 -6490,2,76.0,3,0.0,5,400,2,71,71,3.0,0.0,34.698157989086,200.55312079451252,182.4805836850873,0.0,22803.0,70,70,1,4693,201106490,,,116.0,,0.0,3.0,6.0,0.0,2.0,1.5,1413.881700654653,0.0,147.0,0.0,0.0,21546.0,5,5,5,150.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,417.73186246868585,0.018319162499174927,0.019387907846871152,14364.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -6491,2,58.0,3,0.0,3,111,1,85,42,1.0,0.0,0.0,546.2155742590046,0.0,1129.0139639579445,28211.0,60,41,2,4694,201106491,,,,560.0,1.0,3.0,5.0,3.0,5.0,3.0,2799.0885233250997,1050.0,0.0,0.0,0.0,21809.0,6,1,3,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1675.229538216949,0.059382139527735606,0.07681367959177171,7269.666666666667,1,1,1_0,1_0_0,1_4_0,1_0_1 -6492,2,35.0,2,0.0,99,112,4,0,43,10.0,0.0,0.0,1910.0297218525002,0.0,0.0,25945.0,0,33,2,4697,201106492,,,380.0,,1.0,0.0,2.0,0.0,1.0,1.0,3490.8329563127677,0.0,1400.0,0.0,0.0,38840.0,0,1,3,35.0,10,3.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1910.0297218525002,0.07361841286770092,0.04917687234429712,38840.0,10,5,10,10_0,10_1,10_0_0 -6493,1,68.0,3,383.0,1,111,2,85,78,1.0,0.0,0.0,780.3079632271495,0.0,1612.877091368492,7684.0,71,71,1,4698,201106493,,,,57.0,0.0,1.0,6.0,2.0,4.0,2.5,2496.948125552951,1500.0,0.0,0.0,0.0,20306.0,6,5,3,90.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2393.1850545956413,0.3114504235548726,0.11785605508695171,8122.4,1,1,1_1,1_1_1,1_3_1,1_1_0 -6494,2,58.0,3,0.0,5,112,2,77,78,3.0,0.0,0.0,1506.1948663751143,0.0,0.0,15369.0,70,71,1,4701,201106494,,,360.0,,0.0,5.0,5.0,0.0,2.0,1.5,4456.621498796793,0.0,1104.0,0.0,0.0,21424.0,6,5,1,125.0,5,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1506.1948663751143,0.09800213848494464,0.07030409197045903,14282.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -6495,2,48.0,3,0.0,1,212,4,43,34,9.0,0.0,0.0,2357.4246498787556,114.70208117348345,222.57703860885192,67418.0,44,31,1,4702,201106495,,,186.0,,2.0,2.0,4.0,0.0,2.0,1.5,1988.3149719034627,207.0,1649.0,0.0,0.0,46916.0,1,1,1,100.0,3,0.0,3,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2694.703769661091,0.03997009359015531,0.05743677571960719,31277.333333333332,9,5,9,9_1,9_0,9_1_0 -6496,2,42.0,4,0.0,1,221,4,0,47,9.0,0.0,0.0,1568.9529858074109,79.94387475727635,0.0,19133.0,0,42,1,4703,201106496,,,,,1.0,2.0,5.0,0.0,1.0,1.0,4944.354263467905,0.0,1150.0,0.0,0.0,31000.0,0,1,2,90.0,1,1.0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1648.8968605646871,0.08618077983403999,0.053190221308538295,31000.0,9,5,9,9_1,9_1,9_1_0 -6497,2,50.0,3,0.0,2,111,2,37,34,7.0,0.0,0.0,613.9381248811608,0.0,3873.8021050862817,90825.0,10,10,1,4704,201106497,,,500.0,,2.0,0.0,8.0,3.0,5.0,3.0,972.2298651840025,0.0,450.0,2229.0,0.0,70283.0,1,1,2,150.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4487.740229967442,0.04941084756363823,0.0638524284673028,23427.666666666668,7,4,7,7_1,7_2,7_0_1 -6498,1,37.0,3,53.0,1,111,2,62,52,4.0,1656.260073540993,0.0,1501.2780955389992,0.0,345.1556975528573,52441.0,43,33,2,4705,201106498,,,,267.0,2.0,0.0,4.0,2.0,4.0,2.1,2785.5691899569642,321.0,978.0,0.0,0.0,32066.0,4,1,3,60.0,4,4.0,4,7,1,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,3502.6938666328497,0.0667930410677304,0.10923388843737447,15269.52380952381,4,2,4_1,4_0_1,4_2_1,4_1_0 -6499,2,56.0,2,0.0,4,112,2,46,43,10.0,4442.07682558887,0.0,1637.1683330164287,0.0,0.0,80219.0,50,33,1,4706,201106499,,,,,4.0,2.0,8.0,2.0,4.0,2.5,1466.4027433064996,0.0,1200.0,0.0,0.0,133857.0,1,1,2,281.0,10,0.0,4,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,6079.2451586052985,0.07578310822380357,0.04541596747727275,53542.8,10,5,10,10_1,10_0,10_0_1 -6500,2,68.0,1,0.0,4,112,6,75,74,10.0,0.0,0.0,4799.631829626497,3402.8284081466754,0.0,79865.0,42,10,1,4707,201106500,,,340.0,,0.0,1.0,5.0,0.0,2.0,1.5,1867.3170610096981,0.0,3518.0,0.0,0.0,65218.0,7,5,1,180.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,8202.460237773172,0.10270406608368086,0.12576988312694612,43478.666666666664,10,5,10,10_1,10_0,10_0_1 -6501,2,37.0,3,0.0,9,112,4,54,65,5.0,0.0,0.0,1631.7111052397072,0.0,0.0,41930.0,42,60,1,4709,201106501,,,120.0,,2.0,0.0,4.0,3.0,5.0,2.4,1471.9919148784734,0.0,1196.0,0.0,0.0,43056.0,1,1,2,87.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1631.7111052397072,0.03891512294871708,0.03789741511612103,17940.0,5,3,5,5_1,5_0,5_0_0 -6502,2,52.0,1,0.0,6,111,2,48,43,9.0,0.0,0.0,859.5133748336251,0.0,1911.7013528913908,83017.0,50,33,1,471,201106502,,,600.0,,3.0,1.0,5.0,1.0,3.0,2.0,1618.123501100842,0.0,630.0,1100.0,0.0,58572.0,1,1,1,120.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2771.214727725016,0.03338129211757852,0.04731296059081158,29286.0,9,5,9,9_1,9_2,9_0_0 -6503,0,22.0,1,0.0,99,111,4,0,84,1.0,0.0,0.0,982.3009998098572,0.0,0.0,25287.0,0,20,2,4710,201106503,,,,,0.0,0.0,4.0,0.0,2.0,1.5,3772.0027633888158,0.0,720.0,0.0,0.0,12000.0,0,3,5,85.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,982.3009998098572,0.03884608691461451,0.08185841665082143,8000.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -6504,2,54.0,3,0.0,6,112,5,68,64,4.0,0.0,24.98267375214192,1910.0297218525002,97.32297796537989,0.0,26219.0,70,50,1,4715,201106504,,,,,2.0,1.0,4.0,0.0,2.0,1.5,1275.8069616416462,0.0,1400.0,0.0,0.0,24881.0,1,1,2,77.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2032.335373570022,0.07751384009954697,0.08168222232104907,16587.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0 -6505,2,75.0,3,0.0,5,111,1,56,86,5.0,0.0,0.0,1091.2900195097454,0.0,834.3950819346333,18033.0,50,50,2,4717,201106505,,,,,1.0,3.0,4.0,0.0,2.0,1.5,1535.5852745577029,776.0,504.0,0.0,0.0,28220.0,5,5,2,81.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1925.6851014443787,0.10678672996419779,0.06823830976060874,18813.333333333332,5,3,5,5_0,5_3,5_0_0 -6506,2,53.0,3,0.0,1,111,2,75,52,7.0,0.0,0.0,526.6224804536179,0.0,1348.6184089488356,22148.0,41,41,1,4718,201106506,,,210.0,,1.0,2.0,3.0,0.0,2.0,1.5,2578.3166842978285,0.0,386.0,776.0,0.0,35428.0,4,1,2,96.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1875.2408894024534,0.08466863325819277,0.05293104012087765,23618.666666666668,7,4,7,7_1,7_3,7_1_0 -6507,2,54.0,3,0.0,1,112,2,0,77,4.0,1745.1016100527704,0.0,1364.3069441803573,60.82686122836243,0.0,22196.0,0,70,1,4719,201106507,,,80.0,,0.0,1.0,3.0,0.0,1.0,1.0,2346.1075914487087,0.0,1000.0,0.0,0.0,16305.0,0,7,1,40.0,6,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3170.23541546149,0.14282913207161155,0.1944333281485121,16305.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -6508,2,71.0,3,0.0,6,111,2,0,75,9.0,0.0,971.5484236944079,2292.035666223,0.0,0.0,50630.0,0,33,1,472,201106508,,,193.0,,1.0,0.0,5.0,1.0,2.0,1.5,1882.315556407208,0.0,1680.0,0.0,0.0,54261.0,0,5,1,142.0,9,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3263.584089917408,0.06445949219667012,0.060146036562492546,36174.0,9,5,9,9_1,9_3,9_0_0 -6509,2,63.0,3,0.0,5,112,1,52,75,8.0,0.0,0.0,1125.5532289487946,0.0,0.0,23071.0,71,50,1,4721,201106509,,,80.0,,1.0,1.0,5.0,0.0,2.0,1.5,2912.6578862263577,0.0,825.0,0.0,0.0,38850.0,1,5,1,120.0,9,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1125.5532289487946,0.04878649512152896,0.02897176908491106,25900.0,8,4,8,8_1,8_0,8_0_0 -6510,2,37.0,3,0.0,8,120,6,43,21,3.0,0.0,0.0,204.6460416270536,90.37133668213848,0.0,61922.0,42,43,1,4722,201106510,,,,,2.0,0.0,7.0,3.0,5.0,2.6,2998.101761684156,0.0,150.0,0.0,0.0,34797.0,1,1,2,260.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,295.01737830919205,0.0047643386568455804,0.00847824175386361,13383.461538461537,3,2,3_0,3_1_0,3_0_0,3_0_0 -6511,2,56.0,3,0.0,6,300,4,52,65,5.0,0.0,0.0,2251.1064578975893,145.98446694806984,0.0,55427.0,50,50,1,4723,201106511,,,,,3.0,2.0,4.0,1.0,3.0,2.0,1398.5296646844624,0.0,1650.0,0.0,0.0,33718.0,1,1,1,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2397.090924845659,0.04324771185244843,0.07109232234550267,16859.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -6512,2,75.0,2,0.0,5,111,6,77,75,5.0,214.1715612337491,0.0,1234.6977844832234,291.9689338961397,0.0,26239.0,71,70,1,4724,201106512,,,442.0,,0.0,3.0,4.0,0.0,2.0,1.5,2481.1002995787276,0.0,905.0,0.0,0.0,26905.0,5,5,1,90.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1740.8382796131123,0.06634545065029583,0.06470315107277876,17936.666666666668,5,3,5,5_1,5_3,5_0_0 -6513,2,85.0,3,0.0,8,112,2,0,77,7.0,0.0,0.0,294.69029994295715,0.0,1310.384381891008,20240.0,0,50,2,4725,201106513,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3377.6521768642556,0.0,216.0,754.0,0.0,22931.0,0,5,1,58.0,10,3.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1605.074681833965,0.07930210878626309,0.06999584326169661,22931.0,7,4,7,7_0,7_1,7_0_0 -6514,2,71.0,2,0.0,99,111,2,75,75,10.0,0.0,0.0,2040.8476526592738,0.0,2224.7233385829177,34447.0,41,41,1,4728,201106514,,,250.0,,0.0,1.0,4.0,0.0,2.0,1.5,2743.002749416289,776.0,1200.0,800.0,0.0,57764.0,5,5,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4265.570991242192,0.12382997042535465,0.07384479937750488,38509.333333333336,10,5,10,10_1,10_3,10_0_0 -6515,1,40.0,5,378.0,8,112,6,63,56,2.0,329.9828499008875,0.0,1121.4603081162536,0.0,0.0,17419.0,50,71,2,4729,201106515,,,,,2.0,0.0,4.0,4.0,6.0,2.9,3306.952939192853,0.0,822.0,0.0,0.0,30423.0,4,1,3,88.0,9,3.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1451.443158017141,0.08332528606792244,0.047708745291954804,10490.689655172415,2,1,2_1,2_0_1,2_1_1,2_0_0 -6516,2,34.0,3,0.0,9,300,2,43,21,9.0,1311.9991195578555,0.0,941.3717914844465,0.0,0.0,61747.0,33,50,1,473,201106516,,,,,2.0,0.0,7.0,2.0,4.0,2.1,2624.405858996616,0.0,690.0,0.0,0.0,74480.0,1,1,2,190.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2253.370911042302,0.036493609584956385,0.0302547114801598,35466.666666666664,9,5,9,9_1,9_0,9_0_0 -6517,2,62.0,2,0.0,5,112,2,56,72,5.0,1269.1648073111057,0.0,1126.7513344742265,46.92357866187959,363.43497125503353,19066.0,50,50,1,4731,201106517,,,220.0,,1.0,2.0,4.0,0.0,2.0,1.5,1835.1816059838993,338.0,697.0,0.0,0.0,27910.0,1,5,1,100.0,6,0.0,3,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2806.274691702245,0.14718738548737256,0.10054728383024884,18606.666666666668,5,3,5,5_1,5_0,5_0_0 -6518,2,40.0,1,0.0,8,112,2,38,38,9.0,0.0,377.5159589212557,695.7965415319821,0.0,1077.5043989024202,45207.0,12,12,1,4733,201106518,,,451.0,,2.0,0.0,6.0,2.0,4.0,2.1,2006.6857158858343,0.0,510.0,620.0,0.0,70032.0,1,1,2,160.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2150.8168993556583,0.04757707654468685,0.030711915972065032,33348.57142857143,9,5,9,9_1,9_1,9_0_0 -6519,2,39.0,1,0.0,7,111,2,0,48,9.0,0.0,0.0,366.9985679845161,0.0,1390.3282566482842,21835.0,0,20,2,4734,201106519,,,80.0,,1.0,0.0,3.0,0.0,1.0,1.0,2915.8211624133482,0.0,269.0,800.0,0.0,29385.0,0,1,1,60.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1757.3268246328003,0.08048210783754524,0.05980353325277524,29385.0,9,5,9,9_0,9_2,9_0_0 -6520,2,33.0,3,0.0,4,111,1,85,21,1.0,0.0,0.0,682.1534720901786,0.0,868.9551604051776,33455.0,60,50,2,4735,201106520,,,,430.0,1.0,0.0,3.0,0.0,2.0,1.5,3575.8391823552984,0.0,500.0,500.0,0.0,11600.0,6,1,3,57.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1551.1086324953562,0.046364030264395645,0.13371626142201345,7733.333333333333,1,1,1_0,1_0_0,1_4_0,1_0_1 -6521,2,58.0,3,0.0,9,112,6,0,64,6.0,475.9368027416647,0.0,545.7227776721429,104.27461924862132,0.0,31013.0,0,71,1,4737,201106521,,,280.0,,1.0,6.0,4.0,0.0,1.0,1.0,3118.313832379583,0.0,400.0,0.0,0.0,19210.0,0,1,1,85.0,9,2.0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1125.934199662429,0.03630523327838096,0.05861187921199526,19210.0,5,3,5,5_1,5_1,5_0_0 -6522,2,32.0,5,0.0,3,111,1,0,47,5.0,0.0,0.0,315.2444171437684,0.0,651.6023449128708,8287.0,0,71,2,4739,201106522,,,,230.0,1.0,0.0,2.0,0.0,1.0,1.0,3189.962012829327,606.0,0.0,0.0,0.0,17960.0,0,1,3,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,966.8467620566391,0.11667029830537458,0.05383333864457902,17960.0,5,3,5,5_0,5_4,5_0_1 -6523,2,45.0,2,0.0,8,111,2,42,43,10.0,0.0,0.0,642.5691287296307,0.0,1560.6682340809068,91483.0,31,12,1,4740,201106523,,,324.0,,2.0,2.0,5.0,1.0,3.0,2.0,1824.9988965082327,97.0,434.0,838.0,0.0,84093.0,1,1,2,110.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2203.2373628105374,0.02408357140463843,0.026200009071034897,42046.5,10,5,10,10_1,10_2,10_0_0 -6524,2,33.0,2,0.0,8,111,2,45,43,7.0,0.0,0.0,589.3805998859143,0.0,1397.2798979315255,23860.0,31,31,1,4741,201106524,,,220.0,,2.0,0.0,5.0,2.0,4.0,2.1,2524.244688150115,0.0,432.0,804.0,0.0,46562.0,1,1,1,90.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1986.6604978174398,0.08326322287583571,0.04266699235035952,22172.38095238095,7,4,7,7_1,7_3,7_0_0 -6525,1,62.0,4,244.0,6,111,2,0,72,4.0,0.0,0.0,349.78332278730335,0.0,769.2309256133354,16761.0,0,70,1,4745,201106525,,,80.0,,0.0,1.0,2.0,0.0,1.0,1.0,1437.4509156017589,279.0,150.0,270.0,0.0,14748.0,0,5,3,57.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1119.0142484006387,0.06676297645729007,0.07587566099814474,14748.0,3,2,3_1,3_1_1,3_2_1,3_0_0 -6526,2,77.0,2,0.0,1,111,2,75,75,9.0,0.0,0.0,2018.6855290624205,0.0,1112.8851930442595,54325.0,60,60,2,4747,201106526,,,,,0.0,0.0,3.0,0.0,2.0,1.5,2893.2577596765627,1035.0,1085.0,0.0,0.0,51303.0,5,5,1,57.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3131.57072210668,0.057645112233901154,0.061040693957598584,34202.0,9,5,9,9_0,9_4,9_1_0 -6527,2,72.0,4,0.0,6,111,2,77,78,2.0,0.0,249.82673752141918,1669.9116996767573,208.54923849724264,0.0,27301.0,70,71,1,4748,201106527,,,185.0,,0.0,1.0,4.0,0.0,2.0,1.5,2092.6323902771587,0.0,1224.0,0.0,0.0,16478.0,5,5,1,85.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2128.2876756954192,0.07795639997419213,0.129159344319421,10985.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0 -6528,2,62.0,3,0.0,4,111,2,77,77,8.0,0.0,0.0,1139.3947664461275,0.0,2615.302216044352,38072.0,50,50,1,475,201106528,,,355.0,,0.0,2.0,6.0,0.0,2.0,1.5,1230.5833611918065,1115.0,410.0,815.0,0.0,40344.0,5,5,1,100.0,6,4.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3754.6969824904795,0.09862095457266441,0.09306704794989291,26896.0,8,4,8,8_1,8_2,8_0_1 -6529,2,74.0,3,0.0,7,111,4,77,78,5.0,0.0,0.0,1735.6158032639476,0.0,795.6860317417894,24970.0,50,50,1,4751,201106529,,,315.0,,0.0,1.0,5.0,0.0,2.0,1.5,1467.2241667764622,740.0,990.0,0.0,0.0,25240.0,5,5,1,110.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2531.301835005737,0.10137372186646924,0.10028929615712111,16826.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_0 -6530,2,62.0,2,0.0,2,111,2,0,75,6.0,0.0,0.0,511.615104067634,0.0,2815.4147197127754,35991.0,0,70,1,4752,201106530,,,152.0,,0.0,2.0,4.0,0.0,1.0,1.0,1114.258601992844,0.0,375.0,1620.0,0.0,19564.0,0,5,3,73.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3327.0298237804095,0.09244060525632546,0.17005877242794978,19564.0,6,3,6,6_1,6_2,6_0_1 -6531,2,73.0,3,0.0,1,111,5,0,78,3.0,0.0,1110.341055650752,504.79356934673217,90.37133668213848,0.0,12972.0,0,50,1,4754,201106531,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2743.0836299728307,0.0,370.0,0.0,0.0,13954.0,0,5,1,30.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1705.5059616796225,0.1314759452420307,0.12222344572736295,13954.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -6532,2,56.0,3,0.0,7,111,2,52,37,10.0,0.0,0.0,716.2611456946876,0.0,1411.1831804980084,29265.0,31,41,1,4755,201106532,,,,,2.0,2.0,5.0,0.0,2.0,1.5,3333.361702574082,0.0,525.0,812.0,0.0,58137.0,1,1,1,110.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2127.444326192696,0.07269585942910288,0.03659363789312651,38758.0,10,5,10,10_1,10_3,10_0_0 -6533,2,31.0,2,0.0,5,111,2,42,33,10.0,0.0,138.792631956344,682.1534720901786,0.0,2954.447545377604,29731.0,20,12,1,4756,201106533,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2723.5650515348852,0.0,500.0,1700.0,0.0,91573.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3775.3936494241266,0.12698508793596336,0.04122824030472002,43606.19047619047,10,5,10,10_1,10_4,10_0_0 -6534,2,55.0,1,0.0,7,400,2,52,62,9.0,3490.203220105541,388.6193694777632,613.9381248811608,145.98446694806984,0.0,26519.0,50,70,1,4758,201106534,,,200.0,,2.0,2.0,5.0,0.0,2.0,1.5,2576.897287840436,0.0,450.0,0.0,0.0,49462.0,1,1,1,165.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4638.745181412534,0.1749215725107483,0.09378401968000756,32974.666666666664,9,5,9,9_1,9_0,9_0_0 -6535,2,46.0,2,0.0,5,120,6,0,64,5.0,158.64560091388822,0.0,654.8673332065715,111.22626053186274,0.0,12646.0,0,71,2,4759,201106535,,,107.0,370.0,1.0,2.0,4.0,0.0,1.0,1.0,3202.710205361515,0.0,480.0,0.0,0.0,17495.0,0,1,3,70.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,924.7391946523225,0.07312503516149949,0.052857341792073305,17495.0,5,3,5,5_0,5_0,5_0_0 -6536,2,85.0,3,0.0,1,120,5,77,78,3.0,31.729120182777642,416.377895869032,2152.876357916604,140.77073598563877,0.0,14481.0,71,70,1,476,201106536,,,146.0,,0.0,4.0,4.0,0.0,2.0,1.5,3311.735278869238,0.0,1578.0,0.0,0.0,18860.0,5,5,1,70.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2741.754109954052,0.1893345839344004,0.14537402491803034,12573.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -6537,1,51.0,2,110.0,5,111,4,0,52,5.0,0.0,0.0,818.5841665082144,0.0,0.0,16204.0,0,41,2,4760,201106537,,,,415.0,1.0,0.0,1.0,0.0,1.0,1.0,2794.845864368454,0.0,600.0,0.0,0.0,17087.0,0,1,3,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,818.5841665082144,0.05051741338609074,0.04790683949834461,17087.0,5,3,5,5_0,5_4,5_0_0 -6538,1,60.0,4,298.0,1,111,2,0,74,10.0,0.0,0.0,637.9962359676912,0.0,1580.3966556022517,11053.0,0,20,8,4763,201106538,,,,254.0,0.0,0.0,2.0,0.0,1.0,1.0,3132.111395614296,597.0,240.0,540.0,0.0,38126.0,0,4,3,43.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,2218.392891569943,0.20070504764045444,0.05818582834732054,38126.0,10,5,10,10_0,10_4,10_1_0 -6539,1,29.0,2,361.0,2,111,1,0,45,2.0,0.0,0.0,600.2950554393572,0.0,62.56477154917279,11523.0,0,42,2,4764,201106539,,,,64.0,1.0,0.0,4.0,1.0,2.0,1.3,2876.9012474240453,0.0,440.0,36.0,0.0,12696.0,0,4,3,70.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,662.8598269885299,0.05752493508535363,0.05221013130029378,9766.153846153846,1,1,1_1,1_0_1,1_2_1,1_0_1 -6540,2,33.0,3,0.0,1,111,2,54,46,8.0,0.0,0.0,1568.9529858074109,41.709847699448524,0.0,27937.0,43,20,1,4765,201106540,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2011.3959140369582,0.0,1150.0,0.0,0.0,48350.0,1,1,2,80.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1610.6628335068594,0.05765339275895262,0.033312571530648594,26861.11111111111,8,4,8,8_1,8_3,8_1_0 -6541,2,51.0,3,0.0,6,120,2,37,46,9.0,0.0,124.91336876070959,436.5782221377143,0.0,608.2686122836243,66936.0,31,42,1,4766,201106541,,,300.0,,2.0,1.0,8.0,1.0,3.0,2.0,3655.615516407075,0.0,320.0,350.0,0.0,59956.0,1,1,2,150.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1169.7602031820481,0.01747580081244843,0.019510310947729138,29978.0,9,5,9,9_1,9_1,9_0_0 -6542,2,44.0,3,0.0,1,112,5,54,54,5.0,0.0,0.0,1296.0915969713394,83.41969539889705,0.0,24325.0,20,50,1,4767,201106542,,,58.0,,2.0,0.0,4.0,4.0,6.0,2.7,1105.380532502741,0.0,950.0,0.0,0.0,45924.0,1,1,1,110.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1379.5112923702366,0.056711666695590406,0.030039005582489255,17008.888888888887,4,2,4_0,4_1_0,4_0_0,4_1_0 -6543,2,49.0,3,0.0,6,111,5,0,52,5.0,0.0,971.5484236944079,1268.8054580877322,239.831624271829,0.0,26548.0,0,50,1,4770,201106543,,,155.0,,3.0,1.0,6.0,2.0,4.0,2.3,1152.0700376783757,0.0,930.0,0.0,0.0,42790.0,0,1,1,90.0,8,7.0,5,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2480.185506053969,0.09342268743611455,0.05796180196433674,18604.34782608696,5,3,5,5_1,5_3,5_0_0 -6544,2,84.0,3,0.0,1,300,5,0,71,2.0,0.0,55.5170527825376,436.5782221377143,121.65372245672486,0.0,11515.0,0,70,1,4771,201106544,,,,,0.0,0.0,4.0,0.0,2.0,1.5,1914.3232699021999,0.0,320.0,0.0,0.0,16513.0,0,5,1,100.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,613.7489973769767,0.05329995635058417,0.03716762534833021,11008.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -6545,2,44.0,3,0.0,2,111,2,0,46,7.0,0.0,0.0,259.2183193942679,0.0,1042.7461924862132,19507.0,0,50,1,4772,201106545,,,170.0,,1.0,0.0,2.0,0.0,1.0,1.0,2352.9316340407895,0.0,190.0,600.0,0.0,22170.0,0,1,1,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1301.964511880481,0.06674345167788388,0.05872641009835278,22170.0,7,4,7,7_1,7_4,7_0_1 -6546,2,45.0,2,0.0,1,112,2,55,21,10.0,6345.824036555528,0.0,1091.4455553442858,0.0,0.0,31638.0,60,50,1,4773,201106546,,,164.0,,3.0,0.0,6.0,2.0,4.0,2.3,2667.4810693045765,0.0,800.0,0.0,0.0,138598.0,1,1,2,300.0,7,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,7437.269591899814,0.2350739487925853,0.053660728090591595,60260.00000000001,10,5,10,10_1,10_0,10_1_0 -6547,2,34.0,2,0.0,99,111,1,0,37,9.0,0.0,0.0,272.86138883607146,0.0,79.94387475727635,16290.0,0,31,2,4776,201106547,,,,487.0,1.0,0.0,2.0,0.0,1.0,1.0,3028.1778884690257,0.0,200.0,46.0,0.0,30498.0,0,1,3,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,352.80526359334783,0.021657781681605145,0.011568144258421793,30498.0,9,5,9,9_0,9_4,9_0_0 -6548,2,33.0,2,0.0,8,111,4,52,33,8.0,0.0,0.0,900.4425831590357,0.0,0.0,26415.0,31,10,2,4777,201106548,,,220.0,543.0,2.0,1.0,3.0,0.0,2.0,1.5,2292.3530515096445,0.0,660.0,0.0,0.0,40081.0,1,1,3,65.0,7,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,900.4425831590357,0.03408830524925367,0.022465571796088813,26720.666666666668,8,4,8,8_0,8_2,8_0_0 -6549,2,63.0,1,0.0,6,111,2,77,74,7.0,0.0,0.0,600.2950554393572,0.0,1120.952156922679,33590.0,50,41,1,4778,201106549,,,407.0,,0.0,2.0,6.0,0.0,2.0,1.5,1702.958945280878,0.0,440.0,645.0,0.0,33821.0,6,5,1,110.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1721.2472123620362,0.05124284645317166,0.05089285391804016,22547.333333333332,7,4,7,7_1,7_2,7_0_0 -6550,2,64.0,2,0.0,2,112,2,75,75,9.0,1983.0700114236026,0.0,402.4705485332054,0.0,0.0,33220.0,33,30,1,4779,201106550,,,536.0,,0.0,4.0,8.0,0.0,2.0,1.5,2176.259383876269,0.0,295.0,0.0,0.0,47570.0,5,5,1,140.0,9,3.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2385.540559956808,0.07181037206372089,0.05014800420342249,31713.333333333332,9,5,9,9_1,9_1,9_0_1 -6551,2,37.0,4,0.0,5,111,2,54,48,8.0,0.0,0.0,540.2655498954215,0.0,1543.2643648795954,52664.0,31,50,1,478,201106551,,,375.0,,2.0,0.0,5.0,1.0,3.0,1.8,1840.272538001874,0.0,396.0,888.0,0.0,47568.0,1,1,2,88.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2083.529914775017,0.039562697758905835,0.043801082971220505,26426.666666666664,8,4,8,8_1,8_3,8_0_0 -6552,2,63.0,2,0.0,1,111,2,0,75,9.0,0.0,0.0,955.0148609262501,151.1981979105009,0.0,27767.0,0,60,2,4780,201106552,,,120.0,,0.0,2.0,3.0,0.0,1.0,1.0,2890.167609745507,0.0,700.0,0.0,0.0,29527.0,0,5,1,63.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1106.213058836751,0.03983912769967051,0.03746445825301423,29527.0,9,5,9,9_0,9_3,9_1_0 -6553,2,56.0,3,0.0,3,111,2,0,52,6.0,0.0,0.0,47.7507430463125,0.0,121.65372245672486,23764.0,0,50,1,4781,201106553,,,130.0,,1.0,1.0,3.0,0.0,1.0,1.0,1009.1094242842497,0.0,35.0,70.0,0.0,20760.0,0,1,3,67.0,5,4.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,169.40446550303736,0.007128617467725861,0.008160138030011433,20760.0,6,3,6,6_1,6_2,6_0_1 -6554,2,41.0,1,0.0,6,111,4,21,42,7.0,0.0,0.0,2728.6138883607146,0.0,0.0,59115.0,10,20,1,4783,201106554,,,540.0,,2.0,1.0,7.0,0.0,2.0,1.5,2295.9804676395174,0.0,2000.0,0.0,0.0,34716.0,1,1,1,180.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2728.6138883607146,0.04615772457685384,0.07859816477591643,23144.0,7,4,7,7_1,7_2,7_0_0 -6555,2,61.0,3,0.0,5,111,2,77,75,4.0,0.0,0.0,1518.1699841779816,0.0,346.23094894710295,32700.0,70,50,1,4785,201106555,,,170.0,,0.0,3.0,4.0,0.0,2.0,1.5,1158.1165157193082,322.0,990.0,0.0,0.0,24810.0,5,5,1,85.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1864.4009331250845,0.05701531905581298,0.07514715570838712,16540.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -6556,2,54.0,2,0.0,8,120,2,45,34,10.0,2460.5932701744064,0.0,620.7596596020626,69.5164128324142,0.0,62295.0,33,10,1,4787,201106556,,,268.0,,2.0,4.0,6.0,0.0,2.0,1.5,1521.3516986866514,0.0,455.0,0.0,0.0,72290.0,1,1,2,150.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3150.869342608883,0.05057981126268373,0.04358651739671992,48193.333333333336,10,5,10,10_1,10_0,10_0_0 -6557,1,37.0,3,48.0,6,111,2,0,46,5.0,0.0,0.0,477.50743046312505,0.0,1546.740185521216,33673.0,0,31,1,4788,201106557,,,430.0,,1.0,0.0,4.0,1.0,3.0,1.8,5031.125389909698,0.0,350.0,890.0,0.0,34072.0,0,1,1,80.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,2024.247615984341,0.06011485807573846,0.05941088330548078,18928.888888888887,5,3,5,5_1,5_4,5_0_0 -6558,2,76.0,3,0.0,1,111,2,77,75,6.0,0.0,0.0,530.715401286159,0.0,2375.7234085477558,21144.0,70,60,1,4789,201106558,,,318.0,,0.0,2.0,3.0,0.0,2.0,1.5,2721.6427851623034,0.0,389.0,1367.0,0.0,29761.0,5,5,1,56.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2906.438809833915,0.13745927023429413,0.09765931285353029,19840.666666666668,6,3,6,6_1,6_4,6_1_0 -6559,2,60.0,2,0.0,8,400,4,75,75,7.0,0.0,0.0,2373.8940828738214,187.69431464751835,0.0,43514.0,50,50,1,479,201106559,,,415.0,,0.0,2.0,5.0,0.0,2.0,1.5,1984.041131608602,0.0,1740.0,0.0,0.0,34013.0,6,5,1,145.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2561.5883975213396,0.058868143529009966,0.07531203944142945,22675.333333333332,7,4,7,7_1,7_0,7_0_0 -6560,2,84.0,1,0.0,1,111,2,0,77,10.0,0.0,0.0,589.3805998859143,0.0,1451.1551178766467,29909.0,0,50,1,4790,201106560,,,327.0,,1.0,0.0,4.0,1.0,2.0,1.5,1982.700107853815,0.0,432.0,835.0,0.0,57635.0,0,5,1,70.0,7,6.0,2,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2040.535717762561,0.06822480583645595,0.035404454199055455,38423.333333333336,10,5,10,10_1,10_2,10_1_0 -6561,2,51.0,3,0.0,99,111,2,55,63,8.0,0.0,416.377895869032,395.6490138123036,0.0,1108.7867846770066,25964.0,70,50,1,4791,201106561,,,299.0,,2.0,3.0,4.0,0.0,2.0,1.5,881.1455859769467,0.0,290.0,638.0,0.0,37358.0,1,1,1,87.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1920.8136943583422,0.07397988346781476,0.05141639526629751,24905.333333333332,7,4,7,7_1,7_2,7_0_0 -6562,2,30.0,4,0.0,1,400,6,85,43,2.0,0.0,0.0,43.65782221377143,0.0,121.65372245672486,10707.0,31,31,8,4792,201106562,,,,200.0,1.0,0.0,1.0,0.0,2.0,1.5,3244.4226856738983,0.0,32.0,70.0,0.0,15354.0,7,1,3,34.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,165.3115446704963,0.015439576414541542,0.010766676088999368,10236.0,2,1,2_0,2_0_0,2_0_0,2_1_0 -6563,2,39.0,3,0.0,1,112,5,21,62,3.0,0.0,491.32591712545775,1588.2205639813121,125.12954309834558,234.40480394555416,33413.0,71,71,1,4794,201106563,,,441.0,,3.0,3.0,7.0,3.0,5.0,2.8,3000.4886279088864,218.0,1081.0,0.0,0.0,36016.0,1,1,2,150.0,9,2.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2439.0808281506697,0.0729979597207874,0.0677221464946321,12862.857142857143,3,2,3_0,3_1_0,3_1_0,3_1_0 -6564,2,61.0,3,0.0,2,111,1,0,75,5.0,0.0,0.0,346.53396382181074,0.0,83.41969539889705,21341.0,0,50,2,4795,201106564,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3266.269695794575,0.0,254.0,48.0,0.0,18821.0,0,5,1,56.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,429.9536592207078,0.020146837506241872,0.022844357856687092,18821.0,5,3,5,5_0,5_4,5_0_1 -6565,2,59.0,2,0.0,7,111,2,34,34,9.0,0.0,0.0,982.3009998098572,0.0,2092.4440262556677,46568.0,20,20,1,4796,201106565,,,369.0,,2.0,1.0,7.0,2.0,4.0,2.5,1439.4932042239345,0.0,720.0,1204.0,0.0,75972.0,1,1,2,155.0,6,4.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3074.745026065525,0.06602699334447529,0.040472082162711594,30388.8,9,5,9,9_1,9_2,9_0_0 -6566,2,63.0,3,0.0,2,112,2,77,75,4.0,0.0,0.0,654.8673332065715,0.0,1501.5545171801468,27733.0,70,50,1,4797,201106566,,,500.0,,0.0,3.0,4.0,0.0,2.0,1.5,1595.4521776053637,0.0,480.0,864.0,0.0,24525.0,5,5,1,91.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2156.4218503867182,0.07775653014050836,0.08792749644798036,16350.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -6567,2,46.0,3,0.0,4,111,2,0,53,10.0,0.0,0.0,777.6549581828036,0.0,1299.9569199661457,26372.0,0,60,1,4798,201106567,,,120.0,,1.0,2.0,3.0,0.0,1.0,1.0,3253.3249322951838,0.0,570.0,748.0,0.0,40218.0,0,1,3,83.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2077.6118781489495,0.07878097520661874,0.0516587567295477,40218.0,10,5,10,10_1,10_4,10_0_1 -6568,2,38.0,2,0.0,5,111,4,46,22,8.0,0.0,0.0,5137.979951783225,0.0,0.0,53907.0,31,50,1,4799,201106568,,,801.0,,2.0,0.0,5.0,2.0,4.0,2.1,3162.5567671914737,0.0,3766.0,0.0,0.0,52405.0,1,1,2,150.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5137.979951783225,0.09531192520049762,0.0980436972003287,24954.761904761905,8,4,8,8_1,8_3,8_0_0 -6569,2,40.0,3,0.0,5,111,1,85,37,4.0,0.0,0.0,436.5782221377143,0.0,486.61488982689946,37137.0,31,31,2,480,201106569,,,,539.0,1.0,0.0,3.0,2.0,4.0,2.1,6134.400204933819,0.0,320.0,280.0,0.0,34398.0,6,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,923.1931119646138,0.024859119260161395,0.02683856945068358,16380.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -6570,2,58.0,2,0.0,9,111,4,54,47,10.0,0.0,0.0,955.2804313148416,0.0,310.74765293699613,53629.0,31,44,2,4800,201106570,,,,,2.0,2.0,3.0,0.0,2.0,1.5,4664.808928418548,289.0,590.0,0.0,0.0,58631.0,1,1,1,62.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1266.0280842518378,0.023607154417420385,0.021593151818182152,39087.333333333336,10,5,10,10_0,10_4,10_0_0 -6571,2,35.0,3,0.0,1,111,2,0,35,1.0,0.0,0.0,245.5752499524643,0.0,417.0984769944853,24315.0,0,20,2,4804,201106571,,,,600.0,1.0,0.0,3.0,0.0,1.0,1.0,4167.24158841499,0.0,180.0,240.0,0.0,2360.0,0,1,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,662.6737269469496,0.02725370047077728,0.2807939520961651,2360.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -6572,2,71.0,3,0.0,6,112,2,77,75,4.0,0.0,0.0,436.5782221377143,0.0,1859.56404326708,34680.0,71,71,1,4805,201106572,,,390.0,281.0,0.0,4.0,3.0,0.0,2.0,1.5,2125.5810360420173,0.0,320.0,1070.0,0.0,23852.0,5,5,3,47.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2296.142265404794,0.06620940788364459,0.09626623618165328,15901.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_0 -6573,2,53.0,3,0.0,5,300,2,63,56,2.0,2300.361213251379,0.0,409.2920832541072,312.82385774586396,0.0,25137.0,60,60,1,4806,201106573,,,424.0,,2.0,3.0,6.0,0.0,2.0,1.5,4741.154219003966,0.0,300.0,0.0,0.0,17365.0,4,1,1,99.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3022.47715425135,0.12024017003824441,0.17405569560906134,11576.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0 -6574,1,23.0,3,187.0,1,111,2,0,54,7.0,951.8736054833294,0.0,2373.8940828738214,0.0,2433.074449134497,71766.0,0,31,1,4808,201106574,,,1074.0,,3.0,0.0,5.0,4.0,5.0,3.0,1261.5078466719565,0.0,1740.0,1400.0,0.0,72169.0,0,1,2,170.0,10,8.0,2,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,5758.842137491648,0.08024471389643631,0.07979661818082068,24056.333333333332,7,4,7,7_1,7_4,7_1_0 -6575,2,66.0,3,0.0,5,112,2,71,78,5.0,0.0,0.0,777.6549581828036,0.0,1338.1909470239734,33456.0,71,71,1,4810,201106575,,,180.0,,1.0,0.0,3.0,1.0,3.0,2.0,3808.4485770599313,0.0,570.0,770.0,0.0,34570.0,5,5,2,75.0,7,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2115.845905206777,0.06324264422545364,0.0612046834019895,17285.0,5,3,5,5_1,5_0,5_0_0 -6576,2,83.0,3,0.0,3,111,1,0,75,7.0,0.0,0.0,341.0767360450893,0.0,208.54923849724264,13134.0,0,71,2,4811,201106576,,,,469.0,0.0,1.0,2.0,0.0,1.0,1.0,3982.696811253094,0.0,250.0,120.0,0.0,23287.0,0,5,3,57.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,549.625974542332,0.041847569250977004,0.023602266266257225,23287.0,7,4,7,7_0,7_3,7_0_1 -6577,2,75.0,3,0.0,1,222,6,0,78,4.0,2155.993716419741,0.0,627.5811943229643,62.56477154917279,0.0,13674.0,0,71,1,4812,201106577,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2764.466932271491,0.0,460.0,0.0,0.0,16727.0,0,5,1,60.0,1,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2846.1396822918778,0.20814243690886922,0.17015242914401135,16727.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -6578,2,56.0,3,0.0,5,111,2,68,46,6.0,1189.8420068541616,0.0,2032.8173468287323,291.9689338961397,0.0,60639.0,60,50,1,4814,201106578,,,,,3.0,2.0,7.0,2.0,4.0,2.5,1731.6354893512435,0.0,1490.0,0.0,0.0,53883.0,1,1,1,100.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3514.628287579034,0.05795986555812322,0.06522703427016005,21553.2,6,3,6,6_1,6_3,6_0_0 -6579,2,49.0,3,0.0,2,111,2,0,85,3.0,0.0,0.0,440.6138965689304,0.0,910.7379309260751,31740.0,0,31,2,4816,201106579,,,,325.0,1.0,0.0,4.0,3.0,4.0,2.5,4981.612287063355,847.0,0.0,0.0,0.0,36280.0,0,6,3,90.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1351.3518274950056,0.042575671943761995,0.03724784530030335,14512.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -6580,2,56.0,2,0.0,1,111,2,38,38,10.0,0.0,0.0,699.8894623645233,0.0,2841.4833745249307,77271.0,12,12,1,4819,201106580,,,775.0,,2.0,1.0,6.0,0.0,2.0,1.5,1959.0749319351198,0.0,513.0,1635.0,0.0,114198.0,1,1,1,200.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3541.372836889454,0.04583055527804033,0.031010813121853744,76132.0,10,5,10,10_1,10_4,10_1_0 -6581,2,48.0,2,0.0,7,300,5,52,62,8.0,0.0,777.2387389555264,732.6328290248518,1477.223772688802,0.0,47935.0,31,50,1,4821,201106581,,,382.0,,3.0,1.0,6.0,1.0,3.0,2.0,1491.566309727816,0.0,537.0,0.0,0.0,49705.0,1,1,2,160.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2987.09534066918,0.062315538555735475,0.06009647602191289,24852.5,7,4,7,7_1,7_0,7_0_0 -6582,2,53.0,3,0.0,9,111,2,67,63,6.0,1527.7571368007436,374.7401062821288,709.4396109737858,57.351040586741725,0.0,84917.0,50,50,1,4822,201106582,,,,615.0,2.0,2.0,5.0,2.0,4.0,2.3,974.452295171644,0.0,520.0,0.0,0.0,44092.0,1,1,3,120.0,6,4.0,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2669.2878946434003,0.03143408145181059,0.060539052314329135,19170.434782608696,5,3,5,5_1,5_2,5_0_0 -6583,2,36.0,5,0.0,1,120,2,31,35,6.0,0.0,0.0,343.33550381994576,0.0,709.6659202021365,51386.0,10,20,1,4824,201106583,,,137.0,,2.0,0.0,4.0,1.0,3.0,1.8,3700.610779310005,660.0,0.0,0.0,0.0,36343.0,1,1,2,104.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1053.0014240220821,0.02049199050367964,0.02897398189533286,20190.555555555555,6,3,6,6_1,6_1,6_1_0 -6584,2,46.0,2,0.0,4,111,1,0,33,10.0,0.0,0.0,163.71683330164288,0.0,225.92834170534618,31215.0,0,20,2,4826,201106584,,,,1350.0,1.0,0.0,2.0,0.0,1.0,1.0,2773.4254725793235,0.0,120.0,130.0,0.0,38725.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,389.64517500698906,0.012482626141502133,0.0100618508717105,38725.0,10,5,10,10_0,10_4,10_0_1 -6585,2,74.0,3,0.0,5,111,2,77,75,5.0,0.0,19.430968473888157,585.2876790533733,24.330744491344973,1390.3282566482842,24200.0,71,70,1,4827,201106585,,,301.0,,0.0,0.0,4.0,0.0,2.0,1.5,2117.2142571686736,0.0,429.0,800.0,0.0,25786.0,5,5,1,85.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2019.3776486668905,0.08344535738292937,0.0783129468962573,17190.666666666668,5,3,5,5_1,5_2,5_0_0 -6586,2,51.0,3,0.0,1,111,2,0,45,7.0,0.0,0.0,927.728722042643,0.0,1876.9431464751838,21082.0,0,50,1,4829,201106586,,,420.0,,2.0,0.0,4.0,2.0,3.0,2.0,1884.8266949228935,0.0,680.0,1080.0,0.0,47770.0,0,1,1,90.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2804.6718685178266,0.13303632807692944,0.058711992223525786,23885.0,7,4,7,7_1,7_4,7_1_0 -6587,1,36.0,2,80.0,8,112,2,85,37,4.0,0.0,0.0,2141.961902363161,0.0,0.0,44943.0,50,50,1,483,201106587,,,400.0,,1.0,0.0,5.0,2.0,4.0,2.1,2182.0344127835656,0.0,1570.0,0.0,0.0,31177.0,6,1,2,120.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2141.961902363161,0.047659522113858904,0.06870327171835522,14846.190476190475,3,2,3_1,3_1_1,3_0_1,3_0_0 -6588,2,43.0,3,0.0,9,120,2,54,63,9.0,3807.4944219333174,0.0,613.9381248811608,173.79103208103552,0.0,34565.0,41,43,1,4831,201106588,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.1,4526.604026583658,0.0,450.0,0.0,0.0,70528.0,4,1,2,170.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4595.223578895513,0.13294441136685992,0.06515459929241596,33584.7619047619,9,5,9,9_1,9_0,9_0_0 -6589,2,53.0,4,0.0,8,221,2,0,62,5.0,0.0,0.0,709.4396109737858,0.0,3058.722164626225,27064.0,0,71,1,4833,201106589,,,400.0,,1.0,1.0,4.0,0.0,1.0,1.0,4929.209597894885,0.0,520.0,1760.0,0.0,18748.0,0,1,1,90.0,1,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3768.161775600011,0.13923151698196906,0.20099006697247765,18748.0,5,3,5,5_1,5_1,5_0_0 -6590,0,41.0,4,0.0,7,111,6,85,63,1.0,237.96840137083234,0.0,491.1504999049286,140.77073598563877,0.0,9871.0,71,71,7,4835,201106590,,,,,1.0,0.0,2.0,2.0,4.0,2.3,4478.1295247712105,0.0,360.0,0.0,0.0,9940.0,6,4,5,30.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,869.8896372613997,0.08812578637031705,0.08751404801422533,4321.739130434783,1,1,1_0,1_1_0,1_4_0,1_0_0 -6591,2,78.0,3,0.0,2,300,2,0,78,2.0,1269.1648073111057,0.0,955.0148609262501,229.4041623469669,0.0,11370.0,0,71,1,4836,201106591,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2921.314735284585,0.0,700.0,0.0,0.0,10630.0,0,5,3,100.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2453.583830584323,0.21579453215341451,0.23081691727039727,10630.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -6592,2,57.0,2,0.0,6,112,4,54,55,10.0,0.0,832.755791738064,1500.737638598393,173.79103208103552,0.0,33618.0,42,42,1,4837,201106592,,,500.0,,2.0,2.0,6.0,0.0,2.0,1.5,1452.8634136893006,0.0,1100.0,0.0,0.0,59991.0,1,1,1,120.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2507.2844624174927,0.0745816069491788,0.041794343525153654,39994.0,10,5,10,10_1,10_0,10_0_0 -6593,2,53.0,1,0.0,6,111,2,0,42,4.0,0.0,0.0,0.0,0.0,0.0,16574.0,0,20,1,484,201106593,,,117.0,,1.0,2.0,4.0,0.0,1.0,1.0,1562.3866800021844,0.0,0.0,0.0,0.0,15848.0,0,1,1,110.0,6,4.0,1,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,15848.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -6594,1,51.0,2,97.0,4,111,2,0,68,6.0,0.0,0.0,17.735990274344644,0.0,118.17790181510415,13520.0,0,31,2,4840,201106594,,,,123.0,1.0,0.0,2.0,0.0,1.0,1.0,2630.0690928421636,0.0,13.0,68.0,0.0,19716.0,0,1,3,44.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,135.91389208944878,0.010052802669337927,0.006893583490030878,19716.0,6,3,6,6_0,6_2,6_0_1 -6595,2,57.0,3,0.0,2,111,2,85,74,4.0,0.0,0.0,206.9924332509175,0.0,361.97223717585837,55720.0,50,50,1,4841,201106595,,,568.0,,0.0,2.0,8.0,1.0,3.0,2.0,1290.1749576644438,293.0,40.0,27.0,0.0,32190.0,5,5,1,96.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,568.9646704267759,0.01021113909595793,0.01767519945407816,16095.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -6596,2,36.0,1,0.0,8,112,4,0,34,8.0,0.0,69.396315978172,2455.752499524643,104.27461924862132,0.0,23717.0,0,20,1,4842,201106596,,,120.0,,1.0,0.0,2.0,0.0,1.0,1.0,1930.3039366887265,0.0,1800.0,0.0,0.0,25834.0,0,1,3,53.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2629.4234347514366,0.11086661191345602,0.10178150633860171,25834.0,8,4,8,8_1,8_0,8_0_0 -6597,2,74.0,3,0.0,1,112,2,0,78,2.0,0.0,0.0,341.0767360450893,0.0,1331.239305740732,11503.0,0,70,1,4843,201106597,,,135.0,,0.0,1.0,4.0,0.0,1.0,1.0,5029.729825819811,0.0,250.0,766.0,0.0,11940.0,0,5,1,70.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1672.3160417858214,0.14538086080029744,0.1400599699988125,11940.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -6598,2,61.0,2,0.0,3,111,1,74,38,10.0,0.0,0.0,869.1042965906211,0.0,837.6208361173702,84228.0,10,10,2,4845,201106598,,,,,1.0,2.0,5.0,0.0,2.0,1.5,2088.351689695859,779.0,340.0,0.0,0.0,81172.0,5,1,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1706.7251327079912,0.020263156345965608,0.021026032778642772,54114.666666666664,10,5,10,10_0,10_4,10_0_1 -6599,2,36.0,4,0.0,5,111,1,62,62,6.0,0.0,0.0,1615.339421909543,0.0,0.0,18734.0,43,60,2,4846,201106599,432.0,432.0,227.0,330.0,2.0,0.0,3.0,1.0,3.0,1.8,2453.5588513000425,0.0,1184.0,0.0,0.0,36277.0,1,1,3,70.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1615.339421909543,0.08622501451422777,0.044527921876382916,20153.888888888887,6,3,6,6_0,6_3,6_0_0 -6600,1,41.0,2,30.0,5,111,1,0,47,5.0,0.0,0.0,477.50743046312505,86.89551604051776,0.0,44137.0,0,20,2,4847,201106600,,,,,1.0,0.0,5.0,2.0,3.0,1.8,2086.695834819429,0.0,350.0,0.0,0.0,33373.0,0,1,2,110.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,564.4029465036429,0.012787523993557398,0.016911963158950136,18540.555555555555,5,3,5,5_0,5_2,5_0_0 -6601,2,36.0,2,0.0,9,111,2,0,34,9.0,0.0,0.0,436.5782221377143,0.0,556.1313026593136,23981.0,0,20,1,4848,201106601,,,120.0,,1.0,0.0,5.0,0.0,1.0,1.0,2562.7248769280104,0.0,320.0,320.0,0.0,34428.0,0,1,1,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,992.7095247970279,0.041395668437389094,0.028834365191037176,34428.0,9,5,9,9_1,9_4,9_0_0 -6602,2,82.0,3,0.0,1,112,2,0,71,3.0,3918.546342573039,0.0,668.510402648375,130.34327406077665,0.0,14273.0,0,71,1,4851,201106602,,,241.0,,0.0,2.0,5.0,0.0,1.0,1.0,3638.903803890331,0.0,490.0,0.0,0.0,14007.0,0,5,1,156.0,8,0.0,1,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4717.400019282191,0.3305121571696344,0.33678874985951246,14007.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -6603,2,90.0,3,0.0,7,112,4,0,77,3.0,0.0,0.0,1118.731694227893,0.0,0.0,18236.0,0,70,2,4852,201106603,,,,730.0,0.0,3.0,3.0,0.0,1.0,1.0,3463.4550012899685,0.0,820.0,0.0,0.0,13220.0,0,5,3,60.0,10,3.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1118.731694227893,0.06134742784754842,0.0846241826193565,13220.0,3,2,3_0,3_0_0,3_1_0,3_0_0 -6604,2,41.0,2,0.0,8,112,2,74,34,8.0,0.0,0.0,201.91742773869288,0.0,0.0,39633.0,50,10,1,4853,201106604,,,629.0,,1.0,2.0,5.0,2.0,4.0,2.1,1305.773932335405,0.0,148.0,0.0,0.0,60397.0,5,1,1,115.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,201.91742773869288,0.005094679376748994,0.003343169821989385,28760.47619047619,8,4,8,8_1,8_0,8_0_0 -6605,2,63.0,3,0.0,1,111,2,77,72,3.0,0.0,0.0,1319.9826969866506,0.0,2724.1543922697656,40201.0,71,71,2,4854,201106605,,,358.0,,0.0,1.0,3.0,0.0,2.0,1.5,3197.286834285184,518.0,770.0,1247.0,0.0,21624.0,5,5,3,100.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,4044.1370892564164,0.10059792266999369,0.18702076809361895,14416.0,3,2,3_0,3_0_0,3_2_0,3_1_0 -6606,1,53.0,3,36.0,4,300,6,0,23,5.0,2696.9752155360998,0.0,682.1534720901786,0.0,0.0,23730.0,0,41,1,4856,201106606,,,100.0,,1.0,0.0,5.0,1.0,2.0,1.5,2351.3712143055263,0.0,500.0,0.0,0.0,26154.0,0,1,3,100.0,0,0.0,2,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,3379.1286876262784,0.14239901759908463,0.12920121922559755,17436.0,5,3,5,5_1,5_0,5_0_1 -6607,2,54.0,4,0.0,1,120,2,0,75,7.0,1967.205451332214,0.0,436.5782221377143,46.92357866187959,0.0,39430.0,0,50,1,4857,201106607,,,150.0,,0.0,0.0,5.0,0.0,1.0,1.0,1435.4466118100079,0.0,320.0,0.0,0.0,23931.0,0,4,1,120.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2450.7072521318078,0.062153366779908896,0.10240722293810571,23931.0,7,4,7,7_1,7_0,7_1_0 -6608,2,83.0,3,0.0,6,120,6,0,77,5.0,0.0,0.0,2046.460416270536,406.67101506962314,0.0,12193.0,0,71,1,4858,201106608,,,178.0,,0.0,1.0,3.0,0.0,1.0,1.0,5409.437866383096,0.0,1500.0,0.0,0.0,16810.0,0,5,1,55.0,0,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2453.131431340159,0.20119178474043786,0.14593286325640445,16810.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -6609,2,68.0,3,0.0,5,300,2,0,77,5.0,1380.2167279508276,0.0,336.9838152125482,119.9158121359145,0.0,11528.0,0,70,1,4859,201106609,,,139.0,,0.0,5.0,3.0,0.0,1.0,1.0,1537.8492354067512,0.0,247.0,0.0,0.0,18621.0,0,5,1,100.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1837.1163552992903,0.1593612383153444,0.09865830810908599,18621.0,5,3,5,5_1,5_0,5_0_0 -6610,1,64.0,3,28.0,5,111,1,78,77,5.0,0.0,0.0,409.2920832541072,0.0,0.0,27532.0,50,70,2,486,201106610,,,,345.0,0.0,6.0,2.0,0.0,2.0,1.5,2795.9131731155553,0.0,300.0,0.0,0.0,27406.0,5,5,3,70.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,409.2920832541072,0.014866049805829841,0.014934396966142712,18270.666666666668,5,3,5,5_0,5_3,5_0_0 -6611,2,60.0,1,0.0,1,111,2,31,31,10.0,0.0,0.0,692.2060033338831,0.0,3574.2415742362823,88770.0,10,10,1,4861,201106611,,,459.0,,2.0,0.0,6.0,0.0,2.0,1.5,2034.601866561783,932.0,152.0,1480.0,0.0,108593.0,1,1,2,150.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4266.447577570166,0.048061817929144594,0.03928842169909815,72395.33333333333,10,5,10,10_1,10_4,10_1_0 -6612,1,54.0,4,15.0,1,221,4,0,78,2.0,0.0,0.0,1391.5930830639643,151.1981979105009,0.0,7998.0,0,50,1,4862,201106612,,,210.0,,0.0,2.0,4.0,0.0,1.0,1.0,2316.863431902296,0.0,1020.0,0.0,0.0,11800.0,0,7,3,50.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1542.7912809744653,0.1928971344054095,0.13074502381139536,11800.0,2,1,2_1,2_1_1,2_1_1,2_1_0 -6613,2,51.0,2,0.0,7,111,2,52,63,6.0,3347.4221792830413,0.0,682.1534720901786,0.0,0.0,43382.0,42,50,1,4864,201106613,,,376.0,,2.0,0.0,5.0,1.0,3.0,2.0,1011.0967946151283,0.0,500.0,0.0,0.0,39507.0,1,1,2,100.0,6,4.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4029.57565137322,0.09288588934058412,0.10199649812370516,19753.5,6,3,6,6_1,6_2,6_0_0 -6614,2,31.0,3,0.0,5,221,4,52,63,6.0,0.0,0.0,1693.1049177278232,26.06865481215533,0.0,50261.0,41,50,1,4868,201106614,,,350.0,436.0,2.0,0.0,3.0,1.0,3.0,1.8,4588.037557535398,0.0,1241.0,0.0,0.0,37801.0,1,1,3,80.0,1,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1719.1735725399785,0.03420492175921646,0.04547957917885714,21000.555555555555,6,3,6,6_1,6_1,6_0_0 -6615,2,44.0,4,0.0,3,111,1,0,52,6.0,0.0,0.0,368.36287492869644,0.0,0.0,15391.0,0,50,2,4869,201106615,,,,317.0,1.0,0.0,1.0,0.0,1.0,1.0,2626.2834332619027,0.0,270.0,0.0,0.0,21040.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,368.36287492869644,0.023933654403787696,0.017507741203835383,21040.0,6,3,6,6_0,6_4,6_0_1 -6616,0,55.0,2,0.0,1,111,2,53,56,9.0,0.0,0.0,0.0,0.0,0.0,21938.0,50,43,2,487,201106616,,,,,2.0,2.0,3.0,0.0,2.0,1.5,2302.2487242791117,0.0,0.0,0.0,0.0,44550.0,1,1,5,48.0,9,7.0,3,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,29700.0,9,5,9,9_0,9_3,9_1_0 -6617,2,68.0,2,0.0,1,400,2,0,74,9.0,0.0,0.0,723.0826804155894,2990.9436621146215,0.0,95939.0,0,20,1,4870,201106617,,,300.0,,0.0,0.0,5.0,0.0,2.0,1.5,2032.3402697753552,0.0,530.0,0.0,0.0,45986.0,0,5,1,110.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3714.026342530211,0.0387123728882958,0.08076428353260147,30657.333333333332,9,5,9,9_1,9_0,9_1_0 -6618,2,47.0,2,0.0,1,112,2,46,37,8.0,0.0,0.0,1637.1683330164287,432.73966988177847,0.0,32574.0,31,31,1,4871,201106618,,,200.0,,2.0,1.0,5.0,2.0,4.0,2.1,1912.903833085803,0.0,1200.0,0.0,0.0,56803.0,1,1,1,160.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2069.908002898207,0.06354479041254396,0.036440117650444644,27049.04761904762,8,4,8,8_1,8_0,8_1_0 -6619,2,64.0,2,0.0,4,111,1,43,34,10.0,0.0,0.0,1304.2505696827789,0.0,1513.7541162045104,56318.0,42,10,2,4872,201106619,,,,,2.0,1.0,6.0,0.0,2.0,1.5,3870.1383915434494,1327.0,450.0,50.0,0.0,97318.0,1,1,1,120.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2818.0046858872893,0.05003737146005344,0.02895666460353983,64878.666666666664,10,5,10,10_0,10_3,10_0_1 -6620,2,24.0,3,0.0,7,300,5,68,67,7.0,0.0,0.0,804.9410970664107,48.661488982689946,0.0,25164.0,50,50,2,4874,201106620,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2502.9981980778207,0.0,590.0,0.0,0.0,33809.0,1,1,3,70.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,853.6025860491006,0.033921577890999075,0.025247791595406566,22539.333333333332,7,4,7,7_0,7_0,7_0_0 -6621,2,73.0,2,0.0,1,111,2,77,75,8.0,2366.992365635212,0.0,983.4509052132306,0.0,848.3733500598267,38376.0,71,70,1,4876,201106621,,,207.0,,1.0,2.0,4.0,1.0,3.0,2.0,1906.7892052988143,789.0,420.0,0.0,0.0,51998.0,5,5,1,120.0,7,5.0,4,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4198.816620908269,0.10941256568970892,0.08074957923205256,25999.0,8,4,8,8_1,8_2,8_1_0 -6622,2,28.0,3,0.0,1,112,5,0,52,7.0,0.0,138.792631956344,1064.1594164606786,208.54923849724264,0.0,26970.0,0,42,1,4879,201106622,,,132.0,,3.0,1.0,6.0,1.0,3.0,2.0,3115.7169118049587,0.0,780.0,0.0,0.0,48411.0,0,1,1,150.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1411.5012869142652,0.0523359765262983,0.029156623224355315,24205.5,7,4,7,7_1,7_0,7_1_0 -6623,2,70.0,2,0.0,5,111,1,75,72,6.0,0.0,0.0,604.3693439450515,0.0,662.1675668533223,32372.0,50,12,2,488,201106623,,,,591.0,0.0,2.0,4.0,0.0,2.0,1.5,2592.547081537031,514.0,247.0,63.0,0.0,31102.0,5,5,3,75.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1266.5369107983738,0.0391244566538482,0.04072204073044736,20734.666666666668,6,3,6,6_0,6_3,6_0_0 -6624,2,50.0,2,0.0,2,111,6,52,52,8.0,0.0,0.0,2182.8911106885716,257.2107274799326,0.0,56767.0,71,60,1,4880,201106624,,,400.0,,3.0,0.0,3.0,1.0,3.0,2.0,3210.236667188167,0.0,1600.0,0.0,0.0,57156.0,1,1,2,75.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2440.1018381685044,0.042984512800896726,0.042691963016455045,28578.0,8,4,8,8_1,8_3,8_0_1 -6625,2,55.0,2,0.0,8,111,2,46,55,10.0,0.0,0.0,818.5841665082144,0.0,2780.6565132965684,48194.0,41,71,2,4881,201106625,,,,,3.0,1.0,5.0,1.0,3.0,2.0,3169.9549150425787,0.0,600.0,1600.0,0.0,75663.0,1,1,1,110.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3599.2406798047828,0.07468233970628674,0.04756936256565009,37831.5,10,5,10,10_0,10_3,10_0_0 -6626,1,35.0,1,131.0,99,111,2,85,47,5.0,0.0,0.0,1132.3747636696964,0.0,1859.56404326708,51629.0,50,31,1,4882,201106626,,,500.0,327.0,1.0,0.0,5.0,3.0,5.0,2.4,1448.447629639105,0.0,830.0,1070.0,0.0,41686.0,6,1,3,110.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2991.9388069367765,0.05795074099705159,0.07177322858841761,17369.166666666668,5,3,5,5_1,5_3,5_0_0 -6627,2,48.0,1,0.0,1,111,1,0,37,10.0,0.0,0.0,818.5841665082144,0.0,0.0,52009.0,0,10,2,4883,201106627,,,,,1.0,1.0,1.0,0.0,1.0,1.0,3615.6987879744297,0.0,600.0,0.0,0.0,49238.0,0,1,1,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,818.5841665082144,0.015739279096083646,0.016625049078114757,49238.0,10,5,10,10_0,10_4,10_1_0 -6628,2,29.0,3,0.0,1,111,4,47,47,5.0,0.0,0.0,204.6460416270536,0.0,364.9611673701746,26938.0,42,41,2,4885,201106628,,,,548.0,2.0,0.0,3.0,1.0,3.0,1.8,2941.9614168079097,0.0,150.0,210.0,0.0,32302.0,4,1,3,70.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,569.6072089972282,0.02114511875407336,0.017633806234822247,17945.555555555555,5,3,5,5_0,5_3,5_1_0 -6629,1,86.0,5,130.0,2,112,1,0,75,5.0,2928.5977928703765,0.0,106.64208830771042,0.0,220.42653582036058,22911.0,0,71,1,4886,201106629,,,210.0,,0.0,2.0,4.0,0.0,1.0,1.0,2312.8670729772243,205.0,0.0,0.0,0.0,18885.0,0,5,1,106.0,8,2.0,1,9,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,3255.6664169984474,0.14210058124911384,0.1723943032564706,18885.0,5,3,5,5_1,5_1,5_0_1 -6630,1,33.0,4,320.0,1,111,1,55,67,1.0,0.0,0.0,0.0,323.25131967072605,0.0,17669.0,33,71,2,4887,201106630,999999.0,31.0,,,2.0,0.0,3.0,2.0,4.0,2.1,2388.131612781008,0.0,0.0,0.0,0.0,16306.0,1,1,3,100.0,9,7.0,4,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,323.25131967072605,0.018294828211598054,0.019824072100498347,7764.761904761905,1,1,1_1,1_0_1,1_3_1,1_1_0 -6631,1,28.0,5,240.0,2,111,1,81,85,1.0,0.0,0.0,78.03079632271493,0.0,161.2877091368492,10922.0,50,50,2,4889,201106631,,,,250.0,1.0,0.0,3.0,2.0,4.0,2.1,2928.0352832536673,150.0,0.0,0.0,0.0,12370.0,4,6,3,70.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,239.31850545956414,0.021911600939348484,0.019346685970862098,5890.47619047619,1,1,1_1,1_0_1,1_2_1,1_0_1 -6632,2,76.0,2,0.0,4,111,2,75,75,8.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,33816.0,50,70,1,4890,201106632,,,1200.0,,0.0,1.0,4.0,0.0,2.0,1.5,1742.6103554719896,1200.0,0.0,0.0,0.0,40987.0,5,5,1,120.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1914.548043676513,0.056616632472099394,0.04671110458624718,27324.666666666668,8,4,8,8_1,8_4,8_0_1 -6633,1,26.0,4,340.0,4,111,1,0,69,2.0,1903.7472109666587,0.0,231.93218051066074,0.0,324.98922999153643,13116.0,0,71,2,4891,201106633,1200.0,1200.0,190.0,,3.0,2.0,5.0,2.0,3.0,2.0,2742.3704636235,0.0,170.0,187.0,0.0,24060.0,0,1,3,117.0,6,4.0,2,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2460.6686214688557,0.18760815961183713,0.1022721787809167,12030.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -6634,2,80.0,2,0.0,4,111,1,0,78,4.0,0.0,0.0,170.53836802254466,0.0,0.0,11909.0,0,71,2,4894,201106634,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4667.3230560421725,0.0,125.0,0.0,0.0,15320.0,0,5,3,90.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,170.53836802254466,0.014320124949411761,0.011131747259957223,15320.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -6635,2,59.0,2,0.0,1,111,2,0,75,7.0,0.0,0.0,354.7198054868929,0.0,556.1313026593136,12324.0,0,31,2,4895,201106635,,,,240.0,0.0,1.0,3.0,0.0,1.0,1.0,2541.623721624699,0.0,260.0,320.0,0.0,23280.0,0,5,3,77.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,910.8511081462066,0.07390872347827057,0.03912590670731128,23280.0,7,4,7,7_0,7_3,7_1_0 -6636,2,69.0,2,0.0,4,112,2,77,75,8.0,0.0,0.0,656.3991909902849,0.0,2556.252648758645,32827.0,70,70,1,490,201106636,,,170.0,,0.0,2.0,4.0,0.0,2.0,1.5,611.8753071172583,357.0,345.0,1250.0,0.0,40422.0,5,5,1,90.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3212.65183974893,0.0978661418877427,0.0794778051493971,26948.0,8,4,8,8_1,8_0,8_0_1 -6637,2,75.0,2,0.0,1,400,2,74,74,2.0,5552.596031986088,0.0,1637.1683330164287,625.6477154917279,0.0,73863.0,10,10,1,4900,201106637,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1186.9486459200377,0.0,1200.0,0.0,0.0,16678.0,5,5,1,150.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,7815.412080494245,0.10580956744911857,0.46860607270021853,11118.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -6638,2,75.0,1,0.0,4,112,6,0,13,9.0,515.5982029701368,0.0,1439.610745919653,0.0,1058.0473719377308,23999.0,0,50,1,4901,201106638,,,,,1.0,4.0,8.0,0.0,1.0,1.0,2379.3406826181126,984.0,680.0,0.0,0.0,29256.0,0,1,1,200.0,10,0.0,1,1,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3013.2563208275205,0.1255575782669078,0.10299618269167078,29256.0,9,5,9,9_1,9_0,9_0_1 -6639,2,58.0,3,0.0,6,112,2,77,78,1.0,0.0,0.0,1091.4455553442858,0.0,225.92834170534618,32575.0,50,70,1,4903,201106639,,,180.0,,0.0,2.0,4.0,2.0,4.0,2.5,4865.2140176554,0.0,800.0,130.0,0.0,9555.0,6,7,1,90.0,9,2.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1317.373897049632,0.040441255473511344,0.13787272601252035,3822.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -6640,1,27.0,2,297.0,3,111,1,85,47,2.0,0.0,0.0,491.1504999049286,0.0,625.6477154917279,9084.0,41,50,2,4904,201106640,,,400.0,106.0,1.0,0.0,3.0,1.0,3.0,1.8,2451.2851102784957,0.0,360.0,360.0,0.0,18134.0,6,4,3,80.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1116.7982153966566,0.12294123903529905,0.061585872691996064,10074.444444444443,2,1,2_1,2_0_1,2_3_1,2_0_1 -6641,2,52.0,2,0.0,1,111,2,31,37,10.0,0.0,0.0,1052.1366383040665,0.0,4160.231224633765,75309.0,10,12,1,4906,201106641,,,303.0,,2.0,0.0,10.0,3.0,5.0,2.6,1021.2065309950115,407.0,616.0,2142.0,0.0,100238.0,1,1,1,200.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5212.367862937832,0.06921308028174364,0.05199991882258058,38553.07692307692,10,5,10,10_1,10_3,10_1_0 -6642,1,33.0,3,100.0,8,112,6,54,65,3.0,0.0,0.0,1488.1595495525244,86.89551604051776,2737.5900497494536,42553.0,50,43,1,4908,201106642,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2166.557589282052,2546.0,120.0,0.0,0.0,29342.0,1,1,3,80.0,9,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,4312.645115342496,0.10134761627482189,0.1469785670827652,13972.380952380952,3,2,3_1,3_1_1,3_0_1,3_0_0 -6643,2,56.0,1,0.0,5,111,2,45,46,8.0,0.0,0.0,177.35990274344644,0.0,0.0,43268.0,50,50,1,4910,201106643,,,210.0,,2.0,1.0,5.0,1.0,3.0,2.0,971.4648090485094,0.0,130.0,0.0,0.0,57644.0,1,1,1,120.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,177.35990274344644,0.004099101015610762,0.0030768146336730006,28822.0,8,4,8,8_1,8_2,8_0_0 -6644,1,57.0,3,295.0,5,211,1,77,67,2.0,0.0,0.0,422.93515269591074,0.0,260.6865481215533,11308.0,50,71,2,4911,201106644,780.0,780.0,190.0,19.0,2.0,2.0,4.0,1.0,3.0,2.0,1795.5829386670202,0.0,310.0,150.0,780.0,20120.0,6,1,3,96.0,4,3.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,683.621700817464,0.0604546958628815,0.033977221710609545,10060.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -6645,2,65.0,2,0.0,1,111,2,0,72,4.0,0.0,0.0,515.708024900175,0.0,0.0,92637.0,0,70,1,4912,201106645,,,,,0.0,1.0,1.0,0.0,1.0,1.0,2351.1128126693698,0.0,378.0,0.0,0.0,16700.0,0,5,3,40.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,515.708024900175,0.005566976746874089,0.030880720053902695,16700.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -6646,2,54.0,3,0.0,9,111,4,0,75,10.0,0.0,0.0,3410.767360450893,0.0,0.0,51519.0,0,31,1,4913,201106646,,,700.0,,0.0,0.0,4.0,0.0,1.0,1.0,2303.8315940631032,0.0,2500.0,0.0,0.0,55940.0,0,7,2,180.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3410.767360450893,0.06620406763428818,0.06097188702986938,55940.0,10,5,10,10_1,10_3,10_0_0 -6647,1,20.0,3,215.0,7,111,1,0,84,1.0,0.0,0.0,545.7227776721429,0.0,0.0,7589.0,0,41,2,4914,201106647,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4124.296368495131,0.0,400.0,0.0,0.0,3277.0,0,3,3,16.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,545.7227776721429,0.07190970848229582,0.16653121076354682,3277.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -6648,2,61.0,3,0.0,2,111,2,78,78,5.0,0.0,0.0,450.22129157951787,0.0,1072.2906679399891,21349.0,70,70,1,4916,201106648,,,204.0,,0.0,1.0,5.0,0.0,2.0,1.5,1299.0751535216193,0.0,330.0,617.0,0.0,27120.0,5,5,2,120.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1522.511959519507,0.07131537587331992,0.05613982151620601,18080.0,5,3,5,5_1,5_3,5_0_1 -6649,2,61.0,1,0.0,1,111,6,75,31,10.0,3994.6962310117055,555.170527825376,828.1343151174768,243.30744491344973,0.0,56755.0,20,10,1,4917,201106649,,,800.0,,1.0,4.0,7.0,0.0,2.0,1.5,1645.3397936104955,0.0,607.0,0.0,0.0,136078.0,6,1,1,420.0,8,7.0,3,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,5621.308518868009,0.09904516815906984,0.04130945868448984,90718.66666666667,10,5,10,10_1,10_3,10_1_0 -6650,2,71.0,2,0.0,4,111,6,77,77,7.0,0.0,0.0,373.82010270541787,0.0,1438.989745630974,28580.0,50,60,1,4918,201106650,,,240.0,,0.0,2.0,4.0,0.0,2.0,1.5,1411.1930414168241,0.0,274.0,828.0,0.0,32745.0,5,5,1,110.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1812.809848336392,0.06342931589700462,0.05536142459417902,21830.0,7,4,7,7_1,7_2,7_0_1 -6651,2,62.0,3,0.0,2,111,1,78,72,3.0,0.0,0.0,1541.8885353368473,0.0,3187.0451325441404,26586.0,60,60,2,4919,201106651,,,,332.0,0.0,1.0,4.0,0.0,2.0,1.5,3648.747985974601,2964.0,0.0,0.0,0.0,21669.0,5,5,3,72.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,4728.933667880988,0.17787307860832724,0.2182349747510724,14446.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -6652,2,60.0,3,0.0,2,111,2,72,43,8.0,0.0,0.0,1334.2921914083895,0.0,2281.8762512239964,58440.0,50,33,1,4920,201106652,,,540.0,,1.0,2.0,5.0,0.0,2.0,1.5,2074.8350637987323,0.0,978.0,1313.0,0.0,38819.0,5,1,1,95.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3616.168442632386,0.06187831010664589,0.09315460065000092,25879.333333333332,8,4,8,8_1,8_3,8_0_1 -6653,2,56.0,3,0.0,2,111,2,68,46,6.0,0.0,0.0,1136.4676845022375,0.0,1706.6279350357688,46653.0,71,50,1,4926,201106653,,,636.0,,2.0,1.0,6.0,2.0,4.0,2.5,1463.7266363337733,0.0,833.0,982.0,0.0,48338.0,1,1,1,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2843.0956195380063,0.06094132466375166,0.05881698910873446,19335.2,6,3,6,6_1,6_3,6_0_1 -6654,2,32.0,2,0.0,99,111,1,0,46,7.0,0.0,0.0,204.6460416270536,0.0,0.0,21534.0,0,31,2,4928,201106654,,,,487.0,1.0,0.0,1.0,0.0,1.0,1.0,3455.1795626710086,0.0,150.0,0.0,0.0,23035.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,204.6460416270536,0.009503391921011127,0.00888413464845034,23035.0,7,4,7,7_0,7_4,7_0_0 -6655,2,73.0,3,0.0,5,112,2,86,77,5.0,0.0,0.0,736.7257498573929,173.79103208103552,1181.7790181510416,25122.0,71,70,1,4931,201106655,,,285.0,,0.0,3.0,5.0,0.0,2.0,1.5,1818.7206644908053,0.0,540.0,680.0,0.0,26811.0,5,5,1,90.0,6,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2092.29580008947,0.08328539925521336,0.07803870799632502,17874.0,5,3,5,5_1,5_0,5_0_0 -6656,2,44.0,3,0.0,6,111,2,46,23,10.0,1903.7472109666587,0.0,1227.8762497623215,0.0,0.0,45273.0,50,60,1,4932,201106656,,,,,2.0,0.0,8.0,1.0,3.0,2.0,2640.2406417251855,0.0,900.0,0.0,0.0,91124.0,1,1,1,180.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3131.6234607289803,0.06917198906034458,0.034366615389238624,45562.0,10,5,10,10_1,10_3,10_0_0 -6657,2,58.0,3,0.0,8,400,2,0,54,5.0,0.0,0.0,1910.0297218525002,52.13730962431066,0.0,24604.0,0,70,1,4933,201106657,,,,,1.0,1.0,5.0,1.0,3.0,2.0,1367.847652970145,0.0,1400.0,0.0,0.0,37746.0,0,1,2,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1962.1670314768107,0.07974991999174162,0.051983442788025504,18873.0,5,3,5,5_1,5_0,5_0_0 -6658,2,73.0,1,0.0,6,111,6,0,74,7.0,0.0,0.0,1968.6949204522555,0.0,0.0,23899.0,0,70,1,4935,201106658,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2356.56518590195,0.0,1443.0,0.0,0.0,22892.0,0,5,1,88.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1968.6949204522555,0.08237561908248275,0.08599925390757712,22892.0,7,4,7,7_1,7_4,7_0_0 -6659,2,65.0,2,0.0,3,211,2,0,77,4.0,2379.684013708323,0.0,409.2920832541072,0.0,121.65372245672486,29675.0,0,50,1,4936,201106659,,,,,0.0,0.0,4.0,0.0,1.0,1.0,1537.5229849597251,0.0,300.0,70.0,0.0,16552.0,0,5,1,80.0,1,2.0,1,4,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2910.6298194191554,0.09808356594504315,0.17584762079622737,16552.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -6660,2,31.0,1,0.0,9,120,4,42,46,9.0,0.0,0.0,2226.548932902343,0.0,0.0,42637.0,20,20,1,4937,201106660,,,532.0,,2.0,0.0,4.0,2.0,4.0,2.1,2270.797507177357,0.0,1632.0,0.0,0.0,77023.0,1,1,3,87.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2226.548932902343,0.05222105056411903,0.02890758517458867,36677.619047619046,9,5,9,9_1,9_0,9_0_0 -6661,2,38.0,2,0.0,1,111,4,0,31,10.0,0.0,0.0,818.5841665082144,0.0,0.0,21017.0,0,12,2,4938,201106661,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4509.086749271661,0.0,600.0,0.0,0.0,437995.0,0,4,1,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,818.5841665082144,0.03894866853062827,0.0018689349570388117,437995.0,10,5,10,10_0,10_4,10_1_0 -6662,1,49.0,3,55.0,7,221,6,0,55,3.0,0.0,0.0,1077.8024859024822,93.84715732375918,0.0,23133.0,0,60,1,4939,201106662,,,275.0,,2.0,0.0,4.0,1.0,2.0,1.5,3295.848110984183,0.0,790.0,0.0,0.0,21680.0,0,1,3,78.0,1,1.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1171.6496432262413,0.05064840890616182,0.05404288022261261,14453.333333333334,3,2,3_1,3_1_1,3_1_1,3_0_0 -6663,1,61.0,3,174.0,4,112,1,0,77,1.0,0.0,0.0,573.00891655575,0.0,0.0,18429.0,0,70,2,4940,201106663,999999.0,1100.0,,,1.0,0.0,3.0,1.0,2.0,1.5,2906.662777790361,0.0,420.0,0.0,1100.0,12198.0,0,5,3,54.0,10,5.0,2,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,573.00891655575,0.031092784011924144,0.046975644905373835,8132.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -6664,1,34.0,4,281.0,1,111,1,0,56,3.0,0.0,0.0,1146.0178331115,0.0,0.0,23204.0,0,30,2,4941,201106664,,,,399.0,1.0,0.0,4.0,2.0,3.0,1.6,2287.6247022161006,0.0,840.0,0.0,0.0,21637.0,0,1,3,90.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1146.0178331115,0.04938880508151612,0.05296565296073855,13523.125,3,2,3_1,3_0_1,3_3_1,3_1_0 -6665,1,40.0,4,54.0,99,221,2,0,42,4.0,0.0,0.0,1391.5930830639643,0.0,0.0,27013.0,0,20,2,4942,201106665,,,,346.0,1.0,0.0,4.0,2.0,3.0,1.6,2901.46146251471,0.0,1020.0,0.0,0.0,25705.0,0,1,3,100.0,1,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1391.5930830639643,0.05151568071165603,0.05413705827908828,16065.625,4,2,4_1,4_0_1,4_1_1,4_0_0 -6666,2,53.0,2,0.0,3,111,1,75,62,9.0,0.0,0.0,3820.0594437050004,0.0,152.93610823131127,30534.0,33,60,2,4943,201106666,,,,,1.0,0.0,3.0,0.0,2.0,1.5,3303.600889185902,0.0,2800.0,88.0,0.0,44280.0,5,1,1,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3972.9955519363116,0.13011710067257193,0.08972438012502962,29520.0,9,5,9,9_0,9_3,9_0_1 -6667,2,22.0,3,0.0,1,111,2,55,43,4.0,0.0,0.0,286.1129198499548,0.0,591.3882668351138,20565.0,43,43,2,4944,201106667,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3107.801206366935,550.0,0.0,0.0,0.0,22641.0,4,4,3,55.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,877.5011866850685,0.04266964194918884,0.03875717444834895,15094.0,4,2,4_0,4_0_0,4_2_0,4_1_0 -6668,2,58.0,2,0.0,7,300,4,77,65,3.0,0.0,0.0,2728.6138883607146,90.37133668213848,0.0,14010.0,50,71,1,4947,201106668,,,,,2.0,2.0,5.0,1.0,3.0,2.0,1487.578216107706,0.0,2000.0,0.0,0.0,26319.0,6,1,2,181.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2818.985225042853,0.2012123643856426,0.10710837133032612,13159.5,3,2,3_0,3_1_0,3_0_0,3_0_0 -6669,2,39.0,4,0.0,8,120,2,0,62,5.0,0.0,0.0,914.0856526008394,0.0,0.0,15888.0,0,50,1,4949,201106669,,,100.0,,1.0,2.0,3.0,0.0,1.0,1.0,3881.6373399175786,0.0,670.0,0.0,0.0,18214.0,0,1,3,62.0,0,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,914.0856526008394,0.05753308488172453,0.05018588188211482,18214.0,5,3,5,5_1,5_1,5_0_0 -6670,2,38.0,3,0.0,7,300,5,52,38,6.0,1031.1964059402735,138.792631956344,469.3215887980429,0.0,0.0,63577.0,31,31,1,4952,201106670,,,240.0,,2.0,0.0,6.0,2.0,4.0,2.3,2075.688647018541,0.0,344.0,0.0,0.0,46786.0,1,1,2,100.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1639.3106266946604,0.025784648956299613,0.035038486442411414,20341.739130434784,6,3,6,6_1,6_0,6_0_0 -6671,2,55.0,3,0.0,1,111,2,0,62,7.0,3172.912018277764,0.0,1655.4466694204782,121.65372245672486,1391.375304153886,27427.0,0,41,1,4953,201106671,,,,,1.0,2.0,8.0,0.0,1.0,1.0,2887.576786065867,1294.0,720.0,0.0,0.0,22460.0,0,1,5,200.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,6341.387714308853,0.23120967347171958,0.28234139422568355,22460.0,7,4,7,7_1,7_4,7_1_0 -6672,1,58.0,4,49.0,1,222,2,0,78,2.0,0.0,0.0,2455.752499524643,104.27461924862132,0.0,7413.0,0,71,1,4954,201106672,,,100.0,,0.0,2.0,2.0,0.0,1.0,1.0,2622.865013431942,0.0,1800.0,0.0,0.0,9980.0,0,7,2,60.0,1,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2560.027118773264,0.3453429271244117,0.2565157433640545,9980.0,2,1,2_1,2_1_1,2_0_1,2_1_0 -6673,2,43.0,3,0.0,5,112,2,52,37,10.0,0.0,0.0,654.8673332065715,0.0,2433.074449134497,45472.0,50,60,1,4955,201106673,,,189.0,,2.0,1.0,5.0,1.0,3.0,2.0,2629.140639456055,0.0,480.0,1400.0,0.0,75200.0,1,1,2,105.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3087.9417823410686,0.06790864229286304,0.04106305561623761,37600.0,10,5,10,10_1,10_2,10_0_0 -6674,2,40.0,2,0.0,99,111,6,0,43,7.0,0.0,0.0,300.1475277196786,0.0,2085.4923849724264,12407.0,0,20,2,4956,201106674,,,,215.0,1.0,0.0,3.0,0.0,1.0,1.0,3012.2284326563686,0.0,220.0,1200.0,0.0,22702.0,0,1,3,60.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2385.639912692105,0.19228176937955227,0.10508501069034028,22702.0,7,4,7,7_0,7_3,7_0_0 -6675,2,64.0,2,0.0,4,111,2,77,77,9.0,2855.620816449988,0.0,1555.3099163656073,0.0,0.0,42841.0,31,70,1,4959,201106675,,,500.0,,0.0,2.0,5.0,0.0,2.0,1.5,1421.2864955360067,0.0,1140.0,0.0,0.0,47173.0,5,5,2,102.0,7,5.0,3,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4410.930732815596,0.10296049888694464,0.0935054105699361,31448.666666666668,9,5,9,9_1,9_2,9_0_1 -6676,2,48.0,2,0.0,2,111,2,54,21,10.0,0.0,0.0,3765.487165937786,0.0,4118.847460320542,28850.0,71,60,1,496,201106676,,,130.0,,2.0,2.0,4.0,0.0,2.0,1.5,2899.545133329161,0.0,2760.0,2370.0,0.0,93514.0,1,1,1,95.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,7884.334626258328,0.27328716208867687,0.08431181027715987,62342.666666666664,10,5,10,10_1,10_2,10_0_1 -6677,2,62.0,3,0.0,7,111,2,75,74,10.0,0.0,0.0,905.1572373434933,0.0,1870.9374259874508,39738.0,33,20,1,4961,201106677,,,259.0,,0.0,2.0,5.0,0.0,2.0,1.5,2065.2891024910095,1740.0,0.0,0.0,0.0,63646.0,5,5,1,125.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2776.094663330944,0.06985994925086678,0.04361773973746887,42430.666666666664,10,5,10,10_1,10_2,10_0_0 -6678,2,41.0,3,0.0,9,300,4,85,62,2.0,0.0,1110.341055650752,2496.681707850054,194.64595593075978,0.0,44407.0,50,50,1,4962,201106678,,,254.0,,1.0,0.0,7.0,3.0,5.0,2.4,1892.229291832186,0.0,1830.0,0.0,0.0,25483.0,6,1,1,150.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3801.6687194315655,0.08560967233615344,0.14918450415695034,10617.916666666668,2,1,2_0,2_1_0,2_0_0,2_0_0 -6679,2,40.0,2,0.0,9,111,2,34,42,5.0,0.0,0.0,545.7227776721429,0.0,1737.9103208103552,44893.0,10,10,1,4963,201106679,,,330.0,,2.0,0.0,7.0,2.0,4.0,2.1,1226.6819803280603,0.0,400.0,1000.0,0.0,37769.0,1,1,2,160.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2283.633098482498,0.05086835583459555,0.06046316022352983,17985.238095238095,5,3,5,5_1,5_2,5_0_0 -6680,2,29.0,3,0.0,1,111,2,55,62,5.0,0.0,0.0,362.905647151975,0.0,1147.0208117348345,27287.0,43,50,2,4964,201106680,,,100.0,,2.0,0.0,3.0,0.0,2.0,1.5,5415.824423539264,0.0,266.0,660.0,0.0,26211.0,1,1,3,45.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1509.9264588868095,0.05533501150316303,0.057606594898584926,17474.0,5,3,5,5_0,5_2,5_1_0 -6681,2,48.0,2,0.0,4,300,2,53,21,6.0,0.0,319.2230534995912,571.6446096115696,140.77073598563877,0.0,29108.0,50,50,1,4965,201106681,,,,,2.0,4.0,4.0,1.0,3.0,1.8,2354.838636404741,0.0,419.0,0.0,0.0,34213.0,4,1,1,100.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1031.6383990967995,0.035441747942036535,0.03015340365056556,19007.222222222223,5,3,5,5_1,5_0,5_0_1 -6682,2,46.0,3,0.0,4,111,4,56,34,5.0,0.0,97.1548423694408,2728.6138883607146,0.0,0.0,70972.0,50,10,1,4966,201106682,,,139.0,,2.0,0.0,7.0,2.0,4.0,2.5,1036.9645769473527,0.0,2000.0,0.0,0.0,43355.0,1,1,2,180.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2825.7687307301553,0.03981526138096933,0.06517745890278297,17342.0,5,3,5,5_1,5_2,5_0_1 -6683,2,71.0,3,0.0,4,111,6,86,78,4.0,0.0,0.0,818.5841665082144,0.0,0.0,28031.0,71,70,2,497,201106683,,,380.0,,0.0,1.0,4.0,0.0,2.0,1.5,2523.273664501635,0.0,600.0,0.0,0.0,24000.0,6,5,1,90.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,818.5841665082144,0.02920281711348915,0.034107673604508934,16000.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -6684,2,38.0,3,0.0,1,112,5,69,46,7.0,0.0,555.170527825376,327.43366660328576,130.34327406077665,0.0,37795.0,43,41,1,4970,201106684,,,220.0,,2.0,0.0,3.0,1.0,3.0,1.8,4705.558953418589,0.0,240.0,0.0,0.0,44406.0,1,1,2,48.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1012.9474684894383,0.02680109719511677,0.022811049598915424,24670.0,7,4,7,7_1,7_0,7_1_0 -6685,2,47.0,5,0.0,2,111,2,52,47,5.0,0.0,0.0,1040.4106176361993,0.0,2150.502788491323,29418.0,50,50,1,4971,201106685,,,600.0,880.0,2.0,0.0,5.0,2.0,4.0,2.3,3142.494321951664,2000.0,0.0,0.0,0.0,40070.0,1,1,3,120.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3190.913406127522,0.1084680605794929,0.07963347656919197,17421.739130434784,5,3,5,5_1,5_2,5_0_1 -6686,2,46.0,1,0.0,8,112,6,64,43,7.0,0.0,0.0,3371.202459069663,0.0,0.0,51886.0,50,10,1,4972,201106686,,,260.0,,2.0,0.0,7.0,4.0,6.0,2.9,1059.7609263266313,0.0,2471.0,0.0,0.0,63126.0,1,1,1,190.0,7,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3371.202459069663,0.06497325789364497,0.05340434146104082,21767.58620689655,6,3,6,6_1,6_1,6_0_0 -6687,2,53.0,2,0.0,8,111,4,33,47,8.0,0.0,721.7216861729887,1555.3099163656073,0.0,0.0,67757.0,50,41,1,4974,201106687,,,370.0,,4.0,1.0,5.0,2.0,4.0,2.5,1792.6859741658368,0.0,1140.0,0.0,0.0,62428.0,1,1,2,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2277.031602538596,0.0336058503555145,0.03647452429260262,24971.2,8,4,8,8_1,8_4,8_0_0 -6688,2,43.0,2,0.0,9,112,5,46,64,6.0,0.0,693.9631597817199,1091.4455553442858,208.54923849724264,0.0,36537.0,41,50,1,4975,201106688,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.1,1905.6720003278967,0.0,800.0,0.0,0.0,43759.0,1,1,2,113.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1993.9579536232484,0.054573663782555994,0.04556680805373177,20837.619047619046,6,3,6,6_1,6_0,6_0_0 -6689,2,55.0,1,0.0,7,112,2,85,37,10.0,0.0,124.91336876070959,1036.8732775770716,3997.193737863817,0.0,48128.0,20,31,1,4977,201106689,,,640.0,,1.0,1.0,5.0,1.0,3.0,2.0,1324.2563990294275,0.0,760.0,0.0,0.0,102480.0,6,1,1,159.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5158.980384201598,0.10719291024355049,0.05034133864365338,51240.0,10,5,10,10_1,10_0,10_0_0 -6690,1,45.0,3,389.0,8,221,4,0,85,1.0,0.0,0.0,556.6372332255858,43.44775802025888,0.0,47546.0,0,10,1,4980,201106690,,,,,0.0,0.0,4.0,2.0,3.0,1.6,2722.395168002723,0.0,408.0,0.0,0.0,13828.0,0,6,3,100.0,1,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,600.0849912458447,0.012621145653595353,0.04339636905162313,8642.5,1,1,1_1,1_1_1,1_1_1,1_0_0 -6691,2,56.0,3,0.0,6,111,4,0,56,1.0,0.0,0.0,2592.183193942679,0.0,0.0,24805.0,0,42,1,4981,201106691,,,400.0,,1.0,3.0,5.0,0.0,1.0,1.0,3379.6400911008423,0.0,1900.0,0.0,0.0,8150.0,0,1,1,113.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2592.183193942679,0.1045024468430832,0.3180592876003287,8150.0,1,1,1_0,1_1_0,1_4_0,1_0_0 -6692,2,52.0,1,0.0,6,120,4,47,56,1.0,0.0,0.0,2519.8749259011197,0.0,0.0,48933.0,50,50,1,4982,201106692,,,308.0,,4.0,1.0,7.0,2.0,7.0,3.8,1286.876018920878,0.0,1847.0,0.0,0.0,26358.0,1,1,1,120.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2519.8749259011197,0.051496432385120874,0.09560190173386143,6936.315789473684,1,1,1_0,1_1_0,1_0_0,1_0_0 -6693,2,60.0,1,0.0,1,111,2,72,72,2.0,0.0,0.0,272.86138883607146,0.0,2919.689338961397,25226.0,71,70,1,4984,201106693,,,200.0,,0.0,1.0,5.0,0.0,2.0,1.5,3686.832218697939,0.0,200.0,1680.0,0.0,16210.0,6,5,1,106.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3192.5507277974684,0.1265579452865087,0.1969494588400659,10806.666666666666,2,1,2_0,2_1_0,2_3_0,2_1_0 -6694,2,46.0,2,0.0,5,111,1,54,52,8.0,0.0,0.0,436.5782221377143,0.0,469.23578661879594,22888.0,50,50,2,4986,201106694,,,,368.0,2.0,2.0,4.0,0.0,2.0,1.5,2235.845760717807,0.0,320.0,270.0,0.0,39791.0,1,1,3,60.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,905.8140087565102,0.03957593537034736,0.022764293653250993,26527.333333333332,8,4,8,8_0,8_3,8_0_0 -6695,2,65.0,3,0.0,6,111,2,77,77,5.0,0.0,0.0,759.918967908459,0.0,1531.098992633923,38011.0,50,50,1,4987,201106695,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1555.9172303784899,0.0,557.0,881.0,0.0,27718.0,5,5,1,80.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2291.017960542382,0.060272499027712555,0.08265451910463893,18478.666666666668,5,3,5,5_1,5_3,5_0_0 -6696,2,43.0,2,0.0,7,111,2,85,48,6.0,0.0,0.0,1637.1683330164287,0.0,1164.399914942938,62500.0,50,71,1,4988,201106696,,,1000.0,,3.0,0.0,5.0,4.0,6.0,3.3,3115.3853128602,0.0,1200.0,670.0,0.0,67518.0,6,1,2,90.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2801.568247959367,0.04482509196734987,0.0414936498113002,20460.0,6,3,6,6_1,6_3,6_0_0 -6697,2,47.0,3,0.0,1,400,2,46,55,5.0,1586.456009138882,0.0,1009.5871386934643,191.17013528913907,0.0,50968.0,31,50,1,4989,201106697,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.5,2260.8303775594404,0.0,740.0,0.0,0.0,43518.0,1,1,1,100.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2787.2132831214853,0.054685553349581806,0.06404736621906994,17407.2,5,3,5,5_1,5_0,5_1_0 -6698,2,85.0,2,0.0,1,111,2,0,75,9.0,2379.684013708323,0.0,1352.833669243618,0.0,478.6371853462844,25977.0,0,20,1,499,201106698,,,,,0.0,4.0,6.0,0.0,1.0,1.0,2365.9255866568433,332.0,865.0,70.0,0.0,30855.0,0,5,1,127.0,8,6.0,1,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4211.154868298226,0.16211090073134796,0.13648208939550238,30855.0,9,5,9,9_1,9_2,9_1_0 -6699,2,18.0,2,0.0,8,111,2,0,84,2.0,0.0,0.0,477.50743046312505,0.0,695.1641283241421,13238.0,0,41,2,4990,201106699,,,,425.0,0.0,0.0,1.0,0.0,1.0,1.0,3369.1562863360164,0.0,350.0,400.0,0.0,9601.0,0,3,3,30.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1172.6715587872673,0.08858374065472634,0.12214056439821552,9601.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -6700,2,70.0,4,0.0,1,120,5,71,71,3.0,0.0,0.0,2826.8439883417004,208.54923849724264,0.0,19479.0,71,50,1,4991,201106700,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1853.5234192039047,0.0,2072.0,0.0,0.0,19436.0,5,5,1,160.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3035.393226838943,0.15582900697360969,0.15617376141381678,12957.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -6701,2,48.0,3,0.0,6,111,4,52,46,7.0,0.0,0.0,2346.6079439902146,90.37133668213848,0.0,45898.0,60,60,1,4992,201106701,,,546.0,,2.0,0.0,6.0,2.0,4.0,2.5,2258.9855121941805,0.0,1720.0,0.0,0.0,55223.0,1,1,2,150.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2436.979280672353,0.053095544047068566,0.044129787962847965,22089.2,7,4,7,7_1,7_3,7_0_0 -6702,1,30.0,3,280.0,1,111,2,0,56,2.0,0.0,0.0,47.7507430463125,0.0,0.0,9375.0,0,71,1,4994,201106702,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1970.837811920574,0.0,35.0,0.0,0.0,14110.0,0,4,3,88.0,5,4.0,2,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,47.7507430463125,0.005093412591606667,0.0033841773952028704,10853.846153846154,2,1,2_1,2_1_1,2_2_1,2_1_0 -6703,2,75.0,3,0.0,3,111,2,77,77,2.0,1443.6749683163828,27.7585263912688,592.1092137742751,152.93610823131127,0.0,21663.0,70,71,1,4996,201106703,,,89.0,,0.0,3.0,5.0,0.0,2.0,1.5,1910.0940322249828,0.0,434.0,0.0,0.0,17762.0,5,5,1,95.0,3,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2216.478816713238,0.10231633738232183,0.12478768250834578,11841.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_1 -6704,2,39.0,3,0.0,6,111,2,43,53,9.0,0.0,0.0,1678.0975413418394,0.0,0.0,37527.0,33,50,1,4997,201106704,,,260.0,,2.0,0.0,4.0,2.0,4.0,2.1,1670.0572883139594,0.0,1230.0,0.0,0.0,72375.0,1,1,2,125.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1678.0975413418394,0.044717071477651804,0.023186149103168765,34464.28571428571,9,5,9,9_1,9_3,9_0_0 -6705,2,69.0,3,0.0,9,221,2,0,78,8.0,0.0,832.755791738064,1214.233180320518,104.27461924862132,0.0,19579.0,0,50,1,4998,201106705,,,280.0,,0.0,1.0,3.0,0.0,1.0,1.0,1901.04955626224,0.0,890.0,0.0,0.0,26200.0,0,5,1,105.0,1,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2151.2635913072036,0.10987607085689788,0.08210929737813755,26200.0,8,4,8,8_1,8_1,8_0_0 -6706,2,45.0,3,0.0,1,112,6,11,13,3.0,0.0,0.0,2387.537152315625,333.6787815955882,0.0,31041.0,50,50,1,5,201106706,,,,,3.0,0.0,8.0,2.0,4.0,2.5,1055.037503252801,0.0,1750.0,0.0,0.0,36599.0,1,1,2,147.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2721.215933911213,0.08766521484202226,0.07435219360942139,14639.6,3,2,3_0,3_1_0,3_0_0,3_1_0 -6707,2,69.0,3,0.0,7,112,5,0,77,8.0,940.7684134193571,0.0,556.6372332255858,93.84715732375918,0.0,12169.0,0,70,1,50,201106707,,,193.0,,0.0,1.0,4.0,0.0,1.0,1.0,1641.868817755813,0.0,408.0,0.0,0.0,25153.0,0,5,1,110.0,8,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1591.252803968702,0.13076282389421498,0.0632629429479069,25153.0,8,4,8,8_1,8_0,8_0_0 -6708,2,45.0,3,0.0,7,300,4,0,48,4.0,0.0,499.65347504283835,1159.6609025533037,135.55700502320772,0.0,31820.0,0,50,1,500,201106708,,,510.0,,1.0,0.0,6.0,3.0,4.0,2.5,1519.3624913288124,0.0,850.0,0.0,0.0,37278.0,0,1,2,120.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1794.8713826193498,0.05640702019545411,0.048148274655811736,14911.2,3,2,3_0,3_1_0,3_0_0,3_0_0 -6709,1,45.0,2,101.0,1,112,2,0,62,1.0,0.0,0.0,395.6490138123036,0.0,955.8506764456954,14142.0,0,50,1,5000,201106709,,,188.0,,1.0,0.0,1.0,1.0,2.0,1.3,2588.5857632056495,0.0,290.0,550.0,0.0,7368.0,0,1,3,35.0,8,0.0,2,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1351.499690257999,0.09556637606123596,0.18342829672339833,5667.692307692308,1,1,1_1,1_1_1,1_0_1,1_1_0 -6710,2,53.0,3,0.0,6,111,4,46,38,8.0,0.0,0.0,995.9440692516608,182.4805836850873,0.0,56476.0,41,50,1,5003,201106710,,,,,2.0,3.0,7.0,1.0,3.0,2.0,1436.3075015873226,0.0,730.0,0.0,0.0,56100.0,1,1,1,100.0,6,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1178.424652936748,0.02086593691013436,0.021005787039870733,28050.0,8,4,8,8_1,8_2,8_0_0 -6711,1,40.0,2,111.0,2,111,2,56,48,4.0,0.0,0.0,818.5841665082144,0.0,1042.7461924862132,50000.0,42,31,2,5004,201106711,,,,,2.0,0.0,4.0,1.0,4.0,2.5,1589.7331417689707,0.0,600.0,600.0,0.0,38752.0,1,1,2,87.0,8,7.0,5,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1861.3303589944276,0.03722660717988855,0.04803185278164811,15500.8,4,2,4_1,4_0_1,4_3_1,4_0_1 -6712,2,38.0,3,0.0,9,112,4,56,63,5.0,0.0,0.0,1773.5990274344645,0.0,0.0,60104.0,43,50,1,5005,201106712,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2895.5495561689445,0.0,1300.0,0.0,0.0,38836.0,1,1,1,97.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1773.5990274344645,0.02950883514299322,0.045668941895006296,18493.333333333332,5,3,5,5_1,5_0,5_0_0 -6713,2,20.0,3,0.0,4,111,1,85,67,1.0,0.0,0.0,682.1534720901786,0.0,0.0,23507.0,50,71,2,5006,201106713,,,,700.0,1.0,0.0,3.0,2.0,4.0,2.1,3068.789439965866,0.0,500.0,0.0,0.0,10447.0,6,1,3,60.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,682.1534720901786,0.029019163316891933,0.06529658965159171,4974.761904761905,1,1,1_0,1_0_0,1_3_0,1_0_1 -6714,2,56.0,4,0.0,1,111,2,0,72,1.0,31.729120182777642,0.0,341.0767360450893,0.0,1042.7461924862132,17770.0,0,20,2,5007,201106714,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3831.1092493092815,0.0,250.0,600.0,0.0,5259.0,0,7,1,50.0,9,7.0,1,8,1,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1415.5520487140802,0.07965965383872145,0.2691675316056437,5259.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -6715,1,35.0,3,90.0,99,111,1,85,22,4.0,0.0,0.0,245.5752499524643,0.0,139.0328256648284,24300.0,41,43,2,5008,201106715,,,240.0,236.0,1.0,0.0,3.0,2.0,4.0,2.1,3132.985005111355,0.0,180.0,80.0,0.0,33194.0,4,1,3,60.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,384.6080756172927,0.0158274928237569,0.011586674568213915,15806.666666666666,4,2,4_1,4_0_1,4_3_1,4_0_0 -6716,1,29.0,2,200.0,9,300,2,85,62,2.0,0.0,485.77421184720396,955.0148609262501,0.0,0.0,39244.0,71,71,1,5011,201106716,,,150.0,,1.0,0.0,4.0,3.0,5.0,2.4,2978.317106653921,0.0,700.0,0.0,0.0,25110.0,6,4,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1440.789072773454,0.036713614126323874,0.05737909489340717,10462.5,2,1,2_1,2_1_1,2_0_1,2_0_0 -6717,2,49.0,2,0.0,1,111,2,34,45,8.0,1377.0438159325497,781.4025179142167,1091.4455553442858,521.3730962431066,0.0,73267.0,20,43,1,5012,201106717,,,552.0,,2.0,0.0,7.0,3.0,5.0,2.6,2939.8831861601793,0.0,800.0,0.0,0.0,67062.0,1,1,2,120.0,4,4.0,4,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3771.264985434159,0.051472900288454,0.05623549827673137,25793.076923076922,8,4,8,8_1,8_2,8_1_0 -6718,2,61.0,2,0.0,5,111,2,74,72,10.0,0.0,0.0,6977.065712538347,208.54923849724264,0.0,47312.0,10,41,1,5013,201106718,,,308.0,,0.0,2.0,5.0,0.0,2.0,1.5,1834.3415200918728,0.0,5114.0,0.0,0.0,1807632.0,5,5,1,200.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,7185.61495103559,0.1518772182751858,0.00397515365463523,1205088.0,10,5,10,10_1,10_2,10_0_0 -6719,1,28.0,3,332.0,5,111,1,85,63,2.0,0.0,0.0,304.2404485522197,521.3730962431066,0.0,7216.0,71,71,2,5014,201106719,,,,,1.0,0.0,3.0,1.0,3.0,1.8,4255.414071411042,0.0,223.0,0.0,0.0,17881.0,6,4,3,55.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,825.6135447953263,0.11441429390179135,0.046172671818988105,9933.888888888889,2,1,2_1,2_0_1,2_2_1,2_0_0 -6720,2,36.0,2,0.0,8,112,2,63,56,6.0,0.0,0.0,764.7018039626064,0.0,1580.619549541122,26258.0,71,50,1,5015,201106720,,,300.0,,2.0,0.0,6.0,1.0,3.0,1.8,1745.1685521632987,1470.0,0.0,0.0,0.0,34636.0,1,1,1,177.0,8,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2345.3213535037285,0.08931835453971089,0.06771340089801733,19242.222222222223,6,3,6,6_1,6_1,6_0_0 -6721,2,47.0,5,0.0,8,120,2,13,54,1.0,0.0,0.0,2373.8940828738214,180.74267336427695,0.0,32955.0,42,42,1,5016,201106721,,,221.0,,2.0,1.0,6.0,1.0,3.0,2.0,2560.4775632274122,0.0,1740.0,0.0,0.0,18090.0,1,1,2,140.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2554.6367562380983,0.07751894268663627,0.14121817336860687,9045.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -6722,2,66.0,2,0.0,9,400,2,72,78,7.0,0.0,0.0,532.0797082303393,1564.1192887293198,0.0,24297.0,70,50,1,5017,201106722,,,90.0,500.0,0.0,4.0,3.0,0.0,2.0,1.5,1104.0700253326231,0.0,390.0,0.0,0.0,32938.0,5,5,3,66.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2096.198996959659,0.0862739843173914,0.06364074919423338,21958.666666666668,7,4,7,7_1,7_0,7_0_0 -6723,1,65.0,3,259.0,99,111,4,0,74,3.0,0.0,0.0,957.7434748146107,0.0,0.0,11188.0,0,71,2,5018,201106723,,,,393.0,0.0,1.0,3.0,0.0,1.0,1.0,3271.457432239834,0.0,702.0,0.0,0.0,12900.0,0,5,3,75.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,957.7434748146107,0.08560452938993661,0.07424368021818688,12900.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -6724,2,31.0,3,0.0,99,120,4,69,21,2.0,0.0,0.0,1432.5222913893751,177.26685272265624,0.0,31694.0,60,50,1,502,201106724,,,600.0,,2.0,0.0,4.0,3.0,5.0,2.6,2314.7394242239743,0.0,1050.0,0.0,0.0,24270.0,1,1,1,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1609.7891441120314,0.0507916054809122,0.06632835369229631,9334.615384615385,1,1,1_0,1_1_0,1_0_0,1_0_0 -6725,2,62.0,3,0.0,5,112,5,52,75,6.0,0.0,0.0,1643.9898677373305,156.41192887293198,0.0,30838.0,70,50,1,5020,201106725,,,230.0,,1.0,3.0,6.0,0.0,2.0,1.5,1821.033973760161,0.0,1205.0,0.0,0.0,29928.0,5,5,1,170.0,8,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1800.4017966102624,0.05838257333842215,0.06015777187283689,19952.0,6,3,6,6_1,6_0,6_0_0 -6726,1,22.0,3,182.0,1,111,4,0,84,5.0,0.0,0.0,627.5811943229643,0.0,0.0,19325.0,0,20,2,5021,201106726,,,,218.0,0.0,0.0,1.0,0.0,1.0,1.0,3052.8070066766213,0.0,460.0,0.0,0.0,18604.0,0,3,3,19.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,627.5811943229643,0.032475094143491035,0.033733669873304895,18604.0,5,3,5,5_0,5_3,5_1_0 -6727,2,78.0,2,0.0,1,211,4,0,78,5.0,1903.7472109666587,0.0,4092.920832541072,97.32297796537989,0.0,16390.0,0,71,1,5022,201106727,,,120.0,,0.0,5.0,5.0,0.0,1.0,1.0,2933.8583341586914,0.0,3000.0,0.0,0.0,18410.0,0,5,1,69.0,2,3.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,6093.991021473111,0.3718115327317334,0.33101526461016356,18410.0,5,3,5,5_1,5_1,5_1_0 -6728,2,56.0,1,0.0,7,111,2,0,33,10.0,0.0,0.0,300.1475277196786,0.0,556.1313026593136,26380.0,0,10,2,5023,201106728,,,,523.0,1.0,1.0,3.0,0.0,1.0,1.0,2656.2444271417558,0.0,220.0,320.0,0.0,66763.0,0,1,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,856.2788303789922,0.03245939463150084,0.01282564939231299,66763.0,10,5,10,10_0,10_4,10_0_0 -6729,2,79.0,1,0.0,1,111,6,0,72,6.0,2927.011336861238,0.0,2406.63744953415,0.0,0.0,17563.0,0,50,1,5024,201106729,,,95.0,,0.0,2.0,3.0,0.0,1.0,1.0,4435.862623742495,0.0,1764.0,0.0,0.0,19300.0,0,5,1,89.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5333.648786395388,0.30368665867991734,0.2763548593987248,19300.0,6,3,6,6_1,6_4,6_1_0 -6730,2,50.0,3,0.0,8,111,4,54,33,8.0,0.0,0.0,1023.230208135268,0.0,0.0,39190.0,30,12,2,5025,201106730,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2721.9397687796436,0.0,750.0,0.0,0.0,50110.0,1,1,1,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1023.230208135268,0.02610947201161694,0.020419680864802794,27838.888888888887,8,4,8,8_0,8_3,8_0_0 -6731,2,33.0,3,0.0,9,112,4,54,69,5.0,0.0,0.0,1607.153580244461,0.0,0.0,31579.0,42,50,1,5026,201106731,,,510.0,,2.0,0.0,4.0,2.0,4.0,2.1,1947.2890554759263,0.0,1178.0,0.0,0.0,37785.0,1,1,2,92.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1607.153580244461,0.05089311188588812,0.042534169121197854,17992.85714285714,5,3,5,5_1,5_0,5_0_0 -6732,2,88.0,1,0.0,3,111,2,77,74,10.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,28883.0,71,12,1,5027,201106732,,,,,0.0,6.0,7.0,0.0,2.0,1.5,1976.3572686554655,400.0,0.0,0.0,0.0,63137.0,6,5,1,150.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,638.1826812255044,0.022095443036578764,0.010107903150696176,42091.333333333336,10,5,10,10_1,10_3,10_0_1 -6733,2,34.0,3,0.0,9,300,2,56,48,7.0,0.0,208.188947934516,982.3009998098572,59.088950907552075,0.0,44488.0,42,31,1,5029,201106733,,,300.0,,2.0,0.0,5.0,1.0,3.0,1.8,2291.888067848478,0.0,720.0,0.0,0.0,43518.0,1,1,2,108.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1249.5788986519253,0.028087998980667266,0.02871407000900605,24176.666666666668,7,4,7,7_1,7_0,7_0_0 -6734,2,59.0,2,0.0,4,111,1,55,33,10.0,0.0,0.0,322.52729146722174,0.0,666.6558644323101,30698.0,41,41,2,5030,201106734,,,,,2.0,2.0,3.0,0.0,2.0,1.5,3153.8942243205456,620.0,0.0,0.0,0.0,60017.0,1,1,1,67.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,989.1831558995318,0.03222304892499615,0.01648171611209377,40011.333333333336,10,5,10,10_0,10_3,10_0_1 -6735,2,27.0,3,0.0,2,111,1,42,46,7.0,0.0,0.0,491.1504999049286,0.0,250.25908619669116,39644.0,20,10,2,5031,201106735,,,,700.0,2.0,0.0,3.0,1.0,3.0,1.8,3025.8716340418882,0.0,360.0,144.0,0.0,42692.0,1,1,3,43.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,741.4095861016198,0.018701684645888905,0.017366475829233105,23717.777777777777,7,4,7,7_0,7_4,7_0_1 -6736,0,51.0,3,0.0,1,120,2,46,53,8.0,515.5982029701368,138.792631956344,313.79059716148214,180.74267336427695,0.0,41737.0,31,50,1,5032,201106736,,,,,3.0,0.0,4.0,2.0,4.0,2.5,1479.656057656208,0.0,230.0,0.0,0.0,64391.0,1,1,5,100.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1148.9241054522397,0.02752771175341399,0.01784292999723936,25756.4,8,4,8,8_1,8_0,8_1_0 -6737,2,75.0,4,0.0,1,300,2,72,77,2.0,0.0,0.0,496.27586461246705,0.0,1025.789830110361,8487.0,71,50,1,5037,201106737,,,256.0,,0.0,4.0,3.0,0.0,2.0,1.5,2692.3427205929165,954.0,0.0,0.0,0.0,14330.0,5,5,1,80.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1522.065694722828,0.1793408383083337,0.10621533110417503,9553.333333333334,1,1,1_0,1_1_0,1_0_0,1_1_0 -6738,2,79.0,3,0.0,4,111,2,75,74,9.0,0.0,0.0,1860.2482468820724,0.0,3885.0784865710825,66790.0,41,41,1,5038,201106738,,,1904.0,,0.0,2.0,6.0,0.0,2.0,1.5,1763.5583764384555,518.0,1166.0,1915.0,0.0,51553.0,5,5,1,170.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5745.326733453155,0.08602076259100397,0.11144505137340513,34368.666666666664,9,5,9,9_1,9_3,9_0_1 -6739,2,56.0,4,0.0,5,111,1,0,54,8.0,0.0,0.0,245.5752499524643,0.0,0.0,30816.0,0,42,2,5039,201106739,,,,980.0,1.0,2.0,3.0,0.0,1.0,1.0,3266.863600597388,0.0,180.0,0.0,0.0,25270.0,0,1,3,73.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,245.5752499524643,0.007969082617875918,0.00971805500405478,25270.0,8,4,8,8_0,8_4,8_0_0 -6740,2,46.0,2,0.0,7,120,5,52,47,9.0,0.0,0.0,117.33039719951073,260.6865481215533,0.0,40460.0,50,42,1,504,201106740,,,,,4.0,0.0,5.0,2.0,4.0,2.5,1237.0610233857744,0.0,86.0,0.0,0.0,75110.0,1,1,2,100.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,378.01694532106404,0.009342979370268513,0.005032844432446599,30044.0,9,5,9,9_1,9_0,9_0_0 -6741,2,50.0,1,0.0,1,111,2,65,37,10.0,0.0,0.0,1126.7646989000036,0.0,2328.9945199361027,61283.0,50,71,1,5044,201106741,,,,,2.0,3.0,7.0,1.0,3.0,2.0,1532.1653092771764,2166.0,0.0,0.0,0.0,89824.0,1,1,2,180.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3455.7592188361064,0.05639017702847619,0.0384725598819481,44912.0,10,5,10,10_1,10_3,10_1_0 -6742,1,34.0,3,167.0,4,120,4,52,56,1.0,0.0,0.0,98.23009998098573,0.0,0.0,25455.0,50,50,1,5045,201106742,,,160.0,189.0,2.0,1.0,5.0,1.0,3.0,1.8,1255.5380644427726,0.0,72.0,0.0,0.0,14145.0,1,1,3,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,98.23009998098573,0.003858970731918512,0.006944510426368733,7858.333333333333,1,1,1_1,1_1_1,1_0_1,1_0_1 -6743,2,46.0,3,0.0,7,111,4,0,52,5.0,0.0,0.0,1023.230208135268,0.0,0.0,15771.0,0,50,8,5046,201106743,,,,220.0,1.0,0.0,1.0,0.0,1.0,1.0,3380.85954390088,0.0,750.0,0.0,0.0,17380.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1023.230208135268,0.06488049002189258,0.058874005071074105,17380.0,5,3,5,5_0,5_4,5_0_0 -6744,2,87.0,2,0.0,4,111,1,86,75,8.0,0.0,0.0,287.8687652220554,0.0,128.6053637399663,33283.0,70,70,2,5048,201106744,,,,,0.0,1.0,4.0,0.0,2.0,1.5,4217.117323641129,0.0,211.0,74.0,0.0,38142.0,6,5,1,90.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,416.4741289620217,0.012513118678064528,0.010919042760264844,25428.0,8,4,8,8_0,8_2,8_0_1 -6745,2,39.0,3,0.0,1,112,4,55,47,3.0,0.0,0.0,1637.1683330164287,208.54923849724264,0.0,27127.0,20,43,1,505,201106745,,,329.0,,2.0,0.0,4.0,2.0,4.0,2.1,2314.4740684876147,0.0,1200.0,0.0,0.0,28691.0,1,4,2,136.0,7,4.0,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1845.7175715136714,0.06803987066441816,0.06433089022737692,13662.380952380952,3,2,3_0,3_1_0,3_2_0,3_1_0 -6746,1,21.0,5,253.0,4,112,1,0,56,7.0,0.0,0.0,491.1504999049286,291.9689338961397,0.0,22958.0,0,71,2,5050,201106746,,,,215.0,4.0,5.0,6.0,3.0,5.0,3.0,3486.079825535175,0.0,360.0,0.0,0.0,70806.0,0,1,3,147.0,10,3.0,5,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,783.1194338010682,0.03411096061508268,0.011060071657784202,23602.0,7,4,7,7_0,7_1,7_0_1 -6747,1,49.0,4,484.0,4,111,1,46,56,2.0,0.0,0.0,527.9867873977983,0.0,297.1826648585707,17383.0,50,43,2,5051,201106747,,,,,2.0,0.0,6.0,4.0,6.0,2.9,1282.2090237984344,0.0,387.0,171.0,0.0,31158.0,4,1,3,104.0,4,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,825.1694522563689,0.04746991038695098,0.026483389571101128,10744.137931034484,2,1,2_1,2_0_1,2_2_1,2_0_1 -6748,2,62.0,2,0.0,5,120,2,0,78,3.0,0.0,0.0,107.78024859024822,0.0,74.73014379484528,16585.0,0,50,1,5054,201106748,,,24.0,,0.0,0.0,3.0,0.0,1.0,1.0,3519.933782677524,0.0,79.0,43.0,0.0,14197.0,0,5,1,70.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,182.5103923850935,0.011004545817611908,0.012855560497646933,14197.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -6749,2,85.0,3,0.0,2,111,1,0,77,5.0,0.0,0.0,107.78024859024822,0.0,769.8942721189874,12033.0,0,60,2,5055,201106749,,,167.0,,0.0,2.0,3.0,0.0,1.0,1.0,3537.2968620644488,0.0,79.0,443.0,0.0,18327.0,0,5,1,80.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,877.6745207092356,0.07293896124900155,0.04788969938938373,18327.0,5,3,5,5_0,5_3,5_0_1 -6750,2,62.0,3,0.0,6,111,2,68,77,8.0,0.0,0.0,2815.9295327882573,0.0,0.0,26342.0,71,41,1,5056,201106750,,,1032.0,,2.0,1.0,6.0,2.0,4.0,2.5,3225.629796309528,0.0,2064.0,0.0,0.0,66440.0,1,5,1,127.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2815.9295327882573,0.10689885099036738,0.042383045346000264,26576.0,8,4,8,8_1,8_4,8_0_0 -6751,2,33.0,3,0.0,99,120,1,85,67,2.0,0.0,0.0,241.48232911992324,125.12954309834558,0.0,13434.0,43,60,2,5057,201106751,,,,331.0,1.0,0.0,3.0,1.0,3.0,1.8,5424.23625275835,0.0,177.0,0.0,0.0,17583.0,6,1,3,70.0,0,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,366.6118722182688,0.027289852033517106,0.020850359564253473,9768.333333333334,1,1,1_0,1_0_0,1_1_0,1_0_0 -6752,2,48.0,3,0.0,1,120,6,0,52,4.0,1364.3521678594386,0.0,682.1534720901786,64.30268186998315,0.0,16625.0,0,71,1,5059,201106752,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3889.0220972170637,0.0,500.0,0.0,0.0,15560.0,0,1,3,50.0,0,2.0,1,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2110.8083218196,0.12696591409441205,0.135656061813599,15560.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -6753,2,60.0,3,0.0,5,111,1,0,75,4.0,0.0,0.0,109.14455553442858,0.0,0.0,10797.0,0,42,8,506,201106753,,,,379.0,0.0,2.0,1.0,0.0,1.0,1.0,3758.8675252441662,0.0,80.0,0.0,0.0,15714.0,0,5,3,14.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,109.14455553442858,0.01010878536023234,0.006945688910171094,15714.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -6754,2,51.0,3,0.0,8,112,5,22,63,4.0,0.0,693.9631597817199,818.5841665082144,0.0,0.0,35438.0,50,41,2,5061,201106754,,,,,2.0,0.0,3.0,1.0,3.0,2.0,1711.2882157182546,0.0,600.0,0.0,0.0,29341.0,4,1,2,100.0,9,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1512.5473262899343,0.04268150929200108,0.05155063993353786,14670.5,3,2,3_0,3_0_0,3_0_0,3_0_0 -6755,2,39.0,1,0.0,7,120,4,56,46,6.0,0.0,416.377895869032,2128.318832921357,0.0,0.0,47257.0,43,31,1,5063,201106755,,,590.0,,2.0,0.0,7.0,2.0,4.0,2.1,2648.1904655855737,0.0,1560.0,0.0,0.0,43449.0,1,1,2,150.0,0,3.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2544.696728790389,0.05384803793703343,0.05856744064973622,20690.0,6,3,6,6_1,6_1,6_0_0 -6756,2,83.0,3,0.0,3,111,2,72,75,10.0,0.0,0.0,338.1334507317647,0.0,698.9134062596798,20031.0,70,70,1,5064,201106756,,,,,0.0,0.0,3.0,0.0,2.0,1.5,2442.510450009087,650.0,0.0,0.0,0.0,71603.0,5,5,1,85.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1037.0468569914447,0.051772096100616276,0.014483287809050524,47735.333333333336,10,5,10,10_1,10_4,10_0_1 -6757,2,51.0,2,0.0,2,111,2,34,37,9.0,0.0,11.10341055650752,728.2874323453394,0.0,1505.351951943926,173554.0,10,30,1,5066,201106757,,,,,2.0,0.0,7.0,3.0,5.0,2.6,1719.6465838510485,1400.0,0.0,0.0,0.0,91650.0,4,1,2,200.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2244.742794845773,0.012933973258154655,0.02449255640857363,35250.0,9,5,9,9_1,9_4,9_0_1 -6758,2,76.0,2,0.0,4,111,2,75,78,7.0,0.0,0.0,878.6267665937703,0.0,1816.0996048809222,25109.0,41,60,1,5067,201106758,,,138.0,,0.0,1.0,4.0,0.0,2.0,1.5,1966.2098178971332,1689.0,0.0,0.0,0.0,36695.0,5,5,1,80.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2694.7263714746923,0.10732113471164492,0.07343579156491872,24463.333333333332,7,4,7,7_1,7_2,7_0_1 -6759,2,72.0,3,0.0,2,111,1,0,78,7.0,0.0,0.0,231.93218051066074,0.0,0.0,14275.0,0,70,2,507,201106759,,,,249.0,0.0,0.0,2.0,0.0,1.0,1.0,2933.7628238707352,0.0,170.0,0.0,0.0,21835.0,0,5,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,231.93218051066074,0.016247438214407058,0.010622037119792111,21835.0,7,4,7,7_0,7_4,7_0_1 -6760,2,73.0,1,0.0,4,111,2,77,75,9.0,0.0,0.0,654.8673332065715,0.0,2537.3490683831187,70436.0,60,50,1,5070,201106760,,,530.0,,1.0,0.0,5.0,1.0,4.0,2.3,1769.7805927920278,0.0,480.0,1460.0,0.0,78854.0,5,5,1,110.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3192.21640158969,0.04532080756416733,0.04048261853031793,34284.34782608696,9,5,9,9_1,9_4,9_0_1 -6761,1,18.0,2,170.0,8,111,4,0,84,1.0,0.0,0.0,409.2920832541072,0.0,0.0,9689.0,0,41,2,5071,201106761,,,150.0,,0.0,0.0,1.0,0.0,1.0,1.0,4194.865989283933,0.0,300.0,0.0,0.0,8040.0,0,3,3,33.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,409.2920832541072,0.04224296452204636,0.05090697552911781,8040.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -6762,1,48.0,4,183.0,4,120,2,0,63,8.0,0.0,0.0,21.828911106885716,0.0,26.06865481215533,22578.0,0,50,1,5072,201106762,,,205.0,,1.0,2.0,4.0,0.0,3.0,2.0,3570.3597654892583,0.0,16.0,15.0,0.0,51907.0,0,1,3,95.0,0,2.0,5,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,47.89756591904104,0.0021214264292249555,0.0009227573529397006,25953.5,8,4,8,8_1,8_1,8_0_1 -6763,2,32.0,3,0.0,1,112,2,54,13,9.0,2538.3296146222115,0.0,1105.0886247860894,0.0,0.0,43960.0,31,31,1,5073,201106763,,,,,2.0,0.0,6.0,1.0,3.0,1.8,5646.533915425983,0.0,810.0,0.0,0.0,55363.0,1,1,2,100.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3643.418239408301,0.08288030571902413,0.06580962446775465,30757.222222222223,9,5,9,9_1,9_0,9_1_0 -6764,2,45.0,5,0.0,1,111,6,0,68,4.0,0.0,0.0,720.3540665272286,0.0,1564.1192887293198,21590.0,0,50,2,5074,201106764,,,,354.0,1.0,0.0,4.0,2.0,3.0,1.6,3037.9817483096826,0.0,528.0,900.0,0.0,25588.0,0,1,3,80.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2284.4733552565485,0.10581164220734361,0.0892790900131526,15992.5,4,2,4_0,4_0_0,4_3_0,4_1_0 -6765,2,83.0,3,0.0,2,111,2,0,72,1.0,0.0,0.0,1399.9081313782583,0.0,891.3834058296532,16997.0,0,70,2,5075,201106765,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3659.7490559204452,829.0,710.0,0.0,0.0,8709.0,0,5,1,85.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2291.2915372079115,0.13480564436123502,0.26309467645055823,8709.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -6766,0,38.0,3,0.0,1,300,2,0,55,2.0,2062.392811880547,0.0,0.0,194.64595593075978,0.0,9829.0,0,41,1,5076,201106766,,,,,1.0,0.0,11.0,0.0,1.0,1.0,2164.706097600851,0.0,0.0,0.0,0.0,11294.0,0,4,5,300.0,0,0.0,1,9,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2257.0387678113066,0.22963055934594634,0.19984405594220883,11294.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -6767,2,49.0,1,0.0,1,112,5,42,35,8.0,0.0,499.65347504283835,1302.9131316922412,31.282385774586395,0.0,51213.0,41,31,2,5077,201106767,,,,,2.0,0.0,5.0,2.0,4.0,2.5,7705.642088722076,0.0,955.0,0.0,0.0,62534.0,1,1,1,150.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1833.848992509666,0.0358082711910973,0.02932563073703371,25013.6,8,4,8,8_0,8_1,8_1_0 -6768,2,30.0,4,0.0,5,111,2,0,53,5.0,0.0,0.0,613.9381248811608,0.0,1703.1521143941482,19952.0,0,50,2,508,201106768,,,,480.0,1.0,1.0,3.0,0.0,1.0,1.0,4312.39657385437,0.0,450.0,980.0,0.0,17864.0,0,1,3,71.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2317.0902392753087,0.11613323171989318,0.12970724581702356,17864.0,5,3,5,5_0,5_4,5_0_0 -6769,2,65.0,2,0.0,1,112,4,78,75,8.0,0.0,0.0,3069.6906244058036,156.41192887293198,0.0,37904.0,71,10,1,5081,201106769,,,230.0,,0.0,4.0,5.0,0.0,2.0,1.5,2632.637782680147,0.0,2250.0,0.0,0.0,37789.0,5,5,1,80.0,9,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3226.1025532787357,0.0851124565554753,0.08537147194365385,25192.666666666668,8,4,8,8_1,8_0,8_1_0 -6770,2,37.0,2,0.0,4,111,1,55,56,4.0,0.0,0.0,600.2950554393572,0.0,191.17013528913907,33947.0,50,42,2,5082,201106770,,,,,2.0,1.0,4.0,1.0,3.0,1.8,2279.850622343577,0.0,440.0,110.0,0.0,27741.0,1,1,2,80.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,791.4651907284963,0.023314731514669815,0.028530521276395816,15411.666666666666,4,2,4_0,4_0_0,4_2_0,4_0_1 -6771,2,34.0,2,0.0,2,400,5,0,55,8.0,0.0,832.755791738064,2728.6138883607146,156.41192887293198,0.0,31649.0,0,50,1,5083,201106771,,,,,1.0,1.0,8.0,1.0,2.0,1.5,1131.0533675532488,0.0,2000.0,0.0,0.0,37066.0,0,1,1,140.0,0,0.0,2,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3717.7816089717107,0.1174691651859999,0.1003016675382213,24710.666666666668,7,4,7,7_1,7_0,7_0_1 -6772,2,76.0,5,0.0,3,111,1,0,77,5.0,0.0,0.0,3547.198054868929,69.5164128324142,0.0,16399.0,0,70,2,5085,201106772,,,,340.0,0.0,2.0,2.0,0.0,1.0,1.0,3687.113182144588,0.0,2600.0,0.0,0.0,18100.0,0,5,3,45.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3616.714467701343,0.22054481783653535,0.19981847887852724,18100.0,5,3,5,5_0,5_3,5_0_1 -6773,2,61.0,3,0.0,1,111,2,0,68,4.0,0.0,0.0,409.2920832541072,0.0,2189.7670042210475,23733.0,0,71,2,5089,201106773,,,200.0,,3.0,2.0,4.0,2.0,3.0,2.0,2588.305215865457,0.0,300.0,1260.0,0.0,29316.0,0,1,1,143.0,8,6.0,2,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2599.0590874751547,0.10951245470337313,0.08865667510830791,14658.0,3,2,3_0,3_0_0,3_2_0,3_1_0 -6774,2,80.0,3,0.0,4,111,2,77,78,5.0,0.0,0.0,228.8903358799638,0.0,473.110613468091,34884.0,71,71,2,509,201106774,,,,,1.0,3.0,3.0,1.0,3.0,2.0,3764.054474860586,440.0,0.0,0.0,0.0,36403.0,5,5,1,88.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,702.0009493480547,0.020123866223714447,0.019284151013599284,18201.5,5,3,5,5_0,5_3,5_0_1 -6775,1,33.0,4,203.0,9,112,4,56,67,3.0,0.0,0.0,1328.834963631668,36.49611673701746,0.0,37334.0,20,50,1,5090,201106775,,,220.0,347.0,2.0,0.0,4.0,2.0,4.0,2.1,2145.6142657031073,0.0,974.0,0.0,0.0,25949.0,4,4,3,80.0,9,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1365.3310803686854,0.036570715175675936,0.05261594205436377,12356.666666666666,2,1,2_1,2_1_1,2_1_1,2_0_0 -6776,1,62.0,4,83.0,6,111,4,0,78,3.0,0.0,0.0,422.93515269591074,0.0,0.0,11695.0,0,50,2,5091,201106776,,,,222.0,0.0,0.0,1.0,0.0,1.0,1.0,3034.2641940529643,0.0,310.0,0.0,0.0,13816.0,0,5,3,20.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,422.93515269591074,0.036163758246764495,0.03061198267920605,13816.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -6777,2,42.0,4,0.0,3,221,4,21,21,10.0,0.0,20.818894793451598,2865.0445827787503,95.58506764456953,0.0,21626.0,50,71,1,5093,201106777,,,260.0,,2.0,2.0,4.0,0.0,2.0,1.5,2894.999932133287,0.0,2100.0,0.0,0.0,173869.0,1,1,1,120.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2981.4485452167714,0.13786407774053322,0.017147671782875448,115912.66666666667,10,5,10,10_1,10_1,10_0_1 -6778,2,67.0,3,0.0,3,120,5,0,77,3.0,0.0,562.1101594231932,2455.752499524643,312.82385774586396,0.0,41610.0,0,60,1,5095,201106778,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2961.7978135504254,0.0,1800.0,0.0,0.0,19010.0,0,5,1,89.0,0,0.0,5,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3330.6865166937005,0.08004533806041098,0.17520707610172018,12673.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1 -6779,1,42.0,4,30.0,7,221,2,56,63,2.0,0.0,0.0,2428.466360641036,0.0,0.0,22404.0,50,50,1,5096,201106779,,,140.0,,2.0,0.0,4.0,2.0,4.0,2.1,900.4445326166029,0.0,1780.0,0.0,0.0,23243.0,4,4,2,100.0,1,2.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2428.466360641036,0.10839432068563809,0.1044816228817724,11068.095238095239,2,1,2_1,2_1_1,2_1_1,2_0_0 -6780,1,54.0,4,264.0,5,111,1,0,77,2.0,0.0,0.0,184.18143746434822,0.0,503.99399303500303,6614.0,0,70,2,5097,201106780,130.0,130.0,177.0,,0.0,5.0,3.0,0.0,1.0,1.0,2291.423832779139,0.0,135.0,290.0,0.0,9488.0,0,4,3,60.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,688.1754304993513,0.10404829611420491,0.07253113727859942,9488.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -6781,2,51.0,3,0.0,7,221,4,68,46,5.0,0.0,0.0,1498.0090247100322,333.6787815955882,0.0,32160.0,50,71,1,5099,201106781,,,349.0,,2.0,0.0,4.0,1.0,3.0,2.0,1629.3823611127666,0.0,1098.0,0.0,0.0,37828.0,1,1,1,95.0,1,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1831.6878063056204,0.05695546661398073,0.04842148160900974,18914.0,5,3,5,5_1,5_1,5_0_0 -6782,2,38.0,1,0.0,1,120,2,48,43,8.0,1166.0451667170785,0.0,573.00891655575,86.89551604051776,0.0,79773.0,31,33,1,51,201106782,,,506.0,,2.0,0.0,5.0,2.0,4.0,2.1,2543.306207607211,0.0,420.0,0.0,0.0,58619.0,1,1,2,120.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1825.9495993133462,0.02288931843246896,0.031149449825369695,27913.809523809523,8,4,8,8_1,8_1,8_1_0 -6783,2,58.0,3,0.0,99,111,1,68,52,8.0,0.0,0.0,613.9381248811608,0.0,590.8895090755208,16906.0,71,60,2,510,201106783,,,,371.0,2.0,3.0,5.0,0.0,2.0,1.5,2430.419814854219,0.0,450.0,340.0,0.0,39374.0,1,1,3,93.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1204.8276339566814,0.07126627433790853,0.030599574184910893,26249.333333333332,8,4,8,8_0,8_3,8_0_0 -6784,2,65.0,3,0.0,5,112,4,75,75,9.0,0.0,693.9631597817199,2031.453039884552,0.0,0.0,37033.0,50,50,1,5100,201106784,,,324.0,,0.0,2.0,5.0,0.0,2.0,1.5,1634.691559871625,0.0,1489.0,0.0,0.0,45950.0,5,5,1,120.0,8,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2725.416199666272,0.07359425916523836,0.059312648523749116,30633.333333333332,9,5,9,9_1,9_0,9_0_0 -6785,2,34.0,3,0.0,5,111,2,54,46,7.0,0.0,0.0,24.557524995246432,0.0,712.5432315322456,48327.0,41,31,2,5104,201106785,,,,329.0,2.0,0.0,3.0,1.0,3.0,1.8,2957.929161152959,0.0,18.0,410.0,0.0,44274.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,737.1007565274921,0.015252359064860058,0.016648614458316214,24596.666666666664,7,4,7,7_0,7_4,7_0_0 -6786,1,34.0,3,254.0,1,111,6,63,67,2.0,0.0,0.0,995.9440692516608,229.4041623469669,0.0,18579.0,50,71,1,5105,201106786,,,280.0,126.0,2.0,1.0,5.0,2.0,4.0,2.1,4692.174591197107,0.0,730.0,0.0,0.0,22544.0,4,1,3,82.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1225.3482315986278,0.06595340069964087,0.05435362986154311,10735.238095238095,2,1,2_1,2_1_1,2_2_1,2_1_0 -6787,2,54.0,2,0.0,2,111,2,77,52,8.0,0.0,0.0,50.47935693467322,0.0,114.70208117348345,30776.0,50,71,1,5106,201106787,,,523.0,,1.0,2.0,5.0,0.0,2.0,1.5,3516.141583444187,0.0,37.0,66.0,0.0,40825.0,5,1,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,165.18143810815667,0.00536721595100587,0.004046085440493733,27216.666666666668,8,4,8,8_1,8_3,8_0_1 -6788,2,66.0,3,0.0,1,111,2,72,72,10.0,4442.07682558887,0.0,1023.230208135268,0.0,0.0,45366.0,50,50,1,5107,201106788,,,370.0,,0.0,4.0,6.0,0.0,2.0,1.5,1233.1236342517448,0.0,750.0,0.0,0.0,59990.0,5,5,1,248.0,7,5.0,3,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5465.307033724138,0.12047143309359735,0.0911036345011525,39993.333333333336,10,5,10,10_1,10_2,10_1_0 -6789,2,87.0,2,0.0,2,111,2,77,77,4.0,0.0,0.0,392.9203999239429,0.0,2123.7264120302543,15984.0,71,71,1,5110,201106789,,,208.0,,0.0,4.0,5.0,0.0,2.0,1.5,3130.914593953103,0.0,288.0,1222.0,0.0,24090.0,5,5,1,90.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2516.6468119541973,0.1574478736207581,0.10446852685571595,16060.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -6790,2,37.0,2,0.0,1,111,2,22,34,7.0,0.0,0.0,900.4425831590357,0.0,0.0,32565.0,50,10,2,5111,201106790,,,,678.0,2.0,0.0,2.0,0.0,2.0,1.5,2592.9798917698868,0.0,660.0,0.0,0.0,36257.0,1,1,3,51.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,900.4425831590357,0.02765062438688886,0.024834999673415774,24171.333333333332,7,4,7,7_0,7_3,7_1_0 -6791,2,45.0,2,0.0,6,112,2,38,37,9.0,0.0,555.170527825376,2660.3985411516965,250.25908619669116,0.0,53324.0,41,20,1,5112,201106791,,,,,2.0,2.0,4.0,1.0,3.0,1.8,2164.365083648519,0.0,1950.0,0.0,0.0,65279.0,1,1,2,137.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3465.8281551737637,0.06499565214863408,0.053092543623121734,36266.11111111111,9,5,9,9_1,9_0,9_0_0 -6792,1,48.0,2,178.0,5,111,1,0,63,3.0,0.0,0.0,409.2920832541072,0.0,0.0,22914.0,0,33,2,5115,201106792,,,,188.0,1.0,1.0,4.0,1.0,2.0,1.5,2925.069554232581,0.0,300.0,0.0,0.0,20826.0,0,1,3,72.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,409.2920832541072,0.017862096676883443,0.019652937830313414,13884.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -6793,2,80.0,3,0.0,1,111,2,0,77,4.0,0.0,0.0,1091.4455553442858,208.54923849724264,0.0,9564.0,0,70,1,5116,201106793,,,140.0,,0.0,4.0,4.0,0.0,1.0,1.0,4765.841327113126,0.0,800.0,0.0,0.0,14902.0,0,5,5,80.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1299.9947938415285,0.13592584628205023,0.08723626317551526,14902.0,3,2,3_0,3_1_0,3_2_0,3_1_0 -6794,2,56.0,9,0.0,2,111,2,77,45,6.0,0.0,0.0,718.9897595830482,0.0,1845.6607607005972,48790.0,60,42,1,5118,201106794,,,336.0,,2.0,2.0,5.0,1.0,3.0,2.0,1195.9105713706656,0.0,527.0,1062.0,0.0,42438.0,6,1,1,112.0,7,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2564.650520283645,0.05256508547414727,0.06043287903020041,21219.0,6,3,6,6_1,6_2,6_0_1 -6795,2,53.0,2,0.0,4,120,2,46,47,9.0,0.0,0.0,81.85841665082144,0.0,173.79103208103552,30422.0,41,50,1,512,201106795,,,150.0,,2.0,0.0,4.0,1.0,3.0,2.0,3053.4933553764054,0.0,60.0,100.0,0.0,61545.0,1,1,1,100.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,255.64944873185698,0.008403439903091742,0.00415386219403456,30772.5,9,5,9,9_1,9_1,9_0_1 -6796,2,34.0,2,0.0,5,112,2,52,45,7.0,0.0,0.0,2225.1846259581625,0.0,0.0,76813.0,50,31,1,5120,201106796,,,247.0,,2.0,0.0,6.0,2.0,4.0,2.1,2677.3418682362076,0.0,1631.0,0.0,0.0,48024.0,1,1,2,125.0,7,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2225.1846259581625,0.028968854568343413,0.04633484561798606,22868.571428571428,7,4,7,7_1,7_1,7_0_0 -6797,2,63.0,4,0.0,1,120,2,78,75,3.0,1142.2483265799951,0.0,965.929316479693,0.0,0.0,34776.0,71,20,1,5124,201106797,,,,,0.0,3.0,5.0,0.0,2.0,1.5,3128.4959659190513,0.0,708.0,0.0,0.0,21535.0,6,5,1,100.0,0,2.0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2108.1776430596883,0.06062162534678193,0.0978954094757227,14356.666666666666,3,2,3_0,3_1_0,3_1_0,3_1_0 -6798,1,79.0,5,22.0,1,111,1,0,77,3.0,0.0,0.0,327.43366660328576,0.0,382.34027057827814,7787.0,0,50,2,5125,201106798,,,,427.0,0.0,2.0,2.0,0.0,1.0,1.0,3191.132292660325,0.0,240.0,220.0,0.0,13364.0,0,5,3,60.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,709.773937181564,0.09114857290118968,0.05311089024106285,13364.0,3,2,3_1,3_0_1,3_3_1,3_1_0 -6799,2,44.0,4,0.0,1,400,2,11,55,1.0,2195.655116648213,0.0,1367.035558068718,201.5975972140012,0.0,28031.0,50,71,1,5126,201106799,,,,,2.0,0.0,8.0,2.0,4.0,2.3,1949.4905038139298,0.0,1002.0,0.0,0.0,17631.0,1,1,2,150.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3764.2882719309328,0.13429018843176957,0.21350395734393585,7665.652173913044,1,1,1_0,1_1_0,1_0_0,1_1_0 -6800,2,75.0,3,0.0,3,111,1,77,78,3.0,0.0,0.0,286.504458277875,0.0,278.0656513296568,18663.0,71,71,2,5127,201106800,,,,272.0,0.0,4.0,4.0,0.0,2.0,1.5,5106.658283521308,0.0,210.0,160.0,0.0,18640.0,5,5,3,78.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,564.5701096075318,0.030250769415824455,0.030288096008987755,12426.666666666666,2,1,2_0,2_0_0,2_4_0,2_0_1 -6801,1,56.0,5,98.0,1,111,5,0,52,1.0,0.0,0.0,132.33777358549466,109.48835021105238,0.0,9382.0,0,71,1,5128,201106801,,,161.0,,1.0,4.0,4.0,0.0,1.0,1.0,2515.0439872195084,0.0,97.0,0.0,0.0,5816.0,0,4,3,80.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,241.82612379654705,0.025775540801166813,0.041579457324028034,5816.0,1,1,1_1,1_1_1,1_3_1,1_1_0 -6802,2,78.0,2,0.0,1,221,2,78,78,3.0,0.0,0.0,313.79059716148214,0.0,2937.0684421695005,17986.0,71,71,1,513,201106802,,,331.0,,0.0,8.0,3.0,0.0,2.0,1.5,3795.871342361328,0.0,230.0,1690.0,0.0,21950.0,5,5,3,64.0,1,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3250.859039330983,0.18074385851945862,0.14810291750938417,14633.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0 -6803,2,84.0,2,0.0,5,120,4,0,77,8.0,0.0,0.0,245.5752499524643,140.77073598563877,0.0,12605.0,0,50,1,5130,201106803,,,,,0.0,5.0,5.0,0.0,1.0,1.0,3024.832620883026,0.0,180.0,0.0,0.0,28715.0,0,5,1,109.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,386.34598593810307,0.030650217051813016,0.01345450064210702,28715.0,8,4,8,8_1,8_0,8_0_0 -6804,1,40.0,3,53.0,3,400,2,54,11,4.0,0.0,0.0,581.1947582208322,180.74267336427695,0.0,23571.0,31,50,1,5132,201106804,,,,,2.0,0.0,9.0,2.0,4.0,2.1,1921.9634542992815,0.0,426.0,0.0,0.0,33645.0,1,1,2,180.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,761.9374315851092,0.03232520604069022,0.0226463793010881,16021.42857142857,4,2,4_1,4_1_1,4_0_1,4_0_1 -6805,2,58.0,3,0.0,8,111,4,0,74,5.0,0.0,0.0,956.2523901786309,0.0,453.7560883716691,41336.0,0,33,8,5134,201106805,,,305.0,,0.0,0.0,4.0,1.0,2.0,1.5,1806.7836541748072,422.0,540.0,0.0,0.0,27995.0,0,5,2,92.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1410.0084785503,0.03411090764830414,0.050366439669594566,18663.333333333332,5,3,5,5_0,5_2,5_0_0 -6806,2,75.0,2,0.0,7,300,2,75,77,7.0,0.0,693.9631597817199,1957.7804648988126,0.0,0.0,21694.0,71,71,1,5135,201106806,,,124.0,,0.0,0.0,5.0,0.0,2.0,1.5,3020.568294311639,0.0,1435.0,0.0,0.0,33344.0,6,4,1,145.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2651.743624680533,0.12223396444549335,0.07952686014516953,22229.333333333332,7,4,7,7_1,7_0,7_0_0 -6807,1,32.0,5,288.0,2,112,1,0,56,2.0,0.0,0.0,1062.7951095164983,0.0,0.0,15780.0,0,31,2,5136,201106807,59.0,59.0,,,1.0,0.0,3.0,1.0,2.0,1.3,7889.667840441619,0.0,779.0,0.0,0.0,13719.0,0,1,3,60.0,9,1.0,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1062.7951095164983,0.06735076739648278,0.07746884681948381,10553.076923076922,2,1,2_1,2_0_1,2_1_1,2_0_1 -6808,2,54.0,2,0.0,6,111,4,52,42,10.0,0.0,263.7060007170536,3323.4517160233504,0.0,0.0,59819.0,42,20,1,5137,201106808,,,360.0,,2.0,2.0,7.0,0.0,2.0,1.5,2579.103906974061,0.0,2436.0,0.0,0.0,63590.0,1,1,1,175.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3587.157716740404,0.05996686197931098,0.056410720502286585,42393.333333333336,10,5,10,10_1,10_3,10_0_0 -6809,1,22.0,2,130.0,2,111,1,84,53,8.0,0.0,0.0,0.0,0.0,0.0,35663.0,31,50,2,5139,201106809,,,,450.0,1.0,0.0,2.0,0.0,2.0,1.5,3050.065362077685,0.0,0.0,0.0,0.0,39822.0,3,1,3,50.0,8,6.0,3,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0.0,0.0,0.0,26548.0,8,4,8,8_0,8_2,8_0_1 -6810,2,65.0,2,0.0,4,111,4,0,74,8.0,0.0,0.0,2099.2773884339636,90.37133668213848,890.3081544354077,46113.0,0,20,1,5141,201106810,,,156.0,,0.0,4.0,6.0,0.0,1.0,1.0,997.9380446526703,828.0,1223.0,0.0,0.0,26283.0,0,5,1,105.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3079.9568795515097,0.06679150954289484,0.11718437315190464,26283.0,8,4,8,8_1,8_2,8_0_1 -6811,2,60.0,3,0.0,6,112,4,0,55,6.0,0.0,0.0,968.6579303680536,0.0,0.0,31750.0,0,50,8,5142,201106811,,,,407.0,1.0,2.0,2.0,0.0,1.0,1.0,1869.3722360165705,0.0,710.0,0.0,0.0,21154.0,0,1,3,55.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,968.6579303680536,0.030508911192694603,0.04579076913907788,21154.0,6,3,6,6_0,6_1,6_0_0 -6812,2,27.0,3,0.0,5,120,2,0,63,4.0,1269.1648073111057,0.0,376.5487165937786,100.7987986070006,0.0,19653.0,0,60,1,5143,201106812,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2484.2731222627913,0.0,276.0,0.0,0.0,15164.0,0,1,3,85.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1746.512322511885,0.08886746667235969,0.11517490916063605,15164.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -6813,2,60.0,2,0.0,5,400,2,71,11,10.0,0.0,0.0,998.6726831400215,0.0,0.0,34601.0,44,43,1,5145,201106813,,,,,2.0,0.0,6.0,1.0,3.0,2.0,1940.2280178729834,0.0,732.0,0.0,0.0,116148.0,5,1,1,150.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,998.6726831400215,0.028862538167683634,0.008598277052898212,58074.0,10,5,10,10_1,10_0,10_0_0 -6814,2,87.0,2,0.0,1,111,2,0,75,5.0,0.0,0.0,2071.017941265782,0.0,323.25131967072605,24982.0,0,70,2,5146,201106814,,,310.0,,0.0,0.0,4.0,1.0,2.0,1.5,3419.754415621783,0.0,1518.0,186.0,0.0,28230.0,0,5,1,100.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2394.269260936508,0.0958397750755147,0.08481293875085044,18820.0,5,3,5,5_0,5_3,5_1_0 -6815,2,64.0,4,0.0,4,111,2,0,75,5.0,0.0,0.0,2810.472305011536,121.65372245672486,0.0,20333.0,0,33,1,5147,201106815,,,290.0,,0.0,3.0,4.0,0.0,1.0,1.0,3136.857481966332,0.0,2060.0,0.0,0.0,18417.0,0,5,1,92.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2932.126027468261,0.14420528340472438,0.1592075814447663,18417.0,5,3,5,5_1,5_3,5_0_1 -6816,2,32.0,2,0.0,5,111,2,43,47,9.0,0.0,0.0,2946.9029994295715,0.0,0.0,59053.0,33,31,1,5148,201106816,,,624.0,,2.0,0.0,4.0,2.0,4.0,2.1,5824.845468934216,0.0,2160.0,0.0,0.0,62298.0,1,1,2,90.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2946.9029994295715,0.049902680633152785,0.047303332361064106,29665.714285714286,9,5,9,9_1,9_3,9_0_0 -6817,2,81.0,3,0.0,2,400,2,0,77,7.0,2538.3296146222115,0.0,354.7198054868929,60.82686122836243,0.0,13624.0,0,70,1,515,201106817,,,120.0,,0.0,1.0,3.0,0.0,1.0,1.0,3491.5899596466743,0.0,260.0,0.0,0.0,23758.0,0,5,1,80.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2953.8762813374665,0.2168141721474946,0.1243318579567921,23758.0,7,4,7,7_1,7_0,7_0_1 -6818,2,32.0,3,0.0,9,111,4,0,47,3.0,0.0,0.0,859.5133748336251,0.0,0.0,12516.0,0,20,2,5150,201106818,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4721.709960856704,0.0,630.0,0.0,0.0,14066.0,0,1,2,38.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,859.5133748336251,0.06867316833122604,0.06110574255890979,14066.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -6819,2,49.0,2,0.0,3,111,1,0,54,6.0,0.0,0.0,532.0797082303393,0.0,0.0,22176.0,0,42,2,5151,201106819,,,,228.0,1.0,0.0,2.0,0.0,1.0,1.0,2931.621395673296,0.0,390.0,0.0,0.0,20367.0,0,1,3,49.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,532.0797082303393,0.0239934933365052,0.026124599019508976,20367.0,6,3,6,6_0,6_3,6_0_1 -6820,2,63.0,3,0.0,5,112,2,0,75,3.0,0.0,0.0,857.8185542410462,0.0,1773.0895491110955,28626.0,0,60,1,5152,201106820,,,260.0,,0.0,2.0,3.0,0.0,1.0,1.0,3016.4838124373905,1649.0,0.0,0.0,0.0,13198.0,0,5,1,75.0,10,3.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2630.9081033521416,0.09190624269377984,0.19934142319685874,13198.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -6821,2,36.0,2,0.0,7,111,2,85,37,2.0,0.0,0.0,374.5478223490317,0.0,774.1810038568763,37412.0,41,20,2,5153,201106821,,,,827.0,1.0,0.0,3.0,2.0,4.0,2.1,3569.162708634227,720.0,0.0,0.0,0.0,23661.0,6,1,3,82.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1148.728826205908,0.03070482268271966,0.048549462246139555,11267.142857142857,2,1,2_0,2_0_0,2_2_0,2_0_0 -6822,2,50.0,2,0.0,6,221,4,56,47,9.0,0.0,0.0,245.5752499524643,0.0,0.0,41241.0,60,31,1,5154,201106822,,,700.0,,2.0,1.0,5.0,0.0,2.0,1.5,2793.4937290014514,0.0,180.0,0.0,0.0,45380.0,1,1,1,110.0,1,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,245.5752499524643,0.005954638586660467,0.005411530408824687,30253.333333333332,9,5,9,9_1,9_1,9_0_0 -6823,2,72.0,2,0.0,5,111,2,75,74,10.0,0.0,0.0,709.4396109737858,0.0,1268.6745341915594,49564.0,30,20,2,5155,201106823,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,2014.7716920816933,0.0,520.0,730.0,0.0,86864.0,5,5,1,90.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1978.1141451653452,0.03991030072563444,0.022772542654786163,57909.333333333336,10,5,10,10_0,10_2,10_0_0 -6824,2,59.0,2,0.0,6,112,2,0,75,7.0,0.0,0.0,1337.02080529675,0.0,0.0,20317.0,0,33,2,5156,201106824,,,,640.0,0.0,4.0,2.0,0.0,1.0,1.0,3421.645007317643,0.0,980.0,0.0,0.0,23601.0,0,5,3,46.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1337.02080529675,0.06580798372283064,0.05665102348615525,23601.0,7,4,7,7_0,7_2,7_0_0 -6825,2,51.0,3,0.0,8,111,2,62,46,9.0,0.0,0.0,818.5841665082144,0.0,5213.730962431066,93213.0,41,41,1,5157,201106825,,,800.0,,2.0,0.0,8.0,2.0,4.0,2.5,1665.4061212907593,0.0,600.0,3000.0,0.0,78546.0,1,1,2,274.0,6,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,6032.31512893928,0.06471538443070472,0.07679977502278003,31418.4,9,5,9,9_1,9_2,9_0_0 -6826,2,48.0,4,0.0,8,120,2,21,21,4.0,0.0,0.0,818.5841665082144,0.0,1651.0148047698374,35767.0,44,50,1,5158,201106826,,,,,2.0,2.0,5.0,1.0,3.0,2.0,2579.6042860997,0.0,600.0,950.0,0.0,31763.0,5,1,2,100.0,0,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2469.598971278052,0.06904685803332826,0.07775080978742725,15881.5,4,2,4_0,4_1_0,4_1_0,4_0_0 -6827,2,53.0,3,0.0,4,400,2,77,46,9.0,4759.368027416646,0.0,1012.5248862215624,0.0,1669.865415263512,65858.0,50,50,1,5159,201106827,,,100.0,,1.0,6.0,6.0,0.0,2.0,1.5,2156.2307515114708,1553.0,150.0,0.0,0.0,43490.0,5,1,1,140.0,0,0.0,3,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,7441.75832890172,0.11299702889401014,0.17111424071974524,28993.333333333332,8,4,8,8_1,8_0,8_0_1 -6828,2,41.0,4,0.0,1,111,4,0,54,3.0,0.0,0.0,1150.110753944041,0.0,0.0,19310.0,0,50,2,516,201106828,,,,435.0,1.0,0.0,2.0,0.0,1.0,1.0,1500.1877546951532,0.0,843.0,0.0,0.0,13019.0,0,1,3,52.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1150.110753944041,0.05956037047871782,0.08834094430786091,13019.0,3,2,3_0,3_0_0,3_2_0,3_1_0 -6829,1,47.0,4,429.0,4,111,1,0,56,3.0,0.0,0.0,682.1534720901786,0.0,1042.7461924862132,52648.0,0,60,2,5160,201106829,,,,971.0,2.0,0.0,5.0,3.0,4.0,2.3,2560.504410073669,0.0,500.0,600.0,0.0,33398.0,0,1,3,96.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1724.8996645763918,0.03276287161100881,0.05164679515469165,14520.869565217392,3,2,3_1,3_0_1,3_4_1,3_0_1 -6830,2,39.0,3,0.0,1,112,2,0,65,5.0,0.0,0.0,300.1475277196786,1682.2971905444238,0.0,11811.0,0,50,1,5161,201106830,,,180.0,,1.0,0.0,4.0,0.0,1.0,1.0,1946.3290086670934,0.0,220.0,0.0,0.0,17690.0,0,1,3,76.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1982.4447182641024,0.16784732184100434,0.11206584048977403,17690.0,5,3,5,5_1,5_0,5_1_0 -6831,2,64.0,4,0.0,5,112,5,56,75,2.0,0.0,416.377895869032,2381.875109045677,217.2387901012944,721.4936855388388,37554.0,71,50,1,5162,201106831,,,555.0,,1.0,0.0,5.0,1.0,3.0,2.0,1402.173356626353,671.0,1490.0,0.0,0.0,23749.0,1,5,1,109.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3736.985480554842,0.09950965224889072,0.15735338248157152,11874.5,2,1,2_0,2_1_0,2_0_0,2_0_0 -6832,2,64.0,3,0.0,7,111,2,77,56,8.0,0.0,0.0,213.9511413636698,0.0,403.50734776467755,28060.0,70,70,2,5163,201106832,,,,798.0,1.0,4.0,3.0,0.0,2.0,1.5,2308.142328259745,170.0,92.0,127.0,0.0,41765.0,5,1,3,73.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,617.4584891283473,0.022004935464303182,0.014784113231853161,27843.333333333332,8,4,8,8_0,8_3,8_0_0 -6833,2,49.0,3,0.0,5,111,2,56,64,8.0,2538.3296146222115,0.0,1146.0178331115,0.0,0.0,42208.0,71,50,1,5164,201106833,,,251.0,,5.0,0.0,6.0,2.0,6.0,3.5,1104.9033723225486,0.0,840.0,0.0,0.0,94124.0,1,1,2,119.0,10,8.0,5,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3684.3474477337113,0.08729026364039308,0.03914354944258331,26892.571428571428,8,4,8,8_1,8_4,8_0_0 -6834,2,47.0,2,0.0,1,111,4,46,52,9.0,0.0,0.0,3855.5314242536897,0.0,0.0,46266.0,30,71,2,5165,201106834,,,250.0,,2.0,0.0,2.0,1.0,3.0,1.8,5215.193246414742,0.0,2826.0,0.0,0.0,64680.0,1,1,2,68.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,3855.5314242536897,0.08333401254168697,0.05960932937930875,35933.333333333336,9,5,9,9_0,9_2,9_1_0 -6835,2,70.0,3,0.0,1,111,5,77,75,7.0,0.0,1360.167793172171,709.4396109737858,86.89551604051776,0.0,31814.0,70,60,1,5166,201106835,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1767.230270182265,0.0,520.0,0.0,0.0,33632.0,5,5,3,90.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2156.5029201864745,0.06778471491124896,0.06412056732238566,22421.333333333332,7,4,7,7_1,7_3,7_1_0 -6836,2,76.0,3,0.0,6,300,4,0,77,4.0,0.0,0.0,930.4573359310036,166.8393907977941,0.0,10073.0,0,50,1,5167,201106836,,,256.0,,0.0,0.0,4.0,0.0,1.0,1.0,2247.729427351058,0.0,682.0,0.0,0.0,14981.0,0,5,1,90.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1097.2967267287977,0.10893445117927109,0.073245893246699,14981.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -6837,2,36.0,3,0.0,1,111,2,0,85,9.0,0.0,208.188947934516,300.1475277196786,0.0,851.5760571970741,95493.0,0,50,2,5168,201106837,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3809.8650393425687,0.0,220.0,490.0,0.0,29839.0,0,6,1,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1359.9125328512687,0.014240965650375092,0.04557500361443978,29839.0,9,5,9,9_0,9_4,9_1_0 -6838,2,60.0,2,0.0,5,112,2,37,75,8.0,0.0,0.0,1889.5651176897948,0.0,0.0,35254.0,50,41,1,5170,201106838,,,240.0,,1.0,2.0,6.0,0.0,2.0,1.5,1854.9716800384617,0.0,1385.0,0.0,0.0,37415.0,4,5,1,150.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1889.5651176897948,0.05359860207890721,0.050502876324730585,24943.333333333332,8,4,8,8_1,8_0,8_0_0 -6839,2,78.0,3,0.0,4,111,1,78,74,5.0,0.0,0.0,313.79059716148214,0.0,104.27461924862132,25717.0,70,70,2,5171,201106839,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1486.6746964344152,0.0,230.0,60.0,0.0,25707.0,5,5,1,82.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,418.06521641010346,0.01625637579850307,0.016262699514144142,17138.0,5,3,5,5_0,5_2,5_0_1 -6840,2,72.0,3,0.0,3,112,6,86,75,6.0,555.2596031986087,0.0,856.9424558530601,104.27461924862132,361.28446846654225,35216.0,70,50,1,5176,201106840,,,400.0,,0.0,1.0,4.0,0.0,2.0,1.5,2937.497515471846,336.0,500.0,0.0,0.0,32318.0,6,5,1,110.0,9,3.0,3,8,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1877.7611467668323,0.05332125019215221,0.05810264084308535,21545.333333333332,6,3,6,6_1,6_1,6_0_1 -6841,2,75.0,2,0.0,1,112,2,0,86,1.0,0.0,0.0,450.22129157951787,0.0,2328.799829885876,17551.0,0,70,1,5179,201106841,,,440.0,,0.0,2.0,6.0,0.0,1.0,1.0,2511.1457316116025,0.0,330.0,1340.0,0.0,9080.0,0,6,5,110.0,8,0.0,1,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2779.021121465394,0.15833975964135344,0.3060595948750434,9080.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -6842,1,36.0,4,305.0,6,111,1,0,56,3.0,0.0,0.0,477.50743046312505,0.0,0.0,38566.0,0,50,8,518,201106842,,,,219.0,1.0,0.0,2.0,1.0,2.0,1.3,3841.5695319629863,0.0,350.0,0.0,0.0,17568.0,0,1,3,38.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,477.50743046312505,0.012381564861876394,0.027180523136562218,13513.846153846154,3,2,3_1,3_0_1,3_3_1,3_0_0 -6843,2,63.0,3,0.0,5,111,1,77,75,8.0,0.0,0.0,754.1882030005071,0.0,831.0695761999776,54908.0,50,60,2,5180,201106843,,,163.0,,0.0,2.0,4.0,0.0,2.0,1.5,2713.5284413620525,663.0,300.0,68.0,0.0,40349.0,5,5,1,101.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1585.2577792004847,0.028871162293299422,0.0392886510000368,26899.333333333332,8,4,8,8_0,8_3,8_0_0 -6844,2,77.0,3,0.0,4,111,2,77,75,4.0,2221.038412794435,0.0,300.1475277196786,187.69431464751835,0.0,24608.0,71,70,1,5183,201106844,,,220.0,,0.0,3.0,5.0,0.0,2.0,1.5,2239.0705714837354,0.0,220.0,0.0,0.0,22178.0,5,5,1,85.0,8,7.0,3,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2708.880255161632,0.1100812847513667,0.12214267540633203,14785.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_1 -6845,2,70.0,3,0.0,5,111,2,13,72,9.0,0.0,0.0,3525.369143762043,0.0,0.0,14737.0,70,70,1,5185,201106845,,,228.0,,1.0,2.0,5.0,0.0,2.0,1.5,3230.4939170651305,0.0,2584.0,0.0,0.0,51940.0,1,5,1,150.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3525.369143762043,0.2392189145526256,0.06787387646827192,34626.666666666664,9,5,9,9_1,9_3,9_0_0 -6846,2,77.0,1,0.0,8,300,6,77,74,10.0,1741.9286980344925,0.0,2920.978598430644,78.20596443646599,4012.838203324808,44280.0,60,50,1,5186,201106846,,,,,0.0,5.0,7.0,0.0,2.0,1.5,1756.1724608773866,3732.0,718.0,0.0,0.0,56479.0,5,5,1,197.0,0,0.0,3,5,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,8753.951464226411,0.197695380854255,0.1549948027448505,37652.666666666664,10,5,10,10_1,10_0,10_0_0 -6847,2,31.0,2,0.0,2,120,2,56,62,8.0,0.0,0.0,708.0753040296054,0.0,2396.5783323974797,31175.0,31,43,1,5187,201106847,,,,,2.0,0.0,7.0,0.0,2.0,1.5,5059.801501077007,0.0,519.0,1379.0,0.0,38902.0,1,1,2,130.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3104.653636427085,0.0995879273914061,0.07980704427605483,25934.666666666668,8,4,8,8_1,8_1,8_0_1 -6848,0,34.0,3,0.0,1,112,2,52,69,5.0,2316.225773342768,0.0,982.3009998098572,0.0,0.0,37358.0,50,50,1,5188,201106848,,,215.0,,2.0,0.0,5.0,1.0,3.0,1.8,1487.2554097879822,0.0,720.0,0.0,0.0,31147.0,1,1,5,120.0,9,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3298.5267731526255,0.08829505790333063,0.10590190943437973,17303.888888888887,5,3,5,5_1,5_0,5_1_0 -6849,2,48.0,2,0.0,7,111,2,0,22,10.0,0.0,0.0,785.8407998478858,0.0,1814.3783749260108,42663.0,0,10,1,519,201106849,,,360.0,,2.0,0.0,6.0,2.0,3.0,2.0,3271.844758060239,0.0,576.0,1044.0,0.0,90304.0,0,1,2,106.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2600.2191747738966,0.060947874616738076,0.02879406421392072,45152.0,10,5,10,10_1,10_3,10_0_0 -6850,2,74.0,3,0.0,6,111,6,0,75,9.0,0.0,0.0,1544.3954608121644,0.0,0.0,28638.0,0,33,2,5190,201106850,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3115.804642587205,0.0,1132.0,0.0,0.0,30849.0,0,5,1,65.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1544.3954608121644,0.0539281884493388,0.050063063983019365,30849.0,9,5,9,9_0,9_4,9_0_0 -6851,1,26.0,3,52.0,1,111,2,67,62,2.0,0.0,0.0,523.8938665652572,0.0,2728.519203672258,12052.0,50,71,1,5191,201106851,,,,315.0,2.0,0.0,3.0,1.0,3.0,1.8,3455.183303873209,0.0,384.0,1570.0,0.0,20889.0,4,4,3,60.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3252.413070237515,0.26986500748734776,0.15569979751244747,11605.0,2,1,2_1,2_1_1,2_3_1,2_1_0 -6852,2,43.0,2,0.0,8,112,5,85,62,4.0,0.0,582.9290542166448,1118.731694227893,0.0,0.0,22210.0,71,71,1,5193,201106852,,,,,1.0,3.0,5.0,0.0,2.0,1.5,5647.884703116348,0.0,820.0,0.0,0.0,23117.0,6,1,2,85.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1701.6607484445378,0.07661687296013228,0.07361079501858103,15411.333333333334,4,2,4_0,4_1_0,4_0_0,4_0_0 -6853,1,19.0,2,280.0,8,112,2,55,68,1.0,0.0,0.0,28.091086676177376,0.0,58.06357528926572,13452.0,41,50,2,5194,201106853,,,,160.0,2.0,0.0,2.0,0.0,2.0,1.5,3407.867158272963,54.0,0.0,0.0,0.0,3688.0,3,2,3,45.0,9,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,86.1546619654431,0.006404598718810816,0.023360808558959625,2458.6666666666665,1,1,1_1,1_0_1,1_1_1,1_0_0 -6854,2,72.0,3,0.0,6,400,5,77,74,7.0,0.0,799.4455600685415,1064.1594164606786,156.41192887293198,0.0,21424.0,50,60,1,5195,201106854,,,,,0.0,2.0,6.0,0.0,2.0,1.5,4117.099999891622,0.0,780.0,0.0,0.0,32537.0,5,5,1,175.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2020.0169054021521,0.09428757026709074,0.06208368643089873,21691.333333333332,6,3,6,6_1,6_1,6_0_0 -6855,2,60.0,3,0.0,1,111,5,68,78,2.0,0.0,832.755791738064,1200.5901108787143,291.9689338961397,0.0,21399.0,70,71,1,5196,201106855,,,500.0,,2.0,3.0,5.0,0.0,3.0,2.0,3095.4428343149884,0.0,880.0,0.0,0.0,24630.0,1,5,1,82.0,6,4.0,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2325.314836512918,0.10866464958703295,0.09440985937933083,12315.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -6856,2,25.0,3,0.0,99,112,4,21,54,8.0,0.0,0.0,1227.8762497623215,46.92357866187959,0.0,26769.0,50,50,1,5197,201106856,,,180.0,,2.0,0.0,4.0,0.0,2.0,1.5,2232.514954706584,0.0,900.0,0.0,0.0,39103.0,1,1,3,90.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1274.7998284242012,0.047622243207598385,0.03260107481329313,26068.666666666668,8,4,8,8_1,8_0,8_0_0 -6857,2,43.0,4,0.0,1,112,2,46,46,5.0,1583.2830971206045,0.0,1923.6727912943038,0.0,0.0,26971.0,41,31,1,5199,201106857,,,1036.0,,2.0,0.0,5.0,2.0,4.0,2.3,2315.860233959134,0.0,1410.0,0.0,0.0,39809.0,4,1,2,200.0,4,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3506.9558884149083,0.1300269136633758,0.08809454868032124,17308.26086956522,5,3,5,5_1,5_0,5_1_0 -6859,2,74.0,2,0.0,7,120,5,77,75,8.0,0.0,602.3600226905329,1665.8187788442162,152.93610823131127,0.0,54207.0,70,41,1,5200,201106859,,,187.0,,0.0,2.0,4.0,0.0,2.0,1.5,1704.06150282048,0.0,1221.0,0.0,0.0,38313.0,5,5,1,140.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2421.1149097660605,0.044664248339994106,0.06319303917119673,25542.0,8,4,8,8_1,8_0,8_0_0 -6860,2,72.0,3,0.0,5,111,2,78,75,5.0,0.0,0.0,682.1534720901786,0.0,2241.904313845358,28748.0,70,71,1,5201,201106860,,,,,0.0,2.0,6.0,0.0,2.0,1.5,3639.0053443349916,0.0,500.0,1290.0,0.0,26772.0,5,5,1,125.0,5,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2924.0577859355367,0.1017134334887831,0.10922074502971525,17848.0,5,3,5,5_1,5_2,5_0_0 -6861,2,72.0,1,0.0,6,111,2,75,74,9.0,0.0,0.0,2489.860173129152,139.0328256648284,0.0,35068.0,41,70,1,5202,201106861,,,697.0,,1.0,2.0,4.0,1.0,3.0,2.0,1953.2778477712357,0.0,1825.0,0.0,0.0,62749.0,5,5,1,95.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2628.8929987939805,0.07496558112221913,0.041895376799534347,31374.5,9,5,9,9_1,9_3,9_0_0 -6862,2,35.0,2,0.0,8,112,2,42,63,6.0,0.0,0.0,762.6475817968197,0.0,1737.9103208103552,39499.0,20,60,1,5203,201106862,,,420.0,,2.0,0.0,5.0,3.0,5.0,2.4,1420.500922557174,0.0,559.0,1000.0,0.0,45713.0,1,1,2,91.0,7,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2500.557902607175,0.06330686606261361,0.05470124259197985,19047.083333333336,5,3,5,5_1,5_1,5_0_0 -6863,2,51.0,1,0.0,5,111,2,31,31,10.0,1269.1648073111057,0.0,3820.0594437050004,104.27461924862132,0.0,59214.0,10,10,1,5205,201106863,,,360.0,,2.0,0.0,6.0,1.0,4.0,2.5,1566.857089040803,0.0,2800.0,0.0,0.0,201935.0,1,1,1,280.0,9,7.0,5,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5193.498870264727,0.08770727987071852,0.02571866625530357,80774.0,10,5,10,10_1,10_3,10_0_0 -6864,2,49.0,2,0.0,4,112,2,54,22,10.0,4759.368027416646,0.0,764.011888741,46.92357866187959,0.0,75102.0,42,50,1,5207,201106864,,,,,3.0,0.0,7.0,2.0,4.0,2.5,1838.970344850725,0.0,560.0,0.0,0.0,94630.0,1,1,1,250.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5570.303494819525,0.07416984227876122,0.05886403354982062,37852.0,10,5,10,10_1,10_0,10_0_1 -6865,2,67.0,3,0.0,5,221,2,78,72,8.0,0.0,0.0,2058.739178768159,0.0,0.0,16388.0,50,50,1,5209,201106865,,,1000.0,,0.0,0.0,4.0,0.0,2.0,1.5,3081.98496245855,0.0,1509.0,0.0,0.0,40950.0,5,5,1,173.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2058.739178768159,0.12562479733757378,0.05027446101997946,27300.0,8,4,8,8_1,8_1,8_0_0 -6866,1,19.0,4,170.0,7,111,2,0,84,1.0,0.0,0.0,54.57227776721429,0.0,0.0,6831.0,0,41,2,521,201106866,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3035.51066564624,0.0,40.0,0.0,0.0,3355.0,0,3,3,20.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,54.57227776721429,0.007988914912489282,0.01626595462510113,3355.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -6867,2,57.0,4,0.0,1,120,2,37,42,9.0,0.0,0.0,6504.428191890043,0.0,13837.990124077505,100615.0,10,10,1,5211,201106867,,,247.0,,2.0,0.0,6.0,3.0,5.0,2.6,1916.306785281014,10930.0,600.0,1200.0,0.0,95856.0,1,1,2,180.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,20342.41831596755,0.20218077141547033,0.2122185185691824,36867.692307692305,9,5,9,9_1,9_1,9_1_0 -6868,2,89.0,1,0.0,3,111,1,0,86,5.0,0.0,0.0,1192.0532340492887,0.0,4755.369800773047,19799.0,0,50,2,5213,201106868,,,,,0.0,4.0,4.0,0.0,1.0,1.0,3446.307449704204,1190.0,420.0,2000.0,0.0,18281.0,0,6,1,97.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,5947.4230348223355,0.3003900719643586,0.3253335722784495,18281.0,5,3,5,5_0,5_3,5_0_1 -6869,2,54.0,2,0.0,1,111,2,31,23,9.0,0.0,0.0,545.7227776721429,0.0,2259.283417053462,49857.0,60,50,1,5214,201106869,,,500.0,,2.0,0.0,4.0,1.0,3.0,2.0,2378.0868164931862,0.0,400.0,1300.0,0.0,60271.0,1,1,2,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2805.006194725605,0.056261030441575,0.04653989803928266,30135.5,9,5,9,9_1,9_4,9_1_0 -6870,2,65.0,2,0.0,5,211,4,75,74,7.0,0.0,624.566843803548,2592.183193942679,229.4041623469669,0.0,27060.0,71,12,1,5217,201106870,,,379.0,,0.0,3.0,8.0,0.0,2.0,1.5,1203.296420757509,0.0,1900.0,0.0,0.0,33450.0,5,5,1,135.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3446.1542000931936,0.1273523355540722,0.10302404185629876,22300.0,7,4,7,7_1,7_2,7_0_0 -6871,2,50.0,2,0.0,1,112,4,52,48,9.0,0.0,0.0,2182.8911106885716,312.82385774586396,0.0,47024.0,30,41,1,522,201106871,,,,,2.0,4.0,5.0,0.0,2.0,1.5,1799.2062220963248,0.0,1600.0,0.0,0.0,44580.0,1,1,1,150.0,6,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2495.714968434436,0.05307321726000416,0.055982839130427,29720.0,9,5,9,9_1,9_0,9_1_0 -6872,2,69.0,4,0.0,4,112,3,78,78,5.0,3172.912018277764,416.377895869032,395.6490138123036,0.0,0.0,26989.0,70,71,1,5220,201106872,2000.0,2000.0,486.0,,0.0,4.0,6.0,0.0,2.0,1.5,1797.0241566460195,0.0,290.0,0.0,0.0,25310.0,5,5,1,110.0,5,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3984.9389279590996,0.14765048456627142,0.15744523618961279,16873.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1 -6873,2,92.0,3,0.0,3,111,1,0,78,4.0,0.0,0.0,327.43366660328576,69.5164128324142,0.0,8605.0,0,70,2,5221,201106873,,,,224.0,0.0,2.0,2.0,0.0,1.0,1.0,2886.168681968599,0.0,240.0,0.0,0.0,15484.0,0,5,3,50.0,7,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,396.9500794357,0.04613016611687391,0.02563614566234177,15484.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -6874,1,38.0,1,320.0,1,400,2,0,34,7.0,0.0,0.0,804.9410970664107,0.0,1946.4595593075978,9361.0,0,42,1,5222,201106874,,,180.0,,1.0,0.0,5.0,1.0,2.0,1.3,3274.637718845486,0.0,590.0,1120.0,0.0,30030.0,0,1,3,75.0,0,1.0,2,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2751.4006563740086,0.29392165969170053,0.09162173347898797,23100.0,7,4,7,7_1,7_1,7_1_0 -6875,2,25.0,2,0.0,2,112,2,54,63,7.0,0.0,0.0,238.75371523156252,43.44775802025888,0.0,23053.0,31,42,1,5223,201106875,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3139.6986865040453,0.0,175.0,0.0,0.0,34261.0,1,1,3,70.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,282.2014732518214,0.012241420780454667,0.008236813673034103,22840.666666666668,7,4,7,7_1,7_0,7_0_1 -6876,2,54.0,2,0.0,6,111,2,67,47,8.0,1039.1286859859679,0.0,1008.222831749284,121.65372245672486,0.0,43510.0,71,50,1,5224,201106876,,,220.0,,3.0,1.0,5.0,1.0,3.0,2.0,1780.4950929061463,0.0,739.0,0.0,0.0,49694.0,1,1,1,120.0,6,4.0,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2169.005240191977,0.049850729491886396,0.04364722582589401,24847.0,7,4,7,7_1,7_2,7_0_0 -6877,2,25.0,4,0.0,7,111,2,0,46,1.0,0.0,0.0,859.5133748336251,0.0,0.0,13898.0,0,12,2,5225,201106877,,,,415.0,1.0,0.0,2.0,0.0,1.0,1.0,3517.982580938704,0.0,630.0,0.0,0.0,5702.0,0,1,3,47.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,859.5133748336251,0.0618443930661696,0.1507389292938662,5702.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -6878,2,67.0,2,0.0,5,112,2,72,75,8.0,0.0,832.755791738064,1364.3069441803573,139.0328256648284,0.0,44929.0,60,42,1,5226,201106878,,,510.0,,0.0,4.0,4.0,0.0,2.0,1.5,3583.145010158394,0.0,1000.0,0.0,0.0,38010.0,5,5,1,120.0,7,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2336.09556158325,0.05199527168606579,0.06146002529816495,25340.0,8,4,8,8_1,8_1,8_0_0 -6879,0,37.0,3,0.0,7,111,1,0,43,8.0,0.0,0.0,259.2183193942679,0.0,0.0,43319.0,0,20,8,5228,201106879,,,,,1.0,0.0,4.0,1.0,2.0,1.3,2956.9709526229935,0.0,190.0,0.0,0.0,34283.0,0,1,5,80.0,9,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,259.2183193942679,0.0059839405201936305,0.0075611329053544875,26371.53846153846,8,4,8,8_0,8_3,8_0_0 -6880,2,58.0,3,0.0,4,111,1,78,63,7.0,0.0,0.0,354.7198054868929,0.0,0.0,22912.0,71,71,2,5229,201106880,,,,,1.0,2.0,2.0,0.0,2.0,1.5,3185.6593947311508,0.0,260.0,0.0,0.0,33729.0,5,1,1,44.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,354.7198054868929,0.015481835085845535,0.010516760220786056,22486.0,7,4,7,7_0,7_4,7_0_1 -6881,2,74.0,3,0.0,4,221,5,0,78,3.0,0.0,0.0,818.5841665082144,104.27461924862132,0.0,11877.0,0,70,1,5231,201106881,,,300.0,,0.0,2.0,6.0,0.0,1.0,1.0,2297.0069083239146,0.0,600.0,0.0,0.0,14500.0,0,5,1,113.0,1,3.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,922.8587857568357,0.07770133752267708,0.06364543350047143,14500.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -6882,2,59.0,3,0.0,9,112,4,78,45,9.0,0.0,0.0,1914.0648565154024,173.79103208103552,611.8180433257813,33710.0,50,41,1,5233,201106882,,,273.0,,1.0,3.0,5.0,0.0,2.0,1.5,2128.72665526186,569.0,1186.0,0.0,0.0,47955.0,5,1,2,200.0,9,2.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2699.6739319222193,0.08008525458090238,0.05629598440042163,31970.0,9,5,9,9_1,9_1,9_0_0 -6883,2,53.0,3,0.0,6,112,5,55,77,7.0,0.0,957.6691604987735,374.5478223490317,0.0,774.1810038568763,22767.0,70,50,1,5234,201106883,,,,,1.0,4.0,4.0,0.0,2.0,1.5,4028.2261904322345,720.0,0.0,0.0,0.0,34170.0,1,5,1,92.0,9,1.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2106.3979867046814,0.09251978682763129,0.061644658668559595,22780.0,7,4,7,7_1,7_1,7_0_0 -6884,2,56.0,2,0.0,7,112,5,37,37,10.0,0.0,624.566843803548,1064.1594164606786,0.0,0.0,33633.0,31,50,1,5237,201106884,,,230.0,,2.0,3.0,6.0,0.0,2.0,1.5,1734.5379182598963,0.0,780.0,0.0,0.0,65151.0,1,1,1,135.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1688.7262602642265,0.05021039634478716,0.025920189410204394,43434.0,10,5,10,10_1,10_1,10_0_0 -6885,1,45.0,5,217.0,4,111,2,0,85,4.0,0.0,0.0,477.50743046312505,0.0,1581.4983919374233,9120.0,0,60,2,5238,201106885,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3468.0108279737246,0.0,350.0,910.0,0.0,15904.0,0,4,3,59.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2059.0058224005484,0.22576818228076187,0.12946465181089967,15904.0,4,2,4_1,4_0_1,4_4_1,4_0_1 -6886,2,61.0,1,0.0,1,111,2,21,77,8.0,0.0,0.0,1396.0887476769474,0.0,970.9788377343018,23883.0,50,50,1,5239,201106886,,,,,1.0,2.0,6.0,0.0,2.0,1.5,2318.1817205252687,166.0,960.0,456.0,0.0,40550.0,1,5,1,150.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2367.067585411249,0.0991109820965226,0.05837404649596176,27033.333333333332,8,4,8,8_1,8_1,8_1_0 -6887,2,76.0,3,0.0,6,221,2,78,78,4.0,2696.9752155360998,0.0,477.50743046312505,243.30744491344973,0.0,41580.0,71,71,1,524,201106887,,,158.0,,0.0,3.0,5.0,0.0,2.0,1.5,2873.4037536039014,0.0,350.0,0.0,0.0,22730.0,5,5,1,90.0,1,3.0,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3417.7900909126743,0.0821979338843837,0.15036472023372963,15153.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_0 -6888,2,39.0,3,0.0,8,112,6,56,21,3.0,1499.2009286362436,249.82673752141918,869.0635234428876,0.0,0.0,36781.0,31,50,1,5240,201106888,,,330.0,,2.0,0.0,5.0,1.0,3.0,2.0,2530.4568406745157,0.0,637.0,0.0,0.0,27580.0,1,1,2,140.0,3,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2618.09118960055,0.07118053314484517,0.09492716423497281,13790.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -6889,2,78.0,3,0.0,2,112,5,0,71,2.0,0.0,138.792631956344,1337.02080529675,104.27461924862132,0.0,9232.0,0,70,1,5241,201106889,,,187.0,,0.0,2.0,4.0,0.0,1.0,1.0,2448.797138145777,0.0,980.0,0.0,0.0,11127.0,0,5,1,150.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1580.0880565017153,0.17115338566959654,0.14200485813801703,11127.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -6890,1,36.0,3,213.0,6,111,5,85,21,2.0,0.0,138.792631956344,339.71242910090893,312.82385774586396,0.0,21727.0,31,60,1,5242,201106890,,,405.0,,1.0,0.0,5.0,3.0,5.0,2.4,3059.699911258084,0.0,249.0,0.0,0.0,25486.0,6,1,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,791.328918803117,0.03642145343596065,0.031049553433379774,10619.166666666668,2,1,2_1,2_1_1,2_3_1,2_0_0 -6891,2,60.0,3,0.0,6,111,2,0,54,5.0,0.0,0.0,1071.6229361652852,0.0,2215.0178721460625,59648.0,0,50,1,5243,201106891,,,560.0,,1.0,0.0,4.0,1.0,2.0,1.5,2141.7518720852236,2060.0,0.0,0.0,0.0,28161.0,0,1,3,120.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3286.6408083113474,0.05510060368011245,0.11670895239200836,18774.0,5,3,5,5_1,5_2,5_0_0 -6892,2,32.0,2,0.0,2,111,2,37,46,8.0,0.0,0.0,491.1504999049286,0.0,1737.9103208103552,47953.0,10,31,2,5244,201106892,,,,642.0,2.0,0.0,4.0,0.0,2.0,1.5,2759.9973449963736,0.0,360.0,1000.0,0.0,41037.0,1,1,3,88.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2229.0608207152836,0.04648428295863207,0.0543183181206054,27358.0,8,4,8,8_0,8_3,8_0_1 -6893,2,79.0,2,0.0,2,111,1,0,71,1.0,0.0,0.0,2046.460416270536,0.0,608.2686122836243,17179.0,0,70,1,5245,201106893,,,160.0,,0.0,3.0,4.0,0.0,1.0,1.0,2605.801605692871,0.0,1500.0,350.0,0.0,8814.0,0,5,1,120.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2654.7290285541603,0.15453338544468015,0.30119458004925803,8814.0,1,1,1_0,1_1_0,1_4_0,1_0_1 -6894,2,66.0,1,0.0,1,111,2,77,74,8.0,1427.810408224994,485.77421184720396,764.011888741,24.330744491344973,0.0,47994.0,50,31,1,5246,201106894,,,290.0,,0.0,2.0,5.0,0.0,2.0,1.5,2672.9967231442774,0.0,560.0,0.0,0.0,40254.0,5,5,1,120.0,8,7.0,3,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2701.927253304543,0.05629718825904369,0.06712195690625883,26836.0,8,4,8,8_1,8_3,8_1_0 -6895,2,55.0,2,0.0,5,300,2,0,13,10.0,2379.684013708323,0.0,1227.8762497623215,118.17790181510415,0.0,18078.0,0,31,1,5248,201106895,,,100.0,,1.0,0.0,5.0,0.0,1.0,1.0,2487.9281539633985,0.0,900.0,0.0,0.0,49503.0,0,1,1,86.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3725.738165285749,0.20609238661830673,0.0752628762960982,49503.0,10,5,10,10_1,10_0,10_0_0 -6896,2,80.0,2,0.0,2,111,1,0,77,6.0,1792.6952903269369,0.0,286.504458277875,0.0,208.54923849724264,12859.0,0,70,2,5249,201106896,1130.0,1130.0,,311.0,0.0,4.0,4.0,0.0,1.0,1.0,2618.461092494148,0.0,210.0,120.0,0.0,19709.0,0,5,3,85.0,6,4.0,1,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2287.7489871020543,0.17791033417077956,0.11607636039890681,19709.0,6,3,6,6_0,6_2,6_0_1 -6897,0,62.0,3,0.0,5,111,1,86,72,1.0,0.0,0.0,395.6490138123036,0.0,0.0,38268.0,41,10,2,5250,201106897,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3354.6532846760133,0.0,290.0,0.0,0.0,5395.0,6,5,5,68.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,395.6490138123036,0.010338899702422483,0.07333623981692375,3596.6666666666665,1,1,1_0,1_0_0,1_4_0,1_0_0 -6898,2,50.0,3,0.0,5,112,4,47,33,9.0,0.0,0.0,2755.900027244322,0.0,0.0,32815.0,50,41,1,5251,201106898,,,580.0,,3.0,1.0,5.0,1.0,3.0,2.0,1829.7430878118,0.0,2020.0,0.0,0.0,74163.0,1,1,1,138.0,10,3.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2755.900027244322,0.08398293546379161,0.03716003974009036,37081.5,9,5,9,9_1,9_1,9_0_0 -6899,1,52.0,4,244.0,1,221,4,0,85,3.0,0.0,0.0,1637.1683330164287,93.84715732375918,0.0,8345.0,0,50,2,5252,201106899,,,,,0.0,2.0,2.0,0.0,1.0,1.0,4700.021961811857,0.0,1200.0,0.0,0.0,13458.0,0,7,3,40.0,1,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1731.0154903401879,0.2074314548040968,0.12862353175361776,13458.0,3,2,3_1,3_0_1,3_1_1,3_1_0 -6900,2,83.0,3,0.0,2,111,5,0,72,2.0,0.0,766.1353283990188,2058.739178768159,0.0,0.0,16647.0,0,70,1,5253,201106900,,,218.0,,1.0,0.0,4.0,1.0,2.0,1.5,2388.182949845693,0.0,1509.0,0.0,0.0,17555.0,0,5,1,90.0,6,4.0,2,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2824.874507167178,0.1696927078252645,0.16091566546096142,11703.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_1 -6901,2,39.0,2,0.0,8,111,2,56,54,8.0,0.0,0.0,613.9381248811608,0.0,1621.4703293160615,51602.0,50,31,1,5254,201106901,,,280.0,,2.0,0.0,5.0,2.0,4.0,2.1,1848.9375354161907,0.0,450.0,933.0,0.0,55218.0,1,1,2,140.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2235.4084541972225,0.043320190190248874,0.04048332888183604,26294.285714285714,8,4,8,8_1,8_3,8_0_0 -6902,2,52.0,3,0.0,5,111,2,0,46,8.0,0.0,0.0,3465.339638218107,364.9611673701746,0.0,45749.0,0,10,1,5255,201106902,,,650.0,,1.0,1.0,6.0,1.0,3.0,1.8,2106.7154734139494,0.0,2540.0,0.0,0.0,49520.0,0,1,1,150.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3830.300805588282,0.08372425201836722,0.07734856230994107,27511.11111111111,8,4,8,8_1,8_3,8_0_0 -6903,2,29.0,2,0.0,1,111,2,0,37,2.0,0.0,0.0,327.43366660328576,0.0,166.8393907977941,33242.0,0,10,2,5256,201106903,,,,620.0,1.0,0.0,2.0,0.0,1.0,1.0,3534.6295910468803,0.0,240.0,96.0,0.0,11204.0,0,1,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,494.2730574010799,0.014868932597349133,0.04411576735104247,11204.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -6904,2,94.0,1,0.0,3,120,2,0,78,5.0,3331.5576191916525,0.0,341.0767360450893,250.25908619669116,0.0,15795.0,0,71,1,5257,201106904,,,,,0.0,1.0,5.0,1.0,2.0,1.5,6700.992187435955,0.0,250.0,0.0,0.0,25987.0,0,5,1,120.0,0,3.0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3922.8934414334326,0.24836299091063202,0.15095599497569678,17324.666666666668,5,3,5,5_1,5_1,5_0_1 -6905,2,59.0,1,0.0,5,112,5,77,33,9.0,0.0,138.792631956344,1364.3069441803573,166.8393907977941,0.0,51813.0,50,10,1,5258,201106905,,,350.0,,1.0,1.0,4.0,0.0,2.0,1.5,1688.8790681229748,0.0,1000.0,0.0,0.0,44436.0,6,1,1,80.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1669.9389669344953,0.0322301153558855,0.03758076710177548,29624.0,9,5,9,9_1,9_1,9_0_0 -6906,2,66.0,3,0.0,4,300,5,77,78,4.0,0.0,360.86084308649436,511.615104067634,46.92357866187959,0.0,17672.0,70,50,1,5259,201106906,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1459.4844831870346,0.0,375.0,0.0,0.0,24177.0,5,5,1,74.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,919.3995258160079,0.05202577669850656,0.038027858122017116,16118.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -6907,2,88.0,3,0.0,4,111,1,77,77,6.0,0.0,0.0,390.1917860355822,0.0,0.0,19211.0,70,70,2,5260,201106907,,,133.0,,0.0,2.0,4.0,0.0,2.0,1.5,2142.168157856931,0.0,286.0,0.0,0.0,30367.0,5,5,1,72.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,390.1917860355822,0.020310852430148466,0.012849204268962433,20244.666666666668,6,3,6,6_0,6_3,6_0_1 -6908,2,45.0,2,0.0,1,111,2,38,46,10.0,0.0,0.0,2859.5873550020287,46.92357866187959,0.0,67922.0,10,30,1,5261,201106908,,,,,2.0,0.0,7.0,3.0,5.0,2.4,1563.287235116035,0.0,2096.0,0.0,0.0,95810.0,1,1,2,400.0,6,5.0,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2906.5109336639084,0.04279189266605678,0.030336195946810442,39920.833333333336,10,5,10,10_1,10_2,10_1_0 -6909,2,34.0,5,0.0,7,111,4,85,56,2.0,103.11964059402735,0.0,1910.0297218525002,0.0,0.0,38426.0,50,50,1,5262,201106909,,,,,1.0,0.0,5.0,3.0,5.0,2.4,1721.3407199314283,0.0,1400.0,0.0,0.0,28372.0,7,1,3,90.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2013.1493624465274,0.05239029205346712,0.07095549705507287,11821.666666666668,2,1,2_0,2_1_0,2_4_0,2_0_0 -6910,2,79.0,3,0.0,2,112,2,86,78,4.0,3490.203220105541,0.0,497.9720346258304,0.0,0.0,29418.0,50,70,1,5263,201106910,,,265.0,,0.0,4.0,4.0,0.0,2.0,1.5,932.7107119401825,0.0,365.0,0.0,0.0,22591.0,6,5,1,100.0,6,2.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3988.1752547313713,0.13556921798665345,0.17653823446201458,15060.666666666666,4,2,4_0,4_1_0,4_1_0,4_0_1 -6911,1,33.0,1,92.0,5,300,2,47,47,7.0,1110.5192063972174,0.0,627.5811943229643,0.0,0.0,27623.0,42,42,1,5265,201106911,,,440.0,162.0,2.0,0.0,3.0,2.0,4.0,2.1,2083.1602417025415,0.0,460.0,0.0,0.0,50584.0,1,1,3,66.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1738.1004007201818,0.06292221701915729,0.034360675326589075,24087.619047619046,7,4,7,7_1,7_0,7_0_0 -6912,2,65.0,3,0.0,8,111,1,47,74,10.0,0.0,0.0,442.1745124953847,0.0,913.9636851088122,51296.0,31,20,1,5266,201106912,,,189.0,,1.0,2.0,5.0,0.0,2.0,1.5,3066.9193329588406,850.0,0.0,0.0,0.0,84828.0,1,5,3,125.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1356.1381976041969,0.02643750385223403,0.01598691702744609,56552.0,10,5,10,10_1,10_4,10_0_0 -6913,2,65.0,1,0.0,4,112,4,74,72,10.0,0.0,0.0,3450.814932603091,0.0,956.9737408786385,69956.0,70,70,1,5267,201106913,,,116.0,,0.0,2.0,6.0,0.0,2.0,1.5,1512.8208276691669,890.0,2190.0,0.0,0.0,59007.0,5,5,1,180.0,9,1.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4407.788673481729,0.06300801465895318,0.07469941995833934,39338.0,10,5,10,10_1,10_1,10_0_1 -6914,1,60.0,4,298.0,1,111,2,0,86,1.0,0.0,0.0,442.03544991443573,0.0,285.01729261289825,9653.0,0,71,2,5268,201106914,,,,252.0,0.0,1.0,2.0,1.0,2.0,1.5,6787.893395934184,0.0,324.0,164.0,0.0,11556.0,0,6,3,30.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,727.052742527334,0.07531883792886501,0.06291560596463604,7704.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -6915,2,74.0,3,0.0,9,211,4,78,77,7.0,0.0,0.0,2226.548932902343,208.54923849724264,0.0,30101.0,50,60,1,5269,201106915,,,124.0,,0.0,1.0,5.0,0.0,2.0,1.5,3136.5186499684087,0.0,1632.0,0.0,0.0,34803.0,5,5,1,130.0,3,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2435.0981713995857,0.08089758384769893,0.06996805365628209,23202.0,7,4,7,7_1,7_1,7_0_0 -6916,2,32.0,1,0.0,1,111,1,0,37,9.0,0.0,0.0,204.6460416270536,0.0,0.0,30057.0,0,10,8,5270,201106916,,,,876.0,1.0,0.0,2.0,0.0,1.0,1.0,3782.5576834998624,0.0,150.0,0.0,0.0,34889.0,0,1,3,41.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,204.6460416270536,0.006808598383972239,0.005865632194303465,34889.0,9,5,9,9_0,9_4,9_1_0 -6917,2,36.0,3,0.0,4,112,2,85,52,4.0,0.0,0.0,736.7257498573929,2554.7281715912222,0.0,19069.0,50,41,1,5271,201106917,,,320.0,,1.0,0.0,5.0,3.0,5.0,2.4,1088.748736419259,0.0,540.0,0.0,0.0,36112.0,5,1,2,110.0,6,1.0,4,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3291.453921448615,0.1726075788687721,0.09114571116107152,15046.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_1 -6918,1,60.0,3,205.0,2,111,1,0,55,3.0,0.0,0.0,171.90267496672502,0.0,312.82385774586396,20735.0,0,41,2,5273,201106918,,,,96.0,1.0,0.0,4.0,0.0,1.0,1.0,2872.317802058609,0.0,126.0,180.0,0.0,12800.0,0,4,3,102.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,484.726532712589,0.02337721402038047,0.037869260368171016,12800.0,3,2,3_1,3_0_1,3_4_1,3_0_1 -6919,1,38.0,3,153.0,99,111,2,85,42,4.0,2379.684013708323,0.0,1514.3807080401966,173.79103208103552,0.0,45032.0,50,12,1,5276,201106919,,,352.0,304.0,1.0,4.0,6.0,5.0,7.0,3.2,903.3946775364758,0.0,1110.0,0.0,0.0,48530.0,6,1,3,121.0,7,5.0,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,4067.8557538295554,0.09033255804382562,0.08382146618235227,15165.625,4,2,4_1,4_1_1,4_2_1,4_0_0 -6920,2,47.0,2,0.0,7,221,1,67,62,4.0,0.0,0.0,3274.3366660328575,130.34327406077665,0.0,43347.0,71,50,2,5277,201106920,,,161.0,468.0,2.0,4.0,5.0,2.0,4.0,2.5,5421.501313815439,0.0,2400.0,0.0,0.0,38501.0,1,1,3,81.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,3404.6799400936343,0.07854476526849918,0.08843094828948947,15400.4,4,2,4_0,4_0_0,4_1_0,4_0_0 -6921,1,50.0,4,100.0,99,111,1,0,63,2.0,0.0,0.0,382.0059443705,0.0,503.99399303500303,11113.0,0,50,2,5278,201106921,,,278.0,206.0,1.0,2.0,3.0,0.0,1.0,1.0,2009.376507743244,0.0,280.0,290.0,0.0,9644.0,0,4,3,77.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,885.999937405503,0.07972644087154711,0.09187058662437816,9644.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -6922,2,70.0,2,0.0,1,400,2,72,74,9.0,0.0,41.637789586903196,1653.540016346593,5908.895090755208,0.0,30792.0,50,50,1,528,201106922,,,370.0,,0.0,1.0,4.0,0.0,2.0,1.5,2637.0521578471894,0.0,1212.0,0.0,0.0,47258.0,6,5,1,168.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,7604.072896688704,0.24694962641883292,0.16090551645623394,31505.333333333332,9,5,9,9_1,9_0,9_1_0 -6923,2,71.0,3,0.0,4,112,2,77,78,7.0,1480.163456526577,0.0,1961.8733857313537,26.06865481215533,0.0,24070.0,50,50,1,5280,201106923,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2161.540055278127,0.0,1438.0,0.0,0.0,32510.0,5,5,1,81.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3468.1054970700857,0.14408415027295746,0.10667811433620689,21673.333333333332,6,3,6,6_1,6_0,6_0_1 -6924,2,69.0,2,0.0,5,111,2,0,78,5.0,951.8736054833294,0.0,504.79356934673217,0.0,0.0,13980.0,0,70,1,5281,201106924,,,80.0,,0.0,0.0,4.0,0.0,1.0,1.0,2537.112783324224,0.0,370.0,0.0,0.0,18000.0,0,5,1,85.0,8,6.0,1,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1456.6671748300614,0.10419650749857377,0.08092595415722563,18000.0,5,3,5,5_1,5_2,5_0_0 -6925,2,20.0,5,0.0,1,111,2,0,47,5.0,0.0,0.0,341.0767360450893,0.0,1025.3670892781097,33211.0,0,43,2,5282,201106925,,,,550.0,3.0,1.0,5.0,1.0,3.0,2.0,4207.717763027187,0.0,250.0,590.0,0.0,36180.0,0,1,3,105.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1366.443825323199,0.04114431439352019,0.03776793325934768,18090.0,5,3,5,5_0,5_2,5_1_0 -6926,1,46.0,3,253.0,9,400,4,0,65,4.0,0.0,0.0,2701.3277494771073,0.0,0.0,43744.0,0,50,1,5284,201106926,,,423.0,,2.0,0.0,5.0,2.0,3.0,2.0,1354.6016069876785,0.0,1980.0,0.0,0.0,32438.0,0,1,2,105.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2701.3277494771073,0.06175310327078245,0.08327664311847548,16219.0,4,2,4_1,4_1_1,4_0_1,4_0_0 -6927,1,42.0,3,229.0,8,400,2,85,63,1.0,0.0,0.0,1852.7288301969252,45.18566834106924,0.0,19567.0,50,50,1,5285,201106927,,,165.0,,1.0,0.0,5.0,3.0,5.0,2.4,1094.8098367899024,0.0,1358.0,0.0,0.0,22134.0,6,1,2,114.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1897.9144985379944,0.09699568142985611,0.0857465663024304,9222.5,1,1,1_1,1_1_1,1_0_1,1_0_0 -6928,2,56.0,3,0.0,1,400,5,0,67,4.0,0.0,712.0062019360447,231.93218051066074,486.61488982689946,0.0,9487.0,0,60,1,5286,201106928,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2334.5205787419873,0.0,170.0,0.0,0.0,14839.0,0,1,5,60.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1430.5532722736048,0.15079090041884735,0.09640496477347563,14839.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -6929,2,79.0,3,0.0,5,111,1,0,77,1.0,0.0,0.0,545.7227776721429,0.0,0.0,15866.0,0,70,2,5289,201106929,,,,,0.0,3.0,1.0,0.0,1.0,1.0,2896.658056222665,0.0,400.0,0.0,0.0,8946.0,0,6,3,25.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,545.7227776721429,0.034395737909501005,0.061001875438424204,8946.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -6930,1,41.0,3,291.0,2,111,2,0,56,2.0,0.0,0.0,1146.0178331115,0.0,2085.4923849724264,21470.0,0,50,2,5290,201106930,,,650.0,,2.0,0.0,4.0,2.0,3.0,1.8,2264.696778025968,0.0,840.0,1200.0,0.0,17495.0,0,4,3,80.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,3231.5102180839267,0.15051281872770966,0.18471050117656054,9719.444444444443,1,1,1_1,1_0_1,1_2_1,1_0_1 -6931,2,61.0,2,0.0,5,221,4,0,75,7.0,0.0,0.0,2372.5297759296413,97.32297796537989,0.0,19711.0,0,60,1,5291,201106931,,,344.0,,0.0,3.0,5.0,0.0,1.0,1.0,3394.6192805650794,0.0,1739.0,0.0,0.0,22769.0,0,5,1,120.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2469.852753895021,0.125303269945463,0.10847436224230406,22769.0,7,4,7,7_1,7_1,7_0_0 -6932,2,47.0,2,0.0,4,112,2,0,52,6.0,1586.456009138882,0.0,941.3717914844465,208.54923849724264,0.0,37531.0,0,60,1,5292,201106932,,,,,1.0,2.0,5.0,1.0,3.0,2.0,1844.0393107970322,0.0,690.0,0.0,0.0,41590.0,0,1,1,90.0,6,1.0,4,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2736.377039120571,0.07290978228985562,0.06579411010148044,20795.0,6,3,6,6_1,6_1,6_0_1 -6933,1,44.0,3,68.0,8,111,2,0,45,5.0,0.0,0.0,368.36287492869644,0.0,695.1641283241421,19207.0,0,41,2,5293,201106933,,,280.0,324.0,1.0,0.0,2.0,1.0,2.0,1.5,3140.565668554422,0.0,270.0,400.0,0.0,26699.0,0,1,3,46.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1063.5270032528385,0.05537184376804491,0.03983396394070334,17799.333333333332,5,3,5,5_0,5_4,5_0_0 -6934,2,34.0,3,0.0,1,212,2,52,63,6.0,2379.684013708323,0.0,900.4425831590357,130.34327406077665,0.0,28259.0,50,50,1,5294,201106934,,,150.0,,2.0,0.0,8.0,2.0,4.0,2.1,1163.6762972314632,0.0,660.0,0.0,0.0,42810.0,1,1,2,200.0,1,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3410.4698709281356,0.12068614851651281,0.07966526210997747,20385.714285714286,6,3,6,6_1,6_0,6_1_0 -6935,2,50.0,3,0.0,99,111,1,0,47,2.0,0.0,0.0,346.53396382181074,0.0,0.0,17792.0,0,41,2,5296,201106935,,,,301.0,1.0,1.0,4.0,1.0,2.0,1.3,2959.784204839426,0.0,254.0,0.0,0.0,14715.0,0,1,3,74.0,7,5.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,346.53396382181074,0.01947695390185537,0.023549708720476435,11319.23076923077,2,1,2_0,2_0_0,2_2_0,2_0_0 -6936,2,32.0,3,0.0,3,111,1,84,34,3.0,0.0,0.0,36.41437161726697,0.0,75.2675975971963,19742.0,10,10,2,5298,201106936,,,,193.0,1.0,0.0,2.0,0.0,2.0,1.5,2060.693512977416,70.0,0.0,0.0,0.0,20230.0,3,1,3,40.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,111.68196921446327,0.005657074724671425,0.00552061142928637,13486.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_1 -6937,2,43.0,4,0.0,1,111,2,0,43,9.0,0.0,0.0,313.79059716148214,0.0,858.5276984803155,30022.0,0,20,2,5299,201106937,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2472.8869324167954,0.0,230.0,494.0,0.0,30987.0,0,1,1,60.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1172.3182956417977,0.039048640851435536,0.03783258449161899,30987.0,9,5,9,9_0,9_3,9_1_0 -6938,2,45.0,3,0.0,1,112,2,0,54,4.0,3252.2348187347084,0.0,676.6962443134572,0.0,0.0,27597.0,0,42,1,5300,201106938,,,606.0,,1.0,0.0,3.0,2.0,3.0,1.8,5884.926990464502,0.0,496.0,0.0,0.0,27647.0,0,1,2,57.0,4,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3928.9310630481655,0.14236804953611498,0.14211057485615675,15359.444444444443,4,2,4_0,4_1_0,4_0_0,4_1_0 -6939,2,74.0,1,0.0,1,300,2,71,71,2.0,2157.58017242888,0.0,1227.8762497623215,225.92834170534618,0.0,30598.0,60,70,1,5301,201106939,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1452.4270254572907,0.0,900.0,0.0,0.0,17707.0,5,5,1,120.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3611.3847638965476,0.11802682410276971,0.2039523783755886,11804.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -6940,2,42.0,3,0.0,9,111,6,0,63,5.0,0.0,0.0,682.1534720901786,0.0,0.0,27225.0,0,50,2,5302,201106940,,,,465.0,1.0,0.0,2.0,0.0,1.0,1.0,3060.070869946511,0.0,500.0,0.0,0.0,18836.0,0,1,3,45.0,6,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,682.1534720901786,0.02505614222553457,0.03621541049533758,18836.0,5,3,5,5_0,5_2,5_0_0 -6941,2,45.0,3,0.0,5,111,2,46,38,7.0,4759.368027416646,0.0,2046.460416270536,0.0,0.0,73955.0,31,42,1,5304,201106941,,,,,2.0,0.0,8.0,3.0,5.0,3.0,2376.486848044375,0.0,1500.0,0.0,0.0,65486.0,1,1,1,180.0,8,6.0,4,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,6805.828443687182,0.09202661677624477,0.10392799138269526,21828.666666666668,7,4,7,7_1,7_2,7_0_0 -6942,2,63.0,2,0.0,5,111,2,78,77,8.0,0.0,0.0,1178.7611997718286,0.0,1390.3282566482842,36404.0,70,70,1,5305,201106942,,,540.0,,0.0,1.0,4.0,0.0,2.0,1.5,1910.3593165614939,0.0,864.0,800.0,0.0,41232.0,5,5,1,120.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2569.0894564201126,0.0705716255471957,0.06230814552823323,27488.0,8,4,8,8_1,8_3,8_0_0 -6943,2,25.0,4,0.0,4,111,2,68,67,4.0,0.0,0.0,682.1534720901786,0.0,1199.158121359145,13082.0,41,50,2,5306,201106943,,,,470.0,2.0,0.0,3.0,0.0,2.0,1.5,2319.9756143459995,0.0,500.0,690.0,0.0,24360.0,4,4,3,76.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1881.3115934493237,0.14380917240860142,0.07722953996097388,16240.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -6944,2,39.0,2,0.0,2,111,1,0,47,10.0,0.0,0.0,422.93515269591074,0.0,0.0,32641.0,0,31,2,5307,201106944,,,100.0,590.0,1.0,3.0,3.0,0.0,1.0,1.0,3088.384901391861,0.0,310.0,0.0,0.0,53285.0,0,1,3,65.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,422.93515269591074,0.012957175107867735,0.007937227225221184,53285.0,10,5,10,10_0,10_2,10_0_1 -6945,2,59.0,3,0.0,7,111,2,72,22,5.0,0.0,0.0,3410.767360450893,0.0,0.0,50119.0,71,50,1,5308,201106945,,,,,2.0,1.0,4.0,1.0,3.0,2.0,2783.8324730482905,0.0,2500.0,0.0,0.0,35695.0,5,1,1,140.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3410.767360450893,0.068053380164227,0.09555308475839454,17847.5,5,3,5,5_1,5_3,5_0_0 -6946,2,77.0,3,0.0,7,112,2,71,71,2.0,1903.7472109666587,0.0,525.2581735094376,156.41192887293198,0.0,15564.0,71,70,1,5309,201106946,,,249.0,,0.0,1.0,4.0,0.0,2.0,1.5,2980.290220297507,0.0,385.0,0.0,0.0,17028.0,5,5,1,90.0,9,3.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2585.4173133490285,0.16611522188055952,0.15183329300851706,11352.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -6947,2,83.0,2,0.0,2,111,2,0,77,6.0,0.0,0.0,524.2875640664327,0.0,2347.415335338848,21769.0,0,60,2,5312,201106947,,,187.0,,0.0,4.0,3.0,0.0,1.0,1.0,3469.0725200781117,562.0,170.0,1003.0,0.0,20689.0,0,5,5,60.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2871.7028994052807,0.13191707930567692,0.13880336891127076,20689.0,6,3,6,6_0,6_3,6_0_1 -6948,2,47.0,2,0.0,8,111,2,77,47,4.0,0.0,0.0,2728.6138883607146,0.0,2433.074449134497,53067.0,41,71,1,5313,201106948,,,580.0,,1.0,1.0,4.0,1.0,3.0,2.0,3732.2297725438443,0.0,2000.0,1400.0,0.0,30282.0,7,1,1,120.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5161.688337495212,0.09726738533354462,0.170454010220435,15141.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -6949,0,54.0,4,0.0,5,221,2,0,75,4.0,0.0,0.0,720.3540665272286,538.7521994512101,0.0,12025.0,0,33,2,5317,201106949,,,340.0,,0.0,0.0,2.0,0.0,1.0,1.0,3776.5749063278913,0.0,528.0,0.0,0.0,14921.0,0,7,5,55.0,1,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1259.1062659784388,0.10470738178614876,0.08438484458001735,14921.0,3,2,3_0,3_0_0,3_1_0,3_0_0 -6950,2,57.0,3,0.0,7,300,2,0,42,5.0,1481.749912535716,0.0,375.18440964959825,0.0,0.0,35680.0,0,20,1,5318,201106950,,,,,1.0,0.0,6.0,1.0,2.0,1.5,1564.44165830584,0.0,275.0,0.0,0.0,25429.0,0,1,1,148.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1856.9343221853142,0.052044123379633246,0.07302427630600158,16952.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0 -6951,2,72.0,3,0.0,2,111,2,75,74,7.0,0.0,0.0,703.9823831970643,0.0,2356.606395018842,35636.0,70,60,1,5319,201106951,,,192.0,,0.0,2.0,4.0,0.0,2.0,1.5,2371.7281370443334,0.0,516.0,1356.0,0.0,36441.0,5,5,1,110.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3060.588778215906,0.08588474515141728,0.08398750797771483,24294.0,7,4,7,7_1,7_3,7_0_1 -6952,2,42.0,3,0.0,7,112,2,46,48,9.0,0.0,0.0,768.1048095735412,0.0,1546.740185521216,39667.0,31,31,1,532,201106952,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,3764.910978194325,0.0,563.0,890.0,0.0,62282.0,1,1,1,120.0,7,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2314.844995094757,0.05835694645662029,0.037167158972010485,29658.095238095237,9,5,9,9_1,9_1,9_0_0 -6953,2,57.0,3,0.0,6,112,5,69,78,6.0,0.0,166.55115834761278,1091.4455553442858,156.41192887293198,0.0,40339.0,50,50,1,5320,201106953,,,150.0,,1.0,3.0,4.0,0.0,2.0,1.5,1598.7686879838373,0.0,800.0,0.0,0.0,30991.0,1,7,1,150.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1414.4086425648306,0.03506305665893628,0.045639335373651405,20660.666666666668,6,3,6,6_1,6_0,6_0_0 -6954,2,80.0,3,0.0,6,111,2,77,74,9.0,0.0,0.0,671.2390165367358,0.0,2606.865481215533,29481.0,70,50,1,5323,201106954,,,456.0,,0.0,4.0,6.0,0.0,2.0,1.5,988.8142087272305,0.0,492.0,1500.0,0.0,44451.0,5,5,1,179.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3278.104497752269,0.11119380271199311,0.07374647359457084,29634.0,9,5,9,9_1,9_3,9_0_0 -6955,2,58.0,2,0.0,6,112,2,77,75,7.0,0.0,0.0,2099.66838709357,90.37133668213848,0.0,24342.0,70,33,1,5324,201106955,,,360.0,,1.0,1.0,5.0,1.0,3.0,2.0,1256.6837126206688,0.0,1539.0,0.0,0.0,47845.0,5,5,1,100.0,4,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2190.0397237757084,0.08996958852089838,0.045773638285624585,23922.5,7,4,7,7_1,7_0,7_0_0 -6956,2,58.0,4,0.0,2,112,2,78,77,6.0,0.0,0.0,0.0,0.0,0.0,29352.0,50,70,1,5325,201106956,,,,,0.0,6.0,4.0,0.0,2.0,1.5,1179.6475733797656,0.0,0.0,0.0,0.0,28898.0,5,4,3,90.0,6,1.0,3,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0.0,0.0,0.0,19265.333333333332,6,3,6,6_1,6_1,6_0_1 -6957,2,54.0,2,0.0,5,111,2,75,45,9.0,0.0,0.0,818.5841665082144,0.0,2433.074449134497,50550.0,50,60,1,5326,201106957,,,480.0,,2.0,1.0,5.0,1.0,3.0,2.0,2491.741232629541,0.0,600.0,1400.0,0.0,72456.0,5,1,1,115.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3251.6586156427115,0.06432559081390131,0.0448776997852864,36228.0,9,5,9,9_1,9_4,9_0_0 -6958,2,46.0,1,0.0,8,112,2,31,34,9.0,0.0,0.0,1023.230208135268,0.0,1390.3282566482842,51735.0,10,10,1,5328,201106958,,,250.0,,2.0,0.0,5.0,1.0,3.0,1.8,976.724732101139,0.0,750.0,800.0,0.0,62247.0,1,1,2,150.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2413.558464783552,0.04665233332914955,0.038773892151968,34581.666666666664,9,5,9,9_1,9_1,9_0_0 -6959,2,49.0,4,0.0,3,111,2,0,54,6.0,0.0,0.0,682.1534720901786,0.0,173.79103208103552,17498.0,0,31,2,5329,201106959,,,390.0,,1.0,0.0,3.0,0.0,1.0,1.0,2970.489131328484,0.0,500.0,100.0,0.0,21500.0,0,1,1,59.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,855.9445041712141,0.04891670500464134,0.039811372287033214,21500.0,6,3,6,6_0,6_3,6_0_1 -6960,2,66.0,3,0.0,5,111,2,77,78,3.0,0.0,0.0,490.03340090664983,0.0,1012.8868133794131,16074.0,70,50,1,533,201106960,,,650.0,,0.0,1.0,5.0,0.0,2.0,1.5,1146.4892814485684,942.0,0.0,0.0,0.0,19854.0,5,5,1,96.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1502.920214286063,0.09350007554349028,0.07569861057147491,13236.0,3,2,3_0,3_1_0,3_3_0,3_0_0 -6961,2,51.0,2,0.0,7,221,2,54,46,5.0,0.0,0.0,818.5841665082144,1737.9103208103552,0.0,46682.0,41,60,1,5330,201106961,,,410.0,,2.0,1.0,5.0,1.0,3.0,2.0,2840.961187822733,0.0,600.0,0.0,0.0,37687.0,1,1,2,120.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2556.4944873185696,0.054764030832410125,0.0678349162129798,18843.5,5,3,5,5_1,5_1,5_0_0 -6962,2,48.0,3,0.0,4,120,2,56,43,3.0,0.0,381.679737879946,482.23032127437835,0.0,996.7580424657281,28141.0,50,10,1,5331,201106962,,,359.0,,3.0,1.0,6.0,1.0,3.0,2.0,855.4458095068059,927.0,0.0,0.0,0.0,27497.0,1,1,1,86.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1860.6681016200523,0.06611947342383186,0.06766804020875195,13748.5,3,2,3_0,3_1_0,3_1_0,3_0_1 -6963,2,55.0,1,0.0,2,111,2,43,43,9.0,0.0,0.0,627.5811943229643,0.0,1737.9103208103552,30181.0,33,33,1,5332,201106963,,,375.0,,2.0,1.0,4.0,1.0,3.0,2.0,2671.9600741779964,0.0,460.0,1000.0,0.0,73471.0,1,1,1,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2365.4915151333194,0.07837684354836882,0.032196261315802416,36735.5,9,5,9,9_1,9_4,9_0_1 -6964,2,39.0,1,0.0,5,300,4,47,43,10.0,0.0,0.0,130.9734666413143,0.0,0.0,59163.0,43,33,1,5333,201106964,,,496.0,,2.0,0.0,5.0,1.0,3.0,1.8,1622.716165701769,0.0,96.0,0.0,0.0,84547.0,1,1,2,140.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,130.9734666413143,0.0022137732474910724,0.0015491202129148793,46970.555555555555,10,5,10,10_1,10_1,10_0_0 -6965,2,56.0,4,0.0,7,120,2,0,46,6.0,0.0,0.0,332.8908943800072,0.0,1093.1455917897135,18920.0,0,70,1,5335,201106965,,,,443.0,1.0,1.0,4.0,0.0,1.0,1.0,3454.747399311157,0.0,244.0,629.0,0.0,20660.0,0,1,3,78.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1426.0364861697208,0.07537190730283937,0.06902403127636596,20660.0,6,3,6,6_1,6_1,6_0_0 -6966,1,74.0,3,145.0,1,400,4,0,77,3.0,0.0,0.0,982.3009998098572,234.61789330939797,0.0,16595.0,0,71,8,5336,201106966,,,302.0,,0.0,4.0,3.0,0.0,1.0,1.0,3270.0540447702206,0.0,720.0,0.0,0.0,14563.0,0,5,3,70.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,1216.9188931192552,0.07333045454168456,0.08356237678495194,14563.0,3,2,3_1,3_0_1,3_0_1,3_1_0 -6967,2,51.0,2,0.0,4,111,2,54,37,8.0,0.0,0.0,955.0148609262501,0.0,1911.7013528913908,56060.0,60,20,1,5338,201106967,,,650.0,,2.0,0.0,5.0,2.0,4.0,2.5,945.7237262746087,0.0,700.0,1100.0,0.0,68366.0,1,1,1,90.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2866.716213817641,0.05113657177698253,0.04193189909922536,27346.4,8,4,8,8_1,8_3,8_0_1 -6968,2,40.0,2,0.0,2,111,2,21,54,6.0,0.0,0.0,818.5841665082144,0.0,3128.2385774586396,92143.0,60,43,1,5339,201106968,,,430.0,,2.0,0.0,5.0,2.0,4.0,2.1,4850.641957728157,0.0,600.0,1800.0,0.0,41737.0,1,1,1,180.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3946.822743966854,0.04283366879705299,0.09456412161791346,19874.761904761905,6,3,6,6_1,6_4,6_0_1 -6969,2,78.0,3,0.0,2,111,2,0,77,8.0,0.0,0.0,368.36287492869644,0.0,2820.6284506752068,12669.0,0,50,1,534,201106969,,,130.0,,0.0,2.0,5.0,0.0,1.0,1.0,3648.871637405808,0.0,270.0,1623.0,0.0,24972.0,0,5,1,90.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3188.991325603903,0.2517161043179338,0.127702680025785,24972.0,8,4,8,8_1,8_3,8_0_1 -6970,2,27.0,1,0.0,2,111,1,53,42,7.0,0.0,0.0,477.50743046312505,0.0,285.01729261289825,28562.0,31,50,2,5340,201106970,,,,260.0,2.0,0.0,2.0,0.0,2.0,1.5,3424.778691354148,0.0,350.0,164.0,0.0,32682.0,1,1,3,46.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,762.5247230760233,0.026697175375534742,0.02333164197650154,21788.0,7,4,7,7_0,7_3,7_0_1 -6971,2,47.0,3,0.0,1,111,2,0,64,4.0,0.0,0.0,818.5841665082144,0.0,0.0,30847.0,0,50,2,5342,201106971,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3400.393930679416,0.0,600.0,0.0,0.0,16560.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,818.5841665082144,0.026536913362992003,0.04943141102102744,16560.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -6972,2,36.0,2,0.0,9,120,2,54,47,7.0,0.0,0.0,573.00891655575,0.0,2015.9759721400121,30402.0,20,50,1,5344,201106972,,,100.0,,2.0,0.0,5.0,2.0,4.0,2.1,2935.0301434386706,0.0,420.0,1160.0,0.0,45920.0,1,1,3,150.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2588.984888695762,0.08515837407722393,0.05638033294198088,21866.666666666664,7,4,7,7_1,7_1,7_0_0 -6973,2,35.0,4,0.0,1,111,2,85,64,3.0,0.0,187.3700531410644,1011.7993256512037,0.0,2091.3639618078114,33376.0,50,60,1,5346,201106973,,,,,2.0,0.0,7.0,4.0,6.0,2.9,1239.720902083415,1945.0,0.0,0.0,0.0,37063.0,6,1,2,170.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3290.5333406000796,0.0985898052672603,0.08878216389930874,12780.344827586207,3,2,3_0,3_1_0,3_3_0,3_1_0 -6974,2,68.0,2,0.0,5,120,5,77,75,8.0,0.0,624.566843803548,2865.0445827787503,0.0,0.0,33196.0,50,41,1,535,201106974,,,210.0,,0.0,2.0,4.0,0.0,2.0,1.5,2086.9041356314297,0.0,2100.0,0.0,0.0,38090.0,5,5,1,90.0,0,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3489.611426582298,0.105121443143219,0.09161489699612228,25393.333333333332,8,4,8,8_1,8_1,8_0_0 -6975,2,86.0,2,0.0,1,111,2,0,77,8.0,0.0,0.0,3820.0594437050004,0.0,1703.1521143941482,18902.0,0,60,1,5350,201106975,,,146.0,,0.0,1.0,4.0,0.0,1.0,1.0,2645.0476995002014,0.0,2800.0,980.0,0.0,26351.0,0,5,1,97.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,5523.2115580991485,0.2922024948735133,0.2096015922773006,26351.0,8,4,8,8_1,8_3,8_1_0 -6976,2,37.0,3,0.0,1,400,2,69,42,5.0,3014.2664173638764,0.0,791.2980276246072,0.0,0.0,28301.0,33,20,1,5351,201106976,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2428.2897435151444,0.0,580.0,0.0,0.0,36782.0,1,1,2,140.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3805.5644449884835,0.13446749037095804,0.10346268405710629,17515.238095238095,5,3,5,5_1,5_0,5_1_0 -6977,2,35.0,2,0.0,8,112,2,22,46,8.0,0.0,0.0,718.9897595830482,0.0,1376.4249740818013,52718.0,20,10,1,5352,201106977,,,586.0,,2.0,0.0,5.0,2.0,4.0,2.1,2082.7063306203277,0.0,527.0,792.0,0.0,59991.0,1,1,2,110.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2095.4147336648493,0.039747614356858176,0.034928818217146725,28567.142857142855,8,4,8,8_1,8_2,8_0_0 -6978,2,53.0,2,0.0,4,111,1,0,47,10.0,0.0,0.0,245.5752499524643,0.0,0.0,21871.0,0,31,2,5353,201106978,,,,430.0,1.0,0.0,1.0,0.0,1.0,1.0,3437.598518019841,0.0,180.0,0.0,0.0,42683.0,0,1,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,245.5752499524643,0.011228350324743465,0.0057534674215135835,42683.0,10,5,10,10_0,10_4,10_0_1 -6979,2,42.0,4,0.0,5,111,2,0,46,5.0,79.32280045694411,0.0,877.2493651079698,0.0,1176.5652871886105,35958.0,0,41,1,5354,201106979,,,320.0,657.0,1.0,0.0,6.0,2.0,3.0,2.0,2397.4622369023623,0.0,643.0,677.0,0.0,36455.0,0,1,3,110.0,9,7.0,2,9,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2133.1374527535245,0.059323028331762735,0.05851426286527293,18227.5,5,3,5,5_1,5_3,5_0_0 -6980,2,72.0,3,0.0,1,111,4,65,75,6.0,285.5620816449988,0.0,941.3717914844465,0.0,121.65372245672486,34755.0,70,50,1,5355,201106980,,,129.0,,1.0,3.0,5.0,0.0,2.0,1.5,1280.4576432620258,0.0,690.0,70.0,0.0,31093.0,1,5,2,80.0,9,7.0,3,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1348.58759558617,0.038802693010679616,0.04337270754144566,20728.666666666668,6,3,6,6_1,6_3,6_1_0 -6981,2,67.0,3,0.0,5,111,1,0,56,4.0,0.0,0.0,1267.441151143552,0.0,0.0,33275.0,0,71,2,5356,201106981,,,,,2.0,2.0,4.0,1.0,3.0,1.8,2714.4520526379797,0.0,929.0,0.0,0.0,27539.0,0,5,2,80.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1267.441151143552,0.03808989184503537,0.04602349944237452,15299.444444444443,4,2,4_0,4_0_0,4_4_0,4_0_0 -6982,2,78.0,3,0.0,4,111,2,0,74,9.0,0.0,0.0,697.1608484761625,0.0,2540.824889024739,23520.0,0,70,1,5358,201106982,,,252.0,,1.0,1.0,6.0,1.0,2.0,1.5,1276.6195202423858,0.0,511.0,1462.0,0.0,50243.0,0,5,1,110.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3237.9857375009015,0.13766946162843968,0.06444650473699623,33495.333333333336,9,5,9,9_1,9_3,9_0_1 -6983,2,45.0,3,0.0,9,120,4,55,67,7.0,0.0,0.0,2195.1698731861948,0.0,0.0,31553.0,42,71,1,536,201106983,,,226.0,,2.0,2.0,5.0,0.0,2.0,1.5,3147.6841766527946,0.0,1609.0,0.0,0.0,36144.0,1,1,2,153.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2195.1698731861948,0.06957087672126881,0.06073400490222983,24096.0,7,4,7,7_1,7_0,7_0_0 -6984,2,73.0,4,0.0,3,111,1,56,78,4.0,0.0,0.0,238.28278958143056,0.0,172.65300622991123,50124.0,60,50,2,5361,201106984,,,,360.0,2.0,5.0,3.0,1.0,3.0,2.0,2836.824461339815,104.0,135.0,35.0,0.0,32054.0,4,5,3,69.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,410.9357958113418,0.00819838392409508,0.01282010968401266,16027.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -6985,2,64.0,4,0.0,1,112,4,72,77,5.0,0.0,555.170527825376,5457.227776721429,0.0,0.0,29935.0,70,50,1,5362,201106985,,,488.0,,0.0,2.0,5.0,0.0,2.0,1.5,2636.867503878742,0.0,4000.0,0.0,0.0,27400.0,5,5,1,180.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6012.398304546805,0.20084844845654934,0.21943059505645274,18266.666666666668,5,3,5,5_1,5_0,5_1_0 -6986,0,21.0,2,0.0,1,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,12893.0,0,41,2,5363,201106986,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3199.585513753843,0.0,0.0,0.0,0.0,7205.0,0,3,5,30.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,7205.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -6987,2,61.0,3,0.0,1,111,2,85,31,10.0,0.0,0.0,2224.4034382914206,0.0,5275.552932651808,127051.0,41,10,2,5365,201106987,,,,3213.0,2.0,6.0,4.0,1.0,3.0,2.0,3218.020954266511,2073.0,840.0,1753.0,0.0,245027.0,6,1,3,115.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,7499.956370943229,0.059031069184368706,0.030608693617206383,122513.5,10,5,10,10_0,10_4,10_1_0 -6988,2,68.0,3,0.0,2,111,1,0,77,4.0,0.0,0.0,1309.734666413143,0.0,0.0,25784.0,0,70,2,5367,201106988,,,,492.0,1.0,3.0,6.0,1.0,3.0,2.0,2424.302771214508,0.0,960.0,0.0,0.0,31383.0,0,5,3,110.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1309.734666413143,0.05079641120125438,0.04173388988984938,15691.5,4,2,4_0,4_0_0,4_4_0,4_0_1 -6989,2,52.0,3,0.0,8,111,6,85,67,3.0,0.0,0.0,1080.531099790843,0.0,1647.5389841282167,26102.0,71,71,1,537,201106989,,,328.0,,1.0,2.0,4.0,1.0,3.0,2.0,1983.4600444499156,0.0,792.0,948.0,0.0,27024.0,5,1,2,120.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2728.0700839190595,0.10451574913489615,0.1009498994937485,13512.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -6990,2,57.0,3,0.0,6,300,2,12,21,3.0,0.0,0.0,1435.5756112567506,3962.4355314476097,446.2293286119494,31934.0,50,50,1,5370,201106990,,,,,2.0,1.0,7.0,0.0,3.0,2.0,2097.1801760220433,415.0,894.0,0.0,0.0,25835.0,1,1,1,120.0,0,0.0,5,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5844.24047131631,0.1830099727975296,0.22621406894973137,12917.5,3,2,3_0,3_1_0,3_0_0,3_0_0 -6991,2,48.0,3,0.0,1,112,2,85,48,7.0,0.0,0.0,914.0856526008394,5255.440810130514,0.0,39119.0,43,50,1,5371,201106991,,,360.0,,2.0,0.0,4.0,1.0,3.0,2.0,2277.868705368691,0.0,670.0,0.0,0.0,48353.0,7,1,3,110.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6169.526462731354,0.15771176315170005,0.12759345775301126,24176.5,7,4,7,7_1,7_0,7_1_0 -6992,2,30.0,1,0.0,99,111,2,38,38,9.0,0.0,0.0,342.44104298926965,0.0,851.5760571970741,54444.0,12,12,2,5374,201106992,,,,680.0,2.0,0.0,3.0,0.0,2.0,1.5,2856.8914393366513,0.0,251.0,490.0,0.0,54398.0,1,1,3,72.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1194.0171001863437,0.021931105359384757,0.02194965072587859,36265.333333333336,9,5,9,9_0,9_3,9_0_0 -6993,2,26.0,2,0.0,4,111,1,55,55,6.0,0.0,0.0,900.4425831590357,0.0,125.12954309834558,21257.0,43,43,2,5375,201106993,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3379.7615234031578,0.0,660.0,72.0,0.0,38565.0,1,1,2,81.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1025.5721262573813,0.04824632479923702,0.02659333920024326,21425.0,6,3,6,6_0,6_2,6_0_1 -6994,2,41.0,2,0.0,1,112,2,0,47,9.0,0.0,34.698157989086,1469.3585788822447,0.0,0.0,11815.0,0,41,1,5376,201106994,,,173.0,,1.0,2.0,7.0,0.0,1.0,1.0,2598.2562536144037,0.0,1077.0,0.0,0.0,29847.0,0,1,2,200.0,7,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1504.0567368713307,0.1273006125155591,0.05039222490941571,29847.0,9,5,9,9_1,9_0,9_1_0 -6995,2,50.0,1,0.0,1,111,2,37,37,10.0,0.0,0.0,2638.9742630143514,0.0,6438.442300476874,201133.0,12,12,2,5377,201106995,,,,,2.0,0.0,9.0,4.0,6.0,3.3,1441.8054344690684,1139.0,1500.0,3000.0,0.0,411806.0,1,1,1,280.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,9077.416563491226,0.04513141336076738,0.022042943918959963,124789.69696969698,10,5,10,10_0,10_4,10_1_0 -6996,2,54.0,3,0.0,1,112,6,85,63,7.0,2221.038412794435,0.0,736.7257498573929,243.30744491344973,0.0,38668.0,50,50,1,5379,201106996,,,273.0,,2.0,2.0,6.0,1.0,3.0,2.0,1118.5789732057656,0.0,540.0,0.0,0.0,49096.0,5,1,1,116.0,3,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3201.0716075652776,0.08278348007565112,0.06520025272049206,24548.0,7,4,7,7_1,7_0,7_1_0 -6997,2,56.0,2,0.0,1,111,2,46,48,9.0,0.0,41.637789586903196,616.6667387695214,0.0,2740.68457591793,46411.0,44,10,1,5380,201106997,,,329.0,,2.0,3.0,5.0,0.0,2.0,1.5,1637.395792360246,0.0,452.0,1577.0,0.0,55126.0,1,1,3,102.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3398.9891042743548,0.07323671337127739,0.06165854776828275,36750.666666666664,9,5,9,9_1,9_2,9_1_0 -6998,2,49.0,2,0.0,1,112,2,54,46,7.0,0.0,0.0,2371.06852897303,0.0,670.9568700092926,75117.0,50,50,1,5381,201106998,,,500.0,,3.0,0.0,6.0,3.0,5.0,3.0,2179.9195552065694,624.0,1500.0,0.0,0.0,72857.0,1,1,2,200.0,5,0.0,4,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3042.0253989823227,0.04049716307869487,0.041753371659309646,24285.666666666668,7,4,7,7_1,7_0,7_1_0 -6999,1,43.0,3,120.0,4,111,1,85,68,2.0,0.0,0.0,682.1534720901786,0.0,0.0,23600.0,50,50,8,5382,201106999,,,,,1.0,0.0,3.0,2.0,4.0,2.1,2400.3269733731495,0.0,500.0,0.0,0.0,23160.0,6,1,3,70.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,682.1534720901786,0.02890480813941435,0.029453949572114793,11028.571428571428,2,1,2_1,2_0_1,2_3_1,2_0_1 -7000,2,39.0,2,0.0,9,400,5,0,63,7.0,0.0,69.396315978172,818.5841665082144,0.0,0.0,11398.0,0,50,1,5383,201107000,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2391.9923538889357,0.0,600.0,0.0,0.0,22108.0,0,1,2,119.0,0,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,887.9804824863863,0.07790669262031816,0.04016557275585247,22108.0,7,4,7,7_1,7_1,7_0_0 -7001,2,52.0,3,0.0,8,111,2,77,52,8.0,0.0,0.0,2251.1064578975893,173.79103208103552,0.0,40904.0,50,41,1,5384,201107001,,,200.0,,2.0,0.0,4.0,1.0,3.0,2.0,1958.781732613068,0.0,1650.0,0.0,0.0,55612.0,5,1,2,150.0,6,5.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2424.897489978625,0.05928264937362177,0.043603853304657714,27806.0,8,4,8,8_1,8_2,8_0_0 -7002,2,56.0,2,0.0,1,211,2,0,21,2.0,0.0,0.0,727.6084525920979,0.0,2109.2717456118703,24215.0,0,50,1,5387,201107002,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1531.8698062563626,507.0,340.0,900.0,0.0,12048.0,0,1,1,78.0,3,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2836.880198203968,0.11715383845566665,0.23546482388811157,12048.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -7003,2,38.0,1,0.0,1,111,2,55,21,7.0,0.0,0.0,1910.0297218525002,0.0,1390.3282566482842,29118.0,31,43,1,5388,201107003,,,360.0,,2.0,0.0,6.0,2.0,4.0,2.1,4717.148927692273,0.0,1400.0,800.0,0.0,47173.0,1,1,2,96.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3300.357978500784,0.11334425367472986,0.06996285965490395,22463.333333333332,7,4,7,7_1,7_2,7_1_0 -7004,2,49.0,3,0.0,7,111,2,47,38,8.0,0.0,0.0,515.708024900175,0.0,750.7772585900734,40431.0,20,10,1,5389,201107004,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1268.254945826596,0.0,378.0,432.0,0.0,64521.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1266.4852834902485,0.031324609420747655,0.019629039901586282,26883.75,8,4,8,8_1,8_4,8_0_0 -7005,2,79.0,3,0.0,4,111,2,71,71,2.0,1237.435687128328,0.0,777.6549581828036,145.98446694806984,0.0,14543.0,70,71,1,539,201107005,,,90.0,,0.0,1.0,4.0,0.0,2.0,1.5,2725.8422936200095,0.0,570.0,0.0,0.0,14380.0,5,5,5,92.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2161.0751122592014,0.1485989900473906,0.15028338750063988,9586.666666666666,1,1,1_0,1_1_0,1_3_0,1_0_1 -7006,2,64.0,2,0.0,6,111,2,77,75,6.0,0.0,0.0,941.3717914844465,2869.2899396578964,0.0,33905.0,50,42,1,5391,201107006,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2411.3280774639775,0.0,690.0,0.0,0.0,31180.0,5,5,1,96.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3810.661731142343,0.11239232358479112,0.12221493685511042,20786.666666666668,6,3,6,6_1,6_3,6_0_0 -7007,2,22.0,4,0.0,5,112,2,0,67,1.0,0.0,0.0,1424.336449724293,2127.2022326718748,0.0,34968.0,0,43,1,5395,201107007,,,874.0,,2.0,0.0,6.0,3.0,4.0,2.5,1626.0263231503425,0.0,1044.0,0.0,0.0,15181.0,0,1,2,125.0,10,0.0,2,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3551.538682396168,0.10156539357115557,0.23394629355089705,6072.4,1,1,1_0,1_1_0,1_0_0,1_0_0 -7008,0,44.0,2,0.0,9,111,2,68,62,5.0,0.0,0.0,0.0,2606.865481215533,0.0,65487.0,50,50,1,5396,201107008,,,,,2.0,0.0,4.0,3.0,5.0,2.6,966.7107751105762,0.0,0.0,0.0,0.0,44270.0,1,1,5,90.0,8,7.0,4,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2606.865481215533,0.039807373695779816,0.058885599304620125,17026.923076923078,4,2,4_0,4_1_0,4_3_0,4_0_0 -7009,2,65.0,4,0.0,5,111,2,56,78,3.0,0.0,0.0,927.728722042643,0.0,1007.9879860700061,24646.0,71,71,1,5399,201107009,,,,,1.0,2.0,5.0,0.0,2.0,1.5,2896.297436449145,0.0,680.0,580.0,0.0,21509.0,1,5,1,100.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1935.716708112649,0.07854080613944044,0.08999566265808029,14339.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0 -7010,2,61.0,4,0.0,5,221,5,62,78,6.0,0.0,777.2387389555264,2528.060767566202,156.41192887293198,0.0,28503.0,50,70,1,540,201107010,,,337.0,,1.0,3.0,5.0,0.0,2.0,1.5,2581.839569501768,0.0,1853.0,0.0,0.0,29301.0,4,5,1,120.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3461.7114353946604,0.12145077484456585,0.11814311577743628,19534.0,6,3,6,6_1,6_1,6_0_0 -7011,2,51.0,2,0.0,7,111,2,22,33,10.0,0.0,0.0,691.7036206994411,0.0,2372.247587906135,58490.0,60,41,1,5400,201107011,,,,,2.0,2.0,7.0,0.0,2.0,1.5,3346.4305774173426,0.0,507.0,1365.0,0.0,93673.0,1,1,1,180.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3063.951208605576,0.052384188897342726,0.032709011226346715,62448.666666666664,10,5,10,10_1,10_3,10_0_0 -7012,1,22.0,3,295.0,1,221,4,81,52,4.0,0.0,0.0,50.98012026417376,0.0,105.37463663607481,15805.0,31,33,2,5401,201107012,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4745.977569097476,98.0,0.0,0.0,0.0,22420.0,4,1,3,56.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,156.35475690024856,0.009892740075941066,0.00697389638270511,14946.666666666666,4,2,4_1,4_0_1,4_1_1,4_1_0 -7013,2,32.0,2,0.0,7,111,2,34,38,8.0,0.0,0.0,341.0767360450893,0.0,868.9551604051776,36480.0,20,10,2,5403,201107013,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3210.853248169071,0.0,250.0,500.0,0.0,48175.0,1,1,3,64.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1210.031896450267,0.033169734003570914,0.025117423901406682,26763.888888888887,8,4,8,8_0,8_3,8_0_0 -7014,2,59.0,3,0.0,2,212,6,43,75,1.0,4131.131447797649,0.0,1189.6756553252715,0.0,0.0,49365.0,33,20,1,5406,201107014,,,,,1.0,3.0,6.0,1.0,4.0,2.5,2703.406197814477,0.0,872.0,0.0,0.0,20529.0,1,5,1,100.0,3,0.0,5,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5320.807103122921,0.10778501171119054,0.25918491417618594,8211.6,1,1,1_0,1_1_0,1_0_0,1_0_1 -7015,2,57.0,2,0.0,1,111,2,43,47,7.0,0.0,0.0,600.2950554393572,0.0,1405.9694495355775,47242.0,10,31,2,5407,201107015,,,,992.0,2.0,1.0,6.0,2.0,4.0,2.5,2303.7233277911046,0.0,440.0,809.0,0.0,54560.0,1,1,3,108.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2006.2645049749347,0.04246781476175722,0.03677171013517109,21824.0,7,4,7,7_0,7_4,7_1_0 -7016,2,51.0,3,0.0,7,112,4,54,46,7.0,0.0,0.0,3009.6342499082252,0.0,1426.8586001639926,34191.0,60,30,1,5408,201107016,,,520.0,,3.0,0.0,4.0,1.0,3.0,2.0,3224.294235403418,1327.0,1700.0,0.0,0.0,44187.0,1,1,1,130.0,9,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4436.492850072218,0.12975615951777422,0.1004026716018788,22093.5,7,4,7,7_1,7_0,7_0_0 -7017,2,78.0,2,0.0,6,221,5,77,77,8.0,0.0,763.359475759892,1159.6609025533037,281.54147197127753,0.0,20062.0,50,70,1,541,201107017,,,145.0,,0.0,4.0,5.0,0.0,2.0,1.5,3232.4101179469103,0.0,850.0,0.0,0.0,38073.0,5,5,1,80.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2204.561850284473,0.10988744144574186,0.05790354976714399,25382.0,8,4,8,8_1,8_1,8_0_0 -7018,1,36.0,3,38.0,99,111,1,0,56,4.0,0.0,0.0,204.6460416270536,0.0,69.5164128324142,11261.0,0,43,2,5412,201107018,,,140.0,177.0,1.0,0.0,2.0,0.0,1.0,1.0,2661.3046311491503,0.0,150.0,40.0,0.0,16187.0,0,1,3,55.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,274.16245445946777,0.024346190787627012,0.016937199880117857,16187.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -7019,2,56.0,2,0.0,5,221,2,46,74,10.0,0.0,0.0,95.501486092625,0.0,139.0328256648284,66642.0,41,31,1,5413,201107019,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1825.6190747189214,0.0,70.0,80.0,0.0,58938.0,1,5,1,100.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,234.5343117574534,0.0035193168235865277,0.003979339505199589,39292.0,10,5,10,10_1,10_1,10_0_0 -7020,2,57.0,1,0.0,4,111,4,34,31,10.0,0.0,0.0,3555.357027580368,0.0,1426.8586001639926,132856.0,10,10,2,5414,201107020,,,,,2.0,2.0,6.0,1.0,3.0,2.0,2273.837980214852,1327.0,2100.0,0.0,0.0,255719.0,1,1,1,150.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,4982.215627744361,0.03750087032384206,0.019483165614382823,127859.5,10,5,10,10_0,10_3,10_0_1 -7021,2,39.0,2,0.0,3,111,2,43,42,7.0,0.0,0.0,2816.5315542766994,109.48835021105238,1825.776867429133,54088.0,20,41,1,5415,201107021,,,244.0,,2.0,1.0,5.0,2.0,5.0,2.6,1594.5301757282048,1698.0,1417.0,0.0,0.0,56566.0,1,1,2,110.0,6,5.0,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4751.796771916885,0.08785306855341082,0.08400446861925688,21756.153846153844,6,3,6,6_1,6_2,6_0_1 -7022,1,23.0,2,222.0,5,111,4,0,84,8.0,0.0,0.0,1964.6019996197144,0.0,0.0,10447.0,0,20,2,5418,201107022,,,,102.0,1.0,0.0,3.0,0.0,2.0,1.5,3178.061817453394,0.0,1440.0,0.0,0.0,37367.0,0,3,3,70.0,8,6.0,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1964.6019996197144,0.18805417819658413,0.05257585569137781,24911.333333333332,8,4,8,8_0,8_2,8_0_0 -7023,1,36.0,4,216.0,99,400,4,0,47,1.0,0.0,0.0,272.86138883607146,173.79103208103552,0.0,2563.0,0,50,2,5419,201107023,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4840.441527930874,0.0,200.0,0.0,0.0,7675.0,0,4,3,120.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,446.65242091710695,0.17426937999106787,0.058195755168352695,7675.0,1,1,1_1,1_0_1,1_0_1,1_0_0 -7024,2,26.0,1,0.0,1,111,6,0,56,5.0,0.0,0.0,450.22129157951787,0.0,782.0596443646599,32738.0,0,71,2,542,201107024,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,3812.1252464410254,0.0,330.0,450.0,0.0,17191.0,0,1,3,50.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1232.2809359441778,0.037640690816304535,0.07168174835345109,17191.0,5,3,5,5_0,5_3,5_1_0 -7025,2,31.0,3,0.0,1,300,4,46,62,7.0,0.0,0.0,664.417481815834,104.27461924862132,0.0,16740.0,31,44,1,5420,201107025,,,180.0,,2.0,0.0,2.0,0.0,2.0,1.5,5619.702968948373,0.0,487.0,0.0,0.0,33303.0,4,1,3,38.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,768.6921010644553,0.045919480350325885,0.023081767440304338,22202.0,7,4,7,7_1,7_1,7_1_0 -7026,2,51.0,1,0.0,6,111,6,0,46,10.0,7614.988843866635,0.0,3956.490138123036,0.0,0.0,85613.0,0,20,1,5422,201107026,,,950.0,,1.0,0.0,7.0,2.0,3.0,2.0,2365.4806186030787,0.0,2900.0,0.0,0.0,94193.0,0,1,1,200.0,10,8.0,2,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,11571.47898198967,0.13516030254738964,0.12284860851644677,47096.5,10,5,10,10_1,10_4,10_0_0 -7027,2,78.0,2,0.0,1,111,6,0,77,4.0,0.0,0.0,457.0428263004197,52.13730962431066,0.0,15358.0,0,50,1,5423,201107027,,,,,0.0,6.0,8.0,0.0,1.0,1.0,1212.9901083330965,0.0,335.0,0.0,0.0,15917.0,0,5,1,182.0,6,4.0,1,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,509.18013592473034,0.03315406536819445,0.03198970509045237,15917.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -7028,1,24.0,2,151.0,1,111,4,0,84,1.0,0.0,0.0,409.2920832541072,0.0,0.0,23837.0,0,41,2,5425,201107028,,,,439.0,0.0,0.0,3.0,0.0,1.0,1.0,3104.458987197473,0.0,300.0,0.0,0.0,7835.0,0,3,3,53.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,409.2920832541072,0.017170452794148056,0.05223893851360653,7835.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -7029,2,78.0,3,0.0,1,400,5,0,71,2.0,0.0,0.0,409.2920832541072,868.9551604051776,0.0,9175.0,0,71,1,5426,201107029,,,180.0,,0.0,0.0,4.0,0.0,2.0,1.5,2984.793598650206,0.0,300.0,0.0,0.0,18069.0,0,5,1,90.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1278.2472436592848,0.13931850067131168,0.07074255596099865,12046.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -7030,2,74.0,3,0.0,1,111,2,78,78,5.0,0.0,0.0,342.44104298926965,0.0,2113.298950105392,15059.0,71,71,1,5427,201107030,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2520.768573243342,0.0,251.0,1216.0,0.0,25790.0,5,5,3,50.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2455.7399930946617,0.16307457288629137,0.09522062788269336,17193.333333333332,5,3,5,5_1,5_2,5_1_0 -7031,2,54.0,4,0.0,9,111,6,46,37,6.0,0.0,0.0,2046.460416270536,0.0,0.0,35772.0,50,50,1,5429,201107031,,,501.0,850.0,2.0,1.0,4.0,0.0,2.0,1.5,1492.3947380517377,0.0,1500.0,0.0,0.0,28563.0,1,4,3,87.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2046.460416270536,0.05720844281199083,0.07164725050836873,19042.0,5,3,5,5_1,5_3,5_0_0 -7032,1,60.0,4,257.0,8,211,1,0,86,1.0,0.0,0.0,278.3186166127929,0.0,347.58206416207105,14353.0,0,71,8,5430,201107032,999999.0,200.0,,,2.0,8.0,3.0,2.0,3.0,2.0,3085.246053421963,0.0,204.0,200.0,0.0,13584.0,0,5,3,45.0,4,3.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,625.900680774864,0.04360765559638152,0.046076316311459364,6792.0,1,1,1_1,1_0_1,1_1_1,1_0_0 -7033,2,30.0,3,0.0,9,112,2,54,63,5.0,0.0,0.0,1227.8762497623215,0.0,0.0,19300.0,31,50,1,5431,201107033,,,320.0,,2.0,0.0,4.0,1.0,3.0,1.8,2307.7514332395426,0.0,900.0,0.0,0.0,33341.0,1,1,3,82.0,7,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1227.8762497623215,0.06362053107576796,0.03682781709493781,18522.777777777777,5,3,5,5_1,5_1,5_0_0 -7034,2,37.0,1,0.0,6,112,2,48,64,9.0,0.0,0.0,1234.6977844832234,180.74267336427695,0.0,34819.0,31,43,1,5432,201107034,,,327.0,,2.0,0.0,6.0,0.0,2.0,1.5,2740.598946736527,0.0,905.0,0.0,0.0,45073.0,1,1,2,110.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1415.4404578475003,0.04065138165505903,0.03140328928288555,30048.666666666668,9,5,9,9_1,9_0,9_0_0 -7035,2,23.0,4,0.0,8,111,1,0,84,2.0,0.0,0.0,341.0767360450893,0.0,0.0,19979.0,0,10,2,5434,201107035,,,,,0.0,0.0,1.0,0.0,1.0,1.0,5935.751008819756,0.0,250.0,0.0,0.0,9700.0,0,3,3,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,341.0767360450893,0.017071762152514606,0.035162550107741164,9700.0,1,1,1_0,1_0_0,1_4_0,1_0_0 -7036,2,56.0,1,0.0,7,112,2,33,38,10.0,0.0,0.0,3880.7865613290246,0.0,407.5202784191057,69736.0,12,12,1,5435,201107036,,,736.0,,2.0,2.0,7.0,1.0,3.0,2.0,1498.0500500690516,379.0,2700.0,0.0,0.0,118637.0,1,1,2,170.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4288.30683974813,0.061493444415339715,0.03614645380233932,59318.5,10,5,10,10_1,10_2,10_0_0 -7037,1,36.0,5,500.0,2,111,2,68,64,1.0,0.0,0.0,78.03079632271493,0.0,161.2877091368492,29823.0,71,71,1,5436,201107037,,,,,2.0,0.0,3.0,4.0,7.0,3.6,1656.1571449558753,150.0,0.0,0.0,0.0,32180.0,4,4,3,72.0,5,4.0,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,239.31850545956414,0.008024628825388597,0.007436870896816785,8938.888888888889,1,1,1_1,1_1_1,1_2_1,1_0_1 -7038,2,62.0,2,0.0,5,112,2,75,21,7.0,3966.1400228472053,0.0,1091.4455553442858,130.34327406077665,0.0,67056.0,70,43,1,5437,201107038,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2519.836503735476,0.0,800.0,0.0,0.0,36666.0,5,1,1,150.0,4,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5187.9288522522675,0.07736710886799492,0.14149154127126679,24444.0,7,4,7,7_1,7_0,7_0_0 -7039,2,62.0,2,0.0,4,111,2,0,77,6.0,1856.1535306924923,0.0,388.8274790914018,52.13730962431066,0.0,24417.0,0,50,1,5438,201107039,,,170.0,,0.0,3.0,4.0,0.0,1.0,1.0,1541.4072285288432,0.0,285.0,0.0,0.0,20926.0,0,5,1,91.0,5,4.0,1,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2297.1183194082046,0.09407864682017465,0.10977340721629573,20926.0,6,3,6,6_1,6_2,6_0_1 -7040,2,70.0,4,0.0,8,111,2,77,75,5.0,0.0,0.0,422.93515269591074,0.0,1458.106759159888,16410.0,44,41,1,544,201107040,,,306.0,,0.0,0.0,3.0,0.0,2.0,1.5,1546.5895953403226,0.0,310.0,839.0,0.0,26708.0,5,5,3,82.0,3,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1881.0419118557988,0.11462778256281529,0.07042990534131342,17805.333333333332,5,3,5,5_1,5_2,5_0_0 -7041,2,36.0,3,0.0,8,112,2,67,54,6.0,0.0,0.0,777.6549581828036,0.0,1412.9210908188188,38608.0,50,31,1,5440,201107041,,,420.0,,2.0,0.0,5.0,2.0,4.0,2.1,1743.8913340579982,0.0,570.0,813.0,0.0,42490.0,1,1,2,96.0,7,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2190.5760490016223,0.05673891548387957,0.05155509646979577,20233.333333333332,6,3,6,6_1,6_1,6_0_0 -7042,2,50.0,4,0.0,1,400,4,85,53,1.0,0.0,0.0,709.4396109737858,417.0984769944853,0.0,14147.0,71,50,1,5441,201107042,,,,,1.0,3.0,4.0,0.0,2.0,1.5,2477.43299655688,0.0,520.0,0.0,0.0,10929.0,6,1,1,67.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1126.5380879682712,0.07963088202221469,0.10307787427653685,7286.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -7043,1,72.0,4,131.0,4,300,6,0,77,4.0,1903.7472109666587,0.0,463.8643610213215,0.0,0.0,12317.0,0,70,1,5442,201107043,,,80.0,,0.0,3.0,5.0,0.0,1.0,1.0,1262.5817590423987,0.0,340.0,0.0,0.0,15542.0,0,5,3,100.0,0,0.0,1,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,2367.6115719879804,0.19222307152618173,0.15233635130536485,15542.0,4,2,4_1,4_1_1,4_0_1,4_0_1 -7044,2,61.0,2,0.0,1,111,2,46,77,9.0,0.0,0.0,920.5444070365619,243.30744491344973,210.74927327214962,43609.0,43,50,1,5445,201107044,,,600.0,,2.0,0.0,4.0,1.0,3.0,2.0,3644.9482792762497,196.0,600.0,0.0,0.0,62946.0,4,5,1,108.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1374.6011252221613,0.03152104210649548,0.021837783579928213,31473.0,9,5,9,9_1,9_2,9_1_0 -7045,2,31.0,2,0.0,1,111,4,0,38,10.0,0.0,0.0,477.50743046312505,0.0,3128.2385774586396,26496.0,0,10,2,5446,201107045,,,,550.0,1.0,0.0,2.0,0.0,1.0,1.0,3567.9349847434146,0.0,350.0,1800.0,0.0,48442.0,0,1,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3605.7460079217644,0.13608642843907626,0.07443429271957731,48442.0,10,5,10,10_0,10_4,10_1_0 -7046,2,43.0,2,0.0,4,111,1,37,38,10.0,0.0,0.0,900.4425831590357,0.0,0.0,122173.0,50,41,2,5447,201107046,,,,,2.0,1.0,4.0,2.0,4.0,2.3,3064.9814911706044,0.0,660.0,0.0,0.0,94822.0,1,1,2,107.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,900.4425831590357,0.007370225689465232,0.00949613574021889,41226.956521739135,10,5,10,10_0,10_4,10_0_1 -7047,2,61.0,5,0.0,4,111,4,77,78,7.0,0.0,0.0,1705.3836802254466,1129.641708526731,0.0,23754.0,70,71,1,5448,201107047,,,1200.0,,1.0,1.0,4.0,2.0,4.0,2.5,1445.4921207475372,0.0,1250.0,0.0,0.0,58660.0,5,5,1,77.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2835.0253887521776,0.11934938910297961,0.04832978842059628,23464.0,7,4,7,7_1,7_2,7_0_1 -7048,2,47.0,3,0.0,9,112,5,56,63,4.0,0.0,0.0,1091.4455553442858,86.89551604051776,0.0,12952.0,50,50,1,545,201107048,,,400.0,,2.0,1.0,6.0,0.0,3.0,1.8,1045.02544440408,0.0,800.0,0.0,0.0,27618.0,1,1,2,150.0,7,0.0,5,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1178.3410713848036,0.0909775379389132,0.042665691628097746,15343.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0 -7049,2,65.0,3,0.0,1,211,4,74,74,9.0,0.0,485.77421184720396,3115.181110154387,229.4041623469669,3901.0120583232597,49748.0,20,20,1,5450,201107049,,,150.0,,0.0,2.0,4.0,0.0,2.0,1.5,919.8364604143103,3628.0,900.0,0.0,0.0,55071.0,5,5,1,94.0,3,4.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,7731.371542671817,0.15541070078539473,0.14038916203940036,36714.0,9,5,9,9_1,9_2,9_1_0 -7050,2,72.0,2,0.0,5,112,2,77,74,9.0,0.0,0.0,695.7965415319821,0.0,1675.3455492611824,23925.0,70,30,1,5451,201107050,,,273.0,,0.0,2.0,5.0,0.0,2.0,1.5,1047.7136474392946,0.0,510.0,964.0,0.0,48512.0,5,5,1,110.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2371.1420907931647,0.09910729742082193,0.048877434259423744,32341.333333333332,9,5,9,9_1,9_1,9_0_0 -7051,2,26.0,1,0.0,1,111,2,55,62,8.0,0.0,0.0,72.82874323453395,0.0,150.5351951943926,34022.0,50,50,1,5452,201107051,,,300.0,,2.0,0.0,5.0,0.0,2.0,1.5,1786.1301179530271,140.0,0.0,0.0,0.0,40223.0,1,1,3,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,223.36393842892653,0.006565279478835064,0.005553139706857433,26815.333333333332,8,4,8,8_1,8_2,8_1_0 -7052,2,48.0,2,0.0,8,111,2,0,37,9.0,0.0,0.0,416.1642470544797,0.0,860.2011153965291,39180.0,0,31,1,5453,201107052,,,240.0,855.0,1.0,2.0,4.0,0.0,1.0,1.0,2670.564348916837,800.0,0.0,0.0,0.0,31707.0,0,1,3,95.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1276.3653624510089,0.03257696177771845,0.04025500244271009,31707.0,9,5,9,9_1,9_3,9_0_0 -7053,2,43.0,4,0.0,7,111,2,0,52,6.0,0.0,0.0,327.43366660328576,0.0,606.530701962814,13977.0,0,50,2,5454,201107053,,,252.0,373.0,1.0,0.0,2.0,0.0,1.0,1.0,2213.1390672166317,0.0,240.0,349.0,0.0,20089.0,0,1,3,55.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,933.9643685660997,0.0668215188213565,0.04649133200090098,20089.0,6,3,6,6_0,6_3,6_0_0 -7054,2,74.0,2,0.0,8,111,4,0,77,7.0,0.0,0.0,1773.5990274344645,0.0,0.0,18854.0,0,50,1,5456,201107054,,,152.0,,0.0,2.0,5.0,0.0,1.0,1.0,1695.3883719191156,0.0,1300.0,0.0,0.0,22816.0,0,5,1,96.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1773.5990274344645,0.09407017224114057,0.07773488023468024,22816.0,7,4,7,7_1,7_2,7_0_0 -7055,1,34.0,3,59.0,1,111,4,85,64,6.0,0.0,0.0,379.74987543721267,0.0,784.9335177993328,33796.0,50,60,2,5459,201107055,,,,641.0,1.0,0.0,3.0,1.0,3.0,1.8,2968.332666823635,730.0,0.0,0.0,0.0,38207.0,6,1,3,42.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1164.6833932365455,0.034462166920243384,0.030483508080627778,21226.11111111111,6,3,6,6_0,6_3,6_1_0 -7056,2,71.0,3,0.0,8,111,4,72,74,7.0,0.0,0.0,2240.016214877818,0.0,490.31463577602153,39342.0,33,44,1,5460,201107056,,,394.0,,0.0,2.0,5.0,0.0,2.0,1.5,2442.3082346167903,456.0,1468.0,0.0,0.0,35472.0,5,5,1,150.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2730.3308506538397,0.06939989961501296,0.0769714380540663,23648.0,7,4,7,7_1,7_3,7_0_0 -7057,2,58.0,1,0.0,8,112,2,43,38,10.0,3172.912018277764,0.0,1899.1152662990573,139.0328256648284,0.0,44958.0,10,50,1,5461,201107057,,,315.0,,2.0,0.0,5.0,1.0,3.0,1.8,1796.9118695061131,0.0,1392.0,0.0,0.0,104860.0,1,1,2,200.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5211.060110241649,0.11590951799994771,0.049695404446325094,58255.555555555555,10,5,10,10_1,10_0,10_0_0 -7058,2,40.0,4,0.0,1,111,1,0,53,3.0,444.20768255888703,0.0,231.93218051066074,0.0,243.30744491344973,13519.0,0,43,2,5462,201107058,280.0,280.0,,149.0,1.0,0.0,1.0,0.0,1.0,1.0,3452.3060157301798,0.0,170.0,140.0,0.0,14295.0,0,1,3,25.0,7,6.0,1,2,1,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,919.4473079829975,0.06801148812656242,0.06431950388128699,14295.0,3,2,3_0,3_0_0,3_2_0,3_1_0 -7059,2,32.0,3,0.0,6,111,6,42,46,6.0,0.0,0.0,682.1534720901786,0.0,0.0,33570.0,20,31,2,5463,201107059,,,,580.0,2.0,0.0,2.0,0.0,2.0,1.5,3382.1414413395055,0.0,500.0,0.0,0.0,29954.0,4,1,3,60.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,682.1534720901786,0.020320329820976427,0.022773368234298545,19969.333333333332,6,3,6,6_0,6_3,6_0_0 -7060,1,21.0,3,199.0,99,111,1,0,84,1.0,0.0,0.0,341.0767360450893,0.0,0.0,8465.0,0,41,2,5466,201107060,,,,86.0,0.0,0.0,1.0,0.0,1.0,1.0,2928.33275475138,0.0,250.0,0.0,0.0,2432.0,0,3,3,35.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,341.0767360450893,0.04029258547490718,0.14024536843959265,2432.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -7061,2,59.0,9,0.0,7,111,2,46,22,10.0,0.0,0.0,1418.8792219475715,0.0,0.0,38791.0,41,50,1,5467,201107061,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1868.504116232562,0.0,1040.0,0.0,0.0,123030.0,1,1,1,107.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1418.8792219475715,0.036577536592188174,0.011532790554723006,82020.0,10,5,10,10_1,10_2,10_0_0 -7062,2,48.0,2,0.0,7,111,6,77,63,4.0,0.0,0.0,1774.9633343786447,391.02982218232995,0.0,28324.0,71,50,1,5469,201107062,,,,,1.0,5.0,3.0,0.0,2.0,1.5,2012.0820312469696,0.0,1301.0,0.0,0.0,24825.0,5,1,1,110.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2165.9931565609745,0.07647200806951612,0.08725047961977742,16550.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -7063,2,53.0,2,0.0,2,112,5,22,47,4.0,0.0,346.98157989085996,736.7257498573929,0.0,0.0,32767.0,50,50,1,5472,201107063,,,180.0,,2.0,2.0,4.0,0.0,2.0,1.5,1993.3999216432578,0.0,540.0,0.0,0.0,22930.0,1,1,2,75.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1083.707329748253,0.03307313241212967,0.047261549487494676,15286.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_1 -7064,2,55.0,3,0.0,7,300,2,55,46,5.0,3252.2348187347084,0.0,1080.531099790843,0.0,0.0,47729.0,70,50,1,5473,201107064,,,,,2.0,2.0,5.0,1.0,3.0,2.0,1787.6261617616576,0.0,792.0,0.0,0.0,34958.0,4,1,1,210.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4332.765918525552,0.09077847678613739,0.12394204240876341,17479.0,5,3,5,5_1,5_0,5_0_0 -7065,2,65.0,2,0.0,1,112,2,74,74,9.0,1258.0596152471335,0.0,3044.6443510860495,291.9689338961397,1112.8851930442595,62956.0,20,20,1,5475,201107065,,,241.0,,0.0,2.0,9.0,0.0,2.0,1.5,1149.1971945878306,1035.0,1837.0,0.0,0.0,49875.0,5,5,1,170.0,4,0.0,3,4,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5707.558093273583,0.09065947794131747,0.1144372550029791,33250.0,9,5,9,9_1,9_0,9_1_0 -7066,2,58.0,2,0.0,1,111,1,0,34,10.0,0.0,0.0,900.4425831590357,0.0,0.0,31171.0,0,10,2,5476,201107066,,,240.0,370.0,1.0,2.0,3.0,0.0,1.0,1.0,2356.190857163477,0.0,660.0,0.0,0.0,47168.0,0,1,3,100.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,900.4425831590357,0.028887189476084686,0.019090115823419178,47168.0,10,5,10,10_0,10_3,10_1_0 -7067,1,41.0,4,240.0,99,111,2,37,55,3.0,0.0,0.0,1367.035558068718,187.69431464751835,0.0,22460.0,30,42,1,5477,201107067,,,280.0,,2.0,3.0,6.0,1.0,3.0,1.8,1817.1167964567867,0.0,1002.0,0.0,0.0,25194.0,4,1,3,79.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1554.7298727162365,0.06922216708442727,0.061710322803692805,13996.666666666666,3,2,3_1,3_1_1,3_3_1,3_0_0 -7068,2,30.0,3,0.0,9,111,4,0,42,8.0,0.0,0.0,802.2124831780501,0.0,0.0,27070.0,0,20,2,5478,201107068,,,,585.0,1.0,0.0,2.0,0.0,1.0,1.0,3139.889498424651,0.0,588.0,0.0,0.0,27760.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,802.2124831780501,0.029634742636795348,0.028898144206702094,27760.0,8,4,8,8_0,8_4,8_0_0 -7069,1,31.0,3,259.0,5,111,2,0,55,1.0,0.0,0.0,261.9469332826286,0.0,72.99223347403492,3639.0,0,42,2,5479,201107069,,,,132.0,1.0,0.0,1.0,0.0,1.0,1.0,3348.189634263255,0.0,192.0,42.0,0.0,8076.0,0,4,3,35.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,334.93916675666355,0.09204154074104522,0.04147339855827929,8076.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -7070,1,44.0,3,80.0,5,300,5,62,56,1.0,1269.1648073111057,0.0,1637.1683330164287,0.0,0.0,21497.0,50,50,1,548,201107070,,,140.0,,2.0,2.0,4.0,2.0,4.0,2.3,857.8819811507576,0.0,1200.0,0.0,0.0,16230.0,4,1,3,120.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2906.3331403275342,0.13519715031527815,0.17907166607070452,7056.521739130435,1,1,1_1,1_1_1,1_0_1,1_0_0 -7071,1,20.0,3,120.0,8,111,4,0,81,1.0,0.0,0.0,491.1504999049286,0.0,0.0,10881.0,0,60,2,5480,201107071,,,,250.0,2.0,0.0,1.0,0.0,2.0,1.5,4085.9782780740034,0.0,360.0,0.0,0.0,1440.0,0,4,3,25.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,491.1504999049286,0.04513836043607468,0.3410767360450893,960.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -7072,2,44.0,2,0.0,1,221,2,0,56,3.0,0.0,0.0,972.7508512005948,0.0,434.4775802025888,43223.0,0,50,1,5481,201107072,,,402.0,,1.0,1.0,7.0,1.0,2.0,1.5,3418.5908374634037,0.0,713.0,250.0,0.0,20506.0,0,1,1,180.0,1,1.0,2,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1407.2284314031835,0.03255739840832852,0.06862520391120568,13670.666666666666,3,2,3_0,3_1_0,3_1_0,3_1_0 -7073,2,51.0,5,0.0,8,111,2,0,45,6.0,0.0,0.0,379.2773304821393,0.0,794.2250166103323,37226.0,0,50,2,5482,201107073,,,,610.0,1.0,0.0,3.0,1.0,2.0,1.5,2049.9588159256505,0.0,278.0,457.0,0.0,32285.0,0,1,3,69.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1173.5023470924716,0.03152372930458474,0.03634822199450121,21523.333333333332,6,3,6,6_0,6_3,6_0_0 -7074,2,43.0,1,0.0,8,111,4,37,37,10.0,0.0,0.0,2264.749527339393,0.0,0.0,84441.0,12,10,2,5483,201107074,,,,,2.0,0.0,5.0,2.0,4.0,2.3,3156.471078523055,0.0,1660.0,0.0,0.0,171568.0,1,1,2,125.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2264.749527339393,0.026820496291367853,0.01320030266331363,74594.78260869566,10,5,10,10_0,10_4,10_0_0 -7075,2,74.0,3,0.0,6,112,4,0,75,8.0,0.0,381.679737879946,2182.8911106885716,0.0,0.0,24096.0,0,41,1,5484,201107075,,,500.0,,0.0,0.0,6.0,0.0,1.0,1.0,3442.928470621145,0.0,1600.0,0.0,0.0,26257.0,0,5,5,207.0,10,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2564.5708485685177,0.10643139311788337,0.09767189125065764,26257.0,8,4,8,8_1,8_1,8_0_0 -7076,2,80.0,2,0.0,1,111,2,75,74,10.0,0.0,0.0,752.1758335190817,0.0,2827.016153215171,26182.0,42,31,1,5486,201107076,,,100.0,,0.0,2.0,6.0,0.0,2.0,1.5,2481.8020203205056,528.0,350.0,1300.0,0.0,69334.0,5,5,1,130.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3579.1919867342526,0.13670430015790438,0.051622464977273096,46222.666666666664,10,5,10,10_1,10_4,10_1_0 -7077,2,57.0,3,0.0,7,111,1,0,48,9.0,0.0,0.0,341.0767360450893,0.0,0.0,28785.0,0,50,2,5487,201107077,,,,550.0,1.0,2.0,2.0,0.0,1.0,1.0,5486.9739379317425,0.0,250.0,0.0,0.0,31464.0,0,1,3,55.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,341.0767360450893,0.011849113637140501,0.010840221715137596,31464.0,9,5,9,9_0,9_4,9_0_0 -7078,2,61.0,3,0.0,1,400,5,74,77,7.0,1110.5192063972174,582.9290542166448,941.3717914844465,145.98446694806984,0.0,58269.0,60,44,1,549,201107078,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2401.416767724515,0.0,690.0,0.0,0.0,32872.0,5,5,3,96.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2780.8045190463786,0.04772356688884962,0.08459492939420718,21914.666666666668,7,4,7,7_1,7_0,7_1_0 -7079,1,59.0,4,237.0,1,111,2,0,85,3.0,0.0,0.0,272.86138883607146,0.0,0.0,4602.0,0,70,2,5491,201107079,,,100.0,,0.0,3.0,3.0,0.0,1.0,1.0,2776.6480749293582,0.0,200.0,0.0,0.0,13626.0,0,7,3,45.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,272.86138883607146,0.059291914132132,0.020025054222521023,13626.0,3,2,3_1,3_0_1,3_2_1,3_1_0 -7080,2,75.0,3,0.0,5,111,2,0,78,6.0,0.0,0.0,2182.8911106885716,0.0,0.0,9007.0,0,50,1,5492,201107080,,,230.0,,0.0,2.0,4.0,0.0,1.0,1.0,5915.567521275705,0.0,1600.0,0.0,0.0,20270.0,0,5,1,98.0,4,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2182.8911106885716,0.24235495844216406,0.10769073067037847,20270.0,6,3,6,6_1,6_2,6_0_0 -7081,1,39.0,3,393.0,1,111,2,56,22,9.0,0.0,0.0,154.16668469238036,104.27461924862132,0.0,33760.0,50,43,1,5496,201107081,,,96.0,,2.0,3.0,3.0,2.0,4.0,2.3,1813.9969495331559,0.0,113.0,0.0,0.0,81936.0,1,1,3,80.0,5,4.0,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,258.4413039410017,0.007655251893987017,0.003154185021736498,35624.34782608696,9,5,9,9_1,9_2,9_1_0 -7082,2,60.0,2,0.0,2,111,1,77,74,9.0,0.0,0.0,473.0812971406164,0.0,349.74443426285086,56893.0,50,12,2,5497,201107082,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2336.402422305144,259.0,248.0,41.0,0.0,52267.0,5,4,1,66.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,822.8257314034672,0.014462688404609833,0.01574273884867062,34844.666666666664,9,5,9,9_0,9_4,9_0_1 -7083,2,20.0,3,0.0,1,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,14492.0,0,41,2,5498,201107083,,,,530.0,0.0,0.0,2.0,0.0,1.0,1.0,3754.618762291883,0.0,0.0,0.0,0.0,6015.0,0,3,3,35.0,9,7.0,1,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,6015.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -7084,2,80.0,3,0.0,7,400,4,72,72,4.0,0.0,69.396315978172,1536.2096191470823,234.61789330939797,0.0,25616.0,41,70,1,5499,201107084,,,416.0,,0.0,1.0,3.0,0.0,2.0,1.5,3051.305320982864,0.0,1126.0,0.0,0.0,24635.0,5,5,1,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1840.2238284346522,0.07183884402071565,0.07469956681285375,16423.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0 -7085,2,28.0,4,0.0,3,111,1,0,43,6.0,0.0,0.0,559.3658471139465,0.0,278.0656513296568,34305.0,0,31,2,550,201107085,,,,750.0,1.0,0.0,4.0,1.0,2.0,1.3,4137.925938053589,0.0,410.0,160.0,0.0,25119.0,0,1,3,88.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,837.4314984436033,0.024411353984655396,0.03333856835238677,19322.30769230769,6,3,6,6_0,6_3,6_0_1 -7086,2,53.0,2,0.0,1,111,1,0,37,8.0,0.0,0.0,622.1239665462429,0.0,0.0,38340.0,0,10,2,5500,201107086,,,,,1.0,1.0,1.0,1.0,2.0,1.5,3549.761153659468,0.0,456.0,0.0,0.0,41386.0,0,1,1,26.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,622.1239665462429,0.016226498866620837,0.015032232313976776,27590.666666666668,8,4,8,8_0,8_4,8_1_0 -7087,1,95.0,3,175.0,2,400,4,0,71,2.0,0.0,0.0,1768.141799657743,43.44775802025888,0.0,8663.0,0,70,1,5501,201107087,,,92.0,,0.0,9.0,3.0,0.0,1.0,1.0,1829.5611482904067,0.0,1296.0,0.0,0.0,11445.0,0,5,3,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1811.5895576780017,0.20911803736326928,0.1582865493820884,11445.0,2,1,2_1,2_1_1,2_0_1,2_0_1 -7088,2,44.0,1,0.0,1,111,2,42,37,9.0,0.0,0.0,3683.6287492869646,0.0,5039.93993035003,41178.0,10,12,1,5503,201107088,,,120.0,,2.0,0.0,11.0,3.0,5.0,2.6,965.4631960348919,0.0,2700.0,2900.0,0.0,91408.0,1,1,1,350.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,8723.568679636996,0.21185022778272367,0.09543550542224964,35156.92307692308,9,5,9,9_1,9_3,9_1_0 -7089,2,79.0,2,0.0,3,111,6,0,86,9.0,0.0,0.0,436.5782221377143,0.0,1405.9694495355775,17391.0,0,50,1,5504,201107089,,,160.0,,0.0,3.0,6.0,0.0,1.0,1.0,1765.5206181598585,0.0,320.0,809.0,0.0,36417.0,0,5,1,77.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1842.547671673292,0.10594834521725559,0.050595811617466895,36417.0,9,5,9,9_1,9_3,9_0_1 -7090,2,71.0,2,0.0,1,112,4,77,78,2.0,0.0,0.0,1558.038530253968,97.32297796537989,0.0,11519.0,71,50,1,5505,201107090,,,170.0,,0.0,1.0,4.0,0.0,2.0,1.5,1504.7888420722338,0.0,1142.0,0.0,0.0,18325.0,5,5,1,64.0,8,2.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1655.3615082193478,0.14370704993656983,0.0903335065876861,12216.666666666666,2,1,2_0,2_1_0,2_1_0,2_1_0 -7091,2,58.0,2,0.0,6,111,4,63,33,9.0,0.0,0.0,2865.0445827787503,0.0,0.0,30074.0,60,50,1,5506,201107091,,,255.0,,2.0,2.0,6.0,0.0,2.0,1.5,1667.6580927922803,0.0,2100.0,0.0,0.0,48926.0,1,1,1,200.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2865.0445827787503,0.0952664954039619,0.05855873324569248,32617.333333333332,9,5,9,9_1,9_2,9_0_0 -7092,2,88.0,2,0.0,1,111,1,77,74,10.0,0.0,0.0,1637.1683330164287,0.0,2085.4923849724264,48600.0,41,41,8,5508,201107092,,,,,0.0,3.0,5.0,0.0,2.0,1.5,4142.287878498371,0.0,1200.0,1200.0,0.0,90059.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3722.660717988855,0.0765979571602645,0.04133579895389528,60039.333333333336,10,5,10,10_0,10_4,10_1_0 -7093,1,39.0,5,217.0,1,111,2,0,22,2.0,0.0,0.0,191.00297218525,0.0,1141.8070807724034,32141.0,0,31,2,551,201107093,,,,,1.0,0.0,4.0,1.0,2.0,1.3,3501.317764903909,0.0,140.0,657.0,0.0,15694.0,0,1,2,90.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1332.8100529576534,0.04146759755320785,0.0849248154044637,12072.307692307691,2,1,2_1,2_0_1,2_3_1,2_1_0 -7094,2,80.0,2,0.0,6,111,4,75,75,9.0,0.0,1263.0129508027303,2182.8911106885716,151.1981979105009,0.0,26190.0,71,31,1,5510,201107094,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2710.9196335192314,0.0,1600.0,0.0,0.0,54108.0,5,5,1,150.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3597.1022594018027,0.13734640165718986,0.06648004471430848,36072.0,9,5,9,9_1,9_3,9_0_0 -7095,2,57.0,1,0.0,6,211,2,77,74,8.0,0.0,0.0,1964.6019996197144,151.1981979105009,0.0,33949.0,70,50,1,5512,201107095,,,750.0,,0.0,2.0,5.0,0.0,2.0,1.5,1323.9793004184232,0.0,1440.0,0.0,0.0,40295.0,6,5,1,110.0,3,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2115.8001975302154,0.06232290192730906,0.052507760206730744,26863.333333333332,8,4,8,8_1,8_1,8_0_0 -7096,2,58.0,2,0.0,5,112,2,85,72,8.0,1083.5494542418564,0.0,1195.132883101993,364.9611673701746,0.0,63049.0,41,20,1,5514,201107096,,,135.0,,0.0,2.0,6.0,0.0,2.0,1.5,2479.9157216525773,0.0,876.0,0.0,0.0,39240.0,6,5,2,150.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2643.643504714024,0.04192998310384025,0.06737113926386401,26160.0,8,4,8,8_1,8_0,8_0_0 -7097,1,44.0,3,376.0,3,111,1,85,21,2.0,0.0,0.0,1329.700666319603,0.0,1559.5407003838966,28832.0,60,71,2,5516,201107097,,,,3.0,1.0,0.0,3.0,4.0,6.0,2.7,3081.5234337880884,1014.0,588.0,270.0,0.0,30532.0,6,1,3,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2889.2413667035,0.10020953685847321,0.09462994126501703,11308.148148148148,2,1,2_1,2_0_1,2_4_1,2_0_1 -7098,2,38.0,3,0.0,1,112,2,46,21,6.0,0.0,0.0,2728.6138883607146,0.0,0.0,43955.0,50,50,1,5517,201107098,,,,,2.0,0.0,6.0,3.0,5.0,2.4,1686.2529982025765,0.0,2000.0,0.0,0.0,48740.0,1,1,1,180.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2728.6138883607146,0.06207744029941337,0.05598305064342869,20308.333333333336,6,3,6,6_1,6_2,6_1_0 -7099,2,61.0,3,0.0,7,111,4,75,34,10.0,0.0,0.0,1883.463605754025,0.0,1947.280274978893,55799.0,20,10,2,5518,201107099,,,,1076.0,1.0,2.0,4.0,0.0,2.0,1.5,1915.8744048585086,1811.0,690.0,0.0,0.0,103142.0,5,1,3,130.0,8,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3830.743880732918,0.06865255435998706,0.0371404847756774,68761.33333333333,10,5,10,10_0,10_3,10_0_0 -7100,2,47.0,2,0.0,4,120,2,54,22,9.0,3172.912018277764,0.0,1337.02080529675,0.0,0.0,31793.0,50,71,1,5519,201107100,,,320.0,,2.0,2.0,4.0,1.0,3.0,2.0,2962.4619407103546,0.0,980.0,0.0,0.0,69822.0,1,1,2,160.0,0,1.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4509.932823574514,0.14185301241073553,0.06459185963699857,34911.0,9,5,9,9_1,9_1,9_0_1 -7101,2,47.0,3,0.0,7,112,2,52,62,4.0,1903.7472109666587,0.0,1091.4455553442858,132.081184381587,0.0,24750.0,71,50,1,5520,201107101,,,,,3.0,0.0,5.0,2.0,4.0,2.5,2429.0428730961457,0.0,800.0,0.0,0.0,38264.0,1,1,2,160.0,6,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3127.2739506925313,0.1263545030582841,0.0817288822572792,15305.6,4,2,4_0,4_1_0,4_0_0,4_0_0 -7102,2,48.0,4,0.0,1,111,2,63,46,5.0,0.0,0.0,818.5841665082144,0.0,2884.9311325451895,39896.0,71,50,1,5521,201107102,,,560.0,596.0,2.0,3.0,7.0,1.0,3.0,2.0,2025.0557901222408,0.0,600.0,1660.0,0.0,36475.0,1,1,3,140.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3703.515299053404,0.0928292384964258,0.10153571758885274,18237.5,5,3,5,5_1,5_3,5_1_0 -7103,2,45.0,5,0.0,2,111,2,52,48,5.0,0.0,0.0,574.826866244,0.0,1188.1527906414558,42389.0,50,44,2,5522,201107103,,,270.0,,2.0,2.0,4.0,2.0,4.0,2.3,3396.92395965185,1105.0,0.0,0.0,0.0,38640.0,1,1,2,70.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1762.9796568854558,0.04159049887672405,0.04562576751773954,16800.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -7104,2,44.0,2,0.0,7,112,2,22,21,8.0,0.0,0.0,1500.737638598393,0.0,1911.7013528913908,45330.0,43,50,1,5523,201107104,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2757.4233448408586,0.0,1100.0,1100.0,0.0,62662.0,1,1,1,140.0,7,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3412.438991489784,0.07527992480674572,0.05445786906721432,27244.34782608696,8,4,8,8_1,8_0,8_0_0 -7105,1,24.0,3,90.0,8,111,2,67,63,6.0,0.0,0.0,368.36287492869644,0.0,729.9223347403492,28518.0,20,42,2,5524,201107105,,,180.0,433.0,2.0,0.0,3.0,0.0,2.0,1.5,2139.3289827837707,0.0,270.0,420.0,0.0,29060.0,1,1,3,58.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1098.2852096690458,0.03851199977800147,0.037793709899141284,19373.333333333332,6,3,6,6_0,6_2,6_0_0 -7106,2,29.0,1,0.0,2,111,7,55,62,8.0,0.0,0.0,886.7995137172322,0.0,0.0,34418.0,41,50,1,5525,201107106,,,,530.0,2.0,0.0,5.0,1.0,3.0,1.8,2217.813133703107,0.0,650.0,0.0,0.0,45413.0,1,1,3,108.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,886.7995137172322,0.025765573645105243,0.019527437379544012,25229.444444444445,8,4,8,8_1,8_3,8_0_1 -7107,2,57.0,3,0.0,6,111,2,45,47,9.0,0.0,0.0,1324.2532944746188,0.0,3104.530420692927,42446.0,50,50,1,5526,201107107,,,127.0,,2.0,3.0,5.0,0.0,2.0,1.5,1381.3236174472347,1035.0,576.0,1146.0,0.0,54716.0,1,1,1,100.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4428.783715167546,0.10433924787182645,0.08094129167277479,36477.333333333336,9,5,9,9_1,9_2,9_0_0 -7108,1,25.0,3,59.0,5,111,1,85,47,5.0,0.0,0.0,395.6490138123036,0.0,0.0,28938.0,41,31,2,5527,201107108,,,,501.0,1.0,0.0,3.0,1.0,3.0,1.8,6296.548774139847,0.0,290.0,0.0,0.0,32998.0,6,1,3,50.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,395.6490138123036,0.013672299876021273,0.011990090727083569,18332.222222222223,5,3,5,5_0,5_4,5_0_0 -7109,2,67.0,3,0.0,9,112,5,77,71,3.0,1419.8781281792997,1040.94473967258,852.6918401127233,104.27461924862132,0.0,29050.0,70,50,1,5528,201107109,,,272.0,,0.0,4.0,6.0,0.0,2.0,1.5,1929.8926404357792,0.0,625.0,0.0,0.0,18815.0,5,5,1,120.0,5,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3417.789327213224,0.11765195618634162,0.1816523692380135,12543.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -7110,2,73.0,4,0.0,5,111,2,77,78,2.0,0.0,0.0,436.5782221377143,0.0,1160.9240943013174,41301.0,12,41,2,5529,201107110,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2051.5332890059653,0.0,320.0,668.0,0.0,17095.0,5,5,1,112.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1597.5023164390318,0.038679506947508095,0.09344851222223058,11396.666666666666,2,1,2_0,2_0_0,2_2_0,2_0_0 -7111,2,85.0,3,0.0,2,111,5,0,78,3.0,0.0,1276.8922139983647,177.35990274344644,208.54923849724264,0.0,13346.0,0,71,1,553,201107111,,,154.0,,0.0,3.0,3.0,0.0,1.0,1.0,4011.8165110645095,0.0,130.0,0.0,0.0,12720.0,0,5,1,40.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1662.8013552390537,0.12459173949041313,0.13072337698420233,12720.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -7112,2,75.0,2,0.0,9,300,4,71,71,3.0,0.0,138.792631956344,2332.964874548411,201.5975972140012,0.0,29712.0,71,71,1,5531,201107112,,,170.0,,0.0,4.0,4.0,0.0,2.0,1.5,3582.8691219467464,0.0,1710.0,0.0,0.0,21559.0,5,5,1,88.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2673.3551037187563,0.08997560257534855,0.12400181380021134,14372.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -7113,2,65.0,3,0.0,4,111,4,0,74,5.0,0.0,0.0,1448.8939747195393,0.0,0.0,12458.0,0,70,2,5535,201107113,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2874.7189456032906,0.0,1062.0,0.0,0.0,18584.0,0,5,1,67.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1448.8939747195393,0.11630229368434253,0.07796459183811555,18584.0,5,3,5,5_0,5_2,5_0_1 -7114,2,40.0,5,0.0,8,112,6,52,47,6.0,0.0,0.0,2483.0386384082503,52.13730962431066,0.0,45310.0,50,31,1,5536,201107114,,,369.0,,2.0,0.0,5.0,3.0,5.0,2.4,1667.2173385270871,0.0,1820.0,0.0,0.0,47169.0,1,1,2,115.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2535.175948032561,0.05595179757299847,0.05374665454074839,19653.75,6,3,6,6_1,6_1,6_0_0 -7115,2,76.0,3,0.0,1,112,5,72,72,4.0,0.0,0.0,646.6814915414893,156.41192887293198,0.0,13597.0,50,50,1,5538,201107115,,,,,0.0,0.0,4.0,0.0,2.0,1.5,1262.5559381542141,0.0,474.0,0.0,0.0,22920.0,5,5,3,90.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,803.0934204144213,0.059064015622153514,0.03503897994827318,15280.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -7116,2,79.0,2,0.0,1,112,4,77,72,4.0,0.0,0.0,1364.3069441803573,0.0,0.0,24073.0,71,70,1,5539,201107116,,,340.0,,0.0,2.0,3.0,0.0,2.0,1.5,3846.5819939363246,0.0,1000.0,0.0,0.0,24981.0,5,5,1,74.0,10,2.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1364.3069441803573,0.05667374004820161,0.05461378424323915,16654.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -7117,2,46.0,3,0.0,99,111,2,56,65,5.0,1288.2022794207724,416.377895869032,723.0826804155894,0.0,0.0,27768.0,50,71,1,554,201107117,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2034.137657322269,0.0,530.0,0.0,0.0,43490.0,1,1,2,80.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2427.6628557053937,0.0874266369816117,0.055821173964253706,18120.833333333336,5,3,5,5_1,5_3,5_0_0 -7118,2,46.0,3,0.0,5,111,2,47,54,6.0,0.0,0.0,1637.1683330164287,0.0,1320.81184381587,27294.0,50,50,2,5542,201107118,,,,545.0,2.0,2.0,4.0,1.0,3.0,1.8,2342.107978706927,0.0,1200.0,760.0,0.0,36861.0,1,1,3,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2957.9801768322986,0.10837474085265254,0.08024687818649247,20478.333333333332,6,3,6,6_0,6_3,6_0_0 -7119,2,37.0,1,0.0,4,111,2,52,23,9.0,3807.4944219333174,0.0,2483.0386384082503,48.661488982689946,0.0,62382.0,33,31,1,5543,201107119,,,147.0,,2.0,0.0,7.0,4.0,6.0,2.7,2968.554088252411,0.0,1820.0,0.0,0.0,78910.0,1,1,2,230.0,9,7.0,4,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,6339.194549324257,0.10161896940342179,0.08033448928303456,29225.925925925923,9,5,9,9_1,9_3,9_0_1 -7120,1,63.0,4,200.0,2,111,1,0,78,2.0,0.0,0.0,682.1534720901786,0.0,0.0,8598.0,0,50,2,5544,201107120,,,300.0,100.0,0.0,2.0,3.0,0.0,1.0,1.0,4980.4608355657465,0.0,500.0,0.0,0.0,11980.0,0,5,3,60.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,682.1534720901786,0.07933862201560579,0.056941024381484025,11980.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -7121,1,39.0,4,244.0,4,111,2,0,63,1.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,9095.0,0,41,2,5545,201107121,,,,356.0,1.0,0.0,3.0,0.0,1.0,1.0,3769.0628909632974,1200.0,0.0,0.0,0.0,8008.0,0,4,3,80.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1914.548043676513,0.2105055573036298,0.2390794260335306,8008.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -7122,2,61.0,2,0.0,5,111,1,45,34,10.0,0.0,0.0,122.78762497623215,0.0,0.0,50417.0,20,20,8,5546,201107122,,,,,2.0,1.0,3.0,0.0,2.0,1.5,2082.653512778459,0.0,90.0,0.0,0.0,67412.0,1,1,1,80.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,122.78762497623215,0.002435440922233218,0.0018214505574116204,44941.333333333336,10,5,10,10_0,10_2,10_0_0 -7123,2,32.0,3,0.0,1,111,2,37,42,8.0,0.0,0.0,709.4396109737858,0.0,1651.0148047698374,45539.0,31,20,1,5547,201107123,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1946.5074416555287,0.0,520.0,950.0,0.0,38531.0,4,1,3,109.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2360.454415743623,0.051833690150060896,0.06126117712344925,25687.333333333332,8,4,8,8_1,8_3,8_1_0 -7124,2,60.0,1,0.0,6,112,5,67,77,8.0,0.0,798.057633748978,1211.5045664321572,0.0,0.0,58845.0,70,60,1,5549,201107124,,,265.0,,1.0,3.0,6.0,0.0,2.0,1.5,2808.5259730206203,0.0,888.0,0.0,0.0,41872.0,1,5,1,127.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2009.5622001811353,0.034150092619273265,0.04799298338223957,27914.666666666668,8,4,8,8_1,8_0,8_0_0 -7125,2,51.0,3,0.0,1,111,2,38,38,10.0,0.0,0.0,744.9115915224751,0.0,3496.675565470435,52329.0,42,10,1,555,201107125,,,466.0,,2.0,0.0,8.0,2.0,4.0,2.5,1426.027181262315,0.0,546.0,2012.0,0.0,101988.0,1,1,2,200.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4241.5871569929095,0.08105614777643198,0.04158908064667323,40795.2,10,5,10,10_1,10_3,10_1_0 -7126,2,45.0,2,0.0,5,111,1,22,22,3.0,0.0,0.0,775.1059101389684,0.0,1602.1245774260356,34062.0,20,42,2,5550,201107126,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2811.8731794912537,1490.0,0.0,0.0,0.0,28640.0,1,1,1,88.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2377.230487565004,0.06979127730506147,0.08300385780604064,12452.17391304348,2,1,2_0,2_0_0,2_4_0,2_0_0 -7127,1,48.0,4,213.0,2,111,2,0,68,2.0,0.0,0.0,589.3805998859143,0.0,1147.0208117348345,10580.0,0,42,2,5551,201107127,,,,51.0,2.0,1.0,4.0,1.0,2.0,1.5,2339.6699362535533,0.0,432.0,660.0,0.0,17527.0,0,1,3,68.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1736.4014116207488,0.1641211164102787,0.09907008681581268,11684.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_1 -7128,2,60.0,2,0.0,4,111,3,77,78,2.0,0.0,832.755791738064,327.43366660328576,271.11401004641544,0.0,27162.0,50,71,1,5552,201107128,,,,,0.0,3.0,5.0,0.0,2.0,1.5,3204.8166239818665,0.0,240.0,0.0,0.0,16330.0,5,5,1,100.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1431.3034683877652,0.052695069154987305,0.08764871208743204,10886.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_1 -7129,2,76.0,2,0.0,5,112,2,0,78,8.0,0.0,0.0,1064.1594164606786,0.0,0.0,13213.0,0,50,1,5553,201107129,,,198.0,,0.0,5.0,5.0,0.0,1.0,1.0,5120.487956288638,0.0,780.0,0.0,0.0,26650.0,0,5,1,94.0,8,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1064.1594164606786,0.08053881907671828,0.03993093495162021,26650.0,8,4,8,8_1,8_1,8_0_0 -7130,2,65.0,3,0.0,6,111,6,75,75,10.0,0.0,1387.9263195634398,1579.8674413608537,0.0,0.0,78099.0,30,31,1,5554,201107130,,,307.0,,0.0,5.0,4.0,0.0,2.0,1.5,2529.6835719402675,0.0,1158.0,0.0,0.0,67648.0,5,5,2,100.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2967.7937609242936,0.03800040667517245,0.043871123476293364,45098.666666666664,10,5,10,10_1,10_2,10_0_0 -7131,2,46.0,5,0.0,4,111,1,46,47,6.0,0.0,0.0,477.50743046312505,0.0,97.32297796537989,36142.0,31,50,2,5555,201107131,1320.0,1320.0,270.0,569.0,2.0,1.0,5.0,1.0,3.0,1.8,2678.288844775191,0.0,350.0,56.0,1320.0,38608.0,1,1,3,110.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,574.8304084285049,0.015904775840531928,0.014888893711886265,21448.888888888887,6,3,6,6_0,6_3,6_0_1 -7132,2,75.0,4,0.0,4,120,4,86,78,2.0,0.0,0.0,1214.233180320518,0.0,0.0,7572.0,71,71,1,5557,201107132,,,,,0.0,4.0,3.0,0.0,2.0,1.5,3002.3380355254885,0.0,890.0,0.0,0.0,14210.0,6,5,1,80.0,0,2.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1214.233180320518,0.16035831752780216,0.08544920340045868,9473.333333333334,1,1,1_0,1_1_0,1_1_0,1_0_1 -7133,2,64.0,1,0.0,8,111,2,75,75,10.0,0.0,0.0,3137.9059716148217,0.0,2606.865481215533,47239.0,60,70,1,5558,201107133,,,250.0,,0.0,2.0,5.0,0.0,2.0,1.5,2123.522848299468,0.0,2300.0,1500.0,0.0,86987.0,5,5,1,170.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5744.771452830355,0.12161077611360009,0.0660417240832579,57991.333333333336,10,5,10,10_1,10_2,10_0_0 -7134,2,59.0,2,0.0,5,112,2,77,46,9.0,1903.7472109666587,1165.8581084332895,635.7670359880465,0.0,0.0,53887.0,50,41,1,5559,201107134,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1704.682250076226,0.0,466.0,0.0,0.0,54477.0,5,1,1,130.0,9,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3705.3723553879945,0.06876189721803022,0.06801718808649512,36318.0,9,5,9,9_1,9_0,9_0_0 -7135,2,82.0,1,0.0,3,111,1,0,74,10.0,0.0,0.0,1143.3105503915554,0.0,2603.362488053899,44368.0,0,10,2,556,201107135,758.0,758.0,,,0.0,4.0,3.0,0.0,1.0,1.0,3291.520370737281,876.0,504.0,956.0,0.0,87969.0,0,5,1,56.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3746.6730384454545,0.08444538943485067,0.042590833571433735,87969.0,10,5,10,10_0,10_4,10_0_1 -7136,2,43.0,4,0.0,3,111,1,55,46,5.0,0.0,0.0,613.9381248811608,0.0,149.46028758969055,32072.0,50,41,2,5560,201107136,,,,343.0,2.0,1.0,3.0,0.0,2.0,1.5,3337.3947175077074,0.0,450.0,86.0,0.0,27130.0,4,4,3,68.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,763.3984124708513,0.023802644439724723,0.02813853344898088,18086.666666666668,5,3,5,5_0,5_4,5_0_1 -7137,2,73.0,3,0.0,5,111,1,74,74,10.0,0.0,0.0,4322.166921398115,0.0,7241.818140244529,74343.0,20,12,2,5561,201107137,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2691.3229809721756,6735.0,600.0,0.0,0.0,66545.0,5,5,1,149.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,11563.985061642645,0.15554907740665086,0.17377691880145232,44363.333333333336,10,5,10,10_0,10_4,10_0_0 -7138,2,67.0,2,0.0,5,111,2,75,74,10.0,0.0,0.0,1116.0030803395323,0.0,3475.8206416207104,68900.0,31,20,1,5562,201107138,,,252.0,,0.0,3.0,7.0,0.0,2.0,1.5,1374.4982616453158,0.0,818.0,2000.0,0.0,57733.0,5,5,1,200.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4591.823721960242,0.06664475648708625,0.07953551213275323,38488.666666666664,10,5,10,10_1,10_3,10_0_0 -7139,2,68.0,3,0.0,5,212,2,0,72,6.0,0.0,0.0,530.715401286159,0.0,6126.133880856502,17218.0,0,41,1,5564,201107139,,,,,0.0,2.0,5.0,0.0,1.0,1.0,5020.209595623541,0.0,389.0,3525.0,0.0,21361.0,0,5,1,197.0,3,0.0,1,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6656.849282142662,0.38662151714151827,0.3116356576069782,21361.0,6,3,6,6_1,6_0,6_0_0 -7140,1,29.0,3,97.0,9,112,2,85,21,6.0,0.0,0.0,3547.198054868929,0.0,0.0,21154.0,44,50,1,5565,201107140,,,349.0,,1.0,0.0,5.0,3.0,5.0,2.4,4026.5832612725526,0.0,2600.0,0.0,0.0,47808.0,6,1,2,126.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3547.198054868929,0.1676845067064824,0.07419674646228516,19920.0,6,3,6,6_1,6_0,6_0_0 -7141,2,79.0,2,0.0,3,111,2,75,78,9.0,0.0,0.0,1357.73585601524,0.0,2806.4061389811764,40185.0,41,70,1,5566,201107141,,,390.0,,0.0,2.0,6.0,0.0,2.0,1.5,2258.751614295578,2610.0,0.0,0.0,0.0,44236.0,5,5,1,110.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4164.1419949964165,0.10362428754501472,0.09413468656742058,29490.666666666668,9,5,9,9_1,9_2,9_0_1 -7142,1,40.0,3,265.0,99,111,1,85,63,2.0,0.0,0.0,757.1903540200983,0.0,0.0,19879.0,71,50,2,5567,201107142,,,,116.0,1.0,0.0,4.0,3.0,5.0,2.4,1874.597113497305,0.0,555.0,0.0,0.0,26160.0,6,1,3,80.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,757.1903540200983,0.03808996197092904,0.0289445853983218,10900.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -7143,2,43.0,3,0.0,5,111,1,45,34,9.0,0.0,0.0,736.7257498573929,0.0,0.0,33879.0,20,31,1,5568,201107143,,,265.0,,2.0,0.0,5.0,1.0,3.0,1.8,2374.687394472943,0.0,540.0,0.0,0.0,52884.0,1,1,2,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,736.7257498573929,0.02174579385039089,0.013930976285027473,29380.0,9,5,9,9_1,9_4,9_0_0 -7144,2,39.0,2,0.0,9,221,4,56,65,5.0,0.0,0.0,0.0,0.0,0.0,65002.0,50,50,1,5570,201107144,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1993.8745167414113,0.0,0.0,0.0,0.0,35276.0,1,1,2,97.0,1,2.0,4,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,16798.095238095237,4,2,4_0,4_1_0,4_1_0,4_0_0 -7145,1,50.0,5,210.0,4,112,1,85,68,3.0,0.0,0.0,955.0148609262501,0.0,0.0,24444.0,71,71,2,5572,201107145,,,90.0,,2.0,0.0,4.0,4.0,6.0,3.5,4271.31995042832,0.0,700.0,0.0,0.0,45420.0,4,1,3,70.0,10,2.0,4,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,955.0148609262501,0.03906950011971241,0.021026306933647074,12977.142857142857,3,2,3_1,3_0_1,3_1_1,3_0_1 -7146,1,25.0,3,16.0,2,111,2,56,67,4.0,0.0,0.0,477.50743046312505,0.0,1560.643468087699,36619.0,43,71,2,5573,201107146,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3557.1893641431066,0.0,350.0,898.0,0.0,34311.0,1,1,2,67.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2038.150898550824,0.05565828937302559,0.05940225870860144,16338.571428571428,4,2,4_1,4_0_1,4_4_1,4_0_1 -7147,2,41.0,3,0.0,2,111,1,0,22,10.0,0.0,0.0,1370.2207834268743,0.0,2832.212172443072,19402.0,0,41,2,5576,201107147,,,,,1.0,3.0,4.0,0.0,1.0,1.0,3554.292934146536,2634.0,0.0,0.0,0.0,40616.0,0,1,1,54.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4202.432955869946,0.21659792577414425,0.1034674255433806,40616.0,10,5,10,10_0,10_4,10_0_1 -7148,2,77.0,1,0.0,4,111,2,86,74,9.0,0.0,0.0,1321.1030345948125,0.0,3972.284780790101,37733.0,60,20,1,5578,201107148,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1381.0030618214741,1244.0,494.0,1516.0,0.0,45300.0,6,5,1,135.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,5293.387815384914,0.1402853686530335,0.11685182815419236,30200.0,9,5,9,9_1,9_2,9_0_1 -7149,2,48.0,2,0.0,1,112,2,34,13,7.0,3566.3531085442073,0.0,1238.7907053157644,156.41192887293198,0.0,68698.0,20,10,1,5579,201107149,,,,,2.0,0.0,7.0,3.0,5.0,2.4,998.9318002659022,0.0,908.0,0.0,0.0,58679.0,1,1,1,172.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4961.555742732903,0.07222271016234684,0.08455419728919891,24449.583333333336,7,4,7,7_1,7_0,7_1_0 -7150,1,21.0,2,170.0,1,111,2,0,84,6.0,0.0,0.0,1091.4455553442858,0.0,0.0,23694.0,0,42,2,558,201107150,,,,249.0,0.0,0.0,2.0,0.0,1.0,1.0,3313.0905557732876,0.0,800.0,0.0,0.0,20193.0,0,3,3,65.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1091.4455553442858,0.04606421690488249,0.05405068862201188,20193.0,6,3,6,6_0,6_3,6_1_0 -7151,2,46.0,3,0.0,9,300,5,52,64,3.0,0.0,69.396315978172,1882.743582968893,145.98446694806984,0.0,26027.0,42,71,1,5581,201107151,,,286.0,,2.0,0.0,5.0,2.0,4.0,2.3,1200.5480798547803,0.0,1380.0,0.0,0.0,31501.0,1,1,2,98.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2098.124365895135,0.08061337710435836,0.0666050082821223,13696.08695652174,3,2,3_0,3_1_0,3_0_0,3_0_0 -7152,1,29.0,4,262.0,2,111,1,0,63,4.0,0.0,0.0,409.2920832541072,52.13730962431066,0.0,6234.0,0,43,2,5582,201107152,,,,16.0,1.0,0.0,3.0,0.0,1.0,1.0,3067.0921257477858,0.0,300.0,0.0,0.0,15411.0,0,4,3,45.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,461.42939287841784,0.07401818942547607,0.029941560760393084,15411.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -7153,2,38.0,1,0.0,7,300,5,46,35,9.0,0.0,832.755791738064,695.7965415319821,43.44775802025888,0.0,41001.0,31,31,1,5583,201107153,,,,,2.0,0.0,7.0,0.0,2.0,1.5,2654.0381034147945,0.0,510.0,0.0,0.0,45516.0,1,1,1,230.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1572.000091290305,0.038340530506336554,0.03453730756855402,30344.0,9,5,9,9_1,9_0,9_0_0 -7154,1,42.0,4,69.0,7,111,2,0,54,4.0,0.0,0.0,442.1745124953847,0.0,913.9636851088122,37188.0,0,71,2,5584,201107154,,,190.0,292.0,1.0,1.0,3.0,1.0,2.0,1.3,2772.0168035850425,850.0,0.0,0.0,0.0,19240.0,0,1,3,65.0,7,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1356.1381976041969,0.03646709147047964,0.07048535330583144,14800.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -7155,2,34.0,2,0.0,1,111,4,46,38,9.0,0.0,0.0,1227.8762497623215,0.0,0.0,47012.0,10,12,2,5585,201107155,,,,1200.0,2.0,0.0,3.0,1.0,3.0,1.8,2413.2996231178226,0.0,900.0,0.0,0.0,58266.0,1,1,3,65.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1227.8762497623215,0.0261183580737327,0.021073632131299928,32370.0,9,5,9,9_0,9_4,9_1_0 -7156,2,62.0,3,0.0,2,300,2,0,75,3.0,0.0,0.0,600.2950554393572,66.0405921907935,0.0,20406.0,0,70,2,5586,201107156,,,,203.0,0.0,1.0,4.0,0.0,1.0,1.0,1612.8634797626908,0.0,440.0,0.0,0.0,13293.0,0,5,3,70.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,666.3356476301507,0.03265390804813049,0.0501268071639322,13293.0,3,2,3_0,3_0_0,3_0_0,3_0_1 -7157,2,52.0,2,0.0,4,111,2,52,47,8.0,0.0,0.0,1510.2877872076556,0.0,1564.1192887293198,30629.0,50,70,1,559,201107157,,,430.0,,2.0,0.0,5.0,1.0,3.0,2.0,1998.4771375905602,0.0,1107.0,900.0,0.0,50910.0,1,1,1,130.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3074.407075936975,0.10037569218508521,0.060389060615536734,25455.0,8,4,8,8_1,8_3,8_0_1 -7158,1,48.0,4,300.0,3,111,4,0,85,2.0,0.0,0.0,736.7257498573929,0.0,921.0924700294883,21640.0,0,70,2,5591,201107158,,,300.0,40.0,0.0,0.0,4.0,3.0,4.0,2.3,2099.959548057127,0.0,540.0,530.0,0.0,23130.0,0,7,3,85.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1657.8182198868813,0.07660897504098342,0.0716739394676559,10056.521739130436,2,1,2_1,2_0_1,2_3_1,2_0_1 -7159,2,78.0,3,0.0,4,111,4,77,77,6.0,0.0,305.3437903039568,507.5221832350929,0.0,0.0,23275.0,70,20,1,5592,201107159,,,206.0,,0.0,2.0,4.0,0.0,2.0,1.5,3411.821014309978,0.0,372.0,0.0,0.0,30649.0,5,5,1,90.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,812.8659735390497,0.03492442421220407,0.026521777987505293,20432.666666666668,6,3,6,6_1,6_3,6_0_1 -7160,1,36.0,3,216.0,5,111,2,0,52,2.0,0.0,0.0,847.2346123360019,0.0,1164.399914942938,32361.0,0,50,2,5593,201107160,,,,348.0,1.0,0.0,4.0,3.0,4.0,2.3,1422.9612477218016,0.0,621.0,670.0,0.0,22485.0,0,1,3,90.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2011.63452727894,0.06216231041311888,0.08946562273866755,9776.08695652174,1,1,1_1,1_0_1,1_2_1,1_0_0 -7161,2,69.0,3,0.0,6,111,2,0,75,6.0,0.0,0.0,384.7345582588608,0.0,1494.6028758969055,20359.0,0,70,1,5594,201107161,,,154.0,,0.0,2.0,4.0,0.0,1.0,1.0,2423.113168687602,0.0,282.0,860.0,0.0,19616.0,0,5,1,90.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1879.3374341557662,0.09230990884403784,0.09580635369880537,19616.0,6,3,6,6_1,6_3,6_0_0 -7162,2,79.0,2,0.0,6,111,2,0,77,3.0,0.0,0.0,572.2258396999096,0.0,1182.7765336702275,23779.0,0,50,2,5596,201107162,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2910.853965003511,1100.0,0.0,0.0,0.0,14402.0,0,5,1,70.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1755.002373370137,0.07380471732916175,0.1218582400618065,14402.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -7163,2,40.0,3,0.0,6,111,4,47,47,6.0,0.0,0.0,1364.3069441803573,166.8393907977941,0.0,53919.0,20,12,1,5597,201107163,,,700.0,,2.0,0.0,5.0,3.0,5.0,2.4,1432.7090273194995,0.0,1000.0,0.0,0.0,45849.0,1,1,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1531.1463349781513,0.0283971574950973,0.03339541396711272,19103.75,5,3,5,5_1,5_3,5_0_0 -7164,2,31.0,4,0.0,2,300,2,62,43,7.0,2808.0271361758214,0.0,668.510402648375,97.32297796537989,0.0,39883.0,71,33,1,5598,201107164,,,432.0,,2.0,0.0,3.0,2.0,4.0,2.1,2830.8815562673585,0.0,490.0,0.0,0.0,49386.0,1,1,2,100.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3573.860516789576,0.0896086181277631,0.07236586313509044,23517.142857142855,7,4,7,7_1,7_0,7_0_1 -7165,2,35.0,3,0.0,1,111,2,53,43,7.0,0.0,0.0,1091.4455553442858,0.0,2085.4923849724264,45072.0,43,20,1,5599,201107165,,,600.0,,2.0,0.0,5.0,3.0,5.0,2.4,1655.9307631412453,0.0,800.0,1200.0,0.0,52475.0,1,1,2,90.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3176.9379403167122,0.07048584354625294,0.06054193311704073,21864.583333333336,7,4,7,7_1,7_3,7_1_0 -7166,2,66.0,3,0.0,4,112,2,72,72,5.0,0.0,0.0,1047.9656796700986,0.0,4351.500767685279,32866.0,50,60,1,56,201107166,,,977.0,,0.0,1.0,5.0,0.0,2.0,1.5,2665.46899130069,656.0,518.0,2098.0,0.0,27617.0,5,5,1,155.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,5399.466447355378,0.16428730138609438,0.1955124179800622,18411.333333333332,5,3,5,5_1,5_2,5_0_1 -7167,2,61.0,1,0.0,4,120,2,0,75,10.0,2221.038412794435,0.0,109.14455553442858,0.0,0.0,34191.0,0,41,1,560,201107167,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2947.186622899084,0.0,80.0,0.0,0.0,37220.0,0,5,1,120.0,0,3.0,1,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2330.1829683288634,0.06815193964285524,0.06260566814424673,37220.0,9,5,9,9_1,9_1,9_0_1 -7168,2,62.0,1,0.0,5,120,2,78,78,8.0,1534.1029608372992,0.0,1643.9898677373305,140.77073598563877,0.0,27872.0,70,50,1,5601,201107168,,,330.0,,0.0,1.0,5.0,0.0,2.0,1.5,1194.9549137531803,0.0,1205.0,0.0,0.0,40780.0,7,5,5,110.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3318.863564560268,0.11907518529564681,0.08138458961648525,27186.666666666668,8,4,8,8_1,8_0,8_0_0 -7169,2,59.0,1,0.0,6,111,2,34,23,10.0,0.0,0.0,2290.573609613918,104.27461924862132,222.57703860885192,42262.0,20,50,1,5604,201107169,,,719.0,,2.0,3.0,7.0,0.0,2.0,1.5,1828.0676938587476,207.0,1600.0,0.0,0.0,92221.0,1,1,1,170.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2617.425267471391,0.06193330338061122,0.0283820959160212,61480.666666666664,10,5,10,10_1,10_3,10_0_0 -7170,2,50.0,4,0.0,8,111,4,0,46,10.0,0.0,0.0,306.488820627025,0.0,388.16575332268377,38825.0,0,41,2,5605,201107170,,,,982.0,1.0,1.0,4.0,0.0,3.0,2.0,3248.8971389922967,361.0,87.0,0.0,0.0,77110.0,0,1,3,100.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,694.6545739497087,0.017891940088852767,0.00900861851834663,38555.0,10,5,10,10_0,10_4,10_0_0 -7171,2,52.0,3,0.0,7,221,4,56,53,9.0,0.0,0.0,199.18881385033217,0.0,0.0,52403.0,50,42,1,5609,201107171,,,135.0,,2.0,3.0,7.0,0.0,2.0,1.5,2738.967681792231,0.0,146.0,0.0,0.0,46375.0,1,1,2,126.0,1,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,199.18881385033217,0.003801095621440226,0.004295176578982904,30916.666666666668,9,5,9,9_1,9_1,9_0_0 -7172,1,51.0,3,30.0,5,111,2,0,56,1.0,0.0,0.0,546.7357795678226,0.0,1130.08921535219,24061.0,0,20,2,5610,201107172,,,,,1.0,1.0,1.0,0.0,1.0,1.0,3273.3210320653434,1051.0,0.0,0.0,0.0,7273.0,0,1,2,32.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1676.8249949200126,0.06969057790283083,0.23055479099683934,7273.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -7173,2,60.0,2,0.0,1,112,2,52,62,5.0,2221.038412794435,416.377895869032,1170.5753581067465,152.93610823131127,0.0,25497.0,71,50,1,5613,201107173,,,,,2.0,3.0,5.0,0.0,2.0,1.5,2658.2219693787706,0.0,858.0,0.0,0.0,27250.0,5,1,1,125.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3960.9277750015244,0.15534877730719396,0.14535514770647795,18166.666666666668,5,3,5,5_1,5_0,5_1_0 -7174,2,76.0,3,0.0,5,111,2,86,72,5.0,0.0,0.0,1637.1683330164287,0.0,2433.074449134497,26204.0,50,70,2,5614,201107174,,,,,0.0,4.0,4.0,0.0,2.0,1.5,3638.785157672185,0.0,1200.0,1400.0,0.0,25842.0,5,5,1,85.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,4070.242782150926,0.15532906358383933,0.15750494474695945,17228.0,5,3,5,5_0,5_3,5_0_0 -7175,2,86.0,3,0.0,1,111,2,0,77,3.0,0.0,0.0,518.1244875828272,0.0,1070.9503886686787,16396.0,0,70,1,5617,201107175,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2307.998179965651,996.0,0.0,0.0,0.0,14060.0,0,5,1,70.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1589.0748762515059,0.0969184481734268,0.11302097270636599,14060.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -7176,2,49.0,2,0.0,6,112,5,52,63,5.0,0.0,485.77421184720396,1577.138827472493,0.0,0.0,41238.0,50,50,1,5618,201107176,,,336.0,,3.0,0.0,7.0,2.0,4.0,2.3,1378.7898092920038,0.0,1156.0,0.0,0.0,43620.0,1,1,2,160.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2062.913039319697,0.05002456567534063,0.04729282529389493,18965.217391304348,5,3,5,5_1,5_0,5_0_0 -7177,2,32.0,2,0.0,3,111,1,22,22,4.0,0.0,0.0,1906.6346829842043,0.0,556.9802222192526,46831.0,31,50,2,5619,201107177,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3090.541472955371,518.0,1200.0,0.0,0.0,32028.0,1,1,1,105.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2463.614905203457,0.05260649794374361,0.07692066020992434,15251.42857142857,4,2,4_0,4_0_0,4_4_0,4_0_1 -7178,2,99.0,9,0.0,1,111,6,0,77,4.0,0.0,0.0,143.5766652337955,0.0,296.7693848118026,8995.0,0,71,2,562,201107178,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3177.217872989696,276.0,0.0,0.0,0.0,15306.0,0,5,3,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,440.3460500455981,0.048954535858321074,0.028769505425689148,15306.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -7179,2,38.0,2,0.0,9,111,4,54,85,1.0,0.0,0.0,4911.504999049286,0.0,0.0,32383.0,33,42,1,5620,201107179,,,,,1.0,0.0,5.0,2.0,4.0,2.1,2955.430535726177,0.0,3600.0,0.0,0.0,17526.0,1,7,2,140.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4911.504999049286,0.1516692400039924,0.28024107035543117,8345.714285714286,1,1,1_0,1_1_0,1_3_0,1_0_0 -7180,2,70.0,2,0.0,1,400,4,0,78,4.0,0.0,0.0,2435.287895361938,194.64595593075978,0.0,16109.0,0,71,1,5621,201107180,,,602.0,,0.0,0.0,3.0,0.0,1.0,1.0,3164.2509584886006,0.0,1785.0,0.0,0.0,16088.0,0,5,1,55.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2629.933851292698,0.16325866604337314,0.16347177096548346,16088.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -7181,1,68.0,3,50.0,1,111,2,77,86,3.0,0.0,0.0,777.6549581828036,0.0,2433.074449134497,16129.0,70,50,1,5622,201107181,,,420.0,,0.0,4.0,4.0,1.0,3.0,2.0,1617.9168895878931,0.0,570.0,1400.0,0.0,26600.0,5,5,2,100.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,3210.7294073173007,0.1990656213849154,0.12070411305704137,13300.0,3,2,3_1,3_1_1,3_2_1,3_1_0 -7182,2,65.0,2,0.0,2,112,2,21,72,4.0,2538.3296146222115,0.0,319.2478249382036,78.20596443646599,0.0,15164.0,70,50,1,5624,201107182,,,400.0,,1.0,3.0,3.0,0.0,2.0,1.5,2844.632544178673,0.0,234.0,0.0,0.0,23901.0,1,5,1,85.0,9,3.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2935.7834039968807,0.19360217647038253,0.12283098631843356,15934.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -7183,2,41.0,3,0.0,5,112,6,46,62,8.0,63.458240365555284,0.0,1173.3039719951073,208.54923849724264,0.0,35231.0,31,71,1,5626,201107183,,,416.0,,2.0,2.0,5.0,1.0,3.0,1.8,5974.6281912383465,0.0,860.0,0.0,0.0,46111.0,1,1,2,150.0,8,3.0,4,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1445.3114508579051,0.04102385543577829,0.03134417928168778,25617.222222222223,8,4,8,8_1,8_1,8_0_0 -7184,2,51.0,2,0.0,7,111,2,37,45,10.0,0.0,303.9558639843933,563.4587679464876,0.0,1018.4154479948681,39135.0,31,31,1,5629,201107184,,,241.0,,2.0,2.0,7.0,0.0,2.0,1.5,3357.7837947109265,0.0,413.0,586.0,0.0,60641.0,1,1,2,130.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1885.830079925749,0.04818781346430942,0.031098268167176483,40427.333333333336,10,5,10,10_1,10_3,10_0_0 -7185,2,36.0,2,0.0,1,111,4,43,45,8.0,0.0,0.0,351.99119159853217,0.0,0.0,23796.0,30,12,2,563,201107185,,,,,2.0,0.0,1.0,0.0,2.0,1.5,3540.3621341596236,0.0,258.0,0.0,0.0,41492.0,1,1,3,30.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,351.99119159853217,0.014792031921269632,0.008483350804939076,27661.333333333332,8,4,8,8_0,8_4,8_1_0 -7186,2,81.0,2,0.0,3,111,2,86,75,5.0,0.0,388.6193694777632,545.7227776721429,0.0,2085.4923849724264,22965.0,70,50,1,5630,201107186,,,260.0,,0.0,1.0,4.0,0.0,2.0,1.5,3149.727739788323,0.0,400.0,1200.0,0.0,26601.0,5,5,1,140.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3019.8345321223323,0.13149725809372229,0.11352334619459165,17734.0,5,3,5,5_1,5_2,5_0_1 -7187,2,46.0,3,0.0,1,111,2,0,45,8.0,0.0,0.0,955.0148609262501,0.0,0.0,22274.0,0,20,2,5631,201107187,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2358.2665131178455,0.0,700.0,0.0,0.0,26963.0,0,1,2,59.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,955.0148609262501,0.04287576820177113,0.03541945855157995,26963.0,8,4,8,8_0,8_3,8_1_0 -7188,2,88.0,1,0.0,5,111,1,0,75,10.0,0.0,0.0,586.6519859975537,0.0,0.0,27128.0,0,33,2,5632,201107188,,,,,0.0,6.0,3.0,0.0,1.0,1.0,4311.4366357203635,0.0,430.0,0.0,0.0,46965.0,0,5,5,62.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,586.6519859975537,0.02162533124438048,0.012491259150379084,46965.0,10,5,10,10_0,10_4,10_0_0 -7189,1,27.0,1,54.0,99,111,1,42,52,4.0,0.0,0.0,414.7493110308286,0.0,542.2280200928309,13912.0,50,50,2,5634,201107189,,,,215.0,2.0,0.0,3.0,1.0,3.0,1.8,2712.387512312743,0.0,304.0,312.0,0.0,29199.0,1,1,3,65.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,956.9773311236595,0.06878790476737058,0.032774318679532156,16221.666666666666,4,2,4_1,4_0_1,4_3_1,4_0_0 -7190,2,87.0,3,0.0,2,111,2,0,77,7.0,0.0,0.0,764.011888741,0.0,1319.0739334950597,22426.0,0,60,1,5635,201107190,,,340.0,,0.0,4.0,5.0,0.0,1.0,1.0,2783.969778591098,0.0,560.0,759.0,0.0,22196.0,0,5,1,100.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2083.08582223606,0.09288708740908141,0.09384960453397279,22196.0,7,4,7,7_1,7_3,7_0_1 -7191,2,76.0,3,0.0,1,112,4,0,77,5.0,0.0,0.0,2005.531207945125,0.0,0.0,12155.0,0,70,1,5636,201107191,,,177.0,,0.0,1.0,6.0,0.0,1.0,1.0,5031.073223761131,0.0,1470.0,0.0,0.0,18654.0,0,5,1,100.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2005.531207945125,0.1649963971982826,0.10751212651147878,18654.0,5,3,5,5_1,5_0,5_1_0 -7192,1,31.0,3,141.0,6,111,4,22,37,4.0,0.0,0.0,2319.3218051066074,0.0,0.0,45986.0,12,31,1,5637,201107192,,,600.0,,2.0,0.0,6.0,1.0,3.0,1.8,2531.727107477863,0.0,1700.0,0.0,0.0,29205.0,1,1,3,120.0,7,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2319.3218051066074,0.050435389142491356,0.07941523044364346,16225.0,4,2,4_1,4_1_1,4_2_1,4_0_0 -7193,2,29.0,1,0.0,1,111,3,38,38,10.0,0.0,0.0,555.2729262814054,0.0,1651.0148047698374,55866.0,12,20,1,5638,201107193,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1635.5220868138413,0.0,407.0,950.0,0.0,70508.0,1,1,3,105.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2206.2877310512426,0.03949249509632411,0.031291310646327265,39171.11111111111,10,5,10,10_1,10_3,10_1_0 -7194,2,78.0,1,0.0,2,111,2,0,74,10.0,3331.5576191916525,0.0,1631.7111052397072,0.0,0.0,92827.0,0,10,1,5639,201107194,,,,,0.0,4.0,7.0,0.0,1.0,1.0,1514.0441325781662,0.0,1196.0,0.0,0.0,77118.0,0,5,1,173.0,6,4.0,1,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4963.26872443136,0.05346794277991705,0.06435940668107783,77118.0,10,5,10,10_1,10_2,10_0_1 -7195,2,71.0,3,0.0,1,221,2,0,77,4.0,0.0,0.0,230.5678735664804,0.0,1996.8589586110982,15145.0,0,71,1,564,201107195,,,159.0,,0.0,1.0,5.0,0.0,1.0,1.0,3124.814867795623,0.0,169.0,1149.0,0.0,16089.0,0,5,1,58.0,1,1.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2227.4268321775785,0.14707341249109135,0.1384440818060525,16089.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -7196,1,30.0,3,42.0,5,111,2,52,43,6.0,0.0,0.0,70.94396109737858,104.27461924862132,0.0,67414.0,50,33,1,5640,201107196,,,,730.0,2.0,0.0,4.0,2.0,4.0,2.1,3103.4848134810277,0.0,52.0,0.0,0.0,43183.0,1,1,3,85.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,175.2185803459999,0.002599142319785206,0.004057582389968272,20563.333333333332,6,3,6,6_1,6_2,6_0_0 -7197,1,44.0,4,390.0,2,300,2,22,67,1.0,0.0,187.3700531410644,2728.6138883607146,45.18566834106924,0.0,36681.0,42,71,1,5642,201107197,,,,,2.0,1.0,5.0,2.0,4.0,2.1,3210.7697167612937,0.0,2000.0,0.0,0.0,18158.0,1,1,2,98.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2961.1696098428483,0.08072761401932467,0.16307796066983415,8646.666666666666,1,1,1_1,1_1_1,1_0_1,1_0_1 -7198,2,67.0,2,0.0,8,112,2,77,75,7.0,0.0,208.188947934516,529.3510943419786,0.0,0.0,24111.0,70,60,1,5643,201107198,,,160.0,,0.0,2.0,3.0,0.0,2.0,1.5,2185.9563189383116,0.0,388.0,0.0,0.0,35743.0,5,5,1,100.0,9,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,737.5400422764947,0.030589359308054193,0.020634531020801126,23828.666666666668,7,4,7,7_1,7_0,7_0_0 -7199,2,66.0,2,0.0,4,111,2,0,78,3.0,0.0,0.0,300.1475277196786,0.0,2085.4923849724264,12977.0,0,70,1,5644,201107199,,,,,0.0,0.0,4.0,0.0,1.0,1.0,1375.6899127773663,0.0,220.0,1200.0,0.0,13864.0,0,5,1,100.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2385.639912692105,0.183836010841651,0.17207443109435264,13864.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -7200,2,62.0,3,0.0,5,300,4,0,75,7.0,0.0,277.585263912688,2292.035666223,0.0,0.0,14015.0,0,50,1,5645,201107200,,,183.0,,0.0,2.0,4.0,0.0,1.0,1.0,1422.760187116906,0.0,1680.0,0.0,0.0,23928.0,0,5,1,97.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2569.620930135688,0.1833479079654433,0.10738970787929154,23928.0,7,4,7,7_1,7_0,7_0_0 -7201,2,46.0,3,0.0,99,112,2,0,46,7.0,0.0,0.0,24.557524995246432,0.0,27.806565132965684,33616.0,0,42,5,5647,201107201,,,,,1.0,0.0,2.0,0.0,1.0,1.0,7554.913479646873,0.0,18.0,16.0,0.0,22085.0,0,1,3,50.0,9,2.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,52.36409012821211,0.0015577132951038824,0.002371025135984248,22085.0,7,4,7,7_1,7_1,7_0_0 -7202,2,35.0,2,0.0,1,112,2,85,37,6.0,0.0,0.0,1732.6698191090536,0.0,1651.0148047698374,55026.0,31,12,1,5649,201107202,,,,,1.0,0.0,6.0,2.0,4.0,2.1,1338.0188269740559,0.0,1270.0,950.0,0.0,41931.0,6,1,2,133.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3383.684623878891,0.061492469448604134,0.08069649242514824,19967.142857142855,6,3,6,6_1,6_1,6_1_0 -7203,2,19.0,2,0.0,2,111,1,0,84,1.0,0.0,0.0,231.93218051066074,0.0,0.0,9998.0,0,41,2,565,201107203,,,,326.0,0.0,0.0,1.0,0.0,1.0,1.0,3651.5189388937983,0.0,170.0,0.0,0.0,5111.0,0,3,3,18.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,231.93218051066074,0.023197857622590592,0.04537902181777749,5111.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -7204,2,77.0,4,0.0,3,111,4,0,78,3.0,0.0,0.0,3356.1950826836787,114.70208117348345,0.0,16944.0,0,70,1,5650,201107204,,,322.0,,0.0,4.0,4.0,0.0,1.0,1.0,2640.547995366183,0.0,2460.0,0.0,0.0,12640.0,0,5,1,100.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3470.897163857162,0.20484520561007802,0.2745962946089527,12640.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -7205,2,68.0,1,0.0,4,112,2,0,72,10.0,5076.659229244423,0.0,515.708024900175,139.0328256648284,0.0,60827.0,0,50,1,5651,201107205,,,275.0,,0.0,2.0,6.0,0.0,1.0,1.0,2522.0361625544533,0.0,378.0,0.0,0.0,59511.0,0,5,1,200.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5731.400079809426,0.09422460551744169,0.09630824687552597,59511.0,10,5,10,10_1,10_0,10_0_1 -7206,2,76.0,3,0.0,1,120,2,71,77,6.0,3966.1400228472053,194.3096847388816,1955.0518510104519,0.0,0.0,24814.0,50,60,1,5652,201107206,,,150.0,,0.0,2.0,6.0,0.0,2.0,1.5,1307.5609246931085,0.0,1433.0,0.0,0.0,31104.0,5,5,1,150.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6115.501558596539,0.24645367770599416,0.19661463344253277,20736.0,6,3,6,6_1,6_0,6_1_0 -7207,2,71.0,2,0.0,5,111,4,77,75,7.0,0.0,946.565749942266,1885.4721968572537,173.79103208103552,0.0,27192.0,60,44,1,5654,201107207,,,299.0,,0.0,3.0,6.0,0.0,2.0,1.5,2238.3537195670456,0.0,1382.0,0.0,0.0,34216.0,5,5,1,130.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3005.8289788805555,0.11054093037954382,0.08784863744682475,22810.666666666668,7,4,7,7_1,7_2,7_0_0 -7208,2,78.0,3,0.0,6,112,2,78,78,6.0,0.0,0.0,518.4366387885358,0.0,1937.770007703546,20914.0,71,71,1,5655,201107208,,,252.0,,0.0,1.0,3.0,0.0,2.0,1.5,2795.932153533289,0.0,380.0,1115.0,0.0,30321.0,5,5,1,80.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2456.2066464920817,0.11744317904236788,0.08100678231232748,20214.0,6,3,6,6_1,6_0,6_0_0 -7209,2,49.0,5,0.0,1,111,2,22,43,6.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,25167.0,41,33,2,5656,201107209,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3559.1674706762315,600.0,0.0,0.0,0.0,44470.0,4,1,3,140.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,957.2740218382565,0.038036874551526066,0.02152628787583217,21176.190476190477,6,3,6,6_0,6_3,6_1_0 -7210,2,52.0,2,0.0,1,111,2,45,33,8.0,0.0,0.0,1276.9912997528145,0.0,1334.7151263823528,90853.0,31,12,2,5657,201107210,,,,,3.0,0.0,6.0,3.0,5.0,3.0,2120.6986669390367,0.0,936.0,768.0,0.0,83304.0,1,1,1,160.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2611.706426135167,0.028746507282480127,0.03135151284614385,27768.0,8,4,8,8_0,8_3,8_1_0 -7211,2,54.0,4,0.0,7,112,5,0,45,2.0,0.0,499.65347504283835,768.1048095735412,0.0,0.0,6835.0,0,71,1,566,201107211,,,152.0,,1.0,2.0,4.0,0.0,1.0,1.0,2691.626459977362,0.0,563.0,0.0,0.0,11318.0,0,1,1,120.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1267.7582846163796,0.18548036351373512,0.11201257153352003,11318.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -7212,2,59.0,2,0.0,6,111,2,52,46,7.0,0.0,0.0,2319.3218051066074,192.90804560994943,0.0,27510.0,70,50,1,5661,201107212,,,350.0,,2.0,2.0,4.0,0.0,2.0,1.5,1249.9280146079575,0.0,1700.0,0.0,0.0,33943.0,1,1,1,120.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2512.229850716557,0.09132060526050734,0.07401319419958627,22628.666666666668,7,4,7,7_1,7_2,7_0_0 -7213,1,27.0,3,105.0,8,111,1,0,84,8.0,0.0,0.0,81.85841665082144,0.0,0.0,25601.0,0,10,2,5662,201107213,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3451.33405581756,0.0,60.0,0.0,0.0,27939.0,0,3,3,23.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,81.85841665082144,0.0031974694992703973,0.0029298978721794423,27939.0,8,4,8,8_0,8_2,8_0_0 -7214,2,48.0,3,0.0,2,111,6,0,52,2.0,0.0,0.0,1773.5990274344645,0.0,1320.81184381587,26031.0,0,71,2,5663,201107214,,,,428.0,1.0,1.0,3.0,2.0,3.0,2.0,2771.590995577239,0.0,1300.0,760.0,0.0,20372.0,0,1,3,50.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3094.4108712503344,0.11887406827437802,0.15189529114717917,10186.0,2,1,2_0,2_0_0,2_4_0,2_0_1 -7215,2,82.0,2,0.0,99,112,4,0,77,4.0,0.0,0.0,0.0,0.0,0.0,18367.0,0,41,1,5664,201107215,,,,,0.0,8.0,2.0,0.0,1.0,1.0,5882.840479033101,0.0,0.0,0.0,0.0,14680.0,0,5,5,51.0,8,3.0,1,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,14680.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -7216,2,30.0,3,0.0,9,400,2,67,63,4.0,0.0,0.0,1446.1653608311788,208.54923849724264,0.0,35111.0,43,50,1,5667,201107216,,,406.0,,2.0,0.0,4.0,2.0,4.0,2.1,2208.1802526274337,0.0,1060.0,0.0,0.0,34722.0,4,1,2,83.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1654.7145993284214,0.04712809658877336,0.04765608545960548,16534.285714285714,4,2,4_0,4_1_0,4_0_0,4_0_0 -7217,2,51.0,4,0.0,5,111,2,0,62,3.0,0.0,0.0,1500.737638598393,125.12954309834558,0.0,20454.0,0,60,8,5669,201107217,,,240.0,299.0,1.0,1.0,3.0,1.0,2.0,1.5,2328.8312255690616,0.0,1100.0,0.0,0.0,20347.0,0,1,3,70.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1625.8671816967385,0.07948895969965476,0.07990697310152546,13564.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_0 -7218,2,34.0,2,0.0,1,111,2,46,47,6.0,0.0,0.0,2728.6138883607146,417.0984769944853,0.0,37840.0,12,31,1,567,201107218,,,310.0,,2.0,0.0,5.0,1.0,3.0,1.8,3358.9357363027266,0.0,2000.0,0.0,0.0,34460.0,4,1,2,142.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3145.7123653552,0.08313193354532769,0.09128590729411491,19144.444444444445,5,3,5,5_1,5_2,5_1_0 -7219,1,19.0,2,194.0,4,111,1,0,84,1.0,0.0,0.0,341.0767360450893,0.0,0.0,11335.0,0,41,2,5670,201107219,,,,256.0,0.0,0.0,1.0,0.0,1.0,1.0,3369.4586453025863,0.0,250.0,0.0,0.0,7132.0,0,3,3,30.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,341.0767360450893,0.03009058103617903,0.04782343466700635,7132.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -7220,2,32.0,3,0.0,1,112,4,0,68,3.0,0.0,0.0,1227.8762497623215,59.088950907552075,0.0,13042.0,0,50,1,5671,201107220,,,80.0,,1.0,0.0,2.0,0.0,1.0,1.0,2857.4004875236724,0.0,900.0,0.0,0.0,13169.0,0,4,3,60.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1286.9652006698736,0.09867851561646018,0.09772687376944898,13169.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -7221,2,47.0,2,0.0,1,111,2,22,56,10.0,0.0,0.0,491.1504999049286,0.0,1737.9103208103552,88324.0,50,50,8,5672,201107221,,,310.0,,2.0,0.0,4.0,1.0,3.0,2.0,2650.5322214780663,0.0,360.0,1000.0,0.0,101785.0,1,1,2,70.0,4,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2229.0608207152836,0.0252373173850288,0.021899698587368312,50892.5,10,5,10,10_0,10_2,10_1_0 -7222,1,46.0,2,144.0,3,120,1,85,62,2.0,0.0,0.0,605.7522832160786,0.0,121.65372245672486,17089.0,71,43,2,5673,201107222,,,,163.0,1.0,0.0,4.0,2.0,4.0,2.1,6933.704530528932,0.0,444.0,70.0,0.0,21751.0,6,1,3,100.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,727.4060056728034,0.04256574437783389,0.03344241670142998,10357.619047619048,2,1,2_1,2_0_1,2_1_1,2_0_1 -7223,2,52.0,1,0.0,1,112,2,0,37,10.0,0.0,0.0,1227.8762497623215,0.0,1824.805836850873,36095.0,0,31,1,5674,201107223,,,600.0,,1.0,0.0,3.0,0.0,1.0,1.0,1539.006006369164,0.0,900.0,1050.0,0.0,54239.0,0,1,1,55.0,10,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3052.6820866131948,0.08457354444142387,0.056282049569741234,54239.0,10,5,10,10_1,10_2,10_1_0 -7224,2,50.0,1,0.0,6,111,2,0,37,6.0,0.0,0.0,1091.4455553442858,0.0,1395.5419876107153,39630.0,0,41,1,5675,201107224,,,370.0,,1.0,2.0,8.0,1.0,2.0,1.5,1873.3636655110372,0.0,800.0,803.0,0.0,29447.0,0,1,1,250.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2486.987542955001,0.062755173932753,0.0844563976960302,19631.333333333332,6,3,6,6_1,6_3,6_0_0 -7225,2,78.0,2,0.0,1,112,2,77,74,7.0,0.0,0.0,724.4469873597697,2000.3347792527188,0.0,24706.0,70,44,1,5677,201107225,,,323.0,,0.0,3.0,3.0,0.0,2.0,1.5,2471.3191516971465,0.0,531.0,0.0,0.0,33860.0,5,5,1,80.0,9,2.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2724.7817666124884,0.11028826060926449,0.08047199546994944,22573.333333333332,7,4,7,7_1,7_1,7_1_0 -7226,2,68.0,2,0.0,1,221,2,86,78,5.0,0.0,0.0,382.0059443705,0.0,1268.6745341915594,13156.0,70,71,1,5678,201107226,,,80.0,,0.0,5.0,4.0,0.0,2.0,1.5,2719.8798383980607,0.0,280.0,730.0,0.0,26773.0,6,5,1,90.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1650.6804785620593,0.12546978401961534,0.061654669949652983,17848.666666666668,5,3,5,5_1,5_1,5_1_0 -7227,1,26.0,1,150.0,1,300,2,0,11,1.0,0.0,0.0,301.51183466385896,0.0,955.8506764456954,12489.0,0,31,2,5679,201107227,,,428.0,,1.0,0.0,2.0,0.0,1.0,1.0,3145.011567124568,0.0,221.0,550.0,0.0,9183.0,0,1,3,70.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,1257.3625111095544,0.10067759717427771,0.13692284777409935,9183.0,1,1,1_1,1_0_1,1_0_1,1_1_0 -7228,2,35.0,3,0.0,8,112,2,85,55,5.0,0.0,0.0,941.3717914844465,0.0,2155.0087978048405,78040.0,43,60,1,568,201107228,,,530.0,,1.0,0.0,4.0,2.0,4.0,2.1,1948.7828879176998,0.0,690.0,1240.0,0.0,38318.0,6,1,2,125.0,6,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3096.380589289287,0.03967683994476277,0.08080746879506465,18246.666666666664,5,3,5,5_1,5_0,5_0_0 -7229,1,23.0,3,57.0,1,111,1,0,63,9.0,0.0,0.0,436.5782221377143,0.0,0.0,32298.0,0,50,2,5680,201107229,,,,390.0,1.0,0.0,2.0,0.0,1.0,1.0,2674.845577213513,0.0,320.0,0.0,0.0,36794.0,0,1,3,74.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,436.5782221377143,0.013517190604301019,0.011865473233073716,36794.0,9,5,9,9_0,9_3,9_1_0 -7230,2,75.0,3,0.0,2,111,1,77,78,3.0,0.0,0.0,286.504458277875,0.0,3788.6444993665746,16299.0,70,50,2,5684,201107230,,,,374.0,0.0,2.0,4.0,0.0,2.0,1.5,2122.4567379164796,0.0,210.0,2180.0,0.0,18924.0,5,5,3,92.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,4075.1489576444496,0.2500244774307902,0.21534289566922687,12616.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -7231,1,78.0,3,60.0,1,300,2,0,77,3.0,1299.3074714847446,145.7322635541612,463.8643610213215,45.18566834106924,0.0,7162.0,0,71,1,5686,201107231,,,140.0,,0.0,3.0,4.0,0.0,1.0,1.0,2691.7877657789613,0.0,340.0,0.0,0.0,12490.0,0,5,3,69.0,0,1.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1954.0897644012964,0.2728413521923061,0.15645234302652494,12490.0,2,1,2_1,2_1_1,2_1_1,2_1_0 -7232,2,38.0,2,0.0,2,120,2,21,54,4.0,0.0,0.0,1773.5990274344645,16683.93907977941,0.0,54695.0,50,60,1,5687,201107232,,,,,2.0,0.0,6.0,3.0,5.0,2.6,1910.5714818312542,0.0,1300.0,0.0,0.0,41752.0,1,1,2,180.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,18457.538107213877,0.3374629876078961,0.4420755438593092,16058.461538461537,4,2,4_0,4_1_0,4_0_0,4_0_1 -7233,2,27.0,3,0.0,7,111,2,55,55,6.0,0.0,0.0,382.0059443705,0.0,1094.8835021105238,31654.0,31,43,2,5688,201107233,,,,379.0,2.0,0.0,3.0,0.0,2.0,1.5,3453.0710712636865,0.0,280.0,630.0,0.0,30828.0,1,1,3,65.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1476.8894464810237,0.04665727701020483,0.04790740386924302,20552.0,6,3,6,6_0,6_3,6_0_0 -7234,2,68.0,3,0.0,2,111,2,0,75,7.0,0.0,0.0,876.3376213712313,0.0,1968.47589984348,23906.0,0,31,2,5689,201107234,,,199.0,,0.0,3.0,2.0,0.0,1.0,1.0,2994.5565575935393,549.0,433.0,793.0,0.0,23147.0,0,5,1,56.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2844.8135212147113,0.11899997997217064,0.12290204005766239,23147.0,7,4,7,7_0,7_3,7_0_1 -7235,2,42.0,2,0.0,4,211,2,0,56,6.0,0.0,0.0,466.5929749096822,0.0,1338.1909470239734,11391.0,0,60,2,569,201107235,,,280.0,,1.0,0.0,4.0,0.0,1.0,1.0,2945.879929894127,0.0,342.0,770.0,0.0,20379.0,0,2,1,84.0,3,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1804.7839219336556,0.1584394629034901,0.08856096579487,20379.0,6,3,6,6_0,6_1,6_0_1 -7236,2,51.0,4,0.0,5,111,2,52,63,8.0,0.0,0.0,1170.5753581067465,0.0,1105.310964035386,25107.0,60,50,1,5692,201107236,,,180.0,,2.0,3.0,5.0,0.0,2.0,1.5,1453.4852100618623,0.0,858.0,636.0,0.0,40593.0,1,1,2,110.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2275.8863221421325,0.09064748166416269,0.05606597990151338,27062.0,8,4,8,8_1,8_3,8_0_0 -7237,1,35.0,3,50.0,6,111,4,55,56,4.0,0.0,0.0,2155.6049718049644,111.22626053186274,0.0,23974.0,41,50,1,5694,201107237,,,490.0,389.0,2.0,0.0,4.0,3.0,5.0,2.4,2251.6372687691733,0.0,1580.0,0.0,0.0,37839.0,1,1,3,90.0,4,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2266.8312323368273,0.09455373455980759,0.05990727113128855,15766.25,4,2,4_1,4_1_1,4_1_1,4_0_0 -7238,2,39.0,3,0.0,1,112,2,56,47,6.0,3172.912018277764,0.0,1323.3777358549464,321.5134093499157,0.0,63019.0,71,50,1,5697,201107238,,,517.0,,2.0,0.0,4.0,2.0,4.0,2.1,2465.4569919532587,0.0,970.0,0.0,0.0,40721.0,1,1,1,118.0,10,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4817.803163482627,0.07645000973488356,0.11831249634052765,19390.95238095238,6,3,6,6_1,6_0,6_1_0 -7239,2,68.0,3,0.0,1,111,2,78,78,3.0,0.0,0.0,548.4513915605036,0.0,1129.641708526731,22050.0,71,50,1,5699,201107239,,,168.0,,0.0,3.0,2.0,0.0,2.0,1.5,1811.7716779630016,0.0,402.0,650.0,0.0,20986.0,5,5,1,36.0,4,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1678.0931000872347,0.07610399546880883,0.07996250357796791,13990.666666666666,3,2,3_0,3_1_0,3_2_0,3_1_0 -7240,2,54.0,3,0.0,6,112,2,56,47,9.0,3172.912018277764,416.377895869032,1328.834963631668,354.5337054453125,0.0,34845.0,70,50,1,5700,201107240,,,540.0,,4.0,1.0,4.0,1.0,5.0,2.8,1003.4050575115458,0.0,974.0,0.0,0.0,97464.0,1,1,1,65.0,10,0.0,5,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5272.658583223776,0.1513175084868353,0.054098524411308545,34808.57142857143,9,5,9,9_1,9_0,9_0_0 -7241,2,52.0,2,0.0,99,111,1,0,43,8.0,0.0,0.0,487.75546103663277,0.0,556.9802222192526,16516.0,0,33,2,5701,201107241,,,,252.0,1.0,0.0,2.0,0.0,1.0,1.0,3044.750127291508,518.0,160.0,0.0,0.0,27487.0,0,1,3,42.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1044.7356832558853,0.06325597500943844,0.03800835606853732,27487.0,8,4,8,8_0,8_2,8_0_0 -7242,1,21.0,3,440.0,6,111,1,85,62,3.0,0.0,0.0,409.2920832541072,0.0,0.0,10893.0,71,43,2,5702,201107242,,,,,1.0,0.0,1.0,2.0,4.0,2.1,3659.999987178252,0.0,300.0,0.0,0.0,30536.0,6,1,3,40.0,7,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,409.2920832541072,0.03757386241201755,0.01340359193260765,14540.95238095238,3,2,3_1,3_0_1,3_2_1,3_0_0 -7243,1,22.0,3,315.0,8,111,4,84,46,1.0,0.0,0.0,68.21534720901786,0.0,0.0,11747.0,30,31,2,5703,201107243,,,,165.0,1.0,0.0,2.0,0.0,2.0,1.5,3739.448061075515,0.0,50.0,0.0,0.0,10454.0,3,3,3,40.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,68.21534720901786,0.005807044114158327,0.006525286704516727,6969.333333333333,1,1,1_1,1_0_1,1_3_1,1_0_0 -7244,1,66.0,3,22.0,2,111,2,78,78,2.0,0.0,0.0,409.2920832541072,0.0,2172.387901012944,12436.0,71,71,1,5704,201107244,,,,290.0,0.0,3.0,3.0,0.0,2.0,1.5,4547.348584907484,0.0,300.0,1250.0,0.0,16154.0,6,5,3,75.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,2581.679984267051,0.20759729690149978,0.15981676267593484,10769.333333333334,2,1,2_1,2_1_1,2_1_1,2_0_1 -7245,2,82.0,3,0.0,3,111,1,0,77,9.0,0.0,0.0,504.79356934673217,0.0,326.72714031234676,51747.0,0,70,2,5706,201107245,,,,403.0,0.0,2.0,4.0,0.0,1.0,1.0,3024.9069822391975,0.0,370.0,188.0,0.0,33351.0,0,5,3,78.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,831.5207096590789,0.016068964571068448,0.024932407114001947,33351.0,9,5,9,9_0,9_4,9_0_1 -7246,2,45.0,3,0.0,4,111,2,22,22,7.0,0.0,0.0,280.9108667617738,0.0,580.6357528926571,28866.0,31,31,1,5707,201107246,,,1300.0,,2.0,0.0,6.0,3.0,5.0,2.4,2730.5450235257276,540.0,0.0,0.0,0.0,52510.0,1,1,2,100.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,861.546619654431,0.029846415147731967,0.016407286605492878,21879.166666666668,7,4,7,7_1,7_2,7_0_1 -7247,1,55.0,4,244.0,4,111,1,0,78,3.0,0.0,0.0,409.2920832541072,97.32297796537989,0.0,4986.0,0,71,2,5708,201107247,,,,20.0,0.0,5.0,2.0,0.0,1.0,1.0,2853.5284647745634,0.0,300.0,0.0,0.0,12938.0,0,7,3,50.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,506.6150612194871,0.10160751328108446,0.039157138755564,12938.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -7248,2,51.0,3,0.0,7,111,5,56,48,6.0,0.0,208.188947934516,1200.5901108787143,187.69431464751835,0.0,41971.0,50,50,1,571,201107248,,,466.0,,3.0,1.0,4.0,1.0,3.0,2.0,1208.6158930962017,0.0,880.0,0.0,0.0,39325.0,1,1,1,85.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1596.4733734607485,0.03803753480881438,0.04059690714458356,19662.5,6,3,6,6_1,6_3,6_0_0 -7249,2,63.0,2,0.0,5,111,2,74,75,10.0,0.0,0.0,3694.867910819422,0.0,446.2293286119494,89459.0,50,50,1,5710,201107249,,,560.0,,1.0,1.0,6.0,1.0,3.0,2.0,2010.4452376357046,415.0,2550.0,0.0,0.0,76856.0,5,5,1,115.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4141.097239431371,0.04629044857902918,0.053881248561353325,38428.0,10,5,10,10_1,10_4,10_0_0 -7250,1,87.0,4,170.0,2,111,6,0,86,6.0,285.5620816449988,0.0,253.3399853944145,0.0,523.6474289976371,14826.0,0,71,2,5711,201107250,,,245.0,295.0,0.0,3.0,3.0,0.0,1.0,1.0,3465.528000583284,487.0,0.0,0.0,0.0,19796.0,0,6,3,70.0,6,5.0,1,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1062.5494960370504,0.07166798165635035,0.0536749593876061,19796.0,6,3,6,6_0,6_2,6_0_1 -7251,2,62.0,1,0.0,6,111,2,72,75,10.0,1532.5165048281601,0.0,2147.873042768109,151.1981979105009,1337.612734441603,39130.0,20,10,1,5712,201107251,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1575.315192642273,1244.0,1100.0,0.0,0.0,63645.0,6,5,1,180.0,8,6.0,3,7,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5169.200479948373,0.13210325785710128,0.0812192706410303,42430.0,10,5,10,10_1,10_2,10_0_0 -7252,1,32.0,4,30.0,2,111,1,84,85,2.0,0.0,0.0,622.1239665462429,0.0,312.82385774586396,14824.0,41,50,2,5713,201107252,,,,271.0,0.0,0.0,3.0,0.0,2.0,1.5,4000.928336326145,0.0,456.0,180.0,0.0,14860.0,3,4,3,73.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,934.9478242921068,0.06306987481733047,0.06291708104253747,9906.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_1 -7253,2,40.0,3,0.0,4,111,2,0,63,7.0,0.0,0.0,260.1026544090498,0.0,537.6256971228307,15329.0,0,50,1,5714,201107253,,,,,1.0,4.0,3.0,0.0,1.0,1.0,3285.743939561304,500.0,0.0,0.0,0.0,22583.0,0,1,2,65.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,797.7283515318805,0.05204046914553334,0.035324286035153904,22583.0,7,4,7,7_1,7_1,7_0_1 -7254,0,36.0,3,0.0,1,221,2,0,67,6.0,0.0,0.0,0.0,0.0,0.0,6767.0,0,50,1,5716,201107254,,,,,1.0,0.0,5.0,0.0,1.0,1.0,4603.753751293806,0.0,0.0,0.0,0.0,18999.0,0,1,5,156.0,1,2.0,1,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,18999.0,5,3,5,5_1,5_1,5_1_0 -7255,2,50.0,2,0.0,7,111,2,47,22,1.0,0.0,0.0,809.0340178989519,0.0,2297.5174441112895,39175.0,60,12,1,5717,201107255,,,,,2.0,0.0,5.0,2.0,4.0,2.5,1888.9395987101564,0.0,593.0,1322.0,0.0,8082.0,4,1,1,90.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3106.5514620102413,0.07929933534167814,0.384379047514259,3232.8,1,1,1_0,1_1_0,1_3_0,1_0_0 -7256,2,51.0,3,0.0,5,111,2,0,46,7.0,0.0,0.0,573.00891655575,0.0,0.0,17388.0,0,70,2,5718,201107256,,,350.0,,1.0,2.0,3.0,0.0,1.0,1.0,2715.56843342661,0.0,420.0,0.0,0.0,23720.0,0,1,3,65.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,573.00891655575,0.03295427401401829,0.02415720558835371,23720.0,7,4,7,7_0,7_4,7_0_0 -7257,1,24.0,2,60.0,8,111,2,56,56,6.0,0.0,0.0,529.3510943419786,0.0,1480.6995933304227,29695.0,50,71,1,572,201107257,,,477.0,500.0,2.0,0.0,3.0,1.0,3.0,1.8,4742.649298966471,0.0,388.0,852.0,0.0,35404.0,1,1,3,65.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2010.0506876724012,0.06768986993340297,0.05677467765428768,19668.888888888887,6,3,6,6_1,6_2,6_0_0 -7258,2,72.0,4,0.0,3,111,1,0,86,1.0,0.0,0.0,259.2183193942679,0.0,152.93610823131127,12484.0,0,41,2,5720,201107258,,,,,0.0,4.0,4.0,0.0,1.0,1.0,3134.01524047767,0.0,190.0,88.0,0.0,8440.0,0,7,1,76.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,412.15442762557916,0.03301461291457699,0.0488334629888127,8440.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -7259,2,56.0,3,0.0,2,111,1,0,52,5.0,0.0,0.0,245.5752499524643,0.0,104.27461924862132,12595.0,0,70,2,5721,201107259,,,,358.0,1.0,0.0,5.0,0.0,1.0,1.0,3115.1998622844526,0.0,180.0,60.0,0.0,17936.0,0,1,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,349.84986920108565,0.027776885208502234,0.019505456579007898,17936.0,5,3,5,5_0,5_4,5_0_1 -7260,2,56.0,1,0.0,5,112,6,67,48,8.0,0.0,0.0,2124.225912088816,119.9158121359145,0.0,16152.0,70,41,1,5724,201107260,,,326.0,,2.0,2.0,7.0,0.0,2.0,1.5,1794.3594219159625,0.0,1557.0,0.0,0.0,38816.0,4,1,1,200.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2244.1417242247308,0.1389389378544286,0.05781486305195617,25877.333333333332,8,4,8,8_1,8_1,8_0_0 -7261,1,71.0,4,175.0,1,111,4,0,77,4.0,0.0,0.0,443.3997568586161,0.0,0.0,20577.0,0,60,2,5728,201107261,,,375.0,458.0,1.0,4.0,3.0,0.0,2.0,1.5,3971.696989941325,0.0,325.0,0.0,0.0,22392.0,0,5,3,80.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,443.3997568586161,0.021548318844273516,0.019801704039773854,14928.0,3,2,3_1,3_0_1,3_3_1,3_1_0 -7262,2,36.0,2,0.0,9,111,6,56,64,6.0,0.0,0.0,2182.8911106885716,187.69431464751835,0.0,44158.0,50,43,1,5729,201107262,,,285.0,,2.0,0.0,5.0,1.0,3.0,1.8,3098.4970254426826,0.0,1600.0,0.0,0.0,35546.0,1,1,2,110.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2370.58542533609,0.053684166523304724,0.06669063819659286,19747.777777777777,6,3,6,6_1,6_2,6_0_0 -7263,2,47.0,4,0.0,5,112,2,68,67,9.0,0.0,0.0,2046.460416270536,0.0,0.0,12258.0,60,50,1,573,201107263,,,,,2.0,0.0,3.0,1.0,3.0,2.0,1558.1031284520875,0.0,1500.0,0.0,0.0,60950.0,1,1,2,100.0,10,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2046.460416270536,0.16694896526925565,0.03357605276899977,30475.0,9,5,9,9_1,9_1,9_0_0 -7264,1,35.0,5,471.0,99,111,2,0,85,1.0,0.0,0.0,1214.233180320518,139.0328256648284,0.0,6632.0,0,71,1,5731,201107264,,,1079.0,,0.0,0.0,4.0,3.0,4.0,1.9,1782.7296443814182,0.0,890.0,0.0,0.0,17512.0,0,6,3,87.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1353.2660059853463,0.204050965920589,0.0772764964587338,9216.842105263158,1,1,1_1,1_1_1,1_3_1,1_0_0 -7265,1,53.0,3,308.0,1,112,5,77,47,1.0,0.0,0.0,1364.3069441803573,97.32297796537989,0.0,38121.0,20,50,1,5732,201107265,,,307.0,,1.0,1.0,6.0,3.0,5.0,3.0,871.3599765627708,0.0,1000.0,0.0,0.0,22091.0,6,1,2,150.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1461.629922145737,0.03834185677568104,0.06616404518336594,7363.666666666667,1,1,1_1,1_1_1,1_0_1,1_1_0 -7266,2,86.0,3,0.0,4,111,2,0,86,9.0,0.0,0.0,720.3540665272286,0.0,3814.71315417873,26279.0,0,70,1,5737,201107266,,,182.0,,0.0,3.0,8.0,0.0,1.0,1.0,2213.950337028688,0.0,528.0,2195.0,0.0,29700.0,0,5,1,300.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4535.067220705959,0.17257381257680882,0.15269586601703564,29700.0,9,5,9,9_1,9_2,9_0_1 -7267,2,56.0,2,0.0,1,112,2,52,48,9.0,0.0,208.188947934516,2469.3955689664467,0.0,0.0,61002.0,60,42,1,5738,201107267,,,,,3.0,2.0,7.0,1.0,3.0,2.0,2031.5067978201193,0.0,1810.0,0.0,0.0,58631.0,1,1,1,102.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2677.5845169009626,0.04389338901840862,0.04566840949158232,29315.5,9,5,9,9_1,9_0,9_1_0 -7268,2,56.0,3,0.0,7,111,2,0,42,8.0,0.0,0.0,201.91742773869288,0.0,0.0,23057.0,0,31,2,5739,201107268,,,,500.0,1.0,1.0,2.0,0.0,1.0,1.0,2626.7919101133866,0.0,148.0,0.0,0.0,24739.0,0,1,3,48.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,201.91742773869288,0.00875731568455102,0.008161907423044297,24739.0,7,4,7,7_0,7_3,7_0_0 -7269,2,56.0,2,0.0,2,300,5,67,67,6.0,0.0,416.377895869032,545.7227776721429,217.2387901012944,0.0,17595.0,70,70,1,574,201107269,,,120.0,,2.0,2.0,6.0,0.0,2.0,1.5,1619.6595330408056,0.0,400.0,0.0,0.0,32077.0,1,1,1,180.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1179.3394636424694,0.0670269658222489,0.03676589031525608,21384.666666666668,6,3,6,6_1,6_0,6_0_1 -7270,2,64.0,3,0.0,9,111,1,0,75,9.0,0.0,0.0,648.0471479064543,0.0,3354.1652002162673,32478.0,0,31,2,5741,201107270,700.0,700.0,,,0.0,2.0,5.0,0.0,1.0,1.0,2073.3455689692164,695.0,210.0,1500.0,0.0,29855.0,0,5,2,112.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,4002.212348122722,0.12322841148231793,0.1340550108230689,29855.0,9,5,9,9_0,9_2,9_0_0 -7271,2,41.0,3,0.0,2,111,6,42,47,7.0,0.0,0.0,1337.02080529675,0.0,0.0,56210.0,20,20,1,5742,201107271,,,480.0,,2.0,0.0,5.0,2.0,4.0,2.1,1894.1801640003252,0.0,980.0,0.0,0.0,45750.0,1,1,2,110.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1337.02080529675,0.023786173373007473,0.029224498476431694,21785.714285714286,7,4,7,7_1,7_3,7_0_1 -7272,2,24.0,2,0.0,99,111,4,0,47,4.0,0.0,0.0,1352.028181682734,0.0,0.0,32532.0,0,20,2,5744,201107272,,,,613.0,2.0,0.0,3.0,0.0,3.0,2.0,2248.7604237126793,0.0,991.0,0.0,0.0,30031.0,0,1,3,72.0,8,7.0,5,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1352.028181682734,0.0415599465659269,0.04502108426901315,15015.5,4,2,4_0,4_0_0,4_3_0,4_0_0 -7273,2,65.0,3,0.0,4,400,2,77,77,7.0,3172.912018277764,0.0,6308.555309889972,260.6865481215533,0.0,34647.0,70,60,1,5745,201107273,,,360.0,,0.0,1.0,5.0,0.0,2.0,1.5,2117.2276948418667,0.0,4624.0,0.0,0.0,35958.0,5,5,1,98.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,9742.153876289289,0.281183186893217,0.2709314721700119,23972.0,7,4,7,7_1,7_0,7_0_1 -7274,2,46.0,2,0.0,8,221,2,21,46,9.0,0.0,0.0,321.97643882656433,59.088950907552075,0.0,49723.0,31,41,2,5747,201107274,,,774.0,,2.0,2.0,4.0,1.0,3.0,2.0,3613.763258952897,0.0,236.0,0.0,0.0,69636.0,1,1,2,90.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,381.0653897341164,0.007663765053076372,0.0054722469661398765,34818.0,9,5,9,9_0,9_1,9_0_0 -7275,2,30.0,2,0.0,1,111,4,0,38,10.0,0.0,0.0,1091.4455553442858,0.0,0.0,33565.0,0,10,1,5748,201107275,,,,925.0,1.0,0.0,3.0,0.0,1.0,1.0,2586.1543795732614,0.0,800.0,0.0,0.0,50876.0,0,1,3,43.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1091.4455553442858,0.03251737093234875,0.021453053607679178,50876.0,10,5,10,10_1,10_4,10_1_0 -7276,2,51.0,5,0.0,99,111,1,85,56,5.0,0.0,0.0,955.0148609262501,0.0,0.0,24499.0,60,20,2,5749,201107276,,,,404.0,1.0,1.0,3.0,1.0,3.0,1.8,3114.340648041459,0.0,700.0,0.0,0.0,31810.0,6,1,3,70.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,955.0148609262501,0.03898178949860199,0.030022472836411507,17672.222222222223,5,3,5,5_0,5_3,5_0_0 -7277,2,60.0,3,0.0,7,111,2,56,77,6.0,0.0,34.698157989086,504.79356934673217,0.0,695.1641283241421,32415.0,50,50,1,575,201107277,,,302.0,,1.0,2.0,5.0,0.0,2.0,1.5,1563.298483465142,0.0,370.0,400.0,0.0,30567.0,1,5,1,156.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1234.6558556599603,0.03808902840228167,0.04039179035103086,20378.0,6,3,6,6_1,6_3,6_0_0 -7278,1,29.0,2,49.0,1,111,6,0,43,5.0,0.0,0.0,409.2920832541072,0.0,1042.7461924862132,37892.0,0,20,2,5752,201107278,,,,321.0,1.0,0.0,2.0,0.0,1.0,1.0,3199.435663107876,0.0,300.0,600.0,0.0,17862.0,0,1,3,45.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1452.0382757403204,0.03832044430856963,0.08129203200875156,17862.0,5,3,5,5_0,5_3,5_1_0 -7279,2,39.0,2,0.0,1,111,6,85,31,10.0,0.0,0.0,1296.0915969713394,0.0,0.0,58711.0,10,10,1,5753,201107279,,,,,1.0,0.0,6.0,2.0,4.0,2.1,3105.259465477699,0.0,950.0,0.0,0.0,311758.0,6,1,1,250.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1296.0915969713394,0.02207578813120777,0.004157364356235732,148456.19047619047,10,5,10,10_1,10_3,10_1_0 -7280,1,55.0,4,114.0,5,111,1,0,55,3.0,0.0,0.0,374.5478223490317,0.0,774.1810038568763,16236.0,0,44,2,5754,201107280,,,,268.0,1.0,1.0,1.0,0.0,1.0,1.0,3184.6060364423524,720.0,0.0,0.0,0.0,14435.0,0,1,3,35.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1148.728826205908,0.07075196022455704,0.07957941296888868,14435.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -7281,2,74.0,3,0.0,4,112,2,75,75,9.0,0.0,105.48240028682143,1364.3069441803573,0.0,0.0,25935.0,50,43,1,5755,201107281,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1669.594653653632,0.0,1000.0,0.0,0.0,44196.0,5,5,1,110.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1469.7893444671788,0.056672039501337146,0.033256162197193836,29464.0,9,5,9,9_1,9_0,9_0_1 -7282,0,51.0,3,0.0,5,111,2,54,42,6.0,0.0,0.0,955.0148609262501,0.0,2466.094745229894,65649.0,42,42,1,5757,201107282,,,800.0,,4.0,0.0,5.0,3.0,5.0,3.0,2066.3721096644135,0.0,700.0,1419.0,0.0,58050.0,1,1,5,160.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3421.1096061561443,0.05211213584603184,0.05893384334463642,19350.0,6,3,6,6_1,6_4,6_0_0 -7283,2,64.0,2,0.0,7,111,2,0,74,10.0,0.0,971.5484236944079,1432.5222913893751,0.0,0.0,42905.0,0,42,1,5760,201107283,,,,,0.0,2.0,5.0,0.0,1.0,1.0,1713.5711956293194,0.0,1050.0,0.0,0.0,47862.0,0,5,1,160.0,6,4.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2404.070715083783,0.05603241382318571,0.05022921555897754,47862.0,10,5,10,10_1,10_2,10_0_0 -7284,2,66.0,2,0.0,4,111,2,77,78,7.0,0.0,0.0,573.00891655575,0.0,1939.5079180243565,34037.0,70,50,1,5762,201107284,,,280.0,,0.0,3.0,6.0,0.0,2.0,1.5,1151.4259369538393,0.0,420.0,1116.0,0.0,33962.0,5,5,1,110.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2512.5168345801067,0.07381722345036597,0.07398023775337456,22641.333333333332,7,4,7,7_1,7_3,7_0_1 -7285,2,60.0,4,0.0,6,221,2,0,54,5.0,1586.456009138882,0.0,941.3717914844465,0.0,0.0,61126.0,0,50,1,5765,201107285,,,340.0,,2.0,2.0,5.0,2.0,3.0,2.0,2284.961719570432,0.0,690.0,0.0,0.0,36709.0,0,1,1,140.0,1,2.0,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2527.8278006233286,0.041354379488651775,0.06886125475015197,18354.5,5,3,5,5_1,5_1,5_0_0 -7286,2,57.0,3,0.0,6,300,5,78,74,7.0,0.0,693.9631597817199,1023.230208135268,281.54147197127753,0.0,19041.0,71,41,1,5768,201107286,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,2759.039084580612,0.0,750.0,0.0,0.0,36914.0,5,5,1,117.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1998.7348398882655,0.1049700561886595,0.0541457127346878,24609.333333333332,7,4,7,7_1,7_0,7_0_0 -7287,0,81.0,2,0.0,9,120,6,0,71,1.0,0.0,0.0,1260.61961642265,0.0,0.0,12164.0,0,71,1,5769,201107287,,,318.0,,0.0,2.0,2.0,0.0,1.0,1.0,4103.005441554829,0.0,924.0,0.0,0.0,8250.0,0,5,5,57.0,0,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1260.61961642265,0.10363528579600872,0.15280237774820002,8250.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -7288,2,54.0,3,0.0,8,111,2,21,63,8.0,0.0,333.10231669522557,559.3658471139465,0.0,1534.5748132755436,29121.0,50,41,1,5770,201107288,,,166.0,,2.0,3.0,6.0,0.0,2.0,1.5,1659.6469345458552,0.0,410.0,883.0,0.0,37499.0,1,1,2,120.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2427.042977084716,0.08334339401410377,0.06472287199884573,24999.333333333332,8,4,8,8_1,8_3,8_0_0 -7289,2,62.0,3,0.0,5,111,2,78,75,9.0,625.0636676007196,0.0,2162.4265065258664,52.13730962431066,0.0,33026.0,50,42,1,5771,201107289,,,468.0,,0.0,2.0,5.0,0.0,2.0,1.5,1414.5643147165445,0.0,1585.0,0.0,0.0,44371.0,5,5,1,100.0,6,4.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2839.6274837508963,0.08598157463062121,0.06399737404500454,29580.666666666668,9,5,9,9_1,9_2,9_0_0 -7290,2,26.0,3,0.0,1,112,1,55,63,8.0,0.0,0.0,1023.230208135268,0.0,0.0,26606.0,31,50,2,5773,201107290,,,360.0,,2.0,0.0,3.0,0.0,2.0,1.5,2579.152219615838,0.0,750.0,0.0,0.0,41820.0,1,1,3,99.0,10,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1023.230208135268,0.03845862617963121,0.024467484651728072,27880.0,8,4,8,8_0,8_1,8_1_0 -7291,1,53.0,4,290.0,3,111,2,0,68,5.0,0.0,0.0,545.7227776721429,0.0,1477.223772688802,16288.0,0,70,2,5774,201107291,,,500.0,,2.0,3.0,4.0,2.0,3.0,2.0,967.5454947795001,0.0,400.0,850.0,0.0,34792.0,0,1,3,60.0,5,4.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2022.946550360945,0.12419858486990085,0.05814401443897864,17396.0,5,3,5,5_0,5_2,5_0_1 -7292,2,71.0,2,0.0,4,111,4,0,75,10.0,0.0,0.0,679.388133316438,0.0,1404.2783208848336,33030.0,0,33,2,5775,201107292,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3241.700853388622,1306.0,0.0,0.0,0.0,40460.0,0,5,1,77.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2083.666454201272,0.06308405855892436,0.05149941804748571,40460.0,10,5,10,10_0,10_4,10_0_1 -7293,2,32.0,2,0.0,9,111,2,0,43,8.0,0.0,0.0,818.5841665082144,0.0,782.0596443646599,14417.0,0,33,2,5776,201107293,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2769.3940020937753,0.0,600.0,450.0,0.0,26204.0,0,1,3,70.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1600.6438108728744,0.1110247493148973,0.06108394943034935,26204.0,8,4,8,8_0,8_2,8_0_0 -7294,1,32.0,4,21.0,1,300,4,43,48,4.0,0.0,138.792631956344,304.2404485522197,48.661488982689946,0.0,56903.0,42,44,1,578,201107294,,,,,2.0,0.0,7.0,2.0,4.0,2.1,2557.9688627917503,0.0,223.0,0.0,0.0,31467.0,2,1,2,126.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,491.6945694912536,0.008640925249833113,0.015625721215598996,14984.285714285714,4,2,4_1,4_1_1,4_0_1,4_1_0 -7295,2,83.0,2,0.0,6,211,4,71,75,3.0,0.0,0.0,98.23009998098573,0.0,0.0,18568.0,70,50,1,5780,201107295,,,180.0,,0.0,2.0,4.0,0.0,2.0,1.5,989.4990559385787,0.0,72.0,0.0,0.0,21681.0,5,5,1,90.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,98.23009998098573,0.0052902897447751895,0.004530699690096662,14454.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -7296,2,45.0,1,0.0,1,112,2,63,31,9.0,0.0,69.396315978172,693.0679276436215,4668.027121696614,0.0,44819.0,12,10,1,5782,201107296,,,754.0,,2.0,0.0,6.0,2.0,4.0,2.1,1443.1419571101917,0.0,508.0,0.0,0.0,61531.0,1,1,2,200.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5430.491365318408,0.12116493820295873,0.08825618574894618,29300.47619047619,9,5,9,9_1,9_0,9_1_0 -7297,2,78.0,1,0.0,1,300,2,77,75,8.0,0.0,0.0,718.9897595830482,2433.074449134497,0.0,37230.0,50,50,1,5783,201107297,,,330.0,,0.0,4.0,5.0,0.0,2.0,1.5,810.3347901642567,0.0,527.0,0.0,0.0,40010.0,5,5,1,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3152.0642087175456,0.08466463090834127,0.07878190974050352,26673.333333333332,8,4,8,8_1,8_0,8_1_0 -7298,2,56.0,2,0.0,1,111,2,0,35,5.0,0.0,0.0,1418.8792219475715,0.0,2919.689338961397,49995.0,0,60,1,5784,201107298,,,260.0,,1.0,0.0,2.0,0.0,2.0,1.5,2671.866568060387,0.0,1040.0,1680.0,0.0,25833.0,0,1,2,50.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4338.568560908969,0.08678004922310169,0.16794675650946342,17222.0,5,3,5,5_1,5_4,5_1_0 -7299,2,66.0,5,0.0,5,111,1,77,74,3.0,0.0,0.0,382.0059443705,0.0,486.61488982689946,30289.0,70,50,2,5786,201107299,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2571.4407528809447,0.0,280.0,280.0,0.0,19518.0,5,5,1,114.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,868.6208341973995,0.028677765333863764,0.04450357793818012,13012.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -7300,2,29.0,2,0.0,9,111,4,31,31,10.0,0.0,0.0,1091.4455553442858,0.0,0.0,59522.0,10,10,2,5787,201107300,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3395.278692260091,0.0,800.0,0.0,0.0,97151.0,1,1,2,75.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1091.4455553442858,0.018336842769804206,0.011234527234349475,64767.333333333336,10,5,10,10_0,10_3,10_0_0 -7301,2,58.0,1,0.0,6,120,2,69,63,8.0,951.8736054833294,0.0,1105.0886247860894,86.89551604051776,0.0,42468.0,60,50,1,5788,201107301,,,282.0,,4.0,1.0,5.0,2.0,4.0,2.5,1559.8802939108966,0.0,810.0,0.0,0.0,70909.0,1,1,1,150.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2143.8577463099364,0.05048172144461562,0.030233930055563275,28363.6,8,4,8,8_1,8_0,8_0_0 -7302,2,70.0,1,0.0,1,111,2,0,74,10.0,0.0,0.0,3106.5269118986735,0.0,1220.0130452088695,36174.0,0,30,1,579,201107302,,,377.0,,0.0,4.0,8.0,0.0,1.0,1.0,1586.3673284432698,0.0,2277.0,702.0,0.0,62239.0,0,5,1,300.0,4,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4326.539957107543,0.11960358149796935,0.06951493367675482,62239.0,10,5,10,10_1,10_2,10_1_0 -7303,2,86.0,3,0.0,1,111,2,0,77,2.0,0.0,0.0,259.2183193942679,0.0,1651.0148047698374,9059.0,0,70,1,5790,201107303,,,276.0,,0.0,1.0,5.0,0.0,1.0,1.0,3463.0794780381816,0.0,190.0,950.0,0.0,11796.0,0,5,1,92.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1910.2331241641052,0.210865782554819,0.16193905766057182,11796.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -7304,2,82.0,2,0.0,7,400,5,0,78,5.0,0.0,0.0,95.501486092625,50.3993993035003,0.0,15630.0,0,71,1,5791,201107304,,,120.0,,0.0,1.0,4.0,0.0,1.0,1.0,3128.133846460367,0.0,70.0,0.0,0.0,17787.0,0,5,1,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,145.90088539612532,0.009334669571089272,0.008202669668641442,17787.0,5,3,5,5_1,5_0,5_0_0 -7305,1,37.0,2,80.0,8,112,4,85,37,3.0,0.0,0.0,3001.475277196786,0.0,0.0,62835.0,10,20,1,5792,201107305,,,650.0,,1.0,0.0,7.0,4.0,6.0,2.7,1101.8568568686176,0.0,2200.0,0.0,0.0,38613.0,6,1,2,156.0,9,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,3001.475277196786,0.04776757025856268,0.07773224761600461,14301.11111111111,3,2,3_1,3_1_1,3_1_1,3_0_0 -7306,2,30.0,3,0.0,9,111,2,0,46,6.0,0.0,0.0,1064.1594164606786,0.0,1793.5234510762866,36096.0,0,31,1,5793,201107306,,,350.0,,1.0,0.0,4.0,0.0,1.0,1.0,2044.286738062965,0.0,780.0,1032.0,0.0,19500.0,0,1,1,93.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2857.682867536965,0.07916896242068276,0.14654783936087,19500.0,6,3,6,6_1,6_3,6_0_0 -7307,1,62.0,2,90.0,6,111,4,68,63,2.0,317.29120182777643,0.0,1467.9942719380645,0.0,0.0,36819.0,71,71,2,5795,201107307,,,,480.0,2.0,2.0,5.0,4.0,6.0,3.3,2740.891136107437,0.0,1076.0,0.0,0.0,34154.0,1,1,3,121.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1785.2854737658408,0.04848815757532363,0.0522716365218083,10349.69696969697,2,1,2_1,2_0_1,2_4_1,2_0_0 -7308,2,52.0,3,0.0,8,111,2,42,42,7.0,0.0,0.0,818.5841665082144,0.0,1390.3282566482842,74138.0,30,20,1,5796,201107308,,,600.0,,3.0,0.0,6.0,3.0,5.0,2.8,2606.3628062322696,0.0,600.0,800.0,0.0,61413.0,1,1,1,100.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2208.9124231564983,0.02979460496852489,0.03596815695628773,21933.214285714286,7,4,7,7_1,7_3,7_0_0 -7309,2,44.0,2,0.0,9,112,2,0,34,7.0,0.0,0.0,936.3695558725793,0.0,1935.4525096421905,68901.0,0,31,1,5797,201107309,,,,,1.0,0.0,7.0,3.0,4.0,2.3,1531.4655238909663,1800.0,0.0,0.0,0.0,52866.0,0,1,2,130.0,8,1.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2871.8220655147697,0.041680411975367114,0.054322666090015695,22985.217391304348,7,4,7,7_1,7_1,7_0_0 -7310,2,50.0,2,0.0,6,111,2,56,47,7.0,0.0,0.0,634.4027290438661,0.0,1190.4685697550933,25769.0,60,42,1,5799,201107310,,,258.0,410.0,2.0,4.0,4.0,0.0,2.0,1.5,1940.5969851516143,0.0,465.0,685.0,0.0,34946.0,1,1,3,80.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1824.8712987989593,0.0708165353253506,0.052219747576230734,23297.333333333332,7,4,7,7_1,7_2,7_0_0 -7311,2,59.0,2,0.0,3,111,4,42,75,8.0,0.0,0.0,170.53836802254466,0.0,0.0,41843.0,20,50,1,580,201107311,,,160.0,,2.0,0.0,6.0,2.0,4.0,2.5,1843.9186712025628,0.0,125.0,0.0,0.0,63234.0,1,5,1,115.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,170.53836802254466,0.004075672586156457,0.002696941013102835,25293.6,8,4,8,8_1,8_4,8_0_1 -7312,0,44.0,3,0.0,6,112,2,48,52,3.0,2696.9752155360998,0.0,848.5989192801823,100.7987986070006,0.0,18735.0,60,50,1,5801,201107312,,,,,3.0,5.0,4.0,1.0,3.0,2.0,1594.1087485640226,0.0,622.0,0.0,0.0,26428.0,4,1,5,150.0,6,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3646.3729334232826,0.19462892625691394,0.1379738509695506,13214.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -7313,2,81.0,4,0.0,1,112,5,0,71,2.0,0.0,0.0,518.4366387885358,67.77850251160386,0.0,10892.0,0,70,1,5802,201107313,,,158.0,,0.0,4.0,2.0,0.0,1.0,1.0,2953.4594266760455,0.0,380.0,0.0,0.0,11270.0,0,5,5,50.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,586.2151413001396,0.05382070706024051,0.05201554048803369,11270.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -7314,2,26.0,2,0.0,99,111,4,0,37,8.0,0.0,0.0,750.3688192991965,0.0,0.0,16605.0,0,31,2,5803,201107314,,,150.0,430.0,1.0,0.0,2.0,0.0,1.0,1.0,3415.2610237086556,0.0,550.0,0.0,0.0,24825.0,0,1,3,55.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,750.3688192991965,0.0451893296777595,0.030226337131891098,24825.0,7,4,7,7_0,7_3,7_0_0 -7315,2,45.0,2,0.0,7,111,4,43,34,6.0,0.0,0.0,1637.1683330164287,208.54923849724264,0.0,43218.0,41,20,1,5805,201107315,,,800.0,,2.0,0.0,4.0,2.0,4.0,2.5,2245.0307521596274,0.0,1200.0,0.0,0.0,50772.0,1,1,2,120.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1845.7175715136714,0.042707149139563874,0.03635306018107759,20308.8,6,3,6,6_1,6_3,6_0_0 -7316,2,45.0,4,0.0,3,111,1,0,56,5.0,0.0,0.0,654.8673332065715,0.0,0.0,16451.0,0,50,2,5806,201107316,,,,420.0,1.0,0.0,5.0,0.0,1.0,1.0,3223.1395974231946,0.0,480.0,0.0,0.0,17585.0,0,1,3,80.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,654.8673332065715,0.03980714444146687,0.037240109934977055,17585.0,5,3,5,5_0,5_4,5_0_1 -7317,2,71.0,3,0.0,5,112,2,86,86,2.0,0.0,69.396315978172,795.3909484571483,0.0,1242.605879379404,15278.0,50,70,1,5807,201107317,,,128.0,,0.0,2.0,5.0,0.0,2.0,1.5,1910.7549648173297,0.0,583.0,715.0,0.0,15524.0,6,5,1,80.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2107.393143814724,0.13793645397399687,0.1357506534279003,10349.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -7318,1,36.0,3,150.0,5,120,1,68,67,2.0,0.0,0.0,416.1642470544797,0.0,860.2011153965291,19119.0,50,71,2,581,201107318,,,,147.0,2.0,0.0,3.0,2.0,4.0,2.1,5319.082326616802,800.0,0.0,0.0,0.0,21100.0,4,1,3,72.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1276.3653624510089,0.06675900216805318,0.060491249405261086,10047.619047619048,2,1,2_1,2_0_1,2_1_1,2_0_0 -7319,1,25.0,2,250.0,1,111,2,0,35,6.0,0.0,0.0,845.8703053918215,0.0,0.0,20091.0,0,10,2,5810,201107319,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3447.156281923046,0.0,620.0,0.0,0.0,19170.0,0,1,3,40.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,845.8703053918215,0.0421019513907631,0.04412468990046017,19170.0,5,3,5,5_0,5_3,5_1_0 -7320,2,48.0,3,0.0,1,112,4,52,68,4.0,0.0,0.0,1899.1152662990573,159.8877495145527,0.0,27834.0,50,50,1,5812,201107320,,,,,2.0,0.0,6.0,2.0,4.0,2.3,953.3506731250526,0.0,1392.0,0.0,0.0,37900.0,1,1,1,120.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2059.00301581361,0.07397438441523353,0.05432725635392111,16478.26086956522,4,2,4_0,4_1_0,4_1_0,4_1_0 -7321,2,33.0,2,0.0,4,111,1,0,47,6.0,0.0,0.0,191.00297218525,0.0,0.0,12299.0,0,50,2,5813,201107321,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2677.053694648728,0.0,140.0,0.0,0.0,19972.0,0,1,2,35.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,191.00297218525,0.015529959523965364,0.009563537561849089,19972.0,6,3,6,6_0,6_2,6_0_1 -7322,2,65.0,2,0.0,1,111,6,0,75,9.0,2855.620816449988,0.0,2046.460416270536,0.0,0.0,22654.0,0,20,1,5815,201107322,,,150.0,,0.0,1.0,11.0,0.0,1.0,1.0,1744.6069747726665,0.0,1500.0,0.0,0.0,29110.0,0,5,1,151.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4902.081232720524,0.21638921306261694,0.168398530838905,29110.0,9,5,9,9_1,9_3,9_1_0 -7323,2,67.0,1,0.0,1,300,2,75,74,9.0,0.0,138.792631956344,3274.3366660328575,0.0,0.0,56001.0,30,20,1,5816,201107323,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1772.979297293349,0.0,2400.0,0.0,0.0,53780.0,5,5,1,129.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3413.1292979892014,0.06094764911321586,0.06346465782798813,35853.333333333336,9,5,9,9_1,9_0,9_1_0 -7324,2,41.0,2,0.0,3,111,1,54,63,5.0,0.0,0.0,477.50743046312505,0.0,955.8506764456954,34108.0,71,71,2,5818,201107324,,,,410.0,2.0,0.0,4.0,2.0,4.0,2.3,3170.2058194204474,0.0,350.0,550.0,0.0,42864.0,1,1,3,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1433.3581069088204,0.042024103052328496,0.03343967214699563,18636.521739130436,5,3,5,5_0,5_4,5_0_1 -7325,2,22.0,2,0.0,4,211,2,69,63,6.0,0.0,0.0,136.43069441803573,0.0,695.1641283241421,13842.0,31,50,2,582,201107325,,,200.0,,2.0,0.0,4.0,0.0,2.0,1.5,2555.1995469385743,0.0,100.0,400.0,0.0,28720.0,1,1,1,80.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,831.5948227421778,0.06007764938174959,0.02895525148823739,19146.666666666668,5,3,5,5_0,5_1,5_0_1 -7326,2,55.0,1,0.0,1,400,4,69,63,6.0,0.0,0.0,4584.071332446,100.7987986070006,0.0,30425.0,70,50,1,5821,201107326,,,,,2.0,1.0,5.0,0.0,2.0,1.5,1390.8096861040092,0.0,3360.0,0.0,0.0,31230.0,1,1,1,175.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4684.8701310530005,0.1539809410370748,0.15001185177883447,20820.0,6,3,6,6_1,6_0,6_1_0 -7327,2,63.0,3,0.0,1,112,5,0,75,6.0,0.0,1387.9263195634398,1091.4455553442858,97.32297796537989,0.0,27886.0,0,50,1,5823,201107327,,,118.0,,0.0,0.0,3.0,0.0,1.0,1.0,2053.984837226906,0.0,800.0,0.0,0.0,21494.0,0,5,1,150.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2576.6948528731054,0.092401020328233,0.1198797270342005,21494.0,6,3,6,6_1,6_0,6_1_0 -7328,2,48.0,2,0.0,8,211,2,0,46,7.0,0.0,0.0,532.0797082303393,0.0,1633.6357015617339,88599.0,0,10,1,5825,201107328,,,,,1.0,0.0,5.0,3.0,4.0,2.5,1263.6417793388694,0.0,390.0,940.0,0.0,54014.0,0,1,1,108.0,1,2.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2165.715409792073,0.024444016408673608,0.04009544580649596,21605.6,6,3,6,6_1,6_1,6_0_0 -7329,0,33.0,1,0.0,1,112,2,42,38,10.0,0.0,0.0,0.0,243.30744491344973,0.0,45053.0,20,12,1,5826,201107329,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2218.7515721976206,0.0,0.0,0.0,0.0,60934.0,1,1,5,60.0,7,0.0,3,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,243.30744491344973,0.0054004715538021825,0.003992966897191219,40622.666666666664,10,5,10,10_1,10_0,10_1_0 -7330,1,41.0,3,300.0,9,111,4,0,56,1.0,0.0,0.0,1364.3069441803573,0.0,0.0,25184.0,0,50,1,5828,201107330,,,,,1.0,0.0,4.0,2.0,3.0,1.8,1436.8839547461127,0.0,1000.0,0.0,0.0,11820.0,0,1,2,80.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1364.3069441803573,0.05417356036294303,0.11542359933843971,6566.666666666666,1,1,1_1,1_1_1,1_3_1,1_0_0 -7331,1,35.0,5,360.0,1,111,4,0,22,2.0,0.0,0.0,1637.1683330164287,86.89551604051776,0.0,15810.0,0,50,1,5831,201107331,,,136.0,,1.0,0.0,3.0,1.0,2.0,1.3,3006.545391303482,0.0,1200.0,0.0,0.0,15200.0,0,4,3,65.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1724.0638490569465,0.10904894680942104,0.11342525322743069,11692.307692307691,2,1,2_1,2_1_1,2_3_1,2_1_0 -7332,2,77.0,3,0.0,1,112,1,0,75,4.0,0.0,0.0,382.0059443705,48.661488982689946,0.0,17205.0,0,71,2,5832,201107332,,,,330.0,0.0,4.0,3.0,0.0,1.0,1.0,3566.7412100322836,0.0,280.0,0.0,0.0,15391.0,0,5,3,80.0,3,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,430.66743335318995,0.025031527657843066,0.02798177073310311,15391.0,4,2,4_0,4_0_0,4_0_0,4_1_0 -7333,2,79.0,3,0.0,1,111,2,86,75,2.0,0.0,0.0,1637.1683330164287,0.0,1737.9103208103552,25292.0,60,50,2,5833,201107333,,,,,0.0,2.0,4.0,0.0,2.0,1.5,3534.5963289313386,0.0,1200.0,1000.0,0.0,15402.0,5,5,1,90.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3375.078653826784,0.13344451422690115,0.21913249278189742,10268.0,2,1,2_0,2_0_0,2_3_0,2_1_0 -7334,2,53.0,3,0.0,1,300,2,46,62,5.0,0.0,902.152107716236,1186.9470414369107,135.55700502320772,0.0,84815.0,50,70,1,5835,201107334,,,540.0,,2.0,3.0,4.0,2.0,4.0,2.3,2284.995886571749,0.0,870.0,0.0,0.0,39152.0,1,1,3,90.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2224.6561541763544,0.026229513107072503,0.05682100925051988,17022.608695652176,4,2,4_0,4_1_0,4_0_0,4_1_0 -7335,2,81.0,4,0.0,2,111,2,0,77,3.0,0.0,0.0,245.5752499524643,0.0,1963.8386625157013,15399.0,0,60,1,5836,201107335,,,110.0,,0.0,3.0,5.0,0.0,1.0,1.0,2091.776651472727,0.0,180.0,1130.0,0.0,14271.0,0,5,1,91.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2209.4139124681656,0.14347775261173878,0.15481843686274022,14271.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -7336,2,89.0,3,0.0,1,222,2,0,86,4.0,3172.912018277764,0.0,341.0767360450893,130.34327406077665,0.0,14922.0,0,71,1,5838,201107336,,,200.0,,0.0,4.0,4.0,0.0,2.0,1.5,2314.440450157203,0.0,250.0,0.0,0.0,23998.0,0,5,2,64.0,1,0.0,5,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3644.33202838363,0.24422544085133563,0.15185982283455413,15998.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -7337,2,60.0,2,0.0,1,111,2,77,52,9.0,0.0,0.0,995.9440692516608,0.0,4108.41999839568,49393.0,60,31,2,5839,201107337,,,480.0,,1.0,2.0,3.0,0.0,2.0,1.5,3238.3763996107646,0.0,730.0,2364.0,0.0,45753.0,5,1,1,60.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,5104.364067647341,0.1033418514292985,0.11156348365456561,30502.0,9,5,9,9_0,9_3,9_1_0 -7338,1,42.0,4,101.0,99,400,1,0,52,4.0,0.0,0.0,723.0826804155894,57.351040586741725,0.0,23931.0,0,60,2,584,201107338,,,,189.0,1.0,0.0,4.0,1.0,2.0,1.5,7009.3916711101965,0.0,530.0,0.0,0.0,23226.0,0,1,3,70.0,0,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,780.4337210023311,0.03261183072175551,0.03360172741764966,15484.0,4,2,4_1,4_0_1,4_1_1,4_0_0 -7339,2,66.0,2,0.0,5,400,2,78,77,6.0,2585.923294896378,0.0,566.1873818348482,104.27461924862132,0.0,24713.0,70,70,1,5840,201107339,,,457.0,,0.0,2.0,5.0,0.0,2.0,1.5,2136.770033942054,0.0,415.0,0.0,0.0,28603.0,5,5,1,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3256.385295979848,0.1317681097389976,0.1138476836688406,19068.666666666668,5,3,5,5_1,5_0,5_0_0 -7340,2,61.0,2,0.0,7,111,2,0,75,9.0,0.0,0.0,1146.0178331115,0.0,0.0,23155.0,0,31,2,5841,201107340,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3376.4456103907864,0.0,840.0,0.0,0.0,32201.0,0,5,1,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1146.0178331115,0.049493320367587995,0.035589510670833206,32201.0,9,5,9,9_0,9_4,9_0_0 -7341,2,41.0,3,0.0,2,111,2,47,34,7.0,0.0,0.0,450.22129157951787,0.0,1303.4327406077664,64356.0,31,10,2,5842,201107341,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2499.3436068342644,0.0,330.0,750.0,0.0,49465.0,1,1,2,83.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1753.6540321872842,0.0272492701875083,0.03545242155437752,23554.761904761905,7,4,7,7_0,7_3,7_0_1 -7342,1,48.0,4,494.0,4,111,1,85,21,1.0,0.0,0.0,613.9381248811608,0.0,782.0596443646599,16077.0,50,50,2,5845,201107342,,,,,1.0,0.0,4.0,4.0,6.0,3.1,1859.109111570612,0.0,450.0,450.0,0.0,23478.0,6,4,3,68.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1395.9977692458206,0.0868319816660957,0.059459824910376546,7573.548387096774,1,1,1_1,1_0_1,1_4_1,1_0_1 -7343,1,21.0,2,175.0,99,111,4,0,84,2.0,0.0,0.0,409.2920832541072,0.0,0.0,9294.0,0,31,2,5846,201107343,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3414.0233061131066,0.0,300.0,0.0,0.0,9528.0,0,3,3,20.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,409.2920832541072,0.04403831324016647,0.04295676776386515,9528.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -7344,1,41.0,3,39.0,1,111,1,0,45,4.0,0.0,0.0,341.0767360450893,0.0,0.0,25455.0,0,60,2,5849,201107344,552.0,552.0,,351.0,1.0,1.0,3.0,1.0,2.0,1.3,4017.642779982278,0.0,250.0,0.0,552.0,20109.0,0,1,3,60.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,341.0767360450893,0.01339920393027261,0.016961397187582144,15468.461538461537,4,2,4_1,4_0_1,4_3_1,4_1_0 -7345,2,21.0,2,0.0,1,111,4,0,43,3.0,0.0,0.0,581.1947582208322,0.0,0.0,16805.0,0,33,2,585,201107345,,,,480.0,1.0,0.0,2.0,0.0,1.0,1.0,3593.1566299283477,0.0,426.0,0.0,0.0,14535.0,0,1,3,50.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,581.1947582208322,0.034584633039026015,0.03998587947855743,14535.0,3,2,3_0,3_0_0,3_2_0,3_1_0 -7346,1,41.0,3,122.0,4,111,6,22,54,4.0,0.0,0.0,709.4396109737858,0.0,479.663248543658,45365.0,50,50,1,5850,201107346,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.3,1798.1507864742719,0.0,520.0,276.0,0.0,35213.0,1,1,2,130.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1189.102859517444,0.026211900353079333,0.03376885978239411,15310.000000000002,4,2,4_1,4_1_1,4_3_1,4_0_1 -7347,2,25.0,2,0.0,8,111,6,84,54,5.0,158.64560091388822,0.0,477.50743046312505,52.13730962431066,0.0,26051.0,10,20,2,5851,201107347,,,70.0,400.0,1.0,0.0,2.0,0.0,2.0,1.5,3940.1697219218718,0.0,350.0,0.0,0.0,25540.0,3,1,3,47.0,4,3.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,688.2903410013239,0.0264208798511122,0.026949504346175563,17026.666666666668,4,2,4_0,4_0_0,4_1_0,4_0_0 -7348,1,52.0,4,351.0,2,111,1,0,35,1.0,0.0,0.0,354.7198054868929,0.0,243.30744491344973,14457.0,0,71,2,5852,201107348,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3237.6523764480535,0.0,260.0,140.0,0.0,13616.0,0,4,3,42.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,598.0272504003426,0.04136593002700025,0.043920920270295434,9077.333333333334,1,1,1_1,1_0_1,1_4_1,1_0_1 -7349,2,25.0,2,0.0,1,111,1,0,54,3.0,0.0,0.0,286.504458277875,0.0,156.41192887293198,27375.0,0,43,2,5853,201107349,,,,550.0,1.0,1.0,2.0,0.0,3.0,2.0,3652.1468697018404,0.0,210.0,90.0,0.0,26766.0,0,1,3,25.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,442.916387150807,0.01617959405117103,0.016547724245341365,13383.0,3,2,3_0,3_0_0,3_4_0,3_1_0 -7350,2,66.0,3,0.0,8,112,3,86,72,7.0,0.0,555.170527825376,804.9410970664107,0.0,1390.3282566482842,30862.0,70,60,1,5854,201107350,,,,,0.0,4.0,5.0,0.0,2.0,1.5,1953.5050216087957,0.0,590.0,800.0,0.0,36503.0,5,5,1,150.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2750.439881540071,0.08912059754844374,0.0753483242895124,24335.333333333332,7,4,7,7_1,7_0,7_0_0 -7351,2,65.0,3,0.0,1,111,4,0,74,7.0,0.0,0.0,545.7227776721429,0.0,0.0,12502.0,0,20,2,5855,201107351,,,,,0.0,2.0,1.0,0.0,1.0,1.0,2736.9749999924193,0.0,400.0,0.0,0.0,23121.0,0,5,1,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,545.7227776721429,0.043650838079678685,0.023602905482987022,23121.0,7,4,7,7_0,7_4,7_1_0 -7352,2,54.0,3,0.0,5,111,2,0,46,10.0,0.0,0.0,605.7522832160786,0.0,1101.8351433937653,16283.0,0,30,2,5857,201107352,,,228.0,,1.0,2.0,3.0,0.0,1.0,1.0,1987.0347438453014,0.0,444.0,634.0,0.0,49000.0,0,1,2,95.0,6,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1707.587426609844,0.10486933775163323,0.03484872299203763,49000.0,10,5,10,10_0,10_2,10_0_0 -7353,2,44.0,3,0.0,3,111,2,0,43,1.0,0.0,0.0,477.50743046312505,0.0,2172.387901012944,35748.0,0,10,1,586,201107353,,,280.0,,1.0,0.0,5.0,1.0,2.0,1.3,3030.3985856365,0.0,350.0,1250.0,0.0,7589.0,0,1,2,90.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2649.8953314760693,0.07412709330524979,0.3491758244137659,5837.692307692308,1,1,1_0,1_1_0,1_3_0,1_0_1 -7354,2,75.0,9,0.0,2,120,6,0,72,4.0,2221.038412794435,0.0,491.1504999049286,0.0,0.0,90132.0,0,70,1,5860,201107354,,,,,2.0,1.0,5.0,1.0,3.0,2.0,3116.7221836920635,0.0,360.0,0.0,0.0,33196.0,0,5,1,100.0,0,0.0,5,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2712.1889126993633,0.030091298458919842,0.08170228077778538,16598.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -7355,2,79.0,3,0.0,99,111,1,86,74,9.0,0.0,0.0,818.5841665082144,0.0,166.8393907977941,14619.0,71,41,2,5861,201107355,,,,647.0,0.0,2.0,4.0,0.0,2.0,1.5,3085.9868921575962,0.0,600.0,96.0,0.0,49590.0,7,5,3,96.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,985.4235573060084,0.06740704270511036,0.019871416763581538,33060.0,9,5,9,9_0,9_4,9_0_0 -7356,2,40.0,2,0.0,1,111,4,55,21,7.0,0.0,0.0,0.0,0.0,0.0,15723.0,43,10,8,5862,201107356,,,,,2.0,2.0,3.0,1.0,3.0,1.8,2140.7261722764865,0.0,0.0,0.0,0.0,43480.0,1,1,3,58.0,4,4.0,4,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,24155.555555555555,7,4,7,7_0,7_2,7_1_0 -7357,2,42.0,2,0.0,8,112,2,42,65,9.0,0.0,0.0,1047.7877331305144,0.0,1711.8416659982,59569.0,20,41,1,5863,201107357,,,701.0,,2.0,0.0,6.0,2.0,4.0,2.1,2651.8166598748503,0.0,768.0,985.0,0.0,63550.0,1,1,2,129.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2759.6293991287143,0.0463266027485557,0.04342453814521974,30261.90476190476,9,5,9,9_1,9_1,9_0_0 -7358,2,36.0,4,0.0,9,112,2,52,67,5.0,0.0,0.0,2032.8173468287323,83.41969539889705,0.0,38821.0,50,41,1,5865,201107358,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1731.4859692935063,0.0,1490.0,0.0,0.0,36360.0,1,4,3,100.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2116.2370422276294,0.05451268752035315,0.05820233889514932,17314.285714285714,5,3,5,5_1,5_0,5_0_0 -7359,2,39.0,1,0.0,8,111,5,38,38,9.0,0.0,763.359475759892,914.0856526008394,0.0,1339.9288573447839,69987.0,12,10,1,5866,201107359,,,240.0,,2.0,0.0,5.0,0.0,2.0,1.5,2011.397821059268,0.0,670.0,771.0,0.0,46495.0,1,1,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3017.373985705515,0.043113349417827816,0.06489674127767535,30996.666666666668,9,5,9,9_1,9_4,9_0_0 -7360,2,39.0,3,0.0,6,400,5,0,52,5.0,0.0,574.6014962992641,362.905647151975,173.79103208103552,0.0,30676.0,0,60,1,5869,201107360,,,301.0,,1.0,2.0,4.0,0.0,1.0,1.0,2870.6589738198263,0.0,266.0,0.0,0.0,18773.0,0,1,2,92.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1111.2981755322746,0.036226958388716736,0.059196621506007276,18773.0,5,3,5,5_1,5_0,5_0_0 -7361,2,65.0,5,0.0,5,112,2,75,77,4.0,618.717843564164,0.0,2717.6994328072715,182.4805836850873,0.0,42849.0,71,50,1,5871,201107361,,,248.0,,0.0,3.0,7.0,0.0,2.0,1.5,2439.768761042952,0.0,1992.0,0.0,0.0,23200.0,5,5,1,145.0,6,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3518.897860056523,0.08212322014648003,0.15167663189898806,15466.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -7362,2,57.0,3,0.0,8,111,2,54,78,8.0,0.0,0.0,933.1859498193644,0.0,1407.7073598563877,29662.0,50,50,1,5872,201107362,,,373.0,,2.0,0.0,3.0,1.0,3.0,2.0,2300.568146177607,0.0,684.0,810.0,0.0,49458.0,1,5,2,88.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2340.893309675752,0.07891893027023639,0.04733093351279372,24729.0,7,4,7,7_1,7_2,7_0_0 -7363,2,37.0,1,0.0,8,111,2,62,52,9.0,0.0,249.82673752141918,2046.460416270536,0.0,0.0,52127.0,42,50,1,5874,201107363,,,480.0,,2.0,0.0,6.0,2.0,4.0,2.3,1566.3954536766635,0.0,1500.0,0.0,0.0,67789.0,1,1,2,140.0,7,6.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2296.287153791955,0.04405178034016834,0.03387403787918328,29473.478260869568,9,5,9,9_1,9_2,9_0_0 -7364,2,53.0,3,0.0,4,112,2,74,33,10.0,1110.5192063972174,0.0,1150.110753944041,72.99223347403492,0.0,16433.0,41,42,1,5876,201107364,,,203.0,,1.0,1.0,4.0,0.0,2.0,1.5,1950.0034415175128,0.0,843.0,0.0,0.0,68297.0,5,1,1,100.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2333.6221938152935,0.14200828782421307,0.03416873645716933,45531.333333333336,10,5,10,10_1,10_0,10_0_1 -7365,1,40.0,3,221.0,99,221,1,85,64,2.0,0.0,0.0,627.5811943229643,0.0,1147.0208117348345,24115.0,30,20,2,5877,201107365,660.0,660.0,,79.0,1.0,0.0,4.0,2.0,4.0,2.1,4416.241556759004,0.0,460.0,660.0,0.0,22268.0,6,1,3,82.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1774.602006057799,0.07358913564411358,0.0796929228515268,10603.809523809523,2,1,2_1,2_0_1,2_1_1,2_0_0 -7366,2,35.0,3,0.0,2,112,5,21,54,6.0,0.0,1138.0995820420208,105.05163470188751,173.79103208103552,0.0,44776.0,50,50,1,5879,201107366,,,,,3.0,0.0,5.0,2.0,4.0,2.3,2035.702129719059,0.0,77.0,0.0,0.0,47648.0,1,1,3,85.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1416.9422488249438,0.03164512794409826,0.029737706699650434,20716.521739130436,6,3,6,6_1,6_0,6_0_1 -7367,2,64.0,2,0.0,6,111,2,0,75,7.0,0.0,0.0,1451.6225886079,0.0,0.0,22945.0,0,41,1,5880,201107367,,,,,0.0,1.0,5.0,0.0,1.0,1.0,1772.657487839401,0.0,1064.0,0.0,0.0,22302.0,0,5,1,96.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1451.6225886079,0.06326531220779691,0.06508934573616268,22302.0,7,4,7,7_1,7_3,7_0_0 -7368,2,26.0,2,0.0,1,400,4,69,69,4.0,0.0,0.0,818.5841665082144,43.44775802025888,0.0,37161.0,44,44,1,5881,201107368,,,,,2.0,0.0,8.0,0.0,2.0,1.5,2358.068255121354,0.0,600.0,0.0,0.0,24208.0,4,4,3,180.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,862.0319245284733,0.023197220864036847,0.03560938220953706,16138.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -7369,2,23.0,3,0.0,5,111,4,55,63,5.0,0.0,0.0,2319.3218051066074,0.0,0.0,21931.0,43,50,2,5882,201107369,,,,,2.0,0.0,2.0,0.0,2.0,1.5,5058.95189235021,0.0,1700.0,0.0,0.0,25160.0,4,4,2,40.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2319.3218051066074,0.10575540582310917,0.09218290163380792,16773.333333333332,4,2,4_0,4_0_0,4_4_0,4_0_0 -7370,2,70.0,2,0.0,4,400,2,0,77,6.0,4759.368027416646,0.0,458.40713324460006,97.32297796537989,0.0,23567.0,0,60,1,5883,201107370,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4239.705207816738,0.0,336.0,0.0,0.0,20087.0,0,5,5,100.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5315.098138626627,0.22553138450488508,0.26460388005310037,20087.0,6,3,6,6_1,6_0,6_0_1 -7371,1,44.0,5,259.0,1,111,4,0,22,1.0,0.0,0.0,892.2567414939537,0.0,0.0,7384.0,0,50,2,5884,201107371,,,,360.0,1.0,1.0,2.0,0.0,1.0,1.0,2837.6851772782275,0.0,654.0,0.0,0.0,8188.0,0,4,3,40.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,892.2567414939537,0.12083650345259395,0.10897126789129868,8188.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -7372,2,48.0,3,0.0,6,400,2,21,52,5.0,0.0,693.9631597817199,1360.0768499559656,1889.1085187208562,132.25592149221634,40472.0,50,50,1,5885,201107372,,,325.0,,2.0,1.0,4.0,1.0,3.0,2.0,1936.6468849572132,123.0,950.0,0.0,0.0,34889.0,1,1,1,90.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4075.4044499507577,0.10069688797071451,0.1168105835636091,17444.5,5,3,5,5_1,5_0,5_0_0 -7373,2,41.0,4,0.0,99,221,6,55,67,3.0,0.0,0.0,678.0605512576376,0.0,1357.3079605528874,29028.0,71,71,2,5886,201107373,,,317.0,,2.0,0.0,4.0,1.0,3.0,1.8,5449.566155989447,0.0,497.0,781.0,0.0,25207.0,4,1,3,100.0,1,2.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,2035.368511810525,0.07011742151751843,0.08074616224899929,14003.888888888889,3,2,3_0,3_0_0,3_1_0,3_0_0 -7374,2,50.0,3,0.0,6,111,2,0,54,3.0,1856.1535306924923,0.0,1022.9369591405632,50.3993993035003,667.7311158265557,30767.0,0,31,1,5888,201107374,,,250.0,,1.0,2.0,5.0,0.0,1.0,1.0,3151.3967791841656,621.0,513.0,0.0,0.0,14175.0,0,1,1,100.0,9,7.0,1,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3597.221004963111,0.11691815922784514,0.2537722049356692,14175.0,3,2,3_0,3_1_0,3_3_0,3_0_0 -7375,2,69.0,2,0.0,5,111,1,0,75,4.0,0.0,0.0,245.5752499524643,0.0,0.0,15553.0,0,50,2,5889,201107375,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3199.6729180229854,0.0,180.0,0.0,0.0,16350.0,0,5,1,60.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,245.5752499524643,0.015789574355588268,0.015019892963453475,16350.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -7376,2,77.0,3,0.0,1,120,2,77,78,4.0,2379.684013708323,0.0,454.31421241205896,161.62565983536302,0.0,15464.0,70,71,1,589,201107376,,,177.0,,0.0,9.0,4.0,0.0,2.0,1.5,2180.992954235251,0.0,333.0,0.0,0.0,25017.0,5,5,1,95.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2995.623885955745,0.19371597813992145,0.11974352983794001,16678.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -7377,1,22.0,2,150.0,6,111,1,84,84,2.0,0.0,0.0,300.1475277196786,0.0,0.0,16504.0,41,41,2,5891,201107377,,,,341.0,0.0,0.0,2.0,0.0,2.0,1.5,3719.32259786368,0.0,220.0,0.0,0.0,15986.0,3,3,3,40.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,300.1475277196786,0.018186350443509365,0.01877564917550848,10657.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_0 -7378,2,29.0,3,0.0,2,112,2,47,47,8.0,0.0,0.0,2182.8911106885716,0.0,0.0,62594.0,31,31,1,5893,201107378,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2853.1310746105396,0.0,1600.0,0.0,0.0,47658.0,1,1,2,75.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2182.8911106885716,0.03487380756444023,0.04580324626901195,26476.666666666664,8,4,8,8_1,8_0,8_0_1 -7379,2,47.0,2,0.0,5,111,1,0,47,6.0,0.0,0.0,395.6490138123036,79.94387475727635,0.0,30635.0,0,50,2,5895,201107379,,,,373.0,1.0,1.0,3.0,0.0,1.0,1.0,3263.7156177194192,0.0,290.0,0.0,0.0,19139.0,0,1,3,60.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,475.59288856957994,0.015524494485705238,0.02484941159776268,19139.0,5,3,5,5_0,5_2,5_0_0 -7380,2,81.0,2,0.0,2,111,2,78,72,9.0,4124.785623761094,0.0,982.3009998098572,104.27461924862132,0.0,51979.0,70,70,2,5897,201107380,,,728.0,,0.0,3.0,4.0,0.0,2.0,1.5,2844.697894213307,0.0,720.0,0.0,0.0,43730.0,6,5,5,120.0,8,6.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,5211.361242819572,0.1002589746401349,0.11917130671894745,29153.333333333332,9,5,9,9_0,9_2,9_0_1 -7381,2,47.0,3,0.0,2,211,2,0,43,6.0,0.0,0.0,1493.9161038774912,0.0,695.1641283241421,27081.0,0,12,1,5899,201107381,,,111.0,,2.0,1.0,4.0,2.0,3.0,1.8,1237.6681660008878,0.0,1095.0,400.0,0.0,37010.0,0,1,2,85.0,3,3.0,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2189.0802322016334,0.08083454201106434,0.05914834456097361,20561.11111111111,6,3,6,6_1,6_1,6_0_1 -7382,2,25.0,2,0.0,1,111,2,53,31,10.0,0.0,0.0,1227.8762497623215,0.0,0.0,87718.0,20,10,2,590,201107382,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3587.962169771111,0.0,900.0,0.0,0.0,61337.0,1,1,2,60.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1227.8762497623215,0.013997996417637446,0.020018524703887076,40891.333333333336,10,5,10,10_0,10_4,10_1_0 -7383,2,42.0,3,0.0,9,112,4,52,46,7.0,0.0,0.0,2603.0976494961214,0.0,0.0,28888.0,50,31,1,5900,201107383,,,756.0,,2.0,0.0,5.0,2.0,4.0,2.5,2579.197431214141,0.0,1908.0,0.0,0.0,60481.0,1,1,2,100.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2603.0976494961214,0.09010999894406402,0.04303992410006649,24192.4,7,4,7,7_1,7_0,7_0_0 -7384,2,43.0,3,0.0,1,400,5,11,11,8.0,0.0,138.792631956344,0.0,172.05312176022517,0.0,14370.0,43,41,5,5902,201107384,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2117.09273506288,0.0,0.0,0.0,0.0,61540.0,1,1,2,100.0,0,0.0,4,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,310.84575371656916,0.02163157645905144,0.005051117219963749,25641.666666666668,8,4,8,8_1,8_0,8_1_0 -7385,2,60.0,4,0.0,5,111,6,77,46,6.0,1427.810408224994,0.0,30.01475277196786,145.98446694806984,0.0,19012.0,50,60,1,5903,201107385,,,350.0,,1.0,2.0,4.0,0.0,2.0,1.5,1575.6750137242545,0.0,22.0,0.0,0.0,29457.0,4,1,1,115.0,7,6.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1603.8096279450317,0.08435775446796927,0.05444578972553321,19638.0,6,3,6,6_1,6_2,6_0_0 -7386,2,67.0,4,0.0,1,112,5,78,75,5.0,0.0,582.9290542166448,1653.540016346593,500.5181723933823,0.0,34578.0,70,70,1,5904,201107386,,,1380.0,,2.0,0.0,6.0,2.0,4.0,2.5,4275.560606866849,0.0,1212.0,0.0,0.0,46161.0,6,5,1,80.0,9,2.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2736.98724295662,0.07915400667929377,0.05929219997306427,18464.4,5,3,5,5_1,5_1,5_1_0 -7387,1,44.0,3,130.0,5,111,1,0,52,4.0,0.0,0.0,504.79356934673217,0.0,0.0,21077.0,0,50,2,5905,201107387,,,,405.0,2.0,1.0,2.0,1.0,2.0,1.5,3152.6095839097325,0.0,370.0,0.0,0.0,25089.0,0,1,3,50.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,504.79356934673217,0.02394997245085791,0.020120115163885854,16726.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -7388,2,54.0,3,0.0,8,111,2,0,22,1.0,0.0,0.0,425.66376658427146,0.0,140.77073598563877,20249.0,0,50,2,5906,201107388,,,,,1.0,4.0,2.0,0.0,1.0,1.0,2899.9147791964688,0.0,312.0,81.0,0.0,4130.0,0,1,2,58.0,6,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,566.4345025699103,0.027973455606198343,0.13715121127600732,4130.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -7389,2,73.0,2,0.0,4,112,2,75,72,9.0,3966.1400228472053,0.0,463.8643610213215,217.2387901012944,0.0,18617.0,50,50,1,5907,201107389,,,214.0,,0.0,2.0,5.0,0.0,2.0,1.5,2987.1635072320364,0.0,340.0,0.0,0.0,44519.0,5,5,1,97.0,5,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4647.243173969821,0.24962363291453088,0.1043878607778661,29679.333333333332,9,5,9,9_1,9_0,9_0_1 -7390,2,59.0,2,0.0,6,112,2,77,34,7.0,1586.456009138882,0.0,933.1859498193644,0.0,0.0,38869.0,44,10,1,5908,201107390,,,363.0,,1.0,0.0,4.0,1.0,3.0,2.0,1421.822656868003,0.0,684.0,0.0,0.0,48753.0,5,1,1,111.0,8,0.0,4,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2519.6419589582465,0.06482394604847684,0.051681782843276236,24376.5,7,4,7,7_1,7_0,7_0_0 -7391,2,39.0,2,0.0,8,120,2,54,46,9.0,445.7941385680259,345.59365357129656,818.5841665082144,0.0,0.0,82324.0,43,50,1,5910,201107391,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1751.082526710062,0.0,600.0,0.0,0.0,60495.0,1,1,2,120.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1609.971958647537,0.019556532222043836,0.026613306201298238,33608.333333333336,9,5,9,9_1,9_0,9_0_0 -7392,2,40.0,2,0.0,4,111,2,52,52,6.0,0.0,0.0,1514.3807080401966,0.0,2241.904313845358,64896.0,42,60,1,5911,201107392,,,400.0,,2.0,0.0,4.0,1.0,3.0,1.8,3226.7093436448245,0.0,1110.0,1290.0,0.0,34850.0,1,1,2,86.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3756.2850218855547,0.0578816109141635,0.10778436217749081,19361.11111111111,6,3,6,6_1,6_4,6_0_1 -7393,2,61.0,4,0.0,5,111,1,0,74,8.0,0.0,0.0,477.50743046312505,0.0,0.0,50537.0,0,30,2,5912,201107393,,,,,1.0,2.0,3.0,1.0,2.0,1.5,3385.064790578418,0.0,350.0,0.0,0.0,39564.0,0,5,2,83.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,477.50743046312505,0.009448669894594556,0.012069240482841094,26376.0,8,4,8,8_0,8_3,8_0_0 -7394,2,43.0,4,0.0,3,112,2,0,67,6.0,0.0,0.0,305.6047554964,0.0,863.7414294427466,18105.0,0,71,1,5913,201107394,,,,,1.0,3.0,4.0,1.0,2.0,1.5,2613.967580537325,0.0,224.0,497.0,0.0,30366.0,0,1,1,70.0,8,1.0,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1169.3461849391465,0.06458691990826548,0.038508403640227444,20244.0,6,3,6,6_1,6_1,6_0_1 -7395,1,23.0,3,211.0,7,111,4,0,84,1.0,0.0,0.0,695.7965415319821,0.0,0.0,9620.0,0,41,8,5914,201107395,,,,125.0,0.0,0.0,1.0,0.0,1.0,1.0,3410.804916248127,0.0,510.0,0.0,0.0,4553.0,0,3,3,22.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,695.7965415319821,0.07232812282037236,0.15282155535514652,4553.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -7396,2,55.0,2,0.0,6,112,2,35,34,10.0,0.0,0.0,2251.1064578975893,0.0,0.0,68915.0,30,10,1,5915,201107396,,,280.0,,2.0,2.0,6.0,1.0,3.0,2.0,2055.4074759043187,0.0,1650.0,0.0,0.0,87196.0,1,1,1,140.0,9,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2251.1064578975893,0.03266497073057519,0.025816625279801702,43598.0,10,5,10,10_1,10_0,10_0_0 -7397,1,63.0,5,197.0,1,111,4,0,77,2.0,0.0,0.0,627.5811943229643,0.0,0.0,6840.0,0,70,2,5916,201107397,,,,218.0,0.0,3.0,2.0,0.0,1.0,1.0,2795.5857340760485,0.0,460.0,0.0,0.0,11674.0,0,5,3,38.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,627.5811943229643,0.0917516365969246,0.053758882501538825,11674.0,2,1,2_1,2_0_1,2_4_1,2_1_0 -7398,2,68.0,3,0.0,2,300,2,71,71,3.0,3606.014508772679,0.0,469.3215887980429,180.74267336427695,0.0,22459.0,70,71,1,5918,201107398,,,139.0,,0.0,3.0,3.0,0.0,2.0,1.5,2155.043684211465,0.0,344.0,0.0,0.0,21429.0,5,5,3,70.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4256.078770934999,0.18950437557037264,0.19861303704955896,14286.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -7399,2,53.0,1,0.0,4,400,6,0,42,7.0,0.0,0.0,1732.6698191090536,104.27461924862132,0.0,16512.0,0,20,1,5919,201107399,,,180.0,,1.0,1.0,4.0,0.0,1.0,1.0,2025.1948372976692,0.0,1270.0,0.0,0.0,23860.0,0,1,3,54.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1836.944438357675,0.11124905755557624,0.07698845089512468,23860.0,7,4,7,7_1,7_0,7_0_1 -7400,2,77.0,3,0.0,4,111,2,77,78,7.0,2379.684013708323,0.0,600.2950554393572,156.41192887293198,0.0,21024.0,71,70,1,592,201107400,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2294.065756292632,0.0,440.0,0.0,0.0,35504.0,5,5,1,85.0,4,4.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3136.390998020612,0.14918145919047812,0.08833908849765132,23669.333333333332,7,4,7,7_1,7_2,7_0_1 -7401,2,50.0,2,0.0,6,112,4,62,43,10.0,0.0,0.0,4695.866054081117,140.77073598563877,5476.255350893153,48711.0,50,33,1,5921,201107401,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1379.6457180097689,5093.0,1500.0,0.0,0.0,63806.0,1,1,1,100.0,7,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,10312.89214095991,0.21171587815811438,0.1616288772366221,42537.333333333336,10,5,10,10_1,10_0,10_0_0 -7402,2,29.0,3,0.0,1,221,2,0,47,7.0,0.0,0.0,743.5472845782947,0.0,523.1110065639169,27280.0,0,31,2,5922,201107402,,,,438.0,1.0,0.0,3.0,0.0,1.0,1.0,5432.7408419802805,0.0,545.0,301.0,0.0,24490.0,0,1,3,60.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1266.6582911422115,0.04643175554040365,0.05172144920956356,24490.0,7,4,7,7_0,7_1,7_1_0 -7403,2,47.0,1,0.0,5,111,1,0,48,8.0,0.0,0.0,409.2920832541072,0.0,0.0,22775.0,0,50,2,5926,201107403,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2645.553792849221,0.0,300.0,0.0,0.0,28585.0,0,1,3,42.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,409.2920832541072,0.0179711123272934,0.01431842166360354,28585.0,8,4,8,8_0,8_3,8_0_0 -7404,2,87.0,4,0.0,99,111,2,0,78,3.0,0.0,0.0,328.7979735474661,0.0,1126.1658878851101,11378.0,0,71,2,5927,201107404,,,82.0,,0.0,1.0,3.0,0.0,1.0,1.0,3875.1449269346617,0.0,241.0,648.0,0.0,13192.0,0,5,1,62.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1454.9638614325763,0.12787518557150435,0.11029137821653853,13192.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -7405,2,86.0,4,0.0,4,111,1,0,86,5.0,0.0,0.0,105.05163470188751,0.0,312.82385774586396,15655.0,0,70,2,5928,201107405,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3140.2980350108764,0.0,77.0,180.0,0.0,17704.0,0,6,1,105.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,417.87549244775147,0.026692781376413382,0.023603450770885194,17704.0,5,3,5,5_0,5_2,5_0_1 -7406,2,26.0,2,0.0,1,111,6,0,34,7.0,0.0,0.0,409.2920832541072,0.0,312.82385774586396,11840.0,0,20,2,593,201107406,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3010.278760333325,0.0,300.0,180.0,0.0,24316.0,0,1,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,722.1159409999711,0.06098952204391648,0.029697151710806512,24316.0,7,4,7,7_0,7_4,7_1_0 -7407,1,50.0,3,248.0,7,111,1,0,56,2.0,0.0,0.0,436.5782221377143,0.0,0.0,27774.0,0,60,2,5931,201107407,,,,373.0,1.0,0.0,4.0,2.0,3.0,2.0,3099.3718954770607,0.0,320.0,0.0,0.0,22995.0,0,1,3,85.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,436.5782221377143,0.01571895377467107,0.018985789177547913,11497.5,2,1,2_1,2_0_1,2_4_1,2_0_0 -7408,2,72.0,3,0.0,1,300,2,72,72,5.0,0.0,624.566843803548,1195.9684782264026,3724.3418174965914,723.6441883273301,35127.0,70,70,1,5933,201107408,,,667.0,,0.0,2.0,9.0,0.0,2.0,1.5,2302.3323487131347,673.0,620.0,0.0,0.0,27186.0,5,5,1,180.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6268.521327853872,0.1784530796211994,0.2305790233154518,18124.0,5,3,5,5_1,5_0,5_1_0 -7409,2,82.0,4,0.0,2,221,2,0,86,1.0,0.0,0.0,338.3481221567286,0.0,1821.3300162092523,10151.0,0,71,1,5934,201107409,,,223.0,,0.0,0.0,4.0,0.0,1.0,1.0,4117.366428161898,0.0,248.0,1048.0,0.0,7950.0,0,5,1,75.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2159.678138365981,0.21275521016313476,0.271657627467419,7950.0,1,1,1_0,1_1_0,1_1_0,1_0_1 -7410,1,25.0,3,310.0,2,111,1,84,84,2.0,0.0,0.0,1357.4854094594555,46.92357866187959,0.0,18936.0,41,20,8,5936,201107410,960.0,960.0,,90.0,0.0,0.0,2.0,0.0,2.0,1.5,3559.5500270718294,0.0,995.0,0.0,0.0,16569.0,3,3,3,55.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1404.4089881213351,0.07416608513526274,0.08476124015458598,11046.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -7411,2,35.0,2,0.0,3,111,2,46,47,8.0,0.0,0.0,1023.230208135268,0.0,2971.8266485857075,46273.0,10,20,1,5942,201107411,,,300.0,,2.0,0.0,7.0,2.0,4.0,2.1,1982.022484697379,0.0,750.0,1710.0,0.0,55239.0,1,1,1,122.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3995.0568567209757,0.08633667271888522,0.0723231205619395,26304.285714285714,8,4,8,8_1,8_3,8_0_1 -7412,2,48.0,2,0.0,7,111,6,43,21,8.0,0.0,0.0,2865.0445827787503,0.0,0.0,48350.0,31,50,1,5943,201107412,,,850.0,,2.0,0.0,7.0,2.0,4.0,2.5,2596.207395260772,0.0,2100.0,0.0,0.0,62683.0,1,1,1,160.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2865.0445827787503,0.05925635124671665,0.04570688356936889,25073.2,8,4,8,8_1,8_4,8_0_0 -7413,2,67.0,3,0.0,3,111,2,78,75,5.0,0.0,0.0,12.278762497623216,0.0,33.02029609539675,16769.0,70,71,2,5945,201107413,,,,,0.0,1.0,3.0,0.0,2.0,1.5,3746.46153545456,0.0,9.0,19.0,0.0,26331.0,5,5,3,60.0,8,6.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,45.299058593019964,0.002701357182480766,0.0017203698527598634,17554.0,5,3,5,5_0,5_2,5_0_1 -7414,2,32.0,3,0.0,99,111,2,85,37,8.0,0.0,0.0,671.2390165367358,0.0,2822.3663609960167,71307.0,12,12,1,5946,201107414,,,364.0,,1.0,0.0,5.0,3.0,5.0,2.4,1330.9638346738266,0.0,492.0,1624.0,0.0,67310.0,6,1,3,107.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3493.6053775327528,0.04899386284001224,0.0519032146416989,28045.833333333336,8,4,8,8_1,8_3,8_0_0 -7415,2,63.0,3,0.0,4,112,2,55,13,4.0,3172.912018277764,0.0,1091.4455553442858,0.0,0.0,38483.0,41,44,1,5947,201107415,,,360.0,,2.0,2.0,6.0,0.0,2.0,1.5,1951.3314130969552,0.0,800.0,0.0,0.0,24879.0,1,1,1,165.0,10,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4264.35757362205,0.1108114641171959,0.17140389781028378,16586.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -7416,2,50.0,2,0.0,9,112,4,52,65,8.0,0.0,0.0,1079.1667928466625,187.69431464751835,0.0,30665.0,71,50,1,5950,201107416,,,600.0,,2.0,1.0,4.0,0.0,2.0,1.5,3453.81541743408,0.0,791.0,0.0,0.0,40318.0,1,1,2,110.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1266.861107494181,0.04131293355598177,0.03142172497381271,26878.666666666668,8,4,8,8_1,8_0,8_0_0 -7417,2,67.0,3,0.0,2,120,5,0,71,7.0,0.0,97.1548423694408,1489.8231830449502,139.0328256648284,0.0,24672.0,0,42,1,5952,201107417,,,,,0.0,2.0,6.0,0.0,1.0,1.0,1994.3202868700766,0.0,1092.0,0.0,0.0,22245.0,0,5,1,116.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1726.0108510792193,0.06995828676553256,0.07759095756705864,22245.0,7,4,7,7_1,7_0,7_0_1 -7418,1,42.0,5,240.0,5,111,2,0,55,1.0,0.0,0.0,163.71683330164288,0.0,834.1969539889706,5242.0,0,50,2,5954,201107418,,,267.0,,1.0,0.0,1.0,0.0,1.0,1.0,2319.8548606358395,0.0,120.0,480.0,0.0,8455.0,0,4,3,45.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,997.9137872906134,0.19036890257356226,0.11802646804146817,8455.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -7419,2,82.0,2,0.0,2,112,1,0,77,6.0,0.0,0.0,272.86138883607146,0.0,1195.6823007175244,29601.0,0,70,2,5955,201107419,620.0,620.0,350.0,256.0,0.0,3.0,3.0,0.0,1.0,1.0,2854.651395247617,0.0,200.0,688.0,0.0,21385.0,0,5,3,55.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1468.5436895535959,0.049611286427944865,0.06867167124403067,21385.0,6,3,6,6_0,6_2,6_0_1 -7420,2,49.0,1,0.0,9,111,2,34,31,10.0,0.0,0.0,795.3909484571483,0.0,5203.303500506204,95306.0,20,10,1,5956,201107420,,,932.0,,2.0,2.0,8.0,1.0,3.0,1.8,1420.3152957195437,0.0,583.0,2994.0,0.0,144462.0,1,1,2,250.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5998.694448963352,0.06294141448558697,0.04152437629939605,80256.66666666667,10,5,10,10_1,10_3,10_0_0 -7421,2,52.0,3,0.0,7,300,2,0,63,7.0,0.0,0.0,1227.8762497623215,1180.041107830231,0.0,18638.0,0,50,1,5958,201107421,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1505.422561686407,0.0,900.0,0.0,0.0,22769.0,0,1,2,75.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2407.9173575925524,0.1291939777654551,0.10575419902466303,22769.0,7,4,7,7_1,7_0,7_0_0 -7422,2,77.0,4,0.0,1,111,2,0,78,6.0,0.0,0.0,222.6478721741466,0.0,460.2075967371431,11364.0,0,71,2,5959,201107422,,,178.0,,0.0,1.0,2.0,0.0,1.0,1.0,4697.973529702731,428.0,0.0,0.0,0.0,20422.0,0,5,1,35.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,682.8554689112897,0.06008935840472454,0.03343724752283271,20422.0,6,3,6,6_0,6_3,6_1_0 -7423,2,75.0,3,0.0,2,111,2,0,75,7.0,0.0,0.0,1227.8762497623215,97.32297796537989,0.0,15360.0,0,42,2,596,201107423,,,420.0,350.0,0.0,3.0,2.0,0.0,1.0,1.0,3252.914852936401,0.0,900.0,0.0,0.0,23920.0,0,5,3,65.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1325.1992277277013,0.08627599138852222,0.055401305507010924,23920.0,7,4,7,7_0,7_3,7_0_1 -7424,2,47.0,3,0.0,2,300,2,0,52,7.0,1219.9846710278005,0.0,575.7375304441108,45.18566834106924,0.0,33712.0,0,50,1,5960,201107424,,,91.0,,1.0,3.0,4.0,0.0,1.0,1.0,999.83510915517,0.0,422.0,0.0,0.0,22077.0,0,1,3,70.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1840.9078698129806,0.05460690169117764,0.08338578021529106,22077.0,7,4,7,7_1,7_0,7_0_1 -7425,2,64.0,2,0.0,99,112,2,77,77,4.0,2698.5616715452384,0.0,972.250357755251,191.17013528913907,44.08530716407212,21570.0,70,41,1,5962,201107425,,,380.0,,0.0,4.0,3.0,0.0,2.0,1.5,1837.4254828530798,41.0,697.0,0.0,0.0,22445.0,5,5,1,66.0,10,0.0,3,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3906.067471753701,0.18108796809242933,0.17402840150384052,14963.333333333334,4,2,4_0,4_1_0,4_0_0,4_0_0 -7426,2,28.0,4,0.0,4,112,1,43,47,4.0,0.0,0.0,1064.1594164606786,0.0,0.0,34004.0,33,31,8,5963,201107426,,,,500.0,2.0,0.0,4.0,0.0,2.0,1.5,6319.858804684103,0.0,780.0,0.0,0.0,24327.0,1,1,3,80.0,9,3.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1064.1594164606786,0.031295124587127354,0.04374396417399098,16218.0,4,2,4_0,4_0_0,4_1_0,4_0_1 -7427,2,64.0,3,0.0,5,211,2,77,78,4.0,0.0,0.0,422.93515269591074,0.0,2493.90131036286,19914.0,71,70,1,5965,201107427,,,300.0,,0.0,3.0,3.0,0.0,2.0,1.5,1760.3929512827913,0.0,310.0,1435.0,0.0,22050.0,5,5,3,100.0,3,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2916.8364630587707,0.14647165125332784,0.132282832791781,14700.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -7428,2,25.0,2,0.0,5,111,1,0,38,9.0,0.0,0.0,204.6460416270536,0.0,0.0,22459.0,0,12,2,5966,201107428,,,,412.0,1.0,0.0,1.0,0.0,1.0,1.0,3398.4733498464966,0.0,150.0,0.0,0.0,33358.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,204.6460416270536,0.009111983687032085,0.006134841466126674,33358.0,9,5,9,9_0,9_4,9_0_0 -7429,1,31.0,4,246.0,8,111,2,0,85,5.0,0.0,0.0,409.2920832541072,0.0,1334.7151263823528,13211.0,0,50,2,5968,201107429,,,,90.0,0.0,0.0,2.0,0.0,1.0,1.0,2918.646954501131,0.0,300.0,768.0,0.0,17206.0,0,7,3,55.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1744.00720963646,0.13201174851536296,0.10136040971965941,17206.0,5,3,5,5_0,5_2,5_0_0 -7430,2,41.0,4,0.0,9,112,5,69,67,4.0,0.0,832.755791738064,1210.140259487977,52.13730962431066,0.0,29485.0,60,50,1,5969,201107430,,,585.0,,2.0,0.0,5.0,2.0,4.0,2.3,2433.307099669563,0.0,887.0,0.0,0.0,34675.0,1,1,2,100.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2095.0333608503515,0.07105420928778537,0.060419130810392255,15076.08695652174,4,2,4_0,4_1_0,4_0_0,4_0_0 -7431,2,59.0,3,0.0,5,400,2,56,78,4.0,225.27675329772126,299.79208502570305,843.1416915034608,43.44775802025888,0.0,28704.0,70,50,1,597,201107431,,,164.0,,1.0,3.0,6.0,0.0,2.0,1.5,1430.4643339845163,0.0,618.0,0.0,0.0,24712.0,1,5,1,144.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1411.658287847144,0.0491798455911073,0.05712440465551732,16474.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0 -7432,2,61.0,2,0.0,6,112,2,78,75,7.0,0.0,0.0,1077.8024859024822,0.0,1715.3174866398206,37203.0,71,60,1,5971,201107432,,,720.0,,0.0,2.0,6.0,0.0,2.0,1.5,2491.841612236552,0.0,790.0,987.0,0.0,35845.0,5,5,1,120.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2793.119972542303,0.07507781556708606,0.07792216411053991,23896.666666666668,7,4,7,7_1,7_0,7_0_0 -7433,2,34.0,2,0.0,1,111,2,43,33,9.0,0.0,0.0,560.7301540581268,0.0,1525.885261671492,41033.0,20,10,1,5972,201107433,,,202.0,,2.0,0.0,5.0,0.0,2.0,1.5,1439.2524221018605,0.0,411.0,878.0,0.0,49492.0,1,1,2,100.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2086.6154157296187,0.05085212915774179,0.042160660626558204,32994.666666666664,9,5,9,9_1,9_2,9_1_0 -7434,2,41.0,2,0.0,2,111,4,0,54,6.0,0.0,0.0,1159.6609025533037,0.0,0.0,38675.0,0,31,2,5973,201107434,,,,,1.0,0.0,3.0,1.0,2.0,1.5,4425.999709778286,0.0,850.0,0.0,0.0,28720.0,0,1,2,66.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1159.6609025533037,0.029984768003963897,0.04037816513068606,19146.666666666668,5,3,5,5_0,5_4,5_0_1 -7435,0,90.0,2,0.0,9,211,7,0,78,6.0,0.0,0.0,1255.1623886459286,0.0,0.0,9403.0,0,70,1,5974,201107435,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4597.860069073002,0.0,920.0,0.0,0.0,19746.0,0,5,5,62.0,3,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1255.1623886459286,0.133485311990421,0.0635654000124546,19746.0,6,3,6,6_1,6_1,6_0_0 -7436,1,44.0,3,362.0,7,111,2,0,68,2.0,0.0,0.0,532.0797082303393,0.0,1617.9945086744408,26049.0,0,71,1,5975,201107436,,,401.0,,1.0,2.0,5.0,2.0,3.0,1.8,1577.1758213988385,0.0,390.0,931.0,0.0,17496.0,0,1,3,90.0,7,5.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2150.07421690478,0.08253960677587546,0.12288947284549497,9720.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -7437,0,73.0,4,0.0,1,111,2,0,77,1.0,0.0,0.0,900.4425831590357,173.79103208103552,0.0,10264.0,0,70,2,5976,201107437,,,130.0,,0.0,2.0,2.0,0.0,1.0,1.0,3943.7653282163205,0.0,660.0,0.0,0.0,8740.0,0,5,5,35.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1074.2336152400712,0.10466032884256345,0.12291002462701044,8740.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -7438,2,62.0,3,0.0,8,111,4,72,72,7.0,0.0,0.0,1550.9237465383612,0.0,667.7311158265557,45500.0,50,50,2,5977,201107438,,,,885.0,0.0,2.0,3.0,0.0,2.0,1.5,4328.1106136294775,621.0,900.0,0.0,0.0,34549.0,4,4,3,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2218.654862364917,0.04876164532670147,0.06421762894338236,23032.666666666668,7,4,7,7_0,7_4,7_0_0 -7439,1,76.0,4,210.0,4,111,1,0,77,2.0,0.0,0.0,177.35990274344644,0.0,1513.7198894258195,11385.0,0,60,2,5979,201107439,765.0,765.0,,199.0,0.0,0.0,2.0,0.0,1.0,1.0,3165.448791918184,0.0,130.0,871.0,0.0,10280.0,0,5,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1691.0797921692658,0.14853577445492014,0.16450192530829433,10280.0,2,1,2_1,2_0_1,2_4_1,2_0_1 -7440,1,86.0,3,107.0,4,111,1,0,77,3.0,0.0,0.0,300.1475277196786,99.06088828619025,0.0,11864.0,0,60,2,598,201107440,,,,221.0,0.0,2.0,3.0,0.0,1.0,1.0,3704.8526995589827,0.0,220.0,0.0,0.0,14422.0,0,5,3,55.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,399.2084160058688,0.033648720162328796,0.027680516988342032,14422.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -7441,2,83.0,3,0.0,1,111,6,86,75,4.0,1221.5711270369393,0.0,382.0059443705,0.0,0.0,19267.0,70,70,1,5980,201107441,,,225.0,,0.0,2.0,4.0,0.0,2.0,1.5,1619.4836067866224,0.0,280.0,0.0,0.0,24804.0,6,5,1,110.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1603.5770714074392,0.08322920389305233,0.064649938373143,16536.0,4,2,4_0,4_1_0,4_3_0,4_1_0 -7442,2,58.0,2,0.0,4,111,2,0,77,7.0,0.0,0.0,319.2478249382036,0.0,688.2124870409007,20415.0,0,50,1,5981,201107442,,,280.0,,0.0,1.0,3.0,0.0,1.0,1.0,1723.7136837408123,0.0,234.0,396.0,0.0,21641.0,0,5,1,95.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1007.4603119791043,0.04934902336414912,0.04655331601955105,21641.0,6,3,6,6_1,6_2,6_0_1 -7443,2,54.0,4,0.0,1,112,5,69,47,1.0,0.0,316.4472008604643,1809.0710079831538,0.0,0.0,18695.0,50,20,1,5983,201107443,,,650.0,,2.0,1.0,5.0,2.0,4.0,2.5,1000.6204459628108,0.0,1326.0,0.0,0.0,22585.0,1,1,1,100.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2125.518208843618,0.11369447493145858,0.09411194194569927,9034.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -7444,2,41.0,2,0.0,8,300,5,52,38,7.0,0.0,0.0,278.3186166127929,187.69431464751835,0.0,33344.0,50,50,1,5984,201107444,,,84.0,,2.0,0.0,5.0,2.0,4.0,2.1,1912.21920084216,0.0,204.0,0.0,0.0,45360.0,1,1,2,150.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,466.01293126031123,0.013975915644803,0.010273653687396632,21600.0,6,3,6,6_1,6_0,6_0_0 -7445,2,35.0,1,0.0,8,120,2,85,38,7.0,0.0,0.0,750.3688192991965,208.54923849724264,0.0,56736.0,43,31,1,5985,201107445,,,240.0,,1.0,0.0,6.0,4.0,6.0,2.7,2001.122813249662,0.0,550.0,0.0,0.0,59034.0,6,1,2,130.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,958.9180577964391,0.016901404007974463,0.016243487783250993,21864.44444444444,7,4,7,7_1,7_0,7_0_0 -7446,2,47.0,3,0.0,5,111,1,0,46,5.0,0.0,0.0,615.3024318253412,0.0,0.0,26332.0,0,60,8,5987,201107446,,,,357.0,1.0,0.0,3.0,1.0,2.0,1.3,3121.67399229697,0.0,451.0,0.0,0.0,22751.0,0,1,3,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,615.3024318253412,0.02336709827682444,0.027045071945204217,17500.76923076923,5,3,5,5_0,5_4,5_0_0 -7447,2,67.0,2,0.0,8,112,4,77,75,9.0,0.0,0.0,1660.3615510674947,111.22626053186274,0.0,47774.0,70,60,1,5988,201107447,,,466.0,,0.0,3.0,3.0,0.0,2.0,1.5,1415.7991900415752,0.0,1217.0,0.0,0.0,45479.0,5,5,1,105.0,6,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1771.5878115993573,0.037082677012587544,0.038953974616842,30319.333333333332,9,5,9,9_1,9_0,9_0_0 -7448,2,57.0,3,0.0,1,400,4,78,63,4.0,0.0,0.0,2046.460416270536,177.26685272265624,0.0,23855.0,70,70,1,5989,201107448,,,290.0,,1.0,5.0,5.0,0.0,2.0,1.5,1449.154629983816,0.0,1500.0,0.0,0.0,24009.0,5,1,1,90.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2223.727268993192,0.09321849796659785,0.092620570160906,16006.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -7449,2,41.0,2,0.0,1,111,1,43,38,8.0,0.0,0.0,272.86138883607146,0.0,0.0,54620.0,50,20,2,599,201107449,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3193.9960944203585,0.0,200.0,0.0,0.0,59583.0,1,1,2,45.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,272.86138883607146,0.004995631432370404,0.0045795174602834944,28372.85714285714,8,4,8,8_0,8_4,8_1_0 -7450,2,76.0,2,0.0,4,111,2,78,74,5.0,1269.1648073111057,0.0,638.4956498764072,208.54923849724264,0.0,25299.0,71,70,1,5993,201107450,,,,,0.0,1.0,5.0,0.0,3.0,2.0,2563.620351250101,0.0,468.0,0.0,0.0,36190.0,5,5,1,100.0,10,8.0,5,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2116.2096956847554,0.08364795824675898,0.05847498468319302,18095.0,5,3,5,5_1,5_4,5_0_1 -7451,2,45.0,3,0.0,8,112,6,56,38,6.0,0.0,0.0,2223.8203190139825,0.0,0.0,55192.0,41,50,1,5995,201107451,,,648.0,,2.0,0.0,4.0,1.0,3.0,1.8,2474.181060108843,0.0,1630.0,0.0,0.0,38744.0,1,1,2,110.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2223.8203190139825,0.04029243946611796,0.05739779885953909,21524.444444444445,6,3,6,6_1,6_0,6_0_0 -7452,2,41.0,4,0.0,4,111,1,85,22,5.0,0.0,0.0,613.9381248811608,0.0,161.62565983536302,22741.0,50,71,2,5996,201107452,,,,,1.0,0.0,4.0,2.0,4.0,2.1,3549.9513447228064,0.0,450.0,93.0,0.0,38540.0,6,1,3,82.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,775.5637847165237,0.03410420758614501,0.020123606245888007,18352.38095238095,5,3,5,5_0,5_4,5_0_1 -7453,2,75.0,3,0.0,3,211,2,0,72,2.0,0.0,41.637789586903196,4365.782221377143,243.30744491344973,0.0,17104.0,0,70,1,5997,201107453,,,230.0,,0.0,4.0,8.0,0.0,1.0,1.0,1927.567079402621,0.0,3200.0,0.0,0.0,9921.0,0,5,5,240.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4650.727455877497,0.27190876145214554,0.4687760765928331,9921.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -7454,2,24.0,2,0.0,9,111,4,0,46,7.0,0.0,0.0,709.4396109737858,0.0,0.0,15025.0,0,20,2,5998,201107454,,,,407.0,1.0,0.0,3.0,0.0,1.0,1.0,2508.250469929492,0.0,520.0,0.0,0.0,21574.0,0,1,3,48.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,709.4396109737858,0.04721727860058474,0.03288400903744256,21574.0,6,3,6,6_0,6_2,6_0_0 -7455,2,51.0,2,0.0,7,400,4,54,47,9.0,0.0,277.585263912688,2660.3985411516965,0.0,0.0,68431.0,60,60,1,6,201107455,,,320.0,,3.0,1.0,6.0,1.0,3.0,2.0,2524.4531302948108,0.0,1950.0,0.0,0.0,64821.0,1,1,2,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2937.9838050643843,0.04293352143128676,0.04532456773367249,32410.5,9,5,9,9_1,9_0,9_0_0 -7456,2,53.0,3,0.0,2,221,2,43,37,10.0,2173.4447325202686,0.0,1227.8762497623215,0.0,0.0,75604.0,33,20,1,60,201107456,,,429.0,,2.0,1.0,9.0,2.0,4.0,2.5,3632.426425918698,0.0,900.0,0.0,0.0,93915.0,1,1,2,210.0,1,2.0,4,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3401.32098228259,0.04498863793294786,0.03621701519759985,37566.0,10,5,10,10_1,10_1,10_0_1 -7457,2,71.0,3,0.0,4,111,1,0,77,6.0,0.0,0.0,204.6460416270536,0.0,0.0,15334.0,0,50,2,6000,201107457,,,,,0.0,2.0,3.0,0.0,1.0,1.0,1935.053007475958,0.0,150.0,0.0,0.0,21088.0,0,5,1,88.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,204.6460416270536,0.013345900719124403,0.009704383612815516,21088.0,6,3,6,6_0,6_3,6_0_1 -7458,2,44.0,2,0.0,1,111,4,0,37,4.0,0.0,0.0,327.43366660328576,0.0,0.0,55095.0,0,12,2,6004,201107458,,,,900.0,1.0,1.0,2.0,0.0,1.0,1.0,4102.031321543864,0.0,240.0,0.0,0.0,15900.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,327.43366660328576,0.005943074083007274,0.020593312364986526,15900.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -7459,2,63.0,3,0.0,9,211,2,46,34,10.0,0.0,0.0,2196.5341801303753,0.0,0.0,41824.0,31,31,1,6007,201107459,,,254.0,,2.0,2.0,5.0,0.0,2.0,1.5,1851.1545019912908,0.0,1610.0,0.0,0.0,69360.0,1,1,2,130.0,1,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2196.5341801303753,0.05251851042775381,0.031668601212952355,46240.0,10,5,10,10_1,10_1,10_0_0 -7460,2,51.0,3,0.0,1,112,2,52,63,8.0,4759.368027416646,693.9631597817199,341.0767360450893,208.54923849724264,0.0,39245.0,70,50,1,6008,201107460,,,180.0,,2.0,3.0,7.0,0.0,2.0,1.5,993.6324504750588,0.0,250.0,0.0,0.0,42982.0,1,1,1,300.0,8,1.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,6002.957161740698,0.15296106922514202,0.13966211813644544,28654.666666666668,8,4,8,8_1,8_1,8_1_0 -7461,2,46.0,2,0.0,2,111,2,0,37,8.0,0.0,0.0,327.43366660328576,0.0,2259.283417053462,37347.0,0,10,1,6009,201107461,,,,,1.0,0.0,5.0,2.0,3.0,2.0,1867.3896773515025,0.0,240.0,1300.0,0.0,55682.0,0,1,1,130.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2586.717083656748,0.06926171000767793,0.04645517552632355,27841.0,8,4,8,8_1,8_2,8_0_1 -7462,1,34.0,4,360.0,5,111,1,85,63,1.0,0.0,0.0,573.00891655575,0.0,0.0,17956.0,60,71,2,601,201107462,,,,207.0,1.0,0.0,2.0,1.0,3.0,1.8,3520.3241713761963,0.0,420.0,0.0,0.0,11740.0,6,1,3,47.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,573.00891655575,0.03191183540631266,0.048808255243249575,6522.222222222222,1,1,1_1,1_0_1,1_3_1,1_0_0 -7463,2,63.0,2,0.0,1,300,4,0,77,3.0,0.0,0.0,1274.2626858644537,111.22626053186274,0.0,13623.0,0,70,1,6012,201107463,,,472.0,,0.0,2.0,3.0,0.0,1.0,1.0,2342.4343928308713,0.0,934.0,0.0,0.0,13657.0,0,5,1,48.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1385.4889463963164,0.101702190882795,0.1014489965875607,13657.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -7464,1,66.0,2,259.0,5,111,2,0,77,2.0,0.0,0.0,221.01772495721787,0.0,3545.337054453125,10007.0,0,71,2,6014,201107464,,,162.0,,0.0,0.0,2.0,0.0,1.0,1.0,4609.4938050118535,0.0,162.0,2040.0,0.0,12001.0,0,5,3,50.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,3766.354779410343,0.37637201752876415,0.31383674522209337,12001.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -7465,2,68.0,1,0.0,5,112,4,75,74,10.0,0.0,0.0,2513.053391180218,0.0,347.58206416207105,29194.0,41,12,1,6015,201107465,,,280.0,,0.0,2.0,7.0,0.0,2.0,1.5,1299.5331807857935,0.0,1842.0,200.0,0.0,59942.0,5,5,1,135.0,3,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2860.6354553422893,0.0979871019847328,0.047723390199564404,39961.333333333336,10,5,10,10_1,10_0,10_0_0 -7466,0,83.0,4,0.0,8,400,2,0,78,2.0,0.0,0.0,0.0,90.37133668213848,0.0,11611.0,0,71,1,6016,201107466,,,,,0.0,5.0,4.0,0.0,1.0,1.0,2790.0282964764806,0.0,0.0,0.0,0.0,10921.0,0,5,5,100.0,0,1.0,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,90.37133668213848,0.007783251802785158,0.00827500564803026,10921.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -7467,0,61.0,1,0.0,4,111,2,0,34,10.0,0.0,0.0,0.0,0.0,0.0,104909.0,0,20,2,6017,201107467,,,,,1.0,3.0,5.0,0.0,1.0,1.0,3435.41858386274,0.0,0.0,0.0,0.0,58822.0,0,1,5,153.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,58822.0,10,5,10,10_0,10_3,10_0_1 -7468,2,32.0,3,0.0,1,112,2,43,46,3.0,1887.8826508752697,0.0,1457.0798163846216,145.98446694806984,0.0,38973.0,33,31,1,6018,201107468,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3136.612646025102,0.0,1068.0,0.0,0.0,26550.0,1,1,3,110.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3490.946934207961,0.08957347225535527,0.1314857602338215,12642.857142857143,2,1,2_0,2_1_0,2_0_0,2_1_0 -7469,2,84.0,2,0.0,1,211,2,0,77,3.0,0.0,0.0,93.63695558725793,0.0,193.54525096421906,6157.0,0,70,1,6019,201107469,,,120.0,,0.0,1.0,3.0,0.0,1.0,1.0,2227.703703038219,180.0,0.0,0.0,0.0,13620.0,0,5,1,80.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,287.182206551477,0.04664320392260468,0.021085330877494642,13620.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -7470,2,55.0,4,0.0,7,120,2,0,56,2.0,0.0,0.0,3274.3366660328575,2433.074449134497,0.0,27204.0,0,70,1,602,201107470,,,,,1.0,2.0,6.0,2.0,3.0,2.0,1762.9727099066579,0.0,2400.0,0.0,0.0,19512.0,0,1,1,145.0,0,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5707.411115167355,0.20980043799321257,0.29250774472977425,9756.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -7471,2,31.0,3,0.0,4,300,4,46,56,8.0,0.0,1067.3153397442852,2319.3218051066074,1617.9945086744408,0.0,71325.0,20,20,1,6020,201107471,,,,,2.0,0.0,5.0,1.0,4.0,2.3,947.7500217186911,0.0,1700.0,0.0,0.0,59003.0,1,4,2,130.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5004.631653525334,0.07016658469716557,0.08481995243505133,25653.478260869568,8,4,8,8_1,8_0,8_0_1 -7472,1,44.0,3,200.0,1,221,2,0,52,2.0,0.0,0.0,409.2920832541072,0.0,2606.865481215533,38955.0,0,50,1,6022,201107472,,,300.0,,1.0,0.0,5.0,2.0,3.0,1.8,1703.5806120746668,0.0,300.0,1500.0,0.0,19183.0,0,1,2,82.0,1,1.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,3016.15756446964,0.0774267119617415,0.1572307545467153,10657.222222222223,2,1,2_1,2_1_1,2_1_1,2_1_0 -7473,1,40.0,2,249.0,1,111,2,62,56,5.0,0.0,0.0,930.4573359310036,0.0,3823.4027057827816,56077.0,50,50,1,6023,201107473,,,1470.0,,2.0,1.0,6.0,3.0,5.0,2.6,2953.2703443064647,0.0,682.0,2200.0,0.0,46601.0,1,1,3,110.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,4753.860041713785,0.08477379392110464,0.10201197488710081,17923.46153846154,5,3,5,5_1,5_2,5_1_0 -7474,2,84.0,2,0.0,1,111,2,0,86,4.0,1903.7472109666587,0.0,1075.0738720141214,0.0,0.0,18449.0,0,70,1,6024,201107474,,,122.0,,0.0,1.0,7.0,0.0,1.0,1.0,5676.997299352375,0.0,788.0,0.0,0.0,14990.0,0,5,1,115.0,6,4.0,1,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2978.8210829807804,0.16146246858804164,0.19872055256709675,14990.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -7475,2,82.0,4,0.0,99,300,4,75,77,6.0,0.0,0.0,1555.3099163656073,0.0,0.0,18092.0,70,70,1,6025,201107475,,,410.0,,0.0,3.0,3.0,0.0,2.0,1.5,1819.0745396973232,0.0,1140.0,0.0,0.0,29054.0,5,5,3,71.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1555.3099163656073,0.08596672100185758,0.05353169671527525,19369.333333333332,6,3,6,6_1,6_0,6_0_0 -7476,2,43.0,1,0.0,8,112,2,42,38,10.0,3490.203220105541,0.0,914.0856526008394,0.0,0.0,71433.0,20,10,1,6027,201107476,,,525.0,,2.0,0.0,8.0,3.0,5.0,2.8,1307.6077800933163,0.0,670.0,0.0,0.0,162531.0,1,1,1,214.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4404.28887270638,0.061656221532154325,0.02709814664714042,58046.78571428572,10,5,10,10_1,10_0,10_0_0 -7477,2,61.0,1,0.0,4,111,2,0,75,9.0,0.0,0.0,361.5413402077947,0.0,1192.2064800759038,28641.0,0,30,1,6028,201107477,,,148.0,,0.0,1.0,5.0,0.0,1.0,1.0,2172.2663498649667,0.0,265.0,686.0,0.0,30818.0,0,5,1,100.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1553.7478202836985,0.05424907720693057,0.05041689338320782,30818.0,9,5,9,9_1,9_2,9_0_1 -7478,2,59.0,1,0.0,5,112,2,75,77,10.0,0.0,277.585263912688,795.3909484571483,0.0,2198.4565558250993,111044.0,20,12,1,6029,201107478,,,718.0,,0.0,2.0,7.0,0.0,3.0,2.0,836.1155016566448,0.0,583.0,1265.0,0.0,84296.0,6,5,1,200.0,8,2.0,5,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3271.4327681949353,0.029460689170013106,0.03880887311610201,42148.0,10,5,10,10_1,10_1,10_0_0 -7479,1,25.0,4,270.0,6,111,2,63,54,3.0,0.0,0.0,955.0148609262501,0.0,0.0,23758.0,50,43,2,6030,201107479,,,,202.0,2.0,0.0,4.0,2.0,4.0,2.1,2800.673265242002,0.0,700.0,0.0,0.0,28598.0,4,1,3,80.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,955.0148609262501,0.040197611790817836,0.033394463281566894,13618.095238095237,3,2,3_1,3_0_1,3_3_1,3_0_0 -7480,2,56.0,1,0.0,1,112,2,54,52,5.0,0.0,0.0,641.2242637647679,0.0,2780.6565132965684,64854.0,50,60,1,6032,201107480,,,390.0,,2.0,0.0,4.0,2.0,4.0,2.5,2197.736332837261,0.0,470.0,1600.0,0.0,45131.0,1,1,1,120.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3421.880777061336,0.0527628330875711,0.07582107148215941,18052.4,5,3,5,5_1,5_1,5_1_0 -7481,1,59.0,4,236.0,4,111,1,0,78,2.0,0.0,0.0,368.36287492869644,0.0,173.79103208103552,17295.0,0,60,2,6033,201107481,,,144.0,60.0,0.0,1.0,3.0,0.0,1.0,1.0,3091.1729713573486,0.0,270.0,100.0,0.0,9882.0,0,7,3,58.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,542.1539070097319,0.03134743608035455,0.054862771403534905,9882.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -7482,1,29.0,2,320.0,99,111,2,0,55,4.0,0.0,0.0,668.510402648375,0.0,1442.4655662725947,33260.0,0,31,2,6034,201107482,,,384.0,125.0,1.0,0.0,3.0,1.0,2.0,1.3,1958.5575037729195,0.0,490.0,830.0,0.0,19672.0,0,1,3,77.0,7,5.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2110.9759689209695,0.06346891067110552,0.1073086604778858,15132.307692307691,4,2,4_1,4_0_1,4_2_1,4_0_0 -7483,2,66.0,2,0.0,7,112,5,0,64,8.0,0.0,0.0,995.9440692516608,0.0,0.0,76831.0,0,50,1,6037,201107483,,,130.0,,1.0,2.0,3.0,0.0,1.0,1.0,1584.0816441089582,0.0,730.0,0.0,0.0,27376.0,0,5,1,78.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,995.9440692516608,0.012962789359134474,0.03638018955478013,27376.0,8,4,8,8_1,8_0,8_0_0 -7484,2,32.0,3,0.0,99,112,4,85,21,2.0,0.0,0.0,744.9115915224751,104.27461924862132,0.0,26357.0,50,50,2,6038,201107484,,,,,1.0,0.0,4.0,2.0,4.0,2.1,7063.017232516477,0.0,546.0,0.0,0.0,20107.0,6,1,3,127.0,9,1.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,849.1862107710964,0.032218621647801204,0.04223336205157887,9574.761904761905,1,1,1_0,1_0_0,1_1_0,1_0_0 -7485,0,48.0,4,0.0,1,400,5,0,54,1.0,0.0,416.377895869032,409.2920832541072,312.82385774586396,0.0,17588.0,0,50,1,6040,201107485,,,100.0,,1.0,2.0,4.0,0.0,1.0,1.0,1767.4444678451246,0.0,300.0,0.0,0.0,7100.0,0,1,5,81.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1138.4938368690032,0.06473128478900404,0.16035124462943706,7100.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -7486,2,33.0,3,0.0,4,111,1,52,46,9.0,0.0,0.0,368.36287492869644,0.0,0.0,35394.0,43,31,2,6041,201107486,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3543.327926213236,0.0,270.0,0.0,0.0,45211.0,1,1,2,65.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,368.36287492869644,0.010407494912377704,0.008147638294412786,30140.666666666668,9,5,9,9_0,9_4,9_0_1 -7487,2,64.0,3,0.0,5,111,2,0,77,6.0,0.0,208.188947934516,476.14312351894466,0.0,2300.9932647529104,33357.0,0,70,1,6042,201107487,,,288.0,,0.0,4.0,6.0,0.0,1.0,1.0,2375.0074186017755,0.0,349.0,1324.0,0.0,19682.0,0,5,1,130.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2985.325336206371,0.08949621777157331,0.15167794615416985,19682.0,6,3,6,6_1,6_3,6_0_0 -7488,2,39.0,2,0.0,9,221,2,56,67,5.0,1427.810408224994,0.0,709.4396109737858,83.41969539889705,0.0,31139.0,50,50,1,6044,201107488,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1464.3731414485558,0.0,520.0,0.0,0.0,36744.0,1,1,2,106.0,1,3.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2220.669714597677,0.07131474082654153,0.06043625393527315,17497.142857142855,5,3,5,5_1,5_1,5_0_0 -7489,2,62.0,3,0.0,4,111,4,78,78,6.0,0.0,0.0,1978.245069061518,0.0,0.0,36456.0,70,50,1,6045,201107489,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1631.543187424922,0.0,1450.0,0.0,0.0,30560.0,5,5,1,85.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1978.245069061518,0.054263909070153556,0.06473315016562559,20373.333333333332,6,3,6,6_1,6_3,6_0_1 -7490,2,68.0,3,0.0,1,120,2,71,71,6.0,0.0,0.0,1579.8674413608537,304.13430614181215,0.0,12552.0,71,70,1,6047,201107490,,,230.0,,0.0,3.0,5.0,0.0,2.0,1.5,2720.5612910203704,0.0,1158.0,0.0,0.0,28710.0,5,5,1,139.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1884.001747502666,0.15009574151550875,0.06562179545463831,19140.0,5,3,5,5_1,5_0,5_1_0 -7491,2,57.0,3,0.0,4,111,2,54,78,2.0,0.0,0.0,341.0767360450893,0.0,521.3730962431066,21616.0,71,50,2,6049,201107491,,,,306.0,1.0,1.0,4.0,0.0,2.0,1.5,2693.197679000504,0.0,250.0,300.0,0.0,18000.0,1,7,3,75.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,862.4498322881959,0.039898678399712985,0.04791387957156644,12000.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -7492,0,34.0,2,0.0,9,111,2,0,53,8.0,0.0,0.0,0.0,0.0,0.0,21870.0,0,42,2,605,201107492,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3250.4724253756303,0.0,0.0,0.0,0.0,27635.0,0,1,5,60.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,27635.0,8,4,8,8_0,8_4,8_0_0 -7493,2,49.0,2,0.0,1,111,2,0,35,8.0,0.0,0.0,499.39709646537557,0.0,1032.241338475835,34447.0,0,10,2,6050,201107493,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3329.556438122758,960.0,0.0,0.0,0.0,42384.0,0,1,1,60.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1531.6384349412106,0.044463623390751314,0.036137184667355854,28256.0,8,4,8,8_0,8_4,8_1_0 -7494,2,37.0,3,0.0,1,400,6,67,46,7.0,685.3489959479971,0.0,1488.4588761007697,0.0,0.0,27160.0,43,20,1,6051,201107494,,,349.0,,2.0,0.0,7.0,1.0,3.0,1.8,2652.755674895268,0.0,1091.0,0.0,0.0,41744.0,1,1,2,160.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2173.8078720487665,0.08003710869104443,0.05207473821504328,23191.11111111111,7,4,7,7_1,7_0,7_1_0 -7495,1,19.0,2,210.0,99,111,4,0,84,1.0,0.0,0.0,654.8673332065715,0.0,0.0,8806.0,0,41,2,6054,201107495,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3709.3668359675376,0.0,480.0,0.0,0.0,2520.0,0,3,3,30.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,654.8673332065715,0.07436603829281985,0.2598679893676871,2520.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -7496,2,63.0,2,0.0,1,111,4,34,34,10.0,0.0,0.0,2684.956066146943,0.0,0.0,83852.0,20,10,2,6055,201107496,,,,,2.0,0.0,7.0,0.0,2.0,1.5,1443.7636802718691,0.0,1968.0,0.0,0.0,111717.0,1,1,2,150.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2684.956066146943,0.03202017919843227,0.024033549649086022,74478.0,10,5,10,10_0,10_3,10_1_0 -7497,2,39.0,2,0.0,1,111,6,0,85,1.0,0.0,0.0,259.2183193942679,0.0,0.0,5708.0,0,71,3,6056,201107497,,,,150.0,0.0,0.0,1.0,0.0,1.0,1.0,3893.0335124733847,0.0,190.0,0.0,0.0,985.0,0,6,3,10.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,259.2183193942679,0.045413160370404326,0.2631658064916425,985.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -7498,0,55.0,3,0.0,1,400,4,0,52,2.0,0.0,0.0,0.0,0.0,0.0,21469.0,0,60,8,6057,201107498,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2853.713731970342,0.0,0.0,0.0,0.0,9875.0,0,1,5,60.0,0,0.0,1,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,9875.0,2,1,2_0,2_0_0,2_0_0,2_1_0 -7499,2,65.0,4,0.0,7,111,1,0,78,5.0,0.0,0.0,58.665198599755364,0.0,0.0,13353.0,0,71,2,6058,201107499,,,,,0.0,2.0,2.0,0.0,1.0,1.0,6284.139678284367,0.0,43.0,0.0,0.0,17840.0,0,5,3,51.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,58.665198599755364,0.00439340961579835,0.00328840799325983,17840.0,5,3,5,5_0,5_2,5_0_0 -7500,2,35.0,1,0.0,1,112,2,43,42,8.0,0.0,0.0,733.9971359690322,0.0,2139.3676049175474,62519.0,10,10,1,6059,201107500,,,209.0,,2.0,0.0,5.0,2.0,4.0,2.1,1355.0523396638675,0.0,538.0,1231.0,0.0,57715.0,1,1,2,120.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2873.3647408865795,0.045959864055512396,0.049785406582111745,27483.333333333332,8,4,8,8_1,8_0,8_1_0 -7501,2,23.0,2,0.0,8,111,4,0,47,3.0,0.0,0.0,573.00891655575,0.0,0.0,20032.0,0,43,2,6060,201107501,,,,,1.0,0.0,2.0,0.0,2.0,1.5,5511.935704373763,0.0,420.0,0.0,0.0,19660.0,0,1,3,50.0,8,7.0,5,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,573.00891655575,0.0286046783424396,0.029145926579641407,13106.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_0 -7502,2,62.0,4,0.0,1,400,5,0,77,2.0,832.8894047979131,0.0,470.68589574222324,52.13730962431066,0.0,11992.0,0,50,1,6061,201107502,,,201.0,,0.0,2.0,3.0,0.0,1.0,1.0,1983.4649634819846,0.0,345.0,0.0,0.0,11050.0,0,5,1,100.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1355.7126101644471,0.1130514184593435,0.12268892399678255,11050.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -7503,2,23.0,3,0.0,4,120,1,55,65,1.0,0.0,0.0,0.0,0.0,0.0,17630.0,50,50,2,6063,201107503,,,,200.0,2.0,0.0,2.0,0.0,2.0,1.5,4987.0647575659295,0.0,0.0,0.0,0.0,13127.0,4,1,3,81.0,0,2.0,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,8751.333333333334,1,1,1_0,1_0_0,1_1_0,1_0_1 -7504,1,39.0,4,148.0,4,300,2,85,22,1.0,1427.810408224994,0.0,770.8334234619018,125.12954309834558,0.0,16824.0,41,50,1,6064,201107504,,,,,1.0,0.0,3.0,2.0,4.0,2.1,2554.591047835099,0.0,565.0,0.0,0.0,18805.0,6,1,3,90.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2323.7733747852412,0.1381225258431551,0.12357210182319815,8954.761904761905,1,1,1_1,1_1_1,1_0_1,1_0_1 -7505,2,65.0,4,0.0,3,111,2,78,78,7.0,0.0,0.0,982.3009998098572,0.0,3388.925125580193,29656.0,71,71,2,6065,201107505,,,660.0,675.0,0.0,2.0,5.0,0.0,2.0,1.5,4127.109872733635,0.0,720.0,1950.0,0.0,34715.0,5,5,3,100.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,4371.22612539005,0.14739769778088918,0.12591750325190984,23143.333333333332,7,4,7,7_0,7_3,7_0_1 -7506,2,56.0,3,0.0,5,111,2,52,78,3.0,0.0,0.0,518.4366387885358,0.0,1355.5700502320772,21309.0,60,50,1,6066,201107506,,,220.0,,1.0,3.0,2.0,0.0,2.0,1.5,1735.1857207120602,0.0,380.0,780.0,0.0,21961.0,1,7,3,65.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1874.006689020613,0.08794437510069046,0.08533339506491568,14640.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0 -7507,2,54.0,3,0.0,5,120,5,85,62,9.0,0.0,721.7216861729887,1879.9881001268895,182.4805836850873,1426.8586001639926,51489.0,50,50,1,607,201107507,,,220.0,,2.0,2.0,5.0,1.0,3.0,2.0,1186.5937312655005,1327.0,872.0,0.0,0.0,71068.0,6,1,1,102.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4211.048970148958,0.08178540989626829,0.05925379875821689,35534.0,9,5,9,9_1,9_0,9_0_0 -7508,1,36.0,4,180.0,1,300,4,85,62,2.0,0.0,0.0,1978.245069061518,0.0,0.0,38102.0,60,50,1,6070,201107508,,,120.0,,1.0,0.0,5.0,4.0,6.0,2.9,1248.9582757862452,0.0,1450.0,0.0,0.0,33836.0,6,1,2,119.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1978.245069061518,0.051919717313041784,0.05846568947456904,11667.586206896553,2,1,2_1,2_1_1,2_0_1,2_1_0 -7509,2,76.0,3,0.0,1,221,2,86,74,7.0,0.0,0.0,4758.702621301086,0.0,0.0,20264.0,41,50,1,6071,201107509,,,154.0,,0.0,4.0,4.0,0.0,2.0,1.5,1629.265219750215,0.0,3488.0,0.0,0.0,34710.0,5,5,1,90.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4758.702621301086,0.2348353050385455,0.13709889430426636,23140.0,7,4,7,7_1,7_1,7_1_0 -7510,2,30.0,3,0.0,99,111,1,64,43,5.0,0.0,0.0,982.3009998098572,0.0,0.0,48050.0,50,33,2,6073,201107510,,,,,2.0,0.0,4.0,3.0,5.0,2.4,3136.0228827914284,0.0,720.0,0.0,0.0,41230.0,1,1,2,75.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,982.3009998098572,0.020443309049112533,0.023824909042198816,17179.166666666668,5,3,5,5_0,5_3,5_0_0 -7511,1,28.0,4,389.0,3,111,1,0,56,1.0,0.0,0.0,668.510402648375,125.12954309834558,0.0,12948.0,0,50,2,6074,201107511,,,,,1.0,0.0,4.0,2.0,3.0,1.6,3658.995784040016,0.0,490.0,0.0,0.0,14681.0,0,1,3,79.0,4,3.0,2,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,793.6399457467206,0.0612944042127526,0.054058984111894325,9175.625,1,1,1_1,1_0_1,1_1_1,1_0_1 -7512,2,56.0,2,0.0,5,111,1,62,65,8.0,0.0,0.0,654.8673332065715,145.98446694806984,0.0,37590.0,50,41,2,6075,201107512,,,,296.0,2.0,3.0,4.0,0.0,2.0,1.5,2712.733783752372,0.0,480.0,0.0,0.0,38516.0,1,1,3,75.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,800.8518001546413,0.021304916205231214,0.020792704334682763,25677.333333333332,8,4,8,8_0,8_3,8_0_0 -7513,1,62.0,4,140.0,4,111,1,0,78,3.0,0.0,0.0,409.2920832541072,0.0,121.65372245672486,15861.0,0,70,2,6076,201107513,,,,290.0,0.0,2.0,3.0,0.0,1.0,1.0,2565.9222522804375,0.0,300.0,70.0,0.0,14560.0,0,5,3,72.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,530.945805710832,0.0334749262789756,0.036466058084535166,14560.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -7514,2,64.0,1,0.0,5,112,1,77,75,10.0,0.0,0.0,624.6570811048005,868.9551604051776,445.15407721770384,32015.0,30,10,2,6077,201107514,500.0,500.0,,,0.0,2.0,4.0,0.0,2.0,1.5,4611.060398487159,414.0,300.0,0.0,0.0,61031.0,5,5,1,92.0,9,3.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1938.766318727682,0.06055806086920762,0.03176691056557621,40687.333333333336,10,5,10,10_0,10_1,10_0_0 -7515,2,62.0,5,0.0,4,112,5,78,74,6.0,0.0,464.95531705375237,1522.5665497052787,0.0,0.0,42558.0,71,50,1,6078,201107515,,,190.0,,1.0,4.0,5.0,1.0,4.0,2.3,1288.849325998223,0.0,1116.0,0.0,0.0,47782.0,5,5,1,144.0,9,1.0,5,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1987.5218667590311,0.046701486600851334,0.04159561899374307,20774.782608695652,6,3,6,6_1,6_1,6_0_1 -7516,1,30.0,3,65.0,7,111,6,84,43,2.0,0.0,0.0,1146.0178331115,0.0,0.0,21154.0,10,20,2,6079,201107516,,,250.0,285.0,1.0,0.0,3.0,1.0,3.0,1.8,1892.133464752929,0.0,840.0,0.0,0.0,19870.0,3,1,3,46.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1146.0178331115,0.05417499447440201,0.05767578425322094,11038.888888888889,2,1,2_1,2_0_1,2_3_1,2_0_0 -7517,2,84.0,2,0.0,2,111,2,0,77,8.0,0.0,0.0,140.4554333808869,0.0,290.31787644632857,20092.0,0,50,1,608,201107517,,,,,0.0,6.0,5.0,0.0,2.0,1.5,3246.5134230547064,270.0,0.0,0.0,0.0,42565.0,0,5,1,99.0,6,5.0,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,430.7733098272155,0.021440041301374453,0.010120364379824163,28376.666666666668,8,4,8,8_1,8_2,8_0_1 -7518,2,38.0,2,0.0,1,112,4,46,21,7.0,0.0,0.0,244.21094300828395,145.98446694806984,0.0,47792.0,20,70,1,6080,201107518,,,290.0,,2.0,0.0,2.0,3.0,5.0,2.4,1579.0870239802757,0.0,179.0,0.0,0.0,56711.0,1,1,2,80.0,9,1.0,4,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,390.1954099563538,0.00816445032550121,0.006880418436570573,23629.583333333336,7,4,7,7_1,7_1,7_1_0 -7519,1,46.0,4,299.0,2,111,1,0,68,1.0,0.0,0.0,941.3717914844465,0.0,695.1641283241421,9996.0,0,50,2,6081,201107519,,,680.0,,1.0,2.0,4.0,2.0,3.0,1.8,2123.9604167233333,0.0,690.0,400.0,0.0,12048.0,0,4,3,80.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1636.5359198085885,0.16371907961270393,0.13583465469858802,6693.333333333333,1,1,1_1,1_0_1,1_2_1,1_0_1 -7520,2,40.0,2,0.0,8,112,2,64,37,6.0,0.0,0.0,320.61213188238395,0.0,1737.9103208103552,53916.0,71,43,1,6084,201107520,,,500.0,,2.0,0.0,6.0,2.0,4.0,2.3,3603.747205695316,0.0,235.0,1000.0,0.0,46543.0,1,1,2,163.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2058.522452692739,0.038180177548273964,0.0442284006766375,20236.08695652174,6,3,6,6_1,6_2,6_0_0 -7521,2,64.0,2,0.0,6,111,4,74,74,10.0,0.0,0.0,2182.8911106885716,0.0,0.0,62695.0,10,12,1,6086,201107521,,,1000.0,,0.0,2.0,5.0,0.0,2.0,1.5,1280.7707993623485,0.0,1600.0,0.0,0.0,93679.0,5,4,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2182.8911106885716,0.03481762677547766,0.02330181909167019,62452.666666666664,10,5,10,10_1,10_4,10_0_0 -7522,2,32.0,3,0.0,1,400,2,0,54,6.0,0.0,0.0,261.9469332826286,2137.629694596737,0.0,27980.0,0,31,8,6088,201107522,,,142.0,390.0,1.0,0.0,3.0,0.0,1.0,1.0,5135.826761382789,0.0,192.0,0.0,0.0,20941.0,0,1,3,75.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,2399.5766278793653,0.08576042272621034,0.11458748998994152,20941.0,6,3,6,6_0,6_0,6_1_0 -7523,2,42.0,2,0.0,9,221,4,46,46,7.0,0.0,693.9631597817199,1637.1683330164287,0.0,0.0,35706.0,31,50,1,6089,201107523,,,180.0,,2.0,0.0,5.0,2.0,4.0,2.1,4532.239103317066,0.0,1200.0,0.0,0.0,47799.0,1,1,2,105.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2331.1314927981484,0.06528682834252363,0.04876946155355025,22761.42857142857,7,4,7,7_1,7_1,7_0_0 -7524,2,79.0,3,0.0,4,111,2,0,74,10.0,0.0,0.0,818.5841665082144,0.0,3997.193737863817,33371.0,0,10,1,609,201107524,,,450.0,,0.0,2.0,10.0,0.0,1.0,1.0,2887.284968226849,0.0,600.0,2300.0,0.0,37683.0,0,5,1,150.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4815.777904372031,0.14431026652998205,0.12779709429642097,37683.0,10,5,10,10_1,10_4,10_0_1 -7525,2,44.0,3,0.0,5,112,2,54,48,9.0,0.0,208.188947934516,832.2272359500179,0.0,2050.7341785562194,76573.0,50,50,1,6090,201107525,,,453.0,,2.0,2.0,4.0,1.0,3.0,1.8,5607.803758008903,0.0,610.0,1180.0,0.0,60377.0,1,1,2,100.0,9,2.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3091.1503624407533,0.040368672540461434,0.051197481862973536,33542.777777777774,9,5,9,9_1,9_1,9_0_0 -7526,2,48.0,3,0.0,6,111,2,85,48,9.0,0.0,444.1364222603008,1637.1683330164287,0.0,0.0,65548.0,60,50,1,6092,201107526,,,200.0,,1.0,2.0,5.0,0.0,2.0,1.5,5008.198965086354,0.0,1200.0,0.0,0.0,47072.0,7,1,3,150.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2081.3047552767293,0.03175237620181744,0.044215345752819706,31381.333333333332,9,5,9,9_1,9_2,9_0_0 -7527,0,47.0,3,0.0,1,111,2,56,46,2.0,0.0,0.0,0.0,0.0,0.0,26998.0,50,60,1,6095,201107527,,,,,2.0,0.0,3.0,2.0,4.0,2.3,2065.8428507729523,0.0,0.0,0.0,0.0,24726.0,1,1,5,48.0,7,5.0,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,10750.434782608696,2,1,2_0,2_1_0,2_2_0,2_1_0 -7528,2,64.0,2,0.0,4,112,2,0,77,9.0,0.0,0.0,368.36287492869644,0.0,1399.017808252336,18518.0,0,60,1,6099,201107528,,,213.0,,0.0,1.0,5.0,0.0,1.0,1.0,1665.4991732802373,0.0,270.0,805.0,0.0,29281.0,0,5,1,96.0,8,1.0,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1767.3806831810325,0.09544122924619465,0.060359300678973826,29281.0,9,5,9,9_1,9_1,9_0_1 -7529,1,25.0,3,188.0,99,111,2,85,53,2.0,0.0,0.0,513.4426398034643,0.0,1061.2731261204676,53303.0,50,60,2,61,201107529,,,320.0,113.0,1.0,0.0,4.0,1.0,3.0,1.8,3064.4221776366035,987.0,0.0,0.0,0.0,21240.0,6,1,3,60.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1574.715765923932,0.029542723034799767,0.07413916035423408,11800.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -7530,0,47.0,1,0.0,4,111,1,0,38,9.0,0.0,0.0,0.0,0.0,0.0,11143.0,0,31,2,610,201107530,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3715.2556217058927,0.0,0.0,0.0,0.0,29090.0,0,1,5,90.0,7,5.0,1,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,29090.0,8,4,8,8_0,8_2,8_0_1 -7531,2,31.0,3,0.0,1,111,2,0,56,4.0,0.0,0.0,436.97245940720364,0.0,903.2111711663555,16454.0,0,71,2,6100,201107531,,,,450.0,1.0,0.0,3.0,0.0,1.0,1.0,2931.8690623116263,840.0,0.0,0.0,0.0,14866.0,0,1,3,65.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1340.1836305735592,0.0814503239682484,0.09015092362259916,14866.0,3,2,3_0,3_0_0,3_2_0,3_1_0 -7532,2,77.0,2,0.0,5,111,2,0,77,8.0,0.0,0.0,62.424637058171946,0.0,129.03016730947937,12636.0,0,50,2,6101,201107532,,,,485.0,0.0,0.0,3.0,0.0,1.0,1.0,3605.933108798806,120.0,0.0,0.0,0.0,26974.0,0,5,3,65.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,191.45480436765132,0.015151535641631159,0.007097753554076196,26974.0,8,4,8,8_0,8_2,8_0_0 -7533,2,51.0,2,0.0,6,111,2,55,48,6.0,0.0,0.0,1069.7458508866118,0.0,2907.3593779696653,64078.0,41,50,1,6104,201107533,,,245.0,,2.0,0.0,6.0,2.0,4.0,2.5,1533.8986052482232,829.0,468.0,1160.0,0.0,52258.0,1,1,1,150.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3977.105228856277,0.062066625501049924,0.07610519401539051,20903.2,6,3,6,6_1,6_3,6_0_0 -7534,2,48.0,4,0.0,1,111,2,47,33,8.0,0.0,0.0,781.7478790153447,0.0,1833.4953884549248,43195.0,50,50,2,6106,201107534,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2173.511007445462,0.0,573.0,1055.0,0.0,64209.0,1,1,2,116.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2615.2432674702695,0.06054504612733579,0.040730166603907075,26753.75,8,4,8,8_0,8_4,8_1_0 -7535,2,65.0,2,0.0,5,111,1,0,38,8.0,0.0,0.0,341.0767360450893,0.0,0.0,44584.0,0,41,2,6107,201107535,,,,1199.0,1.0,0.0,2.0,0.0,1.0,1.0,7729.405399219323,0.0,250.0,0.0,0.0,26554.0,0,1,3,63.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,341.0767360450893,0.00765020491757333,0.01284464623202114,26554.0,8,4,8,8_0,8_4,8_0_0 -7536,2,41.0,3,0.0,7,112,4,0,85,4.0,0.0,0.0,982.3009998098572,0.0,0.0,14218.0,0,42,2,6108,201107536,,,,,0.0,0.0,2.0,0.0,1.0,1.0,6105.270352723746,0.0,720.0,0.0,0.0,15848.0,0,7,3,63.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,982.3009998098572,0.06908854971232643,0.06198264764070275,15848.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -7537,1,40.0,2,463.0,7,111,2,85,64,3.0,0.0,0.0,697.0751138162535,0.0,1440.8368682891862,29768.0,10,50,1,6109,201107537,,,324.0,116.0,1.0,0.0,4.0,4.0,6.0,2.7,1346.2817166629602,1340.0,0.0,0.0,0.0,36528.0,6,4,3,91.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2137.9119821054396,0.07181913404009135,0.05852803279964519,13528.888888888889,3,2,3_1,3_1_1,3_3_1,3_0_0 -7538,0,31.0,3,0.0,3,111,1,42,64,4.0,0.0,0.0,436.5782221377143,0.0,516.1593652806755,41559.0,20,50,2,611,201107538,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2230.5372252403417,0.0,320.0,297.0,0.0,26673.0,1,1,5,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,952.7375874183898,0.02292494014337183,0.035719176223836455,14818.333333333332,3,2,3_0,3_0_0,3_4_0,3_0_1 -7539,2,69.0,3,0.0,1,112,2,78,77,3.0,1903.7472109666587,51.353273823847275,491.1504999049286,173.79103208103552,0.0,15093.0,70,60,1,6111,201107539,,,170.0,,0.0,2.0,5.0,0.0,2.0,1.5,2634.4678881780915,0.0,360.0,0.0,0.0,19591.0,5,5,1,85.0,6,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2620.04201677647,0.17359319000705425,0.13373702295832118,13060.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -7540,2,87.0,3,0.0,1,111,1,0,74,7.0,0.0,0.0,750.3688192991965,0.0,104.27461924862132,23704.0,0,30,2,6112,201107540,0.0,,,,0.0,0.0,3.0,0.0,1.0,1.0,4209.760219964419,0.0,550.0,60.0,0.0,24041.0,0,5,1,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,854.6434385478178,0.036054819378493835,0.03554941302557372,24041.0,7,4,7,7_0,7_4,7_1_0 -7541,2,92.0,3,0.0,6,111,2,0,74,10.0,0.0,0.0,723.0826804155894,0.0,1790.047630434666,28812.0,0,60,2,6113,201107541,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3688.1248459427625,0.0,530.0,1030.0,0.0,41242.0,0,5,1,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2513.1303108502552,0.08722512532452642,0.060936189099710374,41242.0,10,5,10,10_0,10_4,10_0_0 -7542,2,53.0,4,0.0,1,111,2,0,47,6.0,0.0,0.0,1091.4455553442858,0.0,0.0,53567.0,0,60,1,6115,201107542,,,250.0,,1.0,2.0,6.0,0.0,1.0,1.0,2421.4841059327346,0.0,800.0,0.0,0.0,19846.0,0,1,1,120.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1091.4455553442858,0.0203753347274308,0.054995745003743116,19846.0,6,3,6,6_1,6_3,6_1_0 -7543,2,62.0,3,0.0,1,400,5,0,71,3.0,0.0,97.1548423694408,231.93218051066074,86.89551604051776,0.0,11517.0,0,70,1,6119,201107543,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2239.9732885847106,0.0,170.0,0.0,0.0,12438.0,0,5,1,90.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,415.9825389206193,0.03611900138235819,0.03344448777300364,12438.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -7544,2,33.0,3,0.0,4,112,2,63,55,5.0,1427.810408224994,0.0,559.3658471139465,0.0,0.0,48558.0,50,42,1,612,201107544,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2449.976597019016,0.0,410.0,0.0,0.0,31177.0,1,1,2,105.0,8,0.0,4,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1987.1762553389406,0.04092376653360807,0.06373853338483307,17320.555555555555,5,3,5,5_1,5_0,5_0_1 -7545,2,70.0,3,0.0,3,221,2,77,75,6.0,0.0,0.0,525.2581735094376,0.0,2606.865481215533,33613.0,60,50,1,6120,201107545,,,300.0,,0.0,3.0,4.0,0.0,2.0,1.5,2928.838943389856,0.0,385.0,1500.0,0.0,29825.0,5,5,1,80.0,1,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3132.1236547249705,0.09318191338842027,0.1050167193537291,19883.333333333332,6,3,6,6_1,6_1,6_0_1 -7546,2,46.0,3,0.0,9,111,1,54,47,7.0,0.0,0.0,678.0605512576376,0.0,0.0,34188.0,50,12,2,6121,201107546,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2299.5992243265846,0.0,497.0,0.0,0.0,49666.0,1,1,2,105.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,678.0605512576376,0.019833290957576858,0.013652409118061402,21593.913043478264,6,3,6,6_0,6_2,6_0_0 -7547,2,28.0,3,0.0,7,111,2,0,46,5.0,0.0,0.0,341.0767360450893,52.13730962431066,0.0,28113.0,0,31,2,6122,201107547,,,,323.0,1.0,0.0,2.0,0.0,1.0,1.0,3328.36467634352,0.0,250.0,0.0,0.0,16801.0,0,1,3,30.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,393.2140456694,0.013986911594970298,0.02340420484908041,16801.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -7548,2,58.0,4,0.0,1,111,6,77,72,4.0,0.0,0.0,204.6460416270536,434.4775802025888,260.6865481215533,17117.0,71,71,1,6125,201107548,,,130.0,,0.0,2.0,3.0,0.0,2.0,1.5,3619.201991475391,0.0,150.0,150.0,0.0,23881.0,6,4,1,45.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,899.8101699511957,0.052568216974422835,0.0376789150350151,15920.666666666666,4,2,4_0,4_1_0,4_3_0,4_1_0 -7549,2,64.0,3,0.0,3,111,2,0,75,7.0,0.0,0.0,504.79356934673217,0.0,1703.1521143941482,17463.0,0,33,2,6126,201107549,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4303.421323355467,0.0,370.0,980.0,0.0,22199.0,0,5,1,70.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2207.94568374088,0.12643564586502207,0.09946149302855445,22199.0,7,4,7,7_0,7_2,7_0_1 -7550,0,47.0,3,0.0,4,111,1,46,37,9.0,0.0,0.0,468.18477793628966,0.0,967.7262548210953,37449.0,20,50,2,6127,201107550,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2192.232821754361,900.0,0.0,0.0,0.0,63320.0,1,1,5,55.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1435.9110327573849,0.0383431074997299,0.022677053581133685,35177.777777777774,9,5,9,9_0,9_4,9_0_1 -7551,2,80.0,2,0.0,5,221,5,0,78,7.0,0.0,971.5484236944079,1678.0975413418394,140.77073598563877,0.0,21759.0,0,50,1,6128,201107551,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1696.9373396327833,0.0,1230.0,0.0,0.0,23581.0,0,5,1,96.0,1,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2790.4167010218857,0.1282419551000453,0.11833326411186489,23581.0,7,4,7,7_1,7_1,7_0_0 -7552,2,66.0,5,0.0,1,221,2,0,74,4.0,0.0,0.0,736.7257498573929,1876.9431464751838,0.0,19713.0,0,41,1,613,201107552,,,265.0,,0.0,5.0,5.0,0.0,1.0,1.0,1724.0782471100042,0.0,540.0,0.0,0.0,16600.0,0,5,1,140.0,1,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2613.668896332577,0.13258605470159676,0.15744993351401065,16600.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -7553,2,68.0,3,0.0,1,112,2,0,78,3.0,0.0,0.0,592.1092137742751,0.0,1621.4703293160615,14812.0,0,71,2,6130,201107553,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3024.2311988563797,0.0,434.0,933.0,0.0,12670.0,0,5,1,60.0,10,1.0,1,1,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,2213.5795430903363,0.14944501371120283,0.17471030332204707,12670.0,2,1,2_0,2_0_0,2_1_0,2_1_0 -7554,1,23.0,5,416.0,3,111,1,63,85,3.0,0.0,0.0,1500.737638598393,0.0,1007.9879860700061,22216.0,50,50,2,6131,201107554,,,380.0,24.0,1.0,0.0,4.0,2.0,4.0,2.1,3074.323622755034,0.0,1100.0,580.0,0.0,29952.0,4,4,3,82.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2508.725624668399,0.1129242719062117,0.08375820060992252,14262.857142857143,3,2,3_1,3_0_1,3_2_1,3_0_1 -7555,2,43.0,3,0.0,1,112,5,54,65,7.0,0.0,693.9631597817199,1337.02080529675,1242.605879379404,0.0,60987.0,42,50,1,6132,201107555,,,106.0,,2.0,1.0,4.0,1.0,3.0,1.8,1600.870622046061,0.0,980.0,0.0,0.0,41198.0,1,1,2,105.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3273.5898444578743,0.05367684661416161,0.0794599214636117,22887.777777777777,7,4,7,7_1,7_0,7_1_0 -7556,2,29.0,3,0.0,1,120,2,85,47,3.0,0.0,0.0,818.5841665082144,0.0,2780.6565132965684,23132.0,71,31,1,6134,201107556,,,,,1.0,0.0,5.0,1.0,4.0,2.3,5925.856189267746,0.0,600.0,1600.0,0.0,29740.0,6,1,1,90.0,0,3.0,5,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3599.2406798047828,0.15559574095645784,0.12102356018173446,12930.434782608696,3,2,3_0,3_1_0,3_1_0,3_1_0 -7557,2,52.0,2,0.0,99,112,2,0,55,6.0,0.0,0.0,555.2729262814054,0.0,1922.128814816253,23187.0,0,71,1,6135,201107557,,,100.0,,1.0,2.0,3.0,0.0,1.0,1.0,3268.3605442103017,0.0,407.0,1106.0,0.0,19284.0,0,1,2,77.0,10,0.0,1,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2477.4017410976585,0.10684442752825542,0.12846928754914222,19284.0,6,3,6,6_1,6_0,6_0_0 -7558,1,54.0,3,260.0,2,111,2,68,63,3.0,0.0,0.0,682.1534720901786,0.0,1564.1192887293198,21007.0,50,50,1,6136,201107558,,,300.0,,3.0,0.0,4.0,1.0,3.0,2.0,805.9304114645912,0.0,500.0,900.0,0.0,26830.0,1,1,3,90.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2246.272760819498,0.10692972632072634,0.08372242865521798,13415.0,3,2,3_1,3_1_1,3_3_1,3_0_1 -7559,2,72.0,3,0.0,5,111,6,77,74,8.0,1995.7616594967137,0.0,633.0384220996858,208.54923849724264,0.0,28428.0,60,50,1,6137,201107559,,,356.0,,0.0,1.0,5.0,0.0,2.0,1.5,2575.8661233872654,0.0,464.0,0.0,0.0,39925.0,5,5,1,96.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2837.3493200936423,0.09980826368698616,0.07106698359658466,26616.666666666668,8,4,8,8_1,8_3,8_0_0 -7560,2,54.0,2,0.0,7,111,2,54,37,10.0,0.0,0.0,1365.4680549362524,0.0,2831.314752265348,36355.0,50,50,1,6138,201107560,,,290.0,,2.0,2.0,6.0,0.0,2.0,1.5,3486.9217467895132,1505.0,427.0,698.0,0.0,66043.0,1,1,1,140.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4196.7828072016,0.11543894394723146,0.06354621696775738,44028.666666666664,10,5,10,10_1,10_2,10_0_0 -7561,1,80.0,4,16.0,2,111,2,0,77,5.0,0.0,0.0,851.3275331685429,0.0,656.9301012663143,12546.0,0,71,2,6140,201107561,,,,241.0,0.0,1.0,4.0,0.0,1.0,1.0,3406.211870403326,0.0,624.0,378.0,0.0,17442.0,0,5,3,90.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1508.2576344348572,0.12021820775026759,0.08647274592563108,17442.0,5,3,5,5_0,5_3,5_0_1 -7562,2,76.0,2,0.0,1,112,6,78,78,4.0,1172.390990753634,0.0,463.8643610213215,166.8393907977941,0.0,12607.0,70,50,1,6141,201107562,,,,,0.0,3.0,3.0,0.0,2.0,1.5,991.0116985547409,0.0,340.0,0.0,0.0,22155.0,5,5,1,100.0,8,1.0,3,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1803.0947425727495,0.14302329995817795,0.08138545441538025,14770.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -7563,1,45.0,3,64.0,6,112,4,56,69,2.0,0.0,0.0,1637.1683330164287,0.0,0.0,30549.0,50,71,1,6142,201107563,,,520.0,344.0,2.0,0.0,5.0,6.0,8.0,3.3,823.1808958252286,0.0,1200.0,0.0,0.0,38661.0,1,1,3,85.0,8,1.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1637.1683330164287,0.05359155235904379,0.042346766328248846,11715.454545454546,2,1,2_1,2_1_1,2_1_1,2_0_0 -7564,2,81.0,3,0.0,4,111,2,0,77,2.0,0.0,0.0,313.79059716148214,0.0,1546.740185521216,10602.0,0,71,2,6144,201107564,,,,,0.0,4.0,4.0,0.0,1.0,1.0,4061.398970492643,0.0,230.0,890.0,0.0,12225.0,0,5,1,75.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1860.5307826826981,0.17548866088310677,0.15219065707015936,12225.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -7565,1,33.0,5,268.0,3,111,2,85,56,2.0,713.905204112497,0.0,573.00891655575,0.0,1155.7103633388863,30450.0,50,50,2,6145,201107565,,,539.0,,1.0,1.0,3.0,2.0,4.0,2.1,2622.2635491416595,0.0,420.0,665.0,0.0,19627.0,7,1,3,63.0,6,5.0,4,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2442.624484007133,0.08021755284095675,0.12445225882748934,9346.190476190475,1,1,1_1,1_0_1,1_2_1,1_0_1 -7566,0,22.0,3,0.0,6,111,4,0,54,1.0,0.0,0.0,0.0,0.0,0.0,6379.0,0,71,1,6146,201107566,,,,,1.0,0.0,6.0,0.0,1.0,1.0,1975.5945863371269,0.0,0.0,0.0,0.0,5697.0,0,3,5,105.0,5,4.0,1,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,5697.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -7567,2,58.0,3,0.0,1,120,2,0,56,2.0,0.0,0.0,386.0988652030411,0.0,2123.7264120302543,9238.0,0,70,1,6147,201107567,,,246.0,,1.0,0.0,3.0,0.0,1.0,1.0,1475.5438055750694,0.0,283.0,1222.0,0.0,11377.0,0,1,1,80.0,0,0.0,1,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2509.8252772332953,0.27168491851410426,0.22060519268992662,11377.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -7568,2,54.0,3,0.0,3,111,1,0,45,8.0,0.0,0.0,278.3186166127929,0.0,187.69431464751835,27857.0,0,50,2,6151,201107568,,,,,1.0,2.0,3.0,0.0,1.0,1.0,3205.652446642307,0.0,204.0,108.0,0.0,27636.0,0,1,2,75.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,466.01293126031123,0.016728755115780997,0.01686253188812821,27636.0,8,4,8,8_0,8_3,8_0_1 -7569,2,36.0,4,0.0,1,112,6,43,43,4.0,0.0,0.0,1664.4544719000357,0.0,0.0,30811.0,41,60,1,6152,201107569,,,423.0,,2.0,0.0,5.0,0.0,2.0,1.5,2884.1001931444625,0.0,1220.0,0.0,0.0,22264.0,1,1,2,95.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1664.4544719000357,0.05402143623705935,0.07475990261857868,14842.666666666666,3,2,3_0,3_1_0,3_1_0,3_1_0 -7570,2,89.0,3,0.0,5,111,2,0,75,7.0,0.0,0.0,1166.4824372742055,0.0,0.0,20430.0,0,50,8,6153,201107570,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2378.285640332047,0.0,855.0,0.0,0.0,22800.0,0,5,1,60.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1166.4824372742055,0.05709654612208544,0.0511615104067634,22800.0,7,4,7,7_0,7_3,7_0_0 -7571,1,49.0,4,96.0,6,111,1,0,42,2.0,0.0,0.0,382.0059443705,0.0,0.0,17623.0,0,20,2,6154,201107571,,,,293.0,1.0,1.0,3.0,0.0,1.0,1.0,3860.6935876335456,0.0,280.0,0.0,0.0,11335.0,0,1,3,60.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,382.0059443705,0.021676555885518926,0.03370145076052051,11335.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -7572,1,64.0,4,125.0,5,111,1,77,75,3.0,0.0,0.0,873.1564442754286,278.0656513296568,0.0,37476.0,71,50,2,6156,201107572,,,,294.0,0.0,3.0,5.0,1.0,3.0,2.0,3243.70469163901,0.0,640.0,0.0,0.0,27730.0,6,5,3,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1151.2220956050855,0.030718915989035263,0.04151540193310803,13865.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -7573,2,76.0,3,0.0,1,112,4,0,77,4.0,0.0,0.0,1364.3069441803573,45.18566834106924,0.0,8296.0,0,71,1,6158,201107573,,,,,0.0,0.0,3.0,0.0,1.0,1.0,4606.334460989281,0.0,1000.0,0.0,0.0,16004.0,0,5,3,60.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1409.4926125214265,0.16990026669737543,0.08807127046497291,16004.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -7574,2,39.0,3,0.0,99,111,2,52,54,7.0,0.0,0.0,731.2685220806715,0.0,1564.1192887293198,68122.0,31,42,2,616,201107574,,,,608.0,2.0,0.0,5.0,2.0,4.0,2.1,2883.8501972376785,0.0,536.0,900.0,0.0,47460.0,1,1,3,102.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2295.387810809991,0.03369524985775507,0.04836468206510727,22600.0,7,4,7,7_0,7_3,7_0_0 -7575,2,69.0,3,0.0,7,112,5,0,77,3.0,0.0,0.0,573.00891655575,90.37133668213848,0.0,7499.0,0,71,1,6160,201107575,,,165.0,,0.0,2.0,2.0,0.0,1.0,1.0,2908.538502644243,0.0,420.0,0.0,0.0,13690.0,0,5,1,50.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,663.3802532378885,0.08846249543110928,0.048457286576909314,13690.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -7576,2,52.0,2,0.0,1,112,2,52,63,7.0,0.0,1040.94473967258,688.9750068110804,1796.9992717179073,0.0,117885.0,50,50,1,6161,201107576,,,122.0,,4.0,1.0,7.0,2.0,4.0,2.5,1220.284915878772,0.0,505.0,0.0,0.0,61260.0,1,1,2,200.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3526.9190182015677,0.029918301889142535,0.05757295165200078,24504.0,7,4,7,7_1,7_0,7_1_0 -7577,2,57.0,3,0.0,5,400,2,13,13,1.0,2022.7314116520747,0.0,83.2227235950018,391.02982218232995,0.0,37190.0,50,50,1,6164,201107577,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1993.3999216432578,0.0,61.0,0.0,0.0,5342.0,1,1,3,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2496.9839574294065,0.06714127339148714,0.467424926512431,3561.3333333333335,1,1,1_0,1_1_0,1_0_0,1_0_0 -7578,2,57.0,1,0.0,5,112,6,75,56,3.0,0.0,0.0,1611.246501077002,0.0,0.0,58790.0,50,50,1,6165,201107578,,,132.0,,1.0,3.0,5.0,0.0,2.0,1.5,1369.6754615096438,0.0,1181.0,0.0,0.0,19653.0,5,1,1,120.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1611.246501077002,0.02740681240137782,0.08198476065114751,13102.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -7579,2,77.0,2,0.0,4,111,4,75,74,9.0,0.0,0.0,1800.8851663180715,0.0,0.0,34962.0,20,20,1,6167,201107579,,,190.0,,0.0,0.0,4.0,0.0,2.0,1.5,1558.9905522528297,0.0,1320.0,0.0,0.0,45068.0,5,5,1,100.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1800.8851663180715,0.05150978680619162,0.039959287439382075,30045.333333333332,9,5,9,9_1,9_3,9_0_1 -7580,2,48.0,2,0.0,7,111,2,46,48,10.0,0.0,0.0,1478.7247033983826,0.0,2541.059306486355,103755.0,42,20,1,6169,201107580,,,256.0,,3.0,0.0,6.0,2.0,4.0,2.5,1181.5400752985279,1269.0,600.0,677.0,0.0,99738.0,1,1,1,100.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4019.7840098847378,0.03874303898496205,0.04030343509880625,39895.2,10,5,10,10_1,10_2,10_0_0 -7581,2,75.0,3,0.0,1,111,2,0,75,3.0,0.0,0.0,286.504458277875,0.0,1122.6900672434895,20034.0,0,60,2,6171,201107581,,,322.0,,0.0,1.0,2.0,0.0,1.0,1.0,3016.396376562729,0.0,210.0,646.0,0.0,13509.0,0,5,1,75.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1409.1945255213645,0.0703401480244267,0.10431523617746424,13509.0,3,2,3_0,3_0_0,3_3_0,3_1_0 -7582,2,88.0,2,0.0,6,300,4,0,71,3.0,0.0,0.0,1678.0975413418394,139.0328256648284,0.0,15022.0,0,71,1,6173,201107582,,,360.0,,0.0,2.0,4.0,0.0,1.0,1.0,2859.997384788787,0.0,1230.0,0.0,0.0,13072.0,0,5,1,99.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1817.1303670066677,0.12096460970620874,0.13900936100112207,13072.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -7583,2,75.0,3,0.0,1,120,5,0,72,2.0,0.0,1040.94473967258,1207.4116455996161,0.0,0.0,11012.0,0,70,1,6174,201107583,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2153.5467189283286,0.0,885.0,0.0,0.0,12040.0,0,5,1,120.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2248.3563852721963,0.2041733005150923,0.18674056356081364,12040.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -7584,2,63.0,4,0.0,1,112,2,0,56,5.0,3172.912018277764,0.0,794.0266415129679,104.27461924862132,0.0,28800.0,0,70,1,6175,201107584,,,240.0,,1.0,2.0,3.0,0.0,1.0,1.0,2183.1516566186688,0.0,582.0,0.0,0.0,17464.0,0,1,1,65.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4071.2132790393534,0.14136157218886644,0.23312032060463544,17464.0,5,3,5,5_1,5_0,5_1_0 -7585,2,38.0,2,0.0,2,111,2,0,63,9.0,0.0,0.0,818.5841665082144,0.0,0.0,16886.0,0,31,2,6176,201107585,,,,440.0,1.0,0.0,2.0,0.0,1.0,1.0,4104.544827342818,0.0,600.0,0.0,0.0,32089.0,0,1,3,70.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,818.5841665082144,0.048477091466789905,0.02550980605529042,32089.0,9,5,9,9_0,9_2,9_0_1 -7586,2,41.0,3,0.0,4,111,2,52,21,7.0,0.0,0.0,1141.4263080227138,0.0,3262.692814778045,75609.0,31,71,2,6179,201107586,,,,461.0,2.0,0.0,5.0,2.0,4.0,2.3,3642.006734970948,1014.0,450.0,1250.0,0.0,50471.0,1,1,3,91.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4404.119122800759,0.05824860959410598,0.08726038958611398,21943.913043478264,7,4,7,7_0,7_4,7_0_1 -7587,2,65.0,9,0.0,99,111,1,0,78,4.0,0.0,0.0,311.0619832731214,0.0,0.0,10333.0,0,71,2,618,201107587,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2808.1681393012677,0.0,228.0,0.0,0.0,14814.0,0,5,3,67.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,311.0619832731214,0.03010374366332347,0.02099783875206706,14814.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -7588,2,55.0,1,0.0,1,111,2,46,43,10.0,5996.803714544974,0.0,2182.8911106885716,0.0,0.0,117402.0,50,60,1,6180,201107588,,,320.0,,2.0,0.0,7.0,3.0,5.0,3.0,1058.6048146616224,0.0,1600.0,0.0,0.0,137228.0,1,1,1,152.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,8179.694825233546,0.06967253390260426,0.05960660233504493,45742.666666666664,10,5,10,10_1,10_4,10_1_0 -7589,2,57.0,1,0.0,8,300,2,0,38,10.0,0.0,0.0,717.625452638868,7820.596443646598,0.0,29115.0,0,50,1,6182,201107589,,,170.0,,1.0,1.0,6.0,0.0,1.0,1.0,1968.1457879309144,0.0,526.0,0.0,0.0,55292.0,0,1,1,190.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,8538.221896285466,0.29325852297047794,0.15442056529489737,55292.0,10,5,10,10_1,10_0,10_0_0 -7590,2,33.0,2,0.0,6,111,4,42,35,10.0,0.0,0.0,1146.0178331115,0.0,0.0,42242.0,10,10,2,6184,201107590,,,,,2.0,0.0,4.0,1.0,3.0,1.8,4839.708739249617,0.0,840.0,0.0,0.0,79049.0,1,1,2,85.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1146.0178331115,0.027129819447741586,0.01449756269037559,43916.11111111111,10,5,10,10_0,10_4,10_0_0 -7591,2,34.0,2,0.0,1,111,2,48,37,10.0,0.0,0.0,1064.1594164606786,0.0,1545.0022752004058,43628.0,71,50,1,6185,201107591,,,143.0,,2.0,1.0,3.0,1.0,3.0,1.8,2134.776030405712,0.0,780.0,889.0,0.0,69270.0,1,1,2,90.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2609.1616916610847,0.059804751344574233,0.037666546725293557,38483.333333333336,10,5,10,10_1,10_3,10_1_0 -7592,2,44.0,2,0.0,7,111,2,0,48,7.0,0.0,0.0,136.43069441803573,0.0,2085.4923849724264,31666.0,0,50,2,6186,201107592,,,,,1.0,1.0,3.0,2.0,3.0,2.0,2130.710765868217,0.0,100.0,1200.0,0.0,48624.0,0,1,3,65.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2221.923079390462,0.07016746919062913,0.04569601594666136,24312.0,7,4,7,7_0,7_3,7_0_0 -7593,2,60.0,2,0.0,4,112,2,43,75,9.0,0.0,242.88710592360198,306.9690624405804,0.0,1221.7509555296797,23701.0,33,41,1,6187,201107593,,,290.0,,1.0,3.0,6.0,0.0,2.0,1.5,5649.120660486209,0.0,225.0,703.0,0.0,43432.0,1,5,1,170.0,9,1.0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1771.607123893862,0.07474820150600658,0.040790364797703586,28954.666666666668,8,4,8,8_1,8_1,8_0_1 -7594,2,45.0,2,0.0,8,111,4,52,33,8.0,0.0,0.0,1910.0297218525002,0.0,0.0,54856.0,31,30,1,6188,201107594,,,580.0,,2.0,0.0,5.0,2.0,4.0,2.3,2517.5831672773757,0.0,1400.0,0.0,0.0,63510.0,1,1,2,110.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1910.0297218525002,0.03481897553325981,0.030074472080814048,27613.04347826087,8,4,8,8_1,8_3,8_0_0 -7595,2,41.0,1,0.0,1,111,2,38,38,8.0,1903.7472109666587,0.0,545.7227776721429,0.0,0.0,69361.0,12,12,1,6189,201107595,,,200.0,,2.0,0.0,7.0,3.0,5.0,2.4,1268.6509416856677,0.0,400.0,0.0,0.0,68737.0,1,1,2,200.0,9,7.0,4,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2449.4699886388016,0.035314802102605236,0.035635392709003906,28640.416666666668,8,4,8,8_1,8_3,8_1_0 -7596,2,63.0,3,0.0,5,111,6,75,75,8.0,0.0,913.2555182727434,2615.848687064661,260.6865481215533,635.4735739991859,32697.0,50,50,1,619,201107596,,,400.0,,0.0,1.0,6.0,0.0,2.0,1.5,1535.4197384628762,591.0,1692.0,0.0,0.0,41170.0,5,5,1,100.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4425.264327458143,0.13534160098657808,0.10748759600335543,27446.666666666668,8,4,8,8_1,8_3,8_0_0 -7597,2,60.0,2,0.0,6,112,2,11,11,6.0,872.5508050263852,326.16268509740837,613.9381248811608,0.0,0.0,41648.0,60,31,1,6190,201107597,,,190.0,,2.0,2.0,6.0,0.0,2.0,1.5,2789.326077918895,0.0,450.0,0.0,0.0,30199.0,1,1,1,152.0,6,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1812.6516150049545,0.043523137125551156,0.06002356419103131,20132.666666666668,6,3,6,6_1,6_0,6_0_0 -7598,2,42.0,3,0.0,5,111,1,52,64,8.0,0.0,0.0,341.0767360450893,48.661488982689946,815.0799404600566,46804.0,50,50,2,6191,201107598,469.0,469.0,,,2.0,0.0,2.0,0.0,2.0,1.5,1947.7813957615417,0.0,250.0,469.0,0.0,38846.0,1,1,2,70.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1204.8181654878358,0.025741777743095374,0.031015243924415275,25897.333333333332,8,4,8,8_0,8_3,8_0_0 -7599,2,75.0,4,0.0,2,211,2,0,86,2.0,2062.392811880547,832.755791738064,818.5841665082144,0.0,0.0,14184.0,0,71,1,6192,201107599,,,,,0.0,2.0,6.0,0.0,1.0,1.0,7330.918413221869,0.0,600.0,0.0,0.0,11739.0,0,6,1,133.0,2,3.0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3713.7327701268255,0.2618254914077006,0.31635852884630933,11739.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -7600,2,73.0,3,0.0,7,111,6,0,77,6.0,0.0,0.0,3956.490138123036,0.0,1115.7384259602482,24581.0,0,50,2,6194,201107600,,,180.0,342.0,0.0,3.0,2.0,0.0,1.0,1.0,1362.591021092646,0.0,2900.0,642.0,0.0,19270.0,0,5,3,40.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,5072.228564083284,0.20634752711782614,0.26321891873810505,19270.0,6,3,6,6_0,6_2,6_0_0 -7601,1,48.0,3,200.0,4,111,1,0,85,2.0,0.0,0.0,0.0,0.0,0.0,4785.0,0,41,2,6195,201107601,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4104.821871554513,0.0,0.0,0.0,0.0,11150.0,0,7,3,22.0,8,6.0,1,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0.0,0.0,0.0,11150.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -7602,2,47.0,2,0.0,1,112,2,0,47,6.0,2855.620816449988,0.0,1350.6638747385537,0.0,86.89551604051776,56818.0,0,20,1,6196,201107602,,,300.0,,1.0,0.0,5.0,3.0,4.0,2.1,1433.6096140580953,0.0,990.0,50.0,0.0,43820.0,0,1,1,182.0,10,2.0,2,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4293.180207229059,0.07556021343991445,0.09797307638587538,20866.666666666664,6,3,6,6_1,6_1,6_1_0 -7603,2,57.0,2,0.0,7,211,4,46,33,8.0,0.0,0.0,2204.3700661677417,0.0,1877.3889343529247,61860.0,50,44,1,6197,201107603,,,350.0,,2.0,2.0,5.0,0.0,2.0,1.5,1134.216686893556,1746.0,950.0,0.0,0.0,37520.0,1,1,2,80.0,3,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4081.7590005206666,0.06598381830780256,0.10878888594138238,25013.333333333332,8,4,8,8_1,8_2,8_0_0 -7604,2,42.0,2,0.0,8,111,4,23,21,10.0,0.0,0.0,5096.917078560004,0.0,2075.2351908941264,90362.0,31,12,1,6198,201107604,,,480.0,,2.0,0.0,6.0,2.0,4.0,2.1,4416.811198289586,1930.0,3000.0,0.0,0.0,136934.0,1,1,2,160.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,7172.15226945413,0.07937133163779166,0.052376708994509254,65206.666666666664,10,5,10,10_1,10_4,10_0_0 -7605,2,30.0,2,0.0,2,111,1,0,43,7.0,0.0,0.0,432.48530130517327,0.0,1346.8804986280254,25676.0,0,33,2,6199,201107605,672.0,672.0,143.0,,1.0,0.0,3.0,0.0,1.0,1.0,3948.9385832246603,0.0,317.0,775.0,0.0,23402.0,0,1,2,55.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1779.3657999331986,0.06930073998805104,0.07603477480271766,23402.0,7,4,7,7_0,7_3,7_0_1 -7606,2,36.0,2,0.0,1,111,6,0,42,8.0,0.0,0.0,499.33634157001075,0.0,0.0,20707.0,0,20,2,62,201107606,,,,468.0,1.0,0.0,1.0,0.0,1.0,1.0,3469.277623746239,0.0,366.0,0.0,0.0,25676.0,0,1,3,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,499.33634157001075,0.024114373959048183,0.01944759080736917,25676.0,8,4,8,8_0,8_4,8_1_0 -7607,2,63.0,3,0.0,5,300,2,11,72,3.0,3172.912018277764,0.0,578.4661443324715,135.55700502320772,0.0,20547.0,60,70,1,620,201107607,,,360.0,,1.0,2.0,6.0,0.0,2.0,1.5,2623.76634046163,0.0,424.0,0.0,0.0,19130.0,1,5,1,180.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3886.935167633443,0.18917288011064598,0.20318531979265253,12753.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -7608,2,21.0,1,0.0,1,112,4,0,56,8.0,0.0,0.0,1137.831991446418,0.0,0.0,32182.0,0,50,2,6201,201107608,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2697.199698549078,0.0,834.0,0.0,0.0,26203.0,0,1,3,70.0,7,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1137.831991446418,0.035356161563806415,0.04342372978080441,26203.0,8,4,8,8_0,8_0,8_1_0 -7609,2,57.0,3,0.0,1,112,2,42,42,9.0,2855.620816449988,0.0,613.9381248811608,55.61313026593137,0.0,44681.0,20,20,1,6203,201107609,,,280.0,,2.0,3.0,5.0,1.0,3.0,1.8,2502.1741321613135,0.0,450.0,0.0,0.0,55556.0,1,1,2,110.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3525.1720715970805,0.07889644528092658,0.06345258966803011,30864.444444444445,9,5,9,9_1,9_0,9_1_0 -7610,2,58.0,3,0.0,1,111,1,77,54,9.0,0.0,0.0,627.5811943229643,0.0,0.0,41864.0,50,60,2,6204,201107610,,,,600.0,1.0,1.0,2.0,0.0,2.0,1.5,3578.859175045854,0.0,460.0,0.0,0.0,51150.0,5,1,3,76.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,627.5811943229643,0.014990951517364903,0.012269427063987572,34100.0,9,5,9,9_0,9_4,9_1_0 -7611,2,43.0,3,0.0,8,211,5,62,48,6.0,1331.036591667522,693.9631597817199,1050.5163470188752,0.0,0.0,49898.0,71,31,1,6206,201107611,,,131.0,,2.0,0.0,4.0,2.0,4.0,2.1,2863.469954342173,0.0,770.0,0.0,0.0,44900.0,1,1,1,100.0,2,3.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3075.516098468117,0.061636059530805185,0.06849701778325427,21380.95238095238,6,3,6,6_1,6_1,6_0_0 -7612,2,38.0,1,0.0,2,111,2,0,37,10.0,0.0,0.0,889.5281276055929,0.0,2165.4362597297027,50749.0,0,31,2,6208,201107612,,,400.0,,1.0,0.0,5.0,0.0,1.0,1.0,2555.164146883569,0.0,652.0,1246.0,0.0,47598.0,0,1,2,140.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3054.9643873352957,0.06019752876579432,0.06418262085245799,47598.0,10,5,10,10_0,10_2,10_0_1 -7613,1,36.0,4,242.0,2,300,4,65,85,3.0,0.0,0.0,2592.183193942679,0.0,112.96417085267309,37235.0,50,60,1,6209,201107613,,,,120.0,1.0,0.0,4.0,3.0,5.0,2.4,1648.3102620418995,0.0,1900.0,65.0,0.0,31985.0,1,6,3,90.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2705.147364795352,0.07265066106607633,0.08457549991544011,13327.083333333334,3,2,3_1,3_1_1,3_0_1,3_0_1 -7614,2,44.0,2,0.0,1,112,1,55,34,7.0,834.4758608070521,0.0,2414.8232911992322,0.0,0.0,39604.0,50,31,1,621,201107614,,,461.0,,2.0,0.0,8.0,3.0,5.0,2.6,1807.6995283800231,0.0,1770.0,0.0,0.0,57554.0,1,1,2,150.0,8,0.0,4,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3249.299152006284,0.08204472154343713,0.05645653042371137,22136.153846153844,7,4,7,7_1,7_0,7_1_0 -7615,2,42.0,4,0.0,9,112,2,0,54,1.0,0.0,0.0,1268.8054580877322,0.0,2422.646987209635,79664.0,0,50,1,6210,201107615,,,968.0,,1.0,0.0,7.0,4.0,5.0,2.4,829.0565506028873,0.0,930.0,1394.0,0.0,8156.0,0,4,2,212.0,8,1.0,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3691.4524452973674,0.046337774217932406,0.4526057436607856,3398.3333333333335,1,1,1_0,1_1_0,1_1_0,1_0_0 -7616,2,27.0,2,0.0,8,111,2,47,47,4.0,0.0,0.0,436.5782221377143,0.0,834.1969539889706,55121.0,20,31,2,6211,201107616,,,,670.0,2.0,0.0,3.0,0.0,2.0,1.5,3081.6296045041167,0.0,320.0,480.0,0.0,22234.0,1,1,3,75.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1270.775176126685,0.02305428377799178,0.057154590992474816,14822.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_0 -7617,2,43.0,4,0.0,8,112,2,65,46,7.0,793.228004569441,832.755791738064,1009.5871386934643,139.0328256648284,0.0,28784.0,71,50,1,6212,201107617,,,240.0,,3.0,0.0,5.0,2.0,4.0,2.3,1903.2962404965363,0.0,740.0,0.0,0.0,52250.0,1,1,2,110.0,6,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2774.603760665798,0.09639396055676062,0.053102464318962636,22717.391304347828,7,4,7,7_1,7_0,7_0_0 -7618,2,46.0,2,0.0,5,111,1,0,38,10.0,0.0,0.0,272.86138883607146,0.0,0.0,18004.0,0,31,2,6213,201107618,,,,422.0,1.0,0.0,2.0,0.0,1.0,1.0,3045.5328263606357,0.0,200.0,0.0,0.0,40861.0,0,1,3,53.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,272.86138883607146,0.015155598135751581,0.006677795179659613,40861.0,10,5,10,10_0,10_4,10_0_0 -7619,2,63.0,4,0.0,8,111,4,0,72,2.0,0.0,0.0,504.79356934673217,0.0,0.0,25534.0,0,50,2,6214,201107619,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3379.507099913706,0.0,370.0,0.0,0.0,9447.0,0,6,1,70.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,504.79356934673217,0.019769466959611976,0.05343427218659174,9447.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -7620,2,85.0,2,0.0,2,120,6,0,71,4.0,3172.912018277764,0.0,409.2920832541072,0.0,0.0,28191.0,0,70,1,6216,201107620,,,180.0,,0.0,3.0,5.0,0.0,1.0,1.0,4193.219329473043,0.0,300.0,0.0,0.0,14716.0,0,5,1,220.0,0,2.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3582.2041015318714,0.12706906819665395,0.24342240429001571,14716.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -7621,2,71.0,3,0.0,3,111,2,75,75,6.0,0.0,0.0,491.1504999049286,0.0,625.6477154917279,26301.0,50,71,2,6217,201107621,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3682.257400563892,0.0,360.0,360.0,0.0,28654.0,5,5,1,83.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1116.7982153966566,0.042462195939190775,0.03897529892498976,19102.666666666668,5,3,5,5_0,5_3,5_0_1 -7622,2,62.0,4,0.0,99,111,6,0,77,3.0,2062.392811880547,0.0,1146.0178331115,0.0,417.0984769944853,14791.0,0,60,1,6218,201107622,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2984.326272714648,0.0,840.0,240.0,0.0,14337.0,0,5,1,80.0,9,7.0,1,9,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3625.5091219865326,0.24511588952650482,0.2528778072111692,14337.0,3,2,3_0,3_1_0,3_3_0,3_0_0 -7623,2,68.0,2,0.0,4,112,2,77,74,9.0,0.0,0.0,1010.9514456376447,0.0,1918.652994174632,59673.0,50,50,1,6219,201107623,,,391.0,,0.0,3.0,7.0,0.0,2.0,1.5,1246.7076636214404,0.0,741.0,1104.0,0.0,45088.0,5,5,1,160.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2929.6044398122767,0.04909430462373732,0.0649752581576534,30058.666666666668,9,5,9,9_1,9_1,9_0_1 -7624,2,45.0,2,0.0,2,111,1,37,31,10.0,0.0,0.0,341.0767360450893,0.0,0.0,35953.0,20,10,2,622,201107624,,,,,2.0,0.0,3.0,0.0,2.0,1.5,7633.788897976481,0.0,250.0,0.0,0.0,141556.0,1,1,2,87.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,341.0767360450893,0.009486739244154573,0.002409482720937928,94370.66666666667,10,5,10,10_0,10_4,10_0_1 -7625,2,38.0,2,0.0,1,111,2,33,42,8.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,35620.0,31,20,1,6221,201107625,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2885.988784159434,400.0,0.0,0.0,0.0,51179.0,1,1,2,100.0,7,6.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,638.1826812255044,0.017916414408352174,0.012469619985257712,28432.777777777777,8,4,8,8_1,8_2,8_1_0 -7626,2,44.0,2,0.0,9,112,4,54,47,7.0,0.0,312.283421901774,6835.17779034359,0.0,0.0,34397.0,31,31,1,6222,201107626,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2793.6042002005534,0.0,5010.0,0.0,0.0,52972.0,1,1,2,160.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,7147.461212245364,0.20779315673591778,0.13492904198907657,22071.666666666668,7,4,7,7_1,7_0,7_0_0 -7627,2,87.0,3,0.0,2,111,2,77,75,4.0,0.0,0.0,654.8673332065715,0.0,934.9957525959711,27221.0,71,71,2,6223,201107627,,,,,0.0,2.0,4.0,0.0,2.0,1.5,4178.905724815624,0.0,480.0,538.0,0.0,24921.0,5,5,1,55.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1589.8630858025426,0.058405756063426864,0.06379611916867471,16614.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -7628,2,51.0,2,0.0,6,112,2,42,37,9.0,0.0,0.0,723.0826804155894,0.0,2085.4923849724264,30272.0,31,42,1,6225,201107628,,,300.0,,2.0,2.0,7.0,0.0,2.0,1.5,1937.170533298192,0.0,530.0,1200.0,0.0,45817.0,4,1,1,90.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2808.575065388016,0.09277798181117917,0.06129984646284165,30544.666666666668,9,5,9,9_1,9_0,9_0_0 -7629,2,57.0,1,0.0,99,111,2,0,34,8.0,0.0,0.0,409.2920832541072,0.0,1737.9103208103552,36362.0,0,10,2,6228,201107629,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2196.1421409682557,0.0,300.0,1000.0,0.0,27778.0,0,1,1,80.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2147.2024040644624,0.05905072339432546,0.07729866815697539,27778.0,8,4,8,8_0,8_3,8_0_0 -7630,0,47.0,3,0.0,2,111,2,0,47,7.0,1078.79008621444,0.0,1623.5252635746251,139.0328256648284,0.0,21883.0,0,50,1,623,201107630,,,270.0,,1.0,1.0,4.0,1.0,2.0,1.5,2625.7294997526483,0.0,1190.0,0.0,0.0,35374.0,0,1,5,65.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2841.348175453894,0.12984271696997185,0.08032306709599972,23582.666666666668,7,4,7,7_1,7_3,7_0_1 -7631,2,29.0,1,0.0,7,112,1,0,69,1.0,0.0,0.0,245.5752499524643,0.0,0.0,8122.0,0,10,8,6232,201107631,,,,200.0,1.0,0.0,3.0,0.0,1.0,1.0,5221.015297295802,0.0,180.0,0.0,0.0,7630.0,0,1,3,75.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,245.5752499524643,0.030235810139431704,0.03218548492168602,7630.0,1,1,1_0,1_0_0,1_1_0,1_0_0 -7632,2,64.0,2,0.0,2,111,2,75,74,8.0,0.0,0.0,613.9381248811608,0.0,3074.3633575135186,33276.0,70,60,1,6233,201107632,,,800.0,,0.0,2.0,4.0,0.0,2.0,1.5,1753.4253710781763,0.0,450.0,1769.0,0.0,42130.0,5,5,1,110.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3688.3014823946796,0.11083968873646712,0.08754572709220697,28086.666666666668,8,4,8,8_1,8_3,8_0_1 -7633,2,77.0,3,0.0,1,120,2,0,78,3.0,1173.9774467627728,208.188947934516,699.8894623645233,121.65372245672486,0.0,17061.0,0,70,1,6234,201107633,,,356.0,,0.0,2.0,6.0,0.0,1.0,1.0,3191.153723487718,0.0,513.0,0.0,0.0,13151.0,0,5,1,110.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2203.7095795185373,0.12916649548786927,0.16756973458433103,13151.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -7634,2,75.0,3,0.0,6,111,5,56,78,4.0,0.0,0.0,600.2950554393572,95.58506764456953,0.0,17830.0,50,70,1,6239,201107634,,,125.0,,1.0,3.0,3.0,0.0,2.0,1.5,2683.2870802944776,0.0,440.0,0.0,0.0,22110.0,1,5,1,65.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,695.8801230839267,0.039028610380478224,0.03147354695087864,14740.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -7635,2,62.0,3,0.0,2,120,2,77,71,7.0,0.0,27.7585263912688,1405.236152505768,281.54147197127753,0.0,21557.0,60,71,1,624,201107635,,,317.0,,0.0,5.0,4.0,0.0,2.0,1.5,2602.40650551768,0.0,1030.0,0.0,0.0,35360.0,5,5,2,90.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1714.5361508683143,0.07953500723051975,0.0484880133164116,23573.333333333332,7,4,7,7_1,7_1,7_0_1 -7636,2,27.0,2,0.0,2,112,4,52,56,6.0,0.0,166.55115834761278,1978.245069061518,0.0,0.0,33559.0,31,31,1,6240,201107636,,,200.0,,2.0,0.0,6.0,2.0,4.0,2.1,2420.6671810959906,0.0,1450.0,0.0,0.0,43758.0,1,1,2,110.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2144.796227409131,0.06391120794448973,0.049014951035447944,20837.142857142855,6,3,6,6_1,6_0,6_0_1 -7637,1,24.0,3,156.0,9,111,1,0,84,1.0,0.0,0.0,491.1504999049286,0.0,0.0,10170.0,0,20,2,6242,201107637,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3614.9342822214935,0.0,360.0,0.0,0.0,1934.0,0,3,3,16.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,491.1504999049286,0.04829405112142857,0.2539557910573571,1934.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -7638,2,27.0,1,0.0,99,111,2,0,84,7.0,0.0,0.0,257.8540124500875,0.0,1002.774255107575,7033.0,0,10,2,6243,201107638,,,,290.0,0.0,0.0,2.0,0.0,1.0,1.0,7890.023917797284,0.0,189.0,577.0,0.0,23490.0,0,3,3,35.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1260.6282675576624,0.17924474158362896,0.05366659291433216,23490.0,7,4,7,7_0,7_3,7_0_0 -7639,1,48.0,4,40.0,99,111,2,81,62,3.0,0.0,0.0,718.9237367866137,0.0,1485.997426847504,26296.0,71,50,1,6244,201107639,,,,,2.0,3.0,3.0,1.0,3.0,1.8,2221.996577078209,1382.0,0.0,0.0,0.0,25744.0,4,1,3,70.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2204.921163634118,0.08385005946281252,0.08564796316167332,14302.222222222223,3,2,3_1,3_1_1,3_3_1,3_0_0 -7640,1,49.0,3,394.0,6,400,5,0,85,1.0,0.0,416.377895869032,345.16965687763036,0.0,0.0,15119.0,0,50,1,6245,201107640,,,230.0,10.0,0.0,1.0,3.0,0.0,3.0,1.6,2681.7499470395064,0.0,253.0,0.0,0.0,13334.0,0,7,3,89.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,761.5475527466624,0.05037023300130051,0.057113210795459904,8333.75,1,1,1_1,1_1_1,1_0_1,1_0_0 -7641,1,56.0,4,244.0,2,111,1,0,77,1.0,0.0,0.0,633.0384220996858,0.0,271.11401004641544,9794.0,0,71,2,6246,201107641,,,,174.0,1.0,2.0,4.0,1.0,2.0,1.5,3231.114846153482,0.0,464.0,156.0,0.0,9858.0,0,6,3,82.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,904.1524321461013,0.09231697285543203,0.0917176336118991,6572.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -7642,2,77.0,2,0.0,1,112,5,0,71,2.0,0.0,97.1548423694408,174.63128885508573,79.94387475727635,0.0,12351.0,0,70,1,6247,201107642,,,152.0,,0.0,0.0,3.0,0.0,1.0,1.0,2955.1846201704716,0.0,128.0,0.0,0.0,9852.0,0,5,1,80.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,351.73000598180283,0.028477856528362305,0.03570138103753581,9852.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -7643,2,35.0,3,0.0,7,111,2,43,62,3.0,0.0,0.0,676.6962443134572,0.0,1129.641708526731,45934.0,43,50,1,6248,201107643,,,210.0,,2.0,0.0,3.0,1.0,3.0,1.8,2029.655457290163,0.0,496.0,650.0,0.0,25690.0,1,1,3,90.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1806.3379528401883,0.039324638673753395,0.07031288255508712,14272.222222222223,3,2,3_0,3_1_0,3_3_0,3_0_0 -7644,1,63.0,5,68.0,99,212,6,0,77,3.0,0.0,0.0,818.5841665082144,260.6865481215533,0.0,19428.0,0,70,1,625,201107644,,,240.0,,0.0,2.0,4.0,0.0,1.0,1.0,1301.2125489429727,0.0,600.0,0.0,0.0,13326.0,0,5,3,80.0,2,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1079.2707146297676,0.05555233243925096,0.08098984801364006,13326.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -7645,2,61.0,3,0.0,5,112,4,55,78,6.0,0.0,0.0,1905.9368010199591,0.0,90.37133668213848,25111.0,60,70,1,6251,201107645,,,324.0,,1.0,3.0,5.0,0.0,2.0,1.5,2071.3269537877004,0.0,1397.0,52.0,0.0,28539.0,1,5,1,120.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1996.3081377020976,0.07949934840118265,0.06995017827191204,19026.0,5,3,5,5_1,5_1,5_0_0 -7646,2,81.0,3,0.0,4,111,2,0,78,4.0,0.0,0.0,545.7227776721429,0.0,2606.865481215533,16024.0,0,71,1,6253,201107646,,,200.0,,0.0,8.0,5.0,0.0,1.0,1.0,2933.225824193037,0.0,400.0,1500.0,0.0,15590.0,0,5,1,75.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3152.5882588876757,0.19674165369992982,0.20221861827374443,15590.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -7647,2,25.0,3,0.0,2,111,2,0,55,3.0,0.0,0.0,218.28911106885715,0.0,1216.5372245672486,15626.0,0,43,2,6255,201107647,,,25.0,188.0,1.0,0.0,3.0,0.0,1.0,1.0,2292.558415166714,0.0,160.0,700.0,0.0,12485.0,0,1,3,45.0,5,4.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1434.8263356361058,0.09182300880814705,0.1149240156696921,12485.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -7648,2,45.0,3,0.0,1,112,2,54,65,5.0,1776.8307302355481,0.0,986.3939206423983,130.34327406077665,0.0,38589.0,50,71,1,6256,201107648,,,115.0,,2.0,0.0,4.0,2.0,4.0,2.3,3166.7230272606707,0.0,723.0,0.0,0.0,42960.0,1,1,2,200.0,9,2.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2893.567924938723,0.0749842681836462,0.06735493307585481,18678.26086956522,5,3,5,5_1,5_1,5_1_0 -7649,2,67.0,3,0.0,4,400,2,77,78,3.0,198.30700114236026,0.0,2193.8055662420143,234.61789330939797,0.0,19841.0,70,71,1,6257,201107649,,,155.0,,0.0,2.0,4.0,0.0,2.0,1.5,4059.1853225321815,0.0,1608.0,0.0,0.0,21750.0,6,5,3,88.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2626.7304606937723,0.13238901570957978,0.12076921658362172,14500.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -7650,2,67.0,2,0.0,6,111,4,0,77,7.0,0.0,0.0,982.3009998098572,0.0,0.0,24520.0,0,60,2,6258,201107650,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2518.862724069891,0.0,720.0,0.0,0.0,23276.0,0,5,1,63.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,982.3009998098572,0.04006121532666628,0.04220231138554121,23276.0,7,4,7,7_0,7_2,7_0_0 -7651,0,65.0,3,0.0,3,111,4,0,77,3.0,0.0,0.0,204.6460416270536,104.27461924862132,0.0,21988.0,0,60,1,6259,201107651,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2206.3010021373543,0.0,150.0,0.0,0.0,13566.0,0,5,5,70.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,308.9206608756749,0.01404951159158063,0.022771683685365984,13566.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -7652,0,49.0,3,0.0,1,111,6,64,52,5.0,1586.456009138882,0.0,1514.3807080401966,0.0,0.0,23944.0,50,71,1,6260,201107652,,,230.0,,3.0,0.0,4.0,2.0,4.0,2.3,5179.855907109938,0.0,1110.0,0.0,0.0,39166.0,4,1,5,100.0,6,4.0,4,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3100.8367171790787,0.12950370519458232,0.07917164676451716,17028.695652173916,5,3,5,5_1,5_2,5_1_0 -7653,1,34.0,5,297.0,6,111,2,62,55,2.0,0.0,0.0,1173.3039719951073,0.0,1668.3939079779411,50253.0,43,50,1,6261,201107653,,,480.0,,2.0,1.0,5.0,4.0,6.0,2.7,1111.9806964111115,0.0,860.0,960.0,0.0,29802.0,4,1,3,118.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2841.6978799730487,0.056547825601915284,0.09535258975817222,11037.777777777777,2,1,2_1,2_1_1,2_3_1,2_0_0 -7654,2,79.0,4,0.0,2,111,1,75,78,5.0,0.0,0.0,409.2920832541072,0.0,208.54923849724264,14993.0,71,71,2,6262,201107654,,,,276.0,0.0,1.0,3.0,0.0,2.0,1.5,3246.0648458910246,0.0,300.0,120.0,0.0,25220.0,5,5,3,59.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,617.8413217513498,0.04120865215442872,0.024498069855327115,16813.333333333332,4,2,4_0,4_0_0,4_4_0,4_0_1 -7655,1,22.0,5,340.0,1,400,4,85,62,3.0,0.0,0.0,1362.942637236177,43.44775802025888,0.0,14711.0,60,50,1,6264,201107655,,,,,1.0,0.0,6.0,1.0,3.0,1.8,2613.1848428216085,0.0,999.0,0.0,0.0,22921.0,6,1,3,80.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1406.3903952564358,0.09560127763282142,0.06135816043176283,12733.888888888889,3,2,3_1,3_1_1,3_0_1,3_1_0 -7656,1,43.0,3,319.0,99,111,2,0,54,1.0,0.0,0.0,442.1745124953847,0.0,913.9636851088122,27984.0,0,31,2,6265,201107656,,,200.0,,1.0,0.0,3.0,2.0,3.0,1.8,3955.6634910618177,850.0,0.0,0.0,0.0,15491.0,0,1,3,73.0,5,4.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1356.1381976041969,0.04846119917110481,0.08754361872081834,8606.111111111111,1,1,1_1,1_0_1,1_2_1,1_0_0 -7657,2,70.0,1,0.0,8,111,2,74,74,10.0,0.0,0.0,1260.61961642265,0.0,3628.7567498520216,58628.0,10,10,1,6268,201107657,,,430.0,,0.0,2.0,5.0,0.0,2.0,1.5,1033.2499092718933,0.0,924.0,2088.0,0.0,72905.0,5,5,2,120.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4889.376366274671,0.08339660855350126,0.0670650348573441,48603.333333333336,10,5,10,10_1,10_3,10_0_0 -7658,2,72.0,2,0.0,3,111,2,75,74,9.0,0.0,0.0,447.49267769115716,0.0,2632.934136027688,24551.0,60,50,1,6269,201107658,,,240.0,,0.0,0.0,5.0,0.0,2.0,1.5,1568.5924581454533,0.0,328.0,1515.0,0.0,55230.0,5,5,1,83.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3080.426813718845,0.12547052314442772,0.05577452134200335,36820.0,9,5,9,9_1,9_3,9_0_1 -7659,2,47.0,3,0.0,1,111,2,0,43,3.0,0.0,0.0,1300.5132720452489,0.0,2688.1284856141533,32880.0,0,20,2,627,201107659,,,,1050.0,1.0,1.0,3.0,0.0,1.0,1.0,3863.2146859301524,2500.0,0.0,0.0,0.0,13822.0,0,1,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3988.641757659402,0.1213090558898845,0.2885719691549271,13822.0,3,2,3_0,3_0_0,3_4_0,3_1_0 -7660,2,54.0,1,0.0,2,111,2,31,31,8.0,0.0,0.0,1417.0392612205032,0.0,2928.9847979251817,91095.0,10,10,1,6272,201107660,,,460.0,,2.0,2.0,5.0,4.0,6.0,3.1,973.2628098836171,2724.0,0.0,0.0,0.0,84723.0,1,1,1,85.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4346.024059145685,0.04770870035836967,0.05129686223511543,27330.0,8,4,8,8_1,8_2,8_0_1 -7661,0,43.0,4,0.0,5,112,2,54,62,6.0,0.0,55.5170527825376,1036.8732775770716,2606.865481215533,0.0,34676.0,60,42,1,6274,201107661,,,430.0,,2.0,0.0,5.0,2.0,4.0,2.1,7273.444816463601,0.0,760.0,0.0,0.0,40820.0,4,1,5,160.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3699.2558115751417,0.1066805805622085,0.0906236112585777,19438.095238095237,6,3,6,6_1,6_0,6_0_0 -7662,1,38.0,5,340.0,4,111,1,85,63,1.0,0.0,0.0,327.72934455540275,0.0,677.4083783747667,18107.0,71,50,8,6276,201107662,,,400.0,,1.0,0.0,5.0,3.0,5.0,2.6,2052.6184414082236,630.0,0.0,0.0,0.0,17910.0,6,4,3,82.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1005.1377229301695,0.05551100253659742,0.05612159257008205,6888.461538461538,1,1,1_1,1_0_1,1_2_1,1_0_1 -7663,2,55.0,2,0.0,8,111,1,43,37,10.0,0.0,0.0,1105.0886247860894,4692.357866187959,0.0,55318.0,33,10,1,6277,201107663,,,410.0,,2.0,2.0,5.0,0.0,2.0,1.5,1775.2038442819803,0.0,810.0,0.0,0.0,80557.0,1,1,1,150.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5797.446490974049,0.10480217092038846,0.07196701082431134,53704.666666666664,10,5,10,10_1,10_2,10_0_0 -7664,0,57.0,1,0.0,1,120,2,0,77,3.0,0.0,0.0,294.69029994295715,2838.0075538833103,0.0,25265.0,0,42,1,6281,201107664,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2551.3020926668437,0.0,216.0,0.0,0.0,13536.0,0,6,5,117.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3132.6978538262674,0.12399358218192232,0.2314345341183708,13536.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -7665,2,29.0,1,0.0,9,112,2,0,63,10.0,0.0,0.0,409.2920832541072,0.0,1042.7461924862132,42875.0,0,50,2,6284,201107665,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5822.310326035631,0.0,300.0,600.0,0.0,54806.0,0,1,1,50.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1452.0382757403204,0.033866781941465196,0.02649414800825312,54806.0,10,5,10,10_0,10_1,10_0_0 -7666,2,44.0,4,0.0,1,112,2,85,62,5.0,3172.912018277764,0.0,955.0148609262501,180.74267336427695,0.0,33415.0,50,50,1,6285,201107666,,,220.0,,1.0,0.0,5.0,2.0,4.0,2.3,2214.480418602655,0.0,700.0,0.0,0.0,41121.0,6,1,2,100.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4308.669552568292,0.12894417335233552,0.10478027169981984,17878.695652173916,5,3,5,5_1,5_0,5_1_0 -7667,2,76.0,2,0.0,5,120,2,0,75,7.0,0.0,1088.1342345377368,266.03985411516965,0.0,484.8769795060891,14507.0,0,71,1,6286,201107667,,,74.0,,0.0,3.0,4.0,0.0,1.0,1.0,5480.578273925074,0.0,195.0,279.0,0.0,21579.0,0,5,1,90.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1839.0510681589956,0.12676990888253917,0.08522410992905119,21579.0,6,3,6,6_1,6_1,6_0_0 -7668,2,66.0,1,0.0,5,111,2,78,74,7.0,0.0,0.0,905.5679478665742,0.0,2242.32705467761,59408.0,50,50,1,6288,201107668,,,460.0,,0.0,2.0,4.0,0.0,2.0,1.5,1757.5110332744298,954.0,300.0,700.0,0.0,34514.0,5,5,1,85.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3147.895002544184,0.05298772896822287,0.09120632214591713,23009.333333333332,7,4,7,7_1,7_4,7_0_0 -7669,2,56.0,2,0.0,6,112,2,77,53,9.0,0.0,0.0,1452.9868955520806,140.77073598563877,0.0,42518.0,41,41,1,6289,201107669,,,510.0,,1.0,2.0,7.0,0.0,2.0,1.5,1404.4473966801438,0.0,1065.0,0.0,0.0,54298.0,5,1,1,138.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1593.7576315377194,0.03748430386042898,0.029352050380082494,36198.666666666664,9,5,9,9_1,9_1,9_0_0 -7670,1,49.0,5,420.0,1,111,2,0,52,2.0,0.0,0.0,518.4366387885358,0.0,2085.4923849724264,19353.0,0,41,1,629,201107670,,,360.0,,1.0,3.0,4.0,2.0,3.0,1.8,1246.215042009794,0.0,380.0,1200.0,0.0,17990.0,0,1,3,132.0,7,6.0,2,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,2603.929023760962,0.1345491150602471,0.14474313639582892,9994.444444444443,2,1,2_1,2_1_1,2_2_1,2_1_0 -7671,2,90.0,3,0.0,6,111,6,0,77,4.0,0.0,0.0,482.9646582398465,0.0,0.0,15475.0,0,70,2,6290,201107671,,,,689.0,0.0,3.0,3.0,0.0,1.0,1.0,3452.330711650691,0.0,354.0,0.0,0.0,15643.0,0,5,3,65.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,482.9646582398465,0.031209347866872145,0.030874171082263407,15643.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -7672,2,55.0,3,0.0,4,400,2,75,43,7.0,0.0,0.0,3051.954634131459,159.8877495145527,0.0,48749.0,31,33,1,6292,201107672,,,799.0,,3.0,0.0,6.0,2.0,4.0,2.5,1841.287218223531,0.0,2237.0,0.0,0.0,54540.0,7,1,1,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3211.8423836460115,0.06588529782448894,0.058889666000110225,21816.0,7,4,7,7_1,7_0,7_0_1 -7673,2,49.0,3,0.0,6,111,2,52,37,10.0,0.0,749.4802125642576,654.8673332065715,0.0,761.2047205149356,36731.0,70,50,1,6293,201107673,,,260.0,,2.0,3.0,6.0,0.0,2.0,1.5,1171.9426965101786,0.0,480.0,438.0,0.0,58890.0,1,1,1,120.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2165.5522662857647,0.05895707348794655,0.036772835223055945,39260.0,10,5,10,10_1,10_3,10_0_0 -7674,2,75.0,2,0.0,2,111,2,0,77,4.0,0.0,0.0,768.1048095735412,0.0,1494.6028758969055,11496.0,0,71,1,6294,201107674,,,159.0,,0.0,2.0,4.0,0.0,1.0,1.0,3201.7025454162713,0.0,563.0,860.0,0.0,16727.0,0,5,3,57.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2262.7076854704464,0.19682565113695602,0.13527277368747812,16727.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -7675,2,71.0,3,0.0,5,111,2,77,75,7.0,0.0,0.0,504.79356934673217,0.0,1697.938383431717,24217.0,71,50,1,6295,201107675,,,182.0,,0.0,3.0,4.0,0.0,2.0,1.5,1359.692539840186,0.0,370.0,977.0,0.0,32483.0,5,5,1,88.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2202.7319527784493,0.09095808534411567,0.06781183858567402,21655.333333333332,6,3,6,6_1,6_3,6_0_0 -7676,1,36.0,3,72.0,5,111,1,42,46,4.0,0.0,0.0,886.7995137172322,0.0,0.0,40531.0,20,31,8,6296,201107676,,,,,2.0,0.0,4.0,3.0,5.0,2.4,2350.0221932850745,0.0,650.0,0.0,0.0,38941.0,1,1,1,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,886.7995137172322,0.021879536989396566,0.022772900380504668,16225.416666666668,4,2,4_1,4_0_1,4_3_1,4_0_0 -7677,2,60.0,2,0.0,1,300,2,67,75,9.0,0.0,277.585263912688,1641.2612538489698,208.54923849724264,0.0,33180.0,70,70,1,6297,201107677,,,500.0,,1.0,3.0,7.0,0.0,2.0,1.5,2150.695349173919,0.0,1203.0,0.0,0.0,51350.0,1,5,1,120.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2127.3957562589003,0.06411681001383063,0.0414293233935521,34233.333333333336,9,5,9,9_1,9_0,9_1_0 -7678,2,60.0,2,0.0,9,112,6,77,46,9.0,0.0,0.0,982.3009998098572,0.0,0.0,39095.0,60,50,1,6298,201107678,,,262.0,,1.0,1.0,4.0,0.0,2.0,1.5,1765.1682114253153,0.0,720.0,0.0,0.0,44704.0,5,1,2,140.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,982.3009998098572,0.025126000762497946,0.02197344756195994,29802.666666666668,9,5,9,9_1,9_1,9_0_0 -7679,1,42.0,4,220.0,4,111,1,85,63,1.0,0.0,0.0,260.1026544090498,0.0,537.6256971228307,23400.0,71,71,2,6299,201107679,,,,98.0,2.0,0.0,4.0,2.0,4.0,2.5,3107.895587367468,500.0,0.0,0.0,0.0,18070.0,6,1,3,72.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,797.7283515318805,0.03409095519367011,0.0441465606824505,7228.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -7680,2,24.0,4,0.0,99,111,2,0,81,1.0,0.0,0.0,682.1534720901786,0.0,0.0,15971.0,0,12,2,630,201107680,,,,450.0,1.0,0.0,1.0,0.0,1.0,1.0,3890.0334957231285,0.0,500.0,0.0,0.0,8820.0,0,4,3,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,682.1534720901786,0.042712007519264836,0.07734166350228783,8820.0,1,1,1_0,1_0_0,1_4_0,1_0_0 -7681,2,35.0,4,0.0,8,111,2,54,47,5.0,0.0,0.0,750.3688192991965,130.34327406077665,0.0,25042.0,31,31,1,6301,201107681,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2242.165924805463,0.0,550.0,0.0,0.0,25271.0,4,1,3,70.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,880.7120933599731,0.03516939914383728,0.03485070212338147,16847.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_0 -7682,1,19.0,2,189.0,5,111,1,0,55,3.0,0.0,0.0,215.56049718049644,0.0,78.20596443646599,10928.0,0,60,2,6302,201107682,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3451.956707471506,0.0,158.0,45.0,0.0,13683.0,0,4,3,32.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,293.76646161696243,0.026881996853675184,0.02146944833859259,13683.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -7683,2,72.0,3,0.0,8,120,2,77,75,8.0,2855.620816449988,693.9631597817199,818.5841665082144,0.0,0.0,31089.0,50,50,1,6304,201107683,,,400.0,,0.0,2.0,5.0,0.0,2.0,1.5,869.3007606518179,0.0,600.0,0.0,0.0,42782.0,5,5,2,130.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4368.168142739923,0.14050526368618876,0.1021029438254388,28521.333333333332,8,4,8,8_1,8_1,8_0_0 -7684,2,58.0,2,0.0,8,112,2,0,47,9.0,0.0,0.0,855.420454001084,0.0,0.0,30159.0,0,50,1,6305,201107684,,,195.0,,1.0,2.0,4.0,0.0,1.0,1.0,2172.418699767348,0.0,627.0,0.0,0.0,32644.0,0,1,2,93.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,855.420454001084,0.028363687589146987,0.026204523158959808,32644.0,9,5,9,9_1,9_0,9_0_0 -7685,1,23.0,3,80.0,1,111,2,84,68,3.0,0.0,0.0,1050.5163470188752,41.709847699448524,0.0,25241.0,42,43,2,6306,201107685,,,120.0,,1.0,0.0,2.0,0.0,2.0,1.5,3024.15721649785,0.0,770.0,0.0,0.0,18926.0,3,1,3,48.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1092.2261947183238,0.04327190660902198,0.057710355844780924,12617.333333333334,2,1,2_1,2_0_1,2_2_1,2_1_0 -7686,2,58.0,3,0.0,1,111,2,78,75,7.0,0.0,0.0,682.1534720901786,0.0,1181.7790181510416,22006.0,50,60,1,631,201107686,,,189.0,,0.0,1.0,4.0,0.0,2.0,1.5,1122.0886080686853,0.0,500.0,680.0,0.0,36490.0,5,7,1,70.0,7,5.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1863.9324902412202,0.08470110380083705,0.051080638263667315,24326.666666666668,7,4,7,7_1,7_2,7_1_0 -7687,2,83.0,3,0.0,5,120,6,77,78,3.0,3172.912018277764,0.0,382.0059443705,173.79103208103552,0.0,15118.0,71,70,1,6310,201107687,,,200.0,,0.0,1.0,3.0,0.0,2.0,1.5,2774.805192372436,0.0,280.0,0.0,0.0,19520.0,5,5,3,74.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3728.7089947293,0.24664036213317236,0.19101992800867315,13013.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -7688,1,39.0,4,360.0,8,112,4,85,67,3.0,158.64560091388822,0.0,1227.8762497623215,281.54147197127753,0.0,22327.0,71,50,1,6311,201107688,,,1000.0,125.0,1.0,0.0,3.0,3.0,5.0,2.4,4442.733046556479,0.0,900.0,0.0,0.0,29972.0,6,1,3,79.0,8,3.0,4,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1668.0633226474874,0.07471058909157018,0.05565405453915279,12488.333333333334,2,1,2_1,2_1_1,2_1_1,2_0_0 -7689,2,43.0,3,0.0,9,112,2,0,46,6.0,0.0,0.0,886.7995137172322,1737.9103208103552,2954.447545377604,28332.0,0,10,1,6313,201107689,,,140.0,,1.0,1.0,5.0,1.0,2.0,1.3,2660.160232892156,0.0,650.0,1700.0,0.0,26825.0,0,1,2,120.0,9,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5579.157379905191,0.19692070379447943,0.2079834997168757,20634.615384615383,6,3,6,6_1,6_0,6_0_0 -7690,2,65.0,3,0.0,1,111,2,0,74,10.0,0.0,0.0,436.5782221377143,0.0,1963.8386625157013,27020.0,0,10,1,6315,201107690,,,168.0,,0.0,1.0,3.0,0.0,1.0,1.0,2167.5085320195403,0.0,320.0,1130.0,0.0,39649.0,0,5,2,78.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2400.4168846534158,0.08883852274809088,0.06054167531724421,39649.0,10,5,10,10_1,10_3,10_1_0 -7691,2,82.0,3,0.0,2,111,2,0,78,6.0,0.0,346.98157989085996,712.1682248621465,0.0,1167.8757355845587,13802.0,0,70,1,6316,201107691,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2269.976472218568,0.0,522.0,672.0,0.0,20769.0,0,5,5,150.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2227.025540337565,0.16135527752047277,0.10722834707196134,20769.0,6,3,6,6_1,6_3,6_0_1 -7692,2,62.0,3,0.0,6,221,5,56,78,5.0,0.0,499.65347504283835,1313.827587245684,208.54923849724264,0.0,23610.0,50,71,1,6318,201107692,,,196.0,,1.0,3.0,6.0,0.0,2.0,1.5,4464.122104442328,0.0,963.0,0.0,0.0,27659.0,1,5,1,240.0,1,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2022.0303007857651,0.08564296064319209,0.0731056907619858,18439.333333333332,5,3,5,5_1,5_1,5_0_0 -7693,2,59.0,3,0.0,4,112,2,0,75,9.0,0.0,1179.737371628924,1882.743582968893,208.54923849724264,0.0,22120.0,0,60,1,6319,201107693,,,490.0,,0.0,3.0,4.0,0.0,1.0,1.0,2152.3871628510565,0.0,1380.0,0.0,0.0,31059.0,0,5,1,100.0,7,1.0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3271.0301930950595,0.1478765910079141,0.10531666161483176,31059.0,9,5,9,9_1,9_1,9_0_1 -7694,2,55.0,3,0.0,5,212,4,78,46,7.0,0.0,416.377895869032,2046.460416270536,130.34327406077665,0.0,18847.0,50,50,1,632,201107694,,,254.0,,1.0,2.0,3.0,0.0,2.0,1.5,1206.4540923398704,0.0,1500.0,0.0,0.0,36230.0,5,1,3,120.0,1,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2593.1815862003446,0.13759121272352864,0.07157553370688227,24153.333333333332,7,4,7,7_1,7_0,7_0_0 -7695,2,80.0,3,0.0,1,400,2,78,77,3.0,0.0,41.637789586903196,504.79356934673217,154.67401855212162,0.0,13801.0,70,70,1,6320,201107695,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1968.362553018535,0.0,370.0,0.0,0.0,20650.0,5,5,5,150.0,0,1.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,701.105377485757,0.05080105626300681,0.03395183426081148,13766.666666666666,3,2,3_0,3_1_0,3_1_0,3_1_0 -7696,2,53.0,2,0.0,5,111,1,52,43,8.0,0.0,0.0,491.1504999049286,0.0,145.98446694806984,27146.0,50,42,2,6322,201107696,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3264.5192258499574,0.0,360.0,84.0,0.0,39911.0,1,1,1,87.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,637.1349668529984,0.023470675858432124,0.015963893835108076,26607.333333333332,8,4,8,8_0,8_3,8_0_0 -7697,2,42.0,2,0.0,1,111,2,54,47,6.0,0.0,0.0,886.7995137172322,0.0,2080.278654009995,44294.0,44,42,1,6324,201107697,,,320.0,,2.0,0.0,4.0,2.0,4.0,2.3,2265.1402440164943,0.0,650.0,1197.0,0.0,44338.0,1,4,2,100.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2967.078167727227,0.06698600640554538,0.0669195310507291,19277.391304347828,6,3,6,6_1,6_2,6_1_0 -7698,1,27.0,3,214.0,6,111,4,0,42,2.0,0.0,0.0,491.1504999049286,0.0,0.0,29607.0,0,10,2,6329,201107698,,,,127.0,1.0,0.0,1.0,0.0,1.0,1.0,3206.842026887746,0.0,360.0,0.0,0.0,11763.0,0,1,3,28.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,491.1504999049286,0.016588999219945572,0.04175384679970489,11763.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -7699,2,58.0,4,0.0,6,112,5,0,67,2.0,0.0,693.9631597817199,354.7198054868929,0.0,868.9551604051776,17868.0,0,70,1,633,201107699,,,160.0,,1.0,2.0,4.0,0.0,1.0,1.0,1653.902844589337,0.0,260.0,500.0,0.0,11940.0,0,4,1,95.0,9,0.0,1,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1917.6381256737905,0.10732248296808766,0.16060620818038446,11940.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -7700,2,53.0,4,0.0,1,111,2,21,37,6.0,3490.203220105541,0.0,843.1416915034608,0.0,0.0,26110.0,42,42,1,6330,201107700,,,277.0,,2.0,0.0,6.0,2.0,4.0,2.1,2131.2000014069095,0.0,618.0,0.0,0.0,41803.0,1,1,2,150.0,9,7.0,4,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4333.344911609001,0.16596495257024135,0.10366109876346198,19906.190476190477,6,3,6,6_1,6_3,6_1_0 -7701,2,61.0,2,0.0,1,111,2,74,74,10.0,0.0,0.0,702.618076252884,0.0,3041.3430614181216,56494.0,12,20,1,6333,201107701,,,321.0,,0.0,2.0,8.0,0.0,2.0,1.5,1298.6986260893204,0.0,515.0,1750.0,0.0,58682.0,5,5,1,130.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3743.9611376710054,0.06627183661399451,0.06380084417148368,39121.333333333336,10,5,10,10_1,10_3,10_1_0 -7702,0,23.0,2,0.0,1,120,2,11,52,4.0,0.0,0.0,0.0,0.0,2085.4923849724264,22150.0,43,33,5,6334,201107702,,,,,2.0,0.0,7.0,0.0,2.0,1.5,3075.089521101916,0.0,0.0,1200.0,0.0,23563.0,1,1,5,100.0,0,0.0,3,3,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2085.4923849724264,0.09415315507776191,0.08850708250105786,15708.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -7703,2,56.0,3,0.0,6,112,5,52,77,8.0,0.0,20.818894793451598,1283.812834473716,187.69431464751835,0.0,29122.0,50,71,1,6337,201107703,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2042.8681552660496,0.0,941.0,0.0,0.0,38700.0,1,5,1,90.0,6,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1492.3260439146861,0.05124394079783964,0.03856139648358362,25800.0,8,4,8,8_1,8_0,8_0_0 -7704,2,75.0,1,0.0,5,300,4,77,78,5.0,0.0,521.8602961558535,1637.1683330164287,139.0328256648284,0.0,22258.0,71,71,1,6339,201107704,,,,,0.0,4.0,8.0,0.0,2.0,1.5,2707.934099674033,0.0,1200.0,0.0,0.0,28262.0,5,5,1,170.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2298.061454837111,0.10324653854061959,0.0813127681988929,18841.333333333332,5,3,5,5_1,5_1,5_0_0 -7705,2,59.0,3,0.0,1,120,2,86,75,7.0,0.0,832.755791738064,1500.737638598393,130.34327406077665,0.0,35299.0,60,50,1,634,201107705,,,170.0,,0.0,2.0,5.0,0.0,2.0,1.5,2371.955907043185,0.0,1100.0,0.0,0.0,36104.0,6,5,1,169.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2463.836704397234,0.06979905108918762,0.0682427626965775,24069.333333333332,7,4,7,7_1,7_0,7_1_0 -7706,2,74.0,4,0.0,5,111,4,0,77,6.0,0.0,624.566843803548,1910.0297218525002,187.69431464751835,0.0,32329.0,0,71,1,6341,201107706,,,420.0,,0.0,2.0,3.0,0.0,1.0,1.0,3519.3686008276286,0.0,1400.0,0.0,0.0,20632.0,0,5,5,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2722.2908803035666,0.08420584862827699,0.13194507950288709,20632.0,6,3,6,6_1,6_3,6_0_0 -7707,2,70.0,1,0.0,1,111,2,74,74,10.0,9518.736054833293,0.0,1375.2213997338001,0.0,0.0,51479.0,10,10,1,6345,201107707,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1312.9386274545186,0.0,1008.0,0.0,0.0,88584.0,5,5,1,160.0,8,6.0,3,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,10893.957454567093,0.21161944588214793,0.12297883878089828,59056.0,10,5,10,10_1,10_2,10_1_0 -7708,2,74.0,3,0.0,3,400,1,77,75,3.0,0.0,0.0,540.2655498954215,222.45252106372547,0.0,20687.0,60,70,2,6347,201107708,,,,259.0,0.0,3.0,4.0,0.0,2.0,1.5,5946.567498919314,0.0,396.0,0.0,0.0,19838.0,5,5,3,69.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,762.718070959147,0.03686943834094586,0.03844732689581344,13225.333333333334,3,2,3_0,3_0_0,3_1_0,3_0_1 -7709,2,78.0,3,0.0,1,111,4,78,75,4.0,0.0,0.0,1291.9986761387984,0.0,0.0,18234.0,71,71,1,6348,201107709,,,,510.0,0.0,6.0,4.0,0.0,2.0,1.5,2433.1627917663627,0.0,947.0,0.0,0.0,23571.0,5,5,3,73.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1291.9986761387984,0.07085656883507724,0.05481306164943356,15714.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -7710,0,34.0,1,0.0,2,111,4,0,42,8.0,0.0,0.0,1364.3069441803573,0.0,0.0,35439.0,0,20,1,6349,201107710,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2063.563915513944,0.0,1000.0,0.0,0.0,28259.0,0,1,5,70.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1364.3069441803573,0.03849733187111254,0.048278670306109814,28259.0,8,4,8,8_1,8_3,8_0_1 -7711,1,21.0,3,200.0,7,111,4,0,84,1.0,0.0,0.0,477.50743046312505,0.0,0.0,6314.0,0,41,2,6350,201107711,,,,115.0,0.0,0.0,1.0,0.0,1.0,1.0,3680.288400961677,0.0,350.0,0.0,0.0,4399.0,0,3,3,20.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,477.50743046312505,0.07562677074170494,0.10854908626122416,4399.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -7712,2,42.0,1,0.0,1,112,2,37,31,10.0,0.0,0.0,2227.3275515095843,274.5898306880361,6649.990961322547,136503.0,10,10,1,6353,201107712,,,,,2.0,0.0,8.0,1.0,3.0,1.8,1695.2583638535627,1659.0,1000.0,2800.0,0.0,308518.0,1,1,1,239.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,9151.908343520168,0.06704547404467424,0.029664098508094077,171398.88888888888,10,5,10,10_1,10_0,10_1_0 -7713,2,50.0,2,0.0,9,400,2,0,67,6.0,1248.5408791923003,97.1548423694408,477.50743046312505,62.56477154917279,0.0,19813.0,0,50,1,6354,201107713,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3445.0211143447077,0.0,350.0,0.0,0.0,19971.0,0,1,2,130.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1885.7679235740388,0.09517831340907681,0.0944253128823814,19971.0,6,3,6,6_1,6_0,6_0_0 -7714,2,68.0,2,0.0,1,400,2,74,74,9.0,2365.4059096260735,0.0,982.3009998098572,118.17790181510415,0.0,40579.0,50,50,1,6355,201107714,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2442.2773681235067,0.0,720.0,0.0,0.0,54474.0,5,5,1,150.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3465.884811251035,0.08541079896623956,0.0636245697259433,36316.0,9,5,9,9_1,9_0,9_1_0 -7715,2,59.0,3,0.0,1,112,5,0,85,2.0,0.0,721.7216861729887,266.03985411516965,0.0,0.0,9243.0,0,50,1,6359,201107715,,,106.0,,0.0,0.0,5.0,0.0,1.0,1.0,1988.8812450301182,0.0,195.0,0.0,0.0,11206.0,0,6,2,83.0,8,0.0,1,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,987.7615402881584,0.10686590287657237,0.0881457737183793,11206.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -7716,2,40.0,1,0.0,3,111,1,38,46,10.0,0.0,0.0,409.2920832541072,0.0,0.0,62015.0,10,10,8,636,201107716,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2454.839413160629,0.0,300.0,0.0,0.0,85161.0,1,1,2,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,409.2920832541072,0.006599888466566269,0.004806097665059208,40552.85714285714,10,5,10,10_0,10_4,10_0_1 -7717,2,32.0,2,0.0,3,111,2,45,37,9.0,0.0,0.0,718.9897595830482,0.0,1558.9055577668887,40258.0,31,10,1,6360,201107717,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2199.256347936892,0.0,527.0,897.0,0.0,60676.0,1,1,2,100.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2277.8953173499367,0.056582426284215226,0.03754194932675089,28893.333333333332,8,4,8,8_1,8_3,8_0_1 -7718,2,61.0,4,0.0,99,111,2,56,64,7.0,0.0,0.0,491.1504999049286,0.0,469.23578661879594,9030.0,41,70,2,6361,201107718,,,,281.0,2.0,8.0,4.0,0.0,2.0,1.5,3709.769689255578,0.0,360.0,270.0,0.0,34070.0,1,1,3,80.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,960.3862865237245,0.10635507048989197,0.028188620091685487,22713.333333333332,7,4,7,7_0,7_2,7_0_0 -7719,0,54.0,3,0.0,5,111,2,52,52,9.0,0.0,0.0,262.1834756443222,0.0,541.9267026998133,31561.0,50,71,2,6362,201107719,,,,,2.0,2.0,3.0,0.0,2.0,1.5,3181.1698864067816,504.0,0.0,0.0,0.0,43971.0,1,1,5,56.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,804.1101783441354,0.02547796895992318,0.018287284308842997,29314.0,9,5,9,9_0,9_3,9_0_0 -7720,2,37.0,2,0.0,2,111,1,38,38,10.0,0.0,0.0,768.5384705699793,0.0,1085.6415352859399,39909.0,10,20,2,6363,201107720,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2884.7161639914384,924.0,211.0,53.0,0.0,67358.0,1,1,1,67.0,8,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1854.1800058559193,0.04646019709478862,0.027527242582260743,44905.333333333336,10,5,10,10_0,10_3,10_0_1 -7721,2,25.0,1,0.0,1,300,2,0,38,10.0,0.0,0.0,3285.2511215863,86.89551604051776,0.0,43175.0,0,12,1,6364,201107721,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2335.61931351633,0.0,2408.0,0.0,0.0,59401.0,0,1,3,75.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3372.1466376268177,0.07810414910542716,0.05676918970432851,59401.0,10,5,10,10_1,10_0,10_1_0 -7722,2,37.0,2,0.0,5,111,2,42,42,9.0,0.0,0.0,2060.1034857123395,43.44775802025888,0.0,32086.0,20,31,1,6365,201107722,,,276.0,,2.0,0.0,4.0,0.0,2.0,1.5,1380.8073759154531,0.0,1510.0,0.0,0.0,45320.0,1,1,2,90.0,5,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2103.5512437325983,0.06555978444594522,0.04641551729330535,30213.333333333332,9,5,9,9_1,9_2,9_0_0 -7723,2,49.0,3,0.0,6,111,4,46,38,9.0,0.0,0.0,1637.1683330164287,166.8393907977941,0.0,68901.0,20,31,1,6366,201107723,,,,,2.0,0.0,6.0,2.0,4.0,2.3,2105.960938144196,0.0,1200.0,0.0,0.0,81707.0,1,1,1,170.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1804.0077238142228,0.026182605823053696,0.02207898618006074,35524.782608695656,9,5,9,9_1,9_4,9_0_0 -7725,2,84.0,3,0.0,7,112,2,0,78,3.0,1956.1002592682416,0.0,1856.8217510294662,93.84715732375918,0.0,24778.0,0,71,1,637,201107725,,,,,0.0,0.0,6.0,0.0,3.0,2.0,1144.13754931602,0.0,1361.0,0.0,0.0,25863.0,0,5,5,154.0,7,0.0,5,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3906.769167621467,0.15767088415616543,0.1510563031211177,12931.5,3,2,3_0,3_1_0,3_0_0,3_0_0 -7726,2,52.0,2,0.0,9,111,4,0,22,6.0,0.0,0.0,654.8673332065715,0.0,0.0,23358.0,0,43,2,6371,201107726,,,,482.0,1.0,2.0,2.0,0.0,1.0,1.0,5180.839571339029,0.0,480.0,0.0,0.0,19269.0,0,1,3,53.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,654.8673332065715,0.02803610468390151,0.033985538077044554,19269.0,6,3,6,6_0,6_3,6_0_0 -7727,2,33.0,4,0.0,1,111,4,0,43,7.0,125.3300247219717,98.54276868900423,2865.0445827787503,0.0,0.0,25687.0,0,33,1,6373,201107727,,,246.0,,1.0,0.0,5.0,0.0,1.0,1.0,2811.1130678858717,0.0,2100.0,0.0,0.0,21930.0,0,1,2,110.0,8,7.0,1,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3088.9173761897264,0.12025216553858864,0.14085350552620732,21930.0,7,4,7,7_1,7_3,7_1_0 -7728,0,34.0,4,0.0,1,111,6,0,67,1.0,47.593680274166466,0.0,477.50743046312505,0.0,1793.5234510762866,17295.0,0,20,1,6375,201107728,,,230.0,,1.0,0.0,6.0,0.0,1.0,1.0,1423.8179750299423,0.0,350.0,1032.0,0.0,5370.0,0,4,5,80.0,9,7.0,1,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2318.624561813578,0.13406328776025314,0.43177366141779855,5370.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -7729,2,60.0,4,0.0,2,112,2,0,78,4.0,0.0,0.0,259.2183193942679,0.0,1685.7730111860446,22839.0,0,70,1,6377,201107729,,,28.0,,0.0,1.0,5.0,0.0,1.0,1.0,1697.0480545072862,0.0,190.0,970.0,0.0,16350.0,0,5,1,72.0,10,1.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1944.9913305803125,0.08516096723062798,0.1189597144085818,16350.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -7730,2,64.0,3,0.0,5,112,2,77,72,6.0,0.0,0.0,832.3284941089594,0.0,1720.4022307930582,40899.0,60,50,1,6379,201107730,,,261.0,,0.0,2.0,7.0,0.0,2.0,1.5,2284.2600036285667,1600.0,0.0,0.0,0.0,30003.0,5,5,1,360.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2552.7307249020178,0.06241548020494432,0.08508251591180942,20002.0,6,3,6,6_1,6_1,6_0_0 -7731,2,58.0,2,0.0,2,111,2,75,42,8.0,0.0,0.0,1337.02080529675,0.0,868.9551604051776,76957.0,60,30,1,638,201107731,,,360.0,,1.0,1.0,6.0,1.0,3.0,2.0,1427.642053385113,0.0,980.0,500.0,0.0,52696.0,5,1,2,140.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2205.9759657019276,0.028665046268720552,0.04186230388837725,26348.0,8,4,8,8_1,8_2,8_0_1 -7732,2,67.0,2,0.0,4,111,1,0,78,5.0,0.0,0.0,341.0767360450893,0.0,460.5462350147441,13758.0,0,71,2,6381,201107732,,,,279.0,0.0,1.0,3.0,0.0,1.0,1.0,4425.213872079848,0.0,250.0,265.0,0.0,17380.0,0,5,3,66.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,801.6229710598334,0.05826595225031497,0.04612330098157844,17380.0,5,3,5,5_0,5_4,5_0_1 -7733,2,61.0,3,0.0,7,300,2,75,74,9.0,0.0,555.170527825376,1637.1683330164287,107.75043989024202,0.0,33327.0,70,60,1,6384,201107733,,,140.0,,0.0,5.0,4.0,0.0,2.0,1.5,2022.662859588995,0.0,1200.0,0.0,0.0,44543.0,5,5,2,96.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2300.0893007320465,0.06901579202244566,0.051637503103339394,29695.333333333332,9,5,9,9_1,9_0,9_0_0 -7734,2,42.0,3,0.0,1,300,6,56,38,4.0,0.0,0.0,2046.460416270536,2822.3663609960167,0.0,39029.0,43,31,1,6385,201107734,,,240.0,,2.0,0.0,7.0,2.0,5.0,3.0,1723.2335473898863,0.0,1500.0,0.0,0.0,48399.0,1,1,1,150.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4868.826777266553,0.12474895019771332,0.10059767303594193,16133.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -7735,2,33.0,3,0.0,4,111,1,84,63,3.0,0.0,0.0,382.0059443705,0.0,0.0,14083.0,71,50,2,6386,201107735,,,,252.0,1.0,0.0,3.0,0.0,2.0,1.5,3533.533623757542,0.0,280.0,0.0,0.0,21970.0,3,1,3,70.0,8,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,382.0059443705,0.027125324460022724,0.01738761694904415,14646.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_1 -7736,2,43.0,3,0.0,4,111,2,0,54,9.0,0.0,0.0,39.535603470175566,0.0,81.71910596267026,41274.0,0,12,8,6387,201107736,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2711.311596698042,76.0,0.0,0.0,0.0,33048.0,0,1,2,76.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,121.25470943284583,0.0029377988426817327,0.003669048336747937,33048.0,9,5,9,9_0,9_2,9_0_1 -7737,2,79.0,3,0.0,6,111,2,86,72,1.0,0.0,388.6193694777632,477.50743046312505,2606.865481215533,0.0,15038.0,50,50,1,6388,201107737,,,250.0,,0.0,2.0,3.0,0.0,2.0,1.5,1849.1528726596994,0.0,350.0,0.0,0.0,12143.0,6,5,1,100.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3472.992281156421,0.23094775110762208,0.2860077642391848,8095.333333333333,1,1,1_0,1_1_0,1_3_0,1_0_0 -7738,2,39.0,3,0.0,5,111,2,67,64,4.0,0.0,0.0,425.66376658427146,0.0,1006.2500757491957,19046.0,50,41,2,6389,201107738,,,,539.0,2.0,0.0,5.0,2.0,4.0,2.1,2737.2248589528112,0.0,312.0,579.0,0.0,32016.0,4,1,3,105.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1431.913842333467,0.07518186718121743,0.04472494510037066,15245.714285714284,4,2,4_0,4_0_0,4_2_0,4_0_0 -7739,1,24.0,3,263.0,3,111,1,85,85,1.0,0.0,244.2750322431654,491.1504999049286,0.0,625.6477154917279,10913.0,71,60,2,6390,201107739,176.0,176.0,,,0.0,0.0,3.0,2.0,4.0,2.1,4302.433212609296,0.0,360.0,360.0,0.0,14278.0,7,6,3,40.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1361.073247639822,0.12472035623933127,0.09532660370078597,6799.047619047618,1,1,1_1,1_0_1,1_3_1,1_0_1 -7740,2,44.0,2,0.0,9,112,4,42,69,6.0,0.0,0.0,1691.740610783643,72.99223347403492,0.0,44574.0,20,71,1,6391,201107740,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1729.4241761430053,0.0,1240.0,0.0,0.0,51042.0,1,1,2,130.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1764.732844257678,0.039591080994698206,0.03457413197479875,21267.5,6,3,6,6_1,6_0,6_0_0 -7741,2,58.0,3,0.0,6,112,2,75,45,10.0,4105.748151651427,333.10231669522557,818.5841665082144,145.98446694806984,0.0,47141.0,41,41,1,6393,201107741,,,650.0,,2.0,1.0,5.0,1.0,3.0,2.0,1416.0076345035798,0.0,600.0,0.0,0.0,95085.0,5,1,1,122.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5403.419101802937,0.11462249637901056,0.056827250373906894,47542.5,10,5,10,10_1,10_0,10_0_0 -7742,2,52.0,3,0.0,7,111,1,0,56,5.0,0.0,0.0,463.8643610213215,0.0,0.0,22172.0,0,60,2,6394,201107742,,,,480.0,1.0,0.0,2.0,0.0,1.0,1.0,5667.038027556025,0.0,340.0,0.0,0.0,17709.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,463.8643610213215,0.020921178108484643,0.026193707212226636,17709.0,5,3,5,5_0,5_4,5_0_0 -7743,1,26.0,5,295.0,1,111,1,85,63,1.0,0.0,0.0,452.9499054678786,0.0,1421.6106424228706,20788.0,20,50,2,6395,201107743,692.0,692.0,,,1.0,0.0,2.0,2.0,4.0,2.1,5948.719128702099,0.0,332.0,818.0,0.0,13090.0,6,4,3,33.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1874.5605478907491,0.09017512737592598,0.14320554223764317,6233.333333333333,1,1,1_1,1_0_1,1_4_1,1_1_0 -7744,1,35.0,4,70.0,8,111,2,0,54,4.0,0.0,0.0,382.0059443705,0.0,521.3730962431066,14709.0,0,41,2,6399,201107744,,,195.0,335.0,1.0,0.0,3.0,1.0,2.0,1.3,3443.372855825948,0.0,280.0,300.0,0.0,20075.0,0,1,3,69.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,903.3790406136065,0.06141675440979037,0.04500020127589572,15442.307692307691,4,2,4_1,4_0_1,4_3_1,4_0_0 -7745,2,48.0,4,0.0,1,111,2,11,85,4.0,0.0,0.0,1364.3069441803573,0.0,3128.2385774586396,50493.0,30,31,1,64,201107745,,,510.0,,1.0,3.0,9.0,1.0,3.0,2.0,2398.185768565184,0.0,1000.0,1800.0,0.0,31114.0,1,4,1,280.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4492.545521638996,0.08897363043667432,0.14438984128170587,15557.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -7746,2,69.0,3,0.0,5,112,6,0,77,2.0,1396.0812880422163,0.0,422.93515269591074,140.77073598563877,0.0,18503.0,0,70,1,640,201107746,,,,,1.0,0.0,3.0,1.0,2.0,1.5,4202.1721284854775,0.0,310.0,0.0,0.0,18386.0,0,5,1,75.0,8,0.0,2,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1959.787176723766,0.10591726621216915,0.10659127470487142,12257.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -7747,2,67.0,3,0.0,6,111,5,0,75,8.0,0.0,0.0,1991.8881385033217,69.5164128324142,0.0,29373.0,0,60,1,6400,201107747,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2489.171097546322,0.0,1460.0,0.0,0.0,25915.0,0,5,1,98.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2061.404551335736,0.07018025231797011,0.07954484087731954,25915.0,8,4,8,8_1,8_3,8_0_0 -7748,2,75.0,2,0.0,1,120,2,0,71,1.0,0.0,693.9631597817199,272.86138883607146,130.34327406077665,0.0,11619.0,0,70,1,6402,201107748,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2651.256014544505,0.0,200.0,0.0,0.0,8928.0,0,5,1,150.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1097.167822678568,0.09442876518448816,0.12289066114231272,8928.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -7749,1,73.0,3,22.0,2,111,1,0,77,4.0,0.0,0.0,231.93218051066074,0.0,257.2107274799326,14761.0,0,60,2,6403,201107749,,,,283.0,0.0,2.0,3.0,0.0,1.0,1.0,4671.4761976598675,0.0,170.0,148.0,0.0,14754.0,0,5,3,67.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,489.14290799059336,0.03313751832467945,0.03315324034096471,14754.0,3,2,3_1,3_0_1,3_4_1,3_0_1 -7750,2,60.0,3,0.0,8,111,2,68,62,7.0,0.0,0.0,450.22129157951787,0.0,2346.1789330939796,68185.0,70,50,1,6405,201107750,,,,,3.0,3.0,5.0,1.0,4.0,2.5,1696.0277239803595,0.0,330.0,1350.0,0.0,59910.0,1,1,2,120.0,8,6.0,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2796.4002246734976,0.04101195607059467,0.04667668543938404,23964.0,7,4,7,7_1,7_2,7_0_0 -7751,1,56.0,4,19.0,5,111,2,0,46,4.0,0.0,0.0,57.30089165557501,0.0,78.20596443646599,21864.0,0,10,8,6406,201107751,,,,271.0,1.0,1.0,3.0,0.0,1.0,1.0,2594.5142698863374,0.0,42.0,45.0,0.0,16314.0,0,1,3,50.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,135.506856092041,0.00619771570124593,0.00830616992105192,16314.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -7752,2,56.0,3,0.0,99,400,1,0,52,6.0,0.0,0.0,267.40416105935003,62.56477154917279,0.0,12110.0,0,50,8,6407,201107752,,,,252.0,1.0,1.0,3.0,0.0,1.0,1.0,5722.896091542138,0.0,196.0,0.0,0.0,19636.0,0,1,3,70.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,329.96893260852283,0.02724764100813566,0.016804284610334223,19636.0,6,3,6,6_0,6_1,6_0_0 -7753,2,64.0,2,0.0,5,120,4,78,75,6.0,0.0,0.0,2249.7421509534092,0.0,0.0,32489.0,70,50,1,6408,201107753,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1002.5429425094204,0.0,1649.0,0.0,0.0,32089.0,5,5,1,120.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2249.7421509534092,0.06924627261391268,0.07010945030862319,21392.666666666668,6,3,6,6_1,6_1,6_0_0 -7754,2,80.0,3,0.0,2,111,2,0,77,4.0,0.0,0.0,1159.6609025533037,104.27461924862132,0.0,23944.0,0,50,1,6409,201107754,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2658.378726729256,0.0,850.0,0.0,0.0,16237.0,0,5,5,60.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1263.935521801925,0.05278715009196145,0.07784292183296945,16237.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -7755,2,77.0,3,0.0,1,400,6,0,74,10.0,0.0,0.0,1483.5916548074977,0.0,607.5170377487987,14368.0,0,41,1,6410,201107755,,,190.0,,0.0,0.0,6.0,0.0,1.0,1.0,2822.2288390498065,565.0,872.0,0.0,0.0,39663.0,0,5,1,95.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2091.1086925562963,0.14553930209885135,0.05272189931564169,39663.0,10,5,10,10_1,10_0,10_1_0 -7756,1,45.0,5,277.0,2,120,5,0,64,5.0,0.0,0.0,1364.3069441803573,0.0,0.0,28604.0,0,50,1,6411,201107756,,,560.0,,2.0,1.0,6.0,3.0,4.0,2.3,1141.1253032381599,0.0,1000.0,0.0,0.0,43284.0,0,1,2,170.0,0,0.0,2,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1364.3069441803573,0.0476963691854411,0.03151989058729224,18819.13043478261,5,3,5,5_1,5_0,5_0_1 -7757,2,32.0,5,0.0,9,112,4,65,54,6.0,0.0,0.0,2960.546068871375,0.0,0.0,53374.0,50,50,1,6412,201107757,,,305.0,,2.0,0.0,6.0,2.0,4.0,2.1,1534.6534720406987,0.0,2170.0,0.0,0.0,43423.0,1,1,2,136.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2960.546068871375,0.055467944483669485,0.0681792153667728,20677.619047619046,6,3,6,6_1,6_0,6_0_0 -7758,2,55.0,3,0.0,1,111,2,0,45,9.0,0.0,0.0,545.7227776721429,0.0,3733.031369100643,32846.0,0,41,1,6414,201107758,,,340.0,584.0,2.0,1.0,5.0,2.0,3.0,2.0,2374.590538215138,0.0,400.0,2148.0,0.0,65012.0,0,1,3,107.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4278.754146772786,0.13026712984146582,0.06581483644208433,32506.0,9,5,9,9_1,9_4,9_1_0 -7759,2,48.0,3,0.0,3,111,1,0,45,8.0,0.0,0.0,946.1823061447074,0.0,602.1407807775704,40156.0,0,41,2,6415,201107759,480.0,480.0,,507.0,1.0,2.0,5.0,0.0,1.0,1.0,3408.5950100842897,560.0,480.0,0.0,0.0,28110.0,0,1,3,85.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1548.3230869222778,0.03855770213473149,0.055080863995812086,28110.0,8,4,8,8_0,8_2,8_0_1 -7760,1,38.0,5,120.0,1,111,2,85,62,2.0,0.0,0.0,765.3761956851804,0.0,2613.817122498774,21427.0,70,70,1,6416,201107760,,,720.0,,1.0,0.0,4.0,3.0,5.0,2.4,1392.2859664880705,0.0,561.0,1504.0,0.0,26570.0,6,1,2,67.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,3379.1933181839545,0.15770725338049912,0.12718077975852293,11070.833333333334,2,1,2_1,2_1_1,2_2_1,2_1_0 -7761,2,43.0,1,0.0,7,120,4,77,43,8.0,0.0,0.0,2551.253985617268,0.0,0.0,38958.0,60,33,1,6421,201107761,,,,,1.0,4.0,4.0,0.0,2.0,1.5,4201.277227252582,0.0,1870.0,0.0,0.0,43043.0,5,1,1,64.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2551.253985617268,0.06548729363974712,0.05927221582178909,28695.333333333332,8,4,8,8_1,8_0,8_0_0 -7762,2,67.0,1,0.0,4,112,6,77,75,7.0,1768.8984501898537,0.0,1776.3276413228252,312.82385774586396,0.0,33655.0,70,60,1,6422,201107762,,,,,0.0,3.0,12.0,0.0,2.0,1.5,2283.9686729478626,0.0,1302.0,0.0,0.0,33817.0,6,5,1,350.0,7,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3858.049949258543,0.11463526814020333,0.11408610903564903,22544.666666666668,7,4,7,7_1,7_2,7_0_1 -7763,2,36.0,2,0.0,5,112,5,62,52,6.0,0.0,652.3253701948167,1309.734666413143,173.79103208103552,0.0,49511.0,50,44,1,6424,201107763,,,130.0,,2.0,0.0,4.0,3.0,5.0,2.6,2157.524741374907,0.0,960.0,0.0,0.0,53356.0,1,1,2,105.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2135.8510686889954,0.043138920011492304,0.04003019470516897,20521.53846153846,6,3,6,6_1,6_0,6_0_0 -7764,2,28.0,3,0.0,9,111,4,0,46,6.0,0.0,0.0,840.4130776151001,0.0,0.0,16426.0,0,31,2,6426,201107764,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3634.9113442070948,0.0,616.0,0.0,0.0,21299.0,0,1,2,39.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,840.4130776151001,0.05116358685103495,0.039457865515521856,21299.0,6,3,6,6_0,6_3,6_0_0 -7765,2,75.0,1,0.0,1,400,5,72,75,9.0,0.0,138.792631956344,1260.61961642265,140.77073598563877,0.0,38232.0,60,30,1,6429,201107765,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1926.297926265797,0.0,924.0,0.0,0.0,45763.0,5,5,1,124.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1540.1829843646328,0.040285179545005045,0.03365563849320702,30508.666666666668,9,5,9,9_1,9_0,9_1_0 -7766,1,42.0,3,205.0,3,111,1,0,56,3.0,0.0,0.0,482.9646582398465,0.0,0.0,12229.0,0,41,2,643,201107766,,,,,1.0,1.0,1.0,0.0,1.0,1.0,3767.0186680461,0.0,354.0,0.0,0.0,13360.0,0,4,3,24.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,482.9646582398465,0.03949338934008067,0.036150049269449584,13360.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -7768,2,24.0,2,0.0,6,112,4,42,47,7.0,0.0,0.0,321.97643882656433,0.0,0.0,21640.0,43,31,1,6431,201107768,,,,630.0,2.0,0.0,2.0,0.0,2.0,1.5,3040.960416677528,0.0,236.0,0.0,0.0,33460.0,1,1,3,50.0,8,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,321.97643882656433,0.014878763346883749,0.009622726802945736,22306.666666666668,7,4,7,7_1,7_0,7_0_0 -7769,2,61.0,2,0.0,1,111,2,42,34,10.0,0.0,0.0,1278.7399880347468,0.0,2465.6051044662404,74255.0,10,10,1,6432,201107769,,,285.0,,2.0,2.0,5.0,0.0,2.0,1.5,1198.8189760690527,819.0,625.0,912.0,0.0,75028.0,1,1,1,110.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3744.3450925009874,0.050425494478499595,0.04990596967133587,50018.666666666664,10,5,10,10_1,10_3,10_1_0 -7770,2,65.0,4,0.0,1,300,2,0,75,2.0,1110.5192063972174,0.0,573.00891655575,64.30268186998315,0.0,30361.0,0,50,1,6433,201107770,,,,,0.0,1.0,7.0,0.0,1.0,1.0,1693.9648836081096,0.0,420.0,0.0,0.0,10790.0,0,5,1,197.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1747.8308048229505,0.0575682884234034,0.1619861728288184,10790.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -7771,2,41.0,1,0.0,6,111,4,34,38,10.0,0.0,0.0,2414.8232911992322,86.89551604051776,0.0,57119.0,20,12,1,6435,201107771,,,550.0,,2.0,0.0,5.0,2.0,4.0,2.1,981.325876549705,0.0,1770.0,0.0,0.0,88136.0,1,1,2,140.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2501.71880723975,0.04379836494405977,0.028384755460195036,41969.52380952381,10,5,10,10_1,10_2,10_0_0 -7772,2,45.0,2,0.0,1,400,5,11,45,5.0,0.0,277.585263912688,1589.4175899701163,156.41192887293198,0.0,37586.0,50,41,1,6436,201107772,,,157.0,,2.0,0.0,4.0,1.0,4.0,2.3,1061.9973960317013,0.0,1165.0,0.0,0.0,43343.0,1,1,3,90.0,0,0.0,5,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2023.4147827557363,0.05383426761974502,0.04668377322187519,18844.782608695652,5,3,5,5_1,5_0,5_1_0 -7773,2,73.0,1,0.0,5,111,2,74,74,10.0,0.0,0.0,682.1534720901786,0.0,6082.686122836243,92975.0,20,10,1,6437,201107773,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1615.3165765999543,0.0,500.0,3500.0,0.0,79065.0,5,5,1,150.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,6764.839594926421,0.07275976977603034,0.08556048308260825,52710.0,10,5,10,10_1,10_4,10_0_0 -7774,2,33.0,3,0.0,6,111,5,52,62,5.0,0.0,251.21466384098264,818.5841665082144,36.49611673701746,0.0,38199.0,60,60,1,6439,201107774,,,,,2.0,0.0,6.0,0.0,2.0,1.5,6805.597079092072,0.0,600.0,0.0,0.0,26095.0,4,1,5,127.0,4,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1106.2949470862145,0.0289613588598187,0.04239490121043167,17396.666666666668,5,3,5,5_1,5_2,5_0_0 -7775,2,36.0,3,0.0,5,212,5,52,47,4.0,0.0,111.0341055650752,818.5841665082144,1911.7013528913908,0.0,25848.0,50,43,1,644,201107775,,,130.0,,2.0,0.0,4.0,2.0,4.0,2.1,1319.3277167145304,0.0,600.0,0.0,0.0,32314.0,1,1,2,150.0,2,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2841.3196249646803,0.10992415757368773,0.08792844045815065,15387.619047619048,4,2,4_0,4_1_0,4_0_0,4_0_0 -7776,2,48.0,2,0.0,8,112,4,54,54,4.0,0.0,0.0,2558.07552033817,118.17790181510415,0.0,34765.0,31,42,1,6440,201107776,,,338.0,,2.0,0.0,6.0,2.0,4.0,2.1,2464.2442011977755,0.0,1875.0,0.0,0.0,33912.0,1,1,2,165.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2676.253422153274,0.07698125764859123,0.07891759324585026,16148.571428571428,4,2,4_0,4_1_0,4_0_0,4_0_0 -7777,2,49.0,2,0.0,4,111,1,38,38,10.0,0.0,0.0,736.7257498573929,0.0,660.405921907935,48023.0,42,50,2,6443,201107777,,,,,2.0,1.0,5.0,1.0,3.0,1.8,3094.563855702157,0.0,540.0,380.0,0.0,91609.0,1,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1397.1316717653278,0.029092969447250854,0.015251030704028293,50893.88888888889,10,5,10,10_0,10_4,10_0_1 -7778,1,89.0,2,79.0,2,111,2,0,77,4.0,0.0,0.0,323.34074577074466,0.0,2426.122807851256,12333.0,0,70,8,6445,201107778,,,160.0,185.0,0.0,3.0,3.0,0.0,1.0,1.0,2425.6985914476495,0.0,237.0,1396.0,0.0,14992.0,0,5,3,68.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2749.4635536220003,0.2229355026045569,0.18339538111139275,14992.0,4,2,4_1,4_0_1,4_2_1,4_0_1 -7779,1,35.0,3,343.0,6,111,2,0,42,3.0,0.0,0.0,477.50743046312505,0.0,1303.4327406077664,20500.0,0,43,2,6446,201107779,,,362.0,,1.0,0.0,4.0,3.0,4.0,1.9,2041.9842806471797,0.0,350.0,750.0,0.0,24720.0,0,1,3,48.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1780.9401710708914,0.08687513029614105,0.07204450530222052,13010.526315789475,3,2,3_1,3_0_1,3_3_1,3_0_0 -7780,2,53.0,3,0.0,1,400,5,71,11,5.0,0.0,763.359475759892,1407.9647663941287,260.6865481215533,0.0,46235.0,70,50,1,6448,201107780,,,255.0,,3.0,0.0,4.0,2.0,4.0,2.5,1084.9305904594553,0.0,1032.0,0.0,0.0,43953.0,5,1,1,90.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2432.010790275574,0.052601076895762384,0.05533207722511715,17581.2,5,3,5,5_1,5_0,5_1_0 -7781,1,45.0,3,18.0,8,111,2,0,62,4.0,0.0,381.679737879946,1589.4175899701163,0.0,0.0,54890.0,0,42,1,6449,201107781,,,535.0,,1.0,0.0,5.0,2.0,3.0,1.8,2738.993781592219,0.0,1165.0,0.0,0.0,26646.0,0,1,2,110.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1971.0973278500624,0.03590995313991733,0.07397347924078895,14803.333333333332,3,2,3_1,3_1_1,3_3_1,3_0_0 -7782,2,47.0,4,0.0,2,111,1,53,52,4.0,0.0,0.0,955.0148609262501,0.0,1543.2643648795954,22504.0,71,71,2,6450,201107782,798.0,798.0,,317.0,2.0,3.0,4.0,2.0,4.0,2.3,3247.005139017755,0.0,700.0,888.0,0.0,34619.0,1,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2498.2792258058453,0.1110148962764773,0.0721649737371341,15051.739130434784,4,2,4_0,4_0_0,4_4_0,4_0_1 -7783,1,58.0,3,168.0,4,221,6,0,77,1.0,253.83296146222114,0.0,545.7227776721429,79.94387475727635,0.0,9369.0,0,50,2,6451,201107783,,,60.0,,0.0,0.0,3.0,0.0,1.0,1.0,4698.983777314145,0.0,400.0,0.0,0.0,7382.0,0,7,3,60.0,1,1.0,1,9,1,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,879.4996138916405,0.09387337110594945,0.1191411018547332,7382.0,1,1,1_1,1_0_1,1_1_1,1_0_1 -7784,2,44.0,3,0.0,7,112,2,47,46,9.0,0.0,0.0,818.5841665082144,0.0,1564.1192887293198,44036.0,50,30,1,6455,201107784,,,1024.0,,2.0,1.0,4.0,1.0,3.0,1.8,2466.9052593859037,0.0,600.0,900.0,0.0,53002.0,1,1,2,145.0,8,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2382.7034552375344,0.05410808100730163,0.04495497255268734,29445.555555555555,9,5,9,9_1,9_0,9_0_0 -7785,2,49.0,3,0.0,4,111,1,0,52,8.0,1522.997768773327,0.0,218.28911106885715,0.0,62.56477154917279,21043.0,0,60,8,6456,201107785,960.0,960.0,,440.0,1.0,1.0,2.0,0.0,1.0,1.0,3192.818432829925,0.0,160.0,36.0,0.0,25009.0,0,1,3,50.0,8,6.0,1,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1803.8516513913569,0.08572217133447498,0.07212809993967599,25009.0,8,4,8,8_0,8_2,8_0_1 -7786,2,40.0,2,0.0,3,300,2,34,34,8.0,0.0,0.0,195.0958930177911,802.9145682143841,0.0,33344.0,20,20,1,6457,201107786,,,250.0,,2.0,0.0,6.0,2.0,4.0,2.1,1748.1681332335042,0.0,143.0,0.0,0.0,52380.0,1,1,2,150.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,998.0104612321752,0.029930736001444795,0.019053273410312623,24942.85714285714,8,4,8,8_1,8_0,8_0_1 -7787,2,66.0,3,0.0,1,111,2,72,72,2.0,0.0,0.0,648.0457984856697,0.0,1796.9992717179073,29281.0,50,50,1,6458,201107787,,,457.0,,0.0,2.0,3.0,0.0,2.0,1.5,1883.7660716671483,0.0,475.0,1034.0,0.0,17255.0,6,5,1,80.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2445.045070203577,0.083502785772466,0.14170067054207922,11503.333333333334,2,1,2_0,2_1_0,2_2_0,2_1_0 -7788,2,44.0,4,0.0,6,111,2,0,63,4.0,0.0,0.0,409.2920832541072,0.0,782.0596443646599,11011.0,0,71,2,6459,201107788,,,,330.0,1.0,0.0,1.0,0.0,1.0,1.0,4624.698594063762,0.0,300.0,450.0,0.0,15360.0,0,1,3,30.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1191.3517276187672,0.10819650600479222,0.07756196143351349,15360.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -7789,2,64.0,2,0.0,2,111,2,77,74,10.0,2300.361213251379,0.0,1007.9498343863675,41.709847699448524,1011.8115619851673,44328.0,44,31,1,646,201107789,,,130.0,,0.0,4.0,5.0,0.0,2.0,1.5,1841.2963271908054,941.0,380.0,0.0,0.0,59935.0,5,5,1,140.0,7,5.0,3,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4361.832457322362,0.0983990357634534,0.07277604834107552,39956.666666666664,10,5,10,10_1,10_2,10_0_1 -7790,0,26.0,4,0.0,6,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,9839.0,0,20,1,6461,201107790,,,,,0.0,0.0,6.0,0.0,1.0,1.0,1975.5945863371269,0.0,0.0,0.0,0.0,410.0,0,3,5,105.0,5,4.0,1,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,410.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -7791,2,40.0,2,0.0,99,111,2,0,34,9.0,158.64560091388822,0.0,1091.4455553442858,0.0,0.0,20590.0,0,20,2,6463,201107791,,,,550.0,1.0,0.0,2.0,0.0,1.0,1.0,5230.705634301304,0.0,800.0,0.0,0.0,30650.0,0,1,3,55.0,6,5.0,1,2,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1250.0911562581741,0.06071350928888655,0.04078600836078872,30650.0,9,5,9,9_0,9_2,9_0_0 -7792,2,49.0,1,0.0,6,111,2,0,35,10.0,0.0,0.0,1342.4780330734716,0.0,868.9551604051776,26309.0,0,10,1,6464,201107792,,,290.0,,1.0,0.0,3.0,0.0,1.0,1.0,3482.6571041289635,0.0,984.0,500.0,0.0,51555.0,0,1,1,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2211.433193478649,0.08405614783833096,0.04289464054851419,51555.0,10,5,10,10_1,10_4,10_0_0 -7793,1,44.0,4,361.0,1,111,6,85,63,2.0,0.0,0.0,764.011888741,323.25131967072605,0.0,9063.0,60,71,2,6466,201107793,,,,104.0,1.0,0.0,2.0,1.0,3.0,1.8,3720.614475597405,0.0,560.0,0.0,0.0,18412.0,6,1,3,55.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1087.263208411726,0.11996725239012755,0.059051879666072456,10228.888888888889,2,1,2_1,2_0_1,2_3_1,2_1_0 -7794,2,76.0,4,0.0,1,111,2,86,78,4.0,0.0,0.0,2815.9295327882573,0.0,1564.1192887293198,20809.0,71,71,1,6467,201107794,,,320.0,,0.0,2.0,3.0,1.0,3.0,2.0,3214.417534099461,0.0,2064.0,900.0,0.0,30500.0,6,5,1,69.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4380.048821517577,0.21048819364301877,0.1436081580825435,15250.0,4,2,4_0,4_1_0,4_4_0,4_1_0 -7795,1,42.0,3,58.0,9,400,5,56,64,3.0,0.0,624.566843803548,1054.6092678514162,236.3558036302083,0.0,30180.0,50,71,1,6468,201107795,,,,,2.0,0.0,4.0,2.0,4.0,2.3,7094.7844372035415,0.0,773.0,0.0,0.0,32762.0,1,1,2,90.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1915.5319152851725,0.06347024238850804,0.058468100704632577,14244.347826086958,3,2,3_1,3_1_1,3_1_1,3_0_0 -7796,2,61.0,3,0.0,5,112,2,55,75,6.0,0.0,277.585263912688,729.9042151364911,1501.5545171801468,0.0,29302.0,60,50,1,6471,201107796,,,294.0,,1.0,2.0,5.0,0.0,2.0,1.5,2643.7331605714917,0.0,535.0,0.0,0.0,30954.0,1,5,1,100.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2509.043996229326,0.08562705604495685,0.0810571815025304,20636.0,6,3,6,6_1,6_0,6_0_0 -7797,2,75.0,2,0.0,1,111,2,78,77,6.0,0.0,0.0,695.6404659291279,0.0,2454.1281885089716,30939.0,50,50,1,6473,201107797,,,,,0.0,4.0,6.0,0.0,2.0,1.5,987.4515966467453,498.0,320.0,1104.0,0.0,29987.0,5,5,1,137.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3149.7686544380995,0.10180576794460389,0.10503780486337745,19991.333333333332,6,3,6,6_1,6_3,6_1_0 -7798,2,61.0,3,0.0,7,112,5,46,65,9.0,0.0,766.1353283990188,750.3688192991965,100.7987986070006,0.0,42522.0,71,50,1,6474,201107798,,,350.0,,3.0,3.0,4.0,1.0,3.0,2.0,2441.6109834871245,0.0,550.0,0.0,0.0,61847.0,1,1,2,98.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1617.302946305216,0.038034498525591834,0.02615006299909803,30923.5,9,5,9,9_1,9_0,9_0_0 -7799,2,60.0,2,0.0,9,400,2,77,75,8.0,0.0,0.0,2101.0326940377504,76.46805411565563,0.0,41265.0,70,50,1,6479,201107799,,,314.0,,0.0,2.0,7.0,0.0,2.0,1.5,1357.9257013605777,0.0,1540.0,0.0,0.0,38779.0,5,5,1,160.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2177.500748153406,0.052768708303729706,0.05615154460283675,25852.666666666668,8,4,8,8_1,8_0,8_0_0 -7800,2,62.0,3,0.0,2,112,2,0,77,6.0,0.0,0.0,422.93515269591074,0.0,1546.740185521216,26701.0,0,71,2,648,201107800,,,141.0,331.0,0.0,2.0,4.0,0.0,1.0,1.0,3065.5786809817014,0.0,310.0,890.0,0.0,20019.0,0,5,3,62.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1969.6753382171269,0.07376784907745504,0.09839029612953329,20019.0,6,3,6,6_0,6_2,6_0_1 -7801,1,24.0,3,250.0,99,111,4,0,37,5.0,0.0,0.0,953.6505539820697,0.0,0.0,25573.0,0,10,2,6480,201107801,,,,340.0,3.0,0.0,5.0,0.0,3.0,2.0,2058.1076154782095,0.0,699.0,0.0,0.0,34339.0,0,1,3,56.0,8,7.0,5,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,953.6505539820697,0.0372913054386294,0.027771646057895387,17169.5,5,3,5,5_0,5_3,5_0_0 -7802,1,36.0,4,421.0,99,111,1,0,68,4.0,0.0,0.0,1620.7966496862643,0.0,0.0,16020.0,0,71,2,6481,201107802,48.0,48.0,,,1.0,1.0,3.0,2.0,3.0,1.6,3041.802010127433,0.0,1188.0,0.0,48.0,24114.0,0,4,3,61.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1620.7966496862643,0.10117332395045346,0.06721392758091832,15071.25,4,2,4_1,4_0_1,4_4_1,4_0_0 -7803,1,21.0,3,259.0,6,111,2,0,56,4.0,0.0,0.0,265.3047074972308,0.0,548.3782110652872,20973.0,0,50,2,6484,201107803,,,,171.0,1.0,0.0,2.0,0.0,1.0,1.0,2755.0680800025807,510.0,0.0,0.0,0.0,16046.0,0,1,3,33.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,813.6829185625181,0.03879668710067793,0.050709392905553916,16046.0,4,2,4_1,4_0_1,4_3_1,4_0_0 -7804,2,45.0,1,0.0,6,222,5,13,13,7.0,847.167508880163,138.792631956344,1357.4854094594555,86.89551604051776,0.0,28615.0,43,44,1,6485,201107804,,,268.0,,2.0,0.0,6.0,0.0,2.0,1.5,2297.517385885322,0.0,995.0,0.0,0.0,33352.0,1,1,1,200.0,1,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2430.3410663364803,0.08493241538830963,0.07286942511203166,22234.666666666668,7,4,7,7_1,7_0,7_0_0 -7805,0,42.0,3,0.0,8,120,2,37,62,5.0,0.0,0.0,341.0767360450893,0.0,1494.6028758969055,37056.0,31,50,1,6486,201107805,,,430.0,,2.0,0.0,4.0,3.0,5.0,2.4,998.2826315416038,0.0,250.0,860.0,0.0,40258.0,1,1,5,90.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1835.6796119419948,0.049537986073564196,0.04559788394709113,16774.166666666668,4,2,4_0,4_1_0,4_1_0,4_0_0 -7806,2,49.0,3,0.0,7,112,2,52,47,6.0,0.0,0.0,1095.5384761768269,0.0,2028.1413443856845,45754.0,42,50,1,6487,201107806,,,795.0,,3.0,1.0,5.0,2.0,4.0,2.5,2443.024124825813,0.0,803.0,1167.0,0.0,50242.0,1,1,2,100.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3123.6798205625114,0.06827118548241709,0.062172680636967306,20096.8,6,3,6,6_1,6_1,6_0_0 -7807,2,55.0,3,0.0,1,300,2,0,74,10.0,0.0,693.9631597817199,2169.248041246768,152.93610823131127,0.0,28746.0,0,30,1,6488,201107807,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2710.5079706900146,0.0,1590.0,0.0,0.0,55060.0,0,5,1,78.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3016.1473092597994,0.10492406975787238,0.05477928276897565,55060.0,10,5,10,10_1,10_0,10_1_0 -7808,2,46.0,5,0.0,2,211,2,52,63,2.0,0.0,0.0,2455.752499524643,0.0,0.0,52285.0,50,50,1,6489,201107808,,,550.0,,2.0,0.0,6.0,3.0,5.0,2.8,875.6040264055091,0.0,1800.0,0.0,0.0,28290.0,1,1,3,88.0,3,3.0,4,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2455.752499524643,0.04696858562732415,0.08680638032960916,10103.57142857143,2,1,2_0,2_1_0,2_1_0,2_0_1 -7809,2,57.0,5,0.0,6,221,2,67,78,1.0,0.0,832.755791738064,1036.8732775770716,159.8877495145527,0.0,30613.0,70,50,1,6490,201107809,,,800.0,,1.0,3.0,6.0,1.0,3.0,2.0,1391.4976756126377,0.0,760.0,0.0,0.0,17100.0,1,4,1,90.0,1,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2029.5168188296882,0.06629591411588828,0.11868519408360749,8550.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -7810,2,53.0,3,0.0,1,300,2,11,69,3.0,1840.2889706011033,0.0,1023.230208135268,173.79103208103552,0.0,26042.0,50,50,1,6494,201107810,,,160.0,,2.0,2.0,3.0,0.0,2.0,1.5,1137.237451482291,0.0,750.0,0.0,0.0,20030.0,1,1,1,105.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3037.3102108174066,0.11663121921578246,0.15163805346067932,13353.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -7811,2,48.0,3,0.0,1,111,2,52,62,5.0,0.0,0.0,1350.6638747385537,0.0,2711.1401004641543,39311.0,50,50,2,6496,201107811,,,400.0,,2.0,0.0,5.0,4.0,6.0,3.1,1361.287599519084,0.0,990.0,1560.0,0.0,52685.0,1,1,2,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4061.803975202708,0.10332487027047665,0.07709602306544003,16995.16129032258,4,2,4_0,4_0_0,4_3_0,4_1_0 -7812,2,48.0,4,0.0,1,111,2,52,48,7.0,0.0,0.0,545.7227776721429,0.0,1060.1252956943167,45175.0,71,60,1,6497,201107812,,,400.0,,4.0,1.0,5.0,5.0,7.0,3.4,1116.2735472931327,0.0,400.0,610.0,0.0,79655.0,1,1,2,200.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1605.8480733664596,0.03554727334513469,0.020160041094299915,23427.941176470587,7,4,7,7_1,7_3,7_1_0 -7813,2,53.0,3,0.0,6,112,2,67,64,8.0,84.08216848436075,65.23253701948168,499.39709646537557,0.0,1032.241338475835,16705.0,71,60,1,6498,201107813,,,160.0,,2.0,2.0,6.0,0.0,2.0,1.5,2537.3158933576487,960.0,0.0,0.0,0.0,41563.0,1,1,1,150.0,10,0.0,3,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1680.953140445053,0.10062574920353504,0.040443498795684936,27708.666666666668,8,4,8,8_1,8_0,8_0_0 -7814,2,53.0,1,0.0,1,120,2,0,52,6.0,0.0,0.0,341.0767360450893,0.0,1651.0148047698374,16733.0,0,60,2,6499,201107814,,,,389.0,1.0,2.0,3.0,0.0,1.0,1.0,5231.7558160624985,0.0,250.0,950.0,0.0,20679.0,0,1,3,55.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1992.0915408149267,0.11905166681497201,0.09633403650151974,20679.0,6,3,6,6_0,6_1,6_1_0 -7815,2,42.0,3,0.0,8,112,2,56,34,4.0,0.0,0.0,1023.230208135268,0.0,1564.1192887293198,29022.0,50,31,1,65,201107815,,,650.0,,2.0,0.0,5.0,2.0,4.0,2.3,1399.2185217425815,0.0,750.0,900.0,0.0,35634.0,1,1,2,100.0,9,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2587.3494968645878,0.08915131613481454,0.07260901096886647,15493.04347826087,4,2,4_0,4_1_0,4_0_0,4_0_0 -7816,2,54.0,2,0.0,7,112,2,78,63,6.0,1110.5192063972174,208.188947934516,682.1534720901786,0.0,0.0,11599.0,70,50,1,650,201107816,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1539.6958563769358,0.0,500.0,0.0,0.0,30580.0,5,1,1,120.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2000.861626421912,0.17250294218656023,0.06543039981759032,20386.666666666668,6,3,6,6_1,6_0,6_0_0 -7817,2,32.0,3,0.0,5,112,4,54,62,5.0,12.691648073111057,9.715484236944079,1364.3069441803573,104.27461924862132,0.0,27419.0,20,43,1,6500,201107817,,,200.0,,2.0,0.0,5.0,2.0,4.0,2.1,1238.0940928541909,0.0,1000.0,0.0,0.0,39056.0,1,1,2,85.0,9,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1490.9886957390338,0.05437793850027477,0.03817566304124933,18598.095238095237,5,3,5,5_1,5_1,5_0_0 -7818,2,74.0,3,0.0,7,112,5,0,75,6.0,0.0,333.10231669522557,159.6239124691018,0.0,0.0,6234.0,0,50,1,6501,201107818,,,410.0,,0.0,0.0,3.0,0.0,1.0,1.0,1513.8072315187815,0.0,117.0,0.0,0.0,21098.0,0,5,5,70.0,6,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,492.7262291643274,0.07903853531670314,0.023354167654011156,21098.0,6,3,6,6_1,6_1,6_0_0 -7819,2,61.0,3,0.0,4,112,2,78,78,6.0,2221.038412794435,0.0,736.7257498573929,0.0,0.0,33197.0,70,71,1,6503,201107819,,,195.0,,0.0,2.0,5.0,0.0,2.0,1.5,3894.397562402253,0.0,540.0,0.0,0.0,29009.0,5,5,1,90.0,9,2.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2957.764162651828,0.0890973329714079,0.10196022484924774,19339.333333333332,6,3,6,6_1,6_1,6_0_1 -7820,2,59.0,3,0.0,5,111,2,67,77,7.0,0.0,0.0,1663.0901649558555,0.0,0.0,26914.0,71,50,1,6504,201107820,,,273.0,,1.0,3.0,4.0,0.0,2.0,1.5,2235.7575862546614,0.0,1219.0,0.0,0.0,35263.0,4,5,1,98.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1663.0901649558555,0.06179275339807741,0.04716246958443285,23508.666666666668,7,4,7,7_1,7_3,7_0_0 -7821,1,29.0,1,83.0,4,111,2,84,38,9.0,0.0,0.0,458.40713324460006,0.0,260.6865481215533,60010.0,10,10,2,6508,201107821,,,,729.0,1.0,0.0,4.0,0.0,2.0,1.5,3874.275106485592,0.0,336.0,150.0,0.0,48547.0,3,1,3,85.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,719.0936813661533,0.011982897539845914,0.014812319635943587,32364.666666666668,9,5,9,9_0,9_3,9_0_1 -7822,2,80.0,2,0.0,1,111,4,86,74,8.0,0.0,0.0,2925.074088322686,0.0,166.8393907977941,44788.0,41,12,1,651,201107822,,,357.0,,0.0,4.0,8.0,0.0,2.0,1.5,1234.9952123154746,0.0,2144.0,96.0,0.0,39222.0,6,5,1,150.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3091.91347912048,0.06903441723498438,0.07883110191016471,26148.0,8,4,8,8_1,8_2,8_1_0 -7823,2,51.0,2,0.0,7,111,2,54,48,7.0,0.0,0.0,791.2980276246072,0.0,1482.437503651233,30392.0,71,43,1,6511,201107823,,,672.0,,2.0,2.0,6.0,1.0,3.0,2.0,2506.000515338525,0.0,580.0,853.0,0.0,44684.0,1,4,1,170.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2273.7355312758405,0.07481361974453278,0.050884780486882115,22342.0,7,4,7,7_1,7_2,7_0_0 -7824,2,62.0,4,0.0,1,111,6,77,78,4.0,1308.8262075395778,0.0,1575.7745205283127,0.0,119.9158121359145,21359.0,70,70,1,6514,201107824,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1266.615364347607,0.0,1155.0,69.0,0.0,22870.0,5,5,1,150.0,8,7.0,3,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3004.516540203805,0.14066747226947915,0.13137370092714495,15246.666666666666,4,2,4_0,4_1_0,4_3_0,4_1_0 -7825,1,50.0,4,125.0,4,112,5,0,54,3.0,0.0,0.0,1227.8762497623215,0.0,0.0,24662.0,0,50,1,6515,201107825,,,266.0,,1.0,0.0,4.0,2.0,3.0,2.0,3159.7318319141555,0.0,900.0,0.0,0.0,25652.0,0,1,2,93.0,8,0.0,2,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1227.8762497623215,0.049788186268847685,0.047866686798780665,12826.0,3,2,3_1,3_1_1,3_0_1,3_0_1 -7826,1,49.0,4,94.0,5,111,1,0,54,4.0,0.0,0.0,55.936584711394644,0.0,13.903282566482842,18768.0,0,71,2,6516,201107826,,,,231.0,1.0,0.0,3.0,1.0,2.0,1.3,3520.622415498086,0.0,41.0,8.0,0.0,19708.0,0,1,3,78.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,69.83986727787749,0.0037212205497590307,0.003543731848887634,15160.0,4,2,4_1,4_0_1,4_4_1,4_0_0 -7827,2,38.0,3,0.0,2,120,6,0,54,7.0,95.18736054833293,0.0,927.728722042643,34.7582064162071,0.0,29314.0,0,31,1,6517,201107827,,,350.0,,1.0,0.0,4.0,0.0,1.0,1.0,2668.4237262348674,0.0,680.0,0.0,0.0,23294.0,0,1,2,90.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1057.674289007183,0.03608085860023139,0.04540543869696845,23294.0,7,4,7,7_1,7_0,7_0_1 -7828,2,59.0,2,0.0,6,111,6,52,52,9.0,0.0,555.170527825376,1500.737638598393,0.0,0.0,33076.0,42,50,1,6518,201107828,,,300.0,,2.0,2.0,4.0,0.0,2.0,1.5,1753.7377913044677,0.0,1100.0,0.0,0.0,45800.0,1,1,1,100.0,6,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2055.908166423769,0.062157097787633606,0.04488882459440544,30533.333333333332,9,5,9,9_1,9_2,9_0_0 -7829,2,62.0,4,0.0,3,300,2,77,78,3.0,2379.684013708323,0.0,818.5841665082144,243.30744491344973,0.0,10020.0,71,50,1,6519,201107829,,,500.0,,0.0,3.0,3.0,0.0,2.0,1.5,2558.5630235136414,0.0,600.0,0.0,0.0,19250.0,6,5,1,110.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3441.575625129987,0.3434706212704578,0.17878314935740194,12833.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_1 -7830,2,58.0,5,0.0,7,111,2,0,68,1.0,0.0,0.0,695.7965415319821,0.0,0.0,20270.0,0,71,1,652,201107830,,,150.0,,1.0,3.0,4.0,0.0,1.0,1.0,4240.515848264965,0.0,510.0,0.0,0.0,2420.0,0,1,1,127.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,695.7965415319821,0.03432642040118313,0.28751923203800916,2420.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -7831,1,30.0,2,337.0,1,300,5,85,85,4.0,0.0,444.1364222603008,1159.6609025533037,39.971937378638174,0.0,11381.0,41,33,1,6521,201107831,,,,,0.0,0.0,3.0,1.0,3.0,1.8,2605.9196406430474,0.0,850.0,0.0,0.0,29294.0,7,7,3,76.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1643.7692621922426,0.14443100449804433,0.05611283068861346,16274.444444444443,4,2,4_1,4_1_1,4_0_1,4_1_0 -7832,1,36.0,4,468.0,1,111,2,0,85,2.0,1269.1648073111057,0.0,1091.4455553442858,0.0,0.0,7534.0,0,31,1,6522,201107832,,,400.0,,0.0,0.0,3.0,2.0,3.0,1.6,5381.2007085659125,0.0,800.0,0.0,0.0,18736.0,0,6,3,80.0,10,8.0,2,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,2360.6103626553913,0.31332762976578066,0.12599329433472414,11710.0,2,1,2_1,2_1_1,2_4_1,2_1_0 -7833,2,80.0,3,0.0,1,111,2,0,77,6.0,0.0,0.0,1687.8746462652152,0.0,668.8063672208015,15842.0,0,20,2,6525,201107833,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4233.599601902179,622.0,1000.0,0.0,0.0,20398.0,0,5,1,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2356.6810134860166,0.1487615839847252,0.11553490604402473,20398.0,6,3,6,6_0,6_4,6_1_0 -7834,2,23.0,3,0.0,2,111,4,0,55,1.0,0.0,0.0,818.5841665082144,0.0,0.0,12698.0,0,31,2,6526,201107834,,,,360.0,1.0,0.0,1.0,0.0,1.0,1.0,3607.7637411681453,0.0,600.0,0.0,0.0,6599.0,0,1,3,40.0,7,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,818.5841665082144,0.06446559824446482,0.12404669897078563,6599.0,1,1,1_0,1_0_0,1_2_0,1_0_1 -7835,2,47.0,3,0.0,1,111,2,0,46,6.0,0.0,0.0,315.1549041056625,0.0,192.90804560994943,14704.0,0,31,1,6529,201107835,,,167.0,,1.0,0.0,5.0,0.0,1.0,1.0,4723.457718829559,0.0,231.0,111.0,0.0,19644.0,0,4,1,110.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,508.0629497156119,0.034552703326687424,0.025863518108104864,19644.0,6,3,6,6_1,6_2,6_1_0 -7836,1,56.0,3,300.0,5,211,2,0,53,2.0,0.0,0.0,654.8673332065715,0.0,868.9551604051776,7673.0,0,70,2,6530,201107836,,,300.0,,1.0,0.0,2.0,0.0,1.0,1.0,2388.4299896868356,0.0,480.0,500.0,0.0,11350.0,0,4,3,36.0,3,3.0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1523.822493611749,0.19859539862006373,0.13425748842394264,11350.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -7837,2,61.0,3,0.0,4,112,4,0,75,8.0,0.0,0.0,79.12980276246073,93.84715732375918,0.0,20816.0,0,31,2,6532,201107837,,,110.0,,0.0,2.0,2.0,0.0,1.0,1.0,5621.994059546409,0.0,58.0,0.0,0.0,25466.0,0,5,2,45.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,172.9769600862199,0.008309807844264983,0.006792466821888788,25466.0,8,4,8,8_0,8_1,8_0_1 -7838,2,52.0,3,0.0,1,400,2,75,62,9.0,1427.810408224994,0.0,1500.737638598393,375.3886292950367,0.0,59328.0,44,50,1,6533,201107838,,,250.0,,1.0,2.0,4.0,0.0,2.0,1.5,1827.242350304557,0.0,1100.0,0.0,0.0,46804.0,5,1,1,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3303.9366761184237,0.05568933178462823,0.07059090411328997,31202.666666666668,9,5,9,9_1,9_0,9_1_0 -7839,2,44.0,3,0.0,1,221,4,56,37,8.0,0.0,0.0,1637.1683330164287,69.5164128324142,0.0,38624.0,50,50,1,6534,201107839,,,350.0,615.0,2.0,0.0,4.0,0.0,2.0,1.5,2105.260946925304,0.0,1200.0,0.0,0.0,40300.0,1,1,3,90.0,1,3.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1706.684745848843,0.044187156841571124,0.042349497415604044,26866.666666666668,8,4,8,8_1,8_1,8_1_0 -7840,2,38.0,4,0.0,8,120,2,67,62,6.0,0.0,0.0,664.417481815834,0.0,2365.2959466228936,52514.0,50,50,1,6535,201107840,,,304.0,,2.0,0.0,5.0,2.0,4.0,2.1,1002.0738153090789,0.0,487.0,1361.0,0.0,42944.0,1,1,2,167.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3029.7134284387275,0.05769344229041261,0.07055033132541746,20449.52380952381,6,3,6,6_1,6_1,6_0_0 -7841,2,42.0,4,0.0,8,111,1,22,22,1.0,0.0,0.0,589.3805998859143,0.0,0.0,24864.0,20,20,2,6537,201107841,,,,980.0,2.0,0.0,4.0,0.0,2.0,1.5,2487.321875544756,0.0,432.0,0.0,0.0,4724.0,1,1,3,119.0,7,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,589.3805998859143,0.02370417470583632,0.12476303977263216,3149.3333333333335,1,1,1_0,1_0_0,1_2_0,1_0_0 -7842,2,29.0,3,0.0,7,111,4,0,46,6.0,0.0,0.0,575.7375304441108,0.0,0.0,20056.0,0,43,2,6538,201107842,,,,475.0,1.0,0.0,1.0,0.0,1.0,1.0,4778.508710886271,0.0,422.0,0.0,0.0,19930.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,575.7375304441108,0.028706498326890248,0.028887984467842992,19930.0,6,3,6,6_0,6_4,6_0_0 -7843,2,88.0,2,0.0,1,111,2,75,75,9.0,0.0,0.0,833.110761312329,0.0,2840.3579035651824,27263.0,41,41,1,6539,201107843,,,444.0,,0.0,4.0,8.0,0.0,2.0,1.5,1799.3277966852745,83.0,579.0,1583.0,0.0,49147.0,5,5,1,180.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3673.4686648775114,0.1347419089930496,0.0747445147186504,32764.666666666668,9,5,9,9_1,9_2,9_1_0 -7844,2,44.0,4,0.0,2,111,2,85,47,4.0,0.0,0.0,1001.4012970283823,0.0,6256.477154917279,22977.0,41,43,1,6542,201107844,,,432.0,,1.0,1.0,3.0,0.0,2.0,1.5,2495.89470194316,0.0,734.0,3600.0,0.0,23382.0,4,1,3,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,7257.878451945661,0.3158758085017914,0.31040451851619455,15588.0,4,2,4_0,4_1_0,4_4_0,4_0_1 -7845,2,58.0,1,0.0,5,111,2,72,63,6.0,1586.456009138882,0.0,1064.1594164606786,86.89551604051776,0.0,19603.0,50,50,1,6543,201107845,,,,,1.0,2.0,6.0,0.0,2.0,1.5,1228.433439919955,0.0,780.0,0.0,0.0,29987.0,6,1,1,99.0,5,4.0,3,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2737.5109416400783,0.13964755096873327,0.09128992368826752,19991.333333333332,6,3,6,6_1,6_2,6_0_0 -7846,2,69.0,1,0.0,9,111,2,75,74,10.0,0.0,0.0,579.3307674837789,0.0,1309.2829893453797,73329.0,33,12,2,6545,201107846,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2508.3664856363825,458.0,250.0,470.0,0.0,58640.0,5,5,1,112.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1888.6137568291588,0.025755345863562283,0.03220691945479466,39093.333333333336,10,5,10,10_0,10_2,10_0_0 -7847,1,38.0,2,269.0,5,111,2,85,56,1.0,0.0,0.0,312.4262902173018,0.0,1454.6309385182674,16815.0,20,20,2,6546,201107847,,,,22.0,1.0,0.0,3.0,3.0,5.0,2.4,1859.8921779974648,0.0,229.0,837.0,0.0,22192.0,5,1,3,85.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1767.0572287355692,0.1050881491962872,0.07962586647150185,9246.666666666668,1,1,1_1,1_0_1,1_3_1,1_0_0 -7848,2,88.0,1,0.0,1,120,6,77,78,4.0,1745.1016100527704,0.0,47.7507430463125,0.0,0.0,15416.0,70,71,1,6548,201107848,,,180.0,,0.0,2.0,3.0,0.0,2.0,1.5,1742.1168976116498,0.0,35.0,0.0,0.0,23920.0,5,5,5,56.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1792.8523530990828,0.11629815471582011,0.07495202145063055,15946.666666666666,4,2,4_0,4_1_0,4_1_0,4_1_0 -7849,1,38.0,3,179.0,1,300,4,0,56,3.0,0.0,0.0,1009.5871386934643,0.0,0.0,28582.0,0,31,1,655,201107849,,,360.0,,1.0,0.0,3.0,2.0,3.0,1.8,2690.69403029994,0.0,740.0,0.0,0.0,25097.0,0,1,3,85.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1009.5871386934643,0.03532248053647276,0.040227403223232434,13942.777777777777,3,2,3_1,3_1_1,3_0_1,3_1_0 -7850,2,51.0,3,0.0,7,111,2,56,62,6.0,0.0,0.0,1105.0886247860894,0.0,955.8506764456954,44193.0,50,71,1,6552,201107850,,,360.0,,3.0,1.0,4.0,1.0,3.0,2.0,1447.4079415920787,0.0,810.0,550.0,0.0,40466.0,1,1,2,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2060.939301231785,0.046634971629710247,0.05093014632609561,20233.0,6,3,6,6_1,6_3,6_0_0 -7851,2,45.0,2,0.0,8,120,2,52,47,7.0,0.0,0.0,729.9042151364911,3128.2385774586396,0.0,42837.0,50,50,1,6553,201107851,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.3,1104.1714314469752,0.0,535.0,0.0,0.0,52762.0,1,1,2,174.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3858.1427925951307,0.09006566268868339,0.07312351299410809,22940.0,7,4,7,7_1,7_1,7_0_0 -7852,2,40.0,3,0.0,5,112,2,0,69,2.0,0.0,0.0,1227.8762497623215,0.0,0.0,15644.0,0,71,1,6554,201107852,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3185.1733755742175,0.0,900.0,0.0,0.0,11535.0,0,1,1,50.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1227.8762497623215,0.0784886378012223,0.10644787600887053,11535.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -7853,2,46.0,2,0.0,7,111,4,55,56,5.0,0.0,0.0,0.0,45.18566834106924,0.0,29732.0,60,50,2,6557,201107853,,,,,2.0,2.0,3.0,1.0,3.0,2.0,2102.0511124122318,0.0,0.0,0.0,0.0,33923.0,1,1,3,77.0,8,7.0,4,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,45.18566834106924,0.0015197655166510574,0.0013320068490719936,16961.5,4,2,4_0,4_0_0,4_3_0,4_0_0 -7854,2,61.0,3,0.0,6,111,2,0,75,9.0,0.0,0.0,682.1534720901786,0.0,1390.3282566482842,27060.0,0,33,1,6558,201107854,,,600.0,,1.0,0.0,5.0,1.0,2.0,1.5,1327.395590285866,0.0,500.0,800.0,0.0,46550.0,0,5,5,154.0,6,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2072.481728738463,0.0765883861322418,0.044521626825745717,31033.333333333332,9,5,9,9_1,9_2,9_0_0 -7855,0,33.0,3,0.0,5,111,2,0,52,3.0,0.0,0.0,0.0,0.0,0.0,8073.0,0,42,1,6559,201107855,,,,,1.0,0.0,5.0,0.0,1.0,1.0,1569.0439382981901,0.0,0.0,0.0,0.0,13245.0,0,1,5,96.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,13245.0,3,2,3_0,3_1_0,3_3_0,3_0_0 -7856,2,63.0,1,0.0,7,112,4,78,74,9.0,634.5824036555529,0.0,818.5841665082144,173.79103208103552,0.0,25497.0,71,31,1,656,201107856,,,300.0,,0.0,2.0,6.0,0.0,2.0,1.5,5928.040390206907,0.0,600.0,0.0,0.0,43998.0,5,5,1,162.0,8,3.0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1626.9576022448027,0.06380976594284829,0.03697798995965278,29332.0,9,5,9,9_1,9_1,9_0_0 -7857,2,39.0,2,0.0,4,111,4,34,48,8.0,0.0,416.377895869032,2564.8970550590716,217.2387901012944,0.0,94980.0,20,42,1,6561,201107857,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2091.7573473531547,0.0,1880.0,0.0,0.0,58228.0,1,1,1,100.0,5,4.0,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3198.513741029398,0.033675655306689804,0.054930853558930376,27727.619047619046,8,4,8,8_1,8_2,8_0_1 -7858,2,33.0,3,0.0,9,112,4,54,46,4.0,0.0,0.0,1268.8054580877322,0.0,0.0,50327.0,42,41,1,6564,201107858,,,,,2.0,0.0,4.0,3.0,5.0,2.4,2342.42600632741,0.0,930.0,0.0,0.0,36414.0,1,1,2,92.0,8,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1268.8054580877322,0.025211227732384846,0.034843891307951125,15172.5,4,2,4_0,4_1_0,4_1_0,4_0_0 -7859,2,53.0,3,0.0,9,112,2,52,46,9.0,0.0,0.0,769.4691165177215,0.0,1423.348552743681,32953.0,50,50,1,6565,201107859,,,446.0,,2.0,0.0,4.0,0.0,2.0,1.5,975.3490394250329,0.0,564.0,819.0,0.0,44069.0,1,1,1,150.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2192.8176692614024,0.06654379477623897,0.04975873446779828,29379.333333333332,9,5,9,9_1,9_1,9_0_0 -7860,2,25.0,2,0.0,2,111,1,0,38,9.0,0.0,0.0,245.5752499524643,0.0,166.8393907977941,21369.0,0,12,2,6566,201107860,,,,499.0,1.0,0.0,1.0,0.0,1.0,1.0,2688.7640122283456,0.0,180.0,96.0,0.0,29664.0,0,1,3,27.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,412.4146407502584,0.019299669649972314,0.013902866799833415,29664.0,9,5,9,9_0,9_3,9_0_1 -7861,2,32.0,3,0.0,2,111,2,35,34,9.0,0.0,0.0,671.2390165367358,0.0,2335.7514711691174,49305.0,10,20,1,6568,201107861,,,280.0,,2.0,0.0,4.0,1.0,3.0,1.8,2236.94366328984,0.0,492.0,1344.0,0.0,57806.0,1,1,2,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3006.9904877058534,0.06098753651162871,0.05201865702013378,32114.444444444445,9,5,9,9_1,9_4,9_0_1 -7862,2,49.0,4,0.0,5,111,2,78,52,6.0,1665.7788095958263,0.0,773.5620373502626,173.79103208103552,0.0,18947.0,70,60,1,6569,201107862,,,,,1.0,0.0,4.0,0.0,3.0,2.0,1091.7141218559207,0.0,567.0,0.0,0.0,41588.0,7,1,5,106.0,6,4.0,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2613.1318790271243,0.1379179753537301,0.0628337953021815,20794.0,6,3,6,6_1,6_2,6_0_0 -7863,1,71.0,2,259.0,4,111,1,0,77,2.0,0.0,0.0,477.50743046312505,0.0,69.5164128324142,6492.0,0,50,2,6570,201107863,,,,58.0,0.0,6.0,4.0,0.0,1.0,1.0,2163.5615122976437,0.0,350.0,40.0,0.0,11547.0,0,6,3,82.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,547.0238432955392,0.08426122047066223,0.04737367656495533,11547.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -7864,2,87.0,3,0.0,4,111,1,0,78,8.0,0.0,0.0,654.8673332065715,0.0,0.0,14894.0,0,71,2,6571,201107864,,,,185.0,0.0,0.0,1.0,0.0,1.0,1.0,2966.2751527645473,0.0,480.0,0.0,0.0,25820.0,0,5,3,26.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,654.8673332065715,0.04396853318158799,0.025362793695064736,25820.0,8,4,8,8_0,8_2,8_0_1 -7865,2,52.0,2,0.0,8,112,2,67,46,4.0,0.0,0.0,886.7995137172322,0.0,2433.074449134497,36779.0,50,71,1,6572,201107865,,,440.0,,2.0,1.0,6.0,2.0,4.0,2.5,2319.267026105786,0.0,650.0,1400.0,0.0,38480.0,1,1,2,120.0,7,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3319.8739628517296,0.09026547657227575,0.08627531088492021,15392.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -7866,0,47.0,4,0.0,3,111,2,22,33,5.0,2974.605017135404,0.0,1399.7789247290466,312.82385774586396,0.0,104594.0,31,31,5,6573,201107866,,,,,2.0,0.0,4.0,2.0,4.0,2.3,1602.6982564330015,0.0,1026.0,0.0,0.0,42512.0,1,1,5,120.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4687.207799610315,0.044813352578640414,0.11025611120649029,18483.478260869568,5,3,5,5_1,5_4,5_0_1 -7867,1,42.0,4,99.0,99,111,1,0,54,4.0,0.0,0.0,477.50743046312505,0.0,225.92834170534618,16766.0,0,50,2,6574,201107867,,,,231.0,1.0,0.0,3.0,1.0,2.0,1.3,3129.247297820206,0.0,350.0,130.0,0.0,19567.0,0,4,3,55.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,703.4357721684712,0.04195608804535794,0.03595010845650694,15051.538461538461,4,2,4_1,4_0_1,4_4_1,4_0_0 -7868,2,87.0,3,0.0,1,111,2,0,78,7.0,2439.969342055601,0.0,212.83188329213573,114.70208117348345,0.0,18534.0,0,70,1,6575,201107868,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2806.232971421671,0.0,156.0,0.0,0.0,22503.0,0,5,1,73.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2767.50330652122,0.14932034674226935,0.12298374912328223,22503.0,7,4,7,7_1,7_3,7_1_0 -7869,1,34.0,4,248.0,3,111,2,0,68,5.0,0.0,0.0,682.1534720901786,201.5975972140012,0.0,17831.0,0,43,2,6576,201107869,,,,322.0,1.0,0.0,2.0,1.0,2.0,1.3,6256.288905393721,0.0,500.0,0.0,0.0,21853.0,0,1,3,55.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,883.7510693041799,0.04956261955606415,0.04044072069300233,16810.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -7870,2,55.0,2,0.0,1,111,2,78,45,9.0,0.0,0.0,518.4366387885358,0.0,2433.074449134497,23984.0,50,31,1,6577,201107870,,,,,1.0,1.0,4.0,0.0,2.0,1.5,1704.336342298095,0.0,380.0,1400.0,0.0,44284.0,5,1,1,90.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2951.511087923033,0.12306166977664414,0.06664960455069625,29522.666666666668,9,5,9,9_1,9_2,9_1_0 -7871,2,45.0,3,0.0,1,221,2,0,85,6.0,0.0,0.0,886.7995137172322,0.0,3289.8642372940026,28606.0,0,50,1,6579,201107871,,,232.0,,0.0,2.0,8.0,0.0,1.0,1.0,2570.171299307858,0.0,650.0,1893.0,0.0,20860.0,0,7,2,150.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4176.663751011235,0.1460065633437473,0.2002235738739806,20860.0,6,3,6,6_1,6_1,6_1_0 -7872,1,58.0,4,112.0,4,111,7,56,68,2.0,0.0,0.0,851.3275331685429,0.0,0.0,19288.0,50,50,2,658,201107872,,,,,2.0,0.0,3.0,2.0,4.0,2.3,1886.5451583497343,0.0,624.0,0.0,0.0,23304.0,1,1,3,86.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,851.3275331685429,0.04413767799505096,0.036531390884335005,10132.17391304348,2,1,2_1,2_0_1,2_4_1,2_0_1 -7873,2,23.0,2,0.0,99,112,5,56,63,5.0,0.0,555.170527825376,982.3009998098572,88.63342636132812,0.0,14449.0,50,50,1,6581,201107873,,,130.0,,2.0,0.0,3.0,0.0,2.0,1.5,2155.8703996636646,0.0,720.0,0.0,0.0,26635.0,1,1,3,50.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1626.104953996561,0.11254100311416437,0.06105143435316542,17756.666666666668,5,3,5,5_1,5_0,5_0_0 -7874,2,22.0,2,0.0,1,400,2,68,67,5.0,0.0,0.0,728.5399081923108,52.13730962431066,0.0,28701.0,50,43,1,6582,201107874,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3086.4898510476887,0.0,534.0,0.0,0.0,27794.0,2,1,3,76.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,780.6772178166215,0.02720034904068226,0.028087976463143895,18529.333333333332,5,3,5,5_1,5_0,5_1_0 -7875,2,74.0,3,0.0,1,112,2,77,78,4.0,1269.1648073111057,0.0,532.0797082303393,251.99699651750151,0.0,14627.0,71,71,1,6583,201107875,,,102.0,,0.0,2.0,4.0,0.0,2.0,1.5,2826.017227128025,0.0,390.0,0.0,0.0,23095.0,5,5,1,100.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2053.2415120589467,0.14037338566069232,0.0889041572660293,15396.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -7876,2,50.0,2,0.0,2,111,2,52,52,10.0,0.0,0.0,613.9381248811608,0.0,3997.193737863817,40805.0,60,50,2,6588,201107876,,,,630.0,2.0,1.0,4.0,0.0,2.0,1.5,1770.675153955766,0.0,450.0,2300.0,0.0,59357.0,1,1,3,112.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,4611.131862744978,0.11300408927202495,0.07768471895050252,39571.333333333336,10,5,10,10_0,10_3,10_0_1 -7877,2,60.0,3,0.0,2,111,2,77,75,3.0,0.0,0.0,2182.8911106885716,0.0,0.0,39441.0,50,50,1,6589,201107877,,,850.0,,0.0,2.0,4.0,0.0,2.0,1.5,1276.1575228140537,0.0,1600.0,0.0,0.0,18718.0,4,5,1,150.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2182.8911106885716,0.055345734405531595,0.11661989051653872,12478.666666666666,2,1,2_0,2_1_0,2_2_0,2_0_1 -7878,2,55.0,2,0.0,9,112,2,55,54,8.0,0.0,0.0,728.2874323453394,0.0,1505.351951943926,48140.0,30,42,2,659,201107878,,,350.0,,2.0,2.0,3.0,0.0,2.0,1.5,4488.863386828155,1400.0,0.0,0.0,0.0,42449.0,1,1,2,80.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,2233.6393842892653,0.046398823936212405,0.052619364043658634,28299.333333333332,8,4,8,8_0,8_0,8_0_0 -7879,2,58.0,2,0.0,99,300,5,0,38,2.0,0.0,624.566843803548,218.28911106885715,0.0,0.0,9031.0,0,71,1,6590,201107879,,,60.0,,1.0,0.0,4.0,0.0,1.0,1.0,2446.624735768526,0.0,160.0,0.0,0.0,11500.0,0,4,1,98.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,842.8559548724052,0.09332919442724008,0.07329182216281784,11500.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -7880,2,54.0,4,0.0,6,120,4,0,43,9.0,0.0,166.55115834761278,2390.265766203986,0.0,0.0,32231.0,0,33,1,6592,201107880,,,,,1.0,2.0,5.0,0.0,1.0,1.0,1442.2631783698955,0.0,1752.0,0.0,0.0,36985.0,0,1,2,100.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2556.8169245515987,0.07932788075305137,0.06913118627961602,36985.0,9,5,9,9_1,9_1,9_0_0 -7881,1,20.0,3,113.0,5,300,2,63,67,6.0,793.228004569441,0.0,184.18143746434822,90.37133668213848,0.0,21848.0,50,50,1,6593,201107881,,,122.0,,2.0,0.0,6.0,0.0,2.0,1.5,2321.564095979601,0.0,135.0,0.0,0.0,31324.0,1,1,3,90.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1067.7807787159277,0.04887315904045806,0.03408826390997088,20882.666666666668,6,3,6,6_1,6_0,6_0_0 -7882,2,60.0,4,0.0,6,300,4,0,78,2.0,0.0,0.0,429.75668741681255,194.64595593075978,0.0,10691.0,0,70,1,6595,201107882,,,300.0,,0.0,6.0,6.0,0.0,1.0,1.0,1931.9541993766318,0.0,315.0,0.0,0.0,10850.0,0,6,1,130.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,624.4026433475724,0.05840451251964946,0.05754863072327856,10850.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -7883,2,77.0,3,0.0,4,111,4,77,78,5.0,0.0,0.0,1719.0267496672502,145.98446694806984,0.0,33240.0,71,71,1,6596,201107883,,,400.0,,0.0,4.0,4.0,0.0,2.0,1.5,2858.655489760822,0.0,1260.0,0.0,0.0,25500.0,5,5,1,92.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1865.01121661532,0.0561074373229639,0.07313769476922824,17000.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -7884,2,48.0,3,0.0,8,112,2,54,46,6.0,0.0,0.0,556.6372332255858,0.0,1911.7013528913908,60270.0,50,41,8,6597,201107884,,,,,2.0,1.0,6.0,2.0,4.0,2.3,3174.180302911526,0.0,408.0,1100.0,0.0,49445.0,1,1,2,140.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2468.3385861169763,0.04095468037360173,0.049920893641763095,21497.826086956524,6,3,6,6_0,6_1,6_0_0 -7885,2,86.0,3,0.0,2,112,2,0,71,8.0,3893.163046426817,0.0,0.0,90.37133668213848,0.0,45821.0,0,71,1,6598,201107885,,,450.0,,0.0,2.0,10.0,0.0,1.0,1.0,2879.4388498755684,0.0,0.0,0.0,0.0,28040.0,0,5,1,192.0,6,0.0,1,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3983.5343831089554,0.08693687137140078,0.14206613349176017,28040.0,8,4,8,8_1,8_0,8_0_1 -7886,2,52.0,2,0.0,4,111,2,54,47,10.0,0.0,0.0,461.1357471329608,0.0,1433.776014668543,65212.0,50,50,2,6599,201107886,,,,270.0,2.0,0.0,3.0,0.0,2.0,1.5,4229.286698222112,0.0,338.0,825.0,0.0,67519.0,1,1,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1894.9117618015039,0.029057715785461326,0.028064867101134552,45012.666666666664,10,5,10,10_0,10_4,10_0_1 -7887,2,75.0,3,0.0,1,112,2,0,77,4.0,1745.1016100527704,0.0,525.2581735094376,187.69431464751835,0.0,8111.0,0,71,1,660,201107887,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3220.37343066884,0.0,385.0,0.0,0.0,14960.0,0,5,1,100.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2458.0540982097264,0.3030519169288283,0.16430842902471432,14960.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -7888,1,22.0,4,313.0,8,111,2,52,47,5.0,0.0,0.0,327.43366660328576,0.0,625.6477154917279,26863.0,20,20,2,6602,201107888,,,,37.0,2.0,0.0,1.0,0.0,2.0,1.5,2401.6913235365723,0.0,240.0,360.0,0.0,28172.0,4,1,3,33.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,953.0813820950136,0.03547933522298379,0.03383080299925506,18781.333333333332,5,3,5,5_0,5_3,5_0_0 -7889,2,51.0,2,0.0,7,111,4,0,62,6.0,0.0,0.0,477.50743046312505,0.0,0.0,11817.0,0,43,2,6603,201107889,,,160.0,,1.0,0.0,1.0,0.0,1.0,1.0,6219.917096752226,0.0,350.0,0.0,0.0,19960.0,0,1,3,20.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,477.50743046312505,0.04040851573691504,0.0239232179590744,19960.0,6,3,6,6_0,6_2,6_0_0 -7890,2,28.0,1,0.0,9,221,5,54,62,5.0,0.0,0.0,1364.3069441803573,0.0,0.0,21083.0,31,50,1,6607,201107890,,,210.0,,2.0,1.0,5.0,0.0,2.0,1.5,3397.610879419791,0.0,1000.0,0.0,0.0,27140.0,1,1,2,92.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1364.3069441803573,0.06471123389367535,0.05026923154680756,18093.333333333332,5,3,5,5_1,5_1,5_0_0 -7891,2,86.0,3,0.0,2,111,2,0,86,3.0,1903.7472109666587,0.0,382.0059443705,173.79103208103552,0.0,19036.0,0,71,1,6608,201107891,,,178.0,,0.0,2.0,5.0,0.0,1.0,1.0,3172.2451022464647,0.0,280.0,0.0,0.0,14500.0,0,5,5,120.0,8,6.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2459.5441874181943,0.1292048848191949,0.16962373706332373,14500.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -7892,2,62.0,3,0.0,2,111,2,75,75,7.0,0.0,0.0,2843.020172342061,0.0,445.15407721770384,66479.0,60,33,1,6609,201107892,,,450.0,,1.0,0.0,5.0,2.0,4.0,2.5,1921.736658355474,414.0,1926.0,0.0,0.0,57500.0,5,5,2,130.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3288.1742495597646,0.04946184884790332,0.05718563912277851,23000.0,7,4,7,7_1,7_3,7_0_1 -7893,1,22.0,3,262.0,7,111,2,0,67,5.0,0.0,0.0,682.1534720901786,0.0,0.0,7818.0,0,60,2,6610,201107893,,,,23.0,1.0,0.0,1.0,0.0,1.0,1.0,3546.0277465905533,0.0,500.0,0.0,0.0,17664.0,0,1,3,20.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,682.1534720901786,0.08725421745845212,0.038618289860177686,17664.0,5,3,5,5_0,5_2,5_0_0 -7894,2,31.0,2,0.0,1,111,2,84,63,2.0,0.0,0.0,272.86138883607146,0.0,312.82385774586396,29414.0,41,12,2,6612,201107894,,,,600.0,1.0,0.0,1.0,0.0,2.0,1.5,3187.656435342139,0.0,200.0,180.0,0.0,15945.0,3,1,3,28.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,585.6852465819354,0.019911785088119107,0.03673159276148858,10630.0,2,1,2_0,2_0_0,2_4_0,2_1_0 -7895,2,42.0,1,0.0,8,112,2,54,23,9.0,0.0,0.0,1214.233180320518,0.0,3143.8797703459327,68743.0,10,12,1,6614,201107895,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1833.134691326573,0.0,890.0,1809.0,0.0,87208.0,1,1,3,170.0,9,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4358.112950666451,0.06339718881437312,0.04997377477601196,36336.66666666667,9,5,9,9_1,9_0,9_0_0 -7896,2,48.0,2,0.0,6,112,2,34,34,10.0,0.0,0.0,2455.752499524643,0.0,0.0,87507.0,20,10,1,6615,201107896,,,445.0,,2.0,3.0,6.0,0.0,2.0,1.5,1222.4132589184003,0.0,1800.0,0.0,0.0,98808.0,1,1,2,120.0,9,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2455.752499524643,0.028063497771888456,0.02485378207761156,65872.0,10,5,10,10_1,10_0,10_0_0 -7897,2,73.0,3,0.0,7,111,1,0,77,4.0,0.0,0.0,354.7198054868929,0.0,653.4542806246935,11888.0,0,71,2,6617,201107897,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2855.9751306529674,0.0,260.0,376.0,0.0,15307.0,0,5,1,49.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1008.1740861115863,0.08480603012378754,0.06586359744637005,15307.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -7898,2,31.0,5,0.0,4,111,1,55,52,4.0,0.0,0.0,491.1504999049286,0.0,834.1969539889706,39835.0,50,31,2,6618,201107898,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2833.412004831864,0.0,360.0,480.0,0.0,31788.0,1,1,2,69.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1325.3474538938992,0.03327092892918035,0.04169332622039446,15137.142857142857,4,2,4_0,4_0_0,4_3_0,4_0_1 -7899,1,46.0,3,317.0,3,111,1,85,67,1.0,0.0,0.0,764.011888741,0.0,1042.7461924862132,19711.0,70,70,2,6619,201107899,,,,,2.0,1.0,4.0,3.0,5.0,2.8,2655.5735461974273,0.0,560.0,600.0,0.0,23854.0,6,4,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1806.758081227213,0.09166242611877698,0.0757423526967055,8519.285714285716,1,1,1_1,1_0_1,1_4_1,1_0_1 -7900,2,59.0,3,0.0,6,111,2,46,22,10.0,0.0,0.0,6384.9564987640715,0.0,0.0,61811.0,70,70,2,662,201107900,,,,660.0,2.0,2.0,3.0,0.0,2.0,1.5,4271.552400708726,0.0,4680.0,0.0,0.0,66165.0,1,1,3,75.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,6384.9564987640715,0.10329806181365891,0.09650051384816855,44110.0,10,5,10,10_0,10_3,10_0_0 -7901,2,52.0,3,0.0,1,111,5,0,53,7.0,0.0,249.82673752141918,409.2920832541072,521.3730962431066,0.0,17617.0,0,71,1,6620,201107901,,,100.0,,1.0,0.0,6.0,0.0,2.0,1.5,3274.7138857386108,0.0,300.0,0.0,0.0,34512.0,0,1,1,70.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1180.491917018633,0.06700868008279691,0.03420525953345599,23008.0,7,4,7,7_1,7_3,7_1_0 -7902,2,29.0,2,0.0,4,111,1,85,63,4.0,0.0,929.9106341075047,227.83925967811967,0.0,187.69431464751835,28094.0,31,71,2,6621,201107902,670.0,670.0,,300.0,1.0,0.0,4.0,2.0,4.0,2.1,3886.338184752028,0.0,167.0,108.0,0.0,32543.0,6,1,3,76.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1345.4442084331426,0.047890802606718255,0.04134358259635383,15496.666666666666,4,2,4_0,4_0_0,4_2_0,4_0_1 -7903,2,48.0,4,0.0,1,111,2,47,52,7.0,0.0,266.48185335618047,910.3565915901053,0.0,2472.5828869008647,58259.0,50,41,1,6622,201107903,,,384.0,,2.0,1.0,4.0,1.0,3.0,2.0,1100.212333566089,360.0,530.0,1200.0,0.0,44982.0,1,1,1,79.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3649.42133184715,0.06264133149980518,0.08113070410046574,22491.0,7,4,7,7_1,7_2,7_1_0 -7904,2,43.0,3,0.0,3,300,2,62,62,7.0,2062.392811880547,0.0,750.3688192991965,93.84715732375918,0.0,38507.0,50,50,1,6623,201107904,,,,,3.0,3.0,4.0,1.0,3.0,2.0,1168.824052392399,0.0,550.0,0.0,0.0,47415.0,1,1,3,90.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2906.608788503503,0.0754826080583661,0.06130146132033119,23707.5,7,4,7,7_1,7_0,7_0_1 -7905,2,44.0,3,0.0,4,111,1,64,43,6.0,0.0,0.0,1005.4942178609233,0.0,0.0,30662.0,41,50,2,6624,201107905,,,,318.0,3.0,0.0,3.0,2.0,4.0,2.3,2487.5389902928487,0.0,737.0,0.0,0.0,47400.0,4,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1005.4942178609233,0.03279284514581317,0.021212958182719902,20608.695652173916,6,3,6,6_0,6_4,6_0_1 -7906,2,70.0,2,0.0,5,111,4,72,75,8.0,0.0,0.0,1555.3099163656073,62.56477154917279,0.0,81160.0,71,31,1,6626,201107906,,,495.0,,0.0,3.0,3.0,0.0,2.0,1.5,4853.671323860856,0.0,1140.0,0.0,0.0,38140.0,5,5,1,75.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1617.87468791478,0.019934385016199853,0.042419367800597275,25426.666666666668,8,4,8,8_1,8_2,8_0_0 -7907,2,61.0,2,0.0,7,111,2,0,75,9.0,0.0,0.0,1091.4455553442858,0.0,0.0,80305.0,0,31,2,6627,201107907,,,,,0.0,1.0,5.0,0.0,1.0,1.0,3397.6639672011675,0.0,800.0,0.0,0.0,33208.0,0,5,1,102.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1091.4455553442858,0.01359125279053964,0.032866946378712535,33208.0,9,5,9,9_0,9_3,9_0_0 -7908,2,71.0,3,0.0,2,111,2,0,78,3.0,0.0,0.0,581.1947582208322,0.0,1296.481099324525,22266.0,0,70,1,6628,201107908,,,249.0,,0.0,3.0,5.0,0.0,1.0,1.0,1293.1405032769867,0.0,426.0,746.0,0.0,14482.0,0,5,1,106.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1877.6758575453573,0.08432928489829145,0.1296558388030215,14482.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -7909,2,61.0,2,0.0,4,221,4,77,75,7.0,0.0,0.0,1350.6638747385537,125.12954309834558,0.0,26951.0,50,42,1,6629,201107909,,,160.0,,0.0,3.0,9.0,0.0,2.0,1.5,3938.8558700293847,0.0,990.0,0.0,0.0,37056.0,6,5,5,250.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1475.7934178368992,0.05475839181614408,0.03982603135354326,24704.0,7,4,7,7_1,7_1,7_0_1 -7910,2,26.0,2,0.0,9,112,2,0,43,8.0,0.0,0.0,275.59000272443217,0.0,469.23578661879594,21952.0,0,10,2,663,201107910,,,64.0,480.0,1.0,0.0,2.0,0.0,1.0,1.0,2854.2663772183923,0.0,202.0,270.0,0.0,25134.0,0,1,3,53.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,744.825789343228,0.03392974623465871,0.029634192302985123,25134.0,8,4,8,8_0,8_1,8_0_0 -7911,2,60.0,3,0.0,7,111,2,0,45,6.0,0.0,0.0,418.84223186336965,0.0,1611.0428673911993,22742.0,0,31,1,6630,201107911,,,,532.0,1.0,1.0,3.0,0.0,1.0,1.0,2024.4019343894715,0.0,307.0,927.0,0.0,21230.0,0,1,3,69.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2029.885099254569,0.08925710576266682,0.09561399431250914,21230.0,6,3,6,6_1,6_2,6_0_0 -7912,1,28.0,4,397.0,8,112,4,85,68,2.0,0.0,0.0,1105.0886247860894,208.54923849724264,0.0,13589.0,43,50,1,6631,201107912,,,120.0,,1.0,0.0,3.0,3.0,5.0,2.4,2459.2751805882067,0.0,810.0,0.0,0.0,24647.0,6,1,3,85.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1313.637863283332,0.09666920768881684,0.053298083469928675,10269.583333333334,2,1,2_1,2_1_1,2_0_1,2_0_0 -7913,2,24.0,3,0.0,2,111,1,55,55,6.0,0.0,0.0,559.3658471139465,0.0,0.0,40064.0,43,31,2,6632,201107913,,,,440.0,2.0,0.0,2.0,0.0,2.0,1.5,5129.5663994875285,0.0,410.0,0.0,0.0,30633.0,1,1,3,65.0,7,5.0,3,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,559.3658471139465,0.013961807286190758,0.01826023723154593,20422.0,6,3,6,6_0,6_2,6_0_1 -7914,2,82.0,3,0.0,1,300,2,0,71,2.0,237.96840137083234,0.0,955.0148609262501,281.54147197127753,0.0,5462.0,0,71,1,6633,201107914,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3112.905657043172,0.0,700.0,0.0,0.0,10380.0,0,5,5,100.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1474.5247342683601,0.26996058847827903,0.1420544059988786,10380.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -7915,2,38.0,2,0.0,8,111,2,0,43,8.0,0.0,0.0,884.0708998288715,0.0,0.0,30087.0,0,33,2,6634,201107915,,,140.0,,1.0,0.0,3.0,0.0,1.0,1.0,2069.7807624077695,0.0,648.0,0.0,0.0,24872.0,0,1,2,70.0,7,5.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,884.0708998288715,0.029383816925212598,0.03554482549971339,24872.0,7,4,7,7_0,7_2,7_0_0 -7916,2,81.0,1,0.0,7,111,4,0,74,10.0,0.0,0.0,4371.239449153864,0.0,0.0,45905.0,0,12,1,6635,201107916,,,370.0,,0.0,2.0,6.0,0.0,1.0,1.0,3218.8246157904327,0.0,3204.0,0.0,0.0,118568.0,0,5,1,160.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4371.239449153864,0.09522360198570666,0.03686694090440814,118568.0,10,5,10,10_1,10_3,10_0_0 -7917,2,43.0,4,0.0,3,120,5,0,63,3.0,0.0,0.0,0.0,260.6865481215533,0.0,16530.0,0,50,1,6636,201107917,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2137.870921152186,0.0,0.0,0.0,0.0,13200.0,0,1,2,65.0,0,2.0,1,8,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,260.6865481215533,0.015770511078133896,0.01974898091829949,13200.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -7918,2,56.0,2,0.0,1,111,2,55,37,9.0,0.0,0.0,1105.0886247860894,0.0,2726.7812933514474,78921.0,31,20,2,6637,201107918,,,,1059.0,2.0,5.0,5.0,2.0,4.0,2.3,2002.4494508114092,0.0,810.0,1569.0,0.0,71952.0,1,1,3,145.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3831.869918137537,0.0485532357438139,0.05325591947600535,31283.478260869568,9,5,9,9_0,9_3,9_1_0 -7919,1,22.0,3,317.0,1,111,2,84,84,2.0,0.0,0.0,1146.0178331115,0.0,0.0,14169.0,41,20,2,6638,201107919,,,,258.0,0.0,0.0,2.0,0.0,2.0,1.5,3633.170635191729,0.0,840.0,0.0,0.0,15292.0,3,3,3,52.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1146.0178331115,0.08088205470474276,0.07494231186970311,10194.666666666666,2,1,2_1,2_0_1,2_3_1,2_1_0 -7920,2,41.0,1,0.0,3,111,2,34,31,10.0,0.0,416.377895869032,1227.8762497623215,0.0,2085.4923849724264,53772.0,10,10,1,6639,201107920,,,500.0,,2.0,0.0,7.0,0.0,2.0,1.5,2676.225062213336,0.0,900.0,1200.0,0.0,77246.0,1,1,2,200.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3729.7465306037802,0.0693622430001447,0.04828400862962199,51497.333333333336,10,5,10,10_1,10_3,10_0_1 -7921,2,50.0,1,0.0,7,300,2,13,13,4.0,0.0,0.0,538.4124946267331,8964.141434739813,1112.8851930442595,113846.0,44,44,1,664,201107921,,,,,3.0,0.0,5.0,2.0,4.0,2.5,2702.3055565059617,1035.0,0.0,0.0,0.0,37851.0,1,1,1,160.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,10615.439122410806,0.09324384802637603,0.28045333339702533,15140.4,4,2,4_0,4_1_0,4_0_0,4_0_0 -7922,1,53.0,3,264.0,99,111,1,0,56,2.0,0.0,0.0,834.9558498383786,0.0,104.27461924862132,11196.0,0,71,2,6640,201107922,,,,,1.0,4.0,4.0,1.0,2.0,1.5,4059.332969954712,0.0,612.0,60.0,0.0,14356.0,0,1,3,72.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,939.230469087,0.08388982396275455,0.06542424554799386,9570.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_0 -7923,2,78.0,3,0.0,1,400,2,71,71,3.0,1237.435687128328,0.0,248.93221451459578,140.77073598563877,99.9983796648465,14104.0,50,70,1,6641,201107923,,,,,0.0,6.0,6.0,0.0,2.0,1.5,3098.546206819735,93.0,147.0,0.0,0.0,19993.0,5,5,5,127.0,0,0.0,3,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1727.137017293409,0.12245724739743398,0.08638708634489116,13328.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -7924,2,38.0,2,0.0,7,111,2,52,47,5.0,0.0,0.0,532.0797082303393,0.0,1268.6745341915594,46088.0,50,31,2,6643,201107924,,,,481.0,2.0,0.0,4.0,2.0,4.0,2.1,2859.7656046271877,0.0,390.0,730.0,0.0,36102.0,1,1,3,85.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1800.7542424218987,0.0390720847600655,0.04987962557259705,17191.428571428572,5,3,5,5_0,5_2,5_0_0 -7925,2,84.0,1,0.0,5,212,2,86,72,6.0,3099.935041857376,0.0,942.7360984286269,180.74267336427695,0.0,21843.0,71,71,1,6644,201107925,,,,,0.0,6.0,4.0,0.0,2.0,1.5,2932.2939243840838,0.0,691.0,0.0,0.0,32060.0,6,5,1,130.0,1,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4223.41381365028,0.1933531938676134,0.13173467915315906,21373.333333333332,6,3,6,6_1,6_0,6_0_0 -7926,2,26.0,3,0.0,8,112,4,46,53,6.0,253.83296146222114,0.0,1596.2391246910179,208.54923849724264,0.0,43394.0,41,50,1,6646,201107926,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1803.2729346181657,0.0,1170.0,0.0,0.0,34606.0,1,1,3,90.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2058.6213246504817,0.04744022963198787,0.05948741041005842,19225.555555555555,5,3,5,5_1,5_0,5_0_0 -7927,2,28.0,2,0.0,2,112,2,55,64,8.0,3172.912018277764,346.98157989085996,450.22129157951787,0.0,0.0,29388.0,50,71,1,6648,201107927,,,220.0,,2.0,0.0,6.0,1.0,3.0,1.8,2262.2635553582827,0.0,330.0,0.0,0.0,44645.0,1,1,2,153.0,5,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3970.114889748142,0.13509306144508446,0.08892630506771514,24802.777777777777,7,4,7,7_1,7_0,7_0_1 -7928,2,52.0,3,0.0,2,111,2,78,64,4.0,0.0,0.0,597.5664415509965,0.0,1960.3628418740807,30677.0,70,50,8,6649,201107928,,,,,1.0,1.0,4.0,1.0,3.0,2.0,1734.0336630193494,0.0,438.0,1128.0,0.0,30037.0,6,1,2,72.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2557.9292834250773,0.08338264117824681,0.08515927966924385,15018.5,4,2,4_0,4_0_0,4_3_0,4_0_1 -7929,2,95.0,1,0.0,1,111,1,0,78,6.0,0.0,0.0,357.4484193752536,0.0,0.0,11557.0,0,71,2,665,201107929,,,,450.0,0.0,4.0,2.0,0.0,1.0,1.0,4286.477241657766,0.0,262.0,0.0,0.0,21094.0,0,5,3,45.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,357.4484193752536,0.030929170145821024,0.0169455020088771,21094.0,6,3,6,6_0,6_2,6_1_0 -7931,2,39.0,3,0.0,8,111,2,0,46,8.0,2308.2934932970734,0.0,1446.1653608311788,0.0,0.0,38099.0,0,31,1,6653,201107931,,,,,1.0,0.0,7.0,2.0,3.0,1.6,2223.4156606765264,0.0,1060.0,0.0,0.0,40758.0,0,1,2,150.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3754.458854128252,0.09854481362052159,0.09211587551224917,25473.75,8,4,8,8_1,8_3,8_0_0 -7932,2,60.0,2,0.0,2,112,2,0,78,9.0,0.0,0.0,491.1504999049286,0.0,3647.8737633809355,58900.0,0,50,1,6654,201107932,,,,,1.0,0.0,8.0,1.0,2.0,1.5,4034.7909031821896,0.0,360.0,2099.0,0.0,49133.0,0,5,1,139.0,7,0.0,2,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4139.024263285864,0.07027205879942044,0.08424122816204718,32755.333333333332,9,5,9,9_1,9_0,9_0_1 -7933,2,39.0,4,0.0,1,400,2,56,47,3.0,0.0,69.396315978172,2398.451607869068,583.9378677922793,0.0,31752.0,71,50,1,6655,201107933,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2253.2026740898946,0.0,1758.0,0.0,0.0,28540.0,1,1,1,80.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3051.7857916395196,0.09611318315821113,0.10693012584581359,13590.476190476189,3,2,3_0,3_1_0,3_0_0,3_1_0 -7934,2,39.0,2,0.0,7,221,2,43,12,3.0,1932.3034191311585,0.0,1637.1683330164287,104.27461924862132,0.0,48992.0,10,50,1,6656,201107934,,,255.0,,2.0,0.0,5.0,1.0,3.0,1.8,1440.9113742865513,0.0,1200.0,0.0,0.0,25616.0,1,1,2,178.0,1,3.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3673.746371396209,0.07498665846252875,0.14341608258105126,14231.111111111111,3,2,3_0,3_1_0,3_1_0,3_0_0 -7935,2,30.0,1,0.0,1,111,2,46,46,9.0,0.0,138.792631956344,503.0385336271023,0.0,1039.7680982355546,35372.0,10,50,1,6657,201107935,,,513.0,,2.0,0.0,4.0,1.0,3.0,1.8,1264.8131276796842,967.0,0.0,0.0,0.0,53917.0,1,1,2,82.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1681.599263819001,0.04754040664421014,0.031188665241371014,29953.888888888887,9,5,9,9_1,9_2,9_1_0 -7936,2,58.0,3,0.0,1,111,2,0,75,6.0,0.0,0.0,1869.1005135270893,100.7987986070006,0.0,19910.0,0,12,1,6659,201107936,,,,,0.0,0.0,7.0,0.0,1.0,1.0,2025.9001883020073,0.0,1370.0,0.0,0.0,21363.0,0,5,1,150.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1969.89931213409,0.09894019649091361,0.09221079961307353,21363.0,6,3,6,6_1,6_3,6_1_0 -7937,2,61.0,3,0.0,99,111,2,56,78,4.0,0.0,0.0,477.50743046312505,0.0,782.0596443646599,24287.0,71,50,1,666,201107937,,,400.0,,1.0,5.0,3.0,0.0,2.0,1.5,2120.865999905958,0.0,350.0,450.0,0.0,23271.0,1,5,1,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1259.5670748277848,0.051861780986856544,0.05412603991353121,15514.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -7938,2,51.0,3,0.0,8,111,1,85,45,7.0,0.0,0.0,955.0148609262501,0.0,1390.3282566482842,49986.0,50,42,1,6660,201107938,,,368.0,,2.0,0.0,6.0,2.0,4.0,2.5,1767.3469625321425,0.0,700.0,800.0,0.0,56151.0,6,1,2,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2345.3431175745345,0.0469199999514771,0.04176850131920241,22460.4,7,4,7,7_1,7_3,7_0_0 -7939,2,38.0,3,0.0,99,111,1,0,48,6.0,0.0,0.0,409.2920832541072,0.0,0.0,19866.0,0,42,2,6661,201107939,,,,339.0,1.0,0.0,3.0,1.0,2.0,1.3,2928.814149828171,0.0,300.0,0.0,0.0,26276.0,0,1,3,75.0,9,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,409.2920832541072,0.020602641863188723,0.015576651060058882,20212.30769230769,6,3,6,6_0,6_3,6_0_0 -7940,2,48.0,1,0.0,3,111,1,77,38,10.0,0.0,0.0,4434.385588200022,0.0,8569.141516566402,59235.0,70,20,2,6662,201107940,,,134.0,234.0,1.0,4.0,3.0,0.0,2.0,1.5,2870.052375925792,7748.0,296.0,137.0,0.0,66748.0,7,1,3,38.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,13003.527104766425,0.21952438768914365,0.19481523198847042,44498.666666666664,10,5,10,10_0,10_2,10_0_1 -7941,2,29.0,3,0.0,99,111,2,43,54,8.0,0.0,0.0,502.06495545837146,0.0,886.3342636132812,56751.0,33,31,1,6663,201107941,,,30.0,,2.0,0.0,6.0,1.0,3.0,1.8,4411.829675365937,0.0,368.0,510.0,0.0,45522.0,1,1,2,150.0,5,4.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1388.3992190716526,0.024464753380057665,0.030499521529626393,25290.0,8,4,8,8_1,8_2,8_0_0 -7942,2,79.0,3,0.0,1,400,2,0,75,3.0,1903.7472109666587,0.0,822.6770873407554,97.32297796537989,0.0,17725.0,0,70,1,6664,201107942,,,240.0,,0.0,2.0,6.0,0.0,1.0,1.0,2466.3700854933963,0.0,603.0,0.0,0.0,13460.0,0,5,2,150.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2823.747276272794,0.15930873208873308,0.20978805915845422,13460.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -7943,2,56.0,4,0.0,5,111,2,75,34,2.0,0.0,749.4802125642576,3143.3631993915433,234.61789330939797,0.0,32616.0,50,50,1,6666,201107943,,,1200.0,,1.0,1.0,5.0,1.0,3.0,2.0,1337.5245499651571,0.0,2304.0,0.0,0.0,23350.0,7,1,2,110.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4127.461305265199,0.12654713347023544,0.17676493812698926,11675.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -7944,1,63.0,4,130.0,2,111,1,85,63,2.0,0.0,0.0,532.0797082303393,0.0,521.3730962431066,40687.0,71,71,2,6667,201107944,,,,320.0,1.0,2.0,6.0,4.0,6.0,3.5,3264.3694498612604,0.0,390.0,300.0,0.0,33760.0,6,1,3,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1053.452804473446,0.02589163134351134,0.031204170748621026,9645.714285714286,1,1,1_1,1_0_1,1_4_1,1_0_1 -7945,2,36.0,3,0.0,4,112,4,0,54,7.0,0.0,0.0,1296.0915969713394,0.0,0.0,31865.0,0,31,1,6669,201107945,,,,,1.0,0.0,2.0,1.0,2.0,1.3,1883.7103857763118,0.0,950.0,0.0,0.0,28230.0,0,1,2,44.0,6,0.0,2,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1296.0915969713394,0.0406744577740888,0.045911852531751306,21715.384615384613,6,3,6,6_1,6_0,6_0_1 -7946,2,61.0,2,0.0,4,112,2,75,45,10.0,3839.223542116095,0.0,1964.8976775718313,86.89551604051776,677.4083783747667,28755.0,50,50,1,667,201107946,,,703.0,,1.0,2.0,6.0,0.0,2.0,1.5,1254.1411699086116,630.0,1200.0,0.0,0.0,62414.0,5,5,1,150.0,7,0.0,3,5,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,6568.42511410321,0.22842723401506557,0.10523961153111817,41609.333333333336,10,5,10,10_1,10_0,10_0_1 -7947,2,62.0,2,0.0,5,111,2,75,74,9.0,0.0,0.0,559.3658471139465,0.0,1047.9599234486443,16914.0,50,20,1,6670,201107947,,,223.0,,0.0,0.0,5.0,0.0,2.0,1.5,2170.566062523559,0.0,410.0,603.0,0.0,55752.0,5,5,1,100.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1607.3257705625908,0.09502931125473518,0.028829921268521144,37168.0,9,5,9,9_1,9_3,9_0_0 -7948,2,80.0,3,0.0,1,111,2,0,78,6.0,0.0,0.0,520.2053088180996,0.0,1075.2513942456615,16001.0,0,70,1,6672,201107948,,,350.0,,0.0,5.0,3.0,0.0,1.0,1.0,1517.066584705727,1000.0,0.0,0.0,0.0,19310.0,0,5,1,48.0,7,5.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1595.456703063761,0.09970981207823018,0.08262334039688043,19310.0,6,3,6,6_1,6_2,6_1_0 -7949,2,35.0,1,0.0,5,111,2,34,38,10.0,0.0,0.0,884.0708998288715,0.0,1946.4595593075978,69205.0,10,12,1,6673,201107949,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1648.3802366057382,0.0,648.0,1120.0,0.0,102849.0,1,1,2,150.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2830.5304591364693,0.04090066410138674,0.027521224894130905,48975.71428571428,10,5,10,10_1,10_3,10_0_0 -7950,1,41.0,4,323.0,1,111,4,85,22,3.0,0.0,0.0,1528.023777482,0.0,0.0,16151.0,50,71,2,6675,201107950,,,320.0,,1.0,0.0,3.0,2.0,4.0,2.1,3533.2341802747756,0.0,1120.0,0.0,0.0,26867.0,4,1,3,66.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1528.023777482,0.09460861726716611,0.05687362852130867,12793.809523809523,3,2,3_1,3_0_1,3_3_1,3_1_0 -7951,2,26.0,3,0.0,6,111,2,0,52,7.0,0.0,0.0,652.857662566715,0.0,1349.440499778305,35040.0,0,42,2,6677,201107951,,,,,1.0,0.0,3.0,0.0,1.0,1.0,5705.659554462523,1255.0,0.0,0.0,0.0,23332.0,0,1,2,64.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2002.29816234502,0.057143212395691215,0.08581768225377251,23332.0,7,4,7,7_0,7_2,7_0_0 -7952,1,37.0,3,369.0,3,111,1,85,85,1.0,0.0,0.0,405.7601408781176,0.0,838.6960875116158,26925.0,71,70,2,6679,201107952,,,,30.0,0.0,0.0,3.0,3.0,5.0,2.4,3586.200815933792,780.0,0.0,0.0,0.0,17718.0,7,6,3,60.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1244.4562283897335,0.04621935852886661,0.07023683420192649,7382.5,1,1,1_1,1_0_1,1_3_1,1_0_1 -7953,2,61.0,3,0.0,4,111,1,0,75,9.0,0.0,0.0,272.86138883607146,0.0,0.0,29952.0,0,50,2,6680,201107953,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2039.22626261756,0.0,200.0,0.0,0.0,29270.0,0,5,2,53.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,272.86138883607146,0.009109955556759865,0.009322220322380302,29270.0,9,5,9,9_0,9_2,9_0_1 -7954,2,45.0,4,0.0,1,111,1,0,37,9.0,0.0,0.0,905.8998109357572,0.0,104.27461924862132,77558.0,0,10,2,6682,201107954,,,,2379.0,1.0,0.0,4.0,2.0,3.0,1.8,6223.225714678762,0.0,664.0,60.0,0.0,54115.0,0,1,3,102.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1010.1744301843785,0.013024761213341996,0.018667179713284274,30063.888888888887,9,5,9,9_0,9_4,9_1_0 -7955,2,31.0,2,0.0,1,111,4,0,43,7.0,0.0,0.0,859.5133748336251,0.0,0.0,14687.0,0,33,2,6683,201107955,,,,444.0,1.0,0.0,2.0,0.0,1.0,1.0,2825.156535561944,0.0,630.0,0.0,0.0,23475.0,0,1,3,45.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,859.5133748336251,0.058522051803201816,0.03661398827832269,23475.0,7,4,7,7_0,7_3,7_1_0 -7956,2,53.0,2,0.0,1,112,2,0,63,9.0,0.0,416.377895869032,818.5841665082144,201.5975972140012,0.0,31417.0,0,50,1,6685,201107956,,,,,1.0,5.0,6.0,1.0,2.0,1.5,3138.0921576038145,0.0,600.0,0.0,0.0,52851.0,0,1,1,200.0,8,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1436.5596595912475,0.04572555175832344,0.027181314631534833,35234.0,9,5,9,9_1,9_0,9_1_0 -7957,2,26.0,2,0.0,99,111,2,0,33,4.0,0.0,0.0,245.5752499524643,0.0,0.0,32361.0,0,10,2,6686,201107957,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3865.4704002958492,0.0,180.0,0.0,0.0,15249.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,245.5752499524643,0.007588617470179052,0.016104351101873193,15249.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -7958,2,70.0,3,0.0,4,111,1,0,86,4.0,0.0,0.0,474.77881657476433,2356.606395018842,208.54923849724264,21699.0,0,70,2,6687,201107958,1356.0,1356.0,,,0.0,2.0,4.0,0.0,1.0,1.0,2170.152924016563,0.0,348.0,120.0,0.0,16012.0,0,5,5,90.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3039.9344500908487,0.14009560118396464,0.1898535129959311,16012.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -7959,1,51.0,3,188.0,4,300,2,85,65,4.0,0.0,874.3935813249672,1064.1594164606786,0.0,0.0,21495.0,71,71,1,669,201107959,,,,45.0,1.0,1.0,4.0,1.0,3.0,2.0,3868.1130329675893,0.0,780.0,0.0,0.0,30275.0,6,1,3,75.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1938.5529977856459,0.09018622925264694,0.06403147804411712,15137.5,4,2,4_1,4_1_1,4_0_1,4_0_1 -7960,1,19.0,3,249.0,7,111,2,84,84,1.0,0.0,0.0,709.4396109737858,0.0,0.0,9846.0,41,42,2,6691,201107960,,,,,0.0,0.0,1.0,0.0,2.0,1.5,3495.6438127387455,0.0,520.0,0.0,0.0,4931.0,3,3,3,36.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,709.4396109737858,0.07205358632681147,0.14387337476653533,3287.3333333333335,1,1,1_1,1_0_1,1_3_1,1_0_0 -7961,2,28.0,3,0.0,1,112,2,35,42,6.0,0.0,0.0,886.7995137172322,0.0,2537.3490683831187,43115.0,10,30,1,6694,201107961,,,250.0,,2.0,0.0,5.0,2.0,4.0,2.1,2294.3881797095264,0.0,650.0,1460.0,0.0,40844.0,1,1,3,85.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3424.1485821003507,0.07941896282269166,0.08383480026687765,19449.52380952381,6,3,6,6_1,6_0,6_1_0 -7962,2,58.0,4,0.0,1,221,6,0,68,2.0,0.0,0.0,3094.2481494010503,97.32297796537989,0.0,13401.0,0,71,1,6696,201107962,,,156.0,,1.0,0.0,2.0,0.0,1.0,1.0,4768.080783331585,0.0,2268.0,0.0,0.0,11960.0,0,1,1,44.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3191.57112736643,0.2381591767305746,0.2668537731911731,11960.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -7963,1,78.0,2,110.0,4,111,1,0,86,4.0,0.0,0.0,313.79059716148214,0.0,364.9611673701746,16170.0,0,71,2,6697,201107963,,,,259.0,1.0,6.0,5.0,0.0,2.0,1.5,3180.476258673464,0.0,230.0,210.0,0.0,23535.0,0,6,3,101.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,678.7517645316568,0.04197599038538385,0.02884010046873409,15690.0,4,2,4_1,4_0_1,4_4_1,4_0_1 -7964,2,48.0,2,0.0,7,111,2,0,37,9.0,0.0,0.0,818.5841665082144,0.0,1042.7461924862132,44251.0,0,42,1,6699,201107964,,,250.0,,1.0,2.0,6.0,0.0,1.0,1.0,2385.3106075717833,0.0,600.0,600.0,0.0,35217.0,0,1,1,200.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1861.3303589944276,0.04206301233857828,0.05285317769811249,35217.0,9,5,9,9_1,9_3,9_0_0 -7965,2,29.0,2,0.0,8,111,2,0,48,9.0,0.0,0.0,27.286138883607144,0.0,34.7582064162071,39287.0,0,31,2,670,201107965,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3523.24214402716,0.0,20.0,20.0,0.0,30725.0,0,1,2,45.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,62.044345299814246,0.001579258922794162,0.0020193440292860616,30725.0,9,5,9,9_0,9_3,9_0_0 -7966,2,32.0,3,0.0,1,111,6,46,54,5.0,0.0,0.0,1364.3069441803573,0.0,0.0,32791.0,31,31,2,6700,201107966,,,,588.0,2.0,0.0,2.0,0.0,2.0,1.5,3007.0847643066363,0.0,1000.0,0.0,0.0,28283.0,1,1,3,34.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1364.3069441803573,0.04160614022690242,0.0482377026546108,18855.333333333332,5,3,5,5_0,5_4,5_1_0 -7967,2,73.0,2,0.0,6,111,4,72,75,7.0,0.0,0.0,2281.1212106695575,229.4041623469669,0.0,33340.0,70,50,1,6701,201107967,,,238.0,,0.0,1.0,5.0,0.0,2.0,1.5,1452.7458692688172,0.0,1672.0,0.0,0.0,33990.0,5,5,1,200.0,6,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2510.5253730165246,0.07530070105028568,0.07386070529616136,22660.0,7,4,7,7_1,7_2,7_0_0 -7968,2,82.0,2,0.0,2,300,6,71,74,5.0,1724.477681933965,0.0,648.0457984856697,0.0,0.0,17164.0,70,70,1,6702,201107968,,,344.0,,0.0,4.0,7.0,0.0,2.0,1.5,1819.0745396973232,0.0,475.0,0.0,0.0,25680.0,5,5,1,236.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2372.523480419635,0.1382267233989533,0.09238798599764933,17120.0,5,3,5,5_1,5_0,5_0_1 -7969,2,44.0,5,0.0,9,221,6,21,55,1.0,0.0,0.0,2635.84101615645,121.65372245672486,0.0,39529.0,50,50,1,6705,201107969,,,188.0,,2.0,1.0,5.0,1.0,3.0,2.0,4717.406284797897,0.0,1932.0,0.0,0.0,14873.0,1,4,2,170.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2757.4947386131753,0.06975877807718828,0.18540272565139349,7436.5,1,1,1_0,1_1_0,1_1_0,1_0_0 -7970,2,86.0,2,0.0,5,211,1,86,74,9.0,0.0,0.0,1817.2568496482359,0.0,2665.954432123085,35155.0,50,60,1,6706,201107970,,,,,0.0,1.0,5.0,0.0,2.0,1.5,4028.6622538509196,0.0,1332.0,1534.0,0.0,43866.0,6,5,1,156.0,2,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4483.2112817713205,0.1275269885299764,0.10220241831421421,29244.0,9,5,9,9_1,9_1,9_0_0 -7971,1,71.0,3,178.0,5,111,6,78,78,4.0,571.1241632899976,0.0,1405.236152505768,0.0,0.0,29540.0,71,71,1,6707,201107971,,,231.0,,0.0,2.0,4.0,1.0,3.0,2.0,3605.218982777442,0.0,1030.0,0.0,0.0,32066.0,5,5,3,76.0,9,7.0,4,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1976.3603157957655,0.06690454691251745,0.061634139455989695,16033.0,4,2,4_1,4_1_1,4_3_1,4_0_0 -7972,1,39.0,2,122.0,9,221,2,67,62,4.0,0.0,0.0,1799.5208593738912,180.74267336427695,0.0,15301.0,31,41,1,6708,201107972,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2240.043467158469,0.0,1319.0,0.0,0.0,34284.0,4,1,2,104.0,1,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1980.2635327381681,0.12942053020967048,0.05776057440024992,16325.714285714284,4,2,4_1,4_1_1,4_1_1,4_0_0 -7973,2,81.0,3,0.0,6,300,4,78,77,6.0,0.0,0.0,3096.976763289411,0.0,0.0,21138.0,70,70,1,6709,201107973,,,140.0,,0.0,1.0,5.0,0.0,2.0,1.5,2225.0330500394944,0.0,2270.0,0.0,0.0,30530.0,5,5,1,101.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3096.976763289411,0.14651228892465754,0.1014404442610354,20353.333333333332,6,3,6,6_1,6_0,6_0_0 -7974,2,62.0,3,0.0,9,222,4,56,75,7.0,0.0,0.0,2114.6757634795536,118.17790181510415,0.0,30972.0,70,70,1,6710,201107974,,,108.0,,1.0,3.0,4.0,0.0,2.0,1.5,1325.8049032223767,0.0,1550.0,0.0,0.0,33908.0,1,5,1,108.0,1,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2232.8536652946577,0.07209265353527888,0.06585034992611354,22605.333333333332,7,4,7,7_1,7_0,7_0_0 -7975,2,33.0,2,0.0,4,111,1,0,45,8.0,0.0,0.0,240.11802217574288,0.0,88.63342636132812,14979.0,0,33,2,6712,201107975,,,,401.0,1.0,0.0,2.0,0.0,1.0,1.0,3296.325653212862,0.0,176.0,51.0,0.0,27092.0,0,1,3,44.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,328.751448537071,0.021947489721414713,0.012134631940686216,27092.0,8,4,8,8_0,8_3,8_0_1 -7976,2,80.0,4,0.0,4,111,1,0,77,5.0,0.0,0.0,327.43366660328576,0.0,0.0,12829.0,0,71,2,6714,201107976,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3113.0711816299977,0.0,240.0,0.0,0.0,16960.0,0,5,3,80.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,327.43366660328576,0.025522929815518416,0.01930623034217487,16960.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -7977,2,75.0,3,0.0,3,112,2,77,74,5.0,2125.851052246102,0.0,463.8643610213215,114.70208117348345,0.0,30684.0,70,44,1,6715,201107977,,,194.0,,0.0,2.0,5.0,0.0,3.0,1.8,1496.062786442854,0.0,340.0,0.0,0.0,33076.0,5,5,1,120.0,8,0.0,5,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2704.417494440907,0.08813771002610178,0.08176374091307616,18375.555555555555,5,3,5,5_1,5_0,5_0_1 -7978,1,43.0,3,90.0,5,111,4,85,63,1.0,0.0,0.0,1296.0915969713394,0.0,1303.4327406077664,28296.0,71,71,2,6717,201107978,,,,460.0,1.0,0.0,3.0,4.0,6.0,3.3,3504.671405646212,0.0,950.0,750.0,0.0,28170.0,6,1,3,56.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2599.524337579106,0.09186896867327912,0.09227988418811169,8536.363636363636,1,1,1_1,1_0_1,1_4_1,1_0_0 -7979,2,77.0,1,0.0,1,111,2,74,74,10.0,0.0,0.0,1116.0030803395323,0.0,3399.352587505055,53057.0,50,50,1,6718,201107979,,,534.0,,0.0,3.0,5.0,0.0,2.0,1.5,2073.884513863929,0.0,818.0,1956.0,0.0,136012.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4515.3556678445875,0.08510386316309983,0.033198215362207656,90674.66666666667,10,5,10,10_1,10_4,10_1_0 -7980,2,67.0,3,0.0,4,112,2,78,78,7.0,475.9368027416647,138.792631956344,495.6461645179117,234.61789330939797,178.4917314447798,27010.0,70,50,1,672,201107980,,,200.0,,0.0,2.0,4.0,0.0,2.0,1.5,2138.6929203500013,166.0,300.0,0.0,0.0,32350.0,5,5,1,100.0,7,2.0,3,5,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1523.485223970098,0.0564044881144057,0.047093824543125135,21566.666666666668,6,3,6,6_1,6_1,6_0_1 -7981,0,23.0,2,0.0,3,111,1,84,81,2.0,0.0,0.0,0.0,0.0,0.0,36792.0,10,10,2,6720,201107981,,,,,1.0,0.0,3.0,0.0,2.0,1.5,4026.5254236325686,0.0,0.0,0.0,0.0,14190.0,3,4,5,62.0,10,8.0,3,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,9460.0,1,1,1_0,1_0_0,1_4_0,1_0_1 -7982,2,44.0,4,0.0,2,112,2,56,62,3.0,1745.1016100527704,0.0,832.2272359500179,0.0,0.0,41092.0,50,50,1,6721,201107982,,,,,2.0,0.0,8.0,3.0,5.0,2.8,904.4740315000906,0.0,610.0,0.0,0.0,37761.0,1,1,2,120.0,8,1.0,4,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2577.3288460027884,0.06272093950167401,0.06825372331248612,13486.07142857143,3,2,3_0,3_1_0,3_1_0,3_0_1 -7983,1,64.0,4,147.0,8,111,2,0,77,2.0,0.0,0.0,586.6519859975537,0.0,538.7521994512101,16182.0,0,50,2,6723,201107983,,,160.0,243.0,0.0,1.0,3.0,0.0,1.0,1.0,1631.6597337244652,0.0,430.0,310.0,0.0,10844.0,0,5,3,68.0,7,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1125.4041854487637,0.0695466682393254,0.10378127862862077,10844.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -7984,2,46.0,3,0.0,9,111,2,52,22,5.0,0.0,0.0,95.501486092625,0.0,139.0328256648284,21714.0,50,50,1,6725,201107984,,,60.0,400.0,2.0,1.0,4.0,2.0,4.0,2.1,1755.4543597907843,0.0,70.0,80.0,0.0,36312.0,1,1,3,82.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,234.5343117574534,0.010801064371256029,0.00645886516185981,17291.428571428572,5,3,5,5_1,5_3,5_0_0 -7985,2,89.0,4,0.0,3,111,2,86,78,3.0,0.0,0.0,1323.3777358549464,0.0,1911.7013528913908,19050.0,70,71,1,6726,201107985,,,393.0,,0.0,1.0,4.0,0.0,2.0,1.5,5440.621737462199,0.0,970.0,1100.0,0.0,21630.0,6,5,1,80.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3235.079088746337,0.16982042460610694,0.14956445162951165,14420.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -7986,1,47.0,3,300.0,99,111,6,0,85,1.0,0.0,0.0,351.99119159853217,0.0,406.67101506962314,30793.0,0,10,2,6727,201107986,,,,,0.0,0.0,3.0,4.0,5.0,2.4,2165.00914661601,0.0,258.0,234.0,0.0,17340.0,0,6,3,117.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,758.6622066681552,0.02463748925626458,0.043752145713273086,7225.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -7987,1,43.0,4,361.0,7,111,2,0,43,2.0,0.0,0.0,491.1504999049286,0.0,625.6477154917279,17618.0,0,71,1,6728,201107987,,,684.0,15.0,1.0,0.0,3.0,1.0,2.0,1.3,3159.3577468339354,0.0,360.0,360.0,0.0,13100.0,0,4,3,55.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1116.7982153966566,0.06338961376981818,0.0852517721676837,10076.923076923076,2,1,2_1,2_1_1,2_2_1,2_0_0 -7988,2,45.0,2,0.0,7,111,2,48,67,7.0,0.0,0.0,1036.8732775770716,0.0,1320.81184381587,32184.0,50,71,1,6729,201107988,,,720.0,1012.0,2.0,3.0,5.0,1.0,3.0,1.8,2129.698196703253,0.0,760.0,760.0,0.0,43640.0,4,1,3,133.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2357.6851213929413,0.07325643553917914,0.05402578188343128,24244.444444444445,7,4,7,7_1,7_3,7_0_0 -7989,2,55.0,1,0.0,5,111,2,34,38,10.0,0.0,0.0,2787.996680788189,0.0,602.1407807775704,55521.0,20,12,2,673,201107989,,,320.0,,2.0,2.0,6.0,1.0,3.0,2.0,1779.0041203895082,560.0,1830.0,0.0,0.0,84304.0,1,1,1,269.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3390.1374615657596,0.06106045391051602,0.0402132456534181,42152.0,10,5,10,10_0,10_3,10_0_0 -7990,1,38.0,3,80.0,8,111,4,56,22,1.0,0.0,0.0,2032.8173468287323,90.37133668213848,0.0,37839.0,50,50,1,6730,201107990,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1744.5163445906094,0.0,1490.0,0.0,0.0,19270.0,1,1,2,120.0,6,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2123.1886835108708,0.05611112036551893,0.11018104221644373,9176.190476190475,1,1,1_1,1_1_1,1_2_1,1_0_0 -7991,2,71.0,3,0.0,1,111,2,77,78,6.0,0.0,0.0,327.43366660328576,0.0,1216.5372245672486,19779.0,70,50,1,6731,201107991,,,120.0,,0.0,1.0,4.0,0.0,2.0,1.5,1256.4392202840345,0.0,240.0,700.0,0.0,32104.0,5,5,1,70.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1543.9708911705343,0.07806111993379515,0.04809278878552624,21402.666666666668,6,3,6,6_1,6_3,6_1_0 -7992,1,61.0,4,246.0,5,112,2,0,78,2.0,0.0,0.0,39.564901381230364,0.0,100.7987986070006,5319.0,0,70,1,6733,201107992,,,,,0.0,1.0,4.0,0.0,1.0,1.0,1901.4935913131824,0.0,29.0,58.0,0.0,11752.0,0,5,3,62.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,140.36369998823096,0.026389114492993224,0.011943813817922989,11752.0,2,1,2_1,2_1_1,2_0_1,2_0_0 -7993,1,51.0,4,21.0,1,112,2,85,64,2.0,793.228004569441,582.9290542166448,1214.233180320518,69.5164128324142,0.0,19398.0,70,71,2,6737,201107993,,,,299.0,2.0,1.0,4.0,1.0,3.0,2.0,4206.341780990778,0.0,890.0,0.0,0.0,23972.0,6,1,3,125.0,6,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,2659.906651939018,0.13712272666970915,0.11095889587598107,11986.0,2,1,2_1,2_0_1,2_0_1,2_1_0 -7994,2,48.0,2,0.0,4,111,2,52,48,8.0,0.0,0.0,360.1770332636143,0.0,1402.4936288939566,24986.0,41,31,1,6738,201107994,,,430.0,,2.0,3.0,6.0,1.0,3.0,1.8,1479.9694729797513,0.0,264.0,807.0,0.0,51154.0,1,1,2,120.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1762.6706621575709,0.07054633243246501,0.034458119837306386,28418.888888888887,8,4,8,8_1,8_2,8_0_1 -7995,2,50.0,3,0.0,2,111,1,0,47,7.0,0.0,0.0,886.7995137172322,0.0,2606.865481215533,32522.0,0,31,1,674,201107995,,,230.0,,1.0,1.0,5.0,2.0,3.0,1.8,2320.4032278212544,0.0,650.0,1500.0,0.0,41711.0,0,1,1,100.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3493.664994932765,0.10742466622387199,0.08375884047212402,23172.777777777777,7,4,7,7_1,7_2,7_0_1 -7996,2,50.0,3,0.0,5,111,2,21,63,7.0,0.0,0.0,1091.4455553442858,0.0,1737.9103208103552,45088.0,41,71,1,6741,201107996,,,600.0,,2.0,0.0,5.0,1.0,3.0,2.0,5136.426903614531,0.0,800.0,1000.0,0.0,43709.0,1,1,2,105.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2829.355876154641,0.06275186027667319,0.06473165426238627,21854.5,7,4,7,7_1,7_4,7_0_0 -7997,1,21.0,2,259.0,6,111,2,0,55,9.0,0.0,0.0,613.9381248811608,0.0,0.0,10353.0,0,41,2,6742,201107997,,,,56.0,1.0,0.0,1.0,0.0,1.0,1.0,3734.346889570643,0.0,450.0,0.0,0.0,31924.0,0,1,3,20.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,613.9381248811608,0.05930050467315375,0.019231240598958803,31924.0,9,5,9,9_0,9_3,9_0_0 -7998,1,78.0,3,18.0,1,112,2,0,71,3.0,1903.7472109666587,0.0,297.41891383131787,104.27461924862132,0.0,8582.0,0,70,2,6745,201107998,,,151.0,,0.0,4.0,3.0,0.0,1.0,1.0,2945.35887349335,0.0,218.0,0.0,0.0,14268.0,0,5,3,68.0,9,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,2305.4407440465975,0.2686367681247492,0.16158121278711784,14268.0,3,2,3_1,3_0_1,3_0_1,3_1_0 -7999,1,46.0,5,539.0,5,111,1,85,64,1.0,0.0,0.0,1964.6019996197144,0.0,2589.4863780074293,18313.0,41,20,2,6747,201107999,1490.0,1490.0,,,1.0,0.0,5.0,4.0,6.0,3.1,1647.0575751060671,0.0,1440.0,1490.0,0.0,21768.0,6,4,3,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,4554.088377627144,0.2486806300238707,0.20921023417985776,7021.935483870968,1,1,1_1,1_0_1,1_4_1,1_0_0 -8000,2,42.0,3,0.0,1,112,4,54,47,5.0,0.0,0.0,1828.1713052016787,104.27461924862132,0.0,24319.0,43,42,1,6750,201108000,,,,450.0,2.0,0.0,4.0,3.0,5.0,2.6,1881.0598892978246,0.0,1340.0,0.0,0.0,44037.0,1,1,3,87.0,4,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1932.4459244503,0.07946239255110407,0.04388232451007789,16937.30769230769,4,2,4_0,4_1_0,4_0_0,4_1_0 -8001,2,79.0,1,0.0,8,112,2,74,74,9.0,0.0,166.55115834761278,3137.9059716148217,0.0,6082.686122836243,39986.0,71,70,1,6751,201108001,,,154.0,,0.0,2.0,6.0,0.0,2.0,1.5,2044.4575264082837,0.0,2300.0,3500.0,0.0,53414.0,5,5,5,150.0,7,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,9387.143252798678,0.23476074758162052,0.17574312451414756,35609.333333333336,9,5,9,9_1,9_0,9_0_0 -8002,2,34.0,2,0.0,9,112,2,21,46,3.0,0.0,0.0,1807.7067010389733,0.0,0.0,47891.0,42,31,1,6753,201108002,,,226.0,,2.0,0.0,7.0,2.0,4.0,2.1,2459.65681086867,0.0,1325.0,0.0,0.0,25957.0,1,1,2,159.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1807.7067010389733,0.03774627176377552,0.06964235855603396,12360.47619047619,2,1,2_0,2_1_0,2_0_0,2_0_0 -8003,2,40.0,2,0.0,7,111,2,0,46,6.0,0.0,0.0,429.75668741681255,0.0,1129.641708526731,21712.0,0,44,2,6754,201108003,,,260.0,,1.0,0.0,3.0,1.0,2.0,1.3,2839.4211619191833,0.0,315.0,650.0,0.0,24686.0,0,1,2,75.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1559.3983959435436,0.07182196001950736,0.06316934278309745,18989.23076923077,5,3,5,5_0,5_3,5_0_0 -8004,2,74.0,3,0.0,4,120,2,86,78,3.0,1586.456009138882,0.0,61.393812488116076,0.0,0.0,13219.0,71,71,1,6755,201108004,,,,,0.0,4.0,5.0,0.0,2.0,1.5,3531.669300833935,0.0,45.0,0.0,0.0,21380.0,6,5,1,85.0,0,3.0,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1647.8498216269982,0.12465767619540043,0.07707436022577166,14253.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_1 -8005,2,64.0,3,0.0,99,111,2,0,78,6.0,0.0,0.0,298.78322077549825,0.0,665.619652870366,11707.0,0,70,1,6757,201108005,,,150.0,550.0,0.0,4.0,3.0,0.0,1.0,1.0,3568.7011644431614,0.0,219.0,383.0,0.0,20370.0,0,5,3,50.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,964.4028736458642,0.08237830986980987,0.047344274602153374,20370.0,6,3,6,6_1,6_2,6_0_0 -8006,2,51.0,3,0.0,1,111,2,0,45,7.0,0.0,0.0,409.2920832541072,0.0,1042.7461924862132,34820.0,0,50,2,676,201108006,,,180.0,,1.0,0.0,5.0,1.0,2.0,1.5,2932.6795243912998,0.0,300.0,600.0,0.0,32795.0,0,1,2,90.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1452.0382757403204,0.04170127156060656,0.04427620904834031,21863.333333333332,7,4,7,7_0,7_2,7_1_0 -8007,2,48.0,3,0.0,6,112,6,0,48,7.0,713.905204112497,222.0682111301504,1623.5252635746251,0.0,86.89551604051776,44767.0,0,50,1,6761,201108007,,,337.0,,3.0,1.0,4.0,2.0,3.0,2.0,1219.3326993913506,0.0,1190.0,50.0,0.0,45845.0,0,1,1,120.0,7,1.0,2,5,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2646.3941948577904,0.059114843408264804,0.057724816116431245,22922.5,7,4,7,7_1,7_1,7_0_0 -8008,2,64.0,2,0.0,1,111,2,0,52,8.0,0.0,0.0,354.7198054868929,0.0,3192.5412593286223,12043.0,0,50,1,6763,201108008,,,64.0,,1.0,0.0,6.0,0.0,1.0,1.0,1369.5229925822948,0.0,260.0,1837.0,0.0,27952.0,0,1,1,93.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3547.261064815515,0.2945496192655912,0.12690544736746978,27952.0,8,4,8,8_1,8_3,8_1_0 -8009,2,60.0,3,0.0,6,111,4,75,77,10.0,0.0,0.0,2592.183193942679,264.162368763174,0.0,50478.0,12,30,1,6765,201108009,,,450.0,,1.0,1.0,5.0,1.0,3.0,2.0,2023.8544164198202,0.0,1900.0,0.0,0.0,81829.0,5,5,1,150.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2856.345562705853,0.05658594957616889,0.03490627482562237,40914.5,10,5,10,10_1,10_4,10_0_0 -8010,2,79.0,3,0.0,1,300,2,71,71,3.0,475.9368027416647,277.585263912688,720.3540665272286,130.34327406077665,0.0,16816.0,70,71,1,6766,201108010,,,,,0.0,4.0,6.0,0.0,2.0,1.5,1699.3390331198252,0.0,528.0,0.0,0.0,18716.0,5,5,1,110.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1604.2194072423579,0.09539839481698131,0.085713796069799,12477.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -8011,2,55.0,5,0.0,8,112,4,52,46,8.0,0.0,0.0,499.39709646537557,0.0,1032.241338475835,40298.0,71,41,1,6767,201108011,,,240.0,,2.0,1.0,3.0,0.0,2.0,1.5,2927.6997304992224,960.0,0.0,0.0,0.0,37518.0,1,1,3,80.0,8,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1531.6384349412106,0.03800780274309421,0.04082409603233676,25012.0,8,4,8,8_1,8_1,8_0_0 -8012,1,41.0,5,165.0,5,111,2,0,55,3.0,0.0,0.0,499.39709646537557,0.0,1032.241338475835,23941.0,0,41,2,6770,201108012,,,290.0,130.0,1.0,0.0,4.0,2.0,3.0,2.0,2617.3933317331657,960.0,0.0,0.0,0.0,28010.0,0,1,3,97.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1531.6384349412106,0.06397554132831589,0.054681843446669424,14005.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -8013,2,49.0,2,0.0,1,111,4,68,68,3.0,0.0,0.0,436.5782221377143,0.0,665.619652870366,39727.0,41,60,2,6771,201108013,,,,600.0,2.0,0.0,3.0,2.0,4.0,2.3,2808.269332764018,0.0,320.0,383.0,0.0,31450.0,1,1,3,60.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1102.1978750080802,0.027744301734540244,0.035046037361147225,13673.913043478262,3,2,3_0,3_0_0,3_3_0,3_1_0 -8014,2,77.0,3,0.0,5,112,4,71,71,2.0,0.0,0.0,1500.737638598393,208.54923849724264,0.0,12950.0,70,70,1,6773,201108014,,,180.0,,0.0,3.0,6.0,0.0,2.0,1.5,1507.6342784187952,0.0,1100.0,0.0,0.0,17745.0,5,5,1,110.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1709.2868770956356,0.13199126464058963,0.09632498602962163,11830.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -8015,2,46.0,3,0.0,2,111,2,0,47,8.0,0.0,0.0,532.0797082303393,0.0,1633.6357015617339,34860.0,0,31,1,6775,201108015,,,270.0,,1.0,0.0,3.0,1.0,2.0,1.3,2165.963695194368,0.0,390.0,940.0,0.0,32391.0,0,1,2,65.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2165.715409792073,0.062126087486863824,0.06686164088148168,24916.153846153844,8,4,8,8_1,8_2,8_0_1 -8016,2,61.0,1,0.0,4,112,2,86,33,10.0,2221.038412794435,416.377895869032,545.7227776721429,0.0,0.0,23027.0,50,12,1,6776,201108016,,,700.0,,1.0,1.0,6.0,0.0,2.0,1.5,1261.8104161774534,0.0,400.0,0.0,0.0,86090.0,6,1,1,100.0,5,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3183.1390863356096,0.13823507562147086,0.0369745508925033,57393.333333333336,10,5,10,10_1,10_0,10_0_1 -8017,2,34.0,2,0.0,2,112,2,52,69,5.0,1348.4876077680499,0.0,900.4425831590357,97.32297796537989,0.0,25023.0,43,50,1,6777,201108017,,,70.0,,2.0,0.0,6.0,2.0,4.0,2.1,1881.1376861471736,0.0,660.0,0.0,0.0,38677.0,1,1,2,125.0,9,1.0,4,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2346.2531688924655,0.09376386400081786,0.06066274966756639,18417.619047619046,5,3,5,5_1,5_1,5_0_1 -8018,2,58.0,2,0.0,4,111,2,0,45,4.0,0.0,0.0,534.9460352788644,0.0,1311.9468675221017,34878.0,0,50,1,6778,201108018,,,,251.0,1.0,3.0,4.0,0.0,2.0,1.3,3251.906099391025,155.0,333.0,659.0,0.0,21624.0,0,1,3,70.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1846.892902800966,0.052952947497017205,0.08540940172035544,16633.846153846152,4,2,4_0,4_1_0,4_3_0,4_0_1 -8019,1,60.0,4,244.0,6,300,4,0,78,3.0,0.0,0.0,1268.8054580877322,0.0,0.0,2937.0,0,71,1,6779,201108019,,,200.0,,0.0,0.0,2.0,0.0,1.0,1.0,2924.9592409499023,0.0,930.0,0.0,0.0,12808.0,0,5,3,40.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1268.8054580877322,0.43200730612452576,0.09906351171828015,12808.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -8020,2,77.0,3,0.0,2,111,2,0,78,2.0,3490.203220105541,0.0,403.83485547738576,19.11701352891391,0.0,11426.0,0,70,1,6780,201108020,,,,,0.0,4.0,4.0,0.0,1.0,1.0,1524.1695522657335,0.0,296.0,0.0,0.0,12297.0,0,5,1,69.0,6,5.0,1,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3913.1550891118404,0.34247812787605814,0.3182203048802017,12297.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -8021,2,35.0,2,0.0,6,111,4,46,35,9.0,0.0,0.0,682.1534720901786,173.79103208103552,0.0,31538.0,12,12,1,6781,201108021,,,250.0,,2.0,0.0,3.0,1.0,3.0,1.8,1875.3317581251329,0.0,500.0,0.0,0.0,58783.0,4,1,1,75.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,855.9445041712141,0.02714010096300381,0.014561089161342805,32657.222222222223,9,5,9,9_1,9_4,9_0_0 -8022,2,29.0,3,0.0,1,120,2,54,47,8.0,634.5824036555529,0.0,321.97643882656433,0.0,0.0,58272.0,31,50,1,6786,201108022,,,,600.0,2.0,0.0,4.0,0.0,2.0,1.5,1440.342336077716,0.0,236.0,0.0,0.0,39743.0,1,1,3,100.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,956.5588424821171,0.01641541121777384,0.024068611893468463,26495.333333333332,8,4,8,8_1,8_1,8_1_0 -8023,2,26.0,1,0.0,9,111,2,0,46,5.0,0.0,0.0,148.70945691565893,0.0,231.14207266777726,19732.0,0,20,1,6787,201108023,,,,,1.0,0.0,7.0,0.0,1.0,1.0,3025.881811079487,0.0,109.0,133.0,0.0,16745.0,0,1,3,120.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,379.8515295834362,0.019250533629811283,0.02268447474371073,16745.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -8024,1,26.0,2,265.0,5,400,4,45,54,3.0,0.0,0.0,373.82010270541787,0.0,0.0,52563.0,20,20,1,6788,201108024,,,36.0,,2.0,0.0,3.0,2.0,4.0,2.1,1748.6924268542775,0.0,274.0,0.0,0.0,30213.0,1,1,3,70.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,373.82010270541787,0.00711184869024633,0.01237282304655009,14387.142857142857,3,2,3_1,3_1_1,3_0_1,3_0_0 -8025,2,43.0,4,0.0,2,120,2,85,85,1.0,0.0,0.0,491.1504999049286,0.0,1313.8602025326286,25431.0,71,31,2,6789,201108025,,,552.0,315.0,0.0,0.0,4.0,3.0,5.0,2.8,6281.880692142693,0.0,360.0,756.0,0.0,14500.0,6,4,3,70.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1805.0107024375573,0.070976788267766,0.12448349671983154,5178.571428571429,1,1,1_0,1_0_0,1_1_0,1_0_1 -8026,2,53.0,4,0.0,1,111,6,42,46,7.0,0.0,0.0,1159.6609025533037,0.0,1642.3252531657856,36762.0,41,31,2,679,201108026,,,,305.0,2.0,0.0,5.0,2.0,4.0,2.3,2497.2552128709253,0.0,850.0,945.0,0.0,50532.0,1,1,3,130.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2801.9861557190893,0.0762196332005628,0.05544973790309288,21970.434782608696,7,4,7,7_0,7_2,7_1_0 -8027,2,61.0,4,0.0,1,111,2,0,77,6.0,0.0,0.0,733.9971359690322,0.0,1842.1849400589765,16445.0,0,31,2,6791,201108027,,,130.0,,0.0,1.0,6.0,0.0,1.0,1.0,3485.2629920142404,0.0,538.0,1060.0,0.0,19441.0,0,5,3,100.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2576.182076028009,0.1566544284602012,0.1325128376126747,19441.0,6,3,6,6_0,6_2,6_1_0 -8028,1,20.0,3,168.0,7,111,2,0,84,1.0,0.0,0.0,545.7227776721429,0.0,0.0,13186.0,0,42,2,6792,201108028,,,,182.0,0.0,0.0,1.0,0.0,1.0,1.0,3471.209285692331,0.0,400.0,0.0,0.0,8045.0,0,3,3,19.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,545.7227776721429,0.04138652947612186,0.06783378218423156,8045.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -8029,2,56.0,4,0.0,5,112,2,0,43,8.0,0.0,0.0,2035.545960717093,52.13730962431066,0.0,30353.0,0,33,1,6793,201108029,,,548.0,,2.0,1.0,8.0,1.0,3.0,1.8,1531.5179069622657,0.0,1492.0,0.0,0.0,47649.0,0,1,1,160.0,4,0.0,5,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2087.683270341404,0.06878012948774104,0.04381378980338315,26471.666666666664,8,4,8,8_1,8_0,8_0_0 -8030,2,29.0,3,0.0,5,111,1,0,45,1.0,0.0,0.0,477.50743046312505,0.0,0.0,15074.0,0,31,2,6794,201108030,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,3571.5499414857336,0.0,350.0,0.0,0.0,8838.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,477.50743046312505,0.03167755277054034,0.054028901387545264,8838.0,1,1,1_0,1_0_0,1_4_0,1_0_0 -8031,1,57.0,4,244.0,99,112,2,0,78,2.0,0.0,0.0,1040.4106176361993,0.0,2150.502788491323,9350.0,0,71,2,6796,201108031,,,418.0,195.0,0.0,5.0,3.0,0.0,1.0,1.0,3078.0044936571144,2000.0,0.0,0.0,0.0,11998.0,0,7,3,65.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,3190.913406127522,0.34127416108315745,0.2659537761399835,11998.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -8032,2,63.0,2,0.0,4,111,1,0,34,10.0,0.0,0.0,421.2376332617628,0.0,539.1766592311797,17991.0,0,10,2,6797,201108032,,,,408.0,1.0,0.0,2.0,0.0,1.0,1.0,2108.989514542502,259.0,210.0,150.0,0.0,52618.0,0,1,3,75.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,960.4142924929424,0.05338304110349299,0.01825258072319249,52618.0,10,5,10,10_0,10_3,10_0_1 -8033,2,38.0,2,0.0,2,111,2,0,62,9.0,0.0,0.0,682.1534720901786,0.0,0.0,26948.0,0,43,2,6798,201108033,,,,295.0,1.0,1.0,2.0,0.0,1.0,1.0,6899.435836107084,0.0,500.0,0.0,0.0,29048.0,0,1,3,55.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,682.1534720901786,0.025313695713603184,0.02348366400751097,29048.0,8,4,8,8_0,8_4,8_0_1 -8034,1,67.0,3,106.0,6,112,6,0,77,2.0,0.0,0.0,573.00891655575,0.0,0.0,14532.0,0,50,1,6799,201108034,,,180.0,189.0,0.0,0.0,2.0,0.0,1.0,1.0,3174.082156044671,0.0,420.0,0.0,0.0,11370.0,0,5,3,46.0,5,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,573.00891655575,0.03943083653700454,0.05039656258186016,11370.0,2,1,2_1,2_1_1,2_0_1,2_0_0 -8035,2,43.0,2,0.0,1,111,4,56,62,6.0,0.0,0.0,2687.6846800353037,0.0,0.0,84777.0,50,50,1,68,201108035,,,250.0,,3.0,0.0,4.0,2.0,4.0,2.3,997.3441415966805,0.0,1970.0,0.0,0.0,48178.0,1,1,2,160.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2687.6846800353037,0.03170299350101211,0.05578655569005155,20946.956521739132,6,3,6,6_1,6_2,6_1_0 -8036,2,31.0,3,0.0,1,111,4,85,38,4.0,0.0,0.0,927.728722042643,0.0,0.0,22425.0,12,12,2,680,201108036,,,,700.0,1.0,0.0,1.0,0.0,2.0,1.5,3822.841780560933,0.0,680.0,0.0,0.0,22585.0,6,1,3,35.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,927.728722042643,0.04137028860836758,0.04107720708623613,15056.666666666666,4,2,4_0,4_0_0,4_4_0,4_1_0 -8037,2,42.0,5,0.0,6,111,3,0,63,4.0,0.0,0.0,1637.1683330164287,0.0,0.0,22416.0,0,71,2,6800,201108037,,,,537.0,1.0,1.0,2.0,0.0,1.0,1.0,3221.7205930203963,0.0,1200.0,0.0,0.0,15810.0,0,4,3,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1637.1683330164287,0.07303570364991206,0.10355270923570074,15810.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -8038,2,48.0,3,0.0,6,112,5,62,45,1.0,0.0,0.0,1309.734666413143,0.0,0.0,19389.0,20,20,1,6803,201108038,,,240.0,,2.0,1.0,4.0,1.0,3.0,2.0,3542.709581504012,0.0,960.0,0.0,0.0,17139.0,1,1,2,120.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1309.734666413143,0.06755039797891295,0.07641838301027733,8569.5,1,1,1_0,1_1_0,1_1_0,1_0_0 -8039,2,49.0,3,0.0,8,111,6,0,65,2.0,2379.684013708323,0.0,1637.1683330164287,104.27461924862132,0.0,35358.0,0,50,1,6804,201108039,,,220.0,,2.0,0.0,5.0,1.0,2.0,1.5,2733.600197808432,0.0,1200.0,0.0,0.0,16020.0,0,1,2,150.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4121.126965973373,0.11655430075155195,0.2572488742804852,10680.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -8040,0,61.0,4,0.0,1,400,5,0,86,1.0,0.0,69.396315978172,327.43366660328576,0.0,0.0,11317.0,0,60,1,6805,201108040,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2492.680238613552,0.0,240.0,0.0,0.0,6960.0,0,4,5,122.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,396.8299825814578,0.035064945001454254,0.05701580209503704,6960.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -8041,2,35.0,2,0.0,1,111,4,0,46,8.0,0.0,0.0,109.14455553442858,0.0,0.0,15240.0,0,31,2,6806,201108041,,,,380.0,1.0,0.0,2.0,0.0,1.0,1.0,3360.8572169544163,0.0,80.0,0.0,0.0,26966.0,0,1,3,40.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,109.14455553442858,0.007161716242416573,0.004047487782186034,26966.0,8,4,8,8_0,8_2,8_1_0 -8042,2,42.0,2,0.0,1,111,2,0,43,8.0,0.0,0.0,0.0,0.0,0.0,31303.0,0,33,2,6807,201108042,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3508.2322348741723,0.0,0.0,0.0,0.0,28521.0,0,1,2,47.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,28521.0,8,4,8,8_0,8_3,8_1_0 -8043,2,50.0,3,0.0,4,111,2,0,56,3.0,0.0,0.0,650.2566360226244,0.0,1344.0642428070767,58576.0,0,50,1,6809,201108043,,,120.0,,1.0,0.0,2.0,0.0,1.0,1.0,2820.495033669365,1250.0,0.0,0.0,0.0,13725.0,0,1,1,62.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1994.320878829701,0.03404672355281516,0.1453057106615447,13725.0,3,2,3_0,3_1_0,3_4_0,3_0_1 -8044,2,29.0,2,0.0,9,111,2,0,38,9.0,0.0,0.0,463.8643610213215,0.0,710.8053212114353,29990.0,0,12,2,6811,201108044,,,138.0,398.0,1.0,0.0,2.0,0.0,1.0,1.0,2725.259020080716,0.0,340.0,409.0,0.0,31997.0,0,1,3,44.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1174.6696822327567,0.03916871231186251,0.036711869307521225,31997.0,9,5,9,9_0,9_2,9_0_0 -8045,1,29.0,4,247.0,1,221,2,0,52,2.0,0.0,0.0,543.6145477149141,0.0,1123.637706986716,9497.0,0,50,2,6813,201108045,,,,203.0,1.0,0.0,4.0,0.0,1.0,1.0,2175.2633658394225,1045.0,0.0,0.0,0.0,11867.0,0,4,3,91.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1667.2522547016301,0.17555567597153102,0.14049483902432208,11867.0,2,1,2_1,2_0_1,2_1_1,2_1_0 -8046,2,52.0,2,0.0,2,112,2,54,48,10.0,0.0,1859.8212682150095,1047.7877331305144,67.77850251160386,0.0,41084.0,31,60,1,6814,201108046,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1680.6060993436886,0.0,768.0,0.0,0.0,61908.0,1,1,2,110.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2975.387503857128,0.07242205004033513,0.04806143800247348,41272.0,10,5,10,10_1,10_1,10_0_1 -8047,2,31.0,1,0.0,4,111,1,43,37,10.0,0.0,0.0,341.0767360450893,0.0,0.0,27524.0,33,31,2,6815,201108047,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3098.760909489243,0.0,250.0,0.0,0.0,73728.0,1,1,2,63.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,341.0767360450893,0.01239197558658223,0.004626149306167119,49152.0,10,5,10,10_0,10_3,10_0_1 -8048,0,33.0,3,0.0,8,111,2,56,21,6.0,0.0,0.0,110.50886247860893,0.0,163.36357015617338,36547.0,71,50,1,6816,201108048,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.1,2861.8069040410414,0.0,81.0,94.0,0.0,42726.0,1,1,5,120.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,273.8724326347823,0.007493704890545935,0.006409971273575394,20345.714285714286,6,3,6,6_1,6_3,6_0_0 -8049,2,64.0,2,0.0,6,112,5,72,77,7.0,0.0,1040.94473967258,995.9440692516608,0.0,0.0,27608.0,70,60,1,6817,201108049,,,298.0,,0.0,5.0,7.0,0.0,2.0,1.5,3177.792382521891,0.0,730.0,0.0,0.0,33623.0,5,5,1,149.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2036.888808924241,0.07377893396567085,0.060580222137353625,22415.333333333332,7,4,7,7_1,7_0,7_0_0 -8050,2,56.0,2,0.0,8,111,4,0,33,7.0,0.0,0.0,646.6814915414893,0.0,0.0,32277.0,0,41,2,6818,201108050,,,,770.0,1.0,2.0,3.0,0.0,1.0,1.0,2678.219181556557,0.0,474.0,0.0,0.0,21800.0,0,1,3,70.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,646.6814915414893,0.020035365478250435,0.02966428860282061,21800.0,7,4,7,7_0,7_3,7_0_0 -8051,2,37.0,1,0.0,9,111,4,34,31,10.0,0.0,0.0,1293.3629830829786,0.0,0.0,33077.0,20,10,2,6819,201108051,,,,721.0,2.0,0.0,3.0,1.0,3.0,1.8,2483.2556470030136,0.0,948.0,0.0,0.0,78109.0,1,1,3,85.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1293.3629830829786,0.03910158064766994,0.0165584373514317,43393.88888888889,10,5,10,10_0,10_3,10_0_0 -8052,1,44.0,4,9999.0,1,120,4,0,85,1.0,396.6140022847205,0.0,1146.0178331115,90.37133668213848,0.0,12358.0,0,71,1,6820,201108052,,,,430.0,0.0,3.0,4.0,2.0,3.0,1.6,2834.476638604649,0.0,840.0,0.0,0.0,13202.0,0,6,3,80.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1633.003172078359,0.1321413798412655,0.12369362006350243,8251.25,1,1,1_1,1_1_1,1_0_1,1_1_0 -8053,2,76.0,3,0.0,4,212,2,78,74,4.0,951.8736054833294,0.0,470.68589574222324,521.3730962431066,0.0,18523.0,70,50,1,6823,201108053,,,150.0,,0.0,3.0,4.0,0.0,2.0,1.5,954.0077448785308,0.0,345.0,0.0,0.0,24790.0,5,5,1,100.0,2,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1943.9325974686592,0.10494696309823782,0.07841599828433478,16526.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_1 -8054,2,74.0,2,0.0,4,112,1,0,77,4.0,0.0,0.0,514.3437179559946,125.12954309834558,0.0,11853.0,0,70,2,6824,201108054,,,273.0,,0.0,2.0,3.0,0.0,1.0,1.0,2555.3665556693404,0.0,377.0,0.0,0.0,15530.0,0,5,3,90.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,639.4732610543402,0.05395032996324477,0.04117664269506376,15530.0,4,2,4_0,4_0_0,4_1_0,4_0_1 -8055,2,49.0,4,0.0,9,400,2,0,13,1.0,0.0,0.0,0.0,48.661488982689946,0.0,14792.0,0,43,1,6827,201108055,,,,,1.0,0.0,5.0,0.0,1.0,1.0,3102.1587633759063,0.0,0.0,0.0,0.0,7143.0,0,1,2,77.0,0,0.0,1,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,48.661488982689946,0.0032897166700033764,0.00681247220813243,7143.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -8056,2,70.0,1,0.0,4,221,2,0,74,10.0,571.1241632899976,0.0,1417.9017252985552,0.0,2225.770386088519,15539.0,0,60,1,6828,201108056,,,,,0.0,1.0,5.0,0.0,1.0,1.0,4469.3966147593355,2070.0,250.0,0.0,0.0,38030.0,0,5,1,105.0,1,2.0,1,7,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4214.796274677072,0.27123986580069964,0.11082819549505842,38030.0,10,5,10,10_1,10_1,10_0_1 -8057,1,65.0,3,172.0,1,111,2,0,21,2.0,0.0,0.0,1023.230208135268,0.0,260.6865481215533,27010.0,0,70,2,6829,201108057,,,,528.0,1.0,1.0,3.0,0.0,1.0,1.0,4002.519396855961,0.0,750.0,150.0,0.0,12174.0,0,1,3,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1283.9167562568214,0.04753486694767943,0.10546383737940047,12174.0,2,1,2_1,2_0_1,2_3_1,2_1_0 -8058,2,85.0,1,0.0,1,112,2,72,77,7.0,0.0,638.4461069991823,876.1216005254829,0.0,2008.7230134637532,28887.0,70,60,1,683,201108058,,,392.0,,0.0,0.0,4.0,0.0,2.0,1.5,2042.6955365505926,504.0,450.0,844.0,0.0,33650.0,5,5,1,100.0,4,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3523.290720988419,0.12196803825210022,0.10470403331317737,22433.333333333332,7,4,7,7_1,7_0,7_1_0 -8059,2,61.0,2,0.0,4,111,2,52,31,10.0,3490.203220105541,0.0,1023.230208135268,0.0,0.0,47304.0,50,10,1,6830,201108059,,,400.0,,2.0,2.0,5.0,0.0,2.0,1.5,1590.9076691486243,0.0,750.0,0.0,0.0,92582.0,1,1,2,200.0,8,7.0,3,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4513.433428240809,0.09541335676139034,0.04875065810028741,61721.333333333336,10,5,10,10_1,10_3,10_0_1 -8060,2,41.0,2,0.0,2,111,2,85,33,6.0,0.0,0.0,1088.716941455925,0.0,1911.7013528913908,77659.0,20,12,1,6831,201108060,,,920.0,,1.0,0.0,6.0,5.0,7.0,3.2,1218.719199540395,0.0,798.0,1100.0,0.0,63521.0,6,1,2,140.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3000.418294347316,0.038635809041415885,0.04723506075703021,19850.3125,6,3,6,6_1,6_3,6_0_1 -8061,2,35.0,2,0.0,1,112,2,42,38,9.0,2379.684013708323,0.0,1186.9470414369107,0.0,0.0,60943.0,20,10,1,6834,201108061,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3824.1551431151897,0.0,870.0,0.0,0.0,60714.0,1,1,2,120.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3566.631055145234,0.058524047965233646,0.05874478794257064,28911.42857142857,8,4,8,8_1,8_0,8_1_0 -8062,2,26.0,2,0.0,99,111,1,52,62,7.0,0.0,0.0,573.00891655575,112.96417085267309,0.0,42064.0,50,60,2,6835,201108062,,,300.0,320.0,2.0,0.0,3.0,0.0,2.0,1.5,2630.600432297221,0.0,420.0,0.0,0.0,32747.0,1,1,3,60.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,685.9730874084231,0.01630784251161143,0.020947661996775984,21831.333333333332,7,4,7,7_0,7_2,7_0_0 -8063,2,35.0,1,0.0,1,111,2,45,33,9.0,0.0,555.170527825376,477.50743046312505,0.0,1911.7013528913908,58774.0,20,31,1,6836,201108063,,,260.0,,2.0,0.0,5.0,1.0,3.0,1.8,1628.4750631055404,0.0,350.0,1100.0,0.0,60862.0,1,1,2,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2944.379311179892,0.05009662965222533,0.0483779585156566,33812.22222222222,9,5,9,9_1,9_3,9_1_0 -8064,2,50.0,2,0.0,8,120,2,52,64,4.0,0.0,0.0,641.2242637647679,125.12954309834558,0.0,28099.0,43,50,1,6837,201108064,,,120.0,,2.0,0.0,4.0,2.0,4.0,2.1,2548.197651368808,0.0,470.0,0.0,0.0,34220.0,1,1,2,75.0,0,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,766.3538068631135,0.02727334805021935,0.022394909610260475,16295.238095238095,4,2,4_0,4_1_0,4_1_0,4_0_0 -8065,2,68.0,1,0.0,5,111,1,0,74,10.0,0.0,0.0,1637.1683330164287,0.0,173.79103208103552,16847.0,0,41,2,6838,201108065,,,,580.0,0.0,3.0,3.0,0.0,1.0,1.0,3003.2003148271983,0.0,1200.0,100.0,0.0,41610.0,0,5,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1810.9593650974643,0.1074944717218178,0.043522214974704744,41610.0,10,5,10,10_0,10_4,10_0_0 -8066,2,56.0,2,0.0,1,111,2,75,33,9.0,0.0,0.0,1053.2449609072357,0.0,3159.5209632332258,84874.0,41,20,1,6839,201108066,,,378.0,,3.0,2.0,8.0,2.0,4.0,2.5,1869.0134779541245,0.0,772.0,1818.0,0.0,74862.0,5,1,1,150.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4212.765924140462,0.04963552942173648,0.05627375603297349,29944.8,9,5,9,9_1,9_3,9_1_0 -8067,2,50.0,2,0.0,6,112,4,54,63,7.0,0.0,0.0,1804.9780871506127,83.41969539889705,0.0,19256.0,50,71,1,684,201108067,,,60.0,,3.0,1.0,5.0,1.0,3.0,2.0,1046.7956352695812,0.0,1323.0,0.0,0.0,46574.0,1,1,1,100.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1888.3977825495099,0.09806801945105473,0.04054617989757182,23287.0,7,4,7,7_1,7_1,7_0_0 -8068,2,74.0,3,0.0,4,111,2,0,71,3.0,3172.912018277764,0.0,409.2920832541072,90.37133668213848,0.0,19974.0,0,60,2,6840,201108068,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2970.0084253490877,0.0,300.0,0.0,0.0,13737.0,0,5,5,55.0,6,4.0,1,8,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3672.57543821401,0.1838678000507665,0.2673491619868974,13737.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -8069,2,23.0,4,0.0,1,112,2,63,63,2.0,793.228004569441,0.0,1390.228776119784,86.89551604051776,0.0,27676.0,71,50,1,6842,201108069,,,,590.0,2.0,0.0,4.0,1.0,3.0,1.8,2132.7050512378555,0.0,1019.0,0.0,0.0,19136.0,1,1,3,90.0,8,1.0,4,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2270.3522967297426,0.08203325251950219,0.11864299209499073,10631.111111111111,2,1,2_0,2_1_0,2_1_0,2_1_0 -8070,2,62.0,1,0.0,4,111,1,37,31,10.0,0.0,0.0,1364.3069441803573,0.0,347.58206416207105,69295.0,20,10,2,6843,201108070,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2573.716680461884,0.0,1000.0,200.0,0.0,184875.0,1,1,1,107.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1711.8890083424283,0.02470436551471864,0.009259710660405292,123250.0,10,5,10,10_0,10_4,10_0_1 -8071,1,42.0,4,450.0,2,111,2,0,85,1.0,0.0,0.0,1023.230208135268,0.0,1390.3282566482842,18503.0,0,71,2,6845,201108071,,,,230.0,0.0,0.0,3.0,3.0,4.0,1.9,3090.149223483173,0.0,750.0,800.0,0.0,17017.0,0,6,3,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2413.558464783552,0.1304414670476978,0.1418321951450639,8956.315789473685,1,1,1_1,1_0_1,1_3_1,1_0_1 -8072,2,43.0,3,0.0,8,112,2,46,33,9.0,0.0,818.8765285424296,2292.035666223,0.0,0.0,43458.0,10,31,1,6846,201108072,,,440.0,,2.0,0.0,4.0,1.0,3.0,1.8,2226.533236254203,0.0,1680.0,0.0,0.0,56167.0,1,1,2,120.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3110.91219476543,0.07158433878147706,0.05538683203242883,31203.888888888887,9,5,9,9_1,9_0,9_0_0 -8073,0,48.0,3,0.0,2,111,2,37,46,6.0,0.0,319.2230534995912,2373.8940828738214,0.0,3197.7549902910537,50155.0,20,31,1,6847,201108073,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2395.516472382027,0.0,1740.0,1840.0,0.0,48273.0,1,1,5,140.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5890.872126664466,0.1174533371880065,0.12203244311860598,19309.2,6,3,6,6_1,6_3,6_0_1 -8074,2,73.0,3,0.0,99,112,2,78,77,3.0,0.0,0.0,573.00891655575,0.0,144.24655662725948,18458.0,71,71,1,6849,201108074,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2241.447001343065,0.0,420.0,83.0,0.0,20900.0,5,5,1,44.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,717.2554731830095,0.038858786064742086,0.03431844369296696,13933.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0 -8075,2,44.0,4,0.0,2,300,6,0,42,4.0,396.6140022847205,0.0,1678.0975413418394,0.0,104.27461924862132,25320.0,0,20,1,6851,201108075,,,277.0,,1.0,0.0,3.0,2.0,3.0,1.8,1889.4327627034518,0.0,1230.0,60.0,0.0,27051.0,0,1,3,80.0,0,0.0,2,9,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2178.9861628751814,0.0860579053268239,0.08055103925456292,15028.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1 -8076,1,35.0,2,150.0,1,112,4,56,46,2.0,0.0,0.0,1978.245069061518,0.0,0.0,39538.0,20,30,2,6852,201108076,,,630.0,,2.0,0.0,3.0,2.0,4.0,2.1,2385.245472639043,0.0,1450.0,0.0,0.0,23210.0,1,1,3,84.0,7,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1978.245069061518,0.050034019653536294,0.08523244588804472,11052.380952380952,2,1,2_1,2_0_1,2_0_1,2_1_0 -8077,2,65.0,3,0.0,1,400,5,0,77,5.0,4759.368027416646,138.792631956344,955.0148609262501,243.30744491344973,0.0,19774.0,0,60,1,6853,201108077,,,180.0,,0.0,1.0,6.0,0.0,1.0,1.0,3786.9643903453457,0.0,700.0,0.0,0.0,17650.0,0,5,5,120.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6096.482965212691,0.3083080289882012,0.34540979972876434,17650.0,5,3,5,5_1,5_0,5_1_0 -8078,2,75.0,2,0.0,1,120,2,0,78,4.0,1586.456009138882,0.0,103.68732775770715,0.0,0.0,6387.0,0,71,1,6854,201108078,,,186.0,,0.0,0.0,3.0,0.0,1.0,1.0,3455.5523090998745,0.0,76.0,0.0,0.0,15250.0,0,5,1,80.0,0,3.0,1,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1690.1433368965893,0.26462241066174874,0.1108290712719075,15250.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -8079,2,64.0,1,0.0,8,112,4,75,74,10.0,95.18736054833293,0.0,2363.75824592762,104.27461924862132,1783.8420630535522,65241.0,41,20,1,6855,201108079,,,500.0,,0.0,2.0,4.0,0.0,2.0,1.5,1367.4135545846743,1659.0,1100.0,0.0,0.0,72234.0,5,5,1,100.0,6,0.0,3,8,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4347.0622887781265,0.0666308347324248,0.06018027921447139,48156.0,10,5,10,10_1,10_0,10_0_0 -8080,2,85.0,4,0.0,1,111,2,0,77,5.0,0.0,0.0,392.9203999239429,0.0,552.655482017693,29906.0,0,41,1,6857,201108080,,,,,0.0,5.0,4.0,0.0,1.0,1.0,3752.565982653907,0.0,288.0,318.0,0.0,18890.0,0,5,1,80.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,945.5758819416359,0.031618266633506184,0.05005695510543334,18890.0,5,3,5,5_1,5_3,5_1_0 -8081,1,35.0,3,165.0,5,111,1,0,67,5.0,0.0,0.0,279.68292355697326,0.0,0.0,14179.0,0,71,2,6858,201108081,,,,70.0,1.0,0.0,1.0,0.0,1.0,1.0,3766.966162124861,0.0,205.0,0.0,0.0,17314.0,0,1,3,26.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,279.68292355697326,0.01972515153092413,0.01615357072640483,17314.0,5,3,5,5_0,5_2,5_0_0 -8082,2,60.0,3,0.0,4,111,1,0,35,9.0,0.0,0.0,556.6372332255858,0.0,0.0,13542.0,0,41,2,686,201108082,,,,,1.0,1.0,3.0,0.0,1.0,1.0,6412.105889710234,0.0,408.0,0.0,0.0,35880.0,0,1,2,68.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,556.6372332255858,0.04110450695802583,0.015513858228137842,35880.0,9,5,9,9_0,9_3,9_0_1 -8083,2,41.0,1,0.0,4,111,2,0,54,10.0,0.0,0.0,341.0767360450893,2085.4923849724264,0.0,28391.0,0,20,1,6863,201108083,,,200.0,,1.0,0.0,3.0,0.0,1.0,1.0,4276.233295932802,0.0,250.0,0.0,0.0,37211.0,0,1,3,80.0,4,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2426.5691210175155,0.0854696601393933,0.06521106987228281,37211.0,9,5,9,9_1,9_2,9_0_1 -8084,2,54.0,4,0.0,2,111,1,68,63,4.0,0.0,0.0,982.3009998098572,0.0,1251.2954309834558,39539.0,71,71,2,6865,201108084,,,,640.0,2.0,4.0,3.0,1.0,3.0,1.8,3090.057842483135,0.0,720.0,720.0,0.0,29703.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2233.596430793313,0.05649096918974464,0.07519767130570357,16501.666666666668,4,2,4_0,4_0_0,4_4_0,4_0_1 -8085,2,36.0,2,0.0,7,111,2,55,63,4.0,0.0,0.0,600.2950554393572,0.0,695.1641283241421,49885.0,60,60,1,6866,201108085,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,2786.710766843652,0.0,440.0,400.0,0.0,32435.0,1,1,2,82.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1295.4591837634994,0.025968912173268504,0.039940162903144734,15445.238095238095,4,2,4_0,4_1_0,4_3_0,4_0_0 -8086,2,57.0,3,0.0,1,300,5,13,13,2.0,0.0,0.0,1473.4514997147858,271.11401004641544,0.0,39897.0,50,50,1,6867,201108086,,,90.0,,3.0,1.0,5.0,1.0,3.0,2.0,1437.9473478782331,0.0,1080.0,0.0,0.0,24080.0,1,1,1,120.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1744.5655097612012,0.04372673408429709,0.07244873379406981,12040.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -8087,2,50.0,3,0.0,6,212,4,0,67,5.0,0.0,0.0,791.2980276246072,43.44775802025888,0.0,13407.0,0,60,1,6868,201108087,,,180.0,,1.0,3.0,4.0,0.0,1.0,1.0,1774.6595284445198,0.0,580.0,0.0,0.0,17651.0,0,1,1,76.0,3,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,834.7457856448661,0.06226193672297055,0.04729169937368229,17651.0,5,3,5,5_1,5_0,5_0_0 -8088,2,39.0,2,0.0,1,111,2,38,38,10.0,0.0,0.0,791.2980276246072,0.0,1251.2954309834558,68952.0,10,12,2,687,201108088,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3087.716442803198,0.0,580.0,720.0,0.0,109453.0,1,1,2,59.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2042.593458608063,0.029623411338439248,0.018661831641051986,52120.47619047619,10,5,10,10_0,10_4,10_1_0 -8089,2,36.0,3,0.0,8,111,2,0,38,9.0,0.0,0.0,818.5841665082144,0.0,1042.7461924862132,50885.0,0,10,1,6870,201108089,,,,,1.0,0.0,4.0,1.0,2.0,1.3,3259.1797076396674,0.0,600.0,600.0,0.0,40736.0,0,1,2,115.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1861.3303589944276,0.0365791561166243,0.04569251666816643,31335.384615384613,9,5,9,9_1,9_3,9_0_0 -8090,1,34.0,4,126.0,9,112,4,85,63,3.0,0.0,0.0,2046.460416270536,0.0,0.0,25743.0,50,50,1,6872,201108090,,,,,1.0,0.0,4.0,2.0,4.0,2.1,1506.6705613340398,0.0,1500.0,0.0,0.0,29327.0,6,1,3,90.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2046.460416270536,0.07949580143225482,0.06978076231017614,13965.238095238095,3,2,3_1,3_1_1,3_0_1,3_0_0 -8091,2,18.0,2,0.0,99,111,4,0,63,2.0,0.0,0.0,491.1504999049286,0.0,0.0,10710.0,0,50,2,6873,201108091,,,,330.0,1.0,0.0,2.0,0.0,1.0,1.0,4260.040060201933,0.0,360.0,0.0,0.0,11930.0,0,1,3,35.0,4,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,491.1504999049286,0.0458590569472389,0.04116936294257574,11930.0,2,1,2_0,2_0_0,2_1_0,2_0_0 -8092,1,67.0,3,45.0,2,211,2,0,78,3.0,0.0,0.0,211.46757634795537,0.0,2144.5813358799783,9626.0,0,70,1,6874,201108092,,,,352.0,0.0,0.0,3.0,0.0,1.0,1.0,1538.8087920006203,0.0,155.0,1234.0,0.0,13390.0,0,5,3,87.0,3,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,2356.0489122279337,0.2447588730758294,0.1759558560289719,13390.0,3,2,3_1,3_1_1,3_1_1,3_0_1 -8093,2,40.0,2,0.0,6,211,2,45,34,9.0,0.0,277.585263912688,2046.460416270536,173.79103208103552,0.0,44402.0,20,20,1,6875,201108093,,,200.0,,2.0,0.0,5.0,2.0,4.0,2.1,1283.042868411336,0.0,1500.0,0.0,0.0,61914.0,1,1,2,140.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2497.8367122642594,0.05625504959831223,0.04034364945350421,29482.85714285714,9,5,9,9_1,9_1,9_0_0 -8094,2,65.0,2,0.0,5,112,2,77,74,7.0,2538.3296146222115,0.0,1064.1594164606786,225.92834170534618,0.0,48382.0,71,60,1,6876,201108094,,,,,0.0,3.0,8.0,0.0,2.0,1.5,2551.9663852287977,0.0,780.0,0.0,0.0,34703.0,5,5,1,200.0,7,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3828.417372788236,0.07912896062147567,0.11031949320774101,23135.333333333332,7,4,7,7_1,7_0,7_0_0 -8095,2,77.0,2,0.0,4,111,2,77,75,9.0,1538.8623288647157,0.0,559.3658471139465,0.0,0.0,38535.0,70,43,1,6878,201108095,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1962.7832869219123,0.0,410.0,0.0,0.0,48937.0,5,5,1,110.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2098.228175978662,0.05444993320302743,0.042876109609879275,32624.666666666668,9,5,9,9_1,9_4,9_0_1 -8096,2,42.0,1,0.0,8,111,2,34,46,8.0,0.0,0.0,1637.1683330164287,0.0,0.0,21349.0,20,43,1,6879,201108096,,,220.0,,2.0,0.0,3.0,1.0,3.0,1.8,4978.092689490032,0.0,1200.0,0.0,0.0,50081.0,1,1,3,80.0,6,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1637.1683330164287,0.07668594936607938,0.03269040819904612,27822.777777777777,8,4,8,8_1,8_2,8_0_0 -8097,2,55.0,2,0.0,7,112,2,52,46,10.0,2393.9621177905733,0.0,2472.1241828548073,156.41192887293198,0.0,42839.0,41,30,1,688,201108097,,,,,2.0,3.0,6.0,0.0,2.0,1.5,3493.498780651882,0.0,1812.0,0.0,0.0,69704.0,1,1,2,130.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5022.498229518312,0.11724125748776376,0.07205466299664742,46469.333333333336,10,5,10,10_1,10_0,10_0_0 -8098,1,35.0,4,123.0,1,300,5,85,67,3.0,0.0,0.0,3519.9119159853217,422.3122079569163,0.0,35847.0,43,50,5,6881,201108098,,,280.0,,1.0,0.0,4.0,3.0,5.0,2.4,1158.261058383443,0.0,2580.0,0.0,0.0,32196.0,6,1,2,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3942.224123942238,0.10997361352253293,0.12244453112008441,13415.0,3,2,3_1,3_1_1,3_0_1,3_1_0 -8099,2,66.0,3,0.0,9,300,5,77,72,6.0,0.0,971.5484236944079,1045.0591192421537,0.0,0.0,52411.0,60,50,1,6883,201108099,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2542.502646650146,0.0,766.0,0.0,0.0,29956.0,6,5,1,140.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2016.6075429365615,0.038476799582846374,0.06731898594393648,19970.666666666668,6,3,6,6_1,6_0,6_0_0 -8100,1,58.0,4,248.0,1,221,2,0,72,1.0,317.29120182777643,0.0,409.2920832541072,86.89551604051776,0.0,8320.0,0,60,1,6884,201108100,,,160.0,,0.0,2.0,2.0,0.0,1.0,1.0,3108.4903854272634,0.0,300.0,0.0,0.0,7694.0,0,7,3,28.0,1,2.0,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,813.4788011224014,0.09777389436567324,0.10572898376948289,7694.0,1,1,1_1,1_1_1,1_1_1,1_1_0 -8101,2,63.0,4,0.0,1,111,2,77,78,2.0,0.0,0.0,601.6593623835375,0.0,1365.9975121569391,18055.0,71,50,1,6885,201108101,,,307.0,,0.0,1.0,4.0,0.0,2.0,1.5,2563.561161568606,0.0,441.0,786.0,0.0,17744.0,5,5,1,76.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1967.6568745404766,0.10898127247524102,0.11089139283929647,11829.333333333334,2,1,2_0,2_1_0,2_3_0,2_1_0 -8102,1,26.0,3,216.0,4,111,1,85,52,2.0,0.0,0.0,545.7227776721429,0.0,0.0,15652.0,50,41,2,6886,201108102,,,,120.0,1.0,0.0,4.0,2.0,4.0,2.1,4536.479770063569,0.0,400.0,0.0,0.0,22430.0,6,1,3,72.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,545.7227776721429,0.034866009306934766,0.024330039129386666,10680.95238095238,2,1,2_1,2_0_1,2_3_1,2_0_1 -8103,2,86.0,2,0.0,2,111,2,0,72,6.0,0.0,0.0,1768.9395903601453,0.0,5699.329593635619,27357.0,0,70,1,6887,201108103,,,535.0,,0.0,3.0,5.0,0.0,1.0,1.0,1890.74866934688,1423.0,754.0,2399.0,0.0,20427.0,0,5,1,100.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,7468.269183995764,0.2729929884123173,0.3656077340772392,20427.0,6,3,6,6_1,6_2,6_0_1 -8104,2,47.0,3,0.0,9,120,4,46,48,5.0,0.0,0.0,1695.833531616184,0.0,0.0,44645.0,31,31,1,6889,201108104,,,426.0,,2.0,0.0,7.0,2.0,4.0,2.5,3970.8523661583513,0.0,1243.0,0.0,0.0,45091.0,1,1,2,120.0,0,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1695.833531616184,0.037984847835506416,0.03760913556177916,18036.4,5,3,5,5_1,5_1,5_0_0 -8105,2,37.0,2,0.0,1,300,6,46,63,5.0,0.0,277.585263912688,1964.6019996197144,90.37133668213848,0.0,23085.0,43,43,1,6890,201108105,,,132.0,,2.0,0.0,6.0,2.0,4.0,2.1,1999.4386679926497,0.0,1440.0,0.0,0.0,36678.0,1,1,2,170.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2332.558600214541,0.10104217458152658,0.06359557773636897,17465.714285714286,5,3,5,5_1,5_0,5_1_0 -8106,2,56.0,2,0.0,7,112,2,0,77,8.0,0.0,0.0,627.5811943229643,86.89551604051776,0.0,23464.0,0,50,2,6892,201108106,,,106.0,,0.0,0.0,3.0,0.0,1.0,1.0,3955.5738012139695,0.0,460.0,0.0,0.0,26874.0,0,5,1,75.0,9,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,714.4767103634821,0.030449910942869165,0.026586169173308107,26874.0,8,4,8,8_0,8_1,8_0_0 -8107,1,47.0,5,318.0,99,111,1,85,42,4.0,0.0,0.0,532.0797082303393,0.0,0.0,25728.0,31,71,2,6893,201108107,,,,241.0,1.0,1.0,2.0,3.0,5.0,2.4,3820.014660739379,0.0,390.0,0.0,0.0,35828.0,6,1,3,54.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,532.0797082303393,0.020680958808704106,0.014850946417057588,14928.333333333334,3,2,3_1,3_0_1,3_4_1,3_0_0 -8108,1,37.0,3,234.0,9,111,2,85,67,2.0,0.0,0.0,764.7018039626064,0.0,1580.619549541122,20713.0,71,71,1,6895,201108108,,,380.0,309.0,1.0,0.0,4.0,2.0,4.0,2.5,2441.778943032712,1470.0,0.0,0.0,0.0,24500.0,6,1,3,94.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2345.3213535037285,0.11322943820324088,0.09572740218382565,9800.0,1,1,1_1,1_1_1,1_3_1,1_0_0 -8109,0,62.0,3,0.0,1,111,2,85,78,4.0,0.0,0.0,545.7227776721429,0.0,2346.1789330939796,17615.0,60,71,1,6897,201108109,,,360.0,,0.0,3.0,7.0,0.0,2.0,1.5,4502.203503437167,0.0,400.0,1350.0,0.0,22094.0,6,5,5,140.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2891.9017107661225,0.16417267730718835,0.13089081699855717,14729.333333333334,3,2,3_0,3_1_0,3_2_0,3_1_0 -8110,2,29.0,2,0.0,9,212,2,47,46,7.0,0.0,0.0,2046.460416270536,86.89551604051776,0.0,29992.0,31,41,1,6899,201108110,,,,,2.0,0.0,10.0,1.0,3.0,1.8,2088.736957777892,0.0,1500.0,0.0,0.0,44023.0,1,1,2,229.0,3,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2133.3559323110535,0.07113083263240376,0.04846003071828484,24457.222222222223,7,4,7,7_1,7_0,7_0_0 -8111,2,62.0,2,0.0,6,111,2,85,21,1.0,0.0,0.0,927.728722042643,0.0,1459.8446694806985,37672.0,71,60,1,69,201108111,,,400.0,,1.0,1.0,4.0,2.0,4.0,2.5,4490.615168021303,0.0,680.0,840.0,0.0,10741.0,6,1,1,100.0,5,4.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2387.5733915233413,0.06337793033349282,0.22228595023958117,4296.4,1,1,1_0,1_1_0,1_2_0,1_0_0 -8112,2,60.0,2,0.0,4,111,1,0,46,8.0,0.0,0.0,3056.047554964,0.0,695.1641283241421,19325.0,0,41,2,690,201108112,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2889.884802294257,0.0,2240.0,400.0,0.0,25185.0,0,1,2,43.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3751.211683288142,0.19411185941982623,0.14894626497074218,25185.0,8,4,8,8_0,8_3,8_0_1 -8113,2,45.0,2,0.0,5,111,2,52,63,5.0,0.0,0.0,401.10624158902505,0.0,2231.4768519204963,30286.0,50,71,2,6900,201108113,,,,339.0,2.0,0.0,3.0,1.0,3.0,1.8,2862.4654438842736,0.0,294.0,1284.0,0.0,33571.0,1,1,3,73.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2632.5830935095214,0.08692409342631979,0.07841836982840908,18650.555555555555,5,3,5,5_0,5_4,5_0_0 -8114,2,28.0,2,0.0,1,111,1,54,48,6.0,0.0,0.0,450.22129157951787,0.0,0.0,28634.0,60,60,2,6902,201108114,,,,750.0,2.0,0.0,3.0,1.0,3.0,1.8,3782.1404570536847,0.0,330.0,0.0,0.0,37616.142857142855,1,1,3,75.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,450.22129157951787,0.01572331115385618,0.01196883192647771,20897.85714285714,6,3,6,6_0,6_4,6_1_0 -8115,1,37.0,3,200.0,9,111,6,0,67,2.0,0.0,0.0,226.4749527339393,0.0,0.0,7671.0,0,71,2,6903,201108115,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2960.6057156638544,0.0,166.0,0.0,0.0,10726.0,0,4,3,25.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,226.4749527339393,0.02952352401693903,0.021114576984331463,10726.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -8116,2,55.0,3,0.0,1,300,2,75,11,9.0,5955.555858307363,0.0,2360.7191001384926,78.20596443646599,3751.552114523113,90282.0,30,12,1,6904,201108116,,,,,1.0,0.0,11.0,3.0,5.0,3.0,1734.3557263431371,3489.0,400.0,0.0,0.0,97499.0,6,1,1,228.0,0,0.0,4,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,12146.033037405434,0.13453438157556805,0.12457597552185595,32499.666666666668,9,5,9,9_1,9_0,9_1_0 -8117,2,40.0,3,0.0,8,112,6,42,46,6.0,0.0,0.0,3601.770332636143,208.54923849724264,0.0,40635.0,20,31,1,6907,201108117,,,560.0,,2.0,0.0,6.0,3.0,5.0,2.4,1402.348173170277,0.0,2640.0,0.0,0.0,51166.0,1,1,2,107.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3810.3195711333856,0.09376940005250119,0.07446975669650521,21319.166666666668,6,3,6,6_1,6_0,6_0_0 -8118,2,40.0,2,0.0,1,111,2,47,48,9.0,0.0,0.0,844.5059984476411,0.0,2182.815362937806,65877.0,10,20,1,6909,201108118,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.1,1776.6727448253332,0.0,619.0,1256.0,0.0,69723.0,1,1,2,110.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3027.3213613854473,0.04595414729549687,0.043419264251186085,33201.42857142857,9,5,9,9_1,9_2,9_1_0 -8119,2,40.0,1,0.0,9,112,4,54,62,8.0,0.0,693.9631597817199,1773.5990274344645,0.0,0.0,51152.0,31,50,1,6910,201108119,,,480.0,,2.0,0.0,6.0,2.0,4.0,2.1,4043.6360352040424,0.0,1300.0,0.0,0.0,56352.0,1,1,2,135.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2467.5621872161846,0.048239798780422755,0.04378836930749902,26834.285714285714,8,4,8,8_1,8_0,8_0_0 -8120,2,59.0,2,0.0,8,111,6,77,34,7.0,0.0,0.0,477.54847349501546,0.0,987.0807799175172,40324.0,41,12,1,6911,201108120,,,428.0,,1.0,3.0,5.0,1.0,3.0,2.0,2035.3459336901012,918.0,0.0,0.0,0.0,43486.0,6,1,1,120.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1464.6292534125328,0.03632152696688158,0.033680477703457036,21743.0,6,3,6,6_1,6_3,6_0_0 -8121,2,67.0,1,0.0,7,111,2,0,74,9.0,0.0,0.0,327.43366660328576,0.0,938.4715732375919,33125.0,0,20,2,6912,201108121,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2592.1257876912914,0.0,240.0,540.0,0.0,33949.0,0,5,1,67.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1265.9052398408776,0.03821600724047932,0.03728843971371403,33949.0,9,5,9,9_0,9_3,9_0_0 -8122,1,68.0,3,42.0,2,111,1,78,75,3.0,0.0,0.0,477.50743046312505,0.0,985.3951518994714,18723.0,70,50,2,6914,201108122,,,,250.0,0.0,1.0,3.0,0.0,2.0,1.5,1103.4586871541223,0.0,350.0,567.0,0.0,18788.0,5,5,3,90.0,7,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1462.9025823625966,0.07813398399629315,0.07786366736015524,12525.333333333334,2,1,2_1,2_0_1,2_2_1,2_0_1 -8123,2,65.0,2,0.0,1,111,2,0,74,10.0,0.0,0.0,409.2920832541072,0.0,2085.4923849724264,26370.0,0,10,1,6917,201108123,,,290.0,,0.0,3.0,4.0,0.0,1.0,1.0,2146.358827752405,0.0,300.0,1200.0,0.0,38095.0,0,5,1,100.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2494.7844682265336,0.09460691953835926,0.06548850159408147,38095.0,10,5,10,10_1,10_3,10_1_0 -8124,2,60.0,2,0.0,7,112,3,77,86,5.0,0.0,693.9631597817199,955.0148609262501,24.330744491344973,0.0,35783.0,50,50,1,6918,201108124,,,40.0,,0.0,3.0,6.0,0.0,2.0,1.5,1103.8387103584453,0.0,700.0,0.0,0.0,26463.0,5,5,1,97.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1673.308765199315,0.04676267404072646,0.06323201319575691,17642.0,5,3,5,5_1,5_1,5_0_0 -8125,2,79.0,3,0.0,2,111,1,0,77,3.0,72.97697642038858,0.0,402.4705485332054,0.0,3288.126326973192,28065.0,0,71,1,6919,201108125,,,204.0,,0.0,4.0,6.0,0.0,1.0,1.0,4041.5501456789,0.0,295.0,1892.0,0.0,12714.0,0,5,1,70.0,8,7.0,1,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3763.573851926786,0.1341020435391693,0.29601807864769436,12714.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -8126,1,35.0,2,300.0,9,300,5,13,13,5.0,0.0,69.396315978172,0.0,145.98446694806984,0.0,28447.0,42,42,1,692,201108126,,,,,2.0,0.0,6.0,3.0,5.0,2.4,3321.5110693525576,0.0,0.0,0.0,0.0,45334.0,1,1,2,116.0,0,0.0,4,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,215.38078292624184,0.007571300415728964,0.00475097681489041,18889.166666666668,5,3,5,5_1,5_0,5_0_0 -8127,2,27.0,1,0.0,9,111,6,46,38,8.0,0.0,0.0,1060.0664956281375,0.0,0.0,38780.0,31,12,2,6921,201108127,,,,1100.0,2.0,0.0,2.0,0.0,2.0,1.5,3538.7380753458983,0.0,777.0,0.0,0.0,39625.0,1,1,3,53.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1060.0664956281375,0.0273353918418808,0.026752466766640694,26416.666666666668,8,4,8,8_0,8_4,8_0_0 -8128,2,56.0,2,0.0,5,221,2,78,65,7.0,0.0,319.2230534995912,744.9115915224751,173.79103208103552,0.0,18689.0,71,71,1,6924,201108128,,,,,1.0,0.0,4.0,0.0,2.0,1.5,2978.6619805190326,0.0,546.0,0.0,0.0,36075.0,5,1,1,92.0,1,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1237.9256771031019,0.06623819771539953,0.03431533408463207,24050.0,7,4,7,7_1,7_1,7_0_0 -8129,2,60.0,1,0.0,1,112,2,75,33,10.0,4124.785623761094,0.0,1627.6181844071662,260.6865481215533,0.0,29822.0,70,33,1,6926,201108129,,,383.0,,1.0,1.0,9.0,0.0,2.0,1.5,3265.3673136647235,0.0,1193.0,0.0,0.0,84479.0,5,1,5,188.0,7,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6013.090356289814,0.2016326992250625,0.07117852195563174,56319.333333333336,10,5,10,10_1,10_0,10_1_0 -8130,2,42.0,3,0.0,1,111,2,31,37,9.0,0.0,0.0,916.8142664892001,0.0,1876.9431464751838,107277.0,41,12,2,6927,201108130,,,,1880.0,2.0,0.0,4.0,3.0,5.0,2.4,3701.975283365683,0.0,672.0,1080.0,0.0,73711.0,1,1,3,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2793.757412964384,0.02604246402271115,0.03790149927370927,30712.916666666668,9,5,9,9_0,9_4,9_1_0 -8131,1,32.0,3,188.0,4,111,2,0,43,3.0,0.0,0.0,491.1504999049286,0.0,0.0,10596.0,0,20,2,6929,201108131,,,,37.0,1.0,0.0,1.0,0.0,1.0,1.0,3253.548895516249,0.0,360.0,0.0,0.0,14225.0,0,1,3,31.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,491.1504999049286,0.04635244430963841,0.03452727591598795,14225.0,3,2,3_1,3_0_1,3_4_1,3_0_1 -8132,0,43.0,3,0.0,1,111,1,0,45,5.0,0.0,0.0,0.0,0.0,0.0,24495.0,0,30,2,693,201108132,,,,,1.0,2.0,3.0,0.0,1.0,1.0,3534.041294866374,0.0,0.0,0.0,0.0,17911.0,0,1,5,59.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,17911.0,5,3,5,5_0,5_3,5_1_0 -8133,2,53.0,3,0.0,8,111,1,85,52,5.0,0.0,0.0,272.86138883607146,0.0,0.0,26357.0,60,71,2,6933,201108133,,,,396.0,1.0,0.0,2.0,1.0,3.0,1.8,6031.810824560219,0.0,200.0,0.0,0.0,33440.0,6,1,3,45.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,272.86138883607146,0.010352520728310182,0.008159730527394481,18577.777777777777,5,3,5,5_0,5_4,5_0_0 -8134,1,61.0,3,264.0,2,111,2,0,72,1.0,0.0,0.0,177.35990274344644,0.0,729.9223347403492,15426.0,0,60,2,6934,201108134,,,,104.0,0.0,0.0,2.0,0.0,1.0,1.0,4162.963770848382,0.0,130.0,420.0,0.0,8471.0,0,5,3,52.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,907.2822374837957,0.058815132729404626,0.1071045021229838,8471.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -8135,1,59.0,4,295.0,3,111,1,0,68,6.0,0.0,0.0,1500.737638598393,0.0,625.6477154917279,21025.0,0,71,2,6935,201108135,,,,51.0,1.0,4.0,3.0,0.0,1.0,1.0,3860.221764628451,0.0,1100.0,360.0,0.0,19040.0,0,1,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2126.385354090121,0.10113604537884047,0.11167990305095173,19040.0,5,3,5,5_0,5_4,5_0_1 -8136,2,48.0,5,0.0,6,111,5,78,48,2.0,0.0,30.534379030395677,1500.737638598393,243.30744491344973,0.0,35158.0,71,71,1,6936,201108136,,,400.0,,2.0,1.0,4.0,2.0,4.0,2.5,1895.7786414332202,0.0,1100.0,0.0,0.0,30360.0,6,1,1,110.0,6,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1774.5794625422384,0.05047441443034981,0.058451233944079,12144.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -8137,2,56.0,1,0.0,1,111,2,75,37,10.0,0.0,0.0,1425.7007566684733,0.0,1911.7013528913908,62438.0,10,31,1,6938,201108137,,,605.0,,1.0,2.0,7.0,0.0,2.0,1.5,2227.083983054174,0.0,1045.0,1100.0,0.0,98777.0,6,1,1,180.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3337.402109559864,0.053451457598895934,0.03378723902892236,65851.33333333333,10,5,10,10_1,10_2,10_1_0 -8138,2,76.0,1,0.0,5,111,4,75,75,9.0,0.0,0.0,2346.6079439902146,0.0,0.0,27565.0,20,20,1,6939,201108138,,,314.0,,0.0,3.0,4.0,0.0,2.0,1.5,894.1880990538901,0.0,1720.0,0.0,0.0,47087.0,5,5,1,100.0,4,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2346.6079439902146,0.08512998164303336,0.04983557975641291,31391.333333333332,9,5,9,9_1,9_2,9_0_0 -8139,2,72.0,2,0.0,4,111,1,86,74,7.0,0.0,0.0,2914.159632769243,0.0,948.899035162454,100264.0,60,41,2,694,201108139,,,,,0.0,3.0,4.0,0.0,3.0,1.8,2965.1850486704498,0.0,2136.0,546.0,0.0,44170.0,6,5,1,115.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3863.058667931697,0.03852887046129914,0.08745887860384191,24538.888888888887,7,4,7,7_0,7_3,7_0_1 -8140,2,33.0,2,0.0,7,112,4,43,38,7.0,0.0,0.0,0.0,0.0,0.0,46611.0,33,12,1,6941,201108140,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2575.7484095132545,0.0,0.0,0.0,0.0,51588.0,1,1,2,100.0,9,1.0,4,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,24565.714285714286,7,4,7,7_1,7_1,7_0_0 -8141,2,39.0,3,0.0,1,112,2,43,63,7.0,0.0,0.0,682.1534720901786,1842.1849400589765,0.0,60089.0,42,43,1,6942,201108141,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.1,3403.9940037708884,0.0,500.0,0.0,0.0,45394.0,1,1,2,120.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2524.3384121491554,0.0420099920476153,0.05560951694385063,21616.190476190477,6,3,6,6_1,6_0,6_1_0 -8142,2,38.0,3,0.0,99,112,2,12,52,6.0,2489.149478338906,0.0,800.8481762338697,100.7987986070006,0.0,47720.0,41,50,1,6944,201108142,,,156.0,,2.0,0.0,6.0,1.0,3.0,1.8,2780.6886669693504,0.0,587.0,0.0,0.0,35880.0,1,1,3,100.0,6,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3390.7964531797766,0.07105608661315542,0.09450380304291461,19933.333333333332,6,3,6,6_1,6_0,6_0_0 -8143,2,49.0,2,0.0,1,111,2,52,43,8.0,0.0,0.0,806.3054040105911,0.0,1809.1646439635797,60942.0,41,33,1,6945,201108143,,,536.0,,3.0,0.0,5.0,2.0,4.0,2.5,1730.7988827826139,0.0,591.0,1041.0,0.0,62620.0,1,1,1,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2615.470047974171,0.04291736483827526,0.04176732749878906,25048.0,8,4,8,8_1,8_3,8_1_0 -8144,2,87.0,2,0.0,5,221,2,77,75,9.0,2855.620816449988,0.0,491.1504999049286,201.5975972140012,0.0,36656.0,70,70,1,6946,201108144,,,130.0,,0.0,1.0,2.0,0.0,2.0,1.5,3127.6407683242032,0.0,360.0,0.0,0.0,47840.0,5,5,1,88.0,1,1.0,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3548.368913568918,0.0968018581833511,0.07417159100269477,31893.333333333332,9,5,9,9_1,9_1,9_0_0 -8145,2,73.0,4,0.0,5,111,2,78,75,5.0,4151.755375916455,444.1364222603008,482.9646582398465,180.74267336427695,0.0,29099.0,70,70,1,6947,201108145,,,369.0,,0.0,1.0,5.0,0.0,2.0,1.5,1379.9708639166383,0.0,354.0,0.0,0.0,26469.0,5,5,1,116.0,7,5.0,3,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5259.599129780879,0.18074844942372173,0.19870788959843133,17646.0,5,3,5,5_1,5_2,5_0_0 -8146,2,57.0,3,0.0,1,300,2,34,31,9.0,4759.368027416646,0.0,1997.1229979965972,302.3963958210018,1872.0126773816962,72284.0,20,10,1,6949,201108146,,,600.0,,2.0,1.0,9.0,1.0,3.0,2.0,1274.116639412209,1741.0,800.0,0.0,0.0,58507.0,1,1,1,680.0,0,0.0,4,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,8930.90009861594,0.12355293147329895,0.15264669353437949,29253.5,9,5,9,9_1,9_0,9_1_0 -8147,2,77.0,3,0.0,3,111,2,78,77,4.0,0.0,0.0,532.0797082303393,0.0,2387.888780793428,14539.0,71,70,1,6950,201108147,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2414.3730607374505,0.0,390.0,1374.0,0.0,24930.0,5,5,1,60.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2919.9684890237672,0.20083695501917376,0.1171266943050047,16620.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -8148,2,55.0,2,0.0,6,111,4,0,34,10.0,0.0,524.6361487949803,589.3805998859143,0.0,0.0,18125.0,0,31,1,6951,201108148,,,152.0,,1.0,0.0,4.0,0.0,1.0,1.0,5007.6784282005765,0.0,432.0,0.0,0.0,43700.0,0,1,2,100.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1114.0167486808946,0.06146299303067004,0.02549237411169095,43700.0,10,5,10,10_1,10_2,10_0_0 -8149,2,55.0,2,0.0,1,111,4,64,52,8.0,0.0,0.0,2892.3307216623575,0.0,0.0,21230.0,50,50,1,6952,201108149,,,350.0,,2.0,1.0,5.0,0.0,2.0,1.5,1126.4054020853862,0.0,2120.0,0.0,0.0,41777.0,1,1,1,80.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2892.3307216623575,0.13623790492992735,0.06923260937028407,27851.333333333332,8,4,8,8_1,8_3,8_1_0 -8150,2,63.0,2,0.0,2,111,6,78,68,8.0,2379.684013708323,0.0,818.5841665082144,0.0,243.30744491344973,29046.0,71,70,1,6953,201108150,,,700.0,,2.0,1.0,4.0,1.0,3.0,2.0,2589.950322765227,0.0,600.0,140.0,0.0,57220.0,5,1,1,60.0,10,8.0,4,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3441.575625129987,0.11848707653824923,0.06014637583240103,28610.0,8,4,8,8_1,8_4,8_0_1 -8151,2,83.0,3,0.0,1,112,2,0,86,3.0,2052.8740758257136,0.0,573.00891655575,97.32297796537989,0.0,7798.0,0,44,1,6955,201108151,,,237.0,,0.0,8.0,3.0,0.0,1.0,1.0,3104.7329155954358,0.0,420.0,0.0,0.0,12979.0,0,5,1,70.0,7,2.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2723.2059703468435,0.34921851376594554,0.20981631638391582,12979.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -8152,1,64.0,3,126.0,3,111,1,0,78,2.0,0.0,0.0,177.35990274344644,0.0,333.6787815955882,5541.0,0,50,8,6956,201108152,,,,102.0,0.0,3.0,2.0,0.0,1.0,1.0,2459.363778269625,0.0,130.0,192.0,0.0,10522.0,0,5,3,52.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,511.0386843390346,0.0922286021185769,0.04856858813334296,10522.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -8153,2,88.0,4,0.0,4,120,2,75,86,5.0,0.0,0.0,750.3688192991965,1129.641708526731,0.0,21198.0,50,50,1,6958,201108153,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1547.5586319619347,0.0,550.0,0.0,0.0,27106.0,5,5,1,101.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1880.0105278259275,0.08868810868128726,0.06935772625344674,18070.666666666668,5,3,5,5_1,5_0,5_0_1 -8154,2,59.0,3,0.0,5,111,2,52,74,8.0,0.0,1124.2203188463864,925.0001081542822,156.41192887293198,0.0,24946.0,50,50,1,6959,201108154,,,334.0,,1.0,1.0,4.0,0.0,2.0,1.5,2855.7247878693206,0.0,678.0,0.0,0.0,37360.0,1,4,1,100.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2205.6323558736008,0.08841627338545661,0.059037268626167046,24906.666666666668,8,4,8,8_1,8_2,8_0_0 -8155,2,63.0,3,0.0,1,112,2,0,78,3.0,0.0,0.0,1432.5222913893751,48.661488982689946,0.0,13918.0,0,71,1,696,201108155,,,350.0,,0.0,0.0,5.0,0.0,1.0,1.0,3049.9387355799195,0.0,1050.0,0.0,0.0,12872.0,0,5,1,100.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1481.183780372065,0.10642217131571095,0.11507021289403861,12872.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -8156,1,42.0,3,27.0,99,111,2,0,56,3.0,0.0,0.0,930.4573359310036,0.0,0.0,14627.0,0,70,2,6960,201108156,,,,343.0,1.0,0.0,2.0,0.0,1.0,1.0,2604.2490383036156,0.0,682.0,0.0,0.0,12620.0,0,1,3,43.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,930.4573359310036,0.06361231530259134,0.07372879048581646,12620.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -8157,2,70.0,3,0.0,3,111,1,0,78,3.0,0.0,0.0,180.08851663180715,0.0,135.55700502320772,13361.0,0,71,2,6961,201108157,,,,236.0,0.0,1.0,2.0,0.0,1.0,1.0,3801.7894373275526,0.0,132.0,78.0,0.0,14310.0,0,5,3,55.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,315.6455216550149,0.02362439350759785,0.022057688445493703,14310.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -8158,2,89.0,3,0.0,3,111,1,0,78,3.0,0.0,0.0,444.76406380279644,0.0,144.24655662725948,21173.0,0,50,2,6963,201108158,,,442.0,,0.0,1.0,4.0,0.0,1.0,1.0,3476.212191450126,0.0,326.0,83.0,0.0,12441.0,0,5,1,78.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,589.010620430056,0.02781894962594134,0.04734431480026171,12441.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -8159,2,39.0,3,0.0,9,112,2,0,43,9.0,0.0,0.0,409.2920832541072,0.0,1824.805836850873,22631.0,0,33,1,6964,201108159,,,264.0,,1.0,0.0,4.0,0.0,1.0,1.0,2947.4883225740523,0.0,300.0,1050.0,0.0,29597.0,0,1,2,85.0,9,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2234.0979201049804,0.09871847996575407,0.07548393148308884,29597.0,9,5,9,9_1,9_1,9_0_0 -8160,2,61.0,3,0.0,5,111,2,75,75,8.0,2022.7314116520747,0.0,710.8039179179661,0.0,0.0,36018.0,41,31,1,6965,201108160,,,329.0,,0.0,2.0,5.0,0.0,2.0,1.5,3344.8319529478267,0.0,521.0,0.0,0.0,42847.0,5,5,1,110.0,8,6.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2733.5353295700406,0.07589359013743241,0.06379758978621702,28564.666666666668,8,4,8,8_1,8_2,8_0_0 -8161,2,65.0,3,0.0,1,400,2,0,77,4.0,0.0,0.0,259.2183193942679,104.27461924862132,0.0,14606.0,0,60,1,6967,201108161,,,150.0,,0.0,0.0,5.0,0.0,1.0,1.0,6875.207948986527,0.0,190.0,0.0,0.0,15658.0,0,5,1,90.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,363.4929386428892,0.024886549270360755,0.023214519008997906,15658.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -8162,2,60.0,2,0.0,4,111,2,0,35,9.0,0.0,0.0,422.93515269591074,0.0,1685.7730111860446,36287.0,0,41,2,6969,201108162,,,,250.0,1.0,0.0,4.0,0.0,1.0,1.0,2541.623721624699,0.0,310.0,970.0,0.0,29518.0,0,1,3,85.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2108.7081638819554,0.05811194543175119,0.07143804335937243,29518.0,9,5,9,9_0,9_3,9_0_1 -8163,2,50.0,3,0.0,7,111,2,52,63,5.0,0.0,0.0,593.0340520526336,0.0,1225.786589440054,26048.0,60,50,1,697,201108163,,,415.0,,2.0,1.0,6.0,1.0,3.0,2.0,2265.5542757098724,1140.0,0.0,0.0,0.0,34943.0,1,1,2,100.0,4,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1818.8206414926876,0.06982573101553623,0.05205107293285315,17471.5,5,3,5,5_1,5_1,5_0_0 -8164,1,43.0,4,262.0,2,111,2,0,52,2.0,0.0,0.0,463.8643610213215,0.0,992.3467931827129,7285.0,0,50,2,6970,201108164,,,,30.0,1.0,2.0,3.0,0.0,1.0,1.0,2939.7493490800443,0.0,340.0,571.0,0.0,11424.0,0,4,3,62.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1456.2111542040343,0.19989171643157644,0.12746946377836435,11424.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -8165,2,66.0,2,0.0,7,111,2,75,75,9.0,0.0,0.0,648.0457984856697,0.0,3180.37588708295,40975.0,50,44,1,6972,201108165,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1531.235251277537,0.0,475.0,1830.0,0.0,49372.0,5,5,1,160.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3828.42168556862,0.09343311008099134,0.07754236582614883,32914.666666666664,9,5,9,9_1,9_2,9_0_0 -8166,2,61.0,2,0.0,5,112,2,77,78,5.0,0.0,0.0,1608.5178871886412,0.0,0.0,19477.0,50,71,1,6973,201108166,,,106.0,,0.0,3.0,5.0,0.0,2.0,1.5,1845.4553852034528,0.0,1179.0,0.0,0.0,27593.0,5,5,1,86.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1608.5178871886412,0.08258550532364539,0.05829441841005477,18395.333333333332,5,3,5,5_1,5_1,5_0_0 -8167,2,63.0,3,0.0,4,221,2,0,77,5.0,3966.1400228472053,0.0,626.216887378784,104.27461924862132,0.0,22537.0,0,60,1,6974,201108167,,,256.0,,0.0,2.0,6.0,0.0,1.0,1.0,4789.513883697318,0.0,459.0,0.0,0.0,17785.0,0,5,1,150.0,1,3.0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4696.63152947461,0.20839648264962551,0.264078241747237,17785.0,5,3,5,5_1,5_1,5_0_1 -8168,2,42.0,1,0.0,9,112,5,42,38,8.0,0.0,249.82673752141918,1021.8659011910876,0.0,0.0,66016.0,31,31,1,6975,201108168,,,517.0,,2.0,0.0,7.0,3.0,5.0,2.4,2375.230619315134,0.0,749.0,0.0,0.0,67934.0,1,1,2,200.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1271.6926387125068,0.019263400368282033,0.018719531290848572,28305.833333333336,8,4,8,8_1,8_0,8_0_0 -8169,2,47.0,3,0.0,6,112,2,47,43,9.0,2855.620816449988,0.0,764.011888741,121.65372245672486,0.0,29683.0,30,44,1,6978,201108169,,,200.0,,2.0,1.0,5.0,0.0,2.0,1.5,1875.2419249607788,0.0,560.0,0.0,0.0,50311.0,1,1,2,75.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3741.286427647713,0.12604138488857977,0.07436318951417609,33540.666666666664,9,5,9,9_1,9_0,9_0_0 -8170,2,66.0,2,0.0,1,111,2,0,35,10.0,0.0,0.0,240.11802217574288,0.0,6253.001334275658,94554.0,0,20,2,6979,201108170,,,,,1.0,0.0,6.0,0.0,1.0,1.0,2712.4636628815024,0.0,176.0,3598.0,0.0,76323.0,0,1,1,238.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,6493.1193564514015,0.06867101715899276,0.08507421558968334,76323.0,10,5,10,10_0,10_4,10_1_0 -8171,2,44.0,2,0.0,1,112,2,52,47,9.0,0.0,0.0,2278.3925967811965,145.98446694806984,0.0,59352.0,20,31,1,698,201108171,,,,,2.0,0.0,6.0,0.0,2.0,1.5,2859.196211624394,0.0,1670.0,0.0,0.0,47689.0,1,1,3,150.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2424.3770637292664,0.040847436711977124,0.0508372384350535,31792.666666666668,9,5,9,9_1,9_0,9_1_0 -8172,2,49.0,3,0.0,8,221,4,56,21,6.0,0.0,0.0,942.7360984286269,97.32297796537989,0.0,22111.0,50,50,1,6981,201108172,,,644.0,,2.0,0.0,3.0,0.0,2.0,1.5,1479.4702856351446,0.0,691.0,0.0,0.0,29360.0,1,1,1,86.0,1,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1040.0590763940068,0.047038084048392506,0.03542435546301113,19573.333333333332,6,3,6,6_1,6_1,6_0_0 -8173,1,29.0,4,248.0,4,111,1,0,56,1.0,0.0,0.0,40.92920832541072,0.0,1251.2954309834558,7156.0,0,50,8,6982,201108173,720.0,720.0,,,1.0,0.0,2.0,0.0,1.0,1.0,2871.8542055587354,0.0,30.0,720.0,0.0,9136.0,0,4,3,48.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1292.2246393088665,0.18057918380504004,0.14144315228862372,9136.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -8174,1,20.0,1,203.0,7,111,4,0,47,1.0,0.0,0.0,409.2920832541072,0.0,0.0,14753.0,0,31,2,6983,201108174,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3699.66680433656,0.0,300.0,0.0,0.0,3513.0,0,1,3,23.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,409.2920832541072,0.027742973175225866,0.11650785176604246,3513.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -8175,2,66.0,2,0.0,5,300,1,56,75,3.0,818.6113007156632,0.0,1582.5960552492145,291.9689338961397,0.0,43873.0,50,50,1,6985,201108175,,,,,1.0,2.0,5.0,0.0,3.0,2.0,2715.0854261872632,0.0,1160.0,0.0,0.0,28061.0,1,5,1,100.0,0,0.0,5,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2693.1762898610177,0.061385733591525944,0.09597577740853917,14030.5,3,2,3_0,3_1_0,3_0_0,3_0_0 -8176,0,55.0,3,0.0,2,221,5,85,47,7.0,0.0,0.0,1146.0178331115,0.0,1652.7527150906478,21407.0,50,50,1,6986,201108176,,,,,2.0,2.0,4.0,1.0,3.0,2.0,2029.9623830765383,0.0,840.0,951.0,0.0,48226.0,7,1,5,100.0,1,2.0,4,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2798.770548202148,0.13074090476022554,0.05803447410529897,24113.0,7,4,7,7_1,7_1,7_0_1 -8177,2,23.0,2,0.0,4,111,1,0,84,4.0,0.0,0.0,245.5752499524643,0.0,0.0,16952.0,0,41,2,6988,201108177,,,,400.0,0.0,0.0,2.0,0.0,1.0,1.0,4179.84756576165,0.0,180.0,0.0,0.0,16259.0,0,3,3,36.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,245.5752499524643,0.01448650601418501,0.015103957805059616,16259.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -8178,2,76.0,3,0.0,7,300,6,71,71,2.0,2379.684013708323,0.0,1275.626992808634,0.0,0.0,22719.0,70,70,1,6990,201108178,,,,,1.0,2.0,5.0,1.0,3.0,2.0,929.0147769133588,0.0,935.0,0.0,0.0,19760.0,5,5,1,135.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3655.311006516957,0.16089224906540592,0.18498537482373265,9880.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -8179,2,52.0,3,0.0,8,112,2,22,22,2.0,0.0,0.0,1637.1683330164287,0.0,0.0,17619.0,10,70,1,6991,201108179,,,450.0,,3.0,0.0,6.0,2.0,4.0,2.5,1499.5291365796506,0.0,1200.0,0.0,0.0,25253.0,1,1,2,120.0,3,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.09292061598367835,0.06483064717128376,10101.2,2,1,2_0,2_1_0,2_0_0,2_0_0 -8180,2,77.0,3,0.0,2,111,2,0,77,7.0,0.0,0.0,622.497682299787,0.0,2533.397193237851,19839.0,0,60,1,6992,201108180,,,254.0,,0.0,2.0,4.0,0.0,1.0,1.0,4418.181105017207,381.0,311.0,1222.0,0.0,22633.0,0,5,1,80.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3155.8948755376377,0.15907529994141023,0.13943776236193337,22633.0,7,4,7,7_1,7_2,7_0_1 -8181,2,62.0,3,0.0,8,111,4,0,37,10.0,0.0,0.0,1568.9529858074109,0.0,0.0,98614.0,0,41,2,6993,201108181,,,,1050.0,1.0,2.0,3.0,0.0,1.0,1.0,3560.3604424037476,0.0,1150.0,0.0,0.0,77106.0,0,1,3,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1568.9529858074109,0.01591004305481383,0.020348001268479896,77106.0,10,5,10,10_0,10_4,10_0_0 -8182,2,55.0,2,0.0,1,111,5,75,56,1.0,0.0,902.152107716236,988.3900867543892,0.0,2042.9776490667568,38818.0,44,70,1,6994,201108182,,,,,1.0,2.0,5.0,0.0,4.0,2.5,1966.0604107829008,1900.0,0.0,0.0,0.0,19014.0,5,1,1,110.0,8,6.0,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3933.5198435373823,0.10133236754952296,0.20687492603015578,7605.6,1,1,1_0,1_1_0,1_2_0,1_1_0 -8183,2,73.0,3,0.0,1,112,6,71,71,2.0,2379.684013708323,0.0,941.3717914844465,130.34327406077665,0.0,19752.0,71,70,1,6995,201108183,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,4469.799917175237,0.0,690.0,0.0,0.0,17074.0,5,5,1,100.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3451.3990792535465,0.17473668890510058,0.2021435562406903,11382.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -8184,2,74.0,2,0.0,3,111,1,0,77,5.0,0.0,0.0,268.76846800353036,0.0,132.081184381587,17992.0,0,70,2,6996,201108184,,,,310.0,0.0,1.0,3.0,0.0,1.0,1.0,4647.987050082229,0.0,197.0,76.0,0.0,18131.0,0,5,3,86.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,400.84965238511734,0.02227932705564236,0.02210852420633817,18131.0,5,3,5,5_0,5_2,5_0_1 -8185,2,65.0,1,0.0,2,111,2,22,72,9.0,0.0,0.0,463.8643610213215,0.0,1266.936623870749,55536.0,31,12,2,6997,201108185,,,,,1.0,4.0,3.0,0.0,2.0,1.5,3156.1700032095778,0.0,340.0,729.0,0.0,54047.0,1,5,1,61.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1730.8009848920703,0.031165387944613772,0.03202399735215776,36031.333333333336,9,5,9,9_0,9_3,9_0_1 -8186,2,67.0,3,0.0,6,112,2,75,74,10.0,0.0,0.0,884.3490249907694,0.0,1827.9273702176245,45861.0,70,70,1,6998,201108186,,,925.0,,0.0,2.0,9.0,0.0,2.0,1.5,945.3676191567254,1700.0,0.0,0.0,0.0,63620.0,5,5,1,149.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2712.2763952083938,0.05914123972892858,0.04263244884011936,42413.333333333336,10,5,10,10_1,10_2,10_0_0 -8187,2,36.0,2,0.0,8,221,2,47,37,9.0,1694.335017760326,0.0,476.14312351894466,86.89551604051776,0.0,57751.0,31,43,1,7,201108187,,,222.0,,2.0,0.0,4.0,2.0,4.0,2.1,2818.8787773354916,0.0,349.0,0.0,0.0,60685.0,1,1,2,120.0,1,2.0,4,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2257.3736573197884,0.039088044489615566,0.037198214671167316,28897.619047619046,8,4,8,8_1,8_1,8_0_0 -8188,2,56.0,2,0.0,5,111,2,75,46,10.0,0.0,0.0,1353.054008235877,0.0,2796.728876432965,30888.0,60,50,1,70,201108188,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1599.0667812375536,2601.0,0.0,0.0,0.0,69083.0,5,1,1,120.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4149.782884668843,0.13434935524050903,0.06006952339459552,46055.333333333336,10,5,10,10_1,10_3,10_0_0 -8189,2,83.0,3,0.0,2,111,1,77,75,6.0,0.0,0.0,40.92920832541072,0.0,1425.0864630644912,35572.0,50,10,2,7000,201108189,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2138.621996847876,0.0,30.0,820.0,0.0,31768.0,5,5,1,74.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1466.0156713899019,0.04121262991650461,0.0461475595375819,21178.666666666668,6,3,6,6_0,6_3,6_0_1 -8191,2,70.0,3,0.0,4,111,1,0,78,5.0,0.0,0.0,176.86980499815388,0.0,365.58547404352487,13694.0,0,70,2,7004,201108191,,,,289.0,0.0,2.0,3.0,0.0,1.0,1.0,3194.630019001692,340.0,0.0,0.0,0.0,18666.0,0,5,3,62.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,542.4552790416788,0.03961262443710229,0.029061142132308943,18666.0,5,3,5,5_0,5_2,5_0_1 -8192,1,36.0,3,517.0,1,111,2,85,62,3.0,0.0,0.0,1255.1623886459286,0.0,2398.31624271829,20055.0,42,50,1,7007,201108192,,,500.0,,1.0,0.0,5.0,4.0,6.0,2.7,1093.740749395235,0.0,920.0,1380.0,0.0,37624.0,6,1,3,110.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3653.478631364219,0.18217295593937766,0.09710500295992502,13934.814814814814,3,2,3_1,3_1_1,3_3_1,3_1_0 -8193,2,42.0,4,0.0,1,111,1,33,31,8.0,0.0,0.0,597.2929044197662,0.0,1524.4957942033095,98242.0,20,10,1,7008,201108193,,,87.0,,2.0,0.0,5.0,3.0,5.0,2.4,1850.957877324726,663.0,185.0,467.0,0.0,60024.0,4,1,3,160.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2121.7886986230756,0.021597572307394754,0.0353490053749013,25010.0,8,4,8,8_1,8_2,8_1_0 -8194,2,52.0,3,0.0,2,111,4,0,52,5.0,0.0,0.0,586.6519859975537,0.0,679.5229354368489,23130.0,0,60,2,7010,201108194,,,,256.0,1.0,0.0,3.0,1.0,2.0,1.5,4030.1285206438815,0.0,430.0,391.0,0.0,27094.0,0,1,3,60.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1266.1749214344027,0.05474167407844369,0.04673266854042971,18062.666666666668,5,3,5,5_0,5_3,5_0_1 -8195,2,87.0,2,0.0,3,111,6,72,72,5.0,1806.9733944091868,69.396315978172,1473.4514997147858,166.8393907977941,0.0,26050.0,50,70,1,7011,201108195,,,660.0,,0.0,2.0,7.0,0.0,2.0,1.5,1661.0568543216466,0.0,1080.0,0.0,0.0,27477.0,5,5,1,200.0,7,6.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3516.660600899939,0.13499656817274236,0.12798560981547982,18318.0,5,3,5,5_1,5_2,5_0_1 -8196,2,48.0,4,0.0,6,111,2,52,63,6.0,0.0,0.0,1227.8762497623215,0.0,1442.4655662725947,57198.0,33,42,1,7012,201108196,,,480.0,,3.0,1.0,6.0,2.0,4.0,2.5,999.4710916083101,0.0,900.0,830.0,0.0,53756.0,1,1,2,131.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2670.3418160349165,0.04668592985829778,0.04967523283047318,21502.4,6,3,6,6_1,6_3,6_0_0 -8197,2,40.0,2,0.0,8,111,2,0,43,10.0,2379.684013708323,0.0,1719.0267496672502,86.89551604051776,0.0,62216.0,0,20,1,7013,201108197,,,,,1.0,0.0,5.0,2.0,3.0,1.6,2091.417852041415,0.0,1260.0,0.0,0.0,88800.0,0,1,2,150.0,7,5.0,2,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4185.606279416091,0.06727539988774738,0.0471352058492803,55500.0,10,5,10,10_1,10_2,10_0_0 -8198,0,66.0,1,0.0,2,111,6,0,46,9.0,0.0,0.0,477.50743046312505,69.5164128324142,0.0,24813.0,0,50,1,7014,201108198,,,200.0,,1.0,2.0,5.0,0.0,1.0,1.0,3318.3267871342255,0.0,350.0,0.0,0.0,31700.0,0,5,5,90.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,547.0238432955392,0.022045856740238554,0.017256272659165274,31700.0,9,5,9,9_1,9_2,9_0_1 -8199,2,51.0,4,0.0,2,111,2,0,54,1.0,0.0,0.0,1500.737638598393,0.0,338.8925125580193,14515.0,0,50,1,7015,201108199,,,380.0,,1.0,1.0,5.0,1.0,2.0,1.5,2232.1883741821516,0.0,1100.0,195.0,0.0,8052.0,0,4,1,140.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1839.6301511564122,0.1267399346301352,0.2284687222002499,5368.0,1,1,1_0,1_1_0,1_3_0,1_0_1 -8200,2,52.0,3,0.0,6,112,2,85,62,3.0,0.0,0.0,1186.9470414369107,0.0,1755.2894240184587,39753.0,60,50,1,7017,201108200,,,638.0,,3.0,4.0,5.0,3.0,5.0,3.0,960.729700369149,0.0,870.0,1010.0,0.0,39546.0,6,1,1,88.0,7,1.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2942.2364654553694,0.07401294155045832,0.07440035567327592,13182.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -8201,2,32.0,3,0.0,3,111,1,0,54,5.0,0.0,0.0,409.2920832541072,0.0,104.27461924862132,21546.0,0,20,2,7018,201108201,,,,254.0,1.0,0.0,2.0,0.0,1.0,1.0,2790.425162794522,0.0,300.0,60.0,0.0,18580.0,0,1,3,50.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,513.5667025027285,0.023835825791456815,0.027640834365055357,18580.0,5,3,5,5_0,5_3,5_0_1 -8202,2,58.0,3,0.0,5,112,2,85,77,2.0,0.0,0.0,523.8938665652572,816.8178507808669,0.0,13483.0,71,70,1,7019,201108202,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2098.299602449563,0.0,384.0,0.0,0.0,14480.0,6,5,1,85.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1340.7117173461243,0.09943719627279717,0.09259058821451134,9653.333333333334,1,1,1_0,1_1_0,1_0_0,1_0_0 -8203,2,53.0,2,0.0,1,400,2,21,43,4.0,3331.5576191916525,416.377895869032,682.1534720901786,145.98446694806984,0.0,27624.0,50,44,1,702,201108203,,,190.0,,2.0,2.0,6.0,0.0,2.0,1.5,2377.3117313265748,0.0,500.0,0.0,0.0,24347.0,1,1,1,183.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4576.073454098932,0.16565571438238244,0.18795225095900656,16231.333333333334,4,2,4_0,4_1_0,4_0_0,4_1_0 -8204,2,71.0,3,0.0,1,300,5,0,78,1.0,0.0,152.6718951519784,1088.716941455925,104.27461924862132,0.0,7325.0,0,50,1,7021,201108204,,,47.0,,0.0,0.0,4.0,0.0,1.0,1.0,2406.2527274864347,0.0,798.0,0.0,0.0,3434.0,0,5,1,84.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1345.6634558565247,0.18370832161863818,0.39186472214808526,3434.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -8205,1,39.0,3,336.0,6,211,2,22,56,1.0,0.0,0.0,900.4425831590357,0.0,1477.223772688802,17953.0,43,60,1,7023,201108205,,,500.0,203.0,2.0,0.0,5.0,3.0,5.0,2.6,2287.099434731798,0.0,660.0,850.0,0.0,18202.0,1,1,3,98.0,4,3.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2377.6663558478376,0.1324383866678459,0.13062665398570694,7000.7692307692305,1,1,1_1,1_1_1,1_1_1,1_0_0 -8206,0,44.0,2,0.0,1,111,2,56,63,4.0,0.0,0.0,54.101352117082364,0.0,111.8261450015488,64799.0,71,71,2,7024,201108206,,,,,2.0,0.0,2.0,2.0,4.0,2.1,4368.906325415791,104.0,0.0,0.0,0.0,33040.0,1,1,5,30.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,165.92749711863115,0.002560649039624549,0.005022018677924672,15733.333333333332,4,2,4_0,4_0_0,4_4_0,4_1_0 -8207,2,56.0,3,0.0,7,111,2,56,52,6.0,0.0,0.0,27.286138883607144,0.0,17.37910320810355,33722.0,60,71,2,7025,201108207,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3088.625934090141,0.0,20.0,10.0,0.0,28672.0,1,1,1,69.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,44.665242091710695,0.0013245134360865517,0.001557800017149508,19114.666666666668,5,3,5,5_0,5_4,5_0_0 -8209,1,25.0,3,152.0,1,112,4,53,64,4.0,0.0,0.0,2210.177249572179,375.3886292950367,0.0,41526.0,50,50,2,7028,201108209,,,,418.0,2.0,1.0,7.0,4.0,6.0,2.9,1781.8235834205286,0.0,1620.0,0.0,0.0,45136.0,1,1,3,130.0,9,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,2585.5658788672154,0.06226378362633568,0.05728389487033001,15564.137931034484,4,2,4_1,4_0_1,4_0_1,4_1_0 -8210,1,53.0,4,21.0,7,111,2,0,54,3.0,0.0,0.0,613.9381248811608,0.0,2241.904313845358,29576.0,0,50,1,7029,201108210,,,500.0,673.0,1.0,1.0,5.0,2.0,3.0,2.0,2175.1445803845104,0.0,450.0,1290.0,0.0,28192.0,0,1,3,150.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,2855.8424387265186,0.09655945492042597,0.10129974598207005,14096.0,3,2,3_1,3_1_1,3_4_1,3_0_0 -8211,2,47.0,2,0.0,1,111,1,85,38,9.0,0.0,0.0,1421.8169694756696,0.0,2590.9578852930003,74576.0,31,12,2,7030,201108211,,,,,1.0,0.0,6.0,2.0,4.0,2.1,3576.987312919032,1553.0,450.0,530.0,0.0,71141.0,6,1,1,180.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4012.7748547686697,0.05380785849024713,0.05640593827425352,33876.666666666664,9,5,9,9_0,9_4,9_1_0 -8212,2,35.0,3,0.0,6,112,5,42,63,7.0,1584.8695531297433,680.0838965860855,617.2950894432922,151.1981979105009,99.9983796648465,53728.0,20,71,1,7031,201108212,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1658.862961411279,93.0,417.0,0.0,0.0,54347.0,1,1,2,90.0,10,0.0,4,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3133.4451167344682,0.05832052406072194,0.05765626652316537,22644.583333333336,7,4,7,7_1,7_0,7_0_0 -8213,1,49.0,2,70.0,1,120,2,53,56,2.0,0.0,0.0,534.8083221187001,0.0,1807.4267336427695,28804.0,60,50,1,7033,201108213,,,,,2.0,1.0,5.0,1.0,3.0,1.8,2674.7722229602414,0.0,392.0,1040.0,0.0,19897.0,1,1,2,105.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2342.2350557614695,0.08131631217058288,0.11771800049060006,11053.888888888889,2,1,2_1,2_1_1,2_1_1,2_1_0 -8214,2,80.0,3,0.0,2,112,2,0,71,1.0,0.0,832.755791738064,1705.3836802254466,260.6865481215533,0.0,16344.0,0,71,1,7034,201108214,,,140.0,,0.0,3.0,5.0,0.0,1.0,1.0,3297.3892054562684,0.0,1250.0,0.0,0.0,8041.0,0,5,5,80.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2798.8260200850636,0.17124486172816103,0.34806939685176763,8041.0,1,1,1_0,1_1_0,1_0_0,1_0_1 -8215,2,62.0,4,0.0,1,221,2,75,35,2.0,0.0,0.0,1792.6993246529894,0.0,0.0,15674.0,31,20,1,7036,201108215,,,447.0,,1.0,1.0,4.0,0.0,2.0,1.5,3095.9150015391956,0.0,1314.0,0.0,0.0,15092.0,7,1,1,105.0,1,1.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1792.6993246529894,0.11437407966396512,0.118784741893254,10061.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0 -8216,2,47.0,2,0.0,2,111,4,0,34,8.0,0.0,0.0,733.9971359690322,135.55700502320772,0.0,24052.0,0,20,2,7037,201108216,,,180.0,,1.0,0.0,3.0,0.0,1.0,1.0,5634.956585173184,0.0,538.0,0.0,0.0,27654.0,0,1,3,65.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,869.5541409922399,0.03615309084451355,0.03144406382412092,27654.0,8,4,8,8_0,8_2,8_0_1 -8217,0,58.0,4,0.0,1,111,1,56,47,1.0,0.0,0.0,0.0,208.54923849724264,0.0,17961.0,60,70,1,704,201108217,,,,,2.0,1.0,3.0,1.0,3.0,2.0,1835.1724258046079,0.0,0.0,0.0,0.0,17790.0,1,4,5,70.0,9,7.0,4,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,208.54923849724264,0.011611226462738301,0.01172283521625872,8895.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -8218,2,76.0,3,0.0,2,112,5,0,78,2.0,0.0,0.0,914.0856526008394,31.282385774586395,0.0,6873.0,0,71,1,7042,201108218,,,180.0,,0.0,4.0,5.0,0.0,1.0,1.0,2846.506259263771,0.0,670.0,0.0,0.0,11632.0,0,5,1,100.0,9,1.0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,945.3680383754257,0.13754809229964,0.08127304318908406,11632.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -8219,2,32.0,3,0.0,3,111,1,54,53,8.0,0.0,0.0,638.4956498764072,0.0,347.58206416207105,24108.0,41,60,2,7047,201108219,,,,487.0,2.0,0.0,4.0,0.0,2.0,1.5,3181.2972666012283,0.0,468.0,200.0,0.0,39581.0,1,1,3,75.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,986.0777140384782,0.0409025101227177,0.024912905536456337,26387.333333333332,8,4,8,8_0,8_2,8_0_1 -8220,2,62.0,2,0.0,5,112,4,74,75,10.0,0.0,0.0,3946.9399895137735,187.69431464751835,0.0,30699.0,44,33,1,7048,201108220,,,650.0,,0.0,1.0,5.0,0.0,2.0,1.5,2295.576968003241,0.0,2893.0,0.0,0.0,60686.0,5,5,1,131.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4134.634304161292,0.13468302889870326,0.06813160043768401,40457.333333333336,10,5,10,10_1,10_0,10_0_0 -8221,2,37.0,3,0.0,8,111,2,43,69,6.0,1427.810408224994,0.0,804.9410970664107,0.0,0.0,50439.0,33,42,1,7049,201108221,,,420.0,,2.0,0.0,5.0,2.0,4.0,2.1,2719.095857327579,0.0,590.0,0.0,0.0,42330.0,1,1,2,160.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2232.751505291405,0.04426637136524128,0.05274631479545015,20157.142857142855,6,3,6,6_1,6_3,6_0_0 -8222,2,74.0,4,0.0,5,221,2,72,72,3.0,1070.8578061687456,0.0,854.0561470569037,0.0,0.0,23519.0,70,71,1,7052,201108222,,,276.0,,0.0,1.0,4.0,0.0,2.0,1.5,4801.743702724591,0.0,626.0,0.0,0.0,20876.0,5,5,1,88.0,1,1.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1924.9139532256493,0.08184505945089711,0.09220702975788701,13917.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0 -8223,1,29.0,3,45.0,1,120,4,0,52,2.0,0.0,0.0,0.0,0.0,0.0,9504.0,0,50,2,7053,201108223,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2870.9997009226327,0.0,0.0,0.0,0.0,10720.0,0,4,3,47.0,0,2.0,1,8,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0.0,0.0,0.0,10720.0,2,1,2_1,2_0_1,2_1_1,2_1_0 -8224,2,53.0,2,0.0,2,111,1,78,54,9.0,0.0,0.0,651.5402063238087,0.0,242.33194507112265,31555.0,50,31,2,7054,201108224,,,,,1.0,3.0,4.0,0.0,2.0,1.5,2088.4978357871883,109.0,436.0,72.0,0.0,48640.0,5,1,2,85.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,893.8721513949313,0.028327433097605173,0.018377305744139212,32426.666666666668,9,5,9,9_0,9_3,9_0_1 -8225,2,46.0,3,0.0,7,112,2,56,53,4.0,0.0,0.0,668.510402648375,0.0,2745.8983068803614,53906.0,50,50,1,7055,201108225,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2611.074404201098,0.0,490.0,1580.0,0.0,34077.0,1,1,2,131.0,6,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3414.4087095287364,0.06334004952192217,0.1001968691354502,14816.08695652174,3,2,3_0,3_1_0,3_0_0,3_0_0 -8226,2,59.0,4,0.0,1,111,4,67,53,8.0,0.0,0.0,1159.6609025533037,0.0,0.0,11770.0,71,70,2,7056,201108226,,,,,2.0,2.0,2.0,0.0,2.0,1.5,2874.2137868350483,0.0,850.0,0.0,0.0,40160.0,1,1,2,40.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1159.6609025533037,0.09852683963919318,0.0288760184898731,26773.333333333332,8,4,8,8_0,8_4,8_1_0 -8227,2,55.0,2,0.0,4,111,1,75,54,9.0,258.5923294896378,0.0,51.843663878853576,0.0,0.0,19421.0,60,20,8,7057,201108227,432.0,432.0,,437.0,1.0,0.0,2.0,0.0,2.0,1.5,3183.1186216530364,0.0,38.0,0.0,432.0,53539.0,5,1,3,54.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,310.4359933684914,0.015984552462205415,0.005798315122966274,35692.666666666664,9,5,9,9_0,9_4,9_0_1 -8228,2,27.0,2,0.0,1,111,6,52,63,8.0,0.0,0.0,1200.5901108787143,0.0,0.0,27036.0,43,60,8,7058,201108228,,,,600.0,2.0,0.0,2.0,0.0,2.0,1.5,3125.8197830259264,0.0,880.0,0.0,0.0,39786.0,1,1,3,35.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1200.5901108787143,0.04440709094831759,0.030176195417451222,26524.0,8,4,8,8_0,8_4,8_1_0 -8229,2,33.0,4,0.0,4,111,2,62,43,7.0,0.0,0.0,1637.1683330164287,0.0,1042.7461924862132,34169.0,43,33,1,7059,201108229,,,300.0,662.0,2.0,0.0,4.0,2.0,4.0,2.1,2158.2495785865563,0.0,1200.0,600.0,0.0,45370.0,1,1,3,100.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2679.914525502642,0.0784311664228582,0.059067986015046106,21604.761904761905,6,3,6,6_1,6_2,6_0_1 -8230,2,63.0,2,0.0,1,111,2,78,77,5.0,190.37472109666587,0.0,585.2876790533733,0.0,1056.649475052696,19546.0,50,50,1,7061,201108230,,,160.0,,0.0,4.0,3.0,0.0,2.0,1.5,1960.0266981076552,0.0,429.0,608.0,0.0,26920.0,5,5,1,55.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1832.3118752027353,0.09374357286415304,0.06806507708776877,17946.666666666668,5,3,5,5_1,5_3,5_1_0 -8231,1,48.0,3,74.0,4,111,1,85,64,2.0,0.0,0.0,818.5841665082144,0.0,0.0,18572.0,71,71,2,7064,201108231,,,,,1.0,0.0,4.0,1.0,3.0,1.8,3737.2786167220765,0.0,600.0,0.0,0.0,19478.0,6,1,3,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,818.5841665082144,0.0440762527734339,0.042026089254965315,10821.111111111111,2,1,2_1,2_0_1,2_4_1,2_0_1 -8232,2,21.0,3,0.0,5,111,4,0,56,3.0,0.0,0.0,491.1504999049286,0.0,0.0,10479.0,0,41,2,7065,201108232,,,,700.0,1.0,0.0,3.0,0.0,1.0,1.0,3567.556419223115,0.0,360.0,0.0,0.0,13706.0,0,3,4,60.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,491.1504999049286,0.046869978042268216,0.03583470742046758,13706.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -8233,2,39.0,4,0.0,1,120,4,0,43,2.0,0.0,0.0,1275.626992808634,156.41192887293198,0.0,10649.0,0,33,2,7066,201108233,,,,306.0,1.0,0.0,2.0,0.0,1.0,1.0,2609.0260127291613,0.0,935.0,0.0,0.0,11585.0,0,4,4,46.0,0,3.0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1432.038921681566,0.13447637540441038,0.12361147360220683,11585.0,2,1,2_0,2_0_0,2_1_0,2_1_0 -8234,2,70.0,2,0.0,8,111,2,75,74,10.0,0.0,0.0,264.6755471709893,0.0,0.0,28406.0,50,12,1,7069,201108234,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1155.1504914871703,0.0,194.0,0.0,0.0,59768.0,5,5,1,130.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,264.6755471709893,0.009317593014538807,0.004428382197346228,39845.333333333336,10,5,10,10_1,10_3,10_0_0 -8235,1,72.0,3,180.0,99,111,4,0,77,7.0,0.0,1110.341055650752,1855.457444085286,0.0,0.0,24131.0,0,70,1,707,201108235,,,190.0,,0.0,7.0,5.0,0.0,1.0,1.0,1960.5351890667812,0.0,1360.0,0.0,0.0,23110.0,0,5,3,110.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2965.798499736038,0.1229040860194786,0.12833398960346334,23110.0,7,4,7,7_1,7_3,7_0_0 -8236,2,58.0,1,0.0,8,112,2,42,37,10.0,0.0,0.0,867.6992164987072,0.0,1856.0882226254594,37086.0,42,30,1,7070,201108236,,,185.0,,2.0,2.0,5.0,0.0,2.0,1.5,2720.10653264847,0.0,636.0,1068.0,0.0,90969.0,1,1,2,160.0,9,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2723.7874391241667,0.0734451663464425,0.029941930098430967,60646.0,10,5,10,10_1,10_1,10_0_0 -8237,2,30.0,4,0.0,4,111,2,0,65,4.0,0.0,0.0,376.5487165937786,0.0,990.6088828619024,16269.0,0,50,2,7071,201108237,,,,320.0,1.0,0.0,3.0,0.0,1.0,1.0,2461.482996071219,0.0,276.0,570.0,0.0,16156.0,0,1,3,78.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1367.157599455681,0.084034519605119,0.08462228270956183,16156.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -8238,1,40.0,3,70.0,4,111,1,0,37,5.0,0.0,0.0,927.728722042643,0.0,104.27461924862132,22293.0,0,20,2,7072,201108238,,,,,1.0,0.0,4.0,1.0,2.0,1.3,3727.256547970192,0.0,680.0,60.0,0.0,24220.0,0,4,2,76.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1032.0033412912644,0.04629270808286298,0.042609551663553444,18630.76923076923,5,3,5,5_0,5_3,5_0_1 -8239,2,72.0,5,0.0,2,112,5,78,72,4.0,0.0,832.755791738064,2046.460416270536,451.85668341069237,0.0,21827.0,70,70,1,7074,201108239,,,300.0,,0.0,5.0,5.0,0.0,2.0,1.5,1830.6981430164385,0.0,1500.0,0.0,0.0,23440.0,5,5,1,80.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3331.0728914192923,0.15261249330733917,0.14211061823461144,15626.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_1 -8240,0,85.0,2,0.0,1,111,6,77,75,5.0,0.0,0.0,504.79356934673217,0.0,994.0847035035232,22797.0,70,70,1,7075,201108240,,,132.0,,0.0,5.0,3.0,0.0,2.0,1.5,1407.1748872735707,0.0,370.0,572.0,0.0,26011.0,5,5,5,50.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1498.8782728502554,0.0657489262995243,0.05762478462382282,17340.666666666668,5,3,5,5_1,5_3,5_1_0 -8241,2,74.0,2,0.0,1,120,6,0,78,5.0,3426.7449797399854,0.0,912.0951540561435,118.17790181510415,1095.6811707363288,20517.0,0,70,1,7076,201108241,,,670.0,,0.0,5.0,7.0,0.0,1.0,1.0,1838.6783623237802,1019.0,280.0,0.0,0.0,18069.0,0,5,1,160.0,0,0.0,1,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5552.699206347561,0.27063894362468005,0.3073052856465527,18069.0,5,3,5,5_1,5_0,5_1_0 -8242,2,41.0,3,0.0,8,400,4,54,67,6.0,0.0,0.0,1860.9146718620073,100.7987986070006,0.0,27930.0,43,50,1,7078,201108242,,,440.0,,2.0,0.0,4.0,2.0,4.0,2.1,2243.0084438622316,0.0,1364.0,0.0,0.0,44316.0,1,1,2,91.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1961.713470469008,0.07023678734224877,0.044266483222064446,21102.85714285714,6,3,6,6_1,6_0,6_0_0 -8243,2,67.0,2,0.0,8,112,4,71,12,8.0,0.0,0.0,2504.867549515136,43.44775802025888,0.0,31988.0,70,50,1,7079,201108243,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1887.0813845643336,0.0,1836.0,0.0,0.0,40440.0,5,1,2,160.0,9,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2548.315307535395,0.07966472763334359,0.0630147207600246,26960.0,8,4,8,8_1,8_1,8_0_0 -8244,0,48.0,3,0.0,1,112,6,67,48,3.0,2881.0041125962102,0.0,463.8643610213215,0.0,0.0,30572.0,50,50,1,708,201108244,,,300.0,,2.0,1.0,4.0,1.0,3.0,2.0,1215.0942115168482,0.0,340.0,0.0,0.0,26158.0,1,1,5,70.0,5,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3344.868473617532,0.10940954054747913,0.12787172083559645,13079.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -8245,0,23.0,3,0.0,8,111,4,0,54,1.0,0.0,0.0,0.0,0.0,0.0,10683.0,0,31,2,7083,201108245,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3629.711471438232,0.0,0.0,0.0,0.0,6461.0,0,4,5,33.0,9,7.0,1,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,6461.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -8246,2,33.0,3,0.0,7,111,6,56,22,6.0,142.7810408224994,0.0,664.417481815834,0.0,0.0,33507.0,43,50,1,7084,201108246,,,,610.0,2.0,0.0,3.0,1.0,3.0,1.8,3752.7648787037797,0.0,487.0,0.0,0.0,37525.0,1,1,3,54.0,9,7.0,4,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,807.1985226383333,0.02409044446349519,0.021510953301487896,20847.222222222223,6,3,6,6_1,6_3,6_0_0 -8247,1,86.0,3,57.0,2,111,2,0,77,2.0,0.0,0.0,177.35990274344644,0.0,637.8130877374003,18148.0,0,70,2,7085,201108247,,,,225.0,0.0,7.0,4.0,0.0,1.0,1.0,2683.3514035625144,0.0,130.0,367.0,0.0,9720.0,0,5,3,110.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,815.1729904808468,0.04491806207190031,0.08386553400008712,9720.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -8248,1,81.0,4,80.0,5,111,1,0,78,4.0,0.0,0.0,654.8673332065715,0.0,298.9205751793811,14064.0,0,71,2,7086,201108248,52.0,52.0,,274.0,0.0,4.0,2.0,0.0,1.0,1.0,3167.4280724584223,0.0,480.0,172.0,0.0,15440.0,0,5,3,49.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,953.7879083859526,0.06781768404336978,0.0617738282633389,15440.0,4,2,4_1,4_0_1,4_4_1,4_0_0 -8249,2,51.0,1,0.0,1,112,2,56,47,4.0,3966.1400228472053,0.0,1248.340853925027,0.0,0.0,54624.0,71,50,1,7087,201108249,,,,,3.0,2.0,7.0,1.0,3.0,2.0,2102.671565271509,0.0,915.0,0.0,0.0,29390.0,1,1,1,190.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5214.4808767722325,0.09546135172766976,0.17742364330630256,14695.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -8250,2,26.0,4,0.0,9,112,2,55,64,6.0,0.0,0.0,1500.737638598393,69.5164128324142,0.0,33645.0,60,60,1,7088,201108250,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,2380.8303335020546,0.0,1100.0,0.0,0.0,44740.0,1,1,2,94.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1570.2540514308073,0.046671245398448725,0.03509731898593668,21304.761904761905,6,3,6,6_1,6_0,6_0_0 -8251,1,36.0,3,354.0,6,112,4,68,21,10.0,0.0,0.0,2155.6049718049644,625.6477154917279,0.0,28243.0,71,50,2,7089,201108251,,,,254.0,2.0,0.0,4.0,3.0,5.0,2.6,5007.348347667403,0.0,1580.0,0.0,0.0,109561.0,4,1,3,82.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2781.2526872966923,0.09847582364822052,0.025385426267528523,42138.84615384615,10,5,10,10_0,10_1,10_0_0 -8252,2,37.0,3,0.0,9,112,2,52,69,6.0,1586.456009138882,0.0,1118.731694227893,46.92357866187959,0.0,34126.0,50,50,1,709,201108252,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2350.296708529759,0.0,820.0,0.0,0.0,42999.0,1,1,2,130.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2752.111282028655,0.08064558641588979,0.06400407642104827,20475.714285714286,6,3,6,6_1,6_0,6_0_0 -8253,2,53.0,4,0.0,2,111,2,0,47,10.0,0.0,0.0,384.7345582588608,0.0,2085.4923849724264,28301.0,0,60,1,7091,201108253,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2715.508137769389,0.0,282.0,1200.0,0.0,39389.0,0,1,2,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2470.2269432312874,0.08728408689556155,0.06271362419028885,39389.0,10,5,10,10_1,10_4,10_0_1 -8254,1,24.0,3,45.0,4,400,2,53,67,4.0,3134.837074058431,0.0,1129.646149781336,72.99223347403492,0.0,28657.0,50,50,1,7092,201108254,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3604.1584763554115,0.0,828.0,0.0,0.0,26652.0,1,1,3,100.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,4337.475457313802,0.15135832282910988,0.16274483931088854,14806.666666666666,3,2,3_1,3_1_1,3_0_1,3_0_1 -8255,2,78.0,3,0.0,5,400,2,78,77,2.0,1269.1648073111057,0.0,573.00891655575,156.41192887293198,0.0,14844.0,71,71,1,7095,201108255,,,290.0,,0.0,2.0,4.0,0.0,2.0,1.5,3423.641231090155,0.0,420.0,0.0,0.0,17953.0,5,5,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1998.5856527397877,0.13463929215439152,0.1113232135431286,11968.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0 -8256,2,32.0,1,0.0,99,120,1,43,46,9.0,0.0,0.0,518.4366387885358,0.0,0.0,54264.0,33,31,2,7096,201108256,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2312.7631168775806,0.0,380.0,0.0,0.0,57508.0,1,1,3,80.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,518.4366387885358,0.009553970197341439,0.009015035104481739,31948.888888888887,9,5,9,9_0,9_1,9_0_0 -8257,2,55.0,2,0.0,1,111,6,42,42,9.0,0.0,0.0,496.60772768165003,0.0,2860.6003880538447,55432.0,31,31,2,7097,201108257,,,,,3.0,1.0,7.0,2.0,4.0,2.5,2756.1975547008037,0.0,364.0,1646.0,0.0,79071.0,5,1,1,160.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3357.2081157354946,0.060564441400914534,0.042458146674956614,31628.4,9,5,9,9_0,9_3,9_1_0 -8258,2,43.0,1,0.0,1,112,2,56,38,7.0,1903.7472109666587,0.0,488.4218860165679,161.62565983536302,0.0,42565.0,50,50,5,7099,201108258,,,,,2.0,0.0,4.0,0.0,3.0,2.0,1651.6244876328412,0.0,358.0,0.0,0.0,45118.0,1,1,1,150.0,9,0.0,5,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2553.7947568185896,0.059997527471363554,0.05660257007887295,22559.0,7,4,7,7_1,7_0,7_1_0 -8259,2,36.0,2,0.0,1,211,6,47,43,9.0,0.0,0.0,1910.0297218525002,0.0,0.0,59630.0,31,33,1,71,201108259,,,,,2.0,0.0,8.0,1.0,3.0,1.8,2501.617620243663,0.0,1400.0,0.0,0.0,61234.0,1,1,2,170.0,1,2.0,4,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1910.0297218525002,0.032031355389107834,0.031192306918582817,34018.88888888889,9,5,9,9_1,9_1,9_1_0 -8260,2,57.0,2,0.0,2,111,6,0,77,3.0,295.0808176998321,0.0,695.7965415319821,140.77073598563877,0.0,17053.0,0,60,1,7101,201108260,,,248.0,,0.0,1.0,5.0,0.0,1.0,1.0,2086.9805042372964,0.0,510.0,0.0,0.0,14380.0,0,5,1,151.0,5,4.0,1,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1131.648095217453,0.0663606459401544,0.07869597324182566,14380.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -8261,1,36.0,2,288.0,9,400,2,52,21,6.0,0.0,0.0,1754.4987302159395,0.0,0.0,26649.0,43,50,1,7103,201108261,,,,,2.0,0.0,6.0,3.0,5.0,2.4,2643.664818840133,0.0,1286.0,0.0,0.0,46660.0,1,1,2,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1754.4987302159395,0.06583731960733759,0.03760177304363351,19441.666666666668,6,3,6,6_1,6_0,6_0_0 -8262,2,74.0,3,0.0,5,111,2,0,77,4.0,0.0,0.0,682.1534720901786,0.0,0.0,18842.0,0,50,2,7104,201108262,,,300.0,,0.0,3.0,3.0,0.0,1.0,1.0,2485.5892025425337,0.0,500.0,0.0,0.0,16359.0,0,5,1,65.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,682.1534720901786,0.03620387814935668,0.041698971336278416,16359.0,4,2,4_0,4_0_0,4_4_0,4_0_0 -8263,2,54.0,2,0.0,8,112,6,0,52,3.0,0.0,0.0,1227.8762497623215,93.84715732375918,0.0,40663.0,0,60,1,7105,201108263,,,150.0,,1.0,1.0,6.0,1.0,2.0,1.5,1864.489648324453,0.0,900.0,0.0,0.0,21317.0,0,1,2,135.0,6,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1321.7234070860807,0.0325043259741308,0.06200325594999675,14211.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -8264,2,44.0,2,0.0,1,111,6,0,37,9.0,0.0,0.0,1637.1683330164287,0.0,0.0,40381.0,0,31,8,7106,201108264,,,,1158.0,1.0,0.0,3.0,2.0,3.0,1.8,3583.628234054531,0.0,1200.0,0.0,0.0,66178.0,0,1,3,75.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1637.1683330164287,0.04054303590838337,0.024738860845242055,36765.555555555555,9,5,9,9_0,9_4,9_1_0 -8265,1,46.0,4,186.0,3,111,1,0,65,5.0,0.0,0.0,867.6992164987072,0.0,187.69431464751835,34900.0,0,71,2,7107,201108265,,,,334.0,1.0,2.0,5.0,1.0,3.0,2.0,3212.6807283589865,0.0,636.0,108.0,0.0,35722.0,0,1,3,74.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1055.3935311462255,0.03024050232510675,0.029544637230452538,17861.0,5,3,5,5_0,5_4,5_0_1 -8266,2,80.0,4,0.0,1,120,6,0,77,5.0,1903.7472109666587,471.89494865156956,777.6549581828036,145.98446694806984,0.0,54917.0,0,70,1,7112,201108266,,,,,0.0,4.0,4.0,0.0,1.0,1.0,1868.8975149342398,0.0,570.0,0.0,0.0,18373.0,0,5,1,101.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3299.2815847491015,0.060077600465231196,0.17957228458874988,18373.0,5,3,5,5_1,5_0,5_1_0 -8267,1,23.0,4,360.0,3,111,2,0,56,2.0,0.0,0.0,785.8407998478858,0.0,0.0,8514.0,0,50,2,7113,201108267,,,255.0,140.0,1.0,0.0,3.0,1.0,2.0,1.3,2991.5177307999256,0.0,576.0,0.0,0.0,12412.0,0,4,3,49.0,8,7.0,2,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,785.8407998478858,0.09229983554708548,0.06331298741926247,9547.692307692307,1,1,1_1,1_0_1,1_3_1,1_0_1 -8268,2,51.0,2,0.0,9,120,4,62,38,10.0,0.0,305.3437903039568,4470.833856079031,0.0,0.0,40756.0,50,12,1,7115,201108268,,,302.0,,2.0,1.0,6.0,2.0,4.0,2.3,1388.6312318554185,0.0,3277.0,0.0,0.0,90912.0,1,1,1,141.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4776.177646382987,0.11718955850385189,0.05253627294947848,39526.956521739135,10,5,10,10_1,10_0,10_0_0 -8269,2,49.0,1,0.0,1,112,2,43,23,9.0,3014.2664173638764,0.0,1637.1683330164287,0.0,0.0,128789.0,33,12,1,7116,201108269,,,720.0,,2.0,1.0,9.0,3.0,5.0,2.8,1009.246455807375,0.0,1200.0,0.0,0.0,93002.0,1,1,1,350.0,10,4.0,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4651.434750380306,0.03611670833984506,0.05001435184598509,33215.0,9,5,9,9_1,9_2,9_1_0 -8270,2,49.0,2,0.0,1,112,2,22,46,1.0,0.0,0.0,2688.745882053042,173.79103208103552,645.1508365473968,27998.0,31,10,1,7117,201108270,,,210.0,,2.0,2.0,6.0,1.0,3.0,2.0,2017.706121562419,600.0,1742.0,0.0,0.0,16556.0,1,1,1,150.0,9,0.0,4,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3507.6877506814744,0.12528351134657742,0.2118680690191758,8278.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -8271,2,32.0,3,0.0,3,111,1,0,47,5.0,0.0,0.0,511.615104067634,0.0,72.99223347403492,18967.0,0,31,2,7118,201108271,,,,362.0,1.0,0.0,3.0,0.0,1.0,1.0,3619.4318345356915,0.0,375.0,42.0,0.0,18411.0,0,1,3,54.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,584.6073375416689,0.030822340778281696,0.031753155045443966,18411.0,5,3,5,5_0,5_3,5_0_1 -8272,1,57.0,4,295.0,2,111,1,0,64,1.0,0.0,0.0,341.0767360450893,0.0,173.79103208103552,7885.0,0,60,2,7119,201108272,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3139.763774313622,0.0,250.0,100.0,0.0,8550.0,0,4,3,55.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,514.8677681261248,0.06529711707370003,0.060218452412412256,5700.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -8273,1,37.0,3,58.0,7,111,2,0,46,4.0,0.0,0.0,477.50743046312505,0.0,1651.0148047698374,25039.0,0,41,2,712,201108273,,,,789.0,1.0,0.0,3.0,2.0,3.0,1.6,3320.50636508614,0.0,350.0,950.0,0.0,25048.0,0,1,3,75.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2128.5222352329624,0.08500827649798165,0.08497773216356445,15655.0,4,2,4_1,4_0_1,4_4_1,4_0_0 -8274,2,31.0,2,0.0,4,111,2,46,38,9.0,0.0,0.0,409.2920832541072,0.0,990.6088828619024,44825.0,20,12,1,7122,201108274,,,170.0,,2.0,0.0,5.0,1.0,3.0,1.8,3444.4473272704477,0.0,300.0,570.0,0.0,58252.0,1,1,2,93.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1399.9009661160096,0.031230361764997425,0.02403180948492772,32362.222222222223,9,5,9,9_1,9_3,9_0_1 -8275,2,38.0,4,0.0,99,111,2,56,62,4.0,0.0,0.0,875.8850581637894,0.0,938.4715732375919,28928.0,42,50,1,7123,201108275,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1292.3655595924,0.0,642.0,540.0,0.0,32641.0,4,1,3,84.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1814.3566314013813,0.06271973974700572,0.0555852036212549,15543.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_0 -8276,2,37.0,2,0.0,9,111,2,46,46,8.0,0.0,0.0,559.3658471139465,0.0,1216.5372245672486,54432.0,41,43,2,7124,201108276,,,,730.0,2.0,0.0,4.0,1.0,3.0,1.8,2626.504237512216,0.0,410.0,700.0,0.0,49476.0,1,1,3,75.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1775.9030716811951,0.03262608523811719,0.03589423299541586,27486.666666666664,8,4,8,8_0,8_3,8_0_0 -8277,1,26.0,2,11.0,99,112,4,63,69,4.0,0.0,0.0,0.0,34.7582064162071,0.0,30427.0,71,71,1,7125,201108277,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3578.9998797282124,0.0,0.0,0.0,0.0,24706.0,1,1,3,80.0,8,0.0,3,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,34.7582064162071,0.0011423474682422552,0.001406873084117506,16470.666666666668,4,2,4_1,4_1_1,4_0_1,4_0_0 -8278,2,58.0,1,0.0,3,111,2,46,38,10.0,0.0,0.0,1598.9677385793786,0.0,3314.1949817853474,67080.0,41,12,1,7126,201108278,,,228.0,,3.0,3.0,7.0,2.0,4.0,2.5,1847.6657741718911,0.0,1172.0,1907.0,0.0,99569.0,4,1,1,200.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4913.162720364726,0.07324333214616467,0.04934430114156741,39827.6,10,5,10,10_1,10_3,10_0_1 -8279,2,31.0,3,0.0,1,400,5,0,62,8.0,0.0,1873.7005314106439,654.8673332065715,0.0,0.0,36021.0,0,43,8,7127,201108279,,,,,2.0,0.0,10.0,0.0,2.0,1.5,5004.800296854509,0.0,480.0,0.0,0.0,37835.0,0,1,2,200.0,0,0.0,5,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2528.5678646172155,0.07019704796138962,0.06683144878068496,25223.333333333332,8,4,8,8_0,8_0,8_1_0 -8280,2,45.0,1,0.0,1,111,2,34,34,10.0,0.0,0.0,682.1534720901786,0.0,1477.223772688802,80906.0,20,10,2,7128,201108280,,,270.0,,2.0,0.0,4.0,2.0,4.0,2.1,2936.1902617763744,0.0,500.0,850.0,0.0,85661.0,1,1,1,94.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2159.3772447789806,0.026689951854979615,0.025208405747994777,40790.95238095238,10,5,10,10_0,10_3,10_1_0 -8281,2,44.0,3,0.0,7,112,2,81,47,2.0,0.0,0.0,873.1564442754286,2050.7341785562194,0.0,28190.0,50,50,1,7129,201108281,,,276.0,,2.0,0.0,5.0,3.0,5.0,3.0,2692.235416951746,0.0,640.0,0.0,0.0,34463.0,4,1,1,150.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2923.890622831648,0.1037208450809382,0.08484144220850327,11487.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0 -8282,2,84.0,3,0.0,5,111,1,0,77,6.0,0.0,0.0,559.7409122882751,0.0,1156.9705002083315,13531.0,0,50,2,713,201108282,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2887.085252018707,1076.0,0.0,0.0,0.0,19700.0,0,5,1,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1716.7114124966065,0.1268724715465676,0.08714271129424399,19700.0,6,3,6,6_0,6_3,6_0_0 -8283,1,54.0,3,463.0,6,111,2,0,56,1.0,0.0,0.0,177.35990274344644,0.0,0.0,18520.0,0,60,2,7130,201108283,,,,14.0,2.0,0.0,3.0,3.0,4.0,2.5,3371.322949854127,0.0,130.0,0.0,0.0,18855.0,0,1,3,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,177.35990274344644,0.009576668614656935,0.009406518310445316,7542.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -8284,2,59.0,3,0.0,8,111,2,0,47,7.0,0.0,0.0,422.93515269591074,0.0,769.8942721189874,38519.0,0,44,2,7131,201108284,,,,,1.0,4.0,2.0,0.0,1.0,1.0,3209.8127335378485,0.0,310.0,443.0,0.0,23365.0,0,1,3,40.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1192.8294248148982,0.030967299899138042,0.051051976238600395,23365.0,7,4,7,7_0,7_3,7_0_0 -8285,2,56.0,2,0.0,4,111,4,38,46,10.0,0.0,0.0,1637.1683330164287,0.0,0.0,57769.0,12,20,2,7132,201108285,,,,,2.0,0.0,6.0,0.0,2.0,1.5,2782.9025342592145,0.0,1200.0,0.0,0.0,68519.0,1,1,2,125.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1637.1683330164287,0.02833991125026275,0.023893640202227538,45679.333333333336,10,5,10,10_0,10_3,10_0_1 -8286,2,60.0,2,0.0,6,211,2,78,34,10.0,0.0,277.585263912688,792.6623345687875,0.0,1503.2924275009573,68281.0,71,20,1,7134,201108286,,,477.0,,1.0,0.0,6.0,0.0,3.0,2.0,1407.0402156626612,0.0,581.0,865.0,0.0,108044.0,5,1,1,180.0,1,3.0,5,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2573.540025982433,0.03769042670702586,0.023819370126822708,54022.0,10,5,10,10_1,10_1,10_0_0 -8287,1,26.0,3,170.0,1,111,2,0,35,2.0,0.0,0.0,0.0,0.0,0.0,14088.0,0,12,2,7135,201108287,,,,280.0,1.0,0.0,3.0,0.0,1.0,1.0,4276.809783289807,0.0,0.0,0.0,0.0,11512.0,0,1,4,45.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0.0,0.0,0.0,11512.0,2,1,2_1,2_0_1,2_4_1,2_1_0 -8288,2,28.0,3,0.0,5,111,2,43,38,8.0,1840.2889706011033,0.0,491.1504999049286,0.0,0.0,37464.0,33,10,1,7136,201108288,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3708.8807657303983,0.0,360.0,0.0,0.0,39251.0,1,1,3,85.0,8,7.0,3,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2331.4394705060317,0.06223146141645398,0.0593982184022326,26167.333333333332,8,4,8,8_1,8_3,8_0_0 -8289,2,49.0,3,0.0,8,111,3,62,47,8.0,0.0,0.0,1282.4485275295358,0.0,0.0,29360.0,60,50,1,7139,201108289,,,460.0,,2.0,3.0,4.0,0.0,2.0,1.5,3375.9239547934435,0.0,940.0,0.0,0.0,42845.0,1,1,3,100.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1282.4485275295358,0.04368012695945286,0.02993227978829585,28563.333333333332,8,4,8,8_1,8_2,8_0_0 -8290,2,52.0,2,0.0,5,111,6,31,47,9.0,0.0,0.0,540.2655498954215,0.0,1289.5294580412835,67514.0,31,31,2,7140,201108290,,,,,2.0,0.0,3.0,1.0,3.0,2.0,6463.65694832771,0.0,396.0,742.0,0.0,65475.0,1,1,1,100.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1829.7950079367051,0.027102452942155776,0.027946468238819477,32737.5,9,5,9,9_0,9_2,9_0_0 -8291,2,64.0,2,0.0,2,111,2,72,72,9.0,0.0,0.0,486.9696853392232,0.0,1027.2169622526706,68984.0,70,70,1,7142,201108291,,,180.0,,0.0,2.0,5.0,0.0,2.0,1.5,1913.3688001801847,228.0,270.0,450.0,0.0,44609.0,5,5,1,90.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1514.1866475918937,0.021949823837294064,0.03394352367441309,29739.333333333332,9,5,9,9_1,9_3,9_0_1 -8292,1,26.0,3,389.0,2,120,5,85,62,2.0,50.76659229244423,416.377895869032,1091.4455553442858,97.32297796537989,0.0,17575.0,50,50,1,7143,201108292,,,,,1.0,0.0,3.0,3.0,5.0,2.4,1430.5780632489736,0.0,800.0,0.0,0.0,24501.0,6,4,3,70.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1655.9130214711417,0.09421980207517165,0.06758552799767935,10208.75,2,1,2_1,2_1_1,2_1_1,2_0_1 -8293,2,46.0,2,0.0,6,111,4,0,42,7.0,0.0,0.0,245.5752499524643,0.0,0.0,20871.0,0,30,2,7146,201108293,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3447.16785295352,0.0,180.0,0.0,0.0,23811.0,0,1,1,63.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,245.5752499524643,0.011766338457786608,0.0103135210596978,23811.0,7,4,7,7_0,7_3,7_0_0 -8294,2,29.0,4,0.0,2,112,2,0,55,4.0,0.0,0.0,409.2920832541072,48.661488982689946,0.0,18098.0,0,31,2,7147,201108294,,,,365.0,1.0,0.0,3.0,0.0,1.0,1.0,3223.509661412229,0.0,300.0,0.0,0.0,15223.0,0,1,3,70.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,457.95357223679713,0.025304098366493378,0.030083004154029896,15223.0,4,2,4_0,4_0_0,4_1_0,4_0_1 -8295,2,44.0,2,0.0,99,111,2,0,85,1.0,0.0,0.0,955.0148609262501,0.0,0.0,41053.0,0,41,2,7149,201108295,,,,700.0,0.0,0.0,2.0,0.0,1.0,1.0,3833.152354646882,0.0,700.0,0.0,0.0,8340.0,0,4,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,955.0148609262501,0.02326297373946484,0.1145101751710132,8340.0,1,1,1_0,1_0_0,1_4_0,1_0_0 -8296,1,58.0,3,123.0,6,111,1,56,63,6.0,0.0,0.0,818.5841665082144,0.0,1350.356319269646,28105.0,71,50,2,7150,201108296,693.0,693.0,,188.0,2.0,0.0,4.0,2.0,4.0,2.5,2671.803869601529,0.0,600.0,777.0,0.0,47817.0,1,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2168.9404857778604,0.07717276234754886,0.045359192040024685,19126.8,5,3,5,5_0,5_4,5_0_0 -8297,2,43.0,2,0.0,4,111,1,63,38,10.0,0.0,0.0,491.1504999049286,0.0,0.0,55960.0,50,42,2,7151,201108297,,,,749.0,2.0,1.0,3.0,1.0,3.0,1.8,3306.617153565965,0.0,360.0,0.0,0.0,81392.0,1,1,3,50.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,491.1504999049286,0.008776813793869347,0.006034382984874786,45217.777777777774,10,5,10,10_0,10_4,10_0_1 -8298,2,73.0,2,0.0,5,111,1,0,75,10.0,0.0,0.0,518.4366387885358,0.0,104.27461924862132,28535.0,0,20,2,7154,201108298,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3025.811402111089,0.0,380.0,60.0,0.0,39870.0,0,5,1,80.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,622.7112580371571,0.02182271799674635,0.015618541711491274,39870.0,10,5,10,10_0,10_3,10_0_0 -8299,2,44.0,1,0.0,8,112,2,85,46,6.0,95.18736054833293,0.0,457.0428263004197,1720.5312176022517,0.0,46229.0,50,71,1,7156,201108299,,,,,1.0,2.0,6.0,0.0,2.0,1.5,2160.8516462996067,0.0,335.0,0.0,0.0,28704.0,7,1,2,130.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2272.761404451004,0.04916310983259435,0.07917925740144245,19136.0,5,3,5,5_1,5_0,5_0_0 -8300,1,45.0,4,285.0,2,111,4,47,55,4.0,0.0,0.0,2307.0430426089843,0.0,0.0,53413.0,50,50,1,7157,201108300,,,,,3.0,1.0,6.0,2.0,4.0,2.5,1404.7347906820305,0.0,1691.0,0.0,0.0,37325.0,1,1,3,120.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2307.0430426089843,0.04319253819498969,0.06180959256822463,14930.0,3,2,3_1,3_1_1,3_3_1,3_0_1 -8301,1,43.0,4,290.0,5,111,2,0,35,3.0,0.0,0.0,499.39709646537557,0.0,1032.241338475835,22350.0,0,20,2,7158,201108301,,,,90.0,1.0,0.0,3.0,1.0,2.0,1.3,2572.8991436724527,960.0,0.0,0.0,0.0,17951.0,0,1,3,80.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1531.6384349412106,0.06852968388998705,0.08532329312802688,13808.461538461537,3,2,3_1,3_0_1,3_3_1,3_0_0 -8302,2,56.0,2,0.0,1,112,2,77,45,8.0,2273.3914610960182,0.0,317.88351799402324,156.41192887293198,0.0,25504.0,60,60,1,7159,201108302,,,154.0,,1.0,0.0,5.0,0.0,2.0,1.5,3055.3222424529877,0.0,233.0,0.0,0.0,42155.0,5,1,1,80.0,9,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2747.6869079629737,0.10773552807257582,0.0651805695163794,28103.333333333332,8,4,8,8_1,8_0,8_1_0 -8303,2,47.0,2,0.0,7,112,5,52,48,7.0,0.0,791.1180021511608,613.9381248811608,90.37133668213848,0.0,55989.0,50,50,1,716,201108303,,,400.0,,3.0,1.0,5.0,1.0,3.0,2.0,1781.1643226502983,0.0,450.0,0.0,0.0,49269.0,1,1,2,90.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1495.42746371446,0.02670930832332172,0.030352299898809797,24634.5,7,4,7,7_1,7_0,7_0_0 -8304,2,54.0,3,0.0,6,111,2,78,55,8.0,0.0,0.0,1173.3039719951073,0.0,1645.8010738074065,21892.0,50,50,1,7160,201108304,,,235.0,,1.0,2.0,6.0,0.0,2.0,1.5,3749.234875389448,0.0,860.0,947.0,0.0,38784.0,5,1,1,102.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2819.105045802514,0.12877329827345668,0.07268732069416547,25856.0,8,4,8,8_1,8_2,8_0_0 -8305,2,73.0,3,0.0,1,400,5,78,71,2.0,0.0,610.6875806079136,918.1785734333804,166.8393907977941,0.0,18078.0,70,71,1,7161,201108305,,,123.0,,0.0,5.0,5.0,0.0,2.0,1.5,1878.137238712823,0.0,673.0,0.0,0.0,18170.0,5,5,3,95.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1695.7055448390881,0.09379939953750903,0.09332446586896467,12113.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -8306,2,20.0,3,0.0,1,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,12495.0,0,41,2,7164,201108306,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3799.8259479948497,0.0,0.0,0.0,0.0,4800.0,0,3,3,30.0,9,7.0,1,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,4800.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -8307,2,69.0,1,0.0,4,111,2,78,75,10.0,0.0,0.0,1077.6464102996279,0.0,2925.101885448578,63179.0,71,12,1,7165,201108307,,,200.0,,0.0,4.0,4.0,0.0,2.0,1.5,1312.0027280685338,498.0,600.0,1375.0,0.0,71444.0,5,5,1,92.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4002.7482957482057,0.06335567666072912,0.05602637444359506,47629.333333333336,10,5,10,10_1,10_3,10_0_1 -8308,1,55.0,3,140.0,5,111,4,85,63,2.0,0.0,0.0,1229.9573408817507,312.82385774586396,153.76094937712958,32027.0,70,71,1,7166,201108308,,,320.0,,1.0,3.0,3.0,0.0,2.0,1.5,1997.1985350224932,143.0,847.0,0.0,0.0,17884.0,6,4,2,98.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1696.5421480047444,0.05297224679191758,0.09486368530556612,11922.666666666666,2,1,2_1,2_1_1,2_2_1,2_0_0 -8309,2,46.0,2,0.0,9,400,4,56,48,6.0,0.0,0.0,4322.124399163372,0.0,0.0,37264.0,31,50,1,717,201108309,,,1008.0,,2.0,1.0,6.0,1.0,3.0,1.8,2494.357142908597,0.0,3168.0,0.0,0.0,36348.0,1,1,2,150.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4322.124399163372,0.11598659293589984,0.11890955208438901,20193.333333333332,6,3,6,6_1,6_0,6_0_0 -8310,2,61.0,3,0.0,2,111,2,0,42,7.0,0.0,0.0,136.43069441803573,0.0,2085.4923849724264,11523.0,0,60,1,7175,201108310,,,200.0,,1.0,0.0,3.0,0.0,1.0,1.0,2952.942531163851,0.0,100.0,1200.0,0.0,22838.0,0,1,1,80.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2221.923079390462,0.1928250524507908,0.09729061561390936,22838.0,7,4,7,7_1,7_3,7_0_1 -8311,2,37.0,3,0.0,8,111,2,55,67,5.0,0.0,416.377895869032,901.8068901032161,0.0,1060.1252956943167,36818.0,50,43,1,7177,201108311,,,283.0,,2.0,0.0,4.0,2.0,4.0,2.1,1820.3058480184968,0.0,661.0,610.0,0.0,39698.0,1,1,2,110.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2378.3100816665647,0.06459639528672292,0.05991007309352019,18903.809523809523,5,3,5,5_1,5_2,5_0_0 -8312,1,24.0,3,206.0,2,111,4,0,52,1.0,0.0,0.0,545.7227776721429,0.0,0.0,15498.0,0,42,2,7178,201108312,,,,314.0,1.0,0.0,1.0,0.0,1.0,1.0,4352.481866804511,0.0,400.0,0.0,0.0,5142.0,0,3,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,545.7227776721429,0.03521246468396844,0.10613045073359449,5142.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -8313,2,79.0,2,0.0,5,111,2,72,74,9.0,0.0,0.0,896.3496623264947,0.0,1922.128814816253,73902.0,60,41,1,7182,201108313,,,286.0,,0.0,1.0,5.0,0.0,2.0,1.5,2275.08418067826,0.0,657.0,1106.0,0.0,54860.0,5,5,1,140.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2818.4784771427476,0.03813805414119709,0.051375838081347935,36573.333333333336,9,5,9,9_1,9_3,9_0_0 -8314,2,36.0,1,0.0,4,112,2,33,37,8.0,0.0,416.377895869032,509.8012026417376,0.0,1053.746366360748,55356.0,20,10,2,7185,201108314,,,410.0,,2.0,0.0,6.0,2.0,4.0,2.1,1439.0933789008748,980.0,0.0,0.0,0.0,60077.0,1,1,2,95.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1979.9254648715175,0.03576713391270174,0.03295646361954687,28608.095238095237,8,4,8,8_0,8_1,8_0_1 -8315,2,31.0,3,0.0,7,111,4,0,63,7.0,0.0,0.0,990.4868414749394,0.0,0.0,16885.0,0,43,2,7186,201108315,,,,670.0,1.0,0.0,3.0,0.0,1.0,1.0,6219.802439986133,0.0,726.0,0.0,0.0,22300.0,0,1,3,60.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,990.4868414749394,0.05866075460319452,0.04441645029035603,22300.0,7,4,7,7_0,7_3,7_0_0 -8316,2,44.0,2,0.0,5,111,2,46,63,8.0,0.0,0.0,804.9410970664107,0.0,1783.0959891514244,55687.0,20,50,1,7188,201108316,,,473.0,,2.0,0.0,7.0,2.0,4.0,2.3,2144.4129661204684,0.0,590.0,1026.0,0.0,62985.0,1,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2588.037086217835,0.04647470839186588,0.041089737020208544,27384.782608695656,8,4,8,8_1,8_4,8_0_0 -8317,2,34.0,3,0.0,1,112,2,46,37,8.0,0.0,0.0,1256.8160261045286,0.0,2597.807368497518,46385.0,31,12,1,7190,201108317,,,300.0,,2.0,0.0,5.0,1.0,3.0,1.8,2702.140969137072,2416.0,0.0,0.0,0.0,49203.0,1,1,2,100.0,10,2.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3854.6233946020466,0.08310064448856412,0.07834122705123767,27335.0,8,4,8,8_1,8_1,8_1_0 -8318,2,81.0,3,0.0,1,112,1,71,71,3.0,0.0,0.0,695.7965415319821,0.0,0.0,11751.0,70,70,1,7191,201108318,,,210.0,,0.0,2.0,5.0,0.0,2.0,1.5,1403.1210270012214,0.0,510.0,0.0,0.0,19457.0,5,5,1,120.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,695.7965415319821,0.05921168764632645,0.03576073092110717,12971.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -8319,2,54.0,4,0.0,6,111,2,0,52,2.0,0.0,0.0,1620.7966496862643,0.0,1303.4327406077664,20630.0,0,71,1,7192,201108319,,,271.0,,2.0,4.0,3.0,1.0,2.0,1.5,2179.561317639443,0.0,1188.0,750.0,0.0,17780.0,0,1,2,90.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2924.229390294031,0.1417464561460994,0.164467344785941,11853.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_0 -8320,2,62.0,2,0.0,5,111,2,0,75,9.0,0.0,0.0,470.68589574222324,0.0,1687.5109215068549,50865.0,0,20,1,7193,201108320,,,203.0,,0.0,1.0,4.0,0.0,1.0,1.0,2589.6925984761847,0.0,345.0,971.0,0.0,30540.0,0,5,1,100.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2158.196817249078,0.042429899090712236,0.07066787220854871,30540.0,9,5,9,9_1,9_2,9_0_0 -8321,2,61.0,2,0.0,3,111,1,0,78,5.0,0.0,0.0,442.03544991443573,0.0,187.69431464751835,15916.0,0,71,2,7194,201108321,,,,398.0,0.0,6.0,4.0,0.0,1.0,1.0,3145.413464218062,0.0,324.0,108.0,0.0,17160.0,0,5,3,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,629.7297645619541,0.03956583089733313,0.036697538727386604,17160.0,5,3,5,5_0,5_4,5_0_1 -8322,2,52.0,3,0.0,8,221,2,0,56,3.0,0.0,0.0,274.6684030559566,0.0,567.7327361617092,40069.0,0,70,1,7195,201108322,,,,,1.0,2.0,5.0,0.0,1.0,1.0,3049.9395243032195,528.0,0.0,0.0,0.0,13382.0,0,1,2,90.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,842.4011392176658,0.021023762490146144,0.06295031678505947,13382.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -8323,2,70.0,3,0.0,8,400,2,75,35,8.0,0.0,0.0,2592.183193942679,156.41192887293198,0.0,38244.0,20,41,1,7197,201108323,,,650.0,,1.0,2.0,5.0,0.0,2.0,1.5,1294.3671008883132,0.0,1900.0,0.0,0.0,37654.0,5,5,1,150.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2748.595122815611,0.07186996974206701,0.07299609929398233,25102.666666666668,8,4,8,8_1,8_1,8_0_0 -8324,2,34.0,3,0.0,1,120,6,56,63,2.0,0.0,1040.94473967258,1427.0650636126536,291.9689338961397,0.0,29698.0,41,60,1,7199,201108324,,,50.0,,2.0,0.0,6.0,3.0,5.0,2.4,2606.9382827386044,0.0,1046.0,0.0,0.0,28158.0,1,1,1,70.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2759.9787371813736,0.09293483524753766,0.09801757003982434,11732.5,2,1,2_0,2_1_0,2_0_0,2_1_0 -8325,2,62.0,3,0.0,8,221,2,74,75,2.0,1189.8420068541616,0.0,1637.1683330164287,36.49611673701746,0.0,25160.0,50,71,1,720,201108325,,,470.0,,0.0,4.0,6.0,1.0,3.0,2.0,3265.0835547839,0.0,1200.0,0.0,0.0,19994.0,5,5,2,120.0,1,2.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2863.506456607608,0.11381186234529443,0.14321828831687547,9997.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -8326,2,43.0,3,0.0,6,300,2,21,54,5.0,3193.5359463965697,138.792631956344,690.3393137552607,104.27461924862132,0.0,46504.0,44,60,1,7200,201108326,,,272.0,,2.0,0.0,8.0,2.0,4.0,2.1,2876.2740263504897,0.0,506.0,0.0,0.0,38157.0,1,1,2,160.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4126.942511356796,0.08874381798031988,0.10815689156266992,18170.0,5,3,5,5_1,5_0,5_0_0 -8327,2,43.0,1,0.0,1,111,2,65,46,8.0,0.0,0.0,998.6726831400215,0.0,2241.904313845358,42921.0,50,31,1,7201,201108327,,,440.0,,2.0,0.0,5.0,1.0,3.0,2.0,1428.020213281429,0.0,732.0,1290.0,0.0,52138.0,1,1,1,79.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3240.5769969853795,0.07550096682242677,0.06215384166990256,26069.0,8,4,8,8_1,8_2,8_1_0 -8328,0,38.0,2,0.0,1,111,2,0,33,7.0,0.0,0.0,0.0,0.0,0.0,29588.0,0,10,1,7203,201108328,,,,,1.0,0.0,5.0,1.0,2.0,1.3,1789.4479767665384,0.0,0.0,0.0,0.0,28145.0,0,1,5,138.0,9,7.0,2,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,21650.0,6,3,6,6_1,6_3,6_1_0 -8329,2,71.0,3,0.0,3,111,2,0,78,5.0,0.0,0.0,380.6416374263197,0.0,677.7850251160386,10928.0,0,70,2,7204,201108329,,,,,0.0,1.0,2.0,0.0,1.0,1.0,1895.9004154338231,0.0,279.0,390.0,0.0,16814.0,0,5,1,45.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1058.4266625423584,0.09685456282415432,0.06294912944821925,16814.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -8330,2,83.0,2,0.0,1,111,2,0,78,5.0,0.0,0.0,1195.132883101993,0.0,1459.8446694806985,13867.0,0,70,1,7206,201108330,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3192.338561113854,0.0,876.0,840.0,0.0,17125.0,0,5,1,75.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2654.9775525826917,0.19146012494286377,0.15503518555227397,17125.0,5,3,5,5_1,5_3,5_1_0 -8331,2,51.0,1,0.0,10,300,6,52,31,10.0,0.0,485.77421184720396,2312.3441947828514,0.0,535.4751943343393,153128.0,10,10,1,7208,201108331,,,459.0,,2.0,0.0,6.0,2.0,4.0,2.5,2177.060927259339,498.0,1505.0,0.0,0.0,226126.0,1,1,2,180.0,0,0.0,4,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3333.5936009643947,0.021769980676064435,0.014742195063656522,90450.4,10,5,10,10_1,10_0,10_0_0 -8332,2,84.0,3,0.0,2,111,6,0,77,4.0,5393.9504310721995,0.0,422.93515269591074,173.79103208103552,0.0,20595.0,0,50,2,7209,201108332,,,110.0,,0.0,5.0,4.0,0.0,2.0,1.5,3241.922905928545,0.0,310.0,0.0,0.0,23557.0,0,5,1,100.0,8,6.0,5,7,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,5990.6766158491455,0.2908801464359867,0.25430558287766464,15704.666666666666,4,2,4_0,4_0_0,4_2_0,4_0_1 -8333,2,53.0,3,0.0,2,400,5,0,69,3.0,0.0,69.396315978172,323.34074577074466,104.27461924862132,0.0,14887.0,0,71,1,7214,201108333,,,230.0,,1.0,0.0,5.0,0.0,2.0,1.5,3362.353946926444,0.0,237.0,0.0,0.0,19142.0,0,1,1,71.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,497.01168099753795,0.033385617048266134,0.02596445935626047,12761.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_1 -8334,1,62.0,3,232.0,3,111,1,0,72,2.0,0.0,0.0,223.74633884557858,0.0,99.06088828619025,9995.0,0,50,2,7215,201108334,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3892.758402994654,0.0,164.0,57.0,0.0,11564.0,0,5,3,32.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,322.80722713176885,0.03229687114875126,0.02791484150222837,11564.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -8335,2,34.0,3,0.0,9,112,5,43,53,8.0,0.0,416.377895869032,1028.6874359119893,173.79103208103552,0.0,48750.0,33,42,1,7216,201108335,,,130.0,,2.0,0.0,5.0,2.0,4.0,2.1,2254.9344026791305,0.0,754.0,0.0,0.0,54262.0,1,1,2,130.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1618.856363862057,0.03320731002793963,0.029834071060079927,25839.04761904762,8,4,8,8_1,8_1,8_0_0 -8336,0,53.0,4,0.0,99,112,6,64,22,1.0,485.45553879649793,0.0,1337.02080529675,139.0328256648284,0.0,15676.0,60,50,7,7219,201108336,,,250.0,,2.0,3.0,2.0,0.0,2.0,1.5,5872.683849392527,0.0,980.0,0.0,0.0,11873.0,4,1,5,30.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1961.5091697580763,0.12512816852245956,0.16520754398703583,7915.333333333333,1,1,1_0,1_1_0,1_0_0,1_0_0 -8337,2,71.0,3,0.0,7,221,6,78,78,4.0,0.0,0.0,474.77881657476433,135.55700502320772,0.0,14471.0,71,71,2,722,201108337,,,160.0,,0.0,3.0,3.0,0.0,2.0,1.5,5995.367005293699,0.0,348.0,0.0,0.0,23399.0,5,5,1,70.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,610.3358215979721,0.04217647858461558,0.026083842112824142,15599.333333333334,4,2,4_0,4_0_0,4_1_0,4_0_0 -8338,2,50.0,2,0.0,2,221,4,45,67,7.0,0.0,283.1369691909417,2005.531207945125,340.6304228788296,0.0,33901.0,42,71,1,7220,201108338,,,371.0,,2.0,0.0,3.0,0.0,2.0,1.5,1521.38581510379,0.0,1470.0,0.0,0.0,32974.0,1,1,1,100.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2629.2986000148962,0.07755814282808461,0.0797385394557802,21982.666666666668,7,4,7,7_1,7_1,7_0_1 -8339,2,64.0,3,0.0,6,221,5,85,78,4.0,634.5824036555529,527.4120014341072,559.3658471139465,151.1981979105009,0.0,20368.0,71,50,1,7221,201108339,,,348.0,,0.0,2.0,5.0,0.0,2.0,1.5,2296.748374815479,0.0,410.0,0.0,0.0,23700.0,6,5,1,74.0,1,3.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1872.5584501141077,0.09193629468352846,0.0790109050681058,15800.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -8340,2,71.0,2,0.0,8,120,2,77,75,5.0,1905.3336669757975,0.0,589.3805998859143,100.7987986070006,0.0,44869.0,70,43,1,7223,201108340,,,113.0,,0.0,4.0,4.0,0.0,2.0,1.5,1676.2339216896685,0.0,432.0,0.0,0.0,26880.0,5,5,1,100.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2595.5130654687123,0.0578464656103036,0.09655926582844912,17920.0,5,3,5,5_1,5_0,5_0_0 -8341,2,56.0,1,0.0,6,112,4,0,37,10.0,0.0,0.0,2455.752499524643,0.0,0.0,25615.0,0,41,1,7224,201108341,,,,,1.0,3.0,5.0,0.0,1.0,1.0,2105.8067833795167,0.0,1800.0,0.0,0.0,68767.0,0,1,1,150.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2455.752499524643,0.09587165721353282,0.035711205949432764,68767.0,10,5,10,10_1,10_0,10_0_0 -8342,2,51.0,2,0.0,8,112,6,77,38,10.0,0.0,0.0,1764.0488788252019,0.0,0.0,37716.0,50,10,1,7227,201108342,,,280.0,,1.0,1.0,4.0,0.0,2.0,1.5,1224.6323762391567,0.0,1293.0,0.0,0.0,78774.0,5,1,3,122.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1764.0488788252019,0.04677189730685125,0.022393795907598976,52516.0,10,5,10,10_1,10_1,10_0_0 -8343,2,55.0,2,0.0,1,400,2,56,21,9.0,2379.684013708323,0.0,1727.2125913323323,0.0,0.0,70974.0,50,50,1,7228,201108343,,,,,2.0,3.0,6.0,0.0,2.0,1.5,2178.076386073167,0.0,1266.0,0.0,0.0,51778.0,1,1,1,133.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4106.896605040655,0.05786480408375821,0.07931740517286599,34518.666666666664,9,5,9,9_1,9_0,9_1_0 -8344,2,32.0,2,0.0,1,300,2,54,64,4.0,2151.234348392324,0.0,927.728722042643,0.0,0.0,36867.0,50,50,1,7229,201108344,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1442.158382617037,0.0,680.0,0.0,0.0,26810.0,1,1,3,86.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3078.963070434967,0.08351542220508766,0.11484382955744002,14894.444444444443,3,2,3_0,3_1_0,3_0_0,3_1_0 -8345,2,80.0,2,0.0,2,111,1,0,72,9.0,4537.264186137203,0.0,744.9115915224751,0.0,0.0,28880.0,0,41,1,7230,201108345,2860.0,2860.0,960.0,,0.0,2.0,6.0,0.0,1.0,1.0,4816.122873436129,0.0,546.0,0.0,0.0,32236.0,0,5,1,130.0,7,5.0,1,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,5282.175777659678,0.18290082332616614,0.16385952902530332,32236.0,9,5,9,9_1,9_2,9_0_1 -8346,2,31.0,2,0.0,4,111,2,42,34,7.0,0.0,0.0,654.8673332065715,0.0,1998.5968689319086,56004.0,20,10,1,7231,201108346,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.1,2146.3557078272447,0.0,480.0,1150.0,0.0,48495.0,1,1,2,110.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2653.4642021384802,0.047379905044969646,0.0547162429557373,23092.85714285714,7,4,7,7_1,7_3,7_0_1 -8347,2,61.0,3,0.0,2,111,1,0,63,3.0,0.0,0.0,450.22129157951787,0.0,0.0,10984.0,0,71,2,7232,201108347,,,,230.0,1.0,5.0,1.0,0.0,1.0,1.0,3145.3548365246907,0.0,330.0,0.0,0.0,12410.0,0,1,3,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,450.22129157951787,0.04098882843950454,0.03627891148908283,12410.0,2,1,2_0,2_0_0,2_4_0,2_0_1 -8348,2,82.0,3,0.0,5,300,2,0,75,10.0,2221.038412794435,0.0,732.6328290248518,104.27461924862132,0.0,13335.0,0,33,1,7234,201108348,,,220.0,,0.0,0.0,5.0,0.0,1.0,1.0,2509.7222147114962,0.0,537.0,0.0,0.0,64900.0,0,5,3,100.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3057.9458610679076,0.22931727492072798,0.047117809877779776,64900.0,10,5,10,10_1,10_0,10_0_0 -8349,2,48.0,3,0.0,6,112,4,56,46,5.0,0.0,0.0,2034.1816537729126,0.0,0.0,48157.0,50,31,2,7235,201108349,,,,,2.0,0.0,5.0,3.0,5.0,2.8,1561.595683165221,0.0,1491.0,0.0,0.0,49651.0,1,1,2,110.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2034.1816537729126,0.04224062241777753,0.04096960088966813,17732.5,5,3,5,5_0,5_1,5_0_0 -8350,0,44.0,3,0.0,99,111,2,56,68,7.0,0.0,0.0,0.0,0.0,0.0,42269.0,70,42,2,7236,201108350,,,,,2.0,0.0,2.0,1.0,3.0,1.8,3193.3833650138936,0.0,0.0,0.0,0.0,38950.0,1,1,5,60.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,21638.888888888887,6,3,6,6_0,6_4,6_0_0 -8351,1,81.0,3,55.0,2,221,1,0,75,4.0,0.0,0.0,538.9012429512411,0.0,1147.0208117348345,11234.0,0,71,2,7237,201108351,660.0,660.0,200.0,221.0,0.0,2.0,4.0,0.0,1.0,1.0,3086.802163068808,0.0,395.0,660.0,0.0,15024.0,0,5,3,84.0,1,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1685.9220546860756,0.15007317559961506,0.11221525923096883,15024.0,4,2,4_1,4_0_1,4_1_1,4_0_1 -8352,1,55.0,4,363.0,8,111,2,63,43,2.0,0.0,0.0,654.8673332065715,0.0,608.2686122836243,23494.0,60,70,2,7238,201108352,,,470.0,,3.0,1.0,3.0,1.0,3.0,2.0,3016.388327523449,0.0,480.0,350.0,0.0,20541.0,4,4,3,60.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1263.1359454901958,0.05376419279348752,0.06149340078332096,10270.5,2,1,2_1,2_0_1,2_2_1,2_0_0 -8353,2,54.0,3,0.0,99,111,1,56,63,3.0,0.0,0.0,418.24506828975206,0.0,864.5021209735118,28686.0,71,71,2,7239,201108353,,,,388.0,3.0,0.0,4.0,3.0,5.0,3.0,3620.098318384342,804.0,0.0,0.0,0.0,38788.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1282.7471892632639,0.044716837107413504,0.033070722627185314,12929.333333333334,3,2,3_0,3_0_0,3_4_0,3_0_0 -8354,0,39.0,3,0.0,2,111,2,56,53,6.0,0.0,0.0,346.53396382181074,0.0,251.99699651750151,31212.0,31,50,1,724,201108354,,,270.0,,2.0,0.0,6.0,1.0,3.0,1.8,1977.904380580814,0.0,254.0,145.0,0.0,35086.0,1,1,5,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,598.5309603393123,0.01917630912275126,0.017058968259115098,19492.222222222223,6,3,6,6_1,6_3,6_0_1 -8355,1,31.0,5,150.0,5,111,1,85,54,1.0,0.0,0.0,272.86138883607146,0.0,312.82385774586396,37456.0,71,50,2,7240,201108355,,,450.0,200.0,1.0,0.0,3.0,3.0,5.0,2.4,2796.2532265645773,0.0,200.0,180.0,0.0,18250.0,6,1,3,70.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,585.6852465819354,0.01563662020989789,0.032092342278462214,7604.166666666667,1,1,1_1,1_0_1,1_2_1,1_0_0 -8356,2,30.0,2,0.0,2,111,1,35,35,5.0,0.0,0.0,545.7227776721429,0.0,225.92834170534618,51998.0,20,10,2,7241,201108356,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3461.5237080733446,0.0,400.0,130.0,0.0,32190.0,1,1,2,67.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,771.6511193774891,0.014840015373235298,0.023971765125116156,17883.333333333332,5,3,5,5_0,5_4,5_0_1 -8357,2,46.0,3,0.0,7,111,2,0,37,5.0,0.0,0.0,491.1504999049286,0.0,625.6477154917279,24444.0,0,31,2,7243,201108357,,,,500.0,1.0,1.0,3.0,1.0,2.0,1.5,3102.102850978492,0.0,360.0,360.0,0.0,26361.0,0,1,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1116.7982153966566,0.045688030412234355,0.0423655481733112,17574.0,5,3,5,5_0,5_4,5_0_0 -8358,2,48.0,1,0.0,8,111,2,0,43,10.0,0.0,0.0,2103.761307926111,0.0,0.0,72206.0,0,33,2,7244,201108358,,,,,1.0,3.0,3.0,0.0,1.0,1.0,2971.0742728139558,0.0,1542.0,0.0,0.0,107264.0,0,1,2,58.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2103.761307926111,0.02913554701723002,0.01961292985462141,107264.0,10,5,10,10_0,10_2,10_0_0 -8359,2,51.0,1,0.0,9,111,2,34,23,10.0,0.0,0.0,1637.1683330164287,0.0,3430.634973279641,103059.0,10,20,1,7245,201108359,,,,,2.0,2.0,7.0,2.0,4.0,2.1,2272.7659809828865,0.0,1200.0,1974.0,0.0,152697.0,1,1,2,270.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5067.803306296069,0.04917380632740537,0.033188623917274535,72712.85714285714,10,5,10,10_1,10_3,10_0_0 -8360,2,38.0,2,0.0,4,111,2,43,53,9.0,1903.7472109666587,0.0,1773.5990274344645,0.0,0.0,70306.0,33,50,1,7246,201108360,,,,,2.0,0.0,4.0,3.0,5.0,2.4,1645.386230803698,0.0,1300.0,0.0,0.0,70444.0,1,1,3,130.0,6,5.0,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3677.346238401123,0.052304870685305996,0.0522024052921629,29351.666666666668,9,5,9,9_1,9_2,9_0_1 -8361,2,81.0,2,0.0,1,400,3,78,75,4.0,0.0,666.2046333904511,2195.1698731861948,0.0,0.0,24925.0,60,70,1,7247,201108361,,,298.0,,0.0,2.0,3.0,0.0,2.0,1.5,2153.0686816427888,0.0,1609.0,0.0,0.0,23814.0,5,5,1,60.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2861.374506576646,0.11479937839826063,0.12015514010987847,15876.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -8362,2,54.0,2,0.0,4,111,1,52,45,9.0,0.0,0.0,52.02053088180996,0.0,107.52513942456613,29261.0,71,60,2,7249,201108362,,,,387.0,2.0,1.0,3.0,0.0,2.0,1.5,3045.2628304380983,100.0,0.0,0.0,0.0,44949.0,1,1,3,75.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,159.5456703063761,0.005452502317295243,0.0035494820865063985,29966.0,9,5,9,9_0,9_4,9_0_1 -8363,1,38.0,3,95.0,7,221,5,85,48,3.0,1237.435687128328,971.5484236944079,709.4396109737858,156.41192887293198,0.0,30502.0,60,60,1,725,201108363,,,,,1.0,0.0,5.0,4.0,6.0,2.9,1728.613623409892,0.0,520.0,0.0,0.0,39002.0,6,1,3,131.0,1,3.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,3074.835650669454,0.1008076732892746,0.078837896791689,13448.96551724138,3,2,3_1,3_1_1,3_1_1,3_0_0 -8364,1,41.0,4,230.0,4,111,1,68,63,2.0,0.0,0.0,998.7941929307511,0.0,2064.48267695167,55655.0,71,71,2,7250,201108364,,,,520.0,2.0,1.0,5.0,4.0,6.0,3.3,3098.159596481886,1920.0,0.0,0.0,0.0,33900.0,1,4,3,110.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,3063.276869882421,0.0550404612322778,0.09036214955405372,10272.727272727274,2,1,2_1,2_0_1,2_3_1,2_0_1 -8365,2,54.0,2,0.0,3,111,1,34,37,10.0,0.0,0.0,654.8673332065715,0.0,133.81909470239736,35706.0,20,41,2,7251,201108365,,,,434.0,2.0,0.0,4.0,0.0,2.0,1.5,1359.6900687273576,0.0,480.0,77.0,0.0,69969.0,1,1,3,90.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,788.6864279089689,0.02208834447736988,0.011271940829638396,46646.0,10,5,10,10_0,10_2,10_0_1 -8366,2,72.0,3,0.0,3,112,2,0,77,5.0,0.0,0.0,1152.8393678324019,0.0,2055.9479095186502,22892.0,0,50,1,7252,201108366,,,370.0,,0.0,3.0,5.0,0.0,1.0,1.0,1263.3784517007216,0.0,845.0,1183.0,0.0,18651.0,0,5,1,100.0,10,1.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3208.787277351052,0.14017068309239264,0.1720437122594527,18651.0,5,3,5,5_1,5_1,5_0_1 -8367,2,38.0,3,0.0,8,111,2,56,69,9.0,0.0,0.0,845.8703053918215,0.0,1598.8774951455268,74436.0,31,60,1,7253,201108367,,,235.0,,2.0,0.0,6.0,2.0,4.0,2.3,2922.535610441695,0.0,620.0,920.0,0.0,78809.0,1,1,2,135.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2444.747800537348,0.03284362137322463,0.03102117525330036,34264.782608695656,9,5,9,9_1,9_2,9_0_0 -8369,0,45.0,3,0.0,1,111,5,85,65,2.0,0.0,319.2230534995912,955.0148609262501,135.55700502320772,0.0,29734.0,42,44,1,726,201108369,,,,,1.0,0.0,5.0,3.0,5.0,2.4,2816.5124486514683,0.0,700.0,0.0,0.0,26481.0,6,1,5,70.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1409.7949194490488,0.04741356425133009,0.05323797890748268,11033.75,2,1,2_0,2_1_0,2_2_0,2_1_0 -8370,1,27.0,3,105.0,5,400,2,56,64,4.0,0.0,0.0,1023.230208135268,156.41192887293198,0.0,24746.0,42,60,1,7260,201108370,,,,,2.0,0.0,3.0,1.0,3.0,1.8,6788.157526634842,0.0,750.0,0.0,0.0,27667.0,1,1,3,80.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1179.6421370081998,0.0476700128104825,0.04263715390205659,15370.555555555555,4,2,4_1,4_1_1,4_1_1,4_0_0 -8372,0,43.0,2,0.0,1,111,1,0,22,4.0,0.0,0.0,0.0,0.0,0.0,17738.0,0,50,8,7264,201108372,,,,,1.0,2.0,3.0,0.0,1.0,1.0,4222.198475345232,0.0,0.0,0.0,0.0,16595.0,0,1,5,50.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,16595.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -8373,2,61.0,3,0.0,3,111,1,68,78,5.0,0.0,0.0,439.44454918623944,0.0,166.66396610807752,23282.0,71,71,2,7265,201108373,,,,,1.0,1.0,3.0,0.0,2.0,1.5,3668.187353359903,155.0,263.0,0.0,0.0,27797.0,1,5,1,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,606.1085152943169,0.02603335260262507,0.02180481761680458,18531.333333333332,5,3,5,5_0,5_4,5_0_1 -8374,2,43.0,3,0.0,4,112,4,47,54,8.0,0.0,0.0,2455.752499524643,250.25908619669116,0.0,30585.0,41,41,1,7266,201108374,,,350.0,,2.0,0.0,4.0,1.0,3.0,1.8,2078.6044212237284,0.0,1800.0,0.0,0.0,50919.0,1,1,3,90.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2706.011585721334,0.08847512132487605,0.05314345501131865,28288.333333333332,8,4,8,8_1,8_0,8_0_1 -8375,2,33.0,3,0.0,3,400,4,84,63,5.0,0.0,0.0,1506.1948663751143,208.54923849724264,0.0,40726.0,41,43,1,7268,201108375,,,259.0,,1.0,0.0,4.0,3.0,5.0,2.4,2214.892521442319,0.0,1104.0,0.0,0.0,45095.0,3,1,3,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1714.744104872357,0.042104407623443425,0.03802514923766176,18789.583333333336,5,3,5,5_1,5_0,5_0_1 -8376,2,60.0,2,0.0,1,300,2,0,71,10.0,0.0,0.0,892.276723241585,359.7474364077435,194.6205023584647,45307.0,0,50,1,727,201108376,,,,,0.0,2.0,6.0,0.0,1.0,1.0,1526.749954254639,181.0,585.0,0.0,0.0,38609.0,0,5,1,180.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1446.6446620077932,0.031929826781905514,0.037469104664917326,38609.0,10,5,10,10_1,10_0,10_1_0 -8377,2,42.0,4,0.0,1,112,5,0,11,1.0,0.0,138.792631956344,1173.3039719951073,97.32297796537989,0.0,21912.0,0,50,1,7270,201108377,,,,,1.0,0.0,2.0,2.0,3.0,1.6,3118.2813598468715,0.0,860.0,0.0,0.0,5187.0,0,1,1,30.0,7,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1409.4195819168312,0.0643218137055874,0.27172153111949704,3241.875,1,1,1_0,1_1_0,1_0_0,1_1_0 -8378,2,47.0,2,0.0,1,300,2,42,42,7.0,1554.7268889561046,0.0,1266.029183845627,243.30744491344973,783.8582664050872,46463.0,31,20,1,7274,201108378,,,314.0,,2.0,0.0,8.0,2.0,4.0,2.5,765.8604934082042,729.0,650.0,0.0,0.0,60274.0,1,1,2,150.0,0,0.0,4,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3847.9217841202685,0.08281690343112301,0.06384049149086286,24109.6,7,4,7,7_1,7_0,7_1_0 -8379,2,46.0,3,0.0,1,111,1,63,52,4.0,0.0,0.0,613.9381248811608,0.0,868.9551604051776,52282.0,50,42,1,7275,201108379,,,310.0,,2.0,0.0,8.0,3.0,5.0,2.8,1652.9861506610637,0.0,450.0,500.0,0.0,43872.0,1,1,1,110.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1482.8932852863384,0.02836336186998084,0.03380044869817511,15668.57142857143,4,2,4_0,4_1_0,4_3_0,4_1_0 -8380,2,50.0,1,0.0,1,111,2,34,38,10.0,0.0,0.0,895.820950506724,0.0,1940.1814128945787,55357.0,10,12,2,7277,201108380,,,,,2.0,0.0,1.0,0.0,2.0,1.5,2696.783530997073,673.0,400.0,700.0,0.0,152693.0,1,1,2,75.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2836.002363401303,0.05123114264503681,0.01857323101518277,101795.33333333333,10,5,10,10_0,10_4,10_1_0 -8381,2,91.0,1,0.0,6,111,2,0,75,4.0,2585.923294896378,0.0,1173.3039719951073,0.0,0.0,26993.0,0,70,1,7278,201108381,,,208.0,,0.0,0.0,6.0,0.0,1.0,1.0,1858.4844212298897,0.0,860.0,0.0,0.0,16296.0,0,5,1,141.0,8,7.0,1,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3759.2272668914857,0.13926674570783112,0.23068404926923697,16296.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -8382,2,38.0,3,0.0,2,111,1,0,43,7.0,0.0,0.0,712.1682248621465,0.0,104.27461924862132,32248.0,0,20,2,7279,201108382,,,,460.0,1.0,0.0,2.0,0.0,1.0,1.0,2758.001412235378,0.0,522.0,60.0,0.0,24145.0,0,1,3,70.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,816.4428441107679,0.025317627267141152,0.03381415796689865,24145.0,7,4,7,7_0,7_2,7_0_1 -8383,2,36.0,3,0.0,2,112,1,54,52,7.0,0.0,0.0,627.5811943229643,0.0,0.0,24169.0,42,10,2,7281,201108383,,,,638.0,2.0,0.0,3.0,0.0,2.0,1.5,2412.8431963588505,0.0,460.0,0.0,0.0,33853.0,1,1,3,65.0,10,5.0,3,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,627.5811943229643,0.0259663699086832,0.018538421833307662,22568.666666666668,7,4,7,7_0,7_2,7_0_1 -8384,2,78.0,3,0.0,4,111,2,75,74,9.0,0.0,0.0,618.0310457137018,0.0,2274.924609940755,50021.0,41,70,1,7282,201108384,,,,,0.0,0.0,6.0,0.0,2.0,1.5,1299.363105706193,0.0,453.0,1309.0,0.0,44500.0,5,5,1,82.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2892.9556556544567,0.05783482248764432,0.06501023945290914,29666.666666666668,9,5,9,9_1,9_3,9_0_1 -8385,2,52.0,1,0.0,1,111,2,0,33,10.0,0.0,0.0,2223.8203190139825,0.0,3510.5788480369174,64318.0,0,10,1,7283,201108385,,,370.0,,1.0,3.0,9.0,1.0,2.0,1.3,2811.4845952699548,0.0,1630.0,2020.0,0.0,69487.0,0,1,1,230.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,5734.3991670509,0.08915698820005132,0.08252477682229627,53451.53846153846,10,5,10,10_1,10_3,10_1_0 -8386,2,71.0,2,0.0,4,112,2,74,75,8.0,0.0,416.377895869032,570.2803026673894,302.3963958210018,0.0,47959.0,43,41,1,7285,201108386,,,205.0,,0.0,2.0,5.0,0.0,2.0,1.5,1496.820621933901,0.0,418.0,0.0,0.0,41166.0,5,5,1,160.0,4,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1289.0545943574232,0.026878262565053965,0.03131357417182683,27444.0,8,4,8,8_1,8_0,8_0_1 -8387,2,82.0,3,0.0,4,111,1,0,77,6.0,0.0,0.0,450.22129157951787,0.0,387.55400154070924,12894.0,0,70,1,7287,201108387,,,,460.0,0.0,4.0,5.0,0.0,1.0,1.0,3951.0891817548504,0.0,330.0,223.0,0.0,21281.0,0,5,3,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,837.7752931202272,0.06497404165660207,0.03936728974767291,21281.0,6,3,6,6_1,6_4,6_0_1 -8388,2,59.0,3,0.0,8,111,2,77,37,9.0,0.0,69.396315978172,1443.8813434076212,0.0,3195.450734700161,38811.0,42,41,1,7289,201108388,,,307.0,,2.0,2.0,6.0,1.0,3.0,2.0,1649.800772925569,1501.0,486.0,910.0,0.0,68706.0,6,1,1,120.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4708.728394085954,0.12132458308433058,0.06853445687546873,34353.0,9,5,9,9_1,9_2,9_0_0 -8389,2,51.0,3,0.0,6,111,2,43,48,10.0,0.0,0.0,1773.5990274344645,0.0,0.0,27317.0,20,50,1,729,201108389,,,1000.0,,3.0,0.0,3.0,1.0,3.0,2.0,1238.0942445584178,0.0,1300.0,0.0,0.0,81116.0,1,1,1,151.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1773.5990274344645,0.06492656687903008,0.021864971490636428,40558.0,10,5,10,10_1,10_4,10_0_0 -8390,2,75.0,3,0.0,7,111,2,0,77,7.0,0.0,0.0,654.8673332065715,0.0,0.0,17940.0,0,71,2,7296,201108390,,,,346.0,0.0,3.0,2.0,0.0,1.0,1.0,3823.879275515305,0.0,480.0,0.0,0.0,24001.0,0,5,3,49.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,654.8673332065715,0.03650319583091257,0.02728500200852346,24001.0,7,4,7,7_0,7_4,7_0_0 -8391,2,66.0,3,0.0,4,111,7,77,74,6.0,0.0,0.0,605.7522832160786,0.0,1372.9491534401807,30036.0,60,60,1,7298,201108391,,,387.0,,0.0,1.0,4.0,0.0,2.0,1.5,3823.540154066181,0.0,444.0,790.0,0.0,32265.0,5,5,1,84.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1978.7014366562594,0.06587766136157476,0.06132655932608893,21510.0,6,3,6,6_1,6_4,6_0_1 -8392,2,65.0,3,0.0,1,111,2,78,75,9.0,3458.4740999227633,0.0,545.7227776721429,0.0,0.0,25455.0,70,60,1,73,201108392,,,200.0,,0.0,1.0,5.0,0.0,2.0,1.5,1596.7801537806824,0.0,400.0,0.0,0.0,46792.0,5,5,1,100.0,8,7.0,3,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4004.1968775949063,0.15730492546041666,0.08557439044270188,31194.666666666668,9,5,9,9_1,9_3,9_1_0 -8393,1,23.0,4,214.0,5,111,2,0,84,1.0,0.0,0.0,163.71683330164288,0.0,281.54147197127753,9194.0,0,20,2,7300,201108393,,,,58.0,0.0,0.0,1.0,0.0,1.0,1.0,3374.006914384333,0.0,120.0,162.0,0.0,5871.0,0,3,3,34.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,445.25830527292044,0.0484292261554188,0.07584028364382907,5871.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -8394,1,22.0,3,116.0,1,211,2,69,63,3.0,0.0,0.0,409.2920832541072,0.0,1028.8429099197303,35946.0,42,43,1,7302,201108394,,,186.0,,2.0,0.0,3.0,0.0,2.0,1.5,1969.8876314169513,0.0,300.0,592.0,0.0,18841.0,4,1,3,60.0,3,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1438.1349931738375,0.04000820656467583,0.07633007765903282,12560.666666666666,2,1,2_1,2_1_1,2_2_1,2_1_0 -8395,1,45.0,3,310.0,5,111,4,55,63,3.0,237.96840137083234,0.0,2455.752499524643,215.50087978048404,0.0,63135.0,60,60,1,7303,201108395,,,600.0,164.0,2.0,0.0,6.0,4.0,6.0,3.1,1254.289985836134,0.0,1800.0,0.0,0.0,40111.0,4,1,3,85.0,9,7.0,4,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2909.2217806759595,0.04607938197000015,0.07252927577661887,12939.032258064515,3,2,3_1,3_1_1,3_3_1,3_0_0 -8396,2,59.0,2,0.0,5,111,2,74,34,10.0,2538.3296146222115,346.98157989085996,613.9381248811608,0.0,0.0,56016.0,50,20,1,7304,201108396,,,,,1.0,2.0,7.0,0.0,2.0,1.5,904.3940107623278,0.0,450.0,0.0,0.0,77296.0,5,1,1,120.0,6,4.0,3,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3499.249319394232,0.06246874677581819,0.04527076846659894,51530.666666666664,10,5,10,10_1,10_2,10_0_0 -8397,2,53.0,4,0.0,2,111,1,53,62,2.0,0.0,0.0,693.0679276436215,0.0,0.0,50445.0,50,50,2,7306,201108397,,,,279.0,2.0,2.0,3.0,0.0,2.0,1.5,1505.600205908727,0.0,508.0,0.0,0.0,18152.0,1,4,3,78.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,693.0679276436215,0.013739080734336832,0.03818135344004085,12101.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_1 -8398,2,24.0,3,0.0,1,112,5,52,48,7.0,0.0,499.65347504283835,1500.737638598393,43.44775802025888,0.0,32310.0,41,50,1,7307,201108398,,,140.0,,2.0,0.0,4.0,0.0,2.0,1.5,2780.5914344325006,0.0,1100.0,0.0,0.0,35220.0,1,1,2,60.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2043.8388716614902,0.06325716099230858,0.05803063235836145,23480.0,7,4,7,7_1,7_0,7_1_0 -8399,2,45.0,1,0.0,2,111,2,38,34,9.0,0.0,0.0,845.8703053918215,0.0,1320.81184381587,46093.0,31,31,1,7308,201108399,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.3,2148.9157703105143,0.0,620.0,760.0,0.0,74363.0,1,1,1,145.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2166.6821492076915,0.04700675046553037,0.02913656185478923,32331.739130434784,9,5,9,9_1,9_3,9_0_1 -8400,2,76.0,3,0.0,7,111,4,72,72,3.0,0.0,277.585263912688,1297.4559039155197,166.8393907977941,0.0,15203.0,50,60,1,7309,201108400,,,235.0,,0.0,1.0,3.0,0.0,2.0,1.5,2945.252857553729,0.0,951.0,0.0,0.0,19680.0,5,5,1,90.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1741.8805586260016,0.11457479172702767,0.08851019098709358,13120.0,3,2,3_0,3_1_0,3_3_0,3_0_0 -8401,2,38.0,4,0.0,1,111,2,52,37,5.0,0.0,545.4550435884319,489.7861929607483,0.0,1617.9945086744408,43689.0,20,10,1,7310,201108401,,,1402.0,,2.0,0.0,4.0,3.0,5.0,2.4,1031.1320074436414,0.0,359.0,931.0,0.0,42146.0,4,1,2,120.0,4,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2653.235745223621,0.06073006352225093,0.06295344149441515,17560.833333333336,5,3,5,5_1,5_2,5_1_0 -8402,2,62.0,3,0.0,7,111,2,55,56,3.0,0.0,0.0,613.9381248811608,0.0,1193.944390396714,42963.0,60,50,1,7311,201108402,,,,,2.0,3.0,4.0,0.0,2.0,1.5,1513.3084439091576,0.0,450.0,687.0,0.0,21898.0,4,1,3,90.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1807.8825152778747,0.042079987786650716,0.08255925268416635,14598.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0 -8403,2,58.0,3,0.0,2,111,1,0,52,6.0,0.0,0.0,409.2920832541072,0.0,0.0,48593.0,0,50,2,7313,201108403,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2717.9621370329282,0.0,300.0,0.0,0.0,21157.0,0,1,1,100.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,409.2920832541072,0.008422860972858378,0.01934546879302865,21157.0,6,3,6,6_0,6_3,6_0_1 -8404,1,33.0,3,148.0,99,111,4,0,46,9.0,0.0,0.0,341.0767360450893,0.0,0.0,18747.0,0,31,2,7314,201108404,,,,352.0,1.0,0.0,1.0,0.0,1.0,1.0,7343.001803440882,0.0,250.0,0.0,0.0,30208.0,0,1,3,40.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,341.0767360450893,0.018193670242976974,0.01129094067945873,30208.0,9,5,9,9_0,9_3,9_0_0 -8405,2,63.0,2,0.0,1,400,2,74,74,5.0,0.0,416.377895869032,927.728722042643,3050.0326130221733,0.0,25119.0,60,60,1,7316,201108405,,,231.0,,0.0,2.0,7.0,0.0,2.0,1.5,2425.5495308341156,0.0,680.0,0.0,0.0,27061.0,5,5,1,250.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4394.139230933848,0.17493288868720283,0.16237904108990237,18040.666666666668,5,3,5,5_1,5_0,5_1_0 -8406,1,57.0,4,205.0,1,120,5,0,62,3.0,0.0,208.188947934516,436.5782221377143,50.3993993035003,0.0,5015.0,0,50,1,7317,201108406,,,60.0,81.0,1.0,1.0,3.0,0.0,1.0,1.0,1762.328906695724,0.0,320.0,0.0,0.0,12730.0,0,4,3,65.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,695.1665693757307,0.1386174614906741,0.05460852862338811,12730.0,3,2,3_1,3_1_1,3_0_1,3_1_0 -8407,2,34.0,3,0.0,1,112,2,54,47,8.0,2221.038412794435,0.0,573.00891655575,0.0,0.0,31010.0,31,31,1,7318,201108407,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2303.2911715948558,0.0,420.0,0.0,0.0,53641.0,1,1,2,94.0,10,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2794.047329350185,0.0901014940132275,0.05208790532149261,25543.333333333332,8,4,8,8_1,8_0,8_1_0 -8408,1,37.0,3,152.0,1,111,2,0,46,5.0,0.0,0.0,327.43366660328576,0.0,938.4715732375919,8678.0,0,43,2,7319,201108408,,,,186.0,1.0,0.0,3.0,0.0,1.0,1.0,2447.395062778092,0.0,240.0,540.0,0.0,17424.0,0,1,3,65.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1265.9052398408776,0.1458752292971742,0.07265296371905863,17424.0,5,3,5,5_0,5_2,5_1_0 -8409,2,80.0,3,0.0,2,111,2,0,77,2.0,0.0,0.0,327.43366660328576,0.0,2780.6565132965684,11683.0,0,70,1,7321,201108409,,,170.0,,0.0,2.0,6.0,0.0,1.0,1.0,2212.4441232594763,0.0,240.0,1600.0,0.0,11823.0,0,5,1,150.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3108.0901798998543,0.26603528031326323,0.2628850697707734,11823.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -8410,1,44.0,2,140.0,1,112,2,85,62,5.0,0.0,0.0,736.610717286429,69.5164128324142,1522.5559742518567,24738.0,50,71,1,7322,201108410,,,780.0,,1.0,1.0,3.0,2.0,4.0,2.1,2281.5581098417406,1416.0,0.0,0.0,0.0,38280.0,6,1,3,78.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2328.6831043706998,0.09413384689023768,0.06083289196370689,18228.571428571428,5,3,5,5_1,5_0,5_1_0 -8411,2,50.0,3,0.0,1,300,2,56,85,3.0,0.0,416.377895869032,1698.5621455045448,0.0,0.0,12840.0,42,70,1,7323,201108411,,,115.0,,1.0,0.0,4.0,0.0,2.0,1.5,2274.9118528639156,0.0,1245.0,0.0,0.0,19900.0,7,5,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2114.9400413735766,0.1647149564932692,0.1062783940388732,13266.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -8412,2,44.0,2,0.0,6,111,2,38,38,10.0,0.0,0.0,3137.9059716148217,0.0,0.0,96237.0,10,31,1,7324,201108412,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2555.9751511410404,0.0,2300.0,0.0,0.0,101487.0,1,1,2,135.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3137.9059716148217,0.032606024414880155,0.030919289875696608,48327.142857142855,10,5,10,10_1,10_4,10_0_0 -8413,2,61.0,3,0.0,8,111,2,0,54,9.0,0.0,0.0,368.36287492869644,0.0,929.78202163354,26313.0,0,60,2,7325,201108413,,,210.0,540.0,1.0,2.0,3.0,0.0,1.0,1.0,3362.7705971309715,0.0,270.0,535.0,0.0,30113.0,0,1,3,71.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1298.1448965622365,0.04933473555133343,0.04310911887099381,30113.0,9,5,9,9_0,9_3,9_0_0 -8414,2,30.0,3,0.0,6,111,2,56,45,3.0,0.0,0.0,764.7018039626064,0.0,1580.619549541122,27004.0,20,20,1,7326,201108414,,,,588.0,2.0,0.0,5.0,3.0,5.0,2.4,1419.7799722809166,1470.0,0.0,0.0,0.0,30884.0,1,1,3,92.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2345.3213535037285,0.08685088703539211,0.07593968894909106,12868.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_0 -8415,2,66.0,3,0.0,1,111,2,0,75,7.0,0.0,0.0,272.86138883607146,0.0,2586.0105573658084,24370.0,0,50,2,7329,201108415,,,,800.0,0.0,0.0,5.0,0.0,1.0,1.0,2004.512923072592,0.0,200.0,1488.0,0.0,21886.0,0,5,3,120.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2858.87194620188,0.11731111802223552,0.1306256029517445,21886.0,7,4,7,7_0,7_3,7_1_0 -8416,2,88.0,2,0.0,1,111,2,0,75,8.0,0.0,0.0,605.2616457024723,0.0,1248.4446045942727,20186.0,0,71,2,7330,201108416,,,,,0.0,3.0,5.0,0.0,1.0,1.0,4150.949538102914,62.0,420.0,680.0,0.0,25390.0,0,5,1,125.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1853.706250296745,0.0918312815959945,0.07300930485611441,25390.0,8,4,8,8_0,8_3,8_1_0 -8417,2,40.0,3,0.0,4,111,2,67,54,4.0,1903.7472109666587,0.0,982.3009998098572,201.5975972140012,0.0,27462.0,50,50,1,7331,201108417,,,340.0,,2.0,0.0,6.0,2.0,4.0,2.5,1065.59944694332,0.0,720.0,0.0,0.0,39394.0,1,1,1,150.0,6,4.0,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3087.6458079905174,0.11243339188662578,0.07837858069732745,15757.6,4,2,4_0,4_1_0,4_2_0,4_0_1 -8418,2,39.0,2,0.0,7,111,2,37,34,10.0,0.0,0.0,1064.1594164606786,0.0,2659.0027908398433,77744.0,10,10,2,7333,201108418,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2984.2864412395666,0.0,780.0,1530.0,0.0,79705.0,1,1,2,110.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3723.162207300522,0.0478900263338717,0.04671177726993943,37954.7619047619,10,5,10,10_0,10_3,10_0_0 -8419,2,58.0,1,0.0,9,120,2,77,48,9.0,0.0,69.396315978172,1132.3747636696964,260.6865481215533,0.0,27570.0,42,42,1,7336,201108419,,,,,1.0,0.0,5.0,0.0,2.0,1.5,2608.7701655421442,0.0,830.0,0.0,0.0,46825.0,6,1,2,130.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1462.4576277694218,0.05304525309283358,0.031232410630420114,31216.666666666668,9,5,9,9_1,9_0,9_0_0 -8420,2,82.0,3,0.0,1,111,2,0,72,3.0,0.0,0.0,360.1770332636143,0.0,2589.4863780074293,11652.0,0,70,1,7337,201108420,,,111.0,,0.0,3.0,3.0,0.0,1.0,1.0,2189.990414117765,0.0,264.0,1490.0,0.0,12606.0,0,5,1,58.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2949.6634112710435,0.2531465337513769,0.23398884747509469,12606.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -8421,0,40.0,5,0.0,4,111,1,84,53,5.0,0.0,0.0,436.5782221377143,0.0,0.0,34818.0,60,60,8,7338,201108421,,,,,1.0,2.0,4.0,1.0,3.0,1.8,3466.425571212852,0.0,320.0,0.0,0.0,32876.0,3,1,5,90.0,8,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,436.5782221377143,0.012538865590720727,0.01327954198009838,18264.444444444445,5,3,5,5_0,5_3,5_0_1 -8422,1,40.0,4,365.0,2,111,4,0,52,2.0,0.0,0.0,409.2920832541072,0.0,0.0,13939.0,0,50,2,7339,201108422,,,,,1.0,0.0,2.0,1.0,2.0,1.3,2340.904033462167,0.0,300.0,0.0,0.0,14331.0,0,4,3,44.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,409.2920832541072,0.029363087972889532,0.02855991091020216,11023.846153846154,2,1,2_1,2_0_1,2_3_1,2_0_1 -8423,2,80.0,3,0.0,2,111,2,77,75,6.0,0.0,0.0,558.0015401697661,0.0,1150.4966323764552,23877.0,70,50,1,734,201108423,,,239.0,,0.0,1.0,3.0,0.0,2.0,1.5,2088.9996155055546,0.0,409.0,662.0,0.0,32156.0,5,5,1,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1708.4981725462212,0.0715541388175324,0.053131551578126046,21437.333333333332,6,3,6,6_1,6_3,6_0_1 -8424,2,81.0,3,0.0,1,221,2,72,72,3.0,3966.1400228472053,0.0,360.1770332636143,361.4853467285539,0.0,10280.0,70,70,1,7342,201108424,,,,,0.0,5.0,4.0,0.0,2.0,1.5,1740.9410326598288,0.0,264.0,0.0,0.0,20771.0,5,5,1,50.0,1,2.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4687.802402839374,0.4560119068909897,0.22568977915552327,13847.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0 -8425,2,73.0,3,0.0,1,111,4,74,75,8.0,0.0,0.0,1974.152148228977,0.0,0.0,15801.0,60,41,1,7349,201108425,,,241.0,,0.0,3.0,4.0,0.0,2.0,1.5,2749.8324392673885,0.0,1447.0,0.0,0.0,41380.0,5,5,1,80.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1974.152148228977,0.12493843099987197,0.04770788178417054,27586.666666666668,8,4,8,8_1,8_4,8_1_0 -8426,2,72.0,3,0.0,3,112,1,86,78,5.0,0.0,0.0,616.6667387695214,0.0,2354.8684846980314,31076.0,70,70,1,735,201108426,,,,,0.0,4.0,4.0,0.0,2.0,1.5,1056.4653943290273,0.0,452.0,1355.0,0.0,26327.0,6,5,1,100.0,6,0.0,3,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2971.535223467553,0.09562154792983502,0.11287025576281205,17551.333333333332,5,3,5,5_1,5_0,5_0_1 -8427,2,91.0,3,0.0,1,111,2,0,72,1.0,0.0,0.0,635.7670359880465,0.0,1199.158121359145,11422.0,0,70,1,7350,201108427,,,429.0,,0.0,0.0,3.0,0.0,1.0,1.0,2477.105298658068,0.0,466.0,690.0,0.0,8506.0,0,5,1,70.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1834.9251573471915,0.16064832405421042,0.21572127408267006,8506.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -8428,2,82.0,2,0.0,3,111,1,0,74,9.0,0.0,0.0,436.5782221377143,0.0,112.96417085267309,29594.0,0,20,2,7353,201108428,,,220.0,,0.0,0.0,3.0,0.0,1.0,1.0,3752.7656283095616,0.0,320.0,65.0,0.0,36300.0,0,5,1,63.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,549.5423929903874,0.018569385449428513,0.015138908897806815,36300.0,9,5,9,9_0,9_3,9_0_1 -8429,1,37.0,3,87.0,9,400,2,43,62,3.0,0.0,55.5170527825376,3247.0505271492502,0.0,0.0,43376.0,42,50,1,7354,201108429,,,160.0,,2.0,0.0,5.0,4.0,6.0,2.7,1528.0541717131762,0.0,2380.0,0.0,0.0,37481.0,1,1,2,185.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3302.567579931788,0.07613813122306777,0.08811311277532051,13881.85185185185,3,2,3_1,3_1_1,3_0_1,3_0_0 -8430,2,32.0,3,0.0,1,400,2,67,63,4.0,1193.0149188724395,0.0,750.3688192991965,97.32297796537989,0.0,40136.0,50,50,1,7355,201108430,,,200.0,,2.0,0.0,5.0,3.0,5.0,2.4,1674.2466813562012,0.0,550.0,0.0,0.0,35759.0,4,1,2,110.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2040.706716137016,0.05084479559839087,0.05706833849204441,14899.583333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -8431,2,41.0,3,0.0,99,111,1,56,47,4.0,0.0,0.0,1358.8497164036357,0.0,0.0,29408.0,20,71,2,7357,201108431,,,,500.0,2.0,1.0,3.0,2.0,4.0,2.1,3691.193920299314,0.0,996.0,0.0,0.0,33762.0,3,3,3,70.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1358.8497164036357,0.0462068048287417,0.04024790345369456,16077.142857142857,4,2,4_0,4_0_0,4_3_0,4_0_0 -8432,2,64.0,4,0.0,1,111,5,56,78,2.0,0.0,971.5484236944079,955.0148609262501,0.0,0.0,14406.0,70,71,1,736,201108432,,,280.0,,1.0,3.0,4.0,0.0,2.0,1.5,1931.5968667387626,0.0,700.0,0.0,0.0,16210.0,1,5,3,70.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1926.5632846206581,0.13373339473973747,0.11885029516475373,10806.666666666666,2,1,2_0,2_1_0,2_3_0,2_1_0 -8433,2,54.0,1,0.0,4,112,2,34,37,10.0,1903.7472109666587,0.0,1214.233180320518,0.0,0.0,40506.0,10,41,1,7362,201108433,,,270.0,,2.0,0.0,8.0,0.0,2.0,1.5,1884.0189748523808,0.0,890.0,0.0,0.0,94965.0,1,1,1,197.0,9,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3117.9803912871766,0.07697576633800367,0.03283294257133867,63310.0,10,5,10,10_1,10_0,10_0_1 -8434,2,55.0,2,0.0,6,112,5,48,54,8.0,0.0,208.188947934516,1869.1005135270893,111.22626053186274,0.0,52641.0,50,60,1,7363,201108434,,,168.0,,2.0,2.0,5.0,0.0,2.0,1.5,1292.4739235032816,0.0,1370.0,0.0,0.0,38913.0,4,1,1,100.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2188.515721993468,0.041574356907989364,0.0562412489911718,25942.0,8,4,8,8_1,8_0,8_0_0 -8435,2,36.0,1,0.0,2,111,2,0,53,7.0,0.0,0.0,442.03544991443573,0.0,448.38086276907165,26643.0,0,43,2,7364,201108435,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3236.8580166873553,0.0,324.0,258.0,0.0,24541.0,0,1,3,90.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,890.4163126835074,0.033420272217224316,0.036282804803533165,24541.0,7,4,7,7_0,7_3,7_0_1 -8436,1,81.0,3,262.0,6,111,2,0,78,3.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,17415.0,0,71,2,7365,201108436,,,,152.0,0.0,6.0,3.0,0.0,1.0,1.0,3546.4380035012146,700.0,0.0,0.0,0.0,14223.0,0,5,3,75.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1116.8196921446327,0.06412975550643886,0.07852209042709925,14223.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -8437,2,54.0,1,0.0,1,120,2,78,64,10.0,0.0,0.0,1800.8851663180715,130.34327406077665,0.0,29395.0,70,50,1,7366,201108437,,,,,1.0,5.0,5.0,0.0,2.0,1.5,2104.4560936180806,0.0,1320.0,0.0,0.0,61345.0,7,1,1,100.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1931.228440378848,0.0656992155257305,0.03148143190771616,40896.666666666664,10,5,10,10_1,10_0,10_1_0 -8438,2,65.0,2,0.0,1,300,2,0,75,8.0,4759.368027416646,0.0,560.7301540581268,43.44775802025888,0.0,41122.0,0,20,1,7367,201108438,,,240.0,,0.0,3.0,7.0,0.0,1.0,1.0,2478.3367857509397,0.0,411.0,0.0,0.0,25738.0,0,5,1,400.0,0,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5363.545939495032,0.1304300846139544,0.20839016005497832,25738.0,8,4,8,8_1,8_0,8_1_0 -8439,2,65.0,2,0.0,2,111,1,75,37,9.0,0.0,0.0,382.0059443705,0.0,260.6865481215533,32207.0,50,50,2,7368,201108439,,,,,1.0,2.0,3.0,0.0,2.0,1.5,2322.4869474588636,0.0,280.0,150.0,0.0,44915.0,5,1,1,57.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,642.6924924920534,0.019955056121093346,0.01430908365784378,29943.333333333332,9,5,9,9_0,9_4,9_0_1 -8440,2,71.0,3,0.0,1,112,2,78,78,3.0,1808.5598504183256,0.0,690.3393137552607,375.3886292950367,0.0,20294.0,70,70,1,7369,201108440,,,300.0,,0.0,1.0,4.0,0.0,2.0,1.5,1895.0366238540237,0.0,506.0,0.0,0.0,19620.0,5,5,1,80.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2874.287793468623,0.14163239348914078,0.14649784880064337,13080.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -8441,2,53.0,4,0.0,1,111,2,0,47,3.0,0.0,0.0,346.53396382181074,0.0,1178.303197509421,33519.0,0,50,2,737,201108441,,,,236.0,1.0,1.0,2.0,1.0,2.0,1.5,2549.6502076708616,0.0,254.0,678.0,0.0,19660.0,0,1,3,47.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1524.8371613312315,0.04549172592652619,0.07756038460484392,13106.666666666666,3,2,3_0,3_0_0,3_3_0,3_1_0 -8442,2,39.0,2,0.0,9,221,6,43,54,6.0,0.0,0.0,3700.000432617129,0.0,0.0,46203.0,33,43,1,7373,201108442,,,,,2.0,0.0,6.0,3.0,5.0,2.4,3601.4454686075524,0.0,2712.0,0.0,0.0,51160.0,1,1,2,132.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3700.000432617129,0.080081389360369,0.07232213511761393,21316.666666666668,6,3,6,6_1,6_1,6_0_0 -8443,2,53.0,4,0.0,7,112,4,0,34,8.0,0.0,0.0,2319.3218051066074,0.0,0.0,20571.0,0,20,1,7374,201108443,,,90.0,,1.0,3.0,3.0,1.0,2.0,1.3,2335.9597514640636,0.0,1700.0,0.0,0.0,35063.0,0,1,3,60.0,10,4.0,2,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2319.3218051066074,0.1127471588696032,0.06614727219880237,26971.53846153846,8,4,8,8_1,8_2,8_0_0 -8444,1,62.0,3,78.0,5,111,1,0,56,3.0,0.0,0.0,47.7507430463125,0.0,8.689551604051776,12144.0,0,70,2,7376,201108444,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2802.229574618331,0.0,35.0,5.0,0.0,14476.0,0,1,3,74.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,56.44029465036428,0.004647586845385728,0.003898887444761279,14476.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -8445,1,47.0,3,220.0,9,221,2,68,63,1.0,0.0,0.0,1255.1623886459286,0.0,1720.5312176022517,32895.0,50,50,1,7377,201108445,,,790.0,,2.0,0.0,4.0,4.0,6.0,3.3,2191.362175997398,0.0,920.0,990.0,0.0,26478.0,1,1,3,92.0,1,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2975.69360624818,0.0904603619470491,0.11238362437677242,8023.636363636364,1,1,1_1,1_1_1,1_1_1,1_0_0 -8446,1,65.0,4,120.0,99,111,6,0,77,2.0,0.0,0.0,313.79059716148214,0.0,1094.8835021105238,13539.0,0,60,2,738,201108446,,,,107.0,0.0,2.0,2.0,0.0,1.0,1.0,2318.829361341189,0.0,230.0,630.0,0.0,10917.0,0,5,3,40.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1408.6740992720058,0.10404565324411004,0.12903490879106036,10917.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -8447,2,66.0,2,0.0,4,111,2,0,75,10.0,0.0,277.585263912688,1571.5402379394789,0.0,3248.3344620161433,52581.0,0,41,1,7382,201108447,,,,,0.0,2.0,5.0,0.0,1.0,1.0,1891.331943213882,3021.0,0.0,0.0,0.0,37313.0,0,5,1,200.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5097.45996386831,0.09694490336563227,0.136613511748407,37313.0,9,5,9,9_1,9_3,9_0_1 -8448,2,21.0,3,0.0,1,400,2,0,63,2.0,3291.8962189631807,0.0,1146.0178331115,0.0,0.0,32487.0,0,50,1,7383,201108448,,,400.0,,2.0,1.0,5.0,3.0,4.0,2.5,845.7487849318392,0.0,840.0,0.0,0.0,25240.0,0,1,1,115.0,0,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4437.9140520746805,0.13660584393987382,0.17582860745145326,10096.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -8449,2,57.0,1,0.0,5,111,2,54,55,7.0,634.5824036555529,41.637789586903196,1106.4529317302697,140.77073598563877,0.0,49034.0,60,42,1,7388,201108449,,,178.0,,2.0,1.0,7.0,1.0,3.0,2.0,1396.0949890016138,0.0,811.0,0.0,0.0,48511.0,1,1,1,175.0,6,4.0,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1923.4438609583647,0.039226737793334514,0.039649643605746424,24255.5,7,4,7,7_1,7_2,7_0_0 -8450,2,46.0,1,0.0,1,112,6,54,48,10.0,0.0,0.0,4215.708457517304,0.0,0.0,48584.0,42,71,1,739,201108450,,,389.0,,2.0,1.0,5.0,2.0,4.0,2.3,4648.602601339598,0.0,3090.0,0.0,0.0,306163.0,1,1,2,120.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4215.708457517304,0.08677153913875564,0.013769490296075305,133114.34782608697,10,5,10,10_1,10_0,10_1_0 -8451,2,54.0,4,0.0,7,111,4,0,37,10.0,0.0,0.0,0.0,0.0,0.0,64651.0,0,31,2,7391,201108451,,,,900.0,2.0,0.0,4.0,2.0,3.0,2.0,2701.713389919379,0.0,0.0,0.0,0.0,76909.0,0,1,3,75.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,38454.5,10,5,10,10_0,10_4,10_0_0 -8452,2,54.0,2,0.0,6,112,4,67,62,7.0,0.0,0.0,2414.8232911992322,145.98446694806984,0.0,28551.0,71,71,1,7393,201108452,,,130.0,,4.0,1.0,5.0,3.0,5.0,3.0,2777.4514883502493,0.0,1770.0,0.0,0.0,64700.0,1,1,1,125.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2560.807758147302,0.08969240160230121,0.03957971805482693,21566.666666666668,6,3,6,6_1,6_0,6_0_0 -8453,2,73.0,2,0.0,4,112,2,75,78,4.0,0.0,0.0,491.1504999049286,0.0,1564.1192887293198,23575.0,60,71,1,7394,201108453,,,300.0,,0.0,4.0,5.0,0.0,2.0,1.5,3317.3081541994125,0.0,360.0,900.0,0.0,24460.0,5,5,1,110.0,9,1.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2055.2697886342485,0.08718005466104978,0.08402574769559479,16306.666666666666,4,2,4_0,4_1_0,4_1_0,4_0_1 -8454,0,51.0,3,0.0,4,111,6,55,55,4.0,2538.3296146222115,0.0,1364.3069441803573,173.79103208103552,0.0,32010.0,41,50,1,7395,201108454,,,400.0,,2.0,2.0,5.0,2.0,4.0,2.3,3151.3542178744315,0.0,1000.0,0.0,0.0,35563.0,1,1,5,120.0,4,4.0,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4076.4275908836044,0.12734856578830378,0.11462552627403774,15462.17391304348,4,2,4_0,4_1_0,4_2_0,4_0_1 -8455,2,63.0,3,0.0,1,112,2,86,74,3.0,0.0,763.359475759892,678.0605512576376,1037.532461523782,0.0,33266.0,70,20,1,7396,201108455,,,,,0.0,4.0,3.0,0.0,2.0,1.5,1322.3828165618252,0.0,497.0,0.0,0.0,21386.0,5,5,1,220.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2478.952488541312,0.07451910324479384,0.11591473340228711,14257.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -8456,2,71.0,1,0.0,4,111,2,77,74,9.0,0.0,346.98157989085996,704.3579881397069,0.0,1455.8903878086255,56778.0,60,12,1,7397,201108456,,,350.0,,0.0,3.0,6.0,0.0,2.0,1.5,1191.6559197705058,1354.0,0.0,0.0,0.0,53711.0,5,5,1,140.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2507.2299558391924,0.04415847609706563,0.04668000885925029,35807.333333333336,9,5,9,9_1,9_2,9_0_1 -8457,2,42.0,3,0.0,7,112,6,56,55,3.0,2195.655116648213,0.0,654.8673332065715,0.0,0.0,20792.0,42,50,1,7398,201108457,,,318.0,,2.0,0.0,5.0,1.0,3.0,1.8,1588.5825267693265,0.0,480.0,0.0,0.0,23359.0,1,1,2,130.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2850.5224498547846,0.13709707819617087,0.12203101373580995,12977.222222222223,3,2,3_0,3_1_0,3_0_0,3_0_0 -8458,2,54.0,2,0.0,99,112,2,65,43,9.0,1957.6867152773807,0.0,1544.3954608121644,0.0,0.0,35963.0,50,33,1,7399,201108458,,,950.0,,2.0,2.0,5.0,0.0,2.0,1.5,2354.1695982508054,0.0,1132.0,0.0,0.0,45864.0,1,1,1,125.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3502.082176089545,0.09738014559657274,0.07635797523307049,30576.0,9,5,9,9_1,9_0,9_0_0 -8459,2,58.0,2,0.0,4,111,1,0,33,10.0,0.0,0.0,341.0767360450893,0.0,107.75043989024202,24845.0,0,12,2,7400,201108459,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2907.204469369069,0.0,250.0,62.0,0.0,45263.0,0,1,2,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,448.82717593533135,0.018065090599127847,0.009915983826421832,45263.0,10,5,10,10_0,10_3,10_0_1 -8460,2,83.0,3,0.0,7,211,4,77,77,8.0,0.0,0.0,2182.8911106885716,0.0,0.0,28778.0,70,70,1,7402,201108460,,,162.0,,0.0,0.0,5.0,0.0,2.0,1.5,1487.9063201892857,0.0,1600.0,0.0,0.0,37246.0,5,5,1,130.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2182.8911106885716,0.0758527733229749,0.058607397054410454,24830.666666666668,7,4,7,7_1,7_2,7_0_0 -8461,0,42.0,2,0.0,7,111,4,54,21,9.0,0.0,0.0,0.0,0.0,0.0,55251.0,20,60,2,7403,201108461,,,425.0,,2.0,0.0,3.0,1.0,3.0,1.8,2846.502244111977,0.0,0.0,0.0,0.0,62437.0,1,1,5,70.0,6,5.0,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,34687.22222222222,9,5,9,9_0,9_2,9_0_0 -8462,2,43.0,3,0.0,1,300,2,69,69,6.0,0.0,0.0,1547.1240747005252,0.0,0.0,43557.0,60,50,1,7405,201108462,,,,,2.0,2.0,2.0,0.0,2.0,1.5,2968.1553067608083,0.0,1134.0,0.0,0.0,31590.0,1,1,3,45.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1547.1240747005252,0.03551952785316999,0.04897512107314103,21060.0,6,3,6,6_1,6_0,6_1_0 -8463,1,40.0,4,240.0,8,111,4,0,85,3.0,0.0,0.0,477.50743046312505,62.56477154917279,0.0,9204.0,0,71,2,7406,201108463,,,,92.0,0.0,0.0,2.0,0.0,1.0,1.0,3740.7322494980135,0.0,350.0,0.0,0.0,13000.0,0,7,3,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,540.0722020122978,0.05867798805001063,0.04154401553940752,13000.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -8464,2,31.0,2,0.0,9,111,2,0,46,10.0,0.0,0.0,2041.0006194343136,0.0,4012.838203324808,54095.0,0,31,2,7407,201108464,,,214.0,,1.0,0.0,3.0,0.0,1.0,1.0,4000.0846020955178,3732.0,73.0,0.0,0.0,92558.0,0,1,1,80.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,6053.838822759122,0.11191124545261341,0.06540589492814368,92558.0,10,5,10,10_0,10_3,10_0_0 -8465,2,74.0,3,0.0,4,111,2,78,77,6.0,0.0,0.0,477.50743046312505,0.0,1998.5968689319086,29078.0,70,50,1,7408,201108465,,,270.0,,0.0,3.0,5.0,0.0,2.0,1.5,1708.7569161984434,0.0,350.0,1150.0,0.0,30729.0,5,5,1,96.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2476.1042993950336,0.08515387232254741,0.0805787464413106,20486.0,6,3,6,6_1,6_3,6_0_1 -8466,2,48.0,3,0.0,2,211,2,55,22,7.0,0.0,0.0,1057.3378817397768,0.0,1722.2691279230621,22182.0,70,50,1,741,201108466,,,398.0,,2.0,0.0,4.0,1.0,3.0,2.0,1843.8928919070022,0.0,775.0,991.0,0.0,43618.0,4,1,1,100.0,3,3.0,4,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2779.607009662839,0.12530912495098906,0.06372614539095876,21809.0,7,4,7,7_1,7_1,7_0_1 -8467,2,89.0,9,0.0,9,400,4,71,71,3.0,0.0,0.0,2038.2745746054538,0.0,0.0,28026.0,71,71,1,7411,201108467,,,373.0,387.0,0.0,2.0,3.0,0.0,2.0,1.5,3807.0857090430136,0.0,1494.0,0.0,0.0,21913.0,5,5,3,67.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2038.2745746054538,0.07272798739047505,0.09301668300120722,14608.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -8468,2,68.0,2,0.0,2,111,2,85,72,10.0,5076.659229244423,0.0,2956.98401893186,187.69431464751835,472.03536207384536,42709.0,12,44,1,7412,201108468,,,,,0.0,2.0,5.0,1.0,3.0,1.8,2111.106818962247,439.0,2000.0,0.0,0.0,72192.0,6,5,1,180.0,9,7.0,4,8,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,8693.372924897647,0.20354896918442592,0.12042017016979231,40106.666666666664,10,5,10,10_1,10_3,10_0_1 -8469,2,58.0,2,0.0,6,400,4,78,52,7.0,0.0,0.0,1364.3069441803573,291.9689338961397,0.0,15044.0,50,70,1,7413,201108469,,,160.0,,1.0,1.0,5.0,0.0,2.0,1.5,1678.6370487315937,0.0,1000.0,0.0,0.0,34259.0,5,1,1,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1656.275878076497,0.11009544523241804,0.048345715814136346,22839.333333333332,7,4,7,7_1,7_0,7_0_0 -8470,2,56.0,4,0.0,7,111,2,75,65,7.0,0.0,693.9631597817199,1191.039962269452,45.18566834106924,0.0,31026.0,50,50,1,7415,201108470,,,281.0,,1.0,1.0,4.0,0.0,2.0,1.5,1116.636602752652,0.0,873.0,0.0,0.0,36270.0,5,1,1,100.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1930.1887903922411,0.062211976741837205,0.05321722609297604,24180.0,7,4,7,7_1,7_3,7_0_0 -8471,2,37.0,2,0.0,5,111,1,31,42,8.0,0.0,0.0,491.1504999049286,0.0,0.0,25733.0,10,20,2,7417,201108471,,,,,2.0,0.0,3.0,2.0,4.0,2.1,4115.9382846019535,0.0,360.0,0.0,0.0,55269.0,1,1,2,48.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,491.1504999049286,0.01908640655597593,0.008886545801533023,26318.571428571428,8,4,8,8_0,8_4,8_0_0 -8472,2,79.0,3,0.0,5,111,2,0,86,2.0,0.0,0.0,300.1475277196786,0.0,1929.0804560994943,17827.0,0,50,1,7418,201108472,,,120.0,,0.0,1.0,5.0,0.0,1.0,1.0,3006.0237942004287,0.0,220.0,1110.0,0.0,12138.0,0,7,1,80.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2229.227983819173,0.12504784786106315,0.18365694379792166,12138.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -8473,2,61.0,3,0.0,1,300,4,0,11,3.0,571.1241632899976,0.0,2652.2126994866144,43.44775802025888,0.0,24894.0,0,42,1,7419,201108473,,,177.0,,1.0,0.0,2.0,0.0,1.0,1.0,2627.638190294369,0.0,1944.0,0.0,0.0,14462.0,0,1,1,80.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3266.784620796871,0.13122779066429144,0.22588747205067564,14462.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -8474,2,41.0,3,0.0,8,112,4,62,38,7.0,0.0,0.0,2169.248041246768,194.64595593075978,0.0,29134.0,50,31,1,742,201108474,,,470.0,,2.0,0.0,4.0,2.0,4.0,2.3,1601.1730817604168,0.0,1590.0,0.0,0.0,51662.0,1,1,2,100.0,7,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2363.893997177528,0.08113866949878246,0.04575691992523573,22461.739130434784,7,4,7,7_1,7_1,7_0_0 -8475,2,29.0,2,0.0,7,111,2,0,54,6.0,0.0,0.0,682.1534720901786,0.0,0.0,31836.0,0,31,2,7420,201108475,,,,496.0,1.0,0.0,2.0,0.0,1.0,1.0,2674.0765947520404,0.0,500.0,0.0,0.0,20737.0,0,1,3,41.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,682.1534720901786,0.021427109941267078,0.03289547533829284,20737.0,6,3,6,6_0,6_3,6_0_0 -8476,2,44.0,2,0.0,7,112,2,54,67,5.0,0.0,0.0,154.16668469238036,0.0,34.7582064162071,61365.0,50,60,1,7421,201108476,,,711.0,,2.0,0.0,6.0,3.0,5.0,2.8,1383.5396589786442,0.0,113.0,20.0,0.0,51839.0,1,1,2,140.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,188.92489110858747,0.003078707587526888,0.0036444547755278356,18513.928571428572,5,3,5,5_1,5_1,5_0_0 -8477,2,53.0,3,0.0,1,111,2,0,54,3.0,0.0,0.0,364.2699540961554,0.0,2212.3598383915823,13564.0,0,50,1,7422,201108477,,,,,1.0,1.0,3.0,0.0,1.0,1.0,1850.8640392360503,0.0,267.0,1273.0,0.0,12887.0,0,1,1,59.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2576.6297924877376,0.18996091068178544,0.19994023376175507,12887.0,3,2,3_0,3_1_0,3_4_0,3_1_0 -8478,1,27.0,4,365.0,7,111,2,62,56,2.0,0.0,0.0,652.857662566715,0.0,1349.440499778305,15210.0,50,50,1,7424,201108478,,,480.0,,2.0,0.0,5.0,1.0,3.0,1.8,1553.6565631519436,1255.0,0.0,0.0,0.0,18256.0,4,4,3,70.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2002.29816234502,0.13164353467094148,0.10967890898033633,10142.222222222223,2,1,2_1,2_1_1,2_3_1,2_0_0 -8479,2,54.0,1,0.0,1,112,6,0,11,1.0,951.8736054833294,0.0,0.0,0.0,0.0,14616.0,0,70,1,7426,201108479,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2372.812929153797,0.0,0.0,0.0,0.0,3813.0,0,1,1,65.0,9,1.0,1,9,1,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,951.8736054833294,0.06512545193509368,0.24963902582830563,3813.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -8480,1,45.0,3,226.0,5,111,1,0,46,1.0,0.0,0.0,545.7227776721429,0.0,0.0,26251.0,0,44,2,7427,201108480,,,,174.0,1.0,0.0,3.0,1.0,3.0,1.8,3323.5164634925545,0.0,400.0,0.0,0.0,16532.0,0,1,3,60.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,545.7227776721429,0.02078864720095017,0.03301008817276451,9184.444444444443,1,1,1_1,1_0_1,1_4_1,1_0_0 -8481,2,61.0,2,0.0,4,111,1,77,75,10.0,0.0,0.0,354.7198054868929,0.0,0.0,42438.0,60,44,2,7428,201108481,,,,876.0,0.0,1.0,4.0,0.0,2.0,1.5,2861.7342305332854,0.0,260.0,0.0,0.0,64201.0,5,5,3,77.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,354.7198054868929,0.00835854200214178,0.005525144553618992,42800.666666666664,10,5,10,10_0,10_3,10_0_1 -8482,1,37.0,3,120.0,8,112,2,42,21,2.0,0.0,863.2901707684597,1227.8762497623215,625.6477154917279,0.0,25461.0,31,50,2,7429,201108482,,,156.0,,2.0,0.0,4.0,2.0,4.0,2.1,3137.8798778493847,0.0,900.0,0.0,0.0,25180.0,1,1,3,70.0,6,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,2716.814136022509,0.10670492659449782,0.10789571628365803,11990.47619047619,2,1,2_1,2_0_1,2_0_1,2_0_0 -8483,2,76.0,3,0.0,2,112,2,78,72,3.0,1745.1016100527704,0.0,545.7227776721429,0.0,0.0,17490.0,50,71,1,7430,201108483,,,177.0,,0.0,3.0,4.0,0.0,2.0,1.5,2692.8757400947566,0.0,400.0,0.0,0.0,18521.0,5,5,1,120.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2290.8243877249133,0.13097909592480922,0.12368794275281644,12347.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1 -8484,2,44.0,3,0.0,7,111,4,52,46,8.0,0.0,0.0,1978.245069061518,0.0,0.0,34629.0,50,50,1,7431,201108484,,,187.0,,2.0,0.0,5.0,1.0,3.0,1.8,1619.7720498639528,0.0,1450.0,0.0,0.0,46357.0,1,1,2,115.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1978.245069061518,0.05712683210781478,0.042674139160461595,25753.888888888887,8,4,8,8_1,8_2,8_0_0 -8485,2,78.0,4,0.0,1,112,2,0,78,3.0,0.0,0.0,1356.1211025152752,0.0,0.0,13203.0,0,50,1,7432,201108485,,,180.0,,0.0,5.0,2.0,0.0,1.0,1.0,2323.250693713895,0.0,994.0,0.0,0.0,12640.0,0,5,3,80.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1356.1211025152752,0.1027131032731406,0.10728806190785405,12640.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -8486,2,60.0,1,0.0,6,111,2,43,37,10.0,0.0,0.0,476.14312351894466,0.0,1407.7073598563877,40649.0,60,10,1,7433,201108486,,,200.0,,2.0,2.0,6.0,0.0,2.0,1.5,2675.6396228132735,0.0,349.0,810.0,0.0,63316.0,1,1,1,140.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1883.8504833753323,0.046344325404692174,0.02975315059977466,42210.666666666664,10,5,10,10_1,10_2,10_0_0 -8487,2,53.0,1,0.0,6,112,2,56,43,4.0,0.0,0.0,927.728722042643,0.0,2780.6565132965684,37036.0,50,41,1,7434,201108487,,,440.0,,2.0,1.0,5.0,1.0,5.0,2.6,837.5913909875278,0.0,680.0,1600.0,0.0,41359.0,1,1,1,100.0,9,0.0,5,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3708.3852353392112,0.10012920497189792,0.08966331960006797,15907.307692307691,4,2,4_0,4_1_0,4_0_0,4_0_0 -8488,2,78.0,2,0.0,7,111,4,75,77,8.0,0.0,0.0,1365.6712511245375,0.0,0.0,30622.0,33,50,2,7435,201108488,,,477.0,,0.0,0.0,2.0,0.0,2.0,1.5,1881.7231181269467,0.0,1001.0,0.0,0.0,41387.0,5,5,1,57.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1365.6712511245375,0.044597715731321846,0.03299758985006252,27591.333333333332,8,4,8,8_0,8_2,8_0_0 -8489,2,44.0,3,0.0,8,111,2,84,46,5.0,0.0,0.0,2865.0445827787503,0.0,0.0,62659.0,31,12,1,7437,201108489,,,700.0,,1.0,0.0,7.0,3.0,5.0,2.4,1147.6790523501945,0.0,2100.0,0.0,0.0,44265.0,3,4,1,190.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2865.0445827787503,0.04572439047509137,0.06472482961208066,18443.75,5,3,5,5_1,5_3,5_0_0 -8490,2,53.0,3,0.0,1,221,2,56,62,5.0,317.29120182777643,0.0,1091.4455553442858,173.79103208103552,0.0,27857.0,71,60,1,7439,201108490,,,290.0,,2.0,0.0,3.0,2.0,4.0,2.3,2553.4777943993695,0.0,800.0,0.0,0.0,38623.0,1,1,3,72.0,1,1.0,4,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1582.5277892530978,0.05680898119873273,0.04097371486557486,16792.608695652176,4,2,4_0,4_1_0,4_1_0,4_1_0 -8491,2,43.0,3,0.0,8,111,4,11,54,7.0,0.0,0.0,3192.4782493820358,111.22626053186274,0.0,43599.0,60,50,1,7440,201108491,,,,,2.0,0.0,7.0,1.0,3.0,1.8,2242.36602407171,0.0,2340.0,0.0,0.0,42682.0,1,1,2,146.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3303.7045099138986,0.07577477717181354,0.07740275783501004,23712.222222222223,7,4,7,7_1,7_3,7_0_0 -8492,1,38.0,3,298.0,1,111,2,0,52,2.0,0.0,0.0,818.5841665082144,0.0,1147.0208117348345,17253.0,0,50,2,7443,201108492,,,,,1.0,0.0,3.0,2.0,3.0,1.8,3406.968817605784,0.0,600.0,660.0,0.0,17483.0,0,1,3,49.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1965.604978243049,0.11392830106318025,0.11242950170125544,9712.777777777777,1,1,1_1,1_0_1,1_3_1,1_1_0 -8493,2,71.0,2,0.0,2,111,1,0,75,6.0,0.0,0.0,177.35990274344644,0.0,92.10924700294883,30002.0,0,50,2,7444,201108493,,,,366.0,0.0,4.0,4.0,0.0,1.0,1.0,1439.2462661335214,0.0,130.0,53.0,0.0,20170.0,0,5,3,70.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,269.46914974639526,0.008981706211132433,0.01335989835133343,20170.0,6,3,6,6_0,6_3,6_0_1 -8494,2,64.0,3,0.0,7,111,2,77,75,9.0,1507.1332086819382,0.0,886.7995137172322,43.44775802025888,0.0,26053.0,60,41,1,7445,201108494,,,442.0,,0.0,2.0,4.0,0.0,2.0,1.5,2504.4963016637944,0.0,650.0,0.0,0.0,46037.0,5,5,1,100.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2437.380480419429,0.09355469544464858,0.05294394683449028,30691.333333333332,9,5,9,9_1,9_3,9_0_0 -8495,2,29.0,3,0.0,1,111,6,0,54,3.0,0.0,0.0,545.7227776721429,0.0,0.0,21005.0,0,30,2,7447,201108495,,,,400.0,1.0,0.0,1.0,0.0,1.0,1.0,3685.208416775422,0.0,400.0,0.0,0.0,14530.0,0,1,3,15.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,545.7227776721429,0.025980613076512397,0.03755834670833744,14530.0,3,2,3_0,3_0_0,3_4_0,3_1_0 -8496,1,72.0,4,73.0,6,111,1,0,86,3.0,0.0,0.0,764.011888741,0.0,0.0,10249.0,0,70,2,7449,201108496,,,250.0,275.0,0.0,6.0,3.0,0.0,1.0,1.0,3126.3766510812143,0.0,560.0,0.0,0.0,12886.0,0,5,3,81.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,764.011888741,0.07454501792770027,0.05929007362571783,12886.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -8497,1,39.0,2,374.0,1,300,2,0,56,3.0,0.0,0.0,1470.7228858264252,177.26685272265624,0.0,14721.0,0,50,1,745,201108497,,,392.0,156.0,1.0,0.0,5.0,3.0,4.0,2.1,1316.7196580359976,0.0,1078.0,0.0,0.0,26916.0,0,1,3,80.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1647.9897385490815,0.11194821945174115,0.06122714142328286,12817.142857142857,3,2,3_1,3_1_1,3_0_1,3_1_0 -8498,2,29.0,2,0.0,9,111,2,0,47,9.0,0.0,0.0,368.36287492869644,0.0,681.2608457576592,19537.0,0,20,2,7453,201108498,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3802.6642576735435,0.0,270.0,392.0,0.0,32660.0,0,1,2,71.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1049.6237206863557,0.05372491788331656,0.03213789714287678,32660.0,9,5,9,9_0,9_2,9_0_0 -8499,1,38.0,3,79.0,6,111,2,52,43,5.0,0.0,0.0,1090.1723807431526,0.0,1548.3620077137525,56075.0,50,33,1,7454,201108499,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2221.5286371263346,1440.0,250.0,0.0,0.0,42169.0,1,1,3,100.0,4,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2638.534388456905,0.047053667203868124,0.06257047566830859,17570.416666666668,5,3,5,5_1,5_1,5_0_0 -8500,0,27.0,2,0.0,5,112,2,69,52,4.0,0.0,0.0,744.9115915224751,3997.193737863817,0.0,50940.0,20,20,1,7459,201108500,,,100.0,,2.0,0.0,6.0,1.0,3.0,1.8,4069.3154412218596,0.0,546.0,0.0,0.0,27944.0,1,1,5,220.0,9,1.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4742.105329386292,0.09309197741237323,0.1697003052314018,15524.444444444443,4,2,4_0,4_1_0,4_1_0,4_0_0 -8501,2,40.0,5,0.0,1,112,1,0,37,5.0,0.0,0.0,682.1534720901786,0.0,2085.4923849724264,32068.0,0,31,2,746,201108501,1200.0,1200.0,390.0,,1.0,0.0,3.0,1.0,2.0,1.5,2916.942123219684,0.0,500.0,1200.0,0.0,27463.0,0,1,3,90.0,10,0.0,2,2,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2767.645857062605,0.0863055337739368,0.10077725875041346,18308.666666666668,5,3,5,5_0,5_0,5_1_0 -8502,2,51.0,4,0.0,4,111,2,0,55,7.0,0.0,0.0,491.1504999049286,0.0,1268.6745341915594,18611.0,0,60,2,7460,201108502,,,,654.0,1.0,1.0,3.0,0.0,1.0,1.0,3432.203582110332,0.0,360.0,730.0,0.0,24497.0,0,1,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1759.825034096488,0.09455832755340864,0.07183838976595044,24497.0,7,4,7,7_0,7_4,7_0_1 -8503,1,28.0,4,306.0,1,111,4,56,67,3.0,0.0,0.0,1091.4455553442858,79.94387475727635,0.0,19527.0,71,50,2,7461,201108503,,,750.0,280.0,2.0,0.0,3.0,2.0,4.0,2.1,5075.025312501442,0.0,800.0,0.0,0.0,28047.0,1,1,3,70.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1171.389430101562,0.05998819225183398,0.041765230866101975,13355.714285714284,3,2,3_1,3_0_1,3_2_1,3_1_0 -8504,1,53.0,3,35.0,4,112,1,72,78,3.0,0.0,0.0,573.00891655575,0.0,208.54923849724264,39569.0,50,71,8,7463,201108504,,,,,0.0,1.0,4.0,1.0,3.0,2.0,3282.995112723225,0.0,420.0,120.0,0.0,25397.0,5,7,3,70.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,781.5581550529927,0.01975177929826361,0.03077364078643118,12698.5,3,2,3_1,3_0_1,3_1_1,3_0_1 -8505,2,53.0,2,0.0,1,112,2,62,21,8.0,0.0,0.0,571.6446096115696,4141.440294491076,0.0,54564.0,50,50,1,7464,201108505,,,251.0,,2.0,1.0,6.0,1.0,3.0,2.0,3122.4191681206576,0.0,419.0,0.0,0.0,55248.0,1,1,2,202.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4713.084904102646,0.08637718833118257,0.08530779221153066,27624.0,8,4,8,8_1,8_0,8_1_0 -8506,2,58.0,3,0.0,1,211,6,78,78,6.0,0.0,693.9631597817199,866.3349095545268,208.54923849724264,0.0,49565.0,41,50,1,7467,201108506,,,260.0,,0.0,4.0,6.0,0.0,2.0,1.5,1700.4281216886277,0.0,635.0,0.0,0.0,30791.0,5,5,1,120.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1768.8473078334894,0.035687426769565,0.05744689382720566,20527.333333333332,6,3,6,6_1,6_1,6_1_0 -8507,2,46.0,2,0.0,1,111,2,0,31,10.0,0.0,0.0,1615.5661083394994,0.0,519.3464234206544,51799.0,0,31,2,7468,201108507,,,,,1.0,0.0,4.0,0.0,1.0,1.0,4477.6254034438125,483.0,1000.0,0.0,0.0,71730.0,0,1,2,85.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2134.912531760154,0.04121532330276943,0.029763174846788705,71730.0,10,5,10,10_0,10_4,10_1_0 -8508,2,38.0,2,0.0,6,111,1,0,46,7.0,0.0,0.0,682.1534720901786,0.0,0.0,37327.0,0,30,2,7469,201108508,,,,,1.0,0.0,4.0,1.0,2.0,1.3,6103.870939772857,0.0,500.0,0.0,0.0,32015.0,0,1,2,100.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,682.1534720901786,0.01827506823720574,0.02130730820209835,24626.923076923074,7,4,7,7_0,7_4,7_0_0 -8509,2,61.0,3,0.0,1,221,2,85,75,4.0,0.0,277.585263912688,518.4366387885358,145.98446694806984,0.0,20584.0,71,50,1,747,201108509,,,289.0,,0.0,0.0,5.0,0.0,2.0,1.5,2097.3411141607876,0.0,380.0,0.0,0.0,23838.0,6,5,1,150.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,942.0063696492937,0.04576400940775815,0.0395170051870666,15892.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -8510,2,59.0,3,0.0,6,300,2,11,75,3.0,1110.5192063972174,0.0,518.4366387885358,243.30744491344973,0.0,18356.0,60,50,1,7471,201108510,,,110.0,,1.0,3.0,5.0,0.0,2.0,1.5,1667.573055532982,0.0,380.0,0.0,0.0,20942.0,1,5,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1872.263290099203,0.10199734637716294,0.08940231544738816,13961.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -8511,2,32.0,3,0.0,4,111,1,0,63,6.0,0.0,0.0,764.011888741,0.0,0.0,11419.0,0,70,2,7472,201108511,,,,200.0,1.0,2.0,1.0,0.0,2.0,1.5,3129.9632658274145,0.0,560.0,0.0,0.0,31060.0,0,1,3,30.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,764.011888741,0.06690707494009983,0.02459793588992273,20706.666666666668,6,3,6,6_0,6_4,6_0_1 -8512,2,71.0,3,0.0,1,112,2,71,71,3.0,0.0,0.0,1227.8762497623215,0.0,2309.682816356962,19231.0,70,70,1,7473,201108512,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1569.1161287214957,0.0,900.0,1329.0,0.0,19127.0,5,5,1,132.0,8,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3537.5590661192837,0.18395086402783442,0.18495106739788172,12751.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -8513,1,47.0,3,240.0,4,111,1,0,54,4.0,0.0,0.0,573.00891655575,0.0,231.14207266777726,39154.0,0,71,2,7479,201108513,,,,86.0,3.0,0.0,5.0,3.0,4.0,2.5,1750.1291268157504,0.0,420.0,133.0,0.0,38362.0,0,4,3,84.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,804.1509892235273,0.020538156745761028,0.02096217583086198,15344.8,4,2,4_1,4_0_1,4_3_1,4_0_1 -8514,2,81.0,2,0.0,1,120,5,0,71,3.0,0.0,0.0,409.2920832541072,48.661488982689946,0.0,17052.0,0,70,1,7482,201108514,,,60.0,,0.0,3.0,4.0,0.0,1.0,1.0,2282.613767787955,0.0,300.0,0.0,0.0,13383.0,0,5,1,79.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,457.95357223679713,0.026856296753272176,0.03421905194924883,13383.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -8515,2,80.0,3,0.0,5,112,2,78,78,4.0,0.0,693.9631597817199,982.3009998098572,86.89551604051776,0.0,14401.0,70,70,1,7483,201108515,,,260.0,,0.0,2.0,4.0,0.0,2.0,1.5,1354.9982492185609,0.0,720.0,0.0,0.0,23568.0,5,5,1,80.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1763.1596756320948,0.12243314183960106,0.07481159519823892,15712.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -8516,2,29.0,3,0.0,2,111,2,55,53,6.0,0.0,0.0,1732.6698191090536,0.0,2139.3676049175474,19844.0,42,71,2,7485,201108516,,,,400.0,2.0,0.0,3.0,0.0,2.0,1.5,3926.219942668925,0.0,1270.0,1231.0,0.0,28844.0,4,1,3,90.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3872.037424026601,0.19512383713095147,0.1342406540017543,19229.333333333332,5,3,5,5_0,5_2,5_0_1 -8517,2,58.0,3,0.0,4,111,1,0,77,7.0,0.0,0.0,177.35990274344644,0.0,104.27461924862132,21082.0,0,60,2,7486,201108517,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3042.429837681029,0.0,130.0,60.0,0.0,24192.0,0,5,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,281.6345219920678,0.013359003984065448,0.01164163864054513,24192.0,7,4,7,7_0,7_4,7_0_1 -8518,2,33.0,3,0.0,9,112,2,56,64,4.0,0.0,0.0,1780.4205621553663,375.3886292950367,0.0,55049.0,41,41,1,7487,201108518,,,437.0,,2.0,0.0,5.0,2.0,4.0,2.1,1859.7499319348885,0.0,1305.0,0.0,0.0,32711.0,1,1,2,142.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2155.809191450403,0.03916164129140226,0.06590471680628544,15576.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -8519,2,52.0,3,0.0,6,111,2,52,48,6.0,0.0,0.0,1518.4736288727377,173.79103208103552,0.0,24109.0,31,60,1,7488,201108519,,,323.0,,3.0,2.0,4.0,2.0,4.0,2.3,1374.0255378397944,0.0,1113.0,0.0,0.0,43665.0,1,1,2,120.0,6,5.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1692.2646609537733,0.0701922377930969,0.0387556317635125,18984.782608695652,5,3,5,5_1,5_2,5_0_0 -8520,1,38.0,3,142.0,4,111,1,55,67,2.0,0.0,0.0,517.0723318443554,0.0,0.0,21171.0,50,50,2,7489,201108520,,,,168.0,2.0,0.0,4.0,2.0,4.0,2.1,1715.1644777008203,0.0,379.0,0.0,0.0,25036.0,4,1,3,75.0,4,4.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,517.0723318443554,0.024423613992931623,0.020653152733837492,11921.904761904761,2,1,2_1,2_0_1,2_2_1,2_0_1 -8521,1,22.0,3,300.0,6,111,6,84,84,2.0,0.0,0.0,1023.230208135268,0.0,0.0,20611.0,20,20,2,749,201108521,,,,420.0,0.0,0.0,2.0,0.0,2.0,1.5,3677.5112607094793,0.0,750.0,0.0,0.0,17857.0,3,3,3,30.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1023.230208135268,0.04964485993572694,0.05730135006637554,11904.666666666666,2,1,2_1,2_0_1,2_4_1,2_0_0 -8522,2,59.0,1,0.0,1,111,2,34,34,10.0,0.0,0.0,1173.5831766936326,0.0,2425.767145418212,106683.0,20,20,1,7492,201108522,,,250.0,,2.0,2.0,6.0,0.0,2.0,1.5,1199.1370028639928,2256.0,0.0,0.0,0.0,157317.0,1,1,1,200.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3599.3503221118444,0.03373874302477287,0.022879601836494748,104878.0,10,5,10,10_1,10_3,10_1_0 -8523,2,53.0,1,0.0,1,111,2,43,37,10.0,0.0,0.0,988.3900867543892,0.0,2042.9776490667568,67931.0,20,10,1,7493,201108523,,,519.0,,3.0,4.0,6.0,1.0,3.0,2.0,1761.480261541413,1900.0,0.0,0.0,0.0,89390.0,1,4,1,130.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3031.367735821146,0.04462421774773147,0.03391170976419226,44695.0,10,5,10,10_1,10_4,10_1_0 -8524,2,26.0,1,0.0,9,111,2,0,84,1.0,0.0,0.0,148.70945691565893,0.0,231.14207266777726,44283.0,0,12,1,7495,201108524,,,138.0,,0.0,0.0,7.0,0.0,1.0,1.0,3025.881811079487,0.0,109.0,133.0,0.0,866.0,0,3,3,120.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,379.8515295834362,0.008577818340750089,0.43862763231343677,866.0,1,1,1_0,1_1_0,1_3_0,1_0_0 -8525,2,88.0,3,0.0,1,111,4,0,86,3.0,0.0,0.0,95.501486092625,201.5975972140012,0.0,12548.0,0,71,1,7496,201108525,,,226.0,,0.0,4.0,3.0,0.0,1.0,1.0,2936.291490665485,0.0,70.0,0.0,0.0,12670.0,0,6,1,60.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,297.0990833066262,0.023677006957812097,0.023449019992630323,12670.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -8526,2,65.0,4,0.0,3,111,2,0,78,4.0,0.0,0.0,1121.4603081162536,0.0,2261.021327374272,24887.0,0,70,1,7497,201108526,,,215.0,,0.0,0.0,5.0,0.0,1.0,1.0,2035.3481912315904,0.0,822.0,1301.0,0.0,14670.0,0,5,5,74.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3382.4816354905256,0.1359135948684263,0.2305713452958777,14670.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -8527,2,27.0,4,0.0,5,111,2,0,46,5.0,0.0,0.0,128.2448527529536,0.0,0.0,9527.0,0,42,2,7499,201108527,,,,272.0,1.0,0.0,2.0,0.0,1.0,1.0,3195.8145102143335,0.0,94.0,0.0,0.0,17000.0,0,1,3,57.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,128.2448527529536,0.013461200037047717,0.0075438148678208,17000.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -8528,2,34.0,3,0.0,1,111,2,0,46,1.0,0.0,0.0,736.7257498573929,0.0,563.0829439425551,27747.0,0,30,1,75,201108528,,,350.0,,1.0,0.0,5.0,0.0,1.0,1.0,2732.3006259693675,0.0,540.0,324.0,0.0,8863.0,0,1,3,106.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1299.8086937999478,0.04684501725591768,0.1466556125239702,8863.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -8529,1,69.0,4,118.0,3,111,1,0,77,2.0,0.0,0.0,150.8595395572489,0.0,311.8229043312418,9940.0,0,60,8,7500,201108529,,,97.0,158.0,0.0,3.0,3.0,0.0,1.0,1.0,3179.5851397509978,290.0,0.0,0.0,0.0,11096.0,0,5,3,67.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,462.68244388849064,0.04654752956624654,0.041698129405956255,11096.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -8530,2,80.0,1,0.0,5,111,2,0,77,5.0,0.0,0.0,965.929316479693,130.34327406077665,0.0,13929.0,0,70,2,7501,201108530,,,,315.0,0.0,5.0,5.0,0.0,1.0,1.0,2926.3522639149787,0.0,708.0,0.0,0.0,17188.0,0,5,3,80.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1096.2725905404695,0.07870432841844135,0.06378127708520302,17188.0,5,3,5,5_0,5_2,5_0_0 -8531,2,56.0,3,0.0,5,111,5,75,68,7.0,0.0,1179.737371628924,1039.2881209547822,0.0,174.19072586779714,40274.0,50,50,1,7503,201108531,,,215.0,,1.0,4.0,6.0,0.0,2.0,1.5,1406.5386839702253,162.0,700.0,0.0,0.0,34402.0,5,1,1,160.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2393.216218451503,0.05942335547627509,0.06956619436229007,22934.666666666668,7,4,7,7_1,7_2,7_0_0 -8532,2,48.0,3,0.0,9,112,2,43,47,10.0,0.0,555.170527825376,1414.7863011150305,0.0,1906.4876219289597,75214.0,33,50,1,7504,201108532,,,731.0,,3.0,0.0,7.0,3.0,5.0,2.8,1178.5297592010943,0.0,1037.0,1097.0,0.0,118978.0,1,1,2,200.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3876.444450869366,0.051538868440308534,0.03258118686538155,42492.14285714286,10,5,10,10_1,10_1,10_0_0 -8533,2,30.0,2,0.0,1,300,6,0,47,5.0,793.228004569441,0.0,886.7995137172322,312.82385774586396,0.0,23751.0,0,31,1,7506,201108533,,,195.0,,1.0,0.0,5.0,2.0,3.0,1.6,2659.050762917237,0.0,650.0,0.0,0.0,28807.0,0,1,2,100.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1992.8513760325372,0.08390599873826522,0.06917941389358619,18004.375,5,3,5,5_1,5_0,5_1_0 -8535,2,61.0,3,0.0,5,112,5,47,72,5.0,983.602725666107,69.396315978172,927.728722042643,312.82385774586396,0.0,22981.0,70,50,1,7509,201108535,,,284.0,,1.0,1.0,4.0,0.0,2.0,1.5,3224.8025747977385,0.0,680.0,0.0,0.0,26312.0,4,5,1,84.0,7,1.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2293.5516214327863,0.09980208091174389,0.08716751373642392,17541.333333333332,5,3,5,5_1,5_1,5_0_0 -8536,1,81.0,4,248.0,4,120,1,0,86,2.0,0.0,0.0,695.7965415319821,0.0,0.0,8881.0,0,71,2,751,201108536,999999.0,80.0,,,0.0,1.0,1.0,0.0,1.0,1.0,3567.2849302608415,0.0,510.0,0.0,0.0,11691.0,0,5,3,35.0,0,3.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,695.7965415319821,0.07834664356851505,0.05951557108305382,11691.0,2,1,2_1,2_0_1,2_1_1,2_0_1 -8537,2,38.0,3,0.0,1,112,6,0,63,6.0,2474.871374256656,0.0,603.0236693277179,291.9689338961397,0.0,16273.0,0,50,5,7512,201108537,,,1912.0,,1.0,2.0,4.0,1.0,2.0,1.5,4117.2112216697815,0.0,442.0,0.0,0.0,29280.0,0,1,1,110.0,5,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3369.8639774805138,0.2070831424740683,0.11509098283744924,19520.0,6,3,6,6_1,6_0,6_1_0 -8538,2,45.0,2,0.0,7,120,4,63,37,8.0,0.0,0.0,1364.3069441803573,312.82385774586396,0.0,44320.0,43,10,1,7513,201108538,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.3,2061.7329699771617,0.0,1000.0,0.0,0.0,63727.0,1,1,1,130.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1677.1308019262212,0.03784139896042918,0.026317429063445967,27707.391304347828,8,4,8,8_1,8_0,8_0_0 -8539,2,32.0,2,0.0,99,111,2,52,63,4.0,0.0,24.98267375214192,859.5133748336251,31.282385774586395,2989.205751793811,45778.0,42,50,1,7514,201108539,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1492.9982150027977,0.0,630.0,1720.0,0.0,30966.0,1,1,2,100.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3904.9841861541645,0.08530263851968553,0.12610554111458258,14745.714285714284,3,2,3_0,3_1_0,3_2_0,3_0_0 -8540,2,42.0,2,0.0,6,111,2,52,47,7.0,0.0,0.0,2207.7733416628325,166.8393907977941,446.2293286119494,36162.0,50,31,1,7516,201108540,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2069.0544561534293,415.0,1460.0,0.0,0.0,58477.0,1,1,2,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2820.842061072576,0.07800569827643869,0.04823848797087019,24365.416666666668,7,4,7,7_1,7_3,7_0_0 -8541,1,74.0,3,209.0,5,111,1,0,77,2.0,0.0,0.0,0.0,0.0,0.0,7313.0,0,70,8,7517,201108541,,,,,0.0,1.0,1.0,0.0,1.0,1.0,3247.9896231030975,0.0,0.0,0.0,0.0,11308.0,0,5,3,30.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0.0,0.0,0.0,11308.0,2,1,2_1,2_0_1,2_4_1,2_0_0 -8542,1,46.0,2,30.0,4,221,2,42,38,7.0,0.0,0.0,1702.2843193092676,0.0,4049.803320306795,97322.0,41,31,1,752,201108542,,,,,2.0,0.0,4.0,3.0,5.0,2.8,1407.935968151337,1148.0,810.0,1620.0,0.0,64612.0,1,1,2,80.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,5752.087639616062,0.05910367275247182,0.0890250671642429,23075.714285714286,7,4,7,7_1,7_1,7_0_1 -8543,2,45.0,3,0.0,3,111,2,85,53,5.0,0.0,0.0,1570.3172927515911,1546.740185521216,0.0,49928.0,50,43,1,7520,201108543,,,676.0,,1.0,0.0,3.0,2.0,4.0,2.1,1454.3086544113303,0.0,1151.0,0.0,0.0,39584.0,6,1,2,99.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3117.057478272807,0.062431050277856254,0.07874538900244561,18849.52380952381,5,3,5,5_1,5_2,5_0_1 -8544,1,33.0,3,127.0,4,111,4,85,52,2.0,0.0,0.0,1364.3069441803573,1251.2954309834558,0.0,40549.0,71,33,2,7521,201108544,,,600.0,,1.0,0.0,4.0,2.0,4.0,2.1,4548.033203977798,0.0,1000.0,0.0,0.0,24754.0,7,1,3,78.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2615.602375163813,0.06450473193331063,0.10566382706487086,11787.619047619048,2,1,2_1,2_0_1,2_3_1,2_0_1 -8545,2,51.0,3,0.0,4,111,2,0,52,7.0,0.0,0.0,504.79356934673217,0.0,88.63342636132812,14091.0,0,50,2,7522,201108545,,,,500.0,1.0,1.0,3.0,0.0,1.0,1.0,1744.0828312748927,0.0,370.0,51.0,0.0,23341.0,0,1,3,65.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,593.4269957080603,0.04211390218636437,0.025424231854164786,23341.0,7,4,7,7_0,7_3,7_0_1 -8546,2,78.0,2,0.0,1,221,2,72,71,3.0,1586.456009138882,0.0,491.1504999049286,312.82385774586396,0.0,24005.0,70,70,1,7523,201108546,,,220.0,,0.0,5.0,5.0,0.0,2.0,1.5,1938.310416955325,0.0,360.0,0.0,0.0,20516.0,5,5,1,71.0,1,1.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2390.4303667896747,0.09958051934137366,0.11651542049082056,13677.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0 -8547,2,75.0,3,0.0,2,112,5,77,71,2.0,0.0,555.170527825376,532.0797082303393,194.64595593075978,0.0,22153.0,70,70,1,7524,201108547,,,71.0,,0.0,2.0,4.0,0.0,2.0,1.5,1583.807610227274,0.0,390.0,0.0,0.0,18465.0,5,5,1,118.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1281.896191986475,0.05786557992084481,0.06942302691505416,12310.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -8548,2,56.0,1,0.0,3,111,1,0,33,10.0,713.905204112497,0.0,1311.3062178079622,0.0,623.6458086624835,34042.0,0,10,2,7525,201108548,450.0,450.0,,,1.0,0.0,2.0,0.0,1.0,1.0,3911.2761021879924,580.0,740.0,0.0,0.0,108877.0,0,1,1,60.0,9,7.0,1,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2648.8572305829425,0.07781144558436469,0.02432889619095808,108877.0,10,5,10,10_0,10_3,10_0_1 -8549,0,44.0,3,0.0,1,400,2,22,37,5.0,2379.684013708323,0.0,818.5841665082144,253.73490683831187,0.0,52754.0,31,31,1,7527,201108549,,,450.0,,2.0,0.0,5.0,1.0,3.0,2.0,4014.0346379439943,0.0,600.0,0.0,0.0,36688.0,1,1,5,162.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3452.0030870548494,0.0654358548556479,0.0940907950025853,18344.0,5,3,5,5_1,5_0,5_1_0 -8550,2,54.0,3,0.0,2,111,1,0,52,4.0,0.0,0.0,117.33039719951073,0.0,342.36833319964,12436.0,0,50,2,7528,201108550,,,,358.0,1.0,2.0,4.0,0.0,1.0,1.0,1652.06846788867,0.0,86.0,197.0,0.0,15050.0,0,1,3,70.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,459.69873039915075,0.036965160051395204,0.030544766139478454,15050.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -8551,2,56.0,2,0.0,5,400,2,13,13,3.0,2379.684013708323,0.0,682.1534720901786,291.9689338961397,0.0,35231.0,50,71,1,7529,201108551,,,,,2.0,3.0,6.0,0.0,2.0,1.5,2395.4134327256033,0.0,500.0,0.0,0.0,19334.0,1,1,1,150.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3353.8064196946416,0.09519475517852577,0.1734667642337148,12889.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0 -8552,2,51.0,2,0.0,2,111,2,56,62,9.0,0.0,0.0,1207.4116455996161,0.0,1025.3670892781097,53221.0,50,41,1,7530,201108552,,,571.0,,2.0,2.0,4.0,1.0,3.0,2.0,1716.1413706304393,0.0,885.0,590.0,0.0,63595.0,1,1,1,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2232.7787348777256,0.04195296471087964,0.035109344050282654,31797.5,9,5,9,9_1,9_4,9_0_1 -8553,1,41.0,3,40.0,9,300,5,64,56,1.0,0.0,291.4645271083224,1637.1683330164287,165.10148047698374,0.0,51111.0,71,50,1,7532,201108553,,,328.0,,2.0,0.0,6.0,2.0,4.0,2.5,2484.2148116933686,0.0,1200.0,0.0,0.0,19957.0,1,1,2,111.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2093.734340601735,0.040964456586678695,0.10491227842870847,7982.8,1,1,1_1,1_1_1,1_0_1,1_0_0 -8555,2,28.0,2,0.0,7,111,4,43,47,6.0,0.0,0.0,1077.8024859024822,0.0,0.0,24044.0,41,31,2,7534,201108555,,,,,2.0,0.0,1.0,0.0,2.0,1.5,4758.299316100227,0.0,790.0,0.0,0.0,28680.0,3,1,2,36.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1077.8024859024822,0.04482625544428889,0.03758028193523299,19120.0,5,3,5,5_0,5_4,5_0_0 -8556,1,22.0,3,290.0,99,111,1,84,84,3.0,0.0,0.0,54.57227776721429,0.0,0.0,7490.0,31,41,2,7536,201108556,,,,,0.0,0.0,1.0,0.0,2.0,1.5,2903.70668464828,0.0,40.0,0.0,0.0,19997.0,3,3,3,40.0,6,5.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,54.57227776721429,0.007286018393486554,0.0027290232418469913,13331.333333333334,3,2,3_1,3_0_1,3_2_1,3_0_0 -8557,2,35.0,4,0.0,7,111,2,0,42,2.0,0.0,0.0,1500.737638598393,118.17790181510415,0.0,33010.0,0,31,2,7538,201108557,,,,927.0,1.0,0.0,3.0,1.0,2.0,1.3,3396.5657950429677,0.0,1100.0,0.0,0.0,14706.0,0,4,3,75.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1618.9155404134972,0.04904318510795205,0.11008537606510929,11312.307692307691,2,1,2_0,2_0_0,2_3_0,2_0_0 -8558,2,71.0,3,0.0,4,120,2,77,78,4.0,0.0,1401.8055827590742,613.9381248811608,583.9378677922793,0.0,51677.0,71,50,1,7539,201108558,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1983.0957321860667,0.0,450.0,0.0,0.0,22290.0,5,5,1,88.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2599.6815754325144,0.050306356317752855,0.1166299495483407,14860.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -8559,0,51.0,3,0.0,3,211,2,0,55,4.0,0.0,0.0,0.0,0.0,0.0,7076.0,0,20,3,754,201108559,,,,,1.0,1.0,2.0,0.0,1.0,1.0,2035.3725759535678,0.0,0.0,0.0,0.0,14698.0,0,1,5,36.0,3,3.0,1,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,14698.0,3,2,3_0,3_0_0,3_1_0,3_0_1 -8560,2,75.0,2,0.0,4,111,2,0,74,9.0,0.0,0.0,409.2920832541072,0.0,1911.7013528913908,14904.0,0,60,1,7540,201108560,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3283.929221863952,0.0,300.0,1100.0,0.0,29233.0,0,5,1,90.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2320.993436145498,0.15572956495876933,0.07939634783106414,29233.0,9,5,9,9_1,9_3,9_0_1 -8561,2,47.0,2,0.0,9,400,4,54,52,5.0,0.0,0.0,1828.1713052016787,0.0,0.0,39235.0,20,50,1,7542,201108561,,,640.0,,2.0,0.0,4.0,2.0,4.0,2.1,1120.1146962819482,0.0,1340.0,0.0,0.0,35159.0,1,1,2,115.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1828.1713052016787,0.04659542003827396,0.05199724978530899,16742.38095238095,4,2,4_0,4_1_0,4_0_0,4_0_0 -8562,1,17.0,2,171.0,7,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,10531.0,0,42,2,7543,201108562,,,,194.0,0.0,0.0,1.0,0.0,1.0,1.0,3501.331556208733,0.0,0.0,0.0,0.0,4457.0,0,3,3,23.0,9,7.0,1,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,4457.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -8563,2,45.0,1,0.0,6,111,4,37,38,10.0,0.0,416.377895869032,1856.8920919724114,191.17013528913907,905.3616739548469,75420.0,12,12,1,7546,201108563,,,323.0,,2.0,0.0,6.0,3.0,5.0,2.6,1936.2750719901737,842.0,1040.0,0.0,0.0,97787.0,1,1,2,145.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3369.8017970854294,0.04468047994014093,0.03446063175151533,37610.38461538462,10,5,10,10_1,10_3,10_0_0 -8564,0,25.0,3,0.0,1,300,4,0,42,2.0,0.0,0.0,204.6460416270536,76.46805411565563,0.0,12556.0,0,20,2,7547,201108564,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3016.288574148646,0.0,150.0,0.0,0.0,9564.0,0,1,5,60.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,281.1140957427092,0.022388825720190283,0.029392941838426306,9564.0,1,1,1_0,1_0_0,1_0_0,1_1_0 -8565,2,24.0,4,0.0,6,112,4,0,47,4.0,90.42799252091629,70.78424229773543,959.1077817587911,34.7582064162071,0.0,27009.0,0,20,1,7548,201108565,,,363.0,,2.0,2.0,6.0,1.0,2.0,1.5,3233.0754817328652,0.0,703.0,0.0,0.0,22561.0,0,1,1,100.0,10,0.0,2,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1155.07822299365,0.04276641945253989,0.051198006426738614,15040.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -8566,2,65.0,3,0.0,8,300,2,0,77,5.0,0.0,0.0,859.5133748336251,0.0,0.0,21222.0,0,41,1,755,201108566,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2531.343379869215,0.0,630.0,0.0,0.0,18577.0,0,5,3,51.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,859.5133748336251,0.0405010543225721,0.04626760913137886,18577.0,5,3,5,5_1,5_0,5_0_0 -8567,2,50.0,1,0.0,2,111,2,38,46,10.0,0.0,152.6718951519784,845.8703053918215,0.0,2650.3132392357916,73065.0,31,31,1,7550,201108567,,,480.0,,3.0,1.0,6.0,1.0,3.0,2.0,2609.16226779219,0.0,620.0,1525.0,0.0,83562.0,1,1,2,150.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3648.8554397795915,0.049939854099494856,0.04366644455350029,41781.0,10,5,10,10_1,10_2,10_0_1 -8568,1,29.0,3,80.0,6,111,4,56,62,5.0,0.0,0.0,873.1564442754286,217.2387901012944,0.0,41109.0,50,30,1,7551,201108568,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2616.001956589103,0.0,640.0,0.0,0.0,37099.0,4,1,3,140.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1090.395234376723,0.026524489391051183,0.029391499349759372,17666.190476190477,5,3,5,5_1,5_2,5_0_0 -8569,2,63.0,3,0.0,4,120,1,68,62,6.0,0.0,0.0,900.4425831590357,0.0,2068.113281764323,19941.0,60,70,1,7554,201108569,,,145.0,540.0,2.0,3.0,4.0,0.0,2.0,1.5,3368.396699179776,0.0,660.0,1190.0,0.0,31251.0,1,1,3,102.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2968.5558649233585,0.14886695075088302,0.09499074797361232,20834.0,6,3,6,6_1,6_1,6_0_1 -8570,2,47.0,2,0.0,1,111,6,56,52,4.0,0.0,0.0,1637.1683330164287,0.0,0.0,47304.0,50,50,2,7555,201108570,,,,,2.0,0.0,2.0,1.0,3.0,2.0,3187.576733168337,0.0,1200.0,0.0,0.0,32479.0,1,1,1,40.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1637.1683330164287,0.03460951152157172,0.05040698091124815,16239.5,4,2,4_0,4_0_0,4_4_0,4_1_0 -8571,2,83.0,3,0.0,4,111,1,0,75,6.0,0.0,0.0,261.9469332826286,0.0,126.86745341915594,14262.0,0,71,2,7556,201108571,,,,442.0,0.0,0.0,2.0,0.0,1.0,1.0,4149.375151321343,0.0,192.0,73.0,0.0,20366.0,0,5,3,49.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,388.81438670178454,0.02726226242475,0.0190913476726792,20366.0,6,3,6,6_0,6_3,6_0_1 -8572,2,51.0,3,0.0,8,112,2,85,67,4.0,0.0,0.0,613.9381248811608,651.7163703038832,0.0,20244.0,71,50,1,7558,201108572,,,351.0,,1.0,2.0,4.0,0.0,2.0,1.5,2183.477667111889,0.0,450.0,0.0,0.0,24901.0,7,1,3,80.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1265.654495185044,0.06251998099116005,0.05082745653528147,16600.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0 -8573,2,42.0,2,0.0,9,221,5,56,63,7.0,0.0,1053.4360765486508,818.5841665082144,173.79103208103552,0.0,42964.0,50,50,1,7559,201108573,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3162.495475794202,0.0,600.0,0.0,0.0,41475.0,1,1,2,98.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2045.8112751379008,0.0476168716864794,0.04932637191411455,23041.666666666668,7,4,7,7_1,7_1,7_0_0 -8574,2,37.0,3,0.0,99,120,4,85,21,2.0,0.0,0.0,2169.248041246768,86.89551604051776,0.0,24923.0,50,50,1,756,201108574,,,760.0,,1.0,0.0,4.0,2.0,4.0,2.1,2340.6421737247406,0.0,1590.0,0.0,0.0,25025.0,7,1,1,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2256.1435572872856,0.09052455792991557,0.09015558670478664,11916.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0 -8575,2,35.0,2,0.0,2,111,1,56,53,4.0,0.0,0.0,0.0,0.0,0.0,18818.0,71,41,2,7560,201108575,,,,400.0,2.0,1.0,3.0,1.0,3.0,1.8,3512.1561154028,0.0,0.0,0.0,0.0,29373.0,4,1,3,54.0,8,6.0,4,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,16318.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_1 -8576,2,64.0,5,0.0,99,111,1,78,75,6.0,0.0,0.0,573.00891655575,0.0,225.92834170534618,32168.0,71,70,2,7561,201108576,,,,430.0,1.0,4.0,5.0,1.0,3.0,2.0,3822.759733877953,0.0,420.0,130.0,0.0,39344.0,5,5,3,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,798.9372582610962,0.024836398229952008,0.020306457357185243,19672.0,6,3,6,6_0,6_3,6_0_0 -8577,2,84.0,3,0.0,1,221,2,0,71,1.0,3172.912018277764,0.0,668.510402648375,46.92357866187959,0.0,18833.0,0,71,1,7562,201108577,,,100.0,,0.0,1.0,4.0,0.0,1.0,1.0,5585.505621262569,0.0,490.0,0.0,0.0,8700.0,0,5,1,70.0,1,1.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3888.345999588019,0.2064645037746519,0.4469363217917263,8700.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -8578,1,42.0,5,239.0,5,112,2,56,64,1.0,1218.3982150186616,0.0,955.0148609262501,0.0,0.0,41841.0,50,60,1,7563,201108578,,,625.0,,2.0,0.0,7.0,3.0,5.0,2.4,1392.6553476033077,0.0,700.0,0.0,0.0,20935.0,1,1,2,120.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2173.4130759449117,0.05194457770954116,0.10381719971076722,8722.916666666668,1,1,1_1,1_1_1,1_0_1,1_0_0 -8579,1,43.0,2,70.0,2,111,2,85,46,1.0,0.0,0.0,0.0,0.0,0.0,20091.0,41,71,1,7564,201108579,,,,580.0,1.0,0.0,3.0,2.0,4.0,2.1,2942.384534640059,0.0,0.0,0.0,0.0,8562.0,6,1,3,80.0,9,7.0,4,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0.0,0.0,0.0,4077.142857142857,1,1,1_1,1_1_1,1_3_1,1_0_1 -8580,2,77.0,3,0.0,4,112,2,77,78,8.0,0.0,0.0,675.3319373692768,0.0,3458.441538412607,17452.0,70,71,1,7567,201108580,,,473.0,,0.0,1.0,4.0,0.0,2.0,1.5,3213.6503768158304,0.0,495.0,1990.0,0.0,37360.0,5,5,1,97.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4133.7734757818835,0.23686531490842788,0.11064704164298403,24906.666666666668,8,4,8,8_1,8_0,8_0_1 -8581,0,26.0,2,0.0,1,111,2,0,63,6.0,0.0,0.0,0.0,0.0,0.0,16450.0,0,31,1,7568,201108581,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3183.9364897108944,0.0,0.0,0.0,0.0,19639.0,0,1,5,100.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0.0,0.0,0.0,19639.0,6,3,6,6_1,6_4,6_1_0 -8582,1,20.0,3,51.0,4,221,4,0,63,8.0,0.0,0.0,0.0,0.0,0.0,17000.0,0,50,1,7571,201108582,,,,,2.0,0.0,8.0,2.0,3.0,1.8,1774.9993724330604,0.0,0.0,0.0,0.0,50153.0,0,1,3,160.0,1,2.0,2,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0.0,0.0,0.0,27862.777777777777,8,4,8,8_1,8_1,8_0_1 -8583,2,53.0,4,0.0,3,111,4,0,62,4.0,0.0,0.0,955.0148609262501,0.0,0.0,10315.0,0,71,2,7575,201108583,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3508.0176377728426,0.0,700.0,0.0,0.0,15010.0,0,1,3,32.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,955.0148609262501,0.09258505680332042,0.06362524056803798,15010.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -8584,2,57.0,3,0.0,8,112,4,77,75,7.0,0.0,0.0,2046.460416270536,0.0,0.0,38207.0,70,70,1,7576,201108584,,,570.0,,0.0,2.0,4.0,0.0,2.0,1.5,3796.395105741965,0.0,1500.0,0.0,0.0,34450.0,4,5,1,95.0,8,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2046.460416270536,0.05356244709792802,0.05940378566823036,22966.666666666668,7,4,7,7_1,7_1,7_0_0 -8585,2,36.0,2,0.0,9,111,4,63,67,6.0,0.0,0.0,982.3009998098572,111.22626053186274,0.0,51635.0,50,50,1,7577,201108585,,,180.0,,2.0,0.0,3.0,2.0,4.0,2.1,1705.3552024711582,0.0,720.0,0.0,0.0,42839.0,1,1,3,68.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1093.52726034172,0.021178023827669604,0.025526442268533813,20399.52380952381,6,3,6,6_1,6_3,6_0_0 -8586,1,23.0,1,150.0,4,111,1,0,84,1.0,0.0,0.0,163.71683330164288,0.0,0.0,8914.0,0,41,2,7579,201108586,,,,215.0,0.0,0.0,1.0,0.0,1.0,1.0,3368.318204621219,0.0,120.0,0.0,0.0,4398.0,0,3,3,28.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,163.71683330164288,0.01836625906457739,0.03722529179209706,4398.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -8587,2,39.0,3,0.0,1,111,2,38,37,8.0,0.0,0.0,750.3688192991965,0.0,2085.4923849724264,37099.0,31,20,1,758,201108587,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,4731.903534602788,0.0,550.0,1200.0,0.0,52424.0,1,1,2,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2835.861204271623,0.07644036778003782,0.05409471242697282,24963.809523809523,8,4,8,8_1,8_4,8_1_0 -8588,1,57.0,4,213.0,4,111,1,56,67,2.0,0.0,0.0,491.1504999049286,0.0,312.82385774586396,25702.0,71,71,2,7580,201108588,,,,42.0,2.0,0.0,3.0,3.0,5.0,2.8,3246.494438936588,0.0,360.0,180.0,0.0,29846.0,1,1,3,76.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,803.9743576507926,0.031280614646750936,0.026937424031722598,10659.285714285716,2,1,2_1,2_0_1,2_3_1,2_0_1 -8589,2,58.0,4,0.0,1,400,5,85,21,1.0,0.0,1145.039213639838,545.7227776721429,198.1217765723805,0.0,40717.0,71,50,1,7584,201108589,,,60.0,,1.0,0.0,6.0,2.0,4.0,2.3,2792.9761562971817,0.0,400.0,0.0,0.0,10119.0,6,1,1,124.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1888.8837678843613,0.04639054370126388,0.18666703902404994,4399.565217391305,1,1,1_0,1_1_0,1_0_0,1_1_0 -8590,2,43.0,2,0.0,2,112,4,21,37,10.0,0.0,76.3359475759892,6219.8753585182485,0.0,0.0,104214.0,20,12,1,7585,201108590,,,690.0,,2.0,0.0,7.0,2.0,4.0,2.3,1577.2096593292208,0.0,4559.0,0.0,0.0,111620.0,1,1,1,250.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,6296.211306094237,0.06041617542839002,0.05640755515225083,48530.434782608696,10,5,10,10_1,10_0,10_0_1 -8591,2,37.0,2,0.0,8,111,2,37,37,9.0,0.0,0.0,103.68732775770715,0.0,0.0,73797.0,30,43,1,7587,201108591,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2783.1331651652845,0.0,76.0,0.0,0.0,62211.0,1,1,2,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,103.68732775770715,0.001405034456112134,0.0016667040838068373,29624.285714285714,9,5,9,9_1,9_4,9_0_0 -8592,0,25.0,2,0.0,6,112,4,0,63,1.0,142.7810408224994,0.0,0.0,0.0,0.0,7896.0,0,50,1,7588,201108592,,,,,1.0,0.0,5.0,0.0,1.0,1.0,1921.3337891790973,0.0,0.0,0.0,0.0,7130.0,0,4,5,134.0,10,0.0,1,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,142.7810408224994,0.01808270527133984,0.020025391419705385,7130.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -8593,2,62.0,2,0.0,1,111,6,85,22,1.0,0.0,0.0,955.0148609262501,0.0,1390.3282566482842,34741.0,71,71,1,7589,201108593,,,600.0,,2.0,1.0,5.0,2.0,4.0,2.5,3134.8291342897865,0.0,700.0,800.0,0.0,22980.0,6,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2345.3431175745345,0.06750937271738103,0.10206018788400933,9192.0,1,1,1_0,1_1_0,1_4_0,1_1_0 -8594,1,31.0,3,200.0,1,111,1,0,31,5.0,0.0,0.0,327.43366660328576,0.0,0.0,16825.0,0,10,2,759,201108594,,,,500.0,1.0,0.0,1.0,0.0,1.0,1.0,4292.033075796924,0.0,240.0,0.0,0.0,18393.0,0,4,3,21.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,327.43366660328576,0.01946113917404373,0.017802080498194192,18393.0,5,3,5,5_0,5_4,5_1_0 -8595,1,73.0,3,46.0,8,120,2,0,77,4.0,0.0,0.0,402.4705485332054,0.0,994.0847035035232,15471.0,0,70,1,7590,201108595,,,165.0,,0.0,0.0,3.0,0.0,1.0,1.0,3147.0386952055305,0.0,295.0,572.0,0.0,15345.0,0,5,3,72.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1396.5552520367287,0.0902692296578585,0.09101044327381745,15345.0,4,2,4_1,4_1_1,4_1_1,4_0_0 -8596,2,81.0,2,0.0,2,111,1,0,75,8.0,0.0,0.0,272.86138883607146,0.0,625.6477154917279,15676.0,0,70,2,7591,201108596,,,,380.0,0.0,2.0,4.0,0.0,1.0,1.0,2953.9271084501675,0.0,200.0,360.0,0.0,26540.0,0,5,3,85.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,898.5091043277994,0.05731749836232453,0.033854902197731705,26540.0,8,4,8,8_0,8_4,8_0_1 -8597,2,62.0,4,0.0,1,300,2,78,86,1.0,0.0,138.792631956344,1050.5163470188752,114.70208117348345,0.0,8041.0,70,70,1,7592,201108597,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2766.448318415207,0.0,770.0,0.0,0.0,11350.0,5,6,1,86.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1304.0110601487027,0.1621702599364137,0.11489084230385045,7566.666666666667,1,1,1_0,1_1_0,1_0_0,1_1_0 -8598,2,64.0,2,0.0,3,111,2,0,75,7.0,0.0,0.0,818.5841665082144,0.0,1129.641708526731,22391.0,0,50,2,7593,201108598,,,180.0,,0.0,1.0,4.0,0.0,1.0,1.0,2727.302445258566,0.0,600.0,650.0,0.0,21910.0,0,5,2,110.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1948.2258750349454,0.08700932852641442,0.08891948311432886,21910.0,7,4,7,7_0,7_2,7_0_1 -8599,2,44.0,4,0.0,7,111,4,68,63,2.0,0.0,0.0,1391.5930830639643,0.0,0.0,25440.0,71,71,2,7595,201108599,,,,,2.0,0.0,2.0,1.0,3.0,1.8,3247.041046674947,0.0,1020.0,0.0,0.0,18255.0,1,1,2,33.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1391.5930830639643,0.05470098596949545,0.0762307906362073,10141.666666666666,2,1,2_0,2_0_0,2_4_0,2_0_0 -8600,2,67.0,2,0.0,5,111,4,77,77,9.0,0.0,0.0,1364.3069441803573,48.661488982689946,0.0,67690.0,60,41,1,7597,201108600,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2852.3930836397526,0.0,1000.0,0.0,0.0,52579.0,5,5,1,115.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1412.9684331630472,0.0208741089254402,0.026873246603454748,35052.666666666664,9,5,9,9_1,9_3,9_0_0 -8601,1,23.0,3,28.0,1,111,2,0,21,2.0,0.0,0.0,818.5841665082144,0.0,695.1641283241421,38636.0,0,50,1,7598,201108601,,,400.0,,1.0,0.0,3.0,0.0,1.0,1.0,2968.4027380802113,0.0,600.0,400.0,0.0,12250.0,0,1,3,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1513.7482948323564,0.03917973638141516,0.1235712893740699,12250.0,2,1,2_1,2_1_1,2_3_1,2_1_0 -8602,2,68.0,1,0.0,1,300,2,71,71,5.0,1150.1806066256895,0.0,660.3245609832929,191.17013528913907,0.0,27709.0,50,50,1,7599,201108602,,,327.0,,0.0,1.0,6.0,0.0,2.0,1.5,1152.0492099561363,0.0,484.0,0.0,0.0,27844.0,5,5,1,140.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2001.6753028981216,0.07223917510188464,0.07188892770069392,18562.666666666668,5,3,5,5_1,5_0,5_1_0 -8603,2,61.0,3,0.0,5,112,2,77,21,7.0,3172.912018277764,0.0,859.5133748336251,0.0,0.0,33945.0,70,50,1,76,201108603,,,,,1.0,3.0,6.0,0.0,2.0,1.5,2434.8391889129643,0.0,630.0,0.0,0.0,33150.0,6,1,1,90.0,8,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4032.4253931113894,0.11879291186069788,0.1216417916474024,22100.0,7,4,7,7_1,7_0,7_0_0 -8604,2,72.0,2,0.0,3,111,2,0,78,2.0,3141.1828980949867,0.0,327.43366660328576,156.41192887293198,0.0,14433.0,0,71,1,760,201108604,,,110.0,,0.0,1.0,3.0,0.0,1.0,1.0,5351.901107631111,0.0,240.0,0.0,0.0,11161.0,0,5,5,80.0,7,5.0,1,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3625.0284935712048,0.25116250908135557,0.3247942382914797,11161.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -8605,1,36.0,3,193.0,9,111,2,0,52,2.0,0.0,0.0,417.4779249191893,0.0,729.9223347403492,23332.0,0,31,2,7600,201108605,,,,713.0,1.0,0.0,3.0,2.0,3.0,1.6,2514.6532988985005,0.0,306.0,420.0,0.0,17687.0,0,1,3,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1147.4002596595385,0.04917710696294953,0.06487251991064276,11054.375,2,1,2_1,2_0_1,2_3_1,2_0_0 -8606,2,39.0,4,0.0,7,112,4,55,37,6.0,0.0,0.0,2455.752499524643,0.0,0.0,63521.0,41,41,1,7601,201108606,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2703.482829932522,0.0,1800.0,0.0,0.0,44014.0,1,1,2,80.0,10,1.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2455.752499524643,0.038660482352680894,0.05579480391522341,20959.04761904762,6,3,6,6_1,6_1,6_0_0 -8607,2,40.0,4,0.0,99,111,1,56,67,2.0,0.0,0.0,654.8673332065715,0.0,0.0,20681.0,71,71,2,7602,201108607,,,,,2.0,3.0,2.0,0.0,2.0,1.5,2998.75850598315,0.0,480.0,0.0,0.0,17865.0,4,1,3,36.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,654.8673332065715,0.03166516770013885,0.036656441825164934,11910.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -8608,2,84.0,2,0.0,2,111,2,78,77,3.0,0.0,0.0,469.7453938627439,0.0,970.9520090038322,14460.0,70,70,2,7604,201108608,,,132.0,212.0,0.0,3.0,5.0,0.0,2.0,1.5,3964.9987736689873,903.0,0.0,0.0,0.0,21518.0,5,5,3,100.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1440.697402866576,0.09963329203779918,0.06695312774730812,14345.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_1 -8609,1,30.0,4,348.0,1,300,5,85,21,2.0,0.0,0.0,0.0,0.0,0.0,11818.0,71,50,1,7605,201108609,,,,,1.0,0.0,4.0,1.0,3.0,1.8,3259.0782038290113,0.0,0.0,0.0,0.0,19391.0,6,1,3,100.0,0,0.0,4,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0.0,0.0,0.0,10772.777777777777,2,1,2_1,2_1_1,2_0_1,2_1_0 -8610,2,42.0,3,0.0,5,111,2,56,63,2.0,0.0,0.0,559.3658471139465,0.0,1226.9646864921108,27965.0,50,50,1,7606,201108610,,,386.0,,2.0,0.0,5.0,2.0,4.0,2.1,1554.440468557527,0.0,410.0,706.0,0.0,20917.0,1,1,1,100.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1786.3305336060573,0.0638773657645649,0.08540089561629571,9960.47619047619,2,1,2_0,2_1_0,2_2_0,2_0_0 -8611,2,26.0,4,0.0,1,112,1,0,53,8.0,0.0,0.0,409.2920832541072,0.0,0.0,25096.0,0,42,2,7607,201108611,,,,540.0,1.0,0.0,2.0,0.0,1.0,1.0,3659.007055596194,0.0,300.0,0.0,0.0,25529.0,0,1,3,46.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,409.2920832541072,0.016309056553000766,0.01603243696400592,25529.0,8,4,8,8_0,8_2,8_1_0 -8612,2,57.0,4,0.0,6,111,2,22,46,1.0,0.0,0.0,737.6511279040652,0.0,1524.7064770403479,33752.0,50,42,2,761,201108612,,,,,2.0,2.0,4.0,0.0,2.0,1.5,3521.4958606409855,1418.0,0.0,0.0,0.0,7780.0,1,1,2,100.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2262.357604944413,0.06702884584452516,0.2907914659311585,5186.666666666667,1,1,1_0,1_0_0,1_3_0,1_0_0 -8613,2,45.0,4,0.0,1,112,2,75,67,7.0,0.0,0.0,1200.5901108787143,0.0,0.0,13657.0,70,71,1,7610,201108613,,,350.0,,1.0,4.0,3.0,0.0,2.0,1.5,2711.9696713314893,0.0,880.0,0.0,0.0,35610.0,5,1,1,90.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1200.5901108787143,0.08791023730531701,0.03371497081939664,23740.0,7,4,7,7_1,7_0,7_1_0 -8614,2,56.0,4,0.0,4,111,2,0,75,2.0,3014.2664173638764,0.0,395.6490138123036,76.46805411565563,0.0,9456.0,0,44,1,7611,201108614,,,180.0,,0.0,0.0,5.0,0.0,1.0,1.0,3175.960712744019,0.0,290.0,0.0,0.0,11737.0,0,7,1,140.0,9,7.0,1,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3486.3834852918358,0.36869537704016875,0.29704213046705596,11737.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -8615,2,24.0,2,0.0,1,111,1,0,63,1.0,0.0,0.0,0.0,0.0,0.0,15168.0,0,50,2,7612,201108615,,,,260.0,1.0,0.0,3.0,0.0,1.0,1.0,3882.696836579843,0.0,0.0,0.0,0.0,96.0,0,1,4,50.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,96.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -8616,2,34.0,2,0.0,2,111,1,0,46,6.0,0.0,0.0,425.66376658427146,0.0,156.41192887293198,28133.0,0,71,2,7614,201108616,,,,294.0,1.0,0.0,2.0,1.0,2.0,1.3,3156.7634320985253,0.0,312.0,90.0,0.0,25949.0,0,1,3,51.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,582.0756954572034,0.02069013953212254,0.02243152705141637,19960.76923076923,6,3,6,6_0,6_4,6_0_1 -8617,2,70.0,4,0.0,1,111,2,0,78,4.0,3172.912018277764,0.0,654.8673332065715,0.0,0.0,13899.0,0,70,1,7615,201108617,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2795.5230468698646,0.0,480.0,0.0,0.0,15562.0,0,5,1,60.0,8,7.0,1,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3827.7793514843356,0.27539962238177823,0.24596962803523556,15562.0,4,2,4_0,4_1_0,4_3_0,4_1_0 -8618,2,62.0,4,0.0,7,111,1,75,63,5.0,0.0,0.0,517.084076965191,0.0,1068.7998858801873,18528.0,71,50,2,7617,201108618,,,,400.0,3.0,1.0,3.0,2.0,5.0,2.8,2442.9583533959694,994.0,0.0,0.0,0.0,48620.0,5,1,3,69.0,8,7.0,5,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1585.8839628453784,0.08559390991177561,0.03261793424198639,17364.285714285714,5,3,5,5_0,5_3,5_0_0 -8619,2,52.0,1,0.0,6,400,4,52,21,9.0,0.0,0.0,538.4124946267331,93.84715732375918,1112.8851930442595,40105.0,50,43,1,7618,201108619,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2492.2383730784422,1035.0,0.0,0.0,0.0,46643.0,1,1,1,110.0,0,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1745.1448449947518,0.04351439583579982,0.037414935681554615,31095.333333333332,9,5,9,9_1,9_1,9_0_0 -8620,2,46.0,3,0.0,4,111,1,0,55,6.0,0.0,0.0,195.0958930177911,0.0,83.41969539889705,9001.0,0,50,2,7619,201108620,,,106.0,,1.0,0.0,3.0,0.0,1.0,1.0,3291.6352560952873,0.0,143.0,48.0,0.0,20080.0,0,1,2,70.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,278.51558841668816,0.03094273840869772,0.013870298227922717,20080.0,6,3,6,6_0,6_3,6_0_1 -8622,2,57.0,3,0.0,1,221,5,0,52,5.0,0.0,693.9631597817199,1508.923480263475,66.0405921907935,0.0,17070.0,0,50,1,7620,201108622,,,290.0,,1.0,1.0,3.0,1.0,3.0,2.0,4456.457755714883,0.0,1106.0,0.0,0.0,34159.0,0,1,1,85.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2268.927232235989,0.13291899427275858,0.06642253087725018,17079.5,5,3,5,5_1,5_1,5_1_0 -8623,2,45.0,3,0.0,1,111,2,85,62,5.0,0.0,0.0,818.5841665082144,0.0,955.8506764456954,14421.0,50,71,1,7621,201108623,,,450.0,,2.0,0.0,3.0,2.0,4.0,2.5,2275.149819838897,0.0,600.0,550.0,0.0,46111.0,6,1,1,80.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1774.4348429539098,0.12304520095374175,0.038481812213005784,18444.4,5,3,5,5_1,5_3,5_1_0 -8624,0,22.0,3,0.0,7,111,2,0,55,1.0,0.0,0.0,0.0,0.0,0.0,18644.0,0,30,2,7622,201108624,,,,,1.0,0.0,1.0,0.0,1.0,1.0,5409.8514939527495,0.0,0.0,0.0,0.0,6932.0,0,3,5,30.0,8,6.0,1,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,6932.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -8625,1,32.0,2,317.0,4,111,1,85,62,2.0,0.0,0.0,286.504458277875,0.0,417.0984769944853,15606.0,71,50,2,7623,201108625,,,460.0,19.0,1.0,0.0,5.0,3.0,5.0,2.4,2563.3516695738153,0.0,210.0,240.0,0.0,29444.0,6,1,3,90.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,703.6029352723604,0.04508541171808025,0.023896309444109507,12268.333333333334,2,1,2_1,2_0_1,2_2_1,2_0_1 -8626,1,44.0,4,260.0,2,400,1,63,56,1.0,0.0,0.0,982.3009998098572,55.61313026593137,0.0,22608.0,31,71,2,7626,201108626,,,,,2.0,3.0,4.0,0.0,2.0,1.5,7554.76821942072,0.0,720.0,0.0,0.0,13020.0,4,1,3,70.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1037.9141300757885,0.045909152958058586,0.07971690707187316,8680.0,1,1,1_1,1_0_1,1_1_1,1_0_1 -8627,2,51.0,3,0.0,6,120,5,52,63,8.0,0.0,1040.94473967258,859.5133748336251,271.11401004641544,0.0,25990.0,70,50,1,7628,201108627,,,320.0,,3.0,1.0,4.0,1.0,3.0,2.0,833.6768776884206,0.0,630.0,0.0,0.0,51714.0,1,1,1,105.0,0,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2171.5721245526206,0.08355414099856177,0.041991958165151035,25857.0,8,4,8,8_1,8_1,8_0_0 -8628,2,54.0,3,0.0,3,111,1,52,62,7.0,0.0,0.0,402.4705485332054,0.0,530.0626478471584,28984.0,70,43,2,7629,201108628,,,,213.0,2.0,2.0,3.0,0.0,2.0,1.5,1877.2000551203546,0.0,295.0,305.0,0.0,33139.0,1,1,3,61.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,932.5331963803637,0.032174068326675534,0.02814005239688475,22092.666666666668,7,4,7,7_0,7_2,7_0_1 -8629,2,47.0,3,0.0,9,120,6,45,53,8.0,0.0,0.0,1732.6698191090536,156.41192887293198,0.0,46905.0,41,60,1,763,201108629,,,470.0,,2.0,0.0,5.0,3.0,5.0,2.4,2286.7623339039114,0.0,1270.0,0.0,0.0,59482.0,1,1,2,90.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1889.0817479819857,0.04027463485730702,0.03175888080397407,24784.166666666668,7,4,7,7_1,7_1,7_0_0 -8631,2,57.0,1,0.0,1,112,2,37,31,10.0,0.0,0.0,611.2095109928,0.0,4170.984769944853,53770.0,20,10,1,7631,201108631,,,300.0,,2.0,3.0,9.0,0.0,2.0,1.5,2223.788191697009,0.0,448.0,2400.0,0.0,96522.0,1,1,2,190.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4782.194280937652,0.08893796319393067,0.04954512215803291,64348.0,10,5,10,10_1,10_2,10_1_0 -8632,1,70.0,4,57.0,9,300,2,0,75,4.0,0.0,0.0,402.4705485332054,0.0,1863.039863908701,14903.0,0,50,2,7632,201108632,,,,443.0,0.0,1.0,3.0,0.0,1.0,1.0,1682.7478559304884,0.0,295.0,1072.0,0.0,14784.0,0,5,3,84.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2265.5104124419063,0.15201707122337155,0.1532406934822718,14784.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -8633,0,64.0,3,0.0,2,120,2,85,78,1.0,0.0,0.0,828.4488952805975,0.0,1490.7263300998923,16029.0,71,71,2,7633,201108633,,,720.0,,0.0,1.0,4.0,1.0,3.0,2.0,8544.204541651583,255.0,510.0,700.0,0.0,18251.0,6,5,5,75.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2319.17522538049,0.14468620783458044,0.12707113173965753,9125.5,1,1,1_0,1_0_0,1_1_0,1_0_1 -8634,1,30.0,3,192.0,5,112,5,85,62,5.0,0.0,652.3253701948167,1023.230208135268,33.02029609539675,0.0,68238.0,50,50,2,7635,201108634,,,627.0,,1.0,0.0,5.0,2.0,4.0,2.1,3830.8106587659513,0.0,750.0,0.0,0.0,36768.0,6,1,3,96.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1708.5758744254815,0.025038481116467094,0.04646910015299939,17508.571428571428,5,3,5,5_0,5_0,5_0_0 -8635,2,59.0,3,0.0,3,111,2,85,22,1.0,0.0,0.0,802.2124831780501,0.0,0.0,21769.0,71,70,2,7636,201108635,,,,,1.0,4.0,4.0,2.0,4.0,2.5,3148.5662393121966,0.0,588.0,0.0,0.0,6642.0,6,1,1,65.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,802.2124831780501,0.03685114075878773,0.12077875386601175,2656.8,1,1,1_0,1_0_0,1_4_0,1_0_1 -8636,2,63.0,3,0.0,6,112,2,56,78,3.0,0.0,0.0,412.0206971424679,0.0,1485.9133242928538,30742.0,71,71,1,7637,201108636,,,375.0,,1.0,0.0,5.0,0.0,2.0,1.5,4250.279074500395,0.0,302.0,855.0,0.0,21712.0,1,5,1,102.0,10,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1897.9340214353217,0.06173749337828774,0.08741405773007192,14474.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0 -8637,1,43.0,1,86.0,1,111,2,54,62,3.0,0.0,0.0,542.0539317884597,0.0,1120.4119528039791,30227.0,50,70,1,7639,201108637,,,270.0,,2.0,0.0,4.0,2.0,4.0,2.5,976.7543240507088,1042.0,0.0,0.0,0.0,36022.0,1,1,3,70.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1662.465884592439,0.054999367604871105,0.04615140426940311,14408.8,3,2,3_1,3_1_1,3_3_1,3_1_0 -8638,2,87.0,3,0.0,1,300,2,0,77,4.0,813.8519326882465,0.0,515.708024900175,225.92834170534618,0.0,17269.0,0,70,1,764,201108638,,,720.0,,0.0,1.0,5.0,1.0,2.0,1.5,2418.2429774490633,0.0,378.0,0.0,0.0,24118.0,0,5,1,80.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1555.4882992937678,0.0900740227745537,0.06449491248419305,16078.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -8639,2,45.0,3,0.0,99,111,2,0,54,6.0,0.0,0.0,491.1504999049286,0.0,0.0,13583.0,0,60,2,7640,201108639,,,,243.0,1.0,1.0,2.0,0.0,1.0,1.0,2795.501800580999,0.0,360.0,0.0,0.0,19736.0,0,1,3,50.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,491.1504999049286,0.036159206353893,0.024886020465389572,19736.0,6,3,6,6_0,6_3,6_0_0 -8640,2,58.0,3,0.0,1,112,5,0,63,3.0,0.0,582.9290542166448,682.1534720901786,194.64595593075978,0.0,27136.0,0,50,2,7641,201108640,,,40.0,,1.0,0.0,3.0,0.0,1.0,1.0,1954.2259637584334,0.0,500.0,0.0,0.0,14222.0,0,4,3,50.0,7,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1459.7284822375832,0.05379306022396754,0.10263876263799629,14222.0,3,2,3_0,3_0_0,3_0_0,3_1_0 -8641,1,47.0,4,191.0,1,111,2,56,22,1.0,0.0,0.0,589.3805998859143,0.0,1668.3939079779411,9373.0,50,42,2,7642,201108641,,,,169.0,2.0,2.0,3.0,0.0,2.0,1.5,2933.6494666572894,0.0,432.0,960.0,0.0,8210.0,1,1,3,30.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,2257.7745078638554,0.24088066871480374,0.2750029851234903,5473.333333333333,1,1,1_1,1_0_1,1_2_1,1_1_0 -8642,1,20.0,3,259.0,4,111,1,0,56,4.0,0.0,0.0,327.43366660328576,0.0,371.912808653416,10779.0,0,50,2,7643,201108642,999999.0,34.0,,161.0,1.0,0.0,2.0,0.0,1.0,1.0,4034.8630017096343,0.0,240.0,214.0,0.0,15602.0,0,3,3,37.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,699.3464752567018,0.06488045971395322,0.04482415557343301,15602.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -8643,2,41.0,3,0.0,8,112,5,43,53,8.0,0.0,0.0,1227.8762497623215,156.41192887293198,0.0,77712.0,20,50,1,7644,201108643,,,288.0,,2.0,0.0,4.0,2.0,4.0,2.1,1372.918245920128,0.0,900.0,0.0,0.0,60028.0,1,1,2,100.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1384.2881786352536,0.017813055623780803,0.023060707980196802,28584.761904761905,8,4,8,8_1,8_1,8_0_0 -8644,0,20.0,2,0.0,4,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,17920.0,0,41,2,7645,201108644,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2617.614347991709,0.0,0.0,0.0,0.0,6239.0,0,3,5,38.0,6,4.0,1,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,6239.0,1,1,1_0,1_0_0,1_2_0,1_0_1 -8645,2,70.0,3,0.0,1,400,2,72,72,2.0,1903.7472109666587,0.0,982.3009998098572,99.06088828619025,0.0,25268.0,70,50,1,7646,201108645,,,130.0,,0.0,4.0,7.0,0.0,2.0,1.5,1289.5895126003988,0.0,720.0,0.0,0.0,15811.0,5,5,1,170.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2985.1090990627063,0.1181379254021967,0.18879951293799926,10540.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -8646,2,41.0,3,0.0,5,111,2,43,37,9.0,1427.810408224994,693.9631597817199,1882.743582968893,0.0,0.0,58688.0,33,31,1,7647,201108646,,,972.0,,2.0,0.0,5.0,3.0,5.0,2.4,2531.1592983063483,0.0,1380.0,0.0,0.0,84111.0,1,1,2,122.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4004.517150975607,0.06823400270882646,0.047609910130370664,35046.25,9,5,9,9_1,9_3,9_0_0 -8647,1,56.0,3,105.0,4,111,2,0,52,5.0,0.0,0.0,517.0723318443554,0.0,1294.7431890037146,29084.0,0,50,2,7648,201108647,,,269.0,185.0,4.0,1.0,4.0,3.0,4.0,2.5,2297.027726456296,0.0,379.0,745.0,0.0,42564.0,0,1,3,80.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1811.81552084807,0.06229595381818422,0.042566852759328776,17025.6,4,2,4_1,4_0_1,4_3_1,4_0_1 -8648,1,22.0,3,200.0,1,111,1,0,84,1.0,0.0,0.0,272.86138883607146,0.0,0.0,15922.0,0,41,2,7649,201108648,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3234.3083169102456,0.0,200.0,0.0,0.0,2475.0,0,3,3,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,272.86138883607146,0.01713738153724855,0.1102470257923521,2475.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -8649,1,42.0,3,259.0,9,221,2,56,52,2.0,0.0,555.170527825376,1855.457444085286,199.85968689319085,0.0,40847.0,71,50,1,765,201108649,,,,,3.0,1.0,5.0,4.0,6.0,2.9,1183.342939885334,0.0,1360.0,0.0,0.0,28849.0,1,1,2,101.0,1,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2610.487658803853,0.06390892008724883,0.0904879773581009,9947.931034482759,2,1,2_1,2_1_1,2_1_1,2_0_0 -8650,2,69.0,2,0.0,7,112,2,78,74,8.0,396.6140022847205,0.0,2523.9678467336607,243.30744491344973,0.0,14559.0,50,44,1,7650,201108650,,,255.0,,0.0,1.0,4.0,0.0,2.0,1.5,1846.9191203814883,0.0,1850.0,0.0,0.0,37473.0,5,5,1,110.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3163.8892939318307,0.21731501435069928,0.08443117161507835,24982.0,8,4,8,8_1,8_0,8_0_0 -8651,2,45.0,2,0.0,7,400,2,11,52,5.0,0.0,0.0,845.8703053918215,3475.8206416207104,0.0,34750.0,60,42,1,7651,201108651,,,,,2.0,0.0,7.0,2.0,5.0,2.8,1736.6921881766968,0.0,620.0,0.0,0.0,48559.0,1,1,2,119.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4321.690947012532,0.1243652071082743,0.0889987632985138,17342.5,5,3,5,5_1,5_0,5_0_0 -8652,2,59.0,2,0.0,6,400,6,71,11,5.0,0.0,0.0,1686.2833830069217,0.0,0.0,23477.0,50,50,1,7652,201108652,,,,,1.0,2.0,5.0,0.0,2.0,1.5,1124.2238037854281,0.0,1236.0,0.0,0.0,25822.0,5,1,1,150.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1686.2833830069217,0.07182703850606643,0.06530413534996986,17214.666666666668,5,3,5,5_1,5_0,5_0_0 -8653,2,81.0,1,0.0,4,112,6,75,75,8.0,4283.431224674982,0.0,753.0974331875572,0.0,0.0,30182.0,50,20,1,7653,201108653,,,,,0.0,3.0,7.0,0.0,2.0,1.5,1358.3326133714895,0.0,552.0,0.0,0.0,37611.0,5,5,1,140.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5036.528657862539,0.16687193220669735,0.13391105415603252,25074.0,8,4,8,8_1,8_0,8_0_1 -8654,2,31.0,4,0.0,99,111,4,45,47,6.0,0.0,0.0,682.1534720901786,0.0,0.0,25004.0,31,31,2,7654,201108654,,,,550.0,2.0,0.0,2.0,0.0,2.0,1.5,3612.510202632537,0.0,500.0,0.0,0.0,31370.0,4,4,3,50.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,682.1534720901786,0.027281773799799177,0.021745408737334354,20913.333333333332,6,3,6,6_0,6_3,6_0_0 -8655,2,40.0,2,0.0,1,111,2,45,43,9.0,2855.620816449988,0.0,491.1504999049286,0.0,208.54923849724264,30678.0,20,31,1,7655,201108655,,,331.0,,2.0,2.0,5.0,0.0,2.0,1.5,2566.3295108752495,0.0,360.0,120.0,0.0,50208.0,1,1,2,96.0,9,7.0,3,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3555.320554852159,0.11589153643823454,0.07081183386815167,33472.0,9,5,9,9_1,9_3,9_1_0 -8656,2,44.0,1,0.0,1,111,2,46,46,10.0,0.0,0.0,4071.770221317025,0.0,8104.74968995964,78674.0,31,50,1,7656,201108656,,,,,2.0,0.0,6.0,2.0,4.0,2.5,1801.641883869341,5598.0,850.0,1200.0,0.0,101638.0,1,1,1,150.0,6,4.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,12176.519911276664,0.15477184217500908,0.11980282877739294,40655.2,10,5,10,10_1,10_2,10_1_0 -8657,0,77.0,3,0.0,1,112,2,86,78,2.0,1762.5526261532982,0.0,470.68589574222324,93.84715732375918,0.0,18926.0,70,71,1,7657,201108657,,,200.0,,0.0,2.0,2.0,0.0,2.0,1.5,2475.6070925654767,0.0,345.0,0.0,0.0,18099.0,5,5,5,50.0,4,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2327.085679219281,0.122957079109124,0.128575373181904,12066.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -8658,1,37.0,4,378.0,2,111,2,0,46,1.0,123.74356871283281,0.0,1375.2213997338001,166.8393907977941,0.0,26540.0,0,71,1,7658,201108658,,,,,1.0,0.0,3.0,2.0,3.0,1.6,4040.8681877439935,0.0,1008.0,0.0,0.0,9726.0,0,1,3,65.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1665.804359244427,0.06276580102654208,0.17127332503027215,6078.75,1,1,1_1,1_1_1,1_3_1,1_0_1 -8659,2,49.0,4,0.0,9,112,2,56,52,8.0,0.0,0.0,908.6284248241179,0.0,0.0,39112.0,71,71,1,766,201108659,,,300.0,750.0,3.0,2.0,4.0,3.0,5.0,2.6,3179.120880292191,0.0,666.0,0.0,0.0,64647.0,1,1,3,85.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,908.6284248241179,0.023231448783598844,0.01405522955162835,24864.23076923077,7,4,7,7_1,7_0,7_0_0 -8660,2,45.0,2,0.0,6,111,4,52,37,7.0,0.0,346.98157989085996,2046.460416270536,201.5975972140012,0.0,45938.0,50,20,1,7661,201108660,,,450.0,,2.0,0.0,4.0,2.0,4.0,2.5,2347.857259691919,0.0,1500.0,0.0,0.0,55729.0,1,1,1,100.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2595.039593375397,0.05649004295736421,0.04656533570269334,22291.6,7,4,7,7_1,7_3,7_0_0 -8661,1,38.0,4,407.0,1,111,6,0,52,3.0,0.0,0.0,229.20356662230003,36.49611673701746,0.0,19283.0,0,71,2,7662,201108661,,,392.0,,1.0,0.0,2.0,1.0,2.0,1.3,3123.1345527772746,0.0,168.0,0.0,0.0,18464.0,0,4,3,40.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,265.6996833593175,0.013778959879651376,0.014390147495630279,14203.076923076922,3,2,3_1,3_0_1,3_4_1,3_1_0 -8662,1,39.0,5,240.0,99,111,4,0,62,2.0,0.0,0.0,1637.1683330164287,199.85968689319085,0.0,3979.0,0,50,2,7663,201108662,,,,40.0,1.0,0.0,1.0,0.0,1.0,1.0,2367.015817126161,0.0,1200.0,0.0,0.0,9551.0,0,4,3,30.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1837.0280199096196,0.4616808293313947,0.19233881477432935,9551.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -8663,2,27.0,2,0.0,8,111,4,34,34,8.0,0.0,0.0,0.0,0.0,0.0,22947.0,10,10,2,7664,201108663,,,,640.0,2.0,0.0,3.0,0.0,2.0,1.5,2970.3726581803817,0.0,0.0,0.0,0.0,38732.0,1,1,3,60.0,9,7.0,3,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,25821.333333333332,8,4,8,8_0,8_3,8_0_0 -8664,0,38.0,4,0.0,6,111,5,0,42,1.0,0.0,346.98157989085996,982.3009998098572,166.8393907977941,0.0,26787.0,0,20,1,7665,201108664,,,240.0,,1.0,0.0,4.0,1.0,2.0,1.3,2039.7526508012527,0.0,720.0,0.0,0.0,10829.0,0,1,5,80.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1496.1219704985112,0.055852539310057535,0.13815883003957072,8330.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -8665,2,58.0,3,0.0,1,120,4,0,69,3.0,0.0,0.0,811.7626317873126,0.0,0.0,13002.0,0,71,1,7666,201108665,,,211.0,,1.0,0.0,2.0,0.0,1.0,1.0,4430.280879118663,0.0,595.0,0.0,0.0,13494.0,0,1,3,72.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,811.7626317873126,0.06243367418761057,0.06015730189619924,13494.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -8666,2,45.0,3,0.0,1,111,4,85,37,4.0,0.0,0.0,2687.6846800353037,187.69431464751835,0.0,38880.0,50,43,1,7667,201108666,,,447.0,,1.0,0.0,4.0,2.0,4.0,2.5,2651.356590111112,0.0,1970.0,0.0,0.0,39455.0,7,1,2,120.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2875.378994682822,0.07395522105665694,0.0728774298487599,15782.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -8667,2,59.0,2,0.0,5,111,4,0,43,8.0,0.0,0.0,1064.1594164606786,0.0,0.0,29687.0,0,41,1,7669,201108667,,,240.0,,1.0,2.0,5.0,0.0,1.0,1.0,2471.6524437113862,0.0,780.0,0.0,0.0,27620.0,0,1,1,100.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1064.1594164606786,0.03584597353928247,0.03852858133456476,27620.0,8,4,8,8_1,8_4,8_0_0 -8668,2,92.0,1,0.0,99,111,1,0,86,9.0,0.0,0.0,327.43366660328576,0.0,0.0,21031.0,0,71,2,767,201108668,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2969.427184609967,0.0,240.0,0.0,0.0,30590.0,0,5,1,90.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,327.43366660328576,0.015569096410217573,0.010703944642147295,30590.0,9,5,9,9_0,9_2,9_0_0 -8669,2,69.0,4,0.0,5,111,2,0,77,5.0,2806.440680166683,0.0,712.1682248621465,86.89551604051776,0.0,12273.0,0,71,1,7670,201108669,,,182.0,,0.0,2.0,5.0,0.0,1.0,1.0,2915.9021490590826,0.0,522.0,0.0,0.0,17653.0,0,5,1,88.0,7,5.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3605.504421069347,0.29377531337646434,0.20424315533163467,17653.0,5,3,5,5_1,5_2,5_0_0 -8670,2,53.0,3,0.0,2,111,2,78,54,7.0,0.0,0.0,358.812726319434,0.0,1063.6011163359374,22026.0,70,50,2,7671,201108670,,,454.0,1423.0,1.0,1.0,3.0,0.0,2.0,1.5,2638.8385319996596,0.0,263.0,612.0,0.0,33473.0,5,1,3,75.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1422.4138426553714,0.06457885420209622,0.04249436389494134,22315.333333333332,7,4,7,7_0,7_3,7_0_1 -8671,2,43.0,2,0.0,6,112,2,56,21,8.0,0.0,971.5484236944079,1828.1713052016787,86.89551604051776,0.0,30334.0,60,50,1,7672,201108671,,,412.0,,2.0,0.0,5.0,4.0,6.0,3.1,1475.9824455814276,0.0,1340.0,0.0,0.0,84030.0,1,1,2,140.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2886.615244936604,0.09516104849134978,0.03435219855928364,27106.451612903224,8,4,8,8_1,8_0,8_0_0 -8672,2,76.0,3,0.0,4,111,6,75,74,8.0,4178.725128071816,0.0,2196.5341801303753,0.0,0.0,49528.0,71,70,1,7673,201108672,,,760.0,,0.0,3.0,3.0,0.0,2.0,1.5,2284.1712671767013,0.0,1610.0,0.0,0.0,39064.0,5,5,1,110.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,6375.25930820219,0.1287203058512799,0.16320037139571447,26042.666666666668,8,4,8,8_1,8_4,8_0_1 -8673,2,34.0,2,0.0,99,111,2,63,37,5.0,0.0,0.0,0.0,0.0,0.0,31432.0,50,50,2,7674,201108673,,,,430.0,2.0,0.0,4.0,2.0,4.0,2.3,2519.513279758282,0.0,0.0,0.0,0.0,41447.0,1,1,3,82.0,8,7.0,4,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,18020.434782608696,5,3,5,5_0,5_3,5_0_0 -8674,2,58.0,2,0.0,6,112,4,45,64,9.0,0.0,0.0,2672.67730364932,132.081184381587,0.0,37232.0,50,70,1,7675,201108674,,,,,2.0,2.0,7.0,0.0,2.0,1.5,1159.1774752148663,0.0,1959.0,0.0,0.0,53573.0,1,1,1,110.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2804.758488030907,0.07533193188737931,0.05235395606053249,35715.333333333336,9,5,9,9_1,9_0,9_0_0 -8675,2,84.0,2,0.0,3,111,6,0,71,5.0,0.0,0.0,1170.5753581067465,90.37133668213848,0.0,13688.0,0,70,1,7676,201108675,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2054.2541675384864,0.0,858.0,0.0,0.0,17077.0,0,5,5,80.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1260.946694788885,0.092120594300766,0.07383888825841102,17077.0,5,3,5,5_1,5_2,5_0_1 -8676,0,20.0,1,0.0,7,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,11916.0,0,41,2,7677,201108676,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3201.2869320187533,0.0,0.0,0.0,0.0,2174.0,0,3,5,34.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,2174.0,1,1,1_0,1_0_0,1_4_0,1_0_0 -8677,2,29.0,3,0.0,2,111,5,22,46,6.0,0.0,0.0,818.5841665082144,132.081184381587,0.0,27595.0,43,50,1,7680,201108677,,,408.0,,2.0,0.0,3.0,1.0,3.0,1.8,2892.482308109928,0.0,600.0,0.0,0.0,34189.0,1,1,3,70.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,950.6653508898014,0.03445063782894733,0.027806175989055,18993.888888888887,5,3,5,5_1,5_2,5_0_1 -8678,2,41.0,2,0.0,1,111,2,46,37,9.0,0.0,0.0,654.8673332065715,0.0,1564.1192887293198,37173.0,20,20,2,7681,201108678,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3080.93936971183,0.0,480.0,900.0,0.0,68427.0,1,1,2,68.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2218.9866219358914,0.05969350393930787,0.03242852414888701,32584.285714285714,9,5,9,9_0,9_4,9_1_0 -8679,2,43.0,2,0.0,8,112,2,0,34,7.0,158.64560091388822,0.0,1227.8762497623215,0.0,0.0,27125.0,0,20,1,7682,201108679,,,254.0,387.0,1.0,0.0,3.0,1.0,2.0,1.3,3172.9597057721053,0.0,900.0,0.0,0.0,29106.0,0,1,3,63.0,9,0.0,2,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1386.5218506762099,0.0511160129281552,0.047636976935209574,22389.23076923077,7,4,7,7_1,7_0,7_0_0 -8680,0,58.0,3,0.0,2,111,1,56,56,7.0,0.0,0.0,625.1772864136185,0.0,446.2293286119494,39934.0,60,50,2,7683,201108680,,,,,2.0,2.0,3.0,0.0,2.0,1.5,2467.3686540073127,415.0,300.0,0.0,0.0,33890.0,1,1,5,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1071.406615025568,0.026829433941642913,0.03161424063220915,22593.333333333332,7,4,7,7_0,7_4,7_0_1 -8681,1,31.0,4,189.0,5,221,2,85,52,1.0,0.0,0.0,245.5752499524643,0.0,1303.4327406077664,12670.0,20,43,2,7686,201108681,,,300.0,50.0,1.0,0.0,2.0,1.0,3.0,1.8,2206.950416180549,0.0,180.0,750.0,0.0,13670.0,6,1,3,56.0,1,3.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1549.0079905602306,0.12225793137807661,0.11331441042869281,7594.444444444444,1,1,1_1,1_0_1,1_1_1,1_0_0 -8682,2,73.0,2,0.0,3,400,6,0,75,5.0,0.0,0.0,1609.8821941328215,0.0,0.0,14611.0,0,50,8,7687,201108682,,,,334.0,0.0,0.0,3.0,0.0,1.0,1.0,4934.53080665206,0.0,1180.0,0.0,0.0,17751.0,0,5,3,64.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1609.8821941328215,0.11018288920216422,0.09069247896641437,17751.0,5,3,5,5_0,5_0,5_0_1 -8683,2,55.0,2,0.0,6,111,4,62,62,2.0,0.0,0.0,2046.460416270536,0.0,0.0,38740.0,20,41,1,7689,201108683,,,470.0,,2.0,2.0,5.0,1.0,3.0,2.0,846.4786471475512,0.0,1500.0,0.0,0.0,22289.0,4,1,1,75.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2046.460416270536,0.052825514100943105,0.09181481521246067,11144.5,2,1,2_0,2_1_0,2_3_0,2_0_0 -8684,2,63.0,3,0.0,1,111,2,0,56,3.0,0.0,0.0,308.3333693847607,0.0,1266.936623870749,13959.0,0,70,2,769,201108684,,,,168.0,1.0,1.0,3.0,0.0,1.0,1.0,2886.401886661137,0.0,226.0,729.0,0.0,14062.0,0,1,3,55.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1575.2699932555097,0.11284977385597175,0.11202318256688307,14062.0,3,2,3_0,3_0_0,3_3_0,3_1_0 -8685,1,32.0,3,0.0,5,111,2,67,85,2.0,0.0,0.0,272.86138883607146,0.0,875.906801688419,15068.0,71,71,2,7690,201108685,,,198.0,,1.0,0.0,3.0,3.0,5.0,2.4,4151.599907597604,0.0,200.0,504.0,0.0,22320.0,4,7,3,79.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1148.7681905244904,0.07623892955431978,0.051468108894466416,9300.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -8686,2,31.0,3,0.0,7,111,1,0,43,5.0,0.0,0.0,204.6460416270536,0.0,0.0,28799.0,0,12,2,7691,201108686,,,,1223.0,1.0,0.0,1.0,0.0,1.0,1.0,3638.6321096862866,0.0,150.0,0.0,0.0,18694.0,0,1,3,30.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,204.6460416270536,0.0071060120708029305,0.010947151044562618,18694.0,5,3,5,5_0,5_3,5_0_0 -8687,1,38.0,4,352.0,1,300,2,63,56,5.0,0.0,0.0,2592.183193942679,3149.0935013083636,0.0,43781.0,71,50,1,7693,201108687,,,258.0,,2.0,0.0,7.0,4.0,6.0,2.7,1356.673547878272,0.0,1900.0,0.0,0.0,48108.0,1,1,3,200.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,5741.276695251043,0.13113626219709562,0.11934141297187667,17817.777777777777,5,3,5,5_1,5_0,5_1_0 -8688,1,26.0,2,279.0,1,111,2,34,34,3.0,0.0,0.0,166.4454471900036,0.0,0.0,25400.0,10,10,2,7694,201108688,,,,201.0,2.0,0.0,2.0,0.0,2.0,1.5,2895.922160813967,0.0,122.0,0.0,0.0,20552.0,1,1,3,35.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,166.4454471900036,0.006552970361811165,0.008098746943849922,13701.333333333334,3,2,3_1,3_0_1,3_3_1,3_1_0 -8689,2,63.0,3,0.0,1,111,1,86,77,1.0,0.0,0.0,723.0826804155894,0.0,2259.283417053462,24270.0,70,60,1,7696,201108689,,,210.0,,0.0,4.0,6.0,0.0,2.0,1.5,3424.0871903268185,0.0,530.0,1300.0,0.0,12380.0,6,5,1,130.0,5,4.0,3,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2982.3660974690515,0.1228828223102205,0.2409019464837683,8253.333333333334,1,1,1_0,1_1_0,1_2_0,1_1_0 -8690,2,72.0,3,0.0,5,120,6,77,72,5.0,2855.620816449988,0.0,750.3688192991965,97.32297796537989,0.0,27967.0,60,50,1,7697,201108690,,,250.0,,1.0,2.0,5.0,1.0,3.0,2.0,1980.1045822943545,0.0,550.0,0.0,0.0,34150.0,5,5,1,110.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3703.312613714564,0.13241722793701735,0.10844253627275444,17075.0,5,3,5,5_1,5_0,5_0_0 -8691,1,36.0,3,167.0,3,111,1,0,54,5.0,0.0,0.0,0.0,0.0,0.0,26129.0,0,43,2,7699,201108691,,,,130.0,1.0,0.0,3.0,1.0,2.0,1.3,2965.765657680393,0.0,0.0,0.0,0.0,23045.0,0,4,3,57.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0.0,0.0,0.0,17726.923076923078,5,3,5,5_0,5_4,5_0_1 -8692,2,57.0,3,0.0,1,112,2,78,54,7.0,0.0,0.0,54.57227776721429,0.0,834.1969539889706,21033.0,71,70,1,7701,201108692,,,170.0,425.0,1.0,3.0,3.0,0.0,2.0,1.5,3850.481605465072,0.0,40.0,480.0,0.0,36778.0,5,4,3,67.0,9,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,888.7692317561848,0.0422559421744965,0.024165784756000456,24518.666666666668,7,4,7,7_1,7_0,7_1_0 -8693,2,24.0,4,0.0,3,111,1,0,63,6.0,0.0,0.0,477.50743046312505,52.13730962431066,0.0,22867.0,0,43,2,7702,201108693,,,,270.0,1.0,0.0,3.0,0.0,1.0,1.0,3267.499100355545,0.0,350.0,0.0,0.0,19765.0,0,1,3,63.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,529.6447400874357,0.023161968779789027,0.02679710296420115,19765.0,6,3,6,6_0,6_3,6_0_1 -8694,2,46.0,3,0.0,1,111,2,0,47,8.0,1951.3408912408252,749.4802125642576,764.011888741,604.7927916420036,0.0,37704.0,0,31,1,7703,201108694,,,174.0,,1.0,1.0,6.0,1.0,3.0,2.0,1071.0057385566083,0.0,560.0,0.0,0.0,52434.0,0,1,1,119.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4069.625784188086,0.10793618141810116,0.07761425380837025,26217.0,8,4,8,8_1,8_3,8_1_0 -8695,2,40.0,2,0.0,9,111,2,56,63,3.0,0.0,0.0,160.98821941328217,0.0,1199.158121359145,42931.0,71,50,1,7704,201108695,,,840.0,,3.0,0.0,5.0,3.0,5.0,2.8,1900.6068360317302,0.0,118.0,690.0,0.0,36339.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1360.1463407724273,0.03168214904783087,0.037429382778073894,12978.214285714286,3,2,3_0,3_1_0,3_4_0,3_0_0 -8696,2,46.0,2,0.0,7,120,2,54,13,7.0,3648.848821019429,0.0,1146.0178331115,0.0,0.0,30532.0,31,42,1,7707,201108696,,,1000.0,,2.0,0.0,6.0,1.0,3.0,2.0,1611.163257692657,0.0,840.0,0.0,0.0,45131.0,1,1,2,190.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4794.866654130929,0.15704397530888672,0.10624330624473044,22565.5,7,4,7,7_1,7_0,7_0_0 -8697,2,62.0,2,0.0,1,221,2,75,74,8.0,2062.392811880547,416.377895869032,491.1504999049286,208.54923849724264,0.0,38830.0,60,70,1,7708,201108697,,,420.0,,0.0,1.0,6.0,0.0,2.0,1.5,2371.4371921924085,0.0,360.0,0.0,0.0,43077.0,5,5,1,120.0,1,1.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3178.47044615175,0.08185605063486351,0.07378578931104185,28718.0,8,4,8,8_1,8_1,8_1_0 -8698,2,45.0,3,0.0,1,111,2,0,56,3.0,0.0,0.0,719.9641474042498,0.0,1488.1479296359953,25481.0,0,44,1,7709,201108698,,,,,1.0,0.0,6.0,0.0,1.0,1.0,2622.372909353598,1384.0,0.0,0.0,0.0,14584.0,0,1,1,148.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2208.112077040245,0.08665719858091303,0.15140647812947372,14584.0,3,2,3_0,3_1_0,3_4_0,3_1_0 -8699,1,77.0,3,262.0,3,111,2,0,86,3.0,0.0,0.0,300.1475277196786,0.0,1042.7461924862132,6570.0,0,71,2,771,201108699,,,,146.0,0.0,6.0,5.0,0.0,1.0,1.0,3343.3188121735016,0.0,220.0,600.0,0.0,13702.0,0,5,3,90.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1342.893720205892,0.20439782651535646,0.09800713182060224,13702.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -8700,2,50.0,4,0.0,6,112,4,0,56,6.0,142.7810408224994,0.0,916.8142664892001,121.65372245672486,0.0,19579.0,0,50,1,7716,201108700,,,,,1.0,2.0,5.0,0.0,1.0,1.0,1220.8227471607809,0.0,672.0,0.0,0.0,21480.0,0,5,1,134.0,10,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1181.2490297684244,0.06033244955147987,0.05499297159070877,21480.0,6,3,6,6_1,6_0,6_0_0 -8701,1,54.0,3,259.0,5,111,2,0,85,1.0,0.0,0.0,204.6460416270536,0.0,660.405921907935,5802.0,0,60,2,7717,201108701,,,100.0,,0.0,0.0,3.0,0.0,1.0,1.0,2188.972850982272,0.0,150.0,380.0,0.0,9050.0,0,7,3,60.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,865.0519635349885,0.14909547803084947,0.09558585232430812,9050.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -8702,2,61.0,3,0.0,4,111,2,0,31,9.0,0.0,0.0,482.9646582398465,0.0,2287.0899821864273,22202.0,0,10,1,7718,201108702,,,216.0,,1.0,2.0,7.0,0.0,1.0,1.0,2407.4398516666083,0.0,354.0,1316.0,0.0,29798.0,0,1,1,180.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2770.0546404262736,0.12476599587542896,0.09296109270509006,29798.0,9,5,9,9_1,9_2,9_0_1 -8703,2,72.0,3,0.0,1,111,2,0,37,8.0,0.0,0.0,570.2803026673894,0.0,625.6477154917279,20657.0,0,60,2,7719,201108703,,,,664.0,1.0,0.0,1.0,0.0,1.0,1.0,4100.200711580964,0.0,418.0,360.0,0.0,25788.0,0,5,3,17.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1195.9280181591173,0.05789456446527169,0.04637536909256698,25788.0,8,4,8,8_0,8_4,8_1_0 -8704,2,47.0,3,0.0,3,111,4,0,22,2.0,0.0,0.0,288.1937410852272,0.0,595.6892724120964,24234.0,0,71,1,772,201108704,,,245.0,,2.0,0.0,5.0,3.0,4.0,2.5,2345.1242707943898,554.0,0.0,0.0,0.0,27410.0,0,1,2,120.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,883.8830134973236,0.03647284862166063,0.03224673526075606,10964.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -8705,2,58.0,1,0.0,2,111,2,54,22,8.0,0.0,346.98157989085996,801.8992524357138,0.0,1863.438870116375,24100.0,50,50,1,7720,201108705,,,410.0,,2.0,1.0,6.0,1.0,3.0,2.0,2354.845554749585,440.0,420.0,800.0,0.0,57427.0,1,1,1,160.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3012.319702442949,0.12499251877356636,0.05245476348134064,28713.5,8,4,8,8_1,8_2,8_0_1 -8706,2,57.0,3,0.0,2,111,2,78,63,5.0,0.0,0.0,598.2361051408145,0.0,1236.5391033825106,26728.0,70,70,2,7721,201108706,,,310.0,259.0,1.0,2.0,3.0,0.0,2.0,1.5,1815.5940560043973,1150.0,0.0,0.0,0.0,26560.0,4,1,3,75.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1834.775208523325,0.06864618409620342,0.06908039188717338,17706.666666666668,5,3,5,5_0,5_2,5_0_1 -8707,1,53.0,4,247.0,6,112,1,0,78,1.0,0.0,0.0,272.86138883607146,90.37133668213848,0.0,11421.0,0,50,2,7723,201108707,,,,133.0,0.0,0.0,3.0,0.0,1.0,1.0,4427.738140252569,0.0,200.0,0.0,0.0,8129.0,0,4,3,60.0,7,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,363.2327255182099,0.03180393358884598,0.04468356815330421,8129.0,1,1,1_1,1_0_1,1_0_1,1_0_0 -8708,2,86.0,3,0.0,7,400,4,0,71,2.0,0.0,0.0,2046.460416270536,260.6865481215533,0.0,43107.0,0,70,1,7725,201108708,,,250.0,,0.0,4.0,5.0,0.0,1.0,1.0,2542.36246663169,0.0,1500.0,0.0,0.0,10460.0,0,5,5,105.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2307.146964392089,0.053521399410585035,0.2205685434409263,10460.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -8709,2,47.0,3,0.0,1,111,4,0,55,8.0,0.0,0.0,982.3009998098572,0.0,0.0,23427.0,0,50,2,7726,201108709,,,,560.0,1.0,0.0,2.0,0.0,1.0,1.0,3899.7127521683187,0.0,720.0,0.0,0.0,25442.0,0,1,3,39.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,982.3009998098572,0.04193029409697602,0.03860942535216796,25442.0,8,4,8,8_0,8_3,8_1_0 -8710,2,74.0,2,0.0,1,400,5,72,75,7.0,0.0,208.188947934516,1691.740610783643,52.13730962431066,0.0,68962.0,70,50,1,7729,201108710,,,184.0,,0.0,3.0,3.0,0.0,2.0,1.5,1594.7658427324907,0.0,1240.0,0.0,0.0,34449.0,5,5,5,250.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1952.0668683424697,0.02830641321803993,0.05666541462284739,22966.0,7,4,7,7_1,7_0,7_1_0 -8711,2,46.0,3,0.0,1,112,2,52,62,9.0,3172.912018277764,0.0,982.3009998098572,76.46805411565563,0.0,47305.0,71,50,1,7730,201108711,,,,,2.0,3.0,6.0,0.0,2.0,1.5,2324.1997830750156,0.0,720.0,0.0,0.0,45912.0,1,1,2,200.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4231.681072203277,0.0894552599556765,0.09216939083906771,30608.0,9,5,9,9_1,9_0,9_1_0 -8712,2,65.0,4,0.0,3,300,5,77,75,5.0,3360.1138273561523,707.8424229773543,875.8850581637894,86.89551604051776,0.0,28819.0,50,50,1,7732,201108712,,,267.0,,0.0,3.0,4.0,0.0,2.0,1.5,625.6031343387707,0.0,642.0,0.0,0.0,27379.0,5,5,1,105.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5030.736824537814,0.17456319874172643,0.18374435971137784,18252.666666666668,5,3,5,5_1,5_0,5_0_1 -8713,0,31.0,4,0.0,1,112,2,0,63,7.0,2046.528251789158,0.0,1364.3069441803573,271.11401004641544,0.0,16493.0,0,43,1,7733,201108713,,,160.0,,1.0,4.0,3.0,1.0,3.0,2.0,1596.411751561078,0.0,1000.0,0.0,0.0,49230.0,0,1,5,100.0,7,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3681.949206015931,0.22324314594166803,0.07479076185285255,24615.0,7,4,7,7_1,7_0,7_1_0 -8714,2,69.0,4,0.0,5,111,4,77,78,7.0,0.0,0.0,2660.3985411516965,0.0,0.0,27247.0,70,70,1,7735,201108714,,,645.0,,0.0,3.0,4.0,0.0,2.0,1.5,1617.2576771033055,0.0,1950.0,0.0,0.0,33383.0,5,5,1,90.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2660.3985411516965,0.09764005362614954,0.07969321334666436,22255.333333333332,7,4,7,7_1,7_4,7_0_0 -8715,2,78.0,3,0.0,3,111,1,0,75,7.0,0.0,0.0,571.6446096115696,0.0,0.0,24510.0,0,60,2,7737,201108715,,,,825.0,0.0,3.0,3.0,0.0,1.0,1.0,3429.4296938554467,0.0,419.0,0.0,0.0,23416.0,0,7,3,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,571.6446096115696,0.023322913488844133,0.024412564469233414,23416.0,7,4,7,7_0,7_3,7_0_1 -8716,2,58.0,3,0.0,4,111,1,56,52,4.0,0.0,0.0,491.1504999049286,0.0,0.0,61005.0,50,50,2,7738,201108716,,,,,2.0,1.0,3.0,1.0,3.0,2.0,2253.320245330078,0.0,360.0,0.0,0.0,32084.0,1,1,2,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,491.1504999049286,0.008050987622406828,0.015308268916124194,16042.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -8717,1,26.0,5,361.0,7,111,2,0,56,4.0,0.0,0.0,383.9115179077575,0.0,793.5355289532981,14469.0,0,50,2,774,201108717,,,,12.0,1.0,0.0,3.0,1.0,2.0,1.3,2321.6457314356485,738.0,0.0,0.0,0.0,19585.0,0,1,3,60.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1177.4470468610557,0.08137722350273383,0.06011983900235158,15065.384615384615,4,2,4_1,4_0_1,4_3_1,4_0_0 -8718,1,57.0,1,85.0,8,111,2,85,21,1.0,0.0,0.0,433.8496082493536,0.0,1115.7384259602482,24471.0,41,10,2,7740,201108718,,,,682.0,1.0,0.0,3.0,1.0,3.0,2.0,2600.580861010347,0.0,318.0,642.0,0.0,13261.0,6,1,3,70.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1549.5880342096018,0.06332344547462718,0.1168530302548527,6630.5,1,1,1_1,1_0_1,1_3_1,1_0_0 -8719,2,54.0,2,0.0,1,400,6,0,43,7.0,761.4988843866635,0.0,1241.5193192041252,104.27461924862132,0.0,17477.0,0,42,1,7741,201108719,,,156.0,,1.0,0.0,5.0,0.0,1.0,1.0,4485.486551417993,0.0,910.0,0.0,0.0,21991.0,0,1,3,91.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2107.2928228394103,0.12057520300048122,0.09582523863577874,21991.0,7,4,7,7_1,7_0,7_1_0 -8720,2,62.0,3,0.0,5,111,1,77,75,8.0,0.0,0.0,499.39709646537557,0.0,1032.241338475835,56512.0,42,43,2,7742,201108720,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2930.4250091037557,960.0,0.0,0.0,0.0,42401.0,5,5,1,72.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1531.6384349412106,0.02710288850051689,0.03612269604351809,28267.333333333332,8,4,8,8_0,8_3,8_0_0 -8721,1,38.0,4,416.0,2,111,4,0,22,1.0,0.0,0.0,191.00297218525,156.41192887293198,0.0,15354.0,0,31,2,7743,201108721,,,320.0,,1.0,0.0,3.0,2.0,3.0,1.8,3003.606576368095,0.0,140.0,0.0,0.0,15024.0,0,4,3,68.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,347.41490105818195,0.022626996291401715,0.02312399501185982,8346.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_1 -8722,2,86.0,1,0.0,7,111,2,0,74,10.0,0.0,0.0,523.8938665652572,0.0,2711.1401004641543,36183.0,0,31,8,7744,201108722,,,156.0,,0.0,2.0,3.0,0.0,1.0,1.0,2753.8732483440217,0.0,384.0,1560.0,0.0,64342.0,0,5,3,100.0,3,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,3235.0339670294115,0.08940756617829952,0.0502787287779275,64342.0,10,5,10,10_0,10_2,10_0_0 -8723,2,51.0,2,0.0,6,111,1,42,42,8.0,0.0,0.0,791.2980276246072,0.0,0.0,45605.0,31,31,2,7746,201108723,,,,,2.0,2.0,5.0,1.0,3.0,1.8,2311.6864078980984,0.0,580.0,0.0,0.0,51490.0,1,1,1,120.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,791.2980276246072,0.017351124386023622,0.015367994321705327,28605.555555555555,8,4,8,8_0,8_2,8_0_0 -8724,2,43.0,3,0.0,1,300,2,35,22,4.0,2379.684013708323,0.0,1321.710323984324,173.79103208103552,645.1508365473968,85514.0,50,42,1,7747,201108724,,,300.0,,2.0,0.0,7.0,2.0,4.0,2.3,2161.6223274059453,600.0,740.0,0.0,0.0,35056.0,1,1,2,200.0,0,0.0,4,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4520.33620632108,0.052860773748404706,0.1289461491990267,15241.739130434784,4,2,4_0,4_1_0,4_0_0,4_1_0 -8725,2,49.0,2,0.0,8,300,2,52,21,3.0,1964.0325393139362,874.3935813249672,518.4366387885358,97.32297796537989,0.0,25224.0,42,50,1,775,201108725,,,320.0,,2.0,1.0,3.0,0.0,2.0,1.5,2597.8642139795575,0.0,380.0,0.0,0.0,19210.0,1,1,1,80.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3454.1857373928187,0.13694044312530998,0.1798118551479864,12806.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0 -8726,1,22.0,2,172.0,99,111,1,0,84,2.0,0.0,0.0,57.30089165557501,0.0,0.0,16902.0,0,41,2,7751,201108726,,,,200.0,0.0,0.0,2.0,0.0,1.0,1.0,3378.2085851072325,0.0,42.0,0.0,0.0,11175.0,0,3,3,46.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,57.30089165557501,0.0033901840998446934,0.005127596568731544,11175.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -8727,2,64.0,2,0.0,9,111,4,77,74,9.0,0.0,0.0,1177.3968928276483,0.0,0.0,52101.0,50,50,1,7752,201108727,,,308.0,,0.0,3.0,4.0,0.0,2.0,1.5,1137.131957945863,0.0,863.0,0.0,0.0,45257.0,5,5,1,88.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1177.3968928276483,0.022598354980281538,0.026015796292897193,30171.333333333332,9,5,9,9_1,9_3,9_0_0 -8728,2,67.0,2,0.0,5,221,2,0,75,8.0,0.0,0.0,401.10624158902505,0.0,0.0,32378.0,0,41,1,7753,201108728,,,252.0,,0.0,1.0,2.0,0.0,1.0,1.0,2269.0306101994647,0.0,294.0,0.0,0.0,28618.0,0,5,3,60.0,1,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,401.10624158902505,0.012388234035117211,0.014015872583305089,28618.0,8,4,8,8_1,8_1,8_0_0 -8729,2,47.0,3,0.0,5,111,1,56,62,6.0,0.0,0.0,1309.734666413143,0.0,0.0,71990.0,50,50,1,7754,201108729,,,,876.0,4.0,0.0,5.0,4.0,6.0,3.3,2356.2658723522873,0.0,960.0,0.0,0.0,65492.0,1,1,3,88.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1309.734666413143,0.018193286101029906,0.019998391657196957,19846.060606060608,6,3,6,6_1,6_4,6_0_0 -8730,2,41.0,2,0.0,99,111,2,0,47,3.0,0.0,0.0,1948.23031628955,0.0,0.0,29219.0,0,20,2,7755,201108730,,,108.0,,1.0,0.0,5.0,2.0,3.0,1.6,4498.110909128271,0.0,1428.0,0.0,0.0,20090.0,0,1,3,110.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1948.23031628955,0.06667683070226736,0.09697512773964909,12556.25,2,1,2_0,2_0_0,2_2_0,2_0_0 -8731,2,41.0,1,0.0,99,111,2,31,33,8.0,0.0,0.0,886.7995137172322,0.0,1946.4595593075978,145085.0,10,10,2,7756,201108731,,,,655.0,2.0,0.0,5.0,2.0,4.0,2.3,2143.9818700269025,0.0,650.0,1120.0,0.0,66354.0,1,1,3,85.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2833.2590730248303,0.019528270138365993,0.04269914508582497,28849.565217391308,8,4,8,8_0,8_3,8_0_0 -8732,2,78.0,3,0.0,2,111,6,77,72,3.0,0.0,0.0,354.7198054868929,0.0,2221.049389995634,25925.0,70,70,2,7757,201108732,,,300.0,,0.0,1.0,3.0,0.0,2.0,1.5,2107.5030121271884,0.0,260.0,1278.0,0.0,19960.0,5,5,1,80.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2575.769195482527,0.09935464592025176,0.12904655287988612,13306.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_1 -8733,2,32.0,2,0.0,9,400,4,85,47,6.0,0.0,0.0,2046.460416270536,0.0,0.0,56466.0,43,31,1,7758,201108733,,,240.0,,1.0,0.0,4.0,3.0,5.0,2.4,1713.4285829990847,0.0,1500.0,0.0,0.0,48045.0,6,1,1,92.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2046.460416270536,0.036242347895557255,0.04259465951234334,20018.75,6,3,6,6_1,6_0,6_0_0 -8734,2,47.0,2,0.0,3,111,1,52,45,7.0,0.0,0.0,982.3009998098572,0.0,0.0,69524.0,50,41,2,7759,201108734,,,,,2.0,0.0,4.0,2.0,4.0,2.5,2508.651866887387,0.0,720.0,0.0,0.0,54791.0,1,1,2,73.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,982.3009998098572,0.014128948274119113,0.017928145129854488,21916.4,7,4,7,7_0,7_3,7_0_1 -8735,1,31.0,3,310.0,4,111,1,0,85,1.0,0.0,0.0,682.1534720901786,0.0,0.0,11391.0,0,71,2,776,201108735,,,,,0.0,0.0,4.0,4.0,5.0,2.2,2366.723599866283,0.0,500.0,0.0,0.0,18710.0,0,6,3,91.0,9,7.0,2,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,682.1534720901786,0.059885301737352174,0.03645929834795182,8504.545454545454,1,1,1_1,1_0_1,1_3_1,1_0_1 -8736,1,26.0,4,322.0,2,111,1,0,85,2.0,0.0,0.0,169.1740610783643,0.0,1824.805836850873,21331.0,0,50,2,7761,201108736,,,22.0,,0.0,0.0,3.0,2.0,3.0,1.6,3372.6453641711437,0.0,124.0,1050.0,0.0,15122.0,0,6,3,68.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1993.9798979292373,0.09347803187516934,0.13185953563875394,9451.25,1,1,1_1,1_0_1,1_3_1,1_0_1 -8737,2,67.0,3,0.0,9,400,5,0,72,9.0,0.0,208.188947934516,900.4425831590357,0.0,0.0,12476.0,0,50,1,7762,201108737,,,110.0,,0.0,2.0,4.0,0.0,1.0,1.0,2535.198901069931,0.0,660.0,0.0,0.0,33430.0,0,5,2,125.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1108.6315310935518,0.08886113586835137,0.03316277388852982,33430.0,9,5,9,9_1,9_0,9_0_0 -8738,1,52.0,3,468.0,4,111,1,22,22,2.0,0.0,0.0,545.7227776721429,0.0,1355.5700502320772,43700.0,31,20,2,7767,201108738,,,,217.0,2.0,0.0,4.0,2.0,4.0,2.5,3461.750346550788,0.0,400.0,780.0,0.0,30744.0,1,1,3,86.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1901.29282790422,0.04350784503213318,0.06184272794380107,12297.6,2,1,2_1,2_0_1,2_4_1,2_0_1 -8739,2,64.0,2,0.0,6,211,5,0,74,10.0,0.0,1263.0129508027303,313.79059716148214,48.661488982689946,0.0,32203.0,0,31,1,7768,201108739,,,200.0,,0.0,2.0,6.0,0.0,1.0,1.0,1558.0075870304843,0.0,230.0,0.0,0.0,38603.0,0,5,1,120.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1625.4650369469023,0.05047557795692644,0.04210722060324074,38603.0,10,5,10,10_1,10_2,10_0_0 -8740,2,63.0,3,0.0,5,112,2,77,78,6.0,0.0,0.0,1705.3836802254466,0.0,0.0,26460.0,70,50,2,7769,201108740,,,370.0,300.0,0.0,2.0,4.0,0.0,2.0,1.5,1435.25757664682,0.0,1250.0,0.0,0.0,30700.0,5,5,3,90.0,10,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1705.3836802254466,0.06445138625190652,0.055549957010600864,20466.666666666668,6,3,6,6_0,6_2,6_0_0 -8741,2,53.0,2,0.0,1,112,2,34,43,9.0,0.0,0.0,1023.1329982386802,0.0,3427.2829826040597,53550.0,20,33,1,7770,201108741,,,,,2.0,1.0,8.0,1.0,3.0,2.0,4367.344272239371,485.0,565.0,1672.0,0.0,62062.0,1,1,2,180.0,9,2.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4450.41598084274,0.08310767471228273,0.0717091937230953,31031.0,9,5,9,9_1,9_1,9_1_0 -8742,2,70.0,1,0.0,3,111,1,0,74,8.0,0.0,0.0,526.6224804536179,0.0,0.0,22477.0,0,41,2,7771,201108742,,,180.0,,0.0,1.0,4.0,0.0,1.0,1.0,2151.4894551648504,0.0,386.0,0.0,0.0,27557.0,0,5,1,90.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,526.6224804536179,0.023429393622530492,0.019110297944392274,27557.0,8,4,8,8_0,8_2,8_0_1 -8743,2,28.0,3,0.0,2,112,2,21,63,6.0,0.0,0.0,2046.460416270536,50.3993993035003,0.0,32920.0,43,50,1,7772,201108743,,,160.0,,2.0,0.0,3.0,0.0,2.0,1.5,1888.3051311331776,0.0,1500.0,0.0,0.0,30596.0,1,1,2,80.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2096.859815574036,0.06369562015717,0.06853378923957498,20397.333333333332,6,3,6,6_1,6_0,6_0_1 -8744,2,38.0,1,0.0,1,221,5,54,63,6.0,0.0,1165.8581084332895,1491.1874899891304,0.0,0.0,30666.0,31,50,1,7773,201108744,,,361.0,,2.0,0.0,4.0,3.0,5.0,2.4,2323.4334695032244,0.0,1093.0,0.0,0.0,46404.0,1,1,2,120.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2657.04559842242,0.08664467483279267,0.05725897764034178,19335.0,6,3,6,6_1,6_1,6_1_0 -8745,2,69.0,1,0.0,8,111,2,75,75,10.0,0.0,0.0,1459.8084302729822,0.0,0.0,58424.0,33,41,1,7774,201108745,,,340.0,,0.0,0.0,5.0,0.0,2.0,1.5,1739.8945330940273,0.0,1070.0,0.0,0.0,61317.0,5,5,3,140.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1459.8084302729822,0.0249864512918147,0.023807564464552768,40878.0,10,5,10,10_1,10_3,10_0_0 -8746,2,37.0,1,0.0,9,111,4,0,43,8.0,0.0,0.0,2046.460416270536,0.0,0.0,45298.0,0,33,1,7775,201108746,,,450.0,,1.0,0.0,4.0,2.0,3.0,1.6,2372.6595212262646,0.0,1500.0,0.0,0.0,40532.0,0,1,2,120.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2046.460416270536,0.045177721229867455,0.05048999349330247,25332.5,8,4,8,8_1,8_3,8_0_0 -8747,2,35.0,3,0.0,2,112,5,42,42,7.0,0.0,430.2571590646664,2182.8911106885716,90.37133668213848,0.0,52750.0,20,20,1,7776,201108747,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.1,2016.6259086324249,0.0,1600.0,0.0,0.0,45828.0,1,1,2,100.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2703.5196064353763,0.051251556520101924,0.05899274693277857,21822.85714285714,7,4,7,7_1,7_1,7_0_1 -8748,1,56.0,5,168.0,2,111,2,0,64,1.0,0.0,0.0,73.67257498573929,0.0,0.0,2310.0,0,50,1,7777,201108748,,,,,1.0,0.0,1.0,0.0,1.0,1.0,1439.4467839625088,0.0,54.0,0.0,0.0,7376.0,0,4,3,31.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,73.67257498573929,0.03189288960421614,0.009988147367914762,7376.0,1,1,1_1,1_1_1,1_2_1,1_0_1 -8749,2,68.0,2,0.0,5,400,6,0,72,4.0,1643.568425467882,0.0,682.1534720901786,43.44775802025888,0.0,19661.0,0,70,1,7778,201108749,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2631.5601382437635,0.0,500.0,0.0,0.0,16477.0,0,5,1,72.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2369.1696555783196,0.12050097429318547,0.14378646935597011,16477.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -8750,2,54.0,3,0.0,6,400,5,85,63,4.0,0.0,999.3069500856767,1105.0886247860894,93.84715732375918,0.0,42973.0,70,43,1,7779,201108750,,,,,1.0,2.0,5.0,1.0,3.0,1.8,1540.3761901263251,0.0,810.0,0.0,0.0,27831.0,7,1,1,105.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2198.2427321955256,0.05115404398565438,0.07898540232817813,15461.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -8751,2,41.0,2,0.0,1,300,2,54,11,10.0,3172.912018277764,0.0,525.2581735094376,140.77073598563877,0.0,43217.0,42,50,1,778,201108751,,,349.0,,2.0,0.0,6.0,2.0,4.0,2.3,2001.7655447372322,0.0,385.0,0.0,0.0,99517.0,1,1,2,160.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3838.9409277728405,0.08882941730737536,0.03857573005388869,43268.26086956522,10,5,10,10_1,10_0,10_1_0 -8752,2,71.0,3,0.0,4,111,2,77,78,7.0,3410.8804196485967,0.0,619.3953526578822,0.0,0.0,29198.0,71,50,1,7780,201108752,,,250.0,,0.0,2.0,5.0,0.0,2.0,1.5,2380.320211981553,0.0,454.0,0.0,0.0,35235.0,5,5,1,80.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4030.2757723064788,0.13803259717468588,0.11438273796811349,23490.0,7,4,7,7_1,7_4,7_0_1 -8753,2,24.0,2,0.0,99,111,4,0,34,4.0,0.0,0.0,0.0,27.806565132965684,0.0,35876.0,0,20,2,7781,201108753,,,,395.0,1.0,0.0,2.0,0.0,1.0,1.0,2963.7273722836785,0.0,0.0,0.0,0.0,15822.0,0,1,3,40.0,6,4.0,1,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,27.806565132965684,0.0007750742873499188,0.0017574620865229227,15822.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -8754,2,50.0,3,0.0,8,400,4,0,56,4.0,0.0,0.0,245.5752499524643,0.0,0.0,18668.0,0,60,2,7782,201108754,,,84.0,,1.0,1.0,2.0,0.0,1.0,1.0,2537.211436551857,0.0,180.0,0.0,0.0,15692.0,0,1,3,57.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,245.5752499524643,0.013154877327644327,0.01564971004030489,15692.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -8755,2,33.0,2,0.0,4,400,2,0,52,4.0,2221.038412794435,0.0,231.93218051066074,52.13730962431066,0.0,22159.0,0,30,1,7784,201108755,,,246.0,,1.0,0.0,4.0,0.0,1.0,1.0,2689.5150859349487,0.0,170.0,0.0,0.0,15372.0,0,1,2,100.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2505.107902929406,0.11305148711265879,0.16296564551973758,15372.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -8756,2,55.0,3,0.0,4,111,2,56,62,7.0,0.0,0.0,51.205727157502494,0.0,673.3839241975937,39056.0,71,50,1,7785,201108756,,,157.0,,4.0,1.0,4.0,2.0,4.0,2.5,1877.298952485063,25.0,28.0,372.0,0.0,61183.0,1,1,3,114.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,724.5896513550962,0.0185525822243726,0.011842989904958832,24473.2,7,4,7,7_1,7_4,7_0_1 -8757,0,21.0,3,0.0,1,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,17415.0,0,33,2,7788,201108757,,,,,0.0,0.0,2.0,0.0,2.0,1.5,3696.172019627297,0.0,0.0,0.0,0.0,4676.0,0,3,5,50.0,9,7.0,5,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,3117.3333333333335,1,1,1_0,1_0_0,1_3_0,1_1_0 -8758,2,64.0,2,0.0,5,112,2,75,74,5.0,0.0,0.0,1074.369102843865,0.0,2604.287424541179,45281.0,43,70,1,779,201108758,,,184.0,,0.0,2.0,4.0,0.0,2.0,1.5,2150.3005709098925,990.0,410.0,886.0,0.0,27660.0,5,5,1,110.0,8,1.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3678.656527385044,0.08124062029074101,0.13299553605875067,18440.0,5,3,5,5_1,5_1,5_0_0 -8759,2,24.0,2,0.0,1,112,2,56,53,5.0,0.0,0.0,935.3291452549431,0.0,1933.3020068536991,25990.0,60,44,2,7790,201108759,,,213.0,550.0,2.0,0.0,3.0,0.0,2.0,1.5,3105.2914034085447,1798.0,0.0,0.0,0.0,26440.0,1,1,3,70.0,9,3.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,2868.6311521086423,0.11037441908844334,0.10849588321137074,17626.666666666668,5,3,5,5_0,5_1,5_1_0 -8760,2,43.0,2,0.0,1,112,6,52,68,5.0,793.228004569441,0.0,586.6519859975537,0.0,0.0,16864.0,71,71,2,7791,201108760,,,,238.0,2.0,0.0,2.0,0.0,2.0,1.5,3078.4730121944626,0.0,430.0,0.0,0.0,27800.0,1,1,3,40.0,8,1.0,3,3,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1379.8799905669948,0.08182400323570889,0.04963597088370485,18533.333333333332,5,3,5,5_0,5_1,5_1_0 -8761,2,67.0,3,0.0,1,112,1,0,75,10.0,0.0,0.0,427.02807352845184,0.0,2182.815362937806,22068.0,0,31,1,7792,201108761,,,154.0,,0.0,2.0,6.0,0.0,1.0,1.0,2327.151336594017,0.0,313.0,1256.0,0.0,40840.0,0,5,1,100.0,10,0.0,1,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2609.843436466258,0.11826370475196021,0.06390409981553032,40840.0,10,5,10,10_1,10_0,10_1_0 -8762,1,62.0,5,295.0,99,300,1,0,77,3.0,0.0,0.0,259.2183193942679,45.18566834106924,0.0,4948.0,0,71,1,7793,201108762,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2895.229864225131,0.0,190.0,0.0,0.0,13460.0,0,5,3,90.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,304.4039877353371,0.061520611910941214,0.02261545228345744,13460.0,3,2,3_1,3_1_1,3_0_1,3_0_0 -8763,2,61.0,3,0.0,1,400,2,77,75,4.0,3172.912018277764,0.0,1487.0945691565894,0.0,0.0,49258.0,60,50,1,7794,201108763,,,858.0,,0.0,5.0,5.0,2.0,4.0,2.5,2105.0049165372616,0.0,1090.0,0.0,0.0,40697.0,6,5,2,72.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4660.006587434354,0.09460405593881915,0.11450491651557494,16278.8,4,2,4_0,4_1_0,4_0_0,4_1_0 -8764,2,52.0,4,0.0,7,120,2,85,47,8.0,1110.5192063972174,0.0,938.6431775960858,152.93610823131127,0.0,62971.0,50,42,1,7796,201108764,,,,,2.0,1.0,5.0,1.0,3.0,2.0,1900.8982555330683,0.0,688.0,0.0,0.0,51930.0,6,1,1,135.0,0,2.0,4,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2202.0984922246143,0.034970041641781364,0.042405131758609944,25965.0,8,4,8,8_1,8_1,8_0_0 -8765,2,70.0,3,0.0,5,111,1,54,75,6.0,0.0,0.0,450.22129157951787,0.0,0.0,38187.0,71,70,2,7797,201108765,,,,507.0,1.0,1.0,3.0,1.0,3.0,1.8,6206.059433097249,0.0,330.0,0.0,0.0,38332.0,1,5,3,57.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,450.22129157951787,0.011789909958350168,0.01174531179118016,21295.555555555555,6,3,6,6_0,6_2,6_0_0 -8766,2,52.0,3,0.0,7,111,2,52,35,6.0,0.0,166.55115834761278,968.6579303680536,0.0,1673.607638940372,77358.0,41,20,1,7799,201108766,,,459.0,,2.0,1.0,7.0,1.0,3.0,2.0,1439.2634541153755,0.0,710.0,963.0,0.0,40280.0,1,1,1,200.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2808.8167276560384,0.036309324538587325,0.06973229214637633,20140.0,6,3,6,6_1,6_3,6_0_0 -8767,2,38.0,3,0.0,7,111,4,85,67,4.0,0.0,0.0,818.5841665082144,0.0,0.0,23820.0,20,50,8,78,201108767,,,,,1.0,0.0,2.0,0.0,2.0,1.5,4200.360189118542,0.0,600.0,0.0,0.0,23330.0,6,1,2,50.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,818.5841665082144,0.03436541421109212,0.03508719102049783,15553.333333333334,4,2,4_0,4_0_0,4_4_0,4_0_0 -8768,2,45.0,2,0.0,8,111,2,37,37,10.0,0.0,0.0,3001.475277196786,0.0,0.0,68756.0,12,31,1,780,201108768,,,500.0,,2.0,0.0,6.0,2.0,4.0,2.3,1957.8622061615872,0.0,2200.0,0.0,0.0,111550.0,1,1,2,180.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3001.475277196786,0.0436540124090521,0.02690699486505411,48500.00000000001,10,5,10,10_1,10_2,10_0_0 -8769,2,47.0,3,0.0,8,112,5,67,62,6.0,0.0,1387.9263195634398,673.9676304250964,156.41192887293198,0.0,43541.0,50,71,1,7800,201108769,,,199.0,,3.0,0.0,5.0,3.0,5.0,2.8,1704.005423990861,0.0,494.0,0.0,0.0,55810.0,1,1,2,130.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2218.3058788614685,0.05094751794541854,0.03974746244152425,19932.14285714286,6,3,6,6_1,6_0,6_0_0 -8770,2,79.0,2,0.0,5,111,1,0,77,5.0,0.0,0.0,313.79059716148214,0.0,104.27461924862132,26288.0,0,70,2,7801,201108770,,,,570.0,0.0,3.0,3.0,0.0,1.0,1.0,3954.285226116115,0.0,230.0,60.0,0.0,18370.0,0,5,3,75.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,418.06521641010346,0.015903272078899248,0.022758041176380157,18370.0,5,3,5,5_0,5_3,5_0_0 -8771,2,35.0,4,0.0,2,111,2,0,54,2.0,3807.4944219333174,0.0,818.5841665082144,0.0,0.0,29453.0,0,71,1,7804,201108771,,,300.0,,3.0,3.0,7.0,3.0,5.0,3.0,2846.3062380402234,0.0,600.0,0.0,0.0,36891.0,0,4,1,120.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4626.078588441532,0.15706646482332978,0.12539856844329325,12297.0,2,1,2_0,2_1_0,2_4_0,2_0_1 -8772,2,77.0,3,0.0,4,111,1,77,78,7.0,0.0,0.0,1236.0620914274036,0.0,0.0,43017.0,60,31,2,7805,201108772,,,,,0.0,2.0,1.0,0.0,2.0,1.5,4241.301818453579,0.0,906.0,0.0,0.0,33788.0,5,5,1,25.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1236.0620914274036,0.02873426997297356,0.03658287236378015,22525.333333333332,7,4,7,7_0,7_3,7_0_1 -8773,2,51.0,3,0.0,7,111,2,56,65,6.0,0.0,0.0,270.13277494771074,0.0,625.6477154917279,27084.0,71,50,2,7806,201108773,,,150.0,403.0,2.0,1.0,4.0,0.0,2.0,1.5,2497.900954827501,0.0,198.0,360.0,0.0,30448.0,1,1,3,78.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,895.7804904394386,0.03307415782157136,0.02942001085258272,20298.666666666668,6,3,6,6_0,6_3,6_0_0 -8774,1,34.0,4,325.0,7,221,2,0,85,1.0,0.0,0.0,454.31421241205896,0.0,1268.6745341915594,11696.0,0,60,2,7807,201108774,,,,48.0,0.0,0.0,3.0,1.0,2.0,1.3,7047.635487993033,0.0,333.0,730.0,0.0,6028.0,0,6,3,67.0,1,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1722.9887466036184,0.14731435931973483,0.2858309135042499,4636.923076923077,1,1,1_1,1_0_1,1_1_1,1_0_0 -8775,1,23.0,1,172.0,7,111,2,0,84,1.0,0.0,0.0,750.3688192991965,0.0,0.0,5060.0,0,41,2,7808,201108775,,,,101.0,0.0,0.0,1.0,0.0,1.0,1.0,3382.901709389091,0.0,550.0,0.0,0.0,8224.0,0,3,3,24.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,750.3688192991965,0.14829423306308231,0.09124134475914354,8224.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -8776,2,28.0,2,0.0,9,111,2,0,38,8.0,0.0,0.0,148.70945691565893,0.0,231.14207266777726,10042.0,0,10,1,7809,201108776,,,138.0,,1.0,0.0,7.0,0.0,1.0,1.0,3025.881811079487,0.0,109.0,133.0,0.0,26376.0,0,1,3,120.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,379.8515295834362,0.03782628257154314,0.014401407703345323,26376.0,8,4,8,8_1,8_3,8_0_0 -8777,2,42.0,3,0.0,7,111,1,0,63,6.0,0.0,0.0,320.61213188238395,0.0,0.0,8547.0,0,50,2,781,201108777,,,,455.0,1.0,0.0,1.0,0.0,1.0,1.0,2700.8827112949907,0.0,235.0,0.0,0.0,20317.0,0,1,3,25.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,320.61213188238395,0.037511656941895864,0.015780485892719593,20317.0,6,3,6,6_0,6_3,6_0_0 -8779,2,47.0,5,0.0,99,111,4,0,65,5.0,0.0,0.0,1991.8881385033217,86.89551604051776,0.0,20941.0,0,60,2,7814,201108779,,,400.0,,1.0,0.0,2.0,0.0,1.0,1.0,2843.193729901615,0.0,1460.0,0.0,0.0,17424.0,0,1,3,40.0,7,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2078.7836545438395,0.09926859531750344,0.11930576529751145,17424.0,5,3,5,5_0,5_2,5_0_0 -8780,1,38.0,3,135.0,5,111,2,54,68,4.0,0.0,0.0,327.43366660328576,0.0,0.0,24352.0,50,50,2,7815,201108780,,,,,2.0,0.0,1.0,1.0,3.0,1.8,2713.9936135540356,0.0,240.0,0.0,0.0,29635.0,1,1,3,28.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,327.43366660328576,0.013445863444615874,0.01104888363770156,16463.888888888887,4,2,4_1,4_0_1,4_4_1,4_0_0 -8781,2,64.0,2,0.0,1,111,4,74,74,10.0,0.0,0.0,2373.8940828738214,0.0,378.8644499366574,63326.0,10,12,2,7816,201108781,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2109.805381299739,0.0,1740.0,218.0,0.0,121738.0,5,5,1,96.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2752.7585328104788,0.04346964173973532,0.0226121550609545,81158.66666666667,10,5,10,10_0,10_4,10_1_0 -8782,2,50.0,3,0.0,8,211,5,22,21,8.0,0.0,693.9631597817199,1275.626992808634,0.0,0.0,43897.0,41,50,1,7817,201108782,,,326.0,,2.0,1.0,4.0,0.0,2.0,1.5,2227.052443589516,0.0,935.0,0.0,0.0,42815.0,1,1,2,90.0,3,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1969.590152590354,0.04486844551086302,0.04600233919398234,28543.333333333332,8,4,8,8_1,8_1,8_0_0 -8783,2,69.0,3,0.0,1,111,2,0,78,7.0,0.0,0.0,645.0545829344435,0.0,1333.3117288646201,21448.0,0,71,1,782,201108783,,,110.0,,0.0,2.0,4.0,0.0,1.0,1.0,2978.7298723360664,1240.0,0.0,0.0,0.0,23198.0,0,5,1,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1978.3663117990636,0.09224013016593918,0.085281761867362,23198.0,7,4,7,7_1,7_4,7_1_0 -8784,1,34.0,3,229.0,1,111,6,0,56,4.0,0.0,0.0,736.7257498573929,0.0,0.0,15450.0,0,41,2,7820,201108784,,,,503.0,1.0,1.0,2.0,2.0,3.0,2.0,3575.439396615851,0.0,540.0,0.0,0.0,29831.0,0,1,3,45.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,736.7257498573929,0.04768451455387656,0.024696649453836376,14915.5,3,2,3_1,3_0_1,3_4_1,3_1_0 -8785,2,44.0,4,0.0,3,111,2,0,52,6.0,0.0,0.0,552.5443123930447,0.0,1338.1909470239734,38196.0,0,50,1,7821,201108785,,,205.0,,2.0,0.0,4.0,2.0,3.0,1.8,2956.379099262884,0.0,405.0,770.0,0.0,36372.0,0,1,2,100.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1890.7352594170181,0.04950087075654566,0.05198326348336683,20206.666666666668,6,3,6,6_1,6_2,6_0_1 -8786,2,55.0,4,0.0,1,111,2,85,62,5.0,1031.1964059402735,0.0,859.5133748336251,328.46505063315715,0.0,31769.0,71,50,1,7823,201108786,,,,,2.0,0.0,5.0,2.0,4.0,2.5,957.5287580565071,0.0,630.0,0.0,0.0,43404.0,6,1,1,90.0,9,7.0,4,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2219.174831407056,0.06985346820507589,0.05112834834132928,17361.6,5,3,5,5_1,5_3,5_1_0 -8787,2,63.0,3,0.0,5,111,1,0,74,9.0,0.0,0.0,763.983400482416,0.0,651.7526598198359,33864.0,0,60,2,7824,201108787,,,148.0,,1.0,1.0,4.0,1.0,2.0,1.5,2816.4738526241454,493.0,372.0,70.0,0.0,51789.0,0,5,1,95.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1415.7360603022519,0.041806521979159336,0.02733661704806526,34526.0,9,5,9,9_0,9_2,9_0_0 -8788,2,70.0,3,0.0,5,111,4,0,74,9.0,0.0,0.0,1064.1594164606786,0.0,0.0,38173.0,0,20,2,7825,201108788,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2810.695516357115,0.0,780.0,0.0,0.0,35894.0,0,5,1,100.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1064.1594164606786,0.027877280183917393,0.029647278555209187,35894.0,9,5,9,9_0,9_4,9_0_0 -8789,2,40.0,2,0.0,5,111,1,0,43,7.0,0.0,0.0,272.86138883607146,0.0,0.0,18894.0,0,31,2,7826,201108789,,,,338.0,1.0,0.0,2.0,0.0,1.0,1.0,3046.4238092957544,0.0,200.0,0.0,0.0,24326.0,0,1,3,43.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,272.86138883607146,0.014441695185565337,0.011216862157200996,24326.0,7,4,7,7_0,7_4,7_0_0 -8790,2,33.0,2,0.0,1,111,4,0,33,7.0,0.0,0.0,1064.1594164606786,0.0,0.0,22474.0,0,20,2,7827,201108790,,,,791.0,1.0,0.0,2.0,0.0,1.0,1.0,4142.534364068886,0.0,780.0,0.0,0.0,22674.0,0,1,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1064.1594164606786,0.0473506904182913,0.04693302533565664,22674.0,7,4,7,7_0,7_4,7_1_0 -8791,1,39.0,3,200.0,3,111,4,85,42,6.0,0.0,1249.133687607096,1364.3069441803573,0.0,0.0,63570.0,41,50,1,7828,201108791,,,,,1.0,0.0,5.0,3.0,5.0,2.4,2078.702548958756,0.0,1000.0,0.0,0.0,51353.0,6,1,2,120.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2613.440631787453,0.04111122592083456,0.050891683675490296,21397.083333333336,6,3,6,6_1,6_3,6_0_1 -8792,2,30.0,3,0.0,2,111,4,46,46,10.0,0.0,0.0,654.8673332065715,0.0,295.4447545377604,28973.0,20,10,2,7829,201108792,,,,610.0,2.0,0.0,2.0,0.0,2.0,1.5,3073.519351825555,0.0,480.0,170.0,0.0,141788.0,1,1,3,30.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,950.3120877443318,0.03279992019274262,0.006702344963920303,94525.33333333333,10,5,10,10_0,10_4,10_0_1 -8793,2,59.0,3,0.0,2,112,1,77,56,8.0,0.0,0.0,573.00891655575,125.12954309834558,0.0,27670.0,70,70,2,783,201108793,,,,804.0,1.0,2.0,4.0,0.0,2.0,1.5,1866.1086553630312,0.0,420.0,0.0,0.0,41999.0,5,1,3,90.0,10,1.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,698.1384596540956,0.02523088036335727,0.016622740057003635,27999.333333333332,8,4,8,8_0,8_1,8_0_1 -8794,2,34.0,1,0.0,8,112,2,43,37,10.0,1586.456009138882,0.0,1023.230208135268,53.87521994512101,0.0,26539.0,33,43,1,7830,201108794,,,500.0,,2.0,0.0,6.0,2.0,4.0,2.1,7540.606001612314,0.0,750.0,0.0,0.0,106135.0,1,1,2,180.0,9,2.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2663.5614372192713,0.10036404676963229,0.02509597623045434,50540.47619047619,10,5,10,10_1,10_1,10_0_0 -8795,1,44.0,3,86.0,7,120,5,56,62,2.0,0.0,707.8424229773543,1364.3069441803573,354.5337054453125,0.0,52778.0,60,50,1,7831,201108795,,,210.0,,2.0,0.0,4.0,4.0,6.0,3.1,1132.115681099387,0.0,1000.0,0.0,0.0,33316.0,1,1,2,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2426.6830726030244,0.04597906462167995,0.07283836812951808,10747.096774193547,2,1,2_1,2_1_1,2_0_1,2_0_0 -8796,2,45.0,1,0.0,1,111,2,55,46,4.0,0.0,0.0,1031.41604980035,0.0,2973.564558906518,35379.0,50,31,1,7833,201108796,,,787.0,,2.0,0.0,6.0,3.0,5.0,2.8,1094.779971297355,0.0,756.0,1711.0,0.0,46533.0,1,1,2,110.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4004.980608706868,0.11320219929073372,0.08606753505483997,16618.928571428572,4,2,4_0,4_1_0,4_3_0,4_1_0 -8797,2,54.0,3,0.0,2,111,6,11,46,6.0,0.0,0.0,1773.5990274344645,0.0,0.0,15644.0,60,60,1,7834,201108797,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2125.5167722404544,0.0,1300.0,0.0,0.0,30230.0,1,1,1,110.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1773.5990274344645,0.11337247682398775,0.0586701629981629,20153.333333333332,6,3,6,6_1,6_2,6_0_1 -8798,2,49.0,2,0.0,1,111,2,46,38,9.0,0.0,0.0,2574.1675889835633,0.0,4868.242993280198,97294.0,10,10,1,7835,201108798,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2351.1804864301434,2588.0,900.0,1200.0,0.0,72342.0,1,1,2,73.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,7442.410582263761,0.07649403439332088,0.1028781424658395,34448.57142857143,9,5,9,9_1,9_4,9_1_0 -8799,2,39.0,2,0.0,9,112,4,56,64,3.0,0.0,0.0,1526.6594705378197,201.5975972140012,0.0,23866.0,50,42,1,7836,201108799,,,337.0,,2.0,0.0,5.0,2.0,4.0,2.1,2132.679706333147,0.0,1119.0,0.0,0.0,29591.0,1,1,2,125.0,7,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1728.257067751821,0.07241502839821591,0.05840482132242307,14090.95238095238,3,2,3_0,3_1_0,3_2_0,3_0_0 -8800,2,28.0,1,0.0,8,111,2,46,46,9.0,0.0,0.0,332.8908943800072,0.0,1522.4094410298712,31343.0,20,20,1,7837,201108800,,,170.0,,2.0,0.0,4.0,1.0,3.0,1.8,4646.248203395863,0.0,244.0,876.0,0.0,52742.0,1,1,2,88.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1855.3003354098785,0.059193451022872046,0.03517690522562433,29301.11111111111,9,5,9,9_1,9_2,9_0_0 -8801,2,46.0,3,0.0,1,300,5,54,69,6.0,0.0,208.188947934516,982.3009998098572,0.0,0.0,31305.0,42,71,1,7838,201108801,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2506.8619988837663,0.0,720.0,0.0,0.0,31624.0,1,1,1,100.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1190.4899477443732,0.03802874773181195,0.03764514127701661,21082.666666666668,6,3,6,6_1,6_0,6_1_0 -8802,2,44.0,1,0.0,9,112,2,43,38,10.0,0.0,0.0,522.5295596210768,0.0,1703.1521143941482,39976.0,20,20,1,784,201108802,,,345.0,,2.0,1.0,6.0,1.0,3.0,1.8,1671.0923467172233,0.0,383.0,980.0,0.0,73268.0,1,1,2,148.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2225.681674015225,0.055675447118651814,0.030377268029906982,40704.444444444445,10,5,10,10_1,10_1,10_0_0 -8804,2,57.0,1,0.0,7,111,1,0,75,9.0,0.0,0.0,518.4366387885358,0.0,0.0,58114.0,0,20,2,7841,201108804,,,,,0.0,0.0,5.0,2.0,3.0,2.0,2233.0137559641757,0.0,380.0,0.0,0.0,60566.0,0,7,2,100.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,518.4366387885358,0.008921028302793402,0.008559862609195518,30283.0,9,5,9,9_0,9_2,9_0_0 -8805,2,65.0,2,0.0,6,111,2,74,74,9.0,0.0,0.0,818.5841665082144,0.0,1548.4780958420265,33560.0,41,50,1,7844,201108805,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1049.3452728040577,0.0,600.0,891.0,0.0,53946.0,5,5,1,136.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2367.062262350241,0.07053224858016212,0.043878364704523797,35964.0,9,5,9,9_1,9_3,9_0_0 -8806,2,77.0,3,0.0,5,111,4,0,75,6.0,0.0,0.0,2199.262794018736,86.89551604051776,0.0,17408.0,0,33,1,7846,201108806,,,290.0,,0.0,2.0,5.0,0.0,1.0,1.0,2239.0420034704575,0.0,1612.0,0.0,0.0,20475.0,0,5,5,90.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2286.1583100592534,0.13132802792160234,0.11165608351937746,20475.0,6,3,6,6_1,6_2,6_0_0 -8807,1,49.0,3,38.0,8,111,4,46,43,3.0,0.0,0.0,1646.7184816256913,114.70208117348345,0.0,29949.0,41,50,1,7847,201108807,,,353.0,,2.0,0.0,5.0,3.0,5.0,2.8,888.5108857446401,0.0,1207.0,0.0,0.0,39496.0,1,1,2,135.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1761.4205627991748,0.058814002564331856,0.044597441837127175,14105.714285714286,3,2,3_1,3_1_1,3_2_1,3_0_0 -8808,2,47.0,1,0.0,7,400,2,21,43,9.0,0.0,124.91336876070959,4406.711429702554,0.0,0.0,56335.0,31,33,1,7848,201108808,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2421.057505661674,0.0,3230.0,0.0,0.0,77755.0,1,1,1,175.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4531.624798463264,0.08044066385840531,0.058280815361883655,31102.0,9,5,9,9_1,9_0,9_0_0 -8809,2,24.0,1,0.0,4,111,1,0,47,6.0,0.0,0.0,150.0737638598393,0.0,0.0,102469.0,0,12,2,785,201108809,,,,950.0,3.0,0.0,4.0,0.0,3.0,2.0,5135.528582999472,0.0,110.0,0.0,0.0,41963.0,0,1,3,85.0,8,6.0,5,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,150.0737638598393,0.0014645772268670454,0.0035763354350222647,20981.5,6,3,6,6_0,6_2,6_0_1 -8810,2,26.0,3,0.0,2,400,5,67,63,5.0,0.0,0.0,955.0148609262501,151.1981979105009,0.0,11987.0,50,43,1,7850,201108810,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2352.079968565843,0.0,700.0,0.0,0.0,28445.0,1,1,3,74.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1106.213058836751,0.09228439633242272,0.03888954328833718,18963.333333333332,5,3,5,5_1,5_0,5_0_1 -8811,2,76.0,3,0.0,4,112,2,0,77,5.0,0.0,0.0,1383.4072413988822,1598.8774951455268,0.0,13312.0,0,71,1,7851,201108811,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2321.445289720066,0.0,1014.0,0.0,0.0,18703.0,0,5,5,92.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2982.284736544409,0.2240298029255115,0.15945488619710255,18703.0,5,3,5,5_1,5_0,5_0_1 -8812,1,22.0,4,49.0,1,111,2,0,52,1.0,0.0,0.0,0.0,0.0,0.0,9166.0,0,41,2,7853,201108812,,,,391.0,1.0,0.0,1.0,0.0,1.0,1.0,3911.1782805928715,0.0,0.0,0.0,0.0,6728.0,0,1,3,11.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0.0,0.0,0.0,6728.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -8813,2,57.0,1,0.0,6,211,2,75,34,10.0,0.0,0.0,728.5399081923108,0.0,2419.1711665680145,41146.0,50,41,1,7855,201108813,,,,,1.0,2.0,7.0,0.0,2.0,1.5,3976.0476585213223,0.0,534.0,1392.0,0.0,60731.0,5,1,1,170.0,2,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3147.7110747603256,0.07650102257231142,0.05183038439611279,40487.333333333336,10,5,10,10_1,10_1,10_0_0 -8814,2,50.0,3,0.0,99,111,1,52,63,6.0,0.0,0.0,613.9381248811608,608.2686122836243,0.0,30114.0,50,50,2,7857,201108814,,,,,2.0,2.0,4.0,1.0,3.0,2.0,1896.0982591428185,0.0,450.0,0.0,0.0,41093.0,1,1,3,86.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1222.206737164785,0.04058599778059324,0.029742455823736035,20546.5,6,3,6,6_0,6_3,6_0_0 -8815,2,80.0,2,0.0,4,400,2,0,74,9.0,0.0,0.0,136.43069441803573,0.0,0.0,29133.0,0,41,1,7858,201108815,,,,,0.0,3.0,4.0,0.0,1.0,1.0,6245.944598405986,0.0,100.0,0.0,0.0,31077.0,0,5,3,100.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,136.43069441803573,0.004683029362511095,0.004390085736011704,31077.0,9,5,9,9_1,9_1,9_0_1 -8816,1,89.0,4,213.0,1,111,4,0,71,2.0,0.0,0.0,791.2980276246072,0.0,0.0,4096.0,0,70,2,786,201108816,,,73.0,,0.0,4.0,2.0,0.0,1.0,1.0,3046.535799618407,0.0,580.0,0.0,0.0,10980.0,0,5,3,40.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,791.2980276246072,0.19318799502553888,0.07206721563065639,10980.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -8817,2,44.0,2,0.0,8,112,4,47,42,10.0,0.0,0.0,2141.961902363161,0.0,0.0,95049.0,31,31,1,7860,201108817,,,650.0,,2.0,0.0,6.0,2.0,4.0,2.3,2351.636435160251,0.0,1570.0,0.0,0.0,89419.0,1,1,2,140.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2141.961902363161,0.02253534390012689,0.023954214455128783,38877.82608695653,10,5,10,10_1,10_0,10_0_0 -8818,1,23.0,2,51.0,4,111,1,0,47,4.0,0.0,0.0,238.75371523156252,0.0,0.0,24213.0,0,31,2,7861,201108818,,,,132.0,1.0,0.0,4.0,0.0,1.0,1.0,3392.7262439921547,0.0,175.0,0.0,0.0,16020.0,0,1,3,84.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,238.75371523156252,0.009860559006796454,0.01490347785465434,16020.0,4,2,4_1,4_0_1,4_2_1,4_0_1 -8819,2,67.0,3,0.0,1,111,2,0,78,2.0,0.0,0.0,327.43366660328576,0.0,625.6477154917279,10493.0,0,70,1,7863,201108819,,,325.0,,0.0,0.0,4.0,0.0,1.0,1.0,1400.7628526110063,0.0,240.0,360.0,0.0,10466.0,0,5,1,72.0,6,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,953.0813820950136,0.09083020891022717,0.09106453106201162,10466.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -8820,2,42.0,2,0.0,5,111,1,56,55,8.0,0.0,0.0,518.4366387885358,0.0,382.34027057827814,45365.0,50,50,2,7864,201108820,,,,386.0,2.0,2.0,3.0,1.0,3.0,2.0,3173.231650193044,0.0,380.0,220.0,0.0,53193.0,1,1,3,69.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,900.7769093668139,0.019856208737282353,0.01693412496694704,26596.5,8,4,8,8_0,8_4,8_0_0 -8821,2,30.0,2,0.0,1,111,4,0,37,10.0,0.0,0.0,613.9381248811608,0.0,0.0,24391.0,0,12,2,7865,201108821,,,,691.0,1.0,0.0,2.0,0.0,1.0,1.0,3256.821910830924,0.0,450.0,0.0,0.0,39937.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,613.9381248811608,0.025170682828959894,0.015372665069513503,39937.0,10,5,10,10_0,10_4,10_1_0 -8822,2,51.0,3,0.0,9,111,4,0,33,4.0,0.0,0.0,2285.2141315020986,0.0,0.0,24660.0,0,30,1,7867,201108822,,,200.0,,1.0,2.0,6.0,1.0,2.0,1.5,1517.676781901633,0.0,1675.0,0.0,0.0,23440.0,0,1,3,120.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2285.2141315020986,0.09266886178029597,0.09749207045657417,15626.666666666666,4,2,4_0,4_1_0,4_2_0,4_0_0 -8823,1,49.0,4,341.0,99,111,2,78,85,3.0,0.0,0.0,532.0797082303393,0.0,2155.0087978048405,14227.0,71,71,1,7868,201108823,,,,56.0,0.0,4.0,4.0,1.0,3.0,2.0,3061.0537869522104,0.0,390.0,1240.0,0.0,25932.0,7,7,3,90.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2687.0885060351798,0.18887246123815138,0.10362056555742634,12966.0,3,2,3_1,3_1_1,3_2_1,3_0_0 -8824,2,51.0,4,0.0,6,120,2,65,52,8.0,0.0,0.0,648.0457984856697,0.0,2606.865481215533,29869.0,71,71,1,7873,201108824,,,300.0,,2.0,3.0,5.0,0.0,2.0,1.5,2252.019591577578,0.0,475.0,1500.0,0.0,37400.0,1,1,1,113.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3254.9112797012026,0.10897289094717609,0.08702971336099473,24933.333333333332,8,4,8,8_1,8_1,8_0_0 -8825,2,81.0,1,0.0,4,111,1,0,86,10.0,0.0,0.0,422.93515269591074,0.0,52.13730962431066,21858.0,0,60,2,7874,201108825,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2987.148130796388,0.0,310.0,30.0,0.0,45474.0,0,6,1,120.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,475.0724623202214,0.021734489080438346,0.010447122802485408,45474.0,10,5,10,10_0,10_3,10_0_1 -8826,2,78.0,3,0.0,1,120,4,78,75,6.0,0.0,0.0,2592.183193942679,86.89551604051776,0.0,24011.0,71,50,1,7875,201108826,,,255.0,,0.0,1.0,5.0,0.0,2.0,1.5,2424.326053344092,0.0,1900.0,0.0,0.0,29586.0,5,5,1,105.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2679.0787099831964,0.11157714006010563,0.09055224464216848,19724.0,6,3,6,6_1,6_0,6_1_0 -8827,2,47.0,3,0.0,4,111,1,0,55,6.0,0.0,0.0,341.0767360450893,0.0,0.0,19862.0,0,50,2,7876,201108827,,,,590.0,2.0,1.0,5.0,1.0,2.0,1.5,1888.9400567163818,0.0,250.0,0.0,0.0,30307.0,0,1,3,90.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,341.0767360450893,0.01717232585062377,0.011254058007888914,20204.666666666668,6,3,6,6_0,6_2,6_0_1 -8828,2,37.0,3,0.0,8,112,2,47,33,8.0,0.0,416.377895869032,1978.245069061518,194.64595593075978,0.0,72966.0,43,12,1,7878,201108828,,,320.0,,2.0,0.0,5.0,2.0,4.0,2.1,2301.5543537685903,0.0,1450.0,0.0,0.0,53454.0,4,1,2,120.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2589.26892086131,0.03548596498179029,0.048439198579363754,25454.285714285714,8,4,8,8_1,8_0,8_0_0 -8829,2,29.0,3,0.0,9,111,1,0,52,3.0,0.0,0.0,212.83188329213573,0.0,354.5337054453125,13199.0,0,42,2,788,201108829,,,228.0,301.0,1.0,0.0,2.0,0.0,1.0,1.0,2830.8665733351904,0.0,156.0,204.0,0.0,14053.0,0,1,3,50.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,567.3655887374482,0.04298549804814366,0.04037327180939644,14053.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -8830,2,65.0,3,0.0,7,400,2,0,77,3.0,0.0,0.0,1993.252445447502,121.65372245672486,0.0,8542.0,0,70,1,7880,201108830,,,155.0,,0.0,0.0,2.0,0.0,1.0,1.0,2427.451128569895,0.0,1461.0,0.0,0.0,12572.0,0,5,5,50.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2114.906167904227,0.24758910886258803,0.16822352592302156,12572.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -8831,2,43.0,3,0.0,2,112,2,68,46,9.0,0.0,0.0,864.9706026103465,139.0328256648284,0.0,35935.0,31,41,1,7881,201108831,,,234.0,,2.0,0.0,3.0,1.0,3.0,1.8,3162.1239422674903,0.0,634.0,0.0,0.0,56264.0,1,1,2,70.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1004.0034282751749,0.027939430312374423,0.01784450853610079,31257.777777777777,9,5,9,9_1,9_0,9_0_1 -8832,2,75.0,3,0.0,2,112,2,75,72,9.0,2138.542700319213,0.0,1296.0915969713394,139.0328256648284,0.0,41820.0,33,41,1,7882,201108832,,,255.0,,0.0,6.0,11.0,0.0,2.0,1.5,1783.3533918245357,0.0,950.0,0.0,0.0,53142.0,5,5,1,220.0,6,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3573.667122955381,0.08545354191667577,0.06724750899392912,35428.0,9,5,9,9_1,9_0,9_0_1 -8833,2,64.0,2,0.0,6,211,2,34,74,10.0,0.0,346.98157989085996,1117.4010033412778,0.0,2309.6399948396806,55463.0,20,20,1,7883,201108833,,,,,2.0,1.0,4.0,1.0,3.0,2.0,2469.668208584242,2148.0,0.0,0.0,0.0,86102.0,1,5,1,110.0,2,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3774.0225780718183,0.06804577065921097,0.04383199667919233,43051.0,10,5,10,10_1,10_1,10_0_0 -8834,2,49.0,2,0.0,6,112,4,67,52,9.0,0.0,0.0,1555.3099163656073,43.44775802025888,0.0,41391.0,50,50,1,7884,201108834,,,200.0,,2.0,1.0,6.0,1.0,3.0,2.0,1476.2471117513305,0.0,1140.0,0.0,0.0,60526.0,1,1,1,110.0,7,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1598.757674385866,0.038625732028360414,0.02641439504321888,30263.0,9,5,9,9_1,9_1,9_0_0 -8835,2,37.0,2,0.0,8,120,2,46,47,4.0,0.0,0.0,559.3658471139465,0.0,1607.5670467495786,28447.0,20,31,1,7885,201108835,,,296.0,,2.0,0.0,4.0,2.0,4.0,2.1,3683.8193804170537,0.0,410.0,925.0,0.0,34569.0,1,1,2,100.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2166.9328938635254,0.07617439075697,0.06268428053642065,16461.428571428572,4,2,4_0,4_1_0,4_1_0,4_0_0 -8836,1,31.0,2,29.0,99,111,4,0,67,5.0,0.0,0.0,613.9381248811608,0.0,0.0,11879.0,0,20,2,7886,201108836,,,,253.0,1.0,0.0,2.0,0.0,1.0,1.0,2632.314325391193,0.0,450.0,0.0,0.0,18168.0,0,1,3,37.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,613.9381248811608,0.0516826437310515,0.03379227900050422,18168.0,5,3,5,5_0,5_3,5_0_0 -8837,2,63.0,4,0.0,6,221,2,85,64,1.0,0.0,0.0,1637.1683330164287,114.70208117348345,0.0,12316.0,70,70,1,7887,201108837,,,470.0,,1.0,4.0,4.0,0.0,3.0,1.8,1201.726743153345,0.0,1200.0,0.0,0.0,10360.0,6,5,1,85.0,1,3.0,5,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1751.8704141899123,0.14224345681957715,0.16909946082914212,5755.555555555556,1,1,1_0,1_1_0,1_1_0,1_0_0 -8838,2,87.0,3,0.0,2,111,4,71,71,2.0,0.0,0.0,1568.9529858074109,354.5337054453125,0.0,14851.0,70,71,1,7888,201108838,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2522.2058339092696,0.0,1150.0,0.0,0.0,17662.0,5,5,1,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1923.4866912527234,0.12951900149839898,0.10890537262216755,11774.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_1 -8839,2,48.0,3,0.0,3,111,4,54,43,6.0,0.0,0.0,1858.1860579736465,0.0,0.0,47371.0,31,20,1,7889,201108839,,,,,2.0,0.0,5.0,3.0,5.0,2.8,1652.156770125516,0.0,1362.0,0.0,0.0,53940.0,1,1,2,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1858.1860579736465,0.03922623668433528,0.03444912973625596,19264.285714285714,6,3,6,6_1,6_4,6_0_1 -8840,1,81.0,3,240.0,6,111,1,0,78,5.0,0.0,0.0,257.8540124500875,0.0,0.0,20664.0,0,71,2,789,201108840,,,,303.0,0.0,6.0,2.0,0.0,1.0,1.0,3137.165158282982,0.0,189.0,0.0,0.0,18759.0,0,5,3,55.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,257.8540124500875,0.012478417172381316,0.013745616101609228,18759.0,5,3,5,5_0,5_2,5_0_0 -8841,2,64.0,3,0.0,6,212,2,77,78,6.0,0.0,138.792631956344,720.3540665272286,1737.9103208103552,0.0,23697.0,70,50,1,7890,201108841,,,160.0,,0.0,4.0,2.0,0.0,2.0,1.5,1631.8459255287305,0.0,528.0,0.0,0.0,31483.0,5,5,1,60.0,2,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2597.0570192939276,0.10959433765007924,0.08249077341085435,20988.666666666668,6,3,6,6_1,6_0,6_0_0 -8842,2,64.0,4,0.0,4,221,1,0,78,3.0,0.0,0.0,327.43366660328576,0.0,1042.7461924862132,12759.0,0,71,2,7893,201108842,,,,,0.0,1.0,5.0,0.0,1.0,1.0,5906.149519109433,0.0,240.0,600.0,0.0,12620.0,0,5,1,85.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1370.179859089499,0.10738928278779676,0.10857209659980181,12620.0,2,1,2_0,2_0_0,2_1_0,2_0_1 -8843,2,72.0,3,0.0,8,112,2,0,78,6.0,1078.79008621444,459.40361177549863,499.33634157001075,0.0,0.0,39140.0,0,50,1,7894,201108843,,,,,0.0,0.0,5.0,0.0,1.0,1.0,1638.5745855829994,0.0,366.0,0.0,0.0,19614.0,0,5,1,145.0,5,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2037.5300395599493,0.052057486958608824,0.10388141325379573,19614.0,6,3,6,6_1,6_0,6_0_0 -8844,2,42.0,3,0.0,1,221,2,0,22,1.0,237.96840137083234,832.755791738064,245.5752499524643,0.0,0.0,19262.0,0,41,1,7895,201108844,,,118.0,,1.0,0.0,3.0,0.0,1.0,1.0,3416.289967930624,0.0,180.0,0.0,0.0,7729.0,0,1,1,85.0,1,2.0,1,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1316.2994430613605,0.06833659241311185,0.17030656528158372,7729.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -8845,2,38.0,2,0.0,1,111,2,38,37,9.0,0.0,0.0,1910.0297218525002,0.0,0.0,62592.0,12,20,2,7898,201108845,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2422.5095921451116,0.0,1400.0,0.0,0.0,66659.0,1,1,2,94.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1910.0297218525002,0.030515556650250835,0.028653741008003424,31742.38095238095,9,5,9,9_0,9_3,9_1_0 -8847,1,91.0,3,179.0,4,111,1,0,72,2.0,0.0,0.0,769.5983231669331,0.0,1444.0388878473461,7917.0,0,71,2,790,201108847,,,180.0,110.0,0.0,2.0,3.0,0.0,1.0,1.0,3656.70663397476,829.0,248.0,318.0,0.0,12099.0,0,5,3,70.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2213.6372110142793,0.2796055590519489,0.18296034474041484,12099.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -8848,2,29.0,2,0.0,1,111,2,34,46,7.0,0.0,0.0,455.1796452158372,0.0,940.8449699649537,30920.0,20,31,2,7900,201108848,,,,430.0,2.0,0.0,2.0,0.0,2.0,1.5,2748.6424308481714,875.0,0.0,0.0,0.0,35068.0,1,1,3,45.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1396.024615180791,0.04514956711451459,0.039809074232371136,23378.666666666668,7,4,7,7_0,7_3,7_1_0 -8849,2,70.0,3,0.0,5,111,4,0,74,9.0,0.0,0.0,982.3009998098572,0.0,0.0,27865.0,0,60,2,7901,201108849,,,,715.0,0.0,0.0,2.0,0.0,1.0,1.0,3291.3929372017374,0.0,720.0,0.0,0.0,30537.0,0,5,3,58.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,982.3009998098572,0.0352521442601779,0.03216756720731759,30537.0,9,5,9,9_0,9_4,9_0_0 -8850,2,39.0,2,0.0,1,111,2,34,34,10.0,0.0,0.0,347.8982707659911,0.0,1737.9103208103552,23762.0,10,20,1,7902,201108850,,,330.0,,2.0,0.0,4.0,0.0,2.0,1.5,1578.0598556288412,0.0,255.0,1000.0,0.0,56377.0,1,1,5,80.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2085.8085915763463,0.08777916806566562,0.03699750947330199,37584.666666666664,10,5,10,10_1,10_2,10_1_0 -8851,2,53.0,3,0.0,6,112,5,0,21,7.0,0.0,0.0,1658.6840133809783,52.13730962431066,473.110613468091,17115.0,0,50,1,7906,201108851,,,350.0,,1.0,2.0,5.0,0.0,1.0,1.0,3090.667763468707,440.0,1048.0,0.0,0.0,24204.0,0,1,1,118.0,8,0.0,1,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2183.9319364733797,0.12760338512844754,0.0902302072580309,24204.0,7,4,7,7_1,7_0,7_0_0 -8852,2,35.0,3,0.0,3,111,2,63,42,5.0,0.0,666.2046333904511,1072.345258125761,0.0,660.405921907935,24814.0,50,20,1,7907,201108852,,,310.0,,2.0,0.0,5.0,3.0,5.0,2.4,880.0685642151377,0.0,786.0,380.0,0.0,41577.0,1,1,2,110.0,7,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2398.955813424147,0.09667751323543754,0.05769910800260113,17323.75,5,3,5,5_1,5_2,5_0_1 -8853,1,19.0,3,280.0,4,211,2,0,81,1.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,4558.0,0,50,2,7909,201108853,,,300.0,,1.0,0.0,3.0,1.0,2.0,1.3,2815.399797852259,700.0,0.0,0.0,0.0,10862.0,0,4,3,50.0,1,3.0,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1116.8196921446327,0.24502406585007297,0.10281897368298956,8355.384615384615,1,1,1_1,1_0_1,1_1_1,1_0_1 -8854,2,28.0,4,0.0,7,111,1,67,68,6.0,0.0,0.0,682.1534720901786,0.0,1418.13482178125,23638.0,60,70,2,7910,201108854,,,,,2.0,0.0,3.0,3.0,5.0,2.4,2669.2916410681464,0.0,500.0,816.0,0.0,45956.0,1,1,3,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2100.2882938714283,0.08885219958843507,0.04570215627712221,19148.333333333336,5,3,5,5_0,5_4,5_0_0 -8855,2,46.0,2,0.0,5,111,2,85,85,2.0,0.0,0.0,682.1534720901786,0.0,2078.5407436891846,56387.0,60,50,1,7913,201108855,,,709.0,,0.0,0.0,5.0,2.0,4.0,2.1,1458.2027769229176,0.0,500.0,1196.0,0.0,22829.0,7,7,1,75.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2760.6942157793633,0.04895976405517873,0.12092926609923182,10870.95238095238,2,1,2_0,2_1_0,2_2_0,2_0_0 -8856,2,76.0,3,0.0,5,111,2,74,72,10.0,0.0,693.9631597817199,3455.789489608845,0.0,2085.4923849724264,63483.0,60,70,1,7914,201108856,,,,,0.0,2.0,6.0,0.0,2.0,1.5,3637.488171962145,0.0,2533.0,1200.0,0.0,69539.0,5,5,1,167.0,5,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,6235.245034362992,0.09821913007203491,0.08966544003167995,46359.333333333336,10,5,10,10_1,10_2,10_0_0 -8857,2,63.0,3,0.0,2,111,2,77,72,5.0,0.0,0.0,1560.615926454299,0.0,3225.754182736984,19286.0,60,50,1,7915,201108857,,,450.0,,0.0,3.0,6.0,0.0,2.0,1.5,3554.692751335323,3000.0,0.0,0.0,0.0,28304.0,4,5,1,90.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4786.370109191283,0.2481784770917392,0.16910578395955633,18869.333333333332,5,3,5,5_1,5_1,5_0_1 -8858,2,51.0,2,0.0,6,111,2,46,46,10.0,0.0,0.0,832.2272359500179,0.0,1929.0804560994943,53674.0,50,42,1,7917,201108858,,,344.0,,2.0,2.0,5.0,0.0,2.0,1.5,1461.5527061640214,0.0,610.0,1110.0,0.0,59093.0,1,1,1,102.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2761.3076920495123,0.05144590848547737,0.046728169022549414,39395.333333333336,10,5,10,10_1,10_2,10_0_0 -8859,1,46.0,3,180.0,5,111,2,55,63,2.0,0.0,166.55115834761278,1146.0178331115,0.0,1876.9431464751838,44076.0,31,41,1,7919,201108859,,,920.0,,2.0,0.0,7.0,6.0,8.0,3.7,815.9326977109603,0.0,840.0,1080.0,0.0,38906.0,1,1,2,150.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,3189.5121379342963,0.07236392000032435,0.08197995522372632,10515.135135135135,2,1,2_1,2_1_1,2_3_1,2_0_0 -8860,1,37.0,5,280.0,1,111,2,0,54,1.0,0.0,0.0,545.7227776721429,0.0,1911.7013528913908,19445.0,0,41,2,792,201108860,,,400.0,,1.0,0.0,2.0,2.0,3.0,1.8,2345.391698769958,0.0,400.0,1100.0,0.0,11350.0,0,4,3,51.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2457.4241305635337,0.12637820162322108,0.21651313925669902,6305.555555555556,1,1,1_1,1_0_1,1_3_1,1_1_0 -8861,2,66.0,2,0.0,1,112,4,69,78,2.0,0.0,702.2907176991006,2019.1742773869287,135.55700502320772,0.0,25873.0,70,50,1,7920,201108861,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1347.8322917635874,0.0,1480.0,0.0,0.0,17313.0,1,5,1,103.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2857.022000109237,0.11042484443664195,0.16502177555069816,11542.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -8862,2,48.0,1,0.0,7,111,2,0,38,10.0,0.0,0.0,249.66817078500537,0.0,516.1593652806755,28636.0,0,10,2,7921,201108862,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2779.558027589039,0.0,183.0,297.0,0.0,46763.0,0,1,1,63.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,765.8275360656809,0.02674352339941615,0.016376783697916748,46763.0,10,5,10,10_0,10_4,10_0_0 -8863,2,48.0,3,0.0,1,112,2,62,46,8.0,2221.038412794435,0.0,682.1534720901786,0.0,0.0,30518.0,50,50,1,7922,201108863,,,,,2.0,4.0,5.0,0.0,2.0,1.5,2061.399760002666,0.0,500.0,0.0,0.0,42310.0,1,1,2,160.0,9,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2903.1918848846135,0.0951304766001905,0.06861715634329033,28206.666666666668,8,4,8,8_1,8_0,8_1_0 -8864,2,60.0,4,0.0,5,111,1,0,77,2.0,0.0,0.0,791.2980276246072,0.0,0.0,15446.0,0,41,2,7923,201108864,,,,563.0,1.0,5.0,5.0,1.0,2.0,1.5,7931.775112291311,0.0,580.0,0.0,0.0,15900.0,0,5,3,100.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,791.2980276246072,0.0512299642382887,0.04976717154871744,10600.0,2,1,2_0,2_0_0,2_4_0,2_0_0 -8865,1,41.0,3,250.0,99,111,2,0,54,3.0,0.0,0.0,682.1534720901786,0.0,1042.7461924862132,42875.0,0,50,2,7924,201108865,,,,,1.0,0.0,4.0,3.0,4.0,2.1,2600.7254057767327,0.0,500.0,600.0,0.0,26424.0,0,1,3,90.0,5,4.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1724.8996645763918,0.04023089596679631,0.06527776508387799,12582.857142857143,2,1,2_1,2_0_1,2_2_1,2_0_0 -8866,2,29.0,2,0.0,9,221,2,42,54,9.0,0.0,0.0,1131.0104567255162,0.0,0.0,30342.0,20,31,1,7925,201108866,,,420.0,,2.0,0.0,3.0,1.0,3.0,1.8,3878.077842874396,0.0,829.0,0.0,0.0,52847.0,1,1,2,120.0,1,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1131.0104567255162,0.03727540889610165,0.021401601921121657,29359.444444444445,9,5,9,9_1,9_1,9_0_0 -8867,2,83.0,3,0.0,1,400,5,0,71,2.0,0.0,624.566843803548,845.8703053918215,93.84715732375918,0.0,15080.0,0,71,1,7926,201108867,,,213.0,,0.0,4.0,3.0,0.0,1.0,1.0,2853.3844754686866,0.0,620.0,0.0,0.0,11409.0,0,5,5,70.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1564.2843065191284,0.10373238106890773,0.13710967714253033,11409.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -8868,2,87.0,3,0.0,2,111,1,0,78,4.0,0.0,0.0,504.79356934673217,0.0,0.0,11287.0,0,70,1,7927,201108868,,,,266.0,0.0,2.0,2.0,0.0,1.0,1.0,1958.4909743245732,0.0,370.0,0.0,0.0,15890.0,0,5,3,40.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,504.79356934673217,0.04472344904285746,0.03176800310552122,15890.0,4,2,4_0,4_1_0,4_2_0,4_0_1 -8869,2,31.0,3,0.0,1,111,2,0,34,7.0,0.0,0.0,968.6579303680536,0.0,0.0,18797.0,0,12,2,793,201108869,,,,636.0,1.0,0.0,2.0,0.0,1.0,1.0,3171.993991507779,0.0,710.0,0.0,0.0,22005.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,968.6579303680536,0.05153258128254794,0.044019901402774536,22005.0,7,4,7,7_0,7_4,7_1_0 -8870,1,24.0,2,240.0,5,111,1,0,35,1.0,0.0,0.0,331.5265874358268,45.18566834106924,0.0,17090.0,0,20,2,7931,201108870,,,,86.0,1.0,0.0,1.0,0.0,1.0,1.0,3458.8999494186787,0.0,243.0,0.0,0.0,8091.0,0,1,3,30.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,376.71225577689603,0.022042847032000937,0.04655941858569967,8091.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -8871,2,64.0,1,0.0,4,112,5,77,74,9.0,0.0,0.0,852.6918401127233,0.0,0.0,21933.0,70,20,1,7933,201108871,,,290.0,,0.0,3.0,7.0,0.0,2.0,1.5,1280.111768622912,0.0,625.0,0.0,0.0,51392.0,5,5,1,100.0,10,4.0,3,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,852.6918401127233,0.038877118502381035,0.01659191781041258,34261.333333333336,9,5,9,9_1,9_2,9_0_1 -8872,2,47.0,2,0.0,2,111,1,0,37,8.0,0.0,0.0,436.5782221377143,0.0,0.0,36602.0,0,60,2,7935,201108872,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3498.375498282218,0.0,320.0,0.0,0.0,24903.0,0,1,2,49.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,436.5782221377143,0.011927714937372666,0.01753114974652509,24903.0,7,4,7,7_0,7_4,7_0_1 -8873,2,66.0,1,0.0,4,111,6,0,75,6.0,0.0,0.0,914.0856526008394,60.82686122836243,0.0,29902.0,0,60,1,7936,201108873,,,250.0,,0.0,3.0,5.0,0.0,1.0,1.0,3624.996623751033,0.0,670.0,0.0,0.0,21388.0,0,5,1,90.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,974.9125138292018,0.032603588851220715,0.0455822196478961,21388.0,6,3,6,6_1,6_3,6_0_1 -8874,2,81.0,3,0.0,1,112,2,0,78,6.0,0.0,0.0,2025.9958121078305,1724.0070382438723,0.0,23772.0,0,20,1,7937,201108874,,,239.0,,0.0,3.0,7.0,0.0,1.0,1.0,3351.027142841288,0.0,1485.0,0.0,0.0,20424.0,0,5,5,180.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3750.002850351703,0.15774873171595585,0.183607660122978,20424.0,6,3,6,6_1,6_0,6_1_0 -8875,2,37.0,2,0.0,8,111,4,0,34,8.0,0.0,0.0,442.03544991443573,0.0,0.0,24611.0,0,10,2,7938,201108875,,,,436.0,1.0,0.0,2.0,0.0,1.0,1.0,5188.6661388173825,0.0,324.0,0.0,0.0,28008.0,0,1,3,50.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,442.03544991443573,0.017960889436204774,0.015782471076636523,28008.0,8,4,8,8_0,8_2,8_0_0 -8876,2,35.0,1,0.0,1,111,2,0,38,10.0,0.0,0.0,968.6579303680536,0.0,0.0,30001.0,0,20,2,7939,201108876,,,,584.0,1.0,0.0,2.0,0.0,1.0,1.0,3226.333784579073,0.0,710.0,0.0,0.0,38168.0,0,4,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,968.6579303680536,0.03228752142822085,0.02537879716956753,38168.0,10,5,10,10_0,10_4,10_1_0 -8877,2,82.0,3,0.0,5,211,2,0,78,5.0,0.0,0.0,622.1239665462429,0.0,1598.8774951455268,24090.0,0,50,1,7942,201108877,,,304.0,368.0,0.0,1.0,5.0,0.0,2.0,1.5,4135.6006648398425,0.0,456.0,920.0,0.0,27719.0,0,5,3,100.0,2,3.0,5,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2221.0014616917697,0.09219599259824698,0.0801255983870908,18479.333333333332,5,3,5,5_1,5_1,5_0_0 -8878,2,57.0,4,0.0,2,211,2,0,54,4.0,0.0,0.0,392.9203999239429,0.0,2215.835659033203,11947.0,0,60,1,7943,201108878,,,210.0,,1.0,1.0,5.0,0.0,1.0,1.0,2003.5022553055323,0.0,288.0,1275.0,0.0,16090.0,0,1,3,90.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2608.756058957146,0.2183607649583281,0.16213524294326576,16090.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -8879,1,25.0,4,170.0,5,111,1,81,63,2.0,0.0,0.0,286.504458277875,0.0,399.7193737863817,19160.0,60,50,2,7945,201108879,,,,44.0,2.0,0.0,3.0,2.0,4.0,2.1,3556.6473803437484,0.0,210.0,230.0,0.0,25416.0,4,1,3,64.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,686.2238320642567,0.035815440086861,0.026999678630164333,12102.857142857143,2,1,2_1,2_0_1,2_3_1,2_0_0 -8880,2,34.0,4,0.0,10,300,6,64,43,4.0,0.0,0.0,1500.737638598393,0.0,0.0,29450.0,43,33,7,7946,201108880,,,200.0,,2.0,0.0,1.0,2.0,4.0,2.1,3031.545335446412,0.0,1100.0,0.0,0.0,33667.0,1,1,1,9.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1500.737638598393,0.050958833229147474,0.04457592415713883,16031.904761904761,4,2,4_0,4_1_0,4_0_0,4_0_0 -8881,2,36.0,1,0.0,2,111,1,0,37,10.0,0.0,0.0,272.86138883607146,0.0,0.0,33584.0,0,12,2,7948,201108881,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3781.923523272085,0.0,200.0,0.0,0.0,78175.0,0,1,2,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,272.86138883607146,0.008124743593260823,0.0034903919262689025,78175.0,10,5,10,10_0,10_4,10_0_1 -8882,2,62.0,2,0.0,8,120,2,86,38,9.0,0.0,208.188947934516,1260.61961642265,118.17790181510415,0.0,88322.0,50,50,1,7949,201108882,,,,,2.0,1.0,4.0,1.0,4.0,2.3,2139.4841708230742,0.0,924.0,0.0,0.0,67459.0,6,5,1,90.0,0,3.0,5,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1586.9864661722702,0.0179681898753682,0.023525199990694648,29330.000000000004,9,5,9,9_1,9_1,9_0_0 -8883,2,61.0,2,0.0,1,221,2,75,75,9.0,0.0,0.0,3058.776168852361,0.0,0.0,28515.0,50,70,1,795,201108883,,,460.0,,0.0,1.0,6.0,0.0,2.0,1.5,2730.3259603402703,0.0,2242.0,0.0,0.0,47747.0,5,5,1,140.0,1,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3058.776168852361,0.10726902222873438,0.06406216450986159,31831.333333333332,9,5,9,9_1,9_1,9_1_0 -8884,2,50.0,1,0.0,9,112,4,75,47,9.0,0.0,0.0,3462.6110243297467,0.0,0.0,70526.0,71,50,1,7950,201108884,,,150.0,,1.0,1.0,5.0,0.0,2.0,1.5,2017.670822264016,0.0,2538.0,0.0,0.0,50041.0,5,1,1,126.0,7,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3462.6110243297467,0.049096943316362,0.0691954801928368,33360.666666666664,9,5,9,9_1,9_0,9_0_0 -8885,2,53.0,4,0.0,1,112,2,78,38,9.0,0.0,0.0,2319.3218051066074,0.0,0.0,58318.0,70,20,1,7951,201108885,,,300.0,,1.0,3.0,2.0,0.0,2.0,1.5,1360.2578144040808,0.0,1700.0,0.0,0.0,55510.0,5,1,2,75.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2319.3218051066074,0.039770256269189744,0.041782053776015265,37006.666666666664,9,5,9,9_1,9_0,9_1_0 -8886,2,69.0,4,0.0,7,111,5,86,72,1.0,0.0,0.0,976.6882361985953,0.0,834.3950819346333,25528.0,50,71,1,7952,201108886,,,150.0,,0.0,2.0,5.0,0.0,2.0,1.5,3428.0683259996395,776.0,420.0,0.0,0.0,12248.0,6,5,1,160.0,8,6.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1811.0833181332287,0.07094497485636277,0.1478676778358286,8165.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_0 -8887,2,87.0,3,0.0,1,111,2,0,78,5.0,0.0,0.0,327.43366660328576,0.0,3215.134093499157,15607.0,0,70,1,7953,201108887,,,200.0,,0.0,1.0,3.0,0.0,1.0,1.0,2977.247328146001,0.0,240.0,1850.0,0.0,16990.0,0,5,1,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3542.567760102443,0.2269858243161686,0.20850899117730684,16990.0,4,2,4_0,4_1_0,4_4_0,4_1_0 -8888,2,60.0,2,0.0,2,211,2,62,78,8.0,1903.7472109666587,0.0,302.8761416080393,0.0,0.0,26179.0,50,71,1,7954,201108888,,,,,1.0,5.0,4.0,0.0,2.0,1.5,5669.871211519986,0.0,222.0,0.0,0.0,39658.0,1,5,1,70.0,2,3.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2206.623352574698,0.08428982591293395,0.05564131707536179,26438.666666666668,8,4,8,8_1,8_1,8_0_1 -8889,2,52.0,3,0.0,1,111,4,0,37,8.0,0.0,0.0,1091.4455553442858,0.0,782.0596443646599,49976.0,0,41,2,7956,201108889,,,,,3.0,0.0,3.0,2.0,3.0,2.0,1911.5636324955715,0.0,800.0,450.0,0.0,49580.0,0,1,1,50.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1873.5051997089458,0.037488098281353965,0.0377875191550816,24790.0,7,4,7,7_0,7_4,7_1_0 -8890,1,58.0,2,340.0,8,400,2,52,78,2.0,269.69752155361,0.0,504.79356934673217,1216.5372245672486,0.0,19072.0,50,50,1,7957,201108890,,,,204.0,1.0,3.0,5.0,1.0,3.0,2.0,991.1053216963031,0.0,370.0,0.0,0.0,22580.0,4,7,3,132.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1991.0283154675908,0.10439536050060774,0.08817663044586319,11290.0,2,1,2_1,2_1_1,2_0_1,2_0_0 -8891,1,28.0,4,389.0,9,400,2,55,42,2.0,190.37472109666587,0.0,1021.8659011910876,1159.186183980507,0.0,26422.0,50,41,1,7959,201108891,,,,149.0,2.0,0.0,4.0,2.0,4.0,2.3,1784.4335371594782,0.0,749.0,0.0,0.0,22991.0,1,2,3,144.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2371.4268062682604,0.08975197964833322,0.10314587474525946,9996.08695652174,2,1,2_1,2_1_1,2_0_1,2_0_0 -8892,2,67.0,3,0.0,6,300,2,72,74,8.0,0.0,0.0,3956.490138123036,0.0,0.0,42517.0,50,50,1,7960,201108892,,,429.0,,1.0,0.0,7.0,1.0,3.0,2.0,1076.2148790928757,0.0,2900.0,0.0,0.0,53896.0,5,5,1,300.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3956.490138123036,0.09305666293771987,0.07340971756944924,26948.0,8,4,8,8_1,8_0,8_0_0 -8893,2,52.0,3,0.0,4,120,2,56,63,5.0,0.0,0.0,703.9823831970643,0.0,1545.0022752004058,24452.0,50,50,2,7961,201108893,,,,295.0,3.0,1.0,4.0,2.0,4.0,2.5,2401.4885287155976,0.0,516.0,889.0,0.0,44987.0,1,1,3,102.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2248.9846583974704,0.09197548905600648,0.04999187895164093,17994.8,5,3,5,5_0,5_1,5_0_1 -8894,1,45.0,5,327.0,5,111,1,0,85,2.0,0.0,0.0,1359.715419091571,0.0,1629.0571132163109,29785.0,0,71,2,7962,201108894,,,,111.0,0.0,0.0,5.0,3.0,4.0,2.3,3057.8740479535622,1014.0,610.0,310.0,0.0,27724.0,0,7,3,88.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2988.772532307882,0.1003448894513306,0.10780452071518835,12053.913043478262,2,1,2_1,2_0_1,2_4_1,2_0_0 -8895,2,28.0,4,0.0,6,112,2,64,67,5.0,0.0,0.0,136.43069441803573,0.0,1216.5372245672486,10953.0,60,60,1,7963,201108895,,,200.0,,2.0,0.0,4.0,2.0,4.0,2.1,2758.4006140381653,0.0,100.0,700.0,0.0,36101.0,4,1,3,90.0,5,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1352.9679189852843,0.12352487163199893,0.03747729755367675,17190.95238095238,5,3,5,5_1,5_0,5_0_0 -8896,0,55.0,3,0.0,4,111,2,0,52,9.0,0.0,0.0,1200.5901108787143,0.0,1772.6685272265624,26346.0,0,50,1,7964,201108896,,,230.0,,1.0,2.0,4.0,0.0,1.0,1.0,1674.2586366117296,0.0,880.0,1020.0,0.0,34016.0,0,1,5,100.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2973.258638105277,0.1128542715442677,0.08740765046170264,34016.0,9,5,9,9_1,9_2,9_0_1 -8897,2,40.0,2,0.0,6,112,2,37,21,10.0,1586.456009138882,0.0,1637.1683330164287,86.89551604051776,0.0,38596.0,20,20,1,7965,201108897,,,210.0,,2.0,0.0,5.0,3.0,5.0,2.4,2719.3766208300744,0.0,1200.0,0.0,0.0,113273.0,1,1,2,150.0,7,1.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3310.5198581958284,0.08577365162700354,0.02922602789893292,47197.083333333336,10,5,10,10_1,10_1,10_0_0 -8898,2,46.0,3,0.0,1,300,2,34,34,8.0,0.0,0.0,1364.3069441803573,5583.905860763672,0.0,82094.0,20,20,1,7966,201108898,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.5,1235.7767596624396,0.0,1000.0,0.0,0.0,66593.0,1,1,1,200.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6948.212804944029,0.0846372792767319,0.10433848610130238,26637.2,8,4,8,8_1,8_0,8_1_0 -8899,2,54.0,2,0.0,9,111,2,0,48,10.0,0.0,0.0,286.504458277875,0.0,474.449517581227,26825.0,0,31,2,7967,201108899,,,,710.0,1.0,2.0,2.0,0.0,1.0,1.0,2853.3293342987777,0.0,210.0,273.0,0.0,40500.0,0,1,3,50.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,760.953975859102,0.028367342995679477,0.018788987058249433,40500.0,10,5,10,10_0,10_3,10_0_0 -8900,2,64.0,2,0.0,5,400,5,77,74,8.0,0.0,69.396315978172,614.8315061752091,208.54923849724264,111.8261450015488,29447.0,60,41,1,7968,201108900,,,278.0,,0.0,2.0,3.0,0.0,2.0,1.5,2984.6013045804248,104.0,411.0,0.0,0.0,38435.0,5,5,1,74.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1004.6032056521725,0.03411563845730202,0.026137718372633602,25623.333333333332,8,4,8,8_1,8_0,8_0_0 -8901,2,50.0,3,0.0,1,111,5,55,62,2.0,0.0,485.77421184720396,1118.731694227893,0.0,1084.4560401856618,27128.0,42,50,1,797,201108901,,,660.0,,3.0,1.0,4.0,1.0,3.0,2.0,1197.2073859694347,0.0,820.0,624.0,0.0,19329.0,4,1,1,100.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2688.961946260759,0.09912127492851515,0.13911541964202798,9664.5,1,1,1_0,1_1_0,1_2_0,1_1_0 -8902,2,72.0,3,0.0,1,300,2,71,71,3.0,0.0,0.0,1450.2582816637198,458.8083246939338,0.0,21650.0,70,71,1,7970,201108902,,,,,0.0,5.0,5.0,0.0,2.0,1.5,1918.2710039732697,0.0,1063.0,0.0,0.0,19599.0,5,5,1,170.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1909.0666063576537,0.08817859613661218,0.09740632717779753,13066.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -8903,1,20.0,3,130.0,6,111,6,0,84,1.0,0.0,0.0,0.0,0.0,0.0,23746.0,0,60,2,7972,201108903,,,,542.0,0.0,0.0,3.0,0.0,3.0,2.0,3442.8954192222004,0.0,0.0,0.0,0.0,2096.0,0,3,3,75.0,9,7.0,5,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,1048.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -8904,2,64.0,2,0.0,6,111,4,75,77,8.0,0.0,1040.94473967258,802.2124831780501,45.18566834106924,0.0,64425.0,50,60,1,7973,201108904,,,240.0,,0.0,0.0,4.0,0.0,2.0,1.5,2301.7137418084994,0.0,588.0,0.0,0.0,42616.0,5,5,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1888.3428911916994,0.02931071620010399,0.044310655415611494,28410.666666666668,8,4,8,8_1,8_3,8_0_0 -8905,2,32.0,2,0.0,99,111,1,0,54,6.0,0.0,0.0,477.50743046312505,0.0,93.84715732375918,17746.0,0,31,2,7974,201108905,,,,300.0,1.0,0.0,2.0,0.0,1.0,1.0,4017.2188448163824,0.0,350.0,54.0,0.0,19004.0,0,1,3,50.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,571.3545877868842,0.03219624635336888,0.030064964627809103,19004.0,5,3,5,5_0,5_3,5_0_0 -8906,2,44.0,2,0.0,6,112,1,37,54,9.0,252.24650545308228,195.69761105844503,2083.2967037634057,118.17790181510415,0.0,42943.0,31,50,1,7975,201108906,,,,,2.0,0.0,6.0,1.0,3.0,1.8,2485.36081700426,0.0,1527.0,0.0,0.0,59415.0,1,1,2,117.0,10,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2649.418722090037,0.061696172183825934,0.044591748246907974,33008.333333333336,9,5,9,9_1,9_0,9_0_0 -8907,2,35.0,3,0.0,3,111,1,63,63,5.0,0.0,0.0,552.5443123930447,0.0,78.20596443646599,18910.0,50,50,2,7976,201108907,,,,281.0,2.0,0.0,4.0,3.0,5.0,2.4,1603.0895886284998,0.0,405.0,45.0,0.0,42210.0,1,1,3,80.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,630.7502768295108,0.033355382169725584,0.014943147994065643,17587.5,5,3,5,5_0,5_2,5_0_1 -8908,2,55.0,4,0.0,2,111,1,78,68,7.0,0.0,0.0,900.4425831590357,0.0,938.4715732375919,18158.0,71,71,2,7977,201108908,,,,334.0,2.0,0.0,4.0,1.0,3.0,2.0,3733.2877514282386,0.0,660.0,540.0,0.0,49122.0,5,1,3,75.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1838.9141563966277,0.1012729461612858,0.037435653198091036,24561.0,7,4,7,7_0,7_3,7_0_1 -8909,2,85.0,1,0.0,1,300,5,0,71,8.0,0.0,111.0341055650752,549.815698504684,104.27461924862132,0.0,12866.0,0,70,1,7978,201108909,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1730.4012967406568,0.0,403.0,0.0,0.0,26355.0,0,5,5,85.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,765.1244233183804,0.059468710035627266,0.029031471194019366,26355.0,8,4,8,8_1,8_0,8_1_0 -8910,1,27.0,5,542.0,1,400,2,63,85,2.0,333.1557619191653,0.0,2357.5223995436572,396.243553144761,0.0,10773.0,71,50,1,7979,201108910,,,,,1.0,1.0,6.0,5.0,7.0,3.0,2127.373177810026,0.0,1728.0,0.0,0.0,35203.0,4,6,3,101.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3086.9217146075835,0.286542440787857,0.08768916611105824,11734.333333333334,2,1,2_1,2_1_1,2_0_1,2_1_0 -8911,2,30.0,3,0.0,8,111,6,38,34,10.0,0.0,0.0,1106.4529317302697,0.0,0.0,41493.0,12,10,2,7981,201108911,,,,,2.0,0.0,5.0,0.0,2.0,1.5,3360.26454036439,0.0,811.0,0.0,0.0,65526.0,1,1,2,105.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1106.4529317302697,0.026666014309167083,0.01688570844749061,43684.0,10,5,10,10_0,10_3,10_0_0 -8912,1,48.0,3,36.0,9,221,2,0,46,4.0,0.0,0.0,1113.2744664511715,333.6787815955882,0.0,23803.0,0,20,2,7982,201108912,,,176.0,494.0,1.0,0.0,3.0,1.0,2.0,1.3,2433.3848885094094,0.0,816.0,0.0,0.0,20613.0,0,1,3,70.0,1,2.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1446.9532480467597,0.060788692519714305,0.07019615039279871,15856.153846153846,4,2,4_1,4_0_1,4_1_1,4_0_0 -8913,2,40.0,3,0.0,1,111,2,0,55,4.0,0.0,0.0,349.26257771017146,0.0,1155.7103633388863,14498.0,0,41,2,7985,201108913,,,89.0,,1.0,0.0,2.0,0.0,1.0,1.0,3291.548497030776,0.0,256.0,665.0,0.0,15735.0,0,1,2,46.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1504.9729410490577,0.10380555532135864,0.09564492793448094,15735.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -8914,2,75.0,3,0.0,4,112,2,0,86,2.0,1903.7472109666587,0.0,1637.1683330164287,156.41192887293198,0.0,15890.0,0,70,1,7986,201108914,,,250.0,,0.0,1.0,3.0,0.0,1.0,1.0,2792.368657342367,0.0,1200.0,0.0,0.0,10780.0,0,5,1,100.0,9,2.0,1,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3697.3274728560195,0.23268266034336182,0.3429802850515788,10780.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -8915,1,32.0,3,85.0,99,111,4,54,42,7.0,0.0,0.0,1159.6609025533037,0.0,0.0,33875.0,10,41,2,7987,201108915,,,,515.0,2.0,0.0,3.0,0.0,2.0,1.5,3308.4623746743214,0.0,850.0,0.0,0.0,32613.0,1,1,3,69.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1159.6609025533037,0.03423353217869531,0.03555824065720123,21742.0,6,3,6,6_0,6_3,6_0_0 -8916,2,36.0,1,0.0,7,120,2,43,43,6.0,0.0,0.0,642.5885707089483,0.0,2172.387901012944,62907.0,33,33,1,7988,201108916,,,248.0,,2.0,0.0,6.0,2.0,4.0,2.3,4193.0377601013615,0.0,471.0,1250.0,0.0,46552.0,1,1,1,160.0,0,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2814.9764717218923,0.04474822311860194,0.060469506610282955,20240.0,6,3,6,6_1,6_1,6_0_0 -8917,2,41.0,1,0.0,7,120,2,37,43,9.0,0.0,0.0,2352.0651717669357,385.81609121989885,0.0,85366.0,12,31,1,7992,201108917,,,355.0,,2.0,0.0,8.0,3.0,5.0,2.6,1689.3902743100655,0.0,1724.0,0.0,0.0,77736.0,1,1,2,150.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2737.8812629868344,0.03207226838538568,0.03522024882920184,29898.46153846154,9,5,9,9_1,9_0,9_0_0 -8918,2,51.0,2,0.0,6,112,5,46,46,10.0,0.0,138.792631956344,955.0148609262501,0.0,0.0,41017.0,50,50,1,7993,201108918,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1597.6734969085003,0.0,700.0,0.0,0.0,59036.0,1,1,1,90.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1093.807492882594,0.02666717441262389,0.018527804947533606,39357.333333333336,10,5,10,10_1,10_2,10_0_0 -8919,2,40.0,2,0.0,3,111,2,62,38,6.0,0.0,0.0,2182.8911106885716,0.0,1529.3610823131125,43334.0,50,10,1,7995,201108919,,,440.0,,2.0,0.0,4.0,3.0,5.0,2.4,1002.6222862701409,0.0,1600.0,880.0,0.0,49287.0,1,1,3,80.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3712.252193001684,0.08566604036095639,0.07531909414250582,20536.25,6,3,6,6_1,6_2,6_0_1 -8920,2,40.0,2,0.0,9,112,4,54,53,8.0,0.0,0.0,2485.767252296611,0.0,0.0,66967.0,31,60,1,7996,201108920,,,484.0,,2.0,0.0,6.0,3.0,5.0,2.4,1699.188265855701,0.0,1822.0,0.0,0.0,67140.0,1,1,2,187.0,9,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2485.767252296611,0.03711928639922067,0.037023640933819046,27975.0,8,4,8,8_1,8_0,8_0_0 -8921,2,42.0,2,0.0,8,112,2,54,34,6.0,0.0,444.1364222603008,886.7995137172322,312.82385774586396,0.0,64805.0,41,12,1,7998,201108921,,,150.0,,2.0,1.0,4.0,2.0,4.0,2.3,1950.3367525528133,0.0,650.0,0.0,0.0,47098.0,4,1,2,90.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1643.759793723397,0.025364706330119544,0.0349008406667671,20477.391304347828,6,3,6,6_1,6_0,6_0_0 -8922,1,33.0,2,22.0,99,111,4,0,42,2.0,0.0,0.0,712.1682248621465,0.0,0.0,16903.0,0,20,2,7999,201108922,,,,309.0,1.0,0.0,1.0,0.0,1.0,1.0,2836.114065269886,0.0,522.0,0.0,0.0,11605.0,0,1,3,30.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,712.1682248621465,0.04213265247956851,0.06136736103939221,11605.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -8923,2,43.0,3,0.0,4,111,1,0,55,6.0,0.0,0.0,422.93515269591074,0.0,448.38086276907165,19494.0,0,50,2,8,201108923,,,,423.0,1.0,1.0,4.0,0.0,1.0,1.0,3042.172564285492,0.0,310.0,258.0,0.0,20618.0,0,1,3,62.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,871.3160154649825,0.0446966253957619,0.042259967769181415,20618.0,6,3,6,6_0,6_3,6_0_1 -8924,2,43.0,3,0.0,9,221,3,64,64,5.0,0.0,0.0,1255.1623886459286,0.0,0.0,30996.0,50,50,1,8000,201108924,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2866.3509289125336,0.0,920.0,0.0,0.0,39335.0,1,1,1,150.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1255.1623886459286,0.040494334386563705,0.03190955608607928,17102.17391304348,5,3,5,5_1,5_1,5_0_0 -8925,2,80.0,1,0.0,1,112,6,71,74,10.0,5330.492190706645,0.0,1196.9924155904473,0.0,2474.153458159267,65218.0,41,10,1,8001,201108925,,,,,0.0,4.0,14.0,0.0,2.0,1.5,5530.626031318236,2301.0,0.0,0.0,0.0,82805.0,5,5,1,350.0,9,1.0,3,8,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,9001.638064456358,0.138023828765929,0.10870887101571593,55203.333333333336,10,5,10,10_1,10_1,10_1_0 -8926,2,48.0,1,0.0,8,111,4,54,37,9.0,0.0,0.0,2046.460416270536,0.0,0.0,148132.0,31,20,2,8002,201108926,,,,,2.0,0.0,5.0,3.0,5.0,2.8,2684.5168643467837,0.0,1500.0,0.0,0.0,95739.0,1,1,2,118.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2046.460416270536,0.013815113657214753,0.021375410399842653,34192.5,9,5,9,9_0,9_4,9_0_0 -8927,2,84.0,2,0.0,1,112,6,0,75,5.0,1554.7268889561046,0.0,259.2183193942679,0.0,0.0,17056.0,0,70,1,8003,201108927,,,93.0,,0.0,2.0,5.0,0.0,1.0,1.0,3990.624176940091,0.0,190.0,0.0,0.0,18512.0,0,5,1,100.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1813.9452083503725,0.10635232225318787,0.09798753286248771,18512.0,5,3,5,5_1,5_0,5_1_0 -8928,2,62.0,3,0.0,5,111,2,78,75,7.0,0.0,0.0,1096.592790988554,0.0,2266.629939069854,24738.0,50,70,1,8004,201108928,,,229.0,,0.0,1.0,5.0,0.0,2.0,1.5,2644.5898954905224,2108.0,0.0,0.0,0.0,34482.0,5,5,1,100.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3363.222730058408,0.13595370402047086,0.09753560495500285,22988.0,7,4,7,7_1,7_2,7_0_0 -8929,2,64.0,2,0.0,5,112,4,78,74,8.0,0.0,0.0,2319.3218051066074,97.32297796537989,0.0,18352.0,43,31,1,8005,201108929,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1979.6933227736183,0.0,1700.0,0.0,0.0,41356.0,5,5,1,150.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2416.644783071987,0.1316829110217953,0.05843516740187608,27570.666666666668,8,4,8,8_1,8_0,8_0_0 -8930,2,56.0,3,0.0,3,221,2,0,78,8.0,0.0,0.0,341.0767360450893,0.0,1007.9879860700061,8739.0,0,71,2,8007,201108930,,,,282.0,0.0,1.0,3.0,0.0,1.0,1.0,7242.692348648616,0.0,250.0,580.0,0.0,27429.0,0,5,3,80.0,1,3.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1349.0647221150953,0.15437289416581934,0.04918388282894365,27429.0,8,4,8,8_0,8_1,8_0_1 -8931,2,34.0,4,0.0,8,111,2,46,63,3.0,0.0,0.0,573.00891655575,0.0,1376.4249740818013,39331.0,60,71,1,8009,201108931,,,444.0,,2.0,0.0,5.0,1.0,3.0,1.8,3461.8292614875977,0.0,420.0,792.0,0.0,24433.0,1,1,3,80.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1949.4338906375515,0.04956481886139563,0.0797869230400504,13573.888888888889,3,2,3_0,3_1_0,3_3_0,3_0_0 -8932,2,62.0,3,0.0,5,112,4,86,74,8.0,0.0,0.0,1869.1005135270893,130.34327406077665,0.0,132427.0,41,42,1,801,201108932,,,285.0,,0.0,3.0,6.0,0.0,2.0,1.5,2628.601111470115,0.0,1370.0,0.0,0.0,37952.0,6,5,1,120.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1999.443787587866,0.015098460190050865,0.052683489344115354,25301.333333333332,8,4,8,8_1,8_0,8_0_0 -8933,0,30.0,3,0.0,8,112,1,46,47,7.0,0.0,0.0,458.40713324460006,0.0,0.0,21053.0,31,43,8,8010,201108933,,,,,2.0,0.0,2.0,1.0,3.0,1.8,5255.709583759216,0.0,336.0,0.0,0.0,39229.0,1,1,5,45.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,458.40713324460006,0.02177395778485727,0.011685414699446839,21793.888888888887,7,4,7,7_0,7_1,7_0_0 -8934,1,33.0,4,194.0,4,111,1,0,54,3.0,0.0,0.0,113.40475732234572,0.0,234.40480394555416,9778.0,0,71,2,8012,201108934,,,,149.0,1.0,0.0,3.0,1.0,2.0,1.3,3194.735927381868,218.0,0.0,0.0,0.0,16625.0,0,1,3,60.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,347.8095612678999,0.0355706239791266,0.020920875865738337,12788.461538461537,3,2,3_1,3_0_1,3_3_1,3_0_1 -8935,2,32.0,2,0.0,2,400,5,54,55,8.0,0.0,832.755791738064,1195.132883101993,0.0,0.0,26533.0,41,50,1,8013,201108935,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1763.0539106557453,0.0,876.0,0.0,0.0,39490.0,1,1,3,80.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2027.8886748400569,0.07642892529454103,0.05135195428817566,26326.666666666668,8,4,8,8_1,8_0,8_0_1 -8936,2,76.0,3,0.0,1,111,6,77,78,3.0,0.0,0.0,654.8673332065715,0.0,0.0,32379.0,70,50,1,8015,201108936,,,,,0.0,4.0,4.0,0.0,2.0,1.5,1445.3447844231498,0.0,480.0,0.0,0.0,21948.0,5,5,1,50.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,654.8673332065715,0.02022506356609443,0.02983722130520191,14632.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -8937,2,32.0,3,0.0,9,111,4,52,47,6.0,0.0,0.0,1660.303764897856,0.0,611.8180433257813,35597.0,42,31,1,8016,201108937,,,372.0,,2.0,0.0,5.0,2.0,4.0,2.1,2515.038265804681,569.0,1000.0,0.0,0.0,42816.0,1,1,2,140.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2272.1218082236373,0.06382902514885067,0.05306711996038017,20388.571428571428,6,3,6,6_1,6_2,6_0_0 -8938,1,42.0,2,377.0,6,111,1,85,68,3.0,1364.3521678594386,0.0,341.0767360450893,0.0,0.0,26069.0,60,71,2,8017,201108938,860.0,860.0,570.0,,1.0,0.0,4.0,2.0,4.0,2.3,2903.93499519919,0.0,250.0,0.0,0.0,30856.0,6,1,3,87.0,9,7.0,4,3,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1705.428903904528,0.06541980528230956,0.055270576351585686,13415.652173913044,3,2,3_1,3_0_1,3_3_1,3_0_0 -8939,2,55.0,4,0.0,4,112,2,52,52,7.0,0.0,0.0,477.50743046312505,2606.865481215533,0.0,39543.0,50,50,1,802,201108939,,,274.0,,2.0,3.0,3.0,1.0,3.0,1.8,1139.5885948505766,0.0,350.0,0.0,0.0,39880.0,1,1,2,75.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3084.372911678658,0.07800047825604173,0.07734134683246384,22155.555555555555,7,4,7,7_1,7_0,7_0_1 -8940,2,61.0,1,0.0,6,112,2,75,75,9.0,0.0,0.0,750.3688192991965,0.0,2919.689338961397,40479.0,70,41,1,8020,201108940,,,360.0,,0.0,2.0,6.0,0.0,2.0,1.5,2446.233085612728,0.0,550.0,1680.0,0.0,52768.0,5,5,1,115.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3670.0581582605937,0.09066573181799437,0.0695508292575158,35178.666666666664,9,5,9,9_1,9_0,9_0_0 -8941,2,49.0,3,0.0,4,111,2,0,65,6.0,0.0,0.0,334.2552013241875,0.0,486.61488982689946,10793.0,0,50,1,8021,201108941,,,216.0,338.0,1.0,0.0,5.0,0.0,2.0,1.5,3527.4356505126407,0.0,245.0,280.0,0.0,29602.0,0,1,3,70.0,8,6.0,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,820.870091151087,0.0760557853378196,0.02773022401023873,19734.666666666668,6,3,6,6_1,6_2,6_0_1 -8942,2,70.0,2,0.0,4,221,2,0,75,7.0,0.0,0.0,1773.5990274344645,0.0,2212.3598383915823,22591.0,0,31,1,8023,201108942,,,88.0,,0.0,1.0,4.0,0.0,1.0,1.0,3305.23520054306,0.0,1300.0,1273.0,0.0,23515.0,0,5,1,90.0,1,1.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3985.958865826047,0.1764401250863639,0.16950707488097158,23515.0,7,4,7,7_1,7_1,7_0_1 -8943,2,73.0,3,0.0,7,111,5,78,78,4.0,0.0,34.698157989086,1154.2036747765821,140.77073598563877,0.0,15682.0,71,71,1,8025,201108943,,,320.0,,0.0,1.0,3.0,0.0,2.0,1.5,2971.0187409676532,0.0,846.0,0.0,0.0,24999.0,5,5,3,74.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1329.672568751307,0.08478973145971859,0.05318903031126473,16666.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -8944,2,66.0,2,0.0,6,111,2,75,75,9.0,0.0,0.0,180.08851663180715,0.0,0.0,42590.0,33,31,2,8026,201108944,,,,,0.0,4.0,3.0,0.0,2.0,1.5,3502.4959339413117,0.0,132.0,0.0,0.0,46016.0,5,5,1,55.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,180.08851663180715,0.004228422555337102,0.003913606498431136,30677.333333333332,9,5,9,9_0,9_3,9_0_0 -8945,2,60.0,1,0.0,4,120,2,0,78,3.0,0.0,0.0,382.0059443705,0.0,973.2297796537989,12598.0,0,71,2,8030,201108945,,,480.0,409.0,0.0,0.0,3.0,0.0,1.0,1.0,7856.927134348476,0.0,280.0,560.0,0.0,14495.0,0,5,3,70.0,0,3.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1355.2357240242989,0.10757546626641522,0.09349677295786815,14495.0,3,2,3_0,3_0_0,3_1_0,3_0_1 -8946,2,65.0,3,0.0,5,112,6,78,78,3.0,1522.997768773327,0.0,525.2581735094376,291.9689338961397,0.0,22926.0,70,70,1,8031,201108946,,,403.0,,0.0,2.0,4.0,0.0,2.0,1.5,1453.6059645637833,0.0,385.0,0.0,0.0,20781.0,5,5,1,78.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2340.224876178904,0.10207733037507215,0.11261367961979232,13854.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -8947,1,30.0,4,380.0,5,111,4,0,52,2.0,0.0,0.0,573.00891655575,0.0,0.0,10858.0,0,50,2,8032,201108947,,,120.0,,1.0,0.0,3.0,2.0,3.0,1.6,3335.046087606772,0.0,420.0,0.0,0.0,18380.0,0,1,3,55.0,5,4.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,573.00891655575,0.052772970764021924,0.03117567554710283,11487.5,2,1,2_1,2_0_1,2_2_1,2_0_0 -8948,2,68.0,3,0.0,4,111,1,77,75,8.0,0.0,0.0,299.11805257040726,0.0,618.2695516912553,37838.0,70,70,2,8033,201108948,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2176.0619436276543,575.0,0.0,0.0,0.0,42898.0,5,5,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,917.3876042616625,0.024245139919172858,0.021385323424440827,28598.666666666668,8,4,8,8_0,8_4,8_0_1 -8949,2,80.0,4,0.0,4,112,6,0,72,4.0,2776.298015993044,0.0,477.50743046312505,130.34327406077665,0.0,21081.0,0,60,1,8034,201108949,,,191.0,,0.0,2.0,5.0,0.0,1.0,1.0,2334.3617391541848,0.0,350.0,0.0,0.0,14836.0,0,5,1,90.0,9,2.0,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3384.148720516946,0.16053074904022324,0.22810385012920908,14836.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -8950,2,25.0,1,0.0,99,111,2,0,38,9.0,0.0,0.0,561.8217335235476,0.0,1161.2715057853143,18443.0,0,12,8,8036,201108950,,,,500.0,1.0,0.0,3.0,0.0,1.0,1.0,3555.751447461544,1080.0,0.0,0.0,0.0,33950.0,0,1,3,65.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1723.093239308862,0.09342803444715404,0.050753850936932604,33950.0,9,5,9,9_0,9_2,9_0_0 -8951,2,53.0,3,0.0,6,112,2,77,38,6.0,0.0,0.0,1622.1609566304448,0.0,1536.312723596354,16453.0,50,50,1,8037,201108951,,,357.0,,1.0,3.0,4.0,0.0,2.0,1.5,5149.56157195124,0.0,1189.0,884.0,0.0,29566.0,6,1,1,99.0,9,2.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3158.473680226799,0.1919694694114629,0.10682789962209291,19710.666666666668,6,3,6,6_1,6_1,6_0_0 -8952,2,55.0,4,0.0,99,111,1,0,67,6.0,0.0,0.0,491.1504999049286,0.0,0.0,10876.0,0,50,2,8038,201108952,,,140.0,310.0,1.0,5.0,2.0,0.0,1.0,1.0,1300.7878293538768,0.0,360.0,0.0,0.0,20940.0,0,1,3,50.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,491.1504999049286,0.045159111797069565,0.023455133710837087,20940.0,6,3,6,6_0,6_2,6_0_0 -8953,1,60.0,2,197.0,4,112,6,0,63,3.0,0.0,0.0,0.0,0.0,0.0,9399.0,0,70,2,8039,201108953,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2352.1667010754995,0.0,0.0,0.0,0.0,14194.0,0,1,3,45.0,9,1.0,1,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0.0,0.0,0.0,14194.0,3,2,3_1,3_0_1,3_1_1,3_0_1 -8954,2,35.0,2,0.0,9,112,2,46,46,7.0,0.0,0.0,1637.1683330164287,121.65372245672486,0.0,65812.0,20,60,1,804,201108954,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2153.6841192433253,0.0,1200.0,0.0,0.0,58889.0,1,1,2,149.0,6,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1758.8220554731536,0.02672494462215331,0.02986673326891531,24537.083333333336,7,4,7,7_1,7_0,7_0_0 -8955,2,33.0,4,0.0,8,111,2,55,54,5.0,0.0,0.0,341.0767360450893,0.0,1546.740185521216,32463.0,30,43,2,8041,201108955,,,300.0,450.0,2.0,0.0,3.0,1.0,3.0,1.8,2558.2131472696137,0.0,250.0,890.0,0.0,33695.0,4,1,3,70.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1887.8169215663054,0.058152879326196144,0.056026618832654855,18719.444444444445,5,3,5,5_0,5_2,5_0_0 -8956,2,39.0,2,0.0,1,300,2,21,52,6.0,317.29120182777643,1630.813425487042,1259.2553094784698,312.82385774586396,0.0,37795.0,50,50,1,8042,201108956,,,460.0,,3.0,1.0,6.0,2.0,4.0,2.3,2266.6100936967828,0.0,923.0,0.0,0.0,43819.0,1,1,2,240.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3520.1837945391526,0.09313887536814797,0.08033464466416743,19051.739130434784,5,3,5,5_1,5_0,5_1_0 -8957,2,42.0,2,0.0,2,111,2,35,21,8.0,0.0,0.0,1040.4106176361993,0.0,2150.502788491323,94356.0,12,33,1,8043,201108957,,,560.0,,2.0,0.0,5.0,2.0,4.0,2.1,2772.037059289296,2000.0,0.0,0.0,0.0,52205.0,1,1,2,145.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3190.913406127522,0.033817811332904346,0.06112275464280284,24859.52380952381,7,4,7,7_1,7_4,7_0_1 -8958,2,47.0,4,0.0,99,400,4,56,55,4.0,0.0,0.0,1847.2716024202036,121.65372245672486,0.0,18270.0,50,50,1,8044,201108958,,,205.0,403.0,2.0,2.0,3.0,0.0,2.0,1.5,1177.230524809415,0.0,1354.0,0.0,0.0,23910.0,1,1,3,100.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1968.9253248769285,0.1077682170157049,0.08234735779493636,15940.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -8959,2,32.0,1,0.0,1,112,2,12,12,2.0,2379.684013708323,0.0,1159.6609025533037,50.3993993035003,0.0,32560.0,43,50,1,8045,201108959,,,288.0,,2.0,0.0,6.0,2.0,4.0,2.1,4476.972520318032,0.0,850.0,0.0,0.0,24974.0,1,1,2,124.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3589.744315565127,0.1102501325419265,0.1437392614545178,11892.380952380952,2,1,2_0,2_1_0,2_0_0,2_1_0 -8960,2,68.0,2,0.0,9,221,4,75,74,8.0,0.0,0.0,2184.4626620833906,0.0,623.6458086624835,50656.0,31,12,1,8047,201108960,,,500.0,,0.0,4.0,5.0,0.0,2.0,1.5,2917.4202491791434,580.0,1380.0,0.0,0.0,39181.0,5,5,1,130.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2808.108470745874,0.05543486399924735,0.07167015825899987,26120.666666666668,8,4,8,8_1,8_1,8_0_0 -8961,2,71.0,3,0.0,5,400,4,71,71,4.0,0.0,0.0,1100.9957039535484,0.0,0.0,18561.0,70,70,1,805,201108961,,,239.0,,0.0,6.0,5.0,0.0,2.0,1.5,1647.853041225225,0.0,807.0,0.0,0.0,23836.0,5,5,1,117.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1100.9957039535484,0.05931769322523293,0.04619045577922254,15890.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -8962,2,71.0,3,0.0,4,111,2,78,77,7.0,0.0,0.0,1678.580481996964,0.0,3749.7952826313353,37426.0,70,50,1,8050,201108962,,,288.0,,1.0,0.0,5.0,1.0,3.0,2.0,997.3347576285536,1029.0,838.0,1521.0,0.0,46856.0,5,5,1,160.0,3,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,5428.375764628299,0.1450429050560653,0.1158523084477612,23428.0,7,4,7,7_1,7_2,7_0_1 -8963,2,56.0,3,0.0,6,111,2,0,75,5.0,0.0,0.0,409.2920832541072,0.0,868.9551604051776,16684.0,0,33,1,8054,201108963,,,200.0,,0.0,1.0,4.0,1.0,2.0,1.5,2304.6596972481366,0.0,300.0,500.0,0.0,27096.0,0,5,1,90.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1278.2472436592848,0.07661515485850424,0.047174758032893595,18064.0,5,3,5,5_1,5_2,5_0_0 -8964,2,65.0,2,0.0,5,111,1,77,74,10.0,0.0,0.0,1126.4088058208356,0.0,918.2646906857947,76286.0,60,50,2,8055,201108964,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2650.445083337536,854.0,500.0,0.0,0.0,61949.0,4,5,2,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2044.6734965066303,0.026802735711750916,0.03300575467734153,41299.333333333336,10,5,10,10_0,10_4,10_0_0 -8965,2,30.0,2,0.0,4,111,1,0,52,6.0,1484.9228245539937,0.0,354.7198054868929,0.0,123.39163277753522,25103.0,0,50,2,8056,201108965,936.0,936.0,107.0,,1.0,0.0,3.0,0.0,1.0,1.0,3196.7405489801936,0.0,260.0,71.0,0.0,20239.0,0,1,2,63.0,9,7.0,1,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1963.034262818422,0.0781991898505526,0.09699265096192608,20239.0,6,3,6,6_0,6_3,6_0_1 -8966,2,64.0,2,0.0,1,112,2,0,74,9.0,3172.912018277764,104.094473967258,422.93515269591074,86.89551604051776,0.0,16557.0,0,50,1,8057,201108966,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2367.9874439054856,0.0,310.0,0.0,0.0,31528.0,0,5,1,100.0,8,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3786.837160981451,0.22871517551376763,0.12011028802909955,31528.0,9,5,9,9_1,9_0,9_1_0 -8967,2,33.0,4,0.0,2,111,2,55,47,9.0,0.0,0.0,581.1947582208322,0.0,1616.2565983536304,38922.0,41,50,2,8058,201108967,,,,262.0,2.0,0.0,3.0,0.0,2.0,1.5,2951.6328699285227,0.0,426.0,930.0,0.0,46701.0,1,1,3,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2197.451356574463,0.056457822223278935,0.04705362533081653,31134.0,9,5,9,9_0,9_4,9_0_1 -8968,2,56.0,1,0.0,8,111,2,54,21,8.0,2379.684013708323,0.0,682.1534720901786,139.0328256648284,0.0,32973.0,50,41,1,8059,201108968,,,480.0,,2.0,3.0,3.0,0.0,2.0,1.5,3479.012601877163,0.0,500.0,0.0,0.0,39940.0,1,1,1,70.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3200.8703114633304,0.0970754954497113,0.0801419707426973,26626.666666666668,8,4,8,8_1,8_3,8_0_0 -8969,2,45.0,2,0.0,7,300,5,52,43,10.0,0.0,675.9201176273953,774.926344294443,0.0,0.0,33259.0,50,33,1,806,201108969,,,,,3.0,0.0,6.0,3.0,5.0,2.8,860.6794662981222,0.0,568.0,0.0,0.0,149638.0,1,1,1,200.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1450.8464619218382,0.04362267241714538,0.009695708723197572,53442.14285714286,10,5,10,10_1,10_1,10_0_0 -8970,2,27.0,2,0.0,7,111,2,64,65,9.0,0.0,0.0,462.98272484810866,0.0,956.9737408786385,29800.0,50,20,1,8061,201108970,,,200.0,,2.0,0.0,3.0,0.0,2.0,1.5,3015.9062579398196,890.0,0.0,0.0,0.0,43403.0,1,1,3,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1419.9564657267472,0.04764954582975662,0.03271562946632139,28935.333333333332,8,4,8,8_1,8_3,8_0_0 -8971,2,64.0,2,0.0,6,120,4,72,72,5.0,0.0,69.396315978172,2810.472305011536,48.661488982689946,0.0,29365.0,60,50,1,8062,201108971,,,220.0,,0.0,2.0,4.0,0.0,2.0,1.5,1804.5061976753782,0.0,2060.0,0.0,0.0,27892.0,5,5,1,110.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2928.530109972398,0.09972859220066058,0.10499534310814564,18594.666666666668,5,3,5,5_1,5_1,5_0_0 -8972,2,59.0,3,0.0,5,400,3,11,11,1.0,0.0,0.0,0.0,0.0,0.0,13861.0,41,71,1,8063,201108972,,,,,2.0,1.0,6.0,1.0,3.0,2.0,2451.223928478271,0.0,0.0,0.0,0.0,2005.0,1,1,1,150.0,0,0.0,4,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,1002.5,1,1,1_0,1_1_0,1_0_0,1_0_0 -8973,2,44.0,4,0.0,1,111,2,0,52,5.0,0.0,0.0,315.1549041056625,0.0,2022.9276134232534,16311.0,0,50,1,8064,201108973,,,180.0,,1.0,0.0,3.0,1.0,2.0,1.3,1637.979892957144,0.0,231.0,1164.0,0.0,23441.0,0,1,2,70.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2338.082517528916,0.1433439100931222,0.09974329241623292,18031.53846153846,5,3,5,5_1,5_3,5_1_0 -8974,2,66.0,3,0.0,8,400,2,78,71,3.0,1903.7472109666587,277.585263912688,1091.4455553442858,361.4853467285539,0.0,34998.0,50,70,1,8066,201108974,,,310.0,,0.0,2.0,3.0,0.0,2.0,1.5,2463.96657924216,0.0,800.0,0.0,0.0,20229.0,5,5,1,112.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3634.2633769521863,0.10384203031465188,0.1796561064289973,13486.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -8975,1,20.0,4,300.0,99,111,1,0,67,2.0,1903.7472109666587,0.0,613.9381248811608,0.0,782.0596443646599,22193.0,0,50,8,8067,201108975,999999.0,1200.0,600.0,,1.0,2.0,4.0,2.0,4.0,2.5,3086.7108345151337,0.0,450.0,450.0,0.0,26120.0,0,1,3,80.0,7,5.0,4,2,1,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3299.7449802124793,0.148684043626931,0.12633020598056965,10448.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -8976,2,56.0,3,0.0,2,111,2,42,47,6.0,126.91648073111057,0.0,489.7861929607483,0.0,2726.7812933514474,31228.0,50,50,1,8069,201108976,,,259.0,,2.0,1.0,6.0,1.0,3.0,2.0,1147.1387858522428,0.0,359.0,1569.0,0.0,40208.0,1,1,2,145.0,8,7.0,4,4,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3343.483967043306,0.10706686201624524,0.08315469476331343,20104.0,6,3,6,6_1,6_3,6_0_1 -8977,2,62.0,2,0.0,1,111,2,77,45,9.0,0.0,0.0,1794.06363159717,0.0,0.0,34792.0,71,41,1,807,201108977,,,265.0,,1.0,1.0,6.0,0.0,2.0,1.5,2247.1712259941887,0.0,1315.0,0.0,0.0,47959.0,5,1,1,100.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1794.06363159717,0.05156540674859651,0.03740827856288017,31972.666666666668,9,5,9,9_1,9_3,9_1_0 -8978,2,85.0,2,0.0,8,120,4,0,75,4.0,0.0,0.0,916.8142664892001,0.0,0.0,17267.0,0,41,2,8073,201108978,,,,620.0,0.0,2.0,3.0,0.0,1.0,1.0,3423.977821581795,0.0,672.0,0.0,0.0,16450.0,0,5,3,65.0,0,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,916.8142664892001,0.05309632631546882,0.055733390060133746,16450.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -8979,2,89.0,2,0.0,3,111,2,78,78,7.0,2379.684013708323,0.0,327.43366660328576,139.0328256648284,0.0,17273.0,70,50,1,8075,201108979,,,270.0,,0.0,1.0,3.0,0.0,2.0,1.5,2161.0180967464175,0.0,240.0,0.0,0.0,32894.0,5,5,1,80.0,9,7.0,3,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2846.1505059764377,0.16477453285338028,0.08652491353974699,21929.333333333332,7,4,7,7_1,7_3,7_0_1 -8980,2,47.0,3,0.0,4,112,2,56,37,7.0,0.0,106.87032660638488,2113.5887720448004,104.27461924862132,1379.5475388171835,61907.0,20,31,1,8076,201108980,,,,,2.0,0.0,5.0,2.0,4.0,2.5,4284.847655090833,1283.0,1060.0,0.0,0.0,57975.0,1,1,2,180.0,9,1.0,4,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3704.2812567169904,0.0598362262218649,0.06389445893431635,23190.0,7,4,7,7_1,7_1,7_0_1 -8981,2,51.0,3,0.0,1,300,2,85,38,6.0,1380.2167279508276,0.0,1787.242096876268,93.84715732375918,0.0,35795.0,50,50,1,8077,201108981,,,290.0,,1.0,3.0,6.0,0.0,2.0,1.5,1150.380704408033,0.0,1310.0,0.0,0.0,30314.0,6,1,1,155.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3261.305982150855,0.09111065741446725,0.10758415194797305,20209.333333333332,6,3,6,6_1,6_0,6_1_0 -8982,2,57.0,1,0.0,5,111,1,0,31,10.0,0.0,0.0,163.71683330164288,0.0,0.0,49435.0,0,10,2,8078,201108982,,,120.0,,1.0,3.0,2.0,0.0,1.0,1.0,2855.5892454457035,0.0,120.0,0.0,0.0,39143.0,0,1,2,42.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,163.71683330164288,0.0033117595489358326,0.004182531571459594,39143.0,10,5,10,10_0,10_3,10_0_0 -8983,2,85.0,3,0.0,1,111,2,0,86,2.0,1615.0122173033822,0.0,613.9381248811608,0.0,0.0,10609.0,0,71,1,8079,201108983,,,126.0,,0.0,2.0,3.0,0.0,1.0,1.0,3311.126955594421,0.0,450.0,0.0,0.0,9710.0,0,5,1,71.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2228.950342184543,0.21009994742054322,0.2295520434793556,9710.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -8984,2,64.0,2,0.0,8,400,2,74,75,9.0,1511.8925767093547,1175.5735926702337,866.3349095545268,2822.3663609960167,0.0,41390.0,60,41,1,8080,201108984,,,433.0,,0.0,1.0,6.0,0.0,2.0,1.5,2244.38758692978,0.0,635.0,0.0,0.0,45330.0,5,5,1,130.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6376.167439930132,0.15405091664484494,0.1406610950789793,30220.0,9,5,9,9_1,9_0,9_0_0 -8985,2,37.0,2,0.0,4,111,1,0,46,7.0,0.0,0.0,1637.1683330164287,0.0,0.0,20940.0,0,31,2,8081,201108985,,,,380.0,1.0,0.0,1.0,0.0,1.0,1.0,3318.016429726079,0.0,1200.0,0.0,0.0,24702.0,0,1,3,30.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1637.1683330164287,0.07818377903612363,0.06627675220696416,24702.0,7,4,7,7_0,7_2,7_0_1 -8986,1,21.0,1,214.0,2,111,1,0,84,1.0,0.0,0.0,442.03544991443573,0.0,312.82385774586396,30499.0,0,42,2,8082,201108986,,,,101.0,0.0,0.0,1.0,0.0,1.0,1.0,3120.1603359317637,0.0,324.0,180.0,0.0,2591.0,0,3,3,30.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,754.8593076602997,0.024750296982205964,0.291338984044886,2591.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -8987,2,61.0,2,0.0,1,111,2,74,74,10.0,0.0,0.0,1054.10026789512,0.0,2511.9287986584345,54542.0,20,20,1,8083,201108987,,,339.0,,0.0,3.0,6.0,0.0,2.0,1.5,1260.2636797409536,715.0,500.0,1003.0,0.0,68986.0,5,5,1,120.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3566.0290665535545,0.06538134037170537,0.05169206892055713,45990.666666666664,10,5,10,10_1,10_2,10_1_0 -8988,2,23.0,3,0.0,1,300,2,56,67,5.0,1903.7472109666587,0.0,894.9853553823143,55.61313026593137,0.0,29152.0,50,41,1,8085,201108988,,,630.0,,2.0,0.0,4.0,0.0,2.0,1.5,2093.3221776955857,0.0,656.0,0.0,0.0,27174.0,4,1,3,80.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2854.345696614904,0.09791251703536306,0.10503958550875485,18116.0,5,3,5,5_1,5_0,5_1_0 -8989,2,30.0,2,0.0,4,111,1,0,38,9.0,0.0,0.0,272.86138883607146,0.0,0.0,23990.0,0,12,2,8086,201108989,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3023.2604124405057,0.0,200.0,0.0,0.0,34166.0,0,1,2,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,272.86138883607146,0.011373963686372298,0.007986342821403484,34166.0,9,5,9,9_0,9_4,9_0_1 -8990,2,56.0,4,0.0,6,111,2,56,63,4.0,0.0,0.0,1113.2744664511715,0.0,2752.8499481636027,15342.0,50,71,1,8087,201108990,,,400.0,,2.0,3.0,4.0,0.0,2.0,1.5,1850.6643875480338,0.0,816.0,1584.0,0.0,22630.0,1,1,3,90.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3866.124414614774,0.2519961161918116,0.17084067232058214,15086.666666666666,4,2,4_0,4_1_0,4_2_0,4_0_0 -8991,2,62.0,3,0.0,4,111,4,75,47,8.0,0.0,0.0,1227.8762497623215,0.0,0.0,21539.0,30,31,2,8088,201108991,,,,,1.0,1.0,4.0,0.0,2.0,1.5,2115.891515051947,0.0,900.0,0.0,0.0,38742.0,5,1,1,95.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1227.8762497623215,0.057007114989661614,0.03169367223587635,25828.0,8,4,8,8_0,8_2,8_0_1 -8992,2,52.0,2,0.0,1,120,6,42,42,7.0,0.0,187.3700531410644,2519.8749259011197,0.0,0.0,51692.0,31,41,1,8089,201108992,,,322.0,,2.0,0.0,5.0,2.0,4.0,2.3,3001.1014292372715,0.0,1847.0,0.0,0.0,53303.0,1,1,1,150.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2707.2449790421842,0.05237261044343775,0.05078973001598755,23175.217391304348,7,4,7,7_1,7_0,7_1_0 -8993,1,84.0,2,83.0,7,300,2,0,78,4.0,0.0,0.0,212.83188329213573,1819.592105888442,0.0,10502.0,0,71,2,809,201108993,,,88.0,160.0,0.0,1.0,2.0,0.0,1.0,1.0,3112.710299227578,0.0,156.0,0.0,0.0,16328.0,0,5,3,50.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,2032.4239891805776,0.19352732709775067,0.12447476660831562,16328.0,4,2,4_1,4_0_1,4_0_1,4_0_0 -8994,2,79.0,4,0.0,2,111,2,0,78,5.0,0.0,0.0,785.8407998478858,0.0,199.85968689319085,19304.0,0,70,2,8090,201108994,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3339.0173279401133,0.0,576.0,115.0,0.0,17700.0,0,5,1,70.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,985.7004867410767,0.05106198128579966,0.05568929303621902,17700.0,5,3,5,5_0,5_2,5_0_1 -8995,2,59.0,3,0.0,5,112,2,46,78,4.0,2855.620816449988,0.0,750.3688192991965,46.92357866187959,0.0,18722.0,70,50,1,8091,201108995,,,220.0,,1.0,2.0,6.0,0.0,2.0,1.5,1660.523203195723,0.0,550.0,0.0,0.0,23586.0,1,5,1,150.0,4,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3652.913214411064,0.1951134074570593,0.15487633402913017,15724.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -8996,2,66.0,2,0.0,7,112,2,0,77,6.0,2125.851052246102,0.0,575.7375304441108,0.0,0.0,20713.0,0,50,1,8092,201108996,,,177.0,,0.0,2.0,6.0,0.0,1.0,1.0,2466.794055002215,0.0,422.0,0.0,0.0,20045.0,0,5,1,110.0,9,3.0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2701.5885826902127,0.1304296134162223,0.13477618272338301,20045.0,6,3,6,6_1,6_1,6_0_0 -8997,2,62.0,3,0.0,5,221,4,55,72,4.0,0.0,0.0,3568.8708903729603,201.5975972140012,535.4751943343393,53510.0,41,41,1,8094,201108997,,,467.0,,1.0,0.0,5.0,1.0,4.0,2.5,1399.4135424349424,498.0,2426.0,0.0,0.0,40863.0,4,5,1,180.0,1,2.0,5,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4305.943681921301,0.08046988753356944,0.10537512375306024,16345.2,4,2,4_0,4_1_0,4_1_0,4_0_0 -8998,1,28.0,4,281.0,1,111,1,0,85,1.0,0.0,0.0,927.728722042643,0.0,0.0,5645.0,0,50,2,8095,201108998,,,,60.0,0.0,0.0,1.0,1.0,2.0,1.3,4223.022466621803,0.0,680.0,0.0,0.0,9582.0,0,4,3,30.0,7,5.0,2,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,927.728722042643,0.16434521205361258,0.09681994594475506,7370.7692307692305,1,1,1_1,1_0_1,1_2_1,1_1_0 -8999,2,41.0,3,0.0,7,221,2,56,68,1.0,0.0,0.0,982.3009998098572,0.0,0.0,12221.0,71,71,2,8098,201108999,,,,640.0,2.0,0.0,5.0,0.0,2.0,1.5,4606.028056077723,0.0,720.0,0.0,0.0,12132.0,1,1,3,80.0,1,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,982.3009998098572,0.08037811961458614,0.08096777116797373,8088.0,1,1,1_0,1_0_0,1_1_0,1_0_0 -9000,1,23.0,3,190.0,5,111,1,0,84,1.0,0.0,0.0,34.10767360450893,0.0,0.0,8194.0,0,31,2,8099,201109000,,,,80.0,0.0,0.0,1.0,0.0,1.0,1.0,3407.8773497595193,0.0,25.0,0.0,0.0,3481.0,0,3,3,27.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,34.10767360450893,0.004162518135771166,0.009798240047259101,3481.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -9001,2,65.0,1,0.0,5,111,2,86,74,10.0,0.0,0.0,589.3805998859143,0.0,1654.4906254114583,70971.0,41,10,2,81,201109001,,,,,0.0,3.0,4.0,0.0,2.0,1.5,3373.2386937670603,0.0,432.0,952.0,0.0,95280.0,5,5,1,110.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2243.871225297373,0.03161673395185883,0.02355028573989686,63520.0,10,5,10,10_0,10_3,10_0_0 -9002,2,72.0,3,0.0,1,400,2,0,86,6.0,3609.187420790957,0.0,422.93515269591074,0.0,0.0,18624.0,0,71,1,810,201109002,,,225.0,,0.0,2.0,7.0,0.0,1.0,1.0,2755.0866014741146,0.0,310.0,0.0,0.0,21526.0,0,6,5,166.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4032.1225734868676,0.21650142684100449,0.18731406547834561,21526.0,6,3,6,6_1,6_0,6_1_0 -9003,2,56.0,1,0.0,1,112,2,67,46,9.0,0.0,0.0,1113.2744664511715,0.0,0.0,25018.0,60,50,1,8100,201109003,,,259.0,,2.0,2.0,5.0,0.0,2.0,1.5,1920.6550625690018,0.0,816.0,0.0,0.0,53520.0,1,4,1,75.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1113.2744664511715,0.04449893942166326,0.020801092422480783,35680.0,9,5,9,9_1,9_0,9_1_0 -9004,2,52.0,3,0.0,99,111,6,0,47,7.0,682.1760839297193,0.0,1364.3069441803573,135.55700502320772,0.0,54243.0,0,50,1,8101,201109004,,,210.0,,1.0,4.0,9.0,2.0,3.0,1.6,2065.4387926415866,0.0,1000.0,0.0,0.0,38620.0,0,1,3,230.0,8,7.0,2,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2182.0400331332844,0.04022712669161522,0.056500259791125954,24137.5,7,4,7,7_1,7_3,7_0_0 -9005,2,31.0,3,0.0,9,300,4,54,62,8.0,0.0,0.0,813.1269387314929,0.0,0.0,22154.0,20,44,1,8102,201109005,,,382.0,,2.0,0.0,3.0,0.0,2.0,1.5,1900.66958015657,0.0,596.0,0.0,0.0,39227.0,1,1,2,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,813.1269387314929,0.03670339165529895,0.020728756691347616,26151.333333333332,8,4,8,8_1,8_0,8_0_0 -9006,2,38.0,5,0.0,2,111,2,48,46,6.0,0.0,0.0,887.1830854025135,0.0,2517.743445459182,38006.0,50,31,1,8104,201109006,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.1,1927.3486656586663,402.0,497.0,1200.0,0.0,40925.0,4,1,2,98.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3404.9265308616955,0.08958918409887111,0.08319918218354784,19488.095238095237,6,3,6,6_1,6_3,6_0_1 -9007,2,46.0,4,0.0,8,111,4,22,45,8.0,0.0,0.0,1528.023777482,0.0,0.0,43833.0,50,71,2,8106,201109007,,,,750.0,2.0,1.0,4.0,1.0,3.0,2.0,5902.491536665326,0.0,1120.0,0.0,0.0,52293.0,1,1,4,85.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1528.023777482,0.03486012313740789,0.02922042677761842,26146.5,8,4,8,8_0,8_4,8_0_0 -9008,2,52.0,3,0.0,5,111,2,62,52,9.0,0.0,0.0,613.9381248811608,0.0,677.7850251160386,43978.0,71,50,2,8108,201109008,,,300.0,300.0,2.0,1.0,3.0,0.0,2.0,1.5,2742.805364061458,0.0,450.0,390.0,0.0,47926.0,1,1,3,80.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1291.7231499971995,0.029372030333284813,0.026952450653031746,31950.666666666668,9,5,9,9_0,9_3,9_0_0 -9009,2,27.0,3,0.0,99,111,4,0,55,7.0,0.0,0.0,703.9823831970643,0.0,0.0,25501.0,0,31,2,8109,201109009,,,,510.0,1.0,0.0,2.0,0.0,1.0,1.0,2758.5737388244215,0.0,516.0,0.0,0.0,23923.0,0,1,3,38.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,703.9823831970643,0.02760606969126953,0.029427010960041147,23923.0,7,4,7,7_0,7_3,7_0_0 -9010,2,36.0,3,0.0,9,112,2,52,52,6.0,0.0,0.0,736.7257498573929,0.0,1755.2894240184587,44707.0,50,44,1,811,201109010,,,453.0,,2.0,0.0,5.0,3.0,5.0,2.4,1880.4768823813677,0.0,540.0,1010.0,0.0,49112.0,1,1,2,130.0,7,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2492.0151738758514,0.055741051152523126,0.05074147202060294,20463.333333333336,6,3,6,6_1,6_1,6_0_0 -9011,2,59.0,1,0.0,5,111,2,42,34,10.0,0.0,0.0,945.7894182960024,0.0,2775.029158497826,79859.0,30,20,1,8110,201109011,,,330.0,,2.0,2.0,5.0,0.0,2.0,1.5,2349.0181019466963,415.0,535.0,1340.0,0.0,73359.0,1,1,1,100.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3720.8185767938285,0.04659235122896391,0.050720682899082985,48906.0,10,5,10,10_1,10_3,10_0_0 -9012,2,59.0,3,0.0,7,221,6,77,77,4.0,0.0,0.0,1304.2774386364215,0.0,0.0,66200.0,60,60,1,8111,201109012,,,207.0,,0.0,1.0,6.0,0.0,2.0,1.5,2449.6779794004897,0.0,956.0,0.0,0.0,22940.0,7,5,1,136.0,1,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1304.2774386364215,0.019702076112332653,0.05685603481414218,15293.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_0 -9013,2,61.0,3,0.0,4,111,2,0,74,2.0,0.0,0.0,654.8673332065715,0.0,1918.652994174632,37301.0,0,10,1,8112,201109013,,,400.0,,0.0,3.0,5.0,0.0,1.0,1.0,2452.6017401907807,0.0,480.0,1104.0,0.0,9825.0,0,5,1,125.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2573.5203273812035,0.0689933333524893,0.2619359111838375,9825.0,1,1,1_0,1_1_0,1_3_0,1_0_1 -9014,2,80.0,3,0.0,2,112,5,71,71,2.0,0.0,138.792631956344,1773.5990274344645,133.81909470239736,0.0,22028.0,70,71,1,8113,201109014,,,226.0,,0.0,3.0,4.0,0.0,2.0,1.5,1974.4958810066287,0.0,1300.0,0.0,0.0,17776.0,5,5,1,90.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2046.2107540932057,0.0928913543714003,0.11511086600434325,11850.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_1 -9015,2,56.0,3,0.0,1,211,2,68,63,5.0,0.0,0.0,579.8304512766518,0.0,1896.0601600040975,15504.0,70,50,1,8114,201109015,,,150.0,,2.0,2.0,4.0,0.0,2.0,1.5,895.0589207619558,0.0,425.0,1091.0,0.0,27463.0,4,1,1,80.0,3,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2475.8906112807495,0.15969366687827333,0.09015368354807375,18308.666666666668,5,3,5,5_1,5_2,5_1_0 -9016,2,80.0,2,0.0,1,112,1,0,75,8.0,0.0,0.0,695.7965415319821,0.0,0.0,11684.0,0,71,1,8116,201109016,,,97.0,,0.0,1.0,4.0,0.0,1.0,1.0,2565.0750461561042,0.0,510.0,0.0,0.0,25411.0,0,5,1,135.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,695.7965415319821,0.05955122745052911,0.02738170640793287,25411.0,8,4,8,8_1,8_0,8_1_0 -9017,1,52.0,4,264.0,6,111,2,0,52,9.0,0.0,0.0,369.3457692608507,0.0,763.4284899144195,9197.0,0,60,2,8117,201109017,,,,74.0,1.0,5.0,3.0,0.0,1.0,1.0,2756.2370610369567,710.0,0.0,0.0,0.0,36448.0,0,1,3,60.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1132.7742591752703,0.123167800280012,0.03107918841020825,36448.0,9,5,9,9_0,9_2,9_0_0 -9018,2,68.0,2,0.0,4,111,1,0,74,9.0,0.0,0.0,1486.117072507573,0.0,2920.934514412661,32919.0,0,30,2,8118,201109018,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2780.513082203893,2070.0,300.0,400.0,0.0,29844.0,0,5,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4407.051586920234,0.13387562158389482,0.14766960149176497,29844.0,9,5,9,9_0,9_4,9_0_1 -9019,2,66.0,3,0.0,6,221,2,0,74,9.0,0.0,0.0,875.8850581637894,4092.7788055083865,0.0,42301.0,0,10,1,8119,201109019,,,165.0,,0.0,0.0,7.0,0.0,1.0,1.0,3172.2807826495846,0.0,642.0,0.0,0.0,29145.0,0,5,2,110.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4968.663863672176,0.117459725861615,0.17048083251577206,29145.0,9,5,9,9_1,9_1,9_0_0 -9020,2,63.0,2,0.0,5,112,5,75,75,9.0,0.0,666.2046333904511,1354.2270042146963,173.79103208103552,125.80441312674239,23129.0,50,41,1,8121,201109020,,,136.0,,0.0,1.0,5.0,0.0,2.0,1.5,2049.2187009784857,117.0,948.0,0.0,0.0,53293.0,5,5,1,150.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2320.0270828129255,0.10030814487495895,0.04353342995914896,35528.666666666664,9,5,9,9_1,9_0,9_0_0 -9021,2,82.0,4,0.0,1,400,5,72,78,2.0,0.0,0.0,417.4779249191893,130.34327406077665,0.0,13643.0,70,70,1,8124,201109021,,,,,0.0,4.0,8.0,0.0,2.0,1.5,2278.552135645942,0.0,306.0,0.0,0.0,18020.0,5,5,3,80.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,547.821198979966,0.04015401297221769,0.0304007324628172,12013.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -9022,2,61.0,3,0.0,4,111,2,77,78,4.0,0.0,277.585263912688,454.31421241205896,0.0,1350.356319269646,15650.0,70,71,1,8126,201109022,,,311.0,,0.0,2.0,5.0,0.0,2.0,1.5,2547.1681988609284,0.0,333.0,777.0,0.0,23690.0,6,5,1,93.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2082.255795594393,0.13305148853638293,0.08789598124079329,15793.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_1 -9023,1,25.0,2,170.0,7,111,1,0,84,1.0,0.0,0.0,204.6460416270536,0.0,0.0,11684.0,0,20,2,8127,201109023,,,300.0,,0.0,0.0,1.0,0.0,1.0,1.0,4220.559988179668,0.0,150.0,0.0,0.0,6850.0,0,3,3,24.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,204.6460416270536,0.017515066897214448,0.029875334544095414,6850.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -9025,2,58.0,3,0.0,2,111,2,75,52,8.0,0.0,0.0,1137.831991446418,0.0,2137.629694596737,33102.0,60,50,8,8132,201109025,,,,267.0,1.0,5.0,4.0,0.0,2.0,1.5,3704.673230099759,0.0,834.0,1230.0,0.0,43239.0,5,1,3,66.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3275.461686043155,0.09895056751988264,0.07575248470230937,28826.0,8,4,8,8_0,8_3,8_0_1 -9026,2,58.0,3,0.0,6,111,2,77,75,6.0,0.0,0.0,780.3079632271495,0.0,1612.877091368492,43259.0,71,70,1,8133,201109026,,,500.0,,0.0,2.0,5.0,0.0,2.0,1.5,2357.3534928002764,1500.0,0.0,0.0,0.0,30242.0,6,5,1,100.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2393.1850545956413,0.05532224634401261,0.07913448365173074,20161.333333333332,6,3,6,6_1,6_2,6_0_0 -9027,2,40.0,3,0.0,8,300,2,52,62,6.0,594.9210034270808,0.0,1173.3039719951073,48.661488982689946,0.0,47842.0,50,50,1,8135,201109027,,,590.0,,2.0,0.0,6.0,3.0,5.0,2.4,1900.0406753109958,0.0,860.0,0.0,0.0,51733.0,1,1,2,140.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1816.8864644048779,0.03797680833587387,0.03512045434065061,21555.416666666668,6,3,6,6_1,6_0,6_0_0 -9028,2,39.0,1,0.0,9,112,2,0,43,8.0,0.0,0.0,510.2507971234536,0.0,1565.85719905013,17432.0,0,31,1,8138,201109028,,,291.0,,1.0,0.0,4.0,0.0,1.0,1.0,1786.609915891661,0.0,374.0,901.0,0.0,28205.0,0,1,2,92.0,8,2.0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2076.1079961735836,0.11909752157948507,0.07360779989979023,28205.0,8,4,8,8_1,8_1,8_0_0 -9029,2,47.0,2,0.0,7,112,5,63,43,9.0,0.0,555.170527825376,1077.8024859024822,104.27461924862132,0.0,56134.0,50,33,1,8139,201109029,,,588.0,,2.0,1.0,4.0,1.0,3.0,1.8,2002.3411870578964,0.0,790.0,0.0,0.0,52719.0,1,1,2,90.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1737.2476329764795,0.030948224480287875,0.03295297014314535,29288.333333333332,9,5,9,9_1,9_0,9_0_0 -9030,2,57.0,3,0.0,6,111,6,85,48,3.0,0.0,187.3700531410644,1637.1683330164287,0.0,0.0,22889.0,50,71,1,8140,201109030,,,300.0,,1.0,6.0,4.0,0.0,2.0,1.5,2449.6032255329856,0.0,1200.0,0.0,0.0,19350.0,6,1,1,90.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1824.538386157493,0.07971245516001106,0.09429138946550351,12900.0,3,2,3_0,3_1_0,3_3_0,3_0_0 -9031,2,44.0,3,0.0,2,120,2,52,45,4.0,0.0,381.679737879946,2103.761307926111,290.23102357532935,0.0,46543.0,41,50,1,8141,201109031,,,204.0,,2.0,0.0,7.0,3.0,5.0,2.4,1567.835992370501,0.0,1542.0,0.0,0.0,39134.0,1,1,1,200.0,0,3.0,4,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2775.6720693813863,0.05963672452101038,0.07092737950072536,16305.833333333334,4,2,4_0,4_1_0,4_1_0,4_0_1 -9032,0,48.0,5,0.0,5,300,5,67,67,3.0,0.0,208.188947934516,668.510402648375,173.79103208103552,0.0,12352.0,71,71,1,8142,201109032,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2664.587537142156,0.0,490.0,0.0,0.0,20586.0,1,4,5,40.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1050.4903826639265,0.08504617735297333,0.05102935891693027,13724.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -9033,2,49.0,2,0.0,6,111,1,0,43,8.0,0.0,0.0,409.2920832541072,0.0,0.0,19291.0,0,33,2,8144,201109033,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2156.6505512059207,0.0,300.0,0.0,0.0,27607.0,0,1,1,35.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,409.2920832541072,0.021216737507340582,0.014825663174343725,27607.0,8,4,8,8_0,8_3,8_0_0 -9034,2,57.0,2,0.0,8,111,2,38,33,10.0,0.0,0.0,750.3688192991965,0.0,2252.3317757702202,54107.0,31,20,1,8146,201109034,,,461.0,,2.0,2.0,5.0,0.0,2.0,1.5,2590.803068526926,0.0,550.0,1296.0,0.0,91001.0,1,1,2,110.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3002.7005950694165,0.05549560306558147,0.03299634723870525,60667.333333333336,10,5,10,10_1,10_3,10_0_0 -9035,2,81.0,2,0.0,5,111,1,77,74,8.0,0.0,0.0,817.219859564034,0.0,2182.815362937806,28028.0,50,70,8,8147,201109035,1256.0,1256.0,,,0.0,1.0,5.0,0.0,2.0,1.5,2590.347374876516,0.0,599.0,1256.0,0.0,40315.0,5,5,1,100.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,3000.03522250184,0.10703707801134009,0.07441486351238596,26876.666666666668,8,4,8,8_0,8_2,8_0_0 -9036,2,39.0,2,0.0,6,111,2,38,38,9.0,0.0,0.0,2135.140367642259,0.0,0.0,60340.0,12,10,1,8148,201109036,,,529.0,,2.0,0.0,5.0,1.0,3.0,1.8,2759.2963106427633,0.0,1565.0,0.0,0.0,66282.0,1,1,2,95.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2135.140367642259,0.03538515690490983,0.03221297437678795,36823.333333333336,9,5,9,9_1,9_4,9_0_0 -9037,2,71.0,2,0.0,1,111,6,0,75,7.0,0.0,0.0,1394.321696952325,389.29191186151957,0.0,15475.0,0,50,1,8149,201109037,,,141.0,,0.0,0.0,4.0,0.0,1.0,1.0,2271.7594770795567,0.0,1022.0,0.0,0.0,22518.0,0,5,5,100.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1783.6136088138446,0.1152577453191499,0.07920834926786768,22518.0,7,4,7,7_1,7_3,7_1_0 -9038,2,38.0,3,0.0,8,111,2,55,42,6.0,118.98420068541617,0.0,804.9410970664107,0.0,1032.318730561351,46207.0,71,43,1,8150,201109038,,,300.0,399.0,2.0,0.0,3.0,1.0,3.0,2.0,3863.4543089586964,0.0,590.0,594.0,0.0,40727.0,1,1,3,64.0,8,7.0,4,3,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1956.244028313178,0.042336529710069425,0.04803309913112132,20363.5,6,3,6,6_1,6_3,6_0_0 -9039,2,72.0,2,0.0,7,300,4,0,78,7.0,0.0,263.7060007170536,1978.245069061518,0.0,0.0,18914.0,0,70,1,8151,201109039,,,128.0,,0.0,1.0,6.0,0.0,1.0,1.0,1988.953438991401,0.0,1450.0,0.0,0.0,24133.0,0,5,5,150.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2241.9510697785718,0.11853394680017827,0.09289980813734604,24133.0,7,4,7,7_1,7_0,7_0_0 -9040,2,70.0,2,0.0,1,111,2,0,72,6.0,0.0,0.0,59.82361051408146,0.0,123.65391033825105,23323.0,0,70,2,8154,201109040,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2264.481286391958,115.0,0.0,0.0,0.0,19958.0,0,5,1,89.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,183.4775208523325,0.007866806193557112,0.009193181724237524,19958.0,6,3,6,6_0,6_2,6_1_0 -9041,2,53.0,2,0.0,4,111,1,0,52,8.0,0.0,0.0,245.5752499524643,0.0,88.63342636132812,19652.0,0,41,2,8158,201109041,,,,412.0,1.0,0.0,2.0,0.0,1.0,1.0,2921.985150720839,0.0,180.0,51.0,0.0,26475.0,0,1,3,47.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,334.2086763137924,0.01700634420485408,0.012623557178991215,26475.0,8,4,8,8_0,8_2,8_0_1 -9042,2,77.0,4,0.0,1,300,5,0,71,3.0,0.0,97.1548423694408,409.2920832541072,139.0328256648284,0.0,9478.0,0,71,1,8159,201109042,,,100.0,,0.0,0.0,4.0,0.0,1.0,1.0,3021.492594214788,0.0,300.0,0.0,0.0,12870.0,0,5,1,158.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,645.4797512883764,0.0681029490703077,0.05015382682893368,12870.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -9043,2,65.0,2,0.0,4,111,2,78,74,6.0,0.0,0.0,132.1321484397973,0.0,273.113854138398,24874.0,70,41,2,8161,201109043,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2062.3179204586895,254.0,0.0,0.0,0.0,31095.0,6,5,1,82.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,405.2460025781953,0.016291951538883787,0.01303251334871186,20730.0,6,3,6,6_0,6_3,6_0_1 -9044,2,75.0,3,0.0,1,111,2,0,78,5.0,2379.684013708323,0.0,477.50743046312505,104.27461924862132,0.0,12486.0,0,70,1,8162,201109044,,,146.0,,0.0,3.0,3.0,0.0,1.0,1.0,4024.6648973523625,0.0,350.0,0.0,0.0,17346.0,0,5,1,66.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2961.466063420069,0.2371829299551553,0.1707290478162152,17346.0,5,3,5,5_1,5_4,5_1_0 -9045,2,46.0,2,0.0,8,112,6,42,37,7.0,0.0,0.0,2455.752499524643,0.0,0.0,59300.0,20,20,1,8163,201109045,,,,,2.0,0.0,7.0,4.0,6.0,3.3,1310.3328489323555,0.0,1800.0,0.0,0.0,78923.0,1,1,2,220.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2455.752499524643,0.04141235243717779,0.031115802738424073,23916.060606060608,7,4,7,7_1,7_0,7_0_0 -9046,2,48.0,3,0.0,6,400,5,67,64,5.0,0.0,0.0,682.1534720901786,145.98446694806984,0.0,28106.0,50,71,1,8167,201109046,,,420.0,,3.0,2.0,5.0,1.0,3.0,2.0,1946.0176556117515,0.0,500.0,0.0,0.0,36810.0,1,1,1,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,828.1379390382485,0.029464809614966503,0.02249763485569814,18405.0,5,3,5,5_1,5_0,5_0_0 -9047,0,54.0,3,0.0,4,120,2,0,65,7.0,0.0,0.0,0.0,0.0,0.0,15318.0,0,71,2,8169,201109047,,,,,1.0,1.0,4.0,0.0,1.0,1.0,5500.846532193044,0.0,0.0,0.0,0.0,24590.0,0,1,5,75.0,0,2.0,1,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,24590.0,7,4,7,7_0,7_1,7_0_1 -9048,1,31.0,4,266.0,9,112,2,45,63,6.0,1269.1648073111057,0.0,661.6888679274732,278.0656513296568,0.0,21709.0,43,42,1,817,201109048,,,61.0,,2.0,1.0,5.0,1.0,3.0,1.8,2063.556681208065,0.0,485.0,0.0,0.0,35302.0,4,1,3,120.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2208.9193265682356,0.10175131634659522,0.0625720731564284,19612.222222222223,6,3,6,6_1,6_0,6_0_0 -9049,2,60.0,3,0.0,3,212,6,56,75,5.0,650.4469637469417,0.0,256.4897055059072,0.0,0.0,22547.0,50,60,1,8170,201109049,,,371.0,,1.0,2.0,8.0,0.0,2.0,1.5,5200.38251686857,0.0,188.0,0.0,0.0,26480.0,1,5,1,177.0,3,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,906.9366692528489,0.04022427237560868,0.03424987421649731,17653.333333333332,5,3,5,5_1,5_0,5_0_1 -9050,2,55.0,2,0.0,7,111,4,54,62,9.0,0.0,0.0,1910.0297218525002,0.0,0.0,66197.0,42,50,1,8173,201109050,,,300.0,,3.0,1.0,5.0,1.0,3.0,2.0,2218.5872521463657,0.0,1400.0,0.0,0.0,65849.0,1,1,2,110.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1910.0297218525002,0.028853720287210904,0.02900620695610412,32924.5,9,5,9,9_1,9_3,9_0_0 -9051,2,56.0,2,0.0,99,112,1,0,33,9.0,0.0,0.0,0.0,72.99223347403492,0.0,35914.0,0,31,2,8176,201109051,,,,500.0,1.0,2.0,2.0,0.0,1.0,1.0,5720.572566504309,0.0,0.0,0.0,0.0,36110.0,0,1,3,38.0,9,3.0,1,7,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,72.99223347403492,0.0020324172599553076,0.0020213855849912743,36110.0,9,5,9,9_0,9_1,9_0_0 -9052,2,61.0,2,0.0,1,300,2,75,75,9.0,2300.361213251379,0.0,914.0856526008394,0.0,0.0,33773.0,31,50,1,8177,201109052,,,,,0.0,1.0,6.0,0.0,2.0,1.5,1834.1897121356317,0.0,670.0,0.0,0.0,45120.0,5,5,1,120.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3214.4468658522183,0.09517800804939502,0.07124217344530626,30080.0,9,5,9,9_1,9_0,9_1_0 -9053,2,64.0,1,0.0,3,111,1,0,77,3.0,0.0,0.0,315.1549041056625,0.0,0.0,37253.0,0,41,2,8179,201109053,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2497.958138947953,0.0,231.0,0.0,0.0,13644.0,0,5,1,107.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,315.1549041056625,0.008459853007963453,0.02309842451668591,13644.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -9054,1,65.0,4,211.0,1,111,6,0,72,3.0,0.0,0.0,859.5133748336251,173.79103208103552,0.0,14103.0,0,50,2,8180,201109054,,,,39.0,1.0,1.0,2.0,1.0,2.0,1.5,3259.5700054940426,0.0,630.0,0.0,0.0,21861.0,0,5,3,45.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1033.3044069146606,0.07326841146668514,0.0472670237827483,14574.0,3,2,3_1,3_0_1,3_3_1,3_1_0 -9055,2,72.0,1,0.0,9,112,2,78,74,10.0,0.0,0.0,1910.0297218525002,0.0,0.0,37270.0,70,71,1,8182,201109055,,,480.0,,0.0,4.0,4.0,0.0,2.0,1.5,2676.837623593246,0.0,1400.0,0.0,0.0,57408.0,5,5,1,83.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1910.0297218525002,0.0512484497411457,0.033271142033383855,38272.0,10,5,10,10_1,10_0,10_0_0 -9056,2,59.0,1,0.0,9,112,5,75,38,10.0,158.64560091388822,2081.88947934516,2904.0187978061285,0.0,4451.540772177038,51772.0,60,12,1,8184,201109056,,,169.0,,1.0,2.0,5.0,0.0,2.0,1.5,1612.9913579740073,4140.0,550.0,0.0,0.0,79352.0,5,1,1,200.0,9,0.0,3,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,9596.094650242216,0.18535298327749006,0.12093072197603356,52901.333333333336,10,5,10,10_1,10_0,10_0_0 -9057,2,52.0,5,0.0,1,120,4,52,85,3.0,0.0,0.0,1738.0892424637677,161.62565983536302,806.438545684246,29509.0,41,50,2,8186,201109057,,,,,1.0,2.0,4.0,1.0,3.0,2.0,2697.9750702006113,750.0,988.0,0.0,0.0,28611.0,1,5,3,150.0,0,2.0,4,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,2706.1534479833767,0.0917060370728719,0.09458437132513288,14305.5,3,2,3_0,3_0_0,3_1_0,3_1_0 -9058,2,39.0,2,0.0,4,111,1,46,63,9.0,0.0,0.0,341.0767360450893,0.0,782.0596443646599,49080.0,41,50,2,8187,201109058,,,,1000.0,2.0,3.0,3.0,0.0,2.0,1.5,3344.3130773583193,0.0,250.0,450.0,0.0,48774.0,2,1,3,58.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1123.136380409749,0.02288378933190198,0.023027358437071987,32516.0,9,5,9,9_0,9_4,9_0_1 -9059,2,59.0,3,0.0,4,111,2,78,68,8.0,0.0,0.0,336.9838152125482,0.0,658.6680115871246,23156.0,70,70,1,819,201109059,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2924.008518432363,0.0,247.0,379.0,0.0,40479.0,5,1,3,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,995.6518267996728,0.04299757414059737,0.024596749593608358,26986.0,8,4,8,8_1,8_3,8_0_1 -9060,2,28.0,4,0.0,4,111,1,65,52,3.0,0.0,0.0,613.9381248811608,0.0,347.58206416207105,34754.0,71,41,8,8191,201109060,,,,703.0,2.0,0.0,4.0,2.0,4.0,2.1,3722.2738999904964,0.0,450.0,200.0,0.0,26140.0,4,4,3,95.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,961.5201890432318,0.027666461099247044,0.03678348083562478,12447.619047619048,2,1,2_0,2_0_0,2_3_0,2_0_1 -9061,2,43.0,3,0.0,8,111,4,43,64,9.0,0.0,0.0,1732.6698191090536,0.0,0.0,25853.0,10,41,2,8192,201109061,,,,863.0,2.0,0.0,3.0,1.0,3.0,1.8,5939.624966950568,0.0,1270.0,0.0,0.0,52877.0,1,1,3,68.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1732.6698191090536,0.06702006804274373,0.03276792970684898,29376.11111111111,9,5,9,9_0,9_4,9_0_0 -9062,1,93.0,2,104.0,5,111,1,0,75,2.0,0.0,0.0,387.4631721472215,0.0,0.0,8240.0,0,33,2,8193,201109062,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3076.3134053531094,0.0,284.0,0.0,0.0,10436.0,0,5,3,33.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,387.4631721472215,0.04702222962951717,0.037127555782600755,10436.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -9063,2,32.0,3,0.0,5,111,1,85,47,3.0,0.0,0.0,68.21534720901786,0.0,86.89551604051776,21981.0,10,20,2,8194,201109063,,,,350.0,1.0,0.0,3.0,1.0,3.0,1.8,2431.5521774288777,0.0,50.0,50.0,0.0,25280.0,6,1,3,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,155.1108632495356,0.007056588110164943,0.006135714527275934,14044.444444444443,3,2,3_0,3_0_0,3_4_0,3_0_0 -9064,2,57.0,3,0.0,6,112,4,56,75,7.0,0.0,749.4802125642576,3287.979735474661,187.69431464751835,0.0,52072.0,60,50,1,8196,201109064,,,,,2.0,1.0,7.0,2.0,4.0,2.5,2977.258767747089,0.0,2410.0,0.0,0.0,58491.0,1,5,1,230.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4225.1542626864375,0.08114061804206556,0.07223597241774696,23396.4,7,4,7,7_1,7_0,7_0_0 -9065,1,41.0,5,262.0,5,111,1,0,85,3.0,0.0,0.0,259.2183193942679,0.0,0.0,12483.0,0,50,2,8197,201109065,,,,134.0,0.0,1.0,2.0,0.0,1.0,1.0,2561.5321730555147,0.0,190.0,0.0,0.0,13164.0,0,7,3,36.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,259.2183193942679,0.020765706912943036,0.019691455438640832,13164.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -9066,2,54.0,1,0.0,6,120,5,13,13,10.0,0.0,277.585263912688,1637.1683330164287,0.0,0.0,28166.0,50,50,1,8199,201109066,,,1000.0,,2.0,3.0,7.0,0.0,2.0,1.5,1054.057611537206,0.0,1200.0,0.0,0.0,57155.0,1,1,1,130.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1914.7535969291166,0.06798102666083634,0.033501068969103605,38103.333333333336,10,5,10,10_1,10_0,10_0_0 -9067,2,32.0,2,0.0,1,111,2,54,34,8.0,0.0,0.0,1084.624020623384,0.0,1963.8386625157013,40860.0,31,20,1,820,201109067,,,485.0,,2.0,0.0,6.0,2.0,4.0,2.1,1415.1564333283864,0.0,795.0,1130.0,0.0,52671.0,1,1,2,200.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3048.462683139085,0.07460750570580238,0.05787744077650102,25081.42857142857,8,4,8,8_1,8_3,8_1_0 -9068,2,48.0,1,0.0,2,111,2,0,62,5.0,0.0,0.0,682.1534720901786,0.0,434.4775802025888,17836.0,0,71,2,8200,201109068,,,336.0,300.0,1.0,4.0,5.0,1.0,2.0,1.3,2993.6299694028708,0.0,500.0,250.0,0.0,24610.0,0,1,3,79.0,5,4.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1116.6310522927674,0.06260546379753125,0.04537306185667483,18930.76923076923,5,3,5,5_0,5_2,5_0_1 -9069,2,44.0,3,0.0,1,111,2,85,46,7.0,0.0,0.0,818.5841665082144,0.0,2954.447545377604,47883.0,20,12,1,8201,201109069,,,770.0,,1.0,0.0,6.0,3.0,5.0,2.4,1177.3040929193794,0.0,600.0,1700.0,0.0,57472.0,6,1,2,130.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3773.0317118858184,0.07879689476193677,0.06564991146794645,23946.666666666668,7,4,7,7_1,7_3,7_1_0 -9070,2,36.0,2,0.0,3,300,2,55,47,4.0,0.0,0.0,900.4425831590357,0.0,2294.041623469669,42058.0,50,50,1,8203,201109070,,,,443.0,2.0,0.0,4.0,2.0,4.0,2.5,825.7385213295098,0.0,660.0,1320.0,0.0,37773.0,4,1,3,120.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3194.4842066287047,0.07595425856266833,0.08457057174777499,15109.2,4,2,4_0,4_1_0,4_1_0,4_0_1 -9071,0,56.0,4,0.0,1,112,2,77,56,9.0,0.0,0.0,0.0,271.11401004641544,0.0,34723.0,50,50,1,8204,201109071,,,,,1.0,4.0,5.0,0.0,2.0,1.5,1566.951109494124,0.0,0.0,0.0,0.0,49132.0,5,1,5,138.0,6,0.0,3,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,271.11401004641544,0.0078079085921842995,0.005518073964960015,32754.666666666668,9,5,9,9_1,9_0,9_1_0 -9072,2,23.0,2,0.0,1,221,2,0,34,6.0,0.0,0.0,736.7257498573929,59.088950907552075,0.0,17464.0,0,20,2,8206,201109072,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5725.431977889153,0.0,540.0,0.0,0.0,19719.0,0,1,3,35.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,795.814700764945,0.045568867428134735,0.04035776158856661,19719.0,6,3,6,6_0,6_1,6_1_0 -9073,2,23.0,2,0.0,1,111,2,43,63,6.0,0.0,0.0,520.2053088180996,0.0,1075.2513942456615,22030.0,20,31,2,8207,201109073,,,132.0,520.0,2.0,0.0,3.0,0.0,2.0,1.5,3182.276415613234,1000.0,0.0,0.0,0.0,29469.0,1,1,3,70.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1595.456703063761,0.07242200195477808,0.054140171131146664,19646.0,6,3,6,6_0,6_2,6_1_0 -9074,2,36.0,4,0.0,8,111,1,0,31,8.0,0.0,0.0,300.1475277196786,0.0,0.0,26333.0,0,10,2,821,201109074,,,,513.0,1.0,0.0,2.0,0.0,1.0,1.0,3742.791965732613,0.0,220.0,0.0,0.0,27564.0,0,1,3,52.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,300.1475277196786,0.011398151662160733,0.010889113616299469,27564.0,8,4,8,8_0,8_4,8_0_0 -9075,2,35.0,4,0.0,9,120,2,56,67,3.0,0.0,0.0,1609.8821941328215,0.0,0.0,20628.0,50,71,1,8210,201109075,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2357.1247066360957,0.0,1180.0,0.0,0.0,24122.0,1,1,2,94.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1609.8821941328215,0.07804354247298921,0.06673916732164918,13401.111111111111,3,2,3_0,3_1_0,3_1_0,3_0_0 -9076,2,32.0,3,0.0,1,111,2,0,48,9.0,0.0,0.0,327.43366660328576,0.0,792.487106289522,19090.0,0,20,2,8211,201109076,,,80.0,486.0,1.0,0.0,2.0,0.0,1.0,1.0,4524.665364377046,0.0,240.0,456.0,0.0,30616.0,0,1,3,50.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1119.9207728928077,0.058665310261540475,0.036579591484609604,30616.0,9,5,9,9_0,9_2,9_1_0 -9077,2,65.0,3,0.0,5,111,2,0,75,8.0,0.0,0.0,794.813496747005,0.0,2299.9909361801137,64549.0,0,20,2,8212,201109077,,,,,0.0,0.0,4.0,0.0,2.0,1.5,2937.463830193064,846.0,260.0,800.0,0.0,39539.0,0,5,1,86.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3094.804432927119,0.04794504071212751,0.07827219790402182,26359.333333333332,8,4,8,8_0,8_3,8_0_0 -9078,2,35.0,2,0.0,8,112,2,52,38,7.0,0.0,0.0,545.7227776721429,0.0,1320.81184381587,37059.0,31,31,1,8214,201109078,,,700.0,,2.0,0.0,6.0,2.0,4.0,2.1,1960.0995507607759,0.0,400.0,760.0,0.0,51528.0,4,1,2,115.0,8,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1866.5346214880128,0.05036656740570476,0.03622369627169719,24537.142857142855,7,4,7,7_1,7_1,7_0_0 -9079,2,22.0,2,0.0,6,111,2,84,53,3.0,0.0,0.0,622.1239665462429,0.0,1027.10499959892,29982.0,33,60,2,8219,201109079,,,,520.0,1.0,0.0,2.0,0.0,2.0,1.5,3669.568413724059,0.0,456.0,591.0,0.0,21305.0,3,1,3,55.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1649.2289661451628,0.0550073032534575,0.07741041850012498,14203.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_0 -9080,1,36.0,4,447.0,3,111,2,0,85,2.0,0.0,0.0,294.69029994295715,0.0,1737.9103208103552,10163.0,0,71,2,822,201109080,,,280.0,81.0,0.0,0.0,5.0,3.0,4.0,1.9,3248.8084697011977,0.0,216.0,1000.0,0.0,18724.0,0,6,3,62.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2032.6006207533123,0.20000006107973162,0.10855589728441103,9854.736842105263,1,1,1_1,1_0_1,1_3_1,1_0_1 -9081,2,54.0,3,0.0,1,112,2,52,62,3.0,1028.0234939219956,0.0,1091.4455553442858,0.0,0.0,30208.0,60,50,1,8220,201109081,,,300.0,,2.0,3.0,4.0,2.0,4.0,2.5,2262.944418670336,0.0,800.0,0.0,0.0,31346.0,1,1,1,111.0,6,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2119.469049266281,0.0701625082516645,0.06761529538908573,12538.4,2,1,2_0,2_1_0,2_0_0,2_1_0 -9082,2,47.0,3,0.0,4,111,2,56,48,4.0,0.0,0.0,1050.3608111843346,0.0,2386.3489984182806,28531.0,50,50,2,8222,201109082,,,,1403.0,3.0,0.0,4.0,2.0,4.0,2.5,3532.99631940693,776.0,474.0,893.0,0.0,38203.0,4,1,3,83.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3436.709809602615,0.12045528756800025,0.08995916052672867,15281.2,4,2,4_0,4_0_0,4_3_0,4_0_1 -9083,1,43.0,4,109.0,3,111,1,0,67,3.0,0.0,0.0,409.2920832541072,0.0,208.54923849724264,10315.0,0,71,2,8223,201109083,,,18.0,175.0,1.0,0.0,4.0,0.0,1.0,1.0,3360.2175953845517,0.0,300.0,120.0,0.0,12598.0,0,4,3,70.0,3,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,617.8413217513498,0.05989736517221036,0.04904281010885456,12598.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -9084,2,40.0,1,0.0,99,300,4,0,34,10.0,0.0,0.0,3114.7127535637555,41.709847699448524,0.0,25916.0,0,12,1,8224,201109084,,,150.0,,1.0,0.0,7.0,0.0,1.0,1.0,1518.8655036639104,0.0,2283.0,0.0,0.0,53020.0,0,1,2,157.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3156.422601263204,0.12179435874607207,0.059532678258453486,53020.0,10,5,10,10_1,10_0,10_0_0 -9085,2,65.0,4,0.0,1,111,2,77,78,3.0,0.0,0.0,395.6490138123036,0.0,2085.4923849724264,18555.0,70,70,2,8225,201109085,,,250.0,,0.0,2.0,4.0,0.0,2.0,1.5,4010.747479713333,0.0,290.0,1200.0,0.0,20258.0,6,5,3,53.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2481.14139878473,0.13371821065937645,0.12247711515375308,13505.333333333334,3,2,3_0,3_0_0,3_2_0,3_1_0 -9086,2,60.0,3,0.0,6,112,5,78,56,7.0,0.0,229.00784272796759,1241.5193192041252,375.3886292950367,0.0,31291.0,71,70,1,8227,201109086,,,487.0,,1.0,5.0,4.0,0.0,2.0,1.5,2227.5836570572824,0.0,910.0,0.0,0.0,34603.0,5,5,2,103.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1845.9157912271294,0.058991907936056034,0.05334554204049156,23068.666666666668,7,4,7,7_1,7_0,7_0_0 -9087,1,55.0,4,268.0,2,111,2,0,21,3.0,0.0,0.0,581.1947582208322,0.0,823.7694920641084,12337.0,0,71,2,8228,201109087,,,,,1.0,3.0,3.0,0.0,1.0,1.0,3242.5690632153237,0.0,426.0,474.0,0.0,14296.0,0,4,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1404.9642502849406,0.11388216343397427,0.0982767382683926,14296.0,3,2,3_1,3_0_1,3_4_1,3_0_1 -9088,2,71.0,4,0.0,3,221,2,77,77,3.0,0.0,0.0,439.306836026075,0.0,1445.9413869142156,19266.0,70,71,1,823,201109088,,,150.0,,0.0,2.0,6.0,0.0,2.0,1.5,3776.9791617032893,0.0,322.0,832.0,0.0,21396.0,5,5,1,110.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1885.2482229402906,0.09785363972491906,0.08811218091887692,14264.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -9089,2,34.0,3,0.0,5,111,1,54,38,9.0,0.0,0.0,409.2920832541072,0.0,417.0984769944853,62409.0,31,10,2,8230,201109089,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2691.1506377135815,0.0,300.0,240.0,0.0,63444.0,1,1,2,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,826.3905602485925,0.013241528629662267,0.013025511636223952,35246.666666666664,9,5,9,9_0,9_4,9_0_0 -9090,2,40.0,3,0.0,8,221,2,85,48,5.0,1586.456009138882,208.188947934516,818.5841665082144,69.5164128324142,0.0,27198.0,60,71,1,8231,201109090,,,800.0,,1.0,0.0,5.0,2.0,4.0,2.1,7436.106787685905,0.0,600.0,0.0,0.0,35700.0,4,1,2,98.0,1,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2682.7455364140264,0.09863760336841042,0.07514693379310998,17000.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -9091,2,50.0,2,0.0,4,120,2,0,34,9.0,2221.038412794435,0.0,409.2920832541072,130.34327406077665,0.0,37584.0,0,20,1,8232,201109091,,,,,1.0,2.0,6.0,0.0,1.0,1.0,2292.1695766805665,0.0,300.0,0.0,0.0,30730.0,0,1,2,150.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2760.673770109319,0.07345343151631861,0.08983643898826289,30730.0,9,5,9,9_1,9_0,9_0_1 -9092,1,51.0,4,39.0,5,111,2,85,67,3.0,0.0,0.0,520.2053088180996,0.0,1075.2513942456615,31847.0,71,50,1,8233,201109092,,,,,2.0,0.0,6.0,4.0,6.0,3.3,1829.7126928020728,1000.0,0.0,0.0,0.0,48050.0,6,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1595.456703063761,0.05009755088591582,0.033204093716207306,14560.606060606062,3,2,3_1,3_1_1,3_4_1,3_0_0 -9093,2,58.0,3,0.0,6,111,2,37,23,10.0,9518.736054833293,0.0,2005.531207945125,0.0,0.0,115066.0,71,71,1,8234,201109093,,,719.0,,2.0,2.0,5.0,1.0,3.0,2.0,3410.2312922962114,0.0,1470.0,0.0,0.0,118712.0,1,1,1,199.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,11524.267262778418,0.10015354025323221,0.09707752596854924,59356.0,10,5,10,10_1,10_4,10_0_0 -9094,2,62.0,2,0.0,6,112,2,77,75,7.0,0.0,0.0,1906.6346829842043,0.0,556.9802222192526,31669.0,50,41,1,8236,201109094,,,500.0,,0.0,1.0,5.0,0.0,2.0,1.5,3487.1609301752305,518.0,1200.0,0.0,0.0,36990.0,5,5,1,120.0,9,3.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2463.614905203457,0.07779263333870527,0.06660218721826053,24660.0,7,4,7,7_1,7_1,7_0_0 -9095,2,75.0,3,0.0,4,400,2,0,86,5.0,3172.912018277764,0.0,398.37762770066433,281.54147197127753,0.0,35782.0,0,71,1,8237,201109095,,,,,1.0,6.0,7.0,1.0,2.0,1.5,5056.9248194696065,0.0,292.0,0.0,0.0,28350.0,0,5,1,160.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3852.8311179497064,0.10767511927644365,0.1359023322028115,18900.0,5,3,5,5_1,5_0,5_0_1 -9096,2,23.0,2,0.0,5,112,4,0,62,5.0,0.0,0.0,646.6814915414893,0.0,0.0,23874.0,0,50,2,8239,201109096,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3004.5280693188483,0.0,474.0,0.0,0.0,17983.0,0,1,2,42.0,8,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,646.6814915414893,0.02708727031672486,0.03596071242515094,17983.0,5,3,5,5_0,5_0,5_0_0 -9097,1,45.0,4,245.0,1,111,1,0,47,3.0,0.0,0.0,491.1504999049286,0.0,0.0,22311.0,0,50,2,8241,201109097,,,,175.0,1.0,1.0,2.0,1.0,2.0,1.5,3093.8588929670245,0.0,360.0,0.0,0.0,19630.0,0,1,3,52.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,491.1504999049286,0.022013827255834728,0.025020402440393715,13086.666666666666,3,2,3_1,3_0_1,3_2_1,3_1_0 -9098,2,57.0,1,0.0,5,112,1,52,38,9.0,0.0,624.566843803548,1405.236152505768,0.0,1147.0208117348345,57497.0,60,42,1,8242,201109098,,,708.0,,2.0,2.0,6.0,1.0,3.0,2.0,1583.7179838870743,0.0,1030.0,660.0,0.0,64556.0,1,1,1,139.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3176.8238080441506,0.055251992417763546,0.04921035702404348,32278.0,9,5,9,9_1,9_0,9_0_0 -9099,2,41.0,2,0.0,7,211,2,46,37,10.0,0.0,0.0,573.00891655575,0.0,3274.223044406709,32184.0,31,10,1,8244,201109099,,,,,2.0,0.0,5.0,1.0,3.0,1.8,4485.814406481235,0.0,420.0,1884.0,0.0,70636.0,1,1,2,170.0,2,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3847.231960962459,0.11953865153375774,0.05446559772584035,39242.22222222222,10,5,10,10_1,10_1,10_0_0 -9100,2,55.0,2,0.0,6,111,2,78,56,5.0,0.0,0.0,1637.1683330164287,0.0,208.54923849724264,23649.0,50,60,1,8246,201109100,,,,,1.0,1.0,4.0,0.0,2.0,1.5,1760.882731789908,0.0,1200.0,120.0,0.0,26111.0,5,1,1,100.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1845.7175715136714,0.0780463263357297,0.0706873567275735,17407.333333333332,5,3,5,5_1,5_3,5_0_0 -9101,1,46.0,4,200.0,3,111,1,0,85,1.0,0.0,0.0,341.0767360450893,0.0,0.0,8674.0,0,71,2,8247,201109101,,,,,0.0,1.0,4.0,2.0,3.0,1.8,2815.635488973005,0.0,250.0,0.0,0.0,14990.0,0,7,3,72.0,6,4.0,2,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,341.0767360450893,0.039321735767245715,0.022753618148438248,8327.777777777777,1,1,1_1,1_0_1,1_2_1,1_0_1 -9102,1,45.0,4,405.0,1,111,2,0,85,2.0,0.0,0.0,676.2669014635294,0.0,1397.8268125193597,6256.0,0,60,1,8248,201109102,,,840.0,,0.0,1.0,5.0,2.0,3.0,1.6,1775.2706696337752,1300.0,0.0,0.0,0.0,18060.0,0,7,3,70.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2074.0937139828893,0.33153671898703474,0.11484461317734714,11287.5,2,1,2_1,2_1_1,2_3_1,2_1_0 -9103,2,39.0,1,0.0,1,111,2,42,38,7.0,3966.1400228472053,0.0,1227.8762497623215,0.0,0.0,54772.0,10,20,1,8249,201109103,,,450.0,,2.0,0.0,8.0,4.0,6.0,2.7,1235.3923540310736,0.0,900.0,0.0,0.0,66203.0,1,1,2,160.0,9,7.0,4,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5194.016272609527,0.09482977201142055,0.07845590490777649,24519.629629629628,7,4,7,7_1,7_3,7_1_0 -9104,2,52.0,2,0.0,8,300,2,54,63,9.0,1028.0234939219956,0.0,682.1534720901786,93.84715732375918,0.0,51139.0,50,50,1,825,201109104,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1142.139137421521,0.0,500.0,0.0,0.0,59193.0,1,1,1,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1804.0241233359334,0.03527687524855655,0.03047698415920689,32885.0,9,5,9,9_1,9_0,9_0_0 -9105,2,58.0,1,0.0,3,111,2,43,37,10.0,2062.392811880547,0.0,2608.343714341919,139.0328256648284,2641.8926756615897,81153.0,33,10,1,8250,201109105,,,480.0,,3.0,1.0,8.0,1.0,3.0,2.0,1894.373243518947,2457.0,975.0,0.0,0.0,126711.0,1,1,1,250.0,8,7.0,4,5,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,7451.662027548884,0.09182238521741505,0.05880832782906681,63355.5,10,5,10,10_1,10_3,10_0_1 -9106,2,30.0,2,0.0,5,111,1,0,37,10.0,0.0,0.0,586.6519859975537,0.0,0.0,43173.0,0,10,2,8251,201109106,,,,890.0,2.0,0.0,3.0,0.0,2.0,1.5,2964.506691722979,0.0,430.0,0.0,0.0,66256.0,0,1,3,65.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,586.6519859975537,0.013588399833172438,0.008854322416046148,44170.666666666664,10,5,10,10_0,10_4,10_0_0 -9107,1,53.0,4,351.0,3,111,1,0,63,2.0,0.0,0.0,218.28911106885715,0.0,173.79103208103552,13555.0,0,71,2,8252,201109107,,,,,2.0,0.0,3.0,1.0,2.0,1.5,3346.489956568553,0.0,160.0,100.0,0.0,16543.0,0,4,3,35.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,392.0801431498927,0.028925130442633177,0.023700667542156363,11028.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_1 -9108,2,73.0,2,0.0,4,111,2,77,74,8.0,0.0,111.0341055650752,575.7375304441108,0.0,1147.0208117348345,32545.0,70,60,1,8253,201109108,,,505.0,,0.0,1.0,5.0,0.0,2.0,1.5,3673.749956723952,0.0,422.0,660.0,0.0,39224.0,5,5,1,115.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1833.7924477440206,0.05634636496371242,0.04675179603671274,26149.333333333332,8,4,8,8_1,8_3,8_0_1 -9109,1,46.0,4,40.0,1,120,5,0,56,2.0,0.0,27.7585263912688,1473.4514997147858,86.89551604051776,0.0,19685.0,0,71,1,8254,201109109,,,,,1.0,1.0,5.0,2.0,3.0,1.8,2539.401453043228,0.0,1080.0,0.0,0.0,18691.0,0,1,1,120.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1588.1055421465724,0.08067592289289166,0.08496632294401436,10383.888888888889,2,1,2_1,2_1_1,2_0_1,2_1_0 -9110,2,38.0,2,0.0,1,111,5,64,46,7.0,0.0,1179.737371628924,1023.230208135268,0.0,521.3730962431066,49317.0,50,31,1,8255,201109110,,,432.0,,2.0,0.0,4.0,2.0,4.0,2.1,1569.0257701443945,0.0,750.0,300.0,0.0,51738.0,1,1,2,100.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2724.3406760072985,0.055241411197098335,0.05265647446765044,24637.142857142855,7,4,7,7_1,7_2,7_1_0 -9111,2,58.0,3,0.0,7,211,4,77,46,6.0,0.0,0.0,2987.8322077549824,0.0,0.0,29070.0,70,71,1,8256,201109111,,,520.0,,1.0,2.0,5.0,0.0,2.0,1.5,1630.383923036688,0.0,2190.0,0.0,0.0,28613.0,5,1,1,200.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2987.8322077549824,0.10278060570192578,0.10442219298063755,19075.333333333332,5,3,5,5_1,5_2,5_0_0 -9112,2,82.0,3,0.0,4,120,2,78,75,5.0,0.0,0.0,409.2920832541072,0.0,1911.7013528913908,15178.0,71,50,1,8258,201109112,,,235.0,,0.0,4.0,3.0,0.0,2.0,1.5,4125.404712561889,0.0,300.0,1100.0,0.0,27520.0,5,5,1,69.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2320.993436145498,0.15291826565723401,0.08433842427854281,18346.666666666668,5,3,5,5_1,5_1,5_0_1 -9113,2,74.0,2,0.0,1,112,2,0,77,10.0,0.0,0.0,137.79500136221608,0.0,218.97670042210476,29043.0,0,50,1,8259,201109113,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2091.6324190959,0.0,101.0,126.0,0.0,37395.0,0,5,5,120.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,356.77170178432084,0.012284257886042104,0.009540625799821388,37395.0,9,5,9,9_1,9_2,9_1_0 -9114,2,64.0,4,0.0,1,111,2,85,62,4.0,0.0,416.377895869032,1040.4106176361993,0.0,2150.502788491323,64232.0,71,71,1,8260,201109114,,,400.0,,3.0,5.0,6.0,2.0,4.0,2.5,2559.3476157560444,2000.0,0.0,0.0,0.0,37354.0,6,1,1,200.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3607.2913019965545,0.05616034534183202,0.09657041553773503,14941.6,4,2,4_0,4_1_0,4_3_0,4_1_0 -9115,0,37.0,3,0.0,3,111,1,85,63,2.0,0.0,0.0,436.5782221377143,0.0,0.0,35503.0,30,41,2,8262,201109115,,,,,1.0,0.0,2.0,2.0,4.0,2.1,2962.1505354592346,0.0,320.0,0.0,0.0,22572.0,6,1,5,40.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,436.5782221377143,0.012296938910450224,0.019341583472342473,10748.571428571428,2,1,2_0,2_0_0,2_4_0,2_0_1 -9116,2,51.0,3,0.0,1,112,2,0,54,8.0,1903.7472109666587,0.0,654.8673332065715,173.79103208103552,0.0,10829.0,0,60,1,8264,201109116,,,120.0,,1.0,0.0,3.0,0.0,1.0,1.0,3503.983398510973,0.0,480.0,0.0,0.0,26063.0,0,1,2,60.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2732.4055762542657,0.2523229823856557,0.10483849043679798,26063.0,8,4,8,8_1,8_0,8_1_0 -9117,2,49.0,2,0.0,4,221,1,52,47,6.0,0.0,0.0,873.1564442754286,173.79103208103552,0.0,53639.0,31,31,8,8265,201109117,,,249.0,,2.0,0.0,4.0,2.0,4.0,2.5,5612.8929318609025,0.0,640.0,0.0,0.0,47961.0,1,1,1,83.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1046.9474763564642,0.019518400349679603,0.02182914193524873,19184.4,5,3,5,5_0,5_1,5_0_1 -9118,2,54.0,1,0.0,5,112,4,67,54,5.0,0.0,416.377895869032,1743.5842746624965,79.94387475727635,0.0,20421.0,50,50,1,8267,201109118,,,,,2.0,3.0,7.0,0.0,2.0,1.5,921.7289567297042,0.0,1278.0,0.0,0.0,28273.0,4,1,1,220.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2239.9060452888048,0.10968640347136795,0.07922420844228786,18848.666666666668,5,3,5,5_1,5_1,5_0_0 -9119,2,35.0,3,0.0,2,111,1,0,45,8.0,0.0,0.0,313.79059716148214,0.0,0.0,25549.0,0,10,8,8268,201109119,,,89.0,,1.0,0.0,3.0,0.0,1.0,1.0,3653.293790103053,0.0,230.0,0.0,0.0,27458.0,0,1,2,51.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,313.79059716148214,0.012281913075325146,0.011428020874116183,27458.0,8,4,8,8_0,8_3,8_0_1 -9120,2,27.0,2,0.0,5,120,2,34,37,10.0,962.9787975473015,0.0,349.26257771017146,0.0,0.0,58482.0,10,12,8,8269,201109120,,,,700.0,2.0,0.0,3.0,0.0,2.0,1.5,1827.2301712097708,0.0,256.0,0.0,0.0,62532.0,1,1,3,93.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1312.241375257473,0.022438380617240742,0.020985117623896134,41688.0,10,5,10,10_0,10_1,10_0_0 -9121,2,43.0,1,0.0,1,111,2,0,37,9.0,0.0,0.0,613.9381248811608,0.0,1737.9103208103552,39936.0,0,10,2,827,201109121,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2972.3904957229174,0.0,450.0,1000.0,0.0,33954.0,0,1,2,53.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2351.8484456915157,0.05889043583963131,0.06926572556080332,33954.0,9,5,9,9_0,9_4,9_1_0 -9122,2,80.0,3,0.0,4,111,1,78,78,3.0,0.0,0.0,573.00891655575,0.0,469.23578661879594,13017.0,71,71,2,8270,201109122,,,,400.0,0.0,3.0,3.0,0.0,2.0,1.5,3621.794781813257,0.0,420.0,270.0,0.0,18669.0,5,5,3,92.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1042.244703174546,0.08006796521276377,0.05582755922516182,12446.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -9123,2,74.0,1,0.0,3,111,1,74,74,9.0,0.0,0.0,341.0767360450893,0.0,139.0328256648284,42150.0,10,12,2,8272,201109123,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1793.575106664903,0.0,250.0,80.0,0.0,53315.0,5,5,1,120.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,480.1095617099177,0.011390499684695557,0.0090051498023055,35543.333333333336,9,5,9,9_0,9_3,9_0_1 -9124,2,67.0,3,0.0,99,111,1,77,78,6.0,0.0,0.0,556.6372332255858,0.0,500.5181723933823,22053.0,71,50,2,8274,201109124,,,,380.0,0.0,1.0,3.0,0.0,2.0,1.5,3356.318693973904,0.0,408.0,288.0,0.0,30840.0,5,5,3,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1057.155405618968,0.04793703376497383,0.03427870965042049,20560.0,6,3,6,6_0,6_4,6_0_0 -9125,1,20.0,2,173.0,1,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,10459.0,0,41,2,8275,201109125,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3537.6136912278553,0.0,0.0,0.0,0.0,3547.0,0,3,3,28.0,9,7.0,1,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0.0,0.0,0.0,3547.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -9126,1,37.0,3,260.0,1,111,4,0,68,6.0,0.0,0.0,421.36630014266063,0.0,870.9536293389857,25950.0,0,71,2,8276,201109126,,,,420.0,1.0,0.0,3.0,3.0,4.0,2.1,5809.854119239192,810.0,0.0,0.0,0.0,40924.0,0,1,3,50.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1292.3199294816463,0.049800382638984446,0.03157853409934626,19487.619047619046,6,3,6,6_0,6_4,6_1_0 -9127,1,21.0,3,280.0,2,111,4,52,84,4.0,0.0,0.0,764.011888741,156.41192887293198,0.0,23530.0,10,41,2,8277,201109127,,,,273.0,1.0,0.0,3.0,0.0,2.0,1.5,3581.8654093781875,0.0,560.0,0.0,0.0,22161.0,4,3,3,60.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,920.423817613932,0.03911703432273404,0.041533496575692976,14774.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -9128,2,62.0,2,0.0,5,112,2,78,78,6.0,0.0,0.0,1091.4455553442858,0.0,0.0,16908.0,71,50,1,8279,201109128,,,180.0,,0.0,0.0,3.0,0.0,2.0,1.5,2446.6032347443866,0.0,800.0,0.0,0.0,29638.0,4,5,1,67.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1091.4455553442858,0.06455202007004293,0.03682588418058863,19758.666666666668,6,3,6,6_1,6_0,6_0_0 -9129,2,67.0,2,0.0,4,111,2,0,75,7.0,0.0,0.0,2933.259929987768,0.0,0.0,23044.0,0,50,1,8282,201109129,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2271.086760837989,0.0,2150.0,0.0,0.0,21907.0,0,6,1,100.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2933.259929987768,0.12728953002897794,0.1338960117764992,21907.0,7,4,7,7_1,7_4,7_0_1 -9130,1,21.0,3,0.0,6,111,1,84,81,1.0,0.0,0.0,682.1534720901786,0.0,0.0,5963.0,20,31,2,8283,201109130,,,,,1.0,0.0,2.0,0.0,2.0,1.5,3715.217732145532,0.0,500.0,0.0,0.0,11720.0,3,4,3,55.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,682.1534720901786,0.11439769781824227,0.05820422116810398,7813.333333333333,1,1,1_1,1_0_1,1_3_1,1_0_0 -9131,2,38.0,4,0.0,99,111,2,0,42,3.0,0.0,277.585263912688,1091.4455553442858,0.0,2248.8559551286,33769.0,0,41,1,8284,201109131,,,871.0,,1.0,0.0,4.0,3.0,4.0,1.9,1340.8670811776265,0.0,800.0,1294.0,0.0,25346.0,0,1,3,80.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3617.8867743855735,0.10713633138042505,0.14273995006650256,13340.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -9132,2,58.0,2,0.0,5,221,4,78,78,7.0,0.0,277.585263912688,1364.3069441803573,243.30744491344973,0.0,22983.0,50,50,1,8286,201109132,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1488.5607747354788,0.0,1000.0,0.0,0.0,35458.0,7,5,1,85.0,1,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1885.1996530064948,0.08202583009208958,0.0531671175195018,23638.666666666668,7,4,7,7_1,7_1,7_0_0 -9133,2,52.0,3,0.0,99,111,6,0,46,6.0,0.0,0.0,843.7210324027023,104.27461924862132,136.556927069199,24236.0,0,60,2,8289,201109133,,,,324.0,1.0,0.0,1.0,0.0,1.0,1.0,3568.123676118435,127.0,570.0,0.0,0.0,21283.0,0,1,3,28.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1084.5525787205227,0.04474965253014205,0.050958632651436485,21283.0,6,3,6,6_0,6_3,6_0_0 -9134,2,63.0,1,0.0,4,111,2,0,75,10.0,0.0,0.0,380.6416374263197,0.0,2078.5407436891846,37123.0,0,20,1,829,201109134,,,91.0,,0.0,5.0,8.0,0.0,1.0,1.0,1983.5137628005918,0.0,279.0,1196.0,0.0,44769.0,0,5,1,136.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2459.1823811155045,0.0662441715679095,0.054930473790245585,44769.0,10,5,10,10_1,10_4,10_0_1 -9135,2,29.0,2,0.0,2,111,2,0,37,9.0,0.0,0.0,818.5841665082144,0.0,0.0,29031.0,0,10,2,8291,201109135,,,,733.0,1.0,0.0,2.0,0.0,1.0,1.0,3372.2348915915795,0.0,600.0,0.0,0.0,32213.0,0,1,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,818.5841665082144,0.028196898712004904,0.025411609179778798,32213.0,9,5,9,9_0,9_4,9_0_1 -9136,1,36.0,2,222.0,99,111,2,56,62,3.0,1903.7472109666587,499.65347504283835,955.0148609262501,302.3963958210018,0.0,29428.0,50,50,1,8292,201109136,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1104.192112307574,0.0,700.0,0.0,0.0,31776.0,1,1,3,110.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,3660.811942756749,0.12439893784004176,0.11520682095785338,13240.0,3,2,3_1,3_1_1,3_3_1,3_0_0 -9137,1,36.0,3,46.0,1,111,4,0,54,4.0,0.0,0.0,1159.6609025533037,0.0,0.0,17101.0,0,42,2,8293,201109137,,,,604.0,1.0,0.0,3.0,0.0,1.0,1.0,2925.0332210666584,0.0,850.0,0.0,0.0,15884.0,0,1,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1159.6609025533037,0.06781246140888274,0.07300811524510852,15884.0,4,2,4_1,4_0_1,4_4_1,4_1_0 -9138,2,64.0,1,0.0,7,112,2,54,21,10.0,0.0,208.188947934516,1705.3836802254466,0.0,0.0,26404.0,70,50,1,8295,201109138,,,290.0,,2.0,3.0,6.0,0.0,2.0,1.5,1782.3227476624452,0.0,1250.0,0.0,0.0,137956.0,1,1,1,120.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1913.5726281599625,0.07247283094076513,0.013870890922902683,91970.66666666667,10,5,10,10_1,10_1,10_0_0 -9139,2,57.0,2,0.0,6,400,2,52,77,5.0,0.0,0.0,1500.737638598393,0.0,0.0,38034.0,41,71,1,8298,201109139,,,420.0,,1.0,1.0,5.0,1.0,3.0,2.0,2227.9222055898285,0.0,1100.0,0.0,0.0,34220.0,1,5,1,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1500.737638598393,0.03945779141290406,0.04385557097014591,17110.0,5,3,5,5_1,5_0,5_0_0 -9140,2,57.0,1,0.0,5,111,2,43,47,10.0,0.0,0.0,624.8525804346036,0.0,1087.9318608272824,38477.0,10,20,1,8299,201109140,,,355.0,,2.0,4.0,6.0,0.0,2.0,1.5,1183.7634678231648,0.0,458.0,626.0,0.0,62030.0,1,1,1,180.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1712.784441261886,0.04451450064355033,0.027612194764821636,41353.333333333336,10,5,10,10_1,10_3,10_0_0 -9141,2,70.0,3,0.0,5,300,5,71,71,4.0,0.0,69.396315978172,941.3717914844465,229.4041623469669,0.0,38562.0,70,50,1,83,201109141,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1403.7804186460166,0.0,690.0,0.0,0.0,23102.0,5,5,1,158.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1240.1722698095853,0.03216047585212347,0.05368246341483791,15401.333333333334,4,2,4_0,4_1_0,4_0_0,4_0_0 -9142,2,44.0,2,0.0,6,111,2,0,37,9.0,0.0,0.0,238.75371523156252,0.0,3562.7161576612284,49832.0,0,31,1,830,201109142,,,216.0,,1.0,0.0,5.0,2.0,3.0,1.8,2765.9662374979507,0.0,175.0,2050.0,0.0,64158.0,0,1,2,101.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3801.469872892791,0.07628571746855015,0.059251689156345135,35643.333333333336,9,5,9,9_1,9_4,9_0_0 -9143,1,22.0,2,160.0,2,111,4,0,84,1.0,0.0,0.0,286.504458277875,0.0,0.0,12808.0,0,20,2,8300,201109143,,,,238.0,0.0,0.0,2.0,0.0,1.0,1.0,3444.821195216305,0.0,210.0,0.0,0.0,2165.0,0,3,3,22.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,286.504458277875,0.0223691800654181,0.1323346227611432,2165.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -9144,2,48.0,2,0.0,5,111,1,0,68,6.0,0.0,0.0,436.5782221377143,0.0,0.0,24109.0,0,50,2,8302,201109144,,,110.0,234.0,1.0,0.0,3.0,0.0,1.0,1.0,1539.3437648993115,0.0,320.0,0.0,0.0,20437.0,0,1,3,65.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,436.5782221377143,0.018108516410374313,0.02136214816938466,20437.0,6,3,6,6_0,6_2,6_0_0 -9145,2,47.0,3,0.0,1,212,2,11,11,5.0,317.29120182777643,0.0,1287.9057553062573,166.8393907977941,0.0,29660.0,50,71,1,8304,201109145,,,,,2.0,2.0,7.0,0.0,2.0,1.5,2095.781114264381,0.0,944.0,0.0,0.0,26407.0,1,1,1,170.0,3,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1772.0363479318278,0.059744988129866075,0.06710479599847873,17604.666666666668,5,3,5,5_1,5_0,5_1_0 -9146,1,46.0,4,375.0,3,111,2,68,63,3.0,0.0,0.0,757.1903540200983,0.0,868.9551604051776,22179.0,60,71,2,8305,201109146,,,,,2.0,2.0,5.0,3.0,5.0,2.6,3691.7064925604222,0.0,555.0,500.0,0.0,32300.0,1,1,3,100.0,8,6.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1626.145514425276,0.07331915390347968,0.05034506236610761,12423.076923076922,2,1,2_1,2_0_1,2_2_1,2_0_1 -9147,2,56.0,3,0.0,1,300,2,0,67,3.0,0.0,0.0,491.1504999049286,26.06865481215533,0.0,7988.0,0,71,1,8307,201109147,,,,,1.0,3.0,6.0,0.0,1.0,1.0,2201.3463583084376,0.0,360.0,0.0,0.0,14050.0,0,4,2,240.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,517.2191547170839,0.06474951861756184,0.036812751225415226,14050.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -9148,2,48.0,3,0.0,6,111,2,85,63,4.0,0.0,0.0,1800.8851663180715,0.0,417.0984769944853,30290.0,60,33,1,8309,201109148,,,540.0,,1.0,0.0,3.0,2.0,4.0,2.1,2889.346142288,0.0,1320.0,240.0,0.0,31150.0,6,1,2,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2217.9836433125565,0.07322494695650567,0.07120332723314789,14833.333333333332,3,2,3_0,3_1_0,3_4_0,3_0_0 -9149,2,40.0,3,0.0,2,111,4,53,43,8.0,0.0,0.0,1768.141799657743,250.25908619669116,0.0,54568.0,60,33,1,831,201109149,,,250.0,,2.0,0.0,4.0,2.0,4.0,2.3,2797.656480762628,0.0,1296.0,0.0,0.0,58166.0,4,1,2,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2018.4008858544341,0.03698872756660376,0.034700699478293746,25289.565217391308,8,4,8,8_1,8_3,8_0_1 -9150,2,58.0,3,0.0,6,111,2,85,46,4.0,0.0,0.0,2128.318832921357,0.0,0.0,19100.0,50,60,1,8310,201109150,,,784.0,,1.0,1.0,4.0,1.0,3.0,2.0,1044.7100583831343,0.0,1560.0,0.0,0.0,29723.0,6,1,1,80.0,6,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2128.318832921357,0.11143030538855273,0.07160511499247577,14861.5,3,2,3_0,3_1_0,3_2_0,3_0_0 -9151,2,63.0,3,0.0,4,112,6,78,75,7.0,1983.0700114236026,0.0,630.309808211325,111.22626053186274,0.0,21792.0,50,60,1,8312,201109151,,,250.0,,0.0,0.0,5.0,0.0,2.0,1.5,1331.9747624671581,0.0,462.0,0.0,0.0,34580.0,5,5,1,150.0,8,2.0,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2724.6060801667904,0.12502781204876975,0.07879138462020793,23053.333333333332,7,4,7,7_1,7_1,7_0_1 -9152,2,48.0,3,0.0,9,300,4,68,62,4.0,0.0,0.0,1746.3128885508572,0.0,0.0,23532.0,60,50,1,8313,201109152,,,390.0,,2.0,0.0,3.0,1.0,3.0,2.0,1897.6285741597524,0.0,1280.0,0.0,0.0,33215.0,1,1,3,74.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1746.3128885508572,0.07421013464860009,0.05257603156859423,16607.5,4,2,4_0,4_1_0,4_0_0,4_0_0 -9153,2,49.0,3,0.0,3,221,2,56,63,4.0,3172.912018277764,0.0,1162.3895164416645,156.41192887293198,0.0,19452.0,50,60,1,8314,201109153,,,,418.0,2.0,0.0,4.0,1.0,3.0,1.8,2824.5475288391845,0.0,852.0,0.0,0.0,28777.0,1,4,3,68.0,1,1.0,4,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4491.71346359236,0.23091268062884845,0.15608692579464017,15987.222222222223,4,2,4_0,4_1_0,4_1_0,4_0_1 -9154,1,18.0,3,214.0,99,111,3,0,84,3.0,0.0,0.0,845.8703053918215,0.0,0.0,13647.0,0,41,2,8315,201109154,,,,161.0,0.0,0.0,2.0,0.0,1.0,1.0,3559.868914620441,0.0,620.0,0.0,0.0,12353.0,0,3,3,30.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,845.8703053918215,0.06198214299053429,0.06847488912748494,12353.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -9155,2,78.0,3,0.0,8,111,2,77,78,6.0,0.0,0.0,409.2920832541072,0.0,747.3014379484528,25774.0,70,70,8,8318,201109155,,,,496.0,0.0,3.0,3.0,0.0,2.0,1.5,2105.676428137089,0.0,300.0,430.0,0.0,29108.0,5,5,3,68.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1156.59352120256,0.04487442854048886,0.039734558238372956,19405.333333333332,6,3,6,6_0,6_3,6_0_0 -9156,2,86.0,4,0.0,1,300,2,71,71,3.0,2379.684013708323,0.0,508.88649017927327,0.0,0.0,24654.0,70,71,1,832,201109156,,,183.0,,0.0,0.0,3.0,0.0,2.0,1.5,1042.408250674816,0.0,373.0,0.0,0.0,19721.0,5,5,1,75.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2888.5705038875963,0.11716437510698452,0.1464718069006438,13147.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -9157,2,71.0,2,0.0,1,111,2,0,77,8.0,0.0,0.0,391.5560929797625,0.0,1065.3390266567478,13472.0,0,41,1,8320,201109157,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2595.4743310204494,0.0,287.0,613.0,0.0,27298.0,0,5,1,69.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1456.8951196365103,0.10814245246708064,0.05337003149082388,27298.0,8,4,8,8_1,8_3,8_1_0 -9159,2,27.0,3,0.0,1,111,2,0,37,8.0,0.0,0.0,545.7227776721429,0.0,1042.7461924862132,14711.0,0,31,2,8323,201109159,,,,485.0,1.0,0.0,2.0,0.0,1.0,1.0,3631.0574160946935,0.0,400.0,600.0,0.0,28416.0,0,1,3,59.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1588.4689701583561,0.10797831351766407,0.055900512744874585,28416.0,8,4,8,8_0,8_3,8_1_0 -9160,1,56.0,4,250.0,6,111,4,0,56,5.0,0.0,0.0,1784.5134829879073,0.0,0.0,11213.0,0,30,2,8324,201109160,,,,350.0,1.0,0.0,1.0,0.0,1.0,1.0,3093.41107821008,0.0,1308.0,0.0,0.0,17410.0,0,4,3,29.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1784.5134829879073,0.15914683697386134,0.10249933848293552,17410.0,5,3,5,5_0,5_3,5_0_0 -9161,2,53.0,3,0.0,4,112,2,52,67,8.0,1903.7472109666587,0.0,1293.3629830829786,486.61488982689946,0.0,51346.0,71,71,1,8325,201109161,,,800.0,,4.0,1.0,5.0,3.0,6.0,3.3,2871.2773492610563,0.0,948.0,0.0,0.0,82526.0,1,1,2,120.0,7,0.0,5,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3683.7250838765367,0.07174317539587381,0.04463714567380628,25007.878787878788,8,4,8,8_1,8_0,8_0_1 -9162,2,35.0,2,0.0,9,111,2,46,37,9.0,0.0,0.0,1121.4603081162536,0.0,2080.278654009995,30420.0,31,10,1,8328,201109162,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2959.140489144118,0.0,822.0,1197.0,0.0,58909.0,4,1,1,155.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3201.7389621262487,0.10525111644070509,0.054350590947499514,32727.222222222223,9,5,9,9_1,9_3,9_0_0 -9163,2,55.0,3,0.0,8,400,2,46,13,4.0,0.0,0.0,1227.8762497623215,0.0,0.0,34082.0,41,50,1,8329,201109163,,,,,2.0,7.0,8.0,1.0,4.0,2.5,1394.1321577047725,0.0,900.0,0.0,0.0,40206.0,1,1,1,260.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1227.8762497623215,0.036027118413306775,0.0305396271641626,16082.4,4,2,4_0,4_1_0,4_0_0,4_0_0 -9164,2,56.0,3,0.0,4,111,1,85,46,7.0,0.0,0.0,1243.8968979281422,0.0,1279.549159152337,47407.0,12,41,2,833,201109164,,,,,1.0,0.0,3.0,0.0,2.0,1.5,3109.0259458262835,1190.0,458.0,0.0,0.0,32598.0,6,1,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2523.4460570804795,0.05322939770667791,0.0774110699147334,21732.0,6,3,6,6_0,6_4,6_0_1 -9165,1,37.0,1,196.0,9,112,2,56,47,2.0,1348.4876077680499,0.0,613.9381248811608,79.94387475727635,0.0,41090.0,60,50,1,8331,201109165,,,,,2.0,0.0,5.0,4.0,6.0,2.9,1619.3981159984676,0.0,450.0,0.0,0.0,31397.0,1,1,2,106.0,6,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2042.369607406487,0.04970478479937909,0.06504983302246989,10826.551724137931,2,1,2_1,2_1_1,2_0_1,2_0_0 -9166,2,86.0,3,0.0,6,111,1,0,77,6.0,0.0,0.0,1219.6904080972395,0.0,0.0,14132.0,0,70,2,8332,201109166,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3822.8718097930555,0.0,894.0,0.0,0.0,20668.0,0,5,1,60.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1219.6904080972395,0.08630699179855926,0.05901347049047995,20668.0,6,3,6,6_0,6_2,6_0_0 -9167,2,53.0,3,0.0,4,111,2,0,43,6.0,0.0,0.0,341.0767360450893,0.0,782.0596443646599,31335.0,0,50,2,8333,201109167,,,,,1.0,3.0,3.0,0.0,1.0,1.0,2943.2773184450252,0.0,250.0,450.0,0.0,20959.0,0,1,2,68.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1123.136380409749,0.035842871562462075,0.05358730762010349,20959.0,6,3,6,6_0,6_3,6_0_1 -9168,2,27.0,3,0.0,9,111,2,55,43,7.0,2379.684013708323,0.0,491.1504999049286,0.0,0.0,46099.0,43,33,1,8334,201109168,,,,,2.0,0.0,6.0,1.0,3.0,1.8,2823.652870853118,0.0,360.0,0.0,0.0,42420.0,1,1,2,170.0,8,7.0,4,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2870.8345136132516,0.06227541841717286,0.06767643832185884,23566.666666666668,7,4,7,7_1,7_3,7_0_0 -9169,2,57.0,3,0.0,1,120,2,0,67,3.0,1031.1964059402735,0.0,545.7227776721429,86.89551604051776,0.0,16273.0,0,50,1,8338,201109169,,,160.0,400.0,1.0,1.0,3.0,0.0,1.0,1.0,2160.9243558614994,0.0,400.0,0.0,0.0,13860.0,0,1,3,80.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1663.8146996529342,0.10224388248343479,0.12004435062430983,13860.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -9170,2,67.0,2,0.0,7,111,6,77,75,3.0,0.0,0.0,1353.3924886269144,86.89551604051776,0.0,16974.0,60,41,1,8339,201109170,,,,,0.0,1.0,3.0,0.0,2.0,1.5,1844.4372737874905,0.0,992.0,0.0,0.0,21750.0,5,5,1,85.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1440.2880046674322,0.08485259836617369,0.06622013814562906,14500.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -9171,2,44.0,5,0.0,4,111,1,42,56,5.0,0.0,0.0,542.9941637837821,0.0,0.0,14433.0,41,41,2,8341,201109171,,,400.0,,2.0,0.0,3.0,2.0,4.0,2.5,3388.5255631240643,0.0,398.0,0.0,0.0,43880.0,4,1,1,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,542.9941637837821,0.037621711618082324,0.0123745251545985,17552.0,5,3,5,5_0,5_3,5_0_1 -9172,2,68.0,3,0.0,4,221,2,77,75,7.0,1605.4934812485487,0.0,1185.5827344927304,0.0,0.0,28615.0,50,50,1,8342,201109172,,,312.0,,0.0,2.0,4.0,0.0,3.0,2.0,1443.1082389234969,0.0,869.0,0.0,0.0,48567.0,5,5,1,90.0,1,2.0,5,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2791.076215741279,0.09753892069688203,0.05746857363521072,24283.5,7,4,7,7_1,7_1,7_0_1 -9173,1,47.0,4,430.0,2,111,1,0,52,2.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,19337.0,0,50,2,8343,201109173,,,,,1.0,0.0,4.0,3.0,4.0,2.3,929.3817244399572,400.0,0.0,0.0,0.0,23090.0,0,1,3,87.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,638.1826812255044,0.033003189803253064,0.027638920797986334,10039.13043478261,2,1,2_1,2_0_1,2_2_1,2_0_1 -9174,2,48.0,4,0.0,1,120,6,85,21,1.0,0.0,0.0,1109.1815456186305,0.0,1750.0756930560278,51917.0,71,41,1,8345,201109174,,,887.0,,1.0,0.0,8.0,9.0,11.0,4.6,1035.4027334410557,0.0,813.0,1007.0,0.0,28927.0,6,1,1,260.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2859.2572386746583,0.0550736221020987,0.09884389112851863,6288.478260869566,1,1,1_0,1_1_0,1_0_0,1_1_0 -9175,1,31.0,2,60.0,1,111,4,0,37,6.0,0.0,0.0,504.79356934673217,0.0,0.0,16825.0,0,10,2,8349,201109175,,,,400.0,1.0,0.0,1.0,0.0,1.0,1.0,3179.2561564071843,0.0,370.0,0.0,0.0,19301.0,0,1,3,33.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,504.79356934673217,0.030002589559984083,0.026153752103348644,19301.0,6,3,6,6_0,6_3,6_1_0 -9176,2,63.0,3,0.0,7,112,4,0,75,7.0,0.0,0.0,1241.5193192041252,0.0,0.0,27413.0,0,50,1,835,201109176,,,250.0,,0.0,2.0,3.0,0.0,1.0,1.0,2335.298098529092,0.0,910.0,0.0,0.0,22955.0,0,5,1,62.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1241.5193192041252,0.045289436369756145,0.05408491915504793,22955.0,7,4,7,7_1,7_2,7_0_0 -9177,2,65.0,3,0.0,1,400,2,0,75,4.0,0.0,0.0,676.2669014635294,0.0,1397.8268125193597,10507.0,0,70,1,8351,201109177,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2727.425909714067,1300.0,0.0,0.0,0.0,15820.0,0,5,1,100.0,0,0.0,1,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2074.0937139828893,0.1974011339090977,0.13110579734405114,15820.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -9178,2,65.0,3,0.0,1,221,2,71,71,8.0,6231.599203897529,0.0,228.8903358799638,521.3730962431066,473.110613468091,41500.0,70,50,1,8354,201109178,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1236.7978284652847,440.0,0.0,0.0,0.0,38840.0,5,5,1,120.0,1,3.0,3,7,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,7454.97324948869,0.1796379096262335,0.1919406088951774,25893.333333333332,8,4,8,8_1,8_1,8_1_0 -9179,2,37.0,4,0.0,3,112,2,0,33,5.0,0.0,0.0,2169.248041246768,0.0,0.0,25772.0,0,10,1,8355,201109179,,,340.0,,1.0,0.0,4.0,2.0,3.0,1.6,1148.1412032372539,0.0,1590.0,0.0,0.0,30196.0,0,1,3,120.0,8,2.0,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2169.248041246768,0.08417072952222443,0.07183892042809538,18872.5,5,3,5,5_1,5_1,5_0_1 -9180,2,33.0,3,0.0,1,112,6,63,54,5.0,198.30700114236026,534.3516330319244,1023.230208135268,132.081184381587,0.0,28641.0,60,42,1,8356,201109180,,,486.0,,2.0,0.0,2.0,0.0,2.0,1.5,2090.2840606746795,0.0,750.0,0.0,0.0,28100.0,4,1,2,112.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1887.9700266911398,0.06591843953392479,0.06718754543384839,18733.333333333332,5,3,5,5_1,5_0,5_1_0 -9181,2,55.0,2,0.0,5,120,4,75,22,6.0,0.0,346.98157989085996,184.18143746434822,0.0,0.0,27480.0,50,50,1,8357,201109181,,,400.0,,1.0,2.0,6.0,0.0,2.0,1.5,1457.1509570757132,0.0,135.0,0.0,0.0,29946.0,5,1,1,160.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,531.1630173552082,0.01932907632296973,0.017737361161931753,19964.0,6,3,6,6_1,6_0,6_0_0 -9182,2,54.0,2,0.0,1,112,2,43,43,10.0,0.0,485.77421184720396,2319.3218051066074,0.0,0.0,59240.0,50,33,1,8358,201109182,,,526.0,,2.0,3.0,5.0,1.0,3.0,2.0,1765.8933811935424,0.0,1700.0,0.0,0.0,92053.0,1,1,1,120.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2805.096016953811,0.047351384486053534,0.030472619218860995,46026.5,10,5,10,10_1,10_0,10_1_0 -9183,2,65.0,3,0.0,4,120,2,77,72,6.0,0.0,159.6115267497956,455.67851935623935,0.0,1626.6840602784926,40548.0,71,60,1,8359,201109183,,,220.0,,0.0,3.0,4.0,0.0,2.0,1.5,5277.318436099185,0.0,334.0,936.0,0.0,31091.0,5,5,1,68.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2241.9741063845277,0.055291854256301856,0.07211006742737537,20727.333333333332,6,3,6,6_1,6_1,6_0_1 -9184,1,43.0,4,205.0,5,111,1,38,52,2.0,0.0,0.0,818.5841665082144,90.37133668213848,0.0,16972.0,31,43,2,836,201109184,,,,184.0,2.0,0.0,4.0,2.0,4.0,2.3,3076.355527790129,0.0,600.0,0.0,0.0,24380.0,4,1,3,85.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,908.9555031903528,0.05355618095630172,0.037282834421261395,10600.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -9185,2,83.0,1,0.0,4,112,4,86,77,10.0,2538.3296146222115,0.0,1485.7302622124091,0.0,0.0,29007.0,20,60,1,8360,201109185,,,744.0,,0.0,2.0,7.0,0.0,2.0,1.5,2284.900151817831,0.0,1089.0,0.0,0.0,59114.0,5,5,1,150.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4024.059876834621,0.1387271995323412,0.06807287405410936,39409.333333333336,10,5,10,10_1,10_0,10_0_1 -9186,2,80.0,3,0.0,5,111,1,75,78,6.0,0.0,0.0,750.3688192991965,0.0,0.0,25143.0,60,50,2,8362,201109186,,,,449.0,0.0,0.0,3.0,0.0,2.0,1.5,2692.9197235853762,0.0,550.0,0.0,0.0,31945.0,5,5,3,60.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,750.3688192991965,0.02984404483550875,0.02348939800592257,21296.666666666668,6,3,6,6_0,6_4,6_0_0 -9187,2,53.0,2,0.0,5,111,2,52,62,10.0,0.0,333.10231669522557,982.3009998098572,0.0,1911.7013528913908,46933.0,60,50,1,8365,201109187,,,230.0,,2.0,2.0,4.0,0.0,2.0,1.5,1048.213058925041,0.0,720.0,1100.0,0.0,56636.0,1,1,1,100.0,6,5.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3227.1046693964736,0.0687598207955271,0.056979742026210776,37757.333333333336,10,5,10,10_1,10_2,10_0_0 -9188,2,59.0,4,0.0,1,112,2,78,78,5.0,0.0,0.0,963.2007025913322,2407.005794322342,0.0,18393.0,71,50,1,8367,201109188,,,,,0.0,5.0,5.0,0.0,2.0,1.5,2660.8673834445217,0.0,706.0,0.0,0.0,28363.0,5,5,1,150.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3370.206496913674,0.1832331048177934,0.11882404882818016,18908.666666666668,5,3,5,5_1,5_0,5_1_0 -9189,2,61.0,5,0.0,4,111,2,0,77,6.0,0.0,0.0,562.0944610023072,0.0,1647.5389841282167,11678.0,0,70,2,8368,201109189,,,140.0,,0.0,2.0,4.0,0.0,1.0,1.0,2291.423832779139,0.0,412.0,948.0,0.0,19960.0,0,5,3,65.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2209.633445130524,0.1892133451901459,0.11070307841335289,19960.0,6,3,6,6_0,6_2,6_0_1 -9190,2,33.0,3,0.0,1,112,2,56,46,4.0,1167.6316227262173,0.0,688.9750068110804,86.89551604051776,0.0,32748.0,20,12,1,837,201109190,,,,,2.0,0.0,8.0,2.0,4.0,2.1,2483.5196164411195,0.0,505.0,0.0,0.0,34371.0,1,1,2,127.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1943.5021455778156,0.05934720122077121,0.05654482399632875,16367.142857142857,4,2,4_0,4_1_0,4_0_0,4_1_0 -9191,2,65.0,3,0.0,7,112,4,46,74,6.0,317.29120182777643,0.0,3069.6906244058036,264.162368763174,0.0,50815.0,50,50,1,8370,201109191,,,250.0,,1.0,1.0,7.0,1.0,3.0,2.0,912.3120808113046,0.0,2250.0,0.0,0.0,38501.0,1,5,1,180.0,9,1.0,4,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3651.1441949967543,0.07185170117085023,0.09483245097521505,19250.5,6,3,6,6_1,6_1,6_0_0 -9192,0,47.0,4,0.0,3,111,1,0,46,1.0,0.0,0.0,350.0981728345811,0.0,723.6441883273301,27694.0,0,60,2,8372,201109192,,,,,1.0,1.0,4.0,1.0,2.0,1.3,3025.649164790385,673.0,0.0,0.0,0.0,4773.0,0,4,5,84.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1073.742361161911,0.038771660329382215,0.22496173500144795,3671.5384615384614,1,1,1_0,1_0_0,1_4_0,1_0_1 -9193,2,67.0,3,0.0,3,111,2,0,75,9.0,0.0,0.0,245.5752499524643,0.0,451.85668341069237,11884.0,0,20,2,8373,201109193,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3194.990639311785,0.0,180.0,260.0,0.0,29148.0,0,5,1,45.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,697.4319333631566,0.058686631888518734,0.023927265450911096,29148.0,9,5,9,9_0,9_3,9_0_1 -9194,1,20.0,3,170.0,9,111,4,55,52,3.0,0.0,0.0,1031.41604980035,0.0,0.0,30123.0,31,33,2,8375,201109194,,,,407.0,2.0,0.0,3.0,0.0,2.0,1.5,3543.2609191686192,0.0,756.0,0.0,0.0,21664.0,1,1,3,67.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1031.41604980035,0.03424015037680012,0.04760967733568824,14442.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0 -9195,2,63.0,2,0.0,7,111,4,0,72,4.0,0.0,0.0,1053.2449609072357,0.0,0.0,19027.0,0,50,2,8376,201109195,,,,,0.0,1.0,3.0,0.0,1.0,1.0,5945.5526638818565,0.0,772.0,0.0,0.0,16373.0,0,5,1,68.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1053.2449609072357,0.05535528254098049,0.0643281598306502,16373.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -9196,2,59.0,3,0.0,8,112,2,48,74,5.0,1903.7472109666587,471.89494865156956,764.011888741,364.9611673701746,0.0,41998.0,70,44,1,8379,201109196,,,360.0,,1.0,2.0,5.0,0.0,2.0,1.5,2950.484435849666,0.0,560.0,0.0,0.0,27949.0,4,5,2,150.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3504.6152157294027,0.08344719309799045,0.12539322393392976,18632.666666666668,5,3,5,5_1,5_0,5_0_0 -9197,2,71.0,3,0.0,3,111,5,0,78,2.0,0.0,0.0,791.2980276246072,194.64595593075978,0.0,9721.0,0,71,1,838,201109197,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2903.153370904095,0.0,580.0,0.0,0.0,10014.0,0,5,1,68.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,985.943983555367,0.1014241316279567,0.09845655917269493,10014.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -9198,2,54.0,3,0.0,1,300,4,0,35,7.0,0.0,0.0,1076.6744514358386,0.0,392.4667588996664,30876.0,0,20,1,8381,201109198,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2133.619547070756,365.0,650.0,0.0,0.0,23940.0,0,1,3,80.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1469.141210335505,0.047581979865769695,0.06136763618778217,23940.0,7,4,7,7_1,7_0,7_1_0 -9199,2,55.0,3,0.0,8,112,2,75,54,7.0,0.0,0.0,2060.1034857123395,0.0,0.0,20025.0,50,60,1,8382,201109199,,,,,1.0,2.0,6.0,0.0,2.0,1.5,1294.1529136202746,0.0,1510.0,0.0,0.0,33026.0,5,4,1,180.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2060.1034857123395,0.10287657856241396,0.06237823186920425,22017.333333333332,7,4,7,7_1,7_1,7_0_0 -9200,2,56.0,2,0.0,4,112,2,21,62,7.0,0.0,638.4461069991823,442.03544991443573,147.7223772688802,0.0,13504.0,70,71,1,8385,201109200,,,153.0,,2.0,5.0,4.0,0.0,2.0,1.5,2920.0342379761087,0.0,324.0,0.0,0.0,35698.0,1,1,2,70.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1228.2039341824982,0.09095112071849068,0.034405399019062644,23798.666666666668,7,4,7,7_1,7_0,7_0_1 -9201,2,59.0,1,0.0,4,300,2,0,13,2.0,1903.7472109666587,0.0,654.8673332065715,48.661488982689946,0.0,12513.0,0,71,1,8386,201109201,,,45.0,,1.0,3.0,4.0,0.0,1.0,1.0,3466.228486160867,0.0,480.0,0.0,0.0,10647.0,0,1,1,80.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2607.2760331559202,0.20836538265451293,0.24488363230543067,10647.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -9202,2,42.0,3,0.0,9,112,4,54,65,8.0,0.0,0.0,1732.6698191090536,114.70208117348345,0.0,31741.0,31,50,1,8388,201109202,,,,,2.0,1.0,4.0,1.0,3.0,1.8,2733.746945494388,0.0,1270.0,0.0,0.0,45645.0,1,1,2,109.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1847.3719002825371,0.05820143978710617,0.040472601605488816,25358.333333333332,8,4,8,8_1,8_0,8_0_0 -9203,2,65.0,3,0.0,5,400,2,77,72,6.0,0.0,0.0,586.6519859975537,0.0,1564.1192887293198,28676.0,50,50,1,839,201109203,,,190.0,,0.0,2.0,5.0,0.0,2.0,1.5,1606.9897805332764,0.0,430.0,900.0,0.0,29970.0,5,5,1,125.0,0,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2150.7712747268733,0.07500248551844306,0.0717641399641933,19980.0,6,3,6,6_1,6_1,6_0_0 -9204,2,79.0,1,0.0,5,111,1,0,74,9.0,0.0,0.0,354.7198054868929,0.0,0.0,23091.0,0,30,2,8390,201109204,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3009.0794847791167,0.0,260.0,0.0,0.0,34127.0,0,5,1,75.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,354.7198054868929,0.015361820860373864,0.010394110396076212,34127.0,9,5,9,9_0,9_2,9_0_0 -9205,2,55.0,2,0.0,6,111,4,77,77,10.0,0.0,0.0,1780.4205621553663,191.17013528913907,0.0,45602.0,60,60,1,8394,201109205,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2255.7568752564102,0.0,1305.0,0.0,0.0,56560.0,5,5,1,113.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1971.5906974445054,0.043234741841246115,0.03485839281196085,37706.666666666664,10,5,10,10_1,10_2,10_0_0 -9206,2,45.0,2,0.0,7,221,5,52,38,8.0,951.8736054833294,666.2046333904511,864.9706026103465,90.37133668213848,0.0,62054.0,50,20,1,8396,201109206,,,181.0,,2.0,0.0,6.0,2.0,4.0,2.1,3104.759117855186,0.0,634.0,0.0,0.0,54902.0,1,1,2,107.0,1,2.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2573.4201781662655,0.0414706574623113,0.04687297690733062,26143.809523809523,8,4,8,8_1,8_1,8_0_0 -9207,2,65.0,2,0.0,5,111,2,78,75,7.0,0.0,0.0,585.2876790533733,0.0,1527.6231719923023,40055.0,70,50,1,8398,201109207,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1131.2274853694005,0.0,429.0,879.0,0.0,35416.0,5,5,1,99.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2112.9108510456754,0.05275023969655911,0.05965978233131001,23610.666666666668,7,4,7,7_1,7_3,7_0_0 -9208,2,72.0,2,0.0,1,111,4,77,78,6.0,0.0,0.0,1910.0297218525002,0.0,0.0,24513.0,70,70,1,84,201109208,,,252.0,,0.0,2.0,4.0,0.0,2.0,1.5,1717.573062199089,0.0,1400.0,0.0,0.0,30397.0,5,5,1,70.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1910.0297218525002,0.07791905200720027,0.0628361259944238,20264.666666666668,6,3,6,6_1,6_4,6_1_0 -9209,2,71.0,3,0.0,3,111,1,77,78,6.0,0.0,0.0,992.4512807184633,0.0,913.3763555305018,29046.0,70,70,2,8400,201109209,,,,241.0,0.0,2.0,3.0,0.0,2.0,1.5,2287.8127799161434,725.0,451.0,77.0,0.0,30701.0,5,5,3,78.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1905.827636248965,0.06561411678885096,0.06207705404543712,20467.333333333332,6,3,6,6_0,6_4,6_0_1 -9210,2,66.0,3,0.0,5,221,2,0,77,8.0,2141.715612337491,0.0,712.1682248621465,187.69431464751835,0.0,17572.0,0,50,1,8401,201109210,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3631.872946598457,0.0,522.0,0.0,0.0,28829.0,0,5,5,110.0,1,2.0,1,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3041.578151847156,0.17309231458269725,0.10550411571151118,28829.0,8,4,8,8_1,8_1,8_0_0 -9211,2,60.0,1,0.0,4,111,2,52,37,10.0,0.0,0.0,926.5817853649955,0.0,2224.2483154479014,74984.0,60,50,1,8403,201109211,,,,,2.0,1.0,6.0,0.0,2.0,1.5,2939.626814954622,740.0,397.0,822.0,0.0,83652.0,1,1,1,110.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3150.830100812897,0.042020032284392626,0.0376659267060309,55768.0,10,5,10,10_1,10_3,10_0_1 -9212,2,42.0,2,0.0,8,112,6,55,38,8.0,713.905204112497,0.0,1364.3069441803573,0.0,0.0,29884.0,41,20,1,8404,201109212,,,600.0,,2.0,0.0,6.0,1.0,3.0,1.8,1361.841257578962,0.0,1000.0,0.0,0.0,48595.0,1,1,2,120.0,9,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2078.212148292854,0.06954263647078217,0.04276596662810689,26997.222222222223,8,4,8,8_1,8_1,8_0_0 -9213,2,70.0,3,0.0,5,300,2,86,78,5.0,4045.4628233041494,582.9290542166448,1214.233180320518,0.0,0.0,26330.0,71,70,1,8405,201109213,,,216.0,,0.0,4.0,4.0,0.0,2.0,1.5,1659.6865688589237,0.0,890.0,0.0,0.0,25753.0,5,5,1,100.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5842.625057841312,0.22189992623780144,0.2268716288526118,17168.666666666668,5,3,5,5_1,5_0,5_0_0 -9214,0,71.0,4,0.0,1,400,2,0,71,1.0,0.0,138.792631956344,1105.0886247860894,208.54923849724264,0.0,10975.0,0,71,1,8406,201109214,,,160.0,,0.0,1.0,6.0,0.0,1.0,1.0,3026.377641102081,0.0,810.0,0.0,0.0,8535.0,0,5,5,130.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1452.430495239676,0.13233990845008436,0.17017346165666972,8535.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -9215,2,66.0,3,0.0,7,111,2,75,78,8.0,0.0,0.0,532.0797082303393,0.0,903.7133668213847,34552.0,60,50,2,8407,201109215,,,,492.0,0.0,4.0,3.0,0.0,2.0,1.5,2783.98499764439,0.0,390.0,520.0,0.0,43255.0,5,5,3,72.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1435.793075051724,0.041554557624789414,0.03319369032601373,28836.666666666668,8,4,8,8_0,8_4,8_0_0 -9216,1,44.0,2,120.0,6,112,2,63,55,6.0,0.0,0.0,2455.752499524643,139.0328256648284,0.0,37759.0,50,50,1,8408,201109216,,,86.0,,2.0,0.0,5.0,3.0,5.0,2.6,898.1432863848164,0.0,1800.0,0.0,0.0,52107.0,1,1,2,150.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2594.7853251894717,0.0687196516112575,0.049797250373068334,20041.153846153844,6,3,6,6_1,6_0,6_0_0 -9217,1,23.0,5,260.0,99,111,2,0,62,2.0,0.0,0.0,120.6876316457991,0.0,249.45832346499344,5171.0,0,50,1,841,201109217,,,,,1.0,0.0,2.0,1.0,2.0,1.5,1573.689886014971,232.0,0.0,0.0,0.0,15194.0,0,1,3,50.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,370.14595511079256,0.07158111682668586,0.02436132388513838,10129.333333333334,2,1,2_1,2_1_1,2_3_1,2_0_0 -9218,2,70.0,3,0.0,3,400,2,71,71,10.0,0.0,0.0,0.0,243.30744491344973,0.0,75234.0,70,50,1,8412,201109218,,,,,0.0,0.0,6.0,0.0,2.0,1.5,1033.29239962143,0.0,0.0,0.0,0.0,77908.0,5,5,1,150.0,0,0.0,3,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,243.30744491344973,0.003234009156943001,0.0031230097668204773,51938.666666666664,10,5,10,10_1,10_0,10_0_1 -9219,1,65.0,3,247.0,2,221,1,85,78,2.0,0.0,0.0,163.71683330164288,260.6865481215533,0.0,14315.0,71,71,2,8413,201109219,,,,22.0,0.0,5.0,3.0,2.0,4.0,2.1,7815.079298599795,0.0,120.0,0.0,0.0,22644.0,6,5,3,80.0,1,3.0,4,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,424.40338142319615,0.029647459407837664,0.018742421013213044,10782.857142857143,2,1,2_1,2_0_1,2_1_1,2_0_1 -9220,0,48.0,3,0.0,6,111,2,85,85,1.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,24149.0,50,71,1,8414,201109220,,,,,1.0,1.0,3.0,3.0,6.0,3.3,1777.350702687045,700.0,0.0,0.0,0.0,25540.0,6,7,5,60.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1116.8196921446327,0.04624703681910773,0.043728257327511066,7739.39393939394,1,1,1_0,1_1_0,1_3_0,1_0_0 -9221,2,56.0,1,0.0,6,112,2,52,47,9.0,0.0,0.0,3137.9059716148217,104.27461924862132,0.0,63099.0,41,42,1,8415,201109221,,,430.0,,2.0,2.0,5.0,0.0,2.0,1.5,4062.3787477234873,0.0,2300.0,0.0,0.0,50113.0,1,1,1,137.0,5,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3242.1805908634433,0.05138244014744201,0.06469739570298014,33408.666666666664,9,5,9,9_1,9_0,9_0_0 -9222,2,65.0,3,0.0,5,111,1,0,74,10.0,0.0,0.0,491.1504999049286,0.0,0.0,64594.0,0,12,2,8417,201109222,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3470.1193319695194,0.0,360.0,0.0,0.0,67742.0,0,5,5,115.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,491.1504999049286,0.007603655136776305,0.007250309998301329,67742.0,10,5,10,10_0,10_4,10_0_0 -9223,2,81.0,2,0.0,3,111,2,77,74,6.0,0.0,0.0,368.36287492869644,0.0,3809.4994232162985,24505.0,70,50,1,8418,201109223,,,310.0,,0.0,2.0,4.0,0.0,2.0,1.5,1733.792244523137,0.0,270.0,2192.0,0.0,30178.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4177.862298144995,0.17049019784309305,0.13844066201023908,20118.666666666668,6,3,6,6_1,6_4,6_0_1 -9224,2,44.0,2,0.0,9,112,2,21,53,6.0,0.0,693.9631597817199,2182.8911106885716,0.0,0.0,62862.0,41,50,1,8419,201109224,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.3,4765.720751257099,0.0,1600.0,0.0,0.0,49308.0,1,1,2,148.0,9,1.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2876.8542704702913,0.04576459976568183,0.05834457431796648,21438.26086956522,6,3,6,6_1,6_1,6_0_0 -9225,1,87.0,3,245.0,1,112,4,0,86,4.0,0.0,0.0,1146.0178331115,26.06865481215533,0.0,3860.0,0,71,2,842,201109225,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3085.595744160519,0.0,840.0,0.0,0.0,14929.0,0,6,3,40.0,6,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,1172.0864879236553,0.3036493492030195,0.07851071658675432,14929.0,3,2,3_1,3_0_1,3_0_1,3_1_0 -9226,2,77.0,2,0.0,1,112,6,0,77,2.0,1031.1964059402735,0.0,191.00297218525,79.94387475727635,0.0,7874.0,0,50,1,8420,201109226,,,100.0,,0.0,0.0,4.0,0.0,1.0,1.0,1627.7201481554287,0.0,140.0,0.0,0.0,10840.0,0,5,1,100.0,9,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1302.1432528827997,0.1653725238611633,0.12012391631760146,10840.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -9227,1,48.0,4,315.0,3,111,4,62,62,2.0,0.0,0.0,1500.737638598393,0.0,0.0,20840.0,60,50,2,8421,201109227,,,,295.0,2.0,0.0,3.0,3.0,5.0,2.6,2641.152685231278,0.0,1100.0,0.0,0.0,26179.0,1,1,3,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1500.737638598393,0.07201236269665993,0.05732601087124768,10068.846153846154,2,1,2_1,2_0_1,2_4_1,2_0_1 -9228,2,47.0,3,0.0,3,111,1,62,56,5.0,0.0,0.0,504.79356934673217,0.0,243.30744491344973,23514.0,71,71,2,8422,201109228,,,,382.0,2.0,0.0,4.0,3.0,5.0,2.6,3013.7178890076907,0.0,370.0,140.0,0.0,48410.0,1,1,3,71.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,748.101014260182,0.03181513201752922,0.015453439666601568,18619.23076923077,5,3,5,5_0,5_4,5_0_1 -9229,2,26.0,4,0.0,7,111,2,0,46,9.0,0.0,0.0,122.78762497623215,0.0,0.0,11763.0,0,31,2,8423,201109229,,,,432.0,1.0,0.0,2.0,0.0,1.0,1.0,3421.3371905252816,0.0,90.0,0.0,0.0,34441.0,0,1,3,40.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,122.78762497623215,0.010438461699926222,0.003565158531292127,34441.0,9,5,9,9_0,9_3,9_0_0 -9230,2,58.0,3,0.0,6,112,5,77,75,8.0,0.0,832.755791738064,1091.4455553442858,52.13730962431066,0.0,57213.0,41,60,1,8424,201109230,,,350.0,,0.0,3.0,5.0,0.0,2.0,1.5,2770.6151470743193,0.0,800.0,0.0,0.0,38478.0,5,5,1,110.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1976.3386567066605,0.03454352431626834,0.051362821786648485,25652.0,8,4,8,8_1,8_1,8_0_0 -9231,2,65.0,3,0.0,99,111,2,75,77,7.0,0.0,0.0,559.3658471139465,0.0,1319.0739334950597,68321.0,60,70,1,8425,201109231,,,151.0,,0.0,3.0,4.0,0.0,2.0,1.5,2087.6338372353125,0.0,410.0,759.0,0.0,33772.0,5,5,1,75.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1878.4397806090062,0.027494325033430515,0.05562121818693019,22514.666666666668,7,4,7,7_1,7_2,7_0_0 -9232,2,94.0,1,0.0,6,111,1,0,75,9.0,0.0,0.0,1541.5107713209495,0.0,535.4751943343393,26734.0,0,31,2,8426,201109232,,,180.0,,0.0,3.0,4.0,0.0,1.0,1.0,3579.3464716989106,498.0,940.0,0.0,0.0,35609.0,0,5,1,90.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2076.985965655289,0.07769080443088536,0.05832755667542725,35609.0,9,5,9,9_0,9_2,9_0_0 -9233,2,56.0,2,0.0,1,400,4,56,69,6.0,0.0,0.0,2071.017941265782,187.69431464751835,0.0,15541.0,50,71,1,8429,201109233,,,,,2.0,3.0,5.0,0.0,2.0,1.5,2499.6966251671897,0.0,1518.0,0.0,0.0,29990.0,1,1,1,140.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2258.7122559133004,0.14533892644703045,0.07531551370167724,19993.333333333332,6,3,6,6_1,6_0,6_1_0 -9234,2,25.0,3,0.0,2,111,1,68,45,7.0,0.0,0.0,425.66376658427146,0.0,380.6023602574678,16273.0,43,31,2,843,201109234,,,,312.0,2.0,0.0,3.0,0.0,2.0,1.5,4626.166772474811,0.0,312.0,219.0,0.0,32665.0,4,1,3,51.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,806.2661268417393,0.04954625003636325,0.024682875458188865,21776.666666666668,6,3,6,6_0,6_4,6_0_1 -9235,2,48.0,4,0.0,7,112,2,67,68,5.0,1586.456009138882,0.0,1338.3851122409305,291.9689338961397,0.0,28684.0,71,71,1,8430,201109235,,,660.0,,2.0,2.0,5.0,2.0,4.0,2.1,4494.146699685386,0.0,981.0,0.0,0.0,38440.0,4,1,3,88.0,9,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3216.8100552759524,0.1121464947453616,0.08368392443485828,18304.761904761905,5,3,5,5_1,5_0,5_0_0 -9236,2,35.0,3,0.0,6,111,1,0,68,4.0,0.0,0.0,47.7507430463125,0.0,0.0,13078.0,0,43,2,8431,201109236,,,,314.0,1.0,0.0,3.0,0.0,1.0,1.0,2684.6001507446394,0.0,35.0,0.0,0.0,16558.0,0,1,3,51.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,47.7507430463125,0.0036512267201645895,0.002883847266959325,16558.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -9237,2,50.0,2,0.0,1,111,2,0,38,10.0,0.0,0.0,382.0059443705,0.0,2398.31624271829,36525.0,0,31,1,8432,201109237,,,,,1.0,3.0,3.0,0.0,1.0,1.0,1956.3613273173914,0.0,280.0,1380.0,0.0,37429.0,0,1,3,90.0,6,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2780.32218708879,0.0761210728840189,0.07428256664855566,37429.0,9,5,9,9_1,9_2,9_1_0 -9238,1,52.0,4,36.0,1,300,1,0,55,2.0,0.0,13.8792631956344,679.4248582018179,48.661488982689946,0.0,16957.0,0,70,1,8434,201109238,,,,,1.0,4.0,5.0,0.0,1.0,1.0,1555.7500842286292,0.0,498.0,0.0,0.0,11342.0,0,4,3,74.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,741.9656103801422,0.043755712117717886,0.0654175286880746,11342.0,2,1,2_1,2_1_1,2_0_1,2_1_0 -9239,2,50.0,4,0.0,1,221,2,52,62,4.0,0.0,0.0,61.393812488116076,0.0,3336.7878159558823,26103.0,50,50,2,8436,201109239,,,,450.0,2.0,0.0,5.0,3.0,5.0,2.6,2453.9878518354467,0.0,45.0,1920.0,0.0,41661.0,1,1,3,80.0,1,3.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,3398.1816284439983,0.13018356619714203,0.0815674522561628,16023.461538461537,4,2,4_0,4_0_0,4_1_0,4_1_0 -9240,1,19.0,3,28.0,4,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,14078.0,0,31,2,8437,201109240,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3146.3495262495453,0.0,0.0,0.0,0.0,341.0,0,3,3,18.0,8,6.0,1,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0.0,0.0,0.0,341.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -9241,2,38.0,3,0.0,7,112,2,43,38,8.0,0.0,0.0,2892.3307216623575,0.0,0.0,51825.0,10,12,1,8438,201109241,,,1787.0,,2.0,0.0,4.0,1.0,3.0,1.8,5073.895229353855,0.0,2120.0,0.0,0.0,48302.0,1,1,2,97.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2892.3307216623575,0.05580956529980429,0.059880144127828196,26834.444444444445,8,4,8,8_1,8_1,8_0_0 -9242,2,24.0,3,0.0,99,112,2,0,62,2.0,0.0,0.0,682.1534720901786,0.0,0.0,5858.0,0,50,1,8439,201109242,,,80.0,,1.0,0.0,3.0,0.0,1.0,1.0,3621.4605751954546,0.0,500.0,0.0,0.0,11255.0,0,1,3,90.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,682.1534720901786,0.11644818574431182,0.0606089268849559,11255.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -9243,0,46.0,3,0.0,6,111,6,35,22,4.0,0.0,0.0,1582.5960552492145,0.0,0.0,49936.0,31,43,1,844,201109243,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,4596.907594074727,0.0,1160.0,0.0,0.0,31356.0,1,1,5,96.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1582.5960552492145,0.03169248748897017,0.05047187317416808,14931.42857142857,3,2,3_0,3_1_0,3_2_0,3_0_0 -9244,1,29.0,4,156.0,1,300,5,0,35,9.0,0.0,249.82673752141918,0.0,34.7582064162071,0.0,16679.0,0,20,1,8440,201109244,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2007.9290800460228,0.0,0.0,0.0,0.0,34072.0,0,1,3,200.0,0,0.0,1,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,284.5849439376263,0.017062470408155544,0.008352457852125683,34072.0,9,5,9,9_1,9_0,9_1_0 -9245,2,59.0,3,0.0,1,211,4,55,75,6.0,0.0,0.0,3594.9487979152414,99.06088828619025,0.0,24895.0,42,50,1,8441,201109245,,,281.0,,1.0,3.0,4.0,2.0,4.0,2.3,1612.361859201905,0.0,2635.0,0.0,0.0,45040.0,1,5,3,66.0,2,3.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3694.0096862014316,0.14838359856201774,0.08201620084816677,19582.608695652176,6,3,6,6_1,6_1,6_1_0 -9246,2,45.0,5,0.0,1,111,2,52,52,5.0,63.458240365555284,0.0,828.1343151174768,0.0,2259.283417053462,22851.0,50,60,1,8443,201109246,,,619.0,,2.0,0.0,5.0,2.0,4.0,2.3,1430.7255416682976,0.0,607.0,1300.0,0.0,38608.0,1,1,1,70.0,9,7.0,4,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3150.8759725364944,0.13788788116653514,0.08161199680212636,16786.08695652174,4,2,4_0,4_1_0,4_3_0,4_1_0 -9247,2,28.0,4,0.0,1,111,1,0,63,2.0,0.0,0.0,368.36287492869644,0.0,0.0,37644.0,0,50,2,8444,201109247,,,,620.0,1.0,0.0,1.0,0.0,1.0,1.0,4381.209325419944,0.0,270.0,0.0,0.0,9300.0,0,4,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,368.36287492869644,0.009785433931800458,0.039608911282655535,9300.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -9248,2,72.0,3,0.0,2,221,2,0,77,4.0,0.0,0.0,491.1504999049286,0.0,1506.768248142578,19149.0,0,70,1,8445,201109248,,,240.0,,0.0,4.0,5.0,0.0,1.0,1.0,1068.0542500696333,0.0,360.0,867.0,0.0,14830.0,0,5,1,91.0,1,2.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1997.9187480475066,0.10433540905778405,0.13472142603152437,14830.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -9249,1,42.0,4,150.0,3,112,2,54,52,1.0,3172.912018277764,0.0,1146.0178331115,156.41192887293198,0.0,29748.0,50,50,1,8446,201109249,,,,,2.0,0.0,6.0,4.0,6.0,2.9,844.1321216596506,0.0,840.0,0.0,0.0,26956.0,4,1,2,110.0,8,2.0,4,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,4475.341780262196,0.15044177021185276,0.1660239568282459,9295.172413793103,1,1,1_1,1_1_1,1_1_1,1_0_1 -9250,1,58.0,4,180.0,5,111,1,0,67,4.0,0.0,0.0,259.2183193942679,0.0,156.41192887293198,11864.0,0,70,2,8447,201109250,,,,26.0,1.0,0.0,1.0,0.0,1.0,1.0,2609.848494608803,0.0,190.0,90.0,0.0,15770.0,0,1,3,32.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,415.6302482671999,0.03503289348172622,0.026355754487457188,15770.0,4,2,4_1,4_0_1,4_4_1,4_0_0 -9251,0,50.0,3,0.0,1,300,2,0,63,4.0,824.9571247522188,0.0,493.8791137932893,57.351040586741725,0.0,13826.0,0,50,1,8448,201109251,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1892.9546720227797,0.0,362.0,0.0,0.0,16590.0,0,1,5,63.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1376.1872791322496,0.09953618393839503,0.08295281971864073,16590.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -9252,2,42.0,2,0.0,6,111,2,38,47,8.0,0.0,0.0,682.1534720901786,0.0,1564.1192887293198,35043.0,50,42,1,845,201109252,,,500.0,,3.0,2.0,5.0,2.0,4.0,2.3,2981.7179662227027,0.0,500.0,900.0,0.0,65327.0,1,1,2,100.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2246.272760819498,0.06410046973202917,0.0343850591764431,28403.04347826087,8,4,8,8_1,8_3,8_0_0 -9253,2,53.0,2,0.0,6,111,4,54,37,9.0,0.0,0.0,1773.5990274344645,0.0,0.0,21070.0,50,42,1,8450,201109253,,,200.0,,2.0,2.0,5.0,0.0,2.0,1.5,2674.4153185872624,0.0,1300.0,0.0,0.0,45777.0,1,1,1,130.0,4,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1773.5990274344645,0.08417650818388536,0.03874432635241419,30518.0,9,5,9,9_1,9_1,9_0_0 -9254,2,49.0,3,0.0,1,112,2,0,46,3.0,0.0,0.0,272.86138883607146,0.0,2085.4923849724264,28622.0,0,50,1,8453,201109254,,,230.0,,1.0,2.0,5.0,0.0,1.0,1.0,4556.893693825872,0.0,200.0,1200.0,0.0,13597.0,0,4,3,130.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2358.353773808498,0.0823965402071308,0.17344662600636154,13597.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -9255,2,60.0,2,0.0,1,111,2,74,34,10.0,0.0,0.0,1031.879278592,0.0,2189.1769243263884,58895.0,20,20,2,8455,201109255,,,200.0,,1.0,0.0,3.0,0.0,2.0,1.5,3043.629152290729,987.0,380.0,649.0,0.0,75614.0,5,1,1,65.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,3221.0562029183884,0.05469150527070869,0.04259867488716889,50409.333333333336,10,5,10,10_0,10_3,10_1_0 -9256,2,32.0,2,0.0,6,112,4,56,34,5.0,0.0,0.0,1418.8792219475715,208.54923849724264,0.0,98078.0,41,31,1,8458,201109256,,,,,2.0,0.0,4.0,1.0,3.0,1.8,5672.254282576971,0.0,1040.0,0.0,0.0,31670.0,1,1,1,102.0,8,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1627.4284604448142,0.016593206024233916,0.05138706853314854,17594.444444444445,5,3,5,5_1,5_1,5_0_0 -9257,1,36.0,4,303.0,5,111,4,0,35,3.0,0.0,0.0,914.0856526008394,0.0,0.0,30921.0,0,10,1,8463,201109257,,,220.0,254.0,1.0,0.0,4.0,2.0,3.0,1.6,1354.0186508669835,0.0,670.0,0.0,0.0,23383.0,0,1,3,100.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,914.0856526008394,0.029561969295974884,0.03909188951806181,14614.375,3,2,3_1,3_1_1,3_3_1,3_0_0 -9258,1,28.0,2,100.0,1,111,2,0,31,10.0,0.0,0.0,181.4528235759875,0.0,1014.9396273532475,22768.0,0,10,2,8464,201109258,,,140.0,380.0,1.0,0.0,2.0,0.0,1.0,1.0,3821.2511250208345,0.0,133.0,584.0,0.0,303586.0,0,1,3,55.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1196.392450929235,0.05254710343153703,0.003940868323734412,303586.0,10,5,10,10_0,10_3,10_1_0 -9259,0,71.0,3,0.0,2,111,4,72,35,3.0,190.37472109666587,0.0,1607.153580244461,0.0,194.64595593075978,35729.0,43,42,1,8465,201109259,,,447.0,,1.0,1.0,4.0,0.0,2.0,1.5,2340.5491472689046,0.0,1178.0,112.0,0.0,21100.0,5,5,5,80.0,7,5.0,3,9,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1992.1742572718865,0.05575790694595109,0.09441584157686667,14066.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_1 -9260,2,59.0,4,0.0,3,111,1,0,33,7.0,0.0,0.0,465.2286679655018,0.0,0.0,53236.0,0,12,2,8466,201109260,,,,,1.0,1.0,6.0,1.0,2.0,1.5,3506.2436732920205,0.0,341.0,0.0,0.0,36124.0,0,1,1,185.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,465.2286679655018,0.00873898617412093,0.012878658730082544,24082.666666666668,7,4,7,7_0,7_3,7_0_1 -9261,2,71.0,2,0.0,2,111,1,78,78,5.0,0.0,0.0,163.71683330164288,0.0,104.27461924862132,27873.0,71,70,2,8467,201109261,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3054.6167046246046,0.0,120.0,60.0,0.0,25904.0,5,5,1,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,267.99145255026417,0.00961473298712963,0.010345562559846517,17269.333333333332,5,3,5,5_0,5_4,5_0_1 -9262,2,46.0,2,0.0,2,111,2,62,45,8.0,0.0,0.0,1132.8374526930327,0.0,2886.079650550428,44460.0,42,50,1,8468,201109262,,,343.0,,2.0,0.0,5.0,2.0,4.0,2.3,3272.2791663089706,709.0,560.0,1222.0,0.0,57404.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4018.9171032434606,0.09039399692405445,0.07001109858622152,24958.26086956522,8,4,8,8_1,8_4,8_0_1 -9263,2,60.0,2,0.0,6,111,4,77,75,10.0,0.0,0.0,2324.779032883329,0.0,0.0,46123.0,70,50,1,8469,201109263,,,504.0,,0.0,2.0,7.0,0.0,2.0,1.5,1993.3823350436166,0.0,1704.0,0.0,0.0,64785.0,5,5,1,132.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2324.779032883329,0.05040389898496041,0.035884526246559065,43190.0,10,5,10,10_1,10_4,10_0_0 -9264,1,24.0,3,242.0,1,111,2,84,34,6.0,0.0,0.0,327.43366660328576,0.0,0.0,23042.0,20,10,8,847,201109264,,,,661.0,1.0,0.0,2.0,0.0,2.0,1.5,4281.28888052856,0.0,240.0,0.0,0.0,29935.0,3,1,3,37.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,327.43366660328576,0.014210297135807905,0.010938154889035769,19956.666666666668,6,3,6,6_0,6_4,6_1_0 -9265,2,70.0,2,0.0,4,120,2,78,75,5.0,2538.3296146222115,138.792631956344,641.2242637647679,97.32297796537989,0.0,61375.0,70,50,1,8471,201109265,,,310.0,,0.0,3.0,4.0,0.0,2.0,1.5,4146.170771054526,0.0,470.0,0.0,0.0,27480.0,5,5,1,90.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3415.669488308703,0.055652456021323064,0.12429656070992369,18320.0,5,3,5,5_1,5_0,5_0_1 -9266,2,76.0,3,0.0,4,111,1,0,86,5.0,0.0,0.0,589.3805998859143,0.0,0.0,18769.0,0,71,2,8472,201109266,,,160.0,,0.0,2.0,5.0,0.0,1.0,1.0,4200.518944275187,0.0,432.0,0.0,0.0,18694.0,0,6,1,108.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,589.3805998859143,0.03140181149160394,0.03152779500834034,18694.0,5,3,5,5_0,5_3,5_0_1 -9267,2,70.0,2,0.0,9,120,4,0,72,9.0,0.0,69.396315978172,1907.3011079641394,0.0,0.0,48923.0,0,71,1,8473,201109267,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2987.6485700330527,0.0,1398.0,0.0,0.0,35021.0,0,5,1,150.0,0,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1976.6974239423114,0.0404042561564563,0.056443203333494514,35021.0,9,5,9,9_1,9_1,9_0_0 -9268,1,43.0,2,136.0,2,111,1,0,42,3.0,0.0,0.0,627.5811943229643,0.0,86.89551604051776,17799.0,0,60,8,8475,201109268,,,,361.0,1.0,0.0,3.0,1.0,2.0,1.3,3029.688670407414,0.0,460.0,50.0,0.0,17678.0,0,1,3,70.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,714.4767103634821,0.04014139616627238,0.040416150603206365,13598.461538461537,3,2,3_1,3_0_1,3_3_1,3_0_1 -9269,2,51.0,3,0.0,1,112,2,0,62,5.0,1294.548103457328,624.566843803548,613.9381248811608,180.74267336427695,0.0,60459.0,0,50,1,8479,201109269,,,350.0,,2.0,2.0,6.0,2.0,3.0,2.0,1176.6484699884659,0.0,450.0,0.0,0.0,35976.0,0,1,1,150.0,7,0.0,2,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2713.7957455063133,0.04488654700716706,0.07543350415572363,17988.0,5,3,5,5_1,5_0,5_1_0 -9270,2,62.0,3,0.0,1,111,2,52,78,5.0,0.0,0.0,773.5620373502626,0.0,2165.4362597297027,46882.0,70,50,1,848,201109270,,,691.0,,2.0,1.0,5.0,1.0,3.0,2.0,1201.5097919061798,0.0,567.0,1246.0,0.0,34323.0,1,5,1,104.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2938.998297079965,0.06268926874024071,0.08562766358068832,17161.5,5,3,5,5_1,5_3,5_1_0 -9271,2,71.0,1,0.0,1,111,2,0,77,8.0,0.0,0.0,261.9469332826286,0.0,2026.4034340648743,7609.0,0,50,1,8480,201109271,,,47.0,,0.0,0.0,6.0,0.0,1.0,1.0,1414.5418181365058,0.0,192.0,1166.0,0.0,27594.0,0,5,1,117.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2288.350367347503,0.30074259000492876,0.08292927329664068,27594.0,8,4,8,8_1,8_3,8_1_0 -9272,2,54.0,4,0.0,1,300,5,0,56,4.0,0.0,18.04304215432472,982.3009998098572,86.89551604051776,0.0,9685.0,0,71,1,8481,201109272,,,150.0,,1.0,0.0,4.0,0.0,2.0,1.5,3052.4378970967996,0.0,720.0,0.0,0.0,22784.0,0,1,1,100.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1087.2395580046996,0.11226015054256061,0.04771943284781863,15189.333333333334,4,2,4_0,4_1_0,4_0_0,4_1_0 -9273,2,49.0,2,0.0,6,111,2,74,38,10.0,0.0,485.77421184720396,1758.5916510484806,50.3993993035003,0.0,62198.0,50,31,1,8482,201109273,,,490.0,,1.0,2.0,6.0,0.0,2.0,1.5,3054.357977686487,0.0,1289.0,0.0,0.0,75717.0,5,1,2,150.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2294.7652621991847,0.03689451850862061,0.030307133961979274,50478.0,10,5,10,10_1,10_3,10_0_0 -9274,2,35.0,2,0.0,1,111,1,54,37,10.0,0.0,0.0,736.7257498573929,0.0,0.0,37322.0,10,12,2,8483,201109274,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3439.3684903656485,0.0,540.0,0.0,0.0,68522.0,1,1,2,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,736.7257498573929,0.01973971785695817,0.010751667345631957,38067.777777777774,10,5,10,10_0,10_4,10_1_0 -9275,2,26.0,2,0.0,7,111,2,47,46,7.0,0.0,0.0,368.36287492869644,0.0,822.031581743298,17016.0,31,20,2,8484,201109275,,,,450.0,2.0,0.0,2.0,0.0,2.0,1.5,5132.8551891339575,0.0,270.0,473.0,0.0,36047.0,1,1,3,55.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1190.3944566719945,0.06995736111142421,0.033023398803561865,24031.333333333332,7,4,7,7_0,7_2,7_0_0 -9276,2,83.0,2,0.0,2,112,2,86,74,7.0,0.0,0.0,832.2272359500179,0.0,2912.737697678155,49011.0,70,50,1,8485,201109276,,,307.0,,0.0,2.0,4.0,0.0,2.0,1.5,1375.836825238826,0.0,610.0,1676.0,0.0,34978.0,6,5,1,94.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3744.964933628173,0.0764107023653501,0.10706629691886824,23318.666666666668,7,4,7,7_1,7_0,7_0_1 -9277,2,63.0,2,0.0,9,112,2,74,46,10.0,4935.464644431063,0.0,920.9071873217412,0.0,0.0,25422.0,70,50,1,8489,201109277,,,172.0,,1.0,2.0,5.0,0.0,2.0,1.5,2213.577634397402,0.0,675.0,0.0,0.0,65695.0,5,1,1,130.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5856.371831752804,0.23036629029001668,0.08914486386715585,43796.666666666664,10,5,10,10_1,10_0,10_0_0 -9278,2,73.0,3,0.0,5,111,2,78,78,6.0,0.0,0.0,81.85841665082144,0.0,2780.6565132965684,41677.0,71,71,1,849,201109278,,,430.0,,0.0,9.0,6.0,0.0,2.0,1.5,2754.995027462342,0.0,60.0,1600.0,0.0,30317.0,5,5,1,130.0,7,6.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2862.5149299473896,0.06868332485417351,0.09441946531475376,20211.333333333332,6,3,6,6_1,6_2,6_0_0 -9280,2,47.0,3,0.0,2,300,5,56,54,8.0,0.0,138.792631956344,975.4794650889554,0.0,0.0,29861.0,50,50,1,8491,201109280,,,,,2.0,2.0,7.0,0.0,2.0,1.5,1080.634815689213,0.0,715.0,0.0,0.0,39502.0,1,1,1,160.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1114.2720970452995,0.037315297446344715,0.028207991925606284,26334.666666666668,8,4,8,8_1,8_0,8_0_1 -9281,1,34.0,3,248.0,99,111,2,0,52,5.0,0.0,0.0,368.36287492869644,0.0,0.0,10328.0,0,20,2,8492,201109281,,,,32.0,1.0,0.0,1.0,0.0,1.0,1.0,3641.759355662838,0.0,270.0,0.0,0.0,17386.0,0,4,3,34.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,368.36287492869644,0.035666428633684785,0.021187327443270242,17386.0,5,3,5,5_0,5_3,5_0_0 -9282,2,58.0,1,0.0,1,112,2,34,34,10.0,0.0,0.0,2275.663982892836,166.8393907977941,0.0,28480.0,10,10,1,8493,201109282,,,,,2.0,0.0,4.0,0.0,2.0,1.5,972.3239002823798,0.0,1668.0,0.0,0.0,101886.0,1,1,1,150.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2442.5033736906303,0.08576205666048561,0.023972904753259822,67924.0,10,5,10,10_1,10_1,10_1_0 -9283,2,47.0,3,0.0,2,221,2,56,63,6.0,0.0,0.0,873.1564442754286,0.0,2398.31624271829,22323.0,50,50,1,8494,201109283,,,450.0,,2.0,3.0,4.0,1.0,3.0,1.8,1350.3946670328198,0.0,640.0,1380.0,0.0,35204.0,1,1,2,90.0,1,2.0,4,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3271.4726869937185,0.1465516591405151,0.09292900485722413,19557.777777777777,6,3,6,6_1,6_1,6_0_1 -9284,2,33.0,3,0.0,9,111,4,43,38,8.0,0.0,0.0,1575.7745205283127,93.84715732375918,0.0,40145.0,33,12,2,8497,201109284,,,,952.0,2.0,0.0,3.0,1.0,3.0,1.8,2653.1867390307234,0.0,1155.0,0.0,0.0,50579.0,1,1,3,64.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1669.6216778520718,0.041589778997436086,0.033010175722178604,28099.444444444445,8,4,8,8_0,8_3,8_0_0 -9285,2,43.0,2,0.0,8,111,4,46,34,8.0,0.0,0.0,2182.8911106885716,0.0,0.0,101686.0,50,31,1,8499,201109285,,,720.0,,2.0,0.0,5.0,2.0,4.0,2.1,2060.396111003912,0.0,1600.0,0.0,0.0,53402.0,1,1,2,135.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2182.8911106885716,0.021466977860163362,0.04087657972900962,25429.52380952381,8,4,8,8_1,8_3,8_0_0 -9286,1,34.0,5,225.0,5,111,2,85,52,2.0,0.0,0.0,1035.2085645480183,0.0,2139.750274548866,29326.0,60,33,1,8501,201109286,,,800.0,,1.0,0.0,5.0,4.0,6.0,2.9,1370.334637835068,1990.0,0.0,0.0,0.0,30030.0,7,1,3,112.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,3174.9588390968843,0.10826429922583661,0.10572623506816131,10355.172413793103,2,1,2_1,2_1_1,2_3_1,2_0_0 -9287,1,31.0,3,175.0,1,111,6,81,54,3.0,0.0,0.0,6139.381248811607,60.82686122836243,0.0,22506.0,10,10,1,8502,201109287,,,170.0,315.0,2.0,0.0,3.0,0.0,2.0,1.5,2126.708141160739,0.0,4500.0,0.0,0.0,21765.0,4,1,3,50.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,6200.20811003997,0.2754913405331898,0.28487057707511926,14510.0,3,2,3_1,3_1_1,3_3_1,3_1_0 -9288,2,26.0,2,0.0,6,111,1,52,48,3.0,0.0,0.0,668.510402648375,0.0,2294.041623469669,23218.0,42,43,2,8503,201109288,999999.0,1250.0,,400.0,2.0,0.0,3.0,1.0,3.0,1.8,3544.866868063218,0.0,490.0,1320.0,0.0,25018.0,4,1,3,60.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2962.552026118044,0.1275972101868397,0.11841682093364954,13898.888888888889,3,2,3_0,3_0_0,3_2_0,3_0_0 -9289,2,54.0,2,0.0,7,111,6,52,37,9.0,0.0,0.0,2155.6049718049644,114.70208117348345,0.0,31483.0,50,31,1,8504,201109289,,,476.0,,3.0,0.0,5.0,2.0,4.0,2.5,1020.374071294062,0.0,1580.0,0.0,0.0,78092.0,1,1,2,170.0,4,4.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2270.3070529784477,0.07211215744936784,0.029072210379788552,31236.8,9,5,9,9_1,9_2,9_0_0 -9290,2,27.0,3,0.0,5,111,4,0,54,2.0,0.0,0.0,409.2920832541072,0.0,0.0,16438.0,0,31,2,8505,201109290,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3794.7284699000425,0.0,300.0,0.0,0.0,10214.0,0,2,3,32.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,409.2920832541072,0.024899141212684463,0.04007167449129696,10214.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -9291,2,73.0,3,0.0,2,111,1,0,78,4.0,0.0,0.0,409.2920832541072,0.0,521.3730962431066,18259.0,0,71,2,8506,201109291,,,,355.0,0.0,3.0,3.0,0.0,1.0,1.0,2993.9484460706603,0.0,300.0,300.0,0.0,15638.0,0,5,3,57.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,930.6651794972138,0.0509702163041357,0.059513056624709924,15638.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -9292,2,80.0,2,0.0,2,111,5,0,75,9.0,333.1557619191653,0.0,750.3688192991965,0.0,0.0,38833.0,0,41,2,8509,201109292,,,250.0,,0.0,3.0,4.0,0.0,1.0,1.0,3638.883400900959,0.0,550.0,0.0,0.0,36193.0,0,5,1,120.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1083.5245812183618,0.027902160049915324,0.029937407267105844,36193.0,9,5,9,9_0,9_4,9_0_1 -9293,2,69.0,3,0.0,5,120,1,0,77,3.0,0.0,0.0,34.10767360450893,0.0,0.0,11274.0,0,71,2,851,201109293,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3485.7307643666777,0.0,25.0,0.0,0.0,13240.0,0,5,3,50.0,0,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,34.10767360450893,0.003025339152431163,0.0025761082782861733,13240.0,3,2,3_0,3_0_0,3_1_0,3_0_0 -9294,2,63.0,3,0.0,6,111,2,86,74,7.0,0.0,111.0341055650752,1779.0562552111858,45.18566834106924,0.0,21748.0,60,42,1,8511,201109294,,,445.0,,0.0,2.0,5.0,0.0,2.0,1.5,1878.2062456459923,0.0,1304.0,0.0,0.0,34945.0,6,5,1,108.0,6,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1935.2760291173302,0.08898639089191329,0.05538062753233167,23296.666666666668,7,4,7,7_1,7_2,7_0_0 -9295,2,62.0,2,0.0,8,111,2,78,77,5.0,0.0,0.0,804.9410970664107,0.0,1581.4983919374233,49233.0,50,50,1,8512,201109295,,,600.0,,0.0,1.0,4.0,0.0,2.0,1.5,1420.4569195517731,0.0,590.0,910.0,0.0,27671.0,6,5,1,121.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2386.439489003834,0.048472355716771956,0.0862433410069688,18447.333333333332,5,3,5,5_1,5_2,5_0_0 -9296,2,50.0,2,0.0,4,111,1,52,67,7.0,0.0,0.0,518.4366387885358,0.0,0.0,21765.0,31,50,2,8513,201109296,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1903.729835375162,0.0,380.0,0.0,0.0,35958.0,1,1,1,60.0,7,5.0,3,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,518.4366387885358,0.023819739893799024,0.014417838555774398,23972.0,7,4,7,7_0,7_2,7_0_1 -9297,2,62.0,3,0.0,4,112,6,0,77,6.0,1903.7472109666587,0.0,518.4366387885358,97.32297796537989,0.0,16218.0,0,70,1,8515,201109297,,,231.0,,0.0,3.0,5.0,0.0,1.0,1.0,4365.081952162668,0.0,380.0,0.0,0.0,19725.0,0,5,1,190.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2519.506827720574,0.1553524989345526,0.12773165159546637,19725.0,6,3,6,6_1,6_0,6_0_1 -9298,2,57.0,1,0.0,2,111,2,75,35,10.0,3331.5576191916525,0.0,573.00891655575,0.0,0.0,60966.0,43,41,1,8516,201109298,,,320.0,,1.0,1.0,7.0,0.0,2.0,1.5,1960.2329250286941,0.0,420.0,0.0,0.0,61135.0,6,1,1,170.0,9,7.0,3,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3904.5665357474027,0.06404498467584231,0.06386794039007775,40756.666666666664,10,5,10,10_1,10_3,10_0_1 -9299,2,53.0,4,0.0,6,221,7,67,65,3.0,0.0,0.0,1255.1623886459286,208.54923849724264,0.0,24239.0,50,71,1,8518,201109299,,,760.0,,2.0,1.0,5.0,1.0,3.0,2.0,4066.560829615933,0.0,920.0,0.0,0.0,26379.0,1,1,2,70.0,1,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1463.7116271431712,0.060386634231741045,0.055487760231364765,13189.5,3,2,3_0,3_1_0,3_1_0,3_0_0 -9300,1,36.0,4,262.0,7,111,1,0,85,1.0,0.0,0.0,60.02950554393572,0.0,104.27461924862132,10760.0,0,71,2,8519,201109300,,,,21.0,0.0,0.0,3.0,1.0,2.0,1.3,3563.065569034694,0.0,44.0,60.0,0.0,11970.0,0,7,3,120.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,164.30412479255705,0.015269900073657718,0.013726326214917046,9207.692307692307,1,1,1_1,1_0_1,1_3_1,1_0_0 -9301,2,47.0,2,0.0,1,111,2,46,46,8.0,0.0,0.0,1035.508970632891,0.0,2120.2505913886334,57071.0,31,42,1,852,201109301,,,458.0,,2.0,0.0,7.0,3.0,5.0,2.8,1432.0321025175958,0.0,759.0,1220.0,0.0,72290.0,1,1,1,110.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3155.7595620215243,0.05529532620808334,0.043654164642710255,25817.857142857145,8,4,8,8_1,8_2,8_1_0 -9302,1,80.0,4,103.0,7,221,4,0,86,2.0,0.0,0.0,1227.8762497623215,50.3993993035003,0.0,12855.0,0,71,2,8520,201109302,,,130.0,197.0,0.0,1.0,2.0,0.0,1.0,1.0,3375.1043956252665,0.0,900.0,0.0,0.0,11257.0,0,5,3,47.0,1,3.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1278.2756490658219,0.09943801237384846,0.11355384641252748,11257.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -9303,1,23.0,3,250.0,1,111,2,0,46,4.0,0.0,0.0,409.2920832541072,0.0,0.0,16514.0,0,42,2,8521,201109303,,,,195.0,1.0,0.0,3.0,0.0,1.0,1.0,3480.139396735656,0.0,300.0,0.0,0.0,16669.0,0,1,3,35.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,409.2920832541072,0.024784551486866126,0.02455408742300721,16669.0,4,2,4_1,4_0_1,4_3_1,4_1_0 -9304,2,61.0,1,0.0,1,211,2,0,74,10.0,0.0,555.170527825376,341.0767360450893,0.0,1737.9103208103552,42945.0,0,10,1,8523,201109304,,,150.0,,0.0,3.0,6.0,0.0,1.0,1.0,3549.358104745725,0.0,250.0,1000.0,0.0,55836.0,0,5,1,140.0,3,3.0,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2634.1575846808205,0.061337934210753765,0.04717668860020095,55836.0,10,5,10,10_1,10_1,10_1_0 -9305,2,56.0,2,0.0,1,300,2,75,34,8.0,2460.5932701744064,104.094473967258,1146.0178331115,43.44775802025888,0.0,60212.0,50,41,1,8524,201109305,,,184.0,,1.0,2.0,5.0,0.0,2.0,1.5,1624.1477165885176,0.0,840.0,0.0,0.0,42325.0,5,1,2,120.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3754.1533352734236,0.062348922727586256,0.08869824773239039,28216.666666666668,8,4,8,8_1,8_0,8_1_0 -9306,2,82.0,4,0.0,2,111,1,0,77,7.0,0.0,0.0,654.8673332065715,0.0,375.3886292950367,12759.0,0,71,2,8526,201109306,,,,258.0,0.0,0.0,2.0,0.0,1.0,1.0,3546.0611432274295,0.0,480.0,216.0,0.0,21653.0,0,5,3,59.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1030.2559625016083,0.08074739105741895,0.047580287373648375,21653.0,6,3,6,6_0,6_4,6_0_1 -9307,2,70.0,3,0.0,6,112,4,77,74,8.0,158.64560091388822,0.0,1068.2523372932196,0.0,0.0,41413.0,70,31,1,8527,201109307,,,308.0,,0.0,2.0,4.0,0.0,2.0,1.5,3965.924257402194,0.0,783.0,0.0,0.0,38689.0,5,5,1,100.0,8,3.0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1226.897938207108,0.029625913075775914,0.03171180279167484,25792.666666666668,8,4,8,8_1,8_1,8_0_0 -9308,1,87.0,3,183.0,2,221,1,0,77,3.0,1332.6230476766611,0.0,306.9690624405804,0.0,0.0,8314.0,0,70,2,853,201109308,840.0,840.0,80.0,,0.0,0.0,2.0,0.0,1.0,1.0,3999.6495399080663,0.0,225.0,0.0,0.0,12546.0,0,5,3,40.0,1,2.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1639.5921101172416,0.1972085771129711,0.13068644270024243,12546.0,2,1,2_1,2_0_1,2_1_1,2_0_1 -9309,2,66.0,3,0.0,1,221,2,85,21,2.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,31746.0,71,70,2,8531,201109309,,,500.0,,2.0,2.0,3.0,1.0,3.0,2.0,4538.037344132039,1200.0,0.0,0.0,0.0,21550.0,6,1,1,60.0,1,2.0,4,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1914.548043676513,0.060308323684133844,0.08884213659751801,10775.0,2,1,2_0,2_0_0,2_1_0,2_1_0 -9310,2,91.0,4,0.0,2,111,1,0,72,3.0,0.0,0.0,87.31564442754286,0.0,0.0,13963.0,0,70,2,8533,201109310,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2797.6157112526507,0.0,64.0,0.0,0.0,13985.0,0,5,1,90.0,4,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,87.31564442754286,0.006253358477944773,0.0062435212318586245,13985.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -9311,1,37.0,5,274.0,1,400,4,0,52,3.0,269.69752155361,0.0,2578.540124500875,145.98446694806984,0.0,13543.0,0,71,1,8534,201109311,,,229.0,,1.0,0.0,3.0,1.0,2.0,1.3,2964.2949441099004,0.0,1890.0,0.0,0.0,17279.0,0,1,3,69.0,0,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2994.222113002555,0.22109001794303737,0.17328677082021848,13291.538461538461,3,2,3_1,3_1_1,3_0_1,3_1_0 -9312,2,29.0,3,0.0,9,111,2,63,46,8.0,0.0,0.0,245.5752499524643,0.0,0.0,42158.0,20,31,2,8535,201109312,,,,725.0,2.0,0.0,3.0,0.0,2.0,1.5,3647.786155434235,0.0,180.0,0.0,0.0,37545.0,4,1,3,65.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,245.5752499524643,0.005825116228295088,0.00654082434285429,25030.0,8,4,8,8_0,8_3,8_0_0 -9313,2,59.0,1,0.0,6,111,2,34,34,10.0,0.0,0.0,2112.4114579194706,0.0,5161.002197753921,66824.0,10,10,1,8536,201109313,,,375.0,,2.0,5.0,8.0,0.0,2.0,1.5,1535.6041803472913,1543.0,960.0,2015.0,0.0,168023.0,5,1,1,180.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,7273.413655673392,0.10884433221108272,0.04328820254175555,112015.33333333333,10,5,10,10_1,10_3,10_0_0 -9314,1,37.0,4,125.0,7,112,2,85,43,3.0,0.0,0.0,579.8304512766518,2459.1431039466524,0.0,16750.0,33,33,1,8538,201109314,,,,,1.0,0.0,4.0,2.0,4.0,2.1,2632.295914977593,0.0,425.0,0.0,0.0,29630.0,6,1,3,70.0,6,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3038.973555223304,0.18143125702825696,0.10256407543784354,14109.52380952381,3,2,3_1,3_1_1,3_0_1,3_0_0 -9315,2,41.0,3,0.0,1,300,2,75,34,6.0,0.0,13.8792631956344,941.3717914844465,1923.8667251370632,0.0,51628.0,42,41,1,854,201109315,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2196.7174469890206,0.0,690.0,0.0,0.0,30010.0,5,1,2,90.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2879.117779817144,0.05576659525484512,0.09593861312286384,20006.666666666668,6,3,6,6_1,6_0,6_1_0 -9316,2,58.0,3,0.0,6,112,2,54,46,7.0,0.0,0.0,191.00297218525,0.0,0.0,35170.0,42,44,1,8540,201109316,,,383.0,,3.0,1.0,6.0,1.0,3.0,2.0,1371.8272616541478,0.0,140.0,0.0,0.0,44548.0,1,1,1,170.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,191.00297218525,0.005430849365517487,0.004287576820177112,22274.0,7,4,7,7_1,7_0,7_0_0 -9317,2,69.0,1,0.0,1,211,2,0,75,10.0,0.0,0.0,1248.492741163439,0.0,2580.6033461895872,57039.0,0,20,1,8541,201109317,,,222.0,,0.0,2.0,7.0,0.0,1.0,1.0,1340.8800945719,2400.0,0.0,0.0,0.0,47669.0,0,5,1,200.0,2,3.0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3829.096087353026,0.06713119247099399,0.08032675506834686,47669.0,10,5,10,10_1,10_1,10_1_0 -9318,2,50.0,2,0.0,7,111,2,34,38,9.0,0.0,0.0,341.0767360450893,0.0,260.6865481215533,55130.0,10,12,2,8543,201109318,,,,,2.0,0.0,4.0,2.0,4.0,2.5,2394.204409228584,0.0,250.0,150.0,0.0,73612.0,1,1,2,90.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,601.7632841666426,0.010915350701372077,0.00817479873073198,29444.8,9,5,9,9_0,9_3,9_0_0 -9319,2,43.0,3,0.0,8,112,4,0,54,4.0,0.0,0.0,1227.8762497623215,104.27461924862132,0.0,21756.0,0,60,1,8544,201109319,,,350.0,,1.0,1.0,4.0,1.0,2.0,1.5,2588.4437955953845,0.0,900.0,0.0,0.0,22562.0,0,1,2,80.0,7,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1332.1508690109429,0.06123142438917737,0.05904400624993098,15041.333333333334,4,2,4_0,4_1_0,4_2_0,4_0_0 -9320,2,74.0,4,0.0,1,221,5,0,86,5.0,0.0,624.566843803548,927.728722042643,208.54923849724264,0.0,15056.0,0,71,1,8546,201109320,,,160.0,,1.0,6.0,4.0,1.0,2.0,1.5,2799.810489195264,0.0,680.0,0.0,0.0,26447.0,0,5,1,100.0,1,2.0,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1760.8448043434337,0.11695302898136514,0.0665801340168425,17631.333333333332,5,3,5,5_1,5_1,5_1_0 -9321,2,61.0,4,0.0,4,211,2,56,77,2.0,0.0,0.0,637.1313429322269,0.0,2104.6093985013404,34752.0,70,70,1,8547,201109321,,,585.0,,1.0,2.0,5.0,1.0,3.0,2.0,1038.6539945760783,0.0,467.0,1211.0,0.0,23045.0,1,5,1,194.0,3,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2741.740741433567,0.07889447345285357,0.11897334525639258,11522.5,2,1,2_0,2_1_0,2_2_0,2_0_1 -9322,0,41.0,3,0.0,9,112,2,42,38,7.0,0.0,0.0,1234.6977844832234,0.0,0.0,35154.0,60,50,1,8549,201109322,,,247.0,,2.0,1.0,4.0,1.0,3.0,2.0,2081.877803532511,0.0,905.0,0.0,0.0,46080.0,4,1,5,100.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1234.6977844832234,0.03512254037899594,0.02679465678131995,23040.0,7,4,7,7_1,7_2,7_0_0 -9323,2,49.0,2,0.0,9,112,3,0,64,10.0,1031.1964059402735,0.0,703.9823831970643,119.9158121359145,0.0,22563.0,0,50,1,8550,201109323,650.0,650.0,140.0,,1.0,4.0,6.0,0.0,1.0,1.0,2775.990096418717,0.0,516.0,0.0,0.0,41478.0,0,1,2,120.0,9,3.0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1855.0946012732525,0.08221843732097915,0.044724784253658625,41478.0,10,5,10,10_1,10_1,10_0_0 -9324,2,59.0,2,0.0,1,300,2,0,78,5.0,3955.0348307832332,0.0,562.0944610023072,260.6865481215533,0.0,13753.0,0,71,1,8552,201109324,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2671.9447369939485,0.0,412.0,0.0,0.0,18504.0,0,5,1,70.0,0,1.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4777.815839907094,0.34740171889093974,0.258204487673319,18504.0,5,3,5,5_1,5_1,5_1_0 -9325,2,50.0,3,0.0,99,120,2,67,65,7.0,0.0,0.0,67.62669014635294,0.0,139.782681251936,22145.0,70,70,1,8554,201109325,,,,,3.0,0.0,4.0,1.0,3.0,2.0,1946.7118454236468,130.0,0.0,0.0,0.0,46520.0,1,1,1,90.0,0,3.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,207.40937139828895,0.009365968453298214,0.004458498955251267,23260.0,7,4,7,7_1,7_1,7_0_0 -9326,2,46.0,3,0.0,1,112,5,65,52,5.0,0.0,0.0,927.728722042643,93.84715732375918,0.0,26990.0,71,71,1,8559,201109326,,,330.0,,2.0,0.0,3.0,1.0,3.0,2.0,3641.942563311188,0.0,680.0,0.0,0.0,34562.0,1,1,2,80.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1021.5758793664022,0.03785016225885151,0.02955777673069852,17281.0,5,3,5,5_1,5_0,5_1_0 -9327,2,85.0,1,0.0,1,400,5,0,71,3.0,0.0,0.0,278.3186166127929,2236.690582882927,0.0,13028.0,0,70,1,856,201109327,,,,,0.0,0.0,9.0,0.0,1.0,1.0,2499.8791229695325,0.0,204.0,0.0,0.0,13312.0,0,5,1,90.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2515.00919949572,0.1930464537531256,0.18892797472173378,13312.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -9328,2,36.0,1,0.0,8,112,2,34,38,9.0,0.0,0.0,915.4499595450197,0.0,2179.3395422961853,69400.0,20,12,1,8560,201109328,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.1,1462.1183208405607,0.0,671.0,1254.0,0.0,67314.0,1,1,1,140.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3094.789501841205,0.04459350867206347,0.045975421187883725,32054.285714285714,9,5,9,9_1,9_0,9_0_0 -9329,1,41.0,4,262.0,1,111,4,0,85,2.0,0.0,0.0,270.13277494771074,0.0,0.0,4452.0,0,71,2,8566,201109329,,,,12.0,0.0,1.0,1.0,0.0,1.0,1.0,3607.261804739025,0.0,198.0,0.0,0.0,11894.0,0,7,3,20.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,270.13277494771074,0.06067672393254958,0.02271168445835806,11894.0,2,1,2_1,2_0_1,2_2_1,2_1_0 -9330,1,46.0,4,496.0,2,111,2,85,56,2.0,0.0,0.0,886.7995137172322,0.0,1737.9103208103552,13230.0,71,71,2,8568,201109330,,,,,1.0,0.0,4.0,5.0,7.0,3.6,3101.3377354648655,0.0,650.0,1000.0,0.0,42276.0,6,4,3,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2624.709834527587,0.19839076602627265,0.062085103475437296,11743.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_1 -9331,1,52.0,4,55.0,1,111,2,0,52,2.0,0.0,0.0,886.7995137172322,0.0,330.2029609539675,9889.0,0,71,2,8569,201109331,,,,295.0,1.0,4.0,3.0,0.0,1.0,1.0,2898.2518186159064,0.0,650.0,190.0,0.0,12021.0,0,1,3,60.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1217.0024746711997,0.1230662832107594,0.10123970340830211,12021.0,2,1,2_1,2_0_1,2_3_1,2_1_0 -9332,2,70.0,4,0.0,1,111,2,0,74,9.0,0.0,0.0,231.93218051066074,0.0,1492.864965576095,33058.0,0,44,2,857,201109332,,,,495.0,0.0,2.0,2.0,0.0,1.0,1.0,6476.800743168811,0.0,170.0,859.0,0.0,29903.0,0,5,3,50.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1724.797146086756,0.052174878882169394,0.0576797360160103,29903.0,9,5,9,9_0,9_2,9_1_0 -9333,2,77.0,3,0.0,4,112,5,77,77,4.0,0.0,208.188947934516,588.0162929417339,0.0,785.5354650062806,30536.0,70,70,1,8570,201109333,,,33.0,,0.0,5.0,7.0,0.0,2.0,1.5,1223.7247579160169,0.0,431.0,452.0,0.0,23691.0,5,5,1,143.0,8,2.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1581.7407058825306,0.05179921096026102,0.06676546814750456,15794.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -9334,2,34.0,2,0.0,8,111,2,37,37,10.0,0.0,0.0,0.0,0.0,583.9378677922793,105788.0,10,12,1,8571,201109334,,,,,2.0,0.0,7.0,1.0,3.0,1.8,1774.6921572059491,0.0,0.0,336.0,0.0,101527.0,1,1,2,180.0,10,8.0,4,1,0,1,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,583.9378677922793,0.005519887584530187,0.005751552471680237,56403.88888888889,10,5,10,10_1,10_4,10_0_0 -9335,2,35.0,2,0.0,4,111,2,47,37,10.0,0.0,0.0,450.22129157951787,0.0,3302.0296095396748,49636.0,31,30,1,8572,201109335,,,,,2.0,0.0,5.0,1.0,3.0,1.8,3173.5805465297385,0.0,330.0,1900.0,0.0,76498.0,1,1,2,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3752.250901119193,0.07559535218630012,0.049050313748322735,42498.88888888889,10,5,10,10_1,10_4,10_0_1 -9336,1,79.0,3,80.0,3,111,2,0,78,4.0,0.0,0.0,218.28911106885715,0.0,1216.5372245672486,21333.0,0,71,2,8573,201109336,,,,176.0,0.0,0.0,3.0,0.0,1.0,1.0,3596.762706359713,0.0,160.0,700.0,0.0,15054.0,0,5,3,45.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1434.8263356361058,0.06725853539755805,0.0953119659649333,15054.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -9337,2,42.0,3,0.0,4,120,4,0,43,3.0,0.0,0.0,2046.460416270536,43.44775802025888,0.0,28453.0,0,10,1,8576,201109337,,,200.0,,1.0,0.0,4.0,2.0,3.0,1.6,3568.574311118895,0.0,1500.0,0.0,0.0,20477.0,0,1,3,115.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2089.9081742907947,0.07345124149617947,0.10206124795091052,12798.125,3,2,3_0,3_1_0,3_0_0,3_0_1 -9338,2,39.0,1,0.0,2,111,2,68,63,5.0,2379.684013708323,124.91336876070959,777.6549581828036,0.0,0.0,31836.0,71,43,1,8577,201109338,,,292.0,,2.0,0.0,4.0,2.0,4.0,2.3,2702.118584454808,0.0,570.0,0.0,0.0,43105.0,1,1,2,95.0,6,4.0,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3282.252340651836,0.1030987668253498,0.07614551306465227,18741.304347826088,5,3,5,5_1,5_2,5_0_1 -9339,2,64.0,4,0.0,5,111,1,78,77,5.0,0.0,0.0,409.2920832541072,0.0,451.85668341069237,13104.0,71,71,2,8578,201109339,260.0,260.0,,417.0,0.0,1.0,3.0,0.0,2.0,1.5,5250.977435859713,0.0,300.0,260.0,0.0,25940.0,5,5,3,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,861.1487666647995,0.06571648097258849,0.03319771652524285,17293.333333333332,5,3,5,5_0,5_4,5_0_0 -9340,2,46.0,2,0.0,1,120,2,42,34,7.0,3966.1400228472053,0.0,245.5752499524643,0.0,0.0,59200.0,10,10,1,8579,201109340,,,,,2.0,0.0,9.0,4.0,6.0,3.3,1017.9626121534944,0.0,180.0,0.0,0.0,71580.0,1,1,2,180.0,0,3.0,4,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4211.71527279967,0.071143839067562,0.05883927455713425,21690.909090909092,6,3,6,6_1,6_1,6_1_0 -9341,2,44.0,3,0.0,2,111,4,34,34,10.0,0.0,0.0,3015.1183466385896,0.0,0.0,84003.0,31,31,1,858,201109341,,,650.0,,2.0,0.0,5.0,1.0,3.0,1.8,2907.234884208605,0.0,2210.0,0.0,0.0,113459.0,1,1,2,122.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3015.1183466385896,0.0358929841391211,0.02657451895961175,63032.777777777774,10,5,10,10_1,10_4,10_0_1 -9342,2,36.0,4,0.0,1,300,2,0,42,5.0,0.0,555.170527825376,3683.6287492869646,229.4041623469669,0.0,29421.0,0,20,1,8581,201109342,,,150.0,,1.0,0.0,6.0,3.0,4.0,1.9,1185.1510430677984,0.0,2700.0,0.0,0.0,32228.0,0,1,2,200.0,0,0.0,2,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4468.203439459307,0.15187122937559253,0.1386435223861024,16962.105263157897,4,2,4_0,4_1_0,4_0_0,4_1_0 -9343,0,52.0,4,0.0,1,111,2,0,21,1.0,0.0,0.0,545.7227776721429,0.0,816.8178507808669,16596.0,0,50,1,8583,201109343,,,,,2.0,1.0,4.0,1.0,2.0,1.5,2851.4325287159295,0.0,400.0,470.0,0.0,6450.0,0,1,5,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1362.54062845301,0.08210054401379911,0.21124660906248216,4300.0,1,1,1_0,1_1_0,1_4_0,1_1_0 -9344,2,41.0,3,0.0,6,400,2,0,54,8.0,1269.1648073111057,0.0,1432.5222913893751,187.69431464751835,0.0,16520.0,0,50,1,8584,201109344,,,336.0,,1.0,2.0,4.0,0.0,1.0,1.0,2588.5823764406646,0.0,1050.0,0.0,0.0,24894.0,0,1,3,80.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2889.381413347999,0.17490202259975782,0.11606738223459465,24894.0,7,4,7,7_1,7_0,7_0_0 -9345,2,47.0,4,0.0,7,111,2,54,37,9.0,0.0,0.0,410.6563901982875,0.0,1515.4577997466297,31999.0,10,60,1,8585,201109345,,,180.0,,2.0,2.0,5.0,0.0,2.0,1.5,1359.5737603968196,0.0,301.0,872.0,0.0,45776.0,1,1,4,112.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1926.1141899449171,0.06019294946544946,0.04207694403060375,30517.333333333332,9,5,9,9_1,9_3,9_0_0 -9346,1,37.0,5,385.0,1,112,6,46,52,2.0,412.4785623761094,0.0,791.2980276246072,0.0,0.0,14254.0,42,20,1,8588,201109346,,,220.0,,2.0,2.0,4.0,2.0,4.0,2.1,1995.0205464481235,0.0,580.0,0.0,0.0,20760.0,4,1,3,70.0,7,1.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1203.7765900007166,0.0844518443946062,0.05798538487479367,9885.714285714284,2,1,2_1,2_1_1,2_1_1,2_1_0 -9347,1,63.0,3,115.0,99,111,1,0,72,2.0,0.0,0.0,0.0,0.0,0.0,18120.0,0,43,2,8590,201109347,,,,385.0,0.0,2.0,2.0,0.0,1.0,1.0,3066.3250630325683,0.0,0.0,0.0,0.0,11720.0,0,5,3,58.0,8,7.0,1,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,11720.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -9348,2,55.0,2,0.0,3,111,2,52,42,10.0,0.0,0.0,955.0148609262501,0.0,1216.5372245672486,42202.0,60,41,1,8592,201109348,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1813.2001101956564,0.0,700.0,700.0,0.0,59390.0,1,1,1,200.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2171.5520854934985,0.05145614154527033,0.03656427151866473,39593.333333333336,10,5,10,10_1,10_2,10_0_1 -9349,2,71.0,2,0.0,1,111,1,0,75,7.0,0.0,0.0,409.2920832541072,0.0,0.0,22697.0,0,44,2,8594,201109349,,,150.0,,0.0,2.0,4.0,0.0,1.0,1.0,3552.988481740316,0.0,300.0,0.0,0.0,22896.0,0,5,1,75.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,409.2920832541072,0.018032871447949385,0.01787613920571747,22896.0,7,4,7,7_0,7_3,7_1_0 -9350,1,45.0,4,243.0,5,111,2,0,68,4.0,0.0,0.0,1070.9809511815804,0.0,1661.4422666946996,22804.0,0,60,1,8596,201109350,,,145.0,,1.0,4.0,5.0,2.0,3.0,2.0,2615.748161931211,0.0,785.0,956.0,0.0,29646.0,0,1,3,92.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2732.42321787628,0.11982210216963164,0.09216836058410173,14823.0,3,2,3_1,3_1_1,3_3_1,3_0_0 -9351,1,40.0,5,47.0,6,111,1,63,52,3.0,0.0,0.0,491.1504999049286,472.7116072604166,0.0,22352.0,50,71,2,8598,201109351,,,,333.0,2.0,5.0,4.0,3.0,5.0,2.6,1716.941439810463,0.0,360.0,0.0,0.0,36049.0,1,1,3,100.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,963.8621071653452,0.043121962561083804,0.026737554638557107,13865.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -9352,2,53.0,3,0.0,6,112,4,0,42,7.0,0.0,0.0,2210.177249572179,0.0,0.0,21708.0,0,71,1,8599,201109352,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2345.9618823240125,0.0,1620.0,0.0,0.0,35760.0,0,1,1,90.0,10,0.0,5,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2210.177249572179,0.10181395105823562,0.061805851498103435,23840.0,7,4,7,7_1,7_0,7_0_0 -9353,2,41.0,3,0.0,1,111,2,52,37,7.0,0.0,0.0,1668.8734481323763,0.0,3974.1855609092527,85548.0,20,10,1,86,201109353,,,500.0,,2.0,0.0,7.0,2.0,4.0,2.1,1643.264617536659,1110.0,800.0,1600.0,0.0,49010.0,1,4,2,220.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,5643.059009041629,0.06596365793521332,0.11514097141484654,23338.095238095237,7,4,7,7_1,7_2,7_1_0 -9354,2,51.0,2,0.0,7,111,2,0,67,9.0,0.0,0.0,1650.8114024582324,0.0,0.0,47662.0,0,71,1,860,201109354,,,1280.0,,3.0,0.0,6.0,0.0,4.0,2.5,3109.815707883152,0.0,1210.0,0.0,0.0,89753.0,0,1,2,155.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1650.8114024582324,0.03463579796186128,0.018392827008102595,35901.2,9,5,9,9_1,9_4,9_0_0 -9355,2,84.0,1,0.0,1,112,2,0,74,10.0,0.0,0.0,529.3510943419786,2681.595625010378,0.0,20282.0,0,50,1,8601,201109355,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1866.2908532679,0.0,388.0,0.0,0.0,41803.0,0,5,1,75.0,10,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3210.946719352357,0.1583150931541444,0.07681139438203853,41803.0,10,5,10,10_1,10_0,10_1_0 -9356,2,58.0,4,0.0,1,300,2,0,67,7.0,1586.456009138882,444.1364222603008,422.93515269591074,43.44775802025888,0.0,42725.0,0,70,1,8602,201109356,,,316.0,,1.0,2.0,4.0,0.0,1.0,1.0,1817.3739293625283,0.0,310.0,0.0,0.0,22114.0,0,1,1,95.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2496.9753421153523,0.058442957100417844,0.11291378050625632,22114.0,7,4,7,7_1,7_0,7_1_0 -9357,1,62.0,3,108.0,4,111,1,0,52,6.0,0.0,0.0,163.71683330164288,0.0,86.89551604051776,20435.0,0,71,2,8604,201109357,,,,581.0,1.0,0.0,3.0,0.0,1.0,1.0,3996.587447101714,0.0,120.0,50.0,0.0,20184.0,0,1,3,75.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,250.61234934216066,0.012263878118040649,0.012416386709381722,20184.0,6,3,6,6_0,6_3,6_0_1 -9358,2,34.0,2,0.0,8,112,2,53,53,10.0,0.0,0.0,409.2920832541072,0.0,868.9551604051776,60033.0,30,60,2,8605,201109358,,,457.0,,2.0,0.0,3.0,0.0,2.0,1.5,2331.291966062498,0.0,300.0,500.0,0.0,60776.0,1,1,2,82.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1278.2472436592848,0.021292409902208532,0.02103210549656583,40517.333333333336,10,5,10,10_0,10_1,10_0_0 -9359,2,22.0,1,0.0,4,111,1,0,62,4.0,0.0,0.0,238.75371523156252,0.0,0.0,9312.0,0,60,2,8606,201109359,,,,188.0,1.0,0.0,4.0,0.0,1.0,1.0,3522.3392307204726,0.0,175.0,0.0,0.0,15171.0,0,1,3,84.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,238.75371523156252,0.02563935945356127,0.015737506771574882,15171.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -9360,2,45.0,2,0.0,8,112,2,62,48,6.0,0.0,0.0,1882.743582968893,0.0,0.0,32618.0,50,50,1,8608,201109360,,,,,3.0,0.0,5.0,2.0,4.0,2.5,2043.07163918518,0.0,1380.0,0.0,0.0,47550.0,1,1,2,178.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1882.743582968893,0.057721000152335916,0.0395950280329946,19020.0,5,3,5,5_1,5_0,5_0_0 -9361,2,57.0,4,0.0,6,112,2,78,77,2.0,0.0,0.0,1500.737638598393,0.0,0.0,18347.0,71,60,1,861,201109361,,,,,0.0,4.0,5.0,0.0,2.0,1.5,2941.816792567069,0.0,1100.0,0.0,0.0,18236.0,6,5,1,100.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1500.737638598393,0.08179744037708579,0.08229533003939422,12157.333333333334,2,1,2_0,2_1_0,2_1_0,2_0_0 -9362,2,46.0,5,0.0,7,111,2,0,52,4.0,0.0,0.0,615.3024318253412,0.0,1320.81184381587,30042.0,0,71,2,8612,201109362,,,,490.0,3.0,2.0,4.0,3.0,4.0,2.3,2038.0886011175905,0.0,451.0,760.0,0.0,33915.0,0,1,3,78.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1936.114275641211,0.06444691683780078,0.057087255658004155,14745.652173913044,3,2,3_0,3_0_0,3_3_0,3_0_0 -9363,2,46.0,3,0.0,1,120,4,67,65,8.0,0.0,305.3437903039568,1380.6786275105214,0.0,0.0,45188.0,41,50,1,8613,201109363,,,576.0,,2.0,0.0,4.0,2.0,4.0,2.5,1018.2051224594387,0.0,1012.0,0.0,0.0,69233.0,1,1,2,130.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1686.022417814478,0.03731128657640254,0.024352872442541536,27693.2,8,4,8,8_1,8_1,8_1_0 -9364,2,74.0,3,0.0,5,112,2,0,71,7.0,2062.392811880547,69.396315978172,1146.0178331115,0.0,0.0,25111.0,0,50,1,8614,201109364,,,450.0,,0.0,0.0,6.0,0.0,2.0,1.5,3646.293649268098,0.0,840.0,0.0,0.0,33971.0,0,5,1,150.0,8,0.0,5,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3277.806960970219,0.13053271319223522,0.09648838600483409,22647.333333333332,7,4,7,7_1,7_0,7_0_0 -9365,2,68.0,2,0.0,1,211,5,0,71,1.0,0.0,69.396315978172,245.5752499524643,0.0,0.0,6567.0,0,70,5,8615,201109365,,,,,0.0,0.0,4.0,0.0,1.0,1.0,1937.3752879318154,0.0,180.0,0.0,0.0,8697.0,0,5,1,80.0,2,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,314.9715659306363,0.04796277842708029,0.036216116583952664,8697.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -9366,2,23.0,3,0.0,3,111,1,54,64,3.0,0.0,0.0,311.0619832731214,41.709847699448524,0.0,61788.0,60,50,2,8616,201109366,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3424.2871999253193,0.0,228.0,0.0,0.0,21075.0,1,1,2,56.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,352.77183097256994,0.005709390674120702,0.016738876914475443,14050.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -9367,2,45.0,3,0.0,9,221,4,0,37,9.0,0.0,0.0,1500.737638598393,0.0,0.0,29694.0,0,10,1,8619,201109367,,,480.0,,1.0,0.0,4.0,0.0,1.0,1.0,3847.5325490785613,0.0,1100.0,0.0,0.0,32617.0,0,1,2,75.0,1,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1500.737638598393,0.05054009694208907,0.04601090347359944,32617.0,9,5,9,9_1,9_1,9_0_0 -9368,2,55.0,4,0.0,4,111,1,0,46,3.0,0.0,0.0,451.58559852369825,52.13730962431066,0.0,10336.0,0,50,2,862,201109368,,,112.0,247.0,1.0,3.0,3.0,0.0,1.0,1.0,1753.0715325784408,0.0,331.0,0.0,0.0,14359.0,0,1,3,67.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,503.7229081480089,0.04873480148490798,0.035080639887736534,14359.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -9369,2,38.0,3,0.0,4,111,2,21,56,3.0,0.0,0.0,1227.8762497623215,90.37133668213848,0.0,29374.0,50,50,1,8620,201109369,,,60.0,,2.0,0.0,5.0,2.0,4.0,2.3,1739.9817745704265,0.0,900.0,0.0,0.0,33480.0,1,1,2,140.0,6,4.0,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1318.24758644446,0.04487804134419759,0.039374181196071084,14556.521739130436,3,2,3_0,3_1_0,3_2_0,3_0_1 -9370,2,75.0,3,0.0,1,211,4,77,72,5.0,0.0,1040.94473967258,1996.8946922616992,104.27461924862132,455.9065911601604,16268.0,70,50,1,8621,201109370,,,430.0,,0.0,2.0,6.0,0.0,2.0,1.5,3172.4416149660133,424.0,1302.0,0.0,0.0,25652.0,5,5,1,120.0,3,3.0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3598.0206423430614,0.22117166476168315,0.14026277258471315,17101.333333333332,5,3,5,5_1,5_1,5_1_0 -9371,2,54.0,2,0.0,6,400,4,56,64,5.0,0.0,277.585263912688,1045.0591192421537,135.55700502320772,0.0,48850.0,60,50,1,8622,201109371,,,,,2.0,3.0,4.0,0.0,2.0,1.5,2147.0189005365305,0.0,766.0,0.0,0.0,25916.0,1,1,1,87.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1458.2013881780495,0.029850591364954954,0.056266452700187125,17277.333333333332,5,3,5,5_1,5_0,5_0_0 -9372,2,77.0,2,0.0,5,211,4,75,75,9.0,0.0,0.0,2155.6049718049644,0.0,0.0,32613.0,71,20,1,8623,201109372,,,300.0,,0.0,1.0,2.0,0.0,2.0,1.5,1934.5648173484374,0.0,1580.0,0.0,0.0,47361.0,5,5,1,65.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2155.6049718049644,0.06609649439809169,0.04551434665241368,31574.0,9,5,9,9_1,9_2,9_0_0 -9373,2,32.0,2,0.0,99,111,6,0,38,8.0,0.0,0.0,372.7802318560955,0.0,296.7693848118026,32216.0,0,12,2,8625,201109373,,,,507.0,1.0,0.0,1.0,0.0,1.0,1.0,3251.6957449041543,276.0,168.0,0.0,0.0,25684.0,0,1,3,23.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,669.5496166678981,0.02078313933039167,0.02606874383537993,25684.0,8,4,8,8_0,8_4,8_0_0 -9374,2,48.0,3,0.0,7,112,2,13,52,2.0,0.0,0.0,2266.1138342835734,0.0,0.0,46259.0,50,50,1,8626,201109374,,,,,2.0,0.0,7.0,3.0,5.0,2.8,1637.9882777267087,0.0,1661.0,0.0,0.0,31424.0,1,1,1,150.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2266.1138342835734,0.048987523169190285,0.07211411132521554,11222.857142857143,2,1,2_0,2_1_0,2_0_0,2_0_0 -9375,2,32.0,2,0.0,1,111,1,54,38,9.0,0.0,0.0,409.2920832541072,0.0,104.27461924862132,32551.0,31,31,2,8627,201109375,,,,670.0,2.0,0.0,2.0,0.0,2.0,1.5,3799.468799577334,0.0,300.0,60.0,0.0,53703.0,1,1,3,42.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,513.5667025027285,0.01577729416923377,0.009563091494008314,35802.0,9,5,9,9_0,9_4,9_1_0 -9376,2,48.0,2,0.0,4,111,1,0,64,7.0,0.0,0.0,341.0767360450893,0.0,0.0,18834.0,0,60,2,8628,201109376,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4850.449005113434,0.0,250.0,0.0,0.0,24380.0,0,1,1,32.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,341.0767360450893,0.018109628121752645,0.013990021987083236,24380.0,7,4,7,7_0,7_3,7_0_1 -9377,2,34.0,3,0.0,9,300,2,52,47,7.0,0.0,0.0,1159.6609025533037,0.0,0.0,25867.0,30,50,1,8629,201109377,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2377.0364886513134,0.0,850.0,0.0,0.0,45588.0,1,1,2,128.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1159.6609025533037,0.04483167365961664,0.025437854315901197,21708.571428571428,6,3,6,6_1,6_0,6_0_0 -9378,2,77.0,3,0.0,6,112,6,77,75,6.0,0.0,666.2046333904511,1090.2884928507442,187.69431464751835,623.6458086624835,43783.0,50,50,1,863,201109378,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1550.5422371750064,580.0,578.0,0.0,0.0,30003.0,5,5,1,98.0,9,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2567.8332495511972,0.05864909324512247,0.08558588306340023,20002.0,6,3,6,6_1,6_0,6_0_0 -9379,2,53.0,3,0.0,6,400,2,11,11,1.0,0.0,44.41364222603008,545.7227776721429,312.82385774586396,0.0,17389.0,41,50,1,8630,201109379,,,,,2.0,1.0,5.0,0.0,2.0,1.5,3622.4845695670983,0.0,400.0,0.0,0.0,9954.0,1,1,1,116.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,902.960277644037,0.05192709630479251,0.0907133089857381,6636.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -9380,2,46.0,3,0.0,9,112,6,54,52,8.0,0.0,0.0,1654.9043232907734,0.0,0.0,22221.0,44,50,1,8631,201109380,,,500.0,,2.0,1.0,6.0,1.0,3.0,1.8,2775.081796379914,0.0,1213.0,0.0,0.0,48359.0,1,1,2,156.0,5,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1654.9043232907734,0.07447479066157119,0.03422122714056894,26866.11111111111,8,4,8,8_1,8_0,8_0_0 -9381,1,21.0,2,282.0,5,111,1,84,84,1.0,0.0,0.0,95.501486092625,0.0,0.0,32763.0,41,41,2,8633,201109381,,,,268.0,0.0,0.0,3.0,0.0,2.0,1.5,4129.866053904747,0.0,70.0,0.0,0.0,10594.0,3,3,3,63.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,95.501486092625,0.0029149188442030645,0.00901467680693081,7062.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_0 -9382,1,39.0,4,349.0,5,111,4,54,64,2.0,0.0,0.0,654.8673332065715,0.0,312.82385774586396,15748.0,50,50,2,8634,201109382,,,300.0,,2.0,1.0,4.0,1.0,3.0,1.8,2125.7742849240635,0.0,480.0,180.0,0.0,20598.0,4,1,3,65.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,967.6911909524355,0.0614485135225067,0.04697986168329136,11443.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_0 -9383,1,48.0,3,138.0,2,111,1,0,56,3.0,0.0,0.0,286.504458277875,0.0,0.0,10324.0,0,71,2,8635,201109383,,,,33.0,1.0,2.0,3.0,0.0,1.0,1.0,3350.1014513621953,0.0,210.0,0.0,0.0,13006.0,0,1,3,60.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,286.504458277875,0.02775130359142532,0.022028637419489083,13006.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -9384,2,42.0,3,0.0,8,111,2,0,67,5.0,0.0,0.0,652.1387193182107,0.0,1147.0208117348345,20211.0,0,50,1,8636,201109384,,,396.0,388.0,1.0,0.0,4.0,0.0,1.0,1.0,1357.9210245901218,0.0,478.0,660.0,0.0,16850.0,0,4,3,110.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1799.1595310530452,0.08901882791811613,0.10677504635329645,16850.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -9385,2,62.0,2,0.0,4,400,6,77,74,9.0,2866.72600851396,0.0,832.2272359500179,0.0,0.0,32637.0,50,60,1,8637,201109385,,,497.0,,0.0,2.0,4.0,0.0,2.0,1.5,2775.545795169947,0.0,610.0,0.0,0.0,43586.0,5,5,2,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3698.953244463978,0.1133361903503379,0.08486562759748492,29057.333333333332,8,4,8,8_1,8_0,8_0_1 -9386,2,26.0,4,0.0,1,211,1,0,69,6.0,0.0,0.0,0.0,0.0,71.25432315322456,14055.0,0,44,1,8638,201109386,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2464.245893133482,0.0,0.0,41.0,0.0,19860.0,0,1,3,51.0,2,3.0,1,5,0,1,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,71.25432315322456,0.005069677919119499,0.0035878309744826063,19860.0,6,3,6,6_1,6_1,6_1_0 -9387,1,42.0,4,471.0,7,111,2,0,54,1.0,0.0,0.0,425.66376658427146,0.0,1164.399914942938,10021.0,0,71,2,8640,201109387,,,372.0,,1.0,0.0,3.0,2.0,3.0,1.8,3059.099365934076,0.0,312.0,670.0,0.0,15512.0,0,4,3,40.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1590.0636815272096,0.1586731545282117,0.102505394631718,8617.777777777777,1,1,1_1,1_0_1,1_2_1,1_0_0 -9388,2,45.0,3,0.0,7,300,2,52,47,5.0,0.0,0.0,1705.3836802254466,86.89551604051776,0.0,40944.0,50,42,1,8644,201109388,,,,,2.0,0.0,8.0,2.0,4.0,2.3,1336.532988776767,0.0,1250.0,0.0,0.0,40837.0,1,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1792.2791962659644,0.043773915500829534,0.04388861072718281,17755.217391304348,5,3,5,5_1,5_0,5_0_0 -9389,2,80.0,1,0.0,4,112,2,74,77,4.0,1979.897099405325,0.0,791.2980276246072,0.0,0.0,35906.0,60,50,1,8645,201109389,,,201.0,,0.0,4.0,5.0,0.0,3.0,2.0,1121.0617401868626,0.0,580.0,0.0,0.0,32814.0,5,5,1,102.0,8,0.0,5,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2771.1951270299323,0.07717916579485135,0.0844516098930314,16407.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -9390,2,53.0,2,0.0,6,112,2,75,52,4.0,0.0,138.792631956344,2818.658146676618,0.0,0.0,61701.0,41,41,1,8647,201109390,,,644.0,,1.0,2.0,7.0,3.0,5.0,3.0,2320.8447677081167,0.0,2066.0,0.0,0.0,48671.0,5,1,1,100.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2957.450778632962,0.047931974824281,0.06076412604287896,16223.666666666666,4,2,4_0,4_1_0,4_1_0,4_0_0 -9391,2,86.0,1,0.0,1,300,2,0,72,3.0,1632.4632334039097,0.0,517.0723318443554,208.54923849724264,0.0,11226.0,0,71,1,8649,201109391,,,83.0,,0.0,1.0,5.0,0.0,1.0,1.0,2071.0413911745827,0.0,379.0,0.0,0.0,13054.0,0,5,1,70.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2358.0848037455075,0.21005565684531513,0.18064078472081413,13054.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -9392,2,41.0,2,0.0,2,111,2,21,21,2.0,0.0,0.0,1036.8732775770716,0.0,2085.4923849724264,25208.0,20,50,8,865,201109392,,,800.0,,2.0,0.0,5.0,1.0,3.0,2.0,1943.2643575945865,0.0,760.0,1200.0,0.0,22756.0,1,1,3,79.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3122.3656625494978,0.12386407737819334,0.137210654884404,11378.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -9393,2,57.0,3,0.0,6,112,4,74,54,10.0,0.0,0.0,3232.657187256701,0.0,3044.0366971094672,38605.0,43,50,1,8651,201109393,,,95.0,,1.0,0.0,4.0,0.0,2.0,1.5,1285.8795111502855,2831.0,1290.0,0.0,0.0,67344.0,5,1,1,98.0,8,2.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,6276.693884366168,0.1625875892854855,0.09320346110070932,44896.0,10,5,10,10_1,10_1,10_0_0 -9394,2,46.0,5,0.0,5,112,2,56,85,1.0,4759.368027416646,0.0,1500.737638598393,104.27461924862132,0.0,51505.0,71,50,1,8654,201109394,,,600.0,,1.0,0.0,8.0,3.0,6.0,3.3,2667.048418774854,0.0,1100.0,0.0,0.0,17658.0,1,4,2,300.0,7,0.0,5,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6364.38028526366,0.12356820280096417,0.3604247528181935,5350.909090909091,1,1,1_0,1_1_0,1_0_0,1_0_0 -9395,2,63.0,2,0.0,6,111,4,78,75,7.0,0.0,346.98157989085996,1442.0724399986377,83.41969539889705,0.0,47318.0,71,70,1,8656,201109395,,,259.0,,0.0,1.0,4.0,0.0,2.0,1.5,2449.0835925359925,0.0,1057.0,0.0,0.0,34574.0,5,5,1,118.0,7,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1872.473715288395,0.039572122982551985,0.054158434525608694,23049.333333333332,7,4,7,7_1,7_2,7_0_0 -9396,2,39.0,5,0.0,2,111,1,0,56,1.0,0.0,0.0,382.0059443705,0.0,2210.621928070772,15266.0,0,50,2,8657,201109396,1030.0,1030.0,200.0,293.0,1.0,0.0,4.0,1.0,2.0,1.3,3513.7338393522896,0.0,280.0,1272.0,0.0,10606.0,0,1,3,80.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2592.627872441272,0.16983020257050124,0.2444491676825638,8158.461538461538,1,1,1_0,1_0_0,1_3_0,1_0_1 -9397,2,45.0,2,0.0,2,111,4,0,63,9.0,0.0,0.0,995.9440692516608,0.0,0.0,24371.0,0,71,2,8658,201109397,,,,450.0,1.0,0.0,4.0,0.0,1.0,1.0,2962.472911579689,0.0,730.0,0.0,0.0,33368.0,0,1,3,65.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,995.9440692516608,0.040865950073926426,0.0298472809054082,33368.0,9,5,9,9_0,9_3,9_0_1 -9398,2,36.0,2,0.0,4,112,2,46,52,7.0,2785.816752047877,0.0,395.6490138123036,0.0,0.0,25830.0,20,43,1,8659,201109398,,,300.0,,2.0,0.0,4.0,0.0,2.0,1.5,1927.502363629441,0.0,290.0,0.0,0.0,34125.0,1,1,2,65.0,9,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3181.4657658601805,0.12316940634379328,0.09322976603253276,22750.0,7,4,7,7_1,7_1,7_0_1 -9399,0,34.0,3,0.0,1,112,5,53,53,6.0,0.0,69.396315978172,668.510402648375,52.13730962431066,0.0,51053.0,20,10,1,866,201109399,,,340.0,,2.0,0.0,5.0,0.0,2.0,1.5,1551.8650399678816,0.0,490.0,0.0,0.0,30337.0,1,1,5,130.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,790.0440282508577,0.015474977538065494,0.026042259559312313,20224.666666666668,6,3,6,6_1,6_0,6_1_0 -9400,2,48.0,3,0.0,7,112,2,56,63,3.0,0.0,166.55115834761278,1364.3069441803573,0.0,2971.8266485857075,27381.0,50,50,1,8660,201109400,,,960.0,,2.0,1.0,4.0,2.0,4.0,2.3,2680.2173461642838,0.0,1000.0,1710.0,0.0,28876.0,1,4,2,101.0,7,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4502.6847511136775,0.1644455918744267,0.15593173400449084,12554.782608695654,2,1,2_0,2_1_0,2_0_0,2_0_0 -9401,2,85.0,2,0.0,2,112,5,78,71,4.0,0.0,0.0,727.1756012481304,469.23578661879594,0.0,25973.0,70,70,1,8662,201109401,,,,,0.0,5.0,5.0,0.0,2.0,1.5,2541.9284734910675,0.0,533.0,0.0,0.0,24999.0,5,5,1,80.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1196.4113878669264,0.04606365794736558,0.04785836984947103,16666.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -9402,2,36.0,3,0.0,5,111,1,0,34,9.0,0.0,0.0,436.5782221377143,0.0,0.0,14667.0,0,10,2,8665,201109402,,,,560.0,1.0,0.0,1.0,0.0,1.0,1.0,3526.5149594552686,0.0,320.0,0.0,0.0,31141.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,436.5782221377143,0.02976602046346999,0.014019402785322061,31141.0,9,5,9,9_0,9_4,9_0_0 -9403,1,81.0,3,89.0,3,111,1,0,78,4.0,0.0,0.0,204.6460416270536,0.0,0.0,8064.0,0,71,2,8667,201109403,,,,154.0,0.0,0.0,2.0,0.0,1.0,1.0,2959.706640766733,0.0,150.0,0.0,0.0,14739.0,0,5,3,53.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,204.6460416270536,0.025377733336688194,0.013884662570530809,14739.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -9404,2,53.0,2,0.0,6,400,6,45,37,7.0,0.0,0.0,3148.8204271682644,93.84715732375918,0.0,40445.0,31,41,1,8669,201109404,,,411.0,,2.0,0.0,7.0,2.0,4.0,2.5,1986.1024006699677,0.0,2308.0,0.0,0.0,57890.0,1,1,1,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3242.6675844920237,0.08017474556785817,0.056014295810883116,23156.0,7,4,7,7_1,7_0,7_0_0 -9405,2,57.0,3,0.0,6,112,2,47,65,5.0,0.0,208.188947934516,2223.8203190139825,0.0,0.0,45404.0,42,31,1,8670,201109405,,,,,4.0,1.0,6.0,2.0,4.0,2.5,1784.637848596308,0.0,1630.0,0.0,0.0,44153.0,1,1,2,150.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2432.0092669484984,0.05356376678152802,0.05508140481843812,17661.2,5,3,5,5_1,5_0,5_0_0 -9406,2,85.0,1,0.0,1,112,2,0,72,9.0,5552.596031986088,0.0,654.8673332065715,83.41969539889705,0.0,25379.0,0,70,1,8671,201109406,,,,,0.0,0.0,5.0,1.0,2.0,1.5,2873.249841915022,0.0,480.0,0.0,0.0,51784.0,0,5,1,110.0,8,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6290.883060591556,0.2478774995307757,0.12148314268097397,34522.666666666664,9,5,9,9_1,9_0,9_1_0 -9407,2,62.0,2,0.0,1,111,2,0,78,2.0,72.97697642038858,0.0,559.3658471139465,0.0,2194.980735183479,18192.0,0,70,1,8672,201109407,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2140.6428243800287,0.0,410.0,1263.0,0.0,11268.0,0,5,1,86.0,8,7.0,1,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2827.323558717814,0.1554157629022545,0.2509161837697741,11268.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -9408,2,39.0,3,0.0,9,111,2,0,42,8.0,0.0,0.0,1364.3069441803573,50.3993993035003,0.0,40397.0,0,31,1,8673,201109408,,,350.0,,1.0,0.0,4.0,0.0,1.0,1.0,2793.883660503927,0.0,1000.0,0.0,0.0,26558.0,0,1,2,105.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1414.7063434838576,0.0350200842509062,0.0532685572514443,26558.0,8,4,8,8_1,8_3,8_0_0 -9410,1,46.0,4,178.0,4,111,1,0,56,5.0,0.0,0.0,240.11802217574288,0.0,0.0,22630.0,0,70,2,8676,201109410,,,,323.0,1.0,9.0,4.0,1.0,2.0,1.5,2885.301750197813,0.0,176.0,0.0,0.0,25113.0,0,1,3,70.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,240.11802217574288,0.010610606371000569,0.009561502893949065,16742.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -9411,2,32.0,2,0.0,1,111,6,43,43,7.0,0.0,0.0,251.03247772918573,0.0,2361.8201259812727,49055.0,20,20,1,8677,201109411,,,317.0,,2.0,0.0,5.0,3.0,5.0,2.4,1116.2385337579628,0.0,184.0,1359.0,0.0,55640.0,1,1,2,73.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2612.8526037104584,0.05326373669779754,0.04695996771586015,23183.333333333336,7,4,7,7_1,7_3,7_1_0 -9412,2,51.0,2,0.0,1,112,2,48,47,9.0,0.0,0.0,738.0900568015733,0.0,2801.511437146293,45817.0,60,31,1,8678,201109412,,,410.0,,2.0,1.0,6.0,0.0,2.0,1.5,2049.034964361292,0.0,541.0,1612.0,0.0,52425.0,1,1,1,85.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3539.601493947866,0.0772551999028279,0.06751743431469463,34950.0,9,5,9,9_1,9_0,9_1_0 -9413,2,44.0,3,0.0,1,112,2,47,55,8.0,0.0,0.0,2292.035666223,104.27461924862132,0.0,39739.0,44,43,1,8679,201109413,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2827.3796514142055,0.0,1680.0,0.0,0.0,49321.0,1,1,2,120.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2396.3102854716217,0.06030122261434917,0.04858600363884799,27400.555555555555,8,4,8,8_1,8_0,8_1_0 -9414,2,67.0,3,0.0,5,111,2,77,75,8.0,0.0,0.0,1327.4706566874877,0.0,1098.3593227521444,42836.0,71,50,1,868,201109414,,,534.0,,1.0,1.0,4.0,1.0,3.0,2.0,1078.4993270602442,0.0,973.0,632.0,0.0,51893.0,5,5,1,90.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2425.829979439632,0.05663063730132674,0.04674676699053113,25946.5,8,4,8,8_1,8_2,8_0_0 -9415,1,28.0,4,213.0,4,111,1,85,21,2.0,0.0,0.0,1092.4311485180092,0.0,2258.027927915889,17150.0,71,60,2,8684,201109415,,,500.0,487.0,1.0,0.0,4.0,2.0,4.0,2.1,3233.2962720755027,2100.0,0.0,0.0,0.0,21686.0,6,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,3350.459076433898,0.1953620452731136,0.15449871236898913,10326.666666666666,2,1,2_1,2_0_1,2_4_1,2_0_1 -9416,1,29.0,3,200.0,5,211,4,85,62,3.0,0.0,0.0,1091.4455553442858,0.0,0.0,11056.0,41,31,2,8686,201109416,,,700.0,,1.0,0.0,3.0,1.0,3.0,1.8,3297.601625178777,0.0,800.0,0.0,0.0,23300.0,6,1,3,77.0,2,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1091.4455553442858,0.09871974994069155,0.046843156881729006,12944.444444444443,3,2,3_1,3_0_1,3_1_1,3_0_0 -9417,2,37.0,2,0.0,8,112,6,85,53,2.0,2208.346764721324,763.359475759892,545.7227776721429,0.0,0.0,30535.0,41,42,1,8687,201109417,,,274.0,,1.0,0.0,7.0,2.0,4.0,2.1,2215.647861786483,0.0,400.0,0.0,0.0,23937.0,6,1,2,135.0,5,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3517.429018153359,0.11519335248578218,0.1469452737666942,11398.571428571428,2,1,2_0,2_1_0,2_0_0,2_0_0 -9418,2,79.0,3,0.0,6,111,5,77,78,8.0,0.0,680.0838965860855,818.5841665082144,0.0,0.0,23001.0,71,71,1,8688,201109418,,,80.0,,0.0,4.0,4.0,0.0,2.0,1.5,4896.507026009714,0.0,600.0,0.0,0.0,41915.0,5,5,1,95.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1498.6680630943,0.06515664810635624,0.03575493410698556,27943.333333333332,8,4,8,8_1,8_2,8_0_0 -9419,2,85.0,2,0.0,6,111,1,0,77,9.0,0.0,0.0,300.1475277196786,0.0,0.0,18039.0,0,70,2,8689,201109419,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2974.8260082229317,0.0,220.0,0.0,0.0,29730.0,0,5,3,73.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,300.1475277196786,0.016638811891993933,0.010095779607120032,29730.0,9,5,9,9_0,9_2,9_0_0 -9420,2,80.0,1,0.0,2,111,1,0,72,5.0,0.0,0.0,750.3688192991965,0.0,2519.969965175015,12039.0,0,50,1,869,201109420,,,129.0,,0.0,3.0,7.0,0.0,1.0,1.0,2444.6710346590776,0.0,550.0,1450.0,0.0,18300.0,0,5,1,86.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3270.338784474212,0.27164538453976345,0.1787070374029624,18300.0,5,3,5,5_1,5_3,5_0_1 -9421,2,55.0,3,0.0,6,111,4,35,65,8.0,0.0,0.0,3956.490138123036,0.0,0.0,58677.0,50,60,1,8690,201109421,,,700.0,,4.0,0.0,4.0,2.0,5.0,3.0,882.373223416265,0.0,2900.0,0.0,0.0,80283.0,4,1,1,100.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3956.490138123036,0.06742829623401053,0.04928179238597257,26761.0,8,4,8,8_1,8_3,8_0_0 -9422,2,76.0,1,0.0,3,111,1,74,74,10.0,0.0,0.0,1349.724722279859,0.0,1718.251728004567,59512.0,60,10,2,8691,201109422,,,,,0.0,5.0,6.0,0.0,2.0,1.5,2339.295993674417,1598.0,380.0,0.0,0.0,101291.0,5,5,1,112.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3067.976450284426,0.051552232327672164,0.03028873690934462,67527.33333333333,10,5,10,10_0,10_4,10_0_1 -9423,2,32.0,3,0.0,2,111,1,0,53,8.0,0.0,0.0,2275.663982892836,0.0,0.0,19128.0,0,41,2,8692,201109423,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3023.113388917959,0.0,1668.0,0.0,0.0,27150.0,0,1,1,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2275.663982892836,0.11897030441723316,0.08381819458168825,27150.0,8,4,8,8_0,8_4,8_0_1 -9424,1,60.0,3,130.0,1,120,4,0,78,5.0,0.0,0.0,1050.5163470188752,139.0328256648284,0.0,7538.0,0,71,1,8693,201109424,,,224.0,,0.0,0.0,4.0,0.0,1.0,1.0,2849.386607614528,0.0,770.0,0.0,0.0,16750.0,0,5,3,40.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1189.5491726837035,0.15780700088666802,0.0710178610557435,16750.0,4,2,4_1,4_1_1,4_1_1,4_1_0 -9425,2,72.0,3,0.0,1,300,5,71,71,2.0,0.0,13.8792631956344,753.0974331875572,312.82385774586396,0.0,22310.0,70,70,1,8694,201109425,,,122.0,,0.0,3.0,3.0,0.0,2.0,1.5,1734.6908997328155,0.0,552.0,0.0,0.0,18040.0,5,5,1,53.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1079.8005541290554,0.04839984554590118,0.059855906548173805,12026.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -9426,2,47.0,5,0.0,4,111,2,0,46,5.0,0.0,0.0,841.7773845592804,0.0,698.6399489657628,47820.0,0,41,1,8696,201109426,,,380.0,,2.0,0.0,4.0,2.0,3.0,2.0,1574.4848007894354,0.0,617.0,402.0,0.0,37911.0,0,1,3,70.0,5,4.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1540.4173335250432,0.0322128258788173,0.04063246375788144,18955.5,5,3,5,5_1,5_2,5_0_1 -9427,2,44.0,3,0.0,9,112,2,52,53,9.0,0.0,0.0,736.7257498573929,0.0,1564.1192887293198,29412.0,50,31,1,8699,201109427,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.3,1739.5933821921983,0.0,540.0,900.0,0.0,74388.0,1,1,2,100.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2300.8450385867127,0.07822810548710434,0.030930325302289518,32342.608695652176,9,5,9,9_1,9_1,9_0_0 -9428,1,20.0,3,260.0,4,111,1,0,84,1.0,0.0,0.0,777.6549581828036,0.0,0.0,38198.0,0,41,2,8701,201109428,,,,,0.0,0.0,5.0,0.0,4.0,2.5,3314.1253468305176,0.0,570.0,0.0,0.0,5295.0,0,3,3,100.0,9,7.0,5,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,777.6549581828036,0.020358525529682276,0.14686590333952854,2118.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -9429,2,25.0,5,0.0,6,300,5,69,69,3.0,0.0,138.792631956344,845.8703053918215,173.79103208103552,0.0,27638.0,43,43,1,8702,201109429,,,230.0,,2.0,0.0,5.0,1.0,3.0,1.8,2587.2496379884524,0.0,620.0,0.0,0.0,23104.0,4,4,3,104.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1158.4539694292012,0.04191526049023812,0.050140840089560296,12835.555555555555,3,2,3_0,3_1_0,3_0_0,3_0_0 -9430,2,64.0,3,0.0,1,111,6,77,77,3.0,1029.6099499311345,0.0,941.3717914844465,500.5181723933823,0.0,29246.0,60,50,1,8704,201109430,,,330.0,,0.0,1.0,4.0,0.0,2.0,1.5,1763.3794452487823,0.0,690.0,0.0,0.0,20587.0,6,5,1,113.0,9,7.0,3,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2471.4999138089634,0.0845072801001492,0.12005148461694096,13724.666666666666,3,2,3_0,3_1_0,3_3_0,3_1_0 -9431,2,36.0,2,0.0,4,111,1,46,37,9.0,0.0,0.0,409.2920832541072,0.0,0.0,46996.0,31,10,2,8705,201109431,,,230.0,,2.0,0.0,5.0,2.0,4.0,2.1,3706.188285397873,0.0,300.0,0.0,0.0,64567.0,1,1,2,89.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,409.2920832541072,0.008709083395482747,0.006339028966098893,30746.190476190473,9,5,9,9_0,9_3,9_0_1 -9432,2,23.0,2,0.0,99,111,6,0,84,2.0,47.593680274166466,0.0,709.4396109737858,0.0,0.0,20717.0,0,42,2,8707,201109432,,,78.0,290.0,0.0,0.0,2.0,0.0,1.0,1.0,3074.670543518987,0.0,520.0,0.0,0.0,11010.0,0,3,3,47.0,5,4.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,757.0332912479522,0.03654164653414839,0.06875870038582672,11010.0,2,1,2_0,2_0_0,2_2_0,2_0_0 -9433,2,27.0,1,0.0,3,111,1,45,33,6.0,0.0,0.0,409.2920832541072,0.0,0.0,44104.0,50,43,2,8708,201109433,,,,313.0,2.0,0.0,1.0,0.0,2.0,1.5,3424.778691354148,0.0,300.0,0.0,0.0,30730.0,1,1,3,30.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,409.2920832541072,0.009280157882598113,0.01331897439811608,20486.666666666668,6,3,6,6_0,6_3,6_0_1 -9434,2,53.0,3,0.0,7,112,4,54,64,9.0,0.0,0.0,1637.1683330164287,0.0,0.0,17121.0,50,50,1,8711,201109434,,,696.0,,2.0,2.0,6.0,0.0,2.0,1.5,1010.1773039692346,0.0,1200.0,0.0,0.0,49285.0,1,1,2,85.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.09562340593519238,0.033218389632067136,32856.666666666664,9,5,9,9_1,9_0,9_0_0 -9435,2,70.0,3,0.0,1,120,5,0,78,3.0,0.0,416.377895869032,1091.4455553442858,0.0,0.0,10836.0,0,70,1,8715,201109435,,,92.0,,0.0,0.0,4.0,0.0,1.0,1.0,4033.298172304123,0.0,800.0,0.0,0.0,14485.0,0,5,1,80.0,0,2.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1507.8234512133179,0.13914945101636378,0.1040955092311576,14485.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -9436,2,65.0,3,0.0,1,221,1,0,65,3.0,0.0,0.0,334.2552013241875,0.0,1466.7963107639398,9667.0,0,50,2,8716,201109436,,,,300.0,1.0,2.0,3.0,0.0,1.0,1.0,3352.8103998238025,0.0,245.0,844.0,0.0,14320.0,0,6,3,42.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1801.0515120881273,0.1863092492074198,0.12577175363743906,14320.0,3,2,3_0,3_0_0,3_1_0,3_1_0 -9437,2,59.0,3,0.0,4,111,1,0,78,4.0,0.0,0.0,409.2920832541072,0.0,165.10148047698374,6503.0,0,71,8,8719,201109437,,,97.0,237.0,0.0,0.0,3.0,0.0,1.0,1.0,3779.255045592249,0.0,300.0,95.0,0.0,14798.0,0,5,3,60.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,574.3935637310909,0.08832747404753051,0.038815621282003714,14798.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -9438,2,41.0,4,0.0,7,300,2,55,63,3.0,0.0,69.396315978172,1132.3747636696964,1459.8446694806985,0.0,32331.0,42,50,1,8720,201109438,,,,,3.0,0.0,5.0,2.0,4.0,2.5,1710.110301424082,0.0,830.0,0.0,0.0,34308.0,1,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2661.6157491285667,0.08232395376352623,0.07758003232856962,13723.2,3,2,3_0,3_1_0,3_0_0,3_0_0 -9439,2,86.0,3,0.0,6,111,5,0,78,2.0,0.0,41.637789586903196,709.4396109737858,0.0,0.0,9494.0,0,71,1,8723,201109439,,,85.0,,0.0,3.0,3.0,0.0,1.0,1.0,4660.617924079082,0.0,520.0,0.0,0.0,10040.0,0,5,1,90.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,751.077400560689,0.07911074368661143,0.07480850603194113,10040.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -9440,1,47.0,3,141.0,5,111,1,85,64,2.0,0.0,0.0,545.7227776721429,0.0,201.5975972140012,49714.0,12,50,8,8724,201109440,,,,209.0,1.0,0.0,4.0,3.0,5.0,2.4,1409.4747959301085,0.0,400.0,116.0,0.0,28179.0,6,1,3,76.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,747.3203748861441,0.015032392784449936,0.02652047180120459,11741.25,2,1,2_1,2_0_1,2_3_1,2_0_0 -9441,2,59.0,3,0.0,2,111,1,77,78,4.0,0.0,0.0,573.00891655575,0.0,0.0,12722.0,71,71,2,8726,201109441,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3618.427923850926,0.0,420.0,0.0,0.0,22350.0,4,4,1,40.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,573.00891655575,0.04504078891335875,0.02563798284365772,14900.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -9442,2,54.0,4,0.0,2,112,2,47,43,7.0,0.0,0.0,573.00891655575,0.0,4344.775802025888,29056.0,43,33,1,8727,201109442,,,400.0,,2.0,0.0,6.0,1.0,3.0,2.0,4343.1443926302345,0.0,420.0,2500.0,0.0,48687.0,4,1,2,160.0,7,0.0,4,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4917.784718581638,0.16925195204369625,0.10100816888659474,24343.5,7,4,7,7_1,7_0,7_0_1 -9443,2,77.0,4,0.0,2,111,2,0,71,1.0,0.0,44.41364222603008,470.68589574222324,151.1981979105009,0.0,13266.0,0,70,1,8728,201109443,,,,,0.0,2.0,6.0,0.0,1.0,1.0,1766.7843788620269,0.0,345.0,0.0,0.0,8761.0,0,5,1,180.0,6,4.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,666.2977358787542,0.0502259713462049,0.07605270355881226,8761.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -9444,2,85.0,3,0.0,4,111,2,77,78,9.0,0.0,0.0,321.4868808495856,0.0,664.5053616438188,21931.0,71,50,1,873,201109444,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2002.8911269616804,618.0,0.0,0.0,0.0,46418.0,5,5,1,76.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,985.9922424934043,0.04495883646406476,0.021241592539389984,30945.333333333332,9,5,9,9_1,9_2,9_0_1 -9445,1,91.0,2,150.0,1,111,4,0,72,3.0,0.0,0.0,1391.5930830639643,52.13730962431066,0.0,7113.0,0,70,1,8732,201109445,,,106.0,190.0,0.0,5.0,2.0,0.0,1.0,1.0,2356.7555367685723,0.0,1020.0,0.0,0.0,12559.0,0,5,3,53.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1443.730392688275,0.2029706723869359,0.11495583985096544,12559.0,2,1,2_1,2_1_1,2_2_1,2_1_0 -9446,2,33.0,3,0.0,99,112,1,85,67,6.0,0.0,0.0,687.6106998669001,187.69431464751835,0.0,31208.0,70,71,8,8733,201109446,,,,338.0,1.0,0.0,4.0,2.0,4.0,2.1,5848.076514345056,0.0,504.0,0.0,0.0,44336.0,6,1,3,80.0,9,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,875.3050145144184,0.02804745624565555,0.019742534611025316,21112.38095238095,6,3,6,6_0,6_1,6_0_0 -9447,1,42.0,2,112.0,7,221,2,56,48,2.0,0.0,0.0,900.4425831590357,0.0,1494.6028758969055,33965.0,50,50,1,8734,201109447,,,1150.0,,2.0,0.0,4.0,2.0,4.0,2.3,2123.8862564859246,0.0,660.0,860.0,0.0,23618.0,1,1,3,90.0,1,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2395.045459055941,0.07051510257782839,0.10140763227436451,10268.695652173914,2,1,2_1,2_1_1,2_1_1,2_0_0 -9448,2,84.0,1,0.0,2,111,1,0,77,6.0,0.0,0.0,264.6755471709893,0.0,217.2387901012944,9888.0,0,70,2,8736,201109448,,,,,0.0,5.0,4.0,0.0,1.0,1.0,3662.448541818761,0.0,194.0,125.0,0.0,19785.0,0,5,1,65.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,481.9143372722837,0.04873729139080539,0.024357560640499556,19785.0,6,3,6,6_0,6_3,6_0_1 -9449,2,65.0,1,0.0,2,111,1,77,75,9.0,0.0,0.0,327.43366660328576,0.0,173.79103208103552,37626.0,50,41,2,8737,201109449,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2376.055207089262,0.0,240.0,100.0,0.0,43827.0,5,5,1,100.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,501.2246986843213,0.013321232623300944,0.011436436413268563,29218.0,9,5,9,9_0,9_3,9_0_1 -9450,2,37.0,3,0.0,7,111,5,47,21,8.0,634.5824036555529,0.0,682.1534720901786,90.37133668213848,0.0,30875.0,60,50,1,8739,201109450,,,220.0,,2.0,0.0,8.0,2.0,4.0,2.1,6161.079286680739,0.0,500.0,0.0,0.0,54753.0,1,1,1,150.0,4,4.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1407.1072124278699,0.04557432266972858,0.025699180180590468,26072.85714285714,8,4,8,8_1,8_2,8_0_0 -9451,2,89.0,3,0.0,1,111,2,0,75,9.0,0.0,0.0,368.36287492869644,0.0,3110.859474250536,16514.0,0,33,1,8740,201109451,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2804.477091413431,0.0,270.0,1790.0,0.0,30992.0,0,5,5,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3479.2223491792324,0.21068319905408942,0.11226194983154467,30992.0,9,5,9,9_1,9_4,9_1_0 -9452,2,54.0,2,0.0,99,111,2,0,62,5.0,0.0,0.0,818.5841665082144,0.0,0.0,19697.0,0,50,2,8741,201109452,,,184.0,330.0,1.0,2.0,2.0,0.0,1.0,1.0,2858.9644228438,0.0,600.0,0.0,0.0,18124.0,0,1,3,32.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,818.5841665082144,0.041558824516840856,0.04516575626286771,18124.0,5,3,5,5_0,5_2,5_0_0 -9453,2,81.0,1,0.0,99,111,2,86,77,5.0,3331.5576191916525,0.0,496.60772768165003,0.0,0.0,15256.0,70,70,1,8742,201109453,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1388.3781581695814,0.0,364.0,0.0,0.0,27430.0,5,5,1,88.0,7,5.0,3,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3828.1653468733025,0.2509285098894404,0.13956125945582584,18286.666666666668,5,3,5,5_1,5_2,5_0_0 -9454,2,42.0,3,0.0,1,300,5,62,34,9.0,0.0,1049.2722975899605,1732.6698191090536,208.54923849724264,0.0,55775.0,42,20,1,8746,201109454,,,592.0,,2.0,0.0,6.0,0.0,2.0,1.5,1701.0705755442207,0.0,1270.0,0.0,0.0,44874.0,1,1,2,127.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2990.491355196257,0.053617057018310293,0.06664196093943613,29916.0,9,5,9,9_1,9_1,9_1_0 -9455,2,52.0,4,0.0,5,111,2,45,46,7.0,0.0,0.0,163.71683330164288,0.0,330.2029609539675,40641.0,43,50,2,8747,201109455,,,,,2.0,0.0,4.0,2.0,4.0,2.5,3548.934823792195,0.0,120.0,190.0,0.0,57660.0,1,1,2,85.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,493.9197942556103,0.012153239198238486,0.00856607343488745,23064.0,7,4,7,7_0,7_3,7_0_0 -9456,2,52.0,1,0.0,8,111,2,46,38,10.0,0.0,0.0,472.0502026864036,0.0,1520.6715307090608,45848.0,41,31,1,8750,201109456,,,435.0,,2.0,2.0,6.0,0.0,2.0,1.5,2247.1362590472613,0.0,346.0,875.0,0.0,68589.0,1,1,2,150.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1992.7217333954645,0.0434636567221136,0.029053080426824484,45726.0,10,5,10,10_1,10_3,10_0_0 -9457,2,57.0,2,0.0,7,111,2,42,33,10.0,0.0,0.0,432.48530130517327,0.0,2228.0010312788754,35531.0,30,12,1,8751,201109457,,,230.0,,2.0,2.0,5.0,0.0,2.0,1.5,1033.6527152566223,0.0,317.0,1282.0,0.0,78785.0,1,1,1,152.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2660.486332584049,0.07487789064715457,0.033768945009634434,52523.333333333336,10,5,10,10_1,10_2,10_0_0 -9458,2,54.0,3,0.0,2,111,2,85,62,2.0,0.0,0.0,409.2920832541072,0.0,3267.2714031234677,22999.0,71,50,2,8753,201109458,,,,490.0,1.0,1.0,4.0,1.0,3.0,1.8,2133.365038578381,0.0,300.0,1880.0,0.0,21471.0,6,1,3,68.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3676.563486377575,0.15985753669192465,0.17123391953693703,11928.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_1 -9459,2,79.0,3,0.0,2,111,2,75,72,5.0,0.0,0.0,900.4425831590357,0.0,938.4715732375919,21020.0,70,70,2,8757,201109459,,,,426.0,0.0,3.0,4.0,0.0,2.0,1.5,3181.5951566025806,0.0,660.0,540.0,0.0,25230.0,5,5,3,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1838.9141563966277,0.08748402266396897,0.07288601491861386,16820.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -9460,2,53.0,3,0.0,8,111,2,0,47,9.0,0.0,0.0,306.92113220267873,0.0,634.3983226049402,27154.0,0,70,2,8758,201109460,,,,594.0,1.0,2.0,3.0,0.0,1.0,1.0,2873.409362927914,590.0,0.0,0.0,0.0,34514.0,0,1,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,941.319454807619,0.03466595915178681,0.027273554349180593,34514.0,9,5,9,9_0,9_4,9_0_0 -9461,2,41.0,4,0.0,99,112,2,55,56,3.0,0.0,0.0,351.99119159853217,43.44775802025888,0.0,19222.0,71,50,2,876,201109461,,,,600.0,2.0,4.0,3.0,2.0,4.0,2.5,6151.015832767993,0.0,258.0,0.0,0.0,33370.0,1,1,3,75.0,8,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,395.43894961879107,0.020572206306252786,0.011850133341887656,13348.0,3,2,3_0,3_0_0,3_1_0,3_0_0 -9462,2,43.0,1,0.0,8,112,4,45,37,9.0,0.0,0.0,2545.7967578405464,0.0,0.0,38169.0,60,20,1,8762,201109462,,,532.0,,2.0,0.0,5.0,2.0,4.0,2.1,1821.605955010089,0.0,1866.0,0.0,0.0,64880.0,1,1,2,140.0,7,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2545.7967578405464,0.06669802085044267,0.03923854435635861,30895.238095238095,9,5,9,9_1,9_0,9_0_0 -9463,2,54.0,1,0.0,1,111,2,0,46,7.0,0.0,0.0,291.96168605459644,0.0,1911.7013528913908,24909.0,0,50,2,8763,201109463,,,107.0,,1.0,2.0,4.0,0.0,1.0,1.0,2204.444450506981,0.0,214.0,1100.0,0.0,24452.0,0,1,1,83.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2203.6630389459874,0.08846854706917127,0.0901219957036638,24452.0,7,4,7,7_0,7_3,7_1_0 -9464,1,30.0,3,62.0,9,112,4,67,62,4.0,0.0,0.0,1186.9470414369107,140.77073598563877,0.0,31719.0,41,71,1,8764,201109464,,,78.0,,2.0,0.0,4.0,2.0,4.0,2.1,2818.9772431018564,0.0,870.0,0.0,0.0,31223.0,1,1,3,82.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1327.7177774225495,0.04185875271674862,0.042523709362410705,14868.095238095237,3,2,3_1,3_1_1,3_0_1,3_0_0 -9465,1,38.0,3,229.0,6,111,1,0,84,1.0,0.0,0.0,218.28911106885715,0.0,258.9486378007429,5465.0,0,71,2,8765,201109465,149.0,149.0,,,0.0,0.0,1.0,0.0,1.0,1.0,3257.2354356114015,0.0,160.0,149.0,0.0,8843.0,0,3,3,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,477.23774886960007,0.08732621205299178,0.053967855803415135,8843.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -9466,2,76.0,2,0.0,5,221,5,77,72,5.0,0.0,624.566843803548,341.0767360450893,208.54923849724264,0.0,14912.0,71,50,1,8766,201109466,,,120.0,,0.0,2.0,3.0,0.0,2.0,1.5,5065.642137340785,0.0,250.0,0.0,0.0,26858.0,5,5,1,75.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1174.19281834588,0.07874147118735783,0.04371855009106709,17905.333333333332,5,3,5,5_1,5_1,5_0_0 -9467,1,22.0,2,105.0,1,111,1,0,56,1.0,0.0,0.0,43.65782221377143,0.0,59.088950907552075,15496.0,0,50,2,8770,201109467,34.0,34.0,,72.0,1.0,0.0,1.0,0.0,1.0,1.0,3901.150507607137,0.0,32.0,34.0,0.0,6355.0,0,3,3,27.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,102.74677312132351,0.00663053517819589,0.01616786359108159,6355.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -9468,2,51.0,4,0.0,1,111,2,0,54,4.0,0.0,0.0,313.79059716148214,0.0,1737.9103208103552,14724.0,0,71,2,8772,201109468,,,,250.0,1.0,1.0,3.0,0.0,1.0,1.0,3015.692756041842,0.0,230.0,1000.0,0.0,15973.0,0,1,3,63.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2051.7009179718375,0.13934399062563416,0.12844806348036295,15973.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -9469,2,37.0,3,0.0,9,221,2,67,21,7.0,0.0,0.0,523.8938665652572,0.0,1564.1192887293198,42288.0,50,50,2,8775,201109469,,,412.0,750.0,2.0,1.0,4.0,1.0,3.0,1.8,5161.3472438261315,0.0,384.0,900.0,0.0,40523.0,1,1,3,92.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2088.013155294577,0.04937602050923611,0.051526618347471236,22512.777777777777,7,4,7,7_0,7_1,7_0_0 -9470,2,46.0,2,0.0,6,111,2,54,38,8.0,0.0,0.0,409.2920832541072,0.0,1216.5372245672486,44676.0,43,20,2,8776,201109470,,,,,2.0,0.0,4.0,2.0,4.0,2.1,5254.501629632085,0.0,300.0,700.0,0.0,53381.0,1,1,1,86.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1625.8293078213558,0.0363915594014987,0.030457078507734135,25419.52380952381,8,4,8,8_0,8_4,8_0_0 -9471,2,50.0,5,0.0,1,111,2,0,42,6.0,0.0,0.0,368.36287492869644,0.0,1096.6214124313342,23890.0,0,20,1,8777,201109471,,,206.0,,1.0,0.0,4.0,1.0,2.0,1.5,1159.0113509941593,0.0,270.0,631.0,0.0,30889.0,0,1,3,60.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1464.9842873600305,0.061322071467560926,0.04742737826928779,20592.666666666668,6,3,6,6_1,6_2,6_1_0 -9472,2,42.0,3,0.0,1,111,2,0,54,9.0,0.0,0.0,384.95192852539367,0.0,795.6860317417894,13536.0,0,20,2,878,201109472,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3004.376934671947,740.0,0.0,0.0,0.0,30687.0,0,1,2,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1180.6379602671832,0.08722207153274107,0.038473554282503444,30687.0,9,5,9,9_0,9_4,9_1_0 -9473,1,61.0,4,247.0,1,221,2,0,86,2.0,0.0,485.77421184720396,155.5309916365607,0.0,719.494872815487,4576.0,0,50,1,8780,201109473,,,,67.0,0.0,7.0,3.0,0.0,1.0,1.0,1481.2240615486944,0.0,114.0,414.0,0.0,9604.0,0,6,3,45.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1360.8000762992517,0.2973776390514099,0.14169097004365386,9604.0,1,1,1_1,1_1_1,1_1_1,1_1_0 -9474,2,38.0,2,0.0,8,120,2,46,46,9.0,2854.034360440849,402.4986326733976,714.8968387505072,0.0,0.0,89484.0,31,41,1,8782,201109474,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1678.0678414769295,0.0,524.0,0.0,0.0,61732.0,1,1,2,120.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3971.4298318647534,0.044381451788752774,0.06433340620528662,29396.190476190473,9,5,9,9_1,9_1,9_0_0 -9475,2,51.0,3,0.0,7,111,4,55,42,5.0,0.0,333.10231669522557,259.2183193942679,86.89551604051776,0.0,35302.0,42,60,1,8783,201109475,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2755.0328920014535,0.0,190.0,0.0,0.0,38219.0,1,1,1,80.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,679.2161521300113,0.019240160674466357,0.017771688221303837,18199.52380952381,5,3,5,5_1,5_3,5_0_0 -9476,2,50.0,1,0.0,1,111,2,37,37,10.0,0.0,0.0,955.0148609262501,0.0,2606.865481215533,137909.0,12,12,2,8784,201109476,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2479.512295522962,0.0,700.0,1500.0,0.0,281441.0,1,1,1,145.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3561.880342141783,0.0258277584649427,0.012655868697672986,112576.4,10,5,10,10_0,10_4,10_1_0 -9477,2,51.0,5,0.0,6,111,4,0,85,2.0,0.0,0.0,364.2699540961554,625.6477154917279,0.0,7070.0,0,70,1,8786,201109477,,,600.0,,0.0,3.0,6.0,0.0,1.0,1.0,1700.578313697027,0.0,267.0,0.0,0.0,10132.0,0,7,1,105.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,989.9176695878833,0.14001664350606555,0.09770209924870542,10132.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -9478,2,40.0,4,0.0,2,400,2,54,64,3.0,1348.4876077680499,0.0,1746.3128885508572,86.89551604051776,0.0,15331.0,50,50,1,8787,201109478,,,200.0,,2.0,0.0,4.0,2.0,4.0,2.3,1146.8863787428695,0.0,1280.0,0.0,0.0,33682.0,6,1,3,90.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3181.6960123594245,0.20753349503355453,0.09446279948813682,14644.347826086958,3,2,3_0,3_1_0,3_0_0,3_0_1 -9479,2,51.0,4,0.0,1,112,6,0,55,3.0,3331.5576191916525,0.0,818.5841665082144,187.69431464751835,0.0,36894.0,0,50,1,8788,201109479,,,260.0,,1.0,0.0,4.0,1.0,2.0,1.5,1201.5746567770238,0.0,600.0,0.0,0.0,21353.0,0,1,2,99.0,10,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4337.836100347386,0.1175756518769281,0.20314878941354308,14235.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0 -9480,2,60.0,1,0.0,9,111,2,0,74,8.0,1351.6605197863275,69.396315978172,706.4560922810416,0.0,160.21245774260353,36574.0,0,10,1,8789,201109480,,,480.0,,0.0,1.0,6.0,0.0,1.0,1.0,1781.9096747292017,149.0,461.0,0.0,0.0,25220.0,0,5,1,155.0,7,5.0,1,8,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2287.7253857881446,0.06255059292907926,0.09071076073703983,25220.0,8,4,8,8_1,8_2,8_0_0 -9481,1,63.0,4,32.0,99,111,1,0,78,3.0,0.0,0.0,316.5192110498429,0.0,208.54923849724264,7699.0,0,70,2,879,201109481,,,276.0,220.0,0.0,5.0,2.0,0.0,1.0,1.0,4922.240712871911,0.0,232.0,120.0,0.0,13256.0,0,5,3,51.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,525.0684495470855,0.06819956481972796,0.03960987096764375,13256.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -9482,2,62.0,2,0.0,4,111,1,75,56,9.0,0.0,0.0,586.6519859975537,0.0,0.0,50573.0,71,31,2,8792,201109482,980.0,980.0,,,1.0,1.0,4.0,0.0,2.0,1.5,3140.555660439847,0.0,430.0,0.0,980.0,50950.0,5,1,3,75.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,586.6519859975537,0.011600102544787804,0.011514268616242466,33966.666666666664,9,5,9,9_0,9_4,9_0_1 -9483,2,37.0,3,0.0,4,111,2,0,46,8.0,0.0,0.0,425.66376658427146,0.0,2433.074449134497,48525.0,0,60,1,8795,201109483,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2643.717685525716,0.0,312.0,1400.0,0.0,35664.0,0,1,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2858.7382157187685,0.05891268862892877,0.08015753184496323,27433.846153846152,8,4,8,8_1,8_4,8_0_1 -9484,2,30.0,2,0.0,9,300,2,56,13,5.0,0.0,0.0,2092.846852372668,0.0,0.0,30054.0,20,43,1,8796,201109484,,,,,2.0,0.0,5.0,0.0,2.0,1.5,3373.610021922957,0.0,1534.0,0.0,0.0,26508.0,1,1,2,190.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2092.846852372668,0.06963621655595488,0.07895151849904436,17672.0,5,3,5,5_1,5_0,5_0_0 -9485,2,74.0,2,0.0,7,111,2,75,75,10.0,0.0,0.0,678.7584332218828,0.0,556.9802222192526,80060.0,41,41,2,8798,201109485,,,,,0.0,0.0,3.0,0.0,2.0,1.5,2348.509178929676,518.0,300.0,0.0,0.0,58841.0,5,5,1,81.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1235.7386554411355,0.015435156825395148,0.021001319750533397,39227.333333333336,10,5,10,10_0,10_2,10_0_0 -9486,2,30.0,2,0.0,8,112,4,55,46,8.0,0.0,0.0,1697.1978385603645,0.0,0.0,51809.0,43,50,1,8799,201109486,,,600.0,,2.0,0.0,5.0,1.0,3.0,1.8,3233.228154649307,0.0,1244.0,0.0,0.0,45058.0,1,1,2,107.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1697.1978385603645,0.032758745363939946,0.03766695899863209,25032.222222222223,8,4,8,8_1,8_0,8_0_0 -9487,0,35.0,3,0.0,1,221,4,85,22,1.0,0.0,624.566843803548,2455.752499524643,0.0,0.0,22299.0,50,43,1,88,201109487,,,,,1.0,0.0,5.0,1.0,3.0,1.8,3691.932872427387,0.0,1800.0,0.0,0.0,16137.0,4,1,5,120.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3080.3193433281913,0.1381371067459613,0.19088550184843472,8965.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -9488,2,32.0,2,0.0,9,112,2,43,47,8.0,0.0,0.0,446.1283707469768,0.0,1256.509161945887,34245.0,33,31,1,880,201109488,,,190.0,,2.0,0.0,5.0,1.0,3.0,1.8,2659.6584587847633,0.0,327.0,723.0,0.0,46166.0,1,1,2,94.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1702.6375326928637,0.04971930304257158,0.036880767939454655,25647.777777777777,8,4,8,8_1,8_1,8_0_0 -9489,2,65.0,2,0.0,1,300,5,0,43,10.0,0.0,832.755791738064,1195.132883101993,79.94387475727635,0.0,18718.0,0,20,1,8800,201109489,,,86.0,,1.0,1.0,3.0,0.0,1.0,1.0,1489.7877664837858,0.0,876.0,0.0,0.0,39630.0,0,1,3,70.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2107.832549597333,0.11260992358143675,0.053187800898242064,39630.0,10,5,10,10_1,10_0,10_1_0 -9490,2,55.0,3,0.0,5,112,2,11,11,6.0,1586.456009138882,0.0,886.7995137172322,243.30744491344973,0.0,28210.0,41,50,1,8801,201109490,,,,,4.0,0.0,5.0,3.0,5.0,3.0,1203.4536244168708,0.0,650.0,0.0,0.0,60855.0,1,1,1,130.0,8,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2716.562967769564,0.09629787195212916,0.04463993045385858,20285.0,6,3,6,6_1,6_0,6_0_0 -9491,2,37.0,2,0.0,6,112,4,42,42,9.0,0.0,111.0341055650752,1874.5577413038109,0.0,0.0,66753.0,30,10,1,8802,201109491,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1964.7700861962737,0.0,1374.0,0.0,0.0,63827.0,1,1,2,140.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1985.591846868886,0.029745357465115967,0.031108964025708338,35459.444444444445,9,5,9,9_1,9_0,9_0_0 -9492,2,79.0,2,0.0,4,111,2,78,78,5.0,0.0,0.0,382.0059443705,0.0,1181.7790181510416,22096.0,70,50,1,8804,201109492,,,155.0,,0.0,8.0,5.0,0.0,2.0,1.5,1562.9676951457316,0.0,280.0,680.0,0.0,26259.0,5,5,1,100.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1563.7849625215415,0.07077231003446513,0.059552342531000474,17506.0,5,3,5,5_1,5_2,5_0_1 -9493,2,63.0,4,0.0,8,111,2,0,77,5.0,0.0,0.0,293.3259929987768,0.0,1140.069170451593,15440.0,0,41,2,8808,201109493,,,,490.0,0.0,2.0,3.0,0.0,1.0,1.0,2504.8155951466047,0.0,215.0,656.0,0.0,17755.0,0,5,3,60.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1433.3951634503699,0.0928364743167338,0.08073191571108813,17755.0,5,3,5,5_0,5_3,5_0_0 -9494,1,26.0,3,380.0,3,111,2,85,52,1.0,0.0,0.0,518.4366387885358,0.0,1425.0864630644912,21924.0,71,71,2,8809,201109494,,,670.0,,1.0,0.0,3.0,3.0,5.0,2.4,4020.6725564233902,0.0,380.0,820.0,0.0,21780.0,6,1,3,72.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1943.5231018530271,0.08864819840599467,0.08923430219710868,9075.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -9495,0,49.0,5,0.0,1,111,2,0,22,1.0,0.0,0.0,545.7227776721429,0.0,695.1641283241421,21373.0,0,60,2,881,201109495,,,,,1.0,1.0,2.0,0.0,1.0,1.0,3095.610259332851,0.0,400.0,400.0,0.0,7815.0,0,1,5,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1240.886905996285,0.05805862097020937,0.15878271349920473,7815.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -9496,1,64.0,3,129.0,5,111,1,0,78,5.0,0.0,0.0,249.69854823268778,0.0,516.1206692379175,16137.0,0,70,2,8811,201109496,,,,113.0,0.0,1.0,2.0,0.0,1.0,1.0,2271.644437337468,480.0,0.0,0.0,0.0,18176.0,0,5,3,45.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,765.8192174706053,0.04745734755348611,0.042133539693585235,18176.0,5,3,5,5_0,5_2,5_0_0 -9497,2,66.0,1,0.0,5,112,6,74,74,10.0,3966.1400228472053,0.0,1376.686425068608,0.0,1421.4823431927643,52638.0,20,12,1,8812,201109497,,,161.0,,0.0,3.0,7.0,0.0,2.0,1.5,934.8029285998024,1322.0,505.0,0.0,0.0,64473.0,5,5,1,155.0,9,2.0,3,3,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6764.308791108578,0.1285061892759713,0.1049169232253591,42982.0,10,5,10,10_1,10_1,10_0_0 -9498,2,58.0,3,0.0,1,111,2,72,77,2.0,1081.9629982327176,0.0,291.3149729381358,0.0,602.1407807775704,23881.0,50,50,1,8813,201109498,,,376.0,,0.0,4.0,7.0,0.0,2.0,1.5,2825.3529252112203,560.0,0.0,0.0,0.0,18066.0,7,5,1,159.0,4,3.0,3,5,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1975.4187519484237,0.08271926435025434,0.1093445561800301,12044.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -9499,2,71.0,2,0.0,99,112,2,0,74,9.0,0.0,97.1548423694408,313.79059716148214,1911.7013528913908,0.0,20698.0,0,10,1,8814,201109499,,,198.0,,0.0,3.0,6.0,0.0,1.0,1.0,2039.3366586846762,0.0,230.0,0.0,0.0,32517.0,0,5,1,150.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2322.646792422314,0.11221600117993592,0.07142869245078924,32517.0,9,5,9,9_1,9_0,9_0_0 -9500,2,56.0,1,0.0,5,112,2,78,67,8.0,1976.724187387047,316.4472008604643,837.6844637267393,0.0,0.0,25566.0,70,50,1,8815,201109500,,,177.0,,1.0,0.0,5.0,0.0,2.0,1.5,1162.0569397886143,0.0,614.0,0.0,0.0,38671.0,5,1,1,112.0,7,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3130.855851974251,0.12246170116460342,0.08096133671159916,25780.666666666668,8,4,8,8_1,8_0,8_0_0 -9501,2,86.0,3,0.0,1,112,2,0,75,9.0,9518.736054833293,693.9631597817199,536.1726290628804,156.41192887293198,0.0,47984.0,0,70,1,8817,201109501,,,293.0,,0.0,0.0,11.0,1.0,2.0,1.5,1739.5556913201956,0.0,393.0,0.0,0.0,44940.0,0,5,1,275.0,6,0.0,2,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,10905.283772550827,0.22726916831758143,0.2426631903104323,29960.0,9,5,9,9_1,9_0,9_1_0 -9502,0,33.0,3,0.0,4,111,1,0,22,8.0,0.0,0.0,613.9381248811608,0.0,0.0,61746.0,0,50,2,882,201109502,,,,,1.0,0.0,4.0,2.0,3.0,1.6,3557.2408242238016,0.0,450.0,0.0,0.0,44332.0,0,1,5,75.0,8,7.0,2,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,613.9381248811608,0.00994296189034368,0.013848644881375998,27707.5,8,4,8,8_0,8_3,8_0_1 -9503,2,52.0,1,0.0,8,111,2,33,38,10.0,0.0,0.0,2219.7273981814415,0.0,0.0,63721.0,10,20,1,8824,201109503,,,,,2.0,0.0,6.0,1.0,3.0,1.8,1237.4371686820639,0.0,1627.0,0.0,0.0,109078.0,1,1,1,140.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2219.7273981814415,0.034835099860037376,0.020349909222587885,60598.88888888889,10,5,10,10_1,10_3,10_0_0 -9504,2,28.0,3,0.0,1,111,2,52,46,6.0,0.0,0.0,518.4366387885358,0.0,868.9551604051776,26728.0,31,20,1,8825,201109504,,,360.0,,2.0,0.0,2.0,0.0,2.0,1.5,2283.950077484985,0.0,380.0,500.0,0.0,30110.0,1,1,3,60.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1387.3917991937133,0.051907804519369695,0.046077442683285064,20073.333333333332,6,3,6,6_1,6_2,6_1_0 -9505,2,52.0,3,0.0,7,112,2,22,22,6.0,0.0,0.0,1910.0297218525002,0.0,0.0,33448.0,50,71,1,8826,201109505,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2908.1118285768644,0.0,1400.0,0.0,0.0,45934.0,1,1,2,120.0,9,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1910.0297218525002,0.05710445233952703,0.0415820464547503,19971.304347826088,6,3,6,6_1,6_0,6_0_0 -9506,1,30.0,5,350.0,4,111,1,0,52,3.0,0.0,0.0,68.21534720901786,0.0,312.82385774586396,11542.0,0,60,2,8827,201109506,,,,100.0,1.0,0.0,5.0,4.0,5.0,2.2,2388.563676337863,0.0,50.0,180.0,0.0,29556.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,381.0392049548818,0.033013273692157494,0.01289211006072817,13434.545454545454,3,2,3_1,3_0_1,3_4_1,3_0_1 -9507,2,80.0,3,0.0,9,300,4,75,78,7.0,0.0,0.0,1622.1239618609081,173.79103208103552,1254.8183770846867,25148.0,70,71,1,8828,201109507,,,325.0,,0.0,2.0,3.0,0.0,2.0,1.5,2585.3103882580886,1167.0,744.0,0.0,0.0,34470.0,5,5,3,70.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3050.7333710266303,0.12131117269868898,0.08850401424504295,22980.0,7,4,7,7_1,7_0,7_0_0 -9508,2,38.0,2,0.0,5,112,5,42,47,7.0,0.0,624.566843803548,2046.460416270536,104.27461924862132,0.0,43436.0,31,50,1,8829,201109508,,,620.0,,2.0,0.0,6.0,2.0,4.0,2.3,6659.442358124406,0.0,1500.0,0.0,0.0,56325.0,1,1,2,120.0,9,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2775.3018793227047,0.06389404823931082,0.0492730027398616,24489.13043478261,7,4,7,7_1,7_1,7_0_0 -9510,2,83.0,4,0.0,2,112,6,72,72,2.0,888.4153651177741,0.0,804.9410970664107,281.54147197127753,0.0,7178.0,71,71,1,8831,201109510,,,160.0,,0.0,9.0,3.0,0.0,2.0,1.5,3105.0377764885393,0.0,590.0,0.0,0.0,15520.0,5,5,1,70.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1974.8979341554623,0.27513206104144083,0.12724857823166638,10346.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_1 -9511,2,51.0,3,0.0,7,400,2,56,67,10.0,0.0,0.0,709.4396109737858,225.92834170534618,0.0,21564.0,50,71,1,8832,201109511,,,120.0,,2.0,0.0,4.0,0.0,3.0,2.0,2073.9998026274466,0.0,520.0,0.0,0.0,93872.0,1,1,2,117.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,935.3679526791319,0.04337636582633704,0.009964291297502257,46936.0,10,5,10,10_1,10_0,10_0_0 -9513,2,51.0,2,0.0,1,111,1,85,38,8.0,0.0,0.0,955.0148609262501,0.0,521.3730962431066,45732.0,71,12,2,8835,201109513,,,,,1.0,0.0,4.0,2.0,4.0,2.5,2787.6849293362166,0.0,700.0,300.0,0.0,63193.0,6,1,1,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1476.3879571693567,0.032283476715852286,0.023363156633952442,25277.2,8,4,8,8_0,8_4,8_1_0 -9514,2,87.0,3,0.0,1,400,2,0,71,4.0,2466.9390942109617,763.359475759892,343.80534993345003,156.41192887293198,0.0,21366.0,0,70,1,8836,201109514,,,131.0,,0.0,0.0,5.0,0.0,2.0,1.5,2608.4154889331658,0.0,252.0,0.0,0.0,23178.0,0,5,5,84.0,0,0.0,5,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3730.515848777236,0.17460057328359244,0.16095072261529192,15452.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -9515,1,75.0,4,130.0,4,111,1,0,77,2.0,0.0,0.0,140.4554333808869,0.0,290.31787644632857,6348.0,0,70,2,8837,201109515,,,,250.0,0.0,3.0,3.0,0.0,1.0,1.0,3077.4521915150185,270.0,0.0,0.0,0.0,10069.0,0,5,3,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,430.7733098272155,0.06785968963881782,0.042782134256352716,10069.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -9516,1,32.0,4,67.0,4,111,1,0,84,1.0,0.0,0.0,163.71683330164288,0.0,0.0,13952.0,0,10,2,8839,201109516,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,7663.196899624699,0.0,120.0,0.0,0.0,5804.0,0,3,3,13.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,163.71683330164288,0.011734291377698028,0.02820758671634095,5804.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -9517,0,48.0,4,0.0,99,111,6,0,54,6.0,2855.620816449988,0.0,1538.938233035443,135.55700502320772,0.0,30680.0,0,31,1,884,201109517,,,210.0,,1.0,0.0,5.0,1.0,2.0,1.3,2656.0609977804065,0.0,1128.0,0.0,0.0,26682.0,0,1,5,80.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4530.1160545086395,0.14765697700484484,0.16978172755073231,20524.615384615383,6,3,6,6_1,6_3,6_0_0 -9518,2,58.0,3,0.0,6,120,5,0,46,4.0,0.0,138.792631956344,442.03544991443573,48.661488982689946,0.0,37386.0,0,70,1,8841,201109518,,,250.0,,1.0,2.0,5.0,0.0,1.0,1.0,5480.304025076651,0.0,324.0,0.0,0.0,14734.0,0,1,1,100.0,0,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,629.4895708534696,0.016837574783434162,0.042723603288548226,14734.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -9519,2,40.0,1,0.0,5,111,1,0,62,7.0,0.0,0.0,327.43366660328576,0.0,573.5104058674173,17934.0,0,44,2,8843,201109519,330.0,330.0,,271.0,1.0,0.0,3.0,0.0,1.0,1.0,4406.252537837724,0.0,240.0,330.0,0.0,22817.0,0,1,3,60.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,900.9440724707031,0.05023664951883033,0.03948564984313026,22817.0,7,4,7,7_0,7_1,7_0_0 -9520,2,37.0,2,0.0,5,112,2,43,52,8.0,0.0,0.0,873.9449188144073,0.0,1806.422342332711,32071.0,33,50,1,8845,201109520,,,,,2.0,0.0,8.0,0.0,2.0,1.5,1350.0125746696772,1680.0,0.0,0.0,0.0,39655.0,1,1,2,125.0,8,1.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2680.3672611471184,0.08357604256640325,0.06759216394268361,26436.666666666668,8,4,8,8_1,8_1,8_0_0 -9521,2,72.0,2,0.0,2,112,2,77,77,7.0,0.0,0.0,780.3079632271495,0.0,1612.877091368492,21819.0,70,70,1,885,201109521,,,250.0,,0.0,3.0,5.0,0.0,2.0,1.5,1361.6356645331814,1500.0,0.0,0.0,0.0,34530.0,5,5,1,90.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2393.1850545956413,0.10968353520306344,0.06930741542414252,23020.0,7,4,7,7_1,7_0,7_0_1 -9522,2,35.0,2,0.0,9,111,2,43,47,7.0,0.0,222.0682111301504,654.8673332065715,0.0,1129.641708526731,33802.0,33,31,1,8850,201109522,,,222.0,,2.0,0.0,4.0,2.0,4.0,2.1,3754.558686928514,0.0,480.0,650.0,0.0,50154.0,1,1,2,95.0,4,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2006.577252863453,0.059362678328603424,0.040008319433414145,23882.85714285714,7,4,7,7_1,7_1,7_0_0 -9523,2,47.0,2,0.0,6,211,2,75,33,8.0,0.0,485.77421184720396,1173.3039719951073,0.0,0.0,33382.0,20,41,1,8851,201109523,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1493.342045193524,0.0,860.0,0.0,0.0,41000.0,5,1,1,95.0,3,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1659.0781838423113,0.04969978383087626,0.04046532155712954,27333.333333333332,8,4,8,8_1,8_1,8_0_0 -9524,2,28.0,2,0.0,6,221,5,56,56,6.0,0.0,138.792631956344,1296.0915969713394,121.65372245672486,0.0,25633.0,50,44,1,8852,201109524,,,450.0,,2.0,1.0,3.0,1.0,3.0,1.8,1866.6801385832848,0.0,950.0,0.0,0.0,34260.0,4,1,2,120.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1556.5379513844082,0.060723986711832725,0.04543309840584962,19033.333333333332,5,3,5,5_1,5_1,5_0_0 -9525,2,31.0,2,0.0,9,112,5,56,62,4.0,1272.3377193293836,0.0,523.8938665652572,104.27461924862132,0.0,34773.0,50,50,1,8854,201109525,,,248.0,,2.0,0.0,5.0,2.0,4.0,2.1,1352.00016481201,0.0,384.0,0.0,0.0,34060.0,1,1,2,131.0,3,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1900.5062051432622,0.05465465174541346,0.055798772904969526,16219.047619047618,4,2,4_0,4_1_0,4_0_0,4_0_0 -9526,2,59.0,3,0.0,6,112,2,77,75,5.0,0.0,0.0,1948.23031628955,139.0328256648284,0.0,30052.0,70,50,1,8856,201109526,,,383.0,,0.0,2.0,5.0,0.0,2.0,1.5,1097.9627172563098,0.0,1428.0,0.0,0.0,27910.0,5,5,1,80.0,8,2.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2087.2631419543786,0.06945504931300342,0.07478549415816477,18606.666666666668,5,3,5,5_1,5_1,5_0_0 -9527,2,50.0,3,0.0,1,111,6,85,21,1.0,0.0,0.0,982.3009998098572,0.0,173.79103208103552,34457.0,20,50,2,8858,201109527,,,,,1.0,0.0,2.0,1.0,3.0,1.8,2485.586203832459,0.0,720.0,100.0,0.0,13375.0,6,1,1,30.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1156.0920318908927,0.0335517320686912,0.08643678743109479,7430.555555555556,1,1,1_0,1_0_0,1_4_0,1_1_0 -9528,0,62.0,2,0.0,2,111,1,0,77,1.0,0.0,0.0,0.0,0.0,0.0,9212.0,0,70,2,886,201109528,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2923.417796782426,0.0,0.0,0.0,0.0,9075.0,0,5,5,20.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,9075.0,1,1,1_0,1_0_0,1_4_0,1_0_1 -9529,2,36.0,3,0.0,7,112,2,0,64,4.0,0.0,0.0,723.0826804155894,0.0,0.0,11652.0,0,50,1,8860,201109529,,,400.0,,1.0,0.0,3.0,0.0,1.0,1.0,1728.0462390924997,0.0,530.0,0.0,0.0,15535.0,0,1,3,80.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,723.0826804155894,0.062056529386851134,0.04654539301033726,15535.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -9530,2,44.0,2,0.0,7,111,6,56,37,7.0,0.0,0.0,1754.3623664765598,0.0,580.6357528926571,70778.0,43,43,1,8861,201109530,,,385.0,,2.0,0.0,5.0,3.0,5.0,2.8,1812.2877403363668,540.0,1080.0,0.0,0.0,64239.0,1,1,2,152.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2334.998119369217,0.0329904506961092,0.036348606288535264,22942.5,7,4,7,7_1,7_2,7_0_0 -9531,2,41.0,4,0.0,8,211,5,0,21,1.0,0.0,0.0,409.2920832541072,0.0,0.0,11559.0,0,50,1,8862,201109531,,,180.0,,1.0,1.0,4.0,1.0,2.0,1.5,2469.7912123208976,0.0,300.0,0.0,0.0,10327.0,0,1,1,94.0,2,3.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,409.2920832541072,0.03540895261303808,0.039633202600378344,6884.666666666667,1,1,1_0,1_1_0,1_1_0,1_0_0 -9532,2,63.0,3,0.0,2,111,2,0,77,1.0,0.0,0.0,35.47198054868929,0.0,175.52894240184588,13674.0,0,41,2,8863,201109532,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3402.064273639671,0.0,26.0,101.0,0.0,9159.0,0,5,1,74.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,211.00092295053517,0.015430811975320693,0.023037550273013994,9159.0,1,1,1_0,1_0_0,1_2_0,1_0_1 -9533,2,31.0,2,0.0,5,111,1,42,37,7.0,0.0,0.0,654.8673332065715,0.0,417.0984769944853,48213.0,10,10,2,8864,201109533,,,,383.0,2.0,0.0,2.0,1.0,3.0,1.8,2787.989557717121,0.0,480.0,240.0,0.0,42923.0,1,1,3,44.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1071.9658102010567,0.02223395785786109,0.024974158614287367,23846.11111111111,7,4,7,7_0,7_4,7_0_0 -9534,2,26.0,3,0.0,5,400,5,54,63,7.0,0.0,36.08608430864944,331.5265874358268,52.13730962431066,0.0,20673.0,50,50,1,8865,201109534,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1996.1614720601574,0.0,243.0,0.0,0.0,36780.0,4,1,2,75.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,419.7499813687869,0.020304260696018327,0.011412451913235097,24520.0,7,4,7,7_1,7_0,7_0_0 -9535,2,67.0,2,0.0,7,111,4,74,74,10.0,0.0,0.0,2652.2126994866144,0.0,0.0,42115.0,10,20,1,8866,201109535,,,312.0,,0.0,2.0,6.0,0.0,2.0,1.5,1284.1619467347023,0.0,1944.0,0.0,0.0,71203.0,5,5,1,150.0,6,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2652.2126994866144,0.06297548853108428,0.037248608899717914,47468.666666666664,10,5,10,10_1,10_2,10_0_0 -9536,2,74.0,2,0.0,8,111,2,0,75,9.0,0.0,0.0,427.08855853965974,0.0,882.7813946756879,28928.0,0,60,2,8868,201109536,,,142.0,,0.0,1.0,3.0,0.0,1.0,1.0,2662.5234795803076,821.0,0.0,0.0,0.0,32848.0,0,5,1,75.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1309.8699532153478,0.045280349599534975,0.03987670339793436,32848.0,9,5,9,9_0,9_2,9_0_0 -9537,2,86.0,2,0.0,1,300,6,0,71,4.0,0.0,0.0,834.9558498383786,173.79103208103552,0.0,14627.0,0,71,1,8869,201109537,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2791.9391151380482,0.0,612.0,0.0,0.0,15406.0,0,5,1,156.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1008.7468819194141,0.06896471470017189,0.06547753355312308,15406.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -9538,2,85.0,3,0.0,1,120,5,0,71,3.0,0.0,208.188947934516,504.79356934673217,302.3963958210018,0.0,18455.0,0,70,1,887,201109538,,,120.0,,0.0,0.0,6.0,0.0,2.0,1.5,5150.160779191347,0.0,370.0,0.0,0.0,19342.0,0,5,1,120.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1015.37891310225,0.05501917708492278,0.05249606623421828,12894.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -9539,2,22.0,3,0.0,99,400,4,63,56,9.0,0.0,0.0,70.94396109737858,0.0,0.0,26164.0,31,50,1,8870,201109539,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2448.17482667951,0.0,52.0,0.0,0.0,52770.0,1,1,3,26.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,70.94396109737858,0.0027115105143471403,0.0013443994901909907,35180.0,9,5,9,9_1,9_1,9_0_0 -9540,2,86.0,3,0.0,1,400,5,0,71,2.0,0.0,693.9631597817199,497.9720346258304,0.0,0.0,9215.0,0,70,1,8871,201109540,,,,,0.0,0.0,4.0,0.0,2.0,1.5,1744.5842422473702,0.0,365.0,0.0,0.0,17677.0,0,5,1,70.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1191.9351944075504,0.12934728099919157,0.06742859050786618,11784.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -9541,0,65.0,3,0.0,7,111,4,0,75,5.0,0.0,0.0,1227.8762497623215,0.0,0.0,28909.0,0,70,1,8873,201109541,,,200.0,,0.0,2.0,4.0,0.0,1.0,1.0,2806.442472701743,0.0,900.0,0.0,0.0,17627.0,0,5,5,120.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1227.8762497623215,0.0424738403183203,0.06965883302673861,17627.0,5,3,5,5_1,5_3,5_0_0 -9542,2,54.0,3,0.0,5,111,1,34,34,10.0,0.0,0.0,95.501486092625,0.0,2419.1711665680145,58807.0,41,41,2,8874,201109542,,,,,2.0,4.0,5.0,0.0,2.0,1.5,3402.3876717736316,0.0,70.0,1392.0,0.0,65805.0,1,1,2,105.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2514.6726526606394,0.042761451062979565,0.03821400581506936,43870.0,10,5,10,10_0,10_4,10_0_0 -9543,2,84.0,3,0.0,6,400,2,0,75,6.0,0.0,152.6718951519784,1178.7611997718286,62.56477154917279,0.0,10731.0,0,33,1,8875,201109543,,,,,0.0,0.0,3.0,0.0,1.0,1.0,4989.736884535806,0.0,864.0,0.0,0.0,20593.0,0,5,1,90.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1393.9978664729797,0.1299038175820501,0.06769280175171076,20593.0,6,3,6,6_1,6_0,6_0_0 -9544,2,58.0,2,0.0,2,111,4,0,34,10.0,0.0,0.0,1214.233180320518,0.0,0.0,21833.0,0,20,1,8876,201109544,,,224.0,,1.0,0.0,4.0,0.0,1.0,1.0,2919.9829026323746,0.0,890.0,0.0,0.0,37517.0,0,1,5,90.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1214.233180320518,0.05561458252739055,0.03236487939655404,37517.0,10,5,10,10_1,10_3,10_0_1 -9545,2,43.0,1,0.0,6,112,2,85,48,9.0,0.0,0.0,24.557524995246432,0.0,0.0,59107.0,44,50,1,8877,201109545,,,300.0,,2.0,1.0,6.0,3.0,5.0,2.6,1623.1468946379255,0.0,18.0,0.0,0.0,78102.0,6,1,2,110.0,7,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,24.557524995246432,0.00041547574729298444,0.0003144288878037237,30039.23076923077,9,5,9,9_1,9_1,9_0_0 -9546,2,58.0,1,0.0,9,300,2,37,31,10.0,1797.4546583543536,0.0,1922.3084843501233,0.0,0.0,95473.0,20,20,1,8879,201109546,,,194.0,,2.0,0.0,8.0,1.0,3.0,1.8,1829.0549586559725,0.0,1409.0,0.0,0.0,113246.0,1,1,1,216.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3719.763142704477,0.03896141466911564,0.03284675081419632,62914.444444444445,10,5,10,10_1,10_0,10_0_0 -9547,2,46.0,2,0.0,4,111,2,42,37,8.0,0.0,0.0,682.1534720901786,0.0,2085.4923849724264,40109.0,50,50,1,8880,201109547,,,400.0,,2.0,2.0,6.0,1.0,3.0,1.8,3075.5289011829486,0.0,500.0,1200.0,0.0,51050.0,1,1,2,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2767.645857062605,0.06900311294379328,0.054214414438052985,28361.11111111111,8,4,8,8_1,8_4,8_0_1 -9548,1,21.0,2,310.0,1,212,4,85,68,2.0,0.0,0.0,1105.0886247860894,130.34327406077665,0.0,9310.0,71,60,1,8881,201109548,,,,110.0,1.0,0.0,4.0,1.0,3.0,1.8,2769.682432278118,0.0,810.0,0.0,0.0,17840.0,6,1,3,70.0,1,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1235.431898846866,0.13269945207807368,0.06925066697572119,9911.111111111111,2,1,2_1,2_1_1,2_0_1,2_1_0 -9549,1,62.0,3,272.0,3,111,1,77,78,3.0,0.0,0.0,573.00891655575,0.0,321.5134093499157,9727.0,71,71,2,8882,201109549,,,363.0,57.0,0.0,9.0,4.0,0.0,2.0,1.5,3680.563213074823,0.0,420.0,185.0,0.0,21224.0,5,5,3,85.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,894.5223259056658,0.09196281750855,0.04214673604907961,14149.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_1 -9550,2,70.0,3,0.0,5,111,1,0,77,7.0,0.0,0.0,983.6653067540376,52.13730962431066,0.0,23609.0,0,60,2,8883,201109550,,,90.0,,0.0,1.0,4.0,0.0,1.0,1.0,2926.4131984239193,0.0,721.0,0.0,0.0,22045.0,0,5,1,95.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1035.8026163783484,0.04387321006304157,0.04698582972911537,22045.0,7,4,7,7_0,7_3,7_0_0 -9551,1,34.0,5,226.0,2,111,1,85,68,2.0,0.0,0.0,374.5478223490317,0.0,774.1810038568763,39560.0,71,71,2,8886,201109551,,,,202.0,1.0,0.0,4.0,4.0,6.0,2.7,3620.7482274078952,720.0,0.0,0.0,0.0,31776.0,6,1,3,106.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1148.728826205908,0.0290376346361453,0.03615083164041755,11768.888888888889,2,1,2_1,2_0_1,2_4_1,2_0_1 -9552,1,55.0,3,358.0,5,221,1,64,75,2.0,0.0,0.0,833.5915428941983,187.69431464751835,0.0,24463.0,44,44,2,8887,201109552,,,378.0,,1.0,2.0,3.0,2.0,4.0,2.1,4771.309857619483,0.0,611.0,0.0,0.0,24365.0,1,4,3,85.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1021.2858575417166,0.04174818532239368,0.04191610332615295,11602.380952380952,2,1,2_1,2_0_1,2_1_1,2_0_0 -9553,2,84.0,3,0.0,1,111,4,0,78,2.0,0.0,0.0,2483.0386384082503,0.0,0.0,15432.0,0,70,2,8888,201109553,,,970.0,,0.0,2.0,3.0,0.0,1.0,1.0,3258.8421082513764,0.0,1820.0,0.0,0.0,10890.0,0,5,5,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2483.0386384082503,0.16090193354122928,0.2280108942523646,10890.0,2,1,2_0,2_0_0,2_3_0,2_1_0 -9554,1,59.0,4,250.0,99,111,4,0,22,10.0,0.0,0.0,518.4366387885358,0.0,0.0,5743.0,0,70,2,889,201109554,,,,,1.0,3.0,1.0,0.0,1.0,1.0,3257.602046887352,0.0,380.0,0.0,0.0,55150.0,0,1,3,20.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,518.4366387885358,0.09027279101315266,0.009400483024270821,55150.0,10,5,10,10_0,10_2,10_0_0 -9555,2,58.0,1,0.0,6,112,4,46,46,8.0,0.0,277.585263912688,1241.5193192041252,166.8393907977941,0.0,36145.0,50,50,1,8890,201109555,,,246.0,,2.0,1.0,4.0,0.0,2.0,1.5,2416.826043333591,0.0,910.0,0.0,0.0,37690.0,1,1,1,90.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1685.943973914607,0.04664390576607019,0.04473186452413391,25126.666666666668,8,4,8,8_1,8_0,8_0_0 -9556,2,79.0,2,0.0,9,112,2,0,72,8.0,0.0,0.0,687.6106998669001,0.0,2043.7825372729778,18648.0,0,50,1,8891,201109556,,,125.0,,0.0,4.0,3.0,0.0,1.0,1.0,2436.8977989228374,0.0,504.0,1176.0,0.0,26580.0,0,5,1,100.0,9,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2731.393237139878,0.14647110881273476,0.10276122035891189,26580.0,8,4,8,8_1,8_1,8_0_0 -9557,2,78.0,3,0.0,7,112,4,77,78,5.0,0.0,0.0,1628.9824913513467,0.0,0.0,30230.0,71,71,1,8894,201109557,,,,,0.0,3.0,5.0,0.0,2.0,1.5,4830.367147418526,0.0,1194.0,0.0,0.0,26768.0,5,5,1,70.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1628.9824913513467,0.053886288169081926,0.060855592175408944,17845.333333333332,5,3,5,5_1,5_0,5_0_0 -9558,1,40.0,3,123.0,2,111,1,56,47,4.0,0.0,0.0,1252.433774757568,90.37133668213848,0.0,40766.0,50,50,2,8895,201109558,,,,605.0,2.0,0.0,3.0,2.0,4.0,2.1,2547.74662317536,0.0,918.0,0.0,0.0,31690.0,1,1,3,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1342.8051114397065,0.032939339435797146,0.04237314961942905,15090.476190476189,4,2,4_1,4_0_1,4_4_1,4_0_1 -9559,2,53.0,3,0.0,1,111,2,0,35,3.0,0.0,0.0,375.18440964959825,0.0,868.9551604051776,72704.0,0,10,2,8897,201109559,,,,1100.0,1.0,0.0,7.0,1.0,2.0,1.3,3115.2235690826924,0.0,275.0,500.0,0.0,16537.0,0,4,3,130.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1244.139570054776,0.017112395054670663,0.07523369232961093,12720.76923076923,3,2,3_0,3_0_0,3_2_0,3_1_0 -9560,2,69.0,2,0.0,8,221,4,74,74,10.0,0.0,0.0,2558.6271826312977,0.0,1115.0356958327507,42166.0,20,10,1,8898,201109560,,,400.0,,0.0,2.0,3.0,0.0,2.0,1.5,2253.698883692805,1037.0,1480.0,0.0,0.0,80892.0,5,5,1,100.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3673.6628784640484,0.08712381725712774,0.04541441525075469,53928.0,10,5,10,10_1,10_1,10_0_0 -9561,1,56.0,5,85.0,3,111,1,78,52,2.0,0.0,0.0,270.50676058541177,0.0,559.130725007744,19646.0,71,71,2,89,201109561,,,,244.0,1.0,2.0,4.0,1.0,3.0,2.0,4320.821809450599,520.0,0.0,0.0,0.0,21430.0,6,1,3,95.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,829.6374855931558,0.0422293334822944,0.03871383507200914,10715.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -9562,2,48.0,3,0.0,1,111,2,0,65,7.0,0.0,0.0,720.3540665272286,0.0,2189.7670042210475,22825.0,0,50,1,890,201109562,,,150.0,211.0,1.0,0.0,3.0,0.0,1.0,1.0,1403.6401696904702,0.0,528.0,1260.0,0.0,23373.0,0,1,3,60.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2910.121070748276,0.1274970896275258,0.12450781118163162,23373.0,7,4,7,7_1,7_2,7_1_0 -9563,2,83.0,2,0.0,4,111,1,0,77,10.0,0.0,0.0,368.36287492869644,0.0,111.22626053186274,15523.0,0,50,2,8902,201109563,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1889.124723576589,0.0,270.0,64.0,0.0,47803.0,0,5,5,96.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,479.5891354605592,0.030895389773919937,0.010032615849644566,47803.0,10,5,10,10_0,10_2,10_0_1 -9564,2,76.0,2,0.0,3,111,1,74,75,10.0,0.0,0.0,1626.4630111027232,0.0,1669.865415263512,37175.0,12,12,2,8903,201109564,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2067.577622947733,1553.0,600.0,0.0,0.0,72038.0,5,5,1,200.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3296.3284263662354,0.08867056963997944,0.04575818909972841,48025.333333333336,10,5,10,10_0,10_4,10_0_1 -9565,2,74.0,3,0.0,4,111,1,75,75,7.0,0.0,0.0,736.7257498573929,0.0,0.0,38767.0,33,20,2,8904,201109565,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2964.603611770241,0.0,540.0,0.0,0.0,35801.0,5,5,1,84.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,736.7257498573929,0.019003940203198413,0.02057835674582813,23867.333333333332,7,4,7,7_0,7_4,7_0_1 -9566,1,78.0,4,90.0,1,111,2,0,75,6.0,0.0,0.0,208.73896245959466,0.0,417.0984769944853,7320.0,0,44,2,8905,201109566,,,,187.0,0.0,2.0,3.0,0.0,1.0,1.0,2944.8645598259495,0.0,153.0,240.0,0.0,20497.0,0,5,3,80.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,625.8374394540799,0.08549691795820764,0.030533123845151968,20497.0,6,3,6,6_0,6_3,6_1_0 -9567,2,66.0,3,0.0,7,112,6,74,74,8.0,0.0,166.55115834761278,1705.3836802254466,0.0,0.0,51883.0,31,41,1,8906,201109567,,,,,0.0,0.0,5.0,0.0,2.0,1.5,3309.761552015157,0.0,1250.0,0.0,0.0,37169.0,5,5,1,145.0,8,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1871.9348385730593,0.03607992673078001,0.0503627979922263,24779.333333333332,7,4,7,7_1,7_0,7_0_0 -9568,1,22.0,3,210.0,6,111,2,0,55,4.0,0.0,0.0,341.0767360450893,0.0,347.58206416207105,8401.0,0,50,2,8907,201109568,,,,200.0,1.0,0.0,2.0,0.0,1.0,1.0,4039.2321535247515,0.0,250.0,200.0,0.0,15921.0,0,4,3,45.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,688.6588002071603,0.08197343175897635,0.043254745317954924,15921.0,4,2,4_1,4_0_1,4_2_1,4_0_0 -9569,2,52.0,2,0.0,7,211,4,77,52,8.0,0.0,0.0,1106.4529317302697,139.0328256648284,0.0,34088.0,60,60,1,8908,201109569,,,313.0,,1.0,0.0,5.0,0.0,2.0,1.5,2211.3450604994964,0.0,811.0,0.0,0.0,38210.0,5,1,1,95.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1245.485757395098,0.036537366738884594,0.03259580626524727,25473.333333333332,8,4,8,8_1,8_2,8_0_0 -9570,2,58.0,3,0.0,9,112,5,0,48,7.0,0.0,0.0,886.7995137172322,173.79103208103552,0.0,18900.0,0,50,1,8909,201109570,,,86.0,,1.0,0.0,4.0,1.0,2.0,1.5,2918.8203204492434,0.0,650.0,0.0,0.0,32913.0,0,1,2,110.0,6,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1060.5905457982678,0.056115901894088244,0.03222406179315978,21942.0,7,4,7,7_1,7_0,7_0_0 -9571,2,50.0,3,0.0,7,112,6,0,56,3.0,152.2997768773327,0.0,1420.2435288917518,86.89551604051776,0.0,38073.0,0,50,1,891,201109571,,,410.0,,1.0,1.0,5.0,1.0,2.0,1.5,1588.672824955639,0.0,1041.0,0.0,0.0,19558.0,0,1,1,120.0,7,1.0,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1659.4388218096024,0.0435857122320175,0.08484706114171195,13038.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0 -9572,1,58.0,5,248.0,1,120,2,0,22,2.0,0.0,0.0,0.0,2085.4923849724264,0.0,19139.0,0,50,1,8912,201109572,,,,262.0,1.0,1.0,3.0,0.0,1.0,1.0,2930.225743762208,0.0,0.0,0.0,0.0,12076.0,0,1,3,90.0,0,0.0,1,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2085.4923849724264,0.10896558780356479,0.17269728262441425,12076.0,2,1,2_1,2_1_1,2_0_1,2_1_0 -9573,2,52.0,3,0.0,1,111,4,85,63,5.0,0.0,0.0,1246.9765469808465,583.9378677922793,0.0,23014.0,60,60,1,8916,201109573,,,320.0,,2.0,2.0,6.0,2.0,4.0,2.3,2693.0399204982587,0.0,914.0,0.0,0.0,41740.0,5,1,1,120.0,6,4.0,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1830.9144147731258,0.07955654882997852,0.04386474400510603,18147.826086956524,5,3,5,5_1,5_2,5_1_0 -9574,2,66.0,3,0.0,1,212,2,75,75,5.0,951.8736054833294,277.585263912688,860.8776817778054,0.0,0.0,64645.0,20,10,1,8919,201109574,,,271.0,,0.0,5.0,4.0,0.0,2.0,1.5,837.7831681730105,0.0,631.0,0.0,0.0,26963.0,5,5,1,80.0,2,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2090.3365511738225,0.03233562612999957,0.07752611175217233,17975.333333333332,5,3,5,5_1,5_0,5_1_0 -9575,2,50.0,1,0.0,1,300,6,22,22,9.0,0.0,0.0,1500.737638598393,180.74267336427695,0.0,70360.0,71,50,1,8920,201109575,,,,,2.0,3.0,7.0,1.0,3.0,1.8,2348.0276346300593,0.0,1100.0,0.0,0.0,57394.0,1,1,2,200.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1681.48031196267,0.02389824206882703,0.029297144509228663,31885.555555555555,9,5,9,9_1,9_0,9_1_0 -9576,2,27.0,2,0.0,8,111,4,0,38,7.0,0.0,0.0,818.5841665082144,0.0,0.0,20566.0,0,12,2,8921,201109576,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,6289.142789258778,0.0,600.0,0.0,0.0,22885.0,0,4,3,42.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,818.5841665082144,0.039802789385792785,0.03576946325139674,22885.0,7,4,7,7_0,7_3,7_0_0 -9577,1,25.0,3,28.0,7,111,2,56,67,6.0,1110.5192063972174,0.0,695.7965415319821,0.0,0.0,40650.0,50,42,1,8922,201109577,,,460.0,,2.0,0.0,4.0,0.0,2.0,1.5,1503.7205046208326,0.0,510.0,0.0,0.0,31093.0,1,1,2,80.0,7,5.0,3,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1806.3157479291995,0.044435811757175876,0.058093968029112646,20728.666666666668,6,3,6,6_1,6_2,6_0_0 -9578,2,47.0,3,0.0,1,111,5,85,65,2.0,0.0,97.1548423694408,613.9381248811608,201.5975972140012,0.0,45945.0,31,50,1,8923,201109578,,,164.0,,1.0,0.0,5.0,2.0,4.0,2.3,1588.0570813804559,0.0,450.0,0.0,0.0,22759.0,6,1,1,96.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,912.6905644646027,0.019864850679390634,0.040102401883413276,9895.217391304348,2,1,2_0,2_1_0,2_3_0,2_1_0 -9579,2,73.0,3,0.0,1,111,2,78,78,7.0,0.0,0.0,1357.73585601524,0.0,2806.4061389811764,27813.0,70,71,1,8924,201109579,,,300.0,,0.0,2.0,3.0,0.0,2.0,1.5,2346.421434710234,2610.0,0.0,0.0,0.0,33948.0,5,5,1,50.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4164.1419949964165,0.1497192677883154,0.12266236582409616,22632.0,7,4,7,7_1,7_2,7_1_0 -9580,2,57.0,2,0.0,1,112,2,78,62,7.0,0.0,277.585263912688,432.48530130517327,0.0,1188.7306594342829,31879.0,71,50,1,8925,201109580,,,,,1.0,3.0,4.0,0.0,2.0,1.5,1607.9951282032357,0.0,317.0,684.0,0.0,36655.0,5,1,1,60.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1898.8012246521441,0.059562759956464886,0.051801970390182625,24436.666666666668,7,4,7,7_1,7_0,7_1_0 -9581,2,82.0,3,0.0,8,111,4,78,72,5.0,0.0,0.0,1227.8762497623215,0.0,0.0,20873.0,71,71,1,8927,201109581,,,400.0,,0.0,1.0,4.0,0.0,2.0,1.5,4710.284273021349,0.0,900.0,0.0,0.0,27290.0,5,5,1,80.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1227.8762497623215,0.05882605517952961,0.04499363319026462,18193.333333333332,5,3,5,5_1,5_4,5_0_0 -9582,2,51.0,2,0.0,4,112,2,52,43,6.0,3648.848821019429,0.0,180.08851663180715,0.0,0.0,46813.0,50,20,1,8928,201109582,,,230.0,,3.0,1.0,6.0,2.0,4.0,2.5,986.8698671598391,0.0,132.0,0.0,0.0,53680.0,1,1,2,150.0,10,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3828.9373376512362,0.08179218032707232,0.07132893699052228,21472.0,6,3,6,6_1,6_0,6_0_1 -9583,1,34.0,5,476.0,99,111,2,85,55,2.0,0.0,0.0,886.7995137172322,0.0,1757.0273343392691,20218.0,50,43,2,8929,201109583,,,668.0,34.0,1.0,1.0,5.0,3.0,5.0,2.4,2952.276313727402,0.0,650.0,1011.0,0.0,22485.0,4,4,3,106.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2643.826848056501,0.13076599307827189,0.11758180333806988,9368.75,1,1,1_1,1_0_1,1_3_1,1_0_0 -9584,2,45.0,3,0.0,1,112,2,52,63,6.0,0.0,277.585263912688,1637.1683330164287,2259.283417053462,0.0,61276.0,50,50,1,893,201109584,,,180.0,,3.0,3.0,5.0,2.0,4.0,2.5,1159.7985329474466,0.0,1200.0,0.0,0.0,49803.0,1,1,1,109.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4174.037013982579,0.06811862742317676,0.08381095544410135,19921.2,6,3,6,6_1,6_0,6_1_0 -9585,2,71.0,2,0.0,4,111,2,77,77,4.0,0.0,0.0,1847.7692569218898,0.0,3819.292952360589,21599.0,70,70,1,8932,201109585,,,772.0,,0.0,3.0,5.0,0.0,2.0,1.5,1388.182385758416,3552.0,0.0,0.0,0.0,23653.0,5,5,1,140.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5667.062209282479,0.262376138213921,0.2395916885503944,15768.666666666666,4,2,4_0,4_1_0,4_3_0,4_0_1 -9586,1,40.0,3,259.0,6,211,2,0,85,2.0,0.0,0.0,382.0059443705,0.0,660.405921907935,5248.0,0,71,2,8934,201109586,,,,,0.0,1.0,1.0,0.0,1.0,1.0,4028.115561102378,0.0,280.0,380.0,0.0,11487.0,0,7,3,50.0,1,2.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1042.411866278435,0.1986303098853725,0.09074709378240053,11487.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -9587,2,64.0,1,0.0,2,112,2,43,72,6.0,0.0,0.0,1049.1520400746947,0.0,3475.8206416207104,65079.0,33,10,1,8938,201109587,,,364.0,,1.0,2.0,5.0,2.0,4.0,2.1,2082.239735200416,0.0,769.0,2000.0,0.0,42228.0,1,5,1,115.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4524.972681695405,0.06953045808471865,0.10715574220174778,20108.571428571428,6,3,6,6_1,6_1,6_0_1 -9588,2,87.0,3,0.0,4,221,2,0,72,3.0,3966.1400228472053,0.0,687.6106998669001,0.0,0.0,12808.0,0,70,1,8939,201109588,,,,,0.0,3.0,5.0,0.0,1.0,1.0,4641.0260315088,0.0,504.0,0.0,0.0,12866.0,0,5,1,100.0,1,1.0,1,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4653.750722714105,0.36334718322252535,0.36170921208721474,12866.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -9589,2,55.0,3,0.0,6,112,2,22,22,2.0,2696.9752155360998,69.396315978172,1910.0297218525002,271.11401004641544,0.0,26986.0,70,71,1,894,201109589,,,350.0,,2.0,2.0,5.0,0.0,2.0,1.5,2727.276146383004,0.0,1400.0,0.0,0.0,16361.0,1,1,1,120.0,7,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4947.515263413187,0.18333636935496878,0.3023968744828059,10907.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -9590,2,50.0,2,0.0,7,112,4,55,45,9.0,0.0,346.98157989085996,1882.743582968893,180.74267336427695,0.0,50919.0,50,41,1,8940,201109590,,,570.0,,3.0,0.0,5.0,1.0,3.0,2.0,1617.0253549481647,0.0,1380.0,0.0,0.0,69034.0,1,1,2,85.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2410.4678362240297,0.047339261105364,0.034917110934090875,34517.0,9,5,9,9_1,9_1,9_0_0 -9591,2,50.0,3,0.0,1,111,2,54,23,7.0,2062.392811880547,0.0,4584.071332446,0.0,0.0,75471.0,31,43,1,8943,201109591,,,600.0,,2.0,2.0,8.0,4.0,6.0,3.1,2220.0488152426165,0.0,3360.0,0.0,0.0,69950.0,1,1,1,250.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,6646.464144326547,0.08806646452712363,0.09501735731703427,22564.516129032258,7,4,7,7_1,7_3,7_1_0 -9592,1,53.0,4,240.0,5,111,2,0,54,2.0,0.0,0.0,341.0767360450893,0.0,764.6805411565563,7903.0,0,71,2,8944,201109592,,,288.0,,1.0,2.0,3.0,0.0,1.0,1.0,2832.77229230159,0.0,250.0,440.0,0.0,10506.0,0,4,3,85.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1105.7572772016456,0.13991614288265794,0.10525007397693181,10506.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -9593,2,38.0,2,0.0,6,111,2,0,46,9.0,0.0,180.43042154324718,2568.9899758916126,0.0,0.0,43118.0,0,31,1,8945,201109593,,,370.0,,1.0,2.0,5.0,1.0,3.0,2.0,3495.547541549376,0.0,1883.0,0.0,0.0,67941.0,0,1,1,96.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2749.4203974348598,0.0637650261476613,0.04046776464042125,33970.5,9,5,9,9_1,9_4,9_0_0 -9594,2,75.0,3,0.0,2,111,1,0,75,1.0,0.0,0.0,566.1873818348482,0.0,0.0,30423.0,0,10,2,8946,201109594,,,,,0.0,3.0,3.0,0.0,1.0,1.0,4081.267521666865,0.0,415.0,0.0,0.0,2912.0,0,5,1,75.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,566.1873818348482,0.018610504612787963,0.19443248002570337,2912.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -9595,2,70.0,3,0.0,2,111,2,77,74,9.0,0.0,0.0,545.7227776721429,0.0,2433.074449134497,27441.0,70,31,1,8947,201109595,,,200.0,,0.0,2.0,6.0,0.0,2.0,1.5,1407.4354410633728,0.0,400.0,1400.0,0.0,43450.0,5,5,1,150.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2978.79722680664,0.10855279424243432,0.06855689820038297,28966.666666666668,8,4,8,8_1,8_3,8_0_1 -9596,2,28.0,2,0.0,5,211,2,63,55,6.0,0.0,0.0,442.03544991443573,0.0,1911.7013528913908,32675.0,41,10,2,8948,201109596,,,,,2.0,0.0,5.0,1.0,3.0,1.8,5390.256673711982,0.0,324.0,1100.0,0.0,34420.0,1,1,2,86.0,2,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2353.7368028058263,0.07203479121058382,0.06838282402108734,19122.222222222223,5,3,5,5_0,5_1,5_0_0 -9597,2,83.0,3,0.0,1,111,2,0,78,8.0,0.0,0.0,327.43366660328576,0.0,2763.277410088465,12686.0,0,70,1,8949,201109597,,,400.0,,0.0,1.0,5.0,0.0,1.0,1.0,2343.710689475803,0.0,240.0,1590.0,0.0,25350.0,0,5,1,60.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3090.711076691751,0.24363164722463745,0.12192154148685408,25350.0,8,4,8,8_1,8_3,8_1_0 -9598,2,43.0,3,0.0,4,300,2,67,55,1.0,0.0,277.585263912688,936.3695558725793,0.0,1935.4525096421905,44590.0,60,50,1,8950,201109598,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.5,1046.4987590737308,1800.0,0.0,0.0,0.0,18211.0,4,1,1,110.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3149.4073294274576,0.07063035051418384,0.1729398346838426,7284.4,1,1,1_0,1_1_0,1_0_0,1_0_1 -9599,2,64.0,3,0.0,9,111,2,77,78,3.0,0.0,0.0,654.8673332065715,0.0,1564.1192887293198,24261.0,71,71,1,8952,201109599,,,900.0,555.0,0.0,4.0,4.0,0.0,2.0,1.5,3504.9836452910276,0.0,480.0,900.0,0.0,21910.0,4,5,3,80.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2218.9866219358914,0.0914631145433367,0.10127734467986725,14606.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0 -9600,2,44.0,3,0.0,6,112,2,56,22,3.0,2696.9752155360998,0.0,818.5841665082144,156.41192887293198,0.0,42391.0,41,41,1,8953,201109600,,,164.0,,2.0,1.0,6.0,2.0,4.0,2.1,3400.516128458639,0.0,600.0,0.0,0.0,29629.0,1,1,1,145.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3671.9713109172462,0.08662148359126338,0.1239316652913445,14109.047619047618,3,2,3_0,3_1_0,3_0_0,3_0_0 -9601,2,69.0,3,0.0,5,111,2,0,77,5.0,0.0,0.0,1227.8762497623215,0.0,0.0,16723.0,0,50,1,8956,201109601,,,15.0,,0.0,2.0,4.0,0.0,1.0,1.0,2203.449167304625,0.0,900.0,0.0,0.0,18476.0,0,5,1,100.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1227.8762497623215,0.0734244005120087,0.06645790483667036,18476.0,5,3,5,5_1,5_3,5_0_0 -9602,1,29.0,4,247.0,1,120,2,65,62,4.0,0.0,0.0,900.4425831590357,722.9706934571078,0.0,21258.0,50,50,2,8957,201109602,,,,263.0,2.0,0.0,4.0,2.0,4.0,2.1,1531.6150933869455,0.0,660.0,0.0,0.0,31911.0,1,1,3,100.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1623.4132766161435,0.0763671689065831,0.050873155858987294,15195.714285714284,4,2,4_1,4_0_1,4_0_1,4_1_0 -9603,2,52.0,4,0.0,4,111,1,0,67,9.0,0.0,0.0,204.6460416270536,0.0,121.65372245672486,15160.0,0,50,2,8958,201109603,,,,271.0,1.0,2.0,2.0,0.0,1.0,1.0,2018.299574051117,0.0,150.0,70.0,0.0,33182.0,0,1,3,48.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,326.2997640837784,0.021523731140090926,0.00983363763738709,33182.0,9,5,9,9_0,9_2,9_0_1 -9604,2,57.0,2,0.0,6,111,2,0,54,9.0,0.0,499.65347504283835,1365.6712511245375,0.0,0.0,22132.0,0,41,1,8963,201109604,,,105.0,,1.0,3.0,5.0,0.0,1.0,1.0,1707.480933365715,0.0,1001.0,0.0,0.0,31261.0,0,1,1,127.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1865.324726167376,0.08428179677242797,0.059669387612916285,31261.0,9,5,9,9_1,9_3,9_0_0 -9605,2,75.0,3,0.0,8,111,2,78,78,5.0,0.0,0.0,2046.460416270536,0.0,0.0,20895.0,70,70,2,8964,201109605,,,150.0,,0.0,2.0,3.0,0.0,2.0,1.5,1771.4696055756967,0.0,1500.0,0.0,0.0,25877.0,5,5,1,75.0,7,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2046.460416270536,0.09794019699787203,0.07908414484950094,17251.333333333332,5,3,5,5_0,5_2,5_0_0 -9606,2,54.0,4,0.0,2,221,2,0,52,4.0,0.0,0.0,769.4890982653529,0.0,4688.856591974044,19521.0,0,60,1,8965,201109606,,,194.0,,1.0,3.0,4.0,0.0,1.0,1.0,3678.4955651234254,181.0,495.0,2586.0,0.0,16720.0,0,1,1,150.0,1,1.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5458.345690239397,0.27961404078886315,0.32645608195211706,16720.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -9607,2,56.0,2,0.0,5,112,2,45,13,10.0,3263.340010798681,0.0,1556.6742233097875,291.9689338961397,0.0,50150.0,50,50,1,8966,201109607,,,428.0,,2.0,2.0,6.0,0.0,2.0,1.5,2173.051391522398,0.0,1141.0,0.0,0.0,58064.0,1,1,1,150.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5111.983168004608,0.10193386177476786,0.08804049269779224,38709.333333333336,10,5,10,10_1,10_0,10_0_0 -9608,2,36.0,2,0.0,2,111,1,53,37,9.0,0.0,0.0,1227.8762497623215,0.0,834.1969539889706,50261.0,31,10,2,8969,201109608,,,,,2.0,0.0,5.0,1.0,3.0,1.8,3073.194921964591,0.0,900.0,480.0,0.0,61414.0,1,1,2,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2062.073203751292,0.04102730156087806,0.03357659823088045,34118.88888888889,9,5,9,9_0,9_4,9_0_1 -9609,2,55.0,3,0.0,9,111,1,0,35,2.0,0.0,0.0,540.2655498954215,0.0,1209.5855832840073,52082.0,0,12,2,8970,201109609,,,,,1.0,0.0,4.0,3.0,4.0,2.5,2372.5754932828113,0.0,396.0,696.0,0.0,27293.0,0,1,3,85.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1749.8511331794289,0.033598001865892804,0.06411355047739087,10917.2,2,1,2_0,2_0_0,2_3_0,2_0_0 -9610,2,58.0,2,0.0,1,111,6,0,22,4.0,0.0,0.0,998.6726831400215,0.0,2598.175929611481,28957.0,0,41,1,8971,201109610,,,299.0,,1.0,2.0,4.0,0.0,1.0,1.0,2494.3815082526594,0.0,732.0,1495.0,0.0,14824.0,0,1,1,110.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3596.8486127515025,0.12421344105920856,0.24263684651588657,14824.0,3,2,3_0,3_1_0,3_2_0,3_1_0 -9611,2,45.0,1,0.0,4,111,2,0,43,8.0,0.0,0.0,802.2124831780501,0.0,1126.1658878851101,12189.0,0,20,2,8972,201109611,,,,207.0,1.0,0.0,3.0,0.0,1.0,1.0,3016.552389063586,0.0,588.0,648.0,0.0,24750.0,0,1,3,75.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1928.37837106316,0.1582064460631028,0.07791427761871354,24750.0,7,4,7,7_0,7_2,7_0_1 -9612,2,35.0,3,0.0,8,112,4,56,63,6.0,0.0,0.0,1664.4544719000357,90.37133668213848,0.0,30792.0,50,43,1,8973,201109612,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1735.8891663223444,0.0,1220.0,0.0,0.0,44511.0,1,1,2,101.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1754.8258085821742,0.0569896664257656,0.03942454244079383,21195.714285714286,6,3,6,6_1,6_0,6_0_0 -9613,2,50.0,1,0.0,8,112,4,0,45,9.0,0.0,0.0,829.4986220616572,52.13730962431066,0.0,36320.0,0,31,1,8977,201109613,,,65.0,,1.0,0.0,3.0,0.0,1.0,1.0,2388.4506549403377,0.0,608.0,0.0,0.0,32529.0,0,1,1,89.0,10,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,881.6359316859679,0.024274117061838324,0.02710307515404617,32529.0,9,5,9,9_1,9_0,9_0_0 -9614,2,78.0,2,0.0,3,111,2,0,86,6.0,1167.6316227262173,0.0,195.0958930177911,145.98446694806984,0.0,12425.0,0,70,1,8978,201109614,,,137.0,,0.0,3.0,5.0,0.0,1.0,1.0,2918.718032528944,0.0,143.0,0.0,0.0,20324.0,0,5,1,170.0,8,6.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1508.7119826920782,0.12142551168547913,0.07423302414347954,20324.0,6,3,6,6_1,6_2,6_0_1 -9615,2,65.0,3,0.0,1,112,2,21,74,7.0,2601.787854987767,0.0,2100.6537103831365,17.37910320810355,2108.567984115742,29409.0,50,33,1,8979,201109615,,,,,1.0,2.0,6.0,0.0,2.0,1.5,1629.7792297415706,1961.0,792.0,0.0,0.0,33138.0,1,5,1,90.0,8,0.0,3,3,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6828.38865269475,0.2321870397733602,0.20605916629533316,22092.0,7,4,7,7_1,7_0,7_1_0 -9616,2,42.0,3,0.0,3,112,6,52,52,5.0,1035.95577396769,555.170527825376,968.6579303680536,0.0,0.0,36349.0,50,71,1,8981,201109616,,,460.0,,2.0,0.0,6.0,3.0,5.0,2.6,1585.7288939688071,0.0,710.0,0.0,0.0,45230.0,1,1,1,130.0,7,1.0,4,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2559.7842321611197,0.07042241140502131,0.05659483157552774,17396.153846153844,5,3,5,5_1,5_1,5_0_1 -9617,1,38.0,3,440.0,5,221,2,0,85,2.0,0.0,0.0,485.6932721282072,0.0,938.4715732375919,11046.0,0,71,2,8982,201109617,,,193.0,,0.0,1.0,4.0,2.0,3.0,1.8,3988.8370195605507,0.0,356.0,540.0,0.0,17509.0,0,6,3,67.0,1,1.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1424.164845365799,0.12893036803963417,0.0813390168122565,9727.222222222223,1,1,1_1,1_0_1,1_1_1,1_0_0 -9618,2,48.0,4,0.0,1,111,2,85,46,7.0,0.0,0.0,788.5694137362465,0.0,2033.3550753481156,71105.0,50,41,1,8983,201109618,,,,,1.0,1.0,5.0,1.0,3.0,2.0,2092.026062104147,0.0,578.0,1170.0,0.0,46167.0,7,1,1,120.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2821.924489084362,0.039686723705567285,0.0611242768445938,23083.5,7,4,7,7_1,7_2,7_1_0 -9619,2,44.0,3,0.0,99,111,6,62,54,8.0,63.458240365555284,0.0,858.3387595498643,0.0,1774.1648005053412,53138.0,50,50,2,8986,201109619,,,,557.0,2.0,0.0,3.0,0.0,2.0,1.5,2583.8641553680477,1650.0,0.0,0.0,0.0,40921.0,1,1,3,75.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2695.961800420761,0.05073510106554181,0.0658821094406481,27280.666666666668,8,4,8,8_0,8_3,8_0_0 -9620,1,37.0,3,309.0,2,111,1,21,52,3.0,0.0,0.0,703.9823831970643,0.0,125.12954309834558,24787.0,50,42,2,8987,201109620,,,,320.0,2.0,0.0,3.0,3.0,5.0,2.4,3303.121617224271,0.0,516.0,72.0,0.0,31388.0,1,1,3,55.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,829.11192629541,0.033449466506451364,0.026414933296017903,13078.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_1 -9621,2,71.0,4,0.0,2,111,2,77,74,6.0,0.0,0.0,750.3688192991965,0.0,222.45252106372547,22492.0,71,70,1,8988,201109621,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2216.3938498806706,0.0,550.0,128.0,0.0,29644.0,5,5,1,100.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,972.821340362922,0.043251882463227906,0.032816804087266296,19762.666666666668,6,3,6,6_1,6_3,6_0_1 -9622,2,34.0,3,0.0,9,112,5,53,53,6.0,0.0,346.98157989085996,613.9381248811608,0.0,0.0,28534.0,42,31,1,899,201109622,,,295.0,,2.0,0.0,4.0,2.0,4.0,2.1,2811.3220132601946,0.0,450.0,0.0,0.0,41898.0,4,1,2,90.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,960.9197047720207,0.03367630562739261,0.022934739242255496,19951.42857142857,6,3,6,6_1,6_1,6_0_0 -9623,2,63.0,3,0.0,8,111,2,75,74,8.0,0.0,0.0,794.7743429042131,0.0,1587.4975804238272,78914.0,20,30,2,8992,201109623,,,,,0.0,3.0,4.0,0.0,2.0,1.5,3346.807383120978,901.0,239.0,356.0,0.0,43076.0,5,5,1,104.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2382.2719233280404,0.030188203909674336,0.05530392616139011,28717.333333333332,8,4,8,8_0,8_3,8_0_0 -9624,2,39.0,2,0.0,2,111,2,34,31,8.0,0.0,0.0,613.9381248811608,0.0,1911.7013528913908,59298.0,12,10,1,8993,201109624,,,400.0,,2.0,0.0,5.0,3.0,5.0,2.4,2307.9398148269142,0.0,450.0,1100.0,0.0,66060.0,1,1,2,150.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2525.639477772552,0.04259232145725913,0.03823250798929082,27525.0,8,4,8,8_1,8_3,8_0_1 -9625,2,54.0,2,0.0,7,112,4,55,47,9.0,0.0,0.0,4788.717374073054,0.0,0.0,32172.0,50,50,1,8994,201109625,,,,,2.0,2.0,7.0,0.0,2.0,1.5,1544.1445265186974,0.0,3510.0,0.0,0.0,55667.0,1,1,2,145.0,10,1.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4788.717374073054,0.14884736336171372,0.08602434789144474,37111.333333333336,9,5,9,9_1,9_1,9_0_0 -9626,2,65.0,1,0.0,1,112,2,0,74,10.0,158.64560091388822,0.0,2782.827434105103,0.0,2452.648430274354,46132.0,0,20,1,8995,201109626,,,,,0.0,0.0,5.0,0.0,1.0,1.0,1777.795780212701,2281.0,1170.0,0.0,0.0,41977.0,0,5,1,125.0,8,0.0,1,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5394.121465293345,0.116927977657447,0.12850183351105,41977.0,10,5,10,10_1,10_0,10_1_0 -9627,2,57.0,4,0.0,4,111,4,85,75,7.0,0.0,0.0,204.6460416270536,260.6865481215533,0.0,31118.0,50,50,1,8996,201109627,,,500.0,,0.0,2.0,5.0,1.0,3.0,1.8,1353.1316921153816,0.0,150.0,0.0,0.0,39001.0,7,5,2,110.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,465.3325897486069,0.014953807755916412,0.011931298934606982,21667.222222222223,6,3,6,6_1,6_3,6_0_1 -9628,2,52.0,2,0.0,1,111,2,0,64,5.0,1047.0609660316622,0.0,654.8673332065715,48.661488982689946,0.0,47165.0,0,50,1,8997,201109628,,,225.0,,1.0,3.0,4.0,0.0,1.0,1.0,1962.3016909227292,0.0,480.0,0.0,0.0,18283.0,0,1,1,90.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1750.5897882209235,0.037116289371799505,0.09574959187337546,18283.0,5,3,5,5_1,5_3,5_1_0 -9629,2,35.0,2,0.0,2,112,2,56,47,2.0,0.0,0.0,1579.8674413608537,0.0,0.0,25947.0,50,43,1,8998,201109629,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2658.694152072979,0.0,1158.0,0.0,0.0,17036.0,1,1,3,65.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1579.8674413608537,0.060888250717264183,0.09273699467955235,9464.444444444443,1,1,1_0,1_1_0,1_0_0,1_0_1 -9630,2,37.0,2,0.0,7,111,2,48,38,9.0,0.0,0.0,682.1534720901786,0.0,1564.1192887293198,54317.0,31,12,1,8999,201109630,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.1,2293.746774451256,0.0,500.0,900.0,0.0,69470.0,1,1,3,80.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2246.272760819498,0.041354875284340044,0.03233442868604431,33080.95238095238,9,5,9,9_1,9_3,9_0_0 -9631,2,37.0,3,0.0,9,111,2,46,22,2.0,0.0,0.0,769.4691165177215,0.0,1791.7855407554762,45844.0,20,12,1,9,201109631,,,309.0,,2.0,0.0,5.0,2.0,4.0,2.1,2321.911114973963,0.0,564.0,1031.0,0.0,21807.0,1,1,2,133.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2561.2546572731976,0.05586891757423431,0.11745103211231245,10384.285714285714,2,1,2_0,2_1_0,2_3_0,2_0_0 -9632,2,65.0,4,0.0,99,112,1,0,77,1.0,0.0,0.0,104.04106176361992,0.0,486.16428889554766,8199.0,0,70,2,90,201109632,,,400.0,387.0,0.0,2.0,3.0,0.0,1.0,1.0,4976.199283309399,200.0,0.0,156.0,0.0,2486.0,0,5,3,53.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,590.2053506591676,0.07198504093903739,0.23741164547834578,2486.0,1,1,1_0,1_0_0,1_1_0,1_0_0 -9633,2,34.0,3,0.0,8,112,2,54,47,9.0,0.0,0.0,1173.3039719951073,0.0,2433.074449134497,52554.0,31,31,1,900,201109633,,,298.0,,2.0,0.0,6.0,2.0,4.0,2.1,2066.078208746351,0.0,860.0,1400.0,0.0,70783.0,1,1,2,180.0,10,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3606.3784211296042,0.06862233932963437,0.05094978202576331,33706.19047619047,9,5,9,9_1,9_1,9_0_0 -9634,2,52.0,3,0.0,7,111,6,52,21,4.0,0.0,693.9631597817199,818.5841665082144,104.27461924862132,0.0,63316.0,50,50,1,9001,201109634,,,150.0,,2.0,0.0,5.0,2.0,4.0,2.5,1988.3098421091556,0.0,600.0,0.0,0.0,38784.0,1,1,2,140.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1616.8219455385556,0.025535756294436725,0.04168785956937283,15513.6,4,2,4_0,4_1_0,4_2_0,4_0_0 -9635,2,47.0,1,0.0,7,111,5,34,38,10.0,0.0,467.73116969287923,5795.575898878157,90.37133668213848,0.0,20104.0,20,12,1,9003,201109635,,,107.0,,2.0,0.0,6.0,0.0,2.0,1.5,1461.2709652081728,0.0,4248.0,0.0,0.0,68756.0,1,1,1,120.0,7,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,6353.678405253175,0.3160405096126728,0.09240907564798963,45837.333333333336,10,5,10,10_1,10_2,10_0_0 -9636,2,41.0,2,0.0,8,111,2,0,37,7.0,0.0,0.0,818.5841665082144,0.0,0.0,21516.0,0,70,2,9005,201109636,,,,435.0,1.0,1.0,2.0,0.0,1.0,1.0,3121.9338904777205,0.0,600.0,0.0,0.0,21603.0,0,1,3,50.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,818.5841665082144,0.038045369330182856,0.037892152317188094,21603.0,6,3,6,6_0,6_3,6_0_0 -9637,1,20.0,3,300.0,9,112,1,55,21,4.0,0.0,0.0,556.6372332255858,0.0,0.0,31272.0,60,50,8,9006,201109637,,,,250.0,2.0,0.0,4.0,1.0,3.0,1.8,6382.835800472355,0.0,408.0,0.0,0.0,28598.0,4,1,3,80.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,556.6372332255858,0.01779986036152423,0.019464201455541848,15887.777777777777,4,2,4_1,4_0_1,4_1_1,4_0_0 -9638,2,36.0,2,0.0,2,111,2,54,53,6.0,0.0,0.0,1091.4455553442858,0.0,1737.9103208103552,29166.0,31,50,1,9007,201109638,,,290.0,,2.0,0.0,4.0,2.0,4.0,2.1,1284.5249761642744,0.0,800.0,1000.0,0.0,44165.0,1,1,2,75.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2829.355876154641,0.09700870452426254,0.06406330524520867,21030.95238095238,6,3,6,6_1,6_3,6_0_1 -9639,2,42.0,4,0.0,8,112,5,0,54,3.0,0.0,277.585263912688,466.5929749096822,0.0,0.0,27336.0,0,31,1,9008,201109639,,,,,1.0,0.0,3.0,0.0,1.0,1.0,5533.033401195232,0.0,342.0,0.0,0.0,13681.0,0,1,2,80.0,9,1.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,744.1782388223702,0.027223377188409795,0.0543950178219699,13681.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -9640,2,47.0,2,0.0,5,111,2,55,62,4.0,0.0,0.0,1070.6096643854485,0.0,2808.9360388272885,55800.0,50,50,1,901,201109640,,,504.0,,2.0,0.0,5.0,2.0,4.0,2.5,790.0267573363843,870.0,453.0,1078.0,0.0,37486.0,1,1,1,100.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3879.545703212737,0.06952590865972647,0.10349318954310241,14994.4,4,2,4_0,4_1_0,4_2_0,4_0_0 -9641,2,74.0,3,0.0,6,111,4,77,77,8.0,47.593680274166466,0.0,818.5841665082144,0.0,0.0,29080.0,71,60,2,9010,201109641,,,264.0,,0.0,2.0,4.0,0.0,2.0,1.5,3567.505006568884,0.0,600.0,0.0,0.0,38431.0,5,5,1,70.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,866.1778467823808,0.029786033245611444,0.02253851960090502,25620.666666666668,8,4,8,8_0,8_3,8_0_0 -9642,2,27.0,3,0.0,5,111,1,0,38,10.0,0.0,0.0,218.28911106885715,0.0,0.0,38700.0,0,10,2,9011,201109642,,,,667.0,1.0,0.0,3.0,0.0,1.0,1.0,7290.046877998779,0.0,160.0,0.0,0.0,37970.0,0,1,3,66.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,218.28911106885715,0.005640545505655224,0.0057489889667858085,37970.0,10,5,10,10_0,10_4,10_0_0 -9643,1,34.0,3,27.0,5,111,1,0,67,3.0,0.0,0.0,218.28911106885715,0.0,208.54923849724264,6811.0,0,20,2,9012,201109643,,,,323.0,1.0,0.0,3.0,0.0,1.0,1.0,2503.055140471213,0.0,160.0,120.0,0.0,14057.0,0,1,3,60.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,426.8383495660998,0.06266896925063864,0.030364825323049,14057.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -9644,2,47.0,4,0.0,1,112,5,0,68,1.0,0.0,902.152107716236,1964.6019996197144,0.0,0.0,16939.0,0,50,1,9015,201109644,,,150.0,,1.0,0.0,7.0,3.0,4.0,2.3,986.7187052317439,0.0,1440.0,0.0,0.0,17197.0,0,1,1,200.0,7,0.0,2,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2866.7541073359503,0.16923986701316196,0.16670082615200035,7476.956521739131,1,1,1_0,1_1_0,1_0_0,1_1_0 -9645,2,39.0,2,0.0,1,111,1,21,37,8.0,0.0,0.0,518.4366387885358,0.0,660.405921907935,50865.0,31,12,2,9016,201109645,,,,926.0,2.0,0.0,4.0,2.0,4.0,2.1,2922.3583310177028,0.0,380.0,380.0,0.0,53079.0,1,1,3,110.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1178.8425606964706,0.02317590800543538,0.022209208174541167,25275.714285714286,8,4,8,8_0,8_3,8_1_0 -9646,2,39.0,3,0.0,4,112,2,47,63,8.0,0.0,0.0,537.5369360070607,0.0,2850.1729261289825,42414.0,41,71,1,9017,201109646,,,930.0,,2.0,0.0,5.0,2.0,4.0,2.1,3402.047472139198,0.0,394.0,1640.0,0.0,55909.0,1,1,2,100.0,10,3.0,4,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3387.7098621360433,0.07987244452624236,0.06059328305167403,26623.333333333332,8,4,8,8_1,8_1,8_0_1 -9647,2,53.0,2,0.0,6,112,4,52,54,6.0,0.0,0.0,1736.664990276693,145.98446694806984,222.57703860885192,45414.0,50,50,1,9018,201109647,,,180.0,,2.0,2.0,6.0,0.0,2.0,1.5,2112.353714470248,207.0,1194.0,0.0,0.0,31988.0,1,1,1,110.0,7,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2105.226495833615,0.04635633275715892,0.06581300787275275,21325.333333333332,6,3,6,6_1,6_1,6_0_0 -9648,2,56.0,3,0.0,1,221,4,0,63,1.0,0.0,0.0,1070.9809511815804,48.661488982689946,0.0,17043.0,0,50,1,9019,201109648,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3247.88285550531,0.0,785.0,0.0,0.0,4678.0,0,1,3,45.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1119.6424401642703,0.06569514992455966,0.23934212059945922,4678.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -9649,2,53.0,3,0.0,2,111,1,0,52,6.0,0.0,0.0,0.0,0.0,0.0,14195.0,0,50,2,902,201109649,,,,380.0,1.0,0.0,3.0,0.0,1.0,1.0,5961.653913139653,0.0,0.0,0.0,0.0,21003.0,0,1,3,55.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,21003.0,6,3,6,6_0,6_4,6_0_1 -9650,2,74.0,1,0.0,2,111,7,77,74,10.0,0.0,0.0,970.022237312234,0.0,3840.781808990885,31694.0,60,20,1,9020,201109650,,,360.0,,0.0,4.0,8.0,0.0,2.0,1.5,2121.162104347189,0.0,711.0,2210.0,0.0,83491.0,5,5,1,180.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4810.804046303119,0.15178910980952606,0.05762063032306619,55660.666666666664,10,5,10,10_1,10_2,10_0_1 -9651,2,69.0,2,0.0,4,111,2,0,86,9.0,3387.0835795115136,0.0,764.011888741,0.0,0.0,26709.0,0,60,1,9021,201109651,,,478.0,,0.0,4.0,5.0,0.0,2.0,1.5,3529.8779110109067,0.0,560.0,0.0,0.0,46700.0,0,5,1,104.0,10,8.0,5,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4151.0954682525135,0.15541935183842576,0.08888855392403669,31133.333333333332,9,5,9,9_1,9_4,9_0_1 -9652,2,54.0,2,0.0,9,112,4,53,52,8.0,0.0,0.0,1309.734666413143,281.54147197127753,0.0,49943.0,31,41,1,9022,201109652,,,585.0,,2.0,1.0,4.0,1.0,3.0,2.0,1434.0506087236893,0.0,960.0,0.0,0.0,52956.0,1,1,3,98.0,6,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1591.2761383844206,0.03186184527129769,0.03004902444263956,26478.0,8,4,8,8_1,8_1,8_0_0 -9653,2,54.0,2,0.0,5,111,2,77,53,9.0,1427.810408224994,0.0,386.0988652030411,173.79103208103552,0.0,31050.0,42,50,1,9023,201109653,,,156.0,,1.0,1.0,4.0,0.0,2.0,1.5,1799.5463424240638,0.0,283.0,0.0,0.0,52704.0,5,1,1,150.0,8,6.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1987.7003055090709,0.06401611289884286,0.03771441077544534,35136.0,9,5,9,9_1,9_2,9_0_0 -9654,1,39.0,5,264.0,1,221,2,0,68,1.0,0.0,0.0,458.40713324460006,0.0,1793.5234510762866,7648.0,0,50,2,9024,201109654,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2982.6565279883152,0.0,336.0,1032.0,0.0,8788.0,0,4,3,60.0,1,2.0,1,9,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,2251.9305843208867,0.294446990627731,0.25625063544843957,8788.0,1,1,1_1,1_0_1,1_1_1,1_1_0 -9655,2,42.0,3,0.0,8,112,4,54,63,3.0,0.0,0.0,2800.9221564022732,0.0,109.48835021105238,36029.0,42,44,1,9026,201109655,,,,,2.0,0.0,4.0,2.0,4.0,2.5,2824.370019392876,0.0,2053.0,63.0,0.0,31860.0,1,1,2,140.0,7,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2910.4105066133257,0.08077966378787436,0.09134998451391481,12744.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -9656,2,59.0,3,0.0,2,112,2,75,38,5.0,0.0,0.0,1227.8762497623215,0.0,2153.27088748403,29823.0,33,50,2,9027,201109656,,,452.0,,1.0,2.0,6.0,0.0,2.0,1.5,5006.363535096147,0.0,900.0,1239.0,0.0,28024.0,7,4,1,110.0,9,3.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,3381.1471372463516,0.11337381005419815,0.12065183903962146,18682.666666666668,5,3,5,5_0,5_1,5_0_1 -9657,2,54.0,2,0.0,6,112,4,52,47,9.0,0.0,0.0,1978.245069061518,208.54923849724264,0.0,26855.0,50,50,1,903,201109657,,,150.0,,2.0,2.0,7.0,0.0,2.0,1.5,1019.9219884849947,0.0,1450.0,0.0,0.0,47041.0,1,1,1,150.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2186.794307558761,0.08142968935240219,0.046486985981564186,31360.666666666668,9,5,9,9_1,9_1,9_0_0 -9658,2,46.0,3,0.0,1,300,4,0,62,10.0,0.0,83.27557917380639,502.06495545837146,79.94387475727635,0.0,14622.0,0,70,1,9030,201109658,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2100.1190527447266,0.0,368.0,0.0,0.0,39100.0,0,1,2,45.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,665.2844093894543,0.045498865366533595,0.017014946531699597,39100.0,10,5,10,10_1,10_0,10_1_0 -9659,2,44.0,3,0.0,5,112,2,52,68,8.0,0.0,0.0,589.3805998859143,0.0,2043.7825372729778,23656.0,71,50,1,9031,201109659,,,330.0,,2.0,1.0,3.0,0.0,2.0,1.5,3220.1381596998435,0.0,432.0,1176.0,0.0,39973.0,1,1,2,90.0,10,3.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2633.163137158892,0.11131058239596263,0.06587354307054491,26648.666666666668,8,4,8,8_1,8_1,8_0_0 -9660,2,63.0,3,0.0,8,400,2,78,22,2.0,0.0,0.0,2676.770224481861,0.0,0.0,52566.0,50,50,1,9032,201109660,,,,,1.0,2.0,6.0,0.0,2.0,1.5,1337.452221014774,0.0,1962.0,0.0,0.0,16022.0,5,1,2,145.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2676.770224481861,0.05092208318079863,0.16706841995268137,10681.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -9661,2,60.0,3,0.0,2,111,1,0,75,3.0,0.0,0.0,387.4631721472215,0.0,417.0984769944853,15815.0,0,70,2,9037,201109661,,,,317.0,0.0,2.0,3.0,0.0,1.0,1.0,3167.2620891075053,0.0,284.0,240.0,0.0,14352.0,0,5,3,58.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,804.5616491417068,0.0508733259020997,0.05605920074844668,14352.0,3,2,3_0,3_0_0,3_3_0,3_0_1 -9662,2,50.0,2,0.0,4,111,2,63,45,8.0,0.0,0.0,736.7257498573929,0.0,2380.9371395101866,31369.0,50,50,1,9042,201109662,,,400.0,,3.0,0.0,6.0,2.0,4.0,2.5,792.8559949843878,0.0,540.0,1370.0,0.0,65514.0,1,1,1,120.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3117.6628893675797,0.09938674772442793,0.047587735283566565,26205.6,8,4,8,8_1,8_2,8_0_1 -9663,2,62.0,2,0.0,2,211,2,77,78,8.0,0.0,0.0,586.6519859975537,0.0,2519.969965175015,21075.0,33,70,1,9043,201109663,,,450.0,,0.0,1.0,4.0,0.0,2.0,1.5,1247.7714725209783,0.0,430.0,1450.0,0.0,38932.0,5,5,1,80.0,3,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3106.621951172569,0.14740792176382297,0.07979610477685628,25954.666666666668,8,4,8,8_1,8_2,8_0_1 -9664,2,39.0,1,0.0,9,120,6,56,21,7.0,0.0,0.0,1702.6550663370858,0.0,0.0,55956.0,60,50,1,9044,201109664,,,460.0,,2.0,0.0,6.0,2.0,4.0,2.1,4488.676887240353,0.0,1248.0,0.0,0.0,50362.0,1,1,2,110.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1702.6550663370858,0.03042846283396036,0.03380832902460359,23981.90476190476,7,4,7,7_1,7_0,7_0_0 -9665,2,39.0,2,0.0,9,112,5,56,38,8.0,0.0,458.01568545593517,728.5399081923108,0.0,1053.1736544110752,45709.0,50,31,1,9048,201109665,,,350.0,,2.0,0.0,5.0,1.0,3.0,1.8,2804.772907438263,0.0,534.0,606.0,0.0,51330.0,1,1,2,113.0,8,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2239.7292480593214,0.048999742896570074,0.04363392261950753,28516.666666666664,8,4,8,8_1,8_0,8_0_0 -9666,2,56.0,2,0.0,6,300,6,85,64,5.0,3172.912018277764,0.0,900.4425831590357,0.0,0.0,23697.0,50,50,1,9049,201109666,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1003.2194260375645,0.0,660.0,0.0,0.0,25931.0,6,1,1,105.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4073.3546014368,0.1718932608109381,0.1570843624016351,17287.333333333332,5,3,5,5_1,5_0,5_0_0 -9667,2,25.0,3,0.0,1,111,2,63,42,7.0,0.0,0.0,546.2155742590046,0.0,1129.0139639579445,67454.0,44,20,1,9050,201109667,,,270.0,573.0,2.0,0.0,3.0,1.0,3.0,1.8,1592.5184560999398,1050.0,0.0,0.0,0.0,42905.0,1,1,3,60.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1675.229538216949,0.024835140069038888,0.03904508887581748,23836.11111111111,7,4,7,7_1,7_2,7_1_0 -9668,2,24.0,3,0.0,6,400,4,69,69,6.0,0.0,0.0,252.39678467336608,0.0,0.0,36603.0,43,43,1,9053,201109668,,,,408.0,2.0,0.0,5.0,0.0,2.0,1.5,2561.881982563342,0.0,185.0,0.0,0.0,29125.0,4,1,3,70.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,252.39678467336608,0.006895521806228071,0.008665984023119865,19416.666666666668,6,3,6,6_1,6_0,6_0_0 -9669,2,39.0,2,0.0,1,111,6,34,34,9.0,0.0,0.0,691.7036206994411,0.0,1659.7043563738891,31556.0,10,10,1,9054,201109669,,,237.0,,2.0,0.0,4.0,2.0,4.0,2.1,1961.5718300723088,0.0,507.0,955.0,0.0,62992.0,1,1,2,50.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2351.40797707333,0.07451540046499334,0.037328676293391705,29996.190476190473,9,5,9,9_1,9_3,9_1_0 -9670,2,57.0,2,0.0,7,111,2,54,43,10.0,0.0,0.0,1296.0915969713394,0.0,2373.9854982269453,47148.0,20,20,1,9055,201109670,,,1623.0,,2.0,2.0,5.0,0.0,2.0,1.5,2223.042514047571,0.0,950.0,1366.0,0.0,77923.0,1,1,1,170.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3670.077095198285,0.07784162838716986,0.04709876538632092,51948.666666666664,10,5,10,10_1,10_4,10_0_0 -9671,2,32.0,3,0.0,1,120,5,0,11,1.0,0.0,0.0,1910.0297218525002,486.61488982689946,0.0,34462.0,0,50,1,9056,201109671,,,324.0,,1.0,3.0,4.0,2.0,4.0,2.5,2706.8874001020577,0.0,1400.0,0.0,0.0,22940.0,0,1,1,150.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2396.6446116793995,0.06954455956355984,0.10447448176457713,9176.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -9672,2,23.0,3,0.0,3,111,1,0,47,5.0,0.0,0.0,368.36287492869644,0.0,83.41969539889705,17802.0,0,43,2,9057,201109672,,,,200.0,1.0,0.0,2.0,0.0,1.0,1.0,3712.8338666181603,0.0,270.0,48.0,0.0,18730.0,0,1,3,40.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,451.7825703275935,0.025378191794606982,0.024120799270026347,18730.0,5,3,5,5_0,5_3,5_0_1 -9673,2,66.0,3,0.0,5,112,5,78,78,5.0,364.8848821019429,149.89604251285152,589.3805998859143,145.98446694806984,0.0,26639.0,71,71,1,9058,201109673,,,77.0,,0.0,2.0,5.0,1.0,3.0,2.0,2788.366696185371,0.0,432.0,0.0,0.0,37087.0,5,5,1,110.0,9,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1250.1459914487787,0.046929163686654105,0.03370846904437616,18543.5,5,3,5,5_1,5_0,5_0_0 -9674,2,48.0,3,0.0,8,111,2,45,47,10.0,0.0,0.0,425.66376658427146,0.0,2115.036860426202,60852.0,42,41,1,906,201109674,,,420.0,,2.0,1.0,5.0,0.0,2.0,1.5,2447.7527277778395,0.0,312.0,1217.0,0.0,60920.0,1,1,1,160.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2540.7006270104735,0.04175213020131587,0.04170552572243062,40613.333333333336,10,5,10,10_1,10_3,10_0_0 -9675,2,62.0,1,0.0,3,300,5,85,62,10.0,0.0,1110.341055650752,1753.134423271759,0.0,0.0,96367.0,42,50,1,9060,201109675,,,310.0,,1.0,3.0,5.0,0.0,2.0,1.5,989.0693486649923,0.0,1285.0,0.0,0.0,58749.0,7,1,1,140.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2863.475478922511,0.029714274377354393,0.04874083778315394,39166.0,10,5,10,10_1,10_1,10_0_1 -9676,2,80.0,3,0.0,4,111,2,74,74,7.0,6345.824036555528,0.0,1773.5990274344645,161.62565983536302,0.0,34939.0,50,70,1,9061,201109676,,,182.0,,0.0,1.0,5.0,0.0,2.0,1.5,1641.1619458845717,0.0,1300.0,0.0,0.0,36893.0,5,5,1,160.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,8281.048723825355,0.23701447447910232,0.2244612453263588,24595.333333333332,7,4,7,7_1,7_3,7_0_1 -9677,2,44.0,3,0.0,5,221,2,0,54,9.0,0.0,0.0,420.20653880755003,0.0,0.0,14767.0,0,50,2,9062,201109677,,,,,1.0,0.0,6.0,1.0,3.0,2.0,2170.442944098911,0.0,308.0,0.0,0.0,68220.0,0,1,3,95.0,1,2.0,5,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,420.20653880755003,0.028455782407228958,0.006159579871116242,34110.0,9,5,9,9_0,9_1,9_0_0 -9678,2,72.0,4,0.0,9,111,2,0,77,5.0,0.0,0.0,848.5989192801823,0.0,1402.4936288939566,23771.0,0,71,1,9063,201109678,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2587.334111633786,0.0,622.0,807.0,0.0,18245.0,0,5,1,100.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2251.0925481741388,0.09469911018359088,0.12338133999310161,18245.0,5,3,5,5_1,5_2,5_0_0 -9679,2,35.0,2,0.0,1,112,2,35,38,9.0,0.0,0.0,1364.3069441803573,3475.8206416207104,0.0,53661.0,20,12,1,9064,201109679,,,300.0,,2.0,0.0,7.0,2.0,4.0,2.1,1376.7369523434988,0.0,1000.0,0.0,0.0,61602.0,1,1,2,200.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4840.127585801068,0.0901982368163297,0.07857094876466783,29334.285714285714,9,5,9,9_1,9_0,9_1_0 -9680,2,23.0,4,0.0,8,111,2,0,46,4.0,0.0,0.0,573.00891655575,0.0,0.0,60638.0,0,42,2,9065,201109680,,,,427.0,1.0,0.0,2.0,0.0,1.0,1.0,2830.2384109326117,0.0,420.0,0.0,0.0,16724.0,0,1,3,33.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,573.00891655575,0.009449667148582572,0.03426267140371622,16724.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -9681,2,54.0,3,0.0,9,111,4,52,48,7.0,0.0,0.0,1521.2022427610984,236.3558036302083,0.0,54364.0,50,50,1,9066,201109681,,,310.0,562.0,2.0,2.0,5.0,1.0,3.0,2.0,1258.4947485637922,0.0,1115.0,0.0,0.0,47356.0,1,1,3,87.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1757.5580463913068,0.03232944681022932,0.03711373524772588,23678.0,7,4,7,7_1,7_3,7_0_0 -9682,2,60.0,2,0.0,6,111,2,34,74,9.0,0.0,0.0,838.0890966962797,0.0,1610.5274292657073,39509.0,20,20,2,9067,201109682,,,,,1.0,0.0,6.0,2.0,4.0,2.5,1971.7975949610768,1139.0,180.0,222.0,0.0,79126.0,1,5,1,135.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2448.616525961987,0.0619761706437011,0.03094578932287727,31650.4,9,5,9,9_0,9_4,9_0_0 -9683,2,42.0,3,0.0,8,111,2,35,35,7.0,0.0,0.0,728.2874323453394,0.0,1505.351951943926,34969.0,20,31,1,9068,201109683,,,81.0,,2.0,0.0,5.0,2.0,4.0,2.1,2310.121469146554,1400.0,0.0,0.0,0.0,46200.0,1,1,1,200.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2233.6393842892653,0.06387484298347866,0.04834717282011397,22000.0,7,4,7,7_1,7_3,7_0_0 -9684,1,35.0,5,160.0,1,111,7,85,53,3.0,0.0,0.0,982.3009998098572,0.0,0.0,29314.0,71,71,2,9069,201109684,,,,,1.0,0.0,3.0,4.0,6.0,2.7,3294.7223054533374,0.0,720.0,0.0,0.0,37921.0,5,1,3,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,982.3009998098572,0.03350961997031648,0.025903879112097707,14044.814814814814,3,2,3_1,3_0_1,3_3_1,3_1_0 -9685,2,30.0,3,0.0,1,111,4,54,62,9.0,0.0,0.0,2095.575466261029,52.13730962431066,0.0,52479.0,10,41,1,9070,201109685,,,350.0,,2.0,0.0,6.0,1.0,3.0,1.8,1677.1448898222818,0.0,1536.0,0.0,0.0,52023.0,1,1,2,95.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2147.7127758853394,0.040925184852709455,0.041283908576693756,28901.666666666664,8,4,8,8_1,8_2,8_1_0 -9686,2,54.0,4,0.0,7,111,1,0,55,3.0,0.0,0.0,304.2404485522197,0.0,0.0,44859.0,0,41,2,9072,201109686,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2488.0876431848988,0.0,223.0,0.0,0.0,14411.0,0,4,1,45.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,304.2404485522197,0.006782149592104587,0.021111681947971667,14411.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -9687,2,50.0,3,0.0,1,112,2,11,52,3.0,0.0,0.0,0.0,260.6865481215533,0.0,37277.0,50,43,1,9074,201109687,,,,,2.0,2.0,6.0,0.0,2.0,1.5,1269.6434413225581,0.0,0.0,0.0,0.0,19519.0,1,1,1,166.0,8,1.0,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,260.6865481215533,0.006993227677161609,0.013355527850891608,13012.666666666666,3,2,3_0,3_1_0,3_1_0,3_1_0 -9688,2,57.0,3,0.0,6,111,1,0,46,9.0,1028.0234939219956,0.0,1249.9142945089445,0.0,1784.5674964369957,52637.0,0,60,2,9075,201109688,648.0,648.0,,436.0,2.0,0.0,3.0,1.0,2.0,1.5,2527.5590956218707,1553.0,324.0,66.0,0.0,47379.0,0,1,3,115.0,10,8.0,2,1,1,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4062.505284867936,0.07717965090844722,0.08574485077498335,31586.0,9,5,9,9_0,9_4,9_0_0 -9689,2,63.0,2,0.0,4,111,2,77,77,6.0,0.0,0.0,675.3319373692768,0.0,1209.5855832840073,20858.0,50,50,1,9076,201109689,,,168.0,,0.0,2.0,4.0,0.0,2.0,1.5,1168.8908195504234,0.0,495.0,696.0,0.0,31380.0,5,5,1,90.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1884.917520653284,0.09036904404321047,0.06006747994433665,20920.0,6,3,6,6_1,6_3,6_0_1 -9690,1,84.0,4,140.0,1,111,2,0,77,2.0,0.0,0.0,0.0,0.0,0.0,6832.0,0,70,1,9077,201109690,,,,,0.0,3.0,2.0,0.0,1.0,1.0,2729.1242262154283,0.0,0.0,0.0,0.0,10490.0,0,5,3,40.0,6,5.0,1,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0.0,0.0,0.0,10490.0,2,1,2_1,2_1_1,2_2_1,2_1_0 -9691,2,78.0,3,0.0,1,112,5,71,11,6.0,0.0,346.98157989085996,709.4396109737858,135.55700502320772,0.0,19881.0,70,50,1,9078,201109691,,,358.0,,1.0,2.0,5.0,0.0,2.0,1.5,1131.873760383375,0.0,520.0,0.0,0.0,29710.0,5,5,5,100.0,7,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1191.9781958878534,0.05995564588742284,0.040120437424700554,19806.666666666668,6,3,6,6_1,6_0,6_1_0 -9692,2,66.0,1,0.0,6,111,1,0,75,10.0,0.0,0.0,327.43366660328576,0.0,0.0,192424.0,0,31,2,9079,201109692,,,60.0,,0.0,1.0,5.0,0.0,1.0,1.0,2939.6380580451123,0.0,240.0,0.0,0.0,135476.0,0,5,1,141.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,327.43366660328576,0.0017016259229788683,0.002416912712238963,135476.0,10,5,10,10_0,10_3,10_0_0 -9693,2,53.0,3,0.0,6,111,4,47,75,8.0,0.0,0.0,2009.6241287776663,0.0,0.0,35820.0,41,50,1,908,201109693,,,192.0,,1.0,0.0,4.0,1.0,3.0,2.0,3473.6312830874704,0.0,1473.0,0.0,0.0,51308.0,1,5,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2009.6241287776663,0.05610340951361436,0.03916785157826589,25654.0,8,4,8,8_1,8_3,8_0_0 -9694,0,47.0,4,0.0,1,111,1,0,64,1.0,0.0,0.0,260.1026544090498,0.0,537.6256971228307,17811.0,0,41,2,9081,201109694,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2893.190625366038,500.0,0.0,0.0,0.0,6060.0,0,4,5,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,797.7283515318805,0.04478852122462976,0.13163834183694398,6060.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -9695,2,62.0,1,0.0,1,111,1,75,74,9.0,0.0,0.0,1407.9647663941287,0.0,1998.5968689319086,57822.0,43,41,1,9082,201109695,,,550.0,,1.0,3.0,5.0,0.0,3.0,2.0,1801.0757091273292,0.0,1032.0,1150.0,0.0,72937.0,5,5,1,120.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3406.5616353260375,0.05891462826131987,0.04670553539802895,36468.5,9,5,9,9_1,9_4,9_1_0 -9696,2,49.0,3,0.0,7,112,2,46,47,9.0,0.0,0.0,3099.669192060706,194.64595593075978,1703.1982084851277,94385.0,41,42,1,9083,201109696,,,254.0,,3.0,0.0,6.0,2.0,4.0,2.5,1396.1762116943876,1584.0,1668.0,0.0,0.0,86516.0,1,1,1,170.0,4,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4997.513356476594,0.05294817350719493,0.05776403620690501,34606.4,9,5,9,9_1,9_0,9_0_0 -9697,2,28.0,5,0.0,99,120,1,0,62,6.0,0.0,0.0,1227.8762497623215,0.0,173.79103208103552,17483.0,0,50,2,9084,201109697,,,,300.0,2.0,2.0,4.0,1.0,2.0,1.5,5404.982348337376,0.0,900.0,100.0,0.0,28954.0,0,4,3,60.0,0,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1401.6672818433572,0.08017315574234155,0.048410143049090186,19302.666666666668,6,3,6,6_0,6_1,6_0_0 -9698,2,69.0,3,0.0,1,112,1,77,72,4.0,0.0,0.0,573.00891655575,208.54923849724264,0.0,21486.0,70,50,1,9085,201109698,,,250.0,,0.0,1.0,3.0,0.0,2.0,1.5,740.0851935236448,0.0,420.0,0.0,0.0,22888.0,5,5,1,120.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,781.5581550529927,0.03637522829065404,0.034147070738072036,15258.666666666666,4,2,4_0,4_1_0,4_0_0,4_1_0 -9699,2,67.0,3,0.0,1,400,6,77,78,4.0,364.8848821019429,27.7585263912688,1227.8762497623215,583.9378677922793,0.0,26278.0,50,70,1,9086,201109699,,,140.0,,0.0,1.0,5.0,0.0,2.0,1.5,3077.044342585813,0.0,900.0,0.0,0.0,24531.0,5,5,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2204.4575260478123,0.08388985181702611,0.089864152543631,16354.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -9700,2,49.0,2,0.0,1,111,2,0,38,10.0,0.0,0.0,347.8982707659911,0.0,1378.1628844026118,28543.0,0,20,2,9087,201109700,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2742.796054962939,0.0,255.0,793.0,0.0,39605.0,0,1,1,67.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1726.061155168603,0.06047231037972893,0.04358190014312847,39605.0,10,5,10,10_0,10_4,10_1_0 -9701,2,47.0,2,0.0,7,400,2,55,21,8.0,793.228004569441,0.0,2319.3218051066074,0.0,0.0,40072.0,50,50,1,9088,201109701,,,271.0,,2.0,1.0,6.0,2.0,4.0,2.3,1492.553184629046,0.0,1700.0,0.0,0.0,63369.0,1,1,1,200.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3112.5498096760484,0.077673932164006,0.049117862198804596,27551.739130434784,8,4,8,8_1,8_0,8_0_0 -9702,2,63.0,2,0.0,1,111,2,77,22,2.0,6425.146837012473,0.0,2147.037987412013,0.0,912.8884337145665,45225.0,71,50,1,9090,201109702,,,450.0,,1.0,2.0,6.0,1.0,3.0,2.0,3906.031600769207,849.0,1250.0,0.0,0.0,22314.0,7,1,1,130.0,7,5.0,4,4,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,9485.073258139053,0.2097307519765407,0.4250727461745565,11157.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -9703,2,70.0,3,0.0,3,112,4,77,75,4.0,317.29120182777643,0.0,1023.230208135268,93.84715732375918,0.0,14971.0,71,71,1,9091,201109703,,,220.0,,0.0,3.0,4.0,0.0,2.0,1.5,2469.1132008834506,0.0,750.0,0.0,0.0,23126.0,5,5,1,96.0,10,1.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1434.3685672868035,0.09580980343910249,0.062024066733840845,15417.333333333334,4,2,4_0,4_1_0,4_1_0,4_0_1 -9704,2,35.0,2,0.0,4,112,2,34,34,9.0,0.0,0.0,1773.5990274344645,0.0,0.0,73432.0,10,10,1,9092,201109704,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1549.0221938781458,0.0,1300.0,0.0,0.0,66694.0,1,1,2,110.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1773.5990274344645,0.02415294459410699,0.02659308224779537,31759.04761904762,9,5,9,9_1,9_1,9_0_1 -9705,0,47.0,3,0.0,1,120,5,0,69,2.0,0.0,0.0,641.2242637647679,69.5164128324142,0.0,13750.0,0,50,1,9093,201109705,,,130.0,,1.0,0.0,4.0,1.0,2.0,1.3,3552.1907411402353,0.0,470.0,0.0,0.0,14285.0,0,4,5,90.0,0,2.0,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,710.7406765971821,0.051690231025249604,0.04975433507855667,10988.461538461537,2,1,2_0,2_1_0,2_1_0,2_1_0 -9706,1,38.0,4,250.0,1,111,4,0,37,6.0,0.0,0.0,1091.4455553442858,0.0,0.0,18457.0,0,10,2,9096,201109706,,,,118.0,1.0,1.0,1.0,0.0,1.0,1.0,3148.5605964691013,0.0,800.0,0.0,0.0,20172.0,0,1,4,25.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1091.4455553442858,0.05913450481358216,0.05410695792902468,20172.0,6,3,6,6_0,6_2,6_1_0 -9707,2,44.0,3,0.0,7,111,6,54,47,7.0,0.0,0.0,1499.3733316542125,206.81132817643228,0.0,29015.0,71,31,1,9097,201109707,,,215.0,,2.0,0.0,4.0,2.0,4.0,2.1,3300.0434825745015,0.0,1099.0,0.0,0.0,45465.0,1,1,2,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1706.1846598306447,0.0588035381640753,0.03752743120709655,21650.0,6,3,6,6_1,6_3,6_0_0 -9708,2,69.0,1,0.0,6,111,4,47,74,2.0,0.0,0.0,2865.0445827787503,0.0,0.0,39096.0,20,20,1,9098,201109708,,,450.0,,1.0,2.0,7.0,0.0,2.0,1.5,3210.3080133094877,0.0,2100.0,0.0,0.0,15500.0,1,5,1,130.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2865.0445827787503,0.07328229442343846,0.18484158598572584,10333.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0 -9709,1,67.0,4,196.0,4,111,1,0,77,4.0,0.0,0.0,341.0767360450893,0.0,0.0,11361.0,0,70,2,9099,201109709,,,,374.0,0.0,1.0,1.0,0.0,1.0,1.0,3629.785993591481,0.0,250.0,0.0,0.0,15022.0,0,5,3,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,341.0767360450893,0.030021717810499896,0.022705148185666976,15022.0,4,2,4_1,4_0_1,4_4_1,4_0_1 -9710,2,66.0,3,0.0,2,111,5,0,77,4.0,0.0,0.0,968.6579303680536,161.62565983536302,0.0,12388.0,0,70,1,91,201109710,,,190.0,,0.0,1.0,4.0,0.0,1.0,1.0,2776.4086314035167,0.0,710.0,0.0,0.0,15365.0,0,5,1,100.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1130.2835902034167,0.09124019940292354,0.07356222520035254,15365.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -9711,2,34.0,2,0.0,1,300,2,0,52,3.0,0.0,388.6193694777632,0.0,0.0,0.0,19084.0,0,20,1,910,201109711,,,,,1.0,0.0,5.0,1.0,2.0,1.3,2693.746434937924,0.0,0.0,0.0,0.0,17578.0,0,1,3,100.0,0,0.0,2,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,388.6193694777632,0.020363622378838986,0.022108281344735647,13521.538461538461,3,2,3_0,3_1_0,3_0_0,3_1_0 -9712,2,34.0,1,0.0,1,111,4,48,38,10.0,0.0,0.0,1064.1594164606786,39.971937378638174,0.0,40100.0,31,12,1,9101,201109712,,,260.0,,2.0,0.0,4.0,0.0,2.0,1.5,2541.9578880137487,0.0,780.0,0.0,0.0,83451.0,1,1,3,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1104.1313538393167,0.02753444772666625,0.01323089422342832,55634.0,10,5,10,10_1,10_3,10_1_0 -9713,2,28.0,2,0.0,1,111,6,45,45,9.0,0.0,0.0,0.0,0.0,0.0,29054.0,20,20,2,9103,201109713,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3289.0077484792064,0.0,0.0,0.0,0.0,47426.0,1,1,3,70.0,10,8.0,3,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,31617.333333333332,9,5,9,9_0,9_4,9_1_0 -9714,2,48.0,3,0.0,1,111,2,52,48,9.0,0.0,0.0,749.0045123550161,0.0,1668.3939079779411,43407.0,50,42,1,9104,201109714,,,120.0,,3.0,0.0,4.0,2.0,4.0,2.5,2156.3358503348013,0.0,549.0,960.0,0.0,74348.0,1,1,2,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2417.3984203329574,0.055691441940999314,0.032514639537485304,29739.2,9,5,9,9_1,9_4,9_1_0 -9715,1,68.0,2,20.0,9,111,2,0,75,3.0,0.0,0.0,28.650445827787504,0.0,62.56477154917279,8984.0,0,50,2,9107,201109715,,,,275.0,0.0,0.0,2.0,0.0,1.0,1.0,3013.0996484178395,0.0,21.0,36.0,0.0,14097.0,0,5,3,50.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,91.2152173769603,0.010153074062439926,0.006470541063840554,14097.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -9716,2,85.0,1,0.0,2,300,2,72,75,5.0,1380.2167279508276,0.0,673.9676304250964,104.27461924862132,0.0,16818.0,71,50,1,9108,201109716,,,146.0,,0.0,4.0,5.0,0.0,2.0,1.5,2210.6957025194215,0.0,494.0,0.0,0.0,27993.0,5,5,1,112.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2158.4589776245457,0.12834219155812496,0.07710709740379901,18662.0,5,3,5,5_1,5_0,5_0_1 -9717,1,50.0,5,319.0,4,111,2,0,56,1.0,0.0,0.0,845.8703053918215,0.0,1060.1252956943167,8423.0,0,71,2,9109,201109717,,,,,2.0,3.0,4.0,1.0,2.0,1.5,3302.7518336654384,0.0,620.0,610.0,0.0,13558.0,0,4,3,76.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1905.9956010861383,0.2262846493038274,0.14058088221611878,9038.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_1 -9718,2,45.0,2,0.0,1,111,2,0,63,7.0,0.0,0.0,409.2920832541072,0.0,1042.7461924862132,31876.0,0,50,1,911,201109718,,,250.0,,1.0,0.0,6.0,0.0,1.0,1.0,1742.4263190633228,0.0,300.0,600.0,0.0,23390.0,0,1,1,150.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1452.0382757403204,0.04555271287929227,0.06207944744507569,23390.0,7,4,7,7_1,7_3,7_1_0 -9719,2,65.0,2,0.0,8,120,4,75,74,9.0,0.0,111.0341055650752,2496.681707850054,52.13730962431066,0.0,49444.0,60,31,1,9110,201109719,,,310.0,,0.0,2.0,6.0,0.0,2.0,1.5,3043.142676754239,0.0,1830.0,0.0,0.0,46230.0,5,5,1,127.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2659.8531230394397,0.053795265816670164,0.05753521788966991,30820.0,9,5,9,9_1,9_0,9_0_0 -9720,1,49.0,4,262.0,2,111,2,0,85,2.0,0.0,0.0,272.86138883607146,0.0,2415.6953459263937,9729.0,0,50,2,9114,201109720,,,223.0,,0.0,3.0,4.0,0.0,1.0,1.0,3350.9240569812646,0.0,200.0,1390.0,0.0,10764.0,0,7,4,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2688.556734762465,0.27634461247430003,0.24977301512100197,10764.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -9721,2,48.0,2,0.0,6,300,4,52,42,8.0,0.0,0.0,1500.737638598393,173.79103208103552,0.0,42185.0,71,50,1,9115,201109721,,,,,2.0,2.0,6.0,0.0,2.0,1.5,2595.4950968745866,0.0,1100.0,0.0,0.0,40290.0,1,1,1,220.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1674.5286706794286,0.03969488374254898,0.04156189304242811,26860.0,8,4,8,8_1,8_0,8_0_0 -9722,2,60.0,4,0.0,1,221,6,0,78,3.0,571.1241632899976,0.0,225.11064578975893,0.0,316.2996783874847,13418.0,0,60,1,9116,201109722,,,76.0,,0.0,0.0,2.0,0.0,1.0,1.0,2428.7803290963743,0.0,165.0,182.0,0.0,14283.0,0,5,1,40.0,1,3.0,1,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1112.5344874672412,0.0829135852934298,0.07789221364329911,14283.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -9723,2,64.0,2,0.0,5,111,4,21,75,8.0,0.0,208.188947934516,1495.2804108216715,156.41192887293198,0.0,52004.0,70,60,1,912,201109723,,,290.0,,1.0,1.0,5.0,0.0,2.0,1.5,1924.9468149230215,0.0,1096.0,0.0,0.0,42980.0,5,5,1,100.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1859.8812876291195,0.03576419674696407,0.04327318026126383,28653.333333333332,8,4,8,8_1,8_2,8_0_0 -9724,2,55.0,2,0.0,1,300,2,52,43,10.0,222.10384127944351,0.0,1637.1683330164287,135.55700502320772,0.0,52413.0,50,42,1,9120,201109724,,,208.0,,2.0,2.0,6.0,0.0,2.0,1.5,1390.957758919735,0.0,1200.0,0.0,0.0,57016.0,1,1,1,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1994.82917931908,0.03805981682634232,0.034987182182529115,38010.666666666664,10,5,10,10_1,10_0,10_1_0 -9725,2,69.0,2,0.0,1,221,6,74,74,10.0,0.0,0.0,4562.242421339115,0.0,0.0,58459.0,10,10,1,9122,201109725,,,374.0,,0.0,2.0,7.0,0.0,2.0,1.5,2329.7279047505826,0.0,3344.0,0.0,0.0,87568.0,5,5,1,200.0,1,2.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4562.242421339115,0.07804174586187097,0.0520994246909729,58378.666666666664,10,5,10,10_1,10_1,10_1_0 -9726,2,55.0,2,0.0,4,112,2,22,42,10.0,0.0,0.0,731.2685220806715,0.0,3253.368120556985,28245.0,50,42,1,9125,201109726,,,278.0,,2.0,2.0,8.0,0.0,2.0,1.5,1257.2643285204247,0.0,536.0,1872.0,0.0,60731.0,1,1,1,164.0,8,2.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3984.6366426376567,0.14107405355417443,0.06561124701779415,40487.333333333336,10,5,10,10_1,10_1,10_0_1 -9727,2,68.0,1,0.0,1,120,2,0,75,7.0,2221.038412794435,0.0,391.5560929797625,104.27461924862132,0.0,13699.0,0,41,1,9127,201109727,,,268.0,,0.0,0.0,4.0,0.0,1.0,1.0,1930.54085714713,0.0,287.0,0.0,0.0,23747.0,0,5,1,120.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2716.8691250228185,0.19832609132220005,0.11440894113036672,23747.0,7,4,7,7_1,7_1,7_1_0 -9728,2,38.0,3,0.0,1,111,2,0,34,10.0,0.0,0.0,559.3658471139465,0.0,2519.969965175015,24056.0,0,10,2,9128,201109728,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3379.103075061501,0.0,410.0,1450.0,0.0,61370.0,0,1,2,65.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,3079.3358122889617,0.128006975901603,0.050176565297196704,61370.0,10,5,10,10_0,10_3,10_1_0 -9729,2,54.0,3,0.0,1,300,5,77,62,7.0,0.0,555.170527825376,682.1534720901786,0.0,0.0,20298.0,71,50,1,9129,201109729,,,,,1.0,2.0,3.0,0.0,2.0,1.5,2211.58090884243,0.0,500.0,0.0,0.0,35840.0,5,1,3,70.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1237.3239999155546,0.060957926885188425,0.03452354910478668,23893.333333333332,7,4,7,7_1,7_0,7_1_0 -9730,2,47.0,3,0.0,7,400,2,69,63,4.0,0.0,0.0,1459.8084302729822,156.41192887293198,0.0,32991.0,71,50,1,913,201109730,,,490.0,,3.0,0.0,5.0,3.0,5.0,2.8,2013.3569502353123,0.0,1070.0,0.0,0.0,42453.0,1,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1616.2203591459142,0.04898973535648857,0.038070816176616826,15161.785714285716,4,2,4_0,4_1_0,4_0_0,4_0_0 -9731,2,51.0,3,0.0,1,111,1,68,56,6.0,0.0,0.0,272.86138883607146,0.0,521.3730962431066,21136.0,41,71,2,9133,201109731,,,,529.0,2.0,0.0,2.0,1.0,3.0,1.8,3374.818599754281,0.0,200.0,300.0,0.0,38709.0,1,1,3,37.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,794.2344850791781,0.037577331807304035,0.020518083264335893,21505.0,6,3,6,6_0,6_4,6_1_0 -9732,2,70.0,3,0.0,3,400,2,0,72,7.0,3966.1400228472053,0.0,927.728722042643,260.6865481215533,0.0,34635.0,0,70,1,9135,201109732,,,,,0.0,4.0,4.0,1.0,2.0,1.5,2736.8972980542662,0.0,680.0,0.0,0.0,35391.0,0,5,1,101.0,0,1.0,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5154.555293011402,0.14882504094157362,0.1456459352098387,23594.0,7,4,7,7_1,7_1,7_0_1 -9733,2,80.0,3,0.0,99,111,1,0,77,6.0,0.0,0.0,0.0,0.0,0.0,13482.0,0,71,2,9136,201109733,,,,,0.0,1.0,1.0,0.0,1.0,1.0,3513.0292283341882,0.0,0.0,0.0,0.0,19380.0,0,5,3,30.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,19380.0,6,3,6,6_0,6_3,6_0_0 -9734,1,46.0,4,259.0,99,111,2,0,85,2.0,0.0,0.0,212.83188329213573,0.0,375.3886292950367,9715.0,0,20,8,9137,201109734,,,,354.0,0.0,0.0,1.0,0.0,1.0,1.0,3073.5641653160023,0.0,156.0,216.0,0.0,11527.0,0,7,3,23.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,588.2205125871724,0.060547659556065093,0.051029800692909896,11527.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -9735,2,70.0,2,0.0,4,111,4,77,74,9.0,0.0,111.0341055650752,2107.854228758652,0.0,0.0,27376.0,50,50,1,9138,201109735,,,290.0,,1.0,2.0,6.0,1.0,3.0,2.0,1263.6984071178838,0.0,1545.0,0.0,0.0,62680.0,6,5,1,120.0,6,4.0,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2218.888334323727,0.08105232080375976,0.0354002605986555,31340.0,9,5,9,9_1,9_2,9_0_1 -9736,2,65.0,2,0.0,5,111,2,77,78,9.0,0.0,0.0,859.5133748336251,0.0,1164.399914942938,45117.0,10,50,1,9140,201109736,,,280.0,424.0,0.0,4.0,4.0,0.0,2.0,1.5,1005.9883904251251,0.0,630.0,670.0,0.0,47540.0,5,5,3,78.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2023.913289776563,0.0448592169199318,0.04257285001633494,31693.333333333332,9,5,9,9_1,9_2,9_0_0 -9737,2,64.0,3,0.0,1,112,2,0,77,6.0,0.0,0.0,879.9779789963304,0.0,0.0,18364.0,0,50,2,9141,201109737,,,197.0,,0.0,0.0,2.0,0.0,1.0,1.0,1428.4337135298626,0.0,645.0,0.0,0.0,19885.0,0,5,3,26.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,879.9779789963304,0.04791864403160152,0.044253355745352295,19885.0,6,3,6,6_0,6_2,6_1_0 -9738,2,68.0,2,0.0,5,112,2,77,74,9.0,0.0,0.0,699.8894623645233,3823.4027057827816,0.0,49126.0,70,70,1,9142,201109738,,,340.0,,0.0,5.0,5.0,0.0,2.0,1.5,1717.640570102441,0.0,513.0,0.0,0.0,45902.0,5,5,1,115.0,9,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4523.292168147305,0.09207531995577302,0.0985423765445363,30601.333333333332,9,5,9,9_1,9_0,9_0_0 -9739,2,64.0,3,0.0,2,111,2,75,77,6.0,0.0,0.0,532.0797082303393,0.0,1651.0148047698374,23944.0,50,50,1,9143,201109739,,,220.0,,0.0,1.0,3.0,0.0,2.0,1.5,1463.8352872437097,0.0,390.0,950.0,0.0,32101.0,5,5,1,97.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2183.0945130001764,0.09117501307217576,0.0680070562599351,21400.666666666668,6,3,6,6_1,6_3,6_0_1 -9740,2,53.0,2,0.0,6,221,6,0,22,10.0,0.0,0.0,1742.2199677183162,97.32297796537989,0.0,25750.0,0,60,1,9145,201109740,,,216.0,,1.0,1.0,6.0,0.0,1.0,1.0,5123.596104316928,0.0,1277.0,0.0,0.0,50198.0,0,1,2,100.0,1,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1839.542945683696,0.07143856099742509,0.036645741776240005,50198.0,10,5,10,10_1,10_1,10_0_0 -9741,2,40.0,3,0.0,5,120,2,67,67,4.0,634.5824036555529,1596.115267497956,1009.5871386934643,0.0,0.0,43183.0,50,50,1,9147,201109741,,,,,2.0,0.0,4.0,2.0,4.0,2.3,3267.459713595919,0.0,740.0,0.0,0.0,38445.0,1,1,2,110.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3240.284809846973,0.07503612092367304,0.08428364702424172,16715.217391304348,4,2,4_0,4_1_0,4_0_0,4_0_0 -9742,2,73.0,3,0.0,2,111,2,0,72,3.0,0.0,0.0,855.420454001084,0.0,1359.0458708736978,10660.0,0,70,1,9148,201109742,,,116.0,,0.0,5.0,6.0,0.0,1.0,1.0,1927.184128789057,0.0,627.0,782.0,0.0,12953.0,0,5,1,122.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2214.466324874782,0.20773605299012965,0.17096165559135196,12953.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -9743,0,41.0,3,0.0,4,111,2,23,23,10.0,0.0,0.0,0.0,69.5164128324142,0.0,49816.0,20,10,1,9149,201109743,,,207.0,,2.0,0.0,5.0,2.0,4.0,2.1,3205.876339042845,0.0,0.0,0.0,0.0,78576.0,1,1,5,100.0,9,7.0,4,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,69.5164128324142,0.0013954635625584993,0.0008847028715182016,37417.142857142855,9,5,9,9_1,9_3,9_0_1 -9744,0,28.0,2,0.0,1,111,6,0,46,4.0,0.0,0.0,0.0,0.0,0.0,19860.0,0,43,1,915,201109744,,,,,1.0,0.0,7.0,0.0,1.0,1.0,1672.4842978902323,0.0,0.0,0.0,0.0,16014.0,0,1,5,150.0,8,7.0,1,2,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,16014.0,4,2,4_0,4_1_0,4_3_0,4_1_0 -9745,2,51.0,3,0.0,4,111,4,0,42,8.0,0.0,0.0,1948.23031628955,0.0,0.0,21989.0,0,41,1,9150,201109745,,,348.0,,1.0,1.0,5.0,0.0,1.0,1.0,2006.466206919139,0.0,1428.0,0.0,0.0,28513.0,0,1,2,90.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1948.23031628955,0.08860022357949657,0.06832779140355452,28513.0,8,4,8,8_1,8_3,8_0_1 -9746,2,35.0,3,0.0,3,111,2,52,47,7.0,0.0,0.0,613.9381248811608,0.0,782.0596443646599,33878.0,60,43,2,9151,201109746,,,270.0,,2.0,0.0,3.0,2.0,4.0,2.1,4151.8748200796945,0.0,450.0,450.0,0.0,45845.0,1,1,2,77.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1395.9977692458206,0.041206616956308534,0.03045038214081842,21830.95238095238,7,4,7,7_0,7_3,7_0_1 -9747,2,49.0,2,0.0,1,111,6,46,55,4.0,2455.8339021469897,0.0,1320.6491219665859,104.27461924862132,0.0,32619.0,60,50,1,9152,201109747,,,504.0,,2.0,0.0,4.0,2.0,4.0,2.5,2228.9997180124283,0.0,968.0,0.0,0.0,41681.0,1,1,2,100.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3880.757643362197,0.11897230581447,0.09310615492339908,16672.4,4,2,4_0,4_1_0,4_4_0,4_1_0 -9748,1,36.0,4,166.0,5,211,2,0,68,2.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,11991.0,0,60,2,9153,201109748,,,260.0,,1.0,2.0,2.0,0.0,1.0,1.0,3155.3553958077255,1200.0,0.0,0.0,0.0,11192.0,0,1,3,64.0,2,3.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1914.548043676513,0.15966541937090428,0.17106397816980995,11192.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -9749,2,77.0,3,0.0,3,112,2,0,78,5.0,0.0,0.0,545.7227776721429,0.0,1762.2410653017002,18685.0,0,70,1,9157,201109749,,,140.0,,0.0,1.0,2.0,0.0,1.0,1.0,3079.99543980459,0.0,400.0,1014.0,0.0,17419.0,0,5,1,60.0,10,0.0,1,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2307.9638429738434,0.12351960626030738,0.1324969196264908,17419.0,5,3,5,5_1,5_0,5_0_1 -9750,2,64.0,4,0.0,5,111,5,77,78,4.0,0.0,0.0,286.504458277875,361.4853467285539,0.0,30129.0,70,71,1,9158,201109750,,,250.0,,0.0,5.0,4.0,0.0,2.0,1.5,2663.5000149049815,0.0,210.0,0.0,0.0,25037.0,5,5,3,70.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,647.9898050064289,0.021507179295908556,0.02588128789417378,16691.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_0 -9751,2,67.0,3,0.0,5,112,2,77,75,7.0,0.0,0.0,2564.8970550590716,0.0,0.0,29921.0,60,50,1,9159,201109751,,,530.0,,0.0,2.0,5.0,0.0,2.0,1.5,2785.575518619775,0.0,1880.0,0.0,0.0,33707.0,5,5,1,150.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2564.8970550590716,0.08572230390224496,0.07609389904349458,22471.333333333332,7,4,7,7_1,7_0,7_0_0 -9752,2,62.0,2,0.0,1,112,2,68,72,9.0,2221.038412794435,832.755791738064,792.6623345687875,55.61313026593137,0.0,39307.0,50,41,1,916,201109752,,,330.0,,1.0,5.0,5.0,0.0,2.0,1.5,2915.254813118674,0.0,581.0,0.0,0.0,47827.0,1,5,3,180.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3902.069669367218,0.09927162259565009,0.08158717187712418,31884.666666666668,9,5,9,9_1,9_0,9_1_0 -9753,2,73.0,3,0.0,5,111,2,77,77,6.0,0.0,0.0,2717.6994328072715,271.11401004641544,0.0,24864.0,50,70,1,9160,201109753,,,444.0,,0.0,2.0,4.0,0.0,2.0,1.5,1592.4929051465635,0.0,1992.0,0.0,0.0,30860.0,5,5,5,110.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2988.813442853687,0.12020646086123259,0.0968507272473651,20573.333333333332,6,3,6,6_1,6_3,6_0_0 -9754,1,26.0,5,415.0,5,111,1,0,85,1.0,0.0,0.0,477.50743046312505,0.0,0.0,8278.0,0,60,2,9162,201109754,,,,,0.0,0.0,4.0,3.0,4.0,1.9,2316.262352665902,0.0,350.0,0.0,0.0,17352.0,0,6,3,81.0,6,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,477.50743046312505,0.057683912836811436,0.02751886989759826,9132.631578947368,1,1,1_1,1_0_1,1_2_1,1_0_0 -9755,2,60.0,4,0.0,1,112,5,0,13,5.0,0.0,0.0,1637.1683330164287,191.17013528913907,0.0,14750.0,0,71,1,9163,201109755,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2707.4432376374803,0.0,1200.0,0.0,0.0,18790.0,0,1,5,86.0,9,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1828.3384683055679,0.12395515039359782,0.09730380352876891,18790.0,5,3,5,5_1,5_0,5_1_0 -9756,0,34.0,3,0.0,1,111,4,0,42,7.0,0.0,0.0,938.6431775960858,0.0,0.0,24725.0,0,20,2,9164,201109756,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3308.421720398462,0.0,688.0,0.0,0.0,22598.0,0,1,5,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,938.6431775960858,0.03796332366414907,0.041536559766177795,22598.0,7,4,7,7_0,7_4,7_1_0 -9757,2,61.0,1,0.0,1,112,2,43,37,6.0,3648.848821019429,416.377895869032,1186.9470414369107,79.94387475727635,0.0,49347.0,33,41,1,9165,201109757,,,,,2.0,3.0,8.0,3.0,5.0,3.0,1213.5406670840962,0.0,870.0,0.0,0.0,62492.0,1,1,1,270.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5332.117633082648,0.10805353178678842,0.08532480370419651,20830.666666666668,6,3,6,6_1,6_0,6_1_0 -9758,2,62.0,2,0.0,1,112,5,78,75,3.0,0.0,41.637789586903196,818.5841665082144,312.82385774586396,0.0,23049.0,60,60,2,9166,201109758,,,200.0,,0.0,2.0,3.0,0.0,2.0,1.5,3360.774006273475,0.0,600.0,0.0,0.0,20885.0,6,5,1,100.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1173.0458138409815,0.050893566481885616,0.05616690513962085,13923.333333333334,3,2,3_0,3_0_0,3_1_0,3_1_0 -9759,2,48.0,3,0.0,3,112,5,56,67,4.0,71.3905204112497,55.5170527825376,593.4735207184553,140.77073598563877,0.0,21657.0,71,50,2,9167,201109759,,,,570.0,2.0,1.0,4.0,1.0,3.0,2.0,3161.659676760112,0.0,435.0,0.0,0.0,29973.0,1,1,3,80.0,8,0.0,4,8,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,861.1518298978815,0.03976320958109995,0.028730918823537233,14986.5,4,2,4_0,4_0_0,4_0_0,4_0_1 -9760,2,64.0,4,0.0,5,120,5,78,77,5.0,206.2392811880547,624.566843803548,559.3658471139465,0.0,0.0,21943.0,71,71,1,9168,201109760,,,193.0,,0.0,2.0,4.0,0.0,2.0,1.5,3374.8445456433465,0.0,410.0,0.0,0.0,26949.0,5,5,1,96.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1390.1719721055492,0.0633537789776033,0.05158528969926711,17966.0,5,3,5,5_1,5_0,5_0_0 -9761,1,44.0,3,400.0,4,111,1,0,85,2.0,0.0,0.0,204.6460416270536,0.0,399.7193737863817,21408.0,0,70,2,9170,201109761,,,,,0.0,0.0,4.0,5.0,6.0,2.5,1581.961867998404,0.0,150.0,230.0,0.0,26010.0,0,6,3,56.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,604.3654154134354,0.028230820974095447,0.023235886790212816,10404.0,2,1,2_1,2_0_1,2_4_1,2_0_1 -9762,2,47.0,1,0.0,7,111,2,56,38,7.0,1269.1648073111057,693.9631597817199,764.2774591295915,0.0,310.74765293699613,54980.0,42,31,1,9172,201109762,,,,,2.0,0.0,6.0,2.0,4.0,2.1,3076.031503100257,289.0,450.0,0.0,0.0,45404.0,4,1,1,121.0,9,7.0,4,7,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3038.153079159413,0.05525924116332145,0.0669137758602637,21620.95238095238,6,3,6,6_1,6_3,6_0_0 -9763,2,52.0,4,0.0,2,111,4,85,56,3.0,0.0,0.0,2455.752499524643,312.82385774586396,0.0,17697.0,50,70,1,9174,201109763,,,600.0,,1.0,0.0,5.0,3.0,5.0,2.4,1965.5631692181255,0.0,1800.0,0.0,0.0,34980.0,6,1,3,100.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2768.5763572705073,0.1564432591552527,0.07914740872700135,14575.0,3,2,3_0,3_1_0,3_3_0,3_0_1 -9764,2,52.0,2,0.0,6,111,2,45,33,10.0,0.0,0.0,886.7995137172322,0.0,1946.4595593075978,61464.0,30,20,1,9176,201109764,,,440.0,770.0,2.0,0.0,8.0,1.0,3.0,2.0,1580.7245840823223,0.0,650.0,1120.0,0.0,79193.0,1,1,3,130.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2833.2590730248303,0.04609623638267653,0.035776635220598166,39596.5,10,5,10,10_1,10_2,10_0_0 -9765,2,30.0,2,0.0,1,112,4,43,38,9.0,0.0,277.585263912688,2182.8911106885716,52.13730962431066,0.0,49110.0,20,12,1,9178,201109765,,,210.0,,2.0,0.0,6.0,1.0,3.0,1.8,2363.5434166542013,0.0,1600.0,0.0,0.0,63220.0,1,1,2,130.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2512.61368422557,0.05116297463297842,0.039743968431280766,35122.22222222222,9,5,9,9_1,9_0,9_1_0 -9766,2,83.0,2,0.0,4,111,4,86,86,9.0,0.0,0.0,1746.3128885508572,0.0,0.0,24648.0,70,41,1,9181,201109766,,,350.0,,0.0,3.0,5.0,0.0,2.0,1.5,2202.8143057935818,0.0,1280.0,0.0,0.0,55270.0,6,5,1,130.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1746.3128885508572,0.07085008473510455,0.03159603561698674,36846.666666666664,9,5,9,9_1,9_2,9_0_1 -9767,2,56.0,1,0.0,6,112,4,43,33,9.0,0.0,0.0,2623.562253658827,0.0,0.0,68746.0,33,20,1,9183,201109767,,,616.0,,3.0,1.0,7.0,2.0,4.0,2.5,1152.4981802496866,0.0,1923.0,0.0,0.0,74404.0,1,1,1,130.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2623.562253658827,0.03816312590781758,0.03526103776220132,29761.6,9,5,9,9_1,9_0,9_0_0 -9768,1,84.0,3,150.0,1,211,2,0,78,3.0,0.0,0.0,286.504458277875,0.0,822.031581743298,7572.0,0,50,2,9184,201109768,,,130.0,183.0,0.0,4.0,3.0,0.0,1.0,1.0,2564.6954859681055,0.0,210.0,473.0,0.0,12884.0,0,5,3,63.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1108.536040021173,0.14639937137099485,0.08603974231769428,12884.0,3,2,3_1,3_0_1,3_2_1,3_1_0 -9769,2,35.0,3,0.0,8,112,2,21,37,8.0,0.0,0.0,409.2920832541072,0.0,1737.9103208103552,61167.0,50,20,1,9185,201109769,,,600.0,,2.0,2.0,5.0,0.0,2.0,1.5,2954.3733021684798,0.0,300.0,1000.0,0.0,40391.0,1,1,2,115.0,10,3.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2147.2024040644624,0.035103935194867535,0.053160417025190324,26927.333333333332,8,4,8,8_1,8_1,8_0_0 -9770,2,31.0,3,0.0,9,212,6,52,64,6.0,0.0,111.0341055650752,2073.746555154143,125.12954309834558,0.0,20816.0,42,50,1,9186,201109770,,,241.0,,2.0,0.0,4.0,2.0,4.0,2.1,1202.38401970529,0.0,1520.0,0.0,0.0,44672.0,1,1,2,80.0,2,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2309.910203817564,0.11096801517186605,0.05170823343072985,21272.38095238095,6,3,6,6_1,6_0,6_0_0 -9771,2,48.0,2,0.0,7,112,4,69,52,6.0,0.0,0.0,1800.8851663180715,0.0,0.0,33489.0,50,50,1,9187,201109771,,,414.0,,2.0,0.0,5.0,2.0,4.0,2.5,1628.3414222312508,0.0,1320.0,0.0,0.0,52256.0,1,1,2,120.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1800.8851663180715,0.053775423760580233,0.03446274430339236,20902.4,6,3,6,6_1,6_0,6_0_0 -9772,2,60.0,2,0.0,1,112,2,0,78,9.0,4670.526490904869,0.0,1993.252445447502,208.54923849724264,0.0,34919.0,0,43,1,919,201109772,,,572.0,761.0,0.0,3.0,5.0,0.0,1.0,1.0,2667.145683679604,0.0,1461.0,0.0,0.0,31222.0,0,5,3,150.0,9,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,6872.328174849614,0.1968077028222347,0.2201117216978289,31222.0,9,5,9,9_1,9_1,9_1_0 -9773,1,47.0,3,87.0,7,111,2,85,54,2.0,0.0,0.0,395.6490138123036,0.0,422.3122079569163,21085.0,50,10,2,9190,201109773,,,,,1.0,0.0,4.0,2.0,4.0,2.1,2543.979209911202,0.0,290.0,243.0,0.0,19954.0,6,1,2,90.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,817.96122176922,0.03879351300778847,0.04099234347846146,9501.904761904761,1,1,1_1,1_0_1,1_3_1,1_0_0 -9774,2,49.0,2,0.0,4,112,4,46,63,6.0,0.0,0.0,2046.460416270536,0.0,0.0,26691.0,50,50,1,9191,201109774,,,,,2.0,1.0,3.0,1.0,3.0,2.0,1299.3856746075744,0.0,1500.0,0.0,0.0,41603.0,1,1,1,75.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2046.460416270536,0.07667230213444741,0.04919021263539975,20801.5,6,3,6,6_1,6_0,6_0_1 -9775,2,50.0,4,0.0,1,300,4,56,12,1.0,0.0,0.0,1326.1063497433072,90.37133668213848,0.0,20406.0,42,71,1,9192,201109775,,,140.0,,2.0,0.0,4.0,2.0,4.0,2.3,2441.6014085487395,0.0,972.0,0.0,0.0,19900.0,1,1,1,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1416.4776864254457,0.06941476459989443,0.07117978323745958,8652.173913043478,1,1,1_0,1_1_0,1_0_0,1_1_0 -9776,2,29.0,1,0.0,1,120,2,63,33,6.0,1586.456009138882,693.9631597817199,491.1504999049286,93.84715732375918,0.0,42976.0,50,10,1,9193,201109776,,,230.0,,2.0,0.0,5.0,2.0,4.0,2.1,1685.564633506919,0.0,360.0,0.0,0.0,44603.0,1,1,2,90.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2865.4168261492896,0.0666748144580531,0.06424269278185973,21239.52380952381,6,3,6,6_1,6_0,6_1_0 -9777,2,27.0,2,0.0,7,112,4,0,38,8.0,0.0,0.0,1500.737638598393,0.0,0.0,58035.0,0,31,2,9194,201109777,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3192.743415564457,0.0,1100.0,0.0,0.0,27100.0,0,1,2,47.0,10,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1500.737638598393,0.02585918219347623,0.05537777264200712,27100.0,8,4,8,8_0,8_1,8_0_0 -9778,1,20.0,4,158.0,99,111,1,0,84,1.0,0.0,0.0,491.1504999049286,0.0,0.0,6250.0,0,71,2,9195,201109778,,,,192.0,0.0,0.0,2.0,0.0,1.0,1.0,4986.1515497186565,0.0,360.0,0.0,0.0,1896.0,0,3,3,38.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,491.1504999049286,0.07858407998478857,0.25904562231272604,1896.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -9779,2,71.0,2,0.0,4,111,2,77,78,6.0,0.0,0.0,504.79356934673217,0.0,1737.9103208103552,17008.0,50,50,1,9197,201109779,,,220.0,,0.0,2.0,5.0,0.0,2.0,1.5,1334.0079849820631,0.0,370.0,1000.0,0.0,28667.0,5,5,1,110.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2242.7038901570872,0.13186170567715705,0.07823294694795714,19111.333333333332,5,3,5,5_1,5_3,5_0_1 -9780,2,45.0,3,0.0,9,300,2,37,63,5.0,4895.803244202591,0.0,1170.5753581067465,0.0,0.0,66148.0,31,50,1,9198,201109780,,,313.0,,2.0,0.0,8.0,2.0,4.0,2.3,2186.8600516535435,0.0,858.0,0.0,0.0,41676.0,1,1,1,200.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6066.378602309337,0.09170917642724402,0.14556048090770077,18120.0,5,3,5,5_1,5_0,5_0_0 -9781,2,47.0,2,0.0,3,111,6,85,37,8.0,2760.433455901655,346.98157989085996,1047.7877331305144,0.0,0.0,38984.0,41,20,1,9199,201109781,,,206.0,,1.0,0.0,9.0,3.0,5.0,2.8,1496.8595505374842,0.0,768.0,0.0,0.0,75470.0,6,1,1,150.0,9,7.0,4,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4155.202768923029,0.10658738890116533,0.05505767548592857,26953.57142857143,8,4,8,8_1,8_3,8_0_1 -9782,1,42.0,3,40.0,2,300,2,0,43,3.0,1348.4876077680499,0.0,777.6549581828036,104.27461924862132,0.0,21902.0,0,43,1,92,201109782,,,380.0,,1.0,0.0,4.0,2.0,3.0,1.8,1857.7744855834196,0.0,570.0,0.0,0.0,25264.0,0,1,2,90.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2230.417185199475,0.10183623345810772,0.08828440410067587,14035.555555555555,3,2,3_1,3_1_1,3_0_1,3_0_1 -9783,2,76.0,3,0.0,2,221,2,77,78,6.0,0.0,0.0,496.60772768165003,3997.193737863817,0.0,33771.0,60,70,1,920,201109783,,,290.0,,0.0,4.0,4.0,0.0,2.0,1.5,3649.758531772263,0.0,364.0,0.0,0.0,30265.0,5,5,1,70.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4493.801465545467,0.1330668758859811,0.14848179301323203,20176.666666666668,6,3,6,6_1,6_1,6_0_1 -9784,1,54.0,5,55.0,1,111,4,0,43,7.0,0.0,0.0,1639.8969469047895,0.0,95.58506764456953,25035.0,0,50,1,9200,201109784,,,497.0,,2.0,1.0,3.0,1.0,2.0,1.5,1996.6983383216132,0.0,1202.0,55.0,0.0,35578.0,0,1,3,70.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1735.482014549359,0.06932222946072934,0.04877963951175893,23718.666666666668,7,4,7,7_1,7_2,7_1_0 -9785,2,55.0,4,0.0,6,111,8,77,56,1.0,0.0,0.0,1391.5930830639643,48.661488982689946,0.0,19429.0,70,50,1,9203,201109785,,,,,1.0,2.0,5.0,1.0,3.0,2.0,2271.1385333591857,0.0,1020.0,0.0,0.0,16510.0,5,1,1,100.0,4,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1440.2545720466542,0.07412911483075064,0.08723528601130552,8255.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -9786,1,26.0,3,193.0,7,112,6,55,63,5.0,0.0,0.0,1390.228776119784,0.0,0.0,19408.0,50,50,1,9205,201109786,,,208.0,,2.0,0.0,3.0,1.0,3.0,1.8,1938.018577705276,0.0,1019.0,0.0,0.0,32861.0,1,1,3,65.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1390.228776119784,0.07163173825843899,0.042306344180633094,18256.11111111111,5,3,5,5_1,5_1,5_0_0 -9787,2,29.0,2,0.0,9,120,1,62,47,9.0,0.0,0.0,327.43366660328576,0.0,0.0,29677.0,60,31,2,9206,201109787,,,,500.0,2.0,0.0,3.0,0.0,2.0,1.5,2948.9739233512164,0.0,240.0,0.0,0.0,43336.0,1,1,3,85.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,327.43366660328576,0.011033246844468301,0.007555696571056068,28890.666666666668,8,4,8,8_0,8_0,8_0_0 -9788,1,38.0,5,66.0,99,112,4,0,67,1.0,0.0,0.0,1637.1683330164287,0.0,0.0,12325.0,0,50,2,9207,201109788,,,,,1.0,0.0,4.0,1.0,2.0,1.3,5046.1415472735325,0.0,1200.0,0.0,0.0,11177.0,0,4,3,100.0,7,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1637.1683330164287,0.1328331304678644,0.1464765440651721,8597.692307692307,1,1,1_1,1_0_1,1_0_1,1_0_0 -9789,2,47.0,4,0.0,7,111,2,65,52,6.0,0.0,0.0,409.2920832541072,0.0,921.0924700294883,26697.0,50,50,2,9209,201109789,,,,489.0,2.0,1.0,3.0,0.0,2.0,1.5,2196.9268162858916,0.0,300.0,530.0,0.0,29330.0,4,1,3,65.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1330.3845532835953,0.0498327360109224,0.04535917331345364,19553.333333333332,6,3,6,6_0,6_2,6_0_0 -9790,1,28.0,3,160.0,8,111,6,56,67,5.0,0.0,0.0,2046.460416270536,130.34327406077665,0.0,46761.0,31,42,1,921,201109790,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2197.742703821061,0.0,1500.0,0.0,0.0,26441.0,1,1,3,68.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2176.8036903313127,0.0465516924430896,0.08232682917935452,17627.333333333332,5,3,5,5_1,5_3,5_0_0 -9791,2,65.0,3,0.0,5,112,5,77,78,7.0,0.0,555.170527825376,770.8334234619018,97.32297796537989,0.0,22902.0,70,70,1,9211,201109791,,,255.0,,0.0,1.0,5.0,0.0,2.0,1.5,2495.886365675182,0.0,565.0,0.0,0.0,32768.0,5,5,1,100.0,7,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1423.3269292526575,0.062148586553692146,0.04343649076088432,21845.333333333332,7,4,7,7_1,7_1,7_0_0 -9792,2,53.0,2,0.0,6,300,2,0,52,6.0,0.0,0.0,1039.6018914654321,1080.980219544041,0.0,15946.0,0,50,1,9212,201109792,,,130.0,,1.0,2.0,6.0,0.0,1.0,1.0,1358.9827933874576,0.0,762.0,0.0,0.0,19854.0,0,1,1,96.0,0,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2120.582111009473,0.13298520701175673,0.10680880986246968,19854.0,6,3,6,6_1,6_1,6_0_0 -9793,1,29.0,4,328.0,99,111,6,46,85,2.0,333.1557619191653,0.0,1009.5871386934643,0.0,0.0,15722.0,43,60,2,9213,201109793,,,,202.0,1.0,0.0,3.0,2.0,4.0,2.1,2902.281401717202,0.0,740.0,0.0,0.0,22940.0,4,4,3,60.0,8,7.0,4,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1342.7429006126297,0.08540534923118112,0.05853282042775195,10923.809523809523,2,1,2_1,2_0_1,2_3_1,2_0_0 -9794,1,58.0,4,53.0,7,111,1,0,77,3.0,0.0,0.0,341.0767360450893,0.0,1390.3282566482842,17999.0,0,60,2,9217,201109794,,,,214.0,0.0,1.0,2.0,0.0,1.0,1.0,2558.3640616757825,0.0,250.0,800.0,0.0,12780.0,0,4,3,64.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1731.4049926933735,0.09619451040020965,0.1354776989587929,12780.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -9795,2,64.0,4,0.0,8,300,6,0,78,3.0,0.0,0.0,556.6372332255858,243.30744491344973,0.0,9049.0,0,50,7,9218,201109795,,,,,0.0,3.0,1.0,0.0,1.0,1.0,2541.2811223352205,0.0,408.0,0.0,0.0,13560.0,0,5,1,40.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,799.9446781390354,0.08840144525793296,0.058992970364235654,13560.0,3,2,3_0,3_1_0,3_0_0,3_0_0 -9796,0,49.0,3,0.0,1,112,2,0,42,4.0,1507.1332086819382,0.0,927.728722042643,198.1217765723805,0.0,39430.0,0,20,1,922,201109796,,,280.0,,1.0,2.0,4.0,1.0,2.0,1.5,1579.7918964982534,0.0,680.0,0.0,0.0,23210.0,0,1,5,80.0,4,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2632.9837072969617,0.06677615286068886,0.11344177971981739,15473.333333333334,4,2,4_0,4_1_0,4_0_0,4_1_0 -9797,2,80.0,1,0.0,3,112,2,0,74,10.0,0.0,0.0,925.9654496962173,0.0,1913.947481757277,25925.0,0,10,1,9221,201109797,,,260.0,,0.0,1.0,6.0,0.0,1.0,1.0,2865.931281206244,1780.0,0.0,0.0,0.0,59393.0,0,5,1,150.0,5,0.0,1,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2839.9129314534944,0.10954341104931511,0.04781561684800388,59393.0,10,5,10,10_1,10_0,10_0_1 -9798,1,61.0,2,250.0,99,111,6,0,78,2.0,0.0,0.0,1571.6815996957716,0.0,0.0,12204.0,0,71,2,9222,201109798,,,,220.0,0.0,2.0,2.0,0.0,1.0,1.0,2799.344108397404,0.0,1152.0,0.0,0.0,12083.0,0,5,3,35.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1571.6815996957716,0.12878413632380953,0.13007378959660446,12083.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -9799,2,61.0,2,0.0,4,111,1,78,72,5.0,0.0,0.0,347.8982707659911,0.0,163.36357015617338,36734.0,70,50,2,9224,201109799,,,154.0,,0.0,2.0,4.0,0.0,2.0,1.5,3675.751531526985,0.0,255.0,94.0,0.0,26557.0,5,5,1,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,511.2618409221644,0.0139179463418676,0.01925149079045692,17704.666666666668,5,3,5,5_0,5_3,5_0_1 -9800,2,88.0,3,0.0,1,112,6,0,78,2.0,1359.5927998320221,0.0,532.0797082303393,86.89551604051776,0.0,10337.0,0,71,1,9225,201109800,,,71.0,,0.0,0.0,5.0,0.0,1.0,1.0,3133.1617990444947,0.0,390.0,0.0,0.0,11165.0,0,5,5,87.0,8,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1978.5680241028792,0.19140640651087154,0.17721164568767392,11165.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -9801,2,53.0,1,0.0,9,111,4,43,37,10.0,0.0,0.0,2482.6799063854246,0.0,2452.648430274354,39243.0,33,10,2,9228,201109801,,,,,2.0,1.0,4.0,0.0,2.0,1.5,2700.0061965890336,2281.0,950.0,0.0,0.0,114652.0,1,4,1,120.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,4935.328336659779,0.125763278461376,0.04304616000296357,76434.66666666667,10,5,10,10_0,10_3,10_0_0 -9802,2,62.0,3,0.0,1,300,2,75,75,6.0,0.0,0.0,163.71683330164288,52.13730962431066,0.0,48707.0,70,41,1,9231,201109802,,,199.0,,0.0,4.0,7.0,0.0,2.0,1.5,2155.43163087267,0.0,120.0,0.0,0.0,30518.0,5,5,1,150.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,215.85414292595354,0.004431686265340784,0.007073010778096649,20345.333333333332,6,3,6,6_1,6_0,6_1_0 -9803,2,45.0,3,0.0,5,111,2,54,54,7.0,1269.1648073111057,555.170527825376,791.2980276246072,104.27461924862132,0.0,65810.0,50,50,1,9237,201109803,,,580.0,,4.0,0.0,5.0,2.0,4.0,2.5,1094.5068093941636,0.0,580.0,0.0,0.0,61104.0,1,1,2,108.0,3,4.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2719.9079820097104,0.04132970645813266,0.044512764827338805,24441.6,7,4,7,7_1,7_2,7_0_0 -9804,2,75.0,2,0.0,4,112,6,77,75,6.0,2003.693939542408,0.0,586.6519859975537,104.27461924862132,0.0,30275.0,70,50,1,9238,201109804,,,220.0,,0.0,2.0,5.0,0.0,2.0,1.5,2076.1536560913396,0.0,430.0,0.0,0.0,29199.0,5,5,1,125.0,9,3.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2694.620544788583,0.08900480742489127,0.09228468594090836,19466.0,6,3,6,6_1,6_1,6_0_1 -9805,2,88.0,2,0.0,5,111,1,0,77,7.0,0.0,0.0,579.8304512766518,0.0,0.0,19405.0,0,70,2,9239,201109805,,,,640.0,0.0,2.0,1.0,0.0,1.0,1.0,4303.260605708033,0.0,425.0,0.0,0.0,23402.0,0,5,3,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,579.8304512766518,0.02988046644043555,0.024776961425376116,23402.0,7,4,7,7_0,7_3,7_0_0 -9806,2,81.0,3,0.0,1,300,6,78,78,9.0,0.0,0.0,515.708024900175,99.06088828619025,0.0,6993.0,70,70,1,9242,201109806,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2207.6933030290525,0.0,378.0,0.0,0.0,52395.0,5,5,1,100.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,614.7689131863652,0.08791204249769273,0.011733350762217105,34930.0,9,5,9,9_1,9_0,9_1_0 -9807,1,39.0,3,310.0,9,111,3,85,64,2.0,0.0,0.0,474.77881657476433,0.0,3128.2385774586396,83117.0,60,42,1,9246,201109807,,,,,1.0,0.0,4.0,4.0,7.0,3.2,903.7587243143292,0.0,348.0,1800.0,0.0,38926.0,6,1,2,130.0,9,7.0,5,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,3603.017394033404,0.04334874206279586,0.09256068936015527,12164.375,2,1,2_1,2_1_1,2_3_1,2_0_0 -9808,1,42.0,4,169.0,2,111,4,0,46,2.0,0.0,0.0,301.7190791144978,0.0,623.6458086624835,24356.0,0,50,2,9247,201109808,,,,371.0,1.0,0.0,3.0,1.0,2.0,1.5,3297.357866710015,580.0,0.0,0.0,0.0,16715.0,0,1,3,50.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,925.3648877769813,0.03799330299626299,0.055361345365060204,11143.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_1 -9809,2,70.0,3,0.0,9,300,2,78,74,6.0,0.0,0.0,818.5841665082144,2780.6565132965684,0.0,13647.0,70,41,1,9248,201109809,,,,,0.0,0.0,4.0,0.0,2.0,1.5,2660.3781499410115,0.0,600.0,0.0,0.0,31080.0,5,5,2,119.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3599.2406798047828,0.2637386004106971,0.11580568467840356,20720.0,6,3,6,6_1,6_0,6_0_0 -9810,2,40.0,4,0.0,2,111,4,52,63,6.0,0.0,0.0,2259.292299562672,55.61313026593137,0.0,51430.0,71,71,1,925,201109810,,,630.0,,2.0,0.0,3.0,2.0,4.0,2.3,3149.920890625272,0.0,1656.0,0.0,0.0,47163.0,1,1,2,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2314.9054298286032,0.04501079972445272,0.04908308270950964,20505.652173913044,6,3,6,6_1,6_4,6_0_1 -9811,2,69.0,3,0.0,5,111,2,0,75,6.0,0.0,0.0,358.812726319434,0.0,545.7038407344515,24958.0,0,60,2,9250,201109811,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2313.971027686766,0.0,263.0,314.0,0.0,19803.0,0,5,1,80.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,904.5165670538855,0.03624154848360788,0.04567573433590292,19803.0,6,3,6,6_0,6_2,6_0_0 -9812,1,56.0,3,200.0,4,120,2,0,63,2.0,0.0,0.0,416.1642470544797,0.0,860.2011153965291,11694.0,0,71,2,9252,201109812,,,,210.0,2.0,0.0,4.0,1.0,3.0,2.0,3622.0582086304426,800.0,0.0,0.0,0.0,23536.0,0,1,3,70.0,0,3.0,5,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1276.3653624510089,0.10914702945536248,0.05423034340801363,11768.0,2,1,2_1,2_0_1,2_1_1,2_0_1 -9813,2,49.0,5,0.0,1,111,6,0,42,4.0,0.0,0.0,1009.5871386934643,250.25908619669116,0.0,22339.0,0,41,8,9253,201109813,,,,420.0,2.0,2.0,2.0,2.0,3.0,2.0,2991.62335730741,0.0,740.0,0.0,0.0,31960.0,0,1,3,25.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1259.8462248901556,0.05639671538073126,0.03941946886389723,15980.0,4,2,4_0,4_0_0,4_4_0,4_1_0 -9814,2,77.0,2,0.0,4,112,2,72,72,7.0,0.0,0.0,851.3275331685429,0.0,3055.2463439846047,37993.0,60,71,1,9256,201109814,,,,,0.0,2.0,4.0,0.0,2.0,1.5,4153.924223358069,0.0,624.0,1758.0,0.0,36891.0,5,5,1,170.0,9,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3906.573877153148,0.10282351688872023,0.10589503882120702,24594.0,7,4,7,7_1,7_0,7_0_1 -9815,2,50.0,2,0.0,6,111,4,85,64,3.0,0.0,0.0,1255.1623886459286,0.0,0.0,21878.0,50,50,1,9258,201109815,,,184.0,,1.0,2.0,4.0,1.0,3.0,2.0,1742.7749651502306,0.0,920.0,0.0,0.0,25893.0,6,1,1,80.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1255.1623886459286,0.0573709840317181,0.048474969630631005,12946.5,3,2,3_0,3_1_0,3_3_0,3_0_0 -9816,2,72.0,3,0.0,1,211,2,0,77,1.0,0.0,0.0,545.7227776721429,0.0,1047.9599234486443,17781.0,0,70,1,9259,201109816,,,150.0,,0.0,0.0,6.0,0.0,1.0,1.0,3406.3001825731767,0.0,400.0,603.0,0.0,6210.0,0,5,1,170.0,3,3.0,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1593.6827011207872,0.08962840678931372,0.2566316748986775,6210.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -9817,2,77.0,3,0.0,3,300,6,78,75,4.0,4050.222191331566,0.0,777.6549581828036,0.0,0.0,30959.0,70,41,1,926,201109817,,,183.0,,0.0,9.0,8.0,0.0,2.0,1.5,2126.790921433479,0.0,570.0,0.0,0.0,25092.0,5,5,1,120.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4827.87714951437,0.15594422137389355,0.19240702811710386,16728.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -9818,2,48.0,3,0.0,4,111,2,56,42,5.0,0.0,0.0,777.6549581828036,0.0,1459.8446694806985,26714.0,50,50,1,9260,201109818,,,480.0,,3.0,1.0,4.0,1.0,3.0,2.0,951.1345822455543,0.0,570.0,840.0,0.0,37653.0,1,1,2,96.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2237.499627663502,0.08375756635709748,0.05942420597730598,18826.5,5,3,5,5_1,5_2,5_0_1 -9819,2,49.0,1,0.0,2,111,1,47,33,9.0,0.0,277.585263912688,1910.0297218525002,0.0,0.0,75371.0,12,12,1,9261,201109819,,,250.0,,2.0,0.0,4.0,2.0,4.0,2.5,1798.5124175651538,0.0,1400.0,0.0,0.0,85098.0,1,1,1,150.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2187.614985765188,0.029024624666850487,0.025707008223050932,34039.2,9,5,9,9_1,9_3,9_0_1 -9820,2,49.0,1,0.0,5,112,5,54,62,5.0,0.0,763.359475759892,1222.4190219856,542.2280200928309,0.0,43634.0,44,50,1,9263,201109820,,,,,2.0,1.0,3.0,2.0,4.0,2.5,1051.4071152333747,0.0,896.0,0.0,0.0,45128.0,1,1,1,80.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2528.006517838323,0.0579366209340955,0.05601858087746683,18051.2,5,3,5,5_1,5_0,5_0_0 -9821,1,55.0,4,217.0,1,111,2,0,78,9.0,0.0,0.0,682.1534720901786,0.0,0.0,3967.0,0,70,2,9264,201109821,,,,,0.0,2.0,1.0,0.0,1.0,1.0,2710.61151589738,0.0,500.0,0.0,0.0,35954.0,0,7,3,25.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,682.1534720901786,0.17195701338295402,0.01897295077293705,35954.0,9,5,9,9_0,9_3,9_1_0 -9822,2,39.0,3,0.0,1,120,4,0,12,3.0,0.0,0.0,1323.3777358549464,538.7521994512101,0.0,11323.0,0,50,1,9265,201109822,,,,,1.0,2.0,5.0,0.0,3.0,2.0,2698.3578534230815,0.0,970.0,0.0,0.0,27535.0,0,1,1,110.0,0,2.0,5,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1862.1299353061565,0.16445552727246812,0.06762774415493578,13767.5,3,2,3_0,3_1_0,3_1_0,3_1_0 -9823,1,42.0,5,300.0,2,111,2,0,52,4.0,0.0,0.0,88.43490249907694,0.0,182.79273702176243,29893.0,0,50,1,9267,201109823,,,560.0,,1.0,0.0,5.0,3.0,4.0,2.5,1458.7397391242157,170.0,0.0,0.0,0.0,40304.0,0,1,2,73.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,271.2276395208394,0.009073282692297173,0.006729546435114117,16121.6,4,2,4_1,4_1_1,4_3_1,4_0_1 -9824,2,32.0,3,0.0,8,112,2,48,37,9.0,0.0,0.0,936.3695558725793,0.0,1935.4525096421905,39902.0,10,10,1,927,201109824,,,325.0,885.0,2.0,0.0,5.0,2.0,4.0,2.1,2021.4964196870606,1800.0,0.0,0.0,0.0,62758.0,4,1,3,120.0,7,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2871.8220655147697,0.07197188275060823,0.04576025471676551,29884.761904761905,9,5,9,9_1,9_0,9_0_0 -9825,2,58.0,3,0.0,6,112,6,77,56,6.0,1110.5192063972174,0.0,695.7965415319821,208.54923849724264,0.0,41797.0,50,70,1,9271,201109825,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1158.025125085126,0.0,510.0,0.0,0.0,29300.0,5,1,1,100.0,6,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2014.864986426442,0.048205971395708834,0.0687667230862267,19533.333333333332,6,3,6,6_1,6_1,6_0_0 -9826,2,54.0,3,0.0,1,111,2,0,46,7.0,0.0,0.0,477.50743046312505,0.0,1633.6357015617339,32061.0,0,41,1,9273,201109826,,,320.0,395.0,1.0,2.0,6.0,0.0,1.0,1.0,1613.1139315211783,0.0,350.0,940.0,0.0,24572.0,0,1,3,75.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2111.143132024859,0.06584770069632448,0.08591661777734245,24572.0,7,4,7,7_1,7_3,7_1_0 -9827,2,76.0,2,0.0,2,111,2,77,74,6.0,0.0,555.170527825376,511.615104067634,0.0,2537.3490683831187,30747.0,70,41,1,9274,201109827,,,170.0,,0.0,2.0,7.0,0.0,2.0,1.5,1297.287467323464,0.0,375.0,1460.0,0.0,31413.0,5,5,1,145.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3604.1347002761286,0.11721906853599143,0.11473385860236618,20942.0,6,3,6,6_1,6_2,6_0_1 -9828,2,64.0,3,0.0,7,112,2,75,77,8.0,0.0,0.0,2704.056363365468,0.0,0.0,39634.0,70,70,1,9275,201109828,,,253.0,,0.0,2.0,4.0,0.0,2.0,1.5,4292.029460392174,0.0,1982.0,0.0,0.0,41797.0,5,5,1,140.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2704.056363365468,0.06822567400124811,0.0646949868020544,27864.666666666668,8,4,8,8_1,8_0,8_0_0 -9829,2,66.0,3,0.0,6,400,5,77,78,2.0,0.0,527.4120014341072,582.5590651650125,1664.9180873363202,0.0,19056.0,71,60,1,9276,201109829,,,207.0,,0.0,2.0,4.0,0.0,2.0,1.5,2814.272340923062,0.0,427.0,0.0,0.0,18438.0,6,5,2,95.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2774.88915393544,0.14561760883372377,0.15049838127429438,12292.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -9830,2,53.0,3,0.0,9,212,5,52,77,7.0,0.0,266.48185335618047,862.2419887219858,0.0,97.32297796537989,48888.0,31,31,1,9277,201109830,,,306.0,,2.0,2.0,6.0,1.0,3.0,2.0,4427.918059973954,0.0,632.0,56.0,0.0,43843.0,1,5,1,115.0,3,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1226.0468200435462,0.025078686386097736,0.0279644828146693,21921.5,7,4,7,7_1,7_0,7_0_0 -9831,2,57.0,3,0.0,7,112,2,0,52,4.0,0.0,0.0,968.6579303680536,90.37133668213848,0.0,16243.0,0,50,2,9278,201109831,,,202.0,347.0,2.0,3.0,3.0,1.0,2.0,1.5,3288.2651444496973,0.0,710.0,0.0,0.0,23480.0,0,1,3,78.0,9,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1059.0292670501922,0.0651991175922054,0.04510346111798093,15653.333333333334,4,2,4_0,4_0_0,4_1_0,4_0_0 -9832,2,37.0,3,0.0,7,111,2,46,46,7.0,0.0,0.0,818.5841665082144,0.0,2659.0027908398433,37170.0,31,31,1,9279,201109832,,,840.0,,2.0,0.0,5.0,2.0,4.0,2.1,4057.5289114351717,0.0,600.0,1530.0,0.0,50346.0,1,1,2,120.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3477.5869573480577,0.09355897114199778,0.06907374880522897,23974.285714285714,7,4,7,7_1,7_3,7_0_0 -9833,2,39.0,1,0.0,2,111,1,0,22,9.0,0.0,0.0,444.76406380279644,0.0,1998.5968689319086,35471.0,0,10,2,928,201109833,1100.0,1100.0,150.0,,1.0,0.0,2.0,0.0,1.0,1.0,3527.111787126196,0.0,326.0,1150.0,0.0,36999.0,0,1,2,61.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2443.360932734705,0.06888333942473301,0.06603856679193235,36999.0,9,5,9,9_0,9_3,9_0_1 -9834,1,47.0,4,295.0,8,221,2,0,85,1.0,0.0,444.1364222603008,573.00891655575,0.0,312.82385774586396,20786.0,0,71,1,9281,201109834,,,,,0.0,0.0,7.0,1.0,2.0,1.5,3188.539186535929,0.0,420.0,180.0,0.0,11510.0,0,7,2,100.0,1,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1329.9691965619147,0.06398389283950326,0.11554901794630015,7673.333333333333,1,1,1_1,1_1_1,1_1_1,1_0_0 -9835,2,50.0,3,0.0,2,221,2,52,63,8.0,0.0,0.0,1054.6092678514162,0.0,1963.8386625157013,21855.0,41,50,1,9282,201109835,,,,,2.0,1.0,5.0,0.0,2.0,1.5,2072.8951175739485,0.0,773.0,1130.0,0.0,39576.0,1,1,1,132.0,1,2.0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3018.447930367118,0.13811246535653707,0.07626965661934298,26384.0,8,4,8,8_1,8_1,8_0_1 -9836,2,46.0,3,0.0,99,111,2,0,52,8.0,0.0,0.0,409.2920832541072,0.0,1564.1192887293198,35517.0,0,41,2,9283,201109836,,,180.0,413.0,1.0,0.0,5.0,0.0,1.0,1.0,2532.584428628583,0.0,300.0,900.0,0.0,25506.0,0,1,3,110.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1973.411371983427,0.05556244536372518,0.07737047643626703,25506.0,8,4,8,8_0,8_2,8_0_0 -9837,2,68.0,3,0.0,5,111,1,74,72,10.0,0.0,0.0,654.8673332065715,0.0,0.0,68790.0,60,50,2,9284,201109837,,,,1414.0,0.0,0.0,3.0,0.0,2.0,1.5,3664.4409679431487,0.0,480.0,0.0,0.0,57811.0,5,5,3,75.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,654.8673332065715,0.009519804233268956,0.011327728861403047,38540.666666666664,10,5,10,10_0,10_3,10_0_0 -9838,2,19.0,3,0.0,7,111,1,0,84,1.0,0.0,0.0,191.00297218525,0.0,0.0,10337.0,0,41,2,9286,201109838,,,,300.0,0.0,0.0,1.0,0.0,1.0,1.0,4041.596328885096,0.0,140.0,0.0,0.0,3890.0,0,3,3,20.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,191.00297218525,0.018477602030110285,0.04910102112731363,3890.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -9839,2,78.0,3,0.0,8,111,4,0,71,3.0,0.0,0.0,586.6519859975537,0.0,0.0,13326.0,0,70,1,9287,201109839,,,120.0,,0.0,2.0,3.0,0.0,1.0,1.0,3116.712233152984,0.0,430.0,0.0,0.0,12473.0,0,5,1,60.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,586.6519859975537,0.0440231116612302,0.04703375178365699,12473.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -9840,2,53.0,2,0.0,4,111,2,0,56,5.0,0.0,0.0,395.6490138123036,0.0,879.3826223300398,17924.0,0,50,8,9288,201109840,,,,344.0,1.0,3.0,5.0,0.0,1.0,1.0,1781.837044839732,0.0,290.0,506.0,0.0,18741.0,0,1,3,84.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1275.0316361423434,0.07113544053460966,0.06803434374592303,18741.0,5,3,5,5_0,5_2,5_0_1 -9841,2,50.0,4,0.0,9,112,6,0,56,4.0,507.66592292444227,0.0,770.8334234619018,260.6865481215533,0.0,15127.0,0,60,7,9290,201109841,,,,,1.0,3.0,3.0,0.0,1.0,1.0,1925.3885602909638,0.0,565.0,0.0,0.0,15630.0,0,1,3,30.0,8,1.0,1,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1539.1858945078975,0.1017509019969523,0.09847638480536772,15630.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -9842,2,58.0,2,0.0,1,111,2,55,52,7.0,0.0,0.0,695.7965415319821,0.0,2519.969965175015,27736.0,60,31,1,9291,201109842,,,296.0,,2.0,2.0,5.0,0.0,2.0,1.5,2542.3428151979974,0.0,510.0,1450.0,0.0,33866.0,1,1,1,120.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3215.7665067069975,0.11594197096578444,0.09495560463907747,22577.333333333332,7,4,7,7_1,7_3,7_1_0 -9843,2,85.0,2,0.0,3,400,5,0,71,3.0,0.0,693.9631597817199,832.2272359500179,86.89551604051776,0.0,8012.0,0,70,1,9292,201109843,,,108.0,,0.0,3.0,5.0,0.0,1.0,1.0,2287.7028821442213,0.0,610.0,0.0,0.0,12376.0,0,5,5,89.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1613.0859117722555,0.20133373836398596,0.1303398441962068,12376.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -9844,2,36.0,3,0.0,4,111,1,0,22,7.0,0.0,0.0,155.5309916365607,0.0,1346.8804986280254,13027.0,0,31,2,9296,201109844,685.0,685.0,,306.0,1.0,0.0,2.0,0.0,1.0,1.0,3253.0123736991254,0.0,114.0,775.0,0.0,22888.0,0,1,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1502.411490264586,0.11533058188873771,0.0656418861527694,22888.0,7,4,7,7_0,7_4,7_0_1 -9845,2,59.0,1,0.0,4,111,2,0,45,9.0,0.0,0.0,253.76109161754644,0.0,1185.2548387926622,37464.0,0,60,2,93,201109845,,,62.0,,1.0,0.0,3.0,0.0,1.0,1.0,2881.0858154527255,0.0,186.0,682.0,0.0,35094.0,0,1,1,69.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1439.0159304102087,0.03841063235132951,0.041004614190750806,35094.0,9,5,9,9_0,9_2,9_0_1 -9846,2,64.0,2,0.0,5,111,2,78,75,8.0,95.18736054833293,0.0,1462.8420382768834,0.0,1982.5671619910547,31686.0,71,31,1,9301,201109846,,,360.0,,0.0,2.0,6.0,0.0,2.0,1.5,3941.085618345084,373.0,930.0,910.0,0.0,41476.0,5,5,1,110.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3540.596560816271,0.11174009218002497,0.08536494745916363,27650.666666666668,8,4,8,8_1,8_3,8_0_0 -9847,2,30.0,3,0.0,8,111,2,0,63,7.0,0.0,0.0,156.89529858074107,0.0,0.0,21024.0,0,44,2,9302,201109847,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3339.424905406004,0.0,115.0,0.0,0.0,21616.0,0,1,2,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,156.89529858074107,0.007462675921838901,0.007258294715985431,21616.0,6,3,6,6_0,6_3,6_0_0 -9848,2,38.0,2,0.0,1,112,2,11,55,5.0,1269.1648073111057,0.0,0.0,208.54923849724264,0.0,31614.0,41,30,1,9305,201109848,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2874.622134460422,0.0,0.0,0.0,0.0,39342.0,1,1,2,100.0,6,0.0,4,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1477.7140458083484,0.046742394059857924,0.037560725072653865,18734.285714285714,5,3,5,5_1,5_0,5_1_0 -9849,1,41.0,4,299.0,1,111,2,0,55,3.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,20395.0,0,50,1,9307,201109849,,,,251.0,1.0,0.0,3.0,2.0,3.0,1.6,1049.6871090828722,1200.0,0.0,0.0,0.0,20418.0,0,1,3,87.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1914.548043676513,0.0938734024847518,0.093767658128931,12761.25,3,2,3_1,3_1_1,3_3_1,3_1_0 -9850,2,73.0,2,0.0,5,111,2,86,74,9.0,3569.526020562485,0.0,806.3054040105911,0.0,0.0,47075.0,60,12,1,9309,201109850,,,539.0,,0.0,2.0,5.0,0.0,2.0,1.5,1769.7029039097845,0.0,591.0,0.0,0.0,49012.0,5,5,1,135.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4375.831424573076,0.09295446467494586,0.08928081744415808,32674.666666666668,9,5,9,9_1,9_3,9_0_0 -9851,2,29.0,4,0.0,5,111,6,0,43,6.0,0.0,0.0,466.5929749096822,0.0,0.0,21030.0,0,33,2,931,201109851,,,70.0,217.0,1.0,0.0,1.0,0.0,1.0,1.0,2786.265892811788,0.0,342.0,0.0,0.0,21537.0,0,1,3,35.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,466.5929749096822,0.022187017351863157,0.021664715369349594,21537.0,6,3,6,6_0,6_2,6_0_0 -9852,2,43.0,3,0.0,7,111,4,0,52,6.0,0.0,0.0,545.7227776721429,0.0,0.0,17408.0,0,50,2,9313,201109852,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3344.515050042832,0.0,400.0,0.0,0.0,20049.0,0,1,2,36.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,545.7227776721429,0.03134896471002659,0.027219451228098306,20049.0,6,3,6,6_0,6_3,6_0_0 -9853,0,28.0,4,0.0,2,111,1,0,43,4.0,0.0,0.0,0.0,0.0,0.0,22602.0,0,41,2,9314,201109853,,,,,1.0,0.0,4.0,0.0,1.0,1.0,4187.525312323654,0.0,0.0,0.0,0.0,16060.0,0,1,5,70.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,16060.0,4,2,4_0,4_0_0,4_4_0,4_0_1 -9854,1,29.0,3,8.0,9,111,4,0,54,4.0,0.0,0.0,1773.5990274344645,0.0,0.0,28096.0,0,31,1,9315,201109854,,,260.0,401.0,1.0,0.0,3.0,1.0,2.0,1.3,2730.005144992034,0.0,1300.0,0.0,0.0,20108.0,0,1,3,67.0,8,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1773.5990274344645,0.06312638907440435,0.08820365165279812,15467.692307692307,4,2,4_1,4_1_1,4_2_1,4_0_0 -9855,2,65.0,3,0.0,1,111,1,0,74,10.0,0.0,0.0,204.6460416270536,0.0,0.0,31859.0,0,20,8,9316,201109855,,,,,0.0,1.0,1.0,0.0,1.0,1.0,3829.5191035162215,0.0,150.0,0.0,0.0,38132.0,0,5,2,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,204.6460416270536,0.006423492313853341,0.005366779650347571,38132.0,10,5,10,10_0,10_4,10_1_0 -9856,2,79.0,3,0.0,1,221,2,0,86,3.0,0.0,0.0,368.36287492869644,0.0,2485.211758758808,18217.0,0,71,1,9319,201109856,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2831.9025486487844,0.0,270.0,1430.0,0.0,13751.0,0,6,5,80.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2853.5746336875045,0.15664349968093014,0.20751760844211362,13751.0,3,2,3_0,3_1_0,3_1_0,3_1_0 -9857,2,54.0,3,0.0,1,112,6,0,52,7.0,1469.058264462605,0.0,369.3457692608507,0.0,763.4284899144195,22273.0,0,71,1,932,201109857,,,,,1.0,2.0,5.0,0.0,1.0,1.0,1835.1465676732596,710.0,0.0,0.0,0.0,21781.0,0,1,1,71.0,9,2.0,1,3,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2601.832523637875,0.11681554005467944,0.1194542272456671,21781.0,7,4,7,7_1,7_1,7_1_0 -9858,2,50.0,1,0.0,1,400,2,56,63,2.0,0.0,416.377895869032,354.7198054868929,0.0,0.0,28404.0,71,50,1,9320,201109858,,,200.0,,2.0,3.0,6.0,0.0,2.0,1.5,2691.452597608036,0.0,260.0,0.0,0.0,17729.0,1,1,2,120.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,771.0977013559249,0.027147503920431096,0.04349358121472868,11819.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -9859,2,48.0,4,0.0,2,111,2,43,46,6.0,0.0,0.0,436.5782221377143,0.0,1412.9210908188188,33638.0,20,20,2,9321,201109859,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3129.0444286150664,0.0,320.0,813.0,0.0,37089.0,4,1,1,80.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1849.4993129565332,0.054982439888118594,0.04986651872405654,20605.0,6,3,6,6_0,6_2,6_0_1 -9860,2,78.0,3,0.0,4,112,2,78,78,3.0,3688.510221247901,555.170527825376,630.309808211325,173.79103208103552,0.0,16015.0,71,71,1,9322,201109860,,,,,0.0,3.0,4.0,0.0,2.0,1.5,3114.9600700712363,0.0,462.0,0.0,0.0,19401.0,5,5,1,150.0,8,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5047.781589365637,0.3151908579060654,0.26018151586854477,12934.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -9861,2,44.0,2,0.0,1,221,6,55,52,3.0,0.0,0.0,1773.5990274344645,0.0,0.0,23449.0,71,71,1,9323,201109861,,,474.0,,2.0,0.0,5.0,2.0,4.0,2.3,3017.3663361735594,0.0,1300.0,0.0,0.0,32780.0,1,1,1,140.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1773.5990274344645,0.07563644622092475,0.05410613262460233,14252.17391304348,3,2,3_0,3_1_0,3_1_0,3_1_0 -9862,2,34.0,3,0.0,2,111,2,65,55,4.0,0.0,0.0,654.8673332065715,0.0,2780.6565132965684,47500.0,41,50,1,9324,201109862,,,605.0,,2.0,0.0,5.0,3.0,5.0,2.4,1228.2911481370036,0.0,480.0,1600.0,0.0,38210.0,4,1,2,130.0,7,6.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3435.52384650314,0.07232681782111873,0.08991164214873436,15920.833333333334,4,2,4_0,4_1_0,4_2_0,4_0_1 -9863,2,28.0,3,0.0,1,111,2,0,46,8.0,0.0,0.0,450.22129157951787,0.0,1367.7354224777496,20638.0,0,10,2,9325,201109863,,,,524.0,1.0,0.0,2.0,0.0,1.0,1.0,4049.418978749235,0.0,330.0,787.0,0.0,25072.0,0,1,3,50.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1817.9567140572674,0.08808783380449982,0.0725094413711418,25072.0,8,4,8,8_0,8_3,8_1_0 -9864,2,72.0,3,0.0,2,111,5,78,77,3.0,0.0,166.55115834761278,818.5841665082144,111.22626053186274,0.0,13314.0,71,71,1,9327,201109864,,,,,0.0,6.0,4.0,0.0,2.0,1.5,3119.4185419645855,0.0,600.0,0.0,0.0,19130.0,5,5,1,80.0,5,4.0,3,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1096.3615853876897,0.0823465213600488,0.05731111267055357,12753.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1 -9865,2,54.0,1,0.0,6,112,2,38,22,10.0,0.0,0.0,1485.7302622124091,0.0,1644.063163486596,35627.0,42,50,1,9328,201109865,,,485.0,,2.0,1.0,4.0,0.0,2.0,1.5,1648.674674278789,0.0,1089.0,946.0,0.0,81582.0,1,1,1,90.0,8,2.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3129.793425699005,0.0878489186768183,0.038363774186695655,54388.0,10,5,10,10_1,10_1,10_0_0 -9866,2,37.0,3,0.0,6,111,2,46,31,8.0,1277.0970873568,0.0,1296.0915969713394,0.0,0.0,104891.0,10,10,1,933,201109866,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1701.4035252929575,0.0,950.0,0.0,0.0,63511.0,1,1,1,160.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2573.1886843281395,0.024532025477191938,0.04051563798913794,26462.916666666668,8,4,8,8_1,8_3,8_0_0 -9867,2,41.0,1,0.0,1,111,2,34,31,10.0,5552.596031986088,0.0,1227.8762497623215,0.0,225.92834170534618,118771.0,10,10,1,9331,201109867,,,1200.0,,2.0,0.0,7.0,2.0,4.0,2.1,1060.2686792069246,0.0,900.0,130.0,0.0,328562.0,1,1,1,250.0,7,5.0,4,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,7006.4006234537555,0.058990836344341255,0.021324439903134738,156458.09523809524,10,5,10,10_1,10_2,10_1_0 -9868,2,42.0,2,0.0,9,120,4,52,63,6.0,0.0,0.0,1500.737638598393,417.0984769944853,0.0,29618.0,50,50,1,9333,201109868,,,421.0,,2.0,0.0,6.0,2.0,4.0,2.1,2147.3897827553983,0.0,1100.0,0.0,0.0,43718.0,1,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1917.8361155928783,0.06475238421206288,0.04386834062841114,20818.095238095237,6,3,6,6_1,6_0,6_0_0 -9869,1,47.0,5,156.0,1,111,2,0,69,5.0,0.0,0.0,442.03544991443573,0.0,1308.6464715701975,21204.0,0,71,1,9335,201109869,,,340.0,,2.0,2.0,7.0,2.0,3.0,2.0,1448.4760280249693,0.0,324.0,753.0,0.0,37312.0,0,1,2,100.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1750.6819214846332,0.0825637578515673,0.046920077226753676,18656.0,5,3,5,5_1,5_3,5_1_0 -9870,2,48.0,3,0.0,1,111,2,0,54,4.0,0.0,0.0,965.929316479693,66.0405921907935,0.0,19012.0,0,71,1,9336,201109870,,,186.0,,1.0,1.0,4.0,1.0,2.0,1.3,2565.221682718658,0.0,708.0,0.0,0.0,20590.0,0,1,1,100.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1031.9699086704863,0.05427992366244931,0.05011995671056272,15838.461538461537,4,2,4_0,4_1_0,4_3_0,4_1_0 -9871,1,42.0,3,365.0,2,111,5,0,85,1.0,0.0,1065.9274134247219,1023.230208135268,1167.8757355845587,0.0,4296.0,0,50,1,9337,201109871,,,,,0.0,2.0,6.0,1.0,2.0,1.3,2491.5211976247174,0.0,750.0,0.0,0.0,11970.0,0,6,3,100.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,3257.0333571445485,0.7581548782924926,0.27209969566788206,9207.692307692307,1,1,1_1,1_1_1,1_3_1,1_0_1 -9872,2,47.0,1,0.0,8,112,6,0,34,10.0,0.0,0.0,463.8643610213215,0.0,2036.8308959897363,28874.0,0,20,1,9338,201109872,,,400.0,,1.0,2.0,7.0,0.0,1.0,1.0,1914.6434259048356,0.0,340.0,1172.0,0.0,190540.0,0,1,1,115.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2500.695257011058,0.08660716412727915,0.013124253474394132,190540.0,10,5,10,10_1,10_0,10_0_0 -9873,2,66.0,3,0.0,6,400,2,78,13,8.0,0.0,0.0,2504.867549515136,260.6865481215533,0.0,22559.0,50,42,1,9339,201109873,,,,,1.0,2.0,6.0,0.0,2.0,1.5,1511.4590260249852,0.0,1836.0,0.0,0.0,41550.0,5,1,1,150.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2765.554097636689,0.12259205184789615,0.06655966540641851,27700.0,8,4,8,8_1,8_0,8_0_0 -9874,2,33.0,3,0.0,7,111,1,54,63,4.0,0.0,0.0,477.50743046312505,0.0,145.98446694806984,29386.0,50,50,8,9340,201109874,,,190.0,,2.0,0.0,3.0,1.0,3.0,1.8,2316.716898791682,0.0,350.0,84.0,0.0,28471.0,1,1,3,70.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,623.4918974111949,0.021217310876308276,0.021899192069516172,15817.222222222223,4,2,4_0,4_0_0,4_2_0,4_0_0 -9875,2,67.0,3,0.0,1,111,5,0,71,2.0,0.0,97.1548423694408,1096.9027831210071,48.661488982689946,0.0,11796.0,0,70,1,9343,201109875,,,78.0,,0.0,0.0,2.0,0.0,1.0,1.0,1923.8155526858318,0.0,804.0,0.0,0.0,9838.0,0,5,1,45.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1242.7191144731378,0.10535089135920124,0.12631826737885116,9838.0,1,1,1_0,1_1_0,1_2_0,1_1_0 -9876,2,32.0,4,0.0,7,212,2,21,42,3.0,2046.528251789158,0.0,654.8673332065715,90.37133668213848,0.0,34349.0,50,20,1,9344,201109876,,,501.0,,2.0,0.0,6.0,2.0,4.0,2.1,1680.268799777773,0.0,480.0,0.0,0.0,26216.0,1,1,2,115.0,1,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2791.766921677868,0.08127651231994726,0.10649095673168554,12483.809523809523,2,1,2_0,2_1_0,2_0_0,2_0_0 -9877,2,61.0,3,0.0,5,111,1,75,65,6.0,0.0,0.0,750.3688192991965,0.0,0.0,27911.0,50,50,2,9346,201109877,,,,320.0,1.0,1.0,2.0,0.0,2.0,1.5,2051.212928924484,0.0,550.0,0.0,0.0,32077.0,5,1,3,52.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,750.3688192991965,0.026884340199175828,0.023392736830102456,21384.666666666668,6,3,6,6_0,6_4,6_0_0 -9878,2,75.0,3,0.0,3,300,4,0,77,5.0,0.0,0.0,1538.938233035443,46.92357866187959,0.0,13262.0,0,70,1,9349,201109878,,,213.0,,0.0,4.0,4.0,0.0,1.0,1.0,2532.6993998445646,0.0,1128.0,0.0,0.0,17380.0,0,5,1,100.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1585.8618116973228,0.11957938559020681,0.09124636430939717,17380.0,5,3,5,5_1,5_0,5_0_1 -9879,2,46.0,4,0.0,3,111,1,0,46,4.0,47.593680274166466,0.0,613.9381248811608,0.0,260.6865481215533,15498.0,0,50,2,9351,201109879,,,,358.0,1.0,1.0,4.0,1.0,2.0,1.3,3803.3024105464674,0.0,450.0,150.0,0.0,21578.0,0,1,3,89.0,9,7.0,2,5,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,922.2183532768805,0.059505636422562944,0.04273882441731766,16598.46153846154,4,2,4_0,4_0_0,4_3_0,4_0_1 -9880,2,75.0,1,0.0,1,111,2,74,74,10.0,0.0,0.0,654.8673332065715,0.0,2085.4923849724264,40259.0,12,10,2,9354,201109880,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2438.7345209746863,0.0,480.0,1200.0,0.0,124598.0,5,5,1,83.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2740.359718178998,0.06806825102906178,0.021993609192595368,83065.33333333333,10,5,10,10_0,10_4,10_1_0 -9881,2,55.0,3,0.0,7,112,5,52,63,8.0,0.0,277.585263912688,818.5841665082144,201.5975972140012,0.0,21093.0,50,50,1,9355,201109881,,,130.0,,2.0,3.0,5.0,0.0,2.0,1.5,1040.323198464841,0.0,600.0,0.0,0.0,41503.0,1,1,1,115.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1297.7670276349036,0.06152595778859828,0.03126923421523513,27668.666666666668,8,4,8,8_1,8_0,8_0_0 -9882,1,33.0,4,380.0,7,300,4,64,85,2.0,0.0,0.0,1132.3747636696964,0.0,0.0,32061.0,50,42,1,9356,201109882,,,,,1.0,0.0,3.0,2.0,4.0,2.1,2124.9700512146137,0.0,830.0,0.0,0.0,24815.0,1,6,3,69.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1132.3747636696964,0.035319383789329604,0.04563267232197044,11816.666666666666,2,1,2_1,2_1_1,2_0_1,2_0_0 -9883,2,35.0,1,0.0,1,111,2,31,31,3.0,0.0,0.0,545.7227776721429,0.0,2085.4923849724264,133175.0,12,12,2,9357,201109883,,,,2350.0,2.0,0.0,4.0,2.0,4.0,2.1,3696.0662195078467,0.0,400.0,1200.0,0.0,28907.0,1,1,3,115.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2631.2151626445693,0.019757575841145632,0.09102346015306222,13765.238095238095,3,2,3_0,3_0_0,3_3_0,3_1_0 -9884,2,73.0,2,0.0,5,112,2,77,78,6.0,0.0,0.0,1553.8532574396634,0.0,3211.7759146117905,41098.0,71,71,1,9358,201109884,,,82.0,,0.0,5.0,6.0,0.0,2.0,1.5,2443.970234234172,2987.0,0.0,0.0,0.0,31710.0,5,5,1,143.0,8,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4765.629172051454,0.11595769069179652,0.15028789568121897,21140.0,6,3,6,6_1,6_1,6_0_0 -9885,2,43.0,4,0.0,1,111,4,54,37,7.0,0.0,0.0,1773.5990274344645,0.0,0.0,49262.0,41,10,1,9359,201109885,,,600.0,,2.0,0.0,6.0,3.0,5.0,2.8,2002.2899215752345,0.0,1300.0,0.0,0.0,64571.0,1,1,2,115.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1773.5990274344645,0.03600339059385458,0.027467423881223217,23061.07142857143,7,4,7,7_1,7_4,7_1_0 -9886,2,37.0,3,0.0,1,111,2,46,33,4.0,0.0,0.0,982.3009998098572,0.0,2502.5908619669117,44175.0,31,10,2,9360,201109886,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2590.881186491574,0.0,720.0,1440.0,0.0,34904.0,4,1,2,100.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3484.891861776769,0.07888832737468635,0.09984219177678114,16620.95238095238,4,2,4_0,4_0_0,4_3_0,4_1_0 -9887,2,44.0,2,0.0,5,111,2,56,63,8.0,0.0,0.0,622.1239665462429,0.0,1251.2954309834558,18321.0,71,71,1,9362,201109887,,,130.0,,2.0,0.0,4.0,1.0,3.0,2.0,3179.029638331835,0.0,456.0,720.0,0.0,50528.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1873.4193975296987,0.10225530252331744,0.0370768563475637,25264.0,8,4,8,8_1,8_4,8_0_0 -9888,2,52.0,2,0.0,1,111,2,34,35,10.0,0.0,0.0,818.5841665082144,0.0,782.0596443646599,42034.0,10,10,2,9363,201109888,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2546.1741271211777,0.0,600.0,450.0,0.0,80738.0,1,1,2,57.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1600.6438108728744,0.038079740468974506,0.019825160530021483,53825.333333333336,10,5,10,10_0,10_4,10_1_0 -9889,2,29.0,3,0.0,9,221,2,0,62,4.0,0.0,0.0,532.0797082303393,0.0,573.5104058674173,15694.0,0,41,1,9364,201109889,,,528.0,,1.0,0.0,4.0,0.0,1.0,1.0,4637.397939584951,0.0,390.0,330.0,0.0,16660.0,0,1,2,62.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1105.5901140977567,0.07044667478639968,0.06636195162651601,16660.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -9890,2,51.0,2,0.0,1,112,5,62,43,10.0,0.0,693.9631597817199,1323.3777358549464,391.02982218232995,0.0,77157.0,50,10,1,9366,201109890,,,200.0,,2.0,1.0,7.0,0.0,2.0,1.5,977.3071857849767,0.0,970.0,0.0,0.0,72245.0,1,1,2,250.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2408.370717818996,0.031213897868229663,0.0333361577661983,48163.333333333336,10,5,10,10_1,10_0,10_1_0 -9891,2,52.0,4,0.0,1,400,2,56,69,2.0,0.0,0.0,1500.737638598393,187.69431464751835,0.0,32706.0,50,50,1,9367,201109891,,,,,2.0,0.0,4.0,2.0,4.0,2.5,1042.0839383592224,0.0,1100.0,0.0,0.0,23760.0,1,1,1,150.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1688.4319532459112,0.051624532295172484,0.07106195089418818,9504.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -9892,2,55.0,2,0.0,5,111,1,77,43,10.0,0.0,0.0,1356.9966611349473,0.0,1808.0493213684017,28218.0,50,31,2,9368,201109892,,,400.0,,1.0,2.0,4.0,0.0,2.0,1.5,3151.4156894001494,1035.0,600.0,400.0,0.0,72175.0,6,1,1,85.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3165.045982503349,0.11216407904540893,0.04385238631802354,48116.666666666664,10,5,10,10_0,10_4,10_0_0 -9893,1,35.0,3,100.0,8,112,2,55,63,5.0,0.0,0.0,613.9381248811608,0.0,1303.4327406077664,41802.0,43,42,1,937,201109893,,,374.0,,2.0,0.0,5.0,3.0,5.0,2.4,2267.171865049829,0.0,450.0,750.0,0.0,41863.0,1,1,2,95.0,9,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1917.3708654889272,0.045867921761851754,0.04580108605424664,17442.916666666668,5,3,5,5_1,5_0,5_0_0 -9894,1,39.0,2,50.0,2,111,1,0,69,4.0,0.0,0.0,723.0826804155894,0.0,0.0,24127.0,0,30,2,9371,201109894,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4431.404260794275,0.0,530.0,0.0,0.0,15163.0,0,1,3,30.0,4,3.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,723.0826804155894,0.029969854537057628,0.047687309926504606,15163.0,4,2,4_1,4_0_1,4_1_1,4_0_1 -9895,2,49.0,1,0.0,3,111,1,0,34,10.0,0.0,0.0,427.02807352845184,0.0,384.0781808990885,33690.0,0,10,2,9372,201109895,,,,,1.0,0.0,5.0,0.0,1.0,1.0,3307.1848344110535,0.0,313.0,221.0,0.0,40500.0,0,1,1,84.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,811.1062544275403,0.0240755789381876,0.0200273149241368,40500.0,10,5,10,10_0,10_3,10_0_1 -9896,2,48.0,5,0.0,3,111,1,0,56,4.0,0.0,0.0,395.6490138123036,43.44775802025888,0.0,29660.0,0,50,2,9373,201109896,,,,389.0,2.0,1.0,5.0,1.0,2.0,1.5,1816.0209681264635,0.0,290.0,0.0,0.0,22160.0,0,1,3,100.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,439.0967718325625,0.014804341599209795,0.019814836274032605,14773.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_1 -9897,0,50.0,2,0.0,1,211,2,0,85,2.0,0.0,0.0,245.5752499524643,0.0,1981.2177657238049,15524.0,0,50,1,9374,201109897,,,300.0,,0.0,1.0,3.0,0.0,1.0,1.0,1675.0411568617649,0.0,180.0,1140.0,0.0,9930.0,0,7,5,83.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2226.793015676269,0.143441961844645,0.2242490448817995,9930.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -9898,2,36.0,3,0.0,1,111,2,55,35,8.0,0.0,0.0,62.75811943229643,0.0,144.24655662725948,29444.0,43,42,2,9375,201109898,,,,619.0,2.0,0.0,3.0,0.0,2.0,1.5,3177.8481493266804,0.0,46.0,83.0,0.0,41973.0,1,1,3,100.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,207.00467605955592,0.0070304536088695805,0.004931853240405878,27982.0,8,4,8,8_0,8_2,8_1_0 -9899,2,53.0,2,0.0,5,111,2,34,38,8.0,0.0,0.0,573.00891655575,0.0,2085.4923849724264,56165.0,20,41,1,9376,201109899,,,436.0,,2.0,1.0,5.0,2.0,4.0,2.5,2218.8755321132667,0.0,420.0,1200.0,0.0,68233.0,1,1,1,180.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2658.5013015281766,0.04733377194922419,0.038962104869024905,27293.2,8,4,8,8_1,8_3,8_0_0 -9900,2,37.0,2,0.0,6,120,5,37,38,9.0,793.228004569441,190.14590578019127,736.7257498573929,0.0,0.0,64891.0,12,10,1,9377,201109900,,,287.0,,2.0,0.0,5.0,1.0,3.0,1.8,3044.1997088258126,0.0,540.0,0.0,0.0,63570.0,1,1,2,120.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1720.0996602070252,0.026507522772141363,0.027058355516863697,35316.666666666664,9,5,9,9_1,9_0,9_0_0 -9901,2,55.0,2,0.0,7,112,4,56,22,3.0,0.0,0.0,2592.183193942679,0.0,0.0,29893.0,71,50,1,9378,201109901,,,350.0,,2.0,1.0,8.0,2.0,4.0,2.5,1425.045532902681,0.0,1900.0,0.0,0.0,35715.0,1,1,1,140.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2592.183193942679,0.0867153913606088,0.07257967783683827,14286.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -9902,2,69.0,1,0.0,5,112,2,86,77,6.0,0.0,0.0,436.5782221377143,3880.753746369523,0.0,39101.0,70,70,1,9379,201109902,,,440.0,,0.0,2.0,4.0,0.0,2.0,1.5,1965.501672023463,0.0,320.0,0.0,0.0,31796.0,6,5,1,100.0,9,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4317.331968507237,0.11041487349446913,0.13578223576887777,21197.333333333332,6,3,6,6_1,6_0,6_0_0 -9903,2,46.0,2,0.0,6,111,2,22,23,8.0,0.0,0.0,1092.4311485180092,0.0,2258.027927915889,71292.0,50,43,1,938,201109903,,,390.0,,3.0,0.0,7.0,3.0,5.0,2.8,1131.428551458379,2100.0,0.0,0.0,0.0,70821.0,1,1,1,200.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3350.459076433898,0.046996283965015685,0.04730883602934014,25293.214285714286,8,4,8,8_1,8_2,8_0_0 -9904,2,55.0,2,0.0,5,120,2,48,45,9.0,1637.2226014313264,0.0,750.3688192991965,182.4805836850873,0.0,36261.0,50,42,1,9380,201109904,,,449.0,,3.0,1.0,7.0,1.0,3.0,2.0,1630.6514432708182,0.0,550.0,0.0,0.0,70585.0,1,1,1,192.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2570.0720044156105,0.0708770305401288,0.03641102223440689,35292.5,9,5,9,9_1,9_1,9_0_0 -9905,2,26.0,3,0.0,6,111,4,21,46,8.0,0.0,0.0,654.8673332065715,0.0,0.0,32403.0,42,31,2,9382,201109905,,,,837.0,2.0,0.0,2.0,0.0,2.0,1.5,3248.1694433961325,0.0,480.0,0.0,0.0,37250.0,1,1,3,50.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,654.8673332065715,0.020210083424577092,0.017580331092793867,24833.333333333332,7,4,7,7_0,7_4,7_0_0 -9906,2,74.0,2,0.0,2,111,2,78,77,5.0,0.0,0.0,553.908619337225,0.0,1757.0273343392691,30072.0,70,70,1,9383,201109906,,,207.0,,0.0,2.0,5.0,0.0,2.0,1.5,2240.5710384142476,0.0,406.0,1011.0,0.0,27933.0,5,5,1,130.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2310.935953676494,0.07684676621696243,0.08273139131767064,18622.0,5,3,5,5_1,5_1,5_0_1 -9907,2,57.0,2,0.0,5,211,2,78,45,9.0,1943.4086111951308,0.0,506.9039583772163,0.0,72.04184341445932,33400.0,70,50,1,9384,201109907,,,307.0,,1.0,2.0,5.0,0.0,2.0,1.5,1498.0578833106701,67.0,346.0,0.0,0.0,49720.0,5,1,1,100.0,2,3.0,3,5,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2522.3544129868064,0.0755195932031978,0.05073118288388589,33146.666666666664,9,5,9,9_1,9_1,9_0_0 -9908,2,39.0,2,0.0,9,221,2,69,11,5.0,2422.518325955073,0.0,653.5030262623911,93.84715732375918,0.0,22335.0,50,50,1,9385,201109908,,,300.0,,2.0,0.0,7.0,2.0,4.0,2.1,2913.485777283858,0.0,479.0,0.0,0.0,37106.0,1,1,2,150.0,1,1.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3169.868509541224,0.14192381954516337,0.0854273839686634,17669.52380952381,5,3,5,5_1,5_1,5_0_0 -9909,1,63.0,4,53.0,1,111,2,85,78,2.0,0.0,0.0,55.936584711394644,0.0,151.1981979105009,30846.0,71,70,1,9387,201109909,,,28.0,,1.0,0.0,4.0,2.0,4.0,2.5,2243.842608910435,0.0,41.0,87.0,0.0,27959.0,6,5,2,111.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,207.13478262189557,0.006715126195354197,0.0074085189964553655,11183.6,2,1,2_1,2_1_1,2_2_1,2_1_0 -9910,2,85.0,3,0.0,3,112,2,0,78,5.0,0.0,804.9972653467952,998.6726831400215,0.0,333.6787815955882,12813.0,0,70,1,9388,201109910,,,340.0,,0.0,4.0,6.0,0.0,1.0,1.0,1457.2427894606244,0.0,732.0,192.0,0.0,18577.0,0,5,1,120.0,6,2.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2137.348730082405,0.16681095216439593,0.11505349249515018,18577.0,5,3,5,5_1,5_1,5_0_1 -9911,2,53.0,2,0.0,6,221,5,78,23,7.0,0.0,374.7401062821288,1268.8054580877322,104.27461924862132,0.0,41777.0,60,50,1,9389,201109911,,,,,1.0,1.0,5.0,0.0,2.0,1.5,2260.7690903695166,0.0,930.0,0.0,0.0,33300.0,6,1,1,200.0,1,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1747.8201836184824,0.04183690029486278,0.052487092601155624,22200.0,7,4,7,7_1,7_1,7_0_0 -9912,1,25.0,3,45.0,1,111,2,0,46,4.0,0.0,0.0,466.5929749096822,0.0,0.0,14265.0,0,43,2,939,201109912,,,,265.0,1.0,0.0,2.0,0.0,1.0,1.0,3348.5388639514545,0.0,342.0,0.0,0.0,15725.0,0,1,3,27.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,466.5929749096822,0.03270893620116945,0.029672049278835117,15725.0,4,2,4_1,4_0_1,4_2_1,4_1_0 -9913,2,45.0,3,0.0,4,112,6,54,68,5.0,2982.5372971810984,0.0,450.22129157951787,166.8393907977941,0.0,51982.0,60,71,1,9390,201109913,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1881.8062315624525,0.0,330.0,0.0,0.0,36007.0,1,1,2,110.0,8,1.0,4,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3599.5979795584108,0.06924700818664943,0.09996939427218071,17146.190476190477,5,3,5,5_1,5_1,5_0_1 -9914,2,31.0,3,0.0,4,111,1,0,67,4.0,0.0,0.0,710.8039179179661,0.0,0.0,17847.0,0,43,2,9391,201109914,,,268.0,310.0,1.0,0.0,2.0,0.0,1.0,1.0,3026.9259840970935,0.0,521.0,0.0,0.0,14974.0,0,1,3,34.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,710.8039179179661,0.03982764150378025,0.04746920782142154,14974.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -9915,2,74.0,1,0.0,1,400,3,77,74,6.0,0.0,0.0,3030.1257230245733,2513.018323891774,0.0,15287.0,41,10,1,9392,201109915,,,170.0,,0.0,0.0,3.0,0.0,2.0,1.5,1591.9423314637368,0.0,2221.0,0.0,0.0,28489.0,5,5,1,100.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5543.144046916347,0.3626050923605905,0.19457138007358443,18992.666666666668,5,3,5,5_1,5_0,5_1_0 -9916,2,50.0,4,0.0,2,111,1,0,43,5.0,0.0,0.0,491.1504999049286,0.0,643.0268186998314,35937.0,0,33,2,9393,201109916,370.0,370.0,,262.0,1.0,1.0,2.0,1.0,2.0,1.5,2877.274814752862,0.0,360.0,370.0,0.0,25102.0,0,1,3,35.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1134.17731860476,0.031560155789430396,0.04518274713587603,16734.666666666668,4,2,4_0,4_0_0,4_4_0,4_0_1 -9917,2,72.0,4,0.0,1,300,2,0,71,1.0,2459.0068141652673,0.0,436.5782221377143,434.4775802025888,0.0,9189.0,0,70,1,9395,201109917,,,220.0,,0.0,0.0,3.0,0.0,1.0,1.0,1810.9953949754406,0.0,320.0,0.0,0.0,7964.0,0,5,1,40.0,0,0.0,1,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3330.0626165055705,0.36239662819736324,0.41813945460893653,7964.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -9918,2,50.0,2,0.0,3,111,1,0,46,7.0,0.0,0.0,285.1401513336947,0.0,330.2029609539675,15951.0,0,60,2,9396,201109918,,,,276.0,1.0,1.0,3.0,0.0,1.0,1.0,3112.7079862092555,0.0,209.0,190.0,0.0,24269.0,0,1,3,67.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,615.3431122876622,0.038577086846446125,0.025355107844891103,24269.0,7,4,7,7_0,7_2,7_0_1 -9919,2,74.0,2,0.0,4,212,2,71,71,2.0,0.0,0.0,474.77881657476433,1353.8321399112667,0.0,20483.0,70,71,1,9399,201109919,,,522.0,,0.0,2.0,4.0,0.0,2.0,1.5,1730.5618312695328,0.0,348.0,0.0,0.0,18390.0,5,5,1,80.0,3,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1828.610956486031,0.08927456703051462,0.09943507104328608,12260.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -9920,2,58.0,2,0.0,1,112,2,56,22,10.0,0.0,0.0,1146.0178331115,194.64595593075978,0.0,23090.0,50,50,1,9400,201109920,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1220.4763768978976,0.0,840.0,0.0,0.0,68702.0,1,1,3,100.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1340.6637890422599,0.0580625287588679,0.01951418865596722,45801.333333333336,10,5,10,10_1,10_1,10_1_0 -9921,2,79.0,2,0.0,3,111,1,0,74,10.0,0.0,0.0,177.35990274344644,0.0,0.0,35006.0,0,30,2,9403,201109921,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2933.1849696093886,0.0,130.0,0.0,0.0,39517.0,0,5,1,100.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,177.35990274344644,0.005066557240000184,0.004488192492938392,39517.0,10,5,10,10_0,10_3,10_0_1 -9922,2,71.0,3,0.0,1,112,6,0,86,1.0,1745.1016100527704,0.0,477.50743046312505,0.0,0.0,10628.0,0,70,5,9405,201109922,,,130.0,,0.0,4.0,5.0,0.0,1.0,1.0,1214.2080491177417,0.0,350.0,0.0,0.0,6300.0,0,5,1,110.0,8,0.0,1,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2222.6090405158957,0.2091276854079691,0.3527950857961739,6300.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -9923,2,72.0,3,0.0,99,300,4,0,78,6.0,0.0,555.170527825376,2946.9029994295715,145.98446694806984,0.0,11421.0,0,71,1,9407,201109923,,,242.0,,0.0,3.0,6.0,0.0,1.0,1.0,3753.941333461568,0.0,2160.0,0.0,0.0,19433.0,0,5,1,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3648.057994203017,0.3194166880485962,0.187724900643391,19433.0,6,3,6,6_1,6_0,6_0_0 -9924,2,58.0,2,0.0,5,111,2,65,78,5.0,0.0,0.0,446.1283707469768,0.0,1020.1533583156785,51383.0,41,50,1,9408,201109924,,,327.0,,1.0,2.0,5.0,0.0,2.0,1.5,1909.8533291516023,0.0,327.0,587.0,0.0,25492.0,1,5,1,83.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1466.2817290626554,0.028536319970859144,0.05751928954427488,16994.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0 -9925,1,44.0,3,244.0,6,111,2,0,85,2.0,0.0,0.0,154.50097671897558,0.0,319.3496640909614,3926.0,0,50,2,9410,201109925,,,,64.0,0.0,0.0,1.0,0.0,1.0,1.0,3851.922306701764,297.0,0.0,0.0,0.0,12062.0,0,7,3,28.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,473.850640809937,0.12069552746050356,0.03928458305504369,12062.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -9926,2,76.0,4,0.0,2,111,2,0,77,3.0,0.0,0.0,251.03247772918573,0.0,220.7146107429151,23375.0,0,70,2,9411,201109926,,,,256.0,1.0,1.0,3.0,0.0,2.0,1.5,3431.3111155725624,0.0,184.0,127.0,0.0,21610.0,0,5,3,51.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,471.7470884721008,0.0201816936244749,0.021830036486446127,14406.666666666666,3,2,3_0,3_0_0,3_4_0,3_0_1 -9927,1,40.0,3,89.0,6,300,2,42,48,4.0,793.228004569441,0.0,2128.318832921357,46.92357866187959,0.0,15663.0,31,50,1,9413,201109927,,,300.0,,2.0,0.0,6.0,3.0,5.0,2.4,3774.9321720968264,0.0,1560.0,0.0,0.0,37152.0,1,1,2,160.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2968.470416152678,0.18952119109702342,0.07990068949592695,15480.0,4,2,4_1,4_1_1,4_0_1,4_0_0 -9928,1,27.0,2,70.0,1,300,2,55,64,3.0,4759.368027416646,0.0,955.0148609262501,100.7987986070006,0.0,17151.0,42,50,1,9414,201109928,,,350.0,,2.0,0.0,5.0,2.0,4.0,2.1,1964.5239211896703,0.0,700.0,0.0,0.0,30643.0,1,1,3,85.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,5815.181686949896,0.33905787924610203,0.18977194422706314,14591.904761904761,3,2,3_1,3_1_1,3_0_1,3_1_0 -9929,2,38.0,1,0.0,9,112,2,85,62,5.0,0.0,0.0,2251.1064578975893,0.0,0.0,47739.0,50,71,1,9415,201109929,,,317.0,,1.0,0.0,5.0,3.0,5.0,2.6,1664.9660900691829,0.0,1650.0,0.0,0.0,43554.0,6,1,2,125.0,7,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2251.1064578975893,0.04715445354736356,0.051685412542994656,16751.53846153846,4,2,4_0,4_1_0,4_0_0,4_0_0 -9930,2,44.0,2,0.0,9,111,1,46,56,9.0,0.0,0.0,1159.6609025533037,0.0,0.0,22405.0,42,10,2,9419,201109930,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3048.8023886191645,0.0,850.0,0.0,0.0,55711.0,1,1,2,65.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1159.6609025533037,0.05175902265357303,0.02081565404593893,37140.666666666664,9,5,9,9_0,9_4,9_0_0 -9931,2,34.0,2,0.0,1,300,2,85,64,2.0,1570.5914490474934,0.0,818.5841665082144,173.79103208103552,0.0,22810.0,71,60,1,942,201109931,,,,,1.0,0.0,7.0,3.0,5.0,2.4,4138.528704868562,0.0,600.0,0.0,0.0,26331.0,6,1,2,94.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2562.9666476367433,0.11236153650314526,0.0973364721293055,10971.25,2,1,2_0,2_1_0,2_0_0,2_1_0 -9932,2,35.0,4,0.0,1,400,5,0,68,2.0,317.29120182777643,986.8156132096058,638.4956498764072,45.18566834106924,0.0,15380.0,0,41,1,9423,201109932,,,74.0,,1.0,0.0,1.0,1.0,2.0,1.3,2432.660996899435,0.0,468.0,0.0,0.0,14734.0,0,1,1,40.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1987.7881332548586,0.12924500216221446,0.1349116420018229,11333.846153846154,2,1,2_0,2_1_0,2_0_0,2_1_0 -9933,1,29.0,3,286.0,99,111,1,21,85,2.0,0.0,0.0,729.9042151364911,0.0,1477.223772688802,22966.0,50,71,2,9424,201109933,850.0,850.0,,162.0,1.0,0.0,4.0,3.0,5.0,2.4,3086.4697081708055,0.0,535.0,850.0,0.0,22872.0,1,6,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2207.127987825293,0.0961041534366147,0.09649912503608311,9530.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -9934,2,68.0,3,0.0,4,111,2,78,78,7.0,0.0,0.0,545.7227776721429,0.0,2954.447545377604,21930.0,70,50,1,9425,201109934,,,160.0,,0.0,2.0,5.0,0.0,2.0,1.5,1218.079134089168,0.0,400.0,1700.0,0.0,34368.0,5,5,1,89.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3500.170323049747,0.15960648987914944,0.101843875787062,22912.0,7,4,7,7_1,7_3,7_0_1 -9935,2,32.0,2,0.0,99,112,4,0,62,6.0,0.0,0.0,1085.9883275675643,0.0,0.0,17228.0,0,50,2,9426,201109935,,,,503.0,1.0,0.0,2.0,0.0,1.0,1.0,3731.925341907606,0.0,796.0,0.0,0.0,21317.0,0,1,3,35.0,10,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1085.9883275675643,0.06303623912047622,0.05094470739632989,21317.0,6,3,6,6_0,6_1,6_0_0 -9936,1,50.0,4,295.0,1,111,6,0,54,1.0,0.0,0.0,272.86138883607146,0.0,0.0,6397.0,0,50,2,9431,201109936,,,,260.0,1.0,0.0,2.0,0.0,1.0,1.0,2813.7322121994403,0.0,200.0,0.0,0.0,8550.0,0,4,3,23.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,272.86138883607146,0.04265458634298444,0.03191361272936508,8550.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -9937,2,45.0,3,0.0,9,300,5,46,46,7.0,0.0,624.566843803548,750.3688192991965,52.13730962431066,0.0,33217.0,50,50,1,9433,201109937,,,364.0,,2.0,0.0,4.0,1.0,3.0,1.8,2885.0997075930704,0.0,550.0,0.0,0.0,42598.0,1,1,2,130.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1427.072972727055,0.04296212700505931,0.03350093837098115,23665.555555555555,7,4,7,7_1,7_0,7_0_0 -9938,1,35.0,3,337.0,6,112,1,0,46,4.0,0.0,0.0,425.66376658427146,0.0,804.6524785351945,12829.0,0,50,8,9434,201109938,463.0,463.0,,169.0,1.0,0.0,3.0,1.0,2.0,1.3,4404.772419512655,0.0,312.0,463.0,0.0,21605.0,0,1,3,63.0,9,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1230.316245119466,0.09590118053780232,0.056945903500090995,16619.23076923077,4,2,4_1,4_0_1,4_1_1,4_0_0 -9939,2,85.0,3,0.0,2,111,2,0,72,4.0,0.0,0.0,278.3186166127929,0.0,2321.8481886026348,10950.0,0,70,2,9436,201109939,,,,,0.0,2.0,2.0,0.0,1.0,1.0,7311.642298879587,0.0,204.0,1336.0,0.0,15624.0,0,5,1,51.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2600.1668052154278,0.23745815572743634,0.1664213264986833,15624.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -9940,1,20.0,3,161.0,3,111,1,0,55,1.0,0.0,0.0,124.84927411634389,0.0,258.06033461895873,15254.0,0,41,2,9437,201109940,,,,479.0,1.0,0.0,3.0,0.0,1.0,1.0,4584.898940695614,240.0,0.0,0.0,0.0,7904.0,0,1,4,73.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,382.90960873530264,0.025102242607532625,0.04844504159100489,7904.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -9941,2,61.0,2,0.0,6,111,4,75,75,6.0,0.0,69.396315978172,2251.1064578975893,0.0,0.0,37287.0,30,50,1,9439,201109941,,,650.0,,0.0,2.0,4.0,0.0,2.0,1.5,2400.467393321078,0.0,1650.0,0.0,0.0,32262.0,7,5,1,95.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2320.5027738757612,0.06223356059419533,0.07192681091921646,21508.0,6,3,6,6_1,6_3,6_0_0 -9942,2,76.0,1,0.0,99,111,1,0,72,6.0,0.0,0.0,286.504458277875,0.0,0.0,19105.0,0,70,2,9440,201109942,,,122.0,470.0,0.0,3.0,3.0,0.0,1.0,1.0,3399.5164794648917,0.0,210.0,0.0,0.0,19440.0,0,5,3,65.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,286.504458277875,0.014996307682694322,0.014737883656269291,19440.0,6,3,6,6_0,6_2,6_0_0 -9943,2,54.0,2,0.0,1,112,2,75,46,9.0,0.0,0.0,1384.7715483430627,0.0,1835.2332987757352,41881.0,44,50,1,9441,201109943,,,500.0,,1.0,1.0,4.0,0.0,2.0,1.5,1905.3659718488311,0.0,1015.0,1056.0,0.0,52567.0,6,4,1,140.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3220.004847118798,0.07688462183612611,0.061255252289816764,35044.666666666664,9,5,9,9_1,9_2,9_1_0 -9944,2,70.0,4,0.0,8,111,2,0,78,4.0,0.0,0.0,477.50743046312505,0.0,938.4715732375919,16673.0,0,71,2,9442,201109944,,,,417.0,0.0,3.0,2.0,0.0,1.0,1.0,3643.6948336562314,0.0,350.0,540.0,0.0,14980.0,0,5,3,57.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1415.979003700717,0.08492646816414064,0.09452463309083557,14980.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -9945,1,68.0,3,77.0,3,112,4,0,78,2.0,0.0,0.0,1200.5901108787143,0.0,0.0,9813.0,0,50,2,9443,201109945,,,230.0,238.0,0.0,1.0,1.0,0.0,1.0,1.0,4706.152628059064,0.0,880.0,0.0,0.0,12198.0,0,5,3,30.0,7,0.0,1,4,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,1200.5901108787143,0.12234689808200493,0.0984251607541166,12198.0,2,1,2_1,2_0_1,2_0_1,2_0_1 -9946,2,55.0,3,0.0,5,112,2,67,67,5.0,0.0,624.566843803548,1637.1683330164287,93.84715732375918,0.0,17831.0,70,71,1,9444,201109946,,,,,2.0,1.0,3.0,0.0,2.0,1.5,1609.3427355967945,0.0,1200.0,0.0,0.0,26095.0,1,1,1,90.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2355.5823341437363,0.13210601391642288,0.09026948971618073,17396.666666666668,5,3,5,5_1,5_1,5_0_0 -9947,2,52.0,3,0.0,6,112,5,21,54,10.0,0.0,1110.341055650752,1814.528235759875,0.0,0.0,40620.0,50,50,1,9445,201109947,,,430.0,,2.0,3.0,4.0,0.0,2.0,1.5,2566.4356737203607,0.0,1330.0,0.0,0.0,60449.0,1,1,2,100.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2924.869291410627,0.07200564479100509,0.04838573494037332,40299.333333333336,10,5,10,10_1,10_0,10_0_0 -9948,2,39.0,2,0.0,4,111,1,42,38,9.0,0.0,0.0,556.6372332255858,0.0,0.0,54940.0,20,44,2,9447,201109948,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3153.7396134359933,0.0,408.0,0.0,0.0,63278.0,1,1,2,92.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,556.6372332255858,0.010131729763843935,0.008796694478738041,30132.38095238095,9,5,9,9_0,9_3,9_0_1 -9949,2,35.0,3,0.0,9,112,2,55,48,6.0,142.7810408224994,0.0,1500.737638598393,0.0,0.0,45135.0,43,43,1,945,201109949,,,460.0,,2.0,0.0,4.0,2.0,4.0,2.1,3105.8130184001175,0.0,1100.0,0.0,0.0,44147.0,1,1,2,90.0,9,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1643.5186794208923,0.03641339712907704,0.03722832082408527,21022.38095238095,6,3,6,6_1,6_0,6_0_0 -9950,2,59.0,3,0.0,6,111,2,56,75,6.0,1099.4140143332454,0.0,1009.5871386934643,0.0,0.0,22772.0,70,50,1,9450,201109950,,,236.0,,1.0,2.0,6.0,0.0,2.0,1.5,1572.4770807712298,0.0,740.0,0.0,0.0,28927.0,4,5,1,140.0,7,5.0,3,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2109.0011530267097,0.09261378680075134,0.07290770397990493,19284.666666666668,6,3,6,6_1,6_2,6_0_0 -9951,2,65.0,3,0.0,6,111,4,0,86,1.0,0.0,0.0,2728.6138883607146,0.0,0.0,33765.0,0,41,1,9451,201109951,,,250.0,,0.0,2.0,5.0,0.0,1.0,1.0,3303.3894682927234,0.0,2000.0,0.0,0.0,9114.0,0,6,1,106.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2728.6138883607146,0.08081190251327453,0.29938708452498514,9114.0,1,1,1_0,1_1_0,1_4_0,1_0_0 -9952,2,57.0,2,0.0,5,221,5,62,47,8.0,0.0,555.170527825376,706.7109970854251,173.79103208103552,0.0,32609.0,60,50,1,9452,201109952,,,352.0,,3.0,2.0,7.0,1.0,3.0,2.0,3523.0588550679913,0.0,518.0,0.0,0.0,52399.0,1,1,1,105.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1435.6725569918367,0.04402688083019524,0.02739885411919763,26199.5,8,4,8,8_1,8_1,8_0_0 -9953,2,48.0,3,0.0,6,111,4,0,37,9.0,0.0,0.0,477.50743046312505,0.0,0.0,12554.0,0,50,2,9453,201109953,,,,550.0,1.0,0.0,2.0,0.0,1.0,1.0,2716.017482698935,0.0,350.0,0.0,0.0,29153.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,477.50743046312505,0.03803627771731122,0.016379358229448943,29153.0,9,5,9,9_0,9_4,9_0_0 -9954,2,69.0,2,0.0,8,120,2,74,74,10.0,0.0,0.0,878.61367205215,0.0,1845.6607607005972,55248.0,30,30,1,9457,201109954,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2263.9974902246777,0.0,644.0,1062.0,0.0,61580.0,5,5,1,180.0,0,2.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2724.274432752747,0.04930991950392317,0.044239597803714635,41053.333333333336,10,5,10,10_1,10_1,10_0_0 -9955,2,79.0,2,0.0,6,111,4,0,77,8.0,0.0,0.0,818.5841665082144,0.0,0.0,14810.0,0,70,2,946,201109955,,,80.0,,0.0,3.0,2.0,0.0,1.0,1.0,3096.5282000273583,0.0,600.0,0.0,0.0,25105.0,0,5,3,36.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,818.5841665082144,0.05527239476760394,0.03260641969759866,25105.0,8,4,8,8_0,8_2,8_0_0 -9956,2,57.0,1,0.0,6,221,5,46,46,9.0,0.0,0.0,1225.1476358739608,130.34327406077665,0.0,39154.0,50,31,1,9460,201109956,,,,,2.0,1.0,4.0,0.0,2.0,1.5,3865.9069567735537,0.0,898.0,0.0,0.0,46444.0,4,1,3,95.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1355.4909099347374,0.03461947463693971,0.029185490266444264,30962.666666666668,9,5,9,9_1,9_1,9_0_0 -9957,2,66.0,2,0.0,4,111,1,77,74,7.0,0.0,0.0,647.5461146927968,0.0,909.5636155589981,45550.0,50,30,2,9463,201109957,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2140.6717120236262,458.0,300.0,240.0,0.0,36805.0,5,5,1,85.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1557.1097302517949,0.034184626350204056,0.042307016173123074,24536.666666666668,7,4,7,7_0,7_2,7_0_1 -9958,2,52.0,3,0.0,6,111,2,52,52,8.0,0.0,312.283421901774,2373.8940828738214,159.8877495145527,0.0,62539.0,50,50,1,9464,201109958,,,154.0,,3.0,1.0,7.0,1.0,3.0,2.0,1049.6430024708436,0.0,1740.0,0.0,0.0,51724.0,1,1,2,169.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2846.065254290148,0.045508646673118346,0.055024074980476144,25862.0,8,4,8,8_1,8_3,8_0_0 -9959,2,68.0,3,0.0,4,111,1,0,75,6.0,0.0,0.0,218.28911106885715,0.0,0.0,24490.0,0,70,2,9466,201109959,,,,,0.0,3.0,2.0,0.0,1.0,1.0,1365.508626394744,0.0,160.0,0.0,0.0,19123.0,0,5,1,30.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,218.28911106885715,0.008913397756997026,0.011415003454942067,19123.0,5,3,5,5_0,5_2,5_0_1 -9960,2,32.0,4,0.0,7,111,1,0,54,5.0,0.0,0.0,925.0001081542822,0.0,437.9534008442095,14777.0,0,71,2,9469,201109960,252.0,252.0,,294.0,1.0,0.0,1.0,0.0,1.0,1.0,3228.6119657811014,0.0,678.0,252.0,0.0,17368.0,0,1,3,34.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1362.9535089984918,0.09223479116183879,0.07847498324496152,17368.0,5,3,5,5_0,5_4,5_0_0 -9961,2,48.0,3,0.0,1,120,5,12,54,4.0,0.0,0.0,725.81129430395,83.41969539889705,0.0,28220.0,50,41,1,9470,201109961,,,387.0,,2.0,1.0,8.0,1.0,3.0,2.0,1920.1822222906922,0.0,532.0,0.0,0.0,30534.0,1,1,1,120.0,0,3.0,4,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,809.2309897028471,0.028675796941986076,0.02650261969289471,15267.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -9962,2,37.0,3,0.0,5,112,2,42,12,7.0,2538.3296146222115,0.0,654.8673332065715,50.3993993035003,0.0,19843.0,50,31,1,9471,201109962,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1505.7694656948588,0.0,480.0,0.0,0.0,33013.0,4,1,1,144.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3243.596347132283,0.1634630019216995,0.09825209302796725,22008.666666666668,7,4,7,7_1,7_0,7_0_0 -9963,2,64.0,2,0.0,5,120,2,77,78,10.0,0.0,277.585263912688,538.9012429512411,0.0,2102.87148818053,34067.0,70,50,1,9474,201109963,,,266.0,,0.0,2.0,5.0,0.0,2.0,1.5,2514.082729121207,0.0,395.0,1210.0,0.0,63179.0,5,5,1,116.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2919.357995044459,0.08569460166860772,0.046207727172707054,42119.333333333336,10,5,10,10_1,10_1,10_0_0 -9964,2,56.0,3,0.0,5,112,2,0,56,1.0,0.0,0.0,651.039712878465,0.0,1412.583140120305,32586.0,0,50,1,9476,201109964,,,370.0,,1.0,0.0,6.0,1.0,2.0,1.5,1293.0734871429433,150.0,420.0,720.0,0.0,8208.0,0,5,2,109.0,9,0.0,2,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2063.62285299877,0.06332851080214724,0.25141603959536674,5472.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -9965,1,63.0,3,31.0,9,111,2,0,75,3.0,0.0,0.0,343.33550381994576,0.0,709.6659202021365,26232.0,0,41,2,9477,201109965,,,,259.0,0.0,2.0,2.0,0.0,1.0,1.0,3350.649604581899,660.0,0.0,0.0,0.0,13382.0,0,5,3,44.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1053.0014240220821,0.04014186581358959,0.07868789598132432,13382.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -9966,2,43.0,2,0.0,1,300,2,62,13,5.0,0.0,111.0341055650752,627.5811943229643,166.8393907977941,0.0,41362.0,20,31,1,9478,201109966,,,246.0,,2.0,0.0,8.0,2.0,4.0,2.1,1439.4357575110125,0.0,460.0,0.0,0.0,38702.0,1,1,1,180.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,905.4546906858335,0.021890979417964158,0.023395552960721242,18429.52380952381,5,3,5,5_1,5_0,5_1_0 -9967,2,29.0,1,0.0,5,111,2,55,47,7.0,0.0,0.0,676.2669014635294,0.0,1397.8268125193597,45966.0,42,31,1,9479,201109967,,,350.0,,2.0,0.0,3.0,1.0,3.0,1.8,2311.0033641846035,1300.0,0.0,0.0,0.0,39097.0,1,1,2,76.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2074.0937139828893,0.04512234508077469,0.053049945366214525,21720.555555555555,6,3,6,6_1,6_2,6_0_0 -9968,2,77.0,2,0.0,1,111,6,78,86,4.0,0.0,832.755791738064,933.1859498193644,152.93610823131127,0.0,17571.0,71,70,1,9480,201109968,,,204.0,,0.0,3.0,3.0,0.0,2.0,1.5,2413.2531421212325,0.0,684.0,0.0,0.0,24975.0,5,5,1,75.0,7,5.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1918.8778497887397,0.10920709406344202,0.07683194593748707,16650.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -9969,2,40.0,3,0.0,7,112,2,69,69,5.0,0.0,0.0,95.501486092625,291.9689338961397,0.0,18127.0,42,50,2,9481,201109969,,,50.0,,2.0,0.0,3.0,2.0,4.0,2.3,2770.78335513172,0.0,70.0,0.0,0.0,39870.0,1,1,3,94.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,387.47041998876466,0.021375319688242106,0.009718345121363547,17334.782608695652,5,3,5,5_0,5_1,5_0_0 -9970,2,28.0,3,0.0,9,111,2,0,38,8.0,0.0,0.0,968.6579303680536,0.0,0.0,42759.0,0,20,2,9482,201109970,,,,800.0,1.0,0.0,1.0,0.0,1.0,1.0,4408.997698407426,0.0,710.0,0.0,0.0,27511.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,968.6579303680536,0.022653895796628864,0.03520984080433476,27511.0,8,4,8,8_0,8_4,8_0_0 -9971,2,49.0,3,0.0,3,111,2,63,52,6.0,0.0,270.6456323148708,603.0236693277179,0.0,1619.732418995251,34893.0,60,50,1,9483,201109971,,,320.0,,2.0,0.0,4.0,2.0,4.0,2.1,1111.7074646333238,0.0,442.0,932.0,0.0,43601.0,1,1,1,120.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2493.40172063784,0.0714585080284825,0.05718680123478452,20762.38095238095,6,3,6,6_1,6_3,6_0_1 -9972,2,49.0,3,0.0,7,112,2,21,38,8.0,0.0,0.0,1752.6949546059373,2606.865481215533,1225.786589440054,91456.0,31,42,1,9484,201109972,,,,,2.0,0.0,5.0,1.0,3.0,2.0,2757.887112139204,1140.0,850.0,0.0,0.0,56501.0,1,1,1,170.0,8,0.0,4,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5585.347025261523,0.06107141166529832,0.09885394993471838,28250.5,8,4,8,8_1,8_0,8_0_0 -9973,1,64.0,3,132.0,7,111,2,0,75,3.0,0.0,0.0,294.69029994295715,0.0,969.7539590121783,12550.0,0,70,2,9485,201109973,,,,286.0,0.0,2.0,2.0,0.0,1.0,1.0,2515.062053157898,0.0,216.0,558.0,0.0,12370.0,0,5,3,49.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1264.4442589551354,0.10075253059403469,0.10221861430518475,12370.0,2,1,2_1,2_0_1,2_4_1,2_0_0 -9974,2,79.0,2,0.0,4,111,1,75,74,9.0,0.0,0.0,654.8673332065715,0.0,0.0,37742.0,41,20,2,9487,201109974,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2654.0495765864416,0.0,480.0,0.0,0.0,51286.0,5,5,1,97.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,654.8673332065715,0.017351156091531227,0.01276892978993432,34190.666666666664,9,5,9,9_0,9_3,9_0_1 -9975,2,46.0,2,0.0,1,112,5,54,33,6.0,1147.0076946074118,13.8792631956344,693.0679276436215,187.69431464751835,0.0,42339.0,42,31,1,9488,201109975,,,452.0,,3.0,0.0,5.0,3.0,5.0,2.6,1374.1941459947514,0.0,508.0,0.0,0.0,53790.0,1,1,2,180.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2041.6492000941862,0.04822147901684466,0.037955924894853804,20688.46153846154,6,3,6,6_1,6_0,6_1_0 -9976,1,39.0,3,250.0,8,111,4,0,52,5.0,0.0,0.0,818.5841665082144,0.0,0.0,19496.0,0,41,2,9489,201109976,,,140.0,,1.0,0.0,2.0,0.0,1.0,1.0,2230.1655439622955,0.0,600.0,0.0,0.0,17557.0,0,4,3,47.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,818.5841665082144,0.04198728798257152,0.04662437583346895,17557.0,5,3,5,5_0,5_2,5_0_0 -9977,2,69.0,3,0.0,5,111,6,75,77,10.0,0.0,0.0,2223.8203190139825,128.6053637399663,0.0,30718.0,60,50,1,949,201109977,,,600.0,,0.0,1.0,5.0,0.0,2.0,1.5,1832.240704282506,0.0,1630.0,0.0,0.0,57220.0,5,5,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2352.425682753949,0.07658134262497392,0.04111194831796485,38146.666666666664,10,5,10,10_1,10_3,10_0_0 -9978,2,42.0,3,0.0,6,111,1,53,52,7.0,0.0,0.0,2455.752499524643,0.0,0.0,52816.0,60,50,2,9490,201109978,,,,605.0,3.0,2.0,4.0,3.0,6.0,3.1,1264.3927638796843,0.0,1800.0,0.0,0.0,72735.0,1,1,3,90.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2455.752499524643,0.046496374195786186,0.03376300954869929,23462.90322580645,7,4,7,7_0,7_4,7_0_0 -9979,2,62.0,4,0.0,8,112,4,0,75,4.0,0.0,0.0,275.7088136735928,0.0,569.8832389502005,19925.0,0,41,1,9491,201109979,,,,710.0,0.0,1.0,3.0,0.0,1.0,1.0,3231.9428984241636,530.0,0.0,0.0,0.0,16679.0,0,5,3,67.0,8,0.0,1,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,845.5920526237933,0.04243874793594948,0.050698006632519534,16679.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -9980,2,30.0,2,0.0,5,120,1,0,42,6.0,0.0,0.0,163.71683330164288,0.0,0.0,17059.0,0,10,2,9492,201109980,,,,400.0,1.0,0.0,2.0,0.0,1.0,1.0,5309.685253613396,0.0,120.0,0.0,0.0,20464.0,0,1,3,50.0,0,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,163.71683330164288,0.009597094396016349,0.008000236185576763,20464.0,6,3,6,6_0,6_1,6_0_0 -9981,2,63.0,2,0.0,7,111,4,38,34,10.0,0.0,0.0,2469.3955689664467,0.0,0.0,137462.0,10,10,2,9494,201109981,,,,,3.0,1.0,5.0,1.0,3.0,2.0,1499.391333332774,0.0,1810.0,0.0,0.0,133374.0,1,1,1,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2469.3955689664467,0.017964205154635076,0.018514819747225447,66687.0,10,5,10,10_0,10_4,10_0_0 -9982,1,59.0,4,139.0,2,111,6,0,78,1.0,0.0,0.0,736.7257498573929,0.0,0.0,8297.0,0,71,2,9495,201109982,,,120.0,,0.0,2.0,2.0,0.0,1.0,1.0,3454.5625178048235,0.0,540.0,0.0,0.0,4888.0,0,7,3,40.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,736.7257498573929,0.0887942328380611,0.15072130725396746,4888.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -9983,2,30.0,3,0.0,8,300,2,43,47,6.0,2062.392811880547,0.0,620.7596596020626,97.32297796537989,0.0,40940.0,10,31,1,9497,201109983,,,271.0,,2.0,0.0,5.0,3.0,5.0,2.4,1246.9428415626523,0.0,455.0,0.0,0.0,48900.0,1,1,2,140.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2780.4754494479894,0.06791586344523667,0.056860438639018185,20375.0,6,3,6,6_1,6_0,6_0_0 -9984,2,30.0,3,0.0,8,111,6,52,63,5.0,0.0,0.0,1137.831991446418,0.0,0.0,51844.0,50,42,2,950,201109984,,,227.0,657.0,2.0,0.0,3.0,1.0,3.0,1.8,2344.6985124822904,0.0,834.0,0.0,0.0,33725.0,1,1,3,66.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1137.831991446418,0.021947226129280496,0.03373853199248089,18736.11111111111,5,3,5,5_0,5_3,5_0_0 -9985,2,63.0,2,0.0,5,112,4,77,74,10.0,0.0,0.0,1914.1226426850412,156.41192887293198,0.0,20307.0,60,60,1,9500,201109985,,,431.0,,0.0,2.0,10.0,0.0,2.0,1.5,1658.038719933364,0.0,1403.0,0.0,0.0,62093.0,5,5,1,240.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2070.5345715579733,0.10196161774550516,0.033345700345577975,41395.333333333336,10,5,10,10_1,10_1,10_0_0 -9986,2,58.0,3,0.0,6,300,5,47,43,7.0,0.0,485.77421184720396,877.2493651079698,260.6865481215533,0.0,37225.0,31,50,1,9501,201109986,,,355.0,,2.0,2.0,4.0,0.0,2.0,1.5,1937.1535767945352,0.0,643.0,0.0,0.0,33052.0,4,1,1,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1623.7101250767269,0.0436188079268429,0.049125926572574335,22034.666666666668,7,4,7,7_1,7_0,7_0_0 -9987,2,58.0,3,0.0,1,120,2,52,75,8.0,5552.596031986088,0.0,750.3688192991965,0.0,0.0,74832.0,50,43,1,9502,201109987,,,650.0,,2.0,1.0,5.0,1.0,3.0,2.0,1036.1800290344552,0.0,550.0,0.0,0.0,54757.0,1,5,1,116.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6302.964851285285,0.0842282025241245,0.11510792869012701,27378.5,8,4,8,8_1,8_0,8_1_0 -9988,2,63.0,2,0.0,5,212,2,0,71,5.0,380.74944219333173,0.0,654.8673332065715,53.87521994512101,0.0,24486.0,0,44,1,9504,201109988,,,120.0,,0.0,2.0,7.0,0.0,1.0,1.0,1453.2420533688376,0.0,480.0,0.0,0.0,18664.0,0,5,1,110.0,2,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1089.4919953450242,0.0444944864553224,0.05837398174801887,18664.0,5,3,5,5_1,5_0,5_0_0 -9989,2,52.0,3,0.0,2,111,2,0,37,8.0,0.0,0.0,368.36287492869644,0.0,1661.4422666946996,26504.0,0,31,1,9505,201109989,,,197.0,,1.0,2.0,7.0,0.0,1.0,1.0,4419.102764584493,0.0,270.0,956.0,0.0,28040.0,0,1,2,350.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2029.8051416233961,0.07658486045968141,0.07238962701937932,28040.0,8,4,8,8_1,8_2,8_0_1 -9990,2,48.0,3,0.0,1,112,2,85,62,4.0,0.0,0.0,749.0045123550161,0.0,3256.8439411986055,31708.0,42,43,1,9506,201109990,,,778.0,,2.0,0.0,10.0,3.0,5.0,2.8,1235.8091227133023,0.0,549.0,1874.0,0.0,43127.0,6,1,2,156.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4005.8484535536218,0.12633557630735529,0.09288493179571085,15402.500000000002,4,2,4_0,4_1_0,4_0_0,4_1_0 -9991,2,48.0,3,0.0,8,112,2,0,45,8.0,0.0,0.0,616.6667387695214,3161.258873554036,0.0,42887.0,0,31,1,9507,201109991,,,304.0,,2.0,1.0,5.0,1.0,2.0,1.5,2176.0538375408096,0.0,452.0,0.0,0.0,40097.0,0,1,2,100.0,6,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3777.9256123235577,0.08809022809530995,0.09421965763831602,26731.333333333332,8,4,8,8_1,8_0,8_0_0 -9992,2,46.0,1,0.0,3,111,1,52,47,8.0,0.0,0.0,818.5841665082144,0.0,111.22626053186274,35364.0,50,50,2,9508,201109992,,,,380.0,2.0,0.0,4.0,1.0,3.0,2.0,5070.8178041521705,0.0,600.0,64.0,0.0,51343.0,1,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,929.8104270400771,0.026292569478567954,0.018109779853925114,25671.5,8,4,8,8_0,8_4,8_0_1 -9993,1,35.0,4,331.0,5,111,4,0,67,4.0,0.0,0.0,2046.460416270536,86.89551604051776,0.0,20817.0,0,71,8,9509,201109993,,,,,1.0,0.0,3.0,2.0,3.0,1.6,2861.544652211766,0.0,1500.0,0.0,0.0,23696.0,0,4,3,66.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2133.3559323110535,0.10248143019220125,0.09003021321366701,14810.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -9994,2,45.0,2,0.0,5,111,1,67,64,9.0,0.0,0.0,2283.849824557918,104.27461924862132,0.0,32467.0,50,71,2,951,201109994,1034.0,1034.0,,,2.0,1.0,4.0,0.0,2.0,1.5,3477.0465417284154,0.0,1674.0,0.0,0.0,44482.0,1,1,2,83.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2388.1244438065396,0.07355543917844394,0.0536874341038294,29654.666666666668,9,5,9,9_0,9_3,9_0_0 -9995,2,46.0,3,0.0,99,112,2,52,62,5.0,0.0,0.0,2387.537152315625,0.0,0.0,41064.0,50,50,1,9510,201109995,,,420.0,,2.0,1.0,4.0,2.0,4.0,2.3,4391.2420108532015,0.0,1750.0,0.0,0.0,41735.0,1,1,3,90.0,9,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2387.537152315625,0.05814185545284495,0.05720707205740086,18145.652173913044,5,3,5,5_1,5_1,5_0_0 -9996,2,69.0,2,0.0,2,111,1,0,74,10.0,0.0,0.0,556.9523531570203,0.0,573.1089931329375,50578.0,0,30,2,9513,201109996,,,,783.0,0.0,1.0,2.0,0.0,1.0,1.0,3966.623143313943,533.0,205.0,0.0,0.0,48640.0,0,5,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1130.0613462899578,0.022342942510379174,0.023233169126027093,48640.0,10,5,10,10_0,10_4,10_0_1 -9997,2,33.0,2,0.0,9,111,2,56,22,10.0,0.0,0.0,1500.737638598393,0.0,0.0,45773.0,50,50,1,9514,201109997,,,569.0,,2.0,0.0,6.0,1.0,3.0,1.8,2278.453384400088,0.0,1100.0,0.0,0.0,88130.0,4,1,2,180.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1500.737638598393,0.03278652565045754,0.017028680796532317,48961.11111111111,10,5,10,10_1,10_3,10_0_0 -9998,0,49.0,2,0.0,1,111,2,56,47,2.0,0.0,0.0,1200.5901108787143,119.9158121359145,0.0,29220.0,50,50,2,9515,201109998,,,325.0,,2.0,0.0,3.0,1.0,3.0,1.8,3443.2587347760004,0.0,880.0,0.0,0.0,20528.0,1,1,5,83.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1320.505923014629,0.04519185225922755,0.06432706172128941,11404.444444444443,2,1,2_0,2_0_0,2_2_0,2_1_0 -9999,0,43.0,3,0.0,2,111,1,0,55,7.0,0.0,0.0,312.12318529085974,0.0,645.1508365473968,35636.0,0,71,2,9516,201109999,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3490.826210642764,600.0,0.0,0.0,0.0,32446.0,0,1,5,55.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,957.2740218382565,0.026862555332760593,0.029503606664558236,21630.666666666668,6,3,6,6_0,6_4,6_0_1 -10000,2,58.0,2,0.0,5,111,1,77,54,10.0,0.0,0.0,1282.4485275295358,0.0,1147.0208117348345,30584.0,70,50,1,9517,201110000,,,220.0,,1.0,2.0,8.0,0.0,2.0,1.5,4110.50883406967,0.0,940.0,660.0,0.0,109620.0,5,1,1,160.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2429.4693392643703,0.07943595799321117,0.022162646773073984,73080.0,10,5,10,10_1,10_2,10_0_0 -10001,2,68.0,4,0.0,2,111,2,86,22,2.0,0.0,0.0,384.7345582588608,0.0,564.8208542633655,16124.0,71,71,1,9519,201110001,,,240.0,,1.0,4.0,5.0,0.0,2.0,1.5,3361.681431082472,0.0,282.0,325.0,0.0,14473.0,6,1,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,949.5554125222263,0.058890809508944826,0.0656087481878136,9648.666666666666,1,1,1_0,1_1_0,1_3_0,1_0_1 -10002,2,64.0,1,0.0,5,112,2,0,77,6.0,3490.203220105541,0.0,694.4322345878019,312.82385774586396,0.0,17862.0,0,70,1,9520,201110002,,,148.0,,0.0,0.0,4.0,1.0,2.0,1.5,2706.5051826469617,0.0,509.0,0.0,0.0,31736.0,0,5,1,120.0,4,0.0,2,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4497.459312439207,0.25178923482472326,0.14171475020289914,21157.333333333332,6,3,6,6_1,6_0,6_0_0 -10003,2,39.0,1,0.0,1,112,5,37,43,10.0,0.0,1387.9263195634398,989.122534530759,0.0,0.0,36870.0,10,10,1,9522,201110003,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1698.9016784450907,0.0,725.0,0.0,0.0,78222.0,1,1,2,180.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2377.0488540941988,0.06447108364779493,0.030388494977042248,43456.666666666664,10,5,10,10_1,10_0,10_1_0 -10004,2,32.0,3,0.0,9,120,2,67,48,7.0,0.0,0.0,886.7995137172322,0.0,0.0,12198.0,50,50,1,9523,201110004,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2306.7883127189584,0.0,650.0,0.0,0.0,43580.0,1,1,2,90.0,0,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,886.7995137172322,0.07270040282974523,0.020348772687407805,24211.11111111111,7,4,7,7_1,7_1,7_0_0 -10005,1,60.0,3,179.0,99,111,1,85,78,3.0,1269.1648073111057,0.0,545.7227776721429,0.0,903.7133668213847,23889.0,71,60,2,9525,201110005,800.0,800.0,,117.0,1.0,2.0,5.0,2.0,4.0,2.5,2721.1813676479896,0.0,400.0,520.0,0.0,34598.0,6,5,3,118.0,7,6.0,4,2,1,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2718.6009518046335,0.11380137099939862,0.07857682385700426,13839.2,3,2,3_1,3_0_1,3_2_1,3_0_0 -10006,2,68.0,3,0.0,5,111,2,0,72,2.0,0.0,0.0,1499.3733316542125,50.3993993035003,0.0,16680.0,0,71,1,9526,201110006,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3212.7545069308776,0.0,1099.0,0.0,0.0,9840.0,0,5,5,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1549.7727309577128,0.09291203423007871,0.15749722875586514,9840.0,1,1,1_0,1_1_0,1_3_0,1_0_0 -10007,2,51.0,3,0.0,8,120,4,22,46,5.0,0.0,0.0,1637.1683330164287,0.0,0.0,53157.0,41,41,1,9528,201110007,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2971.3585892202013,0.0,1200.0,0.0,0.0,32536.0,1,1,1,110.0,0,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1637.1683330164287,0.03079873456019769,0.05031867264004268,18075.555555555555,5,3,5,5_1,5_1,5_0_0 -10008,1,43.0,4,213.0,4,211,1,81,68,2.0,0.0,0.0,825.4057012291162,0.0,941.9473938792125,5505.0,71,50,2,9529,201110008,,,350.0,,2.0,0.0,4.0,0.0,2.0,1.5,3243.2775823805855,0.0,605.0,542.0,0.0,18124.0,4,1,3,80.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1767.3530951083287,0.32104506723130405,0.0975145163930881,12082.666666666666,2,1,2_1,2_0_1,2_1_1,2_0_1 -10009,2,40.0,3,0.0,8,112,2,85,45,5.0,0.0,277.585263912688,1858.1860579736465,52.13730962431066,0.0,42732.0,42,60,1,953,201110009,,,450.0,,1.0,2.0,5.0,4.0,6.0,2.7,2505.927581616439,0.0,1362.0,0.0,0.0,45743.0,4,1,2,127.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2187.908631510645,0.0512007074677208,0.04783045780798472,16941.85185185185,4,2,4_0,4_1_0,4_0_0,4_0_0 -10010,2,46.0,3,0.0,2,221,4,0,62,9.0,0.0,0.0,193.73158607361074,0.0,0.0,41497.0,0,50,1,9530,201110010,,,107.0,,1.0,2.0,5.0,0.0,1.0,1.0,3243.853953527018,0.0,142.0,0.0,0.0,32011.0,0,1,3,109.0,1,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,193.73158607361074,0.004668568476603387,0.00605203167891071,32011.0,9,5,9,9_1,9_1,9_0_1 -10011,1,23.0,3,320.0,1,111,4,84,84,1.0,0.0,0.0,818.5841665082144,0.0,0.0,36337.0,20,20,2,9535,201110011,,,,485.0,0.0,0.0,2.0,0.0,2.0,1.5,4087.9011482326614,0.0,600.0,0.0,0.0,11640.0,3,3,3,38.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,818.5841665082144,0.02252756602108634,0.07032510021548233,7760.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -10012,1,26.0,4,350.0,1,111,7,22,56,1.0,0.0,0.0,682.1534720901786,0.0,434.4775802025888,11755.0,30,41,1,9537,201110012,,,300.0,,2.0,0.0,2.0,1.0,3.0,1.8,4821.718755963107,0.0,500.0,250.0,0.0,12540.0,1,1,3,90.0,5,4.0,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1116.6310522927674,0.09499200785136261,0.08904553846034828,6966.666666666666,1,1,1_1,1_1_1,1_2_1,1_1_0 -10013,2,47.0,1,0.0,1,111,7,46,54,7.0,0.0,0.0,2210.177249572179,0.0,0.0,31847.0,50,42,1,9538,201110013,,,,,2.0,1.0,6.0,1.0,3.0,2.0,2064.4122123975517,0.0,1620.0,0.0,0.0,44418.0,1,1,1,180.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2210.177249572179,0.0693998571159663,0.049758594479089084,22209.0,7,4,7,7_1,7_3,7_1_0 -10014,2,30.0,2,0.0,9,112,4,42,47,9.0,0.0,0.0,245.5752499524643,0.0,0.0,66170.0,20,31,1,9539,201110014,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1880.2471223345592,0.0,180.0,0.0,0.0,56919.0,1,1,2,90.0,7,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,245.5752499524643,0.0037112777686635076,0.004314468805714512,31621.666666666664,9,5,9,9_1,9_1,9_0_0 -10015,2,74.0,1,0.0,1,111,2,75,74,10.0,0.0,0.0,615.3024318253412,0.0,3913.77404246492,44264.0,41,20,1,9541,201110015,,,310.0,,0.0,3.0,9.0,0.0,2.0,1.5,1372.4384317194563,0.0,451.0,2252.0,0.0,62081.0,5,5,1,267.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4529.076474290261,0.10231963840344888,0.07295430927804418,41387.333333333336,10,5,10,10_1,10_2,10_1_0 -10016,2,49.0,4,0.0,2,400,2,68,48,4.0,0.0,0.0,81.85841665082144,0.0,208.54923849724264,17826.0,50,60,1,9542,201110016,,,400.0,,2.0,1.0,6.0,2.0,4.0,2.1,2695.678739180564,0.0,60.0,120.0,0.0,31015.0,6,1,2,90.0,0,1.0,4,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,290.40765514806407,0.016291240611918775,0.009363458170177787,14769.047619047618,3,2,3_0,3_1_0,3_1_0,3_0_1 -10017,0,47.0,3,0.0,2,111,1,46,62,10.0,0.0,0.0,532.0797082303393,0.0,921.0924700294883,49941.0,50,50,2,9545,201110017,530.0,530.0,,,3.0,0.0,3.0,2.0,4.0,2.3,2668.1483531345443,0.0,390.0,530.0,0.0,101274.0,1,1,5,70.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1453.1721782598274,0.029097778944350883,0.014348916585301533,44032.17391304348,10,5,10,10_0,10_2,10_0_1 -10018,2,47.0,2,0.0,6,111,2,0,43,9.0,7932.280045694411,166.55115834761278,3605.179005814373,0.0,1558.0392702619633,91111.0,0,10,1,9547,201110018,,,,,1.0,0.0,10.0,3.0,4.0,2.5,1073.1949173536864,1449.0,2090.0,0.0,0.0,72614.0,0,1,1,240.0,9,7.0,2,7,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,13262.04948011836,0.1455592571711249,0.18263763847355,29045.6,8,4,8,8_1,8_3,8_0_0 -10019,2,39.0,1,0.0,8,120,4,85,62,2.0,0.0,0.0,1616.7037288537233,43.44775802025888,0.0,27749.0,41,71,1,9548,201110019,,,164.0,,1.0,0.0,4.0,1.0,3.0,1.8,3008.6103766298384,0.0,1185.0,0.0,0.0,20013.0,7,1,2,88.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1660.151486873982,0.05982743474986422,0.08295365446829471,11118.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0 -10020,1,39.0,5,284.0,1,112,4,56,47,2.0,0.0,0.0,2728.6138883607146,156.41192887293198,0.0,53597.0,50,43,1,9549,201110020,,,550.0,,2.0,1.0,5.0,3.0,5.0,2.4,1667.2173385270871,0.0,2000.0,0.0,0.0,25709.0,1,4,3,114.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2885.0258172336466,0.0538281212984616,0.11221851558729032,10712.083333333334,2,1,2_1,2_1_1,2_1_1,2_1_0 -10021,2,65.0,3,0.0,1,111,5,0,74,7.0,0.0,0.0,422.93515269591074,0.0,227.66625202615654,7954.0,0,50,2,955,201110021,,,,323.0,0.0,0.0,3.0,0.0,1.0,1.0,2683.1367237560535,0.0,310.0,131.0,0.0,22528.0,0,5,3,51.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,650.6014047220673,0.08179549971361168,0.0288796788317679,22528.0,7,4,7,7_0,7_4,7_1_0 -10022,2,73.0,3,0.0,8,112,6,77,75,7.0,1978.3106433961862,0.0,1132.3747636696964,0.0,0.0,45901.0,60,50,1,9550,201110022,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2036.5332818314043,0.0,830.0,0.0,0.0,35310.0,5,5,1,105.0,9,0.0,3,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3110.685407065883,0.06776944744266754,0.08809644313412299,23540.0,7,4,7,7_1,7_0,7_0_0 -10023,2,53.0,4,0.0,1,400,5,68,64,1.0,0.0,69.396315978172,818.5841665082144,243.30744491344973,0.0,16087.0,50,71,1,9552,201110023,,,300.0,,2.0,3.0,5.0,0.0,2.0,1.5,2139.5610713157707,0.0,600.0,0.0,0.0,8550.0,1,4,2,121.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1131.287927399836,0.07032311353265594,0.13231437747366503,5700.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -10024,2,43.0,2,0.0,99,111,2,46,37,9.0,0.0,0.0,824.0413942849358,0.0,1810.9025542843901,43762.0,10,50,1,9553,201110024,,,462.0,,2.0,0.0,4.0,2.0,4.0,2.3,1787.607350429935,0.0,604.0,1042.0,0.0,69797.0,1,1,1,68.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2634.943948569326,0.060210775297502996,0.037751535862133416,30346.521739130436,9,5,9,9_1,9_3,9_0_0 -10025,2,52.0,3,0.0,2,221,1,85,47,5.0,0.0,0.0,409.2920832541072,118.17790181510415,0.0,30719.0,60,50,2,9557,201110025,,,,239.0,1.0,1.0,3.0,0.0,2.0,1.5,5037.905773004378,0.0,300.0,0.0,0.0,28405.0,6,1,3,75.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,527.4699850692114,0.01717080585530816,0.018569617499356147,18936.666666666668,5,3,5,5_0,5_1,5_0_1 -10026,1,72.0,4,180.0,1,111,2,81,86,2.0,0.0,0.0,286.504458277875,0.0,1442.4655662725947,13685.0,71,71,2,9560,201110026,,,,63.0,2.0,1.0,2.0,1.0,3.0,2.0,3495.2484220380957,0.0,210.0,830.0,0.0,20780.0,4,5,3,45.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1728.9700245504698,0.12634052061019144,0.0832035622979052,10390.0,2,1,2_1,2_0_1,2_3_1,2_1_0 -10027,1,45.0,5,168.0,4,111,1,0,54,1.0,0.0,0.0,409.2920832541072,0.0,225.92834170534618,19242.0,0,43,8,9561,201110027,,,,120.0,1.0,0.0,4.0,2.0,3.0,2.0,3033.230013614267,0.0,300.0,130.0,0.0,18326.0,0,1,3,75.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,635.2204249594533,0.033012182983029485,0.03466225171665684,9163.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -10028,2,32.0,2,0.0,7,112,5,63,43,9.0,0.0,0.0,1725.848284388152,0.0,0.0,101341.0,71,33,1,9562,201110028,,,179.0,,2.0,0.0,6.0,2.0,4.0,2.1,3045.059578166122,0.0,1265.0,0.0,0.0,62359.0,1,1,2,110.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1725.848284388152,0.017030109081103917,0.027676009627931045,29694.761904761905,9,5,9,9_1,9_0,9_0_0 -10029,2,58.0,4,0.0,6,111,4,0,46,7.0,0.0,0.0,1923.6727912943038,0.0,0.0,24873.0,0,50,8,9563,201110029,,,324.0,510.0,1.0,4.0,2.0,0.0,1.0,1.0,5521.840682582542,0.0,1410.0,0.0,0.0,21850.0,0,1,3,70.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1923.6727912943038,0.07733979782472174,0.0880399446816615,21850.0,7,4,7,7_0,7_2,7_0_0 -10030,2,39.0,1,0.0,7,111,4,0,38,9.0,0.0,0.0,313.79059716148214,0.0,0.0,25600.0,0,12,2,9564,201110030,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4024.0198757661997,0.0,230.0,0.0,0.0,37047.0,0,1,2,50.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,313.79059716148214,0.012257445201620396,0.008470067675155402,37047.0,9,5,9,9_0,9_3,9_0_0 -10031,2,43.0,2,0.0,1,300,6,52,21,6.0,0.0,0.0,1227.8762497623215,0.0,0.0,21294.0,50,41,1,9565,201110031,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2655.2050396849827,0.0,900.0,0.0,0.0,47540.0,1,1,2,94.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1227.8762497623215,0.05766301539223826,0.025828276183473317,20669.565217391308,6,3,6,6_1,6_0,6_1_0 -10032,2,60.0,1,0.0,4,111,2,0,34,10.0,0.0,0.0,197.8245069061518,0.0,1251.2954309834558,32052.0,0,20,2,9566,201110032,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2744.7312950668406,0.0,145.0,720.0,0.0,46989.0,0,1,1,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1449.1199378896076,0.0452115293238989,0.030839556872663976,46989.0,10,5,10,10_0,10_4,10_0_1 -10033,2,48.0,2,0.0,8,111,6,43,21,8.0,0.0,0.0,1972.7878412847965,0.0,0.0,32223.0,20,50,1,9567,201110033,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1813.5182091250701,0.0,1446.0,0.0,0.0,47414.0,1,1,2,160.0,5,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1972.7878412847965,0.061222972450882804,0.04160770745528317,26341.11111111111,8,4,8,8_1,8_2,8_0_0 -10034,2,49.0,3,0.0,8,112,2,55,48,5.0,0.0,0.0,436.97245940720364,0.0,903.2111711663555,70733.0,41,50,1,9569,201110034,,,530.0,,2.0,0.0,5.0,2.0,4.0,2.3,1695.8430424079843,840.0,0.0,0.0,0.0,40139.0,1,1,2,140.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1340.1836305735592,0.018947077468417277,0.03338856549922916,17451.739130434784,5,3,5,5_1,5_1,5_0_0 -10035,2,50.0,1,0.0,5,112,2,43,47,10.0,1586.456009138882,377.5159589212557,1773.5990274344645,93.84715732375918,0.0,86838.0,71,50,1,957,201110035,,,190.0,,2.0,2.0,4.0,0.0,2.0,1.5,2965.2853194268487,0.0,1300.0,0.0,0.0,66947.0,1,1,2,100.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3831.4181528183617,0.04412144628870266,0.05723061754549661,44631.333333333336,10,5,10,10_1,10_0,10_0_0 -10036,2,78.0,3,0.0,2,111,2,0,72,6.0,0.0,0.0,338.3481221567286,0.0,1774.4064375473727,11680.0,0,50,1,9570,201110036,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2750.397769375285,0.0,248.0,1021.0,0.0,19045.0,0,5,5,74.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2112.754559704101,0.1808865205226114,0.11093486792880553,19045.0,5,3,5,5_1,5_4,5_0_1 -10037,2,42.0,1,0.0,5,111,2,0,21,7.0,0.0,0.0,1814.528235759875,43.44775802025888,0.0,65736.0,0,50,1,9571,201110037,,,215.0,,1.0,2.0,5.0,0.0,1.0,1.0,2532.888045715898,0.0,1330.0,0.0,0.0,23339.0,0,1,2,95.0,4,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1857.9759937801339,0.028264208253926826,0.07960820916835057,23339.0,7,4,7,7_1,7_2,7_0_0 -10038,2,42.0,4,0.0,6,111,2,52,65,5.0,0.0,0.0,511.615104067634,0.0,1435.5139249893534,25075.0,41,41,2,9573,201110038,,,,356.0,2.0,0.0,3.0,2.0,4.0,2.1,3372.7278674850904,0.0,375.0,826.0,0.0,35838.0,2,1,3,63.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1947.1290290569873,0.07765220454863359,0.0543314088134658,17065.714285714286,5,3,5,5_0,5_4,5_0_0 -10039,2,23.0,3,0.0,1,111,2,0,35,9.0,0.0,0.0,327.43366660328576,0.0,0.0,24843.0,0,41,2,9574,201110039,,,,500.0,1.0,0.0,1.0,0.0,1.0,1.0,3887.5105520394945,0.0,240.0,0.0,0.0,30633.0,0,1,3,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,327.43366660328576,0.013180117803940175,0.010688919355051276,30633.0,9,5,9,9_0,9_4,9_1_0 -10040,2,88.0,2,0.0,1,111,2,0,77,5.0,0.0,0.0,756.2197445770934,0.0,1820.8285081333102,12653.0,0,60,2,9575,201110040,,,153.0,311.0,0.0,3.0,3.0,0.0,1.0,1.0,2710.6493966388093,562.0,340.0,700.0,0.0,18374.0,0,5,3,41.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2577.0482527104036,0.2036709280574096,0.14025515689073711,18374.0,5,3,5,5_0,5_3,5_1_0 -10041,2,39.0,3,0.0,2,111,4,0,21,2.0,0.0,0.0,998.6726831400215,0.0,0.0,13443.0,0,50,8,9576,201110041,,,100.0,,1.0,0.0,1.0,0.0,1.0,1.0,3972.723575313286,0.0,732.0,0.0,0.0,9881.0,0,1,1,33.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,998.6726831400215,0.07428942074983423,0.10107000132982709,9881.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -10042,2,74.0,3,0.0,1,111,2,77,74,10.0,7932.280045694411,0.0,949.5576331495287,0.0,0.0,27644.0,41,10,1,9577,201110042,,,254.0,,0.0,2.0,10.0,0.0,2.0,1.5,2625.0061434305067,0.0,696.0,0.0,0.0,71060.0,5,5,1,150.0,8,6.0,3,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,8881.83767884394,0.32129350596310013,0.12499067940956854,47373.333333333336,10,5,10,10_1,10_2,10_1_0 -10043,2,63.0,4,0.0,4,400,1,0,75,7.0,0.0,0.0,392.9203999239429,0.0,0.0,16113.0,0,33,2,9578,201110043,0.0,,,461.0,0.0,1.0,3.0,0.0,1.0,1.0,6906.1226156151215,0.0,288.0,0.0,0.0,23295.0,0,5,3,75.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,392.9203999239429,0.024385303787248985,0.01686715603880416,23295.0,7,4,7,7_0,7_1,7_0_1 -10044,2,62.0,4,0.0,9,221,5,0,77,2.0,0.0,727.2733914512426,474.77881657476433,0.0,0.0,14420.0,0,70,1,958,201110044,,,122.0,,0.0,3.0,3.0,0.0,1.0,1.0,2273.281311832342,0.0,348.0,0.0,0.0,10903.0,0,5,1,85.0,1,2.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1202.0522080260068,0.08336006990471614,0.11024967513766916,10903.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -10045,2,81.0,1,0.0,9,221,4,72,72,3.0,0.0,138.792631956344,2182.8911106885716,0.0,0.0,53189.0,71,50,1,9580,201110045,,,850.0,,0.0,2.0,3.0,0.0,2.0,1.5,2522.9897209030173,0.0,1600.0,0.0,0.0,19827.0,5,5,1,118.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2321.6837426449156,0.043649697167551856,0.11709707684697208,13218.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -10046,1,33.0,4,300.0,1,300,5,67,47,4.0,0.0,0.0,818.5841665082144,2259.283417053462,0.0,29878.0,60,50,1,9581,201110046,,,,,2.0,0.0,5.0,5.0,7.0,3.0,1122.4132012020339,0.0,600.0,0.0,0.0,45911.0,1,1,3,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3077.8675835616764,0.10301451180004272,0.06703987243932122,15303.666666666666,4,2,4_1,4_1_1,4_0_1,4_1_0 -10047,2,45.0,3,0.0,2,111,4,0,63,5.0,0.0,0.0,933.1859498193644,0.0,0.0,16224.0,0,50,8,9582,201110047,,,,681.0,1.0,1.0,2.0,0.0,1.0,1.0,2599.9978880559943,0.0,684.0,0.0,0.0,17480.0,0,1,3,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,933.1859498193644,0.05751885785375767,0.05338592390270963,17480.0,5,3,5,5_0,5_3,5_0_1 -10048,2,38.0,3,0.0,8,221,2,63,34,7.0,0.0,0.0,853.1367064616834,0.0,1763.4122865628847,44172.0,50,33,1,9583,201110048,,,,650.0,2.0,2.0,4.0,3.0,5.0,2.4,1231.5871235439763,1640.0,0.0,0.0,0.0,52479.0,1,1,3,75.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2616.548993024568,0.059235465748088564,0.04985897202737415,21866.25,7,4,7,7_1,7_1,7_0_0 -10049,2,65.0,3,0.0,7,300,4,77,78,4.0,0.0,0.0,165.08114024582324,86.89551604051776,0.0,9027.0,50,50,1,9584,201110049,,,63.0,,0.0,1.0,3.0,0.0,2.0,1.5,1214.7642979187651,0.0,121.0,0.0,0.0,23649.0,5,5,1,70.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,251.97665628634098,0.0279136652582631,0.010654854593697027,15766.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -10050,2,57.0,2,0.0,7,120,6,56,68,7.0,2379.684013708323,138.792631956344,1571.6815996957716,0.0,0.0,23688.0,50,50,1,9585,201110050,,,300.0,,2.0,1.0,4.0,0.0,2.0,1.5,2247.72755854121,0.0,1152.0,0.0,0.0,36568.0,1,1,1,100.0,0,2.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4090.1582453604387,0.1726679434887048,0.11185075052943663,24378.666666666668,7,4,7,7_1,7_1,7_0_0 -10051,1,57.0,4,216.0,5,111,1,0,77,2.0,0.0,0.0,818.5841665082144,0.0,0.0,6066.0,0,60,2,9586,201110051,0.0,,,,0.0,0.0,1.0,0.0,1.0,1.0,3507.657053785123,0.0,600.0,0.0,0.0,11840.0,0,7,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,818.5841665082144,0.1349462852799562,0.06913717622535594,11840.0,2,1,2_1,2_0_1,2_4_1,2_0_0 -10052,2,45.0,3,0.0,1,111,1,0,54,6.0,0.0,0.0,341.0767360450893,0.0,0.0,11863.0,0,20,2,9589,201110052,,,,450.0,1.0,0.0,1.0,0.0,1.0,1.0,3078.2569203330663,0.0,250.0,0.0,0.0,20822.0,0,1,3,17.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,341.0767360450893,0.028751305407155807,0.016380594373503473,20822.0,6,3,6,6_0,6_4,6_1_0 -10053,1,68.0,3,5.0,3,221,2,78,78,3.0,0.0,0.0,736.7257498573929,0.0,2311.4207266777726,21674.0,71,70,1,959,201110053,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2873.0486761245834,0.0,540.0,1330.0,0.0,20792.0,5,5,3,90.0,1,2.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,3048.1464765351657,0.1406360836271646,0.14660188902150662,13861.333333333334,3,2,3_1,3_1_1,3_1_1,3_0_1 -10054,2,80.0,3,0.0,5,111,2,77,75,9.0,0.0,0.0,122.78762497623215,0.0,0.0,38744.0,60,50,8,9591,201110054,,,,483.0,0.0,1.0,3.0,0.0,2.0,1.5,2630.884284128182,0.0,90.0,0.0,0.0,43649.0,5,5,3,79.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,122.78762497623215,0.0031692036180113606,0.0028130684546319997,29099.333333333332,9,5,9,9_0,9_3,9_0_0 -10055,2,54.0,1,0.0,1,111,2,54,21,4.0,0.0,277.585263912688,1534.8453122029018,0.0,1737.9103208103552,45741.0,60,41,1,9593,201110055,,,210.0,,2.0,2.0,5.0,0.0,2.0,1.5,3406.4656365410397,0.0,1125.0,1000.0,0.0,23217.0,1,1,1,120.0,8,6.0,3,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3550.340896925945,0.077618348897618,0.15291988185062433,15478.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -10056,2,85.0,1,0.0,4,111,1,0,77,7.0,0.0,0.0,245.5752499524643,0.0,102.53670892781096,17878.0,0,70,2,9594,201110056,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3522.0556172911874,0.0,180.0,59.0,0.0,23194.0,0,5,1,85.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,348.11195888027527,0.01947152695381336,0.015008707376057397,23194.0,7,4,7,7_0,7_3,7_0_1 -10057,2,53.0,1,0.0,7,112,5,46,53,9.0,0.0,874.3935813249672,1598.9677385793786,86.89551604051776,0.0,43112.0,31,50,1,9595,201110057,,,939.0,,2.0,1.0,5.0,1.0,3.0,2.0,1965.1601759972812,0.0,1172.0,0.0,0.0,65244.0,1,1,1,120.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2560.2568359448633,0.059386176376527725,0.03924126104997951,32622.0,9,5,9,9_1,9_0,9_0_0 -10058,0,39.0,2,0.0,7,111,2,0,33,8.0,0.0,0.0,0.0,52.13730962431066,0.0,32167.0,0,20,2,9596,201110058,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2404.2340229733913,0.0,0.0,0.0,0.0,27667.0,0,1,5,95.0,7,5.0,1,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,52.13730962431066,0.0016208322076758995,0.0018844583664405486,27667.0,8,4,8,8_0,8_2,8_0_0 -10059,2,56.0,3,0.0,4,111,1,46,54,10.0,0.0,0.0,1245.0265516997272,0.0,1872.4754894148805,31821.0,70,42,2,96,201110059,,,,478.0,2.0,1.0,3.0,0.0,2.0,1.5,3653.0506970917563,1659.0,280.0,51.0,0.0,76054.0,1,1,3,51.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3117.502041114608,0.0979699582387294,0.04099063877132837,50702.666666666664,10,5,10,10_0,10_4,10_0_1 -10060,2,26.0,1,0.0,1,400,5,43,43,6.0,0.0,55.5170527825376,286.504458277875,45.18566834106924,0.0,30393.0,10,10,1,9601,201110060,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2710.272854336774,0.0,210.0,0.0,0.0,29383.0,1,1,3,80.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,387.2071794014818,0.01274001182514006,0.013177932117261064,19588.666666666668,6,3,6,6_1,6_0,6_1_0 -10061,1,65.0,3,130.0,99,111,1,0,78,2.0,0.0,0.0,682.1534720901786,0.0,260.6865481215533,7020.0,0,71,2,9605,201110061,,,,116.0,0.0,5.0,2.0,0.0,1.0,1.0,3112.2465664145657,0.0,500.0,150.0,0.0,10310.0,0,5,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,942.8400202117319,0.1343076951868564,0.09144908052490125,10310.0,2,1,2_1,2_0_1,2_4_1,2_0_0 -10062,1,36.0,2,163.0,4,111,1,0,67,7.0,0.0,0.0,695.7965415319821,0.0,107.75043989024202,30297.0,0,50,2,9608,201110062,,,250.0,161.0,2.0,0.0,4.0,1.0,3.0,1.8,1407.1627416659596,0.0,510.0,62.0,0.0,39965.0,0,1,3,70.0,8,7.0,5,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,803.5469814222241,0.02652232833027112,0.020106267519635283,22202.777777777777,7,4,7,7_0,7_3,7_0_1 -10063,2,26.0,5,0.0,1,300,2,11,52,5.0,0.0,0.0,1566.22437191905,93.84715732375918,0.0,22643.0,31,42,1,961,201110063,,,,,2.0,0.0,2.0,1.0,3.0,1.8,2294.477944058063,0.0,1148.0,0.0,0.0,32682.0,1,1,3,36.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1660.0715292428092,0.07331499930410322,0.050794673803402766,18156.666666666668,5,3,5,5_1,5_0,5_1_0 -10064,2,26.0,3,0.0,6,111,1,55,42,8.0,0.0,0.0,504.79356934673217,43.44775802025888,0.0,45019.0,43,20,2,9610,201110064,,,250.0,252.0,2.0,0.0,3.0,1.0,3.0,1.8,5405.403899979574,0.0,370.0,0.0,0.0,48810.0,1,1,3,60.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,548.2413273669911,0.012177998786445524,0.011232151759208995,27116.666666666664,8,4,8,8_0,8_2,8_0_0 -10065,0,93.0,4,0.0,1,112,5,0,71,1.0,0.0,0.0,0.0,0.0,0.0,4293.0,0,71,3,9611,201110065,,,,,0.0,2.0,1.0,0.0,1.0,1.0,3745.431679425404,0.0,0.0,0.0,0.0,8350.0,0,5,5,20.0,8,0.0,1,9,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,8350.0,1,1,1_0,1_0_0,1_0_0,1_1_0 -10066,0,58.0,3,0.0,2,111,1,0,56,5.0,0.0,0.0,0.0,0.0,0.0,11042.0,0,71,8,9612,201110066,,,,,1.0,2.0,1.0,0.0,1.0,1.0,8512.853458475114,0.0,0.0,0.0,0.0,17606.0,0,1,5,10.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,17606.0,5,3,5,5_0,5_4,5_0_1 -10067,1,21.0,3,89.0,1,111,2,0,84,1.0,0.0,0.0,409.2920832541072,0.0,1564.1192887293198,35928.0,0,41,2,9613,201110067,,,,671.0,0.0,0.0,4.0,0.0,3.0,2.0,3501.2487045109374,0.0,300.0,900.0,0.0,11868.0,0,3,3,90.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1973.411371983427,0.0549268362275503,0.16628002797298846,5934.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -10068,2,57.0,5,0.0,1,120,6,85,63,4.0,190.37472109666587,0.0,409.2920832541072,0.0,0.0,19481.0,70,71,1,9614,201110068,,,,539.0,1.0,5.0,2.0,0.0,2.0,1.5,3074.645676893529,0.0,300.0,0.0,0.0,24552.0,7,1,3,55.0,0,2.0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,599.6668043507731,0.03078213666396864,0.024424356645111316,16368.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -10069,2,47.0,2,0.0,1,111,2,56,48,6.0,0.0,0.0,218.28911106885715,0.0,493.5665311101409,65029.0,42,71,1,9615,201110069,,,540.0,,2.0,0.0,12.0,5.0,7.0,3.0,1234.3232136901242,0.0,160.0,284.0,0.0,63702.0,1,1,2,320.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,711.8556421789981,0.010946741333543467,0.011174776964286806,21234.0,6,3,6,6_1,6_2,6_1_0 -10070,1,46.0,4,221.0,3,111,1,0,64,1.0,0.0,0.0,384.7345582588608,38.23402705782782,0.0,15458.0,0,71,2,9616,201110070,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3075.674173649823,0.0,282.0,0.0,0.0,7662.0,0,1,3,59.0,7,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,422.9685853166886,0.027362439210550434,0.0552034175563415,7662.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -10071,2,35.0,3,0.0,6,111,1,0,62,4.0,0.0,0.0,1091.4455553442858,0.0,0.0,21231.0,0,43,2,9617,201110071,,,,,1.0,2.0,1.0,1.0,2.0,1.5,8689.650002251725,0.0,800.0,0.0,0.0,22020.0,0,1,3,25.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1091.4455553442858,0.05140810867807855,0.049566101514272744,14680.0,3,2,3_0,3_0_0,3_4_0,3_0_0 -10072,1,48.0,4,26.0,4,111,1,0,67,4.0,0.0,0.0,208.08212352723984,0.0,430.10055769826454,10928.0,0,71,2,9618,201110072,,,,270.0,1.0,0.0,3.0,1.0,2.0,1.5,2972.3298692493368,400.0,0.0,0.0,0.0,22208.0,0,1,3,82.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,638.1826812255044,0.058398854431323616,0.028736612086883304,14805.333333333334,3,2,3_1,3_0_1,3_4_1,3_0_1 -10073,2,53.0,1,0.0,5,112,2,43,47,10.0,0.0,277.585263912688,682.1534720901786,0.0,2606.865481215533,60629.0,31,31,1,962,201110073,,,500.0,,2.0,2.0,5.0,1.0,3.0,2.0,1662.755402749213,0.0,500.0,1500.0,0.0,90527.0,1,1,2,120.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3566.6042172183993,0.05882670367676193,0.03939823718027107,45263.5,10,5,10,10_1,10_1,10_0_0 -10074,2,49.0,3,0.0,1,112,2,85,53,3.0,0.0,0.0,703.9823831970643,90.37133668213848,2586.0105573658084,35868.0,71,71,1,9620,201110074,,,,,1.0,0.0,5.0,3.0,5.0,2.8,1898.5128908703778,0.0,516.0,1488.0,0.0,37205.0,5,1,1,150.0,8,1.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3380.364277245011,0.0942445711287223,0.0908577953835509,13287.5,3,2,3_0,3_1_0,3_1_0,3_1_0 -10075,1,23.0,3,160.0,7,111,2,84,42,2.0,0.0,0.0,654.8673332065715,0.0,208.54923849724264,7218.0,41,43,8,9623,201110075,,,,,1.0,0.0,2.0,0.0,2.0,1.5,5838.478499559193,0.0,480.0,120.0,0.0,15702.0,3,1,3,55.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,863.4165717038142,0.11961991849595652,0.054987681295619296,10468.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -10076,2,29.0,2,0.0,9,221,4,67,43,8.0,0.0,0.0,1146.0178331115,0.0,0.0,45243.0,42,33,1,9624,201110076,,,270.0,,2.0,0.0,4.0,1.0,3.0,1.8,5079.233931440672,0.0,840.0,0.0,0.0,46683.0,1,1,2,90.0,1,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1146.0178331115,0.02533027944900869,0.02454893286874237,25935.0,8,4,8,8_1,8_1,8_0_0 -10077,1,30.0,3,192.0,1,221,2,0,85,2.0,1586.456009138882,0.0,163.71683330164288,86.89551604051776,0.0,14599.0,0,50,1,9626,201110077,,,,467.0,0.0,0.0,4.0,2.0,3.0,1.6,3486.3609934452193,0.0,120.0,0.0,0.0,18362.0,0,6,3,100.0,1,2.0,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1837.0683584810429,0.12583521874656092,0.10004729106203261,11476.25,2,1,2_1,2_1_1,2_1_1,2_1_0 -10078,2,80.0,4,0.0,3,111,2,78,78,3.0,2379.684013708323,0.0,682.1534720901786,391.02982218232995,0.0,16168.0,71,70,1,9627,201110078,,,100.0,,0.0,2.0,4.0,0.0,2.0,1.5,5829.125145592609,0.0,500.0,0.0,0.0,20073.0,5,5,1,64.0,4,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3452.867307980832,0.2135618077672459,0.17201550879195096,13382.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -10079,2,65.0,1,0.0,9,111,2,77,75,10.0,0.0,0.0,552.5443123930447,0.0,749.0393482692631,38486.0,50,50,1,9629,201110079,,,,,0.0,0.0,5.0,0.0,2.0,1.5,3132.637187454727,0.0,405.0,431.0,0.0,56103.0,5,5,1,122.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1301.583660662308,0.03381966586972686,0.023199894135114127,37402.0,9,5,9,9_1,9_3,9_0_0 -10080,1,40.0,4,66.0,1,112,2,0,46,6.0,3807.4944219333174,0.0,927.728722042643,0.0,0.0,45842.0,0,31,1,963,201110080,,,672.0,,1.0,0.0,6.0,3.0,4.0,1.9,1505.3423666208494,0.0,680.0,0.0,0.0,36444.0,0,1,2,139.0,10,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,4735.223143975961,0.10329442746773615,0.1299314878711437,19181.052631578947,5,3,5,5_1,5_0,5_1_0 -10081,1,22.0,4,244.0,99,112,4,0,68,5.0,0.0,0.0,0.0,0.0,0.0,9593.0,0,50,8,9630,201110081,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2410.3203333751353,0.0,0.0,0.0,0.0,18738.0,0,2,3,44.0,6,1.0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,18738.0,5,3,5,5_0,5_1,5_0_0 -10083,2,40.0,3,0.0,4,111,2,0,56,4.0,0.0,0.0,422.93515269591074,0.0,1459.8446694806985,18598.0,0,50,2,9632,201110083,,,,290.0,1.0,0.0,4.0,1.0,2.0,1.3,2359.8387005854615,0.0,310.0,840.0,0.0,20754.0,0,1,3,76.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1882.7798221766093,0.10123560717155658,0.0907188889937655,15964.615384615385,4,2,4_0,4_0_0,4_3_0,4_0_1 -10084,1,19.0,3,296.0,1,111,2,84,67,1.0,0.0,0.0,0.0,0.0,140.77073598563877,6100.0,60,50,2,9633,201110084,,,,124.0,1.0,0.0,1.0,0.0,2.0,1.5,2268.7311892650478,0.0,0.0,81.0,0.0,8168.0,3,2,3,40.0,7,5.0,3,2,0,1,0,2,0,0,1,0,0,1,0,0,0,1,0,1,1,140.77073598563877,0.02307716983371127,0.017234419195107587,5445.333333333333,1,1,1_1,1_0_1,1_2_1,1_1_0 -10085,2,40.0,3,0.0,3,111,2,0,42,7.0,0.0,0.0,880.1873825202244,0.0,1819.325359063659,20822.0,0,20,1,9634,201110085,,,,,1.0,0.0,4.0,1.0,2.0,1.3,5175.946646625722,1692.0,0.0,0.0,0.0,28690.0,0,1,2,90.0,6,4.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2699.5127415838833,0.12964713963999056,0.09409246223715173,22069.23076923077,7,4,7,7_1,7_2,7_0_1 -10086,0,38.0,3,0.0,4,300,4,54,21,6.0,0.0,0.0,2046.460416270536,0.0,0.0,43107.0,20,41,1,9635,201110086,,,250.0,,2.0,0.0,5.0,2.0,4.0,2.1,2653.290420843932,0.0,1500.0,0.0,0.0,43044.0,1,1,5,85.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2046.460416270536,0.04747396980236472,0.04754345358866592,20497.142857142855,6,3,6,6_1,6_0,6_0_1 -10087,2,62.0,2,0.0,5,111,4,75,75,9.0,0.0,346.98157989085996,2204.7200217954573,173.79103208103552,0.0,41236.0,41,41,1,9637,201110087,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2212.184494876542,0.0,1616.0,0.0,0.0,50767.0,5,5,1,140.0,5,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2725.492633767353,0.06609498093334351,0.05368630476032369,33844.666666666664,9,5,9,9_1,9_2,9_0_0 -10088,0,81.0,3,0.0,1,111,4,0,77,4.0,0.0,0.0,622.1239665462429,0.0,636.07517741659,15192.0,0,70,2,9638,201110088,,,120.0,,0.0,1.0,2.0,0.0,1.0,1.0,3160.914090791495,0.0,456.0,366.0,0.0,15968.0,0,5,5,40.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1258.1991439628327,0.08281984886537867,0.07879503657081868,15968.0,4,2,4_0,4_0_0,4_2_0,4_1_0 -10089,0,35.0,2,0.0,7,112,2,54,48,8.0,0.0,0.0,0.0,0.0,0.0,33899.0,60,20,1,964,201110089,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1760.5840900559094,0.0,0.0,0.0,0.0,60899.0,1,1,5,77.0,7,0.0,4,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,25374.583333333336,8,4,8,8_1,8_0,8_0_0 -10090,2,47.0,3,0.0,7,112,5,62,62,2.0,0.0,666.2046333904511,2728.6138883607146,90.37133668213848,0.0,14456.0,71,71,1,9641,201110090,,,,,3.0,0.0,5.0,4.0,6.0,3.3,1741.1390194183725,0.0,2000.0,0.0,0.0,36440.0,1,1,1,150.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3485.189858433304,0.24108950321204373,0.09564187317325203,11042.424242424244,2,1,2_0,2_1_0,2_1_0,2_0_0 -10091,2,78.0,2,0.0,8,111,2,0,75,1.0,0.0,0.0,350.62688465435184,0.0,1478.9616830096122,20813.0,0,71,2,9642,201110091,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3688.318240485564,0.0,257.0,851.0,0.0,4345.0,0,5,1,80.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1829.588567663964,0.08790604755027935,0.4210790719594854,4345.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -10092,1,45.0,2,471.0,3,111,4,0,56,3.0,0.0,0.0,1227.8762497623215,0.0,0.0,12175.0,0,42,2,9643,201110092,,,398.0,,1.0,0.0,5.0,3.0,4.0,2.3,2216.867108030787,0.0,900.0,0.0,0.0,31520.0,0,1,3,95.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1227.8762497623215,0.10085225870737755,0.038955464776723396,13704.347826086958,3,2,3_1,3_0_1,3_3_1,3_0_1 -10093,2,46.0,2,0.0,1,120,5,56,13,7.0,0.0,0.0,2182.8911106885716,145.98446694806984,0.0,20336.0,50,42,1,9644,201110093,,,,,2.0,0.0,6.0,2.0,4.0,2.3,1610.6133339247665,0.0,1600.0,0.0,0.0,51023.0,1,1,2,150.0,0,1.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2328.8755776366415,0.11451984547780496,0.045643642624632844,22183.913043478264,7,4,7,7_1,7_1,7_1_0 -10094,2,76.0,3,0.0,3,111,2,0,75,4.0,0.0,0.0,270.13277494771074,0.0,1322.5497541366803,24237.0,0,33,2,9645,201110094,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3528.407118712566,0.0,198.0,761.0,0.0,15514.0,0,5,1,76.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1592.682529084391,0.0657128575766139,0.10266098550241015,15514.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -10095,2,78.0,3,0.0,1,112,2,0,72,2.0,0.0,0.0,0.0,0.0,0.0,9335.0,0,70,1,9646,201110095,,,242.0,,0.0,3.0,5.0,0.0,1.0,1.0,2854.570610842935,0.0,0.0,0.0,0.0,9763.0,0,5,5,100.0,7,0.0,1,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,9763.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -10096,2,68.0,2,0.0,6,111,2,75,74,9.0,1745.1016100527704,541.2912646297416,834.9558498383786,0.0,0.0,46191.0,42,30,1,9650,201110096,,,216.0,,0.0,0.0,5.0,0.0,3.0,2.0,2246.8229092037645,0.0,612.0,0.0,0.0,63366.0,5,5,1,110.0,9,7.0,5,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3121.3487245208908,0.06757482463079151,0.0492590462475285,31683.0,9,5,9,9_1,9_3,9_0_0 -10097,2,55.0,3,0.0,1,111,5,56,63,4.0,0.0,55.5170527825376,1016.4086734143661,114.70208117348345,0.0,16617.0,50,50,1,9651,201110097,,,218.0,,2.0,2.0,3.0,0.0,2.0,1.5,1325.6845811589292,0.0,745.0,0.0,0.0,24768.0,1,1,1,80.0,5,4.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1186.6278073703872,0.07141047164773348,0.047909714444863825,16512.0,4,2,4_0,4_1_0,4_2_0,4_1_0 -10098,2,37.0,3,0.0,2,111,2,21,54,2.0,0.0,0.0,394.31562408411946,0.0,815.0405568382114,87346.0,50,60,1,9652,201110098,,,350.0,,2.0,0.0,5.0,3.0,5.0,2.6,2866.8823013525134,758.0,0.0,0.0,0.0,28986.0,4,1,2,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1209.3561809223309,0.013845581720082555,0.041722078966477984,11148.461538461537,2,1,2_0,2_1_0,2_4_0,2_0_1 -10099,2,31.0,2,0.0,6,111,2,63,47,7.0,0.0,0.0,818.5841665082144,48.661488982689946,0.0,44339.0,44,31,2,9653,201110099,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3078.170070304046,0.0,600.0,0.0,0.0,32829.0,1,1,2,47.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,867.2456554909043,0.01955943200096764,0.026417059779186215,21886.0,7,4,7,7_0,7_3,7_0_0 -10100,2,43.0,3,0.0,4,111,1,69,69,5.0,0.0,0.0,274.1481977471385,0.0,566.6574847674635,22795.0,71,60,1,9654,201110100,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2950.9088568834754,527.0,0.0,0.0,0.0,33660.0,4,1,1,89.0,5,4.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,840.805682514602,0.03688553114782198,0.02497937262372555,18700.0,5,3,5,5_1,5_2,5_0_1 -10101,1,58.0,3,36.0,3,400,2,0,78,3.0,0.0,0.0,1582.5960552492145,0.0,0.0,13058.0,0,50,1,9655,201110101,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2770.2976854161593,0.0,1160.0,0.0,0.0,12822.0,0,7,3,36.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1582.5960552492145,0.12119743109581976,0.12342817464118035,12822.0,3,2,3_1,3_1_1,3_0_1,3_0_1 -10102,2,59.0,3,0.0,4,211,2,77,62,5.0,0.0,0.0,532.0797082303393,0.0,1258.2470722666972,36518.0,50,60,2,9657,201110102,,,,299.0,1.0,2.0,4.0,0.0,2.0,1.5,4980.320447834256,0.0,390.0,724.0,0.0,25991.0,6,1,3,90.0,2,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1790.3267804970365,0.049025871638562805,0.06888256629206405,17327.333333333332,5,3,5,5_0,5_1,5_0_1 -10103,1,31.0,3,380.0,1,111,2,0,55,4.0,0.0,0.0,450.22129157951787,0.0,1355.5700502320772,15596.0,0,41,1,9658,201110103,,,220.0,,1.0,0.0,5.0,2.0,3.0,1.6,1665.4812622913498,0.0,330.0,780.0,0.0,24607.0,0,1,3,90.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1805.791341811595,0.11578554384531899,0.07338527011873024,15379.375,4,2,4_1,4_1_1,4_3_1,4_1_0 -10104,2,47.0,3,0.0,6,112,2,0,21,7.0,2379.684013708323,0.0,884.0708998288715,97.32297796537989,0.0,34064.0,0,50,1,9659,201110104,,,,,2.0,0.0,5.0,1.0,2.0,1.5,2531.682352281331,0.0,648.0,0.0,0.0,36805.0,0,1,2,125.0,7,0.0,2,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3361.0778915025744,0.09866950127708356,0.09132123058015418,24536.666666666668,7,4,7,7_1,7_0,7_0_0 -10105,2,58.0,2,0.0,6,111,2,0,34,10.0,0.0,0.0,1364.3069441803573,0.0,0.0,50543.0,0,41,3,966,201110105,,,,,1.0,0.0,5.0,0.0,1.0,1.0,3910.5180374252227,0.0,1000.0,0.0,0.0,40962.0,0,1,1,78.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1364.3069441803573,0.026992994958359363,0.03330664870319704,40962.0,10,5,10,10_0,10_3,10_0_0 -10106,2,39.0,5,0.0,4,112,5,52,52,6.0,0.0,1249.133687607096,955.0148609262501,1564.1192887293198,1564.1192887293198,56805.0,41,50,1,9661,201110106,,,250.0,,2.0,0.0,6.0,3.0,5.0,2.4,1609.067392522639,0.0,700.0,900.0,0.0,46288.0,1,1,2,120.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5332.387125991986,0.09387179167312712,0.11520020579830595,19286.666666666668,6,3,6,6_1,6_0,6_0_1 -10107,2,63.0,3,0.0,6,212,2,77,78,4.0,0.0,0.0,489.7861929607483,0.0,2780.6565132965684,21200.0,50,50,1,9662,201110107,,,,,0.0,2.0,6.0,0.0,2.0,1.5,3315.4582781800223,0.0,359.0,1600.0,0.0,22762.0,5,5,1,100.0,3,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3270.442706257317,0.15426616538949608,0.14367993613291086,15174.666666666666,4,2,4_0,4_1_0,4_0_0,4_0_0 -10108,2,40.0,3,0.0,7,111,6,64,45,7.0,0.0,0.0,518.4366387885358,0.0,729.9223347403492,29404.0,50,31,1,9663,201110108,,,,,2.0,0.0,4.0,2.0,4.0,2.3,1600.7058980112763,0.0,380.0,420.0,0.0,54888.0,1,1,1,120.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1248.3589735288851,0.04245541332910098,0.022743750428670842,23864.34782608696,7,4,7,7_1,7_3,7_0_0 -10109,2,35.0,5,0.0,1,112,4,0,63,1.0,0.0,0.0,1200.5901108787143,43.44775802025888,0.0,9606.0,0,44,1,9667,201110109,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2882.3595219920053,0.0,880.0,0.0,0.0,5810.0,0,4,3,70.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1244.037868898973,0.12950633654996596,0.21412011512891102,5810.0,1,1,1_0,1_1_0,1_0_0,1_1_0 -10110,2,70.0,1,0.0,4,112,2,77,78,5.0,759.9124283775245,0.0,914.0856526008394,135.55700502320772,0.0,49108.0,70,71,1,9668,201110110,,,54.0,,0.0,5.0,5.0,0.0,2.0,1.5,2292.4474308022473,0.0,670.0,0.0,0.0,26392.0,5,5,1,110.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1809.5550860015715,0.03684847857786046,0.0685645303880559,17594.666666666668,5,3,5,5_1,5_0,5_0_1 -10111,2,29.0,3,0.0,2,111,2,0,45,5.0,0.0,0.0,306.92113220267873,0.0,634.3983226049402,17305.0,0,43,2,9669,201110111,,,,338.0,1.0,0.0,2.0,0.0,1.0,1.0,2667.6935234073944,590.0,0.0,0.0,0.0,18260.0,0,1,3,45.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,941.319454807619,0.05439580784788321,0.05155090113951911,18260.0,5,3,5,5_0,5_2,5_0_1 -10112,2,56.0,4,0.0,1,120,4,0,52,6.0,0.0,0.0,3061.5047827407216,46.92357866187959,0.0,25736.0,0,44,1,967,201110112,,,229.0,,1.0,1.0,3.0,0.0,1.0,1.0,2189.104497232882,0.0,2244.0,0.0,0.0,19292.0,0,1,1,83.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3108.4283614026012,0.12078133204082224,0.1611252519905972,19292.0,6,3,6,6_1,6_0,6_1_0 -10113,1,22.0,5,320.0,3,111,2,0,81,2.0,0.0,0.0,272.86138883607146,0.0,2033.3550753481156,7290.0,0,50,2,9670,201110113,,,,,1.0,0.0,2.0,1.0,2.0,1.3,2467.8734011364254,0.0,200.0,1170.0,0.0,12321.0,0,4,3,44.0,5,4.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2306.2164641841873,0.3163534244422754,0.1871777018248671,9477.692307692307,1,1,1_1,1_0_1,1_2_1,1_0_1 -10114,2,36.0,2,0.0,9,111,4,37,62,10.0,0.0,0.0,1173.3039719951073,0.0,0.0,37759.0,31,50,2,9672,201110114,,,,,2.0,0.0,4.0,0.0,2.0,1.5,4439.382629091538,0.0,860.0,0.0,0.0,63094.0,1,1,2,84.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1173.3039719951073,0.03107349167073035,0.01859612597069622,42062.666666666664,10,5,10,10_0,10_4,10_0_0 -10115,1,19.0,5,313.0,6,111,6,68,68,1.0,0.0,0.0,1950.9589301779108,86.89551604051776,0.0,14641.0,71,60,2,9673,201110115,,,,432.0,2.0,0.0,2.0,0.0,2.0,1.5,3179.925790888836,0.0,1430.0,0.0,0.0,10146.0,4,1,3,50.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2037.8544462184286,0.13918820068427215,0.2008529909539157,6764.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -10116,2,43.0,4,0.0,8,111,2,48,54,8.0,0.0,0.0,2974.189138313179,0.0,0.0,50245.0,31,50,1,9674,201110116,,,580.0,,2.0,1.0,4.0,2.0,4.0,2.1,2703.1121642606236,0.0,2180.0,0.0,0.0,52420.0,1,1,2,114.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2974.189138313179,0.05919373347224955,0.05673767909792405,24961.90476190476,8,4,8,8_1,8_4,8_0_0 -10117,2,42.0,3,0.0,1,111,6,0,38,8.0,4759.368027416646,138.792631956344,1244.2479330924857,52.13730962431066,0.0,40516.0,0,12,1,9676,201110117,,,2000.0,,1.0,7.0,4.0,1.0,4.0,2.5,1805.4417219600734,0.0,912.0,0.0,0.0,68531.0,0,1,2,100.0,10,8.0,5,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,6194.545902089786,0.15289134914823246,0.09039042042418448,27412.4,8,4,8,8_1,8_4,8_1_0 -10118,2,40.0,2,0.0,2,112,2,56,63,2.0,0.0,0.0,545.7227776721429,0.0,1042.7461924862132,44737.0,50,50,1,9677,201110118,,,300.0,,2.0,0.0,2.0,1.0,3.0,1.8,1862.370272937953,0.0,400.0,600.0,0.0,18031.0,1,1,2,52.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1588.4689701583561,0.03550682813238161,0.08809655427643259,10017.222222222223,2,1,2_0,2_1_0,2_2_0,2_0_1 -10119,2,59.0,1,0.0,6,120,2,43,31,10.0,0.0,0.0,4664.5654421526415,0.0,0.0,56563.0,31,10,1,968,201110119,,,994.0,,2.0,2.0,8.0,0.0,2.0,1.5,1395.3213122360849,0.0,3419.0,0.0,0.0,92596.0,1,1,1,142.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4664.5654421526415,0.08246672634323925,0.050375452958579654,61730.666666666664,10,5,10,10_1,10_1,10_0_0 -10120,2,44.0,2,0.0,1,111,2,31,31,10.0,0.0,0.0,2046.460416270536,0.0,2085.4923849724264,106556.0,10,10,2,9680,201110120,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3365.652977676614,0.0,1500.0,1200.0,0.0,133543.0,1,1,2,125.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4131.952801242962,0.03877728894893729,0.030940991300502173,63591.904761904756,10,5,10,10_0,10_4,10_1_0 -10121,2,57.0,3,0.0,5,120,2,0,68,5.0,0.0,0.0,622.1239665462429,0.0,173.79103208103552,13069.0,0,71,2,9681,201110121,,,,279.0,2.0,2.0,4.0,1.0,2.0,1.5,8250.055575256663,0.0,456.0,100.0,0.0,28340.0,0,1,3,90.0,0,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,795.9149986272784,0.06090098696359923,0.028084509478732474,18893.333333333332,5,3,5,5_0,5_1,5_0_0 -10122,2,31.0,3,0.0,8,112,2,43,54,8.0,0.0,0.0,2046.460416270536,0.0,0.0,37501.0,33,31,1,9682,201110122,,,,,2.0,0.0,6.0,1.0,3.0,1.8,2072.656765551249,0.0,1500.0,0.0,0.0,51493.0,1,1,2,130.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2046.460416270536,0.05457082254527975,0.039742497354408095,28607.222222222223,8,4,8,8_1,8_1,8_0_0 -10123,2,58.0,2,0.0,4,111,6,75,33,9.0,2701.7345835635165,0.0,801.1630262811473,180.74267336427695,423.6490493327906,58491.0,42,41,1,9684,201110123,,,,,1.0,2.0,6.0,1.0,3.0,2.0,2546.6267216881765,394.0,437.0,0.0,0.0,63941.0,5,1,1,125.0,8,7.0,4,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4107.289332541732,0.07022087727243048,0.06423561302672356,31970.5,9,5,9,9_1,9_3,9_0_1 -10124,0,45.0,4,0.0,1,111,6,0,42,1.0,0.0,0.0,0.0,0.0,0.0,9884.0,0,41,1,9685,201110124,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2860.824664194513,0.0,0.0,0.0,0.0,40.0,0,4,5,33.0,8,7.0,1,2,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,40.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -10125,2,62.0,3,0.0,1,221,2,77,75,5.0,0.0,0.0,682.1534720901786,0.0,1633.6357015617339,40250.0,60,50,1,9687,201110125,,,684.0,,0.0,2.0,4.0,0.0,2.0,1.5,2488.168671680281,0.0,500.0,940.0,0.0,28180.0,5,5,1,105.0,1,2.0,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2315.7891736519123,0.057535134749115834,0.08217846606287836,18786.666666666668,5,3,5,5_1,5_1,5_1_0 -10126,2,71.0,2,0.0,1,300,2,72,74,9.0,2696.9752155360998,0.0,182.07185808633486,0.0,376.3379879859815,29689.0,43,44,1,9689,201110126,,,287.0,,0.0,2.0,7.0,0.0,2.0,1.5,1948.9530284710288,350.0,0.0,0.0,0.0,45627.0,5,5,1,150.0,0,0.0,3,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3255.3850616084164,0.1096495355723809,0.07134777788608536,30418.0,9,5,9,9_1,9_0,9_1_0 -10127,2,52.0,2,0.0,1,112,6,22,34,10.0,3966.1400228472053,0.0,955.0148609262501,0.0,0.0,41347.0,41,10,1,969,201110127,,,600.0,,2.0,0.0,3.0,2.0,4.0,2.5,916.6009787147252,0.0,700.0,0.0,0.0,97366.0,1,1,1,120.0,10,0.0,4,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4921.154883773455,0.11902084513443431,0.05054284743928533,38946.4,10,5,10,10_1,10_0,10_1_0 -10128,1,45.0,4,472.0,4,111,1,0,85,1.0,0.0,0.0,639.8525298462624,0.0,1322.5592149221634,35668.0,0,60,2,9690,201110128,,,,,0.0,0.0,5.0,4.0,5.0,2.6,2471.0738446334085,1230.0,0.0,0.0,0.0,20141.0,0,4,3,73.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1962.4117447684257,0.05501883326142273,0.09743367979586047,7746.538461538461,1,1,1_1,1_0_1,1_4_1,1_0_1 -10129,2,63.0,3,0.0,5,111,1,0,56,4.0,0.0,0.0,231.93218051066074,0.0,0.0,13417.0,0,70,2,9692,201110129,,,,290.0,1.0,3.0,3.0,0.0,1.0,1.0,2246.7978585869787,0.0,170.0,0.0,0.0,15880.0,0,1,3,64.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,231.93218051066074,0.017286441120269863,0.014605301039714153,15880.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -10130,2,28.0,3,0.0,5,111,2,67,43,7.0,0.0,0.0,545.7227776721429,0.0,0.0,40058.0,41,10,2,9693,201110130,,,,534.0,2.0,0.0,3.0,0.0,2.0,1.5,2217.3522743480708,0.0,400.0,0.0,0.0,33985.0,1,1,3,70.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,545.7227776721429,0.013623315634134079,0.016057754234872528,22656.666666666668,7,4,7,7_0,7_3,7_0_0 -10131,2,35.0,3,0.0,5,112,5,43,38,8.0,1269.1648073111057,624.566843803548,1227.8762497623215,406.67101506962314,0.0,93844.0,33,12,1,9698,201110131,,,524.0,,2.0,0.0,8.0,4.0,6.0,2.7,1697.9755035997434,0.0,900.0,0.0,0.0,68220.0,1,1,2,168.0,5,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3528.2789159465983,0.03759727756645708,0.05171912805550569,25266.666666666664,8,4,8,8_1,8_0,8_0_0 -10132,2,65.0,3,0.0,1,112,3,0,56,9.0,0.0,0.0,654.8673332065715,0.0,2919.689338961397,45812.0,0,70,1,9699,201110132,,,325.0,,1.0,2.0,7.0,0.0,1.0,1.0,1264.8419162431715,0.0,480.0,1680.0,0.0,29135.0,0,5,1,130.0,9,1.0,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3574.5566721679684,0.0780266452494536,0.12268943443171335,29135.0,9,5,9,9_1,9_1,9_1_0 -10133,2,45.0,2,0.0,6,111,4,52,37,10.0,0.0,0.0,2728.6138883607146,0.0,0.0,96693.0,50,20,1,97,201110133,,,,,2.0,0.0,6.0,3.0,5.0,2.6,1747.405482566283,0.0,2000.0,0.0,0.0,141614.0,1,4,2,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2728.6138883607146,0.028219352883463274,0.019267967067950306,54466.92307692308,10,5,10,10_1,10_4,10_0_0 -10134,2,67.0,4,0.0,5,400,2,0,78,2.0,2347.9548935255457,0.0,538.9012429512411,156.41192887293198,0.0,9813.0,0,71,1,9701,201110134,,,80.0,,0.0,2.0,4.0,0.0,1.0,1.0,2600.8761566339954,0.0,395.0,0.0,0.0,10320.0,0,5,1,80.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3043.2680653497187,0.3101261658361071,0.29489031640985647,10320.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -10135,1,38.0,2,300.0,4,111,4,37,37,1.0,0.0,277.585263912688,2455.752499524643,0.0,0.0,94277.0,20,20,1,9702,201110135,,,500.0,,2.0,0.0,6.0,3.0,5.0,2.4,1077.7458331995254,0.0,1800.0,0.0,0.0,5910.0,1,1,2,160.0,9,7.0,4,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2733.337763437331,0.0289926255973072,0.46249369939717955,2462.5,1,1,1_1,1_1_1,1_3_1,1_0_1 -10136,2,55.0,1,0.0,1,112,2,21,37,10.0,3721.8257974398175,0.0,1461.0749875522608,0.0,222.57703860885192,174441.0,50,60,1,9703,201110136,,,530.0,,4.0,1.0,6.0,2.0,4.0,2.5,1078.2090734801209,207.0,992.0,0.0,0.0,147020.0,1,1,1,200.0,6,0.0,4,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5405.47782360093,0.03098742740296679,0.03676695567678499,58808.0,10,5,10,10_1,10_0,10_1_0 -10137,2,31.0,1,0.0,7,111,4,37,37,10.0,0.0,0.0,573.00891655575,0.0,0.0,89571.0,20,10,2,9704,201110137,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3149.1585124676844,0.0,420.0,0.0,0.0,107807.0,1,1,2,51.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,573.00891655575,0.006397259342373648,0.005315136461971393,71871.33333333333,10,5,10,10_0,10_4,10_0_0 -10138,2,53.0,3,0.0,6,112,2,52,47,10.0,0.0,0.0,501.6339933035023,0.0,501.0671497184782,21927.0,42,50,1,9708,201110138,,,40.0,,2.0,4.0,5.0,0.0,2.0,1.5,1404.7219323751206,466.0,190.0,0.0,0.0,60900.0,1,1,1,100.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1002.7011430219804,0.04572906202499113,0.016464714992150745,40600.0,10,5,10,10_1,10_0,10_0_0 -10139,2,48.0,2,0.0,1,112,2,46,35,8.0,0.0,485.77421184720396,1226.5119428181413,851.5760571970741,0.0,57818.0,31,50,1,9709,201110139,,,264.0,,2.0,1.0,8.0,2.0,4.0,2.1,2665.5121558362184,0.0,899.0,0.0,0.0,53503.0,1,1,2,170.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2563.8622118624194,0.04434366826701753,0.04791997106447151,25477.619047619046,8,4,8,8_1,8_0,8_1_0 -10140,2,63.0,1,0.0,4,120,6,13,22,10.0,0.0,0.0,210.16294476251224,8390.631028872394,434.4015632752472,59265.0,20,31,1,971,201110140,,,,,2.0,1.0,4.0,0.0,2.0,1.5,3171.1675935602066,404.0,0.0,0.0,0.0,122447.0,1,1,1,120.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,9035.195536910154,0.15245415568902648,0.0737886231341736,81631.33333333333,10,5,10,10_1,10_1,10_0_1 -10141,2,56.0,2,0.0,1,112,2,62,62,9.0,0.0,0.0,364.1437161726697,0.0,752.675975971963,20946.0,50,71,1,9710,201110141,,,400.0,,2.0,3.0,4.0,0.0,2.0,1.5,2275.8017135354526,700.0,0.0,0.0,0.0,49132.0,1,1,1,80.0,5,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1116.8196921446327,0.053318996092076416,0.022731004073610533,32754.666666666668,9,5,9,9_1,9_0,9_1_0 -10142,2,19.0,2,0.0,1,111,2,0,84,1.0,0.0,0.0,327.43366660328576,0.0,552.655482017693,5990.0,0,41,2,9713,201110142,,,,235.0,0.0,0.0,2.0,0.0,1.0,1.0,3686.2319545448986,0.0,240.0,318.0,0.0,1804.0,0,3,4,50.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,880.0891486209787,0.14692640210700814,0.48785429524444496,1804.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -10143,2,56.0,4,0.0,3,111,2,78,52,1.0,0.0,0.0,682.1534720901786,0.0,1911.7013528913908,18774.0,50,50,2,9714,201110143,,,,,1.0,1.0,4.0,1.0,3.0,2.0,2488.6568221300104,0.0,500.0,1100.0,0.0,14166.0,4,1,1,75.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2593.8548249815694,0.1381620765410445,0.1831042513752343,7083.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -10144,2,75.0,2,0.0,5,111,2,77,78,2.0,0.0,0.0,327.43366660328576,0.0,1981.2177657238049,23810.0,50,70,1,9715,201110144,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,2214.0455310873103,0.0,240.0,1140.0,0.0,15352.0,6,5,3,105.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2308.651432327091,0.09696142092931923,0.15038115114168127,10234.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_0 -10145,2,59.0,3,0.0,4,111,1,77,62,9.0,0.0,0.0,860.1135071329687,0.0,2018.6873195658877,30907.0,50,70,2,9718,201110145,660.0,660.0,,308.0,1.0,1.0,3.0,0.0,2.0,1.5,2234.1658586341237,725.0,354.0,713.0,0.0,44928.0,5,1,3,68.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2878.8008266988563,0.0931439747209,0.06407587310138124,29952.0,9,5,9,9_0,9_4,9_0_1 -10146,2,39.0,3,0.0,5,400,2,0,11,3.0,0.0,0.0,736.7257498573929,93.84715732375918,0.0,15910.0,0,31,1,9719,201110146,,,,,1.0,0.0,6.0,0.0,1.0,1.0,2792.571557552719,0.0,540.0,0.0,0.0,12506.0,0,1,1,120.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,830.572907181152,0.0522044567681428,0.06641395387663138,12506.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -10147,1,31.0,3,113.0,5,111,1,85,52,2.0,0.0,0.0,1047.7877331305144,0.0,0.0,26581.0,60,31,2,972,201110147,,,,356.0,1.0,0.0,2.0,2.0,4.0,2.1,2892.1699052612553,0.0,768.0,0.0,0.0,23667.0,6,1,3,44.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1047.7877331305144,0.039418672477729,0.044272097567520784,11270.0,2,1,2_1,2_0_1,2_4_1,2_0_0 -10148,2,77.0,3,0.0,4,112,1,77,78,3.0,0.0,0.0,491.1504999049286,0.0,0.0,18293.0,60,70,2,9720,201110148,,,170.0,282.0,0.0,5.0,3.0,0.0,2.0,1.5,2395.983523553841,0.0,360.0,0.0,0.0,19655.0,5,5,3,111.0,10,4.0,3,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,491.1504999049286,0.026849095277151295,0.024988577965145184,13103.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_1 -10149,2,32.0,3,0.0,1,111,6,54,67,6.0,0.0,0.0,177.35990274344644,304.13430614181215,0.0,32394.0,41,50,1,9724,201110149,,,90.0,,2.0,0.0,5.0,1.0,3.0,1.8,2905.1158242516917,0.0,130.0,0.0,0.0,34293.0,1,1,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,481.49420888525856,0.01486368490724389,0.014040597465525283,19051.666666666668,5,3,5,5_1,5_3,5_1_0 -10150,2,76.0,3,0.0,3,111,1,0,77,6.0,0.0,0.0,300.1475277196786,0.0,173.79103208103552,14940.0,0,71,2,9726,201110150,,,,334.0,0.0,2.0,4.0,0.0,1.0,1.0,3114.5046996495494,0.0,220.0,100.0,0.0,20837.0,0,5,3,72.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,473.9385598007141,0.031722795167383806,0.022745047742031677,20837.0,6,3,6,6_0,6_4,6_0_1 -10151,2,61.0,2,0.0,7,111,2,77,33,9.0,0.0,0.0,955.0148609262501,79.94387475727635,0.0,37165.0,41,10,2,9728,201110151,,,,,2.0,1.0,4.0,1.0,3.0,2.0,2096.2413526978103,0.0,700.0,0.0,0.0,72385.0,6,1,1,96.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1034.9587356835264,0.027847672156155693,0.014297972448484166,36192.5,9,5,9,9_0,9_3,9_0_0 -10152,2,54.0,3,0.0,9,400,4,0,46,6.0,0.0,0.0,1624.8895705188054,48.661488982689946,0.0,16080.0,0,60,1,9729,201110152,,,99.0,,1.0,3.0,2.0,0.0,1.0,1.0,2598.346593845848,0.0,1191.0,0.0,0.0,19914.0,0,1,3,70.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1673.5510595014953,0.1040765584267099,0.08403892033250453,19914.0,6,3,6,6_1,6_0,6_0_0 -10153,2,56.0,2,0.0,7,111,4,75,52,8.0,0.0,0.0,2046.460416270536,0.0,0.0,26708.0,30,41,1,9730,201110153,,,450.0,,1.0,2.0,7.0,0.0,2.0,1.5,3113.195739116531,0.0,1500.0,0.0,0.0,39462.0,5,1,1,150.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2046.460416270536,0.07662349918640617,0.0518590141470411,26308.0,8,4,8,8_1,8_3,8_0_0 -10154,2,62.0,1,0.0,1,111,2,31,38,10.0,0.0,0.0,1510.6762168077612,0.0,3122.5300488894004,218393.0,10,10,2,9733,201110154,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2935.6939521976688,2904.0,0.0,0.0,0.0,256695.0,1,1,1,130.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4633.206265697161,0.021214994371143586,0.018049460510322215,171130.0,10,5,10,10_0,10_4,10_1_0 -10155,1,39.0,3,25.0,5,111,1,52,43,3.0,0.0,0.0,1098.2670900651876,0.0,1903.011801287339,44392.0,60,60,2,9734,201110155,615.0,615.0,,393.0,2.0,0.0,3.0,3.0,5.0,2.4,5858.183720490978,0.0,805.0,1095.0,0.0,33090.0,1,1,3,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,3001.2788913525264,0.06760855314814666,0.09070048024637432,13787.5,3,2,3_1,3_0_1,3_4_1,3_0_0 -10156,2,67.0,3,0.0,5,111,5,77,75,8.0,0.0,763.359475759892,1186.9470414369107,521.3730962431066,0.0,53402.0,50,50,1,9736,201110156,,,,,0.0,3.0,8.0,0.0,2.0,1.5,1048.4406059154492,0.0,870.0,0.0,0.0,41355.0,5,5,1,160.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2471.679613439909,0.04628440158495766,0.059767370655057654,27570.0,8,4,8,8_1,8_3,8_0_0 -10157,1,38.0,3,279.0,1,111,4,0,56,3.0,0.0,0.0,691.7036206994411,93.84715732375918,0.0,20566.0,0,43,2,9739,201110157,,,210.0,,1.0,0.0,3.0,1.0,2.0,1.3,3228.458958926181,0.0,507.0,0.0,0.0,18286.0,0,1,3,70.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,785.5507780232003,0.03819657580585434,0.04295913693662913,14066.153846153846,3,2,3_1,3_0_1,3_3_1,3_1_0 -10158,2,27.0,3,0.0,99,111,2,55,53,4.0,0.0,0.0,851.3275331685429,0.0,1814.3783749260108,33597.0,50,50,1,9740,201110158,,,,822.0,2.0,0.0,5.0,2.0,4.0,2.1,1257.7841256143722,0.0,624.0,1044.0,0.0,33702.0,4,1,3,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2665.7059080945537,0.07934356960724331,0.07909637137542441,16048.571428571428,4,2,4_0,4_1_0,4_3_0,4_0_0 -10159,1,53.0,3,248.0,4,111,1,0,77,1.0,0.0,0.0,491.1504999049286,0.0,0.0,9212.0,0,50,2,9743,201110159,,,,,0.0,2.0,3.0,1.0,2.0,1.5,3270.26873193351,0.0,360.0,0.0,0.0,11006.0,0,7,3,70.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,491.1504999049286,0.05331638079732182,0.04462570415272839,7337.333333333333,1,1,1_1,1_0_1,1_2_1,1_0_1 -10160,2,69.0,2,0.0,5,112,4,75,74,9.0,0.0,0.0,2232.1353673282765,0.0,891.3834058296532,31729.0,33,12,1,9746,201110160,,,720.0,,0.0,7.0,9.0,0.0,2.0,1.5,2350.5290682907835,829.0,1320.0,0.0,0.0,55102.0,5,5,1,180.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3123.51877315793,0.09844365637612058,0.05668612342851312,36734.666666666664,9,5,9,9_1,9_2,9_0_0 -10161,2,55.0,3,0.0,1,112,1,77,42,6.0,1066.0984381413289,0.0,648.0457984856697,48.661488982689946,0.0,21321.0,50,50,2,9747,201110161,672.0,672.0,,500.0,1.0,2.0,4.0,0.0,2.0,1.5,2023.7329516130299,0.0,475.0,0.0,0.0,29221.0,5,1,3,65.0,4,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1762.8057256096884,0.08267931736830769,0.06032667347488752,19480.666666666668,6,3,6,6_0,6_0,6_1_0 -10162,0,30.0,3,0.0,4,111,2,0,47,10.0,0.0,0.0,0.0,0.0,0.0,17286.0,0,10,2,9748,201110162,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3206.9022762808086,0.0,0.0,0.0,0.0,44887.0,0,1,5,27.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,44887.0,10,5,10,10_0,10_4,10_0_1 -10163,2,74.0,3,0.0,7,400,1,77,78,4.0,0.0,0.0,753.0974331875572,145.98446694806984,0.0,15094.0,71,71,2,9749,201110163,,,,346.0,0.0,1.0,2.0,0.0,2.0,1.5,3138.097080960621,0.0,552.0,0.0,0.0,23397.0,5,5,3,55.0,0,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,899.0819001356269,0.05956551610809772,0.038427229992547204,15598.0,4,2,4_0,4_0_0,4_1_0,4_0_0 -10164,2,65.0,2,0.0,6,111,5,77,75,3.0,0.0,1110.341055650752,540.2655498954215,291.9689338961397,0.0,21583.0,50,50,1,9750,201110164,,,350.0,,0.0,2.0,4.0,0.0,2.0,1.5,1079.0157022900469,0.0,396.0,0.0,0.0,19636.0,6,5,1,136.0,7,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1942.5755394423131,0.09000488993385132,0.09892929005104467,13090.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0 -10165,2,58.0,3,0.0,6,111,2,77,62,7.0,0.0,0.0,624.2463705817195,0.0,1290.3016730947936,27596.0,70,70,1,9751,201110165,,,,,1.0,4.0,3.0,0.0,2.0,1.5,3102.5203821354276,1200.0,0.0,0.0,0.0,35229.0,5,1,3,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1914.548043676513,0.0693777374864659,0.05434579589759894,23486.0,7,4,7,7_1,7_4,7_0_0 -10166,2,54.0,3,0.0,4,211,1,85,62,7.0,0.0,0.0,540.2655498954215,0.0,2632.934136027688,20962.0,71,71,8,9752,201110166,1363.0,1363.0,280.0,308.0,1.0,1.0,4.0,0.0,2.0,1.5,3333.878836392003,0.0,396.0,1515.0,0.0,32882.0,7,1,3,74.0,4,3.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,3173.1996859231094,0.15137867025680324,0.09650263627282736,21921.333333333332,7,4,7,7_0,7_1,7_0_1 -10167,2,37.0,3,0.0,9,112,2,54,47,8.0,0.0,367.80047468431155,2690.4132939236647,0.0,0.0,27346.0,31,20,1,9753,201110167,,,110.0,,2.0,1.0,6.0,0.0,2.0,1.5,1717.7772222523727,0.0,1972.0,0.0,0.0,38189.0,1,1,2,107.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3058.2137686079764,0.11183404405060983,0.08008101203508802,25459.333333333332,8,4,8,8_1,8_0,8_0_0 -10168,2,45.0,3,0.0,9,111,4,0,54,1.0,0.0,0.0,1596.2391246910179,0.0,0.0,31223.0,0,30,1,9754,201110168,,,240.0,,1.0,0.0,4.0,3.0,4.0,2.5,2748.354431027829,0.0,1170.0,0.0,0.0,21307.0,0,1,1,96.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1596.2391246910179,0.051123822973161384,0.07491618363406476,8522.8,1,1,1_0,1_1_0,1_3_0,1_0_0 -10169,2,63.0,2,0.0,2,111,2,86,75,7.0,0.0,0.0,272.86138883607146,0.0,86.89551604051776,33726.0,50,50,1,9756,201110169,,,600.0,,0.0,3.0,5.0,0.0,2.0,1.5,2025.5253972094688,0.0,200.0,50.0,0.0,32762.0,6,5,1,180.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,359.7569048765892,0.010667049305479131,0.010980920117104854,21841.333333333332,7,4,7,7_1,7_2,7_0_1 -10170,2,38.0,2,0.0,4,112,6,72,46,4.0,2601.787854987767,0.0,818.5841665082144,291.9689338961397,0.0,49432.0,71,50,1,9759,201110170,,,340.0,,1.0,0.0,5.0,1.0,4.0,2.5,1064.9577860233987,0.0,600.0,0.0,0.0,39810.0,7,1,1,200.0,6,0.0,5,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3712.340955392121,0.07509995459200763,0.0932514683595107,15924.0,4,2,4_0,4_1_0,4_0_0,4_0_1 -10171,2,88.0,2,0.0,5,111,2,72,74,8.0,0.0,0.0,3137.9059716148217,0.0,0.0,18862.0,44,70,1,976,201110171,,,250.0,,0.0,2.0,4.0,0.0,2.0,1.5,2638.1554158484814,0.0,2300.0,0.0,0.0,37340.0,5,5,1,200.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3137.9059716148217,0.16636125392931936,0.08403604637425875,24893.333333333332,7,4,7,7_1,7_4,7_0_0 -10172,2,62.0,1,0.0,1,211,1,75,31,10.0,0.0,0.0,2413.845794550216,0.0,6101.310401495612,95746.0,33,10,1,9760,201110172,,,,,1.0,3.0,8.0,0.0,2.0,1.5,2147.280168221437,2070.0,980.0,2230.0,0.0,396116.0,6,1,1,278.0,1,2.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,8515.156196045828,0.08893485050076064,0.02149662269649756,264077.3333333333,10,5,10,10_1,10_1,10_1_0 -10173,2,74.0,3,0.0,1,112,2,75,72,2.0,0.0,0.0,654.8673332065715,3741.720920704695,0.0,14904.0,70,43,1,9761,201110173,,,200.0,,0.0,2.0,5.0,0.0,2.0,1.5,2512.606317099785,0.0,480.0,0.0,0.0,18185.0,5,5,1,96.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4396.588253911266,0.29499384419694485,0.24177004420738335,12123.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0 -10174,2,64.0,2,0.0,5,112,2,72,77,8.0,1150.1806066256895,595.4203910927157,2361.6153203761983,156.41192887293198,0.0,28569.0,70,70,1,9762,201110174,,,367.0,,0.0,2.0,4.0,0.0,2.0,1.5,2746.230979605522,0.0,1731.0,0.0,0.0,43034.0,5,5,3,100.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4263.628246967535,0.1492396740161551,0.09907580626870696,28689.333333333332,8,4,8,8_1,8_0,8_0_0 -10175,2,34.0,3,0.0,5,111,6,0,47,9.0,0.0,0.0,683.8126473340052,486.61488982689946,229.02854697432588,29440.0,0,31,1,9764,201110175,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.5,1023.2699066202188,213.0,420.0,0.0,0.0,76120.0,0,1,1,100.0,4,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1399.4560841352304,0.04753587242307169,0.01838486710634827,30448.0,9,5,9,9_1,9_2,9_0_0 -10176,2,79.0,3,0.0,1,111,4,0,77,3.0,0.0,0.0,1882.743582968893,0.0,0.0,16808.0,0,71,1,9765,201110176,,,65.0,,0.0,0.0,5.0,0.0,1.0,1.0,2914.814894944538,0.0,1380.0,0.0,0.0,13788.0,0,5,1,100.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1882.743582968893,0.11201473006716403,0.13654943305547526,13788.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -10177,2,38.0,1,0.0,8,111,2,43,37,10.0,0.0,0.0,682.1534720901786,0.0,1178.303197509421,61612.0,33,12,1,9767,201110177,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1788.4820489831513,0.0,500.0,678.0,0.0,122728.0,1,1,2,150.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1860.4566695995995,0.030196336259163792,0.015159186734890159,58441.904761904756,10,5,10,10_1,10_3,10_0_0 -10178,2,73.0,2,0.0,3,221,6,86,72,8.0,1269.1648073111057,0.0,886.7995137172322,86.89551604051776,0.0,42204.0,60,71,1,9768,201110178,,,270.0,,0.0,2.0,3.0,0.0,2.0,1.5,2679.040001859617,0.0,650.0,0.0,0.0,41470.0,6,5,1,90.0,1,2.0,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2242.8598370688555,0.05314330009167035,0.05408391215502425,27646.666666666668,8,4,8,8_1,8_1,8_0_1 -10179,2,63.0,3,0.0,8,111,2,56,11,3.0,571.1241632899976,0.0,2504.867549515136,187.69431464751835,0.0,43344.0,50,70,1,9769,201110179,,,,,2.0,5.0,4.0,2.0,4.0,2.3,2222.1602022058973,0.0,1836.0,0.0,0.0,30800.0,1,5,1,200.0,6,5.0,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3263.686027452652,0.07529729668356987,0.10596383206015104,13391.304347826088,3,2,3_0,3_1_0,3_2_0,3_0_0 -10180,2,40.0,4,0.0,99,111,2,0,63,4.0,0.0,0.0,933.1859498193644,208.54923849724264,0.0,31675.0,0,71,1,977,201110180,,,,,1.0,0.0,3.0,1.0,2.0,1.3,5331.4345794401015,0.0,684.0,0.0,0.0,20130.0,0,1,3,60.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1141.735188316607,0.03604530981267899,0.056718091819006805,15484.615384615385,4,2,4_0,4_1_0,4_2_0,4_0_0 -10181,2,79.0,3,0.0,3,111,1,77,78,2.0,0.0,0.0,714.8968387505072,0.0,0.0,11829.0,71,71,2,9770,201110181,,,,341.0,0.0,4.0,4.0,0.0,2.0,1.5,3640.2958321140295,0.0,524.0,0.0,0.0,17214.0,5,5,3,80.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,714.8968387505072,0.060435948833418476,0.041529966233908866,11476.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -10182,2,41.0,3,0.0,99,112,4,0,54,4.0,158.64560091388822,0.0,2304.3538524475725,66.0405921907935,90.32111711663556,27460.0,0,50,1,9774,201110182,,,120.0,,1.0,0.0,3.0,1.0,2.0,1.3,2520.7086405349078,84.0,1657.0,0.0,0.0,21291.0,0,1,3,70.0,10,0.0,2,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2619.36116266889,0.0953882433601198,0.12302668557930063,16377.692307692307,4,2,4_0,4_1_0,4_0_0,4_0_0 -10183,2,49.0,1,0.0,2,111,2,74,46,3.0,0.0,0.0,841.7773845592804,0.0,3364.5943810888475,51931.0,41,41,1,9775,201110183,,,,,1.0,0.0,5.0,2.0,4.0,2.3,1866.7839123911267,0.0,617.0,1936.0,0.0,29674.0,6,1,2,180.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4206.371765648128,0.08099924449073054,0.14175277231408398,12901.739130434784,3,2,3_0,3_1_0,3_3_0,3_0_1 -10184,2,50.0,3,0.0,1,112,2,78,54,5.0,0.0,0.0,545.7227776721429,0.0,2214.097748712393,19189.0,50,50,1,9777,201110184,,,300.0,,1.0,1.0,5.0,0.0,2.0,1.5,1403.6215035407013,0.0,400.0,1274.0,0.0,27614.0,4,1,1,110.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2759.8205263845357,0.14382305103885223,0.09994280170871789,18409.333333333332,5,3,5,5_1,5_0,5_1_0 -10185,2,37.0,3,0.0,8,111,4,52,64,5.0,0.0,0.0,1773.5990274344645,0.0,0.0,47904.0,31,71,1,9778,201110185,,,250.0,622.0,2.0,0.0,3.0,2.0,4.0,2.1,4651.4976324626,0.0,1300.0,0.0,0.0,38750.0,1,1,3,78.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1773.5990274344645,0.03702402779380562,0.04577029748217973,18452.38095238095,5,3,5,5_1,5_2,5_0_0 -10186,2,76.0,4,0.0,99,111,2,0,77,5.0,0.0,0.0,335.6195082683679,0.0,1929.0804560994943,17174.0,0,50,1,9779,201110186,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2125.0312678049063,0.0,246.0,1110.0,0.0,18160.0,0,5,1,80.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2264.6999643678623,0.13186793783439282,0.12470814781761357,18160.0,5,3,5,5_1,5_3,5_0_0 -10187,2,38.0,4,0.0,5,111,2,56,48,4.0,0.0,0.0,818.5841665082144,0.0,2606.865481215533,57340.0,60,43,2,978,201110187,,,,476.0,2.0,0.0,4.0,2.0,4.0,2.1,6149.039262143416,0.0,600.0,1500.0,0.0,34454.0,1,1,3,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3425.449647723747,0.0597392683593259,0.09942095686201159,16406.666666666664,4,2,4_0,4_0_0,4_4_0,4_0_0 -10188,2,70.0,4,0.0,2,111,1,77,78,1.0,0.0,0.0,818.5841665082144,0.0,2910.999787357345,29963.0,70,70,2,9780,201110188,475.0,475.0,,805.0,0.0,7.0,4.0,1.0,3.0,2.0,2627.272259556786,0.0,600.0,1675.0,0.0,15640.0,5,5,3,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3729.5839538655596,0.12447298180641322,0.23846444717810483,7820.0,1,1,1_0,1_0_0,1_3_0,1_0_1 -10189,2,37.0,3,0.0,1,300,5,85,42,4.0,0.0,1387.9263195634398,1806.342394094793,0.0,0.0,25819.0,10,20,1,9781,201110189,,,,,1.0,0.0,5.0,2.0,4.0,2.1,1279.905940929834,0.0,1324.0,0.0,0.0,33575.0,6,1,2,140.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3194.2687136582326,0.12371775489593836,0.09513830867187588,15988.095238095237,4,2,4_0,4_1_0,4_0_0,4_1_0 -10190,1,22.0,3,296.0,8,300,4,69,85,1.0,0.0,0.0,682.1534720901786,114.70208117348345,0.0,11141.0,71,50,1,9783,201110190,,,,,1.0,0.0,2.0,0.0,2.0,1.5,2642.8227831615736,0.0,500.0,0.0,0.0,10822.0,4,4,3,35.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,796.855553263662,0.07152459862343255,0.0736329285957921,7214.666666666667,1,1,1_1,1_1_1,1_0_1,1_0_0 -10191,2,74.0,2,0.0,4,111,2,75,75,9.0,0.0,0.0,901.8068901032161,0.0,2417.433256247204,36251.0,31,50,1,9786,201110191,,,325.0,,0.0,1.0,4.0,0.0,2.0,1.5,1797.10808877398,0.0,661.0,1391.0,0.0,48264.0,5,5,1,150.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3319.24014635042,0.09156271954843784,0.06877258715295914,32176.0,9,5,9,9_1,9_2,9_0_1 -10192,2,45.0,4,0.0,7,300,5,67,64,3.0,0.0,111.0341055650752,1064.1594164606786,152.93610823131127,0.0,31182.0,70,71,1,9787,201110192,,,218.0,,3.0,0.0,5.0,3.0,5.0,2.8,1439.7471602251517,0.0,780.0,0.0,0.0,40449.0,1,1,2,92.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1328.129630257065,0.042592830166668746,0.03283467156807498,14446.07142857143,3,2,3_0,3_1_0,3_0_0,3_0_0 -10193,2,27.0,3,0.0,1,111,4,42,43,7.0,0.0,693.9631597817199,1923.6727912943038,50.3993993035003,0.0,40236.0,31,33,1,9789,201110193,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3345.883223617786,0.0,1410.0,0.0,0.0,41300.0,1,1,2,120.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2668.035350379524,0.06630965678445978,0.06460134020289404,22944.444444444445,7,4,7,7_1,7_3,7_1_0 -10194,1,28.0,3,150.0,99,111,4,42,54,2.0,0.0,0.0,736.7257498573929,0.0,0.0,13589.0,41,50,2,9790,201110194,,,,260.0,2.0,0.0,2.0,0.0,2.0,1.5,3462.5661828428856,0.0,540.0,0.0,0.0,16499.0,4,1,3,40.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,736.7257498573929,0.054214861274368455,0.04465275167327674,10999.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_0 -10195,2,44.0,4,0.0,99,111,4,0,63,2.0,0.0,0.0,545.7227776721429,0.0,0.0,14932.0,0,50,2,9791,201110195,,,,190.0,1.0,2.0,1.0,0.0,1.0,1.0,3251.136798681486,0.0,400.0,0.0,0.0,11210.0,0,4,3,19.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,545.7227776721429,0.036547199147612036,0.048681782129539955,11210.0,2,1,2_0,2_0_0,2_2_0,2_0_0 -10196,2,68.0,2,0.0,5,111,2,77,72,9.0,0.0,69.396315978172,1889.5651176897948,34.7582064162071,0.0,36818.0,60,50,1,9793,201110196,,,126.0,,0.0,2.0,7.0,0.0,2.0,1.5,3994.7680225166987,0.0,1385.0,0.0,0.0,50353.0,5,5,1,225.0,6,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1993.7196400841738,0.054150677388347376,0.03959485313852548,33568.666666666664,9,5,9,9_1,9_2,9_0_0 -10197,2,38.0,3,0.0,9,111,2,43,22,10.0,5711.241632899976,0.0,825.4057012291162,0.0,0.0,98848.0,33,31,1,9798,201110197,,,,,2.0,0.0,9.0,2.0,4.0,2.1,3346.5922034574683,0.0,605.0,0.0,0.0,88281.0,1,4,2,226.0,6,4.0,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,6536.647334129092,0.06612827102348143,0.07404364851020143,42038.57142857143,10,5,10,10_1,10_2,10_0_0 -10198,2,62.0,1,0.0,6,300,4,52,11,7.0,0.0,0.0,1421.6078358359323,104.27461924862132,0.0,19171.0,60,50,1,9799,201110198,,,104.0,,2.0,2.0,6.0,0.0,2.0,1.5,2073.922479231881,0.0,1042.0,0.0,0.0,33106.0,1,5,1,120.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1525.8824550845536,0.07959326352744008,0.046090812997177356,22070.666666666668,7,4,7,7_1,7_0,7_0_0 -10199,1,31.0,4,65.0,1,111,6,35,46,9.0,1410.3593921244662,0.0,1773.5990274344645,312.82385774586396,0.0,78053.0,12,10,2,980,201110199,,,,755.0,2.0,0.0,2.0,0.0,2.0,1.5,2827.5700626174707,0.0,1300.0,0.0,0.0,52476.0,1,1,3,50.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,3496.7822773047947,0.044800100922511556,0.06663583880830846,34984.0,9,5,9,9_0,9_4,9_1_0 -10200,2,80.0,2,0.0,6,111,1,0,74,10.0,0.0,0.0,309.6976763289411,0.0,0.0,18469.0,0,10,2,9800,201110200,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3173.1601835906563,0.0,227.0,0.0,0.0,41553.0,0,5,1,75.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,309.6976763289411,0.01676851352693384,0.007453076223833203,41553.0,10,5,10,10_0,10_3,10_0_0 -10201,2,70.0,1,0.0,5,112,2,78,74,5.0,0.0,763.359475759892,552.5443123930447,0.0,2721.567562389016,43736.0,70,70,1,9802,201110201,,,220.0,,0.0,3.0,6.0,0.0,2.0,1.5,2794.0232705483495,0.0,405.0,1566.0,0.0,26960.0,6,5,1,125.0,7,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4037.4713505419527,0.09231460011299508,0.1497578394117935,17973.333333333332,5,3,5,5_1,5_0,5_0_0 -10202,1,41.0,2,374.0,99,221,1,0,67,3.0,0.0,0.0,395.6490138123036,0.0,875.906801688419,10357.0,0,50,2,9803,201110202,504.0,504.0,,24.0,1.0,0.0,5.0,3.0,4.0,2.1,2678.4638731292707,0.0,290.0,504.0,0.0,26713.0,0,1,3,90.0,1,2.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1271.5558155007227,0.12277259973937653,0.04760063697453385,12720.47619047619,3,2,3_1,3_0_1,3_1_1,3_0_0 -10203,1,40.0,3,260.0,1,221,4,85,63,1.0,0.0,0.0,1050.5163470188752,0.0,0.0,7109.0,71,50,1,9804,201110203,,,480.0,,1.0,0.0,3.0,1.0,3.0,1.8,2186.4354965569064,0.0,770.0,0.0,0.0,11600.0,6,4,3,40.0,1,3.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1050.5163470188752,0.14777273132914268,0.0905617540533513,6444.444444444444,1,1,1_1,1_1_1,1_1_1,1_1_0 -10204,1,87.0,3,139.0,1,112,2,0,86,3.0,0.0,0.0,1678.0975413418394,0.0,0.0,8772.0,0,71,2,9805,201110204,,,,332.0,0.0,9.0,2.0,0.0,1.0,1.0,6640.416914858249,0.0,1230.0,0.0,0.0,13927.0,0,5,3,36.0,9,3.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1678.0975413418394,0.1913015893002553,0.1204923918533668,13927.0,3,2,3_1,3_0_1,3_1_1,3_1_0 -10205,2,42.0,3,0.0,2,111,1,0,52,8.0,0.0,0.0,641.2242637647679,0.0,0.0,21799.0,0,71,2,9807,201110205,,,,,1.0,0.0,4.0,1.0,2.0,1.5,5843.136120071969,0.0,470.0,0.0,0.0,38560.0,0,1,1,78.0,8,7.0,2,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,641.2242637647679,0.029415306379410425,0.016629259952405807,25706.666666666668,8,4,8,8_0,8_3,8_0_1 -10206,1,45.0,4,160.0,9,111,4,0,52,3.0,0.0,0.0,818.5841665082144,0.0,0.0,47860.0,0,50,1,9808,201110206,,,,660.0,1.0,2.0,5.0,3.0,4.0,2.1,1516.680053698544,0.0,600.0,0.0,0.0,25950.0,0,1,3,90.0,8,6.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,818.5841665082144,0.017103722660012838,0.03154466922960364,12357.142857142857,2,1,2_1,2_1_1,2_2_1,2_0_0 -10207,2,50.0,4,0.0,9,221,5,68,12,1.0,0.0,0.0,955.0148609262501,156.41192887293198,0.0,24090.0,50,50,1,9810,201110207,,,400.0,,4.0,0.0,4.0,2.0,4.0,2.5,1215.1578762552424,0.0,700.0,0.0,0.0,21480.0,1,1,2,150.0,1,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1111.4267897991822,0.04613643793271823,0.05174240175973846,8592.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -10208,1,58.0,3,192.0,4,221,1,0,56,3.0,0.0,0.0,382.0059443705,0.0,0.0,10211.0,0,50,2,9811,201110208,,,,85.0,1.0,0.0,3.0,0.0,1.0,1.0,1965.0847141005443,0.0,280.0,0.0,0.0,14419.0,0,1,3,65.0,1,2.0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,382.0059443705,0.03741121774267946,0.02649323423056384,14419.0,3,2,3_1,3_0_1,3_1_1,3_0_1 -10209,2,34.0,4,0.0,1,112,2,67,54,6.0,0.0,0.0,1036.8732775770716,0.0,1112.2626053186273,45338.0,60,41,1,9812,201110209,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.1,1866.4673542539315,0.0,760.0,640.0,0.0,43395.0,1,1,2,75.0,9,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2149.135882895699,0.047402529509367394,0.04952496561575525,20664.285714285714,6,3,6,6_1,6_0,6_1_0 -10210,2,56.0,3,0.0,5,212,4,62,47,6.0,0.0,0.0,1918.2155635175823,0.0,0.0,35182.0,50,50,1,9813,201110210,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2617.5014704548016,0.0,1406.0,0.0,0.0,39030.0,1,1,1,90.0,3,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1918.2155635175823,0.05452264122328413,0.04914720890385812,19515.0,6,3,6,6_1,6_0,6_0_0 -10211,1,44.0,4,241.0,2,111,2,85,52,2.0,0.0,0.0,586.6519859975537,0.0,868.9551604051776,9974.0,71,60,2,9815,201110211,,,,115.0,1.0,2.0,5.0,1.0,3.0,2.0,3159.7227933603185,0.0,430.0,500.0,0.0,19102.0,4,1,3,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1455.6071464027314,0.14594015905381305,0.07620181899291861,9551.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -10212,2,57.0,3,0.0,7,111,2,56,68,5.0,0.0,0.0,654.8673332065715,0.0,1190.4685697550933,37251.0,71,50,1,9816,201110212,,,348.0,569.0,2.0,2.0,4.0,1.0,3.0,2.0,1215.1508341734227,0.0,480.0,685.0,0.0,34262.0,4,1,3,85.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1845.335902961665,0.049537888995239455,0.05385955002514929,17131.0,5,3,5,5_1,5_3,5_0_0 -10213,2,73.0,3,0.0,1,112,2,77,78,5.0,0.0,0.0,409.2920832541072,0.0,1937.770007703546,15402.0,71,71,1,9817,201110213,,,264.0,,0.0,2.0,6.0,0.0,2.0,1.5,4187.395991575494,0.0,300.0,1115.0,0.0,25558.0,5,5,1,100.0,7,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2347.0620909576533,0.15238683878442105,0.09183277607628348,17038.666666666668,5,3,5,5_1,5_0,5_1_0 -10214,2,62.0,4,0.0,1,111,4,0,75,7.0,0.0,0.0,1623.5252635746251,69.5164128324142,0.0,16296.0,0,50,1,9818,201110214,,,194.0,,0.0,1.0,4.0,0.0,1.0,1.0,1896.280824927639,0.0,1190.0,0.0,0.0,23985.0,0,5,1,70.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1693.0416764070394,0.10389308274466369,0.07058752038386656,23985.0,7,4,7,7_1,7_2,7_1_0 -10215,2,28.0,3,0.0,1,111,4,52,47,7.0,0.0,0.0,285.1401513336947,0.0,0.0,24517.0,50,50,2,9819,201110215,,,280.0,,2.0,0.0,3.0,1.0,3.0,1.8,4116.156563052269,0.0,209.0,0.0,0.0,43351.0,1,1,2,50.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,285.1401513336947,0.011630303517302064,0.006577475752201672,24083.888888888887,7,4,7,7_0,7_3,7_1_0 -10216,1,38.0,4,217.0,1,300,2,56,47,3.0,2855.620816449988,0.0,1473.4514997147858,312.82385774586396,0.0,17645.0,60,31,1,9821,201110216,,,300.0,,2.0,0.0,5.0,4.0,6.0,2.7,3033.933207678987,0.0,1080.0,0.0,0.0,38968.0,1,1,3,116.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,4641.896173910638,0.26307147486033655,0.11912071889526375,14432.592592592591,3,2,3_1,3_1_1,3_0_1,3_1_0 -10217,2,47.0,2,0.0,8,300,2,62,52,6.0,1665.7788095958263,48.5774211847204,774.926344294443,43.44775802025888,0.0,35407.0,71,42,1,9823,201110217,,,197.0,,2.0,1.0,3.0,0.0,2.0,1.5,2439.203196330132,0.0,568.0,0.0,0.0,30498.0,1,1,2,150.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2532.7303330952486,0.07153190987926819,0.0830457844152157,20332.0,6,3,6,6_1,6_0,6_0_0 -10218,2,41.0,3,0.0,1,111,2,52,52,7.0,0.0,0.0,654.8673332065715,0.0,1520.6715307090608,32066.0,30,31,2,9826,201110218,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3922.71432151257,0.0,480.0,875.0,0.0,36407.0,1,1,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2175.538863915632,0.06784565782809307,0.05975605965653946,24271.333333333332,7,4,7,7_0,7_3,7_1_0 -10219,2,38.0,2,0.0,5,111,2,52,37,8.0,2934.943616906932,0.0,1296.0915969713394,0.0,1216.5372245672486,46367.0,50,20,1,9827,201110219,,,650.0,,2.0,3.0,5.0,2.0,4.0,2.1,1610.5123884895934,0.0,950.0,700.0,0.0,59328.0,1,1,3,130.0,10,8.0,4,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5447.572438445521,0.11748813678792074,0.0918212722229895,28251.42857142857,8,4,8,8_1,8_4,8_0_0 -10220,2,57.0,4,0.0,2,112,5,85,65,6.0,0.0,902.152107716236,955.0148609262501,0.0,1025.3670892781097,43351.0,50,70,1,9828,201110220,,,395.0,,2.0,3.0,7.0,1.0,4.0,2.5,1829.7920459951017,0.0,700.0,590.0,0.0,47803.0,6,4,1,150.0,8,0.0,5,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2882.534057920596,0.06649290807410661,0.060300275253030056,19121.2,5,3,5,5_1,5_0,5_0_1 -10221,1,50.0,4,60.0,2,111,4,0,85,3.0,0.0,0.0,545.7227776721429,0.0,1216.5372245672486,20395.0,0,50,2,983,201110221,,,,240.0,0.0,0.0,2.0,0.0,1.0,1.0,2988.369123079228,0.0,400.0,700.0,0.0,12354.0,0,7,3,40.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1762.2600022393915,0.0864064722843536,0.14264691615989894,12354.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -10222,2,83.0,1,0.0,2,111,1,0,77,5.0,0.0,0.0,581.1947582208322,0.0,0.0,14205.0,0,71,8,9830,201110222,,,,516.0,0.0,2.0,2.0,0.0,1.0,1.0,3611.7879747911625,0.0,426.0,0.0,0.0,18960.0,0,5,3,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,581.1947582208322,0.04091480170509203,0.030653731973672587,18960.0,5,3,5,5_0,5_3,5_0_1 -10223,2,27.0,2,0.0,1,112,4,52,53,6.0,0.0,0.0,2592.183193942679,0.0,0.0,22830.0,42,43,1,9831,201110223,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2338.160887137225,0.0,1900.0,0.0,0.0,30390.0,1,1,3,66.0,5,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2592.183193942679,0.11354284686564516,0.08529724231466532,20260.0,6,3,6,6_1,6_0,6_1_0 -10224,2,79.0,2,0.0,4,120,3,75,75,7.0,0.0,0.0,777.6549581828036,302.3963958210018,0.0,40974.0,70,71,1,9833,201110224,,,67.0,,0.0,3.0,4.0,0.0,2.0,1.5,2874.221665905854,0.0,570.0,0.0,0.0,33230.0,5,5,1,90.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1080.0513540038055,0.026359431688480633,0.03250229774311783,22153.333333333332,7,4,7,7_1,7_1,7_0_1 -10225,1,29.0,3,152.0,1,111,4,81,63,2.0,0.0,0.0,818.5841665082144,0.0,0.0,12985.0,50,50,2,9835,201110225,,,,,2.0,0.0,1.0,0.0,2.0,1.5,3793.6367919641643,0.0,600.0,0.0,0.0,17984.0,4,1,3,9.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,818.5841665082144,0.06304075213771385,0.045517358013134696,11989.333333333334,2,1,2_1,2_0_1,2_4_1,2_1_0 -10226,1,20.0,4,88.0,3,111,1,0,62,5.0,0.0,0.0,231.93218051066074,0.0,0.0,14113.0,0,60,3,9836,201110226,,,,219.0,2.0,0.0,3.0,1.0,2.0,1.5,2667.1794343187903,0.0,170.0,0.0,0.0,27814.0,0,1,3,62.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,231.93218051066074,0.016433938957745396,0.008338684853335037,18542.666666666668,5,3,5,5_0,5_3,5_0_1 -10227,2,61.0,3,0.0,4,300,2,0,78,2.0,475.9368027416647,388.6193694777632,504.79356934673217,0.0,0.0,18572.0,0,50,1,9838,201110227,,,114.0,,0.0,0.0,5.0,0.0,2.0,1.5,2294.220809012702,0.0,370.0,0.0,0.0,17184.0,0,5,1,85.0,0,0.0,5,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1369.34974156616,0.0737319481782339,0.07968748496078677,11456.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -10228,1,44.0,4,240.0,1,111,4,0,38,7.0,0.0,0.0,1418.8792219475715,0.0,0.0,22081.0,0,20,2,9841,201110228,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2784.9520878292483,0.0,1040.0,0.0,0.0,22760.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1418.8792219475715,0.06425792409526614,0.06234091484831158,22760.0,7,4,7,7_0,7_4,7_1_0 -10229,2,38.0,2,0.0,2,111,2,43,43,7.0,0.0,0.0,1227.8762497623215,0.0,3128.2385774586396,76603.0,12,12,1,9843,201110229,,,300.0,,2.0,1.0,5.0,2.0,4.0,2.1,1214.553067367725,0.0,900.0,1800.0,0.0,47430.0,1,1,1,90.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4356.114827220961,0.056866112648603334,0.09184302819356865,22585.714285714286,7,4,7,7_1,7_3,7_0_1 -10230,1,46.0,5,140.0,7,111,4,85,63,3.0,0.0,0.0,1910.0297218525002,0.0,0.0,34990.0,50,50,1,9845,201110230,,,500.0,,2.0,0.0,6.0,3.0,5.0,2.8,1871.1543390108686,0.0,1400.0,0.0,0.0,36130.0,6,1,2,145.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1910.0297218525002,0.05458787430272936,0.05286547804739829,12903.57142857143,3,2,3_1,3_1_1,3_3_1,3_0_0 -10231,2,61.0,4,0.0,4,111,1,0,77,2.0,0.0,0.0,259.2183193942679,55.61313026593137,0.0,13436.0,0,70,2,9846,201110231,,,,185.0,0.0,2.0,2.0,0.0,1.0,1.0,2742.572433582973,0.0,190.0,0.0,0.0,10055.0,0,5,3,52.0,6,4.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,314.83144966019927,0.023431932841634362,0.031310934824485256,10055.0,2,1,2_0,2_0_0,2_2_0,2_0_1 -10232,2,63.0,2,0.0,4,111,2,75,75,9.0,264.93815352619333,205.4130952953891,714.2008459753603,0.0,2510.429087484219,72681.0,20,31,1,9849,201110232,,,204.0,,0.0,1.0,12.0,0.0,2.0,1.5,1374.458880211914,455.0,350.0,1163.0,0.0,54068.0,5,5,1,125.0,7,5.0,3,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3694.9811822811616,0.05083833714837663,0.06833952027597029,36045.333333333336,9,5,9,9_1,9_2,9_0_1 -10233,1,27.0,2,115.0,1,111,1,55,38,5.0,0.0,0.0,504.79356934673217,0.0,0.0,35081.0,20,20,2,9851,201110233,,,,760.0,2.0,0.0,3.0,0.0,3.0,2.0,2764.6042212049465,0.0,370.0,0.0,0.0,36707.0,1,1,3,65.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,504.79356934673217,0.014389372291175626,0.013751970178623483,18353.5,5,3,5,5_0,5_4,5_1_0 -10234,2,41.0,2,0.0,6,112,4,45,47,7.0,0.0,624.566843803548,1678.0975413418394,173.79103208103552,0.0,34751.0,31,31,1,9853,201110234,,,264.0,,2.0,0.0,4.0,1.0,3.0,1.8,1976.7938405806271,0.0,1230.0,0.0,0.0,42042.0,1,1,1,100.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2476.455417226423,0.07126285336325351,0.05890431989977696,23356.666666666668,7,4,7,7_1,7_0,7_0_0 -10235,2,38.0,4,0.0,1,112,2,0,63,6.0,0.0,0.0,1637.1683330164287,78.20596443646599,0.0,17579.0,0,50,1,9854,201110235,,,320.0,,1.0,0.0,2.0,0.0,1.0,1.0,3679.688090872491,0.0,1200.0,0.0,0.0,19880.0,0,1,3,60.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1715.3742974528948,0.09758088045127111,0.08628643347348565,19880.0,6,3,6,6_1,6_0,6_1_0 -10236,2,26.0,2,0.0,5,111,2,37,34,10.0,0.0,0.0,51.843663878853576,0.0,180.74267336427695,83378.0,10,10,1,9855,201110236,,,40.0,,2.0,0.0,6.0,1.0,3.0,1.8,2050.1606953452683,0.0,38.0,104.0,0.0,72966.0,1,1,2,130.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,232.58633724313052,0.002789540853020347,0.0031875988438879823,40536.666666666664,10,5,10,10_1,10_3,10_0_0 -10237,2,80.0,2,0.0,7,300,2,77,74,6.0,0.0,0.0,941.3717914844465,2711.1401004641543,0.0,13922.0,71,12,1,9856,201110237,,,,,0.0,4.0,6.0,0.0,2.0,1.5,2188.313853335786,0.0,690.0,0.0,0.0,32213.0,5,5,1,150.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3652.511891948601,0.2623554009444477,0.11338626926857483,21475.333333333332,6,3,6,6_1,6_0,6_0_0 -10238,2,60.0,1,0.0,4,111,1,0,74,8.0,0.0,0.0,518.4366387885358,0.0,17.37910320810355,27770.0,0,50,2,9857,201110238,30.0,30.0,,630.0,0.0,4.0,3.0,0.0,1.0,1.0,2325.9522322052744,0.0,380.0,10.0,0.0,25944.0,0,5,3,62.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,535.8157419966393,0.01929476924726825,0.020652780681338242,25944.0,8,4,8,8_0,8_2,8_0_1 -10239,2,75.0,3,0.0,5,111,4,77,75,8.0,0.0,0.0,1500.737638598393,0.0,0.0,29395.0,70,60,1,9859,201110239,,,250.0,,0.0,1.0,3.0,0.0,2.0,1.5,1992.160824231063,0.0,1100.0,0.0,0.0,41585.0,5,5,1,80.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1500.737638598393,0.05105418059528467,0.036088436662219385,27723.333333333332,8,4,8,8_1,8_4,8_0_0 -10240,2,50.0,2,0.0,6,112,2,22,46,7.0,3966.1400228472053,0.0,2222.429143116159,104.27461924862132,1426.8586001639926,33658.0,60,50,1,986,201110240,,,374.0,,2.0,0.0,6.0,1.0,3.0,1.8,2525.562897662468,1327.0,1123.0,0.0,0.0,44407.0,1,1,1,300.0,9,2.0,4,5,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,7719.702385375978,0.22935713308503114,0.17383976367185305,24670.555555555555,7,4,7,7_1,7_1,7_0_0 -10241,1,26.0,1,259.0,7,111,2,0,55,6.0,0.0,0.0,518.4366387885358,0.0,903.7133668213847,11623.0,0,71,2,9860,201110241,,,,,1.0,1.0,2.0,1.0,2.0,1.5,3335.3031224780043,0.0,380.0,520.0,0.0,28604.0,0,1,3,75.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1422.1500056099205,0.12235653494019792,0.049718571025378286,19069.333333333332,5,3,5,5_0,5_3,5_0_0 -10242,2,47.0,3,0.0,8,111,2,0,53,7.0,0.0,0.0,491.1504999049286,0.0,278.0656513296568,29164.0,0,41,2,9863,201110242,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2903.498881330442,0.0,360.0,160.0,0.0,29412.0,0,1,2,65.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,769.2161512345854,0.026375536662823527,0.02615313991685657,22624.615384615383,7,4,7,7_0,7_3,7_0_0 -10243,2,37.0,3,0.0,6,300,2,55,63,6.0,0.0,0.0,1276.9912997528145,119.9158121359145,0.0,30421.0,41,42,1,9864,201110243,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2253.2936701832296,0.0,936.0,0.0,0.0,30683.0,4,1,1,110.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1396.907111888729,0.04591917135823047,0.045527070752166644,20455.333333333332,6,3,6,6_1,6_0,6_0_0 -10245,2,77.0,1,0.0,7,111,5,77,75,7.0,0.0,83.27557917380639,1296.0915969713394,0.0,0.0,14430.0,60,41,1,9869,201110245,,,150.0,,0.0,2.0,4.0,0.0,2.0,1.5,3218.1567343321803,0.0,950.0,0.0,0.0,35558.0,5,5,1,80.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1379.3671761451458,0.0955902408970995,0.03879203487668445,23705.333333333332,7,4,7,7_1,7_2,7_0_0 -10246,2,82.0,2,0.0,1,211,2,0,77,6.0,0.0,0.0,545.7227776721429,0.0,1477.223772688802,16706.0,0,41,1,9870,201110246,,,155.0,,0.0,0.0,4.0,0.0,1.0,1.0,5120.222869350904,0.0,400.0,850.0,0.0,21210.0,0,5,1,180.0,3,3.0,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2022.946550360945,0.12109101821866065,0.095377017933095,21210.0,6,3,6,6_1,6_1,6_1_0 -10247,1,40.0,4,100.0,4,111,1,85,64,5.0,0.0,0.0,818.5841665082144,0.0,1400.7557185731464,36490.0,71,42,2,9871,201110247,656.0,656.0,,274.0,1.0,0.0,3.0,5.0,7.0,3.0,5404.194908853979,0.0,600.0,806.0,0.0,51805.0,6,1,3,63.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2219.339885081361,0.06082049561746673,0.04284026416526129,17268.333333333332,5,3,5,5_0,5_4,5_0_1 -10248,0,71.0,3,0.0,1,400,5,86,74,4.0,0.0,2081.88947934516,1581.231748305034,166.8393907977941,0.0,46287.0,71,20,1,9873,201110248,,,165.0,,0.0,6.0,3.0,0.0,2.0,1.5,2073.7071709900733,0.0,1159.0,0.0,0.0,24824.0,5,5,5,160.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3829.960618447988,0.08274376430634926,0.15428458823912294,16549.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0 -10249,2,78.0,3,0.0,4,111,2,72,72,5.0,2221.038412794435,0.0,1259.2295200614549,0.0,2024.6983753645804,13969.0,70,50,1,9875,201110249,,,88.0,,0.0,0.0,4.0,0.0,2.0,1.5,1685.0640311654513,1883.0,205.0,0.0,0.0,26536.0,5,5,1,150.0,8,7.0,3,5,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5504.96630822047,0.39408449482571906,0.20745275505805208,17690.666666666668,5,3,5,5_1,5_3,5_0_1 -10250,2,64.0,3,0.0,2,111,4,0,78,3.0,0.0,0.0,1487.0945691565894,0.0,0.0,25930.0,0,70,1,9876,201110250,,,97.0,,0.0,4.0,5.0,0.0,1.0,1.0,4921.575788678538,0.0,1090.0,0.0,0.0,13783.0,0,5,1,65.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1487.0945691565894,0.05735034975536403,0.10789338817068776,13783.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -10251,2,50.0,3,0.0,6,112,4,67,48,5.0,0.0,0.0,1773.5990274344645,152.93610823131127,0.0,36660.0,71,50,1,9878,201110251,,,600.0,,2.0,4.0,5.0,2.0,4.0,2.5,2577.147132776791,0.0,1300.0,0.0,0.0,42092.0,1,1,1,100.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1926.5351356657757,0.05255142214036486,0.0457696269045371,16836.8,4,2,4_0,4_1_0,4_0_0,4_0_0 -10252,2,52.0,3,0.0,5,112,4,75,46,8.0,0.0,0.0,955.0148609262501,52.13730962431066,0.0,14143.0,50,50,1,9879,201110252,,,,,1.0,1.0,4.0,0.0,2.0,1.5,1261.332113721404,0.0,700.0,0.0,0.0,39920.0,5,1,1,82.0,10,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1007.1521705505608,0.0712120604221566,0.025229262789342705,26613.333333333332,8,4,8,8_1,8_1,8_0_0 -10253,2,59.0,2,0.0,5,111,5,77,78,7.0,0.0,0.0,654.8673332065715,0.0,2344.441022773169,78109.0,70,71,1,988,201110253,,,649.0,,0.0,5.0,5.0,1.0,3.0,2.0,1896.8499899796907,0.0,480.0,1349.0,0.0,45229.0,5,4,1,120.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2999.3083559797406,0.038399011074008636,0.06631383307125385,22614.5,7,4,7,7_1,7_3,7_0_0 -10254,2,56.0,2,0.0,5,221,5,75,22,10.0,0.0,936.8502657053219,1460.407483035698,104.27461924862132,181.71748562751677,62605.0,10,41,1,9881,201110254,,,,,1.0,2.0,8.0,0.0,2.0,1.5,4700.850538480906,169.0,1006.0,0.0,0.0,76411.0,5,1,1,300.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2683.249853617158,0.042859992869853175,0.0351160154116182,50940.666666666664,10,5,10,10_1,10_1,10_0_0 -10255,2,44.0,3,0.0,7,112,2,46,46,8.0,0.0,111.0341055650752,783.112185959525,0.0,1195.6823007175244,47768.0,41,50,1,9882,201110255,,,520.0,,2.0,0.0,6.0,2.0,4.0,2.5,2611.789432944048,0.0,574.0,688.0,0.0,69515.0,1,1,1,140.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2089.8285922421246,0.043749551838932435,0.03006298773275012,27806.0,8,4,8,8_1,8_1,8_0_0 -10256,2,43.0,2,0.0,5,112,2,22,22,7.0,0.0,0.0,2144.690516251522,43.44775802025888,0.0,37163.0,50,50,1,9883,201110256,,,530.0,,2.0,0.0,5.0,2.0,4.0,2.3,1825.7576832951324,0.0,1572.0,0.0,0.0,51946.0,1,1,1,84.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2188.1382742717806,0.05887948427930416,0.042123325651094994,22585.217391304348,7,4,7,7_1,7_0,7_0_0 -10257,2,32.0,3,0.0,5,111,4,43,62,4.0,0.0,0.0,944.1004053728072,90.37133668213848,0.0,44050.0,41,41,2,9884,201110257,,,100.0,399.0,2.0,0.0,3.0,1.0,3.0,1.8,2882.8005010157704,0.0,692.0,0.0,0.0,29356.0,4,1,3,67.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1034.4717420549457,0.023484035006922716,0.035238852093437315,16308.888888888889,4,2,4_0,4_0_0,4_2_0,4_0_0 -10258,1,63.0,3,247.0,4,400,2,0,86,3.0,0.0,0.0,417.59619610003614,0.0,1313.7095438361198,6572.0,0,70,2,9886,201110258,,,,,0.0,4.0,2.0,0.0,1.0,1.0,2612.003830078426,252.0,210.0,600.0,0.0,13604.0,0,5,3,55.0,0,0.0,1,7,0,1,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,1731.305739936156,0.2634366615849294,0.1272644619182708,13604.0,3,2,3_1,3_0_1,3_0_1,3_0_1 -10259,2,83.0,2,0.0,1,111,2,72,72,5.0,0.0,0.0,865.1014285644995,0.0,1788.1430686305348,27511.0,70,70,1,9887,201110259,,,151.0,,0.0,3.0,4.0,0.0,2.0,1.5,1714.9889029230576,1663.0,0.0,0.0,0.0,25511.0,5,5,1,80.0,3,4.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2653.2444971950345,0.09644304086347405,0.1040039393671371,17007.333333333332,4,2,4_0,4_1_0,4_2_0,4_1_0 -10260,2,58.0,3,0.0,6,111,4,0,52,8.0,0.0,0.0,1028.2564737571201,52.13730962431066,501.0671497184782,21071.0,0,50,2,9888,201110260,,,,,1.0,1.0,4.0,0.0,1.0,1.0,1894.7077824796718,466.0,576.0,0.0,0.0,28645.0,0,5,1,81.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1581.460933099909,0.07505390978595743,0.05520896956187499,28645.0,8,4,8,8_0,8_3,8_0_0 -10261,2,81.0,3,0.0,5,300,4,0,86,2.0,0.0,0.0,3151.5490410566254,0.0,0.0,18907.0,0,71,1,989,201110261,,,100.0,,0.0,4.0,5.0,0.0,1.0,1.0,4354.740321472928,0.0,2310.0,0.0,0.0,11870.0,0,5,1,98.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3151.5490410566254,0.1666868906255157,0.2655053952027486,11870.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -10262,1,45.0,4,200.0,1,111,6,0,56,3.0,0.0,0.0,1309.734666413143,0.0,0.0,23766.0,0,71,2,9892,201110262,,,,200.0,1.0,0.0,1.0,2.0,3.0,1.8,2993.3294980417836,0.0,960.0,0.0,0.0,23932.0,0,1,3,20.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1309.734666413143,0.05510959633144589,0.054727338559800394,13295.555555555555,3,2,3_1,3_0_1,3_4_1,3_1_0 -10263,2,80.0,1,0.0,1,111,2,77,75,8.0,0.0,0.0,652.1387193182107,0.0,2485.211758758808,30167.0,60,42,1,9893,201110263,,,164.0,,0.0,2.0,7.0,0.0,2.0,1.5,2884.4082889836077,0.0,478.0,1430.0,0.0,38771.0,5,5,1,110.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3137.350478077019,0.10399941916919213,0.08092002986967112,25847.333333333332,8,4,8,8_1,8_2,8_1_0 -10264,2,64.0,2,0.0,3,111,1,0,37,10.0,0.0,0.0,703.9823831970643,0.0,0.0,39088.0,0,10,2,9894,201110264,,,,,1.0,1.0,4.0,0.0,1.0,1.0,3015.148319633944,0.0,516.0,0.0,0.0,57095.0,0,1,1,82.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,703.9823831970643,0.01801019195653562,0.012330018096104112,57095.0,10,5,10,10_0,10_3,10_0_1 -10265,1,63.0,2,145.0,2,111,2,0,75,6.0,0.0,0.0,545.7227776721429,0.0,2606.865481215533,17572.0,0,50,1,9895,201110265,,,,,0.0,0.0,3.0,1.0,2.0,1.5,1948.023109780933,0.0,400.0,1500.0,0.0,29250.0,0,5,3,70.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,3152.5882588876757,0.1794097575055586,0.10778079517564704,19500.0,6,3,6,6_1,6_2,6_0_1 -10266,1,46.0,3,103.0,2,211,1,0,56,1.0,0.0,0.0,275.59000272443217,0.0,0.0,11852.0,0,71,8,9896,201110266,,,,105.0,1.0,1.0,4.0,1.0,2.0,1.3,3199.7691459236307,0.0,202.0,0.0,0.0,10869.0,0,4,3,70.0,4,3.0,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,275.59000272443217,0.023252615822176186,0.025355598741782333,8360.76923076923,1,1,1_1,1_0_1,1_1_1,1_0_1 -10267,2,51.0,3,0.0,1,120,5,54,42,7.0,0.0,693.9631597817199,1401.1432316732269,194.64595593075978,0.0,39908.0,41,30,1,9898,201110267,,,,,3.0,1.0,6.0,1.0,3.0,2.0,1785.483533208623,0.0,1027.0,0.0,0.0,47143.0,1,1,1,271.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2289.7523473857063,0.05737577296245631,0.04857035715558421,23571.5,7,4,7,7_1,7_0,7_1_0 -10268,2,46.0,4,0.0,9,211,2,0,62,8.0,0.0,0.0,395.6490138123036,0.0,921.0924700294883,17897.0,0,50,1,9899,201110268,,,90.0,601.0,1.0,3.0,4.0,0.0,1.0,1.0,3615.721501191918,0.0,290.0,530.0,0.0,26849.0,0,1,3,100.0,3,3.0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1316.741483841792,0.07357330747286092,0.04904247770277448,26849.0,8,4,8,8_1,8_1,8_0_0 -10269,2,60.0,3,0.0,9,120,4,77,78,5.0,0.0,305.3437903039568,900.4425831590357,104.27461924862132,0.0,39227.0,50,50,1,99,201110269,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,2204.1536847489615,0.0,660.0,0.0,0.0,25910.0,5,5,1,115.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1310.0609927116138,0.03339692030263884,0.05056198350874619,17273.333333333332,5,3,5,5_1,5_0,5_0_0 -10270,2,60.0,3,0.0,4,112,6,78,78,3.0,1522.997768773327,0.0,349.26257771017146,328.46505063315715,0.0,20670.0,50,70,1,9900,201110270,,,310.0,,0.0,2.0,2.0,0.0,2.0,1.5,1822.0137381331672,0.0,256.0,0.0,0.0,20740.0,5,5,3,37.0,8,0.0,3,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2200.7253971166556,0.10646954025721604,0.1061101927250075,13826.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1 -10271,2,68.0,1,0.0,1,111,6,77,74,10.0,1903.7472109666587,0.0,1735.3984329974144,145.98446694806984,0.0,40271.0,70,20,1,9901,201110271,,,420.0,,0.0,4.0,4.0,0.0,2.0,1.5,904.9884178945869,0.0,1272.0,0.0,0.0,56688.0,5,5,1,100.0,7,5.0,3,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3785.130110912143,0.09399146062705528,0.066771276300313,37792.0,10,5,10,10_1,10_2,10_1_0 -10272,2,23.0,3,0.0,99,111,1,67,63,5.0,0.0,0.0,382.0059443705,0.0,0.0,22077.0,43,50,2,9902,201110272,,,,313.0,2.0,0.0,4.0,1.0,3.0,1.8,2776.768838152278,0.0,280.0,0.0,0.0,33418.0,1,1,3,80.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,382.0059443705,0.017303344855301897,0.011431143227317614,18565.555555555555,5,3,5,5_0,5_3,5_0_0 -10273,1,20.0,1,170.0,4,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,3438.0,0,41,2,9903,201110273,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3742.414242050222,0.0,0.0,0.0,0.0,2054.0,0,3,3,35.0,8,7.0,1,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0.0,0.0,0.0,2054.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -10274,2,27.0,2,0.0,6,111,6,34,38,9.0,190.37472109666587,0.0,699.8894623645233,0.0,0.0,43230.0,20,12,1,9905,201110274,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2362.976694481335,0.0,513.0,0.0,0.0,59394.0,1,1,2,35.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,890.2641834611892,0.02059366605276866,0.01498912656937046,32996.666666666664,9,5,9,9_1,9_3,9_0_0 -10275,2,72.0,2,0.0,5,112,6,75,75,8.0,0.0,0.0,1525.2951635936395,0.0,0.0,31498.0,71,71,1,9906,201110275,,,313.0,,0.0,1.0,5.0,0.0,2.0,1.5,4018.284644434825,0.0,1118.0,0.0,0.0,41886.0,5,5,1,120.0,7,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1525.2951635936395,0.04842514329778524,0.03641539329593753,27924.0,8,4,8,8_1,8_1,8_0_0 -10276,2,40.0,1,0.0,9,221,6,46,47,8.0,0.0,0.0,1841.8143746434823,0.0,0.0,42832.0,50,31,1,9907,201110276,,,260.0,,2.0,0.0,5.0,2.0,4.0,2.1,3739.597036549181,0.0,1350.0,0.0,0.0,60561.0,1,1,2,128.0,1,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1841.8143746434823,0.04300089593396251,0.030412548911733332,28838.571428571428,8,4,8,8_1,8_1,8_0_0 -10277,2,63.0,3,0.0,6,120,5,78,77,5.0,0.0,0.0,1705.3836802254466,93.84715732375918,0.0,24924.0,71,71,1,9908,201110277,,,240.0,,1.0,6.0,5.0,1.0,3.0,2.0,3626.6319591393453,0.0,1250.0,0.0,0.0,36662.0,5,5,1,116.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1799.2308375492057,0.07218868711078502,0.04907617799217734,18331.0,5,3,5,5_1,5_0,5_0_0 -10278,1,26.0,4,365.0,1,111,2,0,69,1.0,0.0,0.0,88.67995137172322,0.0,729.9223347403492,15359.0,0,60,2,9909,201110278,,,,85.0,1.0,0.0,3.0,1.0,2.0,1.3,3101.4157540072247,0.0,65.0,420.0,0.0,12080.0,0,4,3,64.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,818.6022861120724,0.05329788958344114,0.06776508990993976,9292.307692307691,1,1,1_1,1_0_1,1_3_1,1_1_0 -10279,2,31.0,3,0.0,99,111,1,43,64,4.0,0.0,0.0,1023.230208135268,0.0,955.8506764456954,26840.0,71,50,2,9910,201110279,,,,650.0,2.0,0.0,4.0,2.0,4.0,2.1,3471.3379592714,0.0,750.0,550.0,0.0,33224.0,1,1,3,76.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1979.0808845809634,0.07373624756262903,0.05956780895078748,15820.95238095238,4,2,4_0,4_0_0,4_4_0,4_0_0 -10280,2,51.0,2,0.0,2,212,6,43,42,6.0,1903.7472109666587,0.0,832.2272359500179,0.0,0.0,22430.0,50,20,1,9911,201110280,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2491.2708958240996,0.0,610.0,0.0,0.0,51601.0,1,1,1,300.0,3,0.0,4,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2735.9744469166767,0.12197835251523302,0.05302173304619439,20640.4,6,3,6,6_1,6_0,6_0_1 -10281,2,43.0,2,0.0,8,111,2,0,33,9.0,0.0,0.0,721.718373471409,0.0,0.0,22846.0,0,20,2,9912,201110281,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2812.5959074416405,0.0,529.0,0.0,0.0,30849.0,0,1,2,60.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,721.718373471409,0.031590579246756935,0.0233951950945382,30849.0,9,5,9,9_0,9_2,9_0_0 -10282,2,88.0,2,0.0,8,221,2,0,75,8.0,0.0,0.0,851.3275331685429,0.0,0.0,25218.0,0,71,2,9914,201110282,,,300.0,,0.0,0.0,3.0,0.0,1.0,1.0,4413.289641846889,0.0,624.0,0.0,0.0,28828.0,0,5,1,75.0,1,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,851.3275331685429,0.03375872524262602,0.02953127283087772,28828.0,8,4,8,8_0,8_1,8_0_0 -10283,2,45.0,3,0.0,1,120,5,67,52,6.0,0.0,0.0,1620.7966496862643,0.0,0.0,46247.0,50,42,1,9915,201110283,,,,,3.0,0.0,4.0,2.0,4.0,2.5,1994.5389442086807,0.0,1188.0,0.0,0.0,51089.0,1,1,1,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1620.7966496862643,0.03504652517322776,0.031724963293199404,20435.6,6,3,6,6_1,6_0,6_1_0 -10284,2,76.0,3,0.0,5,400,2,78,71,2.0,0.0,277.585263912688,1080.531099790843,250.25908619669116,0.0,14203.0,70,71,1,9918,201110284,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1699.3390331198252,0.0,792.0,0.0,0.0,16987.0,5,5,1,90.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1608.3754499002223,0.11324195239739648,0.09468272501914536,11324.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0 -10285,2,75.0,4,0.0,3,400,2,77,78,3.0,0.0,0.0,620.7596596020626,0.0,2057.6858198394607,25358.0,70,71,1,9919,201110285,,,260.0,,0.0,5.0,6.0,0.0,2.0,1.5,3062.8911350240724,0.0,455.0,1184.0,0.0,21550.0,5,5,1,95.0,0,1.0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2678.4454794415233,0.10562526537745577,0.12428981343116118,14366.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_1 -10286,2,74.0,3,0.0,3,111,1,77,78,5.0,0.0,0.0,313.79059716148214,0.0,0.0,30844.0,70,50,2,992,201110286,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1838.3963954695414,0.0,230.0,0.0,0.0,26420.0,5,5,1,75.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,313.79059716148214,0.010173472868677284,0.0118770097335913,17613.333333333332,5,3,5,5_0,5_3,5_0_1 -10287,2,63.0,2,0.0,6,111,2,78,74,10.0,0.0,0.0,1500.737638598393,0.0,1911.7013528913908,39509.0,60,60,1,9920,201110287,,,450.0,,0.0,2.0,6.0,0.0,2.0,1.5,2595.696827539928,0.0,1100.0,1100.0,0.0,74550.0,6,5,1,130.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3412.438991489784,0.08637118103444237,0.045773829530379395,49700.0,10,5,10,10_1,10_3,10_0_0 -10288,2,74.0,2,0.0,2,221,5,0,78,2.0,0.0,693.9631597817199,718.9897595830482,104.27461924862132,0.0,16734.0,0,71,1,9921,201110288,,,46.0,,0.0,0.0,5.0,0.0,1.0,1.0,4114.982012004647,0.0,527.0,0.0,0.0,10488.0,0,5,1,100.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1517.2275386133895,0.0906673561977644,0.14466319018052912,10488.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -10289,2,74.0,2,0.0,3,111,1,78,75,7.0,0.0,0.0,611.5150448766543,0.0,1221.361753897032,29606.0,50,33,2,9923,201110289,,,,,0.0,5.0,4.0,0.0,2.0,1.5,2441.325637493595,651.0,200.0,300.0,0.0,34060.0,5,5,1,72.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1832.8767987736865,0.061908964357687175,0.053813176710912694,22706.666666666668,7,4,7,7_0,7_2,7_0_1 -10290,1,47.0,4,161.0,3,111,1,0,68,3.0,0.0,0.0,341.0767360450893,0.0,0.0,7811.0,0,31,2,9924,201110290,,,,76.0,1.0,0.0,3.0,0.0,1.0,1.0,6506.84575813539,0.0,250.0,0.0,0.0,13555.0,0,1,3,40.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,341.0767360450893,0.0436662061253475,0.025162429807826583,13555.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -10291,2,78.0,2,0.0,2,111,2,72,75,2.0,0.0,0.0,338.3481221567286,0.0,2716.353831426585,14463.0,70,70,1,9925,201110291,,,167.0,,0.0,2.0,4.0,0.0,2.0,1.5,989.0551717470934,0.0,248.0,1563.0,0.0,17171.0,5,5,5,80.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3054.7019535833138,0.21120804491345596,0.17789889660376879,11447.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_1 -10292,0,53.0,3,0.0,1,400,4,52,63,4.0,0.0,277.585263912688,3738.2010270541787,208.54923849724264,0.0,33661.0,60,50,1,9926,201110292,,,131.0,,3.0,2.0,4.0,1.0,4.0,2.5,1332.9306367337208,0.0,2740.0,0.0,0.0,38237.0,1,1,5,80.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4224.33552946411,0.12549643591884108,0.11047769253508669,15294.8,4,2,4_0,4_1_0,4_0_0,4_1_0 -10293,2,55.0,3,0.0,6,112,5,0,52,7.0,0.0,277.585263912688,886.7995137172322,41.709847699448524,0.0,12801.0,0,41,1,9927,201110293,,,139.0,,1.0,2.0,5.0,0.0,1.0,1.0,2652.82248520494,0.0,650.0,0.0,0.0,23730.0,0,1,1,105.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1206.094625329369,0.09421878176153183,0.05082573220941294,23730.0,7,4,7,7_1,7_0,7_0_0 -10294,2,48.0,3,0.0,3,111,2,48,64,4.0,63.458240365555284,0.0,96.86579303680537,1477.223772688802,0.0,22506.0,43,50,2,9929,201110294,,,,520.0,2.0,0.0,3.0,1.0,3.0,2.0,2749.6019661359037,0.0,71.0,0.0,0.0,32464.0,4,1,3,70.0,6,5.0,4,8,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1637.5478060911628,0.07276049969302242,0.05044196051291162,16232.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -10295,1,70.0,3,56.0,99,111,6,0,77,4.0,0.0,0.0,1070.9809511815804,43.44775802025888,0.0,15722.0,0,71,2,993,201110295,,,,,0.0,5.0,2.0,0.0,1.0,1.0,3082.3578390116872,0.0,785.0,0.0,0.0,14652.0,0,5,3,60.0,5,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1114.4287092018392,0.07088339328341427,0.07605983546286099,14652.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -10296,1,66.0,4,248.0,1,300,4,0,72,1.0,0.0,0.0,515.708024900175,0.0,0.0,7277.0,0,50,1,9930,201110296,,,60.0,,0.0,1.0,2.0,0.0,1.0,1.0,1603.0131693891037,0.0,378.0,0.0,0.0,7496.0,0,5,3,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,515.708024900175,0.07086821834549609,0.0687977621264908,7496.0,1,1,1_1,1_1_1,1_0_1,1_1_0 -10297,2,36.0,2,0.0,9,111,2,34,37,9.0,0.0,0.0,1862.2789788061878,0.0,0.0,72786.0,10,10,1,9932,201110297,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1685.728746125872,0.0,1365.0,0.0,0.0,72907.0,1,1,2,130.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1862.2789788061878,0.02558567552559816,0.025543212295200568,34717.619047619046,9,5,9,9_1,9_3,9_0_0 -10298,2,52.0,2,0.0,9,400,4,54,21,7.0,0.0,0.0,4775.07430463125,264.162368763174,0.0,39827.0,31,60,1,9934,201110298,,,,,2.0,2.0,3.0,0.0,2.0,1.5,2353.8284385117386,0.0,3500.0,0.0,0.0,33969.0,1,1,1,120.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5039.236673394424,0.12652815108831755,0.1483481018986259,22646.0,7,4,7,7_1,7_0,7_0_0 -10299,2,41.0,3,0.0,9,112,6,54,21,8.0,0.0,0.0,1364.3069441803573,0.0,0.0,24496.0,31,44,1,9936,201110299,,,,,2.0,0.0,6.0,3.0,5.0,2.4,2903.634770398873,0.0,1000.0,0.0,0.0,68015.0,1,1,2,150.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1364.3069441803573,0.05569509079769584,0.020058912654272693,28339.583333333336,8,4,8,8_1,8_0,8_0_0 -10300,2,43.0,2,0.0,7,400,2,85,22,2.0,0.0,0.0,1060.0664956281375,3611.377646643918,0.0,43636.0,12,12,1,9937,201110300,,,231.0,,1.0,0.0,6.0,2.0,4.0,2.1,2267.5100284969812,0.0,777.0,0.0,0.0,23430.0,6,1,1,160.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4671.444142272056,0.10705482038390447,0.199378751270681,11157.142857142857,2,1,2_0,2_1_0,2_0_0,2_0_0 -10301,2,45.0,3,0.0,6,111,2,45,52,6.0,0.0,0.0,545.7227776721429,0.0,1496.340786217716,24881.0,41,41,1,9938,201110301,,,165.0,,2.0,1.0,5.0,1.0,3.0,2.0,4508.072687761956,0.0,400.0,861.0,0.0,41485.0,1,1,2,130.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2042.0635638898589,0.08207321104014545,0.04922414279594694,20742.5,6,3,6,6_1,6_3,6_0_0 -10302,1,31.0,4,428.0,4,111,1,85,56,2.0,0.0,0.0,526.6224804536179,0.0,503.99399303500303,18163.0,30,50,2,9939,201110302,,,,516.0,1.0,0.0,4.0,3.0,5.0,2.4,3296.7222346903727,0.0,386.0,290.0,0.0,26936.0,4,1,3,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1030.6164734886208,0.05674263466875631,0.03826167483993989,11223.333333333334,2,1,2_1,2_0_1,2_4_1,2_0_1 -10303,2,77.0,2,0.0,1,111,6,0,77,4.0,0.0,0.0,177.35990274344644,660.405921907935,0.0,11628.0,0,70,2,994,201110303,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3307.6091748584113,0.0,130.0,0.0,0.0,16196.0,0,5,1,40.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,837.7658246513814,0.07204728454174247,0.05172671182090525,16196.0,4,2,4_0,4_0_0,4_2_0,4_1_0 -10304,1,39.0,5,427.0,5,221,2,0,56,1.0,0.0,0.0,368.36287492869644,0.0,1824.805836850873,14377.0,0,60,1,9940,201110304,,,400.0,,2.0,0.0,5.0,3.0,4.0,2.3,1866.8498159194332,0.0,270.0,1050.0,0.0,20809.0,0,4,3,100.0,1,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2193.1687117795695,0.1525470342755491,0.10539519975873754,9047.391304347826,1,1,1_1,1_1_1,1_1_1,1_0_0 -10305,1,24.0,1,256.0,1,111,4,0,46,5.0,0.0,0.0,409.2920832541072,0.0,0.0,16743.0,0,10,2,9941,201110305,,,,199.0,1.0,0.0,2.0,0.0,1.0,1.0,3748.777983820997,0.0,300.0,0.0,0.0,17442.0,0,1,3,36.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,409.2920832541072,0.02444556431070341,0.023465891712768444,17442.0,5,3,5,5_0,5_3,5_1_0 -10306,2,61.0,3,0.0,5,111,4,54,74,9.0,0.0,277.585263912688,2005.531207945125,0.0,0.0,25544.0,50,20,1,9942,201110306,,,380.0,,1.0,2.0,8.0,0.0,2.0,1.5,3516.1702739178004,0.0,1470.0,0.0,0.0,45669.0,4,5,1,150.0,4,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2283.116471857813,0.08937975539687648,0.049992696837194005,30446.0,9,5,9,9_1,9_2,9_0_0 -10307,2,39.0,2,0.0,7,111,4,33,37,10.0,0.0,0.0,1091.4455553442858,0.0,0.0,41760.0,10,10,2,9943,201110307,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3116.626800340391,0.0,800.0,0.0,0.0,79690.0,1,1,2,72.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1091.4455553442858,0.026136148355945542,0.01369614199202266,53126.666666666664,10,5,10,10_0,10_3,10_0_0 -10308,2,73.0,2,0.0,4,111,2,78,75,8.0,0.0,0.0,841.012130377816,0.0,1780.5949807730435,33945.0,70,41,1,9945,201110308,,,360.0,,0.0,1.0,6.0,0.0,2.0,1.5,1151.2742548320143,169.0,552.0,920.0,0.0,40454.0,5,5,5,90.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2621.6071111508595,0.07723102404333067,0.06480464505737034,26969.333333333332,8,4,8,8_1,8_2,8_0_1 -10309,2,50.0,2,0.0,2,112,5,62,65,9.0,0.0,346.98157989085996,703.9823831970643,145.98446694806984,0.0,23729.0,71,43,1,9949,201110309,,,196.0,,2.0,1.0,4.0,0.0,2.0,1.5,1720.4032435844454,0.0,516.0,0.0,0.0,46199.0,1,1,3,69.0,9,2.0,3,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1196.948430035994,0.05044243036099263,0.02590853546691474,30799.333333333332,9,5,9,9_1,9_1,9_0_1 -10310,2,60.0,2,0.0,6,112,4,78,74,6.0,0.0,249.82673752141918,193.73158607361074,194.64595593075978,0.0,30313.0,50,31,1,995,201110310,,,320.0,,0.0,3.0,6.0,0.0,2.0,1.5,1747.780548178962,0.0,142.0,0.0,0.0,31292.0,5,5,1,120.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,638.2042795257897,0.021053814519374187,0.020395125895621556,20861.333333333332,6,3,6,6_1,6_1,6_0_0 -10311,2,63.0,3,0.0,5,112,2,75,54,7.0,0.0,0.0,2128.318832921357,0.0,19.11701352891391,16786.0,50,70,1,9955,201110311,,,228.0,,1.0,0.0,4.0,0.0,2.0,1.5,1593.0182135855302,0.0,1560.0,11.0,0.0,32764.0,5,5,1,150.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2147.435846450271,0.12793017076434357,0.06554254201105698,21842.666666666668,7,4,7,7_1,7_0,7_0_0 -10312,2,56.0,2,0.0,7,400,2,52,53,9.0,2855.620816449988,0.0,351.99119159853217,0.0,0.0,26944.0,60,71,1,9956,201110312,,,,,2.0,1.0,5.0,0.0,2.0,1.5,3571.5356404384856,0.0,258.0,0.0,0.0,46690.0,1,1,1,193.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3207.6120080485202,0.11904735778089817,0.06870019293314457,31126.666666666668,9,5,9,9_1,9_0,9_0_0 -10313,2,59.0,2,0.0,3,111,2,74,54,9.0,0.0,0.0,1113.2744664511715,0.0,437.9534008442095,35437.0,43,50,1,9957,201110313,,,128.0,,2.0,0.0,4.0,1.0,3.0,2.0,1988.1553695922178,0.0,816.0,252.0,0.0,73737.0,5,1,1,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1551.227867295381,0.04377424351088921,0.0210373064715866,36868.5,9,5,9,9_1,9_4,9_0_1 -10314,2,50.0,3,0.0,2,221,4,11,11,5.0,0.0,0.0,2728.6138883607146,156.41192887293198,0.0,44921.0,20,20,1,9958,201110314,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1645.4265673193659,0.0,2000.0,0.0,0.0,25829.0,1,1,1,120.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2885.0258172336466,0.06422443439001016,0.11169715502859758,17219.333333333332,5,3,5,5_1,5_1,5_0_1 -10315,2,52.0,4,0.0,3,221,4,0,47,5.0,0.0,0.0,1732.6698191090536,97.32297796537989,0.0,18066.0,0,50,1,9959,201110315,,,407.0,,1.0,1.0,3.0,0.0,1.0,1.0,1543.9349579812388,0.0,1270.0,0.0,0.0,16770.0,0,1,2,60.0,1,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1829.9927970744334,0.10129485204663087,0.1091230051922739,16770.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -10316,2,48.0,1,0.0,8,300,2,42,42,9.0,0.0,0.0,251.03247772918573,135.55700502320772,0.0,63153.0,20,20,1,9960,201110316,,,223.0,,2.0,0.0,7.0,2.0,4.0,2.1,1540.8036170774267,0.0,184.0,0.0,0.0,67048.0,1,1,2,220.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,386.58948275239345,0.006121474557857797,0.005765861513429087,31927.619047619046,9,5,9,9_1,9_0,9_0_0 -10317,0,59.0,4,0.0,5,111,1,0,52,2.0,0.0,0.0,300.1475277196786,0.0,0.0,11694.0,0,50,2,9961,201110317,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2435.326873500937,0.0,220.0,0.0,0.0,9877.0,0,1,5,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,300.1475277196786,0.025666797307993722,0.030388531712025775,9877.0,2,1,2_0,2_0_0,2_4_0,2_0_0 -10318,2,46.0,1,0.0,2,111,2,0,65,7.0,1903.7472109666587,0.0,613.9381248811608,194.64595593075978,0.0,24655.0,0,50,1,9963,201110318,,,240.0,,1.0,0.0,5.0,1.0,2.0,1.5,3099.9259344083066,0.0,450.0,0.0,0.0,32679.0,0,1,1,80.0,9,7.0,2,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2712.331291778579,0.11001140911695716,0.08299921331064533,21786.0,7,4,7,7_1,7_3,7_0_1 -10319,2,69.0,2,0.0,1,111,2,71,71,3.0,2221.038412794435,693.9631597817199,450.22129157951787,234.61789330939797,0.0,32019.0,70,50,5,9964,201110319,,,250.0,,0.0,2.0,5.0,0.0,2.0,1.5,1435.638456207352,0.0,330.0,0.0,0.0,18872.0,5,5,1,100.0,8,7.0,3,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3599.840757465071,0.11242826938583562,0.190750358068306,12581.333333333334,2,1,2_0,2_1_0,2_3_0,2_1_0 -10320,2,90.0,3,0.0,1,111,2,0,77,4.0,0.0,0.0,600.2950554393572,0.0,1929.0804560994943,11827.0,0,71,1,9967,201110320,,,152.0,,0.0,1.0,3.0,0.0,1.0,1.0,3475.379596062957,0.0,440.0,1110.0,0.0,14892.0,0,5,1,71.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2529.3755115388512,0.21386450592194564,0.16984793926530026,14892.0,3,2,3_0,3_1_0,3_2_0,3_1_0 -10321,2,84.0,3,0.0,99,111,2,0,77,3.0,0.0,0.0,448.85698463533754,0.0,1604.091226107958,16397.0,0,70,2,997,201110321,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2543.827403874301,0.0,329.0,923.0,0.0,14605.0,0,5,1,55.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2052.9482107432955,0.12520267187554404,0.14056475253291992,14605.0,3,2,3_0,3_0_0,3_2_0,3_0_0 -10322,2,84.0,4,0.0,5,111,2,86,78,3.0,0.0,0.0,283.7758443895143,0.0,5387.521994512102,20660.0,70,70,2,9971,201110322,,,,,0.0,0.0,5.0,0.0,2.0,1.5,2903.2883106784448,0.0,208.0,3100.0,0.0,20485.0,6,5,1,90.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,5671.297838901616,0.2745061877493522,0.2768512491531177,13656.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_0 -10323,2,25.0,3,0.0,9,111,2,0,54,5.0,0.0,0.0,54.57227776721429,0.0,611.7444329252451,25946.0,0,31,2,9972,201110323,,,,397.0,1.0,0.0,2.0,0.0,1.0,1.0,5157.82256686832,0.0,40.0,352.0,0.0,18276.0,0,1,3,40.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,666.3167106924593,0.02568090305605717,0.036458563727974354,18276.0,5,3,5,5_0,5_2,5_0_0 -10324,2,73.0,3,0.0,4,221,4,78,75,7.0,0.0,0.0,193.4178155629607,0.0,174.19072586779714,30386.0,70,70,1,9974,201110324,,,197.0,,0.0,2.0,4.0,0.0,2.0,1.5,2793.138576310881,162.0,80.0,0.0,0.0,34078.0,5,5,5,100.0,1,1.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,367.60854143075784,0.012097957659144272,0.010787268661035208,22718.666666666668,7,4,7,7_1,7_1,7_0_1 -10325,2,48.0,3,0.0,7,211,2,68,47,4.0,0.0,0.0,2455.752499524643,0.0,0.0,29803.0,50,42,1,9975,201110325,,,441.0,,2.0,0.0,5.0,2.0,4.0,2.3,3819.0763408368075,0.0,1800.0,0.0,0.0,35610.0,1,1,1,120.0,2,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2455.752499524643,0.08239950674511436,0.06896244031240222,15482.608695652176,4,2,4_0,4_1_0,4_1_0,4_0_0 -10326,2,81.0,1,0.0,4,111,6,75,74,10.0,6345.824036555528,0.0,1795.5571451905619,0.0,891.3834058296532,36701.0,41,10,1,9976,201110326,,,120.0,,0.0,2.0,7.0,0.0,2.0,1.5,1063.593709641607,829.0,1000.0,0.0,0.0,84170.0,5,5,1,90.0,5,4.0,3,4,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,9032.764587575743,0.24611766947973468,0.1073157251702001,56113.333333333336,10,5,10,10_1,10_2,10_0_1 -10327,2,51.0,1,0.0,7,111,2,64,37,10.0,47.593680274166466,0.0,1814.528235759875,93.84715732375918,0.0,33933.0,50,41,1,9977,201110327,,,210.0,,2.0,0.0,5.0,0.0,2.0,1.5,1862.1221385889924,0.0,1330.0,0.0,0.0,70741.0,1,1,1,128.0,8,6.0,3,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1955.9690733578007,0.05764209098393307,0.027649723263140198,47160.666666666664,10,5,10,10_1,10_2,10_0_0 -10328,1,50.0,4,440.0,1,111,4,85,69,1.0,0.0,0.0,1023.230208135268,0.0,0.0,30923.0,71,71,2,9978,201110328,,,250.0,,2.0,1.0,3.0,4.0,6.0,3.1,5192.868054137692,0.0,750.0,0.0,0.0,26936.0,6,1,3,70.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1023.230208135268,0.033089616406405196,0.03798745946448129,8689.032258064515,1,1,1_1,1_0_1,1_2_1,1_1_0 -10329,2,61.0,3,0.0,5,112,4,75,75,9.0,0.0,693.9631597817199,1841.8143746434823,0.0,0.0,39955.0,20,20,1,998,201110329,,,290.0,,0.0,2.0,4.0,0.0,2.0,1.5,1304.3446412294395,0.0,1350.0,0.0,0.0,55325.0,5,5,1,96.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2535.7775344252022,0.06346583742773626,0.04583420758111527,36883.333333333336,9,5,9,9_1,9_0,9_0_0 -10330,1,25.0,3,40.0,5,111,1,0,84,1.0,0.0,0.0,190.39514302742447,0.0,393.542010293912,16007.0,0,20,2,9980,201110330,,,,485.0,0.0,0.0,2.0,0.0,1.0,1.0,3592.551690879113,366.0,0.0,0.0,0.0,5515.0,0,3,3,50.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,583.9371533213365,0.036480112033568844,0.1058816234490184,5515.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -10331,2,59.0,2,0.0,7,120,2,77,75,9.0,0.0,0.0,1403.8718455615876,0.0,1984.6935863654257,37822.0,50,50,1,9984,201110331,,,536.0,,1.0,3.0,8.0,1.0,3.0,2.0,1211.034561485327,0.0,1029.0,1142.0,0.0,58820.0,5,5,2,160.0,0,3.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3388.5654319270134,0.08959244439551091,0.05760906888689244,29410.0,9,5,9,9_1,9_1,9_0_0 -10332,2,64.0,3,0.0,1,112,4,0,78,7.0,0.0,0.0,3206.1213188238394,145.98446694806984,0.0,14894.0,0,50,1,9985,201110332,,,180.0,,0.0,0.0,4.0,0.0,1.0,1.0,2884.2732400311625,0.0,2350.0,0.0,0.0,23146.0,0,5,1,72.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3352.1057857719093,0.22506417253739153,0.14482440965056206,23146.0,7,4,7,7_1,7_0,7_1_0 -10333,2,53.0,3,0.0,5,400,4,52,64,6.0,0.0,0.0,1964.6019996197144,156.41192887293198,0.0,28151.0,71,50,1,9988,201110333,,,,281.0,2.0,1.0,3.0,0.0,2.0,1.5,1864.8501493422086,0.0,1440.0,0.0,0.0,31710.0,1,1,3,78.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2121.0139284926463,0.07534417706272055,0.06688785646460568,21140.0,6,3,6,6_1,6_0,6_0_0 -10334,0,38.0,2,0.0,1,112,2,11,11,2.0,0.0,0.0,0.0,0.0,0.0,33364.0,41,42,1,9989,201110334,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3076.025104121003,0.0,0.0,0.0,0.0,23859.0,1,1,5,200.0,8,0.0,4,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0.0,0.0,0.0,11361.42857142857,2,1,2_0,2_1_0,2_0_0,2_1_0 -10335,2,39.0,2,0.0,99,111,1,0,56,2.0,0.0,0.0,0.0,0.0,0.0,8249.0,0,31,2,999,201110335,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4184.95025133781,0.0,0.0,0.0,0.0,11370.0,0,1,3,30.0,9,7.0,1,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,11370.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -10336,2,64.0,2,0.0,2,111,2,77,75,8.0,0.0,0.0,1025.4878963734966,0.0,1990.507201797543,43815.0,70,50,1,9990,201110336,,,345.0,,0.0,2.0,3.0,0.0,2.0,1.5,1860.065109392472,104.0,712.0,1081.0,0.0,43272.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3015.99509817104,0.06883476202604222,0.06969853711802182,28848.0,8,4,8,8_1,8_4,8_0_1 -10337,2,59.0,3,0.0,9,212,4,56,74,8.0,0.0,0.0,360.1770332636143,0.0,0.0,26313.0,50,70,1,9991,201110337,,,,,1.0,1.0,5.0,0.0,2.0,1.5,1429.0817574769894,0.0,264.0,0.0,0.0,38271.0,1,5,2,180.0,2,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,360.1770332636143,0.0136881782109077,0.009411226078848587,25514.0,8,4,8,8_1,8_0,8_0_0 -10338,1,27.0,5,339.0,1,111,1,0,56,1.0,0.0,0.0,341.0767360450893,0.0,816.8178507808669,39040.0,0,42,2,9994,201110338,,,,,1.0,2.0,2.0,1.0,2.0,1.3,3079.555206322016,0.0,250.0,470.0,0.0,11478.0,0,4,3,52.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1157.8945868259561,0.029659185113369776,0.1008794726281544,8829.23076923077,1,1,1_1,1_0_1,1_3_1,1_1_0 -10339,2,58.0,3,0.0,1,111,2,0,65,7.0,4759.368027416646,0.0,85.95133748336251,0.0,0.0,27590.0,0,70,1,9996,201110339,,,,,1.0,0.0,4.0,1.0,2.0,1.5,1952.952893906848,0.0,63.0,0.0,0.0,32765.0,0,1,1,60.0,4,4.0,2,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4845.319364900009,0.17561867940920656,0.14788095116435246,21843.333333333332,7,4,7,7_1,7_2,7_1_0 -10340,2,57.0,4,0.0,1,300,2,55,78,4.0,2221.038412794435,0.0,761.2832748526394,173.79103208103552,0.0,20615.0,44,71,1,9997,201110340,,,230.0,,1.0,1.0,4.0,0.0,2.0,1.5,1179.3217769776227,0.0,558.0,0.0,0.0,23220.0,4,5,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3156.11271972811,0.15309787629047344,0.13592216708562058,15480.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -10341,2,28.0,4,0.0,1,112,2,68,85,1.0,0.0,2081.88947934516,1272.8983789202732,104.27461924862132,0.0,25589.0,50,50,1,9998,201110341,,,,,1.0,2.0,6.0,2.0,4.0,2.1,1473.9716699204291,0.0,933.0,0.0,0.0,17344.0,4,7,2,92.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3459.062477514054,0.13517771220110414,0.19943856535482324,8259.047619047618,1,1,1_0,1_1_0,1_0_0,1_1_0 +0,2,73.0,3,0.0,9,112,5,77,71,7.0,0.0,277.585263912688,453.57833084731436,0.0,0.0,19890.26,70,71,1,1,201700000,,,205.0,,0.0,4.0,5.0,0.0,2.0,1.5,1443.2610177173326,0.0,337.0,0.0,0.0,35243.0,5,5,1,119.0,4,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,731.1635947600023,0.036759881206178416,0.02074634948103176,23495.333333333332,6,3,6,6_1,6_0,6_0_0 +1,2,45.0,2,0.0,1,111,2,37,37,10.0,0.0,0.0,856.0113306198574,0.0,2317.811744076622,60307.479999999996,20,12,1,100,201700001,,,405.0,,2.0,0.0,6.0,1.0,3.0,1.8,2769.2862169113164,0.0,636.0,1310.0,0.0,107062.0,1,1,2,143.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3173.823074696479,0.052627353600191544,0.029644720579631235,59478.88888888889,10,5,10,10_1,10_4,10_1_0 +2,2,54.0,2,0.0,4,111,1,21,45,7.0,0.0,0.0,981.1827987765347,0.0,0.0,48613.6,71,41,1,1000,201700002,,,,,3.0,0.0,5.0,1.0,3.0,2.0,2682.038149509965,0.0,729.0,0.0,0.0,51770.0,1,1,1,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,981.1827987765347,0.020183298475663903,0.01895272935631707,25885.0,7,4,7,7_1,7_4,7_0_1 +3,1,44.0,3,272.0,5,111,2,0,85,2.0,0.0,0.0,969.0694308904046,0.0,0.0,5462.4400000000005,0,60,2,10001,201700003,,,,,0.0,0.0,1.0,0.0,1.0,1.0,12125.921549462557,0.0,720.0,0.0,0.0,12986.0,0,7,3,35.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,969.0694308904046,0.1774059634321667,0.07462416686357652,12986.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4,2,47.0,4,0.0,1,111,2,68,63,7.0,0.0,0.0,1160.1914575382343,0.0,1707.3956740717101,41429.42,71,71,1,10003,201700004,,,271.0,,3.0,1.0,5.0,1.0,3.0,2.0,3320.293532673264,0.0,862.0,965.0,0.0,48481.0,1,1,1,80.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2867.5871316099447,0.06921620267939896,0.05914867951589168,24240.5,7,4,7,7_1,7_3,7_1_0 +5,2,44.0,2,0.0,9,112,4,37,38,10.0,0.0,0.0,2697.243249311626,159.23897478389006,0.0,61679.780000000006,12,12,1,10005,201700005,,,,,2.0,0.0,5.0,2.0,4.0,2.3,4103.151020986681,0.0,2004.0,0.0,0.0,93808.0,1,1,2,150.0,9,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2856.4822240955164,0.04631148528894746,0.03045030513490871,40786.08695652174,10,5,10,10_1,10_1,10_0_0 +6,2,35.0,1,0.0,1,111,1,38,33,10.0,0.0,0.0,274.5696720856146,0.0,0.0,64056.06,20,12,2,10007,201700006,,,,1132.0,2.0,0.0,3.0,0.0,2.0,1.5,3812.108337325521,0.0,204.0,0.0,0.0,74204.0,1,1,3,51.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,274.5696720856146,0.004286396510893967,0.0037002004216162825,49469.333333333336,10,5,10,10_0,10_4,10_1_0 +7,2,60.0,3,0.0,6,112,5,22,22,6.0,0.0,201.2493163366988,1713.3685910048403,0.0,0.0,30585.34,42,50,1,10009,201700007,,,176.0,,2.0,2.0,4.0,0.0,2.0,1.5,3079.940945500461,0.0,1273.0,0.0,0.0,31815.0,1,1,1,89.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1914.617907341539,0.06259920299534152,0.06017972363166868,21210.0,5,3,5,5_1,5_0,5_0_0 +8,2,49.0,3,0.0,4,111,1,64,64,3.0,0.0,0.0,578.7497990039916,0.0,1061.5931652259337,21949.07495631513,50,71,8,1001,201700008,600.0,600.0,,273.0,2.0,0.0,3.0,0.0,2.0,1.5,1518.3133034450746,0.0,430.0,600.0,0.0,24138.0,1,1,3,55.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1640.3429642299252,0.07473403628602444,0.06795687149846405,16092.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +9,2,63.0,1,0.0,1,111,2,0,46,8.0,0.0,0.0,393.6093777810987,0.0,733.4826411146656,41801.82,0,30,2,10010,201700009,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2678.775772033954,707.0,0.0,0.0,0.0,28228.0,0,1,1,73.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1127.0920188957643,0.02696274992083513,0.039928157109811686,28228.0,8,4,8,8_0,8_3,8_1_0 +10,1,80.0,3,38.0,1,111,2,0,77,3.0,0.0,0.0,403.7789295376686,0.0,2038.2588772337929,14650.440000000002,0,71,2,10011,201700010,,,,283.0,0.0,0.0,2.0,0.0,1.0,1.0,6662.519627452481,0.0,300.0,1152.0,0.0,15253.0,0,5,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,2442.0378067714614,0.16668699416341495,0.16010213117232422,15253.0,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +11,2,66.0,2,0.0,5,112,2,77,78,3.0,0.0,0.0,896.3892235736242,0.0,1447.3053485913563,48398.82,71,50,1,10012,201700011,,,354.0,,0.0,5.0,5.0,0.0,2.0,1.5,1763.0747419468726,0.0,666.0,818.0,0.0,24648.0,7,5,1,109.0,9,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2343.6945721649804,0.04842462217394929,0.09508660224622607,16432.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +12,2,67.0,2,0.0,6,300,5,72,78,5.0,0.0,208.188947934516,989.2583773672881,95.54338487033404,0.0,18914.019999999997,70,50,1,10013,201700012,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1863.0369579434346,0.0,735.0,0.0,0.0,30189.0,5,5,1,100.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1292.990710172138,0.06836149640172413,0.04282986220716612,20126.0,5,3,5,5_1,5_0,5_0_0 +13,1,37.0,3,550.0,9,111,4,0,85,2.0,0.0,0.0,387.6277723561618,230.3657168540276,0.0,15830.856658454033,0,60,2,10014,201700013,,,550.0,,0.0,0.0,4.0,3.0,4.0,1.9,687.6484267243248,0.0,288.0,0.0,0.0,24376.0,0,4,3,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,617.9934892101894,0.039037274011331974,0.025352538940358934,12829.473684210527,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +14,1,69.0,3,42.0,1,400,5,0,78,2.0,0.0,360.86084308649436,471.07541779394666,198.16405750884095,0.0,13445.460000000001,0,50,1,10015,201700014,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3623.2220050278797,0.0,350.0,0.0,0.0,13114.0,0,5,3,65.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1030.100318389282,0.07661324479707514,0.07854966588297102,13114.0,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +15,2,39.0,1,0.0,9,112,1,0,33,10.0,0.0,0.0,76.27225566621007,0.0,142.13171404909363,44451.84,0,41,1,10018,201700015,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1704.1088085218407,137.0,0.0,0.0,0.0,54700.0,0,1,3,80.0,10,3.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,218.4039697153037,0.004913271750175105,0.003992759958232243,54700.0,10,5,10,10_1,10_1,10_0_0 +16,1,23.0,3,99.0,99,111,4,0,43,5.0,0.0,0.0,1173.65075518949,0.0,884.6609710216114,23753.299999999996,0,33,2,10019,201700016,,,,298.0,1.0,0.0,2.0,0.0,1.0,1.0,3903.0258477400894,0.0,872.0,500.0,0.0,20064.0,0,1,3,63.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2058.3117262111014,0.08665371658721532,0.10258730692838423,20064.0,5,3,5,5_0,5_3,5_0_0 +17,2,67.0,2,0.0,7,111,2,0,74,6.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,23955.260315994117,0,10,8,10020,201700017,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2843.5900198292957,800.0,0.0,0.0,0.0,22730.0,0,5,1,92.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1275.3516479725763,0.053238897475936305,0.05610873946205791,22730.0,6,3,6,6_0,6_3,6_0_0 +18,2,38.0,3,0.0,9,111,6,0,46,7.0,0.0,0.0,1749.7086946632305,0.0,0.0,38570.8,0,31,2,10021,201700018,,,700.0,725.0,1.0,0.0,5.0,1.0,2.0,1.3,749.0997245369051,0.0,1300.0,0.0,0.0,33447.0,0,1,3,90.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1749.7086946632305,0.045363557267757745,0.052312873939762326,25728.46153846154,7,4,7,7_0,7_3,7_0_0 +19,1,72.0,4,80.0,3,111,2,0,78,2.0,0.0,0.0,977.145009481158,0.0,1371.2245050834977,10586.28,0,60,2,10022,201700019,,,,231.0,0.0,0.0,3.0,0.0,1.0,1.0,3037.687022917809,0.0,726.0,775.0,0.0,12710.0,0,5,3,53.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2348.3695145646557,0.22183141902204132,0.18476550075252995,12710.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +20,2,80.0,3,0.0,2,112,5,71,75,7.0,0.0,0.0,1644.7261729834368,265.39829130648343,0.0,27291.84031599411,70,41,1,10023,201700020,,,201.0,,0.0,3.0,4.0,0.0,2.0,1.5,2358.517384134897,0.0,1222.0,0.0,0.0,36047.0,5,5,1,100.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1910.12446428992,0.06998884802834313,0.05298983172774212,24031.333333333332,7,4,7,7_1,7_0,7_0_1 +21,2,57.0,3,0.0,99,111,2,0,46,8.0,2379.684013708323,0.0,755.0665982354402,0.0,0.0,15252.5,0,41,1,10024,201700021,,,242.0,,1.0,1.0,3.0,0.0,1.0,1.0,1183.8782637373797,0.0,561.0,0.0,0.0,27200.0,0,1,2,114.0,8,7.0,1,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3134.7506119437635,0.2055237247627447,0.11524818426263836,27200.0,7,4,7,7_1,7_3,7_0_0 +22,2,67.0,1,0.0,9,400,4,77,75,9.0,0.0,138.792631956344,403.7789295376686,0.0,0.0,54306.200000000004,50,44,1,10025,201700022,,,750.0,,0.0,3.0,6.0,0.0,2.0,1.5,1489.0665280073092,0.0,300.0,0.0,0.0,49124.0,5,5,1,140.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,542.5715614940126,0.009990969014477399,0.011044938553334676,32749.333333333332,9,5,9,9_1,9_1,9_0_0 +23,2,61.0,3,0.0,1,400,6,35,21,2.0,1189.8420068541616,0.0,960.9938522996513,159.23897478389006,0.0,13844.527538214861,31,50,1,10027,201700023,,,140.0,,2.0,0.0,7.0,0.0,2.0,1.5,1826.9007474498637,0.0,714.0,0.0,0.0,23309.0,1,1,1,110.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2310.074833937703,0.16685833644819115,0.0991065611539621,15539.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +24,2,94.0,2,0.0,4,111,2,0,77,7.0,0.0,0.0,942.1508355878933,0.0,0.0,16379.24,0,41,1,10028,201700024,,,900.0,,0.0,2.0,3.0,0.0,1.0,1.0,3099.0424474992815,0.0,700.0,0.0,0.0,23951.0,0,5,1,75.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,942.1508355878933,0.05752103489465282,0.0393365970351089,23951.0,7,4,7,7_1,7_3,7_0_1 +25,2,83.0,1,0.0,1,111,5,0,71,2.0,0.0,0.0,860.0491199152341,194.62541362475451,0.0,24446.96,0,71,1,10029,201700025,,,276.0,,0.0,3.0,4.0,0.0,1.0,1.0,2319.6124029501498,0.0,639.0,0.0,0.0,13330.0,0,5,5,109.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1054.6745335399887,0.043141336736346306,0.07912037010802617,13330.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +26,2,75.0,2,0.0,7,300,2,74,74,10.0,0.0,0.0,4512.278507594249,53.079658261296686,1290.5145062338204,39465.2490425313,30,20,1,1003,201700026,,,,,0.0,5.0,5.0,0.0,2.0,1.5,2502.8744272918652,1243.9200394991708,2838.0,0.0,0.0,86138.0,5,5,1,150.0,0,0.0,3,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5855.8726720893665,0.1483804819216661,0.06798245457393214,57425.333333333336,10,5,10,10_1,10_0,10_0_0 +27,2,40.0,2,0.0,4,111,2,0,38,1.0,0.0,0.0,807.5578590753372,0.0,0.0,17032.383132637817,0,31,2,10031,201700027,,,,700.0,1.0,0.0,1.0,0.0,1.0,1.0,3084.972843542195,0.0,600.0,0.0,0.0,9115.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,807.5578590753372,0.04741308675283834,0.08859658355187462,9115.0,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +28,2,67.0,4,0.0,6,211,5,55,72,6.0,0.0,1260.2370981636034,845.2438924988529,212.31863304518674,0.0,35804.700000000004,70,70,1,10032,201700028,,,354.0,,1.0,3.0,4.0,0.0,2.0,1.5,1692.7512095508978,0.0,628.0,0.0,0.0,31748.0,1,5,1,90.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2317.799623707643,0.0647345075844133,0.07300616176476134,21165.333333333332,5,3,5,5_1,5_1,5_0_0 +29,2,38.0,3,0.0,8,112,4,56,63,3.0,0.0,0.0,2409.214279574756,184.0094819724952,0.0,44551.937487912335,50,41,1,10034,201700029,,,406.0,,2.0,0.0,5.0,3.0,5.0,2.4,1529.016562525534,0.0,1790.0,0.0,0.0,33099.0,1,1,2,140.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2593.223761547251,0.058206756154001935,0.07834749574148013,13791.25,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +30,2,63.0,4,0.0,9,111,1,77,75,4.0,0.0,0.0,672.964882562781,0.0,0.0,20113.027849749775,50,71,2,10036,201700030,999999.0,1600.0,300.0,387.0,0.0,3.0,3.0,0.0,2.0,1.5,3514.5957672638388,0.0,500.0,0.0,1600.0,26874.0,5,5,3,63.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,672.964882562781,0.03345915332042626,0.02504148554598426,17916.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +31,2,49.0,2,0.0,9,111,2,67,38,5.0,47.593680274166466,0.0,2597.6444466923344,0.0,0.0,34329.72,71,71,1,10037,201700031,,,480.0,,2.0,0.0,5.0,2.0,4.0,2.5,2190.69409774816,0.0,1930.0,0.0,0.0,51315.0,1,1,2,92.0,9,7.0,4,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2645.238126966501,0.07705388004814781,0.05154902322842251,20526.0,5,3,5,5_1,5_3,5_0_0 +32,1,42.0,3,138.0,2,111,2,85,63,2.0,0.0,0.0,2153.487624200899,732.4992840058943,0.0,29881.99087530163,43,50,1,10038,201700032,,,132.0,,1.0,0.0,8.0,2.0,4.0,2.3,1868.264480113215,0.0,1600.0,0.0,0.0,24506.0,6,1,2,135.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2885.9869082067935,0.09657947223965418,0.11776654322234528,10654.782608695654,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +33,2,65.0,1,0.0,4,111,1,0,77,8.0,0.0,0.0,376.8603342351573,0.0,265.39829130648343,24490.32,0,60,2,10039,201700033,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2540.603557327796,0.0,280.0,150.0,0.0,25343.0,0,5,1,77.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,642.2586255416408,0.026224999327964713,0.02534264394671668,25343.0,7,4,7,7_0,7_3,7_0_1 +34,2,60.0,3,0.0,6,111,2,0,75,5.0,0.0,0.0,531.1221306975505,0.0,989.734709509747,32177.720000000005,0,41,2,10040,201700034,,,,395.0,0.0,2.0,3.0,0.0,1.0,1.0,3508.155857094905,954.0,0.0,0.0,0.0,20585.0,0,5,3,75.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1520.8568402072974,0.047264282248938,0.0738817993785425,20585.0,5,3,5,5_0,5_2,5_0_0 +35,2,44.0,3,0.0,3,111,2,0,63,3.0,0.0,0.0,380.898123530534,0.0,467.1009926994108,31083.45087530163,0,50,1,10041,201700035,,,171.0,,1.0,0.0,4.0,2.0,3.0,1.8,402.92969961868374,0.0,283.0,264.0,0.0,29186.0,0,1,2,90.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,847.9991162299448,0.027281369743400986,0.02905499610189628,16214.444444444443,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +36,2,55.0,4,0.0,7,111,4,0,45,4.0,0.0,0.0,522.220748868718,0.0,0.0,30373.84,0,31,2,10042,201700036,,,528.0,797.0,1.0,2.0,3.0,1.0,2.0,1.5,2768.1152946810003,0.0,388.0,0.0,0.0,26556.0,0,1,3,60.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,522.220748868718,0.01719310923046668,0.019664887365142266,17704.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +37,2,75.0,1,0.0,1,112,2,0,74,10.0,0.0,0.0,899.0810831038754,0.0,2478.8200408025555,22125.990875301628,0,44,1,10045,201700037,,,232.0,,0.0,2.0,7.0,0.0,1.0,1.0,1982.4732892881732,0.0,668.0,1401.0,0.0,69977.0,0,5,5,340.0,9,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3377.9011239064307,0.1526666598998307,0.04827159100713707,69977.0,10,5,10,10_1,10_1,10_1_0 +38,2,61.0,3,0.0,2,211,2,77,43,10.0,1808.5598504183256,0.0,1380.9239390188266,21.231863304518676,0.0,57887.64,50,33,1,10046,201700038,,,220.0,,1.0,3.0,9.0,0.0,2.0,1.5,2106.844990745761,0.0,1026.0,0.0,0.0,65891.0,5,1,1,254.0,1,3.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3210.715652741671,0.055464614773407084,0.048727681363792796,43927.333333333336,10,5,10,10_1,10_1,10_0_1 +39,2,40.0,3,0.0,1,111,2,53,37,10.0,3807.4944219333174,0.0,942.1508355878933,233.5504963497054,0.0,66421.73214336787,41,31,1,10047,201700039,,,654.0,,2.0,0.0,7.0,3.0,5.0,2.4,1749.9590806633125,0.0,700.0,0.0,0.0,95490.0,1,1,2,200.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4983.195753870916,0.07502357425902331,0.05218552470280569,39787.5,9,5,9,9_1,9_4,9_1_0 +40,2,57.0,4,0.0,5,111,1,0,54,5.0,0.0,0.0,740.261370819059,0.0,0.0,13099.44,0,71,2,10048,201700040,,,,350.0,1.0,2.0,3.0,0.0,1.0,1.0,2331.635467767904,0.0,550.0,0.0,0.0,20300.0,0,1,3,75.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,740.261370819059,0.05651091732311145,0.036466077380249214,20300.0,5,3,5,5_0,5_4,5_0_0 +41,2,30.0,3,0.0,99,120,2,13,46,5.0,2676.3512874172943,0.0,651.430006320772,0.0,0.0,34707.57434383641,30,41,2,1005,201700041,,,269.0,,2.0,0.0,5.0,1.0,3.0,1.8,3939.9591465186904,0.0,484.0,0.0,0.0,35636.0,1,1,3,72.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,3327.7812937380663,0.09588054932248628,0.09338257081990309,19797.777777777777,5,3,5,5_0,5_0,5_0_0 +42,2,68.0,3,0.0,7,111,6,72,77,10.0,0.0,0.0,847.902521019255,0.0,1580.0481788085374,30848.2,41,50,1,10051,201700042,,,360.0,,0.0,2.0,6.0,0.0,2.0,1.5,1642.3934372333263,1523.0,0.0,0.0,0.0,76159.0,5,5,1,160.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2427.9506998277925,0.07870639777451496,0.03188002336989446,50772.666666666664,10,5,10,10_1,10_4,10_0_0 +43,2,60.0,3,0.0,9,120,5,13,71,8.0,0.0,1387.9263195634398,767.1799661215703,44.23304855108057,0.0,45963.2258467513,31,42,1,10053,201700043,,,200.0,,1.0,2.0,6.0,0.0,2.0,1.5,1437.0924605434077,0.0,570.0,0.0,0.0,39192.0,1,5,1,160.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2199.339334236091,0.04784997775328124,0.056117047719843105,26128.0,7,4,7,7_1,7_1,7_0_0 +44,2,37.0,2,0.0,99,111,1,0,68,3.0,0.0,0.0,551.8312037014804,0.0,0.0,23819.456722052928,0,71,2,10056,201700044,,,,,1.0,2.0,2.0,0.0,1.0,1.0,3455.2014622195043,0.0,410.0,0.0,0.0,16820.0,0,1,1,51.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,551.8312037014804,0.023167245590054737,0.03280803827000478,16820.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +45,2,21.0,1,0.0,7,111,6,0,38,1.0,0.0,0.0,759.1043875308169,0.0,0.0,29699.519999999997,0,30,2,10057,201700045,,,,370.0,1.0,0.0,1.0,0.0,1.0,1.0,3471.6880240202177,0.0,564.0,0.0,0.0,1584.0,0,1,3,19.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,759.1043875308169,0.025559483369792406,0.47923256788561674,1584.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +46,1,43.0,3,301.0,9,111,2,0,55,3.0,0.0,0.0,532.9881869897225,0.0,1486.2304313163072,25638.48,0,41,1,10058,201700046,,,256.0,186.0,1.0,0.0,3.0,1.0,2.0,1.5,605.2247085054493,0.0,396.0,840.0,0.0,23184.0,0,1,3,90.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2019.2186183060298,0.07875734514316098,0.08709535103114345,15456.0,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +47,1,58.0,2,379.0,99,111,4,0,78,2.0,0.0,0.0,1109.046126463463,0.0,0.0,14203.260315994117,0,60,2,10059,201700047,,,500.0,,1.0,0.0,2.0,1.0,2.0,1.5,4395.006256150831,0.0,824.0,0.0,0.0,16849.0,0,7,3,40.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1109.046126463463,0.07808391184766077,0.06582266760421764,11232.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +48,2,59.0,2,0.0,7,111,2,0,64,8.0,0.0,0.0,2380.949754507119,0.0,0.0,11232.287849749775,0,70,1,1006,201700048,,,200.0,,1.0,2.0,4.0,0.0,1.0,1.0,2494.33043592433,0.0,1769.0,0.0,0.0,28206.0,0,1,1,85.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2380.949754507119,0.21197371242227914,0.08441288217071258,28206.0,8,4,8,8_1,8_2,8_0_0 +49,2,72.0,3,0.0,9,111,2,0,75,10.0,0.0,0.0,1468.4093737519881,0.0,0.0,25606.565846751302,0,33,2,10060,201700049,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3234.2373569357683,0.0,1091.0,0.0,0.0,45095.0,0,5,2,87.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1468.4093737519881,0.05734503340041924,0.03256257620028802,45095.0,10,5,10,10_0,10_2,10_0_0 +50,2,23.0,3,0.0,1,111,4,0,68,3.0,0.0,0.0,969.0694308904046,0.0,0.0,18483.28,0,31,2,10061,201700050,,,,370.0,1.0,0.0,3.0,0.0,1.0,1.0,3497.7509412552745,0.0,720.0,0.0,0.0,14300.0,0,1,3,41.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,969.0694308904046,0.05242951634614661,0.06776709306925907,14300.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +51,2,40.0,4,0.0,4,111,4,0,62,3.0,0.0,0.0,1091.1943146406695,0.0,2033.4172228921423,19335.01665845403,0,50,1,10062,201700051,,,,,1.0,0.0,3.0,1.0,2.0,1.3,471.93539708535263,1960.0,0.0,0.0,0.0,19621.0,0,1,1,80.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3124.611537532812,0.16160376754403305,0.1592483327828761,15093.076923076922,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +52,1,44.0,4,119.0,99,120,2,68,62,2.0,1586.456009138882,0.0,960.9938522996513,0.0,0.0,32590.791191295742,50,50,1,10063,201700052,,,,,2.0,0.0,7.0,2.0,4.0,2.5,2987.809629997056,0.0,714.0,0.0,0.0,27230.0,1,1,2,100.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2547.4498614385334,0.07816471366055389,0.09355306138224508,10892.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +53,2,79.0,3,0.0,2,111,2,0,86,5.0,0.0,0.0,619.1276919577585,92.0047409862476,0.0,9823.600315994116,0,71,2,10065,201700053,,,,500.0,0.0,0.0,2.0,0.0,1.0,1.0,2258.1014370538405,0.0,460.0,0.0,0.0,18569.0,0,5,3,40.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,711.1324329440062,0.07239020420916238,0.03829675442640994,18569.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +54,2,66.0,3,0.0,5,111,2,78,68,6.0,0.0,0.0,605.6683943065029,0.0,566.1830214538313,21623.559999999998,71,71,1,10066,201700054,,,200.0,,1.0,2.0,5.0,0.0,2.0,1.5,2846.500496675066,0.0,450.0,320.0,0.0,37980.0,5,5,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1171.8514157603342,0.054193269552300104,0.030854434327549612,25320.0,7,4,7,7_1,7_4,7_0_0 +55,2,41.0,3,0.0,9,112,4,54,48,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,51260.22,31,43,1,10067,201700055,,,,,2.0,0.0,5.0,3.0,5.0,2.6,1691.8676849306687,0.0,1200.0,0.0,0.0,52208.0,1,1,2,100.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.031508169846923686,0.0309361729648842,20080.0,5,3,5,5_1,5_0,5_0_0 +56,2,57.0,3,0.0,1,111,2,0,43,6.0,0.0,0.0,790.5591463213016,0.0,1473.1900288300214,21660.2716935026,0,50,2,10068,201700056,,,,488.0,2.0,1.0,3.0,1.0,2.0,1.5,3633.364129354941,1420.0,0.0,0.0,0.0,34976.0,0,1,3,58.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2263.749175151323,0.10451157802560605,0.06472292929869977,23317.333333333332,6,3,6,6_0,6_4,6_1_0 +57,2,50.0,2,0.0,1,111,2,52,62,8.0,0.0,249.82673752141918,1722.7900993607193,0.0,2247.038866394893,27079.22,71,50,1,10069,201700057,,,,,2.0,2.0,9.0,0.0,2.0,1.5,2234.3864538774574,0.0,1280.0,1270.0,0.0,40228.0,1,1,1,120.0,4,3.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4219.6557032770315,0.15582633854583078,0.10489349963401191,26818.666666666668,7,4,7,7_1,7_1,7_1_0 +58,2,72.0,2,0.0,1,120,6,0,74,9.0,0.0,693.9631597817199,1615.1157181506744,88.46609710216114,0.0,21755.927849749776,0,41,1,1007,201700058,,,120.0,,0.0,2.0,5.0,0.0,1.0,1.0,1828.9864530314114,0.0,1200.0,0.0,0.0,33446.0,0,5,5,200.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2397.5449750345556,0.11020191791370235,0.07168405713791053,33446.0,9,5,9,9_1,9_0,9_1_0 +59,2,66.0,3,0.0,1,300,2,78,33,6.0,0.0,0.0,2012.164998862715,0.0,0.0,24057.84,50,71,1,10070,201700059,,,361.0,,1.0,3.0,4.0,0.0,2.0,1.5,1777.3870729197085,0.0,1495.0,0.0,0.0,30857.0,5,5,1,75.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2012.164998862715,0.08363863916555747,0.06520935278422124,20571.333333333332,5,3,5,5_1,5_1,5_1_0 +60,2,65.0,3,0.0,1,111,2,78,75,8.0,0.0,0.0,1328.4326781789296,0.0,1926.7915948850698,29587.520000000004,50,50,1,10071,201700060,,,458.0,,1.0,1.0,4.0,1.0,3.0,2.0,1338.8434599887648,0.0,987.0,1089.0,0.0,60484.0,5,5,1,110.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3255.224273063999,0.11002017989557755,0.0538195931661927,30242.0,8,4,8,8_1,8_2,8_1_0 +61,2,73.0,1,0.0,5,111,2,0,74,10.0,975.6704456204126,0.0,581.4416585342427,0.0,0.0,12243.48,0,41,1,10074,201700061,,,145.0,,0.0,2.0,5.0,0.0,1.0,1.0,2157.0197471960896,0.0,432.0,0.0,0.0,79463.0,0,5,1,100.0,7,5.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1557.1121041546553,0.1271788824872222,0.019595435663826627,79463.0,10,5,10,10_1,10_2,10_0_0 +62,2,41.0,2,0.0,9,400,4,55,48,7.0,0.0,0.0,2261.162005410944,0.0,0.0,38021.8316935026,43,43,1,10075,201700062,,,180.0,,2.0,0.0,6.0,2.0,4.0,2.1,3557.112031955093,0.0,1680.0,0.0,0.0,47939.0,1,1,1,106.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2261.162005410944,0.05947009664443244,0.04716748379004451,22828.095238095237,6,3,6,6_1,6_0,6_0_0 +63,2,43.0,3,0.0,9,211,5,21,68,3.0,0.0,277.585263912688,1615.1157181506744,56.61830214538313,0.0,21652.68,71,71,1,10076,201700063,,,1200.0,,2.0,2.0,4.0,2.0,5.0,3.0,1762.7902480673902,0.0,1200.0,0.0,0.0,45145.0,1,1,1,125.0,3,3.0,5,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1949.3192842087456,0.09002669804424882,0.043179073744794454,15048.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +64,2,78.0,4,0.0,1,111,2,0,86,3.0,0.0,0.0,384.9359128259107,0.0,1305.7595932278984,15788.7458467513,0,71,1,10077,201700064,,,130.0,,0.0,2.0,3.0,0.0,1.0,1.0,1235.509561828703,0.0,286.0,738.0,0.0,14884.0,0,5,1,70.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1690.6955060538091,0.10708231815649166,0.11359147447284394,14884.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +65,1,45.0,2,340.0,7,111,2,68,56,3.0,547.3273231529143,0.0,538.3719060502248,0.0,884.6609710216114,13227.330875301628,31,71,2,10078,201700065,,,200.0,120.0,2.0,0.0,3.0,1.0,3.0,1.8,2520.407038918176,0.0,400.0,500.0,0.0,28030.0,1,4,3,73.0,9,7.0,4,5,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1970.3602002247505,0.14896128469152092,0.07029469141008743,15572.222222222223,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +66,2,72.0,2,0.0,7,111,2,0,77,2.0,0.0,0.0,775.2555447123236,0.0,0.0,25952.3,0,60,2,10079,201700066,,,276.0,,0.0,0.0,3.0,0.0,1.0,1.0,2594.7075530606417,0.0,576.0,0.0,0.0,12690.0,0,5,1,60.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,775.2555447123236,0.02987232517781945,0.06109184749506096,12690.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +67,2,75.0,2,0.0,5,111,2,77,75,5.0,0.0,0.0,728.148002932929,0.0,2611.519186455797,26385.8058467513,70,50,1,1008,201700067,,,451.0,,0.0,2.0,5.0,0.0,2.0,1.5,1635.4387749817442,0.0,541.0,1476.0,0.0,29703.0,5,5,1,70.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3339.667189388726,0.12657059666039785,0.11243534960740417,19802.0,5,3,5,5_1,5_2,5_0_0 +68,2,51.0,2,0.0,7,120,2,53,46,7.0,0.0,0.0,1543.7814405990196,0.0,4846.172799256387,69953.92000000001,50,42,1,10080,201700068,,,564.0,,3.0,1.0,7.0,2.0,4.0,2.5,358.08641955003577,0.0,1147.0,2739.0,0.0,60083.0,1,1,1,180.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6389.954239855407,0.09134519180419633,0.1063521169025416,24033.2,7,4,7,7_1,7_1,7_0_0 +69,2,39.0,1,0.0,9,112,4,54,38,9.0,0.0,0.0,1169.6129658941134,88.46609710216114,0.0,51826.05999999999,42,30,1,10081,201700069,,,150.0,,2.0,0.0,4.0,2.0,4.0,2.1,3214.941339788412,0.0,869.0,0.0,0.0,67290.0,1,1,2,102.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1258.0790629962744,0.024275028103550117,0.018696374840188355,32042.85714285714,9,5,9,9_1,9_1,9_0_0 +70,2,71.0,3,0.0,6,111,1,0,78,3.0,0.0,0.0,296.1045483276236,0.0,0.0,14281.0,0,70,2,10082,201700070,,,,210.0,0.0,2.0,3.0,0.0,1.0,1.0,2600.5985346966913,0.0,220.0,0.0,0.0,14602.0,0,5,3,65.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,296.1045483276236,0.020734160655950115,0.020278355590167347,14602.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +71,2,63.0,2,0.0,5,111,1,46,64,5.0,0.0,0.0,317.3371221148886,0.0,591.350927065572,21280.980000000003,41,50,8,10083,201700071,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2480.990648644,570.0,0.0,0.0,0.0,28948.0,1,1,3,96.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,908.6880491804607,0.04269953964434253,0.03139035681844896,19298.666666666668,5,3,5,5_0,5_3,5_0_0 +72,2,46.0,2,0.0,5,111,1,0,52,5.0,0.0,0.0,1184.4181933104944,0.0,0.0,18230.920000000002,0,42,2,10085,201700072,,,,331.0,1.0,0.0,2.0,0.0,1.0,1.0,2062.6763482628235,0.0,880.0,0.0,0.0,21151.0,0,1,3,85.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1184.4181933104944,0.06496754926852262,0.055998212534182516,21151.0,5,3,5,5_0,5_2,5_0_0 +73,2,55.0,2,0.0,1,111,2,52,63,8.0,0.0,416.377895869032,815.6334376660906,0.0,621.0320016571712,30023.340000000004,50,50,1,10086,201700073,,,400.0,,2.0,2.0,5.0,0.0,2.0,1.5,1459.0828421738117,0.0,606.0,351.0,0.0,41989.0,1,1,1,138.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1853.0433351922939,0.06172009294076854,0.04413163769540341,27992.666666666668,8,4,8,8_1,8_3,8_1_0 +74,2,89.0,1,0.0,7,111,1,77,74,10.0,0.0,0.0,575.1039423590877,0.0,1071.6938730855015,37337.016322376294,60,12,2,10087,201700074,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2539.1147948594958,1033.0,0.0,0.0,0.0,74408.0,5,5,1,225.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1646.797815444589,0.04410630461807023,0.022131999454958997,49605.333333333336,10,5,10,10_0,10_3,10_0_0 +75,2,48.0,2,0.0,6,111,4,42,37,6.0,0.0,0.0,2790.11240310529,0.0,0.0,55116.20413333334,31,31,1,10088,201700075,,,320.0,,2.0,0.0,5.0,2.0,4.0,2.5,1860.8662096467842,0.0,2073.0,0.0,0.0,56280.0,1,1,1,150.0,5,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2790.11240310529,0.05062236137226797,0.049575557979838134,22512.0,6,3,6,6_1,6_2,6_0_0 +76,1,25.0,1,309.0,1,111,4,0,43,10.0,0.0,0.0,0.0,0.0,0.0,26183.380000000005,0,33,8,1009,201700076,,,,,1.0,0.0,1.0,0.0,1.0,1.0,6139.359698886959,0.0,0.0,0.0,0.0,43640.0,0,1,3,14.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0.0,0.0,0.0,43640.0,10,5,10,10_0,10_4,10_1_0 +77,1,46.0,3,380.0,6,111,2,0,54,1.0,0.0,0.0,1144.0403003567276,254.7823596542241,0.0,18569.459999999995,0,41,2,10090,201700077,,,191.0,118.0,1.0,0.0,3.0,1.0,2.0,1.5,4240.0765552183,0.0,850.0,0.0,0.0,13728.0,0,4,3,70.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1398.8226600109517,0.0753292050501712,0.1018955900357628,9152.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +78,1,48.0,4,209.0,5,111,1,0,62,1.0,0.0,0.0,228.80806007134552,0.0,176.9321942043223,8725.7,0,50,2,10091,201700078,,,,,1.0,0.0,1.0,0.0,1.0,1.0,1656.1597339509485,0.0,170.0,100.0,0.0,9039.0,0,4,3,30.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,405.7402542756678,0.04649945039087612,0.044887736948298236,9039.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +79,2,52.0,4,0.0,2,300,5,77,67,4.0,0.0,624.566843803548,3230.231436301349,0.0,0.0,26931.12753375566,60,71,1,10092,201700079,,,700.0,,1.0,1.0,4.0,0.0,2.0,1.5,1808.6940586899839,0.0,2400.0,0.0,0.0,25200.0,7,4,1,90.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3854.7982801048965,0.14313542109491204,0.15296818571844828,16800.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +80,2,47.0,3,0.0,2,112,2,54,65,5.0,1570.5914490474934,0.0,1485.9064606986203,106.15931652259337,0.0,55742.16175060325,31,50,1,10093,201700080,,,504.0,,2.0,0.0,6.0,3.0,5.0,2.8,2304.5418211525275,0.0,1104.0,0.0,0.0,50794.0,1,1,2,170.0,9,0.0,4,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3162.657226268707,0.05673725465508126,0.0622643860745109,18140.714285714286,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +81,2,29.0,2,0.0,1,111,2,46,53,8.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,31491.68,30,50,1,10094,201700081,,,300.0,600.0,2.0,0.0,4.0,0.0,2.0,1.5,2405.0808898276687,1300.0,0.0,0.0,0.0,39453.0,1,1,3,88.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2072.4464279554363,0.06580933211424211,0.052529501633727126,26302.0,7,4,7,7_1,7_2,7_1_0 +82,0,51.0,4,0.0,1,111,5,0,85,1.0,0.0,1110.341055650752,0.0,0.0,0.0,14894.400000000001,0,71,1,10095,201700082,,,,,2.0,1.0,6.0,2.0,3.0,2.0,1577.029406722562,0.0,0.0,0.0,0.0,16330.0,0,6,5,100.0,8,7.0,2,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1110.341055650752,0.07454755180811257,0.0679939409461575,8165.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +83,2,32.0,4,0.0,2,111,4,0,85,1.0,0.0,0.0,2691.859530251124,0.0,0.0,14967.660000000002,0,33,2,10096,201700083,,,320.0,,0.0,0.0,3.0,2.0,3.0,1.6,666.1169014360638,0.0,2000.0,0.0,0.0,14400.0,0,6,3,54.0,6,5.0,2,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2691.859530251124,0.17984504794010042,0.1869346896007725,9000.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +84,2,38.0,3,0.0,2,111,2,52,64,6.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,26654.479999999996,50,50,2,10097,201700084,,,,395.0,2.0,0.0,3.0,2.0,4.0,2.3,1007.0265695100264,1500.0,0.0,0.0,0.0,48348.0,1,1,3,65.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2391.2843399485805,0.0897141621201607,0.049459839909584274,21020.869565217392,5,3,5,5_0,5_2,5_0_1 +85,2,86.0,2,0.0,1,111,2,0,77,4.0,0.0,0.0,397.0492807120408,0.0,1344.6846759528494,13684.740000000002,0,50,2,10098,201700085,,,168.0,,0.0,2.0,3.0,0.0,1.0,1.0,4473.762496813156,0.0,295.0,760.0,0.0,17727.0,0,5,1,51.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1741.7339566648902,0.12727563378368095,0.09825317068115813,17727.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +86,2,39.0,3,0.0,3,112,1,35,42,7.0,0.0,0.0,936.7671165273911,0.0,0.0,33144.14,0,30,1,101,201700086,0.0,,456.0,,2.0,0.0,5.0,2.0,4.0,2.1,2661.087939501533,0.0,696.0,0.0,0.0,53632.0,1,1,2,88.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,936.7671165273911,0.02826343107793387,0.017466570639308454,25539.04761904762,7,4,7,7_1,7_2,7_0_1 +87,2,65.0,1,0.0,8,112,4,0,75,9.0,0.0,0.0,866.7787687408619,0.0,0.0,16781.379999999997,0,50,1,10100,201700087,,,240.0,,0.0,4.0,4.0,0.0,1.0,1.0,2642.0497339899607,0.0,644.0,0.0,0.0,40629.0,0,5,1,73.0,8,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,866.7787687408619,0.051651221099865564,0.02133399219131315,40629.0,10,5,10,10_1,10_1,10_0_0 +88,2,64.0,2,0.0,6,111,2,75,75,4.0,0.0,346.98157989085996,588.1713073598705,0.0,1008.513506964637,35843.198839019715,31,44,1,10101,201700088,,,270.0,,0.0,1.0,7.0,1.0,3.0,2.0,2305.336001195742,0.0,437.0,570.0,0.0,36833.0,5,5,1,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1943.6663942153675,0.054226923298471015,0.05276970092621745,18416.5,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +89,1,46.0,4,260.0,3,111,2,0,85,2.0,0.0,0.0,389.7122552288106,0.0,726.2204367471937,15785.659999999998,0,71,1,10102,201700089,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3774.201190610858,700.0,0.0,0.0,0.0,12236.0,0,7,3,42.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1115.9326919760042,0.07069281182896403,0.09120077574174601,12236.0,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +90,2,80.0,3,0.0,5,112,4,77,75,5.0,0.0,0.0,3738.992887518811,350.32574452455816,0.0,29193.199999999997,71,44,1,10105,201700090,,,260.0,,0.0,2.0,6.0,0.0,2.0,1.5,1623.8220538422838,0.0,2778.0,0.0,0.0,30202.0,5,5,1,148.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4089.3186320433692,0.14007777948437888,0.13539893490640914,20134.666666666668,5,3,5,5_1,5_1,5_0_0 +91,0,59.0,2,0.0,99,111,6,56,64,5.0,0.0,0.0,576.2801330666812,0.0,1073.8856792653332,54472.05369488954,71,50,2,10106,201700091,,,,,2.0,3.0,4.0,0.0,2.0,1.5,4500.514980285526,1035.1126702695867,0.0,0.0,0.0,28387.0,4,1,5,72.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1650.1658123320144,0.03029380572972283,0.058131039290238995,18924.666666666668,5,3,5,5_0,5_3,5_0_0 +92,2,57.0,2,0.0,8,112,2,56,63,6.0,1189.8420068541616,0.0,734.8776517585568,159.23897478389006,0.0,28569.44,50,71,1,10107,201700092,,,326.0,,4.0,1.0,6.0,2.0,4.0,2.5,2420.3360260513873,0.0,546.0,0.0,0.0,55449.0,4,1,1,100.0,7,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2083.9586333966085,0.07294362904546287,0.03758334024773411,22179.6,6,3,6,6_1,6_0,6_0_0 +93,1,19.0,3,192.0,99,211,1,0,68,3.0,0.0,0.0,0.0,0.0,0.0,17002.643132637815,0,60,2,10108,201700093,,,,,1.0,0.0,3.0,0.0,1.0,1.0,683.6193099243549,0.0,0.0,0.0,0.0,14065.0,0,1,3,65.0,1,2.0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,14065.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +94,2,56.0,2,0.0,1,120,2,54,62,7.0,0.0,346.98157989085996,4037.789295376686,169.8549064361494,0.0,24218.042066597376,50,71,1,1011,201700094,,,,,2.0,1.0,5.0,0.0,2.0,1.5,2132.390662656699,0.0,3000.0,0.0,0.0,36974.0,1,1,1,160.0,0,3.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4554.625781703696,0.1880674651228574,0.1231845562206874,24649.333333333332,7,4,7,7_1,7_1,7_1_0 +95,1,27.0,4,78.0,4,111,1,0,55,3.0,0.0,0.0,403.7789295376686,0.0,583.8762408742635,22184.64,0,30,2,10111,201700095,,,,272.0,1.0,0.0,2.0,0.0,1.0,1.0,3741.482365773435,0.0,300.0,330.0,0.0,14790.0,0,1,3,50.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,987.6551704119322,0.044519774511190276,0.06677857812115837,14790.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +96,2,50.0,3,0.0,1,120,2,52,47,5.0,2125.851052246102,0.0,1558.5866680154008,0.0,0.0,54358.77999999999,30,50,1,10113,201700096,,,681.0,,2.0,0.0,7.0,3.0,5.0,2.8,1496.463556947867,0.0,1158.0,0.0,0.0,54111.0,1,1,1,122.0,0,2.0,4,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3684.437720261503,0.0677799928596908,0.06809036462570463,19325.357142857145,5,3,5,5_1,5_1,5_1_0 +97,2,28.0,2,0.0,9,111,4,0,43,8.0,0.0,0.0,1090.2031097517051,0.0,0.0,20105.42,0,33,8,10115,201700097,,,180.0,400.0,1.0,0.0,2.0,0.0,1.0,1.0,3960.545594084798,0.0,810.0,0.0,0.0,30600.0,0,1,3,35.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1090.2031097517051,0.05422433899673348,0.03562755260626487,30600.0,8,4,8,8_0,8_2,8_0_0 +98,2,34.0,3,0.0,4,400,5,65,69,5.0,0.0,0.0,672.964882562781,169.8549064361494,0.0,26329.16,43,43,1,10116,201700098,,,250.0,,2.0,0.0,4.0,1.0,3.0,1.8,1810.2257524180866,0.0,500.0,0.0,0.0,33370.0,1,1,2,98.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,842.8197889989303,0.03201088789004018,0.02525681117767247,18538.888888888887,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +99,2,76.0,3,0.0,8,111,1,0,86,5.0,0.0,0.0,672.964882562781,0.0,552.0284459174856,29454.000000000004,0,71,2,10117,201700099,,,,482.0,2.0,0.0,4.0,2.0,5.0,2.8,1975.3334405813011,0.0,500.0,312.0,0.0,52540.0,0,5,3,100.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1224.9933284802664,0.041590049856734784,0.023315442110397152,18764.285714285714,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +100,1,56.0,3,272.0,5,111,1,0,52,2.0,0.0,0.0,383.58998306078513,0.0,0.0,15570.92,0,20,2,10118,201700100,,,160.0,118.0,1.0,0.0,3.0,2.0,3.0,2.0,1007.8264314621658,0.0,285.0,0.0,0.0,22916.0,0,4,3,63.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,383.58998306078513,0.024635023689081,0.016738958939639777,11458.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +101,1,32.0,4,337.0,4,111,1,0,85,1.0,0.0,0.0,322.9044400467288,0.0,601.7255047333891,11001.619999999999,0,71,2,10119,201700101,,,,,0.0,0.0,3.0,1.0,2.0,1.3,1379.5245978111302,580.0,0.0,0.0,0.0,12774.0,0,6,3,75.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,924.629944780118,0.08404489018709227,0.07238374391577564,9826.153846153846,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +102,2,70.0,2,0.0,5,111,1,78,78,4.0,0.0,0.0,489.9239780019333,0.0,2293.0339495616145,25188.100000000002,50,50,2,1012,201700102,780.0,780.0,,,0.0,0.0,3.0,0.0,2.0,1.5,1930.0735812659384,880.0,0.0,780.0,0.0,27700.0,5,5,1,72.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2782.957927563548,0.11048701281809853,0.10046779521890065,18466.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +103,1,35.0,3,452.0,99,112,4,85,52,2.0,0.0,0.0,1278.633276869284,148.62304313163074,0.0,38357.44,60,41,1,10120,201700103,,,,44.0,1.0,0.0,3.0,3.0,5.0,2.4,853.4188959047872,0.0,950.0,0.0,0.0,30794.0,8,1,3,75.0,8,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1427.2563200009147,0.03720937372256633,0.04634851984155727,12830.833333333334,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +104,1,48.0,3,27.0,99,111,2,0,63,2.0,0.0,0.0,740.261370819059,0.0,1733.9355032023584,21210.267533755657,0,50,1,10122,201700104,,,,721.0,1.0,2.0,4.0,2.0,4.0,2.5,907.5893930263255,0.0,550.0,980.0,0.0,36344.0,0,1,3,90.0,8,7.0,5,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2474.1968740214174,0.1166509036288104,0.06807717571047263,14537.6,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +105,2,30.0,4,0.0,1,211,4,0,55,1.0,0.0,0.0,2422.6735772260117,0.0,0.0,22259.8,0,60,1,10123,201700105,,,302.0,,1.0,0.0,6.0,3.0,4.0,1.9,87.05917586919806,0.0,1800.0,0.0,0.0,9170.0,0,4,3,82.0,1,2.0,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2422.6735772260117,0.10883626884455438,0.2641955918458028,4826.315789473684,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +106,2,62.0,2,0.0,4,111,1,0,75,8.0,0.0,0.0,235.53770889697333,0.0,0.0,21186.44,0,31,2,10124,201700106,,,,500.0,0.0,2.0,3.0,0.0,1.0,1.0,3233.1469147304665,0.0,175.0,0.0,0.0,31280.0,0,5,3,78.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,235.53770889697333,0.011117380215693308,0.0075299779059134694,31280.0,8,4,8,8_0,8_3,8_0_1 +107,2,48.0,3,0.0,5,112,2,0,54,7.0,0.0,0.0,672.964882562781,0.0,1905.559731580551,17460.9258467513,0,31,1,10128,201700107,,,295.0,,1.0,0.0,4.0,1.0,2.0,1.3,791.8136849031512,0.0,500.0,1077.0,0.0,31250.0,0,1,2,110.0,10,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2578.5246141433317,0.14767399144662655,0.08251278765258661,24038.46153846154,7,4,7,7_1,7_1,7_0_0 +108,1,36.0,3,187.0,6,111,2,85,53,3.0,0.0,0.0,538.3719060502248,0.0,1238.525359430256,41032.24,60,50,1,1013,201700108,,,400.0,366.0,1.0,0.0,5.0,3.0,5.0,2.4,2018.1120360256216,0.0,400.0,700.0,0.0,34934.0,6,1,3,100.0,5,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1776.8972654804807,0.04330490525207692,0.05086440904220761,14555.833333333334,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +109,1,29.0,4,350.0,1,111,2,0,54,2.0,1586.456009138882,0.0,740.261370819059,138.0071114793714,0.0,14355.820315994117,0,60,1,10132,201700109,,,500.0,,1.0,0.0,4.0,2.0,3.0,1.6,4293.901232279452,0.0,550.0,0.0,0.0,19923.0,0,4,3,110.0,4,4.0,2,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,2464.7244914373127,0.17168816808687082,0.12371251776526189,12451.875,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +110,0,69.0,2,0.0,99,111,2,0,74,9.0,2459.0068141652673,0.0,605.6683943065029,0.0,0.0,42088.75087530162,0,10,1,10133,201700110,,,140.0,,0.0,2.0,6.0,0.0,1.0,1.0,1134.870045583239,0.0,450.0,0.0,0.0,50987.0,0,5,5,140.0,7,6.0,1,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3064.67520847177,0.07281459166017142,0.060106992144502915,50987.0,10,5,10,10_1,10_2,10_0_0 +111,1,49.0,3,214.0,1,111,2,0,84,3.0,0.0,0.0,1259.790260157526,0.0,2335.504963497054,29441.55686773038,0,31,1,10134,201700111,,,552.0,,2.0,0.0,5.0,3.0,4.0,2.5,1564.930463863592,0.0,936.0,1320.0,0.0,39078.0,0,3,3,100.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3595.2952236545802,0.12211634187033187,0.0920030509149542,15631.2,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +112,2,93.0,2,0.0,99,111,1,0,77,6.0,0.0,0.0,969.0694308904046,0.0,0.0,21239.15624579753,0,41,2,10135,201700112,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3452.337748423046,0.0,720.0,0.0,0.0,21290.0,0,5,1,94.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,969.0694308904046,0.04562655030527161,0.045517587171930704,21290.0,6,3,6,6_0,6_2,6_0_0 +113,2,66.0,3,0.0,7,111,4,75,78,7.0,0.0,0.0,2288.080600713455,0.0,0.0,51240.32,50,71,1,1014,201700113,,,326.0,,1.0,0.0,5.0,1.0,3.0,2.0,3342.582797331936,0.0,1700.0,0.0,0.0,48821.0,5,5,1,130.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2288.080600713455,0.04465390927912736,0.04686672949577959,24410.5,7,4,7,7_1,7_3,7_0_0 +114,2,36.0,3,0.0,1,111,1,37,38,9.0,0.0,0.0,1005.4095345487948,0.0,0.0,49026.05665845403,20,12,2,10140,201700114,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3477.152734334016,0.0,747.0,0.0,0.0,68639.0,1,1,2,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1005.4095345487948,0.020507656602959164,0.014647788204210359,32685.238095238095,9,5,9,9_0,9_4,9_1_0 +115,1,24.0,3,316.0,9,300,4,0,69,3.0,0.0,0.0,2341.9177913184776,70.77287768172891,0.0,22344.12,0,71,1,10142,201700115,,,210.0,,1.0,0.0,3.0,2.0,3.0,1.6,1218.6177349486304,0.0,1740.0,0.0,0.0,24402.0,0,1,3,90.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2412.6906690002065,0.10797877334172062,0.09887266080649973,15251.25,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +116,2,45.0,1,0.0,6,111,6,34,34,10.0,0.0,0.0,2119.83938007276,0.0,0.0,61773.920000000006,20,10,1,10143,201700116,,,1044.0,,2.0,0.0,5.0,1.0,3.0,2.0,4471.828489796644,0.0,1575.0,0.0,0.0,92018.0,1,1,2,110.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2119.83938007276,0.03431608970375783,0.02303722510892173,46009.0,10,5,10,10_1,10_3,10_0_0 +117,2,42.0,2,0.0,9,112,2,63,54,8.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,83972.73119129574,50,31,1,10144,201700117,,,280.0,,2.0,0.0,5.0,1.0,3.0,1.8,2671.9653489540365,1440.0,0.0,0.0,0.0,49785.0,1,1,3,135.0,8,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2295.6329663506376,0.027337838531427846,0.04611093635333208,27658.333333333332,8,4,8,8_1,8_0,8_0_0 +118,2,40.0,1,0.0,1,111,2,31,34,10.0,0.0,832.755791738064,1345.929765125562,0.0,5307.965826129669,218397.74000000002,10,10,2,10146,201700118,,,,,2.0,0.0,10.0,3.0,5.0,2.4,2757.4276802204745,0.0,1000.0,3000.0,0.0,323578.0,1,1,2,300.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,7486.651382993296,0.03427989402726097,0.02313708405081092,134824.1666666667,10,5,10,10_0,10_3,10_1_0 +119,2,72.0,2,0.0,5,112,2,78,72,6.0,3807.4944219333174,0.0,1615.1157181506744,233.5504963497054,0.0,36546.84,50,70,1,10147,201700119,,,800.0,,0.0,2.0,6.0,0.0,2.0,1.5,1532.8046038194684,0.0,1200.0,0.0,0.0,36286.0,5,5,1,200.0,9,1.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,5656.160636433697,0.15476469747955493,0.15587721535671326,24190.666666666668,7,4,7,7_1,7_1,7_0_0 +120,1,42.0,3,437.0,1,111,2,0,56,2.0,713.905204112497,0.0,3456.347636842443,0.0,0.0,27336.6658467513,0,50,1,10149,201700120,,,,,1.0,0.0,5.0,4.0,5.0,2.6,505.43766028523106,0.0,2568.0,0.0,0.0,32510.0,0,1,3,120.0,8,6.0,2,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,4170.25284095494,0.15255162660776844,0.12827600249015506,12503.846153846154,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +121,2,77.0,3,0.0,5,112,2,78,78,4.0,2057.6334438531303,638.4461069991823,567.9823608829871,0.0,0.0,23647.199999999997,50,50,1,1015,201700121,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1406.5906122291747,0.0,422.0,0.0,0.0,26326.0,5,5,5,98.0,9,3.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3264.0619117352994,0.1380316448347077,0.12398624598250017,17550.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +122,2,89.0,3,0.0,4,111,1,0,75,9.0,0.0,0.0,481.8428559149512,0.0,0.0,26756.08,0,33,8,10150,201700122,,,,,0.0,4.0,4.0,0.0,1.0,1.0,3462.60595030431,0.0,358.0,0.0,0.0,37870.0,0,5,1,68.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,481.8428559149512,0.018008723845755848,0.012723603272113842,37870.0,9,5,9,9_0,9_3,9_0_1 +123,2,63.0,2,0.0,5,300,5,78,78,6.0,0.0,346.98157989085996,969.0694308904046,212.31863304518674,0.0,40382.663983607206,70,50,1,10151,201700123,,,210.0,,0.0,1.0,4.0,0.0,2.0,1.5,2248.753307699962,0.0,720.0,0.0,0.0,32737.0,5,5,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1528.3696438264515,0.037847172352147754,0.046686307353344884,21824.666666666668,6,3,6,6_1,6_0,6_0_0 +124,2,76.0,3,0.0,1,120,5,77,78,3.0,0.0,1318.5300035852679,605.6683943065029,283.09151072691566,0.0,19784.679999999997,71,50,1,10152,201700124,,,127.0,,0.0,3.0,4.0,0.0,2.0,1.5,1625.043157750176,0.0,450.0,0.0,0.0,21197.0,5,5,1,100.0,0,2.0,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2207.2899086186862,0.11156561079677238,0.10413218420619362,14131.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +125,2,72.0,2,0.0,6,300,1,0,77,2.0,0.0,0.0,336.4824412813905,58.38762408742635,0.0,15393.51536887669,0,70,1,10153,201700125,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2366.568838655854,0.0,250.0,0.0,0.0,11918.0,0,5,1,95.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,394.8700653688168,0.025651714758227553,0.033132242437390234,11918.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +126,1,48.0,4,114.0,4,211,2,85,53,4.0,0.0,0.0,1614.5222002336438,0.0,3008.6275236669458,40601.05999999999,50,50,1,10154,201700126,,,900.0,,2.0,0.0,5.0,3.0,5.0,2.8,1094.658919703865,2900.0,0.0,0.0,0.0,48253.0,8,1,2,176.0,2,3.0,4,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,4623.149723900589,0.1138677099538926,0.09581061745177687,17233.214285714286,4,2,4_1,4_1_1,4_1_1,4_0_1_1 +127,2,52.0,2,0.0,9,112,2,53,53,9.0,0.0,0.0,1498.0198285847505,0.0,3379.4049093025556,42083.439999999995,60,50,1,10155,201700127,,,672.0,,2.0,2.0,4.0,2.0,4.0,2.1,1621.0591074278195,0.0,1113.0,1910.0,0.0,72207.0,1,1,1,130.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4877.424737887306,0.11589890792880303,0.06754781029384002,34384.28571428571,9,5,9,9_1,9_0,9_0_0 +128,2,33.0,3,0.0,5,111,3,52,43,8.0,0.0,0.0,724.1102136375523,0.0,2082.4919257848733,37994.74719625045,50,30,1,10157,201700128,,,556.0,,2.0,0.0,7.0,3.0,5.0,2.4,1860.1737447613964,0.0,538.0,1177.0,0.0,57081.0,1,1,2,135.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2806.6021394224254,0.0738681619573823,0.04916876262543448,23783.75,6,3,6,6_1,6_2,6_0_0 +129,1,49.0,4,404.0,4,111,1,48,56,2.0,0.0,0.0,543.755625110727,0.0,318.4779495677801,19693.773573887232,50,60,8,1016,201700129,,,,205.0,2.0,0.0,4.0,4.0,6.0,3.1,1640.5759583929218,0.0,404.0,180.0,0.0,35615.0,4,1,3,75.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,862.2335746785071,0.043782039609807304,0.02420984345580534,11488.709677419354,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +130,2,50.0,2,0.0,8,221,4,52,65,8.0,0.0,0.0,2510.159011959173,0.0,0.0,53202.18,50,50,1,10160,201700130,,,390.0,,2.0,0.0,4.0,0.0,2.0,1.5,1713.2546890871151,0.0,1865.0,0.0,0.0,41663.0,1,1,2,89.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2510.159011959173,0.04718150669689048,0.06024911820942258,27775.333333333332,8,4,8,8_1,8_1,8_0_0 +131,1,37.0,4,182.0,1,112,2,67,46,5.0,0.0,0.0,2878.943767603577,153.93100895776038,0.0,26339.980315994115,60,43,2,10161,201700131,,,596.0,,2.0,0.0,4.0,3.0,5.0,2.4,2566.509707076367,0.0,2139.0,0.0,0.0,43738.0,1,1,3,65.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,3032.874776561337,0.1151433957116407,0.0693418715204476,18224.166666666668,4,2,4_1,4_0_1,4_0_1,4_1_0_1 +132,2,41.0,2,0.0,99,112,4,63,52,5.0,0.0,0.0,1776.6272899657417,212.31863304518674,0.0,63529.42,71,71,2,10162,201700132,,,530.0,474.0,2.0,0.0,4.0,4.0,6.0,3.3,2477.3624090048966,0.0,1320.0,0.0,0.0,61126.0,1,1,3,85.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1988.9459230109285,0.03130747806309153,0.03253846027894723,18523.030303030304,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +133,2,46.0,4,0.0,4,111,4,55,52,7.0,0.0,0.0,772.5636851820725,0.0,1295.1436615756393,27509.58,50,71,2,10163,201700133,,,,570.0,2.0,0.0,3.0,1.0,3.0,1.8,2019.4480610558387,0.0,574.0,732.0,0.0,47420.0,1,1,3,62.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2067.707346757712,0.07516317394731988,0.043604119501427924,26344.444444444445,7,4,7,7_0,7_4,7_0_1 +134,2,42.0,3,0.0,1,112,2,52,38,7.0,3474.338660014152,0.0,1870.842373524531,0.0,0.0,81187.14031599413,50,31,1,10167,201700134,,,941.0,,2.0,0.0,13.0,4.0,6.0,2.9,1919.5584983753738,0.0,1390.0,0.0,0.0,68330.0,1,1,2,350.0,9,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5345.181033538684,0.06583777939134612,0.07822597736775477,23562.068965517243,6,3,6,6_1,6_0,6_1_0 +135,2,43.0,1,0.0,1,111,2,35,38,9.0,0.0,0.0,687.7701099791622,0.0,2255.8854761051093,48542.00175060326,30,12,1,10170,201700135,,,536.0,,2.0,0.0,5.0,2.0,4.0,2.1,800.1545428853863,0.0,511.0,1275.0,0.0,75060.0,1,1,1,120.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2943.6555860842714,0.06064141320763907,0.0392173672539871,35742.857142857145,9,5,9,9_1,9_3,9_1_0 +136,2,28.0,3,0.0,5,111,1,67,52,6.0,0.0,0.0,0.0,0.0,0.0,25194.00031599412,50,43,2,10173,201700136,,,,680.0,2.0,0.0,3.0,1.0,3.0,1.8,3352.5595969397145,0.0,0.0,0.0,0.0,41036.0,1,1,3,78.0,9,7.0,4,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,22797.777777777777,6,3,6,6_0,6_3,6_0_0 +137,2,37.0,3,0.0,8,111,4,0,46,8.0,0.0,0.0,1009.4473238441715,0.0,0.0,23145.496855924084,0,30,2,10174,201700137,,,300.0,529.0,1.0,0.0,2.0,0.0,1.0,1.0,2613.634160541196,0.0,750.0,0.0,0.0,29926.0,0,1,3,55.0,7,5.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1009.4473238441715,0.04361311965466853,0.03373144836744541,29926.0,8,4,8,8_0,8_2,8_0_0 +138,2,74.0,4,0.0,5,111,1,0,77,4.0,0.0,0.0,538.3719060502248,56.61830214538313,0.0,6404.2658467513,0,71,2,10176,201700138,,,,229.0,0.0,8.0,2.0,0.0,1.0,1.0,3203.572625473127,0.0,400.0,0.0,0.0,16220.0,0,5,3,42.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,594.9902081956079,0.09290529506944646,0.03668250358789198,16220.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +139,2,65.0,5,0.0,6,112,2,0,68,1.0,1586.456009138882,0.0,1857.3830758732754,403.40540278585485,0.0,16662.061750603254,0,70,1,10177,201700139,,,450.0,,2.0,4.0,5.0,1.0,2.0,1.5,2545.6804893932904,0.0,1380.0,0.0,0.0,14960.0,0,1,1,92.0,9,1.0,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3847.2444877980124,0.23089846535100747,0.2571687491843591,9973.333333333334,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +140,2,28.0,2,0.0,9,112,2,21,62,9.0,0.0,416.377895869032,4683.835582636955,0.0,0.0,63255.48,43,31,1,1018,201700140,,,426.0,,2.0,0.0,4.0,1.0,3.0,1.8,3005.0101186381066,0.0,3480.0,0.0,0.0,57943.0,1,1,2,210.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,5100.213478505987,0.08062880051666649,0.08802121875819317,32190.555555555555,9,5,9,9_1,9_1,9_0_0 +141,1,44.0,5,200.0,2,111,1,0,85,2.0,0.0,0.0,318.4505857012566,0.0,593.4258425991354,7469.4808996338725,0,71,2,10180,201700141,,,,,0.0,4.0,4.0,1.0,2.0,1.3,920.6194140062084,572.0,0.0,0.0,0.0,14015.0,0,6,3,73.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,911.876428300392,0.12208029454163126,0.06506431882271795,10780.76923076923,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +142,2,46.0,3,0.0,6,112,5,52,46,5.0,0.0,0.0,2320.3829150764686,0.0,0.0,37895.72,60,31,1,10181,201700142,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2246.7561799071623,0.0,1724.0,0.0,0.0,46086.0,1,4,1,90.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2320.3829150764686,0.06123073832814018,0.05034897615493791,20037.391304347828,5,3,5,5_1,5_0,5_0_0 +143,2,39.0,3,0.0,4,300,2,69,45,5.0,0.0,0.0,2574.7636406852,0.0,0.0,48923.119999999995,44,42,1,10182,201700143,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1842.6271463392804,0.0,1913.0,0.0,0.0,41570.0,1,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2574.7636406852,0.052628770215088494,0.061938023591176325,19795.238095238095,5,3,5,5_1,5_0,5_0_1 +144,1,52.0,4,149.0,1,111,2,0,22,3.0,0.0,0.0,430.6975248401798,0.0,1220.832140009824,18162.640315994115,0,30,1,10185,201700144,,,312.0,,1.0,1.0,2.0,0.0,1.0,1.0,2324.735913755466,0.0,320.0,690.0,0.0,14837.0,0,1,3,47.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1651.5296648500037,0.09093004299576743,0.11131156331131654,14837.0,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +145,0,77.0,3,0.0,1,111,2,0,86,2.0,0.0,0.0,713.3427755165478,0.0,2048.874808886052,13568.220000000001,0,71,1,10187,201700145,,,290.0,,0.0,3.0,3.0,0.0,1.0,1.0,1785.1053780360467,0.0,530.0,1158.0,0.0,12855.0,0,5,5,60.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2762.2175844025996,0.20357995259529985,0.2148749579465266,12855.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +146,1,48.0,3,84.0,99,111,2,0,68,1.0,0.0,0.0,934.07525699714,0.0,0.0,13403.419999999998,0,71,2,10188,201700146,,,,336.0,1.0,1.0,3.0,0.0,1.0,1.0,10020.30318305883,0.0,694.0,0.0,0.0,10632.0,0,1,3,45.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,934.07525699714,0.06968932235184304,0.08785508436767682,10632.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +147,1,30.0,3,250.0,99,111,2,0,55,3.0,0.0,0.0,516.8370298082158,0.0,1592.3897478389006,16600.560315994117,0,41,2,10189,201700147,,,,110.0,1.0,0.0,2.0,0.0,1.0,1.0,2883.3076264920505,0.0,384.0,900.0,0.0,15210.0,0,1,3,50.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,2109.2267776471163,0.12705756537717242,0.13867368689330153,15210.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +148,2,81.0,2,0.0,2,111,2,0,77,7.0,0.0,0.0,913.8863105202565,0.0,1539.310089577604,17760.999999999996,0,71,1,1019,201700148,,,32.0,,0.0,2.0,5.0,0.0,1.0,1.0,1876.3505574242597,0.0,679.0,870.0,0.0,23478.0,0,5,1,118.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2453.1964000978605,0.13812265075715674,0.10448915580960305,23478.0,6,3,6,6_1,6_3,6_0_1 +149,2,77.0,2,0.0,1,112,6,0,77,5.0,1424.6374962067162,0.0,484.5347154452023,44.23304855108057,0.0,19995.760000000002,0,71,1,10190,201700149,,,,,0.0,3.0,5.0,0.0,1.0,1.0,3667.159013928598,0.0,360.0,0.0,0.0,29200.0,0,5,1,200.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1953.4052602029992,0.09769097349653122,0.06689744041791093,29200.0,8,4,8,8_1,8_0,8_1_0 +150,2,28.0,2,0.0,2,111,2,0,43,3.0,0.0,0.0,646.0462872602698,0.0,1061.5931652259337,19426.905980622454,0,30,2,10191,201700150,,,,513.0,1.0,0.0,3.0,0.0,1.0,1.0,2995.343390765195,0.0,480.0,600.0,0.0,16366.0,0,1,3,80.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1707.6394524862035,0.08790074210424985,0.10434067288807304,16366.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +151,2,39.0,2,0.0,8,112,6,54,22,4.0,0.0,0.0,767.1799661215703,1769.3219420432229,0.0,41840.280000000006,50,50,1,10192,201700151,,,,,2.0,2.0,4.0,1.0,3.0,1.8,774.2497811570389,0.0,570.0,0.0,0.0,32270.0,4,1,3,120.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2536.5019081647933,0.06062344487572246,0.07860247623690093,17927.777777777777,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +152,2,32.0,3,0.0,99,111,2,0,43,9.0,0.0,0.0,1009.4473238441715,0.0,0.0,18702.88,0,30,2,10193,201700152,,,,580.0,1.0,0.0,1.0,0.0,1.0,1.0,4194.611994640937,0.0,750.0,0.0,0.0,37574.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1009.4473238441715,0.0539728279197734,0.026865580556878998,37574.0,9,5,9,9_0,9_4,9_0_0 +153,1,34.0,5,462.0,99,221,1,0,67,2.0,0.0,0.0,1130.581002705472,0.0,0.0,16606.62,0,50,1,10194,201700153,,,,58.0,1.0,0.0,5.0,3.0,4.0,2.1,301.75618885560715,0.0,840.0,0.0,0.0,27055.0,0,4,3,110.0,1,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1130.581002705472,0.06808013928815569,0.04178824626521796,12883.333333333332,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +154,2,28.0,3,0.0,2,111,2,0,47,6.0,0.0,0.0,576.7741377386398,0.0,1074.8062463858466,44272.31505288257,0,31,2,10195,201700154,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4142.90848521982,1036.0,0.0,0.0,0.0,22014.0,0,1,2,58.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1651.5803841244865,0.03730503774541043,0.07502409303736197,22014.0,6,3,6,6_0,6_3,6_0_1 +155,2,41.0,2,0.0,7,112,5,65,85,5.0,0.0,416.377895869032,1749.7086946632305,132.69914565324171,0.0,53267.08,43,30,1,10196,201700155,,,270.0,,1.0,0.0,6.0,2.0,4.0,2.1,2067.574466026947,0.0,1300.0,0.0,0.0,40361.0,1,6,2,110.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2298.7857361855044,0.04315584289931989,0.05695561894367098,19219.52380952381,5,3,5,5_1,5_0,5_0_0 +156,2,83.0,2,0.0,1,112,6,77,78,4.0,1110.5192063972174,0.0,4546.581521991593,159.23897478389006,1449.7456670082,33457.27648810088,70,71,1,10198,201700156,,,,,0.0,4.0,7.0,0.0,2.0,1.5,2077.3994921580215,1397.4021048639422,2800.0,0.0,0.0,30020.0,5,5,1,300.0,8,1.0,3,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,7266.0853701809,0.21717504031641943,0.24204148468290806,20013.333333333332,5,3,5,5_1,5_1,5_1_0 +157,2,71.0,2,0.0,6,300,4,75,74,9.0,0.0,513.5327382384728,2066.0021894677375,185.7788039145384,0.0,48972.159999999996,31,30,1,10199,201700157,,,362.0,,0.0,2.0,5.0,0.0,2.0,1.5,1483.6921283914633,0.0,1535.0,0.0,0.0,55400.0,5,5,1,140.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2765.313731620749,0.05646705662198174,0.04991541031806406,36933.333333333336,9,5,9,9_1,9_0,9_0_0 +158,2,46.0,3,0.0,6,111,2,0,54,5.0,0.0,0.0,605.6683943065029,0.0,1238.525359430256,32424.2658467513,0,31,1,1020,201700158,,,320.0,,2.0,0.0,4.0,2.0,3.0,2.0,1402.9080204206393,0.0,450.0,700.0,0.0,39918.0,0,1,2,100.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1844.193753736759,0.05687696253334091,0.04619955292691916,19959.0,5,3,5,5_1,5_2,5_0_0 +159,2,35.0,2,0.0,9,111,2,23,37,9.0,0.0,0.0,1211.3367886130059,0.0,2653.9829130648345,107720.09999999999,50,20,1,10200,201700159,,,600.0,,2.0,2.0,4.0,2.0,4.0,2.1,2073.4861279589263,0.0,900.0,1500.0,0.0,78207.0,1,1,1,125.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3865.3197016778404,0.03588299399720053,0.049424216523812965,37241.42857142857,9,5,9,9_1,9_2,9_0_0 +160,1,24.0,4,84.0,5,111,4,0,69,3.0,0.0,0.0,791.4067018938305,0.0,0.0,18661.2,0,42,2,10201,201700160,,,,536.0,1.0,0.0,2.0,0.0,1.0,1.0,5172.728678721696,0.0,588.0,0.0,0.0,15389.0,0,1,3,40.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,791.4067018938305,0.04240920744077714,0.05142677899108652,15389.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +161,1,19.0,2,200.0,99,111,1,0,84,1.0,0.0,0.0,139.1829482960038,0.0,259.36444169542636,14679.36,0,41,8,10202,201700161,,,,380.0,0.0,0.0,1.0,0.0,1.0,1.0,4968.874988690112,250.0,0.0,0.0,0.0,6400.0,0,3,3,26.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,398.5473899914301,0.02715018842724956,0.062273029686160955,6400.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +162,2,50.0,2,0.0,3,111,2,65,43,10.0,17.451016100527703,12.49133687607096,724.1102136375523,0.0,2268.2707296994117,26981.534343836407,50,33,1,10203,201700162,,,259.0,,2.0,0.0,4.0,0.0,2.0,1.5,2175.700139696581,0.0,538.0,1282.0,0.0,61488.0,1,1,1,90.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3022.3232963135624,0.11201450806314038,0.04915305907353569,40992.0,10,5,10,10_1,10_3,10_0_1 +163,2,82.0,2,0.0,1,120,2,71,71,4.0,2221.038412794435,0.0,484.5347154452023,226.47320858153253,0.0,14825.64,70,70,1,10204,201700163,,,200.0,,0.0,4.0,2.0,0.0,2.0,1.5,1786.386257902802,0.0,360.0,0.0,0.0,24260.0,5,5,5,70.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2932.04633682117,0.19776861820610578,0.12085928840977617,16173.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +164,2,72.0,2,0.0,1,111,2,77,74,8.0,0.0,0.0,619.1276919577585,0.0,2406.277841178783,23966.24,41,60,1,10206,201700164,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1365.4101779625578,0.0,460.0,1360.0,0.0,48262.0,5,5,1,90.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3025.4055331365416,0.12623613604539308,0.06268711477221295,32174.666666666668,9,5,9,9_1,9_2,9_1_0 +165,2,22.0,2,0.0,99,111,2,52,46,8.0,0.0,0.0,1292.0925745205395,0.0,0.0,18373.42,43,30,2,10207,201700165,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4241.278320541291,0.0,960.0,0.0,0.0,41358.0,1,1,2,48.0,8,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1292.0925745205395,0.07032401014729646,0.031241660005816033,27572.0,8,4,8,8_0,8_3,8_0_0 +166,1,21.0,5,253.0,99,120,6,0,68,1.0,0.0,0.0,0.0,0.0,0.0,7504.01665845403,0,50,3,10208,201700166,,,,197.0,1.0,0.0,1.0,0.0,1.0,1.0,4190.226883177627,0.0,0.0,0.0,0.0,5441.0,0,4,3,28.0,0,0.0,1,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,5441.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +167,2,29.0,3,0.0,99,111,6,46,47,6.0,0.0,0.0,660.8515146766509,0.0,1127.058077081533,20639.68,41,30,2,10210,201700167,,,100.0,700.0,2.0,0.0,3.0,0.0,2.0,1.5,2502.888646292844,0.0,491.0,637.0,0.0,33091.0,4,1,3,73.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1787.909591758184,0.08662486975370665,0.054030086481465775,22060.666666666668,6,3,6,6_0,6_3,6_0_0 +168,2,27.0,3,0.0,9,112,2,56,52,8.0,0.0,0.0,0.0,88.46609710216114,0.0,41586.03999999999,42,43,1,10213,201700168,,,89.0,,2.0,0.0,3.0,0.0,2.0,1.5,3890.883673638952,0.0,0.0,0.0,0.0,42251.0,1,1,2,80.0,9,3.0,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,88.46609710216114,0.0021273027463581807,0.0020938225628307295,28167.333333333332,8,4,8,8_1,8_1,8_0_0 +169,2,70.0,1,0.0,9,120,6,0,72,5.0,0.0,0.0,834.4764543778484,106.15931652259337,0.0,10472.35665845403,0,70,1,10214,201700169,,,113.0,,0.0,3.0,4.0,0.0,1.0,1.0,1982.0205678996333,0.0,620.0,0.0,0.0,20288.0,0,5,1,110.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,940.6357709004418,0.08982083036114835,0.04636414485905174,20288.0,5,3,5,5_1,5_0,5_0_0 +170,1,32.0,5,298.0,5,112,6,0,43,2.0,0.0,0.0,484.5347154452023,0.0,725.4219962377214,12482.825980622458,0,50,2,10215,201700170,,,,52.0,1.0,0.0,3.0,1.0,2.0,1.3,599.8566296179605,0.0,360.0,410.0,0.0,14056.0,0,4,3,65.0,9,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1209.9567116829237,0.09692971075309255,0.08608115478677601,10812.307692307691,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +171,2,64.0,3,0.0,5,111,2,77,74,4.0,0.0,0.0,853.3194710896063,0.0,1404.8416219823189,28899.4,50,50,1,10217,201700171,,,374.0,,0.0,3.0,6.0,0.0,2.0,1.5,1424.3298168811832,0.0,634.0,794.0,0.0,27141.0,5,5,1,100.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2258.1610930719253,0.07813868430043272,0.0832011013990614,18094.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +172,2,66.0,2,0.0,5,120,2,0,78,6.0,0.0,555.170527825376,558.5608525271082,1528.6941579253446,0.0,35691.7,0,70,1,10218,201700172,,,138.0,,0.0,2.0,4.0,1.0,2.0,1.5,1904.2820273684895,0.0,415.0,0.0,0.0,34023.0,0,5,1,100.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2642.4255382778288,0.07403473463796426,0.07766585951497013,22682.0,6,3,6,6_1,6_0,6_0_0 +173,2,43.0,2,0.0,9,111,2,22,23,8.0,1884.709738856992,0.0,699.4379751130356,0.0,0.0,59514.66448491384,50,43,1,10219,201700173,,,430.0,,2.0,0.0,6.0,2.0,4.0,2.3,2262.768529568752,0.0,519.669,0.0,0.0,73730.0,1,1,1,280.0,9,7.0,4,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2584.147713970028,0.04342035255235412,0.035048795795063446,32056.521739130436,9,5,9,9_1,9_3,9_0_0 +174,2,73.0,3,0.0,4,111,2,75,77,5.0,1507.1332086819382,416.377895869032,740.261370819059,0.0,0.0,20311.72,60,60,1,10220,201700174,,,565.0,,0.0,3.0,4.0,0.0,2.0,1.5,3383.8670598928666,0.0,550.0,0.0,0.0,27870.0,5,5,1,100.0,6,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2663.7724753700295,0.13114460397100933,0.09557848853139682,18580.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +175,2,50.0,3,0.0,6,112,2,37,38,9.0,0.0,0.0,1227.4879457945126,0.0,2123.1863304518674,76120.5877312257,20,31,1,10221,201700175,,,,,2.0,0.0,5.0,2.0,4.0,2.5,1920.6616266759324,0.0,912.0,1200.0,0.0,98485.0,1,1,3,110.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3350.67427624638,0.04401797695095683,0.03402217877084206,39394.0,9,5,9,9_1,9_0,9_0_0 +176,2,64.0,2,0.0,1,120,2,0,56,5.0,0.0,0.0,672.964882562781,2123.1863304518674,0.0,23612.981750603252,0,71,1,10222,201700176,,,,,1.0,4.0,4.0,0.0,2.0,1.5,2853.8241128679297,0.0,500.0,0.0,0.0,29010.0,0,1,1,98.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2796.1512130146484,0.11841584610309597,0.09638577087261802,19340.0,5,3,5,5_1,5_0,5_1_0 +177,2,49.0,2,0.0,9,111,6,0,43,9.0,0.0,0.0,1345.929765125562,0.0,5484.898020333991,34196.60598062246,0,33,1,10223,201700177,,,,,1.0,0.0,6.0,1.0,2.0,1.5,1785.8341048669763,0.0,1000.0,3100.0,0.0,55011.0,0,1,2,160.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,6830.827785459553,0.19975163001059953,0.1241720344196534,36674.0,9,5,9,9_1,9_2,9_0_0 +178,2,27.0,5,0.0,1,111,4,0,54,7.0,0.0,0.0,1065.976373979445,0.0,0.0,21021.859999999997,0,30,8,10226,201700178,,,,657.0,1.0,0.0,2.0,0.0,1.0,1.0,7518.533888828364,0.0,792.0,0.0,0.0,24704.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1065.976373979445,0.05070799510506897,0.043149950371577275,24704.0,7,4,7,7_0,7_4,7_1_0 +179,2,54.0,3,0.0,1,300,5,85,69,4.0,0.0,69.396315978172,1130.581002705472,488.3328560039295,0.0,17691.491191295747,71,50,1,10227,201700179,,,200.0,,3.0,0.0,5.0,0.0,4.0,2.5,4119.921251337953,0.0,840.0,0.0,0.0,44240.0,6,1,1,120.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1688.3101746875734,0.09543063139404698,0.038162526552612416,17696.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +180,1,39.0,4,219.0,1,111,1,85,63,2.0,0.0,0.0,1076.7438121004495,0.0,2830.9151072691566,28126.299999999992,43,43,1,10228,201700180,,,779.0,,2.0,0.0,5.0,3.0,5.0,2.8,1656.007986083386,0.0,800.0,1600.0,0.0,32211.0,6,1,3,120.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3907.6589193696063,0.1389325620280523,0.12131442424543189,11503.928571428572,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +181,2,57.0,2,0.0,4,111,4,0,34,9.0,0.0,0.0,2496.6997143079175,0.0,212.31863304518674,34878.04000000001,0,30,1,10229,201700181,,,300.0,,1.0,0.0,7.0,0.0,1.0,1.0,2253.1632355339143,0.0,1855.0,120.0,0.0,39855.0,0,1,1,120.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2709.018347353104,0.07767117496720297,0.06797185666423546,39855.0,9,5,9,9_1,9_4,9_0_1 +182,2,44.0,1,0.0,1,111,2,37,34,10.0,0.0,0.0,1499.8515247709108,0.0,1873.3847831864532,84290.82066701194,12,10,2,1023,201700182,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.1,2757.1509139153222,373.17601184975126,960.0,840.0,0.0,170355.0,1,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3373.2363079573643,0.04001902320162739,0.019801216917362943,81121.42857142857,10,5,10,10_0,10_4,10_1_0 +183,2,76.0,1,0.0,3,300,2,86,75,3.0,3534.6239883614294,0.0,1141.300176027231,0.0,2126.788421902496,40423.82584675129,70,70,1,10230,201700183,,,,,0.0,1.0,7.0,0.0,2.0,1.5,1879.6670185885189,2050.0,0.0,0.0,0.0,20959.0,5,5,1,200.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,6802.712586291156,0.16828472921095033,0.32457238352455536,13972.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +184,2,102.0,3,0.0,1,111,2,77,78,7.0,0.0,0.0,1239.6013136806425,0.0,2370.891402337919,22477.432027330717,50,71,1,10232,201700184,,,528.0,,0.0,5.0,4.0,0.0,2.0,1.5,1762.2216274524117,0.0,921.0,1340.0,0.0,37937.0,5,5,3,87.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3610.4927160185616,0.16062745564655687,0.09517074929537289,25291.333333333332,7,4,7,7_1,7_3,7_1_0 +185,2,69.0,4,0.0,99,112,5,77,78,3.0,0.0,832.755791738064,808.9037888404628,700.6514890491163,0.0,24847.940000000002,70,70,1,10233,201700185,,,300.0,,0.0,1.0,7.0,0.0,2.0,1.5,2992.4453091763935,0.0,601.0,0.0,0.0,23168.0,5,5,1,140.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2342.311069627643,0.09426580511815638,0.10110113387550256,15445.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +186,2,61.0,3,0.0,7,111,6,47,56,1.0,0.0,0.0,336.4824412813905,141.54575536345783,0.0,11889.079999999998,31,50,1,10235,201700186,,,180.0,,2.0,0.0,3.0,1.0,3.0,2.0,1897.1538615593565,0.0,250.0,0.0,0.0,10130.0,4,1,2,120.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,478.0281966448483,0.04020733283356226,0.04718935801035028,5065.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +187,2,43.0,3,0.0,2,111,2,54,54,7.0,0.0,0.0,847.935752029104,0.0,1380.0711147937138,36932.880000000005,31,31,1,10236,201700187,,,574.0,,2.0,0.0,4.0,2.0,4.0,2.1,2182.0055073278677,0.0,630.0,780.0,0.0,49096.0,1,1,2,120.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2228.0068668228178,0.060325836133624494,0.04538061892665019,23379.04761904762,6,3,6,6_1,6_3,6_0_1 +188,2,41.0,3,0.0,9,111,1,47,38,8.0,0.0,0.0,1084.819390691203,0.0,996.1282533703345,47941.3,20,12,2,10237,201700188,563.0,563.0,690.0,770.0,2.0,0.0,4.0,2.0,4.0,2.1,3016.2043565295844,0.0,806.0,563.0,0.0,61631.0,1,1,3,92.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2080.947644061537,0.04340615803204204,0.03376462566016351,29348.095238095237,8,4,8,8_0,8_2,8_0_0 +189,2,39.0,2,0.0,8,111,6,54,21,8.0,837.6487728253298,0.0,406.4707890679197,159.23897478389006,0.0,29479.019999999997,31,43,1,10239,201700189,,,220.0,,2.0,0.0,6.0,2.0,4.0,2.1,2843.9301216516296,0.0,302.0,0.0,0.0,58240.0,1,1,1,127.0,4,3.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1403.3585366771395,0.047605332086247766,0.024096128720417918,27733.333333333332,8,4,8,8_1,8_1,8_0_0 +190,2,67.0,3,0.0,8,111,2,0,75,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,49134.68,0,33,2,1024,201700190,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3143.044092806222,0.0,1200.0,0.0,0.0,24003.0,0,5,1,67.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1615.1157181506744,0.032871196437031326,0.06728807724662227,24003.0,7,4,7,7_0,7_2,7_0_0 +191,2,62.0,3,0.0,4,120,4,0,,5.0,0.0,0.0,185.73830758732754,0.0,0.0,27580.29087530163,0,71,1,10240,201700191,,,360.0,,0.0,2.0,4.0,0.0,1.0,1.0,1263.921151238287,0.0,138.0,0.0,0.0,18860.0,0,5,1,80.0,0,3.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,185.73830758732754,0.0067344578933958114,0.009848266574089477,18860.0,5,3,5,5_1,5_1,5_0_1 +192,2,28.0,3,0.0,9,112,4,54,63,8.0,0.0,693.9631597817199,1413.22625338184,0.0,0.0,51399.56,42,50,1,10242,201700192,,,590.0,,2.0,0.0,5.0,1.0,3.0,1.8,3398.7367650638703,0.0,1050.0,0.0,0.0,46875.0,1,1,2,110.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2107.18941316356,0.040996253920530835,0.04495337414748928,26041.666666666664,7,4,7,7_1,7_0,7_0_0 +193,1,21.0,4,353.0,6,300,1,85,62,3.0,0.0,0.0,1211.3367886130059,247.7050718860512,0.0,20960.16,43,43,1,10243,201700193,,,,,1.0,0.0,3.0,1.0,3.0,1.8,2473.473178302656,0.0,900.0,0.0,0.0,25783.0,6,1,3,84.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1459.041860499057,0.06961024441125721,0.05658929761854932,14323.888888888889,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +194,2,47.0,4,0.0,3,112,1,85,56,1.0,0.0,0.0,597.5928157157495,180.47083808840873,0.0,17832.5,43,50,2,10244,201700194,,,,,1.0,2.0,3.0,0.0,2.0,1.5,1738.644544467279,0.0,444.0,0.0,0.0,13500.0,7,4,3,59.0,9,3.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,778.0636538041582,0.04363177646455394,0.05763434472623394,9000.0,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +195,1,69.0,4,124.0,4,111,1,0,78,2.0,0.0,0.0,393.0114914166641,0.0,0.0,15716.520000000004,0,50,2,10248,201700195,,,,175.0,0.0,2.0,3.0,0.0,1.0,1.0,5260.09581077716,0.0,292.0,0.0,0.0,11694.0,0,5,3,72.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,393.0114914166641,0.02500626674458875,0.033607960613704815,11694.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +196,2,79.0,2,0.0,4,112,6,77,75,5.0,1622.9444973490765,0.0,612.3980431321307,153.93100895776038,0.0,23665.788355161887,70,71,1,1025,201700196,,,,,0.0,0.0,5.0,0.0,2.0,1.5,2892.610042007454,0.0,455.0,0.0,0.0,31065.0,5,5,1,110.0,7,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2389.2735494389676,0.10095896716315511,0.07691207305452978,20710.0,5,3,5,5_1,5_2,5_0_1 +197,2,48.0,3,0.0,1,111,2,68,56,7.0,0.0,0.0,373.0103014332902,0.0,695.0967037437426,17156.2,30,30,2,10250,201700197,,,,760.0,2.0,0.0,2.0,0.0,2.0,1.5,3943.8580042840467,670.0,0.0,0.0,0.0,35328.0,1,1,3,22.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1068.1070051770328,0.062257784659600184,0.03023400716646945,23552.0,6,3,6,6_0,6_4,6_1_0 +198,2,60.0,1,0.0,7,111,4,0,52,6.0,0.0,0.0,1179.0344742499922,0.0,0.0,32297.089638162543,0,70,2,10252,201700198,,,,,1.0,4.0,4.0,0.0,1.0,1.0,1975.4333925206915,0.0,876.0,0.0,0.0,23960.0,0,1,1,90.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1179.0344742499922,0.03650590463286928,0.04920845051126845,23960.0,7,4,7,7_0,7_3,7_0_0 +199,1,24.0,3,352.0,1,111,2,85,67,2.0,0.0,0.0,545.1015548758526,0.0,1194.2923108791754,30557.300000000003,50,70,1,10253,201700199,,,880.0,,1.0,0.0,3.0,2.0,4.0,2.1,2388.4697605818283,0.0,405.0,675.0,0.0,24864.0,6,1,3,80.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1739.393865755028,0.05692236767499183,0.06995631699465202,11840.0,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +200,2,50.0,2,0.0,8,111,4,77,37,8.0,0.0,0.0,2961.045483276236,0.0,0.0,47576.730875301626,50,31,1,10254,201700200,,,392.0,,1.0,1.0,5.0,1.0,3.0,2.0,2402.1019308756836,0.0,2200.0,0.0,0.0,63009.0,5,1,1,126.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2961.045483276236,0.062237262392767626,0.046994008526976085,31504.5,8,4,8,8_1,8_4,8_0_0 +201,2,68.0,3,0.0,5,111,6,77,75,6.0,0.0,0.0,152.0900634591885,0.0,0.0,25395.605846751303,50,50,1,10256,201700201,,,50.0,,0.0,2.0,5.0,0.0,2.0,1.5,2034.784492146265,0.0,113.0,0.0,0.0,32806.0,5,5,1,100.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,152.0900634591885,0.005988833831213537,0.004636044121782251,21870.666666666668,6,3,6,6_1,6_3,6_0_0 +202,2,61.0,2,0.0,5,212,2,77,72,3.0,3807.4944219333174,693.9631597817199,1284.0169959297862,0.0,0.0,34268.26,50,71,1,10257,201700202,,,282.0,,0.0,3.0,8.0,0.0,2.0,1.5,1015.210620408887,0.0,954.0,0.0,0.0,24636.0,6,5,1,260.0,4,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5785.4745776448235,0.1688289565225904,0.23483822770112125,16424.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +203,1,21.0,2,313.0,99,111,6,56,52,5.0,0.0,0.0,1082.1275311609518,0.0,212.31863304518674,24256.379999999997,30,50,2,1026,201700203,,,,87.0,2.0,0.0,3.0,0.0,2.0,1.5,3138.733515029942,0.0,804.0,120.0,0.0,27781.0,1,1,3,66.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1294.4461642061385,0.053365183271623325,0.04659465693121696,18520.666666666668,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +204,2,64.0,3,0.0,4,111,1,0,77,5.0,0.0,0.0,660.8515146766509,0.0,2574.363425672889,26699.110875301627,0,71,2,10260,201700204,1089.0,1089.0,420.0,,0.0,7.0,4.0,0.0,1.0,1.0,1054.169928116274,0.0,491.0,1455.0,0.0,19740.0,0,5,1,75.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3235.21494034954,0.12117313402156471,0.16389133436421174,19740.0,5,3,5,5_0,5_3,5_0_1 +205,2,39.0,2,0.0,1,400,2,47,85,1.0,2538.3296146222115,416.377895869032,995.9880261929159,247.7050718860512,0.0,27728.3,30,30,1,10262,201700205,,,,,1.0,0.0,5.0,5.0,7.0,3.0,1809.2095938240618,0.0,740.0,0.0,0.0,13612.0,1,6,1,110.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4198.40060857021,0.1514121171716337,0.3084337796481201,4537.333333333333,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +206,2,69.0,3,0.0,9,111,2,77,75,6.0,0.0,0.0,1296.4862542319318,0.0,2415.9743532628863,38913.0,70,70,1,10263,201700206,,,220.0,,0.0,5.0,4.0,0.0,2.0,1.5,1986.1575832385633,2328.7447746017397,0.0,0.0,0.0,35220.0,5,5,1,100.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3712.460607494818,0.09540412220838326,0.10540774013329977,23480.0,6,3,6,6_1,6_2,6_0_0 +208,1,45.0,2,384.0,9,211,2,85,69,1.0,0.0,0.0,896.3892235736242,0.0,743.1152156581536,22934.824685771022,71,71,2,10265,201700208,,,827.0,86.0,1.0,0.0,4.0,4.0,6.0,3.1,3723.5739297642217,0.0,666.0,420.0,0.0,31821.0,6,1,3,90.0,1,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1639.5044392317777,0.07148537046585499,0.05152271893503591,10264.838709677419,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +209,2,52.0,1,0.0,8,120,6,31,43,9.0,0.0,0.0,1125.7116858180784,0.0,2097.7396044326083,71482.52178182881,31,33,1,10266,201700209,,,360.0,,2.0,3.0,6.0,1.0,3.0,1.8,857.4839754852487,2022.0,0.0,0.0,0.0,57340.0,1,1,2,110.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3223.4512902506867,0.04509425814731264,0.05621645082404406,31855.555555555555,8,4,8,8_1,8_0,8_0_0 +210,2,85.0,3,0.0,4,300,2,0,78,2.0,1637.2226014313264,0.0,374.1684747049062,109.69796040667983,0.0,18222.71087530163,0,71,1,10268,201700210,,,237.0,,0.0,1.0,5.0,0.0,1.0,1.0,1800.5574361495426,0.0,278.0,0.0,0.0,11013.0,0,5,1,76.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2121.0890365429123,0.11639810624541905,0.1925986594518217,11013.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +211,2,78.0,2,0.0,4,111,2,0,78,4.0,0.0,0.0,349.9417389326461,0.0,2441.664280019648,16646.310875301628,0,71,1,10269,201700211,,,100.0,,0.0,4.0,5.0,0.0,1.0,1.0,2299.2701939434996,0.0,260.0,1380.0,0.0,18508.0,0,5,1,110.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2791.606018952294,0.16770118255416222,0.1508323978253887,18508.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +212,2,49.0,2,0.0,1,111,2,37,37,10.0,0.0,0.0,1169.1367656864318,0.0,2178.661310241581,61300.73665845403,20,31,1,10272,201700212,,,580.0,,2.0,1.0,7.0,2.0,4.0,2.1,2570.6588206331066,2100.0,0.0,0.0,0.0,112791.0,1,1,2,135.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3347.7980759280126,0.05461268915218355,0.029681429155943406,53710.0,10,5,10,10_1,10_4,10_1_0 +213,2,37.0,3,0.0,7,111,2,0,55,3.0,0.0,0.0,807.2611001168219,0.0,1504.3137618334729,34865.740000000005,0,42,1,10273,201700213,,,410.0,,1.0,0.0,4.0,2.0,3.0,1.6,478.8053774821827,1450.0,0.0,0.0,0.0,23878.0,0,1,2,90.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2311.5748619502947,0.06629932024819477,0.09680772518428238,14923.75,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +214,1,77.0,4,29.0,99,111,1,0,78,2.0,0.0,0.0,323.0231436301349,0.0,0.0,8503.8258467513,0,71,2,10276,201700214,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3889.33420642497,0.0,240.0,0.0,0.0,11588.0,0,5,3,26.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,323.0231436301349,0.037985625464512396,0.02787565961599369,11588.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +215,2,50.0,1,0.0,4,111,6,0,34,6.0,1110.5192063972174,0.0,363.4010365839017,398.09743695972514,0.0,17149.44,0,30,1,10277,201700215,,,200.0,,1.0,0.0,6.0,1.0,2.0,1.3,823.5575070087922,0.0,270.0,0.0,0.0,28031.0,0,1,1,115.0,7,5.0,2,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1872.0176799408443,0.10915911423001827,0.06678383503766702,21562.30769230769,6,3,6,6_1,6_2,6_0_1 +216,2,54.0,2,0.0,4,120,4,43,11,10.0,0.0,0.0,2157.5254134962756,247.7050718860512,0.0,25971.822232008137,33,50,1,10278,201700216,,,,,3.0,1.0,6.0,0.0,3.0,2.0,1860.9522767474853,0.0,1603.0,0.0,0.0,84320.0,1,1,1,100.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2405.230485382327,0.0926092310310856,0.028525029475596857,42160.0,10,5,10,10_1,10_0,10_0_1 +217,2,64.0,3,0.0,7,400,5,72,74,8.0,0.0,41.637789586903196,2032.1804109305288,212.31863304518674,3114.7508275400505,40149.54113484279,42,41,1,10279,201700217,,,164.0,,0.0,3.0,3.0,0.0,2.0,1.5,3116.5569625099006,3002.291685764048,268.0,0.0,0.0,45581.0,5,5,1,60.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5400.88766110267,0.13451928735533275,0.11848988967119348,30387.333333333332,8,4,8,8_1,8_0,8_0_0 +218,2,44.0,3,0.0,5,111,5,56,38,6.0,0.0,277.585263912688,1977.1708249694505,106.15931652259337,0.0,37950.63632237629,42,31,1,10280,201700218,,,1024.0,,2.0,0.0,6.0,2.0,4.0,2.1,774.5302336231052,0.0,1469.0,0.0,0.0,46698.0,1,1,2,150.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2360.915405404732,0.06221016652658073,0.050557098920825994,22237.142857142855,6,3,6,6_1,6_3,6_0_0 +219,2,35.0,3,0.0,9,120,2,43,52,9.0,0.0,0.0,2752.4263696817743,0.0,0.0,38058.67999999999,31,42,1,10281,201700219,,,270.0,,2.0,0.0,6.0,0.0,2.0,1.5,2295.4229923360285,0.0,2045.0,0.0,0.0,50920.0,1,1,2,111.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2752.4263696817743,0.07232059466281476,0.05405393498982275,33946.666666666664,9,5,9,9_1,9_0,9_0_0 +220,1,61.0,4,282.0,5,111,1,0,78,7.0,0.0,0.0,1275.9414173390328,0.0,2176.265988713164,12487.611711336602,0,60,2,10282,201700220,1230.0,1230.0,,138.0,0.0,6.0,4.0,0.0,1.0,1.0,4752.3793262473955,0.0,948.0,1230.0,0.0,25224.0,0,5,3,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,3452.207406052197,0.2764505724435832,0.13686201260911024,25224.0,7,4,7,7_0,7_4,7_0_0 +221,2,42.0,2,0.0,1,111,4,0,43,8.0,0.0,0.0,2402.484630749128,30.07847301473479,0.0,33122.90000000001,0,33,2,10283,201700221,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1864.6196728985533,0.0,1785.0,0.0,0.0,33732.0,0,1,2,63.0,7,5.0,2,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2432.5631037638627,0.07344052313547009,0.0721144048311355,25947.69230769231,7,4,7,7_0,7_2,7_1_0 +222,1,53.0,4,376.0,9,111,2,0,68,2.0,0.0,0.0,1162.8833170684854,0.0,2822.0684975589406,10130.464685771018,0,71,2,10285,201700222,,,,,1.0,0.0,3.0,1.0,2.0,1.3,975.6504765732057,0.0,864.0,1595.0,0.0,15933.0,0,4,3,65.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,3984.951814627426,0.39336318108137563,0.2501068106839532,12256.153846153846,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +223,2,46.0,2,0.0,8,112,1,0,43,3.0,0.0,0.0,2018.894647688343,0.0,997.8975753123777,59492.06,0,33,1,10286,201700223,,,384.0,,1.0,0.0,7.0,2.0,3.0,2.0,891.0309850072957,0.0,1500.0,564.0,0.0,31440.0,0,1,1,170.0,10,0.0,2,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3016.7922230007207,0.050709157205192104,0.09595395111325447,15720.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +224,2,93.0,1,0.0,2,111,2,0,74,5.0,0.0,0.0,592.7189436255778,0.0,1104.5190504860486,27878.935708626617,0,31,2,10287,201700224,,,,,0.0,2.0,5.0,1.0,2.0,1.5,2918.1629777622006,1064.6400131663902,0.0,0.0,0.0,33420.0,0,6,1,147.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1697.2379941116264,0.060878866103430476,0.0507850985670744,22280.0,6,3,6,6_0,6_3,6_0_1 +225,2,30.0,4,0.0,4,111,2,0,48,4.0,0.0,0.0,592.2090966552472,0.0,0.0,51062.79466143878,0,43,2,10289,201700225,,,320.0,,1.0,0.0,2.0,0.0,1.0,1.0,4449.835149559792,0.0,440.0,0.0,0.0,17591.0,0,1,2,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,592.2090966552472,0.011597663241539486,0.033665459419887855,17591.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +226,2,66.0,3,0.0,1,211,2,0,75,4.0,1110.5192063972174,0.0,659.5055849115254,0.0,0.0,11865.240000000002,0,70,1,1029,201700226,,,,,0.0,1.0,2.0,0.0,1.0,1.0,958.7960685075917,0.0,490.0,0.0,0.0,17636.0,0,6,1,50.0,4,3.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1770.0247913087428,0.14917732732829192,0.10036429980203804,17636.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +227,2,70.0,4,0.0,5,111,1,0,75,3.0,0.0,0.0,565.290501352736,0.0,0.0,15604.06,0,30,2,10290,201700227,,,,,0.0,1.0,1.0,0.0,1.0,1.0,3433.204469442811,0.0,420.0,0.0,0.0,15057.0,0,5,1,36.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,565.290501352736,0.036227142253537604,0.03754336862274928,15057.0,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +228,2,54.0,2,0.0,5,111,2,0,65,5.0,0.0,0.0,300.6351683193682,0.0,560.2271940621209,13652.78,0,71,1,10291,201700228,,,162.0,,1.0,0.0,2.0,0.0,1.0,1.0,2165.597533158277,540.0,0.0,0.0,0.0,20994.0,0,1,3,55.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,860.8623623814891,0.06305399796828844,0.04100516158814371,20994.0,5,3,5,5_1,5_2,5_0_0 +229,2,69.0,3,0.0,5,111,2,68,77,4.0,0.0,0.0,430.6975248401798,0.0,849.274532180747,23070.011191295744,60,70,2,10292,201700229,,,,384.0,1.0,0.0,5.0,0.0,2.0,1.5,1825.8849868759967,0.0,320.0,480.0,0.0,25185.0,5,5,3,80.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1279.9720570209267,0.05548207351992343,0.05082279360813686,16790.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +230,2,43.0,2,0.0,99,112,4,67,68,3.0,0.0,0.0,2325.766634136971,0.0,0.0,29963.5258467513,60,71,1,10293,201700230,,,960.0,,2.0,0.0,8.0,4.0,6.0,3.1,2182.697244665381,0.0,1728.0,0.0,0.0,47730.0,4,1,2,150.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2325.766634136971,0.07761992517276249,0.04872756409254077,15396.774193548386,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +231,2,48.0,3,0.0,8,112,2,0,54,7.0,0.0,0.0,504.95573641790173,0.0,940.9741944710067,25683.72712768312,0,31,1,10294,201700231,,,,623.0,1.0,0.0,2.0,0.0,1.0,1.0,2050.522372278604,907.0,0.0,0.0,0.0,24467.0,0,1,3,50.0,9,2.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1445.9299308889085,0.056297511794167046,0.059097148440303615,24467.0,7,4,7,7_1,7_1,7_0_0 +232,2,44.0,2,0.0,5,111,1,42,38,10.0,0.0,0.0,814.287507900965,0.0,0.0,74043.52,0,20,2,10295,201700232,,,,,2.0,0.0,4.0,3.0,5.0,2.4,1744.5224219175973,0.0,605.0,0.0,0.0,98717.0,1,1,2,87.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,814.287507900965,0.010997417571462904,0.00824870597669059,41132.083333333336,10,5,10,10_0,10_3,10_0_0 +233,2,45.0,3,0.0,9,400,5,67,67,5.0,0.0,0.0,1076.7438121004495,176.9321942043223,0.0,24912.83011824661,43,43,1,10297,201700233,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.5,2031.0422520518705,0.0,800.0,0.0,0.0,42616.0,1,1,2,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1253.6760063047718,0.050322504522942846,0.02941796523148047,17046.4,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +234,1,47.0,2,129.0,2,111,2,33,31,9.0,0.0,0.0,2212.7085338664237,0.0,1486.2304313163072,42677.15087530163,20,10,1,10298,201700234,,,530.0,,2.0,0.0,4.0,2.0,4.0,2.1,1984.0629889374184,0.0,1644.0,840.0,0.0,68870.0,1,1,2,100.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,3698.938965182731,0.08667258449353053,0.05370900196286817,32795.23809523809,9,5,9,9_1,9_3,9_0_1 +235,1,22.0,2,272.0,1,111,1,0,34,1.0,0.0,0.0,379.55219376540845,0.0,0.0,29549.06,0,30,2,10299,201700235,,,,78.0,2.0,0.0,3.0,0.0,2.0,1.5,5073.644174245161,0.0,282.0,0.0,0.0,8672.0,0,3,3,52.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,379.55219376540845,0.01284481448023756,0.04376755001907385,5781.333333333333,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +236,1,18.0,3,184.0,1,111,6,0,84,1.0,0.0,0.0,807.5578590753372,0.0,0.0,6698.9400000000005,0,43,2,103,201700236,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2129.212024759391,0.0,600.0,0.0,0.0,2211.0,0,3,3,22.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,807.5578590753372,0.12055009584730378,0.3652455264926898,2211.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +237,2,60.0,3,0.0,7,112,4,0,47,4.0,0.0,0.0,107.67438121004496,0.0,0.0,24259.6,0,31,1,10300,201700237,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2165.959292006826,0.0,80.0,0.0,0.0,18976.0,0,1,3,48.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,107.67438121004496,0.004438423601792485,0.00567424015651586,18976.0,5,3,5,5_1,5_2,5_0_0 +238,2,62.0,2,0.0,3,111,1,0,,4.0,0.0,0.0,1711.7596338146377,0.0,2063.1629391778424,26548.38689557641,0,50,2,10301,201700238,,,,350.0,0.0,1.0,4.0,0.0,1.0,1.0,1522.2445904164763,1865.8800592487562,500.0,72.0,0.0,17060.0,0,8,3,,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3774.92257299248,0.14219028025471,0.22127330439580775,17060.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +239,2,32.0,1,0.0,7,111,2,0,37,9.0,0.0,0.0,1187.1100528407455,0.0,0.0,28454.74816118814,0,31,2,10302,201700239,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2901.2510620448847,0.0,882.0,0.0,0.0,38880.0,0,1,2,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1187.1100528407455,0.04171922542122324,0.03053266596812617,38880.0,9,5,9,9_0,9_4,9_0_0 +240,2,31.0,3,0.0,99,111,6,56,63,7.0,0.0,899.376255077109,819.0363980436829,0.0,422.6878156135521,25675.82,41,71,1,10303,201700240,,,334.0,,2.0,0.0,2.0,0.0,2.0,1.5,3742.013952955282,407.4265277561811,440.0,0.0,0.0,39318.0,1,1,2,46.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2141.100468734344,0.08338976004405484,0.05445598628450948,26212.0,7,4,7,7_1,7_4,7_0_0 +241,1,46.0,3,400.0,99,111,1,0,68,4.0,0.0,0.0,538.3719060502248,0.0,318.4779495677801,25414.600000000002,0,71,2,10306,201700241,,,,,4.0,0.0,4.0,3.0,4.0,2.5,4626.392795315962,0.0,400.0,180.0,0.0,45280.0,0,1,3,95.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,856.8498556180049,0.03371486687250654,0.018923362535733325,18112.0,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +242,2,57.0,2,0.0,5,112,5,0,47,4.0,0.0,333.10231669522557,686.4241802140366,0.0,0.0,15417.280315994116,0,70,2,10308,201700242,,,307.0,465.0,1.0,3.0,4.0,0.0,1.0,1.0,2138.048927219983,0.0,510.0,0.0,0.0,18714.0,0,1,3,75.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1019.5264969092622,0.06612881623820449,0.05447934684777504,18714.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +243,2,66.0,3,0.0,8,111,2,77,78,7.0,0.0,0.0,803.5200697799605,0.0,1933.8688826532427,23113.680000000004,71,71,1,10309,201700243,,,404.0,,0.0,2.0,4.0,0.0,2.0,1.5,2766.8297884795707,0.0,597.0,1093.0,0.0,42030.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2737.3889524332035,0.11843155016566825,0.06512940643428988,28020.0,8,4,8,8_1,8_4,8_0_0 +244,2,62.0,2,0.0,6,111,2,52,74,7.0,0.0,0.0,651.430006320772,0.0,1187.2150231110027,40016.96000000001,50,42,2,10310,201700244,,,,,1.0,2.0,4.0,0.0,2.0,1.5,3118.132964142362,0.0,484.0,671.0,0.0,40736.0,1,4,1,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1838.6450294317747,0.04594664435858632,0.045135630141196356,27157.333333333332,7,4,7,7_0,7_3,7_0_0 +246,2,20.0,3,0.0,9,111,2,0,62,9.0,0.0,832.755791738064,2434.7869451121414,106.15931652259337,0.0,52023.35672205293,0,43,1,10312,201700246,,,395.0,,4.0,1.0,6.0,2.0,4.0,2.5,2550.411528783309,0.0,1809.0,0.0,0.0,79704.0,0,1,2,140.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3373.702053372799,0.0648497572234256,0.04232788885592692,31881.6,9,5,9,9_1,9_3,9_0_0 +247,1,45.0,4,409.0,99,111,1,0,85,1.0,0.0,0.0,511.45331074771354,113.23660429076627,0.0,9152.110875301629,0,71,8,10313,201700247,,,,,0.0,1.0,4.0,3.0,4.0,1.9,765.9038089500895,0.0,380.0,0.0,0.0,19248.0,0,6,3,92.0,8,6.0,2,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,624.6899150384799,0.06825637533787983,0.03245479608470905,10130.526315789473,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +248,2,70.0,3,0.0,6,300,5,78,78,4.0,0.0,1179.737371628924,1327.0867484138041,123.8525359430256,0.0,31962.999999999996,60,70,1,10318,201700248,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1626.0248039160563,0.0,986.0,0.0,0.0,26823.0,5,5,1,79.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2630.6766559857538,0.08230380927903369,0.09807540752286298,17882.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +249,2,40.0,2,0.0,9,111,2,43,38,9.0,0.0,346.98157989085996,1870.842373524531,0.0,0.0,37754.982836546544,30,12,1,1032,201700249,,,262.0,,2.0,0.0,5.0,1.0,3.0,1.8,2053.0431181361314,0.0,1390.0,0.0,0.0,60644.0,1,1,2,132.0,7,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2217.823953415391,0.05874254963952874,0.03657120165911534,33691.11111111111,9,5,9,9_1,9_2,9_0_0 +250,1,43.0,4,309.0,8,300,4,0,67,1.0,0.0,0.0,2018.894647688343,569.7216653379178,0.0,32137.4,0,71,1,10322,201700250,,,,163.0,1.0,0.0,4.0,3.0,4.0,2.1,464.36740085512264,0.0,1500.0,0.0,0.0,17489.0,0,4,3,90.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2588.6163130262607,0.08054840506781073,0.14801396952520218,8328.095238095239,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +251,2,54.0,4,0.0,1,111,4,0,77,2.0,0.0,0.0,982.5287285416603,0.0,0.0,15988.32,0,60,2,10323,201700251,,,,440.0,0.0,0.0,2.0,0.0,1.0,1.0,3772.6487882210126,0.0,730.0,0.0,0.0,12608.0,0,7,3,32.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,982.5287285416603,0.06145290615534717,0.07792899179423067,12608.0,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +252,2,40.0,3,0.0,3,111,1,46,22,10.0,0.0,0.0,403.7789295376686,0.0,353.8643884086446,38921.58,60,71,2,10324,201700252,200.0,200.0,,,2.0,0.0,3.0,1.0,3.0,1.8,5649.7654188242095,0.0,300.0,200.0,0.0,75000.0,1,1,2,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,757.6433179463131,0.0194658931612312,0.01010191090595084,41666.666666666664,10,5,10,10_0,10_4,10_0_1 +253,2,56.0,2,0.0,9,211,2,0,48,10.0,1586.456009138882,277.585263912688,672.964882562781,0.0,0.0,38905.951191295746,0,60,1,10325,201700253,,,300.0,,1.0,2.0,7.0,0.0,1.0,1.0,2904.79576255914,0.0,500.0,0.0,0.0,42900.0,0,1,2,120.0,1,3.0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2537.006155614351,0.06520869116244468,0.059137672625043144,42900.0,10,5,10,10_1,10_1,10_0_0 +254,2,43.0,2,0.0,8,300,6,68,43,6.0,0.0,0.0,2056.5806811118587,159.23897478389006,0.0,66858.49087530164,42,33,1,10327,201700254,,,560.0,,2.0,0.0,5.0,3.0,5.0,2.8,1746.855853874807,0.0,1528.0,0.0,0.0,63275.0,1,1,2,178.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2215.819655895749,0.03314193346105424,0.03501888037764913,22598.214285714286,6,3,6,6_1,6_0,6_0_0 +255,2,43.0,3,0.0,2,400,2,42,45,7.0,2855.620816449988,0.0,2543.807256087312,0.0,0.0,66459.8116935026,43,20,1,10328,201700255,,,1200.0,,2.0,0.0,10.0,4.0,6.0,2.9,2153.437604806757,0.0,1890.0,0.0,0.0,72392.0,1,1,2,320.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5399.4280725373,0.0812435054351075,0.07458597735298514,24962.758620689656,7,4,7,7_1,7_0,7_0_1 +256,2,58.0,3,0.0,5,112,2,0,52,6.0,0.0,0.0,838.5142436732251,0.0,0.0,18544.26,0,50,2,10329,201700256,,,,460.0,1.0,3.0,3.0,0.0,1.0,1.0,3734.9494501992,0.0,623.0,0.0,0.0,24311.0,0,1,3,60.0,10,2.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,838.5142436732251,0.04521691583666456,0.03449114572305644,24311.0,7,4,7,7_0,7_1,7_0_0 +257,1,55.0,4,256.0,1,112,4,0,67,1.0,0.0,0.0,955.610133239149,58.38762408742635,0.0,6067.64,0,71,1,1033,201700257,,,315.0,,1.0,0.0,2.0,0.0,1.0,1.0,3467.4019257284713,0.0,710.0,0.0,0.0,9189.0,0,4,3,31.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1013.9977573265754,0.1671156755058928,0.11034908666085269,9189.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +258,2,62.0,1,0.0,7,400,4,21,23,10.0,0.0,0.0,2729.7677572675807,0.0,1073.8856792653332,54664.58217662756,50,71,8,10330,201700258,,,350.0,,3.0,1.0,3.0,1.0,3.0,2.0,2976.7151923384245,1035.1126702695867,1600.0,0.0,0.0,152840.0,1,1,2,55.0,0,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,3803.653436532914,0.06958167949117167,0.024886505080691665,76420.0,10,5,10,10_0,10_1,10_0_0 +259,1,46.0,3,471.0,9,111,1,81,67,1.0,0.0,0.0,258.4185149041079,353.8643884086446,0.0,13080.980000000001,71,71,2,10331,201700259,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1493.0446050565665,0.0,192.0,0.0,0.0,23613.0,4,4,3,79.0,8,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,612.2829033127525,0.04680711256440668,0.025929907394772054,9838.75,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +260,2,60.0,1,0.0,3,112,2,22,23,10.0,1903.7472109666587,0.0,3442.2969909932954,0.0,2150.8575103897006,68791.42435680918,31,44,1,10332,201700260,,,380.0,,2.0,3.0,5.0,0.0,2.0,1.5,2340.51728820757,2073.200065831951,1700.0,0.0,0.0,123844.0,1,1,1,140.0,10,0.0,3,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,7496.901712349654,0.10898017859703742,0.06053504176504033,82562.66666666667,10,5,10,10_1,10_0,10_0_1 +261,2,93.0,3,0.0,4,400,6,0,78,7.0,0.0,249.82673752141918,2131.95274795889,203.47202333497063,0.0,34166.36,0,70,1,10333,201700261,,,440.0,,0.0,0.0,4.0,0.0,2.0,1.5,2307.063209700006,0.0,1584.0,0.0,0.0,35871.0,0,5,1,85.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2585.25150881528,0.07566657697265029,0.07207079559575368,23914.0,7,4,7,7_1,7_0,7_0_1 +262,1,51.0,3,420.0,99,111,1,0,85,1.0,0.0,0.0,484.3566600700932,0.0,902.5882571000836,43963.140000000014,0,71,2,10334,201700262,,,620.0,,0.0,4.0,4.0,7.0,8.0,4.1,721.0589669286533,870.0,0.0,0.0,0.0,37206.0,0,6,3,79.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1386.9449171701767,0.03154790392975061,0.037277453022904285,9074.634146341465,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +263,2,40.0,1,0.0,5,112,4,52,33,10.0,0.0,360.86084308649436,3095.6384597887923,0.0,0.0,80409.24000000002,41,31,1,10335,201700263,,,603.0,,2.0,0.0,6.0,2.0,4.0,2.1,2445.0751754852154,0.0,2300.0,0.0,0.0,86093.0,1,1,2,160.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3456.4993028752865,0.04298634463993548,0.04014843602703224,40996.666666666664,10,5,10,10_1,10_0,10_0_0 +264,2,51.0,2,0.0,99,111,1,0,54,7.0,0.0,0.0,339.1743008116416,0.0,0.0,28861.831191295747,0,50,2,10336,201700264,,,,,1.0,1.0,3.0,1.0,2.0,1.3,1073.007447304568,0.0,252.0,0.0,0.0,33001.0,0,1,1,63.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,339.1743008116416,0.01175165562308226,0.010277697670120349,25385.384615384613,7,4,7,7_0,7_3,7_0_0 +265,1,44.0,3,140.0,9,111,1,0,52,4.0,0.0,0.0,497.99401309645793,0.0,0.0,31654.139999999996,0,42,2,10338,201700265,,,,342.0,1.0,0.0,3.0,1.0,2.0,1.5,761.2777702007833,0.0,370.0,0.0,0.0,24540.0,0,1,3,72.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,497.99401309645793,0.015732350115860296,0.020293154567907822,16360.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +266,2,68.0,4,0.0,6,112,2,85,74,9.0,0.0,416.377895869032,344.55801987214386,0.0,0.0,27877.2,31,30,1,10339,201700266,,,600.0,,0.0,5.0,6.0,0.0,2.0,1.5,2311.817045856645,0.0,256.0,0.0,0.0,49070.0,5,5,1,130.0,9,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,760.9359157411759,0.027295995140874114,0.015507151329553208,32713.333333333332,9,5,9,9_1,9_0,9_0_0 +267,1,62.0,3,1.0,99,111,1,0,77,1.0,0.0,0.0,109.67616325725098,0.0,204.37918005599596,8629.590875301628,0,70,2,1034,201700267,,,,114.0,0.0,0.0,1.0,0.0,1.0,1.0,4387.2626440963795,197.0,0.0,0.0,0.0,9473.0,0,5,3,26.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,314.0553433132469,0.03639284270266982,0.03315268059888598,9473.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +268,2,55.0,1,0.0,1,111,2,0,23,10.0,3966.1400228472053,0.0,1615.1157181506744,212.31863304518674,0.0,75415.14525197184,0,30,1,10342,201700268,,,300.0,,1.0,2.0,6.0,0.0,1.0,1.0,2469.339782975597,0.0,1200.0,0.0,0.0,94324.0,0,1,1,250.0,7,5.0,1,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,5793.574374043066,0.07682242545162485,0.06142205985796898,94324.0,10,5,10,10_1,10_2,10_1_0 +269,2,84.0,3,0.0,9,111,2,0,78,4.0,0.0,0.0,484.3566600700932,0.0,902.5882571000836,11722.350875301627,0,71,1,10343,201700269,,,145.0,376.0,0.0,8.0,3.0,0.0,1.0,1.0,3111.7745386516162,870.0,0.0,0.0,0.0,16968.0,0,5,3,55.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1386.9449171701767,0.11831627733413068,0.0817388565046073,16968.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +270,2,51.0,4,0.0,8,111,6,0,40,8.0,47.1177434714248,0.0,2691.859530251124,0.0,0.0,42791.68031599412,0,31,1,10345,201700270,,,,,1.0,2.0,4.0,0.0,1.0,1.0,701.4465299732669,0.0,2000.0,0.0,0.0,28548.0,0,1,2,85.0,7,5.0,1,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2738.977273722549,0.06400723817098647,0.09594287774003604,28548.0,8,4,8,8_1,8_2,8_0_0 +271,2,39.0,3,0.0,9,120,2,21,46,6.0,896.3476451634684,249.82673752141918,901.7729426341265,53.079658261296686,0.0,28403.44,50,31,1,10346,201700271,,,350.0,,2.0,0.0,5.0,2.0,4.0,2.3,2311.2854177596,0.0,670.0,0.0,0.0,50950.0,1,1,2,120.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2101.0269835803106,0.07397086351443032,0.0412370359878373,22152.17391304348,6,3,6,6_1,6_1,6_0_0 +272,2,45.0,1,0.0,1,111,1,85,37,10.0,0.0,0.0,1095.697925608678,0.0,536.9428396326666,130433.44307537834,12,12,2,10347,201700272,,,,,1.0,0.0,5.0,4.0,6.0,3.3,4023.196547067734,517.5563351347934,600.0,0.0,0.0,248302.0,6,1,3,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1632.6407652413445,0.012517041080467613,0.006575221968575946,75243.0303030303,10,5,10,10_0,10_4,10_1_0 +273,2,59.0,3,0.0,1,300,4,0,43,7.0,0.0,0.0,1345.929765125562,113.23660429076627,0.0,23792.68,0,33,1,10348,201700273,,,185.0,,1.0,1.0,4.0,0.0,1.0,1.0,2065.3012685372223,0.0,1000.0,0.0,0.0,24415.0,0,1,3,88.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1459.1663694163283,0.06132837366014792,0.05976515950916766,24415.0,7,4,7,7_1,7_0,7_1_0 +274,2,44.0,3,0.0,4,111,1,68,64,3.0,0.0,0.0,646.0462872602698,0.0,1656.0853377524566,19915.109916347148,71,50,2,10349,201700274,456.0,456.0,300.0,333.0,3.0,2.0,3.0,1.0,3.0,2.0,2709.1773460393874,0.0,480.0,936.0,0.0,28408.0,1,1,3,75.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2302.1316250127265,0.11559723419467755,0.08103814506521848,14204.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +275,2,52.0,1,0.0,4,111,2,13,34,9.0,0.0,804.9972653467952,3903.19631886413,0.0,176.9321942043223,71467.52000000002,30,30,1,1035,201700275,,,,,2.0,3.0,5.0,1.0,3.0,2.0,10345.475545905016,0.0,2900.0,100.0,0.0,83734.0,1,1,2,150.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4885.125778415248,0.0683544885622902,0.05834100578516788,41867.0,10,5,10,10_1,10_3,10_0_1 +276,2,54.0,3,0.0,1,300,2,0,55,3.0,0.0,0.0,488.572504740579,1610.082967259333,0.0,15201.80238259149,0,60,1,10350,201700276,,,285.0,,1.0,1.0,4.0,1.0,2.0,1.5,1626.0755863142233,0.0,363.0,0.0,0.0,21970.0,0,1,3,80.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2098.655471999912,0.1380530689178811,0.09552369012289086,14646.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +277,2,34.0,3,0.0,9,111,4,0,53,3.0,0.0,0.0,1938.1388617808093,0.0,0.0,46196.87999999999,0,41,1,10351,201700277,,,95.0,,1.0,0.0,4.0,1.0,2.0,1.3,547.4293764703161,0.0,1440.0,0.0,0.0,21590.0,0,1,2,80.0,8,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1938.1388617808093,0.04195389086407588,0.08977021129137606,16607.69230769231,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +278,2,52.0,3,0.0,99,112,4,0,63,6.0,0.0,0.0,1480.522741638118,0.0,0.0,23032.45087530163,0,50,1,10352,201700278,,,200.0,,1.0,0.0,4.0,0.0,1.0,1.0,3247.926714142741,0.0,1100.0,0.0,0.0,24060.0,0,1,1,105.0,9,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1480.522741638118,0.06427986103839804,0.06153461104065329,24060.0,7,4,7,7_1,7_1,7_0_0 +279,2,86.0,1,0.0,7,111,4,0,72,1.0,0.0,0.0,3364.824412813905,0.0,0.0,32900.2258467513,0,70,2,10353,201700279,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3426.7617213699127,0.0,2500.0,0.0,0.0,10570.0,0,5,5,95.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,3364.824412813905,0.1022735961901052,0.3183372197553363,10570.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +280,1,34.0,4,300.0,5,112,2,0,43,3.0,0.0,0.0,841.2061032034762,0.0,0.0,49708.42,0,33,1,10354,201700280,,,100.0,,1.0,0.0,5.0,2.0,3.0,1.6,1577.80688484844,0.0,625.0,0.0,0.0,25143.0,0,4,2,104.0,7,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,841.2061032034762,0.016922809117720424,0.03345687082700856,15714.375,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +281,1,40.0,3,256.0,99,221,4,0,43,2.0,317.29120182777643,0.0,955.610133239149,130.9298237111985,0.0,14129.2439836072,0,50,1,10356,201700281,,,310.0,,1.0,0.0,5.0,0.0,1.0,1.0,2122.1992037141927,0.0,710.0,0.0,0.0,12218.0,0,4,3,104.0,1,2.0,1,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1403.8311587781238,0.09935642419416452,0.1148986052363827,12218.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +282,2,57.0,2,0.0,5,111,2,56,47,6.0,0.0,0.0,862.7409794454852,0.0,1542.8487334616905,20570.600315994114,50,60,1,10357,201700282,,,326.0,,2.0,3.0,4.0,0.0,2.0,1.5,1731.2211199660283,0.0,641.0,872.0,0.0,31905.0,1,1,1,95.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2405.5897129071755,0.11694309723361716,0.07539851787830043,21270.0,6,3,6,6_1,6_2,6_0_0 +283,2,40.0,3,0.0,9,112,5,46,43,6.0,0.0,0.0,2018.894647688343,0.0,0.0,31946.556658454032,42,31,1,10360,201700283,,,254.0,,2.0,0.0,4.0,2.0,4.0,2.1,2317.9998266256766,0.0,1500.0,0.0,0.0,45177.0,1,1,2,100.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.06319600166217232,0.04468855053873305,21512.85714285714,6,3,6,6_1,6_0,6_0_0 +284,2,60.0,4,0.0,7,112,2,0,22,8.0,0.0,0.0,807.5578590753372,0.0,2123.1863304518674,22657.12,0,30,1,10361,201700284,,,900.0,,3.0,3.0,4.0,0.0,3.0,2.0,3341.6176210006165,0.0,600.0,1200.0,0.0,58110.0,0,1,1,120.0,9,0.0,5,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2930.7441895272045,0.12935201779957933,0.05043442074560669,29055.0,8,4,8,8_1,8_0,8_0_0 +285,2,74.0,3,0.0,3,111,2,86,72,2.0,0.0,0.0,1022.9066214954271,0.0,2300.11852465619,23001.06449357506,71,50,1,10362,201700285,,,400.0,,0.0,6.0,5.0,0.0,2.0,1.5,2930.4700372606817,0.0,760.0,1300.0,0.0,16782.0,5,5,1,115.0,8,6.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3323.0251461516173,0.14447266764891883,0.19801127077533173,11188.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +286,2,73.0,3,0.0,2,211,2,0,78,7.0,2062.392811880547,0.0,565.290501352736,84.9274532180747,0.0,18043.0,0,70,1,10363,201700286,,,321.0,,0.0,2.0,4.0,0.0,1.0,1.0,1853.6009927543396,0.0,420.0,0.0,0.0,23800.0,0,5,3,95.0,3,3.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2712.610766451358,0.1503414491188471,0.11397524228787217,23800.0,6,3,6,6_1,6_1,6_0_1 +287,2,62.0,2,0.0,1,300,2,69,43,9.0,951.8736054833294,693.9631597817199,1211.3367886130059,106.15931652259337,0.0,19642.879290857156,50,33,1,10364,201700287,,,900.0,,3.0,3.0,5.0,1.0,3.0,2.0,1719.2372143745383,0.0,900.0,0.0,0.0,70075.0,1,1,1,150.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2963.332870400648,0.1508604123927973,0.04228801812915659,35037.5,9,5,9,9_1,9_0,9_1_0 +288,2,59.0,3,0.0,7,112,2,74,37,10.0,0.0,0.0,740.261370819059,0.0,2211.6524275540287,70224.44,41,30,1,10365,201700288,,,340.0,,1.0,1.0,6.0,0.0,2.0,1.5,1697.5899643410112,0.0,550.0,1250.0,0.0,94018.0,5,4,2,167.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2951.913798373088,0.04203541955440425,0.03139732602664477,62678.666666666664,10,5,10,10_1,10_0,10_0_0 +289,2,35.0,5,0.0,2,111,1,0,54,3.0,0.0,0.0,843.8979627337274,0.0,0.0,13558.84,0,20,2,10368,201700289,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3900.955455340335,0.0,627.0,0.0,0.0,18814.0,0,4,2,36.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,843.8979627337274,0.062239687372498485,0.04485478700615113,18814.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +290,2,65.0,3,0.0,8,120,5,55,75,5.0,0.0,971.5484236944079,995.9880261929159,233.5504963497054,0.0,58055.58,50,50,1,1037,201700290,,,480.0,,1.0,2.0,4.0,0.0,2.0,1.5,2394.8830436153135,0.0,740.0,0.0,0.0,30017.0,5,5,1,85.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2201.086946237029,0.03791344339746548,0.07332801233424491,20011.333333333332,5,3,5,5_1,5_0,5_0_0 +291,2,44.0,4,0.0,9,111,4,0,62,8.0,0.0,0.0,1179.0344742499922,0.0,0.0,22006.327849749778,0,50,2,10370,201700291,,,336.0,555.0,1.0,0.0,3.0,0.0,1.0,1.0,3929.748530674971,0.0,876.0,0.0,0.0,28330.0,0,1,3,58.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1179.0344742499922,0.05357706575581161,0.041617877665019135,28330.0,8,4,8,8_0,8_2,8_0_0 +292,2,86.0,3,0.0,6,211,1,0,78,5.0,0.0,0.0,226.1162005410944,0.0,886.4302929636547,13139.64,0,70,2,10371,201700292,400.0,400.0,,352.0,0.0,2.0,2.0,0.0,1.0,1.0,1948.7635957118423,0.0,168.0,501.0,0.0,18102.0,0,5,3,52.0,3,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1112.5464935047492,0.08467100266862328,0.061459865954300585,18102.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +293,1,21.0,2,306.0,7,211,2,52,52,2.0,0.0,0.0,406.41420902433106,0.0,757.3441697506449,34204.29665845403,30,50,2,10372,201700293,,,,58.0,2.0,0.0,3.0,0.0,2.0,1.5,1155.1022989662133,730.0,0.0,0.0,0.0,19667.0,1,1,3,56.0,4,3.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1163.7583787749759,0.03402374825583025,0.0591731519181866,13111.333333333334,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +294,2,41.0,3,0.0,9,112,6,56,53,4.0,0.0,0.0,3364.824412813905,0.0,0.0,50650.02102692834,43,60,1,10373,201700294,,,670.0,,2.0,0.0,4.0,2.0,4.0,2.1,1847.8396560410836,0.0,2500.0,0.0,0.0,34932.0,1,1,2,160.0,9,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3364.824412813905,0.06643283348342499,0.09632498605330084,16634.285714285714,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +295,2,66.0,3,0.0,5,112,5,77,78,6.0,0.0,721.7216861729887,1219.4123672037592,198.16405750884095,0.0,50029.472143367864,41,50,1,10374,201700295,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1743.587643180839,0.0,906.0,0.0,0.0,34127.0,5,5,1,106.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2139.298110885589,0.04276075719438075,0.06268638060437744,22751.333333333332,6,3,6,6_1,6_0,6_0_0 +296,2,62.0,2,0.0,6,111,4,0,33,9.0,0.0,0.0,765.8340363564447,0.0,0.0,30254.28,0,30,2,10375,201700296,,,,527.0,1.0,0.0,2.0,0.0,1.0,1.0,2462.545329134732,0.0,569.0,0.0,0.0,37444.0,0,1,3,41.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,765.8340363564447,0.025313246137619032,0.020452783793303193,37444.0,9,5,9,9_0,9_3,9_0_0 +297,2,66.0,3,0.0,1,120,4,86,78,1.0,0.0,0.0,2249.4067009150153,0.0,429.5542717061333,23473.757477955816,71,70,2,10377,201700297,,,,,0.0,5.0,4.0,0.0,2.0,1.5,465.422914804645,414.0450681078347,1500.0,0.0,0.0,14620.0,6,5,1,69.0,0,0.0,3,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2678.960972621149,0.11412578387320217,0.18323946461156967,9746.666666666666,1,1,1_0,1_0_0,1_0_0,1_1_0_0 +298,1,39.0,3,437.0,1,111,2,85,85,1.0,0.0,0.0,617.9722904342567,0.0,1151.5781211276928,19137.070000000003,43,43,1,10378,201700298,,,460.0,30.0,0.0,0.0,4.0,2.0,4.0,2.1,2955.7941327287317,1110.0,0.0,0.0,0.0,12136.0,6,7,3,80.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1769.5504115619497,0.09246715466693435,0.145810020728572,5779.047619047618,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +299,2,65.0,9,0.0,4,111,2,0,78,3.0,0.0,0.0,413.20043789354753,0.0,815.6574152819258,16214.84,0,50,2,10379,201700299,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2823.3605459446694,0.0,307.0,461.0,0.0,14057.0,0,5,1,66.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1228.8578531754733,0.07578599931762961,0.08741963812872401,14057.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +300,2,33.0,1,0.0,1,400,5,0,13,1.0,0.0,138.792631956344,632.5869896090142,0.0,79.61948739194503,7431.0,0,30,1,1038,201700300,,,100.0,,1.0,0.0,2.0,0.0,1.0,1.0,2685.410763571299,0.0,470.0,45.0,0.0,1925.0,0,1,1,100.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,850.9991089573032,0.11452013308535906,0.44207745919859903,1925.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +301,1,49.0,3,30.0,9,112,2,0,65,4.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,19053.865980622457,0,50,1,10381,201700301,,,120.0,,1.0,0.0,3.0,1.0,2.0,1.5,383.9825802976863,800.0,0.0,0.0,0.0,26231.0,0,1,3,55.0,10,1.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1275.3516479725763,0.06693400957420363,0.048620016315526524,17487.333333333332,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +302,2,86.0,2,0.0,1,400,4,0,86,3.0,0.0,0.0,1550.5110894246473,123.8525359430256,0.0,9356.92,0,50,1,10382,201700302,,,,,0.0,3.0,5.0,0.0,1.0,1.0,1347.6780975807842,0.0,1152.0,0.0,0.0,14886.0,0,5,1,60.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1674.3636253676727,0.178943885954745,0.11247908271984904,14886.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +303,2,72.0,1,0.0,4,112,2,75,74,10.0,1895.8149309209641,0.0,1649.932923016959,53.079658261296686,1291.3475293165632,56278.525661679734,50,20,1,10383,201700303,,,350.0,,0.0,2.0,8.0,0.0,2.0,1.5,1419.7132841984408,1244.722985999178,711.0,0.0,0.0,74728.0,5,5,1,328.0,8,1.0,3,5,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4890.175041515783,0.0868923800689669,0.06543966172673941,49818.666666666664,10,5,10,10_1,10_1,10_0_1 +304,2,46.0,2,0.0,9,111,4,37,37,9.0,0.0,0.0,1776.6272899657417,0.0,0.0,64770.15632237629,41,31,2,10384,201700304,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2435.65471361413,0.0,1320.0,0.0,0.0,77574.0,4,1,2,86.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1776.6272899657417,0.027429720581853317,0.022902355041196042,33727.82608695653,9,5,9,9_0,9_4,9_0_0 +305,2,48.0,5,0.0,5,400,1,67,67,5.0,0.0,0.0,635.2788491392653,0.0,0.0,40877.32,70,31,2,10387,201700305,,,,329.0,2.0,2.0,4.0,1.0,3.0,2.0,2304.2974627266317,0.0,472.0,0.0,0.0,39013.0,4,1,3,72.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,635.2788491392653,0.01554110810442723,0.016283773335535982,19506.5,5,3,5,5_0,5_1,5_0_0 +306,2,71.0,3,0.0,7,111,4,75,74,7.0,0.0,0.0,1664.6303490047098,0.0,3102.002985169309,34604.87662842514,71,44,2,10388,201700306,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2619.0304362810725,2990.0041085932808,0.0,0.0,0.0,37514.0,5,5,1,58.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4766.633334174019,0.13774455506246802,0.12706278547139785,25009.333333333332,7,4,7,7_0,7_4,7_0_0 +307,1,75.0,3,257.0,99,300,6,0,86,1.0,0.0,0.0,508.7614512174624,106.15931652259337,0.0,16182.94,0,71,1,10389,201700307,,,,,1.0,0.0,3.0,1.0,2.0,1.5,2573.1485392385225,0.0,378.0,0.0,0.0,10574.0,0,5,3,78.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,614.9207677400558,0.03799808735248699,0.0581540351560484,7049.333333333333,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +308,1,19.0,2,333.0,99,111,1,0,85,1.0,0.0,0.0,296.1045483276236,0.0,0.0,6326.0,0,60,2,1039,201700308,,,,,0.0,0.0,4.0,1.0,2.0,1.3,1430.4029414271427,0.0,220.0,0.0,0.0,12256.0,0,6,3,75.0,7,5.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,296.1045483276236,0.04680754794935561,0.0241599664105437,9427.692307692307,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +309,1,22.0,3,177.0,99,111,4,0,84,1.0,0.0,0.0,391.66556165153855,0.0,0.0,9617.68,0,41,2,10390,201700309,,,,255.0,0.0,0.0,2.0,0.0,1.0,1.0,2153.404244433419,0.0,291.0,0.0,0.0,2724.0,0,3,3,43.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,391.66556165153855,0.04072349689858038,0.14378324583389815,2724.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +310,2,43.0,3,0.0,4,111,1,52,45,7.0,0.0,0.0,904.4648021643776,0.0,0.0,57646.200000000004,41,30,2,10392,201700310,,,,374.0,2.0,2.0,5.0,1.0,3.0,1.8,3787.134568381349,0.0,672.0,0.0,0.0,48212.0,1,1,3,85.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,904.4648021643776,0.01568992929567565,0.018760159341333644,26784.444444444445,7,4,7,7_0,7_4,7_0_1 +311,2,33.0,3,0.0,9,300,4,52,23,6.0,0.0,0.0,2018.894647688343,212.31863304518674,0.0,64021.08238259149,50,60,1,10393,201700311,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2632.182423711934,0.0,1500.0,0.0,0.0,54433.0,1,1,2,160.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2231.2132807335297,0.034851227091097066,0.040990084704747666,22680.416666666668,6,3,6,6_1,6_0,6_0_0 +312,2,90.0,1,0.0,5,112,1,0,74,7.0,0.0,0.0,1076.7438121004495,0.0,0.0,28178.8658467513,0,71,2,10394,201700312,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2593.88035306943,0.0,800.0,0.0,0.0,24180.0,0,5,1,100.0,10,5.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1076.7438121004495,0.038211041493161645,0.0445303478949731,24180.0,7,4,7,7_0,7_2,7_0_0 +313,2,67.0,3,0.0,5,111,6,78,72,4.0,0.0,0.0,1671.3959246318032,0.0,488.6179840657266,20458.60963117474,60,31,1,10396,201700313,,,416.0,,0.0,2.0,4.0,0.0,2.0,1.5,1838.9827148053673,470.97626497266197,1047.0,0.0,0.0,32174.0,5,5,1,95.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2160.0139086975296,0.1055797020246239,0.06713538598550163,21449.333333333332,6,3,6,6_1,6_3,6_0_0 +314,2,38.0,3,0.0,1,400,2,0,64,6.0,1269.1648073111057,0.0,484.5347154452023,47.77169243516702,0.0,22869.10816118815,0,60,1,10397,201700314,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2772.0436998118303,0.0,360.0,0.0,0.0,21735.0,0,1,2,120.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1801.471215191475,0.07877312934523638,0.08288342374932023,21735.0,6,3,6,6_1,6_0,6_1_0 +315,2,73.0,3,0.0,4,111,2,78,75,7.0,0.0,0.0,825.0765174987105,0.0,1537.5124103704873,27993.04,50,50,1,10398,201700315,,,197.0,,0.0,1.0,4.0,0.0,2.0,1.5,1361.0351141434012,1482.0,0.0,0.0,0.0,39961.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2362.5889278691975,0.08439915521391023,0.05912236750504736,26640.666666666668,7,4,7,7_1,7_4,7_0_1 +316,2,27.0,3,0.0,5,111,1,0,47,7.0,0.0,0.0,20.18894647688343,0.0,46.0023704931238,9944.039999999999,0,31,2,104,201700316,,,,287.0,1.0,0.0,1.0,0.0,1.0,1.0,5863.394312347439,0.0,15.0,26.0,0.0,25950.0,0,1,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,66.19131697000722,0.006656380803979794,0.0025507251240850567,25950.0,7,4,7,7_0,7_4,7_0_0 +317,2,43.0,2,0.0,4,111,1,0,47,7.0,0.0,0.0,0.0,0.0,0.0,44027.420315994124,0,31,2,10401,201700317,,,,,1.0,0.0,4.0,1.0,2.0,1.3,6455.135705246362,0.0,0.0,0.0,0.0,35007.0,0,1,2,67.0,9,7.0,2,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,26928.46153846154,7,4,7,7_0,7_3,7_0_1 +318,2,76.0,2,0.0,8,111,4,0,72,10.0,0.0,0.0,2442.2385288311348,0.0,1290.5145062338204,45208.726614085506,0,31,2,10402,201700318,,,,,0.0,2.0,5.0,0.0,1.0,1.0,4978.9753810730235,1243.9200394991708,1300.0,0.0,0.0,71369.0,0,5,1,120.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3732.753035064955,0.08256709079485454,0.052302162494429726,71369.0,10,5,10,10_0,10_4,10_0_0 +319,1,45.0,2,313.0,99,111,2,0,85,5.0,0.0,0.0,524.9126083989692,0.0,2123.1863304518674,44159.200000000004,0,31,2,10403,201700319,,,,331.0,0.0,0.0,4.0,1.0,2.0,1.3,1365.1143803991113,0.0,390.0,1200.0,0.0,24409.0,0,4,3,100.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2648.0989388508365,0.0599670949394653,0.10848862873738524,18776.153846153844,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +320,2,63.0,1,0.0,2,111,2,0,34,10.0,0.0,0.0,1005.7619667577553,0.0,1838.640811430197,27796.19826301318,0,30,2,10404,201700320,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2159.7555110686094,1516.4400619449445,120.0,150.0,0.0,43533.0,0,1,1,46.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2844.402778187952,0.10233064073272341,0.0653390020946857,43533.0,10,5,10,10_0,10_3,10_0_1 +321,2,43.0,2,0.0,5,111,2,52,52,4.0,0.0,388.6193694777632,740.261370819059,0.0,1716.2422837819263,43015.58,50,50,1,10406,201700321,,,330.0,,2.0,0.0,5.0,2.0,4.0,2.5,1786.9133412974754,0.0,550.0,970.0,0.0,40705.0,1,1,1,80.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2845.1230240787486,0.06614168689760196,0.06989615585502391,16282.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +322,1,34.0,5,190.0,9,112,5,0,52,2.0,0.0,693.9631597817199,1305.5518721717951,0.0,0.0,49992.81370096027,0,50,1,10407,201700322,,,100.0,,1.0,1.0,4.0,2.0,3.0,1.8,626.6430001573256,0.0,970.0,0.0,0.0,21464.0,0,1,2,90.0,10,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1999.515031953515,0.03999604911045661,0.0931566824428585,11924.444444444443,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +323,2,62.0,2,0.0,6,111,4,31,34,10.0,0.0,0.0,2691.859530251124,0.0,0.0,59807.94,31,10,1,10409,201700323,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1994.0843865544716,0.0,2000.0,0.0,0.0,67412.0,1,1,1,160.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2691.859530251124,0.04500839738421226,0.03993145923946959,44941.333333333336,10,5,10,10_1,10_3,10_0_0 +324,1,42.0,3,98.0,99,111,4,0,55,3.0,0.0,0.0,1530.322142947764,53.079658261296686,0.0,21120.98,0,31,2,1041,201700324,,,259.0,,1.0,0.0,4.0,2.0,3.0,1.8,791.3445970358434,0.0,1137.0,0.0,0.0,28576.0,0,1,3,70.0,7,5.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1583.4018012090605,0.07496819755565606,0.0554101974107314,15875.555555555555,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +325,2,28.0,3,0.0,9,300,4,0,34,10.0,0.0,0.0,2463.0514701797783,0.0,79.61948739194503,23639.7,0,12,1,10410,201700325,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2836.7253847692305,0.0,1830.0,45.0,0.0,46365.0,0,1,3,110.0,0,0.0,1,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2542.670957571723,0.1075593580955648,0.05484030966400783,46365.0,10,5,10,10_1,10_0,10_0_0 +326,2,53.0,2,0.0,9,111,6,0,31,10.0,0.0,0.0,1857.3830758732754,0.0,0.0,40061.439999999995,0,30,1,10411,201700326,,,770.0,,1.0,1.0,4.0,0.0,1.0,1.0,1536.9940723301947,0.0,1380.0,0.0,0.0,72960.0,0,1,2,129.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1857.3830758732754,0.046363362771614694,0.025457553123263095,72960.0,10,5,10,10_1,10_3,10_0_0 +327,2,39.0,3,0.0,3,112,2,52,46,8.0,2538.3296146222115,0.0,1187.1100528407455,0.0,0.0,39498.759999999995,31,50,1,10413,201700327,,,463.0,,2.0,0.0,5.0,1.0,3.0,1.8,2463.2043924116388,0.0,882.0,0.0,0.0,50086.0,1,1,2,92.0,10,4.0,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3725.439667462957,0.09431788915558255,0.07438085827302952,27825.555555555555,8,4,8,8_1,8_2,8_0_1 +328,2,41.0,3,0.0,3,400,5,69,12,9.0,0.0,0.0,2557.266553738568,0.0,0.0,17374.839999999997,43,60,1,10414,201700328,,,,,2.0,0.0,5.0,2.0,4.0,2.5,1741.627258468246,0.0,1900.0,0.0,0.0,93472.0,1,1,2,90.0,0,1.0,4,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2557.266553738568,0.1471821641948109,0.02735863738593983,37388.8,9,5,9,9_1,9_1,9_0_1 +329,2,75.0,3,0.0,4,112,2,77,78,2.0,0.0,0.0,995.9880261929159,3175.5790215791762,0.0,28025.1,70,71,1,10415,201700329,,,290.0,,0.0,3.0,5.0,0.0,2.0,1.5,4381.751399410142,0.0,740.0,0.0,0.0,19975.0,5,5,1,105.0,7,0.0,3,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4171.567047772092,0.14885110303877927,0.20883940164065543,13316.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +330,2,51.0,4,0.0,1,112,4,0,85,4.0,0.0,0.0,1009.4473238441715,743.1152156581536,0.0,12041.6,0,50,1,10417,201700330,,,160.0,,0.0,4.0,4.0,0.0,1.0,1.0,2783.7030005708625,0.0,750.0,0.0,0.0,17840.0,0,7,1,90.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1752.562539502325,0.14554233154251303,0.09823781051022001,17840.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +331,2,51.0,4,0.0,9,112,2,85,54,1.0,0.0,0.0,1830.4644805707642,0.0,1291.6050176915528,32263.32457180271,50,31,1,10418,201700331,,,500.0,,1.0,0.0,5.0,2.0,4.0,2.5,2502.676245731972,0.0,1360.0,730.0,0.0,26522.0,8,1,2,120.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3122.069498262317,0.09676837522785618,0.11771621666021859,10608.8,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +332,1,37.0,5,272.0,7,111,1,0,54,4.0,0.0,0.0,161.51157181506744,0.0,619.262679715128,14385.28,0,71,2,10423,201700332,,,,248.0,1.0,1.0,4.0,0.0,1.0,1.0,3406.67356146426,0.0,120.0,350.0,0.0,15936.0,0,4,3,66.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,780.7742515301954,0.054275916181693744,0.04899436819341086,15936.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +333,2,37.0,3,0.0,1,120,2,0,62,8.0,0.0,0.0,1077.2760198110693,0.0,2007.4807787226,33076.96,0,31,1,10424,201700333,,,452.0,,1.0,0.0,6.0,2.0,3.0,1.6,387.25892339212317,1935.0,0.0,0.0,0.0,45832.0,0,1,2,135.0,0,2.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3084.756798533669,0.09325998515382518,0.06730574268052167,28645.0,8,4,8,8_1,8_1,8_1_0 +334,1,54.0,4,353.0,1,112,4,0,46,2.0,0.0,0.0,2018.894647688343,0.0,0.0,11454.3,0,50,8,10425,201700334,,,210.0,,1.0,1.0,2.0,1.0,2.0,1.5,903.6886567648847,0.0,1500.0,0.0,0.0,18298.0,0,4,3,40.0,8,0.0,2,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,2018.894647688343,0.17625648426253399,0.11033417027480287,12198.666666666666,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +335,2,52.0,3,0.0,1,111,2,54,46,6.0,0.0,208.188947934516,382.4747419174184,0.0,712.7334857790315,29448.1,31,50,1,10427,201700335,,,490.0,,2.0,2.0,4.0,2.0,4.0,2.5,1876.8796302008316,687.0,0.0,0.0,0.0,59389.0,1,1,2,100.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1303.3971756309659,0.0442608241492988,0.0219467776125371,23755.6,6,3,6,6_1,6_3,6_1_0 +336,1,21.0,2,221.0,99,111,1,0,65,5.0,0.0,0.0,193.8138861780809,0.0,0.0,15758.279999999999,0,43,2,10428,201700336,,,,179.0,1.0,0.0,1.0,0.0,1.0,1.0,3574.538610798524,0.0,144.0,0.0,0.0,20091.0,0,4,3,26.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,193.8138861780809,0.01229917771343579,0.009646801362703744,20091.0,5,3,5,5_0,5_3,5_0_0 +337,2,29.0,4,0.0,3,111,1,43,37,8.0,0.0,0.0,323.0231436301349,0.0,1873.711936623773,15594.010102559887,43,12,2,10429,201700337,430.0,430.0,,316.0,2.0,1.0,3.0,0.0,2.0,1.5,3263.8968846139433,0.0,240.0,1059.0,0.0,44700.0,1,1,3,58.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2196.7350802539077,0.14087044100948062,0.04914396152693306,29800.0,8,4,8,8_0,8_4,8_0_1 +338,1,49.0,5,53.0,1,221,5,85,68,1.0,0.0,1110.341055650752,1857.3830758732754,159.23897478389006,0.0,28585.56,71,50,1,1043,201700338,,,,,2.0,5.0,4.0,2.0,4.0,2.3,2546.2909972944835,0.0,1380.0,0.0,0.0,22696.0,6,1,2,142.0,1,1.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,3126.9631063079173,0.1093896046223309,0.13777595639354587,9867.826086956522,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +339,2,26.0,2,0.0,1,111,2,0,45,6.0,0.0,0.0,306.2024862512083,0.0,570.6017717299379,25818.32,0,31,2,10430,201700339,,,,276.0,1.0,0.0,2.0,0.0,1.0,1.0,5498.626478575132,550.0,0.0,0.0,0.0,22253.0,0,1,3,43.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,876.8042579811463,0.033960546541415025,0.039401620364946134,22253.0,6,3,6,6_0,6_4,6_1_0 +340,2,39.0,4,0.0,4,111,2,54,21,8.0,0.0,0.0,903.118872399252,0.0,1539.310089577604,42850.799999999996,31,31,1,10434,201700340,,,413.0,,2.0,0.0,5.0,1.0,3.0,1.8,4580.594649094572,0.0,671.0,870.0,0.0,49822.0,1,1,2,100.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2442.428961976856,0.056998444882635946,0.0490231014808088,27678.888888888887,8,4,8,8_1,8_2,8_0_1 +341,2,83.0,3,0.0,5,111,4,0,78,3.0,0.0,0.0,1117.1217050542164,106.15931652259337,0.0,11188.04,0,70,2,10435,201700341,,,,355.0,0.0,1.0,3.0,0.0,1.0,1.0,3785.0982232904125,0.0,830.0,0.0,0.0,15660.0,0,5,3,65.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1223.2810215768097,0.1093382774442002,0.07811500776352552,15660.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +342,2,44.0,2,0.0,5,112,2,42,38,8.0,2300.361213251379,0.0,690.4619695094133,0.0,0.0,65100.22,20,20,1,10436,201700342,,,350.0,,2.0,0.0,6.0,2.0,4.0,2.3,2418.6703453920923,0.0,513.0,0.0,0.0,65573.0,1,1,1,140.0,9,3.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2990.8231827607924,0.045941829117640345,0.04561058946152826,28510.000000000004,8,4,8,8_1,8_1,8_0_0 +343,2,38.0,3,0.0,99,120,2,67,52,3.0,0.0,0.0,672.964882562781,1592.3897478389006,0.0,25495.60681008075,71,50,1,10437,201700343,,,780.0,,2.0,0.0,3.0,2.0,4.0,2.3,820.0963099361169,0.0,500.0,0.0,0.0,36160.0,1,1,3,93.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2265.354630401682,0.08885274421105284,0.06264808159296686,15721.739130434784,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +344,2,36.0,1,0.0,8,111,4,38,38,10.0,0.0,0.0,3691.9179924132845,0.0,860.3430041558803,79951.31774272368,12,12,1,10440,201700344,,,440.0,,2.0,0.0,6.0,1.0,3.0,1.8,2875.277970716586,829.2800263327805,2400.0,0.0,0.0,103514.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4552.2609965691645,0.056937910782383104,0.043977249421036424,57507.777777777774,10,5,10,10_1,10_4,10_0_0 +345,2,69.0,1,0.0,7,111,4,75,74,9.0,0.0,0.0,2691.859530251124,0.0,0.0,39837.02,50,20,1,10441,201700345,,,320.0,,0.0,2.0,5.0,0.0,2.0,1.5,857.5656416193651,0.0,2000.0,0.0,0.0,48662.0,5,5,1,140.0,4,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2691.859530251124,0.06757180959447077,0.055317486544965766,32441.333333333332,9,5,9,9_1,9_1,9_0_0 +346,2,50.0,2,0.0,7,111,2,46,38,6.0,0.0,0.0,799.4822804845838,0.0,2337.2742854390976,65795.73584675131,31,31,1,10442,201700346,,,943.0,,2.0,0.0,5.0,2.0,4.0,2.5,2173.5732121224637,0.0,594.0,1321.0,0.0,56581.0,1,1,1,115.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3136.7565659236816,0.04767416194310349,0.05543833735571449,22632.4,6,3,6,6_1,6_2,6_0_0 +347,0,42.0,1,0.0,1,111,2,37,37,10.0,0.0,0.0,807.5578590753372,0.0,2123.1863304518674,79892.27169350261,20,20,2,10444,201700347,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3946.3169804642885,0.0,600.0,1200.0,0.0,126489.0,1,1,5,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2930.7441895272045,0.036683700781105125,0.02316995303565689,60232.85714285714,10,5,10,10_0,10_4,10_1_0 +348,2,38.0,2,0.0,7,111,2,37,37,10.0,0.0,0.0,2664.9409349486127,0.0,0.0,94691.31087530163,0,12,1,10445,201700348,,,,,2.0,0.0,7.0,1.0,3.0,1.8,3083.4701484436778,0.0,1980.0,0.0,0.0,94856.0,1,1,2,130.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2664.9409349486127,0.028143458046093122,0.028094595333438187,52697.777777777774,10,5,10,10_1,10_4,10_0_0 +349,2,36.0,5,0.0,99,221,2,0,52,3.0,0.0,0.0,1615.1157181506744,0.0,0.0,25204.40134949914,0,50,2,10446,201700349,,,,450.0,1.0,0.0,3.0,2.0,3.0,1.6,827.6531159010174,0.0,1200.0,0.0,0.0,23080.0,0,1,3,40.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1615.1157181506744,0.06408070145188233,0.06997901725089577,14425.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +350,2,32.0,3,0.0,99,112,2,52,55,6.0,3966.1400228472053,0.0,2051.1969620513564,0.0,0.0,47171.17087530163,42,71,1,10447,201700350,,,406.0,,2.0,0.0,5.0,1.0,3.0,1.8,2055.4382145622976,0.0,1524.0,0.0,0.0,38170.0,1,1,3,117.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6017.336984898562,0.12756386736308853,0.157645716135671,21205.555555555555,5,3,5,5_1,5_0,5_0_0 +351,2,66.0,3,0.0,9,112,5,75,74,8.0,634.5824036555529,34.698157989086,717.3805648119245,99.08202875442048,0.0,30919.12,50,70,1,1045,201700351,,,542.0,,0.0,2.0,4.0,0.0,2.0,1.5,1677.1174023597987,0.0,533.0,0.0,0.0,43948.0,5,5,1,130.0,5,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1485.7431552109838,0.048052569258471255,0.033806843433398195,29298.666666666668,8,4,8,8_1,8_0,8_0_0 +352,2,68.0,3,0.0,5,111,4,77,75,6.0,0.0,277.585263912688,1741.6331160724772,123.8525359430256,0.0,43010.439999999995,50,50,1,10451,201700352,,,398.0,,0.0,3.0,4.0,0.0,2.0,1.5,1725.950962603352,0.0,1294.0,0.0,0.0,34697.0,5,5,1,108.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2143.0709159281905,0.04982676103588317,0.06176530869897082,23131.333333333332,6,3,6,6_1,6_2,6_0_0 +353,1,51.0,4,571.0,99,111,2,22,55,1.0,0.0,0.0,161.51157181506744,0.0,212.31863304518674,14454.32,60,60,2,10453,201700353,,,,324.0,2.0,0.0,4.0,4.0,6.0,3.1,3228.931822192878,0.0,120.0,120.0,0.0,28433.0,1,1,3,78.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,373.8302048602542,0.02586287039862506,0.013147758057899419,9171.935483870968,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +354,2,65.0,4,0.0,1,300,5,0,13,1.0,0.0,277.585263912688,309.56384597887927,0.0,0.0,15728.76923415157,0,50,1,10455,201700354,,,,,1.0,1.0,4.0,0.0,1.0,1.0,2617.468528473164,0.0,230.0,0.0,0.0,2584.0,0,1,1,110.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,587.1491098915673,0.03732962834858698,0.2272248877289347,2584.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +355,2,41.0,2,0.0,6,111,4,52,33,8.0,0.0,0.0,1480.522741638118,0.0,0.0,49546.520000000004,30,12,1,10456,201700355,,,608.0,,2.0,0.0,5.0,3.0,5.0,2.4,2459.1955831238033,0.0,1100.0,0.0,0.0,64456.0,1,1,1,120.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1480.522741638118,0.02988146779305828,0.022969510078784255,26856.666666666668,7,4,7,7_1,7_3,7_0_0 +356,1,22.0,3,177.0,99,111,6,0,84,1.0,0.0,0.0,573.3660799434894,0.0,0.0,8422.64,0,41,2,10457,201700356,,,,260.0,0.0,0.0,1.0,0.0,1.0,1.0,4575.506928763283,0.0,426.0,0.0,0.0,8130.0,0,3,3,24.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,573.3660799434894,0.06807438997077987,0.07052473308038,8130.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +357,2,81.0,3,0.0,1,300,2,71,71,1.0,1142.2483265799951,0.0,1408.2561461097746,619.262679715128,698.0256915224667,21809.011217672316,70,71,1,10458,201700357,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2269.6942280391927,672.8232356752314,768.0,0.0,0.0,15280.0,5,5,1,150.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3867.792843927364,0.17734838160811287,0.2531278039219479,10186.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +358,1,29.0,4,353.0,6,112,2,0,56,3.0,0.0,0.0,686.4241802140366,1772.8605859273093,0.0,16603.7,0,43,1,1046,201700358,,,198.0,74.0,1.0,0.0,3.0,1.0,2.0,1.3,504.3293358238149,0.0,510.0,0.0,0.0,20067.0,0,4,3,86.0,7,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2459.284766141346,0.14811667075057644,0.12255368346745135,15436.153846153846,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +359,2,89.0,3,0.0,2,111,1,77,78,2.0,0.0,0.0,161.51157181506744,0.0,224.7038866394893,16836.39119129574,71,71,2,10461,201700359,,,,379.0,0.0,2.0,3.0,0.0,2.0,1.5,3250.0410764641892,0.0,120.0,127.0,0.0,19602.0,5,5,3,67.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,386.2154584545567,0.022939325539918943,0.019702859833412748,13068.0,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +360,1,44.0,3,215.0,4,112,2,0,56,1.0,0.0,0.0,619.1276919577585,0.0,2105.493111031435,16662.64,0,71,1,10462,201700360,,,653.0,,2.0,0.0,5.0,3.0,4.0,2.5,501.690983144713,0.0,460.0,1190.0,0.0,19950.0,0,1,2,80.0,8,1.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,2724.6208029891936,0.16351675382707626,0.13657247132777914,7980.0,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +361,2,77.0,2,0.0,4,120,5,74,74,5.0,0.0,0.0,1725.4819588909704,70.77287768172891,0.0,36741.17999999999,30,12,1,10464,201700361,,,200.0,,0.0,2.0,4.0,0.0,2.0,1.5,2313.2855300315073,0.0,1282.0,0.0,0.0,28358.0,6,5,1,95.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1796.2548365726993,0.04888941608768961,0.06334208465239789,18905.333333333332,5,3,5,5_1,5_0,5_0_1 +362,2,51.0,4,0.0,5,111,2,68,48,4.0,0.0,0.0,995.9880261929159,0.0,0.0,17685.35087530163,71,71,8,10465,201700362,,,320.0,,2.0,2.0,5.0,1.0,3.0,2.0,2471.512331731618,0.0,740.0,0.0,0.0,35370.0,1,1,3,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,995.9880261929159,0.056317119926857485,0.02815911863706293,17685.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +363,2,39.0,3,0.0,4,111,6,43,37,9.0,0.0,416.377895869032,2018.894647688343,0.0,0.0,73838.45999999999,33,12,1,10468,201700363,,,700.0,,2.0,0.0,5.0,1.0,3.0,1.8,2465.1391983928092,0.0,1500.0,0.0,0.0,55890.0,1,1,1,115.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2435.272543557375,0.03298108524415833,0.04357259873962023,31050.0,8,4,8,8_1,8_4,8_0_1 +364,2,69.0,3,0.0,5,120,2,0,77,6.0,0.0,0.0,76.82898745939409,0.0,143.16917181587533,13135.656658454027,0,70,1,10469,201700364,,,,,0.0,5.0,6.0,0.0,1.0,1.0,2017.0311797344827,138.0,0.0,0.0,0.0,23064.0,0,5,1,95.0,0,0.0,1,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,219.99815927526942,0.016748166079210054,0.00953859518189687,23064.0,6,3,6,6_1,6_0,6_0_0 +365,2,42.0,3,0.0,1,400,5,52,52,4.0,0.0,1138.0995820420208,1224.7960862642615,106.15931652259337,0.0,33702.91087530163,41,50,1,1047,201700365,,,80.0,,2.0,0.0,7.0,2.0,4.0,2.1,2045.0030930904932,0.0,910.0,0.0,0.0,37403.0,1,1,2,180.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2469.0549848288756,0.07325939869004795,0.06601221786564916,17810.95238095238,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +366,1,47.0,3,422.0,5,112,1,0,67,1.0,0.0,0.0,601.2703366387364,0.0,1120.4543881242419,19280.55087530163,0,71,2,10472,201700366,,,,,1.0,0.0,4.0,4.0,5.0,2.8,1269.979698203973,1080.0,0.0,0.0,0.0,28614.0,0,1,3,90.0,10,5.0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1721.7247247629782,0.08929852346534903,0.060170711007303354,10219.285714285716,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +367,2,62.0,2,0.0,1,300,2,22,22,9.0,2221.038412794435,0.0,874.8543473316153,74.31152156581537,0.0,36942.97466143878,50,60,1,10475,201700367,,,170.0,,2.0,1.0,4.0,0.0,2.0,1.5,1915.9470525365043,0.0,650.0,0.0,0.0,60002.0,1,1,1,90.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3170.2042816918656,0.08581345467561759,0.05283497686230235,40001.333333333336,9,5,9,9_1,9_0,9_1_0 +368,2,86.0,3,0.0,2,400,6,71,71,2.0,2189.3092926116574,69.396315978172,1025.5984810256782,106.15931652259337,0.0,24787.308161188146,70,71,5,10476,201700368,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1755.9497162224432,0.0,762.0,0.0,0.0,18764.0,5,5,1,109.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3390.463406138101,0.13678223484738344,0.18068979994340764,12509.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +369,2,53.0,5,0.0,6,111,2,0,47,4.0,0.0,0.0,1615.1157181506744,0.0,0.0,17553.665846751297,0,71,2,10477,201700369,,,,480.0,1.0,0.0,3.0,1.0,2.0,1.5,4743.302786257167,0.0,1200.0,0.0,0.0,24210.0,0,1,3,60.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1615.1157181506744,0.09201016655159744,0.0667127516790861,16140.0,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +370,2,48.0,4,0.0,1,120,2,13,85,3.0,0.0,0.0,1212.6827183781313,276.0142229587428,0.0,66936.2258467513,50,71,1,10478,201700370,,,189.0,,2.0,2.0,6.0,3.0,5.0,3.0,888.9368092694632,0.0,901.0,0.0,0.0,42657.0,1,5,1,127.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1488.696941336874,0.022240527046523444,0.03489924142196765,14219.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +371,2,63.0,3,0.0,4,211,2,0,77,3.0,0.0,83.27557917380639,538.3719060502248,0.0,2123.1863304518674,26522.94,0,50,1,10479,201700371,,,370.0,,0.0,0.0,4.0,0.0,1.0,1.0,1543.9148810516256,0.0,400.0,1200.0,0.0,15152.0,0,5,1,120.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2744.8338156758987,0.10348904818530294,0.1811532349310915,15152.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +372,2,48.0,2,0.0,99,111,1,56,65,5.0,0.0,0.0,629.895130078763,0.0,530.7965826129669,36736.92,50,60,2,10480,201700372,,,,243.0,2.0,0.0,3.0,0.0,2.0,1.5,1458.1972760839813,0.0,468.0,300.0,0.0,28784.0,4,4,3,72.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1160.69171269173,0.031594693095984366,0.04032419791174715,19189.333333333332,5,3,5,5_0,5_2,5_0_0 +373,2,36.0,2,0.0,99,112,4,52,63,4.0,0.0,0.0,33.403907591040905,0.0,62.24746600690232,42678.07119129574,43,50,1,10481,201700373,,,840.0,,2.0,0.0,4.0,4.0,6.0,2.7,2443.619261645336,60.0,0.0,0.0,0.0,45730.0,1,1,2,95.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,95.65137359794323,0.0022412300023870687,0.0020916547911205606,16937.037037037036,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +374,1,27.0,4,162.0,1,111,4,63,55,2.0,0.0,0.0,969.0694308904046,0.0,0.0,11838.220000000001,50,42,2,10482,201700374,,,,324.0,2.0,0.0,3.0,0.0,2.0,1.5,1579.7243466889784,0.0,720.0,0.0,0.0,16630.0,2,4,3,50.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,969.0694308904046,0.08185938687491907,0.05827236505654869,11086.666666666666,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +375,2,32.0,2,0.0,9,112,4,34,46,7.0,0.0,0.0,1776.6272899657417,0.0,0.0,58959.78,20,42,1,10483,201700375,,,336.0,,2.0,0.0,5.0,1.0,3.0,1.8,2428.1054133716443,0.0,1320.0,0.0,0.0,42769.0,1,1,2,104.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1776.6272899657417,0.030132868371722923,0.041540070844905,23760.555555555555,6,3,6,6_1,6_0,6_0_0 +376,1,28.0,4,160.0,1,120,5,85,69,1.0,0.0,749.4802125642576,646.0462872602698,138.0071114793714,0.0,20551.32,50,60,1,10485,201700376,,,500.0,,1.0,0.0,6.0,2.0,4.0,2.1,2918.280242238542,0.0,480.0,0.0,0.0,17800.0,6,1,2,240.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1533.5336113038989,0.07461971354170432,0.08615357366875837,8476.190476190475,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +377,1,43.0,4,397.0,5,111,1,85,85,1.0,0.0,0.0,1520.1673362406314,0.0,2832.799256480438,18247.987197288294,71,71,2,10486,201700377,,,,,0.0,0.0,3.0,2.0,4.0,2.1,4081.4912744483236,2730.5200724151464,0.0,0.0,0.0,21454.0,4,4,3,64.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,4352.96659272107,0.23854502667384236,0.20289766909299292,10216.190476190475,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +378,2,76.0,3,0.0,2,111,1,77,78,2.0,0.0,0.0,1009.4473238441715,0.0,1415.4575536345783,32520.226162745417,70,50,2,10487,201700378,,,,978.0,0.0,4.0,4.0,0.0,2.0,1.5,3505.2450295517765,0.0,750.0,800.0,0.0,19580.0,5,5,3,87.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2424.9048774787498,0.07456605207305345,0.12384601008573799,13053.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +379,2,79.0,2,0.0,4,112,2,0,77,9.0,1626.1174093673542,0.0,615.0899026623819,113.23660429076627,0.0,19093.68,0,70,1,10489,201700379,,,276.0,,0.0,9.0,5.0,0.0,2.0,1.5,3907.812240192199,0.0,457.0,0.0,0.0,53784.0,0,5,1,95.0,8,0.0,5,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2354.443916320502,0.1233101170816994,0.043775916932926186,35856.0,9,5,9,9_1,9_0,9_0_1 +380,2,72.0,1,0.0,4,111,2,77,74,9.0,3648.848821019429,0.0,1592.3856430535734,113.23660429076627,1312.0230813377175,31271.054057653597,50,12,1,1049,201700380,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1729.5329944217613,1264.6520401574903,660.0,0.0,0.0,51295.0,5,5,1,100.0,9,7.0,3,9,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,6666.494149701486,0.21318418424305913,0.12996382005461518,34196.666666666664,9,5,9,9_1,9_3,9_0_1 +381,1,60.0,3,233.0,9,111,2,0,81,3.0,0.0,0.0,670.3050789935543,0.0,1249.0991512051733,10866.259999999998,0,71,1,10490,201700381,,,128.0,252.0,1.0,3.0,3.0,0.0,2.0,1.5,1684.3608403511794,1204.0,0.0,0.0,0.0,23424.0,0,4,3,60.0,8,7.0,5,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1919.4042301987274,0.17663890153546186,0.08194177895315606,15616.0,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +382,0,83.0,4,0.0,99,111,3,0,86,3.0,0.0,0.0,0.0,0.0,0.0,6547.470875301628,0,71,2,10491,201700382,,,,,0.0,7.0,4.0,0.0,1.0,1.0,1811.335345156005,0.0,0.0,0.0,0.0,14270.0,0,5,5,79.0,8,7.0,1,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,14270.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +383,1,72.0,4,227.0,99,111,1,86,78,2.0,0.0,0.0,500.68587262670906,0.0,721.8833523536349,8407.678007953178,71,71,2,10492,201700383,204.0,204.0,,117.0,0.0,8.0,4.0,0.0,2.0,1.5,2413.042625135539,0.0,372.0,408.0,0.0,17587.0,5,5,3,60.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1222.569224980344,0.14541104259985504,0.06951550719169523,11724.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +384,2,34.0,3,0.0,9,120,5,55,43,9.0,0.0,0.0,2354.031159204608,0.0,0.0,53333.600000000006,31,30,1,10494,201700384,,,334.0,,2.0,0.0,6.0,2.0,4.0,2.1,1791.778360413101,0.0,1749.0,0.0,0.0,68677.0,1,1,2,125.0,0,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2354.031159204608,0.04413786354576866,0.0342768490062846,32703.333333333332,9,5,9,9_1,9_1,9_0_0 +385,2,46.0,5,0.0,6,112,6,63,21,6.0,0.0,277.585263912688,2018.894647688343,530.7965826129669,0.0,51098.7258467513,20,50,1,10495,201700385,,,540.0,,2.0,0.0,6.0,2.0,4.0,2.1,7174.938424894469,0.0,1500.0,0.0,0.0,44321.0,1,1,2,120.0,7,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2827.2764942139975,0.055329686745873075,0.06379090034552463,21105.238095238095,5,3,5,5_1,5_0,5_0_0 +386,2,42.0,3,0.0,1,112,2,52,37,9.0,0.0,1457.3226355416118,888.3136449828709,176.9321942043223,0.0,41602.36,42,20,1,10496,201700386,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2044.8371664399199,0.0,660.0,0.0,0.0,56068.0,1,1,2,100.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2522.568474728805,0.060635225374925966,0.04499123340816161,37378.666666666664,9,5,9,9_1,9_1,9_1_0 +387,1,40.0,4,240.0,7,111,4,0,56,2.0,0.0,0.0,874.8543473316153,0.0,0.0,6484.64,0,50,2,10498,201700387,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2950.1384576649425,0.0,650.0,0.0,0.0,11800.0,0,4,3,20.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,874.8543473316153,0.13491178343464175,0.07414019892640808,11800.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +388,2,56.0,1,0.0,1,400,5,42,75,3.0,0.0,0.0,3324.446519860138,247.7050718860512,0.0,44930.47852141735,10,33,1,10499,201700388,,,265.0,,1.0,1.0,20.0,0.0,2.0,1.5,1444.5535424397276,0.0,2470.0,0.0,0.0,25967.0,1,7,2,820.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3572.1515917461893,0.07950397390144476,0.13756504762761157,17311.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +390,1,51.0,5,272.0,1,111,6,0,63,1.0,0.0,0.0,403.7789295376686,106.15931652259337,0.0,11115.016658454031,0,50,2,1050,201700390,,,,168.0,1.0,0.0,2.0,0.0,1.0,1.0,2613.593358844212,0.0,300.0,0.0,0.0,9214.0,0,4,3,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,509.938246060262,0.045878315951277074,0.055343851319759274,9214.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +391,2,64.0,1,0.0,1,111,2,22,22,9.0,0.0,0.0,2122.5312396030113,0.0,4396.765025977409,71818.94000000002,30,12,1,10500,201700391,,,,,2.0,4.0,7.0,0.0,2.0,1.5,1726.1072713651602,0.0,1577.0,2485.0,0.0,55481.0,5,5,1,390.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,6519.29626558042,0.09077405299466156,0.11750502452335791,36987.333333333336,9,5,9,9_1,9_2,9_1_0 +392,2,49.0,2,0.0,5,211,2,43,62,10.0,0.0,971.5484236944079,1546.5717036594085,0.0,3030.382977383032,36250.09026244161,30,50,1,10501,201700392,,,246.0,,2.0,0.0,5.0,0.0,2.0,1.5,1689.708602104338,362.8100115205915,999.0,1500.0,0.0,64719.0,1,1,2,110.0,3,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5548.503104736848,0.15306177348986086,0.08573221317907953,43146.0,10,5,10,10_1,10_2,10_0_0 +393,2,29.0,3,0.0,5,111,2,52,43,6.0,0.0,0.0,701.2294076304178,0.0,1233.2173936041263,27858.1516935026,33,33,2,10505,201700393,,,,315.0,2.0,0.0,2.0,0.0,2.0,1.5,3334.8471343477104,0.0,521.0,697.0,0.0,34804.0,1,1,3,70.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1934.4468012345442,0.06943916533004299,0.05558116312017424,23202.666666666668,6,3,6,6_0,6_3,6_0_0 +394,2,29.0,2,0.0,9,112,6,54,46,8.0,0.0,0.0,724.1102136375523,0.0,1645.4694061001974,35643.06417758095,31,31,2,10506,201700394,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1943.8664269770898,0.0,538.0,930.0,0.0,52008.0,1,1,2,89.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2369.5796197377495,0.06648080557642365,0.04556182932890612,28893.333333333332,8,4,8,8_0,8_1,8_0_0 +395,2,53.0,2,0.0,1,111,2,55,46,10.0,0.0,0.0,2973.198684087543,0.0,5540.4920371993785,80138.83477955815,50,50,1,10508,201700395,,,720.0,,2.0,1.0,5.0,0.0,2.0,1.5,1284.9109228153911,5340.450681078347,0.0,0.0,0.0,65168.0,1,1,3,140.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,8513.690721286921,0.1062367670394254,0.13064219741724345,43445.333333333336,10,5,10,10_1,10_3,10_1_0 +396,2,79.0,3,0.0,4,112,2,77,75,5.0,1772.0713622081314,0.0,543.755625110727,132.69914565324171,0.0,21138.6,71,70,1,10509,201700396,,,329.0,,0.0,3.0,4.0,0.0,2.0,1.5,2042.5433150441422,0.0,404.0,0.0,0.0,28995.0,5,5,1,85.0,9,1.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2448.5261329721,0.11583199137937708,0.08444649536030696,19330.0,5,3,5,5_1,5_1,5_0_1 +397,2,32.0,2,0.0,8,112,2,47,38,10.0,3490.203220105541,0.0,767.1799661215703,0.0,0.0,44284.5716935026,30,12,1,1051,201700397,,,180.0,,2.0,0.0,5.0,1.0,3.0,1.8,2213.9914324679153,0.0,570.0,0.0,0.0,70868.0,1,1,2,173.0,6,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4257.383186227111,0.09613693942199177,0.06007483188783529,39371.11111111111,9,5,9,9_1,9_1,9_0_0 +398,2,45.0,5,0.0,4,112,2,72,43,6.0,0.0,0.0,940.8767304809855,0.0,1753.3036258610819,40336.2233870052,60,30,1,10510,201700398,,,660.0,,1.0,2.0,6.0,1.0,4.0,2.5,4898.817446664678,1690.0,0.0,0.0,0.0,60631.0,5,1,1,120.0,10,4.0,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2694.180356342067,0.06679307406875454,0.0444356905929651,24252.4,7,4,7,7_1,7_2,7_0_1 +399,1,25.0,4,178.0,99,111,1,0,55,3.0,0.0,0.0,403.7789295376686,0.0,0.0,10066.890875301628,0,50,2,10511,201700399,,,,104.0,1.0,0.0,2.0,0.0,1.0,1.0,6931.040379461441,0.0,300.0,0.0,0.0,15676.0,0,1,3,60.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,403.7789295376686,0.0401095963529624,0.02575777810268363,15676.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +400,2,69.0,4,0.0,1,111,6,78,78,4.0,1903.7472109666587,0.0,1884.3016711757866,0.0,0.0,37946.08206659737,71,50,1,10512,201700400,,,540.0,,2.0,5.0,4.0,1.0,5.0,3.0,1151.0978563435792,0.0,1400.0,0.0,0.0,51633.0,5,5,1,54.0,8,6.0,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3788.048882142445,0.09982714092838939,0.07336488064111024,17211.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +401,1,28.0,3,178.0,2,111,1,21,52,4.0,0.0,0.0,92.86915379366377,0.0,23.0011852465619,51425.98,50,60,2,10513,201700401,,,,172.0,2.0,0.0,3.0,2.0,4.0,2.1,4087.614057512942,0.0,69.0,13.0,0.0,36654.0,1,1,3,63.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,115.87033904022567,0.0022531479038459873,0.003161192203858397,17454.285714285714,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +402,2,67.0,3,0.0,9,111,2,75,75,5.0,0.0,0.0,683.7323206837855,0.0,985.5123217180752,27724.08,70,44,1,10514,201700402,,,363.0,,0.0,2.0,5.0,0.0,2.0,1.5,1766.500454210674,0.0,508.0,557.0,0.0,29886.0,5,5,1,92.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1669.2446424018608,0.06020919873272118,0.05585373226266013,19924.0,5,3,5,5_1,5_2,5_0_0 +403,2,81.0,2,0.0,2,111,1,0,77,9.0,0.0,0.0,363.4010365839017,0.0,0.0,28874.585846751303,0,71,2,10515,201700403,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3420.971812942615,0.0,270.0,0.0,0.0,33748.0,0,5,1,65.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,363.4010365839017,0.012585497797703935,0.010768076229225486,33748.0,9,5,9,9_0,9_4,9_0_1 +404,2,43.0,1,0.0,2,111,2,0,37,10.0,0.0,0.0,821.0171567265928,0.0,2542.5156307161114,71352.34000000001,0,20,1,10516,201700404,,,622.0,,1.0,0.0,7.0,1.0,2.0,1.3,851.3055464664973,0.0,610.0,1437.0,0.0,86521.0,0,1,2,160.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3363.5327874427044,0.047139768470700526,0.03887533416676534,66554.61538461538,10,5,10,10_1,10_4,10_0_1 +405,2,68.0,2,0.0,3,400,2,71,72,6.0,0.0,1190.8407821854314,1708.0040891418332,70.77287768172891,2279.9089610130827,17779.375589282892,70,70,1,10517,201700405,,,282.0,,0.0,4.0,5.0,0.0,2.0,1.5,1986.6181216316838,2197.5920697818683,360.0,0.0,0.0,33129.0,5,5,1,100.0,0,1.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5249.526710022076,0.2952593404453643,0.15845714359087434,22086.0,6,3,6,6_1,6_1,6_0_1 +406,1,31.0,3,462.0,99,112,2,37,85,3.0,0.0,0.0,2086.1911359446212,0.0,0.0,36526.24,20,33,1,10518,201700406,,,,,1.0,0.0,6.0,4.0,6.0,2.7,1883.1239503191255,0.0,1550.0,0.0,0.0,41520.0,4,6,3,112.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2086.1911359446212,0.05711486142413293,0.05024545125107469,15377.777777777777,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +407,2,68.0,3,0.0,6,111,2,0,77,4.0,0.0,0.0,302.83419715325147,0.0,474.17828046758376,16554.12,0,50,2,10519,201700407,,,180.0,,0.0,1.0,2.0,0.0,1.0,1.0,1952.2910597523992,0.0,225.0,268.0,0.0,17919.0,0,5,1,48.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,777.0124776208352,0.046937709622790896,0.04336249107767371,17919.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +408,2,47.0,3,0.0,99,112,2,0,48,7.0,0.0,0.0,469.7294880288211,1896.713121870335,0.0,18990.585846751303,0,50,1,1052,201700408,,,142.0,,1.0,2.0,5.0,0.0,1.0,1.0,2486.808557567914,0.0,349.0,0.0,0.0,23670.0,0,1,2,78.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2366.442609899156,0.12461135369891607,0.09997645162227106,23670.0,6,3,6,6_1,6_0,6_0_0 +409,2,53.0,4,0.0,1,120,2,13,56,5.0,0.0,69.396315978172,1090.2031097517051,297.2460862632615,0.0,38887.67999999999,42,41,1,10521,201700409,,,150.0,,2.0,2.0,6.0,0.0,2.0,1.5,2706.820631115202,0.0,810.0,0.0,0.0,29785.0,1,1,1,140.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1456.8455119931386,0.037462906298167925,0.048912053449492655,19856.666666666668,5,3,5,5_1,5_0,5_1_0 +410,2,64.0,2,0.0,7,111,4,77,75,9.0,0.0,0.0,1515.5169155313827,0.0,0.0,28607.559999999998,60,31,1,10522,201700410,,,356.0,,0.0,2.0,4.0,0.0,2.0,1.5,1878.612477411341,0.0,1126.0,0.0,0.0,58389.0,5,5,1,105.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1515.5169155313827,0.0529760984694739,0.025955520997643096,38926.0,9,5,9,9_1,9_3,9_0_0 +411,2,51.0,2,0.0,6,111,4,52,34,10.0,0.0,174.87871626499344,2640.7141991763524,185.7788039145384,0.0,67524.90000000001,42,10,1,10523,201700411,,,432.0,,2.0,0.0,4.0,2.0,4.0,2.3,2001.357484009101,0.0,1962.0,0.0,0.0,102741.0,1,1,2,92.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3001.371719355884,0.04444836970296711,0.029212989160665014,44670.0,10,5,10,10_1,10_3,10_0_0 +412,2,38.0,2,0.0,1,112,2,38,38,10.0,0.0,1124.2203188463864,1022.9066214954271,0.0,0.0,58919.899999999994,12,12,1,10525,201700412,,,220.0,,2.0,0.0,7.0,2.0,4.0,2.1,2871.495087208637,0.0,760.0,0.0,0.0,81520.0,1,1,1,270.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2147.1269403418137,0.036441455948530356,0.02633865235944325,38819.04761904762,9,5,9,9_1,9_0,9_1_0 +413,2,70.0,2,0.0,4,111,2,77,74,7.0,0.0,0.0,1615.1157181506744,159.23897478389006,0.0,31910.131693502604,50,44,1,10526,201700413,,,549.0,,2.0,0.0,5.0,2.0,4.0,2.5,3756.113191478534,0.0,1200.0,0.0,0.0,64478.0,5,5,1,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1774.3546929345644,0.05560474365876247,0.02751876132843085,25791.2,7,4,7,7_1,7_4,7_0_1 +414,2,85.0,3,0.0,1,300,6,0,86,4.0,2379.684013708323,0.0,1345.929765125562,132.69914565324171,0.0,12992.190875301627,0,71,1,10529,201700414,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2028.3631310320495,0.0,1000.0,0.0,0.0,16520.0,0,5,5,80.0,0,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3858.312924487127,0.29697169334402596,0.23355405111907548,16520.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +415,2,35.0,4,0.0,9,112,5,52,65,5.0,0.0,333.10231669522557,1211.3367886130059,0.0,0.0,29269.848161188143,42,50,1,1053,201700415,,,560.0,,2.0,0.0,4.0,2.0,4.0,2.1,2462.636121888003,0.0,900.0,0.0,0.0,40930.0,1,1,2,122.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1544.4391053082313,0.052765531847075296,0.037733669809631845,19490.47619047619,5,3,5,5_1,5_0,5_0_0 +416,2,38.0,2,0.0,2,111,2,0,38,10.0,0.0,0.0,2263.8538649411953,0.0,0.0,29913.84,0,12,1,10531,201700416,,,192.0,,1.0,1.0,4.0,0.0,1.0,1.0,2345.2308496474275,0.0,1682.0,0.0,0.0,68860.0,0,1,2,100.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2263.8538649411953,0.07567914600536725,0.032876181599494556,68860.0,10,5,10,10_1,10_3,10_0_1 +417,2,52.0,3,0.0,7,111,4,0,35,2.0,0.0,693.9631597817199,2691.859530251124,0.0,0.0,41567.85887828637,0,50,1,10532,201700417,,,500.0,,2.0,2.0,6.0,1.0,2.0,1.5,2005.9764076841082,0.0,2000.0,0.0,0.0,21038.0,0,1,1,140.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3385.8226900328436,0.08145290090468146,0.16093842998539992,14025.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +418,2,51.0,2,0.0,1,111,5,0,43,6.0,0.0,138.792631956344,323.0231436301349,353.8643884086446,0.0,30880.351191295744,0,20,1,10533,201700418,,,153.0,,1.0,0.0,5.0,2.0,3.0,1.6,345.8330492145361,0.0,240.0,0.0,0.0,38479.0,0,1,1,180.0,7,5.0,2,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,815.6801639951234,0.02641421267984282,0.021198060344476816,24049.375,7,4,7,7_1,7_2,7_1_0 +419,2,49.0,3,0.0,2,111,1,0,63,6.0,0.0,0.0,625.8573407833863,0.0,0.0,24228.2058467513,0,31,2,10534,201700419,,,,482.0,1.0,0.0,2.0,0.0,1.0,1.0,4439.355300284522,0.0,465.0,0.0,0.0,23880.0,0,1,3,37.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,625.8573407833863,0.02583176586587017,0.026208431356088205,23880.0,6,3,6,6_0,6_4,6_0_1 +420,2,61.0,3,0.0,1,120,6,78,77,7.0,2934.943616906932,0.0,753.7206684703146,230.3657168540276,0.0,18497.04,50,50,1,10535,201700420,,,520.0,,0.0,5.0,3.0,0.0,2.0,1.5,2544.50741835583,0.0,560.0,0.0,0.0,34802.0,5,5,1,80.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3919.0300022312745,0.21187335931755968,0.11260933286107909,23201.333333333332,6,3,6,6_1,6_0,6_1_0 +421,1,38.0,4,415.0,7,111,2,0,31,1.0,0.0,0.0,1670.1953795520453,0.0,3112.3733003451157,31338.800000000003,0,20,2,10536,201700421,,,,185.0,2.0,2.0,4.0,2.0,4.0,2.5,1353.389300996806,3000.0,0.0,0.0,0.0,25320.0,0,1,3,65.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,4782.568679897161,0.1526085453143439,0.1888850189532844,10128.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +422,2,33.0,4,0.0,4,211,2,46,47,6.0,2379.684013708323,0.0,1005.4095345487948,0.0,0.0,51985.899999999994,31,42,1,10537,201700422,,,667.0,,2.0,0.0,5.0,1.0,3.0,1.8,2387.6958535312165,0.0,747.0,0.0,0.0,39747.0,1,1,2,150.0,1,2.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3385.093548257118,0.06511560919897738,0.08516601374335467,22081.666666666668,6,3,6,6_1,6_1,6_0_1 +423,2,79.0,2,0.0,6,112,2,77,78,8.0,0.0,1040.94473967258,1749.7086946632305,212.31863304518674,0.0,51674.16,70,71,1,10538,201700423,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1881.001899919787,0.0,1300.0,0.0,0.0,44575.0,5,5,1,160.0,8,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3002.9720673809975,0.05811361166550162,0.06736897515156472,29716.666666666668,8,4,8,8_1,8_1,8_0_0 +424,2,46.0,4,0.0,1,111,2,56,62,3.0,0.0,0.0,672.964882562781,0.0,2653.9829130648345,27016.579999999998,50,71,1,1054,201700424,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.5,2306.6214266296056,0.0,500.0,1500.0,0.0,38168.0,1,1,1,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3326.9477956276155,0.12314466877849142,0.08716589278001508,15267.2,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +425,2,39.0,3,0.0,1,111,2,55,63,2.0,0.0,0.0,672.964882562781,0.0,1769.3219420432229,21255.44,50,50,2,10540,201700425,,,,341.0,2.0,0.0,3.0,1.0,3.0,1.8,2609.7688070555505,0.0,500.0,1000.0,0.0,21137.0,4,1,3,59.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2442.286824606004,0.11490172984450117,0.11554557527586715,11742.777777777777,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +426,0,62.0,2,0.0,99,111,1,0,56,2.0,317.29120182777643,0.0,320.33128409988376,46.0023704931238,0.0,13821.16,0,71,2,10541,201700426,200.0,200.0,,,1.0,1.0,2.0,0.0,1.0,1.0,2958.031345042562,0.0,238.0,0.0,0.0,10726.0,0,1,5,40.0,9,7.0,1,7,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,683.6248564207839,0.04946219104769671,0.06373530266835577,10726.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +427,0,30.0,4,0.0,9,111,2,0,54,3.0,0.0,0.0,0.0,0.0,0.0,26413.85644985154,0,50,1,10542,201700427,,,,,1.0,0.0,3.0,3.0,4.0,1.9,946.9162191951028,0.0,0.0,0.0,0.0,27430.0,0,4,5,55.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0.0,0.0,0.0,14436.842105263158,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +428,1,20.0,2,270.0,5,111,1,0,47,8.0,0.0,0.0,1195.185631431499,0.0,0.0,19112.799999999996,0,31,2,10543,201700428,,,,180.0,1.0,0.0,2.0,0.0,1.0,1.0,4900.219983699868,0.0,888.0,0.0,0.0,27530.0,0,1,3,35.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1195.185631431499,0.06253325684522933,0.043413935032019575,27530.0,8,4,8,8_0,8_3,8_0_0 +429,2,48.0,3,0.0,2,111,2,63,46,4.0,0.0,0.0,651.430006320772,0.0,2390.353943700394,47728.440315994114,50,31,1,10544,201700429,,,575.0,,2.0,0.0,6.0,3.0,5.0,2.8,1512.7400253289268,0.0,484.0,1351.0,0.0,48105.0,1,1,2,100.0,6,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3041.783950021166,0.0637310569941638,0.06323217856815645,17180.357142857145,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +430,2,38.0,4,0.0,1,111,2,85,67,2.0,0.0,0.0,538.3719060502248,0.0,1592.3897478389006,33304.14995415666,71,50,1,10545,201700430,,,750.0,450.0,1.0,0.0,6.0,5.0,7.0,3.4,557.001298906416,0.0,400.0,900.0,0.0,35894.0,6,1,3,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2130.7616538891252,0.06397886319939497,0.05936261363707375,10557.058823529413,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +431,2,56.0,3,0.0,1,400,5,74,34,7.0,732.9426762221635,371.9642536430019,911.1944509900054,0.0,0.0,29126.875052882573,30,30,1,10546,201700431,,,110.0,,1.0,3.0,5.0,0.0,2.0,1.5,1953.3853974178903,0.0,677.0,0.0,0.0,35963.0,5,1,2,140.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2016.1013808551709,0.06921790879367422,0.0560604338029411,23975.333333333332,7,4,7,7_1,7_0,7_1_0 +432,2,47.0,3,0.0,6,111,6,85,31,8.0,0.0,0.0,2422.6735772260117,148.62304313163074,0.0,69965.83999999998,44,20,1,10547,201700432,,,,,1.0,0.0,8.0,6.0,8.0,3.9,3698.577510649526,0.0,1800.0,0.0,0.0,122800.0,6,1,1,250.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2571.2966203576425,0.03675074322494582,0.020938897559915657,31487.17948717949,8,4,8,8_1,8_3,8_0_0 +433,1,38.0,4,379.0,1,111,2,0,31,2.0,0.0,0.0,807.5578590753372,0.0,955.4338487033403,12740.0,0,20,1,10549,201700433,,,206.0,37.0,1.0,0.0,2.0,1.0,2.0,1.3,920.127541835463,0.0,600.0,540.0,0.0,14446.0,0,1,3,65.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1762.9917077786777,0.13838239464510813,0.12204012929383065,11112.307692307691,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +434,2,42.0,3,0.0,5,111,2,0,37,8.0,0.0,0.0,957.578684276506,0.0,1784.4273588645333,59832.99999999999,0,20,1,1055,201700434,,,220.0,,1.0,0.0,4.0,1.0,2.0,1.3,2606.110046001283,1720.0,0.0,0.0,0.0,38133.0,0,1,2,90.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2742.0060431410393,0.04582765435697758,0.07190638143185796,29333.076923076922,8,4,8,8_1,8_2,8_0_0 +435,1,50.0,4,272.0,5,111,1,0,22,6.0,0.0,0.0,484.5347154452023,0.0,0.0,17030.471191295746,0,50,2,10550,201700435,,,,53.0,1.0,0.0,2.0,0.0,1.0,1.0,3028.0310977429353,0.0,360.0,0.0,0.0,20544.0,0,4,3,40.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,484.5347154452023,0.028451045775694534,0.023585217846826437,20544.0,5,3,5,5_0,5_3,5_0_0 +436,2,79.0,2,0.0,7,300,4,0,78,6.0,63.458240365555284,0.0,370.1306854095295,212.31863304518674,0.0,22418.2,0,71,1,10551,201700436,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3596.825993077804,0.0,275.0,0.0,0.0,20596.0,0,5,3,120.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,645.9075588202716,0.0288117493295747,0.03136082534571138,20596.0,5,3,5,5_1,5_0,5_0_0 +437,2,38.0,3,0.0,7,221,4,55,65,6.0,0.0,0.0,1009.4473238441715,0.0,0.0,17037.760315994117,31,71,1,10552,201700437,,,,,2.0,0.0,3.0,1.0,3.0,1.8,1069.8678044775322,0.0,750.0,0.0,0.0,37860.0,1,1,3,56.0,1,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1009.4473238441715,0.05924765374804326,0.02666263401595804,21033.333333333332,5,3,5,5_1,5_1,5_0_0 +438,2,64.0,3,0.0,6,400,2,0,71,3.0,0.0,138.792631956344,565.290501352736,0.0,0.0,14787.96,0,50,1,10553,201700438,,,120.0,,0.0,4.0,5.0,0.0,1.0,1.0,1800.4797645613426,0.0,420.0,0.0,0.0,14544.0,0,5,1,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,704.08313330908,0.04761191762143528,0.048410556470646314,14544.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +439,2,61.0,3,0.0,6,111,2,78,77,7.0,0.0,0.0,2113.1097312471325,233.5504963497054,0.0,32575.371191295748,50,50,1,10554,201700439,,,211.0,,0.0,2.0,4.0,0.0,2.0,1.5,1681.9742384036872,0.0,1570.0,0.0,0.0,37733.0,5,5,1,97.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2346.660227596838,0.07203786608650752,0.06219119146627191,25155.333333333332,7,4,7,7_1,7_3,7_0_0 +440,2,36.0,1,0.0,4,112,4,33,38,10.0,0.0,0.0,5168.370298082158,0.0,0.0,53336.26175060327,10,12,1,10555,201700440,,,,,2.0,0.0,8.0,0.0,2.0,1.5,3740.1398965963867,0.0,3840.0,0.0,0.0,94158.0,1,1,2,180.0,9,3.0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5168.370298082158,0.09690162243182895,0.054890400158055165,62772.0,10,5,10,10_1,10_1,10_0_1 +441,2,70.0,3,0.0,4,120,5,71,71,3.0,0.0,0.0,1757.5346753052797,5307.965826129669,516.2058024935282,26973.401028225686,70,70,1,10557,201700441,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1387.8849268680472,497.56801579966833,1100.0,0.0,0.0,28640.0,5,5,1,80.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,7581.706303928477,0.2810808431608152,0.2647243821204077,19093.333333333332,5,3,5,5_1,5_0,5_0_1 +442,2,71.0,3,0.0,99,221,2,75,47,8.0,0.0,0.0,1265.1739792180283,0.0,1953.331424015718,49568.54031599411,70,50,1,10559,201700442,,,490.0,,1.0,2.0,3.0,0.0,2.0,1.5,2387.873725389017,0.0,940.0,1104.0,0.0,43216.0,5,1,5,80.0,1,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3218.5054032337466,0.06493040510606367,0.07447485660944433,28810.666666666668,8,4,8,8_1,8_1,8_0_0 +443,0,60.0,4,0.0,4,400,5,0,31,1.0,0.0,0.0,0.0,0.0,0.0,17358.92,0,10,1,1056,201700443,,,,,1.0,3.0,4.0,1.0,2.0,1.3,3275.4715048198905,0.0,0.0,0.0,0.0,1580.0,0,4,5,93.0,0,0.0,2,9,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0.0,0.0,0.0,1215.3846153846152,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +444,2,71.0,4,0.0,1,112,5,77,72,5.0,0.0,1276.8922139983647,1211.3367886130059,0.0,0.0,28862.296322376296,50,50,1,10562,201700444,,,300.0,,0.0,0.0,5.0,0.0,2.0,1.5,1807.6107544296099,0.0,900.0,0.0,0.0,30850.0,5,5,2,180.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2488.2290026113706,0.08621036160183491,0.08065572131641395,20566.666666666668,5,3,5,5_1,5_0,5_1_0 +445,2,60.0,3,0.0,6,112,2,0,54,6.0,1903.7472109666587,0.0,807.5578590753372,0.0,0.0,23644.2,0,50,1,10563,201700445,,,250.0,,1.0,2.0,5.0,0.0,1.0,1.0,2102.2863900113316,0.0,600.0,0.0,0.0,26358.0,0,1,1,104.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2711.305070041996,0.11467104279451179,0.10286459784664981,26358.0,7,4,7,7_1,7_0,7_0_0 +446,2,31.0,2,0.0,1,111,2,53,46,8.0,0.0,0.0,1106.3542669332119,0.0,962.5111364715133,71769.00094839504,31,20,1,10564,201700446,,,468.0,,2.0,0.0,4.0,1.0,3.0,1.8,1856.5839702155379,0.0,822.0,544.0,0.0,45341.0,1,1,2,90.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2068.865403404725,0.02882672708363778,0.04562902016728182,25189.444444444445,7,4,7,7_1,7_2,7_1_0 +447,2,37.0,5,0.0,5,111,1,0,37,2.0,0.0,0.0,3634.010365839017,0.0,0.0,42987.28,0,20,2,10566,201700447,,,147.0,,1.0,0.0,1.0,0.0,1.0,1.0,4532.503702065465,0.0,2700.0,0.0,0.0,11973.0,0,4,2,45.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,3634.010365839017,0.08453687616055301,0.3035171106522189,11973.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +448,1,27.0,3,324.0,1,111,2,0,55,1.0,0.0,0.0,646.0462872602698,0.0,1503.9236507367395,8962.539999999999,0,71,2,10567,201700448,,,,,1.0,0.0,4.0,2.0,3.0,1.6,1720.967988975323,0.0,480.0,850.0,0.0,14348.0,0,4,3,74.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2149.9699379970093,0.23988399917847056,0.14984457332011494,8967.5,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +449,2,54.0,2,0.0,9,111,2,0,37,10.0,0.0,0.0,79.40985614240816,44.23304855108057,0.0,45839.3858467513,0,31,2,10569,201700449,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2102.4832455058986,0.0,59.0,0.0,0.0,50130.0,0,1,2,68.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,123.64290469348873,0.0026973071826670533,0.0024664453359961847,50130.0,10,5,10,10_0,10_3,10_0_0 +450,2,59.0,3,0.0,6,112,1,56,77,5.0,0.0,603.7479490100964,531.642257224597,3184.779495677801,0.0,19720.559999999998,71,70,1,1057,201700450,,,310.0,,1.0,2.0,5.0,0.0,2.0,1.5,5161.822895095133,0.0,395.0,0.0,0.0,28834.0,1,4,1,140.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4320.169701912495,0.21906932165782794,0.1498290109562494,19222.666666666668,5,3,5,5_1,5_0,5_0_0 +451,2,67.0,3,0.0,7,111,2,0,75,8.0,0.0,0.0,520.8748191035925,0.0,778.5016544990181,28905.18,0,20,2,10571,201700451,,,,392.0,0.0,0.0,2.0,0.0,1.0,1.0,3013.4124545202803,0.0,387.0,440.0,0.0,32338.0,0,5,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1299.3764736026105,0.04495306632245883,0.04018110191114511,32338.0,9,5,9,9_0,9_4,9_0_0 +452,2,35.0,3,0.0,9,111,2,56,63,4.0,0.0,0.0,831.7845948475973,0.0,1424.3041633447945,35825.76,43,71,1,10572,201700452,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.1,3129.2520090200264,0.0,618.0,805.0,0.0,38660.0,1,1,2,110.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2256.0887581923917,0.0629739259737237,0.05835718464025845,18409.52380952381,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +453,2,60.0,1,0.0,5,111,2,0,62,3.0,0.0,0.0,2455.6424723678474,0.0,3221.6570377959997,68297.50842580726,0,50,2,10574,201700453,,,120.0,,1.0,0.0,3.0,0.0,1.0,1.0,2100.1350749364387,3105.3380108087604,540.0,0.0,0.0,16389.0,0,5,1,55.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,5677.299510163847,0.0831260120759924,0.34640914699883135,16389.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +454,1,25.0,3,116.0,99,111,1,0,46,2.0,0.0,0.0,1386.3076580793288,0.0,0.0,15896.710537796414,0,43,2,10576,201700454,730.0,730.0,,244.0,1.0,0.0,3.0,1.0,2.0,1.3,2334.620831190272,0.0,1030.0,0.0,0.0,16827.0,0,1,3,57.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1386.3076580793288,0.08720720269663396,0.08238590705885356,12943.846153846154,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +455,2,44.0,4,0.0,99,120,2,78,56,1.0,0.0,2748.094112735611,1437.4529891541001,0.0,0.0,18189.740508190076,71,71,1,10577,201700455,,,,,1.0,0.0,4.0,3.0,6.0,2.9,3580.815825893806,0.0,1068.0,0.0,0.0,22520.0,7,4,1,100.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4185.5471018897115,0.23010482749905836,0.1858591075439481,7765.517241379311,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +456,1,23.0,3,380.0,2,111,6,0,37,5.0,0.0,0.0,403.7789295376686,0.0,0.0,7776.170875301628,0,30,2,10578,201700456,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4314.451980905668,0.0,300.0,0.0,0.0,18767.0,0,2,3,22.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,403.7789295376686,0.05192516162680215,0.021515368974139106,18767.0,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +457,1,35.0,4,230.0,2,300,1,0,64,1.0,0.0,0.0,1345.929765125562,0.0,1061.5931652259337,13370.76,0,44,2,1058,201700457,,,800.0,,1.0,0.0,2.0,0.0,1.0,1.0,3433.4825231410864,0.0,1000.0,600.0,0.0,8490.0,0,4,3,47.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,2407.5229303514957,0.18005879473952832,0.28357160545954013,8490.0,1,1,1_1,1_0_1,1_0_1,1_0_1_1 +458,1,26.0,1,23.0,4,120,6,85,62,4.0,1491.2686485905492,0.0,1534.3599322431405,0.0,0.0,40818.060000000005,50,50,1,10580,201700458,,,400.0,,1.0,0.0,5.0,2.0,4.0,2.1,3190.8870683927476,0.0,1140.0,0.0,0.0,34186.0,6,1,3,95.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,3025.6285808336897,0.07412475215220149,0.08850490203105628,16279.047619047618,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +459,2,64.0,3,0.0,9,111,6,0,75,7.0,0.0,0.0,1006.7554643139204,0.0,0.0,20315.8571719182,0,33,2,10582,201700459,,,216.0,550.0,0.0,1.0,2.0,0.0,1.0,1.0,3776.5416841130163,0.0,748.0,0.0,0.0,25976.0,0,5,3,41.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1006.7554643139204,0.0495551556498201,0.03875713983345859,25976.0,7,4,7,7_0,7_3,7_0_0 +460,2,33.0,2,0.0,1,111,2,68,62,3.0,0.0,0.0,687.5637645822587,0.0,1281.260341975406,43978.68616872865,50,71,2,10583,201700460,,,732.0,,3.0,1.0,5.0,2.0,4.0,2.5,2194.7268730679025,1235.0,0.0,0.0,0.0,35996.0,1,1,3,88.0,4,4.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1968.8241065576647,0.0447676881251994,0.05469563580835828,14398.4,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +461,2,59.0,1,0.0,5,111,2,77,53,9.0,0.0,0.0,629.895130078763,0.0,1438.4587388811403,36921.842382591494,50,50,1,10586,201700461,,,260.0,,1.0,0.0,4.0,0.0,2.0,1.5,1725.015669167612,0.0,468.0,813.0,0.0,55344.0,5,1,3,80.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2068.3538689599036,0.05601979033243272,0.03737268482509221,36896.0,9,5,9,9_1,9_3,9_0_0 +462,2,64.0,2,0.0,4,111,4,77,74,10.0,0.0,0.0,1632.6128050973066,0.0,3363.4810118241667,94467.38584675129,70,50,1,10588,201700462,,,833.0,,0.0,2.0,7.0,0.0,2.0,1.5,2012.1917950977652,0.0,1213.0,1901.0,0.0,99654.0,5,5,1,214.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4996.093816921473,0.052886970165834095,0.05013440320430162,66436.0,10,5,10,10_1,10_4,10_0_1 +463,0,77.0,4,0.0,1,120,5,0,78,2.0,0.0,1526.718951519784,173.6249397011975,49.54101437721024,0.0,19253.32,0,71,1,10590,201700463,,,112.0,,0.0,5.0,3.0,0.0,1.0,1.0,3558.1798679902636,0.0,129.0,0.0,0.0,11640.0,0,5,5,50.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1749.8849055981918,0.09088743684716152,0.15033375477647695,11640.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +464,1,30.0,3,229.0,1,211,6,62,54,7.0,0.0,0.0,1345.929765125562,46.0023704931238,0.0,30858.72,50,50,1,10591,201700464,,,460.0,120.0,2.0,0.0,3.0,2.0,4.0,2.1,859.5121535330993,0.0,1000.0,0.0,0.0,47848.0,1,1,3,99.0,1,3.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1391.9321356186858,0.04510660635368822,0.0290907067300344,22784.761904761905,6,3,6,6_1,6_1,6_1_0 +465,2,28.0,3,0.0,5,112,2,56,63,5.0,0.0,0.0,969.0694308904046,0.0,2547.823596542241,24984.760000000002,50,50,1,10592,201700465,,,460.0,,2.0,0.0,5.0,0.0,2.0,1.5,4021.6409113097016,0.0,720.0,1440.0,0.0,29620.0,1,1,2,150.0,6,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3516.893027432646,0.1407615293255827,0.11873372813749648,19746.666666666668,5,3,5,5_1,5_0,5_0_0 +466,2,63.0,2,0.0,1,400,4,0,37,4.0,0.0,0.0,1615.1157181506744,0.0,123.8525359430256,16318.019999999999,0,31,1,10593,201700466,,,60.0,,1.0,2.0,6.0,0.0,1.0,1.0,1465.7934602669973,0.0,1200.0,70.0,0.0,16027.0,0,1,1,104.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1738.9682540937001,0.10656735646197886,0.10850241805039622,16027.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +467,2,55.0,3,0.0,4,111,1,0,45,8.0,0.0,0.0,386.28184259103625,0.0,0.0,40435.3,0,42,2,10594,201700467,,,,,1.0,2.0,4.0,0.0,1.0,1.0,1814.612236008768,0.0,287.0,0.0,0.0,29478.0,0,1,2,85.0,7,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,386.28184259103625,0.009553084621383698,0.013104072277326692,29478.0,8,4,8,8_0,8_2,8_0_1 +468,1,45.0,4,148.0,1,111,2,85,56,2.0,0.0,0.0,1273.8023428050265,0.0,2373.7033703965417,23407.04,30,31,1,10595,201700468,,,564.0,,1.0,0.0,4.0,1.0,3.0,1.8,1598.6858313482287,2288.0,0.0,0.0,0.0,23106.0,6,1,3,90.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,3647.505713201568,0.1558294305132801,0.15785967771148482,12836.666666666666,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +469,2,28.0,3,0.0,5,300,2,53,47,6.0,0.0,346.98157989085996,2310.96140672059,0.0,0.0,29787.4,50,43,1,10597,201700469,,,376.0,,2.0,2.0,4.0,2.0,4.0,2.1,3536.7253992044007,0.0,1717.0,0.0,0.0,42434.0,1,1,2,110.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2657.9429866114497,0.08923044598089963,0.06263710672129541,20206.666666666664,5,3,5,5_1,5_0,5_0_0 +470,2,48.0,3,0.0,9,111,5,64,63,6.0,63.458240365555284,551.0067488666856,234.19177913184777,127.39117982711205,0.0,39720.78175060326,71,71,1,10598,201700470,,,400.0,,4.0,1.0,5.0,2.0,4.0,2.5,1834.3744568129923,0.0,174.0,0.0,0.0,53349.0,1,1,2,120.0,9,7.0,4,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,976.0479481912007,0.024572727554043595,0.018295524718199042,21339.6,6,3,6,6_1,6_3,6_0_0 +471,1,35.0,3,350.0,2,111,2,85,63,1.0,0.0,0.0,1076.7438121004495,0.0,1769.3219420432229,9722.58251118855,71,71,2,10599,201700471,,,,200.0,1.0,0.0,3.0,3.0,5.0,2.4,3227.783557465468,0.0,800.0,1000.0,0.0,17901.0,6,4,3,60.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2846.065754143672,0.29272734387890026,0.15898920474519146,7458.75,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +472,2,44.0,3,0.0,9,111,2,65,62,1.0,0.0,0.0,54.55971573203348,70.77287768172891,101.67086114460712,33291.71087530162,71,50,2,106,201700472,,,88.0,,2.0,0.0,4.0,4.0,6.0,2.9,2711.8576827987695,98.0,0.0,0.0,0.0,19470.0,4,1,3,87.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,227.00345455836953,0.006818617865829729,0.011659139936228533,6713.793103448276,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +473,2,29.0,4,0.0,1,300,6,13,85,9.0,0.0,832.755791738064,619.1276919577585,318.4779495677801,0.0,20862.009042892852,12,12,5,1060,201700473,,,,550.0,1.0,0.0,3.0,0.0,2.0,1.5,4001.0895504868536,0.0,460.0,0.0,0.0,54620.0,4,4,3,90.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1770.3614332636027,0.08486054385383938,0.032412329426283464,36413.333333333336,9,5,9,9_1,9_0,9_1_0 +474,2,57.0,2,0.0,7,111,1,52,52,7.0,0.0,0.0,757.7584577656913,0.0,237.08914023379188,45580.9716935026,43,42,2,10602,201700474,,,460.0,459.0,2.0,2.0,3.0,1.0,3.0,2.0,1898.3364242359935,0.0,563.0,134.0,0.0,52437.0,1,1,3,68.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,994.8475979994832,0.021825940980132616,0.018972244750834016,26218.5,7,4,7,7_0,7_2,7_0_0 +475,2,53.0,3,0.0,7,211,4,0,47,5.0,0.0,0.0,1574.7378251969076,0.0,0.0,24056.36,0,50,1,10603,201700475,,,180.0,,1.0,4.0,5.0,0.0,1.0,1.0,3046.1758109462694,0.0,1170.0,0.0,0.0,19150.0,0,1,3,70.0,2,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1574.7378251969076,0.06546035332015765,0.08223174021915966,19150.0,5,3,5,5_1,5_1,5_0_0 +476,2,61.0,3,0.0,6,111,5,0,75,4.0,0.0,249.82673752141918,942.1508355878933,0.0,0.0,20249.821349499143,0,50,1,10604,201700476,,,540.0,,0.0,2.0,4.0,0.0,1.0,1.0,3931.8517374447756,0.0,700.0,0.0,0.0,19380.0,0,5,1,94.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1191.9775731093125,0.058863609339387814,0.0615055507280347,19380.0,5,3,5,5_1,5_4,5_0_0 +477,2,83.0,2,0.0,6,111,2,75,75,9.0,0.0,0.0,3470.496222713196,0.0,430.17150207794015,38937.46056486444,33,50,1,10608,201700477,,,490.0,,1.0,1.0,4.0,1.0,3.0,2.0,2363.7562151898933,414.64001316639025,2407.0,0.0,0.0,61685.0,5,5,1,96.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3900.667724791136,0.10017776373200202,0.06323527153750727,30842.5,8,4,8,8_1,8_3,8_0_0 +478,1,56.0,2,36.0,7,111,2,42,38,10.0,0.0,0.0,3162.331153563676,0.0,2506.9861182449204,56754.908030719635,20,30,2,10609,201700478,,,288.0,664.0,3.0,2.0,5.0,2.0,4.0,2.5,740.9900149750391,2416.4705287443503,1350.0,0.0,0.0,107161.0,1,1,3,110.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,5669.317271808596,0.09989122471557833,0.052904669346204275,42864.4,10,5,10,10_0,10_2,10_0_0 +479,1,45.0,3,155.0,5,111,1,0,67,1.0,0.0,0.0,484.5347154452023,0.0,0.0,6348.76,0,71,2,1061,201700479,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2806.1607872994487,0.0,360.0,0.0,0.0,10320.0,0,4,3,60.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,484.5347154452023,0.0763195829493007,0.04695103831833356,10320.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +480,2,63.0,2,0.0,2,111,1,37,38,10.0,0.0,0.0,1967.781936541145,0.0,2337.620496068808,78142.7153429477,42,41,2,10610,201700480,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2909.177417181647,2253.219910165918,530.0,0.0,0.0,63062.0,1,1,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4305.4024326099525,0.055096657618239654,0.06827253231121679,42041.333333333336,10,5,10,10_0,10_4,10_0_1 +481,2,75.0,1,0.0,2,111,2,74,74,10.0,1310.4126635487166,83.27557917380639,771.1716792667053,0.0,736.1551469056444,88733.95416475863,30,30,1,10612,201700481,,,320.0,,0.0,3.0,8.0,0.0,2.0,1.5,1738.543683713299,539.0320171163073,350.0,100.0,0.0,84741.0,5,5,1,150.0,7,6.0,3,7,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2901.015068894873,0.03269340464089262,0.034233901758238316,56494.0,10,5,10,10_1,10_2,10_0_1 +482,2,37.0,3,0.0,3,111,4,0,43,4.0,0.0,0.0,0.0,0.0,0.0,32518.76,0,33,2,10614,201700482,,,,,1.0,0.0,2.0,2.0,3.0,1.6,851.8712387341592,0.0,0.0,0.0,0.0,27326.0,0,1,2,21.0,8,6.0,2,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,17078.75,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +483,2,27.0,3,0.0,9,111,2,54,63,5.0,0.0,0.0,1615.1157181506744,53.079658261296686,0.0,29891.64,31,71,1,10615,201700483,,,,,2.0,0.0,3.0,1.0,3.0,1.8,1298.6153061669336,0.0,1200.0,0.0,0.0,34328.0,1,1,3,60.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1668.1953764119712,0.05580809137310536,0.048595763703448244,19071.11111111111,5,3,5,5_1,5_2,5_0_0 +484,2,28.0,5,0.0,8,112,4,63,56,6.0,0.0,0.0,1179.0344742499922,0.0,0.0,32853.09087530163,50,41,2,10616,201700484,,,360.0,,2.0,1.0,4.0,1.0,3.0,1.8,1569.2107359887789,0.0,876.0,0.0,0.0,37230.0,1,1,3,93.0,8,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1179.0344742499922,0.035888083673015055,0.03166893565001322,20683.333333333332,5,3,5,5_0,5_1,5_0_0 +485,2,50.0,3,0.0,1,111,2,55,63,5.0,0.0,0.0,838.5142436732251,0.0,2544.2849526581545,57563.36,50,70,1,10618,201700485,,,613.0,,2.0,1.0,6.0,2.0,4.0,2.5,1746.4858673536544,0.0,623.0,1438.0,0.0,46158.0,1,1,2,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3382.79919633138,0.05876653475980866,0.07328738672237488,18463.2,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +486,2,49.0,1,0.0,2,111,2,33,38,8.0,0.0,138.792631956344,1463.025654691486,0.0,1769.3219420432229,65582.94031599413,41,10,1,10619,201700486,,,,,2.0,0.0,4.0,3.0,5.0,3.0,1566.3392190751683,0.0,1087.0,1000.0,0.0,96954.0,1,1,1,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3371.1402286910525,0.05140270034323104,0.034770512085020244,32318.0,9,5,9,9_1,9_4,9_0_1 +487,1,32.0,3,220.0,9,111,1,0,47,7.0,0.0,0.0,306.2024862512083,0.0,570.6017717299379,29807.280000000002,0,31,2,1062,201700487,,,,140.0,1.0,0.0,3.0,1.0,2.0,1.3,936.6084785072811,550.0,0.0,0.0,0.0,29963.0,0,1,3,67.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,876.8042579811463,0.029415775541449814,0.029262899508765688,23048.46153846154,6,3,6,6_0,6_2,6_0_0 +488,2,74.0,3,0.0,4,111,2,77,75,6.0,774.1905324597745,0.0,1009.4473238441715,0.0,0.0,24602.26238259149,71,50,1,10621,201700488,,,370.0,,0.0,4.0,6.0,0.0,2.0,1.5,2040.8054153519981,0.0,750.0,0.0,0.0,31060.0,5,5,1,160.0,6,4.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1783.6378563039461,0.07249893642163757,0.05742555879922557,20706.666666666668,5,3,5,5_1,5_2,5_0_1 +489,2,81.0,3,0.0,1,120,2,0,71,2.0,2855.620816449988,0.0,672.964882562781,159.23897478389006,0.0,15976.210875301627,0,70,1,10622,201700489,,,330.0,,0.0,2.0,4.0,0.0,1.0,1.0,1931.8374397469104,0.0,500.0,0.0,0.0,12807.0,0,5,1,80.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3687.824673796659,0.23083224818331863,0.28795382789073626,12807.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +490,2,77.0,2,0.0,1,120,2,71,71,4.0,0.0,0.0,0.0,0.0,0.0,20881.529942298606,31,12,1,10623,201700490,,,,,0.0,2.0,9.0,0.0,2.0,1.5,1685.6702078424669,0.0,0.0,0.0,0.0,31573.0,5,5,1,200.0,0,0.0,3,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,21048.666666666668,5,3,5,5_1,5_0,5_1_0 +491,2,52.0,2,0.0,1,212,2,0,43,8.0,2379.684013708323,0.0,1305.5518721717951,0.0,0.0,26673.38,0,33,1,10624,201700491,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2856.771358195047,0.0,970.0,0.0,0.0,71296.0,0,1,1,150.0,4,0.0,5,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3685.235885880118,0.1381615635468815,0.05168923762735803,28518.4,8,4,8,8_1,8_0,8_1_0 +492,2,30.0,2,0.0,6,111,2,43,48,8.0,0.0,0.0,1615.1157181506744,0.0,0.0,34479.596322376296,41,43,1,10626,201700492,,,120.0,,2.0,0.0,3.0,0.0,2.0,1.5,3357.365420985412,0.0,1200.0,0.0,0.0,41775.0,1,1,2,110.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.046842651609076684,0.0386622553716499,27850.0,8,4,8,8_1,8_2,8_0_0 +493,2,49.0,2,0.0,5,112,2,63,52,6.0,0.0,138.792631956344,654.1218658510231,0.0,711.2674207013756,33483.259999999995,44,31,1,10627,201700493,,,,,2.0,0.0,6.0,2.0,4.0,2.5,1840.9239290625594,0.0,486.0,402.0,0.0,53895.0,1,1,1,130.0,7,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1504.1819185087427,0.04492340108187622,0.027909489164277625,21558.0,6,3,6,6_1,6_1,6_0_0 +494,1,30.0,2,380.0,5,111,1,0,56,4.0,0.0,0.0,353.9795282280228,0.0,0.0,12027.707849749777,0,50,2,10628,201700494,,,,,1.0,0.0,3.0,2.0,3.0,1.6,706.0240289373702,0.0,263.0,0.0,0.0,25474.0,0,1,3,64.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,353.9795282280228,0.02943033973305121,0.013895718309963993,15921.25,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +495,2,71.0,2,0.0,4,112,2,0,74,9.0,0.0,0.0,1299.8577813409308,0.0,2422.2571217844074,55974.17216270029,0,30,1,10632,201700495,,,106.0,,0.0,3.0,5.0,0.0,1.0,1.0,2539.242985817647,2334.800701621314,0.0,0.0,0.0,41903.0,0,5,1,100.0,10,2.0,1,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3722.114903125338,0.06649700673207377,0.08882693132055791,41903.0,10,5,10,10_1,10_1,10_0_1 +496,1,24.0,3,202.0,99,111,2,0,52,1.0,0.0,0.0,457.61612014269105,0.0,0.0,10679.779999999999,0,50,2,10633,201700496,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3996.5783419694176,0.0,340.0,0.0,0.0,2498.0,0,4,3,30.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,457.61612014269105,0.042848833978105454,0.18319300245904366,2498.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +497,1,28.0,4,225.0,1,120,4,52,21,6.0,0.0,0.0,2166.946921852155,159.23897478389006,0.0,62452.2,50,50,1,10634,201700497,,,240.0,,2.0,0.0,4.0,3.0,5.0,2.4,2437.235200033867,0.0,1610.0,0.0,0.0,52456.0,4,1,2,129.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,2326.185896636045,0.03724746120450593,0.04434546851906446,21856.666666666668,6,3,6,6_1,6_1,6_1_0 +498,2,66.0,3,0.0,1,400,5,0,77,5.0,0.0,949.3416025813929,791.4067018938305,477.7169243516702,0.0,10954.020513464173,0,50,1,10635,201700498,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2170.5518353300636,0.0,588.0,0.0,0.0,18750.0,0,5,1,100.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2218.4652288268935,0.20252520306129235,0.11831814553743432,18750.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +499,2,21.0,4,0.0,99,112,2,0,55,2.0,0.0,0.0,471.07541779394666,0.0,0.0,18348.58,0,50,2,10636,201700499,,,,560.0,2.0,0.0,1.0,0.0,2.0,1.5,6500.163121790226,0.0,350.0,0.0,0.0,16829.0,0,4,3,29.0,10,4.0,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,471.07541779394666,0.025673671629845286,0.027991884116343613,11219.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +500,0,53.0,3,0.0,1,120,2,65,47,10.0,1538.8623288647157,0.0,995.9880261929159,0.0,0.0,31515.237428577162,50,50,1,10638,201700500,,,500.0,,2.0,2.0,5.0,0.0,2.0,1.5,1709.663985831048,0.0,740.0,0.0,0.0,58414.0,1,1,5,110.0,0,3.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2534.8503550576315,0.08043253238381438,0.04339456902553551,38942.666666666664,9,5,9,9_1,9_1,9_1_0 +502,1,20.0,2,177.0,1,111,2,0,84,1.0,0.0,0.0,484.5347154452023,0.0,0.0,13154.680000000002,0,41,2,10640,201700502,,,,203.0,0.0,0.0,1.0,0.0,1.0,1.0,3262.4387122488106,0.0,360.0,0.0,0.0,9344.0,0,3,3,18.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,484.5347154452023,0.036833637568166024,0.05185517074541977,9344.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +503,2,25.0,3,0.0,99,112,2,52,62,6.0,0.0,0.0,1243.6391029760193,0.0,1104.056891834971,30598.16,31,31,1,10641,201700503,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2464.789287693827,0.0,924.0,624.0,0.0,34979.0,1,1,3,67.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2347.6959948109907,0.07672670496562507,0.06711729880245264,23319.333333333332,6,3,6,6_1,6_0,6_0_0 +504,2,63.0,3,0.0,7,111,5,77,75,8.0,0.0,416.377895869032,302.83419715325147,0.0,1353.5312856630655,56723.32000000001,50,50,1,10642,201700504,,,135.0,,0.0,2.0,6.0,0.0,2.0,1.5,2711.865921140516,0.0,225.0,765.0,0.0,44113.0,5,5,1,119.0,4,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2072.743378685349,0.036541291636056364,0.04698713256149772,29408.666666666668,8,4,8,8_1,8_1,8_0_0 +505,2,53.0,2,0.0,4,111,4,48,35,7.0,0.0,0.0,2985.2722190484965,0.0,132.69914565324171,56114.01,31,31,1,10643,201700505,,,343.0,,2.0,0.0,6.0,2.0,4.0,2.1,1648.6276882239003,0.0,2218.0,75.0,0.0,50920.0,1,1,2,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3117.9713647017384,0.05556493582799978,0.061232744789900595,24247.619047619046,7,4,7,7_1,7_3,7_0_1 +506,2,65.0,3,0.0,1,111,1,68,78,5.0,0.0,0.0,672.964882562781,0.0,1415.4575536345783,27257.440000000002,71,50,2,10645,201700506,,,,480.0,1.0,0.0,3.0,0.0,2.0,1.5,1926.2155975094354,0.0,500.0,800.0,0.0,31100.0,1,5,3,50.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2088.4224361973593,0.07661843651485095,0.06715184682306621,20733.333333333332,5,3,5,5_0,5_3,5_1_0 +507,2,41.0,2,0.0,1,111,5,0,38,5.0,0.0,416.377895869032,484.5347154452023,0.0,318.4779495677801,15479.339999999998,0,30,2,10646,201700507,,,20.0,,1.0,0.0,1.0,0.0,1.0,1.0,5088.358085935655,0.0,360.0,180.0,0.0,21580.0,0,1,1,38.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1219.3905608820144,0.07877535869630194,0.05650558669518139,21580.0,6,3,6,6_0,6_3,6_1_0 +508,2,47.0,2,0.0,6,112,2,67,65,9.0,145.16072483620772,0.0,578.7497990039916,0.0,2123.1863304518674,33717.28,50,50,2,10647,201700508,,,250.0,480.0,2.0,0.0,3.0,0.0,2.0,1.5,1707.152735598044,0.0,430.0,1200.0,0.0,54190.0,1,1,3,80.0,9,3.0,3,4,1,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2847.096854292067,0.08444028860845439,0.05253915582749708,36126.666666666664,9,5,9,9_0,9_1,9_0_0 +509,2,45.0,2,0.0,7,111,2,45,33,8.0,1226.330495064356,0.0,1236.9094541503914,0.0,0.0,44649.49999999999,31,20,1,10648,201700509,,,603.0,,2.0,0.0,5.0,2.0,4.0,2.3,1767.0421990291995,0.0,919.0,0.0,0.0,69908.0,1,1,2,132.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2463.2399492147474,0.05516836580957789,0.03523545158229026,30394.782608695656,8,4,8,8_1,8_3,8_0_0 +510,2,29.0,3,0.0,3,111,2,0,63,7.0,0.0,0.0,344.55801987214386,0.0,0.0,25160.75,0,43,2,10649,201700510,,,,429.0,1.0,0.0,2.0,0.0,1.0,1.0,3745.5932929939413,0.0,256.0,0.0,0.0,25931.0,0,1,3,44.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,344.55801987214386,0.01369426666026028,0.013287494499716319,25931.0,7,4,7,7_0,7_3,7_0_1 +511,2,37.0,2,0.0,9,112,2,43,63,6.0,0.0,205.4130952953891,592.2090966552472,92.0047409862476,0.0,22504.7,43,50,1,10650,201700511,,,400.0,,2.0,0.0,6.0,1.0,3.0,1.8,2475.894722642696,0.0,440.0,0.0,0.0,40640.0,1,1,2,133.0,9,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,889.6269329368839,0.039530717269587415,0.0218904264994312,22577.777777777777,6,3,6,6_1,6_0,6_0_0 +512,2,42.0,3,0.0,9,111,4,85,38,5.0,0.0,0.0,1453.6041463356069,0.0,0.0,30901.553696501072,20,20,1,10651,201700512,,,700.0,,1.0,0.0,4.0,1.0,3.0,2.0,1500.9703342785988,0.0,1080.0,0.0,0.0,38884.0,6,1,2,95.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1453.6041463356069,0.047039840152121405,0.03738309192304307,19442.0,5,3,5,5_1,5_2,5_0_0 +513,1,50.0,3,314.0,7,111,1,56,53,3.0,0.0,0.0,710.6509159862967,0.0,0.0,53836.52775967135,71,30,2,10652,201700513,,,,,2.0,0.0,5.0,4.0,6.0,2.9,1614.0605514203198,0.0,528.0,0.0,0.0,42969.0,1,1,1,96.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,710.6509159862967,0.013200162520857102,0.016538688728764846,14816.896551724138,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +514,2,68.0,2,0.0,6,111,2,75,72,10.0,0.0,111.0341055650752,1016.1769726697993,0.0,1583.5431381286844,80473.66556796596,50,41,1,10653,201700514,,,460.0,,0.0,2.0,4.0,0.0,2.0,1.5,2080.8931495723464,0.0,755.0,895.0,0.0,62949.0,5,5,2,130.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2710.754216363559,0.03368498498523255,0.043062704989174715,41966.0,10,5,10,10_1,10_2,10_0_0 +515,2,31.0,3,0.0,1,111,2,55,43,5.0,0.0,0.0,532.9881869897225,0.0,2123.1863304518674,39821.1363223763,30,30,2,10654,201700515,,,,743.0,2.0,0.0,3.0,1.0,3.0,1.8,2558.29831448276,0.0,396.0,1200.0,0.0,33419.0,1,1,3,80.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2656.17451744159,0.06670262987821952,0.07948096943180795,18566.11111111111,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +516,2,63.0,2,0.0,6,112,5,77,77,6.0,0.0,346.98157989085996,1001.3717452534181,0.0,244.16642800196476,20475.539999999997,50,60,1,10656,201700516,,,380.0,,0.0,1.0,3.0,0.0,2.0,1.5,3319.0755760582133,0.0,744.0,138.0,0.0,32256.0,5,5,1,80.0,8,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1592.519753146243,0.07777669126900894,0.049371272108948504,21504.0,6,3,6,6_1,6_1,6_0_0 +517,2,84.0,2,0.0,2,111,2,72,72,3.0,0.0,0.0,860.7073522624875,0.0,1603.9097074445165,22265.440000000002,70,50,1,10657,201700517,,,,,0.0,1.0,4.0,0.0,2.0,1.5,3526.676483838534,1546.0,0.0,0.0,0.0,23804.0,5,5,1,90.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2464.617059707004,0.11069249292657157,0.1035379373091499,15869.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +518,2,69.0,3,0.0,1,112,5,75,74,8.0,0.0,1457.3226355416118,988.5162982593625,0.0,838.8344290519833,29901.010299155576,41,33,1,1066,201700518,,,160.0,,0.0,0.0,4.0,0.0,2.0,1.5,1592.4023187189807,808.548025674461,400.0,0.0,0.0,43577.0,5,5,1,70.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3284.6733628529573,0.10985158461169851,0.07537630775071615,29051.333333333332,8,4,8,8_1,8_0,8_1_0 +519,2,75.0,4,0.0,1,211,2,78,78,4.0,2119.5052282095467,0.0,366.09289611415284,230.01185246561897,0.0,20687.950875301627,70,50,1,10660,201700519,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2611.9398440437876,0.0,272.0,0.0,0.0,24410.0,5,5,1,88.0,1,3.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2715.6099767893184,0.13126529510621363,0.11124989663209006,16273.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +520,2,44.0,3,0.0,7,112,5,85,54,1.0,0.0,693.9631597817199,1749.7086946632305,56.61830214538313,0.0,63646.299999999996,50,43,1,10661,201700520,,,240.0,,1.0,0.0,4.0,2.0,4.0,2.5,3520.4146902050265,0.0,1300.0,0.0,0.0,24618.0,7,1,1,100.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2500.2901565903335,0.039284139951424255,0.10156349648998024,9847.2,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +521,2,46.0,2,0.0,9,111,2,46,37,7.0,0.0,0.0,681.0404611535344,0.0,2140.8795498723,67657.34,31,42,1,10662,201700521,,,392.0,,2.0,0.0,7.0,2.0,4.0,2.5,1734.6377265497265,0.0,506.0,1210.0,0.0,64988.0,1,1,2,168.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2821.9200110258344,0.04170900025076118,0.04342217041647434,25995.2,7,4,7,7_1,7_2,7_0_0 +522,2,38.0,3,0.0,8,112,2,53,53,7.0,1043.8880540133846,0.0,1006.7554643139204,127.39117982711205,0.0,37399.0,42,42,1,10663,201700522,,,288.0,,2.0,0.0,5.0,2.0,4.0,2.1,3354.4352621601747,0.0,748.0,0.0,0.0,54227.0,1,1,2,114.0,9,1.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2178.034698154417,0.05823777903565382,0.04016513357099631,25822.38095238095,7,4,7,7_1,7_1,7_0_0 +523,2,61.0,2,0.0,2,111,4,72,72,7.0,0.0,0.0,942.1508355878933,0.0,212.31863304518674,28803.659999999996,50,71,2,10665,201700523,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2636.6872398085707,0.0,700.0,120.0,0.0,33877.0,5,5,1,72.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1154.46946863308,0.040080651855808606,0.03407826751580954,22584.666666666668,6,3,6,6_0,6_3,6_0_1 +524,2,89.0,4,0.0,1,112,2,0,77,3.0,1218.3982150186616,0.0,605.6683943065029,63.69558991355603,0.0,25042.4,0,71,1,10666,201700524,,,140.0,,0.0,4.0,4.0,0.0,1.0,1.0,2857.6651541232745,0.0,450.0,0.0,0.0,15423.0,0,5,1,60.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1887.7621992387205,0.07538263901378145,0.12239915705366794,15423.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +525,1,55.0,4,256.0,99,300,6,0,81,2.0,0.0,0.0,1076.7438121004495,0.0,318.4779495677801,5309.0,0,50,1,10667,201700525,,,360.0,,1.0,4.0,5.0,0.0,1.0,1.0,1433.9643837927792,0.0,800.0,180.0,0.0,12132.0,0,4,3,80.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1395.2217616682296,0.2628031195457204,0.11500344227400508,12132.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +526,2,33.0,2,0.0,2,111,1,0,67,2.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,9189.439999999999,0,50,2,10668,201700526,,,,300.0,1.0,0.0,2.0,0.0,1.0,1.0,4033.7242840797053,500.0,0.0,0.0,0.0,11700.0,0,1,3,43.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,797.0947799828602,0.08674029973348325,0.06812775897289404,11700.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +527,2,35.0,3,0.0,9,111,4,0,48,4.0,0.0,0.0,1017.5229024349248,0.0,0.0,24818.125846751303,0,50,2,10669,201700527,,,336.0,446.0,1.0,1.0,2.0,1.0,2.0,1.3,4136.634806474414,0.0,756.0,0.0,0.0,23549.0,0,1,3,48.0,8,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1017.5229024349248,0.040999183770684226,0.0432087520673882,18114.615384615383,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +528,2,55.0,3,0.0,1,111,2,0,46,8.0,0.0,0.0,874.0689152989037,0.0,1628.8086938472775,77421.52681168898,0,31,2,1067,201700528,,,,,2.0,2.0,3.0,1.0,2.0,1.5,2252.0439316754764,1570.0,0.0,0.0,0.0,42867.0,0,1,2,68.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2502.8776091461814,0.03232792883604436,0.05838704852558335,28578.0,8,4,8,8_0,8_3,8_1_0 +529,2,60.0,4,0.0,6,111,6,78,56,6.0,126.91648073111057,0.0,1615.1157181506744,212.31863304518674,0.0,41730.59087530163,71,71,1,10670,201700529,,,400.0,,1.0,3.0,4.0,0.0,2.0,1.5,2356.639169021742,0.0,1200.0,0.0,0.0,32810.0,5,1,2,80.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1954.3508319269718,0.04683257032633248,0.05956570655065443,21873.333333333332,6,3,6,6_1,6_3,6_0_0 +530,2,76.0,3,0.0,2,111,2,0,78,6.0,0.0,0.0,89.07708690944243,0.0,165.99324268507286,15664.594661438778,0,50,1,10671,201700530,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2883.0825517081503,160.0,0.0,0.0,0.0,22920.0,0,5,1,60.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,255.07032959451527,0.016283238418062413,0.011128722931697874,22920.0,6,3,6,6_1,6_3,6_0_1 +531,1,49.0,5,276.0,1,111,4,0,52,2.0,0.0,0.0,672.964882562781,339.7098128722988,0.0,8980.026682786276,0,71,2,10672,201700531,,,,165.0,1.0,0.0,2.0,0.0,1.0,1.0,2447.270964751875,0.0,500.0,0.0,0.0,13092.0,0,1,3,38.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1012.6746954350798,0.1127696755485444,0.07735064890277114,13092.0,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +532,1,46.0,5,256.0,99,111,2,0,85,3.0,0.0,0.0,467.65470627457273,0.0,871.4645240966324,11895.46753821486,0,71,2,10674,201700532,,,203.0,22.0,0.0,2.0,3.0,0.0,1.0,1.0,3181.300332912007,840.0,0.0,0.0,0.0,14052.0,0,7,3,63.0,4,4.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1339.119230371205,0.1125739048145194,0.09529741178275014,14052.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +533,2,57.0,1,0.0,9,111,2,46,23,10.0,0.0,0.0,2144.0987625188886,0.0,860.3430041558803,42006.43774272366,33,50,1,10675,201700533,,,250.0,,2.0,3.0,6.0,0.0,2.0,1.5,1885.1630352191169,829.2800263327805,1250.0,0.0,0.0,96557.0,1,1,2,175.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3004.441766674769,0.07152336470604907,0.0311157323309006,64371.333333333336,10,5,10,10_1,10_3,10_0_0 +534,2,64.0,4,0.0,6,111,5,0,54,2.0,0.0,0.0,538.3719060502248,0.0,0.0,15646.039999999999,0,60,1,10677,201700534,,,400.0,,1.0,1.0,4.0,0.0,1.0,1.0,2007.1282728285476,0.0,400.0,0.0,0.0,12770.0,0,5,5,80.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,538.3719060502248,0.03440946757455719,0.04215911558733162,12770.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +535,2,44.0,1,0.0,1,300,5,0,63,9.0,0.0,138.792631956344,672.964882562781,141.54575536345783,0.0,23572.07087530163,0,50,1,10679,201700535,,,130.0,,1.0,0.0,5.0,0.0,1.0,1.0,2393.4239532830384,0.0,500.0,0.0,0.0,31208.0,0,1,1,162.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,953.3032698825828,0.04044206700911611,0.030546759480985092,31208.0,8,4,8,8_1,8_0,8_1_0 +536,2,62.0,3,0.0,2,112,2,54,77,8.0,0.0,693.9631597817199,1002.1172277312272,0.0,1867.4239802070697,43223.4,50,50,1,1068,201700536,,,600.0,,1.0,2.0,5.0,0.0,2.0,1.5,2869.89954566349,1800.0,0.0,0.0,0.0,46180.0,1,5,1,100.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3563.504367720017,0.08244386993434151,0.07716553416457378,30786.666666666668,8,4,8,8_1,8_2,8_0_1 +537,2,81.0,4,0.0,5,211,4,0,86,2.0,0.0,0.0,2153.487624200899,116.7752481748527,0.0,16390.86,0,70,1,10681,201700537,,,160.0,,0.0,3.0,6.0,0.0,1.0,1.0,2596.534321997755,0.0,1600.0,0.0,0.0,12710.0,0,5,1,88.0,1,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2270.2628723757516,0.1385078557425145,0.17862021025773026,12710.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +538,2,47.0,4,0.0,99,112,4,0,54,1.0,0.0,0.0,870.8165580362386,0.0,0.0,17929.38788728183,0,43,1,10682,201700538,,,260.0,,1.0,0.0,5.0,3.0,4.0,2.5,1802.1891181390224,0.0,647.0,0.0,0.0,15971.0,0,4,1,80.0,9,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,870.8165580362386,0.04856922966421794,0.05452486118816847,6388.4,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +539,2,77.0,3,0.0,1,300,2,78,78,3.0,0.0,0.0,1009.4473238441715,3992.156484270965,0.0,61083.7,70,71,1,10683,201700539,,,240.0,,0.0,1.0,5.0,0.0,2.0,1.5,2955.015041765047,0.0,750.0,0.0,0.0,25000.0,5,5,5,90.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5001.603808115136,0.08188115337013208,0.20006415232460545,16666.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +540,2,48.0,3,0.0,8,112,5,0,42,4.0,0.0,735.6009493686231,1345.929765125562,63.69558991355603,0.0,33478.770000000004,0,43,1,10684,201700540,,,850.0,,1.0,2.0,7.0,1.0,2.0,1.5,1861.3123855529025,0.0,1000.0,0.0,0.0,25175.0,0,1,1,116.0,8,2.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2145.2263044077413,0.06407721384052464,0.08521256422672259,16783.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +541,1,32.0,2,211.0,4,111,1,0,54,5.0,0.0,0.0,146.97719340058,0.0,273.8888504303702,9570.400315994119,0,31,2,10685,201700541,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2993.9913344516003,264.0,0.0,0.0,0.0,19735.0,0,1,3,30.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,420.8660438309502,0.04397580351237722,0.021325869968631884,19735.0,5,3,5,5_0,5_3,5_0_1 +542,1,32.0,4,36.0,5,111,1,63,55,3.0,0.0,0.0,34.99417389326461,0.0,99.08202875442048,36308.54000000001,50,44,2,10686,201700542,,,,,2.0,0.0,3.0,3.0,5.0,2.4,2414.1838129437806,0.0,26.0,56.0,0.0,34932.0,4,4,2,54.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,134.07620264768508,0.003692690552902569,0.0038382057324998593,14555.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +543,0,65.0,3,0.0,4,221,6,0,77,3.0,1134.3160465343008,0.0,722.7642838724267,212.31863304518674,0.0,18359.32,0,71,1,10687,201700543,,,460.0,,0.0,2.0,3.0,0.0,1.0,1.0,2114.398311435161,0.0,537.0,0.0,0.0,15011.0,0,5,5,60.0,1,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2069.3989634519144,0.11271653653032435,0.13785883441822092,15011.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +544,2,48.0,3,0.0,4,112,4,22,34,10.0,0.0,0.0,2199.2492362151684,0.0,0.0,34425.82950571886,41,30,1,10688,201700544,,,677.0,,2.0,0.0,4.0,0.0,2.0,1.5,2053.812556584008,0.0,1634.0,0.0,0.0,183689.0,1,1,1,86.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2199.2492362151684,0.06388369627665258,0.011972677929626533,122459.33333333333,10,5,10,10_1,10_1,10_0_1 +545,1,53.0,4,256.0,99,111,6,0,68,2.0,0.0,0.0,566.6364311178615,0.0,0.0,6484.282702675386,0,50,2,10689,201700545,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3736.3377733377597,0.0,421.0,0.0,0.0,10605.0,0,4,3,30.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,566.6364311178615,0.08738613923851128,0.053431063754630984,10605.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +546,2,44.0,3,0.0,5,111,2,0,33,4.0,0.0,0.0,269.1859530251124,0.0,619.262679715128,26872.860000000004,0,20,2,1069,201700546,,,250.0,,1.0,0.0,4.0,1.0,2.0,1.3,832.9469925082111,0.0,200.0,350.0,0.0,21841.0,0,1,2,120.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,888.4486327402403,0.0330611863694538,0.04067801990477727,16800.76923076923,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +547,1,39.0,4,327.0,5,111,1,0,56,1.0,0.0,0.0,530.2963274594714,0.0,0.0,14744.436722052928,0,71,2,10690,201700547,,,,,1.0,0.0,2.0,3.0,4.0,2.1,1311.3538452859605,0.0,394.0,0.0,0.0,13469.0,0,4,3,60.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,530.2963274594714,0.03596585867985848,0.03937161834282214,6413.809523809524,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +548,2,53.0,2,0.0,7,112,2,52,47,10.0,2062.392811880547,0.0,963.6857118299024,0.0,0.0,33973.700000000004,50,43,1,10691,201700548,,,416.0,,3.0,1.0,5.0,1.0,3.0,2.0,2454.126153435705,0.0,716.0,0.0,0.0,79368.0,1,1,1,130.0,9,1.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3026.078523710449,0.08907120872058236,0.03812718631829515,39684.0,9,5,9,9_1,9_1,9_0_0 +549,1,44.0,3,50.0,5,111,2,85,64,5.0,0.0,0.0,977.0642970379465,0.0,1820.7383807018928,80913.02,43,41,1,10695,201700549,,,,,2.0,0.0,4.0,4.0,6.0,3.1,1433.3516969676173,1755.0,0.0,0.0,0.0,56536.0,6,1,2,98.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2797.802677739839,0.034577904492254015,0.04948709986097069,18237.41935483871,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +550,2,25.0,2,0.0,99,111,1,0,43,3.0,0.0,0.0,396.39303674701875,0.0,738.6699299485741,50924.697808903074,0,30,2,10699,201700550,,,,,4.0,0.0,4.0,3.0,6.0,3.5,2369.4024625102297,712.0,0.0,0.0,0.0,57815.0,0,1,2,74.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1135.0629666955929,0.022289046681336456,0.01963267260564893,16518.571428571428,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +551,1,25.0,3,57.0,1,111,4,0,67,1.0,0.0,0.0,672.964882562781,0.0,0.0,11153.2,0,50,2,107,201700551,,,,303.0,1.0,0.0,2.0,0.0,1.0,1.0,4912.60252899729,0.0,500.0,0.0,0.0,7528.0,0,4,3,40.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,672.964882562781,0.06033827803345954,0.0893949100109964,7528.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +552,2,59.0,3,0.0,2,111,2,78,63,8.0,0.0,0.0,1884.3016711757866,159.23897478389006,0.0,32656.88919428049,33,50,1,10701,201700552,,,350.0,,1.0,4.0,3.0,0.0,2.0,1.5,1756.765555297577,0.0,1400.0,0.0,0.0,43393.0,5,1,1,85.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2043.5406459596766,0.06257609638818816,0.04709378577096943,28928.666666666668,8,4,8,8_1,8_3,8_0_1 +553,2,90.0,2,0.0,4,111,2,0,74,10.0,0.0,0.0,969.0694308904046,0.0,0.0,13059.101546154305,0,71,2,10702,201700553,,,,600.0,0.0,1.0,2.0,0.0,1.0,1.0,2627.878915296126,0.0,720.0,0.0,0.0,43217.0,0,5,3,45.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,969.0694308904046,0.07420643965937918,0.022423338753046362,43217.0,10,5,10,10_0,10_3,10_0_1 +554,1,49.0,3,74.0,9,300,1,0,52,4.0,0.0,0.0,538.3719060502248,0.0,1013.8214727907667,33370.32,0,50,1,10703,201700554,,,340.0,,1.0,2.0,4.0,1.0,2.0,1.5,554.3789707023258,0.0,400.0,573.0,0.0,24101.0,0,1,3,75.0,0,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1552.1933788409915,0.04651418922087027,0.06440369191489945,16067.333333333334,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +555,2,32.0,3,0.0,7,111,1,0,55,7.0,0.0,0.0,605.6683943065029,0.0,0.0,19531.56,0,12,2,10704,201700555,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3345.027616909617,0.0,450.0,0.0,0.0,25868.0,0,1,2,38.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,605.6683943065029,0.031009729602064703,0.023413808346470655,25868.0,7,4,7,7_0,7_3,7_0_0 +556,2,72.0,1,0.0,7,300,4,78,71,6.0,0.0,0.0,791.4067018938305,0.0,0.0,24149.6,70,60,1,10705,201700556,,,336.0,,0.0,2.0,5.0,0.0,2.0,1.5,1405.4520062227582,0.0,588.0,0.0,0.0,32620.0,5,5,1,150.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,791.4067018938305,0.032771006637535634,0.024261394907842748,21746.666666666668,6,3,6,6_1,6_0,6_0_0 +557,1,27.0,3,329.0,6,111,2,0,56,1.0,0.0,0.0,403.7789295376686,0.0,1061.5931652259337,12125.66,0,43,2,10706,201700557,,,310.0,,1.0,0.0,3.0,1.0,2.0,1.3,1051.3840189378789,0.0,300.0,600.0,0.0,5638.0,0,4,3,46.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1465.3720947636023,0.1208488523316341,0.25990991393465807,4336.923076923077,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +558,2,80.0,3,0.0,99,111,1,0,77,7.0,0.0,0.0,930.0374677017633,0.0,0.0,8411.64,0,60,2,10707,201700558,,,,252.0,0.0,0.0,2.0,0.0,1.0,1.0,6072.350858211181,0.0,691.0,0.0,0.0,24708.0,0,5,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,930.0374677017633,0.11056553391511802,0.037641147308635395,24708.0,7,4,7,7_0,7_4,7_0_0 +559,2,74.0,3,0.0,4,111,1,0,77,7.0,0.0,0.0,538.3719060502248,56.61830214538313,0.0,18797.371693502602,0,50,2,10708,201700559,,,,301.0,0.0,3.0,3.0,0.0,2.0,1.5,4934.6298935136,0.0,400.0,0.0,0.0,34940.0,0,5,3,60.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,594.9902081956079,0.03165284050861584,0.01702891265585598,23293.333333333332,6,3,6,6_0,6_3,6_0_1 +560,2,63.0,3,0.0,4,111,1,0,77,6.0,0.0,0.0,430.6975248401798,0.0,1769.3219420432229,15842.608161188145,0,70,2,10709,201700560,999999.0,1000.0,,330.0,0.0,1.0,3.0,0.0,1.0,1.0,3812.8115486247484,0.0,320.0,1000.0,0.0,23140.0,0,5,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2200.019466883403,0.13886725244351486,0.09507430712547117,23140.0,6,3,6,6_0,6_4,6_0_1 +561,1,37.0,2,375.0,99,111,1,85,65,2.0,0.0,0.0,788.7148423635794,0.0,178.70151614636552,29753.520000000004,50,60,2,1071,201700561,,,,58.0,1.0,0.0,4.0,5.0,7.0,3.0,2010.3569070281853,0.0,586.0,101.0,0.0,36310.0,6,1,3,75.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,967.4163585099449,0.03251434984868831,0.02664324865078339,12103.333333333334,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +562,2,44.0,3,0.0,2,111,2,0,67,3.0,0.0,0.0,915.2322402853821,0.0,3007.847301473479,23652.5,0,60,1,10710,201700562,,,470.0,,1.0,1.0,5.0,1.0,2.0,1.5,793.3632207862638,0.0,680.0,1700.0,0.0,21190.0,0,1,2,110.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3923.079541758861,0.165863208614686,0.1851382511448259,14126.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +563,2,29.0,2,0.0,9,111,4,0,46,6.0,0.0,0.0,0.0,0.0,0.0,38244.88,0,20,2,10711,201700563,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2596.8215159016995,0.0,0.0,0.0,0.0,23542.0,0,1,2,47.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,23542.0,6,3,6,6_0,6_3,6_0_0 +564,1,26.0,3,67.0,9,111,1,0,54,4.0,0.0,0.0,320.6775128739927,0.0,597.5756736662623,14183.320000000002,0,42,2,10714,201700564,,,,328.0,1.0,0.0,2.0,0.0,1.0,1.0,3608.367724060332,576.0,0.0,0.0,0.0,17182.0,0,1,3,47.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,918.253186540255,0.0647417661408087,0.05344274162147916,17182.0,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +565,1,39.0,5,309.0,4,111,4,0,46,2.0,0.0,0.0,2395.7549819235,212.31863304518674,0.0,25864.151571301445,0,50,1,10717,201700565,,,450.0,,1.0,0.0,4.0,2.0,3.0,2.0,652.9913679143556,0.0,1780.0,0.0,0.0,21941.0,0,1,3,80.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2608.073614968687,0.10083739293666119,0.11886758192282425,10970.5,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +566,0,56.0,2,0.0,1,400,4,56,22,1.0,0.0,0.0,0.0,0.0,0.0,11261.673444105856,71,30,1,10719,201700566,,,,,2.0,4.0,3.0,0.0,2.0,1.5,2510.3443218403218,0.0,0.0,0.0,0.0,8387.0,1,1,5,60.0,0,0.0,3,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0.0,0.0,0.0,5591.333333333333,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +567,2,42.0,2,0.0,1,221,5,85,47,5.0,0.0,555.170527825376,694.49975880479,0.0,0.0,25596.44,50,41,1,10720,201700567,,,200.0,,1.0,0.0,3.0,0.0,2.0,1.5,2619.8979276002383,0.0,516.0,0.0,0.0,27702.0,6,1,2,75.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1249.670286630166,0.04882203488571715,0.04511119365497675,18468.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +568,1,59.0,4,154.0,99,111,4,0,72,1.0,0.0,0.0,414.5463676586731,0.0,0.0,7221.497038047045,0,31,8,10722,201700568,,,194.0,69.0,0.0,3.0,1.0,0.0,1.0,1.0,3691.362711336551,0.0,308.0,0.0,0.0,9970.0,0,7,3,34.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,414.5463676586731,0.057404491821377454,0.04157937489053892,9970.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +569,1,44.0,3,147.0,1,120,2,56,64,3.0,2221.038412794435,0.0,839.8601734383507,318.4779495677801,0.0,27516.459999999995,71,50,1,10723,201700569,,,,,3.0,6.0,5.0,2.0,5.0,2.8,3370.907086673958,0.0,624.0,0.0,0.0,39688.0,1,4,3,120.0,0,0.0,5,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3379.3765358005658,0.12281291037439286,0.08514857225863147,14174.285714285716,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +570,2,78.0,3,0.0,4,111,1,86,77,3.0,0.0,0.0,472.4213475590722,0.0,1762.24465427505,19297.04,70,60,1,10724,201700570,,,210.0,,0.0,2.0,5.0,0.0,2.0,1.5,2074.039508879834,0.0,351.0,996.0,0.0,20963.0,5,5,1,100.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2234.666001834122,0.11580356375040535,0.1066004866590718,13975.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +571,2,31.0,3,0.0,8,112,4,43,64,6.0,0.0,0.0,2584.185149041079,212.31863304518674,0.0,38267.44739300215,44,43,1,10725,201700571,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,2373.963707061008,0.0,1920.0,0.0,0.0,43972.0,1,1,3,86.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2796.503782086266,0.073077876174141,0.06359737519526666,20939.04761904762,5,3,5,5_1,5_0,5_0_0 +572,2,52.0,2,0.0,1,111,2,69,62,10.0,1586.456009138882,0.0,827.7468055522206,261.859647422397,0.0,55720.799999999996,50,50,1,10726,201700572,,,422.0,,2.0,2.0,5.0,0.0,2.0,1.5,2313.616339225476,0.0,615.0,0.0,0.0,68993.0,1,1,2,110.0,6,5.0,3,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2676.0624621134994,0.04802627496578476,0.038787448902258194,45995.333333333336,10,5,10,10_1,10_2,10_1_0 +573,2,56.0,2,0.0,6,111,4,65,43,9.0,0.0,69.396315978172,1359.3890627768176,95.54338487033404,0.0,19564.16,50,33,1,10728,201700573,,,560.0,,2.0,2.0,4.0,0.0,2.0,1.5,1682.3682676390256,0.0,1010.0,0.0,0.0,56781.0,1,1,1,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1524.3287636253235,0.07791434764514928,0.026845754101289577,37854.0,9,5,9,9_1,9_3,9_0_0 +574,2,46.0,2,0.0,2,111,2,52,48,9.0,0.0,0.0,465.6916987334444,0.0,1042.1306238634584,72561.27454545452,31,71,2,10729,201700574,,,,,2.0,1.0,3.0,1.0,3.0,2.0,3326.1866152351326,0.0,346.0,589.0,0.0,70765.0,1,1,2,67.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1507.8223225969027,0.020779986735932517,0.021307458808689363,35382.5,9,5,9,9_0,9_2,9_0_1 +575,2,51.0,3,0.0,1,300,2,0,52,3.0,0.0,0.0,1076.7438121004495,212.31863304518674,0.0,27500.684052174533,0,50,1,1073,201700575,,,,500.0,2.0,2.0,3.0,1.0,2.0,1.5,2742.247295457425,0.0,800.0,0.0,0.0,22454.0,0,1,3,87.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1289.0624451456363,0.046873832036323754,0.05740903380892653,14969.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +576,2,64.0,3,0.0,2,111,2,0,77,6.0,0.0,90.21521077162359,1091.5490395168308,0.0,2271.809373583498,22662.938839019716,0,71,1,10733,201700576,,,840.0,,0.0,0.0,4.0,1.0,2.0,1.3,700.5331918174446,0.0,811.0,1284.0,0.0,28555.0,0,5,1,80.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3453.573623871953,0.15238860451433567,0.12094461999201375,21965.384615384613,6,3,6,6_1,6_3,6_0_1 +577,2,24.0,3,0.0,99,111,1,55,63,4.0,0.0,0.0,740.261370819059,0.0,0.0,39964.85999999999,43,50,1,10734,201700577,,,,495.0,2.0,0.0,1.0,0.0,2.0,1.5,4406.5180386411375,0.0,550.0,0.0,0.0,28365.0,1,1,3,35.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,740.261370819059,0.018522806556035956,0.02609770388926702,18910.0,5,3,5,5_1,5_3,5_0_0 +578,2,43.0,3,0.0,4,111,2,0,46,7.0,0.0,0.0,467.03762849857,0.0,891.7382587897844,39885.49119129575,0,31,1,10735,201700578,,,,,1.0,1.0,4.0,0.0,1.0,1.0,1485.796477224314,0.0,347.0,504.0,0.0,23921.0,0,1,2,80.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1358.7758872883544,0.03406692124641257,0.05680263731818713,23921.0,7,4,7,7_1,7_2,7_0_1 +579,2,87.0,2,0.0,2,300,6,0,86,3.0,655.2063317743583,0.0,726.8020731678034,0.0,0.0,22195.74,0,71,1,10736,201700579,,,236.0,,0.0,3.0,3.0,0.0,1.0,1.0,2214.2836783602124,0.0,540.0,0.0,0.0,14186.0,0,5,1,70.0,0,1.0,1,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1382.0084049421616,0.06226457892109754,0.09742058402242786,14186.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +580,2,42.0,2,0.0,9,111,4,64,46,8.0,0.0,0.0,1125.1972836449697,0.0,0.0,31133.342974403513,60,42,2,10739,201700580,,,160.0,,3.0,0.0,3.0,1.0,3.0,2.0,1459.25345543522,0.0,836.0,0.0,0.0,61670.0,1,1,2,70.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1125.1972836449697,0.036141229182168395,0.018245456196610502,30835.0,8,4,8,8_0,8_3,8_0_0 +581,2,68.0,3,0.0,9,400,4,0,77,1.0,0.0,0.0,2530.3479584360566,53.079658261296686,0.0,17367.739999999998,0,70,1,10740,201700581,,,343.0,,0.0,3.0,5.0,0.0,1.0,1.0,2600.3752106928528,0.0,1880.0,0.0,0.0,7835.0,0,5,2,100.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2583.427616697353,0.14874863492298673,0.32972911508581404,7835.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +582,2,47.0,4,0.0,9,111,2,0,45,3.0,0.0,0.0,940.8767304809855,0.0,1753.3036258610819,27626.3,0,42,1,10741,201700582,,,400.0,,1.0,0.0,4.0,2.0,3.0,1.8,592.0325001384591,1690.0,0.0,0.0,0.0,27852.0,0,1,3,110.0,6,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2694.180356342067,0.09752230144254088,0.09673202485789413,15473.333333333332,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +583,2,60.0,3,0.0,1,212,2,56,13,1.0,3172.912018277764,416.377895869032,160.16564204994188,0.0,0.0,24204.619877080495,71,50,1,10742,201700583,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2279.924979162412,0.0,119.0,0.0,0.0,12060.0,1,1,1,100.0,2,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3749.455556196738,0.1549066077152949,0.3109001290378722,8040.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +584,2,57.0,3,0.0,1,111,2,85,56,4.0,0.0,0.0,864.0869092106108,0.0,3770.425058494108,82447.6,44,41,1,10745,201700584,,,435.0,,1.0,0.0,10.0,1.0,3.0,1.8,1469.3462582780946,0.0,642.0,2131.0,0.0,30715.0,6,4,1,240.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4634.511967704719,0.05621160552526354,0.15088757830716976,17063.888888888887,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +585,2,67.0,2,0.0,1,300,2,74,74,10.0,1784.7630102812425,0.0,834.4764543778484,164.54694061001973,0.0,33117.119999999995,30,30,1,10747,201700585,,,469.0,,0.0,1.0,6.0,0.0,2.0,1.5,1802.4494272951508,0.0,620.0,0.0,0.0,68366.0,5,5,1,200.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2783.7864052691107,0.08405883136181863,0.0407188720309673,45577.333333333336,10,5,10,10_1,10_0,10_1_0 +586,2,48.0,2,0.0,5,112,4,63,43,8.0,0.0,0.0,2900.478643845586,35.38643884086446,0.0,64455.16000000001,50,33,1,10748,201700586,,,340.0,,2.0,0.0,5.0,0.0,2.0,1.5,1962.6729503471217,0.0,2155.0,0.0,0.0,43108.0,1,1,2,100.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2935.8650826864505,0.045548953453632725,0.0681048780432043,28738.666666666668,8,4,8,8_1,8_0,8_0_0 +587,1,48.0,4,437.0,99,111,2,0,54,1.0,0.0,0.0,457.61612014269105,0.0,1061.5931652259337,32827.64,0,50,2,10749,201700587,,,,124.0,1.0,0.0,4.0,2.0,3.0,1.6,863.57341636899,0.0,340.0,600.0,0.0,16224.0,0,4,3,78.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1519.2092853686247,0.046278358278835294,0.09363962557745469,10140.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +588,1,55.0,3,200.0,7,112,4,0,68,7.0,0.0,0.0,888.3136449828709,51.310336319253466,0.0,14008.060000000001,0,50,2,1075,201700588,,,330.0,180.0,1.0,1.0,2.0,0.0,1.0,1.0,2761.34914541298,0.0,660.0,0.0,0.0,23330.0,0,1,3,39.0,8,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,939.6239813021243,0.06707738125779902,0.04027535282049397,23330.0,6,3,6,6_0,6_1,6_0_0 +589,2,78.0,3,0.0,4,112,2,0,,2.0,3172.912018277764,0.0,585.4794478296194,106.15931652259337,0.0,9263.88,0,70,1,10751,201700589,,,,,0.0,3.0,6.0,0.0,1.0,1.0,2232.003735805185,0.0,435.0,0.0,0.0,14420.0,0,5,1,,9,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3864.550782629977,0.4171633033491342,0.2679993607926475,14420.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +590,2,45.0,1,0.0,1,112,4,56,48,7.0,0.0,0.0,2487.2782059520387,49.54101437721024,0.0,49180.670875301636,50,50,2,10754,201700590,,,,600.0,2.0,2.0,3.0,0.0,2.0,1.5,2343.4653613540127,0.0,1848.0,0.0,0.0,34465.0,1,4,3,90.0,9,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2536.8192203292488,0.05158163105910844,0.07360566430666615,22976.666666666668,6,3,6,6_0,6_0,6_1_0 +591,2,57.0,3,0.0,1,112,2,78,54,5.0,0.0,0.0,749.682879174938,0.0,3211.3193248084494,17354.43087530163,71,50,1,10755,201700591,,,302.0,,1.0,0.0,5.0,0.0,2.0,1.5,2635.8992856362092,0.0,557.0,1815.0,0.0,32984.0,5,1,3,120.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3961.0022039833875,0.22824155009430944,0.12008859459081335,21989.333333333332,6,3,6,6_1,6_0,6_1_0 +592,1,56.0,4,151.0,99,112,5,85,85,1.0,0.0,0.0,834.4764543778484,265.39829130648343,0.0,5494.96,71,50,1,10756,201700592,,,,,0.0,0.0,4.0,2.0,4.0,2.3,1106.2879919478394,0.0,620.0,0.0,0.0,10442.0,6,7,3,63.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1099.8747456843319,0.20016064642587605,0.10533180862711472,4540.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +593,2,73.0,3,0.0,7,400,2,0,74,7.0,0.0,0.0,2176.187020253133,0.0,2239.405316192529,16871.39087530163,0,31,2,10757,201700593,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2211.831137814675,2158.550822882537,724.0,0.0,0.0,27240.0,0,5,1,36.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,4415.592336445662,0.26172070631768346,0.162099571822528,27240.0,7,4,7,7_0,7_0,7_0_0 +594,2,25.0,3,0.0,99,211,4,52,63,2.0,0.0,0.0,0.0,51.310336319253466,0.0,11185.64,50,50,1,10758,201700594,,,156.0,,2.0,3.0,4.0,0.0,2.0,1.5,596.6584222889016,0.0,0.0,0.0,0.0,19701.0,1,1,3,69.0,1,2.0,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,51.310336319253466,0.004587161424760091,0.0026044533942060537,13134.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +595,2,56.0,4,0.0,3,111,5,46,52,5.0,0.0,832.755791738064,888.3136449828709,176.9321942043223,0.0,37829.021726862295,71,50,1,1076,201700595,,,756.0,,2.0,1.0,4.0,0.0,2.0,1.5,1429.4661456101728,0.0,660.0,0.0,0.0,33055.0,5,1,3,100.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1898.0016309252571,0.050173161881621985,0.05741950176751648,22036.666666666668,6,3,6,6_1,6_3,6_0_1 +596,2,41.0,3,0.0,1,221,6,22,52,1.0,0.0,0.0,3174.8464264664317,0.0,0.0,65782.90999999999,31,42,1,10760,201700596,,,,,3.0,0.0,7.0,4.0,6.0,3.3,2219.5291967497196,0.0,2358.85,0.0,0.0,32427.0,1,1,1,176.0,3,4.0,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3174.8464264664317,0.04826248073346759,0.0979074976552389,9826.363636363636,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +597,1,41.0,3,58.0,1,111,2,85,62,3.0,0.0,0.0,823.7090162568439,0.0,2017.027013929274,41595.600000000006,71,31,2,10761,201700597,,,,,1.0,0.0,6.0,4.0,6.0,2.9,1918.8267538589557,0.0,612.0,1140.0,0.0,39403.0,6,1,2,120.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2840.736030186118,0.06829414722196861,0.07209440982123488,13587.241379310346,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +598,2,40.0,3,0.0,1,300,5,64,67,5.0,0.0,693.9631597817199,1749.7086946632305,81.38880933398825,0.0,48512.78,71,42,1,10762,201700598,,,,,2.0,1.0,8.0,2.0,4.0,2.3,2908.3224255907317,0.0,1300.0,0.0,0.0,42733.0,1,1,2,130.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2525.0606637789388,0.05204939118679529,0.05908924399829028,18579.565217391304,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +599,2,56.0,2,0.0,7,112,2,46,75,3.0,0.0,0.0,1615.1157181506744,0.0,1150.059262328095,34374.24,50,44,1,10765,201700599,,,,,1.0,1.0,5.0,1.0,3.0,2.0,3139.215473360514,0.0,1200.0,650.0,0.0,44868.0,1,7,1,150.0,9,3.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2765.1749804787696,0.08044323250430467,0.06162911162696732,22434.0,6,3,6,6_1,6_1,6_0_0 +600,1,29.0,3,420.0,6,111,1,0,85,3.0,0.0,0.0,468.38355826369553,0.0,0.0,11883.220000000001,0,71,2,10767,201700600,,,250.0,,0.0,0.0,4.0,3.0,4.0,1.9,1094.0315920040705,0.0,348.0,0.0,0.0,25580.0,0,6,3,80.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,468.38355826369553,0.03941554210590189,0.01831053785237277,13463.157894736843,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +601,2,36.0,3,0.0,9,211,5,22,46,7.0,0.0,666.2046333904511,942.1508355878933,0.0,0.0,41031.399999999994,43,31,1,10768,201700601,,,250.0,,2.0,0.0,6.0,2.0,4.0,2.1,2924.22337511208,0.0,700.0,0.0,0.0,53110.0,1,1,2,115.0,1,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1608.3554689783446,0.03919816211434035,0.03028347710371577,25290.47619047619,7,4,7,7_1,7_1,7_0_0 +602,2,35.0,1,0.0,8,111,2,42,33,8.0,0.0,0.0,403.7789295376686,0.0,1415.4575536345783,40660.979999999996,20,30,1,10769,201700602,,,269.0,,2.0,0.0,4.0,1.0,3.0,1.8,2377.298717800243,0.0,300.0,800.0,0.0,51370.0,1,1,2,87.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1819.2364831722468,0.044741579843187426,0.03541437576741769,28538.888888888887,8,4,8,8_1,8_3,8_0_0 +603,2,26.0,2,0.0,99,111,1,0,56,4.0,0.0,0.0,403.7789295376686,0.0,0.0,11436.42,0,10,2,10770,201700603,,,,380.0,1.0,0.0,2.0,0.0,1.0,1.0,5308.199297776478,0.0,300.0,0.0,0.0,16252.0,0,1,3,60.0,7,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,403.7789295376686,0.03530640965771357,0.024844876294466443,16252.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +604,2,53.0,3,0.0,7,111,4,35,43,10.0,0.0,0.0,2163.4979847979466,0.0,1297.7908433921552,45877.009005575645,41,33,1,10771,201700604,,,209.0,,2.0,2.0,4.0,0.0,2.0,1.5,2242.4757159931023,1250.9336620207955,1090.0,0.0,0.0,63913.0,1,1,1,88.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3461.288828190102,0.07544713361259962,0.0541562566017884,42608.666666666664,10,5,10,10_1,10_3,10_0_0 +605,2,33.0,2,0.0,4,111,4,22,22,6.0,0.0,0.0,1130.581002705472,0.0,0.0,75624.31999999999,30,31,1,10772,201700605,,,442.0,,2.0,0.0,7.0,0.0,2.0,1.5,3560.3908776477792,0.0,840.0,0.0,0.0,33126.0,1,1,3,110.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1130.581002705472,0.01494996586687288,0.0341297169204091,22084.0,6,3,6,6_1,6_3,6_0_1 +606,2,49.0,5,0.0,1,211,2,78,85,3.0,0.0,0.0,1018.8688322000504,61.9262679715128,0.0,14294.240000000002,71,50,1,10773,201700606,,,69.0,,0.0,4.0,5.0,0.0,2.0,1.5,1725.0230853298665,0.0,757.0,0.0,0.0,20700.0,7,7,3,90.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1080.7951001715633,0.07561053264612622,0.05221232367978566,13800.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +607,2,66.0,2,0.0,5,111,2,77,74,8.0,0.0,0.0,1141.856907820415,0.0,2127.825879669278,22840.222066597376,60,12,1,10776,201700607,,,250.0,,0.0,1.0,3.0,0.0,2.0,1.5,1449.2297360039531,2051.0,0.0,0.0,0.0,45431.0,5,5,1,110.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3269.682787489693,0.14315459709437028,0.07197030194117877,30287.333333333332,8,4,8,8_1,8_2,8_0_0 +608,2,59.0,3,0.0,9,112,2,0,56,6.0,0.0,0.0,1463.025654691486,0.0,2335.504963497054,43505.659999999996,0,60,1,10778,201700608,,,380.0,883.0,1.0,2.0,5.0,0.0,1.0,1.0,1765.2839774170711,0.0,1087.0,1320.0,0.0,22270.0,0,1,3,112.0,5,0.0,1,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3798.53061818854,0.08731118245737543,0.17056715842786438,22270.0,6,3,6,6_1,6_0,6_0_0 +609,2,85.0,2,0.0,4,111,2,77,77,7.0,0.0,0.0,436.08124390068207,0.0,2105.493111031435,16291.094007939444,71,71,2,10779,201700609,,,,,0.0,2.0,4.0,0.0,2.0,1.5,3425.443946135137,0.0,324.0,1190.0,0.0,31109.0,5,5,1,76.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2541.5743549321173,0.15601004780240568,0.0816990052696042,20739.333333333332,5,3,5,5_0,5_3,5_0_1 +610,2,49.0,5,0.0,99,111,4,0,33,4.0,0.0,0.0,1179.0344742499922,0.0,0.0,30379.32,0,31,1,10780,201700610,,,,,1.0,2.0,3.0,1.0,2.0,1.3,855.9898649382349,0.0,876.0,0.0,0.0,22698.0,0,1,3,50.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1179.0344742499922,0.03881043006393797,0.05194442128161037,17460.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +611,2,48.0,1,0.0,3,111,2,0,31,8.0,0.0,0.0,1071.7087018792292,0.0,1997.106201054783,53329.939999999995,0,10,1,10781,201700611,,,450.0,,1.0,0.0,6.0,2.0,3.0,1.8,678.6591514876108,1925.0,0.0,0.0,0.0,53345.0,0,1,2,150.0,5,4.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3068.814902934012,0.05754394066323743,0.057527695246677515,29636.11111111111,8,4,8,8_1,8_2,8_0_1 +612,2,61.0,2,0.0,99,111,2,0,43,9.0,0.0,0.0,1279.9792066344094,0.0,0.0,23380.120000000003,0,33,2,10782,201700612,,,,685.0,1.0,2.0,3.0,0.0,1.0,1.0,3346.4291358756745,0.0,951.0,0.0,0.0,41866.0,0,1,3,74.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1279.9792066344094,0.05474647720518155,0.03057323858583121,41866.0,10,5,10,10_0,10_3,10_0_0 +613,2,58.0,2,0.0,2,111,2,77,63,3.0,0.0,0.0,359.36324728852503,0.0,1489.7690752003937,18828.242066597373,50,44,2,10783,201700613,,,,345.0,1.0,1.0,3.0,0.0,2.0,1.5,1470.2337003208904,0.0,267.0,842.0,0.0,20870.0,5,1,3,50.0,4,4.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1849.1323224889188,0.098210566655578,0.08860241123569328,13913.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +614,2,65.0,3,0.0,6,112,4,47,42,10.0,0.0,69.396315978172,2961.045483276236,106.15931652259337,0.0,51790.74269899829,30,31,1,10784,201700614,,,550.0,,2.0,0.0,5.0,0.0,2.0,1.5,2010.5182312947852,0.0,2200.0,0.0,0.0,78019.0,1,1,1,190.0,8,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3136.6011157770017,0.060562968444120575,0.040203041769017824,52012.666666666664,10,5,10,10_1,10_0,10_0_0 +615,0,31.0,2,0.0,3,112,2,21,42,4.0,2379.684013708323,0.0,915.2322402853821,198.16405750884095,0.0,25978.173830372234,30,30,1,10785,201700615,,,310.0,,2.0,0.0,4.0,2.0,4.0,2.1,2933.4342815879163,0.0,680.0,0.0,0.0,36156.0,1,1,5,70.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3493.080311502546,0.13446211940496877,0.09661135942865764,17217.142857142855,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +616,2,66.0,3,0.0,6,300,4,77,74,8.0,0.0,0.0,2430.749155816765,0.0,0.0,48155.259999999995,71,30,1,10787,201700616,,,344.0,,0.0,6.0,3.0,0.0,2.0,1.5,2365.42237344427,0.0,1806.0,0.0,0.0,43920.0,5,5,1,70.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2430.749155816765,0.0504773342687126,0.05534492613426149,29280.0,8,4,8,8_1,8_0,8_0_0 +617,2,41.0,5,0.0,9,112,2,0,43,1.0,0.0,0.0,0.0,0.0,0.0,15082.677038047044,0,41,2,10788,201700617,,,,580.0,1.0,0.0,3.0,2.0,3.0,1.6,1812.804035304123,0.0,0.0,0.0,0.0,9400.0,0,4,3,40.0,10,2.0,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,5875.0,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +618,2,55.0,1,0.0,2,111,1,31,33,10.0,0.0,0.0,465.6916987334444,0.0,0.0,41445.52,20,0,2,10789,201700618,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2307.3608679917875,0.0,346.0,0.0,0.0,83293.0,1,1,1,85.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,465.6916987334444,0.01123623732392414,0.005591006431914379,55528.666666666664,10,5,10,10_0,10_3,10_0_1 +619,2,40.0,2,0.0,9,300,2,54,34,9.0,0.0,0.0,1951.598159432065,53.079658261296686,0.0,22780.68,30,30,1,1079,201700619,,,365.0,,2.0,0.0,4.0,0.0,2.0,1.5,2424.6203724467864,0.0,1450.0,0.0,0.0,51600.0,1,1,2,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2004.6778176933617,0.0879990332901986,0.03885034530413492,34400.0,9,5,9,9_1,9_0,9_0_0 +620,2,59.0,3,0.0,2,111,2,78,56,3.0,0.0,0.0,1444.182637979728,0.0,1650.777371926327,25091.800315994118,50,50,1,10790,201700620,,,410.0,,1.0,2.0,5.0,0.0,2.0,1.5,2269.4128156471115,0.0,1073.0,933.0,0.0,23068.0,5,1,2,95.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3094.9600099060553,0.12334547425571744,0.134166811596413,15378.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +621,2,39.0,2,0.0,4,111,2,22,22,9.0,3172.912018277764,0.0,2998.953710292693,61.9262679715128,1073.8856792653332,38911.89369488954,71,71,1,10791,201700621,,,600.0,,2.0,0.0,10.0,3.0,5.0,2.4,2507.5307875688345,1035.1126702695867,1800.0,0.0,0.0,71254.0,1,1,2,250.0,7,5.0,4,5,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,7307.677675807304,0.18780061780357532,0.10255813955437314,29689.166666666668,8,4,8,8_1,8_2,8_0_1 +622,2,34.0,1,0.0,1,112,2,85,31,10.0,0.0,0.0,1282.6710661646605,0.0,3165.316954315326,81902.74000000002,33,10,1,10792,201700622,,,462.0,,1.0,0.0,8.0,1.0,3.0,1.8,2789.6406005921267,0.0,953.0,1789.0,0.0,229622.0,6,1,3,260.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4447.9880204799865,0.054308171136643116,0.019370914026007904,127567.77777777778,10,5,10,10_1,10_0,10_1_0 +623,2,70.0,1,0.0,5,112,6,77,74,10.0,0.0,0.0,1016.1769726697993,0.0,2641.5976594705317,71152.651398806,31,12,1,10793,201700623,,,330.0,,0.0,1.0,6.0,0.0,2.0,1.5,705.537109428312,0.0,755.0,1493.0,0.0,94054.0,5,5,1,150.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3657.774632140331,0.05140742558754053,0.03889015493376498,62702.666666666664,10,5,10,10_1,10_0,10_0_0 +624,2,42.0,2,0.0,8,112,5,64,45,7.0,0.0,0.0,835.822384142974,244.16642800196476,0.0,28193.82,50,31,1,10794,201700624,,,244.0,,2.0,0.0,5.0,2.0,4.0,2.3,2112.6212017535163,0.0,621.0,0.0,0.0,52900.0,1,1,2,97.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1079.9888121449387,0.03830587029870158,0.020415667526369353,23000.0,6,3,6,6_1,6_0,6_0_0 +625,2,62.0,1,0.0,1,111,2,0,75,10.0,2125.851052246102,0.0,1061.9385846840685,0.0,0.0,47906.240000000005,0,50,1,10795,201700625,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2418.72780620321,0.0,789.0,0.0,0.0,58060.0,0,5,1,140.0,8,6.0,1,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3187.7896369301707,0.06654226332373758,0.054905091920946794,58060.0,10,5,10,10_1,10_2,10_1_0 +626,2,43.0,2,0.0,4,111,2,43,43,10.0,0.0,0.0,1781.5417381888485,0.0,3319.864853701457,65045.42134949915,33,33,1,10796,201700626,,,570.0,,2.0,0.0,12.0,2.0,4.0,2.1,2277.8840802001955,3200.0,0.0,0.0,0.0,95043.0,1,1,2,200.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5101.406591890305,0.07842837337434799,0.05367472188262476,45258.57142857143,10,5,10,10_1,10_3,10_0_1 +627,2,58.0,4,0.0,99,111,4,0,85,1.0,0.0,0.0,874.8543473316153,0.0,0.0,11085.92,0,71,1,10798,201700627,,,600.0,,0.0,0.0,3.0,0.0,2.0,1.5,1863.9694739531394,0.0,650.0,0.0,0.0,9860.0,0,7,1,53.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,874.8543473316153,0.07891580918242376,0.0887276214332267,6573.333333333333,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +628,2,51.0,2,0.0,6,111,1,52,37,7.0,0.0,0.0,838.5142436732251,0.0,0.0,22537.220000000005,71,31,2,10799,201700628,,,364.0,423.0,2.0,1.0,3.0,0.0,2.0,1.5,1505.4345249792018,0.0,623.0,0.0,0.0,39911.0,1,1,3,70.0,6,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,838.5142436732251,0.03720575313517927,0.021009602457298115,26607.333333333332,7,4,7,7_0,7_2,7_0_0 +629,2,75.0,4,0.0,5,111,6,77,75,2.0,594.9210034270808,0.0,897.7351533387498,230.01185246561897,0.0,23278.120000000003,60,50,1,1080,201700629,,,290.0,,0.0,2.0,3.0,0.0,2.0,1.5,6387.812713105924,0.0,667.0,0.0,0.0,19913.0,5,5,1,90.0,6,4.0,3,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1722.6680092314496,0.07400374296684824,0.08650971773371413,13275.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +630,2,39.0,1,0.0,1,111,2,47,47,10.0,0.0,0.0,457.61612014269105,0.0,1539.310089577604,123616.28,20,20,2,10800,201700630,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2827.2888369678594,0.0,340.0,870.0,0.0,77791.0,1,1,2,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1996.926209720295,0.01615423316184806,0.025670401585277152,51860.666666666664,10,5,10,10_0,10_4,10_1_0 +631,2,64.0,2,0.0,6,111,2,77,75,5.0,0.0,208.188947934516,829.5303718441825,0.0,1545.8120725047409,28792.75119129575,50,44,1,10802,201700631,,,225.0,,0.0,2.0,5.0,0.0,2.0,1.5,1387.7873451712476,1490.0,0.0,0.0,0.0,30100.0,5,5,1,130.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2583.5313922834393,0.08972853532192016,0.08583160771705779,20066.666666666668,5,3,5,5_1,5_2,5_0_0 +632,1,30.0,3,216.0,99,211,2,85,56,2.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,25584.06,43,41,1,10803,201700632,,,400.0,,1.0,0.0,7.0,2.0,4.0,2.1,646.6659505697883,1800.0,0.0,0.0,0.0,27964.0,8,1,3,92.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2869.541207938297,0.11216129136416568,0.102615548846313,13316.190476190475,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +633,2,78.0,3,0.0,99,111,1,85,78,2.0,0.0,0.0,250.5293069328068,0.0,1528.4491602777011,12089.039999999999,71,71,2,10804,201700633,600.0,600.0,,261.0,0.0,8.0,3.0,0.0,2.0,1.5,4791.803167515332,450.0,0.0,600.0,0.0,19030.0,6,5,3,81.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1778.978467210508,0.14715630581175246,0.09348284115662155,12686.666666666666,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +634,0,49.0,3,0.0,1,300,5,0,62,3.0,237.96840137083234,693.9631597817199,348.59580916752054,155.5233987055993,0.0,13236.74,0,50,1,10805,201700634,,,60.0,,1.0,1.0,3.0,0.0,1.0,1.0,3271.2078955968077,0.0,259.0,0.0,0.0,14387.0,0,4,5,82.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1436.050769025672,0.1084897617559665,0.09981585938873094,14387.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +635,2,55.0,2,0.0,9,300,2,54,21,7.0,4759.368027416646,0.0,1839.037047480057,247.7050718860512,1244.9493201380465,49400.8527375466,50,71,1,10806,201700635,,,,,3.0,1.0,6.0,2.0,4.0,2.5,2208.9701244492394,1200.0,870.0,0.0,0.0,59629.0,1,1,1,150.0,0,0.0,4,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,8091.059466920801,0.16378380166646955,0.1356900076627279,23851.6,6,3,6,6_1,6_0,6_0_0 +636,1,34.0,3,236.0,99,112,6,0,54,4.0,0.0,0.0,436.08124390068207,106.15931652259337,0.0,25965.259999999995,0,31,2,10807,201700636,,,,,1.0,0.0,3.0,1.0,2.0,1.3,548.2247923674795,0.0,324.0,0.0,0.0,21210.0,0,1,3,65.0,9,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,542.2405604232754,0.020883309484414,0.025565325809678238,16315.384615384615,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +637,2,52.0,3,0.0,9,120,6,46,67,6.0,0.0,0.0,1615.1157181506744,180.47083808840873,0.0,24577.48,44,50,1,10808,201700637,,,350.0,,2.0,0.0,4.0,1.0,3.0,2.0,2540.0520995989705,0.0,1200.0,0.0,0.0,44380.0,1,1,2,75.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1795.5865562390832,0.07305820434963566,0.04045936359258862,22190.0,6,3,6,6_1,6_0,6_0_0 +638,2,46.0,3,0.0,9,400,2,55,63,7.0,0.0,0.0,1938.1388617808093,169.8549064361494,0.0,41095.671693502605,50,50,1,10809,201700638,,,,,2.0,1.0,4.0,1.0,3.0,1.8,1850.6637464146872,0.0,1440.0,0.0,0.0,44700.0,1,1,2,85.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2107.993768216959,0.05129478802387458,0.04715869727554718,24833.333333333332,7,4,7,7_1,7_0,7_0_0 +639,2,32.0,4,0.0,2,111,4,0,35,3.0,0.0,0.0,759.1043875308169,0.0,0.0,21439.59087530163,0,30,2,1081,201700639,,,,851.0,1.0,0.0,1.0,0.0,1.0,1.0,3435.793376064777,0.0,564.0,0.0,0.0,14311.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,759.1043875308169,0.035406663865274766,0.05304342027327349,14311.0,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +640,2,48.0,1,0.0,9,120,2,42,38,10.0,0.0,346.98157989085996,2758.471876203527,0.0,174.2929048193265,136310.68,30,12,1,10810,201700640,,,1400.0,,2.0,0.0,5.0,2.0,4.0,2.5,2015.4850993122254,168.0,1980.0,0.0,0.0,131848.0,1,1,1,150.0,0,3.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3279.746360913713,0.024060817251544145,0.024875207518610165,52739.2,10,5,10,10_1,10_1,10_0_0 +641,2,37.0,3,0.0,99,111,1,43,43,9.0,0.0,0.0,888.3136449828709,0.0,343.2484567563852,73066.1617891219,33,33,2,10811,201700641,,,,1005.0,2.0,0.0,3.0,2.0,4.0,2.1,2214.1432245817045,0.0,660.0,194.0,0.0,71844.0,1,1,3,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1231.5621017392561,0.01685543720352656,0.01714217056037047,34211.42857142857,9,5,9,9_0,9_3,9_0_0 +642,2,63.0,3,0.0,4,111,2,0,56,4.0,0.0,0.0,1049.8252167979383,0.0,1082.8250285304525,21019.440000000002,0,71,1,10813,201700642,,,,,1.0,3.0,5.0,1.0,2.0,1.5,2578.7473779911775,0.0,780.0,612.0,0.0,25210.0,0,5,1,100.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2132.650245328391,0.10146084982893887,0.08459540838272078,16806.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +643,2,38.0,2,0.0,1,112,2,43,37,9.0,5151.222661673951,0.0,1281.325136399535,0.0,0.0,105941.76,33,31,1,10814,201700643,,,415.0,,2.0,0.0,6.0,2.0,4.0,2.1,2575.9308887809293,0.0,952.0,0.0,0.0,66921.0,1,1,2,180.0,5,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6432.547798073486,0.06071777359629938,0.09612151339749087,31867.142857142855,9,5,9,9_1,9_0,9_1_0 +644,2,45.0,2,0.0,5,111,4,35,35,10.0,0.0,0.0,1345.929765125562,0.0,0.0,129545.95999999999,41,41,2,10816,201700644,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2655.040789992086,0.0,1000.0,0.0,0.0,142407.0,1,1,1,102.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1345.929765125562,0.010389592737014432,0.009451289368679644,67812.85714285714,10,5,10,10_0,10_4,10_0_0 +645,2,31.0,1,0.0,1,111,4,0,47,4.0,0.0,0.0,430.6975248401798,0.0,0.0,18792.1,0,20,2,10817,201700645,,,,370.0,1.0,0.0,2.0,0.0,1.0,1.0,4137.612656420772,0.0,320.0,0.0,0.0,17639.0,0,1,3,58.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,430.6975248401798,0.022919073697999684,0.02441734366121548,17639.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +646,1,33.0,4,52.0,10,111,2,0,46,5.0,0.0,0.0,411.98152695617125,0.0,767.7187474184619,13705.52,0,31,2,10818,201700646,,,288.0,,1.0,0.0,3.0,1.0,2.0,1.3,777.0258420452983,740.0,0.0,0.0,0.0,25608.0,0,1,3,71.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1179.7002743746332,0.08607482783394087,0.04606764582843772,19698.46153846154,5,3,5,5_0,5_2,5_0_0 +647,1,35.0,3,271.0,99,111,2,0,46,3.0,0.0,0.0,484.5347154452023,0.0,1273.9117982711205,17447.0458467513,0,50,2,10819,201700647,,,,153.0,1.0,0.0,3.0,1.0,2.0,1.3,983.0378166297932,0.0,360.0,720.0,0.0,19451.0,0,1,3,60.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1758.446513716323,0.10078763643781859,0.09040391310042276,14962.307692307691,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +648,2,85.0,1,0.0,99,111,2,0,71,6.0,0.0,0.0,2986.618148813622,0.0,3620.032693420434,20138.0,0,71,1,1082,201700648,,,297.0,,0.0,3.0,4.0,0.0,1.0,1.0,2129.273436059946,0.0,2219.0,2046.0,0.0,22080.0,0,5,1,119.0,4,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6606.650842234056,0.32806886692988657,0.29921425915915106,22080.0,6,3,6,6_1,6_1,6_0_0 +649,2,71.0,2,0.0,5,111,4,75,75,10.0,0.0,0.0,1615.1157181506744,0.0,0.0,40092.92,30,31,2,10820,201700649,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2215.1953823812023,0.0,1200.0,0.0,0.0,64803.0,5,5,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1615.1157181506744,0.040284312495839025,0.024923471415685607,43202.0,10,5,10,10_0,10_3,10_0_0 +650,2,80.0,3,0.0,1,112,5,75,72,5.0,2379.684013708323,27.7585263912688,2153.487624200899,0.0,0.0,38098.5516935026,50,70,1,10821,201700650,,,430.0,,0.0,2.0,5.0,0.0,2.0,1.5,2567.93737175279,0.0,1600.0,0.0,0.0,29715.0,5,5,1,120.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4560.930164300491,0.11971400385485836,0.15348915242471786,19810.0,5,3,5,5_1,5_0,5_1_0 +651,2,77.0,4,0.0,1,221,2,0,78,5.0,2067.1521799079633,0.0,600.2846752460006,58.38762408742635,0.0,12869.060000000001,0,71,1,10824,201700651,,,170.0,,0.0,3.0,6.0,0.0,1.0,1.0,2463.501608936665,0.0,446.0,0.0,0.0,18746.0,0,5,1,120.0,1,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2725.8244792413902,0.2118122441919915,0.14540832600242132,18746.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +652,2,82.0,2,0.0,5,111,1,0,86,6.0,0.0,0.0,383.58998306078513,0.0,0.0,18204.36,0,71,2,10826,201700652,,,,780.0,0.0,0.0,6.0,0.0,3.0,2.0,3096.3018025024767,0.0,285.0,0.0,0.0,46470.0,0,5,3,100.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,383.58998306078513,0.02107132483980679,0.008254572478174847,23235.0,6,3,6,6_0,6_4,6_0_0 +653,2,58.0,1,0.0,6,112,2,78,56,5.0,0.0,0.0,1391.8294829600377,0.0,2593.6444169542638,38239.18134949915,71,71,1,10828,201700653,,,1030.0,,1.0,4.0,5.0,0.0,2.0,1.5,2468.112664876009,2500.0,0.0,0.0,0.0,27870.0,5,1,1,150.0,8,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3985.4738999143015,0.10422487509572435,0.1430022927848691,18580.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +654,0,75.0,3,0.0,1,400,4,0,78,7.0,0.0,0.0,0.0,102.62067263850693,0.0,19940.82031599412,0,71,1,10829,201700654,,,,,1.0,2.0,3.0,1.0,2.0,1.5,2999.994111788371,0.0,0.0,0.0,0.0,35203.0,0,5,5,80.0,0,0.0,2,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,102.62067263850693,0.005146261337914821,0.002915111571130498,23468.666666666668,6,3,6,6_1,6_0,6_1_0 +655,1,59.0,5,256.0,4,111,1,0,78,1.0,0.0,0.0,61.91276919577585,283.09151072691566,150.39236507367394,13565.759999999998,0,71,2,1083,201700655,85.0,85.0,600.0,14.0,0.0,0.0,2.0,1.0,3.0,1.8,2088.139495791512,0.0,46.0,85.0,0.0,15762.0,0,7,3,47.0,5,4.0,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,495.39664499636547,0.03651816374433615,0.031429808716937284,8756.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +656,1,37.0,3,247.0,9,111,1,0,68,4.0,0.0,0.0,1211.3367886130059,764.3470789626723,0.0,30238.197540253903,0,50,1,10830,201700656,,,,243.0,3.0,0.0,5.0,2.0,4.0,2.3,3683.192667968707,0.0,900.0,0.0,0.0,36874.0,0,1,3,97.0,8,7.0,5,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1975.683867575678,0.0653373556722617,0.053579320593797206,16032.17391304348,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +657,2,56.0,3,0.0,2,111,6,52,47,6.0,3966.1400228472053,0.0,1519.5547048267595,0.0,0.0,81245.95331690805,60,31,1,10832,201700657,,,311.0,,3.0,0.0,7.0,4.0,6.0,3.5,2145.168468000718,0.0,1129.0,0.0,0.0,73027.0,1,1,1,140.0,9,7.0,4,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5485.694727673965,0.06751960563840587,0.07511871948284833,20864.85714285714,5,3,5,5_1,5_3,5_0_1 +658,2,37.0,2,0.0,7,111,2,54,63,6.0,0.0,0.0,915.2322402853821,0.0,1769.3219420432229,26104.57800298474,31,43,1,10836,201700658,,,312.0,,2.0,0.0,5.0,2.0,4.0,2.1,1942.7778167750207,0.0,680.0,1000.0,0.0,44877.0,1,1,2,80.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2684.554182328605,0.10283844397031275,0.05982026834076709,21370.0,6,3,6,6_1,6_3,6_0_0 +659,2,67.0,2,0.0,9,111,2,0,75,8.0,0.0,0.0,1558.5866680154008,0.0,3503.2574452455815,48301.66,0,50,1,10839,201700659,,,635.0,,0.0,2.0,7.0,0.0,1.0,1.0,3554.029197594626,0.0,1158.0,1980.0,0.0,27928.0,0,5,2,200.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5061.844113260982,0.10479648345959501,0.18124620858138724,27928.0,8,4,8,8_1,8_4,8_0_0 +660,2,68.0,1,0.0,7,111,2,0,75,8.0,0.0,0.0,1468.4093737519881,0.0,307.86201791552077,44489.08,0,30,2,10840,201700660,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2209.3247530674307,0.0,1091.0,174.0,0.0,32336.0,0,5,2,80.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1776.2713916675089,0.03992600862205981,0.05493169815894077,32336.0,9,5,9,9_0,9_2,9_0_0 +661,2,61.0,3,0.0,5,111,1,68,48,7.0,0.0,0.0,605.6683943065029,0.0,0.0,64839.04688821171,71,71,8,10843,201700661,,,,,3.0,1.0,3.0,2.0,4.0,2.5,2735.8249358180005,0.0,450.0,0.0,0.0,60056.0,1,1,1,62.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,605.6683943065029,0.009341105759168996,0.010085060515294108,24022.4,7,4,7,7_0,7_4,7_0_0 +662,2,85.0,2,0.0,1,111,2,0,77,6.0,0.0,0.0,94.21508355878933,0.0,0.0,7603.631191295744,0,71,1,10844,201700662,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3292.560075617551,0.0,70.0,0.0,0.0,21710.0,0,5,1,50.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,94.21508355878933,0.012390801340633412,0.00433970905383645,21710.0,6,3,6,6_1,6_3,6_1_0 +663,2,52.0,3,0.0,10,111,4,54,38,8.0,0.0,0.0,403.7789295376686,743.1152156581536,0.0,23097.42,41,41,7,10845,201700663,,,118.0,,2.0,2.0,2.0,0.0,2.0,1.5,1320.8788114745453,0.0,300.0,0.0,0.0,45556.0,1,1,1,30.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1146.8941451958221,0.049654643037872724,0.025175479524010495,30370.666666666668,8,4,8,8_1,8_2,8_0_0 +664,1,43.0,3,56.0,5,111,2,0,64,2.0,0.0,0.0,403.7789295376686,0.0,1480.9224654901775,24571.127127683118,0,50,2,10848,201700664,,,,342.0,1.0,0.0,4.0,2.0,3.0,1.8,870.3315435826366,0.0,300.0,837.0,0.0,20643.0,0,1,3,73.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1884.701395027846,0.07670390475919368,0.09129978176756509,11468.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +665,2,31.0,3,0.0,1,111,4,35,47,7.0,0.0,0.0,2860.100750891819,164.54694061001973,0.0,40242.45999999999,30,12,1,10849,201700665,,,710.0,,2.0,0.0,7.0,1.0,3.0,1.8,1861.5224751724975,0.0,2125.0,0.0,0.0,44819.0,1,1,2,140.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3024.647691501839,0.07516060627262447,0.06748583617443135,24899.444444444445,7,4,7,7_1,7_2,7_1_0 +666,2,56.0,4,0.0,9,111,1,0,52,5.0,0.0,0.0,497.99401309645793,286.6301546110021,1061.5931652259337,38965.420000000006,0,50,2,10850,201700666,600.0,600.0,,503.0,3.0,0.0,4.0,2.0,3.0,2.0,2070.5061187290485,0.0,370.0,600.0,0.0,39303.0,0,1,3,80.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1846.2173329333937,0.047380917052437604,0.04697395448015148,19651.5,5,3,5,5_0,5_2,5_0_0 +667,2,39.0,3,0.0,9,111,5,43,64,7.0,0.0,693.9631597817199,1978.5167547345761,0.0,0.0,49820.219999999994,33,50,1,10851,201700667,,,548.0,,2.0,0.0,5.0,2.0,4.0,2.1,2916.541328580203,0.0,1470.0,0.0,0.0,50913.0,1,1,2,150.0,4,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2672.479914516296,0.05364247517406178,0.05249111061057679,24244.285714285714,7,4,7,7_1,7_1,7_0_0 +668,2,43.0,4,0.0,9,300,5,0,54,10.0,0.0,763.359475759892,1615.1157181506744,0.0,0.0,17138.42,0,60,1,10852,201700668,,,,,1.0,2.0,8.0,0.0,1.0,1.0,2477.7879597610286,0.0,1200.0,0.0,0.0,35491.0,0,1,1,165.0,0,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2378.4751939105663,0.13878030728098428,0.06701629128259463,35491.0,9,5,9,9_1,9_1,9_0_0 +669,1,42.0,4,200.0,9,111,2,63,52,3.0,0.0,0.0,567.8664290476954,0.0,1058.2069221173394,19378.14,71,50,1,10853,201700669,,,410.0,,2.0,0.0,4.0,2.0,4.0,2.1,1177.6466422047124,1020.0,0.0,0.0,0.0,30530.0,4,1,3,80.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1626.0733511650349,0.0839127672297256,0.053261492013266784,14538.095238095237,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +670,2,30.0,3,0.0,9,111,6,43,46,5.0,0.0,624.566843803548,1009.4473238441715,106.15931652259337,0.0,37782.97717191821,30,30,1,10855,201700670,,,340.0,,2.0,0.0,5.0,3.0,5.0,2.4,2231.042210398731,0.0,750.0,0.0,0.0,44488.0,1,1,2,109.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1740.1734841703128,0.046057076874918106,0.03911557013509964,18536.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +671,2,53.0,2,0.0,1,111,2,54,62,9.0,0.0,0.0,616.4358324275074,0.0,1079.286384646366,21838.42,42,50,1,10857,201700671,,,275.0,,3.0,2.0,5.0,1.0,3.0,2.0,1627.9946458564593,0.0,458.0,610.0,0.0,64553.0,1,1,2,100.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1695.7222170738735,0.07764857609084694,0.026268681812988914,32276.5,9,5,9,9_1,9_3,9_1_0 +672,2,51.0,1,0.0,1,111,2,31,35,10.0,0.0,0.0,740.261370819059,0.0,1751.6287226227907,75734.64816118815,10,41,2,10858,201700672,,,,,2.0,0.0,2.0,1.0,3.0,1.8,3230.4939836121334,0.0,550.0,990.0,0.0,96296.0,1,1,1,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2491.89009344185,0.032902907109811766,0.02587739982389559,53497.777777777774,10,5,10,10_0,10_4,10_1_0 +673,1,45.0,5,164.0,9,120,2,0,56,1.0,0.0,0.0,767.1799661215703,0.0,0.0,18772.079999999998,0,41,1,1086,201700673,,,470.0,246.0,1.0,0.0,4.0,2.0,3.0,2.0,1336.9401309622533,0.0,570.0,0.0,0.0,19316.0,0,1,3,90.0,0,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,767.1799661215703,0.040868138539872534,0.03971733102720906,9658.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +674,2,52.0,2,0.0,3,111,1,0,64,8.0,0.0,0.0,484.5347154452023,70.77287768172891,0.0,16342.201152029089,0,50,2,10860,201700674,,,120.0,,1.0,1.0,4.0,0.0,1.0,1.0,3450.1666868464417,0.0,360.0,0.0,0.0,29505.0,0,1,1,69.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,555.3075931269312,0.033979975399946835,0.0188207962422278,29505.0,8,4,8,8_0,8_2,8_0_1 +675,2,31.0,3,0.0,6,211,5,43,64,7.0,0.0,624.566843803548,1005.4095345487948,0.0,0.0,33381.56,33,50,1,10862,201700675,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2608.307858264719,0.0,747.0,0.0,0.0,46003.0,1,1,2,98.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1629.9763783523426,0.0488286460654428,0.03543195831472605,25557.222222222223,7,4,7,7_1,7_2,7_0_0 +676,2,41.0,1,0.0,6,111,2,42,37,10.0,0.0,0.0,572.0201501783638,0.0,1353.5312856630655,46413.61665845404,31,20,1,10863,201700676,,,480.0,,2.0,1.0,4.0,1.0,3.0,1.8,2248.010144929688,0.0,425.0,765.0,0.0,95921.0,1,1,2,97.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1925.5514358414293,0.04148677854628462,0.02007434697137675,53289.444444444445,10,5,10,10_1,10_4,10_0_0 +677,2,39.0,3,0.0,8,111,2,56,63,2.0,0.0,0.0,1266.0080977004504,0.0,2359.178961661598,36082.759999999995,50,43,1,10864,201700677,,,379.0,,2.0,0.0,5.0,2.0,4.0,2.3,2084.407322500619,2274.0,0.0,0.0,0.0,25599.0,1,1,2,96.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3625.1870593620483,0.10046867421899125,0.14161440131888153,11130.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +678,2,47.0,3,0.0,1,112,2,63,62,3.0,0.0,0.0,1068.925042913309,0.0,1991.9189122208743,39786.73999999999,50,50,1,10865,201700678,,,780.0,,2.0,1.0,7.0,1.0,3.0,2.0,2513.2182029181236,1920.0,0.0,0.0,0.0,30785.0,1,1,2,120.0,6,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3060.8439551341835,0.07693125787974044,0.09942647247471767,15392.5,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +679,2,42.0,3,0.0,2,111,1,0,46,5.0,0.0,0.0,672.964882562781,0.0,884.6609710216114,28688.480000000003,0,31,3,10867,201700679,,,,,1.0,0.0,3.0,1.0,2.0,1.5,2271.218177665208,0.0,500.0,500.0,0.0,32425.0,0,1,2,70.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1557.6258535843924,0.05429447128549133,0.04803780581601827,21616.666666666668,6,3,6,6_0,6_3,6_0_1 +680,2,53.0,3,0.0,1,221,6,85,62,3.0,1586.456009138882,0.0,899.8951702977245,159.23897478389006,172.06860083117607,16954.319859983105,71,60,1,10868,201700680,,,220.0,,1.0,1.0,2.0,0.0,2.0,1.5,2522.3914251445267,165.8560052665561,600.0,0.0,0.0,21777.0,6,1,1,80.0,1,1.0,3,4,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2817.658755051673,0.16619119954803546,0.12938691073387854,14518.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +681,1,74.0,4,9999.0,9,120,4,0,78,5.0,0.0,0.0,160.16564204994188,0.0,0.0,9068.56,0,70,1,10869,201700681,,,90.0,,0.0,5.0,3.0,0.0,1.0,1.0,2158.9692143996676,0.0,119.0,0.0,0.0,19119.0,0,5,3,70.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,160.16564204994188,0.017661640001272738,0.00837730226737496,19119.0,5,3,5,5_1,5_0,5_0_0 +682,2,73.0,3,0.0,1,300,2,77,78,5.0,1110.5192063972174,0.0,812.9415781358394,238.8584621758351,0.0,19911.891693502603,50,70,1,1087,201700682,,,185.0,,0.0,3.0,7.0,0.0,2.0,1.5,2388.1925405583243,0.0,604.0,0.0,0.0,27486.0,5,5,1,130.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2162.319246708892,0.10859436561793236,0.0786698408902311,18324.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +683,2,66.0,1,0.0,5,111,4,74,31,10.0,0.0,0.0,1211.3367886130059,0.0,0.0,22778.48031599412,30,10,1,10871,201700683,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1962.520673864295,0.0,900.0,0.0,0.0,147059.0,5,1,1,125.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1211.3367886130059,0.05317899929269885,0.008237080278072106,98039.33333333333,10,5,10,10_1,10_3,10_0_0 +684,2,77.0,3,0.0,3,221,2,77,78,4.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,25400.090875301634,71,50,1,10872,201700684,,,300.0,,0.0,3.0,5.0,0.0,2.0,1.5,2102.2895391936645,1500.0,0.0,0.0,0.0,26833.0,5,5,1,89.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2391.2843399485805,0.09414471592594975,0.0891172936290605,17888.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +685,2,88.0,2,0.0,4,111,1,0,86,9.0,0.0,0.0,621.3126811933608,0.0,1157.802867728383,44582.96,0,60,2,10873,201700685,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2391.7654294913805,1116.0,0.0,0.0,0.0,25310.0,0,6,5,104.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1779.115548921744,0.03990572965370052,0.07029298889457701,25310.0,7,4,7,7_0,7_3,7_0_1 +686,2,65.0,2,0.0,5,111,2,56,31,10.0,0.0,0.0,1884.3016711757866,0.0,0.0,58409.32,44,31,1,10874,201700686,,,530.0,,2.0,2.0,4.0,0.0,2.0,1.5,1731.382441976091,0.0,1400.0,0.0,0.0,57547.0,1,5,2,134.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1884.3016711757866,0.03226029118599201,0.032743699431348056,38364.666666666664,9,5,9,9_1,9_3,9_0_0 +687,2,79.0,1,0.0,5,111,2,0,78,7.0,0.0,0.0,523.3278855929742,0.0,975.210300774803,17228.090875301627,0,71,1,10875,201700687,,,100.0,,0.0,1.0,4.0,0.0,1.0,1.0,2602.430392819102,940.0,0.0,0.0,0.0,22891.0,0,5,1,81.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1498.5381863677771,0.08698225457564177,0.06546407698954948,22891.0,6,3,6,6_1,6_3,6_0_0 +688,2,29.0,2,0.0,9,112,2,21,46,7.0,0.0,0.0,1076.7438121004495,212.31863304518674,0.0,36162.017038047044,43,43,1,10877,201700688,,,185.0,,2.0,0.0,4.0,1.0,3.0,1.8,2387.7898799498907,0.0,800.0,0.0,0.0,46445.0,1,1,2,84.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1289.0624451456363,0.035646862391259276,0.027754601036616134,25802.777777777777,7,4,7,7_1,7_0,7_0_0 +689,2,60.0,3,0.0,1,400,5,0,69,3.0,0.0,0.0,672.964882562781,49.54101437721024,0.0,13568.754661438774,0,50,1,10879,201700689,,,150.0,,1.0,2.0,4.0,0.0,1.0,1.0,1899.9204523614928,0.0,500.0,0.0,0.0,13670.0,0,1,3,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,722.5058969399912,0.05324776775523036,0.05285339407022613,13670.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +690,1,23.0,4,405.0,4,111,1,0,46,2.0,0.0,0.0,484.5347154452023,0.0,2388.5846217583507,12072.820315994117,0,71,2,1088,201700690,750.0,750.0,200.0,,1.0,0.0,4.0,3.0,4.0,2.3,605.3304288070107,0.0,360.0,1350.0,0.0,27313.0,0,1,3,82.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2873.119337203553,0.2379824483428478,0.10519237495711029,11875.217391304348,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +691,2,48.0,5,0.0,4,112,2,62,65,2.0,0.0,0.0,1376.8861497234498,0.0,1857.7880391453841,24083.4,71,44,1,10880,201700691,,,510.0,,2.0,0.0,6.0,4.0,6.0,3.3,2021.2697695130378,0.0,1023.0,1050.0,0.0,39186.0,4,1,1,105.0,9,0.0,4,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3234.674188868834,0.1343113592295454,0.08254667965265232,11874.545454545456,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +692,2,68.0,4,0.0,9,111,4,0,78,4.0,0.0,0.0,740.261370819059,0.0,0.0,10281.44,0,71,2,10881,201700692,,,,570.0,0.0,1.0,2.0,0.0,1.0,1.0,3823.8708048959725,0.0,550.0,0.0,0.0,15960.0,0,5,3,48.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,740.261370819059,0.07199977540296486,0.046382291404702944,15960.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +693,2,47.0,3,0.0,7,111,4,77,53,9.0,0.0,0.0,1480.522741638118,0.0,0.0,37855.24668278628,70,30,2,10882,201700693,,,,,1.0,1.0,2.0,0.0,2.0,1.5,3725.702126819642,0.0,1100.0,0.0,0.0,54111.0,5,1,2,55.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1480.522741638118,0.03911010682467296,0.027360846068971524,36074.0,9,5,9,9_0,9_4,9_0_0 +694,2,95.0,2,0.0,99,111,1,0,72,6.0,0.0,0.0,390.319631886413,0.0,0.0,12568.8258467513,0,71,2,10883,201700694,,,,,0.0,3.0,1.0,0.0,1.0,1.0,3639.2983118075767,0.0,290.0,0.0,0.0,20440.0,0,5,3,26.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,390.319631886413,0.031054581919225176,0.019095872401487916,20440.0,5,3,5,5_0,5_3,5_0_0 +695,1,31.0,4,559.0,9,111,1,68,68,4.0,0.0,0.0,767.1799661215703,0.0,0.0,8053.696722052928,41,20,2,10884,201700695,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2817.292751629676,0.0,570.0,0.0,0.0,36998.0,1,1,3,40.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,767.1799661215703,0.09525811470164378,0.020735714528395326,17618.095238095237,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +696,2,41.0,4,0.0,99,400,2,0,21,2.0,0.0,277.585263912688,2234.2434101084327,0.0,92.0047409862476,17932.55665845403,0,44,1,10885,201700696,,,180.0,,1.0,0.0,4.0,0.0,1.0,1.0,3931.428104728113,0.0,1660.0,52.0,0.0,13445.0,0,1,1,80.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2603.8334150073683,0.14520146037178872,0.19366555708496602,13445.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +697,2,30.0,3,0.0,1,212,5,13,52,4.0,0.0,277.585263912688,710.6509159862967,84.9274532180747,0.0,36910.9645718027,50,50,1,10886,201700697,,,258.0,,2.0,0.0,5.0,1.0,3.0,1.8,2027.0142827626287,0.0,528.0,0.0,0.0,29634.0,1,1,1,105.0,3,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1073.1636331170594,0.029074386041292415,0.03621393106286898,16463.333333333332,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +698,2,42.0,2,0.0,1,111,2,42,37,9.0,0.0,0.0,70.1482059411859,0.0,130.71967861449488,46313.9,31,20,1,10887,201700698,,,,,2.0,0.0,4.0,3.0,5.0,2.4,3074.0625549099336,126.0,0.0,0.0,0.0,85560.0,1,1,2,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,200.8678845556808,0.004337097168575326,0.0023476844852230107,35650.0,9,5,9,9_1,9_4,9_1_0 +699,2,80.0,2,0.0,5,112,2,0,77,9.0,0.0,0.0,803.5200697799605,0.0,2956.5369651542255,22145.12,0,44,1,10889,201700699,,,282.0,,0.0,1.0,4.0,0.0,1.0,1.0,2606.0594484397448,0.0,597.0,1671.0,0.0,35813.0,0,5,1,100.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3760.057034934186,0.16979167577029097,0.10499140074649391,35813.0,9,5,9,9_1,9_1,9_0_0 +700,2,44.0,2,0.0,5,111,2,54,46,9.0,0.0,0.0,1176.342614719741,0.0,1620.698898911592,52668.79169350261,31,43,1,1089,201700700,,,261.0,,2.0,1.0,6.0,1.0,3.0,1.8,2490.497256259555,0.0,874.0,916.0,0.0,62787.0,1,1,2,130.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2797.041513631333,0.05310624040718947,0.04454809934590494,34881.666666666664,9,5,9,9_1,9_3,9_0_0 +701,2,61.0,2,0.0,1,112,2,63,52,8.0,0.0,0.0,802.174140014835,0.0,2008.180404219058,35429.68,50,50,1,10890,201700701,,,288.0,,2.0,1.0,4.0,0.0,2.0,1.5,1422.249245551726,0.0,596.0,1135.0,0.0,46646.0,1,1,1,95.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2810.3545442338927,0.07932204141369306,0.06024856459790535,31097.333333333332,8,4,8,8_1,8_0,8_1_0 +702,2,68.0,4,0.0,2,111,2,0,74,7.0,0.0,0.0,713.3427755165478,0.0,2388.5846217583507,23622.96,0,10,1,10891,201700702,,,240.0,,0.0,3.0,5.0,0.0,1.0,1.0,3505.6321122631834,0.0,530.0,1350.0,0.0,23915.0,0,5,5,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3101.927397274899,0.13130985267193016,0.12970635154818727,23915.0,7,4,7,7_1,7_4,7_0_1 +703,2,44.0,3,0.0,1,112,2,48,54,6.0,0.0,0.0,1036.3659191466827,0.0,3243.1671197652277,76024.62000000001,42,41,1,10892,201700703,,,396.0,,2.0,0.0,6.0,2.0,4.0,2.1,1244.539732828106,0.0,770.0,1833.0,0.0,48768.0,4,1,2,160.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4279.53303891191,0.056291409794773185,0.08775289203805589,23222.85714285714,6,3,6,6_1,6_1,6_1_0 +704,2,87.0,3,0.0,1,111,1,0,86,3.0,0.0,0.0,270.53188279023794,0.0,406.94404666994126,8592.0,0,71,1,10893,201700704,,,276.0,,0.0,4.0,6.0,0.0,1.0,1.0,1718.154768529673,0.0,201.0,230.0,0.0,13445.0,0,5,1,80.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,677.4759294601793,0.07884961935057952,0.050388689435491206,13445.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +705,2,63.0,4,0.0,1,400,5,0,78,1.0,0.0,346.98157989085996,524.9126083989692,63.69558991355603,0.0,24743.950875301627,0,70,1,10894,201700705,,,110.0,,0.0,0.0,5.0,0.0,1.0,1.0,4096.481966888372,0.0,390.0,0.0,0.0,9842.0,0,5,1,100.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,935.5897782033851,0.03781084851478797,0.09506094068313199,9842.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +706,2,59.0,3,0.0,7,112,4,77,54,3.0,0.0,0.0,2633.984550350725,0.0,0.0,41837.61703804704,60,42,1,10895,201700706,,,496.0,,2.0,1.0,6.0,2.0,4.0,2.5,1646.4133475870967,0.0,1957.0,0.0,0.0,34743.0,5,1,1,150.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2633.984550350725,0.06295732732472274,0.07581338831853107,13897.2,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +707,2,49.0,4,0.0,5,111,2,0,42,9.0,0.0,0.0,423.967876014552,0.0,569.7216653379178,22081.159999999996,0,30,2,10896,201700707,,,,459.0,1.0,0.0,2.0,1.0,2.0,1.3,994.480718101314,0.0,315.0,322.0,0.0,44770.0,0,1,3,48.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,993.6895413524699,0.04500169109559779,0.0221954331327333,34438.46153846154,9,5,9,9_0,9_4,9_0_0 +708,0,61.0,3,0.0,99,400,2,0,78,2.0,0.0,0.0,0.0,0.0,0.0,15915.5,0,60,1,10897,201700708,,,,,0.0,2.0,7.0,0.0,1.0,1.0,1741.5314431160775,0.0,0.0,0.0,0.0,12830.0,0,5,5,150.0,0,1.0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,12830.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +709,1,35.0,4,592.0,5,111,2,85,47,2.0,0.0,0.0,807.2611001168219,0.0,1504.3137618334729,28787.040000000005,71,50,2,109,201700709,,,800.0,18.0,1.0,0.0,6.0,6.0,8.0,3.5,587.4758010200029,1450.0,0.0,0.0,0.0,39335.0,6,1,3,117.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2311.5748619502947,0.08029915065773675,0.05876636232236671,11238.57142857143,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +710,1,52.0,4,256.0,1,120,2,0,85,1.0,0.0,0.0,1345.929765125562,111.46728234872305,0.0,12761.140000000001,0,71,1,10902,201700710,,,230.0,,1.0,1.0,4.0,1.0,2.0,1.5,1525.8516360412693,0.0,1000.0,0.0,0.0,11707.0,0,6,3,80.0,0,1.0,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1457.397047474285,0.11420586620586287,0.12448936939218289,7804.666666666667,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +711,2,64.0,2,0.0,5,120,4,75,74,9.0,0.0,0.0,2479.202627361285,0.0,0.0,38404.719999999994,42,31,1,10903,201700711,,,402.0,,0.0,2.0,6.0,0.0,2.0,1.5,1806.6133146542927,0.0,1842.0,0.0,0.0,57790.0,5,5,1,130.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2479.202627361285,0.06455463358048921,0.04290020120022989,38526.666666666664,9,5,9,9_1,9_0,9_0_0 +712,2,79.0,3,0.0,4,111,2,78,78,7.0,0.0,0.0,444.15682249143543,0.0,2717.6785029783905,30169.08,70,71,1,10905,201700712,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,2379.1924278586516,0.0,330.0,1536.0,0.0,36401.0,5,5,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3161.835325469826,0.10480383642689223,0.08686122154528243,24267.333333333332,7,4,7,7_1,7_4,7_0_1 +713,2,75.0,2,0.0,5,111,2,77,77,4.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,20855.239999999998,70,70,1,10907,201700713,,,420.0,,0.0,2.0,5.0,0.0,2.0,1.5,1176.5534182086192,1300.0,0.0,0.0,0.0,25403.0,5,5,1,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2072.4464279554363,0.09937293591229046,0.0815827432962814,16935.333333333332,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +714,0,36.0,5,0.0,1,111,2,0,52,1.0,0.0,0.0,0.0,0.0,0.0,14101.94,0,42,2,1091,201700714,,,,,1.0,0.0,2.0,1.0,2.0,1.3,2127.1596087825637,0.0,0.0,0.0,0.0,10630.0,0,1,5,40.0,7,5.0,2,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,8176.923076923076,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +715,2,51.0,3,0.0,9,111,2,78,52,6.0,0.0,0.0,843.8979627337274,0.0,1365.9165392573682,35959.864887796815,60,50,1,10910,201700715,,,376.0,493.0,2.0,1.0,5.0,1.0,3.0,2.0,2740.5470474467215,0.0,627.0,772.0,0.0,43982.0,5,1,3,93.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2209.8145019910953,0.06145224707840903,0.05024361106796179,21991.0,6,3,6,6_1,6_2,6_0_0 +716,2,23.0,3,0.0,3,111,1,0,46,7.0,0.0,0.0,434.25079868353174,0.0,809.2170580897301,19184.02,0,20,2,10912,201700716,,,,385.0,1.0,0.0,2.0,0.0,1.0,1.0,4026.6026226125405,780.0,0.0,0.0,0.0,26207.0,0,1,3,50.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1243.467856773262,0.06481789827018852,0.04744792829294699,26207.0,7,4,7,7_0,7_2,7_0_1 +717,1,65.0,3,209.0,4,111,2,0,22,2.0,0.0,0.0,383.58998306078513,0.0,1236.7560374882128,17466.862821199444,0,50,2,10913,201700717,,,125.0,276.0,1.0,2.0,2.0,0.0,1.0,1.0,1948.2701926919888,0.0,285.0,699.0,0.0,12829.0,0,1,3,65.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1620.3460205489978,0.09276686014745544,0.1263033767674018,12829.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +718,2,69.0,2,0.0,1,112,2,0,71,1.0,3115.7996019487646,0.0,742.9532303493102,106.15931652259337,0.0,7336.096722052928,0,50,1,10914,201700718,,,,,0.0,0.0,3.0,0.0,1.0,1.0,1953.2841200368703,0.0,552.0,0.0,0.0,9613.0,0,5,1,100.0,4,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3964.9121488206683,0.5404661769114639,0.41245315185901055,9613.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +719,2,44.0,1,0.0,1,112,2,31,31,10.0,0.0,0.0,646.0462872602698,0.0,2883.994765530453,82348.36000000002,30,30,1,10915,201700719,,,,,2.0,0.0,6.0,2.0,4.0,2.3,2289.9679573962662,0.0,480.0,1630.0,0.0,257272.0,1,1,2,120.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3530.041052790723,0.042867168851823186,0.013721046413098677,111857.39130434784,10,5,10,10_1,10_2,10_1_0 +720,2,45.0,3,0.0,1,111,6,55,12,7.0,0.0,0.0,942.1508355878933,0.0,1539.310089577604,57965.213316908055,50,50,1,10917,201700720,,,85.0,,2.0,0.0,5.0,2.0,4.0,2.1,3653.5627206391264,0.0,700.0,870.0,0.0,50328.0,1,1,2,160.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2481.4609251654974,0.04280948491638988,0.049305772634825495,23965.714285714286,7,4,7,7_1,7_3,7_1_0 +721,2,23.0,5,0.0,99,111,4,0,63,3.0,0.0,0.0,471.07541779394666,0.0,0.0,14805.096855924086,0,43,1,10919,201700721,,,,320.0,1.0,0.0,2.0,0.0,1.0,1.0,3322.85406639068,0.0,350.0,0.0,0.0,13904.0,0,1,3,50.0,7,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,471.07541779394666,0.031818462410494214,0.033880568023154964,13904.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +722,2,34.0,2,0.0,1,112,2,55,46,8.0,0.0,0.0,2961.045483276236,0.0,0.0,47347.331693502594,43,50,1,1092,201700722,,,800.0,,2.0,0.0,5.0,2.0,4.0,2.1,2217.693386909409,0.0,2200.0,0.0,0.0,58864.0,1,1,2,200.0,9,3.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2961.045483276236,0.06253880371642097,0.050303164638424776,28030.47619047619,8,4,8,8_1,8_1,8_1_0 +723,2,53.0,3,0.0,6,112,2,56,62,7.0,2379.684013708323,0.0,1086.2208688545636,0.0,268.4714198163333,23295.97342372239,50,50,1,10921,201700723,,,160.0,,2.0,2.0,5.0,0.0,2.0,1.5,1726.5492395648612,258.7781675673967,700.0,0.0,0.0,36202.0,1,1,1,90.0,8,0.0,3,3,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3734.3763023792203,0.16030136343547202,0.10315386725537871,24134.666666666668,7,4,7,7_1,7_0,7_0_0 +724,1,27.0,2,150.0,1,111,2,0,46,2.0,0.0,0.0,986.5665178370369,0.0,0.0,20229.08,0,20,2,10923,201700724,,,,,1.0,0.0,1.0,0.0,1.0,1.0,5893.846360020543,0.0,733.0,0.0,0.0,12570.0,0,1,3,14.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,986.5665178370369,0.04876971754706773,0.0784858009416895,12570.0,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +725,2,83.0,3,0.0,1,111,2,0,74,10.0,0.0,0.0,767.1799661215703,0.0,1309.298237111985,33229.11800298474,0,30,2,10924,201700725,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2817.272747585113,0.0,570.0,740.0,0.0,37327.0,0,5,1,68.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2076.478203233555,0.06248971769419338,0.05562938900081858,37327.0,9,5,9,9_0,9_4,9_1_0 +726,2,83.0,3,0.0,1,120,2,77,75,8.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,24303.74,71,44,1,10925,201700726,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1632.0584003790977,800.0,0.0,0.0,0.0,46560.0,5,5,3,100.0,0,1.0,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1275.3516479725763,0.052475530431636296,0.027391573195287292,31040.0,8,4,8,8_1,8_1,8_1_0 +727,1,31.0,3,292.0,99,112,4,0,52,4.0,0.0,0.0,1493.9820392893737,176.9321942043223,0.0,40734.840000000004,0,30,2,10927,201700727,,,,,1.0,0.0,4.0,2.0,3.0,1.6,274.6852019970618,0.0,1110.0,0.0,0.0,25618.0,0,1,3,85.0,9,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1670.914233493696,0.041019290452440606,0.06522422646161667,16011.25,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +728,2,62.0,2,0.0,7,300,2,0,78,4.0,1427.810408224994,1387.9263195634398,722.7642838724267,53.079658261296686,0.0,19424.542505205332,0,71,1,10928,201700728,,,92.0,,0.0,0.0,5.0,0.0,1.0,1.0,2666.672969500426,0.0,537.0,0.0,0.0,16860.0,0,5,1,100.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3591.5806699221575,0.18489911249954516,0.21302376452681837,16860.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +729,2,34.0,2,0.0,1,111,4,0,37,3.0,0.0,0.0,874.8543473316153,0.0,0.0,27387.62,0,20,2,10929,201700729,,,,,1.0,0.0,3.0,1.0,2.0,1.3,4538.060065420414,0.0,650.0,0.0,0.0,22006.0,0,4,2,45.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,874.8543473316153,0.03194342361006963,0.03975526435206831,16927.69230769231,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +730,2,33.0,1,0.0,9,111,1,0,31,7.0,0.0,0.0,269.1859530251124,0.0,0.0,42797.836974448146,0,10,8,1093,201700730,,,,760.0,1.0,0.0,3.0,0.0,1.0,1.0,4151.0799079920835,0.0,200.0,0.0,0.0,28208.0,0,1,3,70.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,269.1859530251124,0.006289709295024095,0.009542893967140966,28208.0,8,4,8,8_0,8_3,8_0_0 +731,2,40.0,2,0.0,1,111,2,55,37,10.0,0.0,0.0,955.610133239149,0.0,2990.1540820530467,46122.700000000004,43,20,1,10930,201700731,,,380.0,,3.0,0.0,5.0,1.0,3.0,2.0,2650.3545078295547,0.0,710.0,1690.0,0.0,90530.0,1,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3945.764215292196,0.08554928951020203,0.04358515647069696,45265.0,10,5,10,10_1,10_4,10_1_0 +732,2,60.0,2,0.0,6,112,4,22,42,8.0,0.0,416.377895869032,2018.894647688343,106.15931652259337,0.0,25121.420000000002,30,41,1,10931,201700732,,,402.0,,2.0,2.0,7.0,0.0,2.0,1.5,2326.4174200665775,0.0,1500.0,0.0,0.0,45149.0,1,1,2,160.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2541.431860079968,0.10116593170608858,0.0562898815052375,30099.333333333332,8,4,8,8_1,8_0,8_0_0 +733,2,27.0,2,0.0,6,111,4,0,47,6.0,0.0,0.0,417.2382271889242,0.0,0.0,14596.399999999998,0,31,2,10932,201700733,,,,465.0,1.0,0.0,2.0,0.0,1.0,1.0,3768.3382018851703,0.0,310.0,0.0,0.0,24558.0,0,1,3,35.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,417.2382271889242,0.028585009124779005,0.016989910708890145,24558.0,7,4,7,7_0,7_2,7_0_0 +734,1,42.0,3,315.0,99,111,1,0,85,1.0,0.0,0.0,267.23126072832724,0.0,497.9797280552186,14296.851191295746,0,50,2,10934,201700734,,,,,0.0,1.0,3.0,3.0,4.0,2.1,1169.4159091501015,480.0,0.0,0.0,0.0,20630.0,0,6,3,63.0,7,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,765.2109887835459,0.05352304353908531,0.037092146814519916,9823.809523809523,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +735,2,50.0,2,0.0,8,111,2,0,38,8.0,0.0,0.0,672.964882562781,0.0,1769.3219420432229,39111.68,0,20,1,10935,201700735,,,420.0,980.0,1.0,2.0,4.0,2.0,3.0,2.0,1477.1729540465542,0.0,500.0,1000.0,0.0,59880.0,0,1,3,115.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2442.286824606004,0.06244392530839902,0.04078635311633273,29940.0,8,4,8,8_1,8_2,8_0_0 +736,2,63.0,2,0.0,5,112,2,77,74,10.0,0.0,0.0,1366.0441983163826,0.0,4015.8849226823536,82342.26547641092,50,42,1,10936,201700736,,,282.0,,0.0,1.0,7.0,1.0,3.0,2.0,2240.1453471764257,1295.6756730126501,479.0,1510.0,0.0,79813.0,5,5,1,170.0,8,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5381.929120998736,0.06536046937572454,0.0674317356946705,39906.5,9,5,9,9_1,9_1,9_0_0 +737,1,53.0,4,240.0,99,300,4,0,67,3.0,0.0,0.0,11042.00779309011,106.15931652259337,0.0,22598.44,0,71,2,10937,201700737,,,393.0,231.0,2.0,3.0,3.0,2.0,3.0,2.0,513.9497401092398,0.0,8204.0,0.0,0.0,27860.0,0,1,3,53.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,11148.167109612703,0.4933157823997012,0.4001495732093576,13930.0,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +738,2,60.0,2,0.0,1,400,5,21,55,1.0,0.0,978.4880552922251,1615.1157181506744,265.39829130648343,0.0,41000.56,71,60,1,10938,201700738,,,400.0,,3.0,4.0,5.0,1.0,3.0,2.0,2031.7286319532163,0.0,1200.0,0.0,0.0,10917.0,1,1,1,156.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2859.002064749383,0.0697308052560595,0.2618853224099462,5458.5,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +739,2,79.0,3,0.0,3,111,2,0,75,5.0,0.0,624.566843803548,2074.077768058491,0.0,0.0,31593.736722052934,0,70,1,1094,201700739,,,260.0,,1.0,3.0,5.0,0.0,2.0,1.5,3004.739930334547,0.0,1541.0,0.0,0.0,31534.0,0,5,1,85.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2698.644611862039,0.08541707603641394,0.0855788866576406,21022.666666666668,5,3,5,5_1,5_4,5_0_1 +740,2,48.0,3,0.0,4,111,4,0,46,8.0,55.52596031986088,0.0,1391.691377139831,0.0,0.0,26623.990875301628,0,31,2,10941,201700740,,,192.0,466.0,1.0,0.0,3.0,0.0,1.0,1.0,2541.7175957442423,0.0,1034.0,0.0,0.0,29351.0,0,1,3,75.0,5,4.0,1,9,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1447.2173374596919,0.05435764098019719,0.04930725826921372,29351.0,8,4,8,8_0,8_2,8_0_1 +741,2,70.0,3,0.0,4,112,2,77,78,4.0,79.32280045694411,0.0,1480.522741638118,56.61830214538313,0.0,18072.780315994118,70,71,1,10942,201700741,,,220.0,,0.0,2.0,4.0,0.0,2.0,1.5,2063.6904068477015,0.0,1100.0,0.0,0.0,27500.0,5,5,1,90.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1616.4638442404453,0.08944190190868978,0.058780503426925285,18333.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +742,2,41.0,3,0.0,8,111,2,0,46,8.0,0.0,0.0,955.610133239149,0.0,0.0,16310.32,0,31,2,10944,201700742,,,,610.0,1.0,0.0,3.0,0.0,1.0,1.0,3792.177422213736,0.0,710.0,0.0,0.0,32048.0,0,1,3,57.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,955.610133239149,0.05858929397088157,0.029818089529429263,32048.0,9,5,9,9_0,9_3,9_0_0 +743,2,24.0,4,0.0,6,111,2,0,38,9.0,0.0,0.0,672.964882562781,0.0,1252.6799349666019,41575.48688821171,0,20,2,10945,201700743,,,,512.0,3.0,0.0,3.0,1.0,4.0,2.5,5349.062883335197,0.0,500.0,708.0,0.0,76225.0,0,1,3,65.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1925.6448175293829,0.04631683142297437,0.025262641095826602,30490.0,8,4,8,8_0,8_3,8_0_0 +744,2,60.0,1,0.0,2,111,2,43,47,10.0,0.0,0.0,632.5869896090142,0.0,3644.8032006090393,38578.8658467513,33,31,1,10946,201700744,,,660.0,,2.0,0.0,5.0,1.0,3.0,2.0,1536.8532037561745,0.0,470.0,2060.0,0.0,97370.0,1,1,1,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4277.390190218053,0.11087392271222637,0.04392924093887289,48685.0,10,5,10,10_1,10_3,10_0_1 +745,2,37.0,2,0.0,3,112,2,46,21,9.0,0.0,0.0,1226.142016029387,0.0,2703.5239274420446,62664.12,43,43,1,10947,201700745,,,320.0,,2.0,0.0,6.0,2.0,4.0,2.1,2490.721614279554,0.0,911.0,1528.0,0.0,80828.0,1,1,2,200.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3929.6659434714315,0.06270998369515811,0.04861763180421923,38489.52380952381,9,5,9,9_1,9_0,9_0_1 +746,2,44.0,3,0.0,7,111,2,55,46,7.0,0.0,0.0,767.1799661215703,0.0,1265.0651885609043,28216.020315994116,41,31,1,10948,201700746,,,300.0,,2.0,0.0,4.0,1.0,3.0,1.8,2319.0576408946217,0.0,570.0,715.0,0.0,49038.0,1,1,2,95.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2032.2451546824745,0.07202451415625422,0.041442252022563617,27243.333333333332,7,4,7,7_1,7_3,7_0_0 +747,2,59.0,3,0.0,5,111,2,75,56,5.0,0.0,0.0,1041.749638207185,0.0,1472.0758557799616,50956.26933333333,50,50,1,10949,201700747,,,320.0,,1.0,2.0,4.0,0.0,2.0,1.5,1868.662496328181,0.0,774.0,832.0,0.0,28395.0,5,1,1,80.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2513.8254939871467,0.04933299723225055,0.08853056855034853,18930.0,5,3,5,5_1,5_3,5_0_0 +748,2,51.0,4,0.0,8,112,4,85,69,5.0,0.0,0.0,2261.162005410944,169.8549064361494,0.0,27893.559999999998,50,50,1,1095,201700748,,,500.0,,2.0,1.0,6.0,2.0,4.0,2.5,1768.464753913379,0.0,1680.0,0.0,0.0,48482.0,7,1,2,100.0,8,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2431.0169118470935,0.08715333976183369,0.050142669688690515,19392.8,5,3,5,5_1,5_0,5_0_0 +749,2,50.0,3,0.0,4,111,1,0,54,2.0,0.0,0.0,484.5347154452023,0.0,0.0,20632.7,0,31,2,10950,201700749,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3014.137527895068,0.0,360.0,0.0,0.0,13964.0,0,1,1,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,484.5347154452023,0.023483824969354583,0.03469884814130638,13964.0,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +750,2,49.0,1,0.0,7,112,2,22,37,5.0,0.0,0.0,1742.0728063432703,1810.016346710217,946.3773045714684,68648.53921049864,41,44,1,10952,201700750,,,620.0,,2.0,0.0,6.0,2.0,4.0,2.5,766.802848731281,912.2080289660586,917.0,0.0,0.0,51295.0,1,1,1,154.0,9,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4498.466457624956,0.06552894656405145,0.08769795219075847,20518.0,5,3,5,5_1,5_0,5_0_0 +751,2,46.0,3,0.0,1,112,2,22,22,2.0,0.0,0.0,2018.894647688343,4423.304855108057,0.0,51442.97157058309,42,50,1,10953,201700751,,,,,2.0,0.0,7.0,2.0,4.0,2.3,2867.8307116929304,0.0,1500.0,0.0,0.0,25061.0,1,1,3,200.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6442.1995027964,0.12522992560718008,0.25706075187727545,10896.08695652174,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +752,2,72.0,3,0.0,8,111,2,0,75,5.0,0.0,0.0,2520.9264500801773,0.0,0.0,21261.620000000003,0,44,2,10955,201700752,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2077.8595818094304,0.0,1873.0,0.0,0.0,19363.0,0,5,1,67.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2520.9264500801773,0.11856699772078408,0.1301929685524029,19363.0,5,3,5,5_0,5_3,5_0_0 +753,2,49.0,2,0.0,6,300,2,55,62,9.0,0.0,0.0,969.0694308904046,0.0,1804.7083808840873,63921.98796721441,60,50,1,10956,201700753,,,300.0,,3.0,1.0,5.0,1.0,3.0,2.0,1935.3232097458556,0.0,720.0,1020.0,0.0,66346.0,1,1,2,80.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2773.777811774492,0.04339317189567325,0.04180776251431122,33173.0,9,5,9,9_1,9_0,9_0_0 +754,2,78.0,2,0.0,7,112,2,72,74,6.0,0.0,0.0,1749.7086946632305,2653.9829130648345,0.0,57835.644868945375,44,50,1,10957,201700754,,,350.0,,0.0,2.0,8.0,0.0,2.0,1.5,1917.1424458158683,0.0,1300.0,0.0,0.0,32070.0,5,5,1,280.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4403.691607728065,0.07614148018417981,0.13731498620916946,21380.0,6,3,6,6_1,6_0,6_0_0 +755,1,32.0,3,550.0,99,111,2,0,56,2.0,0.0,0.0,888.5439419216882,0.0,1655.7825957836017,16003.5,0,50,2,10959,201700755,,,620.0,75.0,1.0,0.0,5.0,4.0,5.0,2.2,748.491911428058,1596.0,0.0,0.0,0.0,25290.0,0,4,3,110.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2544.32653770529,0.15898563049990877,0.10060603154232067,11495.454545454544,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +756,2,45.0,2,0.0,6,111,4,37,37,10.0,0.0,0.0,2153.487624200899,0.0,0.0,138178.8,20,20,2,1096,201700756,,,,,2.0,0.0,5.0,3.0,5.0,2.4,633.9419581166039,0.0,1600.0,0.0,0.0,140290.0,1,1,2,170.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2153.487624200899,0.01558479031661079,0.015350257496620565,58454.16666666667,10,5,10,10_0,10_3,10_0_0 +757,1,50.0,4,351.0,3,111,1,63,64,3.0,0.0,0.0,511.45331074771354,0.0,548.4898020333991,40794.465764717665,50,71,2,10961,201700757,,,,131.0,2.0,3.0,4.0,1.0,3.0,1.8,2676.684656882141,0.0,380.0,310.0,0.0,26185.0,4,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1059.9431127811126,0.025982522210104213,0.04047901901016279,14547.222222222223,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +758,2,43.0,2,0.0,1,111,1,0,63,10.0,0.0,0.0,403.7789295376686,0.0,0.0,42046.33400793945,0,43,2,10962,201700758,,,,710.0,1.0,2.0,2.0,0.0,1.0,1.0,5577.2927908022875,0.0,300.0,0.0,0.0,42057.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,403.7789295376686,0.009603189887171248,0.009600754441297966,42057.0,10,5,10,10_0,10_4,10_1_0 +759,2,57.0,1,0.0,3,111,2,0,47,10.0,0.0,0.0,372.82254493978064,0.0,1557.0033089980361,17253.72,0,42,1,10963,201700759,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3091.3958124818946,0.0,277.0,880.0,0.0,45824.0,0,1,1,70.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1929.8258539378166,0.11184984188556535,0.0421138672734335,45824.0,10,5,10,10_1,10_2,10_0_1 +760,2,28.0,1,0.0,6,111,2,42,37,10.0,0.0,0.0,629.1069262979371,0.0,1172.327276463327,53409.950000000004,0,30,2,10964,201700760,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4274.570526399001,1130.0,0.0,0.0,0.0,62692.0,1,1,2,68.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1801.4342027612643,0.03372843829213965,0.028734674324654888,41794.666666666664,10,5,10,10_0,10_3,10_0_0 +761,2,34.0,3,0.0,4,112,5,84,31,1.0,0.0,277.585263912688,189.77609688270422,424.6372660903735,0.0,19615.84,12,10,1,10965,201700761,,,148.0,,1.0,0.0,2.0,0.0,2.0,1.5,1672.0192302357332,0.0,141.0,0.0,0.0,5060.0,3,1,1,60.0,8,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,891.9986268857657,0.04547338410620018,0.17628431361378769,3373.3333333333335,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +762,2,62.0,3,0.0,4,111,1,0,74,8.0,0.0,0.0,647.3922170253953,0.0,162.7776186679765,32327.399999999998,0,30,8,10967,201700762,,,50.0,732.0,0.0,2.0,4.0,0.0,1.0,1.0,4387.978155703259,0.0,481.0,92.0,0.0,27620.0,0,5,3,120.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,810.1698356933719,0.025061397937767092,0.029332723957037357,27620.0,8,4,8,8_0,8_3,8_0_1 +763,2,33.0,3,0.0,9,112,4,67,33,5.0,0.0,0.0,2018.894647688343,35.38643884086446,0.0,49863.489322168425,43,31,1,10968,201700763,,,392.0,,2.0,0.0,4.0,2.0,4.0,2.1,1687.6972265305867,0.0,1500.0,0.0,0.0,42115.0,1,1,2,90.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2054.2810865292076,0.0411981013453848,0.04877789591663796,20054.761904761905,5,3,5,5_1,5_1,5_0_0 +764,2,65.0,3,0.0,6,112,4,74,74,8.0,0.0,0.0,5618.966651512552,106.15931652259337,4626.924676350324,61823.7444603679,30,31,1,10969,201700764,,,131.0,,0.0,2.0,4.0,0.0,2.0,1.5,1340.8067272114076,4459.867981617694,2330.0,0.0,0.0,46458.0,5,5,1,105.0,9,2.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,10352.050644385468,0.16744457545792374,0.22282600724063603,30972.0,8,4,8,8_1,8_1,8_0_0 +765,2,71.0,4,0.0,6,112,5,0,77,5.0,0.0,693.9631597817199,153.43599322431407,60.15694602946958,0.0,10058.0,0,71,1,1097,201700765,,,530.0,,0.0,2.0,5.0,0.0,1.0,1.0,2885.883506092114,0.0,114.0,0.0,0.0,20180.0,0,5,1,83.0,9,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,907.5560990355036,0.09023226277942967,0.04497304752405865,20180.0,5,3,5,5_1,5_1,5_0_0 +766,2,54.0,4,0.0,1,400,5,13,13,1.0,0.0,0.0,1386.3076580793288,238.8584621758351,0.0,30053.68,42,50,1,10970,201700766,,,250.0,,2.0,2.0,4.0,0.0,2.0,1.5,1448.3112841058698,0.0,1030.0,0.0,0.0,8596.0,1,1,1,130.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1625.1661202551638,0.054075445012230244,0.1890607399086975,5730.666666666667,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +767,2,52.0,3,0.0,7,111,2,43,45,8.0,0.0,0.0,725.4561434026779,0.0,1779.9378736954823,39648.972325490824,33,33,1,10971,201700767,,,575.0,,3.0,1.0,5.0,2.0,4.0,2.5,1526.611587494897,0.0,539.0,1006.0,0.0,70396.0,1,1,2,110.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2505.39401709816,0.06318938096378883,0.03559000535681232,28158.4,8,4,8,8_1,8_2,8_0_0 +768,2,53.0,3,0.0,6,400,5,13,46,4.0,0.0,41.637789586903196,1043.0955679723106,0.0,0.0,16503.826811689,50,50,1,10974,201700768,,,416.0,,2.0,0.0,4.0,0.0,2.0,1.5,1489.397098877469,0.0,775.0,0.0,0.0,22322.0,1,1,1,124.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1084.7333575592138,0.0657261718712984,0.04859481039150675,14881.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +769,2,72.0,4,0.0,7,111,2,77,77,4.0,0.0,0.0,222.07841124571772,226.47320858153253,0.0,21826.847196250448,70,60,1,10975,201700769,,,220.0,,0.0,7.0,5.0,0.0,2.0,1.5,1526.43030918048,0.0,165.0,0.0,0.0,25498.0,5,5,2,130.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,448.55161982725025,0.02055045402545839,0.017591639337487263,16998.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +770,2,55.0,3,0.0,4,111,1,0,56,6.0,0.0,0.0,471.07541779394666,0.0,707.7287768172891,47088.98,0,50,2,10979,201700770,,,,555.0,1.0,2.0,4.0,0.0,1.0,1.0,2249.069204301853,0.0,350.0,400.0,0.0,21414.0,0,1,3,83.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1178.8041946112357,0.02503354701272433,0.05504829525596506,21414.0,6,3,6,6_0,6_2,6_0_1 +771,2,37.0,2,0.0,5,111,2,46,38,9.0,0.0,0.0,2923.3594498527204,0.0,0.0,38555.59999999999,31,31,1,1098,201700771,,,336.0,,2.0,0.0,5.0,1.0,3.0,1.8,1895.168339888074,0.0,2172.0,0.0,0.0,60489.0,1,1,2,96.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2923.3594498527204,0.07582191561933212,0.04832877795719421,33605.0,9,5,9,9_1,9_3,9_0_0 +772,2,61.0,2,0.0,5,112,1,75,77,6.0,0.0,0.0,460.48575488477746,0.0,105.67195390338803,28896.72,71,50,2,10980,201700772,,,,310.0,0.0,2.0,3.0,0.0,2.0,1.5,1495.5616289374877,101.85663193904527,300.0,0.0,0.0,34831.0,5,5,3,69.0,10,5.0,3,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,566.1577087881655,0.019592455780038893,0.01625442016560436,23220.666666666668,6,3,6,6_0,6_2,6_0_0 +773,1,66.0,3,99.0,1,111,2,0,77,2.0,0.0,0.0,597.5928157157495,0.0,1825.9402441886061,11139.720000000001,0,42,1,10982,201700773,,,114.0,,0.0,2.0,6.0,0.0,1.0,1.0,6564.7411870495425,0.0,444.0,1032.0,0.0,13046.0,0,5,3,70.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,2423.5330599043555,0.21755780754851606,0.18576828605736284,13046.0,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +774,1,38.0,3,150.0,99,111,1,67,63,3.0,0.0,0.0,1598.9645609691677,0.0,513.1033631925346,22914.528161188147,71,50,2,10984,201700774,426.0,426.0,,185.0,2.0,0.0,4.0,2.0,4.0,2.3,2977.416382561204,0.0,1188.0,290.0,0.0,34950.0,4,4,3,72.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2112.067924161702,0.09217156510074039,0.060431128016071596,15195.652173913044,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +775,2,54.0,1,0.0,6,300,4,46,65,8.0,0.0,0.0,1472.4471630473647,0.0,0.0,29006.280000000002,50,50,1,10985,201700775,,,507.0,,2.0,2.0,4.0,0.0,2.0,1.5,1950.2991743561076,0.0,1094.0,0.0,0.0,42745.0,1,1,1,87.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1472.4471630473647,0.05076304727967063,0.03444723740899204,28496.666666666668,8,4,8,8_1,8_0,8_0_0 +776,2,85.0,1,0.0,7,111,4,0,75,9.0,0.0,0.0,1682.4122064069525,0.0,0.0,29096.318002984743,0,60,8,10990,201700776,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2727.5345462969212,0.0,1250.0,0.0,0.0,43233.0,0,5,1,95.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1682.4122064069525,0.057822168641213235,0.038915000263848275,43233.0,10,5,10,10_0,10_4,10_0_0 +777,2,54.0,3,0.0,99,300,2,52,37,6.0,2221.038412794435,0.0,1615.1157181506744,134.46846759528495,0.0,43260.33999999999,71,50,1,10991,201700777,,,1075.0,,2.0,2.0,6.0,2.0,4.0,2.3,1154.940596590933,0.0,1200.0,0.0,0.0,52006.0,4,1,3,113.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3970.6225985403944,0.09178435949741484,0.0763493173583893,22611.304347826088,6,3,6,6_1,6_1,6_0_0 +778,2,85.0,3,0.0,5,111,1,0,78,4.0,0.0,0.0,242.26735772260116,0.0,0.0,19730.87087530163,0,71,2,10993,201700778,,,,640.0,0.0,5.0,3.0,0.0,1.0,1.0,2462.7540625983925,0.0,180.0,0.0,0.0,17180.0,0,5,3,70.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,242.26735772260116,0.012278594252312626,0.014101708831350476,17180.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +779,2,78.0,3,0.0,9,211,6,71,71,2.0,1745.1016100527704,0.0,1170.9588956592388,247.7050718860512,0.0,25375.04,50,71,1,10994,201700779,,,,,0.0,2.0,4.0,0.0,2.0,1.5,3296.198884668801,0.0,870.0,0.0,0.0,19926.0,5,5,1,90.0,1,3.0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3163.76557759806,0.12468022031090631,0.15877574915176454,13284.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +780,2,42.0,5,0.0,9,120,5,65,54,2.0,0.0,416.377895869032,1615.1157181506744,134.46846759528495,0.0,52963.06934795782,41,31,1,10995,201700780,,,1150.0,,2.0,0.0,8.0,5.0,7.0,3.4,2229.541166822813,0.0,1200.0,0.0,0.0,44104.0,1,4,2,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2165.9620816149913,0.04089570540908441,0.04911033197929873,12971.764705882353,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +781,2,34.0,2,0.0,1,112,1,43,37,8.0,1269.1648073111057,166.55115834761278,1668.9529087556969,81.38880933398825,0.0,41007.08000000001,44,31,1,10996,201700781,800.0,800.0,436.0,,2.0,0.0,5.0,2.0,4.0,2.1,2140.03837508703,0.0,1240.0,0.0,0.0,57502.0,1,1,2,135.0,8,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3186.0576837484036,0.07769530734079098,0.055407771620959334,27381.90476190476,8,4,8,8_1,8_0,8_1_0 +782,2,72.0,2,0.0,8,112,2,77,78,6.0,1269.1648073111057,0.0,664.8893039720276,0.0,0.0,22972.36,71,50,1,10997,201700782,,,390.0,,0.0,3.0,4.0,0.0,2.0,1.5,2084.4058061282158,0.0,494.0,0.0,0.0,33732.0,5,5,3,100.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1934.0541112831334,0.08419048418547913,0.05733588614025653,22488.0,6,3,6,6_1,6_0,6_0_0 +783,2,37.0,3,0.0,9,120,6,55,48,6.0,0.0,0.0,2526.3101691406796,0.0,0.0,41712.13999999999,41,31,1,10998,201700783,,,462.0,,2.0,0.0,4.0,3.0,5.0,2.4,1836.1434847366627,0.0,1877.0,0.0,0.0,52970.0,1,1,2,120.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2526.3101691406796,0.06056534546395079,0.04769322577195922,22070.833333333336,6,3,6,6_1,6_0,6_0_0 +784,2,86.0,2,0.0,4,211,2,0,74,7.0,0.0,0.0,477.8050666195745,0.0,2339.0436073811406,12322.52,0,70,1,10999,201700784,,,,,0.0,1.0,5.0,0.0,1.0,1.0,908.8888413019479,0.0,355.0,1322.0,0.0,28460.0,0,5,1,100.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2816.848674000715,0.22859355667515371,0.09897570885455781,28460.0,8,4,8,8_1,8_1,8_0_1 +785,2,39.0,3,0.0,99,111,5,0,47,5.0,0.0,0.0,226.1162005410944,0.0,0.0,14213.820000000002,0,30,2,110,201700785,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3971.2439281637617,0.0,168.0,0.0,0.0,19946.0,0,4,3,50.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,226.1162005410944,0.01590819361305366,0.011336418356617587,19946.0,5,3,5,5_0,5_2,5_0_0 +786,1,50.0,4,198.0,99,111,1,0,68,2.0,0.0,0.0,577.403869238866,0.0,0.0,3753.96,0,71,2,1100,201700786,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2073.379599799356,0.0,429.0,0.0,0.0,10606.0,0,1,3,53.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,577.403869238866,0.15381193972201782,0.05444124733536357,10606.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +787,2,22.0,4,0.0,1,300,2,0,56,1.0,0.0,0.0,565.290501352736,0.0,3379.4049093025556,22877.4,0,43,1,11003,201700787,,,,,3.0,1.0,5.0,2.0,4.0,2.5,589.7064158376221,0.0,420.0,1910.0,0.0,19107.0,0,1,1,100.0,0,1.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3944.6954106552917,0.17242761024658795,0.20645289216806886,7642.8,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +788,2,51.0,2,0.0,9,111,2,0,31,10.0,0.0,0.0,581.2279920841117,0.0,1083.1059085201002,40232.02,0,33,1,11004,201700788,,,,,1.0,0.0,6.0,1.0,2.0,1.3,659.7184833032657,1044.0,0.0,0.0,0.0,60150.0,0,1,1,130.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1664.333900604212,0.04136839016793619,0.02766972403332023,46269.230769230766,10,5,10,10_1,10_2,10_0_0 +789,2,33.0,2,0.0,1,111,2,0,38,10.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,57822.73999999999,0,0,2,11005,201700789,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3491.211443602407,1440.0,0.0,0.0,0.0,49780.0,0,1,2,72.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2295.6329663506376,0.039701213853764766,0.04611556782544471,49780.0,10,5,10,10_0,10_2,10_1_0 +790,1,26.0,2,177.0,1,111,2,0,31,2.0,0.0,0.0,500.68587262670906,0.0,0.0,15835.92,0,30,2,11006,201700790,,,,212.0,1.0,0.0,2.0,0.0,1.0,1.0,4470.823556723427,0.0,372.0,0.0,0.0,11363.0,0,3,3,19.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,500.68587262670906,0.03161710040381039,0.044062824309311716,11363.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +791,2,46.0,5,0.0,3,111,2,46,47,7.0,0.0,0.0,1480.522741638118,0.0,2388.5846217583507,32329.2,31,71,1,11007,201700791,,,,,2.0,0.0,5.0,2.0,4.0,2.3,730.599404450461,0.0,1100.0,1350.0,0.0,60868.0,1,1,1,128.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3869.107363396469,0.1196784134279991,0.06356554122685926,26464.34782608696,7,4,7,7_1,7_3,7_0_1 +792,1,34.0,4,437.0,99,112,4,0,55,1.0,0.0,0.0,1749.7086946632305,99.08202875442048,0.0,10054.460000000001,0,50,1,11008,201700792,,,,,1.0,0.0,3.0,2.0,3.0,1.6,668.1066318945052,0.0,1300.0,0.0,0.0,12994.0,0,4,3,55.0,8,0.0,2,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1848.790723417651,0.1838776745262949,0.14228033888084124,8121.25,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +793,1,64.0,3,257.0,99,111,1,0,78,2.0,0.0,0.0,972.0537108992904,0.0,1811.4012608008575,10354.238002984745,0,70,2,1101,201700793,,,,,0.0,0.0,2.0,0.0,1.0,1.0,5966.4405478159115,1746.0,0.0,0.0,0.0,12664.0,0,5,3,50.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2783.454971700148,0.2688227729455109,0.21979271728522962,12664.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +794,1,41.0,5,303.0,8,111,1,0,46,3.0,0.0,0.0,1211.3367886130059,0.0,0.0,28203.28,0,42,2,11010,201700794,,,,261.0,1.0,1.0,4.0,4.0,5.0,2.6,1011.2727865354877,0.0,900.0,0.0,0.0,35108.0,0,1,3,86.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1211.3367886130059,0.04295020964274389,0.034503155651504094,13503.076923076922,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +795,2,70.0,1,0.0,1,111,2,72,74,7.0,0.0,0.0,1653.8520072403696,0.0,3375.54727985104,76046.7121784046,41,10,1,11012,201700795,,,561.0,,0.0,2.0,6.0,0.0,3.0,1.8,3957.495498779086,1036.6000329159756,800.0,1300.0,0.0,47144.0,5,5,1,110.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5029.39928709141,0.06613565719044505,0.10668164108033705,26191.11111111111,7,4,7,7_1,7_4,7_1_0 +796,1,29.0,3,379.0,99,111,2,85,81,3.0,0.0,0.0,1319.0111698230507,0.0,1503.9236507367395,5829.901750603257,71,71,1,11013,201700796,,,650.0,,1.0,1.0,4.0,1.0,3.0,1.8,1547.4024958014493,0.0,980.0,850.0,0.0,24448.0,6,4,3,80.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2822.9348205597903,0.4842165342267875,0.11546690201897047,13582.222222222223,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +797,2,40.0,4,0.0,9,120,2,0,46,9.0,0.0,0.0,1211.3367886130059,0.0,0.0,45699.72526399288,0,31,1,11015,201700797,,,,608.0,1.0,0.0,3.0,1.0,2.0,1.3,1947.5833974850514,0.0,900.0,0.0,0.0,46253.0,0,1,3,68.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1211.3367886130059,0.026506434811489475,0.02618936692999386,35579.230769230766,9,5,9,9_1,9_0,9_0_0 +798,1,39.0,3,322.0,3,211,1,0,43,2.0,0.0,0.0,444.15682249143543,0.0,265.39829130648343,15090.759999999998,0,41,2,11016,201700798,,,,,1.0,0.0,4.0,1.0,2.0,1.3,1212.1613730999345,0.0,330.0,150.0,0.0,14352.0,0,1,3,65.0,4,3.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,709.5551137979189,0.04701917688691087,0.04943945887666659,11040.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +799,2,47.0,1,0.0,7,112,2,56,64,7.0,1269.1648073111057,0.0,1162.8833170684854,339.7098128722988,0.0,33343.399999999994,50,50,1,11017,201700799,,,380.0,,3.0,2.0,5.0,1.0,3.0,2.0,2082.311492544405,0.0,864.0,0.0,0.0,53704.0,1,1,1,127.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2771.75793725189,0.0831276335722179,0.0516117595942926,26852.0,7,4,7,7_1,7_0,7_0_0 +800,2,45.0,1,0.0,5,120,5,62,65,8.0,0.0,381.679737879946,1480.522741638118,0.0,0.0,25023.52,50,50,1,11018,201700800,,,211.0,,2.0,0.0,4.0,0.0,2.0,1.5,1855.1388230630237,0.0,1100.0,0.0,0.0,40399.0,1,1,2,87.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1862.2024795180641,0.07441808664480713,0.04609526175197565,26932.666666666668,7,4,7,7_1,7_0,7_0_0 +801,2,61.0,1,0.0,4,400,4,0,72,3.0,0.0,485.77421184720396,5679.823608829872,0.0,0.0,41104.25119129574,0,30,1,11019,201700801,,,800.0,,0.0,2.0,10.0,0.0,1.0,1.0,2027.6364027604052,0.0,4220.0,0.0,0.0,15536.0,0,5,1,260.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,6165.597820677076,0.1499990303188568,0.39685876806623815,15536.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +802,2,53.0,4,0.0,8,111,2,67,52,5.0,0.0,0.0,734.8859670029,0.0,1369.444252151851,25505.500000000004,50,60,1,1102,201700802,,,240.0,,2.0,0.0,4.0,2.0,4.0,2.5,1399.3975191854388,1320.0,0.0,0.0,0.0,51556.0,1,1,2,98.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2104.330219154751,0.08250495850521458,0.04081639807500099,20622.4,5,3,5,5_1,5_2,5_0_0 +803,2,61.0,4,0.0,1,112,2,0,75,8.0,3337.9034432282083,0.0,629.895130078763,132.69914565324171,0.0,27637.0,0,60,1,11021,201700803,,,280.0,,0.0,2.0,5.0,0.0,1.0,1.0,2322.2130993593432,0.0,468.0,0.0,0.0,30302.0,0,5,1,90.0,9,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4100.497718960213,0.1483698563143689,0.1353210256405588,30302.0,8,4,8,8_1,8_0,8_1_0 +804,2,59.0,3,0.0,99,111,2,78,52,2.0,0.0,0.0,694.49975880479,0.0,1507.462294620826,30992.879999999997,71,71,2,11023,201700804,,,360.0,606.0,1.0,5.0,4.0,1.0,3.0,2.0,3318.4126491634656,0.0,516.0,852.0,0.0,27223.0,5,1,3,80.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2201.962053425616,0.07104735195392026,0.08088609093140418,13611.5,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +805,2,54.0,1,0.0,4,111,2,75,43,10.0,0.0,0.0,1197.87749096175,0.0,1716.2422837819263,64168.86000000001,33,33,1,11025,201700805,,,300.0,,1.0,2.0,4.0,0.0,2.0,1.5,1684.318957707618,0.0,890.0,970.0,0.0,61135.0,5,1,1,90.0,7,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2914.1197747436763,0.04541330132316011,0.047666962864867525,40756.666666666664,10,5,10,10_1,10_2,10_0_1 +806,2,61.0,4,0.0,1,112,5,56,77,8.0,0.0,902.152107716236,1444.182637979728,185.7788039145384,0.0,27683.76,50,70,1,11026,201700806,,,98.0,,2.0,2.0,3.0,1.0,3.0,2.0,3412.37087706882,0.0,1073.0,0.0,0.0,59445.0,1,5,1,70.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2532.1135496105026,0.09146566613821615,0.04259590461116162,29722.5,8,4,8,8_1,8_0,8_1_0 +807,0,86.0,2,0.0,4,112,2,0,86,2.0,0.0,0.0,0.0,0.0,0.0,10637.0,0,70,1,11027,201700807,,,,,0.0,1.0,5.0,0.0,1.0,1.0,1352.5538966713339,0.0,0.0,0.0,0.0,13226.0,0,5,5,80.0,8,0.0,1,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,13226.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +808,2,54.0,2,0.0,99,111,2,0,47,6.0,0.0,0.0,646.0462872602698,0.0,1238.525359430256,27385.899999999998,0,50,1,11028,201700808,,,250.0,,1.0,1.0,4.0,0.0,1.0,1.0,2811.157139649124,0.0,480.0,700.0,0.0,24182.0,0,1,2,75.0,4,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1884.5716466905258,0.06881539940956938,0.07793282799977362,24182.0,7,4,7,7_1,7_1,7_0_0 +809,2,58.0,3,0.0,6,300,6,72,56,2.0,0.0,41.637789586903196,1305.5518721717951,95.54338487033404,0.0,13976.919999999998,42,50,1,1103,201700809,,,285.0,,1.0,2.0,5.0,0.0,2.0,1.5,2395.3074705155555,0.0,970.0,0.0,0.0,21950.0,5,1,1,146.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1442.7330466290323,0.10322253018755437,0.06572815702182379,14633.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +810,2,30.0,3,0.0,9,111,1,56,54,7.0,0.0,0.0,547.7934144061037,0.0,0.0,40117.8,30,30,2,11030,201700810,,,180.0,877.0,2.0,0.0,4.0,1.0,3.0,1.8,2301.1656219629544,0.0,407.0,0.0,0.0,42672.0,1,1,3,88.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,547.7934144061037,0.013654622496899223,0.012837303487207154,23706.666666666668,6,3,6,6_0,6_3,6_0_0 +811,2,64.0,2,0.0,8,111,2,0,74,9.0,0.0,0.0,484.5347154452023,0.0,1112.9035015451873,30426.045980622453,0,12,2,11031,201700811,,,,770.0,0.0,2.0,4.0,0.0,1.0,1.0,4093.1090908755377,0.0,360.0,629.0,0.0,36210.0,0,5,3,75.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1597.4382169903897,0.052502327052544255,0.04411594081718834,36210.0,9,5,9,9_0,9_4,9_0_0 +812,2,31.0,2,0.0,1,112,2,0,52,4.0,0.0,0.0,807.5578590753372,0.0,2830.9151072691566,28539.807533755655,0,30,1,11032,201700812,,,394.0,,1.0,0.0,5.0,1.0,2.0,1.3,2079.6678941911396,0.0,600.0,1600.0,0.0,22370.0,0,1,2,120.0,7,0.0,2,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3638.4729663444937,0.12748764903340937,0.16264966322505559,17207.69230769231,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +813,2,66.0,3,0.0,6,300,6,77,78,4.0,0.0,555.170527825376,995.9880261929159,247.7050718860512,0.0,28087.84,60,50,1,11033,201700813,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2210.141561659041,0.0,740.0,0.0,0.0,25060.0,5,5,1,110.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1798.863625904343,0.06404421364919279,0.07178226759394825,16706.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +814,2,42.0,2,0.0,5,112,2,0,43,9.0,0.0,0.0,807.5578590753372,0.0,0.0,12166.8,0,20,2,11035,201700814,,,,,1.0,0.0,2.0,1.0,2.0,1.3,887.0575143452635,0.0,600.0,0.0,0.0,45584.0,0,1,1,40.0,9,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.0663738911690286,0.01771581824928346,35064.61538461538,9,5,9,9_0,9_1,9_0_0 +815,2,52.0,3,0.0,6,112,4,64,37,9.0,0.0,499.65347504283835,2422.6735772260117,169.8549064361494,0.0,31289.875067511315,50,31,1,11036,201700815,,,400.0,,2.0,2.0,6.0,0.0,2.0,1.5,1743.700858540787,0.0,1800.0,0.0,0.0,54876.0,8,1,1,110.0,4,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3092.1819587049995,0.0988237233940142,0.05634853048154019,36584.0,9,5,9,9_1,9_0,9_0_0 +816,2,28.0,2,0.0,2,111,1,56,46,9.0,0.0,0.0,317.89385390807263,0.0,1922.9184852488575,57671.48347014302,43,41,2,11037,201700816,752.0,752.0,,,2.0,0.0,2.0,0.0,2.0,1.5,2701.610329415148,571.0,0.0,752.0,0.0,51910.0,1,1,2,54.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2240.81233915693,0.038854771965715365,0.04316725754492256,34606.666666666664,9,5,9,9_0,9_3,9_0_1 +817,1,47.0,4,353.0,99,111,4,0,22,1.0,0.0,0.0,913.8863105202565,40.694404666994124,0.0,12355.94,0,50,1,11038,201700817,,,,177.0,1.0,0.0,2.0,1.0,2.0,1.5,3428.7018606596716,0.0,679.0,0.0,0.0,6830.0,0,1,3,50.0,6,4.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,954.5807151872507,0.07725682669123116,0.1397629158400074,4553.333333333333,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +818,2,32.0,3,0.0,99,112,6,38,38,8.0,0.0,0.0,53.83719060502248,0.0,1486.2304313163072,38605.16,20,12,1,1104,201700818,,,,745.0,2.0,0.0,4.0,2.0,4.0,2.1,4089.343744538987,0.0,40.0,840.0,0.0,57452.0,4,1,3,75.0,9,3.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1540.0676219213296,0.039892792101401196,0.026806162046949272,27358.095238095237,8,4,8,8_1,8_1,8_0_0 +819,0,81.0,2,0.0,1,111,1,86,78,3.0,0.0,0.0,204.58132429908542,0.0,1146.5206184440085,14234.6,71,70,1,11040,201700819,,,248.0,,0.0,2.0,3.0,0.0,2.0,1.5,2331.2410221601026,0.0,152.0,648.0,0.0,23430.0,5,5,5,80.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1351.101942743094,0.09491674811677842,0.05766546917384097,15620.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +820,2,46.0,3,0.0,5,400,1,0,47,8.0,0.0,0.0,444.15682249143543,0.0,0.0,22792.16,0,31,2,11042,201700820,,,,,1.0,1.0,5.0,0.0,1.0,1.0,2395.969137082023,0.0,330.0,0.0,0.0,31677.0,0,1,2,94.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,444.15682249143543,0.019487263273486825,0.014021429506943064,31677.0,8,4,8,8_0,8_1,8_0_0 +821,1,31.0,3,343.0,9,111,4,55,47,3.0,0.0,0.0,786.0229828333282,0.0,0.0,19692.180315994112,30,43,2,11043,201700821,,,246.0,223.0,2.0,0.0,3.0,1.0,3.0,1.8,1235.832709957424,0.0,584.0,0.0,0.0,26371.0,4,1,3,55.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,786.0229828333282,0.039915487783489134,0.029806339647086885,14650.555555555555,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +822,2,81.0,2,0.0,6,111,4,77,72,4.0,0.0,0.0,1335.1623270045575,106.15931652259337,0.0,15643.679999999998,70,71,1,11044,201700822,,,319.0,,0.0,1.0,6.0,0.0,2.0,1.5,2372.130260746705,0.0,992.0,0.0,0.0,26763.0,6,5,1,150.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1441.3216435271509,0.09213443662406486,0.05385501040717225,17842.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +823,1,53.0,3,408.0,2,111,1,0,77,3.0,0.0,0.0,605.6683943065029,0.0,828.0426688762283,15059.3,0,71,2,11045,201700823,,,520.0,12.0,1.0,3.0,4.0,2.0,3.0,1.8,1160.050661763684,0.0,450.0,468.0,0.0,25456.0,0,4,3,93.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1433.7110631827313,0.09520436296393135,0.05632114484533043,14142.222222222223,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +824,2,79.0,3,0.0,6,112,1,0,78,4.0,0.0,0.0,682.3863909186599,0.0,0.0,17320.745846751302,0,70,2,11050,201700824,,,,510.0,0.0,3.0,2.0,0.0,1.0,1.0,3156.9620139394524,0.0,507.0,0.0,0.0,16380.0,0,5,3,65.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,682.3863909186599,0.039397055817122856,0.04165973082531501,16380.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +825,2,62.0,4,0.0,7,112,2,78,77,4.0,0.0,0.0,2535.731677496559,247.7050718860512,0.0,30938.211877053025,70,60,1,11051,201700825,,,235.0,640.0,0.0,2.0,5.0,0.0,2.0,1.5,2715.160412586324,0.0,1884.0,0.0,0.0,24890.0,5,5,3,100.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2783.4367493826103,0.08996760253772439,0.11182951986270029,16593.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +826,1,44.0,3,74.0,99,112,2,0,55,3.0,0.0,0.0,67.36454697526584,0.0,125.53238978058634,23970.90816118814,0,50,2,11052,201700826,,,,407.0,1.0,0.0,3.0,1.0,2.0,1.5,800.8964606154908,121.0,0.0,0.0,0.0,22847.0,0,1,3,73.0,8,2.0,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,192.89693675585218,0.00804712676961385,0.00844298755879775,15231.333333333334,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +827,2,38.0,2,0.0,9,112,2,13,34,2.0,1054.9932460773566,166.55115834761278,728.0134099564165,159.23897478389006,0.0,26982.920000000002,44,30,1,11053,201700827,,,225.0,,2.0,0.0,5.0,2.0,4.0,2.1,1841.5788755289582,0.0,540.9,0.0,0.0,25344.0,1,1,2,140.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2108.796789165276,0.07815302380784866,0.08320694401693798,12068.571428571428,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +828,2,26.0,1,0.0,99,111,2,43,43,7.0,0.0,0.0,134.5929765125562,0.0,0.0,31578.06,33,30,2,11054,201700828,,,,535.0,2.0,0.0,2.0,0.0,2.0,1.5,3549.169996460011,0.0,100.0,0.0,0.0,39853.0,1,1,3,50.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,134.5929765125562,0.004262230691580046,0.003377235754210629,26568.666666666668,7,4,7,7_0,7_3,7_0_0 +829,1,35.0,3,117.0,9,300,5,52,62,3.0,0.0,555.170527825376,1949.8903714050882,0.0,184.92591933092905,38518.16,50,44,1,11055,201700829,,,,,2.0,0.0,4.0,3.0,5.0,2.4,1763.3525250402492,178.24910589332922,1375.0,0.0,0.0,36563.0,4,1,3,82.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2689.986818561393,0.06983684627098992,0.07357128295165585,15234.583333333334,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +830,2,82.0,1,0.0,6,111,4,77,74,10.0,0.0,0.0,2593.606657396958,0.0,0.0,31507.039999999997,50,60,1,11056,201700830,,,248.0,,0.0,3.0,7.0,0.0,2.0,1.5,1418.01750960479,0.0,1927.0,0.0,0.0,111593.0,5,5,5,190.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2593.606657396958,0.08231832179084288,0.02324166083353757,74395.33333333333,10,5,10,10_1,10_2,10_0_0 +831,2,51.0,2,0.0,1,111,2,0,35,9.0,0.0,138.792631956344,2018.894647688343,0.0,0.0,40305.428161188145,0,20,1,11057,201700831,,,528.0,,1.0,0.0,3.0,1.0,2.0,1.3,626.8689008934341,0.0,1500.0,0.0,0.0,43521.0,0,1,1,80.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2157.687279644687,0.053533416665758636,0.049578072186868105,33477.692307692305,9,5,9,9_1,9_2,9_1_0 +832,2,45.0,3,0.0,99,112,2,43,43,7.0,1348.4876077680499,0.0,605.6683943065029,212.31863304518674,0.0,30287.56,33,33,1,11058,201700832,,,410.0,,2.0,0.0,4.0,2.0,4.0,2.1,1404.6818045910425,0.0,450.0,0.0,0.0,53870.0,1,1,2,130.0,6,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2166.4746351197396,0.07153018054672411,0.04021671867680972,25652.38095238095,7,4,7,7_1,7_1,7_0_0 +833,2,39.0,3,0.0,7,111,2,56,43,5.0,0.0,0.0,783.3311233030771,0.0,1555.2339870559929,28853.079999999998,50,33,1,1106,201700833,,,,493.0,2.0,0.0,4.0,2.0,4.0,2.3,2230.5635032527084,0.0,582.0,879.0,0.0,46330.0,1,1,3,70.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2338.56511035907,0.08105079632257874,0.05047625966671854,20143.478260869568,5,3,5,5_1,5_2,5_0_0 +835,2,70.0,3,0.0,4,111,2,0,77,5.0,1745.1016100527704,180.43042154324718,652.7759360858976,175.16287226227908,0.0,36571.40000000001,0,41,1,11062,201700835,,,460.0,,0.0,2.0,4.0,0.0,1.0,1.0,2122.9111101556673,0.0,485.0,0.0,0.0,19036.0,0,5,1,120.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2753.4708399441943,0.07529027710025303,0.14464545282329241,19036.0,5,3,5,5_1,5_3,5_0_1 +836,2,57.0,3,0.0,1,400,5,71,13,5.0,0.0,138.792631956344,1275.9414173390328,102.62067263850693,0.0,27395.060948395036,44,42,1,11063,201700836,,,200.0,,1.0,3.0,5.0,0.0,2.0,1.5,1576.547851026535,0.0,948.0,0.0,0.0,29110.0,5,1,1,180.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1517.3547219338836,0.05538789363499406,0.05212486162603516,19406.666666666668,5,3,5,5_1,5_0,5_1_0 +837,2,54.0,2,0.0,4,120,2,68,62,5.0,0.0,0.0,942.1508355878933,0.0,1680.8558449410618,18898.600000000002,70,70,1,11065,201700837,,,360.0,,2.0,2.0,5.0,0.0,2.0,1.5,1592.2006536589538,0.0,700.0,950.0,0.0,29489.0,1,1,3,89.0,0,1.0,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2623.0066805289553,0.13879370326526594,0.08894864798836703,19659.333333333332,5,3,5,5_1,5_1,5_0_1 +838,2,78.0,2,0.0,5,111,2,0,77,9.0,2379.684013708323,0.0,807.5578590753372,127.39117982711205,0.0,20402.06,0,50,1,11066,201700838,,,270.0,,0.0,2.0,5.0,0.0,1.0,1.0,6588.835797877753,0.0,600.0,0.0,0.0,33550.0,0,5,1,120.0,6,4.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3314.633052610772,0.16246560654222034,0.09879681229838368,33550.0,9,5,9,9_1,9_2,9_0_0 +839,2,36.0,3,0.0,99,112,2,52,48,4.0,0.0,0.0,1195.185631431499,0.0,2123.1863304518674,40923.520000000004,50,50,1,11069,201700839,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1876.9431701226483,0.0,888.0,1200.0,0.0,35740.0,1,1,2,88.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3318.3719618833666,0.08108715872640883,0.09284756468616023,17019.04761904762,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +840,2,76.0,1,0.0,1,111,2,74,74,10.0,0.0,0.0,554.5230632317315,0.0,3060.9269597347757,78567.10816118812,30,30,1,11070,201700840,,,149.0,,0.0,2.0,5.0,0.0,2.0,1.5,1831.2918686948965,0.0,412.0,1730.0,0.0,66400.0,5,5,1,120.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3615.4500229665073,0.04601734883189359,0.05444954853865222,44266.666666666664,10,5,10,10_1,10_2,10_1_0 +841,2,57.0,3,0.0,1,111,2,52,52,6.0,0.0,0.0,942.1508355878933,0.0,2340.812929323184,31823.740000000005,50,50,1,11071,201700841,,,360.0,,2.0,6.0,5.0,0.0,2.0,1.5,1983.2696712799993,0.0,700.0,1323.0,0.0,32065.0,1,1,1,95.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3282.9637649110773,0.10316084045781787,0.102384648835524,21376.666666666668,6,3,6,6_1,6_3,6_1_0 +842,2,74.0,3,0.0,4,111,2,77,74,10.0,0.0,416.377895869032,2766.5368604131295,0.0,6176.973843741803,66730.66996030431,41,31,1,11072,201700842,,,430.0,,0.0,3.0,8.0,0.0,2.0,1.5,1971.7656422656858,2406.636958376789,1060.0,2080.0,0.0,90917.0,5,5,1,190.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,9359.888600023964,0.1402636689485034,0.10294981796610055,60611.333333333336,10,5,10,10_1,10_4,10_0_1 +843,2,72.0,2,0.0,7,300,1,77,77,6.0,1110.5192063972174,0.0,807.5578590753372,0.0,0.0,41899.08,50,50,1,11073,201700843,700.0,700.0,280.0,,0.0,2.0,4.0,0.0,2.0,1.5,1854.4445830810957,0.0,600.0,0.0,0.0,33682.0,5,5,1,91.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1918.0770654725548,0.04577850075640216,0.056946650005123056,22454.666666666668,6,3,6,6_1,6_1,6_0_0 +844,2,57.0,3,0.0,2,111,2,0,75,1.0,0.0,0.0,1615.1157181506744,0.0,0.0,35694.08,0,30,2,11075,201700844,,,,,0.0,0.0,3.0,1.0,2.0,1.3,1661.1172681481185,0.0,1200.0,0.0,0.0,6260.0,0,7,1,60.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1615.1157181506744,0.045248840091989324,0.25800570577486814,4815.384615384615,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +845,2,35.0,2,0.0,9,112,2,34,38,9.0,0.0,0.0,1736.249397011975,0.0,0.0,64532.380000000005,30,12,1,11077,201700845,,,391.0,,2.0,0.0,4.0,2.0,4.0,2.1,1950.9989649152199,0.0,1290.0,0.0,0.0,67399.0,1,1,2,100.0,8,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1736.249397011975,0.026905088530935553,0.025760759017373774,32094.761904761905,9,5,9,9_1,9_1,9_0_0 +846,1,42.0,3,270.0,1,111,6,0,37,3.0,0.0,0.0,1117.1217050542164,0.0,0.0,13943.380315994116,0,43,2,11078,201700846,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1043.3825311541648,0.0,830.0,0.0,0.0,18670.0,0,4,3,65.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1117.1217050542164,0.08011842750733787,0.059835120784907145,14361.538461538461,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +847,2,78.0,3,0.0,5,111,2,0,74,9.0,0.0,0.0,2095.6126443005,0.0,0.0,26188.54784974977,0,12,1,11079,201700847,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2752.418340633501,0.0,1557.0,0.0,0.0,34926.0,0,5,1,160.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2095.6126443005,0.08002019265533745,0.06000150730975491,34926.0,9,5,9,9_1,9_4,9_0_0 +848,1,69.0,3,240.0,1,111,1,0,86,2.0,0.0,0.0,101.32518635949076,0.0,188.81731355427038,7391.5111912957445,0,71,2,1108,201700848,,,200.0,,0.0,5.0,2.0,0.0,1.0,1.0,1832.9990867398287,182.0,0.0,0.0,0.0,12450.0,0,5,3,38.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,290.1424999137611,0.03925347502083652,0.023304618466968765,12450.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +849,1,71.0,3,165.0,5,111,2,77,77,2.0,0.0,0.0,444.15682249143543,0.0,1594.1590697809438,15176.96,71,71,2,11080,201700849,,,,176.0,0.0,1.0,4.0,0.0,2.0,1.5,2430.2689596893856,0.0,330.0,901.0,0.0,18770.0,5,5,3,82.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2038.3158922723792,0.1343033052912032,0.10859434695111236,12513.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +850,2,43.0,4,0.0,9,111,1,0,52,3.0,0.0,0.0,807.5578590753372,0.0,0.0,39586.76000000001,0,50,2,11082,201700850,,,153.0,464.0,1.0,1.0,3.0,1.0,2.0,1.3,1103.9556587194088,0.0,600.0,0.0,0.0,20071.0,0,1,3,64.0,4,4.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,807.5578590753372,0.02039969573350628,0.04023505849610569,15439.23076923077,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +851,1,36.0,5,406.0,4,111,1,0,43,2.0,0.0,0.0,155.88490209152422,0.0,290.4881746988775,12968.496974448146,0,50,2,11083,201700851,,,360.0,,1.0,4.0,3.0,1.0,2.0,1.5,1325.0706888708619,280.0,0.0,0.0,0.0,17872.0,0,4,3,88.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,446.37307679040174,0.034419800356964375,0.024976112174932952,11914.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +852,2,48.0,4,0.0,1,111,5,0,63,2.0,0.0,0.0,153.43599322431407,0.0,0.0,8304.119999999999,0,50,1,11084,201700852,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2915.7032813841447,0.0,114.0,0.0,0.0,11130.0,0,4,1,20.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,153.43599322431407,0.018477092482323727,0.013785803524197131,11130.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +853,2,64.0,3,0.0,4,111,2,0,75,9.0,0.0,0.0,819.6712269614673,0.0,3082.1588230392945,34274.0363223763,0,50,1,11085,201700853,,,267.0,,1.0,1.0,6.0,1.0,2.0,1.5,1481.826215598969,0.0,609.0,1742.0,0.0,55754.0,0,5,1,110.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3901.8300500007617,0.11384215192225247,0.06998296176060483,37169.333333333336,9,5,9,9_1,9_3,9_0_1 +854,1,47.0,5,379.0,5,111,2,85,43,2.0,0.0,0.0,893.6973640433731,0.0,1903.7904096385078,29519.640000000007,20,31,2,11086,201700854,,,,229.0,1.0,0.0,4.0,3.0,5.0,2.6,2839.3927879920802,0.0,664.0,1076.0,0.0,34380.0,8,1,3,76.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2797.4877736818808,0.09476700168707614,0.08136962692501107,13223.076923076922,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +855,2,33.0,2,0.0,6,111,6,38,38,10.0,0.0,0.0,874.8543473316153,0.0,0.0,45269.7,20,12,1,11087,201700855,,,320.0,,2.0,0.0,4.0,1.0,3.0,1.8,3105.4035930906816,0.0,650.0,0.0,0.0,71799.0,1,1,2,90.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,874.8543473316153,0.01932538424888204,0.01218477064209272,39888.333333333336,9,5,9,9_1,9_3,9_0_0 +856,2,77.0,3,0.0,5,111,1,0,75,5.0,0.0,0.0,356.6713877582739,0.0,0.0,15433.16,0,71,2,11088,201700856,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3200.2566268010282,0.0,265.0,0.0,0.0,18630.0,0,5,1,75.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,356.6713877582739,0.02311071664897363,0.01914500202674578,18630.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +857,2,53.0,2,0.0,7,400,4,65,43,9.0,0.0,0.0,2644.7519884717294,0.0,0.0,90814.83087530163,50,33,1,1109,201700857,,,471.0,,2.0,2.0,5.0,1.0,3.0,2.0,1619.549584822381,0.0,1965.0,0.0,0.0,68224.0,1,1,1,110.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2644.7519884717294,0.029122467805982634,0.03876571277661423,34112.0,9,5,9,9_1,9_1,9_0_0 +858,2,64.0,3,0.0,1,400,2,0,78,2.0,951.8736054833294,0.0,861.3950496803596,99.08202875442048,0.0,19723.031191295748,0,50,1,11092,201700858,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2380.4417832808203,0.0,640.0,0.0,0.0,12252.0,0,5,1,75.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1912.3506839181093,0.09696028289820259,0.1560847766828362,12252.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +859,2,56.0,4,0.0,99,111,1,77,75,2.0,0.0,0.0,47.107541779394666,0.0,530.7965826129669,36713.88784974978,71,60,2,11093,201700859,,,,509.0,1.0,2.0,3.0,1.0,3.0,2.0,2566.709571289812,0.0,35.0,300.0,0.0,26488.0,6,7,3,116.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,577.9041243923615,0.015740749842604866,0.021817582467244093,13244.0,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +860,2,73.0,2,0.0,2,400,4,86,78,4.0,0.0,0.0,1507.4413369406293,99.08202875442048,0.0,21556.8101582034,71,50,1,11094,201700860,,,280.0,260.0,0.0,3.0,4.0,0.0,2.0,1.5,1668.7478629795849,0.0,1120.0,0.0,0.0,25800.0,6,5,3,75.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1606.5233656950497,0.07452509689072391,0.062268347507560065,17200.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +861,2,44.0,5,0.0,1,112,2,22,33,8.0,1872.018090783881,416.377895869032,1598.9645609691677,0.0,0.0,60585.200000000004,12,31,1,11095,201700861,,,180.0,,2.0,0.0,10.0,2.0,4.0,2.1,2710.408690885725,0.0,1188.0,0.0,0.0,56521.0,1,1,2,250.0,8,3.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3887.360547622081,0.06416353412420989,0.06877727831464554,26914.761904761905,7,4,7,7_1,7_1,7_1_0 +862,2,58.0,2,0.0,5,400,5,78,67,7.0,475.9368027416647,1665.511583476128,492.91280902792187,212.31863304518674,161.08285188979997,48426.18405423343,70,70,1,11096,201700862,,,262.0,,1.0,2.0,4.0,0.0,2.0,1.5,2288.9351839824526,155.266900540438,302.0,0.0,0.0,38449.0,5,1,1,120.0,0,1.0,3,4,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3007.7626801807014,0.062110255823837966,0.07822733179486337,25632.666666666668,7,4,7,7_1,7_1,7_0_0 +863,2,69.0,2,0.0,99,111,2,77,78,4.0,0.0,0.0,829.0927353173462,0.0,1487.9997532583504,22446.739999999998,71,70,1,11097,201700863,,,297.0,,0.0,4.0,4.0,0.0,2.0,1.5,2919.77636996061,0.0,616.0,841.0,0.0,24350.0,5,5,1,88.0,4,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2317.0924885756967,0.10322623635216949,0.09515780240557276,16233.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +864,2,26.0,2,0.0,99,111,1,64,54,5.0,0.0,0.0,524.9126083989692,0.0,276.0142229587428,19850.379999999997,20,31,2,11098,201700864,,,,750.0,2.0,0.0,2.0,0.0,2.0,1.5,4230.614393792261,0.0,390.0,156.0,0.0,29626.0,1,1,3,42.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,800.926831357712,0.04034818634996973,0.027034592295879026,19750.666666666668,5,3,5,5_0,5_4,5_0_0 +865,2,54.0,4,0.0,1,112,5,22,22,1.0,0.0,527.4120014341072,888.3136449828709,530.7965826129669,0.0,19474.35098926994,33,44,1,1110,201700865,,,500.0,,2.0,1.0,6.0,1.0,3.0,1.8,1921.0776439787896,0.0,660.0,0.0,0.0,10960.0,1,1,1,200.0,6,2.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1946.522229029945,0.09995312450219512,0.17760239315966653,6088.888888888889,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +866,2,52.0,4,0.0,1,300,5,11,34,8.0,0.0,277.585263912688,690.9041553413628,0.0,1287.4850885760964,29377.2716935026,41,31,1,11101,201700866,,,,,2.0,3.0,6.0,0.0,2.0,1.5,1751.0090574688209,1241.0,0.0,0.0,0.0,40790.0,1,1,1,110.0,0,0.0,3,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2255.974507830147,0.07679319343767049,0.055307048488113436,27193.333333333332,7,4,7,7_1,7_0,7_1_0 +867,2,28.0,3,0.0,1,120,4,38,54,3.0,0.0,0.0,60.56683943065029,0.0,0.0,25814.951191295746,31,20,1,11103,201700867,,,120.0,,2.0,0.0,3.0,0.0,2.0,1.5,1460.5130813121648,0.0,45.0,0.0,0.0,24140.0,4,1,1,80.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,60.56683943065029,0.0023461922891828725,0.0025089825779059773,16093.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +868,2,44.0,1,0.0,1,112,2,43,38,7.0,0.0,0.0,893.6973640433731,0.0,2868.0708680520643,58877.89087530164,33,12,1,11104,201700868,,,642.0,,2.0,0.0,7.0,2.0,4.0,2.3,2761.8171956043557,0.0,664.0,1621.0,0.0,68601.0,1,1,2,160.0,8,1.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3761.7682320954373,0.0638910153908628,0.05483547225398226,29826.521739130436,8,4,8,8_1,8_1,8_1_0 +869,2,71.0,3,0.0,2,111,4,0,77,5.0,0.0,0.0,135.93890627768175,0.0,0.0,15460.459999999997,0,70,1,11105,201700869,,,170.0,,0.0,6.0,4.0,0.0,1.0,1.0,2367.051166999982,0.0,101.0,0.0,0.0,21140.0,0,5,1,106.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,135.93890627768175,0.008792681865719505,0.006430411839057793,21140.0,5,3,5,5_1,5_2,5_0_1 +870,1,68.0,2,137.0,99,111,2,85,78,3.0,0.0,0.0,222.69271727360606,0.0,414.9831067126821,16219.599999999999,71,71,2,11106,201700870,,,,234.0,2.0,3.0,4.0,2.0,4.0,2.5,3852.747580543864,400.0,0.0,0.0,0.0,37214.0,6,5,3,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,637.6758239862882,0.039315138720208156,0.017135374428609882,14885.6,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +871,2,68.0,3,0.0,6,111,4,0,77,2.0,0.0,0.0,807.5578590753372,58.38762408742635,0.0,19166.64,0,50,1,11107,201700871,,,140.0,,0.0,0.0,4.0,0.0,1.0,1.0,2236.5039155848667,0.0,600.0,0.0,0.0,10558.0,0,5,1,80.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,865.9454831627636,0.04517982719781681,0.08201794688035267,10558.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +872,2,41.0,2,0.0,5,111,4,0,45,7.0,0.0,0.0,471.07541779394666,0.0,0.0,18508.620315994114,0,31,8,11109,201700872,,,132.0,,1.0,0.0,2.0,0.0,1.0,1.0,3261.0276728089616,0.0,350.0,0.0,0.0,25928.0,0,1,3,30.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,471.07541779394666,0.0254516765567269,0.01816859834132778,25928.0,7,4,7,7_0,7_2,7_0_0 +873,1,44.0,4,256.0,5,300,6,0,85,1.0,0.0,0.0,753.7206684703146,0.0,0.0,9262.18,0,50,8,11110,201700873,,,160.0,144.0,0.0,0.0,2.0,0.0,1.0,1.0,5147.101868081589,0.0,560.0,0.0,0.0,3274.0,0,7,3,28.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,753.7206684703146,0.08137616289796945,0.23021400991762817,3274.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +874,2,57.0,3,0.0,1,300,5,0,42,4.0,0.0,0.0,134.5929765125562,985.5123217180752,0.0,47293.53119129574,0,50,1,11113,201700874,,,,,1.0,1.0,3.0,0.0,1.0,1.0,1841.2958873765488,0.0,100.0,0.0,0.0,17263.0,0,1,1,90.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1120.1052982306314,0.023684112182276295,0.0648847418311204,17263.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +875,2,52.0,3,0.0,3,111,1,0,84,2.0,0.0,0.0,161.51157181506744,0.0,0.0,21449.960315994118,0,31,8,11114,201700875,,,,,0.0,0.0,3.0,0.0,1.0,1.0,1271.1168139899355,0.0,120.0,0.0,0.0,13929.0,0,3,1,63.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,161.51157181506744,0.007529690938152304,0.011595345811979858,13929.0,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +876,2,38.0,3,0.0,1,112,4,0,64,5.0,0.0,0.0,794.0985614240816,0.0,0.0,14661.679999999998,0,60,1,11117,201700876,,,,490.0,1.0,0.0,2.0,0.0,1.0,1.0,1374.6194941488964,0.0,590.0,0.0,0.0,18650.0,0,1,3,45.0,9,2.0,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,794.0985614240816,0.05416149864299873,0.042579011336411884,18650.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +877,2,52.0,3,0.0,4,112,5,0,65,9.0,0.0,693.9631597817199,2314.9991960159664,0.0,0.0,42144.340000000004,0,71,1,11119,201700877,,,200.0,,1.0,3.0,4.0,0.0,1.0,1.0,2058.966092551073,0.0,1720.0,0.0,0.0,37744.0,0,1,3,110.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3008.9623557976865,0.07139659455570277,0.07972028284754362,37744.0,9,5,9,9_1,9_0,9_0_1 +878,2,79.0,4,0.0,1,112,2,0,77,5.0,1586.456009138882,0.0,336.4824412813905,123.8525359430256,0.0,11259.350875301629,0,71,1,1112,201700878,,,100.0,,0.0,2.0,5.0,0.0,1.0,1.0,2319.484011053828,0.0,250.0,0.0,0.0,19800.0,0,5,1,100.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2046.790986363298,0.18178587815867017,0.10337328213956051,19800.0,5,3,5,5_1,5_0,5_1_0 +879,2,39.0,2,0.0,8,111,4,65,46,7.0,0.0,0.0,3422.7320393881723,53.079658261296686,860.3430041558803,37466.257742723676,31,43,1,11121,201700879,,,550.0,,2.0,0.0,6.0,2.0,4.0,2.1,2047.4720728645218,829.2800263327805,2200.0,0.0,0.0,53860.0,1,1,2,107.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4336.154701805349,0.115734929588677,0.08050788529159578,25647.619047619046,7,4,7,7_1,7_2,7_0_0 +880,2,45.0,1,0.0,1,111,2,54,23,10.0,0.0,0.0,567.9422001834745,0.0,1517.9945789137003,60021.29451341128,41,41,2,11123,201700880,,,220.0,,2.0,0.0,3.0,3.0,5.0,2.4,2493.794157249781,439.92288486457437,240.0,600.0,0.0,122780.0,1,1,2,68.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2085.9367790971746,0.034753278748946154,0.016989222830242505,51158.333333333336,10,5,10,10_0,10_3,10_1_0 +881,2,47.0,2,0.0,9,111,2,33,47,10.0,0.0,0.0,1414.5721831469657,0.0,1314.6062029381146,68044.22,41,31,1,11125,201700881,,,397.0,,2.0,0.0,5.0,1.0,3.0,2.0,1982.5669944145093,0.0,1051.0,743.0,0.0,90359.0,1,1,2,150.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2729.17838608508,0.04010889368832621,0.030203724986831198,45179.5,10,5,10,10_1,10_3,10_0_0 +882,2,68.0,3,0.0,1,400,5,75,71,5.0,0.0,416.377895869032,995.9880261929159,0.0,0.0,28906.360000000004,71,50,5,11126,201700882,,,130.0,,0.0,2.0,3.0,0.0,2.0,1.5,2095.295168009118,0.0,740.0,0.0,0.0,31496.0,5,5,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1412.365922061948,0.04886004056069141,0.044842707710882265,20997.333333333332,5,3,5,5_1,5_0,5_1_0 +883,2,75.0,2,0.0,4,111,1,74,74,10.0,0.0,0.0,1294.0455145674741,0.0,1749.3268392303648,65934.86473656568,12,12,2,11127,201700883,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2886.4951018377537,1524.1499995141223,331.0,95.0,0.0,72635.0,5,5,1,76.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3043.372353797839,0.046157254829554045,0.04189952989327238,48423.333333333336,10,5,10,10_0,10_4,10_0_1 +884,2,34.0,1,0.0,9,112,6,63,43,7.0,0.0,423.3175274668492,1391.691377139831,0.0,0.0,38841.87,43,33,1,11129,201700884,,,405.0,,2.0,0.0,4.0,2.0,4.0,2.1,1781.9446094191892,0.0,1034.0,0.0,0.0,48478.0,1,1,2,80.0,8,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1815.0089046066803,0.046728154556067464,0.0374398470359066,23084.761904761905,6,3,6,6_1,6_1,6_0_0 +885,2,81.0,3,0.0,99,111,1,0,77,2.0,0.0,0.0,129.20925745205395,0.0,0.0,10138.827533755659,0,50,2,1113,201700885,,,,,0.0,2.0,1.0,0.0,1.0,1.0,3328.960819880664,0.0,96.0,0.0,0.0,10640.0,0,5,3,28.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,129.20925745205395,0.012744003882290304,0.01214372720414041,10640.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +886,2,55.0,2,0.0,1,111,2,67,33,9.0,0.0,0.0,659.5055849115254,0.0,1445.536026649313,50097.14000000001,50,20,1,11130,201700886,,,160.0,,2.0,2.0,4.0,0.0,2.0,1.5,1366.5261170913452,0.0,490.0,817.0,0.0,54681.0,1,1,1,110.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2105.0416115608386,0.042019197334635036,0.03849676508404818,36454.0,9,5,9,9_1,9_3,9_1_0 +887,2,53.0,2,0.0,1,111,2,38,37,10.0,0.0,0.0,2637.310889388946,0.0,7147.229027740065,91926.65313975282,10,12,1,11132,201700887,,,647.0,,2.0,0.0,9.0,3.0,5.0,2.6,2245.6654394087122,3480.0013853049004,520.0,1999.0,0.0,236756.0,1,1,1,210.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,9784.539917129012,0.10643855272587728,0.04132752672426047,91060.0,10,5,10,10_1,10_4,10_1_0 +888,2,58.0,1,0.0,8,300,6,62,38,10.0,788.4686365420245,458.01568545593517,834.4764543778484,0.0,0.0,48874.1,50,12,1,11133,201700888,,,170.0,,2.0,1.0,4.0,0.0,2.0,1.5,2213.161574419875,0.0,620.0,0.0,0.0,115900.0,1,1,1,120.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2080.960776375808,0.04257798663046088,0.017954795309541055,77266.66666666667,10,5,10,10_1,10_0,10_0_0 +889,1,41.0,2,272.0,99,111,2,0,85,2.0,0.0,0.0,619.1276919577585,0.0,109.69796040667983,4458.360315994116,0,70,2,11134,201700889,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3991.9178137339477,0.0,460.0,62.0,0.0,12954.0,0,7,3,32.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,728.8256523644384,0.16347392330535007,0.05626259474791095,12954.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +890,0,35.0,2,0.0,5,111,1,0,37,7.0,0.0,0.0,378.2062640002829,0.0,0.0,30719.69,0,10,2,11135,201700890,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4782.799771129045,0.0,281.0,0.0,0.0,26110.0,0,1,5,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,378.2062640002829,0.012311526060330782,0.014485111604759973,26110.0,7,4,7,7_0,7_4,7_0_0 +891,1,33.0,3,187.0,3,111,2,85,46,4.0,0.0,0.0,672.964882562781,0.0,1238.525359430256,36665.81999999999,60,50,2,11136,201700891,,,,496.0,1.0,0.0,4.0,2.0,4.0,2.1,4422.693659712482,0.0,500.0,700.0,0.0,35604.0,6,1,3,83.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1911.490241993037,0.05213275584708149,0.053687513818476494,16954.285714285714,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +892,2,58.0,4,0.0,6,300,6,13,43,9.0,1543.6216968921324,0.0,1709.3308017094637,0.0,0.0,19272.7258467513,50,50,1,11137,201700892,,,266.0,,2.0,2.0,7.0,0.0,2.0,1.5,2258.1880083151195,0.0,1270.0,0.0,0.0,49961.0,1,1,1,120.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3252.952498601596,0.16878528364216466,0.0651098356438341,33307.333333333336,9,5,9,9_1,9_0,9_0_0 +893,1,59.0,4,272.0,9,111,4,0,77,4.0,0.0,0.0,484.5347154452023,0.0,0.0,15746.781033505029,0,50,2,11138,201700893,,,290.0,122.0,0.0,2.0,2.0,0.0,1.0,1.0,3497.197383916862,0.0,360.0,0.0,0.0,16438.0,0,7,3,38.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,484.5347154452023,0.03077039773489193,0.02947650051376094,16438.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +894,2,57.0,2,0.0,8,111,2,68,62,3.0,0.0,0.0,646.0462872602698,0.0,1114.6728234872305,22366.120000000003,71,50,1,1114,201700894,,,400.0,418.0,2.0,1.0,4.0,0.0,2.0,1.5,1579.519832466421,0.0,480.0,630.0,0.0,20981.0,1,1,3,77.0,6,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1760.7191107475003,0.07872259966178756,0.08391969452111435,13987.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +895,2,80.0,3,0.0,1,300,5,0,71,2.0,396.6140022847205,346.98157989085996,177.66272899657417,583.8762408742635,0.0,8522.8,0,70,1,11141,201700895,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2799.535926477656,0.0,132.0,0.0,0.0,10860.0,0,5,1,59.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1505.1345520464183,0.1766009471120311,0.13859434180906247,10860.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +896,2,84.0,2,0.0,4,111,2,77,75,6.0,0.0,437.1967906624836,684.7801056163386,0.0,1276.0730531414974,36066.34,70,70,1,11142,201700896,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,1866.8443327997957,1230.0,0.0,0.0,0.0,31323.0,5,5,1,88.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2398.0499494203195,0.06648997235151445,0.07655875712480667,20882.0,5,3,5,5_1,5_3,5_0_1 +897,2,82.0,3,0.0,1,400,2,77,78,4.0,1269.1648073111057,0.0,538.3719060502248,212.31863304518674,0.0,12201.6,70,71,1,11143,201700897,,,200.0,,0.0,3.0,4.0,0.0,2.0,1.5,2210.205096884802,0.0,400.0,0.0,0.0,24977.0,5,5,1,103.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2019.8553464065171,0.16554020344926215,0.08086861298020247,16651.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +898,2,56.0,2,0.0,3,111,2,0,52,1.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,16710.699999999997,0,71,2,11144,201700898,,,,,1.0,2.0,5.0,0.0,1.0,1.0,2877.978530449322,750.0,0.0,0.0,0.0,8591.0,0,1,5,95.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1195.6421699742903,0.0715494964288923,0.13917380630593532,8591.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +899,2,77.0,1,0.0,4,111,1,0,77,6.0,0.0,0.0,309.56384597887927,0.0,247.7050718860512,14366.342505205332,0,70,2,11145,201700899,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3270.644761010284,0.0,230.0,140.0,0.0,22864.0,0,5,5,69.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,557.2689178649305,0.038789895038560875,0.024373203195632017,22864.0,6,3,6,6_0,6_2,6_0_1 +900,1,47.0,4,353.0,9,111,2,0,85,1.0,0.0,0.0,685.8935692027067,0.0,1278.1479686750608,9586.96,0,50,1,11147,201700900,,,240.0,,0.0,3.0,5.0,1.0,2.0,1.5,832.4837275232622,1232.0,0.0,0.0,0.0,6076.0,0,7,3,110.0,7,5.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1964.0415378777675,0.20486593642591266,0.32324580939397096,4050.6666666666665,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +901,1,33.0,2,224.0,7,111,4,52,63,4.0,0.0,0.0,942.1508355878933,0.0,0.0,16659.92,50,43,1,11149,201700901,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2212.4692080341433,0.0,700.0,0.0,0.0,39114.0,4,1,3,100.0,7,5.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,942.1508355878933,0.056551942361541555,0.024087304688548687,16297.5,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +902,2,62.0,1,0.0,7,112,2,43,37,10.0,2379.684013708323,0.0,1211.3367886130059,0.0,0.0,111886.02417758093,42,30,1,1115,201700902,,,400.0,,2.0,2.0,7.0,0.0,2.0,1.5,2325.3309471680914,0.0,900.0,0.0,0.0,96308.0,1,1,1,165.0,9,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3591.020802321329,0.032095347285035415,0.03728683808532343,64205.333333333336,10,5,10,10_1,10_0,10_0_0 +903,2,43.0,2,0.0,5,112,4,37,46,10.0,0.0,0.0,2018.894647688343,0.0,0.0,62573.41331690806,20,60,1,11150,201700903,,,257.0,,2.0,0.0,5.0,0.0,2.0,1.5,2096.470883985775,0.0,1500.0,0.0,0.0,75404.0,1,1,3,108.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.03226441615808122,0.02677437069238161,50269.333333333336,10,5,10,10_1,10_1,10_0_0 +904,2,85.0,3,0.0,1,400,2,0,77,6.0,2538.3296146222115,166.55115834761278,477.8050666195745,0.0,0.0,13687.48,0,70,1,11151,201700904,,,141.0,,0.0,4.0,4.0,0.0,1.0,1.0,3053.535037368886,0.0,355.0,0.0,0.0,22681.0,0,5,1,90.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3182.6858395893987,0.23252533260975716,0.14032387635419066,22681.0,6,3,6,6_1,6_0,6_1_0 +905,2,33.0,2,0.0,1,111,2,0,22,8.0,0.0,0.0,646.0462872602698,0.0,0.0,31032.220315994116,0,41,2,11156,201700905,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3756.940722955839,0.0,480.0,0.0,0.0,30153.0,0,1,1,55.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,646.0462872602698,0.02081856472665268,0.021425605653177787,30153.0,8,4,8,8_0,8_3,8_1_0 +906,2,34.0,2,0.0,4,111,4,38,38,9.0,0.0,0.0,1808.9296043287552,0.0,0.0,57109.340000000004,12,12,2,11158,201700906,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3481.2943521971497,0.0,1344.0,0.0,0.0,64481.0,1,1,2,72.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1808.9296043287552,0.03167484695723598,0.028053684098087114,35822.777777777774,9,5,9,9_0,9_3,9_0_1 +907,2,40.0,3,0.0,9,111,2,0,35,7.0,0.0,0.0,542.4096953456014,0.0,1307.5289151699417,22253.896974448147,0,30,1,11159,201700907,,,168.0,,1.0,0.0,4.0,0.0,1.0,1.0,2241.994383482015,0.0,403.0,739.0,0.0,25210.0,0,1,2,96.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1849.9386105155431,0.08312874875980762,0.07338114282092595,25210.0,7,4,7,7_1,7_3,7_0_0 +908,2,27.0,3,0.0,1,111,2,46,35,9.0,0.0,0.0,807.5578590753372,0.0,0.0,41318.68,42,12,8,1116,201700908,,,,800.0,2.0,0.0,2.0,0.0,2.0,1.5,4220.45889472339,0.0,600.0,0.0,0.0,58926.0,1,1,3,40.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,807.5578590753372,0.019544619021598396,0.013704610173358741,39284.0,9,5,9,9_0,9_4,9_1_0 +909,2,58.0,3,0.0,99,211,2,0,54,4.0,0.0,0.0,452.2324010821888,0.0,1634.853474447938,12071.160000000002,0,50,2,11160,201700909,,,,332.0,1.0,3.0,5.0,0.0,1.0,1.0,1291.0173233598227,0.0,336.0,924.0,0.0,17639.0,0,1,3,97.0,2,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2087.085875530127,0.1728985346503672,0.1183222334333084,17639.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +910,2,36.0,2,0.0,1,111,2,46,31,10.0,0.0,0.0,613.7439728972563,0.0,2420.432416715129,68240.6,31,31,1,11161,201700910,,,660.0,,2.0,0.0,4.0,1.0,3.0,1.8,3974.452649980032,0.0,456.0,1368.0,0.0,107386.0,1,1,2,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3034.1763896123853,0.04446292074824056,0.028254859940889738,59658.88888888889,10,5,10,10_1,10_4,10_1_0 +911,2,83.0,3,0.0,1,300,5,0,71,5.0,0.0,721.7216861729887,457.61612014269105,0.0,0.0,27000.0,0,71,1,11165,201700911,,,,,0.0,5.0,5.0,0.0,1.0,1.0,1873.3777742095651,0.0,340.0,0.0,0.0,18420.0,0,5,5,93.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1179.3378063156797,0.04367917801169184,0.06402485376306621,18420.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +912,2,53.0,3,0.0,3,111,1,56,48,4.0,0.0,0.0,566.6364311178615,0.0,941.2792731669946,32847.46000000001,60,60,2,11166,201700912,,,,,3.0,1.0,6.0,3.0,5.0,2.8,1843.1305722836096,0.0,421.0,532.0,0.0,51812.0,1,1,2,107.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1507.915704284856,0.045906615132033216,0.029103599634927355,18504.285714285714,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +913,1,66.0,9,20.0,3,111,1,78,78,2.0,0.0,0.0,581.4416585342427,0.0,0.0,14506.439999999999,70,50,2,11167,201700913,,,,317.0,0.0,0.0,3.0,0.0,2.0,1.5,1710.4626260398281,0.0,432.0,0.0,0.0,16509.0,5,5,3,65.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,581.4416585342427,0.04008162295740669,0.03521967766274412,11006.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +914,2,71.0,3,0.0,5,221,5,71,71,3.0,0.0,693.9631597817199,2105.336667648345,233.5504963497054,161.08285188979997,38988.36990098473,44,44,1,11169,201700914,,,340.0,,0.0,1.0,5.0,0.0,2.0,1.5,1563.3529661591729,155.266900540438,1500.0,0.0,0.0,23340.0,5,5,1,150.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3193.933175669571,0.0819201516703806,0.13684375217093278,15560.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +915,2,52.0,3,0.0,6,112,2,0,37,10.0,0.0,0.0,726.8020731678034,0.0,2017.027013929274,76557.01703804704,0,12,1,1117,201700915,,,230.0,,1.0,2.0,6.0,1.0,2.0,1.5,2530.7724666678273,0.0,540.0,1140.0,0.0,93055.0,0,1,2,139.0,10,2.0,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2743.8290870970777,0.035840334344968784,0.02948610055447937,62036.666666666664,10,5,10,10_1,10_1,10_0_0 +916,2,54.0,2,0.0,1,120,2,55,74,2.0,2855.620816449988,0.0,904.4648021643776,0.0,0.0,61953.899999999994,42,44,1,11172,201700916,,,442.0,,1.0,2.0,6.0,0.0,2.0,1.5,2053.1076396736667,0.0,672.0,0.0,0.0,23717.0,1,7,1,200.0,0,2.0,3,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3760.0856186143656,0.06069166942862945,0.15853968118288003,15811.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +917,2,47.0,4,0.0,1,112,2,67,55,3.0,0.0,0.0,1142.6943705916021,215.85727692927318,0.0,36246.46320079246,43,30,1,11173,201700917,,,210.0,,2.0,0.0,3.0,2.0,4.0,2.1,2414.6943865864932,0.0,849.0,0.0,0.0,29952.0,4,1,2,50.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1358.5516475208753,0.03748094372670195,0.04535762712075572,14262.857142857143,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +918,1,47.0,3,67.0,99,111,4,0,52,4.0,0.0,0.0,2153.487624200899,0.0,0.0,30237.460000000003,0,50,1,11175,201700918,,,,436.0,1.0,0.0,5.0,1.0,2.0,1.3,706.9677654137446,0.0,1600.0,0.0,0.0,22680.0,0,1,3,118.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2153.487624200899,0.07121919712174564,0.09495095344801142,17446.153846153844,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +919,2,36.0,1,0.0,5,112,2,22,48,8.0,0.0,0.0,4306.975248401798,0.0,0.0,93215.9061627454,31,50,1,11176,201700919,,,123.0,,2.0,0.0,8.0,3.0,5.0,2.4,1833.2866547684823,0.0,3200.0,0.0,0.0,64097.0,1,1,2,250.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4306.975248401798,0.04620429522920971,0.06719464637037299,26707.083333333336,7,4,7,7_1,7_0,7_0_0 +920,1,48.0,5,382.0,99,111,2,0,85,3.0,0.0,0.0,701.2294076304178,0.0,983.742999776032,17145.767533755657,0,71,8,11178,201700920,,,,,0.0,2.0,4.0,2.0,3.0,2.0,1786.0020404533843,0.0,521.0,556.0,0.0,26984.0,0,4,3,59.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1684.9724074064497,0.09827337295278077,0.06244338894924584,13492.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +921,2,43.0,3,0.0,8,120,6,21,34,7.0,0.0,0.0,845.085458145744,0.0,1574.798642508622,65520.560000000005,31,30,1,11179,201700921,,,,,2.0,0.0,6.0,2.0,4.0,2.3,2884.9965109866957,1517.94,0.0,0.0,0.0,52191.0,1,1,2,140.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2419.884100654366,0.036933202351359114,0.04636592708808734,22691.739130434784,6,3,6,6_1,6_0,6_0_0 +922,2,65.0,3,0.0,1,112,2,77,75,6.0,0.0,0.0,1280.4831243232347,0.0,2386.152863597922,26899.88,44,50,1,1118,201700922,,,340.0,,0.0,3.0,6.0,0.0,2.0,1.5,1912.9854274439533,2300.0,0.0,0.0,0.0,33462.0,5,5,1,115.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3666.635987921157,0.13630677861466878,0.10957611583052887,22308.0,6,3,6,6_1,6_0,6_1_0 +923,2,54.0,3,0.0,99,211,2,0,38,6.0,0.0,0.0,857.3669615033833,0.0,1597.6849608438263,23427.7,0,50,1,11180,201700923,,,,,1.0,2.0,5.0,0.0,1.0,1.0,760.5097243703086,1540.0,0.0,0.0,0.0,23660.0,0,1,3,98.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2455.0519223472097,0.10479269934083199,0.1037638175125617,23660.0,6,3,6,6_1,6_1,6_0_0 +924,2,36.0,2,0.0,6,111,6,0,48,8.0,0.0,0.0,807.5578590753372,0.0,0.0,13264.676722052927,0,43,2,11183,201700924,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5405.407087352335,0.0,600.0,0.0,0.0,30396.0,0,1,2,35.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,807.5578590753372,0.06088032720260327,0.026567899035245993,30396.0,8,4,8,8_0,8_3,8_0_0 +925,2,58.0,2,0.0,8,111,2,77,37,8.0,0.0,0.0,659.5055849115254,0.0,1771.091263985266,38417.44,41,30,2,11184,201700925,,,,510.0,1.0,2.0,4.0,1.0,3.0,2.0,2783.9033888989848,0.0,490.0,1001.0,0.0,58135.0,7,1,3,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2430.5968488967915,0.06326805869669586,0.04180952694412646,29067.5,8,4,8,8_0,8_4,8_0_0 +926,1,20.0,5,330.0,99,120,2,0,63,3.0,0.0,0.0,807.5578590753372,0.0,672.3423379764247,7611.5511912957445,0,50,1,11185,201700926,,,30.0,320.0,3.0,1.0,4.0,2.0,3.0,2.0,351.99763690786887,0.0,600.0,380.0,0.0,30800.0,0,1,3,100.0,0,1.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1479.900197051762,0.1944281999632499,0.04804870769648578,15400.0,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +927,2,44.0,2,0.0,9,211,2,0,48,7.0,0.0,0.0,345.1737117740894,0.0,643.2238154046573,20839.92,0,31,2,11186,201700927,,,,,1.0,0.0,2.0,0.0,1.0,1.0,1063.5593928113512,620.0,0.0,0.0,0.0,25094.0,0,1,2,59.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,988.3975271787467,0.047428086440770734,0.03938780294806515,25094.0,7,4,7,7_0,7_1,7_0_0 +928,2,53.0,1,0.0,9,111,2,0,56,3.0,0.0,0.0,538.3719060502248,0.0,1415.4575536345783,42437.119999999995,0,50,2,11187,201700928,,,,429.0,1.0,3.0,4.0,1.0,2.0,1.5,648.208043439591,0.0,400.0,800.0,0.0,24060.0,0,1,3,90.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1953.8294596848032,0.04604057626165026,0.0812065444590525,16040.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +929,2,46.0,2,0.0,4,111,6,0,46,5.0,0.0,0.0,2671.6705837742406,0.0,0.0,42297.799999999996,0,31,1,11188,201700929,,,359.0,,1.0,0.0,6.0,2.0,3.0,2.0,159.55159501875946,0.0,1985.0,0.0,0.0,40342.0,0,1,1,97.0,7,6.0,2,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2671.6705837742406,0.0631633461734237,0.06622553625933868,20171.0,5,3,5,5_1,5_2,5_0_1 +930,2,44.0,4,0.0,1,112,5,52,46,5.0,0.0,832.755791738064,1214.028648143257,0.0,0.0,33387.520000000004,42,42,1,11189,201700930,,,,,2.0,0.0,3.0,1.0,3.0,2.0,2285.8390133732505,0.0,902.0,0.0,0.0,40491.0,1,1,2,65.0,10,2.0,4,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2046.7844398813208,0.06130387761299194,0.05054912054237536,20245.5,5,3,5,5_1,5_1,5_1_0 +931,2,50.0,2,0.0,2,221,1,55,47,5.0,0.0,0.0,842.0580997811396,159.23897478389006,214.77713585306665,29711.31559490199,42,31,2,1119,201700931,,,460.0,515.0,2.0,0.0,4.0,3.0,5.0,2.6,3494.794196359813,207.02253405391735,540.0,0.0,0.0,47815.0,4,1,3,90.0,1,2.0,4,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1216.0742104180963,0.04092966555229739,0.025432902026939166,18390.384615384613,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +932,2,48.0,4,0.0,1,300,4,22,22,2.0,0.0,0.0,2745.6967208561464,0.0,0.0,21520.760000000002,41,71,1,11190,201700932,,,60.0,,2.0,0.0,3.0,2.0,4.0,2.1,2922.7654368431054,0.0,2040.0,0.0,0.0,23530.0,1,1,1,60.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2745.6967208561464,0.12758363184460708,0.11668919340655105,11204.761904761905,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +933,2,71.0,2,0.0,1,111,2,75,77,7.0,0.0,0.0,672.964882562781,0.0,4246.372660903735,45221.700000000004,41,50,1,11191,201700933,,,1800.0,,0.0,2.0,5.0,0.0,2.0,1.5,1738.6948592593499,0.0,500.0,2400.0,0.0,39577.0,5,5,1,97.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4919.337543466516,0.1087826760928164,0.12429788876030311,26384.666666666668,7,4,7,7_1,7_3,7_1_0 +934,2,44.0,2,0.0,5,111,2,56,21,2.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,52794.69883901972,50,50,1,11192,201700934,,,612.0,,2.0,0.0,6.0,2.0,4.0,2.5,2726.154153158057,1800.0,0.0,0.0,0.0,31315.0,1,1,2,110.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2869.541207938297,0.05435282842862747,0.09163471843967098,12526.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +935,2,41.0,3,0.0,9,112,4,54,54,7.0,0.0,0.0,2018.894647688343,0.0,0.0,24357.36,43,43,1,11194,201700935,,,300.0,,2.0,0.0,7.0,1.0,3.0,1.8,1897.2308320619268,0.0,1500.0,0.0,0.0,45420.0,1,1,2,120.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.08288643135743541,0.044449463841663206,25233.333333333332,7,4,7,7_1,7_0,7_0_0 +936,1,47.0,3,46.0,99,111,1,0,46,4.0,0.0,0.0,67.2964882562781,0.0,0.0,20372.402702675387,0,31,2,11195,201700936,,,240.0,254.0,1.0,0.0,3.0,2.0,3.0,1.6,1079.0425109158512,0.0,50.0,0.0,0.0,26087.0,0,1,3,68.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,67.2964882562781,0.003303316218437035,0.0025796944169999654,16304.375,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +937,2,85.0,2,0.0,9,111,2,77,75,6.0,0.0,0.0,807.5578590753372,0.0,0.0,41125.119999999995,50,44,2,11196,201700937,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2983.667044259145,0.0,600.0,0.0,0.0,32210.0,5,5,1,68.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.019636607967960636,0.025071650390417175,21473.333333333332,6,3,6,6_0,6_2,6_0_0 +938,2,51.0,3,0.0,1,221,6,56,47,6.0,1829.183778537131,0.0,888.3136449828709,0.0,0.0,63725.01087530163,41,41,1,11197,201700938,,,200.0,,2.0,0.0,4.0,2.0,4.0,2.5,2104.7260511108666,0.0,660.0,0.0,0.0,55017.0,1,1,2,210.0,1,2.0,4,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2717.497423520002,0.04264412647708535,0.04939377689659563,22006.8,6,3,6,6_1,6_1,6_1_0 +939,2,31.0,1,0.0,2,111,2,52,67,5.0,0.0,277.585263912688,901.7729426341265,0.0,1769.3219420432229,40759.166811689,50,50,1,11198,201700939,,,523.0,,2.0,0.0,4.0,2.0,4.0,2.1,2081.471868341944,0.0,670.0,1000.0,0.0,39634.0,1,1,2,120.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2948.6801485900373,0.07234397509186592,0.07439774306378456,18873.333333333332,5,3,5,5_1,5_3,5_0_1 +940,2,62.0,2,0.0,99,111,1,0,52,10.0,0.0,0.0,1049.8252167979383,0.0,0.0,34172.4,0,30,2,11199,201700940,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2561.056891390151,0.0,780.0,0.0,0.0,47836.0,0,1,1,82.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1049.8252167979383,0.03072143650425309,0.021946342018520325,47836.0,10,5,10,10_0,10_4,10_0_0 +941,2,37.0,1,0.0,3,111,1,0,37,7.0,0.0,0.0,468.38355826369553,0.0,0.0,35521.52,0,30,2,11200,201700941,,,,758.0,1.0,0.0,3.0,1.0,2.0,1.3,891.4996833339874,0.0,348.0,0.0,0.0,33150.0,0,1,3,74.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,468.38355826369553,0.013185909788311299,0.014129217443852052,25500.0,7,4,7,7_0,7_3,7_0_1 +942,2,65.0,3,0.0,2,111,2,0,75,4.0,0.0,0.0,807.5578590753372,0.0,1415.4575536345783,18231.8,0,60,2,11201,201700942,,,,415.0,0.0,0.0,4.0,0.0,1.0,1.0,2935.3870685443435,0.0,600.0,800.0,0.0,17490.0,0,5,3,60.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2223.0154127099154,0.1219306603138426,0.12710208191594713,17490.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +943,1,50.0,3,350.0,1,400,4,0,85,1.0,0.0,0.0,471.07541779394666,0.0,0.0,9652.42,0,71,8,11202,201700943,,,,90.0,0.0,1.0,2.0,1.0,2.0,1.3,991.5646280398689,0.0,350.0,0.0,0.0,12802.0,0,4,3,46.0,0,1.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,471.07541779394666,0.04880386657376561,0.036797017481170646,9847.692307692307,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +944,2,45.0,1,0.0,99,112,2,0,37,4.0,1269.1648073111057,0.0,471.07541779394666,123.8525359430256,0.0,24238.34,0,20,1,11203,201700944,,,400.0,,1.0,0.0,6.0,0.0,1.0,1.0,4027.4881215114865,0.0,350.0,0.0,0.0,40870.0,0,1,2,120.0,6,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1864.092761048078,0.07690678326354354,0.0456102951076114,40870.0,10,5,10,10_1,10_1,10_0_0 +945,2,66.0,4,0.0,1,111,2,0,78,4.0,0.0,0.0,269.1859530251124,0.0,2653.9829130648345,11601.119999999999,0,71,1,11204,201700945,,,500.0,,0.0,0.0,3.0,0.0,1.0,1.0,2527.7210441857083,0.0,200.0,1500.0,0.0,17599.0,0,5,1,60.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2923.1688660899467,0.2519729876158463,0.16609857753792526,17599.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +946,2,38.0,2,0.0,9,300,2,62,43,8.0,0.0,0.0,1682.4122064069525,0.0,0.0,38646.54,42,33,1,11205,201700946,,,260.0,,2.0,0.0,5.0,2.0,4.0,2.1,2442.521083101934,0.0,1250.0,0.0,0.0,54531.0,1,1,2,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1682.4122064069525,0.043533320354343555,0.030852399670040023,25967.142857142855,7,4,7,7_1,7_0,7_0_0 +947,2,84.0,4,0.0,99,111,1,0,77,5.0,0.0,0.0,243.61328748772672,0.0,0.0,10036.119999999999,0,70,2,11208,201700947,,,,478.0,0.0,1.0,1.0,0.0,1.0,1.0,4760.770414296806,0.0,181.0,0.0,0.0,18310.0,0,5,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,243.61328748772672,0.024273652316605096,0.013304931047937014,18310.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +948,2,78.0,2,0.0,1,300,2,0,78,2.0,1903.7472109666587,0.0,616.4358324275074,191.08676974066807,0.0,11102.36,0,70,1,11209,201700948,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2418.9850528116935,0.0,458.0,0.0,0.0,11086.0,0,5,1,80.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2711.269813134834,0.24420662031629614,0.24456700461255942,11086.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +949,2,63.0,1,0.0,9,111,5,54,72,5.0,0.0,0.0,2456.3218213541504,0.0,0.0,114052.63119129575,31,50,1,1121,201700949,,,,,1.0,0.0,4.0,2.0,4.0,2.1,2181.7831210828904,0.0,1825.0,0.0,0.0,48731.0,1,5,1,150.0,6,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2456.3218213541504,0.021536739623606437,0.050405733954857285,23205.238095238095,6,3,6,6_1,6_2,6_0_0 +950,2,70.0,5,0.0,1,400,6,78,71,2.0,158.64560091388822,69.396315978172,1487.252390463746,318.4779495677801,0.0,24481.326811689,41,70,1,11210,201700950,,,173.0,,0.0,2.0,5.0,0.0,2.0,1.5,1820.2222585119187,0.0,1105.0,0.0,0.0,17831.0,5,5,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2033.7722569235864,0.08307442944442575,0.11405822763297552,11887.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +951,2,53.0,3,0.0,6,112,4,63,45,9.0,0.0,0.0,1504.7494774103782,0.0,0.0,35067.54,50,41,1,11211,201700951,,,159.0,,2.0,5.0,4.0,0.0,2.0,1.5,2316.491351936053,0.0,1118.0,0.0,0.0,50728.0,1,1,2,90.0,6,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1504.7494774103782,0.042910038098206434,0.029663094886657825,33818.666666666664,9,5,9,9_1,9_1,9_0_0 +952,2,42.0,2,0.0,99,400,2,55,48,5.0,3680.5779412022066,0.0,646.0462872602698,176.9321942043223,0.0,27778.101750603255,50,43,1,11212,201700952,,,460.0,,2.0,2.0,5.0,1.0,3.0,1.8,188.3977306193087,0.0,480.0,0.0,0.0,35979.0,4,1,2,80.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4503.556422666799,0.16212614033530912,0.12517180640559214,19988.333333333332,5,3,5,5_1,5_0,5_0_0 +953,2,71.0,3,0.0,99,111,1,0,75,6.0,0.0,0.0,471.07541779394666,0.0,831.5813127603147,25730.248015878893,0,33,3,11214,201700953,,,,,0.0,1.0,2.0,1.0,2.0,1.5,2904.871164480948,0.0,350.0,470.0,0.0,31690.0,0,5,1,34.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1302.6567305542615,0.05062744555553268,0.04110623952522125,21126.666666666668,5,3,5,5_0,5_4,5_0_0 +954,2,46.0,3,0.0,4,111,1,0,52,5.0,0.0,0.0,3634.010365839017,0.0,79.61948739194503,13710.16,0,71,2,11215,201700954,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3062.81510584659,0.0,2700.0,45.0,0.0,19440.0,0,1,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3713.629853230962,0.27086699595270675,0.19103034224439105,19440.0,5,3,5,5_0,5_4,5_0_1 +955,2,46.0,1,0.0,1,111,2,34,46,9.0,0.0,0.0,807.5578590753372,0.0,2777.83544900786,56772.25569949954,10,31,1,11216,201700955,,,677.0,,2.0,0.0,5.0,2.0,4.0,2.1,1857.9333790463693,0.0,600.0,1570.0,0.0,81400.0,1,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3585.393308083197,0.06315396955620355,0.04404660083640291,38761.90476190476,9,5,9,9_1,9_4,9_1_0 +956,2,39.0,3,0.0,1,112,2,43,43,5.0,2538.3296146222115,277.585263912688,1211.3367886130059,0.0,0.0,25701.899999999998,44,33,1,11217,201700956,,,,,2.0,0.0,6.0,4.0,6.0,2.9,1970.8247529524265,0.0,900.0,0.0,0.0,56260.0,1,1,2,160.0,6,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4027.251667147905,0.1566908153540363,0.07158285935207795,19400.0,5,3,5,5_1,5_0,5_1_0 +957,2,32.0,2,0.0,1,221,4,0,69,3.0,0.0,0.0,215.3487624200899,54.84898020333991,0.0,15220.080000000002,0,50,1,11218,201700957,,,30.0,,1.0,0.0,3.0,0.0,1.0,1.0,3434.618227787455,0.0,160.0,0.0,0.0,13964.0,0,1,3,75.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,270.1977426234298,0.01775271500697958,0.01934959485988469,13964.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +958,2,42.0,2,0.0,5,111,2,46,54,8.0,0.0,0.0,1063.284514449194,0.0,902.3541904420437,22465.931693502604,50,31,1,11219,201700958,,,348.0,,2.0,0.0,4.0,1.0,3.0,1.8,1774.5489097976233,0.0,790.0,510.0,0.0,53911.0,1,1,2,100.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1965.6387048912375,0.08749419929286627,0.0364608095730229,29950.555555555555,8,4,8,8_1,8_3,8_0_0 +959,1,30.0,3,123.0,5,111,1,0,43,4.0,0.0,0.0,1036.3659191466827,56.61830214538313,1716.2422837819263,22342.117038047047,0,30,8,11220,201700959,970.0,970.0,,260.0,1.0,0.0,2.0,2.0,3.0,1.6,1042.8117678947135,0.0,770.0,970.0,0.0,28147.0,0,1,3,67.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2809.226505073992,0.12573680910766324,0.09980553895882303,17591.875,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +960,2,28.0,3,0.0,6,112,4,84,62,5.0,0.0,0.0,807.5578590753372,0.0,0.0,47756.14,41,50,2,11222,201700960,,,210.0,,1.0,0.0,4.0,1.0,3.0,1.8,3801.9724334985785,0.0,600.0,0.0,0.0,33041.0,3,1,2,100.0,3,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.016910032072846283,0.024441084079638548,18356.11111111111,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +961,2,54.0,1,0.0,7,112,2,67,37,10.0,1745.1016100527704,0.0,686.4241802140366,0.0,0.0,27074.51371184817,31,50,1,11223,201700961,,,400.0,,2.0,2.0,7.0,0.0,2.0,1.5,1241.9408171003358,0.0,510.0,0.0,0.0,74450.0,1,1,1,110.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2431.5257902668072,0.0898086597656134,0.032659849432730786,49633.333333333336,10,5,10,10_1,10_0,10_0_0 +962,2,53.0,2,0.0,1,111,2,63,52,7.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,29334.322511188544,71,71,1,11224,201700962,,,130.0,,2.0,2.0,4.0,0.0,2.0,1.5,2807.4249518269326,1700.0,0.0,0.0,0.0,39710.0,1,1,1,119.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2710.1222519417247,0.09238741583031426,0.0682478532344932,26473.333333333332,7,4,7,7_1,7_3,7_1_0 +963,2,59.0,3,0.0,1,400,5,0,68,7.0,1586.456009138882,235.94747432578478,1695.871504058208,309.631339857564,0.0,41045.51087530163,0,50,1,11225,201700963,,,400.0,,1.0,0.0,3.0,0.0,2.0,1.5,5042.683281295263,0.0,1260.0,0.0,0.0,38269.0,0,1,1,74.0,0,0.0,5,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3827.9063273804386,0.09326004831587587,0.10002629615042041,25512.666666666668,7,4,7,7_1,7_0,7_1_0 +964,2,68.0,2,0.0,1,300,4,86,75,6.0,0.0,138.792631956344,1499.587951942817,132.69914565324171,1073.8856792653332,21645.393694889543,71,44,1,11229,201700964,,,150.0,,0.0,2.0,5.0,0.0,2.0,1.5,1898.841195690467,1035.1126702695867,686.0,0.0,0.0,33823.0,5,5,1,200.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2844.965408817736,0.1314351426876301,0.08411333733902185,22548.666666666668,6,3,6,6_1,6_0,6_1_0 +965,1,20.0,2,118.0,99,111,2,0,84,1.0,0.0,0.0,242.1783300350466,0.0,451.2941285500418,11749.78,0,41,2,1123,201700965,,,,317.0,0.0,0.0,2.0,0.0,1.0,1.0,3796.6821814191785,435.0,0.0,0.0,0.0,5067.0,0,3,3,36.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,693.4724585850884,0.059020037701564484,0.136860560210201,5067.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +966,2,76.0,2,0.0,2,111,2,0,72,5.0,0.0,0.0,3903.19631886413,0.0,831.5813127603147,22041.35697444815,0,50,2,11230,201700966,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4681.810128357907,0.0,2900.0,470.0,0.0,19027.0,0,5,1,75.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,4734.777631624444,0.21481334552647202,0.24884520058992193,19027.0,5,3,5,5_0,5_2,5_0_1 +967,2,86.0,2,0.0,4,400,2,0,72,5.0,0.0,0.0,2180.4062195034103,56.61830214538313,0.0,22177.44,0,70,1,11232,201700967,,,147.0,,0.0,5.0,5.0,0.0,1.0,1.0,2748.092216523524,0.0,1620.0,0.0,0.0,25050.0,0,5,1,100.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2237.0245216487933,0.10086937543958155,0.08930237611372428,25050.0,7,4,7,7_1,7_1,7_0_1 +968,2,46.0,3,0.0,9,112,4,0,13,1.0,0.0,0.0,2832.888819055654,0.0,262.80505766912427,55413.76,0,50,1,11233,201700968,,,150.0,,1.0,0.0,8.0,2.0,3.0,2.0,1040.212074139479,253.3163913595934,2000.0,0.0,0.0,20938.0,0,1,1,240.0,8,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3095.6938767247784,0.05586507533011256,0.1478505051449412,10469.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +969,2,70.0,3,0.0,5,111,1,0,78,3.0,0.0,0.0,1197.87749096175,0.0,300.7847301473479,20827.899999999998,0,71,2,11234,201700969,,,,,0.0,6.0,3.0,0.0,1.0,1.0,2403.627658131416,0.0,890.0,170.0,0.0,15207.0,0,5,1,60.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1498.662221109098,0.07195455236049234,0.0985508135141118,15207.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +970,2,44.0,2,0.0,8,112,4,33,38,9.0,0.0,0.0,3055.2605668350257,0.0,0.0,39464.6,42,31,1,11235,201700970,,,424.0,,2.0,0.0,5.0,2.0,4.0,2.3,2268.6765243442333,0.0,2270.0,0.0,0.0,73064.0,1,1,2,130.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3055.2605668350257,0.07741775076486335,0.04181622367835084,31766.956521739132,8,4,8,8_1,8_0,8_0_0 +971,2,65.0,2,0.0,4,111,1,77,77,6.0,0.0,0.0,592.2090966552472,0.0,0.0,27127.538839019715,41,60,2,11236,201700971,,,,,1.0,2.0,3.0,1.0,3.0,2.0,2634.039919784731,0.0,440.0,0.0,0.0,55227.0,5,5,2,68.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,592.2090966552472,0.021830550134663354,0.01072318063004051,27613.5,8,4,8,8_0,8_4,8_0_1 +972,2,63.0,2,0.0,1,111,2,34,74,10.0,0.0,0.0,729.7639437183279,0.0,602.449866067852,63819.41410896947,30,20,1,11238,201700972,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1925.6031330834605,580.6982080212382,302.0,0.0,0.0,63770.0,1,5,1,114.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1332.2138097861798,0.02087474208884886,0.0208909175127204,42513.333333333336,10,5,10,10_1,10_2,10_1_0 +973,2,32.0,2,0.0,9,112,4,46,21,6.0,0.0,0.0,201.8894647688343,0.0,0.0,31155.925846751303,31,50,1,11239,201700973,,,26.0,,2.0,0.0,6.0,2.0,4.0,2.1,2935.669583125153,0.0,150.0,0.0,0.0,45775.0,1,1,2,155.0,8,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,201.8894647688343,0.006479969998705263,0.004410474380531606,21797.619047619046,6,3,6,6_1,6_1,6_0_0 +974,2,60.0,3,0.0,1,300,4,71,52,8.0,0.0,0.0,2826.45250676368,116.7752481748527,0.0,17658.72,70,70,1,1124,201700974,,,136.0,,1.0,2.0,5.0,0.0,2.0,1.5,1593.3078771573787,0.0,2100.0,0.0,0.0,40430.0,5,1,1,130.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2943.2277549385326,0.1666727687475951,0.07279811414638962,26953.333333333332,7,4,7,7_1,7_0,7_1_0 +975,1,24.0,4,439.0,99,111,2,85,85,1.0,0.0,0.0,996.5499097993871,0.0,1857.0494025392525,6383.82,71,50,1,11241,201700975,,,40.0,,0.0,1.0,3.0,2.0,4.0,2.1,882.9915040847304,1790.0,0.0,0.0,0.0,17958.0,4,6,3,72.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2853.5993123386397,0.4470049770104169,0.15890407129628242,8551.42857142857,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +976,2,26.0,3,0.0,3,111,1,68,56,4.0,0.0,0.0,565.290501352736,0.0,828.0426688762283,30308.479999999996,50,50,2,11245,201700976,,,,725.0,2.0,0.0,3.0,1.0,3.0,1.8,1562.804541464502,0.0,420.0,468.0,0.0,29990.0,1,1,3,50.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1393.3331702289643,0.04597172706216097,0.046459925649515316,16661.11111111111,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +977,2,64.0,3,0.0,1,111,2,74,21,1.0,0.0,0.0,3499.417389326461,162.7776186679765,0.0,46422.92,50,50,1,11246,201700977,,,280.0,,1.0,2.0,4.0,0.0,2.0,1.5,1614.79371222094,0.0,2600.0,0.0,0.0,15557.0,6,1,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3662.1950079944377,0.07888764877337397,0.23540496291022933,10371.333333333334,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +978,2,52.0,2,0.0,2,112,2,53,56,6.0,0.0,0.0,1749.7086946632305,0.0,0.0,20228.84,50,50,1,11247,201700978,,,114.0,,2.0,2.0,4.0,0.0,2.0,1.5,2328.447961514556,0.0,1300.0,0.0,0.0,31434.0,1,1,1,90.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1749.7086946632305,0.0864957503575702,0.055662934868716374,20956.0,5,3,5,5_1,5_1,5_0_1 +979,2,65.0,1,0.0,8,111,1,0,77,6.0,0.0,0.0,371.4766151746551,0.0,0.0,16714.890158203398,0,50,2,1125,201700979,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2094.4848776969657,0.0,276.0,0.0,0.0,22436.0,0,5,1,50.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,371.4766151746551,0.02222429293035709,0.016557167729303577,22436.0,6,3,6,6_0,6_3,6_0_0 +980,2,54.0,3,0.0,1,111,4,65,37,8.0,0.0,0.0,2018.894647688343,0.0,0.0,42151.42584675131,50,71,2,11250,201700980,,,,344.0,3.0,1.0,3.0,2.0,4.0,2.5,3760.2647633645342,0.0,1500.0,0.0,0.0,74620.0,1,1,3,51.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2018.894647688343,0.047896236180203694,0.027055677401344718,29848.0,8,4,8,8_0,8_4,8_1_0 +981,2,57.0,1,0.0,9,111,2,0,77,10.0,0.0,166.55115834761278,4857.460522338153,0.0,0.0,110537.36,30,31,1,11251,201700981,,,707.0,,0.0,2.0,4.0,0.0,2.0,1.5,1915.5568640554716,0.0,3609.0,0.0,0.0,95440.0,8,5,1,185.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5024.011680685766,0.04545080216033535,0.05264052473476284,63626.666666666664,10,5,10,10_1,10_3,10_0_0 +982,2,53.0,3,0.0,7,112,5,0,34,9.0,0.0,485.77421184720396,604.3224645413774,0.0,0.0,54526.979999999996,0,0,1,11252,201700982,,,133.0,,1.0,0.0,3.0,0.0,1.0,1.0,2347.341458933378,0.0,449.0,0.0,0.0,40320.0,0,1,1,80.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1090.0966763885813,0.01999187698252464,0.02703612788662156,40320.0,9,5,9,9_1,9_2,9_0_0 +983,2,65.0,2,0.0,8,221,6,78,77,7.0,0.0,0.0,1100.9705478727096,0.0,1887.8665121601189,32716.61120741535,70,60,1,11253,201700983,,,360.0,,0.0,3.0,4.0,0.0,2.0,1.5,2253.5271674932033,0.0,818.0,1067.0,0.0,33956.0,5,5,1,104.0,1,2.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2988.8370600328285,0.09135533754044174,0.08802088173026353,22637.333333333332,6,3,6,6_1,6_1,6_0_0 +984,2,31.0,2,0.0,99,111,4,64,37,9.0,0.0,0.0,524.9126083989692,35.38643884086446,0.0,35635.16,60,30,2,11254,201700984,,,,675.0,2.0,1.0,4.0,0.0,2.0,1.5,2386.1905964557445,0.0,390.0,0.0,0.0,48284.0,1,1,3,100.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,560.2990472398336,0.015723208405401676,0.011604238406922244,32189.333333333332,9,5,9,9_0,9_2,9_0_0 +985,2,66.0,2,0.0,2,111,2,77,72,7.0,0.0,277.585263912688,1169.3172917951674,0.0,2349.340553465971,28741.472178404587,50,70,1,11255,201700985,,,90.0,,0.0,2.0,5.0,0.0,2.0,1.5,1411.2551117086634,1036.6000329159756,440.0,720.0,0.0,36259.0,5,5,1,95.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3796.2431091738263,0.1320824168508042,0.10469795386452539,24172.666666666668,7,4,7,7_1,7_3,7_0_1 +986,2,75.0,4,0.0,7,111,2,0,77,4.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,18569.667849749774,0,60,2,11257,201700986,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3309.9023751385675,1500.0,0.0,0.0,0.0,17580.0,0,5,1,73.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2391.2843399485805,0.12877367324482344,0.13602299999707512,17580.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +987,2,55.0,4,0.0,7,120,2,11,48,6.0,0.0,0.0,1489.9442499939971,0.0,2535.4383429479385,47606.200000000004,42,44,1,11258,201700987,,,432.0,,3.0,0.0,6.0,1.0,3.0,2.0,1766.206862835414,0.0,1107.0,1433.0,0.0,44369.0,1,1,2,180.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4025.3825929419354,0.08455584761946837,0.09072511422258639,22184.5,6,3,6,6_1,6_0,6_0_0 +988,1,51.0,3,318.0,7,300,2,0,42,3.0,0.0,0.0,1516.8628452965083,0.0,1326.9914565324173,20583.53310830557,0,31,1,11259,201700988,,,,81.0,1.0,0.0,3.0,1.0,2.0,1.5,1185.9085158650178,0.0,1127.0,750.0,0.0,20403.0,0,1,3,60.0,0,0.0,2,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2843.8543018289256,0.13816162108153407,0.13938412497323557,13602.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +989,2,53.0,2,0.0,9,112,1,46,42,6.0,0.0,0.0,660.840638509426,0.0,1231.4623691698844,39041.280000000006,43,50,1,1126,201700989,,,750.0,508.0,2.0,0.0,3.0,1.0,3.0,1.8,2844.9564592486495,1187.0,0.0,0.0,0.0,42702.0,1,1,3,62.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1892.3030076793102,0.04846928706434087,0.044314154083633324,23723.333333333332,6,3,6,6_1,6_2,6_0_0 +990,2,75.0,1,0.0,4,111,1,0,77,5.0,0.0,0.0,409.16264859817085,0.0,152.16168701571718,19636.64,0,60,2,11260,201700990,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3810.7005511363686,0.0,304.0,86.0,0.0,18604.0,0,5,1,25.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,561.324335613888,0.028585559220614527,0.03017223906761385,18604.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +991,2,53.0,3,0.0,2,111,6,0,65,1.0,0.0,0.0,1655.4936111044412,0.0,0.0,10281.506296616575,0,71,2,11263,201700991,,,,654.0,2.0,2.0,2.0,2.0,3.0,2.0,4131.140087687407,0.0,1230.0,0.0,0.0,12190.0,0,4,3,45.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1655.4936111044412,0.16101664127261478,0.13580751526697632,6095.0,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +992,1,54.0,3,139.0,4,111,1,56,68,2.0,0.0,0.0,538.3719060502248,0.0,424.6372660903735,27778.639999999996,71,71,2,11265,201700992,,,,188.0,2.0,0.0,3.0,3.0,5.0,2.4,851.7356405363842,0.0,400.0,240.0,0.0,26338.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,963.0091721405983,0.034667254125493485,0.03656348895666331,10974.166666666668,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +993,2,59.0,2,0.0,6,400,4,62,75,9.0,237.96840137083234,0.0,605.6683943065029,0.0,0.0,30934.520000000004,71,50,1,11267,201700993,,,394.0,,2.0,1.0,5.0,1.0,3.0,2.0,2719.2277821760126,0.0,450.0,0.0,0.0,69758.0,1,5,1,130.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,843.6367956773353,0.02727169504092306,0.012093764094115876,34879.0,9,5,9,9_1,9_1,9_0_0 +994,1,35.0,4,399.0,99,111,1,85,46,3.0,0.0,0.0,511.45331074771354,0.0,1353.5312856630655,14829.980315994115,41,30,2,11268,201700994,,,,29.0,1.0,0.0,3.0,3.0,5.0,2.4,3105.5247606243165,0.0,380.0,765.0,0.0,36852.0,6,1,3,72.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1864.984596410779,0.12575772567947346,0.05060741876725222,15355.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +995,2,68.0,3,0.0,5,112,4,78,75,6.0,0.0,0.0,2993.3477976392496,212.31863304518674,0.0,34519.24,71,50,1,11269,201700995,,,932.0,,0.0,4.0,6.0,0.0,2.0,1.5,1636.2001649519107,0.0,2224.0,0.0,0.0,32057.0,5,5,1,100.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3205.6664306844364,0.09286607789407984,0.09999895282417058,21371.333333333332,6,3,6,6_1,6_0,6_0_0 +996,2,60.0,2,0.0,4,111,2,78,52,8.0,0.0,0.0,415.89229742379865,0.0,897.046224615914,23392.52784974977,60,60,2,1127,201700996,,,,,1.0,2.0,3.0,0.0,2.0,1.5,2878.1545475181206,0.0,309.0,507.0,0.0,44580.0,5,1,2,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1312.9385220397126,0.05612640628121586,0.02945129031044667,29720.0,8,4,8,8_0,8_4,8_0_1 +997,2,80.0,3,0.0,2,120,2,86,78,2.0,2866.72600851396,0.0,213.2282767894778,0.0,397.34632467739317,16429.181033505032,70,70,1,11270,201700997,,,,,0.0,4.0,6.0,0.0,2.0,1.5,2222.370832487878,383.0,0.0,0.0,0.0,17532.0,5,5,1,120.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3477.300609980831,0.21165392254728702,0.1983402127527282,11688.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +998,2,70.0,2,0.0,1,120,4,75,74,9.0,0.0,832.755791738064,2671.6705837742406,159.23897478389006,0.0,42748.44,41,50,1,11271,201700998,,,251.0,,0.0,2.0,6.0,0.0,2.0,1.5,1436.1637057747275,0.0,1985.0,0.0,0.0,55293.0,5,5,1,170.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3663.665350296195,0.08570290168006586,0.06625911689176198,36862.0,9,5,9,9_1,9_1,9_1_0 +999,1,38.0,4,408.0,8,111,1,0,85,1.0,0.0,0.0,592.2090966552472,176.9321942043223,0.0,8407.897016287752,0,71,2,11272,201700999,,,,47.0,0.0,0.0,4.0,2.0,3.0,2.0,1207.8755614169113,0.0,440.0,0.0,0.0,12684.0,0,6,3,89.0,4,4.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,769.1412908595695,0.0914784385881025,0.060638701581486085,6342.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1000,1,60.0,4,236.0,5,300,4,0,52,1.0,0.0,0.0,538.3719060502248,63.69558991355603,0.0,5069.4400000000005,0,71,2,11273,201701000,,,72.0,7.0,1.0,2.0,2.0,0.0,1.0,1.0,2720.1462667822902,0.0,400.0,0.0,0.0,8782.0,0,4,3,50.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,602.0674959637807,0.11876410332576787,0.06855699111407206,8782.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +1001,2,68.0,3,0.0,6,120,2,77,78,8.0,0.0,0.0,605.6683943065029,0.0,1680.8558449410618,26262.14,70,71,1,11274,201701001,,,320.0,,0.0,2.0,5.0,0.0,2.0,1.5,2240.61958968272,0.0,450.0,950.0,0.0,42522.0,6,7,1,92.0,0,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2286.5242392475648,0.08706541962108057,0.053772735037099964,28348.0,8,4,8,8_1,8_1,8_0_0 +1002,2,74.0,2,0.0,5,111,2,75,74,10.0,0.0,0.0,901.1833003489164,0.0,2550.663967364973,38901.11880425268,10,10,1,11275,201701002,,,,,0.0,4.0,6.0,0.0,2.0,1.5,1617.0190626913538,388.16725135109505,509.0,1214.0,0.0,93170.0,5,5,1,123.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3451.8472677138893,0.08873388153907112,0.037048913466930226,62113.333333333336,10,5,10,10_1,10_4,10_0_0 +1003,1,31.0,3,422.0,4,111,1,0,55,4.0,0.0,0.0,702.5753373955433,0.0,1486.2304313163072,42087.14,0,42,2,11276,201701003,999999.0,624.0,,73.0,1.0,6.0,5.0,2.0,3.0,2.0,906.3641285894652,0.0,522.0,840.0,0.0,32919.0,0,1,3,86.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2188.8057687118508,0.052006521914101336,0.06649065186402536,16459.5,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +1004,2,55.0,2,0.0,9,112,2,0,48,7.0,0.0,0.0,1406.6173093839989,53.079658261296686,895.6206565072879,44983.57909103703,0,50,1,11277,201701004,,,290.0,,1.0,2.0,4.0,1.0,2.0,1.3,2333.0820041329607,863.2839670048354,688.0,0.0,0.0,32098.0,0,1,2,90.0,9,0.0,2,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2355.3176241525834,0.05235949810454011,0.07337895271208747,24690.76923076923,7,4,7,7_1,7_0,7_0_0 +1005,2,67.0,4,0.0,9,112,2,78,71,2.0,0.0,0.0,2664.9409349486127,176.9321942043223,0.0,22552.559999999998,70,71,1,11278,201701005,,,98.0,,0.0,4.0,4.0,0.0,2.0,1.5,1596.940195032864,0.0,1980.0,0.0,0.0,20349.0,5,5,2,155.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2841.873129152935,0.12601111045277943,0.13965664795090346,13566.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1006,2,37.0,4,0.0,5,111,2,46,85,1.0,0.0,0.0,888.3136449828709,0.0,1769.3219420432229,25426.863854392803,20,30,1,11279,201701006,,,270.0,,1.0,0.0,6.0,1.0,3.0,1.8,2499.8772620845157,0.0,660.0,1000.0,0.0,12991.0,1,7,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2657.6355870260936,0.10452077779804349,0.20457513563436946,7217.222222222222,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +1007,2,66.0,3,0.0,5,111,4,77,77,6.0,0.0,0.0,3768.6033423515732,0.0,0.0,19363.559999999998,50,50,1,1128,201701007,,,300.0,,0.0,0.0,5.0,0.0,2.0,1.5,2103.1854373530105,0.0,2800.0,0.0,0.0,35640.0,5,5,1,100.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3768.6033423515732,0.19462347535017185,0.10574083452164908,23760.0,6,3,6,6_1,6_2,6_0_0 +1008,2,53.0,2,0.0,4,112,2,55,52,7.0,1120.0379424520509,0.0,545.1015548758526,0.0,0.0,22836.583983607205,42,50,1,11280,201701008,,,151.0,,2.0,1.0,3.0,0.0,2.0,1.5,2759.321115465689,0.0,405.0,0.0,0.0,37930.0,1,1,1,71.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1665.1394973279034,0.07291543685006441,0.04390032948399429,25286.666666666668,7,4,7,7_1,7_0,7_0_1 +1009,2,57.0,3,0.0,9,112,2,77,52,6.0,0.0,0.0,581.4416585342427,0.0,1769.3219420432229,21407.14,71,71,1,11281,201701009,,,560.0,437.0,1.0,2.0,3.0,0.0,2.0,1.5,2219.7069429967332,0.0,432.0,1000.0,0.0,32420.0,5,1,3,89.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2350.7636005774657,0.10981212813002884,0.07250967305914453,21613.333333333332,6,3,6,6_1,6_2,6_0_0 +1010,2,40.0,2,0.0,99,111,2,0,85,1.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,25721.519999999997,0,50,2,11284,201701010,,,264.0,600.0,0.0,0.0,4.0,3.0,4.0,2.3,1037.4014593037714,1300.0,0.0,0.0,0.0,20119.0,0,4,3,85.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2072.4464279554363,0.08057247114305206,0.10300941537628293,8747.391304347826,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +1011,2,67.0,2,0.0,5,111,2,75,74,10.0,0.0,0.0,1159.9444909445033,0.0,2552.5914918302674,43184.98433198744,33,12,1,11285,201701011,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1712.5014564940846,103.51126702695868,819.0,1382.0,0.0,69508.0,5,5,1,160.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3712.5359827747707,0.08596821418839481,0.053411635822851626,46338.666666666664,10,5,10,10_1,10_3,10_0_0 +1012,2,34.0,1,0.0,1,111,2,31,34,10.0,0.0,0.0,605.6683943065029,0.0,973.1270681237726,57659.26,30,10,8,11287,201701012,,,,,2.0,0.0,2.0,0.0,2.0,1.5,4540.037957236892,0.0,450.0,550.0,0.0,79456.0,1,1,2,36.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1578.7954624302756,0.027381472853281078,0.01987005968624491,52970.666666666664,10,5,10,10_0,10_4,10_1_0 +1013,2,69.0,1,0.0,4,111,2,74,74,10.0,0.0,0.0,2325.766634136971,0.0,0.0,54852.96,50,12,1,1129,201701013,,,368.0,,0.0,2.0,5.0,0.0,2.0,1.5,1710.875992316539,0.0,1728.0,0.0,0.0,72558.0,5,5,1,150.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2325.766634136971,0.04240002060302618,0.0320538966638685,48372.0,10,5,10,10_1,10_3,10_0_1 +1014,0,80.0,4,0.0,9,111,2,86,78,4.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,19575.58,71,71,1,11290,201701014,,,320.0,,0.0,4.0,4.0,0.0,2.0,1.5,2529.755056729056,1100.0,0.0,0.0,0.0,24513.0,5,5,5,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1753.6085159622926,0.08958143339621571,0.07153789890924377,16342.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1015,2,75.0,3,0.0,3,111,6,0,75,5.0,0.0,0.0,341.86616034189274,0.0,0.0,22404.64,0,71,1,11292,201701015,,,105.0,,0.0,0.0,4.0,0.0,1.0,1.0,3730.6869878815987,0.0,254.0,0.0,0.0,20354.0,0,5,1,55.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,341.86616034189274,0.01525872142296831,0.01679601848982474,20354.0,5,3,5,5_1,5_4,5_0_1 +1016,2,41.0,3,0.0,1,300,5,67,68,2.0,0.0,888.2728445206016,1772.5895006703652,191.08676974066807,0.0,22359.899999999998,50,50,1,11293,201701016,,,82.0,,2.0,1.0,4.0,2.0,4.0,2.3,3795.231865556561,0.0,1317.0,0.0,0.0,24980.0,1,1,3,90.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2851.9491149316345,0.12754748969949037,0.11416930003729522,10860.869565217392,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +1017,2,47.0,2,0.0,9,111,5,54,63,9.0,0.0,0.0,1370.156500897822,0.0,0.0,34350.86584675131,50,50,1,11294,201701017,,,453.0,,2.0,4.0,5.0,0.0,2.0,1.5,1927.8674896364423,0.0,1018.0,0.0,0.0,53289.0,1,1,1,117.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1370.156500897822,0.039887102322557696,0.025711807331678622,35526.0,9,5,9,9_1,9_3,9_0_0 +1018,2,58.0,2,0.0,6,111,2,0,65,5.0,0.0,0.0,1413.22625338184,0.0,0.0,37241.61087530163,0,70,2,11297,201701018,,,,303.0,1.0,0.0,1.0,0.0,1.0,1.0,2501.9886653736826,0.0,1050.0,0.0,0.0,19390.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1413.22625338184,0.03794750603334083,0.07288428331004848,19390.0,5,3,5,5_0,5_4,5_0_0 +1020,2,33.0,4,0.0,7,111,2,62,43,5.0,0.0,0.0,87.48543473316153,0.0,83.15813127603148,30486.34782352941,71,30,2,11299,201701020,,,45.0,541.0,2.0,0.0,4.0,3.0,5.0,2.4,851.477396820868,0.0,65.0,47.0,0.0,47960.0,1,1,3,83.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,170.64356600919302,0.00559737647149358,0.0035580393246287118,19983.333333333336,5,3,5,5_0,5_3,5_0_0 +1021,2,29.0,4,0.0,6,111,4,47,46,9.0,0.0,0.0,1345.929765125562,0.0,0.0,21521.239999999998,31,31,2,113,201701021,,,,600.0,2.0,0.0,3.0,0.0,2.0,1.5,4233.29975051451,0.0,1000.0,0.0,0.0,50815.0,1,1,3,65.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1345.929765125562,0.06253960111617927,0.026486859492778944,33876.666666666664,9,5,9,9_0,9_3,9_0_0 +1022,0,84.0,2,0.0,2,111,2,0,77,1.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,11154.66,0,70,1,1130,201701022,,,150.0,,0.0,0.0,4.0,0.0,1.0,1.0,3565.650114904408,1200.0,0.0,0.0,0.0,10197.0,0,5,5,100.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1913.0274719588647,0.17150029422311971,0.18760689143462436,10197.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +1023,1,79.0,3,127.0,3,111,2,86,78,3.0,0.0,0.0,726.8020731678034,0.0,1150.059262328095,16439.84,71,71,8,11301,201701023,,,,246.0,0.0,5.0,5.0,1.0,3.0,2.0,3434.1290135610834,0.0,540.0,650.0,0.0,27566.0,5,5,3,77.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1876.8613354958984,0.11416542591022165,0.06808609647739601,13783.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1024,1,43.0,4,190.0,8,111,2,52,56,4.0,0.0,0.0,1090.2031097517051,0.0,601.5694602946958,39868.04,50,71,1,11302,201701024,,,610.0,,4.0,0.0,5.0,3.0,5.0,2.8,1718.1019240727549,0.0,810.0,340.0,0.0,45117.0,1,1,3,86.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1691.772570046401,0.042434305023432324,0.03749745262420819,16113.214285714286,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +1025,1,47.0,4,176.0,1,112,2,0,46,3.0,1903.7472109666587,0.0,915.2322402853821,153.93100895776038,0.0,13292.740513464174,0,71,1,11303,201701025,,,250.0,,1.0,1.0,4.0,1.0,2.0,1.3,510.0713605913938,0.0,680.0,0.0,0.0,20868.0,0,1,3,80.0,6,1.0,2,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2972.910460209801,0.22364917581882754,0.14246264425003838,16052.307692307691,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +1026,0,86.0,3,0.0,2,111,2,0,86,3.0,0.0,0.0,255.72665537385677,0.0,1626.0068647377218,11589.88,0,71,1,11304,201701026,,,240.0,,0.0,3.0,4.0,0.0,1.0,1.0,1606.961640641562,0.0,190.0,919.0,0.0,13900.0,0,6,5,80.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1881.7335201115786,0.1623600520550324,0.13537651223824307,13900.0,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +1027,2,26.0,2,0.0,9,112,2,67,55,7.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,43457.11119129574,31,43,2,11306,201701027,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3715.9592927640633,800.0,0.0,0.0,0.0,36011.0,1,1,3,74.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1275.3516479725763,0.029347363711281927,0.03541561322852951,24007.333333333332,7,4,7,7_0,7_0,7_0_0 +1028,2,67.0,3,0.0,5,221,5,0,74,7.0,666.3115238383306,69.396315978172,1013.7122517852436,0.0,133.35316564416144,43342.238150122175,31,41,1,11307,201701028,,,500.0,,0.0,2.0,6.0,0.0,2.0,1.5,2920.4074653828725,128.53840408158098,700.0,0.0,0.0,39790.0,6,5,1,180.0,1,2.0,3,7,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1882.7732572459076,0.04343968695674292,0.04731774961663503,26526.666666666668,7,4,7,7_1,7_1,7_0_0 +1029,2,68.0,3,0.0,4,111,2,77,64,6.0,0.0,0.0,1603.3875643699635,0.0,2987.8783683313113,28472.159999999996,41,70,1,11309,201701029,,,607.0,,1.0,4.0,5.0,0.0,2.0,1.5,1582.1696417265966,2880.0,0.0,0.0,0.0,37660.0,5,1,3,140.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4591.265932701275,0.16125457052437453,0.12191359353959838,25106.666666666668,7,4,7,7_1,7_2,7_0_1 +1030,1,20.0,1,180.0,7,111,4,0,55,1.0,0.0,0.0,783.3311233030771,0.0,0.0,13131.24,0,41,2,11310,201701030,,,,153.0,1.0,0.0,1.0,0.0,1.0,1.0,3075.4997405319364,0.0,582.0,0.0,0.0,8583.0,0,3,3,22.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,783.3311233030771,0.059654010078490464,0.09126542273133835,8583.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1031,2,67.0,2,0.0,4,111,1,0,35,10.0,0.0,0.0,363.4010365839017,0.0,0.0,32687.219999999998,0,30,2,11311,201701031,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3053.038950458097,0.0,270.0,0.0,0.0,42369.0,0,1,1,21.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,363.4010365839017,0.01111752656187653,0.00857705012117118,42369.0,10,5,10,10_0,10_4,10_0_1 +1032,2,40.0,3,0.0,9,111,2,0,54,2.0,0.0,0.0,1765.8598518447372,0.0,0.0,53039.56,0,31,2,11313,201701032,,,,589.0,1.0,0.0,3.0,2.0,3.0,1.6,639.0647373320877,0.0,1312.0,0.0,0.0,21310.0,0,1,3,63.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1765.8598518447372,0.033293259820495066,0.08286531449294872,13318.75,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +1033,2,52.0,5,0.0,4,111,2,0,67,5.0,0.0,0.0,942.1508355878933,0.0,106.15931652259337,11798.790875301627,0,71,2,11314,201701033,,,,258.0,1.0,2.0,3.0,0.0,1.0,1.0,3738.690159234786,0.0,700.0,60.0,0.0,19320.0,0,1,3,44.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1048.3101521104868,0.08884894759046126,0.054260359840087306,19320.0,5,3,5,5_0,5_2,5_0_1 +1034,2,43.0,3,0.0,9,112,2,55,46,8.0,0.0,0.0,2207.3248148059215,0.0,0.0,22201.780000000002,31,31,1,11315,201701034,,,269.0,,2.0,2.0,4.0,0.0,2.0,1.5,844.3228638518725,0.0,1640.0,0.0,0.0,44130.0,1,1,2,100.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2207.3248148059215,0.0994210741123424,0.05001869056890826,29420.0,8,4,8,8_1,8_0,8_0_0 +1035,2,26.0,2,0.0,5,112,2,55,64,8.0,0.0,0.0,1884.3016711757866,0.0,0.0,23020.53840905729,50,50,2,11316,201701035,,,,630.0,2.0,0.0,3.0,0.0,2.0,1.5,2537.314177909273,0.0,1400.0,0.0,0.0,43400.0,1,1,3,78.0,9,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1884.3016711757866,0.08185306693063354,0.04341708919759877,28933.333333333332,8,4,8,8_0,8_1,8_0_0 +1036,2,60.0,2,0.0,9,111,4,74,72,10.0,0.0,0.0,2368.836386620989,44.23304855108057,0.0,113503.14,60,71,1,11317,201701036,,,,,0.0,1.0,6.0,0.0,2.0,1.5,7317.884804514402,0.0,1760.0,0.0,0.0,64024.0,5,5,1,170.0,8,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2413.0694351720695,0.021259935497573632,0.03769007614600883,42682.666666666664,10,5,10,10_1,10_2,10_0_0 +1037,2,77.0,4,0.0,5,300,4,72,78,1.0,0.0,0.0,347.40063894682544,0.0,647.3736464717841,18744.917678039437,70,71,1,11318,201701037,,,124.0,,0.0,2.0,4.0,0.0,2.0,1.5,2547.10858385354,624.0,0.0,0.0,0.0,14850.0,5,5,3,70.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,994.7742854186096,0.05306901329228215,0.06698816736825654,9900.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +1038,2,80.0,3,0.0,4,112,2,0,77,4.0,1110.5192063972174,346.98157989085996,753.7206684703146,53.079658261296686,0.0,29152.800000000003,0,70,1,11319,201701038,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2867.5074893886313,0.0,560.0,0.0,0.0,16573.0,0,5,5,100.0,6,2.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2264.3011130196887,0.07767010760611977,0.13662590436370534,16573.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +1039,2,38.0,2,0.0,7,111,2,46,37,8.0,0.0,0.0,2037.6383630534954,0.0,3797.0954264210413,50852.76616274542,31,30,1,1132,201701039,,,590.0,,2.0,0.0,6.0,2.0,4.0,2.1,1864.326710120449,3660.0,0.0,0.0,0.0,65526.0,1,1,2,140.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5834.733789474537,0.11473778576373776,0.08904455925090098,31202.85714285714,8,4,8,8_1,8_3,8_0_0 +1040,2,89.0,2,0.0,6,112,6,0,78,8.0,0.0,0.0,1278.633276869284,0.0,0.0,26075.711191295744,70,70,1,11320,201701040,,,290.0,,0.0,4.0,5.0,0.0,2.0,1.5,2209.1971568046274,0.0,950.0,0.0,0.0,42253.0,8,5,1,120.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1278.633276869284,0.04903541335801037,0.030261360776022622,28168.666666666668,8,4,8,8_1,8_1,8_0_0 +1041,2,46.0,2,0.0,7,112,4,55,46,5.0,0.0,0.0,2059.2725406421096,0.0,0.0,29741.799999999996,31,50,1,11321,201701041,,,600.0,,2.0,4.0,5.0,2.0,4.0,2.3,659.8139382920443,0.0,1530.0,0.0,0.0,46302.0,1,1,2,138.0,6,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2059.2725406421096,0.06923832924174428,0.044474807581575515,20131.304347826088,5,3,5,5_1,5_1,5_0_0 +1042,1,27.0,3,272.0,6,111,1,0,55,5.0,0.0,0.0,592.2090966552472,63.69558991355603,0.0,25616.94,0,43,2,11322,201701042,,,,95.0,1.0,0.0,1.0,0.0,1.0,1.0,3940.1945782019625,0.0,440.0,0.0,0.0,20484.0,0,1,3,30.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,655.9046865688032,0.025604333951237082,0.032020342050810544,20484.0,5,3,5,5_0,5_2,5_0_0 +1043,2,51.0,2,0.0,2,111,1,0,55,3.0,0.0,0.0,646.0462872602698,0.0,1949.7927801316316,23644.44,0,20,2,11323,201701043,984.0,984.0,,,1.0,0.0,3.0,1.0,2.0,1.5,1840.8969919359956,0.0,480.0,1102.0,0.0,22029.0,0,1,1,60.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2595.839067391901,0.1097864473589521,0.11783735382413642,14686.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +1044,1,29.0,2,302.0,6,111,2,0,46,5.0,0.0,0.0,403.7789295376686,0.0,1910.8676974066807,28187.02,0,60,2,11324,201701044,,,300.0,77.0,1.0,0.0,3.0,1.0,2.0,1.3,1905.1247347629455,0.0,300.0,1080.0,0.0,24824.0,0,1,3,67.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2314.6466269443495,0.0821174649517526,0.09324229080504147,19095.384615384613,5,3,5,5_0,5_3,5_0_0 +1045,2,54.0,2,0.0,1,300,5,52,46,8.0,0.0,527.4120014341072,834.4764543778484,0.0,902.3541904420437,26584.519999999993,60,44,1,11325,201701045,,,410.0,,2.0,3.0,6.0,0.0,2.0,1.5,1504.767010844218,0.0,620.0,510.0,0.0,44448.0,1,1,1,110.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2264.2426462539993,0.08517146994769888,0.050941384229976586,29632.0,8,4,8,8_1,8_0,8_1_0 +1046,2,79.0,3,0.0,9,300,2,0,75,8.0,555.2596031986087,1040.94473967258,1130.581002705472,247.7050718860512,0.0,19827.646162745412,0,50,1,11326,201701046,,,200.0,,0.0,3.0,3.0,0.0,1.0,1.0,2886.3124601648515,0.0,840.0,0.0,0.0,29422.0,0,5,1,100.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2974.490417462712,0.15001732394496456,0.10109749226642349,29422.0,8,4,8,8_1,8_0,8_0_0 +1047,2,64.0,2,0.0,5,111,2,72,74,9.0,0.0,0.0,1274.4366523817748,0.0,1838.5155272573097,26777.199473277098,44,31,1,11328,201701047,,,334.0,,0.0,3.0,6.0,0.0,2.0,1.5,1348.2448010505882,973.9893909278508,544.0,468.0,0.0,48760.0,5,5,1,100.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3112.9521796390845,0.11625383687886123,0.06384233346265555,32506.666666666668,9,5,9,9_1,9_2,9_0_0 +1048,2,73.0,3,0.0,1,111,2,0,78,4.0,0.0,0.0,43.06975248401798,0.0,288.39947655304536,9316.61787408202,0,70,1,11329,201701048,,,12.0,200.0,0.0,0.0,3.0,0.0,1.0,1.0,2106.552366978226,0.0,32.0,163.0,0.0,16104.0,0,5,3,80.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,331.4692290370633,0.035578278890151804,0.02058303707383652,16104.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +1049,2,56.0,4,0.0,8,120,4,43,47,8.0,0.0,0.0,502.1892480400551,0.0,602.2401029091162,61977.959866997175,33,44,1,11330,201701049,,,685.0,,2.0,0.0,5.0,2.0,4.0,2.5,2020.4572286140012,580.4960184329464,133.0,0.0,0.0,81474.0,1,1,1,140.0,0,0.0,4,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1104.4293509491713,0.01781971128638702,0.013555604867186726,32589.6,9,5,9,9_1,9_0,9_0_0 +1050,2,72.0,3,0.0,1,111,6,78,78,5.0,1586.456009138882,0.0,807.5578590753372,700.6514890491163,0.0,18035.0,71,71,1,11331,201701050,,,324.0,,0.0,2.0,5.0,1.0,3.0,2.0,2991.5140215814317,0.0,600.0,0.0,0.0,39760.0,5,5,1,100.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3094.6653572633354,0.17159220167803357,0.07783363574605974,19880.0,5,3,5,5_1,5_3,5_1_0 +1051,2,63.0,1,0.0,99,112,2,56,74,10.0,1705.4402098242983,0.0,763.1421768261936,53.079658261296686,0.0,30197.157171918203,50,42,1,11332,201701051,,,253.0,,1.0,3.0,8.0,0.0,2.0,1.5,2050.5707215682246,0.0,567.0,0.0,0.0,57521.0,1,5,1,140.0,9,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2521.6620449117886,0.08350660396789947,0.04383898132702471,38347.333333333336,9,5,9,9_1,9_0,9_0_0 +1052,1,20.0,1,369.0,2,111,1,0,56,2.0,0.0,0.0,403.7789295376686,0.0,0.0,15617.531191295748,0,42,2,11333,201701052,,,,,1.0,0.0,2.0,1.0,2.0,1.3,1243.7147732215424,0.0,300.0,0.0,0.0,15314.0,0,1,3,49.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,403.7789295376686,0.025854209899879063,0.026366653358865653,11780.0,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +1053,2,48.0,3,0.0,7,111,2,0,56,1.0,0.0,0.0,1211.3367886130059,0.0,0.0,44127.759999999995,0,50,2,11334,201701053,,,250.0,,1.0,0.0,4.0,1.0,2.0,1.3,1129.1554537925579,0.0,900.0,0.0,0.0,12448.0,0,1,1,90.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1211.3367886130059,0.02745067478188347,0.09731176001068492,9575.384615384615,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +1054,2,46.0,3,0.0,1,111,2,0,46,8.0,0.0,0.0,1113.4635863680303,0.0,2074.915533563411,32358.197874082016,0,42,1,11335,201701054,,,400.0,,1.0,0.0,5.0,1.0,2.0,1.5,1756.9724051071355,2000.0,0.0,0.0,0.0,42590.0,0,1,2,120.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3188.379119931441,0.0985338903093006,0.0748621535555633,28393.333333333332,8,4,8,8_1,8_4,8_1_0 +1055,2,73.0,2,0.0,5,111,1,48,72,2.0,0.0,0.0,830.7996325291545,0.0,645.2572531169102,36835.0573722746,41,20,2,11336,201701055,,,,,1.0,0.0,3.0,0.0,2.0,1.5,3148.2884096785538,621.9600197495854,360.0,0.0,0.0,20161.0,4,5,1,78.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1476.0568856460645,0.04007206696404059,0.07321347580209635,13440.666666666666,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +1056,2,69.0,3,0.0,5,112,2,75,78,8.0,0.0,624.566843803548,1405.2617715875572,0.0,536.9428396326666,62513.86684744478,41,50,1,11337,201701056,,,220.0,,0.0,2.0,6.0,0.0,2.0,1.5,1211.1656569228085,517.5563351347934,830.0,0.0,0.0,47323.0,5,5,1,140.0,9,3.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2566.7714550237715,0.04105923348634907,0.05423940694849801,31548.666666666668,8,4,8,8_1,8_1,8_0_0 +1057,2,62.0,3,0.0,3,111,2,0,75,3.0,0.0,0.0,484.5347154452023,0.0,1604.7750014332032,12947.430875301628,0,50,1,11338,201701057,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2306.794196314166,0.0,360.0,907.0,0.0,14500.0,0,5,3,50.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2089.3097168784057,0.1613686712831925,0.144090325301959,14500.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +1058,2,75.0,3,0.0,6,111,2,0,77,5.0,0.0,0.0,406.41420902433106,0.0,757.3441697506449,11749.72,0,50,2,1134,201701058,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4493.925442916485,730.0,0.0,0.0,0.0,19534.0,0,5,3,55.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1163.7583787749759,0.09904562651492767,0.05957604068675007,19534.0,5,3,5,5_0,5_2,5_0_0 +1059,2,34.0,3,0.0,6,111,1,56,68,5.0,0.0,0.0,678.3486016232832,109.69796040667983,0.0,25451.019999999997,50,50,2,11340,201701059,,,,312.0,2.0,0.0,3.0,0.0,2.0,1.5,2369.8512854604937,0.0,504.0,0.0,0.0,28024.0,1,1,3,73.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,788.0465620299631,0.0309632604913266,0.028120416858048926,18682.666666666668,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +1060,2,37.0,1,0.0,9,112,2,0,64,7.0,0.0,416.377895869032,1319.0111698230507,0.0,0.0,18327.318002984743,0,50,1,11342,201701060,,,289.0,,1.0,0.0,6.0,0.0,1.0,1.0,2962.858601705305,0.0,980.0,0.0,0.0,25476.0,0,1,2,200.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1735.3890656920828,0.09468865359402077,0.06811858477359407,25476.0,7,4,7,7_1,7_0,7_0_0 +1061,2,72.0,3,0.0,4,112,1,0,74,9.0,0.0,0.0,807.5578590753372,0.0,0.0,16734.739999999998,0,41,2,11343,201701061,,,,,0.0,0.0,4.0,0.0,1.0,1.0,1424.3661843414507,0.0,600.0,0.0,0.0,35940.0,0,5,1,110.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,807.5578590753372,0.048256373213765934,0.022469612105602037,35940.0,9,5,9,9_0,9_1,9_0_1 +1062,2,76.0,2,0.0,9,300,2,77,74,10.0,0.0,0.0,5410.637655804759,0.0,0.0,80067.04000000001,70,12,1,11344,201701062,,,2500.0,,0.0,3.0,4.0,0.0,2.0,1.5,2406.4628289439056,0.0,4020.0,0.0,0.0,99924.0,5,5,1,158.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5410.637655804759,0.06757634172319543,0.05414752867984427,66616.0,10,5,10,10_1,10_1,10_0_0 +1063,2,76.0,1,0.0,6,111,2,75,75,10.0,0.0,0.0,567.9823608829871,0.0,2043.5668430599223,41761.871191295744,31,20,1,11345,201701063,,,434.0,,0.0,4.0,8.0,0.0,2.0,1.5,1953.2837447221448,0.0,422.0,1155.0,0.0,63269.0,5,5,1,120.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2611.5492039429096,0.06253429574504372,0.04127691608754539,42179.333333333336,10,5,10,10_1,10_3,10_0_0 +1064,2,26.0,2,0.0,8,120,6,56,62,10.0,0.0,0.0,753.7206684703146,0.0,0.0,50612.04520041721,44,31,1,11346,201701064,,,,,2.0,0.0,5.0,1.0,3.0,1.8,3813.6196130616304,0.0,560.0,0.0,0.0,69897.0,1,1,3,115.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,753.7206684703146,0.014892120353676232,0.010783304984052458,38831.666666666664,9,5,9,9_1,9_0,9_0_0 +1065,2,96.0,2,0.0,1,112,6,0,72,7.0,0.0,0.0,2215.400393396675,159.23897478389006,0.0,22213.5153403166,0,71,1,11347,201701065,,,478.0,,0.0,3.0,3.0,0.0,2.0,1.5,1943.4678522148938,0.0,1646.0,0.0,0.0,36615.0,0,5,5,60.0,7,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2374.6393681805653,0.10690065628066955,0.06485427743221536,24410.0,7,4,7,7_1,7_0,7_1_0 +1066,2,50.0,2,0.0,7,111,2,43,38,9.0,0.0,111.0341055650752,1292.0925745205395,0.0,1910.8676974066807,71917.18000000001,33,20,1,11348,201701066,,,512.0,,2.0,0.0,7.0,3.0,5.0,3.0,1814.6293358409914,0.0,960.0,1080.0,0.0,92097.0,1,1,1,170.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3313.9943774922954,0.04608070529868239,0.03598373863961145,30699.0,8,4,8,8_1,8_3,8_0_0 +1067,1,45.0,3,408.0,99,111,1,0,85,2.0,0.0,0.0,174.25705126659673,0.0,324.7242810026738,6658.8,0,50,2,11349,201701067,,,,,0.0,4.0,4.0,2.0,3.0,1.6,1159.3932640863402,313.0,0.0,0.0,0.0,17976.0,0,4,3,92.0,7,5.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,498.9813322692705,0.07493562387656492,0.027758196054142776,11235.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1068,2,53.0,2,0.0,8,120,5,21,53,10.0,0.0,208.188947934516,1076.7438121004495,0.0,0.0,28005.72,44,50,1,1135,201701068,,,272.0,,2.0,1.0,4.0,0.0,2.0,1.5,1992.368377201768,0.0,800.0,0.0,0.0,52610.0,1,1,1,110.0,0,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1284.9327600349654,0.045881082865749045,0.024423736172495065,35073.333333333336,9,5,9,9_1,9_1,9_0_0 +1069,0,35.0,3,0.0,7,112,2,0,34,4.0,0.0,0.0,0.0,0.0,0.0,12882.0,0,20,1,11355,201701069,,,,,1.0,0.0,6.0,0.0,1.0,1.0,1861.169852849454,0.0,0.0,0.0,0.0,18316.0,0,1,5,64.0,10,4.0,1,1,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,18316.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1070,2,52.0,1,0.0,1,111,2,46,31,9.0,0.0,0.0,5278.34515495155,0.0,997.4989525197012,156339.7520084334,31,30,8,11356,201701070,,,,,2.0,0.0,7.0,4.0,6.0,3.5,2709.7750177685966,961.4839123659364,3524.0,0.0,0.0,203360.0,1,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,6275.844107471252,0.04014234400942836,0.030860759773167053,58102.857142857145,10,5,10,10_0,10_4,10_1_0 +1071,2,71.0,3,0.0,8,300,6,0,77,4.0,0.0,0.0,1523.592494122136,284.50696828055027,0.0,24976.7316935026,0,50,1,11357,201701071,,,,,0.0,1.0,5.0,0.0,2.0,1.5,3339.4380338060114,0.0,1132.0,0.0,0.0,27428.0,0,5,1,110.0,0,0.0,5,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1808.0994624026862,0.07239135546597723,0.06592166626814519,18285.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1072,1,69.0,3,150.0,1,120,2,0,78,2.0,0.0,0.0,259.76444466923346,0.0,1804.7083808840873,8477.6,0,71,2,11359,201701072,,,215.0,,0.0,0.0,2.0,0.0,1.0,1.0,3279.64752251218,0.0,193.0,1020.0,0.0,11240.0,0,5,3,42.0,0,3.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,2064.472825553321,0.24352090515633207,0.1836719595688008,11240.0,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +1073,2,55.0,3,0.0,7,111,2,0,52,7.0,0.0,0.0,484.5347154452023,0.0,831.5813127603147,14869.480000000001,0,71,2,1136,201701073,,,250.0,530.0,1.0,1.0,3.0,0.0,1.0,1.0,2581.154971724889,0.0,360.0,470.0,0.0,26780.0,0,1,3,67.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1316.116028205517,0.08851123430042725,0.04914548275599392,26780.0,7,4,7,7_0,7_4,7_0_0 +1074,2,73.0,3,0.0,1,111,2,0,56,5.0,0.0,0.0,663.067565682162,0.0,1235.6122002370112,15418.92,0,50,1,11360,201701074,,,,,1.0,4.0,3.0,0.0,1.0,1.0,823.7767071866787,1191.0,0.0,0.0,0.0,20603.0,0,1,2,80.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1898.6797659191732,0.12313960808663468,0.09215549997180864,20603.0,5,3,5,5_1,5_2,5_1_0 +1075,2,58.0,1,0.0,6,111,2,38,37,10.0,0.0,0.0,5247.761694850373,0.0,9779.091467733986,64588.80792486205,20,20,1,11361,201701075,,,,,2.0,2.0,8.0,0.0,2.0,1.5,1938.4348575424158,9426.014032426281,0.0,0.0,0.0,149762.0,1,1,1,300.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,15026.853162584359,0.23265413382556177,0.10033822439994364,99841.33333333333,10,5,10,10_1,10_4,10_0_0 +1076,2,78.0,2,0.0,7,112,2,72,75,6.0,2181.377012565963,277.585263912688,807.5578590753372,0.0,0.0,32526.520513464176,70,50,1,11363,201701076,,,321.0,,0.0,3.0,11.0,0.0,2.0,1.5,2246.8835066441957,0.0,600.0,0.0,0.0,33902.0,5,5,1,160.0,6,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3266.520135553988,0.10042636236488406,0.096351841648103,22601.333333333332,6,3,6,6_1,6_0,6_0_0 +1077,2,34.0,2,0.0,9,111,1,63,38,7.0,0.0,0.0,888.3136449828709,0.0,0.0,49215.9,30,12,1,11366,201701077,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2630.5015977118965,0.0,660.0,0.0,0.0,42200.0,1,1,2,79.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,888.3136449828709,0.018049322373112568,0.02105008637400168,28133.333333333332,8,4,8,8_1,8_3,8_0_0 +1078,1,20.0,3,177.0,99,111,2,0,84,1.0,0.0,0.0,290.72082926712136,0.0,0.0,8855.640000000001,0,31,2,11367,201701078,,,,188.0,0.0,0.0,1.0,0.0,1.0,1.0,3649.059860711837,0.0,216.0,0.0,0.0,2737.0,0,3,3,18.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,290.72082926712136,0.03282888975467852,0.10621879037892633,2737.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1079,2,70.0,2,0.0,9,112,2,0,74,4.0,0.0,0.0,874.8543473316153,0.0,642.2638649616899,16510.92,0,60,2,11369,201701079,,,176.0,302.0,0.0,1.0,2.0,0.0,1.0,1.0,1761.9548796846639,0.0,650.0,363.0,0.0,17303.0,0,5,3,55.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1517.118212293305,0.09188574666301486,0.08767948981640786,17303.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +1080,2,58.0,1,0.0,7,221,2,37,38,10.0,0.0,0.0,967.7235011252791,0.0,3267.937626953833,48361.700315994116,31,12,1,11371,201701080,,,261.0,,2.0,0.0,7.0,0.0,2.0,1.5,2525.2260082192747,0.0,719.0,1847.0,0.0,124919.0,1,1,1,240.0,1,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4235.661128079112,0.0875829654541385,0.033907260929715355,83279.33333333333,10,5,10,10_1,10_1,10_0_0 +1081,2,84.0,3,0.0,9,400,4,78,78,4.0,0.0,0.0,1584.1593335527864,233.5504963497054,0.0,61560.86121562799,71,71,1,11372,201701081,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2023.6286342864755,0.0,1177.0,0.0,0.0,24538.0,5,5,1,95.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1817.7098299024917,0.029527037049329703,0.07407734248522665,16358.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1082,2,69.0,2,0.0,8,120,2,0,77,5.0,0.0,416.377895869032,1329.7786079440552,0.0,0.0,40795.82000000001,0,60,1,11373,201701082,,,480.0,,0.0,3.0,7.0,0.0,1.0,1.0,1431.4947811928778,0.0,988.0,0.0,0.0,21625.0,0,5,1,130.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1746.1565038130873,0.042802338666390015,0.08074712156361097,21625.0,6,3,6,6_1,6_1,6_0_0 +1083,1,29.0,4,408.0,99,112,4,0,56,2.0,0.0,0.0,565.290501352736,53.079658261296686,0.0,15368.52,0,31,2,11374,201701083,,,100.0,,1.0,0.0,1.0,2.0,3.0,1.6,2567.8349974567236,0.0,420.0,0.0,0.0,20465.0,0,1,3,28.0,9,3.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,618.3701596140327,0.040236155440734216,0.030215986299244206,12790.625,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +1084,1,23.0,3,260.0,4,111,1,0,84,1.0,0.0,0.0,710.6509159862967,0.0,0.0,12145.680315994116,0,30,2,11375,201701084,,,,340.0,0.0,0.0,1.0,0.0,1.0,1.0,5896.386364479472,0.0,528.0,0.0,0.0,3610.0,0,3,3,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,710.6509159862967,0.058510589567426004,0.19685620941448662,3610.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +1085,2,46.0,2,0.0,8,112,2,38,37,9.0,0.0,0.0,1339.200116299934,0.0,3016.693911183695,78981.01999999999,30,31,1,11377,201701085,,,,,2.0,0.0,6.0,3.0,5.0,2.6,1528.6813311926787,0.0,995.0,1705.0,0.0,101045.0,1,1,1,210.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4355.8940274836295,0.055151149320224406,0.0431084569002289,38863.46153846154,9,5,9,9_1,9_2,9_0_0 +1086,2,62.0,3,0.0,7,111,4,86,75,8.0,0.0,416.377895869032,1138.6565812962253,0.0,0.0,22654.5316935026,71,50,1,11378,201701086,,,400.0,,0.0,2.0,4.0,0.0,2.0,1.5,1940.0200019303825,0.0,846.0,0.0,0.0,42931.0,6,5,1,80.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1555.0344771652574,0.0686412104299312,0.036221715710448334,28620.666666666668,8,4,8,8_1,8_2,8_0_0 +1087,2,77.0,3,0.0,4,111,5,86,86,4.0,0.0,0.0,646.0462872602698,240.62778411787832,0.0,16701.48,71,70,1,11379,201701087,,,300.0,,0.0,4.0,4.0,0.0,2.0,1.5,1629.8692125841942,0.0,480.0,0.0,0.0,25030.0,5,5,1,95.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,886.674071378148,0.05308955082891744,0.03542445351091283,16686.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +1088,2,81.0,3,0.0,1,111,2,0,,4.0,0.0,0.0,504.72366192208574,0.0,2712.3705371522606,25164.999999999996,0,70,1,1138,201701088,,,100.0,,0.0,2.0,5.0,0.0,1.0,1.0,830.3619798704246,0.0,375.0,1533.0,0.0,17220.0,0,8,5,80.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3217.0941990743463,0.1278400238058552,0.1868231242203453,17220.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +1089,2,74.0,2,0.0,1,400,5,77,77,4.0,0.0,119.36166348245584,1795.4703066774996,159.23897478389006,0.0,29973.980000000003,31,50,1,11384,201701089,,,255.0,,0.0,1.0,4.0,0.0,2.0,1.5,1770.0252671181556,0.0,1334.0,0.0,0.0,26602.0,5,5,1,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2074.0709449438455,0.06919571391399625,0.0779667297550502,17734.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1090,2,43.0,3,0.0,9,112,1,85,21,6.0,0.0,0.0,28.39332145238477,0.0,1524.9862018858285,40697.621750603255,60,50,1,11386,201701090,832.0,832.0,,732.0,1.0,0.0,5.0,4.0,6.0,2.7,2593.2403915286227,51.0,0.0,832.0,0.0,54370.0,6,1,3,117.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1553.3795233382132,0.03816880339734318,0.028570526454629635,20137.037037037036,5,3,5,5_1,5_2,5_0_0 +1091,2,56.0,2,0.0,6,112,2,0,43,4.0,1826.0108665188534,0.0,637.9707086695164,0.0,0.0,26971.959999999995,0,33,1,11387,201701091,,,113.0,,1.0,2.0,7.0,1.0,2.0,1.5,703.251860626367,0.0,474.0,0.0,0.0,27239.0,0,1,1,150.0,9,0.0,2,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2463.98157518837,0.09135344910745716,0.09045785730711002,18159.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1092,2,65.0,3,0.0,1,300,6,72,71,3.0,2379.684013708323,0.0,765.8340363564447,150.39236507367394,0.0,22517.8243697769,50,70,1,11389,201701092,,,242.0,,0.0,1.0,4.0,0.0,2.0,1.5,1970.6137237512532,0.0,569.0,0.0,0.0,21360.0,5,5,1,60.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3295.9104151384417,0.146368954700711,0.15430292205704316,14240.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1093,2,33.0,1,0.0,9,112,6,38,37,10.0,0.0,749.4802125642576,51.145331074771356,0.0,0.0,60565.87999999999,10,10,1,11390,201701093,,,300.0,790.0,2.0,0.0,5.0,1.0,3.0,1.8,2657.396144301733,0.0,38.0,0.0,0.0,85600.0,1,1,3,150.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,800.6255436390289,0.013219085459321801,0.009353102145315758,47555.555555555555,10,5,10,10_1,10_0,10_0_0 +1094,1,27.0,2,283.0,9,111,6,0,52,5.0,111.05192063972176,0.0,1184.4181933104944,0.0,0.0,32055.16,0,43,2,11391,201701094,,,,301.0,1.0,0.0,2.0,1.0,2.0,1.3,1661.1514495425822,0.0,880.0,0.0,0.0,26566.0,0,1,3,42.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1295.4701139502163,0.04041377781144179,0.04876421418166891,20435.384615384613,5,3,5,5_0,5_3,5_0_0 +1095,2,71.0,3,0.0,99,111,1,56,78,7.0,0.0,0.0,790.0607721287049,0.0,205.24134527701386,21079.287597354556,71,71,2,11392,201701095,,,641.0,357.0,2.0,2.0,4.0,1.0,3.0,2.0,2480.5132854504873,0.0,587.0,116.0,0.0,50518.0,1,5,3,52.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,995.3021174057187,0.04721706617497969,0.01970193034969157,25259.0,7,4,7,7_0,7_2,7_0_0 +1096,2,46.0,1,0.0,7,212,5,43,37,8.0,0.0,138.792631956344,1076.7438121004495,2268.2707296994117,0.0,75606.17,44,20,1,11393,201701096,,,300.0,,2.0,0.0,8.0,2.0,4.0,2.1,1983.9778528663496,0.0,800.0,0.0,0.0,62049.0,1,1,1,180.0,2,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3483.807173756205,0.04607834484614424,0.05614606478357757,29547.142857142855,8,4,8,8_1,8_0,8_0_0 +1097,2,37.0,2,0.0,1,111,2,0,47,8.0,0.0,0.0,1598.9645609691677,0.0,0.0,35111.740000000005,0,12,1,11394,201701097,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2715.8285902981456,0.0,1188.0,0.0,0.0,28359.0,0,1,2,88.0,4,4.0,1,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1598.9645609691677,0.04553931422849359,0.05638296699351767,28359.0,8,4,8,8_1,8_2,8_1_0 +1098,2,24.0,3,0.0,8,111,4,43,46,7.0,0.0,0.0,528.9503976943458,0.0,0.0,39490.99,30,30,2,11395,201701098,,,,475.0,2.0,0.0,2.0,0.0,2.0,1.5,5301.31555856331,0.0,393.0,0.0,0.0,36504.0,1,1,3,49.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,528.9503976943458,0.01339420454372873,0.01449020375011905,24336.0,7,4,7,7_0,7_3,7_0_0 +1099,2,72.0,1,0.0,9,300,4,75,75,8.0,0.0,0.0,2729.578210348508,54.84898020333991,860.3430041558803,30395.97774272367,50,50,1,11397,201701099,,,400.0,,0.0,2.0,6.0,0.0,2.0,1.5,1783.173333488469,829.2800263327805,1685.0,0.0,0.0,41692.0,5,5,1,120.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3644.7701947077285,0.11990962177817197,0.08742133250282377,27794.666666666668,8,4,8,8_1,8_0,8_0_0 +1100,2,82.0,3,0.0,1,120,2,71,71,2.0,1031.1964059402735,0.0,874.8543473316153,109.69796040667983,0.0,23715.3,50,50,1,11398,201701100,,,120.0,,0.0,2.0,5.0,0.0,2.0,1.5,1689.1856585823148,0.0,650.0,0.0,0.0,18300.0,5,5,1,185.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2015.7487136785687,0.08499781633285552,0.11015020293325511,12200.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1101,2,87.0,3,0.0,5,400,4,0,86,2.0,0.0,0.0,1130.581002705472,58.38762408742635,0.0,12789.16,0,71,1,11399,201701101,,,324.0,,0.0,3.0,5.0,0.0,1.0,1.0,1580.1036934185433,0.0,840.0,0.0,0.0,10978.0,0,5,5,88.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1188.9686267928982,0.09296690531613477,0.10830466631380017,10978.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +1102,2,61.0,4,0.0,1,112,5,52,77,5.0,0.0,485.77421184720396,1308.2437317020463,398.09743695972514,0.0,32774.46000000001,31,60,1,114,201701102,,,260.0,,1.0,4.0,5.0,0.0,2.0,1.5,3699.4169545860764,0.0,972.0,0.0,0.0,31730.0,1,5,2,90.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2192.1153805089752,0.06688486646336736,0.06908652318023874,21153.333333333332,5,3,5,5_1,5_0,5_1_0 +1103,2,53.0,2,0.0,8,111,4,0,47,10.0,0.0,0.0,12274.879457945124,0.0,0.0,44435.700000000004,0,31,2,1140,201701103,,,,900.0,1.0,0.0,3.0,0.0,1.0,1.0,2647.264835662464,0.0,9120.0,0.0,0.0,55486.0,0,1,3,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,12274.879457945124,0.27623913785413806,0.22122480369724118,55486.0,10,5,10,10_0,10_4,10_0_0 +1104,1,39.0,3,44.0,4,111,2,68,63,4.0,0.0,0.0,780.639263772826,0.0,1779.9378736954823,31834.95672205293,60,50,2,11401,201701104,,,619.0,276.0,2.0,0.0,4.0,2.0,4.0,2.3,3512.4595873315297,0.0,580.0,1006.0,0.0,38036.0,1,1,3,78.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2560.577137468308,0.08043287634484288,0.06731983219761037,16537.391304347828,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +1105,2,38.0,3,0.0,9,112,5,54,47,3.0,0.0,69.396315978172,1292.0925745205395,176.9321942043223,0.0,48393.27999999999,42,43,1,11402,201701105,,,520.0,,2.0,0.0,7.0,3.0,5.0,2.4,1755.950895619572,0.0,960.0,0.0,0.0,37652.0,1,1,2,124.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1538.4210847030338,0.03178997341579314,0.040858947325587855,15688.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1106,2,50.0,3,0.0,8,221,2,0,63,4.0,0.0,0.0,306.87198644862815,0.0,891.7382587897844,19637.28,0,50,2,11403,201701106,,,,450.0,1.0,0.0,2.0,0.0,1.0,1.0,3199.0025784489753,0.0,228.0,504.0,0.0,17569.0,0,4,3,50.0,1,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1198.6102452384125,0.06103748814695378,0.0682230203903701,17569.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +1107,2,47.0,3,0.0,8,111,2,0,63,4.0,0.0,0.0,535.6800465199736,0.0,1084.5943504724955,11001.718839019719,0,50,1,11404,201701107,,,257.0,,1.0,0.0,3.0,0.0,1.0,1.0,1572.7712207733598,0.0,398.0,613.0,0.0,19160.0,0,1,1,90.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1620.274396992469,0.14727465959644898,0.084565469571632,19160.0,5,3,5,5_1,5_2,5_0_0 +1108,2,75.0,1,0.0,9,111,2,75,74,10.0,0.0,0.0,2117.113715833573,0.0,2901.4520703000135,57179.529037510096,30,10,1,11406,201701108,,,400.0,,0.0,3.0,7.0,0.0,2.0,1.5,2240.1492810290115,867.8415475572548,1214.0,1131.0,0.0,69847.0,5,5,1,184.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5018.565786133587,0.08776857505841608,0.07185084235734658,46564.666666666664,10,5,10,10_1,10_4,10_0_0 +1109,2,38.0,2,0.0,9,111,2,0,34,9.0,0.0,0.0,380.8045465378663,0.0,709.6211124786864,43701.64,0,10,2,11409,201701109,,,600.0,,1.0,0.0,3.0,1.0,2.0,1.3,2209.2271045896855,684.0,0.0,0.0,0.0,47593.0,0,1,3,62.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1090.4256590165528,0.024951595844379133,0.022911471414211182,36610.0,9,5,9,9_0,9_3,9_0_0 +1110,2,36.0,3,0.0,4,111,2,43,53,8.0,0.0,0.0,1244.8522895594579,0.0,2319.755566523893,47750.92,33,60,1,1141,201701110,,,720.0,,2.0,0.0,4.0,2.0,4.0,2.1,2695.5516920450714,2236.0,0.0,0.0,0.0,57870.0,1,1,2,76.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3564.6078560833507,0.07465003514242974,0.061596817972755326,27557.142857142855,8,4,8,8_1,8_4,8_0_1 +1111,2,42.0,1,0.0,1,111,1,35,35,10.0,0.0,0.0,1076.7438121004495,0.0,0.0,85639.36,20,12,2,11410,201701111,,,,,2.0,0.0,3.0,2.0,4.0,2.1,4426.0011472196575,0.0,800.0,0.0,0.0,114986.0,1,1,1,75.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1076.7438121004495,0.012573001620988872,0.009364129651439736,54755.23809523809,10,5,10,10_0,10_4,10_1_0 +1112,2,29.0,2,0.0,9,111,2,0,54,5.0,95.18736054833293,0.0,935.4211867622655,0.0,0.0,18705.847533755656,0,42,2,11411,201701112,,,,440.0,1.0,0.0,2.0,0.0,1.0,1.0,2515.2615722152555,0.0,695.0,0.0,0.0,19998.0,0,1,3,38.0,8,6.0,1,2,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1030.6085473105984,0.05509552804013893,0.05153558092362228,19998.0,5,3,5,5_0,5_2,5_0_0 +1113,2,78.0,2,0.0,3,111,1,78,75,6.0,0.0,0.0,1350.517893582056,0.0,2068.4467814698,25266.12502166798,70,50,2,11413,201701113,420.0,420.0,,340.0,0.0,2.0,3.0,0.0,2.0,1.5,2026.5077903565523,1086.4707406831494,554.0,532.0,0.0,35345.0,5,5,3,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3418.964675051856,0.13531812543948807,0.09673121162970309,23563.333333333332,6,3,6,6_0,6_4,6_0_1 +1114,2,50.0,4,0.0,10,111,4,43,85,6.0,0.0,0.0,3827.8242520170984,0.0,0.0,72985.22,44,41,2,11414,201701114,,,,1078.0,1.0,0.0,4.0,2.0,4.0,2.5,2625.4310712587285,0.0,2844.0,0.0,0.0,54927.0,1,5,3,90.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3827.8242520170984,0.05244656729152969,0.06968930129111545,21970.8,6,3,6,6_0,6_3,6_0_0 +1115,2,69.0,1,0.0,4,111,2,0,77,3.0,0.0,0.0,826.4008757870951,0.0,1916.1756632328104,15019.08,0,71,1,11416,201701115,,,360.0,,0.0,2.0,4.0,0.0,1.0,1.0,2434.422834387248,0.0,614.0,1083.0,0.0,15754.0,0,5,1,90.0,4,4.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2742.5765390199053,0.1826061608979981,0.17408763101560906,15754.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +1116,1,47.0,4,86.0,3,111,2,0,52,3.0,0.0,0.0,581.4416585342427,0.0,2972.4608626326144,18076.120000000003,0,50,1,11417,201701116,,,420.0,,1.0,0.0,4.0,2.0,3.0,1.6,580.1895252520793,0.0,432.0,1680.0,0.0,24025.0,0,1,2,84.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,3553.9025211668572,0.1966075972701474,0.14792518298301174,15015.625,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +1117,1,34.0,3,385.0,2,112,1,0,56,2.0,0.0,0.0,807.5578590753372,0.0,0.0,12446.26,0,50,2,11418,201701117,,,,115.0,1.0,0.0,2.0,1.0,2.0,1.3,935.4625385534442,0.0,600.0,0.0,0.0,16684.0,0,4,3,40.0,10,4.0,2,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,807.5578590753372,0.06488357619681231,0.04840313228694181,12833.846153846154,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1118,1,49.0,4,430.0,99,112,1,85,68,2.0,0.0,0.0,764.4881065913191,0.0,0.0,13718.099999999999,71,50,2,1142,201701118,,,,,1.0,0.0,4.0,5.0,7.0,3.0,1283.1908162285458,0.0,568.0,0.0,0.0,33490.0,6,1,3,73.0,10,5.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,764.4881065913191,0.05572842497075537,0.022827354630973996,11163.333333333334,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1119,2,67.0,2,0.0,5,111,2,0,75,9.0,0.0,0.0,2356.723018734859,106.15931652259337,0.0,86731.58134949915,0,33,1,11421,201701119,,,270.0,,0.0,1.0,4.0,0.0,1.0,1.0,1599.3891106975298,0.0,1751.0,0.0,0.0,34482.0,0,5,1,69.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2462.8823352574527,0.028396603600859806,0.0714251590759658,34482.0,9,5,9,9_1,9_2,9_0_0 +1120,1,22.0,4,150.0,6,111,4,63,67,1.0,0.0,0.0,2638.0223396461015,0.0,0.0,11652.26,50,60,2,11422,201701120,,,520.0,330.0,2.0,0.0,4.0,1.0,3.0,1.8,1284.7715274764453,0.0,1960.0,0.0,0.0,18252.0,4,4,3,75.0,4,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,2638.0223396461015,0.22639576697105124,0.14453333002663277,10140.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1121,2,44.0,3,0.0,10,111,2,21,53,5.0,0.0,0.0,2422.6735772260117,0.0,0.0,34222.100000000006,31,20,1,11423,201701121,,,800.0,,2.0,0.0,4.0,2.0,4.0,2.1,3487.045404720339,0.0,1800.0,0.0,0.0,39960.0,1,1,2,120.0,6,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2422.6735772260117,0.0707926625550744,0.06062746689754784,19028.571428571428,5,3,5,5_1,5_2,5_0_0 +1122,2,42.0,1,0.0,9,111,2,46,38,10.0,0.0,0.0,1133.272862235723,0.0,1760.4753323330067,46988.46000000001,31,30,1,11424,201701122,,,240.0,,2.0,0.0,6.0,2.0,4.0,2.1,2347.203372650534,0.0,842.0,995.0,0.0,93583.0,1,1,2,168.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2893.7481945687296,0.06158423141700599,0.030921729315887818,44563.33333333333,10,5,10,10_1,10_3,10_0_0 +1123,2,69.0,3,0.0,4,111,1,75,77,8.0,0.0,0.0,1615.1157181506744,0.0,212.31863304518674,30111.000000000004,50,50,2,11426,201701123,0.0,,,497.0,0.0,4.0,4.0,0.0,2.0,1.5,2139.69769689479,0.0,1200.0,120.0,0.0,40051.0,5,5,3,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1827.4343511958612,0.060689925648296665,0.045627683483455125,26700.666666666668,7,4,7,7_0,7_4,7_0_1 +1124,2,84.0,1,0.0,4,112,4,77,78,4.0,0.0,0.0,2146.757975375271,70.77287768172891,0.0,20853.444375051,71,71,1,11427,201701124,,,110.0,,0.0,3.0,3.0,0.0,2.0,1.5,2815.7204205843227,0.0,1595.0,0.0,0.0,25149.0,5,5,1,100.0,8,3.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2217.530853057,0.10633882888478834,0.08817570690910176,16766.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +1125,2,59.0,3,0.0,5,112,2,72,75,8.0,0.0,291.4645271083224,2760.5019482725274,122.08321400098238,0.0,58969.96000000001,60,70,1,1143,201701125,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2302.16668949697,0.0,2051.0,0.0,0.0,41470.0,5,5,3,104.0,9,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3174.049689381832,0.05382485742540493,0.07653845404827181,27646.666666666668,8,4,8,8_1,8_1,8_0_0 +1126,2,76.0,2,0.0,1,112,6,0,75,7.0,1837.1160585828256,0.0,538.3719060502248,148.62304313163074,0.0,17383.260000000002,0,41,1,11431,201701126,,,390.0,,0.0,0.0,3.0,0.0,1.0,1.0,2965.6514246647425,0.0,400.0,0.0,0.0,25502.0,0,5,1,79.0,9,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2524.1110077646813,0.14520354684706327,0.09897698250194813,25502.0,7,4,7,7_1,7_1,7_1_0 +1127,2,35.0,3,0.0,9,112,4,55,63,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,27718.98,42,50,1,11432,201701127,,,564.0,690.0,2.0,0.0,3.0,1.0,3.0,1.8,1106.6403172726539,0.0,1200.0,0.0,0.0,36604.0,1,4,3,90.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.05826750183991887,0.04412402246067846,20335.555555555555,5,3,5,5_1,5_0,5_0_0 +1128,2,44.0,2,0.0,6,221,1,52,54,8.0,0.0,0.0,1022.9066214954271,0.0,0.0,37374.46000000001,31,30,2,11433,201701128,,,,610.0,2.0,0.0,3.0,0.0,2.0,1.5,4594.82146525209,0.0,760.0,0.0,0.0,43309.0,1,1,3,48.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1022.9066214954271,0.027369134470315474,0.023618800283900045,28872.666666666668,8,4,8,8_0,8_1,8_0_0 +1129,2,48.0,3,0.0,6,111,4,0,52,2.0,0.0,0.0,1502.057617880127,61.9262679715128,0.0,21601.164177580944,0,50,2,11434,201701129,,,460.0,450.0,2.0,0.0,3.0,2.0,3.0,2.0,1596.2859131275368,0.0,1116.0,0.0,0.0,25968.0,0,1,3,90.0,5,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1563.9838858516398,0.07240275908253321,0.060227352351033575,12984.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +1130,2,38.0,3,0.0,2,111,1,0,38,10.0,0.0,0.0,538.3719060502248,0.0,0.0,26029.36,0,12,2,11435,201701130,,,,380.0,1.0,0.0,3.0,0.0,1.0,1.0,3834.1894089457405,0.0,400.0,0.0,0.0,38930.0,0,1,3,55.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,538.3719060502248,0.02068325560252825,0.01382922954149049,38930.0,9,5,9,9_0,9_4,9_0_1 +1131,2,69.0,3,0.0,1,120,2,0,75,10.0,0.0,1249.133687607096,1574.7378251969076,3273.2455927799624,0.0,40121.46,0,31,1,11437,201701131,,,237.0,,0.0,1.0,6.0,0.0,1.0,1.0,1901.8474696058142,0.0,1170.0,0.0,0.0,48097.0,0,5,1,200.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6097.117105583966,0.15196648141877106,0.12676709785608178,48097.0,10,5,10,10_1,10_0,10_1_0 +1132,2,73.0,2,0.0,4,111,2,0,75,6.0,0.0,0.0,1055.5634798768926,0.0,1967.0199258181135,19276.36,0,50,1,11439,201701132,,,365.0,,0.0,4.0,5.0,0.0,1.0,1.0,1555.1429130288238,1896.0,0.0,0.0,0.0,22454.0,0,5,1,100.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3022.583405695006,0.1568026020314523,0.134612247514697,22454.0,6,3,6,6_1,6_2,6_0_1 +1133,2,71.0,4,0.0,7,111,1,0,46,6.0,0.0,0.0,477.8050666195745,0.0,1410.1495878084486,21105.199999999997,0,71,2,11440,201701133,175.0,175.0,112.0,412.0,1.0,4.0,4.0,0.0,1.0,1.0,2982.0626106549294,0.0,355.0,797.0,0.0,21988.0,0,5,3,80.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1887.954654428023,0.08945447825313303,0.08586295499490737,21988.0,6,3,6,6_0,6_3,6_0_0 +1134,1,61.0,5,89.0,2,111,2,0,56,2.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,10643.23202733072,0,41,3,11441,201701134,,,230.0,301.0,1.0,3.0,2.0,0.0,1.0,1.0,2448.126797685809,1000.0,0.0,0.0,0.0,10628.0,0,1,3,52.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1594.1895599657205,0.14978434707352115,0.14999901768589768,10628.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1135,2,49.0,3,0.0,1,111,1,56,48,3.0,0.0,0.0,807.5578590753372,0.0,636.9558991355602,67478.84063198822,71,71,8,11442,201701135,,,,,3.0,0.0,5.0,4.0,6.0,3.3,2749.3377383015736,0.0,600.0,360.0,0.0,52543.0,1,1,2,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1444.5137582108973,0.021406914296125713,0.02749203049332732,15922.121212121214,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +1136,2,44.0,3,0.0,8,300,2,62,67,4.0,0.0,0.0,1312.2815209974228,81.38880933398825,0.0,38558.560000000005,31,31,1,11443,201701136,,,500.0,,2.0,0.0,5.0,3.0,5.0,2.8,1988.1348326687653,0.0,975.0,0.0,0.0,43286.0,1,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1393.6703303314112,0.036144252542922015,0.03219679181101075,15459.285714285716,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1137,2,46.0,2,0.0,99,112,4,0,34,8.0,0.0,0.0,2374.220105681491,0.0,0.0,48400.71119129575,0,20,2,11445,201701137,,,,811.0,1.0,1.0,4.0,2.0,3.0,1.8,1624.2726833023858,0.0,1764.0,0.0,0.0,47818.0,0,1,3,80.0,10,2.0,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2374.220105681491,0.049053413622328436,0.0496511795909802,26565.555555555555,7,4,7,7_0,7_1,7_0_0 +1138,0,53.0,4,0.0,5,111,1,0,56,1.0,0.0,0.0,363.4010365839017,0.0,0.0,28272.68,0,70,2,11447,201701138,,,,,1.0,0.0,4.0,1.0,2.0,1.5,844.3409104128508,0.0,270.0,0.0,0.0,15126.0,0,1,5,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,363.4010365839017,0.012853434360799956,0.024024926390579248,10084.0,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +1139,1,39.0,3,434.0,5,211,1,85,65,1.0,0.0,0.0,1130.581002705472,256.5516815962673,0.0,22399.270875301627,71,50,2,11448,201701139,,,,,1.0,0.0,6.0,4.0,6.0,3.1,3098.738771988792,0.0,840.0,0.0,0.0,28978.0,6,4,3,90.0,1,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1387.1326843017393,0.06192758201925447,0.047868475543575796,9347.741935483871,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1140,1,27.0,2,92.0,4,111,1,0,84,1.0,0.0,0.0,290.72082926712136,0.0,0.0,14251.910875301626,0,20,2,11449,201701140,,,,428.0,0.0,0.0,2.0,0.0,1.0,1.0,3370.0434006627506,0.0,216.0,0.0,0.0,6624.0,0,3,3,49.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,290.72082926712136,0.0203987263049011,0.043889014080181366,6624.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1141,2,39.0,3,0.0,4,211,2,85,62,3.0,0.0,0.0,524.9126083989692,0.0,2300.11852465619,35092.36584675131,71,50,1,1145,201701141,,,210.0,,1.0,0.0,5.0,3.0,5.0,2.4,507.17287376211294,0.0,390.0,1300.0,0.0,33801.0,6,1,2,105.0,2,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2825.031133055159,0.0805027265870901,0.08357833002145378,14083.75,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +1142,2,63.0,3,0.0,4,211,2,0,75,4.0,0.0,0.0,1017.5229024349248,0.0,1698.549064361494,19639.551191295745,0,70,1,11450,201701142,,,268.0,,0.0,0.0,4.0,0.0,1.0,1.0,3185.9761150974855,0.0,756.0,960.0,0.0,17090.0,0,5,1,86.0,1,3.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2716.0719667964186,0.13829603030848192,0.1589275580337284,17090.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +1143,1,57.0,3,272.0,99,111,2,0,77,1.0,0.0,0.0,1157.4995980079832,0.0,0.0,14860.519999999999,0,50,2,11451,201701143,,,,98.0,0.0,4.0,3.0,0.0,1.0,1.0,3671.3772810445944,0.0,860.0,0.0,0.0,9084.0,0,7,3,44.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1157.4995980079832,0.07789092158336204,0.12742179634610118,9084.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1144,2,50.0,1,0.0,1,111,2,0,33,9.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,60674.28,0,20,1,11452,201701144,,,260.0,,1.0,1.0,4.0,1.0,2.0,1.5,1140.539709850656,1200.0,0.0,0.0,0.0,49685.0,0,1,2,85.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1913.0274719588647,0.031529463093074445,0.03850311908944077,33123.333333333336,9,5,9,9_1,9_3,9_1_0 +1145,2,63.0,3,0.0,9,111,2,0,77,2.0,0.0,0.0,1615.1157181506744,0.0,0.0,9703.025846751301,0,60,2,11453,201701145,,,196.0,355.0,0.0,1.0,2.0,0.0,1.0,1.0,4034.457532469084,0.0,1200.0,0.0,0.0,13306.0,0,5,3,55.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1615.1157181506744,0.16645485064758805,0.12138251301297719,13306.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +1146,2,50.0,1,0.0,2,112,2,46,46,7.0,0.0,0.0,807.5578590753372,0.0,2653.9829130648345,38574.88,20,31,1,11454,201701146,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.3,1447.9372570718524,0.0,600.0,1500.0,0.0,60570.0,1,1,1,100.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3461.5407721401716,0.08973561997186179,0.05714942664916909,26334.782608695656,7,4,7,7_1,7_0,7_0_1 +1147,2,82.0,3,0.0,99,221,2,0,78,2.0,0.0,0.0,1345.929765125562,0.0,0.0,12819.880000000001,0,71,1,11455,201701147,,,484.0,,0.0,3.0,3.0,0.0,2.0,1.5,2764.100356435177,0.0,1000.0,0.0,0.0,19672.0,0,5,1,80.0,1,3.0,5,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1345.929765125562,0.10498770387285698,0.06841855251756618,13114.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +1148,1,60.0,4,256.0,99,111,1,0,68,2.0,0.0,0.0,283.99118044149355,0.0,1603.00567949116,18367.904375050995,0,71,2,11456,201701148,655.0,655.0,,43.0,1.0,3.0,4.0,0.0,1.0,1.0,2081.564847615,0.0,211.0,906.0,0.0,10642.0,0,1,3,88.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1886.9968599326535,0.10273337782048501,0.17731599886606403,10642.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1149,2,82.0,3,0.0,1,111,2,0,78,5.0,0.0,0.0,637.4579031956973,0.0,1187.8891429650525,9796.82,0,70,1,11457,201701149,,,86.0,,0.0,2.0,3.0,0.0,1.0,1.0,2542.4795661547,1145.0,0.0,0.0,0.0,19745.0,0,5,1,75.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1825.3470461607499,0.18632036172561606,0.09244603930923018,19745.0,5,3,5,5_1,5_2,5_1_0 +1150,2,39.0,2,0.0,8,300,2,42,63,4.0,0.0,0.0,812.8284180486621,0.0,1514.6883395012899,24224.78,30,50,1,11458,201701150,,,480.0,,2.0,0.0,5.0,3.0,5.0,2.6,1730.8332684026996,1460.0,0.0,0.0,0.0,45726.0,1,1,2,100.0,0,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2327.5167575499518,0.09607999567178534,0.05090138559134741,17586.923076923078,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1151,2,26.0,2,0.0,99,111,2,0,52,3.0,0.0,0.0,1561.278527545652,0.0,0.0,20341.32,0,50,2,11459,201701151,,,,407.0,1.0,0.0,2.0,0.0,1.0,1.0,4795.922286637998,0.0,1160.0,0.0,0.0,15859.0,0,1,3,44.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1561.278527545652,0.07675404189824711,0.09844747635699931,15859.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +1152,2,47.0,2,0.0,6,111,2,46,38,10.0,0.0,0.0,668.9270932674043,0.0,1645.4694061001974,70168.28,50,31,1,1146,201701152,,,275.0,,2.0,1.0,5.0,0.0,2.0,1.5,1953.085871706725,0.0,497.0,930.0,0.0,74869.0,1,1,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2314.396499367602,0.03298351476432944,0.030912614024063388,49912.666666666664,10,5,10,10_1,10_4,10_0_0 +1153,2,39.0,3,0.0,4,111,2,47,46,9.0,0.0,0.0,672.964882562781,0.0,3007.847301473479,36307.78,50,41,1,11463,201701153,,,674.0,,2.0,0.0,4.0,1.0,3.0,1.8,1391.8879093357064,0.0,500.0,1700.0,0.0,66525.0,1,1,2,85.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3680.81218403626,0.10137805682518349,0.05532975849735077,36958.333333333336,9,5,9,9_1,9_2,9_0_1 +1154,2,41.0,3,0.0,6,111,6,43,34,4.0,0.0,138.792631956344,2422.6735772260117,0.0,0.0,62141.340000000004,33,0,1,11467,201701154,,,,,2.0,0.0,6.0,3.0,5.0,2.8,2246.6774617858523,0.0,1800.0,0.0,0.0,51041.0,1,1,4,175.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2561.4662091823557,0.04122000280622136,0.050184483242537485,18228.928571428572,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1155,2,52.0,3,0.0,7,300,2,21,52,7.0,0.0,624.566843803548,2328.4584936672222,0.0,0.0,38726.479999999996,50,50,1,11468,201701155,,,200.0,,2.0,3.0,4.0,0.0,2.0,1.5,1457.8197509572542,0.0,1730.0,0.0,0.0,36190.0,1,1,1,109.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2953.02533747077,0.07625338883034993,0.0815978264015134,24126.666666666668,7,4,7,7_1,7_0,7_0_0 +1156,2,58.0,3,0.0,5,112,2,78,37,9.0,0.0,0.0,6589.138036167777,0.0,671.1785495408332,45641.04355930597,70,50,1,11469,201701156,,,550.0,,2.0,1.0,7.0,1.0,3.0,2.0,1760.7052399906809,646.9454189184917,4628.0,0.0,0.0,81612.0,5,1,1,160.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,7260.31658570861,0.15907428970756454,0.08896138540543805,40806.0,10,5,10,10_1,10_1,10_0_0 +1157,2,63.0,3,0.0,2,111,1,0,78,3.0,0.0,0.0,325.715003160386,0.0,0.0,19932.4,0,50,2,11470,201701157,,,348.0,259.0,0.0,1.0,3.0,0.0,1.0,1.0,3327.9297278068216,0.0,242.0,0.0,0.0,14390.0,0,5,3,48.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,325.715003160386,0.016340982679475927,0.02263481606396011,14390.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +1158,2,79.0,3,0.0,3,111,2,0,78,3.0,1348.4876077680499,0.0,704.3348789491056,111.46728234872305,698.0256915224667,13596.070901678202,0,70,1,11472,201701158,,,130.0,,0.0,2.0,3.0,0.0,1.0,1.0,3142.7270712794957,672.8232356752314,245.0,0.0,0.0,15120.0,0,5,1,70.0,9,7.0,1,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2862.3154605883456,0.2105251937333632,0.1893065780812398,15120.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +1159,1,33.0,3,322.0,5,211,1,0,85,2.0,0.0,0.0,726.8020731678034,0.0,488.3328560039295,6507.48,0,60,2,11473,201701159,,,372.0,18.0,1.0,0.0,4.0,0.0,2.0,1.5,3866.779028141451,0.0,540.0,276.0,0.0,16764.0,0,8,3,66.0,1,2.0,5,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1215.134929171733,0.1867289533232116,0.07248478460819213,11176.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +1160,1,37.0,3,408.0,9,221,6,0,85,2.0,761.4988843866635,0.0,1200.5693504920011,54.84898020333991,0.0,23815.22,0,50,1,11474,201701160,,,268.0,60.0,0.0,0.0,5.0,2.0,3.0,2.0,527.346956092812,0.0,892.0,0.0,0.0,20926.0,0,7,3,75.0,1,2.0,2,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2016.9172150820043,0.08469026173522665,0.09638331334617244,10463.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +1161,2,42.0,4,0.0,4,111,2,55,68,4.0,0.0,0.0,879.6362332307439,0.0,1639.1832715150945,50037.638839019724,43,43,1,11475,201701161,,,154.0,,3.0,0.0,3.0,1.0,3.0,2.0,3571.923129537866,1580.0,0.0,0.0,0.0,34385.0,1,1,3,72.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2518.8195047458385,0.05033849644363403,0.07325343913758436,17192.5,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1162,2,43.0,2,0.0,2,111,2,21,38,7.0,0.0,0.0,1224.8099450048333,0.0,2282.4070869197517,51802.84019747007,30,60,2,11477,201701162,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2376.771829743934,2200.0,0.0,0.0,0.0,52749.0,1,1,2,100.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3507.217031924585,0.06770318033828326,0.06648878712249683,25118.571428571428,7,4,7,7_0,7_3,7_0_1 +1163,2,31.0,2,0.0,99,112,6,0,47,5.0,253.83296146222114,0.0,807.5578590753372,44.23304855108057,0.0,32195.62,0,30,1,11478,201701163,,,,400.0,1.0,0.0,2.0,0.0,1.0,1.0,2890.510653421023,0.0,600.0,0.0,0.0,20855.0,0,1,3,35.0,8,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1105.623869088639,0.03434081620694489,0.0530148103135286,20855.0,5,3,5,5_1,5_1,5_0_0 +1164,2,88.0,1,0.0,1,111,5,0,75,10.0,0.0,5551.705278253759,538.3719060502248,53.079658261296686,0.0,32385.910537796415,0,41,1,1148,201701164,,,320.0,,0.0,5.0,6.0,0.0,1.0,1.0,3411.727574763348,0.0,400.0,0.0,0.0,43315.0,0,5,1,140.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,6143.15684256528,0.1896860931359588,0.14182516085802332,43315.0,10,5,10,10_1,10_3,10_1_0 +1165,1,39.0,3,164.0,99,111,1,0,55,2.0,0.0,0.0,3364.824412813905,0.0,1192.5229889371321,24928.48,0,31,2,11483,201701165,624.0,624.0,250.0,243.0,1.0,0.0,5.0,2.0,3.0,1.6,698.5194438936821,0.0,2500.0,674.0,0.0,20505.0,0,1,3,95.0,5,4.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,4557.347401751037,0.18281689865371,0.22225542071451046,12815.625,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1166,1,38.0,5,300.0,9,112,4,85,85,4.0,0.0,0.0,263.80223396461014,0.0,0.0,23349.08,71,71,1,11484,201701166,,,500.0,700.0,0.0,0.0,5.0,3.0,5.0,2.4,1043.113241403814,0.0,196.0,0.0,0.0,39390.0,4,6,3,96.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,263.80223396461014,0.011298185365959178,0.006697187965590509,16412.5,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +1167,2,42.0,3,0.0,1,111,2,0,21,3.0,0.0,0.0,1873.5342330547821,0.0,63.69558991355603,77944.42,0,31,1,11485,201701167,,,,,1.0,0.0,5.0,3.0,4.0,2.1,1910.259331878858,0.0,1392.0,36.0,0.0,29952.0,0,1,2,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1937.229822968338,0.0248539898426127,0.06467781193136812,14262.857142857143,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +1168,2,53.0,3,0.0,1,112,2,54,63,10.0,1665.7788095958263,346.98157989085996,1345.929765125562,132.69914565324171,0.0,49004.1,50,50,1,11487,201701168,,,120.0,,2.0,1.0,5.0,0.0,2.0,1.5,1709.9217424530411,0.0,1000.0,0.0,0.0,73990.0,1,1,2,190.0,10,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3491.38930026549,0.07124688138881216,0.04718731315401392,49326.666666666664,10,5,10,10_1,10_0,10_1_0 +1169,1,59.0,2,255.0,99,221,6,0,67,2.0,0.0,0.0,1296.130363815916,61.9262679715128,0.0,15620.56,0,71,1,11489,201701169,,,,45.0,1.0,0.0,2.0,0.0,1.0,1.0,2627.192080262118,0.0,963.0,0.0,0.0,11191.0,0,4,3,29.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1358.0566317874288,0.0869403293983973,0.12135257186912955,11191.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +1170,2,55.0,3,0.0,7,112,2,68,43,9.0,0.0,277.585263912688,3668.676218959468,0.0,215.08575103897007,36391.40531098255,0,0,1,11490,201701170,,,425.0,,2.0,0.0,7.0,1.0,3.0,2.0,1970.5387313686047,207.32000658319512,2640.0,0.0,0.0,72801.0,1,1,1,200.0,9,0.0,4,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4161.347233911126,0.11434972621558186,0.05716057793040104,36400.5,9,5,9,9_1,9_0,9_0_0 +1171,2,75.0,3,0.0,1,112,2,72,72,4.0,0.0,0.0,1008.1013940790459,0.0,2029.4122675235767,19593.760000000002,44,50,1,11491,201701171,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1851.0321952397612,0.0,749.0,1147.0,0.0,25180.0,5,5,1,150.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3037.5136616026225,0.15502454156846987,0.12063199609224076,16786.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1172,2,61.0,3,0.0,1,112,2,0,78,7.0,0.0,0.0,1345.929765125562,92.0047409862476,0.0,13504.52,0,71,1,11492,201701172,,,90.0,,0.0,0.0,3.0,0.0,1.0,1.0,3546.066891322128,0.0,1000.0,0.0,0.0,23561.0,0,5,3,50.0,9,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1437.9345061118095,0.10647801670194938,0.06103028335434869,23561.0,6,3,6,6_1,6_1,6_1_0 +1173,2,49.0,2,0.0,8,111,2,43,52,8.0,0.0,0.0,2545.1531858524377,0.0,0.0,50694.36,33,41,1,11497,201701173,,,642.0,,2.0,0.0,3.0,2.0,4.0,2.5,2029.8181931949987,0.0,1891.0,0.0,0.0,67271.0,1,1,2,90.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2545.1531858524377,0.05020584510490787,0.037834329590052736,26908.4,7,4,7,7_1,7_2,7_0_0 +1174,2,69.0,2,0.0,9,111,1,86,86,8.0,0.0,0.0,1373.2419745486243,191.08676974066807,1505.6002572727907,65256.72104976642,44,41,2,11498,201701174,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1487.8873825938165,1451.240046082366,420.0,0.0,0.0,44042.0,5,5,1,87.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,3069.929001562083,0.047043874595244804,0.06970457748426691,29361.333333333332,8,4,8,8_0,8_2,8_0_0 +1175,2,65.0,3,0.0,4,120,2,78,77,4.0,2062.392811880547,0.0,699.8834778652922,185.7788039145384,0.0,30491.911191295745,71,71,5,11499,201701175,,,250.0,,0.0,1.0,4.0,0.0,2.0,1.5,2219.331958816971,0.0,520.0,0.0,0.0,25569.0,5,5,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2948.0550936603777,0.09668318509670633,0.11529802079316272,17046.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +1176,1,52.0,4,333.0,4,111,1,0,56,1.0,0.0,0.0,484.5347154452023,0.0,0.0,5594.830875301629,0,50,8,115,201701176,,,,,1.0,3.0,4.0,1.0,2.0,1.3,714.1756916809048,0.0,360.0,0.0,0.0,12756.0,0,4,3,72.0,7,6.0,2,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,484.5347154452023,0.0866039968400439,0.03798484755763581,9812.307692307691,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1177,2,28.0,3,0.0,2,111,2,46,48,7.0,0.0,0.0,807.5578590753372,0.0,0.0,42480.480631988234,43,50,2,1150,201701177,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3782.328536553669,0.0,600.0,0.0,0.0,36343.0,1,1,1,48.0,5,4.0,3,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,807.5578590753372,0.019010092330905455,0.022220451230645165,24228.666666666668,7,4,7,7_0,7_2,7_0_1 +1178,1,33.0,3,350.0,99,111,1,52,63,2.0,0.0,0.0,444.15682249143543,0.0,0.0,9359.8,71,20,2,11500,201701178,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3962.4620127183557,0.0,330.0,0.0,0.0,26470.0,1,1,3,72.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,444.15682249143543,0.04745366594280171,0.016779630619245766,12604.761904761905,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1179,2,51.0,3,0.0,5,111,1,0,37,9.0,0.0,0.0,493.95622380108125,0.0,0.0,35919.41031599413,0,31,2,11501,201701179,,,,,1.0,0.0,4.0,1.0,2.0,1.5,2535.082740520413,0.0,367.0,0.0,0.0,49810.0,0,1,1,78.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,493.95622380108125,0.013751791008137273,0.009916808347743049,33206.666666666664,9,5,9,9_0,9_4,9_0_0 +1180,2,70.0,1,0.0,6,211,2,75,75,7.0,0.0,0.0,555.8689929968571,0.0,1219.0628180677807,38518.2,50,31,1,11503,201701180,,,266.0,,0.0,4.0,6.0,0.0,2.0,1.5,957.0334634175739,0.0,413.0,689.0,0.0,36907.0,5,5,1,120.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1774.9318110646377,0.046080341528540736,0.04809200994566445,24604.666666666668,7,4,7,7_1,7_1,7_0_0 +1181,1,53.0,5,260.0,1,112,4,0,,1.0,0.0,0.0,942.1508355878933,0.0,0.0,1752.92,0,71,1,11505,201701181,,,280.0,,0.0,0.0,2.0,0.0,1.0,1.0,2267.0929969705476,0.0,700.0,0.0,0.0,8940.0,0,8,3,35.0,8,1.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,942.1508355878933,0.5374750904706965,0.10538599950647576,8940.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +1182,1,35.0,4,299.0,4,111,1,0,63,3.0,0.0,0.0,367.4388258792784,350.32574452455816,796.1948739194503,7264.530000000001,0,70,2,11506,201701182,450.0,450.0,,1.0,1.0,0.0,3.0,1.0,2.0,1.3,968.2561433635423,0.0,273.0,450.0,0.0,18148.0,0,1,3,55.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1513.9594443232868,0.20840432131511422,0.08342293609892477,13960.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1183,1,48.0,4,228.0,1,212,4,0,52,7.0,0.0,693.9631597817199,3122.557055091304,159.23897478389006,0.0,35403.727196250446,0,30,1,11507,201701183,,,160.0,,1.0,3.0,9.0,2.0,3.0,1.8,725.1424044630271,0.0,2320.0,0.0,0.0,43850.0,0,1,2,250.0,1,0.0,2,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3975.7591896569143,0.1122977580190478,0.09066725632056817,24361.11111111111,7,4,7,7_1,7_0,7_1_0 +1184,2,59.0,2,0.0,3,111,1,0,45,7.0,0.0,0.0,254.3807256087312,0.0,323.7859153939098,34114.020000000004,0,50,2,11508,201701184,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1998.6720947253327,0.0,189.0,183.0,0.0,28113.0,0,1,1,55.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,578.166641002641,0.01694806537026832,0.020565810870509762,28113.0,8,4,8,8_0,8_3,8_0_1 +1185,2,59.0,3,0.0,5,111,2,52,38,10.0,0.0,0.0,642.0084979648931,0.0,1610.082967259333,34127.740000000005,50,31,1,1151,201701185,,,310.0,,2.0,2.0,5.0,0.0,2.0,1.5,1545.2247861121484,0.0,477.0,910.0,0.0,63932.0,1,1,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2252.091465224226,0.06599005575007971,0.03522635714859892,42621.333333333336,10,5,10,10_1,10_4,10_0_0 +1186,2,36.0,3,0.0,9,111,2,42,38,10.0,0.0,0.0,1119.8135645844675,0.0,1528.6941579253446,69154.43087530162,30,20,1,11510,201701186,,,588.0,,2.0,0.0,4.0,2.0,4.0,2.1,2371.9549782359204,0.0,832.0,864.0,0.0,80634.0,1,1,2,123.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2648.507722509812,0.03829845302733482,0.032846041651286205,38397.142857142855,9,5,9,9_1,9_2,9_0_0 +1187,2,27.0,1,0.0,2,211,2,0,64,8.0,0.0,0.0,438.7731034309332,0.0,1565.8499187082523,18106.879999999997,0,50,2,11513,201701187,,,312.0,,1.0,0.0,3.0,0.0,1.0,1.0,3493.014303891631,0.0,326.0,885.0,0.0,28094.0,0,1,2,54.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2004.6230221391854,0.11071057090670429,0.07135413334303359,28094.0,8,4,8,8_0,8_1,8_0_1 +1188,2,39.0,3,0.0,9,112,4,67,63,5.0,0.0,0.0,1893.7231795316657,0.0,0.0,52526.1,42,44,1,11514,201701188,,,674.0,,2.0,0.0,5.0,2.0,4.0,2.1,2140.391513297926,0.0,1407.0,0.0,0.0,39188.0,1,1,2,109.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1893.7231795316657,0.03605299421681156,0.048324057862908686,18660.95238095238,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1189,1,25.0,2,129.0,1,400,4,0,43,6.0,0.0,0.0,1576.083754962033,106.15931652259337,0.0,13515.44,0,44,2,11515,201701189,,,454.0,,1.0,0.0,4.0,0.0,1.0,1.0,4865.247873083666,0.0,1171.0,0.0,0.0,21028.0,0,1,3,100.0,0,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1682.2430714846264,0.12446824309712642,0.08000014606641746,21028.0,5,3,5,5_0,5_1,5_1_0 +1190,1,36.0,4,408.0,99,111,2,0,85,2.0,0.0,0.0,1843.9237782220198,0.0,0.0,32559.519999999997,0,50,1,11516,201701190,,,1100.0,,0.0,0.0,5.0,2.0,3.0,1.6,730.6931681284863,0.0,1370.0,0.0,0.0,17607.0,0,6,3,108.0,6,4.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1843.9237782220198,0.056632400545893184,0.10472674380769124,11004.375,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +1191,2,53.0,3,0.0,6,111,4,63,54,6.0,0.0,0.0,2153.487624200899,111.46728234872305,0.0,26859.34,50,50,1,11517,201701191,,,180.0,,2.0,2.0,4.0,0.0,2.0,1.5,813.6402352361328,0.0,1600.0,0.0,0.0,35117.0,1,1,1,98.0,4,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2264.954906549622,0.08432652874380465,0.06449739176323781,23411.333333333332,6,3,6,6_1,6_1,6_0_0 +1192,2,61.0,3,0.0,5,111,2,0,54,5.0,0.0,0.0,456.2701903775655,44.23304855108057,465.33167075736765,22423.03130526406,0,42,2,11518,201701192,,,,570.0,1.0,2.0,4.0,0.0,1.0,1.0,2562.8440302962235,0.0,339.0,263.0,0.0,18992.0,0,1,3,80.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,965.8349096860137,0.043073342606415266,0.05085482885878337,18992.0,5,3,5,5_0,5_2,5_0_0 +1193,1,32.0,5,408.0,99,112,2,0,85,2.0,0.0,0.0,1647.4180325136879,106.15931652259337,0.0,6535.391191295745,0,50,1,1152,201701193,,,270.0,64.0,0.0,0.0,4.0,2.0,3.0,1.6,1424.878700366469,0.0,1224.0,0.0,0.0,18346.0,0,6,3,90.0,8,3.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1753.5773490362812,0.2683201812573681,0.09558363398213678,11466.25,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +1194,2,27.0,4,0.0,4,112,4,53,46,8.0,0.0,0.0,9690.694308904047,0.0,0.0,61400.04,30,42,1,11520,201701194,,,456.0,,2.0,0.0,6.0,0.0,2.0,1.5,4418.094606718698,0.0,7200.0,0.0,0.0,46872.0,1,1,2,120.0,10,4.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,9690.694308904047,0.15782879471909214,0.20674804379808942,31248.0,8,4,8,8_1,8_2,8_0_1 +1195,2,74.0,3,0.0,7,112,4,72,74,8.0,374.4036181567762,284.5248955105052,3111.7896169702994,212.31863304518674,0.0,39039.02866371309,71,30,1,11521,201701195,,,507.0,,0.0,2.0,6.0,0.0,2.0,1.5,1784.9848658278336,0.0,2312.0,0.0,0.0,40207.0,5,5,1,240.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3983.0367636827673,0.10202704575447118,0.09906326668696415,26804.666666666668,7,4,7,7_1,7_0,7_0_0 +1196,1,35.0,3,64.0,99,111,2,0,52,4.0,0.0,0.0,341.86616034189274,0.0,1183.6763792269162,34763.67999999999,0,43,2,11522,201701196,,,,266.0,1.0,0.0,3.0,1.0,2.0,1.3,1074.2116227872532,0.0,254.0,669.0,0.0,22888.0,0,1,3,75.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1525.542539568809,0.043883229265969805,0.06665250522408288,17606.153846153844,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +1197,2,67.0,3,0.0,5,112,4,78,78,5.0,0.0,0.0,1615.1157181506744,95.54338487033404,0.0,15043.560000000001,71,70,1,11524,201701197,,,237.0,,0.0,2.0,3.0,0.0,2.0,1.5,1784.766123685571,0.0,1200.0,0.0,0.0,29543.0,5,5,1,80.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1710.6591030210084,0.11371371557138125,0.05790404166878815,19695.333333333332,5,3,5,5_1,5_0,5_0_0 +1198,2,52.0,1,0.0,8,111,2,77,48,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,20271.80347014303,70,50,8,11525,201701198,,,,,1.0,1.0,3.0,0.0,2.0,1.5,2068.685494770761,1200.0,0.0,0.0,0.0,26650.0,6,1,2,73.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1913.0274719588647,0.09436888408949079,0.07178339482022006,17766.666666666668,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +1199,2,54.0,3,0.0,7,111,1,52,62,8.0,0.0,0.0,1195.185631431499,0.0,0.0,53654.4458467513,50,50,2,11526,201701199,,,,423.0,4.0,1.0,4.0,2.0,4.0,2.5,1838.6109556367715,0.0,888.0,0.0,0.0,70109.0,1,1,3,83.0,8,6.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1195.185631431499,0.022275612254857826,0.017047535001661684,28043.6,8,4,8,8_0,8_2,8_0_0 +1200,2,64.0,2,0.0,8,400,2,56,33,3.0,0.0,0.0,1170.9588956592388,1983.4098970304528,0.0,49097.36,50,50,1,11527,201701200,,,306.0,,2.0,2.0,6.0,0.0,2.0,1.5,1568.3808120196722,0.0,870.0,0.0,0.0,24268.0,1,5,1,180.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3154.368792689692,0.0642472180314724,0.12998058318319153,16178.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1201,2,59.0,2,0.0,9,300,2,46,46,10.0,0.0,0.0,3162.9349480450705,0.0,0.0,77311.78955450968,50,50,1,11528,201701201,,,,,3.0,2.0,6.0,2.0,4.0,2.5,2647.9859769870427,0.0,2350.0,0.0,0.0,102206.0,1,1,2,120.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3162.9349480450705,0.04091141811967762,0.030946666027875765,40882.4,10,5,10,10_1,10_0,10_0_0 +1202,2,57.0,2,0.0,7,111,2,0,37,10.0,0.0,0.0,40.37789295376686,0.0,0.0,18302.02,0,41,2,11529,201701202,,,,671.0,1.0,1.0,3.0,0.0,1.0,1.0,2163.6315445815003,0.0,30.0,0.0,0.0,44210.0,0,1,3,45.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,40.37789295376686,0.002206198712151274,0.000913320356339445,44210.0,10,5,10,10_0,10_3,10_0_0 +1203,2,82.0,3,0.0,1,300,2,71,78,2.0,0.0,0.0,1356.6972032465665,2211.6524275540287,0.0,40386.04784974979,70,50,1,1153,201701203,,,332.0,,0.0,2.0,5.0,0.0,2.0,1.5,2205.6467262696115,0.0,1008.0,0.0,0.0,17771.0,5,5,1,140.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3568.349630800595,0.08835599967781206,0.2007962202915196,11847.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1204,1,50.0,4,21.0,7,112,2,0,62,7.0,0.0,0.0,759.1043875308169,0.0,1486.2304313163072,24783.878409057284,0,71,2,11530,201701204,,,667.0,461.0,2.0,0.0,4.0,1.0,2.0,1.5,3193.01626546262,0.0,564.0,840.0,0.0,37488.0,0,1,3,77.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2245.334818847124,0.0905965879023424,0.05989476149293438,24992.0,7,4,7,7_0,7_2,7_0_0 +1205,2,29.0,2,0.0,9,111,4,42,38,9.0,0.0,0.0,1749.7086946632305,0.0,0.0,40560.96,0,12,2,11531,201701205,,,,570.0,2.0,0.0,2.0,0.0,2.0,1.5,3422.224463660273,0.0,1300.0,0.0,0.0,57851.0,1,1,3,48.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1749.7086946632305,0.043137753511337765,0.030245089880265346,38567.333333333336,9,5,9,9_0,9_3,9_0_0 +1206,2,34.0,5,0.0,5,111,2,43,54,8.0,0.0,0.0,1047.1333572676872,0.0,1174.8297695167,62901.82,33,31,1,11533,201701206,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,1420.9755533663238,0.0,778.0,664.0,0.0,58805.0,1,1,2,85.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2221.963126784387,0.0353243058274687,0.03778527551712247,28002.38095238095,8,4,8,8_1,8_3,8_0_0 +1207,2,49.0,1,0.0,7,111,1,0,67,6.0,0.0,0.0,807.5578590753372,0.0,0.0,24543.219999999998,0,50,2,11535,201701207,,,,615.0,1.0,0.0,2.0,0.0,1.0,1.0,5967.35923252851,0.0,600.0,0.0,0.0,22439.0,0,1,3,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,807.5578590753372,0.03290350080695757,0.03598903066426031,22439.0,6,3,6,6_0,6_3,6_0_0 +1208,2,49.0,2,0.0,2,111,2,0,22,9.0,0.0,0.0,695.8456885699155,0.0,1946.2541362475451,33106.479999999996,0,31,1,11536,201701208,,,310.0,854.0,1.0,3.0,5.0,1.0,2.0,1.3,604.7022368835704,0.0,517.0,1100.0,0.0,44522.0,0,1,3,145.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2642.0998248174606,0.07980612329723549,0.05934369131704462,34247.692307692305,9,5,9,9_1,9_3,9_0_1 +1209,2,29.0,3,0.0,9,112,5,52,47,6.0,0.0,291.4645271083224,1358.043133011692,0.0,0.0,18586.28,43,43,1,11538,201701209,,,340.0,,2.0,0.0,4.0,0.0,2.0,1.5,2543.618140608171,0.0,1009.0,0.0,0.0,32219.0,1,1,2,98.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1649.5076601200144,0.08874867160722934,0.051196736711878535,21479.333333333332,6,3,6,6_1,6_1,6_0_0 +1211,1,55.0,3,195.0,2,111,2,56,64,3.0,71.3905204112497,0.0,1197.87749096175,0.0,575.0296311640475,22608.57182328398,60,50,1,1154,201701211,,,280.0,,3.0,0.0,4.0,2.0,4.0,2.5,1530.0207457121119,0.0,890.0,325.0,0.0,36260.0,1,1,3,80.0,6,5.0,4,8,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1844.2976425370473,0.08157515021084406,0.050863145133398985,14504.0,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +1212,2,81.0,2,0.0,1,112,5,0,71,3.0,0.0,0.0,707.9590564560456,212.31863304518674,0.0,22665.870875301633,0,70,1,11541,201701212,,,125.0,,0.0,2.0,5.0,0.0,1.0,1.0,2113.7109817957307,0.0,526.0,0.0,0.0,13778.0,0,5,1,110.0,4,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,920.2776895012323,0.04060191177141282,0.06679327112071652,13778.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1213,2,32.0,1,0.0,1,221,2,54,67,7.0,0.0,0.0,1615.1157181506744,47.77169243516702,0.0,28305.66,42,50,1,11545,201701213,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2599.6110549150753,0.0,1200.0,0.0,0.0,46863.0,1,1,2,136.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1662.8874105858415,0.0587475229542728,0.035484015333756724,26035.0,7,4,7,7_1,7_1,7_1_0 +1214,2,83.0,1,0.0,6,111,4,0,77,9.0,0.0,0.0,672.964882562781,0.0,0.0,16767.199999999997,0,60,8,11546,201701214,,,,500.0,0.0,4.0,2.0,0.0,1.0,1.0,3660.3135490454442,0.0,500.0,0.0,0.0,38048.0,0,5,3,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,672.964882562781,0.04013579384529206,0.017687260370131963,38048.0,9,5,9,9_0,9_3,9_0_0 +1215,1,38.0,4,235.0,99,111,2,0,43,3.0,0.0,0.0,269.1859530251124,0.0,1380.0711147937138,12454.1658467513,0,60,2,11547,201701215,,,,212.0,1.0,0.0,3.0,2.0,3.0,1.6,782.6994468074272,0.0,200.0,780.0,0.0,25170.0,0,1,3,65.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1649.2570678188263,0.1324261366126772,0.0655247146531119,15731.25,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +1216,2,66.0,2,0.0,8,111,2,75,75,10.0,0.0,555.170527825376,497.99401309645793,0.0,1132.3660429076626,38528.64,50,60,1,11548,201701216,,,460.0,,0.0,2.0,5.0,0.0,2.0,1.5,1792.3010748797167,0.0,370.0,640.0,0.0,62751.0,5,5,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2185.5305838294967,0.056724830770810926,0.03482861761293839,41834.0,10,5,10,10_1,10_4,10_0_0 +1217,2,39.0,1,0.0,1,111,2,54,47,8.0,0.0,0.0,569.3282906481127,0.0,1787.0151614636552,44850.72000000001,42,31,1,11549,201701217,,,390.0,,2.0,0.0,7.0,2.0,4.0,2.1,6333.971555440909,0.0,423.0,1010.0,0.0,56290.0,1,1,2,160.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2356.343452111768,0.05253747213225936,0.04186078259214368,26804.761904761905,7,4,7,7_1,7_3,7_1_0 +1218,1,80.0,2,460.0,3,112,2,86,75,8.0,1151.7670626348286,0.0,1414.6374764947027,198.16405750884095,1720.6860083117606,21168.61548544734,50,50,1,1155,201701218,,,283.0,,0.0,2.0,4.0,0.0,2.0,1.5,2297.15896060553,1658.560052665561,365.0,0.0,0.0,45040.0,5,5,3,90.0,8,1.0,3,7,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,4485.2546049501325,0.21188228432008618,0.09958380561612194,30026.666666666668,8,4,8,8_1,8_1,8_0_1 +1219,1,44.0,3,462.0,99,211,1,0,63,7.0,0.0,0.0,605.6683943065029,0.0,760.8084350785858,6521.74,0,71,2,11550,201701219,,,,,1.0,5.0,6.0,0.0,1.0,1.0,1027.2301475486947,0.0,450.0,430.0,0.0,23268.0,0,4,3,87.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1366.4768293850889,0.2095264192355244,0.0587277303328644,23268.0,6,3,6,6_0,6_1,6_0_0 +1220,2,62.0,3,0.0,4,111,2,74,43,10.0,0.0,0.0,954.9850971485429,0.0,2012.7385993088349,29940.815541122713,31,31,1,11551,201701220,,,218.0,,1.0,3.0,6.0,0.0,2.0,1.5,2308.448604066965,637.1118485509306,446.0,764.0,0.0,63730.0,5,1,1,120.0,7,6.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2967.7236964573776,0.09911966801242632,0.04656713787003574,42486.666666666664,10,5,10,10_1,10_2,10_0_1 +1221,1,53.0,3,272.0,99,400,1,0,56,2.0,0.0,0.0,370.1306854095295,0.0,1174.8297695167,23043.683786137146,0,71,2,11553,201701221,,,435.0,30.0,1.0,0.0,4.0,2.0,3.0,2.0,863.152376180874,0.0,275.0,664.0,0.0,21383.0,0,1,3,77.0,0,0.0,2,9,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1544.9604549262294,0.06704485572986653,0.07225181007932607,10691.5,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +1222,2,57.0,1,0.0,5,112,2,55,22,10.0,0.0,0.0,6007.71159442623,0.0,3457.7185337024825,94747.69022800642,60,31,1,11554,201701222,,,459.0,,2.0,3.0,9.0,2.0,4.0,2.5,1677.7625920556734,3332.876425831445,3085.0,0.0,0.0,161404.0,6,1,1,170.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,9465.430128128712,0.09990143406504731,0.0586443342676062,64561.6,10,5,10,10_1,10_1,10_0_0 +1223,1,39.0,4,349.0,99,111,1,0,56,1.0,0.0,0.0,403.7789295376686,0.0,0.0,5658.16,0,71,2,11555,201701223,,,,,1.0,0.0,3.0,2.0,3.0,1.8,1221.1139824936927,0.0,300.0,0.0,0.0,12012.0,0,1,3,64.0,9,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,403.7789295376686,0.07136223251687274,0.03361462949864041,6673.333333333333,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1224,2,63.0,1,0.0,4,111,2,78,74,10.0,0.0,222.0682111301504,370.1306854095295,0.0,974.8963900658158,29649.42,50,20,1,11556,201701224,,,160.0,,0.0,3.0,5.0,0.0,2.0,1.5,1906.9183605450698,0.0,275.0,551.0,0.0,68536.0,5,5,1,150.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1567.0952866054959,0.05285416330590939,0.02286528666110505,45690.666666666664,10,5,10,10_1,10_3,10_0_1 +1225,2,60.0,3,0.0,9,112,2,45,45,5.0,0.0,0.0,969.0694308904046,0.0,2653.9829130648345,94541.16031599412,50,31,1,11557,201701225,,,840.0,,4.0,0.0,5.0,2.0,4.0,2.5,1272.1864306729951,0.0,720.0,1500.0,0.0,52818.0,1,1,1,140.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3623.052343955239,0.03832248654285138,0.06859503093557573,21127.2,5,3,5,5_1,5_1,5_0_0 +1226,2,27.0,4,0.0,7,111,6,0,85,1.0,0.0,0.0,985.2205880719114,141.54575536345783,0.0,15687.353380506958,0,50,7,11558,201701226,,,,,0.0,0.0,2.0,3.0,4.0,1.9,1147.689189308051,0.0,732.0,0.0,0.0,12870.0,0,6,1,45.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1126.7663434353692,0.07182641431635527,0.08754983243476062,6773.684210526316,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +1227,1,26.0,3,290.0,9,120,2,67,85,1.0,0.0,0.0,695.9147414800188,0.0,1296.8222084771319,15433.900315994117,71,60,2,11560,201701227,,,620.0,53.0,1.0,0.0,4.0,3.0,5.0,2.4,2563.4019113096383,1250.0,0.0,0.0,0.0,24153.0,4,6,3,76.0,0,1.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1992.7369499571507,0.12911428149448922,0.08250473854002198,10063.75,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1228,2,59.0,2,0.0,6,112,2,52,62,10.0,0.0,749.4802125642576,296.1045483276236,283.09151072691566,0.0,29904.54,60,50,1,11561,201701228,,,180.0,,2.0,3.0,6.0,0.0,2.0,1.5,2936.814307312101,0.0,220.0,0.0,0.0,61847.0,4,1,1,110.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1328.6762716187968,0.04443058718237421,0.021483277630585104,41231.333333333336,10,5,10,10_1,10_0,10_0_0 +1229,1,23.0,2,268.0,99,111,1,0,84,5.0,0.0,0.0,942.1508355878933,0.0,0.0,21066.660000000003,0,30,2,11562,201701229,,,,,0.0,0.0,1.0,0.0,1.0,1.0,5345.594608003195,0.0,700.0,0.0,0.0,19221.0,0,3,3,26.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,942.1508355878933,0.044722363943211364,0.04901674395650035,19221.0,5,3,5,5_0,5_4,5_0_0 +1230,2,63.0,3,0.0,7,300,2,77,77,4.0,0.0,0.0,2691.859530251124,56.61830214538313,0.0,42918.4,50,50,1,11563,201701230,,,700.0,,0.0,3.0,6.0,0.0,3.0,1.8,3338.055962485589,0.0,2000.0,0.0,0.0,31647.0,5,5,1,185.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2748.477832396507,0.0640396154655464,0.08684797397530594,17581.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1231,2,59.0,5,0.0,99,111,1,0,64,2.0,0.0,0.0,1655.4936111044412,0.0,0.0,20504.447913348675,0,50,2,11564,201701231,,,,623.0,1.0,1.0,5.0,2.0,3.0,1.8,717.8093887075388,0.0,1230.0,0.0,0.0,22180.0,0,1,3,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1655.4936111044412,0.08073826801387285,0.07463902665033549,12322.222222222223,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +1232,0,56.0,2,0.0,6,111,1,0,52,5.0,0.0,0.0,0.0,0.0,0.0,16378.551191295746,0,41,8,11566,201701232,,,,,1.0,0.0,5.0,0.0,1.0,1.0,1409.9343906510067,0.0,0.0,0.0,0.0,21142.0,0,1,5,85.0,6,4.0,1,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,21142.0,5,3,5,5_0,5_2,5_0_0 +1233,2,91.0,2,0.0,1,111,1,0,86,2.0,0.0,0.0,484.5347154452023,0.0,2653.9829130648345,11030.6,0,71,1,11568,201701233,,,97.0,,0.0,4.0,5.0,0.0,1.0,1.0,1416.1461923756146,0.0,360.0,1500.0,0.0,13300.0,0,5,1,60.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3138.517628510037,0.2845282784717093,0.23597876906090504,13300.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +1234,1,29.0,3,353.0,6,111,5,0,85,2.0,0.0,0.0,2390.371262862998,0.0,0.0,12072.82,0,50,1,11569,201701234,,,,,0.0,0.0,5.0,1.0,2.0,1.3,1071.7211177616423,0.0,1776.0,0.0,0.0,15136.0,0,7,3,94.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2390.371262862998,0.1979960989116874,0.15792621979803104,11643.076923076922,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +1235,2,48.0,2,0.0,8,120,5,52,65,4.0,0.0,693.9631597817199,767.1799661215703,212.31863304518674,0.0,26879.220000000005,50,71,1,11570,201701235,,,120.0,,2.0,0.0,4.0,1.0,3.0,2.0,2537.552458756815,0.0,570.0,0.0,0.0,33170.0,4,1,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1673.461758948477,0.06225856847588868,0.05045106297704181,16585.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1236,2,31.0,1,0.0,9,111,4,34,38,9.0,0.0,0.0,2893.7489950199583,0.0,0.0,40227.115699499554,20,12,1,11571,201701236,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1833.1791766678302,0.0,2150.0,0.0,0.0,55413.0,1,1,2,105.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2893.7489950199583,0.07193528406651233,0.052221482233771106,36942.0,9,5,9,9_1,9_3,9_0_0 +1237,2,50.0,3,0.0,2,112,5,69,64,5.0,0.0,555.170527825376,538.3719060502248,0.0,0.0,13909.350875301627,71,71,1,11572,201701237,,,270.0,,2.0,1.0,5.0,1.0,3.0,2.0,1787.9597701511657,0.0,400.0,0.0,0.0,39070.0,1,1,1,120.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1093.5424338756006,0.0786192284369911,0.027989312359242402,19535.0,5,3,5,5_1,5_0,5_0_1 +1238,2,81.0,2,0.0,3,221,2,78,75,5.0,0.0,0.0,452.2324010821888,0.0,1576.4658503605117,19905.600000000002,70,31,1,11574,201701238,,,270.0,,0.0,3.0,5.0,0.0,2.0,1.5,2647.669909313587,0.0,336.0,891.0,0.0,29578.0,5,5,1,90.0,1,1.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2028.6982514427004,0.10191595588390705,0.06858808071684024,19718.666666666668,5,3,5,5_1,5_1,5_0_1 +1239,2,63.0,2,0.0,7,111,2,74,74,8.0,0.0,0.0,2168.29285161728,46.0023704931238,0.0,35062.85297443442,71,60,1,11576,201701239,,,239.0,,0.0,0.0,5.0,0.0,2.0,1.5,2403.3461745348795,0.0,1611.0,0.0,0.0,44312.0,5,5,1,120.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2214.2952221104038,0.063152169155343,0.049970554750640994,29541.333333333332,8,4,8,8_1,8_2,8_0_0 +1240,2,73.0,1,0.0,2,221,2,72,72,7.0,0.0,0.0,1799.5080959728764,0.0,2949.4596773860526,22001.75087530163,50,71,1,11577,201701240,,,390.0,,0.0,1.0,4.0,0.0,2.0,1.5,1514.4278195403879,0.0,1337.0,1667.0,0.0,35639.0,5,5,1,91.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4748.967773358929,0.21584499344049696,0.13325199285498832,23759.333333333332,6,3,6,6_1,6_1,6_0_1 +1241,1,34.0,2,296.0,6,111,1,85,63,2.0,0.0,0.0,874.8543473316153,0.0,0.0,29997.859999999997,71,71,2,11578,201701241,,,,,1.0,0.0,5.0,4.0,6.0,2.9,3389.4257046691014,0.0,650.0,0.0,0.0,38612.0,6,1,3,93.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,874.8543473316153,0.029163891935345233,0.022657576590998013,13314.48275862069,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1242,2,75.0,3,0.0,1,112,5,0,71,1.0,0.0,0.0,928.6915379366377,0.0,0.0,7719.8,0,71,1,11579,201701242,,,120.0,,0.0,2.0,3.0,0.0,1.0,1.0,3206.6939563186825,0.0,690.0,0.0,0.0,9280.0,0,5,5,60.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,928.6915379366377,0.12029994791790431,0.10007451917420665,9280.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +1243,1,19.0,3,115.0,2,111,4,0,84,1.0,0.0,0.0,528.9503976943458,0.0,0.0,12179.06,0,42,2,11580,201701243,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3454.0293921443217,0.0,393.0,0.0,0.0,2580.0,0,3,3,16.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,528.9503976943458,0.04343113489007738,0.2050195339900565,2580.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1244,2,65.0,3,0.0,7,111,2,0,77,5.0,0.0,0.0,551.8312037014804,0.0,1132.3660429076626,14486.56,0,50,1,11582,201701244,,,,,0.0,3.0,5.0,0.0,1.0,1.0,844.8413496566989,0.0,410.0,640.0,0.0,20641.0,0,5,3,110.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1684.197246609143,0.11625929458816606,0.08159475057454305,20641.0,5,3,5,5_1,5_1,5_0_0 +1245,2,37.0,3,0.0,3,111,2,0,37,7.0,0.0,0.0,107.67438121004496,0.0,176.9321942043223,17438.63697444815,0,0,2,11584,201701245,,,,750.0,1.0,0.0,3.0,1.0,2.0,1.3,860.1898863744741,0.0,80.0,100.0,0.0,35060.0,0,1,3,60.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,284.6065754143672,0.016320459897834056,0.008117700382611729,26969.23076923077,7,4,7,7_0,7_3,7_0_1 +1246,2,58.0,1,0.0,4,112,5,54,21,9.0,0.0,693.9631597817199,1940.8307213110604,0.0,0.0,33612.04,30,50,1,11585,201701246,,,456.0,,2.0,3.0,6.0,0.0,2.0,1.5,1929.36970706069,0.0,1442.0,0.0,0.0,54672.0,1,1,1,120.0,9,2.0,3,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2634.7938810927803,0.0783883953813211,0.048192747312934964,36448.0,9,5,9,9_1,9_1,9_0_1 +1247,2,45.0,3,0.0,1,300,6,56,62,3.0,2062.392811880547,191.5338320997547,1211.3367886130059,212.31863304518674,0.0,31667.0171719182,50,50,1,11586,201701247,,,,,3.0,0.0,5.0,2.0,4.0,2.3,2513.147396171318,0.0,900.0,0.0,0.0,32188.0,1,1,1,110.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3677.5820656384944,0.11613288506691798,0.11425320198951455,13994.782608695654,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1248,0,43.0,2,0.0,1,111,4,0,56,1.0,0.0,0.0,2691.859530251124,0.0,0.0,42062.020000000004,0,71,2,11587,201701248,,,,,2.0,0.0,1.0,2.0,3.0,1.8,1875.5012005938186,0.0,2000.0,0.0,0.0,12350.0,0,1,5,25.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2691.859530251124,0.06399739076371329,0.2179643344332894,6861.111111111111,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +1249,2,49.0,3,0.0,5,111,1,33,43,8.0,0.0,0.0,484.5347154452023,0.0,212.31863304518674,41346.531414717254,20,41,2,11588,201701249,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2158.4889216022552,0.0,360.0,120.0,0.0,66933.0,1,1,2,79.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,696.8533484903891,0.016853973589725228,0.01041120745357879,29101.304347826088,8,4,8,8_0,8_4,8_0_0 +1250,2,72.0,1,0.0,6,112,4,77,74,10.0,0.0,555.170527825376,1722.7900993607193,0.0,0.0,69439.29999999999,50,20,1,11591,201701250,,,375.0,,0.0,1.0,3.0,0.0,2.0,1.5,4487.341508954506,0.0,1280.0,0.0,0.0,79469.0,5,5,1,90.0,7,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2277.9606271860953,0.0328050632305639,0.028664770252376338,52979.333333333336,10,5,10,10_1,10_1,10_0_0 +1251,2,81.0,1,0.0,6,111,4,74,74,10.0,0.0,0.0,3029.68790129764,0.0,171.6242283781926,27351.4,41,41,1,11592,201701251,,,,,0.0,1.0,7.0,0.0,2.0,1.5,1692.2476315017639,0.0,2251.0,97.0,0.0,75637.0,5,5,5,127.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3201.3121296758327,0.1170438123706952,0.04232468407890097,50424.666666666664,10,5,10,10_1,10_3,10_0_0 +1252,1,35.0,5,200.0,1,112,2,85,62,2.0,1586.456009138882,0.0,2961.045483276236,63.69558991355603,0.0,24724.1,71,50,1,11593,201701252,,,400.0,,1.0,0.0,3.0,2.0,4.0,2.1,2720.857066897835,0.0,2200.0,0.0,0.0,24420.0,6,1,3,82.0,8,1.0,4,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,4611.197082328675,0.18650616533377049,0.18882870935006857,11628.571428571428,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +1253,2,36.0,3,0.0,9,300,4,52,69,5.0,0.0,0.0,2074.077768058491,159.23897478389006,0.0,43597.10031599411,31,60,1,11594,201701253,,,336.0,,2.0,0.0,5.0,2.0,4.0,2.1,2527.712846680545,0.0,1541.0,0.0,0.0,39700.0,1,1,2,95.0,0,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2233.3167428423812,0.05122626795486815,0.05625482979451842,18904.761904761905,5,3,5,5_1,5_1,5_0_0 +1254,2,48.0,2,0.0,1,111,2,0,35,7.0,0.0,0.0,296.1045483276236,0.0,1118.211467371317,23571.58,0,20,2,11595,201701254,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2339.8975736798557,0.0,220.0,632.0,0.0,27050.0,0,1,2,56.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1414.3160156989406,0.060000900054172884,0.05228525011826028,27050.0,7,4,7,7_0,7_3,7_1_0 +1255,2,66.0,1,0.0,6,112,5,45,33,8.0,0.0,1179.737371628924,1566.6622466061542,0.0,0.0,72430.38,60,41,1,11596,201701255,,,744.0,,2.0,9.0,7.0,0.0,2.0,1.5,1429.230810409325,0.0,1164.0,0.0,0.0,42746.0,1,5,1,90.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2746.3996182350784,0.03791778557885625,0.06424927755193652,28497.333333333332,8,4,8,8_1,8_0,8_0_0 +1256,1,25.0,4,79.0,1,111,4,55,46,5.0,0.0,0.0,1873.5342330547821,123.8525359430256,0.0,18615.21987708049,60,50,1,11599,201701256,,,,,2.0,0.0,4.0,0.0,2.0,1.5,823.735993158461,0.0,1392.0,0.0,0.0,29690.0,4,1,3,82.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1997.3867689978078,0.10729858589836153,0.06727473118887868,19793.333333333332,5,3,5,5_1,5_2,5_1_0 +1257,2,60.0,3,0.0,5,120,2,71,71,6.0,2221.038412794435,0.0,928.6915379366377,212.31863304518674,0.0,61742.895699499546,70,50,1,116,201701257,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,1796.199623065384,0.0,690.0,0.0,0.0,39610.0,5,5,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3362.0485837762594,0.05445239562684635,0.08487878272598484,26406.666666666668,7,4,7,7_1,7_0,7_0_0 +1258,2,54.0,2,0.0,9,112,2,0,43,8.0,0.0,0.0,306.2024862512083,0.0,570.6017717299379,24837.06,0,33,1,1160,201701258,,,200.0,474.0,1.0,2.0,4.0,0.0,1.0,1.0,1385.6580436539036,550.0,0.0,0.0,0.0,28892.0,0,1,3,85.0,8,2.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,876.8042579811463,0.03530225630493892,0.03034764841413354,28892.0,8,4,8,8_1,8_1,8_0_0 +1259,2,70.0,3,0.0,2,111,1,0,31,10.0,0.0,0.0,605.6683943065029,0.0,0.0,24012.92,0,12,2,11600,201701259,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2361.713695064919,0.0,450.0,0.0,0.0,55200.0,0,1,1,80.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,605.6683943065029,0.025222604927118527,0.010972253520045343,55200.0,10,5,10,10_0,10_4,10_0_1 +1260,2,57.0,1,0.0,5,112,2,43,34,10.0,0.0,555.170527825376,2506.1490071610797,0.0,253.37101472390674,43298.040114473304,33,30,1,11601,201701260,,,355.0,,2.0,3.0,7.0,0.0,3.0,2.0,3111.6618299499355,244.22296775500388,1761.0,0.0,0.0,111491.0,1,1,1,120.0,9,2.0,5,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3314.690549710362,0.07655520991127622,0.0297305661417546,55745.5,10,5,10,10_1,10_1,10_0_0 +1261,2,65.0,2,0.0,6,112,4,37,37,10.0,0.0,0.0,5383.719060502248,0.0,0.0,62369.94000000002,41,10,1,11602,201701261,,,600.0,,2.0,2.0,7.0,0.0,2.0,1.5,1931.852077534972,0.0,4000.0,0.0,0.0,109895.0,1,1,1,175.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5383.719060502248,0.08631913162818894,0.04898966341054869,73263.33333333333,10,5,10,10_1,10_0,10_0_0 +1262,2,75.0,1,0.0,4,111,2,75,75,10.0,1367.5250798777165,0.0,1483.0323806378487,88.46609710216114,1068.1158396595254,71945.86724759144,50,50,1,11606,201701262,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2237.0268744427317,1029.551152692147,676.0,0.0,0.0,58589.0,5,5,1,99.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4007.139397277252,0.05569658898526101,0.06839405685840776,39059.333333333336,9,5,9,9_1,9_3,9_0_1 +1263,2,88.0,3,0.0,5,111,1,0,74,9.0,0.0,0.0,807.5578590753372,0.0,0.0,15939.779999999999,0,70,2,11607,201701263,,,,379.0,0.0,0.0,1.0,0.0,1.0,1.0,2878.7879201349283,0.0,600.0,0.0,0.0,32536.0,0,5,3,30.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,807.5578590753372,0.05066304924379993,0.024820440714142404,32536.0,9,5,9,9_0,9_3,9_0_0 +1264,2,30.0,2,0.0,2,111,6,47,47,10.0,0.0,0.0,131.90111698230507,0.0,0.0,68117.83051738789,30,20,2,11608,201701264,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4128.713037494104,0.0,98.0,0.0,0.0,59075.0,1,1,2,70.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,131.90111698230507,0.0019363669685374923,0.0022327738803606446,39383.333333333336,9,5,9,9_0,9_3,9_0_1 +1265,0,49.0,3,0.0,7,112,2,0,63,4.0,0.0,0.0,1120.200071316671,0.0,281.62870996142203,27088.36,0,31,1,11609,201701265,,,160.0,,1.0,1.0,2.0,0.0,1.0,1.0,1528.295508119337,271.4604092608624,720.0,0.0,0.0,17193.0,0,1,5,65.0,10,3.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1401.8287812780932,0.051750227081967796,0.08153485612040326,17193.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1266,1,45.0,3,319.0,4,111,1,0,46,1.0,0.0,0.0,207.1042270644536,0.0,385.93428924279436,12758.880000000001,0,71,2,11610,201701266,,,380.0,,1.0,0.0,3.0,1.0,2.0,1.3,1151.3148679439364,372.0,0.0,0.0,0.0,11768.0,0,4,3,64.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,593.038516307248,0.04648045254028942,0.05039416352033038,9052.307692307691,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1267,2,57.0,4,0.0,9,112,2,54,74,10.0,0.0,0.0,34.99417389326461,0.0,102.62067263850693,50712.66000000001,44,60,1,11612,201701267,,,309.0,817.0,1.0,1.0,5.0,0.0,2.0,1.5,1649.3349544705993,0.0,26.0,58.0,0.0,62939.0,1,5,3,130.0,9,3.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,137.61484653177155,0.0027136191738270387,0.002186479711018153,41959.333333333336,10,5,10,10_1,10_1,10_0_0 +1268,1,51.0,4,195.0,8,111,2,63,63,4.0,0.0,0.0,484.5347154452023,0.0,1380.0711147937138,23029.999999999996,71,71,2,11614,201701268,,,,270.0,3.0,2.0,4.0,2.0,4.0,2.3,2100.2960658888633,0.0,360.0,780.0,0.0,40823.0,4,1,3,90.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1864.605830238916,0.08096421321054782,0.045675374917054506,17749.13043478261,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +1269,2,63.0,4,0.0,1,111,2,0,78,3.0,0.0,0.0,543.755625110727,0.0,1539.310089577604,16578.980000000003,0,50,1,11615,201701269,,,156.0,,0.0,1.0,4.0,0.0,1.0,1.0,1517.081510626551,0.0,404.0,870.0,0.0,16020.0,0,5,2,100.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2083.065714688331,0.12564498628313264,0.13002907082948384,16020.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +1270,2,64.0,2,0.0,6,112,2,75,75,10.0,0.0,0.0,60.56683943065029,0.0,53.079658261296686,50526.381750603265,50,50,1,11616,201701270,,,352.0,,0.0,2.0,4.0,0.0,2.0,1.5,1299.8286166222153,0.0,45.0,30.0,0.0,71719.0,5,5,1,120.0,9,3.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,113.64649769194698,0.0022492506637998093,0.0015846079517554202,47812.666666666664,10,5,10,10_1,10_1,10_0_0 +1271,2,63.0,3,0.0,7,111,2,78,52,5.0,0.0,0.0,942.1508355878933,0.0,1061.5931652259337,21961.710875301633,71,71,1,11617,201701271,,,323.0,500.0,2.0,2.0,4.0,0.0,3.0,2.0,5073.780078298813,0.0,700.0,600.0,0.0,37850.0,5,1,3,84.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2003.744000813827,0.0912380648388946,0.05293907531872726,18925.0,5,3,5,5_1,5_3,5_0_0 +1272,2,57.0,2,0.0,1,111,2,0,46,6.0,0.0,0.0,1076.7438121004495,0.0,1946.2541362475451,67370.22,0,50,1,11618,201701272,,,250.0,,2.0,1.0,5.0,1.0,2.0,1.5,2061.1419723766744,0.0,800.0,1100.0,0.0,34084.0,0,1,1,150.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3022.9979483479947,0.044871427588450724,0.08869258151472816,22722.666666666668,6,3,6,6_1,6_3,6_1_0 +1273,2,40.0,2,0.0,5,111,2,52,52,6.0,285.5620816449988,0.0,1006.7554643139204,0.0,1898.4824438123783,60321.340000000004,31,44,1,1162,201701273,,,360.0,,2.0,0.0,6.0,2.0,4.0,2.1,1713.4104563738465,0.0,748.0,1073.0,0.0,44567.0,1,1,2,100.0,9,7.0,4,3,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3190.7999897712975,0.052896702721976954,0.07159557497186926,21222.38095238095,6,3,6,6_1,6_3,6_0_0 +1274,2,61.0,1,0.0,6,111,2,52,33,10.0,0.0,0.0,1608.4256622459466,0.0,298.53902244209047,83771.64011672512,71,71,2,11620,201701274,,,,693.0,2.0,1.0,4.0,0.0,2.0,1.5,2797.892121914022,287.76016913747486,1076.0,0.0,0.0,86926.0,1,1,3,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1906.964684688037,0.022763845640731452,0.021937794039620335,57950.666666666664,10,5,10,10_0,10_4,10_0_0 +1275,2,33.0,3,0.0,6,111,1,52,64,7.0,0.0,0.0,613.7439728972563,0.0,0.0,23397.18,50,31,8,11621,201701275,,,,,2.0,0.0,1.0,1.0,3.0,1.8,2945.9358710515417,0.0,456.0,0.0,0.0,42166.0,1,1,1,33.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,613.7439728972563,0.026231536146546563,0.01455542315840384,23425.555555555555,6,3,6,6_0,6_4,6_0_0 +1276,2,46.0,2,0.0,8,221,2,52,38,6.0,0.0,0.0,1178.5159980589806,0.0,1809.6393131518091,46580.84,43,20,1,11622,201701276,,,620.0,,2.0,0.0,6.0,3.0,5.0,2.8,1979.9385090674705,678.4016871916544,595.0,625.0,0.0,60715.0,1,1,1,145.0,1,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2988.1553112107895,0.06414988032012282,0.049216096701157695,21683.928571428572,6,3,6,6_1,6_1,6_0_0 +1277,2,28.0,3,0.0,4,111,1,21,34,10.0,0.0,0.0,336.4824412813905,0.0,0.0,40209.86,42,10,2,11625,201701277,,,,900.0,2.0,0.0,2.0,0.0,2.0,1.5,5370.3254889634445,0.0,250.0,0.0,0.0,64100.0,1,1,3,56.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,336.4824412813905,0.008368157493743835,0.005249336057431989,42733.333333333336,10,5,10,10_0,10_4,10_0_1 +1278,2,60.0,2,0.0,6,112,4,64,56,8.0,0.0,0.0,2220.7841124571773,0.0,0.0,43554.59999999999,71,70,1,11626,201701278,,,127.0,,2.0,3.0,6.0,0.0,2.0,1.5,2478.517823404605,0.0,1650.0,0.0,0.0,42157.0,1,1,2,160.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2220.7841124571773,0.05098850896247877,0.0526788934804938,28104.666666666668,8,4,8,8_1,8_0,8_0_0 +1279,2,57.0,3,0.0,1,111,2,52,65,5.0,0.0,0.0,740.261370819059,0.0,831.5813127603147,33704.41665845403,50,50,2,11627,201701279,,,,970.0,2.0,1.0,3.0,1.0,3.0,2.0,719.3816024778398,0.0,550.0,470.0,0.0,41073.0,1,1,3,75.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1571.842683579374,0.04663610409008847,0.038269488071954176,20536.5,5,3,5,5_0,5_3,5_1_0 +1280,2,31.0,3,0.0,4,111,2,55,55,4.0,0.0,0.0,1305.5518721717951,0.0,2017.027013929274,22120.43130526406,41,50,2,11628,201701280,,,,414.0,2.0,0.0,4.0,0.0,2.0,1.5,1966.7234457441118,0.0,970.0,1140.0,0.0,26463.0,4,4,3,70.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3322.578886101069,0.1502040733405766,0.12555563942489775,17642.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +1281,2,71.0,1,0.0,5,111,1,77,75,7.0,0.0,0.0,1319.0111698230507,0.0,0.0,24484.232027330716,50,50,2,11629,201701281,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2829.072757357721,0.0,980.0,0.0,0.0,37923.0,5,5,1,60.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1319.0111698230507,0.05387186203556208,0.03478129815212538,25282.0,7,4,7,7_0,7_2,7_0_0 +1282,2,77.0,3,0.0,1,211,2,0,77,3.0,0.0,0.0,458.9620499078166,53.079658261296686,3641.264556724953,17658.76,0,70,1,1163,201701282,,,293.0,,0.0,1.0,4.0,0.0,1.0,1.0,4146.550490511735,0.0,341.0,2058.0,0.0,15010.0,0,5,1,116.0,1,3.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4153.306264894066,0.2351980696772631,0.27670261591566064,15010.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +1283,2,78.0,1,0.0,4,111,1,0,74,9.0,0.0,0.0,1389.556134572314,0.0,658.1623981792485,35207.183773183606,0,70,2,11630,201701283,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3286.5180190192964,634.3992201445772,770.0,0.0,0.0,34696.0,0,5,5,68.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2047.7185327515626,0.05816195200228586,0.059018864789934365,34696.0,9,5,9,9_0,9_4,9_0_1 +1284,1,44.0,3,400.0,4,112,2,85,65,3.0,0.0,0.0,646.0462872602698,0.0,1769.3219420432229,18898.839999999997,50,50,2,11631,201701284,,,,250.0,1.0,0.0,4.0,2.0,4.0,2.3,4745.999149079469,0.0,480.0,1000.0,0.0,32510.0,7,4,3,150.0,8,0.0,4,4,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,2415.3682293034926,0.12780510493255104,0.07429616208254361,14134.782608695654,3,2,3_1,3_0_1,3_0_1,3_0_1_1 +1285,2,32.0,4,0.0,9,300,2,55,63,3.0,0.0,0.0,726.8020731678034,0.0,0.0,36927.03087530163,71,50,1,11633,201701285,,,241.0,,2.0,0.0,4.0,2.0,4.0,2.1,2771.1348980402895,0.0,540.0,0.0,0.0,32917.0,1,1,2,95.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,726.8020731678034,0.01968211513192412,0.022079839389002747,15674.761904761905,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1286,1,41.0,2,300.0,9,111,4,0,56,1.0,0.0,0.0,1345.929765125562,0.0,0.0,55625.17999999999,0,42,1,11634,201701286,,,390.0,,1.0,0.0,4.0,2.0,3.0,1.8,460.4067713299777,0.0,1000.0,0.0,0.0,12208.0,0,1,3,87.0,8,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1345.929765125562,0.024196411861059364,0.11024981693361419,6782.222222222222,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +1287,2,68.0,3,0.0,5,111,6,0,78,5.0,793.228004569441,0.0,551.8312037014804,69.0035557396857,0.0,12657.461750603255,0,70,1,11635,201701287,,,190.0,,1.0,2.0,5.0,1.0,2.0,1.5,1212.974100592212,0.0,410.0,0.0,0.0,27070.0,0,6,1,88.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1414.062764010607,0.11171771970341626,0.0522372650170154,18046.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +1288,2,72.0,2,0.0,4,221,2,71,71,3.0,0.0,0.0,1518.2087750616338,0.0,3184.779495677801,39362.420315994124,50,50,1,11636,201701288,,,180.0,,0.0,2.0,5.0,0.0,2.0,1.5,2273.467199015603,0.0,1128.0,1800.0,0.0,23550.0,5,5,1,120.0,1,2.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4702.988270739435,0.11947914363458162,0.19970226202715224,15700.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +1289,2,31.0,2,0.0,99,111,2,0,47,5.0,0.0,0.0,484.5347154452023,0.0,4034.054027858548,15603.519999999999,0,31,2,11637,201701289,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2832.489580700536,0.0,360.0,2280.0,0.0,21960.0,0,1,3,46.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,4518.588743303751,0.28958778168668037,0.20576451472239302,21960.0,6,3,6,6_0,6_3,6_0_0 +1290,2,69.0,2,0.0,4,111,4,0,75,6.0,0.0,0.0,3236.9610851269763,0.0,0.0,52072.436722052924,0,60,1,11638,201701290,,,167.0,,0.0,0.0,5.0,0.0,1.0,1.0,2561.969080604218,0.0,2405.0,0.0,0.0,25490.0,0,5,1,100.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3236.9610851269763,0.062162658191029264,0.12698945018152125,25490.0,7,4,7,7_1,7_4,7_0_1 +1291,2,54.0,2,0.0,8,111,2,0,31,9.0,0.0,0.0,764.4881065913191,0.0,1680.8558449410618,60631.062169127596,0,10,1,11639,201701291,,,339.0,,1.0,1.0,7.0,2.0,3.0,2.0,1052.2429738945016,0.0,568.0,950.0,0.0,69482.0,0,1,2,145.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2445.3439515323807,0.040331537400931636,0.035193920030114,34741.0,9,5,9,9_1,9_3,9_0_0 +1293,2,54.0,3,0.0,6,112,3,0,21,1.0,0.0,0.0,740.261370819059,58.38762408742635,0.0,30136.3,0,60,1,11641,201701293,,,336.0,,1.0,2.0,5.0,0.0,1.0,1.0,2379.8488268610527,0.0,550.0,0.0,0.0,9740.0,0,1,1,105.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,798.6489949064854,0.026501229245344832,0.08199681672551185,9740.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1294,1,45.0,4,379.0,2,111,2,0,52,3.0,0.0,0.0,336.4824412813905,0.0,477.7169243516702,7534.746296616574,0,43,2,11642,201701294,,,,39.0,1.0,0.0,2.0,1.0,2.0,1.3,2463.919412108091,0.0,250.0,270.0,0.0,17808.0,0,1,3,50.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,814.1993656330607,0.10805929404665839,0.04572098863617816,13698.461538461537,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1295,1,37.0,2,210.0,5,221,2,55,67,7.0,0.0,0.0,2387.679403332747,176.9321942043223,0.0,27877.879999999997,31,41,1,11643,201701295,,,462.0,,2.0,0.0,5.0,2.0,4.0,2.1,2541.091122247045,0.0,1774.0,0.0,0.0,51170.0,4,1,2,103.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2564.6115975370694,0.09199449877598546,0.05011943712208461,24366.666666666664,7,4,7,7_1,7_1,7_0_0 +1296,2,31.0,3,0.0,5,112,2,43,55,8.0,1332.6230476766611,458.01568545593517,497.99401309645793,0.0,0.0,36176.18,44,43,1,11644,201701296,,,406.0,,2.0,0.0,6.0,1.0,3.0,1.8,1895.8017069192085,0.0,370.0,0.0,0.0,46581.0,1,1,2,136.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2288.632746229054,0.06326352716702134,0.04913232318389588,25878.333333333332,7,4,7,7_1,7_0,7_0_0 +1297,0,20.0,3,0.0,1,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,12508.76,0,42,2,11647,201701297,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3932.1660387602533,0.0,0.0,0.0,0.0,4848.0,0,3,5,20.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,4848.0,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +1298,1,67.0,5,306.0,99,111,1,85,78,1.0,0.0,0.0,433.38938437043095,0.0,247.7050718860512,10009.751191295747,71,71,2,1165,201701298,,,,25.0,0.0,5.0,4.0,0.0,2.0,1.5,2628.9387770421176,0.0,322.0,140.0,0.0,14882.0,6,5,3,80.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,681.0944562564821,0.06804309550158913,0.045766325511119615,9921.333333333334,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1299,2,53.0,1,0.0,9,112,5,45,52,8.0,0.0,0.0,1648.3955008132546,0.0,912.2658845359005,30878.876615861594,43,42,1,11650,201701299,,,236.0,,2.0,2.0,5.0,1.0,3.0,2.0,1800.1548913277784,879.3282133940139,861.0,0.0,0.0,55365.0,1,1,2,120.0,9,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2560.661385349155,0.08292598908970077,0.04625054430324492,27682.5,8,4,8,8_1,8_1,8_0_0 +1300,1,34.0,3,385.0,7,111,1,0,43,4.0,0.0,0.0,188.43016711757866,0.0,0.0,22911.891191295745,0,30,2,11651,201701300,,,,80.0,1.0,0.0,3.0,1.0,2.0,1.3,1516.023355172325,0.0,140.0,0.0,0.0,22400.0,0,1,3,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,188.43016711757866,0.008224121070772347,0.008412061032034762,17230.76923076923,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +1301,2,40.0,2,0.0,4,111,2,33,38,10.0,0.0,555.170527825376,821.0171567265928,0.0,1441.9973827652266,52260.2,20,12,1,11652,201701301,,,320.0,,2.0,0.0,6.0,1.0,3.0,1.8,660.2997874227246,0.0,610.0,815.0,0.0,79310.0,1,1,2,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2818.1850673171953,0.053926029125743784,0.035533792300052894,44061.11111111111,10,5,10,10_1,10_3,10_0_1 +1302,1,29.0,2,373.0,2,111,1,0,56,4.0,0.0,0.0,403.7789295376686,0.0,619.262679715128,11245.679999999998,0,71,2,11654,201701302,350.0,350.0,200.0,,1.0,0.0,3.0,1.0,2.0,1.3,1234.4585658433705,0.0,300.0,350.0,0.0,23060.0,0,1,3,72.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1023.0416092527967,0.09097196516820653,0.044364336914691965,17738.46153846154,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +1303,2,37.0,3,0.0,6,112,5,54,47,7.0,0.0,555.170527825376,1615.1157181506744,0.0,0.0,39867.669322168425,31,43,1,11655,201701303,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.1,2855.1908741972225,0.0,1200.0,0.0,0.0,53220.0,1,1,2,110.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2170.2862459760504,0.05443724910122254,0.04077952359970031,25342.85714285714,7,4,7,7_1,7_0,7_0_0 +1304,2,47.0,4,0.0,9,111,4,55,38,6.0,0.0,0.0,2557.266553738568,0.0,0.0,63765.86784974978,50,31,2,11658,201701304,,,460.0,650.0,2.0,2.0,2.0,0.0,2.0,1.5,1929.8247045342537,0.0,1900.0,0.0,0.0,33646.0,1,1,3,36.0,7,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2557.266553738568,0.04010400297168703,0.07600506906433359,22430.666666666668,6,3,6,6_0,6_2,6_0_0 +1305,2,52.0,4,0.0,1,120,2,56,67,1.0,0.0,0.0,2713.394406493133,212.31863304518674,0.0,13522.030875301627,50,50,1,11660,201701305,,,172.0,,2.0,0.0,5.0,1.0,3.0,2.0,2185.5392924098546,0.0,2016.0,0.0,0.0,15040.0,4,1,1,100.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2925.7130395383197,0.21636639248341147,0.19452879252249466,7520.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +1306,2,39.0,1,0.0,9,120,6,37,37,9.0,0.0,152.6718951519784,2433.441015347016,0.0,0.0,54109.96,12,20,1,11661,201701306,,,233.0,,2.0,0.0,5.0,2.0,4.0,2.1,2990.0942061520063,0.0,1808.0,0.0,0.0,73429.0,1,1,1,110.0,0,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2586.1129104989946,0.04779365777574026,0.03521923096459157,34966.19047619047,9,5,9,9_1,9_1,9_0_0 +1307,2,87.0,3,0.0,1,300,4,86,77,4.0,496.56073086047013,0.0,2312.3073364857155,155.70033089980362,0.0,28171.951191295746,71,70,1,11662,201701307,,,350.0,,0.0,6.0,7.0,0.0,2.0,1.5,2667.7693072515835,0.0,1718.0,0.0,0.0,24703.0,5,5,1,150.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2964.5683982459896,0.10523120596495811,0.12000843615131723,16468.666666666668,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1308,2,72.0,3,0.0,1,120,6,71,71,4.0,0.0,693.9631597817199,0.0,265.39829130648343,0.0,16881.440000000002,70,70,1,11665,201701308,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1266.2600470410312,0.0,0.0,0.0,0.0,26872.0,5,5,1,79.0,0,1.0,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,959.3614510882034,0.056829361185313766,0.03570115551831659,17914.666666666668,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +1309,1,34.0,3,410.0,9,300,4,56,67,5.0,0.0,0.0,2153.487624200899,530.7965826129669,0.0,14813.090875301627,50,43,1,11666,201701309,,,180.0,30.0,2.0,0.0,4.0,2.0,4.0,2.1,672.5127226420707,0.0,1600.0,0.0,0.0,38600.0,1,1,3,77.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2684.284206813866,0.18121027065927645,0.06954104162730224,18380.95238095238,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +1310,1,44.0,5,40.0,1,111,1,85,68,2.0,0.0,0.0,53.83719060502248,0.0,707.7287768172891,17950.800000000003,71,71,2,11667,201701310,,,,216.0,1.0,0.0,3.0,3.0,5.0,2.6,1393.1363921017878,0.0,40.0,400.0,0.0,28345.0,4,1,3,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,761.5659674223116,0.04242518257806401,0.02686773566492544,10901.923076923076,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +1311,2,51.0,2,0.0,4,112,2,78,45,7.0,0.0,0.0,2079.4614871189933,3391.0647409006206,0.0,30855.186322376296,70,41,1,11671,201701311,,,282.0,,1.0,2.0,4.0,1.0,3.0,1.8,2212.0803918020706,0.0,1545.0,0.0,0.0,46035.0,5,1,2,100.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5470.526228019614,0.1772968139250019,0.11883406599369206,25575.0,7,4,7,7_1,7_0,7_0_1 +1312,2,45.0,2,0.0,4,112,2,22,46,10.0,0.0,0.0,1188.4559826058712,0.0,3485.564225825149,56716.34,41,41,1,11672,201701312,,,250.0,,2.0,0.0,5.0,2.0,4.0,2.5,2043.6192897805,0.0,883.0,1970.0,0.0,118344.0,1,1,1,200.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4674.02020843102,0.08241046951250769,0.03949520219386721,47337.6,10,5,10,10_1,10_1,10_0_1 +1313,2,45.0,2,0.0,2,300,5,55,67,4.0,0.0,1332.4092667809023,2208.670744571047,0.0,0.0,48245.28,42,50,1,11673,201701313,,,316.0,,2.0,0.0,5.0,2.0,4.0,2.5,2098.3339049531696,0.0,1641.0,0.0,0.0,42747.0,1,1,1,150.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3541.0800113519495,0.07339743932156574,0.08283809416688773,17098.8,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +1314,2,70.0,3,0.0,6,112,5,71,71,3.0,0.0,0.0,0.0,230.01185246561897,0.0,15671.14,71,71,1,11675,201701314,,,210.0,,0.0,3.0,5.0,0.0,2.0,1.5,1604.9449981973487,0.0,0.0,0.0,0.0,22884.0,5,5,1,90.0,7,0.0,3,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,230.01185246561897,0.0146774167332829,0.010051208375529582,15256.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1315,1,79.0,2,110.0,1,111,4,0,78,2.0,0.0,0.0,666.2352337371532,0.0,265.39829130648343,7734.659999999999,0,70,1,11677,201701315,,,230.0,,0.0,3.0,3.0,0.0,1.0,1.0,2362.0671523870087,0.0,495.0,150.0,0.0,11524.0,0,5,3,40.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,931.6335250436366,0.12044918911026946,0.08084289526584837,11524.0,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +1316,2,73.0,1,0.0,1,112,2,75,74,9.0,1304.066839512161,0.0,1324.0216495047212,53.079658261296686,1514.2036873143493,39114.80802719366,31,20,1,11678,201701316,,,178.0,,0.0,2.0,6.0,0.0,2.0,1.5,1710.5031415760288,1459.5328463456938,380.0,0.0,0.0,52543.0,5,5,5,120.0,4,0.0,3,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4195.371834592528,0.10725789147874107,0.079846446426594,35028.666666666664,9,5,9,9_1,9_0,9_1_0 +1317,2,70.0,4,0.0,1,112,4,0,75,3.0,0.0,0.0,90.17729426341265,0.0,0.0,13945.619999999999,0,50,1,11679,201701317,,,17.0,,0.0,0.0,2.0,0.0,1.0,1.0,2679.326692223657,0.0,67.0,0.0,0.0,14890.0,0,5,3,50.0,9,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,90.17729426341265,0.006466352465032939,0.006056231985454174,14890.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1318,2,56.0,4,0.0,1,111,2,74,38,10.0,0.0,0.0,1345.929765125562,0.0,2477.050718860512,66971.42687367964,30,30,1,1168,201701318,,,585.0,,1.0,1.0,5.0,0.0,2.0,1.5,1830.5084367534585,0.0,1000.0,1400.0,0.0,88554.0,5,1,1,140.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3822.980483986074,0.05708375440763588,0.04317117785742117,59036.0,10,5,10,10_1,10_3,10_1_0 +1319,1,46.0,2,519.0,99,111,1,85,21,1.0,0.0,0.0,301.4882673881259,0.0,732.4992840058943,22235.18,71,41,2,11680,201701319,,,660.0,,1.0,0.0,5.0,4.0,6.0,2.9,1603.6119983227436,0.0,224.0,414.0,0.0,24958.0,6,1,3,80.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1033.98755139402,0.04650232430742724,0.041429102948714644,8606.206896551725,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1320,2,59.0,2,0.0,1,211,5,56,69,3.0,0.0,0.0,2516.888660784801,0.0,0.0,22489.6,50,71,1,11682,201701320,,,183.0,,2.0,2.0,5.0,0.0,2.0,1.5,2930.900547316473,0.0,1870.0,0.0,0.0,22480.0,1,1,1,90.0,1,3.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2516.888660784801,0.11191344713933556,0.11196123935875449,14986.666666666666,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +1321,2,69.0,1,0.0,2,211,2,74,74,7.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,17968.559999999998,71,50,1,11683,201701321,,,300.0,,0.0,3.0,5.0,0.0,2.0,1.5,1161.2510157849806,1000.0,0.0,0.0,0.0,38449.0,5,5,1,105.0,3,3.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1594.1895599657205,0.08872105277026766,0.04146244531628184,25632.666666666668,7,4,7,7_1,7_1,7_0_1 +1322,2,57.0,3,0.0,1,120,2,69,13,5.0,0.0,0.0,1345.929765125562,123.8525359430256,0.0,22859.72051346417,71,50,1,11684,201701322,,,,,2.0,3.0,6.0,0.0,2.0,1.5,1572.038559295607,0.0,1000.0,0.0,0.0,28829.0,1,1,1,120.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1469.7823010685875,0.06429572488442713,0.05098277085811466,19219.333333333332,5,3,5,5_1,5_0,5_1_0 +1323,2,48.0,3,0.0,99,111,1,0,54,4.0,0.0,0.0,524.9126083989692,0.0,486.5635340618863,22998.099999999995,0,50,2,11685,201701323,,,,390.0,1.0,0.0,4.0,2.0,3.0,1.8,1114.0314709965,0.0,390.0,275.0,0.0,28953.0,0,1,3,67.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1011.4761424608555,0.04398085678646739,0.0349351066369929,16085.0,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +1324,2,45.0,2,0.0,5,112,4,0,62,4.0,0.0,0.0,1332.4704674743064,0.0,0.0,16766.760000000002,0,41,1,11687,201701324,,,140.0,,1.0,0.0,1.0,0.0,1.0,1.0,2285.096890856492,0.0,990.0,0.0,0.0,18601.0,0,1,3,35.0,8,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1332.4704674743064,0.07947095726749272,0.07163434586712039,18601.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1325,2,64.0,3,0.0,5,112,2,77,78,3.0,0.0,0.0,403.7789295376686,0.0,566.1830214538313,16564.43087530163,50,71,2,11688,201701325,,,360.0,384.0,0.0,1.0,3.0,0.0,2.0,1.5,2598.069285673522,0.0,300.0,320.0,0.0,21860.0,5,5,3,65.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,969.9619509914999,0.058556913804854,0.044371543961184805,14573.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +1326,2,42.0,3,0.0,7,111,2,43,37,9.0,0.0,0.0,2298.8480388344597,0.0,2300.11852465619,45935.42,20,30,1,1169,201701326,,,564.0,,2.0,3.0,9.0,2.0,4.0,2.1,1064.2988743582061,0.0,1708.0,1300.0,0.0,68587.0,1,1,2,230.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4598.96656349065,0.10011809108288658,0.06705303575736873,32660.47619047619,9,5,9,9_1,9_3,9_0_0 +1327,2,65.0,3,0.0,6,111,2,74,22,10.0,0.0,0.0,1615.1157181506744,0.0,439.49957040353655,85218.94,41,41,2,11690,201701327,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1698.1405654081675,0.0,1200.0,248.39999999999998,0.0,63387.0,5,1,1,97.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2054.615288554211,0.024109843287820888,0.03241382757591006,42258.0,10,5,10,10_0,10_4,10_0_0 +1328,1,48.0,4,233.0,99,111,1,0,55,4.0,0.0,0.0,565.290501352736,0.0,0.0,14071.311191295747,0,50,2,11691,201701328,,,,134.0,2.0,0.0,3.0,2.0,3.0,1.8,2820.3172646487037,0.0,420.0,0.0,0.0,30298.0,0,1,3,100.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,565.290501352736,0.04017326414488042,0.01865768372013783,16832.222222222223,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +1329,2,50.0,4,0.0,4,111,1,52,37,9.0,0.0,0.0,899.0810831038754,0.0,0.0,18102.7,50,31,2,11692,201701329,,,,535.0,2.0,2.0,4.0,0.0,2.0,1.5,2443.2280552280513,0.0,668.0,0.0,0.0,57265.0,1,1,3,70.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,899.0810831038754,0.049665579339207705,0.01570035943602332,38176.666666666664,9,5,9,9_0,9_4,9_0_1 +1330,1,59.0,3,239.0,4,111,1,0,85,2.0,0.0,0.0,403.7789295376686,0.0,0.0,17369.24,0,50,2,11693,201701330,,,,11.0,1.0,1.0,3.0,1.0,2.0,1.5,1699.3613965493296,0.0,300.0,0.0,0.0,17878.0,0,7,3,60.0,7,5.0,2,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,403.7789295376686,0.02324678164028297,0.02258524049321337,11918.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1331,2,45.0,1,0.0,9,300,4,46,34,5.0,0.0,0.0,1480.522741638118,46.0023704931238,0.0,28041.559999999994,31,20,1,11694,201701331,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1659.9309104857962,0.0,1100.0,0.0,0.0,36923.0,1,1,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1526.525112131242,0.05443795252943282,0.04134347458579319,20512.777777777777,5,3,5,5_1,5_0,5_0_0 +1332,1,44.0,4,353.0,9,120,2,0,55,4.0,0.0,0.0,672.964882562781,0.0,973.1270681237726,17719.47130526406,0,71,1,11696,201701332,,,130.0,,1.0,1.0,3.0,1.0,2.0,1.3,592.0462400158411,0.0,500.0,550.0,0.0,21526.0,0,4,3,63.0,0,1.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1646.0919506865534,0.09289735129950158,0.07646994103347364,16558.46153846154,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +1333,2,37.0,2,0.0,1,111,1,48,38,9.0,0.0,0.0,572.0201501783638,0.0,3478.486938056976,56163.6116935026,20,12,1,11698,201701333,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2121.5761546247,0.0,425.0,1966.0,0.0,65683.0,1,1,1,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4050.5070882353402,0.0721197758851383,0.06166751044007339,31277.619047619046,8,4,8,8_1,8_3,8_1_0 +1334,2,66.0,4,0.0,1,211,4,0,75,7.0,0.0,0.0,355.32545799314835,0.0,0.0,19143.559999999998,0,33,2,117,201701334,,,,470.0,0.0,2.0,3.0,0.0,1.0,1.0,4525.742995851306,0.0,264.0,0.0,0.0,26770.0,0,5,3,66.0,1,2.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,355.32545799314835,0.018561096159395035,0.013273270750584548,26770.0,7,4,7,7_0,7_1,7_1_0 +1335,2,79.0,2,0.0,4,111,2,75,75,9.0,0.0,0.0,668.877080975957,0.0,1534.987237672799,28929.35632227272,50,44,1,11700,201701335,,,410.0,,0.0,1.0,5.0,0.0,2.0,1.5,1908.198211459308,524.5196166554837,280.0,560.0,0.0,48473.0,5,5,1,130.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2203.864318648756,0.07618089715158993,0.04546581228000652,32315.333333333332,9,5,9,9_1,9_2,9_0_1 +1336,2,33.0,2,0.0,4,111,4,37,34,9.0,0.0,0.0,2691.859530251124,0.0,0.0,66338.98175060327,20,10,2,11704,201701336,,,80.0,660.0,2.0,0.0,4.0,2.0,4.0,2.1,2353.1205163607196,0.0,2000.0,0.0,0.0,74472.0,1,1,3,100.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2691.859530251124,0.04057734169588222,0.0361459277345999,35462.857142857145,9,5,9,9_0,9_2,9_0_1 +1337,1,45.0,4,158.0,6,111,4,0,65,5.0,0.0,0.0,2314.9991960159664,318.4779495677801,0.0,41802.36000000001,0,50,1,11706,201701337,,,,1042.0,1.0,4.0,5.0,1.0,4.0,2.3,1284.746891975362,0.0,1720.0,0.0,0.0,45981.0,0,1,3,120.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,2633.4771455837463,0.06299828874694505,0.05727315946986247,19991.739130434784,5,3,5,5_1,5_4,5_0_0 +1338,2,45.0,3,0.0,4,300,4,64,56,2.0,0.0,0.0,2839.911804414936,0.0,0.0,27476.150875301635,71,50,1,11707,201701338,,,1200.0,,3.0,1.0,4.0,2.0,4.0,2.5,1867.5048931961735,0.0,2110.0,0.0,0.0,31420.0,4,1,3,75.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2839.911804414936,0.10335915744907843,0.09038548072612781,12568.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +1339,2,71.0,2,0.0,7,112,3,77,77,7.0,0.0,0.0,393.0114914166641,0.0,2147.9568376404727,28903.719999999998,60,41,1,11708,201701339,445.0,445.0,222.0,,0.0,3.0,6.0,0.0,2.0,1.5,1536.5145573284938,0.0,292.0,1214.0,0.0,33894.0,6,5,1,115.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2540.968329057137,0.08791146361288918,0.07496808665419062,22596.0,6,3,6,6_1,6_1,6_0_0 +1340,1,40.0,3,65.0,4,111,2,0,63,4.0,0.0,0.0,538.3719060502248,0.0,300.7847301473479,16480.32,0,60,2,11709,201701340,,,570.0,,1.0,1.0,4.0,2.0,3.0,1.6,2477.1738616468583,0.0,400.0,170.0,0.0,28350.0,0,1,3,80.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,839.1566361975727,0.0509187100855792,0.02959988134735706,17718.75,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +1341,2,51.0,3,0.0,1,112,5,0,63,6.0,0.0,763.359475759892,2018.894647688343,123.8525359430256,0.0,26362.956974448152,0,71,1,1171,201701341,,,600.0,,1.0,4.0,6.0,0.0,2.0,1.5,3081.0957342787024,0.0,1500.0,0.0,0.0,32931.0,0,4,1,100.0,8,2.0,5,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2906.1066593912606,0.11023447264310886,0.08824835745623456,21954.0,6,3,6,6_1,6_1,6_1_0 +1342,2,35.0,2,0.0,99,111,1,0,34,6.0,0.0,0.0,444.15682249143543,0.0,0.0,31477.279999999995,0,10,2,11710,201701342,,,,480.0,1.0,0.0,3.0,1.0,2.0,1.3,1329.137625943333,0.0,330.0,0.0,0.0,28953.0,0,1,3,51.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,444.15682249143543,0.014110393988662156,0.015340614875537438,22271.53846153846,6,3,6,6_0,6_2,6_0_0 +1343,2,59.0,2,0.0,7,112,2,62,38,9.0,0.0,0.0,2651.481637297357,0.0,0.0,56181.64,60,42,1,11711,201701343,,,327.0,,2.0,4.0,5.0,0.0,2.0,1.5,2420.070577636135,0.0,1970.0,0.0,0.0,44958.0,1,1,1,110.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2651.481637297357,0.0471948066538705,0.05897685923077888,29972.0,8,4,8,8_1,8_0,8_0_0 +1344,2,33.0,1,0.0,99,111,2,43,46,8.0,0.0,0.0,597.5928157157495,0.0,1974.5632873202367,15945.950989269943,33,20,1,11713,201701344,,,360.0,,2.0,1.0,4.0,0.0,2.0,1.5,2149.4127395489563,0.0,444.0,1116.0,0.0,45103.0,1,4,3,70.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2572.1561030359862,0.16130465374983244,0.0570284926287827,30068.666666666668,8,4,8,8_1,8_2,8_0_0 +1345,2,70.0,1,0.0,6,111,2,0,75,8.0,0.0,0.0,1913.019968731373,0.0,241.6242778347,23872.526081350148,0,33,1,11714,201701345,,,172.0,,0.0,0.0,4.0,0.0,1.0,1.0,1707.8966230874805,232.90035081065702,1325.0,0.0,0.0,31423.0,0,5,1,105.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2154.644246566073,0.09025623175460004,0.06856901780753184,31423.0,8,4,8,8_1,8_3,8_0_0 +1346,1,53.0,4,167.0,5,111,4,55,42,3.0,0.0,0.0,1749.7086946632305,0.0,0.0,21642.92,60,60,2,11715,201701346,,,,196.0,2.0,2.0,3.0,1.0,3.0,1.8,2705.6279508440525,0.0,1300.0,0.0,0.0,25424.0,4,1,3,53.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1749.7086946632305,0.0808443913604648,0.06882114123124727,14124.444444444443,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +1347,2,66.0,3,0.0,6,400,4,0,77,4.0,0.0,305.3437903039568,1226.2901620392497,148.62304313163074,88.05996158615667,21481.22468577102,0,70,1,11718,201701347,,,162.0,,0.0,3.0,4.0,0.0,1.0,1.0,2345.621956567979,84.88052661587105,876.0,0.0,0.0,16471.0,0,5,3,110.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1768.3169570609941,0.08231918724039566,0.10735941697899302,16471.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1348,2,49.0,4,0.0,4,111,1,55,54,7.0,0.0,0.0,500.68587262670906,0.0,0.0,37345.4,44,50,2,11719,201701348,,,,,2.0,3.0,5.0,2.0,4.0,2.1,1788.1702947573474,0.0,372.0,0.0,0.0,52260.0,1,1,2,103.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,500.68587262670906,0.013406895430942206,0.009580671118000556,24885.714285714286,7,4,7,7_0,7_3,7_0_1 +1349,2,43.0,1,0.0,9,400,2,43,43,8.0,1407.1864801061886,0.0,1157.4995980079832,169.8549064361494,0.0,52807.31684200447,33,33,1,1172,201701349,,,550.0,,2.0,0.0,5.0,2.0,4.0,2.1,2108.641810901765,0.0,860.0,0.0,0.0,63307.0,1,1,2,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2734.5409845503214,0.051783372988479286,0.04319492290821428,30146.190476190473,8,4,8,8_1,8_0,8_0_0 +1350,2,86.0,2,0.0,3,111,2,75,75,8.0,0.0,0.0,718.7264945770501,0.0,3147.6237348948935,37974.587849749776,60,60,1,11722,201701350,,,800.0,,0.0,1.0,5.0,0.0,2.0,1.5,3042.571950668014,0.0,534.0,1779.0,0.0,46766.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3866.3502294719437,0.10181414594332247,0.08267438372903271,31177.333333333332,8,4,8,8_1,8_4,8_0_1 +1351,2,35.0,3,0.0,1,112,5,21,52,5.0,0.0,832.755791738064,1480.522741638118,0.0,0.0,40847.91087530163,43,50,1,11723,201701351,,,168.0,,2.0,0.0,6.0,3.0,5.0,2.4,2583.8665873719597,0.0,1100.0,0.0,0.0,46603.0,1,1,2,160.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2313.278533376182,0.05663150168041734,0.04963797466635586,19417.916666666668,5,3,5,5_1,5_0,5_1_0 +1352,2,89.0,3,0.0,6,211,4,86,74,7.0,0.0,0.0,2026.9702262790963,0.0,0.0,22401.0,30,30,1,11724,201701352,,,417.0,,0.0,4.0,4.0,0.0,2.0,1.5,2598.9514485223926,0.0,1506.0,0.0,0.0,35470.0,5,5,1,88.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2026.9702262790963,0.09048570270430321,0.057146045285567985,23646.666666666668,6,3,6,6_1,6_1,6_0_0 +1353,1,54.0,3,144.0,9,221,2,0,69,8.0,0.0,0.0,703.9212671606689,40.694404666994124,0.0,24793.079999999998,0,50,1,11726,201701353,,,80.0,289.0,2.0,0.0,3.0,1.0,2.0,1.5,3842.0577950654933,0.0,523.0,0.0,0.0,43528.0,0,1,3,68.0,3,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,744.615671827663,0.030033205710128113,0.01710659051248996,29018.666666666668,8,4,8,8_1,8_2,8_0_0 +1354,2,29.0,3,0.0,4,400,2,69,85,7.0,1047.0609660316622,0.0,578.7497990039916,0.0,0.0,11219.0,50,50,1,11728,201701354,,,300.0,324.0,1.0,0.0,3.0,0.0,2.0,1.5,3253.7115343652417,0.0,430.0,0.0,0.0,38714.0,1,4,3,73.0,0,1.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1625.8107650356537,0.1449158360848252,0.041995421941304276,25809.333333333332,7,4,7,7_1,7_1,7_0_1 +1355,2,33.0,2,0.0,9,112,4,55,22,9.0,0.0,0.0,3701.3068540952954,0.0,0.0,51250.66238259149,31,31,1,11729,201701355,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2575.713125818132,0.0,2750.0,0.0,0.0,69756.0,1,1,2,120.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3701.3068540952954,0.0722196881371924,0.05306076687446665,38753.333333333336,9,5,9,9_1,9_0,9_0_0 +1356,1,59.0,4,306.0,1,112,4,68,67,1.0,0.0,0.0,1356.6972032465665,0.0,0.0,13927.4,50,50,1,1173,201701356,,,310.0,,2.0,3.0,3.0,0.0,2.0,1.5,2450.6183915460474,0.0,1008.0,0.0,0.0,15102.0,1,1,3,87.0,6,2.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1356.6972032465665,0.0974120943784602,0.08983559814902439,10068.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +1357,2,53.0,3,0.0,3,111,1,55,65,7.0,0.0,0.0,861.3950496803596,0.0,283.09151072691566,47874.100000000006,50,71,2,11730,201701357,,,,402.0,3.0,0.0,3.0,1.0,3.0,2.0,2934.119229483786,0.0,640.0,160.0,0.0,47065.0,4,1,3,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1144.4865604072752,0.023906173910470903,0.02431714778300808,23532.5,6,3,6,6_0,6_4,6_0_1 +1358,2,85.0,2,0.0,5,111,2,0,78,3.0,1269.1648073111057,0.0,484.5347154452023,99.08202875442048,0.0,13047.471191295745,0,70,1,11733,201701358,,,127.0,,0.0,1.0,5.0,0.0,1.0,1.0,2054.1766514001783,0.0,360.0,0.0,0.0,14210.0,0,5,1,110.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1852.7815515107284,0.1420031149596835,0.13038575309716596,14210.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +1359,2,53.0,4,0.0,4,112,4,85,67,5.0,0.0,138.792631956344,1646.7613909680592,0.0,430.17150207794015,43685.94887136183,71,50,2,1174,201701359,,,,359.0,1.0,0.0,3.0,1.0,3.0,1.8,2051.7223806632064,414.64001316639025,1052.0,0.0,0.0,33410.0,4,4,3,77.0,8,2.0,4,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,2215.725525002343,0.05071940938096126,0.06631923151757986,18561.11111111111,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +1360,1,60.0,4,256.0,5,111,1,0,46,1.0,0.0,0.0,592.2090966552472,0.0,0.0,6892.4800000000005,0,50,2,11740,201701360,,,,7.0,1.0,3.0,2.0,0.0,1.0,1.0,1773.6576309643547,0.0,440.0,0.0,0.0,9022.0,0,4,3,37.0,5,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,592.2090966552472,0.08592104680104218,0.0656405560469128,9022.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1361,2,69.0,2,0.0,8,300,2,0,71,2.0,1237.435687128328,0.0,4681.143723106705,53.079658261296686,0.0,24190.66,0,70,1,11741,201701361,,,98.0,,0.0,2.0,4.0,0.0,1.0,1.0,2205.1947529053864,0.0,3478.0,0.0,0.0,12895.0,0,5,1,110.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5971.659068496329,0.24685804639048,0.46309880329556646,12895.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1362,2,82.0,1,0.0,4,111,6,74,74,10.0,0.0,0.0,3343.9561173507177,0.0,3221.6570377959997,98067.24108466863,10,12,2,11742,201701362,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1679.5584951189032,3105.3380108087604,1200.0,0.0,0.0,121208.0,5,5,1,102.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,6565.613155146717,0.06695011588506036,0.054168150247068815,80805.33333333333,10,5,10,10_0,10_3,10_0_1 +1363,2,56.0,4,0.0,9,111,2,0,46,5.0,0.0,0.0,1258.4443303924004,0.0,0.0,24701.980000000003,0,20,2,11743,201701363,,,360.0,530.0,1.0,0.0,3.0,1.0,2.0,1.5,2856.3499296455466,0.0,935.0,0.0,0.0,29878.0,0,1,3,66.0,8,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1258.4443303924004,0.05094507931722073,0.042119430028529366,19918.666666666668,5,3,5,5_0,5_2,5_0_0 +1364,2,43.0,1,0.0,1,111,6,0,48,8.0,0.0,0.0,1319.0111698230507,113.23660429076627,0.0,27846.2,0,43,2,11744,201701364,,,,617.0,1.0,0.0,3.0,1.0,2.0,1.5,894.7907268999087,0.0,980.0,0.0,0.0,42238.0,0,1,3,75.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1432.247774113817,0.05143422707995407,0.03390898655508824,28158.666666666668,8,4,8,8_0,8_3,8_1_0 +1365,1,39.0,5,408.0,99,120,4,0,55,3.0,0.0,0.0,131.90111698230507,49.54101437721024,0.0,14121.913696501075,0,50,2,11745,201701365,,,29.0,,1.0,1.0,3.0,1.0,3.0,1.6,342.92186405635573,0.0,98.0,0.0,0.0,23766.0,0,1,3,48.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,181.44213135951532,0.012848267965585318,0.007634525429584925,14853.75,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +1366,2,53.0,2,0.0,5,111,2,38,47,10.0,0.0,0.0,1391.8294829600377,0.0,2593.6444169542638,97360.52134949913,12,31,1,11748,201701366,,,600.0,,2.0,0.0,7.0,2.0,4.0,2.3,1915.6658400347794,2500.0,0.0,0.0,0.0,110867.0,1,1,1,180.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3985.4738999143015,0.040935215266642615,0.03594824338995645,48203.04347826087,10,5,10,10_1,10_2,10_0_0 +1367,1,29.0,2,234.0,99,221,1,0,67,2.0,0.0,0.0,874.8543473316153,138.0071114793714,79.61948739194503,17238.88,0,71,2,11749,201701367,45.0,45.0,,31.0,1.0,0.0,3.0,1.0,2.0,1.3,827.2047971092543,0.0,650.0,45.0,0.0,15820.0,0,4,3,49.0,1,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1092.4809462029316,0.0633730814416558,0.06905694982319416,12169.23076923077,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +1368,2,45.0,3,0.0,1,300,5,0,67,3.0,0.0,832.755791738064,1211.3367886130059,84.9274532180747,0.0,36246.86,0,44,1,1175,201701368,,,,,1.0,0.0,5.0,1.0,2.0,1.3,2662.653107569913,0.0,900.0,0.0,0.0,20440.0,0,1,2,180.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2129.0200335691447,0.058736674944233645,0.10415949283606384,15723.076923076922,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1369,2,68.0,3,0.0,7,111,2,77,77,6.0,0.0,0.0,1345.929765125562,0.0,0.0,33812.18,60,42,1,11750,201701369,,,250.0,,0.0,1.0,4.0,0.0,2.0,1.5,1480.5647856084959,0.0,1000.0,0.0,0.0,32482.0,5,5,1,108.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1345.929765125562,0.039806062937248116,0.041436172807264395,21654.666666666668,6,3,6,6_1,6_2,6_0_0 +1370,2,70.0,3,0.0,1,400,2,78,75,4.0,0.0,0.0,94.21508355878933,1902.0210876964645,0.0,28998.02,71,71,1,11751,201701370,,,,,0.0,2.0,2.0,0.0,2.0,1.5,2690.0078792252557,0.0,70.0,0.0,0.0,24201.0,5,5,1,56.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1996.2361712552538,0.06884043018300055,0.08248568948618874,16134.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1371,2,59.0,2,0.0,7,211,5,56,48,6.0,0.0,916.0313709118703,1592.2349121435398,148.62304313163074,0.0,33216.92,70,70,1,11752,201701371,,,727.0,,2.0,3.0,5.0,0.0,2.0,1.5,2944.3136998845753,0.0,1183.0,0.0,0.0,33991.0,1,1,1,100.0,1,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2656.8893261870408,0.07998602297223947,0.0781644943128193,22660.666666666668,6,3,6,6_1,6_1,6_0_0 +1372,2,52.0,1,0.0,6,111,2,62,56,6.0,1031.1964059402735,0.0,8075.578590753372,0.0,0.0,59787.27357388724,41,41,1,11753,201701372,,,450.0,,2.0,1.0,5.0,1.0,3.0,2.0,1596.8500334092982,0.0,6000.0,0.0,0.0,45700.0,1,1,1,120.0,7,5.0,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,9106.774996693646,0.15231962343021327,0.19927297585762901,22850.0,6,3,6,6_1,6_2,6_0_0 +1373,2,65.0,4,0.0,1,111,6,48,75,3.0,0.0,0.0,1503.4035476452527,0.0,1486.2304313163072,48576.42,50,41,1,11754,201701373,,,360.0,,1.0,2.0,5.0,0.0,2.0,1.5,1519.106283593293,0.0,1117.0,840.0,0.0,22456.0,4,5,1,103.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2989.63397896156,0.0615449631521129,0.13313297020669576,14970.666666666666,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +1374,2,22.0,3,0.0,8,111,4,0,38,9.0,0.0,0.0,2099.6504335958766,0.0,0.0,46146.731693502596,0,41,2,11755,201701374,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3991.5473475595345,0.0,1560.0,0.0,0.0,56894.0,0,1,4,65.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2099.6504335958766,0.04549943964702282,0.03690460213020488,37929.333333333336,9,5,9,9_0,9_4,9_0_0 +1375,1,31.0,3,400.0,99,112,4,0,55,2.0,0.0,0.0,2810.3013495821733,159.23897478389006,0.0,18938.74,0,50,1,11756,201701375,,,400.0,,1.0,0.0,3.0,3.0,4.0,1.9,735.5707136303129,0.0,2088.0,0.0,0.0,23410.0,0,4,3,65.0,9,0.0,2,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2969.5403243660635,0.15679714301828226,0.12684922359530387,12321.052631578948,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +1376,2,89.0,2,0.0,2,111,1,0,78,6.0,0.0,0.0,308.2179162137537,0.0,168.08558449410617,10346.911191295745,0,70,2,11757,201701376,,,,196.0,0.0,3.0,2.0,0.0,1.0,1.0,5395.75721847579,0.0,229.0,95.0,0.0,22769.0,0,5,3,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,476.3035007078599,0.04603339991054976,0.020918946844738894,22769.0,6,3,6,6_0,6_4,6_0_1 +1377,2,36.0,1,0.0,9,111,4,0,33,8.0,0.0,0.0,1083.4734609260775,0.0,0.0,32922.86,0,12,2,11758,201701377,,,141.0,371.0,1.0,0.0,2.0,0.0,1.0,1.0,3780.052583995559,0.0,805.0,0.0,0.0,28930.0,0,1,3,51.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1083.4734609260775,0.032909457468946426,0.03745155412810499,28930.0,8,4,8,8_0,8_3,8_0_0 +1378,2,33.0,3,0.0,99,111,2,0,85,2.0,0.0,0.0,471.07541779394666,0.0,1645.4694061001974,100380.12000000001,0,71,2,1176,201701378,,,,,0.0,0.0,4.0,3.0,4.0,2.1,635.8726668636689,0.0,350.0,930.0,0.0,27500.0,0,6,1,75.0,6,4.0,2,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2116.544823894144,0.02108529880113855,0.07696526632342342,13095.238095238095,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +1379,2,54.0,2,0.0,5,111,1,67,47,2.0,0.0,0.0,161.51157181506744,0.0,0.0,27130.320315994115,50,42,8,11760,201701379,,,,,2.0,1.0,3.0,1.0,3.0,2.0,1792.2801223092733,0.0,120.0,0.0,0.0,25280.0,1,1,3,70.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,161.51157181506744,0.005953176001385124,0.006388907112937795,12640.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +1380,2,83.0,3,0.0,4,111,2,77,75,7.0,1269.1648073111057,485.77421184720396,993.2961666626647,0.0,0.0,24628.47800298474,50,71,1,11761,201701380,,,275.0,,0.0,3.0,5.0,0.0,2.0,1.5,1741.1919155505059,0.0,738.0,0.0,0.0,35766.0,5,5,1,102.0,4,4.0,3,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2748.2351858209745,0.11158769882117418,0.07683932186492687,23844.0,6,3,6,6_1,6_2,6_0_1 +1381,2,66.0,3,0.0,9,400,2,0,75,7.0,0.0,0.0,2966.4292023367384,247.7050718860512,0.0,42435.04,0,31,1,11762,201701381,,,380.0,,0.0,2.0,4.0,0.0,1.0,1.0,1606.7035046184521,0.0,2204.0,0.0,0.0,27430.0,0,5,1,120.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3214.13427422279,0.07574245892599112,0.11717587583750601,27430.0,8,4,8,8_1,8_1,8_0_0 +1382,2,65.0,3,0.0,5,400,1,78,77,6.0,0.0,0.0,1183.072263545369,0.0,2270.040051641455,30617.4,70,50,1,11763,201701382,,,728.0,,0.0,1.0,4.0,0.0,2.0,1.5,1780.9949391419102,0.0,879.0,1283.0,0.0,31394.0,5,5,1,106.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3453.112315186824,0.11278267636007054,0.10999274750547315,20929.333333333332,5,3,5,5_1,5_0,5_0_0 +1383,2,48.0,4,0.0,6,111,1,0,47,2.0,0.0,0.0,3768.6033423515732,0.0,0.0,47074.19087530163,0,50,2,11765,201701383,1400.0,1400.0,,,1.0,2.0,3.0,0.0,1.0,1.0,3767.1980303040796,0.0,2800.0,0.0,0.0,13450.0,0,1,2,72.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3768.6033423515732,0.08005667802840223,0.2801935570521616,13450.0,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +1384,2,65.0,2,0.0,5,111,2,0,77,4.0,0.0,0.0,430.6975248401798,0.0,840.4279224705309,24000.820000000003,0,42,8,11766,201701384,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2253.1638318935934,0.0,320.0,475.0,0.0,16554.0,0,5,1,86.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1271.1254473107108,0.05296175077812802,0.07678660428359978,16554.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +1385,2,58.0,3,0.0,1,211,5,0,56,2.0,0.0,0.0,1403.8047450259612,53.079658261296686,0.0,11044.0,0,70,1,11767,201701385,,,,,1.0,3.0,4.0,0.0,1.0,1.0,2768.484152287927,0.0,1043.0,0.0,0.0,12354.0,0,1,1,100.0,1,3.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1456.884403287258,0.13191637117776694,0.11792815309108451,12354.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +1386,2,50.0,3,0.0,9,112,5,53,53,9.0,0.0,1360.167793172171,2333.8422127277245,42.46372660903735,0.0,43407.30175060326,60,60,1,11768,201701386,,,400.0,,2.0,1.0,6.0,0.0,2.0,1.5,1741.5484893606056,0.0,1734.0,0.0,0.0,56903.0,1,1,2,300.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3736.4737325089327,0.08607938254206285,0.06566391460044167,37935.333333333336,9,5,9,9_1,9_0,9_0_0 +1387,2,59.0,2,0.0,8,120,4,54,74,6.0,0.0,346.98157989085996,1843.9237782220198,0.0,0.0,66504.76000000001,42,44,1,11769,201701387,,,500.0,,1.0,1.0,4.0,2.0,4.0,2.3,2032.580949858586,0.0,1370.0,0.0,0.0,50942.0,1,5,1,135.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2190.9053581128796,0.03294358716748815,0.043007839466704875,22148.695652173916,6,3,6,6_1,6_0,6_0_0 +1388,2,90.0,3,0.0,5,112,2,0,86,4.0,1269.1648073111057,0.0,403.7789295376686,0.0,0.0,13894.910875301626,0,71,1,11772,201701388,,,100.0,,0.0,2.0,4.0,0.0,1.0,1.0,1556.514524694655,0.0,300.0,0.0,0.0,17506.0,0,5,1,100.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1672.9437368487743,0.12039974576752789,0.09556402015587652,17506.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1389,2,50.0,2,0.0,1,221,2,0,38,8.0,0.0,0.0,576.0579394737405,0.0,2374.4300462220053,63962.62,0,50,1,11773,201701389,,,230.0,,1.0,0.0,4.0,1.0,2.0,1.5,3865.0360782481507,0.0,428.0,1342.0,0.0,44528.0,0,1,1,110.0,1,1.0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2950.487985695746,0.04612831659640812,0.06626140823068061,29685.333333333332,8,4,8,8_1,8_1,8_1_0 +1390,1,29.0,4,45.0,4,111,1,47,56,3.0,0.0,0.0,500.68587262670906,0.0,191.08676974066807,23208.340000000004,20,50,2,11775,201701390,,,,397.0,2.0,0.0,2.0,0.0,2.0,1.5,2642.0005627718015,0.0,372.0,108.0,0.0,21588.0,4,1,3,47.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,691.7726423673771,0.0298070711807642,0.032044313617165886,14392.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +1391,1,50.0,5,379.0,99,111,1,0,31,1.0,0.0,0.0,339.1743008116416,0.0,647.5718307878196,8492.16,0,10,2,11776,201701391,,,220.0,,1.0,0.0,3.0,1.0,2.0,1.5,840.3832270936367,0.0,252.0,366.0,0.0,13712.0,0,4,3,75.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,986.7461315994613,0.11619495294477039,0.07196223246787203,9141.333333333334,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1392,2,72.0,4,0.0,5,111,2,0,75,3.0,0.0,0.0,1046.6557711859484,0.0,1950.420601549606,15522.800000000001,0,41,1,11777,201701392,,,709.0,,0.0,3.0,5.0,0.0,1.0,1.0,2754.2235197512673,1880.0,0.0,0.0,0.0,15799.0,0,5,1,110.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2997.0763727355543,0.19307575777150734,0.18970038437467904,15799.0,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +1393,2,88.0,1,0.0,2,300,2,0,77,6.0,1337.3824157040776,0.0,376.8603342351573,297.2460862632615,0.0,19548.92,0,70,1,11778,201701393,,,49.0,,0.0,4.0,4.0,0.0,1.0,1.0,2799.8791491511556,0.0,280.0,0.0,0.0,22436.0,0,5,1,90.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2011.4888362024965,0.10289513876994211,0.08965452113578608,22436.0,6,3,6,6_1,6_0,6_0_1 +1394,2,71.0,3,0.0,99,111,1,0,56,6.0,0.0,0.0,944.8426951181444,0.0,1326.9914565324173,32696.02,0,70,2,11781,201701394,,,,472.0,2.0,2.0,4.0,1.0,2.0,1.5,2911.07673727539,0.0,702.0,750.0,0.0,35161.0,0,1,3,79.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2271.8341516505616,0.06948350752325701,0.06461233046985472,23440.666666666668,6,3,6,6_0,6_4,6_0_0 +1395,2,67.0,2,0.0,1,111,2,74,74,10.0,0.0,0.0,1618.8817678515295,0.0,3677.247436876751,52682.75243386745,10,10,1,11782,201701395,,,345.0,,0.0,2.0,9.0,0.0,2.0,1.5,1949.629164022006,1242.135204323504,689.0,1350.0,0.0,68368.0,5,5,1,200.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5296.1292047282805,0.100528711201574,0.07746503049274925,45578.666666666664,10,5,10,10_1,10_2,10_1_0 +1396,2,75.0,3,0.0,4,111,2,75,72,6.0,0.0,0.0,807.2611001168219,0.0,1504.3137618334729,32312.399999999994,31,30,1,11783,201701396,,,440.0,,0.0,4.0,7.0,0.0,2.0,1.5,2622.4153556276624,1450.0,0.0,0.0,0.0,33173.0,5,5,1,105.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2311.5748619502947,0.07153832157160393,0.06968241829048608,22115.333333333332,6,3,6,6_1,6_2,6_0_1 +1397,2,53.0,4,0.0,99,111,2,0,52,4.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,21595.863533741925,0,50,1,11785,201701397,,,,,2.0,5.0,3.0,0.0,2.0,1.5,3354.791345394443,900.0,0.0,0.0,0.0,26170.0,0,1,3,78.0,8,7.0,5,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1434.7706039691484,0.06643728794300938,0.05482501352576035,17446.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +1398,2,44.0,3,0.0,6,111,4,0,68,3.0,0.0,0.0,242.26735772260116,265.39829130648343,0.0,14783.179999999998,0,71,2,11787,201701398,,,,,1.0,2.0,1.0,0.0,1.0,1.0,3821.0694434546554,0.0,180.0,0.0,0.0,14292.0,0,1,3,23.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,507.6656490290846,0.03434076085315099,0.03552096620690488,14292.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +1399,1,40.0,3,677.0,99,111,1,85,81,2.0,0.0,0.0,928.6915379366377,0.0,247.7050718860512,14597.699999999999,71,71,2,11789,201701399,,,,32.0,1.0,3.0,5.0,1.0,3.0,2.0,895.7104339231283,0.0,690.0,140.0,0.0,25101.0,6,4,4,77.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1176.3966098226888,0.08058780560106653,0.04686652363741241,12550.5,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +1400,2,66.0,3,0.0,99,111,1,0,56,9.0,0.0,0.0,220.73248148059216,0.0,0.0,13693.29,0,41,2,11790,201701400,,,,,1.0,1.0,1.0,0.0,1.0,1.0,2516.985288128388,0.0,164.0,0.0,0.0,35238.0,0,5,1,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,220.73248148059216,0.016119755112218623,0.006264046809710885,35238.0,9,5,9,9_0,9_4,9_0_0 +1401,2,23.0,2,0.0,9,111,2,0,55,3.0,0.0,0.0,928.6915379366377,0.0,1459.690602185659,18718.219999999998,0,44,2,11791,201701401,,,292.0,500.0,1.0,0.0,3.0,0.0,1.0,1.0,2304.9576641239187,0.0,690.0,825.0,0.0,16089.0,0,1,3,87.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2388.3821401222967,0.1275966486194893,0.14844814097347858,16089.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +1402,2,49.0,2,0.0,7,111,2,38,38,10.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,56738.58,60,31,2,11793,201701402,,,,908.0,3.0,0.0,4.0,2.0,4.0,2.5,4610.412169148974,1400.0,0.0,0.0,0.0,106320.0,1,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2231.8653839520084,0.03933594009494084,0.020991961850564414,42528.0,10,5,10,10_0,10_4,10_0_0 +1403,1,56.0,3,135.0,5,111,2,0,85,2.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,7353.4,0,71,8,11794,201701403,,,250.0,191.0,0.0,0.0,3.0,0.0,1.0,1.0,1580.9786038205762,800.0,0.0,0.0,0.0,11305.0,0,7,3,54.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1275.3516479725763,0.1734370016553671,0.11281306041331944,11305.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1404,2,71.0,3,0.0,1,112,2,78,74,7.0,0.0,0.0,888.3136449828709,4612.622302906682,0.0,22757.830875301628,50,70,1,11795,201701404,,,200.0,,0.0,1.0,5.0,0.0,2.0,1.5,2669.2894108456926,0.0,660.0,0.0,0.0,37368.0,5,5,1,120.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5500.935947889553,0.24171618015931162,0.14720980378638282,24912.0,7,4,7,7_1,7_0,7_1_0 +1405,2,66.0,4,0.0,8,112,2,0,77,4.0,0.0,0.0,347.249879402395,1401.3029780982326,0.0,14467.259999999998,0,70,1,11796,201701405,,,98.0,,0.0,3.0,4.0,0.0,1.0,1.0,2454.720363846409,0.0,258.0,0.0,0.0,16957.0,0,5,3,80.0,8,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1748.5528575006276,0.12086275200007657,0.10311687547919017,16957.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1406,2,28.0,3,0.0,9,112,4,56,62,7.0,0.0,0.0,1728.1738184212215,58.38762408742635,0.0,33087.5,50,50,1,11797,201701406,,,540.0,,2.0,0.0,4.0,1.0,3.0,1.8,3131.1081448544196,0.0,1284.0,0.0,0.0,40720.0,1,1,2,90.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1786.5614425086478,0.053995056819301786,0.04387429868636168,22622.222222222223,6,3,6,6_1,6_0,6_0_0 +1407,2,81.0,3,0.0,5,111,4,0,77,4.0,0.0,0.0,1815.3424374800668,0.0,433.31287158356196,15956.705705887933,0,44,1,11798,201701407,,,170.0,,0.0,0.0,4.0,0.0,1.0,1.0,2158.2370932269623,417.6679624537783,1176.0,0.0,0.0,18531.0,0,5,1,80.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2248.655309063629,0.14092227747447195,0.12134559975520096,18531.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1408,2,35.0,2,0.0,6,111,1,42,37,5.0,0.0,0.0,956.9560630042746,0.0,1171.2911256326136,77140.52,0,30,1,118,201701408,,,400.0,,2.0,0.0,5.0,4.0,6.0,2.7,1588.368633190437,0.0,711.0,662.0,0.0,50098.0,1,1,1,100.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2128.247188636888,0.027589225333675322,0.04248167968056386,18554.814814814814,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1409,2,54.0,2,0.0,6,300,1,52,48,9.0,0.0,0.0,2623.031696430879,106.15931652259337,3006.879901942933,42545.23050687887,50,50,2,1180,201701409,,,600.0,,2.0,2.0,5.0,0.0,2.0,1.5,1994.7643063872977,2898.315476754843,750.0,0.0,0.0,59030.0,1,1,1,140.0,0,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,5736.070914896405,0.13482288958262845,0.09717213137212273,39353.333333333336,9,5,9,9_0,9_1,9_0_0 +1410,2,42.0,3,0.0,9,112,2,0,54,6.0,0.0,0.0,1628.57501580193,0.0,0.0,30627.700000000004,0,31,2,11800,201701410,,,,750.0,1.0,0.0,3.0,2.0,3.0,1.6,1034.4235314957914,0.0,1210.0,0.0,0.0,36472.0,0,1,3,67.0,10,4.0,2,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1628.57501580193,0.05317327177038856,0.04465274774626919,22795.0,6,3,6,6_0,6_2,6_0_0 +1411,1,18.0,2,177.0,9,111,1,0,84,1.0,0.0,0.0,290.72082926712136,0.0,0.0,19269.171711336603,0,41,2,11801,201701411,,,,383.0,0.0,0.0,1.0,0.0,1.0,1.0,2968.0442693836108,0.0,216.0,0.0,0.0,2124.0,0,3,3,22.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,290.72082926712136,0.015087354745823454,0.1368742134025995,2124.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1412,2,62.0,3,0.0,1,111,1,0,37,10.0,0.0,0.0,1379.578009253701,0.0,0.0,30253.44,0,41,2,11802,201701412,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2306.203734463902,0.0,1025.0,0.0,0.0,51621.0,0,1,1,75.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1379.578009253701,0.04560069893716884,0.026725131424298273,51621.0,10,5,10,10_0,10_4,10_1_0 +1413,2,46.0,3,0.0,2,112,2,54,62,6.0,0.0,249.82673752141918,1407.8334357111114,0.0,2215.2030322187834,59426.51840905729,41,50,1,11804,201701413,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.3,1836.4260060412187,498.0,840.0,960.0,0.0,52651.0,1,1,2,170.0,9,0.0,4,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3872.8632054513137,0.0651706226299982,0.07355725827527139,22891.739130434784,6,3,6,6_1,6_0,6_0_1 +1414,1,60.0,4,260.0,3,111,2,0,78,2.0,0.0,0.0,1076.7438121004495,0.0,1415.4575536345783,10609.380000000001,0,60,2,11806,201701414,,,,140.0,0.0,2.0,3.0,0.0,1.0,1.0,3477.8041664148623,0.0,800.0,800.0,0.0,13021.0,0,7,3,60.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,2492.201365735028,0.23490546721250702,0.19139861498617833,13021.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1415,2,46.0,2,0.0,9,111,2,52,65,9.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,31520.980000000003,30,71,1,11807,201701415,,,,685.0,2.0,1.0,3.0,0.0,2.0,1.5,2073.2380466297554,960.0,0.0,0.0,0.0,47466.0,1,1,3,70.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1530.4219775670917,0.04855248718685433,0.032242488888195586,31644.0,8,4,8,8_1,8_3,8_0_0 +1416,2,61.0,3,0.0,2,111,2,77,,9.0,0.0,0.0,349.9417389326461,0.0,1806.4777028261306,28236.1,70,42,1,11809,201701416,,,335.0,,0.0,1.0,4.0,0.0,2.0,1.5,1610.4474447907935,0.0,260.0,1021.0,0.0,47760.0,5,5,1,90.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2156.419441758777,0.07637100880641366,0.04515116084084541,31840.0,8,4,8,8_1,8_2,8_0_1 +1417,2,77.0,3,0.0,4,111,2,0,77,4.0,0.0,0.0,1224.8099450048333,0.0,2282.4070869197517,13564.56,0,50,1,11811,201701417,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2134.4307352123847,2200.0,0.0,0.0,0.0,17530.0,0,5,1,100.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3507.217031924585,0.25855737539032486,0.2000694256659775,17530.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1418,2,58.0,3,0.0,6,300,6,0,78,2.0,0.0,555.170527825376,504.72366192208574,53.079658261296686,0.0,11131.830875301626,0,71,1,11813,201701418,,,110.0,,0.0,4.0,5.0,0.0,1.0,1.0,2290.2464306303823,0.0,375.0,0.0,0.0,12772.0,0,4,1,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1112.9738480087585,0.09998120349439836,0.08714170435395854,12772.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1419,2,43.0,3,0.0,1,111,2,35,00,10.0,0.0,0.0,605.6683943065029,0.0,2653.9829130648345,68527.0,30,20,2,11814,201701419,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1714.3175198299696,0.0,450.0,1500.0,0.0,67260.0,8,4,3,124.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,3259.6513073713377,0.04756740127790999,0.04846344495051052,44840.0,10,5,10,10_0,10_3,10_1_0 +1420,1,44.0,4,76.0,99,211,4,85,54,1.0,0.0,0.0,1485.9064606986203,0.0,849.274532180747,19284.680000000008,71,43,1,11815,201701420,,,,,1.0,0.0,2.0,0.0,2.0,1.5,1151.850844264685,0.0,1104.0,480.0,0.0,12272.0,4,1,3,43.0,4,3.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2335.1809928793673,0.12108995289936708,0.19028528299212577,8181.333333333333,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +1421,0,40.0,2,0.0,1,111,2,0,45,5.0,0.0,0.0,430.6975248401798,0.0,1461.4599241277022,29318.880000000005,0,12,1,11816,201701421,,,292.0,,1.0,0.0,5.0,2.0,3.0,1.6,751.6841846341932,0.0,320.0,826.0,0.0,31513.0,0,1,5,110.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1892.157448967882,0.06453716680063773,0.060043710499409195,19695.625,5,3,5,5_1,5_2,5_1_0 +1422,2,36.0,3,0.0,1,120,2,52,62,7.0,1697.507929778604,0.0,1582.813403787661,0.0,0.0,37186.42,42,50,1,11818,201701422,,,186.0,,2.0,0.0,5.0,1.0,3.0,1.8,2088.518556539422,0.0,1176.0,0.0,0.0,42206.0,1,1,2,100.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3280.321333566265,0.08821288345493503,0.07772168254670579,23447.777777777777,6,3,6,6_1,6_0,6_1_0 +1423,1,62.0,3,125.0,2,111,6,0,56,3.0,0.0,0.0,769.8718256518214,0.0,530.7965826129669,22092.600000000002,0,50,2,11819,201701423,,,,68.0,1.0,1.0,3.0,0.0,1.0,1.0,2060.6140552426414,0.0,572.0,300.0,0.0,13428.0,0,1,3,40.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1300.6684082647882,0.058873487424060005,0.09686240752642153,13428.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1424,2,43.0,1,0.0,9,111,2,0,37,10.0,0.0,0.0,2670.88914325426,0.0,2443.4417698315815,116364.29393842594,0,12,1,1182,201701424,,,388.0,,1.0,0.0,7.0,2.0,3.0,1.6,860.577421045529,663.4240210662244,1710.0,992.0,0.0,86000.0,0,1,2,180.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5114.3309130858415,0.043951032915578774,0.05946896410564932,53750.0,10,5,10,10_1,10_3,10_0_0 +1425,2,84.0,3,0.0,1,112,5,0,71,2.0,0.0,0.0,0.0,106.15931652259337,0.0,17464.091191295745,0,71,1,11822,201701425,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2151.306463177048,0.0,0.0,0.0,0.0,10376.0,0,5,1,92.0,7,0.0,1,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,106.15931652259337,0.006078719777614543,0.010231237135947703,10376.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +1426,2,60.0,3,0.0,2,111,2,78,62,4.0,0.0,0.0,419.93008671917534,0.0,619.262679715128,34010.50584675129,71,50,2,11823,201701426,,,,424.0,1.0,0.0,3.0,0.0,2.0,1.5,2296.624349044013,0.0,312.0,350.0,0.0,24959.0,5,4,3,86.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1039.1927664343034,0.030555051757148968,0.04163599368701885,16639.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +1427,2,52.0,3,0.0,1,221,2,56,64,9.0,0.0,0.0,1270.9385173929472,0.0,2368.3666931080465,35971.97954854473,71,71,1,11824,201701427,,,220.0,,2.0,2.0,6.0,0.0,2.0,1.5,2424.7372634657977,2282.856005266556,0.0,0.0,0.0,48244.0,1,1,1,110.0,1,2.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3639.305210500994,0.10117055708846093,0.07543539529269948,32162.666666666668,9,5,9,9_1,9_1,9_1_0 +1428,2,33.0,2,0.0,9,300,4,85,43,9.0,0.0,0.0,847.935752029104,0.0,0.0,106975.18000000001,33,33,1,11828,201701428,,,180.0,,1.0,0.0,6.0,3.0,5.0,2.4,2903.0663913216626,0.0,630.0,0.0,0.0,93401.0,8,1,2,110.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,847.935752029104,0.00792647184168425,0.00907844404266661,38917.083333333336,9,5,9,9_1,9_1,9_0_0 +1429,2,70.0,1,0.0,9,111,2,74,74,10.0,0.0,999.3069500856767,1934.1010724854325,0.0,0.0,61438.439999999995,31,20,1,11829,201701429,,,398.0,,0.0,1.0,7.0,0.0,2.0,1.5,1477.6740407125,0.0,1437.0,0.0,0.0,89265.0,5,5,2,186.0,5,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2933.408022571109,0.047745483488368344,0.03286179378895546,59510.0,10,5,10,10_1,10_2,10_0_0 +1430,2,40.0,2,0.0,4,111,1,0,46,8.0,0.0,0.0,726.8020731678034,0.0,0.0,18241.199999999997,0,20,2,1183,201701430,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2962.466802827387,0.0,540.0,0.0,0.0,28630.0,0,1,2,56.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,726.8020731678034,0.03984398357387691,0.025386031196919435,28630.0,8,4,8,8_0,8_3,8_0_1 +1431,2,26.0,1,0.0,4,400,4,54,62,6.0,0.0,0.0,118.44181933104946,106.15931652259337,0.0,40126.230875301626,42,31,1,11830,201701431,,,,,2.0,1.0,5.0,0.0,2.0,1.5,3447.5060795281643,0.0,88.0,0.0,0.0,32948.0,1,1,3,80.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,224.60113585364283,0.005597364391179054,0.006816836707953224,21965.333333333332,6,3,6,6_1,6_0,6_0_1 +1432,2,54.0,2,0.0,7,120,2,47,42,6.0,1586.456009138882,0.0,1453.6041463356069,212.31863304518674,0.0,48403.20480956918,50,31,1,11831,201701432,,,500.0,,2.0,2.0,5.0,1.0,3.0,2.0,1947.060740583964,0.0,1080.0,0.0,0.0,47446.0,1,1,1,130.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3252.3787885196757,0.06719345963382758,0.06854906184967491,23723.0,6,3,6,6_1,6_0,6_0_0 +1433,2,76.0,3,0.0,4,211,4,0,78,3.0,0.0,0.0,1938.1388617808093,106.15931652259337,0.0,20657.54,0,71,1,11833,201701433,,,160.0,,0.0,4.0,4.0,0.0,1.0,1.0,1936.1262824161395,0.0,1440.0,0.0,0.0,14180.0,0,5,1,80.0,2,3.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2044.2981783034027,0.09896135640078163,0.14416771356159397,14180.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +1434,1,42.0,5,437.0,6,111,4,85,68,1.0,0.0,0.0,1009.4473238441715,0.0,0.0,9911.2,71,71,2,11834,201701434,,,,38.0,1.0,0.0,4.0,3.0,5.0,2.4,4002.963906882796,0.0,750.0,0.0,0.0,20775.0,6,4,3,77.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1009.4473238441715,0.10184915286183019,0.04858952220669899,8656.25,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1435,2,42.0,1,0.0,4,111,2,33,37,10.0,0.0,0.0,853.4305678860767,0.0,1757.7749796424905,113002.76684744477,20,20,2,11837,201701435,,,,1650.0,2.0,0.0,4.0,2.0,4.0,2.1,3809.482895691584,517.5563351347934,420.0,690.0,0.0,105142.0,1,1,3,81.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2611.205547528567,0.02310744790040167,0.02483503783006379,50067.619047619046,10,5,10,10_0,10_4,10_0_1 +1436,2,52.0,3,0.0,2,111,1,68,62,1.0,0.0,0.0,201.8894647688343,0.0,1769.3219420432229,29282.68175060325,71,71,2,11839,201701436,,,,,3.0,3.0,3.0,2.0,4.0,2.5,1728.2821060769318,0.0,150.0,1000.0,0.0,24353.0,1,1,3,47.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1971.2114068120572,0.06731662842906963,0.0809432680496061,9741.2,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +1437,1,38.0,3,226.0,5,111,2,53,53,3.0,0.0,0.0,879.6362332307439,0.0,1639.1832715150945,27565.839999999997,31,44,2,1184,201701437,,,,313.0,2.0,2.0,4.0,2.0,4.0,2.1,3613.0846449268956,1580.0,0.0,0.0,0.0,31201.0,8,1,3,82.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2518.8195047458385,0.09137466896513362,0.08072880692111914,14857.619047619048,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +1438,2,67.0,2,0.0,5,111,2,0,75,10.0,0.0,0.0,578.7497990039916,0.0,2271.809373583498,33665.240000000005,0,31,1,11840,201701438,,,230.0,,0.0,1.0,5.0,0.0,1.0,1.0,1908.1506866752954,0.0,430.0,1284.0,0.0,47607.0,0,5,1,130.0,6,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2850.5591725874897,0.08467366258453791,0.05987689147788119,47607.0,10,5,10,10_1,10_2,10_0_0 +1439,2,68.0,2,0.0,5,112,4,0,77,6.0,0.0,0.0,2436.132874877267,0.0,0.0,24196.310875301628,0,70,1,11842,201701439,,,110.0,,0.0,1.0,6.0,1.0,2.0,1.5,2661.4820534059777,0.0,1810.0,0.0,0.0,32633.0,0,5,1,103.0,4,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2436.132874877267,0.100681996004769,0.07465243388218266,21755.333333333332,6,3,6,6_1,6_0,6_0_0 +1440,2,67.0,3,0.0,4,112,2,0,75,7.0,126.91648073111057,0.0,355.32545799314835,88.46609710216114,0.0,29185.939999999995,0,33,2,11844,201701440,,,,573.0,0.0,2.0,4.0,0.0,1.0,1.0,2198.3903895372814,0.0,264.0,0.0,0.0,24338.0,0,5,3,70.0,9,2.0,1,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,570.7080358264201,0.019554211234122328,0.02344925777904594,24338.0,7,4,7,7_0,7_1,7_0_1 +1441,2,55.0,1,0.0,9,111,2,0,13,6.0,0.0,0.0,1631.2668753321811,0.0,490.10217794597276,18408.149638162544,0,44,2,11845,201701441,,,45.0,,1.0,2.0,2.0,0.0,1.0,1.0,2540.105821011304,0.0,1212.0,277.0,0.0,27148.0,0,1,1,48.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2121.369053278154,0.11524075450148849,0.07814089631936622,27148.0,7,4,7,7_0,7_3,7_0_0 +1442,2,42.0,3,0.0,9,112,4,62,34,7.0,0.0,0.0,2887.0193461943304,0.0,0.0,54198.97119129575,50,30,1,11847,201701442,,,548.0,,2.0,0.0,6.0,3.0,5.0,2.4,1930.5435523771607,0.0,2145.0,0.0,0.0,57947.0,1,1,2,140.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2887.0193461943304,0.05326705069741213,0.049821722370344115,24144.583333333336,7,4,7,7_1,7_0,7_0_0 +1443,2,30.0,2,0.0,6,112,4,52,38,7.0,0.0,0.0,807.5578590753372,0.0,0.0,44460.8645762619,30,20,2,11849,201701443,,,,736.0,2.0,0.0,3.0,1.0,3.0,1.8,3314.35666846056,0.0,600.0,0.0,0.0,50223.0,1,1,3,68.0,10,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.018163341328870614,0.016079442866322943,27901.666666666664,8,4,8,8_0,8_2,8_0_0 +1444,1,24.0,3,189.0,9,111,2,84,46,1.0,0.0,0.0,1534.3599322431405,0.0,0.0,15327.64,41,43,2,1185,201701444,,,,351.0,1.0,0.0,3.0,0.0,2.0,1.5,3870.1442447799686,0.0,1140.0,0.0,0.0,13358.0,3,4,3,69.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1534.3599322431405,0.10010412119824974,0.114864495601373,8905.333333333334,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1445,2,65.0,3,0.0,5,112,6,78,75,7.0,0.0,0.0,1011.9458881185133,3538.6438840864457,757.08940388206,23753.420595151027,71,33,1,11850,201701445,,,370.0,,0.0,1.0,5.0,1.0,3.0,2.0,1130.286871772044,729.7544325400587,450.0,0.0,0.0,52378.0,5,5,1,95.0,10,3.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5307.679176087019,0.22344904620476083,0.10133413219456679,26189.0,7,4,7,7_1,7_1,7_0_0 +1447,2,52.0,2,0.0,6,111,4,85,37,9.0,0.0,0.0,363.4010365839017,0.0,0.0,63731.72398360719,31,12,1,11852,201701447,,,620.0,,1.0,0.0,7.0,2.0,4.0,2.5,1500.101558959089,0.0,270.0,0.0,0.0,87496.0,8,1,1,150.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,363.4010365839017,0.005702043093599261,0.004153344570996408,34998.4,9,5,9,9_1,9_4,9_0_0 +1448,1,48.0,1,255.0,1,111,2,0,52,3.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,21563.75119129574,0,50,1,11853,201701448,,,400.0,170.0,1.0,0.0,6.0,3.0,4.0,2.1,541.4748493836719,1200.0,0.0,0.0,0.0,31160.0,0,1,3,93.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1913.0274719588647,0.08871496684357325,0.06139369293834611,14838.095238095237,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +1449,2,40.0,4,0.0,4,111,2,55,53,5.0,0.0,0.0,1997.359771446334,0.0,0.0,49799.7,50,50,2,11854,201701449,,,,800.0,2.0,1.0,4.0,2.0,4.0,2.1,2171.715544171445,0.0,1484.0,0.0,0.0,39480.0,1,1,3,75.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1997.359771446334,0.040107867546317226,0.05059168620684736,18800.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +1450,2,67.0,2,0.0,6,400,5,78,77,4.0,0.0,0.0,693.1538290396644,247.7050718860512,0.0,45760.22753375567,50,71,1,11856,201701450,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1473.1758073815643,0.0,515.0,0.0,0.0,26048.0,5,5,1,93.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,940.8589009257156,0.0205606254958343,0.03612019736354866,17365.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1451,2,29.0,4,0.0,99,111,4,0,43,8.0,0.0,0.0,767.1799661215703,0.0,0.0,17329.5,0,30,2,11858,201701451,,,160.0,512.0,1.0,0.0,2.0,0.0,1.0,1.0,3651.684737155977,0.0,570.0,0.0,0.0,27924.0,0,1,3,37.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,767.1799661215703,0.044270173179928464,0.027473856400285428,27924.0,8,4,8,8_0,8_3,8_0_0 +1452,2,71.0,3,0.0,99,120,4,86,77,4.0,0.0,0.0,2502.0834333684197,0.0,0.0,30521.836722052933,71,71,1,11859,201701452,,,360.0,,0.0,3.0,4.0,0.0,2.0,1.5,1251.6245408113502,0.0,1859.0,0.0,0.0,24620.0,6,5,1,80.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2502.0834333684197,0.08197683042975556,0.10162808421480178,16413.333333333332,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1453,2,47.0,3,0.0,4,111,1,0,46,9.0,0.0,0.0,726.8020731678034,452.94641716306506,0.0,43729.920000000006,0,71,2,1186,201701453,,,,374.0,2.0,0.0,4.0,3.0,4.0,2.5,806.3964314557735,0.0,540.0,0.0,0.0,77491.0,0,1,3,78.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1179.7484903308684,0.026978061938619333,0.015224329152170812,30996.4,8,4,8,8_0,8_2,8_0_1 +1454,2,75.0,3,0.0,5,211,6,0,77,7.0,0.0,0.0,2196.557376684917,150.7462294620826,0.0,30215.559999999998,0,50,1,11861,201701454,,,194.0,,0.0,3.0,5.0,0.0,1.0,1.0,2092.2802455718333,0.0,1632.0,0.0,0.0,22553.0,0,5,1,95.0,2,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2347.3036061469998,0.0776852590568237,0.10407943981496917,22553.0,6,3,6,6_1,6_1,6_0_0 +1455,1,26.0,2,202.0,9,111,2,0,43,5.0,0.0,0.0,355.7516158445857,0.0,662.9355129735097,11825.98,0,33,2,11862,201701455,,,256.0,152.0,1.0,0.0,2.0,0.0,1.0,1.0,1764.6393113896397,639.0,0.0,0.0,0.0,20331.0,0,1,3,37.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1018.6871288180954,0.08613976421557414,0.050105116758550755,20331.0,5,3,5,5_0,5_2,5_0_0 +1456,2,49.0,2,0.0,3,111,1,0,31,9.0,0.0,0.0,962.3397820647768,0.0,0.0,28838.820000000003,0,31,2,11863,201701456,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3009.659119367908,0.0,715.0,0.0,0.0,34806.0,0,1,2,42.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,962.3397820647768,0.033369596331083475,0.02764867500042455,34806.0,9,5,9,9_0,9_3,9_0_1 +1457,2,74.0,1,0.0,4,300,3,0,78,7.0,2062.392811880547,0.0,709.3049862211711,0.0,0.0,17435.38,0,71,1,11864,201701457,,,232.0,,0.0,4.0,7.0,0.0,1.0,1.0,6375.094449048539,0.0,527.0,0.0,0.0,26504.0,0,5,1,172.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2771.697798101718,0.15896973843424794,0.10457658459484297,26504.0,7,4,7,7_1,7_0,7_0_1 +1458,2,64.0,2,0.0,4,111,1,77,75,7.0,0.0,0.0,992.7630855489795,0.0,1419.5149559672611,28329.37184424755,71,71,2,11865,201701458,,,,,0.0,2.0,4.0,0.0,2.0,1.5,3482.471921255735,1190.8971271451596,245.0,104.0,0.0,37268.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2412.2780415162406,0.08515113059261384,0.06472786416003651,24845.333333333332,7,4,7,7_0,7_4,7_0_1 +1459,2,26.0,2,0.0,7,112,2,52,42,6.0,0.0,0.0,834.4764543778484,0.0,0.0,26621.291693502604,20,20,2,11866,201701459,,,76.0,480.0,2.0,0.0,2.0,0.0,2.0,1.5,2820.2959766471217,0.0,620.0,0.0,0.0,33281.0,1,1,3,45.0,9,2.0,3,3,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,834.4764543778484,0.03134620453377614,0.0250736592763994,22187.333333333332,6,3,6,6_0,6_1,6_0_0 +1460,2,58.0,3,0.0,1,112,2,21,54,5.0,1240.3706307452348,0.0,596.0449964858551,153.93100895776038,0.0,25020.780000000002,50,41,1,11867,201701460,,,174.0,,2.0,1.0,5.0,0.0,2.0,1.5,2113.959662838871,0.0,442.84999999999997,0.0,0.0,28059.0,1,1,1,100.0,4,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1990.3466361888504,0.07954774536160944,0.07093433964820024,18706.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1461,2,27.0,3,0.0,99,112,1,53,53,7.0,0.0,0.0,672.964882562781,0.0,0.0,20075.8,71,43,2,11868,201701461,,,,397.0,2.0,0.0,3.0,1.0,3.0,1.8,1016.3472575364161,0.0,500.0,0.0,0.0,46770.0,1,1,3,54.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,672.964882562781,0.03352119878474487,0.01438881510717941,25983.333333333332,7,4,7,7_0,7_2,7_0_0 +1462,2,50.0,4,0.0,99,111,1,68,63,3.0,0.0,0.0,42.311616281985145,0.0,186.7754287400462,36878.06,71,71,2,11869,201701462,61.0,61.0,,335.0,2.0,1.0,4.0,1.0,3.0,2.0,1200.452817510203,76.0,0.0,61.0,0.0,32024.0,1,1,3,81.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,229.08704502203136,0.006212014542577114,0.007153604953223563,16012.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +1463,2,42.0,4,0.0,7,112,2,0,54,4.0,0.0,0.0,847.935752029104,0.0,0.0,10436.461349499146,0,50,2,1187,201701463,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2115.1053576444438,0.0,630.0,0.0,0.0,16610.0,0,1,1,31.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,847.935752029104,0.0812474385362235,0.05104971414985575,16610.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +1464,2,62.0,3,0.0,3,112,1,77,78,9.0,0.0,0.0,436.08124390068207,0.0,601.5694602946958,25684.17240692373,50,70,2,11871,201701464,,,,704.0,1.0,4.0,4.0,1.0,3.0,2.0,2358.0870730949505,0.0,324.0,340.0,0.0,71920.0,5,5,3,74.0,10,5.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1037.6507041953778,0.04040039475500703,0.014427846276353974,35960.0,9,5,9,9_0,9_2,9_0_1 +1465,2,33.0,3,0.0,9,111,4,34,52,9.0,0.0,0.0,807.5578590753372,0.0,0.0,41256.22890559732,20,50,1,11872,201701465,,,200.0,,2.0,0.0,3.0,0.0,2.0,1.5,2838.793860084293,0.0,600.0,0.0,0.0,47421.0,1,1,3,68.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,807.5578590753372,0.019574204441302537,0.017029540901190132,31614.0,8,4,8,8_1,8_2,8_0_0 +1466,2,36.0,2,0.0,1,120,2,21,45,8.0,0.0,0.0,691.0114510951106,0.0,2288.347896763857,75992.75468474448,43,20,1,11873,201701466,,,486.0,,2.0,0.0,8.0,2.0,4.0,2.1,2325.196776783433,51.75563351347934,492.0,1263.0,0.0,61393.0,1,1,2,250.0,0,2.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2979.359347858968,0.03920583429589865,0.04852930053685221,29234.761904761905,8,4,8,8_1,8_1,8_1_0 +1467,1,18.0,3,177.0,5,111,6,0,84,2.0,0.0,0.0,538.3719060502248,0.0,0.0,9987.686360215472,0,41,2,11874,201701467,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3375.3487043907044,0.0,400.0,0.0,0.0,10557.0,0,3,3,18.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,538.3719060502248,0.05390356551390647,0.05099667576491662,10557.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1468,2,52.0,1,0.0,9,111,2,48,37,9.0,0.0,0.0,0.0,0.0,732.4992840058943,82610.78,50,31,1,11875,201701468,,,,,2.0,1.0,6.0,2.0,4.0,2.5,1621.1206788446077,0.0,0.0,414.0,0.0,101842.0,4,1,2,166.0,4,4.0,4,7,0,1,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,732.4992840058943,0.008866872870657974,0.0071925068636308626,40736.8,10,5,10,10_1,10_2,10_0_0 +1469,2,34.0,2,0.0,3,111,2,55,68,2.0,951.8736054833294,0.0,1305.5518721717951,0.0,0.0,69068.43569949955,50,71,1,11876,201701469,,,700.0,,2.0,0.0,7.0,4.0,6.0,2.9,1714.1565106292965,0.0,970.0,0.0,0.0,38707.0,4,1,1,150.0,7,6.0,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2257.4254776551243,0.032683894673344704,0.058320858698817375,13347.241379310346,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1470,2,38.0,3,0.0,3,111,1,0,46,4.0,0.0,0.0,355.32545799314835,0.0,0.0,24861.979999999996,0,30,2,11878,201701470,,,,,1.0,0.0,2.0,0.0,1.0,1.0,1772.5101162522271,0.0,264.0,0.0,0.0,17823.0,0,1,2,56.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,355.32545799314835,0.014291921158055328,0.01993634393722428,17823.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +1471,2,53.0,2,0.0,3,111,1,0,34,10.0,0.0,0.0,484.5347154452023,0.0,460.02370493123794,42700.75665845403,0,20,2,11879,201701471,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2868.767274791349,0.0,360.0,260.0,0.0,77052.0,0,1,2,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,944.5584203764403,0.022120414116582957,0.012258713860463587,77052.0,10,5,10,10_0,10_4,10_0_1 +1472,2,91.0,3,0.0,2,112,2,78,78,5.0,0.0,0.0,577.403869238866,0.0,1875.4812585658162,24027.826832554823,70,50,1,1188,201701472,,,195.0,,0.0,1.0,4.0,0.0,2.0,1.5,3257.1633161737054,0.0,429.0,1060.0,0.0,30512.0,5,5,1,128.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2452.8851278046823,0.10208518418658308,0.08039083402611046,20341.333333333332,5,3,5,5_1,5_2,5_0_1 +1473,2,57.0,1,0.0,1,111,2,75,52,8.0,0.0,0.0,592.2090966552472,0.0,1946.2541362475451,32489.76,41,41,1,11880,201701473,,,300.0,,1.0,4.0,4.0,0.0,2.0,1.5,1424.13267418556,0.0,440.0,1100.0,0.0,41839.0,5,1,1,80.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2538.4632329027922,0.07813117834366251,0.06067217746367724,27892.666666666668,8,4,8,8_1,8_3,8_1_0 +1474,2,29.0,2,0.0,9,111,6,55,52,4.0,0.0,0.0,2422.6735772260117,0.0,0.0,20104.837406777813,43,42,2,11883,201701474,,,400.0,,2.0,0.0,3.0,1.0,3.0,1.8,3488.056840897929,0.0,1800.0,0.0,0.0,30060.0,1,1,2,64.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2422.6735772260117,0.12050202288178026,0.08059459671410552,16700.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +1475,0,44.0,3,0.0,1,111,4,0,52,5.0,0.0,0.0,0.0,0.0,0.0,15535.937038047045,0,50,8,11884,201701475,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1592.9783971343566,0.0,0.0,0.0,0.0,21471.0,0,1,5,80.0,7,5.0,1,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,21471.0,6,3,6,6_0,6_2,6_1_0 +1476,2,59.0,3,0.0,2,112,4,52,75,8.0,0.0,0.0,269.1859530251124,212.31863304518674,0.0,18108.16,71,50,1,11885,201701476,,,300.0,,1.0,1.0,4.0,0.0,2.0,1.5,1961.0837385842387,0.0,200.0,0.0,0.0,44343.0,1,5,1,90.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,481.5045860702991,0.026590475568489518,0.010858638027880367,29562.0,8,4,8,8_1,8_1,8_0_1 +1477,2,63.0,3,0.0,9,211,2,0,43,9.0,0.0,0.0,339.1743008116416,0.0,1068.6704529941067,40930.64,0,30,1,11886,201701477,,,840.0,,1.0,0.0,5.0,0.0,1.0,1.0,1244.187481371308,0.0,252.0,604.0,0.0,35705.0,0,5,3,100.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1407.8447538057483,0.034395864658010436,0.03942990488183023,35705.0,9,5,9,9_1,9_2,9_0_0 +1478,2,59.0,1,0.0,1,111,2,37,37,10.0,0.0,0.0,2144.4923766394395,0.0,5196.858368697827,129089.5704859927,12,12,2,11887,201701478,,,,,2.0,3.0,8.0,0.0,2.0,1.5,3005.101056924753,2280.5200724151464,650.0,1600.0,0.0,572804.0,1,1,1,200.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,7341.350745337267,0.056870208163980716,0.01281651445404932,381869.3333333333,10,5,10,10_0,10_4,10_1_0 +1479,2,86.0,3,0.0,3,111,6,0,72,5.0,2113.159404172991,0.0,857.357260384983,123.8525359430256,0.0,18991.551191295745,0,70,1,11888,201701479,,,715.0,,0.0,3.0,5.0,0.0,1.0,1.0,2536.275483020892,0.0,637.0,0.0,0.0,19596.0,0,5,1,110.0,6,4.0,1,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3094.3692005009993,0.16293398940046658,0.1579082057818432,19596.0,5,3,5,5_1,5_2,5_0_1 +1480,2,85.0,3,0.0,1,111,2,0,86,6.0,0.0,0.0,1009.4473238441715,0.0,1946.2541362475451,14969.6,0,71,1,1189,201701480,,,,,0.0,5.0,4.0,1.0,2.0,1.5,1830.826392674343,0.0,750.0,1100.0,0.0,33540.0,0,5,3,75.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2955.7014600917164,0.1974469231036044,0.08812467084352166,22360.0,6,3,6,6_1,6_2,6_1_0 +1481,1,51.0,4,243.0,4,111,2,0,85,1.0,0.0,0.0,320.33128409988376,0.0,442.3304855108057,6458.159999999999,0,50,2,11891,201701481,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3396.6189878814334,0.0,238.0,250.0,0.0,8737.0,0,4,3,80.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,762.6617696106895,0.11809273378341348,0.0872910346355373,8737.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1482,1,60.0,3,134.0,4,111,1,77,52,2.0,0.0,0.0,389.7122552288106,0.0,726.2204367471937,11661.107849749777,71,71,2,11892,201701482,,,605.0,202.0,1.0,5.0,4.0,0.0,2.0,1.5,2668.335805040944,700.0,0.0,0.0,0.0,16408.0,5,4,3,70.0,7,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1115.9326919760042,0.09569697033545144,0.06801149999853756,10938.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1483,2,34.0,4,0.0,8,111,2,0,45,5.0,0.0,0.0,646.0462872602698,0.0,0.0,21469.579999999998,0,31,2,11893,201701483,,,,400.0,1.0,0.0,2.0,0.0,1.0,1.0,2682.185210179056,0.0,480.0,0.0,0.0,21653.0,0,1,3,56.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,646.0462872602698,0.030091240129535363,0.02983634079620698,21653.0,6,3,6,6_0,6_2,6_0_0 +1484,1,36.0,1,437.0,1,111,2,0,68,1.0,0.0,0.0,3230.231436301349,155.70033089980362,0.0,17284.67087530163,0,50,2,11894,201701484,,,1200.0,620.0,1.0,2.0,3.0,1.0,2.0,1.5,1532.5455792409643,0.0,2400.0,0.0,0.0,15194.0,0,1,3,56.0,7,6.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,3385.9317672011525,0.19589217472687723,0.22284663467165675,10129.333333333334,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +1485,2,67.0,2,0.0,9,112,4,0,74,10.0,0.0,693.9631597817199,207.27318382933655,247.7050718860512,0.0,47481.35087530163,0,60,1,11895,201701485,,,185.0,,0.0,4.0,7.0,0.0,1.0,1.0,1905.9809662244836,0.0,154.0,0.0,0.0,45450.0,0,5,1,170.0,8,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1148.9414154971078,0.024197740677482548,0.025279239064842855,45450.0,10,5,10,10_1,10_1,10_0_0 +1486,1,40.0,3,50.0,99,111,2,85,48,2.0,0.0,0.0,767.1799661215703,0.0,0.0,26410.62,30,12,2,11897,201701486,,,150.0,351.0,1.0,0.0,3.0,2.0,4.0,2.1,2455.521631425085,0.0,570.0,0.0,0.0,26146.0,6,1,3,69.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,767.1799661215703,0.029048161918257515,0.029342154292112378,12450.47619047619,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1487,1,21.0,3,133.0,2,111,2,84,54,1.0,0.0,0.0,468.38355826369553,0.0,1507.462294620826,17022.0,42,41,2,11898,201701487,,,,507.0,1.0,0.0,2.0,0.0,2.0,1.5,2701.4148096797107,0.0,348.0,852.0,0.0,11335.0,3,3,3,70.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1975.8458528845215,0.11607601062651401,0.17431370559192955,7556.666666666667,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1488,2,69.0,2,0.0,4,111,2,77,75,8.0,0.0,0.0,541.0637655804759,0.0,1289.8356957495096,21854.08,70,71,1,11899,201701488,,,,,0.0,5.0,5.0,0.0,2.0,1.5,2005.2242727341015,0.0,402.0,729.0,0.0,44030.0,5,5,1,92.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1830.8994613299856,0.08377838194652831,0.04158299934885273,29353.333333333332,8,4,8,8_1,8_2,8_0_1 +1489,2,66.0,1,0.0,6,111,6,75,74,9.0,0.0,0.0,1749.7086946632305,0.0,0.0,27634.563334663617,50,60,1,119,201701489,,,205.0,,0.0,2.0,4.0,0.0,2.0,1.5,2809.405389198291,0.0,1300.0,0.0,0.0,58479.0,5,5,1,97.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1749.7086946632305,0.06331595232657325,0.02992029095338892,38986.0,9,5,9,9_1,9_3,9_0_0 +1490,2,50.0,4,0.0,1,112,4,0,54,3.0,0.0,0.0,1896.4150390619168,0.0,0.0,17662.839999999997,0,42,1,1190,201701490,,,146.0,,1.0,0.0,5.0,0.0,1.0,1.0,1699.9191181499864,0.0,1409.0,0.0,0.0,15920.0,0,1,1,100.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1896.4150390619168,0.1073675037005327,0.11912154767976864,15920.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1491,2,53.0,3,0.0,99,111,2,0,37,10.0,0.0,0.0,1095.466346713669,0.0,3050.060086004362,42095.93446098416,0,42,2,11900,201701491,,,,671.0,1.0,3.0,4.0,0.0,1.0,1.0,2680.9670103780763,1319.768654593723,268.0,950.0,0.0,85076.0,0,1,3,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4145.526432718031,0.09847807123892774,0.04872733124169015,85076.0,10,5,10,10_0,10_4,10_0_0 +1492,2,46.0,3,0.0,1,111,6,0,46,2.0,0.0,0.0,710.6509159862967,180.47083808840873,0.0,19265.234661438775,0,71,2,11901,201701492,,,,265.0,1.0,0.0,4.0,1.0,2.0,1.5,3909.3291132112663,0.0,528.0,0.0,0.0,21010.0,0,1,3,65.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,891.1217540747054,0.04625543211567371,0.0424141720168827,14006.666666666666,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +1493,2,44.0,3,0.0,8,111,2,0,85,6.0,142.7810408224994,0.0,500.68587262670906,0.0,1047.438589689588,24200.859999999997,0,50,2,11906,201701493,,,268.0,,0.0,2.0,4.0,0.0,1.0,1.0,2608.5748290643737,0.0,372.0,592.0,0.0,21256.0,0,8,3,77.0,7,5.0,1,5,1,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1690.9055031387966,0.06986964525801136,0.07954956262414362,21256.0,6,3,6,6_0,6_2,6_0_0 +1494,2,50.0,3,0.0,4,111,2,46,46,7.0,1983.0700114236026,0.0,901.7729426341265,0.0,0.0,54436.97169350259,50,31,1,11907,201701494,,,260.0,,2.0,1.0,6.0,2.0,4.0,2.5,1903.8228522561815,0.0,670.0,0.0,0.0,60929.0,1,1,1,150.0,9,7.0,4,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2884.842954057729,0.052994185097222334,0.047347616964954764,24371.6,7,4,7,7_1,7_3,7_0_1 +1495,1,22.0,2,266.0,1,120,4,55,67,5.0,0.0,0.0,2907.2082926712137,106.15931652259337,0.0,32031.4,50,50,2,11909,201701495,,,480.0,,2.0,0.0,4.0,2.0,4.0,2.1,918.1616935939106,0.0,2160.0,0.0,0.0,39371.0,1,1,3,80.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,3013.367609193807,0.09407542627527385,0.0765377462902595,18748.095238095237,4,2,4_1,4_0_1,4_0_1,4_1_0_1 +1496,1,20.0,4,170.0,1,111,4,0,84,1.0,0.0,0.0,573.3660799434894,0.0,0.0,8725.9,0,41,2,1191,201701496,,,,185.0,0.0,0.0,1.0,0.0,1.0,1.0,2518.6763245618968,0.0,426.0,0.0,0.0,5872.0,0,3,3,25.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,573.3660799434894,0.06570853206471416,0.09764408718383674,5872.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +1497,2,46.0,1,0.0,1,111,4,85,31,10.0,0.0,0.0,5600.52054220234,0.0,3474.183928807239,146277.00308388344,30,30,1,11912,201701497,,,432.0,,1.0,2.0,8.0,1.0,3.0,2.0,2616.7627292820102,3348.7473322258647,2775.9,0.0,0.0,128128.0,6,1,1,200.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,9074.70447100958,0.06203780689850226,0.07082530337638596,64064.0,10,5,10,10_1,10_2,10_1_0 +1498,2,51.0,3,0.0,5,111,4,56,63,4.0,0.0,0.0,675.6567420930321,0.0,0.0,23771.790105765143,71,50,1,11913,201701498,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2313.5528436458867,0.0,502.0,0.0,0.0,43170.0,1,1,2,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,675.6567420930321,0.028422627790625307,0.01565107116268316,17268.0,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +1499,1,38.0,5,609.0,1,111,5,85,67,1.0,0.0,971.5484236944079,1065.976373979445,0.0,3680.1896394499036,36885.94,71,50,1,11914,201701499,,,450.0,60.0,1.0,0.0,5.0,5.0,7.0,3.2,1335.470046182222,0.0,792.0,2080.0,0.0,28638.0,6,4,3,95.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,5717.714437123756,0.1550106744500413,0.19965480959297982,8949.375,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +1500,2,42.0,2,0.0,8,111,2,0,33,6.0,0.0,485.77421184720396,1179.0344742499922,4082.887313458941,0.0,47762.87202733072,0,30,1,11915,201701500,,,125.0,,1.0,0.0,6.0,2.0,3.0,1.8,1236.857277534538,0.0,876.0,0.0,0.0,40842.0,0,1,2,165.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5747.695999556137,0.12033815714153892,0.1407300327984951,22690.0,6,3,6,6_1,6_3,6_0_0 +1501,2,47.0,2,0.0,4,112,2,52,55,9.0,0.0,0.0,646.0462872602698,0.0,0.0,40541.70250520533,50,50,2,11916,201701501,,,,587.0,2.0,1.0,3.0,0.0,2.0,1.5,1798.9280914090016,0.0,480.0,0.0,0.0,46320.0,1,1,3,71.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,646.0462872602698,0.015935351683302422,0.013947458705964373,30880.0,8,4,8,8_0,8_1,8_0_1 +1502,2,60.0,4,0.0,7,112,5,62,77,3.0,0.0,1040.94473967258,955.610133239149,0.0,0.0,20194.79087530163,71,60,1,11917,201701502,,,200.0,,1.0,3.0,4.0,0.0,2.0,1.5,3171.7257791763695,0.0,710.0,0.0,0.0,23860.0,4,5,2,100.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1996.554872911729,0.09886484515932915,0.08367790749839601,15906.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1503,1,81.0,4,263.0,4,111,1,0,72,2.0,0.0,0.0,56.5290501352736,0.0,0.0,8696.48,0,71,2,11918,201701503,,,,247.0,0.0,5.0,1.0,0.0,1.0,1.0,5003.819413085821,0.0,42.0,0.0,0.0,12764.0,0,5,3,34.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,56.5290501352736,0.0065002219444273545,0.004428788008091006,12764.0,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +1504,2,38.0,3,0.0,1,111,4,0,37,7.0,0.0,0.0,1426.6855510330956,0.0,0.0,51849.403983607204,0,20,2,11919,201701504,,,,865.0,1.0,0.0,3.0,2.0,3.0,1.6,814.5030407289534,0.0,1060.0,0.0,0.0,39257.0,0,4,3,78.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1426.6855510330956,0.027515948910119756,0.036342195048859965,24535.625,7,4,7,7_0,7_3,7_1_0 +1505,2,28.0,3,0.0,2,111,4,0,45,4.0,0.0,0.0,856.0113306198574,0.0,0.0,16533.85087530163,0,20,2,1192,201701505,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4228.568475994637,0.0,636.0,0.0,0.0,18271.0,0,1,3,30.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,856.0113306198574,0.051773258212856665,0.04685081991242173,18271.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +1506,2,88.0,3,0.0,1,112,2,0,78,4.0,1586.456009138882,0.0,861.3950496803596,212.31863304518674,0.0,10459.798413516488,0,71,1,11920,201701506,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3322.771400628261,0.0,640.0,0.0,0.0,16837.0,0,5,1,73.0,8,3.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2660.1696918644284,0.254323227532461,0.1579954678306366,16837.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +1507,2,50.0,4,0.0,5,111,1,0,31,7.0,0.0,0.0,376.8603342351573,0.0,176.9321942043223,26375.62,0,30,2,11921,201701507,,,,760.0,1.0,0.0,1.0,0.0,1.0,1.0,3989.308902451724,0.0,280.0,100.0,0.0,25127.0,0,1,3,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,553.7925284394796,0.020996379552005968,0.022039739262127576,25127.0,7,4,7,7_0,7_4,7_0_0 +1508,0,40.0,2,0.0,8,111,2,0,65,5.0,0.0,0.0,807.5578590753372,0.0,707.7287768172891,43817.6,0,42,1,11922,201701508,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2670.6778747599174,0.0,600.0,400.0,0.0,19816.0,0,1,5,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1515.2866358926262,0.034581689455666816,0.07646783588477121,19816.0,5,3,5,5_1,5_4,5_0_0 +1509,1,46.0,5,86.0,9,112,5,63,52,3.0,0.0,27.7585263912688,780.639263772826,159.23897478389006,0.0,18659.205846751298,71,71,1,11923,201701509,,,107.0,,2.0,2.0,4.0,1.0,3.0,1.8,3406.5580393431537,0.0,580.0,0.0,0.0,24540.0,4,1,2,88.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,967.6367649479848,0.05185841095785206,0.0394310010166253,13633.333333333332,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +1510,2,83.0,3,0.0,3,112,1,0,74,6.0,0.0,0.0,578.7497990039916,0.0,176.9321942043223,22352.34,0,60,2,11924,201701510,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3643.490831622066,0.0,430.0,100.0,0.0,23193.0,0,5,1,50.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,755.6819932083139,0.033807735262093984,0.03258233058286181,23193.0,6,3,6,6_0,6_2,6_0_1 +1511,2,76.0,3,0.0,5,400,2,72,71,6.0,4759.368027416646,0.0,1286.7088554600373,594.492172526523,0.0,39866.27697444815,70,70,1,11927,201701511,,,510.0,,0.0,4.0,4.0,0.0,2.0,1.5,1823.8095630078421,0.0,956.0,0.0,0.0,32700.0,5,5,1,120.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6640.569055403206,0.16657108612523328,0.2030755062814436,21800.0,6,3,6,6_1,6_0,6_0_0 +1512,2,28.0,3,0.0,1,112,5,52,63,5.0,0.0,0.0,0.0,0.0,0.0,14954.48,50,50,1,11928,201701512,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3084.2099720422775,0.0,0.0,0.0,0.0,29948.0,1,1,3,70.0,9,0.0,3,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0.0,0.0,0.0,19965.333333333332,5,3,5,5_1,5_0,5_1_0 +1513,1,42.0,2,512.0,5,111,2,85,68,2.0,0.0,0.0,1776.6272899657417,0.0,0.0,25068.179999999997,41,71,2,11929,201701513,,,360.0,,1.0,0.0,3.0,4.0,6.0,2.7,2903.730312530282,0.0,1320.0,0.0,0.0,30354.0,6,4,3,62.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1776.6272899657417,0.07087180999840204,0.058530252683855234,11242.22222222222,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1514,2,75.0,4,0.0,1,111,4,0,75,2.0,0.0,0.0,3230.231436301349,0.0,0.0,24214.78,0,30,1,1193,201701514,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2584.306262180536,0.0,2400.0,0.0,0.0,11281.0,0,5,1,55.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3230.231436301349,0.13339916515043082,0.2863426501463832,11281.0,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +1515,2,83.0,3,0.0,2,111,1,0,77,10.0,0.0,0.0,250.5293069328068,0.0,466.8559950517674,66585.16,0,41,2,11933,201701515,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3625.8693130487763,450.0,0.0,0.0,0.0,41476.0,0,5,1,115.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,717.3853019845742,0.010773951763194295,0.017296395553683435,41476.0,10,5,10,10_0,10_4,10_0_1 +1516,1,34.0,3,437.0,99,111,1,0,85,1.0,0.0,0.0,1319.0111698230507,212.31863304518674,1917.9449851748536,15570.6,0,50,1,11935,201701516,,,,18.0,0.0,2.0,5.0,3.0,4.0,2.5,1091.3263275965235,0.0,980.0,1084.0,0.0,23834.0,0,7,3,105.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,3449.274788043091,0.22152484734326816,0.14472076814815352,9533.6,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +1517,2,45.0,2,0.0,1,111,2,0,38,9.0,0.0,0.0,753.7206684703146,0.0,0.0,35953.2,0,20,2,11936,201701517,,,,,1.0,0.0,2.0,1.0,2.0,1.3,1178.7099979148377,0.0,560.0,0.0,0.0,44605.0,0,1,2,40.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,753.7206684703146,0.02096393835514821,0.016897672199760443,34311.53846153846,9,5,9,9_0,9_4,9_1_0 +1518,2,39.0,1,0.0,9,111,2,38,37,10.0,0.0,0.0,589.5172371249961,0.0,2590.2873231512785,62061.060000000005,20,20,2,11937,201701518,,,351.0,1280.0,2.0,0.0,5.0,0.0,2.0,1.5,2748.0287037757066,0.0,438.0,1464.0,0.0,89358.0,1,1,3,200.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3179.8045602762745,0.05123671043124746,0.03558500145791395,59572.0,10,5,10,10_0,10_3,10_0_0 +1519,2,52.0,4,0.0,99,111,2,0,63,6.0,0.0,0.0,59.0135700775056,0.0,109.97052327886075,22202.863983607203,0,50,1,11938,201701519,,,92.0,,1.0,0.0,2.0,0.0,1.0,1.0,2184.09429772083,106.0,0.0,0.0,0.0,23186.0,0,1,2,47.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,168.98409335636634,0.007610914226251646,0.007288195176242834,23186.0,6,3,6,6_1,6_3,6_0_0 +1520,2,52.0,5,0.0,1,120,5,0,63,6.0,0.0,777.2387389555264,640.2415621616174,0.0,1193.076431798961,36555.37130526406,0,70,1,1194,201701520,,,150.0,,1.0,2.0,8.0,0.0,2.0,1.3,2753.394856527395,1150.0,0.0,0.0,0.0,25890.0,0,1,2,200.0,0,3.0,5,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2610.556732916105,0.07141376601309965,0.10083262776809984,19915.384615384613,5,3,5,5_1,5_1,5_1_0 +1521,2,42.0,2,0.0,6,112,2,43,43,7.0,951.8736054833294,0.0,1584.1593335527864,176.9321942043223,0.0,20420.64,33,33,1,11941,201701521,,,250.0,,2.0,0.0,5.0,2.0,4.0,2.5,2349.897275593397,0.0,1177.0,0.0,0.0,60211.0,1,1,2,88.0,4,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2712.9651332404383,0.13285406986462903,0.04505763287838498,24084.4,7,4,7,7_1,7_0,7_0_0 +1522,1,49.0,4,407.0,1,111,1,85,63,1.0,111.05192063972176,0.0,740.261370819059,0.0,56.61830214538313,39476.12,60,41,2,11942,201701522,70.0,70.0,,43.0,1.0,0.0,5.0,5.0,7.0,3.4,2860.8598624778315,0.0,550.0,32.0,0.0,34084.0,6,4,3,82.0,6,4.0,4,2,1,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,907.9315936041639,0.022999514481265228,0.02663805872562387,10024.70588235294,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +1523,2,65.0,2,0.0,6,111,2,56,63,9.0,0.0,0.0,1090.2031097517051,0.0,1907.3290535225942,44444.83016615878,71,71,1,11943,201701523,,,652.0,,3.0,2.0,5.0,1.0,3.0,2.0,2521.1902647113225,0.0,810.0,1078.0,0.0,65375.0,1,1,1,99.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2997.5321632742994,0.06744388834579647,0.04585135240190133,32687.5,9,5,9,9_1,9_4,9_0_0 +1524,2,73.0,3,0.0,1,111,6,77,78,3.0,158.64560091388822,0.0,1803.545885268253,180.47083808840873,0.0,23231.8,71,50,1,11945,201701524,,,420.0,,0.0,3.0,3.0,0.0,2.0,1.5,2215.9613253737853,0.0,1340.0,0.0,0.0,22011.0,5,5,1,58.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2142.66232427055,0.09222971634873536,0.09734506947755894,14674.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +1525,2,80.0,2,0.0,4,112,2,75,74,9.0,3966.1400228472053,0.0,1281.7387481879716,0.0,698.0256915224667,39513.0709016782,50,50,1,11946,201701525,,,588.0,,0.0,2.0,6.0,0.0,2.0,1.5,1821.6117914861418,672.8232356752314,674.0,0.0,0.0,51107.0,5,5,1,100.0,10,4.0,3,1,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,5945.9044625576435,0.15047943191641702,0.11634227136317224,34071.333333333336,9,5,9,9_1,9_2,9_0_1 +1526,2,51.0,3,0.0,9,112,2,22,21,4.0,0.0,0.0,2691.859530251124,0.0,0.0,36765.92,50,50,1,11947,201701526,,,350.0,,2.0,4.0,3.0,0.0,2.0,1.5,1365.9442885055835,0.0,2000.0,0.0,0.0,35862.0,1,1,2,80.0,10,5.0,3,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2691.859530251124,0.07321616133231873,0.07506161201971792,23908.0,7,4,7,7_1,7_2,7_0_0 +1527,1,39.0,5,361.0,5,111,2,63,22,1.0,0.0,0.0,1317.665240057925,90.23541904420436,0.0,17923.579999999998,60,31,2,11948,201701527,,,272.0,,2.0,0.0,3.0,2.0,4.0,2.1,3229.4992410512996,0.0,979.0,0.0,0.0,19022.0,4,1,3,70.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1407.9006591021293,0.07855019248956567,0.07401433388193299,9058.095238095239,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1528,1,52.0,3,381.0,2,111,1,0,69,1.0,0.0,0.0,605.6683943065029,0.0,307.86201791552077,17457.587849749772,0,50,2,11949,201701528,,,,41.0,1.0,2.0,5.0,1.0,2.0,1.5,2519.8859187621933,0.0,450.0,174.0,0.0,13282.0,0,4,3,70.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,913.5304122220236,0.052328558795430476,0.06877958230853964,8854.666666666666,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1529,2,54.0,2,0.0,1,111,2,75,54,8.0,1031.1964059402735,0.0,765.8340363564447,0.0,164.54694061001973,45381.67904104552,50,60,1,1195,201701529,,,248.0,,1.0,1.0,3.0,0.0,2.0,1.5,2532.9781262316947,0.0,569.0,93.0,0.0,44858.0,5,1,1,70.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1961.577382906738,0.043223993125785114,0.04372859652473891,29905.333333333332,8,4,8,8_1,8_4,8_1_0 +1530,1,55.0,4,68.0,99,111,1,0,78,3.0,0.0,0.0,397.0492807120408,84.9274532180747,0.0,11967.156722052927,0,50,2,11952,201701530,,,,272.0,0.0,2.0,3.0,1.0,2.0,1.5,1312.0421285341013,0.0,295.0,0.0,0.0,20937.0,0,5,3,60.0,6,4.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,481.97673393011553,0.04027495796406968,0.02302033404643051,13958.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1531,2,55.0,2,0.0,7,112,5,45,54,10.0,0.0,346.98157989085996,2422.6735772260117,0.0,0.0,43657.9516935026,20,41,1,11953,201701531,,,513.0,,2.0,3.0,5.0,0.0,2.0,1.5,1941.914488500117,0.0,1800.0,0.0,0.0,64570.0,1,1,1,150.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2769.6551571168716,0.06343987864023098,0.04289383858009713,43046.666666666664,10,5,10,10_1,10_2,10_0_0 +1532,2,43.0,2,0.0,99,112,6,0,64,6.0,0.0,0.0,2434.7869451121414,0.0,0.0,13542.4,0,50,1,11954,201701532,,,288.0,,1.0,1.0,3.0,0.0,1.0,1.0,4436.056741960456,0.0,1809.0,0.0,0.0,21756.0,0,1,2,70.0,8,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2434.7869451121414,0.17978991501596037,0.11191335471190207,21756.0,6,3,6,6_1,6_1,6_0_0 +1533,2,84.0,2,0.0,4,111,1,78,74,7.0,0.0,0.0,394.0291004089754,0.0,384.94065747511945,73930.87443568092,70,60,2,11956,201701533,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2780.4448205505323,207.32000658319512,207.0,96.0,0.0,34680.0,5,5,1,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,778.9697578840949,0.01053646076595226,0.02246164238420112,23120.0,6,3,6,6_0,6_3,6_0_1 +1534,2,67.0,1,0.0,8,400,2,74,72,10.0,0.0,0.0,1206.8064011992012,0.0,1782.3491714272973,99441.41834286504,20,50,1,11958,201701534,,,569.0,,0.0,2.0,8.0,0.0,2.0,1.5,2440.87006129073,1717.9968462295262,186.0,0.0,0.0,69642.0,5,5,1,240.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2989.1555726264987,0.030059462369293244,0.04292173648985524,46428.0,10,5,10,10_1,10_0,10_0_0 +1535,2,48.0,3,0.0,6,120,2,47,47,8.0,983.602725666107,0.0,1123.8513538798443,54.84898020333991,0.0,39244.12,31,31,1,11959,201701535,,,250.0,,2.0,1.0,5.0,1.0,3.0,2.0,1887.032081341695,0.0,835.0,0.0,0.0,54849.0,1,1,1,150.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2162.303059749291,0.05509877810355516,0.03942283468703698,27424.5,8,4,8,8_1,8_0,8_0_0 +1536,2,60.0,2,0.0,6,112,5,78,74,8.0,0.0,630.1185490818017,1166.9211063638622,159.23897478389006,0.0,36868.96,60,42,1,11960,201701536,,,590.0,,0.0,3.0,4.0,0.0,2.0,1.5,1611.5085123745139,0.0,867.0,0.0,0.0,40693.0,5,5,1,90.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1956.278630229554,0.053060314970358645,0.0480740822802338,27128.666666666668,7,4,7,7_1,7_0,7_0_0 +1537,2,61.0,3,0.0,4,111,2,0,37,1.0,0.0,0.0,1924.6795641295537,0.0,0.0,23354.968161188146,0,20,1,11961,201701537,,,310.0,,1.0,2.0,4.0,0.0,1.0,1.0,3112.1471863812876,0.0,1430.0,0.0,0.0,9827.0,0,4,1,110.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1924.6795641295537,0.08240985604630509,0.19585626988191246,9827.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +1538,1,30.0,3,190.0,9,120,2,0,52,3.0,0.0,0.0,403.7789295376686,0.0,194.62541362475451,15632.76,0,71,1,11963,201701538,,,460.0,,1.0,0.0,3.0,2.0,3.0,1.6,731.3175874501584,0.0,300.0,110.0,0.0,25300.0,0,1,3,85.0,0,1.0,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,598.4043431624232,0.038278867145815784,0.02365234557954242,15812.5,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +1539,2,27.0,1,0.0,1,111,4,0,47,7.0,0.0,0.0,1021.5606917303015,0.0,0.0,67195.4,0,20,2,11964,201701539,,,,395.0,1.0,0.0,2.0,0.0,1.0,1.0,4570.255451565407,0.0,759.0,0.0,0.0,26385.0,0,1,4,40.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1021.5606917303015,0.01520283667825925,0.038717479315152604,26385.0,7,4,7,7_0,7_3,7_1_0 +1540,2,47.0,4,0.0,7,111,2,56,43,5.0,0.0,1589.1756359001388,1804.8918150333786,0.0,0.0,54635.9,71,20,1,11965,201701540,,,717.0,,2.0,1.0,6.0,2.0,4.0,2.3,1502.4912351972323,0.0,1341.0,0.0,0.0,44665.0,1,1,2,115.0,5,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3394.0674509335176,0.06212156203034118,0.07598942014851713,19419.565217391304,5,3,5,5_1,5_2,5_0_0 +1541,0,23.0,3,0.0,7,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,12474.670875301626,0,30,2,11966,201701541,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3612.0072712887663,0.0,0.0,0.0,0.0,8642.0,0,3,5,28.0,9,7.0,1,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,8642.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +1542,2,58.0,3,0.0,8,300,6,56,78,6.0,942.354869428496,0.0,807.5578590753372,0.0,0.0,34822.10089963387,50,50,1,11967,201701542,,,269.0,,1.0,0.0,3.0,0.0,2.0,1.5,1940.9458923179475,0.0,600.0,0.0,0.0,30961.0,1,5,2,103.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1749.9127285038333,0.050252933720097065,0.05651990337856766,20640.666666666668,5,3,5,5_1,5_0,5_0_0 +1543,2,23.0,2,0.0,9,111,2,0,55,3.0,0.0,0.0,672.964882562781,0.0,0.0,15270.2,0,42,8,11968,201701543,,,60.0,390.0,1.0,0.0,2.0,0.0,1.0,1.0,2814.1496874454415,0.0,500.0,0.0,0.0,15666.0,0,1,3,50.0,7,5.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,672.964882562781,0.04407046944786453,0.04295703322882555,15666.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +1544,2,32.0,3,0.0,4,111,2,0,38,10.0,0.0,0.0,1345.929765125562,0.0,0.0,80480.48,0,12,2,11970,201701544,,,,780.0,1.0,0.0,2.0,1.0,2.0,1.3,1379.6041799353472,0.0,1000.0,0.0,0.0,49050.0,0,1,3,55.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1345.929765125562,0.0167236796441269,0.027439954436810642,37730.76923076923,9,5,9,9_0,9_4,9_0_1 +1545,1,49.0,4,327.0,5,300,2,0,52,2.0,0.0,0.0,1388.99951760958,0.0,0.0,23238.829322168425,0,60,1,11971,201701545,,,240.0,,1.0,2.0,5.0,1.0,2.0,1.3,1049.8386672191093,0.0,1032.0,0.0,0.0,17244.0,0,4,3,90.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1388.99951760958,0.05977063208965346,0.08054972846262931,13264.615384615385,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +1546,2,93.0,1,0.0,5,111,4,0,75,4.0,0.0,0.0,1581.828441469218,191.08676974066807,645.2572531169102,30630.28330704275,0,41,2,11973,201701546,,,,,1.0,2.0,4.0,1.0,2.0,1.5,6904.503514885956,621.9600197495854,918.0,0.0,0.0,24629.0,0,5,1,60.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2418.172464326796,0.07894711387703003,0.0981839483668357,16419.333333333332,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +1547,2,66.0,2,0.0,4,400,2,75,34,10.0,0.0,416.377895869032,2269.7221318870916,3538.6438840864457,1691.3699448428997,39628.82549711075,41,10,1,11974,201701547,,,,,1.0,4.0,5.0,0.0,2.0,1.5,1352.3055178076302,1630.302455674599,1012.0,0.0,0.0,89278.0,5,1,1,160.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,7916.113856685469,0.19975645902658948,0.08866813612183817,59518.666666666664,10,5,10,10_1,10_0,10_0_1 +1548,2,67.0,3,0.0,5,400,6,52,77,8.0,951.8736054833294,0.0,1584.1593335527864,127.39117982711205,0.0,43810.64238259149,50,50,1,11975,201701548,,,530.0,,1.0,3.0,7.0,0.0,2.0,1.5,3427.9257318523323,0.0,1177.0,0.0,0.0,47007.0,1,5,1,131.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2663.4241188632277,0.06079399830762492,0.056660159526522175,31338.0,8,4,8,8_1,8_0,8_0_0 +1549,2,64.0,3,0.0,1,400,4,0,77,6.0,0.0,0.0,2018.894647688343,0.0,0.0,10636.8458467513,0,70,1,11977,201701549,,,,,0.0,1.0,3.0,0.0,1.0,1.0,1754.060672450364,0.0,1500.0,0.0,0.0,23030.0,0,5,1,57.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2018.894647688343,0.18980200303504002,0.08766368422441785,23030.0,6,3,6,6_1,6_0,6_1_0 +1550,2,42.0,2,0.0,9,111,2,0,85,10.0,0.0,0.0,1211.3367886130059,0.0,3184.779495677801,141504.04,0,30,1,11978,201701550,,,600.0,,0.0,0.0,7.0,4.0,5.0,2.2,781.8947478848013,0.0,900.0,1800.0,0.0,92572.0,0,6,1,190.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4396.116284290807,0.031067072602950465,0.04748861733883687,42078.181818181816,10,5,10,10_1,10_4,10_0_0 +1551,1,41.0,3,409.0,99,111,4,0,85,3.0,0.0,0.0,1480.522741638118,0.0,0.0,27873.05703804705,0,12,2,11979,201701551,,,460.0,39.0,0.0,0.0,4.0,3.0,4.0,1.9,560.1768876930628,0.0,1100.0,0.0,0.0,28073.0,0,6,3,79.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1480.522741638118,0.05311662583753146,0.05273831587782275,14775.263157894737,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +1552,1,55.0,4,230.0,99,111,1,0,67,3.0,0.0,0.0,103.63659191466827,0.0,279.55286684282925,13440.4,0,44,2,1198,201701552,999999.0,150.0,480.0,,1.0,1.0,3.0,0.0,1.0,1.0,3888.9821951154613,0.0,77.0,158.0,0.0,15751.0,0,1,3,60.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,383.1894587574975,0.02851027192326847,0.024327944813503748,15751.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +1553,2,75.0,3,0.0,2,111,2,77,78,8.0,0.0,0.0,718.1840132073794,0.0,1338.3205191483999,26432.02,71,50,2,11981,201701553,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2544.0843524192437,1290.0,0.0,0.0,0.0,43362.0,5,5,1,68.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2056.5045323557792,0.07780353269843845,0.04742642249794242,28908.0,8,4,8,8_0,8_3,8_0_1 +1554,2,38.0,2,0.0,9,300,2,52,23,10.0,4410.347705406092,0.0,1032.328129851306,0.0,0.0,49116.3,30,44,1,11982,201701554,,,465.0,,2.0,0.0,7.0,2.0,4.0,2.1,2958.1126579347974,0.0,767.0,0.0,0.0,179572.0,1,1,1,200.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5442.675835257398,0.1108120081369606,0.030309156412232408,85510.47619047618,10,5,10,10_1,10_0,10_0_0 +1555,2,74.0,3,0.0,5,112,2,77,75,10.0,0.0,0.0,5641.513774818288,0.0,3490.1284576123326,53749.49450839101,50,31,1,11983,201701555,,,1760.0,,2.0,2.0,6.0,3.0,5.0,3.0,3705.190024625745,3364.1161783761568,2800.0,0.0,0.0,121725.0,5,5,1,150.0,10,2.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,9131.64223243062,0.16989261603204564,0.07501862585689563,40575.0,9,5,9,9_1,9_1,9_0_0 +1556,2,62.0,3,0.0,6,221,4,0,78,3.0,0.0,0.0,1445.5285677448535,0.0,0.0,15907.480000000001,0,71,1,11984,201701556,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2902.6611641965783,0.0,1074.0,0.0,0.0,14295.0,0,5,1,100.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1445.5285677448535,0.09087099702434662,0.10112127091604431,14295.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1557,2,50.0,3,0.0,3,111,2,0,65,8.0,0.0,0.0,48.45347154452023,0.0,81.38880933398825,34372.44,0,50,1,11987,201701557,,,,,1.0,4.0,4.0,0.0,1.0,1.0,632.1249926647974,0.0,36.0,46.0,0.0,29484.0,0,1,1,84.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,129.84228087850846,0.003777511310762589,0.004403821763617842,29484.0,8,4,8,8_1,8_3,8_0_1 +1558,1,41.0,5,400.0,9,400,4,0,56,2.0,158.64560091388822,0.0,1026.9444107908037,95.54338487033404,0.0,18836.52,0,43,1,11988,201701558,,,,,1.0,0.0,4.0,2.0,3.0,1.8,685.5178500456965,0.0,763.0,0.0,0.0,19232.0,0,1,3,80.0,0,1.0,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1281.133396575026,0.06801327403230671,0.06661467328281125,10684.444444444443,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +1559,2,26.0,1,0.0,5,111,1,0,47,2.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,20392.800000000003,0,31,2,11989,201701559,,,,480.0,1.0,0.0,2.0,0.0,1.0,1.0,3975.988218537444,720.0,0.0,0.0,0.0,13596.0,0,1,3,47.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1147.8164831753188,0.05628537930913453,0.08442310114558096,13596.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +1560,2,35.0,3,0.0,1,400,2,69,12,9.0,0.0,0.0,627.2032705485119,212.31863304518674,0.0,18205.68,31,31,1,1199,201701560,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1747.9798627704567,0.0,466.0,0.0,0.0,57811.0,1,1,1,150.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,839.5219035936987,0.04611318575267162,0.014521836736844176,27529.04761904762,8,4,8,8_1,8_0,8_1_0 +1561,2,47.0,2,0.0,4,111,9,46,38,10.0,0.0,0.0,1076.7438121004495,0.0,0.0,33475.96,20,31,2,11990,201701561,,,15.0,,2.0,0.0,3.0,0.0,2.0,1.5,2138.050292190659,0.0,800.0,0.0,0.0,73111.0,1,1,1,67.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1076.7438121004495,0.032164688095590074,0.014727521331953462,48740.666666666664,10,5,10,10_0,10_3,10_0_1 +1562,2,54.0,2,0.0,8,112,2,0,65,7.0,0.0,0.0,1320.3570995881762,0.0,902.3541904420437,13810.56,0,60,1,11992,201701562,,,222.0,,1.0,1.0,4.0,0.0,1.0,1.0,2595.789085396679,0.0,981.0,510.0,0.0,26041.0,0,1,2,200.0,8,1.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2222.71129003022,0.16094287921925107,0.0853542986072048,26041.0,7,4,7,7_1,7_1,7_0_0 +1563,2,66.0,3,0.0,3,111,1,77,78,4.0,0.0,0.0,403.7789295376686,0.0,360.94167617681745,24100.18,71,50,2,11993,201701563,,,295.0,,0.0,0.0,3.0,0.0,2.0,1.5,2476.8453678432297,0.0,300.0,204.0,0.0,26760.0,5,5,1,58.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,764.720605714486,0.031730908470994246,0.02857700320308244,17840.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +1564,2,63.0,1,0.0,6,111,4,77,74,10.0,0.0,693.9631597817199,5248.956044321592,0.0,3315.40624202078,72684.3036223583,41,31,1,11995,201701564,,,397.0,,0.0,1.0,5.0,0.0,2.0,1.5,2519.606989348165,3195.7023680158973,2578.0,0.0,0.0,91717.0,5,5,1,135.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,9258.325446124092,0.12737723256216427,0.10094448625799025,61144.666666666664,10,5,10,10_1,10_4,10_0_0 +1565,2,70.0,3,0.0,1,300,5,78,78,3.0,0.0,763.359475759892,1755.0924137237328,247.7050718860512,0.0,43299.1,71,71,1,11996,201701565,,,123.0,,0.0,2.0,4.0,0.0,2.0,1.5,1970.2335623669858,0.0,1304.0,0.0,0.0,22470.0,4,5,1,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2766.1569613696756,0.06388486045598352,0.12310444865908658,14980.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1566,2,74.0,2,0.0,1,300,2,74,74,9.0,4283.431224674982,791.1180021511608,1413.22625338184,0.0,0.0,65180.100000000006,30,30,1,11997,201701566,,,345.0,,0.0,3.0,6.0,0.0,2.0,1.5,1836.8591865787475,0.0,1050.0,0.0,0.0,54059.0,5,5,1,300.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6487.7754802079835,0.09953613879401815,0.12001286520668128,36039.333333333336,9,5,9,9_1,9_0,9_1_0 +1567,2,61.0,4,0.0,2,111,1,56,62,6.0,0.0,0.0,421.2760164843009,0.0,0.0,29194.559999999994,70,70,2,12,201701567,,,,,3.0,2.0,4.0,1.0,3.0,2.0,2461.4647651619143,0.0,313.0,0.0,0.0,51184.0,4,1,2,90.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,421.2760164843009,0.01442994915779861,0.008230619265479465,25592.0,7,4,7,7_0,7_3,7_0_1 +1568,1,46.0,3,87.0,99,111,4,0,56,2.0,0.0,0.0,1076.7438121004495,0.0,0.0,11473.24,0,50,2,120,201701568,,,,363.0,1.0,0.0,1.0,0.0,1.0,1.0,2443.7408944133117,0.0,800.0,0.0,0.0,13544.0,0,1,3,33.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1076.7438121004495,0.09384827756592293,0.07949969079300424,13544.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1569,1,49.0,3,178.0,4,211,2,0,68,1.0,0.0,0.0,242.26735772260116,0.0,88.46609710216114,3721.5508753016284,0,71,2,1200,201701569,,,,56.0,1.0,0.0,2.0,0.0,1.0,1.0,1439.2339837413335,0.0,180.0,50.0,0.0,9982.0,0,1,3,50.0,2,3.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,330.7334548247623,0.08886979270381642,0.03313298485521562,9982.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +1570,1,46.0,3,130.0,6,211,2,0,52,3.0,0.0,485.77421184720396,847.935752029104,0.0,1061.5931652259337,20708.14,0,71,1,12002,201701570,,,396.0,,1.0,0.0,5.0,2.0,3.0,1.6,698.5518822182947,0.0,630.0,600.0,0.0,24905.0,0,1,2,92.0,4,3.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2395.3031291022417,0.11566964145993999,0.09617760004425785,15565.625,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +1571,2,35.0,1,0.0,7,111,1,0,38,8.0,0.0,0.0,726.8020731678034,0.0,0.0,46731.4,0,12,2,12003,201701571,,,,200.0,1.0,0.0,2.0,0.0,1.0,1.0,4955.208693305772,0.0,540.0,0.0,0.0,30162.0,0,1,3,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,726.8020731678034,0.015552756244576525,0.024096614056355794,30162.0,8,4,8,8_0,8_3,8_0_0 +1572,1,58.0,4,180.0,1,120,6,0,43,2.0,0.0,0.0,1615.1157181506744,0.0,0.0,18120.425846751303,0,50,1,12004,201701572,,,,,1.0,0.0,4.0,2.0,3.0,2.0,695.969640129518,0.0,1200.0,0.0,0.0,22040.0,0,4,2,120.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1615.1157181506744,0.08913232679022487,0.07328111243877833,11020.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +1573,1,20.0,3,236.0,3,111,2,0,55,2.0,0.0,0.0,444.15682249143543,0.0,583.8762408742635,9356.170875301628,0,50,2,12005,201701573,,,80.0,99.0,1.0,0.0,3.0,0.0,1.0,1.0,1372.9044878210564,0.0,330.0,330.0,0.0,11883.0,0,4,3,65.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1028.033063365699,0.1098775425403458,0.08651292294586375,11883.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1574,2,37.0,2,0.0,2,111,2,47,34,4.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,19309.31087530163,42,30,1,12006,201701574,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1997.9454875207139,600.0,0.0,0.0,0.0,26610.0,4,1,3,80.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,956.5137359794323,0.04953639941666176,0.03594564960463857,17740.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1575,2,49.0,2,0.0,1,111,2,0,35,9.0,0.0,0.0,958.7057716989377,0.0,1082.8250285304525,56438.48134949915,0,50,1,12007,201701575,,,300.0,,1.0,0.0,4.0,2.0,3.0,1.6,1734.4042999439257,0.0,712.3,612.0,0.0,49373.0,0,4,1,300.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2041.5308002293903,0.0361726742359893,0.041349134146788535,30858.125,8,4,8,8_1,8_3,8_1_0 +1576,2,40.0,3,0.0,9,111,4,85,37,7.0,0.0,0.0,2837.2199448846845,0.0,0.0,62568.520000000004,10,20,1,12008,201701576,,,,,1.0,0.0,6.0,3.0,5.0,2.4,1846.2260208824007,0.0,2108.0,0.0,0.0,65541.0,8,1,2,130.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2837.2199448846845,0.04534580560455456,0.04328923795616003,27308.75,8,4,8,8_1,8_2,8_0_0 +1577,2,46.0,1,0.0,7,111,2,46,37,9.0,1110.5192063972174,0.0,1650.6432176794447,0.0,317.0158617101641,71355.27999999998,31,50,1,12009,201701577,,,700.0,,2.0,0.0,8.0,2.0,4.0,2.5,2789.003266993276,305.5698958171358,1100.0,0.0,0.0,96342.0,1,1,1,155.0,9,7.0,4,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3078.1782857868266,0.04313875981969137,0.03195053336848754,38536.8,9,5,9,9_1,9_3,9_0_0 +1578,2,60.0,3,0.0,9,112,1,0,78,9.0,0.0,0.0,403.7789295376686,0.0,0.0,13012.56,0,71,2,1201,201701578,,,,429.0,0.0,0.0,3.0,0.0,1.0,1.0,4753.341101499035,0.0,300.0,0.0,0.0,32610.0,0,5,3,71.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,403.7789295376686,0.03102993796283503,0.012382058556812897,32610.0,9,5,9,9_0,9_0,9_0_0 +1579,1,30.0,3,379.0,9,111,4,0,85,2.0,0.0,0.0,511.45331074771354,176.9321942043223,0.0,23380.680000000004,0,60,1,12012,201701579,,,,,0.0,0.0,2.0,1.0,2.0,1.3,2151.028113736343,0.0,380.0,0.0,0.0,16558.0,0,7,3,40.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,688.3855049520358,0.029442492902346542,0.0415741940422778,12736.923076923076,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +1580,1,49.0,5,48.0,99,112,6,0,52,3.0,0.0,194.3096847388816,1749.7086946632305,0.0,0.0,20156.1,0,42,2,12013,201701580,,,210.0,,1.0,0.0,2.0,0.0,1.0,1.0,7875.652103185991,0.0,1300.0,0.0,0.0,15376.0,0,1,3,50.0,7,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1944.018379402112,0.09644814122782246,0.12643199657922163,15376.0,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +1581,2,27.0,2,0.0,99,111,2,0,38,9.0,0.0,0.0,267.23126072832724,0.0,497.9797280552186,40739.2,0,30,1,12014,201701581,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2959.993207525575,480.0,0.0,0.0,0.0,35277.0,0,1,4,125.0,4,4.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,765.2109887835459,0.018783161887900253,0.021691498392254042,35277.0,9,5,9,9_1,9_2,9_0_0 +1582,2,47.0,4,0.0,6,400,5,0,55,2.0,0.0,763.359475759892,936.7671165273911,0.0,0.0,22005.66,0,50,1,12015,201701582,,,460.0,,2.0,1.0,6.0,2.0,3.0,1.8,547.4354169019882,0.0,696.0,0.0,0.0,20539.0,0,1,1,120.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1700.126592287283,0.07725860493560671,0.08277552910498481,11410.555555555555,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1583,1,43.0,3,493.0,4,111,1,0,52,2.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,15654.700315994116,0,71,2,12016,201701583,,,450.0,,2.0,1.0,4.0,5.0,6.0,3.1,897.7767871598702,1100.0,0.0,0.0,0.0,32701.0,0,4,3,90.0,7,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1753.6085159622926,0.11201801890584027,0.053625531817445726,10548.709677419354,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1584,2,61.0,3,0.0,1,400,4,0,52,2.0,0.0,0.0,1036.3659191466827,109.69796040667983,0.0,23288.705846751294,0,70,1,12017,201701584,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2656.4739137245933,0.0,770.0,0.0,0.0,14806.0,0,1,1,50.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1146.0638795533625,0.04921114496850563,0.07740536806384996,14806.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1585,2,44.0,1,0.0,1,112,4,67,37,9.0,0.0,0.0,672.964882562781,0.0,0.0,28142.02,50,20,1,12018,201701585,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.1,189.8662315939369,0.0,500.0,0.0,0.0,71123.0,1,1,2,95.0,7,1.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,672.964882562781,0.023913169081778103,0.009461986735131827,33868.09523809524,9,5,9,9_1,9_1,9_1_0 +1586,2,43.0,4,0.0,4,112,1,21,85,7.0,0.0,0.0,2018.894647688343,0.0,4476.384513369354,35556.863786137146,31,50,2,1202,201701586,1265.0,1265.0,,,1.0,0.0,3.0,2.0,4.0,2.1,1858.4384235256646,0.0,1500.0,2530.0,0.0,49029.0,1,6,1,80.0,10,5.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,6495.279161057697,0.18267300513691723,0.13247831204098998,23347.142857142855,6,3,6,6_0,6_2,6_0_1 +1587,1,39.0,2,0.0,99,112,6,67,52,1.0,888.4153651177741,0.0,742.9532303493102,0.0,1061.5931652259337,37349.896974448144,71,50,2,12020,201701587,,,,425.0,2.0,0.0,4.0,3.0,5.0,2.8,1910.5529419866696,0.0,552.0,600.0,0.0,26772.0,4,1,3,60.0,8,1.0,4,7,1,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,2692.961760693018,0.0721009153662547,0.10058874050100919,9561.428571428572,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1588,2,51.0,3,0.0,99,111,1,0,33,10.0,0.0,0.0,1076.7438121004495,0.0,0.0,37512.26,0,20,2,12021,201701588,999999.0,500.0,,,1.0,0.0,2.0,0.0,1.0,1.0,2610.9512821371886,0.0,800.0,0.0,0.0,45060.0,0,1,1,52.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1076.7438121004495,0.02870378409886393,0.023895779229925643,45060.0,10,5,10,10_0,10_4,10_0_0 +1589,2,68.0,3,0.0,5,112,2,56,78,2.0,0.0,0.0,2056.8584231030345,159.23897478389006,1342.3570990816663,16907.807118611927,71,50,1,12022,201701589,,,180.0,,1.0,2.0,5.0,0.0,2.0,1.5,1774.7561247954548,1293.8908378369833,993.0,0.0,0.0,18331.0,1,5,1,150.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3558.4544969685912,0.21046221263380063,0.19412222448140262,12220.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1590,2,51.0,4,0.0,9,111,1,52,46,5.0,0.0,0.0,1749.7086946632305,0.0,0.0,18983.0,50,60,2,12023,201701590,,,,538.0,3.0,0.0,5.0,2.0,4.0,2.5,3359.3200207973473,0.0,1300.0,0.0,0.0,48366.0,1,1,3,84.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1749.7086946632305,0.0921724013413702,0.03617641927517741,19346.4,5,3,5,5_0,5_3,5_0_0 +1592,2,49.0,2,0.0,1,111,4,0,38,8.0,0.0,0.0,983.8746583067858,0.0,0.0,53202.62000000001,0,71,8,12025,201701592,,,,755.0,1.0,1.0,3.0,1.0,2.0,1.3,1426.9324925201731,0.0,731.0,0.0,0.0,37801.0,0,1,3,58.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,983.8746583067858,0.01849297381043989,0.02602774154934488,29077.692307692305,8,4,8,8_0,8_4,8_1_0 +1593,2,67.0,3,0.0,6,300,4,77,75,7.0,0.0,0.0,2079.4614871189933,0.0,0.0,29198.579999999998,70,42,1,12026,201701593,,,223.0,,0.0,2.0,5.0,0.0,2.0,1.5,2057.2735276852572,0.0,1545.0,0.0,0.0,40050.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2079.4614871189933,0.07121789782650367,0.05192163513405726,26700.0,7,4,7,7_1,7_0,7_0_0 +1594,2,78.0,2,0.0,5,111,2,77,74,7.0,0.0,0.0,924.6605410819569,0.0,2144.276793325062,28935.751286621788,50,12,1,12027,201701594,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1996.6246413712101,896.9251287885969,316.0,686.0,0.0,35919.0,5,5,1,80.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3068.937334407019,0.1060603992620685,0.08544050041501765,23946.0,7,4,7,7_1,7_2,7_0_0 +1595,2,63.0,3,0.0,3,111,1,78,78,6.0,0.0,0.0,1472.4471630473647,0.0,0.0,43887.58,60,44,2,12029,201701595,,,,336.0,0.0,0.0,5.0,1.0,4.0,2.5,4745.622174374636,0.0,1094.0,0.0,0.0,57273.0,7,5,3,85.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1472.4471630473647,0.03355042959870115,0.02570927248524374,22909.2,6,3,6,6_0,6_4,6_0_1 +1596,2,68.0,4,0.0,5,112,2,71,71,3.0,1586.456009138882,0.0,767.1799661215703,180.47083808840873,0.0,17976.59073454812,71,50,1,1203,201701596,,,150.0,,0.0,4.0,4.0,0.0,2.0,1.5,1252.9393629569017,0.0,570.0,0.0,0.0,20813.0,5,5,1,80.0,8,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2534.1068133488607,0.14096704156916218,0.12175596085854325,13875.333333333334,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +1597,2,62.0,3,0.0,7,111,2,75,75,8.0,0.0,0.0,115.74995980079832,0.0,3.538643884086446,35033.84,50,50,1,12032,201701597,,,123.0,,0.0,1.0,4.0,0.0,2.0,1.5,1808.60959430124,0.0,86.0,2.0,0.0,52678.0,5,5,1,90.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,119.28860368488476,0.0034049537157469687,0.0022644861931904164,35118.666666666664,9,5,9,9_1,9_3,9_0_0 +1598,2,58.0,2,0.0,3,300,6,68,69,5.0,0.0,0.0,200.54353500370874,185.7788039145384,0.0,32150.219999999998,50,71,1,12033,201701598,,,140.0,,2.0,2.0,4.0,0.0,2.0,1.5,1603.9107335192289,0.0,149.0,0.0,0.0,29164.0,1,1,1,90.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,386.32233891824717,0.012016164707994135,0.013246548447340802,19442.666666666668,5,3,5,5_1,5_0,5_0_1 +1599,2,71.0,3,0.0,7,111,4,0,77,4.0,0.0,1145.039213639838,930.0374677017633,99.08202875442048,0.0,20354.760000000002,0,70,1,12034,201701599,,,209.0,,0.0,0.0,6.0,0.0,1.0,1.0,1491.5913281114213,0.0,691.0,0.0,0.0,18954.0,0,5,1,100.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2174.158710096022,0.10681328151724813,0.11470711776385048,18954.0,5,3,5,5_1,5_3,5_0_0 +1600,2,38.0,2,0.0,2,112,2,43,43,7.0,0.0,0.0,605.6683943065029,132.69914565324171,0.0,40231.780000000006,30,20,1,12036,201701600,,,670.0,,2.0,0.0,7.0,2.0,4.0,2.1,2771.6770574864436,0.0,450.0,0.0,0.0,51852.0,1,1,2,120.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,738.3675399597446,0.018352842950516843,0.01423990472806728,24691.42857142857,7,4,7,7_1,7_0,7_0_1 +1601,2,81.0,2,0.0,6,300,2,72,72,3.0,2855.620816449988,0.0,629.895130078763,240.62778411787832,0.0,24094.880315994116,50,71,1,12037,201701601,,,105.0,,0.0,2.0,5.0,0.0,2.0,1.5,2104.9131051660756,0.0,468.0,0.0,0.0,22952.0,5,5,5,110.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3726.1437306466296,0.15464462499003265,0.16234505623242548,15301.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1602,2,42.0,3,0.0,7,111,2,0,46,9.0,0.0,0.0,915.2322402853821,0.0,0.0,36370.32753375566,0,31,2,12038,201701602,,,,800.0,1.0,0.0,2.0,0.0,1.0,1.0,4899.689014814601,0.0,680.0,0.0,0.0,40546.0,0,1,3,51.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,915.2322402853821,0.025164256204070364,0.022572688804947026,40546.0,9,5,9,9_0,9_4,9_0_0 +1603,2,43.0,3,0.0,2,111,2,56,63,3.0,0.0,0.0,80.75578590753372,0.0,212.31863304518674,42822.31999999999,43,43,2,12039,201701603,,,,414.0,2.0,0.0,4.0,2.0,4.0,2.5,1942.2014184501563,0.0,60.0,120.0,0.0,34673.0,1,1,3,70.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,293.07441895272046,0.006843964057825931,0.008452525566080825,13869.2,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +1604,2,37.0,3,0.0,3,221,2,22,22,1.0,3172.912018277764,0.0,0.0,0.0,0.0,14235.039999999999,60,31,3,1204,201701604,,,,,2.0,0.0,4.0,3.0,5.0,2.4,621.1197423211709,0.0,0.0,0.0,0.0,22120.0,1,1,3,90.0,1,3.0,4,9,1,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,3172.912018277764,0.22289449262367822,0.1434408688190671,9216.666666666668,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +1605,2,58.0,2,0.0,2,112,2,0,52,2.0,1903.7472109666587,0.0,711.9968457514223,0.0,0.0,13099.68,0,71,1,12040,201701605,,,95.0,,1.0,2.0,5.0,0.0,1.0,1.0,1418.5554361074544,0.0,529.0,0.0,0.0,11781.0,0,1,5,100.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2615.744056718081,0.19967999651274543,0.22203073225686115,11781.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +1606,2,51.0,3,0.0,7,111,4,54,43,8.0,0.0,749.4802125642576,2131.95274795889,47.77169243516702,0.0,38699.7,50,50,1,12041,201701606,,,500.0,,2.0,2.0,7.0,0.0,2.0,1.5,2105.0146836187455,0.0,1584.0,0.0,0.0,46460.0,1,1,3,115.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2929.204652958315,0.07569062946116675,0.0630478831889435,30973.333333333332,8,4,8,8_1,8_2,8_0_0 +1607,2,59.0,3,0.0,99,211,1,0,68,2.0,0.0,0.0,323.0231436301349,53.079658261296686,0.0,13383.0,0,71,8,12042,201701607,,,,358.0,2.0,2.0,4.0,1.0,2.0,1.5,5025.500626235969,0.0,240.0,0.0,0.0,18423.0,0,1,3,80.0,1,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,376.10280189143157,0.028103026368634206,0.02041485110413242,12282.0,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +1608,1,77.0,3,28.0,3,111,1,0,78,3.0,0.0,0.0,244.95921725285228,0.0,2087.799891611003,12450.835368876691,0,70,2,12043,201701608,1000.0,1000.0,,347.0,0.0,4.0,4.0,0.0,1.0,1.0,5174.285316629702,0.0,182.0,1180.0,0.0,14976.0,0,5,3,104.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2332.7591088638555,0.18735763824289614,0.15576650032477668,14976.0,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +1609,1,66.0,4,87.0,1,111,2,0,77,2.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,12049.32,0,50,1,12044,201701609,,,176.0,283.0,0.0,3.0,2.0,0.0,1.0,1.0,2083.2871930589044,1300.0,0.0,0.0,0.0,13256.0,0,5,3,39.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,2072.4464279554363,0.1719969614845847,0.156340255579016,13256.0,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +1610,2,47.0,5,0.0,4,111,6,0,63,1.0,0.0,0.0,7268.020731678034,0.0,0.0,26449.4,0,50,1,12046,201701610,,,2800.0,,2.0,0.0,5.0,3.0,4.0,2.5,1159.4050408188486,0.0,5400.0,0.0,0.0,17070.0,0,1,2,140.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,7268.020731678034,0.2747896259150693,0.4257774300924449,6828.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +1611,1,20.0,3,200.0,99,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,13553.191191295746,0,41,2,12047,201701611,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2851.9676813104757,0.0,0.0,0.0,0.0,2402.0,0,3,3,24.0,7,5.0,1,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,2402.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1612,2,34.0,3,0.0,4,111,2,63,42,6.0,0.0,0.0,194.8561276144053,0.0,363.11021837359687,35329.759999999995,50,31,1,12049,201701612,,,320.0,,2.0,0.0,6.0,0.0,2.0,1.5,3347.641011433004,350.0,0.0,0.0,0.0,34261.0,1,1,2,120.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,557.9663459880021,0.015793097546884047,0.01628575774168886,22840.666666666668,6,3,6,6_1,6_2,6_0_1 +1613,2,82.0,2,0.0,4,111,2,0,77,8.0,1286.6158234116335,0.0,566.6364311178615,69.0035557396857,0.0,21659.0,0,70,1,1205,201701613,,,135.0,,0.0,3.0,4.0,0.0,1.0,1.0,3075.9420467625346,0.0,421.0,0.0,0.0,28055.0,0,5,5,60.0,8,7.0,1,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1922.2558102691808,0.08875090310121339,0.06851740546316809,28055.0,8,4,8,8_1,8_3,8_0_1 +1614,2,62.0,3,0.0,2,111,2,0,31,10.0,0.0,0.0,753.7206684703146,0.0,1387.1484025618868,31686.6,0,20,1,12050,201701614,,,85.0,,1.0,2.0,4.0,0.0,1.0,1.0,1720.7403583601458,0.0,560.0,784.0,0.0,61310.0,0,1,1,110.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2140.8690710322016,0.06756386204364627,0.03491875829444139,61310.0,10,5,10,10_1,10_3,10_0_1 +1615,2,44.0,3,0.0,7,120,1,0,64,7.0,0.0,0.0,1333.8163972394318,0.0,0.0,14425.979999999998,0,71,2,12051,201701615,380.0,380.0,220.0,378.0,1.0,1.0,2.0,0.0,1.0,1.0,3923.2917451328144,0.0,991.0,0.0,0.0,26718.0,0,1,3,52.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1333.8163972394318,0.09245932666199676,0.04992201501756987,26718.0,7,4,7,7_0,7_0,7_0_0 +1616,1,33.0,5,346.0,99,111,1,0,85,1.0,0.0,0.0,597.5928157157495,0.0,0.0,11286.84,0,71,2,12053,201701616,,,,,0.0,0.0,4.0,2.0,3.0,1.6,667.8467278361759,0.0,444.0,0.0,0.0,14202.0,0,6,3,65.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,597.5928157157495,0.05294598095797844,0.04207807461736019,8876.25,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1617,2,79.0,3,0.0,3,112,1,77,77,8.0,0.0,0.0,759.1043875308169,0.0,0.0,38445.24,70,33,2,12054,201701617,,,210.0,508.0,0.0,1.0,2.0,0.0,2.0,1.5,2093.938781191222,0.0,564.0,0.0,0.0,44326.0,5,5,3,64.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,759.1043875308169,0.01974508125143235,0.01712548814535074,29550.666666666668,8,4,8,8_0,8_1,8_0_1 +1618,1,25.0,2,311.0,99,111,1,0,56,3.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,14264.279999999999,0,50,2,12056,201701618,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2309.315585430308,500.0,0.0,0.0,0.0,18212.0,0,4,3,54.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,797.0947799828602,0.055880477667492524,0.043767558751529774,14009.23076923077,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1619,2,52.0,3,0.0,1,111,1,0,46,7.0,0.0,0.0,538.3719060502248,0.0,0.0,12069.020315994116,0,41,2,12057,201701619,,,,349.0,1.0,0.0,2.0,0.0,1.0,1.0,3200.9438999833383,0.0,400.0,0.0,0.0,26700.0,0,1,3,40.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,538.3719060502248,0.044607755389786126,0.020163741799633886,26700.0,7,4,7,7_0,7_2,7_1_0 +1620,2,63.0,1,0.0,5,111,2,77,78,7.0,0.0,0.0,457.61612014269105,0.0,1390.6870464459732,30343.470875301628,71,71,1,12058,201701620,,,505.0,,0.0,3.0,5.0,0.0,2.0,1.5,2144.597886424439,0.0,340.0,786.0,0.0,39614.0,5,5,1,110.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1848.3031665886642,0.06091271411185558,0.04665782719716929,26409.333333333332,7,4,7,7_1,7_3,7_0_0 +1621,2,56.0,1,0.0,1,112,2,46,38,10.0,0.0,0.0,1323.351472398404,0.0,2466.0371116401134,74044.04,42,31,1,12059,201701621,,,399.0,,2.0,4.0,5.0,0.0,2.0,1.5,1426.24765919985,2377.0,0.0,0.0,0.0,70980.0,1,1,2,149.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3789.3885840385174,0.051177496312174726,0.053386708707220586,47320.0,10,5,10,10_1,10_0,10_1_0 +1622,2,71.0,3,0.0,1,400,6,72,56,4.0,0.0,0.0,2974.504780927492,175.16287226227908,0.0,34513.18,71,70,1,1206,201701622,,,,,1.0,5.0,6.0,0.0,2.0,1.5,1779.9591416753422,0.0,2210.0,0.0,0.0,24442.0,5,1,1,124.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3149.667653189771,0.09125985067703907,0.1288629266504284,16294.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1623,2,29.0,4,0.0,99,221,4,0,62,4.0,0.0,0.0,888.3136449828709,0.0,0.0,13445.36,0,43,2,12061,201701623,,,200.0,,1.0,0.0,2.0,0.0,1.0,1.0,4416.578669078964,0.0,660.0,0.0,0.0,17561.0,0,1,3,40.0,1,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,888.3136449828709,0.06606841653796335,0.05058445674977911,17561.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +1624,2,69.0,3,0.0,4,111,1,0,77,8.0,0.0,0.0,191.12202664782978,0.0,0.0,21953.86,0,71,2,12062,201701624,,,,649.0,0.0,3.0,1.0,0.0,1.0,1.0,3905.573599333034,0.0,142.0,0.0,0.0,32790.0,0,5,3,29.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,191.12202664782978,0.008705622913138271,0.0058286680892903255,32790.0,9,5,9,9_0,9_4,9_0_1 +1625,0,52.0,4,0.0,4,111,2,0,37,4.0,0.0,0.0,596.2468859506239,0.0,2116.1090426836945,29367.008161188143,0,31,1,12063,201701625,,,350.0,,1.0,0.0,6.0,0.0,1.0,1.0,2124.4985518143117,0.0,443.0,1196.0,0.0,16791.0,0,4,5,185.0,4,4.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2712.3559286343184,0.09236064885285136,0.16153629495767485,16791.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1626,1,46.0,4,379.0,99,111,2,0,85,1.0,0.0,0.0,215.3487624200899,0.0,707.7287768172891,12023.167849749774,0,71,2,12064,201701626,,,200.0,,0.0,0.0,3.0,1.0,2.0,1.5,1099.1613629867663,0.0,160.0,400.0,0.0,13428.0,0,6,3,64.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,923.077539237379,0.07677490248600248,0.06874274197478247,8952.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1627,2,61.0,2,0.0,7,221,2,46,75,10.0,0.0,0.0,525.6018966184662,0.0,430.17150207794015,25825.488871361835,50,50,1,12067,201701627,,,482.0,,1.0,2.0,5.0,0.0,2.0,1.5,2446.930383566891,414.64001316639025,219.0,0.0,0.0,57584.0,1,5,1,190.0,1,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,955.7733986964063,0.03700891795145353,0.01659789869922906,38389.333333333336,9,5,9,9_1,9_1,9_0_0 +1628,2,66.0,1,0.0,1,111,2,0,75,8.0,0.0,0.0,215.3487624200899,0.0,1893.1744779862486,20525.22,0,33,1,12068,201701628,,,85.0,,0.0,1.0,4.0,0.0,1.0,1.0,2083.819130304693,0.0,160.0,1070.0,0.0,30784.0,0,5,5,72.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2108.5232404063386,0.10272841121344076,0.06849412813170279,30784.0,8,4,8,8_1,8_2,8_1_0 +1629,1,39.0,3,91.0,4,400,2,64,52,5.0,0.0,0.0,834.4764543778484,0.0,1415.4575536345783,31199.14,50,50,1,1207,201701629,,,600.0,,2.0,1.0,7.0,2.0,4.0,2.5,2573.2963042125803,0.0,620.0,800.0,0.0,47106.0,4,1,3,100.0,0,1.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,2249.9340080124266,0.07211525727992588,0.047763215047179265,18842.4,5,3,5,5_1,5_1,5_0_1 +1630,2,71.0,3,0.0,5,111,2,77,75,8.0,0.0,0.0,886.9677152177453,0.0,1686.1638107671915,29997.739999999998,41,33,1,12070,201701630,,,,,0.0,2.0,7.0,0.0,2.0,1.5,2142.3823268108317,0.0,659.0,953.0,0.0,43180.0,5,5,1,120.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2573.131525984937,0.08577751277212674,0.05959081810988738,28786.666666666668,8,4,8,8_1,8_2,8_0_0 +1631,2,36.0,2,0.0,99,111,2,43,69,4.0,0.0,0.0,1074.0519525701984,0.0,2630.9817278182722,23447.38,44,60,1,12071,201701631,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1868.223623230175,0.0,798.0,1487.0,0.0,36970.0,1,1,2,125.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3705.0336803884707,0.15801482640655248,0.10021730268835463,17604.761904761905,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1632,2,57.0,2,0.0,7,112,4,78,52,5.0,0.0,0.0,2140.0283265496437,0.0,0.0,22013.021750603257,50,71,1,12072,201701632,,,446.0,,1.0,2.0,5.0,0.0,2.0,1.5,2596.578513335828,0.0,1590.0,0.0,0.0,29366.0,5,1,1,100.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2140.0283265496437,0.09721647263129593,0.07287435560000148,19577.333333333332,5,3,5,5_1,5_0,5_0_0 +1633,2,62.0,2,0.0,4,211,5,85,37,10.0,0.0,693.9631597817199,734.8859670029,0.0,1369.444252151851,50024.28584675131,43,30,1,12074,201701633,,,340.0,,1.0,2.0,4.0,1.0,3.0,1.8,1098.2084683264136,1320.0,0.0,0.0,0.0,133530.0,6,1,5,80.0,4,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2798.2933789364706,0.055938697206173074,0.02095628981454707,74183.33333333333,10,5,10,10_1,10_2,10_0_1 +1634,2,90.0,4,0.0,1,111,2,0,86,4.0,0.0,0.0,1655.4936111044412,0.0,0.0,8832.880315994116,0,70,1,12078,201701634,,,,,0.0,3.0,4.0,0.0,1.0,1.0,1831.9423862233,0.0,1230.0,0.0,0.0,16190.0,0,6,1,85.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1655.4936111044412,0.18742398310398933,0.10225408345302293,16190.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +1635,2,84.0,3,0.0,1,300,2,0,71,2.0,1586.456009138882,0.0,646.0462872602698,123.8525359430256,0.0,14061.0,0,70,1,12079,201701635,,,90.0,,0.0,2.0,4.0,0.0,1.0,1.0,2190.9659371662415,0.0,480.0,0.0,0.0,13260.0,0,5,1,100.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2356.3548323421774,0.16758088559435155,0.17770398433953072,13260.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1636,2,34.0,2,0.0,6,111,6,0,38,9.0,0.0,0.0,403.7789295376686,0.0,0.0,28602.82753375566,0,30,2,1208,201701636,,,,,1.0,0.0,1.0,0.0,1.0,1.0,6015.075845083256,0.0,300.0,0.0,0.0,37933.0,0,1,2,27.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,403.7789295376686,0.014116748739653394,0.010644529289475353,37933.0,9,5,9,9_0,9_3,9_0_0 +1637,2,53.0,9,0.0,1,300,6,0,54,1.0,0.0,0.0,605.6683943065029,70.77287768172891,0.0,13287.96,0,31,1,12080,201701637,,,,,1.0,1.0,3.0,0.0,1.0,1.0,1534.0865793837406,0.0,450.0,0.0,0.0,5820.0,0,4,1,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,676.4412719882318,0.05090632963887849,0.11622702267839036,5820.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +1638,1,39.0,2,596.0,5,111,1,0,52,3.0,0.0,0.0,686.4241802140366,0.0,0.0,18760.200000000004,0,71,2,12081,201701638,,,,,1.0,0.0,4.0,4.0,5.0,2.6,599.8531031792413,0.0,510.0,0.0,0.0,35162.0,0,1,3,145.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,686.4241802140366,0.0365893849859829,0.019521761566862993,13523.846153846154,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +1639,2,88.0,2,0.0,1,111,2,0,77,7.0,0.0,0.0,403.7789295376686,0.0,2204.5751397858558,17229.160000000003,0,70,2,12082,201701639,,,300.0,495.0,0.0,1.0,3.0,0.0,1.0,1.0,2931.881905529658,0.0,300.0,1246.0,0.0,24040.0,0,5,3,80.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2608.3540693235245,0.151391830438833,0.10850058524640285,24040.0,7,4,7,7_0,7_2,7_1_0 +1640,2,35.0,3,0.0,8,111,6,0,47,3.0,0.0,0.0,942.1508355878933,2963.6142529223985,0.0,37427.24,0,31,1,12086,201701640,,,75.0,,2.0,3.0,5.0,4.0,6.0,3.5,1753.9532331564724,0.0,700.0,0.0,0.0,64660.0,0,1,1,,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3905.7650885102917,0.10435621457821341,0.06040465648794141,18474.285714285714,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +1641,2,75.0,2,0.0,7,112,4,75,74,10.0,0.0,0.0,889.096602592264,0.0,1656.8124671006406,42177.56026918889,60,44,1,12087,201701641,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1581.3981779044648,1596.9926874616147,0.0,0.0,0.0,62033.0,5,5,2,102.0,8,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2545.9090696929047,0.06036169596923593,0.041041204998837795,41355.333333333336,10,5,10,10_1,10_0,10_0_0 +1642,2,55.0,2,0.0,7,400,2,34,31,10.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,76765.98719216068,10,10,1,12089,201701642,,,640.0,,2.0,2.0,6.0,2.0,4.0,2.5,1994.407047449044,1700.0,0.0,0.0,0.0,313410.0,1,1,1,150.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2710.1222519417247,0.035303685278712624,0.008647210529152627,125364.0,10,5,10,10_1,10_0,10_0_0 +1643,2,66.0,2,0.0,1,111,2,0,75,8.0,0.0,0.0,601.6306050111261,0.0,973.1270681237726,16390.624177580943,0,50,1,12091,201701643,,,180.0,,0.0,1.0,4.0,0.0,1.0,1.0,2371.513650334878,0.0,447.0,550.0,0.0,28440.0,0,5,3,90.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1574.7576731348986,0.09607673607017654,0.05537122620024257,28440.0,8,4,8,8_1,8_3,8_1_0 +1644,2,79.0,3,0.0,4,111,2,0,86,1.0,0.0,0.0,582.7875882993683,0.0,2422.201738657172,18099.461349499143,0,60,1,12092,201701644,,,187.0,,0.0,3.0,6.0,0.0,1.0,1.0,1197.4245324755545,0.0,433.0,1369.0,0.0,9679.0,0,5,1,110.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3004.98932695654,0.1660264506733343,0.3104648545259366,9679.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +1645,2,83.0,1,0.0,2,111,1,0,74,7.0,0.0,0.0,1277.0703958293227,0.0,1376.5488066494086,44048.53638835787,0,41,2,12093,201701645,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3077.053931093269,1326.8480421324489,400.0,0.0,0.0,42083.0,0,5,1,73.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2653.6192024787315,0.060243073210943035,0.06305679734046364,42083.0,10,5,10,10_0,10_4,10_0_1 +1646,2,67.0,4,0.0,5,111,4,77,77,7.0,0.0,0.0,2010.8190690975896,127.39117982711205,0.0,61949.22000000001,70,50,1,12094,201701646,,,549.0,,0.0,4.0,5.0,0.0,2.0,1.5,846.8363008862851,0.0,1494.0,0.0,0.0,36451.0,5,5,1,100.0,4,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2138.210248924702,0.034515531413062205,0.05865985155207544,24300.666666666668,7,4,7,7_1,7_1,7_0_0 +1647,1,60.0,4,257.0,7,112,4,0,78,3.0,0.0,0.0,816.9793674312161,0.0,0.0,11395.88,0,71,2,12095,201701647,,,,143.0,0.0,0.0,2.0,0.0,1.0,1.0,8565.899242514408,0.0,607.0,0.0,0.0,14954.0,0,7,3,27.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,816.9793674312161,0.0716907660866222,0.05463283184641007,14954.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +1648,2,50.0,2,0.0,1,111,2,42,37,7.0,0.0,0.0,1682.4122064069525,0.0,3697.882858870336,88253.08476518298,20,31,1,12097,201701648,,,750.0,,2.0,0.0,8.0,5.0,7.0,3.6,1288.8238444773417,0.0,1250.0,2090.0,0.0,87071.0,1,1,1,180.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,5380.295065277289,0.06096438531970598,0.061792044024730264,24186.388888888887,7,4,7,7_1,7_2,7_1_0 +1649,2,56.0,3,0.0,7,111,1,56,47,4.0,0.0,0.0,1022.9066214954271,0.0,0.0,30446.41869371046,71,41,2,12098,201701649,,,,,2.0,2.0,3.0,0.0,2.0,1.5,1636.9739761147612,0.0,760.0,0.0,0.0,27540.0,4,1,1,82.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1022.9066214954271,0.03359694392256178,0.03714257884878094,18360.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +1650,2,68.0,3,0.0,5,112,2,77,78,4.0,0.0,0.0,1971.7871059089482,102.62067263850693,0.0,19870.82,50,70,1,12099,201701650,,,335.0,,0.0,2.0,4.0,0.0,2.0,1.5,2245.9326434464924,0.0,1465.0,0.0,0.0,21755.0,5,5,1,80.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2074.407778547455,0.10439467412756269,0.09535315001367295,14503.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1651,2,60.0,3,0.0,7,112,5,52,78,8.0,0.0,1249.133687607096,2691.859530251124,159.23897478389006,0.0,42801.8658467513,42,50,1,121,201701651,,,,,1.0,3.0,4.0,0.0,2.0,1.5,2478.5925457114813,0.0,2000.0,0.0,0.0,43180.0,1,5,1,120.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4100.23219264211,0.09579564141719119,0.09495674369249907,28786.666666666668,8,4,8,8_1,8_0,8_0_0 +1652,2,36.0,2,0.0,1,111,1,0,34,10.0,0.0,0.0,1991.9760523858317,0.0,0.0,28103.318839019725,0,20,2,1210,201701652,,,,340.0,1.0,0.0,2.0,0.0,1.0,1.0,3481.9114150657165,0.0,1480.0,0.0,0.0,50197.0,0,1,3,50.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1991.9760523858317,0.07088045592750761,0.03968316936043652,50197.0,10,5,10,10_0,10_3,10_1_0 +1653,2,68.0,3,0.0,5,112,4,0,64,1.0,0.0,0.0,1004.0636047836692,106.15931652259337,0.0,16162.64,0,50,2,12100,201701653,,,400.0,,1.0,3.0,1.0,0.0,1.0,1.0,3000.1751935127495,0.0,746.0,0.0,0.0,8955.0,0,5,1,50.0,7,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1110.2229213062626,0.06869069170050578,0.12397799232900755,8955.0,1,1,1_0,1_0_0,1_0_0,1_0_0_0 +1654,1,51.0,3,260.0,4,111,2,0,52,1.0,0.0,0.0,3257.15003160386,0.0,778.5016544990181,13469.02,0,41,2,12101,201701654,,,,,1.0,0.0,3.0,1.0,2.0,1.5,910.0442599144872,0.0,2420.0,440.0,0.0,14226.0,0,1,3,60.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,4035.651686102878,0.29962474523780336,0.2836814063055587,9484.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1655,2,88.0,3,0.0,3,112,1,86,74,8.0,0.0,0.0,511.45331074771354,0.0,0.0,31248.16,60,70,2,12103,201701655,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2284.0374412612014,0.0,380.0,0.0,0.0,40348.0,6,5,1,70.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,511.45331074771354,0.016367469660540448,0.01267605112391478,26898.666666666668,7,4,7,7_0,7_1,7_0_1 +1656,2,50.0,3,0.0,8,112,4,45,53,7.0,0.0,190.14590578019127,2473.818908300783,265.39829130648343,0.0,55950.150875301624,43,60,1,12106,201701656,,,576.0,,2.0,0.0,5.0,2.0,4.0,2.5,1767.6780362022475,0.0,1838.0,0.0,0.0,62016.0,1,1,2,130.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2929.3631053874574,0.05235666141305406,0.047235602189555234,24806.4,7,4,7,7_1,7_0,7_0_0 +1657,1,23.0,2,33.0,2,111,6,0,43,4.0,0.0,0.0,1749.7086946632305,0.0,0.0,14162.580000000002,0,44,2,12109,201701657,,,,384.0,1.0,0.0,3.0,0.0,1.0,1.0,3694.0842613822388,0.0,1300.0,0.0,0.0,17947.0,0,1,3,62.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1749.7086946632305,0.12354448798617415,0.09749310161382016,17947.0,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +1658,2,44.0,4,0.0,9,112,4,43,47,7.0,0.0,0.0,1615.1157181506744,0.0,0.0,46672.56970734245,33,31,1,1211,201701658,,,,,2.0,1.0,6.0,0.0,2.0,1.5,2480.6480152969675,0.0,1200.0,0.0,0.0,45105.0,1,1,2,100.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.03460524518530179,0.03580790861657631,30070.0,8,4,8,8_1,8_1,8_0_0 +1659,2,45.0,4,0.0,9,111,6,54,64,7.0,0.0,0.0,1780.6650792611185,81.38880933398825,0.0,25578.300000000003,50,71,1,12110,201701659,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1534.6949991276954,0.0,1323.0,0.0,0.0,44575.0,1,1,3,75.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1862.0538885951069,0.0727981878621764,0.04177350282883022,24763.888888888887,7,4,7,7_1,7_3,7_0_0 +1660,2,63.0,3,0.0,1,111,1,85,78,6.0,0.0,0.0,511.45331074771354,0.0,1574.6965284184685,17823.8,70,70,1,12111,201701660,,,450.0,315.0,0.0,3.0,3.0,0.0,2.0,1.5,2037.6155595524035,0.0,380.0,890.0,0.0,32078.0,6,5,3,67.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2086.149839166182,0.11704293355884729,0.06503366292057429,21385.333333333332,6,3,6,6_1,6_3,6_1_0 +1661,2,38.0,3,0.0,5,111,6,55,56,5.0,0.0,0.0,1009.4473238441715,0.0,2530.1303771218086,48512.18,41,43,1,12112,201701661,,,1340.0,,2.0,0.0,5.0,2.0,4.0,2.1,1819.116192815803,0.0,750.0,1430.0,0.0,39848.0,1,1,2,114.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3539.57770096598,0.07296266011888107,0.08882698506740565,18975.238095238095,5,3,5,5_1,5_2,5_0_0 +1662,2,46.0,2,0.0,1,211,2,0,43,5.0,2379.684013708323,0.0,847.935752029104,0.0,0.0,64775.07119129575,0,33,1,12113,201701662,,,300.0,,1.0,0.0,4.0,3.0,4.0,2.1,512.9247599797911,0.0,630.0,0.0,0.0,39039.0,0,1,2,117.0,2,3.0,2,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3227.6197657374273,0.04982811606961451,0.08267680436838616,18590.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +1663,1,24.0,3,461.0,9,112,2,81,52,2.0,0.0,0.0,699.8834778652922,0.0,1300.4516274017687,19399.1,50,42,1,12114,201701663,,,,,2.0,0.0,4.0,3.0,6.0,2.9,1142.8770554959615,0.0,520.0,735.0,0.0,32272.0,4,1,3,94.0,4,0.0,5,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2000.335105267061,0.10311484065070343,0.06198361134317864,11128.275862068966,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +1664,2,56.0,2,0.0,8,111,2,43,47,8.0,0.0,0.0,2106.3800824215045,0.0,2025.8736236394902,62812.445846751296,44,50,1,12115,201701664,,,900.0,,2.0,2.0,7.0,2.0,5.0,3.0,3503.785051602775,0.0,1565.0,1145.0,0.0,87530.0,1,1,2,176.0,8,7.0,5,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4132.253706060995,0.06578718039642645,0.04720957050223917,29176.666666666668,8,4,8,8_1,8_3,8_0_0 +1665,2,45.0,3,0.0,1,111,1,0,85,8.0,0.0,0.0,1207.298999317629,0.0,2087.799891611003,27496.6,0,50,1,12119,201701665,,,100.0,,0.0,2.0,7.0,1.0,2.0,1.5,3225.091234740422,0.0,897.0,1180.0,0.0,42460.0,0,1,2,170.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3295.0988909286325,0.11983659401266457,0.0776047784015222,28306.666666666668,8,4,8,8_1,8_3,8_1_0 +1666,2,84.0,4,0.0,1,400,2,0,71,1.0,0.0,0.0,484.5347154452023,1845.4027855510815,0.0,9797.527127683115,0,50,1,1212,201701666,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2326.6426300171047,0.0,360.0,0.0,0.0,9620.0,0,5,1,84.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2329.9375009962837,0.23780873179855733,0.24219724542580912,9620.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +1667,2,52.0,2,0.0,1,120,2,0,67,4.0,1613.425761294243,0.0,1195.3659994004179,0.0,248.6391282010494,17606.115497396913,0,70,1,12120,201701667,,,191.0,,1.0,0.0,3.0,0.0,1.0,1.0,3465.301712297551,239.66192761017356,789.0,0.0,0.0,17814.0,0,1,1,40.0,0,0.0,1,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3057.4308888957107,0.17365732318112737,0.17163078976623503,17814.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1668,1,38.0,3,102.0,9,111,2,0,62,2.0,0.0,0.0,672.964882562781,0.0,0.0,26094.5,0,60,2,12122,201701668,,,341.0,295.0,1.0,0.0,2.0,0.0,1.0,1.0,2514.6548775469546,0.0,500.0,0.0,0.0,14009.0,0,4,3,38.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,672.964882562781,0.025789529692570503,0.0480380385868214,14009.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1669,2,37.0,2,0.0,1,112,5,43,48,8.0,0.0,277.585263912688,969.0694308904046,0.0,2565.5168159626733,43137.6743438364,33,50,1,12123,201701669,,,680.0,,2.0,0.0,6.0,2.0,4.0,2.1,4816.421630510628,0.0,720.0,1450.0,0.0,58902.0,1,1,2,190.0,8,0.0,4,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3812.171510765766,0.08837220755992047,0.06472057843139055,28048.571428571428,8,4,8,8_1,8_0,8_1_0 +1670,2,72.0,3,0.0,2,111,2,77,78,5.0,0.0,0.0,916.936233440709,0.0,1384.9881204094736,11183.618109944047,60,71,1,12125,201701670,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1392.3828907429013,414.0450681078347,510.0,540.0,0.0,25188.0,5,5,1,80.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2301.9243538501823,0.20583002130619954,0.09138972343378522,16792.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1671,2,38.0,2,0.0,1,111,4,0,62,6.0,0.0,0.0,1480.522741638118,0.0,0.0,31060.7258467513,0,50,1,12126,201701671,,,132.0,,1.0,0.0,4.0,2.0,3.0,1.6,614.1738241892683,0.0,1100.0,0.0,0.0,34553.0,0,1,2,99.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1480.522741638118,0.047665426395467475,0.0428478783792469,21595.625,6,3,6,6_1,6_3,6_1_0 +1672,1,48.0,5,120.0,99,111,3,56,63,3.0,0.0,0.0,1001.3717452534181,445.8691293948922,0.0,26269.54,31,50,2,12129,201701672,,,,309.0,2.0,0.0,4.0,3.0,5.0,2.4,1801.2539942789838,0.0,744.0,0.0,0.0,37830.0,1,1,3,82.0,8,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1447.2408746483102,0.05509197628311383,0.03825643337690484,15762.5,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +1673,1,40.0,4,222.0,2,112,2,0,46,2.0,0.0,0.0,880.2380663921175,0.0,1868.4039707976433,18825.48,0,43,8,1213,201701673,,,950.0,,1.0,0.0,3.0,2.0,3.0,2.0,1324.61400636433,0.0,654.0,1056.0,0.0,24595.0,0,4,2,62.0,10,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2748.6420371897607,0.14600647830439176,0.11175613080665829,12297.5,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1674,2,33.0,3,0.0,3,111,2,55,47,6.0,0.0,0.0,646.0462872602698,0.0,2123.1863304518674,36274.97807155207,43,43,1,12130,201701674,,,290.0,,2.0,0.0,5.0,2.0,4.0,2.1,1868.3630758058841,0.0,480.0,1200.0,0.0,43822.0,1,1,2,122.0,7,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2769.232617712137,0.07634002182578445,0.06319274833901094,20867.619047619046,5,3,5,5_1,5_2,5_0_1 +1675,2,54.0,4,0.0,1,300,2,13,13,1.0,2379.684013708323,0.0,2018.894647688343,212.31863304518674,0.0,41531.84,50,50,5,12131,201701675,,,,,2.0,1.0,6.0,0.0,2.0,1.5,2090.4745469878394,0.0,1500.0,0.0,0.0,12470.0,1,1,3,113.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4610.897294441853,0.1110207805491366,0.3697592056489056,8313.333333333334,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +1676,2,46.0,2,0.0,7,111,4,0,21,2.0,0.0,277.585263912688,2247.7027077596886,0.0,0.0,20982.460315994118,0,12,1,12132,201701676,,,,,1.0,0.0,6.0,2.0,3.0,1.8,2793.088205587105,0.0,1670.0,0.0,0.0,23469.0,0,1,1,105.0,6,5.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2525.2879716723764,0.12035232921410303,0.10760100437480832,13038.333333333332,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +1677,2,55.0,2,0.0,1,211,2,52,78,5.0,1427.810408224994,0.0,1146.7321598869787,0.0,0.0,17985.98,60,60,1,12134,201701677,,,,,2.0,0.0,5.0,2.0,4.0,2.5,1512.6595073934077,0.0,852.0,0.0,0.0,47936.0,1,5,2,110.0,2,3.0,4,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2574.5425681119727,0.1431416341012262,0.05370791405440531,19174.4,5,3,5,5_1,5_1,5_1_0 +1678,1,60.0,3,126.0,8,120,2,0,56,1.0,0.0,0.0,729.4939326980546,0.0,0.0,8234.507849749776,0,70,1,12135,201701678,,,260.0,183.0,1.0,3.0,3.0,0.0,1.0,1.0,1499.5628385606367,0.0,542.0,0.0,0.0,6662.0,0,1,3,60.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,729.4939326980546,0.08858986426495687,0.10950074042300428,6662.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +1679,2,49.0,4,0.0,1,221,5,0,56,4.0,0.0,693.9631597817199,1615.1157181506744,159.23897478389006,0.0,28424.75119129575,0,60,1,12136,201701679,,,,,2.0,3.0,7.0,1.0,2.0,1.5,1541.8802523439062,0.0,1200.0,0.0,0.0,23885.0,0,1,1,138.0,1,1.0,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2468.3178527162845,0.08683692026377825,0.10334175644614965,15923.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +1680,2,41.0,2,0.0,6,111,1,56,47,8.0,0.0,0.0,1449.5663570402303,0.0,0.0,43132.31999999999,60,31,2,12138,201701680,,,,,2.0,0.0,4.0,1.0,3.0,2.0,3167.386555555311,0.0,1077.0,0.0,0.0,57810.0,1,1,2,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1449.5663570402303,0.03360742842119855,0.025074664539702998,28905.0,8,4,8,8_0,8_4,8_0_0 +1681,2,72.0,2,0.0,1,111,4,78,74,1.0,0.0,0.0,1615.1157181506744,159.23897478389006,0.0,46238.345846751305,50,12,1,12139,201701681,,,400.0,,0.0,1.0,3.0,0.0,2.0,1.5,1783.7465580393266,0.0,1200.0,0.0,0.0,13617.0,6,5,1,160.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1774.3546929345644,0.03837409536265299,0.13030437636297013,9078.0,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +1682,2,70.0,3,0.0,2,111,6,0,77,5.0,0.0,0.0,1345.929765125562,0.0,0.0,12416.540315994116,0,50,1,1214,201701682,,,170.0,,0.0,2.0,5.0,0.0,1.0,1.0,607.4287038289672,0.0,1000.0,0.0,0.0,24790.0,0,5,5,92.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1345.929765125562,0.10839813111159714,0.05429325393810254,24790.0,7,4,7,7_1,7_3,7_0_1 +1683,2,44.0,3,0.0,9,111,2,64,34,6.0,0.0,0.0,2105.336667648345,0.0,161.08285188979997,48471.664054233435,41,30,1,12140,201701683,,,400.0,,2.0,3.0,4.0,3.0,5.0,2.6,1674.1004574357676,155.266900540438,1500.0,0.0,0.0,55416.0,1,1,3,120.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2266.4195195381453,0.046757617337055295,0.040898287850767746,21313.846153846152,6,3,6,6_1,6_3,6_0_0 +1684,1,51.0,4,272.0,99,111,1,0,85,1.0,0.0,0.0,471.07541779394666,0.0,230.01185246561897,9108.4,0,71,2,12141,201701684,,,,164.0,0.0,4.0,4.0,0.0,1.0,1.0,2005.2609724868028,0.0,350.0,130.0,0.0,9084.0,0,8,3,87.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,701.0872702595657,0.07697150654995012,0.07717825520250612,9084.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1685,2,47.0,3,0.0,9,111,2,43,46,5.0,0.0,0.0,1243.6391029760193,0.0,1565.8499187082523,41764.53119129574,33,31,1,12142,201701685,,,372.0,,2.0,0.0,5.0,2.0,4.0,2.1,2297.361139996526,0.0,924.0,885.0,0.0,37209.0,1,1,2,175.0,5,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2809.4890216842714,0.06726973682084104,0.07550563094101619,17718.571428571428,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1686,2,62.0,4,0.0,3,111,2,78,78,2.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,18865.69010255989,70,50,1,12143,201701686,,,340.0,,0.0,3.0,5.0,0.0,2.0,1.5,1937.3498482966422,1200.0,0.0,0.0,0.0,17790.0,6,5,3,80.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1913.0274719588647,0.1014024645565065,0.10753386576497272,11860.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1687,2,37.0,3,0.0,9,300,4,63,46,3.0,0.0,0.0,1534.3599322431405,0.0,0.0,45843.74,50,31,1,12145,201701687,,,360.0,,2.0,0.0,4.0,1.0,3.0,1.8,1670.2260280387968,0.0,1140.0,0.0,0.0,25330.0,1,1,2,104.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1534.3599322431405,0.03346934460938703,0.060574809800360854,14072.222222222223,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1688,2,71.0,3,0.0,99,112,2,0,78,6.0,0.0,0.0,1477.830882107867,0.0,0.0,15768.079999999998,0,70,2,12146,201701688,,,280.0,,0.0,3.0,2.0,0.0,1.0,1.0,3586.97034708826,0.0,1098.0,0.0,0.0,21985.0,0,5,3,50.0,9,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1477.830882107867,0.0937229442080372,0.06721996279771968,21985.0,6,3,6,6_0,6_1,6_0_0 +1689,2,70.0,3,0.0,1,112,6,0,75,5.0,0.0,0.0,1837.194129396392,433.4838758005896,0.0,16502.0,0,44,1,12147,201701689,,,170.0,,0.0,2.0,4.0,0.0,1.0,1.0,1829.1589240655458,0.0,1365.0,0.0,0.0,21188.0,0,5,1,60.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2270.6780051969818,0.1376001699913333,0.10716811427208711,21188.0,5,3,5,5_1,5_0,5_1_0 +1690,2,38.0,3,0.0,1,111,2,52,65,7.0,0.0,0.0,1144.0403003567276,212.31863304518674,2070.106672190571,76267.83169350261,50,43,1,12149,201701690,,,547.0,,2.0,0.0,6.0,2.0,4.0,2.1,1014.8933776629663,0.0,850.0,1170.0,0.0,49877.0,1,1,2,80.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3426.465605592485,0.04492674735217878,0.06869830995433737,23750.95238095238,6,3,6,6_1,6_2,6_1_0 +1691,2,62.0,1,0.0,5,111,4,46,74,10.0,0.0,0.0,432.7327428248024,70.77287768172891,430.17150207794015,42716.92584580999,50,31,1,1215,201701691,,,360.0,,1.0,2.0,4.0,0.0,2.0,1.5,1724.4851029103143,414.64001316639025,150.0,0.0,0.0,77120.0,4,5,1,122.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,933.6771225844715,0.02185731075205764,0.012106809162143043,51413.333333333336,10,5,10,10_1,10_3,10_0_0 +1692,2,48.0,3,0.0,1,300,2,22,33,4.0,0.0,0.0,1144.0403003567276,0.0,2592.0566450933215,43019.42206204163,31,31,1,12150,201701692,,,450.0,,2.0,0.0,6.0,2.0,4.0,2.5,2241.277654513497,0.0,850.0,1465.0,0.0,46977.0,1,1,2,120.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3736.096945450049,0.0868467488954625,0.07953034347553163,18790.8,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +1693,2,45.0,3,0.0,9,120,2,47,43,7.0,0.0,0.0,2166.946921852155,0.0,0.0,57497.92000000001,42,33,1,12151,201701693,,,402.0,,2.0,1.0,5.0,2.0,4.0,2.3,1838.121628791608,0.0,1610.0,0.0,0.0,60397.0,1,1,2,130.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2166.946921852155,0.037687396724127666,0.035878386705501183,26259.565217391308,7,4,7,7_1,7_0,7_0_0 +1694,1,45.0,5,290.0,9,111,2,85,53,3.0,0.0,0.0,672.964882562781,0.0,636.9558991355602,30428.24,50,31,2,12152,201701694,,,300.0,210.0,1.0,0.0,4.0,4.0,6.0,3.1,2140.167169468846,0.0,500.0,360.0,0.0,42083.0,6,1,3,89.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1309.9207816983412,0.043049508670180765,0.031127077007303217,13575.16129032258,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1695,1,82.0,2,24.0,5,400,2,0,78,2.0,0.0,0.0,1154.807738477732,56.61830214538313,0.0,5943.3908753016285,0,70,1,12153,201701695,,,132.0,214.0,0.0,3.0,2.0,0.0,1.0,1.0,2779.2463074329194,0.0,858.0,0.0,0.0,13228.0,0,5,3,64.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1211.4260406231151,0.20382742209625157,0.0915804385109703,13228.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +1696,1,40.0,4,437.0,1,111,1,0,56,1.0,0.0,0.0,558.5608525271082,0.0,1457.9212802436157,7491.14,0,43,1,12155,201701696,,,463.0,,1.0,0.0,3.0,2.0,3.0,1.8,524.7846236637427,0.0,415.0,824.0,0.0,16144.0,0,4,3,80.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2016.4821327707239,0.2691822783676081,0.12490597948282482,8968.888888888889,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +1697,1,59.0,4,125.0,99,111,1,68,46,4.0,0.0,0.0,1292.0925745205395,0.0,0.0,22461.530875301625,71,71,2,12156,201701697,,,,479.0,2.0,1.0,3.0,4.0,6.0,3.1,1010.8157559009303,0.0,960.0,0.0,0.0,50463.0,4,1,3,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1292.0925745205395,0.05752468884217085,0.025604751491598587,16278.387096774193,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +1698,2,70.0,3,0.0,5,112,5,77,75,4.0,0.0,416.377895869032,1615.1157181506744,0.0,0.0,25068.8,50,50,1,12157,201701698,,,320.0,,0.0,2.0,3.0,0.0,2.0,1.5,3785.075735372021,0.0,1200.0,0.0,0.0,24280.0,5,5,1,95.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2031.4936140197065,0.08103673147576695,0.08366942397115759,16186.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1699,2,79.0,3,0.0,2,111,1,0,75,9.0,0.0,0.0,611.0521133670052,0.0,191.08676974066807,16123.320315994119,0,50,2,12158,201701699,,,,393.0,0.0,3.0,3.0,0.0,1.0,1.0,4352.657398372718,0.0,454.0,108.0,0.0,32816.0,0,5,3,79.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,802.1388831076732,0.04975022931920308,0.02444353008007293,32816.0,9,5,9,9_0,9_3,9_0_1 +1700,1,20.0,3,272.0,7,111,1,0,54,5.0,0.0,0.0,780.639263772826,0.0,0.0,13252.32,0,42,2,1216,201701700,300.0,300.0,,,1.0,0.0,1.0,0.0,1.0,1.0,4515.018451357805,0.0,580.0,0.0,0.0,19205.0,0,1,3,25.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,780.639263772826,0.0589058567686885,0.04064770964711408,19205.0,5,3,5,5_0,5_2,5_0_0 +1701,2,53.0,3,0.0,1,120,4,0,56,2.0,0.0,0.0,2569.6250111580152,0.0,273.84084821266,12092.770892196833,0,50,5,12160,201701701,,,,,1.0,2.0,3.0,0.0,1.0,1.0,1889.6244766588989,263.9537309187446,1800.0,0.0,0.0,11687.0,0,1,1,80.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2843.4658593706754,0.23513766073295028,0.24330160514851334,11687.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1702,2,49.0,3,0.0,1,112,6,54,63,4.0,0.0,0.0,1238.255383915517,0.0,2172.7273448290775,50415.62,31,50,1,12161,201701702,,,900.0,,2.0,0.0,5.0,3.0,5.0,3.0,1058.952898640886,0.0,920.0,1228.0,0.0,49797.0,1,1,2,140.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3410.9827287445946,0.06765726036384348,0.06849775546206789,16599.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +1703,0,70.0,2,0.0,9,112,6,12,77,7.0,0.0,326.16268509740837,886.4758075768624,120.31389205893916,1343.4309847609318,18121.06178122655,50,60,1,12163,201701703,,,214.0,,1.0,2.0,4.0,0.0,2.0,1.5,2843.0534675249914,1294.925950507253,123.0,0.0,0.0,38570.0,5,5,5,110.0,8,3.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2676.383369494142,0.1476946219711518,0.06939028699751469,25713.333333333332,7,4,7,7_1,7_1,7_0_0 +1704,1,37.0,4,253.0,8,111,2,0,63,5.0,0.0,0.0,434.25079868353174,0.0,809.2170580897301,20187.360000000004,0,43,2,12164,201701704,,,280.0,203.0,1.0,0.0,2.0,1.0,2.0,1.3,1059.443705900385,780.0,0.0,0.0,0.0,24007.0,0,1,3,56.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1243.467856773262,0.06159635815546271,0.051796053516610235,18466.923076923078,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +1705,1,23.0,2,379.0,3,111,2,85,63,1.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,32982.160315994115,50,60,2,12168,201701705,,,102.0,7.0,1.0,0.0,3.0,1.0,3.0,1.8,3092.2495611283525,1000.0,0.0,0.0,0.0,16748.0,4,4,3,68.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1594.1895599657205,0.04833490422374324,0.09518686171278484,9304.444444444443,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1706,1,28.0,3,371.0,99,300,2,85,64,4.0,0.0,0.0,222.69271727360606,0.0,414.9831067126821,38227.64,71,71,2,12169,201701706,,,,179.0,1.0,1.0,5.0,2.0,4.0,2.1,3494.352329394875,400.0,0.0,0.0,0.0,34402.0,6,1,3,120.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,637.6758239862882,0.016681014679072216,0.01853601023156468,16381.904761904761,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +1707,2,49.0,2,0.0,1,300,2,63,54,6.0,0.0,0.0,940.8049058227678,2462.896143324166,0.0,24555.340000000004,50,50,1,12170,201701707,,,348.0,,2.0,2.0,4.0,1.0,3.0,2.0,1520.6963289429164,0.0,699.0,0.0,0.0,45348.0,5,1,1,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3403.7010491469337,0.13861347670799642,0.07505735752727648,22674.0,6,3,6,6_1,6_0,6_1_0 +1708,1,40.0,4,184.0,3,211,1,85,63,2.0,0.0,0.0,423.1161628198515,0.0,788.467902754096,16303.099999999999,50,50,2,12171,201701708,,,650.0,152.0,1.0,0.0,4.0,3.0,5.0,2.4,2485.7380381805365,760.0,0.0,0.0,0.0,25853.0,6,1,3,80.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1211.5840655739476,0.07431617701995005,0.04686435096793206,10772.083333333334,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +1709,2,29.0,4,0.0,9,111,4,0,55,4.0,0.0,0.0,565.290501352736,0.0,0.0,10712.58,0,30,2,12172,201701709,,,,300.0,1.0,0.0,1.0,0.0,1.0,1.0,2324.1568729477476,0.0,420.0,0.0,0.0,16309.0,0,1,3,30.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,565.290501352736,0.05276884759345891,0.03466126073657097,16309.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +1710,2,48.0,2,0.0,7,111,6,42,37,7.0,0.0,0.0,2452.981017019627,0.0,896.6945421865532,51599.26308198407,30,12,1,12173,201701710,,,188.0,,2.0,0.0,4.0,2.0,4.0,2.5,2066.766123483793,864.319079675105,1465.0,0.0,0.0,67541.0,1,1,1,185.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3349.67555920618,0.06491712011243281,0.049594698911863605,27016.4,7,4,7,7_1,7_3,7_0_0 +1711,2,67.0,2,0.0,1,112,4,0,74,9.0,0.0,0.0,627.6969092519577,0.0,417.26635701560195,22679.57036554348,0,60,2,12174,201701711,,,,,0.0,2.0,1.0,0.0,1.0,1.0,1970.3595029487187,402.20081277139855,300.0,0.0,0.0,33400.0,0,5,1,26.0,9,2.0,1,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1044.9632662675597,0.04607509090450615,0.03128632533735209,33400.0,9,5,9,9_0,9_1,9_1_0 +1712,2,60.0,3,0.0,2,120,2,77,78,1.0,0.0,1734.9078994543,360.76220198324177,0.0,672.272632874545,23439.22,71,71,1,12175,201701712,,,336.0,,0.0,0.0,3.0,0.0,2.0,1.5,2526.1056244187944,648.0,0.0,0.0,0.0,14790.0,6,5,1,70.0,0,0.0,3,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2767.942734312087,0.11809022374942882,0.18714961016308904,9860.0,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +1713,1,35.0,4,329.0,9,111,2,52,47,3.0,0.0,0.0,765.5062156280208,0.0,1426.5044293248448,34007.64,43,71,2,12176,201701713,,,587.0,315.0,2.0,0.0,5.0,4.0,6.0,2.7,2680.312800800569,1375.0,0.0,0.0,0.0,40128.0,1,1,3,72.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2192.0106449528657,0.06445641758595615,0.0546254646369833,14862.22222222222,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +1714,2,81.0,3,0.0,4,111,2,77,74,10.0,0.0,0.0,1134.6193945090229,0.0,2114.3389287011155,19519.188015878888,50,41,2,12177,201701714,,,,635.0,0.0,5.0,4.0,0.0,2.0,1.5,1697.5013283272224,2038.0,0.0,0.0,0.0,62038.0,5,5,3,80.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3248.9583232101386,0.16644946093900556,0.052370455579002204,41358.666666666664,10,5,10,10_0,10_3,10_0_1 +1715,1,41.0,3,350.0,9,111,1,0,55,5.0,0.0,0.0,640.2415621616174,0.0,1193.076431798961,16463.6,0,42,2,12178,201701715,,,402.0,248.0,1.0,0.0,3.0,2.0,3.0,1.6,730.3918646876635,1150.0,0.0,0.0,0.0,29820.0,0,4,3,65.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1833.3179939605784,0.11135583918223102,0.061479476658637774,18637.5,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +1716,2,59.0,3,0.0,9,111,1,0,56,5.0,0.0,0.0,616.4358324275074,0.0,0.0,40148.560000000005,0,31,2,1218,201701716,,,,629.0,2.0,2.0,3.0,1.0,2.0,1.5,3089.9208946019694,0.0,458.0,0.0,0.0,28960.0,0,1,3,67.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,616.4358324275074,0.01535387153181851,0.02128576769432001,19306.666666666668,5,3,5,5_0,5_3,5_0_0 +1717,1,23.0,3,272.0,99,111,2,0,55,1.0,0.0,0.0,995.9880261929159,0.0,0.0,5464.84,0,31,2,12180,201701717,,,,128.0,1.0,0.0,2.0,0.0,1.0,1.0,2638.4135831817366,0.0,740.0,0.0,0.0,9148.0,0,2,3,33.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,995.9880261929159,0.18225383107152557,0.10887494820648402,9148.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1718,2,50.0,2,0.0,1,120,2,0,37,10.0,0.0,832.755791738064,2114.4556610122577,0.0,4701.088400008844,79707.03904104551,0,41,1,12183,201701718,,,800.0,,1.0,1.0,5.0,1.0,2.0,1.5,1545.0775229041542,0.0,1571.0,2657.0,0.0,93018.0,0,1,3,158.0,0,0.0,2,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,7648.299852759165,0.09595513702146981,0.08222386906576325,62012.0,10,5,10,10_1,10_0,10_1_0 +1719,2,32.0,3,0.0,2,111,2,42,33,6.0,0.0,0.0,681.4397148572345,0.0,1269.8483065408072,22873.98,30,31,2,12187,201701719,,,,657.0,2.0,0.0,3.0,1.0,3.0,1.8,2361.158232553336,1224.0,0.0,0.0,0.0,40706.0,1,1,3,65.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1951.2880213980418,0.08530601239478403,0.04793612787790601,22614.444444444445,6,3,6,6_0,6_3,6_0_1 +1720,2,37.0,3,0.0,7,111,4,85,37,6.0,0.0,0.0,1238.255383915517,0.0,0.0,37354.22000000001,20,20,2,12189,201701720,,,,720.0,1.0,0.0,3.0,1.0,3.0,1.8,755.8457702996251,0.0,920.0,0.0,0.0,38964.0,6,1,3,80.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1238.255383915517,0.03314900923953216,0.03177947294722095,21646.666666666668,6,3,6,6_0,6_3,6_0_0 +1721,1,28.0,4,82.0,9,112,4,63,62,4.0,0.0,0.0,1507.4413369406293,159.23897478389006,0.0,28720.058683341056,50,43,2,1219,201701721,,,656.0,,2.0,0.0,4.0,1.0,3.0,1.8,2815.65221153074,0.0,1120.0,0.0,0.0,32318.0,1,4,3,78.0,8,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1666.6803117245195,0.05803192570394259,0.05157127024334796,17954.444444444445,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +1722,2,49.0,1,0.0,4,111,2,54,23,9.0,0.0,0.0,1170.9588956592388,0.0,1875.4812585658162,62672.493316908054,20,31,1,12190,201701722,,,378.0,,2.0,1.0,6.0,2.0,4.0,2.3,3139.47030662645,0.0,870.0,1060.0,0.0,90193.0,1,1,2,175.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3046.4401542250553,0.04860888713682584,0.03377690235633647,39214.34782608696,9,5,9,9_1,9_2,9_0_1 +1723,2,68.0,2,0.0,3,111,1,0,75,8.0,0.0,0.0,524.9126083989692,0.0,0.0,27722.380000000005,0,44,2,12191,201701723,,,,460.0,0.0,0.0,2.0,0.0,1.0,1.0,3204.918144131921,0.0,390.0,0.0,0.0,28153.0,0,5,3,62.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,524.9126083989692,0.018934615584916197,0.018644997279116584,28153.0,8,4,8,8_0,8_3,8_0_1 +1724,2,68.0,2,0.0,1,300,5,78,78,3.0,0.0,34.698157989086,269.1859530251124,37.155760782907684,0.0,19684.199999999997,71,50,1,12193,201701724,,,24.0,,0.0,2.0,4.0,0.0,2.0,1.5,1668.9124916547187,0.0,200.0,0.0,0.0,22289.0,5,5,1,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,341.03987179710606,0.017325564249352582,0.015300815280950517,14859.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1725,1,46.0,4,270.0,6,111,2,0,85,4.0,0.0,0.0,1024.3864994585879,0.0,1908.9222908783377,9480.991191295747,0,71,2,12195,201701725,,,,130.0,0.0,4.0,3.0,0.0,1.0,1.0,944.3118675288058,1840.0,0.0,0.0,0.0,15924.0,0,7,3,65.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2933.3087903369255,0.30938841004619017,0.18420678160869916,15924.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +1726,2,56.0,1,0.0,7,111,2,0,38,10.0,0.0,0.0,1565.3163168410285,0.0,0.0,31411.7858467513,0,10,2,12196,201701726,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3015.952883833144,0.0,1163.0,0.0,0.0,130797.0,0,1,1,100.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1565.3163168410285,0.04983213385185224,0.01196752461326352,87198.0,10,5,10,10_0,10_4,10_0_0 +1727,1,35.0,2,328.0,99,111,2,0,52,2.0,0.0,0.0,376.8603342351573,0.0,1719.7809276660128,29442.38,0,43,2,12197,201701727,,,,,1.0,0.0,4.0,1.0,2.0,1.3,1195.9271346889666,0.0,280.0,972.0,0.0,14076.0,0,4,3,78.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2096.64126190117,0.07121167724556132,0.14895149629874752,10827.692307692307,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1729,2,72.0,1,0.0,8,120,2,74,74,10.0,0.0,0.0,2284.0428114180786,0.0,0.0,60816.240000000005,60,31,1,12200,201701729,,,533.0,,0.0,1.0,8.0,0.0,2.0,1.5,1251.2397910801392,0.0,1697.0,0.0,0.0,71319.0,5,5,1,150.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2284.0428114180786,0.03755646208016277,0.03202572682480235,47546.0,10,5,10,10_1,10_1,10_0_0 +1730,2,84.0,4,0.0,8,300,2,71,71,3.0,0.0,0.0,1480.522741638118,318.4779495677801,0.0,28452.086811689,70,70,1,12201,201701730,,,450.0,,0.0,6.0,3.0,0.0,2.0,1.5,1726.966565597382,0.0,1100.0,0.0,0.0,20730.0,5,5,3,72.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1799.0006912058982,0.06322912983896889,0.08678247425016393,13820.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1731,2,73.0,2,0.0,9,112,2,74,74,10.0,0.0,0.0,2530.3479584360566,148.62304313163074,0.0,78079.326811689,10,10,1,12203,201701731,,,220.0,,0.0,0.0,5.0,0.0,2.0,1.5,2002.7821818353675,0.0,1880.0,0.0,0.0,106048.0,5,5,2,200.0,9,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2678.9710015676874,0.03431088754170236,0.0252618719972813,70698.66666666667,10,5,10,10_1,10_0,10_0_0 +1732,2,33.0,3,0.0,9,111,2,0,46,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,28588.879999999997,0,20,1,12205,201701732,,,500.0,,1.0,0.0,4.0,2.0,3.0,1.6,1882.233333939569,0.0,1200.0,0.0,0.0,32858.0,0,1,2,85.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1615.1157181506744,0.056494543268245365,0.04915441348075581,20536.25,5,3,5,5_1,5_4,5_0_0 +1733,2,67.0,3,0.0,1,112,2,0,56,2.0,2221.038412794435,0.0,1211.3367886130059,40.694404666994124,0.0,20278.6,0,50,1,12206,201701733,,,,,1.0,3.0,5.0,0.0,1.0,1.0,1910.5035273470644,0.0,900.0,0.0,0.0,12291.0,0,1,1,180.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3473.069606074435,0.17126772095087606,0.2825701412476149,12291.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1734,1,32.0,4,272.0,4,111,2,0,56,3.0,0.0,0.0,349.9417389326461,0.0,1238.525359430256,8491.636974448147,0,71,1,12207,201701734,,,396.0,38.0,1.0,0.0,4.0,2.0,3.0,1.6,641.6677241943141,0.0,260.0,700.0,0.0,22156.0,0,1,3,62.0,4,4.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1588.467098362902,0.18706253024507483,0.07169466954156446,13847.5,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +1735,2,53.0,3,0.0,1,112,2,22,37,4.0,1903.7472109666587,0.0,121.13367886130058,44.23304855108057,0.0,67963.2,60,30,1,12208,201701735,,,,,2.0,1.0,7.0,0.0,2.0,1.5,1917.9798191795808,0.0,90.0,0.0,0.0,25025.0,1,1,2,240.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2069.1139383790396,0.03044462206575087,0.08268187565950208,16683.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1736,1,21.0,3,240.0,7,111,4,0,84,1.0,0.0,0.0,646.0462872602698,0.0,0.0,7819.9400000000005,0,30,2,12209,201701736,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3342.5903696983946,0.0,480.0,0.0,0.0,7087.0,0,3,3,20.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,646.0462872602698,0.08261524861575277,0.09115934630453926,7087.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1737,2,53.0,3,0.0,1,111,4,0,52,7.0,0.0,0.0,942.1508355878933,0.0,0.0,31218.79697444815,0,50,2,1221,201701737,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2452.208476315171,0.0,700.0,0.0,0.0,25680.0,0,1,1,83.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,942.1508355878933,0.030178960334667014,0.0366881166506189,25680.0,7,4,7,7_0,7_3,7_1_0 +1738,2,48.0,4,0.0,7,112,4,52,63,4.0,0.0,555.170527825376,1349.9675544209385,0.0,0.0,47911.96,50,44,1,12210,201701738,,,900.0,,2.0,0.0,8.0,2.0,4.0,2.3,2156.6843317716616,0.0,1003.0,0.0,0.0,41962.0,1,1,2,170.0,8,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1905.1380822463145,0.03976330924984731,0.04540150808460785,18244.34782608696,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1739,1,42.0,3,262.0,99,111,6,0,21,1.0,0.0,0.0,1022.1595722858517,0.0,1904.7724598112109,15201.173815743485,0,50,1,12212,201701739,,,105.0,246.0,1.0,0.0,4.0,2.0,3.0,1.8,858.1128794899774,1836.0,0.0,0.0,0.0,17174.0,0,1,3,106.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2926.932032097063,0.1925464485555524,0.17042809084063484,9541.111111111111,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +1740,1,34.0,4,210.0,99,112,1,0,55,3.0,0.0,0.0,484.5347154452023,0.0,0.0,15180.560315994117,0,43,2,12213,201701740,,,,112.0,1.0,0.0,3.0,2.0,3.0,1.6,692.8898403526008,0.0,360.0,0.0,0.0,24810.0,0,4,3,53.0,10,5.0,2,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,484.5347154452023,0.031918104823489314,0.01952981521343016,15506.25,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +1741,1,51.0,4,69.0,7,111,4,0,63,2.0,0.0,0.0,1615.1157181506744,573.2603092220043,0.0,36333.799999999996,0,31,2,12214,201701741,,,,611.0,1.0,0.0,3.0,3.0,4.0,2.5,974.1516202923862,0.0,1200.0,0.0,0.0,26465.0,0,4,3,69.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2188.3760273726784,0.06022975927022989,0.08268943991583898,10586.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1742,2,29.0,3,0.0,2,120,6,48,43,6.0,0.0,0.0,2153.487624200899,0.0,0.0,28483.940000000002,50,33,1,12215,201701742,,,,,2.0,0.0,7.0,2.0,4.0,2.1,2477.0221036450944,0.0,1600.0,0.0,0.0,47311.0,4,1,2,170.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2153.487624200899,0.07560357254652618,0.04551769407116525,22529.04761904762,6,3,6,6_1,6_0,6_0_1 +1743,2,36.0,3,0.0,9,221,4,56,21,3.0,0.0,0.0,3835.8998306078515,123.8525359430256,0.0,51546.2,44,44,1,12216,201701743,,,686.0,,2.0,0.0,6.0,2.0,4.0,2.1,2456.3810313114122,0.0,2850.0,0.0,0.0,30230.0,1,1,2,200.0,3,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3959.752366550877,0.07681948167955886,0.1309875079904359,14395.238095238095,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1744,2,43.0,3,0.0,10,400,5,46,21,1.0,0.0,291.4645271083224,874.8543473316153,0.0,0.0,54179.479999999996,41,31,1,12217,201701744,,,292.0,,2.0,0.0,6.0,3.0,5.0,2.8,2032.6830648534574,0.0,650.0,0.0,0.0,27387.0,4,1,2,75.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1166.3188744399376,0.021526948476433102,0.04258658759411172,9781.07142857143,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +1745,2,48.0,2,0.0,1,112,2,0,31,8.0,793.228004569441,0.0,538.3719060502248,0.0,0.0,16911.911191295745,0,20,1,12219,201701745,,,210.0,,1.0,0.0,3.0,0.0,1.0,1.0,1708.6605895969376,0.0,400.0,0.0,0.0,29645.0,0,1,1,50.0,5,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1331.599910619666,0.07873739966805268,0.044918195669410216,29645.0,8,4,8,8_1,8_0,8_1_0 +1746,2,42.0,2,0.0,99,112,2,67,68,5.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,19151.91087530163,30,50,2,12220,201701746,,,,440.0,2.0,3.0,3.0,1.0,3.0,1.8,2453.210645568296,1300.0,0.0,0.0,0.0,35314.0,4,1,3,80.0,6,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2072.4464279554363,0.1082109477978028,0.0586862555347861,19618.888888888887,5,3,5,5_0,5_1,5_0_0 +1747,0,47.0,3,0.0,1,400,2,0,11,2.0,951.8736054833294,0.0,1211.3367886130059,198.16405750884095,0.0,14363.239999999998,0,50,1,12221,201701747,,,,,1.0,0.0,5.0,0.0,1.0,1.0,3079.8004320588943,0.0,900.0,0.0,0.0,12978.0,0,1,5,100.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2361.374451605176,0.1644040238557022,0.1819521075362287,12978.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1748,2,87.0,2,0.0,3,111,2,86,75,4.0,0.0,0.0,1615.1157181506744,0.0,2653.9829130648345,29249.4,50,70,1,12222,201701748,,,200.0,,0.0,5.0,5.0,0.0,2.0,1.5,1845.054809614611,0.0,1200.0,1500.0,0.0,24490.0,6,5,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4269.098631215509,0.1459550839065249,0.17432007477401018,16326.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +1749,2,55.0,2,0.0,1,111,2,63,37,9.0,0.0,0.0,907.2677584910991,0.0,1810.854637903787,53915.70684744477,31,42,2,12223,201701749,,,,,2.0,1.0,3.0,0.0,2.0,1.5,3680.652600908933,517.5563351347934,460.0,720.0,0.0,58076.0,1,1,1,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2718.122396394886,0.050414295857900006,0.04680285137397352,38717.333333333336,9,5,9,9_0,9_4,9_1_0 +1750,1,22.0,3,60.0,7,111,2,0,52,1.0,0.0,0.0,807.5578590753372,0.0,0.0,19424.76,0,42,2,12224,201701750,,,,540.0,1.0,0.0,1.0,0.0,1.0,1.0,6347.308771172601,0.0,600.0,0.0,0.0,9372.0,0,3,3,17.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,807.5578590753372,0.041573633809392614,0.08616707843313458,9372.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +1751,2,25.0,2,0.0,99,111,4,0,43,7.0,0.0,0.0,0.0,0.0,0.0,25429.94,0,30,2,12225,201701751,,,,345.0,1.0,0.0,2.0,0.0,1.0,1.0,3145.243716218716,0.0,0.0,0.0,0.0,25168.0,0,1,3,39.0,6,4.0,1,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,25168.0,7,4,7,7_0,7_2,7_0_0 +1752,2,43.0,3,0.0,5,111,4,0,31,7.0,0.0,0.0,845.2438924988529,0.0,0.0,36360.6498303585,0,30,2,12226,201701752,,,,,1.0,0.0,3.0,1.0,2.0,1.3,937.029107915648,0.0,628.0,0.0,0.0,36272.0,0,1,2,90.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,845.2438924988529,0.023246116239461035,0.023302930428398018,27901.53846153846,8,4,8,8_0,8_3,8_0_0 +1753,1,50.0,3,47.0,99,111,1,0,55,2.0,0.0,0.0,629.895130078763,0.0,169.8549064361494,16382.671191295745,0,71,2,12227,201701753,,,,,1.0,0.0,3.0,1.0,2.0,1.5,1251.9672795112951,0.0,468.0,96.0,0.0,15804.0,0,1,2,60.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,799.7500365149124,0.04881682768191224,0.050604279708612525,10536.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +1754,2,55.0,3,0.0,4,111,2,47,52,7.0,0.0,0.0,484.5347154452023,0.0,973.1270681237726,40394.3456423989,41,33,2,12229,201701754,,,,490.0,2.0,0.0,3.0,0.0,2.0,1.5,2475.8284307328877,0.0,360.0,550.0,0.0,37913.0,1,1,3,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1457.661783568975,0.03608578776032894,0.038447545263339086,25275.333333333332,7,4,7,7_0,7_4,7_0_1 +1755,1,65.0,1,272.0,6,111,2,0,77,3.0,0.0,0.0,143.08007084829188,0.0,266.62664606289826,7633.24,0,50,2,1223,201701755,,,,51.0,0.0,2.0,2.0,0.0,1.0,1.0,3048.3762197971046,257.0,0.0,0.0,0.0,13424.0,0,5,3,40.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,409.70671691119014,0.05367402530395876,0.030520464608998075,13424.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1756,2,55.0,3,0.0,99,400,1,67,67,4.0,0.0,0.0,2585.69772400091,233.5504963497054,805.4142594489999,33540.604254774364,71,71,2,12230,201701756,,,400.0,334.0,2.0,0.0,4.0,3.0,5.0,2.8,1996.9169622388144,776.3345027021901,1600.0,0.0,0.0,47131.0,1,1,3,90.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,3624.6624797996155,0.10806789443227338,0.07690612292969841,16832.5,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +1757,2,78.0,2,0.0,6,111,4,77,74,9.0,0.0,0.0,2491.3159952474152,0.0,0.0,53217.52,50,60,1,12231,201701757,,,385.0,,0.0,1.0,5.0,0.0,2.0,1.5,1605.7550317783523,0.0,1851.0,0.0,0.0,51999.0,5,5,1,105.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2491.3159952474152,0.046813831145220884,0.04791084434791852,34666.0,9,5,9,9_1,9_3,9_0_0 +1758,2,54.0,4,0.0,9,111,2,56,77,2.0,0.0,0.0,751.5879207984204,0.0,1400.5679851553023,28620.096322376292,50,50,2,12232,201701758,,,270.0,450.0,1.0,6.0,3.0,0.0,2.0,1.5,2257.868418625566,1350.0,0.0,0.0,0.0,18198.0,1,7,3,67.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2152.1559059537226,0.0751973676717183,0.11826332047223445,12132.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +1759,2,67.0,3,0.0,1,120,5,77,78,3.0,0.0,111.0341055650752,449.5405415519377,88.46609710216114,0.0,19977.24,71,70,1,12233,201701759,,,190.0,,0.0,5.0,3.0,0.0,2.0,1.5,1781.7068921725702,0.0,334.0,0.0,0.0,23263.0,5,5,1,110.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,649.040744219174,0.032489009704001856,0.02790013086098844,15508.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1760,2,53.0,3,0.0,5,111,2,0,33,7.0,0.0,0.0,672.964882562781,0.0,884.6609710216114,43158.68,0,41,1,12234,201701760,,,250.0,,1.0,1.0,4.0,1.0,2.0,1.5,2022.1401651914641,0.0,500.0,500.0,0.0,37335.0,0,1,1,72.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1557.6258535843924,0.03609067407956852,0.04172025856661021,24890.0,7,4,7,7_1,7_2,7_0_0 +1761,1,76.0,2,196.0,2,111,1,0,77,7.0,0.0,0.0,672.964882562781,0.0,2172.7273448290775,27895.428685784755,0,50,2,12235,201701761,678.0,678.0,430.0,108.0,1.0,2.0,4.0,1.0,2.0,1.5,2229.561739468717,0.0,500.0,1228.0,0.0,36780.0,0,5,3,80.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2845.6922273918585,0.10201285161973496,0.07737064239782106,24520.0,7,4,7,7_0,7_2,7_0_1 +1762,2,72.0,3,0.0,2,111,2,0,77,3.0,0.0,0.0,547.8240844930708,0.0,1020.8584425131979,19888.8,0,60,1,12236,201701762,,,41.0,,0.0,2.0,6.0,0.0,1.0,1.0,1739.047965877697,984.0,0.0,0.0,0.0,13440.0,0,5,1,90.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1568.6825270062686,0.07887265833063174,0.11671744992606166,13440.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1763,1,53.0,5,240.0,1,300,4,0,69,1.0,114.22483265799951,0.0,3607.091770536506,0.0,0.0,6666.52,0,71,1,12237,201701763,,,,,1.0,5.0,3.0,0.0,1.0,1.0,3050.7592510947843,0.0,2680.0,0.0,0.0,8700.0,0,4,3,60.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3721.3166031945057,0.5582097710941398,0.42773754059706964,8700.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +1764,2,58.0,3,0.0,1,221,2,0,47,6.0,3569.526020562485,0.0,807.5578590753372,0.0,0.0,23631.680513464173,0,50,1,1224,201701764,,,250.0,,1.0,1.0,6.0,0.0,1.0,1.0,3776.7780411351405,0.0,600.0,0.0,0.0,23358.0,0,1,1,79.0,1,1.0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4377.083879637822,0.18522101621778334,0.1873912098483527,23358.0,6,3,6,6_1,6_1,6_1_0 +1765,2,84.0,2,0.0,4,111,4,0,77,6.0,0.0,0.0,2153.487624200899,307.86201791552077,0.0,25807.84,0,41,1,12240,201701765,,,365.0,,0.0,1.0,3.0,0.0,1.0,1.0,3569.94667745414,0.0,1600.0,0.0,0.0,22362.0,0,5,1,65.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2461.34964211642,0.09537216760939389,0.11006840363636616,22362.0,6,3,6,6_1,6_4,6_0_1 +1766,2,77.0,2,0.0,4,300,2,77,78,7.0,666.3115238383306,111.0341055650752,814.287507900965,148.62304313163074,0.0,23798.44,70,71,1,12241,201701766,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1780.3725145271378,0.0,605.0,0.0,0.0,35441.0,5,5,1,115.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1740.2561804360016,0.07312480063550392,0.04910290850811212,23627.333333333332,6,3,6,6_1,6_0,6_0_1 +1767,2,26.0,3,0.0,6,111,4,85,53,5.0,0.0,0.0,446.84868202168656,40.694404666994124,0.0,34333.574508203805,50,43,2,12242,201701767,,,,580.0,1.0,0.0,2.0,0.0,2.0,1.5,4495.75393655268,0.0,332.0,0.0,0.0,28468.0,4,1,3,38.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,487.54308668868066,0.014200184328963042,0.017126004169196313,18978.666666666668,5,3,5,5_0,5_3,5_0_0 +1768,1,87.0,3,55.0,2,211,2,0,77,3.0,0.0,0.0,1162.4559841682235,0.0,2166.2118170402005,13688.319999999998,0,70,2,12243,201701768,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2772.8795182298804,2088.0,0.0,0.0,0.0,15654.0,0,5,3,80.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,3328.667801208424,0.24317577330223317,0.21264007929017656,15654.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +1769,2,68.0,3,0.0,2,111,2,78,78,8.0,1031.1964059402735,0.0,1278.633276869284,53.079658261296686,0.0,42067.34,71,71,1,12244,201701769,,,360.0,,0.0,2.0,5.0,0.0,2.0,1.5,1238.1032936992092,0.0,950.0,0.0,0.0,44360.0,5,5,1,108.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2362.9093410708538,0.05616968748370717,0.05326666684109228,29573.333333333332,8,4,8,8_1,8_3,8_0_1 +1770,2,28.0,2,0.0,99,111,1,46,34,10.0,0.0,0.0,419.93008671917534,0.0,0.0,47935.805846751304,30,41,2,12245,201701770,,,,900.0,2.0,0.0,2.0,0.0,2.0,1.5,4582.903146650859,0.0,312.0,0.0,0.0,68414.0,1,1,3,46.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,419.93008671917534,0.008760259253003354,0.0061380724225915066,45609.333333333336,10,5,10,10_0,10_4,10_0_0 +1771,2,70.0,3,0.0,7,111,2,0,78,5.0,0.0,0.0,667.5811635022787,0.0,2797.2979903703354,13314.4258467513,0,70,1,12246,201701771,,,232.0,,0.0,2.0,4.0,0.0,1.0,1.0,2025.4414113607893,0.0,496.0,1581.0,0.0,19070.0,0,5,3,70.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3464.879153872614,0.26023496572464216,0.1816926666949457,19070.0,5,3,5,5_1,5_3,5_0_0 +1772,2,54.0,3,0.0,4,111,1,0,46,6.0,0.0,0.0,644.7003574951442,0.0,146.8537211895875,17058.92,0,50,2,12248,201701772,,,,235.0,1.0,0.0,2.0,0.0,1.0,1.0,2458.0440291442496,0.0,479.0,83.0,0.0,24679.0,0,1,3,50.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,791.5540786847317,0.04640118358517021,0.032073993220338416,24679.0,7,4,7,7_0,7_3,7_0_1 +1773,0,61.0,1,0.0,4,111,2,46,37,10.0,0.0,0.0,0.0,0.0,0.0,66227.23999999999,30,31,1,12249,201701773,,,,,2.0,0.0,5.0,1.0,3.0,2.0,1560.9289111877981,0.0,0.0,0.0,0.0,131179.0,1,1,5,146.0,5,4.0,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,65589.5,10,5,10,10_1,10_2,10_0_1 +1774,2,49.0,2,0.0,1,300,6,0,52,7.0,158.64560091388822,0.0,349.9417389326461,106.15931652259337,0.0,18289.048161188148,0,41,2,1225,201701774,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3541.636243736888,0.0,260.0,0.0,0.0,24015.0,0,1,3,45.0,0,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,614.7466563691277,0.033612829434924,0.02559844498726328,24015.0,7,4,7,7_0,7_0,7_1_0 +1775,2,45.0,3,0.0,4,112,2,21,21,5.0,3966.1400228472053,0.0,1841.2319186917687,56.61830214538313,0.0,57886.951693502604,50,43,1,12250,201701775,,,388.0,,2.0,0.0,7.0,3.0,5.0,3.0,2369.0576376400736,0.0,1368.0,0.0,0.0,57073.0,1,1,2,300.0,5,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5863.990243684358,0.10130072619357755,0.10274543555944768,19024.333333333332,5,3,5,5_1,5_0,5_0_1 +1776,2,44.0,2,0.0,2,111,2,46,37,9.0,0.0,0.0,726.8020731678034,0.0,1716.2422837819263,59496.83087530163,43,20,1,12253,201701776,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.1,1913.7255042295365,0.0,540.0,970.0,0.0,67562.0,1,1,2,120.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2443.0443569497297,0.04106175608025348,0.03616003606982816,32172.38095238095,9,5,9,9_1,9_3,9_0_1 +1777,1,35.0,4,256.0,9,221,4,0,55,1.0,0.0,0.0,1726.827888656096,47.77169243516702,0.0,12512.910875301628,0,71,2,12255,201701777,,,317.0,234.0,1.0,1.0,5.0,0.0,1.0,1.0,1925.643198688874,0.0,1283.0,0.0,0.0,8893.0,0,4,3,120.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1774.5995810912632,0.14182148332839348,0.19955016092334008,8893.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1778,2,30.0,2,0.0,9,112,2,43,46,9.0,0.0,208.188947934516,740.261370819059,0.0,1150.059262328095,47935.92,31,30,1,12256,201701778,,,407.0,,2.0,0.0,6.0,1.0,3.0,1.8,2882.0821956198843,0.0,550.0,650.0,0.0,63147.0,1,1,2,115.0,8,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2098.50958108167,0.04377739242475518,0.033232134243616804,35081.666666666664,9,5,9,9_1,9_0,9_0_0 +1779,2,35.0,3,0.0,9,111,4,0,63,6.0,0.0,0.0,497.99401309645793,0.0,0.0,11241.5858467513,0,50,2,12257,201701779,,,176.0,,1.0,0.0,2.0,0.0,1.0,1.0,2634.3046418994454,0.0,370.0,0.0,0.0,20957.0,0,1,2,38.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,497.99401309645793,0.044299267014926806,0.0237626574937471,20957.0,5,3,5,5_0,5_2,5_0_0 +1780,1,30.0,3,314.0,8,111,2,55,62,3.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,21622.379999999997,42,50,1,12258,201701780,,,500.0,277.0,2.0,0.0,4.0,3.0,5.0,2.4,2325.5430680177174,1000.0,0.0,0.0,0.0,34018.0,1,1,3,92.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1594.1895599657205,0.07372868111492448,0.046863118348101605,14174.166666666668,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +1781,2,71.0,3,0.0,4,300,2,0,78,3.0,2379.684013708323,270.6456323148708,1189.8019123709967,0.0,0.0,17881.92,0,60,1,12259,201701781,,,345.0,,0.0,4.0,5.0,0.0,1.0,1.0,2463.922136933563,0.0,884.0,0.0,0.0,15313.0,0,5,5,120.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3840.1315583941905,0.21474939818510488,0.25077591317143544,15313.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +1782,1,86.0,4,261.0,9,111,2,0,75,2.0,0.0,0.0,200.42344554624543,0.0,373.4847960414139,9341.504691045116,0,71,2,1226,201701782,,,,64.0,0.0,6.0,2.0,0.0,1.0,1.0,4136.235589702767,360.0,0.0,0.0,0.0,12512.0,0,5,3,50.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,573.9082415876594,0.061436381029473235,0.04586862544658403,12512.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1783,2,68.0,3,0.0,1,221,2,0,77,5.0,1586.456009138882,0.0,2288.080600713455,141.54575536345783,0.0,26602.4,0,70,1,12260,201701783,,,660.0,,0.0,3.0,6.0,0.0,1.0,1.0,1879.7904847847342,0.0,1700.0,0.0,0.0,18830.0,0,5,1,200.0,1,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4016.082365215795,0.15096691897031075,0.21328106028761526,18830.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +1784,2,58.0,2,0.0,1,300,2,77,47,8.0,0.0,0.0,1126.2684176112625,0.0,2098.77706219939,51557.50000000001,60,31,1,12261,201701784,,,,,2.0,1.0,5.0,1.0,4.0,2.3,2908.8163019072404,2023.0,0.0,0.0,0.0,61525.0,6,1,2,100.0,0,1.0,5,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3225.0454798106525,0.06255240226563841,0.05241845558408212,26750.000000000004,7,4,7,7_1,7_1,7_1_0 +1785,2,56.0,1,0.0,1,111,2,75,47,7.0,0.0,0.0,3634.010365839017,0.0,2653.9829130648345,44976.21665845404,50,50,1,12267,201701785,,,150.0,,2.0,1.0,5.0,1.0,3.0,2.0,1356.4127213958723,0.0,2700.0,1500.0,0.0,53286.0,7,1,1,80.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,6287.993278903852,0.13980707462911773,0.11800460306466712,26643.0,7,4,7,7_1,7_2,7_1_0 +1786,1,22.0,4,515.0,9,300,4,69,69,1.0,0.0,0.0,807.5578590753372,212.31863304518674,0.0,8969.69665845403,50,71,1,12268,201701786,,,,,2.0,0.0,3.0,4.0,6.0,2.7,1997.0539385557306,0.0,600.0,0.0,0.0,25590.0,4,4,3,70.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1019.876492120524,0.11370245070208479,0.039854493635034155,9477.777777777777,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +1787,2,34.0,2,0.0,1,111,2,46,33,9.0,0.0,0.0,363.4010365839017,0.0,707.7287768172891,50723.72000000001,42,12,2,12269,201701787,,,,780.0,2.0,0.0,5.0,2.0,4.0,2.1,2591.9368937605127,0.0,270.0,400.0,0.0,62256.0,1,1,3,85.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1071.1298134011909,0.021116941214114237,0.017205246295958477,29645.714285714286,8,4,8,8_0,8_3,8_1_0 +1788,2,93.0,2,0.0,5,400,1,77,77,6.0,0.0,0.0,0.0,0.0,0.0,24129.341750603253,70,60,8,1227,201701788,,,,414.0,0.0,2.0,1.0,0.0,2.0,1.5,2709.112131321798,0.0,0.0,0.0,0.0,32514.0,5,5,3,33.0,0,1.0,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,21676.0,6,3,6,6_0,6_1,6_0_0 +1789,1,48.0,3,43.0,1,120,6,52,21,2.0,2062.392811880547,0.0,1203.2612100222523,0.0,0.0,34647.520000000004,50,50,1,12270,201701789,,,724.0,,3.0,1.0,5.0,2.0,4.0,2.3,2424.180151808618,0.0,894.0,0.0,0.0,27186.0,1,1,2,100.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3265.6540219027993,0.09425361532088873,0.12012263745688219,11820.000000000002,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +1790,2,52.0,4,0.0,1,112,2,0,21,10.0,2379.684013708323,0.0,672.964882562781,0.0,0.0,40273.24,0,50,1,12271,201701790,,,600.0,,1.0,3.0,7.0,0.0,1.0,1.0,4506.0780256181815,0.0,500.0,0.0,0.0,61470.0,0,1,2,230.0,8,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3052.648896271104,0.07579844324099835,0.04966079219572318,61470.0,10,5,10,10_1,10_0,10_1_0 +1791,2,77.0,3,0.0,1,400,5,72,72,3.0,0.0,34.698157989086,1403.8373916998296,169.8549064361494,860.3430041558803,19680.57774272367,70,70,1,12273,201701791,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2162.141350574943,829.2800263327805,700.0,0.0,0.0,21417.0,5,5,1,100.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2468.733460280945,0.12544009086286548,0.11526980717565229,14278.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1792,2,61.0,3,0.0,6,111,2,0,52,5.0,0.0,0.0,811.5956483707139,0.0,1652.54669386837,31472.507597354557,0,50,1,12274,201701792,,,507.0,,1.0,3.0,5.0,1.0,2.0,1.5,538.471995184801,0.0,603.0,934.0,0.0,32767.0,0,1,1,100.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2464.142342239084,0.07829507498303723,0.0752019514218294,21844.666666666668,6,3,6,6_1,6_4,6_0_0 +1793,1,26.0,4,256.0,2,111,4,0,56,2.0,0.0,0.0,1211.3367886130059,0.0,0.0,9688.26,0,42,2,12275,201701793,,,,156.0,1.0,0.0,2.0,0.0,1.0,1.0,3477.206982345569,0.0,900.0,0.0,0.0,12492.0,0,4,3,63.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1211.3367886130059,0.1250314079734654,0.09696900325112119,12492.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1794,2,69.0,3,0.0,1,111,2,77,72,6.0,2221.038412794435,0.0,1589.5430526132886,212.31863304518674,0.0,27713.590875301627,70,50,1,12276,201701794,,,500.0,,0.0,2.0,6.0,0.0,2.0,1.5,1312.6285253822684,0.0,1181.0,0.0,0.0,38515.0,5,5,1,200.0,5,4.0,3,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4022.9000984529102,0.14515982849548817,0.10445021675848137,25676.666666666668,7,4,7,7_1,7_2,7_1_0 +1795,2,54.0,3,0.0,4,111,6,0,46,3.0,951.8736054833294,166.55115834761278,1075.766465952057,0.0,248.9898640276093,27442.94,0,30,1,12277,201701795,,,220.0,,2.0,0.0,5.0,2.0,3.0,2.0,2446.7633828317953,240.0,700.0,0.0,0.0,28210.0,0,1,1,92.0,9,7.0,2,8,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2443.181093810608,0.08902767319429362,0.08660691576783439,14105.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +1796,2,66.0,2,0.0,7,112,6,0,72,5.0,0.0,0.0,807.5578590753372,233.5504963497054,0.0,26134.92,0,71,1,12282,201701796,,,,,0.0,4.0,5.0,0.0,1.0,1.0,5061.900023381868,0.0,600.0,0.0,0.0,19972.0,0,5,1,160.0,7,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1041.1083554250426,0.03983591131807722,0.05212839752779104,19972.0,5,3,5,5_1,5_0,5_0_0 +1797,2,81.0,2,0.0,99,111,1,0,75,8.0,0.0,0.0,304.180126918377,0.0,194.62541362475451,19173.88,0,31,2,12286,201701797,,,,378.0,0.0,1.0,3.0,0.0,1.0,1.0,4059.8926722436977,0.0,226.0,110.0,0.0,31170.0,0,5,3,55.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,498.80554054313154,0.026014846267063917,0.016002744322846697,31170.0,8,4,8,8_0,8_3,8_0_0 +1798,2,83.0,3,0.0,99,211,1,0,86,4.0,0.0,360.86084308649436,1100.6587551247978,0.0,2051.0540049274314,13665.7858467513,0,60,1,12287,201701798,,,200.0,,0.0,8.0,6.0,0.0,1.0,1.0,1374.0631569815996,1977.0,0.0,0.0,0.0,18538.0,0,6,5,127.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3512.5736031387237,0.2570341466293174,0.1894796419861217,18538.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1799,2,79.0,3,0.0,1,400,5,71,71,3.0,0.0,1249.133687607096,1682.4122064069525,47.77169243516702,0.0,15379.331191295747,71,71,1,12288,201701799,,,100.0,,0.0,3.0,6.0,0.0,2.0,1.5,2009.4294841744231,0.0,1250.0,0.0,0.0,21143.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2979.3175864492155,0.1937221813738833,0.14091271751639858,14095.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1800,2,45.0,4,0.0,99,111,6,0,52,1.0,118.98420068541617,0.0,1055.2089358584406,0.0,0.0,34706.38436368505,0,60,2,12289,201701800,,,,686.0,1.0,0.0,3.0,3.0,4.0,2.3,666.2831533588529,0.0,784.0,0.0,0.0,21520.0,0,1,3,67.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1174.1931365438568,0.03383219422223858,0.054562878092186656,9356.521739130436,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +1801,2,41.0,2,0.0,9,111,1,85,35,10.0,0.0,0.0,672.964882562781,0.0,0.0,50978.6858467513,0,41,2,1229,201701801,,,250.0,,1.0,0.0,4.0,2.0,4.0,2.1,3093.9426680025936,0.0,500.0,0.0,0.0,110470.0,8,1,1,87.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,672.964882562781,0.013200906837532117,0.006091833824230841,52604.7619047619,10,5,10,10_0,10_3,10_0_0 +1802,2,31.0,3,0.0,9,221,2,67,21,5.0,0.0,0.0,1243.6391029760193,0.0,0.0,36648.516722052926,41,43,2,12290,201701802,,,320.0,,2.0,0.0,3.0,0.0,2.0,1.5,1373.3784128748396,0.0,924.0,0.0,0.0,30153.0,1,1,3,58.0,1,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1243.6391029760193,0.033934227472504234,0.04124429088236724,20102.0,5,3,5,5_0,5_1,5_0_0 +1803,2,55.0,3,0.0,9,211,2,78,78,1.0,0.0,0.0,201.8894647688343,0.0,0.0,13984.931191295747,71,50,2,12292,201701803,,,,449.0,0.0,3.0,3.0,0.0,2.0,1.5,1080.2608502238625,0.0,150.0,0.0,0.0,14741.0,5,7,3,85.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,201.8894647688343,0.014436214380124428,0.01369577808621086,9827.333333333334,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +1804,2,56.0,3,0.0,4,111,2,37,31,10.0,0.0,0.0,3892.5594674385993,0.0,8025.065905777796,76030.07063219533,42,30,1,12293,201701804,,,620.0,,2.0,5.0,7.0,1.0,3.0,2.0,1966.3175736641956,3317.120105331122,1520.0,2590.65,0.0,121054.0,1,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,11917.625373216395,0.15674883995398808,0.09844883583538251,60527.0,10,5,10,10_1,10_4,10_0_1 +1805,2,88.0,2,0.0,1,111,2,0,75,10.0,0.0,0.0,94.21508355878933,0.0,2995.462047879176,21453.36,0,60,1,12294,201701805,,,161.0,,0.0,4.0,4.0,0.0,1.0,1.0,2626.4529142633237,0.0,70.0,1693.0,0.0,46817.0,0,5,3,80.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3089.6771314379657,0.14401833239352557,0.06599476966567626,46817.0,10,5,10,10_1,10_3,10_1_0 +1806,2,36.0,4,0.0,9,111,4,22,31,8.0,0.0,0.0,613.7439728972563,0.0,0.0,35715.42,20,20,1,12297,201701806,,,250.0,,2.0,0.0,4.0,1.0,3.0,1.8,2559.1121358207324,0.0,456.0,0.0,0.0,53440.0,1,1,2,105.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,613.7439728972563,0.017184285468216706,0.011484730031760036,29688.888888888887,8,4,8,8_1,8_4,8_0_0 +1807,0,28.0,2,0.0,99,300,5,0,68,2.0,0.0,0.0,403.7789295376686,0.0,0.0,17532.879999999997,0,50,1,12298,201701807,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2366.362811159689,0.0,300.0,0.0,0.0,15420.0,0,1,5,78.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,403.7789295376686,0.023029811961164888,0.026185403990769688,11861.538461538461,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1808,2,78.0,2,0.0,4,111,2,0,54,7.0,0.0,0.0,212.6569028898388,0.0,0.0,16884.0,0,60,1,12299,201701808,,,12.0,,1.0,3.0,4.0,0.0,1.0,1.0,2660.8657334554255,0.0,158.0,0.0,0.0,22558.0,0,5,5,208.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,212.6569028898388,0.012595173115958232,0.009427116893777763,22558.0,6,3,6,6_1,6_3,6_0_1 +1809,2,64.0,2,0.0,9,221,4,0,21,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,39412.00586342598,0,41,1,123,201701809,,,396.0,1222.0,1.0,1.0,4.0,0.0,1.0,1.0,1203.2534858955178,0.0,1200.0,0.0,0.0,24675.0,0,1,3,78.0,1,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.040980297317206295,0.06545555088756533,24675.0,7,4,7,7_1,7_1,7_0_0 +1810,2,70.0,1,0.0,1,112,2,77,74,10.0,0.0,0.0,5351.416746139234,212.31863304518674,0.0,67026.0,41,10,1,1230,201701810,,,250.0,,0.0,1.0,6.0,0.0,2.0,1.5,1720.8167277515984,0.0,3976.0,0.0,0.0,71077.0,5,5,1,150.0,9,3.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,5563.735379184422,0.08300861425692152,0.07827757754525967,47384.666666666664,10,5,10,10_1,10_1,10_1_0 +1811,2,69.0,3,0.0,1,111,1,0,77,6.0,0.0,0.0,730.5928958694491,0.0,1876.7105099697565,25318.249369488953,0,50,1,12301,201701811,,,210.0,,0.0,1.0,5.0,0.0,1.0,1.0,1698.913843639179,103.51126702695868,500.0,1000.0,0.0,22455.0,0,5,1,110.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2607.3034058392054,0.10298118830369328,0.1161123761228771,22455.0,6,3,6,6_1,6_3,6_1_0 +1812,2,47.0,3,0.0,6,112,2,63,56,1.0,0.0,0.0,2393.063122393249,226.47320858153253,0.0,40896.86000000001,50,30,1,12302,201701812,,,520.0,,2.0,0.0,5.0,2.0,4.0,2.5,2023.693944607977,0.0,1778.0,0.0,0.0,25900.0,4,1,2,120.0,9,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2619.536330974782,0.06405226051522736,0.10114039887933521,10360.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +1813,1,44.0,4,408.0,5,211,2,0,56,2.0,0.0,0.0,107.67438121004496,0.0,353.8643884086446,16379.019999999999,0,50,1,12303,201701813,,,,172.0,1.0,2.0,5.0,2.0,3.0,1.8,1084.619328479818,0.0,80.0,200.0,0.0,21636.0,0,1,3,109.0,2,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,461.5387696186895,0.028178655964684673,0.02133198232661719,12020.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +1814,2,63.0,3,0.0,99,221,2,55,75,3.0,0.0,0.0,1558.8490209152424,0.0,2904.881746988775,39441.870875301625,41,70,1,12304,201701814,,,,,1.0,1.0,6.0,3.0,5.0,3.0,1713.651792422971,2800.0,0.0,0.0,0.0,43865.0,1,5,2,160.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4463.730767904017,0.11317238936298002,0.10176064670931305,14621.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1815,1,23.0,4,326.0,99,111,1,0,85,2.0,0.0,0.0,726.8020731678034,0.0,1167.752481748527,15795.300000000001,0,50,2,12307,201701815,,,,,0.0,0.0,3.0,2.0,3.0,1.6,1778.1620406780175,0.0,540.0,660.0,0.0,17102.0,0,6,3,65.0,6,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1894.5545549163305,0.11994419573647416,0.11077970733927789,10688.75,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1816,2,55.0,3,0.0,4,111,2,48,55,8.0,1540.4487848738545,0.0,1292.0925745205395,0.0,0.0,42350.68,50,41,1,12308,201701816,,,132.0,,2.0,3.0,5.0,0.0,2.0,1.5,1849.3938976970865,0.0,960.0,0.0,0.0,39104.0,1,1,1,86.0,6,5.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2832.541359394394,0.06688301957357931,0.07243610268500394,26069.333333333332,7,4,7,7_1,7_2,7_0_1 +1817,2,54.0,2,0.0,8,300,4,0,62,4.0,0.0,0.0,1258.4443303924004,0.0,0.0,12394.039999999999,0,50,1,12309,201701817,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2715.033658342364,0.0,935.0,0.0,0.0,17878.0,0,1,1,122.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1258.4443303924004,0.10153624890611943,0.07039066620384833,17878.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1818,2,36.0,2,0.0,9,112,5,64,43,7.0,0.0,162.38737938892248,1028.2903405559293,0.0,0.0,36516.14,50,33,1,1231,201701818,,,362.0,,2.0,0.0,4.0,1.0,3.0,1.8,2239.6937506181966,0.0,764.0,0.0,0.0,42515.0,1,1,2,98.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1190.6777199448518,0.03260688889748072,0.02800606185922267,23619.444444444445,6,3,6,6_1,6_0,6_0_0 +1819,2,37.0,1,0.0,1,111,1,34,37,10.0,0.0,0.0,471.07541779394666,0.0,0.0,50460.18000000001,10,20,2,12310,201701819,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3784.5655551189866,0.0,350.0,0.0,0.0,94678.0,1,1,2,66.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,471.07541779394666,0.009335587344197873,0.004975553114704014,63118.666666666664,10,5,10,10_0,10_4,10_1_0 +1820,2,55.0,3,0.0,4,211,2,0,56,4.0,0.0,0.0,469.7294880288211,0.0,2289.5025930039305,20146.84,0,71,2,12311,201701820,,,,274.0,1.0,3.0,4.0,0.0,1.0,1.0,1333.6163658595547,0.0,349.0,1294.0,0.0,18280.0,0,1,3,80.0,2,3.0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,2759.2320810327515,0.13695607256685174,0.15094267401710895,18280.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +1821,2,58.0,3,0.0,9,111,1,0,75,8.0,0.0,0.0,269.1859530251124,0.0,0.0,19933.0,0,31,8,12312,201701821,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3217.214924936239,0.0,200.0,0.0,0.0,29368.0,0,5,2,53.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,269.1859530251124,0.01350453785306338,0.009165961353347601,29368.0,8,4,8,8_0,8_2,8_0_0 +1822,2,53.0,2,0.0,1,111,2,85,46,2.0,0.0,0.0,1191.603627193257,0.0,2220.527825232868,41121.193443519835,20,20,2,12313,201701822,,,258.0,,1.0,4.0,3.0,0.0,2.0,1.5,1975.498196989049,2140.3549101773665,0.0,0.0,0.0,18929.0,1,1,3,100.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,3412.131452426125,0.08297744220660096,0.1802594670836349,12619.333333333334,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +1823,2,49.0,3,0.0,9,111,2,0,34,6.0,0.0,0.0,497.99401309645793,0.0,1539.310089577604,35599.299999999996,0,30,2,12314,201701823,,,,,1.0,0.0,4.0,2.0,3.0,2.0,1889.9684005317326,0.0,370.0,870.0,0.0,48437.0,0,1,2,80.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2037.304102674062,0.05722876861831728,0.042060905974235854,24218.5,7,4,7,7_0,7_3,7_0_0 +1824,2,54.0,1,0.0,5,120,4,75,45,6.0,0.0,0.0,907.1566616946287,54.84898020333991,0.0,23487.94,31,42,1,12315,201701824,,,318.0,,1.0,2.0,4.0,0.0,2.0,1.5,1959.7164636594146,0.0,674.0,0.0,0.0,36732.0,7,1,1,132.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,962.0056418979686,0.04095742929767228,0.026189851951921177,24488.0,7,4,7,7_1,7_0,7_0_0 +1825,2,51.0,2,0.0,6,111,5,54,47,9.0,0.0,0.0,1345.929765125562,261.859647422397,0.0,36183.56,42,31,1,12316,201701825,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1472.6287672281353,0.0,1000.0,0.0,0.0,47426.0,1,1,1,122.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1607.789412547959,0.04443425170292694,0.033901012367645575,31617.333333333332,8,4,8,8_1,8_2,8_0_0 +1826,1,58.0,4,124.0,6,111,1,85,63,2.0,0.0,0.0,672.964882562781,636.9558991355602,0.0,42287.05999999999,71,71,2,12319,201701826,1300.0,1300.0,,254.0,3.0,3.0,4.0,4.0,6.0,3.3,2187.0312331124874,0.0,500.0,0.0,0.0,39368.0,6,1,3,85.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1309.9207816983412,0.030976870505973732,0.033273744708858494,11929.69696969697,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1827,2,42.0,3,0.0,9,112,4,0,52,1.0,0.0,0.0,1843.9237782220198,0.0,0.0,77593.16429960128,50,42,1,12321,201701827,,,288.0,,1.0,0.0,7.0,3.0,5.0,2.8,1345.3216311157523,0.0,1370.0,0.0,0.0,29069.0,8,1,1,159.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1843.9237782220198,0.02376399770348707,0.06343265259286593,10381.785714285716,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +1828,2,59.0,3,0.0,6,112,5,67,52,7.0,0.0,555.170527825376,672.964882562781,0.0,0.0,18358.34238259149,50,50,1,12322,201701828,,,,,2.0,4.0,5.0,0.0,2.0,1.5,1916.4522126512243,0.0,500.0,0.0,0.0,38036.0,1,1,1,170.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1228.135410388157,0.06689794670965231,0.03228876355000938,25357.333333333332,7,4,7,7_1,7_0,7_0_0 +1829,2,58.0,1,0.0,5,111,2,75,38,10.0,0.0,0.0,1518.3771314639698,0.0,2896.2872795698527,32823.85369488954,50,31,1,12324,201701829,,,,,1.0,1.0,5.0,0.0,2.0,1.5,1820.2020847165156,1035.1126702695867,699.96,1030.0,0.0,72545.0,5,1,1,95.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4414.664411033822,0.13449561566017937,0.06085415136858256,48363.333333333336,10,5,10,10_1,10_3,10_0_0 +1830,0,80.0,3,0.0,7,120,4,0,71,1.0,0.0,0.0,0.0,0.0,0.0,6545.0,0,71,1,12327,201701830,,,,,0.0,3.0,4.0,0.0,1.0,1.0,1606.3103449067614,0.0,0.0,0.0,0.0,13891.0,0,5,5,90.0,0,3.0,1,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,13891.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +1831,2,69.0,2,0.0,2,111,1,0,75,9.0,0.0,0.0,22.269271727360607,0.0,41.498310671268214,11620.939999999999,0,31,2,12329,201701831,,,,274.0,0.0,0.0,2.0,0.0,1.0,1.0,6219.9995780047975,40.0,0.0,0.0,0.0,38982.0,0,5,3,32.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,63.76758239862882,0.0054872998568643175,0.0016358212097539588,38982.0,9,5,9,9_0,9_4,9_0_1 +1832,2,48.0,4,0.0,2,111,2,85,46,7.0,0.0,0.0,4673.068144515951,0.0,0.0,67966.43714057725,42,42,1,1233,201701832,,,615.0,,1.0,0.0,4.0,1.0,3.0,2.0,3472.4696613704823,0.0,3472.0,0.0,0.0,62219.0,6,1,2,130.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4673.068144515951,0.06875552612608614,0.07510677035175671,31109.5,8,4,8,8_1,8_4,8_0_1 +1833,1,59.0,4,130.0,1,221,2,0,68,3.0,0.0,0.0,969.0694308904046,185.7788039145384,0.0,15246.800000000001,0,71,2,12330,201701833,,,600.0,520.0,1.0,2.0,3.0,0.0,1.0,1.0,4149.345875404117,0.0,720.0,0.0,0.0,14520.0,0,1,3,50.0,1,1.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1154.848234804943,0.07574364685081086,0.07953500239703465,14520.0,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +1834,2,20.0,2,0.0,99,111,4,0,84,2.0,0.0,0.0,768.5258958866958,0.0,0.0,25186.14031599412,0,31,2,12331,201701834,,,160.0,440.0,0.0,0.0,2.0,0.0,1.0,1.0,3708.9741023281695,0.0,571.0,0.0,0.0,12010.0,0,3,3,68.0,7,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,768.5258958866958,0.03051384159083136,0.06399049924119032,12010.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +1835,1,48.0,2,379.0,5,111,1,0,68,2.0,0.0,0.0,403.7789295376686,0.0,796.1948739194503,9589.86,0,50,2,12333,201701835,,,,,1.0,0.0,3.0,1.0,2.0,1.5,1071.3369441663083,0.0,300.0,450.0,0.0,15954.0,0,4,3,70.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1199.973803457119,0.1251294391635664,0.07521460470459565,10636.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1836,2,76.0,3,0.0,1,400,5,0,,3.0,0.0,0.0,924.653748641261,452.94641716306506,0.0,8541.390875301628,0,50,1,12334,201701836,,,77.0,,0.0,3.0,5.0,0.0,1.0,1.0,1866.9784741955857,0.0,687.0,0.0,0.0,14180.0,0,5,1,,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1377.600165804326,0.16128522695148031,0.09715092847703287,14180.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1837,2,32.0,4,0.0,9,111,2,47,55,9.0,0.0,0.0,740.261370819059,0.0,1769.3219420432229,87062.2,20,44,2,12335,201701837,,,300.0,621.0,2.0,0.0,3.0,0.0,2.0,1.5,3338.9732263869737,0.0,550.0,1000.0,0.0,56926.0,1,1,3,80.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2509.5833128622817,0.0288251768604777,0.04408501059028004,37950.666666666664,9,5,9,9_0,9_3,9_0_0 +1838,2,31.0,1,0.0,9,112,4,0,53,5.0,0.0,0.0,1224.7960862642615,47.77169243516702,0.0,35097.4,0,31,2,12336,201701838,,,70.0,,1.0,0.0,2.0,0.0,1.0,1.0,3328.83269493221,0.0,910.0,0.0,0.0,19219.0,0,1,3,60.0,5,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1272.5677786994286,0.036258178061606514,0.06621404748943382,19219.0,5,3,5,5_0,5_0,5_0_0 +1839,1,57.0,3,257.0,99,112,6,0,,3.0,0.0,0.0,1453.6041463356069,0.0,0.0,9469.960000000001,0,71,2,12338,201701839,,,,,0.0,0.0,2.0,0.0,1.0,1.0,1342.1328435291346,0.0,1080.0,0.0,0.0,14954.0,0,8,3,,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1453.6041463356069,0.15349633433885748,0.09720503854056485,14954.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +1840,2,38.0,3,0.0,1,211,2,0,37,7.0,0.0,0.0,605.6683943065029,0.0,1061.5931652259337,39071.4,0,30,1,12339,201701840,,,300.0,,1.0,0.0,4.0,1.0,2.0,1.3,1678.13381951933,0.0,450.0,600.0,0.0,30806.0,0,1,2,90.0,2,3.0,2,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1667.2615595324366,0.042672173496021044,0.054121325700591985,23696.923076923074,6,3,6,6_1,6_1,6_1_0 +1841,2,67.0,3,0.0,4,111,1,78,77,4.0,0.0,0.0,847.935752029104,0.0,477.7169243516702,20204.180315994116,71,50,2,12340,201701841,,,,270.0,0.0,2.0,4.0,0.0,2.0,1.5,2776.90936061925,0.0,630.0,270.0,0.0,23771.0,5,5,3,84.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1325.6526763807742,0.06561279179098177,0.0557676444567235,15847.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +1842,2,39.0,2,0.0,5,111,2,85,42,8.0,0.0,0.0,759.1043875308169,0.0,1910.8676974066807,36655.68,20,10,2,12342,201701842,,,,,1.0,0.0,5.0,3.0,5.0,2.4,2431.8789900578645,0.0,564.0,1080.0,0.0,64740.0,6,1,2,89.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2669.9720849374976,0.07283924578503242,0.04124145945223197,26975.0,7,4,7,7_0,7_3,7_0_0 +1843,1,36.0,2,142.0,3,211,2,0,52,4.0,0.0,0.0,728.148002932929,0.0,1928.560916827113,29131.107538214856,0,50,1,12344,201701843,,,344.0,,1.0,0.0,5.0,1.0,2.0,1.3,196.0029346597453,0.0,541.0,1090.0,0.0,21884.0,0,1,2,100.0,3,3.0,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,2656.708919760042,0.09119834926546855,0.12139960335222273,16833.846153846152,4,2,4_1,4_1_1,4_1_1,4_0_1_1 +1844,1,38.0,2,240.0,4,111,2,54,45,7.0,0.0,0.0,1884.3016711757866,0.0,0.0,52587.08,20,41,1,12345,201701844,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1940.063142059374,0.0,1400.0,0.0,0.0,53176.0,8,1,3,115.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1884.3016711757866,0.0358320270145402,0.03543519014547515,25321.90476190476,7,4,7,7_1,7_2,7_0_1 +1845,2,92.0,3,0.0,1,400,4,0,71,2.0,0.0,0.0,2261.162005410944,274.24490101669954,0.0,15305.745846751299,0,70,1,12348,201701845,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2478.436436606674,0.0,1680.0,0.0,0.0,11210.0,0,5,5,100.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2535.4069064276437,0.16565066033458234,0.22617367586330453,11210.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1846,2,67.0,3,0.0,5,111,5,0,75,8.0,0.0,388.6193694777632,816.9793674312161,0.0,668.8036940923382,22758.359999999997,0,60,1,12349,201701846,,,287.0,,0.0,1.0,3.0,0.0,1.0,1.0,2719.97298200804,0.0,607.0,378.0,0.0,27870.0,0,5,1,120.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1874.4024310013176,0.08236105022511805,0.06725520025121341,27870.0,8,4,8,8_1,8_2,8_0_0 +1847,2,43.0,1,0.0,1,111,2,37,37,10.0,2879.417656587071,0.0,1152.115878947481,0.0,0.0,66004.52000000002,20,20,1,1235,201701847,,,412.0,,2.0,0.0,6.0,1.0,3.0,1.8,3928.756152817924,0.0,856.0,0.0,0.0,76158.0,1,1,3,105.0,8,6.0,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4031.5335355345524,0.061079658416341054,0.05293644181221346,42310.0,10,5,10,10_1,10_2,10_1_0 +1848,2,25.0,2,0.0,1,120,2,55,63,9.0,0.0,693.9631597817199,2783.6589659200754,0.0,5187.2888339085275,64602.18,43,43,1,12350,201701848,,,324.0,,3.0,1.0,6.0,2.0,5.0,2.6,3430.7040019901,5000.0,0.0,0.0,0.0,84369.0,1,1,1,300.0,0,2.0,5,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,8664.910959610323,0.13412722232609367,0.10270254429482775,32449.615384615383,9,5,9,9_1,9_1,9_1_0 +1849,2,74.0,3,0.0,9,111,5,77,74,9.0,0.0,1380.9866879656227,2366.144527090738,123.8525359430256,0.0,32622.219999999994,70,30,1,12352,201701849,,,350.0,,0.0,3.0,7.0,0.0,2.0,1.5,1449.2745133340043,0.0,1758.0,0.0,0.0,49630.0,5,5,1,260.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3870.9837509993863,0.1186609541287928,0.07799685172273597,33086.666666666664,9,5,9,9_1,9_2,9_0_0 +1850,2,63.0,1,0.0,7,112,4,22,31,9.0,0.0,0.0,4522.324010821888,0.0,0.0,26931.831388765804,50,10,1,12353,201701850,,,,,2.0,2.0,5.0,1.0,3.0,2.0,1974.5846540008663,0.0,3360.0,0.0,0.0,85495.0,1,1,1,170.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4522.324010821888,0.16791743366952405,0.052895771809133726,42747.5,10,5,10,10_1,10_1,10_0_0 +1851,2,44.0,2,0.0,9,112,2,42,62,7.0,0.0,0.0,2698.589179076752,0.0,0.0,35521.441750603255,30,60,1,12354,201701851,,,472.0,,2.0,0.0,5.0,2.0,4.0,2.1,3346.179569641074,0.0,2005.0,0.0,0.0,56490.0,1,1,2,170.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2698.589179076752,0.07597071081809122,0.04777109539877415,26900.0,7,4,7,7_1,7_0,7_0_0 +1852,2,44.0,2,0.0,5,120,2,22,65,5.0,0.0,0.0,4207.3673471722805,0.0,516.6539678572893,62720.77087530163,60,50,1,12355,201701852,,,596.0,,2.0,0.0,4.0,2.0,4.0,2.5,2427.096220071651,498.0,2920.0,0.0,0.0,52090.0,1,1,1,120.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4724.021315029569,0.07531829167759493,0.09068960097964233,20836.0,5,3,5,5_1,5_0,5_0_0 +1853,2,42.0,3,0.0,3,300,2,0,64,3.0,0.0,0.0,605.6683943065029,0.0,1150.059262328095,11694.471502734117,0,71,2,12357,201701853,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2717.08076838319,0.0,450.0,650.0,0.0,15183.0,0,1,3,60.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1755.727656634598,0.150133133953434,0.11563773013466364,15183.0,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +1854,2,54.0,3,0.0,1,400,1,0,12,3.0,0.0,0.0,1345.929765125562,205.24134527701386,0.0,9152.824940533474,0,50,1,12358,201701854,,,600.0,,1.0,0.0,4.0,1.0,2.0,1.5,2709.8524481846384,0.0,1000.0,0.0,0.0,21062.0,0,1,1,100.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1551.1711104025758,0.16947457429598403,0.07364785444889259,14041.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1855,2,76.0,2,0.0,4,112,2,75,74,9.0,0.0,0.0,835.5649452308028,0.0,3311.0942439269647,28288.92505633758,41,50,1,12359,201701855,,,368.0,,0.0,3.0,5.0,0.0,2.0,1.5,2230.4546604246448,669.2003413292879,344.0,1479.0,0.0,52211.0,5,5,1,120.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4146.659189157767,0.14658242336531588,0.0794211792372827,34807.333333333336,9,5,9,9_1,9_2,9_0_1 +1856,2,54.0,4,0.0,1,111,2,0,56,3.0,0.0,0.0,1306.8978019369206,0.0,0.0,16573.892027330716,0,50,1,1236,201701856,,,110.0,,1.0,1.0,4.0,0.0,1.0,1.0,1949.4518730017694,0.0,971.0,0.0,0.0,14109.0,0,1,1,90.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1306.8978019369206,0.07885280052396969,0.09262866269309807,14109.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +1857,1,41.0,4,27.0,9,221,5,0,52,5.0,0.0,505.20518032109214,1485.9064606986203,0.0,0.0,25128.48,0,50,1,12360,201701857,,,600.0,,1.0,0.0,3.0,1.0,2.0,1.3,450.95226223616316,0.0,1104.0,0.0,0.0,24294.0,0,1,2,83.0,1,2.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1991.1116410197124,0.07923724956780961,0.0819589874462712,18687.69230769231,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +1858,2,29.0,2,0.0,2,112,4,43,43,8.0,0.0,0.0,1211.3367886130059,0.0,0.0,20623.899999999998,33,44,2,12361,201701858,,,190.0,,2.0,0.0,5.0,0.0,2.0,1.5,2336.6998710178364,0.0,900.0,0.0,0.0,42124.0,1,1,3,90.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1211.3367886130059,0.05873461317272708,0.028756452108370665,28082.666666666668,8,4,8,8_0,8_1,8_0_1 +1859,2,87.0,3,0.0,4,120,2,74,74,9.0,3172.912018277764,0.0,672.964882562781,297.2460862632615,0.0,18851.324177580944,10,10,1,12362,201701859,,,800.0,,0.0,4.0,7.0,0.0,2.0,1.5,1989.9602392580741,0.0,500.0,0.0,0.0,52558.0,5,5,1,141.0,0,0.0,3,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4143.122987103807,0.2197788838638212,0.07882954045252495,35038.666666666664,9,5,9,9_1,9_0,9_0_1 +1860,2,69.0,2,0.0,6,111,5,77,74,10.0,0.0,693.9631597817199,3111.7896169702994,0.0,0.0,77390.52,60,41,1,12363,201701860,,,573.0,,0.0,1.0,5.0,0.0,2.0,1.5,1634.5483816818135,0.0,2312.0,0.0,0.0,67760.0,5,5,1,170.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3805.7527767520196,0.04917595561771674,0.056165182655726384,45173.333333333336,10,5,10,10_1,10_3,10_0_0 +1861,1,52.0,5,353.0,99,400,4,0,56,1.0,0.0,0.0,1823.7348317451365,230.01185246561897,0.0,4396.0,0,50,1,12364,201701861,,,396.0,,2.0,2.0,3.0,2.0,3.0,2.0,168.46211417272835,0.0,1355.0,0.0,0.0,14696.0,0,4,3,70.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2053.7466842107556,0.4671853239787888,0.13974868564308354,7348.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +1862,2,56.0,3,0.0,7,300,2,56,52,4.0,475.9368027416647,208.188947934516,1009.4473238441715,0.0,0.0,30852.439999999995,41,50,1,12365,201701862,,,450.0,,2.0,3.0,7.0,0.0,2.0,1.5,1300.6029593737046,0.0,750.0,0.0,0.0,27462.0,4,1,1,140.0,0,1.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1693.5730745203523,0.05489267865103546,0.06166969173841498,18308.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1863,2,36.0,1,0.0,1,111,2,37,37,10.0,0.0,0.0,2004.2344554624544,0.0,3734.8479604141394,50474.92,12,20,1,12366,201701863,,,170.0,2050.0,2.0,0.0,6.0,1.0,3.0,1.8,1960.9857424330942,3600.0,0.0,0.0,0.0,108593.0,1,1,3,194.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,5739.082415876594,0.11370166442812775,0.05284946926483838,60329.444444444445,10,5,10,10_1,10_3,10_1_0 +1864,2,61.0,2,0.0,6,112,5,75,78,8.0,0.0,416.377895869032,403.7789295376686,0.0,0.0,60180.74,60,60,1,12367,201701864,,,650.0,,0.0,2.0,6.0,0.0,2.0,1.5,1500.3273138779348,0.0,300.0,0.0,0.0,42040.0,5,5,1,170.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,820.1568254067006,0.01362822765899357,0.019508963496829224,28026.666666666668,8,4,8,8_1,8_1,8_0_0 +1865,1,61.0,4,109.0,6,111,4,0,54,2.0,0.0,0.0,1413.22625338184,0.0,0.0,27609.685846751298,0,70,2,12368,201701865,,,,431.0,2.0,2.0,4.0,2.0,3.0,2.0,4373.905005825543,0.0,1050.0,0.0,0.0,26385.0,0,1,3,86.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1413.22625338184,0.05118588676546378,0.0535617302778791,13192.5,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +1866,1,38.0,2,333.0,99,300,5,56,63,3.0,0.0,582.9290542166448,2920.6675903224696,0.0,0.0,20673.879999999997,50,50,1,12369,201701866,,,244.0,,2.0,1.0,4.0,2.0,4.0,2.3,421.5767140740955,0.0,2170.0,0.0,0.0,35386.0,1,1,3,116.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,3503.596644539114,0.16946971949818393,0.09901081344427497,15385.21739130435,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +1867,2,38.0,3,0.0,3,111,1,0,56,3.0,0.0,0.0,344.55801987214386,0.0,0.0,20837.239999999998,0,30,8,1237,201701867,,,,685.0,1.0,0.0,1.0,0.0,1.0,1.0,3998.5794434115737,0.0,256.0,0.0,0.0,14321.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,344.55801987214386,0.01653568418236503,0.024059634094835827,14321.0,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +1868,2,79.0,2,0.0,3,112,2,78,78,5.0,2379.684013708323,0.0,710.6509159862967,159.23897478389006,0.0,24443.620000000003,50,50,1,12370,201701868,,,300.0,,0.0,4.0,7.0,0.0,2.0,1.5,2650.5701022228673,0.0,528.0,0.0,0.0,28002.0,5,5,5,170.0,9,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3249.57390447851,0.13294159803165445,0.11604792173696557,18668.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +1869,2,53.0,2,0.0,3,300,2,77,62,8.0,1316.7584875852722,0.0,686.4241802140366,212.31863304518674,0.0,39285.420000000006,60,50,1,12372,201701869,,,661.0,,1.0,2.0,4.0,0.0,2.0,1.5,1880.6489714953962,0.0,510.0,0.0,0.0,44867.0,5,1,1,91.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2215.5013008444957,0.056395001016776594,0.049379305521753084,29911.333333333332,8,4,8,8_1,8_1,8_0_1 +1870,2,85.0,2,0.0,4,111,2,75,78,8.0,0.0,0.0,1214.361938532668,0.0,3734.0148493498673,26466.011417635946,33,60,1,12373,201701870,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2271.190871007756,1552.6690054043802,260.0,1200.0,0.0,43958.0,5,5,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4948.376787882536,0.18697100631435248,0.11257056253429491,29305.333333333332,8,4,8,8_1,8_4,8_0_1 +1871,1,35.0,3,180.0,1,300,4,0,43,4.0,0.0,555.170527825376,890.7708690944243,0.0,1659.9324268507285,21243.719999999998,0,33,1,12376,201701871,,,450.0,,1.0,0.0,4.0,1.0,2.0,1.3,1738.9313447700672,1600.0,0.0,0.0,0.0,22390.0,0,1,2,100.0,0,1.0,2,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,3105.873823770529,0.14620197516115488,0.1387170086543336,17223.076923076922,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +1872,2,44.0,2,0.0,8,111,2,43,31,5.0,1289.7887354299112,0.0,866.8898655373323,65.46491185559925,536.9428396326666,44114.286847444775,31,20,1,12377,201701872,,,330.0,,2.0,0.0,6.0,2.0,4.0,2.3,1654.4860898823806,517.5563351347934,430.0,0.0,0.0,45678.0,1,1,2,111.0,7,5.0,4,5,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2759.0863524555093,0.06254405431049881,0.06040295880851853,19860.0,5,3,5,5_1,5_2,5_0_0 +1873,2,71.0,4,0.0,10,400,2,0,77,3.0,0.0,0.0,1293.438504285665,0.0,0.0,21185.760000000002,0,71,1,12378,201701873,,,152.0,,0.0,1.0,3.0,0.0,1.0,1.0,3295.10561880682,0.0,961.0,0.0,0.0,14711.0,0,5,1,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1293.438504285665,0.06105225888925697,0.08792322101051356,14711.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1874,2,62.0,2,0.0,1,120,2,74,34,10.0,2855.620816449988,832.755791738064,1211.3367886130059,56.61830214538313,0.0,55521.11087530162,20,10,1,1238,201701874,,,220.0,,1.0,0.0,6.0,0.0,2.0,1.5,1799.4216061570958,0.0,900.0,0.0,0.0,64632.0,5,1,1,200.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4956.331698946442,0.08926931793706687,0.076685414329534,43088.0,10,5,10,10_1,10_0,10_1_0 +1875,2,72.0,3,0.0,9,111,1,0,75,5.0,0.0,0.0,1567.46290432363,0.0,1591.6345576883787,30911.670824038796,0,60,2,12380,201701875,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3070.374025176418,1534.168048715644,530.0,0.0,0.0,19983.0,0,5,1,65.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3159.0974620120087,0.10219756414963187,0.15808924896221832,19983.0,5,3,5,5_0,5_3,5_0_0 +1876,2,63.0,3,0.0,99,111,2,0,54,9.0,0.0,0.0,2557.266553738568,0.0,0.0,21425.579999999998,0,30,1,12381,201701876,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2087.2199152965945,0.0,1900.0,0.0,0.0,31652.0,0,5,1,128.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2557.266553738568,0.1193557679063329,0.08079320591869607,31652.0,8,4,8,8_1,8_4,8_0_0 +1877,2,55.0,1,0.0,7,112,2,0,37,10.0,0.0,0.0,2449.592172528523,0.0,0.0,43639.659999999996,0,30,1,12382,201701877,,,558.0,,1.0,0.0,5.0,0.0,1.0,1.0,2503.6316069032596,0.0,1820.0,0.0,0.0,56088.0,0,1,1,130.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2449.592172528523,0.05613224696362261,0.04367408665897381,56088.0,10,5,10,10_1,10_0,10_0_0 +1878,2,37.0,2,0.0,9,112,4,63,55,7.0,0.0,291.4645271083224,1265.1739792180283,0.0,0.0,33778.96000000001,50,50,1,12384,201701878,,,189.0,,2.0,0.0,5.0,0.0,2.0,1.5,3284.097822916345,0.0,940.0,0.0,0.0,36690.0,1,1,2,135.0,7,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1556.6385063263506,0.04608307971371381,0.04242677858616382,24460.0,7,4,7,7_1,7_0,7_0_0 +1879,2,23.0,3,0.0,99,221,6,0,63,3.0,0.0,0.0,0.0,0.0,0.0,19051.3458467513,0,44,2,12385,201701879,,,,624.0,1.0,0.0,2.0,1.0,2.0,1.3,2384.7134792264496,0.0,0.0,0.0,0.0,18230.0,0,1,3,40.0,1,3.0,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,14023.076923076922,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +1880,2,26.0,1,0.0,10,112,4,43,43,9.0,0.0,0.0,1453.6041463356069,56.61830214538313,0.0,73042.51087530164,30,30,1,12387,201701880,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3572.159099637283,0.0,1080.0,0.0,0.0,71513.0,1,1,2,90.0,8,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1510.22244848099,0.020675938304739353,0.021118152622334258,39729.444444444445,9,5,9,9_1,9_1,9_0_0 +1881,2,82.0,2,0.0,1,300,5,78,78,3.0,1903.7472109666587,749.4802125642576,1022.9066214954271,185.7788039145384,0.0,19416.0,71,71,1,12389,201701881,,,,,0.0,5.0,3.0,0.0,2.0,1.5,2595.322634025255,0.0,760.0,0.0,0.0,21170.0,5,5,1,95.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3861.9128489408818,0.19890362839621353,0.18242384737557307,14113.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1882,2,71.0,2,0.0,1,300,2,75,74,10.0,2896.868672687599,0.0,798.1363507194583,212.31863304518674,0.0,35447.52,50,41,1,1239,201701882,,,672.0,,0.0,2.0,6.0,0.0,2.0,1.5,1518.6033731964571,0.0,593.0,0.0,0.0,59410.0,5,5,1,120.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3907.323656452244,0.11022840685193899,0.06576878734981054,39606.666666666664,9,5,9,9_1,9_0,9_1_0 +1883,2,40.0,1,0.0,4,111,2,31,37,10.0,0.0,0.0,471.07541779394666,0.0,1309.298237111985,50848.48,20,12,2,12390,201701883,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3098.444503978624,0.0,350.0,740.0,0.0,101739.0,1,1,2,67.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1780.3736549059315,0.03501331121217254,0.017499421607308226,67826.0,10,5,10,10_0,10_4,10_0_1 +1884,1,35.0,4,157.0,4,120,6,0,65,6.0,158.64560091388822,0.0,659.5055849115254,53.079658261296686,0.0,10995.099999999999,0,50,1,12391,201701884,,,264.0,,1.0,0.0,2.0,0.0,1.0,1.0,2645.2479599500653,0.0,490.0,0.0,0.0,22901.0,0,1,3,60.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,871.2308440867102,0.07923810098013755,0.038043353743797664,22901.0,6,3,6,6_1,6_1,6_0_1 +1885,2,51.0,3,0.0,8,112,6,52,48,7.0,0.0,624.566843803548,807.5578590753372,138.0071114793714,0.0,39001.09280850429,50,50,1,12392,201701885,,,400.0,,3.0,0.0,5.0,2.0,4.0,2.3,1975.452901700837,0.0,600.0,0.0,0.0,56170.0,1,1,2,130.0,8,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1570.1318143582566,0.04025866203461574,0.02795321015414379,24421.739130434784,7,4,7,7_1,7_1,7_0_0 +1886,1,32.0,3,182.0,1,111,4,47,52,8.0,0.0,0.0,1835.8481996312664,238.8584621758351,0.0,17936.7439836072,31,50,2,12393,201701886,,,523.0,341.0,2.0,0.0,3.0,1.0,3.0,1.8,1102.9946950299643,0.0,1364.0,0.0,0.0,53116.0,1,1,3,70.0,7,4.0,4,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,2074.7066618071017,0.11566796424720246,0.03905991907913062,29508.888888888887,8,4,8,8_0,8_2,8_1_0 +1887,2,54.0,4,0.0,8,221,2,0,13,2.0,0.0,0.0,511.45331074771354,0.0,958.9724925874268,13450.88,0,60,1,12394,201701887,,,186.0,,1.0,2.0,4.0,0.0,1.0,1.0,1322.6354393056104,0.0,380.0,542.0,0.0,9100.0,0,1,2,90.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1470.4258033351402,0.10931818612129023,0.1615852531137517,9100.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +1888,2,52.0,3,0.0,6,120,5,0,43,7.0,0.0,832.755791738064,1138.6565812962253,0.0,0.0,20583.41613385743,0,50,1,12398,201701888,,,270.0,,1.0,0.0,5.0,1.0,2.0,1.3,684.6082480162374,0.0,846.0,0.0,0.0,30626.0,0,1,2,100.0,0,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1971.4123730342894,0.09577673405686704,0.06437054701999247,23558.46153846154,6,3,6,6_1,6_0,6_0_0 +1889,2,42.0,2,0.0,6,111,4,43,42,7.0,0.0,0.0,1699.9092933535846,0.0,0.0,37765.1610195854,33,20,1,12399,201701889,,,280.0,,2.0,0.0,6.0,2.0,4.0,2.1,2182.277516673871,0.0,1263.0,0.0,0.0,56430.0,1,1,2,140.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1699.9092933535846,0.04501263194593541,0.030124212180641232,26871.42857142857,7,4,7,7_1,7_2,7_0_0 +1890,2,39.0,3,0.0,4,111,2,0,54,3.0,0.0,0.0,1345.929765125562,0.0,0.0,16448.71087530163,0,50,2,124,201701890,,,420.0,,1.0,0.0,3.0,0.0,1.0,1.0,2311.589752088853,0.0,1000.0,0.0,0.0,16028.0,0,1,3,75.0,6,4.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1345.929765125562,0.08182585099398441,0.08397365642160981,16028.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +1891,2,79.0,3,0.0,7,112,5,0,78,7.0,0.0,902.152107716236,670.2730230325299,0.0,0.0,19044.059999999998,0,70,1,1240,201701891,,,321.0,,0.0,1.0,4.0,0.0,1.0,1.0,1629.503262941474,0.0,498.0,0.0,0.0,23056.0,0,5,1,90.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1572.4251307487657,0.08256774714786479,0.06820025723233716,23056.0,6,3,6,6_1,6_1,6_0_0 +1892,2,56.0,1,0.0,6,112,4,77,31,10.0,0.0,0.0,3374.967856063149,44.23304855108057,1290.5145062338204,71651.57414784117,60,10,1,12400,201701892,,,512.0,,1.0,2.0,5.0,0.0,2.0,1.5,2184.45941767579,1243.9200394991708,1993.0,0.0,0.0,100653.0,5,1,1,128.0,8,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4709.71541084805,0.06573080168665006,0.04679160492829871,67102.0,10,5,10,10_1,10_0,10_0_0 +1893,2,42.0,3,0.0,9,400,2,0,67,6.0,0.0,0.0,1282.6710661646605,0.0,0.0,25681.480000000003,0,43,1,12401,201701893,,,230.0,,1.0,0.0,4.0,0.0,1.0,1.0,3034.4663772209565,0.0,953.0,0.0,0.0,22973.0,0,1,2,100.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1282.6710661646605,0.049945371768475195,0.055833851310871915,22973.0,6,3,6,6_1,6_0,6_0_0 +1894,1,62.0,3,107.0,4,111,1,56,78,2.0,0.0,0.0,775.2555447123236,0.0,0.0,37662.31999999999,60,50,2,12402,201701894,,,360.0,360.0,1.0,4.0,5.0,1.0,3.0,1.8,2340.1382017329156,0.0,576.0,0.0,0.0,23091.0,1,5,3,92.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,775.2555447123236,0.02058438101296797,0.033573926842160304,12828.333333333332,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1895,2,47.0,3,0.0,1,111,2,46,35,5.0,0.0,0.0,2922.5780093327403,0.0,3696.121704798183,36820.11819417893,20,20,1,12403,201701895,,,601.0,,2.0,0.0,6.0,2.0,4.0,2.1,1687.5727059579324,663.4240210662244,1897.0,1700.0,0.0,40848.0,1,1,2,120.0,6,4.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,6618.699714130924,0.17975769874571737,0.1620324058492686,19451.42857142857,5,3,5,5_1,5_2,5_1_0 +1896,1,54.0,2,150.0,2,111,1,0,56,2.0,0.0,0.0,328.4717579785689,0.0,612.1000824012061,12844.119999999999,0,50,2,12404,201701896,,,,,1.0,3.0,2.0,0.0,1.0,1.0,2712.750228027621,590.0,0.0,0.0,0.0,12786.0,0,4,3,38.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,940.571840379775,0.07322976119654559,0.07356263416078328,12786.0,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +1897,2,75.0,3,0.0,6,111,2,0,77,4.0,0.0,0.0,497.99401309645793,0.0,813.8880933398825,20805.72,0,50,2,12405,201701897,,,,480.0,0.0,1.0,3.0,0.0,1.0,1.0,4265.170114400881,0.0,370.0,460.0,0.0,17750.0,0,5,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1311.8821064363406,0.06305391529042689,0.07390885106683609,17750.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +1898,2,79.0,3,0.0,1,400,4,0,77,4.0,0.0,194.3096847388816,1615.1157181506744,247.7050718860512,0.0,24552.93119129575,0,70,1,12407,201701898,,,160.0,,0.0,3.0,7.0,0.0,1.0,1.0,2850.29192291837,0.0,1200.0,0.0,0.0,15943.0,0,5,1,144.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2057.130474775607,0.08378349854639269,0.12903032520702548,15943.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +1899,2,71.0,2,0.0,4,112,2,0,77,9.0,1586.456009138882,0.0,807.5578590753372,0.0,0.0,23310.995052882572,0,60,1,12408,201701899,,,111.0,,0.0,2.0,5.0,0.0,1.0,1.0,2312.298082520903,0.0,600.0,0.0,0.0,32062.0,0,5,1,100.0,8,2.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2394.013868214219,0.10269891365783557,0.07466826362092881,32062.0,9,5,9,9_1,9_1,9_0_1 +1900,2,32.0,2,0.0,1,111,4,0,38,8.0,0.0,0.0,484.5347154452023,0.0,0.0,21183.399999999998,0,10,2,1241,201701900,,,,595.0,1.0,0.0,1.0,0.0,1.0,1.0,4400.378723347909,0.0,360.0,0.0,0.0,27020.0,0,1,3,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,484.5347154452023,0.02287332134809343,0.01793244690766848,27020.0,7,4,7,7_0,7_4,7_1_0 +1901,2,63.0,3,0.0,2,120,2,31,75,10.0,507.66592292444227,555.170527825376,802.174140014835,0.0,0.0,30896.540000000005,20,33,1,12411,201701901,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1861.186187918743,0.0,596.0,0.0,0.0,75364.0,1,5,2,120.0,0,2.0,3,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1865.010590764653,0.06036308890136736,0.024746703874059934,50242.666666666664,10,5,10,10_1,10_1,10_0_1 +1902,2,66.0,4,0.0,6,111,4,0,78,3.0,0.0,208.188947934516,2891.057135489707,159.23897478389006,0.0,18103.6,0,50,2,12414,201701902,,,630.0,,0.0,3.0,4.0,0.0,1.0,1.0,2787.5983140895187,0.0,2148.0,0.0,0.0,15907.0,0,5,1,100.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3258.485058208113,0.17999099948121441,0.20484598341661614,15907.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +1903,2,54.0,3,0.0,1,111,2,52,,2.0,0.0,0.0,726.8020731678034,0.0,1415.4575536345783,20261.753729154105,41,71,2,12415,201701903,,,,,1.0,0.0,4.0,2.0,4.0,2.1,947.2381905122194,0.0,540.0,800.0,0.0,23269.0,1,8,1,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2142.2596268023817,0.10572923032422119,0.09206496311841428,11080.47619047619,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +1904,2,52.0,2,0.0,9,221,6,37,21,8.0,0.0,0.0,3252.035822216091,0.0,2207.640148663989,44072.83440782894,31,60,1,12416,201701904,,,497.0,,2.0,0.0,6.0,2.0,4.0,2.5,1627.8949090044107,2127.9325475699147,1536.0,0.0,0.0,69080.0,1,1,1,169.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5459.67597088008,0.1238784853354075,0.07903410496352171,27632.0,8,4,8,8_1,8_1,8_0_0 +1905,2,42.0,2,0.0,8,111,2,56,37,4.0,1519.824856755049,0.0,1090.2031097517051,283.09151072691566,0.0,32858.92,50,20,1,12417,201701905,,,481.0,,2.0,0.0,6.0,2.0,4.0,2.1,563.377842559072,0.0,810.0,0.0,0.0,38550.0,1,1,2,115.0,6,4.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2893.11947723367,0.08804670017254584,0.07504849486987471,18357.142857142855,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1906,2,39.0,3,0.0,9,120,2,43,47,6.0,0.0,0.0,1399.7669557305844,106.15931652259337,0.0,41587.9,31,31,1,1242,201701906,,,228.0,,2.0,0.0,7.0,3.0,5.0,2.4,1983.1571860012243,0.0,1040.0,0.0,0.0,52453.0,1,1,2,180.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1505.9262722531778,0.03621068320961572,0.028710012244355477,21855.416666666668,6,3,6,6_1,6_0,6_0_0 +1907,2,47.0,3,0.0,99,112,2,0,56,3.0,0.0,0.0,1345.929765125562,0.0,0.0,35424.1058467513,0,50,1,12420,201701907,,,140.0,,1.0,2.0,3.0,1.0,2.0,1.3,1411.7774237493566,0.0,1000.0,0.0,0.0,17730.0,0,1,1,80.0,8,0.0,2,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1345.929765125562,0.03799474208179613,0.07591256430488223,13638.461538461537,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1908,2,73.0,3,0.0,9,211,1,0,77,1.0,0.0,0.0,3230.231436301349,0.0,0.0,12511.3,0,50,2,12421,201701908,,,115.0,239.0,0.0,0.0,2.0,0.0,1.0,1.0,1849.0565437687867,0.0,2400.0,0.0,0.0,9726.0,0,5,3,52.0,3,3.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,3230.231436301349,0.258185115559642,0.3321233226713293,9726.0,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +1909,2,77.0,1,0.0,5,300,6,0,75,6.0,1903.7472109666587,0.0,538.3719060502248,212.31863304518674,0.0,36526.4058467513,0,70,1,12422,201701909,,,,,0.0,4.0,6.0,1.0,2.0,1.5,3274.678341585788,0.0,400.0,0.0,0.0,33401.0,0,5,1,100.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2654.4377500620703,0.07267174769942931,0.07947180473824347,22267.333333333332,6,3,6,6_1,6_0,6_0_0 +1910,2,46.0,3,0.0,4,111,4,0,68,8.0,0.0,0.0,648.0358072661936,0.0,1207.600840533905,23665.6386224058,0,50,1,12423,201701910,,,187.0,,1.0,0.0,5.0,2.0,3.0,1.6,760.0372621503589,1164.0,0.0,0.0,0.0,42130.0,0,1,2,120.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1855.6366478000987,0.0784105883389619,0.044045493657728425,26331.25,7,4,7,7_1,7_3,7_0_1 +1911,1,38.0,3,247.0,4,211,2,65,85,5.0,0.0,0.0,566.6364311178615,0.0,2250.5775102789794,46338.43672205293,43,43,2,12426,201701911,,,,235.0,1.0,0.0,5.0,3.0,5.0,2.4,785.6594905651989,0.0,421.0,1272.0,0.0,46132.0,1,4,3,91.0,1,3.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,2817.2139413968407,0.060796482157890755,0.06106854117308681,19221.666666666668,5,3,5,5_0,5_1,5_0_1 +1912,1,27.0,4,192.0,7,112,4,0,55,3.0,0.0,0.0,619.1276919577585,42.46372660903735,0.0,9320.7,0,50,2,12428,201701912,,,360.0,,1.0,0.0,3.0,1.0,2.0,1.3,1905.622450346592,0.0,460.0,0.0,0.0,20484.0,0,1,3,80.0,9,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,661.5914185667959,0.07098087252747066,0.03229796028933782,15756.923076923076,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +1913,2,74.0,3,0.0,1,112,2,86,75,4.0,1713.3724898699927,437.1967906624836,809.4810446252776,226.47320858153253,187.9299938714333,26934.091396605672,71,60,1,12429,201701913,,,469.0,,0.0,3.0,6.0,0.0,2.0,1.5,1871.6393079413037,181.1447172971777,526.5,0.0,0.0,26793.0,5,5,1,120.0,6,0.0,3,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3374.45352761072,0.12528558984677612,0.12594534123131862,17862.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1914,2,69.0,3,0.0,4,111,2,77,77,6.0,0.0,2775.8526391268797,858.4804250897514,0.0,1599.7598763773897,32768.38115202909,70,50,1,1243,201701914,,,313.0,,0.0,3.0,5.0,0.0,2.0,1.5,2180.499412242681,1542.0,0.0,0.0,0.0,31684.0,5,5,1,95.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,5234.092940594021,0.15972998227499907,0.16519672202354566,21122.666666666668,5,3,5,5_1,5_2,5_0_1 +1915,2,59.0,2,0.0,5,112,5,52,63,5.0,0.0,0.0,1749.7086946632305,0.0,0.0,25713.96,50,50,1,12430,201701915,,,300.0,,2.0,2.0,5.0,0.0,2.0,1.5,1905.2223763923273,0.0,1300.0,0.0,0.0,32349.0,1,1,1,200.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1749.7086946632305,0.06804508891914084,0.05408849406977744,21566.0,6,3,6,6_1,6_2,6_0_0 +1916,2,81.0,2,0.0,2,120,2,75,75,6.0,2221.038412794435,0.0,807.5578590753372,176.9321942043223,0.0,23480.38,50,31,1,12431,201701916,,,500.0,,0.0,2.0,6.0,0.0,2.0,1.5,1578.4292362307738,0.0,600.0,0.0,0.0,34738.0,5,5,1,100.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3205.5284660740945,0.13651944585539477,0.09227728902280195,23158.666666666668,6,3,6,6_1,6_1,6_0_1 +1917,1,61.0,4,272.0,9,111,2,0,77,1.0,0.0,0.0,181.70051829195086,0.0,796.1948739194503,7090.92,0,50,2,12432,201701917,,,110.0,,0.0,5.0,2.0,0.0,1.0,1.0,3532.8722418020943,0.0,135.0,450.0,0.0,10364.0,0,7,3,50.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,977.8953922114011,0.13790811237630676,0.09435501661630656,10364.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1918,2,45.0,3,0.0,1,111,2,0,65,1.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,22125.12,0,43,1,12434,201701918,,,250.0,,1.0,0.0,3.0,0.0,1.0,1.0,1633.4024616101547,1200.0,0.0,0.0,0.0,6799.0,0,1,1,90.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1913.0274719588647,0.08646404954905848,0.2813689471920672,6799.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +1919,1,20.0,2,175.0,9,111,1,0,84,1.0,0.0,0.0,672.964882562781,0.0,0.0,7512.270875301629,0,41,2,12435,201701919,,,,275.0,0.0,0.0,2.0,0.0,1.0,1.0,3246.054999305643,0.0,500.0,0.0,0.0,6900.0,0,3,3,43.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,672.964882562781,0.08958208426366954,0.09753114240040305,6900.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1920,2,87.0,3,0.0,5,111,1,0,77,4.0,0.0,0.0,524.9126083989692,0.0,0.0,17773.32,0,71,2,12436,201701920,,,160.0,,0.0,2.0,2.0,0.0,1.0,1.0,3870.245955702132,0.0,390.0,0.0,0.0,17721.0,0,5,1,40.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,524.9126083989692,0.029533739807698797,0.029620936087070095,17721.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +1921,1,69.0,4,25.0,2,112,2,0,78,4.0,0.0,0.0,672.964882562781,0.0,1061.5931652259337,32850.619999999995,0,71,2,12438,201701921,,,400.0,212.0,0.0,1.0,2.0,0.0,1.0,1.0,4952.4937034364975,0.0,500.0,600.0,0.0,16141.0,0,5,3,47.0,10,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1734.5580477887147,0.0528013793282658,0.10746286151965273,16141.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +1922,1,26.0,2,233.0,99,300,2,85,67,2.0,0.0,0.0,565.290501352736,0.0,1380.0711147937138,34956.48,50,60,1,12439,201701922,,,160.0,,1.0,0.0,4.0,2.0,4.0,2.1,3122.8598509225812,0.0,420.0,780.0,0.0,22966.0,6,1,3,85.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1945.3616161464497,0.05565095845309509,0.084706157630691,10936.190476190475,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +1923,1,27.0,1,250.0,5,111,1,0,54,1.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,14583.460899633872,0,43,8,1244,201701923,,,286.0,,1.0,0.0,3.0,2.0,3.0,1.6,1262.7104733214721,600.0,0.0,0.0,0.0,12414.0,0,4,3,50.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,956.5137359794323,0.06558893959138645,0.07705121121148964,7758.75,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1924,1,51.0,3,97.0,8,300,5,85,67,1.0,0.0,527.4120014341072,2005.4353500370873,0.0,0.0,42985.531072771686,60,71,1,12441,201701924,,,1057.0,,2.0,2.0,5.0,3.0,5.0,3.0,1962.8090277798046,0.0,1490.0,0.0,0.0,24057.0,6,1,2,100.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2532.8473514711945,0.05892325366838553,0.10528525383344534,8019.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +1925,1,35.0,3,443.0,8,300,2,85,62,3.0,0.0,0.0,653.0463934048497,0.0,1216.9379604349404,18116.22,71,50,1,12445,201701925,,,520.0,,1.0,0.0,4.0,3.0,5.0,2.4,607.3261392553995,1173.0,0.0,0.0,0.0,37646.0,6,1,3,88.0,0,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1869.98435383979,0.10322155250045482,0.04967285644795702,15685.833333333334,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +1926,2,34.0,2,0.0,1,112,1,55,37,7.0,0.0,0.0,550.4852739363548,0.0,0.0,40817.759999999995,20,12,2,12446,201701926,,,,700.0,2.0,0.0,3.0,0.0,2.0,1.5,4014.059276542275,0.0,409.0,0.0,0.0,35252.0,4,4,3,90.0,9,3.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,550.4852739363548,0.013486415568525928,0.015615717517767923,23501.333333333332,6,3,6,6_0,6_1,6_1_0 +1927,2,74.0,2,0.0,7,112,4,74,74,10.0,0.0,0.0,4147.21664994878,0.0,86.03430041558804,117094.90977427234,30,30,1,12447,201701927,,,560.0,,0.0,3.0,6.0,0.0,2.0,1.5,2361.997403862753,82.92800263327806,3047.0,0.0,0.0,78629.0,5,5,1,182.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4233.250950364369,0.03615230549752286,0.053838290584445544,52419.333333333336,10,5,10,10_1,10_0,10_0_0 +1928,2,61.0,1,0.0,6,112,4,0,74,6.0,0.0,0.0,2691.859530251124,0.0,0.0,13503.790875301627,0,30,1,12448,201701928,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2591.8349644047935,0.0,2000.0,0.0,0.0,23023.0,0,5,1,217.0,6,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2691.859530251124,0.19934102616877183,0.1169204504300536,23023.0,6,3,6,6_1,6_0,6_0_0 +1929,2,27.0,3,0.0,7,112,2,22,55,3.0,0.0,0.0,605.6683943065029,0.0,1422.5348414027512,36536.84,42,41,2,12449,201701929,,,340.0,,2.0,0.0,2.0,0.0,2.0,1.5,2122.3527020110278,0.0,450.0,804.0,0.0,23092.0,1,1,3,53.0,10,1.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2028.2032357092542,0.05551118366309879,0.08783142368392752,15394.666666666666,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +1930,1,23.0,2,270.0,99,111,4,0,53,7.0,0.0,0.0,269.1859530251124,0.0,0.0,12597.66,0,30,2,1245,201701930,,,,300.0,1.0,0.0,1.0,0.0,1.0,1.0,3853.952449824754,0.0,200.0,0.0,0.0,25181.0,0,1,3,33.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,269.1859530251124,0.02136793285619015,0.01069004221536525,25181.0,7,4,7,7_0,7_3,7_0_0 +1931,2,35.0,3,0.0,9,111,4,47,63,7.0,0.0,0.0,1324.394888883553,0.0,0.0,28875.1716935026,0,43,2,12451,201701931,,,,570.0,2.0,0.0,2.0,0.0,2.0,1.5,3648.515440067982,0.0,984.0,0.0,0.0,36420.0,1,1,3,48.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1324.394888883553,0.04586621693340664,0.03636449447785703,24280.0,7,4,7,7_0,7_3,7_0_0 +1932,2,42.0,2,0.0,4,111,2,85,68,1.0,0.0,0.0,258.4185149041079,0.0,530.7965826129669,17888.9,71,71,2,12453,201701932,,,252.0,354.0,1.0,1.0,4.0,1.0,3.0,2.0,3309.704637313933,0.0,192.0,300.0,0.0,12100.0,6,1,3,69.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,789.2150975170748,0.04411758674468943,0.06522438822455164,6050.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +1933,2,25.0,3,0.0,99,111,6,0,55,6.0,0.0,0.0,0.0,53.079658261296686,0.0,26138.89087530163,0,42,1,12454,201701933,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2479.7400099514734,0.0,0.0,0.0,0.0,34296.0,0,1,3,105.0,9,7.0,5,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,53.079658261296686,0.0020306775262393063,0.0015476923915703489,22864.0,6,3,6,6_1,6_3,6_0_0 +1934,1,61.0,4,150.0,1,111,2,56,68,1.0,0.0,0.0,1453.6041463356069,0.0,1592.3897478389006,22092.32,71,71,1,12456,201701934,,,1500.0,,4.0,0.0,4.0,5.0,7.0,3.8,879.864016342915,0.0,1080.0,900.0,0.0,27870.0,4,1,2,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,3045.9938941745077,0.13787569137938016,0.1092929276704165,7334.21052631579,1,1,1_1,1_1_1,1_4_1,1_1_0_1 +1935,2,71.0,1,0.0,5,111,4,46,31,9.0,0.0,0.0,2697.243249311626,0.0,0.0,52452.999999999985,60,20,1,12457,201701935,,,1608.0,,2.0,2.0,5.0,0.0,2.0,1.5,3659.543686157287,0.0,2004.0,0.0,0.0,52122.0,1,5,1,145.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2697.243249311626,0.05142209691174245,0.0517486521873993,34748.0,9,5,9,9_1,9_4,9_0_0 +1936,2,82.0,2,0.0,6,112,2,0,77,6.0,0.0,0.0,1199.2234207268757,0.0,0.0,16221.479999999998,0,50,2,12458,201701936,,,,322.0,0.0,2.0,2.0,0.0,1.0,1.0,2791.184618772047,0.0,891.0,0.0,0.0,22703.0,0,5,3,48.0,10,3.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1199.2234207268757,0.07392811387905887,0.05282224466928933,22703.0,6,3,6,6_0,6_1,6_0_0 +1937,1,33.0,3,169.0,4,111,2,67,64,4.0,0.0,0.0,875.7391106784557,0.0,1631.9210671476226,32553.46,50,71,1,12462,201701937,,,640.0,,2.0,0.0,3.0,3.0,5.0,2.4,1700.260984265387,1573.0,0.0,0.0,0.0,38638.0,1,1,2,80.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2507.6601778260783,0.07703206288443927,0.0649013970139779,16099.166666666668,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +1938,1,46.0,4,400.0,6,111,1,0,85,2.0,0.0,0.0,807.5578590753372,371.5576078290768,0.0,44031.799999999996,0,50,2,12463,201701938,,,,250.0,0.0,0.0,4.0,4.0,5.0,3.0,1147.0695458149069,0.0,600.0,0.0,0.0,32710.0,0,8,3,70.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1179.115466904414,0.026778725078339158,0.03604755325296283,10903.333333333334,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1939,2,33.0,3,0.0,9,111,4,0,52,6.0,0.0,0.0,588.1713073598705,38.925082724950904,0.0,24276.96,0,50,1,12466,201701939,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2545.4478976626815,0.0,437.0,0.0,0.0,22793.0,0,1,3,34.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,627.0963900848215,0.02583092735189338,0.027512674509051965,22793.0,6,3,6,6_1,6_2,6_0_0 +1940,0,51.0,2,0.0,4,111,1,0,43,5.0,0.0,0.0,0.0,0.0,0.0,36724.79739078781,0,33,1,12467,201701940,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1624.2263156161678,0.0,0.0,0.0,0.0,25947.0,0,1,5,70.0,9,7.0,2,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0.0,0.0,0.0,19959.23076923077,5,3,5,5_1,5_3,5_0_1 +1941,2,36.0,4,0.0,1,112,4,0,21,4.0,0.0,0.0,915.2322402853821,0.0,0.0,8284.1058467513,0,43,2,12468,201701941,,,350.0,,1.0,0.0,2.0,0.0,1.0,1.0,3850.274790214545,0.0,680.0,0.0,0.0,17760.0,0,1,3,55.0,9,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,915.2322402853821,0.1104805101741065,0.051533346862915656,17760.0,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +1942,2,43.0,3,0.0,9,112,2,56,53,4.0,0.0,0.0,1830.4644805707642,61.9262679715128,0.0,42435.86744367723,71,60,1,12469,201701942,,,506.0,,2.0,0.0,6.0,3.0,5.0,2.6,1772.5267248131709,0.0,1360.0,0.0,0.0,42178.0,1,1,2,170.0,6,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1892.390748542277,0.04459413374909661,0.04486677292764657,16222.307692307691,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1943,2,58.0,2,0.0,3,211,2,21,43,8.0,4759.368027416646,0.0,807.5578590753372,247.7050718860512,0.0,32193.600000000002,50,50,1,1247,201701943,,,360.0,,2.0,4.0,7.0,0.0,2.0,1.5,2198.3139686822487,0.0,600.0,0.0,0.0,39072.0,1,1,1,100.0,2,2.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5814.630958378035,0.18061449972597146,0.14881835990934775,26048.0,7,4,7,7_1,7_1,7_0_1 +1944,2,53.0,1,0.0,3,111,1,0,43,9.0,0.0,0.0,506.62593179745375,0.0,944.0865677713518,21222.76,0,41,2,12470,201701944,,,,287.0,3.0,0.0,3.0,2.0,3.0,2.0,2361.0462267279227,910.0,0.0,0.0,0.0,62689.0,0,1,3,60.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1450.7124995688055,0.06835644843407764,0.023141420337998778,31344.5,8,4,8,8_0,8_4,8_0_1 +1945,2,74.0,1,0.0,3,111,1,75,74,9.0,0.0,0.0,3788.9555221977985,0.0,5009.44379759669,106682.88494111004,60,12,2,12471,201701945,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2575.2422637885315,4146.400131663902,1100.0,400.0,0.0,57641.0,5,5,1,72.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,8798.39931979449,0.08247245398970311,0.15264133723902237,38427.333333333336,9,5,9,9_0,9_4,9_0_1 +1946,1,36.0,3,420.0,99,111,2,85,68,2.0,0.0,0.0,1130.581002705472,0.0,2547.823596542241,26532.171502734116,50,31,2,12472,201701946,,,,,1.0,0.0,3.0,3.0,5.0,2.4,3488.701236381124,0.0,840.0,1440.0,0.0,28120.0,6,1,3,72.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,3678.404599247713,0.13863940985262577,0.13081097436869535,11716.666666666668,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1947,2,40.0,3,0.0,9,400,2,35,62,8.0,0.0,0.0,2018.894647688343,0.0,0.0,51673.65087530163,20,42,1,12473,201701947,,,549.0,,2.0,0.0,4.0,2.0,4.0,2.1,2868.45067412241,0.0,1500.0,0.0,0.0,62045.0,1,1,2,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.039070098850966045,0.032539199737099574,29545.238095238095,8,4,8,8_1,8_0,8_0_0 +1948,1,66.0,3,259.0,1,111,1,0,74,3.0,0.0,0.0,94.21508355878933,0.0,0.0,5984.360000000001,0,30,2,12474,201701948,,,,32.0,0.0,3.0,2.0,0.0,1.0,1.0,4379.637170414238,0.0,70.0,0.0,0.0,14048.0,0,5,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,94.21508355878933,0.015743552118988383,0.006706654581348899,14048.0,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +1949,2,63.0,1,0.0,6,111,2,0,74,9.0,0.0,0.0,699.8834778652922,0.0,1503.9236507367395,21415.620000000003,0,20,1,12475,201701949,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2211.278110999215,0.0,520.0,850.0,0.0,33656.0,0,5,3,102.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2203.8071286020318,0.10290652937444872,0.06548036393516853,33656.0,9,5,9,9_1,9_2,9_0_0 +1950,2,55.0,3,0.0,1,111,2,75,45,10.0,0.0,166.55115834761278,897.7351533387498,0.0,2337.2742854390976,50900.73344410587,50,20,1,12476,201701950,,,310.0,,1.0,2.0,6.0,0.0,2.0,1.5,1370.1406861902956,0.0,667.0,1321.0,0.0,65509.0,5,1,2,108.0,6,4.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3401.56059712546,0.0668273395482742,0.051925088111945836,43672.666666666664,10,5,10,10_1,10_2,10_1_0 +1951,2,62.0,4,0.0,7,111,2,78,56,6.0,0.0,0.0,2119.83938007276,61.9262679715128,0.0,33689.864508203806,71,71,2,12478,201701951,,,,768.0,2.0,2.0,6.0,4.0,7.0,3.8,1652.0276910217929,0.0,1575.0,0.0,0.0,76630.0,5,1,3,135.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2181.765648044273,0.06476029749282583,0.02847142957124198,20165.78947368421,5,3,5,5_0,5_4,5_0_0 +1952,2,60.0,3,0.0,3,111,2,0,52,5.0,0.0,0.0,1594.9267716737909,0.0,0.0,15633.960000000001,0,71,2,12479,201701952,,,,,1.0,2.0,4.0,0.0,1.0,1.0,1840.3855787985508,0.0,1185.0,0.0,0.0,20425.0,0,1,2,62.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1594.9267716737909,0.10201681286595275,0.07808699004522844,20425.0,5,3,5,5_0,5_2,5_0_1 +1953,2,53.0,3,0.0,2,211,2,85,77,1.0,0.0,0.0,1250.976339284482,0.0,2331.167601958492,19104.136722052932,71,50,1,12481,201701953,,,500.0,574.0,0.0,5.0,5.0,0.0,2.0,1.5,1463.9136814789063,2247.0,0.0,0.0,0.0,9767.0,7,7,3,76.0,3,3.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3582.143941242974,0.18750619268275612,0.3667598997893902,6511.333333333333,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +1954,1,32.0,4,291.0,4,112,2,0,54,3.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,16832.739999999998,0,31,2,12482,201701954,,,90.0,3.0,1.0,0.0,3.0,1.0,2.0,1.3,468.23952134251795,600.0,0.0,0.0,0.0,20033.0,0,4,3,64.0,8,3.0,2,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,956.5137359794323,0.05682460110352994,0.04774690440670056,15410.0,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +1955,2,67.0,1,0.0,1,400,2,74,74,4.0,1586.456009138882,416.377895869032,920.6159593458843,53.079658261296686,0.0,27608.360315994116,30,20,1,12486,201701955,,,276.0,,0.0,0.0,4.0,0.0,2.0,1.5,2322.614401843794,0.0,684.0,0.0,0.0,26866.0,6,5,1,124.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2976.529522615095,0.10781261503931937,0.11079168922113806,17910.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1956,2,67.0,2,0.0,4,111,1,52,77,8.0,0.0,0.0,349.9417389326461,0.0,168.08558449410617,26904.04,71,70,2,12487,201701956,,,,470.0,1.0,2.0,5.0,0.0,2.0,1.5,2509.6201455408036,0.0,260.0,95.0,0.0,45240.0,1,5,3,84.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,518.0273234267522,0.019254629543620668,0.01145064817477348,30160.0,8,4,8,8_0,8_3,8_0_1 +1957,2,78.0,3,0.0,99,112,6,77,74,10.0,0.0,0.0,3445.5801987214386,159.23897478389006,0.0,43328.84175060326,41,31,1,12488,201701957,,,481.0,,0.0,4.0,7.0,0.0,2.0,1.5,1746.2698998101691,0.0,2560.0,0.0,0.0,56425.0,5,5,1,170.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3604.8191735053288,0.08319675827603076,0.06388691490483525,37616.666666666664,9,5,9,9_1,9_1,9_0_0 +1958,2,33.0,2,0.0,9,111,2,38,37,10.0,0.0,0.0,578.7497990039916,0.0,1680.8558449410618,42814.200000000004,31,31,1,12489,201701958,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1829.6326255461508,0.0,430.0,950.0,0.0,70453.0,4,1,3,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2259.6056439450535,0.05277701426034011,0.032072525569458415,46968.666666666664,10,5,10,10_1,10_4,10_0_0 +1959,1,45.0,3,326.0,1,111,2,85,35,1.0,0.0,0.0,3230.231436301349,0.0,0.0,26396.26816118815,71,41,1,1249,201701959,,,1200.0,,1.0,0.0,5.0,3.0,5.0,2.8,1542.6114682449927,0.0,2400.0,0.0,0.0,26836.0,6,1,3,150.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,3230.231436301349,0.12237454993925738,0.12036933359298513,9584.285714285716,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +1960,2,54.0,3,0.0,6,111,4,0,56,3.0,0.0,555.170527825376,2236.935269638684,0.0,0.0,31911.080000000005,0,50,1,12491,201701960,,,551.0,,1.0,2.0,6.0,1.0,2.0,1.5,482.75304834494966,0.0,1662.0,0.0,0.0,21723.0,0,1,1,120.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2792.10579746406,0.08749643689477321,0.12853223760364865,14482.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +1961,1,42.0,5,368.0,5,300,2,62,62,1.0,0.0,0.0,713.3427755165478,0.0,1645.4694061001974,7181.960000000001,50,50,1,12493,201701961,,,350.0,13.0,2.0,0.0,4.0,2.0,4.0,2.5,1950.1917673998162,0.0,530.0,930.0,0.0,22368.0,4,4,3,90.0,0,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2358.812181616745,0.32843571693754137,0.10545476491491171,8947.2,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +1962,1,60.0,4,354.0,2,111,1,56,78,2.0,0.0,0.0,94.21508355878933,0.0,106.15931652259337,12255.507533755657,71,50,2,12494,201701962,,,,,1.0,2.0,3.0,0.0,2.0,1.5,3148.432782605184,0.0,70.0,60.0,0.0,19595.0,4,7,3,63.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,200.3744000813827,0.016349743128098643,0.010225792298105777,13063.333333333334,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +1963,2,24.0,3,0.0,1,111,1,0,56,5.0,0.0,0.0,642.0084979648931,0.0,0.0,21144.140000000003,0,43,2,12495,201701963,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2298.3436884385037,0.0,477.0,0.0,0.0,19040.0,0,1,3,30.0,4,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,642.0084979648931,0.03036342447434102,0.03371893371664354,19040.0,5,3,5,5_0,5_1,5_1_0 +1964,2,48.0,3,0.0,1,120,2,45,46,7.0,1903.7472109666587,0.0,1480.522741638118,122.08321400098238,0.0,68977.94,31,30,1,12497,201701964,,,700.0,,2.0,2.0,7.0,3.0,5.0,3.0,1589.3002180925703,0.0,1100.0,0.0,0.0,89527.0,1,1,2,160.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3506.3531666057593,0.050832964373910834,0.03916531511840852,29842.333333333332,8,4,8,8_1,8_1,8_1_0 +1965,1,39.0,4,422.0,9,221,4,56,56,1.0,0.0,0.0,2018.894647688343,176.9321942043223,0.0,6628.2,50,71,1,12498,201701965,,,,,2.0,0.0,4.0,3.0,5.0,2.4,2666.8287820162814,0.0,1500.0,0.0,0.0,21744.0,4,4,4,73.0,3,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2195.8268418926655,0.3312855438720415,0.10098541399432788,9060.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +1966,2,64.0,2,0.0,6,112,5,78,77,5.0,0.0,0.0,713.3427755165478,155.70033089980362,0.0,44854.399999999994,50,30,1,12499,201701966,,,195.0,,0.0,6.0,5.0,0.0,2.0,1.5,2145.359810237709,0.0,530.0,0.0,0.0,28227.0,5,5,1,100.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,869.0431064163514,0.01937475713455874,0.03078765389224329,18818.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1967,2,48.0,3,0.0,3,111,4,63,43,5.0,0.0,0.0,3297.5279245576266,159.23897478389006,0.0,59191.30206701005,50,33,1,1250,201701967,,,550.0,,2.0,0.0,4.0,2.0,4.0,2.3,1680.9274511767046,0.0,2450.0,0.0,0.0,47167.0,1,1,2,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3456.766899341517,0.058399913139740287,0.0732878262204829,20507.391304347828,5,3,5,5_1,5_4,5_0_1 +1968,2,54.0,2,0.0,6,120,6,54,63,6.0,0.0,0.0,2086.1911359446212,61.9262679715128,0.0,60158.380000000005,31,71,1,12501,201701968,,,270.0,,3.0,0.0,5.0,2.0,4.0,2.5,2532.166655970461,0.0,1550.0,0.0,0.0,55892.0,1,1,1,170.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2148.117403916134,0.0357077003056953,0.03843336083725997,22356.8,6,3,6,6_1,6_0,6_0_0 +1969,2,38.0,4,0.0,9,300,2,31,38,3.0,0.0,0.0,317.63942456963264,0.0,0.0,30482.999999999996,12,0,2,12502,201701969,,,,800.0,2.0,0.0,3.0,1.0,3.0,1.8,3287.638293667249,0.0,236.0,0.0,0.0,31720.0,1,1,3,67.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,317.63942456963264,0.010420215351823399,0.010013853233594976,17622.222222222223,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +1970,1,55.0,4,150.0,2,111,2,78,52,3.0,0.0,0.0,565.290501352736,0.0,1061.5931652259337,13793.372027330717,71,50,2,12504,201701970,,,,300.0,1.0,0.0,4.0,2.0,4.0,2.5,4653.699446649824,0.0,420.0,600.0,0.0,35760.0,7,1,3,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1626.8836665786698,0.11794676916964902,0.045494509691797254,14304.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +1971,2,56.0,3,0.0,5,112,4,85,78,5.0,0.0,0.0,2557.266553738568,63.69558991355603,0.0,33326.05717191821,60,71,1,12506,201701971,,,471.0,,0.0,2.0,4.0,1.0,3.0,2.0,2398.3333821166502,0.0,1900.0,0.0,0.0,43494.0,7,5,2,95.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2620.962143652124,0.07864603154616938,0.060260315069943525,21747.0,6,3,6,6_1,6_0,6_0_0 +1972,2,42.0,3,0.0,2,111,2,0,85,1.0,0.0,0.0,594.9009561854983,0.0,1020.8987605589397,21065.84,0,43,2,12507,201701972,,,,200.0,0.0,0.0,2.0,0.0,1.0,1.0,3510.868661975198,0.0,442.0,577.0,0.0,6250.0,0,7,3,38.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1615.799716744438,0.07670236348251187,0.2585279546791101,6250.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +1973,2,51.0,3,0.0,7,112,2,0,65,4.0,0.0,138.792631956344,1125.1972836449697,141.54575536345783,0.0,26487.82,0,50,1,12509,201701973,,,,,1.0,2.0,5.0,0.0,1.0,1.0,2650.176907720072,0.0,836.0,0.0,0.0,17037.0,0,4,1,130.0,7,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1405.5356709647715,0.053063471095951706,0.08249901220665443,17037.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1974,2,34.0,2,0.0,9,112,4,0,43,8.0,34.902032201055405,0.0,549.1393441712293,0.0,0.0,17420.44,0,33,1,12510,201701974,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2388.9910885741433,0.0,408.0,0.0,0.0,31844.0,0,1,2,72.0,8,1.0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,584.0413763722846,0.03352621267730807,0.018340703943357763,31844.0,8,4,8,8_1,8_1,8_0_0 +1975,2,69.0,2,0.0,1,120,2,0,75,6.0,0.0,0.0,800.8282102497094,0.0,1061.5931652259337,24865.2,0,41,1,12511,201701975,,,225.0,,0.0,0.0,4.0,0.0,1.0,1.0,2055.1048085349616,0.0,595.0,600.0,0.0,24257.0,0,5,1,100.0,0,1.0,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1862.4213754756431,0.07490071969964622,0.0767787185338518,24257.0,7,4,7,7_1,7_1,7_1_0 +1976,2,55.0,3,0.0,2,111,1,0,52,6.0,0.0,0.0,471.07541779394666,0.0,0.0,19642.291191295746,0,50,8,12512,201701976,324.0,324.0,,418.0,1.0,1.0,3.0,0.0,1.0,1.0,3543.576693795907,0.0,350.0,0.0,324.0,22009.0,0,1,3,58.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,471.07541779394666,0.023982712261322054,0.021403762905808834,22009.0,6,3,6,6_0,6_4,6_0_1 +1977,2,73.0,3,0.0,9,112,3,74,74,10.0,0.0,0.0,692.0176189277307,0.0,1289.5600041096598,117524.23039873278,10,10,1,12514,201701977,,,144.0,,0.0,2.0,5.0,0.0,2.0,1.5,2372.844913597715,1243.0,0.0,0.0,0.0,86248.0,5,5,1,147.0,7,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1981.5776230373904,0.016861013395402392,0.022975345782364695,57498.666666666664,10,5,10,10_1,10_2,10_0_0 +1978,2,78.0,2,0.0,1,221,2,63,77,4.0,0.0,416.377895869032,2797.0642455238585,81.38880933398825,1073.8856792653332,19070.613694889544,50,60,1,12515,201701978,,,180.0,,1.0,6.0,7.0,0.0,2.0,1.5,1661.4727137571058,1035.1126702695867,1650.0,0.0,0.0,29211.0,5,5,1,200.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4368.716629992212,0.22908107205605663,0.149557243161556,19474.0,5,3,5,5_1,5_1,5_1_0 +1979,2,65.0,3,0.0,6,221,6,78,75,7.0,991.5350057118013,0.0,1106.3542669332119,0.0,0.0,22655.260000000002,70,50,1,12517,201701979,,,300.0,,0.0,1.0,6.0,0.0,2.0,1.5,1888.1154066729923,0.0,822.0,0.0,0.0,35602.0,5,5,1,120.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2097.889272645013,0.09260053835820083,0.058926163492079464,23734.666666666668,6,3,6,6_1,6_1,6_0_0 +1980,2,48.0,1,0.0,7,112,2,33,34,9.0,0.0,507.981032960219,2617.1598490237,238.8584621758351,2130.639449792038,47880.99895985517,31,31,1,12518,201701980,,,500.0,,2.0,1.0,7.0,1.0,3.0,2.0,2297.693783979822,2053.711985213131,1095.0,0.0,0.0,74686.0,1,1,1,150.0,9,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5494.638793951792,0.11475614363348303,0.07356986307944985,37343.0,9,5,9,9_1,9_0,9_0_0 +1981,2,68.0,3,0.0,1,111,2,0,74,9.0,0.0,0.0,457.61612014269105,0.0,1557.0033089980361,23378.240000000005,0,31,1,12519,201701981,,,360.0,,0.0,2.0,5.0,0.0,1.0,1.0,1389.2162887038646,0.0,340.0,880.0,0.0,33797.0,0,5,1,80.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2014.619429140727,0.08617498276776724,0.05960941589906581,33797.0,9,5,9,9_1,9_2,9_1_0 +1982,1,25.0,4,353.0,99,111,6,0,54,1.0,0.0,0.0,540.0298393884947,0.0,1006.3340337782541,16730.951502734115,0,71,2,1252,201701982,,,,10.0,1.0,0.0,3.0,1.0,2.0,1.3,1076.510417731185,970.0,0.0,0.0,0.0,13286.0,0,4,3,71.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1546.3638731667488,0.09242533952202583,0.11639047667971916,10220.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1983,2,57.0,2,0.0,2,111,2,0,21,4.0,0.0,0.0,61.79722904342568,0.0,115.15781211276929,12973.140000000001,0,44,2,12520,201701983,,,,,1.0,1.0,4.0,0.0,1.0,1.0,2356.9066719694665,111.0,0.0,0.0,0.0,17031.0,0,1,1,76.0,4,4.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,176.95504115619497,0.013640108806055816,0.010390173281439432,17031.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +1984,2,65.0,2,0.0,1,112,2,47,77,9.0,0.0,0.0,3564.022018052488,0.0,0.0,30358.440000000002,50,60,1,12527,201701984,,,455.0,,1.0,0.0,5.0,0.0,2.0,1.5,1339.825208857846,0.0,2648.0,0.0,0.0,46360.0,1,5,1,120.0,10,2.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3564.022018052488,0.11739806189160207,0.07687709271036428,30906.666666666668,8,4,8,8_1,8_1,8_1_0 +1985,2,65.0,4,0.0,1,112,2,0,78,4.0,0.0,0.0,1018.8688322000504,58.38762408742635,0.0,19361.879999999997,0,50,2,12528,201701985,,,115.0,380.0,0.0,2.0,2.0,0.0,1.0,1.0,2648.0145211889007,0.0,757.0,0.0,0.0,16226.0,0,5,3,54.0,9,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1077.2564562874768,0.05563800913379677,0.06639075904643639,16226.0,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +1986,2,25.0,2,0.0,2,111,2,0,37,2.0,0.0,0.0,2422.6735772260117,0.0,0.0,17426.0058467513,0,20,2,12529,201701986,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4769.398912456687,0.0,1800.0,0.0,0.0,13108.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2422.6735772260117,0.1390263264302569,0.18482404464647634,13108.0,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +1987,2,70.0,2,0.0,7,221,4,0,77,7.0,0.0,0.0,1292.0925745205395,0.0,0.0,19195.559999999998,0,50,1,12530,201701987,,,188.0,,0.0,0.0,3.0,0.0,1.0,1.0,2351.338595591577,0.0,960.0,0.0,0.0,23396.0,0,5,1,74.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1292.0925745205395,0.06731205416880465,0.0552270719148803,23396.0,6,3,6,6_1,6_1,6_0_0 +1988,2,45.0,2,0.0,1,120,2,46,85,2.0,0.0,0.0,874.0689152989037,0.0,1628.8086938472775,54871.38,50,43,1,12531,201701988,,,650.0,,1.0,3.0,6.0,3.0,5.0,3.0,1530.259145772479,1570.0,0.0,0.0,0.0,38008.0,1,6,1,95.0,0,1.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2502.8776091461814,0.04561353494565257,0.06585133680136238,12669.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +1989,1,67.0,4,172.0,6,111,2,0,78,4.0,0.0,0.0,1689.1418552325802,477.7169243516702,0.0,15245.54194807331,0,71,1,12533,201701989,,,460.0,,1.0,8.0,6.0,2.0,3.0,2.0,3017.6762364096385,0.0,1255.0,0.0,0.0,31934.0,0,5,3,100.0,8,6.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2166.8587795842504,0.14213064953444257,0.06785428632755841,15967.0,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +1990,2,65.0,2,0.0,3,111,1,0,74,9.0,0.0,0.0,306.87198644862815,0.0,0.0,27920.2,0,20,2,12535,201701990,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3799.828362279292,0.0,228.0,0.0,0.0,35844.0,0,5,1,83.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,306.87198644862815,0.010991038260779943,0.008561320903041741,35844.0,9,5,9,9_0,9_3,9_0_1 +1991,2,48.0,2,0.0,4,111,2,0,43,7.0,0.0,0.0,1340.5460460650597,0.0,0.0,30635.02,0,30,8,12536,201701991,,,,447.0,1.0,0.0,3.0,1.0,2.0,1.5,3612.9234202661037,0.0,996.0,0.0,0.0,41964.0,0,1,3,52.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1340.5460460650597,0.04375861501200455,0.03194514455402392,27976.0,8,4,8,8_0,8_4,8_0_1 +1992,2,30.0,3,0.0,6,111,2,54,38,7.0,2062.392811880547,0.0,888.3136449828709,0.0,0.0,40804.22,31,31,1,12537,201701992,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.1,2120.6515266594483,0.0,660.0,0.0,0.0,51850.0,1,1,2,138.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2950.7064568634178,0.07231375717666991,0.05690851411501288,24690.47619047619,7,4,7,7_1,7_4,7_0_0 +1993,2,48.0,3,0.0,4,111,1,77,38,10.0,0.0,0.0,565.290501352736,0.0,0.0,117511.87999999999,71,31,2,12538,201701993,,,,,1.0,2.0,4.0,1.0,3.0,2.0,712.9903463865157,0.0,420.0,0.0,0.0,101727.0,4,1,2,108.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,565.290501352736,0.004810496618322641,0.005556936716434535,50863.5,10,5,10,10_0,10_3,10_0_1 +1994,2,56.0,3,0.0,6,111,2,0,54,6.0,0.0,0.0,1507.4413369406293,0.0,1910.8676974066807,30765.28,0,71,1,12539,201701994,,,800.0,650.0,1.0,2.0,5.0,0.0,1.0,1.0,1651.4360011755368,0.0,1120.0,1080.0,0.0,23440.0,0,4,3,104.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3418.30903434731,0.11110931005169822,0.14583229668717193,23440.0,6,3,6,6_1,6_4,6_0_0 +1995,2,68.0,2,0.0,5,300,2,75,74,5.0,0.0,0.0,1793.1720612677998,0.0,3112.144580648037,21834.021049766423,70,44,1,1254,201701995,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2115.120411531525,1451.240046082366,732.0,908.0,0.0,29290.0,5,5,1,90.0,0,0.0,3,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4905.316641915837,0.2246639146648763,0.16747410863488688,19526.666666666668,5,3,5,5_1,5_0,5_0_0 +1996,2,43.0,2,0.0,4,111,1,0,67,7.0,0.0,0.0,471.07541779394666,0.0,194.62541362475451,22207.934661438776,0,50,2,12542,201701996,,,119.0,353.0,1.0,2.0,4.0,0.0,1.0,1.0,2791.355135056925,0.0,350.0,110.0,0.0,26448.0,0,1,3,82.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,665.7008314187012,0.029975810068218776,0.025170176626538913,26448.0,7,4,7,7_0,7_3,7_0_1 +1997,2,61.0,2,0.0,7,111,2,78,78,5.0,0.0,0.0,515.4911000430902,0.0,1142.981974559922,27541.600000000002,71,50,1,12543,201701997,,,,382.0,0.0,1.0,3.0,0.0,2.0,1.5,2251.104494254732,0.0,383.0,646.0,0.0,30127.0,5,5,3,68.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1658.4730746030123,0.06021701987549787,0.055049393388090825,20084.666666666668,5,3,5,5_1,5_2,5_0_0 +1998,2,59.0,3,0.0,9,112,5,54,43,4.0,0.0,305.3437903039568,1211.3367886130059,0.0,0.0,40590.4,31,33,1,12546,201701998,,,187.0,,2.0,3.0,5.0,2.0,4.0,2.3,1859.9076684360614,0.0,900.0,0.0,0.0,37603.0,1,4,2,88.0,8,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1516.6805789169625,0.03736549969739058,0.040334031298485826,16349.13043478261,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1999,1,47.0,4,390.0,1,111,2,0,56,2.0,0.0,0.0,582.7875882993683,0.0,2678.7534202534393,18719.54,0,71,1,12547,201701999,,,754.0,55.0,1.0,0.0,5.0,3.0,4.0,2.3,555.740339110149,0.0,433.0,1514.0,0.0,28690.0,0,1,3,100.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3261.5410085528074,0.17423189931765456,0.1136821543587594,12473.913043478262,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +2000,2,36.0,3,0.0,4,111,1,0,37,6.0,0.0,0.0,872.1624878013641,0.0,0.0,28919.36,0,20,2,12549,201702000,,,,,1.0,0.0,4.0,2.0,3.0,1.6,632.3609056043576,0.0,648.0,0.0,0.0,36034.0,0,1,2,90.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,872.1624878013641,0.030158429778576155,0.024203876555513242,22521.25,6,3,6,6_0,6_3,6_0_1 +2001,2,86.0,1,0.0,4,111,4,75,74,7.0,0.0,0.0,1909.8743367131724,0.0,0.0,30703.199999999997,71,41,1,1255,201702001,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2711.6016854767377,0.0,1419.0,0.0,0.0,39231.0,5,5,5,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1909.8743367131724,0.062204406599741156,0.04868278495865954,26154.0,7,4,7,7_1,7_3,7_0_1 +2002,2,32.0,2,0.0,4,111,2,0,46,5.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,19828.956722052928,0,31,2,12552,201702002,,,,455.0,1.0,0.0,3.0,1.0,2.0,1.3,1404.8583050431384,1200.0,0.0,0.0,0.0,25740.0,0,1,3,64.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1913.0274719588647,0.09647645606242493,0.0743211916067935,19800.0,5,3,5,5_0,5_4,5_0_1 +2003,2,66.0,1,0.0,5,120,4,75,74,9.0,0.0,0.0,1677.0284873464502,212.31863304518674,0.0,36598.12,41,31,1,12553,201702003,,,416.0,,0.0,2.0,8.0,0.0,2.0,1.5,1251.2397910801392,0.0,1246.0,0.0,0.0,51891.0,5,5,1,150.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1889.347120391637,0.051624157754322816,0.03640991926136781,34594.0,9,5,9,9_1,9_1,9_0_0 +2004,2,61.0,2,0.0,4,112,6,46,74,9.0,0.0,249.82673752141918,2616.4874634040925,0.0,0.0,61540.600000000006,30,50,1,12554,201702004,,,,,1.0,2.0,5.0,1.0,3.0,2.0,1755.6329037726787,0.0,1944.0,0.0,0.0,75851.0,1,5,1,135.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2866.3142009255116,0.04657598724948264,0.037788746370193034,37925.5,9,5,9,9_1,9_0,9_0_1 +2005,2,51.0,2,0.0,4,111,4,21,37,9.0,0.0,0.0,2023.660623597582,0.0,284.7735343755964,42450.20495284154,12,30,1,12555,201702005,,,1200.0,,2.0,1.0,4.0,2.0,4.0,2.1,2207.1418135372082,274.49168871615035,1390.0,0.0,0.0,74178.0,1,1,2,130.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2308.434157973178,0.05437981184160704,0.03112019949274958,35322.857142857145,9,5,9,9_1,9_3,9_0_1 +2006,1,43.0,3,353.0,1,300,4,0,56,6.0,0.0,0.0,2632.6386205855993,0.0,0.0,12400.210875301627,0,50,1,12556,201702006,,,504.0,,1.0,0.0,4.0,1.0,2.0,1.3,1204.6777428196958,0.0,1956.0,0.0,0.0,26355.0,0,1,3,60.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2632.6386205855993,0.21230595568573846,0.09989142935251752,20273.076923076922,5,3,5,5_1,5_0,5_1_0 +2007,2,47.0,3,0.0,8,112,2,65,46,7.0,801.1602846151355,0.0,1240.9472434457682,0.0,0.0,31836.57087530163,31,43,1,12557,201702007,,,333.0,,2.0,0.0,4.0,1.0,3.0,1.8,1353.0758166694839,0.0,922.0,0.0,0.0,44931.0,1,1,2,80.0,6,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2042.1075280609039,0.06414345112919,0.045449857071084634,24961.666666666664,7,4,7,7_1,7_0,7_0_0 +2008,2,30.0,3,0.0,9,111,5,63,56,6.0,0.0,804.9972653467952,1924.6795641295537,0.0,0.0,24196.939999999995,50,50,1,12559,201702008,,,300.0,,2.0,0.0,3.0,1.0,3.0,1.8,2060.0105833922544,0.0,1430.0,0.0,0.0,38004.0,1,1,2,75.0,6,4.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2729.6768294763488,0.1128108277111217,0.07182604013988919,21113.333333333332,5,3,5,5_1,5_2,5_0_0 +2009,2,43.0,3,0.0,6,111,2,35,38,6.0,0.0,0.0,1328.4326781789296,0.0,1804.7083808840873,45782.22000000001,41,20,1,1256,201702009,,,,,2.0,0.0,6.0,3.0,5.0,2.8,1971.7089371126458,0.0,987.0,1020.0,0.0,62384.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3133.1410590630167,0.0684357608491466,0.050223471708499244,22280.0,6,3,6,6_1,6_4,6_0_0 +2010,1,33.0,4,437.0,9,111,4,0,85,1.0,0.0,0.0,1345.929765125562,0.0,0.0,8843.307533755658,0,71,8,12560,201702010,,,,46.0,0.0,0.0,3.0,2.0,3.0,1.6,1435.1234650018648,0.0,1000.0,0.0,0.0,15464.0,0,6,3,92.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1345.929765125562,0.15219755278079308,0.08703632728437416,9665.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2011,2,55.0,1,0.0,5,111,2,46,34,10.0,0.0,416.377895869032,2691.859530251124,0.0,0.0,54324.23999999999,31,20,1,12561,201702011,,,600.0,,2.0,2.0,6.0,0.0,2.0,1.5,1634.2916338146122,0.0,2000.0,0.0,0.0,100147.0,4,1,1,170.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3108.2374261201558,0.05721639964259337,0.03103675023835118,66764.66666666667,10,5,10,10_1,10_3,10_0_0 +2012,2,38.0,1,0.0,1,111,2,85,31,10.0,0.0,0.0,4037.789295376686,0.0,0.0,100423.8516935026,31,10,1,12563,201702012,,,330.0,,1.0,0.0,7.0,2.0,4.0,2.1,3981.7220876207116,0.0,3000.0,0.0,0.0,222005.0,6,1,2,243.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4037.789295376686,0.040207472898969976,0.01818783043344378,105716.66666666666,10,5,10,10_1,10_3,10_1_0 +2013,2,42.0,4,0.0,1,111,2,65,43,6.0,0.0,0.0,55.673179318401516,0.0,103.74577667817053,60338.94,50,33,1,12564,201702013,,,50.0,,2.0,0.0,6.0,2.0,4.0,2.3,3750.1977428966898,100.0,0.0,0.0,0.0,50730.0,1,1,2,114.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,159.41895599657204,0.002642057616467443,0.0031424986397904993,22056.521739130436,6,3,6,6_1,6_3,6_1_0 +2014,1,70.0,5,46.0,3,111,7,0,77,3.0,0.0,0.0,578.7497990039916,0.0,1132.3660429076626,8421.667533755659,0,71,1,12565,201702014,,,150.0,,0.0,2.0,4.0,0.0,1.0,1.0,2872.6617012368097,0.0,430.0,640.0,0.0,13742.0,0,5,3,67.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1711.1158419116541,0.20318017008545797,0.12451723489387674,13742.0,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +2015,2,71.0,2,0.0,9,400,2,0,78,5.0,3172.912018277764,0.0,1615.1157181506744,371.5576078290768,0.0,15622.76,0,71,1,12566,201702015,,,252.0,,0.0,0.0,4.0,0.0,1.0,1.0,2755.2161036167745,0.0,1200.0,0.0,0.0,20040.0,0,5,1,110.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5159.585344257515,0.3302608082219477,0.25746433853580414,20040.0,5,3,5,5_1,5_0,5_0_0 +2016,2,57.0,1,0.0,1,120,2,21,43,9.0,3172.912018277764,0.0,1335.1623270045575,0.0,0.0,40761.44,50,33,1,12567,201702016,,,620.0,,2.0,2.0,5.0,0.0,2.0,1.5,2214.394849353021,0.0,992.0,0.0,0.0,57020.0,1,1,1,130.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4508.074345282322,0.11059654284250806,0.07906128280046162,38013.333333333336,9,5,9,9_1,9_0,9_1_0 +2017,2,40.0,4,0.0,3,112,2,0,54,5.0,951.8736054833294,0.0,1036.3659191466827,0.0,0.0,37905.06,0,31,1,12568,201702017,,,241.0,,1.0,0.0,5.0,2.0,3.0,1.6,8.805595705892259,0.0,770.0,0.0,0.0,29587.0,0,1,3,100.0,10,0.0,2,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1988.239524630012,0.052453142789643706,0.06719976762192896,18491.875,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +2018,2,78.0,1,0.0,1,111,2,77,74,10.0,634.5824036555529,0.0,4672.450864382377,0.0,580.7315278052191,65268.86682308978,71,12,1,12569,201702018,,,310.0,,0.0,3.0,9.0,0.0,2.0,1.5,1536.5793869892868,559.7640177746268,3240.0,0.0,0.0,71130.0,5,5,1,220.0,5,4.0,3,5,1,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,5887.76479584315,0.09020785992503658,0.08277470541041965,47420.0,10,5,10,10_1,10_2,10_1_0 +2019,2,42.0,4,0.0,5,211,4,0,48,3.0,0.0,0.0,2153.487624200899,0.0,0.0,25671.26,0,50,1,1257,201702019,,,520.0,,2.0,1.0,4.0,2.0,3.0,1.8,291.0013835219537,0.0,1600.0,0.0,0.0,28864.0,0,1,3,80.0,4,3.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2153.487624200899,0.08388710270555085,0.07460808010673846,16035.555555555555,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2020,2,60.0,3,0.0,1,211,2,75,77,8.0,0.0,0.0,605.6683943065029,0.0,2565.5168159626733,25472.14,41,50,1,12570,201702020,,,,,0.0,4.0,7.0,0.0,2.0,1.5,818.6284517206147,0.0,450.0,1450.0,0.0,42411.0,5,5,1,100.0,4,3.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3171.1852102691764,0.12449622255017351,0.07477270543654185,28274.0,8,4,8,8_1,8_1,8_1_0 +2021,1,63.0,5,329.0,1,111,4,0,78,1.0,0.0,0.0,148.0522741638118,0.0,0.0,7888.6,0,71,2,12571,201702021,,,,,0.0,3.0,1.0,0.0,1.0,1.0,3734.2842144432625,0.0,110.0,0.0,0.0,9678.0,0,4,3,28.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,148.0522741638118,0.01876787695710415,0.015297817127899545,9678.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +2022,2,57.0,2,0.0,1,112,5,13,37,10.0,0.0,416.377895869032,250.34293631335453,0.0,0.0,51941.08417758094,50,42,1,12572,201702022,,,,450.0,2.0,3.0,4.0,0.0,2.0,1.5,1819.626163335585,0.0,186.0,0.0,0.0,81395.0,1,1,3,90.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,666.7208321823865,0.012836097719927067,0.00819117675756971,54263.333333333336,10,5,10,10_1,10_1,10_1_0 +2023,2,44.0,5,0.0,9,111,1,0,54,4.0,0.0,0.0,672.964882562781,0.0,0.0,34679.6,0,50,2,12573,201702023,,,,528.0,1.0,2.0,4.0,1.0,2.0,1.3,807.1311937971963,0.0,500.0,0.0,0.0,21760.0,0,1,3,82.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,672.964882562781,0.01940520889983682,0.030926694970716036,16738.46153846154,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +2024,2,46.0,2,0.0,1,111,4,42,43,7.0,0.0,0.0,1615.1157181506744,0.0,0.0,53739.780000000006,20,20,2,12574,201702024,,,,,2.0,1.0,4.0,2.0,4.0,2.3,3779.196675747025,0.0,1200.0,0.0,0.0,62210.0,1,1,2,73.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1615.1157181506744,0.030054379049387143,0.02596231663961862,27047.826086956524,7,4,7,7_0,7_4,7_1_0 +2025,2,71.0,3,0.0,7,300,4,0,71,3.0,0.0,0.0,2557.266553738568,0.0,0.0,19792.391711336604,0,50,1,12575,201702025,,,,,0.0,3.0,4.0,0.0,1.0,1.0,1583.128382832209,0.0,1900.0,0.0,0.0,16995.0,0,5,1,92.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2557.266553738568,0.12920452419470999,0.15047170072012755,16995.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2026,1,55.0,4,271.0,9,111,2,0,62,3.0,0.0,0.0,547.8240844930708,0.0,1020.8584425131979,12918.444177580943,0,60,1,12577,201702026,,,400.0,269.0,1.0,2.0,4.0,1.0,2.0,1.5,2170.4484990410497,984.0,0.0,0.0,0.0,20904.0,0,4,3,89.0,4,4.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1568.6825270062686,0.12142967879434023,0.07504221809253103,13936.0,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +2027,1,53.0,4,300.0,99,111,2,0,67,2.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,2653.4,0,71,2,12578,201702027,,,80.0,,1.0,2.0,2.0,0.0,1.0,1.0,1991.7348289538145,600.0,0.0,0.0,0.0,13450.0,0,4,3,50.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,956.5137359794323,0.3604860691864899,0.07111626289809905,13450.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2028,2,54.0,2,0.0,1,111,2,0,46,10.0,0.0,0.0,911.1944509900054,0.0,2439.8949580776043,40758.76031599411,0,60,2,12580,201702028,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2339.272704538186,0.0,677.0,1379.0,0.0,50547.0,0,1,1,185.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,3351.0894090676097,0.08221764801204248,0.06629650442296496,50547.0,10,5,10,10_0,10_2,10_1_0 +2029,1,29.0,3,319.0,5,111,1,85,69,1.0,0.0,0.0,272.7985786601674,0.0,508.35430572303557,7911.120000000001,41,71,2,12581,201702029,,,,,1.0,0.0,3.0,1.0,3.0,1.8,4368.855005582772,490.0,0.0,0.0,0.0,15318.0,6,1,3,60.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,781.152884383203,0.09874112444043358,0.05099574907841774,8510.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2030,2,24.0,4,0.0,5,111,4,46,47,5.0,0.0,0.0,1480.522741638118,0.0,0.0,19938.56,30,31,2,12582,201702030,,,,575.0,2.0,0.0,3.0,0.0,2.0,1.5,3392.3947938439374,0.0,1100.0,0.0,0.0,28517.0,1,1,3,75.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1480.522741638118,0.07425424612600498,0.051917198219943124,19011.333333333332,5,3,5,5_0,5_3,5_0_0 +2031,1,43.0,3,86.0,2,111,1,0,52,2.0,0.0,0.0,269.1859530251124,0.0,97.31270681237726,22965.720000000005,0,50,2,12583,201702031,,,,247.0,1.0,0.0,3.0,1.0,2.0,1.5,2337.8326088203535,0.0,200.0,55.0,0.0,19462.0,0,1,3,69.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,366.49865983748964,0.01595850945833571,0.018831500351325126,12974.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2032,2,63.0,3,0.0,9,400,2,75,75,7.0,0.0,0.0,1601.6564204994188,0.0,0.0,26349.38488324107,60,50,1,12585,201702032,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1875.3568890342174,0.0,1190.0,0.0,0.0,39910.0,5,5,3,80.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1601.6564204994188,0.060785343855146924,0.04013170685290451,26606.666666666668,7,4,7,7_1,7_1,7_0_0 +2033,1,22.0,3,200.0,7,111,4,0,37,9.0,0.0,0.0,646.0462872602698,0.0,0.0,17742.38,0,30,2,12586,201702033,,,,,1.0,0.0,1.0,0.0,1.0,1.0,5488.56419519418,0.0,480.0,0.0,0.0,32472.0,0,1,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,646.0462872602698,0.036412605707930375,0.019895488028463592,32472.0,9,5,9,9_0,9_4,9_0_0 +2034,1,34.0,2,301.0,99,111,1,68,52,5.0,0.0,0.0,807.5578590753372,212.31863304518674,0.0,32017.981750603256,71,71,2,12588,201702034,,,600.0,179.0,2.0,0.0,6.0,4.0,6.0,3.1,3117.472731920005,0.0,600.0,0.0,0.0,61187.0,1,1,3,104.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1019.876492120524,0.03185324109635075,0.016668189192484088,19737.74193548387,5,3,5,5_0,5_2,5_0_0 +2035,2,87.0,1,0.0,4,111,2,75,74,10.0,0.0,0.0,1454.7004781520284,0.0,1887.4303075770258,73946.4386456342,70,41,2,1259,201702035,,,282.0,,0.0,1.0,5.0,0.0,2.0,1.5,2047.1631775205474,497.56801579966833,875.0,775.0,0.0,66313.0,5,5,1,110.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3342.130785729054,0.04519664296133582,0.05039933023282092,44208.666666666664,10,5,10,10_0,10_2,10_0_1 +2036,2,35.0,2,0.0,99,111,2,46,46,9.0,0.0,0.0,761.6090930757326,0.0,1419.2422249573729,49676.04,20,20,2,12591,201702036,,,,649.0,2.0,0.0,3.0,0.0,2.0,1.5,2714.5526706796672,1368.0,0.0,0.0,0.0,56936.0,1,1,3,80.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2180.8513180331056,0.04390147278311849,0.03830355694170833,37957.333333333336,9,5,9,9_0,9_3,9_0_0 +2037,2,39.0,4,0.0,99,111,1,68,48,8.0,0.0,0.0,942.1508355878933,0.0,477.7169243516702,66673.7,0,71,2,12592,201702037,,,260.0,249.0,2.0,0.0,2.0,1.0,3.0,1.8,2994.762018459895,0.0,700.0,270.0,0.0,46621.0,1,1,3,50.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1419.8677599395635,0.021295769695390588,0.03045554063489765,25900.555555555555,7,4,7,7_0,7_3,7_0_0 +2038,2,88.0,3,0.0,9,111,2,77,78,4.0,0.0,0.0,1289.4007149902884,0.0,0.0,27765.706,50,50,2,12593,201702038,,,371.0,696.0,0.0,1.0,4.0,0.0,2.0,1.5,2254.9040369020154,0.0,958.0,0.0,0.0,26410.0,5,5,3,75.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1289.4007149902884,0.04643860721532845,0.0488224428243199,17606.666666666668,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +2039,2,46.0,4,0.0,3,300,2,0,54,1.0,0.0,0.0,1870.842373524531,0.0,0.0,21004.290875301627,0,31,8,12596,201702039,,,,355.0,1.0,0.0,5.0,2.0,3.0,1.8,229.30862144161568,0.0,1390.0,0.0,0.0,17341.0,0,1,3,85.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1870.842373524531,0.08906953272697264,0.10788549527273693,9633.888888888889,1,1,1_0,1_0_0,1_0_0,1_0_1_0 +2040,2,88.0,2,0.0,6,111,6,0,72,4.0,0.0,0.0,1292.0925745205395,0.0,0.0,20825.579999999998,0,60,2,12599,201702040,,,,551.0,0.0,2.0,2.0,0.0,1.0,1.0,4415.517989401603,0.0,960.0,0.0,0.0,18373.0,0,5,3,53.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1292.0925745205395,0.062043533698487134,0.07032561772821747,18373.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +2041,2,52.0,1,0.0,7,221,2,0,69,9.0,2538.3296146222115,0.0,480.49692614982564,47.77169243516702,0.0,27495.62,0,50,1,126,201702041,,,230.0,,1.0,2.0,4.0,0.0,1.0,1.0,1742.35951167583,0.0,357.0,0.0,0.0,40592.0,0,1,2,101.0,1,2.0,1,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3066.5982332072044,0.11153042678096382,0.07554686226860476,40592.0,9,5,9,9_1,9_1,9_0_0 +2042,2,63.0,4,0.0,9,112,6,77,78,1.0,0.0,693.9631597817199,942.1508355878933,159.23897478389006,0.0,30546.92,50,50,1,1260,201702042,,,300.0,,0.0,3.0,5.0,1.0,3.0,2.0,2085.540778084674,0.0,700.0,0.0,0.0,20279.0,7,5,3,110.0,9,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1795.3529701535035,0.05877361678864853,0.08853261847988084,10139.5,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +2043,2,71.0,2,0.0,1,111,1,0,74,9.0,0.0,0.0,430.6975248401798,0.0,3099.8520424597264,44429.31119129575,0,20,2,12600,201702043,,,,1354.0,0.0,0.0,3.0,0.0,1.0,1.0,1119.647929204291,0.0,320.0,1752.0,0.0,41400.0,0,5,3,54.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3530.5495672999064,0.07946442275683051,0.08527897505555329,41400.0,10,5,10,10_0,10_4,10_1_0 +2044,2,58.0,2,0.0,7,112,4,0,31,9.0,0.0,0.0,1955.4174679371176,53.079658261296686,1637.1387180400004,15869.978137859107,0,44,1,12601,201702044,,,200.0,,1.0,1.0,3.0,0.0,1.0,1.0,1936.5489242771748,1578.029265825985,800.0999999999999,0.0,0.0,38037.0,0,1,1,82.0,6,0.0,1,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3645.6358442384144,0.2297190211964727,0.0958444631342749,38037.0,9,5,9,9_1,9_0,9_0_0 +2045,2,91.0,3,0.0,1,112,2,0,71,3.0,1903.7472109666587,0.0,1483.2146011683692,198.16405750884095,0.0,10926.439999999999,0,70,1,12602,201702045,,,210.0,,0.0,2.0,4.0,0.0,1.0,1.0,1874.1228807105122,0.0,1102.0,0.0,0.0,13995.0,0,5,5,100.0,9,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3585.1258696438686,0.32811472626435223,0.2561719092278577,13995.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2046,2,92.0,3,0.0,4,111,2,0,77,5.0,0.0,0.0,607.9511181569445,0.0,1132.9038813256223,18151.14,0,71,1,12603,201702046,,,166.0,,0.0,5.0,3.0,0.0,1.0,1.0,3581.433453589099,1092.0,0.0,0.0,0.0,16630.0,0,5,1,80.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1740.8549994825667,0.09590885197748278,0.10468159948782722,16630.0,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +2047,2,94.0,3,0.0,1,111,1,0,75,9.0,0.0,0.0,910.3176814115517,0.0,966.4971113388,27325.63173688718,0,60,8,12604,201702047,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3809.732290648655,931.6014032426281,291.0,0.0,0.0,42505.0,0,5,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1876.8147927503517,0.06868330843443295,0.04415515334079171,42505.0,10,5,10,10_0,10_4,10_1_0 +2048,0,42.0,2,0.0,6,112,4,0,37,8.0,0.0,0.0,856.0113306198574,0.0,0.0,25108.716658454032,0,20,1,12605,201702048,,,160.0,,1.0,0.0,5.0,0.0,1.0,1.0,3241.287265643086,0.0,636.0,0.0,0.0,28567.0,0,1,5,83.0,8,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,856.0113306198574,0.03409219763255566,0.029965041153073736,28567.0,8,4,8,8_1,8_1,8_0_0 +2049,2,60.0,4,0.0,8,211,2,0,77,1.0,0.0,0.0,518.1829595733413,0.0,1470.3065338379183,14644.559999999998,0,60,1,12606,201702049,,,253.0,,0.0,4.0,5.0,0.0,1.0,1.0,4186.131388172948,0.0,385.0,831.0,0.0,5312.0,0,7,1,120.0,1,2.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1988.4894934112597,0.13578349185030208,0.3743391365608546,5312.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +2050,2,53.0,5,0.0,7,221,2,46,22,7.0,0.0,0.0,2796.842051930918,0.0,0.0,61300.62685489861,30,31,1,12607,201702050,,,511.0,,3.0,1.0,5.0,2.0,4.0,2.5,5024.524505988652,0.0,2078.0,0.0,0.0,65232.0,1,1,2,119.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2796.842051930918,0.04562501552473796,0.04287530739408447,26092.8,7,4,7,7_1,7_1,7_0_0 +2051,2,40.0,4,0.0,9,211,4,43,38,4.0,0.0,0.0,3660.9289611415284,0.0,0.0,63336.84,30,12,1,12608,201702051,,,,,2.0,0.0,5.0,3.0,5.0,2.8,2508.7138541344143,0.0,2720.0,0.0,0.0,50130.0,1,1,2,145.0,2,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3660.9289611415284,0.0578009411448618,0.07302870459089424,17903.57142857143,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2052,1,81.0,4,22.0,8,111,2,0,78,3.0,0.0,0.0,61.91276919577585,0.0,72.54219962377213,13305.306682786273,0,71,2,12609,201702052,,,,,0.0,5.0,3.0,0.0,1.0,1.0,4050.7977607470734,0.0,46.0,41.0,0.0,13937.0,0,5,3,80.0,5,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,134.454968819548,0.010105364124639003,0.00964733937142484,13937.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2053,2,56.0,3,0.0,1,111,2,67,75,6.0,1456.3666163894939,0.0,888.3136449828709,145.08439924754427,0.0,21285.699999999997,60,71,1,1261,201702053,,,460.0,,1.0,2.0,5.0,0.0,2.0,1.5,2335.5029545638367,0.0,660.0,0.0,0.0,33987.0,1,5,1,90.0,9,7.0,3,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2489.764660619909,0.11696888806193405,0.07325638216435429,22658.0,6,3,6,6_1,6_3,6_1_0 +2054,2,48.0,2,0.0,6,300,4,63,55,8.0,133.2623047676661,0.0,1884.3016711757866,0.0,0.0,33157.93474535321,50,50,1,12610,201702054,,,,,3.0,1.0,6.0,1.0,3.0,2.0,2014.3709755501884,0.0,1400.0,0.0,0.0,52120.0,1,1,1,120.0,0,2.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2017.5639759434528,0.060847094109991166,0.038709976514647984,26060.0,7,4,7,7_1,7_1,7_0_0 +2055,1,25.0,1,272.0,4,111,4,0,46,5.0,0.0,0.0,759.1043875308169,0.0,0.0,12408.38,0,20,2,12612,201702055,,,,128.0,1.0,0.0,1.0,0.0,1.0,1.0,3891.3091971760086,0.0,564.0,0.0,0.0,19320.0,0,1,3,16.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,759.1043875308169,0.06117675212483958,0.039291117367019505,19320.0,5,3,5,5_0,5_3,5_0_1 +2056,2,48.0,4,0.0,8,111,5,85,85,1.0,0.0,0.0,1051.171146563064,0.0,0.0,30473.64,50,50,1,12613,201702056,,,383.0,,0.0,1.0,4.0,0.0,2.0,1.5,2946.071142561778,0.0,781.0,0.0,0.0,6706.0,7,7,2,85.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1051.171146563064,0.03449444000004804,0.1567508420165619,4470.666666666667,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +2057,2,70.0,3,0.0,9,400,1,0,77,2.0,0.0,0.0,1582.813403787661,0.0,0.0,24187.1,0,70,2,12615,201702057,653.0,653.0,,,0.0,3.0,3.0,0.0,1.0,1.0,2976.941717728889,0.0,1176.0,0.0,0.0,12902.0,0,6,1,65.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1582.813403787661,0.06544039607012254,0.12267969336441334,12902.0,2,1,2_0,2_0_0,2_0_0,2_0_0_0 +2058,1,37.0,3,85.0,1,211,4,0,46,3.0,0.0,0.0,3634.010365839017,0.0,0.0,52172.740000000005,0,43,1,12616,201702058,,,600.0,,1.0,0.0,6.0,4.0,5.0,2.2,585.6286618569487,0.0,2700.0,0.0,0.0,32180.0,0,1,3,120.0,2,3.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,3634.010365839017,0.06965343138656349,0.11292760614788742,14627.272727272726,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +2059,2,57.0,3,0.0,9,112,4,43,47,8.0,0.0,0.0,2961.045483276236,0.0,0.0,68186.74,33,50,1,12617,201702059,,,521.0,,3.0,2.0,4.0,2.0,4.0,2.5,1414.0428255362942,0.0,2200.0,0.0,0.0,78790.0,1,1,2,127.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2961.045483276236,0.04342553234362335,0.03758148855535266,31516.0,8,4,8,8_1,8_1,8_0_0 +2060,2,49.0,4,0.0,4,111,1,0,52,1.0,0.0,0.0,1211.3367886130059,0.0,0.0,21709.7,0,33,8,12618,201702060,,,,461.0,1.0,2.0,4.0,0.0,1.0,1.0,1970.9890655855525,0.0,900.0,0.0,0.0,7272.0,0,1,3,89.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1211.3367886130059,0.05579703029581274,0.1665754659808864,7272.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +2061,1,60.0,2,215.0,99,112,2,0,77,5.0,0.0,0.0,511.45331074771354,0.0,1344.6846759528494,15559.380000000001,0,50,1,1262,201702061,,,243.0,145.0,0.0,1.0,5.0,0.0,1.0,1.0,3813.496847356085,0.0,380.0,760.0,0.0,19214.0,0,5,3,65.0,9,1.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1856.137986700563,0.11929382704841471,0.09660341348498819,19214.0,5,3,5,5_1,5_1,5_0_0 +2062,2,72.0,3,0.0,5,400,1,75,78,6.0,0.0,0.0,557.326019558453,143.31507730550106,536.9428396326666,15346.266847444771,50,71,2,12620,201702062,,,300.0,320.0,0.0,2.0,3.0,0.0,2.0,1.5,4813.850603551564,517.5563351347934,200.0,0.0,0.0,31150.0,5,5,3,70.0,0,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1237.5839364966207,0.08064397346920138,0.039729821396360214,20766.666666666668,5,3,5,5_0,5_1,5_0_0 +2063,2,54.0,4,0.0,7,112,2,54,52,6.0,0.0,0.0,857.357260384983,0.0,1955.1007459577613,29055.239999999998,50,50,1,12624,201702063,,,,612.0,2.0,2.0,5.0,1.0,3.0,2.0,2677.1240090442016,0.0,637.0,1105.0,0.0,47609.0,1,1,3,75.0,8,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2812.4580063427443,0.09679692910272793,0.05907408276466097,23804.5,6,3,6,6_1,6_1,6_0_0 +2064,1,45.0,3,450.0,2,111,2,0,52,2.0,0.0,0.0,1884.3016711757866,0.0,0.0,33045.82031599412,0,50,1,12625,201702064,,,1100.0,300.0,1.0,0.0,3.0,3.0,4.0,2.3,504.880064467916,0.0,1400.0,0.0,0.0,28674.0,0,1,3,73.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1884.3016711757866,0.057020877471266405,0.06571464292305874,12466.956521739132,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +2065,2,60.0,2,0.0,99,111,1,0,46,10.0,0.0,0.0,547.7934144061037,0.0,0.0,32184.564571802704,0,71,2,12627,201702065,,,,,2.0,0.0,4.0,1.0,2.0,1.5,3088.9354103162277,0.0,407.0,0.0,0.0,64231.0,0,1,1,103.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,547.7934144061037,0.017020376745628937,0.008528489583006706,42820.666666666664,10,5,10,10_0,10_4,10_0_0 +2066,2,59.0,3,0.0,3,111,1,0,74,4.0,0.0,0.0,478.3890777235438,0.0,751.5970503453393,62187.29064947378,0,31,2,12628,201702066,,,,301.0,1.0,0.0,4.0,2.0,3.0,2.0,2828.8742082133567,714.2277424860149,60.0,6.0,0.0,40769.0,0,7,3,67.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1229.986128068883,0.019778737990079825,0.0301696418373981,20384.5,5,3,5,5_0,5_4,5_0_1 +2067,2,66.0,3,0.0,4,111,2,56,74,9.0,0.0,0.0,581.4416585342427,0.0,1231.448071662083,28253.761750603255,50,60,2,12629,201702067,,,,550.0,1.0,1.0,3.0,0.0,2.0,1.5,2349.2394245526657,0.0,432.0,696.0,0.0,45893.0,1,5,3,60.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1812.8897301963257,0.06416454368797876,0.03950253263452652,30595.333333333332,8,4,8,8_0,8_2,8_0_1 +2068,2,54.0,2,0.0,9,221,2,62,62,8.0,55.52596031986088,0.0,2137.3364670193923,0.0,0.0,42553.04937154204,50,60,2,1263,201702068,,,282.0,,2.0,0.0,3.0,0.0,2.0,1.5,5516.40422986154,0.0,1588.0,0.0,0.0,47625.0,1,1,1,65.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,2192.8624273392534,0.05153243914890296,0.04604435542969561,31750.0,8,4,8,8_0,8_1,8_0_0 +2069,0,85.0,2,0.0,5,111,1,0,78,4.0,0.0,0.0,0.0,0.0,0.0,11767.8,0,50,2,12630,201702069,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2700.487229811481,0.0,0.0,0.0,0.0,17630.0,0,5,5,80.0,9,7.0,1,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,17630.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +2070,2,42.0,3,0.0,5,112,2,46,54,6.0,2379.684013708323,0.0,1157.4995980079832,0.0,0.0,46994.259999999995,31,41,1,12633,201702070,,,260.0,,2.0,0.0,6.0,2.0,4.0,2.1,1998.0813903022308,0.0,860.0,0.0,0.0,46668.0,1,1,2,170.0,10,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3537.1836117163066,0.07526841813694496,0.07579462611888889,22222.85714285714,6,3,6,6_1,6_0,6_0_0 +2071,2,63.0,1,0.0,6,111,2,75,74,10.0,0.0,0.0,1499.4768551463465,0.0,3013.9935584931786,62393.8177227464,12,12,1,12634,201702071,,,450.0,,0.0,2.0,7.0,0.0,2.0,1.5,2333.918074691368,517.5563351347934,900.0,1400.0,0.0,182424.0,5,5,1,190.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4513.470413639525,0.07233842355496843,0.024741648103536403,121616.0,10,5,10,10_1,10_4,10_0_0 +2072,2,64.0,3,0.0,5,300,2,72,75,5.0,0.0,0.0,3830.5161115473493,0.0,0.0,24442.0,50,42,1,12635,201702072,,,264.0,,0.0,2.0,7.0,0.0,2.0,1.5,2065.83119625688,0.0,2846.0,0.0,0.0,29330.0,5,5,1,110.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3830.5161115473493,0.15671860369639756,0.1306006175092857,19553.333333333332,5,3,5,5_1,5_0,5_0_0 +2073,2,68.0,3,0.0,1,111,2,77,74,8.0,0.0,0.0,1945.8861195987483,0.0,2338.2720814908375,58535.08837407739,50,12,2,12636,201702073,,,1430.0,,0.0,2.0,6.0,0.0,2.0,1.5,1760.8584112024348,207.32000658319512,1360.0,1200.0,0.0,46361.0,5,5,1,180.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4284.158201089585,0.07318957432354113,0.09240866679082818,30907.333333333332,8,4,8,8_0,8_3,8_1_0 +2074,2,53.0,2,0.0,9,112,5,0,54,3.0,0.0,277.585263912688,633.9329193741397,51.310336319253466,0.0,16954.14,0,50,1,12637,201702074,,,112.0,,1.0,1.0,4.0,0.0,1.0,1.0,2186.9299378622836,0.0,471.0,0.0,0.0,15476.0,0,1,1,122.0,9,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,962.8285196060812,0.0567901715808694,0.06221430082748004,15476.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2076,2,39.0,2,0.0,5,112,2,37,37,10.0,0.0,0.0,1790.0865876169973,0.0,1592.3897478389006,80935.44,0,30,1,12639,201702076,,,400.0,,2.0,0.0,4.0,1.0,3.0,1.8,2332.89770615861,0.0,1330.0,900.0,0.0,77553.0,1,1,3,120.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3382.476335455898,0.04179227709710231,0.04361502888935177,43085.0,10,5,10,10_1,10_2,10_0_0 +2077,2,69.0,2,0.0,4,211,2,0,71,6.0,0.0,0.0,394.3574211817897,3273.2455927799624,0.0,27804.3458467513,0,50,1,12640,201702077,,,360.0,,1.0,0.0,9.0,1.0,3.0,2.0,2216.5625764529846,0.0,293.0,0.0,0.0,42927.0,0,5,1,183.0,1,3.0,5,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3667.603013961752,0.13190754546704359,0.08543813949173601,21463.5,6,3,6,6_1,6_1,6_0_1 +2078,2,39.0,3,0.0,9,112,5,54,64,8.0,0.0,346.98157989085996,686.4241802140366,0.0,88.46609710216114,28734.840000000004,50,43,1,12641,201702078,,,510.0,,2.0,0.0,4.0,2.0,4.0,2.1,1235.7593190065213,0.0,510.0,50.0,0.0,57716.0,1,1,2,92.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1121.871857207058,0.039042216946642394,0.019437796403199422,27483.809523809523,8,4,8,8_1,8_1,8_0_0 +2079,2,77.0,2,0.0,3,111,2,74,75,9.0,1208.8794789638282,0.0,816.9793674312161,0.0,178.70151614636552,29866.330875301628,31,31,1,12642,201702079,,,218.0,,0.0,0.0,5.0,0.0,2.0,1.5,2482.0541846235847,0.0,607.0,101.0,0.0,49421.0,5,5,1,123.0,6,4.0,3,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2204.5603625414096,0.07381423489031594,0.04460776517151433,32947.333333333336,9,5,9,9_1,9_2,9_0_1 +2080,2,29.0,3,0.0,7,111,6,0,52,4.0,0.0,0.0,734.8776517585568,44.23304855108057,0.0,25598.96,0,43,2,12643,201702080,,,187.0,,1.0,0.0,2.0,0.0,1.0,1.0,3041.1110128318237,0.0,546.0,0.0,0.0,17396.0,0,1,3,50.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,779.1107003096374,0.030435248162801826,0.04478677283913758,17396.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +2081,2,35.0,2,0.0,99,111,2,55,47,7.0,0.0,0.0,323.0231436301349,0.0,1698.549064361494,25197.85087530163,31,31,2,12645,201702081,,,,460.0,2.0,0.0,3.0,3.0,5.0,2.4,4359.290282947197,0.0,240.0,960.0,0.0,58140.0,1,1,3,76.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2021.5722079916288,0.08022796142400894,0.03477076381134552,24225.0,7,4,7,7_0,7_4,7_0_0 +2082,2,37.0,2,0.0,4,111,2,52,47,9.0,0.0,0.0,1017.5229024349248,0.0,2477.050718860512,27726.920000000002,31,31,1,12646,201702082,,,412.0,,2.0,0.0,5.0,1.0,3.0,1.8,2841.3685399603983,0.0,756.0,1400.0,0.0,59604.0,1,1,2,180.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3494.573621295437,0.12603540607090283,0.0586298507028964,33113.333333333336,9,5,9,9_1,9_2,9_0_1 +2083,2,41.0,2,0.0,9,111,6,0,54,9.0,0.0,0.0,1702.6011528838358,0.0,0.0,56889.28,0,31,1,12647,201702083,,,140.0,,1.0,0.0,3.0,1.0,2.0,1.3,1349.7785592280663,0.0,1265.0,0.0,0.0,51380.0,0,1,2,78.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1702.6011528838358,0.02992833013326651,0.03313742998995398,39523.07692307692,9,5,9,9_1,9_3,9_0_0 +2084,1,37.0,2,330.0,4,221,4,0,37,1.0,0.0,0.0,1203.2612100222523,311.40066179960724,0.0,10101.22,0,30,2,12649,201702084,,,,20.0,1.0,0.0,3.0,1.0,2.0,1.3,1395.3728440426528,0.0,894.0,0.0,0.0,12595.0,0,4,3,75.0,1,2.0,2,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1514.6618718218594,0.14994840938241713,0.12025898148645173,9688.461538461539,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +2085,2,54.0,3,0.0,1,111,2,74,37,8.0,0.0,0.0,2883.6976836793565,0.0,859.1085434122666,67470.50583121328,41,42,1,1265,201702085,,,795.0,,1.0,0.0,5.0,1.0,3.0,2.0,1738.2117605494836,828.0901362156694,1800.0,0.0,0.0,63845.0,5,1,2,130.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3742.806227091623,0.055473220201650277,0.058623325665151896,31922.5,9,5,9,9_1,9_4,9_1_0 +2086,2,60.0,3,0.0,7,120,2,37,33,10.0,2379.684013708323,0.0,2031.4925634598671,0.0,1691.3699448428997,28052.404320054287,20,20,1,12650,201702086,,,273.0,,2.0,3.0,7.0,0.0,2.0,1.5,1504.8257831102644,1630.302455674599,835.0,0.0,0.0,87422.0,1,1,1,220.0,0,1.0,3,5,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,6102.54652201109,0.21754094416956843,0.06980561554312519,58281.333333333336,10,5,10,10_1,10_1,10_0_0 +2087,2,47.0,1,0.0,9,111,2,0,33,10.0,0.0,0.0,363.4010365839017,0.0,751.9618253683698,26570.420000000002,0,20,2,12651,201702087,,,,660.0,1.0,0.0,3.0,0.0,1.0,1.0,2684.932735170816,0.0,270.0,425.0,0.0,58275.0,0,1,3,68.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1115.3628619522715,0.04197761503025814,0.01913964585074683,58275.0,10,5,10,10_0,10_2,10_0_0 +2088,2,62.0,1,0.0,5,111,1,0,46,9.0,0.0,0.0,211.31097312471323,0.0,1374.7631489675841,20172.60616274542,0,31,2,12653,201702088,777.0,777.0,46.0,,1.0,0.0,2.0,0.0,1.0,1.0,2159.9968061216837,0.0,157.0,777.0,0.0,35381.0,0,1,1,40.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1586.0741220922973,0.07862514685987596,0.044828414179709376,35381.0,9,5,9,9_0,9_2,9_0_0 +2089,2,40.0,2,0.0,9,112,5,47,54,9.0,0.0,0.0,942.1508355878933,61.9262679715128,0.0,81374.78,42,30,1,12654,201702089,,,223.0,,2.0,0.0,4.0,2.0,4.0,2.1,2963.121894495673,0.0,700.0,0.0,0.0,76521.0,1,1,2,100.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1004.0771035594062,0.012338922496127254,0.013121588891407668,36438.57142857143,9,5,9,9_1,9_0,9_0_0 +2090,1,28.0,3,300.0,1,111,4,0,52,3.0,0.0,0.0,1345.929765125562,67.23423379764247,0.0,20042.56,0,50,2,12655,201702090,,,,170.0,1.0,0.0,3.0,1.0,2.0,1.3,3989.089637356398,0.0,1000.0,0.0,0.0,20410.0,0,1,3,58.0,4,3.0,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1413.1639989232044,0.07050815858469199,0.06923880445483609,15700.0,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +2091,2,48.0,5,0.0,99,111,2,55,67,3.0,0.0,0.0,70.70493773436992,0.0,131.75713638127658,25488.559999999998,50,50,2,12657,201702091,,,,580.0,2.0,2.0,5.0,2.0,4.0,2.1,966.749107315063,127.0,0.0,0.0,0.0,30130.0,1,1,3,105.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,202.4620741156465,0.007943252742235988,0.006719617461521623,14347.619047619048,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +2092,2,33.0,3,0.0,2,300,2,67,21,1.0,2538.3296146222115,0.0,471.07541779394666,113.23660429076627,0.0,37620.479999999996,50,71,1,12658,201702092,,,750.0,,2.0,0.0,4.0,2.0,4.0,2.1,3647.8041711924957,0.0,350.0,0.0,0.0,17394.0,4,1,3,90.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3122.641636706924,0.08300376913603773,0.17952406788012673,8282.857142857143,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +2093,1,30.0,4,349.0,9,111,1,0,85,2.0,0.0,0.0,158.81971228481632,0.0,0.0,9100.013696501073,0,50,2,12659,201702093,,,,,0.0,0.0,2.0,1.0,2.0,1.3,1439.6482159957711,0.0,118.0,0.0,0.0,14290.0,0,4,3,60.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,158.81971228481632,0.017452689367476668,0.01111404564624327,10992.307692307691,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +2094,2,54.0,2,0.0,9,112,4,74,47,7.0,0.0,0.0,1951.598159432065,0.0,0.0,64618.614436090225,50,42,1,1266,201702094,,,310.0,,1.0,2.0,5.0,0.0,2.0,1.5,2218.9395559395916,0.0,1450.0,0.0,0.0,39006.0,7,1,1,110.0,7,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1951.598159432065,0.030201795201942234,0.05003328101912693,26004.0,7,4,7,7_1,7_0,7_0_0 +2095,2,59.0,4,0.0,1,111,2,0,37,10.0,0.0,0.0,511.45331074771354,0.0,1518.0782262730852,26417.5,0,41,1,12660,201702095,,,214.0,,1.0,2.0,6.0,0.0,1.0,1.0,1467.665742539019,0.0,380.0,858.0,0.0,58676.0,0,1,2,98.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2029.5315370207986,0.07682526874309828,0.03458878480163608,58676.0,10,5,10,10_1,10_2,10_1_0 +2096,2,60.0,4,0.0,8,112,1,52,46,4.0,0.0,0.0,1091.5490395168308,0.0,2477.050718860512,50600.84,41,44,1,12661,201702096,,,,,3.0,2.0,6.0,2.0,4.0,2.5,2009.1564806174297,0.0,811.0,1400.0,0.0,41503.0,1,1,3,110.0,7,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3568.599758377343,0.07052451616173452,0.08598413990259361,16601.2,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2097,2,50.0,2,0.0,6,221,2,75,37,10.0,0.0,0.0,3387.7052188210396,0.0,0.0,45581.90238259149,31,60,1,12663,201702097,,,975.0,,1.0,3.0,4.0,0.0,2.0,1.5,1163.6937237915886,0.0,2517.0,0.0,0.0,58162.0,6,1,2,110.0,1,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3387.7052188210396,0.07432127756288781,0.05824602350024139,38774.666666666664,9,5,9,9_1,9_1,9_0_0 +2098,2,56.0,3,0.0,9,112,6,0,37,5.0,0.0,138.792631956344,1480.522741638118,0.0,0.0,44869.72,0,41,1,12665,201702098,,,300.0,,1.0,1.0,5.0,0.0,1.0,1.0,2593.5852769066973,0.0,1100.0,0.0,0.0,20445.0,0,4,1,89.0,7,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1619.315373594462,0.03608926852216733,0.07920349100486486,20445.0,5,3,5,5_1,5_0,5_0_0 +2099,2,76.0,1,0.0,4,112,2,77,74,9.0,0.0,0.0,1084.5697927424987,0.0,3106.4931256448062,25474.5186456342,71,70,1,12666,201702099,,,323.0,,0.0,2.0,4.0,0.0,2.0,1.5,1632.4976500889784,497.56801579966833,600.0,1464.0,0.0,53550.0,5,5,1,100.0,10,3.0,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4191.062918387305,0.1645198080751789,0.0782644802686705,35700.0,9,5,9,9_1,9_1,9_0_1 +2100,2,64.0,3,0.0,6,111,4,77,77,4.0,0.0,0.0,1520.900634591885,187.54812585658163,0.0,31573.019999999997,50,70,1,12668,201702100,,,313.0,,0.0,2.0,4.0,0.0,2.0,1.5,1927.3981694498818,0.0,1130.0,0.0,0.0,27285.0,5,5,1,90.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1708.4487604484666,0.054111034055293626,0.06261494449142263,18190.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2101,2,47.0,3,0.0,1,300,4,56,47,2.0,0.0,1110.341055650752,2059.2725406421096,2329.514039401296,0.0,72894.844,50,41,1,12669,201702101,,,500.0,,2.0,3.0,8.0,5.0,7.0,3.6,295.8200104033064,0.0,1530.0,0.0,0.0,46180.0,1,1,2,150.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5499.127635694158,0.07543918518700936,0.11908028661096054,12827.777777777777,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2102,2,57.0,3,0.0,2,111,2,78,54,7.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,42384.79150728986,50,50,1,1267,201702102,,,1000.0,,2.0,0.0,4.0,2.0,4.0,2.5,3935.3007799026354,800.0,0.0,0.0,0.0,65179.0,5,1,1,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1275.3516479725763,0.03008984125245079,0.019566910323456577,26071.6,7,4,7,7_1,7_4,7_0_1 +2103,1,21.0,2,116.0,2,111,2,0,84,1.0,0.0,0.0,710.3897681028034,0.0,1323.796110413456,34512.68919469318,0,41,2,12671,201702103,,,,484.0,0.0,0.0,4.0,0.0,2.0,1.5,1647.0173240687166,1276.0,0.0,0.0,0.0,11062.0,0,3,3,89.0,8,7.0,5,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2034.1858785162594,0.058940231143420854,0.18388952074817025,7374.666666666667,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2104,1,32.0,3,120.0,9,111,1,0,55,2.0,0.0,0.0,3391.743008116416,0.0,0.0,21540.25536887669,0,50,2,12672,201702104,,,,260.0,1.0,0.0,2.0,1.0,2.0,1.3,3881.144953977651,0.0,2520.0,0.0,0.0,14821.0,0,1,3,30.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,3391.743008116416,0.15746066841051073,0.22884710937969208,11400.76923076923,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2105,2,33.0,2,0.0,1,111,2,0,55,2.0,0.0,0.0,1098.2786883424585,0.0,2505.3598699332038,19876.659999999996,0,60,1,12673,201702105,,,750.0,,1.0,0.0,5.0,4.0,5.0,2.4,458.6622343004108,0.0,816.0,1416.0,0.0,26214.0,0,1,3,94.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3603.638558275662,0.181300005044895,0.13746999917126962,10922.5,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +2106,1,35.0,4,332.0,99,111,1,0,56,3.0,0.0,0.0,3230.231436301349,0.0,318.4779495677801,12853.950875301629,0,60,2,12674,201702106,,,540.0,,1.0,0.0,3.0,1.0,2.0,1.3,1383.8685602815474,0.0,2400.0,180.0,0.0,19064.0,0,1,3,61.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,3548.7093858691287,0.2760792709024458,0.186147156203794,14664.615384615385,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2107,2,38.0,4,0.0,1,120,2,52,46,6.0,0.0,1318.5300035852679,1162.8833170684854,0.0,0.0,37815.06,42,43,1,12676,201702107,,,456.0,,2.0,0.0,5.0,2.0,4.0,2.1,2545.146579059531,0.0,864.0,0.0,0.0,46135.0,1,1,2,52.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2481.4133206537535,0.06561971131749503,0.05378591786395911,21969.04761904762,6,3,6,6_1,6_0,6_1_0 +2108,1,34.0,4,408.0,1,111,2,0,85,2.0,0.0,0.0,577.403869238866,0.0,1415.4575536345783,12663.307849749777,0,31,2,12677,201702108,,,,128.0,0.0,0.0,7.0,2.0,3.0,1.6,362.99426935442904,0.0,429.0,800.0,0.0,20156.0,0,8,3,150.0,6,4.0,2,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1992.8614228734443,0.15737289549608657,0.09887187055335604,12597.5,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +2109,2,75.0,1,0.0,1,400,6,0,75,6.0,0.0,541.2912646297416,1064.6304442143196,88.46609710216114,0.0,23651.650875301624,0,41,1,12678,201702109,,,329.0,,0.0,0.0,5.0,0.0,1.0,1.0,3104.6990993204545,0.0,791.0,0.0,0.0,21411.0,0,5,5,122.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1694.3878059462222,0.07163930394878257,0.07913632272879464,21411.0,6,3,6,6_1,6_0,6_1_0 +2110,2,72.0,1,0.0,8,112,2,74,74,10.0,0.0,0.0,1231.5257350898892,0.0,2335.504963497054,47983.91521126761,41,30,1,12679,201702110,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2157.7579198798085,0.0,915.0,1320.0,0.0,66050.0,5,5,1,150.0,6,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3567.0306985869433,0.07433805021707214,0.054005006791626696,44033.333333333336,10,5,10,10_1,10_0,10_0_0 +2111,2,75.0,3,0.0,3,111,6,0,78,4.0,0.0,0.0,523.3278855929742,0.0,975.210300774803,25458.666254315074,0,71,2,12680,201702111,,,784.0,514.0,2.0,1.0,3.0,2.0,3.0,2.0,4219.146962525339,940.0,0.0,0.0,0.0,33755.0,0,5,3,90.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1498.5381863677771,0.05886161401380502,0.04439455447690052,16877.5,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +2112,1,19.0,3,150.0,99,111,2,0,84,1.0,0.0,0.0,671.4185425799222,0.0,1251.1740667387367,7607.4458467512995,0,41,2,12681,201702112,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2450.285522133195,1206.0,0.0,0.0,0.0,10302.0,0,3,3,32.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1922.592609318659,0.2527251127445997,0.1866232391107221,10302.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2113,2,47.0,2,0.0,4,400,2,55,48,8.0,2776.298015993044,0.0,847.935752029104,0.0,0.0,48865.100000000006,50,31,1,12682,201702113,,,490.0,,2.0,0.0,5.0,2.0,4.0,2.3,2068.0975552943178,0.0,630.0,0.0,0.0,66514.0,1,1,1,90.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3624.233768022148,0.07416814389046882,0.05448828469227754,28919.13043478261,8,4,8,8_1,8_1,8_0_1 +2114,2,52.0,3,0.0,8,111,2,52,54,3.0,0.0,0.0,617.781762192633,0.0,1309.298237111985,20018.13331690806,50,50,1,12683,201702114,,,,,2.0,1.0,4.0,1.0,3.0,2.0,1762.165885504764,0.0,459.0,740.0,0.0,30868.0,1,1,3,89.0,4,3.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1927.079999304618,0.096266718219772,0.06242970063835098,15434.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2115,1,42.0,5,390.0,5,111,2,0,68,2.0,0.0,0.0,538.3719060502248,0.0,1592.3897478389006,4373.88,0,71,2,12684,201702115,,,400.0,,1.0,3.0,3.0,2.0,3.0,1.6,471.1565052908861,0.0,400.0,900.0,0.0,19630.0,0,4,3,49.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2130.7616538891252,0.487155947097114,0.10854618715685814,12268.75,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2116,2,56.0,3,0.0,1,221,2,31,34,7.0,2566.8858227867113,0.0,819.6712269614673,212.31863304518674,0.0,77559.65400793945,10,20,1,12685,201702116,,,142.0,,2.0,0.0,8.0,3.0,5.0,2.8,1512.8787512245883,0.0,609.0,0.0,0.0,70651.0,1,1,2,258.0,3,4.0,4,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3598.8756827933653,0.04640138908336239,0.050938779108482046,25232.5,7,4,7,7_1,7_2,7_1_0 +2117,2,49.0,3,0.0,1,111,6,0,37,3.0,0.0,0.0,1080.7816013958263,0.0,1926.7915948850698,48522.000000000015,0,60,1,12687,201702117,,,400.0,,2.0,0.0,7.0,5.0,6.0,3.1,520.4935803144494,0.0,803.0,1089.0,0.0,44950.0,0,4,2,130.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3007.573196280896,0.0619837021615122,0.06690930358800658,14500.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +2118,2,46.0,4,0.0,4,111,1,0,42,4.0,1054.9932460773566,0.0,578.7497990039916,0.0,884.6609710216114,53477.405980622454,0,30,8,12688,201702118,665.0,665.0,,,1.0,0.0,4.0,2.0,3.0,2.0,1153.2414690446553,0.0,430.0,500.0,0.0,36152.0,0,1,2,62.0,10,8.0,2,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2518.4040161029598,0.04709286043185236,0.0696615406091768,18076.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +2119,2,61.0,2,0.0,6,112,2,48,75,9.0,0.0,513.5327382384728,965.031641595028,0.0,1569.3885625923388,38514.880000000005,42,41,1,12689,201702119,,,324.0,,1.0,2.0,6.0,0.0,2.0,1.5,1848.213775127059,0.0,717.0,887.0,0.0,53734.0,1,5,1,136.0,8,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3047.95294242584,0.07913702294868476,0.056722986236383666,35822.666666666664,9,5,9,9_1,9_0,9_0_0 +2120,2,46.0,5,0.0,4,111,1,0,63,1.0,0.0,0.0,874.8543473316153,0.0,1096.9796040667982,10052.587533755657,0,50,2,1269,201702120,620.0,620.0,,333.0,1.0,0.0,2.0,0.0,1.0,1.0,2969.606548967073,0.0,650.0,620.0,0.0,10710.0,0,4,3,60.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1971.8339513984133,0.19615188077469384,0.18411148005587427,10710.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +2121,2,70.0,3,0.0,4,221,2,0,78,6.0,1253.300247219717,0.0,938.1130462925166,247.7050718860512,0.0,21058.545846751298,0,70,1,12690,201702121,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3965.9346165382067,0.0,697.0,0.0,0.0,22610.0,0,5,5,100.0,1,2.0,1,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2439.1183653982844,0.11582558373918146,0.10787785782389582,22610.0,6,3,6,6_1,6_1,6_0_1 +2122,2,75.0,3,0.0,4,221,4,72,74,8.0,0.0,0.0,235.53770889697333,297.2460862632615,0.0,29500.240000000005,31,12,1,12691,201702122,,,75.0,,0.0,3.0,4.0,0.0,2.0,1.5,2146.191357497023,0.0,175.0,0.0,0.0,43679.0,5,5,1,90.0,1,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,532.7837951602348,0.018060320701127678,0.012197710459493917,29119.333333333332,8,4,8,8_1,8_1,8_0_1 +2123,2,34.0,2,0.0,1,111,4,0,38,9.0,0.0,0.0,422.62194624942646,0.0,0.0,34875.94031599412,0,12,2,12692,201702123,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3416.989846681299,0.0,314.0,0.0,0.0,37503.0,0,1,2,38.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,422.62194624942646,0.012117865279624069,0.011269017045287748,37503.0,9,5,9,9_0,9_4,9_1_0 +2124,2,54.0,4,0.0,3,111,2,67,52,7.0,0.0,0.0,605.6683943065029,0.0,1999.333794508842,27776.69703804705,50,60,1,12694,201702124,,,450.0,,3.0,2.0,4.0,1.0,3.0,2.0,1395.804774961724,0.0,450.0,1130.0,0.0,52233.0,1,1,2,100.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2605.002188815345,0.09378372760617114,0.049872727754778495,26116.5,7,4,7,7_1,7_3,7_0_1 +2125,2,79.0,1,0.0,3,111,2,77,74,10.0,2379.684013708323,0.0,1098.2786883424585,222.9345646974461,0.0,41363.44063198824,50,60,1,12695,201702125,,,420.0,,0.0,3.0,5.0,0.0,2.0,1.5,1487.4346500681083,0.0,816.0,0.0,0.0,73410.0,5,5,1,110.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3700.8972667482276,0.08947266499600989,0.05041407528604042,48940.0,10,5,10,10_1,10_4,10_0_1 +2126,2,64.0,3,0.0,3,221,6,0,65,6.0,0.0,0.0,2729.5455636746397,84.9274532180747,0.0,31690.38,0,50,2,12697,201702126,,,320.0,,1.0,5.0,3.0,0.0,2.0,1.5,2490.0298843582946,0.0,2028.0,0.0,0.0,31007.0,0,1,3,82.0,1,3.0,5,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2814.4730168927144,0.08881158941270867,0.09076895594197164,20671.333333333332,5,3,5,5_0,5_1,5_0_1 +2127,1,22.0,2,150.0,3,111,2,0,84,1.0,0.0,0.0,671.4185425799222,0.0,1251.1740667387367,20046.619999999995,0,41,2,12698,201702127,,,,530.0,0.0,0.0,3.0,0.0,1.0,1.0,2052.59831740729,1206.0,0.0,0.0,0.0,4203.0,0,3,3,60.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1922.592609318659,0.09590607340881702,0.45743340692806544,4203.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2128,2,74.0,3,0.0,99,112,5,0,78,3.0,0.0,582.9290542166448,759.1043875308169,0.0,0.0,18764.625846751303,0,70,1,12699,201702128,,,160.0,,0.0,2.0,3.0,0.0,1.0,1.0,2408.2253168706993,0.0,564.0,0.0,0.0,14560.0,0,5,1,100.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1342.0334417474617,0.07151932858708218,0.09217262649364434,14560.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +2129,1,23.0,4,186.0,99,112,4,55,85,1.0,0.0,0.0,807.5578590753372,0.0,0.0,11595.14,50,50,2,127,201702129,,,350.0,,1.0,0.0,3.0,0.0,2.0,1.5,6633.094411014925,0.0,600.0,0.0,0.0,13111.0,3,4,3,60.0,9,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,807.5578590753372,0.06964623618820792,0.06159391801352583,8740.666666666666,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +2130,2,76.0,3,0.0,9,112,2,71,71,2.0,0.0,0.0,1262.4821196877772,339.7098128722988,0.0,13149.210875301627,70,70,1,1270,201702130,,,176.0,417.0,0.0,2.0,3.0,0.0,2.0,1.5,2053.7745417806136,0.0,938.0,0.0,0.0,18391.0,5,5,3,75.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1602.191932560076,0.12184700266458566,0.08711826070143419,12260.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2131,2,76.0,3,0.0,1,300,2,0,78,3.0,0.0,0.0,1378.2320794885754,164.54694061001973,0.0,16721.660000000003,0,70,1,12700,201702131,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2494.2707741549234,0.0,1024.0,0.0,0.0,14740.0,0,5,1,86.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1542.779020098595,0.09226231247965781,0.1046661479035682,14740.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2132,2,67.0,2,0.0,4,111,5,0,78,3.0,0.0,69.396315978172,672.964882562781,0.0,0.0,18807.519999999997,0,50,1,12701,201702132,,,120.0,,0.0,2.0,5.0,0.0,1.0,1.0,1802.4773485605963,0.0,500.0,0.0,0.0,14671.0,0,5,1,145.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,742.361198540953,0.039471509191055125,0.05060058609099263,14671.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +2133,1,34.0,4,263.0,6,111,1,0,85,3.0,0.0,0.0,395.70335094691524,0.0,0.0,11167.100000000002,0,60,2,12702,201702133,,,,262.0,0.0,0.0,3.0,1.0,2.0,1.3,3042.412203038395,0.0,294.0,0.0,0.0,18986.0,0,4,3,66.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,395.70335094691524,0.035434745900629096,0.020841849307221914,14604.615384615385,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2134,1,83.0,3,64.0,4,112,1,0,72,2.0,0.0,0.0,500.68587262670906,212.31863304518674,0.0,12720.6458467513,0,70,2,12703,201702134,,,,348.0,0.0,2.0,4.0,1.0,2.0,1.5,4977.945554577572,0.0,372.0,0.0,0.0,15897.0,0,5,3,54.0,8,1.0,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,713.0045056718958,0.056050967400683396,0.04485151322085273,10598.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +2135,2,66.0,3,0.0,6,120,5,72,72,7.0,0.0,1179.737371628924,1601.6564204994188,0.0,0.0,40518.94,50,50,1,12704,201702135,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1523.8145086885427,0.0,1190.0,0.0,0.0,34875.0,6,5,1,100.0,0,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2781.3937921283427,0.06864428813113924,0.07975322701443277,23250.0,6,3,6,6_1,6_1,6_0_0 +2136,1,38.0,3,274.0,1,112,4,0,68,2.0,0.0,0.0,616.4358324275074,159.23897478389006,0.0,12298.039999999997,0,71,2,12706,201702136,,,215.0,,1.0,0.0,3.0,1.0,2.0,1.5,555.6370462094688,0.0,458.0,0.0,0.0,16678.0,0,1,3,60.0,4,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,775.6748072113975,0.06307304311999291,0.0465088624062476,11118.666666666666,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +2137,2,72.0,1,0.0,3,300,2,75,75,7.0,982.0162696569681,138.792631956344,1162.8833170684854,0.0,0.0,36344.52,50,41,1,12709,201702137,,,,,0.0,4.0,8.0,0.0,2.0,1.5,1510.0965626796292,0.0,864.0,0.0,0.0,36755.0,5,5,1,160.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2283.6922186817974,0.0628345681462239,0.06213283141563862,24503.333333333332,7,4,7,7_1,7_1,7_0_1 +2138,2,79.0,3,0.0,8,111,6,72,77,6.0,0.0,0.0,2288.080600713455,70.77287768172891,0.0,27314.159999999996,50,60,1,1271,201702138,,,600.0,,0.0,1.0,5.0,0.0,2.0,1.5,1797.8921870234851,0.0,1700.0,0.0,0.0,34914.0,5,5,1,110.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2358.853478395184,0.0863600959500561,0.06756182271854225,23276.0,6,3,6,6_1,6_3,6_0_0 +2139,2,32.0,4,0.0,99,112,4,21,43,6.0,0.0,0.0,1938.1388617808093,0.0,0.0,33885.32,41,30,1,12710,201702139,,,350.0,649.0,2.0,0.0,3.0,1.0,3.0,1.8,1248.9146311890863,0.0,1440.0,0.0,0.0,43485.0,1,1,3,70.0,8,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1938.1388617808093,0.05719700630777013,0.044570285426717475,24158.333333333332,7,4,7,7_1,7_1,7_0_0 +2140,2,36.0,3,0.0,1,112,4,0,21,1.0,0.0,0.0,1441.490778449477,38.925082724950904,0.0,13121.0,0,42,1,12711,201702140,,,242.0,,1.0,0.0,5.0,0.0,1.0,1.0,2685.6825381414087,0.0,1071.0,0.0,0.0,8842.0,0,1,1,110.0,7,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1480.4158611744278,0.11282797509141283,0.16742997751350688,8842.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +2141,2,87.0,3,0.0,1,400,4,0,86,5.0,0.0,0.0,3095.6384597887923,138.0071114793714,0.0,12310.231191295747,0,30,1,12712,201702141,,,145.0,,0.0,3.0,2.0,0.0,1.0,1.0,1661.2083609910876,0.0,2300.0,0.0,0.0,19018.0,0,5,1,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3233.6455712681636,0.26267951600735107,0.17003079037060487,19018.0,5,3,5,5_1,5_0,5_1_0 +2142,2,28.0,2,0.0,1,120,5,47,42,9.0,0.0,0.0,874.8543473316153,0.0,0.0,54460.44,30,30,1,12713,201702142,,,330.0,,2.0,0.0,4.0,0.0,2.0,1.5,2419.9948388354496,0.0,650.0,0.0,0.0,47882.0,1,1,2,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,874.8543473316153,0.01606403377078142,0.018271048563794648,31921.333333333332,9,5,9,9_1,9_0,9_1_0 +2143,1,29.0,3,279.0,99,112,4,85,63,2.0,0.0,0.0,1938.1388617808093,106.15931652259337,0.0,42086.35999999999,44,31,1,12715,201702143,,,267.0,369.0,1.0,0.0,3.0,2.0,4.0,2.1,2905.7295997601905,0.0,1440.0,0.0,0.0,22838.0,8,1,3,70.0,8,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2044.2981783034027,0.048573888982164366,0.08951301244869965,10875.238095238095,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +2144,2,60.0,3,0.0,4,111,1,78,46,3.0,0.0,0.0,183.04644805707642,0.0,99.08202875442048,15878.160000000002,71,71,2,12716,201702144,,,,553.0,2.0,2.0,4.0,1.0,3.0,2.0,3801.098544572886,0.0,136.0,56.0,0.0,29220.0,5,1,3,75.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,282.1284768114969,0.017768335676898134,0.00965532090388422,14610.0,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +2145,2,94.0,3,0.0,99,111,2,0,86,1.0,0.0,0.0,395.70335094691524,0.0,0.0,3376.0,0,70,2,12717,201702145,,,,,0.0,2.0,1.0,0.0,1.0,1.0,3390.5124884802062,0.0,294.0,0.0,0.0,6650.0,0,5,3,15.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,395.70335094691524,0.117210708218873,0.059504263300288004,6650.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +2146,2,26.0,3,0.0,5,211,4,0,65,4.0,0.0,0.0,1615.1157181506744,0.0,0.0,25837.079999999998,0,50,1,1272,201702146,,,400.0,,1.0,0.0,4.0,0.0,1.0,1.0,2212.6939944145906,0.0,1200.0,0.0,0.0,18100.0,0,1,3,63.0,3,3.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.062511542254414,0.08923291260500964,18100.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2147,0,39.0,3,0.0,2,111,2,0,67,2.0,0.0,0.0,823.9630539123425,0.0,1535.4374948369239,16510.231191295745,0,50,1,12721,201702147,,,320.0,,1.0,0.0,4.0,0.0,1.0,1.0,2080.26523389094,1480.0,0.0,0.0,0.0,12528.0,0,4,5,100.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2359.4005487492664,0.14290536100991433,0.18833018428713813,12528.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +2148,2,42.0,2,0.0,8,300,5,46,12,10.0,0.0,416.377895869032,1386.3076580793288,0.0,0.0,65580.42681168899,31,44,1,12722,201702148,,,520.0,,2.0,0.0,6.0,3.0,5.0,2.6,1569.2289531835129,0.0,1030.0,0.0,0.0,130964.0,1,1,2,130.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1802.6855539483608,0.027488164404978407,0.013764741104031343,50370.76923076923,10,5,10,10_1,10_1,10_0_0 +2149,2,63.0,3,0.0,99,300,2,78,77,7.0,5255.928758277117,0.0,1413.22625338184,159.23897478389006,0.0,40008.200315994116,50,50,1,12724,201702149,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1341.7883574842451,0.0,1050.0,0.0,0.0,38240.0,5,5,1,141.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6828.393986442847,0.17067485996647175,0.1785667883484008,25493.333333333332,7,4,7,7_1,7_0,7_0_0 +2150,2,26.0,2,0.0,99,111,2,0,46,8.0,0.0,0.0,656.3867841639538,0.0,1223.1627070356305,27887.500000000004,0,41,2,12725,201702150,,,197.0,,1.0,0.0,2.0,0.0,1.0,1.0,3426.4339648132504,1179.0,0.0,0.0,0.0,28415.0,0,1,3,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1879.5494911995843,0.06739756131598687,0.06614638364242774,28415.0,8,4,8,8_0,8_4,8_0_0 +2151,2,56.0,1,0.0,1,211,2,75,37,10.0,0.0,0.0,3684.7722716886947,0.0,6614.1382483568095,72436.54265756575,20,12,1,12726,201702151,,,,,1.0,3.0,7.0,0.0,2.0,1.5,2706.9695948674507,1959.948448518148,1927.0,2589.0,0.0,84163.0,6,1,2,320.0,1,3.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,10298.910520045505,0.14217838320545273,0.12236862421783332,56108.666666666664,10,5,10,10_1,10_1,10_1_0 +2152,2,42.0,3,0.0,9,112,5,56,64,5.0,0.0,1110.341055650752,1372.8483604280732,132.69914565324171,0.0,27725.040000000005,50,50,1,12727,201702152,,,400.0,,2.0,0.0,5.0,3.0,5.0,2.6,3095.913610464819,0.0,1020.0,0.0,0.0,49210.0,1,1,2,80.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2615.888561732067,0.09435111948376149,0.053157662298964986,18926.923076923078,5,3,5,5_1,5_0,5_0_0 +2153,2,72.0,3,0.0,3,111,1,0,75,6.0,0.0,0.0,538.3719060502248,0.0,1574.6965284184685,17949.316974448146,0,71,8,12728,201702153,570.0,570.0,,313.0,0.0,2.0,3.0,0.0,1.0,1.0,1967.679126386676,0.0,400.0,890.0,0.0,24345.0,0,5,3,60.0,7,5.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2113.0684344686933,0.11772416953117293,0.0867968139030065,24345.0,7,4,7,7_0,7_2,7_0_1 +2154,2,69.0,2,0.0,6,111,2,0,74,6.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,36802.22,0,60,2,12729,201702154,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4498.994950379687,600.0,0.0,0.0,0.0,24019.0,0,5,1,75.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,956.5137359794323,0.025990653171994307,0.03982321228941389,24019.0,7,4,7,7_0,7_2,7_0_0 +2155,0,54.0,2,0.0,7,111,2,43,33,10.0,0.0,0.0,720.3501663333514,0.0,1342.3570990816663,68539.40711861193,31,20,1,1273,201702155,,,,,2.0,2.0,5.0,1.0,3.0,2.0,1841.8775849966255,1293.8908378369833,0.0,0.0,0.0,74192.0,1,1,5,112.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2062.707265415018,0.030095201463376655,0.02780228684244956,37096.0,9,5,9,9_1,9_3,9_0_0 +2156,2,79.0,3,0.0,3,221,2,0,78,4.0,2934.943616906932,0.0,586.825377594745,176.9321942043223,0.0,19211.95536887669,0,70,1,12730,201702156,,,2320.0,,0.0,5.0,6.0,0.0,1.0,1.0,4493.329097806238,0.0,436.0,0.0,0.0,17893.0,0,5,5,170.0,1,1.0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3698.701188706,0.19252080892806386,0.20671218849304196,17893.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +2157,2,34.0,3,0.0,5,112,2,0,42,9.0,0.0,0.0,336.4824412813905,0.0,1592.3897478389006,22249.879999999997,0,30,1,12731,201702157,,,350.0,,2.0,1.0,6.0,0.0,2.0,1.5,2755.840032187494,0.0,250.0,900.0,0.0,55640.0,0,1,1,100.0,10,3.0,5,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1928.872189120291,0.08669135245314992,0.03466700555572055,37093.333333333336,9,5,9,9_1,9_1,9_0_0 +2158,2,30.0,3,0.0,99,111,2,54,69,5.0,0.0,0.0,336.4824412813905,0.0,1680.8558449410618,37092.69286847026,30,50,1,12732,201702158,,,280.0,,2.0,0.0,3.0,1.0,3.0,1.8,1918.72212498157,0.0,250.0,950.0,0.0,34021.0,1,1,3,80.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2017.3382862224523,0.054386406869295856,0.05929685447877641,18900.555555555555,5,3,5,5_1,5_2,5_0_0 +2159,2,67.0,2,0.0,1,111,2,0,78,7.0,0.0,0.0,1103.5176866361887,0.0,2056.381562536862,11830.63243386745,0,70,1,12734,201702159,,,7.0,,0.0,3.0,6.0,0.0,1.0,1.0,1960.6997895056013,1982.135204323504,0.0,0.0,0.0,26210.0,0,5,1,86.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3159.8992491730505,0.2670947024038406,0.1205608259890519,26210.0,7,4,7,7_1,7_3,7_1_0 +2160,0,21.0,3,0.0,5,111,1,0,54,2.0,0.0,0.0,0.0,0.0,0.0,8924.6,0,41,2,12735,201702160,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2824.651720027512,0.0,0.0,0.0,0.0,10485.0,0,3,5,27.0,8,7.0,1,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,10485.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +2161,1,21.0,4,110.0,7,111,2,47,52,4.0,0.0,0.0,646.0462872602698,0.0,0.0,30317.99331690806,31,41,2,12736,201702161,,,,490.0,2.0,0.0,3.0,0.0,2.0,1.5,9688.330151410568,0.0,480.0,0.0,0.0,25560.0,1,1,3,62.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,646.0462872602698,0.021309005530388312,0.02527567634038614,17040.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +2162,2,38.0,2,0.0,4,111,3,0,33,6.0,0.0,0.0,605.6683943065029,0.0,1238.525359430256,34819.67999999999,0,31,2,12737,201702162,,,250.0,850.0,1.0,0.0,3.0,2.0,3.0,1.6,2516.022663246856,0.0,450.0,700.0,0.0,35417.0,0,1,3,97.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1844.193753736759,0.052964121259493464,0.05207086296797467,22135.625,6,3,6,6_0,6_3,6_0_1 +2163,2,24.0,4,0.0,4,111,5,55,56,7.0,0.0,624.566843803548,888.3136449828709,0.0,0.0,29054.904192209695,43,43,1,12738,201702163,,,420.0,,2.0,0.0,5.0,0.0,2.0,1.5,2789.550693162292,0.0,660.0,0.0,0.0,35395.0,1,1,3,90.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1512.880488786419,0.05206971183859756,0.042742774086351715,23596.666666666668,6,3,6,6_1,6_2,6_0_1 +2164,0,65.0,2,0.0,1,111,2,46,46,7.0,0.0,0.0,1615.1157181506744,0.0,2919.381204371318,66293.18,20,30,2,12739,201702164,,,,,2.0,6.0,3.0,0.0,2.0,1.5,2108.7937553785614,0.0,1200.0,1650.0,0.0,35680.0,1,1,5,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4534.496922521992,0.06840065482636362,0.12708791823211862,23786.666666666668,6,3,6,6_0,6_4,6_1_0 +2165,2,71.0,3,0.0,1,111,2,78,78,5.0,0.0,0.0,403.7789295376686,0.0,2919.381204371318,32125.68,50,70,1,1274,201702165,,,,435.0,0.0,3.0,3.0,0.0,2.0,1.5,1464.9343596288552,0.0,300.0,1650.0,0.0,29034.0,5,5,3,78.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3323.1601339089866,0.1034424838294158,0.11445753716019104,19356.0,5,3,5,5_1,5_3,5_1_0 +2166,0,34.0,2,0.0,6,112,2,62,52,8.0,0.0,0.0,1269.3484884595543,0.0,2365.403708262288,39312.34,42,42,1,12740,201702166,,,185.0,,2.0,0.0,4.0,0.0,2.0,1.5,1831.3925168951343,2280.0,0.0,0.0,0.0,41971.0,1,1,5,80.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3634.7521967218427,0.09245830181367588,0.08660151525390966,27980.666666666668,8,4,8,8_1,8_0,8_0_0 +2167,2,42.0,1,0.0,99,111,2,54,31,10.0,0.0,0.0,1130.581002705472,0.0,2370.891402337919,41086.08,31,20,1,12741,201702167,,,280.0,,2.0,0.0,9.0,2.0,4.0,2.1,2050.0608860936677,0.0,840.0,1340.0,0.0,121350.0,1,1,1,180.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3501.4724050433906,0.08522283958565506,0.028854325546299058,57785.71428571428,10,5,10,10_1,10_2,10_0_0 +2168,2,71.0,2,0.0,1,112,1,74,74,9.0,0.0,0.0,2011.5052503774734,0.0,4065.743142437009,36740.74110902402,30,12,1,12742,201702168,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2130.7241901499915,1872.420135241882,720.0,1200.0,0.0,53549.0,5,5,1,90.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6077.248392814482,0.16540897677542568,0.1134894842632819,35699.333333333336,9,5,9,9_1,9_0,9_1_0 +2169,2,30.0,1,0.0,9,111,2,34,34,10.0,0.0,0.0,403.7789295376686,0.0,1415.4575536345783,69023.65999999999,10,10,1,12743,201702169,,,188.0,700.0,2.0,0.0,2.0,0.0,2.0,1.5,774.1983354425284,0.0,300.0,800.0,0.0,63501.0,1,1,3,80.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1819.2364831722468,0.02635670845579975,0.028648942271338195,42334.0,10,5,10,10_1,10_3,10_0_0 +2170,2,21.0,2,0.0,3,111,4,46,37,9.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,37435.18,30,30,2,12745,201702170,,,,680.0,2.0,0.0,2.0,0.0,2.0,1.5,3073.236848848018,720.0,0.0,0.0,0.0,48574.0,2,1,3,62.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1147.8164831753188,0.03066143887047742,0.02363026481606042,32382.666666666668,9,5,9,9_0,9_3,9_0_1 +2171,2,70.0,4,0.0,1,111,6,0,75,4.0,951.8736054833294,0.0,1615.1157181506744,159.23897478389006,0.0,21200.64,0,60,1,12747,201702171,,,150.0,,0.0,1.0,3.0,0.0,1.0,1.0,1633.535404286285,0.0,1200.0,0.0,0.0,16715.0,0,5,1,110.0,7,5.0,1,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2726.228298417894,0.1285917924372988,0.1631007058580852,16715.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +2172,2,46.0,3,0.0,5,111,2,52,47,7.0,0.0,0.0,2504.174845611354,0.0,3475.7376255243594,41295.30000000001,41,20,1,12748,201702172,,,330.0,,2.0,0.0,5.0,2.0,4.0,2.5,2652.490262166705,1800.0,1116.0,909.0,0.0,66239.0,1,1,2,100.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5979.9124711357135,0.14480854894226974,0.09027781927770216,26495.6,7,4,7,7_1,7_2,7_0_0 +2173,2,72.0,2,0.0,5,112,2,75,74,9.0,0.0,0.0,1951.598159432065,0.0,0.0,50918.46,41,44,2,12749,201702173,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1677.2760752063357,0.0,1450.0,0.0,0.0,54200.0,5,5,1,100.0,9,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1951.598159432065,0.03832791014166699,0.03600734611498275,36133.333333333336,9,5,9,9_0,9_1,9_0_0 +2174,2,77.0,2,0.0,5,400,2,77,75,8.0,0.0,277.585263912688,3335.2139579811424,116.7752481748527,0.0,31068.451693502597,50,50,1,1275,201702174,,,467.0,,0.0,2.0,4.0,0.0,2.0,1.5,2011.9575552262231,0.0,2478.0,0.0,0.0,44097.0,5,5,1,79.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3729.574470068683,0.12004378289789883,0.08457660317184124,29398.0,8,4,8,8_1,8_0,8_0_0 +2175,2,36.0,2,0.0,2,111,4,0,33,8.0,0.0,0.0,487.22657497545345,0.0,0.0,20379.14,0,20,8,12751,201702175,,,,692.0,1.0,0.0,1.0,0.0,1.0,1.0,3424.95431618561,0.0,362.0,0.0,0.0,30164.0,0,1,3,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,487.22657497545345,0.02390810284317461,0.016152585034327458,30164.0,8,4,8,8_0,8_4,8_0_1 +2176,2,61.0,2,0.0,3,111,3,0,77,5.0,0.0,0.0,269.1859530251124,0.0,0.0,18580.379999999997,0,50,2,12752,201702176,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3005.1284669288198,0.0,200.0,0.0,0.0,20966.0,0,5,1,70.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,269.1859530251124,0.014487645194829838,0.012839165936521625,20966.0,5,3,5,5_0,5_2,5_0_1 +2177,2,49.0,1,0.0,7,111,2,85,22,8.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,129890.07087530165,30,60,1,12753,201702177,,,720.0,,1.0,1.0,5.0,3.0,5.0,3.0,487.48403299704165,1200.0,0.0,0.0,0.0,85904.0,4,1,1,150.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1913.0274719588647,0.01472805010473378,0.022269364313173598,28634.666666666668,8,4,8,8_1,8_2,8_0_0 +2178,2,68.0,2,0.0,5,111,4,75,75,7.0,0.0,208.188947934516,1806.237744798504,300.7847301473479,0.0,36970.44,33,33,1,12754,201702178,,,248.0,,0.0,2.0,5.0,0.0,2.0,1.5,1422.6405260185481,0.0,1342.0,0.0,0.0,39064.0,5,5,1,87.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2315.211422880368,0.06262331264870984,0.059267136567693224,26042.666666666668,7,4,7,7_1,7_2,7_0_0 +2179,2,74.0,4,0.0,3,111,1,0,86,4.0,0.0,0.0,888.3136449828709,0.0,725.4219962377214,15393.039999999999,0,71,2,12756,201702179,,,,431.0,0.0,6.0,5.0,0.0,1.0,1.0,2732.183669844476,0.0,660.0,410.0,0.0,17470.0,0,5,4,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1613.7356412205922,0.10483540880947444,0.09237181689871736,17470.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +2180,2,58.0,2,0.0,8,211,2,42,42,9.0,0.0,0.0,1087.511250221454,0.0,1769.3219420432229,62131.079999999994,20,41,1,12757,201702180,,,661.0,,2.0,2.0,5.0,1.0,3.0,2.0,1231.0907173469086,0.0,808.0,1000.0,0.0,65403.0,1,1,1,120.0,4,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2856.8331922646767,0.045980742524750526,0.04368046102265457,32701.5,9,5,9,9_1,9_2,9_0_0 +2181,2,91.0,2,0.0,3,111,2,0,77,8.0,0.0,0.0,244.96198900096664,0.0,456.4814173839504,10883.9,0,70,1,12758,201702181,,,,,0.0,3.0,7.0,0.0,1.0,1.0,2969.7845421724737,440.0,0.0,0.0,0.0,26167.0,0,5,5,125.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,701.443406384917,0.0644477996292613,0.02680641290117006,26167.0,7,4,7,7_1,7_2,7_0_1 +2182,2,65.0,2,0.0,5,111,4,78,74,8.0,0.0,0.0,2210.016674336173,0.0,0.0,37769.64,71,44,1,12760,201702182,,,250.0,,0.0,2.0,6.0,0.0,2.0,1.5,2016.288965469617,0.0,1642.0,0.0,0.0,41661.0,5,5,1,80.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2210.016674336173,0.05851304577793627,0.05304761465966186,27774.0,8,4,8,8_1,8_3,8_0_0 +2183,2,27.0,3,0.0,5,111,6,43,54,8.0,0.0,902.152107716236,1682.4122064069525,0.0,0.0,61003.84,31,30,1,12762,201702183,,,300.0,,2.0,0.0,3.0,0.0,2.0,1.5,3632.8046524600104,0.0,1250.0,0.0,0.0,45082.0,1,1,2,90.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2584.5643141231885,0.04236723973643608,0.05733029400033691,30054.666666666668,8,4,8,8_1,8_2,8_0_0 +2184,2,56.0,3,0.0,99,111,2,0,63,4.0,0.0,0.0,242.26735772260116,0.0,619.262679715128,7878.290875301628,0,70,1,12763,201702184,,,150.0,360.0,1.0,0.0,3.0,0.0,1.0,1.0,2269.2567029844727,0.0,180.0,350.0,0.0,17310.0,0,1,3,80.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,861.5300374377291,0.10935494145546443,0.04977065496462906,17310.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +2185,2,32.0,2,0.0,9,212,4,55,48,6.0,0.0,0.0,2691.859530251124,0.0,0.0,27059.659561086377,31,43,1,12767,201702185,,,450.0,,2.0,0.0,5.0,1.0,3.0,1.8,2641.873145485674,0.0,2000.0,0.0,0.0,39850.0,1,1,2,100.0,4,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2691.859530251124,0.09947869167290635,0.06754980000630173,22138.888888888887,6,3,6,6_1,6_0,6_0_0 +2186,2,65.0,4,0.0,99,111,1,0,77,1.0,0.0,0.0,336.4824412813905,0.0,153.93100895776038,17528.920000000002,0,33,8,12768,201702186,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3555.348868532065,0.0,250.0,87.0,0.0,9593.0,0,5,1,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,490.41345023915085,0.027977391090788867,0.051122010866168126,9593.0,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +2187,1,38.0,1,400.0,9,111,2,85,62,4.0,0.0,0.0,551.8312037014804,0.0,849.274532180747,17026.78,50,50,1,1277,201702187,,,510.0,,1.0,0.0,4.0,3.0,5.0,2.4,1367.4521016084732,0.0,410.0,480.0,0.0,39520.0,8,1,3,82.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1401.1057358822272,0.08228835610034471,0.035453080361392386,16466.666666666668,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +2188,1,37.0,5,175.0,3,400,5,42,65,3.0,0.0,749.4802125642576,1803.545885268253,336.17116898821234,0.0,25016.597686990626,50,71,1,12770,201702188,,,225.0,,2.0,1.0,4.0,1.0,3.0,2.0,2085.6686387496275,0.0,1340.0,0.0,0.0,28075.0,4,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2889.1972668207227,0.11549121519123247,0.10290996498025727,14037.5,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +2189,2,78.0,1,0.0,4,111,6,75,31,10.0,1903.7472109666587,0.0,942.1508355878933,548.4898020333991,0.0,31330.379999999997,33,10,1,12771,201702189,,,,,1.0,6.0,7.0,0.0,2.0,1.5,2479.283802949278,0.0,700.0,0.0,0.0,94750.0,5,1,1,107.0,6,4.0,3,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3394.387848587951,0.10834173886776832,0.03582467386372507,63166.666666666664,10,5,10,10_1,10_2,10_0_1 +2190,2,81.0,3,0.0,99,111,2,77,78,4.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,15331.48,71,71,1,12772,201702190,,,,301.0,0.0,2.0,2.0,0.0,2.0,1.5,1992.4912859611968,1000.0,0.0,0.0,0.0,24074.0,5,5,3,50.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1594.1895599657205,0.10398145253854947,0.06622038547668524,16049.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +2191,2,70.0,1,0.0,1,111,2,0,72,10.0,0.0,0.0,1557.9953198175087,0.0,3743.2472582286014,49029.204356809176,0,31,2,12773,201702191,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2309.3815753694607,2073.200065831951,300.0,900.0,0.0,72125.0,0,5,1,82.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,5301.24257804611,0.10812418124239606,0.07350076364708645,72125.0,10,5,10,10_0,10_4,10_1_0 +2192,1,48.0,3,99.0,4,112,4,0,52,5.0,0.0,0.0,100.94473238441715,0.0,0.0,17396.691191295744,0,50,2,12775,201702192,,,,,1.0,0.0,3.0,1.0,2.0,1.3,970.5050682385515,0.0,75.0,0.0,0.0,24258.0,0,1,3,63.0,10,3.0,2,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,100.94473238441715,0.0058025248177609665,0.004161296577805967,18660.0,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +2193,2,54.0,2,0.0,7,300,6,45,52,7.0,0.0,138.792631956344,1502.057617880127,54.84898020333991,0.0,69386.76000000001,31,50,1,12777,201702193,,,300.0,,2.0,1.0,4.0,1.0,3.0,2.0,2396.2221370317443,0.0,1116.0,0.0,0.0,48983.0,1,1,1,160.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1695.6992300398108,0.0244383687902391,0.03461811710266441,24491.5,7,4,7,7_1,7_1,7_0_0 +2194,2,76.0,4,0.0,4,111,1,0,77,1.0,0.0,0.0,257.210088451015,0.0,479.3054882531478,20445.120000000003,0,70,2,12778,201702194,,,,,0.0,2.0,4.0,0.0,1.0,1.0,5280.341411585762,462.0,0.0,0.0,0.0,13480.0,0,5,1,80.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,736.5155767041629,0.03602402806655881,0.05463765405817232,13480.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +2195,2,81.0,3,0.0,6,111,2,77,72,7.0,0.0,0.0,471.07541779394666,0.0,1162.4445159223974,45137.66753821485,50,50,8,1278,201702195,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2256.807065501708,0.0,350.0,657.0,0.0,41253.0,5,5,1,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1633.519933716344,0.036189728508531346,0.03959760341590536,27502.0,8,4,8,8_0,8_3,8_0_0 +2196,2,46.0,4,0.0,1,300,2,74,54,8.0,2379.684013708323,0.0,1507.4413369406293,159.23897478389006,0.0,49680.8,70,31,1,12780,201702196,,,475.0,,1.0,3.0,6.0,1.0,4.0,2.3,3472.601580303891,0.0,1120.0,0.0,0.0,68543.0,5,1,2,133.0,0,0.0,5,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4046.3643254328426,0.0814472457253676,0.05903395423942405,29801.304347826088,8,4,8,8_1,8_0,8_1_0 +2197,2,89.0,3,0.0,1,400,2,0,86,4.0,1903.7472109666587,0.0,807.5578590753372,185.7788039145384,0.0,18190.46,0,70,2,12782,201702197,,,250.0,,0.0,2.0,5.0,1.0,2.0,1.5,2479.594364929587,0.0,600.0,0.0,0.0,24920.0,0,5,1,80.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,2897.0838739565343,0.1592639149288437,0.11625537214913861,16613.333333333332,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +2198,1,47.0,4,309.0,99,111,1,0,56,2.0,0.0,0.0,452.2324010821888,0.0,785.578942267191,7414.6,0,42,2,12783,201702198,,,300.0,18.0,1.0,0.0,2.0,0.0,1.0,1.0,3449.714966937154,0.0,336.0,444.0,0.0,13728.0,0,1,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1237.8113433493797,0.1669424302523912,0.09016691020901658,13728.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +2199,2,84.0,3,0.0,1,111,6,0,71,3.0,0.0,693.9631597817199,646.0462872602698,226.47320858153253,0.0,11966.12,0,70,5,12784,201702199,,,140.0,,0.0,1.0,4.0,0.0,1.0,1.0,2046.0994334099141,0.0,480.0,0.0,0.0,13797.0,0,5,1,85.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1566.4826556235223,0.1309098233699413,0.11353791807085035,13797.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +2200,2,49.0,3,0.0,8,111,5,21,21,3.0,0.0,485.77421184720396,1312.2815209974228,143.31507730550106,0.0,39265.04,44,50,1,12785,201702200,,,215.0,,2.0,2.0,4.0,0.0,2.0,1.5,2358.289001978993,0.0,975.0,0.0,0.0,20993.0,1,1,1,110.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1941.370810150128,0.04944273099301893,0.09247705473968122,13995.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +2201,2,45.0,2,0.0,1,111,2,52,62,7.0,0.0,0.0,1144.0403003567276,0.0,1804.7083808840873,24104.760000000002,50,50,1,12786,201702201,,,600.0,,2.0,2.0,5.0,1.0,3.0,2.0,1673.015260152109,0.0,850.0,1020.0,0.0,48693.0,1,1,1,54.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2948.748681240815,0.1223305555102318,0.06055795866430114,24346.5,7,4,7,7_1,7_3,7_1_0 +2202,2,70.0,1,0.0,5,300,2,74,75,9.0,1015.3318458488845,0.0,1093.0727444937916,106.15931652259337,105.67195390338803,40410.0,70,31,1,12788,201702202,,,458.0,,0.0,1.0,5.0,0.0,2.0,1.5,2604.3336746510377,101.85663193904527,770.0,0.0,0.0,54386.0,5,5,1,110.0,0,0.0,3,7,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2320.235860768657,0.05741736849217166,0.042662373786795445,36257.333333333336,9,5,9,9_1,9_0,9_0_0 +2203,2,71.0,3,0.0,5,111,2,75,78,6.0,0.0,0.0,788.3322191485655,0.0,1469.0401977628946,24098.5116935026,41,50,1,1279,201702203,,,360.0,,0.0,1.0,4.0,0.0,2.0,1.5,2862.5900120179067,1416.0,0.0,0.0,0.0,35340.0,5,5,3,90.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2257.3724169114603,0.09367269006575576,0.06387584654531579,23560.0,6,3,6,6_1,6_2,6_0_0 +2204,2,57.0,2,0.0,6,111,1,0,46,8.0,0.0,0.0,40.37789295376686,0.0,0.0,26877.386296616576,0,41,2,12791,201702204,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3809.6497552927262,0.0,30.0,0.0,0.0,30017.0,0,1,1,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,40.37789295376686,0.0015022998333305117,0.0013451675035402225,30017.0,8,4,8,8_0,8_3,8_0_0 +2205,2,59.0,3,0.0,1,211,2,77,12,2.0,0.0,1249.133687607096,1951.598159432065,279.55286684282925,0.0,53020.399999999994,50,50,1,12793,201702205,,,400.0,,1.0,3.0,6.0,0.0,2.0,1.5,1947.3697913822932,0.0,1450.0,0.0,0.0,18395.0,5,1,1,140.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3480.2847138819902,0.0656404839247156,0.1891973206785534,12263.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +2206,2,86.0,3,0.0,3,111,2,0,86,2.0,0.0,0.0,815.6334376660906,0.0,2123.1863304518674,17440.66,0,71,1,12794,201702206,,,66.0,,0.0,7.0,4.0,0.0,1.0,1.0,1874.07138887693,0.0,606.0,1200.0,0.0,11103.0,0,5,1,120.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2938.819768117958,0.16850393093598282,0.26468700064108425,11103.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +2207,2,51.0,3,0.0,1,120,2,85,54,3.0,0.0,0.0,1113.4635863680303,0.0,2074.915533563411,22978.83697444815,50,50,1,12795,201702207,,,160.0,,1.0,1.0,6.0,0.0,2.0,1.5,1962.0932372786876,2000.0,0.0,0.0,0.0,20964.0,7,1,1,80.0,0,1.0,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3188.379119931441,0.13875285000180093,0.1520882999394887,13976.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +2208,2,58.0,1,0.0,1,112,2,0,52,4.0,0.0,0.0,1473.7930928124904,116.7752481748527,0.0,28325.52,0,42,2,12796,201702208,,,79.0,,1.0,2.0,4.0,1.0,2.0,1.5,735.1966337847206,0.0,1095.0,0.0,0.0,27014.0,0,1,1,100.0,9,0.0,2,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1590.5683409873432,0.05615319122075581,0.05887940849142456,18009.333333333332,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +2209,2,64.0,2,0.0,1,111,2,0,75,6.0,0.0,0.0,674.3108123279065,0.0,1516.308904331042,50693.01665845404,0,31,1,12798,201702209,,,255.0,,0.0,2.0,4.0,1.0,2.0,1.3,1637.8403935558874,0.0,501.0,857.0,0.0,30025.0,0,5,1,130.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2190.6197166589486,0.043213441634738864,0.07295985734084758,23096.153846153844,6,3,6,6_1,6_3,6_1_0 +2210,2,48.0,2,0.0,1,111,4,0,37,10.0,0.0,0.0,524.9126083989692,0.0,0.0,37744.44800298475,0,20,2,128,201702210,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2670.3503228078616,0.0,390.0,0.0,0.0,65902.0,0,1,1,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,524.9126083989692,0.013907015102127345,0.007965048229173153,65902.0,10,5,10,10_0,10_4,10_1_0 +2211,2,45.0,4,0.0,99,111,3,0,68,7.0,0.0,0.0,538.3719060502248,0.0,619.262679715128,22968.800000000003,0,50,2,12805,201702211,300.0,300.0,,,1.0,2.0,4.0,0.0,1.0,1.0,1377.6275779306109,0.0,400.0,350.0,0.0,24061.0,0,1,2,96.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1157.6345857653528,0.05040030762448855,0.04811248849862237,24061.0,7,4,7,7_0,7_2,7_0_0 +2212,2,33.0,2,0.0,9,0,2,0,33,5.0,2062.392811880547,0.0,403.7789295376686,0.0,0.0,28952.499999999996,0,33,1,12807,201702212,,,150.0,392.0,1.0,0.0,3.0,1.0,2.0,1.3,240.73590250522656,0.0,300.0,0.0,0.0,25435.0,0,1,3,75.0,0,0.0,2,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2466.171741418216,0.08517992371706126,0.0969597696645652,19565.384615384613,5,3,5,5_1,5_0,5_0_0 +2213,1,59.0,3,325.0,5,112,1,0,52,2.0,0.0,0.0,924.653748641261,0.0,0.0,21812.14031599412,0,71,2,12808,201702213,924.0,924.0,684.0,,1.0,3.0,4.0,4.0,5.0,3.0,771.0171574158828,0.0,687.0,0.0,924.0,36401.0,0,1,3,73.0,10,5.0,2,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,924.653748641261,0.04239170183419566,0.025401877658340732,12133.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2214,1,38.0,3,56.0,4,111,2,63,63,5.0,0.0,0.0,918.607458753625,0.0,1711.8053151898139,33513.31999999999,50,50,1,12809,201702214,,,580.0,764.0,2.0,0.0,5.0,3.0,5.0,2.6,1991.673048237992,1650.0,0.0,0.0,0.0,51678.0,1,1,3,111.0,4,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,2630.412773943439,0.0784885763017045,0.050900049807334626,19876.153846153844,5,3,5,5_1,5_2,5_0_1 +2215,2,54.0,2,0.0,4,120,4,52,54,10.0,0.0,0.0,2732.2374232048905,61.9262679715128,0.0,25266.34,50,31,1,12810,201702215,,,500.0,,2.0,1.0,5.0,0.0,2.0,1.5,1699.2525636749397,0.0,2030.0,0.0,0.0,61697.0,1,1,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2794.1636911764035,0.11058838324729278,0.04528848552079361,41131.333333333336,10,5,10,10_1,10_0,10_0_1 +2216,2,49.0,2,0.0,9,111,2,43,63,9.0,0.0,0.0,2059.2725406421096,0.0,0.0,29127.219999999998,44,50,1,12811,201702216,,,,,2.0,1.0,4.0,0.0,2.0,1.5,2335.0118947116257,0.0,1530.0,0.0,0.0,51561.0,1,1,2,144.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2059.2725406421096,0.0706992476673747,0.03993856869808789,34374.0,9,5,9,9_1,9_3,9_0_0 +2217,2,27.0,4,0.0,9,112,4,0,37,5.0,0.0,0.0,807.5578590753372,0.0,0.0,25549.866162745413,0,50,2,12814,201702217,,,,410.0,1.0,0.0,2.0,0.0,1.0,1.0,5975.576345490203,0.0,600.0,0.0,0.0,20392.0,0,1,3,43.0,9,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,807.5578590753372,0.03160712678224701,0.03960169964080704,20392.0,5,3,5,5_0,5_1,5_0_0 +2218,2,59.0,3,0.0,8,111,2,21,77,1.0,0.0,333.10231669522557,1740.2871863073517,247.7050718860512,0.0,39521.66063198823,70,41,1,12816,201702218,,,,,3.0,1.0,6.0,3.0,5.0,3.0,3302.4810753165953,0.0,1293.0,0.0,0.0,28027.0,1,5,1,111.0,4,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2321.094574888629,0.05872968235069481,0.08281637616900235,9342.333333333334,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +2219,2,47.0,3,0.0,1,111,2,48,21,1.0,0.0,0.0,1480.522741638118,0.0,0.0,65588.78,50,50,2,12817,201702219,,,635.0,,2.0,6.0,4.0,1.0,3.0,1.8,957.706175482557,0.0,1100.0,0.0,0.0,17834.0,4,1,1,126.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1480.522741638118,0.022572805007779046,0.08301686338668375,9907.777777777777,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +2220,1,33.0,3,120.0,3,112,5,0,56,3.0,0.0,416.377895869032,1076.7438121004495,0.0,0.0,24546.44,0,50,1,12818,201702220,,,300.0,,1.0,0.0,4.0,1.0,2.0,1.3,962.4389135591521,0.0,800.0,0.0,0.0,19378.0,0,1,2,96.0,9,2.0,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1493.1217079694816,0.060828442249445606,0.07705241552118286,14906.153846153846,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +2221,2,51.0,3,0.0,4,111,1,45,38,5.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,72393.10784974978,42,41,2,12819,201702221,,,,,2.0,0.0,4.0,2.0,4.0,2.5,2260.0595419682004,1100.0,0.0,0.0,0.0,53936.0,1,1,1,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1753.6085159622926,0.024223418057998925,0.03251276542499059,21574.4,6,3,6,6_0,6_3,6_0_1 +2222,2,76.0,1,0.0,8,111,4,75,74,10.0,0.0,0.0,2018.894647688343,0.0,0.0,70514.76000000001,33,30,2,1282,201702222,,,,,0.0,2.0,4.0,0.0,2.0,1.5,3541.71231247238,0.0,1500.0,0.0,0.0,82310.0,5,5,1,96.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2018.894647688343,0.028630809318337645,0.024527938861479078,54873.333333333336,10,5,10,10_0,10_4,10_0_0 +2223,2,30.0,2,0.0,4,112,2,43,38,9.0,1269.1648073111057,0.0,1144.0403003567276,0.0,0.0,21813.5058467513,43,12,1,12821,201702223,,,80.0,,2.0,0.0,5.0,0.0,2.0,1.5,2431.2269393638,0.0,850.0,0.0,0.0,55526.0,1,1,1,100.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2413.2051076678335,0.11062894358300657,0.04346081309058519,37017.333333333336,9,5,9,9_1,9_0,9_0_1 +2224,1,44.0,4,450.0,6,221,4,0,56,1.0,0.0,0.0,1534.3599322431405,0.0,0.0,20788.8658467513,0,43,2,12822,201702224,,,300.0,90.0,2.0,1.0,3.0,2.0,3.0,2.0,785.6655436265721,0.0,1140.0,0.0,0.0,16460.0,0,4,3,69.0,1,2.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1534.3599322431405,0.07380681291389048,0.09321749284587731,8230.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +2225,2,58.0,3,0.0,99,111,2,0,46,6.0,0.0,0.0,523.5666786338436,0.0,0.0,17171.8917113366,0,60,2,12824,201702225,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2625.7687337542266,0.0,389.0,0.0,0.0,24160.0,0,1,2,52.0,7,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,523.5666786338436,0.030489749611464965,0.02167080623484452,24160.0,7,4,7,7_0,7_2,7_0_0 +2226,2,58.0,4,0.0,4,111,1,56,52,8.0,0.0,0.0,551.8312037014804,0.0,221.16524275540286,56245.3575402539,50,50,2,12825,201702226,,,,392.0,3.0,1.0,1.0,1.0,3.0,2.0,2302.4854633699542,0.0,410.0,125.0,0.0,57853.0,1,1,3,99.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,772.9964464568832,0.013743293318095845,0.013361389149342007,28926.5,8,4,8,8_0,8_2,8_0_1 +2227,2,32.0,2,0.0,1,221,4,54,21,8.0,0.0,0.0,2647.999109255084,88.46609710216114,419.8893005927453,103106.78203470181,43,50,1,12826,201702227,,,947.0,,2.0,0.0,4.0,1.0,3.0,1.8,3112.2464078031567,404.72905407540844,1800.0,0.0,0.0,50881.0,4,1,3,120.0,1,2.0,4,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3156.3545069499905,0.030612481979000003,0.06203405017491776,28267.222222222223,8,4,8,8_1,8_1,8_1_0 +2228,2,37.0,3,0.0,7,111,2,0,33,9.0,0.0,0.0,500.68587262670906,0.0,0.0,28320.080197470055,0,20,2,12828,201702228,,,,385.0,1.0,0.0,1.0,0.0,1.0,1.0,5535.511499567206,0.0,372.0,0.0,0.0,40380.0,0,1,3,20.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,500.68587262670906,0.017679535832368063,0.01239935296252375,40380.0,9,5,9,9_0,9_3,9_0_0 +2229,2,78.0,2,0.0,5,111,2,75,75,10.0,0.0,0.0,1615.1157181506744,0.0,88.46609710216114,46058.20031599411,41,44,1,12829,201702229,,,179.0,,0.0,1.0,4.0,0.0,2.0,1.5,1800.43963192022,0.0,1200.0,50.0,0.0,62820.0,5,5,1,82.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1703.5818152528354,0.036987589692280096,0.027118462515963632,41880.0,10,5,10,10_1,10_4,10_0_0 +2230,0,93.0,3,0.0,9,112,5,77,77,1.0,0.0,624.566843803548,2422.6735772260117,191.08676974066807,0.0,12027.0,71,71,3,1283,201702230,,,150.0,,0.0,0.0,3.0,0.0,2.0,1.5,3542.8983750129773,0.0,1800.0,0.0,0.0,15110.0,5,5,5,80.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,3238.327190770228,0.26925477598488634,0.21431682268499191,10073.333333333334,1,1,1_0,1_0_0,1_0_0,1_0_0_0 +2231,2,44.0,2,0.0,99,120,4,13,63,1.0,0.0,0.0,1017.5229024349248,212.31863304518674,0.0,26443.399999999998,44,50,1,12830,201702231,,,,,2.0,3.0,5.0,1.0,3.0,2.0,1786.0598279597361,0.0,756.0,0.0,0.0,18843.0,1,1,2,87.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1229.8415354801116,0.046508449574567255,0.06526782017089167,9421.5,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +2232,0,73.0,3,0.0,3,111,2,77,75,6.0,0.0,0.0,554.5230632317315,0.0,2181.573954539294,35171.12,20,60,2,12831,201702232,,,660.0,,0.0,2.0,3.0,0.0,2.0,1.5,3098.597246126758,0.0,412.0,1233.0,0.0,33384.0,5,5,5,65.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2736.0970177710255,0.07779385523608646,0.08195833386565497,22256.0,6,3,6,6_0,6_3,6_0_1 +2233,2,58.0,1,0.0,7,111,2,37,74,9.0,0.0,0.0,1345.929765125562,0.0,2123.1863304518674,76782.76000000001,0,12,1,12832,201702233,,,600.0,,1.0,0.0,7.0,2.0,4.0,2.5,3227.2756704356802,0.0,1000.0,1200.0,0.0,95149.0,1,5,1,160.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3469.1160955774294,0.04518092467081711,0.03645982717188231,38059.6,9,5,9,9_1,9_3,9_0_0 +2234,2,51.0,4,0.0,99,112,4,0,68,1.0,0.0,0.0,144.01448486843512,0.0,0.0,6008.225567965958,0,71,1,12833,201702234,,,320.0,,2.0,2.0,4.0,2.0,3.0,2.0,907.8225821630324,0.0,107.0,0.0,0.0,15660.0,0,4,3,75.0,8,2.0,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,144.01448486843512,0.023969553612680057,0.009196327258520761,7830.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +2235,2,81.0,3,0.0,9,111,2,77,78,4.0,0.0,0.0,640.2415621616174,0.0,1193.076431798961,16801.940000000002,50,71,2,12834,201702235,,,,340.0,0.0,4.0,2.0,0.0,2.0,1.5,3659.6869919968026,1150.0,0.0,0.0,0.0,27080.0,5,5,3,57.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1833.3179939605784,0.10911347106111426,0.06770007363222225,18053.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +2236,2,31.0,2,0.0,1,112,4,35,35,7.0,0.0,0.0,1938.1388617808093,106.15931652259337,0.0,31413.640000000003,30,31,1,12835,201702236,,,100.0,,2.0,0.0,6.0,0.0,2.0,1.5,2463.3632505590085,0.0,1440.0,0.0,0.0,38383.0,1,1,2,150.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2044.2981783034027,0.06507676850894714,0.053260510598530666,25588.666666666668,7,4,7,7_1,7_1,7_1_0 +2237,2,38.0,3,0.0,9,112,5,55,48,7.0,0.0,555.170527825376,1406.4966045562123,84.9274532180747,0.0,43775.4,43,43,1,12836,201702237,,,436.0,,2.0,0.0,6.0,2.0,4.0,2.1,2130.290792534861,0.0,1045.0,0.0,0.0,51779.0,1,1,2,114.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2046.594585599663,0.046752161844315826,0.0395255718650353,24656.666666666664,7,4,7,7_1,7_0,7_0_0 +2238,2,59.0,3,0.0,99,211,2,0,52,2.0,0.0,0.0,1803.545885268253,95.54338487033404,0.0,12829.54,0,50,1,12837,201702238,,,30.0,,1.0,4.0,3.0,0.0,1.0,1.0,639.8923849080502,0.0,1340.0,0.0,0.0,12834.0,0,1,3,90.0,3,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1899.089270138587,0.14802473589377224,0.14797329516429694,12834.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2239,2,53.0,3,0.0,1,112,2,62,52,6.0,0.0,0.0,605.6683943065029,0.0,1627.776186679765,44922.34,50,50,1,12839,201702239,,,440.0,,2.0,3.0,5.0,1.0,3.0,2.0,1988.6228918852848,0.0,450.0,920.0,0.0,44319.0,1,1,2,140.0,7,0.0,4,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2233.444580986268,0.04971790385332261,0.05039474223214125,22159.5,6,3,6,6_1,6_0,6_1_0 +2240,1,58.0,3,226.0,99,111,2,85,75,3.0,0.0,0.0,269.1859530251124,0.0,353.8643884086446,11418.18753375566,60,50,2,1284,201702240,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2521.7624039066577,0.0,200.0,200.0,0.0,21302.0,7,7,3,77.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,623.050341433757,0.0545664834801346,0.029248443405959862,14201.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2241,2,62.0,1,0.0,9,112,4,0,37,10.0,0.0,0.0,2897.819404242908,0.0,2337.620496068808,114496.87725860756,10,30,1,12841,201702241,,,,,1.0,0.0,4.0,0.0,2.0,1.5,1783.506786651142,2253.219910165918,1221.0,0.0,0.0,67283.0,8,5,1,140.0,7,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5235.439900311716,0.04572561300939873,0.07781222448927241,44855.333333333336,10,5,10,10_1,10_2,10_0_0 +2242,2,61.0,3,0.0,1,111,1,0,56,5.0,0.0,0.0,336.4824412813905,0.0,265.39829130648343,19751.08,0,44,2,12842,201702242,,,,562.0,1.0,3.0,2.0,0.0,1.0,1.0,3925.056207342637,0.0,250.0,150.0,0.0,19830.0,0,1,3,39.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,601.8807325878739,0.030473307413461638,0.03035202887482975,19830.0,5,3,5,5_0,5_4,5_1_0 +2243,1,61.0,2,350.0,99,111,1,0,78,2.0,0.0,0.0,403.7789295376686,0.0,318.4779495677801,7527.140000000001,0,71,2,12844,201702243,,,,,0.0,0.0,4.0,1.0,2.0,1.5,2259.76136278492,0.0,300.0,180.0,0.0,18540.0,0,5,3,70.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,722.2568791054487,0.09595369278443719,0.03895668172089799,12360.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2244,1,25.0,4,460.0,9,112,4,0,81,1.0,0.0,0.0,942.1508355878933,0.0,0.0,8227.34,0,60,1,12845,201702244,,,400.0,,1.0,0.0,5.0,3.0,4.0,1.9,2464.5368639374988,0.0,700.0,0.0,0.0,15390.0,0,4,3,110.0,6,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,942.1508355878933,0.11451463481366922,0.06121837788095473,8100.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +2245,2,60.0,3,0.0,2,120,2,77,74,4.0,1110.5192063972174,0.0,1292.0925745205395,169.8549064361494,0.0,50013.99847265618,42,31,1,12846,201702245,,,200.0,,0.0,2.0,14.0,1.0,3.0,2.0,2520.5896293051433,0.0,960.0,0.0,0.0,37074.0,6,7,1,400.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2572.4666873539063,0.05143493353686436,0.06938735198127816,18537.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +2246,1,35.0,4,404.0,9,111,2,0,52,3.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,19481.240315994117,0,43,2,12849,201702246,,,239.0,,1.0,0.0,3.0,2.0,3.0,1.6,689.8931327813644,1000.0,0.0,0.0,0.0,24310.0,0,1,3,77.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1594.1895599657205,0.08183203605660001,0.06557752200599426,15193.75,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2247,2,58.0,2,0.0,6,112,4,43,47,10.0,0.0,0.0,2063.3103299374866,0.0,0.0,55176.780000000006,33,31,1,12850,201702247,,,390.0,,2.0,2.0,6.0,0.0,2.0,1.5,1490.0205638956725,0.0,1533.0,0.0,0.0,63539.0,1,1,1,100.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2063.3103299374866,0.03739454041967448,0.0324731319337334,42359.333333333336,10,5,10,10_1,10_1,10_0_0 +2248,2,40.0,3,0.0,9,111,2,0,47,6.0,0.0,0.0,468.38355826369553,0.0,0.0,23790.000315994108,0,31,2,12851,201702248,,,,450.0,1.0,0.0,2.0,0.0,1.0,1.0,3076.380900119075,0.0,348.0,0.0,0.0,24002.0,0,1,3,40.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,468.38355826369553,0.01968825355369161,0.01951435539803748,24002.0,7,4,7,7_0,7_2,7_0_0 +2249,2,50.0,4,0.0,4,111,1,0,56,6.0,0.0,0.0,92.86915379366377,0.0,92.0047409862476,49235.31999999999,0,71,2,12852,201702249,,,,530.0,4.0,0.0,5.0,3.0,4.0,2.5,1709.404079880477,0.0,69.0,52.0,0.0,52143.0,0,1,3,87.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,184.87389477991138,0.0037549038937882686,0.0035455170354584775,20857.2,5,3,5,5_0,5_3,5_0_1 +2250,2,68.0,1,0.0,7,111,4,77,75,9.0,0.0,0.0,1541.4162807888258,0.0,1249.6482135364163,35411.708471306134,42,42,1,12853,201702250,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1452.4751074333642,1204.5292382483638,647.0,0.0,0.0,57055.0,5,5,1,116.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2791.064494325242,0.0788175610500923,0.04891884136929703,38036.666666666664,9,5,9,9_1,9_4,9_0_0 +2251,2,32.0,2,0.0,1,111,4,46,38,9.0,0.0,0.0,1173.65075518949,0.0,0.0,62961.81,20,12,2,12854,201702251,,,,927.0,2.0,0.0,2.0,0.0,2.0,1.5,3547.6067518715054,0.0,872.0,0.0,0.0,51380.0,1,1,3,38.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1173.65075518949,0.018640676867286533,0.022842560435762747,34253.333333333336,9,5,9,9_0,9_4,9_1_0 +2252,2,70.0,3,0.0,99,111,1,0,77,5.0,0.0,249.82673752141918,460.30797967294217,0.0,1627.776186679765,11886.14,0,70,1,12856,201702252,,,125.0,,0.0,3.0,5.0,0.0,1.0,1.0,2386.8988703875516,0.0,342.0,920.0,0.0,18632.0,0,5,1,92.0,4,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2337.9109038741262,0.1966921897162684,0.12547825804390975,18632.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2253,2,60.0,3,0.0,6,221,4,77,78,5.0,0.0,83.27557917380639,1924.6795641295537,0.0,0.0,18068.54,71,71,1,12860,201702253,,,373.0,,0.0,2.0,4.0,0.0,2.0,1.5,2278.8503614459883,0.0,1430.0,0.0,0.0,30452.0,5,5,1,84.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2007.95514330336,0.11112990553212157,0.06593836671822409,20301.333333333332,5,3,5,5_1,5_2,5_0_0 +2254,2,67.0,2,0.0,7,221,2,77,75,6.0,0.0,0.0,672.964882562781,0.0,1362.3778953732817,50580.759999999995,50,30,1,12861,201702254,,,322.0,,0.0,3.0,3.0,0.0,2.0,1.5,1954.8430790179605,0.0,500.0,770.0,0.0,33616.0,5,5,1,70.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2035.3427779360627,0.04023946611193788,0.06054684608329553,22410.666666666668,6,3,6,6_1,6_1,6_0_0 +2255,2,53.0,1,0.0,8,111,6,48,42,8.0,0.0,0.0,1654.9200335665173,0.0,2582.285765161261,103946.26400886763,43,30,1,12862,201702255,,,350.0,,2.0,0.0,6.0,2.0,4.0,2.5,2043.583857974745,2489.0514562069957,200.0,0.0,0.0,76706.0,1,1,1,200.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4237.2057987277785,0.04076342559426959,0.055239561425804745,30682.4,8,4,8,8_1,8_4,8_0_0 +2256,1,23.0,3,210.0,99,111,2,0,46,6.0,0.0,0.0,549.1393441712293,0.0,0.0,12537.0,0,30,2,12863,201702256,,,,250.0,1.0,0.0,3.0,0.0,1.0,1.0,3546.7779410853973,0.0,408.0,0.0,0.0,20469.0,0,2,3,51.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,549.1393441712293,0.043801495108178136,0.026827854031522266,20469.0,5,3,5,5_0,5_4,5_0_0 +2257,2,48.0,3,0.0,1,111,2,0,85,5.0,1586.456009138882,0.0,2125.3210391548673,226.47320858153253,2581.0290124676408,62421.564419466755,0,20,1,12866,201702257,,,270.0,,0.0,0.0,6.0,2.0,3.0,1.6,647.8069646732304,2487.8400789983416,550.0,0.0,0.0,32843.0,0,8,1,120.0,8,7.0,2,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,6519.279269342923,0.1044395367205796,0.19849828789522647,20526.875,5,3,5,5_1,5_3,5_1_0 +2258,2,69.0,3,0.0,9,111,4,78,78,1.0,0.0,0.0,2917.9504994394965,0.0,1585.0793085508203,39652.112658440295,71,71,1,12867,201702258,,,300.0,,0.0,3.0,2.0,0.0,2.0,1.5,2236.3305580018505,1527.849479085679,1536.0,0.0,0.0,18962.0,5,5,1,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4503.029807990317,0.11356342716916518,0.23747652188536636,12641.333333333334,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +2259,2,27.0,1,0.0,9,112,4,56,63,8.0,0.0,0.0,1049.8252167979383,109.69796040667983,0.0,41769.58,50,71,1,12868,201702259,,,305.0,,2.0,0.0,4.0,1.0,3.0,1.8,3476.9371120799874,0.0,780.0,0.0,0.0,45248.0,1,1,2,100.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1159.5231772046182,0.027759991295210968,0.025625954234543363,25137.777777777777,7,4,7,7_1,7_0,7_0_0 +2260,2,52.0,2,0.0,1,111,2,0,55,7.0,0.0,0.0,375.51440447003176,0.0,1052.7465555157175,33733.08,0,31,2,12869,201702260,,,107.0,,1.0,1.0,3.0,0.0,1.0,1.0,2807.247293648325,0.0,279.0,595.0,0.0,26207.0,0,1,3,53.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1428.2609599857492,0.04234006974713691,0.05449921623939211,26207.0,7,4,7,7_0,7_3,7_1_0 +2261,2,20.0,2,0.0,9,111,4,0,84,1.0,0.0,0.0,497.99401309645793,0.0,0.0,10562.56,0,31,2,1287,201702261,,,,600.0,0.0,0.0,3.0,0.0,2.0,1.5,5295.625269741336,0.0,370.0,0.0,0.0,2700.0,0,3,3,35.0,9,7.0,5,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,497.99401309645793,0.04714709436883274,0.1844422270727622,1800.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +2262,2,46.0,3,0.0,9,112,2,21,21,6.0,0.0,208.188947934516,2288.080600713455,0.0,0.0,52898.18,44,50,1,12870,201702262,,,270.0,,2.0,0.0,5.0,2.0,4.0,2.5,2482.835459409211,0.0,1700.0,0.0,0.0,53275.0,1,1,2,130.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2496.269548647971,0.04719008382987791,0.04685630311868552,21310.0,6,3,6,6_1,6_0,6_0_0 +2263,1,23.0,3,133.0,99,111,1,53,67,4.0,0.0,0.0,753.7206684703146,0.0,0.0,30011.94,71,71,2,12871,201702263,,,,154.0,2.0,0.0,2.0,0.0,2.0,1.5,2574.5379697564144,0.0,560.0,0.0,0.0,27424.0,4,1,3,50.0,6,4.0,3,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,753.7206684703146,0.025114026899637768,0.027483980034652664,18282.666666666668,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +2264,2,34.0,4,0.0,99,111,4,0,68,1.0,0.0,0.0,605.6683943065029,0.0,0.0,13978.530875301627,0,71,2,12874,201702264,,,,,1.0,1.0,1.0,1.0,2.0,1.3,2326.7112197304277,0.0,450.0,0.0,0.0,12400.0,0,1,3,28.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,605.6683943065029,0.04332847276366115,0.048844225347298625,9538.461538461539,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +2265,2,58.0,3,0.0,8,111,4,0,43,9.0,0.0,0.0,2131.95274795889,0.0,0.0,49636.86732515317,0,33,1,12875,201702265,,,150.0,,2.0,0.0,4.0,1.0,2.0,1.5,2194.389532372277,0.0,1584.0,0.0,0.0,53059.0,0,1,1,100.0,6,4.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2131.95274795889,0.042950993139700744,0.04018079398328069,35372.666666666664,9,5,9,9_1,9_2,9_0_0 +2266,1,38.0,2,552.0,1,111,7,0,69,1.0,0.0,0.0,1043.0955679723106,0.0,0.0,14456.8258467513,0,71,2,12876,201702266,,,,138.0,1.0,1.0,4.0,5.0,6.0,2.9,782.8250166258678,0.0,775.0,0.0,0.0,27924.0,0,4,3,90.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1043.0955679723106,0.07215246133761183,0.037354804754774054,9628.96551724138,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +2267,2,54.0,3,0.0,1,300,2,0,77,2.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,9439.960000000001,0,71,1,12877,201702267,,,174.0,,0.0,0.0,5.0,0.0,1.0,1.0,2438.037560851009,1700.0,0.0,0.0,0.0,12780.0,0,4,1,90.0,0,1.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2710.1222519417247,0.2870904380889034,0.2120596441268955,12780.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +2268,2,46.0,2,0.0,1,111,1,46,37,9.0,0.0,0.0,1149.4269834940158,0.0,938.0391408382686,31891.427742486016,44,20,2,12878,201702268,,,,1216.0,2.0,0.0,2.0,0.0,2.0,1.5,3036.8995925307895,904.170917480484,480.0,0.0,0.0,56967.0,1,1,3,40.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2087.4661243322844,0.0654553988986622,0.03664342732340275,37978.0,9,5,9,9_0,9_4,9_1_0 +2269,2,47.0,4,0.0,4,111,2,0,56,3.0,0.0,0.0,484.5347154452023,0.0,743.1152156581536,33943.71087530162,0,50,2,12879,201702269,,,,468.0,1.0,1.0,3.0,1.0,2.0,1.5,777.7182896651397,0.0,360.0,420.0,0.0,22549.0,0,1,3,80.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1227.6499311033558,0.036167228020924126,0.05444365298254272,15032.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +2270,2,39.0,2,0.0,1,112,5,0,38,8.0,0.0,485.77421184720396,1440.1448486843512,53.079658261296686,0.0,22685.760000000002,0,12,1,1288,201702270,,,324.0,,1.0,0.0,4.0,0.0,1.0,1.0,2263.9848220338,0.0,1070.0,0.0,0.0,29673.0,0,1,2,60.0,8,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1978.9987187928518,0.08723528410742473,0.06669358402564121,29673.0,8,4,8,8_1,8_1,8_1_0 +2271,2,73.0,2,0.0,1,112,2,0,72,9.0,0.0,0.0,975.7990797160325,0.0,1268.6038324449908,28558.480000000003,0,30,1,12881,201702271,,,298.0,,0.0,2.0,2.0,0.0,1.0,1.0,2659.57070432437,0.0,725.0,717.0,0.0,33768.0,0,5,1,50.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2244.4029121610233,0.07858971878618971,0.0664653788249533,33768.0,9,5,9,9_1,9_1,9_1_0 +2273,2,54.0,3,0.0,2,111,1,34,31,10.0,0.0,0.0,1480.522741638118,0.0,0.0,157433.46000000002,30,10,2,12884,201702273,,,,,2.0,0.0,7.0,4.0,6.0,3.1,2075.230360714357,0.0,1100.0,0.0,0.0,215930.0,1,1,2,149.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1480.522741638118,0.00940411740705005,0.00685649396396109,69654.83870967742,10,5,10,10_0,10_4,10_0_1 +2274,2,30.0,1,0.0,9,300,3,62,21,9.0,0.0,0.0,991.9502368975392,0.0,0.0,34678.46,44,43,1,12885,201702274,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2516.3122503661825,0.0,737.0,0.0,0.0,61554.0,1,1,2,144.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,991.9502368975392,0.028604218206273842,0.016115122281209007,29311.42857142857,8,4,8,8_1,8_1,8_0_0 +2275,1,61.0,3,61.0,1,300,2,0,63,5.0,0.0,0.0,839.8601734383507,0.0,1180.1377353428297,21273.320000000003,0,31,2,12886,201702275,,,,336.0,1.0,0.0,4.0,0.0,1.0,1.0,1940.3683040831952,0.0,624.0,667.0,0.0,18716.0,0,4,3,80.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,2019.9979087811803,0.09495452091075487,0.10792893293338215,18716.0,4,2,4_1,4_0_1,4_1_1,4_1_0_1 +2276,2,63.0,3,0.0,8,112,2,77,75,5.0,0.0,0.0,1067.3223037445707,0.0,1884.3278682760324,27977.99087530163,50,50,1,12888,201702276,,,721.0,,0.0,2.0,4.0,1.0,3.0,2.0,2736.491428165274,0.0,793.0,1065.0,0.0,37200.0,5,5,1,110.0,9,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2951.6501720206033,0.1054990040269924,0.07934543473173665,18600.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2277,2,52.0,3,0.0,6,120,4,21,52,2.0,0.0,0.0,4037.789295376686,138.0071114793714,0.0,36093.08,50,42,1,12889,201702277,,,550.0,,2.0,2.0,4.0,0.0,2.0,1.5,2484.4370305311736,0.0,3000.0,0.0,0.0,15399.0,1,1,1,85.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4175.796406856058,0.1156952082464577,0.2711732194854249,10266.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +2278,1,27.0,3,437.0,99,111,2,0,62,2.0,0.0,0.0,403.7789295376686,0.0,1326.9914565324173,15244.039999999999,0,50,1,12890,201702278,,,180.0,,1.0,0.0,4.0,2.0,3.0,1.6,1862.5577966104738,0.0,300.0,750.0,0.0,17879.0,0,4,3,72.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1730.7703860700858,0.11353751276368246,0.09680465272498942,11174.375,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +2279,1,25.0,4,141.0,9,111,1,0,55,4.0,0.0,0.0,139.1829482960038,0.0,259.36444169542636,15531.12,0,30,2,12891,201702279,,,,299.0,1.0,0.0,2.0,0.0,1.0,1.0,3253.3351321503433,250.0,0.0,0.0,0.0,16719.0,0,4,3,45.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,398.5473899914301,0.025661213743209125,0.023837992104278373,16719.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +2280,2,79.0,3,0.0,5,111,2,77,72,6.0,0.0,277.585263912688,2582.8392192759534,0.0,0.0,21435.75087530163,50,50,1,12892,201702280,,,192.0,,0.0,3.0,6.0,0.0,2.0,1.5,1526.1330095800672,0.0,1919.0,0.0,0.0,32013.0,5,5,1,200.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2860.4244831886413,0.13344176743929392,0.08935196586351299,21342.0,6,3,6,6_1,6_3,6_0_0 +2281,1,33.0,3,19.0,9,112,6,21,54,2.0,0.0,0.0,1144.0403003567276,0.0,2193.9592081335963,31326.239999999998,44,50,1,12896,201702281,,,498.0,,2.0,0.0,4.0,2.0,4.0,2.1,2079.761847775965,0.0,850.0,1240.0,0.0,26628.0,1,1,2,150.0,9,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,3337.999508490324,0.10655602167672609,0.12535674885422576,12680.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +2282,2,40.0,3,0.0,1,300,2,42,21,7.0,0.0,1471.2018987372462,1749.7086946632305,360.94167617681745,0.0,39532.14,0,43,1,12897,201702282,,,300.0,,2.0,0.0,5.0,3.0,5.0,2.4,2084.416565049398,0.0,1300.0,0.0,0.0,57766.0,1,1,2,160.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3581.852269577294,0.09060608076307769,0.062006236706320224,24069.166666666668,7,4,7,7_1,7_0,7_1_0 +2283,2,75.0,3,0.0,4,111,4,0,,4.0,0.0,0.0,646.0462872602698,0.0,0.0,13529.2,0,70,2,12898,201702283,,,,445.0,0.0,2.0,1.0,0.0,1.0,1.0,4030.9129999381353,0.0,480.0,0.0,0.0,18520.0,0,5,3,22.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,646.0462872602698,0.04775199474176372,0.034883708815349336,18520.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +2284,1,25.0,4,408.0,5,111,2,0,67,2.0,0.0,0.0,282.645250676368,0.0,601.5694602946958,9729.44,0,71,2,12899,201702284,,,350.0,28.0,1.0,0.0,3.0,2.0,3.0,1.6,2152.856879558526,0.0,210.0,340.0,0.0,20346.0,0,4,3,67.0,7,6.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,884.2147109710638,0.09088032928627586,0.04345889663673763,12716.25,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2285,2,77.0,4,0.0,3,111,1,78,78,2.0,0.0,0.0,630.721643805617,0.0,1175.3362679382346,22768.426397344265,71,71,2,129,201702285,,,280.0,280.0,0.0,3.0,3.0,0.0,2.0,1.5,2383.4659165856656,1132.900350810657,0.0,0.0,0.0,18933.0,6,5,3,65.0,7,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1806.0579117438515,0.07932291324070213,0.0953920621002404,12622.0,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +2286,2,28.0,2,0.0,1,111,2,13,47,8.0,1110.5192063972174,0.0,1615.1157181506744,0.0,0.0,32138.1716935026,31,31,1,12901,201702286,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3970.8910718217476,0.0,1200.0,0.0,0.0,51013.0,1,1,3,65.0,9,7.0,4,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2725.634924547892,0.08480989368474048,0.053430202586554246,28340.555555555555,8,4,8,8_1,8_3,8_1_0 +2287,2,33.0,1,0.0,2,111,2,0,22,8.0,0.0,0.0,484.5347154452023,0.0,884.6609710216114,28315.86,0,20,2,12903,201702287,,,130.0,,1.0,0.0,3.0,1.0,2.0,1.5,2364.419680812292,0.0,360.0,500.0,0.0,43745.0,0,1,2,65.0,7,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1369.1956864668136,0.04835437406692976,0.03129947848821154,29163.333333333332,8,4,8,8_0,8_2,8_0_1 +2288,2,52.0,3,0.0,5,111,2,43,43,5.0,0.0,0.0,2257.1242161155674,0.0,0.0,43205.56,44,44,1,12905,201702288,,,450.0,,3.0,1.0,6.0,3.0,5.0,2.8,1913.9970797021736,0.0,1677.0,0.0,0.0,54603.0,1,1,1,110.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2257.1242161155674,0.052241522066038895,0.041337000093686564,19501.07142857143,5,3,5,5_1,5_2,5_0_0 +2289,1,56.0,4,256.0,7,300,4,0,63,1.0,0.0,0.0,1076.7438121004495,0.0,0.0,6351.347849749775,0,50,1,12906,201702289,,,200.0,,1.0,3.0,3.0,0.0,1.0,1.0,2630.8466808628714,0.0,800.0,0.0,0.0,9078.0,0,4,3,70.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1076.7438121004495,0.16952997026337804,0.11861024588019933,9078.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +2290,2,58.0,3,0.0,4,111,4,0,31,6.0,0.0,0.0,1197.87749096175,0.0,583.8762408742635,34054.22,0,31,8,12907,201702290,,,254.0,,1.0,2.0,3.0,0.0,1.0,1.0,1523.9965755366443,0.0,890.0,330.0,0.0,23306.0,0,1,1,77.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1781.7537318360137,0.05232108478291424,0.07645043044005895,23306.0,6,3,6,6_0,6_2,6_0_1 +2291,2,38.0,2,0.0,6,111,2,42,38,6.0,0.0,0.0,1615.1157181506744,0.0,2477.050718860512,62373.950000000004,10,10,1,12908,201702291,,,360.0,,2.0,0.0,6.0,3.0,5.0,2.4,1639.9858822057868,0.0,1200.0,1400.0,0.0,51789.0,4,1,2,130.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4092.1664370111866,0.0656069791477241,0.0790161315532485,21578.75,6,3,6,6_1,6_3,6_0_0 +2292,2,54.0,1,0.0,6,111,2,46,37,8.0,0.0,0.0,751.5879207984204,0.0,1400.5679851553023,32167.16,50,50,1,12909,201702292,,,,513.0,2.0,2.0,6.0,0.0,2.0,1.5,2268.4850759238752,1350.0,0.0,0.0,0.0,42995.0,1,1,3,96.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2152.1559059537226,0.06690537510783429,0.05005595780797122,28663.333333333332,8,4,8,8_1,8_2,8_0_0 +2293,1,40.0,5,154.0,9,111,2,0,52,3.0,0.0,0.0,669.1916154071862,0.0,1247.0242356716099,24507.726811688997,0,30,2,12910,201702293,,,528.0,404.0,1.0,0.0,3.0,1.0,2.0,1.5,1209.518916923684,1202.0,0.0,0.0,0.0,21518.0,0,4,3,76.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1916.215851078796,0.0781882328704943,0.08905176368987806,14345.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2294,2,41.0,2,0.0,1,111,2,0,48,6.0,0.0,0.0,890.7708690944243,0.0,1659.9324268507285,40423.74,0,31,8,12911,201702294,,,,520.0,1.0,0.0,4.0,2.0,3.0,1.6,1656.818822036417,1600.0,0.0,0.0,0.0,33450.0,0,1,3,68.0,7,6.0,2,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2550.7032959451526,0.06309914164164802,0.07625420914634239,20906.25,5,3,5,5_0,5_2,5_1_0 +2295,2,62.0,5,0.0,5,112,2,0,77,4.0,0.0,0.0,553.1771334666059,0.0,2586.748679267192,14663.98,0,70,1,12915,201702295,,,291.0,,0.0,3.0,4.0,0.0,1.0,1.0,2328.1967187925934,0.0,411.0,1462.0,0.0,17597.0,0,5,1,84.0,7,0.0,1,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3139.925812733798,0.2141250746887133,0.1784352908299027,17597.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2296,1,38.0,5,289.0,4,111,1,0,56,1.0,0.0,0.0,476.45913685444896,0.0,0.0,17468.980000000003,0,50,2,12916,201702296,,,,,1.0,0.0,4.0,3.0,4.0,2.3,1116.9082014072335,0.0,354.0,0.0,0.0,18728.0,0,4,3,70.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,476.45913685444896,0.027274582537414827,0.02544100474447079,8142.608695652175,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2297,2,29.0,2,0.0,3,112,4,46,37,10.0,0.0,0.0,2045.8132429908542,106.15931652259337,0.0,44994.3,20,30,1,12917,201702297,,,310.0,,2.0,0.0,6.0,1.0,3.0,1.8,2254.6435266515628,0.0,1520.0,0.0,0.0,77234.0,1,1,2,130.0,8,1.0,4,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2151.972559513448,0.047827670605242165,0.02786302094302312,42907.777777777774,10,5,10,10_1,10_1,10_0_1 +2298,2,73.0,1,0.0,1,111,2,74,74,10.0,0.0,0.0,888.3136449828709,0.0,2087.799891611003,49120.5,41,12,2,12919,201702298,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2718.639292259855,0.0,660.0,1180.0,0.0,78943.0,5,5,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2976.113536593874,0.06058801389631364,0.03769952417052651,52628.666666666664,10,5,10,10_0,10_4,10_1_0 +2299,2,81.0,3,0.0,4,111,2,0,43,7.0,0.0,0.0,1471.1012332822393,168.08558449410617,0.0,18965.36,0,33,1,1292,201702299,,,140.0,,1.0,0.0,4.0,0.0,1.0,1.0,828.9657775394654,0.0,1093.0,0.0,0.0,25122.0,0,5,1,90.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1639.1868177763454,0.08643056697981717,0.06524905731137431,25122.0,7,4,7,7_1,7_2,7_0_1 +2300,2,87.0,2,0.0,2,111,6,0,77,5.0,2535.156702603934,0.0,942.1508355878933,113.23660429076627,0.0,15934.000315994117,0,71,1,12921,201702300,,,110.0,,0.0,2.0,6.0,0.0,1.0,1.0,2071.422041122687,0.0,700.0,0.0,0.0,19860.0,0,5,1,95.0,7,6.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3590.544142482593,0.22533852587403944,0.1807927564190631,19860.0,5,3,5,5_1,5_2,5_0_1 +2301,2,52.0,4,0.0,9,211,2,0,43,10.0,0.0,0.0,807.5578590753372,0.0,927.1246976306488,27878.16,0,33,1,12922,201702301,,,350.0,,1.0,2.0,4.0,0.0,1.0,1.0,1669.7144473919357,0.0,600.0,524.0,0.0,49995.0,0,1,2,117.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1734.682556705986,0.06222371048541173,0.03469712084620434,49995.0,10,5,10,10_1,10_1,10_0_0 +2302,2,75.0,2,0.0,5,112,5,77,77,9.0,0.0,1110.341055650752,1547.8192298943961,0.0,0.0,29152.073384966163,31,41,1,12924,201702302,,,355.0,,0.0,4.0,6.0,0.0,2.0,1.5,2576.4645240388973,0.0,1150.0,0.0,0.0,55120.0,5,5,1,100.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2658.1602855451483,0.09118254645022854,0.048224968895956975,36746.666666666664,9,5,9,9_1,9_0,9_0_0 +2303,2,54.0,2,0.0,1,400,2,0,22,1.0,0.0,0.0,0.0,0.0,0.0,7655.271191295745,0,50,8,12925,201702303,,,,,1.0,1.0,1.0,0.0,1.0,1.0,3489.0787770170678,0.0,0.0,0.0,0.0,3540.0,0,1,3,850.0,0,0.0,1,9,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,3540.0,1,1,1_0,1_0_0,1_0_0,1_1_0_0 +2304,2,68.0,4,0.0,1,111,2,85,54,4.0,0.0,0.0,1036.3659191466827,0.0,1751.6287226227907,28362.499999999996,71,41,1,12926,201702304,,,310.0,,1.0,2.0,3.0,0.0,2.0,1.5,1117.6096060057168,0.0,770.0,990.0,0.0,27232.0,7,5,1,70.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2787.9946417694737,0.09829862112893695,0.10237935670422568,18154.666666666668,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +2305,2,35.0,1,0.0,1,112,2,85,37,9.0,0.0,83.27557917380639,926.9584356513852,0.0,1727.3671816915394,33700.44,12,12,1,12927,201702305,,,,,1.0,0.0,6.0,3.0,5.0,2.4,1938.4922137259246,1665.0,0.0,0.0,0.0,86499.0,8,1,2,120.0,9,3.0,4,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2737.601196516731,0.08123339625585692,0.031648934629495494,36041.25,9,5,9,9_1,9_1,9_1_0 +2306,1,27.0,3,16.0,4,111,1,34,53,2.0,0.0,0.0,538.3719060502248,0.0,0.0,23387.36,30,43,2,12928,201702306,,,,233.0,2.0,0.0,3.0,0.0,2.0,1.5,2368.7652376678157,0.0,400.0,0.0,0.0,15920.0,3,1,3,52.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,538.3719060502248,0.02301978102916382,0.03381733078204929,10613.333333333334,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2307,2,31.0,2,0.0,1,111,2,43,38,10.0,0.0,0.0,100.21172277312272,0.0,186.74239802070696,50195.060000000005,33,12,1,12929,201702307,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2232.0565496642225,180.0,0.0,0.0,0.0,91574.0,1,1,3,100.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,286.9541207938297,0.005716780113298593,0.003133576351298728,61049.333333333336,10,5,10,10_1,10_3,10_1_0 +2308,1,43.0,3,227.0,9,112,4,52,63,3.0,0.0,0.0,1169.1367656864318,0.0,2178.661310241581,51616.99242155249,43,31,1,1293,201702308,,,840.0,,2.0,0.0,4.0,5.0,7.0,3.6,2374.9000426186126,2100.0,0.0,0.0,0.0,55743.0,1,1,3,120.0,9,1.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,3347.7980759280126,0.06485844910503061,0.060057730583714775,15484.166666666666,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +2309,2,62.0,3,0.0,1,112,2,0,78,1.0,1269.1648073111057,0.0,576.0579394737405,169.8549064361494,0.0,11764.880000000001,0,50,1,12930,201702309,,,160.0,,0.0,0.0,3.0,0.0,1.0,1.0,2454.6427562292174,0.0,428.0,0.0,0.0,8586.0,0,5,3,70.0,7,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2015.0776532209954,0.1712790655936138,0.23469341407186065,8586.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2310,2,63.0,3,0.0,5,112,2,77,75,8.0,0.0,0.0,1332.4704674743064,0.0,1663.1626255206295,67390.64000000001,41,70,1,12931,201702310,,,740.0,,0.0,2.0,5.0,0.0,2.0,1.5,1338.4236044726583,0.0,990.0,940.0,0.0,42887.0,5,5,1,110.0,9,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2995.633092994936,0.04445176797541818,0.06984944372408738,28591.333333333332,8,4,8,8_1,8_1,8_0_0 +2311,2,53.0,2,0.0,1,221,6,75,22,5.0,2062.392811880547,0.0,672.964882562781,318.4779495677801,0.0,48862.68031599412,41,71,1,12933,201702311,,,160.0,,1.0,1.0,5.0,2.0,4.0,2.5,2611.4758667855467,0.0,500.0,0.0,0.0,48579.0,5,1,1,100.0,1,2.0,4,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3053.8356440111083,0.06249832437070593,0.06286328751129312,19431.6,5,3,5,5_1,5_1,5_1_0 +2312,2,82.0,2,0.0,1,112,2,0,77,2.0,0.0,0.0,179.00865876169973,247.7050718860512,0.0,14314.72,0,71,5,12934,201702312,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2537.8124386439895,0.0,133.0,0.0,0.0,11289.0,0,5,1,80.0,9,2.0,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,426.71373064775094,0.029809436066353442,0.03779907260587748,11289.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +2313,1,54.0,4,345.0,4,211,2,68,85,2.0,0.0,0.0,458.9620499078166,0.0,1459.690602185659,43203.42,50,71,2,12935,201702313,,,,,1.0,0.0,4.0,3.0,5.0,2.4,739.8225162116069,0.0,341.0,825.0,0.0,30470.0,4,7,3,92.0,2,3.0,4,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1918.6526520934756,0.04440974006440869,0.06296858063975962,12695.833333333334,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +2314,1,37.0,3,17.0,1,111,4,0,43,4.0,0.0,0.0,2153.487624200899,0.0,0.0,33053.99665845403,0,31,1,12936,201702314,,,336.0,,1.0,0.0,4.0,2.0,3.0,1.6,584.9360400249152,0.0,1600.0,0.0,0.0,28120.0,0,1,3,90.0,5,4.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,2153.487624200899,0.06515059726219564,0.07658206344953411,17575.0,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +2315,2,82.0,8,0.0,5,120,4,0,74,10.0,0.0,0.0,2180.4062195034103,0.0,0.0,21569.719999999998,0,70,1,12938,201702315,,,166.0,,0.0,1.0,4.0,0.0,1.0,1.0,2848.958435035458,0.0,1620.0,0.0,0.0,38150.0,0,5,1,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2180.4062195034103,0.10108644059836709,0.05715350509838559,38150.0,9,5,9,9_1,9_0,9_0_0 +2316,2,64.0,3,0.0,9,400,2,86,78,2.0,0.0,0.0,1419.955902207468,113.23660429076627,0.0,20655.947849749773,70,50,1,1294,201702316,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1569.3255957532997,0.0,1055.0,0.0,0.0,18774.0,6,5,3,80.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1533.1925064982343,0.07422523128207875,0.08166573487260223,12516.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2317,1,45.0,3,127.0,2,300,4,52,43,2.0,0.0,277.585263912688,2979.8884999879942,0.0,2273.5786955255417,64166.68185768922,60,50,1,12941,201702317,,,390.0,,2.0,0.0,7.0,2.0,4.0,2.3,2179.973788650609,0.0,2214.0,1285.0,0.0,25601.0,1,1,2,120.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,5531.052459426224,0.08619819974006382,0.21604829730972322,11130.869565217392,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +2318,2,30.0,3,0.0,9,112,1,0,67,7.0,0.0,0.0,61.91276919577585,0.0,0.0,14515.230474197519,0,42,2,12942,201702318,,,,368.0,1.0,0.0,2.0,0.0,1.0,1.0,4944.472175606415,0.0,46.0,0.0,0.0,23110.0,0,1,3,60.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,61.91276919577585,0.0042653659069232745,0.002679046698216177,23110.0,6,3,6,6_0,6_0,6_0_0 +2319,2,65.0,2,0.0,99,111,2,77,78,3.0,0.0,0.0,807.5578590753372,212.31863304518674,0.0,24640.062066597373,71,71,1,12943,201702319,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1710.2723842202138,0.0,600.0,0.0,0.0,23053.0,5,5,1,60.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1019.876492120524,0.04139098713972363,0.04424051065460131,15368.666666666666,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +2320,0,64.0,4,0.0,6,111,1,0,77,2.0,0.0,0.0,1472.4471630473647,0.0,0.0,43198.851357424865,0,71,2,12944,201702320,,,,,0.0,4.0,5.0,4.0,6.0,2.7,1511.3969010854494,0.0,1094.0,0.0,0.0,35650.0,0,5,5,70.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1472.4471630473647,0.034085331363661035,0.04130286572362874,13203.703703703703,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +2321,2,55.0,3,0.0,5,112,4,43,43,8.0,0.0,763.359475759892,2422.6735772260117,123.8525359430256,0.0,40261.52,33,33,1,12945,201702321,,,260.0,,2.0,1.0,8.0,1.0,3.0,2.0,1786.4478766544655,0.0,1800.0,0.0,0.0,51537.0,1,1,2,120.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3309.8855889289293,0.08220965301183188,0.06422348194363135,25768.5,7,4,7,7_1,7_0,7_0_0 +2322,2,49.0,3,0.0,2,400,5,0,63,7.0,0.0,860.5143181293328,1628.57501580193,53.079658261296686,0.0,22556.96,0,71,1,12946,201702322,,,290.0,,2.0,2.0,6.0,1.0,2.0,1.5,2799.9515290540753,0.0,1210.0,0.0,0.0,36540.0,0,1,2,130.0,0,0.0,2,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2542.1689921925595,0.1126999822756506,0.0695722220085539,24360.0,7,4,7,7_1,7_0,7_0_1 +2323,2,53.0,3,0.0,5,111,4,72,56,8.0,0.0,0.0,2422.6735772260117,0.0,0.0,31027.377285886516,50,50,1,12947,201702323,,,,,1.0,3.0,6.0,1.0,3.0,1.8,2237.6104749139954,0.0,1800.0,0.0,0.0,47930.0,5,1,3,96.0,7,6.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2422.6735772260117,0.07808180352800938,0.050546079224410845,26627.777777777777,7,4,7,7_1,7_2,7_0_0 +2324,2,31.0,3,0.0,6,111,5,46,47,9.0,0.0,582.9290542166448,2029.6620858093474,30.07847301473479,0.0,74721.87,31,30,1,12948,201702324,,,413.0,,2.0,0.0,3.0,1.0,3.0,1.8,3168.545777891285,0.0,1508.0,0.0,0.0,53852.0,1,1,2,75.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2642.6696130407267,0.03536674889213462,0.04907282205007663,29917.777777777777,8,4,8,8_1,8_3,8_0_0 +2325,2,61.0,3,0.0,1,111,2,33,33,10.0,0.0,0.0,2352.896160011823,0.0,5037.9003330901205,89208.33227386091,20,20,1,12949,201702325,,,480.0,,2.0,2.0,6.0,0.0,2.0,1.5,2974.0998215194245,2195.5188697160365,840.0,1560.0,0.0,160243.0,1,1,2,180.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,7390.796493101943,0.08284872393324108,0.04612242964186856,106828.66666666667,10,5,10,10_1,10_3,10_1_0 +2326,2,76.0,2,0.0,6,111,2,0,78,2.0,0.0,0.0,449.5405415519377,0.0,969.5884242396861,16851.74,0,70,1,12950,201702326,,,252.0,,0.0,2.0,4.0,0.0,1.0,1.0,4409.672752053882,0.0,334.0,548.0,0.0,13122.0,0,5,1,70.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1419.1289657916238,0.08421260746911735,0.10814883141225605,13122.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2327,2,49.0,3,0.0,7,111,4,68,22,9.0,0.0,0.0,2018.894647688343,0.0,0.0,46962.92,50,50,1,12952,201702327,,,900.0,,3.0,0.0,6.0,2.0,4.0,2.5,3220.1484100110024,0.0,1500.0,0.0,0.0,80180.0,1,1,3,150.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2018.894647688343,0.04298912094240186,0.025179529155504404,32072.0,9,5,9,9_1,9_3,9_0_0 +2328,2,52.0,4,0.0,5,111,2,56,64,2.0,0.0,0.0,1259.790260157526,0.0,1381.840436735757,27820.184319407486,70,50,1,12953,201702328,,,835.0,,3.0,0.0,4.0,3.0,5.0,3.0,1646.2080184588385,0.0,936.0,781.0,0.0,40555.0,1,1,1,84.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2641.630696893283,0.09495374532980609,0.06513699166300785,13518.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +2329,2,84.0,2,0.0,1,300,4,0,74,5.0,0.0,0.0,635.2788491392653,212.31863304518674,0.0,15074.880315994116,0,41,1,12954,201702329,,,,,0.0,0.0,20.0,0.0,1.0,1.0,3412.267836210967,0.0,472.0,0.0,0.0,22597.0,0,5,1,206.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,847.597482184452,0.056225818342661715,0.03750929248061477,22597.0,6,3,6,6_1,6_0,6_1_0 +2330,2,45.0,3,0.0,4,111,1,0,52,6.0,0.0,0.0,403.7789295376686,0.0,575.0296311640475,18900.334007939447,0,43,8,12955,201702330,,,387.0,242.0,1.0,2.0,3.0,0.0,1.0,1.0,2730.0921065228476,0.0,300.0,325.0,0.0,22849.0,0,1,3,50.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,978.808560701716,0.05178789752025275,0.04283813561651346,22849.0,6,3,6,6_0,6_2,6_0_1 +2331,2,70.0,2,0.0,1,112,5,74,74,9.0,0.0,0.0,1525.565029722154,0.0,2117.2270162813147,39561.93274530716,60,30,1,12956,201702331,,,310.0,,0.0,2.0,6.0,0.0,2.0,1.5,1452.6480569085613,1512.0974216755744,508.0,310.0,0.0,50162.0,5,5,1,180.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3642.7920460034684,0.09207821239308832,0.07262055033697756,33441.333333333336,9,5,9,9_1,9_0,9_1_0 +2332,2,50.0,2,0.0,4,111,1,54,35,6.0,0.0,0.0,986.5665178370369,0.0,189.31744779862484,31075.0458467513,41,42,8,12957,201702332,,,,556.0,2.0,0.0,4.0,1.0,3.0,1.8,2224.1729951059224,0.0,733.0,107.0,0.0,40920.0,1,4,3,74.0,6,4.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1175.8839656356618,0.03784013614765408,0.028736167293149113,22733.333333333332,6,3,6,6_0,6_2,6_0_1 +2333,2,77.0,2,0.0,2,111,2,77,78,8.0,0.0,0.0,707.9590564560456,0.0,3204.2420370402765,22688.079999999998,70,50,1,12959,201702333,,,170.0,,0.0,2.0,4.0,0.0,2.0,1.5,1597.1800656873859,0.0,526.0,1811.0,0.0,44721.0,5,5,1,90.0,7,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3912.201093496322,0.17243420745591176,0.08748017918866577,29814.0,8,4,8,8_1,8_2,8_0_1 +2334,2,74.0,3,0.0,1,111,1,0,75,4.0,0.0,0.0,300.974998212244,0.0,560.8604597855176,36435.00721486952,0,31,2,1296,201702334,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2367.190555738297,540.6104014483029,0.0,0.0,0.0,18345.0,0,5,1,78.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,861.8354579977615,0.02365404932995422,0.04697931087477577,18345.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +2335,2,63.0,2,0.0,2,111,2,77,77,8.0,1105.759838369801,0.0,738.9154410539335,168.08558449410617,0.0,78539.58,50,42,1,12960,201702335,,,223.0,,0.0,2.0,5.0,0.0,2.0,1.5,1794.7562251430015,0.0,549.0,0.0,0.0,46894.0,5,5,1,98.0,6,5.0,3,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2012.7608639178407,0.025627344377418884,0.04292150091520964,31262.666666666668,8,4,8,8_1,8_2,8_0_1 +2336,2,44.0,3,0.0,4,111,2,85,37,2.0,0.0,0.0,969.0694308904046,0.0,4423.304855108057,87565.58,30,30,1,12961,201702336,,,,,1.0,0.0,9.0,7.0,9.0,4.0,1629.9342551614402,0.0,720.0,2500.0,0.0,51155.0,6,1,2,240.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5392.374285998462,0.06158098063186999,0.10541245794152013,12788.75,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +2337,2,65.0,2,0.0,5,111,2,0,77,9.0,0.0,0.0,421.76266364527817,0.0,1209.1141822237,25089.26553487946,0,50,2,12962,201702337,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2733.4083410043995,312.73871726708836,184.0,500.0,0.0,35700.0,0,5,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1630.8768458689783,0.0650029728292249,0.045682824814257096,35700.0,9,5,9,9_0,9_4,9_0_0 +2338,2,77.0,3,0.0,6,111,1,77,74,9.0,0.0,0.0,2798.187981696043,0.0,0.0,52880.66584675131,70,12,1,12963,201702338,,,921.0,,0.0,0.0,6.0,0.0,3.0,2.0,2437.1180304380846,0.0,2079.0,0.0,0.0,69244.0,5,5,1,125.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2798.187981696043,0.052915142744329645,0.04041054794200282,34622.0,9,5,9,9_1,9_4,9_0_0 +2339,2,78.0,2,0.0,6,300,4,86,75,5.0,0.0,0.0,1582.813403787661,153.93100895776038,0.0,19991.82,71,50,1,12964,201702339,,,143.0,,0.0,3.0,4.0,0.0,2.0,1.5,1829.205046848411,0.0,1176.0,0.0,0.0,27640.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1736.7444127454214,0.08687275159267248,0.06283445776937126,18426.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2340,2,64.0,2,0.0,2,111,2,74,74,10.0,0.0,0.0,370.1306854095295,0.0,3892.5082724950903,69258.99087530164,20,20,1,12965,201702340,,,336.0,,0.0,2.0,7.0,1.0,3.0,2.0,1770.881220602448,0.0,275.0,2200.0,0.0,99112.0,5,5,1,200.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4262.63895790462,0.06154636248713688,0.043008303312460854,49556.0,10,5,10,10_1,10_2,10_0_1 +2341,2,70.0,2,0.0,6,111,2,77,77,5.0,0.0,0.0,1450.9122868053557,0.0,0.0,22695.1,50,50,1,12966,201702341,,,600.0,,0.0,4.0,4.0,0.0,2.0,1.5,2103.915613585286,0.0,1078.0,0.0,0.0,28060.0,5,5,1,88.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1450.9122868053557,0.06393064083460112,0.05170749418408253,18706.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +2342,1,69.0,3,125.0,6,300,6,78,78,3.0,0.0,0.0,1098.2786883424585,219.39592081335965,0.0,13622.830875301628,71,71,2,12967,201702342,,,430.0,,0.0,1.0,2.0,0.0,2.0,1.5,2657.973551857835,0.0,816.0,0.0,0.0,20560.0,6,5,3,60.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1317.6746091558182,0.09672546192618302,0.06408923196283163,13706.666666666666,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +2343,0,25.0,2,0.0,7,111,2,0,84,1.0,0.0,0.0,699.8834778652922,0.0,0.0,18469.48,0,41,2,12969,201702343,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3495.6855416744093,0.0,520.0,0.0,0.0,7633.0,0,3,5,29.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,699.8834778652922,0.03789405429201538,0.09169179586863517,7633.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +2344,2,76.0,2,0.0,5,111,1,0,75,7.0,0.0,0.0,355.32545799314835,0.0,0.0,37212.24417758094,0,50,8,12971,201702344,,,80.0,,0.0,1.0,4.0,0.0,1.0,1.0,2993.9080270635022,0.0,264.0,0.0,0.0,25049.0,0,5,1,98.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,355.32545799314835,0.009548616748226631,0.01418521529774236,25049.0,7,4,7,7_0,7_3,7_0_0 +2345,2,45.0,3,0.0,8,112,5,54,69,5.0,0.0,555.170527825376,1211.3367886130059,192.8560916827113,0.0,57406.78,42,50,1,12972,201702345,,,510.0,,2.0,0.0,6.0,2.0,4.0,2.5,1950.3275715989994,0.0,900.0,0.0,0.0,47972.0,1,1,2,127.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1959.3634081210932,0.034131219485243613,0.04084389660887795,19188.8,5,3,5,5_1,5_0,5_0_0 +2346,2,83.0,2,0.0,5,300,4,71,71,2.0,0.0,0.0,1169.6129658941134,382.17353948133615,0.0,18306.32,71,70,1,12973,201702346,,,260.0,,0.0,1.0,3.0,0.0,2.0,1.5,2243.672540249253,0.0,869.0,0.0,0.0,18771.0,5,5,1,91.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1551.7865053754495,0.08476780179607095,0.08266935727321131,12514.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +2347,1,27.0,4,208.0,1,111,4,81,63,1.0,0.0,0.0,565.290501352736,0.0,0.0,13438.239999999998,20,20,2,12974,201702347,,,,95.0,2.0,0.0,1.0,1.0,3.0,1.8,4294.289235338693,0.0,420.0,0.0,0.0,15634.0,4,1,3,21.0,9,7.0,4,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,565.290501352736,0.04206581377864483,0.03615776521381195,8685.555555555555,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +2348,1,30.0,3,379.0,1,111,2,0,85,2.0,0.0,0.0,1817.0051829195086,0.0,0.0,12609.88,0,50,2,12976,201702348,,,20.0,,0.0,0.0,3.0,1.0,2.0,1.3,860.2992692719307,0.0,1350.0,0.0,0.0,14738.0,0,6,3,70.0,7,6.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1817.0051829195086,0.14409377273372218,0.12328709342648314,11336.923076923076,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +2349,2,65.0,4,0.0,6,112,2,0,75,8.0,0.0,0.0,963.6857118299024,2123.1863304518674,0.0,23698.61665845403,0,44,1,12977,201702349,,,190.0,,0.0,2.0,4.0,0.0,1.0,1.0,4399.527473212644,0.0,716.0,0.0,0.0,32830.0,0,5,1,100.0,7,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3086.8720422817696,0.13025536835208426,0.09402595316118702,32830.0,9,5,9,9_1,9_0,9_0_0 +2350,2,69.0,3,0.0,5,111,1,0,77,8.0,0.0,0.0,565.290501352736,0.0,212.31863304518674,21337.12,0,60,2,1298,201702350,,,,389.0,0.0,3.0,4.0,0.0,1.0,1.0,4771.2574537846685,0.0,420.0,120.0,0.0,31304.0,0,5,3,89.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,777.6091343979227,0.03644395937211408,0.02484056779957586,31304.0,8,4,8,8_0,8_4,8_0_0 +2351,1,20.0,3,212.0,99,111,4,0,56,2.0,0.0,0.0,165.54936111044412,0.0,0.0,7243.64,0,30,2,12982,201702351,,,,,1.0,0.0,1.0,0.0,1.0,1.0,6256.568029765211,0.0,123.0,0.0,0.0,10417.0,0,1,3,13.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,165.54936111044412,0.022854443499462165,0.015892230115238947,10417.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +2352,2,56.0,2,0.0,4,112,2,67,53,6.0,1827.5973225279922,0.0,689.1160397442877,194.62541362475451,0.0,39719.330875301624,60,50,1,12984,201702352,,,526.0,,2.0,0.0,5.0,2.0,4.0,2.3,2174.0482379049613,0.0,512.0,0.0,0.0,51356.0,1,1,1,105.0,8,1.0,4,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2711.3387758970343,0.06826244843875268,0.05279497577492473,22328.695652173916,6,3,6,6_1,6_1,6_0_1 +2353,2,61.0,3,0.0,2,111,1,0,75,2.0,0.0,0.0,2302.8858281298367,0.0,2830.9151072691566,13192.170875301626,0,50,2,12985,201702353,,,,,1.0,1.0,4.0,1.0,2.0,1.5,3332.559561484564,0.0,1711.0,1600.0,0.0,21010.0,0,5,3,74.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,5133.800935398993,0.38915512722856643,0.2443503538980958,14006.666666666666,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +2354,2,80.0,2,0.0,4,111,1,0,75,7.0,0.0,0.0,634.6796730658218,0.0,995.3656809402055,16380.383624991935,0,44,2,12986,201702354,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4011.1688725603854,770.1238266805725,153.0,111.0,0.0,23560.0,0,5,1,57.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1630.0453540060273,0.09951203777175456,0.06918698446545107,23560.0,6,3,6,6_0,6_4,6_0_1 +2355,2,34.0,3,0.0,99,111,1,43,65,8.0,0.0,0.0,1211.3367886130059,0.0,0.0,42876.74,33,31,2,12987,201702355,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2392.5787332607533,0.0,900.0,0.0,0.0,47016.0,1,1,1,77.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1211.3367886130059,0.028251606549681854,0.025764352318636333,31344.0,8,4,8,8_0,8_3,8_0_0 +2356,0,60.0,3,0.0,1,120,2,13,13,4.0,0.0,0.0,2113.1097312471325,0.0,0.0,27190.04,60,50,5,12988,201702356,,,313.0,,2.0,2.0,6.0,0.0,2.0,1.5,1426.9828011327552,0.0,1570.0,0.0,0.0,25860.0,1,1,5,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2113.1097312471325,0.07771631565261149,0.08171344668395718,17240.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2357,1,40.0,3,360.0,99,400,4,62,85,1.0,0.0,0.0,2794.1501924006666,123.8525359430256,0.0,40558.88,71,50,1,12989,201702357,,,230.0,,1.0,0.0,5.0,4.0,6.0,3.1,2175.0441467194446,0.0,2076.0,0.0,0.0,21422.0,4,6,3,113.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2918.002728343692,0.07194485469874148,0.13621523332759275,6910.322580645161,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +2358,2,55.0,1,0.0,1,112,2,52,43,7.0,4759.368027416646,0.0,2826.45250676368,0.0,0.0,59684.217540253914,42,33,1,1299,201702358,,,328.0,,2.0,0.0,7.0,2.0,4.0,2.5,2079.7470688435064,0.0,2100.0,0.0,0.0,77495.0,1,1,1,165.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,7585.820534180326,0.12709927090966858,0.09788787062623816,30998.0,8,4,8,8_1,8_0,8_1_0 +2359,2,33.0,1,0.0,6,211,5,85,63,3.0,0.0,346.98157989085996,1024.2525512605525,0.0,0.0,23701.34,50,41,1,12990,201702359,,,300.0,,1.0,0.0,4.0,2.0,4.0,2.1,6454.13493810465,0.0,761.0,0.0,0.0,32921.0,6,1,2,90.0,2,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1371.2341311514124,0.057854709107224,0.04165226242068626,15676.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2360,2,61.0,4,0.0,9,111,2,0,56,3.0,0.0,0.0,0.0,0.0,0.0,70308.92,0,60,2,12991,201702360,,,,,1.0,2.0,4.0,1.0,2.0,1.5,2574.072767621163,0.0,0.0,0.0,0.0,24685.0,0,4,2,79.0,8,6.0,2,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,16456.666666666668,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +2361,2,42.0,3,0.0,8,112,5,38,37,9.0,0.0,1110.341055650752,1749.7086946632305,0.0,0.0,40981.280000000006,20,12,1,12992,201702361,,,1035.0,,2.0,0.0,6.0,3.0,5.0,2.4,2173.5205096489544,0.0,1300.0,0.0,0.0,81034.0,1,1,2,130.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2860.0497503139823,0.06978917569958727,0.03529444122607772,33764.16666666667,9,5,9,9_1,9_0,9_0_0 +2362,1,49.0,4,540.0,9,111,2,0,85,1.0,0.0,0.0,1144.0403003567276,0.0,0.0,39428.051191295745,0,50,1,12993,201702362,,,360.0,,0.0,0.0,5.0,3.0,4.0,2.5,596.7298529838141,0.0,850.0,0.0,0.0,9664.0,0,7,2,168.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1144.0403003567276,0.029015897712167154,0.11838165359651569,3865.6,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +2363,1,31.0,3,379.0,5,111,1,85,63,4.0,0.0,0.0,497.99401309645793,0.0,0.0,19105.859999999997,30,41,2,12994,201702363,,,,500.0,1.0,0.0,3.0,1.0,3.0,1.8,2794.7248764446417,0.0,370.0,0.0,0.0,31652.0,6,1,3,83.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,497.99401309645793,0.026064988076771108,0.01573341378416713,17584.444444444445,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +2364,2,65.0,3,0.0,6,111,2,77,78,2.0,0.0,0.0,1021.5606917303015,0.0,1990.4871847986258,27030.231191295745,71,71,1,12995,201702364,,,409.0,,0.0,2.0,4.0,0.0,2.0,1.5,2482.8509034608323,0.0,759.0,1125.0,0.0,20046.0,5,5,1,98.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3012.047876528927,0.11143256064709,0.15025680317913434,13364.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2365,2,41.0,4,0.0,5,112,4,52,55,6.0,0.0,333.10231669522557,2261.162005410944,0.0,0.0,33693.34,50,44,1,12996,201702365,,,495.0,,2.0,0.0,6.0,2.0,4.0,2.1,2061.244291609399,0.0,1680.0,0.0,0.0,42703.0,1,1,2,110.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2594.2643221061694,0.07699635364455319,0.060751336489384106,20334.761904761905,5,3,5,5_1,5_1,5_0_0 +2366,1,80.0,4,360.0,4,111,1,86,74,1.0,0.0,0.0,538.3719060502248,0.0,230.01185246561897,13920.3,41,41,2,12997,201702366,,,,340.0,0.0,4.0,4.0,0.0,2.0,1.5,2731.6697920292804,0.0,400.0,130.0,0.0,4320.0,5,5,3,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,768.3837585158437,0.055198793022840295,0.17786661076755642,2880.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +2367,2,33.0,2,0.0,9,112,5,84,33,7.0,0.0,693.9631597817199,1547.8192298943961,0.0,0.0,42980.88,20,0,1,12999,201702367,,,480.0,,1.0,0.0,7.0,2.0,4.0,2.1,2277.1558079900155,0.0,1150.0,0.0,0.0,48245.0,3,1,2,163.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2241.782389676116,0.05215766614541434,0.04646662637944069,22973.809523809523,6,3,6,6_1,6_0,6_0_0 +2368,2,42.0,3,0.0,1,111,2,67,56,4.0,0.0,832.755791738064,562.5986418224849,148.62304313163074,0.0,58932.622382591486,50,50,1,13,201702368,,,468.0,,2.0,2.0,4.0,2.0,4.0,2.1,755.8603817739759,0.0,418.0,0.0,0.0,37260.0,1,1,1,140.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1543.9774766921796,0.02619902889555218,0.04143793549898496,17742.85714285714,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +2369,0,47.0,2,0.0,1,120,5,0,56,3.0,0.0,0.0,0.0,0.0,0.0,9944.76,0,50,1,130,201702369,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1967.0233411951458,0.0,0.0,0.0,0.0,15165.0,0,1,5,70.0,0,0.0,1,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,15165.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2370,2,59.0,1,0.0,7,111,2,48,54,10.0,0.0,0.0,1890.6619200056489,0.0,3183.6031964483273,66941.14002465157,12,31,1,1300,201702370,,,402.0,,2.0,3.0,8.0,0.0,2.0,1.5,1712.940047468345,1063.0607123668656,965.0,1176.0,0.0,90146.0,4,1,1,180.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5074.265116453977,0.07580189274615493,0.05628940958505066,60097.333333333336,10,5,10,10_1,10_2,10_0_0 +2371,0,47.0,3,0.0,4,111,2,47,52,5.0,0.0,0.0,968.7133201401864,0.0,1805.1765142001673,28920.859999999997,50,50,1,13001,201702371,,,590.0,,2.0,0.0,4.0,2.0,4.0,2.5,1944.548164855493,1740.0,0.0,0.0,0.0,48140.0,1,1,5,80.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2773.8898343403534,0.09591311718739877,0.057621309396351336,19256.0,5,3,5,5_1,5_2,5_0_1 +2372,1,35.0,4,220.0,99,300,2,0,56,3.0,0.0,0.0,1615.1157181506744,123.8525359430256,0.0,21942.1,0,50,2,13002,201702372,,,500.0,,1.0,0.0,3.0,2.0,3.0,1.6,367.8425894987804,0.0,1200.0,0.0,0.0,22989.0,0,1,3,70.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1738.9682540937001,0.07925258995691845,0.07564349271798251,14368.125,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +2373,2,44.0,3,0.0,3,111,1,54,47,8.0,0.0,0.0,605.6683943065029,0.0,212.31863304518674,61166.72000000001,50,31,2,13003,201702373,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3122.7099139448414,0.0,450.0,120.0,0.0,50334.0,1,1,1,64.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,817.9870273516897,0.013373073255386092,0.016251182646952154,27963.333333333332,8,4,8,8_0,8_4,8_0_1 +2376,1,31.0,1,130.0,9,111,1,85,62,4.0,0.0,0.0,444.15682249143543,0.0,0.0,18080.9,60,71,1,13006,201702376,,,,219.0,1.0,0.0,3.0,1.0,3.0,1.8,2459.7990902710735,0.0,330.0,0.0,0.0,29920.0,6,1,3,85.0,5,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,444.15682249143543,0.024564973120333358,0.014844813585943698,16622.222222222223,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +2377,2,68.0,3,0.0,1,112,2,0,75,6.0,126.91648073111057,0.0,629.895130078763,1512.7702604469555,0.0,13086.84,0,44,1,1301,201702377,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2515.0964775330576,0.0,468.0,0.0,0.0,23050.0,0,5,1,95.0,9,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2269.581871256829,0.1734247435788035,0.09846342174650016,23050.0,6,3,6,6_1,6_1,6_1_0 +2378,2,31.0,3,0.0,4,111,1,54,38,8.0,0.0,0.0,242.26735772260116,0.0,0.0,35614.92,30,31,2,13010,201702378,,,,990.0,2.0,0.0,3.0,1.0,3.0,1.8,4895.6586150887315,0.0,180.0,0.0,0.0,53916.0,1,1,3,53.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,242.26735772260116,0.006802411958881311,0.0044934223184694925,29953.333333333332,8,4,8,8_0,8_4,8_0_1 +2379,2,64.0,1,0.0,7,111,2,47,74,10.0,0.0,0.0,3499.417389326461,0.0,0.0,48731.922066597384,50,31,1,13011,201702379,,,450.0,,1.0,1.0,6.0,0.0,2.0,1.5,1977.5227311404835,0.0,2600.0,0.0,0.0,101998.0,1,5,1,132.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3499.417389326461,0.07180954989922485,0.03430868634018766,67998.66666666667,10,5,10,10_1,10_4,10_0_0 +2380,2,74.0,3,0.0,1,111,2,77,78,4.0,0.0,0.0,2422.6735772260117,191.08676974066807,0.0,21840.920000000002,71,71,2,13012,201702380,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2233.851120814559,0.0,1800.0,0.0,0.0,26772.0,5,5,1,73.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2613.7603469666797,0.11967263040964755,0.09763037303775136,17848.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +2381,2,71.0,3,0.0,3,111,2,0,75,5.0,0.0,0.0,522.220748868718,0.0,1040.3613019214151,20263.8,0,71,1,13014,201702381,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3936.4158959162323,0.0,388.0,588.0,0.0,19820.0,0,5,3,68.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1562.582050790133,0.07711199532121976,0.07883865039304405,19820.0,5,3,5,5_1,5_3,5_0_1 +2382,1,29.0,4,330.0,4,111,2,0,63,1.0,0.0,0.0,312.2557055091304,0.0,1523.386192099215,12905.56,0,30,2,13015,201702382,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2901.8838041027493,0.0,232.0,861.0,0.0,11950.0,0,4,3,57.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1835.6418976083453,0.14223651647881574,0.15361020063668163,9192.307692307691,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2383,2,82.0,1,0.0,1,120,5,71,78,4.0,882.0695410812185,1804.304215432472,717.3805648119245,309.631339857564,0.0,23862.831191295747,71,70,1,13016,201702383,,,102.0,,0.0,6.0,7.0,0.0,2.0,1.5,2429.4003060370496,0.0,533.0,0.0,0.0,28035.0,5,5,1,110.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3713.385661183179,0.15561379248819732,0.13245534728671943,18690.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2384,1,35.0,3,119.0,9,112,2,0,67,3.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,21072.463132637815,0,50,1,13017,201702384,,,311.0,,1.0,0.0,5.0,2.0,3.0,1.6,547.9317140308119,1400.0,0.0,0.0,0.0,23614.0,0,1,2,120.0,7,1.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2231.8653839520084,0.10591383503218531,0.09451449919336023,14758.75,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +2385,2,59.0,4,0.0,8,111,1,0,,4.0,0.0,0.0,807.5578590753372,0.0,0.0,30669.699999999997,0,31,2,13018,201702385,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2813.1881535021885,0.0,600.0,0.0,0.0,20150.0,0,8,3,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.02633080398814913,0.04007731310547579,20150.0,5,3,5,5_0,5_4,5_0_0 +2386,2,62.0,4,0.0,6,111,1,0,52,9.0,0.0,0.0,543.755625110727,0.0,1498.6156849106098,45180.08,0,70,2,13019,201702386,736.0,736.0,,552.0,1.0,2.0,4.0,0.0,1.0,1.0,3362.7668282482914,0.0,404.0,847.0,0.0,34863.0,0,1,3,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2042.3713100213367,0.04520512823397693,0.05858277572272429,34863.0,9,5,9,9_0,9_4,9_0_0 +2387,2,49.0,2,0.0,5,300,2,0,64,8.0,0.0,0.0,557.2149227619826,0.0,1622.4682208536353,40047.55087530163,0,60,1,13020,201702387,,,164.0,,2.0,4.0,5.0,2.0,3.0,2.0,4266.1426679903825,0.0,414.0,917.0,0.0,57809.0,0,1,1,100.0,0,0.0,2,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2179.683143615618,0.0544273768551446,0.03770491002466083,28904.5,8,4,8,8_1,8_0,8_0_0 +2388,2,27.0,3,0.0,1,112,4,84,48,2.0,0.0,0.0,2757.9182957050434,185.7788039145384,353.8453313179273,43808.1499841551,42,50,1,13021,201702388,,,,,1.0,0.0,3.0,0.0,2.0,1.5,3981.584574044891,341.0696248538288,1908.0,0.0,0.0,24705.0,3,1,1,60.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3297.5424309375094,0.07527235074136188,0.13347672256375265,16470.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2389,2,43.0,1,0.0,4,112,2,0,43,10.0,0.0,0.0,752.3747387051891,26.539829130648343,0.0,26339.44,0,31,1,13022,201702389,,,201.0,,1.0,0.0,4.0,0.0,1.0,1.0,1921.335330831328,0.0,559.0,0.0,0.0,39653.0,0,1,1,90.0,4,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,778.9145678358375,0.029572176471323517,0.019643269559323065,39653.0,9,5,9,9_1,9_0,9_0_1 +2390,2,39.0,2,0.0,9,112,2,34,38,10.0,0.0,0.0,605.6683943065029,0.0,1783.4765175795687,52885.200000000004,41,20,1,13023,201702390,,,,1000.0,2.0,0.0,5.0,1.0,3.0,1.8,1981.3990465403517,0.0,450.0,1008.0,0.0,83853.0,1,1,3,105.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2389.144911886072,0.04517605893304879,0.028492062441249234,46585.0,10,5,10,10_1,10_2,10_0_0 +2391,1,35.0,3,441.0,99,111,1,0,81,2.0,0.0,0.0,387.6277723561618,0.0,318.4779495677801,16114.380000000001,0,50,2,13025,201702391,,,,,1.0,0.0,5.0,3.0,4.0,1.9,529.8854431692197,0.0,288.0,180.0,0.0,20820.0,0,4,3,80.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,706.1057219239419,0.043818361111252306,0.03391478011162065,10957.894736842105,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2392,2,62.0,2,0.0,5,112,4,77,72,6.0,0.0,0.0,1345.929765125562,0.0,0.0,55675.45999999999,42,60,1,13026,201702392,,,246.0,,0.0,2.0,4.0,0.0,2.0,1.5,2169.5260888550897,0.0,1000.0,0.0,0.0,34889.0,5,5,1,90.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1345.929765125562,0.024174560302250975,0.038577481874675745,23259.333333333332,6,3,6,6_1,6_1,6_0_0 +2393,1,51.0,4,400.0,4,111,1,0,46,2.0,0.0,0.0,1130.581002705472,0.0,4954.101437721024,27158.22,0,42,2,13027,201702393,,,1200.0,,1.0,0.0,3.0,2.0,3.0,1.8,696.247694838501,0.0,840.0,2800.0,0.0,20310.0,0,1,3,60.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,6084.682440426496,0.22404570109626096,0.2995904697403494,11283.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2394,1,36.0,4,462.0,1,221,2,0,63,3.0,793.228004569441,0.0,2131.95274795889,0.0,0.0,15122.66,0,50,1,13029,201702394,,,400.0,,1.0,0.0,4.0,3.0,4.0,2.1,633.3387540197072,0.0,1584.0,0.0,0.0,28625.0,0,4,3,80.0,1,1.0,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2925.180752528331,0.1934303060789789,0.10218972061234345,13630.95238095238,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +2395,2,25.0,3,0.0,99,400,2,0,42,4.0,0.0,0.0,1480.522741638118,0.0,70.77287768172891,28277.84,0,31,1,1303,201702395,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4323.4948621145895,0.0,1100.0,40.0,0.0,17480.0,0,1,3,47.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1551.295619319847,0.05485905639609839,0.08874688897710795,17480.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2396,2,55.0,3,0.0,4,111,2,52,46,8.0,0.0,0.0,1111.7379859937141,0.0,3589.9542204056993,40674.48448356445,50,50,1,13030,201702396,,,298.0,,2.0,2.0,5.0,1.0,3.0,2.0,2022.7226409546424,0.0,826.0,2029.0,0.0,57610.0,1,4,1,120.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4701.692206399413,0.11559316033370381,0.08161243198054875,28805.0,8,4,8,8_1,8_3,8_0_1 +2397,2,63.0,4,0.0,1,111,2,77,43,6.0,0.0,777.2387389555264,121.13367886130058,0.0,0.0,17435.920000000002,71,70,1,13031,201702397,,,,320.0,1.0,7.0,3.0,0.0,2.0,1.5,1833.9821249916135,0.0,90.0,0.0,0.0,34200.0,6,1,3,75.0,7,6.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,898.372417816827,0.05152423375519198,0.02626819935136921,22800.0,6,3,6,6_1,6_2,6_1_0 +2398,2,63.0,1,0.0,7,112,2,75,74,10.0,0.0,0.0,1000.0258154882926,0.0,3076.8508572131645,75687.5244,41,50,1,13036,201702398,,,298.0,,0.0,3.0,6.0,0.0,2.0,1.5,1501.3613806328547,0.0,743.0,1739.0,0.0,90627.0,5,5,1,130.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4076.876672701457,0.05386457946696242,0.0449852325764006,60418.0,10,5,10,10_1,10_0,10_0_0 +2399,2,43.0,3,0.0,9,111,5,52,21,4.0,0.0,929.9106341075047,1633.9587348624323,159.23897478389006,0.0,34994.06,50,71,1,13037,201702399,,,534.0,,2.0,0.0,6.0,2.0,4.0,2.1,3574.878507102419,0.0,1214.0,0.0,0.0,37390.0,1,1,2,150.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2723.1083437538273,0.07781630207394705,0.07282985674655863,17804.761904761905,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2400,2,60.0,3,0.0,6,112,5,77,78,5.0,0.0,0.0,1394.3832366700822,0.0,0.0,15098.281750603257,50,50,1,13038,201702400,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1911.4570632557081,0.0,1036.0,0.0,0.0,28424.0,6,5,1,89.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1394.3832366700822,0.09235376976683914,0.049056545055941536,18949.333333333332,5,3,5,5_1,5_0,5_0_0 +2401,2,65.0,3,0.0,1,112,4,56,78,6.0,0.0,0.0,807.5578590753372,106.15931652259337,0.0,28379.08,60,41,1,13039,201702401,,,152.0,,1.0,6.0,2.0,0.0,2.0,1.5,2146.661855823171,0.0,600.0,0.0,0.0,33802.0,1,5,2,80.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,913.7171755979306,0.032196856825447845,0.02703145303822054,22534.666666666668,6,3,6,6_1,6_0,6_1_0 +2402,2,79.0,3,0.0,99,112,1,0,86,3.0,0.0,0.0,1550.5110894246473,0.0,1946.2541362475451,13576.800315994116,0,70,1,13041,201702402,,,,,0.0,3.0,4.0,0.0,1.0,1.0,1541.25521785548,0.0,1152.0,1100.0,0.0,13680.0,0,5,1,70.0,10,1.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3496.765225672192,0.25755444171575803,0.2556114931046924,13680.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +2403,1,33.0,3,382.0,99,112,1,0,68,3.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,12333.670875301626,0,50,2,13042,201702403,,,360.0,27.0,1.0,0.0,4.0,3.0,4.0,2.1,800.3737914292626,720.0,0.0,0.0,0.0,28388.0,0,1,3,116.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1147.8164831753188,0.0930636543475341,0.04043315778411014,13518.095238095237,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2404,2,36.0,4,0.0,9,112,5,85,38,5.0,0.0,680.0838965860855,2180.4062195034103,0.0,0.0,34659.39349974937,31,20,1,13043,201702404,,,500.0,,1.0,0.0,4.0,3.0,5.0,2.4,3141.023379735127,0.0,1620.0,0.0,0.0,46096.0,6,1,1,126.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2860.490116089496,0.08253145330169095,0.06205506152571798,19206.666666666668,5,3,5,5_1,5_1,5_0_0 +2405,1,27.0,4,368.0,9,112,5,0,56,1.0,0.0,0.0,1615.1157181506744,0.0,0.0,10770.580000000002,0,50,1,13044,201702405,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1283.3978021042874,0.0,1200.0,0.0,0.0,12966.0,0,4,3,54.0,8,1.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1615.1157181506744,0.14995624359604348,0.12456545720736345,9973.846153846154,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +2406,1,47.0,4,447.0,9,112,2,0,62,1.0,0.0,0.0,436.08124390068207,0.0,1358.8392514891952,20331.4,31,30,1,13045,201702406,,,,,2.0,0.0,4.0,3.0,5.0,2.6,2364.1545063326353,0.0,324.0,768.0,0.0,26770.0,4,4,2,90.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1794.9204953898773,0.08828317259951982,0.06704970098580042,10296.153846153846,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2407,2,74.0,2,0.0,3,300,2,78,77,4.0,1745.1016100527704,0.0,658.1596551463998,0.0,0.0,17304.68,70,71,1,13046,201702407,,,217.0,,0.0,3.0,5.0,0.0,2.0,1.5,2765.2697667904345,0.0,489.0,0.0,0.0,25631.0,5,5,1,90.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2403.2612651991703,0.13887926648739937,0.09376385100851198,17087.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +2408,1,55.0,4,280.0,9,112,2,0,65,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,12647.4,0,60,2,13048,201702408,,,200.0,70.0,1.0,1.0,3.0,1.0,2.0,1.5,1404.906467411858,1200.0,0.0,0.0,0.0,27620.0,0,1,3,72.0,9,3.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1913.0274719588647,0.15125855685428347,0.0692623994192203,18413.333333333332,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +2409,2,36.0,2,0.0,6,111,2,85,53,3.0,0.0,0.0,323.0231436301349,0.0,375.09625171316327,33304.2,41,42,1,13054,201702409,,,,681.0,1.0,0.0,6.0,3.0,5.0,2.4,1622.38259023896,0.0,240.0,212.0,0.0,35501.0,6,1,3,110.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,698.1193953432982,0.02096190256313913,0.01966478114259593,14792.083333333334,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +2410,2,54.0,2,0.0,4,112,2,46,52,10.0,0.0,0.0,876.2002770967408,0.0,2155.0341254086457,51186.476658454034,41,44,1,13057,201702410,,,624.0,,2.0,2.0,6.0,0.0,2.0,1.5,1685.6208403593262,0.0,651.0,1218.0,0.0,57405.0,4,1,1,120.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3031.2344025053862,0.05921943842182275,0.05280436203301779,38270.0,9,5,9,9_1,9_2,9_0_1 +2411,1,36.0,4,140.0,9,111,2,0,56,3.0,0.0,0.0,874.8543473316153,0.0,0.0,8969.1658467513,0,50,2,13059,201702411,,,250.0,220.0,1.0,0.0,3.0,1.0,2.0,1.3,813.1225582539811,0.0,650.0,0.0,0.0,19410.0,0,1,3,61.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,874.8543473316153,0.0975402130230978,0.04507235174299924,14930.76923076923,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2412,2,50.0,3,0.0,1,111,2,63,38,7.0,0.0,224.84406376927726,2371.52824615124,0.0,123.8525359430256,41961.25,50,12,1,13060,201702412,,,210.0,,2.0,0.0,7.0,2.0,4.0,2.3,1621.7877629697464,0.0,1762.0,70.0,0.0,55631.0,1,1,1,120.0,4,4.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2720.224845863543,0.06482706892343634,0.04889764422468665,24187.391304347828,7,4,7,7_1,7_2,7_1_0 +2413,2,37.0,2,0.0,4,111,1,0,54,1.0,0.0,0.0,26.91859530251124,0.0,265.39829130648343,10522.822505205331,0,50,2,13062,201702413,,,,136.0,1.0,0.0,3.0,2.0,3.0,1.6,713.1276509539458,0.0,20.0,150.0,0.0,10150.0,0,4,3,96.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,292.31688660899465,0.02777932312973958,0.028799693261969916,6343.75,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +2414,2,49.0,3,0.0,7,120,5,54,21,5.0,0.0,0.0,1142.6943705916021,0.0,0.0,37301.457541968295,50,50,1,13063,201702414,,,372.0,,2.0,1.0,4.0,2.0,4.0,2.3,3746.210344789915,0.0,849.0,0.0,0.0,45651.0,1,1,1,152.0,0,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1142.6943705916021,0.03063404075580542,0.025031091774366434,19848.26086956522,5,3,5,5_1,5_1,5_0_0 +2415,2,51.0,1,0.0,7,221,2,43,46,9.0,0.0,0.0,802.174140014835,0.0,3614.7247275943046,71146.24,30,50,1,13064,201702415,,,,,2.0,0.0,7.0,2.0,4.0,2.5,1654.155322027367,0.0,596.0,2043.0,0.0,81494.0,1,1,1,190.0,1,2.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4416.898867609139,0.06208197183166867,0.054199068245627154,32597.6,9,5,9,9_1,9_1,9_0_0 +2416,2,43.0,2,0.0,1,222,2,21,63,2.0,0.0,320.61097981915464,1944.868510606437,0.0,0.0,42048.2,44,50,1,13066,201702416,,,,,3.0,0.0,6.0,2.0,4.0,2.5,2033.3231526960383,0.0,1445.0,0.0,0.0,30796.0,1,1,1,120.0,1,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2265.4794904255914,0.05387815626889121,0.07356408268689413,12318.4,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2417,2,44.0,2,0.0,1,111,2,0,31,6.0,0.0,0.0,753.7206684703146,0.0,1769.3219420432229,34026.4058467513,0,20,1,13067,201702417,,,190.0,,1.0,0.0,5.0,2.0,3.0,1.8,582.646873216657,0.0,560.0,1000.0,0.0,39363.0,0,1,2,115.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2523.0426105135375,0.07414954790925786,0.0640968069129268,21868.333333333332,6,3,6,6_1,6_3,6_1_0 +2419,2,49.0,3,0.0,1,111,2,46,37,9.0,0.0,0.0,904.4648021643776,0.0,2229.345646974461,61214.219999999994,30,30,1,13069,201702419,,,540.0,,2.0,0.0,3.0,1.0,3.0,1.8,2342.8461103824848,0.0,672.0,1260.0,0.0,65710.0,1,1,2,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3133.8104491388385,0.05119415797732682,0.04769153019538637,36505.555555555555,9,5,9,9_1,9_4,9_1_0 +2420,2,69.0,3,0.0,6,112,5,0,71,2.0,0.0,0.0,180.3545885268253,88.46609710216114,0.0,9980.240000000002,0,70,1,13070,201702420,,,110.0,,0.0,0.0,2.0,0.0,1.0,1.0,2772.1930494581025,0.0,134.0,0.0,0.0,11892.0,0,5,1,50.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,268.82068562898644,0.026935292701276363,0.022605170335434445,11892.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2421,2,70.0,2,0.0,8,112,4,77,74,9.0,0.0,0.0,3281.37676737612,0.0,0.0,38303.520000000004,60,70,1,13071,201702421,,,315.0,,0.0,5.0,5.0,0.0,2.0,1.5,2159.3894673780924,0.0,2438.0,0.0,0.0,49713.0,5,5,1,100.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3281.37676737612,0.08566776023133434,0.06600641215328223,33142.0,9,5,9,9_1,9_0,9_0_0 +2422,2,47.0,3,0.0,6,400,2,63,46,4.0,2221.038412794435,0.0,592.2090966552472,42.46372660903735,0.0,40763.241750603265,43,50,1,13074,201702422,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2199.642839754852,0.0,440.0,0.0,0.0,43778.0,1,1,2,90.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2855.7112360587194,0.07005603856362717,0.06523165142443052,17511.2,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2423,2,87.0,1,0.0,5,111,6,78,,9.0,2200.4144846756294,0.0,915.2322402853821,150.21543287946963,0.0,38380.18,71,70,1,13079,201702423,,,351.0,,0.0,3.0,8.0,0.0,2.0,1.5,2387.1526407176143,0.0,680.0,0.0,0.0,47295.0,5,5,1,200.0,6,4.0,3,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3265.862157840481,0.08509241378858778,0.06905301105487854,31530.0,8,4,8,8_1,8_2,8_0_0 +2424,1,53.0,4,239.0,4,211,4,85,63,8.0,0.0,0.0,1211.3367886130059,0.0,0.0,25562.34476927276,71,50,8,1308,201702424,,,440.0,197.0,2.0,1.0,3.0,1.0,3.0,2.0,1950.9013793296047,0.0,900.0,0.0,0.0,59628.0,4,1,3,70.0,3,3.0,4,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1211.3367886130059,0.047387545999657055,0.020314898849751892,29814.0,8,4,8,8_0,8_1,8_0_1 +2425,2,17.0,3,0.0,9,400,5,55,43,2.0,0.0,399.7227800342707,1728.1738184212215,0.0,0.0,32824.76569949955,50,30,1,13080,201702425,,,402.0,,2.0,0.0,5.0,1.0,3.0,1.8,1941.6498121772208,0.0,1284.0,0.0,0.0,21576.0,1,1,2,106.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2127.8965984554925,0.06482594934372783,0.09862331286871953,11986.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2426,2,84.0,2,0.0,2,111,2,86,75,8.0,4237.424000409955,0.0,1005.5206313452652,49.54101437721024,536.9428396326666,27988.42684744477,70,44,1,13081,201702426,,,440.0,,0.0,2.0,5.0,0.0,2.0,1.5,1173.3797130039773,517.5563351347934,533.0,0.0,0.0,46284.0,5,5,1,100.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5829.428485765097,0.20827996219792183,0.125949107375445,30856.0,8,4,8,8_1,8_3,8_0_1 +2427,2,49.0,2,0.0,1,111,2,0,46,6.0,0.0,0.0,524.9126083989692,0.0,1415.4575536345783,33322.72,0,31,2,13085,201702427,,,,1090.0,1.0,0.0,3.0,2.0,3.0,2.0,3148.335892000008,0.0,390.0,800.0,0.0,46345.0,0,1,3,65.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1940.3701620335473,0.05822964518003174,0.0418679504160869,23172.5,6,3,6,6_0,6_4,6_1_0 +2428,2,79.0,3,0.0,5,112,4,0,72,7.0,0.0,0.0,2115.8015907773834,219.39592081335965,0.0,21096.94,0,60,1,13086,201702428,,,336.0,,0.0,3.0,6.0,0.0,1.0,1.0,2195.692165266707,0.0,1572.0,0.0,0.0,26280.0,0,5,1,110.0,8,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2335.197511590743,0.11068892036431555,0.08885835280025658,26280.0,7,4,7,7_1,7_1,7_0_0 +2429,1,44.0,3,270.0,4,111,1,55,63,4.0,0.0,0.0,1130.581002705472,0.0,1486.2304313163072,32582.040000000005,71,71,2,13088,201702429,,,,162.0,2.0,0.0,4.0,3.0,5.0,2.4,1108.728799642561,0.0,840.0,840.0,0.0,39510.0,1,1,3,74.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2616.811434021779,0.08031453629121377,0.06623162323517537,16462.5,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +2430,2,79.0,2,0.0,1,111,2,0,72,8.0,0.0,0.0,331.09872222088825,0.0,944.817917051081,9670.480000000001,0,50,1,13089,201702430,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2388.852013514391,0.0,246.0,534.0,0.0,27284.0,0,5,1,66.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1275.9166392719694,0.13193932868605998,0.04676428087054572,27284.0,7,4,7,7_1,7_3,7_1_0 +2431,0,39.0,3,0.0,1,111,1,46,62,8.0,0.0,0.0,0.0,0.0,0.0,33565.979999999996,30,50,2,1309,201702431,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2567.9271773714213,0.0,0.0,0.0,0.0,46650.0,1,1,5,90.0,8,7.0,4,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,25916.666666666664,7,4,7,7_0,7_3,7_1_0 +2432,2,40.0,2,0.0,1,111,2,56,63,3.0,0.0,0.0,807.5578590753372,0.0,1932.0995607111995,25966.20031599412,50,50,1,13090,201702432,,,480.0,,2.0,0.0,5.0,3.0,5.0,2.6,1557.1138546624766,0.0,600.0,1092.0,0.0,39855.0,1,1,2,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2739.6574197865366,0.10550859911910251,0.06874062024304445,15328.846153846152,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +2433,2,42.0,1,0.0,7,120,4,48,84,8.0,0.0,0.0,1251.7146815667727,0.0,0.0,57891.41831897886,31,42,1,13091,201702433,,,1337.0,,1.0,0.0,4.0,1.0,3.0,1.8,2150.553868644904,0.0,930.0,0.0,0.0,50419.0,1,3,2,90.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1251.7146815667727,0.02162176567638897,0.02482624965919143,28010.555555555555,8,4,8,8_1,8_0,8_0_0 +2434,2,39.0,2,0.0,8,111,2,85,38,8.0,0.0,0.0,1278.633276869284,0.0,0.0,31264.22,30,30,1,13095,201702434,,,340.0,,1.0,0.0,3.0,1.0,3.0,1.8,2794.6851377663606,0.0,950.0,0.0,0.0,46517.0,4,1,2,85.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1278.633276869284,0.040897654790980995,0.02748744065329415,25842.777777777777,7,4,7,7_1,7_2,7_0_0 +2435,2,56.0,2,0.0,99,112,2,21,21,9.0,0.0,0.0,1734.9034672468495,0.0,3876.5843750167014,27143.739999999998,60,50,1,13096,201702435,,,,,2.0,2.0,7.0,0.0,2.0,1.5,1500.0341278268133,0.0,1289.0,2191.0,0.0,42250.0,1,1,1,165.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5611.487842263551,0.20673230152748115,0.13281628029026157,28166.666666666668,8,4,8,8_1,8_0,8_0_0 +2436,2,84.0,2,0.0,4,111,2,78,78,8.0,1630.876777394771,0.0,479.1509963847001,265.39829130648343,0.0,18466.996658454027,71,71,1,13097,201702436,,,266.0,,0.0,1.0,3.0,0.0,2.0,1.5,2571.1180574898453,0.0,356.0,0.0,0.0,40022.0,5,5,1,70.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2375.426065085954,0.12863088183852056,0.059353007473038684,26681.333333333332,7,4,7,7_1,7_4,7_0_1 +2437,2,77.0,3,0.0,99,112,2,0,72,4.0,0.0,0.0,842.8919348805989,0.0,1570.7110589075019,23742.629912630247,0,71,1,13098,201702437,,,,,0.0,1.0,6.0,0.0,1.0,1.0,2341.8336334935098,1514.0,0.0,0.0,0.0,19533.0,0,5,1,85.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2413.602993788101,0.10165693533824358,0.12356540182194752,19533.0,5,3,5,5_1,5_1,5_0_0 +2438,2,66.0,2,0.0,99,111,1,77,64,7.0,0.0,0.0,1923.696526814449,0.0,3584.7672561695967,26891.077550505644,60,60,2,13099,201702438,,,,652.0,1.0,3.0,1.0,0.0,2.0,1.5,4085.8596843385094,3455.3380108087604,0.0,0.0,0.0,38152.0,5,1,3,28.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,5508.463782984046,0.20484354978480465,0.14438204505619748,25434.666666666668,7,4,7,7_0,7_4,7_0_0 +2439,2,86.0,3,0.0,3,211,2,86,78,6.0,0.0,0.0,961.1049490961217,0.0,1421.603810654278,19556.51234065455,70,70,1,131,201702439,,,180.0,,0.0,2.0,4.0,0.0,2.0,1.5,1695.2231928318872,517.5563351347934,500.0,500.0,0.0,35563.0,5,5,1,104.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2382.7087597503996,0.12183710051393812,0.06699965581504372,23708.666666666668,6,3,6,6_1,6_1,6_0_1 +2440,2,76.0,2,0.0,9,111,2,0,77,7.0,0.0,0.0,403.7789295376686,0.0,1415.4575536345783,13082.96,0,70,1,1310,201702440,,,180.0,,0.0,3.0,3.0,0.0,1.0,1.0,1396.480409154847,0.0,300.0,800.0,0.0,23598.0,0,5,1,93.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1819.2364831722468,0.13905389018786626,0.07709282495009097,23598.0,6,3,6,6_1,6_1,6_0_0 +2441,2,56.0,2,0.0,9,300,4,0,75,10.0,0.0,0.0,1533.014002478015,0.0,0.0,17381.54,0,31,1,13100,201702441,,,217.0,,0.0,1.0,4.0,0.0,1.0,1.0,2517.7937160629745,0.0,1139.0,0.0,0.0,39336.0,0,5,1,130.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1533.014002478015,0.08819782381066436,0.038972290077232435,39336.0,9,5,9,9_1,9_0,9_0_0 +2442,1,47.0,3,136.0,4,111,1,0,56,1.0,0.0,0.0,397.0492807120408,0.0,0.0,25210.839999999997,0,42,2,13104,201702442,,,,196.0,1.0,0.0,3.0,3.0,4.0,2.5,890.3805871019326,0.0,295.0,0.0,0.0,25805.0,0,1,3,67.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,397.0492807120408,0.01574914920375683,0.01538652511962956,10322.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +2443,2,72.0,4,0.0,1,111,2,0,75,3.0,0.0,0.0,1534.3599322431405,0.0,0.0,14912.56,0,60,2,13105,201702443,,,144.0,,0.0,1.0,3.0,0.0,1.0,1.0,3909.8810164329893,0.0,1140.0,0.0,0.0,15195.0,0,5,1,70.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1534.3599322431405,0.10289044484938471,0.10097794881494837,15195.0,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +2444,2,36.0,2,0.0,4,111,2,52,65,6.0,0.0,0.0,807.5578590753372,0.0,2760.1422295874277,22793.56,71,50,2,13107,201702444,,,,621.0,2.0,0.0,3.0,2.0,4.0,2.1,2993.5385546649427,0.0,600.0,1560.0,0.0,46036.0,1,1,3,66.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3567.7000886627648,0.15652228474458418,0.07749804693419855,21921.90476190476,6,3,6,6_0,6_4,6_0_1 +2445,2,60.0,4,0.0,2,111,1,0,47,8.0,0.0,0.0,516.8370298082158,0.0,0.0,27235.42,0,42,2,13108,201702445,,,,,1.0,3.0,3.0,0.0,1.0,1.0,2987.72765557702,0.0,384.0,0.0,0.0,31849.0,0,1,1,68.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,516.8370298082158,0.018976649884900464,0.01622773179089503,31849.0,8,4,8,8_0,8_4,8_0_1 +2446,1,68.0,4,272.0,4,111,2,0,72,2.0,0.0,0.0,3138.7082122728107,0.0,0.0,11545.047849749777,0,44,1,13109,201702446,,,,258.0,0.0,2.0,3.0,0.0,1.0,1.0,1672.5167605531117,0.0,2332.0,0.0,0.0,12830.0,0,5,3,75.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,3138.7082122728107,0.27186619346413865,0.2446382082831497,12830.0,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +2447,2,43.0,2,0.0,9,400,2,56,64,2.0,0.0,0.0,796.1264642531415,0.0,1483.5646064978387,32118.099999999995,50,71,1,1311,201702447,,,370.0,,2.0,0.0,5.0,2.0,4.0,2.5,2544.6688661118064,1430.0,0.0,0.0,0.0,29337.0,1,1,2,125.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2279.69107075098,0.07097839133544576,0.07770702766987013,11734.8,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2448,2,45.0,3,0.0,8,112,2,21,47,4.0,913.7986612639961,270.6456323148708,1810.2755340938809,0.0,0.0,80266.55999999998,44,44,1,13111,201702448,,,544.0,,2.0,0.0,5.0,2.0,4.0,2.5,2395.598408204442,0.0,1345.0,0.0,0.0,45955.0,1,1,2,160.0,6,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2994.7198276727477,0.037309681985533555,0.06516635464416816,18382.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2449,2,37.0,4,0.0,5,111,2,34,47,7.0,0.0,0.0,565.290501352736,0.0,1693.2410985353642,50810.05999999999,30,31,1,13112,201702449,,,510.0,,2.0,0.0,7.0,2.0,4.0,2.1,2237.4141929104267,0.0,420.0,957.0,0.0,51993.0,1,1,2,120.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2258.5315998881,0.04445048086713735,0.04343914757540631,24758.571428571428,7,4,7,7_1,7_2,7_0_0 +2450,2,52.0,2,0.0,7,111,4,77,48,9.0,0.0,0.0,2293.4643197739574,0.0,0.0,73247.5,60,50,1,13113,201702450,,,,,2.0,1.0,4.0,1.0,3.0,2.0,2591.958598898984,0.0,1704.0,0.0,0.0,65677.0,5,1,1,80.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2293.4643197739574,0.03131116174304867,0.034920357503752567,32838.5,9,5,9,9_1,9_2,9_0_0 +2451,2,52.0,3,0.0,3,120,6,78,64,5.0,0.0,0.0,646.0462872602698,81.38880933398825,0.0,15954.08,70,50,1,13114,201702451,,,684.0,697.0,1.0,4.0,3.0,0.0,2.0,1.5,2075.008568457854,0.0,480.0,0.0,0.0,32410.0,7,1,3,65.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,727.435096594258,0.04559555277360136,0.022444773113059487,21606.666666666668,6,3,6,6_1,6_0,6_0_1 +2452,2,76.0,3,0.0,8,400,5,78,78,5.0,0.0,392.7831484364535,1234.2175946201403,233.5504963497054,0.0,16333.039999999999,70,70,1,13115,201702452,,,615.0,,0.0,2.0,7.0,0.0,2.0,1.5,2191.1382202827613,0.0,917.0,0.0,0.0,29651.0,5,5,1,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1860.5512394062991,0.11391334616252083,0.06274834708462781,19767.333333333332,5,3,5,5_1,5_0,5_0_0 +2453,2,53.0,3,0.0,1,112,5,13,48,6.0,0.0,111.0341055650752,991.9502368975392,276.0142229587428,0.0,27683.26816574389,50,50,1,13117,201702453,,,130.0,,2.0,2.0,6.0,1.0,3.0,2.0,1645.7588932060037,0.0,737.0,0.0,0.0,41747.0,1,1,1,86.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1378.9985654213572,0.04981343088413858,0.033032279335553624,20873.5,5,3,5,5_1,5_0,5_1_0 +2454,1,66.0,3,154.0,1,111,2,77,78,6.0,0.0,0.0,629.895130078763,0.0,1201.3695986473483,65307.159999999996,70,71,1,13120,201702454,,,1200.0,224.0,2.0,1.0,4.0,2.0,4.0,2.5,3401.6720809754415,0.0,468.0,679.0,0.0,52778.0,5,5,3,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1831.2647287261113,0.028040795660477527,0.03469750139690991,21111.2,5,3,5,5_1,5_4,5_1_0 +2455,2,63.0,4,0.0,2,111,2,68,78,5.0,2221.038412794435,0.0,2035.0458048698497,143.31507730550106,0.0,23851.460000000003,50,50,1,13122,201702455,,,376.0,,2.0,1.0,5.0,1.0,3.0,2.0,3687.0761382318724,0.0,1512.0,0.0,0.0,40530.0,1,5,2,140.0,4,3.0,4,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4399.399294969786,0.18444989509949433,0.10854673809449263,20265.0,5,3,5,5_1,5_1,5_0_1 +2456,2,68.0,3,0.0,8,112,4,77,75,6.0,0.0,0.0,3764.5655530561967,0.0,0.0,95884.98000000001,70,50,1,13125,201702456,,,392.0,,0.0,2.0,5.0,0.0,2.0,1.5,1578.3777599209411,0.0,2797.0,0.0,0.0,32404.0,5,5,1,145.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3764.5655530561967,0.03926126441342738,0.11617595213727307,21602.666666666668,6,3,6,6_1,6_0,6_0_0 +2457,2,38.0,2,0.0,1,111,2,46,63,10.0,0.0,0.0,1776.6272899657417,0.0,0.0,45368.94,10,60,2,13128,201702457,,,,1180.0,2.0,2.0,4.0,0.0,2.0,1.5,3742.9525302190486,0.0,1320.0,0.0,0.0,64740.0,4,1,3,80.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1776.6272899657417,0.03915955034359942,0.027442497528046676,43160.0,10,5,10,10_0,10_4,10_1_0 +2458,2,41.0,3,0.0,99,221,4,56,46,3.0,0.0,0.0,1615.1157181506744,0.0,0.0,49384.115927436185,42,60,1,13129,201702458,,,1000.0,,2.0,0.0,4.0,2.0,4.0,2.1,2754.8001988175924,0.0,1200.0,0.0,0.0,29324.0,1,1,2,100.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.0327051661818526,0.05507828802860027,13963.809523809523,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +2459,2,44.0,3,0.0,8,120,4,0,62,7.0,0.0,138.792631956344,1938.1388617808093,0.0,123.8525359430256,9933.173696501075,0,50,1,13130,201702459,,,,,1.0,0.0,6.0,0.0,1.0,1.0,1947.7332637698357,0.0,1440.0,70.0,0.0,27050.0,0,1,2,98.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2200.7840296801787,0.22155899986480626,0.08135985322292713,27050.0,7,4,7,7_1,7_0,7_0_0 +2460,2,67.0,4,0.0,1,120,5,77,69,5.0,0.0,69.396315978172,304.180126918377,0.0,0.0,12429.830875301626,71,50,5,13131,201702460,,,,,1.0,2.0,5.0,0.0,3.0,2.0,3813.5389305917806,0.0,226.0,0.0,0.0,38900.0,5,5,1,57.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,373.576442896549,0.03005482911588559,0.009603507529474267,19450.0,5,3,5,5_1,5_0,5_1_0 +2461,2,78.0,3,0.0,1,400,2,0,71,4.0,2379.684013708323,0.0,220.73248148059216,106.15931652259337,0.0,17334.71202733072,0,71,1,13133,201702461,,,120.0,,0.0,3.0,4.0,0.0,1.0,1.0,2664.3711224410167,0.0,164.0,0.0,0.0,18350.0,0,5,1,100.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2706.5758117115083,0.1561361854436459,0.14749731943931926,18350.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2462,2,65.0,3,0.0,6,112,4,56,75,7.0,0.0,0.0,2519.580520315052,0.0,0.0,34304.8,70,70,2,13134,201702462,,,,,1.0,1.0,3.0,0.0,2.0,1.5,1703.070623049541,0.0,1872.0,0.0,0.0,40237.0,5,5,1,87.0,9,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2519.580520315052,0.07344687974613033,0.0626184984048277,26824.666666666668,7,4,7,7_0,7_1,7_0_0 +2463,1,39.0,2,300.0,5,111,2,85,53,2.0,0.0,0.0,363.4010365839017,0.0,2494.7439382809443,20586.78932216843,43,43,2,13135,201702463,,,,146.0,1.0,0.0,4.0,2.0,4.0,2.1,2016.3967305368878,0.0,270.0,1410.0,0.0,27397.0,6,1,3,70.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2858.144974864846,0.1388339352065509,0.1043232826537521,13046.190476190475,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2464,2,75.0,2,0.0,5,112,2,0,74,7.0,0.0,0.0,545.1015548758526,0.0,1760.4753323330067,24115.379999999997,0,20,1,13138,201702464,,,363.0,,0.0,0.0,5.0,0.0,1.0,1.0,2346.3048490259866,0.0,405.0,995.0,0.0,24337.0,0,5,1,100.0,7,0.0,1,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2305.5768872088593,0.09560607741652255,0.09473545988449107,24337.0,7,4,7,7_1,7_0,7_0_0 +2465,2,70.0,3,0.0,99,112,4,0,75,3.0,0.0,0.0,2395.7549819235,0.0,0.0,37618.86000000001,0,71,1,13140,201702465,,,130.0,,0.0,4.0,4.0,0.0,1.0,1.0,2179.653599937067,0.0,1780.0,0.0,0.0,15211.0,0,5,1,62.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2395.7549819235,0.06368494372034399,0.1575014780043061,15211.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2466,2,66.0,1,0.0,4,111,1,77,77,8.0,0.0,0.0,1549.1651596595218,0.0,0.0,35660.14,70,60,2,13141,201702466,751.0,751.0,,450.0,0.0,4.0,4.0,0.0,2.0,1.5,2784.2715750831603,0.0,1151.0,0.0,0.0,45634.0,5,5,3,133.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1549.1651596595218,0.043442486755787324,0.033947608354725024,30422.666666666668,8,4,8,8_0,8_4,8_0_1 +2467,2,79.0,2,0.0,2,111,1,67,74,8.0,0.0,0.0,161.51157181506744,0.0,1043.8999458055016,22769.280899633875,50,41,8,13143,201702467,510.0,510.0,,396.0,1.0,3.0,3.0,0.0,2.0,1.5,3142.9630922684146,0.0,120.0,590.0,0.0,39090.0,1,5,3,77.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1205.4115176205692,0.05294025414917482,0.030836825725775625,26060.0,7,4,7,7_0,7_4,7_0_1 +2468,2,75.0,1,0.0,6,120,5,86,74,9.0,0.0,41.637789586903196,2884.5546253097746,0.0,3289.8235102492713,45134.436623269394,70,41,1,13144,201702468,,,437.0,,0.0,2.0,6.0,0.0,2.0,1.5,1696.2647916418116,128.53840408158098,2090.0,1784.0,0.0,54592.0,5,5,1,120.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6216.015925145949,0.13772224470264544,0.11386312875780241,36394.666666666664,9,5,9,9_1,9_0,9_0_0 +2469,2,60.0,4,0.0,8,111,2,85,69,1.0,0.0,0.0,2018.894647688343,0.0,1061.5931652259337,25321.22,71,71,1,13147,201702469,,,344.0,,3.0,2.0,6.0,5.0,7.0,4.0,2612.5573741099206,0.0,1500.0,600.0,0.0,36230.0,6,1,1,136.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3080.4878129142767,0.1216563740970726,0.08502588498245313,9057.5,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2470,2,70.0,3,0.0,99,111,1,0,77,3.0,0.0,0.0,488.572504740579,0.0,1040.3613019214151,17632.4,0,70,2,13148,201702470,,,,496.0,0.0,4.0,3.0,0.0,1.0,1.0,3482.6746491101517,0.0,363.0,588.0,0.0,15535.0,0,5,3,80.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1528.9338066619941,0.086711610822236,0.09841865507962627,15535.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +2471,2,61.0,4,0.0,6,112,5,56,78,6.0,0.0,277.585263912688,2072.7318382933654,583.8762408742635,0.0,41693.4,50,71,1,13149,201702471,,,,,1.0,3.0,5.0,0.0,2.0,1.5,3475.9114258148443,0.0,1540.0,0.0,0.0,31650.0,1,5,1,104.0,7,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2934.193343080317,0.07037548732126228,0.09270753058705583,21100.0,5,3,5,5_1,5_0,5_0_0 +2472,2,73.0,3,0.0,5,111,2,72,72,3.0,0.0,0.0,497.99401309645793,0.0,1238.525359430256,22993.918839019716,70,71,1,13151,201702472,,,410.0,,0.0,1.0,5.0,0.0,2.0,1.5,2261.8303850350803,0.0,370.0,700.0,0.0,21735.0,5,5,1,100.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1736.519372526714,0.0755208098577748,0.0798950711997568,14490.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +2473,1,36.0,3,426.0,99,111,1,67,68,2.0,0.0,0.0,969.0694308904046,0.0,530.7965826129669,28080.62,60,71,2,13152,201702473,,,,107.0,2.0,0.0,3.0,4.0,6.0,2.7,1191.3941277818449,0.0,720.0,300.0,0.0,34822.0,1,1,3,57.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1499.8660135033715,0.053412852476311834,0.043072368430973854,12897.037037037036,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +2474,2,49.0,4,0.0,2,111,1,0,52,3.0,0.0,0.0,1103.6624074029608,0.0,265.39829130648343,68716.45999999999,0,50,2,13153,201702474,,,,427.0,1.0,0.0,4.0,3.0,4.0,2.3,527.7703940620147,0.0,820.0,150.0,0.0,34180.0,0,1,3,80.0,7,6.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1369.0606987094443,0.019923329850074414,0.04005443823023535,14860.869565217392,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +2475,2,46.0,1,0.0,1,120,2,0,37,10.0,0.0,0.0,780.639263772826,26.539829130648343,0.0,24521.0,0,31,1,13154,201702475,,,313.0,,1.0,0.0,3.0,0.0,1.0,1.0,2781.9384552078045,0.0,580.0,0.0,0.0,57609.0,0,1,1,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,807.1790929034744,0.0329178701073967,0.014011336647111986,57609.0,10,5,10,10_1,10_0,10_1_0 +2476,2,81.0,2,0.0,1,300,5,71,71,5.0,0.0,0.0,686.4241802140366,162.7776186679765,0.0,10765.6,71,70,1,13155,201702476,,,118.0,,0.0,2.0,4.0,0.0,2.0,1.5,1766.8602779110286,0.0,510.0,0.0,0.0,27132.0,5,5,1,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,849.2017988820131,0.07888104693486783,0.031298901624724054,18088.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2477,2,74.0,3,0.0,9,211,4,78,75,5.0,0.0,0.0,876.2002770967408,123.8525359430256,0.0,12871.698002984745,70,71,1,13156,201702477,,,289.0,,0.0,6.0,3.0,0.0,2.0,1.5,1799.0192813558342,0.0,651.0,0.0,0.0,27996.0,5,5,3,74.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1000.0528130397664,0.07769393073142873,0.03572127493355359,18664.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2478,0,29.0,1,0.0,1,300,5,69,69,4.0,0.0,832.755791738064,807.5578590753372,0.0,0.0,18838.713500458492,43,50,1,13158,201702478,,,92.0,,2.0,0.0,9.0,0.0,2.0,1.5,2710.3059970815707,0.0,600.0,0.0,0.0,26565.0,1,1,5,250.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1640.3136508134012,0.08707142612331142,0.06174717300257486,17710.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2479,1,30.0,3,271.0,2,111,4,0,55,6.0,0.0,0.0,1376.8861497234498,0.0,0.0,19433.24,0,31,2,13160,201702479,,,,530.0,1.0,0.0,1.0,1.0,2.0,1.3,948.0363548807845,0.0,1023.0,0.0,0.0,26843.0,0,4,3,23.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1376.8861497234498,0.07085211471290684,0.051294048717485,20648.46153846154,5,3,5,5_0,5_4,5_0_1 +2480,2,60.0,3,0.0,6,112,5,78,75,7.0,0.0,340.04194829304276,1179.0344742499922,265.39829130648343,0.0,45639.81652105042,60,50,1,13162,201702480,,,650.0,,0.0,4.0,5.0,0.0,2.0,1.5,2275.2244828808707,0.0,876.0,0.0,0.0,40329.0,6,5,1,99.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1784.4747138495181,0.03909907729419697,0.04424792863322964,26886.0,7,4,7,7_1,7_1,7_0_0 +2481,2,85.0,3,0.0,1,111,2,74,74,9.0,6028.532834727753,0.0,1287.918915427902,0.0,962.80935712698,28203.287408229473,30,20,1,13163,201702481,,,300.0,,0.0,7.0,8.0,0.0,2.0,1.5,1926.6932766761365,621.067602161752,700.0,180.0,0.0,62898.0,5,5,1,170.0,8,6.0,3,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,8279.261107282635,0.29355659811724,0.1316299581430671,41932.0,10,5,10,10_1,10_2,10_1_0 +2482,2,82.0,3,0.0,1,120,5,0,71,5.0,0.0,0.0,2072.7318382933654,268.9369351905699,0.0,9847.880315994116,0,60,1,13164,201702482,,,101.0,,0.0,0.0,3.0,0.0,1.0,1.0,2635.8480375646072,0.0,1540.0,0.0,0.0,18226.0,0,5,1,100.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2341.668773483935,0.2377840406610943,0.12847957716909553,18226.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2483,1,48.0,4,354.0,4,111,1,85,21,3.0,0.0,0.0,1615.1157181506744,0.0,318.4779495677801,38920.720000000016,71,50,2,13165,201702483,,,,146.0,2.0,1.0,6.0,5.0,8.0,4.1,3015.392962774096,0.0,1200.0,180.0,0.0,57531.0,6,1,3,130.0,8,7.0,5,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1933.5936677184545,0.04968031597869859,0.03360959600421433,14031.951219512197,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2484,2,26.0,3,0.0,9,400,4,52,63,8.0,0.0,0.0,1386.3076580793288,56.61830214538313,0.0,26861.987849749774,42,44,1,13168,201702484,,,78.0,,2.0,0.0,5.0,0.0,2.0,1.5,1392.991780775827,0.0,1030.0,0.0,0.0,43080.0,1,1,3,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1442.9259602247118,0.05371627625980603,0.03349410306928301,28720.0,8,4,8,8_1,8_0,8_0_0 +2485,2,57.0,4,0.0,1,112,2,0,52,1.0,2855.620816449988,0.0,267.8400232599868,123.8525359430256,0.0,13642.76,0,31,1,13169,201702485,,,20.0,,1.0,2.0,6.0,0.0,1.0,1.0,2723.47808208003,0.0,199.0,0.0,0.0,9971.0,0,1,1,234.0,9,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3247.3133756530005,0.2380246647784613,0.32567579737769536,9971.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2486,2,44.0,2,0.0,2,111,6,0,38,9.0,0.0,0.0,1104.86223643495,0.0,2560.5269750528137,28099.150354896774,0,12,2,13171,201702486,,,305.0,,1.0,2.0,3.0,0.0,1.0,1.0,3452.5980147447754,1588.0712504272747,164.0,516.0,0.0,36200.0,0,1,2,55.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3665.3892114877635,0.13044484139887896,0.10125384562120894,36200.0,9,5,9,9_0,9_3,9_0_1 +2487,1,24.0,1,101.0,2,111,2,84,46,4.0,0.0,0.0,2422.6735772260117,0.0,0.0,38060.659999999996,33,31,1,13172,201702487,,,,,1.0,0.0,5.0,0.0,2.0,1.5,3004.9318386621458,0.0,1800.0,0.0,0.0,26374.0,3,1,1,65.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,2422.6735772260117,0.06365295760047282,0.09185840514241343,17582.666666666668,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +2488,2,83.0,3,0.0,1,211,2,0,77,6.0,0.0,0.0,422.62194624942646,0.0,1910.8676974066807,19592.599999999995,0,50,1,13174,201702488,,,200.0,,0.0,4.0,5.0,0.0,1.0,1.0,1283.722733331376,0.0,314.0,1080.0,0.0,20590.0,0,5,1,102.0,3,3.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2333.489643656107,0.1191005606022737,0.11333121144517276,20590.0,5,3,5,5_1,5_1,5_1_0 +2489,2,40.0,3,0.0,1,300,5,47,47,8.0,0.0,277.585263912688,1732.2116077165983,0.0,0.0,53380.83331690806,42,31,1,13175,201702489,,,890.0,,2.0,0.0,3.0,2.0,4.0,2.1,1715.7684694997345,0.0,1287.0,0.0,0.0,58194.0,1,1,1,90.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2009.7968716292862,0.037650159181623254,0.03453615272415174,27711.42857142857,8,4,8,8_1,8_0,8_1_0 +2490,0,34.0,2,0.0,1,112,6,0,62,6.0,0.0,0.0,2691.859530251124,0.0,0.0,11649.870875301629,0,50,1,13176,201702490,,,300.0,,1.0,0.0,5.0,1.0,2.0,1.3,2166.946093588734,0.0,2000.0,0.0,0.0,29330.0,0,1,5,80.0,8,2.0,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2691.859530251124,0.23106346491427773,0.09177836789127596,22561.53846153846,6,3,6,6_1,6_1,6_1_0 +2491,2,62.0,4,0.0,1,111,2,85,31,1.0,0.0,0.0,215.3487624200899,0.0,1601.2363575491167,58522.1,20,12,2,13179,201702491,,,,,1.0,3.0,6.0,2.0,4.0,2.5,3382.9427578571213,0.0,160.0,905.0,0.0,17158.0,6,1,1,167.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1816.5851199692067,0.031041010489528002,0.10587394334824611,6863.2,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +2492,0,41.0,3,0.0,3,111,1,53,46,2.0,0.0,0.0,0.0,0.0,0.0,41847.380000000005,60,30,2,1318,201702492,,,,,2.0,0.0,3.0,3.0,5.0,2.6,2815.0681297952437,0.0,0.0,0.0,0.0,27909.0,1,1,5,80.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,10734.23076923077,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +2493,2,52.0,3,0.0,3,111,4,21,46,9.0,0.0,0.0,2018.894647688343,0.0,0.0,44504.08,60,42,1,13181,201702493,,,550.0,,2.0,2.0,4.0,0.0,2.0,1.5,2369.9719442762175,0.0,1500.0,0.0,0.0,57778.0,1,1,1,180.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2018.894647688343,0.045364259809175765,0.034942272970479124,38518.666666666664,9,5,9,9_1,9_4,9_0_1 +2494,2,68.0,2,0.0,2,111,2,77,72,8.0,2633.5169751705444,0.0,2166.225680994481,0.0,1654.0094254896799,56984.17641038625,50,50,1,13183,201702494,,,230.0,,0.0,2.0,5.0,0.0,2.0,1.5,1801.3654528651182,1594.2908506247707,950.0,0.0,0.0,48980.0,5,5,1,150.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,6453.752081654706,0.1132551611376524,0.13176300697539212,32653.333333333332,9,5,9,9_1,9_3,9_0_1 +2495,2,67.0,2,0.0,1,112,2,0,77,9.0,0.0,0.0,672.964882562781,0.0,1769.3219420432229,28612.544177580945,0,42,1,13184,201702495,,,250.0,,0.0,3.0,4.0,0.0,1.0,1.0,2064.2867287192284,0.0,500.0,1000.0,0.0,32302.0,0,5,1,75.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2442.286824606004,0.08535720589711249,0.07560791358448406,32302.0,9,5,9,9_1,9_2,9_1_0 +2496,2,74.0,2,0.0,1,400,2,71,75,7.0,1031.1964059402735,0.0,992.913330271673,0.0,751.7199754857332,40262.96558642268,71,41,1,13186,201702496,,,200.0,,0.0,3.0,5.0,0.0,2.0,1.5,1671.7951706023346,724.5788691887108,438.0,0.0,0.0,38531.0,5,5,1,123.0,0,0.0,3,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2775.8297116976796,0.06894250513513425,0.07204146561723494,25687.333333333332,7,4,7,7_1,7_0,7_1_0 +2497,2,30.0,2,0.0,5,111,2,0,34,9.0,0.0,0.0,314.9475650393815,0.0,900.5848685000004,21344.260000000002,0,10,2,13187,201702497,,,256.0,480.0,1.0,0.0,2.0,0.0,1.0,1.0,1090.288232180462,0.0,234.0,509.0,0.0,42159.0,0,1,3,50.0,7,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1215.532433539382,0.056948914300115436,0.0288320983310653,42159.0,10,5,10,10_0,10_2,10_0_0 +2498,2,78.0,2,0.0,3,111,1,77,75,5.0,0.0,0.0,524.9126083989692,0.0,191.08676974066807,18766.94,70,70,2,13189,201702498,,,236.0,,0.0,0.0,3.0,0.0,2.0,1.5,2273.145732814475,0.0,390.0,108.0,0.0,29822.0,5,5,1,78.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,715.9993781396372,0.03815216429208157,0.024009099930911312,19881.333333333332,5,3,5,5_0,5_3,5_0_1 +2499,2,61.0,3,0.0,2,211,2,77,75,9.0,0.0,194.3096847388816,1670.1953795520453,0.0,3112.3733003451157,42006.600000000006,33,20,1,1319,201702499,,,595.0,,0.0,6.0,7.0,0.0,2.0,1.5,2264.7753460684635,3000.0,0.0,0.0,0.0,48517.0,5,5,1,200.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4976.8783646360425,0.11847848587212585,0.10258009284654951,32344.666666666668,9,5,9,9_1,9_1,9_0_1 +2500,2,69.0,3,0.0,5,111,4,75,77,5.0,0.0,0.0,942.1508355878933,0.0,0.0,25052.065846751295,70,70,2,13191,201702500,,,,489.0,0.0,1.0,3.0,0.0,2.0,1.5,2068.715923245885,0.0,700.0,0.0,0.0,30213.0,5,5,3,80.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,942.1508355878933,0.03760771033220279,0.031183624121665948,20142.0,5,3,5,5_0,5_3,5_0_0 +2501,2,56.0,2,0.0,1,112,5,56,42,5.0,0.0,902.152107716236,888.3136449828709,318.4779495677801,0.0,30422.679999999993,50,50,1,13192,201702501,,,40.0,,2.0,3.0,6.0,0.0,3.0,2.0,2769.5560935475737,0.0,660.0,0.0,0.0,41260.0,1,1,1,143.0,8,0.0,5,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2108.943702266887,0.06932143066511194,0.05111351677816013,20630.0,5,3,5,5_1,5_0,5_1_0 +2502,2,49.0,1,0.0,2,112,2,56,62,5.0,1903.7472109666587,0.0,721.4183541073012,247.7050718860512,0.0,42993.62,71,50,1,13194,201702502,,,231.0,,2.0,0.0,3.0,1.0,3.0,2.0,1601.1306049493303,0.0,536.0,0.0,0.0,41203.0,1,1,1,82.0,8,1.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2872.8706369600113,0.06682085939634791,0.06972479278110845,20601.5,5,3,5,5_1,5_1,5_0_1 +2503,2,81.0,2,0.0,1,111,2,0,78,4.0,0.0,0.0,767.1799661215703,0.0,1769.3219420432229,11817.220000000001,0,70,1,13195,201702503,,,360.0,,0.0,3.0,6.0,0.0,1.0,1.0,2968.312041331562,0.0,570.0,1000.0,0.0,16117.0,0,5,1,95.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2536.5019081647933,0.21464455330143578,0.15738052417725343,16117.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +2504,2,64.0,1,0.0,2,111,1,74,74,10.0,0.0,0.0,4518.495646911971,0.0,9109.589502696233,95909.93586422679,20,20,2,13196,201702504,900.0,900.0,,,0.0,3.0,5.0,0.0,2.0,1.5,3744.134201567442,7245.788691887107,360.0,900.0,0.0,125156.0,5,5,1,125.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,13628.085149608203,0.1420925269817776,0.10888878798945478,83437.33333333333,10,5,10,10_0,10_4,10_0_1 +2505,1,25.0,4,15.0,1,112,4,0,68,4.0,396.6140022847205,0.0,3095.6384597887923,123.8525359430256,0.0,17031.4,0,43,1,13197,201702505,,,192.0,,1.0,0.0,4.0,0.0,1.0,1.0,3491.0649071010885,0.0,2300.0,0.0,0.0,16195.0,0,1,3,100.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3616.1049980165385,0.2123198913780745,0.22328527311000546,16195.0,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +2506,2,60.0,3,0.0,1,120,4,52,78,9.0,0.0,277.585263912688,2153.487624200899,122.08321400098238,0.0,54445.47000000001,50,50,1,13198,201702506,,,402.0,,2.0,0.0,7.0,1.0,3.0,2.0,2006.3898896317512,0.0,1600.0,0.0,0.0,58945.0,1,5,1,90.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2553.1561021145694,0.04689382058993281,0.04331420989251963,29472.5,8,4,8,8_1,8_0,8_1_0 +2507,2,50.0,3,0.0,4,111,2,0,34,7.0,0.0,0.0,51.145331074771356,0.0,58.38762408742635,34098.880000000005,0,30,2,13199,201702507,,,,,1.0,0.0,4.0,1.0,2.0,1.3,631.1267259081679,0.0,38.0,33.0,0.0,31274.0,0,1,5,80.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,109.53295516219771,0.0032122156259149185,0.0035023647490630464,24056.923076923074,7,4,7,7_0,7_3,7_0_1 +2508,2,27.0,2,0.0,1,111,2,56,47,6.0,0.0,0.0,566.6364311178615,0.0,2123.1863304518674,26144.111191295746,50,50,1,132,201702508,,,420.0,,2.0,0.0,4.0,1.0,3.0,1.8,2611.6522339262924,0.0,421.0,1200.0,0.0,37061.0,4,1,2,90.0,7,5.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2689.8227615697288,0.10288445997985432,0.07257825643047217,20589.444444444445,5,3,5,5_1,5_2,5_1_0 +2509,2,49.0,3,0.0,7,112,2,21,47,4.0,2855.620816449988,0.0,1847.9657251395681,0.0,684.7221260759255,45978.35999999999,50,31,1,1320,201702509,,,640.0,,2.0,1.0,6.0,1.0,3.0,2.0,1458.8099389467002,660.0,1100.0,0.0,0.0,34089.0,1,1,1,182.0,7,0.0,4,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5388.308667665481,0.11719227627226117,0.15806590594225356,17044.5,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2510,1,55.0,3,300.0,2,111,1,81,67,1.0,0.0,0.0,497.99401309645793,0.0,1238.525359430256,19490.28,71,41,2,13200,201702510,,,540.0,,2.0,0.0,5.0,4.0,6.0,3.1,1713.1169960304987,0.0,370.0,700.0,0.0,31290.0,4,4,3,85.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1736.519372526714,0.08909668678575752,0.05549758301459617,10093.548387096775,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2511,2,71.0,3,0.0,4,112,4,0,75,9.0,0.0,0.0,3364.824412813905,0.0,0.0,29471.280000000002,0,70,1,13202,201702511,,,210.0,,0.0,2.0,6.0,0.0,1.0,1.0,3206.518664007879,0.0,2500.0,0.0,0.0,42805.0,0,5,5,120.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3364.824412813905,0.11417299868936485,0.0786082096206963,42805.0,10,5,10,10_1,10_0,10_0_1 +2512,0,49.0,4,0.0,99,111,2,56,85,1.0,0.0,346.98157989085996,807.5578590753372,1061.5931652259337,1061.5931652259337,32755.642304058183,71,44,1,13204,201702512,,,,,1.0,1.0,5.0,2.0,4.0,2.1,3689.407475546225,0.0,600.0,600.0,0.0,8210.0,1,7,5,120.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3277.725769418065,0.10006598982221694,0.3992357819023222,3909.523809523809,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2513,2,65.0,2,0.0,1,300,5,78,78,2.0,0.0,1110.341055650752,598.938745480875,350.32574452455816,0.0,24689.76,70,50,1,13205,201702513,,,220.0,,0.0,2.0,4.0,0.0,2.0,1.5,2835.5488604229245,0.0,445.0,0.0,0.0,19973.0,5,5,1,132.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2059.6055456561853,0.0834194235041647,0.10311948859240902,13315.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2514,2,50.0,3,0.0,6,112,2,0,34,6.0,0.0,0.0,2067.348119232863,0.0,0.0,32879.18469104511,0,12,1,13206,201702514,,,504.0,,1.0,0.0,6.0,2.0,3.0,1.8,271.31044633346636,0.0,1536.0,0.0,0.0,42442.0,0,1,1,110.0,10,2.0,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2067.348119232863,0.06287711020388899,0.04870995992726222,23578.888888888887,6,3,6,6_1,6_1,6_0_0 +2515,1,45.0,3,30.0,6,211,2,0,43,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,33907.380000000005,0,50,1,13209,201702515,,,300.0,,1.0,0.0,5.0,1.0,2.0,1.3,738.0464822450191,0.0,1200.0,0.0,0.0,30710.0,0,1,3,200.0,1,3.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1615.1157181506744,0.04763316181169628,0.05259250140510174,23623.076923076922,6,3,6,6_1,6_1,6_0_0 +2516,0,37.0,0,0.0,0,120,0,0,62,5.0,0.0,0.0,0.0,0.0,0.0,10166.66,0,71,0,13210,201702516,,,,,1.0,0.0,,0.0,1.0,1.0,3668.8811821409377,0.0,0.0,0.0,0.0,18604.0,0,1,3,,0,0.0,1,7,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,18604.0,4,2,4_0,4_0_0,4_0_0,4_0_1_0 +2517,2,82.0,3,0.0,3,111,2,0,72,3.0,3172.912018277764,0.0,839.8601734383507,265.39829130648343,0.0,59466.6,0,71,1,13211,201702517,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2788.2748769344034,0.0,624.0,0.0,0.0,15290.0,0,5,1,63.0,8,6.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4278.170483022598,0.07194240940330536,0.2798018628530149,15290.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +2518,1,35.0,3,200.0,5,111,1,0,46,5.0,0.0,0.0,228.80806007134552,0.0,0.0,25066.96,0,31,2,13212,201702518,,,,165.0,1.0,0.0,4.0,1.0,2.0,1.3,981.9366300852306,0.0,170.0,0.0,0.0,26080.0,0,1,3,53.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,228.80806007134552,0.009127874304317139,0.008773315186784722,20061.53846153846,5,3,5,5_0,5_4,5_0_0 +2519,2,37.0,4,0.0,4,111,1,56,52,5.0,0.0,0.0,742.9532303493102,0.0,0.0,31154.733760099974,31,50,2,13213,201702519,,,,585.0,2.0,0.0,3.0,0.0,2.0,1.5,2352.4114792692835,0.0,552.0,0.0,0.0,30097.0,4,1,3,63.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,742.9532303493102,0.023847202035820768,0.024685291901163243,20064.666666666668,5,3,5,5_0,5_3,5_0_1 +2520,2,65.0,2,0.0,1,300,2,75,74,7.0,0.0,444.1364222603008,904.4648021643776,0.0,0.0,29208.03434544466,20,12,1,13214,201702520,,,400.0,,0.0,2.0,5.0,0.0,2.0,1.5,1960.2654953190297,0.0,672.0,0.0,0.0,37061.0,5,5,1,101.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1348.6012244246783,0.04617226919397295,0.03638868957730979,24707.333333333332,7,4,7,7_1,7_0,7_1_0 +2521,2,36.0,2,0.0,5,111,1,46,47,8.0,0.0,0.0,613.7439728972563,0.0,0.0,28191.980508190074,50,43,2,13215,201702521,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2781.980618709822,0.0,456.0,0.0,0.0,46370.0,1,1,2,80.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,613.7439728972563,0.02177016165001097,0.01323579842349054,30913.333333333332,8,4,8,8_0,8_4,8_0_0 +2522,2,49.0,1,0.0,5,111,1,46,37,5.0,0.0,0.0,507.41552145233686,0.0,424.6372660903735,45293.280000000006,31,42,1,13216,201702522,,,244.0,,2.0,0.0,5.0,3.0,5.0,2.6,1967.445748680653,0.0,377.0,240.0,0.0,49798.0,4,1,2,91.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,932.0527875427103,0.02057816937838704,0.01871667110210672,19153.076923076922,5,3,5,5_1,5_4,5_0_0 +2523,2,78.0,3,0.0,9,111,2,78,78,4.0,0.0,0.0,1278.633276869284,0.0,0.0,18177.32,71,71,8,13217,201702523,,,360.0,,0.0,3.0,3.0,0.0,2.0,1.5,4040.2021999639264,0.0,950.0,0.0,0.0,24470.0,5,5,3,70.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1278.633276869284,0.07034223289622914,0.05225309672534875,16313.333333333334,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +2524,2,70.0,3,0.0,9,300,6,77,75,4.0,0.0,342.8178009321697,1117.1217050542164,143.31507730550106,0.0,44396.2,70,70,1,13221,201702524,,,540.0,,0.0,1.0,4.0,0.0,2.0,1.5,2032.0386230865088,0.0,830.0,0.0,0.0,27583.0,5,5,1,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1603.254583291887,0.03611242816484039,0.058124735644849615,18388.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2525,2,31.0,1,0.0,5,111,4,47,37,10.0,0.0,0.0,1682.4122064069525,0.0,0.0,57092.280000000006,31,30,2,13222,201702525,,,,730.0,2.0,0.0,2.0,0.0,2.0,1.5,3120.024818699688,0.0,1250.0,0.0,0.0,77309.0,1,1,3,71.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1682.4122064069525,0.029468296000912074,0.02176217783708174,51539.333333333336,10,5,10,10_0,10_3,10_0_0 +2526,2,53.0,2,0.0,4,111,1,0,42,8.0,0.0,0.0,353.9795282280228,0.0,162.7776186679765,38863.82,0,41,2,13223,201702526,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3388.4138606457573,0.0,263.0,92.0,0.0,28624.0,0,1,1,68.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,516.7571468959993,0.013296612296372289,0.01805328210229176,28624.0,8,4,8,8_0,8_3,8_0_1 +2527,2,63.0,3,0.0,10,400,6,77,75,6.0,713.905204112497,0.0,942.1508355878933,212.31863304518674,0.0,30054.854661438778,44,31,1,13224,201702527,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1990.8183377944322,0.0,700.0,0.0,0.0,30798.0,5,5,1,80.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1868.374672745577,0.062165486867010344,0.0606654546641203,20532.0,5,3,5,5_1,5_0,5_0_0 +2528,1,23.0,2,140.0,3,111,6,0,84,2.0,0.0,0.0,27.836589659200758,0.0,51.872888339085264,16676.399999999998,0,31,2,13225,201702528,,,,265.0,0.0,0.0,2.0,0.0,1.0,1.0,2707.968106775668,50.0,0.0,0.0,0.0,10965.0,0,3,3,39.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,79.70947799828602,0.004779777289959825,0.007269446237873782,10965.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2529,2,60.0,2,0.0,7,400,5,52,75,8.0,0.0,832.755791738064,1184.4181933104944,0.0,0.0,28822.09119129575,50,31,1,13226,201702529,,,420.0,,1.0,2.0,4.0,0.0,2.0,1.5,2107.483710725954,0.0,880.0,0.0,0.0,45337.0,1,5,2,87.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2017.1739850485583,0.06998707941281317,0.04449288627497537,30224.666666666668,8,4,8,8_1,8_0,8_0_0 +2530,1,32.0,4,422.0,7,111,1,68,52,5.0,0.0,0.0,942.1508355878933,0.0,0.0,18760.684571802707,71,42,2,13227,201702530,,,,139.0,2.0,0.0,3.0,3.0,5.0,2.4,2942.6861756026246,0.0,700.0,0.0,0.0,44288.0,1,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,942.1508355878933,0.050219427333901515,0.02127327573130178,18453.333333333336,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +2531,2,32.0,1,0.0,2,111,2,0,62,9.0,0.0,0.0,484.5347154452023,0.0,955.4338487033403,38515.36,0,50,1,1323,201702531,,,300.0,,3.0,0.0,4.0,2.0,3.0,2.0,2201.215900097204,0.0,360.0,540.0,0.0,68704.0,0,1,3,70.0,6,4.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1439.9685641485426,0.03738686498447743,0.02095902078697809,34352.0,9,5,9,9_1,9_2,9_0_1 +2532,2,72.0,3,0.0,5,111,6,75,77,9.0,0.0,0.0,2296.8760602054385,0.0,96.64971113387999,36471.41681513155,41,41,2,13230,201702532,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2282.983972687205,93.16014032426281,1668.0,0.0,0.0,56805.0,5,5,1,109.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2393.5257713393185,0.0656274414419314,0.0421358290879204,37870.0,9,5,9,9_0,9_3,9_0_0 +2533,1,67.0,4,185.0,99,111,1,0,56,1.0,0.0,0.0,740.261370819059,0.0,0.0,5336.038839019718,0,33,2,13231,201702533,,,,,1.0,3.0,1.0,0.0,2.0,1.3,4676.122929865849,0.0,550.0,0.0,0.0,11930.0,0,1,3,40.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,740.261370819059,0.1387286324465832,0.06205040828324049,9176.923076923076,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +2534,1,38.0,4,345.0,99,111,2,0,62,3.0,0.0,0.0,565.290501352736,212.31863304518674,0.0,15473.911191295747,0,30,2,13232,201702534,,,,55.0,1.0,0.0,3.0,1.0,2.0,1.3,902.0167790604467,0.0,420.0,0.0,0.0,19340.0,0,4,3,60.0,6,5.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,777.6091343979227,0.050252914391504123,0.040207297538672325,14876.923076923076,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +2535,2,76.0,2,0.0,2,111,1,0,78,5.0,0.0,0.0,414.5463676586731,0.0,189.31744779862484,11296.72,0,71,2,13233,201702535,,,,296.0,0.0,2.0,3.0,0.0,1.0,1.0,3393.9815669719933,0.0,308.0,107.0,0.0,19560.0,0,5,3,80.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,603.863815457298,0.05345479178534106,0.030872383203338342,19560.0,5,3,5,5_0,5_3,5_0_1 +2536,1,34.0,5,215.0,4,120,2,0,85,8.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,8824.0,0,71,1,13236,201702536,,,800.0,,0.0,1.0,5.0,0.0,1.0,1.0,4929.50138244525,800.0,0.0,0.0,0.0,28650.0,0,7,3,111.0,0,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1275.3516479725763,0.14453214505582235,0.044514891726791496,28650.0,8,4,8,8_1,8_1,8_0_1 +2537,2,56.0,3,0.0,6,111,2,0,45,5.0,0.0,0.0,613.7439728972563,0.0,1150.059262328095,44274.956322376296,0,50,2,13238,201702537,,,,584.0,1.0,2.0,3.0,1.0,2.0,1.5,4340.494929971803,0.0,456.0,650.0,0.0,29525.0,0,1,3,65.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1763.8032352253513,0.039837492382435974,0.059739313640147375,19683.333333333332,5,3,5,5_0,5_4,5_0_0 +2538,2,91.0,3,0.0,1,111,2,0,77,5.0,0.0,0.0,417.2382271889242,0.0,2158.572769292732,13493.560000000001,0,70,1,1324,201702538,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2797.13565919869,0.0,310.0,1220.0,0.0,18570.0,0,5,1,90.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2575.8109964816563,0.19089187704961894,0.138708185055555,18570.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +2539,1,22.0,2,379.0,99,111,2,0,81,1.0,0.0,0.0,605.6683943065029,0.0,1026.2067263850693,18873.780000000002,0,50,1,13240,201702539,,,,3.0,1.0,0.0,3.0,2.0,3.0,1.6,603.8966799665988,0.0,450.0,580.0,0.0,16538.0,0,4,3,100.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1631.8751206915722,0.0864625486093179,0.09867427262616835,10336.25,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +2540,2,56.0,2,0.0,9,112,4,45,37,10.0,0.0,0.0,1561.278527545652,49.54101437721024,0.0,67575.46238259149,42,42,1,13241,201702540,,,340.0,,2.0,2.0,4.0,0.0,2.0,1.5,1372.5301083976608,0.0,1160.0,0.0,0.0,72370.0,1,1,2,130.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1610.8195419228623,0.023837343987421017,0.022258111675043005,48246.666666666664,10,5,10,10_1,10_0,10_0_0 +2541,2,72.0,3,0.0,8,111,2,77,74,10.0,0.0,0.0,2621.8711824645948,0.0,0.0,52203.00000000001,50,71,1,13242,201702541,,,450.0,,0.0,3.0,4.0,0.0,2.0,1.5,1759.2768728403137,0.0,1948.0,0.0,0.0,72180.0,5,5,1,115.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2621.8711824645948,0.05022453082130518,0.03632406736581594,48120.0,10,5,10,10_1,10_1,10_0_0 +2542,2,60.0,3,0.0,9,221,2,77,38,7.0,0.0,0.0,1976.7981895262794,0.0,648.9064224041773,33345.951069758914,71,60,1,13243,201702542,,,661.0,,2.0,3.0,5.0,1.0,3.0,2.0,2693.325927844125,625.4774345341767,1210.0,0.0,0.0,56110.0,4,4,3,110.0,1,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2625.704611930457,0.07874133223663488,0.04679566230494488,28055.0,8,4,8,8_1,8_1,8_0_0 +2543,2,32.0,2,0.0,9,111,6,31,37,10.0,0.0,0.0,807.5578590753372,0.0,0.0,95152.79999999999,20,20,2,13245,201702543,,,,,2.0,0.0,4.0,0.0,2.0,1.5,4702.963392365706,0.0,600.0,0.0,0.0,82680.0,1,4,2,88.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.008486958440270148,0.009767269703378535,55120.0,10,5,10,10_0,10_4,10_0_0 +2544,2,24.0,2,0.0,99,111,2,63,43,8.0,0.0,0.0,447.6123617199482,0.0,834.116044492491,35878.26,50,30,2,13246,201702544,,,,500.0,2.0,0.0,2.0,0.0,2.0,1.5,9771.175217327645,804.0,0.0,0.0,0.0,40362.0,1,1,3,30.0,8,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1281.7284062124393,0.03572437476657004,0.03175581998445169,26908.0,7,4,7,7_0,7_3,7_0_0 +2545,2,51.0,3,0.0,1,112,2,47,38,9.0,0.0,0.0,2853.3711020661913,0.0,3786.348955972497,48939.78,50,12,1,13248,201702545,,,720.0,,3.0,1.0,10.0,1.0,3.0,2.0,2412.7356213450685,0.0,2120.0,2140.0,0.0,67157.0,1,1,1,600.0,8,1.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,6639.720058038689,0.13567122815097837,0.098868622154633,33578.5,9,5,9,9_1,9_1,9_1_0 +2546,2,43.0,1,0.0,1,211,2,0,37,10.0,0.0,0.0,759.1043875308169,0.0,1698.549064361494,60910.82000000001,0,31,1,13249,201702546,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1647.8407520679516,0.0,564.0,960.0,0.0,55074.0,0,1,1,80.0,2,3.0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2457.653451892311,0.04034838887232696,0.04462456788851928,55074.0,10,5,10,10_1,10_1,10_1_0 +2547,2,80.0,3,0.0,6,111,2,0,72,1.0,3172.912018277764,0.0,821.0171567265928,212.31863304518674,0.0,21596.0,0,70,1,1325,201702547,,,400.0,,0.0,1.0,4.0,0.0,1.0,1.0,3581.567860768808,0.0,610.0,0.0,0.0,8911.0,0,5,5,171.0,8,7.0,1,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4206.247808049544,0.1947697632917922,0.47202870699691885,8911.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +2548,2,58.0,3,0.0,8,112,2,55,64,9.0,0.0,832.755791738064,2382.2956842722447,212.31863304518674,0.0,28039.380000000005,50,50,1,13250,201702548,,,400.0,,2.0,2.0,6.0,0.0,2.0,1.5,1183.3054639798029,0.0,1770.0,0.0,0.0,51770.0,1,1,1,120.0,10,3.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3427.3701090554955,0.12223416170598261,0.06620378808297268,34513.333333333336,9,5,9,9_1,9_1,9_0_0 +2549,2,43.0,2,0.0,8,112,4,34,46,6.0,0.0,0.0,161.51157181506744,0.0,0.0,53063.7357585427,30,31,1,13251,201702549,,,200.0,,2.0,0.0,7.0,3.0,6.0,3.3,2585.848096198455,0.0,120.0,0.0,0.0,74030.0,1,1,2,122.0,8,1.0,5,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,161.51157181506744,0.0030437278775470645,0.0021817043335818917,22433.333333333336,6,3,6,6_1,6_1,6_0_0 +2550,2,36.0,2,0.0,5,111,2,34,43,7.0,2379.684013708323,0.0,1323.0489591184273,0.0,0.0,26719.820000000003,30,33,1,13252,201702550,,,,,2.0,0.0,6.0,1.0,3.0,1.8,2812.392903307429,0.0,983.0,0.0,0.0,44228.0,1,1,2,105.0,4,3.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3702.7329728267505,0.1385762693321568,0.08371920441409855,24571.11111111111,7,4,7,7_1,7_1,7_0_0 +2551,2,59.0,2,0.0,3,112,1,85,37,9.0,0.0,0.0,352.6335984628972,0.0,0.0,33441.22753375567,0,41,2,13256,201702551,,,,565.0,1.0,2.0,3.0,0.0,2.0,1.5,1713.8456749351253,0.0,262.0,0.0,0.0,53710.0,6,1,3,65.0,9,3.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,352.6335984628972,0.010544876024869239,0.006565511049392985,35806.666666666664,9,5,9,9_0,9_1,9_0_1 +2552,2,48.0,2,0.0,8,111,2,56,37,10.0,0.0,0.0,1615.1157181506744,0.0,2300.11852465619,36385.23935248389,50,50,1,13257,201702552,,,200.0,,2.0,3.0,5.0,0.0,2.0,1.5,2133.3671843898255,0.0,1200.0,1300.0,0.0,59037.0,1,1,2,130.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3915.234242806864,0.10760501545359726,0.06631831296994875,39358.0,9,5,9,9_1,9_3,9_0_0 +2553,1,39.0,3,440.0,3,111,3,85,85,1.0,0.0,0.0,592.2090966552472,0.0,2055.952096654225,11357.720000000001,50,71,2,13258,201702553,500.0,500.0,,,0.0,0.0,3.0,3.0,5.0,2.4,1602.5703855644917,0.0,440.0,1162.0,0.0,20070.0,6,4,3,62.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2648.1611933094723,0.233159577213514,0.13194624779817998,8362.5,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2554,2,63.0,1,0.0,6,111,2,75,74,8.0,0.0,0.0,2343.2637210836033,0.0,0.0,36041.473948896295,50,71,1,13259,201702554,,,482.0,,0.0,2.0,5.0,0.0,2.0,1.5,3487.055030998721,0.0,1741.0,0.0,0.0,50676.0,6,5,1,130.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2343.2637210836033,0.06501575724694693,0.04624010815935755,33784.0,9,5,9,9_1,9_2,9_0_0 +2555,2,59.0,2,0.0,6,400,6,0,45,9.0,0.0,0.0,1480.522741638118,0.0,0.0,19475.225846751302,0,50,1,1326,201702555,,,120.0,,1.0,2.0,5.0,0.0,1.0,1.0,1713.4225029043332,0.0,1100.0,0.0,0.0,36020.0,0,1,1,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1480.522741638118,0.07602082529302667,0.04110279682504492,36020.0,9,5,9,9_1,9_0,9_0_0 +2556,2,27.0,3,0.0,99,111,2,63,37,9.0,0.0,0.0,531.6788624907344,0.0,990.7721672765286,65427.5116935026,50,31,2,13260,201702556,,,,745.0,2.0,0.0,3.0,0.0,2.0,1.5,4264.743768394269,955.0,0.0,0.0,0.0,54296.0,1,1,3,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1522.4510297672632,0.023269279090105652,0.028039837736983632,36197.333333333336,9,5,9,9_0,9_4,9_0_0 +2557,1,59.0,4,250.0,1,111,7,0,52,1.0,0.0,0.0,203.23539453395986,0.0,304.32337403143435,4202.24,0,50,2,13261,201702557,,,86.0,,1.0,0.0,1.0,0.0,1.0,1.0,2220.0454474941557,0.0,151.0,172.0,0.0,8979.0,0,4,3,30.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,507.5587685653942,0.12078290829781121,0.05652731579968751,8979.0,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +2558,2,63.0,2,0.0,6,400,6,77,75,5.0,0.0,0.0,2706.664757667505,122.08321400098238,0.0,35662.7,60,50,1,13262,201702558,,,397.0,,0.0,3.0,6.0,0.0,2.0,1.5,1860.578475552656,0.0,2011.0,0.0,0.0,28405.0,6,5,1,140.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2828.7479716684875,0.07931951231029866,0.09958626902547042,18936.666666666668,5,3,5,5_1,5_0,5_0_0 +2559,2,79.0,3,0.0,5,400,5,78,78,4.0,0.0,138.792631956344,1345.929765125562,106.15931652259337,0.0,45133.8258467513,70,71,1,13263,201702559,,,343.0,,0.0,0.0,3.0,0.0,2.0,1.5,2920.603261561231,0.0,1000.0,0.0,0.0,24659.0,5,5,1,81.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1590.8817136044993,0.03524810236575612,0.06451525664481525,16439.333333333332,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +2560,2,34.0,2,0.0,9,400,4,52,38,9.0,0.0,0.0,847.935752029104,42.46372660903735,0.0,48554.5,50,20,1,13264,201702560,,,210.0,,2.0,0.0,4.0,1.0,3.0,1.8,2384.999333789167,0.0,630.0,0.0,0.0,60920.0,1,1,3,90.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,890.3994786381414,0.01833814535497516,0.014615881133259052,33844.444444444445,9,5,9,9_1,9_0,9_0_0 +2561,2,34.0,1,0.0,8,111,2,47,37,10.0,0.0,0.0,710.6509159862967,0.0,1273.9117982711205,79784.95000000001,31,20,2,13267,201702561,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2927.6495989353807,0.0,528.0,720.0,0.0,97505.0,1,1,1,82.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1984.5627142574172,0.024873898075481866,0.020353445610557585,54169.444444444445,10,5,10,10_0,10_4,10_0_0 +2562,2,53.0,3,0.0,1,300,4,21,21,7.0,0.0,0.0,2422.6735772260117,0.0,0.0,31049.605846751296,50,50,1,13268,201702562,,,540.0,,2.0,1.0,4.0,2.0,4.0,2.1,2270.4220351931535,0.0,1800.0,0.0,0.0,51531.0,1,1,3,80.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2422.6735772260117,0.07802590439258329,0.04701390575044171,24538.571428571428,7,4,7,7_1,7_1,7_1_0 +2563,2,74.0,3,0.0,4,111,1,0,78,6.0,0.0,0.0,508.7614512174624,0.0,191.08676974066807,21340.72,0,71,2,13269,201702563,,,,,0.0,1.0,4.0,0.0,1.0,1.0,1935.6350406416266,0.0,378.0,108.0,0.0,22433.0,0,5,1,76.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,699.8482209581305,0.032794030424377923,0.03119726389507112,22433.0,6,3,6,6_0,6_2,6_0_1 +2564,2,83.0,1,0.0,5,111,2,77,77,9.0,3966.1400228472053,0.0,511.45331074771354,173.39355032023585,0.0,27374.302634018157,50,50,1,1327,201702564,,,220.0,,0.0,2.0,5.0,0.0,2.0,1.5,1866.7730779785925,0.0,380.0,0.0,0.0,45295.0,5,5,1,150.0,7,5.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4650.986883915154,0.16990339246616473,0.10268212570736625,30196.666666666668,8,4,8,8_1,8_2,8_0_0 +2565,2,24.0,4,0.0,4,221,2,56,62,7.0,1903.7472109666587,0.0,1749.7086946632305,0.0,0.0,33641.66,44,43,1,13270,201702565,,,480.0,,2.0,0.0,3.0,0.0,2.0,1.5,2263.991876032894,0.0,1300.0,0.0,0.0,36287.0,1,1,2,80.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3653.4559056298895,0.10859915668935151,0.1006822251944192,24191.333333333332,7,4,7,7_1,7_1,7_0_1 +2566,2,49.0,1,0.0,1,111,3,34,38,9.0,0.0,0.0,1130.581002705472,0.0,2653.9829130648345,79642.38782925345,12,12,1,13271,201702566,,,470.0,,3.0,0.0,11.0,5.0,7.0,3.8,1216.4845868797888,0.0,840.0,1500.0,0.0,126770.0,1,1,1,250.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3784.5639157703063,0.047519468199322346,0.0298537817762113,33360.52631578947,9,5,9,9_1,9_3,9_1_0 +2567,2,32.0,3,0.0,9,111,2,46,63,8.0,0.0,0.0,915.2670679945209,0.0,1705.5805685891237,27528.336322376294,31,50,1,13272,201702567,,,624.0,,2.0,0.0,4.0,0.0,2.0,1.5,1253.306265269051,1644.0,0.0,0.0,0.0,43227.0,1,1,3,83.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2620.8476365836445,0.09520544960987343,0.06062987569305398,28818.0,8,4,8,8_1,8_2,8_0_0 +2568,2,46.0,2,0.0,1,111,2,0,38,6.0,0.0,0.0,511.45331074771354,0.0,1302.220949343812,43652.36,0,30,1,13273,201702568,,,300.0,,1.0,0.0,4.0,2.0,3.0,1.8,714.8965969158098,0.0,380.0,736.0,0.0,38678.0,0,1,2,80.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1813.6742600915254,0.04154813760565352,0.04689162469857607,21487.777777777777,6,3,6,6_1,6_3,6_1_0 +2569,2,59.0,2,0.0,1,400,2,54,38,7.0,1998.9345715149916,0.0,1516.5671711975624,185.7788039145384,1075.4287551948503,37539.732178404585,42,31,1,13274,201702569,,,208.0,,2.0,2.0,5.0,0.0,2.0,1.5,1823.0302755355808,1036.6000329159756,698.0,0.0,0.0,38134.0,4,4,1,100.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4776.709301821943,0.12724409644482845,0.12526116593648562,25422.666666666668,7,4,7,7_1,7_0,7_1_0 +2570,1,37.0,4,300.0,2,111,2,0,68,2.0,0.0,0.0,403.7789295376686,0.0,442.3304855108057,5809.799999999999,0,60,2,13275,201702570,,,300.0,,1.0,1.0,4.0,1.0,2.0,1.3,869.0462306636359,0.0,300.0,250.0,0.0,13960.0,0,4,3,70.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,846.1094150484744,0.14563486093298814,0.060609556951896446,10738.461538461537,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2571,1,45.0,2,379.0,9,111,2,0,34,5.0,0.0,0.0,1107.7001966983375,0.0,0.0,20992.36,0,20,2,13276,201702571,,,247.0,255.0,1.0,0.0,3.0,1.0,2.0,1.5,650.8140165356592,0.0,823.0,0.0,0.0,29423.0,0,2,3,75.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1107.7001966983375,0.05276682548786023,0.03764742537125166,19615.333333333332,5,3,5,5_0,5_3,5_0_0 +2572,2,60.0,3,0.0,6,111,2,0,78,9.0,0.0,485.77421184720396,1615.1157181506744,127.39117982711205,0.0,62460.380000000005,0,50,1,13277,201702572,,,400.0,,0.0,2.0,5.0,0.0,1.0,1.0,2577.989203211663,0.0,1200.0,0.0,0.0,38669.0,0,5,1,96.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2228.2811098249904,0.035675112924785125,0.05762448239739818,38669.0,9,5,9,9_1,9_2,9_0_0 +2573,1,47.0,3,212.0,5,221,1,0,56,5.0,0.0,832.755791738064,532.9881869897225,58.38762408742635,0.0,7299.599999999999,0,42,2,13278,201702573,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2519.335102822142,0.0,396.0,0.0,0.0,18335.0,0,1,3,63.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1424.1316028152128,0.19509721119173828,0.07767284444042612,18335.0,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +2574,1,38.0,4,256.0,5,111,2,0,85,2.0,0.0,0.0,1184.4181933104944,0.0,0.0,16686.28,0,50,2,13281,201702574,,,,74.0,0.0,2.0,1.0,0.0,1.0,1.0,5073.378980739391,0.0,880.0,0.0,0.0,12792.0,0,7,3,21.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1184.4181933104944,0.07098156049823534,0.09259054044015748,12792.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2575,2,77.0,2,0.0,3,112,1,78,75,9.0,0.0,0.0,437.42717366580763,0.0,0.0,47806.72031599412,70,44,2,13282,201702575,,,,,1.0,0.0,4.0,1.0,3.0,2.0,3278.218857157631,0.0,325.0,0.0,0.0,68606.0,5,5,1,65.0,9,1.0,4,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,437.42717366580763,0.009149909694170401,0.006375931750368884,34303.0,9,5,9,9_0,9_1,9_0_1 +2576,2,58.0,4,0.0,1,300,5,22,22,1.0,0.0,555.170527825376,1211.3367886130059,0.0,0.0,22598.291191295746,30,41,1,13284,201702576,,,600.0,,2.0,0.0,7.0,1.0,3.0,2.0,2818.391421112363,0.0,900.0,0.0,0.0,9933.0,4,4,2,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1766.5073164383818,0.078169951058901,0.17784227488557153,4966.5,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2577,2,41.0,4,0.0,99,111,2,0,56,1.0,0.0,0.0,91.52322402853821,0.0,530.7965826129669,14137.957686990625,0,50,1,13285,201702577,,,,82.0,1.0,0.0,4.0,2.0,3.0,1.8,192.1886694566594,0.0,68.0,300.0,0.0,15040.0,0,1,3,85.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,622.319806641505,0.044017659439888356,0.041377646718185175,8355.555555555555,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2578,2,61.0,3,0.0,1,112,4,0,75,10.0,0.0,0.0,1621.845366976302,0.0,0.0,28863.38,0,60,1,13286,201702578,,,196.0,,0.0,0.0,3.0,0.0,1.0,1.0,2398.5446478520585,0.0,1205.0,0.0,0.0,37740.0,0,5,1,72.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1621.845366976302,0.05619041730304289,0.04297417506561479,37740.0,9,5,9,9_1,9_0,9_1_0 +2579,2,58.0,3,0.0,9,111,2,46,21,8.0,3172.912018277764,0.0,1278.633276869284,123.8525359430256,0.0,53708.59016615877,42,50,1,13287,201702579,,,910.0,,3.0,1.0,5.0,2.0,4.0,2.5,3021.9053299811185,0.0,950.0,0.0,0.0,70807.0,1,1,1,130.0,6,4.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4575.397831090074,0.0851893117457584,0.06461787437809925,28322.8,8,4,8,8_1,8_2,8_0_0 +2580,2,40.0,2,0.0,9,111,2,33,34,7.0,0.0,0.0,2130.271780894019,0.0,297.8409070536063,61764.06000000001,20,30,1,13289,201702580,,,,,2.0,0.0,6.0,3.0,5.0,2.6,2664.3482510950107,287.0872594433774,1464.0,0.0,0.0,65000.0,1,1,2,159.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2428.112687947625,0.039312711760652146,0.03735557981457885,25000.0,7,4,7,7_1,7_2,7_0_0 +2581,2,50.0,2,0.0,8,111,2,37,34,8.0,0.0,0.0,3701.3068540952954,0.0,1622.4682208536353,53584.797540253916,31,10,1,1329,201702581,,,1500.0,,2.0,0.0,6.0,3.0,5.0,3.0,1892.410430594295,0.0,2750.0,917.0,0.0,88775.0,1,1,1,127.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5323.7750749489305,0.09935234094986754,0.05996930526554695,29591.666666666668,8,4,8,8_1,8_3,8_0_0 +2582,2,59.0,3,0.0,5,111,1,0,43,8.0,0.0,0.0,1760.476132784235,0.0,700.6514890491163,19919.22,0,33,2,13290,201702582,,,120.0,502.0,1.0,0.0,3.0,0.0,1.0,1.0,2353.7810992290306,0.0,1308.0,396.0,0.0,32981.0,0,1,3,78.0,5,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2461.1276218333514,0.12355542143885911,0.07462258942522518,32981.0,9,5,9,9_0,9_2,9_0_0 +2583,2,53.0,2,0.0,1,111,2,0,45,8.0,0.0,0.0,541.1433029748628,0.0,1008.4089493118175,42668.37063198823,0,41,1,13291,201702583,,,,,2.0,2.0,3.0,1.0,2.0,1.5,1747.9248936949643,972.0,0.0,0.0,0.0,44300.0,0,1,3,55.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1549.5522522866804,0.03631618056502467,0.03497860614642619,29533.333333333332,8,4,8,8_1,8_3,8_1_0 +2584,2,34.0,1,0.0,1,120,4,38,37,8.0,0.0,0.0,2786.0746138099134,0.0,0.0,46007.90000000001,12,12,1,13292,201702584,,,266.0,,2.0,0.0,5.0,3.0,5.0,2.4,1774.3992471495799,0.0,2070.0,0.0,0.0,67041.0,1,1,2,150.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2786.0746138099134,0.06055643952038482,0.041557772315596625,27933.75,8,4,8,8_1,8_0,8_1_0 +2585,2,32.0,2,0.0,1,112,2,47,35,9.0,0.0,0.0,629.895130078763,0.0,1357.069929547152,38233.299999999996,20,20,2,13293,201702585,,,244.0,720.0,2.0,0.0,5.0,0.0,2.0,1.5,1882.481426555778,0.0,468.0,767.0,0.0,52788.0,1,1,3,100.0,9,3.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1986.965059625915,0.05196948889125227,0.03764046866003476,35192.0,9,5,9,9_0,9_1,9_1_0 +2586,2,50.0,2,0.0,6,120,2,77,63,4.0,0.0,0.0,613.7439728972563,0.0,1231.448071662083,16128.980000000001,50,71,1,13294,201702586,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1563.779408045804,0.0,456.0,696.0,0.0,26720.0,6,4,1,80.0,0,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1845.1920445593394,0.1144022774260579,0.06905658849398726,17813.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2587,2,56.0,4,0.0,99,111,1,56,64,5.0,0.0,0.0,484.5347154452023,0.0,0.0,27253.26051346417,50,50,2,13295,201702587,,,,404.0,2.0,2.0,5.0,2.0,5.0,2.6,1990.7094797358866,0.0,360.0,0.0,0.0,49770.0,1,1,3,75.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,484.5347154452023,0.017778963188856738,0.00973547750542902,19142.30769230769,5,3,5,5_0,5_4,5_0_0 +2588,1,54.0,3,253.0,99,111,2,85,63,4.0,0.0,0.0,1615.1157181506744,0.0,0.0,30369.9716935026,31,44,2,13297,201702588,,,,296.0,1.0,0.0,3.0,2.0,4.0,2.1,868.3060339310598,0.0,1200.0,0.0,0.0,35029.0,7,1,3,63.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1615.1157181506744,0.053181337620285464,0.04610795963774799,16680.47619047619,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +2589,1,47.0,2,141.0,99,111,6,0,42,3.0,0.0,0.0,942.1508355878933,0.0,0.0,22444.56,0,30,2,13298,201702589,,,,,1.0,0.0,2.0,1.0,2.0,1.3,727.5299800964822,0.0,700.0,0.0,0.0,19289.0,0,1,3,37.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,942.1508355878933,0.041976801308998404,0.04884394398817426,14837.692307692307,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2590,2,58.0,4,0.0,9,111,6,0,52,4.0,0.0,0.0,1211.3367886130059,0.0,0.0,26347.66,0,71,2,13299,201702590,,,,500.0,1.0,1.0,3.0,0.0,1.0,1.0,2795.4946511156336,0.0,900.0,0.0,0.0,18784.0,0,1,3,69.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1211.3367886130059,0.045975118420877065,0.06448769104626309,18784.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +2591,2,54.0,3,0.0,4,400,1,52,37,9.0,869.3778930081074,0.0,1294.7844340507907,0.0,0.0,43714.86784974978,42,50,2,133,201702591,548.0,548.0,630.0,,3.0,2.0,4.0,1.0,3.0,2.0,1793.8290676411277,0.0,962.0,0.0,0.0,67044.0,1,1,2,89.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2164.162327058898,0.04950632207095384,0.032279731624886614,33522.0,9,5,9,9_0,9_1,9_0_1 +2592,1,45.0,3,15.0,8,221,2,0,52,3.0,1173.9774467627728,0.0,816.9793674312161,106.15931652259337,0.0,28340.94,0,31,1,1330,201702592,,,407.0,,1.0,0.0,6.0,3.0,4.0,2.3,348.0543171542288,0.0,607.0,0.0,0.0,32207.0,0,3,2,120.0,1,1.0,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2097.116130716582,0.07399599768802947,0.06511367499973864,14003.04347826087,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +2593,2,46.0,4,0.0,9,112,5,85,85,1.0,0.0,0.0,2018.894647688343,0.0,0.0,41013.97400793945,50,50,1,13301,201702593,,,,848.0,1.0,0.0,5.0,2.0,4.0,2.5,3284.0150238316046,0.0,1500.0,0.0,0.0,21171.0,4,4,3,90.0,9,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.04922455569161689,0.09536132670579298,8468.4,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +2594,2,49.0,3,0.0,7,400,2,0,13,1.0,1380.2167279508276,0.0,1083.4734609260775,274.24490101669954,0.0,30141.66,0,50,1,13302,201702594,,,1640.0,,3.0,1.0,6.0,3.0,4.0,2.5,874.5326624512139,0.0,805.0,0.0,0.0,16995.0,0,1,1,130.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2737.935089893605,0.09083557739997083,0.1611023883432542,6798.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +2595,2,71.0,3,0.0,9,120,2,74,74,8.0,0.0,0.0,1292.0925745205395,0.0,0.0,24621.72,42,50,1,13303,201702595,,,440.0,,0.0,2.0,3.0,0.0,2.0,1.5,2764.8933952965754,0.0,960.0,0.0,0.0,42550.0,5,5,1,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1292.0925745205395,0.052477754377863915,0.030366452985206568,28366.666666666668,8,4,8,8_1,8_0,8_0_0 +2596,2,64.0,1,0.0,5,111,2,0,75,5.0,0.0,0.0,188.43016711757866,0.0,132.69914565324171,30926.039999999997,0,50,2,13304,201702596,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3081.6708123974277,0.0,140.0,75.0,0.0,21094.0,0,5,1,55.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,321.1293127708204,0.010383783787734233,0.015223727731621332,21094.0,5,3,5,5_0,5_3,5_0_0 +2597,2,48.0,4,0.0,2,300,4,0,65,4.0,0.0,0.0,2018.894647688343,53.079658261296686,0.0,15623.5,0,50,1,13305,201702597,,,332.0,,1.0,0.0,4.0,0.0,1.0,1.0,2553.065913674839,0.0,1500.0,0.0,0.0,18114.0,0,1,2,81.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2071.9743059496395,0.1326190870131302,0.11438524378655401,18114.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +2598,2,74.0,3,0.0,1,112,5,78,78,5.0,0.0,811.9368969446124,1090.2031097517051,132.69914565324171,0.0,29730.51152046292,71,50,1,13307,201702598,,,210.0,,0.0,2.0,4.0,0.0,2.0,1.5,1902.481352615478,0.0,810.0,0.0,0.0,28429.0,5,5,1,80.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2034.839152349559,0.06844278985745064,0.0715761775774582,18952.666666666668,5,3,5,5_1,5_0,5_1_0 +2599,2,39.0,2,0.0,3,111,2,37,37,7.0,0.0,0.0,659.5055849115254,0.0,3312.170675504913,62038.85999999999,12,12,1,1331,201702599,,,52.0,,2.0,0.0,7.0,3.0,5.0,2.4,1114.618957429261,0.0,490.0,1872.0,0.0,53436.0,1,4,2,150.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3971.6762604164387,0.06401916895984934,0.07432585261652143,22265.0,6,3,6,6_1,6_2,6_0_1 +2600,2,69.0,1,0.0,4,300,5,74,74,10.0,758.3259723683857,1124.2203188463864,795.7642709403094,180.47083808840873,504.7262692547066,35971.022036598086,44,44,1,13312,201702600,,,198.0,,0.0,2.0,7.0,0.0,2.0,1.5,1612.7322394167536,486.50295502670576,390.0,0.0,0.0,68816.0,5,5,1,155.0,0,0.0,3,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3363.5076694981963,0.09350603566604403,0.048876826166853585,45877.333333333336,10,5,10,10_1,10_0,10_0_1 +2601,2,47.0,2,0.0,4,111,1,54,53,10.0,0.0,0.0,1130.581002705472,0.0,0.0,49674.26,41,42,8,13315,201702601,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,2624.397053189314,0.0,840.0,0.0,0.0,77659.0,1,1,2,79.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1130.581002705472,0.022759896226042863,0.01455827402754957,36980.47619047619,9,5,9,9_0,9_2,9_0_1 +2602,1,44.0,4,80.0,1,111,6,52,63,5.0,0.0,0.0,2238.2811994038093,0.0,0.0,44837.67,50,50,2,13316,201702602,,,1140.0,,2.0,0.0,4.0,2.0,4.0,2.1,11513.269802619003,0.0,1663.0,0.0,0.0,38050.0,1,1,3,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2238.2811994038093,0.04991965905908602,0.058824735858181584,18119.04761904762,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +2603,2,23.0,1,0.0,99,111,1,55,63,6.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,25284.007533755655,50,43,1,13317,201702603,,,200.0,650.0,2.0,0.0,3.0,0.0,2.0,1.5,1333.4966441226243,1100.0,0.0,0.0,0.0,33604.0,1,1,3,60.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1753.6085159622926,0.06935643068533028,0.05218451719921118,22402.666666666668,6,3,6,6_1,6_3,6_0_0 +2604,2,38.0,1,0.0,9,211,4,54,38,9.0,0.0,0.0,3052.5687073047743,0.0,0.0,41926.80739300215,42,31,1,13319,201702604,,,396.0,,2.0,0.0,4.0,2.0,4.0,2.1,2439.7561983157975,0.0,2268.0,0.0,0.0,66808.0,1,1,2,120.0,2,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3052.5687073047743,0.0728070868523671,0.04569166428129527,31813.333333333332,8,4,8,8_1,8_1,8_0_0 +2605,2,82.0,3,0.0,5,300,4,0,77,6.0,0.0,0.0,2188.481798094164,212.31863304518674,0.0,21460.968161188146,0,70,1,1332,201702605,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2663.2874974268707,0.0,1626.0,0.0,0.0,21176.0,0,5,1,99.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2400.8004311393506,0.1118682257532614,0.11337365088493344,21176.0,5,3,5,5_1,5_0,5_0_0 +2606,2,63.0,3,0.0,99,111,2,46,55,6.0,0.0,0.0,659.5055849115254,0.0,212.31863304518674,51154.87999999999,44,44,2,13320,201702606,,,,1070.0,2.0,2.0,3.0,1.0,3.0,2.0,2504.512060812597,0.0,490.0,120.0,0.0,47808.0,1,1,3,62.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,871.8242179567121,0.017042835755976992,0.01823594833410124,23904.0,7,4,7,7_0,7_4,7_0_0 +2607,2,59.0,2,0.0,4,112,2,0,31,10.0,3680.5779412022066,0.0,944.8426951181444,0.0,0.0,40936.133018669505,0,10,1,13321,201702607,,,300.0,,1.0,1.0,7.0,1.0,2.0,1.5,887.9008631975457,0.0,702.0,0.0,0.0,69402.0,0,1,1,150.0,10,0.0,2,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4625.420636320351,0.11299114731259209,0.06664679168208915,46268.0,10,5,10,10_1,10_0,10_0_1 +2608,1,29.0,4,30.0,6,300,2,55,69,2.0,1665.7788095958263,499.65347504283835,1009.4473238441715,102.62067263850693,0.0,29273.381750603254,50,50,1,13322,201702608,,,280.0,270.0,2.0,0.0,4.0,1.0,3.0,1.8,2191.3330012620645,0.0,750.0,0.0,0.0,24251.0,1,1,3,90.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3277.500281121343,0.11196179208279555,0.13514907761005085,13472.777777777777,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +2609,2,87.0,3,0.0,2,111,2,0,86,4.0,0.0,0.0,444.15682249143543,0.0,1150.059262328095,8909.720000000001,0,70,1,13323,201702609,,,193.0,,0.0,2.0,4.0,0.0,1.0,1.0,1892.0296485997221,0.0,330.0,650.0,0.0,17186.0,0,5,1,80.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1594.2160848195304,0.17892998711738756,0.09276248602464392,17186.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +2610,2,42.0,1,0.0,1,112,5,0,22,9.0,0.0,0.0,592.2090966552472,159.23897478389006,0.0,14813.13403892809,0,50,1,13325,201702610,,,230.0,,1.0,0.0,4.0,1.0,2.0,1.3,3499.268872581812,0.0,440.0,0.0,0.0,52771.0,0,1,2,112.0,8,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,751.4480714391373,0.050728500090823025,0.014239792147943705,40593.07692307692,9,5,9,9_1,9_0,9_1_0 +2611,1,24.0,2,36.0,1,111,2,84,84,2.0,0.0,0.0,296.1045483276236,0.0,0.0,21995.839999999997,20,41,2,13326,201702611,,,,664.0,0.0,0.0,2.0,0.0,2.0,1.5,3374.3546091857665,0.0,220.0,0.0,0.0,20541.0,3,3,3,35.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,296.1045483276236,0.01346184316341743,0.014415293721222121,13694.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +2612,2,34.0,2,0.0,8,120,5,52,69,6.0,0.0,69.396315978172,524.9126083989692,0.0,636.9558991355602,38250.31999999999,50,50,1,13327,201702612,,,370.0,,3.0,2.0,5.0,1.0,3.0,2.0,1617.1806110160323,0.0,390.0,360.0,0.0,42783.0,1,1,2,100.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1231.2648235127012,0.03218966072735343,0.028779300738908005,21391.5,6,3,6,6_1,6_1,6_0_0 +2613,2,37.0,2,0.0,8,111,4,85,45,5.0,0.0,0.0,3230.231436301349,0.0,0.0,78213.8,41,20,1,13328,201702613,,,,,1.0,1.0,5.0,3.0,5.0,2.4,2062.111830979402,0.0,2400.0,0.0,0.0,46656.0,6,1,1,90.0,4,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3230.231436301349,0.0413000191309123,0.06923507022250833,19440.0,5,3,5,5_1,5_2,5_0_0 +2614,2,78.0,3,0.0,1,120,2,0,72,3.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,16445.839999999997,0,50,1,13329,201702614,,,216.0,,0.0,1.0,3.0,0.0,1.0,1.0,1911.1709410051164,1400.0,0.0,0.0,0.0,14370.0,0,5,1,80.0,0,2.0,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2231.8653839520084,0.13571002660563455,0.1553142229611697,14370.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +2615,2,34.0,2,0.0,2,111,2,0,47,7.0,0.0,0.0,718.1840132073794,0.0,1338.3205191483999,38796.259999999995,0,50,2,13330,201702615,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4828.089551573481,1290.0,0.0,0.0,0.0,27984.0,0,1,2,67.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2056.5045323557792,0.05300780364797482,0.07348858391780229,27984.0,8,4,8,8_0,8_4,8_0_1 +2616,2,86.0,3,0.0,4,111,2,77,75,6.0,0.0,0.0,605.6683943065029,0.0,2034.7202333497064,15081.25086635044,70,50,1,13331,201702616,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1389.4773716852683,0.0,450.0,1150.0,0.0,33238.0,5,5,1,80.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2640.3886276562093,0.17507756160647736,0.07943885395198896,22158.666666666668,6,3,6,6_1,6_2,6_0_1 +2617,1,46.0,4,446.0,3,111,1,85,65,1.0,0.0,0.0,145.36041463356068,0.0,1840.0948197249518,23796.960000000003,71,71,2,13332,201702617,,,350.0,78.0,1.0,0.0,3.0,3.0,5.0,2.4,2977.8285464283754,0.0,108.0,1040.0,0.0,21792.0,6,4,3,66.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1985.4552343585124,0.08343314584545725,0.09110936281013732,9080.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2618,2,85.0,1,0.0,5,111,2,0,77,9.0,0.0,0.0,884.6368231341769,0.0,3299.2401661817444,25435.903307042754,0,44,1,13333,201702618,,,400.0,,0.0,2.0,5.0,0.0,1.0,1.0,2600.9979133248835,621.9600197495854,400.0,1500.0,0.0,33748.0,0,5,1,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4183.8769893159215,0.1644870614112407,0.12397407222104781,33748.0,9,5,9,9_1,9_4,9_0_0 +2619,2,46.0,3,0.0,4,400,4,69,63,3.0,0.0,0.0,2422.6735772260117,134.46846759528495,0.0,34761.35697444816,31,50,1,13334,201702619,,,670.0,,2.0,0.0,5.0,3.0,5.0,2.6,1873.1521240651605,0.0,1800.0,0.0,0.0,38300.0,1,1,3,90.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2557.1420448212966,0.07356277968955473,0.06676611083084326,14730.76923076923,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +2620,2,50.0,3,0.0,8,300,2,52,64,9.0,0.0,0.0,3445.5801987214386,0.0,0.0,33215.38,60,50,1,13336,201702620,,,370.0,,3.0,1.0,5.0,1.0,3.0,2.0,2109.8134087562544,0.0,2560.0,0.0,0.0,62142.0,1,1,2,160.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3445.5801987214386,0.10373448079538572,0.05544688292493706,31071.0,8,4,8,8_1,8_0,8_0_0 +2621,2,46.0,5,0.0,7,111,1,0,56,1.0,0.0,0.0,457.61612014269105,0.0,0.0,13884.019999999999,0,41,2,13337,201702621,,,,294.0,1.0,0.0,2.0,1.0,2.0,1.3,1893.6843928698897,0.0,340.0,0.0,0.0,10481.0,0,1,3,34.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,457.61612014269105,0.03295991507810354,0.04366149414585355,8062.307692307692,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +2622,2,88.0,3,0.0,4,111,6,0,77,8.0,3336.3169872190692,0.0,74.0261370819059,49.54101437721024,0.0,24725.480315994115,0,70,1,13338,201702622,,,180.0,,0.0,3.0,5.0,0.0,1.0,1.0,3842.397544163578,0.0,55.0,0.0,0.0,28770.0,0,5,1,100.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3459.884138678185,0.13993192829666073,0.12026013690226574,28770.0,8,4,8,8_1,8_4,8_0_1 +2623,1,40.0,5,262.0,9,111,2,77,65,4.0,0.0,0.0,925.2882402718332,0.0,1724.2548083911943,33059.880000000005,71,71,1,13339,201702623,,,550.0,,1.0,1.0,3.0,2.0,4.0,2.3,2921.2655914430193,1662.0,0.0,0.0,0.0,39138.0,7,1,3,58.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2649.5430486630275,0.08014375879957904,0.06769745640203964,17016.521739130436,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +2624,2,68.0,3,0.0,6,120,5,77,75,3.0,0.0,610.6875806079136,967.7235011252791,0.0,644.0331869037332,27306.125846751303,42,41,1,13341,201702624,,,408.0,,0.0,2.0,4.0,0.0,2.0,1.5,1466.0530745880658,0.0,719.0,364.0,0.0,22970.0,5,5,1,107.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2222.4442686369257,0.08138995187782513,0.09675421282703203,15313.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2625,2,73.0,1,0.0,7,111,2,0,75,9.0,0.0,416.377895869032,556.7317931840151,0.0,1037.4577667817055,45085.04,0,41,1,13343,201702625,,,340.0,,0.0,1.0,5.0,0.0,1.0,1.0,6568.975811611403,1000.0,0.0,0.0,0.0,37933.0,0,5,1,110.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2010.5674558347525,0.04459500215226054,0.05300312276473658,37933.0,9,5,9,9_1,9_2,9_0_0 +2626,1,28.0,3,300.0,6,111,4,0,67,3.0,0.0,0.0,1337.8541865348086,0.0,0.0,10801.174007939444,0,42,2,13346,201702626,,,,64.0,1.0,0.0,2.0,1.0,2.0,1.3,1298.573893680894,0.0,994.0,0.0,0.0,19700.0,0,4,3,42.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1337.8541865348086,0.12386192330124612,0.06791138002714764,15153.846153846152,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2627,2,83.0,2,0.0,3,111,1,56,74,5.0,0.0,0.0,240.2097271473627,0.0,447.62567925265915,37504.44324229807,71,50,2,13347,201702627,,,,,1.0,2.0,3.0,0.0,2.0,1.5,3885.3136441996007,431.46400131663904,0.0,0.0,0.0,28900.0,1,5,5,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,687.8354064000218,0.01834010444992477,0.023800533093426363,19266.666666666668,5,3,5,5_0,5_4,5_0_1 +2628,2,45.0,1,0.0,9,120,5,43,43,10.0,0.0,138.792631956344,1884.3016711757866,61.9262679715128,0.0,65463.63170475993,33,33,1,13352,201702628,,,500.0,,2.0,0.0,5.0,1.0,3.0,1.8,1670.98281803049,0.0,1400.0,0.0,0.0,70830.0,1,1,2,110.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2085.0205711036433,0.03185005959502915,0.029436969802395078,39350.0,9,5,9,9_1,9_1,9_0_0 +2629,2,33.0,1,0.0,1,112,4,0,38,9.0,0.0,0.0,955.610133239149,0.0,0.0,25469.920000000002,0,12,1,13353,201702629,,,135.0,,1.0,0.0,4.0,0.0,1.0,1.0,3653.112420233785,0.0,710.0,0.0,0.0,34249.0,0,1,3,80.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,955.610133239149,0.037519165087253864,0.02790184044027998,34249.0,9,5,9,9_1,9_0,9_1_0 +2630,1,36.0,5,329.0,1,300,2,0,46,2.0,0.0,0.0,403.7789295376686,0.0,1486.2304313163072,12048.6,0,71,2,13354,201702630,,,,,1.0,0.0,2.0,1.0,2.0,1.5,536.3271828972048,0.0,300.0,840.0,0.0,17258.0,0,1,3,40.0,0,0.0,2,8,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1890.0093608539757,0.15686547489782843,0.10951497049797054,11505.333333333334,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +2631,1,39.0,4,356.0,3,111,3,0,55,1.0,0.0,0.0,40.37789295376686,0.0,141.54575536345783,15438.080000000002,0,50,2,13355,201702631,,,,,1.0,0.0,4.0,1.0,2.0,1.3,953.5919405187994,0.0,30.0,80.0,0.0,12952.0,0,4,3,65.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,181.9236483172247,0.011784085088121364,0.014045988906518274,9963.076923076922,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2632,1,42.0,4,459.0,4,111,3,0,85,3.0,0.0,0.0,1782.0759043141757,0.0,612.1000824012061,25288.67767003528,0,30,2,13357,201702632,1080.0,1080.0,,,0.0,0.0,5.0,3.0,4.0,2.3,1070.621887445499,590.0,1080.0,0.0,0.0,32037.0,0,7,3,100.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2394.175986715382,0.09467383063497452,0.07473159118255086,13929.13043478261,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2633,2,42.0,3,0.0,1,211,2,64,64,5.0,4759.368027416646,346.98157989085996,1305.5518721717951,0.0,0.0,43278.75999999999,43,50,1,13358,201702633,,,,,2.0,0.0,6.0,2.0,4.0,2.3,106.6784646360265,0.0,970.0,0.0,0.0,47788.0,1,1,2,200.0,1,2.0,4,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,6411.901479479302,0.1481535395071232,0.13417388213524947,20777.391304347828,5,3,5,5_1,5_1,5_1_0 +2634,1,23.0,3,437.0,4,111,2,0,22,4.0,0.0,0.0,331.09872222088825,0.0,1307.5289151699417,18663.13087530163,0,71,2,13359,201702634,,,,213.0,2.0,0.0,4.0,3.0,5.0,2.6,1274.3063562801121,0.0,246.0,739.0,0.0,46183.0,0,1,3,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1638.62763739083,0.08780025432706755,0.03548118652731156,17762.69230769231,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +2635,1,36.0,3,256.0,7,111,4,0,67,2.0,0.0,0.0,4651.533268273942,0.0,0.0,11196.92,0,50,2,1336,201702635,,,,94.0,1.0,0.0,1.0,0.0,1.0,1.0,3455.662147627409,0.0,3456.0,0.0,0.0,13056.0,0,4,3,23.0,4,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,4651.533268273942,0.415429713552829,0.35627552606264873,13056.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2636,2,54.0,1,0.0,4,111,2,42,38,10.0,761.4988843866635,0.0,1481.0320625243025,0.0,1596.459370065572,63237.45950507254,30,31,1,13360,201702636,,,487.0,,2.0,1.0,6.0,2.0,4.0,2.5,1919.583309869301,491.6785183780537,897.0,614.0,0.0,100846.0,1,1,1,180.0,9,7.0,4,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3838.9903169765385,0.06070753548644055,0.03806784916582252,40338.4,9,5,9,9_1,9_3,9_0_1 +2637,1,69.0,4,70.0,99,400,4,0,78,2.0,0.0,0.0,565.290501352736,0.0,0.0,13165.76,0,50,8,13361,201702637,,,290.0,,0.0,1.0,2.0,0.0,1.0,1.0,2171.7334839603304,0.0,420.0,0.0,0.0,11040.0,0,5,3,45.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,565.290501352736,0.04293641243291204,0.05120384976021159,11040.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +2638,2,47.0,2,0.0,1,112,6,78,56,2.0,547.3273231529143,1374.0470563678055,1722.7900993607193,180.47083808840873,0.0,38188.11703804705,50,71,1,13362,201702638,,,320.0,,2.0,2.0,6.0,1.0,4.0,2.5,3737.1651134187427,0.0,1280.0,0.0,0.0,31890.0,7,1,1,150.0,5,0.0,5,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3824.6353169698477,0.10015249804433511,0.11993212031890398,12756.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2639,2,89.0,3,0.0,1,211,2,0,75,9.0,0.0,0.0,1347.2909395053166,0.0,2510.647795611727,12850.9058467513,0,33,1,13366,201702639,,,335.0,,0.0,1.0,8.0,0.0,1.0,1.0,2473.5450094082757,2420.0,0.0,0.0,0.0,30560.0,0,5,1,150.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3857.9387351170435,0.30020753253688554,0.12624145075644777,30560.0,8,4,8,8_1,8_1,8_1_0 +2640,2,78.0,3,0.0,3,111,2,77,75,6.0,0.0,0.0,1059.7093758075584,0.0,1974.7457140454012,24261.6,70,70,2,13367,201702640,,,450.0,,0.0,3.0,3.0,0.0,2.0,1.5,2394.12818944207,1903.4468460063238,0.0,0.0,0.0,32814.0,5,5,1,52.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3034.4550898529596,0.12507234023530847,0.09247440390848295,21876.0,6,3,6,6_0,6_3,6_0_1 +2641,2,35.0,3,0.0,3,111,1,0,52,5.0,0.0,0.0,1707.984871944338,0.0,0.0,15870.063786137145,0,50,2,13368,201702641,,,,267.0,1.0,0.0,2.0,0.0,1.0,1.0,2660.7255251127676,0.0,1269.0,0.0,0.0,22363.0,0,1,3,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1707.984871944338,0.1076230628282856,0.07637548056809632,22363.0,6,3,6,6_0,6_4,6_0_1 +2642,2,46.0,3,0.0,1,120,2,0,21,3.0,1221.5711270369393,0.0,969.0694308904046,88.46609710216114,0.0,19852.220513464174,0,44,1,13369,201702642,,,,,2.0,0.0,4.0,1.0,2.0,1.5,2565.202088778546,0.0,720.0,0.0,0.0,23253.0,0,1,1,85.0,0,0.0,2,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2279.1066550295054,0.11480361370577008,0.09801344579320971,15502.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2643,1,59.0,9,244.0,3,400,1,0,77,3.0,0.0,0.0,259.76444466923346,0.0,0.0,10099.110875301627,0,71,2,13372,201702643,,,,,0.0,0.0,3.0,0.0,1.0,1.0,4494.941503543521,0.0,193.0,0.0,0.0,13947.0,0,7,3,59.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,259.76444466923346,0.025721516267784825,0.018625112545295294,13947.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +2644,2,44.0,2,0.0,6,111,2,35,56,2.0,0.0,0.0,1015.4787907676435,0.0,1892.3229666098305,60077.3458467513,42,41,2,13373,201702644,,,,690.0,2.0,0.0,6.0,2.0,4.0,2.5,3487.1098788830022,1824.0,0.0,0.0,0.0,33655.0,1,1,3,110.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2907.801757377474,0.048400969057369146,0.08640028992356186,13462.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +2645,2,79.0,2,0.0,5,221,4,0,77,5.0,0.0,0.0,1741.6331160724772,113.23660429076627,0.0,21714.244493575057,0,50,1,13375,201702645,,,,,0.0,3.0,7.0,0.0,1.0,1.0,1341.0650611953256,0.0,1294.0,0.0,0.0,20183.0,0,5,1,140.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1854.8697203632435,0.08542179401692164,0.09190257743463526,20183.0,5,3,5,5_1,5_1,5_0_0 +2646,2,52.0,2,0.0,7,112,4,54,48,9.0,0.0,0.0,1950.2522296669392,0.0,0.0,33263.28,60,12,1,13376,201702646,,,272.0,,2.0,0.0,4.0,0.0,2.0,1.5,1486.690038797884,0.0,1449.0,0.0,0.0,54007.0,1,1,2,95.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1950.2522296669392,0.05863078534849658,0.036111100962225993,36004.666666666664,9,5,9,9_1,9_0,9_0_0 +2647,2,55.0,2,0.0,7,300,5,13,13,9.0,0.0,0.0,1152.115878947481,90.23541904420436,0.0,22303.34,41,44,1,13377,201702647,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1708.6179594882371,0.0,856.0,0.0,0.0,61643.0,1,1,1,100.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1242.3512979916852,0.05570247765544018,0.020153972032374887,41095.333333333336,10,5,10,10_1,10_0,10_0_0 +2648,2,68.0,3,0.0,3,111,1,77,78,4.0,0.0,0.0,222.69271727360606,0.0,414.9831067126821,13017.96,71,70,2,13378,201702648,,,,287.0,0.0,2.0,3.0,0.0,2.0,1.5,2023.7518280076818,400.0,0.0,0.0,0.0,24970.0,5,5,3,61.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,637.6758239862882,0.04898431274840975,0.025537678173259436,16646.666666666668,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +2649,1,35.0,4,408.0,99,120,2,0,85,1.0,0.0,0.0,433.7607397352783,0.0,2174.0084933074345,9207.78,0,50,2,13380,201702649,,,,,0.0,0.0,4.0,2.0,3.0,1.6,578.0952693967408,680.0,41.0,830.0,0.0,14351.0,0,6,3,60.0,0,2.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2607.7692330427126,0.2832136772428004,0.18171341600186136,8969.375,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +2650,2,44.0,2,0.0,9,120,6,21,21,8.0,0.0,0.0,6844.904852241146,0.0,214.77713585306665,89170.27873897791,31,50,1,13381,201702650,,,440.0,,2.0,0.0,6.0,3.0,5.0,2.8,3304.090392468289,207.02253405391735,5000.0,0.0,0.0,83787.0,1,1,2,220.0,0,0.0,4,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,7059.681988094212,0.07917079645741087,0.08425748610278698,29923.928571428572,8,4,8,8_1,8_0,8_0_0 +2651,1,40.0,4,489.0,8,400,2,0,63,3.0,0.0,0.0,613.7439728972563,0.0,1604.7750014332032,31772.92094798235,0,71,1,13382,201702651,,,1000.0,,2.0,0.0,5.0,4.0,5.0,2.6,617.3898334716666,0.0,456.0,907.0,0.0,39854.0,0,1,3,120.0,0,0.0,2,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2218.5189743304595,0.0698242059004443,0.05566615582703015,15328.461538461537,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +2652,2,80.0,2,0.0,4,211,2,77,74,9.0,0.0,0.0,613.7439728972563,0.0,1475.6144996640478,37294.04,50,42,1,13383,201702652,,,323.0,,0.0,7.0,4.0,0.0,2.0,1.5,1256.017045879379,0.0,456.0,834.0,0.0,54540.0,5,5,1,90.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2089.358472561304,0.05602392426675426,0.03830873620391097,36360.0,9,5,9,9_1,9_1,9_0_1 +2653,1,40.0,3,300.0,5,112,4,0,68,2.0,0.0,0.0,2099.6504335958766,0.0,0.0,14787.36,0,71,1,13384,201702653,,,517.0,,1.0,1.0,6.0,1.0,2.0,1.3,892.0214104859155,0.0,1560.0,0.0,0.0,14617.0,0,1,3,130.0,10,0.0,2,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2099.6504335958766,0.14198953928191893,0.1436444163368596,11243.846153846154,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +2654,2,25.0,2,0.0,8,111,1,0,67,6.0,0.0,0.0,749.682879174938,0.0,0.0,24640.18,0,71,2,13385,201702654,,,,415.0,1.0,0.0,2.0,0.0,1.0,1.0,4539.187198352444,0.0,557.0,0.0,0.0,21833.0,0,1,3,48.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,749.682879174938,0.030425219262803192,0.03433714465144222,21833.0,6,3,6,6_0,6_2,6_0_0 +2655,2,77.0,3,0.0,1,112,2,0,78,6.0,0.0,0.0,558.5608525271082,2653.9829130648345,0.0,16113.8,0,70,1,13386,201702655,,,300.0,,0.0,2.0,4.0,0.0,1.0,1.0,3324.25772431711,0.0,415.0,0.0,0.0,22730.0,0,5,1,100.0,8,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3212.5437655919427,0.19936599471210656,0.14133496549018665,22730.0,6,3,6,6_1,6_1,6_1_0 +2656,2,77.0,1,0.0,8,112,5,74,74,9.0,0.0,346.98157989085996,1965.0574570833205,0.0,0.0,35704.92,30,12,1,13387,201702656,,,340.0,,0.0,2.0,6.0,0.0,2.0,1.5,2266.9873441822533,0.0,1460.0,0.0,0.0,57313.0,5,5,1,175.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2312.0390369741804,0.06475407414368049,0.040340569102545326,38208.666666666664,9,5,9,9_1,9_2,9_0_0 +2657,2,35.0,3,0.0,9,112,4,42,43,4.0,0.0,0.0,283.99118044149355,88.46609710216114,0.0,80698.54,44,30,1,13388,201702657,,,,,2.0,0.0,5.0,4.0,6.0,2.7,1815.253199140971,0.0,211.0,0.0,0.0,47416.0,1,1,3,190.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,372.4572775436547,0.004615415316604919,0.007855096961862129,17561.48148148148,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2658,1,28.0,3,17.0,99,111,2,0,52,6.0,0.0,0.0,134.5929765125562,0.0,0.0,11579.11665845403,0,42,2,13389,201702658,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3502.4289627163707,0.0,100.0,0.0,0.0,23678.0,0,1,2,68.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,134.5929765125562,0.01162376893528303,0.005684305114982523,23678.0,6,3,6,6_0,6_2,6_0_0 +2659,0,38.0,2,0.0,5,111,1,42,56,3.0,0.0,0.0,0.0,0.0,0.0,22496.00417758094,30,50,2,13391,201702659,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2871.68783175709,0.0,0.0,0.0,0.0,26250.0,1,1,5,53.0,9,7.0,4,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,14583.333333333332,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +2660,2,68.0,3,0.0,5,211,4,78,78,5.0,68.21760839297194,51.353273823847275,4845.3471544520235,106.15931652259337,0.0,14725.400000000001,70,50,1,13393,201702660,,,231.0,,0.0,2.0,5.0,0.0,2.0,1.5,1291.2177157348808,0.0,3600.0,0.0,0.0,28101.0,5,5,1,80.0,4,4.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5071.077353191436,0.34437620391917606,0.18045896420737467,18734.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2661,2,46.0,2,0.0,9,120,5,34,38,9.0,0.0,555.170527825376,1207.298999317629,0.0,0.0,46869.87999999999,20,20,1,13394,201702661,,,202.0,,2.0,0.0,7.0,1.0,3.0,1.8,1755.4184180923692,0.0,897.0,0.0,0.0,68040.0,1,1,1,145.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1762.469527143005,0.037603457212670596,0.02590343220374787,37800.0,9,5,9,9_1,9_0,9_0_0 +2662,2,43.0,3,0.0,1,111,4,0,45,9.0,0.0,0.0,1345.929765125562,0.0,0.0,34090.68,0,20,2,13396,201702662,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2841.3589038160626,0.0,1000.0,0.0,0.0,34955.0,0,1,2,44.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1345.929765125562,0.039480871755141346,0.03850464211487804,34955.0,9,5,9,9_0,9_4,9_1_0 +2663,1,35.0,4,520.0,8,111,4,55,63,4.0,0.0,0.0,2390.371262862998,0.0,0.0,9319.58,31,43,2,13397,201702663,,,,,2.0,0.0,3.0,4.0,6.0,2.7,1043.112022427467,0.0,1776.0,0.0,0.0,43594.0,4,1,3,63.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2390.371262862998,0.2564891618359409,0.054832574731912595,16145.925925925925,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +2664,2,86.0,3,0.0,2,111,2,0,77,4.0,0.0,0.0,484.5347154452023,0.0,353.8643884086446,20512.36,0,70,2,13398,201702664,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4390.049185832566,0.0,360.0,200.0,0.0,16597.0,0,5,1,54.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,838.3991038538469,0.04087287390889429,0.05051509934649918,16597.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +2665,1,48.0,3,305.0,99,120,4,0,56,2.0,0.0,0.0,1211.3367886130059,88.46609710216114,0.0,17020.405846751302,0,50,1,1340,201702665,,,450.0,203.0,1.0,0.0,4.0,2.0,3.0,1.8,401.7415567580154,0.0,900.0,0.0,0.0,24150.0,0,1,3,90.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1299.8028857151671,0.07636732622114657,0.053822065661083524,13416.666666666666,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +2667,2,33.0,2,0.0,9,111,2,47,38,3.0,0.0,0.0,868.5015973670635,0.0,1618.4341161794603,22192.800000000003,20,20,2,13401,201702667,,,480.0,644.0,2.0,0.0,3.0,2.0,4.0,2.1,1049.9990366093134,1560.0,0.0,0.0,0.0,29580.0,4,1,3,64.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2486.935713546524,0.1120604751787302,0.0840749057994092,14085.714285714284,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +2668,2,39.0,3,0.0,99,111,1,55,67,5.0,0.0,0.0,242.26735772260116,106.15931652259337,0.0,17943.66,70,50,8,13402,201702668,,,600.0,380.0,2.0,0.0,4.0,2.0,4.0,2.1,2265.314405587887,0.0,180.0,0.0,0.0,40003.0,1,1,3,80.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,348.42667424519453,0.019417815219704038,0.00871001360510948,19049.04761904762,5,3,5,5_0,5_2,5_0_0 +2669,1,43.0,4,99.0,99,111,1,0,48,1.0,0.0,0.0,969.0694308904046,212.31863304518674,0.0,24824.00039044812,0,50,2,13404,201702669,,,,411.0,1.0,0.0,3.0,2.0,3.0,2.0,2074.9320745718073,0.0,720.0,0.0,0.0,19682.0,0,4,3,56.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1181.3880639355914,0.04759055935199593,0.06002378131976381,9841.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2670,2,73.0,1,0.0,6,111,7,75,31,10.0,0.0,0.0,269.1859530251124,0.0,0.0,65742.1516935026,33,10,1,13405,201702670,,,,,1.0,2.0,6.0,0.0,2.0,1.5,2040.63137070062,0.0,200.0,0.0,0.0,105640.0,5,1,1,160.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,269.1859530251124,0.00409457168788889,0.0025481441975114764,70426.66666666667,10,5,10,10_1,10_3,10_0_0 +2671,2,45.0,4,0.0,8,112,2,85,63,3.0,0.0,0.0,1071.3600930399473,0.0,1008.513506964637,24537.090875301634,71,50,1,13406,201702671,,,760.0,491.0,1.0,1.0,4.0,2.0,4.0,2.5,1886.2299994580806,0.0,796.0,570.0,0.0,37703.0,7,1,3,80.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2079.873600004584,0.08476447393762267,0.05516467124644151,15081.2,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2672,2,67.0,3,0.0,1,111,1,0,77,4.0,0.0,0.0,565.290501352736,0.0,247.7050718860512,8559.110875301629,0,71,2,13407,201702672,,,,252.0,0.0,6.0,1.0,0.0,1.0,1.0,2919.8741931605646,0.0,420.0,140.0,0.0,17662.0,0,5,3,35.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,812.9955732387872,0.0949859845354716,0.046030776426157126,17662.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +2673,1,47.0,3,360.0,3,112,1,85,85,2.0,0.0,0.0,567.9823608829871,0.0,1486.2304313163072,11665.72,71,60,2,13408,201702673,,,,,0.0,0.0,4.0,3.0,5.0,2.4,1127.221519050678,0.0,422.0,840.0,0.0,29861.0,6,7,3,75.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,2054.212792199294,0.1760896706074974,0.06879249831550498,12442.083333333334,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +2674,2,83.0,2,0.0,2,211,2,77,74,7.0,0.0,0.0,646.0462872602698,0.0,2816.7605317328107,27910.760000000002,50,42,1,13409,201702674,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1113.0832814703695,0.0,480.0,1592.0,0.0,35500.0,5,5,1,170.0,2,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3462.8068189930805,0.12406709165186043,0.09754385405614312,23666.666666666668,6,3,6,6_1,6_1,6_0_1 +2675,2,36.0,4,0.0,99,111,1,43,38,7.0,0.0,0.0,259.9937474169351,0.0,484.4927770870564,31351.42,33,12,2,1341,201702675,,,64.0,,2.0,0.0,3.0,2.0,4.0,2.1,4399.771232950579,467.0,0.0,0.0,0.0,48304.0,1,1,2,65.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,744.4865245039915,0.023746500940116638,0.015412523279728212,23001.90476190476,6,3,6,6_0,6_2,6_0_0 +2676,1,23.0,3,193.0,9,221,1,0,67,3.0,0.0,0.0,278.6074613809913,0.0,0.0,12723.46,0,70,2,13410,201702676,,,,90.0,1.0,0.0,2.0,0.0,1.0,1.0,6858.558112987303,0.0,207.0,0.0,0.0,14147.0,0,1,3,46.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,278.6074613809913,0.02189714601067566,0.019693748595532006,14147.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +2677,1,30.0,3,152.0,9,111,1,0,55,4.0,0.0,0.0,339.1743008116416,0.0,0.0,12173.08,0,41,2,13411,201702677,,,,175.0,1.0,0.0,2.0,1.0,2.0,1.3,817.9875860973482,0.0,252.0,0.0,0.0,23275.0,0,1,3,45.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,339.1743008116416,0.027862652739622316,0.01457247264496849,17903.846153846152,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +2678,2,29.0,2,0.0,9,112,4,46,46,10.0,0.0,0.0,2261.162005410944,0.0,0.0,60050.07087530163,31,31,1,13413,201702678,,,145.0,,2.0,0.0,4.0,1.0,3.0,1.8,2448.811158457914,0.0,1680.0,0.0,0.0,71392.0,1,1,2,90.0,8,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2261.162005410944,0.037654610102066534,0.03167248438775975,39662.22222222222,9,5,9,9_1,9_1,9_0_0 +2679,2,69.0,2,0.0,6,111,4,77,77,8.0,0.0,0.0,1959.6737380228183,198.16405750884095,0.0,36343.63150728986,50,50,1,13414,201702679,,,270.0,,0.0,3.0,6.0,0.0,2.0,1.5,2261.9474171238103,0.0,1456.0,0.0,0.0,42585.0,5,5,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2157.837795531659,0.05937320256779615,0.05067131138973017,28390.0,8,4,8,8_1,8_3,8_0_0 +2680,2,64.0,2,0.0,6,400,2,0,21,7.0,0.0,0.0,2374.220105681491,5638.829029291752,0.0,166274.8,0,50,1,13415,201702680,,,336.0,,1.0,3.0,7.0,0.0,1.0,1.0,3014.5256361062998,0.0,1764.0,0.0,0.0,54840.0,0,1,1,158.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,8013.049134973243,0.048191602906593446,0.14611686971140123,54840.0,10,5,10,10_1,10_0,10_0_0 +2681,2,26.0,3,0.0,2,111,2,52,34,7.0,0.0,0.0,857.3669615033833,0.0,1597.6849608438263,87925.3,31,20,2,13416,201702681,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1245.2475029959196,1540.0,0.0,0.0,0.0,41599.0,1,1,2,85.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2455.0519223472097,0.027922019286226032,0.05901708989031491,27732.666666666668,8,4,8,8_0,8_2,8_0_1 +2682,2,37.0,3,0.0,1,112,5,22,43,3.0,0.0,69.396315978172,1292.0925745205395,123.8525359430256,0.0,28964.56,41,41,1,13417,201702682,,,298.0,,2.0,0.0,6.0,3.0,5.0,2.4,2345.1417951022568,0.0,960.0,0.0,0.0,37201.0,1,1,2,100.0,4,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1485.341426441737,0.05128133921046054,0.0399274596500561,15500.416666666668,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2683,2,64.0,3,0.0,5,120,6,68,78,4.0,1253.300247219717,0.0,705.2671969257945,0.0,0.0,25596.359999999997,71,70,1,13418,201702683,,,376.0,,1.0,4.0,5.0,0.0,2.0,1.5,2000.914114316329,0.0,524.0,0.0,0.0,25450.0,1,5,1,100.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1958.5674441455114,0.0765174206076767,0.07695746342418512,16966.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2684,1,22.0,3,256.0,4,111,2,0,63,4.0,0.0,0.0,659.5055849115254,0.0,778.5016544990181,12677.900000000001,0,50,2,1342,201702684,,,500.0,74.0,2.0,0.0,5.0,1.0,2.0,1.5,1989.315813006514,0.0,490.0,440.0,0.0,26834.0,0,1,3,80.0,5,4.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1438.0072394105434,0.11342629610665357,0.05358900049975939,17889.333333333332,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +2685,2,50.0,1,0.0,9,112,4,69,69,10.0,0.0,0.0,3617.8592086575104,47.77169243516702,0.0,63416.1,71,50,1,13420,201702685,,,860.0,,2.0,3.0,5.0,0.0,2.0,1.5,1455.636275543,0.0,2688.0,0.0,0.0,84691.0,1,1,1,130.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3665.6309010926775,0.05780284345919534,0.043282413728645046,56460.666666666664,10,5,10,10_1,10_0,10_0_0 +2686,2,42.0,2,0.0,1,111,2,43,46,6.0,0.0,0.0,791.4067018938305,0.0,1769.3219420432229,39528.02,30,41,1,13421,201702686,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.3,1806.36783402037,0.0,588.0,1000.0,0.0,54982.0,1,1,2,120.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2560.728643937053,0.06478261860667581,0.04657394499903702,23905.217391304348,7,4,7,7_1,7_2,7_1_0 +2687,1,28.0,5,347.0,1,111,2,0,52,2.0,0.0,0.0,532.9881869897225,0.0,1741.0127909705313,8756.243786137145,0,50,2,13424,201702687,,,276.0,179.0,1.0,0.0,3.0,1.0,2.0,1.3,5481.053447633084,0.0,396.0,984.0,0.0,16184.0,0,4,3,50.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2274.0009779602537,0.2597005101160436,0.14050920526200283,12449.23076923077,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +2688,2,79.0,2,0.0,9,111,1,74,74,9.0,0.0,0.0,1076.7438121004495,0.0,0.0,49417.6,71,31,2,13428,201702688,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2186.1201546599273,0.0,800.0,0.0,0.0,60496.0,5,5,1,113.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1076.7438121004495,0.021788670678067116,0.017798595148446998,40330.666666666664,9,5,9,9_0,9_3,9_0_0 +2689,2,54.0,2,0.0,2,111,2,31,34,10.0,0.0,0.0,4845.3471544520235,0.0,0.0,50690.54107559283,10,10,1,13429,201702689,,,438.0,,2.0,2.0,6.0,0.0,2.0,1.5,1719.7819639868867,0.0,3600.0,0.0,0.0,132860.0,1,1,1,150.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4845.3471544520235,0.09558681070747195,0.03646957063414138,88573.33333333333,10,5,10,10_1,10_3,10_0_1 +2690,2,48.0,3,0.0,9,112,5,52,52,3.0,0.0,263.7060007170536,1345.929765125562,0.0,0.0,45329.54000000001,50,43,1,13431,201702690,,,210.0,,2.0,0.0,6.0,3.0,5.0,2.8,1325.1428478023747,0.0,1000.0,0.0,0.0,43580.0,1,1,2,160.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1609.6357658426155,0.03550964262691868,0.0369351942598122,15564.285714285716,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +2691,2,76.0,3,0.0,1,112,5,0,75,4.0,0.0,693.9631597817199,2422.6735772260117,0.0,0.0,28630.239999999998,0,60,2,13433,201702691,,,400.0,,0.0,1.0,4.0,0.0,1.0,1.0,2469.2328712307,0.0,1800.0,0.0,0.0,16765.0,0,5,5,80.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,3116.6367370077314,0.10885821205158362,0.1859013860428113,16765.0,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +2692,2,63.0,3,0.0,9,112,5,0,75,9.0,0.0,124.91336876070959,834.4764543778484,0.0,0.0,23342.4858467513,0,33,1,13435,201702692,,,120.0,,0.0,3.0,3.0,0.0,1.0,1.0,2480.86241877602,0.0,620.0,0.0,0.0,33638.0,0,5,2,70.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,959.389823138558,0.04110058497784551,0.028521012638639574,33638.0,9,5,9,9_1,9_0,9_0_0 +2693,2,51.0,2,0.0,1,300,2,0,34,9.0,3331.5576191916525,0.0,551.8312037014804,212.31863304518674,0.0,33718.561750603265,0,20,1,13437,201702693,,,424.0,,1.0,0.0,6.0,1.0,2.0,1.5,3035.247861350726,0.0,410.0,0.0,0.0,52339.0,0,1,1,170.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4095.7074559383195,0.12146744236103257,0.07825345260586407,34892.666666666664,9,5,9,9_1,9_0,9_1_0 +2694,2,39.0,1,0.0,3,111,1,34,38,9.0,0.0,0.0,1009.4473238441715,0.0,1564.080596766209,73636.04,10,12,2,1344,201702694,794.0,794.0,,,2.0,0.0,4.0,2.0,4.0,2.1,4371.79471694727,0.0,750.0,884.0,0.0,80113.0,1,1,2,83.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2573.5279206103805,0.03494929820520469,0.03212372424713068,38149.04761904762,9,5,9,9_0,9_4,9_0_1 +2695,2,31.0,2,0.0,9,112,4,33,31,7.0,0.0,0.0,2745.6967208561464,0.0,0.0,47867.159999999996,31,30,1,13440,201702695,,,380.0,,2.0,0.0,4.0,1.0,3.0,1.8,2970.342595525493,0.0,2040.0,0.0,0.0,43425.0,1,1,2,120.0,9,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2745.6967208561464,0.05736076092369271,0.0632284794670385,24125.0,7,4,7,7_1,7_1,7_0_0 +2696,2,86.0,4,0.0,6,111,2,77,77,5.0,0.0,0.0,339.1743008116416,0.0,1180.1377353428297,27434.739999999994,71,70,2,13441,201702696,,,,430.0,0.0,1.0,3.0,0.0,2.0,1.5,2908.715365314126,0.0,252.0,667.0,0.0,28814.0,5,5,3,67.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1519.3120361544713,0.055379130115848434,0.052728258351998035,19209.333333333332,5,3,5,5_0,5_3,5_0_0 +2697,1,31.0,4,256.0,99,111,1,67,46,2.0,0.0,0.0,767.1799661215703,0.0,0.0,27292.16,41,30,2,13442,201702697,,,,304.0,2.0,0.0,4.0,0.0,2.0,1.5,1016.2207172366723,0.0,570.0,0.0,0.0,17554.0,4,1,3,62.0,6,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,767.1799661215703,0.028109902848348033,0.04370399715857185,11702.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2698,2,62.0,3,0.0,2,400,2,0,78,1.0,1586.456009138882,0.0,767.1799661215703,185.7788039145384,0.0,9556.44115202909,0,50,1,13443,201702698,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2636.1021981349336,0.0,570.0,0.0,0.0,9543.0,0,5,1,90.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2539.4147791749906,0.2657280821151506,0.2661023555669067,9543.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +2699,1,34.0,5,275.0,9,111,4,0,56,4.0,0.0,0.0,269.1859530251124,0.0,0.0,5478.5111912957445,0,31,2,13444,201702699,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2792.6649699249383,0.0,200.0,0.0,0.0,16173.0,0,1,3,26.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,269.1859530251124,0.04913487325768265,0.016644157115260766,16173.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2700,1,32.0,5,429.0,4,111,4,0,85,2.0,0.0,0.0,2907.2082926712137,212.31863304518674,0.0,8991.284177580943,0,71,2,13445,201702700,,,300.0,,0.0,0.0,3.0,3.0,4.0,1.9,946.153267324015,0.0,2160.0,0.0,0.0,21538.0,0,6,3,85.0,8,6.0,2,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,3119.5269257164005,0.3469500979064475,0.14483828237145513,11335.789473684212,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2701,2,27.0,1,0.0,4,111,1,0,33,7.0,0.0,0.0,181.70051829195086,0.0,509.5647193084482,22151.36,0,20,2,13447,201702701,,,,565.0,1.0,0.0,2.0,0.0,1.0,1.0,3679.6853509410303,0.0,135.0,288.0,0.0,27278.0,0,1,3,22.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,691.2652376003991,0.031206446809604427,0.02534149269009455,27278.0,7,4,7,7_0,7_4,7_0_1 +2702,2,38.0,2,0.0,1,120,5,13,42,4.0,0.0,69.396315978172,2907.2082926712137,477.7169243516702,0.0,33425.259999999995,31,20,1,13448,201702702,,,540.0,,2.0,0.0,8.0,3.0,5.0,2.4,1891.4424290192296,0.0,2160.0,0.0,0.0,41304.0,1,1,2,126.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3454.3215330010557,0.10334464213594917,0.08363164664441836,17210.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2703,2,48.0,1,0.0,1,111,2,0,37,10.0,0.0,0.0,672.964882562781,0.0,4423.304855108057,36402.0,0,43,1,13449,201702703,,,300.0,,1.0,0.0,3.0,1.0,2.0,1.5,2579.3426603259054,0.0,500.0,2500.0,0.0,65133.0,0,1,1,122.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5096.269737670838,0.1399997180833701,0.07824405044556275,43422.0,10,5,10,10_1,10_4,10_1_0 +2704,2,36.0,3,0.0,8,120,5,85,43,3.0,0.0,624.566843803548,605.6683943065029,265.39829130648343,0.0,22266.700000000004,42,30,1,13450,201702704,,,192.0,,1.0,0.0,5.0,1.0,3.0,1.8,3336.9028421406833,0.0,450.0,0.0,0.0,28056.0,6,1,3,130.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1495.6335294165342,0.06716906993027857,0.05330886546252261,15586.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +2705,2,30.0,3,0.0,2,111,4,52,63,4.0,0.0,0.0,1332.4704674743064,0.0,0.0,31623.34,71,71,2,13452,201702705,,,,601.0,2.0,0.0,5.0,3.0,5.0,2.4,3011.3514114900822,0.0,990.0,0.0,0.0,39117.0,1,1,3,96.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1332.4704674743064,0.042135665223037994,0.03406371826761526,16298.75,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +2706,2,70.0,3,0.0,5,111,2,0,75,7.0,729.7697642038858,0.0,1615.1157181506744,0.0,0.0,17480.831191295743,0,50,1,13453,201702706,,,120.0,,0.0,0.0,4.0,0.0,1.0,1.0,3375.5822048125806,0.0,1200.0,0.0,0.0,27028.0,0,5,1,130.0,8,7.0,1,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2344.8854823545603,0.13414038821690313,0.08675763957209413,27028.0,7,4,7,7_1,7_3,7_0_0 +2707,2,51.0,2,0.0,1,111,4,0,37,9.0,0.0,0.0,1076.7438121004495,0.0,0.0,27125.540000000005,0,10,2,13454,201702707,,,100.0,530.0,1.0,0.0,3.0,0.0,1.0,1.0,2225.756187715076,0.0,800.0,0.0,0.0,36230.0,0,1,3,70.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1076.7438121004495,0.0396948341710598,0.029719674637053533,36230.0,9,5,9,9_0,9_3,9_1_0 +2708,2,59.0,2,0.0,1,300,5,0,52,3.0,0.0,138.792631956344,1211.3367886130059,150.39236507367394,0.0,31765.239999999998,0,50,1,13455,201702708,,,1350.0,,1.0,0.0,5.0,2.0,3.0,1.8,344.8174931689719,0.0,900.0,0.0,0.0,26572.0,0,1,1,80.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1500.5217856430238,0.04723785451150452,0.05647003558795062,14762.222222222223,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2709,2,58.0,2,0.0,6,111,4,0,69,10.0,0.0,0.0,1166.6948937535465,0.0,458.5628212150842,104156.43389687172,0,60,1,13456,201702709,,,,,1.0,1.0,4.0,1.0,2.0,1.5,2990.9036169213173,442.006254035372,684.0,0.0,0.0,124939.0,0,1,1,110.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1625.2577149686308,0.015604006916921188,0.013008409823743032,83292.66666666667,10,5,10,10_1,10_3,10_0_0 +2710,2,82.0,2,0.0,9,300,5,71,71,2.0,0.0,208.188947934516,748.3369494098124,212.31863304518674,0.0,12241.2,70,71,1,13457,201702710,,,240.0,,0.0,2.0,4.0,0.0,2.0,1.5,1727.0340708798606,0.0,556.0,0.0,0.0,19931.0,5,5,1,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1168.844530389515,0.09548447295931077,0.05864455021772691,13287.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2711,2,68.0,2,0.0,6,111,2,0,74,9.0,0.0,0.0,943.4967653530189,0.0,1403.0723000402759,23530.68,0,31,2,13458,201702711,,,372.0,,0.0,2.0,5.0,0.0,1.0,1.0,2236.1692811686985,0.0,701.0,793.0,0.0,33715.0,0,5,1,120.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2346.5690653932947,0.09972381016584708,0.06960015024153329,33715.0,9,5,9,9_0,9_3,9_0_0 +2712,2,73.0,3,0.0,6,300,5,0,78,2.0,0.0,2262.319900888407,1000.0258154882926,164.54694061001973,0.0,20651.46,0,50,1,13459,201702712,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2704.5650378473624,0.0,743.0,0.0,0.0,12040.0,0,5,1,110.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3426.8926569867194,0.16593948597274574,0.28462563596235213,12040.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2713,2,67.0,3,0.0,9,400,4,0,77,5.0,0.0,0.0,2008.1272095673385,0.0,0.0,19903.0,0,44,1,13460,201702713,,,,,0.0,3.0,3.0,0.0,1.0,1.0,1810.3011264553402,0.0,1492.0,0.0,0.0,18614.0,0,5,1,90.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2008.1272095673385,0.10089570464589953,0.10788262649443099,18614.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2714,2,76.0,2,0.0,1,111,2,74,72,10.0,0.0,0.0,3429.1342929855227,0.0,4360.787775315874,86048.28353061895,30,12,1,13461,201702714,,,325.0,,0.0,3.0,9.0,0.0,2.0,1.5,1499.1998507331575,4017.4470875691554,886.0,109.0,0.0,102101.0,5,5,1,400.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,7789.922068301396,0.09052966251824736,0.07629623674891917,68067.33333333333,10,5,10,10_1,10_2,10_1_0 +2715,1,32.0,4,515.0,99,111,1,0,22,3.0,0.0,0.0,269.1859530251124,0.0,0.0,12297.619999999999,0,41,2,13462,201702715,,,,35.0,1.0,0.0,5.0,4.0,5.0,2.2,1382.3978101333748,0.0,200.0,0.0,0.0,33920.0,0,1,3,112.0,6,5.0,2,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,269.1859530251124,0.021889272316522417,0.007935906633995059,15418.181818181816,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +2716,2,50.0,2,0.0,7,112,2,52,45,6.0,1903.7472109666587,0.0,1227.4879457945126,0.0,0.0,51642.12694028605,50,31,1,13464,201702716,,,355.0,,2.0,1.0,5.0,1.0,3.0,2.0,1302.726807644441,0.0,912.0,0.0,0.0,47084.0,1,1,1,98.0,6,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3131.2351567611713,0.06063334998540684,0.06650316788635569,23542.0,6,3,6,6_1,6_0,6_0_0 +2717,2,89.0,3,0.0,1,400,2,0,86,4.0,0.0,971.5484236944079,826.4008757870951,3007.847301473479,0.0,27865.070875301626,0,70,1,13466,201702717,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2248.181996126689,0.0,614.0,0.0,0.0,17488.0,0,6,1,150.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4805.796600954982,0.1724666921703267,0.2748053866053855,17488.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2718,2,52.0,2,0.0,9,111,2,37,38,9.0,0.0,0.0,959.6479225345257,0.0,1305.7595932278984,42753.4,30,50,1,13467,201702718,,,,,2.0,1.0,5.0,1.0,3.0,1.8,1725.661310015958,0.0,713.0,738.0,0.0,60819.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2265.4075157624243,0.052987774440452086,0.037248351925589444,33788.333333333336,9,5,9,9_1,9_4,9_0_0 +2719,1,76.0,2,24.0,1,111,2,0,77,3.0,0.0,0.0,253.03479584360565,0.0,771.4243667308452,11406.759999999998,0,71,2,13468,201702719,,,188.0,327.0,0.0,3.0,4.0,0.0,1.0,1.0,2856.6747473965393,0.0,188.0,436.0,0.0,14105.0,0,5,3,63.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1024.4591625744508,0.08981158212975911,0.07263092255047507,14105.0,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +2720,2,50.0,3,0.0,1,111,1,0,85,4.0,0.0,0.0,329.7527924557627,0.0,0.0,18806.360315994116,0,30,2,13469,201702720,,,,750.0,0.0,0.0,3.0,0.0,1.0,1.0,2719.264893491382,0.0,245.0,0.0,0.0,18471.0,0,4,3,59.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,329.7527924557627,0.017534110105043563,0.017852460205498494,18471.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +2721,2,24.0,1,0.0,4,111,1,0,54,6.0,0.0,0.0,59.22090966552473,0.0,0.0,21080.199999999997,0,20,2,1347,201702721,,,,325.0,1.0,0.0,3.0,0.0,1.0,1.0,4201.519167962021,0.0,44.0,0.0,0.0,22642.0,0,1,3,69.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,59.22090966552473,0.002809314411890055,0.0026155335070013573,22642.0,6,3,6,6_0,6_2,6_0_1 +2722,2,63.0,4,0.0,1,111,5,0,22,1.0,0.0,9.715484236944079,515.4911000430902,194.62541362475451,0.0,17274.32,0,50,1,13470,201702722,,,144.0,,1.0,0.0,5.0,1.0,2.0,1.5,785.3995610365353,0.0,383.0,0.0,0.0,9544.0,0,4,1,135.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,719.8319979047889,0.04167064161742916,0.07542246415599213,6362.666666666667,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +2723,2,52.0,3,0.0,2,111,2,0,52,9.0,0.0,0.0,1076.7438121004495,0.0,2300.11852465619,30853.298472656184,0,42,1,13472,201702723,,,380.0,,2.0,2.0,4.0,3.0,4.0,2.5,2169.2082786559045,0.0,800.0,1300.0,0.0,83740.0,0,1,1,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3376.8623367566397,0.10944898937627018,0.04032555931163888,33496.0,9,5,9,9_1,9_4,9_0_1 +2724,1,39.0,4,300.0,9,111,2,0,22,2.0,0.0,0.0,467.65470627457273,0.0,871.4645240966324,19619.510000000002,0,50,8,13474,201702724,,,360.0,,1.0,0.0,3.0,1.0,2.0,1.5,990.1830430414612,840.0,0.0,0.0,0.0,17707.0,0,1,3,70.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1339.119230371205,0.06825446865753552,0.0756265448902245,11804.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2725,1,23.0,3,212.0,1,111,4,0,84,1.0,0.0,0.0,619.1276919577585,0.0,0.0,16594.225846751302,0,30,2,13476,201702725,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4775.58217560235,0.0,460.0,0.0,0.0,9754.0,0,3,3,10.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,619.1276919577585,0.037309826784053736,0.0634742353862783,9754.0,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +2726,2,68.0,1,0.0,6,221,6,72,72,10.0,1383.3896399691052,0.0,994.6420964277903,0.0,0.0,86841.87466143876,41,41,1,13477,201702726,,,536.0,,0.0,1.0,6.0,0.0,2.0,1.5,2540.730143306546,0.0,739.0,0.0,0.0,91414.0,7,5,1,120.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2378.0317363968957,0.027383468466887394,0.02601386807706583,60942.666666666664,10,5,10,10_1,10_1,10_0_0 +2727,2,68.0,3,0.0,5,111,1,0,74,6.0,0.0,0.0,26.91859530251124,0.0,0.0,13850.199999999999,0,31,8,13478,201702727,,,,210.0,0.0,0.0,1.0,0.0,1.0,1.0,1894.1949638909598,0.0,20.0,0.0,0.0,22374.0,0,5,3,31.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,26.91859530251124,0.0019435528225232302,0.0012031194825472082,22374.0,6,3,6,6_0,6_2,6_0_0 +2728,2,62.0,2,0.0,9,112,4,0,74,7.0,0.0,0.0,1938.1388617808093,0.0,0.0,34412.48031599412,0,42,1,1348,201702728,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2105.163872592262,0.0,1440.0,0.0,0.0,26944.0,0,5,3,85.0,8,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1938.1388617808093,0.056320812797675826,0.07193211333806447,26944.0,7,4,7,7_1,7_1,7_0_0 +2729,2,54.0,2,0.0,6,111,5,75,45,5.0,158.64560091388822,485.77421184720396,1289.4007149902884,152.16168701571718,0.0,59324.62801587889,50,42,1,13480,201702729,,,628.0,,2.0,0.0,4.0,1.0,3.0,2.0,2003.4351363959222,0.0,958.0,0.0,0.0,41805.0,7,1,1,100.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2085.982214767098,0.03516216257114603,0.049897912086283885,20902.5,5,3,5,5_1,5_3,5_0_0 +2730,2,60.0,2,0.0,1,300,2,0,78,1.0,0.0,0.0,952.9182737088979,0.0,0.0,12947.324177580944,0,50,1,13481,201702730,,,250.0,,0.0,3.0,6.0,0.0,1.0,1.0,2597.513039685947,0.0,708.0,0.0,0.0,4337.0,0,5,1,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,952.9182737088979,0.07359963036678514,0.2197183015238409,4337.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2731,1,36.0,4,338.0,4,111,1,68,56,4.0,0.0,0.0,625.8573407833863,0.0,456.48506104715153,20000.08,71,71,8,13482,201702731,,,,55.0,2.0,0.0,3.0,4.0,6.0,2.9,3794.979926660638,0.0,465.0,258.0,0.0,48787.0,4,1,3,56.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1082.342401830538,0.054116903623912395,0.02218505753234546,16823.103448275862,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +2732,2,41.0,3,0.0,9,221,4,0,46,4.0,0.0,0.0,942.1508355878933,0.0,0.0,22286.521215627996,0,43,2,13483,201702732,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2644.355742049113,0.0,700.0,0.0,0.0,18110.0,0,1,3,45.0,1,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,942.1508355878933,0.042274468342202644,0.05202378992754795,18110.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +2733,2,56.0,3,0.0,6,112,2,52,38,7.0,0.0,138.792631956344,2498.045644073043,371.5576078290768,0.0,57607.6,33,50,1,13484,201702733,,,650.0,,2.0,0.0,5.0,2.0,4.0,2.5,1264.483512569244,0.0,1856.0,0.0,0.0,64888.0,1,4,1,91.0,10,1.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3008.395883858464,0.05222220477607927,0.046362900441660464,25955.2,7,4,7,7_1,7_1,7_0_0 +2734,2,72.0,3,0.0,5,400,4,77,77,4.0,0.0,0.0,1076.7438121004495,0.0,0.0,30910.12,50,41,1,13485,201702734,,,360.0,,0.0,2.0,4.0,0.0,2.0,1.5,1414.5952812028727,0.0,800.0,0.0,0.0,27414.0,5,5,1,92.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1076.7438121004495,0.0348346694254325,0.03927715080252606,18276.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2735,2,43.0,3,0.0,99,112,2,55,55,5.0,0.0,0.0,1259.790260157526,0.0,934.2019853988216,36193.64,42,43,1,13486,201702735,,,180.0,,2.0,0.0,6.0,1.0,3.0,1.8,1929.3718504173266,0.0,936.0,528.0,0.0,33372.0,1,1,1,150.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2193.992245556348,0.060618170638718515,0.06574350490100526,18540.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2736,2,43.0,2,0.0,5,111,1,0,45,10.0,0.0,0.0,364.7469663490273,0.0,0.0,31167.84,0,20,2,13487,201702736,,,,677.0,1.0,0.0,1.0,0.0,1.0,1.0,4131.874296506831,0.0,271.0,0.0,0.0,43580.0,0,1,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,364.7469663490273,0.011702670648624585,0.008369595372855147,43580.0,10,5,10,10_0,10_4,10_0_0 +2737,2,48.0,3,0.0,8,111,2,46,52,6.0,0.0,0.0,1438.7989189192258,0.0,0.0,82342.59672205291,43,50,2,13488,201702737,,,260.0,655.0,2.0,1.0,5.0,2.0,4.0,2.3,696.6671128047485,0.0,1069.0,0.0,0.0,51115.0,1,1,3,70.0,7,5.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1438.7989189192258,0.01747332457556428,0.028148271914686995,22223.913043478264,6,3,6,6_0,6_2,6_0_0 +2738,2,40.0,4,0.0,6,300,2,0,37,6.0,0.0,69.396315978172,1507.4413369406293,47.77169243516702,0.0,34453.28134949914,0,31,1,1349,201702738,,,747.0,,1.0,0.0,6.0,2.0,3.0,1.6,1933.198729337801,0.0,1120.0,0.0,0.0,36397.0,0,1,2,180.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1624.6093453539684,0.04715398016443464,0.04463580364738765,22748.125,6,3,6,6_1,6_0,6_0_0 +2739,2,49.0,2,0.0,7,112,2,0,56,4.0,1998.9345715149916,0.0,1239.6013136806425,0.0,0.0,61987.385846751306,0,31,1,13490,201702739,,,600.0,,1.0,2.0,10.0,4.0,5.0,2.4,451.59173939491654,0.0,921.0,0.0,0.0,39718.0,0,1,1,250.0,9,0.0,2,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3238.5358851956344,0.05224507923599367,0.08153824173411638,16549.166666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2740,2,47.0,2,0.0,9,112,2,52,46,2.0,0.0,0.0,1847.9615675173966,0.0,0.0,34355.4,50,31,1,13491,201702740,,,384.0,,3.0,0.0,5.0,4.0,6.0,3.5,1814.095309316212,0.0,1373.0,0.0,0.0,42716.0,1,4,1,125.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1847.9615675173966,0.05378955178858044,0.043261578039081296,12204.57142857143,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2741,2,75.0,3,0.0,1,300,1,0,75,3.0,0.0,0.0,450.88647131706324,150.21543287946963,0.0,11125.331191295745,0,50,1,13493,201702741,,,,320.0,0.0,0.0,3.0,0.0,1.0,1.0,3188.9695760629284,0.0,335.0,0.0,0.0,15462.0,0,5,3,40.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,601.1019041965328,0.05403002336387288,0.038876077104936804,15462.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2742,2,47.0,2,0.0,1,111,2,47,34,10.0,0.0,0.0,2171.660569890655,0.0,2614.084537897815,59965.7601468559,31,30,1,13496,201702742,,,,,2.0,2.0,5.0,1.0,3.0,2.0,2862.040847381913,1782.952056615478,876.0,432.0,0.0,79911.0,1,1,1,125.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4785.745107788471,0.07980796201145789,0.05988843973656281,39955.5,9,5,9,9_1,9_4,9_1_0 +2743,2,62.0,4,0.0,1,300,2,0,77,2.0,0.0,0.0,1278.633276869284,191.08676974066807,0.0,17563.14,0,41,1,13497,201702743,,,45.0,,0.0,3.0,4.0,0.0,1.0,1.0,3089.7266940846525,0.0,950.0,0.0,0.0,10869.0,0,5,3,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1469.720046609952,0.08368207772698687,0.1352212757944569,10869.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2744,2,59.0,2,0.0,3,111,1,52,48,9.0,0.0,0.0,1033.6740596164316,0.0,0.0,54198.100000000006,50,50,2,135,201702744,,,216.0,,2.0,1.0,4.0,0.0,2.0,1.5,2830.521266788431,0.0,768.0,0.0,0.0,53616.0,1,1,1,73.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1033.6740596164316,0.01907214569544747,0.019279208811109214,35744.0,9,5,9,9_0,9_3,9_0_1 +2745,2,59.0,2,0.0,1,111,2,77,38,6.0,2950.808176998321,0.0,672.964882562781,141.54575536345783,0.0,49594.72,50,31,1,1350,201702745,,,130.0,,1.0,2.0,6.0,0.0,2.0,1.5,1191.973887706299,0.0,500.0,0.0,0.0,31787.0,5,4,1,180.0,7,5.0,3,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3765.31881492456,0.07592176777940393,0.11845467690957183,21191.333333333332,5,3,5,5_1,5_2,5_1_0 +2746,2,59.0,1,0.0,7,120,2,0,21,10.0,2768.3657359473495,0.0,2335.4291731417657,0.0,1510.3321437956479,41760.78587095861,0,50,1,13502,201702746,,,35.0,,1.0,2.0,11.0,0.0,1.0,1.0,1940.5149901183268,1455.8010862271963,1133.0,0.0,0.0,113267.0,0,1,1,240.0,0,3.0,1,4,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6614.1270528847635,0.1583812879700709,0.058394122320576725,113267.0,10,5,10,10_1,10_1,10_0_0 +2747,2,88.0,3,0.0,1,211,2,0,78,4.0,2241.6623409132403,0.0,969.0694308904046,61.9262679715128,0.0,13295.6,0,70,1,13504,201702747,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1446.3225434362193,0.0,720.0,0.0,0.0,18199.0,0,5,5,96.0,2,3.0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3272.6580397751577,0.2461459460103461,0.17982625637535896,18199.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2748,1,67.0,3,37.0,8,111,2,0,78,3.0,0.0,0.0,874.8543473316153,0.0,1415.4575536345783,10083.62,0,70,2,13505,201702748,,,,233.0,0.0,6.0,2.0,0.0,1.0,1.0,2007.2610333125915,0.0,650.0,800.0,0.0,14356.0,0,5,3,40.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2290.3119009661937,0.2271319130397807,0.15953691146323445,14356.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2749,2,50.0,5,0.0,5,300,5,52,67,7.0,317.29120182777643,799.4455600685415,1453.6041463356069,99.08202875442048,0.0,29399.747849749776,50,50,1,13506,201702749,,,515.0,644.0,2.0,2.0,4.0,0.0,2.0,1.5,1717.083090445609,0.0,1080.0,0.0,0.0,36302.0,1,1,3,103.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2669.4229369863456,0.09079747726506658,0.0735337705081358,24201.333333333332,7,4,7,7_1,7_0,7_0_0 +2750,2,43.0,3,0.0,9,112,2,52,22,5.0,0.0,0.0,119.78774909617502,1457.9212802436157,0.0,53734.5,33,71,1,13507,201702750,,,80.0,,2.0,0.0,6.0,3.0,5.0,2.4,3043.9721356993764,0.0,89.0,0.0,0.0,48660.0,1,1,2,200.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1577.7090293397907,0.029361193075952894,0.03242312020838041,20275.0,5,3,5,5_1,5_0,5_0_0 +2751,2,57.0,2,0.0,9,111,2,77,37,10.0,0.0,0.0,5922.090966552472,0.0,4600.23704931238,156993.4258467513,41,70,1,13509,201702751,,,400.0,,1.0,3.0,8.0,1.0,3.0,2.0,1484.4283014377716,0.0,4400.0,2600.0,0.0,322898.0,6,1,1,320.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,10522.328015864852,0.0670240040887839,0.03258715760353069,161449.0,10,5,10,10_1,10_3,10_0_0 +2752,2,46.0,3,0.0,5,112,2,33,53,7.0,0.0,0.0,2691.859530251124,0.0,0.0,50082.83569949954,31,42,1,1351,201702752,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.5,3443.1306962629997,0.0,2000.0,0.0,0.0,61463.0,1,1,2,100.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2691.859530251124,0.05374814530076664,0.04379642272995337,24585.2,7,4,7,7_1,7_0,7_0_0 +2753,2,69.0,2,0.0,1,300,2,75,75,9.0,961.3923415381626,0.0,843.8979627337274,132.69914565324171,0.0,22845.92,33,33,1,13510,201702753,,,128.0,,0.0,5.0,6.0,0.0,2.0,1.5,2077.7709735575136,0.0,627.0,0.0,0.0,48358.0,5,5,1,200.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1937.9894499251316,0.08482868932068097,0.0400758809281842,32238.666666666668,9,5,9,9_1,9_0,9_1_0 +2754,2,69.0,3,0.0,3,111,2,0,78,3.0,0.0,0.0,417.2382271889242,0.0,1822.4016003045197,9456.2,0,70,2,13512,201702754,,,100.0,,0.0,0.0,4.0,0.0,1.0,1.0,4322.646016390748,0.0,310.0,1030.0,0.0,14080.0,0,5,1,70.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2239.639827493444,0.23684353413564052,0.15906532865720482,14080.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +2755,1,23.0,2,103.0,4,111,2,84,53,2.0,0.0,0.0,50.10586138656136,0.0,93.37119901035348,24210.239999999998,41,31,2,13515,201702755,,,,,1.0,0.0,3.0,0.0,2.0,1.5,2359.4502481426484,90.0,0.0,0.0,0.0,18552.0,3,1,3,65.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,143.47706039691485,0.0059262964925963085,0.007733778589743146,12368.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2756,1,41.0,1,190.0,99,120,2,85,62,4.0,2538.3296146222115,0.0,955.610133239149,0.0,0.0,28609.631507289865,71,42,1,13516,201702756,,,284.0,,1.0,0.0,5.0,2.0,4.0,2.1,2347.8508334318312,0.0,710.0,0.0,0.0,33385.0,4,1,3,111.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3493.9397478613605,0.12212459803863915,0.10465597567354681,15897.619047619048,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +2757,1,36.0,2,295.0,3,111,1,0,55,5.0,0.0,0.0,694.49975880479,0.0,736.0379278899808,26812.400315994117,0,71,2,13517,201702757,,,,143.0,1.0,0.0,4.0,3.0,4.0,1.9,553.671275260496,0.0,516.0,416.0,0.0,34900.0,0,1,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1430.5376866947709,0.0533535852752962,0.04098961852993613,18368.42105263158,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +2758,2,49.0,3,0.0,8,112,5,21,54,5.0,0.0,555.170527825376,2347.30151037898,0.0,0.0,27702.37087530163,50,42,1,13518,201702758,,,736.0,,2.0,1.0,5.0,1.0,3.0,2.0,2582.9210390676726,0.0,1744.0,0.0,0.0,41100.0,1,1,2,105.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2902.472038204356,0.10477341637181274,0.07061975762054394,20550.0,5,3,5,5_1,5_1,5_0_0 +2759,2,51.0,3,0.0,7,111,4,0,46,9.0,0.0,0.0,1397.0750962003333,0.0,0.0,32676.019999999997,0,42,2,1352,201702759,,,643.0,580.0,1.0,0.0,3.0,0.0,1.0,1.0,2026.621089226855,0.0,1038.0,0.0,0.0,36108.0,0,1,3,75.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1397.0750962003333,0.04275536299097422,0.038691566860538755,36108.0,9,5,9,9_0,9_4,9_0_0 +2760,2,48.0,2,0.0,1,112,5,55,45,7.0,0.0,356.6970641278041,1184.4181933104944,150.39236507367394,0.0,18840.52,42,43,1,13520,201702760,,,,,2.0,0.0,4.0,2.0,4.0,2.3,1944.7774637607267,0.0,880.0,0.0,0.0,53027.0,1,1,1,120.0,5,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1691.5076225119726,0.0897803044986005,0.03189898773289027,23055.217391304348,6,3,6,6_1,6_0,6_1_0 +2761,1,65.0,3,47.0,4,111,1,86,78,2.0,0.0,0.0,720.0724243421756,0.0,263.6289693644402,28719.559999999998,71,50,2,13521,201702761,,,36.0,560.0,0.0,4.0,5.0,0.0,2.0,1.5,2045.5049054617398,0.0,535.0,149.0,0.0,18319.0,6,5,3,90.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,983.7013937066158,0.034251966036618106,0.0536984220594255,12212.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2762,2,67.0,2,0.0,1,111,2,0,77,9.0,0.0,0.0,1060.5926549189428,0.0,1705.6263521296669,18216.4,0,42,1,13523,201702762,,,34.0,,0.0,0.0,5.0,0.0,1.0,1.0,1502.2705282342995,0.0,788.0,964.0,0.0,36620.0,0,5,1,120.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2766.2190070486095,0.15185322056216427,0.07553847643497022,36620.0,9,5,9,9_1,9_2,9_1_0 +2763,2,69.0,1,0.0,4,112,4,43,72,10.0,0.0,0.0,2785.404542787911,0.0,1849.7374589351427,47001.96436532271,50,31,1,13524,201702763,,,,,1.0,3.0,6.0,0.0,2.0,1.5,3022.1871195832837,1782.952056615478,1332.0,0.0,0.0,98310.0,1,5,1,215.0,9,3.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4635.142001723054,0.09861592093675954,0.04714822502006972,65540.0,10,5,10,10_1,10_1,10_0_1 +2764,2,33.0,3,0.0,8,111,2,0,65,4.0,0.0,0.0,874.8543473316153,0.0,0.0,21784.07665845403,0,50,2,13525,201702764,,,,540.0,1.0,0.0,2.0,0.0,1.0,1.0,4135.559843614541,0.0,650.0,0.0,0.0,18944.0,0,1,3,42.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,874.8543473316153,0.0401602675682882,0.04618107830086651,18944.0,5,3,5,5_0,5_3,5_0_0 +2765,1,61.0,4,62.0,99,111,2,0,56,1.0,0.0,0.0,524.9126083989692,0.0,1082.8250285304525,19330.36,0,70,2,13526,201702765,,,,,1.0,4.0,3.0,0.0,1.0,1.0,2388.456131392098,0.0,390.0,612.0,0.0,7621.0,0,4,3,54.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1607.7376369294216,0.0831716345132435,0.21096150596108404,7621.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2766,2,70.0,3,0.0,1,111,2,77,33,10.0,0.0,0.0,5156.826733412451,0.0,9609.636115676189,171807.03677004302,30,30,2,13527,201702766,,,,,2.0,2.0,6.0,1.0,3.0,2.0,2831.1768174838753,9262.67692369417,0.0,0.0,0.0,198593.0,5,1,1,210.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,14766.462849088639,0.08594795141512725,0.07435540451621477,99296.5,10,5,10,10_0,10_4,10_1_0 +2767,2,56.0,1,0.0,1,300,2,0,38,10.0,1059.7526141047733,208.188947934516,938.1130462925166,0.0,0.0,51261.69717191821,33,50,1,13528,201702767,,,270.0,,2.0,2.0,4.0,0.0,2.0,1.5,1612.3922148785448,0.0,697.0,0.0,0.0,108696.0,1,1,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2206.054608331806,0.043035145733339275,0.02029563745061277,72464.0,10,5,10,10_1,10_0,10_1_0 +2768,2,62.0,1,0.0,8,112,2,75,42,9.0,0.0,333.10231669522557,2611.1037443435903,0.0,0.0,47089.880000000005,33,20,1,13529,201702768,,,398.0,,1.0,3.0,7.0,0.0,2.0,1.5,1914.899480685976,0.0,1940.0,0.0,0.0,66971.0,5,5,1,200.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2944.2060610388157,0.06252311666623095,0.04396240254795084,44647.333333333336,10,5,10,10_1,10_2,10_0_0 +2769,1,56.0,4,256.0,5,400,4,0,77,1.0,0.0,0.0,672.964882562781,102.62067263850693,0.0,6243.34,0,71,1,1353,201702769,,,165.0,69.0,0.0,0.0,3.0,0.0,1.0,1.0,2544.3570500667456,0.0,500.0,0.0,0.0,3072.0,0,7,3,70.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,775.5855552012879,0.12422606412613887,0.2524692562504192,3072.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +2770,1,49.0,4,270.0,9,111,2,0,56,2.0,0.0,0.0,403.7789295376686,0.0,884.6609710216114,21462.66,0,71,2,13530,201702770,,,250.0,230.0,1.0,1.0,3.0,1.0,2.0,1.3,1067.3168968969264,0.0,300.0,500.0,0.0,15133.0,0,1,3,60.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1288.43990055928,0.060031696935947364,0.08514107583157866,11640.76923076923,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2771,2,47.0,2,0.0,1,111,2,55,21,6.0,0.0,0.0,957.4702250276586,0.0,2040.0324904738811,51370.246985872756,31,31,2,13531,201702771,,,,,2.0,0.0,5.0,1.0,3.0,1.8,5167.460717321289,1028.3844379128345,286.0,550.0,0.0,39194.0,1,1,1,100.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2997.5027155015396,0.058350950041682254,0.07647861191767974,21774.444444444445,6,3,6,6_0,6_3,6_1_0 +2772,2,35.0,1,0.0,9,300,4,46,38,10.0,0.0,0.0,1293.438504285665,0.0,0.0,55223.21119129574,60,12,1,13532,201702772,,,330.0,,2.0,0.0,4.0,0.0,2.0,1.5,2488.3481000075126,0.0,961.0,0.0,0.0,79779.0,1,1,2,110.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1293.438504285665,0.023422008180674872,0.0162127690781492,53186.0,10,5,10,10_1,10_0,10_0_0 +2773,2,31.0,1,0.0,1,112,4,0,43,3.0,0.0,0.0,706.61312669092,233.5504963497054,0.0,11510.800000000001,0,30,1,13533,201702773,,,180.0,,1.0,0.0,2.0,0.0,1.0,1.0,2590.896075673788,0.0,525.0,0.0,0.0,15213.0,0,1,3,35.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,940.1636230406255,0.08167665349416421,0.06180001466118619,15213.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2774,2,30.0,3,0.0,3,111,1,0,22,1.0,0.0,0.0,646.0462872602698,0.0,0.0,18639.760000000002,0,43,2,13535,201702774,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3048.821069395933,0.0,480.0,0.0,0.0,2365.0,0,1,2,46.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,646.0462872602698,0.034659581843342925,0.27316967748848614,2365.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +2775,2,63.0,2,0.0,5,112,2,75,75,9.0,0.0,0.0,815.9417323254629,0.0,2482.3786144770397,44960.69140419076,50,33,1,13536,201702775,,,252.0,,0.0,2.0,7.0,0.0,2.0,1.5,1813.7439155320478,508.2403211023671,396.0,1105.0,0.0,54343.0,5,5,1,140.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3298.3203468025026,0.07336008953134267,0.060694484051349806,36228.666666666664,9,5,9,9_1,9_0,9_0_0 +2776,2,67.0,2,0.0,5,112,4,0,77,8.0,0.0,0.0,1547.8192298943961,0.0,0.0,24355.91665845403,0,50,1,13538,201702776,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2249.6016441862594,0.0,1150.0,0.0,0.0,30575.0,0,5,1,100.0,10,2.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1547.8192298943961,0.06355002981820199,0.05062368699572841,30575.0,8,4,8,8_1,8_1,8_0_0 +2777,2,77.0,3,0.0,1,211,4,0,86,4.0,0.0,0.0,2877.5978378384516,0.0,0.0,13585.92,0,70,1,13539,201702777,,,195.0,,0.0,6.0,4.0,0.0,1.0,1.0,2906.582490383243,0.0,2138.0,0.0,0.0,16576.0,0,5,1,100.0,1,3.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2877.5978378384516,0.21180735922473057,0.1736002556611035,16576.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2778,2,69.0,4,0.0,6,300,5,77,78,6.0,0.0,55.5170527825376,1997.359771446334,212.31863304518674,0.0,30858.48,71,50,1,1354,201702778,,,672.0,,1.0,2.0,6.0,1.0,3.0,2.0,2670.3293120239987,0.0,1484.0,0.0,0.0,47234.0,6,5,1,99.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2265.1954572740583,0.07340593111760717,0.047956883966508414,23617.0,6,3,6,6_1,6_0,6_0_0 +2779,2,59.0,2,0.0,8,400,5,72,34,9.0,634.5824036555529,0.0,1009.4473238441715,0.0,0.0,32385.5762967519,70,10,1,13540,201702779,,,400.0,,1.0,3.0,4.0,0.0,2.0,1.5,1562.1545906886831,0.0,750.0,0.0,0.0,51394.0,5,1,2,125.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1644.0297274997242,0.050764257286494904,0.03198874824881746,34262.666666666664,9,5,9,9_1,9_0,9_0_0 +2780,2,31.0,2,0.0,9,112,2,47,38,10.0,0.0,0.0,2629.115608877744,0.0,3909.7001377500305,44875.35999999999,31,12,2,13543,201702780,,,,840.0,2.0,0.0,3.0,0.0,2.0,1.5,2248.73983822271,2063.099110382554,1100.0,1000.0,0.0,59832.0,1,1,3,70.0,9,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,6538.815746627774,0.1457106025807431,0.1092862639829485,39888.0,9,5,9,9_0,9_1,9_0_0 +2781,2,67.0,3,0.0,1,211,4,0,75,5.0,0.0,0.0,1033.6740596164316,155.70033089980362,0.0,13052.039999999997,0,50,1,13544,201702781,,,131.0,449.0,0.0,3.0,3.0,0.0,1.0,1.0,7774.582331802916,0.0,768.0,0.0,0.0,19180.0,0,5,3,75.0,2,3.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1189.3743905162353,0.09112555512519388,0.06201117781627921,19180.0,5,3,5,5_1,5_1,5_1_0 +2782,2,29.0,2,0.0,3,111,2,0,68,2.0,0.0,0.0,2153.487624200899,0.0,0.0,17912.611384210053,0,43,1,13545,201702782,,,400.0,,2.0,2.0,5.0,2.0,4.0,2.5,4429.778241779898,0.0,1600.0,0.0,0.0,31910.0,0,1,1,100.0,7,6.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2153.487624200899,0.12022186927469414,0.06748629345662485,12764.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +2784,2,64.0,3,0.0,5,112,2,77,75,7.0,0.0,0.0,1235.563524385266,106.15931652259337,0.0,37915.18,42,42,1,13548,201702784,,,333.0,,0.0,2.0,4.0,0.0,2.0,1.5,1514.0705841052666,0.0,918.0,0.0,0.0,39264.0,5,5,1,100.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1341.7228409078593,0.03538748440355181,0.03417183274520832,26176.0,7,4,7,7_1,7_0,7_0_0 +2785,2,69.0,1,0.0,2,111,6,77,77,8.0,0.0,0.0,173.6249397011975,0.0,2675.214776369353,43939.380000000005,50,50,2,13549,201702785,,,,,1.0,1.0,5.0,1.0,3.0,2.0,3746.633115499566,0.0,129.0,1512.0,0.0,56153.0,5,5,1,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2848.8397160705504,0.06483568307223611,0.050733526544807055,28076.5,8,4,8,8_0,8_3,8_0_1 +2786,2,42.0,3,0.0,9,111,2,54,48,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,49654.84,42,50,1,13550,201702786,,,357.0,,2.0,0.0,4.0,2.0,4.0,2.1,1160.1582799082755,0.0,1200.0,0.0,0.0,43990.0,1,1,3,80.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.03252685373974973,0.03671551984884461,20947.619047619046,5,3,5,5_1,5_2,5_0_0 +2787,2,32.0,3,0.0,99,111,2,0,35,9.0,0.0,0.0,646.0462872602698,0.0,1344.6846759528494,21764.0458467513,0,20,2,13552,201702787,,,,980.0,1.0,0.0,2.0,0.0,1.0,1.0,4814.738371764299,0.0,480.0,760.0,0.0,39667.0,0,1,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1990.7309632131191,0.09146879110761814,0.05018607313921192,39667.0,9,5,9,9_0,9_4,9_0_0 +2788,2,87.0,3,0.0,6,111,1,0,77,5.0,0.0,0.0,269.1859530251124,0.0,0.0,12609.26,0,70,2,13554,201702788,,,,420.0,0.0,5.0,1.0,0.0,1.0,1.0,4274.172965808989,0.0,200.0,0.0,0.0,18185.0,0,5,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,269.1859530251124,0.021348275237810337,0.01480263695491407,18185.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +2789,2,32.0,2,0.0,5,111,4,47,31,10.0,0.0,0.0,2185.7899385639125,28.309151072691566,0.0,42706.659999999996,30,30,1,13555,201702789,,,250.0,,2.0,0.0,4.0,1.0,3.0,1.8,2339.5913883557414,0.0,1624.0,0.0,0.0,69573.0,1,1,2,92.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2214.0990896366043,0.05184435143456792,0.03182411409076228,38651.666666666664,9,5,9,9_1,9_2,9_0_0 +2790,1,60.0,3,210.0,4,111,6,0,52,8.0,3807.4944219333174,0.0,2794.1501924006666,0.0,0.0,74110.28175060326,0,31,1,13556,201702790,,,,,4.0,1.0,5.0,3.0,5.0,2.8,1150.582531274498,0.0,2076.0,0.0,0.0,74495.0,0,1,3,110.0,10,8.0,5,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,6601.644614333984,0.08907866032070842,0.08861862694588876,26605.357142857145,7,4,7,7_1,7_4,7_0_1 +2791,2,47.0,4,0.0,2,111,6,85,67,2.0,1586.456009138882,0.0,807.5578590753372,56.61830214538313,0.0,27796.519999999997,50,71,1,13557,201702791,,,381.0,,2.0,1.0,5.0,2.0,4.0,2.3,1903.4660113359425,0.0,600.0,0.0,0.0,30320.0,8,1,1,140.0,5,4.0,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2450.6321703596022,0.08816327260965051,0.08082559928626656,13182.608695652176,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +2792,2,33.0,1,0.0,1,120,5,55,47,5.0,0.0,943.7898973031391,538.3719060502248,636.9558991355602,0.0,26066.899999999998,43,31,1,13558,201702792,,,300.0,,2.0,0.0,4.0,1.0,3.0,1.8,1822.7974740784146,0.0,400.0,0.0,0.0,36803.0,1,1,2,87.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2119.117702488924,0.08129534783533615,0.05758002615245833,20446.11111111111,5,3,5,5_1,5_1,5_1_0 +2793,1,47.0,3,250.0,9,111,2,0,46,2.0,0.0,0.0,1615.1157181506744,0.0,0.0,28170.04,0,31,1,13559,201702793,,,800.0,,1.0,0.0,5.0,3.0,4.0,2.5,724.6897225652007,0.0,1200.0,0.0,0.0,31750.0,0,1,2,150.0,6,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1615.1157181506744,0.057334519871135234,0.050869786398446436,12700.0,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +2794,2,55.0,2,0.0,1,221,2,67,43,4.0,2379.684013708323,0.0,1017.1552202500554,106.15931652259337,64.52572531169102,60387.978989158306,50,33,1,1356,201702794,,,600.0,,3.0,0.0,7.0,2.0,4.0,2.5,1883.9540222294142,62.19600197495854,730.0,0.0,0.0,45160.0,1,1,1,200.0,1,2.0,4,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3567.524275792663,0.05907672910254465,0.0789974374621936,18064.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2795,1,45.0,3,99.0,1,400,5,13,54,1.0,0.0,0.0,1076.7438121004495,106.15931652259337,0.0,26965.14,50,30,1,13560,201702795,,,,,2.0,1.0,4.0,1.0,3.0,2.0,1789.032798459815,0.0,800.0,0.0,0.0,16292.0,1,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1182.903128623043,0.04386786527431502,0.07260637912000018,8146.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +2796,2,66.0,3,0.0,1,112,2,77,56,4.0,0.0,0.0,2616.4874634040925,159.23897478389006,0.0,23120.920000000002,70,70,1,13561,201702796,,,198.0,,1.0,1.0,5.0,0.0,2.0,1.5,1081.1147472561447,0.0,1944.0,0.0,0.0,27533.0,6,1,1,107.0,10,3.0,3,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2775.7264381879827,0.12005259471456943,0.10081452940790987,18355.333333333332,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2797,2,49.0,3,0.0,4,112,2,62,46,8.0,1434.1562322615496,0.0,1184.4181933104944,159.23897478389006,0.0,43868.845846751305,50,31,1,13562,201702797,,,337.0,,3.0,0.0,5.0,2.0,4.0,2.5,2688.1808932065255,0.0,880.0,0.0,0.0,66941.0,1,1,1,90.0,4,0.0,4,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2777.813400355934,0.06332086807252177,0.04149644314181046,26776.4,7,4,7,7_1,7_0,7_0_1 +2798,2,57.0,2,0.0,1,211,2,13,43,9.0,0.0,0.0,733.5317219934312,2123.1863304518674,0.0,20154.423018669502,31,30,1,13565,201702798,,,176.0,,2.0,0.0,5.0,0.0,2.0,1.5,1835.144047029968,0.0,545.0,0.0,0.0,58072.0,1,1,1,120.0,1,3.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2856.718052445299,0.14174149514471615,0.049192692733938885,38714.666666666664,9,5,9,9_1,9_1,9_1_0 +2799,2,58.0,3,0.0,6,111,2,0,38,7.0,0.0,69.396315978172,532.9881869897225,0.0,1537.5407676355608,32495.9,0,31,1,13566,201702799,,,360.0,,1.0,2.0,7.0,1.0,2.0,1.5,1720.0227107620835,0.0,396.0,869.0,0.0,38170.0,0,1,2,145.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2139.9252706034554,0.0658521619836181,0.05606301468701743,25446.666666666668,7,4,7,7_1,7_3,7_0_0 +2800,2,72.0,1,0.0,3,120,2,77,75,4.0,0.0,0.0,1006.7554643139204,0.0,1572.9272064764252,23041.646811689,50,33,1,13567,201702800,,,566.0,,0.0,2.0,5.0,0.0,2.0,1.5,1332.269725190608,0.0,748.0,889.0,0.0,28076.0,5,5,1,115.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2579.6826707903456,0.11195739140839862,0.09188212960501302,18717.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +2801,2,56.0,2,0.0,2,112,4,0,56,2.0,0.0,0.0,807.5578590753372,0.0,0.0,17784.96,0,71,2,13569,201702801,,,,,1.0,2.0,2.0,0.0,1.0,1.0,1330.849149909278,0.0,600.0,0.0,0.0,12155.0,0,1,3,42.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,807.5578590753372,0.04540678523175409,0.06643832653848929,12155.0,2,1,2_0,2_0_0,2_0_0,2_0_1_0 +2802,2,28.0,4,0.0,99,111,1,0,54,6.0,0.0,0.0,3903.19631886413,0.0,0.0,21399.18,0,20,2,13572,201702802,,,,590.0,1.0,0.0,1.0,0.0,1.0,1.0,6106.629756960473,0.0,2900.0,0.0,0.0,23057.0,0,1,3,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3903.19631886413,0.1823993404823984,0.16928465623733052,23057.0,6,3,6,6_0,6_4,6_0_0 +2803,2,44.0,3,0.0,7,111,2,0,52,5.0,0.0,0.0,1275.9414173390328,0.0,3542.182527970532,60501.98672205293,0,33,1,13573,201702803,,,,,1.0,0.0,6.0,4.0,5.0,2.6,705.2915069272296,0.0,948.0,2002.0,0.0,51126.0,0,1,2,160.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4818.123945309565,0.0796357972085132,0.09424018983119284,19663.846153846152,5,3,5,5_1,5_4,5_0_0 +2804,2,29.0,1,0.0,7,111,4,0,31,8.0,0.0,0.0,605.6683943065029,0.0,0.0,37968.880000000005,0,10,2,13574,201702804,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3584.513591750321,0.0,450.0,0.0,0.0,31788.0,0,1,3,46.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,605.6683943065029,0.01595170556272671,0.019053365870973414,31788.0,8,4,8,8_0,8_3,8_0_0 +2805,1,55.0,4,353.0,3,111,1,0,67,1.0,0.0,0.0,578.7497990039916,0.0,1204.9082425314348,9762.679999999998,0,71,2,13576,201702805,604.0,604.0,,,1.0,3.0,4.0,2.0,3.0,1.8,730.3338071513846,0.0,430.0,681.0,0.0,13426.0,0,4,3,77.0,5,4.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1783.6580415354265,0.1827016804335927,0.13285103839828888,7458.888888888889,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2806,1,45.0,5,115.0,2,111,1,0,84,1.0,0.0,0.0,283.9332145238477,0.0,529.1034610586697,9695.0,0,44,2,13577,201702806,,,300.0,185.0,0.0,2.0,3.0,0.0,1.0,1.0,1121.8083638185378,510.0,0.0,0.0,0.0,10500.0,0,3,3,58.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,813.0366755825174,0.08386144152475683,0.07743206434119214,10500.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2807,2,59.0,3,0.0,6,111,4,46,45,10.0,0.0,0.0,2961.045483276236,318.4779495677801,0.0,38896.58,50,50,1,13578,201702807,,,,,2.0,4.0,4.0,0.0,2.0,1.5,2034.8865963630312,0.0,2200.0,0.0,0.0,73340.0,1,1,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3279.5234328440165,0.0843139276729218,0.04471670892887942,48893.333333333336,10,5,10,10_1,10_4,10_0_0 +2808,2,82.0,4,0.0,99,111,2,0,75,4.0,0.0,0.0,244.95921725285228,0.0,681.1889476866409,13930.519999999999,0,70,2,1358,201702808,,,153.0,307.0,0.0,0.0,2.0,0.0,1.0,1.0,3328.1866624126037,0.0,182.0,385.0,0.0,17341.0,0,5,3,50.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,926.1481649394932,0.0664833879093884,0.05340800213018241,17341.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +2809,2,29.0,3,0.0,9,111,4,0,43,6.0,0.0,0.0,1292.0925745205395,0.0,0.0,26632.460000000003,0,30,2,13580,201702809,,,,523.0,1.0,0.0,3.0,0.0,1.0,1.0,4896.166682606007,0.0,960.0,0.0,0.0,23211.0,0,1,3,58.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1292.0925745205395,0.0485157050651926,0.05566725149801988,23211.0,6,3,6,6_0,6_3,6_0_0 +2810,2,70.0,3,0.0,5,300,5,77,75,5.0,1269.1648073111057,208.188947934516,672.964882562781,159.23897478389006,0.0,22239.956658454026,70,41,1,13581,201702810,,,400.0,,0.0,2.0,4.0,0.0,2.0,1.5,2075.981272103931,0.0,500.0,0.0,0.0,29507.0,6,5,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2309.557612592293,0.1038472173332391,0.07827151566042949,19671.333333333332,5,3,5,5_1,5_0,5_0_0 +2811,2,66.0,4,0.0,1,112,2,0,77,1.0,0.0,0.0,1413.22625338184,0.0,0.0,11184.86,0,44,1,13582,201702811,,,200.0,,0.0,2.0,5.0,0.0,1.0,1.0,1883.2039104569365,0.0,1050.0,0.0,0.0,9663.0,0,5,1,90.0,9,2.0,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1413.22625338184,0.12635171592508443,0.1462512939441002,9663.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +2812,1,49.0,5,262.0,2,111,1,0,55,1.0,0.0,0.0,33.64824412813905,0.0,44.23304855108057,4099.960315994117,0,50,2,13583,201702812,,,,,1.0,1.0,2.0,0.0,1.0,1.0,3302.5815669901185,0.0,25.0,25.0,0.0,8964.0,0,4,3,40.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,77.88129267921963,0.018995621097941225,0.00868822988389331,8964.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2813,1,30.0,4,408.0,1,221,2,0,85,1.0,0.0,0.0,55.18312037014804,0.0,189.31744779862484,5962.46,0,60,2,13584,201702813,,,,22.0,0.0,0.0,4.0,2.0,3.0,1.6,1182.785044051917,0.0,41.0,107.0,0.0,16236.0,0,6,3,90.0,1,2.0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,244.50056816877287,0.041006659695624434,0.015059162858387095,10147.5,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +2814,2,53.0,2,0.0,7,112,2,43,46,4.0,0.0,0.0,242.26735772260116,0.0,0.0,77288.47652105041,44,50,1,13585,201702814,,,300.0,,2.0,1.0,7.0,3.0,5.0,3.0,1591.0487679083421,0.0,180.0,0.0,0.0,55355.0,1,1,1,176.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,242.26735772260116,0.003134585757510912,0.00437661200835699,18451.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2815,2,81.0,1,0.0,1,111,2,0,74,10.0,0.0,0.0,934.07525699714,0.0,2830.9151072691566,52874.64,0,20,1,13586,201702815,,,699.0,,0.0,0.0,7.0,0.0,1.0,1.0,2754.124391770152,0.0,694.0,1600.0,0.0,52587.0,0,5,1,200.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3764.9903642662966,0.0712059763294142,0.0715954582742179,52587.0,10,5,10,10_1,10_2,10_1_0 +2816,2,23.0,2,0.0,99,211,2,0,42,3.0,0.0,0.0,235.53770889697333,0.0,941.2792731669946,24153.410875301626,0,31,2,13587,201702816,,,140.0,202.0,1.0,0.0,2.0,0.0,1.0,1.0,3183.0552602776065,0.0,175.0,532.0,0.0,14479.0,0,1,3,38.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1176.816982063968,0.04872260022154208,0.0812775041138178,14479.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +2817,2,56.0,2,0.0,2,221,5,52,52,6.0,0.0,693.9631597817199,1319.0111698230507,212.31863304518674,0.0,39685.81318446437,50,50,1,13588,201702817,,,1080.0,,2.0,1.0,5.0,1.0,3.0,2.0,13207.053646243194,0.0,980.0,0.0,0.0,46236.0,1,1,1,120.0,1,3.0,4,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2225.292962649957,0.05607275709096677,0.04812901121744868,23118.0,6,3,6,6_1,6_1,6_0_1 +2818,2,46.0,3,0.0,7,111,1,43,33,8.0,0.0,0.0,823.7090162568439,0.0,0.0,76210.44,30,31,2,13589,201702818,,,,1130.0,2.0,0.0,5.0,2.0,4.0,2.5,2297.825259764484,0.0,612.0,0.0,0.0,69295.0,1,1,3,100.0,9,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,823.7090162568439,0.010808348780781792,0.011886990637951424,27718.0,8,4,8,8_0,8_3,8_0_0 +2819,2,83.0,2,0.0,6,111,1,0,72,10.0,0.0,0.0,895.0432938084987,0.0,0.0,63332.10584675131,0,60,2,13590,201702819,,,140.0,,0.0,4.0,5.0,0.0,1.0,1.0,3070.806286245945,0.0,665.0,0.0,0.0,50046.0,0,5,1,110.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,895.0432938084987,0.014132536441695013,0.017884412216930396,50046.0,10,5,10,10_0,10_3,10_0_0 +2820,2,85.0,3,0.0,1,211,2,78,78,4.0,0.0,0.0,484.5347154452023,0.0,2830.9151072691566,30503.36238259149,71,71,1,13591,201702820,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2585.9926282740744,0.0,360.0,1600.0,0.0,26050.0,5,5,1,75.0,1,3.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3315.449822714359,0.10869129052495906,0.12727254597751858,17366.666666666668,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2821,2,76.0,4,0.0,4,111,2,77,78,4.0,0.0,0.0,1113.4635863680303,0.0,2074.915533563411,30529.279999999995,50,71,1,13592,201702821,,,330.0,,0.0,7.0,4.0,0.0,2.0,1.5,2074.0300082939507,2000.0,0.0,0.0,0.0,24630.0,5,5,1,90.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3188.379119931441,0.1044367610350274,0.12945104019210074,16420.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +2822,2,51.0,3,0.0,2,120,4,52,62,8.0,0.0,0.0,4053.9404525581926,0.0,566.1830214538313,49351.681089503225,50,71,1,13593,201702822,,,1920.0,,2.0,1.0,6.0,1.0,3.0,2.0,1686.8000592235026,0.0,3012.0,320.0,0.0,56620.0,1,1,1,100.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4620.1234740120235,0.09361633427710517,0.08159878972115901,28310.0,8,4,8,8_1,8_0,8_0_1 +2823,1,21.0,4,140.0,1,111,1,0,56,1.0,0.0,0.0,642.0084979648931,0.0,0.0,15335.539999999999,0,41,2,13594,201702823,,,,230.0,1.0,0.0,1.0,0.0,1.0,1.0,4283.419458197052,0.0,477.0,0.0,0.0,8333.0,0,3,3,25.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,642.0084979648931,0.04186409464322046,0.07704410151984796,8333.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +2824,2,49.0,5,0.0,5,111,5,54,21,6.0,0.0,0.0,3068.719864486281,0.0,0.0,39630.223983607204,31,50,1,13595,201702824,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2918.354122953596,0.0,2280.0,0.0,0.0,55788.0,4,1,2,100.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3068.719864486281,0.07743382590407862,0.055006809071597496,24255.652173913044,7,4,7,7_1,7_2,7_0_0 +2825,2,57.0,3,0.0,1,111,2,78,56,9.0,0.0,0.0,965.4760796246162,0.0,1856.5696325973706,39432.433608262814,71,71,2,13596,201702825,,,,530.0,2.0,3.0,3.0,1.0,3.0,2.0,3127.4407210749614,254.64157984761317,612.0,900.0,0.0,74217.0,5,1,3,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2822.045712221987,0.07156661291203303,0.03802424932592245,37108.5,9,5,9,9_0,9_3,9_1_0 +2826,2,38.0,2,0.0,9,112,4,0,42,7.0,0.0,0.0,1098.2786883424585,0.0,0.0,26972.28,0,30,2,13598,201702826,,,132.0,,1.0,0.0,2.0,0.0,1.0,1.0,3392.0887741771094,0.0,816.0,0.0,0.0,24817.0,0,1,2,50.0,9,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1098.2786883424585,0.040718793084695046,0.04425509482783811,24817.0,7,4,7,7_0,7_0,7_0_0 +2827,2,85.0,2,0.0,4,111,1,78,78,8.0,0.0,0.0,336.4824412813905,0.0,318.4779495677801,36378.48,71,70,2,136,201702827,,,,,2.0,0.0,3.0,2.0,4.0,2.5,3199.4274680372923,0.0,250.0,180.0,0.0,70537.0,5,5,1,74.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,654.9603908491706,0.01800406149045179,0.00928534515005133,28214.8,8,4,8,8_0,8_3,8_0_1 +2828,1,50.0,4,20.0,6,111,2,0,43,2.0,0.0,0.0,403.7789295376686,0.0,106.15931652259337,25519.749999999996,0,33,2,1360,201702828,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2069.5684940359233,0.0,300.0,60.0,0.0,17360.0,0,1,2,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,509.938246060262,0.019982101943015196,0.029374322929738593,13353.846153846154,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2829,2,49.0,1,0.0,9,111,2,34,34,9.0,0.0,0.0,1457.6419356309837,0.0,1620.698898911592,57511.1516935026,10,10,1,13600,201702829,,,457.0,,2.0,0.0,6.0,2.0,4.0,2.3,2002.9716102273599,0.0,1083.0,916.0,0.0,80612.0,1,1,2,125.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3078.340834542576,0.05352598137745789,0.038187128895729866,35048.69565217392,9,5,9,9_1,9_3,9_0_0 +2830,2,47.0,5,0.0,1,112,4,0,42,4.0,0.0,0.0,1074.0519525701984,0.0,0.0,37486.32932216843,0,20,1,13602,201702830,,,600.0,,1.0,1.0,4.0,2.0,3.0,2.0,573.4106691072999,0.0,798.0,0.0,0.0,32348.0,0,1,1,71.0,10,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1074.0519525701984,0.028651830467034616,0.03320304045289348,16174.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2831,2,67.0,1,0.0,6,221,4,0,77,4.0,0.0,0.0,2113.1097312471325,212.31863304518674,0.0,22361.539999999997,0,50,1,13603,201702831,,,297.0,,0.0,1.0,4.0,0.0,1.0,1.0,2203.8790668626484,0.0,1570.0,0.0,0.0,17937.0,0,5,1,88.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2325.428364292319,0.10399231735794223,0.12964421945098506,17937.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2832,2,76.0,2,0.0,5,111,4,86,86,9.0,0.0,0.0,2302.3248115173647,159.23897478389006,1531.4105473974669,95377.59285734977,33,30,1,13604,201702832,,,320.0,,0.0,3.0,5.0,0.0,2.0,1.5,1646.009432378277,1476.1184468723493,1100.0,0.0,0.0,57067.0,5,5,1,140.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3992.9743336987217,0.04186490992355784,0.06996993592967428,38044.666666666664,9,5,9,9_1,9_3,9_0_0 +2833,2,80.0,2,0.0,6,111,2,0,75,8.0,0.0,0.0,496.6047595201415,0.0,925.4123279692811,19535.54,0,50,2,13605,201702833,,,,508.0,0.0,1.0,3.0,0.0,1.0,1.0,3363.441427580399,892.0,0.0,0.0,0.0,32230.0,0,5,3,65.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1422.0170874894227,0.07279128641897908,0.04412091490814219,32230.0,9,5,9,9_0,9_3,9_0_0 +2834,2,52.0,3,0.0,6,111,2,0,62,8.0,0.0,0.0,323.0231436301349,0.0,1008.513506964637,15484.140000000001,0,50,2,13606,201702834,,,,490.0,1.0,0.0,4.0,0.0,1.0,1.0,2771.5735481281326,0.0,240.0,570.0,0.0,29383.0,0,1,3,78.0,4,4.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1331.5366505947718,0.08599358121243877,0.045316565721497865,29383.0,8,4,8,8_0,8_2,8_0_0 +2835,2,65.0,3,0.0,5,112,2,77,74,9.0,0.0,0.0,565.290501352736,0.0,3267.937626953833,35552.26816118815,50,50,1,13608,201702835,,,440.0,,0.0,2.0,5.0,0.0,2.0,1.5,1761.6765814905484,0.0,420.0,1847.0,0.0,48852.0,5,5,1,120.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3833.228128306569,0.10781950988126389,0.07846614526133155,32568.0,9,5,9,9_1,9_0,9_0_0 +2836,2,86.0,3,0.0,4,400,1,0,77,7.0,0.0,0.0,807.7245042700426,0.0,805.4142594489999,21615.620271167158,0,70,2,1361,201702836,,,,,0.0,1.0,4.0,0.0,1.0,1.0,4055.712622187784,776.3345027021901,279.0,0.0,0.0,27961.0,0,5,1,75.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1613.1387637190426,0.07462838185914984,0.05769245605375496,27961.0,8,4,8,8_0,8_1,8_0_1 +2837,2,36.0,2,0.0,1,112,2,55,63,4.0,0.0,1700.209741465214,942.1508355878933,61.9262679715128,0.0,21159.100000000002,50,44,1,13610,201702837,,,200.0,,2.0,0.0,5.0,2.0,4.0,2.1,2245.9109733888445,0.0,700.0,0.0,0.0,33994.0,1,4,2,100.0,5,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2704.28684502462,0.12780727181329168,0.0795518869513626,16187.619047619048,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2838,2,62.0,3,0.0,2,112,5,77,77,3.0,0.0,656.4891491535071,1047.1333572676872,495.4101437721024,0.0,19930.25665845403,71,50,1,13611,201702838,,,196.0,,0.0,2.0,4.0,0.0,2.0,1.5,1533.357771540625,0.0,778.0,0.0,0.0,23721.0,6,5,1,100.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2199.032650193297,0.11033639395007538,0.09270404494723228,15814.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +2839,2,35.0,2,0.0,9,111,1,0,38,10.0,0.0,0.0,269.1859530251124,0.0,0.0,25711.9,0,12,2,13612,201702839,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3141.5644299600494,0.0,200.0,0.0,0.0,48740.0,0,1,2,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,269.1859530251124,0.010469313937325222,0.005522896040728608,48740.0,10,5,10,10_0,10_4,10_0_0 +2840,1,50.0,3,200.0,9,111,2,0,56,1.0,0.0,0.0,1227.4879457945126,0.0,0.0,21824.480000000003,0,71,1,13614,201702840,,,252.0,150.0,1.0,2.0,3.0,0.0,1.0,1.0,587.3899696631195,0.0,912.0,0.0,0.0,8994.0,0,1,3,60.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1227.4879457945126,0.05624362852148195,0.1364785352228722,8994.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +2841,2,79.0,3,0.0,3,111,1,0,75,2.0,0.0,0.0,464.34576896831885,0.0,178.70151614636552,23055.291191295746,0,31,2,13616,201702841,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3840.3264541829267,0.0,345.0,101.0,0.0,12706.0,0,5,1,81.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,643.0472851146844,0.02789152736259776,0.05060973438648547,12706.0,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +2842,2,74.0,3,0.0,5,112,4,0,72,3.0,0.0,0.0,807.5578590753372,0.0,0.0,34469.4,0,50,1,13617,201702842,,,140.0,,0.0,1.0,4.0,0.0,1.0,1.0,2179.893042712193,0.0,600.0,0.0,0.0,15449.0,0,5,1,90.0,8,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,807.5578590753372,0.023428254018791658,0.052272500425615716,15449.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2843,1,39.0,3,300.0,9,112,5,0,56,1.0,0.0,416.377895869032,1749.7086946632305,88.46609710216114,0.0,36361.47697444815,0,50,1,13618,201702843,,,,,1.0,0.0,5.0,1.0,2.0,1.3,869.632775844794,0.0,1300.0,0.0,0.0,8237.0,0,1,2,140.0,9,3.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2254.552687634424,0.06200388089897276,0.2737104149125196,6336.153846153846,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +2844,2,82.0,2,0.0,4,112,1,0,75,5.0,0.0,0.0,491.26436427083013,0.0,3397.098128722988,15834.190875301627,0,71,1,13620,201702844,,,370.0,,0.0,0.0,4.0,1.0,2.0,1.5,1225.543407298019,0.0,365.0,1920.0,0.0,31550.0,0,5,1,95.0,10,3.0,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3888.362492993818,0.24556748896206218,0.12324445302674542,21033.333333333332,5,3,5,5_1,5_1,5_0_1 +2845,2,60.0,2,0.0,1,221,2,0,31,10.0,0.0,1665.511583476128,1975.824895204325,90.23541904420436,0.0,43210.6,0,44,1,13622,201702845,,,302.0,,1.0,2.0,9.0,0.0,1.0,1.0,2090.308864668283,0.0,1468.0,0.0,0.0,40699.0,0,1,1,307.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3731.5718977246574,0.08635778947120978,0.09168706596537157,40699.0,10,5,10,10_1,10_1,10_1_0 +2846,1,24.0,3,242.0,4,111,4,0,54,7.0,0.0,0.0,672.964882562781,0.0,0.0,39505.5,0,30,2,13624,201702846,,,300.0,,1.0,0.0,3.0,1.0,2.0,1.3,1105.5072134089512,0.0,500.0,0.0,0.0,28552.0,0,1,3,71.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,672.964882562781,0.017034713712338306,0.02356979835257709,21963.076923076922,6,3,6,6_0,6_2,6_0_1 +2847,1,36.0,4,107.0,9,111,2,0,43,3.0,0.0,0.0,1184.4181933104944,0.0,1043.8999458055016,22042.879999999997,0,33,1,13625,201702847,,,496.0,395.0,1.0,1.0,4.0,1.0,2.0,1.5,729.7956315183172,0.0,880.0,590.0,0.0,21628.0,0,1,3,98.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2228.318139115996,0.10109015424100645,0.10302932028463085,14418.666666666666,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +2848,2,43.0,2,0.0,9,400,2,46,62,6.0,0.0,0.0,2662.2490754183614,226.47320858153253,0.0,52590.48,43,50,1,13626,201702848,,,343.0,,2.0,0.0,4.0,2.0,4.0,2.3,2434.445638818711,0.0,1978.0,0.0,0.0,50946.0,1,1,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2888.722283999894,0.054928616053702,0.05670165045341919,22150.434782608696,6,3,6,6_1,6_0,6_0_0 +2849,1,35.0,2,100.0,1,400,5,0,52,4.0,0.0,0.0,1049.8252167979383,61.9262679715128,0.0,14601.118839019719,0,43,1,13628,201702849,,,170.0,,1.0,0.0,3.0,1.0,2.0,1.3,555.1000017645476,0.0,780.0,0.0,0.0,23246.0,0,1,3,70.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1111.751484769451,0.076141527031369,0.04782549620448469,17881.53846153846,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +2850,2,42.0,1,0.0,8,111,2,37,46,7.0,0.0,0.0,1305.5518721717951,0.0,1503.9236507367395,64369.66,31,31,1,13629,201702850,,,575.0,,2.0,0.0,5.0,2.0,4.0,2.5,2135.1765915529554,0.0,970.0,850.0,0.0,65304.0,1,1,1,110.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2809.475522908535,0.04364595871577595,0.04302149214303159,26121.6,7,4,7,7_1,7_2,7_0_0 +2851,2,59.0,3,0.0,3,111,1,0,35,4.0,0.0,0.0,565.290501352736,0.0,265.39829130648343,26538.365846751298,0,41,8,1363,201702851,,,,,1.0,0.0,2.0,0.0,1.0,1.0,1957.788318994955,0.0,420.0,150.0,0.0,18022.0,0,4,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,830.6887926592194,0.03130142969073992,0.046093041430430554,18022.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +2852,2,71.0,3,0.0,9,221,2,72,72,5.0,0.0,0.0,667.5811635022787,0.0,1608.3136453172897,26878.950875301627,70,50,1,13630,201702852,,,378.0,,0.0,3.0,2.0,0.0,2.0,1.5,1915.1280543702496,0.0,496.0,909.0,0.0,29801.0,5,5,3,100.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2275.8948088195684,0.0846720104284587,0.0763697462776272,19867.333333333332,5,3,5,5_1,5_1,5_0_0 +2853,2,39.0,1,0.0,9,111,4,33,38,7.0,0.0,208.188947934516,1884.3016711757866,0.0,0.0,46036.020000000004,20,12,1,13631,201702853,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1957.1254307528686,0.0,1400.0,0.0,0.0,52952.0,1,1,2,100.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2092.4906191103028,0.04545333456520139,0.039516743826678934,25215.238095238095,7,4,7,7_1,7_3,7_0_0 +2854,2,65.0,1,0.0,8,111,2,75,74,9.0,0.0,208.188947934516,656.8137253812743,0.0,1981.6405750884096,40748.19999999999,31,20,1,13632,201702854,,,433.0,,0.0,1.0,5.0,0.0,2.0,1.5,1749.646286236274,0.0,488.0,1120.0,0.0,56572.0,5,5,1,125.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2846.6432484041998,0.06985936184676134,0.05031894308852789,37714.666666666664,9,5,9,9_1,9_2,9_0_0 +2855,2,32.0,3,0.0,1,400,2,67,62,5.0,0.0,1249.133687607096,861.3950496803596,0.0,0.0,30280.22,50,50,1,13634,201702855,,,397.0,,2.0,0.0,5.0,2.0,4.0,2.1,2627.9796865562025,0.0,640.0,0.0,0.0,44344.0,1,1,2,120.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2110.5287372874554,0.069699914243934,0.04759446006872306,21116.190476190477,5,3,5,5_1,5_1,5_1_0 +2856,2,34.0,2,0.0,2,112,2,69,37,8.0,0.0,0.0,2530.3479584360566,0.0,0.0,24072.16031599412,31,31,1,13635,201702856,,,1400.0,,2.0,0.0,4.0,2.0,4.0,2.1,2285.4490630991654,0.0,1880.0,0.0,0.0,57276.0,1,1,1,100.0,10,2.0,4,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2530.3479584360566,0.10511511743110288,0.04417815417340695,27274.285714285714,7,4,7,7_1,7_1,7_0_1 +2857,1,50.0,4,237.0,8,120,2,0,52,3.0,0.0,0.0,551.164475252175,0.0,1027.0831891138882,12942.76,0,60,2,13636,201702857,,,250.0,143.0,1.0,4.0,4.0,0.0,1.0,1.0,2693.1443679290437,990.0,0.0,0.0,0.0,13744.0,0,1,3,75.0,0,1.0,1,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1578.2476643660632,0.12194058024455859,0.11483175672046443,13744.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +2858,2,51.0,4,0.0,1,111,2,0,37,7.0,0.0,0.0,726.8020731678034,0.0,1326.9914565324173,38421.11119129575,0,41,1,13637,201702858,,,240.0,,1.0,0.0,4.0,1.0,2.0,1.5,1896.4532960021854,0.0,540.0,750.0,0.0,38710.0,0,1,2,90.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2053.7935297002205,0.05345481861455128,0.053055890718166375,25806.666666666668,7,4,7,7_1,7_2,7_1_0 +2859,2,58.0,3,0.0,2,111,6,55,77,6.0,0.0,0.0,1749.7086946632305,0.0,0.0,47159.560000000005,41,50,1,13638,201702859,,,620.0,,1.0,5.0,5.0,2.0,5.0,3.0,1192.2708402387902,0.0,1300.0,0.0,0.0,68486.0,1,5,1,108.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1749.7086946632305,0.037101887605890095,0.025548414196525284,22828.666666666668,6,3,6,6_1,6_3,6_0_1 +2860,2,85.0,1,0.0,3,221,5,78,78,5.0,0.0,381.679737879946,706.61312669092,254.7823596542241,0.0,26123.32,71,71,1,1364,201702860,,,350.0,,0.0,3.0,5.0,0.0,2.0,1.5,2513.8240376662443,0.0,525.0,0.0,0.0,27450.0,5,5,1,80.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1343.07522422509,0.05141288412901156,0.04892805917031293,18300.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +2861,1,40.0,3,146.0,8,112,6,0,54,5.0,0.0,222.0682111301504,1211.3367886130059,67.23423379764247,0.0,27716.559999999998,0,31,1,13640,201702861,,,240.0,,1.0,0.0,5.0,1.0,2.0,1.3,824.6726244769511,0.0,900.0,0.0,0.0,26758.0,0,1,2,110.0,8,3.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1500.6392335407986,0.05414233344761395,0.056081890781852106,20583.076923076922,5,3,5,5_1,5_1,5_0_0 +2862,2,57.0,1,0.0,4,111,2,0,67,6.0,0.0,0.0,506.62593179745375,0.0,944.0865677713518,48900.520000000004,0,50,1,13642,201702862,,,,,1.0,1.0,2.0,0.0,1.0,1.0,2307.617412638099,910.0,0.0,0.0,0.0,22431.0,0,1,3,69.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1450.7124995688055,0.029666606808451228,0.06467444605986382,22431.0,6,3,6,6_1,6_2,6_0_1 +2863,2,56.0,3,0.0,7,111,5,77,47,6.0,0.0,555.170527825376,971.7612904206558,191.08676974066807,0.0,29965.719999999998,60,50,1,13643,201702863,,,278.0,,1.0,3.0,5.0,0.0,2.0,1.5,5714.442679555544,0.0,722.0,0.0,0.0,28900.0,6,1,1,100.0,8,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1718.0185879867,0.05733279854402631,0.059447009964937715,19266.666666666668,5,3,5,5_1,5_3,5_0_0 +2864,1,36.0,4,614.0,6,111,2,0,56,4.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,28044.06,0,43,2,13644,201702864,,,400.0,,1.0,0.0,4.0,4.0,5.0,2.2,463.9972830905568,1800.0,0.0,0.0,0.0,38847.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2869.541207938297,0.10232260264520532,0.07386776862919393,17657.727272727272,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +2865,2,62.0,3,0.0,99,111,1,75,78,7.0,0.0,0.0,1180.3804040151178,0.0,0.0,71983.16,44,50,2,13647,201702865,,,400.0,312.0,1.0,0.0,3.0,1.0,3.0,2.0,2678.458175933978,0.0,877.0,0.0,0.0,52486.0,5,5,3,68.0,6,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1180.3804040151178,0.016398007589762908,0.022489433449207747,26243.0,7,4,7,7_0,7_2,7_0_0 +2866,1,26.0,1,134.0,99,111,1,0,34,5.0,0.0,0.0,565.290501352736,0.0,0.0,27641.465980622455,0,0,2,13648,201702866,,,,246.0,1.0,0.0,3.0,0.0,1.0,1.0,4173.801166592862,0.0,420.0,0.0,0.0,19888.0,0,3,3,33.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,565.290501352736,0.02045081479213232,0.028423697775177795,19888.0,5,3,5,5_0,5_3,5_0_0 +2867,2,47.0,3,0.0,1,221,2,0,62,4.0,0.0,0.0,2288.080600713455,0.0,0.0,29567.460000000003,0,43,1,13649,201702867,,,280.0,,1.0,0.0,4.0,2.0,3.0,1.8,654.1283615962707,0.0,1700.0,0.0,0.0,30394.0,0,1,3,86.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2288.080600713455,0.07738509160791814,0.07528066726042822,16885.555555555555,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2868,1,28.0,2,148.0,9,120,4,85,47,2.0,0.0,693.9631597817199,1817.0051829195086,0.0,0.0,33276.42,50,43,1,13650,201702868,,,580.0,,1.0,0.0,5.0,2.0,4.0,2.1,2361.215102746064,0.0,1350.0,0.0,0.0,27306.0,6,1,3,139.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2510.9683427012287,0.07545788707743288,0.09195665211679589,13002.857142857143,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +2869,2,41.0,2,0.0,9,112,5,54,46,9.0,0.0,693.9631597817199,1317.665240057925,0.0,0.0,40537.82000000001,31,30,1,13651,201702869,,,448.0,,2.0,0.0,5.0,0.0,2.0,1.5,2380.955891680948,0.0,979.0,0.0,0.0,55884.0,1,1,2,137.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2011.628399839645,0.049623497263534266,0.03599649988976532,37256.0,9,5,9,9_1,9_1,9_0_0 +2870,2,56.0,3,0.0,6,111,2,42,46,9.0,0.0,0.0,635.2788491392653,0.0,1415.4575536345783,45328.470734548115,31,60,1,13652,201702870,,,546.0,,2.0,2.0,5.0,0.0,2.0,1.5,1682.2821003333092,0.0,472.0,800.0,0.0,55101.0,1,1,1,140.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2050.7364027738436,0.0452416851824394,0.03721777105268223,36734.0,9,5,9,9_1,9_3,9_0_0 +2871,2,41.0,3,0.0,5,111,2,75,52,7.0,0.0,0.0,607.0143240716285,0.0,1495.0770410265234,25003.941750603255,42,42,1,13653,201702871,,,300.0,,1.0,0.0,5.0,0.0,2.0,1.5,2247.5459904709155,0.0,451.0,845.0,0.0,37863.0,5,1,1,99.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2102.091365098152,0.0840703992220521,0.055518352087741384,25242.0,7,4,7,7_1,7_2,7_0_0 +2872,1,27.0,4,440.0,2,112,1,85,68,2.0,0.0,0.0,1211.3367886130059,0.0,1273.9117982711205,21364.03904104552,60,50,2,13654,201702872,,,,,1.0,0.0,5.0,3.0,5.0,2.4,2111.1233991671147,0.0,900.0,720.0,0.0,28680.0,6,1,3,90.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,2485.2485868841263,0.11632859227177778,0.08665441376862365,11950.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +2873,2,49.0,3,0.0,99,400,2,13,55,2.0,2062.392811880547,0.0,1931.6869549463572,0.0,1581.2155612575013,35504.5091852093,50,42,1,13656,201702873,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2350.5000862505453,1293.8908378369833,900.0,135.0,0.0,33782.0,1,1,5,120.0,0,0.0,4,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5575.295328084406,0.15703062670155143,0.16503745568895878,13512.8,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2874,2,58.0,3,0.0,6,111,4,52,77,4.0,0.0,0.0,2236.935269638684,0.0,0.0,30252.359999999997,60,41,1,13657,201702874,,,514.0,,1.0,2.0,6.0,0.0,2.0,1.5,2420.7322115927645,0.0,1662.0,0.0,0.0,31110.0,1,5,1,103.0,4,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2236.935269638684,0.07394250463893344,0.07190405881191526,20740.0,5,3,5,5_1,5_1,5_0_0 +2875,2,41.0,2,0.0,5,111,5,46,38,9.0,0.0,3219.9890613871808,211.31097312471323,0.0,0.0,49761.43344410586,43,30,1,13658,201702875,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2087.2186414569533,0.0,157.0,0.0,0.0,69753.0,1,1,2,110.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3431.300034511894,0.068955007864998,0.049192149936373976,33215.71428571428,9,5,9,9_1,9_3,9_0_0 +2876,2,81.0,3,0.0,6,112,4,0,86,3.0,0.0,0.0,1009.4473238441715,109.69796040667983,0.0,10283.439999999999,0,50,1,13659,201702876,,,250.0,,0.0,0.0,5.0,0.0,1.0,1.0,2266.3264385574444,0.0,750.0,0.0,0.0,14480.0,0,5,1,120.0,8,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1119.1452842508513,0.10882985501455267,0.07728903896760023,14480.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +2877,2,67.0,2,0.0,99,112,4,54,46,8.0,0.0,0.0,2018.894647688343,0.0,0.0,16355.7458467513,31,31,1,13660,201702877,,,151.0,,2.0,1.0,5.0,0.0,2.0,1.5,2561.9991110518,0.0,1500.0,0.0,0.0,42568.0,1,1,1,100.0,9,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.12343641596077691,0.04742751944390958,28378.666666666668,8,4,8,8_1,8_1,8_0_0 +2878,2,62.0,3,0.0,1,112,5,56,77,3.0,0.0,555.170527825376,1413.22625338184,212.31863304518674,0.0,39848.98,70,50,1,13661,201702878,,,,,1.0,2.0,3.0,0.0,2.0,1.5,1877.717347068447,0.0,1050.0,0.0,0.0,21797.0,4,5,1,83.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2180.7154142524028,0.054724497697366474,0.1000465850462175,14531.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2879,2,36.0,2,0.0,8,111,2,0,37,9.0,0.0,0.0,135.93890627768175,0.0,0.0,41035.8375580879,0,20,2,13662,201702879,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3726.445268648413,0.0,101.0,0.0,0.0,39672.0,0,1,2,52.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,135.93890627768175,0.0033126875035815874,0.0034265705353317645,39672.0,9,5,9,9_0,9_4,9_0_0 +2880,2,79.0,3,0.0,2,111,2,0,77,5.0,0.0,0.0,391.66556165153855,0.0,1072.2090968781931,13758.48,0,70,2,13663,201702880,,,,390.0,0.0,9.0,5.0,0.0,1.0,1.0,3488.429101776137,0.0,291.0,606.0,0.0,20134.0,0,5,3,111.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1463.8746585297317,0.1063979929853975,0.07270659871509545,20134.0,5,3,5,5_0,5_2,5_0_1 +2881,2,28.0,2,0.0,5,111,1,84,34,2.0,0.0,0.0,484.5347154452023,0.0,254.7823596542241,67380.6,30,20,2,13666,201702881,,,,,1.0,0.0,2.0,0.0,2.0,1.5,5491.651234601228,0.0,360.0,144.0,0.0,18024.0,3,1,1,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,739.3170750994265,0.010972254255667453,0.041018479532813276,12016.0,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +2882,2,56.0,3,0.0,4,111,1,0,63,4.0,0.0,0.0,796.1264642531415,0.0,1483.5646064978387,60423.05999999999,0,50,2,13667,201702882,,,,338.0,2.0,0.0,6.0,3.0,5.0,3.0,5620.505263043857,1430.0,0.0,0.0,0.0,53144.0,0,1,3,140.0,8,6.0,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2279.69107075098,0.03772882523246887,0.042896490116494435,17714.666666666668,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +2883,2,62.0,3,0.0,7,112,4,43,78,10.0,0.0,1082.5825292594832,2018.894647688343,0.0,0.0,48011.92,33,41,1,13668,201702883,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2459.841014912071,0.0,1500.0,0.0,0.0,61060.0,1,5,1,110.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3101.477176947826,0.06459806600002305,0.050793926907104915,40706.666666666664,10,5,10,10_1,10_0,10_0_0 +2884,1,19.0,4,177.0,7,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,9969.5,0,42,2,13669,201702884,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2814.122961090538,0.0,0.0,0.0,0.0,4045.0,0,3,3,25.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,4045.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2885,2,23.0,2,0.0,99,112,2,0,63,4.0,0.0,0.0,0.0,0.0,0.0,15157.380000000001,0,43,1,1367,201702885,,,,,1.0,0.0,6.0,0.0,1.0,1.0,2050.0285984989973,0.0,0.0,0.0,0.0,17613.0,0,4,3,135.0,8,0.0,1,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,17613.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2886,2,66.0,3,0.0,9,211,4,77,77,6.0,0.0,277.585263912688,2495.353784542792,0.0,0.0,29242.680000000004,50,50,1,13670,201702886,,,325.0,,0.0,2.0,6.0,0.0,2.0,1.5,1368.4342074782526,0.0,1854.0,0.0,0.0,32324.0,5,5,1,130.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2772.9390484554797,0.0948250655704429,0.08578576439968691,21549.333333333332,6,3,6,6_1,6_1,6_0_0 +2887,1,54.0,4,256.0,8,111,4,0,78,4.0,0.0,0.0,1825.080761510262,159.23897478389006,0.0,11139.39665845403,0,71,1,13671,201702887,,,427.0,152.0,1.0,1.0,4.0,1.0,2.0,1.5,3715.955760865202,0.0,1356.0,0.0,0.0,26312.0,0,7,3,80.0,5,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1984.3197362941519,0.17813529737162118,0.07541500974058042,17541.333333333332,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +2888,2,27.0,5,0.0,1,112,5,68,42,2.0,0.0,555.170527825376,125.17146815667726,0.0,0.0,22858.440000000002,71,42,1,13672,201702888,,,50.0,,2.0,0.0,3.0,2.0,4.0,2.1,3794.2487710333185,0.0,93.0,0.0,0.0,27660.0,4,1,2,85.0,8,1.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,680.3419959820533,0.02976327325845741,0.024596601445482764,13171.42857142857,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +2889,1,37.0,3,148.0,6,111,2,62,46,3.0,0.0,0.0,1000.0258154882926,0.0,1848.941429435168,26049.960000000003,43,31,8,13673,201702889,,,629.0,370.0,2.0,0.0,4.0,2.0,4.0,2.1,2469.5814462661288,0.0,743.0,1045.0,0.0,32183.0,4,1,3,93.0,4,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2848.9672449234604,0.10936551322625677,0.08852397989384024,15325.238095238095,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +2890,2,48.0,3,0.0,9,111,2,81,52,3.0,0.0,0.0,1550.5110894246473,0.0,0.0,21658.44,71,50,2,13674,201702890,,,,493.0,2.0,0.0,3.0,1.0,3.0,1.8,2509.029339253388,0.0,1152.0,0.0,0.0,24890.0,4,1,3,67.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1550.5110894246473,0.07158923216190305,0.06229453955101034,13827.777777777777,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +2891,1,30.0,3,257.0,9,211,2,0,48,5.0,0.0,0.0,538.3719060502248,0.0,1026.2067263850693,15987.579999999998,0,44,1,13675,201702891,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2774.1223931755108,0.0,400.0,580.0,0.0,27077.0,0,1,3,60.0,1,3.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1564.578632435294,0.09786213000562274,0.057782569429231226,20828.46153846154,5,3,5,5_1,5_1,5_0_0 +2892,2,43.0,3,0.0,99,112,4,0,46,6.0,0.0,0.0,1076.7438121004495,0.0,0.0,19626.451191295746,0,30,8,13678,201702892,,,200.0,300.0,1.0,0.0,3.0,1.0,2.0,1.3,1176.9514680819934,0.0,800.0,0.0,0.0,29968.0,0,1,3,68.0,10,4.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1076.7438121004495,0.05486186991247716,0.03592978550789007,23052.30769230769,6,3,6,6_0,6_2,6_0_0 +2893,2,69.0,3,0.0,5,300,2,0,78,5.0,2062.392811880547,0.0,605.6683943065029,113.23660429076627,0.0,23643.78796371809,0,71,1,1368,201702893,,,280.0,,0.0,3.0,6.0,0.0,1.0,1.0,1940.5766465404927,0.0,450.0,0.0,0.0,20311.0,0,5,1,132.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2781.297810477816,0.11763334262453116,0.13693554283284012,20311.0,5,3,5,5_1,5_1,5_0_0 +2894,2,67.0,2,0.0,2,111,1,0,75,6.0,0.0,0.0,563.9445715876104,0.0,813.8880933398825,25059.475368876687,0,60,2,13681,201702894,460.0,460.0,,,0.0,0.0,3.0,0.0,1.0,1.0,2248.235462590958,0.0,419.0,460.0,0.0,23106.0,0,5,2,54.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1377.832664927493,0.05498250241258963,0.059630947153444684,23106.0,6,3,6,6_0,6_3,6_0_1 +2895,2,43.0,5,0.0,2,111,1,0,37,3.0,0.0,0.0,174.97086946632305,0.0,53.079658261296686,21533.760000000002,0,33,2,13682,201702895,,,420.0,,1.0,0.0,3.0,1.0,2.0,1.3,2882.1713657192313,0.0,130.0,30.0,0.0,19560.0,0,4,2,76.0,8,6.0,2,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,228.05052772761974,0.010590371942829293,0.011659024934949884,15046.153846153846,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +2896,2,49.0,3,0.0,3,111,1,68,63,2.0,0.0,0.0,767.1799661215703,0.0,169.8549064361494,29456.940000000002,71,71,8,13683,201702896,,,,,2.0,0.0,4.0,3.0,5.0,2.8,2674.6184272373002,0.0,570.0,96.0,0.0,34747.0,1,1,2,80.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,937.0348725577196,0.03181032627821218,0.02696736042126571,12409.642857142859,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +2897,1,41.0,3,120.0,99,111,6,0,64,1.0,95.18736054833293,0.0,807.5578590753372,0.0,0.0,5241.0,0,60,1,13684,201702897,,,,,1.0,1.0,4.0,1.0,2.0,1.5,564.7858314148876,0.0,600.0,0.0,0.0,11096.0,0,4,3,85.0,5,4.0,2,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,902.7452196236701,0.17224675054830568,0.08135771626024424,7397.333333333333,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2898,2,70.0,2,0.0,99,111,1,0,74,9.0,0.0,0.0,565.290501352736,0.0,0.0,38596.730875301626,0,20,2,13685,201702898,,,,900.0,0.0,3.0,4.0,0.0,1.0,1.0,2386.3570451693945,0.0,420.0,0.0,0.0,36040.0,0,5,3,80.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,565.290501352736,0.014646072051518492,0.015685086053072585,36040.0,9,5,9,9_0,9_4,9_0_0 +2899,2,60.0,4,0.0,1,112,2,0,78,5.0,2630.3440631522667,693.9631597817199,740.261370819059,155.70033089980362,0.0,41209.899999999994,0,50,1,13687,201702899,,,157.0,,0.0,2.0,4.0,0.0,1.0,1.0,2334.0979459987816,0.0,550.0,0.0,0.0,20326.0,0,5,5,100.0,8,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4220.26892465285,0.10240910375062426,0.20762909203251254,20326.0,5,3,5,5_1,5_0,5_1_0 +2900,2,55.0,2,0.0,2,111,2,31,31,9.0,0.0,0.0,2869.165365131597,0.0,5814.4610646611745,159764.0,30,30,1,13689,201702900,,,640.0,,2.0,0.0,5.0,2.0,4.0,2.5,4297.61356560562,3558.0,660.0,1200.0,0.0,121795.0,1,1,1,130.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,8683.626429792772,0.05435283561874247,0.071297068268753,48718.0,10,5,10,10_1,10_2,10_0_1 +2901,1,40.0,3,242.0,99,120,2,0,64,3.0,0.0,0.0,774.9706561121491,0.0,1444.1412113601339,29843.539999999997,0,50,1,1369,201702901,,,84.0,,1.0,0.0,4.0,0.0,1.0,1.0,2858.9275092849634,1392.0,0.0,0.0,0.0,16246.0,0,1,3,80.0,0,3.0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2219.111867472283,0.07435819837299071,0.1365943535314713,16246.0,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +2902,1,35.0,4,437.0,7,111,2,0,68,1.0,0.0,0.0,969.0694308904046,0.0,2123.1863304518674,14725.380000000001,0,50,2,13690,201702902,,,,90.0,1.0,0.0,4.0,2.0,3.0,1.6,819.9727008213373,0.0,720.0,1200.0,0.0,16314.0,0,4,3,100.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,3092.2557613422723,0.20999497203754824,0.18954614204623466,10196.25,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2903,2,67.0,2,0.0,9,112,2,0,75,5.0,0.0,0.0,1547.8192298943961,0.0,0.0,28549.7,0,33,1,13691,201702903,,,,,0.0,1.0,5.0,0.0,1.0,1.0,1385.324234125755,0.0,1150.0,0.0,0.0,20245.0,0,5,1,125.0,8,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1547.8192298943961,0.05421490348040071,0.0764543951540823,20245.0,5,3,5,5_1,5_1,5_0_0 +2904,1,29.0,3,130.0,9,120,4,52,63,3.0,0.0,0.0,1681.0662766418268,0.0,0.0,27832.539999999994,43,43,2,13693,201702904,,,,400.0,2.0,0.0,3.0,1.0,3.0,1.8,2663.5468838824477,0.0,1249.0,0.0,0.0,26201.0,4,1,3,77.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1681.0662766418268,0.0603993123387886,0.06416038611663016,14556.111111111111,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +2905,2,58.0,2,0.0,9,300,5,77,75,6.0,0.0,0.0,134.5929765125562,0.0,0.0,13649.919999999998,31,50,1,13694,201702905,,,166.0,,0.0,2.0,4.0,0.0,2.0,1.5,3173.0511260269554,0.0,100.0,0.0,0.0,32030.0,6,5,1,108.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,134.5929765125562,0.009860349109193036,0.004202091055652706,21353.333333333332,6,3,6,6_1,6_0,6_0_0 +2906,2,73.0,1,0.0,7,111,2,0,74,10.0,0.0,0.0,1206.5333265356458,0.0,2101.470767382076,87418.69148883947,0,12,2,13695,201702906,,,210.0,,0.0,2.0,5.0,0.0,1.0,1.0,3478.97713440102,1449.1577383774215,297.0,338.0,0.0,66225.0,0,5,1,87.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3308.0040939177215,0.03784092437874166,0.04995098669562433,66225.0,10,5,10,10_0,10_3,10_0_0 +2907,2,63.0,2,0.0,1,211,2,77,74,8.0,0.0,0.0,646.0462872602698,0.0,1928.560916827113,49223.88,50,60,1,13696,201702907,,,400.0,,0.0,0.0,5.0,0.0,2.0,1.5,1616.6284609899485,0.0,480.0,1090.0,0.0,43657.0,5,5,1,120.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2574.607204087383,0.05230402812796112,0.0589735255305537,29104.666666666668,8,4,8,8_1,8_2,8_1_0 +2908,2,71.0,3,0.0,5,112,2,77,78,5.0,0.0,0.0,578.7497990039916,0.0,1636.6227963899812,41906.619999999995,41,70,1,137,201702908,,,310.0,,0.0,3.0,4.0,0.0,2.0,1.5,1652.352072995406,0.0,430.0,925.0,0.0,29548.0,5,5,1,99.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2215.372595393973,0.05286450196637126,0.07497538227270789,19698.666666666668,5,3,5,5_1,5_0,5_0_0 +2909,2,55.0,4,0.0,4,111,1,68,64,3.0,0.0,0.0,905.8107319295032,0.0,1969.2553214941072,27971.039999999997,71,71,1,1370,201702909,,,732.0,,2.0,3.0,5.0,1.0,3.0,2.0,1718.252843887662,0.0,673.0,1113.0,0.0,31690.0,1,1,3,80.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2875.0660534236104,0.1027872418552764,0.09072470979563302,15845.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +2910,2,72.0,2,0.0,5,111,1,0,77,5.0,0.0,0.0,272.7985786601674,0.0,508.35430572303557,23179.92,0,70,2,13702,201702910,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3611.2098656069998,490.0,0.0,0.0,0.0,20080.0,0,5,1,76.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,781.152884383203,0.033699550489527275,0.0389020360748607,20080.0,5,3,5,5_0,5_2,5_0_0 +2911,2,50.0,2,0.0,3,111,1,46,85,9.0,0.0,0.0,636.6247789043908,0.0,0.0,66294.24000000002,42,20,2,13703,201702911,,,,,2.0,1.0,4.0,2.0,4.0,2.3,2373.925631986176,0.0,473.0,0.0,0.0,90300.0,1,4,2,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,636.6247789043908,0.00960301798322736,0.007050108293514849,39260.86956521739,9,5,9,9_0,9_4,9_0_1 +2912,1,34.0,5,350.0,99,111,2,85,43,1.0,0.0,0.0,495.4912959337735,0.0,923.3374124357177,16384.16,50,71,2,13705,201702912,,,,116.0,1.0,0.0,4.0,2.0,4.0,2.1,2887.9200616463513,890.0,0.0,0.0,0.0,21480.0,8,4,3,75.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1418.8287083694913,0.08659758622776458,0.06605347804327241,10228.571428571428,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2913,1,39.0,4,90.0,99,112,4,0,56,2.0,0.0,0.0,1841.2319186917687,0.0,0.0,10219.0,0,50,1,13708,201702913,,,360.0,,1.0,4.0,3.0,0.0,1.0,1.0,3073.716728262276,0.0,1368.0,0.0,0.0,12770.0,0,1,3,45.0,8,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1841.2319186917687,0.1801773088063185,0.14418417530867414,12770.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +2914,2,72.0,3,0.0,99,111,1,77,78,6.0,0.0,0.0,275.5822376260875,0.0,513.5415945569441,46023.99999999999,70,71,2,13712,201702914,,,,,0.0,0.0,4.0,0.0,2.0,1.5,1693.925124685004,495.0,0.0,0.0,0.0,31800.0,5,5,3,70.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,789.1238321830316,0.017145920219516594,0.024815214848523007,21200.0,5,3,5,5_0,5_2,5_0_0 +2915,1,49.0,4,442.0,99,111,2,0,85,1.0,0.0,0.0,928.6915379366377,0.0,1096.9796040667982,15603.178875301626,0,71,2,13713,201702915,,,,,0.0,0.0,5.0,3.0,4.0,2.1,1097.6006710534566,0.0,690.0,620.0,0.0,14054.0,0,6,3,95.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2025.6711420034358,0.12982425941484807,0.1441348471611951,6692.380952380952,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2916,2,40.0,3,0.0,9,111,4,65,46,9.0,0.0,0.0,1520.900634591885,0.0,0.0,50051.219999999994,71,31,2,13714,201702916,,,,,2.0,0.0,3.0,2.0,4.0,2.3,3067.7573561570866,0.0,1130.0,0.0,0.0,70198.0,1,1,1,63.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1520.900634591885,0.030386884367491644,0.021665868466222468,30520.869565217392,8,4,8,8_0,8_4,8_0_0 +2917,2,37.0,2,0.0,1,111,2,52,33,9.0,0.0,277.585263912688,968.7133201401864,0.0,1805.1765142001673,45127.838839019714,31,31,1,13715,201702917,,,420.0,,2.0,2.0,6.0,0.0,2.0,1.5,2631.0902166843844,1740.0,0.0,0.0,0.0,57558.0,1,1,2,120.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3051.475098253042,0.06761846294342348,0.05301565548234897,38372.0,9,5,9,9_1,9_3,9_1_0 +2918,2,30.0,2,0.0,3,111,1,0,37,10.0,0.0,0.0,613.7439728972563,0.0,1061.5931652259337,23968.059999999998,0,20,2,13716,201702918,600.0,600.0,,,1.0,0.0,2.0,0.0,1.0,1.0,3787.67641267602,0.0,456.0,600.0,0.0,43305.0,0,1,2,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1675.33713812319,0.06989873765850012,0.03868692155924697,43305.0,10,5,10,10_0,10_4,10_0_1 +2919,2,52.0,2,0.0,7,111,4,37,37,10.0,0.0,652.3253701948167,1522.2465643570106,0.0,0.0,60317.14000000001,20,31,1,13717,201702919,,,359.0,,2.0,0.0,4.0,1.0,3.0,1.8,1316.2674995483915,0.0,1131.0,0.0,0.0,82057.0,1,1,2,110.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2174.5719345518273,0.03605230510849532,0.02650074868142666,45587.22222222222,10,5,10,10_1,10_3,10_0_0 +2920,2,73.0,4,0.0,4,120,2,0,72,4.0,0.0,0.0,780.639263772826,0.0,990.8202875442048,11590.425846751301,0,50,1,13718,201702920,,,220.0,,0.0,1.0,5.0,0.0,1.0,1.0,2114.1705089091984,0.0,580.0,560.0,0.0,17711.0,0,5,5,90.0,0,0.0,1,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1771.4595513170307,0.15283817650354545,0.10002030101727913,17711.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +2921,2,84.0,3,0.0,3,111,2,0,77,5.0,0.0,0.0,1777.9732197308674,0.0,0.0,27992.08,0,60,1,13719,201702921,,,131.0,,0.0,3.0,4.0,0.0,1.0,1.0,2323.7762382924743,0.0,1321.0,0.0,0.0,18668.0,0,5,1,127.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1777.9732197308674,0.06351700980173204,0.09524176235969935,18668.0,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +2922,2,68.0,1,0.0,6,120,4,33,75,8.0,0.0,0.0,193.8138861780809,0.0,0.0,35770.06,41,50,1,13720,201702922,,,653.0,,1.0,1.0,5.0,0.0,2.0,1.5,1622.6703267795772,0.0,144.0,0.0,0.0,47574.0,5,5,1,102.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,193.8138861780809,0.005418327119889676,0.0040739455622415795,31716.0,8,4,8,8_1,8_0,8_0_0 +2923,2,55.0,2,0.0,1,111,2,0,54,4.0,0.0,0.0,201.8894647688343,0.0,424.6372660903735,10552.200315994118,0,60,2,13721,201702923,,,110.0,,1.0,0.0,2.0,0.0,1.0,1.0,1946.5197925520508,0.0,150.0,240.0,0.0,18826.0,0,1,1,50.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,626.5267308592078,0.059374036892530596,0.03327986459466736,18826.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +2924,2,79.0,4,0.0,5,111,2,0,74,5.0,0.0,0.0,2500.737503603294,77.85016544990181,0.0,18971.56,0,50,1,13722,201702924,,,280.0,,0.0,3.0,4.0,0.0,1.0,1.0,2527.4655320819875,0.0,1858.0,0.0,0.0,19744.0,0,5,1,106.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2578.587669053196,0.13591858914360208,0.13060107724134906,19744.0,5,3,5,5_1,5_3,5_0_0 +2925,2,84.0,2,0.0,4,111,1,0,77,7.0,0.0,0.0,161.51157181506744,0.0,176.9321942043223,13572.119999999999,0,70,2,13723,201702925,,,,,0.0,3.0,4.0,0.0,1.0,1.0,6016.58988753002,0.0,120.0,100.0,0.0,23863.0,0,5,1,88.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,338.4437660193897,0.024936691247895666,0.014182783640757228,23863.0,6,3,6,6_0,6_3,6_0_1 +2926,2,69.0,3,0.0,5,112,2,0,75,7.0,1944.9950672042696,0.0,1119.8135645844675,123.8525359430256,0.0,17962.270875301627,0,50,1,13725,201702926,,,568.0,,0.0,2.0,5.0,0.0,1.0,1.0,2831.912092722013,0.0,832.0,0.0,0.0,28463.0,0,5,1,120.0,8,1.0,1,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3188.661167731763,0.17751993552865392,0.11202828822442339,28463.0,8,4,8,8_1,8_1,8_0_0 +2927,2,50.0,3,0.0,99,120,2,21,43,7.0,0.0,0.0,1184.4181933104944,2929.9971360235772,0.0,35273.8458467513,50,33,1,13726,201702927,,,800.0,,2.0,0.0,5.0,1.0,3.0,1.8,1874.684459265648,0.0,880.0,0.0,0.0,46633.0,1,1,2,130.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4114.415329334071,0.11664209644758673,0.08822969419368412,25907.222222222223,7,4,7,7_1,7_1,7_0_0 +2928,2,55.0,3,0.0,5,221,1,0,52,4.0,0.0,0.0,569.3282906481127,0.0,0.0,16877.270875301627,0,60,2,13728,201702928,,,340.0,539.0,1.0,5.0,2.0,0.0,1.0,1.0,4379.270376423364,0.0,423.0,0.0,0.0,18372.0,0,1,3,52.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,569.3282906481127,0.033733433257937075,0.030988911966476847,18372.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +2929,2,65.0,1,0.0,1,111,2,0,75,9.0,0.0,0.0,1844.8620985953635,0.0,1932.9942226776,40214.74036213778,0,31,1,1373,201702929,,,200.0,,0.0,1.0,2.0,0.0,1.0,1.0,3259.301448390768,1863.2028064852561,600.0,0.0,0.0,37865.0,0,5,1,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3777.856321272963,0.09394207912951787,0.09977172378906544,37865.0,9,5,9,9_1,9_4,9_1_0 +2930,2,70.0,3,0.0,1,111,6,0,74,7.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,14559.46,0,10,1,13731,201702930,,,80.0,,0.0,4.0,4.0,0.0,1.0,1.0,2555.7265476511343,500.0,0.0,0.0,0.0,27098.0,0,5,1,85.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,797.0947799828602,0.05474755107557975,0.029415262380355016,27098.0,7,4,7,7_1,7_3,7_1_0 +2931,2,47.0,3,0.0,5,111,2,52,63,4.0,0.0,0.0,484.5347154452023,0.0,1486.2304313163072,24657.3,31,44,2,13733,201702931,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2130.7502801861556,0.0,360.0,840.0,0.0,27674.0,4,1,2,75.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1970.7651467615096,0.07992623469566862,0.07121359929036314,18449.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +2932,2,41.0,2,0.0,4,111,2,63,42,5.0,0.0,0.0,807.5578590753372,0.0,2477.050718860512,37070.802568804225,43,30,1,13734,201702932,,,624.0,,2.0,0.0,5.0,2.0,4.0,2.3,1935.087565226309,0.0,600.0,1400.0,0.0,46143.0,1,1,2,110.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3284.608577935849,0.0886036543675995,0.07118324725171421,20062.17391304348,5,3,5,5_1,5_3,5_0_1 +2933,2,35.0,3,0.0,1,400,5,68,63,2.0,0.0,138.792631956344,2605.720025283088,268.9369351905699,0.0,28040.960000000006,71,50,1,13735,201702933,,,140.0,,2.0,0.0,4.0,4.0,6.0,3.1,1711.6287708689254,0.0,1936.0,0.0,0.0,35683.0,4,1,3,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3013.4495924300018,0.1074659923351412,0.0844505672849817,11510.645161290322,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2934,2,55.0,3,0.0,1,111,2,55,43,8.0,0.0,69.396315978172,917.9240998156332,0.0,1624.2375427956786,30343.31697444815,50,60,1,13737,201702934,,,309.0,,2.0,2.0,4.0,1.0,3.0,2.0,2334.832685220392,0.0,682.0,918.0,0.0,57681.0,1,1,1,150.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2611.557958589484,0.08606698999943396,0.04527587868777386,28840.5,8,4,8,8_1,8_2,8_1_0 +2935,1,39.0,4,154.0,8,111,2,0,52,3.0,0.0,0.0,646.0462872602698,0.0,1061.5931652259337,19891.830875301628,0,50,1,13738,201702935,,,,,1.0,0.0,3.0,1.0,2.0,1.5,2356.1338927792667,0.0,480.0,600.0,0.0,22901.0,0,1,3,60.0,8,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1707.6394524862035,0.0858462684099364,0.07456615224165772,15267.333333333334,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +2936,2,47.0,3,0.0,7,300,5,55,52,4.0,0.0,832.755791738064,1615.1157181506744,0.0,0.0,42275.52700020786,42,50,1,13739,201702936,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.3,2165.589627389012,0.0,1200.0,0.0,0.0,40750.0,1,1,2,100.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2447.8715098887383,0.05790280295918493,0.060070466500337136,17717.391304347828,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2937,2,73.0,2,0.0,4,300,2,77,78,4.0,1586.456009138882,0.0,403.7789295376686,212.31863304518674,0.0,20886.871191295748,70,71,1,13741,201702937,,,360.0,,0.0,3.0,5.0,0.0,2.0,1.5,1878.4099049956521,0.0,300.0,0.0,0.0,27168.0,5,5,1,90.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2202.553571721737,0.10545158016005836,0.08107161262226653,18112.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +2938,2,37.0,3,0.0,99,112,5,0,64,5.0,0.0,1040.94473967258,2051.1969620513564,58.38762408742635,0.0,16353.150875301628,0,50,1,13742,201702938,,,,,1.0,0.0,7.0,1.0,2.0,1.3,4857.355096566322,0.0,1524.0,0.0,0.0,25590.0,0,1,2,140.0,8,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3150.529325811363,0.19265579764017512,0.12311564383788054,19684.615384615383,5,3,5,5_1,5_0,5_0_0 +2939,2,49.0,2,0.0,1,111,4,0,62,3.0,0.0,0.0,1211.3367886130059,0.0,0.0,16235.079999999998,0,50,2,13743,201702939,,,200.0,,1.0,0.0,2.0,0.0,1.0,1.0,1457.9152172688905,0.0,900.0,0.0,0.0,17295.0,0,1,3,45.0,4,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1211.3367886130059,0.07461230795370309,0.07003971024070575,17295.0,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +2940,2,63.0,3,0.0,5,112,2,72,72,8.0,0.0,0.0,3229.0444004672877,0.0,6017.2550473338915,56985.68,50,31,1,13744,201702940,,,602.0,,0.0,2.0,5.0,0.0,2.0,1.5,1857.1672224371403,5800.0,0.0,0.0,0.0,43116.0,5,5,1,120.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,9246.299447801179,0.1622565431842031,0.21445169885428098,28744.0,8,4,8,8_1,8_0,8_0_0 +2941,2,70.0,3,0.0,1,111,2,72,77,3.0,0.0,0.0,473.2220242064128,0.0,881.8391017644495,16865.14,44,70,1,13745,201702941,,,240.0,,0.0,2.0,4.0,0.0,2.0,1.5,1888.98094567913,850.0,0.0,0.0,0.0,20579.0,5,5,1,85.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1355.0611259708623,0.08034686495166138,0.0658467916794238,13719.333333333334,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +2942,2,35.0,3,0.0,4,112,4,0,69,5.0,0.0,0.0,3364.824412813905,0.0,0.0,17252.5858467513,0,50,1,13746,201702942,,,438.0,,1.0,0.0,5.0,0.0,1.0,1.0,2324.794323451635,0.0,2500.0,0.0,0.0,21010.0,0,1,3,100.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3364.824412813905,0.1950330485355915,0.16015347038619251,21010.0,5,3,5,5_1,5_0,5_0_1 +2943,2,58.0,5,0.0,1,111,2,78,54,6.0,317.29120182777643,0.0,1002.1172277312272,0.0,1867.4239802070697,24115.611191708434,70,42,1,13747,201702943,,,430.0,680.0,1.0,1.0,6.0,0.0,2.0,1.5,1994.522870554317,1800.0,0.0,0.0,0.0,33490.0,5,1,3,90.0,8,6.0,3,3,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3186.8324097660734,0.13214810872642482,0.09515773095748203,22326.666666666668,6,3,6,6_1,6_2,6_1_0 +2944,1,45.0,4,195.0,99,111,2,0,52,6.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,42084.939999999995,0,42,2,13748,201702944,,,,,1.0,0.0,3.0,2.0,3.0,1.6,590.5857245355346,1000.0,0.0,0.0,0.0,33756.0,0,1,3,76.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1594.1895599657205,0.03788028591619046,0.04722685033670223,21097.5,5,3,5,5_0,5_3,5_0_0 +2945,2,29.0,9,0.0,1,111,2,0,54,9.0,0.0,0.0,471.07541779394666,0.0,1150.059262328095,20200.86,0,31,2,1375,201702945,,,,280.0,1.0,0.0,1.0,0.0,1.0,1.0,4788.507415098231,0.0,350.0,650.0,0.0,34490.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1621.1346801220416,0.08025077546807619,0.04700303508617111,34490.0,9,5,9,9_0,9_4,9_1_0 +2946,2,55.0,1,0.0,1,111,2,0,75,10.0,0.0,0.0,33.64824412813905,0.0,44.23304855108057,33805.28,0,42,2,13750,201702946,,,234.0,,0.0,0.0,3.0,0.0,1.0,1.0,3371.6437221302913,0.0,25.0,25.0,0.0,46660.0,0,5,1,58.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,77.88129267921963,0.002303820370049283,0.001669123289310322,46660.0,10,5,10,10_0,10_3,10_1_0 +2947,2,48.0,2,0.0,6,111,6,35,37,7.0,0.0,0.0,1413.22625338184,0.0,0.0,87758.34031599412,30,20,2,13751,201702947,,,,,2.0,3.0,4.0,1.0,3.0,1.8,2300.3936639627964,0.0,1050.0,0.0,0.0,47805.0,1,1,1,104.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1413.22625338184,0.016103611899372677,0.029562310498521913,26558.333333333332,7,4,7,7_0,7_3,7_0_0 +2948,2,68.0,3,0.0,5,111,1,68,78,7.0,0.0,0.0,1211.3367886130059,0.0,530.7965826129669,26894.04,71,71,8,13754,201702948,,,,,1.0,3.0,3.0,0.0,2.0,1.5,1157.1425131562366,0.0,900.0,300.0,0.0,36344.0,1,5,1,76.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1742.1333712259727,0.06477767457867888,0.04793455236699243,24229.333333333332,7,4,7,7_0,7_3,7_0_0 +2949,2,69.0,3,0.0,8,300,4,77,77,7.0,0.0,346.98157989085996,1551.857019189773,0.0,0.0,39217.00000000001,70,50,1,13755,201702949,,,380.0,,0.0,1.0,5.0,0.0,2.0,1.5,1927.6534807239823,0.0,1153.0,0.0,0.0,36122.0,5,5,1,135.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1898.8385990806328,0.048418762248020816,0.052567371659394076,24081.333333333332,7,4,7,7_1,7_0,7_0_0 +2950,1,24.0,1,329.0,1,111,2,47,47,8.0,0.0,0.0,239.57549819235004,0.0,677.6503038025544,23247.74,20,20,2,13756,201702950,,,,171.0,2.0,0.0,2.0,0.0,2.0,1.5,3374.9408532500393,0.0,178.0,383.0,0.0,41315.0,1,1,3,47.0,8,6.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,917.2258019949045,0.03945440726689581,0.022200793948805628,27543.333333333332,8,4,8,8_0,8_2,8_1_0 +2951,2,62.0,3,0.0,6,111,2,0,72,7.0,4759.368027416646,0.0,672.964882562781,0.0,0.0,27154.1058467513,0,50,1,13757,201702951,,,400.0,,0.0,1.0,4.0,0.0,1.0,1.0,1924.3688213822054,0.0,500.0,0.0,0.0,23540.0,0,5,1,180.0,8,7.0,1,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5432.332909979427,0.2000556726352066,0.23077030203820847,23540.0,6,3,6,6_1,6_3,6_0_0 +2952,2,51.0,2,0.0,1,112,6,45,37,9.0,0.0,208.188947934516,4576.16120142691,185.7788039145384,0.0,37417.119999999995,42,42,1,13758,201702952,,,,,2.0,2.0,5.0,1.0,3.0,1.8,2134.7104594635694,0.0,3400.0,0.0,0.0,68950.0,1,1,2,200.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4970.128953275965,0.1328303448602128,0.0720830885174179,38305.555555555555,9,5,9,9_1,9_0,9_1_0 +2953,2,82.0,1,0.0,1,111,2,0,74,10.0,0.0,0.0,393.0114914166641,0.0,4754.16805827014,54492.5658467513,0,10,2,1376,201702953,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3168.311821591548,0.0,292.0,2687.0,0.0,105004.0,0,5,5,172.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,5147.179549686804,0.09445654594724255,0.04901889022977034,105004.0,10,5,10,10_0,10_2,10_1_0 +2954,2,86.0,2,0.0,4,111,2,77,75,7.0,0.0,0.0,1233.7176536957775,0.0,2299.006411188259,26511.559999999998,50,50,1,13760,201702954,,,,,0.0,3.0,7.0,0.0,2.0,1.5,2043.0301995693387,2216.0,0.0,0.0,0.0,39650.0,5,5,1,185.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3532.724064884036,0.13325221393550724,0.08909770655445236,26433.333333333332,7,4,7,7_1,7_2,7_0_1 +2955,2,57.0,1,0.0,5,112,5,22,31,10.0,63.56929228619501,971.5484236944079,3374.967856063149,0.0,1290.5145062338204,39766.24519553356,33,10,1,13761,201702955,,,350.0,,2.0,3.0,7.0,0.0,2.0,1.5,1724.0856791369622,1243.9200394991708,1993.0,0.0,0.0,165838.0,1,1,1,150.0,8,0.0,3,3,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5700.600078277573,0.14335273673054377,0.03437451053605068,110558.66666666667,10,5,10,10_1,10_0,10_0_0 +2956,2,50.0,3,0.0,7,112,4,56,47,3.0,0.0,0.0,2170.509294305733,0.0,292.5630902324409,35870.845846751305,50,31,1,13762,201702956,,,588.0,,2.0,1.0,4.0,1.0,3.0,2.0,1522.3693589186823,282.0,1496.0,0.0,0.0,28478.0,1,1,2,90.0,8,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2463.072384538174,0.06866502103298593,0.08649035692598406,14239.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +2957,2,46.0,3,0.0,1,211,2,33,34,7.0,0.0,0.0,713.3427755165478,0.0,1946.2541362475451,49396.85087530163,41,30,1,13764,201702957,,,340.0,,2.0,0.0,5.0,2.0,4.0,2.3,1237.9059104166863,0.0,530.0,1100.0,0.0,60591.0,1,1,2,142.0,1,3.0,4,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2659.596911764093,0.05384142641963212,0.043894256766914115,26343.913043478264,7,4,7,7_1,7_1,7_1_0 +2958,1,40.0,5,267.0,5,111,2,0,33,4.0,0.0,0.0,1015.4787907676435,0.0,1892.3229666098305,23641.52,0,43,2,13765,201702958,,,,,1.0,0.0,4.0,3.0,4.0,2.1,616.4401498961795,1824.0,0.0,0.0,0.0,35484.0,0,1,3,77.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2907.801757377474,0.12299555009058107,0.08194684244666538,16897.142857142855,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +2959,2,44.0,3,0.0,5,111,4,52,46,5.0,0.0,222.0682111301504,1776.6272899657417,0.0,0.0,35354.979999999996,42,43,1,13766,201702959,,,,,3.0,0.0,4.0,2.0,4.0,2.5,1796.331567291297,0.0,1320.0,0.0,0.0,50086.0,1,1,2,90.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1998.695501095892,0.056532219820118475,0.03990527295243965,20034.4,5,3,5,5_1,5_3,5_0_0 +2960,2,62.0,3,0.0,0,111,5,0,77,3.0,0.0,0.0,0.0,0.0,0.0,12271.580315994115,0,50,0,13767,201702960,,,,,0.0,1.0,,0.0,2.0,1.5,4501.732835193388,0.0,0.0,0.0,0.0,23515.0,0,5,1,,7,5.0,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,15676.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +2961,2,82.0,2,0.0,2,111,2,0,77,3.0,0.0,0.0,393.0114914166641,0.0,1070.43977493615,12122.600315994116,0,71,2,13768,201702961,,,,306.0,0.0,7.0,3.0,0.0,1.0,1.0,5009.143215803984,0.0,292.0,605.0,0.0,16240.0,0,5,3,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1463.451266352814,0.12072090378348858,0.09011399423354766,16240.0,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +2962,2,61.0,5,0.0,4,111,1,0,75,1.0,0.0,0.0,596.2468859506239,61.9262679715128,0.0,26534.740000000005,0,33,2,13769,201702962,,,,268.0,0.0,1.0,3.0,0.0,1.0,1.0,3377.4623999499177,0.0,443.0,0.0,0.0,4286.0,0,7,3,60.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,658.1731539221366,0.024804205879618058,0.15356349834860863,4286.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +2963,1,41.0,5,300.0,6,211,2,0,56,2.0,0.0,0.0,629.895130078763,0.0,1997.5644725667987,22974.500000000004,0,43,1,13770,201702963,,,751.0,243.0,1.0,0.0,5.0,2.0,3.0,2.0,380.86864175807955,0.0,468.0,1129.0,0.0,25301.0,0,4,3,99.0,2,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2627.459602645562,0.11436416908509703,0.10384805354118659,12650.5,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +2964,2,50.0,3,0.0,5,112,2,0,56,4.0,1903.7472109666587,0.0,780.639263772826,70.77287768172891,0.0,30758.460000000003,0,50,1,13771,201702964,,,,,1.0,0.0,5.0,2.0,3.0,2.0,505.30482466367,0.0,580.0,0.0,0.0,32943.0,0,1,1,250.0,6,2.0,2,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2755.1593524212135,0.08957403434441169,0.0836341363088126,16471.5,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2966,2,70.0,4,0.0,6,111,1,0,78,3.0,0.0,0.0,406.4707890679197,0.0,0.0,16590.239999999998,0,70,8,13773,201702966,,,,293.0,0.0,3.0,2.0,0.0,1.0,1.0,2512.2465906319367,0.0,302.0,0.0,0.0,14014.0,0,6,3,57.0,6,5.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,406.4707890679197,0.024500597282976003,0.029004623167398297,14014.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +2967,2,46.0,2,0.0,1,400,4,0,46,9.0,0.0,0.0,1453.6041463356069,88.46609710216114,0.0,29876.985846751297,0,31,1,13775,201702967,,,510.0,,1.0,0.0,5.0,0.0,1.0,1.0,2579.0164717516836,0.0,1080.0,0.0,0.0,43813.0,0,1,1,130.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1542.070243437768,0.05161398312893891,0.035196636693167964,43813.0,10,5,10,10_1,10_0,10_1_0 +2968,2,63.0,3,0.0,3,111,4,0,77,4.0,0.0,0.0,1737.5953267771006,123.8525359430256,0.0,15501.1,0,71,1,13776,201702968,,,305.0,,0.0,0.0,5.0,0.0,1.0,1.0,4012.533455426193,0.0,1291.0,0.0,0.0,18710.0,0,5,1,90.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1861.447862720126,0.12008488834470625,0.0994894635339458,18710.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +2969,2,27.0,3,0.0,3,112,2,54,43,7.0,0.0,0.0,678.3486016232832,0.0,707.7287768172891,46910.025846751305,31,44,1,13778,201702969,,,360.0,,2.0,0.0,3.0,0.0,2.0,1.5,5117.901284012742,0.0,504.0,400.0,0.0,35920.0,1,1,2,85.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1386.0773784405724,0.02954757226032446,0.038587900290661815,23946.666666666668,7,4,7,7_1,7_2,7_0_1 +2970,1,20.0,2,354.0,99,111,1,0,84,1.0,0.0,0.0,888.3136449828709,0.0,0.0,29074.660000000003,0,41,2,13779,201702970,,,,,0.0,0.0,3.0,0.0,3.0,2.0,3744.4921675444075,0.0,660.0,0.0,0.0,4555.0,0,3,3,68.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,888.3136449828709,0.030552847221012067,0.19501946102807263,2277.5,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2971,2,29.0,3,0.0,5,112,2,38,52,9.0,0.0,0.0,3041.80126918377,0.0,0.0,59438.96000000001,31,30,1,1378,201702971,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1800.3839994969157,0.0,2260.0,0.0,0.0,47842.0,1,1,2,90.0,9,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3041.80126918377,0.051175210151452336,0.06358014441670018,31894.666666666668,9,5,9,9_1,9_1,9_0_0 +2972,2,48.0,3,0.0,5,111,2,0,37,3.0,0.0,0.0,528.9503976943458,0.0,1965.7166776100207,43776.5,0,20,2,13780,201702972,,,840.0,355.0,1.0,0.0,3.0,2.0,3.0,2.0,673.6519597073216,0.0,393.0,1111.0,0.0,32056.0,0,1,3,75.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2494.6670753043663,0.05698644421788782,0.07782215732793756,16028.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +2973,1,31.0,5,260.0,8,112,1,0,67,1.0,0.0,0.0,336.4824412813905,0.0,0.0,31984.10732515317,0,43,2,13781,201702973,,,,175.0,1.0,0.0,2.0,0.0,1.0,1.0,3002.868155971684,0.0,250.0,0.0,0.0,9280.0,0,4,3,46.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,336.4824412813905,0.01052030115646753,0.036258883758770524,9280.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +2974,2,66.0,4,0.0,1,111,5,85,21,1.0,0.0,0.0,1978.5167547345761,0.0,0.0,26162.612664423516,71,71,1,13784,201702974,,,900.0,,1.0,2.0,4.0,0.0,2.0,1.5,3429.438711211645,0.0,1470.0,0.0,0.0,11800.0,6,1,1,100.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1978.5167547345761,0.07562382167683909,0.1676709114181844,7866.666666666667,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +2975,2,65.0,2,0.0,5,112,2,75,75,8.0,0.0,0.0,2490.0239026728946,0.0,0.0,34838.9,50,31,1,13786,201702975,,,360.0,,0.0,2.0,6.0,0.0,2.0,1.5,2209.960605324412,0.0,1850.04,0.0,0.0,44726.0,5,5,1,135.0,9,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2490.0239026728946,0.07147251786574474,0.05567285030346766,29817.333333333332,8,4,8,8_1,8_0,8_0_0 +2976,2,53.0,2,0.0,2,211,2,52,54,9.0,0.0,0.0,834.4764543778484,0.0,806.8108055717097,27874.000000000004,71,50,1,13788,201702976,,,200.0,,2.0,4.0,3.0,0.0,2.0,1.5,1105.5993858836764,0.0,620.0,456.0,0.0,45942.0,1,1,2,90.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1641.2872599495581,0.05888237281873997,0.0357252026457176,30628.0,8,4,8,8_1,8_1,8_0_1 +2977,2,52.0,2,0.0,9,111,4,0,46,7.0,0.0,0.0,592.2090966552472,0.0,0.0,15005.770875301629,0,31,2,1379,201702977,,,,590.0,1.0,1.0,2.0,0.0,1.0,1.0,3055.5065006590207,0.0,440.0,0.0,0.0,23369.0,0,1,3,50.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,592.2090966552472,0.039465423107984336,0.025341653329421336,23369.0,6,3,6,6_0,6_3,6_0_0 +2978,2,38.0,2,0.0,1,111,2,42,42,7.0,0.0,0.0,1117.1217050542164,0.0,1645.4694061001974,41869.81999999999,31,20,1,13790,201702978,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.1,2024.6032411696506,0.0,830.0,930.0,0.0,52129.0,1,1,2,110.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2762.5911111544137,0.0659804869272047,0.05299528306996899,24823.333333333332,7,4,7,7_1,7_3,7_1_0 +2979,2,62.0,2,0.0,1,400,5,0,78,3.0,0.0,693.9631597817199,532.9881869897225,0.0,0.0,14856.08,0,70,1,13792,201702979,,,160.0,,0.0,3.0,2.0,0.0,1.0,1.0,2915.8055455350204,0.0,396.0,0.0,0.0,13903.0,0,5,1,55.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1226.9513467714423,0.08258917202730749,0.08825083412007785,13903.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2980,1,52.0,5,379.0,9,111,2,0,85,1.0,0.0,0.0,799.4822804845838,0.0,1006.7441850225938,30942.65926898215,0,42,2,13794,201702980,,,486.0,167.0,1.0,1.0,4.0,2.0,3.0,2.0,3055.513624156715,0.0,594.0,569.0,0.0,20778.0,0,7,3,90.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1806.2264655071776,0.05837334308618372,0.08692975577568475,10389.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2981,2,60.0,3,0.0,9,212,2,62,64,8.0,0.0,0.0,1130.581002705472,1733.9355032023584,0.0,32595.650548748068,41,31,1,13795,201702981,,,200.0,,2.0,1.0,5.0,1.0,3.0,2.0,2284.5160746243314,0.0,840.0,0.0,0.0,55758.0,1,1,1,170.0,1,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2864.5165059078304,0.08788032935939824,0.05137408992266276,27879.0,8,4,8,8_1,8_0,8_0_0 +2982,2,65.0,1,0.0,5,112,2,56,78,4.0,951.8736054833294,0.0,1329.4760080861492,452.94641716306506,220.1499039653917,15547.756974448146,50,50,1,13796,201702982,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1854.2409170076423,212.20131653967763,900.0,0.0,0.0,27431.0,5,5,1,110.0,8,1.0,3,5,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2954.4459346979356,0.19002393332706444,0.10770463835434128,18287.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2983,2,56.0,2,0.0,7,112,2,56,38,8.0,769.4311644323578,0.0,948.4038989115868,0.0,233.57013524020996,35474.07987863848,31,31,1,13797,201702983,,,330.0,,3.0,1.0,7.0,1.0,3.0,2.0,2364.3482733810906,225.13700578363512,611.52,0.0,0.0,61795.0,1,1,1,163.0,9,1.0,4,5,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1951.4051985841545,0.055009325266791136,0.031578690809679656,30897.5,8,4,8,8_1,8_1,8_0_0 +2984,2,52.0,3,0.0,5,112,6,77,64,4.0,2379.684013708323,693.9631597817199,457.61612014269105,339.7098128722988,0.0,23189.56,50,50,1,13798,201702984,,,140.0,,1.0,4.0,6.0,0.0,2.0,1.5,1664.1146937813755,0.0,340.0,0.0,0.0,25420.0,6,1,1,100.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3870.9731065050332,0.16692740640637568,0.15228061001199975,16946.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2985,1,41.0,4,100.0,1,300,5,54,68,3.0,0.0,346.98157989085996,1615.1157181506744,162.7776186679765,0.0,28102.502296602845,31,31,1,13799,201702985,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3680.132995537909,0.0,1200.0,0.0,0.0,31650.0,4,1,2,100.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2124.874916709511,0.07561159124845532,0.06713664823726734,15071.42857142857,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +2986,2,37.0,3,0.0,3,111,1,52,48,9.0,0.0,0.0,1243.6391029760193,0.0,201.70270139292742,52690.37999999999,42,31,2,138,201702986,,,,,3.0,1.0,5.0,1.0,3.0,2.0,1168.7074700346052,0.0,924.0,114.0,0.0,70961.0,1,1,2,98.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1445.3418043689467,0.027430847991017467,0.020368114941572788,35480.5,9,5,9,9_0,9_2,9_0_1 +2987,2,23.0,5,0.0,99,112,2,85,53,2.0,0.0,0.0,1453.6041463356069,0.0,4671.009926994108,31217.57087530163,60,71,1,1380,201702987,,,,510.0,1.0,0.0,4.0,3.0,5.0,2.4,1670.8637100908547,0.0,1080.0,2640.0,0.0,26670.0,4,1,3,87.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6124.614073329715,0.19619124427696324,0.2296443222095881,11112.5,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +2988,2,78.0,2,0.0,5,111,4,77,74,9.0,0.0,0.0,1921.0027422808596,0.0,963.7352026846903,94092.88330704275,60,60,1,13800,201702988,,,424.0,,0.0,2.0,5.0,0.0,2.0,1.5,1825.8019216813252,621.9600197495854,1170.0,180.0,0.0,50865.0,5,5,1,120.0,7,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2884.73794496555,0.030658407347898015,0.056713613387703726,33910.0,9,5,9,9_1,9_2,9_0_0 +2989,2,58.0,3,0.0,5,111,4,47,33,10.0,0.0,0.0,3189.8535433475818,0.0,0.0,34405.69107277169,31,44,1,13801,201702989,,,1300.0,,2.0,2.0,5.0,0.0,2.0,1.5,1759.2202212089499,0.0,2370.0,0.0,0.0,61061.0,1,1,2,102.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3189.8535433475818,0.09271296241661599,0.05224044059788706,40707.333333333336,10,5,10,10_1,10_4,10_0_0 +2990,1,24.0,3,326.0,4,221,1,0,46,3.0,0.0,0.0,1037.7118489118084,70.77287768172891,1427.842807228881,25089.699999999997,0,42,2,13802,201702990,807.0,807.0,,27.0,1.0,0.0,4.0,2.0,3.0,1.6,709.3552094228908,0.0,771.0,807.0,0.0,24575.0,0,1,3,84.0,1,2.0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,2536.3275338224184,0.10109038903703188,0.10320763108127848,15359.375,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +2991,2,42.0,3,0.0,6,221,5,52,48,3.0,0.0,416.377895869032,2370.1823163861145,159.23897478389006,0.0,25143.04,50,50,1,13804,201702991,,,,,2.0,0.0,8.0,3.0,5.0,2.4,2137.2422371796683,0.0,1761.0,0.0,0.0,35300.0,1,4,2,150.0,3,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2945.7991870390365,0.11716161558184836,0.08345040189912285,14708.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +2992,2,45.0,3,0.0,8,111,1,45,64,5.0,0.0,0.0,659.5055849115254,0.0,1433.1507730550106,38980.76000000001,31,41,1,13805,201702992,,,930.0,,2.0,0.0,5.0,2.0,4.0,2.1,2558.0998725587306,0.0,490.0,810.0,0.0,38892.0,1,1,2,90.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2092.6563579665362,0.05368433960668124,0.05380685894185273,18520.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2993,2,62.0,1,0.0,7,111,2,55,37,10.0,0.0,0.0,861.3950496803596,0.0,1804.7083808840873,64368.38000000001,50,20,1,13806,201702993,,,420.0,,2.0,2.0,8.0,0.0,2.0,1.5,2002.5465637368402,0.0,640.0,1020.0,0.0,99657.0,1,1,1,230.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2666.103430564447,0.041419458289372,0.026752796397287167,66438.0,10,5,10,10_1,10_3,10_0_0 +2994,2,68.0,2,0.0,5,400,2,0,13,9.0,2379.684013708323,138.792631956344,807.5578590753372,265.39829130648343,0.0,21401.12,0,71,1,13807,201702994,,,390.0,,1.0,2.0,6.0,0.0,1.0,1.0,1592.302377171673,0.0,600.0,0.0,0.0,43676.0,0,1,1,110.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3591.4327960464875,0.1678151795815587,0.08222897692202782,43676.0,10,5,10,10_1,10_0,10_0_0 +2995,1,38.0,5,225.0,99,111,1,62,52,1.0,0.0,0.0,666.2352337371532,0.0,2050.6441308280955,16905.56,71,44,2,13808,201702995,1159.0,1159.0,,,3.0,1.0,3.0,2.0,4.0,2.5,1715.5491049133122,0.0,495.0,1159.0,0.0,20772.0,4,4,3,70.0,6,5.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2716.8793645652486,0.16070922019532322,0.13079527077629735,8308.8,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2996,2,81.0,2,0.0,2,111,2,0,77,9.0,0.0,0.0,913.9771369473333,0.0,2121.3001675034516,28666.922206294923,0,70,2,13809,201702996,,,935.0,,0.0,1.0,3.0,0.0,1.0,1.0,3396.2026925471564,694.0014451274676,392.0,792.0,0.0,34325.0,0,5,1,80.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3035.277304450785,0.10588082259435139,0.08842759809033605,34325.0,9,5,9,9_0,9_3,9_0_1 +2997,2,59.0,3,0.0,1,120,2,71,46,8.0,1586.456009138882,0.0,1547.8192298943961,191.08676974066807,0.0,54177.98822934279,50,60,1,1381,201702997,,,400.0,,2.0,1.0,7.0,1.0,3.0,2.0,2085.578650807575,0.0,1150.0,0.0,0.0,56220.0,5,1,1,200.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3325.362008773946,0.06137846969690415,0.05914909300558424,28110.0,8,4,8,8_1,8_0,8_1_0 +2998,2,67.0,4,0.0,5,111,2,75,74,9.0,0.0,0.0,2894.5362232610605,0.0,5488.251233406093,51976.11875798688,31,12,1,13811,201702998,,,326.0,,0.0,0.0,6.0,0.0,2.0,1.5,1944.6427676391681,2902.480092164732,950.0,1400.0,0.0,63444.0,5,5,1,150.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,8382.787456667153,0.16128152037860688,0.1321289240380044,42296.0,10,5,10,10_1,10_4,10_0_0 +2999,2,46.0,1,0.0,2,400,2,0,62,3.0,0.0,0.0,376.8603342351573,0.0,1342.9153540108061,58394.700000000004,0,50,1,13813,201702999,,,210.0,,1.0,2.0,6.0,0.0,1.0,1.0,1936.5932881764436,0.0,280.0,759.0,0.0,17070.0,0,1,1,90.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1719.7756882459635,0.029450886608647076,0.10074842930556317,17070.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +3000,2,70.0,3,0.0,1,111,2,0,75,8.0,0.0,0.0,1076.7438121004495,0.0,2477.050718860512,17087.16,0,50,1,13814,201703000,,,70.0,,0.0,2.0,8.0,0.0,1.0,1.0,2093.5759224142594,0.0,800.0,1400.0,0.0,33757.0,0,5,5,114.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3553.7945309609613,0.20798040932261191,0.10527578075542736,33757.0,9,5,9,9_1,9_3,9_1_0 +3001,1,51.0,2,47.0,7,221,2,85,46,1.0,0.0,0.0,1329.7786079440552,176.9321942043223,0.0,65409.62000000001,50,31,2,13815,201703001,,,480.0,753.0,1.0,2.0,3.0,0.0,2.0,1.5,4471.791579362062,0.0,988.0,0.0,0.0,14223.0,7,1,3,87.0,1,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1506.7108021483775,0.02303500314095048,0.10593480996613777,9482.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +3002,1,63.0,5,78.0,4,112,1,56,78,1.0,0.0,0.0,1292.0925745205395,0.0,0.0,27417.0,71,71,2,13816,201703002,,,,303.0,1.0,2.0,4.0,5.0,7.0,3.8,1453.4790292620671,0.0,960.0,0.0,0.0,22376.0,1,5,3,89.0,10,5.0,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1292.0925745205395,0.04712742366125176,0.05774457340545851,5888.421052631579,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3003,2,27.0,2,0.0,9,111,6,55,42,9.0,0.0,0.0,1728.1738184212215,0.0,0.0,55445.96,30,20,1,13817,201703003,,,370.0,,2.0,0.0,5.0,1.0,3.0,1.8,3962.8587298911802,0.0,1284.0,0.0,0.0,61252.0,1,1,3,83.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1728.1738184212215,0.03116861568311238,0.02821416147099232,34028.88888888889,9,5,9,9_1,9_3,9_0_0 +3004,2,83.0,3,0.0,9,120,4,0,86,8.0,0.0,0.0,52.49126083989692,0.0,0.0,11016.115052882571,0,71,2,13818,201703004,,,180.0,,0.0,1.0,3.0,0.0,2.0,1.5,1776.8473658977648,0.0,39.0,0.0,0.0,40654.0,0,5,1,80.0,0,3.0,5,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,52.49126083989692,0.004764952125855077,0.0012911708771559235,27102.666666666668,7,4,7,7_0,7_1,7_0_0 +3005,2,57.0,2,0.0,6,112,4,72,45,9.0,0.0,0.0,3576.3942447319596,109.69796040667983,2902.367124519862,38953.32283507831,50,42,1,13820,201703005,,,334.0,,1.0,1.0,6.0,0.0,2.0,1.5,2863.0898896419335,2797.576168833635,1500.0,0.0,0.0,51133.0,5,1,1,150.0,9,0.0,3,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6588.459329658501,0.16913728663284794,0.1288494578776622,34088.666666666664,9,5,9,9_1,9_0,9_0_0 +3006,0,49.0,4,0.0,2,120,5,0,85,3.0,0.0,4996.534750428384,807.5578590753372,0.0,0.0,23495.359999999997,0,71,1,13821,201703006,,,400.0,,0.0,0.0,6.0,0.0,2.0,1.5,2668.7075430319196,0.0,600.0,0.0,0.0,22390.0,0,7,5,60.0,0,1.0,5,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5804.092609503721,0.24703143980359193,0.2592270035508585,14926.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +3007,2,67.0,3,0.0,7,111,2,85,78,1.0,0.0,0.0,0.0,0.0,0.0,29093.100000000002,71,71,2,13822,201703007,,,,,0.0,3.0,4.0,1.0,3.0,2.0,1959.3682942092134,0.0,0.0,0.0,0.0,12300.0,6,5,3,74.0,6,5.0,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,6150.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +3008,2,81.0,2,0.0,3,111,2,86,74,10.0,0.0,0.0,4149.17314461845,0.0,2715.6726926180363,44130.27342490727,70,20,1,13823,201703008,,,263.0,,0.0,3.0,8.0,0.0,2.0,1.5,2598.1798797768547,2617.622403119422,2000.0,0.0,0.0,74695.0,5,5,5,150.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,6864.845837236487,0.155558651793033,0.09190502493120672,49796.666666666664,10,5,10,10_1,10_4,10_0_1 +3009,2,53.0,3,0.0,7,111,1,0,78,3.0,0.0,0.0,349.9417389326461,0.0,0.0,21591.14,0,50,2,13825,201703009,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3344.5325242255662,0.0,260.0,0.0,0.0,14437.0,0,4,3,45.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,349.9417389326461,0.016207654571858927,0.0242392282976135,14437.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +3010,2,49.0,3,0.0,9,111,2,37,33,9.0,0.0,0.0,2961.045483276236,0.0,0.0,54997.38,20,12,1,13826,201703010,,,200.0,,2.0,0.0,6.0,1.0,3.0,2.0,1708.4849969499494,0.0,2200.0,0.0,0.0,69932.0,1,1,2,225.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2961.045483276236,0.053839755335185716,0.042341781777673115,34966.0,9,5,9,9_1,9_3,9_0_0 +3011,2,41.0,1,0.0,9,111,2,34,34,9.0,0.0,355.3091378082406,1113.4635863680303,0.0,2074.915533563411,69948.34,20,20,1,13827,201703011,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.1,2429.7892054302765,2000.0,0.0,0.0,0.0,69275.0,1,1,2,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3543.688257739682,0.05066150615925527,0.051153926492092126,32988.09523809524,9,5,9,9_1,9_3,9_0_0 +3012,1,37.0,2,552.0,99,111,6,0,84,2.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,19554.98,0,50,2,13829,201703012,,,,68.0,0.0,0.0,3.0,4.0,5.0,2.2,778.4706902136288,1440.0,0.0,0.0,0.0,23475.0,0,3,3,65.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2295.6329663506376,0.11739377725523818,0.09779054169757775,10670.454545454544,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3013,2,48.0,3,0.0,1,111,1,0,85,1.0,0.0,0.0,208.6191135944621,0.0,0.0,15375.0,0,41,2,1383,201703013,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2641.6972132968604,0.0,155.0,0.0,0.0,9700.0,0,7,1,72.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,208.6191135944621,0.01356872283541217,0.021507125112831146,9700.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +3014,2,50.0,3,0.0,3,111,2,55,53,7.0,0.0,0.0,607.0143240716285,0.0,1199.600276705305,28510.979999999996,71,42,1,13831,201703014,,,248.0,,3.0,3.0,4.0,1.0,3.0,2.0,1540.5964643928992,0.0,451.0,678.0,0.0,50883.0,4,1,1,80.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1806.6146007769335,0.06336557357119726,0.03550526896560607,25441.5,7,4,7,7_1,7_2,7_0_1 +3015,2,54.0,2,0.0,5,111,1,74,33,7.0,0.0,0.0,578.7497990039916,0.0,0.0,27725.66,31,42,2,13832,201703015,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2422.868339474937,0.0,430.0,0.0,0.0,40017.0,5,1,1,75.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,578.7497990039916,0.020874157693775066,0.014462598370792203,26678.0,7,4,7,7_0,7_4,7_0_0 +3016,1,44.0,2,43.0,4,211,2,85,63,2.0,0.0,0.0,815.6334376660906,0.0,1900.2517657544215,21281.759999999995,43,43,8,13835,201703016,,,,328.0,1.0,0.0,5.0,2.0,4.0,2.3,1353.2547619384927,0.0,606.0,1074.0,0.0,28648.0,6,1,3,110.0,2,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,2715.885203420512,0.1276156296951245,0.09480191299289696,12455.652173913044,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +3017,1,48.0,4,412.0,2,111,2,81,68,1.0,0.0,0.0,488.572504740579,0.0,1266.8345105029475,23666.03265683205,71,42,2,13836,201703017,,,,37.0,2.0,0.0,3.0,2.0,4.0,2.1,2353.1711716395857,0.0,363.0,716.0,0.0,15704.0,4,4,3,80.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1755.4070152435265,0.07417411446598192,0.11178088482192604,7478.095238095238,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3018,1,32.0,4,445.0,5,400,4,0,85,1.0,0.0,0.0,1211.3367886130059,297.2460862632615,0.0,15520.939999999999,0,50,1,13837,201703018,,,400.0,,0.0,0.0,4.0,5.0,6.0,2.5,552.5703544109418,0.0,900.0,0.0,0.0,19900.0,0,6,3,100.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1508.5828748762674,0.09719661791594243,0.07580818466714911,7960.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +3019,2,82.0,3,0.0,4,112,2,0,77,7.0,0.0,0.0,565.290501352736,1415.4575536345783,0.0,11541.0658467513,0,71,1,13838,201703019,,,154.0,,0.0,6.0,5.0,0.0,1.0,1.0,2401.5109778217957,0.0,420.0,0.0,0.0,23970.0,0,5,1,114.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1980.7480549873144,0.1716260942696966,0.08263446203534895,23970.0,7,4,7,7_1,7_0,7_0_1 +3020,2,30.0,2,0.0,9,211,4,52,62,6.0,0.0,0.0,2681.0920921301195,56.61830214538313,0.0,35251.259999999995,50,50,1,13839,201703020,,,480.0,,2.0,0.0,7.0,2.0,4.0,2.1,2306.181370387523,0.0,1992.0,0.0,0.0,46739.0,1,1,2,180.0,2,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2737.7103942755025,0.07766276706919137,0.05857443236431037,22256.666666666664,6,3,6,6_1,6_1,6_0_0 +3021,2,52.0,5,0.0,4,112,2,0,67,1.0,0.0,0.0,444.15682249143543,0.0,2441.664280019648,34660.99449038949,0,71,1,1384,201703021,,,300.0,,1.0,2.0,2.0,0.0,1.0,1.0,1607.9926184159178,0.0,330.0,1380.0,0.0,8714.0,0,1,3,60.0,8,2.0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2885.821102511083,0.08325846228420364,0.33117065670313095,8714.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +3022,2,49.0,3,0.0,4,111,1,0,52,7.0,1056.5797020864954,0.0,511.45331074771354,0.0,0.0,29364.326296616575,0,42,8,13841,201703022,666.0,666.0,,,1.0,0.0,3.0,1.0,2.0,1.3,906.7568356333899,0.0,380.0,0.0,0.0,31213.0,0,1,1,55.0,10,8.0,2,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1568.0330128342089,0.05339925040319693,0.05023653646987502,24010.0,7,4,7,7_0,7_4,7_0_1 +3023,2,80.0,2,0.0,1,400,2,74,74,10.0,2300.361213251379,0.0,2633.297345219989,0.0,3402.226409934429,77157.52397420401,33,33,1,13842,201703023,,,600.0,,0.0,2.0,6.0,0.0,2.0,1.5,1706.8321373323938,3279.3878641329807,600.0,0.0,0.0,88522.0,5,5,5,130.0,0,0.0,3,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,8335.884968405797,0.1080372274671842,0.09416738176279113,59014.666666666664,10,5,10,10_1,10_0,10_1_0 +3024,0,59.0,2,0.0,1,111,2,0,56,3.0,0.0,0.0,615.0899026623819,0.0,1174.8297695167,10748.62,0,71,2,13844,201703024,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2557.3281579739555,0.0,457.0,664.0,0.0,15715.0,0,1,5,60.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1789.9196721790818,0.1665255327827276,0.11389880192039974,15715.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +3025,2,39.0,4,0.0,9,112,4,56,47,4.0,0.0,0.0,1884.3016711757866,0.0,0.0,17881.34,50,43,1,13845,201703025,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.1,1860.2670438145421,0.0,1400.0,0.0,0.0,35090.0,1,1,2,127.0,8,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1884.3016711757866,0.10537810204245245,0.05369910718654279,16709.52380952381,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3026,1,67.0,3,134.0,6,111,4,0,77,4.0,0.0,0.0,901.7729426341265,31.847794956778014,0.0,15676.06,0,50,2,13846,201703026,,,,601.0,1.0,1.0,3.0,1.0,3.0,1.8,3306.756035963258,0.0,670.0,0.0,0.0,31078.0,0,5,3,78.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,933.6207375909045,0.05955710411869465,0.03004121042508863,17265.555555555555,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +3027,2,61.0,3,0.0,8,111,2,0,56,6.0,0.0,0.0,579.0010649113758,0.0,1078.9560774529734,23980.080000000005,0,50,2,13849,201703027,,,370.0,390.0,1.0,2.0,3.0,0.0,1.0,1.0,2188.126048959506,1040.0,0.0,0.0,0.0,20685.0,0,1,3,65.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1657.9571423643492,0.06913893291283219,0.08015262955592696,20685.0,5,3,5,5_0,5_3,5_0_0 +3028,2,62.0,3,0.0,6,400,4,72,72,3.0,0.0,0.0,3170.846134249729,56.61830214538313,2460.1508203837393,33520.628195318335,60,50,1,13852,201703028,,,417.0,,0.0,0.0,5.0,0.0,2.0,1.5,2838.4571878590054,2371.3262352985857,1375.0,0.0,0.0,23800.0,4,5,1,92.0,0,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,5687.615256778851,0.1696750795849707,0.2389754309570946,15866.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +3029,2,49.0,1,0.0,99,111,2,23,22,10.0,0.0,0.0,2438.8247344075185,0.0,5661.830214538313,62274.91344410586,30,20,1,13853,201703029,,,,,2.0,3.0,8.0,0.0,2.0,1.5,2091.000937974321,0.0,1812.0,3200.0,0.0,73558.0,1,1,1,400.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,8100.654948945832,0.13007894352541305,0.11012609028176176,49038.666666666664,10,5,10,10_1,10_3,10_0_0 +3030,2,47.0,3,0.0,6,111,4,0,43,3.0,0.0,0.0,1884.3016711757866,0.0,0.0,26225.92,0,42,2,13854,201703030,,,350.0,470.0,1.0,0.0,4.0,1.0,2.0,1.5,868.882592433754,0.0,1400.0,0.0,0.0,21870.0,0,1,3,96.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1884.3016711757866,0.07184883013353914,0.08615919849912147,14580.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +3031,1,42.0,4,259.0,5,111,1,0,63,3.0,0.0,0.0,672.964882562781,0.0,0.0,12622.536722052928,0,71,2,13855,201703031,,,,275.0,1.0,0.0,6.0,2.0,3.0,1.6,1205.9285492256752,0.0,500.0,0.0,0.0,25878.0,0,1,3,90.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,672.964882562781,0.053314551375955914,0.026005289534074542,16173.75,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +3032,2,43.0,2,0.0,9,112,4,53,53,9.0,0.0,0.0,1749.7086946632305,0.0,0.0,65321.0,42,41,1,13856,201703032,,,500.0,,2.0,0.0,5.0,1.0,3.0,1.8,2082.796437506081,0.0,1300.0,0.0,0.0,60512.0,1,1,1,115.0,9,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1749.7086946632305,0.026786312130298532,0.028915069650040166,33617.777777777774,9,5,9,9_1,9_1,9_0_0 +3033,1,36.0,3,437.0,1,111,1,0,68,1.0,0.0,0.0,305.5260566835026,0.0,1397.7643342141462,11008.880000000001,0,71,2,13861,201703033,,,,243.0,1.0,0.0,4.0,2.0,3.0,1.8,1184.5778738290778,0.0,227.0,790.0,0.0,18554.0,0,1,3,70.0,9,7.0,2,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1703.2903908976486,0.15471968001264874,0.09180178888097708,10307.777777777777,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +3034,2,44.0,3,0.0,1,111,2,0,55,5.0,0.0,0.0,784.6770530682027,0.0,1125.2887551394897,37476.60584675129,0,31,1,13862,201703034,,,200.0,,1.0,2.0,6.0,0.0,1.0,1.0,645.2180197654143,0.0,583.0,636.0,0.0,19260.0,0,1,2,70.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1909.9658082076924,0.050964215276535246,0.09916748744588226,19260.0,5,3,5,5_1,5_3,5_1_0 +3035,2,72.0,1,0.0,1,112,2,75,33,9.0,594.9210034270808,0.0,3634.010365839017,176.9321942043223,0.0,60623.759999999995,41,41,1,13863,201703035,,,136.0,,1.0,2.0,5.0,0.0,2.0,1.5,1297.7589327155422,0.0,2700.0,0.0,0.0,56232.0,5,5,1,140.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4405.863563470421,0.07267552463704695,0.07835153584205472,37488.0,9,5,9,9_1,9_0,9_1_0 +3036,2,83.0,2,0.0,1,111,4,0,78,4.0,0.0,0.0,1076.7438121004495,53.079658261296686,0.0,16377.34,0,70,2,13864,201703036,,,,,0.0,3.0,4.0,0.0,1.0,1.0,4350.358236565358,0.0,800.0,0.0,0.0,17174.0,0,5,3,54.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1129.8234703617463,0.06898699485763539,0.06578685631546212,17174.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +3037,1,20.0,4,9999.0,99,111,1,0,84,1.0,237.96840137083234,0.0,0.0,0.0,721.8833523536349,11192.950875301629,0,41,2,13865,201703037,,,,288.0,0.0,0.0,2.0,0.0,1.0,1.0,2087.961550528549,0.0,0.0,408.0,0.0,9422.0,0,3,3,26.0,7,5.0,1,4,1,1,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,959.8517537244672,0.08575502246172424,0.1018734614439044,9422.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3038,1,87.0,4,52.0,1,221,6,0,77,3.0,0.0,0.0,2732.2374232048905,63.69558991355603,0.0,15281.44,0,70,1,13866,201703038,,,,,0.0,5.0,5.0,0.0,1.0,1.0,2357.681263558878,0.0,2030.0,0.0,0.0,15544.0,0,5,3,84.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2795.9330131184465,0.1829626666805253,0.17987217016974053,15544.0,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +3039,2,42.0,3,0.0,9,111,6,46,38,2.0,0.0,0.0,3634.010365839017,0.0,0.0,35140.95999999999,31,31,1,13867,201703039,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.3,1959.8699850105656,0.0,2700.0,0.0,0.0,29590.0,1,1,2,120.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3634.010365839017,0.10341238161504461,0.12281211104559031,12865.217391304348,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +3040,2,56.0,2,0.0,4,111,2,0,47,5.0,0.0,0.0,565.290501352736,0.0,1167.752481748527,19676.207053394144,0,42,2,13868,201703040,,,144.0,318.0,2.0,2.0,3.0,1.0,2.0,1.5,940.9087315382038,0.0,420.0,660.0,0.0,27875.0,0,1,3,70.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1733.042983101263,0.08807810257324535,0.06217194558210809,18583.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +3041,2,28.0,2,0.0,7,112,2,0,38,10.0,0.0,0.0,1292.0925745205395,0.0,2901.6879849508855,67351.44,0,30,1,13869,201703041,,,562.0,,4.0,0.0,6.0,2.0,4.0,2.5,2972.2384781031574,0.0,960.0,1640.0,0.0,114956.0,0,1,1,130.0,10,2.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4193.780559471425,0.0622671253869468,0.03648161522209736,45982.4,10,5,10,10_1,10_1,10_0_0 +3042,2,25.0,3,0.0,99,211,2,38,55,5.0,0.0,0.0,322.9044400467288,0.0,601.7255047333891,25073.219999999998,12,20,2,1387,201703042,,,,680.0,2.0,0.0,4.0,0.0,2.0,1.5,2414.916440737472,580.0,0.0,0.0,0.0,32380.0,4,1,3,85.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,924.629944780118,0.03687719187165103,0.028555588164920258,21586.666666666668,6,3,6,6_0,6_1,6_0_0 +3043,2,46.0,3,0.0,9,111,1,0,56,1.0,0.0,0.0,106.3284514449194,0.0,0.0,23428.632027330717,0,50,2,13870,201703043,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2497.0979198855675,0.0,79.0,0.0,0.0,11485.0,0,1,3,50.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,106.3284514449194,0.004538397774179975,0.009258027988238519,11485.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +3044,2,48.0,1,0.0,1,120,2,78,62,3.0,2379.684013708323,693.9631597817199,942.1508355878933,0.0,0.0,30763.94919428049,43,44,1,13871,201703044,,,320.0,,1.0,4.0,4.0,1.0,3.0,2.0,2779.8376167537685,0.0,700.0,0.0,0.0,28484.0,4,4,1,100.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4015.7980090779365,0.1305358419271001,0.14098434240548857,14242.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +3045,2,43.0,3,0.0,6,111,2,42,53,4.0,0.0,0.0,1130.581002705472,0.0,0.0,36205.34,20,43,1,13872,201703045,,,360.0,,2.0,0.0,4.0,3.0,5.0,2.4,2262.7977711161366,0.0,840.0,0.0,0.0,40505.0,1,1,2,90.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1130.581002705472,0.03122691301077333,0.027912134371200395,16877.083333333336,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3048,2,47.0,3,0.0,8,300,4,56,47,1.0,0.0,0.0,1884.3016711757866,0.0,0.0,30926.760000000002,50,50,1,13875,201703048,,,377.0,,2.0,0.0,4.0,2.0,4.0,2.5,1909.362337555109,0.0,1400.0,0.0,0.0,22369.0,1,1,2,110.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1884.3016711757866,0.060927871887510573,0.08423718857238977,8947.6,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +3049,2,47.0,2,0.0,99,111,2,0,54,2.0,0.0,0.0,834.4764543778484,0.0,3538.6438840864457,27960.907913348674,0,43,1,13877,201703049,,,1200.0,,1.0,0.0,4.0,2.0,3.0,2.0,792.1885146737636,0.0,620.0,2000.0,0.0,26546.0,0,1,1,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4373.120338464294,0.1564012281724423,0.16473744965208673,13273.0,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +3050,1,25.0,3,67.0,1,111,1,65,64,5.0,0.0,0.0,201.8894647688343,0.0,106.15931652259337,16969.239999999998,43,60,2,13879,201703050,,,210.0,203.0,2.0,0.0,2.0,0.0,2.0,1.5,2971.2842068533123,0.0,150.0,60.0,0.0,29431.0,4,1,3,40.0,7,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,308.04878129142764,0.018153363455960768,0.010466813268031247,19620.666666666668,5,3,5,5_0,5_2,5_1_0 +3051,2,47.0,4,0.0,1,111,1,0,21,4.0,0.0,0.0,977.145009481158,0.0,198.16405750884095,16509.88,0,50,2,1388,201703051,,,,432.0,1.0,1.0,3.0,0.0,1.0,1.0,3758.2562244560754,0.0,726.0,112.0,0.0,18768.0,0,1,3,50.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1175.3090669899989,0.07118822589806824,0.06262303212862314,18768.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +3053,2,52.0,1,0.0,1,211,2,0,46,9.0,2173.4447325202686,0.0,1426.0188225837903,0.0,1027.0831891138882,46099.58000000001,0,30,1,13881,201703053,,,300.0,,2.0,0.0,6.0,1.0,2.0,1.5,1139.0707288535007,990.0,650.0,0.0,0.0,62681.0,0,1,1,110.0,2,3.0,2,5,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4626.546744217947,0.10035984588618695,0.07381099127674969,41787.333333333336,10,5,10,10_1,10_1,10_1_0 +3054,2,35.0,3,0.0,4,111,2,43,46,5.0,0.0,0.0,726.8020731678034,0.0,1571.157884534382,47510.65457177303,20,42,2,13882,201703054,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2344.911927001432,0.0,540.0,888.0,0.0,38137.0,4,1,2,59.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2297.9599577021854,0.048367255269672636,0.06025539391410403,18160.47619047619,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3055,2,65.0,3,0.0,1,300,2,77,78,2.0,0.0,249.82673752141918,547.7934144061037,0.0,3230.7818661709252,16676.92,71,50,1,13883,201703055,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2204.955473647623,0.0,407.0,1826.0,0.0,17019.0,6,5,1,162.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4028.402018098448,0.24155551613238227,0.23670027722536272,11346.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3056,2,48.0,3,0.0,8,112,4,52,63,3.0,0.0,0.0,2122.5312396030113,109.69796040667983,0.0,45051.96,50,50,1,13884,201703056,,,301.0,,2.0,0.0,6.0,3.0,5.0,2.8,1992.8244302078892,0.0,1577.0,0.0,0.0,44434.0,1,1,2,110.0,4,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2232.229200009691,0.04954788204574653,0.05023696268644936,15869.285714285716,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3057,2,32.0,2,0.0,9,111,2,34,38,10.0,0.0,555.170527825376,447.6123617199482,0.0,834.116044492491,41414.15150728986,20,50,1,13888,201703057,,,440.0,,2.0,0.0,4.0,0.0,2.0,1.5,2704.1643390214062,804.0,0.0,0.0,0.0,70037.0,1,1,2,79.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1836.8989340378153,0.04435437808533824,0.026227550209715084,46691.333333333336,10,5,10,10_1,10_4,10_0_0 +3058,2,54.0,2,0.0,5,300,2,22,22,10.0,0.0,832.755791738064,2260.531295800997,0.0,3619.2270616319706,33235.27225183253,31,31,1,13889,201703058,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2898.555224083133,1928.0760612237148,882.0,915.0,0.0,85072.0,1,1,1,120.0,0,0.0,3,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6712.514149171032,0.201969585153644,0.07890391843580769,56714.666666666664,10,5,10,10_1,10_0,10_0_0 +3059,2,31.0,2,0.0,99,111,4,46,34,10.0,0.0,0.0,807.5578590753372,0.0,0.0,37672.40175060326,30,10,2,1389,201703059,,,200.0,401.0,2.0,0.0,2.0,0.0,2.0,1.5,3184.937437560768,0.0,600.0,0.0,0.0,71773.0,1,1,3,45.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,807.5578590753372,0.02143632530841773,0.0112515550287063,47848.666666666664,10,5,10,10_0,10_3,10_0_0 +3060,2,64.0,2,0.0,6,120,2,77,75,7.0,0.0,999.3069500856767,986.5665178370369,212.31863304518674,0.0,40885.579999999994,70,41,1,13890,201703060,,,510.0,,0.0,1.0,4.0,0.0,2.0,1.5,2335.3649795361066,0.0,733.0,0.0,0.0,35763.0,5,5,1,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2198.1921009679004,0.05376448373651299,0.06146553983077204,23842.0,6,3,6,6_1,6_0,6_0_0 +3061,0,29.0,3,0.0,99,111,1,0,52,3.0,0.0,0.0,686.4241802140366,0.0,0.0,10400.060000000001,0,43,2,13891,201703061,,,,,1.0,0.0,3.0,1.0,2.0,1.3,5399.163224603289,0.0,510.0,0.0,0.0,19088.0,0,4,5,75.0,8,6.0,2,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,686.4241802140366,0.06600194424013289,0.035961032073241646,14683.076923076922,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +3062,2,81.0,3,0.0,7,111,4,77,74,8.0,0.0,416.377895869032,3617.8592086575104,0.0,0.0,36200.86175060326,70,70,1,13892,201703062,,,280.0,,0.0,4.0,6.0,0.0,2.0,1.5,615.2796989329306,0.0,2688.0,0.0,0.0,42746.0,5,5,1,100.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4034.237104526542,0.11144036106983875,0.09437694999594212,28497.333333333332,8,4,8,8_1,8_2,8_0_0 +3063,2,59.0,2,0.0,6,111,2,67,37,10.0,1586.456009138882,0.0,2307.6455523185787,127.39117982711205,1290.5145062338204,93236.72661408552,71,31,1,13893,201703063,,,400.0,,2.0,2.0,5.0,0.0,2.0,1.5,1746.9836880490434,1243.9200394991708,1200.0,0.0,0.0,81115.0,1,1,1,120.0,6,4.0,3,7,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5312.007247518393,0.056973334869479364,0.0654873605069148,54076.666666666664,10,5,10,10_1,10_2,10_0_0 +3064,2,64.0,2,0.0,1,300,6,48,78,3.0,0.0,1365.719498450425,1635.3046646275577,221.5191071438115,0.0,20665.66,50,50,1,13894,201703064,,,648.0,,1.0,2.0,4.0,0.0,2.0,1.5,3224.410183882017,0.0,1215.0,0.0,0.0,21037.0,4,4,1,102.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3222.5432702217945,0.15593710872151165,0.15318454486009386,14024.666666666666,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +3065,1,24.0,3,100.0,1,111,2,0,46,3.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,21862.879999999997,0,31,2,13895,201703065,,,,,1.0,0.0,3.0,0.0,2.0,1.5,5128.056226913647,600.0,0.0,0.0,0.0,24482.0,0,1,3,35.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,956.5137359794323,0.0437505825389625,0.03907008152844671,16321.333333333334,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +3066,2,62.0,2,0.0,1,300,2,0,78,6.0,1407.1864801061886,0.0,655.4677956161487,0.0,0.0,13326.080000000002,0,50,1,13896,201703066,,,243.0,,0.0,2.0,4.0,0.0,1.0,1.0,2039.278863873243,0.0,487.0,0.0,0.0,22540.0,0,5,1,85.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2062.6542757223374,0.15478327277956735,0.09151083743222438,22540.0,6,3,6,6_1,6_1,6_1_0 +3068,2,66.0,3,0.0,1,111,2,77,78,9.0,0.0,277.585263912688,779.6513973979017,0.0,2234.2626525902206,25387.868669251562,71,71,1,13899,201703068,,,170.0,,0.0,3.0,5.0,0.0,2.0,1.5,2375.314186621106,414.0450681078347,408.0,1020.0,0.0,48353.0,5,5,1,138.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3291.49931390081,0.12964850877329845,0.0680722874258228,32235.333333333332,9,5,9,9_1,9_4,9_1_0 +3069,2,69.0,4,0.0,9,111,6,75,75,9.0,0.0,0.0,1399.7669557305844,0.0,0.0,58955.5,50,44,2,139,201703069,,,312.0,,0.0,4.0,3.0,0.0,2.0,1.5,2603.316122180565,0.0,1040.0,0.0,0.0,48605.0,5,5,2,55.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1399.7669557305844,0.02374277133991883,0.028798826370344293,32403.333333333332,9,5,9,9_0,9_3,9_0_0 +3070,2,45.0,3,0.0,9,111,2,54,62,2.0,0.0,0.0,807.5578590753372,0.0,2477.050718860512,31519.079999999998,43,50,1,13902,201703070,,,550.0,,2.0,1.0,7.0,3.0,5.0,2.8,2044.3254784727817,0.0,600.0,1400.0,0.0,31354.0,1,1,2,130.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3284.608577935849,0.10421016660181227,0.10475883708413118,11197.857142857143,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3071,2,54.0,3,0.0,9,300,4,55,63,6.0,0.0,0.0,1695.871504058208,88.46609710216114,0.0,29993.48,50,50,1,13904,201703071,,,260.0,,2.0,2.0,4.0,0.0,2.0,1.5,1509.8939726433334,0.0,1260.0,0.0,0.0,34004.0,1,1,2,104.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1784.337601160369,0.05949084938327827,0.0524743442289251,22669.333333333332,6,3,6,6_1,6_1,6_0_0 +3072,2,68.0,3,0.0,5,111,4,78,75,4.0,0.0,0.0,484.5347154452023,291.9381204371318,0.0,21441.205846751298,70,50,1,13905,201703072,,,164.0,,0.0,3.0,3.0,0.0,2.0,1.5,1478.8652150105104,0.0,360.0,0.0,0.0,24685.0,5,5,1,78.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,776.472835882334,0.03621404698187638,0.03145524958000138,16456.666666666668,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3073,2,44.0,4,0.0,10,221,6,0,45,6.0,786.8821805328855,0.0,258.4185149041079,0.0,0.0,34724.22,0,20,2,13906,201703073,,,507.0,,1.0,0.0,4.0,2.0,3.0,1.8,689.520331742736,0.0,192.0,0.0,0.0,38279.0,0,1,2,80.0,1,2.0,2,7,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1045.3006954369935,0.030102928026518476,0.02730741909237424,21266.11111111111,6,3,6,6_0,6_1,6_0_0 +3074,2,81.0,5,0.0,99,111,2,78,72,2.0,0.0,0.0,1345.929765125562,0.0,2477.050718860512,17946.698839019722,12,70,1,13907,201703074,,,650.0,,0.0,1.0,4.0,0.0,2.0,1.5,2403.0910852738693,0.0,1000.0,1400.0,0.0,18900.0,5,5,3,70.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3822.980483986074,0.21301859011943455,0.20227409968180285,12600.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3075,2,39.0,3,0.0,1,111,2,42,37,8.0,0.0,0.0,1348.621624655813,0.0,2986.6154381689603,46230.89087530162,30,31,1,13908,201703075,,,828.0,,2.0,0.0,5.0,2.0,4.0,2.1,3027.8175406859186,0.0,1002.0,1688.0,0.0,56770.0,1,1,2,89.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4335.237062824774,0.09377359987542074,0.07636492976615772,27033.333333333332,7,4,7,7_1,7_4,7_1_0 +3076,1,46.0,3,141.0,1,300,6,0,63,2.0,0.0,0.0,1938.1388617808093,0.0,0.0,22608.671191295747,0,50,1,13909,201703076,,,234.0,,2.0,1.0,7.0,3.0,4.0,2.5,1327.163202880999,0.0,1440.0,0.0,0.0,30693.0,0,1,2,180.0,0,3.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1938.1388617808093,0.08572546548100471,0.06314595711663276,12277.2,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +3077,2,43.0,3,0.0,6,111,4,85,31,3.0,0.0,0.0,1615.1157181506744,0.0,0.0,30262.649322168425,33,10,2,13910,201703077,,,,475.0,1.0,0.0,4.0,1.0,3.0,1.8,2311.712980200055,0.0,1200.0,0.0,0.0,29860.0,6,1,3,64.0,7,5.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1615.1157181506744,0.053369938003661396,0.054089608779326004,16588.888888888887,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +3078,2,35.0,3,0.0,9,111,2,0,55,9.0,0.0,0.0,751.0288089400635,0.0,0.0,25676.516722052933,0,31,2,13911,201703078,,,,665.0,1.0,0.0,2.0,0.0,1.0,1.0,3497.117391409379,0.0,558.0,0.0,0.0,35140.0,0,1,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,751.0288089400635,0.029249637599597894,0.021372476065454282,35140.0,9,5,9,9_0,9_4,9_0_0 +3079,2,55.0,3,0.0,2,111,1,0,68,8.0,0.0,0.0,570.9767354052044,0.0,1045.7438229114114,26608.524054233432,0,50,2,13912,201703079,,,,356.0,1.0,0.0,1.0,0.0,1.0,1.0,2781.8371327024684,155.266900540438,360.0,500.0,0.0,29908.0,0,1,3,28.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1616.7205583166158,0.06075949778429723,0.05405645841636404,29908.0,8,4,8,8_0,8_4,8_0_1 +3080,2,49.0,4,0.0,2,111,2,77,52,1.0,0.0,0.0,3627.2807170133897,0.0,0.0,31302.399999999998,50,60,1,13913,201703080,,,480.0,,2.0,0.0,7.0,3.0,5.0,3.0,1508.19409239991,0.0,2695.0,0.0,0.0,30960.0,7,1,2,112.0,7,5.0,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3627.2807170133897,0.11587867757786591,0.11716022987769346,10320.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +3081,2,72.0,1,0.0,4,120,2,0,86,2.0,0.0,0.0,1958.684608054325,99.08202875442048,482.22225382937097,41011.83608778136,0,70,1,13914,201703081,,,103.0,,0.0,0.0,4.0,0.0,1.0,1.0,1909.1864950356735,464.8114547595235,1263.0,0.0,0.0,11740.0,0,5,1,110.0,0,0.0,1,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2539.9888906381166,0.06193306939980808,0.21635339783970328,11740.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +3082,2,46.0,3,0.0,4,111,1,56,63,5.0,0.0,0.0,1372.8483604280732,0.0,477.7169243516702,48196.28063198823,71,50,2,13915,201703082,,,,432.0,3.0,0.0,2.0,4.0,6.0,3.1,2959.1387730195243,0.0,1020.0,270.0,0.0,61634.0,1,1,3,78.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1850.5652847797433,0.03839643351133426,0.030025071953463076,19881.935483870966,5,3,5,5_0,5_4,5_0_1 +3083,2,84.0,3,0.0,1,111,2,0,77,3.0,0.0,0.0,780.639263772826,0.0,1680.8558449410618,14618.78,0,71,2,13916,201703083,,,104.0,,0.0,2.0,3.0,0.0,1.0,1.0,4049.7243641784758,0.0,580.0,950.0,0.0,13415.0,0,5,1,46.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2461.495108713888,0.16837896929250512,0.18348826751501215,13415.0,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +3084,2,31.0,4,0.0,4,111,1,0,67,5.0,0.0,0.0,0.0,0.0,0.0,19776.28,0,43,2,13917,201703084,,,,520.0,1.0,0.0,3.0,0.0,1.0,1.0,2668.8527793997555,0.0,0.0,0.0,0.0,19926.0,0,1,3,70.0,6,5.0,1,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,19926.0,5,3,5,5_0,5_2,5_0_1 +3085,1,30.0,2,256.0,1,120,2,0,85,3.0,0.0,0.0,403.7789295376686,46.0023704931238,0.0,5327.679999999999,0,50,2,13918,201703085,,,200.0,,0.0,0.0,2.0,0.0,1.0,1.0,1682.1985852330672,0.0,300.0,0.0,0.0,14065.0,0,7,3,30.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,449.7813000307924,0.08442348264737981,0.03197876288878723,14065.0,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +3086,2,74.0,4,0.0,1,111,2,0,72,9.0,0.0,0.0,403.7789295376686,0.0,707.7287768172891,27865.082821199445,0,71,1,13919,201703086,,,250.0,,0.0,4.0,15.0,0.0,1.0,1.0,2746.847010086156,0.0,300.0,400.0,0.0,31305.0,0,5,1,600.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1111.5077063549577,0.0398889073284697,0.035505756471967985,31305.0,8,4,8,8_1,8_2,8_1_0 +3087,1,39.0,4,272.0,8,111,2,0,85,3.0,0.0,0.0,699.8834778652922,0.0,530.7965826129669,8655.720000000001,0,41,2,1392,201703087,,,,27.0,0.0,0.0,2.0,0.0,1.0,1.0,2623.899376163829,0.0,520.0,300.0,0.0,15118.0,0,7,3,46.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1230.680060478259,0.1421811311454459,0.08140495174482465,15118.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +3088,2,56.0,1,0.0,6,112,4,52,42,9.0,0.0,0.0,2617.833393169218,265.39829130648343,0.0,32393.458839019717,50,31,1,13920,201703088,,,520.0,,2.0,2.0,4.0,0.0,2.0,1.5,1627.3452430934776,0.0,1945.0,0.0,0.0,58065.0,1,1,1,120.0,6,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2883.2316844757015,0.0890066015736081,0.04965524299450102,38710.0,9,5,9,9_1,9_1,9_0_0 +3089,1,36.0,3,357.0,2,111,2,0,52,2.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,10033.14,0,20,2,13922,201703089,,,150.0,,1.0,0.0,4.0,3.0,4.0,1.9,670.6529265149567,900.0,0.0,0.0,0.0,23334.0,0,4,3,58.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1434.7706039691484,0.1430031479645603,0.06148841192976551,12281.052631578948,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3090,1,50.0,4,330.0,3,111,1,0,55,1.0,0.0,0.0,273.22374232048907,0.0,169.8549064361494,25316.36,0,50,2,13924,201703090,,,,,1.0,0.0,3.0,3.0,4.0,2.1,1091.3566375851242,0.0,203.0,96.0,0.0,21233.0,0,4,3,55.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,443.0786487566385,0.017501672782210338,0.02086745390461256,10110.95238095238,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +3091,2,57.0,4,0.0,2,112,5,78,69,2.0,0.0,208.188947934516,1366.1187116024453,0.0,0.0,15352.600315994116,70,71,1,13925,201703091,,,162.0,,1.0,1.0,6.0,0.0,2.0,1.5,1856.5035864635104,0.0,1015.0,0.0,0.0,19931.0,6,1,1,80.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1574.3076595369612,0.10254338855528404,0.07898789120149322,13287.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +3092,2,31.0,3,0.0,9,120,4,52,62,5.0,0.0,277.585263912688,3052.5687073047743,0.0,0.0,52013.16,43,50,1,13928,201703092,,,492.0,,2.0,0.0,4.0,2.0,4.0,2.1,1743.7801528122404,0.0,2268.0,0.0,0.0,41601.0,1,1,2,117.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3330.153971217462,0.06402521921793373,0.08004985387893229,19810.0,5,3,5,5_1,5_0,5_0_0 +3093,2,33.0,3,0.0,9,112,4,52,37,7.0,0.0,0.0,1292.0925745205395,0.0,0.0,39438.051191295745,31,42,1,13929,201703093,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2177.400770696595,0.0,960.0,0.0,0.0,50265.0,1,1,2,150.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1292.0925745205395,0.032762586778266406,0.025705611748145618,23935.714285714286,7,4,7,7_1,7_0,7_0_0 +3094,2,42.0,2,0.0,9,111,2,0,37,10.0,0.0,0.0,807.5578590753372,0.0,1433.1507730550106,45366.22063198823,0,20,1,1393,201703094,,,770.0,,1.0,0.0,4.0,1.0,3.0,1.8,959.3184600603333,0.0,600.0,810.0,0.0,69599.0,0,1,3,90.0,8,7.0,5,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2240.7086321303477,0.049391564933456214,0.03219455210750654,38666.11111111111,9,5,9,9_1,9_3,9_0_0 +3095,2,71.0,3,0.0,2,111,1,0,74,5.0,0.0,0.0,1009.4473238441715,0.0,619.262679715128,30700.12,0,44,2,13930,201703095,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2328.3206324827142,0.0,750.0,350.0,0.0,21488.0,0,5,1,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1628.7100035592994,0.05305223574237819,0.07579625854240969,21488.0,6,3,6,6_0,6_4,6_0_1 +3096,2,70.0,2,0.0,6,112,2,0,74,10.0,2379.684013708323,0.0,2961.0724018715387,0.0,0.0,25850.9,0,10,1,13933,201703096,,,1000.0,,0.0,1.0,5.0,0.0,1.0,1.0,2535.2073088312213,0.0,2200.02,0.0,0.0,52939.0,0,5,1,200.0,9,1.0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5340.756415579862,0.206598471062124,0.1008851020151469,52939.0,10,5,10,10_1,10_1,10_0_0 +3097,2,31.0,3,0.0,7,111,2,42,65,7.0,0.0,0.0,565.290501352736,0.0,937.7406292829081,43084.08,31,50,2,13934,201703097,,,,554.0,2.0,0.0,3.0,2.0,4.0,2.1,3147.2277895226052,0.0,420.0,530.0,0.0,48905.0,1,1,3,72.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1503.031130635644,0.03488599804465232,0.03073369043319996,23288.095238095237,6,3,6,6_0,6_3,6_0_0 +3098,2,32.0,1,0.0,99,111,2,0,37,9.0,0.0,0.0,691.8078992745388,0.0,0.0,16952.28,0,12,2,13935,201703098,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,2762.014856952115,0.0,514.0,0.0,0.0,34743.0,0,1,3,33.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,691.8078992745388,0.0408091359554313,0.01991215206730964,34743.0,9,5,9,9_0,9_3,9_0_0 +3099,2,34.0,3,0.0,1,112,2,46,37,7.0,0.0,346.98157989085996,1480.522741638118,0.0,2653.9829130648345,39425.06,50,30,1,13936,201703099,,,550.0,,2.0,0.0,4.0,1.0,3.0,1.8,714.4411373083445,0.0,1100.0,1500.0,0.0,47580.0,1,1,1,90.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4481.487234593813,0.11367103143517887,0.09418846646897464,26433.333333333332,7,4,7,7_1,7_0,7_1_0 +3100,2,54.0,3,0.0,6,111,1,0,52,6.0,0.0,0.0,328.4717579785689,0.0,612.1000824012061,18581.010000000002,0,41,2,13937,201703100,,,159.0,,1.0,1.0,4.0,0.0,1.0,1.0,1839.7549041834245,590.0,0.0,0.0,0.0,22149.0,0,1,2,80.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,940.571840379775,0.050620059963359096,0.042465657157423585,22149.0,6,3,6,6_0,6_2,6_0_0 +3101,2,65.0,2,0.0,5,300,2,0,78,5.0,2379.684013708323,0.0,644.7003574951442,233.5504963497054,0.0,24423.86,0,70,1,13938,201703101,,,400.0,,0.0,2.0,5.0,0.0,1.0,1.0,1804.5480477044882,0.0,479.0,0.0,0.0,20828.0,0,5,1,96.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3257.934867553173,0.1333914814264892,0.15642091739740602,20828.0,5,3,5,5_1,5_1,5_0_0 +3102,2,45.0,2,0.0,1,112,4,54,46,5.0,0.0,0.0,2664.9409349486127,0.0,0.0,33858.86,31,41,1,1394,201703102,,,540.0,,2.0,0.0,7.0,3.0,5.0,2.4,1726.3837886643398,0.0,1980.0,0.0,0.0,47440.0,4,1,2,175.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2664.9409349486127,0.07870734380745875,0.05617497754950701,19766.666666666668,5,3,5,5_1,5_1,5_1_0 +3103,2,45.0,3,0.0,9,112,4,46,56,6.0,0.0,0.0,3095.6384597887923,0.0,0.0,51578.95999999999,50,42,1,13940,201703103,,,,,2.0,0.0,6.0,2.0,4.0,2.3,1314.6658893015217,0.0,2300.0,0.0,0.0,48250.0,4,1,2,140.0,10,3.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3095.6384597887923,0.060017465644689086,0.0641583100474361,20978.26086956522,5,3,5,5_1,5_1,5_0_0 +3104,2,34.0,3,0.0,7,300,2,21,55,5.0,0.0,0.0,1615.1157181506744,106.15931652259337,0.0,33504.54,50,50,1,13942,201703104,,,480.0,,2.0,0.0,3.0,2.0,4.0,2.1,3367.2616826421727,0.0,1200.0,0.0,0.0,40725.0,1,1,3,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1721.2750346732678,0.05137438193967945,0.04226580809510787,19392.85714285714,5,3,5,5_1,5_0,5_0_0 +3105,2,67.0,1,0.0,1,111,2,75,75,10.0,0.0,0.0,1284.0169959297862,0.0,2473.5120749764255,54618.71754025391,30,33,1,13943,201703105,,,453.0,,1.0,2.0,6.0,1.0,3.0,2.0,3375.869145376922,0.0,954.0,1398.0,0.0,89617.0,5,5,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3757.529070906212,0.06879562977905732,0.0419287531484675,44808.5,10,5,10,10_1,10_4,10_1_0 +3106,2,62.0,1,0.0,9,111,2,0,75,6.0,0.0,0.0,511.45331074771354,0.0,0.0,13866.899999999998,0,71,2,13944,201703106,,,100.0,264.0,0.0,2.0,2.0,0.0,1.0,1.0,2860.558549631964,0.0,380.0,0.0,0.0,21640.0,0,5,3,47.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,511.45331074771354,0.03688303158944779,0.023634626189820405,21640.0,6,3,6,6_0,6_2,6_0_0 +3107,2,85.0,3,0.0,9,111,1,77,78,3.0,0.0,0.0,810.2497186055883,0.0,0.0,19523.52,50,71,2,13946,201703107,,,226.0,436.0,0.0,5.0,3.0,0.0,2.0,1.5,2082.7888043562525,0.0,602.0,0.0,0.0,21350.0,5,5,3,70.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,810.2497186055883,0.04150121077580213,0.037950806492065024,14233.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +3108,2,64.0,5,0.0,6,111,4,0,77,2.0,0.0,0.0,1211.3367886130059,0.0,0.0,16460.96,0,60,2,13948,201703108,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2139.3039668686424,0.0,900.0,0.0,0.0,11003.0,0,5,1,50.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1211.3367886130059,0.07358846559453433,0.11009150128265072,11003.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +3109,2,37.0,3,0.0,5,300,2,62,64,4.0,2379.684013708323,277.585263912688,1238.255383915517,0.0,0.0,40386.598645045975,42,50,1,13949,201703109,,,580.0,,2.0,0.0,6.0,3.0,5.0,2.4,2583.9945793556594,0.0,920.0,0.0,0.0,42571.0,1,1,2,172.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3895.524661536528,0.09645587378560717,0.09150653406160363,17737.916666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3110,2,66.0,3,0.0,1,111,1,0,54,10.0,0.0,0.0,672.964882562781,0.0,0.0,21293.8658467513,0,41,2,1395,201703110,,,,754.0,1.0,1.0,3.0,0.0,1.0,1.0,2347.488786048304,0.0,500.0,0.0,0.0,46614.0,0,1,3,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,672.964882562781,0.03160369692408163,0.014436969205877654,46614.0,10,5,10,10_0,10_4,10_1_0 +3111,2,42.0,3,0.0,1,111,2,56,38,6.0,0.0,0.0,3395.7807974117927,0.0,0.0,62107.719999999994,50,50,1,13951,201703111,,,420.0,,2.0,0.0,6.0,2.0,4.0,2.5,2186.6122337394963,0.0,2523.0,0.0,0.0,57951.0,1,1,1,240.0,5,4.0,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3395.7807974117927,0.054675663466824946,0.058597449524801865,23180.4,6,3,6,6_1,6_2,6_1_0 +3112,1,51.0,5,351.0,8,111,6,0,54,1.0,0.0,0.0,289.3748995019958,0.0,1910.8676974066807,14747.359999999999,0,43,1,13952,201703112,,,,,1.0,0.0,3.0,2.0,3.0,2.0,1648.4294003196098,0.0,215.0,1080.0,0.0,17797.0,0,1,3,90.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2200.2425969086767,0.14919569312125538,0.12362997116978573,8898.5,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +3113,2,55.0,2,0.0,4,111,6,0,37,8.0,0.0,0.0,55.18312037014804,0.0,0.0,47941.439999999995,0,30,2,13953,201703113,,,,560.0,1.0,0.0,2.0,0.0,1.0,1.0,2637.61356805889,0.0,41.0,0.0,0.0,29730.0,0,1,3,35.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,55.18312037014804,0.001151052625247553,0.0018561426293356219,29730.0,8,4,8,8_0,8_3,8_0_1 +3114,2,58.0,3,0.0,9,111,4,78,54,8.0,0.0,0.0,1244.7750277133407,0.0,814.7448249356187,37123.518762359316,50,50,2,13958,201703114,,,,,1.0,5.0,3.0,0.0,2.0,1.5,2491.924733983158,785.3281849371432,600.0,0.0,0.0,44888.0,5,1,1,62.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2059.5198526489594,0.055477495703806244,0.04588130129765103,29925.333333333332,8,4,8,8_0,8_3,8_0_0 +3115,2,51.0,3,0.0,3,111,1,0,47,4.0,0.0,0.0,651.430006320772,0.0,115.00592623280949,13587.300000000001,0,71,2,13959,201703115,65.0,65.0,,286.0,1.0,0.0,3.0,0.0,1.0,1.0,1464.0814079641445,0.0,484.0,65.0,0.0,18320.0,0,1,3,60.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,766.4359325535816,0.0564082586351653,0.041836022519300305,18320.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +3116,2,53.0,1,0.0,9,111,2,0,64,7.0,0.0,0.0,1301.5140828764183,176.9321942043223,0.0,21657.127533755658,0,50,1,1396,201703116,,,211.0,,1.0,3.0,6.0,0.0,1.0,1.0,2749.8087030190245,0.0,967.0,0.0,0.0,24595.0,0,1,2,86.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1478.4462770807406,0.06826603734850689,0.060111659974821735,24595.0,7,4,7,7_1,7_2,7_0_0 +3117,2,32.0,2,0.0,9,112,2,47,63,7.0,0.0,0.0,1697.2174338233335,0.0,0.0,54537.62000000001,30,50,1,13960,201703117,,,972.0,,2.0,0.0,5.0,2.0,4.0,2.1,2137.9699043946243,0.0,1261.0,0.0,0.0,51506.0,1,1,2,120.0,8,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1697.2174338233335,0.031120122840405086,0.032951839277430464,24526.666666666664,7,4,7,7_1,7_1,7_0_0 +3118,2,60.0,3,0.0,6,111,2,54,38,9.0,0.0,0.0,2446.255122314826,0.0,134.23570990816665,23298.358462464454,50,50,1,13962,201703118,,,302.0,,2.0,2.0,4.0,0.0,2.0,1.5,1513.5485890232799,129.38908378369834,1764.0,0.0,0.0,54920.0,1,1,1,80.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2580.490832222993,0.1107584826793859,0.04698635892612879,36613.333333333336,9,5,9,9_1,9_3,9_0_0 +3119,2,69.0,4,0.0,4,111,6,86,78,3.0,2953.9810890165986,0.0,847.935752029104,226.47320858153253,0.0,31203.521191295746,71,70,1,13963,201703119,,,228.0,,0.0,4.0,5.0,0.0,2.0,1.5,1674.0442816520451,0.0,630.0,0.0,0.0,20790.0,6,5,1,100.0,6,4.0,3,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4028.3900496272354,0.12910049557967704,0.19376575515282518,13860.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +3120,1,26.0,3,87.0,1,112,6,0,47,2.0,0.0,0.0,629.895130078763,0.0,0.0,28919.120000000006,0,31,2,13966,201703120,,,,133.0,1.0,0.0,2.0,0.0,1.0,1.0,4522.732597594864,0.0,468.0,0.0,0.0,11165.0,0,4,3,35.0,8,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,629.895130078763,0.021781268934834907,0.056416939550269864,11165.0,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +3121,2,66.0,2,0.0,1,300,4,71,71,4.0,0.0,0.0,3932.806773696892,175.16287226227908,0.0,32344.820000000003,50,50,1,13969,201703121,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1769.5084681974677,0.0,2922.0,0.0,0.0,25800.0,5,5,1,120.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4107.969645959171,0.12700548792539798,0.15922362968833997,17200.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3122,2,75.0,2,0.0,5,111,2,77,74,7.0,0.0,277.585263912688,1615.1157181506744,185.7788039145384,0.0,19813.52,50,50,1,1397,201703122,,,450.0,,0.0,2.0,5.0,0.0,2.0,1.5,3150.9790928275393,0.0,1200.0,0.0,0.0,40560.0,5,5,1,120.0,6,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2078.479785977901,0.10490209644615903,0.05124457066020466,27040.0,7,4,7,7_1,7_2,7_0_0 +3123,2,44.0,3,0.0,9,112,4,0,55,5.0,1189.8420068541616,0.0,201.8894647688343,0.0,0.0,88789.33087530162,0,41,1,13971,201703123,,,,,1.0,1.0,5.0,1.0,2.0,1.5,619.0149392705737,0.0,150.0,0.0,0.0,30310.0,0,1,3,135.0,9,2.0,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1391.731471622996,0.015674534968368948,0.04591657775067621,20206.666666666668,5,3,5,5_1,5_1,5_0_0 +3124,2,46.0,2,0.0,4,111,2,33,48,8.0,0.0,0.0,555.8689929968571,0.0,2031.18158946562,45314.58699878039,20,31,1,13972,201703124,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.3,2468.002551779604,0.0,413.0,1148.0,0.0,65371.0,1,1,1,114.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2587.050582462477,0.05709090060849734,0.039574896857359945,28422.17391304348,8,4,8,8_1,8_3,8_0_1 +3125,2,74.0,3,0.0,9,120,4,77,77,7.0,0.0,208.188947934516,2161.5632027916527,0.0,0.0,24363.1,70,70,1,13974,201703125,,,400.0,,0.0,2.0,5.0,0.0,2.0,1.5,2231.80779012707,0.0,1606.0,0.0,0.0,37611.0,5,5,1,160.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2369.7521507261686,0.09726808783472418,0.06300689029077049,25074.0,7,4,7,7_1,7_0,7_0_0 +3126,2,34.0,3,0.0,4,111,2,56,62,4.0,0.0,0.0,2126.569028898388,0.0,0.0,31740.539999999997,42,43,2,13977,201703126,,,260.0,566.0,2.0,0.0,5.0,2.0,4.0,2.1,1819.6745470053963,0.0,1580.0,0.0,0.0,37470.0,1,1,3,100.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2126.569028898388,0.0669985144833197,0.056753910565742936,17842.85714285714,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3127,2,44.0,2,0.0,99,111,4,56,63,8.0,0.0,0.0,1090.2031097517051,0.0,0.0,25035.018725051403,50,43,1,13978,201703127,,,561.0,,2.0,1.0,2.0,0.0,2.0,1.5,2209.2320798402493,0.0,810.0,0.0,0.0,45940.0,4,1,3,50.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1090.2031097517051,0.04354712579706555,0.023731021109092407,30626.666666666668,8,4,8,8_1,8_2,8_0_0 +3128,2,53.0,3,0.0,9,111,5,56,78,9.0,0.0,693.9631597817199,1398.421025965459,88.46609710216114,0.0,33002.46,50,50,1,13981,201703128,,,452.0,,1.0,6.0,5.0,0.0,2.0,1.5,2402.5615377830277,0.0,1039.0,0.0,0.0,45380.0,1,5,1,100.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2180.85028284934,0.06608144613611652,0.048057520556397976,30253.333333333332,8,4,8,8_1,8_2,8_0_0 +3129,2,72.0,3,0.0,2,120,2,0,74,8.0,0.0,0.0,3418.6616034189274,0.0,2707.062571326131,35973.07697444815,0,31,1,13982,201703129,,,385.0,,0.0,2.0,8.0,0.0,1.0,1.0,2325.5837630543615,0.0,2540.0,1530.0,0.0,31710.0,0,5,5,120.0,0,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,6125.724174745059,0.1702863555179389,0.1931795703167789,31710.0,8,4,8,8_1,8_1,8_0_1 +3130,2,72.0,3,0.0,1,111,2,0,77,5.0,0.0,0.0,652.7759360858976,0.0,1086.3636724145388,15071.82,0,71,2,13983,201703130,,,137.0,274.0,0.0,1.0,4.0,0.0,1.0,1.0,3197.1127978208783,0.0,485.0,614.0,0.0,18680.0,0,5,3,80.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1739.1396085004362,0.115390152516447,0.09310169210387774,18680.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +3131,1,24.0,3,56.0,7,111,4,0,63,5.0,0.0,0.0,538.3719060502248,0.0,0.0,18680.239999999998,0,31,2,13985,201703131,,,150.0,,1.0,0.0,2.0,0.0,1.0,1.0,5048.135831197456,0.0,400.0,0.0,0.0,21349.0,0,1,3,36.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,538.3719060502248,0.028820395565058308,0.02521766387419667,21349.0,6,3,6,6_0,6_3,6_0_0 +3132,2,69.0,2,0.0,1,111,2,74,75,9.0,0.0,0.0,1498.150141443853,0.0,3508.4146275449752,46863.10863563098,50,70,1,13986,201703132,,,248.0,,0.0,2.0,8.0,0.0,2.0,1.5,2357.54031944893,1209.0115988748773,613.0,1274.0,0.0,56124.0,5,5,1,180.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5006.564768988828,0.10683381693510265,0.08920541602503079,37416.0,9,5,9,9_1,9_4,9_1_0 +3133,2,71.0,3,0.0,7,112,2,0,75,5.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,11405.58,0,33,2,13987,201703133,,,400.0,420.0,0.0,1.0,2.0,0.0,1.0,1.0,2785.0835209745755,1100.0,0.0,0.0,0.0,21340.0,0,5,3,64.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1753.6085159622926,0.1537500518134363,0.08217471958586188,21340.0,6,3,6,6_0,6_2,6_0_0 +3134,1,42.0,3,43.0,7,111,2,0,46,9.0,0.0,0.0,1534.3599322431405,0.0,0.0,46625.63087530163,0,41,2,13988,201703134,,,,957.0,1.0,2.0,4.0,0.0,1.0,1.0,2463.194125106807,0.0,1140.0,0.0,0.0,30779.0,0,1,3,85.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1534.3599322431405,0.03290807874207052,0.04985087014663051,30779.0,8,4,8,8_0,8_4,8_0_0 +3135,2,51.0,4,0.0,1,211,5,55,53,6.0,0.0,0.0,1970.4411761438228,0.0,0.0,28662.539999999997,50,50,1,13989,201703135,,,540.0,,2.0,1.0,7.0,2.0,4.0,2.5,229.1991870536213,0.0,1464.0,0.0,0.0,57423.0,1,1,2,187.0,4,3.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1970.4411761438228,0.06874621635569712,0.034314493776776256,22969.2,6,3,6,6_1,6_1,6_1_0 +3136,2,52.0,4,0.0,1,111,2,0,85,3.0,0.0,0.0,888.3136449828709,0.0,3152.9317007210234,17778.461349499146,0,30,1,13990,201703136,,,460.0,,1.0,1.0,3.0,2.0,3.0,2.0,3856.522474291113,0.0,660.0,1782.0,0.0,27088.0,0,7,1,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4041.245345703894,0.22731131036926003,0.14918950626491045,13544.0,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +3137,2,75.0,4,0.0,1,111,2,0,74,7.0,0.0,0.0,740.261370819059,0.0,2653.9829130648345,30107.76,0,20,2,13991,201703137,,,,550.0,0.0,0.0,3.0,0.0,1.0,1.0,3386.277840085516,0.0,550.0,1500.0,0.0,25793.0,0,5,3,60.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3394.2442838838933,0.11273652652618107,0.13159556018624796,25793.0,7,4,7,7_0,7_3,7_1_0 +3138,1,49.0,4,395.0,99,221,4,0,81,1.0,0.0,0.0,1076.7438121004495,0.0,0.0,10877.910875301628,0,71,2,13993,201703138,,,,,2.0,1.0,5.0,3.0,4.0,2.3,515.2756369875959,0.0,800.0,0.0,0.0,18160.0,0,4,3,77.0,1,3.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1076.7438121004495,0.09898443041532945,0.05929206013768995,7895.652173913044,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +3139,0,45.0,4,0.0,3,221,2,0,52,2.0,2887.3499366327655,0.0,323.0231436301349,0.0,0.0,11093.960000000001,0,71,1,13994,201703139,,,208.0,,1.0,0.0,5.0,0.0,1.0,1.0,3020.9323078754246,0.0,240.0,0.0,0.0,13604.0,0,1,5,220.0,1,1.0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3210.3730802629007,0.28938026460009775,0.23598743606754635,13604.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +3140,2,79.0,1,0.0,4,111,1,86,75,3.0,0.0,0.0,767.1799661215703,0.0,0.0,79349.11344410585,71,60,2,13995,201703140,,,,,0.0,3.0,4.0,0.0,2.0,1.5,3837.9248165152535,0.0,570.0,0.0,0.0,23397.0,6,5,1,91.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,767.1799661215703,0.009668412573531498,0.03278967244183315,15598.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +3141,2,58.0,3,0.0,9,120,2,0,75,3.0,1427.810408224994,0.0,1911.220266478298,53.079658261296686,0.0,34652.9658467513,0,50,1,13997,201703141,,,,,0.0,1.0,7.0,0.0,1.0,1.0,2415.4140202273397,0.0,1420.0,0.0,0.0,16285.0,0,5,1,229.0,0,0.0,1,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3392.1103329645885,0.0978880234368914,0.20829661240187833,16285.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3142,2,62.0,1,0.0,6,111,4,37,74,10.0,0.0,0.0,4306.975248401798,0.0,0.0,60840.18,31,31,1,13998,201703142,,,380.0,,1.0,2.0,5.0,0.0,2.0,1.5,2854.9569537356356,0.0,3200.0,0.0,0.0,71414.0,1,5,1,130.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4306.975248401798,0.07079162567240593,0.060309956708793765,47609.333333333336,10,5,10,10_1,10_3,10_0_0 +3143,2,63.0,3,0.0,5,111,2,0,75,6.0,1515.0654887276326,0.0,703.9212671606689,0.0,0.0,20072.230875301633,0,33,1,13999,201703143,,,341.0,,0.0,1.0,5.0,0.0,1.0,1.0,2376.509342278132,0.0,523.0,0.0,0.0,21188.0,0,5,3,94.0,7,5.0,1,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2218.9867558883016,0.1105500813374316,0.10472846686276674,21188.0,5,3,5,5_1,5_2,5_0_0 +3144,2,40.0,1,0.0,3,111,4,0,47,8.0,0.0,0.0,1938.1388617808093,106.15931652259337,0.0,16243.400000000001,0,60,1,14,201703144,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2035.2929129067068,0.0,1440.0,0.0,0.0,30236.0,0,1,2,80.0,6,4.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2044.2981783034027,0.12585408093769793,0.06761139629261155,30236.0,8,4,8,8_1,8_2,8_0_1 +3145,2,70.0,3,0.0,1,120,2,0,78,5.0,475.9368027416647,117.97373716289239,681.0404611535344,102.62067263850693,0.0,11615.240000000002,0,71,1,1400,201703145,,,80.0,,0.0,2.0,4.0,0.0,1.0,1.0,1709.5647440453595,0.0,506.0,0.0,0.0,18309.0,0,5,1,81.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1377.5716736965983,0.1186003624287228,0.07524013729294873,18309.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3146,2,73.0,2,0.0,4,120,2,77,75,6.0,0.0,0.0,763.1421768261936,92.0047409862476,0.0,15571.599999999999,50,33,1,14001,201703146,,,165.0,,0.0,1.0,3.0,0.0,2.0,1.5,1738.7895448512222,0.0,567.0,0.0,0.0,34111.0,5,5,1,60.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,855.1469178124412,0.054917087377818675,0.0250695352763754,22740.666666666668,6,3,6,6_1,6_1,6_0_1 +3147,1,23.0,3,230.0,5,111,1,55,55,6.0,0.0,0.0,672.964882562781,0.0,0.0,26793.600000000002,43,31,8,14002,201703147,,,,220.0,2.0,0.0,2.0,0.0,2.0,1.5,3427.9763555680893,0.0,500.0,0.0,0.0,33790.0,1,1,3,52.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,672.964882562781,0.0251166279470762,0.019916095962201272,22526.666666666668,6,3,6,6_0,6_2,6_0_0 +3148,2,50.0,3,0.0,6,111,2,0,37,9.0,0.0,0.0,1036.3659191466827,0.0,2229.345646974461,66342.0,0,20,2,14003,201703148,,,,980.0,1.0,0.0,4.0,3.0,4.0,2.3,751.9149386680634,0.0,770.0,1260.0,0.0,91876.0,0,1,3,96.0,9,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3265.7115661211437,0.04922540119563992,0.03554477302147616,39946.08695652174,9,5,9,9_0,9_3,9_0_0 +3149,1,31.0,3,220.0,1,221,2,0,53,7.0,0.0,0.0,662.1974444417765,0.0,1507.462294620826,19252.743984316323,0,71,2,14005,201703149,,,234.0,,1.0,0.0,3.0,1.0,3.0,2.0,4363.491778087308,0.0,492.0,852.0,0.0,48160.0,0,4,3,95.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,2169.6597390626025,0.11269353297535413,0.04505107431608394,24080.0,7,4,7,7_0,7_1,7_1_0 +3150,1,34.0,4,184.0,4,111,2,84,47,2.0,0.0,0.0,868.5015973670635,0.0,1618.4341161794603,21320.020000000004,31,42,2,14006,201703150,,,,336.0,1.0,0.0,3.0,1.0,3.0,1.8,3696.0316095056105,1560.0,0.0,0.0,0.0,21267.0,3,4,4,76.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2486.935713546524,0.11664790715705348,0.11693871789845883,11815.0,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +3151,2,55.0,1,0.0,1,111,2,22,47,9.0,0.0,0.0,758.3421646991741,0.0,1184.1718092862263,23297.548223170314,50,31,1,14007,201703151,,,360.0,,2.0,2.0,3.0,0.0,2.0,1.5,1598.7744810254337,450.7136943118662,377.0,405.0,0.0,46584.0,1,1,1,90.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1942.5139739854003,0.08337847207688125,0.04169916653755367,31056.0,8,4,8,8_1,8_2,8_1_0 +3152,2,72.0,1,0.0,1,111,2,0,75,9.0,0.0,0.0,403.7789295376686,0.0,1723.319571550099,30589.860315994112,0,50,2,14009,201703152,,,220.0,,0.0,3.0,4.0,0.0,1.0,1.0,2274.7746099779924,0.0,300.0,974.0,0.0,34483.0,0,5,1,100.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2127.0985010877675,0.06953606453624765,0.06168542473357212,34483.0,9,5,9,9_0,9_3,9_1_0 +3153,2,63.0,3,0.0,7,300,2,77,75,3.0,0.0,0.0,1413.22625338184,53.079658261296686,0.0,22688.98,71,42,1,1401,201703153,,,,,0.0,0.0,4.0,0.0,2.0,1.5,1954.9716215360647,0.0,1050.0,0.0,0.0,22378.0,5,5,1,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1466.3059116431368,0.06462634775310026,0.06552443970163271,14918.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3154,2,68.0,3,0.0,5,111,2,75,75,7.0,0.0,0.0,1615.1157181506744,0.0,2530.1303771218086,31722.28,50,71,1,14011,201703154,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1222.355798212643,0.0,1200.0,1430.0,0.0,41250.0,5,5,1,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4145.246095272483,0.13067301894039404,0.10049081443084808,27500.0,8,4,8,8_1,8_2,8_0_0 +3155,2,66.0,3,0.0,2,112,4,52,64,5.0,47.435034673252574,0.0,1426.6855510330956,77.85016544990181,0.0,26629.833948896292,60,70,1,14012,201703155,,,610.0,,2.0,2.0,5.0,0.0,2.0,1.5,1558.8915493261177,0.0,1060.0,0.0,0.0,30336.0,4,5,3,120.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1551.9707511562501,0.0582794002446483,0.05115937338990803,20224.0,5,3,5,5_1,5_0,5_0_1 +3156,1,47.0,2,186.0,9,111,1,0,45,4.0,0.0,0.0,148.0522741638118,0.0,0.0,41471.939999999995,0,30,2,14013,201703156,,,,,1.0,0.0,4.0,3.0,4.0,2.3,698.7093222393687,0.0,110.0,0.0,0.0,40336.0,0,1,1,78.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,148.0522741638118,0.003569938473189627,0.003670474865227385,17537.391304347828,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +3157,1,42.0,3,121.0,9,111,4,0,55,3.0,0.0,0.0,1695.871504058208,0.0,0.0,19872.02,0,42,2,14014,201703157,,,,185.0,1.0,0.0,2.0,0.0,1.0,1.0,2634.211692131291,0.0,1260.0,0.0,0.0,13936.0,0,1,3,40.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1695.871504058208,0.08533966371099708,0.12168997589395868,13936.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3158,2,65.0,3,0.0,1,112,2,72,78,4.0,0.0,0.0,740.261370819059,0.0,2645.136303354618,12346.836974448146,70,50,1,14015,201703158,,,230.0,,0.0,5.0,4.0,0.0,2.0,1.5,1928.5509934738257,0.0,550.0,1495.0,0.0,25520.0,5,5,1,80.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3385.397674173677,0.27419149383601465,0.13265664867451712,17013.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3159,2,56.0,1,0.0,7,111,2,54,46,9.0,0.0,0.0,1873.5342330547821,0.0,2618.59647422397,53538.22,60,42,1,14017,201703159,,,739.0,,2.0,2.0,6.0,0.0,2.0,1.5,1659.2349433030738,0.0,1392.0,1480.0,0.0,57035.0,1,1,1,156.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4492.130707278752,0.08390511875962167,0.078760948667989,38023.333333333336,9,5,9,9_1,9_4,9_0_0 +3160,2,80.0,3,0.0,4,112,4,0,77,3.0,0.0,0.0,2239.627129168935,53.079658261296686,0.0,15016.320315994115,0,71,1,14018,201703160,,,276.0,,0.0,4.0,5.0,0.0,1.0,1.0,2126.591801336852,0.0,1664.0,0.0,0.0,13750.0,0,5,1,91.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2292.7067874302315,0.15268099901866333,0.16674231181310775,13750.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +3161,2,72.0,3,0.0,9,211,4,77,75,6.0,0.0,0.0,1445.5285677448535,175.16287226227908,0.0,22789.76,70,50,1,1402,201703161,,,256.0,,0.0,1.0,3.0,0.0,2.0,1.5,2514.4766150556266,0.0,1074.0,0.0,0.0,32590.0,5,5,1,100.0,1,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1620.6914400071325,0.07111489721730868,0.04972971586398075,21726.666666666668,6,3,6,6_1,6_1,6_0_0 +3162,2,53.0,2,0.0,8,112,4,0,62,5.0,0.0,0.0,672.964882562781,141.54575536345783,0.0,21136.94,0,50,1,14020,201703162,,,,320.0,1.0,0.0,1.0,0.0,1.0,1.0,3183.0049862151964,0.0,500.0,0.0,0.0,18976.0,0,1,3,40.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,814.5106379262388,0.03853493636856796,0.04292319972208257,18976.0,5,3,5,5_1,5_2,5_0_0 +3163,2,59.0,3,0.0,6,111,6,75,21,9.0,0.0,0.0,2121.1853098378856,0.0,1769.3219420432229,131372.7919508216,33,12,1,14021,201703163,,,1000.0,,1.0,3.0,6.0,1.0,3.0,2.0,1749.0935979254675,0.0,1576.0,1000.0,0.0,68612.0,5,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3890.5072518811085,0.029614254170205124,0.056703014806172514,34306.0,9,5,9,9_1,9_4,9_0_0 +3164,2,55.0,3,0.0,1,112,2,56,47,3.0,0.0,0.0,1345.929765125562,191.08676974066807,0.0,16778.2516935026,60,50,1,14022,201703164,,,1000.0,,2.0,3.0,5.0,0.0,2.0,1.5,1712.1525878562752,0.0,1000.0,0.0,0.0,21244.0,1,1,1,100.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1537.0165348662301,0.09160766943682469,0.07235061828592686,14162.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +3165,2,39.0,3,0.0,4,112,2,42,34,8.0,0.0,346.98157989085996,862.9342794352235,0.0,1608.0595385116433,68475.88,30,30,1,14023,201703165,,,530.0,,2.0,0.0,5.0,3.0,5.0,2.4,1927.9967773082724,1550.0,0.0,0.0,0.0,64653.0,1,1,2,140.0,9,2.0,4,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2817.9753978377266,0.04115281757368765,0.04358615064788528,26938.75,7,4,7,7_1,7_1,7_0_1 +3166,2,44.0,3,0.0,9,400,4,56,47,8.0,0.0,0.0,2409.214279574756,185.7788039145384,0.0,51128.159999999996,71,43,1,14024,201703166,,,430.0,,2.0,0.0,5.0,0.0,2.0,1.5,1674.8728682117335,0.0,1790.0,0.0,0.0,40753.0,1,1,2,140.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2594.9930834892943,0.05075467381359498,0.06367612405195432,27168.666666666668,7,4,7,7_1,7_0,7_0_0 +3167,2,73.0,3,0.0,4,111,2,77,78,2.0,0.0,0.0,632.5869896090142,0.0,1013.8214727907667,22075.4,60,71,1,14025,201703167,,,152.0,,0.0,1.0,5.0,0.0,2.0,1.5,1737.6786806578016,0.0,470.0,573.0,0.0,17523.0,5,5,1,76.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1646.408462399781,0.07458113838932844,0.09395699722648981,11682.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +3168,2,44.0,2,0.0,9,112,5,55,54,6.0,0.0,999.3069500856767,1615.1157181506744,0.0,0.0,64663.31344410586,31,31,1,14026,201703168,,,657.0,,2.0,0.0,6.0,2.0,4.0,2.5,2219.365231608072,0.0,1200.0,0.0,0.0,52863.0,1,1,2,120.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2614.422668236351,0.04043131304269189,0.04945657015750811,21145.2,5,3,5,5_1,5_0,5_0_0 +3169,2,86.0,3,0.0,5,112,2,0,77,8.0,2747.741807828544,0.0,407.8167188330453,159.23897478389006,0.0,14459.4,0,70,1,14027,201703169,,,469.0,,0.0,2.0,4.0,0.0,1.0,1.0,3306.8196276353697,0.0,303.0,0.0,0.0,28979.0,0,5,5,90.0,7,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3314.7975014454796,0.22924862037466837,0.11438619350030986,28979.0,8,4,8,8_1,8_0,8_0_0 +3170,2,82.0,1,0.0,5,111,2,86,86,8.0,0.0,0.0,1420.3695139959045,0.0,2453.193058029344,31283.402316395463,33,31,1,1403,201703170,,,320.0,,0.0,3.0,5.0,0.0,2.0,1.5,1697.59964454455,672.8232356752314,777.0,992.0,0.0,43586.0,5,5,1,130.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3873.5625720252483,0.1238216525443313,0.088871715046695,29057.333333333332,8,4,8,8_1,8_4,8_0_0 +3171,2,85.0,2,0.0,5,400,2,0,71,5.0,0.0,138.792631956344,874.8543473316153,265.39829130648343,0.0,10925.36,0,70,1,14031,201703171,,,70.0,,0.0,3.0,6.0,0.0,1.0,1.0,2670.270036271699,0.0,650.0,0.0,0.0,18409.0,0,5,1,140.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1279.0452705944426,0.117071224252056,0.06947934546115718,18409.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3172,2,40.0,1,0.0,9,111,2,0,23,10.0,0.0,0.0,699.4379751130356,0.0,0.0,104922.10300793945,0,44,1,14032,201703172,,,,,1.0,2.0,5.0,0.0,1.0,1.0,1040.322038874346,0.0,519.669,0.0,0.0,82397.0,0,1,2,170.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,699.4379751130356,0.006666259587458985,0.008488633992900658,82397.0,10,5,10,10_1,10_3,10_0_0 +3173,2,47.0,3,0.0,1,111,2,0,43,3.0,0.0,0.0,839.8601734383507,0.0,2611.519186455797,23617.97087530163,0,33,1,14033,201703173,,,,,2.0,1.0,4.0,2.0,3.0,1.8,725.0715955318626,0.0,624.0,1476.0,0.0,28653.0,0,1,2,116.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3451.3793598941475,0.14613361063559482,0.12045438034042326,15918.333333333332,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +3174,2,68.0,2,0.0,5,111,2,0,77,6.0,2379.684013708323,0.0,497.99401309645793,141.54575536345783,0.0,13248.320315994117,0,50,1,14034,201703174,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3076.8531279088625,0.0,370.0,0.0,0.0,24094.0,0,5,1,100.0,4,3.0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3019.223782168239,0.22789483573425245,0.12531019266905616,24094.0,7,4,7,7_1,7_1,7_0_0 +3175,2,66.0,1,0.0,4,111,4,0,37,10.0,0.0,416.377895869032,3380.9755699954117,0.0,0.0,51553.76206659738,31,12,1,14036,201703175,,,260.0,,1.0,3.0,6.0,0.0,2.0,1.5,4241.379801445682,0.0,2512.0,0.0,0.0,125696.0,8,5,1,220.0,8,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3797.3534658644435,0.0736581252976069,0.03021061502247043,83797.33333333333,10,5,10,10_1,10_3,10_0_1 +3176,2,57.0,3,0.0,6,112,2,0,45,8.0,0.0,0.0,1347.5354802102513,0.0,2607.317780943461,22042.836208839955,0,42,1,14037,201703176,,,402.0,,1.0,0.0,5.0,0.0,1.0,1.0,1548.2283823672228,957.8184304143615,605.0,912.0,0.0,31187.0,0,1,1,110.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3954.853261153712,0.17941671496736325,0.12681095524268804,31187.0,8,4,8,8_1,8_2,8_0_0 +3177,0,66.0,2,0.0,2,211,4,0,77,4.0,0.0,0.0,1284.0169959297862,169.8549064361494,0.0,12586.42,0,70,1,14039,201703177,,,70.0,,0.0,0.0,4.0,0.0,1.0,1.0,2135.8682206067897,0.0,954.0,0.0,0.0,17316.0,0,5,5,80.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1453.8719023659355,0.11551115427309239,0.0839611863228191,17316.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +3178,2,54.0,3,0.0,9,112,5,46,37,10.0,0.0,416.377895869032,2436.132874877267,0.0,0.0,63348.588015878886,31,31,1,1404,201703178,,,800.0,,2.0,1.0,6.0,2.0,4.0,2.3,1653.410398779923,0.0,1810.0,0.0,0.0,91533.0,1,1,2,148.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2852.510770746299,0.04502879795886361,0.03116374171879321,39796.956521739135,9,5,9,9_1,9_0,9_0_0 +3179,2,24.0,3,0.0,9,300,5,54,52,6.0,0.0,319.2230534995912,718.7264945770501,61.9262679715128,0.0,24680.32,31,44,1,14042,201703179,,,,366.0,2.0,0.0,3.0,0.0,2.0,1.5,3269.990666012534,0.0,534.0,0.0,0.0,33007.0,1,1,3,63.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1099.875816048154,0.04456489283964528,0.03332250177381022,22004.666666666668,6,3,6,6_1,6_0,6_0_0 +3180,1,66.0,4,360.0,6,111,4,78,78,2.0,0.0,0.0,1817.0051829195086,0.0,0.0,10528.280000000002,71,71,2,14044,201703180,,,,144.0,0.0,2.0,4.0,0.0,2.0,1.5,2852.128433341499,0.0,1350.0,0.0,0.0,17194.0,5,5,3,92.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1817.0051829195086,0.17258328833574982,0.10567670018143006,11462.666666666666,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3181,1,45.0,3,381.0,6,211,4,22,85,1.0,380.74944219333173,0.0,3010.9004329841173,84.9274532180747,268.4714198163333,39613.13342372239,31,42,1,14047,201703181,,,994.0,283.0,1.0,0.0,5.0,2.0,4.0,2.5,2620.276314643578,258.7781675673967,2130.0,0.0,0.0,16273.0,1,8,3,117.0,1,2.0,4,2,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,3745.048748211857,0.09454058350176177,0.23013880342972143,6509.2,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +3182,2,50.0,3,0.0,8,112,5,62,62,3.0,0.0,138.792631956344,942.1508355878933,0.0,0.0,37128.99999999999,50,31,1,14049,201703182,,,,,2.0,2.0,6.0,2.0,4.0,2.5,3195.044791928449,0.0,700.0,0.0,0.0,39211.0,1,1,2,180.0,9,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1080.9434675442374,0.029113185583889617,0.027567352721028216,15684.4,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +3183,2,37.0,3,0.0,1,111,1,0,38,9.0,0.0,0.0,345.9577868278745,0.0,1677.3172010569754,54767.8,0,12,1,1405,201703183,,,418.0,,1.0,2.0,5.0,1.0,2.0,1.5,2838.948664998872,0.0,257.04,948.0,0.0,54210.0,0,1,1,120.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2023.27498788485,0.03694278367735877,0.03732291067856207,36140.0,9,5,9,9_1,9_3,9_1_0 +3184,2,70.0,3,0.0,9,111,2,77,75,7.0,0.0,0.0,524.9126083989692,0.0,1415.4575536345783,17550.67202733072,60,50,1,14050,201703184,,,,,0.0,4.0,4.0,0.0,2.0,1.5,3143.175162591314,0.0,390.0,800.0,0.0,38160.0,5,5,1,100.0,7,6.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1940.3701620335473,0.11055816888446854,0.050848274686413716,25440.0,7,4,7,7_1,7_2,7_0_0 +3185,1,29.0,4,353.0,1,111,2,0,62,3.0,0.0,0.0,581.4416585342427,0.0,516.6420070766211,19153.120000000003,0,41,2,14051,201703185,,,310.0,57.0,2.0,1.0,4.0,2.0,3.0,2.0,1216.0103052327895,0.0,432.0,292.0,0.0,30577.0,0,1,3,71.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1098.0836656108638,0.05733184283348424,0.03591207985122359,15288.5,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +3186,2,85.0,3,0.0,1,221,6,0,78,3.0,951.8736054833294,0.0,403.7789295376686,159.23897478389006,0.0,5444.6,0,71,1,14052,201703186,,,120.0,,0.0,3.0,5.0,0.0,1.0,1.0,3138.4204386748033,0.0,300.0,0.0,0.0,14345.0,0,5,1,80.0,1,3.0,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1514.8915098048878,0.2782374297110693,0.10560414847019085,14345.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +3187,2,40.0,3,0.0,2,111,1,0,52,4.0,0.0,0.0,148.0522741638118,0.0,530.7965826129669,19931.7,0,41,2,14054,201703187,300.0,300.0,200.0,320.0,1.0,0.0,2.0,0.0,1.0,1.0,3763.8191706929356,0.0,110.0,300.0,0.0,18040.0,0,1,3,48.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,678.8488567767787,0.0340587534819799,0.037630202703812565,18040.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3188,2,60.0,1,0.0,7,112,2,42,42,8.0,0.0,0.0,1456.296005865858,4536.5414593988235,0.0,49891.34000000001,31,41,1,14056,201703188,,,486.0,,2.0,2.0,7.0,2.0,4.0,2.3,1529.361812289187,0.0,1082.0,0.0,0.0,68901.0,1,1,1,120.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5992.837465264682,0.1201177892849677,0.08697751070760484,29956.956521739132,8,4,8,8_1,8_0,8_0_0 +3189,2,48.0,2,0.0,1,111,2,0,63,4.0,0.0,0.0,1401.9434036222935,0.0,3273.727477878821,20647.89787408202,0,50,2,14057,201703189,,,,206.0,1.0,0.0,3.0,0.0,1.0,1.0,2846.076579293981,1763.8894148416923,312.0,816.0,0.0,18050.0,0,1,3,60.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,4675.670881501114,0.22644779192608191,0.2590399380333027,18050.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +3190,2,53.0,3,0.0,7,300,5,55,67,5.0,0.0,860.5143181293328,646.0462872602698,371.5576078290768,0.0,96606.84175060327,50,50,1,14058,201703190,,,396.0,,4.0,2.0,5.0,2.0,5.0,2.8,1774.3227570708113,0.0,480.0,0.0,0.0,53069.0,1,1,1,114.0,0,0.0,5,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1878.1182132186796,0.0194408406194166,0.035390118774023996,18953.214285714286,5,3,5,5_1,5_0,5_0_0 +3191,2,28.0,1,0.0,5,111,4,84,48,8.0,0.0,0.0,67.2964882562781,0.0,0.0,60300.8498356326,31,31,1,14059,201703191,,,360.0,320.0,1.0,0.0,5.0,0.0,2.0,1.5,3204.474986225781,0.0,50.0,0.0,0.0,49110.0,3,1,3,90.0,8,6.0,3,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,67.2964882562781,0.0011160122691423774,0.0013703214876049296,32740.0,9,5,9,9_1,9_2,9_0_0 +3192,2,63.0,2,0.0,1,400,2,75,74,9.0,0.0,0.0,174.97086946632305,0.0,0.0,37265.08000000001,31,31,1,1406,201703192,,,380.0,,0.0,2.0,6.0,0.0,2.0,1.5,1601.589271992214,0.0,130.0,0.0,0.0,50188.0,6,5,1,150.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,174.97086946632305,0.004695303739219747,0.0034863088679828453,33458.666666666664,9,5,9,9_1,9_1,9_1_0 +3193,2,54.0,2,0.0,7,211,5,63,65,8.0,0.0,582.9290542166448,1884.3016711757866,0.0,0.0,52954.658839019714,50,71,1,14060,201703193,,,186.0,,3.0,0.0,4.0,1.0,3.0,2.0,2507.574971652161,0.0,1400.0,0.0,0.0,54751.0,1,1,1,116.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2467.2307253924314,0.0465913817496724,0.045062751829052096,27375.5,8,4,8,8_1,8_2,8_0_0 +3194,1,29.0,4,58.0,99,111,2,0,55,3.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,20209.5458467513,0,43,2,14061,201703194,,,,247.0,1.0,0.0,2.0,0.0,1.0,1.0,3529.9128362975584,960.0,0.0,0.0,0.0,13687.0,0,1,3,56.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1530.4219775670917,0.07572767785937694,0.11181573592219564,13687.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +3195,2,30.0,2,0.0,9,300,4,52,47,7.0,0.0,0.0,1157.4995980079832,42.46372660903735,0.0,24214.781349499142,41,43,1,14062,201703195,,,356.0,,2.0,0.0,4.0,0.0,2.0,1.5,2475.540084845863,0.0,860.0,0.0,0.0,34653.0,1,1,2,98.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1199.9633246170206,0.04955499317947963,0.03462797808608261,23102.0,6,3,6,6_1,6_0,6_0_0 +3196,2,49.0,3,0.0,8,300,4,0,62,5.0,0.0,0.0,1749.7086946632305,53.079658261296686,0.0,11334.750875301628,0,50,1,14064,201703196,,,200.0,,1.0,0.0,5.0,1.0,2.0,1.5,2319.5868133309214,0.0,1300.0,0.0,0.0,28230.0,0,1,2,98.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1802.7883529245273,0.1590496670599788,0.06386072805258687,18820.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3197,1,66.0,3,190.0,5,111,2,0,75,3.0,0.0,0.0,520.5442266270542,0.0,970.0230119408945,8054.72,0,44,2,14065,201703197,,,,142.0,0.0,0.0,1.0,0.0,1.0,1.0,4221.519331362319,935.0,0.0,0.0,0.0,14020.0,0,5,3,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1490.5672385679486,0.1850551277472027,0.10631720674521744,14020.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3198,2,45.0,3,0.0,8,112,2,56,37,10.0,0.0,0.0,1170.9588956592388,0.0,1312.8368809960714,73076.04,50,31,1,14066,201703198,,,432.0,,2.0,1.0,7.0,1.0,3.0,2.0,2226.1647374097493,0.0,870.0,742.0,0.0,80330.0,1,1,2,110.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2483.79577665531,0.03398919504471384,0.030919902609925432,40165.0,9,5,9,9_1,9_2,9_0_0 +3199,2,43.0,1,0.0,7,111,2,0,23,10.0,0.0,0.0,417.2382271889242,0.0,884.6609710216114,47093.219999999994,0,20,2,14067,201703199,,,,616.0,1.0,0.0,4.0,0.0,1.0,1.0,6486.636739404945,0.0,310.0,500.0,0.0,49126.0,0,1,3,85.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1301.8991982105356,0.027645151429665157,0.02650122538392166,49126.0,10,5,10,10_0,10_4,10_0_0 +3200,2,75.0,3,0.0,1,111,4,75,74,7.0,0.0,0.0,1763.1679923144861,0.0,0.0,27577.26,50,41,2,14069,201703200,,,,523.0,0.0,1.0,3.0,0.0,2.0,1.5,3842.3976367946,0.0,1310.0,0.0,0.0,35628.0,5,5,3,50.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1763.1679923144861,0.06393557562696534,0.04948826743893808,23752.0,6,3,6,6_0,6_4,6_1_0 +3201,2,69.0,3,0.0,5,111,4,74,77,8.0,0.0,0.0,1345.929765125562,95.54338487033404,0.0,26710.6658467513,30,42,1,1407,201703201,,,500.0,,0.0,2.0,5.0,0.0,2.0,1.5,1577.9494164683215,0.0,1000.0,0.0,0.0,43762.0,5,5,1,110.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1441.473149995896,0.05396620055322267,0.03293892303815858,29174.666666666668,8,4,8,8_1,8_2,8_0_0 +3202,2,54.0,3,0.0,7,111,2,53,54,9.0,0.0,0.0,1063.284514449194,0.0,0.0,39976.973948896295,70,42,2,14070,201703202,,,,,2.0,1.0,3.0,0.0,2.0,1.5,3229.7666048195724,0.0,790.0,0.0,0.0,56186.0,1,1,2,66.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1063.284514449194,0.026597423702164672,0.018924367537272523,37457.333333333336,9,5,9,9_0,9_3,9_0_0 +3203,2,36.0,2,0.0,2,112,4,22,21,6.0,0.0,416.377895869032,1547.8192298943961,176.9321942043223,0.0,44931.28,30,31,1,14071,201703203,,,280.0,,2.0,0.0,7.0,1.0,3.0,1.8,789.9692535180349,0.0,1150.0,0.0,0.0,39499.0,1,1,2,140.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2141.1293199677502,0.047653423627543004,0.054207177902421584,21943.888888888887,6,3,6,6_1,6_0,6_0_1 +3204,2,83.0,2,0.0,6,111,4,75,74,9.0,0.0,0.0,2631.2926908204736,0.0,0.0,26613.036974448154,31,60,1,14073,201703204,,,287.0,,0.0,3.0,6.0,0.0,2.0,1.5,2240.386170030627,0.0,1955.0,0.0,0.0,48226.0,5,5,1,158.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2631.2926908204736,0.09887231935787125,0.054561703040278554,32150.666666666668,9,5,9,9_1,9_3,9_0_0 +3205,2,65.0,2,0.0,5,111,2,0,77,6.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,15250.612027330719,0,50,1,14076,201703205,,,138.0,,0.0,1.0,5.0,0.0,1.0,1.0,1664.5155365797143,1500.0,0.0,0.0,0.0,22822.0,0,5,5,88.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2391.2843399485805,0.1567992376740779,0.10477978879802737,22822.0,6,3,6,6_1,6_2,6_0_0 +3206,2,68.0,2,0.0,8,120,4,72,77,8.0,0.0,0.0,2526.3101691406796,0.0,0.0,49902.54,44,41,1,14077,201703206,,,500.0,,0.0,1.0,4.0,0.0,2.0,1.5,1303.8070156663555,0.0,1877.0,0.0,0.0,43618.0,5,5,1,145.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2526.3101691406796,0.05062488140164167,0.0579189822811839,29078.666666666668,8,4,8,8_1,8_1,8_0_0 +3207,2,75.0,2,0.0,6,111,2,75,74,8.0,0.0,0.0,651.430006320772,0.0,1291.6050176915528,38557.98031599412,44,31,1,14078,201703207,,,404.0,,0.0,3.0,5.0,0.0,2.0,1.5,1398.7336643305825,0.0,484.0,730.0,0.0,42932.0,5,5,1,110.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1943.0350240123248,0.050392551894279075,0.04525843249819074,28621.333333333332,8,4,8,8_1,8_3,8_0_0 +3208,1,49.0,3,323.0,3,221,1,0,22,1.0,0.0,0.0,646.0462872602698,0.0,0.0,10273.939999999999,0,50,2,14079,201703208,,,420.0,,1.0,0.0,3.0,1.0,2.0,1.5,1130.075177662349,0.0,480.0,0.0,0.0,12786.0,0,4,3,59.0,1,3.0,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,646.0462872602698,0.06288203817233406,0.05052763078838337,8524.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +3209,1,65.0,4,107.0,99,112,1,0,78,2.0,0.0,0.0,379.55219376540845,212.31863304518674,0.0,10317.279999999999,0,50,2,1408,201703209,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2043.1927517040153,0.0,282.0,0.0,0.0,11354.0,0,5,3,54.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,591.8708268105952,0.057366944273160685,0.05212883801396822,11354.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +3210,2,87.0,2,0.0,2,112,2,77,78,4.0,4822.826267782202,0.0,767.1799661215703,251.0667835759333,0.0,34609.20251118856,70,70,1,14080,201703210,,,280.0,,0.0,2.0,4.0,0.0,2.0,1.5,1922.101417996543,0.0,570.0,0.0,0.0,27336.0,5,5,1,105.0,10,2.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5841.073017479705,0.16877225112573419,0.213676946791034,18224.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +3211,1,50.0,4,318.0,9,300,5,0,56,1.0,0.0,69.396315978172,1103.6624074029608,0.0,0.0,22738.821750603256,71,42,1,14082,201703211,,,391.0,,1.0,2.0,3.0,0.0,2.0,1.5,1707.2131929433535,0.0,820.0,0.0,0.0,13539.0,8,4,2,90.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1173.0587233811327,0.051588368836657586,0.08664293695111402,9026.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +3212,1,55.0,5,227.0,9,112,2,0,52,4.0,0.0,0.0,679.6945313884088,0.0,1864.865326913557,19533.386258807062,0,71,1,14083,201703212,,,420.0,256.0,3.0,2.0,4.0,2.0,3.0,2.0,1315.885437086735,0.0,505.0,1054.0,0.0,32434.0,0,1,3,89.0,8,2.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2544.559858301966,0.1302672165792398,0.07845347037990892,16217.0,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +3213,2,67.0,3,0.0,4,111,1,0,75,6.0,0.0,0.0,598.938745480875,0.0,0.0,16456.08,0,50,2,14084,201703213,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3094.7670635958966,0.0,445.0,0.0,0.0,21872.0,0,5,1,65.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,598.938745480875,0.03639619796943591,0.02738381243054476,21872.0,6,3,6,6_0,6_2,6_0_1 +3214,2,53.0,4,0.0,3,111,2,0,56,5.0,0.0,0.0,310.90977574400483,0.0,638.7252210776035,17519.7,0,50,2,14086,201703214,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2672.201179891837,0.0,231.0,361.0,0.0,20328.0,0,1,2,42.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,949.6349968216083,0.05420383892541586,0.04671561377516766,20328.0,5,3,5,5_0,5_2,5_0_1 +3215,2,57.0,1,0.0,4,112,2,43,34,10.0,2221.038412794435,0.0,1493.9820392893737,169.8549064361494,0.0,85104.15087530164,33,33,1,14089,201703215,,,,,3.0,2.0,8.0,1.0,3.0,2.0,1671.8704174496638,0.0,1110.0,0.0,0.0,168567.0,1,1,1,218.0,8,2.0,4,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3884.8753585199584,0.04564848269518897,0.023046476229154924,84283.5,10,5,10,10_1,10_1,10_0_1 +3216,2,34.0,3,0.0,4,111,1,38,37,8.0,0.0,0.0,484.5347154452023,0.0,605.1081041787822,39934.899999999994,20,20,2,1409,201703216,999999.0,342.0,,1174.0,2.0,0.0,3.0,0.0,2.0,1.5,4053.0781945054055,0.0,360.0,342.0,0.0,47314.0,4,1,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1089.6428196239845,0.027285477605402408,0.023030029581603426,31542.666666666668,8,4,8,8_0,8_4,8_0_1 +3217,2,93.0,3,0.0,4,111,1,0,77,9.0,0.0,0.0,861.3950496803596,0.0,141.54575536345783,36279.8,0,60,2,14090,201703217,,,,,0.0,2.0,2.0,0.0,1.0,1.0,4369.436499268793,0.0,640.0,80.0,0.0,29939.0,0,5,5,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1002.9408050438175,0.027644606779635428,0.033499475768857256,29939.0,8,4,8,8_0,8_4,8_0_1 +3218,2,33.0,3,0.0,5,112,5,54,46,6.0,0.0,555.170527825376,142.66855510330956,0.0,0.0,43931.491693502605,31,60,1,14091,201703218,,,368.0,,2.0,0.0,5.0,2.0,4.0,2.1,2435.8574587715066,0.0,106.0,0.0,0.0,50389.0,1,1,2,130.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,697.8390829286856,0.015884711764337717,0.01384903615727015,23994.761904761905,7,4,7,7_1,7_2,7_0_0 +3219,2,78.0,2,0.0,1,111,2,75,75,8.0,0.0,416.377895869032,847.935752029104,0.0,2563.74749402063,34601.0501582034,50,70,1,14092,201703219,,,324.0,,0.0,4.0,6.0,0.0,2.0,1.5,1993.649683903639,0.0,630.0,1449.0,0.0,43016.0,5,5,1,120.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3828.0611419187658,0.11063424735422919,0.0889915645787327,28677.333333333332,8,4,8,8_1,8_3,8_1_0 +3220,2,78.0,2,0.0,4,112,2,74,78,8.0,0.0,0.0,646.0462872602698,5307.965826129669,0.0,32714.839999999997,42,41,1,14093,201703220,,,600.0,,0.0,5.0,5.0,0.0,2.0,1.5,1985.956745537229,0.0,480.0,0.0,0.0,44995.0,5,5,1,99.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5954.012113389939,0.18199728665614565,0.13232608319568706,29996.666666666668,8,4,8,8_1,8_0,8_0_1 +3221,1,60.0,4,126.0,1,111,1,0,56,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,11889.140000000001,0,20,2,14096,201703221,,,,400.0,1.0,5.0,2.0,0.0,1.0,1.0,3615.864526138281,0.0,1200.0,0.0,0.0,19487.0,0,1,3,33.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1615.1157181506744,0.13584798548512964,0.08288170155235154,19487.0,5,3,5,5_0,5_3,5_1_0 +3222,2,29.0,2,0.0,9,111,4,0,43,8.0,0.0,0.0,1130.581002705472,0.0,0.0,49506.68175060326,20,33,1,14098,201703222,,,496.0,,2.0,0.0,4.0,1.0,3.0,1.8,628.4985063505613,0.0,840.0,0.0,0.0,52271.0,1,1,2,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1130.581002705472,0.022836937615833955,0.021629220843402117,29039.444444444445,8,4,8,8_1,8_3,8_0_0 +3223,2,54.0,3,0.0,6,400,5,54,64,8.0,0.0,0.0,1702.6011528838358,53.079658261296686,0.0,29305.34,50,50,1,14099,201703223,,,298.0,,3.0,1.0,4.0,1.0,3.0,2.0,1529.6970713189496,0.0,1265.0,0.0,0.0,56327.0,1,1,1,161.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1755.6808111451323,0.05990992805902038,0.03116943581488686,28163.5,8,4,8,8_1,8_0,8_0_0 +3224,2,49.0,4,0.0,4,120,1,85,64,2.0,0.0,0.0,807.5578590753372,0.0,5307.965826129669,36700.08031599412,50,50,1,141,201703224,,,600.0,,1.0,1.0,5.0,2.0,4.0,2.5,1018.8348371952153,0.0,600.0,3000.0,0.0,27490.0,7,1,2,103.0,0,3.0,4,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,6115.523685205007,0.16663515808546675,0.22246357530756664,10996.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +3225,2,78.0,3,0.0,3,300,5,86,72,2.0,0.0,624.566843803548,1615.1157181506744,169.8549064361494,0.0,14301.117678039438,71,50,1,1410,201703225,,,280.0,,0.0,4.0,3.0,0.0,2.0,1.5,2601.7994065436883,0.0,1200.0,0.0,0.0,14530.0,5,5,1,80.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2409.537468390372,0.1684859549187836,0.16583189734276477,9686.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +3226,2,56.0,3,0.0,1,111,5,85,64,3.0,0.0,0.0,389.7122552288106,0.0,726.2204367471937,29298.152625904888,41,71,1,14101,201703226,,,,,1.0,2.0,5.0,1.0,3.0,2.0,2334.8080321918596,700.0,0.0,0.0,0.0,29333.0,6,1,1,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1115.9326919760042,0.038088841512461676,0.03804359226727591,14666.5,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +3227,2,74.0,3,0.0,4,112,6,75,75,9.0,2379.684013708323,0.0,72.68020731678034,0.0,0.0,31158.739999999998,33,33,1,14102,201703227,,,26.0,,0.0,3.0,5.0,0.0,2.0,1.5,1701.6465047828333,0.0,54.0,0.0,0.0,57824.0,5,5,5,148.0,9,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2452.3642210251037,0.07870550031949636,0.04241083669454039,38549.333333333336,9,5,9,9_1,9_0,9_0_1 +3228,2,50.0,3,0.0,8,111,1,34,33,9.0,0.0,0.0,444.15682249143543,0.0,0.0,58861.77999999999,30,30,2,14103,201703228,,,,750.0,2.0,0.0,3.0,1.0,3.0,2.0,2698.8502971797957,0.0,330.0,0.0,0.0,68260.0,1,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,444.15682249143543,0.007545759276926989,0.006506838887949538,34130.0,9,5,9,9_0,9_4,9_0_0 +3229,2,71.0,3,0.0,6,120,5,78,78,4.0,0.0,402.4986326733976,1421.3018319725934,247.7050718860512,0.0,17710.0,71,70,1,14107,201703229,,,190.0,,0.0,2.0,5.0,0.0,2.0,1.5,1574.8964470853487,0.0,1056.0,0.0,0.0,25989.0,4,4,1,96.0,0,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2071.5055365320422,0.11696812741569973,0.07970701206402872,17326.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3230,2,60.0,3,0.0,5,112,5,77,63,8.0,0.0,832.755791738064,1367.464641367571,0.0,0.0,25196.840000000004,70,50,1,14109,201703230,,,,,1.0,2.0,4.0,0.0,2.0,1.5,3287.2676818622085,0.0,1016.0,0.0,0.0,42487.0,5,1,1,84.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2200.220433105635,0.08732128445890971,0.0517857328854858,28324.666666666668,8,4,8,8_1,8_0,8_0_0 +3231,2,42.0,9,0.0,4,111,5,0,52,7.0,0.0,1040.94473967258,386.28184259103625,0.0,0.0,15823.32,0,50,1,1411,201703231,,,,,1.0,0.0,3.0,1.0,3.0,2.0,2015.9285982488109,0.0,287.0,0.0,0.0,48150.0,0,1,1,100.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1427.2265822636164,0.09019766915309912,0.029641258198621317,24075.0,7,4,7,7_1,7_3,7_0_1 +3232,2,65.0,3,0.0,5,111,7,0,72,2.0,0.0,0.0,839.8601734383507,0.0,0.0,8543.0,0,71,1,14112,201703232,,,,,0.0,3.0,2.0,0.0,1.0,1.0,3904.293257761828,0.0,624.0,0.0,0.0,10790.0,0,5,1,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,839.8601734383507,0.09830974756389449,0.07783690207955057,10790.0,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +3233,2,69.0,2,0.0,5,112,2,78,75,9.0,0.0,0.0,2422.6735772260117,185.7788039145384,0.0,27542.44,50,41,1,14113,201703233,,,160.0,,0.0,1.0,4.0,0.0,2.0,1.5,1530.4585155034756,0.0,1800.0,0.0,0.0,52517.0,5,5,1,90.0,10,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2608.45238114055,0.09470665566088372,0.049668724053935874,35011.333333333336,9,5,9,9_1,9_1,9_0_0 +3234,2,50.0,4,0.0,7,111,1,34,37,10.0,0.0,0.0,2337.880002023101,0.0,5307.965826129669,127360.52000000002,12,12,2,14114,201703234,3000.0,3000.0,,,2.0,2.0,6.0,2.0,4.0,2.1,3485.7897860154235,0.0,1737.0,3000.0,0.0,158992.0,1,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,7645.84582815277,0.06003309210854956,0.04808950027770435,75710.47619047618,10,5,10,10_0,10_4,10_0_0 +3235,2,82.0,3,0.0,1,120,2,0,77,4.0,1586.456009138882,0.0,578.7497990039916,0.0,0.0,17208.52,0,71,1,14117,201703235,,,360.0,,0.0,3.0,4.0,0.0,1.0,1.0,2510.9155430257865,0.0,430.0,0.0,0.0,18031.0,0,5,1,92.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2165.2058081428736,0.12582173296383847,0.12008240298058198,18031.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +3236,2,71.0,3,0.0,1,111,2,0,75,6.0,0.0,0.0,336.4824412813905,0.0,1611.8522892013762,29233.260000000002,0,33,1,1412,201703236,,,250.0,,0.0,2.0,3.0,0.0,1.0,1.0,1840.5441727939087,0.0,250.0,911.0,0.0,22376.0,0,5,2,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1948.3347304827666,0.06664787746843036,0.08707252102622304,22376.0,6,3,6,6_1,6_4,6_1_0 +3237,2,45.0,3,0.0,1,111,2,52,48,7.0,1745.1016100527704,0.0,983.8746583067858,0.0,0.0,57765.993573887245,50,50,1,14122,201703237,,,632.0,,2.0,4.0,6.0,1.0,3.0,2.0,1760.6577194576557,0.0,731.0,0.0,0.0,50975.0,1,1,2,120.0,7,6.0,4,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2728.9762683595563,0.04724191690512483,0.05353558152740669,25487.5,7,4,7,7_1,7_2,7_1_0 +3238,2,70.0,2,0.0,6,221,4,75,75,9.0,0.0,0.0,3861.8861079336734,53.079658261296686,698.0256915224667,51569.13121767231,31,31,1,14124,201703238,,,583.0,,0.0,1.0,7.0,0.0,2.0,1.5,1384.2637463825376,672.8232356752314,2591.0,0.0,0.0,57336.0,5,5,1,110.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4612.991457717437,0.0894525726688334,0.0804554112201311,38224.0,9,5,9,9_1,9_1,9_0_0 +3239,2,47.0,4,0.0,1,111,2,0,54,3.0,0.0,0.0,775.2555447123236,0.0,1953.331424015718,21161.5,0,42,1,14125,201703239,,,360.0,530.0,3.0,0.0,4.0,2.0,3.0,2.0,1732.2373802079846,0.0,576.0,1104.0,0.0,28100.0,0,1,3,101.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2728.586968728042,0.12894109438026802,0.09710273910064206,14050.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +3240,2,37.0,3,0.0,7,112,2,21,48,6.0,0.0,0.0,888.3136449828709,0.0,3000.770013705306,60576.38,44,44,1,14126,201703240,,,720.0,,2.0,0.0,6.0,3.0,5.0,2.4,2335.0736248226685,0.0,660.0,1696.0,0.0,53981.0,1,1,2,105.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3889.083658688177,0.06420132168162206,0.07204541706689718,22492.083333333336,6,3,6,6_1,6_0,6_0_0 +3241,2,42.0,2,0.0,5,112,2,21,53,5.0,1118.451486442912,416.377895869032,1547.8192298943961,254.7823596542241,0.0,38913.08,50,31,1,14127,201703241,,,300.0,,2.0,1.0,4.0,1.0,3.0,1.8,1971.8234054205097,0.0,1150.0,0.0,0.0,33638.0,1,1,2,128.0,8,0.0,4,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3337.430971860564,0.08576630202133997,0.09921609405614377,18687.777777777777,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3242,2,52.0,3,0.0,1,112,2,37,37,10.0,0.0,0.0,1195.185631431499,0.0,1613.6216111434194,48445.98,20,41,1,14128,201703242,,,250.0,,2.0,1.0,4.0,0.0,2.0,1.5,2939.3498499326115,0.0,888.0,912.0,0.0,58414.0,1,1,2,90.0,8,1.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2808.8072425749183,0.057978128269361426,0.04808448732452697,38942.666666666664,9,5,9,9_1,9_1,9_1_0 +3243,2,45.0,2,0.0,99,111,2,0,37,7.0,0.0,0.0,1076.7438121004495,0.0,1415.4575536345783,43985.120315994114,0,31,1,14129,201703243,,,515.0,,1.0,0.0,5.0,2.0,3.0,1.6,1125.927119701148,0.0,800.0,800.0,0.0,40382.0,0,1,1,100.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2492.201365735028,0.056660101139448284,0.06171564968884721,25238.75,7,4,7,7_1,7_3,7_0_0 +3244,1,79.0,2,70.0,6,300,4,0,77,5.0,0.0,0.0,717.3805648119245,0.0,0.0,12814.48,0,50,2,1413,201703244,,,173.0,,0.0,1.0,2.0,0.0,1.0,1.0,2615.72808081978,0.0,533.0,0.0,0.0,18340.0,0,5,3,55.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,717.3805648119245,0.05598202695793544,0.039115625126059136,18340.0,4,2,4_1,4_0_1,4_0_1,4_0_0_1 +3245,1,42.0,3,394.0,3,111,1,85,68,1.0,0.0,0.0,1090.2031097517051,0.0,2017.027013929274,17282.079999999998,41,71,2,14132,201703245,840.0,840.0,800.0,,1.0,0.0,3.0,4.0,6.0,2.9,2467.751937823347,0.0,810.0,1140.0,0.0,26738.0,6,4,3,70.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,3107.230123680979,0.179794916102748,0.11621026717334801,9220.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3246,2,56.0,1,0.0,1,112,2,0,22,5.0,0.0,138.792631956344,807.5578590753372,169.8549064361494,0.0,14305.705846751302,0,30,1,14133,201703246,,,110.0,,1.0,1.0,7.0,0.0,1.0,1.0,3733.1855437457843,0.0,600.0,0.0,0.0,18519.0,0,1,1,300.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1116.2053974678306,0.0780251886502553,0.06027352435162971,18519.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3247,2,76.0,3,0.0,1,211,2,78,75,4.0,1591.2153771662988,0.0,1642.0343134531856,226.47320858153253,0.0,19924.84,70,50,1,14134,201703247,,,203.0,,0.0,2.0,4.0,0.0,2.0,1.5,1828.1171934915212,0.0,1220.0,0.0,0.0,26241.0,5,5,1,100.0,4,4.0,3,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3459.7228992010173,0.17363867911616943,0.131844171304486,17494.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +3248,2,56.0,3,0.0,9,111,4,0,62,4.0,0.0,0.0,672.964882562781,0.0,0.0,12457.025846751301,0,50,2,14135,201703248,,,145.0,432.0,1.0,2.0,2.0,0.0,1.0,1.0,2642.330382505037,0.0,500.0,0.0,0.0,18958.0,0,1,3,40.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,672.964882562781,0.05402291773668312,0.03549767288547215,18958.0,5,3,5,5_0,5_2,5_0_0 +3249,1,70.0,4,76.0,1,111,4,0,77,6.0,0.0,0.0,551.164475252175,0.0,1027.0831891138882,11748.74,0,70,2,14136,201703249,,,120.0,414.0,0.0,0.0,2.0,0.0,1.0,1.0,2521.3020873567134,990.0,0.0,0.0,0.0,23432.0,0,5,3,50.0,7,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1578.2476643660632,0.13433335526754897,0.06735437283911161,23432.0,6,3,6,6_0,6_2,6_1_0 +3250,2,78.0,4,0.0,99,300,6,77,75,10.0,0.0,0.0,3010.844884585882,222.9345646974461,0.0,29039.159999999996,60,60,1,14137,201703250,,,390.0,,0.0,2.0,5.0,0.0,2.0,1.5,1664.018140920778,0.0,2237.0,0.0,0.0,58060.0,5,5,1,200.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3233.779449283328,0.11135926277768808,0.05569720029768047,38706.666666666664,9,5,9,9_1,9_1,9_0_0 +3251,1,43.0,3,200.0,4,111,1,0,85,2.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,20424.0,0,71,2,14138,201703251,,,100.0,50.0,0.0,0.0,2.0,0.0,1.0,1.0,3322.776730519688,750.0,0.0,0.0,0.0,13360.0,0,7,3,40.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1195.6421699742903,0.05854103848287751,0.08949417439927322,13360.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3252,2,65.0,3,0.0,9,112,5,78,64,6.0,0.0,832.755791738064,1278.633276869284,268.9369351905699,0.0,68213.66,70,71,1,14139,201703252,,,280.0,,1.0,2.0,4.0,0.0,2.0,1.5,1503.4314213067219,0.0,950.0,0.0,0.0,33211.0,5,5,1,90.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2380.3260037979176,0.034895151554658076,0.07167281936099237,22140.666666666668,6,3,6,6_1,6_0,6_0_0 +3253,2,58.0,8,0.0,5,111,6,54,37,10.0,0.0,902.152107716236,969.0694308904046,0.0,0.0,39517.46031599411,50,71,1,1414,201703253,,,130.0,,2.0,2.0,4.0,0.0,2.0,1.5,2533.2863171495546,0.0,720.0,0.0,0.0,83900.0,1,1,1,90.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1871.2215386066405,0.0473517661217032,0.022302998076360436,55933.333333333336,10,5,10,10_1,10_2,10_0_0 +3254,2,33.0,4,0.0,4,111,1,0,42,8.0,0.0,0.0,672.964882562781,0.0,0.0,14255.58,0,30,2,14141,201703254,,,,310.0,1.0,0.0,1.0,0.0,1.0,1.0,3105.553058464957,0.0,500.0,0.0,0.0,28540.0,0,1,3,38.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,672.964882562781,0.04720712047933378,0.02357970856912337,28540.0,8,4,8,8_0,8_4,8_0_1 +3255,2,82.0,2,0.0,2,111,4,86,78,3.0,0.0,0.0,1749.7086946632305,0.0,0.0,19764.26,71,71,2,14142,201703255,,,,650.0,0.0,5.0,3.0,0.0,2.0,1.5,3542.613108909741,0.0,1300.0,0.0,0.0,20476.0,5,5,3,50.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1749.7086946632305,0.08852892517418971,0.08545168463875906,13650.666666666666,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +3256,2,28.0,4,0.0,9,112,4,55,63,8.0,0.0,0.0,1345.929765125562,0.0,0.0,45745.532654763214,31,50,1,14143,201703256,,,,,2.0,0.0,4.0,0.0,2.0,1.5,497.3259032142721,0.0,1000.0,0.0,0.0,44515.0,1,1,2,89.0,9,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1345.929765125562,0.02942210281565971,0.03023542098451223,29676.666666666668,8,4,8,8_1,8_0,8_0_0 +3257,2,34.0,4,0.0,1,111,2,0,63,4.0,0.0,0.0,538.3719060502248,0.0,0.0,13977.0,0,50,8,14144,201703257,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2523.492542253864,0.0,400.0,0.0,0.0,17140.0,0,1,2,55.0,4,4.0,1,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,538.3719060502248,0.03851841640196214,0.0314102628967459,17140.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +3258,2,54.0,2,0.0,1,111,2,46,42,6.0,0.0,0.0,721.4183541073012,0.0,3007.847301473479,77313.4163223763,50,31,1,14145,201703258,,,,,2.0,2.0,8.0,2.0,4.0,2.5,1150.2024288615012,0.0,536.0,1700.0,0.0,59403.0,1,1,2,160.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3729.2656555807803,0.04823568577063958,0.06277907943337509,23761.2,6,3,6,6_1,6_2,6_1_0 +3259,2,52.0,1,0.0,3,112,2,56,38,9.0,0.0,0.0,853.3194710896063,0.0,2093.1078574371327,51484.41015820341,42,60,1,14146,201703259,,,769.0,,2.0,0.0,3.0,1.0,3.0,2.0,1588.0070404208818,0.0,634.0,1183.0,0.0,72712.0,1,1,1,75.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2946.427328526739,0.05722950538760833,0.040521885363168926,36356.0,9,5,9,9_1,9_2,9_0_1 +3260,2,54.0,2,0.0,5,112,2,65,48,9.0,1472.2311764808826,0.0,1763.1679923144861,219.39592081335965,0.0,39395.331693502594,50,50,1,14147,201703260,,,419.0,,4.0,0.0,6.0,2.0,4.0,2.5,2431.7808954600855,0.0,1310.0,0.0,0.0,83123.0,1,1,1,120.0,10,2.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3454.795089608728,0.0876955451596952,0.041562444685691424,33249.2,9,5,9,9_1,9_1,9_0_0 +3261,2,35.0,1,0.0,1,300,2,68,56,4.0,0.0,846.6350549336984,3324.446519860138,113.23660429076627,0.0,52406.28676101392,31,43,1,14148,201703261,,,430.0,,2.0,0.0,3.0,1.0,3.0,1.8,1991.5920408870345,0.0,2470.0,0.0,0.0,32923.0,1,1,2,150.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4284.318179084602,0.08175198900510142,0.13013146369056897,18290.555555555555,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3262,2,55.0,4,0.0,2,111,4,52,68,8.0,0.0,0.0,1413.22625338184,0.0,0.0,41232.75736250591,50,50,2,14149,201703262,,,,,3.0,1.0,4.0,1.0,3.0,2.0,2240.4249775902003,0.0,1050.0,0.0,0.0,54580.0,1,1,2,63.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1413.22625338184,0.034274357180558726,0.025892749237483328,27290.0,7,4,7,7_0,7_3,7_0_1 +3263,2,45.0,2,0.0,1,120,5,22,13,5.0,856.6862449349964,416.377895869032,448.42251080407635,0.0,685.1390633712825,28551.236977339526,31,12,1,1415,201703263,,,,,2.0,0.0,7.0,2.0,4.0,2.5,1786.1825974703575,660.4018836319964,60.0,0.0,0.0,52275.0,1,1,1,170.0,0,0.0,4,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2406.6257149793873,0.0842914692939389,0.04603779464331683,20910.0,5,3,5,5_1,5_0,5_1_0 +3264,2,53.0,3,0.0,9,400,6,0,52,6.0,0.0,0.0,1814.3133233892574,0.0,0.0,17819.36,0,50,1,14150,201703264,,,220.0,,1.0,2.0,4.0,0.0,1.0,1.0,2492.417441188043,0.0,1348.0,0.0,0.0,22770.0,0,1,2,86.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1814.3133233892574,0.1018169745372032,0.07967998785196563,22770.0,6,3,6,6_1,6_0,6_0_0 +3265,1,51.0,5,239.0,3,112,5,0,52,4.0,0.0,0.0,847.935752029104,0.0,0.0,16137.2858467513,0,50,1,14151,201703265,,,600.0,,1.0,1.0,4.0,1.0,2.0,1.3,644.3034145716114,0.0,630.0,0.0,0.0,22308.0,0,1,3,69.0,9,0.0,2,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,847.935752029104,0.05254512810156408,0.038010388740770305,17160.0,4,2,4_1,4_1_1,4_0_1,4_0_1_1 +3266,2,89.0,3,0.0,9,112,2,0,71,3.0,0.0,0.0,231.49991960159664,0.0,0.0,15068.960000000001,0,70,2,14153,201703266,,,,479.0,0.0,3.0,2.0,0.0,1.0,1.0,3549.1051633404477,0.0,172.0,0.0,0.0,14613.0,0,5,3,50.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,231.49991960159664,0.015362700518257175,0.01584205293927302,14613.0,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +3267,2,73.0,3,0.0,5,112,2,77,75,6.0,0.0,0.0,1480.522741638118,0.0,0.0,20849.92,70,50,1,14155,201703267,,,130.0,,0.0,3.0,4.0,0.0,2.0,1.5,1211.9224635637258,0.0,1100.0,0.0,0.0,33590.0,5,5,1,100.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1480.522741638118,0.07100855742554975,0.044076294779342606,22393.333333333332,6,3,6,6_1,6_0,6_0_0 +3268,1,43.0,3,50.0,4,112,2,85,62,2.0,1554.7268889561046,0.0,1668.9529087556969,265.39829130648343,0.0,32796.86,71,42,1,14156,201703268,,,290.0,,1.0,0.0,5.0,3.0,5.0,2.6,1910.470677580077,0.0,1240.0,0.0,0.0,34597.0,6,1,2,100.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,3489.0780890182846,0.1063845163536474,0.10084915134313047,13306.538461538461,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +3269,1,24.0,4,101.0,3,111,1,0,47,4.0,0.0,0.0,874.8543473316153,95.54338487033404,0.0,56687.96157997058,0,20,2,14157,201703269,,,,420.0,4.0,1.0,5.0,3.0,5.0,3.0,1846.4678532669775,0.0,650.0,0.0,0.0,51219.0,0,1,3,90.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,970.3977322019493,0.01711823295732718,0.018946049946347045,17073.0,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +3270,1,76.0,4,272.0,99,111,1,0,78,2.0,0.0,0.0,476.45913685444896,0.0,0.0,5637.5458467513,0,71,2,14158,201703270,,,,13.0,0.0,1.0,1.0,0.0,1.0,1.0,2817.5617159291332,0.0,354.0,0.0,0.0,12774.0,0,5,3,40.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,476.45913685444896,0.08451534582712333,0.037299133932554324,12774.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3271,2,77.0,3,0.0,4,111,2,77,72,5.0,0.0,0.0,1030.9822000861805,0.0,2271.809373583498,16974.52,50,50,1,14160,201703271,,,100.0,,0.0,2.0,4.0,0.0,2.0,1.5,3560.0365798450157,0.0,766.0,1284.0,0.0,28311.0,5,5,1,95.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3302.7915736696787,0.1945734885975968,0.1166610707382176,18874.0,5,3,5,5_1,5_2,5_0_1 +3272,2,67.0,3,0.0,1,300,6,77,78,2.0,0.0,0.0,162.857501580193,169.8549064361494,0.0,22908.82,50,70,2,14162,201703272,,,,300.0,0.0,1.0,2.0,0.0,2.0,1.5,3243.6788426335934,0.0,121.0,0.0,0.0,18875.0,7,5,3,53.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,332.7124080163424,0.01452333241154902,0.017627147444574432,12583.333333333334,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +3273,2,55.0,3,0.0,4,111,2,33,47,8.0,0.0,0.0,518.1829595733413,0.0,1592.3897478389006,57656.09999999999,30,12,1,14164,201703273,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2225.6076868297587,0.0,385.0,900.0,0.0,75275.0,1,1,1,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2110.572707412242,0.03660623433448052,0.028038162835101188,30110.0,8,4,8,8_1,8_3,8_0_1 +3274,2,56.0,4,0.0,3,400,5,0,47,2.0,0.0,0.0,942.1508355878933,138.0071114793714,0.0,21395.120000000003,0,50,1,14165,201703274,,,150.0,,1.0,1.0,4.0,0.0,1.0,1.0,2127.6443764584133,0.0,700.0,0.0,0.0,13080.0,0,4,2,80.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1080.1579470672648,0.050486183160798566,0.0825808828033077,13080.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +3275,1,40.0,4,340.0,5,111,2,0,56,2.0,0.0,0.0,721.5244039664835,0.0,1344.54526574909,13447.0,0,71,2,14166,201703275,,,384.0,,1.0,1.0,3.0,2.0,3.0,2.0,843.2090329271548,1296.0,0.0,0.0,0.0,23904.0,0,4,3,68.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2066.0696697155736,0.15364539820893683,0.08643196409452701,11952.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3276,2,49.0,2,0.0,6,120,5,45,62,10.0,0.0,902.152107716236,1025.5984810256782,0.0,0.0,31056.180000000004,41,50,1,14168,201703276,,,,,2.0,1.0,4.0,0.0,2.0,1.5,2113.7042710620262,0.0,762.0,0.0,0.0,59932.0,1,1,2,110.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1927.7505887419143,0.06207301054868673,0.032165630860674005,39954.666666666664,9,5,9,9_1,9_0,9_0_0 +3277,2,79.0,3,0.0,6,112,2,0,77,7.0,0.0,0.0,1356.6972032465665,0.0,2271.809373583498,13445.390875301628,0,50,1,14169,201703277,,,360.0,,0.0,4.0,7.0,0.0,1.0,1.0,2672.605915960271,0.0,1008.0,1284.0,0.0,25547.0,0,5,1,96.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3628.5065768300647,0.26986992126018533,0.14203259000391688,25547.0,7,4,7,7_1,7_2,7_0_0 +3278,2,55.0,4,0.0,8,112,4,0,64,5.0,0.0,0.0,1615.1157181506744,53.079658261296686,0.0,18018.760000000002,0,50,1,1417,201703278,,,240.0,,1.0,1.0,4.0,0.0,1.0,1.0,2426.978008008175,0.0,1200.0,0.0,0.0,20580.0,0,1,2,85.0,6,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1668.1953764119712,0.09258103090401176,0.08105905619105788,20580.0,5,3,5,5_1,5_0,5_0_0 +3279,2,37.0,3,0.0,99,111,2,37,37,10.0,0.0,0.0,1024.3864994585879,0.0,1908.9222908783377,62625.26428673575,20,31,1,14170,201703279,,,,,2.0,0.0,7.0,1.0,3.0,1.8,1532.7036939626446,1840.0,0.0,0.0,0.0,81590.0,1,1,2,143.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2933.3087903369255,0.04683906445338883,0.03595181750627437,45327.777777777774,10,5,10,10_1,10_3,10_0_0 +3280,1,55.0,3,212.0,9,111,2,0,56,2.0,0.0,0.0,417.2382271889242,796.1948739194503,0.0,11782.52,0,50,2,14173,201703280,,,369.0,119.0,1.0,3.0,3.0,1.0,2.0,1.5,756.6149942903805,0.0,310.0,0.0,0.0,15801.0,0,1,3,66.0,7,5.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1213.4331011083746,0.10298587238624458,0.07679470293705301,10534.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3281,2,62.0,2,0.0,2,111,2,78,77,7.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,14670.820000000002,71,50,1,14174,201703281,,,350.0,,0.0,1.0,4.0,0.0,2.0,1.5,2388.7200174667946,1500.0,0.0,0.0,0.0,37761.0,5,5,1,75.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2391.2843399485805,0.16299595659605803,0.06332682767799,25174.0,7,4,7,7_1,7_4,7_0_1 +3282,2,78.0,1,0.0,3,112,2,0,75,10.0,0.0,0.0,1615.1157181506744,0.0,884.6609710216114,34504.42,0,70,1,14176,201703282,,,400.0,,0.0,1.0,5.0,0.0,2.0,1.5,2664.701278371235,0.0,1200.0,500.0,0.0,62920.0,0,5,1,120.0,9,2.0,5,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2499.776689172286,0.07244801359281755,0.03972944515531287,41946.666666666664,10,5,10,10_1,10_1,10_0_1 +3283,1,31.0,4,170.0,1,111,2,0,54,4.0,0.0,0.0,300.6351683193682,0.0,560.2271940621209,12372.24,0,30,2,14178,201703283,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3729.778562961974,540.0,0.0,0.0,0.0,17126.0,0,4,3,17.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,860.8623623814891,0.06958015382675159,0.05026639976535613,17126.0,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +3284,2,24.0,2,0.0,1,111,2,52,52,7.0,0.0,0.0,1065.976373979445,61.9262679715128,0.0,26769.295846751298,50,43,1,1418,201703284,,,,565.0,2.0,0.0,2.0,0.0,2.0,1.5,1400.0773737919098,0.0,792.0,0.0,0.0,35390.0,1,1,3,80.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1127.9026419509578,0.04213419166525589,0.031870659563463064,23593.333333333332,6,3,6,6_1,6_2,6_1_0 +3285,1,66.0,3,267.0,2,111,2,0,77,2.0,0.0,0.0,395.70335094691524,0.0,1148.2899403860517,30123.08,0,70,1,14182,201703285,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2248.2103202558847,0.0,294.0,649.0,0.0,12741.0,0,5,3,50.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1543.993291332967,0.0512561561212521,0.12118305402503468,12741.0,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +3286,2,60.0,2,0.0,7,112,2,56,45,7.0,2519.292142512545,0.0,1418.6099724423423,175.16287226227908,0.0,39389.120836034985,60,42,1,14186,201703286,,,588.0,,2.0,2.0,4.0,0.0,2.0,1.5,2083.505971697931,0.0,1054.0,0.0,0.0,36678.0,1,1,1,110.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4113.064987217166,0.10442134528309514,0.11213983824682824,24452.0,7,4,7,7_1,7_0,7_0_0 +3287,2,31.0,1,0.0,99,111,1,0,38,10.0,0.0,0.0,403.7789295376686,0.0,0.0,30062.88,0,12,2,14188,201703287,,,,600.0,1.0,0.0,1.0,0.0,1.0,1.0,5948.244140572187,0.0,300.0,0.0,0.0,63117.0,0,1,3,22.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,403.7789295376686,0.013431145969303959,0.006397308641691915,63117.0,10,5,10,10_0,10_4,10_0_0 +3288,2,34.0,2,0.0,1,111,1,81,38,4.0,0.0,0.0,40.37789295376686,0.0,0.0,15370.539999999999,20,20,2,14189,201703288,,,,490.0,2.0,0.0,2.0,0.0,2.0,1.5,4194.1945098169945,0.0,30.0,0.0,0.0,24710.0,4,1,3,35.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,40.37789295376686,0.0026269664536032475,0.0016340709410670522,16473.333333333332,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +3289,2,57.0,3,0.0,1,211,4,77,63,9.0,0.0,0.0,1250.6521249740638,0.0,198.66885066408665,32482.132496299986,50,31,2,1419,201703289,,,,577.0,1.0,3.0,3.0,0.0,2.0,1.5,2764.8474825309327,191.49584399987356,850.0,0.0,0.0,51731.0,6,1,3,65.0,1,2.0,3,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1449.3209756381505,0.04461902172842998,0.028016488674840048,34487.333333333336,9,5,9,9_0,9_1,9_1_0 +3290,2,48.0,1,0.0,8,111,2,38,38,10.0,0.0,249.82673752141918,710.6509159862967,0.0,1937.407526537329,60560.04,42,31,1,14190,201703290,,,450.0,,2.0,2.0,5.0,1.0,3.0,2.0,1807.7797130120955,0.0,528.0,1095.0,0.0,86715.0,1,1,1,125.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2897.8851800450448,0.04785144098393998,0.033418499452748024,43357.5,10,5,10,10_1,10_3,10_0_0 +3291,2,69.0,3,0.0,2,111,2,78,78,6.0,0.0,0.0,376.8603342351573,0.0,654.6491185559925,17677.179999999997,70,50,8,14191,201703291,,,230.0,410.0,0.0,4.0,4.0,0.0,2.0,1.5,2723.7365092738337,0.0,280.0,370.0,0.0,31387.0,5,5,3,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1031.5094527911497,0.058352602213200856,0.032864225723743895,20924.666666666668,5,3,5,5_0,5_4,5_0_1 +3292,2,42.0,3,0.0,1,111,4,0,46,10.0,0.0,0.0,1076.7438121004495,0.0,442.3304855108057,30380.379999999994,0,41,2,14192,201703292,,,,600.0,1.0,0.0,3.0,0.0,1.0,1.0,2972.3045310339876,0.0,800.0,250.0,0.0,122240.0,0,1,3,63.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1519.0742976112551,0.05000182017510168,0.012426982146688933,122240.0,10,5,10,10_0,10_3,10_1_0 +3293,2,89.0,3,0.0,1,300,4,0,78,6.0,0.0,0.0,1749.7086946632305,743.1152156581536,0.0,14166.813696501076,0,41,1,14193,201703293,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2946.044596634848,0.0,1300.0,0.0,0.0,22456.0,0,5,1,76.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2492.823910321384,0.1759622144912559,0.11100925856436517,22456.0,6,3,6,6_1,6_0,6_1_0 +3294,2,72.0,2,0.0,8,112,4,77,72,8.0,0.0,0.0,4037.789295376686,0.0,0.0,56991.48,71,41,1,14195,201703294,,,,,0.0,4.0,4.0,0.0,2.0,1.5,1516.675849033005,0.0,3000.0,0.0,0.0,45117.0,5,5,1,130.0,9,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4037.789295376686,0.07084899875168509,0.08949596150844884,30078.0,8,4,8,8_1,8_0,8_0_0 +3295,2,50.0,1,0.0,1,221,1,0,34,10.0,0.0,6800.838965860856,1736.249397011975,0.0,0.0,133257.4098303585,0,10,1,14196,201703295,4900.0,4900.0,950.0,,1.0,0.0,4.0,1.0,2.0,1.5,3121.0141362040786,0.0,1290.0,0.0,0.0,154487.0,0,1,1,100.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,8537.08836287283,0.06406464281228978,0.05526088514161599,102991.33333333333,10,5,10,10_1,10_1,10_1_0 +3296,1,30.0,5,330.0,99,112,1,0,56,2.0,0.0,0.0,336.4824412813905,65.46491185559925,0.0,12456.399999999998,0,71,2,14197,201703296,,,250.0,,1.0,0.0,3.0,1.0,2.0,1.3,1165.106506796124,0.0,250.0,0.0,0.0,13840.0,0,1,3,66.0,9,1.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,401.94735313698976,0.03226834022165231,0.029042438810476138,10646.153846153846,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +3297,1,53.0,4,149.0,1,111,2,78,52,3.0,0.0,0.0,1345.929765125562,0.0,2193.9592081335963,25484.559999999998,71,71,1,14198,201703297,,,600.0,651.0,1.0,9.0,6.0,2.0,4.0,2.3,2321.2905258851115,0.0,1000.0,1240.0,0.0,31398.0,4,1,3,80.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3539.8889732591583,0.1389032799961686,0.11274249867058915,13651.304347826088,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +3298,2,52.0,2,0.0,7,111,4,0,37,9.0,0.0,0.0,64.60462872602697,0.0,0.0,41811.71015820341,0,31,8,14199,201703298,,,,650.0,1.0,0.0,1.0,0.0,1.0,1.0,4881.391993686936,0.0,48.0,0.0,0.0,35680.0,0,1,3,34.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,64.60462872602697,0.0015451324158132199,0.0018106678454603972,35680.0,9,5,9,9_0,9_4,9_0_0 +3299,2,76.0,3,0.0,6,111,2,86,77,6.0,0.0,0.0,403.7789295376686,0.0,2450.5108897298637,30191.916322376288,44,50,1,142,201703299,,,560.0,,0.0,1.0,5.0,0.0,2.0,1.5,2147.6121337352038,0.0,300.0,1385.0,0.0,32853.0,5,5,1,123.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2854.2898192675325,0.09453821310282708,0.08688064466768734,21902.0,6,3,6,6_1,6_3,6_0_0 +3300,2,77.0,2,0.0,1,112,2,0,86,8.0,3529.8646203340127,416.377895869032,802.3407852095404,0.0,805.4142594489999,20873.020271167155,0,41,1,1420,201703300,,,330.0,,0.0,2.0,7.0,0.0,1.0,1.0,2154.414378168639,776.3345027021901,275.0,0.0,0.0,30442.0,0,6,1,290.0,8,3.0,1,5,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,5553.997560861584,0.26608499817985476,0.1824452257033567,30442.0,8,4,8,8_1,8_1,8_1_0 +3301,1,18.0,3,515.0,9,111,2,85,67,2.0,0.0,0.0,548.3808162862549,0.0,1021.8959002799796,12566.82,50,50,1,14201,201703301,,,487.0,,1.0,0.0,4.0,4.0,6.0,3.1,658.2109355729317,985.0,0.0,0.0,0.0,39765.0,6,1,3,80.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1570.2767165662344,0.12495418224867026,0.039488915291493384,12827.41935483871,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +3302,1,39.0,3,297.0,9,112,2,0,55,3.0,0.0,0.0,2220.7841124571773,0.0,0.0,44434.63999999999,0,43,1,14202,201703302,,,660.0,,1.0,0.0,6.0,3.0,4.0,2.1,510.5325720843878,0.0,1650.0,0.0,0.0,31874.0,0,1,2,123.0,6,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2220.7841124571773,0.04997866782440857,0.06967384427612403,15178.095238095237,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +3303,1,65.0,4,272.0,2,111,1,0,77,5.0,0.0,0.0,390.319631886413,0.0,0.0,6175.46,0,70,8,14204,201703303,,,,42.0,0.0,3.0,5.0,0.0,1.0,1.0,2208.4707461425605,0.0,290.0,0.0,0.0,19204.0,0,4,3,92.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,390.319631886413,0.06320494860081889,0.02032491313718043,19204.0,5,3,5,5_0,5_3,5_0_1 +3304,2,86.0,3,0.0,2,300,2,0,78,4.0,0.0,0.0,1305.5518721717951,0.0,0.0,20952.84,0,71,1,14205,201703304,,,,,0.0,5.0,5.0,0.0,1.0,1.0,2568.182540940156,0.0,970.0,0.0,0.0,17740.0,0,5,1,70.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1305.5518721717951,0.06230906512777242,0.07359367937834245,17740.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +3305,1,45.0,5,273.0,1,111,2,0,63,1.0,0.0,0.0,484.5347154452023,0.0,230.01185246561897,2629.8261627454167,0,50,2,14206,201703305,,,110.0,,1.0,0.0,1.0,0.0,1.0,1.0,3860.9955639683403,0.0,360.0,130.0,0.0,9006.0,0,1,3,27.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,714.5465679108213,0.27170866958174444,0.07934116898854333,9006.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +3306,2,80.0,4,0.0,5,111,4,77,77,3.0,0.0,0.0,2288.080600713455,0.0,0.0,16088.280000000004,50,71,1,14207,201703306,,,250.0,,1.0,3.0,4.0,2.0,4.0,2.5,2890.527232477737,0.0,1700.0,0.0,0.0,37120.0,5,5,3,77.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2288.080600713455,0.14222033683609775,0.06164010238990989,14848.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3307,2,51.0,3,0.0,1,112,2,0,22,8.0,1389.7354640056608,0.0,1288.0547852251627,247.7050718860512,0.0,32090.73087530163,0,41,1,14209,201703307,,,563.0,,3.0,0.0,7.0,1.0,3.0,2.0,4066.0762519884597,0.0,957.0,0.0,0.0,55156.0,0,1,1,130.0,8,0.0,5,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2925.495321116875,0.0911632499890633,0.05304038220895052,27578.0,8,4,8,8_1,8_0,8_1_0 +3308,1,51.0,3,29.0,5,111,1,0,52,4.0,0.0,0.0,403.7789295376686,0.0,0.0,17192.04,0,41,2,14210,201703308,,,,273.0,1.0,2.0,3.0,1.0,2.0,1.3,597.7646812579105,0.0,300.0,0.0,0.0,22814.0,0,1,3,70.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,403.7789295376686,0.02348638844125936,0.017698734528695914,17549.23076923077,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +3309,0,56.0,4,0.0,1,111,2,55,55,1.0,0.0,0.0,632.5869896090142,0.0,1928.560916827113,29871.940000000002,50,50,2,14211,201703309,,,386.0,,2.0,2.0,4.0,0.0,2.0,1.5,2103.488950575897,0.0,470.0,1090.0,0.0,12250.0,4,1,5,120.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2561.1479064361274,0.08573758203973787,0.20907329848458184,8166.666666666667,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +3310,2,72.0,3,0.0,1,111,6,75,22,1.0,2221.038412794435,0.0,2826.45250676368,0.0,0.0,14535.2258467513,50,10,1,14213,201703310,,,,,1.0,3.0,6.0,0.0,2.0,1.5,2063.7729679295944,0.0,2100.0,0.0,0.0,15563.0,5,1,1,120.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5047.490919558115,0.34725920138944766,0.3243263457918213,10375.333333333334,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +3311,2,73.0,2,0.0,7,111,2,72,72,7.0,0.0,0.0,4052.594522793067,0.0,0.0,45223.58,50,44,1,14215,201703311,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1465.794013338227,0.0,3011.0,0.0,0.0,38957.0,5,5,1,200.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4052.594522793067,0.08961242172320429,0.10402737692309641,25971.333333333332,7,4,7,7_1,7_3,7_0_0 +3312,1,85.0,3,89.0,1,300,4,0,75,2.0,0.0,0.0,1281.325136399535,134.46846759528495,0.0,11702.560000000001,0,33,2,14216,201703312,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4415.893713079842,0.0,952.0,0.0,0.0,11523.0,0,5,3,28.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1415.79360399482,0.12098152916924329,0.12286675379630478,11523.0,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +3313,2,54.0,4,0.0,99,112,4,0,63,4.0,0.0,0.0,1825.080761510262,0.0,0.0,27831.030875301632,0,31,2,14217,201703313,,,,550.0,1.0,2.0,1.0,0.0,1.0,1.0,3458.8609298920187,0.0,1356.0,0.0,0.0,17480.0,0,1,3,30.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1825.080761510262,0.06557718863119481,0.10440965454864198,17480.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +3314,2,27.0,3,0.0,9,300,4,0,52,6.0,0.0,0.0,969.0694308904046,26.539829130648343,0.0,23876.525846751298,0,50,2,14218,201703314,,,40.0,500.0,1.0,0.0,3.0,0.0,1.0,1.0,1608.691057897458,0.0,720.0,0.0,0.0,22587.0,0,1,3,70.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,995.6092600210529,0.04169824648741844,0.04407886217829074,22587.0,6,3,6,6_0,6_1,6_0_0 +3315,1,62.0,4,217.0,2,111,6,0,78,1.0,79.32280045694411,0.0,605.6683943065029,81.38880933398825,0.0,2364.3,0,50,2,14219,201703315,,,,,0.0,3.0,2.0,0.0,1.0,1.0,2710.3153404972436,0.0,450.0,0.0,0.0,9624.0,0,5,3,40.0,5,4.0,1,4,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,766.3800040974353,0.32414668362620447,0.07963217000181165,9624.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3316,2,60.0,3,0.0,7,112,6,0,77,1.0,0.0,0.0,1884.3016711757866,0.0,0.0,10254.32,0,50,1,1422,201703316,,,,,0.0,0.0,4.0,0.0,1.0,1.0,6933.947625356833,0.0,1400.0,0.0,0.0,9722.0,0,7,1,120.0,7,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1884.3016711757866,0.18375686258823468,0.19381831631102517,9722.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +3317,2,88.0,3,0.0,5,112,2,86,75,8.0,0.0,0.0,577.403869238866,0.0,2047.1054869440088,29220.84,50,60,1,14220,201703317,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2135.9995022880557,0.0,429.0,1157.0,0.0,42917.0,6,5,1,80.0,10,2.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2624.509356182875,0.08981635559357208,0.061153141090543955,28611.333333333332,8,4,8,8_1,8_1,8_0_0 +3318,2,37.0,2,0.0,9,111,6,55,37,9.0,0.0,0.0,1542.4355108338939,88.46609710216114,0.0,31707.68,71,50,1,14222,201703318,,,500.0,,2.0,0.0,4.0,0.0,2.0,1.5,2252.6818363407606,0.0,1146.0,0.0,0.0,51753.0,1,1,2,84.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1630.901607936055,0.05143553889581499,0.03151318006562045,34502.0,9,5,9,9_1,9_2,9_0_0 +3319,2,34.0,2,0.0,9,112,5,46,46,8.0,0.0,624.566843803548,3701.3068540952954,0.0,0.0,45178.16,30,50,1,14223,201703319,,,594.0,,2.0,0.0,4.0,1.0,3.0,1.8,3120.2840605298466,0.0,2750.0,0.0,0.0,52733.0,1,1,2,123.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4325.873697898844,0.09575143604562122,0.08203352166383182,29296.11111111111,8,4,8,8_1,8_0,8_0_0 +3320,1,23.0,3,160.0,9,111,4,0,55,5.0,0.0,0.0,582.7875882993683,0.0,0.0,15560.680000000002,0,31,8,14224,201703320,,,,160.0,1.0,0.0,1.0,0.0,1.0,1.0,3681.5108733417583,0.0,433.0,0.0,0.0,19562.0,0,1,3,31.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,582.7875882993683,0.03745257844126145,0.029791820279080273,19562.0,5,3,5,5_0,5_2,5_0_0 +3321,2,40.0,3,0.0,1,111,4,0,34,4.0,0.0,0.0,1749.7086946632305,116.7752481748527,0.0,39872.76,0,30,1,14225,201703321,,,250.0,,1.0,0.0,4.0,2.0,3.0,1.6,525.7099012127733,0.0,1300.0,0.0,0.0,26487.0,0,1,2,90.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1866.4839428380833,0.046811004375871726,0.07046792550451479,16554.375,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3322,2,28.0,1,0.0,3,111,2,47,47,9.0,0.0,0.0,969.0694308904046,0.0,1698.549064361494,26999.979999999996,31,31,1,14227,201703322,,,420.0,,2.0,0.0,4.0,0.0,2.0,1.5,3022.5582761577834,0.0,720.0,960.0,0.0,49844.0,1,1,2,90.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2667.618495251899,0.09880075819507642,0.05351935027790504,33229.333333333336,9,5,9,9_1,9_2,9_0_1 +3323,2,56.0,1,0.0,1,111,2,37,37,10.0,0.0,0.0,6253.843501344702,0.0,14141.355626757353,124352.76325400587,12,12,1,14228,201703323,,,400.0,,2.0,2.0,10.0,0.0,2.0,1.5,2270.0849995064714,9316.014032426281,793.0,2530.0,0.0,462602.0,1,1,1,300.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,20395.199128102056,0.16401082367942516,0.044088004652167646,308401.3333333333,10,5,10,10_1,10_4,10_1_0 +3324,2,42.0,4,0.0,5,111,2,0,37,7.0,0.0,0.0,2826.45250676368,191.08676974066807,0.0,23562.101349499142,0,44,1,14229,201703324,,,583.0,,1.0,0.0,4.0,0.0,1.0,1.0,2984.256783112631,0.0,2100.0,0.0,0.0,28047.0,0,1,2,120.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3017.539276504348,0.12806749414005433,0.10758866461669156,28047.0,8,4,8,8_1,8_3,8_0_0 +3325,2,46.0,3,0.0,9,111,2,54,47,8.0,0.0,0.0,2154.8335539660247,0.0,0.0,40771.901013421404,50,31,1,1423,201703325,,,,,3.0,0.0,5.0,1.0,3.0,2.0,2237.5516765281814,0.0,1601.0,0.0,0.0,62085.0,1,1,2,100.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2154.8335539660247,0.05285094637251991,0.03470779663310018,31042.5,8,4,8,8_1,8_3,8_0_0 +3326,2,32.0,2,0.0,1,111,4,56,38,9.0,0.0,0.0,2232.897480343307,0.0,0.0,61994.2,50,31,2,14230,201703326,,,701.0,800.0,2.0,0.0,5.0,0.0,2.0,1.5,3177.689861031322,0.0,1659.0,0.0,0.0,48483.0,1,1,3,96.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2232.897480343307,0.036017844900705344,0.046055266389111796,32322.0,9,5,9,9_0,9_2,9_1_0 +3327,2,74.0,3,0.0,1,111,1,0,75,7.0,0.0,0.0,1075.9781393184662,0.0,1503.4399509714665,22588.58931644525,0,71,2,14231,201703327,,,,712.0,0.0,0.0,1.0,0.0,1.0,1.0,6505.333405407951,1449.1577383774215,200.0,0.0,0.0,25423.0,0,5,3,27.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2579.4180902899325,0.1141911986691453,0.1014600200719794,25423.0,7,4,7,7_0,7_4,7_1_0 +3328,2,71.0,2,0.0,1,300,1,0,77,2.0,0.0,0.0,0.0,0.0,0.0,8114.68,0,30,1,14232,201703328,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2975.1801066400794,0.0,0.0,0.0,0.0,12175.0,0,5,1,55.0,0,0.0,1,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0.0,0.0,0.0,12175.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3329,1,32.0,3,305.0,2,111,2,0,85,1.0,0.0,0.0,630.7771216774892,0.0,1175.4396497636722,14030.256658454031,0,60,1,14233,201703329,,,385.0,,0.0,0.0,4.0,3.0,4.0,1.9,472.3459846983957,1133.0,0.0,0.0,0.0,15320.0,0,6,2,97.0,7,5.0,2,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1806.2167714411612,0.1287372580139375,0.11789926706534995,8063.1578947368425,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +3330,2,61.0,4,0.0,1,300,2,0,62,5.0,0.0,0.0,2422.6735772260117,99.08202875442048,0.0,16217.300000000001,0,70,1,14234,201703330,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2046.885949102992,0.0,1800.0,0.0,0.0,20820.0,0,1,2,80.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2521.7556059804324,0.1554978699278198,0.12112178703076044,20820.0,5,3,5,5_1,5_0,5_1_0 +3331,1,36.0,4,335.0,4,111,3,0,55,5.0,0.0,0.0,965.031641595028,0.0,1256.2185788506883,12690.699999999999,0,42,2,14235,201703331,,,,33.0,1.0,0.0,3.0,1.0,2.0,1.3,976.8200042388605,0.0,717.0,710.0,0.0,24940.0,0,1,3,67.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2221.2502204457164,0.1750297635627441,0.08906376184625968,19184.615384615383,5,3,5,5_0,5_2,5_0_1 +3332,2,68.0,1,0.0,4,111,2,75,74,9.0,0.0,208.188947934516,2203.287025510545,291.9381204371318,0.0,40446.0,60,60,1,14237,201703332,,,216.0,,0.0,1.0,6.0,0.0,2.0,1.5,1549.545670986333,0.0,1637.0,0.0,0.0,55217.0,5,5,1,147.0,5,4.0,3,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2703.4140938821924,0.06684008539490166,0.04895981480127846,36811.333333333336,9,5,9,9_1,9_2,9_0_1 +3333,1,22.0,1,124.0,99,111,4,0,63,4.0,0.0,0.0,1065.976373979445,0.0,0.0,16663.26,0,50,2,14238,201703333,,,,174.0,1.0,0.0,2.0,0.0,1.0,1.0,3101.109066721213,0.0,792.0,0.0,0.0,17544.0,0,1,3,34.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1065.976373979445,0.06397165824571213,0.060760167235490485,17544.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +3334,2,59.0,4,0.0,5,300,2,85,78,6.0,0.0,832.755791738064,1144.0403003567276,168.43944888251482,0.0,18783.780000000002,50,50,1,1424,201703334,,,420.0,,0.0,3.0,5.0,1.0,3.0,1.8,2889.3898260652772,0.0,850.0,0.0,0.0,39220.0,6,5,3,80.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2145.2355409773063,0.11420680720160191,0.05469748957106849,21788.888888888887,6,3,6,6_1,6_0,6_0_0 +3335,2,41.0,2,0.0,1,111,2,43,33,9.0,0.0,0.0,960.9938522996513,0.0,2340.812929323184,72490.68,33,31,1,14242,201703335,,,407.0,,2.0,0.0,5.0,2.0,4.0,2.1,1757.4083585219946,0.0,714.0,1323.0,0.0,74274.0,1,1,2,150.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3301.8067816228354,0.04554801778135942,0.04445440910174268,35368.57142857143,9,5,9,9_1,9_2,9_1_0 +3336,2,52.0,3,0.0,9,400,4,0,22,8.0,0.0,0.0,2691.859530251124,0.0,0.0,24655.907849749772,0,50,1,14243,201703336,,,200.0,,1.0,2.0,4.0,0.0,1.0,1.0,1944.1585349853315,0.0,2000.0,0.0,0.0,29089.0,0,1,2,95.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2691.859530251124,0.10917705998314894,0.092538744207471,29089.0,8,4,8,8_1,8_0,8_0_0 +3337,1,24.0,4,119.0,8,111,6,84,42,8.0,0.0,0.0,721.4183541073012,0.0,0.0,43700.840000000004,30,44,2,14244,201703337,,,,661.0,1.0,0.0,2.0,0.0,2.0,1.5,5703.476051548948,0.0,536.0,0.0,0.0,40866.0,3,1,3,47.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,721.4183541073012,0.016508111837376608,0.01765326565133121,27244.0,7,4,7,7_0,7_3,7_0_0 +3338,2,36.0,3,0.0,1,111,2,38,31,7.0,0.0,0.0,1884.3016711757866,0.0,2618.59647422397,130995.78,12,10,1,14247,201703338,,,303.0,,2.0,0.0,6.0,2.0,4.0,2.1,2099.1168543991166,0.0,1400.0,1480.0,0.0,85531.0,1,1,2,120.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4502.898145399757,0.03437437561270872,0.052646387221004745,40729.04761904762,10,5,10,10_1,10_3,10_1_0 +3339,2,69.0,3,0.0,6,221,2,78,77,6.0,0.0,555.170527825376,1144.0403003567276,0.0,0.0,17592.4,71,71,1,14248,201703339,,,320.0,,0.0,2.0,4.0,0.0,2.0,1.5,1819.619152899902,0.0,850.0,0.0,0.0,33435.0,5,5,1,80.0,1,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1699.2108281821036,0.09658777814181711,0.05082131982001207,22290.0,6,3,6,6_1,6_1,6_0_0 +3340,0,31.0,2,0.0,8,111,1,0,52,3.0,0.0,0.0,0.0,0.0,0.0,18794.199999999997,0,43,2,1425,201703340,,,,,1.0,0.0,1.0,2.0,3.0,1.6,1693.4592965452412,0.0,0.0,0.0,0.0,24630.0,0,1,5,10.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,15393.75,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +3341,2,40.0,3,0.0,99,111,2,0,47,5.0,0.0,0.0,646.0462872602698,0.0,318.4779495677801,12709.1,0,50,2,14250,201703341,,,,385.0,1.0,0.0,3.0,0.0,1.0,1.0,3473.143100300706,0.0,480.0,180.0,0.0,18861.0,0,1,3,55.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,964.5242368280499,0.0758924107000535,0.05113855240061767,18861.0,5,3,5,5_0,5_3,5_0_0 +3342,2,68.0,3,0.0,9,111,6,78,75,5.0,0.0,0.0,3234.2692255967254,0.0,0.0,37583.6458467513,50,50,1,14251,201703342,,,,,1.0,1.0,4.0,1.0,3.0,2.0,2650.3641762413417,0.0,2403.0,0.0,0.0,37810.0,5,5,1,180.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3234.2692255967254,0.08605522835077196,0.08554004828343627,18905.0,5,3,5,5_1,5_2,5_0_0 +3343,2,67.0,2,0.0,8,211,2,86,74,8.0,0.0,277.585263912688,565.290501352736,0.0,955.4338487033403,38775.16000000001,70,41,1,14255,201703343,,,340.0,,0.0,3.0,5.0,0.0,2.0,1.5,1534.925616143607,0.0,420.0,540.0,0.0,42028.0,5,5,1,120.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1798.3096139687643,0.04637787733097075,0.04278836999069107,28018.666666666668,8,4,8,8_1,8_2,8_0_0 +3344,1,39.0,4,223.0,9,112,4,0,46,3.0,0.0,0.0,767.1799661215703,0.0,0.0,23678.08,0,31,1,14256,201703344,,,334.0,,1.0,0.0,3.0,1.0,2.0,1.3,469.76021580775665,0.0,570.0,0.0,0.0,18548.0,0,1,2,65.0,8,2.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,767.1799661215703,0.03240042968524349,0.04136187007340793,14267.692307692307,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +3345,2,54.0,2,0.0,5,111,2,0,42,5.0,0.0,0.0,932.7293272320144,0.0,2123.1863304518674,31993.597540253897,0,20,1,14257,201703345,,,300.0,,1.0,0.0,4.0,2.0,3.0,2.0,1378.044724455896,0.0,693.0,1200.0,0.0,36282.0,0,1,2,120.0,7,5.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3055.915657683882,0.09551647493968039,0.08422676968424789,18141.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3347,1,28.0,5,55.0,4,111,1,0,63,2.0,0.0,0.0,84.7935752029104,0.0,0.0,22710.9,0,71,2,14259,201703347,,,,267.0,1.0,0.0,2.0,1.0,2.0,1.3,4217.943988354962,0.0,63.0,0.0,0.0,14141.0,0,1,3,56.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,84.7935752029104,0.003733606999410433,0.005996292709349438,10877.692307692307,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3348,2,49.0,2,0.0,8,111,2,54,48,5.0,0.0,0.0,768.2898745939409,0.0,1431.6917181587535,34404.92,50,50,1,1426,201703348,,,515.0,,2.0,2.0,4.0,2.0,4.0,2.1,1394.3536426629225,1380.0,0.0,0.0,0.0,42114.0,1,1,3,87.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2199.9815927526943,0.06394380782611017,0.052238723292793235,20054.285714285714,5,3,5,5_1,5_3,5_0_0 +3349,2,56.0,2,0.0,99,111,2,0,22,7.0,0.0,0.0,3092.9466002585414,61.9262679715128,0.0,12842.790875301627,0,50,1,14261,201703349,,,330.0,,1.0,2.0,7.0,0.0,1.0,1.0,3278.9882436538305,0.0,2298.0,0.0,0.0,24770.0,0,1,1,167.0,4,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3154.8728682300543,0.24565321501086568,0.12736668826120526,24770.0,7,4,7,7_1,7_1,7_0_0 +3350,2,35.0,1,0.0,5,111,4,46,46,4.0,0.0,0.0,767.1799661215703,141.54575536345783,0.0,20873.01087530163,20,20,2,14263,201703350,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3480.0870508742537,0.0,570.0,0.0,0.0,26498.0,1,1,3,45.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,908.7257214850281,0.04353591951414611,0.03429412489565356,17665.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +3351,2,72.0,2,0.0,9,221,4,52,74,9.0,0.0,124.91336876070959,1850.6534270476477,44.23304855108057,0.0,55379.13999999999,50,44,1,14264,201703351,,,624.0,,1.0,8.0,4.0,0.0,2.0,1.5,1813.462821519107,0.0,1375.0,0.0,0.0,49977.0,1,5,2,100.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2019.7998443594379,0.03647221398453349,0.0404145875974836,33318.0,9,5,9,9_1,9_1,9_0_0 +3352,2,53.0,3,0.0,2,111,1,0,43,4.0,0.0,0.0,567.9823608829871,0.0,0.0,43296.920000000006,0,10,2,14265,201703352,,,,,1.0,0.0,4.0,1.0,2.0,1.5,3099.8021941390807,0.0,422.0,0.0,0.0,27946.0,0,1,2,84.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,567.9823608829871,0.013118308666828657,0.020324281145172374,18630.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3353,2,52.0,3,0.0,9,112,4,65,63,6.0,0.0,416.377895869032,1157.4995980079832,0.0,0.0,17869.18,50,71,1,14266,201703353,,,430.0,,2.0,2.0,4.0,0.0,2.0,1.5,2706.9996353106762,0.0,860.0,0.0,0.0,30754.0,1,1,2,85.0,9,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1573.8774938770152,0.08807776819512789,0.051176350844671106,20502.666666666668,5,3,5,5_1,5_0,5_0_0 +3354,2,51.0,2,0.0,7,111,2,75,33,10.0,0.0,0.0,490.22094949767074,0.0,161.08285188979997,65247.044054233425,50,60,1,14267,201703354,,,333.0,,1.0,0.0,6.0,1.0,3.0,1.8,2263.2907331573692,155.266900540438,300.0,0.0,0.0,73599.0,5,1,1,148.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,651.3038013874707,0.009982119662710025,0.008849356667719271,40888.333333333336,10,5,10,10_1,10_3,10_0_0 +3355,1,51.0,3,256.0,9,111,2,0,85,3.0,0.0,0.0,33.64824412813905,0.0,88.46609710216114,19285.44,0,71,2,14268,201703355,,,18.0,65.0,0.0,0.0,2.0,0.0,1.0,1.0,3609.0858137184728,0.0,25.0,50.0,0.0,14942.0,0,7,3,53.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,122.1143412303002,0.006331944784785839,0.008172556634339459,14942.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +3356,1,71.0,4,132.0,9,111,2,0,77,3.0,0.0,0.0,244.96198900096664,0.0,456.4814173839504,19810.32,0,70,2,14269,201703356,,,220.0,438.0,0.0,4.0,2.0,0.0,1.0,1.0,2924.7890909581024,440.0,0.0,0.0,0.0,14683.0,0,5,3,45.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,701.443406384917,0.035407979597750924,0.04777248562180188,14683.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +3357,2,26.0,3,0.0,99,400,5,13,54,1.0,1269.1648073111057,0.0,471.07541779394666,194.62541362475451,0.0,29403.699999999997,31,31,1,1427,201703357,,,300.0,,2.0,0.0,4.0,0.0,2.0,1.5,2918.4050591560895,0.0,350.0,0.0,0.0,12243.0,1,1,3,80.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1934.865638729807,0.06580347502966657,0.15803852313402,8162.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3358,1,43.0,4,465.0,99,120,2,69,69,2.0,2379.684013708323,0.0,1736.249397011975,176.75526201011795,0.0,19806.198002984744,50,50,1,14270,201703358,,,480.0,57.0,5.0,0.0,4.0,4.0,6.0,3.5,1779.0202014026113,0.0,1290.0,0.0,0.0,37200.0,4,4,3,85.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,4292.688672730415,0.21673461368423755,0.11539485679382837,10628.57142857143,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +3359,2,69.0,4,0.0,2,111,1,0,77,4.0,0.0,0.0,527.6044679292203,0.0,0.0,17267.92,0,71,8,14271,201703359,,,,,0.0,2.0,4.0,0.0,1.0,1.0,4308.702611802013,0.0,392.0,0.0,0.0,17967.0,0,5,1,71.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,527.6044679292203,0.030554025495208473,0.029365195521189973,17967.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +3360,1,37.0,3,80.0,3,111,2,81,62,3.0,0.0,0.0,672.964882562781,0.0,1415.4575536345783,30196.96661261069,71,50,2,14272,201703360,,,,520.0,2.0,0.0,3.0,2.0,4.0,2.1,3085.957813357209,0.0,500.0,800.0,0.0,28548.0,4,1,3,60.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2088.4224361973593,0.06916000745999447,0.07315477218009525,13594.285714285714,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3361,1,52.0,4,89.0,9,111,2,0,62,4.0,602.8532834727753,0.0,485.8806452103279,0.0,566.1830214538313,21044.1,0,50,1,14274,201703361,,,280.0,449.0,1.0,2.0,5.0,1.0,2.0,1.5,597.8133379388727,0.0,361.0,320.0,0.0,25511.0,0,1,3,100.0,6,5.0,2,7,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1654.9169501369345,0.07864042416339662,0.0648707204788889,17007.333333333332,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +3362,2,35.0,3,0.0,8,111,2,55,46,8.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,35484.73999311765,43,20,2,14275,201703362,,,425.0,376.0,2.0,0.0,3.0,1.0,3.0,1.8,3054.7998408243434,1200.0,0.0,0.0,0.0,46185.0,1,1,3,70.0,7,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1913.0274719588647,0.053911272065961344,0.04142096940476052,25658.333333333332,7,4,7,7_0,7_2,7_0_0 +3363,2,33.0,3,0.0,5,111,1,0,46,4.0,0.0,0.0,403.7789295376686,0.0,0.0,9486.390875301628,0,71,2,14276,201703363,,,,253.0,1.0,0.0,1.0,0.0,1.0,1.0,6458.292869316716,0.0,300.0,0.0,0.0,18180.0,0,1,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,403.7789295376686,0.0425640198517363,0.02221006213078485,18180.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +3364,2,70.0,2,0.0,8,400,5,78,31,8.0,0.0,555.170527825376,2422.6735772260117,0.0,0.0,61033.10175060325,60,31,1,14278,201703364,,,,,1.0,3.0,8.0,0.0,2.0,1.5,1313.5492836428482,0.0,1800.0,0.0,0.0,47573.0,5,5,1,240.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2977.8441050513875,0.04879064015490503,0.06259525581845558,31715.333333333332,8,4,8,8_1,8_1,8_0_0 +3365,2,42.0,2,0.0,9,111,2,0,43,8.0,0.0,0.0,740.261370819059,0.0,318.4779495677801,16979.92,0,33,2,14279,201703365,,,,390.0,1.0,0.0,2.0,0.0,1.0,1.0,2661.881875877781,0.0,550.0,180.0,0.0,30929.0,0,1,3,45.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1058.7393203868392,0.06235243277864909,0.03423128198088652,30929.0,8,4,8,8_0,8_3,8_0_0 +3366,2,43.0,1,0.0,8,112,2,43,21,10.0,0.0,277.585263912688,686.4241802140366,0.0,1742.7821129125746,53030.600000000006,30,31,1,14280,201703366,,,712.0,,2.0,0.0,6.0,2.0,4.0,2.1,2148.781142962786,0.0,510.0,985.0,0.0,146206.0,1,1,2,142.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2706.7915570392993,0.051042069240010465,0.018513546345836008,69621.90476190476,10,5,10,10_1,10_0,10_0_0 +3367,1,45.0,4,345.0,4,111,1,85,63,2.0,0.0,0.0,45.761612014269105,0.0,61.9262679715128,7840.671191295744,20,71,8,14281,201703367,,,,,1.0,0.0,1.0,1.0,3.0,1.8,3731.613998077194,0.0,34.0,35.0,0.0,23710.0,6,4,3,33.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,107.6878799857819,0.01373452314966743,0.004541876001087386,13172.222222222223,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +3368,2,35.0,4,0.0,1,111,2,52,64,4.0,0.0,0.0,840.6650077078629,0.0,1566.561227840375,18309.857755557958,50,50,1,14283,201703368,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.1,1944.134482723508,1510.0,0.0,0.0,0.0,36415.0,1,1,2,180.0,7,5.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2407.226235548238,0.13147159675872,0.06610534767398704,17340.47619047619,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +3369,2,76.0,3,0.0,1,111,5,0,78,3.0,0.0,555.170527825376,134.5929765125562,0.0,309.631339857564,15689.987849749776,0,50,1,14284,201703369,,,150.0,,0.0,0.0,3.0,0.0,1.0,1.0,2386.143589702262,0.0,100.0,175.0,0.0,15392.0,0,5,1,70.0,6,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,999.3948441954963,0.06369634277386867,0.06492949871332486,15392.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +3370,1,40.0,3,264.0,9,112,1,0,54,6.0,0.0,0.0,468.38355826369553,1769.3219420432229,0.0,30335.879999999997,0,42,2,14285,201703370,1000.0,1000.0,,231.0,1.0,0.0,4.0,2.0,3.0,1.8,1184.0341932847698,0.0,348.0,0.0,0.0,39994.0,0,1,3,84.0,8,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,2237.7055003069186,0.07376431803880154,0.055951030162197296,22218.888888888887,6,3,6,6_0,6_0,6_0_0 +3371,2,74.0,2,0.0,6,111,2,0,74,9.0,0.0,0.0,1382.2698687839522,0.0,0.0,28429.74,0,44,2,14286,201703371,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2374.295183132822,0.0,1027.0,0.0,0.0,35667.0,0,5,1,52.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1382.2698687839522,0.04862055962467304,0.03875486777087931,35667.0,9,5,9,9_0,9_3,9_0_0 +3372,2,64.0,2,0.0,5,111,5,75,77,6.0,0.0,832.755791738064,1243.6391029760193,0.0,0.0,26993.739999999998,50,50,1,14287,201703372,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1849.648617991438,0.0,924.0,0.0,0.0,32672.0,5,5,1,90.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2076.3948947140834,0.07692134897624722,0.06355273306544085,21781.333333333332,6,3,6,6_1,6_3,6_0_0 +3373,1,84.0,2,89.0,99,111,1,0,78,2.0,0.0,0.0,524.9126083989692,0.0,0.0,8036.379999999999,0,71,2,14288,201703373,,,289.0,190.0,0.0,4.0,3.0,0.0,1.0,1.0,3645.332132007905,0.0,390.0,0.0,0.0,12651.0,0,5,3,60.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,524.9126083989692,0.06531704677964073,0.04149178787439484,12651.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3374,2,59.0,1,0.0,6,120,2,54,37,9.0,0.0,208.188947934516,1938.1388617808093,60.15694602946958,0.0,64386.7,50,50,1,14289,201703374,,,300.0,,2.0,3.0,5.0,0.0,2.0,1.5,1762.6953326562823,0.0,1440.0,0.0,0.0,56762.0,1,1,1,105.0,0,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2206.4847557447947,0.03426926299600375,0.03887256889723397,37841.333333333336,9,5,9,9_1,9_1,9_0_0 +3375,2,70.0,4,0.0,7,112,2,0,78,7.0,0.0,0.0,1951.598159432065,176.9321942043223,0.0,16170.56,0,50,1,14290,201703375,,,430.0,,0.0,6.0,4.0,0.0,1.0,1.0,3165.2179297143293,0.0,1450.0,0.0,0.0,24410.0,0,5,1,100.0,6,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2128.530353636387,0.13162997160496528,0.0871991132173858,24410.0,7,4,7,7_1,7_1,7_0_0 +3376,2,80.0,3,0.0,1,112,2,0,75,1.0,0.0,0.0,275.9156018507402,0.0,3533.3359182603162,14460.58,0,41,1,14291,201703376,,,160.0,,0.0,3.0,9.0,0.0,1.0,1.0,2183.403629003215,0.0,205.0,1997.0,0.0,9830.0,0,5,5,191.0,7,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3809.2515201110564,0.26342314901000213,0.38751287081495994,9830.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3377,2,76.0,3,0.0,5,112,2,0,86,4.0,0.0,0.0,2597.6444466923344,0.0,0.0,15774.58,0,70,1,14295,201703377,,,241.0,,0.0,4.0,6.0,0.0,1.0,1.0,1448.359979793216,0.0,1930.0,0.0,0.0,17158.0,0,5,1,110.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2597.6444466923344,0.16467281199831213,0.15139552667515646,17158.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3378,2,40.0,3,0.0,3,300,4,56,64,4.0,0.0,0.0,2853.3711020661913,0.0,0.0,46017.21150728986,42,50,1,14299,201703378,,,260.0,689.0,2.0,0.0,6.0,2.0,4.0,2.1,2547.063079984532,0.0,2120.0,0.0,0.0,38219.0,1,1,3,112.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2853.3711020661913,0.06200660597642193,0.07465844480667184,18199.52380952381,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +3379,2,44.0,2,0.0,9,111,4,38,37,9.0,0.0,283.1369691909417,4306.975248401798,0.0,0.0,34928.880000000005,31,31,1,143,201703379,,,350.0,,2.0,0.0,6.0,0.0,2.0,1.5,1874.2153931630617,0.0,3200.0,0.0,0.0,63781.0,1,1,2,150.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4590.112217592739,0.13141309476836185,0.07196676467275112,42520.666666666664,10,5,10,10_1,10_4,10_0_0 +3380,1,39.0,4,437.0,10,111,4,0,68,1.0,0.0,0.0,874.8543473316153,0.0,0.0,30807.837540253902,0,71,1,1430,201703380,,,160.0,5.0,3.0,0.0,4.0,3.0,4.0,2.5,775.9540567623944,0.0,650.0,0.0,0.0,23820.0,0,4,3,80.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,874.8543473316153,0.028397135832351744,0.036727722390076205,9528.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +3381,2,56.0,1,0.0,7,111,2,77,37,10.0,0.0,0.0,779.2933340077004,0.0,1884.3278682760324,60532.62,42,12,1,14302,201703381,,,299.0,,1.0,4.0,4.0,0.0,2.0,1.5,1342.2197675460852,0.0,579.0,1065.0,0.0,76066.0,6,1,2,95.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2663.6212022837326,0.0440030714395599,0.03501723769205338,50710.666666666664,10,5,10,10_1,10_3,10_0_0 +3382,2,64.0,1,0.0,1,111,2,74,46,9.0,0.0,0.0,3157.2259991465494,0.0,5883.4229954190505,105591.51999999999,41,20,1,14304,201703382,,,855.0,,1.0,3.0,8.0,0.0,2.0,1.5,2149.6083158134293,5671.0,0.0,0.0,0.0,73504.0,6,1,2,188.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,9040.6489945656,0.08561908185965691,0.12299533351335437,49002.666666666664,10,5,10,10_1,10_4,10_1_0 +3383,2,62.0,4,0.0,7,111,2,52,34,5.0,0.0,0.0,1235.9445808685134,0.0,2303.1562422553857,32931.64,71,10,1,14305,201703383,,,,,2.0,0.0,5.0,2.0,4.0,2.5,1844.6913122816425,2220.0,0.0,0.0,0.0,56670.0,1,1,2,89.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3539.1008231238993,0.10746810128872718,0.062451046817079574,22668.0,6,3,6,6_1,6_4,6_0_0 +3384,2,36.0,4,0.0,9,120,4,0,56,1.0,0.0,0.0,2059.2725406421096,371.5576078290768,0.0,14651.880000000001,0,50,1,14307,201703384,,,480.0,,1.0,0.0,4.0,3.0,4.0,2.3,533.8547659296314,0.0,1530.0,0.0,0.0,21800.0,0,1,3,85.0,0,1.0,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2430.8301484711865,0.16590568230637887,0.11150597011335718,9478.260869565218,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +3385,2,76.0,3,0.0,5,111,5,77,78,3.0,0.0,27.7585263912688,936.7671165273911,700.6514890491163,0.0,15789.52,71,50,1,14308,201703385,,,500.0,,0.0,3.0,4.0,0.0,2.0,1.5,2186.543899717598,0.0,696.0,0.0,0.0,21590.0,5,5,1,90.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1665.1771319677762,0.1054609090059594,0.07712724094338935,14393.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3386,2,88.0,4,0.0,99,111,1,0,78,3.0,0.0,0.0,274.5696720856146,0.0,0.0,9582.41665845403,0,70,2,14309,201703386,,,,210.0,0.0,3.0,1.0,0.0,1.0,1.0,2820.8685397010227,0.0,204.0,0.0,0.0,15610.0,0,5,3,25.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,274.5696720856146,0.0286534891846283,0.01758934478447243,15610.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +3387,2,53.0,4,0.0,1,112,2,68,55,4.0,0.0,0.0,740.261370819059,0.0,1680.8558449410618,23749.079999999998,60,50,1,14310,201703387,,,,,2.0,0.0,4.0,1.0,3.0,2.0,3054.799485256654,0.0,550.0,950.0,0.0,37430.0,1,1,3,70.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2421.117215760121,0.10194572656120242,0.06468386897569119,18715.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +3388,1,39.0,2,74.0,7,111,2,54,63,3.0,0.0,0.0,780.639263772826,0.0,1698.549064361494,29939.431191295746,50,50,1,14311,201703388,,,390.0,597.0,2.0,0.0,4.0,3.0,5.0,2.6,1512.5628536272516,0.0,580.0,960.0,0.0,41292.0,4,1,3,90.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2479.18832813432,0.08280679456779698,0.06004040318062385,15881.538461538461,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +3389,2,45.0,3,0.0,9,112,2,47,34,7.0,0.0,0.0,765.8340363564447,0.0,1976.33260926228,47844.2316935026,12,20,1,14312,201703389,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.3,1733.2763074081238,0.0,569.0,1117.0,0.0,57112.0,1,1,1,100.0,6,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2742.1666456187245,0.057314467148003534,0.04801384377396562,24831.304347826088,7,4,7,7_1,7_0,7_0_0 +3390,2,53.0,1,0.0,6,111,2,48,45,9.0,0.0,544.0671172688684,888.3136449828709,1026.2067263850693,0.0,75081.33672205292,50,42,1,14313,201703390,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1809.6276730153716,0.0,660.0,0.0,0.0,52915.0,1,1,2,78.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2458.5874886368083,0.03274565419284379,0.04646295924854594,35276.666666666664,9,5,9,9_1,9_3,9_0_0 +3391,2,66.0,1,0.0,7,300,2,0,75,8.0,0.0,0.0,473.76727732419783,1804.7083808840873,0.0,55374.12,0,41,1,14314,201703391,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1592.9793900620816,0.0,352.0,0.0,0.0,26603.0,0,5,1,110.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2278.475658208285,0.041146941174113195,0.08564732015969195,26603.0,7,4,7,7_1,7_1,7_0_0 +3392,0,81.0,3,0.0,1,300,6,0,71,3.0,1903.7472109666587,0.0,471.07541779394666,265.39829130648343,0.0,40613.2562391433,0,71,1,14315,201703392,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2945.5473506441303,0.0,350.0,0.0,0.0,14622.0,0,5,5,100.0,0,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2640.2209200670886,0.06500884599158113,0.18056496512563866,14622.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +3393,2,68.0,3,0.0,4,111,2,77,78,5.0,0.0,0.0,56.5290501352736,0.0,123.8525359430256,23962.42,50,70,1,14317,201703393,,,12.0,,0.0,3.0,3.0,0.0,2.0,1.5,1744.6394377355389,0.0,42.0,70.0,0.0,30842.0,5,5,1,73.0,5,4.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,180.3815860782992,0.007527686522408805,0.005848569680250931,20561.333333333332,5,3,5,5_1,5_2,5_0_1 +3394,2,28.0,1,0.0,9,120,1,0,47,5.0,0.0,0.0,511.45331074771354,0.0,1937.407526537329,18215.88,0,30,2,1432,201703394,580.0,580.0,,,1.0,0.0,2.0,0.0,1.0,1.0,3810.4454501130595,0.0,380.0,1095.0,0.0,21001.0,0,1,2,48.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2448.8608372850426,0.13443549459510287,0.11660686811509179,21001.0,5,3,5,5_0,5_1,5_0_0 +3395,2,68.0,4,0.0,2,111,2,0,77,4.0,0.0,0.0,428.68348075169166,0.0,798.8424804219131,18069.54,0,71,2,14321,201703395,,,,312.0,0.0,0.0,3.0,0.0,1.0,1.0,3391.8334352517763,770.0,0.0,0.0,0.0,17634.0,0,5,3,64.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1227.5259611736049,0.06793343721940928,0.0696113168409666,17634.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +3396,2,47.0,3,0.0,4,111,4,52,64,4.0,0.0,0.0,0.0,0.0,0.0,54310.55999999999,44,43,1,14322,201703396,,,,,2.0,0.0,5.0,3.0,5.0,2.8,3051.7210874327434,0.0,0.0,0.0,0.0,47160.0,1,1,2,106.0,6,4.0,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0.0,0.0,0.0,16842.857142857145,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +3397,2,30.0,3,0.0,4,111,2,56,48,7.0,0.0,0.0,33.403907591040905,0.0,62.24746600690232,40777.58,44,43,1,14323,201703397,,,252.0,,2.0,0.0,4.0,1.0,3.0,1.8,1055.2969555364512,60.0,0.0,0.0,0.0,48354.0,1,1,2,103.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,95.65137359794323,0.002345685388832374,0.0019781481076631352,26863.333333333332,7,4,7,7_1,7_3,7_0_1 +3398,2,45.0,3,0.0,9,112,4,68,54,6.0,0.0,0.0,1691.8337147628313,0.0,0.0,26286.44,50,41,1,14324,201703398,,,494.0,,2.0,2.0,3.0,1.0,3.0,2.0,754.6291282019648,0.0,1257.0,0.0,0.0,43385.0,1,1,3,70.0,9,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1691.8337147628313,0.06436146221256402,0.03899582147661245,21692.5,6,3,6,6_1,6_1,6_0_0 +3399,1,29.0,3,9999.0,4,111,1,0,22,7.0,0.0,0.0,497.99401309645793,0.0,0.0,5766.780000000001,0,20,8,14325,201703399,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2949.173861640881,0.0,370.0,0.0,0.0,26325.0,0,1,3,40.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,497.99401309645793,0.0863556461485366,0.018917151494642275,26325.0,7,4,7,7_0,7_2,7_0_1 +3400,2,51.0,3,0.0,99,111,1,85,48,6.0,0.0,0.0,250.34293631335453,0.0,184.0094819724952,36832.06,41,50,2,14328,201703400,,,80.0,284.0,2.0,5.0,2.0,1.0,3.0,2.0,965.5732296930511,0.0,186.0,104.0,0.0,44688.0,6,1,3,26.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,434.3524182858497,0.011792781025168012,0.00971966564370412,22344.0,6,3,6,6_0,6_3,6_0_0 +3401,1,30.0,4,388.0,5,111,1,67,67,5.0,0.0,0.0,646.0462872602698,0.0,0.0,22047.22668278627,50,43,2,14329,201703401,,,350.0,161.0,2.0,0.0,4.0,2.0,4.0,2.1,2102.971435263824,0.0,480.0,0.0,0.0,42236.0,4,1,3,80.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,646.0462872602698,0.029302836885361228,0.015296104916665162,20112.38095238095,5,3,5,5_0,5_3,5_0_0 +3402,1,80.0,3,9.0,6,111,6,64,74,2.0,0.0,430.2571590646664,1668.9529087556969,219.39592081335965,0.0,55459.78,71,31,1,1433,201703402,,,280.0,811.0,1.0,1.0,4.0,0.0,2.0,1.5,1528.76291101148,0.0,1240.0,0.0,0.0,18757.0,5,5,3,103.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2318.605988633723,0.04180698135899066,0.12361283726788522,12504.666666666666,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +3403,2,45.0,3,0.0,1,111,2,78,52,4.0,0.0,716.169980894735,1211.3367886130059,0.0,849.274532180747,32367.604177580943,70,50,1,14330,201703403,,,382.0,,1.0,3.0,5.0,1.0,3.0,1.8,2390.403025908351,0.0,900.0,480.0,0.0,34393.0,5,1,1,96.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2776.781301688488,0.08578890443833943,0.08073681568018166,19107.222222222223,5,3,5,5_1,5_2,5_1_0 +3404,2,52.0,2,0.0,1,111,4,37,38,10.0,0.0,0.0,2212.649028239809,0.0,1978.7889095585247,75857.40480826443,12,12,2,14331,201703404,,,,,2.0,0.0,2.0,2.0,4.0,2.5,2381.9840145632456,1907.3440605653952,855.0,0.0,0.0,148073.0,1,1,2,40.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4191.437937798333,0.0552541699573367,0.028306564585024504,59229.2,10,5,10,10_0,10_4,10_1_0 +3405,2,49.0,2,0.0,4,111,1,0,34,10.0,0.0,0.0,401.0870700074175,0.0,617.4933577730848,55885.92,31,10,2,14332,201703405,,,,390.0,2.0,0.0,3.0,1.0,3.0,2.0,1387.460405926735,0.0,298.0,349.0,0.0,89907.0,1,1,3,68.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1018.5804277805023,0.018226065309124417,0.011329267218130983,44953.5,10,5,10,10_0,10_4,10_0_1 +3406,1,47.0,3,568.0,3,111,1,85,85,2.0,0.0,0.0,1419.955902207468,0.0,636.9558991355602,30655.6458467513,50,71,2,14333,201703406,,,,23.0,1.0,1.0,6.0,6.0,8.0,3.7,2605.0034452389136,0.0,1055.0,360.0,0.0,48206.0,7,6,3,130.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2056.911801343028,0.06709732398480872,0.042669207180496785,13028.648648648648,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3407,2,83.0,3,0.0,4,111,2,0,86,1.0,0.0,0.0,532.9881869897225,0.0,2565.5168159626733,16061.62,0,70,1,14334,201703407,,,120.0,,0.0,3.0,5.0,1.0,2.0,1.5,1463.7651001169115,0.0,396.0,1450.0,0.0,11382.0,0,5,1,82.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3098.505002952396,0.1929136041664786,0.2722285189731502,7588.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +3408,2,43.0,3,0.0,5,111,2,43,47,6.0,0.0,0.0,417.2382271889242,0.0,1733.9355032023584,38246.04031599411,33,31,1,14335,201703408,,,255.0,,2.0,0.0,4.0,2.0,4.0,2.1,2630.846764928927,0.0,310.0,980.0,0.0,47817.0,1,1,2,100.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2151.173730391283,0.05624565870395957,0.04498763474060026,22770.0,6,3,6,6_1,6_3,6_0_0 +3409,1,52.0,4,315.0,1,400,2,0,69,2.0,0.0,0.0,908.2154641665105,2335.504963497054,563.7899816142999,20410.574189817013,0,50,2,14336,201703409,,,,137.0,1.0,0.0,3.0,1.0,2.0,1.3,905.2257043672322,543.434151891533,450.0,0.0,0.0,15610.0,0,4,3,79.0,0,0.0,2,9,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,3807.5104092778647,0.18654597239001047,0.24391482442523157,12007.692307692307,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +3410,1,24.0,2,256.0,99,300,2,0,62,1.0,0.0,0.0,121.13367886130058,0.0,1273.9117982711205,12511.611502734113,0,30,2,14338,201703410,,,,144.0,1.0,0.0,3.0,0.0,1.0,1.0,923.6542147868479,0.0,90.0,720.0,0.0,7424.0,0,2,3,62.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1395.045477132421,0.11150006350721225,0.18791022051891446,7424.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +3411,2,67.0,2,0.0,6,112,5,81,22,2.0,0.0,563.4980857427566,2826.45250676368,0.0,0.0,19676.216855924085,71,31,1,14339,201703411,,,400.0,,2.0,1.0,3.0,0.0,2.0,1.5,1451.6464270747244,0.0,2100.0,0.0,0.0,34730.0,4,1,2,70.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3389.950592506437,0.17228670619605393,0.09760871271253777,23153.333333333332,6,3,6,6_1,6_0,6_0_0 +3412,2,64.0,3,0.0,7,112,2,42,77,5.0,0.0,1387.9263195634398,2115.8015907773834,636.9558991355602,0.0,19828.199999999997,50,60,1,14340,201703412,,,,,1.0,3.0,4.0,0.0,2.0,1.5,1868.0632399236065,0.0,1572.0,0.0,0.0,27992.0,1,5,1,110.0,4,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4140.683809476383,0.20882802319304747,0.14792382857517802,18661.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3413,2,46.0,2,0.0,1,112,5,0,67,4.0,0.0,564.8860120623201,269.1859530251124,123.8525359430256,0.0,11240.0,0,71,1,14343,201703413,,,204.0,,1.0,1.0,3.0,1.0,2.0,1.5,3682.7127249606965,0.0,200.0,0.0,0.0,25790.0,0,1,2,80.0,8,1.0,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,957.9245010304581,0.08522459973580589,0.037143253238870036,17193.333333333332,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +3414,2,83.0,3,0.0,2,111,2,0,75,4.0,0.0,0.0,524.9126083989692,0.0,2247.038866394893,13805.52115202909,0,70,1,14345,201703414,,,,,0.0,2.0,3.0,0.0,1.0,1.0,1817.7402288400917,0.0,390.0,1270.0,0.0,17491.0,0,5,1,78.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2771.951474793862,0.20078571784930044,0.1584787304781809,17491.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +3415,2,80.0,3,0.0,5,111,2,0,77,3.0,0.0,0.0,54.002983938849475,0.0,100.63340337782542,17249.76,0,71,2,14346,201703415,,,,336.0,0.0,1.0,2.0,0.0,1.0,1.0,4572.638910638561,97.0,0.0,0.0,0.0,15039.0,0,5,3,65.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,154.6363873166749,0.008964552974457321,0.01028235835605259,15039.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +3416,2,39.0,1,0.0,9,111,2,37,23,10.0,0.0,0.0,2248.25819174204,0.0,4807.9005286152,76438.61423722385,20,20,1,14347,201703416,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2124.1211896423447,2587.7816756739667,600.0,1200.0,0.0,209950.0,1,1,2,160.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,7056.15872035724,0.0923114422045743,0.03360875789643839,87479.16666666667,10,5,10,10_1,10_3,10_0_0 +3417,2,46.0,1,0.0,3,111,2,85,23,10.0,0.0,0.0,2157.3984257092843,0.0,4020.265736925376,75697.0397354338,33,12,1,14348,201703417,,,,1900.0,1.0,0.0,11.0,4.0,6.0,3.3,2462.4772235659616,3875.1126702695865,0.0,0.0,0.0,166064.0,6,1,3,250.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,6177.664162634661,0.0816103798011918,0.03720050199100745,50322.42424242425,10,5,10,10_1,10_3,10_0_1 +3418,2,39.0,3,0.0,99,111,4,0,43,6.0,0.0,0.0,1453.6041463356069,0.0,0.0,28976.960000000003,0,33,2,14349,201703418,,,,,1.0,0.0,3.0,2.0,3.0,1.6,752.840157445419,0.0,1080.0,0.0,0.0,36660.0,0,1,3,70.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1453.6041463356069,0.05016413544883958,0.039650958710736685,22912.5,6,3,6,6_0,6_3,6_0_0 +3419,2,65.0,3,0.0,5,111,2,78,77,6.0,1586.456009138882,0.0,1643.5468884130166,0.0,805.4142594489999,25786.260587161276,50,50,1,1435,201703419,,,560.0,,0.0,2.0,3.0,0.0,2.0,1.5,4287.517243170275,776.3345027021901,900.0,0.0,0.0,35213.0,5,5,1,75.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4035.417157000899,0.15649485676143726,0.11460020892854625,23475.333333333332,6,3,6,6_1,6_3,6_0_0 +3420,1,46.0,4,300.0,4,111,2,85,21,1.0,0.0,0.0,1098.2786883424585,0.0,1125.2887551394897,28404.02,41,50,2,14350,201703420,,,610.0,81.0,2.0,0.0,4.0,3.0,5.0,2.8,5944.467706886284,0.0,816.0,636.0,0.0,14534.0,6,1,4,82.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2223.5674434819484,0.07828354731062534,0.15299074194866852,5190.714285714286,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3421,2,48.0,3,0.0,7,111,4,0,54,9.0,0.0,853.5746865315156,1561.278527545652,95.54338487033404,0.0,37026.4,0,31,1,14351,201703421,,,530.0,,2.0,1.0,5.0,1.0,2.0,1.5,1969.290471200539,0.0,1160.0,0.0,0.0,50758.0,0,1,1,90.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2510.396598947502,0.06780018038338866,0.049458146478338426,33838.666666666664,9,5,9,9_1,9_4,9_0_0 +3422,2,79.0,2,0.0,5,111,2,74,74,9.0,1085.1359102509955,0.0,1168.2670361289877,424.6372660903735,0.0,21127.0,31,31,1,14352,201703422,,,,,0.0,3.0,7.0,0.0,2.0,1.5,2257.356193920611,0.0,868.0,0.0,0.0,59110.0,5,5,1,140.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2678.040212470357,0.12675913345341774,0.04530604318170118,39406.666666666664,9,5,9,9_1,9_3,9_0_0 +3423,2,33.0,3,0.0,5,112,4,85,48,8.0,0.0,0.0,2691.859530251124,0.0,0.0,35212.88,31,30,1,14355,201703423,,,200.0,,1.0,0.0,5.0,2.0,4.0,2.1,3154.29529030598,0.0,2000.0,0.0,0.0,53698.0,6,1,2,135.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2691.859530251124,0.07644531007549295,0.05012960501789869,25570.47619047619,7,4,7,7_1,7_0,7_0_0 +3424,2,57.0,2,0.0,2,111,2,78,52,6.0,0.0,346.98157989085996,1095.5868288122074,0.0,2535.4383429479385,49288.950875301634,50,50,1,14356,201703424,,,150.0,,1.0,2.0,5.0,0.0,2.0,1.5,1886.2817146654006,0.0,814.0,1433.0,0.0,38782.0,5,1,1,100.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3978.0067516510057,0.08070788038713071,0.10257353286707765,25854.666666666668,7,4,7,7_1,7_3,7_0_1 +3425,1,26.0,3,360.0,4,111,2,0,52,3.0,0.0,0.0,403.7789295376686,0.0,884.6609710216114,11759.46,0,50,2,14357,201703425,,,360.0,45.0,1.0,0.0,3.0,1.0,2.0,1.3,1485.712947728275,0.0,300.0,500.0,0.0,17660.0,0,1,3,70.0,8,6.0,2,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1288.43990055928,0.10956624713713725,0.07295809176439864,13584.615384615385,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +3426,2,58.0,3,0.0,1,400,4,77,52,8.0,0.0,832.755791738064,1682.4122064069525,130.9298237111985,0.0,40370.640197470064,70,70,1,14358,201703426,,,277.0,,1.0,4.0,8.0,0.0,2.0,1.5,1765.499698030061,0.0,1250.0,0.0,0.0,41150.0,5,1,2,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2646.097821856215,0.0655451042865067,0.06430371377536367,27433.333333333332,8,4,8,8_1,8_0,8_1_0 +3427,1,34.0,3,353.0,99,221,6,0,22,2.0,1522.997768773327,0.0,1615.1157181506744,0.0,0.0,12318.34,0,43,1,14359,201703427,,,,,1.0,2.0,4.0,1.0,2.0,1.3,1084.7568741543437,0.0,1200.0,0.0,0.0,17006.0,0,1,3,120.0,1,2.0,2,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,3138.1134869240013,0.25475132906901427,0.18452978283688118,13081.538461538461,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +3428,1,50.0,3,263.0,1,111,2,0,34,1.0,0.0,0.0,807.5578590753372,0.0,1089.9023162986252,39349.2952,0,20,2,1436,201703428,,,,,1.0,0.0,4.0,2.0,3.0,2.0,890.968185454743,0.0,600.0,616.0,0.0,18376.0,0,1,3,75.0,8,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1897.4601753739626,0.048220944383622975,0.10325751933902713,9188.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +3429,2,49.0,2,0.0,1,400,2,63,46,4.0,475.9368027416647,138.792631956344,1076.7438121004495,0.0,0.0,44134.40338700519,50,42,1,14363,201703429,,,,,3.0,2.0,5.0,2.0,4.0,2.5,2093.025454288489,0.0,800.0,0.0,0.0,45210.0,1,1,1,100.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1691.4732467984581,0.038325503847107416,0.037413697120072066,18084.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3430,0,37.0,3,0.0,1,111,2,37,52,6.0,0.0,0.0,839.8601734383507,0.0,2572.594103730846,30977.78,31,20,1,14364,201703430,,,,,2.0,1.0,6.0,0.0,2.0,1.5,2073.4592102170586,0.0,624.0,1454.0,0.0,33507.0,1,1,5,200.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3412.4542771691968,0.11015812873515135,0.10184302614884044,22338.0,6,3,6,6_1,6_2,6_1_0 +3431,1,35.0,4,105.0,9,111,2,62,52,7.0,0.0,0.0,670.2730230325299,0.0,1217.2934961257374,38709.510158203404,50,50,1,14365,201703431,,,600.0,404.0,2.0,0.0,4.0,2.0,4.0,2.1,717.9002413256995,0.0,498.0,688.0,0.0,54184.0,1,1,3,70.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1887.5665191582673,0.04876234577611285,0.03483623429717753,25801.90476190476,7,4,7,7_1,7_2,7_0_0 +3432,2,65.0,3,0.0,5,111,4,74,74,1.0,0.0,0.0,2286.73467094833,247.7050718860512,0.0,41655.201750603264,10,10,1,14366,201703432,,,540.0,,0.0,1.0,6.0,0.0,2.0,1.5,1665.4066240548873,0.0,1699.0,0.0,0.0,14865.0,5,5,1,210.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2534.439742834381,0.060843295346605215,0.17049712363500713,9910.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +3433,2,34.0,1,0.0,1,112,5,54,33,8.0,0.0,416.377895869032,1345.929765125562,0.0,0.0,31034.09087530163,31,31,1,14367,201703433,,,200.0,,2.0,0.0,5.0,2.0,4.0,2.1,1982.9638175234982,0.0,1000.0,0.0,0.0,57991.0,1,1,2,120.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1762.307660994594,0.05678618613561902,0.030389330430490837,27614.761904761905,8,4,8,8_1,8_1,8_1_0 +3434,2,48.0,4,0.0,1,111,2,0,67,2.0,0.0,0.0,1076.7438121004495,0.0,1592.3897478389006,27927.320000000003,0,71,1,14369,201703434,,,400.0,,1.0,0.0,4.0,2.0,3.0,1.8,741.2214049392009,0.0,800.0,900.0,0.0,20320.0,0,1,1,120.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2669.13355993935,0.09557428209865285,0.13135499802851133,11288.888888888889,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +3435,1,35.0,4,462.0,99,111,1,0,56,2.0,0.0,0.0,2180.4062195034103,0.0,0.0,17037.480000000003,0,42,2,1437,201703435,,,,,1.0,0.0,2.0,3.0,4.0,1.9,2087.333215016682,0.0,1620.0,0.0,0.0,22694.0,0,4,3,30.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2180.4062195034103,0.12797703765482982,0.09607853262992025,11944.21052631579,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3436,2,33.0,2,0.0,1,120,2,0,42,8.0,2284.4966531599903,0.0,549.1393441712293,0.0,0.0,16343.72,0,20,1,14370,201703436,,,360.0,,1.0,0.0,5.0,0.0,1.0,1.0,1896.1787525279997,0.0,408.0,0.0,0.0,30164.0,0,1,2,150.0,0,2.0,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2833.6359973312196,0.17337766416282338,0.09394098917024332,30164.0,8,4,8,8_1,8_1,8_1_0 +3438,1,86.0,4,300.0,9,111,2,0,86,3.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,10865.48,0,71,2,14373,201703438,,,542.0,127.0,1.0,3.0,3.0,1.0,2.0,1.5,1820.3729246878934,1500.0,0.0,0.0,0.0,20480.0,0,4,3,68.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2391.2843399485805,0.22008087447113064,0.11676193066155179,13653.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3439,2,68.0,2,0.0,9,112,6,0,74,5.0,2362.2329976077954,0.0,1651.4558218090644,0.0,0.0,99677.51999999999,30,41,1,14375,201703439,,,547.0,,0.0,1.0,7.0,0.0,2.0,1.5,1967.9611593006036,0.0,1227.0,0.0,0.0,31307.0,8,5,1,150.0,7,4.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4013.6888194168596,0.04026674037854132,0.12820419776461683,20871.333333333332,5,3,5,5_1,5_2,5_0_0 +3440,2,51.0,3,0.0,8,112,4,85,47,3.0,0.0,0.0,274.5696720856146,0.0,0.0,30548.568161188145,71,50,1,14376,201703440,,,173.0,,2.0,0.0,7.0,2.0,4.0,2.5,1687.3516301228356,0.0,204.0,0.0,0.0,41718.0,6,1,2,145.0,6,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,274.5696720856146,0.008987971895666602,0.006581563643645779,16687.2,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3441,2,64.0,3,0.0,1,111,2,77,77,8.0,1207.2930229546894,0.0,976.4998187977127,81.38880933398825,134.23570990816665,27286.296711861196,50,50,1,14377,201703441,,,,,1.0,0.0,4.0,1.0,3.0,2.0,2383.664809184521,129.38908378369834,672.0,0.0,0.0,57473.0,5,6,1,60.0,8,6.0,4,9,1,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2399.4173609945574,0.08793488491062051,0.041748601273546834,28736.5,8,4,8,8_1,8_2,8_1_0 +3442,1,22.0,4,486.0,2,111,1,67,55,1.0,0.0,0.0,1197.87749096175,0.0,0.0,14939.259999999998,71,50,2,14378,201703442,,,,154.0,2.0,0.0,3.0,2.0,4.0,2.1,1380.7457145542003,0.0,890.0,0.0,0.0,22634.0,4,4,3,55.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1197.87749096175,0.08018318785279527,0.05292380891410047,10778.095238095239,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +3443,1,28.0,3,437.0,99,111,4,0,85,2.0,0.0,0.0,1345.929765125562,0.0,0.0,7648.510875301628,0,71,2,1438,201703443,,,,249.0,0.0,1.0,3.0,2.0,3.0,1.6,1115.1382670125347,0.0,1000.0,0.0,0.0,18204.0,0,6,3,68.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1345.929765125562,0.1759727856924154,0.07393593524091199,11377.5,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3444,2,52.0,4,0.0,7,111,2,52,64,5.0,0.0,0.0,767.1799661215703,0.0,1716.2422837819263,29371.807196250444,60,44,2,14380,201703444,,,390.0,680.0,2.0,1.0,5.0,2.0,4.0,2.5,1733.5728673736405,0.0,570.0,970.0,0.0,49350.0,1,1,3,120.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2483.422249903497,0.0845512240125465,0.050322639309088084,19740.0,5,3,5,5_0,5_2,5_0_0 +3445,2,66.0,3,0.0,2,111,1,77,78,4.0,0.0,0.0,434.25079868353174,0.0,809.2170580897301,65841.6,70,71,2,14381,201703445,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1923.6222038881936,780.0,0.0,0.0,0.0,27140.0,5,5,1,60.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1243.467856773262,0.018885747867203435,0.04581679649127715,18093.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3447,2,73.0,9,0.0,7,221,2,0,78,3.0,0.0,0.0,253.03479584360565,0.0,1378.3017928516706,11218.6,0,71,2,14383,201703447,,,,,0.0,1.0,2.0,0.0,1.0,1.0,4064.4720528022285,0.0,188.0,779.0,0.0,15619.0,0,5,3,42.0,1,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1631.3365886952763,0.14541356218202595,0.10444564880563904,15619.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +3448,2,78.0,4,0.0,5,111,1,77,78,5.0,0.0,0.0,418.5841569540498,0.0,0.0,21610.039999999997,71,70,2,14384,201703448,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2464.9265134031016,0.0,311.0,0.0,0.0,28082.0,5,5,1,83.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,418.5841569540498,0.01936989274217215,0.014905781531018082,18721.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +3449,2,78.0,3,0.0,4,111,2,77,75,5.0,0.0,0.0,524.9126083989692,0.0,1385.3790806198435,25355.76,50,50,2,14385,201703449,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2064.750379126362,0.0,390.0,783.0,0.0,30352.0,5,5,1,72.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1910.2916890188126,0.07533955554946145,0.06293791806203257,20234.666666666668,5,3,5,5_0,5_3,5_0_1 +3450,2,75.0,2,0.0,2,111,2,0,74,8.0,0.0,0.0,627.3143673449822,0.0,1561.3802440756926,20463.478038740515,0,30,1,14389,201703450,,,,,0.0,1.0,4.0,0.0,1.0,1.0,1772.0222741292705,517.5563351347934,252.0,579.0,0.0,28766.0,0,5,1,100.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2188.694611420675,0.10695613948308977,0.07608616461867047,28766.0,8,4,8,8_1,8_3,8_0_1 +3451,2,54.0,2,0.0,9,112,4,0,67,4.0,0.0,0.0,162.857501580193,70.77287768172891,0.0,10075.56,0,71,1,1439,201703451,,,7.0,,1.0,0.0,4.0,0.0,1.0,1.0,2737.0684101321176,0.0,121.0,0.0,0.0,17121.0,0,1,2,90.0,8,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,233.63037926192192,0.023187830677592305,0.013645837232750535,17121.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3452,2,57.0,4,0.0,2,111,1,0,46,7.0,0.0,0.0,2146.9497647861813,0.0,3667.7851100653493,41628.483391076705,0,60,2,14392,201703452,,,,207.0,1.0,1.0,3.0,0.0,1.0,1.0,2136.206491945319,3276.1316014032423,240.0,152.0,0.0,27178.0,0,1,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,5814.734874851531,0.1396816410587264,0.2139500653047145,27178.0,7,4,7,7_0,7_4,7_0_1 +3453,2,37.0,3,0.0,6,112,4,56,46,4.0,0.0,0.0,2395.7549819235,123.8525359430256,0.0,31138.280000000006,43,41,1,14394,201703453,,,560.0,,2.0,0.0,6.0,2.0,4.0,2.1,1993.6354210845263,0.0,1780.0,0.0,0.0,37228.0,1,1,2,110.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2519.6075178665255,0.0809167210862811,0.0676804426202462,17727.619047619046,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3454,1,17.0,3,292.0,1,111,4,84,46,4.0,0.0,0.0,376.8603342351573,88.46609710216114,0.0,67487.84,41,60,2,14396,201703454,,,140.0,168.0,1.0,0.0,2.0,0.0,2.0,1.5,3259.543096197361,0.0,280.0,0.0,0.0,24326.0,3,1,3,34.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,465.32643133731847,0.006894967024241975,0.019128768862012598,16217.333333333334,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +3455,2,40.0,3,0.0,1,120,2,43,13,1.0,0.0,416.377895869032,2018.894647688343,256.5516815962673,0.0,30552.165846751297,33,31,1,14397,201703455,,,408.0,,2.0,0.0,6.0,3.0,5.0,2.4,2017.9719069910166,0.0,1500.0,0.0,0.0,16071.0,1,1,1,90.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2691.824225153642,0.08810583965325888,0.16749575167404904,6696.25,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3456,2,80.0,3,0.0,5,111,2,0,77,6.0,0.0,0.0,403.7789295376686,0.0,1875.4812585658162,23502.096974448148,0,50,1,14398,201703456,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2757.785617623092,0.0,300.0,1060.0,0.0,22720.0,0,5,1,85.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2279.260188103485,0.09698114132460318,0.1003195505327238,22720.0,6,3,6,6_1,6_3,6_0_0 +3457,2,53.0,1,0.0,9,212,4,52,53,10.0,0.0,0.0,2798.506114607155,0.0,775.5992182465261,48335.75176566864,31,60,1,14399,201703457,,,,,3.0,1.0,5.0,1.0,3.0,2.0,1617.280943803361,747.5959437390017,1770.0,0.0,0.0,75607.0,1,1,2,127.0,2,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3574.105332853681,0.07394330702004837,0.047272148516059105,37803.5,9,5,9,9_1,9_0,9_0_0 +3458,2,48.0,2,0.0,1,400,2,0,62,5.0,0.0,208.188947934516,969.0694308904046,99.08202875442048,0.0,12767.480000000001,0,50,1,144,201703458,,,,,1.0,3.0,4.0,0.0,1.0,1.0,2097.865774306535,0.0,720.0,0.0,0.0,19040.0,0,1,2,150.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1276.340407579341,0.09996807573454909,0.0670346852720242,19040.0,5,3,5,5_1,5_1,5_1_0 +3459,2,30.0,2,0.0,2,111,4,46,46,8.0,0.0,0.0,1017.5229024349248,0.0,0.0,31209.06,43,20,2,14400,201703459,,,,,2.0,0.0,2.0,1.0,3.0,1.8,4171.70971657427,0.0,756.0,0.0,0.0,52967.0,1,1,3,32.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1017.5229024349248,0.03260344600045387,0.019210506587779654,29426.11111111111,8,4,8,8_0,8_4,8_0_1 +3460,1,35.0,3,85.0,5,111,1,63,52,2.0,0.0,0.0,1312.2815209974228,318.4779495677801,0.0,23076.170000000002,50,60,8,14402,201703460,,,,210.0,2.0,0.0,3.0,2.0,4.0,2.3,2563.2922770478563,0.0,975.0,0.0,0.0,25670.0,4,1,3,75.0,6,5.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1630.759470565203,0.07066854987483637,0.06352783290086493,11160.869565217392,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +3461,1,35.0,3,270.0,1,111,4,0,68,2.0,0.0,0.0,952.9182737088979,99.08202875442048,0.0,14779.820000000002,0,50,2,14404,201703461,,,,130.0,1.0,0.0,2.0,0.0,1.0,1.0,3533.370559014689,0.0,708.0,0.0,0.0,13020.0,0,1,3,43.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1052.0003024633183,0.07117815389249113,0.08079879435202138,13020.0,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +3462,2,45.0,3,0.0,8,112,4,63,37,7.0,0.0,485.77421184720396,3445.5801987214386,0.0,0.0,87183.72000000002,50,31,1,14405,201703462,,,358.0,,2.0,0.0,6.0,2.0,4.0,2.3,601.1736832393532,0.0,2560.0,0.0,0.0,61767.0,1,1,1,166.0,10,2.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3931.3544105686424,0.045092758264600796,0.06364813590701576,26855.21739130435,7,4,7,7_1,7_1,7_0_0 +3463,2,64.0,1,0.0,7,111,6,37,74,10.0,951.8736054833294,0.0,403.7789295376686,0.0,0.0,67208.68000000001,12,30,1,14407,201703463,,,360.0,,1.0,1.0,6.0,0.0,2.0,1.5,2975.0652377170186,0.0,300.0,0.0,0.0,132570.0,1,5,2,135.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1355.652535020998,0.020170795424355868,0.010225937504872882,88380.0,10,5,10,10_1,10_4,10_0_0 +3464,2,49.0,3,0.0,6,111,1,0,52,2.0,0.0,0.0,632.5869896090142,0.0,0.0,14409.816722052929,0,71,2,14408,201703464,,,,366.0,1.0,0.0,2.0,0.0,1.0,1.0,3139.411718100267,0.0,470.0,0.0,0.0,13053.0,0,4,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,632.5869896090142,0.043899724875813076,0.048462957910749574,13053.0,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +3465,2,67.0,2,0.0,2,111,2,75,74,7.0,0.0,0.0,672.964882562781,0.0,1654.3160158104133,23124.420000000002,42,30,1,14410,201703465,,,310.0,,0.0,4.0,5.0,0.0,2.0,1.5,1309.077643718604,0.0,500.0,935.0,0.0,37107.0,5,5,1,128.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2327.2808983731943,0.10064169818629803,0.0627181097467646,24738.0,7,4,7,7_1,7_2,7_0_1 +3466,2,42.0,3,0.0,3,111,2,56,62,3.0,0.0,0.0,753.7206684703146,0.0,858.1211418909631,29024.27999999999,43,43,2,14411,201703466,,,,,2.0,0.0,5.0,2.0,4.0,2.3,3018.6445881050827,0.0,560.0,485.0,0.0,35796.0,1,1,2,72.0,7,6.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1611.8418103612778,0.05553425650390908,0.04502854537829025,15563.478260869566,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +3467,2,58.0,2,0.0,1,400,5,13,13,1.0,0.0,208.188947934516,942.1508355878933,318.4779495677801,0.0,17114.199999999997,41,50,1,14413,201703467,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1801.6434163089898,0.0,700.0,0.0,0.0,7925.0,1,1,1,140.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1468.8177330901894,0.08582450439343876,0.18533977704608068,5283.333333333333,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3468,2,48.0,4,0.0,1,111,2,0,55,1.0,0.0,0.0,133.61563036416362,0.0,1646.7541982417554,22230.19087530163,0,31,2,14415,201703468,,,,,1.0,0.0,4.0,2.0,3.0,2.0,1750.313184731253,240.0,0.0,790.0,0.0,8043.0,0,4,1,87.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1780.3698286059189,0.08008792360770775,0.22135643772297886,4021.5,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +3469,2,24.0,2,0.0,3,111,2,34,43,9.0,0.0,0.0,317.63942456963264,0.0,353.8643884086446,38695.22,20,30,2,14416,201703469,,,,400.0,2.0,0.0,3.0,0.0,2.0,1.5,3902.065904573417,0.0,236.0,200.0,0.0,54204.0,1,1,3,57.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,671.5038129782772,0.017353663139226944,0.012388454966022382,36136.0,9,5,9,9_0,9_3,9_0_1 +3470,2,30.0,1,0.0,5,111,4,43,31,8.0,0.0,0.0,2228.8596910479305,0.0,0.0,79590.0254226567,31,12,1,14418,201703470,,,,1791.0,2.0,0.0,4.0,2.0,4.0,2.1,3842.843259310571,0.0,1656.0,0.0,0.0,64469.0,1,1,3,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2228.8596910479305,0.0280042590665318,0.034572580481284504,30699.52380952381,8,4,8,8_1,8_4,8_0_0 +3471,2,44.0,2,0.0,4,111,1,33,47,7.0,0.0,0.0,336.4824412813905,0.0,212.31863304518674,48436.66,20,31,2,14419,201703471,,,,433.0,2.0,0.0,4.0,2.0,4.0,2.1,5109.308124714551,0.0,250.0,120.0,0.0,51792.0,1,1,3,66.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,548.8010743265772,0.011330283184814502,0.01059625182125767,24662.85714285714,7,4,7,7_0,7_4,7_0_1 +3472,2,60.0,3,0.0,3,300,5,0,78,6.0,0.0,832.755791738064,1817.0051829195086,0.0,0.0,18553.08,0,71,1,1442,201703472,,,221.0,,0.0,2.0,5.0,0.0,1.0,1.0,2624.526783239656,0.0,1350.0,0.0,0.0,23087.0,0,5,2,120.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2649.7609746575727,0.14282054379421488,0.1147728580871301,23087.0,6,3,6,6_1,6_0,6_0_1 +3473,2,42.0,3,0.0,2,111,5,0,62,6.0,0.0,333.10231669522557,818.3957359805023,0.0,1525.0629171691069,24914.120000000003,0,43,1,14420,201703473,,,,,1.0,2.0,7.0,0.0,1.0,1.0,3474.5138526433498,1470.0,0.0,0.0,0.0,23390.0,0,1,2,125.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2676.5609698448347,0.10743148743944536,0.1144318499292362,23390.0,6,3,6,6_1,6_2,6_0_1 +3474,2,71.0,3,0.0,7,400,2,86,75,3.0,0.0,582.9290542166448,942.1508355878933,185.7788039145384,0.0,21799.16,70,60,1,14421,201703474,,,350.0,,0.0,1.0,4.0,0.0,2.0,1.5,1429.0788919397273,0.0,700.0,0.0,0.0,23000.0,5,5,1,100.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1710.8586937190767,0.07848278069976443,0.07438516059648159,15333.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +3475,2,24.0,3,0.0,99,112,1,85,43,6.0,0.0,0.0,0.0,0.0,0.0,42337.72784974978,43,50,2,14423,201703475,,,,257.0,1.0,0.0,3.0,0.0,2.0,1.5,2604.4169735694427,0.0,0.0,0.0,0.0,32379.0,4,1,3,69.0,10,5.0,3,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,21586.0,6,3,6,6_0,6_2,6_0_0 +3476,2,44.0,3,0.0,9,211,6,54,62,4.0,0.0,0.0,2068.694048997989,318.4779495677801,0.0,59500.590000000004,43,50,1,14425,201703476,,,408.0,,2.0,0.0,5.0,2.0,4.0,2.3,2535.800037049131,0.0,1537.0,0.0,0.0,39548.0,1,1,2,90.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2387.171998565769,0.04012013996106205,0.06036138359881079,17194.782608695652,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3477,2,47.0,2,0.0,4,111,6,0,43,6.0,0.0,0.0,2288.080600713455,0.0,3184.779495677801,60846.920000000006,0,33,1,14426,201703477,,,550.0,,1.0,0.0,7.0,2.0,3.0,1.6,2115.660166669575,0.0,1700.0,1800.0,0.0,39900.0,0,1,2,350.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,5472.860096391256,0.08994473502342033,0.13716441344338987,24937.5,7,4,7,7_1,7_2,7_0_1 +3478,2,64.0,3,0.0,2,111,1,0,75,9.0,3172.912018277764,0.0,161.51157181506744,0.0,176.9321942043223,35585.12,0,33,2,1443,201703478,2000.0,2000.0,,,0.0,0.0,3.0,0.0,1.0,1.0,3690.2665723539,0.0,120.0,100.0,0.0,31391.0,0,5,2,58.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3511.355784297154,0.09867483330946063,0.11185867873903839,31391.0,8,4,8,8_0,8_4,8_0_1 +3479,2,56.0,5,0.0,4,300,5,0,56,1.0,0.0,1110.341055650752,823.7090162568439,169.8549064361494,0.0,18061.28,30,42,1,14430,201703479,,,,,1.0,3.0,3.0,0.0,2.0,1.5,2712.1773671217434,0.0,612.0,0.0,0.0,13784.0,8,4,1,90.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2103.9049783437454,0.1164870362645253,0.15263384927044002,9189.333333333334,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +3480,2,52.0,3,0.0,5,112,5,43,22,3.0,0.0,277.585263912688,2691.859530251124,240.62778411787832,0.0,37805.444208634966,33,50,1,14431,201703480,,,320.0,,2.0,0.0,6.0,4.0,6.0,3.1,1821.8258096729191,0.0,2000.0,0.0,0.0,43455.0,1,1,2,110.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3210.0725782816903,0.08491032562840493,0.0738711903873361,14017.741935483871,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +3481,2,66.0,3,0.0,1,111,6,77,78,3.0,0.0,0.0,891.005504513122,233.5504963497054,0.0,21149.300000000003,50,71,1,14432,201703481,,,227.0,,0.0,3.0,4.0,0.0,2.0,1.5,2423.3940729774145,0.0,662.0,0.0,0.0,22441.0,5,5,1,80.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1124.5560008628274,0.05317225633296739,0.050111670641363015,14960.666666666666,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +3482,2,53.0,2,0.0,8,112,2,0,68,5.0,1300.8939274938834,0.0,363.4010365839017,53.079658261296686,0.0,19686.219999999998,0,50,1,14433,201703482,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1973.3650640017738,0.0,270.0,0.0,0.0,18312.0,0,1,1,100.0,8,2.0,1,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1717.3746223390817,0.08723739866460306,0.09378411000104203,18312.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3483,2,73.0,1,0.0,1,300,2,0,75,6.0,2447.9016221012953,0.0,1756.4383434888584,0.0,0.0,22108.3,0,50,1,14435,201703483,,,475.0,,0.0,0.0,7.0,0.0,1.0,1.0,2020.0073336455594,0.0,1305.0,0.0,0.0,24630.0,0,5,1,225.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4204.339965590154,0.19017020601268095,0.1706999580020363,24630.0,7,4,7,7_1,7_1,7_1_0 +3484,1,19.0,3,177.0,9,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,13487.820000000002,0,41,2,14436,201703484,,,,349.0,0.0,0.0,2.0,0.0,1.0,1.0,4136.820879720228,0.0,0.0,0.0,0.0,4589.0,0,3,3,43.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,4589.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3485,2,65.0,1,0.0,6,300,6,0,34,10.0,475.9368027416647,138.792631956344,581.4416585342427,113.23660429076627,0.0,15707.320000000002,0,31,1,14440,201703485,,,,,1.0,1.0,6.0,0.0,1.0,1.0,1551.2737344402783,0.0,432.0,0.0,0.0,42805.0,0,1,1,200.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1309.4076975230175,0.08336289688648461,0.030590064186964548,42805.0,10,5,10,10_1,10_0,10_0_0 +3486,2,59.0,4,0.0,8,111,2,52,77,3.0,0.0,0.0,779.9812422508053,0.0,1453.4783312611692,43244.06,60,60,2,14442,201703486,,,,773.0,2.0,1.0,4.0,2.0,6.0,3.3,5218.147683352292,1401.0,0.0,0.0,0.0,52180.0,1,5,3,92.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2233.4595735119747,0.05164777714007368,0.0428029814778071,15812.121212121214,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +3487,1,40.0,3,137.0,3,111,1,0,54,4.0,0.0,0.0,807.5578590753372,0.0,0.0,30723.671191295743,0,31,2,14443,201703487,,,,280.0,1.0,0.0,2.0,2.0,3.0,1.6,809.5566400580077,0.0,600.0,0.0,0.0,25744.0,0,1,3,58.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,807.5578590753372,0.026284549591981204,0.03136877948552429,16090.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +3488,2,81.0,3,0.0,4,111,2,0,78,6.0,0.0,0.0,636.6247789043908,0.0,1932.0995607111995,14402.870875301627,0,71,1,14444,201703488,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2152.0208831111067,0.0,473.0,1092.0,0.0,21976.0,0,5,1,85.0,6,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2568.7243396155905,0.17834807809188222,0.11688771112193258,21976.0,6,3,6,6_1,6_2,6_0_1 +3489,2,58.0,3,0.0,6,400,5,52,21,10.0,0.0,373.35217996256534,1292.0925745205395,0.0,0.0,68933.5,60,50,1,14446,201703489,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1734.9250092272225,0.0,960.0000000000001,0.0,0.0,61205.0,1,1,1,79.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1665.4447544831048,0.024160165296744033,0.02721092646814974,40803.333333333336,10,5,10,10_1,10_1,10_0_0 +3490,2,48.0,3,0.0,99,112,6,0,52,4.0,0.0,0.0,484.5347154452023,46.0023704931238,0.0,15224.83665845403,0,71,2,14448,201703490,,,100.0,,1.0,0.0,2.0,0.0,1.0,1.0,11447.677505751144,0.0,360.0,0.0,0.0,18909.0,0,1,3,40.0,7,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,530.5370859383261,0.03484681628053658,0.028057384628395264,18909.0,5,3,5,5_0,5_1,5_0_0 +3491,2,49.0,3,0.0,5,300,2,43,47,7.0,713.905204112497,0.0,1184.4181933104944,120.31389205893916,0.0,43355.94,30,71,1,1445,201703491,,,510.0,,2.0,1.0,5.0,1.0,3.0,2.0,1635.3422785891405,0.0,880.0,0.0,0.0,52020.0,1,1,2,100.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2018.6372894819308,0.046559647639560595,0.038805022865857956,26010.0,7,4,7,7_1,7_0,7_0_0 +3492,2,56.0,3,0.0,3,112,2,77,55,9.0,0.0,0.0,2266.545724471446,0.0,2830.9151072691566,26190.267836194063,60,42,1,14451,201703492,,,180.0,,3.0,3.0,5.0,2.0,4.0,2.5,2360.7501723779746,0.0,1684.0,1600.0,0.0,81288.0,5,1,2,120.0,10,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5097.460831740603,0.19463187103020324,0.06270865111382495,32515.2,9,5,9,9_1,9_1,9_0_1 +3493,1,48.0,3,494.0,10,111,2,0,56,2.0,0.0,0.0,514.1451702779647,0.0,728.9606401218078,17681.19841351649,0,50,2,14452,201703493,,,720.0,,1.0,0.0,4.0,3.0,4.0,2.3,696.4177514724779,0.0,382.0,412.0,0.0,24843.0,0,1,3,110.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1243.1058103997725,0.07030664897971359,0.050038474032917626,10801.304347826088,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3494,2,30.0,3,0.0,3,111,2,43,43,8.0,0.0,0.0,957.578684276506,0.0,1784.4273588645333,35609.280315994125,33,33,2,14454,201703494,,,,590.0,2.0,0.0,3.0,0.0,2.0,1.5,1219.3432563075637,1720.0,0.0,0.0,0.0,47378.0,1,1,3,63.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2742.0060431410393,0.07700256839814452,0.0578750906146532,31585.333333333332,8,4,8,8_0,8_3,8_0_1 +3495,2,53.0,1,0.0,3,111,2,46,37,9.0,0.0,0.0,1442.9619680675269,0.0,2531.649592240901,113503.30393666445,41,20,1,14455,201703495,,,678.0,,2.0,0.0,6.0,2.0,4.0,2.5,2639.9794939976196,843.9517082266678,723.0,936.0,0.0,94947.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3974.6115603084277,0.035017584708602716,0.041861370662668936,37978.8,9,5,9,9_1,9_4,9_0_1 +3496,2,63.0,4,0.0,99,111,6,0,77,3.0,0.0,0.0,807.5578590753372,0.0,0.0,12002.639999999998,0,50,8,14456,201703496,,,330.0,,1.0,1.0,2.0,0.0,2.0,1.5,3711.39281285057,0.0,600.0,0.0,0.0,21060.0,0,5,3,47.0,6,4.0,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.06728168628529535,0.038345577354004616,14040.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +3497,2,72.0,3,0.0,6,111,2,78,77,8.0,0.0,0.0,1144.0403003567276,159.23897478389006,0.0,31963.26,70,70,1,14457,201703497,,,670.0,,0.0,5.0,4.0,0.0,2.0,1.5,2551.399395009463,0.0,850.0,0.0,0.0,44661.0,5,5,1,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1303.2792751406178,0.040774291331379144,0.029181596362388162,29774.0,8,4,8,8_1,8_3,8_0_0 +3498,1,37.0,3,330.0,99,112,4,0,55,3.0,0.0,0.0,3364.824412813905,49.54101437721024,0.0,21206.405846751302,0,43,1,14458,201703498,,,350.0,,1.0,0.0,5.0,2.0,3.0,1.6,195.11042161977784,0.0,2500.0,0.0,0.0,22647.0,0,1,3,100.0,9,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3414.365427191115,0.1610063228943709,0.15076457929046297,14154.375,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +3499,2,48.0,4,0.0,3,111,4,0,56,4.0,0.0,0.0,807.5578590753372,0.0,0.0,13203.436974448146,0,71,2,1446,201703499,,,,600.0,1.0,2.0,3.0,0.0,1.0,1.0,3197.204481220228,0.0,600.0,0.0,0.0,16934.0,0,1,3,52.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,807.5578590753372,0.061162700336144106,0.04768854724668343,16934.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3500,2,49.0,4,0.0,10,111,2,0,31,6.0,951.8736054833294,0.0,605.6683943065029,123.8525359430256,0.0,16149.577171918205,0,71,1,14460,201703500,,,,,1.0,1.0,4.0,0.0,1.0,1.0,2640.305286026847,0.0,450.0,0.0,0.0,22208.0,0,1,2,70.0,7,6.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1681.394535732858,0.10411384259995127,0.07571120928191905,22208.0,6,3,6,6_1,6_2,6_0_0 +3501,1,34.0,2,145.0,7,111,2,56,63,5.0,0.0,0.0,672.964882562781,0.0,1415.4575536345783,41963.94512307639,71,41,2,14461,201703501,,,,405.0,2.0,0.0,2.0,1.0,3.0,2.0,3412.390932589305,0.0,500.0,800.0,0.0,39430.0,1,1,3,30.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2088.4224361973593,0.049767066229645676,0.05296531666744508,19715.0,5,3,5,5_0,5_4,5_0_0 +3502,2,46.0,3,0.0,1,112,5,0,63,2.0,0.0,555.170527825376,1480.522741638118,0.0,0.0,11753.74,0,41,1,14463,201703502,,,120.0,,1.0,1.0,3.0,0.0,1.0,1.0,3065.3194989376043,0.0,1100.0,0.0,0.0,13088.0,0,4,1,80.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2035.693269463494,0.1731953633025313,0.1555389111753892,13088.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3503,2,85.0,3,0.0,4,112,2,0,77,5.0,888.4153651177741,0.0,329.7527924557627,47.77169243516702,0.0,7811.6,0,71,1,14464,201703503,,,122.0,,0.0,0.0,4.0,0.0,1.0,1.0,3501.937125348278,0.0,245.0,0.0,0.0,18580.0,0,5,1,100.0,9,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1265.9398500087038,0.16205896999445746,0.06813454521037157,18580.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +3504,1,75.0,4,120.0,5,112,6,0,77,5.0,0.0,0.0,1453.6041463356069,0.0,0.0,7180.0,0,50,2,14465,201703504,,,360.0,,0.0,2.0,3.0,0.0,1.0,1.0,3348.1958913310705,0.0,1080.0,0.0,0.0,19281.0,0,5,3,62.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1453.6041463356069,0.20245183096596195,0.07539049563485332,19281.0,5,3,5,5_0,5_0,5_0_0 +3505,2,57.0,2,0.0,4,111,2,0,34,9.0,0.0,0.0,411.85450812842197,0.0,1666.701269404716,33784.76417758094,0,20,2,14468,201703505,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2097.7534179562517,0.0,306.0,942.0,0.0,47489.0,0,1,1,92.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2078.555777533138,0.06152346562514817,0.04376920502712498,47489.0,10,5,10,10_0,10_3,10_0_1 +3506,2,59.0,3,0.0,1,111,2,77,52,6.0,0.0,0.0,2390.5455458853967,0.0,4454.730399426782,44741.37418099122,50,71,1,14469,201703506,,,1000.0,,1.0,1.0,5.0,1.0,4.0,2.5,4153.194731228652,4293.890837836983,0.0,0.0,0.0,58467.0,6,1,1,70.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,6845.275945312179,0.15299655119266448,0.11707930876070567,23386.8,6,3,6,6_1,6_3,6_1_0 +3507,2,62.0,2,0.0,5,111,2,0,74,10.0,0.0,693.9631597817199,1399.7669557305844,0.0,0.0,29341.32,0,10,1,1447,201703507,,,,,0.0,3.0,9.0,0.0,1.0,1.0,2225.4229886061466,0.0,1040.0,0.0,0.0,42855.0,0,5,1,260.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2093.730115512304,0.07135773426390851,0.048856145502562225,42855.0,10,5,10,10_1,10_3,10_0_0 +3508,2,24.0,3,0.0,1,111,4,55,63,6.0,0.0,0.0,1317.665240057925,0.0,0.0,29393.859999999997,50,43,3,14471,201703508,,,,480.0,2.0,0.0,2.0,0.0,2.0,1.5,3149.3786916692566,0.0,979.0,0.0,0.0,33423.0,1,1,3,35.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1317.665240057925,0.04482790759899943,0.03942390689219774,22282.0,6,3,6,6_0,6_3,6_1_0 +3509,2,79.0,1,0.0,1,111,6,0,78,6.0,507.66592292444227,0.0,1076.512233205441,106.15931652259337,832.2614014306333,19255.74761353939,0,50,2,14472,201703509,,,101.0,,0.0,2.0,3.0,0.0,1.0,1.0,4615.137026759286,802.2123194589298,468.0,0.0,0.0,23736.0,0,5,3,80.0,9,7.0,1,9,1,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2522.59887408311,0.13100498223758303,0.10627733712854356,23736.0,6,3,6,6_0,6_3,6_1_0 +3510,2,58.0,1,0.0,9,111,2,0,31,10.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,66347.84,0,50,2,14474,201703510,,,,,1.0,2.0,3.0,0.0,1.0,1.0,3236.746285592281,1800.0,0.0,0.0,0.0,76340.0,0,1,2,80.0,8,6.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2869.541207938297,0.04324995671205418,0.0375889600201506,76340.0,10,5,10,10_0,10_2,10_0_0 +3511,2,57.0,4,0.0,99,111,2,52,63,9.0,0.0,0.0,866.7787687408619,0.0,760.8084350785858,26146.16,70,50,2,14476,201703511,,,,272.0,2.0,4.0,3.0,0.0,2.0,1.5,2513.786018848508,0.0,644.0,430.0,0.0,48160.0,1,1,3,65.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1627.5872038194477,0.06224956949010668,0.0337954153616995,32106.666666666668,9,5,9,9_0,9_3,9_0_0 +3512,2,62.0,1,0.0,5,112,4,75,33,9.0,0.0,582.9290542166448,1274.5954875739071,95.54338487033404,0.0,42405.93087530163,50,31,1,14477,201703512,,,386.0,,1.0,2.0,5.0,0.0,2.0,1.5,2105.132030305372,0.0,947.0,0.0,0.0,52714.0,5,1,1,130.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1953.0679266608859,0.04605648045798249,0.037050269883918616,35142.666666666664,9,5,9,9_1,9_1,9_0_0 +3513,1,42.0,3,22.0,1,111,5,64,64,3.0,0.0,235.94747432578478,1682.4122064069525,176.9321942043223,0.0,35604.57119129575,50,43,1,14478,201703513,,,720.0,,3.0,1.0,5.0,2.0,4.0,2.3,2148.3770941424127,0.0,1250.0,0.0,0.0,33134.0,4,1,2,100.0,4,3.0,4,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2095.291874937059,0.05884895688476359,0.0632369129877787,14406.08695652174,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +3514,1,68.0,4,170.0,6,111,2,0,75,4.0,0.0,0.0,780.639263772826,0.0,2123.1863304518674,24932.64,0,60,1,14482,201703514,,,180.0,550.0,0.0,2.0,4.0,1.0,2.0,1.5,892.9494712920274,0.0,580.0,1200.0,0.0,25970.0,0,5,3,80.0,6,4.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2903.8255942246933,0.11646683200113159,0.11181461664323039,17313.333333333332,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +3515,1,25.0,3,161.0,4,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,19555.353815743485,0,30,2,14483,201703515,,,,77.0,0.0,0.0,1.0,0.0,1.0,1.0,3226.8871655981366,0.0,0.0,0.0,0.0,2936.0,0,3,3,18.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0.0,0.0,0.0,2936.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3516,2,68.0,4,0.0,6,112,4,78,78,6.0,0.0,0.0,1825.080761510262,0.0,0.0,51182.10616274542,71,71,2,14484,201703516,,,360.0,790.0,0.0,1.0,3.0,0.0,2.0,1.5,4025.9703614533187,0.0,1356.0,0.0,0.0,35844.0,5,5,3,54.0,10,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1825.080761510262,0.03565857090184982,0.05091732958124824,23896.0,7,4,7,7_0,7_2,7_0_0 +3517,2,50.0,2,0.0,7,111,2,52,63,9.0,0.0,0.0,561.2527120573593,1238.525359430256,0.0,51522.60000000001,50,50,1,14488,201703517,,,180.0,,2.0,0.0,5.0,0.0,2.0,1.5,1821.381495890519,0.0,417.0,0.0,0.0,46501.0,1,1,2,108.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1799.7780714876153,0.034931817716645025,0.038704072417531134,31000.666666666668,8,4,8,8_1,8_2,8_0_0 +3518,1,37.0,3,280.0,8,111,2,0,55,1.0,0.0,0.0,382.24405329565957,0.0,445.8691293948922,17168.556974448147,0,71,2,14489,201703518,,,,320.0,1.0,0.0,3.0,1.0,2.0,1.3,931.3533930835688,0.0,284.0,252.0,0.0,12040.0,0,1,3,65.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,828.1131826905518,0.04823429155537226,0.06878016467529499,9261.538461538461,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3519,2,70.0,3,0.0,1,120,2,77,78,5.0,0.0,0.0,969.0694308904046,2830.9151072691566,0.0,28025.870875301625,70,70,1,14490,201703519,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2377.6881818841,0.0,720.0,0.0,0.0,28286.0,5,5,1,100.0,0,3.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3799.9845381595615,0.13558845521936574,0.1343415307275529,18857.333333333332,5,3,5,5_1,5_1,5_1_0 +3520,2,33.0,3,0.0,2,111,2,0,52,5.0,0.0,0.0,942.1508355878933,0.0,0.0,27647.496855924084,0,50,2,14491,201703520,,,,,1.0,0.0,2.0,1.0,2.0,1.3,927.2344630626847,0.0,700.0,0.0,0.0,23562.0,0,1,2,42.0,7,6.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,942.1508355878933,0.03407725627016454,0.0399860298611278,18124.615384615383,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +3521,2,47.0,3,0.0,9,120,4,34,34,8.0,0.0,277.585263912688,2691.859530251124,0.0,0.0,37571.78031599412,30,30,1,14492,201703521,,,500.0,,2.0,0.0,7.0,2.0,4.0,2.1,2138.4640362254104,0.0,2000.0,0.0,0.0,63645.0,1,1,2,168.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2969.444794163812,0.07903391239886852,0.046656371972092256,30307.142857142855,8,4,8,8_1,8_0,8_0_0 +3522,2,69.0,2,0.0,4,221,2,0,77,5.0,0.0,0.0,1057.7904070496288,0.0,1971.1697568852403,15922.220315994116,0,50,1,14495,201703522,,,107.0,,0.0,2.0,5.0,0.0,1.0,1.0,17155.476657239302,1900.0,0.0,0.0,0.0,18833.0,0,5,1,110.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3028.9601639348693,0.19023478533909194,0.16083258981229062,18833.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +3523,2,61.0,3,0.0,6,111,4,0,34,9.0,0.0,0.0,2196.557376684917,0.0,0.0,24340.16,0,31,1,14497,201703523,,,,,1.0,2.0,5.0,0.0,1.0,1.0,1172.8721513821906,0.0,1632.0,0.0,0.0,37466.0,0,1,1,100.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2196.557376684917,0.09024416341901273,0.05862801944923176,37466.0,9,5,9,9_1,9_2,9_0_0 +3524,1,42.0,3,51.0,1,111,1,0,54,4.0,0.0,0.0,484.5347154452023,0.0,1222.6014619518671,30128.66,0,43,2,14498,201703524,691.0,691.0,336.0,242.0,1.0,0.0,3.0,1.0,2.0,1.3,1140.7203397035848,0.0,360.0,691.0,0.0,22826.0,0,1,3,50.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1707.1361773970693,0.05666153680240241,0.07478910792066369,17558.46153846154,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +3525,1,20.0,2,137.0,4,111,2,52,84,1.0,0.0,0.0,376.8603342351573,0.0,813.8880933398825,17402.98,31,31,2,14499,201703525,,,,383.0,1.0,0.0,2.0,0.0,2.0,1.5,2317.4462821619145,0.0,280.0,460.0,0.0,5253.0,3,3,3,50.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1190.7484275750398,0.06842209940912647,0.22667969304683797,3502.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3526,1,51.0,5,72.0,99,221,4,0,67,1.0,0.0,0.0,0.0,0.0,0.0,9084.16,0,71,2,145,201703526,,,200.0,,1.0,4.0,2.0,0.0,1.0,1.0,4808.2587950648485,0.0,0.0,0.0,0.0,9364.0,0,1,3,33.0,1,2.0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,9364.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +3527,2,67.0,2,0.0,5,400,6,77,72,2.0,1110.5192063972174,0.0,0.0,123.8525359430256,0.0,20630.719999999998,70,50,1,1450,201703527,,,110.0,,0.0,2.0,5.0,0.0,2.0,1.5,1511.1313473300668,0.0,0.0,0.0,0.0,20771.0,6,5,1,108.0,0,0.0,3,5,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1234.3717423402431,0.05983173356723582,0.0594276511646162,13847.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3528,2,52.0,1,0.0,7,111,2,0,38,10.0,0.0,485.77421184720396,962.3397820647768,0.0,0.0,23573.78,0,31,1,14500,201703528,,,180.0,,1.0,1.0,4.0,0.0,1.0,1.0,6351.116436308121,0.0,715.0,0.0,0.0,54620.0,0,1,1,90.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1448.1139939119807,0.06142901112642864,0.026512522773928612,54620.0,10,5,10,10_1,10_3,10_0_0 +3529,2,46.0,3,0.0,5,111,2,56,46,8.0,0.0,152.6718951519784,2176.3684302080337,0.0,0.0,42248.50175060326,50,42,1,14501,201703529,,,460.0,,2.0,0.0,6.0,2.0,4.0,2.5,1620.2976284109536,0.0,1617.0,0.0,0.0,72236.0,1,1,2,130.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2329.040325360012,0.05512716969488169,0.03224209985824259,28894.4,8,4,8,8_1,8_3,8_0_0 +3530,2,60.0,1,0.0,2,111,2,34,37,10.0,0.0,0.0,753.7206684703146,0.0,2954.767643212182,40775.76816118814,30,31,1,14502,201703530,,,306.0,,2.0,2.0,4.0,0.0,2.0,1.5,2615.8752520440935,0.0,560.0,1670.0,0.0,84623.0,1,1,1,160.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3708.4883116824967,0.09094833718454312,0.04382364501001497,56415.333333333336,10,5,10,10_1,10_2,10_0_1 +3531,1,35.0,3,270.0,4,112,2,85,63,2.0,0.0,0.0,646.0462872602698,0.0,2406.277841178783,18635.48,71,50,2,14503,201703531,,,,234.0,1.0,0.0,4.0,3.0,5.0,2.4,539.9460498450986,0.0,480.0,1360.0,0.0,31401.0,6,1,3,83.0,10,5.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,3052.324128439053,0.16379101200715265,0.09720467910063542,13083.75,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +3532,2,65.0,3,0.0,7,111,4,77,74,8.0,0.0,0.0,2367.4904568558636,0.0,0.0,31704.622382591497,50,31,1,14504,201703532,,,370.0,,0.0,2.0,5.0,0.0,2.0,1.5,499.624805244449,0.0,1759.0,0.0,0.0,42463.0,5,5,1,170.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2367.4904568558636,0.0746733529353062,0.05575419675613743,28308.666666666668,8,4,8,8_1,8_3,8_0_0 +3533,1,21.0,4,353.0,99,111,2,0,67,1.0,0.0,0.0,473.2220242064128,0.0,881.8391017644495,8778.400000000001,0,50,2,14505,201703533,,,200.0,,1.0,0.0,4.0,1.0,2.0,1.3,1447.9259956482128,850.0,0.0,0.0,0.0,11966.0,0,4,3,69.0,4,3.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1355.0611259708623,0.1543631101306459,0.11324261457219308,9204.615384615385,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +3534,2,81.0,3,0.0,6,300,2,77,78,4.0,0.0,0.0,128.04831243232348,0.0,238.6152863597922,20667.199999999997,71,71,1,14508,201703534,,,,,0.0,5.0,6.0,0.0,2.0,1.5,2282.980541173639,230.0,0.0,0.0,0.0,24089.0,5,5,1,120.0,0,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,366.6635987921157,0.017741329197574696,0.01522120464909775,16059.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +3535,2,68.0,4,0.0,1,112,2,0,64,3.0,0.0,0.0,1211.3367886130059,79.61948739194503,0.0,13024.8,0,70,2,1451,201703535,,,121.0,240.0,1.0,0.0,1.0,0.0,1.0,1.0,2850.0948091466507,0.0,900.0,0.0,0.0,15230.0,0,5,3,24.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1290.956276004951,0.09911524752817326,0.08476403650721936,15230.0,3,2,3_0,3_0_0,3_0_0,3_1_0_0 +3536,1,21.0,3,228.0,1,112,4,0,67,3.0,0.0,0.0,0.0,0.0,0.0,10634.039999999999,0,31,2,14511,201703536,,,,,1.0,0.0,4.0,0.0,1.0,1.0,477.465840030801,0.0,0.0,0.0,0.0,15414.0,0,1,3,73.0,8,0.0,1,9,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0.0,0.0,0.0,15414.0,3,2,3_1,3_0_1,3_0_1,3_1_0_1 +3537,1,27.0,4,380.0,7,111,4,0,85,1.0,0.0,0.0,2422.6735772260117,0.0,0.0,12384.839999999998,0,71,2,14514,201703537,,,,120.0,0.0,0.0,3.0,1.0,2.0,1.3,1119.41765813863,0.0,1800.0,0.0,0.0,13190.0,0,7,4,90.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2422.6735772260117,0.19561605779533786,0.1836750248086438,10146.153846153846,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3539,2,44.0,4,0.0,99,212,5,22,21,2.0,0.0,1665.511583476128,2018.894647688343,0.0,0.0,20077.1058467513,43,50,1,14516,201703539,,,300.0,,2.0,1.0,4.0,1.0,3.0,1.8,3131.4612510223064,0.0,1500.0,0.0,0.0,23550.0,4,1,1,100.0,2,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3684.406231164471,0.18351281600483516,0.1564503707500837,13083.333333333332,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3540,2,91.0,2,0.0,4,112,2,0,77,6.0,2617.6524150791556,0.0,740.261370819059,148.62304313163074,0.0,25545.5658467513,0,70,1,14517,201703540,,,240.0,,0.0,0.0,5.0,0.0,1.0,1.0,2726.3155176112978,0.0,550.0,0.0,0.0,22838.0,0,5,1,121.0,9,2.0,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3506.5368290298456,0.13726596819446776,0.1535395756646749,22838.0,6,3,6,6_1,6_1,6_0_1 +3541,2,62.0,3,0.0,1,111,2,77,78,5.0,0.0,0.0,524.9126083989692,0.0,2653.9829130648345,38190.659999999996,43,50,2,14518,201703541,,,400.0,,0.0,2.0,3.0,0.0,2.0,1.5,2834.4119444198263,0.0,390.0,1500.0,0.0,28948.0,4,5,1,90.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3178.8955214638036,0.08323751203733593,0.10981399479977212,19298.666666666668,5,3,5,5_0,5_3,5_1_0 +3542,2,41.0,2,0.0,9,120,5,13,68,4.0,0.0,0.0,2744.3507910910207,106.15931652259337,0.0,42499.76816118815,31,31,5,14519,201703542,,,643.0,,2.0,0.0,6.0,3.0,5.0,2.8,2084.923748540859,0.0,2039.0,0.0,0.0,46142.0,1,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2850.5101076136143,0.06707119193691911,0.06177690840478554,16479.285714285714,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3543,2,75.0,3,0.0,8,221,2,0,72,4.0,0.0,0.0,950.3411709651137,0.0,1770.9404078963712,16279.970875301628,0,70,1,14520,201703543,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2452.818970078391,1707.0,0.0,0.0,0.0,15828.0,0,5,1,90.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2721.281578861485,0.16715518717480912,0.1719283282070688,15828.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +3544,2,71.0,2,0.0,6,111,1,0,75,9.0,0.0,0.0,1049.8252167979383,0.0,0.0,46089.68031599412,0,20,2,14521,201703544,,,540.0,,0.0,1.0,4.0,0.0,1.0,1.0,2589.4672360485856,0.0,780.0,0.0,0.0,31870.0,0,5,1,110.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1049.8252167979383,0.022777880202254866,0.03294086026978156,31870.0,9,5,9,9_0,9_4,9_0_0 +3545,2,56.0,3,0.0,4,111,2,56,55,8.0,0.0,0.0,818.9524677736863,0.0,1526.1003749358886,62014.62919924892,71,50,1,14522,201703545,,,400.0,,2.0,3.0,5.0,0.0,2.0,1.5,1851.878176298586,1471.0,0.0,0.0,0.0,41657.0,1,1,2,110.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2345.052842709575,0.03781451043067716,0.05629432850924394,27771.333333333332,8,4,8,8_1,8_2,8_0_1 +3546,2,47.0,2,0.0,5,111,2,37,46,9.0,0.0,0.0,394.72284136746674,0.0,735.557556648229,78001.26000000001,20,43,1,14523,201703546,,,642.0,,2.0,0.0,5.0,2.0,4.0,2.5,2145.9248461902985,709.0,0.0,0.0,0.0,97000.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1130.2803980156957,0.014490540255576584,0.011652375237275213,38800.0,9,5,9,9_1,9_4,9_0_0 +3547,2,37.0,1,0.0,1,111,1,46,46,8.0,1903.7472109666587,0.0,672.964882562781,0.0,0.0,93648.02166549324,31,31,1,14524,201703547,,,200.0,300.0,2.0,0.0,6.0,1.0,3.0,1.8,2408.9878552751707,0.0,500.0,0.0,0.0,53408.0,1,1,3,90.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2576.7120935294397,0.027514858805382413,0.04824580762300479,29671.11111111111,8,4,8,8_1,8_3,8_1_0 +3548,1,34.0,2,272.0,9,111,2,0,85,3.0,0.0,0.0,2153.487624200899,0.0,3538.6438840864457,10428.390875301628,0,71,2,14525,201703548,,,,163.0,0.0,0.0,3.0,0.0,1.0,1.0,2199.8494814722962,0.0,1600.0,2000.0,0.0,15321.0,0,8,3,82.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,5692.131508287344,0.5458302797000507,0.37152480309949376,15321.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +3549,2,76.0,2,0.0,4,221,2,78,75,4.0,0.0,416.377895869032,462.9998392031933,0.0,2363.814114569746,29825.780000000002,70,50,1,14529,201703549,,,404.0,,0.0,5.0,5.0,0.0,2.0,1.5,2687.6647925729776,0.0,344.0,1336.0,0.0,26327.0,5,5,1,110.0,1,1.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3243.191849641971,0.10873787205705839,0.12318881185254572,17551.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +3550,2,63.0,4,0.0,5,112,2,77,75,2.0,0.0,0.0,2288.080600713455,176.9321942043223,0.0,13204.48,50,70,1,1453,201703550,,,149.0,,0.0,2.0,5.0,0.0,2.0,1.5,1811.126174921475,0.0,1700.0,0.0,0.0,20560.0,6,5,1,128.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2465.0127949177777,0.18668003548172876,0.119893618429853,13706.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3551,2,44.0,3,0.0,5,111,1,85,56,2.0,0.0,0.0,349.9417389326461,0.0,283.09151072691566,15603.74,50,71,2,14530,201703551,,,,343.0,1.0,1.0,3.0,0.0,2.0,1.5,2691.2111105105714,0.0,260.0,160.0,0.0,18092.0,7,1,3,67.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,633.0332496595618,0.040569328228973425,0.03498967773930808,12061.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +3552,2,31.0,3,0.0,5,111,1,0,56,6.0,0.0,0.0,726.8020731678034,0.0,0.0,25585.36,0,50,2,14531,201703552,,,,456.0,1.0,0.0,5.0,0.0,1.0,1.0,3024.998033426259,0.0,540.0,0.0,0.0,22625.0,0,1,3,90.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,726.8020731678034,0.02840695120833959,0.032123848537803465,22625.0,6,3,6,6_0,6_3,6_0_0 +3553,2,63.0,4,0.0,1,111,2,48,33,6.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,59433.399999999994,50,60,1,14533,201703553,,,,1073.0,2.0,0.0,5.0,0.0,2.0,1.5,1818.0162900600928,1500.0,0.0,0.0,0.0,38333.0,4,1,3,120.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2391.2843399485805,0.04023468857491883,0.062381873058424346,25555.333333333332,7,4,7,7_1,7_2,7_1_0 +3554,1,36.0,4,300.0,1,111,4,0,55,1.0,0.0,0.0,1440.1448486843512,0.0,0.0,13078.78,0,50,2,14534,201703554,,,125.0,,1.0,0.0,3.0,3.0,4.0,1.9,876.7960278253839,0.0,1070.0,0.0,0.0,18692.0,0,4,3,57.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1440.1448486843512,0.11011308766447261,0.07704605439141618,9837.894736842105,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +3555,2,78.0,1,0.0,5,111,6,77,75,9.0,2221.038412794435,0.0,1076.7438121004495,0.0,0.0,30241.190875301632,50,44,1,14535,201703555,,,200.0,,0.0,1.0,6.0,0.0,2.0,1.5,2141.307712233528,0.0,800.0,0.0,0.0,49885.0,4,4,1,162.0,9,7.0,3,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3297.782224894884,0.10904935055279934,0.06610769218993454,33256.666666666664,9,5,9,9_1,9_3,9_0_0 +3556,2,68.0,2,0.0,5,111,2,0,72,6.0,0.0,0.0,890.7708690944243,0.0,1659.9324268507285,18993.07569949955,0,50,1,14536,201703556,,,150.0,,1.0,1.0,5.0,1.0,2.0,1.5,2980.0414518575326,1600.0,0.0,0.0,0.0,33442.0,0,5,1,140.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2550.7032959451526,0.13429648448209794,0.07627245068910808,22294.666666666668,6,3,6,6_1,6_3,6_0_0 +3557,2,79.0,1,0.0,4,212,5,74,78,9.0,0.0,610.6875806079136,2071.3859085282397,53.079658261296686,0.0,50417.5,70,50,1,14539,201703557,,,150.0,,0.0,3.0,5.0,0.0,2.0,1.5,2272.851362870571,0.0,1539.0,0.0,0.0,55309.0,5,5,1,120.0,2,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2735.15314739745,0.05425007482317549,0.04945222563050227,36872.666666666664,9,5,9,9_1,9_0,9_0_1 +3558,1,85.0,3,84.0,2,111,2,0,78,5.0,0.0,0.0,403.7789295376686,0.0,707.7287768172891,9786.8,0,71,2,14540,201703558,,,,280.0,0.0,2.0,4.0,0.0,1.0,1.0,3719.249542579526,0.0,300.0,400.0,0.0,20658.0,0,5,3,80.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1111.5077063549577,0.11357212841326662,0.053805194421287526,20658.0,5,3,5,5_0,5_2,5_0_1 +3559,2,78.0,3,0.0,1,112,4,0,75,6.0,0.0,0.0,2063.3103299374866,159.23897478389006,0.0,31285.925846751306,0,41,1,14541,201703559,,,407.0,,0.0,3.0,3.0,0.0,1.0,1.0,2808.0321283841886,0.0,1533.0,0.0,0.0,20599.0,0,5,1,100.0,8,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2222.5493047213768,0.07103990834754739,0.10789598061660162,20599.0,5,3,5,5_1,5_0,5_1_0 +3560,1,23.0,2,177.0,7,111,1,0,84,1.0,0.0,0.0,605.6683943065029,0.0,0.0,16015.880000000001,0,30,2,14542,201703560,,,,253.0,0.0,0.0,1.0,0.0,1.0,1.0,3724.042560892672,0.0,450.0,0.0,0.0,6935.0,0,3,3,21.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,605.6683943065029,0.0378167415281897,0.08733502441333857,6935.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3561,2,58.0,2,0.0,7,111,2,45,53,10.0,0.0,0.0,1662.5670968810027,0.0,3758.762880849391,42867.391305584526,31,50,1,14543,201703561,,,325.0,,2.0,2.0,5.0,0.0,2.0,1.5,1283.598677059628,1714.6641383015703,526.0,1119.0,0.0,65758.0,1,1,1,99.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5421.329977730394,0.12646745725868636,0.08244365670687055,43838.666666666664,10,5,10,10_1,10_2,10_0_0 +3562,2,43.0,2,0.0,8,111,2,56,37,7.0,0.0,0.0,1372.8483604280732,0.0,1557.0033089980361,45345.92,31,20,1,14544,201703562,,,520.0,,2.0,0.0,5.0,2.0,4.0,2.3,2597.3078444048,0.0,1020.0,880.0,0.0,60895.0,1,1,4,135.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2929.8516694261093,0.0646111418497212,0.04811317299328532,26476.08695652174,7,4,7,7_1,7_3,7_0_0 +3563,2,49.0,4,0.0,2,111,6,64,54,9.0,158.64560091388822,0.0,1792.7784471472485,0.0,0.0,34536.40932216843,50,50,1,14545,201703563,,,600.0,,3.0,1.0,6.0,1.0,3.0,2.0,1611.9832589688838,0.0,1332.0,0.0,0.0,75500.0,1,1,2,160.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1951.4240480611368,0.05650338545207551,0.02584667613326009,37750.0,9,5,9,9_1,9_3,9_0_1 +3564,2,24.0,1,0.0,1,111,2,0,56,6.0,0.0,0.0,376.8603342351573,0.0,1769.3219420432229,123508.4,0,43,2,14546,201703564,,,300.0,,2.0,1.0,5.0,1.0,2.0,1.5,2623.9990632602635,0.0,280.0,1000.0,0.0,31491.0,0,1,1,170.0,7,4.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,2146.1822762783804,0.01737681223526805,0.06815224274485981,20994.0,5,3,5,5_0,5_2,5_1_0 +3565,1,57.0,3,270.0,2,111,4,0,78,1.0,0.0,0.0,228.80806007134552,0.0,0.0,10685.439999999999,0,50,2,14548,201703565,,,,120.0,0.0,3.0,1.0,0.0,1.0,1.0,4242.77523528972,0.0,170.0,0.0,0.0,3245.0,0,7,3,25.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,228.80806007134552,0.021413068630898265,0.07051095841952096,3245.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3566,2,39.0,5,0.0,7,111,2,62,43,3.0,0.0,0.0,686.4241802140366,0.0,1415.4575536345783,12797.259999999998,50,50,1,14549,201703566,,,250.0,,2.0,0.0,4.0,2.0,4.0,2.1,3174.8735510920915,0.0,510.0,800.0,0.0,29190.0,4,1,3,99.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2101.881733848615,0.16424466908139831,0.07200691106024718,13900.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3567,2,60.0,3,0.0,9,112,2,0,75,3.0,0.0,199.86139001713536,705.2671969257945,0.0,1592.3897478389006,23285.1858467513,0,31,1,14551,201703567,,,860.0,,1.0,2.0,5.0,1.0,2.0,1.5,3107.314001513339,0.0,524.0,900.0,0.0,28002.0,0,5,2,120.0,9,0.0,2,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2497.51833478183,0.10725782268687706,0.08919071261987822,18668.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3568,2,55.0,2,0.0,2,400,5,52,63,8.0,0.0,999.3069500856767,656.8137253812743,0.0,0.0,21648.399999999998,71,71,1,14552,201703568,,,356.0,,2.0,3.0,5.0,0.0,2.0,1.5,2391.6602303573654,0.0,488.0,0.0,0.0,43265.0,1,1,1,110.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1656.120675466951,0.07650083495625318,0.03827853173389463,28843.333333333332,8,4,8,8_1,8_1,8_0_1 +3569,2,73.0,2,0.0,1,111,2,78,78,4.0,0.0,0.0,754.7234589331835,0.0,2613.412376462904,16408.037640684146,70,70,1,14553,201703569,,,138.0,,0.0,0.0,5.0,0.0,2.0,1.5,917.1476342227511,719.8150628568535,263.0,1055.0,0.0,27381.0,5,5,1,75.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3368.1358353960873,0.20527353173817137,0.12300996440583205,18254.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +3570,2,35.0,2,0.0,5,111,4,43,42,7.0,0.0,0.0,2153.487624200899,0.0,0.0,61990.40206659738,31,30,1,14554,201703570,,,440.0,,2.0,0.0,5.0,1.0,3.0,1.8,3047.0276719897097,0.0,1600.0,0.0,0.0,44054.0,1,1,2,90.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2153.487624200899,0.03473904914969529,0.048882907890336835,24474.444444444445,7,4,7,7_1,7_3,7_0_0 +3571,1,30.0,3,462.0,99,221,4,0,85,1.0,0.0,0.0,807.5578590753372,254.7823596542241,0.0,13321.990875301626,0,71,2,14555,201703571,,,,,0.0,0.0,3.0,3.0,4.0,1.9,1082.1984540586127,0.0,600.0,0.0,0.0,19654.0,0,6,3,50.0,1,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1062.3402187295612,0.07974335282717333,0.054052112482423996,10344.21052631579,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +3572,2,40.0,3,0.0,1,400,6,56,21,4.0,0.0,1776.545689041203,3617.8592086575104,185.7788039145384,0.0,47109.68598062246,60,71,1,14557,201703572,,,676.0,,2.0,0.0,6.0,2.0,4.0,2.3,3485.716977290394,0.0,2688.0,0.0,0.0,37208.0,1,1,1,192.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,5580.183701613251,0.11845087874091409,0.149972686024867,16177.391304347828,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +3573,2,53.0,2,0.0,5,300,2,62,62,7.0,2062.392811880547,0.0,1324.394888883553,0.0,0.0,32451.9371719182,50,44,1,14558,201703573,,,540.0,,2.0,1.0,5.0,1.0,3.0,2.0,1930.6702607504606,0.0,984.0,0.0,0.0,48259.0,1,1,1,120.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3386.7877007641,0.10436319048758685,0.07017940074937525,24129.5,7,4,7,7_1,7_0,7_0_0 +3574,2,71.0,3,0.0,6,112,2,0,77,7.0,0.0,0.0,1103.6624074029608,0.0,0.0,15235.860000000002,0,30,1,1456,201703574,,,300.0,,0.0,1.0,2.0,0.0,1.0,1.0,2468.56750069645,0.0,820.0,0.0,0.0,25890.0,0,5,3,51.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1103.6624074029608,0.07243847130407871,0.04262890719980536,25890.0,7,4,7,7_1,7_2,7_0_0 +3575,1,43.0,3,121.0,5,111,1,85,65,2.0,0.0,0.0,915.2322402853821,0.0,0.0,32245.099999999995,71,43,2,14561,201703575,,,500.0,164.0,1.0,0.0,5.0,4.0,7.0,3.2,3503.4911909404977,0.0,680.0,0.0,0.0,33716.0,6,1,3,97.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,915.2322402853821,0.028383606820427978,0.02714533872005523,10536.25,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3576,2,44.0,2,0.0,1,111,1,0,47,8.0,0.0,0.0,444.15682249143543,0.0,0.0,21639.3058467513,0,31,2,14562,201703576,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4945.719062485688,0.0,330.0,0.0,0.0,30290.0,0,1,2,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,444.15682249143543,0.02052546535627974,0.014663480438806055,30290.0,8,4,8,8_0,8_4,8_1_0 +3577,0,54.0,3,0.0,99,211,2,85,78,3.0,0.0,0.0,993.2961666626647,0.0,2017.027013929274,18216.6,71,71,1,14564,201703577,,,,,0.0,3.0,5.0,1.0,3.0,2.0,1553.178797246026,0.0,738.0,1140.0,0.0,27670.0,6,5,5,90.0,2,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3010.3231805919386,0.1652516485289208,0.10879375426786912,13835.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +3578,2,67.0,3,0.0,9,400,5,77,72,4.0,0.0,277.585263912688,1157.4995980079832,106.15931652259337,0.0,22767.467849749773,31,50,1,14565,201703578,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1631.6971169114593,0.0,860.0,0.0,0.0,27310.0,5,5,5,180.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1541.2441784432647,0.06769501942923371,0.0564351584929793,18206.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3579,2,82.0,3,0.0,3,111,2,86,86,3.0,2141.715612337491,0.0,537.0259762850992,169.8549064361494,0.0,37611.90816118815,70,50,1,14568,201703579,,,300.0,,0.0,1.0,4.0,0.0,2.0,1.5,2669.181472235918,0.0,399.0,0.0,0.0,20220.0,5,5,1,78.0,6,5.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2848.59649505874,0.07573655882735075,0.14088014317797923,13480.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +3580,2,63.0,3,0.0,1,111,2,0,75,9.0,0.0,0.0,425.3138057796776,0.0,1818.8629564204332,16521.82,0,31,1,14569,201703580,,,320.0,,0.0,1.0,3.0,0.0,1.0,1.0,1866.7606727065627,0.0,316.0,1028.0,0.0,31811.0,0,5,1,59.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2244.1767622001107,0.13583108653889892,0.07054719317846377,31811.0,8,4,8,8_1,8_4,8_1_0 +3581,2,45.0,2,0.0,6,111,4,0,37,10.0,0.0,0.0,1615.1157181506744,0.0,0.0,28765.539999999997,0,20,1,1457,201703581,,,360.0,,1.0,1.0,4.0,0.0,1.0,1.0,701.6061289203409,0.0,1200.0,0.0,0.0,42797.0,0,1,1,80.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.05614758903016159,0.037738993811497874,42797.0,10,5,10,10_1,10_3,10_0_0 +3582,2,73.0,2,0.0,4,300,2,72,72,6.0,1484.9228245539937,0.0,1580.686033502555,0.0,688.2744033247043,25820.178194178934,70,50,1,14570,201703582,,,,,0.0,0.0,6.0,0.0,2.0,1.5,1372.444991258734,663.4240210662244,900.0,0.0,0.0,32700.0,5,5,1,100.0,0,0.0,3,5,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3753.883261381253,0.14538564502345505,0.11479765325324932,21800.0,6,3,6,6_1,6_0,6_0_1 +3583,2,34.0,1,0.0,7,111,5,54,53,10.0,0.0,693.9631597817199,1897.7609688270425,212.31863304518674,0.0,81032.56,44,50,1,14571,201703583,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2993.9178036666385,0.0,1410.0,0.0,0.0,110906.0,1,1,2,110.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2804.042761653949,0.03460390195810115,0.02528305737880682,52812.38095238095,10,5,10,10_1,10_2,10_0_0 +3584,2,64.0,4,0.0,5,111,1,0,77,4.0,0.0,0.0,289.5005324556879,0.0,539.4780387264867,14511.800000000001,0,50,2,14572,201703584,,,,374.0,0.0,2.0,2.0,0.0,1.0,1.0,4536.362295189661,520.0,0.0,0.0,0.0,18434.0,0,5,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,828.9785711821746,0.05712444846140207,0.044970086317791834,18434.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +3585,2,66.0,3,0.0,5,112,4,77,78,5.0,0.0,346.98157989085996,2812.9932091124247,0.0,0.0,26673.940000000002,70,70,1,14573,201703585,,,237.0,,0.0,1.0,4.0,0.0,2.0,1.5,2086.3852990255177,0.0,2090.0,0.0,0.0,28450.0,5,5,1,70.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3159.9747890032845,0.11846674278352895,0.1110711700879889,18966.666666666668,5,3,5,5_1,5_0,5_0_0 +3586,1,37.0,3,245.0,1,120,6,0,85,3.0,0.0,0.0,1211.3367886130059,0.0,0.0,16778.150875301628,0,41,8,14575,201703586,,,,55.0,0.0,0.0,1.0,0.0,1.0,1.0,5188.97028514058,0.0,900.0,0.0,0.0,13904.0,0,7,3,20.0,0,3.0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1211.3367886130059,0.07219727594631188,0.08712146063096993,13904.0,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +3587,2,59.0,2,0.0,5,111,2,52,42,10.0,0.0,111.0341055650752,982.5287285416603,0.0,1362.3778953732817,42048.659999999996,41,31,1,14576,201703587,,,216.0,,2.0,2.0,4.0,0.0,2.0,1.5,1992.3341784966753,0.0,730.0,770.0,0.0,63375.0,1,1,1,100.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2455.940729480017,0.05840711046392483,0.03875251644149928,42250.0,10,5,10,10_1,10_3,10_0_0 +3588,2,45.0,2,0.0,4,111,5,85,67,3.0,0.0,333.10231669522557,99.59880261929159,0.0,0.0,28664.870875301625,31,43,1,14577,201703588,,,410.0,,1.0,0.0,4.0,2.0,4.0,2.1,1803.3397870708557,0.0,74.0,0.0,0.0,31445.0,6,1,2,90.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,432.70111931451714,0.015095170712502435,0.013760569862124889,14973.809523809523,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3589,2,57.0,1,0.0,3,111,1,52,62,8.0,0.0,0.0,2826.45250676368,0.0,0.0,37274.92,50,50,2,14578,201703589,,,,297.0,2.0,3.0,3.0,0.0,2.0,1.5,1226.179370885625,0.0,2100.0,0.0,0.0,42342.0,1,4,3,62.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2826.45250676368,0.07582719176228092,0.06675292869405508,28228.0,8,4,8,8_0,8_2,8_0_1 +3590,2,57.0,3,0.0,8,111,2,54,48,6.0,0.0,0.0,672.964882562781,0.0,2123.1863304518674,54391.200000000004,31,50,1,14581,201703590,,,300.0,,2.0,2.0,4.0,0.0,2.0,1.5,2551.2247630803263,0.0,500.0,1200.0,0.0,35557.0,1,1,1,130.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2796.1512130146484,0.05140815449952654,0.07863855817461114,23704.666666666668,6,3,6,6_1,6_3,6_0_0 +3591,1,29.0,5,100.0,2,111,2,85,62,4.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,68431.44834063991,50,42,2,14582,201703591,,,250.0,,1.0,0.0,3.0,2.0,4.0,2.1,5604.589429106195,1440.0,0.0,0.0,0.0,35753.0,6,1,2,57.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,2295.6329663506376,0.03354646178060376,0.06420812145416155,17025.238095238095,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +3592,2,55.0,3,0.0,1,120,5,0,13,3.0,0.0,20.818894793451598,605.6683943065029,0.0,0.0,21156.16,0,44,1,14583,201703592,,,150.0,,1.0,0.0,4.0,0.0,1.0,1.0,2278.555414922775,0.0,450.0,0.0,0.0,18577.0,0,1,1,80.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,626.4872890999545,0.029612523685770695,0.033723813807393796,18577.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3593,2,25.0,1,0.0,99,111,2,46,64,9.0,1745.1016100527704,0.0,740.261370819059,0.0,0.0,33109.74,31,71,1,14585,201703593,,,360.0,998.0,2.0,0.0,5.0,0.0,2.0,1.5,4107.905712263901,0.0,550.0,0.0,0.0,48127.0,1,1,3,65.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2485.3629808718297,0.07506440645175196,0.05164175994497537,32084.666666666668,9,5,9,9_1,9_3,9_0_0 +3594,2,68.0,3,0.0,2,111,4,0,72,3.0,0.0,0.0,794.0985614240816,0.0,0.0,17113.86,0,70,2,14587,201703594,,,100.0,319.0,0.0,2.0,2.0,0.0,1.0,1.0,1826.397121605743,0.0,590.0,0.0,0.0,15318.0,0,5,3,48.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,794.0985614240816,0.04640090321085258,0.05184087749210612,15318.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +3595,1,42.0,4,100.0,9,111,4,0,68,5.0,0.0,0.0,659.5055849115254,0.0,0.0,15825.394007939445,0,50,2,14589,201703595,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,2612.9494418981008,0.0,490.0,0.0,0.0,19140.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,659.5055849115254,0.04167388088919984,0.034456927111364964,19140.0,5,3,5,5_0,5_4,5_0_0 +3596,2,43.0,3,0.0,5,120,2,54,22,10.0,2649.381535261933,0.0,1813.4710090859928,0.0,898.8423135450839,41764.82295156879,31,42,1,14590,201703596,,,389.0,,2.0,0.0,7.0,4.0,6.0,2.7,2476.396849590769,866.3893050156441,989.0,0.0,0.0,270886.0,1,1,2,180.0,0,0.0,4,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5361.69485789301,0.12837824942082296,0.019793178155729754,100328.14814814815,10,5,10,10_1,10_0,10_0_0 +3597,2,69.0,3,0.0,7,112,4,52,75,6.0,0.0,0.0,2422.6735772260117,226.47320858153253,0.0,62998.799999999996,70,50,1,14591,201703597,,,218.0,,1.0,2.0,6.0,0.0,2.0,1.5,1549.4772380168356,0.0,1800.0,0.0,0.0,37827.0,5,5,1,150.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2649.1467858075443,0.0420507499477378,0.0700332245699512,25218.0,7,4,7,7_1,7_0,7_0_0 +3598,2,43.0,2,0.0,6,111,2,52,48,9.0,0.0,0.0,1090.2031097517051,0.0,1415.4575536345783,92654.82000000002,31,31,1,14592,201703598,,,439.0,,2.0,0.0,6.0,1.0,3.0,2.0,2632.2384554368905,0.0,810.0,800.0,0.0,66119.0,1,1,2,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2505.6606633862834,0.02704296078052154,0.037896227459373,33059.5,9,5,9,9_1,9_3,9_0_0 +3599,2,80.0,2,0.0,4,111,6,0,77,6.0,0.0,0.0,1538.43152575661,0.0,3801.274483631707,33313.70867676766,0,60,1,14593,201703599,,,24.0,,0.0,2.0,6.0,0.0,1.0,1.0,2503.7649215956685,1542.4608489789719,505.0,1244.0,0.0,24386.0,0,5,1,96.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5339.706009388317,0.1602855467458694,0.21896604647700801,24386.0,7,4,7,7_1,7_3,7_0_1 +3600,2,56.0,3,0.0,4,111,1,74,37,4.0,0.0,0.0,557.2149227619826,0.0,0.0,63256.44,42,31,2,14595,201703600,,,,,1.0,0.0,3.0,0.0,2.0,1.5,3361.655268747173,0.0,414.0,0.0,0.0,25635.0,6,1,1,72.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,557.2149227619826,0.008808825200437815,0.0217364900628821,17090.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +3601,2,39.0,1,0.0,6,111,6,31,31,10.0,237.96840137083234,0.0,1292.0925745205395,0.0,0.0,87426.69999999998,10,10,1,14597,201703601,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2677.635637728193,0.0,960.0,0.0,0.0,277610.0,1,1,2,158.0,4,3.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1530.060975891372,0.01750107205111679,0.005511548488495991,132195.23809523808,10,5,10,10_1,10_1,10_0_0 +3602,2,34.0,3,0.0,9,221,4,64,45,6.0,0.0,0.0,2341.9177913184776,0.0,0.0,35550.18,71,20,1,14598,201703602,,,294.0,,2.0,0.0,4.0,2.0,4.0,2.1,2840.155972670731,0.0,1740.0,0.0,0.0,44249.0,1,1,2,100.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2341.9177913184776,0.0658763975686896,0.05292589191435914,21070.95238095238,5,3,5,5_1,5_1,5_0_0 +3603,2,31.0,1,0.0,4,111,1,31,37,10.0,0.0,0.0,322.9044400467288,0.0,601.7255047333891,39362.133444105864,30,12,2,146,201703603,,,52.0,751.0,2.0,0.0,3.0,0.0,2.0,1.5,3019.0930477967136,580.0,0.0,0.0,0.0,66877.0,1,1,3,85.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,924.629944780118,0.023490341195379825,0.013825828682209398,44584.666666666664,10,5,10,10_0,10_3,10_0_1 +3604,2,28.0,2,0.0,8,300,5,33,43,8.0,0.0,0.0,1615.1157181506744,123.8525359430256,0.0,52346.310000000005,30,30,1,1460,201703604,,,350.0,,2.0,0.0,5.0,1.0,3.0,1.8,2874.4068169026864,0.0,1200.0,0.0,0.0,47567.0,1,1,2,110.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1738.9682540937001,0.03322045535002754,0.036558291548630356,26426.11111111111,7,4,7,7_1,7_0,7_0_0 +3605,1,23.0,4,270.0,9,111,1,0,34,8.0,0.0,0.0,161.51157181506744,0.0,0.0,8617.4,0,41,2,14600,201703605,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2849.5512446232015,0.0,120.0,0.0,0.0,29551.0,0,1,3,18.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,161.51157181506744,0.018742494466436214,0.005465519671587,29551.0,8,4,8,8_0,8_3,8_0_0 +3606,2,45.0,3,0.0,2,111,2,64,54,4.0,0.0,513.5327382384728,946.4440484128256,0.0,1763.678203528899,55874.240190587705,43,42,1,14601,201703606,,,450.0,,2.0,0.0,4.0,2.0,4.0,2.1,2616.658635944736,1700.0,0.0,0.0,0.0,34514.0,1,1,1,90.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3223.6549901801973,0.05769483359745513,0.09340137307122319,16435.238095238095,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +3607,1,59.0,5,146.0,9,211,6,0,77,3.0,0.0,0.0,740.261370819059,0.0,0.0,7062.271191295745,0,50,2,14602,201703607,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2126.378446401001,0.0,550.0,0.0,0.0,15062.0,0,7,3,51.0,3,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,740.261370819059,0.1048191652186101,0.04914761458100246,15062.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +3608,2,47.0,4,0.0,8,112,2,0,56,2.0,0.0,0.0,242.26735772260116,0.0,707.7287768172891,7452.3908753016285,0,71,2,14604,201703608,,,510.0,289.0,1.0,2.0,2.0,0.0,1.0,1.0,2553.9012690370582,0.0,180.0,400.0,0.0,12710.0,0,1,3,52.0,10,0.0,1,1,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,949.9961345398904,0.12747534991600132,0.07474399170258776,12710.0,2,1,2_0,2_0_0,2_0_0,2_0_0_0 +3609,1,32.0,4,360.0,99,111,1,0,63,5.0,0.0,0.0,339.1743008116416,0.0,0.0,13322.220000000001,0,71,2,14605,201703609,,,,137.0,1.0,0.0,2.0,1.0,2.0,1.3,5301.603487486732,0.0,252.0,0.0,0.0,24610.0,0,1,3,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,339.1743008116416,0.02545929288148984,0.013781970776580317,18930.76923076923,5,3,5,5_0,5_4,5_0_0 +3610,2,25.0,1,0.0,1,111,4,35,46,9.0,0.0,0.0,646.0462872602698,0.0,0.0,36538.85999999999,30,30,2,14607,201703610,,,,500.0,2.0,0.0,1.0,0.0,2.0,1.5,7328.29150809781,0.0,480.0,0.0,0.0,54328.0,1,1,3,34.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,646.0462872602698,0.017681073992463638,0.011891589737525212,36218.666666666664,9,5,9,9_0,9_4,9_1_0 +3611,2,58.0,3,0.0,1,221,4,56,47,7.0,0.0,832.755791738064,1776.6272899657417,0.0,0.0,38535.08,50,42,1,14608,201703611,,,1000.0,,2.0,1.0,6.0,1.0,3.0,1.8,1818.9632334808373,0.0,1320.0,0.0,0.0,44834.0,1,1,2,198.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2609.3830817038056,0.06771448461256095,0.058200987681308956,24907.777777777777,7,4,7,7_1,7_1,7_1_0 +3612,1,49.0,5,353.0,1,120,4,0,52,4.0,618.717843564164,0.0,2220.7841124571773,569.7216653379178,0.0,10033.439999999999,0,50,2,14609,201703612,,,,147.0,2.0,1.0,4.0,1.0,2.0,1.5,2370.6544664659873,0.0,1650.0,0.0,0.0,25290.0,0,4,3,75.0,0,0.0,2,3,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,3409.223621359259,0.3397861173594759,0.13480520448237482,16860.0,4,2,4_1,4_0_1,4_0_1,4_1_0_1 +3613,2,57.0,2,0.0,9,111,1,48,48,9.0,0.0,0.0,341.9199975324978,0.0,0.0,57697.150330315744,71,71,2,1461,201703613,,,,500.0,3.0,0.0,4.0,1.0,4.0,2.3,4236.088997008127,0.0,254.04000000000002,0.0,0.0,73030.0,1,1,3,90.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,341.9199975324978,0.0059261158579758,0.004681911509413909,31752.17391304348,8,4,8,8_0,8_4,8_0_0 +3614,1,22.0,1,127.0,9,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,9933.220000000001,0,41,8,14610,201703614,,,,74.0,0.0,0.0,1.0,0.0,1.0,1.0,4178.180641131561,0.0,0.0,0.0,0.0,8201.0,0,3,3,17.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0.0,0.0,0.0,8201.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +3615,2,59.0,1,0.0,1,111,2,42,38,10.0,0.0,0.0,1126.5432134100954,0.0,2293.041236888017,66748.51767803942,20,20,1,14611,201703615,,,400.0,,2.0,3.0,5.0,0.0,2.0,1.5,1758.0530546650834,0.0,837.0,1296.0,0.0,82063.0,1,1,1,170.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3419.5844502981126,0.05123086727996616,0.041670234457649766,54708.666666666664,10,5,10,10_1,10_3,10_1_0 +3616,2,42.0,2,0.0,9,300,2,54,47,7.0,0.0,0.0,1843.9237782220198,106.15931652259337,0.0,47068.3,31,31,1,14612,201703616,,,432.0,,2.0,0.0,4.0,1.0,3.0,2.0,2674.4735993706117,0.0,1370.0,0.0,0.0,47920.0,1,1,2,98.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1950.0830947446132,0.04143092261128218,0.04069455539951196,23960.0,7,4,7,7_1,7_0,7_0_0 +3617,2,35.0,2,0.0,9,221,6,52,63,6.0,0.0,0.0,1878.9179521152844,0.0,0.0,48060.62,31,43,1,14613,201703617,,,,,2.0,0.0,6.0,1.0,3.0,1.8,1521.2212821442201,0.0,1396.0,0.0,0.0,43793.0,1,1,2,130.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1878.9179521152844,0.03909475059030209,0.04290452702749947,24329.444444444445,7,4,7,7_1,7_1,7_0_0 +3618,2,65.0,3,0.0,6,300,5,77,78,3.0,0.0,832.755791738064,1265.1739792180283,116.7752481748527,0.0,25752.6,50,50,1,14614,201703618,,,237.0,,0.0,1.0,4.0,0.0,2.0,1.5,1731.8176990052068,0.0,940.0,0.0,0.0,21244.0,4,5,1,81.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2214.705019130945,0.08599927848570417,0.10425084819859466,14162.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3619,1,52.0,4,346.0,99,111,1,0,85,1.0,0.0,0.0,358.01731752339947,61.9262679715128,0.0,6922.42,0,50,2,14615,201703619,,,,,0.0,2.0,3.0,1.0,2.0,1.5,941.0690878897824,0.0,266.0,0.0,0.0,13033.0,0,6,3,65.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,419.94358549491227,0.06066427427040143,0.03222155954077436,8688.666666666666,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3620,2,27.0,2,0.0,99,111,1,0,43,7.0,0.0,0.0,646.0462872602698,0.0,0.0,12990.64,0,33,2,14616,201703620,,,,390.0,1.0,0.0,1.0,0.0,1.0,1.0,4574.926924969675,0.0,480.0,0.0,0.0,25330.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,646.0462872602698,0.049731675056830904,0.025505183073836153,25330.0,7,4,7,7_0,7_4,7_0_0 +3621,0,69.0,4,0.0,1,300,5,77,78,3.0,57.11241632899976,277.585263912688,1227.4879457945126,297.2460862632615,0.0,52070.18,50,70,1,14618,201703621,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3867.6114702498676,0.0,912.0,0.0,0.0,20940.0,7,5,5,50.0,0,0.0,3,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1859.4317122994619,0.035710107249474876,0.08879807604104402,13960.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3622,1,49.0,1,120.0,1,111,2,0,33,7.0,0.0,0.0,428.68348075169166,0.0,798.8424804219131,19945.511191295744,0,20,2,14620,201703622,,,,266.0,2.0,0.0,3.0,0.0,2.0,1.5,4005.075381240393,770.0,0.0,0.0,0.0,38428.0,0,1,3,72.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1227.5259611736049,0.061543970941657256,0.03194352974845438,25618.666666666668,7,4,7,7_0,7_3,7_1_0 +3623,2,88.0,2,0.0,6,111,2,78,75,3.0,0.0,0.0,607.0143240716285,0.0,2399.20055341061,24032.370737753376,70,44,1,14622,201703623,,,230.0,,0.0,2.0,5.0,0.0,2.0,1.5,2089.460175098178,0.0,451.0,1356.0,0.0,23804.0,5,5,1,92.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3006.2148774822385,0.12509023393017402,0.12629032420947062,15869.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3624,2,57.0,3,0.0,1,300,5,78,62,7.0,0.0,0.0,740.261370819059,212.31863304518674,0.0,32884.81883901972,50,71,1,14623,201703624,,,190.0,,2.0,2.0,4.0,1.0,3.0,2.0,2270.136043026229,0.0,550.0,0.0,0.0,48553.0,7,1,1,80.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,952.5800038642458,0.02896716592928148,0.019619385081544823,24276.5,7,4,7,7_1,7_0,7_1_0 +3625,1,36.0,3,462.0,9,111,1,0,85,2.0,0.0,0.0,597.5928157157495,0.0,0.0,24565.26,0,50,2,14624,201703625,,,400.0,169.0,0.0,0.0,4.0,3.0,4.0,1.9,887.0749054060926,0.0,444.0,0.0,0.0,20961.0,0,6,3,90.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,597.5928157157495,0.02432674499336663,0.02850974742215302,11032.105263157895,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3626,2,88.0,3,0.0,4,112,2,0,77,7.0,0.0,0.0,779.2933340077004,0.0,1372.993827025541,27358.38,0,70,1,14625,201703626,,,265.0,,0.0,3.0,4.0,0.0,1.0,1.0,2653.3183657820377,0.0,579.0,776.0,0.0,24065.0,0,5,1,80.0,10,2.0,1,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2152.2871610332413,0.07867012451151133,0.08943640810443554,24065.0,7,4,7,7_1,7_1,7_0_1 +3627,2,41.0,2,0.0,7,111,2,0,62,6.0,0.0,0.0,753.7206684703146,0.0,0.0,15293.703983607204,0,44,2,14626,201703627,,,64.0,,1.0,0.0,2.0,0.0,1.0,1.0,2485.152017396304,0.0,560.0,0.0,0.0,22835.0,0,1,2,38.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,753.7206684703146,0.049283068985655924,0.033007255023880654,22835.0,6,3,6,6_0,6_2,6_0_0 +3628,2,70.0,3,0.0,1,212,2,0,72,7.0,7932.280045694411,208.188947934516,2691.859530251124,53.079658261296686,0.0,59764.76,0,71,1,14627,201703628,,,800.0,,0.0,2.0,16.0,0.0,1.0,1.0,2068.215236286948,0.0,2000.0,0.0,0.0,24940.0,0,5,1,600.0,2,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,10885.408182141347,0.182137570403384,0.43646384050286074,24940.0,7,4,7,7_1,7_0,7_1_0 +3629,2,35.0,3,0.0,4,111,1,0,22,3.0,0.0,0.0,403.7789295376686,0.0,0.0,21366.726811689,0,60,8,14628,201703629,,,,800.0,1.0,0.0,2.0,0.0,1.0,1.0,6480.229340861202,0.0,300.0,0.0,0.0,18925.0,0,1,3,65.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,403.7789295376686,0.018897556612029832,0.021335742643998342,18925.0,5,3,5,5_0,5_3,5_0_1 +3630,2,83.0,2,0.0,1,112,1,0,75,6.0,0.0,1249.133687607096,511.45331074771354,339.7098128722988,0.0,26068.3258467513,0,31,1,14629,201703630,900.0,900.0,100.0,,0.0,3.0,5.0,0.0,1.0,1.0,3411.003625693954,0.0,380.0,0.0,0.0,22519.0,0,5,5,80.0,7,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2100.2968112271083,0.08056891814127957,0.09326776549700734,22519.0,6,3,6,6_1,6_0,6_1_0 +3631,1,48.0,4,250.0,99,111,1,0,54,2.0,0.0,0.0,33.64824412813905,0.0,63.69558991355603,13589.939999999999,0,31,2,14630,201703631,,,,121.0,2.0,1.0,3.0,1.0,2.0,1.5,2688.6665015629187,0.0,25.0,36.0,0.0,16720.0,0,4,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,97.34383404169508,0.007162933319918637,0.00582199964364205,11146.666666666666,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3632,2,47.0,2,0.0,1,112,2,63,13,6.0,0.0,0.0,1438.7989189192258,0.0,0.0,50365.1020327603,50,50,5,14632,201703632,,,540.0,,2.0,0.0,7.0,3.0,5.0,2.8,1754.9607694733427,0.0,1069.0,0.0,0.0,61731.0,1,1,2,160.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1438.7989189192258,0.028567378221200663,0.023307558907505563,22046.785714285717,6,3,6,6_1,6_0,6_1_0 +3633,2,44.0,4,0.0,4,111,2,0,43,3.0,0.0,0.0,1469.7553035171136,0.0,2070.106672190571,29445.6,0,33,2,14634,201703633,,,,,1.0,0.0,4.0,2.0,3.0,1.8,2467.482369056479,0.0,1092.0,1170.0,0.0,26585.0,0,1,2,80.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3539.8619757076845,0.12021700952630222,0.13315260393860012,14769.444444444443,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +3634,2,65.0,2,0.0,99,111,2,77,77,7.0,0.0,0.0,970.4153606555302,0.0,1479.1531435481343,35427.16,60,31,2,14635,201703634,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1811.3606151485967,0.0,721.0,836.0,0.0,41496.0,5,5,1,104.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2449.5685042036644,0.06914380108943714,0.05903143686629228,27664.0,8,4,8,8_0,8_3,8_0_0 +3635,2,81.0,4,0.0,3,221,6,0,86,3.0,0.0,0.0,1588.1971228481632,297.2460862632615,0.0,18883.77087530163,0,71,1,14636,201703635,,,1200.0,,0.0,9.0,3.0,0.0,1.0,1.0,11746.123764311962,0.0,1180.0,0.0,0.0,13411.0,0,5,3,40.0,1,3.0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1885.4432091114247,0.09984463492815539,0.14058930796446384,13411.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +3636,2,42.0,1,0.0,5,112,4,38,38,10.0,0.0,0.0,2401.4029323368695,0.0,236.25484943837327,55873.09621023026,12,20,1,14637,201703636,,,520.0,,2.0,0.0,5.0,3.0,5.0,2.6,1618.8507595361816,227.72478745930908,1690.0,0.0,0.0,117567.0,1,1,1,120.0,8,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2637.6577817752427,0.04720801173879268,0.022435358406485178,45218.07692307692,10,5,10,10_1,10_1,10_0_0 +3637,2,69.0,1,0.0,5,112,4,75,75,9.0,0.0,0.0,1889.6853902362889,194.62541362475451,0.0,30481.16,60,41,1,14638,201703637,,,266.0,,0.0,2.0,7.0,0.0,2.0,1.5,1578.1035554810485,0.0,1404.0,0.0,0.0,49124.0,5,5,1,160.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2084.3108038610435,0.0683802979893496,0.04242958236017107,32749.333333333332,9,5,9,9_1,9_1,9_0_0 +3638,2,39.0,3,0.0,1,111,2,43,37,10.0,0.0,0.0,672.964882562781,0.0,1061.5931652259337,48949.18000000001,30,30,1,14640,201703638,,,350.0,,2.0,1.0,6.0,2.0,4.0,2.1,2463.7918637982916,0.0,500.0,600.0,0.0,79299.0,1,1,2,140.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1734.5580477887147,0.03543589591876135,0.021873643397630673,37761.42857142857,9,5,9,9_1,9_3,9_1_0 +3639,2,36.0,3,0.0,1,112,2,46,33,7.0,0.0,0.0,89.07708690944243,0.0,165.99324268507286,45337.97344410586,50,20,1,14641,201703639,,,,,2.0,0.0,3.0,1.0,3.0,1.8,1010.0087654212392,160.0,0.0,0.0,0.0,47697.0,1,1,3,80.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,255.07032959451527,0.005625975539223745,0.00534772269942586,26498.333333333332,7,4,7,7_1,7_2,7_1_0 +3640,2,53.0,2,0.0,8,221,2,68,48,9.0,2379.684013708323,416.377895869032,1000.0258154882926,0.0,0.0,52012.36031599411,50,50,1,14642,201703640,,,520.0,,2.0,1.0,5.0,1.0,3.0,2.0,2246.451522009015,0.0,743.0,0.0,0.0,75433.0,1,1,1,143.0,1,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3796.0877250656476,0.07298433876107575,0.05032396597067129,37716.5,9,5,9,9_1,9_1,9_0_0 +3641,1,40.0,2,429.0,5,111,1,85,63,1.0,0.0,0.0,200.42344554624543,0.0,373.4847960414139,24454.88,71,71,2,14643,201703641,,,,,2.0,0.0,4.0,6.0,8.0,3.7,810.2020035497546,360.0,0.0,0.0,0.0,33570.0,6,4,3,77.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,573.9082415876594,0.02346804570652808,0.017095866594806657,9072.972972972973,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3642,1,74.0,4,70.0,99,111,1,0,86,2.0,0.0,0.0,161.51157181506744,0.0,849.274532180747,5148.0,0,71,2,14644,201703642,,,,150.0,0.0,1.0,2.0,0.0,1.0,1.0,2442.4775053202825,0.0,120.0,480.0,0.0,11720.0,0,5,3,34.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1010.7861039958144,0.196345397046584,0.08624454812250976,11720.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3643,2,55.0,2,0.0,5,300,2,13,13,10.0,0.0,0.0,646.0462872602698,0.0,0.0,51128.24415839176,44,50,1,14645,201703643,,,,,2.0,2.0,6.0,0.0,2.0,1.5,1653.4306191512737,0.0,480.0,0.0,0.0,62860.0,1,1,1,100.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,646.0462872602698,0.012635800385768444,0.010277541954506359,41906.666666666664,10,5,10,10_1,10_0,10_0_0 +3644,2,80.0,1,0.0,2,111,1,77,74,10.0,0.0,0.0,1502.5020050660085,0.0,2335.319484387248,58784.68738977908,71,60,2,14646,201703644,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2517.366880286185,2070.2253405391734,260.0,106.0,0.0,77088.0,5,5,1,118.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3837.8214894532566,0.06528607465420562,0.04978494045056632,51392.0,10,5,10,10_0,10_4,10_0_1 +3645,2,40.0,2,0.0,5,111,4,0,47,6.0,0.0,0.0,807.5578590753372,0.0,0.0,12717.30556796596,0,42,2,14648,201703645,,,,230.0,1.0,1.0,2.0,0.0,1.0,1.0,2985.836460874774,0.0,600.0,0.0,0.0,21970.0,0,1,3,35.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.06350070419865678,0.0367572990020636,21970.0,6,3,6,6_0,6_2,6_0_0 +3646,2,78.0,3,0.0,1,211,2,77,74,8.0,0.0,0.0,1777.6211587373202,0.0,5301.317684953659,59669.029119463914,50,12,1,14649,201703646,,,,,0.0,3.0,7.0,0.0,2.0,1.5,1063.0887959850138,2121.980974052653,443.0,1752.0,0.0,40175.0,5,5,1,250.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,7078.938843690979,0.11863673581009958,0.17620258478384515,26783.333333333332,7,4,7,7_1,7_1,7_1_0 +3647,2,88.0,2,0.0,9,111,1,77,74,9.0,0.0,0.0,388.97370212128743,0.0,0.0,35520.68000000001,71,71,2,1465,201703647,,,,700.0,0.0,5.0,3.0,0.0,2.0,1.5,2081.1132455450743,0.0,289.0,0.0,0.0,57220.0,5,5,3,60.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,388.97370212128743,0.01095062656799609,0.006797862672514635,38146.666666666664,9,5,9,9_0,9_3,9_0_0 +3648,2,34.0,2,0.0,6,112,2,0,43,9.0,0.0,0.0,1139.6299806476788,0.0,2123.676048602151,74181.62753375566,0,33,1,14650,201703648,,,420.0,,1.0,0.0,4.0,1.0,2.0,1.3,194.8773955283204,2047.0,0.0,0.0,0.0,41279.0,0,1,3,80.0,8,0.0,2,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3263.3060292498294,0.04399075805885888,0.07905487122386272,31753.076923076922,8,4,8,8_1,8_0,8_0_0 +3649,1,25.0,4,200.0,99,111,2,0,52,4.0,0.0,0.0,565.290501352736,0.0,0.0,25091.46121562799,0,50,2,14651,201703649,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1665.785245684069,0.0,420.0,0.0,0.0,21230.0,0,1,3,73.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,565.290501352736,0.022529198140148567,0.02662696662047744,16330.76923076923,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +3650,2,53.0,4,0.0,1,111,2,0,43,4.0,0.0,0.0,1144.0403003567276,0.0,1220.832140009824,35315.55,0,33,1,14653,201703650,,,362.0,,1.0,0.0,4.0,3.0,4.0,2.5,446.7629271196281,0.0,850.0,690.0,0.0,43390.0,0,1,2,100.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2364.8724403665515,0.06696405522118588,0.05450270662287512,17356.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3651,2,34.0,3,0.0,9,111,1,68,38,10.0,0.0,0.0,1386.7017352175696,0.0,1801.5582507024133,46753.371081202815,31,31,2,14656,201703651,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3285.950703283837,1736.5123751408423,312.0,0.0,0.0,70700.0,4,1,3,43.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3188.2599859199827,0.06819315724597712,0.04509561507666171,47133.333333333336,10,5,10,10_0,10_3,10_0_0 +3652,2,40.0,2,0.0,6,112,2,0,33,6.0,0.0,0.0,590.1357007750561,0.0,1099.7052327886076,31583.0,0,41,1,14657,201703652,,,470.0,,1.0,0.0,3.0,1.0,2.0,1.5,719.6331947244167,1060.0,0.0,0.0,0.0,33738.0,0,1,3,67.0,10,4.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1689.8409335636638,0.05350476311824918,0.05008716976595127,22492.0,6,3,6,6_1,6_2,6_0_0 +3653,2,27.0,3,0.0,99,111,1,0,63,1.0,0.0,0.0,458.9620499078166,0.0,0.0,38605.39536887669,0,43,2,14659,201703653,,,,,1.0,1.0,3.0,0.0,1.0,1.0,1374.0739312812568,0.0,341.0,0.0,0.0,3240.0,0,1,3,62.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,458.9620499078166,0.011888546808610786,0.14165495367525205,3240.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +3654,2,56.0,3,0.0,3,400,5,78,45,2.0,0.0,41.637789586903196,1036.3659191466827,297.2460862632615,0.0,19442.57400793945,70,50,1,14661,201703654,,,160.0,,1.0,2.0,4.0,0.0,2.0,1.5,3523.9992537678263,0.0,770.0,0.0,0.0,19820.0,7,1,1,80.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1375.2497949968474,0.07073393648573789,0.06938697250236364,13213.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +3655,2,63.0,2,0.0,5,112,2,75,75,6.0,1470.6447204717438,0.0,896.3892235736242,0.0,212.31863304518674,35548.08,70,50,1,14662,201703655,,,115.0,,0.0,2.0,5.0,0.0,2.0,1.5,2564.672141222266,0.0,666.0,120.0,0.0,35200.0,5,5,1,105.0,7,2.0,3,4,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2579.352577090555,0.0725595468754024,0.0732770618491635,23466.666666666668,6,3,6,6_1,6_1,6_0_0 +3656,2,70.0,2,0.0,1,111,2,77,72,9.0,0.0,0.0,2047.257112777585,0.0,4463.58755880163,37717.37322817101,50,50,1,14663,201703656,,,325.0,,0.0,0.0,3.0,0.0,2.0,1.5,1304.7618203460497,2487.8400789983416,492.0,1064.0,0.0,57782.0,5,5,1,74.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,6510.844671579214,0.17262190111150902,0.11267946197049625,38521.333333333336,9,5,9,9_1,9_4,9_1_0 +3657,1,22.0,4,437.0,99,111,2,85,67,1.0,0.0,0.0,228.80806007134552,0.0,707.7287768172891,6556.659999999999,71,71,2,14665,201703657,,,140.0,13.0,1.0,0.0,4.0,2.0,4.0,2.1,3213.637957662411,0.0,170.0,400.0,0.0,21544.0,6,4,3,70.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,936.5368368886346,0.14283748690470985,0.04347088919832132,10259.047619047618,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3658,2,39.0,1,0.0,8,111,2,43,47,10.0,0.0,0.0,1615.1157181506744,61.9262679715128,0.0,62988.159999999996,30,43,1,14666,201703658,,,,,2.0,1.0,3.0,0.0,2.0,1.5,2139.076763602812,0.0,1200.0,0.0,0.0,124658.0,1,1,3,66.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1677.0419861221872,0.026624717821923792,0.013453143690113648,83105.33333333333,10,5,10,10_1,10_2,10_0_0 +3659,1,44.0,4,290.0,4,120,4,0,56,1.0,0.0,0.0,1588.1971228481632,0.0,0.0,32061.64,0,71,1,14668,201703659,,,330.0,,1.0,2.0,5.0,2.0,3.0,2.0,425.45912213811124,0.0,1180.0,0.0,0.0,19811.0,0,1,3,90.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1588.1971228481632,0.049535741866235265,0.08016743843562481,9905.5,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +3660,2,56.0,2,0.0,6,300,2,56,62,6.0,1110.5192063972174,0.0,989.2583773672881,0.0,0.0,30768.86,71,50,1,14669,201703660,,,265.0,,2.0,3.0,5.0,0.0,2.0,1.5,1898.5708886151479,0.0,735.0,0.0,0.0,29221.0,1,1,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2099.7775837645054,0.06824359380765181,0.071858512157849,19480.666666666668,5,3,5,5_1,5_0,5_0_0 +3661,2,71.0,1,0.0,7,111,2,0,74,10.0,0.0,0.0,3133.719264877084,0.0,2245.4952408468475,37372.23198381041,0,30,1,1467,201703661,,,,,0.0,0.0,7.0,0.0,1.0,1.0,2264.14711571556,2164.4208687285573,1433.0,0.0,0.0,60714.0,0,5,1,182.0,6,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5379.214505723931,0.14393613172620245,0.0885992440907193,60714.0,10,5,10,10_1,10_2,10_0_0 +3662,2,59.0,1,0.0,6,111,4,54,38,10.0,0.0,0.0,403.7789295376686,0.0,0.0,83354.12719625044,20,31,1,14670,201703662,,,284.0,,2.0,2.0,6.0,0.0,2.0,1.5,1488.377363810035,0.0,300.0,0.0,0.0,144656.0,1,1,1,157.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,403.7789295376686,0.004844138414250374,0.002791304401737008,96437.33333333333,10,5,10,10_1,10_4,10_0_0 +3663,2,36.0,2,0.0,1,112,1,0,47,5.0,0.0,0.0,558.9587203567512,0.0,1041.6075978488323,24355.379999999997,0,31,1,14671,201703663,,,319.0,,1.0,0.0,4.0,2.0,3.0,1.6,1442.585692092146,1004.0,0.0,0.0,0.0,32821.0,0,1,2,87.0,8,0.0,2,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1600.5663182055835,0.06571715646422202,0.04876653112962991,20513.125,5,3,5,5_1,5_0,5_1_0 +3664,2,58.0,3,0.0,4,111,2,0,52,7.0,190.37472109666587,0.0,619.1276919577585,0.0,0.0,12765.1,0,50,2,14672,201703664,,,210.0,,1.0,1.0,1.0,0.0,1.0,1.0,3968.699789624086,0.0,460.0,0.0,0.0,24145.0,0,1,4,30.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,809.5024130544244,0.06341528174902072,0.03352671000432489,24145.0,7,4,7,7_0,7_3,7_0_1 +3665,2,52.0,1,0.0,2,211,2,52,33,5.0,0.0,111.0341055650752,2298.3668976387235,0.0,5970.324727326074,52523.68000000001,50,44,1,14673,201703665,,,500.0,,2.0,2.0,7.0,2.0,4.0,2.3,1309.535958579001,3258.0,360.0,1464.0,0.0,48131.0,1,1,2,110.0,4,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,8379.725730529874,0.15954186246146257,0.1741024647426788,20926.521739130436,5,3,5,5_1,5_2,5_0_1 +3666,2,73.0,2,0.0,5,300,4,0,77,2.0,0.0,0.0,592.2090966552472,127.39117982711205,0.0,15839.720315994116,0,50,1,14675,201703666,,,200.0,,0.0,2.0,4.0,0.0,1.0,1.0,2183.559758511106,0.0,440.0,0.0,0.0,13290.0,0,5,5,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,719.6002764823593,0.045430112535241214,0.05414599522064404,13290.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3667,2,50.0,3,0.0,2,111,1,42,35,8.0,190.37472109666587,0.0,850.6276115593552,0.0,0.0,91421.14776008403,41,41,2,14676,201703667,,,,,2.0,1.0,2.0,0.0,2.0,1.5,2056.6329954941216,0.0,632.0,0.0,0.0,43580.0,1,1,1,72.0,9,7.0,3,5,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1041.002332656021,0.011386887587409395,0.02388715770206565,29053.333333333332,8,4,8,8_0,8_3,8_0_1 +3668,1,53.0,3,285.0,99,111,2,85,37,2.0,0.0,0.0,1354.0053437163153,0.0,1272.1424763290772,55909.35569949955,60,30,2,14677,201703668,,,,166.0,1.0,3.0,2.0,0.0,3.0,1.8,4992.427153383707,0.0,1006.0,719.0,0.0,23496.0,4,1,3,40.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2626.1478200453926,0.04697152716551336,0.11176999574588835,13053.333333333332,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3669,1,33.0,3,320.0,9,111,1,0,56,2.0,0.0,0.0,403.7789295376686,0.0,0.0,45459.51087530163,0,41,2,14678,201703669,,,,,1.0,0.0,4.0,2.0,3.0,1.6,1166.364265883547,0.0,300.0,0.0,0.0,20570.0,0,4,2,83.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,403.7789295376686,0.008882166168599135,0.019629505568190014,12856.25,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3670,2,37.0,2,0.0,4,111,2,31,37,10.0,0.0,0.0,302.83419715325147,0.0,0.0,37353.063838297945,10,10,2,14679,201703670,,,,1035.0,2.0,0.0,2.0,0.0,2.0,1.5,4049.030489860402,0.0,225.0,0.0,0.0,153920.0,1,1,3,45.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,302.83419715325147,0.008107345583864979,0.0019674778921079227,102613.33333333333,10,5,10,10_0,10_4,10_0_1 +3671,2,45.0,3,0.0,1,112,5,63,64,6.0,0.0,388.6193694777632,807.5578590753372,212.31863304518674,0.0,26412.12,50,50,1,14680,201703671,,,,,3.0,1.0,5.0,1.0,3.0,2.0,2186.897056754675,0.0,600.0,0.0,0.0,41706.0,1,1,2,160.0,8,1.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1408.495861598287,0.053327633737779746,0.03377201989158124,20853.0,5,3,5,5_1,5_1,5_1_0 +3672,1,63.0,4,264.0,6,111,1,71,78,3.0,0.0,0.0,1113.0839157588398,132.69914565324171,0.0,11030.08,71,50,8,14681,201703672,,,334.0,,0.0,4.0,4.0,0.0,2.0,1.5,2164.6172684859534,0.0,827.0,0.0,0.0,23498.0,7,5,3,75.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1245.7830614120815,0.11294415465817849,0.05301655721389401,15665.333333333334,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +3673,2,43.0,2,0.0,2,111,2,0,53,8.0,0.0,0.0,481.5730011041731,0.0,897.4009682661751,39101.072,0,44,2,14683,201703673,,,115.0,535.0,1.0,0.0,2.0,0.0,1.0,1.0,3479.1294930027425,865.0,0.0,0.0,0.0,30303.0,0,4,3,45.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1378.9739693703482,0.03526690954586483,0.04550618649540798,30303.0,8,4,8,8_0,8_3,8_0_1 +3674,1,42.0,3,43.0,99,111,4,0,85,2.0,0.0,0.0,1144.0403003567276,0.0,0.0,18355.52,0,31,2,14684,201703674,,,,247.0,0.0,0.0,3.0,1.0,2.0,1.5,1003.7031782456744,0.0,850.0,0.0,0.0,17811.0,0,4,3,57.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1144.0403003567276,0.062326771475650244,0.06423223290981571,11874.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3675,2,51.0,2,0.0,9,112,2,0,37,10.0,0.0,0.0,3964.7635967778065,0.0,1468.732146301452,33282.8611586233,0,50,2,14685,201703675,,,90.0,,1.0,3.0,2.0,0.0,1.0,1.0,4598.0143159486415,835.8534812426913,2600.0,340.0,0.0,53420.0,0,1,3,40.0,10,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,5433.495743079258,0.16325206289157884,0.10171276194457615,53420.0,10,5,10,10_0,10_2,10_0_0 +3676,2,52.0,3,0.0,9,112,4,52,48,4.0,0.0,0.0,2018.894647688343,0.0,180.47083808840873,38769.68000000001,50,50,1,14687,201703676,,,227.0,,3.0,0.0,5.0,2.0,4.0,2.5,2633.533678071133,0.0,1500.0,102.0,0.0,42712.0,1,1,1,120.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2199.3654857767515,0.05672900797160954,0.05149291734821014,17084.8,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3677,2,44.0,3,0.0,1,300,5,0,46,8.0,0.0,485.77421184720396,33.64824412813905,247.7050718860512,0.0,37629.58,0,42,1,14689,201703677,,,209.0,,1.0,0.0,4.0,0.0,1.0,1.0,2181.498447246563,0.0,25.0,0.0,0.0,27558.0,0,1,2,90.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,767.1275278613942,0.020386289930990308,0.0278368360498365,27558.0,8,4,8,8_1,8_0,8_1_0 +3678,2,65.0,2,0.0,8,400,5,78,74,9.0,0.0,555.170527825376,1243.6391029760193,0.0,0.0,49668.520000000004,60,31,1,14690,201703678,,,132.0,,0.0,5.0,5.0,0.0,2.0,1.5,1510.5229538708354,0.0,924.0,0.0,0.0,51873.0,5,5,2,170.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1798.8096308013953,0.03621629214644195,0.03467718525632594,34582.0,9,5,9,9_1,9_0,9_0_0 +3679,2,46.0,1,0.0,5,111,2,0,38,10.0,0.0,0.0,554.5230632317315,0.0,13760.016743270144,35499.4,0,20,2,14691,201703679,,,305.0,,1.0,0.0,4.0,0.0,1.0,1.0,3023.0370600579167,0.0,412.0,7777.0,0.0,57669.0,0,1,2,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,14314.539806501874,0.4032332886331001,0.24821897044342497,57669.0,10,5,10,10_0,10_4,10_0_0 +3680,2,68.0,3,0.0,1,112,2,86,86,9.0,3786.870493814512,0.0,1005.4095345487948,371.5576078290768,0.0,24918.32,50,33,1,14696,201703680,,,180.0,,0.0,5.0,7.0,0.0,2.0,1.5,1245.543859957163,0.0,747.0,0.0,0.0,55309.0,5,5,1,140.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5163.837636192384,0.20723056916326557,0.09336342432863338,36872.666666666664,9,5,9,9_1,9_0,9_1_0 +3681,2,67.0,3,0.0,1,111,2,0,75,6.0,0.0,0.0,255.72665537385677,0.0,1111.134179603144,30393.696658454024,0,31,2,14698,201703681,,,,627.0,0.0,1.0,2.0,0.0,1.0,1.0,2474.9074494928846,0.0,190.0,628.0,0.0,23202.0,0,5,3,56.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1366.8608349770009,0.04497185223426278,0.058911336737220966,23202.0,6,3,6,6_0,6_3,6_1_0 +3682,1,49.0,3,353.0,4,112,2,0,85,1.0,0.0,0.0,823.7090162568439,0.0,2813.2218878487242,27910.24,0,71,2,14699,201703682,,,,,2.0,2.0,5.0,3.0,4.0,2.3,429.8812518161268,0.0,612.0,1590.0,0.0,23388.0,0,6,3,92.0,7,2.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,3636.930904105568,0.13030812003428016,0.15550414332587514,10168.695652173914,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +3683,2,57.0,4,0.0,1,111,1,0,55,3.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,21423.411961244914,0,71,1,147,201703683,,,375.0,,2.0,0.0,4.0,1.0,2.0,1.5,2033.057984061535,1700.0,0.0,0.0,0.0,21510.0,0,4,1,100.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2710.1222519417247,0.126502830494244,0.1259935960921304,14340.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +3684,2,74.0,2,0.0,9,112,4,0,74,9.0,0.0,0.0,874.8543473316153,0.0,0.0,35912.360508190075,0,10,2,1470,201703684,,,,681.0,0.0,0.0,3.0,0.0,1.0,1.0,5181.660999995344,0.0,650.0,0.0,0.0,37400.0,0,5,3,62.0,9,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,874.8543473316153,0.02436081435337837,0.023391827468759768,37400.0,9,5,9,9_0,9_1,9_0_0 +3685,2,44.0,3,0.0,9,111,2,52,52,6.0,0.0,0.0,942.1508355878933,0.0,1769.3219420432229,42273.104177580935,30,50,1,14700,201703685,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.1,1875.9820124554788,0.0,700.0,1000.0,0.0,46248.0,1,1,2,120.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2711.472777631116,0.06414179489258125,0.05862897374224001,22022.85714285714,6,3,6,6_1,6_2,6_0_0 +3686,2,32.0,2,0.0,5,300,5,42,34,5.0,0.0,0.0,807.5578590753372,240.62778411787832,0.0,37393.64584675131,44,30,1,14701,201703686,,,202.0,,2.0,0.0,4.0,2.0,4.0,2.1,3091.132477206951,0.0,600.0,0.0,0.0,38670.0,1,1,2,80.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1048.1856431932156,0.02803111650275952,0.027105912676317963,18414.285714285714,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3687,2,84.0,3,0.0,1,111,2,0,77,3.0,0.0,0.0,673.6454697526583,0.0,1255.3238978058635,12890.52,0,70,2,14703,201703687,,,,307.0,0.0,2.0,4.0,0.0,1.0,1.0,4256.786531548971,1210.0,0.0,0.0,0.0,14830.0,0,5,3,70.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1928.9693675585218,0.14964247893479252,0.13007210839909114,14830.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +3688,2,59.0,3,0.0,6,111,2,0,62,6.0,0.0,0.0,2355.3770889697334,0.0,3096.31339857564,29422.532027330715,0,50,1,14705,201703688,,,,,1.0,4.0,5.0,0.0,1.0,1.0,1705.9887570251617,0.0,1750.0,1750.0,0.0,25530.0,0,1,1,100.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5451.690487545373,0.18528964408913803,0.2135405596374999,25530.0,7,4,7,7_1,7_3,7_0_0 +3689,2,80.0,3,0.0,4,111,2,71,71,3.0,3172.912018277764,0.0,1052.5170763281894,513.1033631925346,0.0,25045.96,70,50,1,14706,201703689,,,556.0,,0.0,3.0,4.0,0.0,2.0,1.5,1293.9379957676572,0.0,782.0,0.0,0.0,20826.0,5,5,1,89.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4738.532457798488,0.18919348500909883,0.22752964841056797,13884.0,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +3690,2,61.0,2,0.0,2,111,2,0,42,7.0,0.0,0.0,853.4861162843117,0.0,2150.0989354018493,27296.220271167156,0,30,2,14709,201703690,,,120.0,,1.0,0.0,5.0,0.0,1.0,1.0,2151.7003123757518,776.3345027021901,313.0,760.0,0.0,27467.0,0,1,1,77.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3003.585051686161,0.11003666521766865,0.10935249760389416,27467.0,8,4,8,8_0,8_3,8_0_1 +3691,1,44.0,4,494.0,5,111,6,85,63,2.0,0.0,0.0,567.8664290476954,0.0,1058.2069221173394,17979.46,42,50,2,1471,201703691,,,,72.0,1.0,0.0,4.0,3.0,5.0,2.4,922.537495804718,1020.0,0.0,0.0,0.0,28438.0,6,4,3,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1626.0733511650349,0.09044061118437567,0.057179596004115436,11849.166666666668,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3692,2,76.0,2,0.0,9,111,2,0,74,8.0,0.0,0.0,969.0694308904046,0.0,990.8202875442048,23610.780000000002,0,20,1,14710,201703692,,,160.0,,0.0,2.0,4.0,0.0,1.0,1.0,2919.9710416666676,0.0,720.0,560.0,0.0,30180.0,0,5,1,90.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1959.8897184346094,0.08300825802597836,0.06494001717808513,30180.0,8,4,8,8_1,8_3,8_0_0 +3693,1,58.0,4,220.0,99,111,1,0,63,1.0,0.0,0.0,243.61328748772672,53.079658261296686,0.0,6669.9800000000005,0,50,2,14711,201703693,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2457.3740046161333,0.0,181.0,0.0,0.0,7453.0,0,4,3,50.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,296.6929457490234,0.04448183439066135,0.03980852619737333,7453.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3694,0,42.0,2,0.0,99,111,1,54,56,5.0,0.0,0.0,1345.929765125562,0.0,1238.525359430256,59629.39999999999,41,60,2,14712,201703694,,,,,2.0,0.0,3.0,2.0,4.0,2.1,4466.723558631738,0.0,1000.0,700.0,0.0,40026.0,1,1,5,90.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2584.4551245558177,0.04334196092122038,0.06456940799869629,19060.0,5,3,5,5_0,5_3,5_0_0 +3695,2,30.0,3,0.0,9,111,2,52,62,5.0,0.0,0.0,1453.6041463356069,0.0,0.0,83485.52,50,50,2,14713,201703695,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3439.9095625574105,0.0,1080.0,0.0,0.0,42470.0,1,1,2,68.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1453.6041463356069,0.01741145226544204,0.034226610462340636,20223.809523809523,5,3,5,5_0,5_2,5_0_0 +3696,2,66.0,3,0.0,99,111,2,35,35,2.0,0.0,0.0,1524.9384238872617,173.39355032023585,0.0,36494.76031599412,60,70,1,14714,201703696,,,,1201.0,2.0,2.0,4.0,0.0,2.0,1.5,1723.7830359355203,0.0,1133.0,0.0,0.0,16878.0,1,1,3,180.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1698.3319742074975,0.04653632355719815,0.10062400605566403,11252.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +3697,2,35.0,3,0.0,3,111,1,34,38,10.0,0.0,0.0,874.8543473316153,0.0,0.0,36113.26,10,12,2,14718,201703697,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2888.321629742432,0.0,650.0,0.0,0.0,89120.0,4,1,2,82.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,874.8543473316153,0.024225294180907932,0.00981658827795798,42438.09523809524,10,5,10,10_0,10_3,10_0_1 +3698,1,50.0,4,48.0,99,120,2,0,52,3.0,0.0,0.0,1884.3016711757866,0.0,0.0,19516.53087530163,0,50,1,1472,201703698,,,580.0,,1.0,0.0,4.0,2.0,3.0,2.0,910.0875331521262,0.0,1400.0,0.0,0.0,31466.0,0,1,3,97.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1884.3016711757866,0.0965490067479354,0.059883737086880655,15733.0,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +3699,1,59.0,4,246.0,6,111,4,0,77,2.0,0.0,0.0,2153.487624200899,0.0,0.0,9872.919999999998,0,44,1,14720,201703699,,,435.0,,0.0,1.0,4.0,0.0,1.0,1.0,2649.6058173015945,0.0,1600.0,0.0,0.0,12662.0,0,7,3,90.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2153.487624200899,0.2181206395069442,0.17007484000954817,12662.0,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +3700,2,31.0,5,0.0,9,111,4,0,54,1.0,0.0,0.0,336.4824412813905,0.0,0.0,11661.390875301628,0,41,2,14722,201703700,,,,600.0,1.0,0.0,3.0,0.0,1.0,1.0,2422.0122355624444,0.0,250.0,0.0,0.0,8030.0,0,4,3,65.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,336.4824412813905,0.02885440037809274,0.04190316827912709,8030.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +3701,2,51.0,3,0.0,4,221,4,0,52,3.0,0.0,0.0,1113.0839157588398,53.079658261296686,0.0,18441.2,0,50,2,14723,201703701,,,250.0,190.0,1.0,1.0,3.0,1.0,2.0,1.3,596.8132098708564,0.0,827.0,0.0,0.0,20976.0,0,1,3,71.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1166.1635740201364,0.06323685953300959,0.05559513606121932,16135.384615384615,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +3702,2,37.0,3,0.0,2,111,2,0,46,8.0,0.0,0.0,41.75488448880114,0.0,77.8093325086279,20837.223983607204,0,31,2,14724,201703702,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3044.8396950312153,75.0,0.0,0.0,0.0,27630.0,0,1,2,52.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,119.56421699742904,0.005738010835392041,0.0043273332246626505,27630.0,8,4,8,8_0,8_3,8_0_1 +3703,2,56.0,2,0.0,1,111,2,0,52,3.0,0.0,0.0,1561.278527545652,99.08202875442048,0.0,41805.740000000005,0,41,2,14725,201703703,,,140.0,,1.0,1.0,4.0,0.0,1.0,1.0,1486.9854447894452,0.0,1160.0,0.0,0.0,15980.0,0,1,1,75.0,4,4.0,1,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1660.3605563000724,0.03971609057273169,0.10390241278473544,15980.0,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +3704,1,37.0,4,600.0,99,111,2,84,85,1.0,0.0,0.0,1345.929765125562,0.0,0.0,13378.56,71,50,2,14727,201703704,,,,40.0,0.0,0.0,3.0,4.0,6.0,2.9,1126.4956241674433,0.0,1000.0,0.0,0.0,30145.0,3,4,3,70.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1345.929765125562,0.10060348536206902,0.0446485243033857,10394.827586206897,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3705,1,43.0,3,342.0,1,120,2,85,65,2.0,2538.3296146222115,0.0,0.0,95.54338487033404,0.0,29212.442066597374,50,50,1,14729,201703705,,,,,1.0,3.0,4.0,3.0,5.0,2.6,1823.6972569460759,0.0,0.0,0.0,0.0,33101.0,6,1,3,124.0,0,3.0,4,2,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2633.8729994925457,0.09016271195293929,0.07957079844997268,12731.153846153846,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +3706,2,79.0,1,0.0,7,400,5,0,78,4.0,0.0,208.188947934516,1847.9615675173966,2344.3515732072706,0.0,58136.720311438374,0,71,1,1473,201703706,,,251.0,,0.0,0.0,5.0,0.0,1.0,1.0,2322.9532094123556,0.0,1373.0,0.0,0.0,18379.0,0,5,1,100.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4400.502088659183,0.07569230023788229,0.23943098583487582,18379.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3707,2,26.0,2,0.0,9,111,4,34,34,10.0,0.0,0.0,807.5578590753372,0.0,0.0,50086.1,20,20,2,14730,201703707,,,360.0,750.0,2.0,0.0,4.0,0.0,2.0,1.5,3502.5193352439364,0.0,600.0,0.0,0.0,61786.0,1,1,3,83.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,807.5578590753372,0.016123392699278587,0.01307024016889485,41190.666666666664,10,5,10,10_0,10_3,10_0_0 +3708,2,44.0,4,0.0,1,400,6,85,31,10.0,63.458240365555284,0.0,1615.1157181506744,185.7788039145384,0.0,11829.225846751302,50,30,1,14731,201703708,,,,,1.0,1.0,2.0,0.0,2.0,1.5,2558.6814210921443,0.0,1200.0,0.0,0.0,70410.0,6,1,1,105.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1864.352762430768,0.1576056444084869,0.02647852240350473,46940.0,10,5,10,10_1,10_0,10_1_0 +3709,2,52.0,2,0.0,7,112,1,34,38,9.0,0.0,0.0,713.3427755165478,0.0,0.0,40714.86,20,31,2,14733,201703709,,,,,2.0,0.0,4.0,1.0,3.0,2.0,1631.214765922992,0.0,530.0,0.0,0.0,77825.0,1,1,1,82.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,713.3427755165478,0.01752045261893441,0.00916598490866107,38912.5,9,5,9,9_0,9_0,9_0_0 +3710,2,31.0,2,0.0,1,111,4,31,31,7.0,0.0,0.0,942.1508355878933,0.0,0.0,30714.239999999998,30,30,2,14734,201703710,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2812.626466308352,0.0,700.0,0.0,0.0,40120.0,1,1,2,45.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,942.1508355878933,0.03067472402338112,0.023483320926916584,26746.666666666668,7,4,7,7_0,7_3,7_1_0 +3711,1,41.0,3,353.0,1,400,5,68,85,2.0,0.0,555.170527825376,1345.929765125562,184.0094819724952,0.0,21332.34175060325,50,50,1,14735,201703711,,,400.0,,1.0,3.0,4.0,1.0,3.0,1.8,667.2561057664201,0.0,1000.0,0.0,0.0,22549.0,1,4,3,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2085.109774923433,0.09774406388667897,0.09247016607935754,12527.222222222223,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +3712,0,62.0,3,0.0,4,112,2,0,53,1.0,2062.392811880547,0.0,444.15682249143543,63.69558991355603,0.0,14474.800315994114,0,71,1,14736,201703712,,,142.0,,1.0,0.0,5.0,0.0,1.0,1.0,2737.6737839166867,0.0,330.0,0.0,0.0,6425.0,0,1,5,97.0,10,0.0,1,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2570.2452242855384,0.1775668864630563,0.40003816720397484,6425.0,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +3713,2,75.0,3,0.0,5,111,4,0,75,4.0,0.0,0.0,2039.0835941652263,0.0,0.0,16120.740000000002,0,70,1,14738,201703713,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2170.942444294793,0.0,1515.0,0.0,0.0,16820.0,0,5,1,95.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2039.0835941652263,0.12648821295829013,0.12122970238794449,16820.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3714,2,62.0,2,0.0,1,111,2,0,34,9.0,0.0,0.0,868.5015973670635,0.0,1618.4341161794603,21015.941215627987,0,20,1,1474,201703714,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1866.1522311609438,1560.0,0.0,0.0,0.0,36116.0,0,1,1,80.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2486.935713546524,0.11833568090194196,0.06885966645106113,36116.0,9,5,9,9_1,9_2,9_1_0 +3715,2,81.0,2,0.0,3,111,2,0,72,4.0,0.0,0.0,167.01953795520456,0.0,311.2373300345116,15993.96,0,50,8,14740,201703715,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3450.8884516326543,300.0,0.0,0.0,0.0,17804.0,0,5,3,60.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,478.25686798971617,0.029902342383607075,0.02686232689225546,17804.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3716,2,43.0,3,0.0,8,112,5,54,54,6.0,0.0,485.77421184720396,2422.6735772260117,113.23660429076627,0.0,37596.8,31,31,1,14741,201703716,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.3,1881.5344152208575,0.0,1800.0,0.0,0.0,50517.0,1,1,2,155.0,8,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3021.6843933639816,0.08037078669897388,0.05981519871259144,21963.913043478264,6,3,6,6_1,6_1,6_0_0 +3717,2,76.0,4,0.0,6,112,5,0,77,1.0,0.0,0.0,611.0521133670052,185.7788039145384,0.0,15793.557038047044,0,70,1,14742,201703717,,,,,0.0,2.0,4.0,0.0,1.0,1.0,5624.551807904083,0.0,454.0,0.0,0.0,9301.0,0,5,1,100.0,9,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,796.8309172815436,0.05045291034577958,0.08567153180104758,9301.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +3718,2,60.0,2,0.0,5,111,2,74,33,10.0,0.0,0.0,2551.858061677275,0.0,1181.2742471918666,45352.9430643785,20,20,2,14743,201703718,,,,,1.0,2.0,5.0,0.0,2.0,1.5,1857.4745708889639,1138.6239372965454,1425.0,0.0,0.0,101899.0,5,1,1,104.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3733.1323088691415,0.0823129009195712,0.03663561280158924,67932.66666666667,10,5,10,10_0,10_3,10_0_0 +3719,2,53.0,2,0.0,9,111,5,86,37,10.0,0.0,97.1548423694408,1440.1448486843512,0.0,0.0,46483.28,50,41,1,14744,201703719,,,475.0,,1.0,4.0,5.0,0.0,2.0,1.5,1829.3043473282294,0.0,1070.0,0.0,0.0,72497.0,5,1,2,118.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1537.299691053792,0.033072100141250615,0.02120501111844341,48331.333333333336,10,5,10,10_1,10_2,10_0_0 +3720,2,51.0,3,0.0,9,112,2,67,47,9.0,0.0,0.0,874.8543473316153,0.0,2477.050718860512,42306.799999999996,50,50,1,14745,201703720,,,600.0,,2.0,0.0,5.0,1.0,3.0,1.8,1699.7032883384104,0.0,650.0,1400.0,0.0,65732.0,1,1,2,128.0,9,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3351.9050661921274,0.07922851802055764,0.050993504932028956,36517.777777777774,9,5,9,9_1,9_0,9_0_0 +3721,2,45.0,2,0.0,4,120,2,21,21,9.0,0.0,416.377895869032,935.4211867622655,0.0,1392.4563683880165,35357.88,41,50,1,14746,201703721,,,618.0,,2.0,0.0,5.0,1.0,3.0,2.0,4077.5783197447045,0.0,695.0,787.0,0.0,70940.0,1,1,1,170.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2744.255451019314,0.07761368755760567,0.03868417607864835,35470.0,9,5,9,9_1,9_0,9_0_1 +3722,2,49.0,3,0.0,1,211,2,85,46,5.0,0.0,0.0,1284.2063416479336,0.0,2485.2774693430897,48444.38,71,31,1,14747,201703722,,,392.0,,1.0,0.0,4.0,1.0,3.0,2.0,2275.8450930686963,998.7903430749683,541.0,819.0,0.0,37811.0,6,1,3,78.0,3,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3769.4838109910233,0.07781054914916907,0.09969278281428746,18905.5,5,3,5,5_1,5_2,5_1_0 +3723,2,52.0,3,0.0,4,111,4,52,62,8.0,0.0,0.0,323.0231436301349,0.0,212.31863304518674,31737.73119129575,50,41,2,14748,201703723,,,,555.0,2.0,2.0,3.0,0.0,2.0,1.5,4174.718391405836,0.0,240.0,120.0,0.0,41890.0,1,1,3,50.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,535.3417766753216,0.016867676313993805,0.012779703429823864,27926.666666666668,8,4,8,8_0,8_3,8_0_1 +3724,2,90.0,2,0.0,1,111,6,0,72,4.0,0.0,0.0,1254.4065410970238,0.0,0.0,17088.9,0,70,1,14749,201703724,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2384.7204438580025,0.0,932.0,0.0,0.0,18310.0,0,5,5,42.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1254.4065410970238,0.07340475636799465,0.06850936871092429,18310.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3725,2,51.0,3,0.0,1,111,2,46,46,8.0,0.0,0.0,1336.1563036416364,0.0,2489.898640276093,27480.840000000004,50,71,1,14751,201703725,,,228.0,,2.0,1.0,5.0,0.0,2.0,1.5,1512.9664446378133,2400.0,0.0,0.0,0.0,45480.0,1,1,2,110.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3826.0549439177294,0.13922627342969607,0.08412609815122536,30320.0,8,4,8,8_1,8_3,8_1_0 +3726,2,77.0,3,0.0,1,112,2,77,78,6.0,3966.1400228472053,346.98157989085996,845.2438924988529,169.8549064361494,0.0,27244.305846751293,71,70,1,14752,201703726,,,,,0.0,7.0,7.0,0.0,2.0,1.5,2690.7418108471693,0.0,628.0,0.0,0.0,34030.0,5,5,1,110.0,8,3.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,5328.2204016730675,0.19557189056840746,0.15657421103946717,22686.666666666668,6,3,6,6_1,6_1,6_1_0 +3727,2,58.0,3,0.0,6,300,2,54,63,6.0,0.0,513.5327382384728,2534.385747731433,226.47320858153253,0.0,34323.5,50,60,1,14753,201703727,,,498.0,,2.0,3.0,5.0,1.0,3.0,2.0,2072.0160928158793,0.0,1883.0,0.0,0.0,44897.0,1,4,1,110.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3274.391694551439,0.09539795459529007,0.07293119127227742,22448.5,6,3,6,6_1,6_0,6_0_0 +3728,2,81.0,4,0.0,1,300,5,0,71,2.0,0.0,138.792631956344,309.56384597887927,141.54575536345783,0.0,15041.779999999997,0,71,1,14755,201703728,,,109.0,,0.0,2.0,4.0,0.0,1.0,1.0,2455.909219841929,0.0,230.0,0.0,0.0,10835.0,0,5,5,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,589.902233298681,0.039217581516195636,0.05444413782175183,10835.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3729,2,28.0,1,0.0,6,111,1,0,38,9.0,0.0,0.0,678.3486016232832,0.0,0.0,25918.8,0,0,2,14756,201703729,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3800.719711928588,0.0,504.0,0.0,0.0,41870.0,0,1,2,76.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,678.3486016232832,0.026172068213932868,0.016201304075072444,41870.0,10,5,10,10_0,10_4,10_0_0 +3730,2,46.0,2,0.0,1,111,2,22,64,7.0,0.0,0.0,545.1015548758526,0.0,1578.235172302555,59628.41538350544,42,43,2,14757,201703730,,,363.0,688.0,2.0,1.0,3.0,1.0,3.0,2.0,2433.561554192182,0.0,405.0,892.0,0.0,48610.0,1,1,3,85.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2123.3367271784073,0.03560947768814547,0.04368106824065845,24305.0,7,4,7,7_0,7_3,7_1_0 +3731,2,29.0,2,0.0,1,112,2,55,64,8.0,0.0,0.0,2971.8129213972406,0.0,0.0,21418.72,31,43,1,14758,201703731,,,270.0,,2.0,0.0,2.0,0.0,2.0,1.5,1720.901201898867,0.0,2208.0,0.0,0.0,44520.0,1,1,3,50.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2971.8129213972406,0.13874839025848607,0.06675231180137557,29680.0,8,4,8,8_1,8_0,8_1_0 +3732,2,54.0,4,0.0,1,112,4,68,37,7.0,0.0,763.359475759892,2170.9847111475315,88.46609710216114,0.0,21866.522066597376,50,42,1,14759,201703732,,,,,2.0,1.0,3.0,0.0,2.0,1.5,1996.257883903427,0.0,1613.0,0.0,0.0,36720.0,1,1,2,110.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3022.810284009585,0.13823918933258877,0.082320541503529,24480.0,7,4,7,7_1,7_0,7_1_0 +3733,2,28.0,3,0.0,2,300,2,85,62,5.0,0.0,0.0,1594.9267716737909,226.47320858153253,0.0,24824.899999999998,50,50,1,14760,201703733,,,264.0,,1.0,0.0,5.0,1.0,3.0,1.8,875.5225702721634,0.0,1185.0,0.0,0.0,33045.0,4,1,3,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1821.3999802553235,0.07336988186277986,0.05511877682721512,18358.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +3734,2,38.0,4,0.0,9,111,4,0,46,5.0,0.0,0.0,919.2700295807588,0.0,0.0,22257.91087530163,0,31,2,14761,201703734,,,116.0,530.0,1.0,0.0,3.0,1.0,2.0,1.3,680.8381196309589,0.0,683.0,0.0,0.0,24600.0,0,1,3,63.0,8,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,919.2700295807588,0.04130082264822175,0.03736870038946174,18923.076923076922,5,3,5,5_0,5_3,5_0_0 +3735,2,57.0,2,0.0,4,111,1,65,55,7.0,0.0,0.0,646.0462872602698,0.0,0.0,27981.399999999998,50,70,2,14762,201703735,,,,316.0,2.0,2.0,4.0,0.0,2.0,1.5,2437.19648741115,0.0,480.0,0.0,0.0,37964.0,1,1,3,78.0,5,4.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,646.0462872602698,0.02308841899477045,0.017017339776110783,25309.333333333332,7,4,7,7_0,7_2,7_0_1 +3736,2,63.0,3,0.0,9,111,2,75,75,6.0,1269.1648073111057,0.0,1009.4473238441715,38.925082724950904,0.0,25634.899999999998,70,71,1,14763,201703736,,,350.0,,0.0,2.0,5.0,0.0,2.0,1.5,2010.4102103141659,0.0,750.0,0.0,0.0,34604.0,5,5,1,145.0,7,5.0,3,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2317.5372138802277,0.09040554922703922,0.0669731017766798,23069.333333333332,6,3,6,6_1,6_2,6_0_0 +3737,2,45.0,2,0.0,8,111,4,0,46,9.0,0.0,0.0,1036.3659191466827,0.0,0.0,17107.88,0,31,2,14764,201703737,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2821.5829638688006,0.0,770.0,0.0,0.0,33822.0,0,1,2,75.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1036.3659191466827,0.0605782784977848,0.030641769237380483,33822.0,9,5,9,9_0,9_3,9_0_0 +3738,2,86.0,2,0.0,1,111,2,75,74,9.0,0.0,0.0,1920.7246864848523,0.0,3579.2292953968836,47278.79150728987,33,10,2,14765,201703738,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2640.134822762633,3450.0,0.0,0.0,0.0,47918.0,5,5,1,160.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,5499.953981881736,0.11633025732127064,0.11477845448227672,31945.333333333332,9,5,9,9_0,9_2,9_1_0 +3739,2,71.0,2,0.0,4,111,1,86,74,10.0,0.0,0.0,822.9430548548085,0.0,1144.779500620037,62316.95225408238,20,20,2,14767,201703739,,,,,0.0,0.0,2.0,0.0,2.0,1.5,1600.0369450501366,1103.4468460063238,155.0,0.0,0.0,59599.0,5,5,1,54.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1967.7225554748454,0.031576039653735476,0.03301603307899202,39732.666666666664,9,5,9,9_0,9_3,9_0_1 +3740,1,43.0,3,30.0,1,111,2,0,68,1.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,8135.66,0,71,1,14768,201703740,,,180.0,280.0,1.0,0.0,2.0,0.0,1.0,1.0,2412.684732724771,1100.0,0.0,0.0,0.0,9195.0,0,1,3,64.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1753.6085159622926,0.21554594414740694,0.19071326981645378,9195.0,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +3741,2,92.0,1,0.0,1,111,2,0,86,9.0,0.0,0.0,669.288060714087,0.0,3299.2401661817444,50588.58330704275,0,70,2,14769,201703741,,,,,0.0,2.0,8.0,0.0,1.0,1.0,1776.2731594371262,621.9600197495854,240.0,1500.0,0.0,34342.0,0,5,5,250.0,6,4.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,3968.5282268958313,0.0784471113335832,0.11555903054265422,34342.0,9,5,9,9_0,9_2,9_1_0 +3742,2,73.0,2,0.0,5,111,2,0,74,6.0,0.0,0.0,747.1340664529483,0.0,1392.2683230210487,48137.017285886504,0,31,2,1477,201703742,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2138.7043038122824,1342.0,0.0,0.0,0.0,23255.0,0,5,5,64.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2139.402389473997,0.04444401647837989,0.091997522660675,23255.0,6,3,6,6_0,6_3,6_0_0 +3743,2,62.0,2,0.0,7,111,4,33,38,10.0,0.0,0.0,1103.6893259982633,159.23897478389006,0.0,28271.244361131376,20,12,1,14771,201703743,,,,,2.0,2.0,6.0,0.0,2.0,1.5,1707.9230314951706,0.0,820.02,0.0,0.0,109080.0,1,1,2,170.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1262.9283007821532,0.044671832787045125,0.01157800055722546,72720.0,10,5,10,10_1,10_4,10_0_0 +3744,2,69.0,3,0.0,4,111,5,78,75,2.0,0.0,0.0,888.2619991916284,169.8549064361494,478.95301295233867,14779.365379216482,71,50,1,14772,201703744,,,116.0,,0.0,0.0,4.0,0.0,2.0,1.5,2176.4133707192373,461.6602509402357,469.0,0.0,0.0,19946.0,5,5,1,90.0,7,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1537.0699185801166,0.10400107711942928,0.0770615621468022,13297.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +3745,2,78.0,3,0.0,3,111,2,0,72,4.0,0.0,0.0,551.164475252175,0.0,1027.0831891138882,21976.7,0,50,2,14774,201703745,,,276.0,,0.0,1.0,3.0,0.0,1.0,1.0,3339.058426929462,990.0,0.0,0.0,0.0,16407.0,0,5,1,65.0,7,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1578.2476643660632,0.0718145883761467,0.09619355545596776,16407.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +3746,1,32.0,3,408.0,8,111,2,0,55,2.0,0.0,0.0,425.3138057796776,0.0,902.3541904420437,25731.879999999997,0,71,2,14775,201703746,,,830.0,92.0,1.0,0.0,4.0,2.0,3.0,1.6,782.2099840877812,0.0,316.0,510.0,0.0,20616.0,0,4,3,75.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1327.6679962217213,0.05159622989932028,0.06439988340229537,12885.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3747,2,41.0,3,0.0,8,111,2,0,62,6.0,0.0,0.0,430.6975248401798,0.0,937.7406292829081,9910.4,0,50,2,14776,201703747,,,240.0,429.0,1.0,0.0,2.0,0.0,1.0,1.0,4188.364089735429,0.0,320.0,530.0,0.0,22560.0,0,1,3,53.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1368.438154123088,0.1380810213637278,0.06065771959765461,22560.0,6,3,6,6_0,6_3,6_0_0 +3748,2,51.0,2,0.0,5,300,3,54,13,3.0,0.0,0.0,1945.2334141943252,54.84898020333991,660.3132556896381,26562.280517540417,31,31,1,14777,201703748,,,,,2.0,1.0,6.0,1.0,3.0,2.0,1526.974952905222,636.472420210409,1182.0,0.0,0.0,36910.0,1,1,1,128.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2660.3956500873032,0.10015689911604199,0.07207790978291258,18455.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3749,1,47.0,4,272.0,99,111,1,0,56,2.0,0.0,0.0,219.35232651450195,0.0,408.7583601119919,7012.4,0,71,2,14778,201703749,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3479.9270044778086,394.0,0.0,0.0,0.0,11194.0,0,4,3,57.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,628.1106866264938,0.08957142870151358,0.056111370968956034,11194.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +3750,2,47.0,3,0.0,1,111,2,0,42,8.0,0.0,0.0,851.7996435715431,0.0,1587.3103831760093,26025.58,0,30,1,14779,201703750,,,104.0,,1.0,0.0,4.0,2.0,3.0,1.6,1178.482445629905,1530.0,0.0,0.0,0.0,44990.0,0,1,2,100.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2439.110026747552,0.09371971832126516,0.0542144927038798,28118.75,8,4,8,8_1,8_3,8_1_0 +3751,2,54.0,3,0.0,9,111,2,38,75,10.0,0.0,0.0,4277.364793569036,0.0,0.0,63259.1858467513,12,42,1,1478,201703751,,,602.0,,2.0,3.0,7.0,1.0,3.0,2.0,2041.939112933377,0.0,3178.0,0.0,0.0,90211.0,1,5,2,200.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4277.364793569036,0.06761650084987146,0.04741511338494237,45105.5,10,5,10,10_1,10_4,10_0_0 +3752,2,36.0,2,0.0,99,111,1,62,54,8.0,0.0,0.0,1414.7668694899594,0.0,2636.3877452435386,63822.57832444876,30,42,2,14780,201703752,,,270.0,620.0,2.0,1.0,4.0,2.0,4.0,2.1,1049.0840338701225,2541.200065831951,0.0,0.0,0.0,61620.0,1,1,3,89.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,4051.154614733498,0.06347525783334902,0.06574415148869682,29342.85714285714,8,4,8,8_0,8_2,8_0_0 +3753,2,44.0,3,0.0,1,111,2,52,55,8.0,0.0,0.0,580.1145284977438,0.0,1081.0309929865368,37548.28,42,50,1,14781,201703753,,,144.0,,2.0,0.0,4.0,0.0,2.0,1.5,1551.2481979686713,1042.0,0.0,0.0,0.0,44623.0,1,1,2,65.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1661.1455214842806,0.04424025605125669,0.03722621790297113,29748.666666666668,8,4,8,8_1,8_3,8_1_0 +3754,2,60.0,3,0.0,6,111,4,78,62,7.0,0.0,0.0,1884.3016711757866,0.0,0.0,52442.00963816254,60,50,1,14784,201703754,,,,,1.0,2.0,5.0,0.0,2.0,1.5,2024.2219363403754,0.0,1400.0,0.0,0.0,41358.0,5,1,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1884.3016711757866,0.03593114917176177,0.04556075417514838,27572.0,8,4,8,8_1,8_4,8_0_0 +3755,1,36.0,4,99.0,6,111,1,0,52,3.0,0.0,0.0,942.1508355878933,0.0,0.0,31319.2,0,50,2,14785,201703755,,,,284.0,1.0,0.0,4.0,2.0,3.0,1.6,661.0396961934069,0.0,700.0,0.0,0.0,25058.0,0,1,3,80.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,942.1508355878933,0.030082212687038406,0.03759880419777689,15661.25,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +3756,2,27.0,4,0.0,6,112,5,0,67,2.0,0.0,0.0,484.5347154452023,106.15931652259337,0.0,13451.560000000001,0,71,1,14787,201703756,,,400.0,,1.0,0.0,3.0,3.0,5.0,2.4,1689.440456276128,0.0,360.0,0.0,0.0,26080.0,0,1,1,60.0,10,4.0,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,590.6940319677957,0.04391267867576665,0.022649311041709957,10866.666666666668,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3757,2,61.0,4,0.0,5,111,6,78,75,9.0,111.05192063972176,0.0,2223.1342217382407,0.0,3120.88213921248,80548.72571117498,50,31,1,1479,201703757,,,720.0,,2.0,1.0,4.0,2.0,4.0,2.5,2620.600205651358,1575.6320500322831,1000.0,840.0,0.0,83013.0,5,5,1,100.0,8,6.0,4,9,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5455.068281590442,0.06772383092875707,0.06571342177237832,33205.2,9,5,9,9_1,9_2,9_0_0 +3758,1,44.0,3,230.0,6,112,2,0,65,4.0,0.0,0.0,592.2090966552472,0.0,1079.286384646366,16427.420000000002,0,50,2,14790,201703758,,,,297.0,1.0,0.0,3.0,2.0,3.0,1.8,775.4570320392926,0.0,440.0,610.0,0.0,29796.0,0,1,3,79.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1671.4954813016134,0.10175033458093925,0.05609798232318477,16553.333333333332,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +3759,2,33.0,3,0.0,9,111,2,38,37,10.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,57633.43,20,20,1,14791,201703759,,,540.0,,2.0,0.0,4.0,2.0,4.0,2.1,2614.631987625085,1200.0,0.0,0.0,0.0,90814.0,1,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1913.0274719588647,0.03319301787103188,0.021065336533561616,43244.7619047619,10,5,10,10_1,10_4,10_0_0 +3760,0,26.0,2,0.0,9,112,4,0,85,1.0,0.0,0.0,2261.162005410944,0.0,0.0,19737.910875301626,0,42,1,14792,201703760,,,400.0,,0.0,0.0,3.0,2.0,3.0,1.6,3555.5943712963526,0.0,1680.0,0.0,0.0,16590.0,0,8,5,90.0,10,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2261.162005410944,0.11455933810301946,0.13629668507600626,10368.75,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3761,2,28.0,2,0.0,9,112,2,55,42,4.0,0.0,0.0,629.1069262979371,0.0,1172.327276463327,24206.48,31,43,2,14793,201703761,,,,500.0,2.0,0.0,3.0,1.0,3.0,1.8,2578.0859092720843,1130.0,0.0,0.0,0.0,31879.0,4,1,3,75.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1801.4342027612643,0.07441950266049686,0.05650849157003872,17710.555555555555,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +3762,2,84.0,1,0.0,4,211,2,75,77,8.0,0.0,0.0,393.0114914166641,0.0,1962.1780337259343,22493.704054661437,50,70,1,14794,201703762,,,315.0,,0.0,4.0,5.0,0.0,2.0,1.5,1780.7511841532285,0.0,292.0,1109.0,0.0,41263.0,5,5,1,115.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2355.1895251425985,0.10470438836659833,0.057077515574306244,27508.666666666668,8,4,8,8_1,8_1,8_0_1 +3763,1,31.0,3,442.0,4,111,1,0,85,2.0,0.0,0.0,1049.8252167979383,0.0,0.0,21770.21119129574,0,71,2,14796,201703763,,,,,0.0,0.0,4.0,4.0,5.0,2.2,2684.5062160956904,0.0,780.0,0.0,0.0,24735.0,0,4,3,85.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1049.8252167979383,0.048223014814743,0.04244290344847133,11243.181818181818,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3764,2,47.0,2,0.0,7,221,4,43,38,9.0,0.0,0.0,3488.6499512054565,44.23304855108057,0.0,54372.66000000001,50,50,1,14798,201703764,,,530.0,,2.0,0.0,5.0,0.0,2.0,1.5,2097.713481773097,0.0,2592.0,0.0,0.0,53634.0,1,1,1,91.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3532.882999756537,0.06497535709594741,0.06587021292009802,35756.0,9,5,9,9_1,9_1,9_0_0 +3765,1,30.0,4,220.0,6,111,2,48,46,5.0,0.0,0.0,361.8756655696098,0.0,674.3475484081084,37569.52,20,20,1,14799,201703765,,,,,2.0,0.0,6.0,0.0,2.0,1.5,2771.9629016829426,650.0,0.0,0.0,0.0,27890.0,4,1,3,140.0,4,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1036.2232139777182,0.027581486640705505,0.037153933810603015,18593.333333333332,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +3766,2,60.0,3,0.0,1,112,5,0,78,3.0,0.0,693.9631597817199,1520.900634591885,49.54101437721024,0.0,9618.0,0,70,1,148,201703766,,,140.0,,0.0,1.0,4.0,0.0,1.0,1.0,5023.5508779932015,0.0,1130.0,0.0,0.0,15747.0,0,5,1,70.0,8,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2264.404808750815,0.23543406204520845,0.14379912419831173,15747.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +3767,1,64.0,3,246.0,4,112,1,0,77,3.0,0.0,0.0,586.825377594745,127.39117982711205,0.0,9388.570875301628,0,71,2,1480,201703767,,,,105.0,0.0,3.0,4.0,0.0,1.0,1.0,2515.5463989962063,0.0,436.0,0.0,0.0,14052.0,0,5,3,72.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,714.216557421857,0.0760729792540349,0.05082668356261436,14052.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +3768,2,34.0,3,0.0,9,111,4,62,63,4.0,0.0,0.0,2422.6735772260117,134.46846759528495,0.0,22969.64,44,50,1,14800,201703768,,,700.0,,2.0,0.0,4.0,2.0,4.0,2.1,2421.0282255125117,0.0,1800.0,0.0,0.0,35019.0,4,1,3,80.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2557.1420448212966,0.11132704059886427,0.07302156100463453,16675.714285714286,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3769,2,58.0,2,0.0,1,300,5,77,54,9.0,0.0,693.9631597817199,1615.1157181506744,198.16405750884095,0.0,34263.83183335698,60,41,1,14801,201703769,,,180.0,,1.0,0.0,3.0,0.0,2.0,1.5,2397.5750663201266,0.0,1200.0,0.0,0.0,47078.0,5,1,1,80.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2507.242935441235,0.07317462178880854,0.05325721006502475,31385.333333333332,8,4,8,8_1,8_0,8_1_0 +3770,2,43.0,3,0.0,1,120,2,56,65,2.0,0.0,0.0,2140.0283265496437,0.0,0.0,20303.36,50,50,1,14802,201703770,,,296.0,,2.0,0.0,6.0,6.0,8.0,3.7,1668.0001348018059,0.0,1590.0,0.0,0.0,39460.0,1,1,2,130.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2140.0283265496437,0.10540266864940796,0.05423285166116684,10664.864864864865,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3771,2,93.0,3,0.0,3,111,2,0,77,1.0,0.0,0.0,908.5025914597543,0.0,123.8525359430256,12415.400000000001,0,70,2,14803,201703771,,,,,0.0,1.0,2.0,0.0,1.0,1.0,5125.379912038388,0.0,675.0,70.0,0.0,10376.0,0,5,1,55.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1032.35512740278,0.08315117736059892,0.09949451883218774,10376.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +3772,2,75.0,3,0.0,1,111,2,0,21,5.0,0.0,0.0,471.07541779394666,0.0,1868.4039707976433,25104.6258467513,0,50,1,14809,201703772,,,120.0,,1.0,0.0,4.0,0.0,1.0,1.0,2147.3712988733837,0.0,350.0,1056.0,0.0,20515.0,0,5,5,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2339.47938859159,0.0931891756870909,0.11403750370907093,20515.0,5,3,5,5_1,5_4,5_1_0 +3773,1,29.0,3,351.0,4,211,1,0,85,1.0,0.0,0.0,888.3136449828709,0.0,0.0,13192.750875301628,0,71,2,1481,201703773,,,,,0.0,0.0,4.0,3.0,4.0,1.9,608.6442122306563,0.0,660.0,0.0,0.0,16482.0,0,6,3,61.0,1,3.0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,888.3136449828709,0.06733346618754833,0.053895986226360326,8674.736842105263,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +3774,2,59.0,3,0.0,8,300,5,56,69,6.0,0.0,41.637789586903196,646.0462872602698,61.9262679715128,0.0,39344.4,50,71,1,14813,201703774,,,300.0,,2.0,2.0,4.0,0.0,2.0,1.5,2437.385910778981,0.0,480.0,0.0,0.0,32022.0,1,1,1,75.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,749.6103448186857,0.019052529580288063,0.02340922943035056,21348.0,6,3,6,6_1,6_0,6_0_0 +3775,2,77.0,3,0.0,4,112,4,0,86,3.0,0.0,0.0,1615.1157181506744,0.0,0.0,17195.358002984744,0,70,1,14816,201703775,,,135.0,,0.0,2.0,4.0,0.0,1.0,1.0,2151.6065377070395,0.0,1200.0,0.0,0.0,13800.0,0,5,1,100.0,6,2.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1615.1157181506744,0.09392742610362198,0.11703737088048366,13800.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +3776,2,54.0,4,0.0,99,111,1,63,67,5.0,0.0,0.0,572.0201501783638,0.0,451.17709522102183,33579.619999999995,50,71,2,14817,201703776,,,380.0,400.0,2.0,7.0,5.0,0.0,2.0,1.5,2381.2234141498825,0.0,425.0,255.0,0.0,31330.0,1,1,3,80.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1023.1972453993856,0.030470780949855468,0.03265870556653002,20886.666666666668,5,3,5,5_0,5_3,5_0_0 +3777,2,64.0,3,0.0,1,111,1,0,77,2.0,0.0,0.0,376.79303774690106,0.0,1256.2185788506883,14043.460875301627,0,41,1,14818,201703777,,,200.0,,0.0,3.0,5.0,0.0,1.0,1.0,1619.7725420523236,0.0,279.95,710.0,0.0,13290.0,0,5,1,120.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1633.0116165975894,0.1162827048900448,0.12287521569583065,13290.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +3778,1,65.0,3,256.0,1,112,2,0,21,2.0,0.0,0.0,697.5849368595709,0.0,1299.934581777477,12267.480000000001,0,44,1,14820,201703778,,,,324.0,1.0,0.0,3.0,0.0,1.0,1.0,2562.625893423558,1253.0,0.0,0.0,0.0,12903.0,0,1,3,90.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1997.519518637048,0.16283046873824517,0.15481047187762906,12903.0,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +3779,2,30.0,1,0.0,99,112,4,0,47,7.0,0.0,0.0,1197.87749096175,106.15931652259337,0.0,17306.940000000002,0,20,2,14821,201703779,,,450.0,,1.0,0.0,3.0,0.0,1.0,1.0,3148.5907743259327,0.0,890.0,0.0,0.0,25581.0,0,1,3,57.0,9,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1304.0368074843434,0.07534762398692912,0.05097677211541157,25581.0,7,4,7,7_0,7_1,7_0_0 +3780,1,38.0,3,302.0,99,111,1,0,52,3.0,0.0,0.0,1146.7321598869787,0.0,0.0,15322.1,0,41,2,14822,201703780,,,,63.0,1.0,0.0,3.0,2.0,3.0,1.6,1157.10988836701,0.0,852.0,0.0,0.0,24098.0,0,1,3,60.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1146.7321598869787,0.07484170967993804,0.04758619636015349,15061.25,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +3781,2,53.0,2,0.0,6,112,5,0,46,7.0,0.0,0.0,942.1508355878933,106.15931652259337,0.0,16248.199999999999,0,50,1,14823,201703781,,,290.0,,1.0,3.0,4.0,0.0,1.0,1.0,3212.2355207740784,0.0,700.0,0.0,0.0,25260.0,0,1,2,80.0,9,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1048.3101521104868,0.06451854064514757,0.041500797787430196,25260.0,7,4,7,7_1,7_1,7_0_0 +3782,2,51.0,2,0.0,2,111,2,0,64,5.0,0.0,0.0,605.6683943065029,0.0,530.7965826129669,17550.840315994115,0,71,2,14824,201703782,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2593.8140819113974,0.0,450.0,300.0,0.0,19759.0,0,1,2,39.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1136.4649769194698,0.06475273869843183,0.05751632050809605,19759.0,5,3,5,5_0,5_3,5_0_1 +3783,2,89.0,3,0.0,1,300,3,77,78,3.0,0.0,832.755791738064,1076.7438121004495,0.0,0.0,18604.222382591488,71,71,1,14825,201703783,,,,,0.0,0.0,4.0,0.0,2.0,1.5,1808.34562075228,0.0,800.0,0.0,0.0,22280.0,5,5,1,80.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1909.4996038385134,0.10263796919699733,0.08570465008251855,14853.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +3784,2,69.0,2,0.0,6,111,2,77,74,9.0,0.0,0.0,2095.9736117471825,123.8525359430256,645.2572531169102,61101.584944916336,42,31,1,14826,201703784,,,380.0,,0.0,5.0,4.0,0.0,2.0,1.5,3208.6212294328584,621.9600197495854,1300.0,0.0,0.0,53400.0,5,5,1,100.0,6,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2865.0834008071183,0.0468904923397653,0.05365324720612581,35600.0,9,5,9,9_1,9_2,9_0_0 +3785,2,70.0,3,0.0,7,111,2,72,72,2.0,0.0,0.0,1157.4995980079832,4423.304855108057,0.0,38630.119999999995,71,50,1,14828,201703785,,,400.0,,0.0,0.0,10.0,0.0,2.0,1.5,2077.060278126936,0.0,860.0,0.0,0.0,19707.0,5,5,1,240.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5580.80445311604,0.1444676965309981,0.2831889406361212,13138.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3786,2,69.0,3,0.0,6,111,2,77,75,7.0,2506.600494439434,0.0,807.5578590753372,205.24134527701386,0.0,22676.740315994113,50,70,1,14829,201703786,,,200.0,,0.0,1.0,5.0,0.0,2.0,1.5,1538.9707430549013,0.0,600.0,0.0,0.0,36633.0,5,5,1,86.0,9,7.0,3,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3519.399698791785,0.1551986594964674,0.0960718395651949,24422.0,7,4,7,7_1,7_3,7_0_0 +3787,2,72.0,2,0.0,4,111,1,0,75,8.0,0.0,0.0,442.8108927263099,0.0,0.0,32513.6439836072,0,30,2,14830,201703787,,,,,0.0,1.0,4.0,0.0,1.0,1.0,1899.289607600999,0.0,329.0,0.0,0.0,32019.0,0,5,1,87.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,442.8108927263099,0.013619232988759035,0.013829629055445512,32019.0,9,5,9,9_0,9_4,9_0_1 +3788,2,60.0,2,0.0,9,111,6,43,47,10.0,0.0,104.094473967258,2476.510767831034,46.0023704931238,0.0,79868.16,33,42,1,14832,201703788,,,210.0,,2.0,3.0,5.0,0.0,2.0,1.5,1221.8020374041403,0.0,1840.0,0.0,0.0,64299.0,1,1,2,135.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2626.607612291416,0.03288679258782744,0.04084989832332409,42866.0,10,5,10,10_1,10_3,10_0_0 +3789,2,66.0,4,0.0,6,111,2,68,74,3.0,88.8415365117774,0.0,1417.2640426772168,0.0,960.74181452947,28354.320315994115,71,70,1,14833,201703789,,,510.0,,1.0,3.0,5.0,0.0,2.0,1.5,2135.5810110553034,0.0,1053.0,543.0,0.0,23260.0,1,5,1,103.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2466.8473937184644,0.08700075918684477,0.10605534796725986,15506.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +3790,1,22.0,3,170.0,99,111,1,0,34,6.0,0.0,0.0,0.0,0.0,0.0,7317.711191295745,0,41,2,14834,201703790,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3309.0317288030406,0.0,0.0,0.0,0.0,22320.0,0,1,3,20.0,8,7.0,1,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,22320.0,6,3,6,6_0,6_3,6_0_0 +3791,2,51.0,3,0.0,7,111,2,64,52,3.0,0.0,0.0,1251.7146815667727,0.0,1220.832140009824,20457.61087530163,71,50,2,14836,201703791,,,,384.0,2.0,1.0,4.0,0.0,2.0,1.5,2907.662925027307,0.0,930.0,690.0,0.0,25113.0,1,1,3,72.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2472.546821576597,0.12086195385413699,0.09845684791050838,16742.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +3792,2,66.0,3,0.0,8,211,2,55,72,5.0,951.8736054833294,0.0,2076.802274262611,0.0,860.3430041558803,62042.33774272367,44,50,1,14837,201703792,,,385.0,,2.0,1.0,7.0,1.0,3.0,2.0,2092.399181215357,829.2800263327805,1200.0,0.0,0.0,39712.0,4,5,2,160.0,1,2.0,4,2,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3889.0188839018206,0.06268330668049214,0.0979305722175116,19856.0,5,3,5,5_1,5_1,5_0_0 +3793,2,30.0,2,0.0,2,111,2,46,38,9.0,0.0,0.0,457.61612014269105,0.0,1132.3660429076626,35224.14,20,12,1,14838,201703793,,,550.0,850.0,2.0,0.0,4.0,0.0,2.0,1.5,2111.810896615812,0.0,340.0,640.0,0.0,55324.0,1,1,3,90.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1589.9821630503536,0.04513899169860083,0.02873946502513111,36882.666666666664,9,5,9,9_1,9_2,9_0_1 +3794,2,54.0,4,0.0,6,111,2,52,56,3.0,0.0,0.0,61.24049725024166,0.0,114.1203543459876,25593.27883901972,71,71,2,14839,201703794,,,,500.0,2.0,3.0,4.0,0.0,2.0,1.5,1528.9612366672384,110.0,0.0,0.0,0.0,22151.0,1,1,3,90.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,175.36085159622925,0.00685183218216154,0.007916611060278508,14767.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +3795,2,70.0,3,0.0,9,211,2,0,74,8.0,0.0,0.0,1728.1738184212215,0.0,0.0,33869.259999999995,0,50,1,1484,201703795,,,231.0,,0.0,2.0,5.0,0.0,1.0,1.0,4947.744731213622,0.0,1284.0,0.0,0.0,28603.0,0,5,2,106.0,1,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1728.1738184212215,0.05102484726330666,0.06041932029581588,28603.0,8,4,8,8_1,8_1,8_0_0 +3796,2,88.0,1,0.0,1,111,2,75,75,8.0,2855.620816449988,0.0,323.9306886060335,184.0094819724952,483.2485556694,30165.952162700294,70,70,2,14840,201703796,,,140.0,,0.0,2.0,4.0,0.0,2.0,1.5,2751.4850915254137,465.80070162131403,48.0,0.0,0.0,51286.0,5,5,1,100.0,6,4.0,3,2,1,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,3846.8095426979166,0.1275215687524173,0.07500701054279758,34190.666666666664,9,5,9,9_0,9_2,9_1_0 +3797,2,59.0,3,0.0,4,111,1,72,46,3.0,0.0,0.0,91.52322402853821,0.0,0.0,44094.97262590489,30,60,2,14841,201703797,,,,,2.0,4.0,4.0,1.0,3.0,2.0,2317.124083821823,0.0,68.0,0.0,0.0,28263.0,6,1,1,74.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,91.52322402853821,0.002075593170337296,0.00323826996527397,14131.5,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +3798,2,57.0,3,0.0,9,111,2,0,37,8.0,0.0,0.0,562.5986418224849,0.0,1127.058077081533,71465.1,0,20,2,14842,201703798,,,,810.0,2.0,1.0,3.0,1.0,2.0,1.5,1545.776436762866,0.0,418.0,637.0,0.0,47214.0,0,1,3,74.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1689.656718904018,0.02364310298179136,0.03578719699462062,31476.0,8,4,8,8_0,8_3,8_0_0 +3799,2,35.0,3,0.0,7,111,1,0,63,4.0,0.0,0.0,672.964882562781,0.0,0.0,10952.8,0,71,2,14843,201703799,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,4512.941857143431,0.0,500.0,0.0,0.0,17300.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,672.964882562781,0.061442268877618604,0.0388997041943804,17300.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +3800,2,81.0,2,0.0,4,111,6,77,75,4.0,0.0,0.0,565.290501352736,3098.0827205176834,0.0,19088.76,50,50,1,14844,201703800,,,330.0,,0.0,1.0,3.0,0.0,2.0,1.5,2014.6699097253324,0.0,420.0,0.0,0.0,27222.0,5,5,1,75.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3663.3732218704195,0.19191258216198537,0.13457399242783114,18148.0,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +3801,2,65.0,2,0.0,4,111,2,0,75,7.0,0.0,0.0,717.3805648119245,0.0,382.17353948133615,16106.94,0,50,2,14845,201703801,,,,364.0,0.0,2.0,3.0,0.0,1.0,1.0,2397.8316923996954,0.0,533.0,216.0,0.0,25595.0,0,5,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1099.5541042932607,0.0682658595793652,0.04295972276980897,25595.0,7,4,7,7_0,7_4,7_0_1 +3802,2,80.0,3,0.0,5,111,2,0,86,5.0,0.0,0.0,751.0288089400635,0.0,2477.050718860512,21376.59087530163,0,70,1,14846,201703802,,,340.0,,0.0,1.0,4.0,1.0,2.0,1.5,2286.858548671719,0.0,558.0,1400.0,0.0,28605.0,0,5,1,105.0,6,4.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3228.0795278005753,0.15101002524823903,0.11285018450622532,19070.0,5,3,5,5_1,5_2,5_0_0 +3803,2,46.0,3,0.0,7,120,2,0,56,1.0,0.0,0.0,888.3136449828709,0.0,1344.6846759528494,29115.48,0,60,1,14847,201703803,,,360.0,,1.0,4.0,5.0,2.0,3.0,2.0,57.25013384482004,0.0,660.0,760.0,0.0,18610.0,0,6,1,100.0,0,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2232.99832093572,0.07669453915702987,0.11998916286597099,9305.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3804,2,28.0,1,0.0,4,111,4,0,54,5.0,0.0,0.0,811.5956483707139,0.0,0.0,32799.32,0,31,2,14848,201703804,,,245.0,,1.0,0.0,2.0,0.0,1.0,1.0,3437.0111018291386,0.0,603.0,0.0,0.0,21656.0,0,1,1,35.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,811.5956483707139,0.024744282758627736,0.037476710767025946,21656.0,6,3,6,6_0,6_3,6_0_1 +3805,2,62.0,3,0.0,7,111,2,0,78,3.0,0.0,0.0,491.0374415883013,0.0,915.0377503014641,17840.591191295745,0,70,1,14849,201703805,,,200.0,,0.0,4.0,4.0,0.0,1.0,1.0,2991.9875650251033,882.0,0.0,0.0,0.0,14360.0,0,5,3,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1406.0751918897654,0.07881326222954854,0.09791609971377196,14360.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +3806,2,40.0,1,0.0,9,400,5,42,47,8.0,793.228004569441,83.27557917380639,672.964882562781,0.0,141.54575536345783,68302.00816118815,20,31,1,1485,201703806,,,210.0,,2.0,0.0,5.0,2.0,4.0,2.1,2239.415018195367,0.0,500.0,80.0,0.0,55360.0,1,1,1,100.0,0,0.0,4,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1691.0142216694862,0.024757899031003693,0.030545777125532626,26361.90476190476,7,4,7,7_1,7_0,7_0_0 +3807,2,45.0,2,0.0,8,120,4,54,62,8.0,0.0,693.9631597817199,1884.3016711757866,61.9262679715128,0.0,50608.14,20,50,1,14850,201703807,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.3,2232.290146840436,0.0,1400.0,0.0,0.0,71561.0,1,1,1,120.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2640.1910989290195,0.052169297249988235,0.036894273402118746,31113.478260869568,8,4,8,8_1,8_0,8_0_0 +3808,2,82.0,3,0.0,5,111,2,0,77,5.0,0.0,0.0,1445.5285677448535,0.0,0.0,13042.880315994114,0,50,1,14851,201703808,,,124.0,,0.0,3.0,6.0,0.0,1.0,1.0,3395.4568287170673,0.0,1074.0,0.0,0.0,19817.0,0,5,1,110.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1445.5285677448535,0.11082893752940773,0.07294386474970245,19817.0,5,3,5,5_1,5_3,5_0_0 +3809,1,41.0,3,112.0,9,111,2,0,43,3.0,0.0,0.0,71.26166952755393,0.0,132.79459414805828,31637.539999999997,0,50,2,14852,201703809,,,,333.0,1.0,1.0,4.0,2.0,3.0,2.0,817.1298920919539,128.0,0.0,0.0,0.0,29491.0,0,1,3,92.0,4,3.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,204.05626367561223,0.006449814482276822,0.006919272445003975,14745.5,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +3811,2,81.0,3,0.0,1,112,5,0,86,3.0,0.0,0.0,471.07541779394666,0.0,0.0,9121.880000000001,0,71,1,14854,201703811,,,120.0,,0.0,3.0,5.0,0.0,1.0,1.0,2070.5311373631703,0.0,350.0,0.0,0.0,13810.0,0,5,1,100.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,471.07541779394666,0.0516423607626878,0.03411118159261019,13810.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3812,2,67.0,2,0.0,1,111,2,75,75,8.0,0.0,0.0,1000.0258154882926,0.0,2866.3015461100213,59384.07087530163,20,41,1,14855,201703812,,,444.0,,0.0,3.0,8.0,0.0,2.0,1.5,1681.0002267585883,0.0,743.0,1620.0,0.0,41430.0,5,5,1,120.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3866.327361598314,0.06510714581553476,0.09332192521357263,27620.0,8,4,8,8_1,8_3,8_1_0 +3813,1,48.0,4,177.0,5,111,1,85,52,2.0,0.0,0.0,834.4764543778484,0.0,1061.5931652259337,22136.940000000002,60,50,2,14856,201703813,,,,236.0,1.0,0.0,4.0,3.0,5.0,2.6,2527.3670775784954,0.0,620.0,600.0,0.0,34455.0,6,1,3,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1896.069619603782,0.08565183894448744,0.05503031837480139,13251.923076923076,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3814,2,43.0,1,0.0,8,120,5,46,38,8.0,0.0,513.5327382384728,1049.8252167979383,619.262679715128,0.0,62078.93999999999,31,31,1,14858,201703814,,,,,2.0,0.0,6.0,2.0,4.0,2.3,2376.9804594321567,0.0,780.0,0.0,0.0,66185.0,1,1,2,180.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2182.620634751539,0.03515879354176375,0.03297757248245885,28776.08695652174,8,4,8,8_1,8_0,8_0_0 +3815,2,48.0,3,0.0,7,112,2,63,55,7.0,0.0,0.0,2422.6735772260117,0.0,0.0,27583.34343190738,50,43,1,14859,201703815,,,240.0,,3.0,0.0,6.0,2.0,4.0,2.5,1488.9519025323589,0.0,1800.0,0.0,0.0,63380.0,1,1,1,100.0,10,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2422.6735772260117,0.08783103408789646,0.03822457521656693,25352.0,7,4,7,7_1,7_1,7_0_0 +3816,1,59.0,3,272.0,99,111,1,0,52,2.0,0.0,0.0,807.5578590753372,0.0,1871.9426146817298,12532.582382591489,0,44,2,1486,201703816,854.0,854.0,,,1.0,6.0,4.0,1.0,2.0,1.5,2245.61948380123,0.0,600.0,1058.0,0.0,17453.0,0,1,3,83.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2679.500473757067,0.21380274168227728,0.1535266414803797,11635.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3817,2,65.0,2,0.0,7,111,2,67,78,9.0,0.0,0.0,355.32545799314835,0.0,1008.513506964637,38987.5985588069,50,50,1,14860,201703817,,,119.0,,1.0,6.0,3.0,0.0,2.0,1.5,2349.111058443521,0.0,264.0,570.0,0.0,52750.0,1,5,3,100.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1363.8389649577853,0.034981353439880125,0.02585476710820446,35166.666666666664,9,5,9,9_1,9_2,9_0_0 +3818,2,44.0,3,0.0,9,112,2,43,37,9.0,0.0,97.1548423694408,2441.5165939377694,106.15931652259337,0.0,57609.02031599411,41,12,1,14862,201703818,,,560.0,,2.0,0.0,6.0,2.0,4.0,2.1,2187.743974361411,0.0,1814.0,0.0,0.0,67038.0,1,1,2,150.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2644.8307528298037,0.045910010937914074,0.03945270969942128,31922.85714285714,9,5,9,9_1,9_0,9_0_0 +3819,2,66.0,2,0.0,9,111,6,0,75,8.0,0.0,0.0,1211.3367886130059,0.0,0.0,21393.440000000002,0,60,2,14863,201703819,,,149.0,600.0,0.0,2.0,3.0,0.0,1.0,1.0,2108.0911622283425,0.0,900.0,0.0,0.0,29343.0,0,5,3,63.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1211.3367886130059,0.056621879819842236,0.04128196805415281,29343.0,8,4,8,8_0,8_3,8_0_0 +3820,2,38.0,3,0.0,9,111,4,52,54,7.0,0.0,555.170527825376,1884.3016711757866,0.0,0.0,64035.340000000004,42,30,1,14864,201703820,,,480.0,,2.0,0.0,4.0,2.0,4.0,2.1,2238.395960493727,0.0,1400.0,0.0,0.0,49110.0,1,1,2,115.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2439.4721990011626,0.038095717130590116,0.04967363467727882,23385.714285714286,6,3,6,6_1,6_3,6_0_0 +3821,2,69.0,1,0.0,2,111,2,75,74,9.0,0.0,0.0,794.0985614240816,148.62304313163074,0.0,41613.44,30,12,1,14865,201703821,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1910.757160684263,0.0,590.0,0.0,0.0,52910.0,5,5,1,120.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,942.7216045557124,0.022654257964631434,0.017817456143559108,35273.333333333336,9,5,9,9_1,9_3,9_0_1 +3822,2,27.0,4,0.0,1,111,1,54,47,6.0,0.0,0.0,110.78962684361902,0.0,206.45409558955936,33171.92,30,50,1,14866,201703822,,,116.0,,2.0,0.0,4.0,0.0,2.0,1.5,3160.8413058665346,199.0,0.0,0.0,0.0,34607.0,4,1,3,75.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,317.2437224331784,0.009563622558874446,0.009167039108653694,23071.333333333332,6,3,6,6_1,6_4,6_1_0 +3823,2,70.0,3,0.0,8,211,2,78,77,6.0,0.0,0.0,987.9124476021625,0.0,1349.992641778979,35933.387849749786,50,71,1,14867,201703823,,,260.0,,0.0,2.0,4.0,0.0,2.0,1.5,1409.717172653112,0.0,734.0,763.0,0.0,33275.0,5,5,1,85.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2337.905089381142,0.0650621950581657,0.07026010787020712,22183.333333333332,6,3,6,6_1,6_1,6_0_0 +3824,2,77.0,3,0.0,1,111,4,0,78,7.0,0.0,0.0,228.80806007134552,106.15931652259337,0.0,20452.57119129575,0,50,1,14869,201703824,,,15.0,,0.0,3.0,3.0,0.0,1.0,1.0,3157.6463344842577,0.0,170.0,0.0,0.0,24929.0,0,5,1,80.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,334.96737659393887,0.016377763629860632,0.013436855734042234,24929.0,7,4,7,7_1,7_3,7_1_0 +3825,2,44.0,3,0.0,9,111,2,0,46,6.0,0.0,0.0,1076.7438121004495,0.0,2653.9829130648345,33074.30753375566,0,20,1,1487,201703825,,,300.0,,1.0,0.0,5.0,1.0,2.0,1.3,1704.7137600745884,0.0,800.0,1500.0,0.0,28230.0,0,1,1,169.0,7,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3730.726725165284,0.1127983320998543,0.1321546838528262,21715.384615384613,6,3,6,6_1,6_2,6_0_0 +3826,2,75.0,1,0.0,4,112,6,0,34,10.0,4283.431224674982,0.0,986.5665178370369,0.0,0.0,31675.277171918202,0,10,1,14871,201703826,,,,,1.0,2.0,7.0,0.0,1.0,1.0,2392.9712191284734,0.0,733.0,0.0,0.0,122162.0,0,1,1,182.0,10,0.0,1,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5269.99774251202,0.1663757419993202,0.04313941931625235,122162.0,10,5,10,10_1,10_0,10_0_1 +3827,2,51.0,3,0.0,7,211,2,72,52,4.0,0.0,756.4198441620748,2760.5019482725274,334.4018470461691,0.0,32666.896658454032,50,50,1,14873,201703827,,,260.0,,1.0,2.0,6.0,0.0,2.0,1.5,1666.032832062275,0.0,2051.0,0.0,0.0,26940.0,5,1,1,100.0,2,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3851.3236394807714,0.11789683237278273,0.14295930361843992,17960.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3828,2,69.0,4,0.0,5,120,5,0,78,6.0,0.0,208.188947934516,538.3719060502248,141.54575536345783,0.0,11661.76,0,71,1,14874,201703828,,,200.0,,0.0,3.0,3.0,0.0,1.0,1.0,3067.762147853628,0.0,400.0,0.0,0.0,23343.0,0,5,1,80.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,888.1066093481986,0.07615545246585409,0.038045949935663737,23343.0,6,3,6,6_1,6_0,6_0_0 +3829,2,53.0,5,0.0,1,112,4,0,74,2.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,26254.72,0,31,1,14875,201703829,,,400.0,,0.0,0.0,5.0,2.0,3.0,2.0,661.7742263140207,1800.0,0.0,0.0,0.0,29640.0,0,7,1,92.0,10,0.0,2,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2869.541207938297,0.10929620304228332,0.09681313117200731,14820.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +3830,2,90.0,4,0.0,7,400,6,86,71,2.0,2934.943616906932,0.0,1029.6362703210548,221.16524275540286,0.0,23965.93800298474,70,71,1,14878,201703830,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1601.910670501488,0.0,765.0,0.0,0.0,15927.0,5,5,5,104.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4185.74512998339,0.1746539246434708,0.2628081327295404,10618.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3831,1,65.0,3,122.0,1,112,2,56,78,3.0,1110.5192063972174,0.0,471.07541779394666,226.47320858153253,0.0,23630.22,71,70,1,14879,201703831,,,340.0,354.0,1.0,3.0,4.0,0.0,2.0,1.5,3527.7436886574524,0.0,350.0,0.0,0.0,20654.0,4,5,3,60.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1808.0678327726966,0.07651506557165767,0.08754080724182708,13769.333333333334,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +3832,2,86.0,2,0.0,9,111,4,77,75,9.0,0.0,0.0,1709.3308017094637,0.0,0.0,29509.36,60,70,1,1488,201703832,,,330.0,,0.0,3.0,5.0,0.0,2.0,1.5,1834.1199864806956,0.0,1270.0,0.0,0.0,54530.0,5,5,3,98.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1709.3308017094637,0.05792503807976397,0.03134661290499658,36353.333333333336,9,5,9,9_1,9_2,9_0_0 +3833,2,68.0,3,0.0,5,112,2,77,72,8.0,1332.6230476766611,1387.9263195634398,1884.3016711757866,53.079658261296686,0.0,95242.27200949671,30,31,1,14881,201703833,,,770.0,,0.0,3.0,6.0,0.0,2.0,1.5,1212.8104295680403,0.0,1400.0,0.0,0.0,42437.0,5,5,1,120.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4657.930696677184,0.04890612748310683,0.1097610739844283,28291.333333333332,8,4,8,8_1,8_0,8_0_0 +3834,1,35.0,3,44.0,9,112,4,0,54,6.0,0.0,0.0,861.3950496803596,0.0,0.0,16838.381349499145,0,31,2,14882,201703834,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2038.019348221739,0.0,640.0,0.0,0.0,26631.0,0,1,1,61.0,10,1.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,861.3950496803596,0.051156642185561485,0.03234557657167811,20485.384615384613,5,3,5,5_0,5_1,5_0_0 +3835,2,37.0,3,0.0,3,112,2,46,64,3.0,0.0,0.0,1292.0925745205395,0.0,2547.823596542241,37050.5,20,50,1,14884,201703835,,,280.0,,2.0,0.0,5.0,2.0,4.0,2.1,2921.3830418185544,0.0,960.0,1440.0,0.0,31541.0,1,1,2,110.0,6,2.0,4,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3839.9161710627804,0.10364006345562896,0.12174364069188613,15019.52380952381,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +3836,1,24.0,5,21.0,4,111,2,0,62,4.0,0.0,0.0,812.8284180486621,0.0,1514.6883395012899,9926.447849749777,0,50,2,14885,201703836,,,250.0,,1.0,0.0,2.0,0.0,1.0,1.0,2528.2091195483454,1460.0,0.0,0.0,0.0,17662.0,0,1,3,38.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,2327.5167575499518,0.23447629935502287,0.13178104164590373,17662.0,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +3837,2,58.0,4,0.0,9,111,1,0,54,4.0,0.0,0.0,444.15682249143543,0.0,0.0,25332.46,0,43,2,14886,201703837,,,168.0,386.0,1.0,1.0,3.0,1.0,2.0,1.5,714.2282920385456,0.0,330.0,0.0,0.0,24369.0,0,1,3,69.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,444.15682249143543,0.017533110581895144,0.01822630483365897,16246.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +3838,2,68.0,2,0.0,1,211,4,0,77,3.0,0.0,0.0,1426.6855510330956,0.0,0.0,14649.44,0,70,8,14887,201703838,,,,530.0,0.0,2.0,3.0,0.0,1.0,1.0,4775.011726688963,0.0,1060.0,0.0,0.0,14116.0,0,5,3,60.0,1,2.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1426.6855510330956,0.09738840194799908,0.10106868454470783,14116.0,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +3839,2,47.0,1,0.0,10,112,2,0,45,9.0,0.0,0.0,942.1508355878933,0.0,0.0,42018.16,0,20,2,14888,201703839,,,230.0,,1.0,0.0,3.0,1.0,2.0,1.5,804.657881907564,0.0,700.0,0.0,0.0,46298.0,0,1,1,70.0,9,2.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,942.1508355878933,0.022422467704152044,0.020349709179400693,30865.333333333332,8,4,8,8_0,8_1,8_0_0 +3840,2,86.0,4,0.0,4,112,4,0,72,5.0,0.0,0.0,1682.4122064069525,0.0,0.0,30558.180000000004,0,70,1,1489,201703840,,,203.0,,0.0,3.0,3.0,0.0,1.0,1.0,3730.422520773693,0.0,1250.0,0.0,0.0,20140.0,0,5,3,80.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1682.4122064069525,0.0550560343059355,0.08353585930521115,20140.0,5,3,5,5_1,5_0,5_0_1 +3841,2,83.0,3,0.0,4,111,1,0,77,3.0,0.0,0.0,232.8458493667222,0.0,155.70033089980362,12759.779999999997,0,70,2,14890,201703841,,,,230.0,0.0,0.0,2.0,0.0,1.0,1.0,2815.038681388092,0.0,173.0,88.0,0.0,14820.0,0,5,3,56.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,388.5461802665258,0.030450852621794883,0.02621769097614884,14820.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +3842,2,42.0,3,0.0,1,112,2,47,43,8.0,1903.7472109666587,0.0,1242.2931732108937,106.15931652259337,0.0,74131.84000000003,50,33,1,14892,201703842,,,215.0,,2.0,1.0,5.0,1.0,3.0,2.0,1874.3619627550888,0.0,923.0,0.0,0.0,57316.0,1,1,1,130.0,4,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3252.1997007001455,0.043870484001208444,0.05674156781178284,28658.0,8,4,8,8_1,8_0,8_1_0 +3843,2,82.0,9,0.0,3,111,2,0,75,7.0,0.0,0.0,314.9475650393815,0.0,2951.2289993280956,22131.150875301628,0,70,1,14895,201703843,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3735.010069162234,0.0,234.0,1668.0,0.0,23966.0,0,5,1,82.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3266.176564367477,0.14758277067337386,0.13628375884033536,23966.0,7,4,7,7_1,7_4,7_0_1 +3844,2,67.0,3,0.0,5,112,5,77,74,8.0,0.0,804.9972653467952,1460.3337951612348,159.23897478389006,0.0,26917.901750603254,60,31,1,14896,201703844,,,604.0,,0.0,2.0,6.0,0.0,2.0,1.5,1810.3811156268407,0.0,1085.0,0.0,0.0,42759.0,5,5,1,160.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2424.5700352919202,0.0900727723043117,0.05670315103935827,28506.0,8,4,8,8_1,8_0,8_0_0 +3845,2,65.0,3,0.0,5,112,4,0,78,2.0,0.0,0.0,1682.4122064069525,0.0,0.0,11896.880000000001,0,60,1,14897,201703845,,,140.0,,0.0,1.0,3.0,0.0,1.0,1.0,1647.9700615255272,0.0,1250.0,0.0,0.0,12788.0,0,5,2,70.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1682.4122064069525,0.14141625421177254,0.13156179280629907,12788.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3846,2,69.0,2,0.0,6,111,2,77,78,6.0,0.0,0.0,2018.894647688343,360.94167617681745,0.0,23838.2258467513,70,50,1,14898,201703846,,,465.0,,0.0,3.0,4.0,0.0,2.0,1.5,1923.7309714673286,0.0,1500.0,0.0,0.0,32839.0,5,5,1,92.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2379.8363238651605,0.09983277862893003,0.07246981710360122,21892.666666666668,6,3,6,6_1,6_4,6_0_0 +3847,2,63.0,2,0.0,2,111,1,0,,6.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,17600.6,0,50,2,14899,201703847,,,,,0.0,3.0,3.0,0.0,1.0,1.0,1695.5582673590875,600.0,0.0,0.0,0.0,21330.0,0,8,1,75.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,956.5137359794323,0.05434551867433113,0.044843588184689746,21330.0,6,3,6,6_0,6_2,6_0_1 +3848,2,63.0,3,0.0,6,111,4,77,75,2.0,0.0,0.0,1668.9529087556969,148.62304313163074,0.0,31956.76218056568,50,70,1,14900,201703848,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2067.883950253183,0.0,1240.0,0.0,0.0,20160.0,7,5,1,85.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1817.5759518873276,0.056876098448818316,0.09015753729599839,13440.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +3849,2,72.0,1,0.0,8,111,4,74,74,10.0,0.0,0.0,1162.2417255611444,0.0,46.458522224417536,45767.419524858386,20,10,2,14901,201703849,,,,,0.0,0.0,5.0,0.0,2.0,1.5,2641.764408426064,44.78112142197015,845.0,0.0,0.0,115525.0,5,5,1,150.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1208.700247785562,0.026409621961077823,0.0104626725625238,77016.66666666667,10,5,10,10_0,10_4,10_0_0 +3850,1,45.0,3,353.0,1,300,4,0,85,1.0,0.0,0.0,2153.487624200899,49.54101437721024,0.0,14431.179999999998,0,43,1,14902,201703850,,,240.0,,0.0,4.0,4.0,1.0,2.0,1.3,864.7922164810271,0.0,1600.0,0.0,0.0,8126.0,0,7,3,100.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2203.028638578109,0.1526575538922049,0.2711086190718815,6250.7692307692305,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +3851,2,51.0,1,0.0,1,111,2,0,54,8.0,0.0,693.9631597817199,339.1743008116416,0.0,1415.4575536345783,30458.16,0,31,1,14904,201703851,,,142.0,,1.0,0.0,4.0,0.0,1.0,1.0,1313.3032548242031,0.0,252.0,800.0,0.0,29695.0,0,1,1,150.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2448.59501422794,0.08039208587215839,0.08245815841818285,29695.0,8,4,8,8_1,8_2,8_1_0 +3852,1,25.0,3,272.0,5,111,4,52,56,7.0,0.0,0.0,969.0694308904046,0.0,0.0,25676.02,30,41,2,14905,201703852,,,,238.0,2.0,0.0,2.0,0.0,2.0,1.5,3893.2900515477504,0.0,720.0,0.0,0.0,37460.0,1,1,3,37.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,969.0694308904046,0.037742198007728794,0.02586944556568085,24973.333333333332,7,4,7,7_0,7_3,7_0_0 +3853,2,39.0,4,0.0,1,111,2,0,63,5.0,0.0,0.0,538.3719060502248,0.0,1415.4575536345783,15403.171191295745,0,50,2,14906,201703853,,,600.0,400.0,1.0,0.0,2.0,0.0,1.0,1.0,3647.31114163968,0.0,400.0,800.0,0.0,19710.0,0,1,3,57.0,6,4.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1953.8294596848032,0.12684592253242646,0.09912884118137003,19710.0,5,3,5,5_0,5_2,5_1_0 +3854,2,79.0,1,0.0,3,111,2,0,77,4.0,0.0,0.0,473.76727732419783,0.0,1698.549064361494,19100.051191295745,0,50,1,14908,201703854,,,55.0,,0.0,2.0,4.0,0.0,1.0,1.0,2096.6973258229627,0.0,352.0,960.0,0.0,18230.0,0,5,1,80.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2172.316341685692,0.11373353505333314,0.11916162049839231,18230.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +3855,2,81.0,3,0.0,4,111,2,78,74,9.0,0.0,0.0,1101.1927414656504,0.0,2121.324268954921,40387.83687497418,50,41,2,14909,201703855,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2004.3709332495307,1035.1126702695867,390.0,592.0,0.0,51948.0,5,5,1,67.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3222.5170104205718,0.07978929449468397,0.06203351448411049,34632.0,9,5,9,9_0,9_3,9_0_1 +3856,2,38.0,2,0.0,9,112,5,47,46,7.0,0.0,0.0,1615.1157181506744,159.23897478389006,0.0,33981.54175060326,43,31,1,14911,201703856,,,400.0,,2.0,0.0,4.0,0.0,2.0,1.5,2425.2780680833316,0.0,1200.0,0.0,0.0,39826.0,1,1,3,110.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1774.3546929345644,0.05221524985407894,0.044552671444146145,26550.666666666668,7,4,7,7_1,7_0,7_0_0 +3857,1,46.0,4,300.0,1,111,1,0,68,3.0,0.0,0.0,538.3719060502248,0.0,0.0,23457.38,0,50,2,14912,201703857,,,,70.0,1.0,0.0,2.0,1.0,2.0,1.5,844.2874179321636,0.0,400.0,0.0,0.0,21551.0,0,4,3,60.0,5,4.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,538.3719060502248,0.022951067256881407,0.02498129581226972,14367.333333333334,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +3858,1,41.0,3,50.0,7,111,1,0,37,4.0,0.0,0.0,233.82735313728637,0.0,435.7322620483162,22451.9,0,41,2,14913,201703858,,,,378.0,2.0,0.0,2.0,1.0,2.0,1.5,5130.925550917156,420.0,0.0,0.0,0.0,24937.0,0,1,3,55.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,669.5596151856025,0.02982195783811626,0.026850046725171533,16624.666666666668,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +3859,2,60.0,3,0.0,6,111,4,34,34,9.0,0.0,0.0,1345.929765125562,0.0,0.0,41530.49999999999,12,30,1,14914,201703859,,,300.0,,2.0,1.0,5.0,0.0,2.0,1.5,1816.8003523498758,0.0,1000.0,0.0,0.0,51119.0,1,1,1,85.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1345.929765125562,0.032408224440484995,0.026329344571011992,34079.333333333336,9,5,9,9_1,9_3,9_0_0 +3860,2,66.0,3,0.0,4,211,6,77,78,5.0,1983.0700114236026,0.0,1265.1739792180283,159.23897478389006,0.0,25905.71639580503,71,50,1,14916,201703860,,,371.0,,2.0,0.0,4.0,2.0,4.0,2.5,3633.448775227638,0.0,940.0,0.0,0.0,48892.0,6,5,3,80.0,1,3.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3407.4829654255213,0.13153401795046682,0.06969408012405959,19556.8,5,3,5,5_1,5_1,5_0_1 +3861,2,64.0,4,0.0,6,120,4,86,75,7.0,0.0,693.9631597817199,1083.4734609260775,0.0,0.0,20108.960315994114,71,71,1,14917,201703861,,,192.0,,0.0,2.0,4.0,0.0,2.0,1.5,1166.7416376007584,0.0,805.0,0.0,0.0,37040.0,6,5,1,117.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1777.4366207077974,0.08839027939669626,0.04798694980312628,24693.333333333332,7,4,7,7_1,7_1,7_0_0 +3862,2,31.0,2,0.0,1,112,2,47,43,7.0,0.0,763.359475759892,551.8312037014804,0.0,0.0,27237.8,41,33,1,14920,201703862,,,170.0,,2.0,0.0,6.0,1.0,3.0,1.8,2002.9493596019265,0.0,410.0,0.0,0.0,44925.0,1,1,2,150.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1315.1906794613724,0.048285495871963686,0.029275251629635447,24958.333333333332,7,4,7,7_1,7_1,7_1_0 +3863,2,70.0,3,0.0,6,111,4,0,75,9.0,0.0,0.0,839.8601734383507,0.0,0.0,29285.996658454027,0,70,2,14921,201703863,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3895.6668868711035,0.0,624.0,0.0,0.0,34492.0,0,5,1,46.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,839.8601734383507,0.028677875751785525,0.024349419385316904,34492.0,9,5,9,9_0,9_3,9_0_0 +3864,2,89.0,3,0.0,1,300,6,0,72,2.0,0.0,1665.511583476128,578.7497990039916,272.4755790746563,0.0,17847.5258467513,0,71,1,14922,201703864,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3372.3987823609045,0.0,430.0,0.0,0.0,12154.0,0,5,5,80.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2516.736961554776,0.14101321287694818,0.20707067315737832,12154.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3865,2,59.0,3,0.0,4,111,1,0,46,4.0,0.0,0.0,444.15682249143543,0.0,123.8525359430256,11953.16,0,70,2,14925,201703865,,,,388.0,1.0,2.0,3.0,0.0,1.0,1.0,2181.568347741124,0.0,330.0,70.0,0.0,16763.0,0,1,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,568.0093584344611,0.04751959803386394,0.033884707894437816,16763.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +3866,2,49.0,3,0.0,1,112,5,56,68,6.0,0.0,0.0,1453.6041463356069,53.079658261296686,0.0,36495.085846751295,50,50,1,14926,201703866,,,250.0,,2.0,2.0,5.0,0.0,2.0,1.5,1980.8755135309843,0.0,1080.0,0.0,0.0,35100.0,1,1,2,90.0,7,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1506.6838045969034,0.041284566665323374,0.042925464518430295,23400.0,6,3,6,6_1,6_0,6_1_0 +3867,2,69.0,3,0.0,10,300,2,77,75,8.0,0.0,0.0,2897.786784315335,0.0,0.0,49568.56,50,50,1,14927,201703867,,,320.0,,0.0,1.0,5.0,0.0,2.0,1.5,1783.076272996516,0.0,2153.0,0.0,0.0,43642.0,5,5,1,160.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2897.786784315335,0.05846017686039972,0.06639903726491304,29094.666666666668,8,4,8,8_1,8_0,8_0_0 +3868,2,59.0,3,0.0,1,112,1,21,64,10.0,0.0,0.0,1372.8483604280732,0.0,3520.9506646660134,48428.700947982354,50,60,1,14928,201703868,,,526.0,,4.0,2.0,5.0,0.0,4.0,2.5,3471.65931532046,0.0,1020.0,1990.0,0.0,111620.0,1,1,1,150.0,10,0.0,5,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4893.799025094087,0.1010516270166023,0.04384338850648707,44648.0,10,5,10,10_1,10_0,10_1_0 +3869,2,70.0,3,0.0,9,400,2,71,71,2.0,1451.6072483620771,0.0,554.5230632317315,219.39592081335965,0.0,41559.36,50,71,1,14929,201703869,,,368.0,,0.0,3.0,3.0,0.0,2.0,1.5,1347.2301893352512,0.0,412.0,0.0,0.0,21030.0,5,5,1,98.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2225.526232407168,0.053550541500330326,0.10582625926805364,14020.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3870,2,57.0,3,0.0,7,112,2,56,78,3.0,0.0,0.0,1659.5314003998178,0.0,1827.7095661306494,37473.95999999999,50,50,1,1493,201703870,,,913.0,,2.0,2.0,4.0,1.0,3.0,2.0,1999.136607527482,0.0,1233.0,1033.0,0.0,31230.0,1,4,1,109.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3487.240966530467,0.09305771171582795,0.11166317536120612,15615.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3871,2,76.0,2,0.0,5,111,2,75,74,9.0,0.0,0.0,1285.4932385540144,0.0,3554.416998038099,30465.29103775979,50,50,1,14930,201703871,,,660.0,,0.0,2.0,5.0,0.0,2.0,1.5,2183.491079576264,1209.0115988748773,455.0,1300.0,0.0,58907.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4839.9102365921135,0.15886637126142508,0.08216188630539857,39271.333333333336,9,5,9,9_1,9_4,9_0_0 +3872,1,39.0,2,94.0,2,300,6,0,52,3.0,0.0,0.0,11091.807194399757,0.0,0.0,42507.0,0,42,2,14931,201703872,,,,406.0,1.0,0.0,3.0,2.0,3.0,1.8,923.1819394723708,0.0,8241.0,0.0,0.0,28119.0,0,1,3,59.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,11091.807194399757,0.2609407202201933,0.3944595182758902,15621.666666666666,3,2,3_1,3_0_1,3_0_1,3_0_1_1 +3873,2,92.0,4,0.0,1,300,4,0,71,1.0,0.0,0.0,1498.0198285847505,148.62304313163074,0.0,14501.539999999999,0,70,1,14932,201703873,,,115.0,,0.0,1.0,5.0,0.0,1.0,1.0,2636.736657028074,0.0,1113.0,0.0,0.0,8864.0,0,5,5,88.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1646.6428717163813,0.11354951761787929,0.18576747198966395,8864.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3874,2,66.0,2,0.0,7,111,4,0,78,7.0,0.0,0.0,1821.0429722148854,0.0,0.0,24930.21665845403,0,70,2,14934,201703874,,,448.0,,0.0,2.0,4.0,0.0,1.0,1.0,2203.698449465945,0.0,1353.0,0.0,0.0,24049.0,0,5,1,92.0,4,4.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1821.0429722148854,0.07304561356859912,0.07572219103558923,24049.0,7,4,7,7_0,7_2,7_0_0 +3875,2,67.0,2,0.0,6,112,2,74,74,10.0,0.0,41.637789586903196,2979.124656103595,49.54101437721024,1932.3303873341074,187205.07113015736,10,10,1,14935,201703875,,,242.0,,0.0,2.0,8.0,0.0,2.0,1.5,1696.1675206207462,1862.5629391434252,1443.0,0.0,0.0,88525.0,5,5,1,270.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5002.633847401816,0.026722747504653085,0.05651097257725858,59016.666666666664,10,5,10,10_1,10_0,10_0_0 +3876,1,37.0,3,150.0,9,112,2,56,56,1.0,0.0,0.0,137.2848360428073,0.0,207.01066721905707,25112.16031599412,31,43,1,14936,201703876,,,700.0,,2.0,0.0,5.0,4.0,6.0,2.7,3057.4474902974,0.0,102.0,117.0,0.0,22280.0,1,1,2,150.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,344.2955032618644,0.013710310022295455,0.015453119535990323,8251.851851851852,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +3877,2,63.0,1,0.0,9,120,5,75,74,9.0,0.0,978.4880552922251,1480.522741638118,44.23304855108057,0.0,45267.579999999994,30,31,1,14937,201703877,,,336.0,,0.0,2.0,7.0,0.0,2.0,1.5,2005.705915856296,0.0,1100.0,0.0,0.0,53085.0,5,5,1,176.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2503.2438454814237,0.05529882192689391,0.047155389384598734,35390.0,9,5,9,9_1,9_0,9_0_0 +3878,2,49.0,3,0.0,8,111,2,0,46,2.0,0.0,0.0,912.540380755131,0.0,707.7287768172891,49764.67087530163,0,42,1,14938,201703878,,,229.0,,1.0,0.0,4.0,2.0,3.0,2.0,1727.2686750030625,0.0,678.0,400.0,0.0,23289.0,0,1,1,92.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1620.2691575724202,0.03255862299647128,0.06957229411191637,11644.5,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +3879,2,54.0,3,0.0,10,120,5,62,65,7.0,0.0,0.0,915.2322402853821,1415.4575536345783,0.0,22547.8,71,50,1,1494,201703879,,,,,2.0,3.0,3.0,0.0,2.0,1.5,1960.3965408526794,0.0,680.0,0.0,0.0,36269.0,1,1,2,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2330.6897939199603,0.10336661642909553,0.06426120912955859,24179.333333333332,7,4,7,7_1,7_0,7_0_0 +3880,2,33.0,4,0.0,1,112,2,42,63,3.0,0.0,0.0,269.1859530251124,0.0,0.0,19840.897038047045,30,60,1,14940,201703880,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3571.113551008423,0.0,200.0,0.0,0.0,28545.0,1,1,2,62.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,269.1859530251124,0.013567226950924622,0.009430231319849795,13592.857142857143,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3881,2,40.0,5,0.0,2,111,1,0,46,4.0,0.0,0.0,347.249879402395,0.0,212.31863304518674,16024.32,0,30,2,14941,201703881,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3723.427748636164,0.0,258.0,120.0,0.0,18490.0,0,1,2,51.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,559.5685124475817,0.034919953698352366,0.030263305162119076,18490.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3882,2,78.0,3,0.0,8,111,2,0,75,6.0,0.0,0.0,3615.1999958011274,0.0,860.3430041558803,64143.897742723675,0,41,1,14942,201703882,,,150.0,,2.0,2.0,6.0,1.0,3.0,2.0,2144.926571423382,829.2800263327805,2343.0,0.0,0.0,47376.0,0,5,3,180.0,7,5.0,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4475.542999957008,0.06977348052511671,0.0944685705833546,23688.0,6,3,6,6_1,6_2,6_0_0 +3883,2,81.0,2,0.0,4,111,2,0,75,8.0,0.0,0.0,473.2220242064128,0.0,881.8391017644495,20790.5,0,44,2,14943,201703883,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3166.609383908686,850.0,0.0,0.0,0.0,29236.0,0,5,1,70.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1355.0611259708623,0.06517693783078148,0.046349060267165905,29236.0,8,4,8,8_0,8_2,8_0_1 +3884,2,63.0,3,0.0,8,400,4,78,77,5.0,0.0,0.0,1782.011009026244,54.84898020333991,0.0,17205.2,71,50,1,14944,201703884,,,228.0,,0.0,3.0,3.0,0.0,2.0,1.5,1541.7493672634175,0.0,1324.0,0.0,0.0,28070.0,5,5,3,80.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1836.8599892295838,0.10676190856424707,0.0654385461072171,18713.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3885,1,39.0,3,19.0,5,111,1,85,64,3.0,0.0,0.0,403.7789295376686,0.0,212.31863304518674,17385.34,31,71,2,14945,201703885,,,,391.0,1.0,0.0,3.0,2.0,4.0,2.1,1345.0760120602013,0.0,300.0,120.0,0.0,29588.0,6,1,3,69.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,616.0975625828553,0.03543776322941371,0.020822548417698233,14089.52380952381,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +3886,1,31.0,4,370.0,9,111,2,0,55,3.0,0.0,0.0,1319.0111698230507,0.0,0.0,8920.035368876688,0,50,2,14946,201703886,,,,140.0,1.0,0.0,2.0,1.0,2.0,1.3,3111.5447121430743,0.0,980.0,0.0,0.0,17720.0,0,1,3,50.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1319.0111698230507,0.14787062105440457,0.07443629626540918,13630.76923076923,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3887,2,71.0,2,0.0,5,111,4,77,77,3.0,0.0,0.0,834.4764543778484,159.23897478389006,0.0,16843.82,60,70,1,14947,201703887,,,250.0,,0.0,1.0,5.0,0.0,2.0,1.5,1760.0076285607486,0.0,620.0,0.0,0.0,21766.0,5,5,1,112.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,993.7154291617385,0.05899584709179619,0.04565448080316725,14510.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3888,2,57.0,2,0.0,6,111,2,33,37,10.0,0.0,0.0,3109.097757440048,0.0,0.0,107531.08,41,20,1,14948,201703888,,,640.0,,3.0,0.0,5.0,3.0,5.0,3.0,2620.751594840683,0.0,2310.0,0.0,0.0,128675.0,1,1,2,155.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3109.097757440048,0.02891348024626971,0.024162407285331634,42891.666666666664,10,5,10,10_1,10_4,10_0_0 +3889,2,48.0,1,0.0,9,111,4,48,46,8.0,0.0,0.0,1197.87749096175,0.0,0.0,53279.4,30,20,1,1495,201703889,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2716.373134627238,0.0,890.0,0.0,0.0,54074.0,1,1,1,68.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1197.87749096175,0.02248293882742204,0.02215255928841495,30041.11111111111,8,4,8,8_1,8_3,8_0_0 +3890,2,31.0,5,0.0,2,111,1,0,52,5.0,0.0,0.0,21.155808140992573,0.0,39.4233951377048,20477.29703804705,0,50,2,14950,201703890,,,,340.0,1.0,0.0,2.0,0.0,1.0,1.0,4020.683716373545,38.0,0.0,0.0,0.0,21024.0,0,1,3,44.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,60.57920327869738,0.002958359356029291,0.0028814309017645254,21024.0,5,3,5,5_0,5_4,5_0_1 +3891,2,65.0,3,0.0,5,111,4,0,77,5.0,0.0,0.0,1247.676892271396,212.31863304518674,0.0,16556.239999999998,0,50,1,14951,201703891,,,280.0,,0.0,5.0,5.0,0.0,1.0,1.0,1915.6238197211767,0.0,927.0,0.0,0.0,16818.0,0,5,1,124.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1459.9955253165826,0.08818400345226832,0.0868114832510752,16818.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3892,2,85.0,2,0.0,7,211,2,0,77,7.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,20162.940000000002,0,60,1,14953,201703892,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3587.1483064787194,1200.0,0.0,0.0,0.0,28632.0,0,5,1,125.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1913.0274719588647,0.09487839927901708,0.06681431517039901,28632.0,8,4,8,8_1,8_1,8_0_0 +3893,0,71.0,2,0.0,1,400,6,0,77,4.0,317.29120182777643,0.0,511.45331074771354,109.69796040667983,0.0,18149.620000000003,0,71,1,14955,201703893,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2201.6984458641796,0.0,380.0,0.0,0.0,16836.0,0,5,5,57.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,938.4424729821699,0.051705901995863814,0.05574022766584521,16836.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3894,2,43.0,3,0.0,5,112,2,47,62,6.0,0.0,0.0,1009.4473238441715,0.0,1326.9914565324173,40281.988351956636,44,43,1,14957,201703894,,,482.0,477.0,2.0,0.0,4.0,2.0,4.0,2.1,3046.101234810846,0.0,750.0,750.0,0.0,44776.0,1,1,3,84.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2336.4387803765885,0.05800207179353647,0.05218060524335779,21321.90476190476,6,3,6,6_1,6_2,6_0_0 +3895,2,41.0,3,0.0,9,221,4,85,63,5.0,0.0,0.0,2557.266553738568,0.0,0.0,30667.52,60,50,1,14958,201703895,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.5,1673.4031087083579,0.0,1900.0,0.0,0.0,47124.0,4,4,2,90.0,1,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2557.266553738568,0.08338680642381803,0.0542667548115306,18849.6,5,3,5,5_1,5_1,5_0_0 +3896,2,67.0,2,0.0,7,111,2,78,75,8.0,1110.5192063972174,0.0,646.0462872602698,424.6372660903735,0.0,26401.52,70,33,1,14959,201703896,,,240.0,,0.0,2.0,5.0,0.0,2.0,1.5,1337.0074210047458,0.0,480.0,0.0,0.0,47911.0,5,5,1,139.0,7,5.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2181.202759747861,0.08261655994608874,0.04552613720748598,31940.666666666668,9,5,9,9_1,9_2,9_0_0 +3897,2,49.0,3,0.0,99,111,5,56,63,4.0,0.0,0.0,1438.7989189192258,0.0,0.0,28756.6,44,50,1,1496,201703897,,,171.0,,2.0,0.0,4.0,2.0,4.0,2.3,2330.209149908568,0.0,1069.0,0.0,0.0,38830.0,1,1,2,110.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1438.7989189192258,0.0500336937927024,0.03705379652122652,16882.608695652176,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +3898,2,43.0,2,0.0,9,111,4,0,45,9.0,0.0,0.0,1090.2031097517051,0.0,0.0,19190.1,0,31,2,14960,201703898,,,223.0,571.0,1.0,0.0,2.0,0.0,1.0,1.0,3285.286980128814,0.0,810.0,0.0,0.0,34638.0,0,1,3,42.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1090.2031097517051,0.05681070498599305,0.03147419336427349,34638.0,9,5,9,9_0,9_3,9_0_0 +3899,2,70.0,2,0.0,1,111,2,77,72,4.0,0.0,0.0,4302.937459106422,307.86201791552077,0.0,31201.480000000003,50,70,1,14961,201703899,,,450.0,,0.0,0.0,4.0,0.0,2.0,1.5,1984.1499176447664,0.0,3197.0,0.0,0.0,25833.0,5,5,5,63.0,5,4.0,3,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4610.799477021942,0.14777502467901976,0.17848486343134526,17222.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +3900,2,65.0,2,0.0,9,400,4,55,72,8.0,0.0,0.0,1615.1157181506744,212.31863304518674,0.0,41496.759999999995,33,12,1,14962,201703900,,,400.0,,1.0,3.0,9.0,0.0,2.0,1.5,1471.553906720822,0.0,1200.0,0.0,0.0,51966.0,4,5,1,200.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1827.4343511958612,0.044038000826952785,0.03516596142084942,34644.0,9,5,9,9_1,9_1,9_0_0 +3901,2,65.0,3,0.0,5,111,2,0,77,1.0,0.0,0.0,538.3719060502248,0.0,495.4101437721024,11385.359999999999,0,44,1,14963,201703901,,,116.0,,0.0,0.0,5.0,0.0,1.0,1.0,1532.1505743561063,0.0,400.0,280.0,0.0,10278.0,0,5,1,100.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1033.7820498223273,0.09079924129077406,0.10058202469569248,10278.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3902,2,27.0,3,0.0,99,112,2,35,34,7.0,0.0,0.0,1137.3106515311,0.0,0.0,25349.260000000002,30,20,2,14964,201703902,,,,650.0,2.0,0.0,2.0,0.0,2.0,1.5,3706.134425668571,0.0,845.0,0.0,0.0,39260.0,1,1,3,50.0,10,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1137.3106515311,0.04486563519136653,0.028968686997735606,26173.333333333332,7,4,7,7_0,7_2,7_0_0 +3903,2,58.0,3,0.0,1,111,2,0,52,7.0,0.0,0.0,538.3719060502248,0.0,1668.4705913467592,19685.440315994114,0,50,1,14965,201703903,,,180.0,,1.0,0.0,5.0,0.0,1.0,1.0,1257.8366985509742,0.0,400.0,943.0,0.0,25546.0,0,1,1,115.0,7,5.0,1,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2206.842497396984,0.11210531550081503,0.08638700764882894,25546.0,7,4,7,7_1,7_2,7_1_0 +3904,2,64.0,3,0.0,7,111,2,52,75,5.0,0.0,176.26664258455688,72.68020731678034,5516.745815290769,0.0,41541.100000000006,30,20,1,14966,201703904,,,,,1.0,2.0,5.0,0.0,2.0,1.5,2641.5467322908353,0.0,54.0,0.0,0.0,29470.0,4,5,2,100.0,6,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5765.692665192107,0.13879489626399172,0.19564617119756045,19646.666666666668,5,3,5,5_1,5_2,5_0_0 +3905,2,42.0,3,0.0,9,111,6,0,37,8.0,0.0,0.0,1480.522741638118,0.0,0.0,34671.28,0,12,1,14969,201703905,,,50.0,,1.0,0.0,5.0,2.0,3.0,1.6,899.8030883761138,0.0,1100.0,0.0,0.0,43960.0,0,1,1,150.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1480.522741638118,0.042701704166622,0.03367886127475246,27475.0,8,4,8,8_1,8_3,8_0_0 +3906,1,51.0,3,99.0,1,111,1,55,46,4.0,0.0,0.0,605.6683943065029,0.0,1415.4575536345783,31832.34,31,31,1,1497,201703906,,,780.0,,2.0,1.0,5.0,2.0,4.0,2.1,615.4124303260835,0.0,450.0,800.0,0.0,34358.0,1,1,3,97.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2021.1259479410812,0.06349284871740755,0.05882548308810412,16360.95238095238,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +3907,2,62.0,1,0.0,1,111,2,31,34,10.0,0.0,0.0,4462.540926999667,0.0,791.5155638234098,98624.38975664902,10,10,1,14970,201703907,,,400.0,,2.0,3.0,6.0,0.0,2.0,1.5,2123.716350919694,762.937624226158,3000.0,0.0,0.0,134626.0,1,1,1,150.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5254.056490823077,0.05327339924522941,0.03902705636966914,89750.66666666667,10,5,10,10_1,10_4,10_1_0 +3908,1,25.0,4,345.0,99,111,4,0,85,2.0,0.0,0.0,1817.0051829195086,116.7752481748527,0.0,20544.180315994116,0,50,1,14972,201703908,,,,140.0,0.0,0.0,4.0,1.0,2.0,1.3,847.787644578333,0.0,1350.0,0.0,0.0,14030.0,0,6,3,88.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1933.7804310943613,0.09412789419438988,0.13783181975013267,10792.307692307691,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +3909,2,65.0,2,0.0,5,112,5,77,78,8.0,0.0,1387.9263195634398,1130.581002705472,0.0,0.0,21322.659999999996,50,70,1,14973,201703909,,,400.0,,0.0,3.0,6.0,0.0,2.0,1.5,2264.740956287808,0.0,840.0,0.0,0.0,40855.0,5,5,1,135.0,9,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2518.5073222689116,0.11811412470437141,0.061645020738438666,27236.666666666668,7,4,7,7_1,7_0,7_0_0 +3910,2,60.0,1,0.0,6,112,4,21,21,7.0,0.0,693.9631597817199,1884.3016711757866,0.0,0.0,39746.24,50,50,1,14974,201703910,,,280.0,,2.0,1.0,6.0,0.0,2.0,1.5,2617.030437727325,0.0,1400.0,0.0,0.0,39803.0,1,1,1,150.0,9,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2578.2648309575065,0.06486814428125796,0.06477564080490181,26535.333333333332,7,4,7,7_1,7_1,7_0_0 +3911,2,51.0,3,0.0,7,111,4,0,46,9.0,0.0,0.0,98.25287285416603,0.0,0.0,30664.167849749774,0,31,2,14977,201703911,,,234.0,,2.0,0.0,3.0,1.0,2.0,1.5,2222.5064250981773,0.0,73.0,0.0,0.0,50595.0,0,1,1,74.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,98.25287285416603,0.0032041591128639676,0.0019419482726389175,33730.0,9,5,9,9_0,9_3,9_0_0 +3912,2,49.0,4,0.0,8,111,2,0,63,4.0,0.0,0.0,562.2991111158552,0.0,1047.8323444495225,21905.76,0,20,2,14978,201703912,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2727.324332172108,1010.0,0.0,0.0,0.0,18193.0,0,1,2,60.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1610.1314555653776,0.07350265206801214,0.08850280083358311,18193.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +3913,2,80.0,3,0.0,1,400,2,0,72,2.0,1186.669094835884,0.0,632.5869896090142,159.23897478389006,0.0,18331.20087530163,0,60,1,1498,201703913,,,130.0,,0.0,0.0,8.0,0.0,1.0,1.0,2420.667071495164,0.0,470.0,0.0,0.0,12226.0,0,5,1,140.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1978.4950592287883,0.10793046635010665,0.16182684927439786,12226.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3914,2,46.0,3,0.0,1,120,6,0,63,7.0,0.0,426.09338010597605,928.6915379366377,54.84898020333991,0.0,19207.16,0,50,1,14980,201703914,,,280.0,,1.0,0.0,5.0,0.0,1.0,1.0,2339.51563144068,0.0,690.0,0.0,0.0,22637.0,0,1,1,80.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1409.6338982459536,0.07339106344956535,0.06227123285974085,22637.0,6,3,6,6_1,6_1,6_1_0 +3915,2,56.0,4,0.0,2,111,4,0,62,2.0,0.0,0.0,702.5753373955433,84.9274532180747,0.0,17922.2,0,50,1,14981,201703915,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2775.46294361636,0.0,522.0,0.0,0.0,14280.0,0,1,1,110.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,787.502790613618,0.04394007379750354,0.05514725424465112,14280.0,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +3916,2,27.0,4,0.0,3,111,6,46,35,5.0,0.0,0.0,823.7090162568439,0.0,912.9701220943031,72300.44,31,50,2,14982,201703916,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4085.747997747094,0.0,612.0,516.0,0.0,30279.0,1,1,2,80.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1736.679138351147,0.024020312163399653,0.057355894790156445,20186.0,5,3,5,5_0,5_3,5_0_1 +3917,2,69.0,2,0.0,4,300,6,77,74,9.0,0.0,0.0,2495.353784542792,0.0,0.0,43007.78,70,31,1,14983,201703917,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1818.3547470037067,0.0,1854.0,0.0,0.0,53418.0,5,5,1,110.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2495.353784542792,0.05802098561104042,0.0467137254210714,35612.0,9,5,9,9_1,9_1,9_0_1 +3918,2,61.0,2,0.0,1,112,6,46,48,8.0,0.0,65.23253701948168,2639.368269411227,0.0,0.0,26292.320000000003,50,71,1,14984,201703918,,,400.0,,2.0,1.0,4.0,0.0,2.0,1.5,2456.667644562691,0.0,1961.0,0.0,0.0,44312.0,1,1,1,90.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2704.600806430709,0.10286657116719668,0.06103540364756068,29541.333333333332,8,4,8,8_1,8_0,8_1_0 +3919,1,48.0,2,124.0,2,211,1,56,64,6.0,0.0,0.0,605.6683943065029,0.0,230.01185246561897,20014.69948037183,50,50,2,14985,201703919,,,203.0,220.0,2.0,1.0,5.0,1.0,3.0,2.0,2456.3212029783817,0.0,450.0,130.0,0.0,44219.0,1,4,3,100.0,1,3.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,835.6802467721219,0.04175332472973992,0.018898669051134624,22109.5,6,3,6,6_0,6_1,6_0_1 +3920,2,76.0,2,0.0,5,111,2,0,77,6.0,0.0,0.0,874.8543473316153,0.0,1680.8558449410618,16689.421152029092,0,70,1,1499,201703920,,,,,0.0,2.0,5.0,0.0,1.0,1.0,4287.203383018271,0.0,650.0,950.0,0.0,23577.0,0,5,1,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2555.710192272677,0.1531335430385466,0.10839844731190046,23577.0,6,3,6,6_1,6_4,6_0_0 +3921,2,68.0,3,0.0,9,300,6,77,77,6.0,0.0,0.0,842.5520329686018,88.46609710216114,0.0,27404.239999999998,50,50,1,14991,201703921,,,170.0,,0.0,2.0,5.0,0.0,2.0,1.5,1821.210589889596,0.0,626.0,0.0,0.0,35417.0,5,5,1,105.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,931.0181300707629,0.033973506657026906,0.02628732332130793,23611.333333333332,6,3,6,6_1,6_0,6_0_0 +3922,0,50.0,2,0.0,1,111,2,68,67,7.0,0.0,0.0,0.0,0.0,1358.8392514891952,82730.06,50,50,1,14992,201703922,,,,,3.0,0.0,3.0,2.0,4.0,2.5,1537.8972439936904,0.0,0.0,768.0,0.0,60329.0,1,1,5,80.0,9,7.0,4,7,0,1,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1358.8392514891952,0.01642497601825981,0.02252381527108348,24131.6,7,4,7,7_1,7_3,7_1_0 +3923,2,72.0,5,0.0,4,120,2,0,77,6.0,0.0,0.0,1345.929765125562,184.0094819724952,0.0,15610.92,0,50,1,14993,201703923,,,340.0,,0.0,2.0,4.0,0.0,1.0,1.0,1845.119493156445,0.0,1000.0,0.0,0.0,23858.0,0,5,3,60.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1529.9392470980572,0.0980044255622383,0.06412688603814475,23858.0,6,3,6,6_1,6_1,6_0_1 +3924,2,73.0,2,0.0,99,111,2,0,77,7.0,0.0,0.0,484.5347154452023,0.0,1726.8582154341855,18453.894007939445,0,70,2,14994,201703924,,,216.0,454.0,0.0,1.0,4.0,0.0,1.0,1.0,2319.0495161771046,0.0,360.0,976.0,0.0,24480.0,0,5,3,86.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2211.3929308793877,0.11983340372107788,0.0903346785489946,24480.0,7,4,7,7_0,7_2,7_0_0 +3925,1,21.0,4,256.0,99,112,4,0,67,3.0,0.0,0.0,1211.3367886130059,1.769321942043223,0.0,7812.9858467512995,0,71,2,14996,201703925,,,,69.0,1.0,0.0,1.0,0.0,1.0,1.0,2638.95031053554,0.0,900.0,0.0,0.0,14892.0,0,4,3,27.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1213.106110555049,0.15526792628959749,0.08146025453633153,14892.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +3926,2,44.0,2,0.0,7,111,2,0,33,9.0,0.0,0.0,791.4067018938305,0.0,1627.776186679765,50807.22,0,20,1,14997,201703926,,,230.0,,1.0,0.0,8.0,3.0,4.0,2.1,803.109792002887,0.0,588.0,920.0,0.0,67746.0,0,1,2,130.0,8,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2419.1828885735954,0.04761494308434107,0.03570960482646349,32260.0,9,5,9,9_1,9_3,9_0_0 +3927,2,53.0,4,0.0,9,112,2,0,48,9.0,0.0,0.0,2018.894647688343,0.0,0.0,30110.100000000002,0,31,1,14998,201703927,,,500.0,,1.0,5.0,5.0,0.0,1.0,1.0,1350.6302492705972,0.0,1500.0,0.0,0.0,32401.0,0,1,2,111.0,10,1.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.06705041323968844,0.06230964006321851,32401.0,9,5,9,9_1,9_1,9_0_0 +3928,1,41.0,3,374.0,99,111,2,85,85,3.0,0.0,0.0,694.8012778936509,0.0,1294.7472929435683,11566.411473268847,71,10,2,14999,201703928,,,,65.0,0.0,0.0,3.0,3.0,5.0,2.4,3153.6003689967656,1248.0,0.0,0.0,0.0,34048.0,6,4,3,66.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1989.5485708372191,0.1720108760988893,0.05843363988596156,14186.666666666668,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +3929,1,77.0,4,230.0,6,111,1,85,72,5.0,0.0,0.0,80.75578590753372,0.0,0.0,11969.145846751302,70,71,2,15000,201703929,,,,94.0,0.0,6.0,4.0,0.0,2.0,1.5,1808.694952304157,0.0,60.0,0.0,0.0,27380.0,6,5,3,75.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,80.75578590753372,0.006746996564458497,0.002949444335556381,18253.333333333332,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +3930,2,60.0,3,0.0,6,111,4,0,75,2.0,0.0,0.0,767.1799661215703,0.0,0.0,17234.4,0,31,2,15001,201703930,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4635.250764901914,0.0,570.0,0.0,0.0,11873.0,0,7,1,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,767.1799661215703,0.04451445748744199,0.06461551133846292,11873.0,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +3931,2,39.0,2,0.0,8,211,2,56,33,7.0,0.0,0.0,2997.513991636433,0.0,995.9594561104371,62812.96,30,10,1,15002,201703931,,,514.0,,2.0,0.0,7.0,2.0,4.0,2.3,3620.1879934141743,960.0,1830.0,0.0,0.0,54980.0,1,1,2,123.0,1,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3993.47344774687,0.06357722112995265,0.07263502087571608,23904.34782608696,7,4,7,7_1,7_1,7_0_0 +3932,2,77.0,2,0.0,4,111,4,0,74,8.0,0.0,0.0,2035.0458048698497,0.0,0.0,36592.42,0,41,2,15004,201703932,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2835.139263453955,0.0,1512.0,0.0,0.0,32654.0,0,5,1,107.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2035.0458048698497,0.05561386223895139,0.06232148603141574,32654.0,9,5,9,9_0,9_3,9_0_1 +3933,2,47.0,2,0.0,99,111,2,0,43,10.0,1269.1648073111057,0.0,67.2964882562781,0.0,0.0,119580.34,0,33,1,15005,201703933,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3555.621735971977,0.0,50.0,0.0,0.0,86292.0,0,1,3,100.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1336.4612955673838,0.011176262716491556,0.015487661609041206,57528.0,10,5,10,10_1,10_3,10_0_0 +3934,1,23.0,3,156.0,7,111,2,0,47,5.0,0.0,0.0,1238.255383915517,0.0,1265.0651885609043,20603.000315994115,0,31,1,15006,201703934,,,210.0,389.0,2.0,0.0,4.0,2.0,3.0,2.0,1753.3289588144269,0.0,920.0,715.0,0.0,37832.0,0,1,3,82.0,7,5.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2503.320572476421,0.12150271970500785,0.06616939555076182,18916.0,5,3,5,5_1,5_2,5_0_0 +3935,2,35.0,1,0.0,10,111,2,38,31,10.0,0.0,0.0,1776.6272899657417,0.0,0.0,57127.920000000006,10,10,1,15007,201703935,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,3102.583678420781,0.0,1320.0,0.0,0.0,92608.0,1,1,2,92.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1776.6272899657417,0.031099106880939156,0.019184382450390267,44099.04761904762,10,5,10,10_1,10_3,10_0_0 +3936,2,93.0,2,0.0,99,111,4,0,74,5.0,0.0,0.0,349.9417389326461,0.0,0.0,14603.380315994116,0,10,2,15009,201703936,,,,,0.0,0.0,3.0,0.0,1.0,1.0,1952.4961413889164,0.0,260.0,0.0,0.0,20302.0,0,5,1,83.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,349.9417389326461,0.02396306412354255,0.01723681109903685,20302.0,5,3,5,5_0,5_2,5_0_0 +3937,2,73.0,2,0.0,4,111,1,75,74,10.0,0.0,0.0,497.99401309645793,0.0,0.0,51277.95999999999,60,20,2,1501,201703937,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2690.4194745130253,0.0,370.0,0.0,0.0,67882.0,5,5,1,60.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,497.99401309645793,0.009711658051460277,0.0073361717848097864,45254.666666666664,10,5,10,10_0,10_4,10_0_1 +3938,2,61.0,4,0.0,1,111,6,77,52,4.0,0.0,999.3069500856767,1115.775775289091,403.40540278585485,0.0,21953.071191295745,50,70,1,15010,201703938,,,564.0,,1.0,2.0,3.0,0.0,2.0,1.5,2018.853515117546,0.0,829.0,0.0,0.0,25762.0,5,1,1,100.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2518.488128160622,0.11472144859436283,0.09775980623245951,17174.666666666668,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +3939,2,53.0,3,0.0,9,112,2,0,65,6.0,0.0,0.0,2903.170503375837,0.0,0.0,37940.41728588652,0,50,1,15011,201703939,,,226.0,,1.0,2.0,4.0,0.0,1.0,1.0,1779.544505835332,0.0,2157.0,0.0,0.0,21920.0,0,1,2,120.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2903.170503375837,0.07651920329447165,0.13244390982554002,21920.0,6,3,6,6_1,6_0,6_0_0 +3940,2,52.0,3,0.0,1,400,5,21,21,1.0,0.0,166.55115834761278,969.0694308904046,4246.372660903735,0.0,40706.02,71,71,1,15012,201703940,,,,,2.0,0.0,7.0,2.0,4.0,2.5,3051.443318176554,0.0,720.0,0.0,0.0,15171.0,1,1,1,170.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5381.9932501417525,0.1322161500962696,0.3547553391432175,6068.4,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3941,1,44.0,4,460.0,9,111,2,85,63,2.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,13772.519999999999,50,71,1,15013,201703941,,,1320.0,,1.0,4.0,4.0,1.0,3.0,1.8,685.1534591401244,1500.0,0.0,0.0,0.0,19780.0,6,4,3,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2391.2843399485805,0.17362721854450608,0.12089405156464006,10988.888888888889,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +3942,2,60.0,1,0.0,1,111,4,75,37,10.0,0.0,0.0,5029.739532274225,0.0,0.0,41680.240000000005,41,20,1,15014,201703942,,,480.0,,1.0,1.0,6.0,0.0,2.0,1.5,2657.2320779789793,0.0,3737.0,0.0,0.0,104283.0,5,1,1,190.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5029.739532274225,0.12067443786970095,0.04823163442051173,69522.0,10,5,10,10_1,10_4,10_1_0 +3943,1,33.0,3,413.0,4,111,1,0,68,2.0,0.0,0.0,336.4824412813905,0.0,442.3304855108057,18620.0058467513,0,71,2,15015,201703943,,,,,1.0,0.0,4.0,3.0,4.0,2.3,638.0702715890193,0.0,250.0,250.0,0.0,24026.0,0,4,3,94.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,778.8129267921962,0.041826674663911476,0.03241542190927313,10446.08695652174,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3944,2,24.0,5,0.0,1,111,2,0,62,1.0,0.0,0.0,417.2382271889242,0.0,778.5016544990181,20151.68,0,31,2,15017,201703944,,,240.0,,1.0,0.0,3.0,0.0,1.0,1.0,3168.7789216472925,0.0,310.0,440.0,0.0,8377.0,0,4,3,74.0,7,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1195.7398816879422,0.059336982409801176,0.1427408238853936,8377.0,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +3945,2,39.0,2,0.0,4,112,2,38,37,10.0,0.0,0.0,1065.976373979445,0.0,2399.20055341061,46545.299999999996,31,43,1,15018,201703945,,,512.0,,2.0,0.0,4.0,2.0,4.0,2.1,2090.460194869913,0.0,792.0,1356.0,0.0,93855.0,1,1,2,110.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3465.1769273900554,0.07444740773805424,0.03692053622492201,44692.85714285714,10,5,10,10_1,10_1,10_0_1 +3946,2,50.0,3,0.0,7,111,2,64,64,6.0,0.0,0.0,116.35694477545917,0.0,216.8286732573764,33943.30816118814,71,71,1,15019,201703946,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1941.1875106810664,209.0,0.0,0.0,0.0,32882.0,1,1,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,333.1856180328356,0.009815944175229525,0.010132766195269009,21921.333333333332,6,3,6,6_1,6_4,6_0_0 +3947,2,53.0,2,0.0,7,211,2,43,21,5.0,0.0,0.0,2664.9409349486127,0.0,0.0,42440.56,33,42,1,15020,201703947,,,160.0,,2.0,0.0,5.0,2.0,4.0,2.5,1235.3631089665512,0.0,1980.0,0.0,0.0,50195.0,1,1,1,130.0,2,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2664.9409349486127,0.06279231317750314,0.053091760831728514,20078.0,5,3,5,5_1,5_1,5_0_0 +3948,1,34.0,3,92.0,2,112,4,85,64,3.0,0.0,0.0,1009.4473238441715,0.0,0.0,11531.48,50,50,2,15021,201703948,,,582.0,,1.0,0.0,3.0,1.0,3.0,1.8,2385.7681388434444,0.0,750.0,0.0,0.0,24474.0,6,1,3,70.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1009.4473238441715,0.08753840130184257,0.041245702535105476,13596.666666666666,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +3949,2,82.0,4,0.0,1,111,4,78,75,6.0,0.0,0.0,1372.8483604280732,247.7050718860512,0.0,18260.190000000002,71,70,1,15023,201703949,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2410.1081107326986,0.0,1020.0,0.0,0.0,30652.0,5,5,1,120.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1620.5534323141244,0.08874789541150033,0.052869419036739015,20434.666666666668,5,3,5,5_1,5_2,5_1_0 +3950,1,49.0,3,438.0,9,111,2,62,53,2.0,218.93092926116574,0.0,858.7031901501085,0.0,2045.3361650019656,41470.420000000006,43,60,1,15024,201703950,,,620.0,,2.0,0.0,5.0,4.0,6.0,2.9,1301.9523310690493,0.0,638.0,1156.0,0.0,37173.0,4,1,3,120.0,8,7.0,4,2,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,3122.97028441324,0.07530597192922665,0.08401179039661151,12818.275862068966,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +3951,1,34.0,4,256.0,99,111,2,0,67,1.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,5479.16,0,71,2,15025,201703951,,,,108.0,1.0,0.0,2.0,0.0,1.0,1.0,3219.0173496999428,800.0,0.0,0.0,0.0,8892.0,0,4,3,58.0,4,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1275.3516479725763,0.2327640820805701,0.1434268609955664,8892.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3952,2,67.0,2,0.0,1,111,2,0,75,9.0,0.0,0.0,802.2505139781657,0.0,1494.9766419324376,74599.22,0,30,1,15026,201703952,,,,,1.0,3.0,9.0,2.0,3.0,2.0,1356.6876043509099,1441.0,0.0,0.0,0.0,68910.0,0,5,1,120.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2297.2271559106034,0.030794251681325935,0.03333662974765061,34455.0,9,5,9,9_1,9_2,9_1_0 +3953,2,81.0,2,0.0,6,400,5,0,71,3.0,0.0,0.0,1021.5606917303015,226.47320858153253,0.0,17773.6,0,70,1,15028,201703953,,,220.0,,0.0,0.0,4.0,0.0,2.0,1.5,3624.171706601239,0.0,759.0,0.0,0.0,21016.0,0,5,1,60.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1248.033900311834,0.07021840821847201,0.059384940060517415,14010.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3954,2,68.0,3,0.0,4,112,4,0,78,4.0,0.0,0.0,1018.8688322000504,0.0,0.0,16939.760315994117,0,71,2,15029,201703954,,,,385.0,0.0,0.0,2.0,0.0,1.0,1.0,2364.9364693434786,0.0,757.0,0.0,0.0,17572.0,0,5,3,44.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1018.8688322000504,0.06014659081321586,0.057982519474166314,17572.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +3955,2,48.0,4,0.0,4,112,2,22,43,8.0,3172.912018277764,0.0,1437.4529891541001,169.8549064361494,0.0,62258.54,31,33,1,15030,201703955,,,550.0,,2.0,0.0,5.0,2.0,4.0,2.1,2080.247883117967,0.0,1068.0,0.0,0.0,60968.0,1,1,2,160.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4780.219913868014,0.07678014797436648,0.07840539158030466,29032.38095238095,8,4,8,8_1,8_0,8_0_1 +3956,1,22.0,4,58.0,4,111,1,0,43,4.0,0.0,0.0,478.789342138253,0.0,892.2136794322666,11471.080000000002,0,42,2,15031,201703956,,,,232.0,1.0,0.0,3.0,0.0,1.0,1.0,2496.581240389972,860.0,0.0,0.0,0.0,16868.0,0,1,3,58.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1371.0030215705196,0.11951821638158913,0.08127833895959923,16868.0,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +3957,2,65.0,2,0.0,2,112,2,0,75,10.0,0.0,0.0,672.964882562781,0.0,4246.372660903735,32597.44,0,70,1,15032,201703957,,,450.0,,0.0,0.0,4.0,0.0,1.0,1.0,1768.458307187209,0.0,500.0,2400.0,0.0,44850.0,0,5,1,70.0,8,1.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4919.337543466516,0.15091177538685602,0.10968422616424785,44850.0,10,5,10,10_1,10_1,10_0_1 +3958,1,28.0,3,89.0,9,111,2,63,56,4.0,0.0,0.0,1211.3367886130059,0.0,0.0,16005.060000000001,50,44,2,15033,201703958,,,160.0,471.0,2.0,0.0,1.0,0.0,2.0,1.5,2578.9301462148123,0.0,900.0,0.0,0.0,24447.0,1,4,3,35.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1211.3367886130059,0.07568461402912614,0.04954950663120243,16298.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +3959,2,35.0,3,0.0,8,111,5,63,43,9.0,0.0,624.566843803548,532.9881869897225,0.0,0.0,41548.40688025633,50,33,1,15036,201703959,,,600.0,,2.0,0.0,5.0,0.0,2.0,1.5,2403.4965579369446,0.0,396.0,0.0,0.0,54844.0,1,1,2,100.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1157.5550307932704,0.027860395083964987,0.021106320304742004,36562.666666666664,9,5,9,9_1,9_4,9_0_0 +3960,2,77.0,2,0.0,5,111,2,77,74,10.0,0.0,0.0,768.2898745939409,0.0,1431.6917181587535,83892.01536887669,60,60,2,15039,201703960,,,,1330.0,0.0,2.0,5.0,0.0,2.0,1.5,1992.607281351953,1380.0,0.0,0.0,0.0,64834.0,5,5,3,120.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2199.9815927526943,0.026223968789869732,0.033932529116708736,43222.666666666664,10,5,10,10_0,10_3,10_0_0 +3961,2,69.0,4,0.0,1,112,2,0,78,1.0,1586.456009138882,0.0,807.5578590753372,123.8525359430256,0.0,11946.599999999999,0,71,1,1504,201703961,,,250.0,,0.0,2.0,3.0,0.0,1.0,1.0,3317.05981827612,0.0,600.0,0.0,0.0,9211.0,0,5,1,70.0,6,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2517.8664041572447,0.21076008271451668,0.27335429423051183,9211.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3962,2,78.0,2,0.0,1,111,6,86,86,8.0,2078.2573719719358,0.0,477.8050666195745,0.0,201.70270139292742,25256.66,70,70,1,15040,201703962,,,130.0,,0.0,2.0,5.0,0.0,2.0,1.5,1677.6925950566476,0.0,355.0,114.0,0.0,47246.0,5,5,1,93.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2757.7651399844376,0.10918962127155521,0.05837034119257583,31497.333333333332,8,4,8,8_1,8_4,8_1_0 +3963,2,71.0,3,0.0,6,400,2,71,71,4.0,0.0,0.0,1152.115878947481,339.7098128722988,0.0,36314.7166329233,50,50,1,15041,201703963,,,191.0,,0.0,3.0,7.0,0.0,2.0,1.5,1318.7369792441482,0.0,856.0,0.0,0.0,25859.0,5,5,1,180.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1491.8256918197799,0.041080471779511976,0.057690772722061176,17239.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3964,2,59.0,1,0.0,4,111,4,85,38,10.0,0.0,0.0,4687.978837547562,35.38643884086446,1680.6310880502465,51149.945599716535,41,12,1,15042,201703964,,,129.0,,1.0,5.0,7.0,0.0,2.0,1.5,1280.4103090636897,1619.9513289719032,2813.0,0.0,0.0,90560.0,6,1,1,190.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,6403.9963644386735,0.12520045308658478,0.07071550755784754,60373.333333333336,10,5,10,10_1,10_3,10_0_1 +3965,2,44.0,4,0.0,99,111,4,0,43,2.0,0.0,0.0,1523.592494122136,0.0,0.0,36125.96,0,33,2,15043,201703965,,,,810.0,1.0,0.0,4.0,2.0,3.0,1.6,623.8196902760725,0.0,1132.0,0.0,0.0,23553.0,0,1,3,110.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1523.592494122136,0.042174450011076135,0.064687831449163,14720.625,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +3966,1,48.0,4,430.0,4,111,1,0,85,1.0,0.0,0.0,336.4824412813905,0.0,0.0,3759.0,0,71,2,15045,201703966,,,,150.0,0.0,2.0,4.0,3.0,4.0,2.1,1499.9994090846085,0.0,250.0,0.0,0.0,21490.0,0,6,3,90.0,7,5.0,2,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,336.4824412813905,0.0895138178455415,0.015657628724122404,10233.333333333332,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3967,2,31.0,1,0.0,99,111,4,0,35,6.0,0.0,0.0,516.8370298082158,0.0,0.0,26731.225846751302,0,30,2,15048,201703967,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4183.9672653263515,0.0,384.0,0.0,0.0,24042.0,0,1,2,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,516.8370298082158,0.019334580193636274,0.02149725604393211,24042.0,7,4,7,7_0,7_4,7_0_0 +3968,2,81.0,2,0.0,3,111,2,86,77,5.0,0.0,0.0,807.5578590753372,0.0,2034.7202333497064,24957.00828207944,70,70,1,15051,201703968,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2784.286019248852,0.0,600.0,1150.0,0.0,31410.0,6,5,1,82.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2842.2780924250437,0.11388697155924582,0.09048959224530544,20940.0,5,3,5,5_1,5_2,5_0_1 +3969,2,36.0,1,0.0,9,111,1,0,34,9.0,0.0,0.0,484.5347154452023,23.0011852465619,0.0,29107.380000000005,0,0,2,15054,201703969,,,,548.0,1.0,0.0,2.0,0.0,1.0,1.0,6638.088610219797,0.0,360.0,0.0,0.0,41320.0,0,1,3,43.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,507.5359006917642,0.017436674159328806,0.012283056647912977,41320.0,10,5,10,10_0,10_4,10_0_0 +3970,2,27.0,3,0.0,9,111,4,22,52,5.0,0.0,0.0,1954.290018962316,0.0,0.0,40603.62,50,43,1,15057,201703970,,,330.0,579.0,2.0,0.0,3.0,0.0,2.0,1.5,3069.88763113608,0.0,1452.0,0.0,0.0,28615.0,1,1,3,70.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1954.290018962316,0.04813093066485983,0.06829599926480223,19076.666666666668,5,3,5,5_1,5_2,5_0_0 +3971,1,27.0,2,304.0,99,111,2,0,46,6.0,0.0,0.0,986.5665178370369,0.0,0.0,30638.38,0,0,2,15058,201703971,,,,451.0,1.0,0.0,2.0,0.0,1.0,1.0,6293.448292676317,0.0,733.0,0.0,0.0,21808.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,986.5665178370369,0.03220034864235762,0.0452387434811554,21808.0,6,3,6,6_0,6_4,6_0_0 +3972,2,36.0,4,0.0,2,111,1,85,53,1.0,0.0,0.0,36.18756655696099,0.0,67.43475484081084,33400.23073454812,60,42,2,15059,201703972,517.0,517.0,,463.0,1.0,0.0,4.0,3.0,5.0,2.4,2686.8721133586846,65.0,0.0,0.0,517.0,24540.0,6,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,103.62232139777183,0.0031024432801474108,0.004222588484016782,10225.0,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +3973,2,33.0,4,0.0,4,111,1,85,64,6.0,0.0,0.0,565.290501352736,113.23660429076627,0.0,30876.760000000002,50,31,2,1506,201703973,,,,299.0,1.0,0.0,4.0,2.0,4.0,2.1,2981.9640770939077,0.0,420.0,0.0,0.0,43570.0,6,1,3,68.0,6,5.0,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,678.5271056435023,0.021975333734611475,0.01557326384309163,20747.619047619046,5,3,5,5_0,5_2,5_0_1 +3974,2,79.0,3,0.0,5,400,6,71,71,4.0,0.0,0.0,1706.6389421792126,176.9321942043223,0.0,20776.58,70,70,1,15060,201703974,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1420.5725732125686,0.0,1268.0,0.0,0.0,24791.0,5,5,1,175.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1883.5711363835348,0.09065838248564174,0.07597802171689463,16527.333333333332,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3975,1,36.0,4,122.0,99,111,4,0,55,3.0,0.0,0.0,1437.4529891541001,0.0,445.8691293948922,26861.760000000002,0,50,2,15061,201703975,,,,548.0,1.0,0.0,3.0,2.0,3.0,1.6,719.7613566931743,0.0,1068.0,252.0,0.0,24994.0,0,1,3,65.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1883.3221185489924,0.07011164266782938,0.07535096897451359,15621.25,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +3976,2,48.0,3,0.0,5,112,2,56,64,6.0,2855.620816449988,0.0,834.4764543778484,0.0,0.0,18313.879999999997,50,70,1,15062,201703976,,,,,2.0,3.0,8.0,0.0,2.0,1.5,2028.3068765940793,0.0,620.0,0.0,0.0,34175.0,1,1,2,120.0,8,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3690.0972708278364,0.20149183410767335,0.10797651121661554,22783.333333333332,6,3,6,6_1,6_1,6_0_0 +3977,2,64.0,2,0.0,5,120,2,77,72,8.0,2005.2803955515471,0.0,790.0607721287049,169.8549064361494,0.0,24524.182382591498,70,70,1,15065,201703977,,,160.0,,0.0,2.0,7.0,0.0,2.0,1.5,1464.5798999146896,0.0,587.0,0.0,0.0,41950.0,5,5,1,177.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2965.1960741164016,0.12090906958110242,0.07068405421016452,27966.666666666668,8,4,8,8_1,8_0,8_0_0 +3978,2,70.0,2,0.0,3,211,2,78,75,4.0,0.0,0.0,847.935752029104,0.0,3131.6998374165046,28845.840000000004,70,70,1,15066,201703978,,,568.0,,0.0,3.0,4.0,0.0,2.0,1.5,2839.710980460843,0.0,630.0,1770.0,0.0,27420.0,5,5,1,90.0,1,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3979.6355894456087,0.13796220146286634,0.1451362359389354,18280.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +3979,2,75.0,2,0.0,4,111,6,77,75,5.0,1139.0754145617175,0.0,553.1771334666059,100.85135069646371,0.0,21018.679999999997,70,60,1,15067,201703979,,,147.0,,0.0,2.0,4.0,0.0,2.0,1.5,1708.8238589858208,0.0,411.0,0.0,0.0,29938.0,5,5,1,80.0,7,5.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1793.103898724787,0.08531001465005354,0.05989391070628589,19958.666666666668,5,3,5,5_1,5_2,5_0_1 +3980,2,60.0,3,0.0,7,111,2,56,67,2.0,0.0,0.0,690.4619695094133,0.0,2176.265988713164,51330.21519470911,60,71,1,15068,201703980,,,500.0,,2.0,0.0,4.0,3.0,5.0,3.0,1552.0038365670687,0.0,513.0,1230.0,0.0,34919.0,1,1,2,73.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2866.7279582225774,0.05584874225343335,0.08209650786742397,11639.666666666666,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +3981,2,51.0,3,0.0,1,112,2,85,13,3.0,0.0,220.68028481058695,1209.9908588478802,0.0,0.0,55209.44,60,31,1,1507,201703981,,,,,1.0,0.0,5.0,0.0,2.0,1.5,1404.579137657842,0.0,899.0,0.0,0.0,20642.0,6,1,1,120.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1430.6711436584671,0.02591352391291176,0.06930874642275299,13761.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3982,2,59.0,1,0.0,6,111,4,75,74,10.0,0.0,0.0,3951.56018470546,106.15931652259337,2746.21486926557,42659.41519477396,50,41,1,15072,201703982,,,335.0,,0.0,2.0,5.0,0.0,2.0,1.5,2054.0747501005744,2647.0618440542353,1841.0,0.0,0.0,68409.0,5,5,1,124.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,6803.934370493624,0.1594943188843139,0.09945963792035585,45606.0,10,5,10,10_1,10_3,10_0_0 +3983,2,44.0,2,0.0,9,300,6,48,46,9.0,0.0,0.0,3084.8710216677878,113.23660429076627,0.0,75838.51601093792,43,31,1,15073,201703983,,,,,2.0,2.0,5.0,1.0,3.0,1.8,1755.7936924503051,0.0,2292.0,0.0,0.0,62673.0,1,1,2,200.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3198.107625958554,0.04216996579280773,0.05102847519599435,34818.333333333336,9,5,9,9_1,9_0,9_0_0 +3984,1,53.0,2,380.0,8,111,2,56,53,6.0,0.0,0.0,1076.7438121004495,0.0,1415.4575536345783,40332.96000000001,50,50,1,15074,201703984,,,360.0,,2.0,1.0,6.0,1.0,3.0,2.0,1940.2798095855394,0.0,800.0,800.0,0.0,51307.0,4,1,3,130.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2492.201365735028,0.061790688452695454,0.04857429523720015,25653.5,7,4,7,7_1,7_3,7_0_0 +3985,2,79.0,3,0.0,1,111,2,0,74,8.0,0.0,0.0,1049.8252167979383,0.0,958.9724925874268,49370.84000000001,0,20,8,15076,201703985,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3532.9347339272235,0.0,780.0,542.0,0.0,32859.0,0,5,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2008.7977093853651,0.04068793865742136,0.06113386619755212,32859.0,9,5,9,9_0,9_4,9_1_0 +3986,2,61.0,3,0.0,5,300,2,78,78,8.0,2379.684013708323,0.0,1036.3659191466827,198.16405750884095,0.0,24275.02,70,71,1,15077,201703986,,,510.0,,0.0,3.0,5.0,0.0,2.0,1.5,2118.520025998708,0.0,770.0,0.0,0.0,43134.0,5,5,1,110.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3614.2139903638467,0.14888613852280438,0.08379037395937884,28756.0,8,4,8,8_1,8_0,8_0_0 +3987,2,72.0,2,0.0,1,111,2,74,72,10.0,0.0,0.0,4582.707471196109,0.0,9929.63178855598,99388.14516730179,70,41,2,15078,201703987,,,390.0,,0.0,4.0,9.0,0.0,2.0,1.5,1887.8605167276635,5136.975123118409,1280.0,2600.0,0.0,87220.0,5,5,1,350.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,14512.339259752089,0.14601680346607954,0.16638774661490585,58146.666666666664,10,5,10,10_0,10_3,10_1_0 +3988,2,69.0,2,0.0,9,111,4,37,74,10.0,0.0,0.0,0.0,0.0,0.0,90842.45999999999,41,20,2,15079,201703988,,,,,1.0,0.0,4.0,0.0,2.0,1.5,2191.6070124487073,0.0,0.0,0.0,0.0,104359.0,4,5,1,138.0,9,7.0,3,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,69572.66666666667,10,5,10,10_0,10_3,10_0_0 +3989,1,80.0,2,133.0,3,111,1,0,78,6.0,0.0,0.0,203.23539453395986,0.0,283.09151072691566,9610.439999999999,0,71,2,1508,201703989,,,,309.0,0.0,2.0,4.0,0.0,1.0,1.0,3382.9538560184924,0.0,151.0,160.0,0.0,21143.0,0,5,3,74.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,486.3269052608755,0.05060402075876604,0.023001792804279216,21143.0,5,3,5,5_0,5_3,5_0_1 +3990,2,65.0,2,0.0,2,111,4,43,43,10.0,0.0,0.0,1098.2786883424585,0.0,0.0,70290.4,20,31,2,15080,201703990,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2009.2857623217417,0.0,816.0,0.0,0.0,61924.0,5,5,1,96.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1098.2786883424585,0.015624874639246023,0.017735913189433152,41282.666666666664,10,5,10,10_0,10_3,10_0_1 +3991,1,63.0,4,242.0,4,111,1,0,78,3.0,0.0,0.0,1087.511250221454,0.0,573.2603092220043,9476.24,0,60,2,15081,201703991,,,380.0,231.0,0.0,5.0,5.0,0.0,1.0,1.0,2111.0724525992073,0.0,808.0,324.0,0.0,13804.0,0,5,3,80.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1660.7715594434583,0.17525638433001467,0.12031089245461159,13804.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3992,1,37.0,4,400.0,99,111,1,0,42,1.0,0.0,0.0,659.5055849115254,0.0,0.0,42955.363667613085,0,42,2,15082,201703992,999999.0,370.0,,,1.0,0.0,3.0,2.0,3.0,1.6,997.5819307648891,0.0,490.0,0.0,0.0,14301.0,0,4,3,77.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,659.5055849115254,0.015353276718007876,0.046116046773758856,8938.125,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +3993,2,58.0,2,0.0,7,112,2,77,33,5.0,0.0,138.792631956344,1092.8949692819563,0.0,2822.0684975589406,26498.280000000002,71,50,1,15083,201703993,,,435.0,,1.0,3.0,8.0,0.0,2.0,1.5,1547.0634246831016,0.0,812.0,1595.0,0.0,31292.0,6,5,1,240.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4053.756098797241,0.15298185764499586,0.12954608522297203,20861.333333333332,5,3,5,5_1,5_0,5_0_0 +3994,1,27.0,3,470.0,6,111,2,0,85,2.0,0.0,0.0,434.25079868353174,0.0,809.2170580897301,9183.690875301629,0,71,2,15084,201703994,,,,,0.0,0.0,3.0,3.0,4.0,1.9,955.8847897197896,780.0,0.0,0.0,0.0,21780.0,0,6,3,71.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1243.467856773262,0.13539957666883268,0.05709218809794591,11463.157894736843,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3995,2,86.0,1,0.0,4,111,1,75,74,10.0,0.0,0.0,624.6225078147311,0.0,536.9428396326666,55435.18684744478,30,30,2,15085,201703995,,,,,0.0,2.0,6.0,0.0,2.0,1.5,3559.450788491742,517.5563351347934,250.0,0.0,0.0,74257.0,5,5,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1161.5653474473977,0.020953575039694104,0.01564250302930899,49504.666666666664,10,5,10,10_0,10_4,10_0_1 +3997,2,67.0,2,0.0,5,111,4,0,75,9.0,0.0,0.0,2095.6126443005,67.23423379764247,0.0,21273.7,0,42,1,15087,201703997,,,70.0,,0.0,1.0,5.0,0.0,1.0,1.0,1781.1378722956342,0.0,1557.0,0.0,0.0,32983.0,0,5,1,110.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2162.8468780981425,0.10166764023644888,0.06557459533996733,32983.0,9,5,9,9_1,9_4,9_0_0 +3998,2,36.0,4,0.0,1,111,4,42,46,6.0,0.0,0.0,1749.7086946632305,0.0,0.0,27417.199999999997,30,12,2,15089,201703998,,,,800.0,2.0,0.0,2.0,1.0,3.0,1.8,3791.3896738796147,0.0,1300.0,0.0,0.0,40570.0,1,1,3,33.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1749.7086946632305,0.06381792067254244,0.04312814135231034,22538.888888888887,6,3,6,6_0,6_4,6_1_0 +3999,1,45.0,4,248.0,99,112,6,0,54,2.0,0.0,0.0,1345.929765125562,0.0,0.0,15297.880000000001,0,31,2,1509,201703999,,,500.0,,1.0,1.0,4.0,2.0,3.0,2.0,346.1295198924457,0.0,1000.0,0.0,0.0,25627.0,0,1,3,90.0,7,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1345.929765125562,0.08798145658911966,0.05251998927402981,12813.5,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +4000,2,82.0,2,0.0,6,211,2,74,72,5.0,0.0,0.0,2490.2849567787307,0.0,1204.4802058182324,63438.53683981315,30,50,1,15090,201704000,,,,,0.0,2.0,6.0,0.0,2.0,1.5,5707.458892007504,1160.9920368658927,1370.0,0.0,0.0,30466.0,5,5,1,120.0,2,3.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3694.765162596963,0.05824165163087714,0.12127503323695145,20310.666666666668,5,3,5,5_1,5_1,5_0_0 +4001,2,78.0,3,0.0,8,120,4,0,86,4.0,0.0,0.0,2005.4353500370873,0.0,0.0,30557.475052882568,0,50,1,15091,201704001,,,530.0,,0.0,4.0,4.0,0.0,1.0,1.0,1924.0570461872887,0.0,1490.0,0.0,0.0,18468.0,0,6,1,110.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2005.4353500370873,0.06562830687308077,0.1085897417174078,18468.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4002,2,66.0,2,0.0,6,112,5,77,74,7.0,0.0,555.170527825376,1184.4181933104944,148.62304313163074,0.0,23116.48,50,50,1,15092,201704002,,,130.0,,0.0,4.0,4.0,0.0,2.0,1.5,2906.401952245998,0.0,880.0,0.0,0.0,34740.0,5,5,1,100.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1888.2117642675012,0.08168249509732889,0.054352670243739236,23160.0,6,3,6,6_1,6_0,6_0_0 +4003,2,48.0,3,0.0,2,400,6,46,46,1.0,1870.4316347747422,0.0,1053.863006093315,0.0,0.0,27917.780000000002,20,30,1,15093,201704003,,,,,2.0,0.0,6.0,3.0,5.0,2.4,2064.562964139338,0.0,783.0,0.0,0.0,21400.0,1,1,1,180.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2924.2946408680573,0.10474667544726182,0.13664928228355408,8916.666666666668,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +4004,2,49.0,1,0.0,3,111,1,0,34,9.0,0.0,0.0,167.01953795520456,0.0,311.2373300345116,43990.62,0,20,8,15095,201704004,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3271.3040655863556,300.0,0.0,0.0,0.0,35407.0,0,1,1,92.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,478.25686798971617,0.010871791940866397,0.01350741005986715,35407.0,9,5,9,9_0,9_2,9_0_1 +4005,2,52.0,3,0.0,1,300,4,0,21,1.0,0.0,0.0,942.1508355878933,230.01185246561897,0.0,17411.22679608773,0,50,1,15096,201704005,,,,,1.0,2.0,3.0,0.0,1.0,1.0,3826.527655052524,0.0,700.0,0.0,0.0,5730.0,0,1,1,90.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1172.1626880535123,0.06732223419873522,0.20456591414546463,5730.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4006,2,51.0,3,0.0,1,111,1,54,64,5.0,0.0,0.0,201.8894647688343,0.0,0.0,25485.3,50,50,2,15097,201704006,,,,,3.0,1.0,3.0,1.0,3.0,2.0,3352.125006213321,0.0,150.0,0.0,0.0,41129.0,4,1,3,55.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,201.8894647688343,0.00792180059755366,0.004908688875704109,20564.5,5,3,5,5_0,5_4,5_1_0 +4007,1,39.0,3,337.0,8,111,2,0,52,3.0,0.0,0.0,575.6606741522717,0.0,1072.7313308522832,20979.52,0,50,1,15099,201704007,,,,242.0,1.0,0.0,4.0,2.0,3.0,1.8,537.4024226084574,1034.0,0.0,0.0,0.0,26413.0,0,1,3,82.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1648.392005004555,0.07857148328486804,0.06240835970940654,14673.888888888889,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +4008,2,36.0,4,0.0,4,111,1,85,38,9.0,0.0,0.0,484.5347154452023,0.0,0.0,58807.90000000001,30,31,8,151,201704008,,,,,1.0,0.0,4.0,2.0,4.0,2.1,3093.515350462144,0.0,360.0,0.0,0.0,72393.0,4,1,2,92.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,484.5347154452023,0.008239279339088834,0.006693115569809268,34472.857142857145,9,5,9,9_0,9_3,9_0_1 +4009,1,48.0,3,436.0,6,111,6,85,63,2.0,0.0,0.0,691.8078992745388,0.0,849.274532180747,19831.000000000004,71,71,2,15100,201704009,,,,,2.0,0.0,3.0,3.0,5.0,2.6,2115.504391761465,0.0,514.0,480.0,0.0,31006.0,6,4,3,55.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1541.0824314552858,0.07771077764385485,0.04970271661792188,11925.384615384615,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4010,2,47.0,3,0.0,3,300,2,46,38,9.0,0.0,0.0,1144.0403003567276,0.0,5307.965826129669,73741.7655367404,31,12,1,15101,201704010,,,770.0,,2.0,0.0,6.0,3.0,5.0,2.4,2041.8782578884523,0.0,850.0,3000.0,0.0,75277.0,1,1,2,300.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,6452.006126486396,0.08749459793272525,0.08571019204386993,31365.416666666668,8,4,8,8_1,8_1,8_0_1 +4011,1,23.0,3,293.0,1,111,4,84,84,1.0,0.0,0.0,0.0,0.0,0.0,11723.160000000002,42,31,2,15102,201704011,,,,357.0,0.0,0.0,2.0,0.0,2.0,1.5,2447.7120514966423,0.0,0.0,0.0,0.0,14316.0,3,3,3,50.0,9,7.0,3,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0.0,0.0,0.0,9544.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +4012,2,32.0,2,0.0,10,300,2,46,46,5.0,0.0,1387.9263195634398,449.5405415519377,169.8549064361494,0.0,28024.499999999996,30,31,1,15103,201704012,,,,,2.0,0.0,3.0,1.0,3.0,1.8,1939.4948246978265,0.0,334.0,0.0,0.0,35573.0,1,1,2,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2007.3217675515268,0.07162738916132409,0.056428239607329345,19762.777777777777,5,3,5,5_1,5_0,5_0_0 +4013,1,56.0,4,412.0,99,111,1,0,78,1.0,0.0,0.0,358.01731752339947,0.0,0.0,9604.9,0,71,2,15105,201704013,,,300.0,,0.0,1.0,4.0,2.0,3.0,1.8,759.0336571556629,0.0,266.0,0.0,0.0,15584.0,0,6,3,95.0,8,6.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,358.01731752339947,0.03727444507734588,0.02297339049816475,8657.777777777777,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4014,2,70.0,2,0.0,1,111,2,74,74,10.0,0.0,0.0,4705.435752226702,0.0,1809.1521054139216,203863.27029900296,10,10,1,15106,201704014,,,,,0.0,2.0,8.0,0.0,2.0,1.5,2294.8098202477217,1658.560052665561,2810.0,50.0,0.0,193664.0,5,5,1,200.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,6514.587857640623,0.03195567228999016,0.03363861046782377,129109.33333333333,10,5,10,10_1,10_4,10_1_0 +4015,2,47.0,2,0.0,1,112,2,13,13,4.0,3045.995537546654,0.0,1453.6041463356069,47.77169243516702,0.0,62509.26328222536,50,50,1,15107,201704015,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2030.732875034438,0.0,1080.0,0.0,0.0,43362.0,1,1,1,120.0,8,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4547.371376317428,0.07274715998149482,0.10486996393887339,17344.8,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4016,1,47.0,4,300.0,4,111,2,0,62,1.0,0.0,0.0,1144.0403003567276,0.0,0.0,6440.52,0,50,2,15108,201704016,,,,150.0,1.0,1.0,1.0,0.0,1.0,1.0,6842.508306143383,0.0,850.0,0.0,0.0,9422.0,0,4,3,22.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1144.0403003567276,0.17763166644257414,0.12142223523208741,9422.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4017,2,31.0,5,0.0,4,112,4,56,68,3.0,0.0,0.0,2422.6735772260117,88.46609710216114,0.0,38606.78,43,71,1,15109,201704017,,,700.0,,2.0,0.0,6.0,3.0,5.0,2.4,2060.426346210315,0.0,1800.0,0.0,0.0,35343.0,1,1,2,120.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2511.139674328173,0.06504400714921506,0.07105055242419073,14726.25,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4018,2,69.0,2,0.0,2,111,6,0,74,10.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,16383.960000000001,0,20,1,1511,201704018,,,60.0,,0.0,2.0,3.0,0.0,1.0,1.0,2919.7709558304555,500.0,0.0,0.0,0.0,40707.0,0,5,1,75.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,797.0947799828602,0.04865092321898126,0.019581270542728776,40707.0,10,5,10,10_1,10_3,10_0_1 +4019,1,48.0,4,351.0,4,111,1,81,64,1.0,0.0,0.0,538.3719060502248,0.0,0.0,12176.154198707929,71,71,8,15110,201704019,,,450.0,,3.0,0.0,4.0,5.0,7.0,3.6,2528.344253091067,0.0,400.0,0.0,0.0,27159.0,4,1,3,60.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,538.3719060502248,0.04421526676356924,0.019822964985832497,7544.166666666666,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4020,2,63.0,2,0.0,6,300,4,77,75,10.0,0.0,0.0,2877.5978378384516,0.0,0.0,28277.4,50,70,1,15111,201704020,,,506.0,,0.0,3.0,3.0,0.0,2.0,1.5,2177.8554089181957,0.0,2138.0,0.0,0.0,63813.0,5,5,1,90.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2877.5978378384516,0.10176316909752847,0.045094225907549426,42542.0,10,5,10,10_1,10_1,10_0_0 +4021,0,72.0,3,0.0,2,111,1,0,75,7.0,0.0,0.0,0.0,0.0,0.0,25547.42,0,60,1,15112,201704021,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2723.1177594085616,0.0,0.0,0.0,0.0,27633.0,0,5,5,54.0,7,5.0,1,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0.0,0.0,0.0,27633.0,8,4,8,8_1,8_2,8_0_1 +4022,2,74.0,3,0.0,1,211,2,0,77,7.0,0.0,0.0,1352.8582574371567,0.0,2521.022373279544,27724.76,0,50,1,15114,201704022,,,244.0,,0.0,5.0,9.0,0.0,1.0,1.0,1263.3590584259857,2430.0,0.0,0.0,0.0,23375.0,0,5,1,110.0,2,3.0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3873.8806307167006,0.1397263900829692,0.16572751361354868,23375.0,6,3,6,6_1,6_1,6_1_0 +4023,2,46.0,3,0.0,1,111,1,52,52,5.0,0.0,0.0,821.0171567265928,0.0,212.31863304518674,28355.81331690806,50,60,2,15115,201704023,,,444.0,454.0,3.0,0.0,6.0,1.0,3.0,2.0,2643.2417379736535,0.0,610.0,120.0,0.0,42910.0,1,1,3,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1033.3357897717797,0.03644176163184218,0.02408146795086879,21455.0,6,3,6,6_0,6_3,6_1_0 +4024,2,52.0,1,0.0,1,111,2,46,22,7.0,0.0,0.0,4330.610635976166,0.0,5701.886648070449,134797.25893575058,31,12,1,15116,201704024,,,1838.0,,2.0,2.0,10.0,2.0,4.0,2.5,1870.5236905119637,2073.200065831951,2360.0,2007.0,0.0,117015.0,6,1,1,270.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,10032.497284046614,0.07442656744844106,0.08573684813097991,46806.0,10,5,10,10_1,10_3,10_1_0 +4025,2,51.0,2,0.0,3,112,2,43,47,8.0,0.0,0.0,2018.894647688343,123.8525359430256,0.0,43035.85119129575,44,31,1,15117,201704025,,,570.0,,2.0,1.0,5.0,1.0,3.0,2.0,1670.6969999140306,0.0,1500.0,0.0,0.0,57045.0,1,1,1,170.0,9,1.0,4,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2142.7471836313684,0.04978981765939258,0.037562401325819415,28522.5,8,4,8,8_1,8_1,8_0_1 +4026,2,69.0,2,0.0,8,211,2,0,74,10.0,0.0,0.0,1500.7116881150016,0.0,0.0,33782.72,0,31,2,15118,201704026,,,260.0,,0.0,1.0,5.0,0.0,1.0,1.0,2199.8569674363,0.0,1115.0,0.0,0.0,41008.0,0,5,1,110.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1500.7116881150016,0.044422464742773865,0.03659558349870761,41008.0,10,5,10,10_0,10_2,10_0_0 +4027,1,59.0,4,243.0,4,111,1,0,77,3.0,0.0,0.0,296.1045483276236,0.0,866.9677516011792,7112.76,0,70,2,15119,201704027,,,,,1.0,4.0,4.0,1.0,2.0,1.5,2852.250217798627,0.0,220.0,490.0,0.0,22769.0,0,6,3,55.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1163.0722999288027,0.16351912618010486,0.051081395754262494,15179.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +4028,0,49.0,3,0.0,4,112,2,0,85,1.0,0.0,0.0,148.0522741638118,0.0,111.46728234872305,17387.87087530163,0,71,1,1512,201704028,,,,,0.0,3.0,5.0,7.0,8.0,3.9,385.93258802855826,0.0,110.0,63.0,0.0,36122.0,0,6,5,68.0,10,3.0,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,259.51955651253485,0.014925321126071046,0.007184528999295023,9262.051282051283,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +4029,2,76.0,4,0.0,4,400,4,0,72,3.0,0.0,832.755791738064,2114.4556610122577,63.69558991355603,0.0,18310.48,0,70,1,15120,201704029,,,150.0,,0.0,2.0,4.0,0.0,1.0,1.0,2279.0126661734666,0.0,1571.0,0.0,0.0,14470.0,0,5,1,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3010.9070426638777,0.16443627052179285,0.20807927039833296,14470.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4030,2,41.0,3,0.0,1,111,2,85,22,4.0,0.0,0.0,702.5753373955433,0.0,2595.595288977408,55198.9,20,12,2,15121,201704030,,,,,1.0,0.0,5.0,2.0,4.0,2.1,4243.834053269211,0.0,522.0,1467.0,0.0,35443.0,4,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3298.170626372951,0.05975065855248839,0.09305562808940979,16877.619047619046,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +4031,2,70.0,1,0.0,1,111,4,0,74,10.0,0.0,0.0,810.2497186055883,212.31863304518674,0.0,34973.14,0,31,1,15122,201704031,,,140.0,,0.0,3.0,2.0,0.0,1.0,1.0,1502.613782451383,0.0,602.0,0.0,0.0,45071.0,0,5,1,32.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1022.5683516507751,0.02923867721487905,0.022687944612961218,45071.0,10,5,10,10_1,10_2,10_1_0 +4032,1,36.0,2,94.0,4,111,2,0,46,4.0,0.0,0.0,861.3950496803596,0.0,0.0,31212.151191295747,0,42,2,15123,201704032,,,,,1.0,0.0,4.0,2.0,3.0,1.8,779.3299543959217,0.0,640.0,0.0,0.0,29417.0,0,1,2,82.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,861.3950496803596,0.027598067316826923,0.029282219454069405,16342.777777777777,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +4033,2,53.0,3,0.0,1,111,4,0,42,6.0,0.0,0.0,605.6683943065029,106.15931652259337,0.0,15389.880000000001,0,20,1,15125,201704033,,,,450.0,1.0,0.0,2.0,0.0,1.0,1.0,2594.250565206784,0.0,450.0,0.0,0.0,23144.0,0,1,3,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,711.8277108290963,0.04625297343638133,0.030756468667002088,23144.0,6,3,6,6_1,6_3,6_1_0 +4034,2,67.0,4,0.0,5,112,2,0,75,7.0,0.0,0.0,4037.789295376686,123.8525359430256,0.0,17539.0,0,50,1,15126,201704034,,,200.0,,0.0,1.0,5.0,0.0,1.0,1.0,2153.812026721932,0.0,3000.0,0.0,0.0,26944.0,0,5,1,105.0,9,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4161.641831319712,0.23727931075430253,0.15445523423840973,26944.0,7,4,7,7_1,7_1,7_0_0 +4035,2,91.0,4,0.0,1,221,2,72,72,8.0,6345.824036555528,0.0,860.7073522624875,0.0,1603.9097074445165,35317.12,70,12,1,15129,201704035,,,,,0.0,4.0,4.0,0.0,2.0,1.5,1531.7160199557777,1546.0,0.0,0.0,0.0,41800.0,5,5,5,150.0,1,2.0,3,7,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,8810.441096262533,0.2494665787092077,0.21077610278140033,27866.666666666668,8,4,8,8_1,8_1,8_1_0 +4036,2,61.0,2,0.0,6,111,2,54,46,10.0,0.0,0.0,1597.618631204042,0.0,0.0,42310.84,50,31,1,1513,201704036,,,2352.0,,2.0,1.0,5.0,0.0,2.0,1.5,2790.275740542646,0.0,1187.0,0.0,0.0,70610.0,1,5,1,129.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1597.618631204042,0.0377590856433964,0.022625954272823143,47073.333333333336,10,5,10,10_1,10_4,10_0_0 +4037,1,56.0,3,115.0,5,111,4,0,46,1.0,0.0,0.0,1615.1157181506744,0.0,0.0,17184.584177580946,0,50,2,15131,201704037,,,,375.0,1.0,3.0,4.0,1.0,2.0,1.5,819.1170193565212,0.0,1200.0,0.0,0.0,12898.0,0,1,3,80.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1615.1157181506744,0.09398631363206092,0.12522218314084932,8598.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4038,2,62.0,3,0.0,8,111,2,0,53,7.0,0.0,0.0,654.1218658510231,0.0,971.3577461817293,25635.15665845403,0,30,1,15132,201704038,,,376.0,,1.0,0.0,5.0,0.0,1.0,1.0,4659.401414070457,0.0,486.0,549.0,0.0,26210.0,0,1,1,127.0,6,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1625.4796120327524,0.06340821839669536,0.062017535750963464,26210.0,7,4,7,7_1,7_2,7_0_0 +4039,1,69.0,4,129.0,99,211,2,0,75,2.0,0.0,0.0,0.0,0.0,0.0,10371.74,0,31,2,15133,201704039,,,,366.0,0.0,0.0,4.0,0.0,1.0,1.0,1559.0743443068106,0.0,0.0,0.0,0.0,11068.0,0,5,3,85.0,1,2.0,1,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,11068.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +4040,2,45.0,3,0.0,7,120,2,62,54,7.0,1581.6966411114656,0.0,1111.7379859937141,0.0,0.0,72011.24753375567,50,31,1,15134,201704040,,,352.0,,2.0,2.0,5.0,1.0,3.0,2.0,2210.5807126326727,0.0,826.0,0.0,0.0,53554.0,1,1,2,120.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2693.43462710518,0.03740297133225775,0.05029380862503604,26777.0,7,4,7,7_1,7_0,7_0_0 +4041,2,63.0,3,0.0,5,112,4,0,75,10.0,0.0,208.188947934516,141.322625338184,0.0,0.0,54942.64000000001,0,60,1,15136,201704041,,,167.0,,0.0,2.0,5.0,0.0,1.0,1.0,3446.531853504975,0.0,105.0,0.0,0.0,42112.0,0,5,1,120.0,8,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,349.5115732727,0.006361390229386501,0.00829957193371723,42112.0,10,5,10,10_1,10_1,10_0_0 +4043,1,38.0,4,261.0,99,111,1,0,56,1.0,0.0,0.0,444.15682249143543,0.0,0.0,7231.1,0,31,2,15138,201704043,,,,229.0,1.0,0.0,1.0,0.0,1.0,1.0,3736.0568813726813,0.0,330.0,0.0,0.0,3736.0,0,4,3,24.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,444.15682249143543,0.06142313375439911,0.11888565912511655,3736.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +4044,2,56.0,3,0.0,6,112,6,52,63,3.0,0.0,485.77421184720396,1477.1943084404022,143.31507730550106,625.841577692049,34863.94,50,50,1,15139,201704044,,,180.0,,2.0,2.0,4.0,0.0,2.0,1.5,1365.2435866522192,603.2453539130274,848.0,0.0,0.0,21784.0,1,4,1,101.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2732.1251752851567,0.0783653590295634,0.12541889346700133,14522.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4045,2,59.0,3,0.0,6,112,2,78,78,1.0,0.0,173.49078994542998,807.5578590753372,88.46609710216114,0.0,22250.62,71,71,1,1514,201704045,,,423.0,,0.0,4.0,5.0,0.0,2.0,1.5,2689.4621108580222,0.0,600.0,0.0,0.0,8780.0,4,7,1,96.0,5,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1069.5147461229285,0.04806673908964912,0.1218126134536365,5853.333333333333,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4046,2,59.0,2,0.0,8,111,6,48,43,10.0,0.0,0.0,2831.4997433829008,169.8549064361494,0.0,80052.86002433223,50,33,1,15140,201704046,,,,,2.0,3.0,6.0,1.0,3.0,1.8,2305.4414939620306,0.0,2103.75,0.0,0.0,110002.0,1,1,2,160.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3001.3546498190503,0.037492160166504765,0.027284546188424304,61112.22222222222,10,5,10,10_1,10_3,10_0_0 +4047,2,59.0,3,0.0,6,111,2,74,62,6.0,0.0,0.0,122.47960862642614,0.0,3004.3086575893926,31661.420000000002,70,50,1,15141,201704047,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2868.4143288631294,0.0,91.0,1698.0,0.0,34101.0,5,1,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3126.7882662158186,0.09875704457399,0.09169198164909588,22734.0,6,3,6,6_1,6_4,6_0_0 +4048,2,36.0,3,0.0,9,300,4,54,21,6.0,0.0,0.0,2368.836386620989,0.0,0.0,43622.08,42,44,1,15142,201704048,,,564.0,,2.0,0.0,6.0,2.0,4.0,2.1,2743.540013180422,0.0,1760.0,0.0,0.0,45230.0,1,1,2,180.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2368.836386620989,0.05430360924148937,0.05237312373692215,21538.095238095237,6,3,6,6_1,6_0,6_0_0 +4049,1,72.0,4,180.0,2,111,1,86,78,5.0,0.0,0.0,807.5578590753372,0.0,0.0,4977.62,71,71,2,15143,201704049,,,,20.0,0.0,4.0,3.0,0.0,2.0,1.5,919.965637398846,0.0,600.0,0.0,0.0,29590.0,6,5,3,55.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,807.5578590753372,0.16223774797500357,0.027291580232353403,19726.666666666668,5,3,5,5_0,5_2,5_0_1 +4050,2,43.0,2,0.0,8,112,2,54,37,8.0,0.0,1321.3058562243948,1009.4473238441715,0.0,1680.8558449410618,82453.02522359724,43,41,1,15144,201704050,,,1200.0,,2.0,0.0,5.0,2.0,4.0,2.1,2209.296348134869,0.0,750.0,950.0,0.0,61234.0,1,1,2,120.0,6,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4011.6090250096286,0.0486532666828281,0.06551277109138107,29159.04761904762,8,4,8,8_1,8_0,8_0_0 +4051,2,69.0,3,0.0,3,111,1,72,72,4.0,0.0,0.0,952.9182737088979,0.0,0.0,17907.32,70,50,2,15146,201704051,,,177.0,316.0,0.0,9.0,3.0,0.0,2.0,1.5,1976.6758932558585,0.0,708.0,0.0,0.0,26062.0,5,5,3,76.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,952.9182737088979,0.053213896535545126,0.03656351291953411,17374.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4052,2,42.0,3,0.0,5,111,2,0,62,8.0,0.0,0.0,274.5696720856146,0.0,573.2603092220043,25109.559999999998,0,43,2,15147,201704052,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4048.104831225262,0.0,204.0,324.0,0.0,36470.0,0,1,1,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,847.8299813076189,0.03376522652358779,0.023247326057242088,36470.0,9,5,9,9_0,9_4,9_0_0 +4053,2,63.0,2,0.0,9,111,4,77,74,6.0,0.0,0.0,1520.900634591885,0.0,0.0,24310.04,50,20,1,15149,201704053,,,600.0,,0.0,3.0,5.0,0.0,2.0,1.5,2091.7584071678825,0.0,1130.0,0.0,0.0,33040.0,5,5,1,140.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1520.900634591885,0.06256265454897997,0.046032101531231384,22026.666666666668,6,3,6,6_1,6_3,6_0_0 +4054,2,70.0,2,0.0,4,112,2,77,75,5.0,2221.038412794435,0.0,1231.5257350898892,127.39117982711205,0.0,34407.84,70,44,1,1515,201704054,,,430.0,,0.0,4.0,4.0,0.0,2.0,1.5,2422.2792519917284,0.0,915.0,0.0,0.0,30424.0,5,5,1,97.0,9,3.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3579.955327711436,0.10404475630296572,0.11766879199682606,20282.666666666668,5,3,5,5_1,5_1,5_0_1 +4055,2,76.0,2,0.0,1,111,2,0,47,10.0,0.0,0.0,55.673179318401516,0.0,103.74577667817053,37012.5258467513,0,44,2,15150,201704055,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2293.6114270175517,100.0,0.0,0.0,0.0,50860.0,0,1,2,78.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,159.41895599657204,0.004307162301125815,0.003134466299578687,50860.0,10,5,10,10_0,10_4,10_1_0 +4056,2,46.0,2,0.0,3,111,2,55,21,7.0,0.0,0.0,2422.6735772260117,106.15931652259337,0.0,69917.29999999999,71,50,1,15151,201704056,,,676.0,,3.0,0.0,4.0,3.0,5.0,2.8,2140.4325739803076,0.0,1800.0,0.0,0.0,71570.0,1,1,3,110.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2528.832893748605,0.03616891518620721,0.0353336997869024,25560.714285714286,7,4,7,7_1,7_2,7_0_1 +4057,2,34.0,4,0.0,99,111,1,0,21,9.0,0.0,0.0,581.4416585342427,0.0,0.0,36591.119999999995,0,60,2,15152,201704057,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3429.72050579032,0.0,432.0,0.0,0.0,34022.0,0,1,2,73.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,581.4416585342427,0.01589023944974198,0.01709016690771391,34022.0,9,5,9,9_0,9_4,9_0_0 +4058,1,43.0,3,98.0,6,111,1,0,53,3.0,0.0,0.0,1028.2903405559293,150.39236507367394,0.0,36722.979999999996,0,42,2,15155,201704058,,,,,2.0,1.0,3.0,1.0,2.0,1.5,1334.8124284232774,0.0,764.0,0.0,0.0,22656.0,0,1,3,74.0,6,4.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1178.6827056296033,0.03209659743380312,0.052025190043679524,15104.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +4059,2,63.0,3,0.0,5,120,2,0,78,4.0,0.0,0.0,1076.7438121004495,123.8525359430256,0.0,18032.110875301627,0,50,1,15156,201704059,,,170.0,,0.0,3.0,4.0,0.0,1.0,1.0,4441.351763657285,0.0,800.0,0.0,0.0,17250.0,0,5,2,82.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1200.5963480434752,0.06658102073273729,0.06959978829237537,17250.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4060,2,35.0,3,0.0,9,300,4,43,46,6.0,0.0,0.0,1620.4994372111767,0.0,0.0,41597.4,43,31,1,15157,201704060,,,508.0,,2.0,0.0,4.0,2.0,4.0,2.1,2381.4242095194477,0.0,1204.0,0.0,0.0,45036.0,1,1,2,94.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1620.4994372111767,0.03895674819126139,0.035982312754489224,21445.714285714286,6,3,6,6_1,6_0,6_0_0 +4061,2,30.0,1,0.0,9,111,2,54,37,10.0,0.0,0.0,672.964882562781,0.0,1326.9914565324173,45965.7,20,20,2,15158,201704061,,,450.0,850.0,2.0,0.0,4.0,1.0,3.0,1.8,3530.459836709385,0.0,500.0,750.0,0.0,72235.0,1,1,3,90.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1999.9563390951982,0.04350975486276067,0.027686804722021157,40130.555555555555,9,5,9,9_0,9_2,9_0_0 +4062,2,46.0,2,0.0,99,111,1,0,31,10.0,0.0,0.0,3769.1781393012066,0.0,4014.049163915054,51176.081599633915,0,20,2,1516,201704062,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2474.5169139131135,3869.1205487496845,1200.0,0.0,0.0,68581.0,0,1,2,55.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,7783.227303216261,0.15208720675621124,0.11348955692125022,68581.0,10,5,10,10_0,10_3,10_0_0 +4063,2,95.0,3,0.0,5,222,6,0,77,7.0,0.0,0.0,969.0694308904046,2123.1863304518674,0.0,15186.0,0,71,1,15160,201704063,,,510.0,,0.0,3.0,5.0,0.0,1.0,1.0,3152.689112830364,0.0,720.0,0.0,0.0,25256.0,0,5,1,110.0,1,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3092.2557613422723,0.2036254287727033,0.12243648088938361,25256.0,7,4,7,7_1,7_0,7_0_0 +4064,1,59.0,3,153.0,9,120,4,0,21,8.0,0.0,0.0,897.7351533387498,203.47202333497063,0.0,10223.14,0,71,1,15161,201704064,,,270.0,,1.0,1.0,3.0,0.0,1.0,1.0,2554.0207353131555,0.0,667.0,0.0,0.0,26845.0,0,1,3,60.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1101.2071766737204,0.10771711789858306,0.04102094157845857,26845.0,7,4,7,7_1,7_1,7_0_0 +4065,0,45.0,4,0.0,99,400,1,0,63,1.0,0.0,0.0,0.0,53.079658261296686,0.0,22753.440000000002,0,50,1,15162,201704065,,,,,1.0,1.0,3.0,1.0,2.0,1.5,208.81274722588537,0.0,0.0,0.0,0.0,15927.0,0,1,5,75.0,0,0.0,2,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,53.079658261296686,0.002332819048956847,0.0033326840121364154,10618.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4066,2,32.0,3,0.0,1,221,2,52,63,7.0,0.0,0.0,1130.581002705472,0.0,2123.1863304518674,37834.2,31,44,1,15163,201704066,,,492.0,,2.0,0.0,4.0,1.0,3.0,1.8,2475.824396111133,0.0,840.0,1200.0,0.0,40711.0,1,1,2,140.0,1,3.0,4,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3253.7673331573396,0.08600069072842402,0.07992354236342364,22617.222222222223,6,3,6,6_1,6_1,6_1_0 +4067,2,36.0,3,0.0,9,112,2,56,47,6.0,0.0,0.0,1144.0403003567276,0.0,1725.0888934921422,21387.5,31,31,1,15164,201704067,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2290.719407080781,0.0,850.0,975.0,0.0,40129.0,1,1,2,125.0,8,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2869.12919384887,0.13414981619398572,0.07149764992521293,22293.888888888887,6,3,6,6_1,6_1,6_0_0 +4068,0,59.0,2,0.0,6,111,6,45,33,10.0,0.0,0.0,1803.545885268253,0.0,0.0,35278.240000000005,31,20,1,15165,201704068,,,,,2.0,1.0,3.0,0.0,2.0,1.5,2593.283177454242,0.0,1340.0,0.0,0.0,71530.0,1,1,5,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1803.545885268253,0.051123465492276615,0.02521383874274085,47686.666666666664,10,5,10,10_1,10_3,10_0_0 +4069,2,24.0,1,0.0,7,111,4,46,46,10.0,0.0,0.0,942.1508355878933,0.0,0.0,93001.4258467513,31,20,2,15166,201704069,,,,700.0,2.0,0.0,2.0,0.0,2.0,1.5,4677.517021275039,0.0,700.0,0.0,0.0,65787.0,1,1,3,47.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,942.1508355878933,0.010130498828484404,0.014321231179228316,43858.0,10,5,10,10_0,10_2,10_0_0 +4070,2,75.0,2,0.0,1,112,2,77,74,9.0,0.0,0.0,497.99401309645793,0.0,3289.1694902583513,43290.74,71,12,1,15168,201704070,,,500.0,,0.0,2.0,9.0,0.0,2.0,1.5,1397.2528702737636,0.0,370.0,1859.0,0.0,58044.0,5,5,1,183.0,10,5.0,3,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3787.163503354809,0.08748206899107776,0.06524642518356435,38696.0,9,5,9,9_1,9_2,9_1_0 +4071,2,50.0,3,0.0,1,400,5,65,38,9.0,0.0,693.9631597817199,3607.091770536506,0.0,0.0,37699.14,71,31,1,15169,201704071,,,500.0,,2.0,2.0,7.0,0.0,2.0,1.5,1681.8390186011843,0.0,2680.0,0.0,0.0,56267.0,1,1,2,172.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4301.054930318226,0.11408894023360285,0.07644009686527141,37511.333333333336,9,5,9,9_1,9_0,9_1_0 +4072,2,60.0,1,0.0,7,112,5,52,78,4.0,0.0,0.0,2592.260727631832,207.01066721905707,0.0,44764.370875301625,50,50,1,15171,201704072,,,300.0,,2.0,1.0,4.0,1.0,3.0,2.0,3005.782589946032,0.0,1926.0,0.0,0.0,34813.0,1,5,1,109.0,3,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2799.2713948508895,0.0625334689199299,0.0804087954169675,17406.5,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4073,2,54.0,4,0.0,1,112,2,43,63,4.0,0.0,0.0,1063.284514449194,0.0,0.0,22036.51691584589,41,50,1,15172,201704073,,,492.0,,3.0,1.0,7.0,2.0,4.0,2.3,1922.6262759975716,0.0,790.0,0.0,0.0,39906.0,1,1,2,150.0,9,1.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1063.284514449194,0.04825102435696694,0.026644727971963964,17350.434782608696,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +4074,2,68.0,3,0.0,1,111,2,0,78,4.0,0.0,0.0,677.0026718581577,0.0,1433.1507730550106,16312.88,0,70,1,15174,201704074,,,88.0,,0.0,2.0,5.0,0.0,1.0,1.0,944.6245665919178,0.0,503.0,810.0,0.0,18105.0,0,5,1,90.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2110.153444913168,0.12935505226012625,0.1165508668828041,18105.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +4075,2,87.0,2,0.0,1,111,2,0,77,7.0,0.0,0.0,2067.348119232863,219.39592081335965,0.0,33480.80083603497,0,70,1,15175,201704075,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2157.0953288711194,0.0,1536.0,0.0,0.0,36562.0,0,5,5,90.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2286.744040046223,0.06830015958235469,0.06254428204272805,24374.666666666668,7,4,7,7_1,7_3,7_1_0 +4076,1,28.0,3,200.0,2,300,5,0,52,6.0,0.0,249.82673752141918,1187.1100528407455,0.0,0.0,21618.741750603254,0,50,1,15177,201704076,,,800.0,,2.0,3.0,3.0,2.0,3.0,2.0,2818.6013610000177,0.0,882.0,0.0,0.0,43520.0,0,1,3,45.0,0,1.0,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1436.9367903621646,0.06646717958606763,0.03301784904324827,21760.0,6,3,6,6_1,6_1,6_0_1 +4077,2,71.0,2,0.0,8,112,1,75,43,10.0,0.0,0.0,2624.5630419948457,60.15694602946958,0.0,41586.24,33,33,1,15179,201704077,,,250.0,,1.0,3.0,5.0,0.0,2.0,1.5,1466.0716337533418,0.0,1950.0,0.0,0.0,87576.0,5,1,1,220.0,9,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2684.719988024315,0.06455789193791782,0.030655887321004785,58384.0,10,5,10,10_1,10_1,10_0_0 +4078,2,43.0,3,0.0,1,111,2,0,31,2.0,0.0,624.566843803548,679.7695194776825,0.0,1266.7359332404621,44794.64000000001,0,30,1,1518,201704078,,,276.0,,1.0,0.0,5.0,2.0,3.0,1.6,4872.69443154902,1221.0,0.0,0.0,0.0,21030.0,0,1,2,113.0,6,5.0,2,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2571.072296521693,0.05739687374475367,0.12225736074758406,13143.75,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +4079,2,60.0,4,0.0,99,111,2,0,22,1.0,0.0,0.0,0.0,0.0,0.0,9711.771191295746,0,41,2,15180,201704079,,,,,1.0,2.0,1.0,0.0,1.0,1.0,4522.660459907611,0.0,0.0,0.0,0.0,10620.0,0,1,3,30.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,10620.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +4080,2,58.0,3,0.0,2,111,4,52,63,7.0,0.0,0.0,839.8601734383507,0.0,0.0,29115.104493575058,71,50,1,15181,201704080,,,,,2.0,2.0,1.0,0.0,2.0,1.5,1759.175883356704,0.0,624.0,0.0,0.0,39725.0,1,1,2,68.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,839.8601734383507,0.028846201586660486,0.02114185458623916,26483.333333333332,7,4,7,7_1,7_3,7_0_1 +4081,2,70.0,2,0.0,5,111,3,74,74,10.0,0.0,0.0,722.7642838724267,0.0,0.0,28809.98206659737,30,20,1,15182,201704081,,,96.0,,0.0,1.0,7.0,0.0,2.0,1.5,2426.363043483802,0.0,537.0,0.0,0.0,73233.0,5,5,1,180.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,722.7642838724267,0.025087286836960862,0.009869379704128286,48822.0,10,5,10,10_1,10_2,10_0_0 +4082,2,53.0,1,0.0,8,111,2,0,38,8.0,0.0,0.0,683.1099102367866,0.0,1272.9606798411523,70143.03,0,12,1,15183,201704082,,,600.0,,2.0,0.0,4.0,2.0,3.0,2.0,741.362065960451,1227.0,0.0,0.0,0.0,56576.0,0,1,2,102.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1956.070590077939,0.027886884699419728,0.03457421150448846,28288.0,8,4,8,8_1,8_3,8_0_0 +4083,1,87.0,3,112.0,5,111,1,0,77,3.0,0.0,0.0,290.72082926712136,0.0,0.0,8049.171191295744,0,70,2,15184,201704083,,,,186.0,0.0,5.0,1.0,0.0,1.0,1.0,4340.8659801118265,0.0,216.0,0.0,0.0,15754.0,0,5,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,290.72082926712136,0.036118107362594375,0.01845377867634387,15754.0,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +4084,1,67.0,3,172.0,4,111,1,0,75,6.0,0.0,0.0,430.6975248401798,0.0,548.4898020333991,22660.442698585608,0,33,8,15185,201704084,,,67.0,185.0,1.0,2.0,5.0,1.0,3.0,2.0,5889.240061833443,0.0,320.0,310.0,0.0,42940.0,0,5,3,75.0,8,7.0,5,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,979.187326873579,0.043211306146931396,0.022803617300269655,21470.0,6,3,6,6_0,6_3,6_0_1 +4085,2,67.0,4,0.0,4,111,2,0,77,4.0,0.0,0.0,592.2090966552472,0.0,796.1948739194503,20504.60468577102,0,70,2,15186,201704085,,,250.0,321.0,0.0,1.0,3.0,0.0,1.0,1.0,2992.9937530335205,0.0,440.0,450.0,0.0,16620.0,0,5,3,58.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1388.4039705746975,0.06771181360731951,0.08353814504059552,16620.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4086,1,36.0,3,408.0,3,111,1,0,85,2.0,0.0,0.0,497.7182231065095,0.0,927.4872435028445,11073.7,0,50,2,15188,201704086,,,,,0.0,0.0,4.0,2.0,3.0,1.6,1074.493177183958,894.0,0.0,0.0,0.0,21316.0,0,7,3,80.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1425.205466609354,0.12870183106002095,0.06686083067223467,13322.5,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4087,2,52.0,4,0.0,9,120,5,0,52,2.0,0.0,1360.167793172171,839.8601734383507,164.54694061001973,0.0,14377.426162745418,0,71,1,15189,201704087,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2845.846513620418,0.0,624.0,0.0,0.0,11230.0,0,1,2,110.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2364.5749072205413,0.16446440972498916,0.21055876288695827,11230.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4088,2,69.0,3,0.0,5,112,2,77,78,6.0,956.632973510746,416.377895869032,978.4909392462836,54.84898020333991,0.0,32395.359999999997,71,50,1,1519,201704088,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2065.6002862769046,0.0,727.0,0.0,0.0,32387.0,5,5,1,96.0,5,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2406.3507888294016,0.07428072380826765,0.07429989776235532,21591.333333333332,6,3,6,6_1,6_0,6_0_0 +4089,2,36.0,3,0.0,9,120,5,63,46,7.0,0.0,0.0,942.1508355878933,0.0,0.0,22277.100000000002,50,42,1,15190,201704089,,,320.0,,2.0,0.0,5.0,3.0,5.0,2.4,931.9179531944396,0.0,700.0,0.0,0.0,59042.0,1,1,2,92.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,942.1508355878933,0.04229234665139956,0.015957298797261158,24600.833333333336,7,4,7,7_1,7_1,7_0_0 +4090,2,51.0,3,0.0,4,111,4,0,68,6.0,0.0,0.0,2718.778125553635,0.0,0.0,37383.14,0,71,1,15191,201704090,,,,,1.0,2.0,4.0,0.0,2.0,1.5,3157.051422897874,0.0,2020.0,0.0,0.0,34797.0,0,1,1,36.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2718.778125553635,0.07272738794958464,0.0781325437696823,23198.0,6,3,6,6_1,6_4,6_0_1 +4091,2,21.0,3,0.0,99,112,2,54,69,5.0,0.0,0.0,1615.1157181506744,185.7788039145384,0.0,33841.0,43,43,1,15195,201704091,,,,,2.0,0.0,4.0,0.0,2.0,1.5,565.9022751304022,0.0,1200.0,0.0,0.0,29200.0,1,1,3,90.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1800.8945220652129,0.05321635064168355,0.061674469933740164,19466.666666666668,5,3,5,5_1,5_1,5_0_0 +4092,2,55.0,1,0.0,1,112,6,56,63,3.0,2379.684013708323,0.0,726.8020731678034,123.8525359430256,0.0,34714.280000000006,50,50,1,15196,201704092,,,272.0,,2.0,3.0,6.0,0.0,2.0,1.5,1961.682728615706,0.0,540.0,0.0,0.0,22340.0,1,1,1,120.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3230.338622819152,0.0930550373742204,0.14459886404741057,14893.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4093,2,77.0,3,0.0,4,111,2,0,72,2.0,3601.2551407452625,0.0,948.8804844135212,70.77287768172891,0.0,14823.4,0,41,1,15197,201704093,,,147.0,,0.0,4.0,6.0,0.0,1.0,1.0,2391.455838078998,0.0,705.0,0.0,0.0,10870.0,0,5,1,85.0,5,4.0,1,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4620.908502840513,0.311730676014984,0.4251065779982073,10870.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +4094,2,41.0,3,0.0,8,111,2,0,38,5.0,0.0,0.0,826.4008757870951,0.0,1654.3160158104133,65030.479999999996,0,30,1,15198,201704094,,,357.0,,1.0,0.0,6.0,2.0,3.0,1.8,765.8074520267152,0.0,614.0,935.0,0.0,36200.0,0,1,1,152.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2480.7168915975085,0.0381469872527084,0.06852809092810797,20111.11111111111,5,3,5,5_1,5_4,5_0_0 +4095,2,76.0,3,0.0,9,111,4,72,75,7.0,0.0,485.77421184720396,1677.0284873464502,0.0,0.0,30642.631507289865,50,44,1,152,201704095,,,248.0,,0.0,2.0,4.0,0.0,2.0,1.5,3743.735372296475,0.0,1246.0,0.0,0.0,36401.0,5,5,1,90.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2162.802699193654,0.07058149358612116,0.05941602426289536,24267.333333333332,7,4,7,7_1,7_3,7_0_0 +4096,2,58.0,3,0.0,1,111,2,77,63,4.0,0.0,0.0,991.9502368975392,0.0,2570.8247817888027,17253.78,71,71,1,15200,201704096,,,,,1.0,5.0,4.0,0.0,2.0,1.5,1554.1969862598917,0.0,737.0,1453.0,0.0,26230.0,5,1,3,80.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3562.775018686342,0.20649243346596177,0.13582825080771413,17486.666666666668,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +4097,2,68.0,3,0.0,1,111,2,78,68,5.0,0.0,0.0,911.0423743858911,0.0,1697.7079425774502,33985.5554508391,71,71,1,15201,201704097,,,,,1.0,4.0,6.0,0.0,2.0,1.5,1727.1112037615003,1636.4116178376157,0.0,0.0,0.0,29320.0,5,1,1,100.0,7,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2608.7503169633414,0.07676056143136926,0.08897511312971833,19546.666666666668,5,3,5,5_1,5_2,5_1_0 +4098,2,43.0,2,0.0,8,112,2,42,37,9.0,0.0,0.0,807.5578590753372,0.0,1769.3219420432229,63614.219999999994,31,30,1,15202,201704098,,,600.0,,2.0,0.0,5.0,3.0,5.0,2.8,1537.3174366083997,0.0,600.0,1000.0,0.0,105077.0,1,1,1,140.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2576.87980111856,0.040507921045303395,0.02452372832416761,37527.5,9,5,9,9_1,9_0,9_0_0 +4099,2,37.0,2,0.0,1,111,2,67,45,7.0,0.0,0.0,807.5578590753372,0.0,1433.1507730550106,57589.125846751296,31,20,1,15204,201704099,,,360.0,,2.0,0.0,7.0,2.0,4.0,2.1,502.5591960858014,0.0,600.0,810.0,0.0,52045.0,1,1,2,150.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2240.7086321303477,0.038908536970903684,0.04305329296052162,24783.333333333332,7,4,7,7_1,7_3,7_1_0 +4100,2,25.0,2,0.0,2,300,5,42,62,8.0,0.0,0.0,1499.365758349876,0.0,0.0,65167.09087530163,0,60,2,15205,201704100,,,528.0,,2.0,0.0,4.0,1.0,3.0,1.8,3070.589146653539,0.0,1114.0,0.0,0.0,51488.0,1,1,3,85.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1499.365758349876,0.023008020431952974,0.029120683622395043,28604.444444444445,8,4,8,8_0,8_1,8_0_1 +4101,2,41.0,2,0.0,3,111,6,43,33,10.0,0.0,0.0,1978.5167547345761,0.0,0.0,79871.78963816256,20,12,1,15206,201704101,,,223.0,,2.0,0.0,7.0,3.0,5.0,2.4,1609.4865380346055,0.0,1470.0,0.0,0.0,95309.0,1,1,2,170.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1978.5167547345761,0.024771158423990604,0.020758970870899663,39712.083333333336,9,5,9,9_1,9_2,9_0_1 +4102,2,60.0,2,0.0,6,112,5,86,74,9.0,1189.8420068541616,346.98157989085996,807.5578590753372,0.0,0.0,34612.3280158789,10,31,1,15207,201704102,,,110.0,,0.0,2.0,6.0,0.0,2.0,1.5,1709.0532840272408,0.0,600.0,0.0,0.0,58530.0,6,5,1,160.0,10,2.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2344.3814458203587,0.06773255600561859,0.040054355814460256,39020.0,9,5,9,9_1,9_1,9_0_0 +4103,2,45.0,1,0.0,1,111,2,67,63,6.0,0.0,0.0,720.0724243421756,0.0,2726.5251126886064,35915.82,71,71,1,15208,201704103,,,234.0,,3.0,0.0,4.0,1.0,3.0,2.0,3034.4293995822118,0.0,535.0,1541.0,0.0,44138.0,1,1,2,100.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3446.597537030782,0.09596321445621406,0.07808685343764515,22069.0,6,3,6,6_1,6_2,6_1_0 +4104,2,63.0,3,0.0,2,211,2,75,78,5.0,158.64560091388822,0.0,740.261370819059,0.0,1654.3160158104133,31094.262382591492,50,71,1,15209,201704104,,,363.0,,0.0,3.0,4.0,0.0,2.0,1.5,953.162667781887,0.0,550.0,935.0,0.0,33805.0,5,5,3,106.0,4,3.0,3,2,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2553.2229875433604,0.08211235102244503,0.07552796886683509,22536.666666666668,6,3,6,6_1,6_1,6_0_1 +4105,1,36.0,4,350.0,99,221,2,0,56,1.0,0.0,0.0,336.4824412813905,0.0,1592.3897478389006,14986.66,0,71,2,1521,201704105,,,,,1.0,1.0,3.0,2.0,3.0,1.8,774.7348976698121,0.0,250.0,900.0,0.0,16326.0,0,4,3,70.0,1,2.0,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1928.872189120291,0.1287059417588903,0.11814726136961234,9070.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +4106,1,36.0,3,460.0,1,112,6,22,22,2.0,872.5508050263852,0.0,1370.156500897822,88.46609710216114,0.0,9411.46,60,30,1,15210,201704106,,,610.0,,2.0,0.0,4.0,3.0,5.0,2.4,2303.2409370582395,0.0,1018.0,0.0,0.0,26340.0,4,4,3,120.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2331.1734030263688,0.24769519320343167,0.08850316640191225,10975.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +4107,2,65.0,3,0.0,1,111,2,74,74,10.0,0.0,0.0,1117.1217050542164,0.0,1298.6823054597255,67253.18,20,30,1,15213,201704107,,,218.0,,0.0,2.0,10.0,0.0,2.0,1.5,6540.01572928357,0.0,830.0,734.0,0.0,101401.0,5,5,1,247.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2415.8040105139416,0.03592103764482128,0.02382426219183185,67600.66666666667,10,5,10,10_1,10_2,10_1_0 +4108,2,77.0,2,0.0,4,400,2,0,77,6.0,0.0,0.0,580.0957287691172,3727.9613318850706,0.0,10047.640000000001,0,41,1,15214,201704108,,,219.0,,0.0,5.0,6.0,0.0,1.0,1.0,2121.577578663917,0.0,431.0,0.0,0.0,20510.0,0,5,1,96.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4308.057060654188,0.42876307875821457,0.21004666312307108,20510.0,5,3,5,5_1,5_0,5_0_1 +4109,1,54.0,4,72.0,2,400,5,67,69,3.0,0.0,0.0,121.13367886130058,159.23897478389006,0.0,9286.58,50,50,1,15215,201704109,,,,,2.0,3.0,3.0,0.0,2.0,1.5,1615.1331874686311,0.0,90.0,0.0,0.0,21404.0,4,1,3,50.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,280.37265364519067,0.030191163339484576,0.013099077445579829,14269.333333333334,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +4110,2,42.0,3,0.0,1,112,4,0,43,5.0,0.0,0.0,1520.900634591885,150.39236507367394,0.0,21888.36,0,31,1,15216,201704110,,,160.0,,1.0,0.0,7.0,0.0,1.0,1.0,2443.8018765551055,0.0,1130.0,0.0,0.0,20727.0,0,1,2,141.0,4,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1671.292999665559,0.07635533222523565,0.08063361797006605,20727.0,5,3,5,5_1,5_0,5_1_0 +4111,1,45.0,4,150.0,9,211,5,54,67,3.0,0.0,416.377895869032,1345.929765125562,106.15931652259337,0.0,30062.430875301627,41,50,1,15217,201704111,,,273.0,,2.0,0.0,5.0,2.0,4.0,2.3,2836.2136575956,0.0,1000.0,0.0,0.0,32677.0,1,1,3,110.0,1,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1868.4669775171874,0.062152890605139406,0.05717988118606933,14207.391304347828,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +4112,1,25.0,3,84.0,6,111,4,0,43,5.0,0.0,0.0,866.7787687408619,0.0,0.0,12591.74,0,50,2,15218,201704112,,,,426.0,1.0,0.0,2.0,0.0,1.0,1.0,3875.5916422797854,0.0,644.0,0.0,0.0,20948.0,0,1,3,48.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,866.7787687408619,0.06883709231137729,0.04137763837792925,20948.0,5,3,5,5_0,5_3,5_0_0 +4113,2,59.0,2,0.0,4,112,2,74,34,10.0,1903.7472109666587,832.755791738064,3343.9561173507177,0.0,3221.6570377959997,44722.80108466862,30,30,1,15219,201704113,,,,,1.0,4.0,7.0,0.0,2.0,1.5,1809.3884862172101,3105.3380108087604,1200.0,0.0,0.0,58576.0,5,1,1,180.0,8,0.0,3,3,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,9302.11615785144,0.20799493619017279,0.15880422285324092,39050.666666666664,9,5,9,9_1,9_0,9_0_1 +4114,2,73.0,3,0.0,99,111,2,0,72,8.0,0.0,0.0,524.9126083989692,0.0,1716.2422837819263,29697.139999999996,0,41,3,1522,201704114,,,,1200.0,0.0,2.0,2.0,0.0,1.0,1.0,4472.68508729661,0.0,390.0,970.0,0.0,29365.0,0,5,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2241.1548921808953,0.07546702787476826,0.07632061611377133,29365.0,8,4,8,8_0,8_4,8_0_0 +4115,2,61.0,3,0.0,6,111,2,77,37,10.0,0.0,0.0,807.5578590753372,0.0,0.0,31904.800315994114,60,41,2,15221,201704115,,,,850.0,1.0,5.0,3.0,0.0,2.0,1.5,2706.7898610392185,0.0,600.0,0.0,0.0,69310.0,4,1,3,65.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.025311484512582968,0.011651390262232539,46206.666666666664,10,5,10,10_0,10_2,10_0_0 +4116,2,38.0,3,0.0,9,112,5,63,68,5.0,713.905204112497,138.792631956344,1130.581002705472,0.0,0.0,24623.550000000003,43,50,1,15222,201704116,,,222.0,,2.0,0.0,5.0,2.0,4.0,2.1,2235.1410161537137,0.0,840.0,0.0,0.0,40143.0,1,1,2,110.0,9,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1983.278838774313,0.08054398487522363,0.049405346854353514,19115.714285714286,5,3,5,5_1,5_0,5_0_0 +4117,2,56.0,4,0.0,5,111,2,0,42,8.0,0.0,0.0,1776.6272899657417,0.0,0.0,18184.079999999998,0,50,2,15224,201704117,,,,680.0,1.0,2.0,2.0,0.0,1.0,1.0,2566.0824070868593,0.0,1320.0,0.0,0.0,30267.0,0,1,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1776.6272899657417,0.09770234677617685,0.058698493077138196,30267.0,8,4,8,8_0,8_4,8_0_0 +4118,2,62.0,2,0.0,1,112,2,63,78,7.0,1586.456009138882,0.0,0.0,159.23897478389006,0.0,30407.520000000004,50,50,1,15227,201704118,,,,,1.0,2.0,5.0,0.0,2.0,1.5,2694.2072864890224,0.0,0.0,0.0,0.0,35481.0,5,5,5,140.0,7,0.0,3,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1745.6949839227723,0.05740997568768423,0.04920083943301407,23654.0,6,3,6,6_1,6_0,6_1_0 +4119,2,51.0,2,0.0,6,400,2,85,38,8.0,0.0,97.1548423694408,1079.4356716307007,0.0,0.0,26072.34039494011,50,50,1,15228,201704119,,,,,1.0,1.0,7.0,0.0,2.0,1.5,1999.5202629284888,0.0,802.0,0.0,0.0,48730.0,7,1,1,250.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1176.5905140001414,0.045127920860855424,0.02414509571106385,32486.666666666668,9,5,9,9_1,9_0,9_0_0 +4120,2,53.0,2,0.0,5,111,2,64,54,9.0,0.0,0.0,807.5578590753372,0.0,1741.0127909705313,35699.95264189764,71,50,2,15229,201704120,,,,,2.0,1.0,3.0,0.0,2.0,1.5,2203.995651112763,0.0,600.0,984.0,0.0,51814.0,1,1,1,73.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2548.5706500458687,0.07138862831584974,0.049186911839384506,34542.666666666664,9,5,9,9_0,9_3,9_0_0 +4121,2,37.0,3,0.0,9,111,4,0,47,7.0,0.0,0.0,979.8368690114091,0.0,0.0,19232.715052882573,0,31,2,1523,201704121,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4133.115367294492,0.0,728.0,0.0,0.0,25521.0,0,1,3,43.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,979.8368690114091,0.05094636229555912,0.03839335719648169,25521.0,7,4,7,7_0,7_3,7_0_0 +4122,1,24.0,5,329.0,99,111,1,65,81,1.0,0.0,0.0,250.5293069328068,0.0,466.8559950517674,14093.26,70,71,2,15230,201704122,,,,,2.0,2.0,3.0,0.0,2.0,1.5,3758.348768826872,450.0,0.0,0.0,0.0,13371.0,4,4,3,65.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,717.3853019845742,0.0509027224350203,0.05365232981710973,8914.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4123,2,55.0,3,0.0,8,120,4,64,42,7.0,63.458240365555284,48.5774211847204,2333.8422127277245,0.0,0.0,40786.66,50,31,1,15231,201704123,,,400.0,,3.0,1.0,6.0,2.0,4.0,2.5,1953.6708396649758,0.0,1734.0,0.0,0.0,61653.0,1,1,2,100.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2445.877874278,0.05996759416627887,0.0396716765490406,24661.2,7,4,7,7_1,7_0,7_0_0 +4124,2,41.0,1,0.0,1,111,1,31,37,8.0,0.0,0.0,807.5578590753372,0.0,0.0,57172.18,0,0,2,15233,201704124,,,,500.0,2.0,0.0,3.0,2.0,4.0,2.1,1402.5882876127089,0.0,600.0,0.0,0.0,62370.0,1,1,3,65.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,807.5578590753372,0.014125014282739214,0.012947857288365195,29700.0,8,4,8,8_0,8_4,8_1_0 +4125,1,67.0,3,65.0,4,111,2,0,78,2.0,0.0,0.0,269.1859530251124,0.0,401.6360808438116,11338.62,0,70,2,15234,201704125,,,,299.0,0.0,2.0,4.0,0.0,1.0,1.0,2953.7171138047806,0.0,200.0,227.0,0.0,13037.0,0,5,3,67.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,670.822033868924,0.059162581854663436,0.05145524536848385,13037.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4126,2,29.0,4,0.0,5,400,2,85,45,9.0,0.0,0.0,234.19177913184777,44.23304855108057,0.0,39080.26,30,41,1,15235,201704126,,,150.0,620.0,1.0,0.0,6.0,0.0,2.0,1.5,3349.78416244141,0.0,174.0,0.0,0.0,50860.0,4,1,3,109.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,278.42482768292837,0.007124436420917577,0.005474337941072127,33906.666666666664,9,5,9,9_1,9_0,9_0_0 +4127,1,55.0,3,16.0,6,111,2,0,56,2.0,0.0,0.0,259.76444466923346,0.0,909.4314782102166,13977.617171918204,0,71,2,15236,201704127,,,,379.0,1.0,0.0,3.0,0.0,1.0,1.0,2150.294466476289,0.0,193.0,514.0,0.0,11675.0,0,1,3,53.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1169.19592287945,0.08364772825717595,0.10014526106033834,11675.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4128,1,32.0,2,494.0,9,111,2,0,46,5.0,0.0,0.0,2131.95274795889,0.0,0.0,23184.400000000005,0,41,2,15237,201704128,,,,152.0,1.0,0.0,5.0,3.0,4.0,1.9,1048.0904436193919,0.0,1584.0,0.0,0.0,36222.0,0,1,3,100.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2131.95274795889,0.09195634771479484,0.05885795229305091,19064.21052631579,5,3,5,5_0,5_3,5_0_0 +4129,2,46.0,3,0.0,6,112,1,68,65,6.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,28460.0369698924,50,71,2,15238,201704129,,,,760.0,2.0,4.0,4.0,1.0,3.0,2.0,1913.3353593480972,600.0,0.0,0.0,0.0,44166.0,1,1,3,84.0,10,5.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,956.5137359794323,0.03360901241946098,0.021657241678653995,22083.0,6,3,6,6_0,6_2,6_0_0 +4130,2,41.0,4,0.0,1,111,6,33,64,5.0,0.0,0.0,1718.7530045918772,0.0,443.9369901444342,27533.924035245414,43,71,1,1524,201704130,,,480.0,,2.0,0.0,4.0,2.0,4.0,2.1,1656.806990646387,427.90849358771476,1100.0,0.0,0.0,42886.0,1,1,2,115.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2162.6899947363113,0.07854637762376011,0.0504288111443434,20421.90476190476,5,3,5,5_1,5_3,5_1_0 +4131,2,54.0,3,0.0,1,111,1,0,55,2.0,0.0,0.0,296.1045483276236,0.0,176.9321942043223,15188.48,0,71,2,15240,201704131,,,,312.0,1.0,2.0,2.0,0.0,1.0,1.0,2362.854620880622,0.0,220.0,100.0,0.0,12150.0,0,4,3,45.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,473.0367425319459,0.031144442533548183,0.03893306522896674,12150.0,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +4132,1,40.0,4,461.0,99,111,1,0,85,1.0,0.0,0.0,1749.7086946632305,0.0,0.0,11486.24,0,71,2,15241,201704132,,,,,0.0,0.0,4.0,3.0,4.0,2.3,924.6252432241438,0.0,1300.0,0.0,0.0,20022.0,0,6,3,80.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1749.7086946632305,0.1523308493173772,0.08738930649601591,8705.217391304348,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4133,2,62.0,3,0.0,5,300,2,78,77,5.0,0.0,1734.9078994543,1294.7844340507907,226.47320858153253,0.0,32738.880315994116,50,60,1,15242,201704133,,,257.0,,0.0,2.0,5.0,0.0,2.0,1.5,2252.155917121633,0.0,962.0,0.0,0.0,31039.0,5,5,1,150.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3256.165542086623,0.09945867148351649,0.10490562009364422,20692.666666666668,5,3,5,5_1,5_0,5_0_0 +4134,2,33.0,3,0.0,9,112,4,43,47,9.0,0.0,0.0,2009.473139332464,0.0,0.0,37855.880000000005,20,43,1,15245,201704134,,,440.0,,2.0,0.0,4.0,1.0,3.0,1.8,1737.9391569449485,0.0,1493.0,0.0,0.0,67231.0,4,1,2,93.0,8,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2009.473139332464,0.0530821932902488,0.029889085977190043,37350.555555555555,9,5,9,9_1,9_1,9_0_0 +4135,2,81.0,1,0.0,4,111,1,75,74,10.0,0.0,0.0,592.2090966552472,0.0,2087.799891611003,40629.62175060326,60,42,2,15246,201704135,,,,,0.0,4.0,3.0,0.0,2.0,1.5,1981.1834110779143,0.0,440.0,1180.0,0.0,63559.0,5,5,1,83.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2680.0089882662505,0.06596194778078282,0.04216568838821017,42372.666666666664,10,5,10,10_0,10_3,10_0_1 +4136,2,37.0,4,0.0,6,300,4,52,33,5.0,0.0,381.679737879946,2530.3479584360566,180.47083808840873,0.0,32501.828161188147,50,20,1,15247,201704136,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,2177.938192832712,0.0,1880.0,0.0,0.0,41550.0,1,1,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3092.498534404411,0.09514844885240328,0.07442836424559353,19785.714285714286,5,3,5,5_1,5_0,5_0_0 +4137,2,69.0,1,0.0,1,111,2,74,74,10.0,0.0,0.0,952.9182737088979,0.0,1827.7095661306494,57323.840000000004,12,30,2,15248,201704137,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2176.2307048984258,0.0,708.0,1033.0,0.0,98062.0,5,5,1,105.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2780.627839839547,0.04850735470337554,0.02835581407517231,65374.666666666664,10,5,10,10_0,10_4,10_1_0 +4138,2,60.0,2,0.0,5,400,6,0,35,6.0,0.0,0.0,2450.0364112282386,53.079658261296686,637.8880934836079,28938.953916203165,0,41,1,1525,201704138,,,458.0,,1.0,1.0,5.0,0.0,1.0,1.0,2460.9771844918073,614.8569261401345,1566.0,0.0,0.0,21118.0,0,1,1,115.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3141.004162973143,0.10853896696018678,0.1487358728560064,21118.0,5,3,5,5_1,5_0,5_0_0 +4139,2,38.0,4,0.0,1,300,5,43,62,4.0,0.0,596.8083174122792,1763.1679923144861,0.0,0.0,38506.22031640679,50,43,1,15250,201704139,,,200.0,,2.0,0.0,7.0,3.0,5.0,2.8,1858.1720647628456,0.0,1310.0,0.0,0.0,45363.0,1,1,3,180.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2359.976309726765,0.061288183839773615,0.052024255664897934,16201.07142857143,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4140,2,64.0,3,0.0,5,111,2,77,75,3.0,0.0,0.0,821.0171567265928,0.0,1691.471776593321,25926.96,50,50,1,15251,201704140,,,290.0,,0.0,2.0,4.0,0.0,2.0,1.5,2013.40894154291,0.0,610.0,956.0,0.0,23310.0,5,5,1,97.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2512.488933319914,0.09690642224618366,0.10778588302530734,15540.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +4141,2,31.0,3,0.0,9,111,2,46,34,7.0,0.0,0.0,672.5320061662902,0.0,1253.2489822723,35072.020000000004,30,0,1,15252,201704141,,,352.0,,2.0,0.0,4.0,2.0,4.0,2.1,2416.318903156734,1208.0,0.0,0.0,0.0,53090.0,1,1,2,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1925.7809884385902,0.054909326250344004,0.03627389317081541,25280.95238095238,7,4,7,7_1,7_3,7_0_0 +4142,2,68.0,3,0.0,6,112,6,0,74,9.0,0.0,0.0,2691.859530251124,88.46609710216114,0.0,46548.600000000006,0,20,1,15253,201704142,,,100.0,,1.0,2.0,5.0,1.0,2.0,1.5,5855.376543486983,0.0,2000.0,0.0,0.0,60875.0,0,5,1,180.0,7,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2780.325627353285,0.059729521991064925,0.04567270024399647,40583.333333333336,9,5,9,9_1,9_1,9_0_0 +4143,2,45.0,2,0.0,5,112,5,38,38,9.0,0.0,693.9631597817199,3997.411402422919,247.7050718860512,0.0,78766.84,12,12,1,15254,201704143,,,588.0,,2.0,1.0,7.0,3.0,5.0,2.6,1705.1654134328637,0.0,2970.0,0.0,0.0,104116.0,1,1,1,120.0,9,2.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4939.07963409069,0.06270506261379395,0.04743823844645098,40044.61538461538,9,5,9,9_1,9_1,9_0_0 +4144,2,73.0,2,0.0,1,112,2,71,71,9.0,1445.2614243255216,69.396315978172,2826.45250676368,185.7788039145384,0.0,43619.64,33,44,1,15255,201704144,,,170.0,,0.0,3.0,9.0,0.0,2.0,1.5,1347.0570323414456,0.0,2100.0,0.0,0.0,45919.0,5,5,1,150.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4526.889050981912,0.1037809814794875,0.098584225505388,30612.666666666668,8,4,8,8_1,8_0,8_1_0 +4145,2,33.0,3,0.0,99,111,1,0,67,2.0,0.0,0.0,549.1393441712293,0.0,594.492172526523,17260.05665845403,0,71,2,15256,201704145,,,,510.0,1.0,0.0,3.0,1.0,2.0,1.3,874.2372023139209,0.0,408.0,336.0,0.0,17390.0,0,1,3,64.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1143.6315166977522,0.06625885067055085,0.06576374449095758,13376.923076923076,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +4146,2,46.0,3,0.0,1,300,4,13,13,9.0,0.0,0.0,4979.940130964579,0.0,0.0,28705.68031599412,20,31,1,15257,201704146,,,460.0,,2.0,0.0,5.0,1.0,3.0,1.8,1939.2557177564772,0.0,3700.0,0.0,0.0,66740.0,1,1,2,150.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4979.940130964579,0.1734827419571685,0.07461702323890589,37077.777777777774,9,5,9,9_1,9_0,9_1_0 +4147,2,27.0,4,0.0,99,111,2,0,63,8.0,0.0,0.0,506.62593179745375,0.0,944.0865677713518,33571.85087530163,0,44,2,15258,201704147,,,,,1.0,0.0,2.0,0.0,1.0,1.0,12390.08227183443,910.0,0.0,0.0,0.0,29950.0,0,1,2,52.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1450.7124995688055,0.04321216917581615,0.048437813007305694,29950.0,8,4,8,8_0,8_2,8_0_0 +4148,2,50.0,5,0.0,1,111,2,0,21,9.0,0.0,0.0,1292.0925745205395,0.0,973.1270681237726,25466.9,0,50,1,15259,201704148,,,100.0,,1.0,3.0,3.0,0.0,1.0,1.0,3159.4835774600524,0.0,960.0,550.0,0.0,42239.0,0,4,2,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2265.219642644312,0.08894760032215589,0.05362862858127115,42239.0,10,5,10,10_1,10_4,10_1_0 +4149,2,53.0,2,0.0,8,111,3,85,48,6.0,0.0,0.0,3634.010365839017,0.0,0.0,57797.82,42,31,1,15260,201704149,,,738.0,,1.0,0.0,4.0,2.0,4.0,2.3,1694.4956162276308,0.0,2700.0,0.0,0.0,53053.0,6,1,1,130.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3634.010365839017,0.06287452305016032,0.06849773558213516,23066.521739130436,6,3,6,6_1,6_2,6_0_0 +4150,2,56.0,3,0.0,1,120,6,77,67,8.0,0.0,1020.1258448791283,1063.284514449194,44.23304855108057,0.0,18871.24,50,50,1,15261,201704150,,,131.0,,1.0,2.0,5.0,0.0,2.0,1.5,1603.168185312215,0.0,790.0,0.0,0.0,40133.0,5,1,1,100.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2127.6434078794027,0.11274528901542255,0.053014810950574406,26755.333333333332,7,4,7,7_1,7_0,7_1_0 +4151,2,37.0,3,0.0,2,111,5,63,43,8.0,0.0,763.359475759892,1850.6534270476477,0.0,0.0,54552.23999999999,50,33,1,15262,201704151,,,444.0,,2.0,0.0,5.0,2.0,4.0,2.1,2801.14769393117,0.0,1375.0,0.0,0.0,56598.0,1,1,2,120.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2614.01290280754,0.04791760893425348,0.046185605548032437,26951.42857142857,7,4,7,7_1,7_3,7_0_1 +4152,2,40.0,2,0.0,9,120,2,54,23,10.0,0.0,0.0,1978.5167547345761,0.0,1981.6405750884096,109262.78,42,31,1,15263,201704152,,,450.0,,2.0,0.0,10.0,2.0,4.0,2.1,2495.4911224675657,0.0,1470.0,1120.0,0.0,180743.0,1,1,2,170.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3960.157329822986,0.036244339836703644,0.021910432657546827,86068.09523809524,10,5,10,10_1,10_1,10_0_0 +4153,2,26.0,3,0.0,1,300,2,0,62,8.0,0.0,0.0,726.8020731678034,0.0,3206.01135898232,20848.176658454027,0,43,1,15264,201704153,,,110.0,554.0,1.0,0.0,4.0,0.0,1.0,1.0,3659.710874148012,0.0,540.0,1812.0,0.0,28810.0,0,1,3,95.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3932.8134321501234,0.1886406421328625,0.1365086231221841,28810.0,8,4,8,8_1,8_0,8_1_0 +4154,2,62.0,3,0.0,9,400,5,56,77,9.0,0.0,638.4461069991823,1114.4298455239652,138.0071114793714,0.0,22958.16,70,70,1,15266,201704154,,,330.0,,1.0,3.0,4.0,0.0,2.0,1.5,2370.1158959939103,0.0,828.0,0.0,0.0,46988.0,1,5,2,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1890.883064002519,0.08236213459626203,0.040241829062793034,31325.333333333332,8,4,8,8_1,8_0,8_0_0 +4155,2,57.0,1,0.0,7,112,5,46,38,10.0,0.0,346.98157989085996,1292.0925745205395,3184.779495677801,0.0,39342.9306523105,42,31,1,15267,201704155,,,360.0,,2.0,1.0,8.0,0.0,2.0,1.5,1492.4498455855744,0.0,960.0,0.0,0.0,137356.0,1,1,1,124.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4823.8536500892005,0.1226104301359642,0.03511935153971578,91570.66666666667,10,5,10,10_1,10_0,10_0_0 +4156,1,32.0,4,930.0,4,111,2,0,85,3.0,0.0,0.0,538.3719060502248,0.0,1415.4575536345783,23836.0,0,71,2,15269,201704156,,,480.0,,0.0,0.0,3.0,3.0,4.0,1.9,978.6623379154355,0.0,400.0,800.0,0.0,25500.0,0,6,3,50.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1953.8294596848032,0.08196968701480127,0.07662076312489424,13421.052631578948,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4157,1,67.0,4,468.0,1,300,2,85,86,2.0,0.0,0.0,2695.8973195465005,226.47320858153253,0.0,34059.96,71,50,1,1527,201704157,,,700.0,,1.0,3.0,6.0,2.0,5.0,2.6,803.6845868372125,0.0,2003.0,0.0,0.0,31591.0,6,5,3,140.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2922.370528128033,0.08580076218903467,0.09250642677117005,12150.384615384615,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +4158,2,77.0,2,0.0,1,400,2,75,75,9.0,1494.441560608827,0.0,2527.0647507079134,0.0,2150.8575103897006,51008.36435680918,41,70,1,15270,201704158,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1887.2727447560226,2073.200065831951,1020.0,0.0,0.0,49305.0,5,5,5,180.0,0,0.0,3,8,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6172.363821706442,0.12100689562460915,0.12518738103045213,32870.0,9,5,9,9_1,9_0,9_1_0 +4159,2,46.0,1,0.0,2,111,1,33,34,1.0,0.0,0.0,3287.524166134884,0.0,1524.1516018893478,29365.40282943452,41,10,8,15271,201704159,999999.0,1930.0,,80.0,2.0,0.0,2.0,0.0,2.0,1.5,2677.4507675249674,804.0,2110.0,390.0,0.0,11930.0,1,1,3,45.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4811.675768024232,0.16385526178449802,0.4033257140003547,7953.333333333333,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +4160,2,36.0,3,0.0,1,111,4,0,68,4.0,0.0,0.0,952.9182737088979,0.0,0.0,9946.465846751302,0,43,2,15274,201704160,,,,,1.0,1.0,1.0,0.0,1.0,1.0,2717.090005880916,0.0,708.0,0.0,0.0,17815.0,0,1,3,25.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,952.9182737088979,0.09580470977237995,0.053489658922755985,17815.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +4161,2,89.0,2,0.0,7,111,4,0,77,7.0,0.0,0.0,323.1333555838892,0.0,421.5680720363814,21214.7018939346,0,60,1,15275,201704161,,,173.0,,0.0,2.0,4.0,0.0,1.0,1.0,2341.1113330675785,406.3472129030625,72.0,0.0,0.0,25896.0,0,5,1,120.0,6,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,744.7014276202706,0.035103082350319746,0.02875739216945747,25896.0,7,4,7,7_1,7_2,7_0_0 +4162,2,42.0,3,0.0,9,112,5,0,46,5.0,0.0,638.4461069991823,1278.633276869284,233.5504963497054,0.0,26076.359999999997,0,20,1,15276,201704162,,,300.0,,1.0,0.0,5.0,3.0,4.0,2.1,2605.402923684446,0.0,950.0,0.0,0.0,38460.0,0,1,2,95.0,8,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2150.629880218172,0.08247431314102782,0.055918613630217676,18314.285714285714,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4163,1,26.0,4,241.0,9,111,2,69,69,1.0,0.0,0.0,1138.5165170613109,0.0,2121.6011330685874,34877.03999999999,50,50,2,15277,201704163,,,,384.0,2.0,0.0,5.0,3.0,5.0,2.4,2426.3622787359877,2045.0,0.0,0.0,0.0,24033.0,4,1,3,98.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3260.1176501298983,0.09347460822735813,0.13565171431489612,10013.75,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4164,2,37.0,3,0.0,99,111,2,0,46,6.0,0.0,0.0,890.7708690944243,0.0,1659.9324268507285,19238.5,0,31,1,15279,201704164,,,,,1.0,0.0,4.0,1.0,2.0,1.3,2605.4892660589517,1600.0,0.0,0.0,0.0,30820.0,0,1,3,70.0,6,5.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2550.7032959451526,0.13258327291343674,0.0827613009716143,23707.69230769231,6,3,6,6_1,6_2,6_0_0 +4165,2,71.0,1,0.0,1,112,4,0,78,5.0,0.0,0.0,1473.7930928124904,353.8643884086446,0.0,20823.12,0,71,1,1528,201704165,,,200.0,,0.0,3.0,5.0,0.0,1.0,1.0,2202.4601815813767,0.0,1095.0,0.0,0.0,21620.0,0,5,1,117.0,8,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1827.657481221135,0.0877705877515538,0.08453549866887766,21620.0,6,3,6,6_1,6_1,6_1_0 +4166,2,47.0,1,0.0,9,111,2,38,34,10.0,0.0,0.0,1736.249397011975,0.0,2919.381204371318,86139.84,20,20,1,15280,201704166,,,660.0,,2.0,0.0,7.0,2.0,4.0,2.1,1389.6894840463615,0.0,1290.0,1650.0,0.0,98989.0,4,1,2,145.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4655.630601383293,0.05404735603622311,0.04703179748642064,47137.619047619046,10,5,10,10_1,10_3,10_0_0 +4167,2,86.0,3,0.0,4,111,2,0,78,3.0,0.0,0.0,613.7439728972563,0.0,54.84898020333991,9594.0,0,71,1,15281,201704167,,,,,0.0,3.0,5.0,0.0,1.0,1.0,3372.376806908434,0.0,456.0,31.0,0.0,15041.0,0,5,1,85.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,668.5929531005962,0.06968865469049366,0.04445136314743675,15041.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +4168,2,42.0,2,0.0,1,221,2,0,22,3.0,0.0,0.0,1345.929765125562,56.61830214538313,0.0,26384.640000000003,0,20,1,15282,201704168,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2866.041267759299,0.0,1000.0,0.0,0.0,16849.0,0,1,2,110.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1402.548067270945,0.053157748874759894,0.083242214212769,16849.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +4169,2,41.0,1,0.0,1,400,5,42,43,9.0,793.228004569441,444.1364222603008,2095.0493125995795,159.23897478389006,51.62058024935282,46426.84186456341,30,30,1,15283,201704169,,,888.0,,2.0,2.0,10.0,1.0,3.0,2.0,3013.3053103424245,49.75680157996683,1536.0,0.0,0.0,66528.0,1,1,2,250.0,0,1.0,4,7,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3543.273294462564,0.0763194986382881,0.053259879967270385,33264.0,9,5,9,9_1,9_1,9_1_0 +4170,0,65.0,3,0.0,99,111,2,56,78,5.0,0.0,0.0,123.8255383915517,0.0,203.47202333497063,24215.92,50,71,1,15286,201704170,,,26.0,,1.0,4.0,5.0,0.0,2.0,1.5,1139.2438934485936,0.0,92.0,115.0,0.0,28330.0,5,5,5,160.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,327.2975617265223,0.013515801246722088,0.011553037830092563,18886.666666666668,5,3,5,5_1,5_3,5_0_0 +4171,2,46.0,2,0.0,5,111,5,0,12,5.0,0.0,41.637789586903196,874.8543473316153,176.75526201011795,0.0,43850.71569949955,0,43,1,15287,201704171,,,400.0,,1.0,1.0,4.0,1.0,3.0,1.8,3547.789698042163,0.0,650.0,0.0,0.0,36252.0,0,1,2,110.0,6,4.0,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1093.2473989286364,0.024931118716977133,0.030156885107818502,20140.0,5,3,5,5_1,5_2,5_0_0 +4172,2,43.0,3,0.0,9,112,4,21,45,7.0,0.0,0.0,2197.9033064500427,0.0,0.0,73249.70000000003,43,30,1,15288,201704172,,,369.0,,2.0,0.0,8.0,2.0,4.0,2.3,3075.7702465950224,0.0,1633.0,0.0,0.0,56051.0,1,1,2,190.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2197.9033064500427,0.030005628780050184,0.039212561889173124,24370.000000000004,7,4,7,7_1,7_0,7_0_0 +4173,1,41.0,3,324.0,99,111,1,0,53,8.0,0.0,0.0,565.290501352736,0.0,0.0,8486.6,0,71,2,15289,201704173,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4524.369311703898,0.0,420.0,0.0,0.0,28928.0,0,1,3,48.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,565.290501352736,0.0666097732133877,0.019541292220434735,28928.0,8,4,8,8_0,8_3,8_0_0 +4174,2,44.0,1,0.0,6,112,4,0,53,6.0,0.0,0.0,532.9881869897225,0.0,0.0,11839.307533755658,0,30,1,1529,201704174,,,,,1.0,2.0,3.0,0.0,1.0,1.0,3306.837293024762,0.0,396.0,0.0,0.0,23799.0,0,1,2,63.0,8,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,532.9881869897225,0.04501852709460351,0.02239540262152706,23799.0,6,3,6,6_1,6_1,6_0_0 +4175,2,53.0,2,0.0,1,112,2,63,46,6.0,3747.2090935860397,0.0,861.3950496803596,106.15931652259337,0.0,38198.32,50,50,1,15290,201704175,,,,,2.0,1.0,5.0,1.0,3.0,2.0,1887.4329286316056,0.0,640.0,0.0,0.0,44420.0,1,1,5,120.0,8,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4714.763459788993,0.12342855549115754,0.10614055515058517,22210.0,6,3,6,6_1,6_0,6_1_0 +4176,1,20.0,3,177.0,1,111,1,0,84,1.0,0.0,0.0,646.0462872602698,0.0,0.0,22064.150875301628,0,41,2,15291,201704176,,,,393.0,0.0,0.0,1.0,0.0,1.0,1.0,4865.491997500476,0.0,480.0,0.0,0.0,4200.0,0,3,3,26.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,646.0462872602698,0.02928036029627802,0.1538205445857785,4200.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +4177,2,59.0,1,0.0,9,112,4,56,78,7.0,0.0,0.0,1709.3308017094637,0.0,0.0,27390.437171918205,50,50,1,15292,201704177,,,125.0,,1.0,2.0,4.0,0.0,2.0,1.5,1795.2421862714846,0.0,1270.0,0.0,0.0,40998.0,1,5,1,107.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1709.3308017094637,0.062406116082803505,0.04169302896993667,27332.0,8,4,8,8_1,8_1,8_0_0 +4178,2,29.0,1,0.0,1,111,4,0,38,9.0,0.0,0.0,1130.581002705472,0.0,0.0,39608.380000000005,0,12,2,15293,201704178,,,168.0,595.0,1.0,0.0,2.0,0.0,1.0,1.0,3445.2708319580474,0.0,840.0,0.0,0.0,40909.0,0,1,3,44.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1130.581002705472,0.02854398495231241,0.02763648592499137,40909.0,10,5,10,10_0,10_3,10_1_0 +4179,2,70.0,3,0.0,5,400,2,0,75,5.0,0.0,0.0,592.2090966552472,0.0,1326.9914565324173,14872.307127683114,0,71,1,15295,201704179,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2364.2127644887773,0.0,440.0,750.0,0.0,19992.0,0,5,3,80.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1919.2005531876644,0.12904524743274634,0.0959984270301953,19992.0,5,3,5,5_1,5_0,5_0_0 +4180,1,52.0,5,250.0,3,111,1,68,63,2.0,0.0,0.0,1076.7438121004495,594.492172526523,0.0,35536.660836034986,71,50,2,15297,201704180,,,,,2.0,0.0,5.0,4.0,6.0,3.1,1887.0042989219435,0.0,800.0,0.0,0.0,35782.0,1,1,2,102.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1671.2359846269724,0.04702850367224995,0.04670605289326959,11542.58064516129,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4182,1,44.0,3,79.0,99,111,6,0,52,3.0,0.0,0.0,55.18312037014804,26.539829130648343,0.0,16729.559999999998,0,71,2,153,201704182,,,,503.0,1.0,2.0,2.0,0.0,1.0,1.0,1907.071027175745,0.0,41.0,0.0,0.0,14313.0,0,1,3,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,81.72294950079637,0.004884943148582293,0.005709700936267476,14313.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +4183,2,89.0,3,0.0,3,120,6,0,86,1.0,1047.0609660316622,0.0,417.2382271889242,0.0,0.0,15108.039999999999,0,71,1,1530,201704183,,,40.0,,0.0,3.0,3.0,0.0,1.0,1.0,1536.8649782673367,0.0,310.0,0.0,0.0,7673.0,0,5,1,100.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1464.2991932205864,0.09692185043331805,0.19083789824326683,7673.0,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +4184,2,60.0,4,0.0,5,112,6,74,35,6.0,0.0,0.0,1821.0429722148854,159.23897478389006,0.0,55957.69087530162,60,41,1,15300,201704184,,,710.0,,1.0,3.0,5.0,0.0,2.0,1.5,2869.5397428279466,0.0,1353.0,0.0,0.0,34202.0,5,1,3,100.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1980.2819469987753,0.03538891466075174,0.05789959496517091,22801.333333333332,6,3,6,6_1,6_1,6_0_0 +4185,1,19.0,5,246.0,99,111,2,0,55,4.0,0.0,0.0,920.6159593458843,0.0,0.0,9138.814345444658,0,41,2,15301,201704185,,,,154.0,1.0,0.0,2.0,0.0,1.0,1.0,3629.274926791623,0.0,684.0,0.0,0.0,17062.0,0,1,3,30.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,920.6159593458843,0.10073691449972123,0.05395709526115838,17062.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +4186,1,51.0,5,141.0,4,111,1,0,68,5.0,0.0,0.0,376.8603342351573,0.0,0.0,25222.085846751303,0,71,2,15303,201704186,,,,249.0,1.0,0.0,3.0,1.0,2.0,1.3,1538.0637894336853,0.0,280.0,0.0,0.0,24442.0,0,1,3,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,376.8603342351573,0.014941679943718783,0.015418555528809316,18801.53846153846,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +4187,2,67.0,4,0.0,6,111,2,0,75,8.0,0.0,0.0,1345.929765125562,0.0,3538.6438840864457,29733.970166158786,0,31,1,15304,201704187,,,500.0,,2.0,2.0,6.0,2.0,3.0,2.0,1004.1693938395198,0.0,1000.0,2000.0,0.0,56310.0,0,5,1,115.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4884.573649212008,0.16427586433685543,0.08674433758145991,28155.0,8,4,8,8_1,8_4,8_0_0 +4188,2,56.0,2,0.0,6,111,2,45,75,10.0,0.0,0.0,640.6625681997675,0.0,1397.7643342141462,42032.28,31,12,1,15305,201704188,,,340.0,,1.0,2.0,5.0,0.0,2.0,1.5,1813.5463544342824,0.0,476.0,790.0,0.0,73337.0,1,5,1,100.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2038.4269024139137,0.048496700688468806,0.02779534072042644,48891.333333333336,10,5,10,10_1,10_3,10_0_0 +4189,2,35.0,2,0.0,1,112,5,46,53,8.0,0.0,0.0,1219.4123672037592,0.0,707.7287768172891,87479.0,31,41,1,15306,201704189,,,520.0,,2.0,0.0,5.0,1.0,3.0,2.0,2084.3469042543516,0.0,906.0,400.0,0.0,59122.0,1,1,1,100.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1927.1411440210484,0.022029757359149606,0.03259600730728068,29561.0,8,4,8,8_1,8_1,8_1_0 +4190,2,50.0,2,0.0,1,111,6,37,37,10.0,0.0,0.0,993.2961666626647,0.0,10615.931652259338,162150.56000000003,42,12,2,15307,201704190,,,,,2.0,0.0,4.0,2.0,4.0,2.3,3101.714726733425,0.0,738.0,6000.0,0.0,191353.0,1,1,3,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,11609.227818922003,0.07159536062608728,0.0606691706893647,83196.95652173914,10,5,10,10_0,10_4,10_1_0 +4191,2,44.0,2,0.0,2,111,1,52,46,5.0,0.0,0.0,740.261370819059,0.0,2063.029384422398,33654.58,31,30,2,15308,201704191,,,240.0,,2.0,0.0,6.0,2.0,4.0,2.3,3065.9403701544857,0.0,550.0,1166.0,0.0,47958.0,1,1,2,98.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2803.290755241457,0.08329596611342222,0.05845303714169601,20851.304347826088,5,3,5,5_0,5_2,5_0_1 +4192,2,54.0,3,0.0,1,111,6,0,63,8.0,0.0,0.0,403.7789295376686,0.0,0.0,11424.18,0,20,2,1531,201704192,,,,,1.0,5.0,1.0,0.0,1.0,1.0,5359.074745552216,0.0,300.0,0.0,0.0,25520.0,0,1,3,8.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,403.7789295376686,0.03534423735775072,0.015822058367463504,25520.0,7,4,7,7_0,7_4,7_1_0 +4193,1,49.0,4,351.0,4,111,1,0,85,10.0,0.0,0.0,578.7497990039916,0.0,0.0,7333.658409057287,0,71,2,15310,201704193,,,320.0,,1.0,0.0,4.0,2.0,3.0,1.8,763.658984933196,0.0,430.0,0.0,0.0,114912.0,0,7,3,63.0,9,7.0,2,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,578.7497990039916,0.07891692886721016,0.005036460935359159,63840.0,10,5,10,10_0,10_3,10_0_1 +4194,2,74.0,3,0.0,3,111,1,0,77,4.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,11476.08,0,50,2,15312,201704194,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2911.320825355426,1500.0,0.0,0.0,0.0,18323.0,0,5,1,77.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2391.2843399485805,0.20837118074713495,0.13050724990168533,18323.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +4195,2,85.0,2,0.0,1,111,2,0,78,5.0,2221.038412794435,0.0,71.33427755165478,84.9274532180747,0.0,8361.2,0,70,1,15313,201704195,,,95.0,,0.0,3.0,3.0,0.0,1.0,1.0,1395.7419213657715,0.0,53.0,0.0,0.0,19408.0,0,5,1,75.0,4,3.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2377.3001435641645,0.2843252336463862,0.12249073287119562,19408.0,5,3,5,5_1,5_1,5_1_0 +4196,2,56.0,3,0.0,2,111,2,0,68,4.0,0.0,0.0,551.8312037014804,0.0,636.9558991355602,18868.550875301626,0,50,8,15317,201704196,,,220.0,278.0,1.0,3.0,3.0,0.0,1.0,1.0,1847.146228346729,0.0,410.0,360.0,0.0,16999.0,0,1,3,68.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1188.7871028370405,0.06300362495739552,0.06993276680022592,16999.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4197,1,59.0,3,250.0,99,400,2,0,68,6.0,1586.456009138882,0.0,1615.1157181506744,198.16405750884095,0.0,10993.5,0,50,1,15318,201704197,,,250.0,,1.0,3.0,3.0,0.0,1.0,1.0,2376.3222070378715,0.0,1200.0,0.0,0.0,21090.0,0,1,3,78.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3399.735784798397,0.30924962794363914,0.1612013174394688,21090.0,5,3,5,5_1,5_0,5_0_0 +4198,2,48.0,3,0.0,5,111,5,0,52,6.0,0.0,1554.4774779110528,386.28184259103625,0.0,0.0,36062.43331690806,0,31,1,15319,201704198,,,277.0,,1.0,0.0,5.0,1.0,3.0,2.0,1538.4472048973864,0.0,287.0,0.0,0.0,42360.0,0,1,1,99.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1940.759320502089,0.053816649127560505,0.04581584798163572,21180.0,5,3,5,5_1,5_3,5_0_0 +4199,2,56.0,3,0.0,2,111,1,55,68,8.0,0.0,0.0,901.7729426341265,0.0,442.3304855108057,27414.420000000002,50,60,2,1532,201704199,,,,362.0,2.0,3.0,4.0,0.0,2.0,1.5,2630.117025511763,0.0,670.0,250.0,0.0,42330.0,1,1,3,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1344.1034281449322,0.0490290667519113,0.03175297491483421,28220.0,8,4,8,8_0,8_4,8_0_1 +4200,2,67.0,3,0.0,99,111,1,0,78,1.0,0.0,685.6356018643394,659.5055849115254,0.0,53.079658261296686,17069.991191295747,0,71,2,15320,201704200,494.0,494.0,80.0,275.0,0.0,2.0,2.0,0.0,1.0,1.0,2144.427344694248,0.0,490.0,30.0,0.0,9930.0,0,5,3,58.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1398.2208450371613,0.08191104666475375,0.1408077386744372,9930.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +4201,2,82.0,2,0.0,2,112,2,0,74,6.0,832.8894047979131,0.0,1388.99951760958,84.9274532180747,0.0,34280.16,0,70,1,15321,201704201,,,877.0,,0.0,1.0,4.0,0.0,1.0,1.0,2851.8332960877015,0.0,1032.0,0.0,0.0,21590.0,0,5,1,90.0,9,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2306.8163756255676,0.06729304576249258,0.10684652040878034,21590.0,6,3,6,6_1,6_1,6_0_1 +4202,2,33.0,3,0.0,9,300,5,42,65,7.0,0.0,693.9631597817199,834.4764543778484,79.61948739194503,0.0,31360.380315994116,30,60,1,15322,201704202,,,900.0,,2.0,0.0,7.0,2.0,4.0,2.1,2451.4334259556545,0.0,620.0,0.0,0.0,55622.0,1,1,2,120.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1608.0591015515135,0.05127677296475218,0.02891048688561205,26486.666666666664,7,4,7,7_1,7_1,7_0_0 +4203,2,65.0,3,0.0,5,300,4,78,78,4.0,0.0,0.0,2341.9177913184776,212.31863304518674,0.0,35437.08,70,70,1,15324,201704203,,,124.0,,0.0,2.0,5.0,0.0,2.0,1.5,1893.1132580339172,0.0,1740.0,0.0,0.0,25560.0,5,5,1,85.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2554.2364243636644,0.07207807258283314,0.09993100251814023,17040.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4204,1,51.0,5,238.0,1,111,1,69,68,2.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,11827.9,71,71,2,15325,201704204,,,,79.0,2.0,4.0,3.0,1.0,3.0,1.8,3417.7573301490274,720.0,0.0,0.0,0.0,19426.0,4,1,3,65.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1147.8164831753188,0.09704313387628563,0.05908660986179959,10792.222222222223,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +4205,2,63.0,3,0.0,9,400,6,65,77,7.0,0.0,346.98157989085996,1722.7900993607193,0.0,0.0,33019.96,60,50,1,15327,201704205,,,,650.0,1.0,2.0,6.0,0.0,2.0,1.5,2032.4557125698307,0.0,1280.0,0.0,0.0,38710.0,1,5,3,160.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2069.7716792515794,0.0626824405375288,0.05346865614186462,25806.666666666668,7,4,7,7_1,7_0,7_0_0 +4206,2,86.0,3,0.0,3,111,2,0,77,3.0,0.0,0.0,920.6159593458843,0.0,2970.6915406905714,18823.04,0,60,1,15328,201704206,,,151.0,,0.0,2.0,4.0,0.0,1.0,1.0,2547.1203939351,0.0,684.0,1679.0,0.0,16183.0,0,5,1,120.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3891.3075000364556,0.20673108594767134,0.24045649756141974,16183.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +4207,2,50.0,2,0.0,1,120,5,55,65,6.0,0.0,832.755791738064,1130.581002705472,1814.6165837595292,0.0,43049.35999999999,31,50,1,1533,201704207,,,,,3.0,0.0,4.0,3.0,5.0,2.8,2002.3393165167292,0.0,840.0,0.0,0.0,59379.0,1,1,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3777.953378203065,0.08775864213087176,0.06362440219948239,21206.785714285717,5,3,5,5_1,5_0,5_1_0 +4208,2,25.0,3,0.0,99,112,3,0,85,1.0,0.0,0.0,0.0,0.0,0.0,10617.199999999999,0,71,7,15330,201704208,,,,,0.0,0.0,1.0,1.0,2.0,1.3,898.1257047684124,0.0,0.0,0.0,0.0,8330.0,0,6,1,8.0,9,0.0,2,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,6407.692307692308,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4209,2,70.0,2,0.0,1,112,4,0,77,6.0,0.0,0.0,3293.49013526225,419.63008499439115,0.0,27543.510000000002,0,71,1,15332,201704209,,,111.0,,0.0,3.0,8.0,0.0,1.0,1.0,2406.2830170900734,0.0,2447.0,0.0,0.0,22314.0,0,5,1,198.0,8,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3713.120220256641,0.13480926070267155,0.1664031648407565,22314.0,6,3,6,6_1,6_1,6_1_0 +4210,2,79.0,1,0.0,7,400,2,72,74,4.0,0.0,0.0,4358.120579476569,169.8549064361494,0.0,34344.60417758094,50,50,1,15333,201704210,,,300.0,,0.0,2.0,6.0,0.0,2.0,1.5,2198.1480055289762,0.0,3238.0,0.0,0.0,38310.0,5,5,1,250.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4527.975485912719,0.13183950126490135,0.11819304322403339,25540.0,7,4,7,7_1,7_1,7_0_0 +4211,2,66.0,3,0.0,5,111,2,68,75,7.0,0.0,0.0,1737.5953267771006,0.0,0.0,55400.6,70,50,1,15335,201704211,,,342.0,,1.0,2.0,4.0,0.0,2.0,1.5,1637.2112843402253,0.0,1291.0,0.0,0.0,34987.0,5,5,1,80.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1737.5953267771006,0.03136419689998124,0.049664027403810006,23324.666666666668,6,3,6,6_1,6_3,6_0_0 +4212,1,58.0,4,49.0,7,111,2,0,52,4.0,0.0,0.0,955.610133239149,0.0,937.7406292829081,22445.399999999998,0,71,1,15336,201704212,,,140.0,584.0,1.0,2.0,4.0,0.0,1.0,1.0,2518.2854732262163,0.0,710.0,530.0,0.0,17548.0,0,1,3,85.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1893.3507625220573,0.08435362089880588,0.10789553011864926,17548.0,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +4213,2,32.0,2,0.0,8,112,1,0,35,6.0,0.0,0.0,697.1916183350411,0.0,0.0,28311.840000000004,0,30,2,15337,201704213,,,,890.0,1.0,0.0,3.0,0.0,1.0,1.0,3490.547924959537,0.0,518.0,0.0,0.0,22756.0,0,1,3,49.0,8,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,697.1916183350411,0.024625443571842768,0.03063770514743545,22756.0,6,3,6,6_0,6_1,6_0_0 +4214,2,49.0,1,0.0,1,221,2,52,47,8.0,0.0,0.0,576.0579394737405,0.0,1457.9212802436157,43886.24,50,50,1,15338,201704214,,,,,3.0,1.0,6.0,1.0,3.0,2.0,1753.5739366538985,0.0,428.0,824.0,0.0,55825.0,1,1,1,130.0,1,2.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2033.979219717356,0.04634662754697956,0.03643491660935703,27912.5,8,4,8,8_1,8_1,8_1_0 +4215,1,29.0,3,437.0,99,111,2,67,85,2.0,0.0,0.0,5992.079314339002,0.0,0.0,18792.299999999996,71,50,1,15339,201704215,,,639.0,7.0,1.0,1.0,4.0,2.0,4.0,2.1,2629.112027007087,0.0,4452.0,0.0,0.0,25135.0,1,6,3,74.0,5,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,5992.079314339002,0.31885821928869823,0.23839583506421333,11969.047619047618,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +4216,1,65.0,4,62.0,99,111,5,0,77,2.0,0.0,0.0,767.1799661215703,0.0,0.0,16213.68,0,70,1,1534,201704216,,,,480.0,0.0,2.0,3.0,0.0,1.0,1.0,3776.5687214420955,0.0,570.0,0.0,0.0,11064.0,0,5,3,52.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,767.1799661215703,0.04731683159662521,0.06934019939638199,11064.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +4217,2,32.0,3,0.0,1,111,4,47,46,8.0,0.0,0.0,1615.1157181506744,0.0,0.0,35378.54,31,31,1,15340,201704217,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1892.683815848492,0.0,1200.0,0.0,0.0,42057.0,2,1,2,85.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1615.1157181506744,0.04565241296420582,0.038403017765191866,28038.0,8,4,8,8_1,8_3,8_1_0 +4218,2,37.0,1,0.0,6,111,2,48,37,10.0,0.0,0.0,83.50976897760228,0.0,155.6186650172558,66791.34,31,31,2,15342,201704218,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3212.8580943648026,150.0,0.0,0.0,0.0,81414.0,1,1,1,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,239.12843399485809,0.0035802311197059094,0.002937190581409316,45230.0,10,5,10,10_0,10_4,10_0_0 +4219,2,27.0,2,0.0,99,111,2,0,46,5.0,0.0,0.0,512.1932497292939,0.0,954.4611454391688,11753.759999999998,0,43,2,15343,201704219,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3462.231074460797,920.0,0.0,0.0,0.0,18920.0,0,1,3,50.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1466.6543951684628,0.12478172050207448,0.07751873124569042,18920.0,5,3,5,5_0,5_2,5_0_0 +4220,1,43.0,4,387.0,9,111,2,0,55,2.0,0.0,0.0,0.0,0.0,123.8525359430256,18620.76,0,43,2,15344,201704220,,,,156.0,1.0,0.0,4.0,2.0,3.0,1.6,1235.4568185655432,0.0,0.0,70.0,0.0,18104.0,0,4,3,84.0,5,4.0,2,8,0,1,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,123.8525359430256,0.006651314766047444,0.006841169683110119,11315.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4221,1,40.0,4,289.0,4,111,1,0,54,2.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,25160.600000000002,0,43,2,15346,201704221,,,720.0,153.0,1.0,0.0,4.0,1.0,2.0,1.3,789.1588701816867,600.0,0.0,0.0,0.0,15774.0,0,1,3,84.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,956.5137359794323,0.038016332519074755,0.06063862913524993,12133.846153846154,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +4222,2,24.0,3,0.0,9,111,4,56,55,7.0,0.0,0.0,869.470628271113,0.0,0.0,25390.2116935026,42,31,2,15347,201704222,,,200.0,465.0,2.0,0.0,2.0,0.0,2.0,1.5,3261.7179133656396,0.0,646.0,0.0,0.0,38685.0,1,1,3,47.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,869.470628271113,0.03424432370895167,0.022475652792325527,25790.0,7,4,7,7_0,7_2,7_0_0 +4223,2,53.0,9,0.0,8,112,6,0,56,3.0,1649.9142495044375,0.0,403.7789295376686,0.0,0.0,32224.54,0,50,1,15348,201704223,,,145.0,450.0,1.0,3.0,6.0,0.0,1.0,1.0,2077.54886301316,0.0,300.0,0.0,0.0,14833.0,0,1,3,160.0,7,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2053.6931790421063,0.06373072133976486,0.1384543368868136,14833.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4224,1,36.0,3,193.0,10,112,4,0,47,4.0,0.0,0.0,1251.7146815667727,0.0,0.0,27623.079999999998,0,31,2,1535,201704224,,,,387.0,1.0,0.0,3.0,2.0,3.0,1.6,1222.2697366998348,0.0,930.0,0.0,0.0,28209.0,0,1,3,66.0,9,3.0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1251.7146815667727,0.04531408813089535,0.04437288388694292,17630.625,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +4225,2,46.0,3,0.0,4,111,2,0,52,4.0,0.0,0.0,224.77027077596884,0.0,237.08914023379188,28424.680000000004,0,71,2,15350,201704225,,,,,1.0,0.0,3.0,1.0,2.0,1.5,858.7208618266832,0.0,167.0,134.0,0.0,24079.0,0,1,3,52.0,6,4.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,461.8594110097607,0.016248535111380698,0.019181004651761317,16052.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +4226,2,72.0,3,0.0,1,111,5,77,78,7.0,0.0,474.67080129069643,1009.4473238441715,0.0,0.0,14845.199999999999,71,50,1,15351,201704226,,,80.0,,0.0,3.0,2.0,0.0,2.0,1.5,2144.964179344761,0.0,750.0,0.0,0.0,37236.0,5,5,1,48.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1484.118125134868,0.09997292896928758,0.03985707716013718,24824.0,7,4,7,7_1,7_2,7_1_0 +4227,2,53.0,2,0.0,8,120,1,0,62,7.0,396.6140022847205,0.0,444.15682249143543,0.0,0.0,18245.32753375566,0,71,2,15352,201704227,250.0,250.0,,,1.0,0.0,3.0,0.0,1.0,1.0,3093.6380986428517,0.0,330.0,0.0,0.0,26182.0,0,1,2,45.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,840.7708247761559,0.04608143225823964,0.03211255155359239,26182.0,7,4,7,7_0,7_0,7_0_0 +4228,2,61.0,3,0.0,8,111,4,78,78,2.0,0.0,0.0,1297.4762935810418,0.0,0.0,26160.1,70,71,2,15353,201704228,,,,385.0,0.0,1.0,3.0,0.0,2.0,1.5,2649.918071064489,0.0,964.0,0.0,0.0,19120.0,7,5,3,61.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1297.4762935810418,0.0495975280515381,0.06785963878561933,12746.666666666666,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +4229,2,78.0,3,0.0,1,120,4,0,77,4.0,0.0,485.77421184720396,1955.6359487274415,106.15931652259337,0.0,20492.8,0,41,1,15356,201704229,,,209.0,,0.0,2.0,4.0,0.0,1.0,1.0,2424.916045441822,0.0,1453.0,0.0,0.0,15840.0,0,5,1,100.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2547.5694770972386,0.12431534378402359,0.16083140638240143,15840.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4230,2,34.0,1,0.0,9,120,2,0,55,8.0,0.0,0.0,311.21307238986446,0.0,579.9388916309732,18881.660000000003,0,31,2,15357,201704230,,,,636.0,1.0,0.0,2.0,0.0,1.0,1.0,2925.1356713117148,559.0,0.0,0.0,0.0,28922.0,0,1,3,50.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,891.1519640208377,0.04719669584246499,0.030812252403735484,28922.0,8,4,8,8_0,8_1,8_0_0 +4231,1,27.0,2,379.0,5,111,2,0,43,2.0,0.0,0.0,27.836589659200758,0.0,51.872888339085264,12464.439999999999,0,50,2,15358,201704231,,,22.0,,1.0,0.0,3.0,1.0,2.0,1.3,1235.6493514435433,50.0,0.0,0.0,0.0,15118.0,0,4,3,67.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,79.70947799828602,0.0063949505953164384,0.005272488291988757,11629.23076923077,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4232,2,71.0,3,0.0,3,111,2,78,75,7.0,0.0,0.0,955.610133239149,0.0,1592.3897478389006,31441.799999999992,50,50,1,15359,201704232,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2718.4796473522483,0.0,710.0,900.0,0.0,37330.0,5,5,1,83.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2547.99988107805,0.0810386135996683,0.06825609110843958,24886.666666666668,7,4,7,7_1,7_3,7_0_1 +4233,2,57.0,2,0.0,1,111,2,0,45,8.0,0.0,652.3253701948167,1615.1157181506744,0.0,0.0,18905.64,0,42,1,1536,201704233,,,,,1.0,0.0,4.0,1.0,2.0,1.5,2285.2003905443366,0.0,1200.0,0.0,0.0,41768.0,0,1,1,86.0,8,6.0,2,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2267.441088345491,0.11993463793584831,0.05428656120344501,27845.333333333332,8,4,8,8_1,8_2,8_1_0 +4234,2,84.0,3,0.0,1,111,1,0,74,4.0,0.0,0.0,250.34293631335453,0.0,562.6443775697448,31105.32,0,30,2,15360,201704234,,,,,0.0,1.0,4.0,0.0,1.0,1.0,4171.535973331007,0.0,186.0,318.0,0.0,17312.0,0,5,1,82.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,812.9873138830994,0.02613660023054254,0.046960912308404545,17312.0,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +4235,2,55.0,2,0.0,1,111,5,78,65,3.0,0.0,693.9631597817199,916.5781700505077,0.0,0.0,29627.291191295746,71,71,1,15363,201704235,,,150.0,,1.0,1.0,4.0,0.0,2.0,1.5,2499.820002018549,0.0,681.0,0.0,0.0,21602.0,7,1,1,100.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1610.5413298322276,0.05436006010247037,0.07455519534451567,14401.333333333334,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +4236,2,54.0,2,0.0,5,111,4,52,63,9.0,0.0,388.6193694777632,834.4764543778484,0.0,0.0,50233.079999999994,50,50,1,15364,201704236,,,150.0,,2.0,0.0,4.0,0.0,2.0,1.5,1578.9045255305798,0.0,620.0,0.0,0.0,57317.0,1,1,1,100.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1223.0958238556116,0.02434841391082553,0.02133914587043306,38211.333333333336,9,5,9,9_1,9_2,9_0_0 +4237,2,36.0,3,0.0,9,300,5,56,64,3.0,0.0,310.8954955822105,1063.284514449194,56.61830214538313,0.0,33473.007325153165,60,71,1,15365,201704237,,,235.0,,2.0,0.0,4.0,2.0,4.0,2.1,2671.740154686904,0.0,790.0,0.0,0.0,29224.0,4,1,2,76.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1430.7983121767875,0.042744839096116094,0.048959701347412656,13916.190476190475,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4238,2,47.0,2,0.0,7,111,2,0,42,5.0,0.0,0.0,606.2809227773924,0.0,1129.7915080252772,34381.840315994115,0,41,2,15367,201704238,,,,600.0,1.0,0.0,5.0,2.0,3.0,2.0,562.7206618618852,1089.0,0.0,0.0,0.0,37938.0,0,1,3,82.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1736.0724308026697,0.050493877432007755,0.04576077892357715,18969.0,5,3,5,5_0,5_3,5_0_0 +4239,0,39.0,3,0.0,0,111,4,0,56,2.0,0.0,0.0,2584.185149041079,0.0,0.0,23433.646666666664,0,42,0,15368,201704239,,,430.0,,1.0,0.0,,3.0,4.0,2.1,801.4497917636215,0.0,1920.0,0.0,0.0,25489.0,0,4,5,,7,5.0,2,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2584.185149041079,0.11027669682828192,0.10138432849625639,12137.619047619048,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +4240,2,77.0,3,0.0,5,300,5,77,71,2.0,0.0,69.396315978172,1189.8019123709967,221.16524275540286,0.0,25636.979999999996,70,70,1,15369,201704240,,,216.0,,0.0,2.0,4.0,0.0,2.0,1.5,2271.0442630103785,0.0,884.0,0.0,0.0,18870.0,5,5,1,97.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1480.3634711045715,0.05774328610876054,0.07845063439875843,12580.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4241,2,31.0,2,0.0,9,400,2,0,62,5.0,0.0,0.0,1184.4181933104944,0.0,0.0,19198.13665845403,0,50,1,1537,201704241,,,380.0,,1.0,0.0,4.0,0.0,1.0,1.0,2134.9309674794995,0.0,880.0,0.0,0.0,19297.0,0,1,2,100.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1184.4181933104944,0.061694434953869746,0.06137835898380548,19297.0,5,3,5,5_1,5_1,5_0_0 +4242,2,42.0,1,0.0,9,112,2,34,37,8.0,0.0,0.0,1076.7438121004495,0.0,1762.24465427505,45205.36256880423,30,31,1,15370,201704242,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.3,2370.5845457252776,0.0,800.0,996.0,0.0,66621.0,1,1,3,126.0,7,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2838.9884663754992,0.06280202845524033,0.042614017597686904,28965.652173913044,8,4,8,8_1,8_2,8_0_0 +4243,2,35.0,3,0.0,1,300,6,68,62,6.0,0.0,0.0,1512.8250560011315,205.24134527701386,0.0,18177.64,50,60,2,15373,201704243,,,,528.0,2.0,0.0,3.0,0.0,2.0,1.5,3202.259509375445,0.0,1124.0,0.0,0.0,34074.0,1,1,3,80.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1718.0664012781453,0.09451537170271528,0.050421623562779405,22716.0,6,3,6,6_0,6_0,6_1_0 +4244,2,74.0,2,0.0,3,300,2,0,77,8.0,0.0,0.0,417.2382271889242,123.8525359430256,0.0,12396.311191295743,0,50,1,15374,201704244,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2196.556884209956,0.0,310.0,0.0,0.0,28751.0,0,5,1,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,541.0907631319499,0.04364933686981696,0.01881989367785294,28751.0,8,4,8,8_1,8_0,8_0_1 +4245,1,20.0,3,154.0,99,111,4,0,84,1.0,0.0,0.0,282.645250676368,0.0,0.0,7390.54,0,41,2,15375,201704245,,,,196.0,0.0,0.0,1.0,0.0,1.0,1.0,2193.4203080908883,0.0,210.0,0.0,0.0,1849.0,0,3,3,21.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,282.645250676368,0.03824419469705434,0.15286384568759762,1849.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4246,2,65.0,4,0.0,1,120,6,0,71,1.0,0.0,0.0,920.6159593458843,0.0,0.0,11890.9658467513,0,44,1,15376,201704246,,,432.0,,0.0,3.0,5.0,0.0,1.0,1.0,1593.186367122397,0.0,684.0,0.0,0.0,9838.0,0,5,1,120.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,920.6159593458843,0.07742146190735241,0.09357755228154954,9838.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4247,2,77.0,3,0.0,2,300,2,78,78,5.0,1549.967520928688,0.0,524.9126083989692,53.079658261296686,0.0,19249.0,70,50,1,15377,201704247,,,134.0,,0.0,5.0,4.0,0.0,2.0,1.5,2402.310627875867,0.0,390.0,0.0,0.0,30390.0,5,5,1,70.0,0,2.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2127.9597875889535,0.11054910839986251,0.07002171068078163,20260.0,5,3,5,5_1,5_1,5_0_1 +4248,2,32.0,1,0.0,8,221,2,22,54,10.0,0.0,0.0,174.97086946632305,0.0,0.0,80206.3291942805,12,0,1,15378,201704248,,,,,2.0,0.0,5.0,0.0,2.0,1.5,3611.773636081911,0.0,130.0,0.0,0.0,65060.0,1,1,2,210.0,1,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,174.97086946632305,0.0021815095045990486,0.0026893770283787743,43373.333333333336,10,5,10,10_1,10_1,10_0_0 +4249,2,74.0,4,0.0,99,211,4,0,77,2.0,0.0,0.0,942.1508355878933,0.0,0.0,8744.220315994116,0,60,2,15379,201704249,,,200.0,,0.0,4.0,3.0,0.0,1.0,1.0,2457.126506233459,0.0,700.0,0.0,0.0,10650.0,0,5,1,57.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,942.1508355878933,0.10774555095147802,0.08846486719135148,10650.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +4250,2,54.0,2,0.0,1,111,6,0,37,9.0,2379.684013708323,277.585263912688,646.0462872602698,0.0,1698.549064361494,34239.14,0,20,1,1538,201704250,,,400.0,,1.0,2.0,9.0,0.0,1.0,1.0,1564.204192710253,0.0,480.0,960.0,0.0,44020.0,0,1,2,165.0,8,7.0,1,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5001.864629242775,0.14608616423317802,0.11362709289511073,44020.0,10,5,10,10_1,10_3,10_1_0 +4251,2,81.0,1,0.0,3,111,2,0,77,10.0,0.0,0.0,296.1045483276236,0.0,1026.2067263850693,11711.56,0,44,1,15381,201704251,,,80.0,,0.0,1.0,4.0,0.0,1.0,1.0,2442.8872737374245,0.0,220.0,580.0,0.0,49689.0,0,5,5,80.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1322.311274712693,0.11290650218354284,0.02661175058287937,49689.0,10,5,10,10_1,10_2,10_0_1 +4252,2,48.0,2,0.0,1,111,2,47,22,10.0,0.0,0.0,578.7497990039916,0.0,1203.1389205893915,54444.94,30,41,2,15382,201704252,,,,1000.0,2.0,0.0,4.0,2.0,4.0,2.1,3008.6612963005173,0.0,430.0,680.0,0.0,85440.0,1,1,3,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1781.888719593383,0.03272827042500888,0.020855439133817686,40685.71428571428,10,5,10,10_0,10_4,10_1_0 +4253,2,62.0,3,0.0,6,112,5,56,75,6.0,0.0,832.755791738064,1480.522741638118,176.9321942043223,0.0,40300.765846751296,42,50,1,15383,201704253,,,,,3.0,0.0,5.0,2.0,4.0,2.5,2870.498272359893,0.0,1100.0,0.0,0.0,57205.0,1,5,1,140.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2490.2107275805047,0.061790655221040776,0.04353134739236963,22882.0,6,3,6,6_1,6_0,6_0_0 +4254,1,35.0,4,119.0,99,111,6,43,62,7.0,0.0,0.0,1324.394888883553,0.0,0.0,20775.04,44,50,2,15384,201704254,,,,291.0,2.0,1.0,1.0,0.0,2.0,1.5,2151.5739279448526,0.0,984.0,0.0,0.0,38431.0,1,1,3,28.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1324.394888883553,0.06374933039279601,0.03446162964491044,25620.666666666668,7,4,7,7_0,7_3,7_0_0 +4255,2,70.0,2,0.0,4,111,2,75,75,9.0,0.0,0.0,785.3663412876997,0.0,2157.029717512126,32415.996783855982,44,41,1,15385,201704255,,,205.0,,0.0,1.0,5.0,0.0,2.0,1.5,1552.8142338054886,414.64001316639025,412.0,976.0,0.0,51240.0,5,5,1,100.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2942.3960587998254,0.09076987755209848,0.0574238106713471,34160.0,9,5,9,9_1,9_3,9_0_1 +4256,2,70.0,2,0.0,5,111,4,75,75,9.0,0.0,0.0,2530.3479584360566,0.0,0.0,47725.40000000001,41,33,1,15386,201704256,,,305.0,,0.0,3.0,6.0,0.0,2.0,1.5,1391.7382539802038,0.0,1880.0,0.0,0.0,53943.0,5,5,1,135.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2530.3479584360566,0.0530188947276724,0.04690780932532593,35962.0,9,5,9,9_1,9_3,9_0_0 +4257,1,26.0,3,372.0,7,111,2,0,55,3.0,0.0,0.0,574.5472105659036,0.0,1070.6564153187198,12869.96,0,41,2,15387,201704257,,,105.0,115.0,1.0,0.0,3.0,2.0,3.0,1.6,1554.490815285834,1032.0,0.0,0.0,0.0,23169.0,0,4,3,63.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1645.2036258846233,0.1278328468685702,0.071008831882456,14480.625,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +4258,2,69.0,3,0.0,3,120,5,86,75,3.0,1269.1648073111057,416.377895869032,1049.8252167979383,477.7169243516702,0.0,12712.52,70,50,1,15388,201704258,,,170.0,,0.0,2.0,5.0,0.0,2.0,1.5,1623.066387997777,0.0,780.0,0.0,0.0,22556.0,6,5,1,100.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3213.0848443297464,0.2527496392792103,0.14244923055194833,15037.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4259,1,44.0,4,105.0,9,211,5,42,64,3.0,0.0,356.6970641278041,1413.22625338184,53.079658261296686,0.0,25942.88,42,50,1,1539,201704259,,,580.0,,2.0,0.0,6.0,3.0,5.0,2.8,2373.502529500271,0.0,1050.0,0.0,0.0,41723.0,1,1,1,100.0,1,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1823.0029757709408,0.07026987658158773,0.043692998484551465,14901.07142857143,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +4260,2,65.0,3,0.0,4,111,1,56,77,5.0,0.0,0.0,1144.0403003567276,0.0,0.0,37892.78816118815,71,50,2,15390,201704260,,,,360.0,1.0,1.0,3.0,1.0,3.0,2.0,3597.9950000187514,0.0,850.0,0.0,0.0,39470.0,1,5,3,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1144.0403003567276,0.0301915049241089,0.028985059547928238,19735.0,5,3,5,5_0,5_4,5_0_1 +4261,1,20.0,4,230.0,4,111,2,0,84,1.0,0.0,0.0,484.5347154452023,0.0,0.0,12217.56,0,41,2,15392,201704261,,,,220.0,0.0,0.0,2.0,0.0,1.0,1.0,3492.6020909130357,0.0,360.0,0.0,0.0,7589.0,0,3,3,25.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,484.5347154452023,0.039658877504608316,0.06384697792136017,7589.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4262,2,46.0,2,0.0,1,111,2,42,42,3.0,0.0,0.0,1184.4181933104944,0.0,2123.1863304518674,34428.799999999996,20,31,1,15393,201704262,,,312.0,,2.0,0.0,5.0,2.0,4.0,2.3,2309.2948515856806,0.0,880.0,1200.0,0.0,36167.0,1,1,2,110.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3307.604523762362,0.09607086287533584,0.09145366007029508,15724.782608695654,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +4263,1,40.0,3,462.0,1,111,2,0,21,4.0,0.0,0.0,1090.6375828474856,0.0,2032.3797651253608,16435.35087530163,0,44,1,15394,201704263,,,525.0,113.0,1.0,0.0,5.0,3.0,4.0,1.9,779.6384645084042,1959.0,0.0,0.0,0.0,32534.0,0,1,3,140.0,6,4.0,2,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,3123.0173479728464,0.19001829481267654,0.0959924186381277,17123.157894736843,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +4264,2,68.0,2,0.0,6,111,2,77,77,9.0,0.0,0.0,705.2671969257945,0.0,1036.8226580373287,22292.82,50,50,1,15395,201704264,,,,,0.0,1.0,6.0,0.0,2.0,1.5,1240.9610769049577,0.0,524.0,586.0,0.0,46983.0,5,5,1,120.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1742.0898549631231,0.07814578213806612,0.03707915320356561,31322.0,8,4,8,8_1,8_2,8_0_0 +4265,2,70.0,3,0.0,9,111,5,86,78,4.0,0.0,0.0,1074.0519525701984,1061.5931652259337,0.0,27105.34,71,71,7,15397,201704265,,,,,1.0,3.0,4.0,2.0,4.0,2.5,1993.9262417655566,0.0,798.0,0.0,0.0,41420.0,5,5,1,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2135.645117796132,0.07879056738620996,0.05156072230314177,16568.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +4266,2,83.0,3,0.0,1,111,2,77,78,5.0,0.0,0.0,390.319631886413,0.0,1912.637019348724,24252.342382591494,70,50,2,15398,201704266,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3101.771198367769,0.0,290.0,1081.0,0.0,30449.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2302.956651235137,0.09495811228890683,0.07563324415367129,20299.333333333332,5,3,5,5_0,5_4,5_1_0 +4267,2,45.0,2,0.0,1,111,2,0,34,7.0,0.0,0.0,484.5347154452023,0.0,1698.549064361494,31751.940000000002,0,71,1,15399,201704267,,,270.0,,1.0,0.0,4.0,1.0,2.0,1.5,1285.5624528021344,0.0,360.0,960.0,0.0,35653.0,0,1,2,85.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2183.0837798066964,0.06875434319309927,0.06123141894950485,23768.666666666668,6,3,6,6_1,6_3,6_1_0 +4268,2,52.0,4,0.0,8,112,2,52,65,2.0,0.0,0.0,122.48099450048332,0.0,228.2407086919752,18241.519999999997,50,50,1,15401,201704268,,,300.0,,2.0,0.0,6.0,3.0,5.0,2.8,1407.073860257709,220.0,0.0,0.0,0.0,37592.0,1,1,1,120.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,350.7217031924585,0.019226561338773224,0.009329689912546778,13425.714285714286,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4269,2,23.0,4,0.0,99,111,1,55,21,1.0,0.0,0.0,558.5608525271082,0.0,2944.151711559923,13081.72,71,50,2,15405,201704269,832.0,832.0,,,2.0,1.0,3.0,2.0,4.0,2.1,1063.855545647467,0.0,415.0,1664.0,0.0,15180.0,4,1,3,38.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,3502.7125640870313,0.267756270894579,0.2307452282007267,7228.571428571428,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +4270,2,52.0,1,0.0,5,111,2,85,38,7.0,0.0,0.0,929.7420946173053,0.0,1732.5544705254479,82355.15999999999,50,12,1,15406,201704270,,,316.0,,1.0,1.0,7.0,2.0,4.0,2.5,2085.0910830520115,1670.0,0.0,0.0,0.0,65881.0,5,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2662.296565142753,0.032327015880277005,0.04041068844041155,26352.4,7,4,7,7_1,7_4,7_0_0 +4271,2,50.0,1,0.0,8,111,6,35,33,10.0,0.0,0.0,2253.086426820191,0.0,0.0,126522.12753821485,30,10,1,15407,201704271,,,632.0,,2.0,0.0,10.0,3.0,5.0,2.6,1739.427454004162,0.0,1674.0,0.0,0.0,170083.0,1,1,2,230.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2253.086426820191,0.017807844925304996,0.013246981925414009,65416.53846153846,10,5,10,10_1,10_4,10_0_0 +4272,2,43.0,2,0.0,1,112,2,64,52,7.0,0.0,0.0,51.7760567661134,0.0,96.48357231069859,32373.98365795277,43,41,2,15408,201704272,,,,500.0,2.0,0.0,2.0,0.0,2.0,1.5,3194.1157298485123,93.0,0.0,0.0,0.0,34660.0,4,1,3,60.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,148.259629076812,0.0045795917686018706,0.004277542673883785,23106.666666666668,6,3,6,6_0,6_2,6_1_0 +4273,2,47.0,3,0.0,9,111,4,0,37,4.0,0.0,0.0,1063.284514449194,0.0,0.0,30717.399999999998,0,20,1,15410,201704273,,,175.0,,1.0,0.0,2.0,0.0,1.0,1.0,2092.713068043627,0.0,790.0,0.0,0.0,19424.0,0,4,3,65.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1063.284514449194,0.034615055781062005,0.054740759598908256,19424.0,5,3,5,5_1,5_2,5_0_0 +4274,2,41.0,2,0.0,99,111,2,0,34,3.0,0.0,0.0,36.34010365839017,0.0,401.6360808438116,38828.2,0,10,1,15411,201704274,,,,,1.0,1.0,5.0,1.0,3.0,1.8,1195.7169703935447,0.0,27.0,227.0,0.0,29900.0,0,1,3,100.0,6,5.0,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,437.97618450220176,0.011279847752463462,0.014648032926495042,16611.11111111111,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4275,2,51.0,1,0.0,7,112,2,37,31,10.0,0.0,0.0,3634.010365839017,0.0,4246.372660903735,77428.73999999999,30,30,1,15412,201704275,,,930.0,,2.0,1.0,5.0,1.0,3.0,2.0,2308.991944914392,0.0,2700.0,2400.0,0.0,313910.0,1,1,2,142.0,8,1.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,7880.383026742752,0.10177594297340695,0.025103956633247593,156955.0,10,5,10,10_1,10_1,10_0_0 +4276,2,69.0,3,0.0,2,112,2,74,74,10.0,0.0,485.77421184720396,2355.3770889697334,0.0,3565.183713217094,104943.31999999999,10,10,1,15413,201704276,,,1750.0,,0.0,2.0,7.0,0.0,2.0,1.5,1343.2627541256575,0.0,1750.0,2015.0,0.0,127652.0,5,5,1,150.0,9,2.0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,6406.335014034032,0.06104566745204966,0.050185935308761566,85101.33333333333,10,5,10,10_1,10_1,10_0_1 +4277,2,26.0,3,0.0,1,111,2,0,56,5.0,0.0,0.0,1211.3367886130059,0.0,0.0,33826.06,0,50,2,15414,201704277,,,831.0,520.0,1.0,0.0,2.0,0.0,1.0,1.0,3882.439900980604,0.0,900.0,0.0,0.0,19127.0,0,1,3,25.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1211.3367886130059,0.03581075622206683,0.06333124842437422,19127.0,5,3,5,5_0,5_3,5_1_0 +4278,2,75.0,3,0.0,5,111,2,0,77,3.0,0.0,0.0,273.22374232048907,0.0,159.23897478389006,14249.150875301628,0,71,2,15415,201704278,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3410.2418217650043,0.0,203.0,90.0,0.0,15105.0,0,5,3,45.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,432.4627171043791,0.030350069340200226,0.028630434763613315,15105.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +4279,2,57.0,5,0.0,7,111,1,72,52,3.0,0.0,0.0,464.34576896831885,0.0,371.5576078290768,14707.720000000001,20,33,2,15419,201704279,,,,460.0,1.0,1.0,3.0,0.0,2.0,1.5,3120.2381075460007,0.0,345.0,210.0,0.0,22970.0,4,1,3,62.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,835.9033767973956,0.05683432760464542,0.03639109171952092,15313.333333333334,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +4280,2,75.0,1,0.0,1,111,2,72,52,10.0,0.0,0.0,3771.6284922712357,0.0,4654.062259212344,229357.06808054916,60,12,1,15420,201704280,,,1431.0,,1.0,2.0,6.0,0.0,2.0,1.5,1223.3760543833678,1552.6690054043802,2160.0,1720.0,0.0,87266.0,5,1,1,240.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,8425.69075148358,0.03673612861376706,0.09655181572987853,58177.333333333336,10,5,10,10_1,10_3,10_1_0 +4281,1,59.0,4,272.0,1,111,2,0,78,2.0,0.0,0.0,385.81513267652247,0.0,718.9582323797218,6025.380000000001,0,50,2,15422,201704281,,,,,0.0,3.0,2.0,0.0,1.0,1.0,2954.79385355141,693.0,0.0,0.0,0.0,12984.0,0,7,3,42.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1104.7733650562443,0.18335330967611074,0.08508728936046243,12984.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +4282,2,55.0,1,0.0,9,112,4,37,37,9.0,0.0,138.792631956344,5078.810081594748,0.0,871.4645240966324,81496.44,31,31,1,15424,201704282,,,,,2.0,0.0,5.0,2.0,4.0,2.3,1594.0749260469217,840.0,3426.0,0.0,0.0,97698.0,1,1,2,160.0,8,2.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,6089.067237647725,0.07471574510061697,0.06232540315715496,42477.39130434783,10,5,10,10_1,10_1,10_0_0 +4283,2,32.0,2,0.0,1,111,1,0,22,1.0,0.0,0.0,6056.683943065029,0.0,442.3304855108057,65495.880315994116,0,71,2,15426,201704283,,,,2600.0,1.0,0.0,2.0,0.0,2.0,1.5,1953.3672219441135,0.0,4500.0,250.0,0.0,21181.0,0,1,3,28.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,6499.014428575834,0.09922783535728388,0.30683227555714243,14120.666666666666,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +4284,2,75.0,3,0.0,4,111,1,0,75,5.0,0.0,0.0,646.0462872602698,0.0,716.5753865275053,19182.396974448147,0,41,2,15427,201704284,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2817.928577666446,0.0,480.0,405.0,0.0,21059.0,0,5,1,54.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1362.621673787775,0.07103500545853843,0.06470495625565198,21059.0,5,3,5,5_0,5_2,5_0_1 +4285,2,55.0,1,0.0,4,111,2,43,43,8.0,1269.1648073111057,346.98157989085996,850.6276115593552,148.62304313163074,0.0,17401.1,33,33,1,15429,201704285,,,,,2.0,2.0,6.0,0.0,2.0,1.5,2158.6749018924775,0.0,632.0,0.0,0.0,47640.0,1,1,1,120.0,6,4.0,3,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2615.3970418929516,0.15030067305474665,0.05489918223956657,31760.0,8,4,8,8_1,8_2,8_0_1 +4286,2,82.0,3,0.0,5,212,5,0,86,5.0,0.0,0.0,1278.633276869284,0.0,0.0,17374.031191295744,0,70,1,1543,201704286,,,,,0.0,1.0,6.0,0.0,1.0,1.0,1951.2711874123318,0.0,950.0,0.0,0.0,19333.0,0,5,1,110.0,1,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1278.633276869284,0.07359450796369407,0.06613734427503667,19333.0,5,3,5,5_1,5_0,5_0_0 +4287,1,31.0,3,450.0,9,111,1,0,55,3.0,0.0,0.0,538.3719060502248,0.0,0.0,21975.82134949914,0,41,2,15430,201704287,,,,300.0,1.0,0.0,4.0,3.0,4.0,1.9,900.9003364045763,0.0,400.0,0.0,0.0,26540.0,0,4,3,86.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,538.3719060502248,0.024498374713193372,0.020285301659767323,13968.42105263158,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +4288,2,61.0,4,0.0,1,300,5,0,64,2.0,0.0,693.9631597817199,1345.929765125562,159.23897478389006,0.0,19504.25202733072,0,50,1,15431,201704288,,,150.0,,1.0,0.0,3.0,0.0,1.0,1.0,1694.3960130386645,0.0,1000.0,0.0,0.0,11960.0,0,1,1,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2199.131899691172,0.11275140910861871,0.1838739046564525,11960.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4289,2,53.0,3,0.0,1,222,2,55,21,4.0,3377.56484345668,0.0,1188.4559826058712,40.694404666994124,0.0,52665.920000000006,70,50,1,15432,201704289,,,,,4.0,1.0,6.0,2.0,4.0,2.5,2266.3740941138767,0.0,883.0,0.0,0.0,43740.0,1,1,1,180.0,1,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4606.7152307295455,0.08747051662117637,0.10532042137013135,17496.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4290,1,40.0,3,379.0,99,111,2,0,67,1.0,0.0,0.0,1076.7438121004495,0.0,1061.5931652259337,7908.922180565688,0,43,2,15434,201704290,,,,16.0,1.0,0.0,3.0,1.0,2.0,1.3,1639.9709289731707,0.0,800.0,600.0,0.0,7138.0,0,1,3,70.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2138.336977326383,0.2703702133497839,0.29957088502751233,5490.7692307692305,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4291,2,61.0,3,0.0,7,400,4,0,77,3.0,0.0,222.0682111301504,1974.4789654391993,141.54575536345783,0.0,18106.120000000003,0,71,1,15435,201704291,,,295.0,,0.0,0.0,3.0,0.0,1.0,1.0,2770.54230233421,0.0,1467.0,0.0,0.0,13971.0,0,5,1,99.0,0,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2338.0929319328075,0.1291327425164976,0.1673532983990271,13971.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +4292,1,76.0,3,55.0,2,111,1,0,78,2.0,0.0,0.0,403.7789295376686,0.0,12.38525359430256,12400.039999999999,0,50,2,15437,201704292,,,,475.0,0.0,0.0,3.0,0.0,1.0,1.0,5664.146387163326,0.0,300.0,7.0,0.0,12810.0,0,5,3,65.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,416.1641831319712,0.03356151940896733,0.03248744599000556,12810.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +4293,2,27.0,3,0.0,4,111,1,0,43,7.0,0.0,0.0,390.319631886413,0.0,0.0,45449.46753375566,0,30,2,15439,201704293,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3907.5371417426736,0.0,290.0,0.0,0.0,25804.0,0,1,2,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,390.319631886413,0.008587991302571799,0.015126322736258448,25804.0,7,4,7,7_0,7_4,7_0_1 +4294,2,57.0,2,0.0,7,112,6,21,37,9.0,0.0,0.0,2691.859530251124,0.0,0.0,39299.077686990626,44,30,1,1544,201704294,,,500.0,,2.0,2.0,5.0,0.0,2.0,1.5,2120.220988651074,0.0,2000.0,0.0,0.0,54069.0,5,1,1,150.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2691.859530251124,0.06849676095941111,0.049785635581407535,36046.0,9,5,9,9_1,9_0,9_0_0 +4295,0,55.0,3,0.0,1,111,6,0,56,1.0,0.0,0.0,0.0,0.0,0.0,9574.619999999999,0,71,2,15441,201704295,,,,,1.0,2.0,1.0,0.0,1.0,1.0,6931.155510602826,0.0,0.0,0.0,0.0,5900.0,0,4,5,11.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,5900.0,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +4296,2,50.0,3,0.0,7,111,2,0,37,9.0,0.0,0.0,484.5347154452023,0.0,990.8202875442048,72600.72000000002,0,20,2,15444,201704296,,,,870.0,1.0,2.0,3.0,1.0,2.0,1.5,1356.4472476311437,0.0,360.0,560.0,0.0,59150.0,0,1,3,88.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1475.3550029894072,0.02032149272058744,0.02494260360083529,39433.333333333336,9,5,9,9_0,9_3,9_0_0 +4297,2,28.0,2,0.0,99,111,1,0,33,5.0,0.0,0.0,91.52322402853821,0.0,0.0,18364.999999999996,0,30,2,15445,201704297,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3437.1324635328515,0.0,68.0,0.0,0.0,18876.0,0,1,4,69.0,5,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,91.52322402853821,0.004983567875226694,0.0048486556488947985,18876.0,5,3,5,5_0,5_2,5_0_0 +4298,2,32.0,3,0.0,9,111,1,38,42,7.0,0.0,0.0,646.0462872602698,0.0,0.0,27243.5658467513,42,30,2,15446,201704298,,,,787.0,2.0,0.0,3.0,1.0,3.0,1.8,5066.565775308138,0.0,480.0,0.0,0.0,49219.0,1,1,3,84.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,646.0462872602698,0.02371371981532691,0.013125953133145123,27343.888888888887,8,4,8,8_0,8_3,8_0_0 +4299,2,77.0,1,0.0,4,111,2,75,74,10.0,2221.038412794435,0.0,1423.2055362446772,0.0,1398.0573817533054,46484.35383192597,44,31,1,15447,201704299,,,140.0,,0.0,2.0,5.0,0.0,2.0,1.5,1519.0885988159591,1347.5800427907684,500.0,0.0,0.0,68397.0,5,5,5,125.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5042.3013307924175,0.10847308642869226,0.07372108909444007,45598.0,10,5,10,10_1,10_3,10_0_1 +4300,2,84.0,4,0.0,1,221,2,0,75,2.0,0.0,0.0,605.6683943065029,0.0,2972.4608626326144,15721.94,0,71,1,15448,201704300,,,300.0,,0.0,0.0,2.0,0.0,1.0,1.0,4208.324780965725,0.0,450.0,1680.0,0.0,11058.0,0,5,5,60.0,1,1.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3578.129256939117,0.2275882783510888,0.3235783375781441,11058.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +4301,2,50.0,3,0.0,2,111,2,0,47,5.0,0.0,0.0,38.971225522881056,0.0,72.62204367471938,16136.687849749778,0,71,2,15450,201704301,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2978.0112938384004,70.0,0.0,0.0,0.0,20660.0,0,1,2,80.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,111.59326919760043,0.006915500270976044,0.005401416708499537,20660.0,5,3,5,5_0,5_2,5_0_1 +4302,2,66.0,3,0.0,8,221,6,77,78,7.0,0.0,0.0,2759.156018507402,247.7050718860512,0.0,39333.66345608727,71,71,2,15451,201704302,,,,,1.0,1.0,4.0,0.0,3.0,2.0,2451.3457016241955,0.0,2050.0,0.0,0.0,49503.0,5,5,2,102.0,1,3.0,5,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,3006.861090393453,0.07644497934321223,0.060740987220844256,24751.5,7,4,7,7_0,7_1,7_0_0 +4303,2,34.0,2,0.0,6,111,1,47,38,8.0,0.0,0.0,856.0113306198574,0.0,0.0,75831.44000000002,31,20,2,15452,201704303,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2617.831171224649,0.0,636.0,0.0,0.0,60111.0,4,1,2,65.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,856.0113306198574,0.011288343339119726,0.014240510565784256,28624.285714285714,8,4,8,8_0,8_4,8_0_0 +4304,2,88.0,5,0.0,1,111,1,72,72,6.0,0.0,0.0,738.9154410539335,0.0,0.0,32129.08,60,71,2,15453,201704304,,,,1400.0,0.0,1.0,2.0,0.0,2.0,1.5,3655.203867563354,0.0,549.0,0.0,0.0,31362.0,5,5,3,30.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,738.9154410539335,0.022998337987080036,0.023560852020085885,20908.0,5,3,5,5_0,5_3,5_1_0 +4305,2,72.0,2,0.0,7,211,4,77,75,7.0,0.0,0.0,1440.1448486843512,169.8549064361494,0.0,15873.979999999998,44,60,1,15455,201704305,,,211.0,,0.0,3.0,5.0,0.0,2.0,1.5,1393.8164300726569,0.0,1070.0,0.0,0.0,38766.0,5,5,1,75.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1609.9997551205006,0.10142382408951635,0.0415312323974746,25844.0,7,4,7,7_1,7_2,7_0_0 +4306,2,40.0,3,0.0,2,111,1,34,38,9.0,0.0,0.0,181.70051829195086,0.0,0.0,84383.05169350261,20,31,2,15456,201704306,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3907.0200644440683,0.0,135.0,0.0,0.0,70567.0,1,1,2,76.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,181.70051829195086,0.0021532821419154905,0.002574865281108037,33603.33333333333,9,5,9,9_0,9_4,9_0_1 +4307,2,31.0,1,0.0,7,111,2,47,38,9.0,0.0,138.792631956344,1884.3016711757866,0.0,0.0,176159.099468521,31,12,1,15457,201704307,,,200.0,,2.0,0.0,7.0,1.0,3.0,1.8,2661.4170043364893,0.0,1400.0,0.0,0.0,62789.0,1,1,2,135.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2023.0943031321306,0.011484472327775781,0.03222052116026901,34882.777777777774,9,5,9,9_1,9_3,9_0_0 +4308,2,84.0,3,0.0,1,111,2,77,75,4.0,0.0,0.0,484.5347154452023,0.0,2388.5846217583507,15915.980315994115,60,44,1,15458,201704308,,,400.0,,0.0,2.0,4.0,0.0,2.0,1.5,2011.1737243309626,0.0,360.0,1350.0,0.0,24675.0,5,5,1,70.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2873.119337203553,0.18051789963049458,0.11643847364553407,16450.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +4309,2,44.0,2,0.0,4,111,1,0,42,7.0,0.0,0.0,301.4882673881259,0.0,0.0,27745.140000000003,0,20,2,15459,201704309,,,,,1.0,1.0,1.0,0.0,1.0,1.0,4975.824004752288,0.0,224.0,0.0,0.0,27451.0,0,1,2,22.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,301.4882673881259,0.010866345146866293,0.010982779038582417,27451.0,8,4,8,8_0,8_3,8_0_1 +4310,2,62.0,4,0.0,7,111,4,0,52,6.0,0.0,0.0,471.07541779394666,0.0,0.0,31528.960000000003,0,50,2,1546,201704310,,,,523.0,1.0,0.0,3.0,0.0,1.0,1.0,1485.2202762564982,0.0,350.0,0.0,0.0,23640.0,0,1,3,70.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,471.07541779394666,0.014941038898648944,0.019927048130031585,23640.0,6,3,6,6_0,6_2,6_0_0 +4311,2,74.0,3,0.0,7,300,4,0,75,7.0,0.0,0.0,861.3950496803596,60.15694602946958,0.0,19108.239999999998,0,70,2,15462,201704311,,,540.0,,0.0,1.0,2.0,0.0,1.0,1.0,3159.565295498356,0.0,640.0,0.0,0.0,27270.0,0,5,1,30.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,921.5519957098293,0.04822798937577869,0.033793619204614204,27270.0,7,4,7,7_0,7_0,7_0_0 +4312,0,66.0,4,0.0,5,120,5,75,78,4.0,0.0,1110.341055650752,0.0,0.0,0.0,24872.399999999998,42,50,1,15463,201704312,,,,,1.0,2.0,6.0,1.0,4.0,2.3,946.6636005818367,0.0,0.0,0.0,0.0,41720.0,5,5,5,100.0,0,0.0,5,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1110.341055650752,0.0446414924032563,0.026614119262961457,18139.13043478261,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4313,2,46.0,3,0.0,4,221,2,0,54,5.0,0.0,0.0,2172.330640912657,0.0,0.0,35843.116322376285,0,31,2,15464,201704313,,,531.0,,1.0,0.0,4.0,2.0,3.0,2.0,3716.624438222913,0.0,1614.0,0.0,0.0,39091.0,0,1,1,82.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,2172.330640912657,0.06060663423834344,0.05557111971841747,19545.5,5,3,5,5_0,5_1,5_0_1 +4314,1,57.0,3,243.0,5,111,4,0,43,3.0,0.0,0.0,1144.0403003567276,0.0,0.0,19701.251502734114,0,33,2,15466,201704314,,,,285.0,1.0,2.0,4.0,2.0,3.0,1.8,583.8513715892943,0.0,850.0,0.0,0.0,26586.0,0,1,3,85.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1144.0403003567276,0.05806942265560942,0.04303168210173503,14770.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +4315,2,46.0,3,0.0,5,112,5,62,52,5.0,0.0,693.9631597817199,2341.9177913184776,0.0,230.01185246561897,43316.340000000004,70,70,1,15467,201704315,,,604.0,,2.0,1.0,6.0,1.0,3.0,2.0,1811.8744042517696,0.0,1740.0,130.0,0.0,41440.0,1,1,1,120.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3265.8928035658164,0.07539632396379325,0.07881015452620213,20720.0,5,3,5,5_1,5_1,5_0_0 +4316,2,36.0,2,0.0,7,111,4,46,64,8.0,0.0,0.0,843.8979627337274,0.0,0.0,35376.119999999995,20,60,2,15468,201704316,,,,,2.0,0.0,2.0,0.0,2.0,1.5,4254.981567348608,0.0,627.0,0.0,0.0,46791.0,1,1,1,27.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,843.8979627337274,0.023855017529727043,0.018035476111511343,31194.0,8,4,8,8_0,8_4,8_0_0 +4317,2,55.0,3,0.0,6,111,2,55,47,9.0,0.0,0.0,1252.646534664034,0.0,2334.279975258837,43812.581215628,50,43,1,15469,201704317,,,800.0,,3.0,1.0,4.0,1.0,3.0,2.0,2070.6703334500608,2250.0,0.0,0.0,0.0,64181.0,1,1,1,98.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3586.9265099228714,0.08186978284318501,0.055887669402515876,32090.5,9,5,9,9_1,9_3,9_0_0 +4318,2,70.0,2,0.0,1,400,4,78,77,7.0,0.0,0.0,1274.5954875739071,0.0,0.0,18609.200000000004,70,60,1,15470,201704318,,,148.0,,0.0,1.0,5.0,0.0,2.0,1.5,1697.146157716506,0.0,947.0,0.0,0.0,37044.0,5,5,1,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1274.5954875739071,0.0684927609770386,0.03440760953390312,24696.0,7,4,7,7_1,7_0,7_1_0 +4319,2,82.0,3,0.0,5,112,2,77,78,3.0,2855.620816449988,0.0,901.7729426341265,219.39592081335965,0.0,32938.44,70,71,1,15471,201704319,,,371.0,,0.0,3.0,4.0,0.0,2.0,1.5,2494.218525187159,0.0,670.0,0.0,0.0,24001.0,5,5,1,90.0,10,2.0,3,1,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3976.7896798974743,0.12073400197147995,0.16569266613463915,16000.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4320,2,43.0,1,0.0,3,111,1,37,48,9.0,0.0,0.0,1111.7379859937141,0.0,0.0,62543.86000000001,12,12,2,15473,201704320,,,,,2.0,0.0,5.0,2.0,4.0,2.1,4132.13488553533,0.0,826.0,0.0,0.0,76757.0,1,1,1,92.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1111.7379859937141,0.017775333757681634,0.014483864481333483,36550.95238095238,9,5,9,9_0,9_3,9_0_1 +4321,2,68.0,3,0.0,1,111,2,77,78,4.0,0.0,0.0,807.5578590753372,0.0,1751.6287226227907,26815.22,60,50,1,15475,201704321,,,300.0,,0.0,1.0,4.0,0.0,2.0,1.5,1836.7086172255072,0.0,600.0,990.0,0.0,24490.0,7,5,1,159.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2559.186581698128,0.095437836486075,0.10449924792560751,16326.666666666666,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +4322,2,36.0,3,0.0,2,111,1,0,22,8.0,0.0,0.0,1278.633276869284,0.0,0.0,25116.52,0,43,2,15478,201704322,,,,690.0,1.0,0.0,3.0,0.0,1.0,1.0,3681.029444699072,0.0,950.0,0.0,0.0,33853.0,0,1,4,62.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1278.633276869284,0.05090805879434268,0.03777016148847322,33853.0,9,5,9,9_0,9_4,9_0_1 +4323,2,59.0,2,0.0,7,112,2,77,37,8.0,1976.724187387047,0.0,1306.4456082251338,0.0,1065.1046391449797,40531.4558054919,50,60,1,15479,201704323,,,127.0,,1.0,0.0,4.0,0.0,2.0,1.5,1524.746508682421,1026.6486725999823,546.0,0.0,0.0,41504.0,5,1,1,90.0,8,0.0,3,2,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4348.274434757161,0.10728147677754968,0.10476759914121918,27669.333333333332,8,4,8,8_1,8_0,8_0_0 +4324,2,68.0,3,0.0,9,112,6,0,72,2.0,1745.1016100527704,0.0,201.8894647688343,159.23897478389006,0.0,23047.124685771014,0,50,2,15481,201704324,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3030.2807233973745,0.0,150.0,0.0,0.0,14804.0,0,5,1,60.0,7,4.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2106.230049605495,0.09138797478306929,0.14227438865208694,14804.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +4325,1,27.0,2,62.0,9,111,6,55,34,3.0,0.0,0.0,1615.1157181506744,0.0,0.0,28105.8,71,20,2,15482,201704325,,,,573.0,2.0,0.0,2.0,1.0,3.0,1.8,3243.692932262884,0.0,1200.0,0.0,0.0,25344.0,4,1,3,43.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1615.1157181506744,0.057465566472068914,0.06372773509117244,14080.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +4326,2,72.0,3,0.0,4,400,2,0,75,7.0,2379.684013708323,0.0,547.7934144061037,88.46609710216114,0.0,44189.159999999996,0,71,1,15484,201704326,,,,,0.0,5.0,5.0,0.0,1.0,1.0,2342.983089950043,0.0,407.0,0.0,0.0,24176.0,0,5,1,80.0,0,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3015.943525216588,0.06825075482802996,0.12474948400134796,24176.0,7,4,7,7_1,7_1,7_0_1 +4327,2,64.0,4,0.0,1,112,2,0,75,4.0,0.0,0.0,3494.033670265959,0.0,0.0,23185.899999999998,0,33,1,15486,201704327,,,,,0.0,3.0,8.0,0.0,1.0,1.0,2611.7843525313265,0.0,2596.0,0.0,0.0,17770.0,0,5,1,244.0,4,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3494.033670265959,0.15069648666931018,0.1966254175726482,17770.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4328,2,52.0,3,0.0,9,400,6,64,46,6.0,0.0,0.0,1749.7086946632305,44.23304855108057,0.0,29520.04,70,71,1,15487,201704328,,,550.0,,2.0,2.0,4.0,0.0,2.0,1.5,2341.0149423421553,0.0,1300.0,0.0,0.0,31611.0,4,1,3,92.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1793.9417432143111,0.06077030191064481,0.05675055339009557,21074.0,5,3,5,5_1,5_0,5_0_0 +4329,2,39.0,4,0.0,1,111,2,54,65,5.0,0.0,0.0,1313.3303001210916,0.0,2447.362871838043,44025.9116935026,31,43,1,15488,201704329,,,450.0,,2.0,0.0,7.0,3.0,5.0,3.0,619.9510957440218,2359.0,0.0,0.0,0.0,63912.0,1,1,2,200.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3760.6931719591344,0.08541999534592584,0.05884173820188907,21304.0,6,3,6,6_1,6_3,6_1_0 +4330,2,65.0,2,0.0,5,111,1,0,74,6.0,0.0,0.0,296.1045483276236,0.0,0.0,17963.96,0,60,2,15489,201704330,,,,,0.0,1.0,2.0,0.0,1.0,1.0,1940.7151604340925,0.0,220.0,0.0,0.0,22056.0,0,5,1,32.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,296.1045483276236,0.016483255825977323,0.01342512460680194,22056.0,6,3,6,6_0,6_3,6_0_0 +4331,2,82.0,3,0.0,1,112,2,0,78,2.0,0.0,0.0,594.9009561854983,109.69796040667983,1081.0557065884093,8669.240000000002,0,71,1,15490,201704331,,,263.0,,0.0,3.0,3.0,0.0,1.0,1.0,3983.5302105290093,0.0,442.0,611.0,0.0,10540.0,0,5,1,60.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1785.6546231805874,0.20597591290362097,0.16941694717083372,10540.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +4333,2,65.0,3,0.0,99,111,2,0,86,6.0,0.0,0.0,456.2701903775655,0.0,1033.2840141532422,11885.68,0,33,2,15495,201704333,,,,309.0,0.0,1.0,3.0,0.0,1.0,1.0,1735.4334175223644,0.0,339.0,584.0,0.0,23280.0,0,5,3,88.0,4,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1489.5542045308077,0.12532343160263507,0.06398428713620308,23280.0,6,3,6,6_0,6_1,6_0_0 +4334,2,70.0,3,0.0,8,120,6,77,78,3.0,0.0,0.0,673.0887379594742,0.0,1254.2864400390818,15490.420000000002,71,70,1,15499,201704334,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2185.8264360650323,1209.0,0.0,0.0,0.0,22773.0,5,5,1,82.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1927.375177998556,0.12442368754356278,0.08463422377370378,15182.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4335,2,66.0,3,0.0,6,112,2,0,75,7.0,0.0,0.0,672.964882562781,0.0,2123.1863304518674,24409.5,0,31,1,15500,201704335,,,500.0,,0.0,1.0,4.0,0.0,1.0,1.0,1243.1176393797455,0.0,500.0,1200.0,0.0,25190.0,0,5,1,140.0,10,3.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2796.1512130146484,0.11455176111819777,0.1110024300521893,25190.0,7,4,7,7_1,7_1,7_0_0 +4336,2,38.0,3,0.0,5,111,2,62,37,8.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,51891.2,50,20,1,15501,201704336,,,460.0,,2.0,5.0,5.0,2.0,4.0,2.1,3352.1593892535557,1800.0,0.0,0.0,0.0,59410.0,1,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2869.541207938297,0.05529918768381338,0.04830064312301459,28290.47619047619,8,4,8,8_1,8_4,8_0_0 +4337,2,33.0,2,0.0,8,221,2,56,56,4.0,0.0,0.0,1441.490778449477,88.46609710216114,0.0,33364.182066597365,44,44,1,15502,201704337,,,588.0,,2.0,0.0,5.0,2.0,4.0,2.1,2036.763364002883,0.0,1071.0,0.0,0.0,33050.0,1,1,3,72.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1529.956875551638,0.045856268033118014,0.04629218988053368,15738.095238095237,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4338,2,78.0,3,0.0,6,111,6,0,78,6.0,0.0,1013.1862132813111,578.7497990039916,106.15931652259337,0.0,10289.190875301627,0,50,1,15504,201704338,,,225.0,,0.0,2.0,4.0,0.0,1.0,1.0,1691.5786053339848,0.0,430.0,0.0,0.0,23450.0,0,5,1,100.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1698.095328807896,0.16503681867580444,0.07241344685747958,23450.0,6,3,6,6_1,6_3,6_0_0 +4339,2,65.0,3,0.0,5,120,2,77,75,7.0,1780.0036422538258,0.0,592.2090966552472,53.079658261296686,0.0,24186.239999999998,60,41,1,15505,201704339,,,602.0,,0.0,2.0,5.0,0.0,2.0,1.5,1431.0965987701222,0.0,440.0,0.0,0.0,35625.0,5,5,1,90.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2425.2923971703694,0.1002757103696304,0.06807838307846652,23750.0,6,3,6,6_1,6_1,6_0_0 +4340,2,34.0,1,0.0,9,111,2,54,38,10.0,0.0,0.0,2247.7027077596886,0.0,0.0,68455.68,30,12,1,15506,201704340,,,,,2.0,0.0,6.0,1.0,3.0,1.8,3170.7465811744555,0.0,1670.0,0.0,0.0,102521.0,1,1,2,160.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2247.7027077596886,0.032834422326382395,0.021924315094075247,56956.11111111111,10,5,10,10_1,10_3,10_0_0 +4341,2,46.0,3,0.0,4,111,1,78,55,2.0,0.0,0.0,904.4648021643776,0.0,1433.1507730550106,12730.042568804227,50,71,2,15507,201704341,,,,,1.0,4.0,3.0,0.0,2.0,1.5,3181.8539252374812,0.0,672.0,810.0,0.0,15790.0,5,1,3,53.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2337.615575219388,0.1836298317609607,0.1480440516288403,10526.666666666666,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +4342,1,35.0,3,315.0,99,111,1,0,21,2.0,0.0,0.0,403.7789295376686,0.0,300.7847301473479,17760.68,0,50,2,15508,201704342,,,,,1.0,0.0,3.0,1.0,2.0,1.3,961.094497315244,0.0,300.0,170.0,0.0,13790.0,0,1,3,60.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,704.5636596850165,0.039669858343544084,0.051092361108413094,10607.692307692307,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4343,1,54.0,4,177.0,6,111,2,56,64,4.0,0.0,0.0,900.4270128690009,0.0,1433.1507730550106,16573.47641204203,50,71,1,1551,201704343,,,422.0,378.0,3.0,1.0,4.0,1.0,3.0,2.0,1840.4986855017507,0.0,669.0,810.0,0.0,35114.0,4,4,3,95.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2333.5777859240116,0.14080194932600082,0.06645719046317741,17557.0,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +4344,2,63.0,3,0.0,6,112,5,0,77,9.0,0.0,693.9631597817199,1448.2204272751046,132.69914565324171,0.0,23883.120000000003,0,31,1,15510,201704344,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2172.1245273321006,0.0,1076.0,0.0,0.0,34685.0,0,5,1,120.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2274.8827327100666,0.09525065120093465,0.06558693189303925,34685.0,9,5,9,9_1,9_2,9_0_0 +4345,2,53.0,3,0.0,1,111,2,0,43,3.0,818.6113007156632,763.359475759892,807.5578590753372,0.0,0.0,54929.89364932745,0,33,1,15512,201704345,,,300.0,,1.0,2.0,6.0,1.0,2.0,1.5,1408.5763774917145,0.0,600.0,0.0,0.0,25739.0,0,1,2,120.0,5,4.0,2,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2389.5286355508924,0.04350142475799512,0.09283688704110075,17159.333333333332,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +4346,2,54.0,3,0.0,6,111,1,64,52,4.0,55.52596031986088,0.0,1211.3367886130059,0.0,0.0,34609.79469897082,50,50,2,15513,201704346,,,,369.0,2.0,0.0,3.0,1.0,3.0,1.8,2174.0519430743807,0.0,900.0,0.0,0.0,33276.0,1,1,3,69.0,8,7.0,4,2,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1266.8627489328667,0.03660416826946792,0.03807136521615779,18486.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +4347,2,84.0,4,0.0,4,111,1,77,75,5.0,0.0,0.0,32.30231436301349,0.0,12.38525359430256,39442.70000000001,70,60,2,15514,201704347,,,,430.0,0.0,2.0,3.0,0.0,2.0,1.5,2499.7212152280676,0.0,24.0,7.0,0.0,30686.0,5,5,3,70.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,44.68756795731605,0.0011329743642629951,0.0014562852101061086,20457.333333333332,5,3,5,5_0,5_3,5_0_1 +4348,1,84.0,3,58.0,99,211,2,0,77,2.0,0.0,0.0,161.51157181506744,0.0,265.39829130648343,8618.0,0,50,2,15515,201704348,,,200.0,263.0,0.0,0.0,2.0,0.0,1.0,1.0,2020.2219449671331,0.0,120.0,150.0,0.0,13097.0,0,5,3,46.0,1,3.0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,426.90986312155087,0.049536999665995694,0.03259600390330235,13097.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +4349,2,32.0,2,0.0,1,112,2,53,64,3.0,812.2654766791077,0.0,888.3136449828709,226.47320858153253,0.0,28712.89119129574,31,43,1,15517,201704349,,,,,2.0,1.0,5.0,1.0,3.0,1.8,2396.5459867956924,0.0,660.0,0.0,0.0,27913.0,1,4,3,120.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1927.0523302435113,0.06711453463201551,0.0690378078402003,15507.222222222223,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4350,2,73.0,3,0.0,1,111,2,0,77,4.0,0.0,0.0,376.8603342351573,0.0,1015.59079473281,11226.911191295745,0,50,2,15518,201704350,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2675.51623603079,0.0,280.0,574.0,0.0,16380.0,0,5,1,90.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1392.4511289679672,0.12402798109310229,0.08500922643272082,16380.0,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +4351,2,44.0,2,0.0,1,111,2,52,37,6.0,0.0,0.0,1278.633276869284,0.0,1769.3219420432229,60058.14101638015,50,42,1,15519,201704351,,,,,2.0,0.0,4.0,2.0,4.0,2.5,3022.9447482406954,0.0,950.0,1000.0,0.0,59763.0,1,1,1,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3047.955218912507,0.05075007596524197,0.05100070643897574,23905.2,7,4,7,7_1,7_4,7_1_0 +4352,2,61.0,5,0.0,8,111,5,0,72,1.0,0.0,485.77421184720396,1345.929765125562,169.8549064361494,0.0,10116.04,0,70,1,15520,201704352,,,470.0,,0.0,5.0,4.0,0.0,1.0,1.0,582.7772363041388,0.0,1000.0,0.0,0.0,5760.0,0,6,5,90.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2001.5588834089153,0.19785992180822884,0.3474928617029367,5760.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +4353,2,37.0,3,0.0,1,211,2,62,43,8.0,0.0,0.0,368.78475564440396,0.0,2041.7975211178793,50864.799999999996,43,33,1,15521,201704353,,,,,2.0,0.0,4.0,2.0,4.0,2.1,722.7043771114596,0.0,274.0,1154.0,0.0,56766.0,1,1,2,78.0,3,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2410.582276762283,0.04739195429378044,0.04246524815492166,27031.42857142857,7,4,7,7_1,7_2,7_1_0 +4354,2,71.0,3,0.0,7,111,1,0,75,3.0,0.0,0.0,321.6772138650093,0.0,0.0,18352.4,0,33,2,15522,201704354,,,,431.0,1.0,1.0,3.0,1.0,2.0,1.5,5216.573665060922,0.0,239.0,0.0,0.0,21290.0,0,5,3,70.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,321.6772138650093,0.017527800934210747,0.015109310186238107,14193.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +4355,2,32.0,2,0.0,9,111,2,67,55,5.0,0.0,0.0,1440.1448486843512,0.0,0.0,20785.48,71,31,2,15523,201704355,,,,630.0,2.0,1.0,3.0,1.0,3.0,1.8,3748.714398642439,0.0,1070.0,0.0,0.0,36854.0,1,1,3,63.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1440.1448486843512,0.06928610013742051,0.039077029594734664,20474.444444444445,5,3,5,5_0,5_4,5_0_0 +4356,2,61.0,2,0.0,4,111,1,0,46,9.0,0.0,0.0,267.8400232599868,0.0,0.0,25145.16,0,42,2,15524,201704356,,,,,1.0,1.0,3.0,0.0,1.0,1.0,3268.8286828769055,0.0,199.0,0.0,0.0,37069.0,0,1,2,65.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,267.8400232599868,0.010651752594136877,0.007225445068925162,37069.0,9,5,9,9_0,9_2,9_0_1 +4357,2,66.0,1,0.0,5,120,5,56,75,6.0,0.0,208.188947934516,1172.3048254243645,0.0,0.0,56803.98031599412,70,41,1,15526,201704357,,,528.0,,1.0,3.0,4.0,0.0,2.0,1.5,1586.2491031230682,0.0,871.0,0.0,0.0,32648.0,1,5,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1380.4937733588804,0.024302764800624,0.04228417585637345,21765.333333333332,6,3,6,6_1,6_0,6_0_0 +4358,2,62.0,2,0.0,2,111,2,74,54,10.0,0.0,0.0,646.0462872602698,0.0,2130.2636182200404,40197.420000000006,50,50,1,15529,201704358,,,384.0,,1.0,2.0,7.0,0.0,2.0,1.5,1731.5041127101877,0.0,480.0,1204.0,0.0,66218.0,5,5,1,109.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2776.30990548031,0.06906686810945353,0.041926816054249756,44145.333333333336,10,5,10,10_1,10_3,10_0_1 +4359,2,59.0,3,0.0,5,111,2,54,64,5.0,1586.456009138882,0.0,403.7789295376686,0.0,0.0,21856.425846751303,42,42,1,1553,201704359,,,400.0,,2.0,0.0,4.0,0.0,2.0,1.5,1982.3044848640047,0.0,300.0,0.0,0.0,29070.0,1,1,2,85.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1990.2349386765507,0.09105948761390809,0.06846353418219989,19380.0,5,3,5,5_1,5_3,5_0_0 +4360,2,61.0,3,0.0,1,111,2,0,78,3.0,0.0,0.0,1227.4879457945126,0.0,0.0,11222.32,0,50,2,15530,201704360,,,300.0,,0.0,0.0,2.0,0.0,1.0,1.0,3239.1134585099753,0.0,912.0,0.0,0.0,15387.0,0,5,3,36.0,5,4.0,1,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1227.4879457945126,0.10937916097513817,0.07977435145216823,15387.0,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +4361,1,40.0,3,150.0,6,111,6,0,21,4.0,199.89345715149915,0.0,969.0694308904046,0.0,0.0,10537.519999999999,0,43,1,15531,201704361,,,117.0,335.0,1.0,0.0,4.0,0.0,1.0,1.0,5134.3804946899245,0.0,720.0,0.0,0.0,17949.0,0,1,3,55.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1168.9628880419039,0.11093339685636697,0.0651269089109089,17949.0,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +4362,1,49.0,4,300.0,1,111,6,85,53,2.0,0.0,0.0,2018.894647688343,0.0,0.0,26217.055699499557,71,60,2,15532,201704362,,,,150.0,1.0,2.0,3.0,2.0,4.0,2.3,2161.2042704161413,0.0,1500.0,0.0,0.0,24450.0,8,1,3,75.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,2018.894647688343,0.07700691758941033,0.08257237822856209,10630.434782608696,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +4363,2,31.0,2,0.0,1,111,4,46,38,10.0,0.0,0.0,1232.8716648550148,0.0,0.0,59776.14,30,12,2,15533,201704363,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3611.4127275461524,0.0,916.0,0.0,0.0,60589.0,1,1,2,58.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1232.8716648550148,0.02062481225544197,0.020348110463203138,40392.666666666664,9,5,9,9_0,9_4,9_1_0 +4364,2,69.0,2,0.0,5,111,2,77,78,9.0,0.0,0.0,363.4010365839017,0.0,1592.3897478389006,55124.950000000004,41,41,1,15534,201704364,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1527.7259794316712,0.0,270.0,900.0,0.0,46789.0,5,5,2,90.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1955.7907844228023,0.03547923008406905,0.04180022621605083,31192.666666666668,8,4,8,8_1,8_3,8_0_0 +4365,2,24.0,4,0.0,1,120,2,0,52,3.0,0.0,0.0,956.9560630042746,0.0,2117.878364625738,19554.360000000004,0,43,2,15535,201704365,,,400.0,,1.0,2.0,6.0,1.0,2.0,1.5,2371.0669996519077,0.0,711.0,1197.0,0.0,22208.0,0,1,1,115.0,0,3.0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,3074.8344276300127,0.1572454648288163,0.13845616118650994,14805.333333333334,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +4366,1,36.0,3,15.0,1,111,4,21,34,7.0,0.0,0.0,2745.6967208561464,99.08202875442048,0.0,26891.991191295743,44,30,1,15538,201704366,,,540.0,,2.0,3.0,4.0,0.0,2.0,1.5,3411.01863139055,0.0,2040.0,0.0,0.0,38190.0,1,1,3,80.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,2844.778749610567,0.10578535183111877,0.07449014793429083,25460.0,7,4,7,7_1,7_2,7_1_0 +4367,2,56.0,2,0.0,3,111,2,0,37,8.0,1586.456009138882,0.0,672.964882562781,0.0,0.0,54339.28,0,31,1,1554,201704367,,,400.0,,2.0,1.0,6.0,1.0,2.0,1.5,2050.701435600058,0.0,500.0,0.0,0.0,48851.0,0,1,1,140.0,9,7.0,2,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2259.420891701663,0.04157988276071496,0.04625127206611253,32567.333333333332,9,5,9,9_1,9_3,9_0_1 +4368,2,37.0,2,0.0,2,111,2,43,46,8.0,0.0,0.0,726.8020731678034,0.0,2335.504963497054,46152.14000000001,33,31,1,15540,201704368,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.1,1992.6001358244607,0.0,540.0,1320.0,0.0,57262.0,1,1,2,90.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3062.3070366648576,0.06635243862288633,0.05347886969831402,27267.619047619046,7,4,7,7_1,7_3,7_0_1 +4369,1,63.0,4,242.0,4,111,1,0,77,1.0,0.0,0.0,255.72665537385677,0.0,1082.8250285304525,11002.4,0,70,2,15541,201704369,612.0,612.0,,42.0,0.0,2.0,2.0,0.0,1.0,1.0,4945.453428756019,0.0,190.0,612.0,0.0,9784.0,0,5,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1338.5516839043094,0.1216599727245246,0.13681027022734152,9784.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4370,2,82.0,2,0.0,3,111,1,0,77,4.0,0.0,0.0,511.45331074771354,0.0,123.8525359430256,17457.140000000003,0,70,2,15543,201704370,,,,540.0,0.0,2.0,2.0,0.0,1.0,1.0,5313.281888363265,0.0,380.0,70.0,0.0,17472.0,0,5,3,50.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,635.3058466907391,0.036392321233073635,0.036361369430559703,17472.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4371,1,55.0,3,272.0,3,111,2,0,77,3.0,0.0,0.0,672.964882562781,0.0,442.3304855108057,15129.02,0,60,2,15544,201704371,,,240.0,197.0,0.0,0.0,2.0,0.0,1.0,1.0,4227.276232214978,0.0,500.0,250.0,0.0,14244.0,0,7,3,35.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1115.2953680735868,0.07371894333364533,0.07829930974961996,14244.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +4372,2,38.0,2,0.0,3,111,2,63,43,7.0,0.0,0.0,1057.7904070496288,0.0,1971.1697568852403,63264.56,44,44,1,15545,201704372,,,450.0,,2.0,0.0,5.0,0.0,2.0,1.5,2206.584403538071,1900.0,0.0,0.0,0.0,40752.0,1,1,2,105.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3028.9601639348693,0.04787767691634731,0.07432666283703547,27168.0,7,4,7,7_1,7_2,7_0_1 +4373,2,38.0,2,0.0,1,120,2,46,46,9.0,793.228004569441,0.0,1009.4473238441715,0.0,0.0,58651.52977792024,43,31,1,15546,201704373,,,270.0,,2.0,0.0,4.0,2.0,4.0,2.3,1963.2885008943824,0.0,750.0,0.0,0.0,75219.0,1,1,2,95.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1802.6753284136125,0.030735350556742713,0.02396569122713161,32703.913043478264,9,5,9,9_1,9_1,9_1_0 +4374,2,60.0,3,0.0,3,211,2,0,52,7.0,95.18736054833293,0.0,561.1856475294873,0.0,1045.757428915959,18847.81087530163,0,50,2,15548,201704374,,,300.0,430.0,2.0,2.0,3.0,1.0,2.0,1.5,1812.3662620368889,1008.0,0.0,0.0,0.0,35176.0,0,1,3,45.0,1,3.0,2,9,1,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1702.1304369937793,0.09030918488386727,0.0483889708037804,23450.666666666668,6,3,6,6_0,6_1,6_0_1 +4375,1,39.0,3,353.0,9,111,2,0,52,2.0,0.0,0.0,496.6480833313324,0.0,723.6526742956781,13696.560000000001,0,43,2,15549,201704375,,,426.0,227.0,1.0,0.0,3.0,1.0,2.0,1.3,791.2116871277666,0.0,369.0,409.0,0.0,17618.0,0,1,3,70.0,6,5.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1220.3007576270106,0.08909541940655248,0.06926443169639065,13552.307692307691,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4376,2,44.0,3,0.0,4,300,5,56,69,3.0,793.228004569441,458.01568545593517,888.3136449828709,88.46609710216114,0.0,31377.970232341264,71,31,1,15551,201704376,,,350.0,,3.0,0.0,7.0,2.0,4.0,2.5,2345.0290521956226,0.0,660.0,0.0,0.0,37090.0,1,1,2,169.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2228.0234321104085,0.07100597698362227,0.06007073152090613,14836.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4377,1,39.0,3,137.0,3,111,1,0,55,4.0,0.0,0.0,555.8689929968571,0.0,0.0,19815.620000000003,0,20,2,15552,201704377,,,,231.0,1.0,0.0,3.0,1.0,2.0,1.3,603.400930114788,0.0,413.0,0.0,0.0,23564.0,0,1,3,58.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,555.8689929968571,0.028052061605786598,0.02358975526213109,18126.153846153844,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +4378,2,55.0,3,0.0,1,112,6,0,56,3.0,1586.456009138882,0.0,807.5578590753372,109.69796040667983,0.0,17113.12,0,31,1,15554,201704378,,,,,1.0,1.0,6.0,0.0,1.0,1.0,3429.6570880147824,0.0,600.0,0.0,0.0,15252.0,0,1,1,150.0,9,3.0,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2503.711828620899,0.14630364472526922,0.1641562961330251,15252.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +4379,2,47.0,3,0.0,1,111,6,67,38,7.0,1586.456009138882,0.0,1453.6041463356069,247.7050718860512,0.0,56985.479999999996,44,31,1,15556,201704379,,,,,2.0,0.0,3.0,3.0,5.0,2.8,2444.1576247035305,0.0,1080.0,0.0,0.0,69663.0,1,1,2,86.0,6,5.0,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3287.76522736054,0.05769478869635809,0.04719528626904584,24879.64285714286,7,4,7,7_1,7_2,7_1_0 +4380,2,22.0,3,0.0,4,111,1,0,47,5.0,0.0,0.0,371.4766151746551,0.0,0.0,22737.267845194034,0,31,2,15557,201704380,,,,400.0,1.0,0.0,2.0,0.0,1.0,1.0,3234.6818454182408,0.0,276.0,0.0,0.0,19596.0,0,1,3,38.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,371.4766151746551,0.0163377859514099,0.018956757255289603,19596.0,5,3,5,5_0,5_2,5_0_1 +4381,2,72.0,1,0.0,9,300,6,75,74,10.0,0.0,0.0,3429.429041539932,141.54575536345783,0.0,55144.5,50,10,1,1556,201704381,,,768.0,,0.0,2.0,6.0,0.0,2.0,1.5,1897.7020047847302,0.0,2548.0,0.0,0.0,78761.0,5,5,1,175.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3570.9747969033897,0.06475668102718113,0.04533937858716103,52507.333333333336,10,5,10,10_1,10_1,10_0_0 +4382,2,28.0,3,0.0,9,111,2,54,64,6.0,0.0,0.0,1158.0021298227516,0.0,2157.912154905947,31393.22,60,60,1,15560,201704382,,,500.0,,2.0,1.0,5.0,1.0,3.0,1.8,3796.614874351482,2080.0,0.0,0.0,0.0,38057.0,1,1,3,100.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3315.9142847286985,0.10562517271973688,0.0871302069193236,21142.777777777777,5,3,5,5_1,5_2,5_0_0 +4383,2,50.0,1,0.0,9,112,1,42,12,10.0,2221.038412794435,0.0,1884.3016711757866,184.0094819724952,0.0,68246.15478157563,30,50,1,15561,201704383,1400.0,1400.0,220.0,,2.0,4.0,8.0,0.0,2.0,1.5,1865.7452335412866,0.0,1400.0,0.0,0.0,109801.0,1,1,2,200.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4289.349565942717,0.0628511537341692,0.03906475866287845,73200.66666666667,10,5,10,10_1,10_0,10_0_0 +4384,2,83.0,2,0.0,5,112,2,65,75,6.0,0.0,0.0,699.8834778652922,0.0,1787.0151614636552,27432.745846751302,70,50,1,15562,201704384,,,561.0,,1.0,2.0,4.0,0.0,2.0,1.5,3087.55086192681,0.0,520.0,1010.0,0.0,33100.0,5,5,1,70.0,10,2.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2486.8986393289474,0.0906543826571942,0.07513288940570838,22066.666666666668,6,3,6,6_1,6_1,6_0_0 +4385,2,69.0,2,0.0,7,111,2,23,23,10.0,0.0,0.0,974.6750282303955,0.0,1816.2860294769937,58128.125387953245,43,20,1,15563,201704385,,,240.0,,2.0,2.0,6.0,1.0,3.0,1.8,1944.6918523034565,1750.7084024357823,0.0,0.0,0.0,87646.0,1,1,3,112.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2790.961057707389,0.04801395261037958,0.031843564540394186,48692.22222222222,10,5,10,10_1,10_3,10_0_0 +4386,2,84.0,1,0.0,3,112,2,0,74,8.0,1646.7413374861596,0.0,807.5578590753372,70.77287768172891,0.0,20594.239999999998,0,41,1,15565,201704386,,,150.0,,0.0,2.0,8.0,0.0,1.0,1.0,2633.5425736128923,0.0,600.0,0.0,0.0,30512.0,0,5,1,150.0,8,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2525.072074243226,0.12261059763522354,0.08275668832732125,30512.0,8,4,8,8_1,8_1,8_0_1 +4387,2,94.0,1,0.0,2,111,1,0,75,6.0,0.0,0.0,32.30231436301349,0.0,0.0,20418.84,0,41,2,15566,201704387,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2049.5508130563626,0.0,24.0,0.0,0.0,21346.0,0,5,1,80.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,32.30231436301349,0.0015819857721111232,0.00151327248023112,21346.0,6,3,6,6_0,6_3,6_0_1 +4388,2,66.0,2,0.0,7,112,2,75,74,9.0,0.0,138.792631956344,1756.6161187006935,3696.1135369282924,105.67195390338803,37236.94145163501,31,12,1,15568,201704388,,,282.0,,0.0,2.0,7.0,0.0,2.0,1.5,2124.280954776712,101.85663193904527,1263.0,0.0,0.0,56790.0,5,5,1,180.0,7,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5697.194241488718,0.15299844776157265,0.10032037755746995,37860.0,9,5,9,9_1,9_0,9_0_0 +4389,2,55.0,3,0.0,7,111,2,65,52,7.0,0.0,0.0,403.7789295376686,0.0,1061.5931652259337,18620.24,71,71,2,15569,201704389,,,,440.0,2.0,2.0,4.0,0.0,2.0,1.5,2192.521186124159,0.0,300.0,600.0,0.0,37400.0,1,1,3,92.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1465.3720947636023,0.0786978091992156,0.039181072052502736,24933.333333333332,7,4,7,7_0,7_2,7_0_0 +4390,2,54.0,4,0.0,7,111,4,0,56,1.0,0.0,0.0,1345.929765125562,0.0,0.0,28040.450989269943,0,71,1,1557,201704390,,,360.0,,1.0,0.0,5.0,2.0,3.0,2.0,3499.6145511044915,0.0,1000.0,0.0,0.0,9301.0,0,4,1,115.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1345.929765125562,0.04799957624221523,0.1447080706510657,4650.5,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +4391,2,54.0,2,0.0,5,112,2,46,37,10.0,0.0,0.0,646.0462872602698,0.0,3308.6320316208266,66895.29839983724,44,20,1,15572,201704391,,,700.0,,2.0,1.0,6.0,1.0,3.0,2.0,1864.4977513640201,0.0,480.0,1870.0,0.0,95295.0,1,1,1,140.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3954.6783188810964,0.05911743296582288,0.041499326500667365,47647.5,10,5,10,10_1,10_2,10_0_0 +4392,2,43.0,4,0.0,7,111,6,46,53,6.0,0.0,0.0,1951.598159432065,53.079658261296686,0.0,46738.52,41,71,1,15573,201704392,,,420.0,,2.0,2.0,4.0,1.0,3.0,1.8,917.2346211513211,0.0,1450.0,0.0,0.0,49399.0,1,1,2,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2004.6778176933617,0.04289134139663305,0.04058134411007028,27443.888888888887,8,4,8,8_1,8_3,8_0_0 +4393,2,50.0,2,0.0,7,111,2,75,38,10.0,0.0,0.0,2171.253993417659,0.0,4046.0852904486505,71609.18121314108,42,20,1,15575,201704393,,,,,1.0,0.0,5.0,2.0,4.0,2.5,1559.3837720984461,3900.0,0.0,0.0,0.0,151306.0,5,1,1,105.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,6217.339283866309,0.08682321426578968,0.041091161512870004,60522.4,10,5,10,10_1,10_4,10_0_0 +4394,2,62.0,1,0.0,6,112,2,77,31,10.0,2060.806355871408,0.0,1041.749638207185,0.0,0.0,60642.715699403016,44,10,1,15576,201704394,,,383.0,,1.0,3.0,6.0,0.0,2.0,1.5,2885.63410072689,0.0,774.0,0.0,0.0,83760.0,6,1,1,200.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3102.555994078593,0.05116123112720586,0.03704102189683134,55840.0,10,5,10,10_1,10_0,10_0_0 +4395,2,67.0,3,0.0,5,111,4,0,78,4.0,0.0,0.0,1749.7086946632305,176.75526201011795,0.0,20688.019999999997,0,70,1,15577,201704395,,,200.0,,0.0,2.0,4.0,0.0,1.0,1.0,1817.8479196220505,0.0,1300.0,0.0,0.0,17710.0,0,5,1,97.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1926.4639566733485,0.09311978413948502,0.10877831488838784,17710.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4396,0,40.0,3,0.0,1,111,1,0,31,8.0,0.0,0.0,0.0,0.0,0.0,67242.20000000001,0,30,2,15579,201704396,,,,,1.0,0.0,5.0,0.0,1.0,1.0,4479.877300512806,0.0,0.0,0.0,0.0,34386.0,0,1,5,100.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,34386.0,9,5,9,9_0,9_4,9_1_0 +4397,2,85.0,3,0.0,2,111,2,77,72,3.0,0.0,0.0,810.6014908759261,0.0,1510.538508434163,29281.32,70,70,1,1558,201704397,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1500.5325487753632,1456.0,0.0,0.0,0.0,21170.0,5,5,1,121.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2321.139999310089,0.07927033341769049,0.10964289085073638,14113.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +4398,2,54.0,1,0.0,8,111,4,0,45,6.0,0.0,0.0,1076.7438121004495,0.0,0.0,16971.405846751302,0,60,2,15580,201704398,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3795.1563666665475,0.0,800.0,0.0,0.0,23712.0,0,1,1,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1076.7438121004495,0.06344458566504446,0.04540923634026862,23712.0,6,3,6,6_0,6_4,6_0_0 +4399,2,32.0,4,0.0,9,221,2,0,63,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,26240.32,0,43,1,15581,201704399,,,120.0,,1.0,0.0,4.0,0.0,1.0,1.0,3382.867307598426,0.0,1200.0,0.0,0.0,22583.0,0,1,3,95.0,1,1.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.06155091546713891,0.07151909481249942,22583.0,6,3,6,6_1,6_1,6_0_0 +4400,2,27.0,1,0.0,99,111,2,0,48,8.0,0.0,0.0,1712.0226612397148,0.0,0.0,25324.11672205293,0,20,2,15582,201704400,,,,620.0,1.0,0.0,2.0,0.0,1.0,1.0,3528.4357179220337,0.0,1272.0,0.0,0.0,30487.0,0,1,3,40.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1712.0226612397148,0.06760443730496783,0.05615582580246383,30487.0,8,4,8,8_0,8_3,8_0_0 +4401,2,46.0,3,0.0,9,120,5,54,64,4.0,0.0,277.585263912688,1144.0403003567276,0.0,0.0,29775.936722052928,42,50,1,15583,201704401,,,510.0,,2.0,1.0,4.0,2.0,4.0,2.3,966.9752027413568,0.0,850.0,0.0,0.0,39936.0,1,1,2,90.0,0,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1421.6255642694155,0.04774410886010911,0.035597595259150024,17363.478260869568,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4402,2,39.0,2,0.0,2,112,2,0,85,1.0,0.0,0.0,1345.929765125562,0.0,0.0,11405.9658467513,0,60,1,15584,201704402,,,,,0.0,0.0,3.0,1.0,2.0,1.5,254.45069288700543,0.0,1000.0,0.0,0.0,10320.0,0,6,1,80.0,5,0.0,2,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1345.929765125562,0.11800226155410731,0.13041955088425988,6880.0,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +4403,2,50.0,3,0.0,1,300,1,0,55,5.0,0.0,0.0,761.796247061068,44.23304855108057,0.0,19468.080000000005,0,50,2,15585,201704403,,,450.0,400.0,1.0,0.0,4.0,0.0,1.0,1.0,2939.8751416918785,0.0,566.0,0.0,0.0,20257.0,0,1,3,70.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,806.0292956121486,0.041402608557810965,0.03979016120907087,20257.0,5,3,5,5_0,5_0,5_1_0 +4404,1,21.0,3,329.0,3,111,2,84,84,1.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,24846.907533755657,41,41,2,15586,201704404,,,,201.0,0.0,0.0,2.0,0.0,2.0,1.5,2438.314175191465,500.0,0.0,0.0,0.0,3990.0,3,3,3,48.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,797.0947799828602,0.032080240927365736,0.1997731278152532,2660.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4405,2,52.0,2,0.0,5,111,2,48,42,6.0,0.0,0.0,4151.362581186225,95.54338487033404,211.6413844234679,64626.68256880423,44,30,1,15587,201704405,,,600.0,,2.0,0.0,4.0,3.0,5.0,3.0,1810.9555273462852,204.0,3000.0,0.0,0.0,64085.0,1,1,1,140.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4458.547350480027,0.06898926531983555,0.06957240150550092,21361.666666666668,6,3,6,6_1,6_3,6_0_0 +4406,2,35.0,1,0.0,1,111,4,0,37,10.0,0.0,0.0,847.935752029104,0.0,0.0,57531.40000000001,0,20,2,15589,201704406,,,,1200.0,1.0,0.0,2.0,0.0,1.0,1.0,3053.5126370947114,0.0,630.0,0.0,0.0,55013.0,0,1,3,47.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,847.935752029104,0.014738660140881396,0.015413370512953375,55013.0,10,5,10,10_0,10_4,10_1_0 +4408,2,71.0,1,0.0,4,112,4,77,74,10.0,0.0,0.0,1089.090569861929,44.23304855108057,1628.1991353650035,38931.47547810455,70,31,1,15590,201704408,,,180.0,,0.0,3.0,9.0,0.0,2.0,1.5,2244.4515629108873,1569.4124498347871,160.0,0.0,0.0,70759.0,5,5,1,250.0,9,1.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2761.522753778013,0.07093290762460623,0.03902715914269581,47172.666666666664,10,5,10,10_1,10_1,10_0_1 +4409,2,48.0,4,0.0,1,120,2,55,64,6.0,0.0,499.65347504283835,2422.6735772260117,0.0,0.0,51452.62,42,50,1,15591,201704409,,,360.0,,3.0,0.0,4.0,1.0,3.0,2.0,2560.8071099060794,0.0,1800.0,0.0,0.0,41381.0,1,1,2,90.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2922.32705226885,0.05679646735713069,0.07062002011234261,20690.5,5,3,5,5_1,5_0,5_1_0 +4410,1,68.0,3,230.0,99,111,1,52,78,1.0,0.0,0.0,444.15682249143543,0.0,0.0,12068.12,71,71,2,15594,201704410,,,,87.0,1.0,5.0,3.0,0.0,2.0,1.5,1592.2126076228967,0.0,330.0,0.0,0.0,13180.0,4,5,3,67.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,444.15682249143543,0.0368041436852994,0.03369930367916809,8786.666666666666,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4411,1,38.0,3,126.0,7,111,2,85,62,2.0,0.0,0.0,632.5869896090142,0.0,2158.572769292732,21744.651693502597,71,50,1,15596,201704411,,,627.0,504.0,1.0,0.0,4.0,2.0,4.0,2.1,1496.0508974700742,0.0,470.0,1220.0,0.0,25822.0,6,1,3,96.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2791.1597589017465,0.1283607481160877,0.1080923150376325,12296.190476190475,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +4412,2,19.0,2,0.0,4,112,4,0,65,4.0,0.0,0.0,1345.929765125562,0.0,0.0,12351.699999999999,0,42,2,15597,201704412,,,,300.0,1.0,0.0,2.0,0.0,1.0,1.0,1469.1743052852967,0.0,1000.0,0.0,0.0,18001.0,0,1,3,40.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1345.929765125562,0.10896716768748935,0.07476972196686639,18001.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +4413,2,33.0,3,0.0,1,221,6,0,43,5.0,0.0,0.0,740.261370819059,0.0,0.0,14820.699999999999,0,31,2,15598,201704413,,,195.0,,1.0,0.0,3.0,0.0,1.0,1.0,1973.769920457475,0.0,550.0,0.0,0.0,22026.0,0,1,2,30.0,1,3.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,740.261370819059,0.04994780076643202,0.03360852496227454,22026.0,6,3,6,6_0,6_1,6_1_0 +4414,2,80.0,3,0.0,1,112,2,77,74,5.0,0.0,0.0,1053.4801697023233,0.0,3549.0179658560687,34162.70796901417,41,30,1,15599,201704414,,,200.0,,0.0,3.0,9.0,0.0,2.0,1.5,2340.7784262329224,724.5788691887108,483.0,1581.0,0.0,33801.0,4,5,1,180.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4602.498135558392,0.13472287207831687,0.13616455535511945,22534.0,6,3,6,6_1,6_0,6_1_0 +4415,2,58.0,3,0.0,1,300,4,78,56,4.0,0.0,499.65347504283835,2207.3248148059215,106.15931652259337,0.0,19223.187533755656,50,50,1,156,201704415,,,408.0,,1.0,2.0,4.0,0.0,2.0,1.5,2019.616769541452,0.0,1640.0,0.0,0.0,26310.0,5,1,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2813.1376063713533,0.1463408501546126,0.1069227520475619,17540.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4416,1,70.0,3,116.0,4,112,4,0,72,2.0,0.0,0.0,403.7789295376686,109.69796040667983,0.0,9739.14,0,71,2,1560,201704416,,,250.0,191.0,0.0,3.0,2.0,0.0,1.0,1.0,2898.3812637650676,0.0,300.0,0.0,0.0,11422.0,0,5,3,46.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,513.4768899443484,0.05272302173953228,0.04495507703942816,11422.0,2,1,2_1,2_0_1,2_0_1,2_0_1_1 +4417,2,81.0,3,0.0,6,300,2,0,74,9.0,0.0,0.0,1079.993214628814,4030.5153839744617,1250.078385038494,20714.535820177494,0,30,1,15600,201704417,,,164.0,,0.0,2.0,4.0,0.0,1.0,1.0,3453.479368756559,1204.94387826153,304.0,0.0,0.0,30732.0,0,5,1,85.0,0,1.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6360.58698364177,0.30705911244441625,0.20696951007554892,30732.0,8,4,8,8_1,8_1,8_0_0 +4418,2,29.0,4,0.0,5,111,2,0,37,6.0,0.0,0.0,826.4008757870951,0.0,0.0,23229.32,0,20,2,15605,201704418,,,,500.0,1.0,0.0,1.0,0.0,1.0,1.0,2778.1181023226927,0.0,614.0,0.0,0.0,24497.0,0,4,3,33.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,826.4008757870951,0.0355757669956372,0.03373477878054844,24497.0,7,4,7,7_0,7_3,7_0_0 +4419,2,28.0,1,0.0,9,111,4,47,43,10.0,0.0,0.0,2170.9847111475315,0.0,0.0,67998.99015820339,42,33,1,15608,201704419,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2431.373288830856,0.0,1613.0,0.0,0.0,98816.0,1,1,2,130.0,5,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2170.9847111475315,0.0319267198835838,0.021969971574922396,65877.33333333333,10,5,10,10_1,10_2,10_0_0 +4420,2,59.0,3,0.0,3,111,2,0,52,5.0,0.0,0.0,403.7789295376686,0.0,1326.9914565324173,17858.98,0,50,2,15609,201704420,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2072.926659657586,0.0,300.0,750.0,0.0,21356.0,0,1,1,70.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1730.7703860700858,0.09691317119287249,0.08104375285962193,21356.0,6,3,6,6_0,6_2,6_0_1 +4421,2,49.0,2,0.0,7,112,3,52,63,9.0,0.0,0.0,2516.888660784801,0.0,0.0,17332.137751468177,71,50,1,15610,201704421,600.0,600.0,289.0,,3.0,1.0,5.0,2.0,4.0,2.3,2017.8333676338427,0.0,1870.0,0.0,0.0,78989.0,1,1,1,120.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2516.888660784801,0.1452151313862942,0.031863786866333295,34343.04347826087,9,5,9,9_1,9_0,9_0_0 +4422,1,64.0,4,200.0,5,300,4,0,78,3.0,0.0,0.0,1144.0403003567276,0.0,0.0,15989.79665845403,0,60,2,15611,201704422,,,,266.0,0.0,0.0,5.0,0.0,1.0,1.0,3062.258598094825,0.0,850.0,0.0,0.0,15590.0,0,5,3,120.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1144.0403003567276,0.0715481456577409,0.07338295704661499,15590.0,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +4423,1,50.0,3,550.0,99,111,2,0,21,2.0,0.0,0.0,874.8543473316153,0.0,0.0,48233.85119129575,0,30,2,15612,201704423,,,,,1.0,0.0,5.0,3.0,4.0,2.3,458.5146255077236,0.0,650.0,0.0,0.0,29693.0,0,7,3,105.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,874.8543473316153,0.018137766853033102,0.029463319547759246,12910.000000000002,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +4424,2,31.0,2,0.0,1,111,2,46,37,9.0,0.0,0.0,403.7789295376686,0.0,1656.0853377524566,34077.8,20,20,2,15613,201704424,,,,730.0,2.0,0.0,3.0,0.0,2.0,1.5,2746.907025194853,0.0,300.0,936.0,0.0,51237.0,4,1,3,75.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2059.864267290125,0.060445928648273216,0.04020267125885835,34158.0,9,5,9,9_0,9_3,9_1_0 +4425,2,65.0,1,0.0,6,112,2,74,74,10.0,0.0,0.0,1557.1048684530144,0.0,3852.112088483563,38965.756216933725,30,30,1,15614,201704425,,,583.0,,0.0,3.0,5.0,0.0,2.0,1.5,1592.1169463338015,621.067602161752,900.0,1813.0,0.0,70457.0,5,5,1,180.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5409.216956936578,0.13881976078744346,0.07677330793159769,46971.333333333336,10,5,10,10_1,10_0,10_0_0 +4426,2,53.0,3,0.0,3,111,1,47,54,9.0,0.0,0.0,726.8020731678034,0.0,1680.8558449410618,31251.460000000003,50,41,2,15615,201704426,,,,511.0,3.0,1.0,4.0,1.0,3.0,2.0,2644.639483527189,0.0,540.0,950.0,0.0,65481.0,1,1,3,85.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2407.6579181088655,0.07704145400275268,0.03676880191366756,32740.5,9,5,9,9_0,9_3,9_0_1 +4427,2,49.0,4,0.0,4,111,1,0,54,7.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,38505.22,0,43,2,15616,201704427,,,380.0,286.0,1.0,2.0,4.0,0.0,1.0,1.0,2090.875392322014,720.0,0.0,0.0,0.0,23163.0,0,1,3,87.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1147.8164831753188,0.029809373460931238,0.04955387830485338,23163.0,6,3,6,6_0,6_3,6_0_1 +4428,2,55.0,3,0.0,1,111,5,77,38,5.0,0.0,566.2739383818835,1292.0925745205395,176.9321942043223,0.0,34784.4,50,50,1,15617,201704428,,,370.0,,1.0,3.0,4.0,1.0,3.0,2.0,1933.0159753270868,0.0,960.0,0.0,0.0,41748.0,6,1,1,130.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2035.2987071067453,0.0585118244703587,0.04875200505669122,20874.0,5,3,5,5_1,5_2,5_1_0 +4429,2,72.0,2,0.0,4,111,1,0,75,6.0,0.0,0.0,748.3369494098124,0.0,0.0,12124.32,0,41,2,15618,201704429,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2439.1173157055414,0.0,556.0,0.0,0.0,22336.0,0,5,1,52.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,748.3369494098124,0.0617219728124804,0.03350362416770292,22336.0,6,3,6,6_0,6_3,6_0_1 +4430,1,39.0,3,85.0,9,111,2,0,54,3.0,0.0,0.0,543.3702301475987,0.0,1012.5587803789443,31805.067849749772,0,31,1,15619,201704430,,,497.0,370.0,1.0,0.0,5.0,2.0,3.0,1.6,637.0464896001016,976.0,0.0,0.0,0.0,24718.0,0,1,3,84.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1555.9290105265432,0.0489207889093934,0.06294720489224627,15448.75,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +4431,1,49.0,4,220.0,6,111,2,0,56,3.0,0.0,0.0,539.7178358153503,0.0,877.5836832534386,33370.78,0,41,2,1562,201704431,,,240.0,,1.0,0.0,3.0,2.0,3.0,1.8,576.4017178373441,0.0,401.0,496.0,0.0,26048.0,0,1,3,83.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1417.3015190687888,0.04247133327626111,0.054411145541645764,14471.111111111111,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +4432,1,58.0,5,18.0,9,221,6,0,52,3.0,0.0,0.0,807.5578590753372,122.08321400098238,0.0,21379.0,0,71,1,15620,201704432,,,,,2.0,1.0,4.0,1.0,2.0,1.5,3279.7893998055356,0.0,600.0,0.0,0.0,22496.0,0,1,3,80.0,1,2.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,929.6410730763196,0.043483842699673494,0.041324727643862004,14997.333333333334,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +4433,2,61.0,3,0.0,9,111,2,75,68,9.0,0.0,0.0,1615.1157181506744,0.0,0.0,36496.62784974978,50,70,1,15622,201704433,,,363.0,,1.0,1.0,4.0,0.0,2.0,1.5,1111.244150538702,0.0,1200.0,0.0,0.0,46340.0,5,1,2,120.0,7,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.04425383421174753,0.03485359771581084,30893.333333333332,8,4,8,8_1,8_2,8_0_0 +4434,2,64.0,1,0.0,3,111,2,34,34,10.0,0.0,0.0,1201.9152802571268,0.0,2009.9497261611011,33085.529510687295,10,10,1,15624,201704434,,,366.0,,2.0,4.0,6.0,0.0,2.0,1.5,1636.3608091482322,0.0,893.0,1136.0,0.0,199645.0,1,1,1,120.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3211.865006418228,0.09707763647490456,0.016087881020903243,133096.66666666666,10,5,10,10_1,10_3,10_0_1 +4435,2,32.0,2,0.0,8,111,2,0,54,8.0,0.0,0.0,250.5293069328068,0.0,466.8559950517674,19724.1,0,20,8,15625,201704435,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3213.6497680788443,450.0,0.0,0.0,0.0,30241.0,0,1,1,33.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,717.3853019845742,0.03637100308681127,0.023722274461313256,30241.0,8,4,8,8_0,8_4,8_0_0 +4436,1,58.0,9,98.0,3,111,1,0,52,8.0,0.0,0.0,484.5347154452023,0.0,507.795397366405,19319.780000000002,0,71,2,15626,201704436,,,300.0,286.0,3.0,2.0,5.0,2.0,3.0,2.0,805.1819535779729,0.0,360.0,287.0,0.0,56606.0,0,1,3,90.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,992.3301128116073,0.05136342716177964,0.017530475794290484,28303.0,8,4,8,8_0,8_2,8_0_1 +4437,2,52.0,2,0.0,8,400,2,12,12,2.0,0.0,0.0,1944.868510606437,0.0,0.0,27531.559999999998,71,50,1,15627,201704437,,,490.0,,2.0,0.0,6.0,0.0,2.0,1.5,1297.2895749035174,0.0,1445.0,0.0,0.0,19189.0,1,1,1,125.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1944.868510606437,0.07064142063168367,0.10135330192331216,12792.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +4438,1,37.0,3,46.0,6,111,1,0,34,2.0,0.0,0.0,390.319631886413,0.0,0.0,10219.785846751302,0,20,2,15628,201704438,,,,319.0,1.0,0.0,1.0,0.0,1.0,1.0,3234.1882892517606,0.0,290.0,0.0,0.0,12812.0,0,4,3,30.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,390.319631886413,0.03819254510215486,0.030465160153482124,12812.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4439,2,40.0,2,0.0,6,111,2,62,38,9.0,0.0,416.377895869032,555.0615978044631,0.0,1034.3453934813604,58047.96000000001,43,31,1,15629,201704439,,,630.0,,2.0,1.0,5.0,2.0,4.0,2.1,1809.4963268981498,997.0,0.0,0.0,0.0,71868.0,1,1,2,90.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2005.7848871548554,0.03455392553252268,0.027909290465225906,34222.857142857145,9,5,9,9_1,9_3,9_0_0 +4440,2,63.0,3,0.0,6,300,4,77,75,9.0,0.0,346.98157989085996,1606.3168151226434,419.32930026424384,322.1984550563772,44134.64127909817,70,44,1,1563,201704440,,,148.0,,0.0,3.0,5.0,0.0,2.0,1.5,2397.716496998863,310.5653698616263,1065.0,0.0,0.0,48706.0,5,5,1,140.0,0,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2694.8261503341246,0.06105920592607997,0.055328422583134,32470.666666666668,9,5,9,9_1,9_1,9_0_0 +4441,2,64.0,1,0.0,1,211,2,74,74,10.0,0.0,0.0,1821.0429722148854,0.0,4778.938565458745,78309.48000000001,20,20,1,15631,201704441,,,773.0,,0.0,3.0,5.0,0.0,2.0,1.5,2674.6071043579714,0.0,1353.0,2701.0,0.0,94840.0,5,5,1,350.0,1,2.0,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,6599.981537673631,0.08428074784398555,0.06959069525172533,63226.666666666664,10,5,10,10_1,10_1,10_1_0 +4442,2,41.0,1,0.0,1,112,2,35,35,9.0,0.0,208.188947934516,1130.581002705472,0.0,2377.968690106092,58288.72,31,30,1,15632,201704442,,,640.0,,2.0,2.0,7.0,3.0,5.0,2.6,2022.0840890019774,0.0,840.0,1344.0,0.0,79669.0,1,1,2,150.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3716.73864074608,0.06376428648194847,0.04665225672151125,30641.923076923074,8,4,8,8_1,8_0,8_1_0 +4443,2,58.0,1,0.0,2,111,1,0,35,9.0,0.0,0.0,946.2212715571386,0.0,860.3430041558803,50850.29774272367,0,60,2,15633,201704443,,,,,1.0,0.0,5.0,0.0,1.0,1.0,4094.749284761798,829.2800263327805,360.0,0.0,0.0,36810.0,0,1,2,85.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1806.564275713019,0.03552711303389617,0.04907808409978318,36810.0,9,5,9,9_0,9_4,9_0_1 +4444,1,60.0,5,166.0,1,112,7,0,54,2.0,0.0,0.0,456.2701903775655,70.77287768172891,0.0,8096.770875301629,0,71,2,15634,201704444,,,,,1.0,1.0,2.0,0.0,1.0,1.0,3092.741002315543,0.0,339.0,0.0,0.0,11522.0,0,4,3,44.0,9,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,527.0430680592945,0.06509299524171858,0.04574232494873238,11522.0,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +4445,2,72.0,3,0.0,5,112,2,77,78,4.0,3514.000060242624,0.0,767.1799661215703,0.0,0.0,22861.280000000002,50,50,1,15635,201704445,,,176.0,,0.0,3.0,5.0,0.0,2.0,1.5,2193.7671668010553,0.0,570.0,0.0,0.0,25599.0,5,5,1,120.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4281.180026364194,0.18726773069417785,0.1672401275973356,17066.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4446,2,86.0,3,0.0,3,400,4,86,86,2.0,0.0,0.0,3230.231436301349,1893.1744779862486,0.0,20388.07087530163,71,71,1,15639,201704446,,,100.0,,0.0,4.0,6.0,0.0,2.0,1.5,1638.0153315027649,0.0,2400.0,0.0,0.0,18980.0,5,5,1,110.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5123.405914287598,0.2512942958469973,0.26993708715951514,12653.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +4447,2,82.0,3,0.0,4,112,2,0,86,9.0,0.0,0.0,3318.377449416678,0.0,590.6371235959333,43198.96153218925,0,41,1,1564,201704447,,,810.0,,0.0,2.0,5.0,0.0,1.0,1.0,1388.3484240624073,569.3119686482727,2230.0,0.0,0.0,32821.0,0,6,5,100.0,9,2.0,1,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3909.014573012611,0.09048862366980397,0.11910101986571436,32821.0,9,5,9,9_1,9_1,9_0_1 +4448,2,59.0,2,0.0,9,112,2,0,52,8.0,0.0,0.0,821.0171567265928,0.0,0.0,19708.35202733072,0,60,2,15640,201704448,,,,407.0,1.0,2.0,2.0,0.0,1.0,1.0,3321.48261111906,0.0,610.0,0.0,0.0,30306.0,0,1,3,49.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,821.0171567265928,0.041658336302702555,0.027090911262673822,30306.0,8,4,8,8_0,8_2,8_0_0 +4449,2,62.0,4,0.0,8,300,4,78,77,8.0,0.0,138.792631956344,2126.569028898388,0.0,0.0,42309.13506751131,70,50,1,15642,201704449,,,140.0,,0.0,3.0,5.0,0.0,2.0,1.5,1775.2284160498034,0.0,1580.0,0.0,0.0,41152.0,5,5,1,95.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2265.361660854732,0.053543086079163936,0.05504864067007027,27434.666666666668,8,4,8,8_1,8_0,8_0_0 +4450,2,55.0,5,0.0,8,111,1,0,46,6.0,0.0,0.0,713.3427755165478,180.47083808840873,0.0,12894.18,0,41,2,15643,201704450,,,,410.0,1.0,2.0,3.0,0.0,1.0,1.0,6839.58271463934,0.0,530.0,0.0,0.0,22550.0,0,1,3,56.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,893.8136136049566,0.0693191512453647,0.039636967343900514,22550.0,6,3,6,6_0,6_2,6_0_0 +4451,2,46.0,3,0.0,7,111,2,54,37,10.0,0.0,0.0,167.01953795520456,0.0,311.2373300345116,55916.51999999999,31,31,1,15644,201704451,,,400.0,,2.0,0.0,7.0,2.0,4.0,2.1,1678.2670920646626,300.0,0.0,0.0,0.0,82700.0,1,1,2,150.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,478.25686798971617,0.008553051369965732,0.005783033470250498,39380.95238095238,9,5,9,9_1,9_3,9_0_0 +4452,1,30.0,4,340.0,99,112,1,0,85,1.0,0.0,0.0,1227.4879457945126,141.54575536345783,0.0,7027.48,0,70,2,15645,201704452,,,,163.0,0.0,0.0,2.0,1.0,2.0,1.3,1705.4562376362023,0.0,912.0,0.0,0.0,13130.0,0,8,3,57.0,8,2.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1369.0337011579704,0.19481146885625722,0.1042676086182765,10100.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +4453,1,72.0,3,125.0,4,111,1,0,77,1.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,16494.86,0,50,2,15646,201704453,,,,263.0,0.0,2.0,4.0,0.0,1.0,1.0,4722.269005122001,600.0,0.0,0.0,0.0,10307.0,0,5,3,75.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,956.5137359794323,0.05798859377887611,0.0928023417075223,10307.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4454,1,25.0,4,87.0,99,111,1,0,84,1.0,0.0,0.0,344.55801987214386,0.0,0.0,5239.6,0,43,2,15647,201704454,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3381.457681183938,0.0,256.0,0.0,0.0,6384.0,0,3,3,29.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,344.55801987214386,0.06576036717920143,0.053972120907290706,6384.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4455,2,50.0,4,0.0,7,112,6,85,47,3.0,1586.456009138882,0.0,1951.598159432065,226.47320858153253,0.0,34422.240000000005,50,42,1,15648,201704455,,,800.0,,2.0,1.0,5.0,2.0,4.0,2.5,2059.177421079408,0.0,1450.0,0.0,0.0,42100.0,7,1,1,110.0,7,4.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3764.5273771524794,0.10936323078197348,0.08941870254518954,16840.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4456,2,52.0,3,0.0,1,112,2,0,64,8.0,1189.8420068541616,0.0,726.8020731678034,127.39117982711205,0.0,19801.8258467513,0,71,1,15649,201704456,,,176.0,,1.0,1.0,3.0,0.0,1.0,1.0,2689.1625414114146,0.0,540.0,0.0,0.0,28550.0,0,1,2,100.0,7,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2044.035259849077,0.10322458523108477,0.07159493029243702,28550.0,8,4,8,8_1,8_0,8_1_0 +4457,2,58.0,1,0.0,1,111,2,77,62,9.0,0.0,0.0,825.0549460219695,0.0,2427.509704483302,50160.29,50,71,1,1565,201704457,,,494.0,,1.0,2.0,5.0,1.0,3.0,2.0,1300.0585174917621,0.0,613.0,1372.0,0.0,73245.0,5,1,1,95.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3252.5646505052714,0.06484341798074277,0.044406644146430085,36622.5,9,5,9,9_1,9_3,9_1_0 +4458,2,44.0,4,0.0,7,112,2,0,56,3.0,2141.715612337491,0.0,928.6915379366377,0.0,0.0,67711.84,0,50,1,15651,201704458,,,396.0,,2.0,0.0,6.0,1.0,3.0,2.0,322.7123815925281,0.0,690.0,0.0,0.0,27680.0,0,4,3,110.0,4,0.0,5,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3070.407150274129,0.04534520329493526,0.11092511381048153,13840.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4459,2,74.0,4,0.0,7,300,5,77,78,4.0,0.0,166.55115834761278,1036.3659191466827,132.69914565324171,0.0,27266.199999999997,71,71,1,15652,201704459,,,,,0.0,2.0,7.0,0.0,2.0,1.5,2068.0402238138963,0.0,770.0,0.0,0.0,24324.0,5,5,5,91.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1335.616223147537,0.0489843184289537,0.05490939907694199,16216.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4460,2,35.0,2,0.0,3,111,1,0,52,7.0,0.0,0.0,565.290501352736,0.0,141.54575536345783,30197.14,0,31,2,15653,201704460,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2966.333399600295,0.0,420.0,80.0,0.0,24736.0,0,1,2,59.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,706.8362567161938,0.023407390789862675,0.028575204427401107,24736.0,7,4,7,7_0,7_4,7_0_1 +4461,2,30.0,4,0.0,9,300,4,56,63,4.0,0.0,0.0,2072.7318382933654,0.0,0.0,32919.47099423837,44,50,1,15654,201704461,,,672.0,,2.0,0.0,4.0,2.0,4.0,2.1,2712.5797201943747,0.0,1540.0,0.0,0.0,37007.0,1,1,2,150.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2072.7318382933654,0.06296370432733074,0.056009183081399884,17622.38095238095,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4462,1,27.0,3,101.0,99,111,2,0,52,2.0,0.0,0.0,336.4824412813905,0.0,1250.9106130245586,12857.88,0,71,2,15655,201704462,,,320.0,221.0,1.0,0.0,2.0,0.0,1.0,1.0,4076.5997769594783,0.0,250.0,707.0,0.0,13216.0,0,4,3,62.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1587.3930543059491,0.12345682603243686,0.12011145992024433,13216.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4463,2,66.0,3,0.0,99,211,1,78,78,3.0,0.0,0.0,380.8045465378663,0.0,709.6211124786864,19818.039999999997,70,71,2,15656,201704463,,,420.0,327.0,0.0,3.0,4.0,0.0,2.0,1.5,2356.911020761467,684.0,0.0,0.0,0.0,20620.0,6,5,3,72.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1090.4256590165528,0.055021871941753724,0.05288194272631197,13746.666666666666,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +4464,2,29.0,3,0.0,4,112,4,0,62,5.0,0.0,0.0,1413.22625338184,51.310336319253466,0.0,20764.941349499146,0,50,1,15657,201704464,,,220.0,,1.0,0.0,2.0,0.0,1.0,1.0,2684.3180932169544,0.0,1050.0,0.0,0.0,19428.0,0,1,1,80.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1464.5365897010936,0.07052929093567695,0.07538277690452407,19428.0,5,3,5,5_1,5_0,5_0_1 +4465,2,26.0,4,0.0,1,111,4,0,46,3.0,0.0,0.0,1356.6972032465665,0.0,0.0,20923.386162745413,0,31,2,15659,201704465,,,,703.0,1.0,0.0,2.0,0.0,1.0,1.0,3904.717819150059,0.0,1008.0,0.0,0.0,15355.0,0,2,3,28.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1356.6972032465665,0.06484118740121511,0.08835540236057092,15355.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +4466,2,66.0,1,0.0,8,111,2,74,72,8.0,0.0,0.0,4146.250904827833,0.0,6783.394894981732,236024.17572291085,42,44,1,1566,201704466,,,791.0,,0.0,1.0,9.0,2.0,4.0,2.5,1331.977206126609,2902.480092164732,1880.0,2132.0,0.0,128476.0,6,5,1,320.0,5,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,10929.645799809565,0.04630731477541868,0.08507149817716589,51390.4,10,5,10,10_1,10_2,10_0_0 +4467,2,49.0,3,0.0,2,111,2,56,47,5.0,0.0,0.0,819.6712269614673,0.0,2270.040051641455,50795.16000000001,50,31,1,15661,201704467,,,579.0,,2.0,2.0,4.0,1.0,3.0,1.8,1563.5584342685165,0.0,609.0,1283.0,0.0,37720.0,1,1,1,100.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3089.7112786029224,0.06082688347871966,0.08191175181874132,20955.555555555555,5,3,5,5_1,5_3,5_0_1 +4468,2,43.0,3,0.0,7,112,5,85,63,2.0,0.0,277.585263912688,2383.6416140373703,226.47320858153253,0.0,44980.08031599411,43,50,1,15662,201704468,,,300.0,,1.0,0.0,5.0,2.0,4.0,2.5,2239.840895159904,0.0,1771.0,0.0,0.0,30099.0,6,1,2,110.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2887.700086531591,0.06419953157586462,0.09594006732886777,12039.6,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4469,2,47.0,3,0.0,9,112,2,0,55,2.0,0.0,0.0,592.2629338458523,0.0,0.0,45798.9458467513,0,31,1,15664,201704469,,,,,1.0,0.0,5.0,2.0,3.0,1.8,2653.241657781388,0.0,440.04,0.0,0.0,21940.0,0,1,2,100.0,8,1.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,592.2629338458523,0.012931802749950495,0.02699466425915462,12188.888888888889,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +4470,2,46.0,3,0.0,4,111,5,85,64,2.0,0.0,20.818894793451598,2018.894647688343,240.62778411787832,0.0,51240.94238300418,50,50,1,15665,201704470,,,335.0,,1.0,0.0,4.0,1.0,3.0,2.0,2032.9353640577651,0.0,1500.0,0.0,0.0,27030.0,8,1,2,112.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2280.341326599673,0.044502329983611436,0.08436334911578516,13515.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +4471,2,50.0,3,0.0,1,111,2,22,48,7.0,0.0,0.0,3095.6384597887923,0.0,1606.5443233752464,59309.7258467513,42,42,1,15666,201704471,,,1000.0,,2.0,1.0,4.0,2.0,4.0,2.5,2241.742413719491,0.0,2300.0,908.0,0.0,58660.0,1,1,1,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4702.1827831640385,0.07928181619510219,0.08015995198029387,23464.0,6,3,6,6_1,6_3,6_1_0 +4472,2,78.0,3,0.0,3,111,2,77,75,8.0,0.0,0.0,513.1573039030405,0.0,1048.8169514212614,32648.237477955816,50,50,1,15667,201704472,,,480.0,,0.0,1.0,4.0,0.0,2.0,1.5,1481.9278443655817,414.0450681078347,210.0,350.0,0.0,40580.0,5,5,1,85.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1561.9742553243018,0.047842529213987475,0.03849123349739531,27053.333333333332,7,4,7,7_1,7_2,7_0_1 +4473,2,51.0,3,0.0,1,112,4,0,47,2.0,0.0,0.0,1292.0925745205395,0.0,0.0,13861.48,0,50,2,15669,201704473,,,360.0,,1.0,1.0,3.0,0.0,1.0,1.0,4323.75026898035,0.0,960.0,0.0,0.0,11730.0,0,1,3,60.0,9,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1292.0925745205395,0.09321461882284861,0.1101528196522199,11730.0,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +4474,1,36.0,3,282.0,99,111,2,85,62,2.0,0.0,0.0,339.1743008116416,0.0,132.69914565324171,13984.62,71,43,2,15671,201704474,,,,356.0,1.0,0.0,3.0,3.0,5.0,2.4,3597.9736549400695,0.0,252.0,75.0,0.0,26195.0,6,4,3,62.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,471.87344646488333,0.03374231451872724,0.018013874650310492,10914.583333333334,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4475,1,48.0,4,254.0,4,221,2,0,22,10.0,0.0,0.0,1615.1157181506744,0.0,0.0,18183.920000000002,0,50,2,15672,201704475,,,,246.0,1.0,3.0,3.0,0.0,1.0,1.0,3575.4597305914176,0.0,1200.0,0.0,0.0,43050.0,0,1,3,82.0,1,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1615.1157181506744,0.08882109677949937,0.03751720599653135,43050.0,10,5,10,10_0,10_1,10_0_1 +4476,2,73.0,3,0.0,1,221,2,78,75,6.0,2062.392811880547,0.0,565.290501352736,0.0,0.0,20689.08,70,50,2,15673,201704476,,,320.0,,0.0,2.0,5.0,0.0,2.0,1.5,4191.680380778605,0.0,420.0,0.0,0.0,31533.0,5,5,3,86.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,2627.683313233283,0.1270082243015776,0.08333121850865072,21022.0,5,3,5,5_0,5_1,5_1_0 +4477,2,37.0,4,0.0,99,221,7,0,21,3.0,0.0,0.0,471.07541779394666,371.5576078290768,0.0,22076.4,0,31,8,15674,201704477,,,,526.0,1.0,0.0,2.0,0.0,1.0,1.0,2854.4113895852206,0.0,350.0,0.0,0.0,16340.0,0,1,3,22.0,1,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,842.6330256230235,0.038168950808239725,0.05156872861830009,16340.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +4478,2,78.0,2,0.0,4,300,2,78,78,6.0,2538.3296146222115,0.0,472.4213475590722,0.0,0.0,24185.567572274293,71,71,1,15675,201704478,,,197.0,,0.0,2.0,4.0,0.0,2.0,1.5,2068.3308499871496,0.0,351.0,0.0,0.0,32433.0,5,5,1,117.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3010.7509621812837,0.12448543757280811,0.09282986347797871,21622.0,6,3,6,6_1,6_1,6_0_1 +4479,2,79.0,3,0.0,1,400,4,72,72,4.0,0.0,0.0,1842.5778484568943,318.4779495677801,0.0,35601.2,50,71,1,15676,201704479,,,,,0.0,0.0,4.0,0.0,2.0,1.5,2201.70502861617,0.0,1369.0,0.0,0.0,25023.0,5,5,1,95.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2161.0557980246745,0.06070176842422937,0.08636277816507511,16682.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4480,2,77.0,3,0.0,99,111,1,86,78,2.0,0.0,0.0,355.32545799314835,0.0,955.4338487033403,19800.350875301632,71,71,8,15678,201704480,,,,282.0,0.0,6.0,3.0,0.0,2.0,1.5,2010.4515551259922,0.0,264.0,540.0,0.0,18200.0,5,5,3,87.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1310.7593066964887,0.06619879187754651,0.0720197421261807,12133.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +4481,1,67.0,2,166.0,9,221,2,0,78,3.0,0.0,0.0,197.6397865803254,0.0,368.29750720750536,6303.7058467513,0,70,2,15679,201704481,,,160.0,104.0,0.0,0.0,2.0,0.0,1.0,1.0,3166.1321704211505,355.0,0.0,0.0,0.0,14072.0,0,5,3,46.0,1,2.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,565.9372937878308,0.08977850609566343,0.04021726078651441,14072.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +4482,2,86.0,3,0.0,2,111,2,0,71,2.0,0.0,0.0,940.8049058227678,0.0,2471.7427530343825,15385.120315994116,0,70,1,1568,201704482,,,226.0,,0.0,2.0,6.0,0.0,1.0,1.0,2169.200692323002,0.0,699.0,1397.0,0.0,11030.0,0,5,5,99.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3412.54765885715,0.22180831795702774,0.309387820385961,11030.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +4483,2,67.0,1,0.0,5,111,6,0,77,7.0,0.0,0.0,983.8746583067858,0.0,0.0,19152.679999999997,0,70,8,15680,201704483,,,,620.0,0.0,2.0,3.0,0.0,1.0,1.0,2870.373759985216,0.0,731.0,0.0,0.0,24443.0,0,5,3,75.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,983.8746583067858,0.05137007762395581,0.04025179635506222,24443.0,7,4,7,7_0,7_2,7_0_0 +4484,1,44.0,4,350.0,99,120,4,0,85,1.0,0.0,0.0,890.7708690944243,0.0,1659.9324268507285,15269.279999999999,0,71,2,15683,201704484,,,340.0,225.0,0.0,1.0,4.0,1.0,2.0,1.5,1252.1924905313736,1600.0,0.0,0.0,0.0,9120.0,0,6,3,65.0,0,3.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2550.7032959451526,0.1670480399825763,0.27968237894135445,6080.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +4485,2,67.0,3,0.0,1,212,2,13,71,4.0,2379.684013708323,0.0,874.8543473316153,247.7050718860512,0.0,28590.502596051276,41,43,1,15685,201704485,,,350.0,,1.0,0.0,5.0,1.0,3.0,1.8,2006.2365209492223,0.0,650.0,0.0,0.0,28824.0,1,5,1,90.0,2,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3502.2434329259895,0.1224967424465527,0.12150442107014951,16013.333333333332,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4486,2,87.0,2,0.0,1,400,2,0,,7.0,4070.8461194503716,0.0,1111.7379859937141,106.15931652259337,0.0,14992.185846751301,0,60,1,15687,201704486,,,178.0,,0.0,2.0,10.0,0.0,1.0,1.0,2152.576209919696,0.0,826.0,0.0,0.0,25280.0,0,8,5,,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5288.743421966679,0.352766666317221,0.20920662270437815,25280.0,7,4,7,7_1,7_0,7_1_0 +4487,2,50.0,2,0.0,8,112,2,55,48,8.0,0.0,0.0,995.9880261929159,0.0,1323.4528126483308,34817.74063198823,50,50,1,15688,201704487,,,300.0,,2.0,0.0,4.0,1.0,3.0,2.0,1803.1200378003327,0.0,740.0,748.0,0.0,58118.0,1,1,3,96.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2319.4408388412467,0.0666166384360477,0.03990916478270495,29059.0,8,4,8,8_1,8_0,8_0_0 +4488,2,73.0,3,0.0,4,111,2,78,78,4.0,0.0,0.0,670.2730230325299,0.0,1749.8594006807475,21767.7316935026,71,70,1,15689,201704488,,,321.0,,0.0,3.0,4.0,0.0,2.0,1.5,2573.2352446527507,0.0,498.0,989.0,0.0,24824.0,5,5,1,110.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2420.1324237132776,0.11117981688627931,0.09749163808061866,16549.333333333332,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +4489,2,47.0,2,0.0,1,111,2,21,33,7.0,0.0,0.0,1475.736544319894,0.0,3970.2696987882405,78971.50915521002,31,12,2,1569,201704489,,,200.0,1460.0,2.0,0.0,5.0,3.0,5.0,2.8,2311.0931983937717,1780.3937928636892,360.0,1200.0,0.0,69687.0,1,1,4,127.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,5446.006243108134,0.06896165846855723,0.07814952922507977,24888.214285714286,7,4,7,7_0,7_3,7_1_0 +4490,2,32.0,2,0.0,9,111,4,54,47,6.0,0.0,0.0,1749.7086946632305,63.69558991355603,0.0,70688.19182737375,30,43,1,15690,201704490,,,330.0,,2.0,0.0,5.0,1.0,3.0,1.8,1891.004999644664,0.0,1300.0,0.0,0.0,40843.0,1,1,2,140.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1813.4042845767865,0.025653567274789905,0.04439938997078536,22690.555555555555,6,3,6,6_1,6_2,6_0_0 +4491,1,45.0,4,96.0,9,112,1,0,52,4.0,0.0,0.0,100.94473238441715,0.0,0.0,18559.76,0,41,2,15692,201704491,,,420.0,352.0,1.0,0.0,5.0,2.0,3.0,1.6,564.4554179846224,0.0,75.0,0.0,0.0,26003.0,0,1,3,90.0,9,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,100.94473238441715,0.005438902894456457,0.0038820417791953677,16251.875,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +4492,2,84.0,3,0.0,2,112,2,0,72,3.0,2379.684013708323,0.0,328.4068626906371,159.23897478389006,0.0,14111.11672205293,70,50,1,15694,201704492,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2240.1595321262976,0.0,244.0,0.0,0.0,21471.0,5,5,1,60.0,4,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2867.3298511828502,0.20319652283095155,0.13354430865739136,14314.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4493,1,74.0,4,278.0,5,111,1,0,75,10.0,0.0,0.0,471.07541779394666,0.0,0.0,7498.400000000001,0,50,2,15695,201704493,,,,,0.0,4.0,1.0,0.0,1.0,1.0,3028.3930543848364,0.0,350.0,0.0,0.0,47526.0,0,5,3,28.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,471.07541779394666,0.06282345804357552,0.009911951727348118,47526.0,10,5,10,10_0,10_3,10_0_0 +4494,2,71.0,2,0.0,9,400,2,0,75,6.0,1586.456009138882,0.0,411.85450812842197,60.15694602946958,0.0,26923.32,0,50,1,15697,201704494,,,336.0,,0.0,2.0,4.0,0.0,1.0,1.0,2436.895088670666,0.0,306.0,0.0,0.0,24380.0,0,5,5,101.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2058.4674632967735,0.07645667262792158,0.08443262769880121,24380.0,7,4,7,7_1,7_0,7_0_0 +4495,1,39.0,5,353.0,1,400,2,0,55,1.0,2379.684013708323,277.585263912688,1480.522741638118,0.0,0.0,7726.5199999999995,0,43,1,15698,201704495,,,370.0,,1.0,1.0,6.0,1.0,2.0,1.3,956.9239330974101,0.0,1100.0,0.0,0.0,11136.0,0,1,3,180.0,0,0.0,2,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,4137.792019259129,0.5355311342310807,0.37156896724668903,8566.153846153846,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +4496,2,58.0,2,0.0,9,111,4,0,34,9.0,0.0,0.0,807.5578590753372,0.0,0.0,21912.879999999997,0,20,2,157,201704496,,,,465.0,1.0,0.0,2.0,0.0,1.0,1.0,1766.502956550528,0.0,600.0,0.0,0.0,37270.0,0,1,3,54.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.036853113742937364,0.021667771909721953,37270.0,9,5,9,9_0,9_2,9_0_0 +4497,2,32.0,4,0.0,1,112,5,0,63,1.0,0.0,111.0341055650752,484.5347154452023,143.31507730550106,0.0,11331.2,0,70,1,15700,201704497,,,300.0,,1.0,0.0,4.0,0.0,1.0,1.0,3677.331123746501,0.0,360.0,0.0,0.0,8790.0,0,4,3,100.0,8,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,738.8838983157785,0.06520791251727782,0.08405960162864375,8790.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4498,2,52.0,2,0.0,7,111,2,55,45,10.0,0.0,0.0,2257.1242161155674,0.0,0.0,70039.91999999998,41,31,1,15703,201704498,,,590.0,,3.0,1.0,6.0,1.0,3.0,2.0,2236.492709508308,0.0,1677.0,0.0,0.0,87362.0,1,1,1,120.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2257.1242161155674,0.03222625348680535,0.025836453104502728,43681.0,10,5,10,10_1,10_3,10_0_0 +4499,2,73.0,3,0.0,5,111,1,77,78,4.0,0.0,0.0,390.319631886413,0.0,0.0,36313.78,70,50,2,15704,201704499,,,180.0,,0.0,2.0,3.0,0.0,2.0,1.5,2086.219257263483,0.0,290.0,0.0,0.0,27124.0,5,5,1,70.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,390.319631886413,0.01074852664433207,0.0143901943624249,18082.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +4500,1,51.0,4,42.0,3,111,1,0,62,3.0,0.0,0.0,646.0462872602698,0.0,0.0,14776.019999999999,0,71,2,15705,201704500,,,,206.0,1.0,0.0,3.0,1.0,2.0,1.3,728.0360909564041,0.0,480.0,0.0,0.0,20394.0,0,1,3,50.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,646.0462872602698,0.04372261862533144,0.03167825278318475,15687.692307692307,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +4501,2,43.0,2,0.0,9,111,4,46,47,7.0,0.0,0.0,2018.894647688343,0.0,0.0,30830.7,31,31,1,15706,201704501,,,130.0,,2.0,0.0,4.0,2.0,4.0,2.1,1825.1971679787187,0.0,1500.0,0.0,0.0,49214.0,1,1,2,103.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2018.894647688343,0.0654832568734522,0.04102277091251154,23435.238095238095,6,3,6,6_1,6_3,6_0_0 +4502,1,66.0,3,15.0,3,111,1,0,77,2.0,0.0,0.0,201.8894647688343,0.0,353.8643884086446,8880.599999999999,0,71,2,15707,201704502,,,,120.0,0.0,0.0,1.0,0.0,1.0,1.0,3553.8041924293047,0.0,150.0,200.0,0.0,10848.0,0,5,3,25.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,555.7538531774788,0.06258066495253461,0.051230996789959335,10848.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4503,2,83.0,3,0.0,5,111,2,78,72,3.0,0.0,0.0,468.38355826369553,0.0,1693.2410985353642,26928.480000000003,70,71,1,15708,201704503,,,479.0,,0.0,4.0,5.0,0.0,2.0,1.5,1340.0374157864383,0.0,348.0,957.0,0.0,22840.0,5,5,1,110.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2161.6246567990597,0.08027280621851139,0.09464206028016899,15226.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4504,2,76.0,3,0.0,9,300,2,75,75,7.0,0.0,0.0,1277.9537130029569,113.23660429076627,783.7724767860069,30549.10964362126,41,50,1,15709,201704504,,,260.0,,0.0,2.0,6.0,0.0,2.0,1.5,2142.1147813266425,755.474103989163,637.0,0.0,0.0,36879.0,5,5,1,160.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2174.96279407973,0.07119561975626573,0.05897564451529949,24586.0,7,4,7,7_1,7_0,7_0_0 +4505,2,65.0,1,0.0,3,120,2,72,77,10.0,2538.3296146222115,0.0,1224.7960862642615,0.0,0.0,127204.16269899828,50,50,1,1571,201704505,,,397.0,,0.0,1.0,5.0,0.0,2.0,1.5,1545.6046144839743,0.0,910.0,0.0,0.0,79949.0,5,5,1,140.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3763.125700886473,0.029583353414236242,0.047069077798177254,53299.333333333336,10,5,10,10_1,10_0,10_0_1 +4506,2,87.0,3,0.0,4,211,2,0,78,4.0,0.0,0.0,269.1859530251124,0.0,2123.1863304518674,15768.54,0,70,2,15710,201704506,,,,183.0,0.0,3.0,2.0,0.0,1.0,1.0,3680.035697116935,0.0,200.0,1200.0,0.0,17446.0,0,5,3,80.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2392.3722834769796,0.15171805908961639,0.13713013203467728,17446.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +4507,2,36.0,1,0.0,1,111,2,0,37,9.0,0.0,0.0,0.0,0.0,0.0,13948.496974448148,0,12,2,15711,201704507,,,,,1.0,0.0,1.0,0.0,1.0,1.0,7927.299923713453,0.0,0.0,0.0,0.0,33535.0,0,1,3,15.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,33535.0,9,5,9,9_0,9_4,9_1_0 +4508,2,79.0,2,0.0,5,212,2,77,74,6.0,0.0,0.0,1998.7057012114594,109.69796040667983,0.0,44604.64,50,50,1,15712,201704508,,,,,0.0,4.0,5.0,0.0,2.0,1.5,1879.3862846503923,0.0,1485.0,0.0,0.0,33134.0,5,5,1,113.0,3,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2108.4036616181393,0.047268707058685806,0.06363263299384739,22089.333333333332,6,3,6,6_1,6_0,6_0_0 +4509,2,56.0,3,0.0,1,120,2,56,48,9.0,0.0,0.0,1148.0780896521044,0.0,2830.9151072691566,24707.360000000004,50,60,1,15714,201704509,,,650.0,,3.0,2.0,5.0,1.0,3.0,2.0,2586.1185502055478,0.0,853.0,1600.0,0.0,64504.0,1,1,1,120.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3978.993196921261,0.16104485452598985,0.06168599151868506,32252.0,9,5,9,9_1,9_1,9_1_0 +4510,2,59.0,3,0.0,1,111,2,77,63,4.0,0.0,0.0,309.56384597887927,0.0,1150.059262328095,16436.950875301627,50,50,1,15716,201704510,,,220.0,,1.0,3.0,4.0,0.0,2.0,1.5,1436.322003562706,0.0,230.0,650.0,0.0,29724.0,6,1,2,110.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1459.6231083069742,0.08880133057404355,0.049105877684933866,19816.0,5,3,5,5_1,5_3,5_1_0 +4511,0,56.0,3,0.0,9,111,4,0,43,1.0,0.0,0.0,1951.598159432065,0.0,0.0,59370.59087530163,0,33,2,15717,201704511,,,,,1.0,0.0,3.0,2.0,3.0,2.0,1807.4636308803408,0.0,1450.0,0.0,0.0,20934.0,0,1,5,76.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1951.598159432065,0.03287146263258661,0.09322624244922446,10467.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +4512,1,35.0,4,112.0,1,112,6,67,67,3.0,0.0,971.5484236944079,1130.581002705472,63.69558991355603,0.0,18944.3258467513,50,42,1,15718,201704512,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1875.182749126463,0.0,840.0,0.0,0.0,31769.0,4,1,2,99.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2165.8250163134358,0.11432578988736333,0.06817416400621473,15128.095238095237,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +4513,1,47.0,3,437.0,9,111,2,85,21,1.0,0.0,0.0,646.0462872602698,0.0,1946.2541362475451,13550.32,43,71,2,15719,201704513,,,636.0,279.0,1.0,2.0,4.0,2.0,4.0,2.1,1127.0015690403857,0.0,480.0,1100.0,0.0,17524.0,6,4,3,82.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2592.300423507815,0.1913091663892672,0.14792857929170367,8344.761904761905,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4514,2,39.0,2,0.0,1,111,1,55,43,6.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,42092.58000000001,50,30,1,15720,201704514,0.0,,27.0,,2.0,0.0,4.0,2.0,4.0,2.3,2258.778478297481,1300.0,0.0,0.0,0.0,53721.0,1,1,2,90.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2072.4464279554363,0.04923543360743,0.0385779569992263,23356.956521739132,6,3,6,6_1,6_3,6_1_0 +4515,2,67.0,3,0.0,8,400,2,77,78,3.0,0.0,0.0,1049.8252167979383,0.0,0.0,15163.399877080492,70,70,1,15721,201704515,,,260.0,,0.0,1.0,3.0,0.0,2.0,1.5,2423.861064448734,0.0,780.0,0.0,0.0,21800.0,5,5,1,70.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1049.8252167979383,0.06923415759711983,0.04815712003660268,14533.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4516,2,70.0,3,0.0,1,112,2,72,72,4.0,0.0,0.0,1134.6187920008488,0.0,2268.2707296994117,23674.280000000002,50,50,1,15722,201704516,,,441.0,,0.0,2.0,3.0,0.0,2.0,1.5,1332.4884981569098,0.0,843.0,1282.0,0.0,26200.0,5,5,1,80.0,10,3.0,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3402.8895217002605,0.14373782525594275,0.1298812794542084,17466.666666666668,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +4517,2,42.0,2,0.0,9,112,2,43,63,7.0,0.0,693.9631597817199,1271.903628043656,176.9321942043223,0.0,54752.36,30,71,1,15723,201704517,,,464.0,,2.0,0.0,4.0,3.0,5.0,2.6,1500.3513457986053,0.0,945.0,0.0,0.0,64278.0,1,1,2,114.0,10,3.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2142.798982029698,0.039136193983778926,0.03333642898082856,24722.30769230769,7,4,7,7_1,7_1,7_0_0 +4518,2,30.0,3,0.0,7,111,4,0,45,6.0,0.0,0.0,982.5287285416603,0.0,0.0,20069.208161188144,0,30,2,15724,201704518,,,,450.0,1.0,0.0,2.0,0.0,1.0,1.0,3283.9582832718065,0.0,730.0,0.0,0.0,23157.0,0,1,3,48.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,982.5287285416603,0.048957025142714564,0.042429016217198266,23157.0,6,3,6,6_0,6_3,6_0_0 +4519,1,30.0,4,15.0,4,111,1,0,46,5.0,0.0,0.0,969.0694308904046,0.0,0.0,14508.44,0,30,2,15725,201704519,,,,360.0,1.0,0.0,3.0,1.0,2.0,1.3,1005.1087141972782,0.0,720.0,0.0,0.0,24141.0,0,1,3,67.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,969.0694308904046,0.06679349612297425,0.04014205836089659,18570.0,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +4520,2,43.0,3,0.0,8,120,2,84,22,6.0,2379.684013708323,0.0,2018.894647688343,132.69914565324171,0.0,37717.4258467513,30,50,1,15726,201704520,,,,,1.0,0.0,6.0,2.0,4.0,2.1,3185.481213634276,0.0,1500.0,0.0,0.0,47317.0,3,1,2,130.0,0,0.0,4,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4531.277807049908,0.12013751483096503,0.09576426669167336,22531.90476190476,6,3,6,6_1,6_0,6_0_0 +4521,2,45.0,2,0.0,9,300,5,63,46,5.0,0.0,208.188947934516,1251.7146815667727,0.0,0.0,16711.800000000003,71,31,1,15727,201704521,,,280.0,,2.0,0.0,4.0,1.0,3.0,1.8,2088.3979236685987,0.0,930.0,0.0,0.0,36401.0,1,1,2,90.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1459.9036295012886,0.0873576532450896,0.040106140751663105,20222.777777777777,5,3,5,5_1,5_1,5_0_0 +4522,2,65.0,3,0.0,7,111,2,77,74,8.0,0.0,0.0,1140.002511061351,0.0,1227.9094277779966,47623.08,42,41,1,15729,201704522,,,526.0,,0.0,2.0,6.0,0.0,2.0,1.5,1224.585160622689,0.0,847.0,694.0,0.0,43836.0,5,5,1,120.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2367.9119388393474,0.04972194026172493,0.05401751845148616,29224.0,8,4,8,8_1,8_2,8_0_0 +4523,2,70.0,5,0.0,2,111,2,74,74,6.0,0.0,0.0,791.4067018938305,0.0,0.0,35474.479999999996,31,31,8,1573,201704523,,,,550.0,0.0,1.0,3.0,0.0,2.0,1.5,2934.4835335729895,0.0,588.0,0.0,0.0,35245.0,5,5,3,50.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,791.4067018938305,0.022309184007597307,0.022454438981240755,23496.666666666668,6,3,6,6_0,6_2,6_0_1 +4524,2,22.0,2,0.0,1,300,5,56,13,1.0,0.0,27.7585263912688,1063.284514449194,106.15931652259337,0.0,46625.901750603254,44,43,2,15730,201704524,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2781.4770417637806,0.0,790.0,0.0,0.0,11000.0,1,1,3,78.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1197.202357363056,0.025676765754939344,0.108836577942096,7333.333333333333,1,1,1_0,1_0_0,1_0_0,1_1_0_0 +4526,1,48.0,3,330.0,9,111,4,0,56,5.0,0.0,0.0,1391.691377139831,0.0,0.0,30629.66,0,50,1,15734,201704526,,,386.0,438.0,1.0,2.0,5.0,1.0,2.0,1.3,607.4534853375508,0.0,1034.0,0.0,0.0,23453.0,0,1,3,105.0,4,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1391.691377139831,0.04543607004256107,0.059339588843211145,18040.76923076923,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +4527,2,63.0,2,0.0,5,112,5,77,78,5.0,1110.5192063972174,0.0,757.7584577656913,70.77287768172891,0.0,20443.46,50,50,1,15736,201704527,,,383.0,,0.0,1.0,5.0,0.0,2.0,1.5,1933.711856870861,0.0,563.0,0.0,0.0,27997.0,5,5,1,108.0,7,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1939.0505418446378,0.09484943066607306,0.06925922569720462,18664.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4528,1,53.0,3,206.0,99,111,2,0,68,2.0,0.0,0.0,414.5463676586731,0.0,1787.0151614636552,8559.430875301627,0,71,2,15738,201704528,,,,18.0,1.0,0.0,2.0,0.0,1.0,1.0,2662.301745205565,0.0,308.0,1010.0,0.0,10611.0,0,1,3,37.0,6,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2201.5615291223285,0.2572088683460216,0.20747917530132207,10611.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4529,2,43.0,3,0.0,5,111,2,42,38,4.0,0.0,0.0,838.5142436732251,0.0,1447.3053485913563,42860.58,41,30,1,15739,201704529,,,440.0,,2.0,0.0,4.0,2.0,4.0,2.3,1974.9825113055451,0.0,623.0,818.0,0.0,41446.0,1,1,2,90.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2285.8195922645814,0.053331513298807,0.05515175390302035,18020.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +4530,2,79.0,1,0.0,6,300,4,75,75,9.0,190.37472109666587,145.7322635541612,1551.857019189773,176.9321942043223,0.0,23061.820000000003,41,41,1,1574,201704530,,,378.0,,0.0,2.0,7.0,0.0,2.0,1.5,1533.108810554345,0.0,1153.0,0.0,0.0,52731.0,5,5,1,130.0,0,1.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2064.896198044922,0.08953743451492215,0.03915905630549245,35154.0,9,5,9,9_1,9_1,9_0_0 +4531,2,72.0,3,0.0,1,111,2,0,77,6.0,0.0,0.0,1403.8373916998296,0.0,860.3430041558803,28872.801920304613,0,41,2,15740,201704531,,,,,0.0,0.0,2.0,0.0,1.0,1.0,4163.5817160269,829.2800263327805,700.0,0.0,0.0,23749.0,0,5,5,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2264.18039585571,0.07841914345914032,0.09533792563289864,23749.0,6,3,6,6_0,6_4,6_1_0 +4532,2,68.0,1,0.0,5,111,1,0,77,6.0,0.0,0.0,403.7789295376686,0.0,0.0,78544.7258467513,0,60,2,15741,201704532,,,,,0.0,3.0,2.0,0.0,1.0,1.0,3688.89642470997,0.0,300.0,0.0,0.0,23040.0,0,5,1,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,403.7789295376686,0.005140751656902872,0.01752512715007242,23040.0,6,3,6,6_0,6_4,6_0_0 +4533,1,32.0,3,390.0,4,111,1,52,63,8.0,0.0,0.0,433.38938437043095,0.0,0.0,44564.14,43,50,2,15742,201704533,,,,,2.0,0.0,3.0,2.0,4.0,2.1,1767.5217044120814,0.0,322.0,0.0,0.0,55408.0,1,1,3,58.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,433.38938437043095,0.009725070075859894,0.007821783575845202,26384.761904761905,7,4,7,7_0,7_4,7_0_1 +4534,1,22.0,3,272.0,3,111,1,0,43,7.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,10935.316658454032,0,31,2,15743,201704534,,,,110.0,1.0,0.0,2.0,0.0,1.0,1.0,10335.82279527833,900.0,0.0,0.0,0.0,23485.0,0,1,3,40.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1434.7706039691484,0.13120521780774727,0.06109306382666163,23485.0,6,3,6,6_0,6_3,6_0_1 +4535,2,70.0,3,0.0,7,111,1,63,78,5.0,0.0,0.0,557.2149227619826,0.0,0.0,23943.327849749774,70,70,8,15744,201704535,,,,294.0,1.0,3.0,2.0,0.0,2.0,1.5,1613.9971599984976,0.0,414.0,0.0,0.0,27951.0,5,5,3,47.0,7,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,557.2149227619826,0.02327224211515802,0.019935419940681286,18634.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +4536,2,45.0,1,0.0,7,111,5,42,48,8.0,0.0,471.89494865156956,872.1624878013641,0.0,0.0,51426.230866350445,20,31,1,15746,201704536,,,300.0,,2.0,0.0,7.0,1.0,3.0,2.0,2156.9806067443615,0.0,648.0,0.0,0.0,62177.0,1,1,2,130.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1344.0574364529336,0.026135639610570534,0.021616633746448583,31088.5,8,4,8,8_1,8_3,8_0_0 +4537,1,40.0,5,20.0,1,111,2,0,42,4.0,0.0,277.585263912688,3520.95226556847,0.0,0.0,38478.14,0,33,1,15748,201704537,,,,,1.0,0.0,5.0,2.0,3.0,1.8,542.8212879240174,0.0,2616.0,0.0,0.0,32470.0,0,1,2,90.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3798.537529481158,0.09871936454000006,0.11698606496708217,18038.888888888887,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +4538,2,58.0,3,0.0,4,111,1,68,47,9.0,0.0,0.0,551.164475252175,0.0,1027.0831891138882,25126.12,50,50,2,1575,201704538,,,280.0,322.0,2.0,2.0,5.0,0.0,2.0,1.5,1710.8404945598745,990.0,0.0,0.0,0.0,50160.0,1,1,3,83.0,7,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1578.2476643660632,0.06281302741394466,0.031464267630902376,33440.0,9,5,9,9_0,9_2,9_0_1 +4539,2,58.0,1,0.0,7,111,6,31,31,10.0,0.0,0.0,4306.975248401798,0.0,0.0,103854.0716935026,10,10,2,15750,201704539,,,,,2.0,2.0,5.0,1.0,3.0,2.0,2949.795120118421,0.0,3200.0,0.0,0.0,237650.0,1,1,2,117.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4306.975248401798,0.041471414439220824,0.018123186401859028,118825.0,10,5,10,10_0,10_4,10_0_0 +4540,2,42.0,2,0.0,1,111,5,42,42,8.0,0.0,1387.9263195634398,1345.929765125562,106.15931652259337,0.0,46767.5,30,20,1,15751,201704540,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2538.6110891789112,0.0,1000.0,0.0,0.0,58669.0,1,1,2,160.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2840.0154012115954,0.06072626078391181,0.048407428134305944,27937.619047619046,8,4,8,8_1,8_2,8_1_0 +4542,2,81.0,1,0.0,2,211,2,54,74,8.0,0.0,0.0,1671.3817408608707,0.0,5053.31702123089,38492.496732817264,70,50,1,15754,201704542,,,392.0,,1.0,2.0,7.0,0.0,2.0,1.5,1966.1746392179382,1865.8800592487562,470.0,1762.0,0.0,45605.0,5,5,1,220.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,6724.698762091761,0.17470154790864822,0.14745529573712884,30403.333333333332,8,4,8,8_1,8_1,8_0_1 +4543,2,58.0,3,0.0,1,112,2,0,46,8.0,0.0,0.0,1453.6041463356069,0.0,0.0,35368.41,0,50,1,15756,201704543,,,1300.0,,2.0,2.0,3.0,1.0,2.0,1.5,863.7601511955505,0.0,1080.0,0.0,0.0,44160.0,0,1,2,60.0,10,2.0,2,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1453.6041463356069,0.041098939599931314,0.032916760560136024,29440.0,8,4,8,8_1,8_1,8_1_0 +4544,2,33.0,3,0.0,1,112,6,52,63,6.0,2221.038412794435,1151.9788452376552,1545.127370364145,0.0,0.0,39614.39087530163,50,44,1,15757,201704544,,,,,2.0,0.0,6.0,2.0,4.0,2.1,1935.901981703924,0.0,1148.0,0.0,0.0,45300.0,1,1,2,130.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4918.144628396235,0.1241504544113172,0.10856831409263212,21571.42857142857,6,3,6,6_1,6_0,6_1_0 +4545,2,83.0,1,0.0,8,111,6,0,75,10.0,0.0,0.0,1480.522741638118,0.0,0.0,41415.23697444815,0,60,2,15759,201704545,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3130.891530772468,0.0,1100.0,0.0,0.0,41586.0,0,5,1,60.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1480.522741638118,0.03574826198752774,0.03560147024571053,41586.0,10,5,10,10_0,10_3,10_0_0 +4546,2,47.0,2,0.0,8,112,2,0,34,5.0,0.0,0.0,1409.1884640864635,0.0,0.0,27493.945846751303,0,20,1,1576,201704546,,,360.0,,1.0,0.0,7.0,2.0,3.0,2.0,763.943086168642,0.0,1047.0,0.0,0.0,42650.0,0,1,1,180.0,7,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1409.1884640864635,0.051254500606829914,0.03304076117436022,21325.0,6,3,6,6_1,6_0,6_0_0 +4547,2,68.0,2,0.0,2,211,2,0,75,9.0,0.0,0.0,749.682879174938,0.0,2004.6417603349717,32568.999999999996,0,30,1,15762,201704547,,,,,0.0,0.0,5.0,0.0,1.0,1.0,761.7126164952273,0.0,557.0,1133.0,0.0,32818.0,0,5,1,120.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2754.3246395099095,0.0845689041576318,0.08392725454049331,32818.0,9,5,9,9_1,9_1,9_0_1 +4548,2,53.0,5,0.0,9,112,2,0,54,7.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,21335.29087530163,0,60,2,15763,201704548,,,348.0,,2.0,2.0,4.0,1.0,2.0,1.5,2920.436059198482,900.0,0.0,0.0,0.0,35693.0,0,1,3,80.0,7,4.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1434.7706039691484,0.06724870133502991,0.040197534641782655,23795.333333333332,6,3,6,6_0,6_2,6_0_0 +4549,1,32.0,3,300.0,4,120,2,0,35,6.0,0.0,0.0,363.4010365839017,0.0,884.6609710216114,21932.296722052928,0,50,2,15764,201704549,,,280.0,,1.0,1.0,3.0,1.0,2.0,1.3,1595.5550703516735,0.0,270.0,500.0,0.0,29010.0,0,1,3,61.0,0,4.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1248.0620076055131,0.056905212592285724,0.043021785853344124,22315.384615384613,6,3,6,6_0,6_2,6_0_1 +4550,2,72.0,3,0.0,1,300,5,71,71,3.0,1289.7887354299112,721.7216861729887,1607.040139559921,212.31863304518674,0.0,14314.64,50,50,1,15765,201704550,,,329.0,,0.0,4.0,7.0,0.0,2.0,1.5,1492.619869438951,0.0,1194.0,0.0,0.0,21679.0,5,5,1,150.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3830.8691942080077,0.2676189687067232,0.17670875936196354,14452.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4551,2,47.0,2,0.0,1,111,2,0,64,2.0,0.0,0.0,545.1015548758526,194.62541362475451,2059.4907405383115,22147.7,0,50,1,15766,201704551,,,236.0,,1.0,1.0,5.0,1.0,2.0,1.5,1519.0635495878576,0.0,405.0,1164.0,0.0,21017.0,0,1,2,100.0,6,4.0,2,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2799.2177090389187,0.12638864121506607,0.13318826231331393,14011.333333333334,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +4552,1,30.0,4,269.0,2,111,1,47,46,2.0,0.0,0.0,38.971225522881056,0.0,72.62204367471938,20456.26,60,43,2,15768,201704552,,,,28.0,2.0,0.0,2.0,2.0,4.0,2.1,2315.311167246918,70.0,0.0,0.0,0.0,22551.0,1,1,3,51.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,111.59326919760043,0.005455213670416803,0.004948484288838651,10738.571428571428,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4553,2,36.0,4,0.0,9,111,2,56,47,3.0,0.0,0.0,757.1552387302605,0.0,1410.9425628231193,22127.660000000003,60,31,1,15769,201704553,,,,596.0,2.0,0.0,4.0,2.0,4.0,2.1,1854.3537270863271,1360.0,0.0,0.0,0.0,33190.0,1,1,3,82.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2168.0978015533797,0.09798134107055963,0.06532382650055377,15804.761904761905,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4554,2,39.0,3,0.0,1,112,5,0,13,2.0,0.0,0.0,1049.8252167979383,53.079658261296686,0.0,18574.56,0,31,1,1577,201704554,,,200.0,,1.0,0.0,6.0,0.0,1.0,1.0,2285.5614060018943,0.0,780.0,0.0,0.0,14530.0,0,1,1,140.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1102.904875059235,0.05937717367513605,0.07590535960490262,14530.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4555,2,41.0,1,0.0,1,111,2,0,37,6.0,0.0,0.0,613.7439728972563,0.0,1061.5931652259337,49664.18,0,30,1,15770,201704555,,,,,1.0,0.0,4.0,1.0,2.0,1.5,1818.690368603898,0.0,456.0,600.0,0.0,35812.0,0,1,2,90.0,6,4.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1675.33713812319,0.03373330916010674,0.04678144583165392,23874.666666666668,6,3,6,6_1,6_2,6_1_0 +4556,2,62.0,1,0.0,6,111,6,0,34,10.0,0.0,0.0,969.0694308904046,0.0,0.0,45526.326811688996,0,20,2,15771,201704556,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1898.285260642429,0.0,720.0,0.0,0.0,54291.0,0,1,1,95.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,969.0694308904046,0.021285912981707844,0.017849541008461894,54291.0,10,5,10,10_0,10_3,10_0_0 +4557,2,79.0,4,0.0,2,111,1,78,78,4.0,0.0,0.0,179.6192241570865,0.0,1686.0547596214183,16092.324661408551,44,70,2,15772,201704557,700.0,700.0,156.0,330.0,0.0,2.0,3.0,0.0,2.0,1.5,3033.486210665706,124.39200394991708,82.0,880.0,0.0,25520.0,5,5,3,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1865.6739837785049,0.1159356415579055,0.07310634732674393,17013.333333333332,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +4558,1,58.0,4,256.0,7,112,4,0,65,1.0,0.0,0.0,942.1508355878933,0.0,0.0,14868.790875301629,0,70,1,15773,201704558,,,,,1.0,3.0,4.0,0.0,1.0,1.0,4346.06464394624,0.0,700.0,0.0,0.0,9242.0,0,4,3,90.0,9,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,942.1508355878933,0.06336432084419781,0.10194231071065714,9242.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +4559,2,60.0,2,0.0,4,111,6,33,37,10.0,1269.1648073111057,0.0,2027.0624382221358,0.0,1720.6860083117606,63025.293910038854,41,12,1,15774,201704559,,,440.0,,2.0,2.0,5.0,0.0,2.0,1.5,1607.1688526717066,1658.560052665561,820.02,0.0,0.0,100900.0,1,1,2,130.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,5016.913253845002,0.07960158442110642,0.04972163779826563,67266.66666666667,10,5,10,10_1,10_4,10_0_1 +4560,1,60.0,4,196.0,3,111,1,85,78,2.0,0.0,0.0,769.8718256518214,0.0,557.3364117436153,29035.236658454025,71,71,2,15775,201704560,,,390.0,172.0,0.0,4.0,4.0,1.0,3.0,2.0,3386.621815007647,0.0,572.0,315.0,0.0,21298.0,6,5,3,90.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1327.2082373954368,0.04571026070865522,0.06231609716383871,10649.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4561,2,82.0,2,0.0,1,112,1,0,78,2.0,1751.447434089326,0.0,790.0607721287049,283.09151072691566,0.0,10778.48,0,70,1,15777,201704561,1104.0,1104.0,528.0,,0.0,0.0,4.0,0.0,1.0,1.0,2750.495868920354,0.0,587.0,0.0,0.0,11156.0,0,5,5,90.0,9,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2824.5997169449465,0.26205918802511546,0.253191082551537,11156.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4562,2,76.0,3,0.0,4,112,2,75,75,8.0,2855.620816449988,0.0,745.6450898795613,0.0,0.0,28132.239999999998,33,33,1,15779,201704562,,,400.0,,0.0,1.0,8.0,0.0,2.0,1.5,2126.7387062859716,0.0,554.0,0.0,0.0,43842.0,5,5,5,175.0,9,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3601.2659063295496,0.12801205685468167,0.08214191657154211,29228.0,8,4,8,8_1,8_0,8_0_1 +4563,1,36.0,4,170.0,9,211,2,0,46,6.0,0.0,0.0,497.99401309645793,0.0,1433.1507730550106,45823.58,0,31,1,1578,201704563,,,382.0,350.0,2.0,0.0,6.0,1.0,3.0,1.8,1630.4443508600366,0.0,370.0,810.0,0.0,38760.0,0,1,3,84.0,1,3.0,5,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1931.1447861514685,0.04214303609956857,0.0498231368976127,21533.333333333332,6,3,6,6_1,6_1,6_0_0 +4564,2,44.0,3,0.0,2,120,2,52,34,5.0,951.8736054833294,0.0,1009.4473238441715,0.0,0.0,34040.92,41,30,1,15780,201704564,,,100.0,,2.0,0.0,6.0,2.0,4.0,2.3,2231.6709275001563,0.0,750.0,0.0,0.0,46431.0,1,1,2,120.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1961.3209293275008,0.05761656645377096,0.04224162583893306,20187.391304347828,5,3,5,5_1,5_0,5_0_1 +4565,2,68.0,4,0.0,4,111,2,78,77,1.0,190.37472109666587,0.0,668.0781518208182,0.0,1244.9493201380465,21601.345846751305,71,71,1,15782,201704565,,,300.0,,1.0,4.0,5.0,1.0,3.0,2.0,2204.1392369819323,1200.0,0.0,0.0,0.0,17280.0,5,5,1,100.0,8,7.0,4,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2103.4021930555305,0.0973736640289877,0.12172466394997283,8640.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +4566,2,31.0,2,0.0,3,111,1,0,43,7.0,0.0,0.0,351.28766869777166,0.0,0.0,34182.240000000005,0,33,2,15784,201704566,,,225.0,313.0,1.0,0.0,3.0,0.0,1.0,1.0,2225.6512455719567,0.0,261.0,0.0,0.0,25256.0,0,1,3,46.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,351.28766869777166,0.010276906039445385,0.01390907779132767,25256.0,7,4,7,7_0,7_3,7_0_1 +4567,2,70.0,2,0.0,99,111,2,0,,2.0,0.0,0.0,355.32545799314835,0.0,606.8774261208255,16218.199999999999,0,71,1,15785,201704567,,,,,0.0,0.0,4.0,0.0,1.0,1.0,1533.78208464363,0.0,264.0,343.0,0.0,11450.0,0,8,3,70.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,962.2028841139738,0.059328586656594066,0.0840351863854999,11450.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4568,2,36.0,3,0.0,8,112,2,0,43,5.0,0.0,0.0,2422.6735772260117,0.0,0.0,36252.42,0,33,1,15786,201704568,,,116.0,,1.0,0.0,5.0,2.0,3.0,1.6,122.07336483105873,0.0,1800.0,0.0,0.0,31337.0,0,1,1,98.0,8,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2422.6735772260117,0.06682791320485672,0.07731032253329967,19585.625,5,3,5,5_1,5_0,5_0_0 +4569,2,41.0,4,0.0,1,112,2,85,53,1.0,0.0,0.0,0.0,106.15931652259337,0.0,18313.440000000002,43,41,1,15787,201704569,,,,600.0,1.0,0.0,6.0,4.0,6.0,2.9,2618.74673103993,0.0,0.0,0.0,0.0,25530.0,6,1,3,100.0,4,0.0,4,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,106.15931652259337,0.005796798227017608,0.004158218430183837,8803.448275862069,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4570,1,51.0,4,210.0,5,111,1,0,43,2.0,0.0,0.0,230.48696237818226,0.0,429.507515447626,9441.779999999999,0,31,2,15788,201704570,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3653.718904398592,414.0,0.0,0.0,0.0,12145.0,0,1,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,659.9944778258083,0.06990148868389312,0.05434289648627487,12145.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +4571,2,54.0,4,0.0,9,111,1,0,78,2.0,0.0,0.0,821.0171567265928,0.0,0.0,12163.0,0,71,2,1579,201704571,,,,438.0,0.0,3.0,2.0,0.0,1.0,1.0,4038.4947047585983,0.0,610.0,0.0,0.0,12050.0,0,7,3,40.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,821.0171567265928,0.06750120502561809,0.06813420387772555,12050.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +4572,2,44.0,1,0.0,1,111,2,37,38,10.0,0.0,0.0,1323.0489591184273,0.0,4048.208603394894,65681.48,20,12,1,15791,201704572,,,642.0,,2.0,0.0,5.0,1.0,3.0,1.8,4612.161423998546,0.0,983.0,2288.0,0.0,140495.0,1,1,1,147.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5371.257562513321,0.08177735280193628,0.038230951724355464,78052.77777777778,10,5,10,10_1,10_4,10_1_0 +4573,2,65.0,2,0.0,6,111,5,75,75,7.0,0.0,466.34324337331583,1352.7836610308248,53.079658261296686,311.2373300345116,39919.270875301634,50,71,1,15792,201704573,,,329.0,,1.0,1.0,5.0,1.0,3.0,2.0,2142.2556107700248,300.0,881.0,0.0,0.0,51392.0,5,5,1,78.0,6,4.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2183.4438926999487,0.05469648730610615,0.042486065782611084,25696.0,7,4,7,7_1,7_2,7_0_0 +4574,2,91.0,2,0.0,1,211,2,0,74,5.0,0.0,0.0,753.7206684703146,0.0,1698.549064361494,12403.390875301628,0,70,1,15794,201704574,,,,,0.0,1.0,4.0,0.0,1.0,1.0,4052.9669569748053,0.0,560.0,960.0,0.0,21456.0,0,5,5,120.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2452.2697328318086,0.1977096229156911,0.11429295921102763,21456.0,6,3,6,6_1,6_1,6_1_0 +4575,1,46.0,4,527.0,2,111,1,0,68,1.0,0.0,0.0,71.33427755165478,0.0,49.54101437721024,12036.939999999999,0,71,8,15795,201704575,,,,,2.0,1.0,5.0,4.0,5.0,2.6,596.874770941846,0.0,53.0,28.0,0.0,26904.0,0,4,3,92.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,120.87529192886501,0.010042028283672181,0.004492837196285497,10347.692307692307,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4576,2,80.0,1,0.0,4,112,2,72,75,5.0,2538.3296146222115,0.0,538.3719060502248,0.0,0.0,27396.940000000002,70,71,1,15797,201704576,,,180.0,,0.0,1.0,5.0,0.0,2.0,1.5,1824.0239700230386,0.0,400.0,0.0,0.0,30659.0,5,5,3,120.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3076.7015206724363,0.11230091830227887,0.10035231157808266,20439.333333333332,5,3,5,5_1,5_0,5_0_1 +4577,1,52.0,4,342.0,6,111,2,0,63,1.0,0.0,0.0,336.4824412813905,0.0,1272.1424763290772,11385.1,0,71,2,15799,201704577,,,200.0,4.0,1.0,0.0,2.0,1.0,2.0,1.5,745.0594014661456,0.0,250.0,719.0,0.0,15144.0,0,4,3,62.0,8,6.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1608.6249176104677,0.14129212019310042,0.10622193063988826,10096.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4578,2,58.0,3,0.0,1,120,4,0,56,1.0,393.44109026644276,488.5500644863308,612.3980431321307,70.77287768172891,0.0,14233.46,0,42,1,1580,201704578,,,159.0,,1.0,2.0,6.0,0.0,1.0,1.0,1941.323907386186,0.0,455.0,0.0,0.0,9976.0,0,1,1,100.0,0,0.0,1,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1565.1620755666331,0.10996357003614253,0.1568927501570402,9976.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4579,2,57.0,3,0.0,4,112,4,52,55,4.0,0.0,707.8424229773543,1615.1157181506744,53.079658261296686,0.0,61198.479290857154,43,50,1,15800,201704579,,,,457.0,3.0,1.0,5.0,2.0,4.0,2.5,1540.116493577979,0.0,1200.0,0.0,0.0,43330.0,1,1,3,145.0,4,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2376.0377993893253,0.03882511178254551,0.054835859667420384,17332.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +4580,1,60.0,3,98.0,5,120,2,0,78,3.0,0.0,0.0,446.84868202168656,0.0,2300.11852465619,10424.391191295745,0,70,2,15801,201704580,,,,268.0,0.0,8.0,4.0,1.0,2.0,1.5,2452.8242926588537,0.0,332.0,1300.0,0.0,20304.0,0,7,3,80.0,0,1.0,2,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2746.9672066778767,0.26351344229786433,0.1352919231027323,13536.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +4581,2,44.0,2,0.0,4,112,2,33,37,10.0,0.0,0.0,80.75578590753372,0.0,106.15931652259337,64245.18238259149,20,20,1,15802,201704581,,,390.0,,2.0,0.0,5.0,2.0,4.0,2.1,2893.1135968111175,0.0,60.0,60.0,0.0,95138.0,1,1,2,100.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,186.9151024301271,0.0029094026275311106,0.0019646734473094565,45303.80952380952,10,5,10,10_1,10_0,10_0_1 +4582,2,69.0,3,0.0,8,111,6,77,78,3.0,85.66862449349964,0.0,1520.900634591885,28.309151072691566,0.0,28839.559999999998,50,70,1,15803,201704582,,,250.0,,0.0,2.0,4.0,0.0,2.0,1.5,2613.4853147786826,0.0,1130.0,0.0,0.0,21153.0,5,5,1,85.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1634.8784101580761,0.056688743176320174,0.07728825273758219,14102.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4583,2,54.0,2,0.0,9,211,6,85,53,7.0,0.0,0.0,2193.865517154666,233.5504963497054,0.0,38232.31188729556,50,42,1,15804,201704583,,,731.0,,1.0,0.0,4.0,1.0,3.0,2.0,1079.2476411076022,0.0,1630.0,0.0,0.0,50852.0,1,1,2,98.0,3,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2427.4160135043717,0.06349121707994311,0.047734917279642325,25426.0,7,4,7,7_1,7_1,7_0_0 +4584,2,44.0,1,0.0,9,111,1,56,55,8.0,0.0,0.0,403.7789295376686,0.0,0.0,37311.94,31,31,2,15805,201704584,,,200.0,,2.0,0.0,4.0,1.0,3.0,1.8,4778.058822069955,0.0,300.0,0.0,0.0,50898.0,1,1,2,80.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,403.7789295376686,0.010821708266513845,0.007933100112728764,28276.666666666664,8,4,8,8_0,8_3,8_0_0 +4585,2,56.0,3,0.0,99,112,5,47,68,3.0,0.0,513.5327382384728,1484.5605309334949,793.8947553947941,0.0,27265.98031599412,50,50,1,15806,201704585,,,134.0,,2.0,3.0,4.0,0.0,2.0,1.5,1913.4959459688032,0.0,1103.0,0.0,0.0,23031.0,1,1,3,84.0,8,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2791.988024566762,0.10239822636888624,0.12122739023779956,15354.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4586,2,60.0,1,0.0,2,111,2,78,86,3.0,0.0,0.0,666.9759637864669,0.0,1148.0285847480727,33785.12,71,71,1,15807,201704586,,,,,0.0,3.0,6.0,0.0,2.0,1.5,950.6756452634388,424.40263307935527,320.0,400.0,0.0,22217.0,4,5,1,220.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1815.0045485345395,0.05372200982368982,0.08169440286872842,14811.333333333334,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +4587,2,45.0,3,0.0,1,120,5,35,46,3.0,0.0,416.377895869032,1884.3016711757866,169.8549064361494,0.0,23447.959999999995,31,60,1,15808,201704587,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2043.3412164592542,0.0,1400.0,0.0,0.0,35490.0,1,1,1,150.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2470.5344734809682,0.10536244831025679,0.06961212943028933,15430.434782608696,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4588,2,40.0,3,0.0,2,111,4,0,43,6.0,0.0,0.0,666.2352337371532,111.46728234872305,0.0,21448.590875301627,0,30,2,15809,201704588,,,,484.0,1.0,0.0,3.0,0.0,1.0,1.0,4092.183639174973,0.0,495.0,0.0,0.0,24371.0,0,1,3,55.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,777.7025160858763,0.036258909529642454,0.03191098092346954,24371.0,7,4,7,7_0,7_3,7_0_1 +4589,2,48.0,3,0.0,4,111,1,55,45,9.0,0.0,0.0,538.3719060502248,0.0,0.0,30794.371191295748,50,42,2,15812,201704589,,,,624.0,2.0,1.0,2.0,0.0,2.0,1.5,2469.7680891745867,0.0,400.0,0.0,0.0,48620.0,1,1,3,70.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,538.3719060502248,0.017482802383131612,0.011073054423081546,32413.333333333332,9,5,9,9_0,9_3,9_0_1 +4590,2,49.0,3,0.0,4,111,1,0,53,4.0,0.0,0.0,417.2382271889242,0.0,0.0,17017.760000000002,0,41,2,15813,201704590,,,,365.0,1.0,2.0,4.0,0.0,1.0,1.0,2555.3362656307395,0.0,310.0,0.0,0.0,18496.0,0,1,3,78.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,417.2382271889242,0.024517811227148825,0.02255829515511052,18496.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4591,2,34.0,5,0.0,1,112,5,0,46,9.0,0.0,451.076053858118,862.7409794454852,0.0,0.0,38367.94000000001,0,30,1,15814,201704591,,,368.0,,1.0,0.0,4.0,0.0,1.0,1.0,2400.3570577880987,0.0,641.0,0.0,0.0,34428.0,0,1,2,90.0,7,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1313.8170333036032,0.03424257422482424,0.03816129410083662,34428.0,9,5,9,9_1,9_1,9_1_0 +4592,2,51.0,2,0.0,8,111,2,56,54,6.0,0.0,0.0,1790.0865876169973,53.079658261296686,0.0,26385.1116935026,50,50,1,15815,201704592,,,524.0,,2.0,2.0,5.0,1.0,3.0,2.0,2110.716074974384,0.0,1330.0,0.0,0.0,43735.0,1,1,1,120.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1843.166245878294,0.06985629878277826,0.04214396355043544,21867.5,6,3,6,6_1,6_2,6_0_0 +4593,2,39.0,3,0.0,9,300,5,54,69,4.0,0.0,0.0,1742.9790458376028,0.0,0.0,27318.379999999997,43,43,1,15816,201704593,,,321.0,,2.0,0.0,5.0,2.0,4.0,2.3,2544.7035232177873,0.0,1295.0,0.0,0.0,39179.0,1,1,2,135.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1742.9790458376028,0.06380243066527382,0.04448758380350705,17034.347826086956,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4594,2,52.0,3,0.0,1,111,2,0,43,5.0,0.0,0.0,1211.3367886130059,0.0,743.1152156581536,20010.78,0,33,2,15818,201704594,,,,,1.0,0.0,3.0,1.0,2.0,1.5,2080.4139404835023,0.0,900.0,420.0,0.0,29945.0,0,1,2,80.0,9,7.0,2,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1954.4520042711595,0.09766995610721618,0.06526805824916211,19963.333333333332,5,3,5,5_0,5_3,5_1_0 +4595,2,56.0,3,0.0,1,400,2,0,13,6.0,0.0,416.377895869032,1615.1157181506744,307.86201791552077,0.0,18025.801750603256,0,50,1,1582,201704595,,,800.0,,3.0,1.0,5.0,2.0,3.0,2.0,2230.085784738989,0.0,1200.0,0.0,0.0,42109.0,0,1,1,120.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2339.3556319352274,0.12977817377010362,0.055554765772999296,21054.5,5,3,5,5_1,5_0,5_1_0 +4596,2,25.0,3,0.0,99,111,1,55,47,2.0,0.0,0.0,538.3719060502248,0.0,194.62541362475451,12048.68,31,60,2,15820,201704596,,,,265.0,2.0,0.0,2.0,0.0,2.0,1.5,3146.0881964108135,0.0,400.0,110.0,0.0,16534.0,2,4,3,45.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,732.9973196749793,0.06083631731235117,0.04433272769293452,11022.666666666666,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +4597,2,51.0,3,0.0,6,111,2,52,48,10.0,832.8894047979131,0.0,1565.3163168410285,0.0,0.0,60012.72,50,44,1,15821,201704597,,,503.0,,2.0,2.0,6.0,0.0,2.0,1.5,1367.5684857766291,0.0,1163.0,0.0,0.0,112272.0,1,1,2,120.0,8,7.0,3,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2398.2057216389417,0.03996162349646778,0.021360675160671777,74848.0,10,5,10,10_1,10_3,10_0_0 +4598,2,37.0,3,0.0,4,112,5,55,65,5.0,0.0,346.98157989085996,1628.57501580193,0.0,0.0,23700.93087530163,31,41,1,15822,201704598,,,210.0,,2.0,0.0,5.0,2.0,4.0,2.1,2878.563868672215,0.0,1210.0,0.0,0.0,39070.0,1,1,3,100.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1975.5565956927899,0.08335354446991305,0.05056454045796749,18604.761904761905,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +4599,2,44.0,1,0.0,5,111,2,0,47,9.0,0.0,0.0,277.26153161586575,0.0,920.0474098624759,18195.72,0,30,2,15823,201704599,,,100.0,,1.0,0.0,3.0,0.0,1.0,1.0,2992.142045335609,0.0,206.0,520.0,0.0,32740.0,0,1,1,52.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1197.3089414783417,0.06580167981692077,0.03657021812701105,32740.0,9,5,9,9_0,9_3,9_0_0 +4600,2,45.0,3,0.0,7,400,4,0,43,8.0,0.0,0.0,40.37789295376686,53.079658261296686,0.0,22534.159999999996,0,33,1,15824,201704600,,,200.0,,1.0,0.0,5.0,1.0,2.0,1.3,1822.3375184867616,0.0,30.0,0.0,0.0,37058.0,0,1,1,140.0,0,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,93.45755121506355,0.004147372310086711,0.0025219264724233243,28506.153846153844,8,4,8,8_1,8_1,8_0_0 +4601,2,45.0,4,0.0,1,111,2,0,35,2.0,0.0,0.0,53.83719060502248,0.0,424.6372660903735,38966.09150273412,0,12,8,15825,201704601,,,,,1.0,0.0,2.0,1.0,2.0,1.3,3315.481641401368,0.0,40.0,240.0,0.0,16932.0,0,1,1,49.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,478.474456695396,0.012279251991743208,0.028258590638754782,13024.615384615385,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +4602,2,47.0,4,0.0,7,111,2,34,34,7.0,0.0,0.0,985.9720057288907,0.0,1837.3377049704,39507.96000000001,30,20,1,15826,201704602,,,240.0,,2.0,0.0,6.0,3.0,5.0,2.8,1956.7785853521275,1771.0,0.0,0.0,0.0,65690.0,1,1,2,150.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2823.309710699291,0.07146179429915618,0.0429792922925756,23460.714285714286,6,3,6,6_1,6_3,6_0_0 +4603,0,35.0,3,0.0,9,112,4,0,56,4.0,0.0,0.0,0.0,0.0,0.0,34980.38753375566,0,41,1,15829,201704603,,,,,1.0,0.0,2.0,1.0,2.0,1.3,1040.0400005782828,0.0,0.0,0.0,0.0,20412.0,0,1,5,40.0,9,3.0,2,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,15701.538461538461,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4604,2,64.0,2,0.0,6,400,4,77,75,8.0,0.0,0.0,2152.1416944357734,148.62304313163074,0.0,23095.260000000002,71,50,1,15830,201704604,,,307.0,,0.0,2.0,5.0,0.0,2.0,1.5,1762.6544608400648,0.0,1599.0,0.0,0.0,43891.0,5,5,1,146.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2300.764737567404,0.09962064672869689,0.05241996622467941,29260.666666666668,8,4,8,8_1,8_0,8_0_0 +4605,2,64.0,2,0.0,1,111,2,31,86,7.0,0.0,0.0,1208.6449290827547,0.0,1712.7036398978398,51061.6313887658,20,12,1,15832,201704605,,,399.0,,1.0,0.0,7.0,1.0,3.0,2.0,1813.6643950437415,0.0,898.0,968.0,0.0,64681.0,1,5,1,220.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2921.348568980595,0.05721220590737584,0.04516548242885229,32340.5,9,5,9,9_1,9_3,9_1_0 +4606,2,56.0,3,0.0,3,221,1,0,38,10.0,1427.810408224994,0.0,917.6193958900519,164.54694061001973,305.42176647533745,32309.29769866691,0,30,2,15834,201704606,900.0,900.0,350.0,,1.0,2.0,5.0,0.0,1.0,1.0,4250.452952911322,294.39440934813706,560.0,0.0,0.0,41255.0,0,1,2,90.0,1,2.0,1,7,1,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,2815.398511200403,0.08713895725800834,0.06824381314265915,41255.0,10,5,10,10_0,10_1,10_0_1 +4607,2,58.0,3,0.0,1,111,4,0,46,7.0,0.0,0.0,2557.266553738568,106.15931652259337,0.0,20406.34,0,41,1,15835,201704607,,,,155.0,1.0,1.0,4.0,0.0,1.0,1.0,3568.5762037313625,0.0,1900.0,0.0,0.0,26143.0,0,1,3,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2663.4258702611614,0.13051952825745142,0.1018791213809112,26143.0,7,4,7,7_1,7_3,7_1_0 +4608,2,30.0,2,0.0,5,111,2,0,63,9.0,0.0,0.0,518.1829595733413,0.0,1226.1401058359534,29025.765846751296,0,44,8,15836,201704608,,,,427.0,1.0,0.0,2.0,0.0,1.0,1.0,4036.320409772001,0.0,385.0,693.0,0.0,35635.0,0,1,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1744.3230654092947,0.06009567756519774,0.048949714196977544,35635.0,9,5,9,9_0,9_4,9_0_0 +4609,2,39.0,3,0.0,6,111,1,52,52,6.0,0.0,0.0,1183.072263545369,0.0,0.0,81373.54000000001,41,30,2,15837,201704609,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2829.298554633024,0.0,879.0,0.0,0.0,47221.0,1,1,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1183.072263545369,0.014538783289326836,0.025053943447732343,22486.190476190477,6,3,6,6_0,6_3,6_0_0 +4610,1,50.0,4,324.0,7,111,1,0,68,2.0,0.0,0.0,444.15682249143543,0.0,194.62541362475451,8604.46,0,50,2,15838,201704610,,,,26.0,1.0,1.0,3.0,1.0,2.0,1.3,608.7410487186598,0.0,330.0,110.0,0.0,15930.0,0,1,3,67.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,638.78223611619,0.07423850376620847,0.0400993243010791,12253.846153846154,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4611,2,43.0,2,0.0,1,111,2,48,31,7.0,0.0,0.0,1009.4473238441715,0.0,2830.9151072691566,102020.05741805275,30,31,1,15839,201704611,,,142.0,,2.0,0.0,6.0,2.0,4.0,2.1,2847.417310964934,0.0,750.0,1600.0,0.0,54530.0,1,1,2,160.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3840.362431113328,0.03764320985800352,0.07042659877339681,25966.666666666664,7,4,7,7_1,7_3,7_1_0 +4612,2,67.0,2,0.0,1,300,4,75,75,6.0,0.0,69.396315978172,3634.010365839017,212.31863304518674,0.0,23584.719999999998,44,33,1,1584,201704612,,,300.0,,0.0,0.0,7.0,0.0,2.0,1.5,1462.13653158476,0.0,2700.0,0.0,0.0,31197.0,5,5,1,260.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3915.725314862376,0.16602806032305562,0.1255160853563604,20798.0,5,3,5,5_1,5_0,5_1_0 +4613,2,80.0,2,0.0,2,111,2,77,75,8.0,0.0,0.0,620.1992176069929,0.0,1155.7279521948196,22596.76,70,70,1,15840,201704613,,,150.0,,0.0,1.0,3.0,0.0,2.0,1.5,1969.098196643177,1114.0,0.0,0.0,0.0,40507.0,5,5,1,65.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1775.9271698018124,0.078592115409546,0.043842475863475755,27004.666666666668,7,4,7,7_1,7_3,7_0_1 +4614,2,36.0,3,0.0,9,112,4,52,47,5.0,0.0,0.0,1598.9645609691677,0.0,0.0,50186.09999999999,42,30,1,15841,201704614,,,379.0,,2.0,0.0,4.0,1.0,3.0,1.8,3580.3501825584567,0.0,1188.0,0.0,0.0,33393.0,1,1,3,90.0,6,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1598.9645609691677,0.031860705672868944,0.047883225854794945,18551.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4615,1,36.0,1,128.0,9,111,4,0,63,2.0,0.0,0.0,1144.0403003567276,0.0,0.0,32423.8,0,71,2,15842,201704615,,,,,1.0,0.0,3.0,3.0,4.0,2.3,713.5517958639749,0.0,850.0,0.0,0.0,27896.0,0,1,3,64.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1144.0403003567276,0.0352839673436404,0.041010908386748195,12128.695652173914,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4616,2,38.0,3,0.0,9,120,4,62,47,3.0,0.0,0.0,1873.5342330547821,111.46728234872305,0.0,36461.220836034976,50,31,1,15845,201704616,,,435.0,,2.0,0.0,4.0,2.0,4.0,2.1,2633.258467521157,0.0,1392.0,0.0,0.0,29380.0,1,1,2,105.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1985.0015154035052,0.05444144408466184,0.06756301958487083,13990.476190476189,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4617,2,48.0,3,0.0,9,112,2,0,85,2.0,0.0,0.0,269.1859530251124,0.0,1238.525359430256,20551.279999999995,0,50,1,15846,201704617,,,260.0,,0.0,0.0,3.0,1.0,2.0,1.5,2273.575559110187,0.0,200.0,700.0,0.0,18700.0,0,7,1,120.0,6,1.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1507.7113124553684,0.0733633774857512,0.08062627339333521,12466.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +4618,1,44.0,2,50.0,6,111,1,56,63,3.0,0.0,0.0,395.70335094691524,0.0,0.0,35936.64,42,50,2,15847,201704618,,,,,2.0,3.0,5.0,3.0,5.0,2.4,2307.4931702988756,0.0,294.0,0.0,0.0,33860.0,1,1,2,103.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,395.70335094691524,0.01101113935378809,0.011686454546571625,14108.333333333334,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +4619,2,72.0,1,0.0,4,111,2,77,75,9.0,0.0,0.0,751.0288089400635,0.0,2247.038866394893,55793.50000000001,50,30,1,15848,201704619,,,208.0,,0.0,2.0,4.0,0.0,2.0,1.5,1594.7073273220187,0.0,558.0,1270.0,0.0,51241.0,5,5,1,97.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2998.067675334956,0.05373507084758898,0.058509156248608654,34160.666666666664,9,5,9,9_1,9_3,9_0_1 +4620,2,40.0,3,0.0,5,111,1,0,46,5.0,0.0,0.0,339.1743008116416,0.0,0.0,23785.518839019715,0,43,2,15849,201704620,,,,,1.0,0.0,3.0,1.0,2.0,1.3,746.0189599567392,0.0,252.0,0.0,0.0,25480.0,0,1,2,60.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,339.1743008116416,0.0142596973859251,0.013311393281461602,19600.0,5,3,5,5_0,5_3,5_0_0 +4621,2,63.0,2,0.0,5,111,1,37,78,10.0,1469.058264462605,0.0,627.2032705485119,0.0,0.0,47840.22584675131,31,50,2,15850,201704621,926.0,926.0,136.0,,1.0,3.0,4.0,0.0,2.0,1.5,3195.6351860986174,0.0,466.0,0.0,0.0,63337.0,1,5,1,80.0,8,6.0,3,7,1,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2096.261535011117,0.04381796903982358,0.03309695020305851,42224.666666666664,10,5,10,10_0,10_2,10_0_0 +4622,2,75.0,3,0.0,4,111,1,86,74,9.0,0.0,0.0,346.2871753604574,0.0,645.2987309382207,20117.03740677781,71,30,2,15851,201704622,,,,675.0,0.0,0.0,3.0,1.0,3.0,2.0,2694.423971336249,622.0,0.0,0.0,0.0,67017.0,6,5,3,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,991.5859062986781,0.049290851642230085,0.014796035428304431,33508.5,9,5,9,9_0,9_4,9_0_1 +4623,1,38.0,3,24.0,3,111,1,62,46,4.0,0.0,0.0,807.5578590753372,0.0,212.31863304518674,39860.27087530163,41,30,2,15853,201704623,,,,271.0,2.0,0.0,2.0,1.0,3.0,1.8,1226.952426819737,0.0,600.0,120.0,0.0,31258.0,1,1,3,40.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1019.876492120524,0.025586291054345636,0.032627695057921936,17365.555555555555,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +4624,2,52.0,3,0.0,9,400,5,65,62,6.0,0.0,416.377895869032,1265.1739792180283,159.23897478389006,0.0,22932.136322376293,50,50,1,15854,201704624,,,495.0,,2.0,0.0,5.0,1.0,3.0,2.0,2949.176220245393,0.0,940.0,0.0,0.0,43828.0,1,1,2,130.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1840.7908498709503,0.08027123264895202,0.0420003388215513,21914.0,6,3,6,6_1,6_0,6_0_0 +4625,2,43.0,3,0.0,1,111,2,0,46,6.0,0.0,0.0,1282.6710661646605,0.0,0.0,22136.58,0,31,2,15855,201704625,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2320.474394702274,0.0,953.0,0.0,0.0,22367.0,0,1,1,48.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1282.6710661646605,0.057943506456944134,0.057346584976289194,22367.0,6,3,6,6_0,6_3,6_1_0 +4626,2,26.0,3,0.0,9,300,4,84,52,4.0,0.0,0.0,1399.7669557305844,88.46609710216114,0.0,25931.46,50,71,1,15857,201704626,,,330.0,,1.0,0.0,3.0,1.0,3.0,1.8,2928.7477492080343,0.0,1040.0,0.0,0.0,31577.0,3,1,3,80.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1488.2330528327457,0.05739102437088948,0.04713028637403001,17542.777777777777,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4627,1,51.0,3,410.0,99,111,4,0,85,1.0,0.0,0.0,358.01731752339947,56.61830214538313,0.0,3006.88,0,71,2,15858,201704627,,,,,0.0,2.0,4.0,3.0,4.0,2.5,633.999462894763,0.0,266.0,0.0,0.0,23892.0,0,4,3,63.0,6,5.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,414.6356196687826,0.13789563257222856,0.017354579761794015,9556.8,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4628,1,36.0,4,253.0,7,211,2,0,55,3.0,0.0,0.0,2153.487624200899,0.0,0.0,34575.2,0,41,1,15859,201704628,,,,218.0,1.0,0.0,4.0,2.0,3.0,1.6,1291.0139924845862,0.0,1600.0,0.0,0.0,23275.0,0,1,3,93.0,1,3.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2153.487624200899,0.062284169699695136,0.09252363584106978,14546.875,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +4629,2,26.0,2,0.0,7,111,2,54,43,8.0,0.0,0.0,780.639263772826,0.0,0.0,45686.86,12,30,2,15863,201704629,,,,,2.0,0.0,1.0,0.0,2.0,1.5,2576.4159099609997,0.0,580.0,0.0,0.0,45790.0,4,1,3,42.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,780.639263772826,0.017086734868030456,0.01704824773471994,30526.666666666668,8,4,8,8_0,8_4,8_0_0 +4630,2,46.0,3,0.0,1,120,4,46,64,7.0,0.0,0.0,5545.230632317315,106.15931652259337,0.0,55321.38031599412,30,50,1,15866,201704630,,,480.0,,3.0,4.0,5.0,1.0,3.0,2.0,1931.2061214245828,0.0,4120.0,0.0,0.0,50663.0,1,1,2,110.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5651.389948839908,0.1021556207845743,0.11154866369618673,25331.5,7,4,7,7_1,7_0,7_1_0 +4631,2,77.0,4,0.0,4,111,2,72,68,2.0,0.0,0.0,444.15682249143543,0.0,778.5016544990181,18062.940315994114,70,71,1,15867,201704631,,,110.0,248.0,1.0,6.0,2.0,0.0,2.0,1.5,2020.218548705258,0.0,330.0,440.0,0.0,18710.0,5,5,3,43.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1222.6584769904534,0.06768878463866879,0.06534786087602637,12473.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +4632,2,39.0,4,0.0,4,112,6,21,54,6.0,1427.810408224994,0.0,1309.6223081410403,106.15931652259337,860.3430041558803,35264.74992260452,50,31,1,15869,201704632,,,401.0,,2.0,0.0,3.0,1.0,3.0,1.8,2598.3220005800476,829.2800263327805,630.0,0.0,0.0,39181.0,1,1,2,73.0,7,0.0,4,5,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3703.935037044508,0.10503222184117363,0.09453395873113264,21767.222222222223,6,3,6,6_1,6_0,6_0_1 +4633,2,85.0,2,0.0,4,111,2,77,78,4.0,1626.1174093673542,0.0,657.9100571976958,162.7776186679765,516.2058024935282,21143.264492385504,70,70,1,1587,201704633,,,210.0,,0.0,1.0,6.0,0.0,2.0,1.5,2652.0983626483767,497.56801579966833,283.0,0.0,0.0,25190.0,5,5,1,100.0,7,5.0,3,5,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2963.0108877265548,0.14013970684582072,0.11762647430434914,16793.333333333332,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +4634,2,35.0,2,0.0,9,112,4,52,52,7.0,0.0,0.0,2557.266553738568,0.0,0.0,44411.16,42,50,1,15870,201704634,,,350.0,,2.0,0.0,4.0,1.0,3.0,1.8,2573.0391414104643,0.0,1900.0,0.0,0.0,46580.0,1,1,2,110.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2557.266553738568,0.057581620334586345,0.054900527130497374,25877.777777777777,7,4,7,7_1,7_0,7_0_0 +4635,2,31.0,2,0.0,9,400,6,38,23,9.0,0.0,0.0,2079.4614871189933,0.0,0.0,101333.18,30,31,1,15871,201704635,,,140.0,,2.0,0.0,4.0,1.0,3.0,1.8,2519.3396540320314,0.0,1545.0,0.0,0.0,55347.0,1,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2079.4614871189933,0.020521032569184087,0.037571349614595066,30748.333333333332,8,4,8,8_1,8_0,8_0_0 +4636,2,51.0,3,0.0,5,111,2,0,55,7.0,0.0,0.0,323.0231436301349,0.0,2123.1863304518674,22142.456722052928,0,31,1,15872,201704636,,,220.0,,1.0,2.0,5.0,0.0,1.0,1.0,3043.161498695115,0.0,240.0,1200.0,0.0,27147.0,0,1,2,120.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2446.209474082002,0.11047597404337177,0.09010975334593149,27147.0,7,4,7,7_1,7_4,7_0_0 +4637,2,50.0,5,0.0,1,112,2,0,52,6.0,0.0,0.0,701.482059411859,0.0,1307.1967861449489,14694.55317935981,0,71,2,15873,201704637,,,,749.0,1.0,1.0,3.0,1.0,2.0,1.5,3203.3287848479144,1260.0,0.0,0.0,0.0,31750.0,0,1,3,36.0,10,2.0,2,1,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,2008.678845556808,0.1366954694735617,0.06326547545060812,21166.666666666668,5,3,5,5_0,5_1,5_1_0 +4638,2,61.0,3,0.0,9,112,5,54,72,1.0,0.0,190.14590578019127,2577.455500215451,212.31863304518674,0.0,29975.94,60,50,1,15875,201704638,,,300.0,,1.0,2.0,4.0,0.0,2.0,1.5,2050.428061356769,0.0,1915.0,0.0,0.0,19119.0,1,5,1,70.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2979.920039040829,0.09941039510490177,0.15586171029033052,12746.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4639,2,71.0,2,0.0,9,112,3,77,74,9.0,0.0,0.0,2391.7171926281235,0.0,0.0,43762.32,50,50,1,15876,201704639,,,350.0,,0.0,1.0,6.0,0.0,2.0,1.5,1861.778011623147,0.0,1777.0,0.0,0.0,60708.0,5,5,1,130.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2391.7171926281235,0.0546524314210975,0.0393970678103071,40472.0,9,5,9,9_1,9_2,9_0_0 +4640,2,32.0,3,0.0,9,112,4,47,64,6.0,0.0,0.0,1865.4586544640288,0.0,0.0,61065.200000000004,31,50,1,15878,201704640,,,429.0,,2.0,0.0,5.0,2.0,4.0,2.1,2744.050074030107,0.0,1386.0,0.0,0.0,47675.0,1,1,2,125.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1865.4586544640288,0.030548637431205148,0.0391286555734458,22702.38095238095,6,3,6,6_1,6_1,6_0_0 +4641,2,45.0,2,0.0,9,111,2,52,37,9.0,0.0,0.0,1480.522741638118,0.0,0.0,75172.1,31,31,1,15879,201704641,,,360.0,,2.0,0.0,5.0,1.0,3.0,2.0,1745.4270046538822,0.0,1100.0,0.0,0.0,68854.0,1,1,2,150.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1480.522741638118,0.01969510951055136,0.02150234905217007,34427.0,9,5,9,9_1,9_2,9_0_0 +4642,2,68.0,1,0.0,7,111,2,77,74,10.0,0.0,0.0,698.5375481001666,0.0,2078.953281900787,66150.7132535291,31,12,1,1588,201704642,,,595.0,,0.0,2.0,7.0,0.0,2.0,1.5,1659.484887506127,0.0,519.0,1175.0,0.0,95759.0,5,5,1,150.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2777.4908300009533,0.0419873149266879,0.029005010808393503,63839.333333333336,10,5,10,10_1,10_3,10_0_0 +4643,2,45.0,3,0.0,1,112,2,67,21,3.0,0.0,1249.133687607096,1758.1207556952652,0.0,980.2043558919455,68072.89,50,50,1,15880,201704643,,,660.0,,2.0,0.0,5.0,1.0,3.0,2.0,2323.2901399553134,0.0,1306.25,554.0,0.0,32635.0,1,1,1,140.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3987.4587991943067,0.05857631135088148,0.12218350847845279,16317.5,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4644,2,27.0,4,0.0,9,111,2,85,42,2.0,0.0,0.0,0.5567317931840151,0.0,1.0374577667817053,25960.30083603497,41,20,2,15881,201704644,,,,455.0,1.0,0.0,3.0,1.0,3.0,1.8,2148.351446150223,1.0,0.0,0.0,0.0,24249.0,6,1,3,64.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1.5941895599657205,6.140874753473034e-05,6.574248669906885e-05,13471.666666666666,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +4645,2,48.0,3,0.0,1,111,2,0,33,7.0,0.0,0.0,768.5258958866958,0.0,1008.513506964637,36236.719999999994,0,30,8,15882,201704645,,,,,1.0,0.0,4.0,2.0,3.0,1.8,884.003199264708,0.0,571.0,570.0,0.0,45665.0,0,1,2,63.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1777.0394028513329,0.04903974208624106,0.03891469183951238,25369.444444444445,7,4,7,7_0,7_4,7_1_0 +4646,2,28.0,1,0.0,9,111,1,38,38,9.0,0.0,0.0,376.8603342351573,0.0,0.0,53428.92,12,12,2,15885,201704646,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3232.048863244632,0.0,280.0,0.0,0.0,58426.0,1,1,2,76.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,376.8603342351573,0.007053489650083837,0.0064502162433703715,38950.666666666664,9,5,9,9_0,9_3,9_0_0 +4647,1,26.0,3,379.0,99,111,2,0,64,9.0,0.0,0.0,551.164475252175,0.0,1027.0831891138882,13778.1658467513,0,71,1,15886,201704647,,,250.0,14.0,1.0,1.0,3.0,0.0,1.0,1.0,2725.4809477289245,990.0,0.0,0.0,0.0,34149.0,0,1,3,75.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1578.2476643660632,0.11454700733902053,0.046216511885152224,34149.0,9,5,9,9_1,9_3,9_0_0 +4648,2,39.0,3,0.0,1,111,2,0,46,6.0,0.0,0.0,1117.1217050542164,0.0,0.0,19670.00747815756,0,41,2,15888,201704648,,,198.0,,1.0,0.0,2.0,0.0,1.0,1.0,3210.677632985805,0.0,830.0,0.0,0.0,23760.0,0,1,3,35.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1117.1217050542164,0.05679315100895194,0.04701690677837611,23760.0,6,3,6,6_0,6_3,6_1_0 +4650,2,52.0,2,0.0,2,300,6,63,56,6.0,2062.392811880547,555.170527825376,1615.1157181506744,176.9321942043223,0.0,38971.62,50,50,1,1589,201704650,,,,465.0,2.0,2.0,5.0,0.0,2.0,1.5,1747.6796618060866,0.0,1200.0,0.0,0.0,33524.0,4,1,3,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4409.6112520609195,0.11314929305122341,0.13153595191686313,22349.333333333332,6,3,6,6_1,6_0,6_0_1 +4651,2,83.0,2,0.0,3,111,2,77,75,6.0,0.0,0.0,823.7090162568439,0.0,1019.1294386168964,30852.36801587889,70,70,2,15892,201704651,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2953.394750853718,0.0,612.0,576.0,0.0,33135.0,5,5,1,75.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1842.8384548737404,0.05973085935981578,0.05561606925829909,22090.0,6,3,6,6_0,6_3,6_0_1 +4652,2,50.0,3,0.0,2,400,2,13,67,6.0,0.0,0.0,874.8543473316153,0.0,3344.0184704616913,12774.190737753377,50,50,1,15896,201704652,,,227.0,,2.0,2.0,7.0,0.0,2.0,1.5,1687.2834593946138,0.0,650.0,1890.0,0.0,41755.0,1,1,1,140.0,0,1.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4218.872817793306,0.3302653690088307,0.10103874548660774,27836.666666666668,8,4,8,8_1,8_1,8_0_1 +4653,1,30.0,1,200.0,9,300,4,0,21,4.0,0.0,0.0,2395.7549819235,0.0,0.0,21929.78,0,44,1,15897,201704653,,,,,1.0,0.0,5.0,2.0,3.0,1.6,838.0546981832944,0.0,1780.0,0.0,0.0,26253.0,0,1,2,105.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2395.7549819235,0.10924664916490272,0.09125642714826877,16408.125,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +4654,2,71.0,3,0.0,1,120,2,77,63,4.0,1427.810408224994,0.0,1682.4122064069525,141.54575536345783,0.0,36966.91999999999,70,50,1,15899,201704654,,,250.0,,1.0,3.0,3.0,0.0,2.0,1.5,1319.3280574213343,0.0,1250.0,0.0,0.0,25423.0,5,5,3,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3251.768369995404,0.08796427643946006,0.12790655587442096,16948.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4655,1,42.0,3,20.0,99,111,1,47,35,4.0,0.0,0.0,780.639263772826,0.0,617.4933577730848,56030.079660717,30,20,2,1590,201704655,,,,730.0,2.0,0.0,3.0,1.0,3.0,1.8,3762.659696719215,0.0,580.0,349.0,0.0,30274.0,1,1,3,56.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1398.1326215459108,0.02495325064701183,0.04618261946045817,16818.888888888887,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +4656,2,55.0,4,0.0,8,111,6,22,21,1.0,0.0,0.0,538.3719060502248,0.0,1503.9236507367395,25539.9,50,44,1,15900,201704656,,,200.0,,2.0,2.0,4.0,0.0,2.0,1.5,2534.793028575904,0.0,400.0,850.0,0.0,16022.0,1,1,3,82.0,5,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2042.2955567869644,0.07996490028492532,0.12746820351934618,10681.333333333334,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4657,2,46.0,3,0.0,5,111,1,0,85,1.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,19341.850875301632,0,50,2,15901,201704657,,,,,1.0,1.0,3.0,2.0,3.0,2.0,3676.4866113928015,1200.0,0.0,0.0,0.0,19125.0,0,7,3,75.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1913.0274719588647,0.09890612249532357,0.10002758023314325,9562.5,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +4658,2,48.0,2,0.0,8,120,2,52,46,7.0,0.0,485.77421184720396,1480.522741638118,0.0,0.0,38808.18,31,31,1,15903,201704658,,,620.0,,2.0,0.0,6.0,2.0,4.0,2.3,1376.6662881544355,0.0,1100.0,0.0,0.0,55591.0,1,1,1,104.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1966.296953485322,0.050667074660170154,0.03537077860598518,24170.000000000004,7,4,7,7_1,7_1,7_0_0 +4659,2,26.0,2,0.0,5,111,5,54,63,5.0,0.0,582.9290542166448,1082.1275311609518,84.9274532180747,0.0,51041.382304058185,30,31,1,15904,201704659,,,380.0,,2.0,0.0,3.0,1.0,3.0,1.8,4423.002384832963,0.0,804.0,0.0,0.0,35920.0,1,1,2,80.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1749.9840385956713,0.03428559258389313,0.04871893203217348,19955.555555555555,5,3,5,5_1,5_2,5_0_0 +4660,2,37.0,4,0.0,9,112,1,0,65,2.0,0.0,0.0,323.0231436301349,0.0,0.0,13251.119999999999,0,50,2,15905,201704660,,,,288.0,1.0,1.0,2.0,0.0,1.0,1.0,2415.2528050562482,0.0,240.0,0.0,0.0,13530.0,0,4,3,58.0,10,5.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,323.0231436301349,0.024377044629445278,0.02387458563415631,13530.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +4661,2,63.0,3,0.0,8,111,2,77,77,1.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,20120.519999999997,71,71,1,15907,201704661,,,230.0,,0.0,0.0,3.0,0.0,2.0,1.5,3551.9688189025605,1300.0,0.0,0.0,0.0,15756.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2072.4464279554363,0.10300163355397557,0.13153379207637955,10504.0,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +4662,2,55.0,2,0.0,1,111,6,0,54,7.0,0.0,0.0,574.7120097086149,0.0,212.31863304518674,18913.94,0,42,2,15908,201704662,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3102.3222935664644,0.0,427.0,120.0,0.0,27437.0,0,1,1,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,787.0306427538017,0.041611141980666205,0.028685010852272538,27437.0,8,4,8,8_0,8_4,8_1_0 +4663,2,80.0,2,0.0,1,111,2,0,72,9.0,0.0,0.0,403.7789295376686,3184.779495677801,0.0,23283.139999999996,0,71,1,15909,201704663,,,148.0,,0.0,0.0,3.0,0.0,1.0,1.0,2789.7982109560544,0.0,300.0,0.0,0.0,37994.0,0,5,1,100.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3588.55842521547,0.15412691008238025,0.09445066129429568,37994.0,9,5,9,9_1,9_3,9_1_0 +4664,1,50.0,2,353.0,99,111,2,0,85,1.0,0.0,0.0,430.6975248401798,0.0,1256.2185788506883,9382.52,0,60,8,15910,201704664,,,400.0,107.0,0.0,3.0,4.0,1.0,2.0,1.5,867.0756618429743,0.0,320.0,710.0,0.0,14816.0,0,6,3,51.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1686.916103690868,0.17979349936806616,0.11385772838086312,9877.333333333334,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4665,2,56.0,4,0.0,99,120,2,0,56,1.0,0.0,0.0,1694.5255742930824,0.0,474.17828046758376,48201.520000000004,0,30,1,15911,201704665,,,,,1.0,0.0,3.0,1.0,2.0,1.5,2101.855603408552,0.0,1259.0,268.0,0.0,4883.0,0,4,1,100.0,0,3.0,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2168.703854760666,0.04499243705926008,0.4441334947287869,3255.3333333333335,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +4666,2,53.0,3,0.0,7,112,2,52,43,8.0,2379.684013708323,0.0,1345.929765125562,0.0,0.0,72793.31262590489,50,33,1,15912,201704666,,,300.0,,2.0,1.0,4.0,1.0,3.0,2.0,1406.9050939454146,0.0,1000.0,0.0,0.0,56100.0,1,1,1,120.0,6,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3725.613778833885,0.05118071488215326,0.06641022778670028,28050.0,8,4,8,8_1,8_0,8_0_0 +4667,2,31.0,3,0.0,3,111,4,81,34,7.0,0.0,0.0,44.41568224914354,0.0,141.54575536345783,48512.24,0,30,1,15913,201704667,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3380.28854392472,0.0,33.0,80.0,0.0,42977.0,4,1,2,96.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,185.96143761260137,0.003833289034120077,0.004326999036987258,23876.11111111111,6,3,6,6_1,6_4,6_0_1 +4668,2,46.0,3,0.0,8,112,4,54,46,8.0,0.0,0.0,3095.6384597887923,159.23897478389006,0.0,70627.92000000001,31,31,1,15914,201704668,,,700.0,,2.0,0.0,5.0,3.0,5.0,2.4,2446.886615033114,0.0,2300.0,0.0,0.0,65426.0,1,1,2,130.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3254.8774345726824,0.046084854751105256,0.0497489902267093,27260.833333333336,7,4,7,7_1,7_0,7_0_0 +4669,2,48.0,2,0.0,6,120,2,46,38,9.0,0.0,416.377895869032,1655.4936111044412,0.0,0.0,54249.13999999999,42,41,1,15915,201704669,,,400.0,,2.0,1.0,5.0,0.0,2.0,1.5,1605.9693812220376,0.0,1230.0,0.0,0.0,59334.0,1,1,2,120.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2071.871506973473,0.03819178528864187,0.034918790355841056,39556.0,9,5,9,9_1,9_1,9_0_0 +4670,2,86.0,3,0.0,1,300,5,71,71,2.0,0.0,0.0,807.5578590753372,240.62778411787832,0.0,18812.727849749775,70,71,1,15916,201704670,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2733.897444588863,0.0,600.0,0.0,0.0,17316.0,5,5,1,77.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1048.1856431932156,0.05571683445190312,0.060532781427189625,11544.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4671,2,40.0,3,0.0,6,111,2,43,43,4.0,0.0,0.0,2277.3131625924507,0.0,0.0,44775.380000000005,33,33,1,15918,201704671,,,,,2.0,0.0,2.0,2.0,4.0,2.1,1994.1770702516865,0.0,1692.0,0.0,0.0,35353.0,1,1,3,61.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2277.3131625924507,0.05086083384646765,0.06441640490460358,16834.761904761905,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +4672,2,37.0,4,0.0,7,111,2,0,67,5.0,0.0,0.0,566.6364311178615,0.0,566.1830214538313,22413.18,0,50,2,1592,201704672,,,236.0,427.0,1.0,2.0,3.0,1.0,2.0,1.5,1887.9609082574634,0.0,421.0,320.0,0.0,27800.0,0,1,3,92.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1132.8194525716929,0.05054255810963428,0.04074890117164363,18533.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +4673,2,43.0,3,0.0,7,112,2,43,45,6.0,1951.3408912408252,0.0,1187.1100528407455,159.23897478389006,0.0,44091.34,50,31,1,15920,201704673,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2273.2389011148084,0.0,882.0,0.0,0.0,49967.0,1,1,2,100.0,9,0.0,4,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3297.689918865461,0.07479223627282504,0.0659973566326868,21724.782608695656,6,3,6,6_1,6_0,6_0_0 +4674,2,24.0,1,0.0,1,111,2,0,54,4.0,0.0,0.0,484.5347154452023,0.0,0.0,24827.62,0,0,2,15921,201704674,,,,400.0,1.0,0.0,2.0,0.0,1.0,1.0,4079.392868022732,0.0,360.0,0.0,0.0,17310.0,0,1,3,25.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,484.5347154452023,0.019515955030937414,0.027991606900358307,17310.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +4675,2,90.0,2,0.0,3,111,2,0,74,10.0,2081.4302839902134,0.0,804.8659995450861,0.0,0.0,15709.039999999999,0,50,1,15922,201704675,,,279.0,,0.0,1.0,5.0,0.0,1.0,1.0,2842.685956932305,0.0,598.0,0.0,0.0,50051.0,0,5,5,103.0,4,3.0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2886.2962835352996,0.18373473385612996,0.057667105223378146,50051.0,10,5,10,10_1,10_1,10_0_1 +4676,2,50.0,3,0.0,7,111,2,0,85,1.0,0.0,0.0,807.5578590753372,0.0,0.0,16120.93536887669,0,31,2,15923,201704676,,,,,0.0,0.0,2.0,0.0,1.0,1.0,8956.7734254313,0.0,600.0,0.0,0.0,4695.0,0,7,1,42.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,807.5578590753372,0.050093734674628125,0.17200380384991207,4695.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +4677,2,87.0,3,0.0,2,211,2,77,75,6.0,0.0,0.0,807.5578590753372,0.0,3538.6438840864457,14608.88,60,71,1,15925,201704677,,,,,0.0,3.0,4.0,0.0,2.0,1.5,968.6651192556319,0.0,600.0,2000.0,0.0,35256.0,5,5,1,100.0,4,3.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4346.201743161783,0.2975041032003674,0.1232755202848248,23504.0,6,3,6,6_1,6_1,6_0_1 +4678,2,77.0,2,0.0,4,111,1,0,77,9.0,0.0,0.0,1347.7217306244715,0.0,2120.966124839572,29070.689207038136,0,60,2,15926,201704678,,,,,0.0,0.0,2.0,0.0,1.0,1.0,6687.7700725790855,1884.076561835401,222.0,94.0,0.0,42644.0,0,5,1,50.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3468.6878554640434,0.11931907877245165,0.08134058379758098,42644.0,10,5,10,10_0,10_3,10_0_1 +4679,1,45.0,5,276.0,9,111,1,0,53,2.0,0.0,0.0,872.1624878013641,0.0,0.0,54077.47999999999,0,60,2,15927,201704679,,,,478.0,2.0,0.0,5.0,4.0,5.0,2.6,687.23861290888,0.0,648.0,0.0,0.0,34815.0,0,1,3,110.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,872.1624878013641,0.016128016464549835,0.025051342461621835,13390.384615384615,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +4680,2,76.0,3,0.0,6,211,2,72,78,3.0,0.0,832.755791738064,612.4049725024166,0.0,1141.2035434598758,19384.02,50,71,1,15929,201704680,,,530.0,,0.0,2.0,4.0,0.0,2.0,1.5,1327.8733000775926,1100.0,0.0,0.0,0.0,21447.0,5,5,1,90.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2586.364307700356,0.13342765369104842,0.12059329079593212,14298.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4681,1,35.0,5,310.0,1,211,4,85,68,1.0,0.0,0.0,5383.719060502248,0.0,0.0,14309.119999999999,60,71,2,15932,201704681,,,100.0,125.0,1.0,1.0,3.0,3.0,5.0,2.4,5055.206390007532,0.0,4000.0,0.0,0.0,21811.0,6,4,3,47.0,1,2.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,5383.719060502248,0.37624389623556503,0.24683504014039925,9087.916666666668,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +4682,2,80.0,3,0.0,1,400,6,86,74,5.0,1110.5192063972174,0.0,1130.581002705472,44.23304855108057,0.0,20902.72,50,60,1,15935,201704682,,,200.0,,0.0,1.0,2.0,0.0,2.0,1.5,3585.417669888173,0.0,840.0,0.0,0.0,27430.0,5,5,1,60.0,0,1.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2285.33325765377,0.10933186004758089,0.08331510235704594,18286.666666666668,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +4683,2,79.0,1,0.0,4,111,2,0,77,7.0,0.0,0.0,532.9881869897225,0.0,2222.268359206288,29597.880315994116,0,70,1,15936,201704683,,,190.0,,0.0,2.0,4.0,0.0,1.0,1.0,2709.2557921263506,0.0,396.0,1256.0,0.0,24754.0,0,5,1,80.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2755.2565461960107,0.09308965766400251,0.11130550804702313,24754.0,7,4,7,7_1,7_2,7_0_1 +4684,2,39.0,2,0.0,1,400,5,56,48,6.0,793.228004569441,499.65347504283835,1103.6624074029608,106.15931652259337,0.0,44083.8,42,41,1,15937,201704684,,,440.0,,2.0,0.0,7.0,3.0,5.0,2.6,1561.2057371029398,0.0,820.0,0.0,0.0,56369.0,1,1,2,203.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2502.7032035378334,0.05677149437067207,0.044398573746879194,21680.384615384613,6,3,6,6_1,6_0,6_1_0 +4685,1,36.0,4,105.0,4,111,1,55,63,3.0,0.0,0.0,613.7439728972563,0.0,276.0142229587428,18288.3658467513,43,71,2,15938,201704685,,,300.0,,2.0,0.0,3.0,0.0,2.0,1.5,2873.084079375354,0.0,456.0,156.0,0.0,20740.0,4,1,3,50.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,889.758195855999,0.048651596501939696,0.042900588035486936,13826.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +4686,2,33.0,3,0.0,7,111,2,0,47,6.0,0.0,0.0,484.5347154452023,0.0,849.274532180747,16823.22,0,31,2,1594,201704686,,,,340.0,1.0,0.0,2.0,0.0,1.0,1.0,2911.5729073888674,0.0,360.0,480.0,0.0,22626.0,0,1,3,40.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1333.8092476259494,0.07928382602295811,0.05895028938504152,22626.0,6,3,6,6_0,6_2,6_0_0 +4687,2,31.0,3,0.0,4,111,1,84,47,7.0,0.0,0.0,450.88647131706324,0.0,120.31389205893916,26872.96,41,41,2,15940,201704687,,,192.0,320.0,1.0,0.0,2.0,0.0,2.0,1.5,3083.931664981582,0.0,335.0,68.0,0.0,42924.0,3,1,3,63.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,571.2003633760024,0.021255580456190998,0.013307249170068083,28616.0,8,4,8,8_0,8_3,8_0_1 +4688,1,44.0,4,264.0,9,111,2,0,52,2.0,0.0,0.0,523.3278855929742,0.0,975.210300774803,29990.068165743887,0,50,1,15941,201704688,,,456.0,,1.0,0.0,5.0,3.0,4.0,2.3,512.1709431994104,940.0,0.0,0.0,0.0,28612.0,0,1,2,100.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1498.5381863677771,0.04996781528090957,0.05237446478288051,12440.000000000002,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +4689,2,69.0,3,0.0,1,111,2,0,78,5.0,818.6113007156632,0.0,339.1743008116416,109.69796040667983,0.0,18622.600000000002,0,71,1,15942,201704689,,,90.0,,0.0,2.0,4.0,0.0,1.0,1.0,2090.033440090409,0.0,252.0,0.0,0.0,20213.0,0,5,3,80.0,9,7.0,1,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1267.4835619339847,0.06806157904556746,0.06270635541156605,20213.0,5,3,5,5_1,5_3,5_1_0 +4690,2,56.0,2,0.0,3,112,2,37,47,8.0,0.0,388.6193694777632,815.6334376660906,0.0,2123.1863304518674,40888.700000000004,30,60,1,15943,201704690,,,370.0,,2.0,0.0,6.0,2.0,4.0,2.5,1514.0804516134476,0.0,606.0,1200.0,0.0,75708.0,1,1,2,150.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3327.439137595721,0.08137796353505299,0.04395095812325938,30283.2,8,4,8,8_1,8_1,8_0_1 +4691,2,72.0,3,0.0,5,400,2,77,78,2.0,2379.684013708323,555.170527825376,672.964882562781,265.39829130648343,0.0,22624.74753375566,70,50,1,15946,201704691,,,320.0,,0.0,4.0,4.0,0.0,2.0,1.5,1705.6284276896038,0.0,500.0,0.0,0.0,18185.0,5,5,1,85.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3873.2177154029637,0.17119385352805383,0.21298970114946184,12123.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4692,2,67.0,4,0.0,1,300,2,0,78,2.0,1745.1016100527704,0.0,471.07541779394666,0.0,0.0,8967.78,0,71,1,15947,201704692,,,,,0.0,0.0,3.0,0.0,1.0,1.0,4616.757996674287,0.0,350.0,0.0,0.0,11740.0,0,5,3,60.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2216.177027846717,0.24712660522969082,0.18877146744861303,11740.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4693,1,26.0,3,353.0,6,221,4,0,56,2.0,0.0,0.0,1345.929765125562,0.0,0.0,8125.859999999999,0,50,2,15948,201704693,,,,,1.0,0.0,3.0,1.0,2.0,1.3,846.9037813485495,0.0,1000.0,0.0,0.0,14106.0,0,4,3,70.0,1,2.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1345.929765125562,0.16563536230325926,0.09541540940915652,10850.76923076923,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +4694,2,46.0,2,0.0,5,211,2,63,54,6.0,0.0,0.0,1001.84963980202,0.0,1866.9253358349467,25794.28,44,31,1,15950,201704694,,,200.0,,2.0,3.0,4.0,0.0,2.0,1.5,1522.987470969364,1799.5193593531333,0.0,0.0,0.0,33975.0,4,1,2,82.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2868.7749756369667,0.11121748603322003,0.08443782121080108,22650.0,6,3,6,6_1,6_2,6_0_0 +4695,2,53.0,3,0.0,8,112,6,38,38,9.0,0.0,0.0,3856.088777084735,0.0,0.0,95879.99010576514,31,31,1,15951,201704695,,,,,2.0,3.0,7.0,2.0,4.0,2.5,1062.7849876297316,0.0,2865.0,0.0,0.0,86682.0,1,1,2,230.0,9,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3856.088777084735,0.04021786790790327,0.04448546153855166,34672.8,9,5,9,9_1,9_1,9_0_0 +4696,2,40.0,3,0.0,9,112,4,56,43,8.0,0.0,555.170527825376,1899.106898592168,120.31389205893916,0.0,36465.420315994124,43,41,1,15953,201704696,,,660.0,,2.0,0.0,4.0,1.0,3.0,1.8,1386.6143983577315,0.0,1411.0,0.0,0.0,51414.0,1,1,2,85.0,10,5.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2574.591318476483,0.07060363753293253,0.050075685970289864,28563.333333333332,8,4,8,8_1,8_2,8_0_0 +4697,2,74.0,4,0.0,1,111,6,71,77,1.0,0.0,0.0,942.1508355878933,113.23660429076627,0.0,15322.64,50,50,2,15957,201704697,,,240.0,,0.0,0.0,3.0,0.0,2.0,1.5,1964.7318142481938,0.0,700.0,0.0,0.0,17747.0,5,5,1,70.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1055.3874398786595,0.06887765031865654,0.05946849833090999,11831.333333333334,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +4698,2,23.0,3,0.0,99,120,2,0,43,8.0,0.0,0.0,1615.1157181506744,0.0,0.0,20387.940000000002,0,31,3,15958,201704698,,,330.0,580.0,1.0,0.0,3.0,0.0,1.0,1.0,3324.402780716059,0.0,1200.0,0.0,0.0,29240.0,0,1,3,80.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1615.1157181506744,0.07921917163532334,0.055236515668627716,29240.0,8,4,8,8_0,8_0,8_0_0 +4699,2,55.0,1,0.0,8,111,2,42,38,10.0,0.0,333.10231669522557,1446.8744975099792,0.0,2763.680873471514,99679.62,30,42,1,15959,201704699,,,485.0,,2.0,1.0,7.0,1.0,3.0,2.0,1913.1492191214923,0.0,1075.0,1562.0,0.0,171475.0,1,1,1,160.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4543.657687676719,0.04558261445696442,0.026497493440307447,85737.5,10,5,10,10_1,10_3,10_0_0 +4700,2,24.0,1,0.0,9,111,1,63,54,8.0,0.0,0.0,320.33128409988376,0.0,530.7965826129669,33887.14,31,30,2,15962,201704700,300.0,300.0,,600.0,2.0,0.0,2.0,0.0,2.0,1.5,3545.685251720782,0.0,238.0,300.0,0.0,43742.0,1,1,3,51.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,851.1278667128506,0.025116544704358368,0.019457909256843552,29161.333333333332,8,4,8,8_0,8_2,8_0_0 +4701,2,40.0,3,0.0,6,111,2,52,52,6.0,0.0,0.0,619.1276919577585,53.079658261296686,0.0,46582.52434958685,43,50,1,15963,201704701,,,260.0,,2.0,0.0,10.0,1.0,3.0,1.8,1024.22377954147,0.0,460.0,0.0,0.0,36880.0,1,1,1,114.0,6,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,672.2073502190552,0.014430462058568476,0.018226880428933168,20488.888888888887,5,3,5,5_1,5_2,5_0_0 +4702,2,50.0,2,0.0,8,112,2,0,46,3.0,1732.4099619796593,0.0,632.5869896090142,0.0,0.0,29045.98,0,31,1,15964,201704702,,,48.0,,1.0,0.0,5.0,3.0,4.0,2.3,736.551825779513,0.0,470.0,0.0,0.0,32457.0,0,1,2,140.0,9,1.0,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2364.9969515886733,0.0814225222075025,0.0728655436913046,14111.739130434784,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4703,2,30.0,3,0.0,8,120,2,0,21,4.0,0.0,0.0,192.46795641295535,0.0,265.39829130648343,10993.939999999999,0,50,2,15965,201704703,,,,480.0,1.0,0.0,3.0,0.0,1.0,1.0,3453.8546495865753,0.0,143.0,150.0,0.0,15894.0,0,1,3,55.0,0,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,457.8662477194388,0.04164714813064641,0.028807490104406617,15894.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +4704,2,48.0,3,0.0,2,111,2,0,37,6.0,0.0,0.0,672.964882562781,0.0,2653.9829130648345,34907.08,0,31,1,15966,201704704,,,240.0,,1.0,0.0,4.0,2.0,3.0,1.8,712.3597004503749,0.0,500.0,1500.0,0.0,38164.0,0,1,2,77.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3326.9477956276155,0.0953086822394659,0.08717502870840624,21202.222222222223,5,3,5,5_1,5_3,5_0_1 +4705,2,59.0,1,0.0,9,111,4,77,37,10.0,0.0,97.1548423694408,1749.7086946632305,0.0,0.0,41892.54,50,71,1,15967,201704705,,,,,1.0,2.0,5.0,0.0,2.0,1.5,2128.0469901212655,0.0,1300.0,0.0,0.0,70789.0,6,1,2,100.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1846.8635370326713,0.04408573786723534,0.026089696662372278,47192.666666666664,10,5,10,10_1,10_3,10_0_0 +4706,2,36.0,4,0.0,99,112,4,0,54,2.0,0.0,0.0,1144.0403003567276,106.15931652259337,0.0,26166.300000000003,0,50,2,15968,201704706,,,,,1.0,0.0,5.0,1.0,2.0,1.3,2586.195841111558,0.0,850.0,0.0,0.0,16899.0,0,1,3,100.0,8,0.0,2,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1250.199616879321,0.047778998822123143,0.07398068624648328,12999.23076923077,2,1,2_0,2_0_0,2_0_0,2_0_0_0 +4707,2,38.0,4,0.0,6,111,2,31,37,10.0,0.0,0.0,1202.5406732774727,0.0,2240.9087762484837,80532.34000000001,10,20,1,1597,201704707,,,1050.0,,2.0,0.0,6.0,1.0,3.0,1.8,2499.190503551927,2160.0,0.0,0.0,0.0,100615.0,1,1,2,116.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3443.4494495259564,0.042758591759856426,0.03422401679198883,55897.22222222222,10,5,10,10_1,10_4,10_0_0 +4708,2,65.0,2,0.0,1,111,2,47,74,10.0,0.0,0.0,1370.1169430258612,0.0,2553.183564049777,40768.267533755665,50,30,1,15970,201704708,,,295.0,,1.0,0.0,5.0,0.0,2.0,1.5,1487.61556016353,2461.0,0.0,0.0,0.0,106435.0,1,5,2,120.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3923.300507075638,0.09623417290978062,0.036860999737639295,70956.66666666667,10,5,10,10_1,10_2,10_1_0 +4709,1,37.0,3,200.0,2,111,2,54,64,4.0,0.0,0.0,740.261370819059,0.0,1273.9117982711205,48714.59999999999,71,43,1,15972,201704709,,,440.0,,2.0,0.0,3.0,2.0,4.0,2.1,2421.990043825721,0.0,550.0,720.0,0.0,38120.0,1,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,2014.1731690901795,0.041346396544160884,0.05283770118284836,18152.38095238095,4,2,4_1,4_1_1,4_4_1,4_0_1_1 +4710,2,55.0,1,0.0,8,111,2,74,37,10.0,0.0,0.0,1446.3001655860503,0.0,2695.1493668136286,63905.82667227687,12,12,2,15973,201704710,,,,,1.0,3.0,7.0,0.0,2.0,1.5,2434.232280630268,2597.8400789983416,0.0,0.0,0.0,188044.0,5,1,1,160.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4141.449532399679,0.06480550754218302,0.02202383236050966,125362.66666666667,10,5,10,10_0,10_4,10_0_0 +4711,2,37.0,2,0.0,1,111,2,42,38,8.0,0.0,0.0,1372.8483604280732,0.0,1769.3219420432229,51956.059663922264,30,20,1,15974,201704711,,,450.0,,2.0,0.0,3.0,2.0,4.0,2.1,2029.0193031809608,0.0,1020.0,1000.0,0.0,67590.0,1,1,2,110.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3142.170302471296,0.06047745581163049,0.04648868623274591,32185.714285714283,9,5,9,9_1,9_2,9_1_0 +4712,2,64.0,2,0.0,4,111,1,56,78,10.0,0.0,0.0,545.1015548758526,0.0,0.0,25537.6,50,71,2,15975,201704712,,,360.0,,1.0,2.0,3.0,0.0,2.0,1.5,2139.132444865652,0.0,405.0,0.0,0.0,104876.0,1,5,1,72.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,545.1015548758526,0.02134505806637478,0.005197581475989288,69917.33333333333,10,5,10,10_0,10_2,10_0_1 +4713,2,80.0,3,0.0,4,111,2,0,77,9.0,2179.790556556824,0.0,861.3950496803596,53.079658261296686,0.0,25280.380000000005,0,70,1,15977,201704713,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2104.651570309892,0.0,640.0,0.0,0.0,33151.0,0,5,1,95.0,9,7.0,1,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3094.26526449848,0.12239789372226523,0.09333851963737082,33151.0,9,5,9,9_1,9_3,9_0_1 +4714,2,79.0,3,0.0,1,111,2,0,77,2.0,0.0,69.396315978172,668.0781518208182,0.0,1244.9493201380465,13994.22,0,60,1,15979,201704714,,,160.0,,0.0,3.0,5.0,0.0,1.0,1.0,3694.156883082245,1200.0,0.0,0.0,0.0,12589.0,0,5,1,79.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1982.4237879370366,0.14166018455741275,0.15747269742926656,12589.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +4715,2,55.0,2,0.0,2,111,2,0,45,8.0,0.0,0.0,161.51157181506744,0.0,1061.5931652259337,10330.279999999999,0,50,1,1598,201704715,,,93.0,,1.0,0.0,5.0,0.0,1.0,1.0,1238.5732840276935,0.0,120.0,600.0,0.0,30335.0,0,1,1,89.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1223.104737041001,0.11839995983080819,0.040319918808010585,30335.0,8,4,8,8_1,8_2,8_0_1 +4716,2,32.0,1,0.0,8,111,2,0,38,10.0,0.0,0.0,511.45331074771354,0.0,707.7287768172891,25237.239999999998,0,12,2,15981,201704716,,,,490.0,1.0,0.0,2.0,0.0,1.0,1.0,3199.5065664056287,0.0,380.0,400.0,0.0,55088.0,0,1,3,42.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1219.1820875650028,0.048308851822346774,0.02213153658809546,55088.0,10,5,10,10_0,10_3,10_0_0 +4717,2,66.0,3,0.0,1,111,2,0,78,3.0,0.0,0.0,218.04062195034103,0.0,2123.1863304518674,19827.32,0,70,1,15982,201704717,,,130.0,,0.0,2.0,3.0,0.0,1.0,1.0,2528.4971998356295,0.0,162.0,1200.0,0.0,15393.0,0,5,2,70.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2341.2269524022086,0.11808085774588843,0.15209685911792428,15393.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +4718,2,43.0,2,0.0,5,211,2,0,22,3.0,0.0,0.0,644.3768988989149,0.0,1257.3109382135765,12794.003693172468,0,30,2,15983,201704718,,,101.0,220.0,1.0,0.0,3.0,0.0,1.0,1.0,4698.626328748604,792.3770651609718,151.0,246.0,0.0,15137.0,0,1,3,55.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1901.6878371124913,0.14863899391613658,0.12563175246828903,15137.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +4719,1,27.0,5,402.0,5,111,1,0,68,4.0,0.0,0.0,1345.929765125562,0.0,0.0,15852.370875301629,0,60,2,15985,201704719,,,,,1.0,0.0,3.0,2.0,3.0,1.6,1611.6516676927145,0.0,1000.0,0.0,0.0,26454.0,0,1,3,65.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1345.929765125562,0.08490400431033017,0.050878119192770924,16533.75,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +4720,2,47.0,2,0.0,8,112,2,85,13,3.0,0.0,0.0,2022.0273768161192,0.0,1792.0864746723664,59693.00857983644,31,31,1,15986,201704720,,,600.0,,1.0,0.0,8.0,3.0,5.0,2.8,1993.2484116742075,414.19380437247355,1331.0,770.0,0.0,40755.0,6,1,1,213.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3814.1138514884856,0.06389548696288774,0.09358640293187304,14555.357142857143,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4721,2,71.0,1,0.0,1,111,2,0,77,7.0,0.0,0.0,2512.850871489424,0.0,0.0,23297.559999999998,0,60,1,15987,201704721,,,270.0,,0.0,2.0,7.0,0.0,1.0,1.0,2705.075428489783,0.0,1867.0,0.0,0.0,28205.0,0,5,1,220.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2512.850871489424,0.10785897199060436,0.0890923904091269,28205.0,8,4,8,8_1,8_2,8_1_0 +4722,2,55.0,2,0.0,5,111,2,67,53,7.0,0.0,0.0,834.4764543778484,0.0,2300.11852465619,23121.08,41,41,1,15989,201704722,,,400.0,,2.0,2.0,5.0,0.0,2.0,1.5,1327.921938765928,0.0,620.0,1300.0,0.0,41067.0,4,1,1,100.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3134.5949790340383,0.1355730346088521,0.07632880363878633,27378.0,8,4,8,8_1,8_3,8_0_0 +4723,1,70.0,3,199.0,1,111,2,78,77,2.0,0.0,0.0,2269.2375840016975,0.0,955.4338487033403,25908.04063198823,71,71,1,15990,201704723,,,,363.0,0.0,1.0,3.0,0.0,2.0,1.5,2059.8386257005304,0.0,1686.0,540.0,0.0,19668.0,7,5,3,72.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,3224.6714327050377,0.12446604814736893,0.16395522842714244,13112.0,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +4724,2,56.0,3,0.0,7,111,2,22,31,9.0,0.0,0.0,726.8020731678034,0.0,2123.1863304518674,42579.78469104511,20,44,1,15991,201704724,,,293.0,,3.0,0.0,5.0,2.0,4.0,2.5,1872.7755071396841,0.0,540.0,1200.0,0.0,87839.0,1,1,1,180.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2849.988403619671,0.06693289842348704,0.032445592545676416,35135.6,9,5,9,9_1,9_2,9_0_0 +4725,2,32.0,3,0.0,7,111,2,52,33,5.0,0.0,0.0,63.25869896090141,0.0,138.0071114793714,29143.102382591485,41,30,1,15992,201704725,,,,581.0,2.0,0.0,3.0,0.0,2.0,1.5,833.4670479509153,0.0,47.0,78.0,0.0,31854.0,4,1,3,68.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,201.2658104402728,0.006906121654381522,0.006318384204190142,21236.0,6,3,6,6_1,6_3,6_0_0 +4726,1,54.0,2,256.0,9,400,2,0,78,6.0,0.0,0.0,500.68587262670906,0.0,0.0,13949.88,0,50,2,15993,201704726,,,,,0.0,4.0,1.0,0.0,1.0,1.0,5170.6278276485655,0.0,372.0,0.0,0.0,21515.0,0,7,3,28.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,500.68587262670906,0.03589176914974961,0.023271479090249084,21515.0,6,3,6,6_0,6_0,6_0_0 +4727,1,44.0,3,350.0,99,111,1,0,52,1.0,0.0,0.0,105.77904070496288,0.0,197.116975688524,11031.88,0,71,2,15994,201704727,,,380.0,,1.0,0.0,3.0,1.0,2.0,1.3,1496.3744346714966,190.0,0.0,0.0,0.0,12860.0,0,4,3,60.0,4,3.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,302.8960163934869,0.02745642777056013,0.02355334497616539,9892.307692307691,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +4728,2,39.0,2,0.0,7,111,2,42,35,6.0,0.0,0.0,921.9618891110099,0.0,1242.0640033143425,58409.76,20,20,2,15996,201704728,,,456.0,,2.0,0.0,5.0,2.0,4.0,2.1,2915.9577945565716,0.0,685.0,702.0,0.0,44092.0,1,1,1,120.0,4,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2164.025892425352,0.03704904612560216,0.04907978527681557,20996.190476190477,5,3,5,5_0,5_1,5_0_0 +4729,1,43.0,4,361.0,99,111,2,85,64,2.0,0.0,0.0,646.0462872602698,0.0,884.6609710216114,16457.72,71,60,2,15997,201704729,,,,110.0,1.0,1.0,4.0,1.0,3.0,1.8,2320.2627921136295,0.0,480.0,500.0,0.0,22872.0,6,1,3,83.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1530.7072582818812,0.09300846400849457,0.06692494133796263,12706.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4730,2,44.0,2,0.0,4,111,1,68,64,2.0,0.0,0.0,780.639263772826,176.9321942043223,0.0,29513.92,31,41,2,15998,201704730,,,430.0,469.0,2.0,0.0,4.0,2.0,4.0,2.1,5165.892786322087,0.0,580.0,0.0,0.0,27340.0,1,1,3,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,957.5714579771483,0.032444739905005786,0.03502455954561625,13019.047619047618,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +4732,2,60.0,2,0.0,5,112,2,75,33,7.0,0.0,832.755791738064,1413.22625338184,31.847794956778014,0.0,31084.9116935026,60,60,1,16,201704732,,,180.0,,1.0,6.0,4.0,0.0,2.0,1.5,1403.9672542002645,0.0,1050.0,0.0,0.0,38487.0,5,5,1,84.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2277.829840076682,0.07327766803831058,0.05918439577199268,25658.0,7,4,7,7_1,7_0,7_0_0 +4733,2,52.0,2,0.0,7,221,2,65,43,7.0,0.0,0.0,1851.7914384518615,0.0,3856.0213491656727,63407.326256195694,50,33,1,160,201704733,,,648.0,,2.0,0.0,6.0,2.0,4.0,2.5,1691.7131201298432,1624.223539726218,704.0,1227.0,0.0,68931.0,1,1,1,200.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5707.812787617534,0.0900181907143547,0.08280472918741254,27572.4,8,4,8,8_1,8_1,8_0_0 +4734,2,66.0,2,0.0,6,111,1,75,75,8.0,0.0,0.0,2771.269386393532,194.62541362475451,0.0,76865.26,44,42,1,1600,201704734,,,486.0,,0.0,1.0,5.0,0.0,2.0,1.5,1605.3914944939986,0.0,2059.0,0.0,0.0,45583.0,5,5,1,120.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2965.8948000182863,0.03858563413456595,0.06506580962240938,30388.666666666668,8,4,8,8_1,8_3,8_0_0 +4735,2,69.0,3,0.0,1,111,2,86,74,1.0,0.0,0.0,807.5578590753372,0.0,1061.5931652259337,30326.760000000002,20,12,2,16000,201704735,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2391.1760449591957,0.0,600.0,600.0,0.0,15073.0,6,5,3,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1869.1510243012708,0.06163371966874373,0.12400656964779877,10048.666666666666,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +4736,2,52.0,4,0.0,8,111,2,42,34,9.0,0.0,0.0,1090.2031097517051,0.0,3184.779495677801,120681.44,10,10,1,16001,201704736,,,821.0,,2.0,0.0,7.0,4.0,6.0,3.5,1997.0810306164308,0.0,810.0,1800.0,0.0,112890.0,1,1,1,160.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4274.982605429506,0.03542369568534736,0.03786856768030389,32254.285714285714,9,5,9,9_1,9_4,9_0_0 +4737,1,34.0,2,80.0,99,111,4,0,63,3.0,0.0,0.0,538.3719060502248,0.0,0.0,16305.700000000003,0,0,2,16003,201704737,,,,280.0,1.0,0.0,1.0,0.0,1.0,1.0,3386.229162811187,0.0,400.0,0.0,0.0,15240.0,0,1,3,20.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,538.3719060502248,0.033017405327598615,0.03532624055447669,15240.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +4738,1,54.0,5,516.0,5,111,1,85,78,3.0,0.0,0.0,720.0724243421756,0.0,0.0,6361.6,71,71,2,16005,201704738,,,,,0.0,4.0,3.0,3.0,5.0,2.4,1920.9729468750152,0.0,535.0,0.0,0.0,33912.0,4,4,3,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,720.0724243421756,0.1131904590578118,0.0212335581605973,14130.0,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +4739,2,54.0,3,0.0,1,211,2,68,65,6.0,1832.356690555409,291.4645271083224,593.5550264203728,191.08676974066807,0.0,25201.839999999997,70,70,1,16006,201704739,,,366.0,,2.0,0.0,4.0,0.0,2.0,1.5,2571.873859852319,0.0,441.0,0.0,0.0,29685.0,1,1,2,64.0,1,3.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2908.4630138247717,0.11540677243505919,0.09797753120514642,19790.0,5,3,5,5_1,5_1,5_1_0 +4740,2,52.0,3,0.0,4,111,2,0,43,4.0,0.0,0.0,1390.3454473747056,0.0,897.046224615914,18883.59087530163,0,30,1,16007,201704740,,,,,2.0,0.0,5.0,3.0,4.0,2.3,631.0186470163168,0.0,1033.0,507.0,0.0,39085.0,0,1,2,80.0,6,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2287.3916719906197,0.12113118141011847,0.05852351725701982,16993.478260869568,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +4741,2,43.0,3,0.0,5,400,5,13,54,2.0,0.0,69.396315978172,1453.6041463356069,569.7216653379178,0.0,33922.866811689004,31,31,1,16008,201704741,,,684.0,,2.0,0.0,5.0,2.0,4.0,2.1,2332.958250798212,0.0,1080.0,0.0,0.0,22896.0,1,1,1,128.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2092.7221276516966,0.06169060354682626,0.0914012110260175,10902.857142857143,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4742,2,45.0,1,0.0,8,112,4,34,23,10.0,0.0,0.0,5815.762515107554,0.0,0.0,71714.94,10,42,1,16011,201704742,,,1800.0,,2.0,0.0,6.0,2.0,4.0,2.3,2613.3915706197013,0.0,4321.0,0.0,0.0,123468.0,1,1,1,200.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5815.762515107554,0.08109555017556389,0.04710339938370715,53681.739130434784,10,5,10,10_1,10_1,10_0_0 +4743,2,68.0,1,0.0,6,112,4,0,78,4.0,0.0,0.0,1662.223259930069,42.46372660903735,0.0,13344.110875301627,0,70,1,16012,201704743,,,52.0,,0.0,1.0,4.0,0.0,1.0,1.0,2472.0116200843368,0.0,1235.0,0.0,0.0,16335.0,0,5,1,93.0,6,1.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1704.6869865391063,0.1277482630704366,0.10435794224298171,16335.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4744,2,35.0,3,0.0,9,111,2,54,37,9.0,0.0,0.0,2005.4353500370873,0.0,0.0,27778.38,31,31,1,16015,201704744,,,509.0,,2.0,0.0,4.0,2.0,4.0,2.1,2234.5451835941503,0.0,1490.0,0.0,0.0,67600.0,1,1,2,100.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2005.4353500370873,0.07219410743308599,0.029666203402915495,32190.47619047619,9,5,9,9_1,9_3,9_0_0 +4745,2,48.0,3,0.0,1,111,4,0,47,5.0,0.0,0.0,1211.3367886130059,81.38880933398825,0.0,29145.960000000006,0,50,1,16016,201704745,,,130.0,450.0,1.0,3.0,4.0,1.0,2.0,1.3,232.59431393033222,0.0,900.0,0.0,0.0,25741.0,0,1,3,80.0,4,4.0,2,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1292.7255979469942,0.044353508957913686,0.0502204886347459,19800.76923076923,5,3,5,5_1,5_2,5_1_0 +4746,2,26.0,3,0.0,9,111,2,54,53,8.0,0.0,0.0,1493.9820392893737,0.0,0.0,67000.38,30,43,1,16018,201704746,,,330.0,800.0,2.0,0.0,4.0,0.0,2.0,1.5,3959.8906982682693,0.0,1110.0,0.0,0.0,41992.0,1,1,3,87.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1493.9820392893737,0.02229811292546958,0.03557777765501462,27994.666666666668,8,4,8,8_1,8_3,8_0_0 +4747,2,80.0,2,0.0,6,111,5,77,74,6.0,0.0,1873.7005314106439,1787.3947280867462,116.7752481748527,0.0,24381.08,50,30,1,16019,201704747,,,280.0,,0.0,4.0,5.0,0.0,2.0,1.5,1674.11074962326,0.0,1328.0,0.0,0.0,34733.0,5,5,1,132.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3777.8705076722426,0.15495090897008018,0.10876890875168406,23155.333333333332,6,3,6,6_1,6_2,6_0_0 +4749,2,78.0,1,0.0,4,111,2,0,75,8.0,0.0,319.2230534995912,2200.5951659802936,212.31863304518674,0.0,22932.86,0,31,1,16020,201704749,,,300.0,,0.0,3.0,6.0,0.0,1.0,1.0,2469.891160676441,0.0,1635.0,0.0,0.0,31030.0,0,5,1,110.0,5,4.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2732.1368525250714,0.11913633330186776,0.08804823888253534,31030.0,8,4,8,8_1,8_2,8_0_1 +4750,1,25.0,4,408.0,9,111,1,0,56,2.0,0.0,0.0,444.15682249143543,53.079658261296686,0.0,14461.759999999998,0,50,2,16021,201704750,,,130.0,142.0,1.0,0.0,5.0,2.0,3.0,1.6,2127.875853308508,0.0,330.0,0.0,0.0,17066.0,0,4,3,73.0,7,5.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,497.2364807527321,0.03438284695311858,0.02913608817254964,10666.25,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4751,2,34.0,3,0.0,5,400,5,69,63,4.0,0.0,208.188947934516,2691.859530251124,238.8584621758351,0.0,22959.665846751297,50,31,1,16023,201704751,,,477.0,,2.0,0.0,6.0,2.0,4.0,2.1,2296.9857978033783,0.0,2000.0,0.0,0.0,35880.0,4,1,2,90.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3138.906940361475,0.13671396445021075,0.0874834710245673,17085.714285714286,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4752,2,44.0,2,0.0,5,112,1,0,47,7.0,0.0,0.0,547.7934144061037,208.7799891611003,0.0,46999.00000000001,0,31,1,16024,201704752,,,220.0,,1.0,0.0,6.0,0.0,1.0,1.0,2364.671652205018,0.0,407.0,0.0,0.0,27032.0,0,1,1,110.0,9,2.0,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,756.573403567204,0.016097648962046084,0.02798806612781903,27032.0,7,4,7,7_1,7_1,7_0_0 +4753,1,62.0,4,309.0,7,111,2,0,77,3.0,0.0,0.0,1627.2290860368043,0.0,0.0,3233.0,0,71,2,16026,201704753,,,,,0.0,4.0,1.0,0.0,1.0,1.0,5452.427883826127,0.0,1209.0,0.0,0.0,15539.0,0,5,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1627.2290860368043,0.5033186161573784,0.10471903507541054,15539.0,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +4754,2,62.0,1,0.0,2,112,2,0,31,10.0,5552.596031986088,0.0,942.511803034576,0.0,645.2572531169102,71844.83675114861,0,30,1,16027,201704754,,,382.0,,1.0,4.0,5.0,1.0,3.0,2.0,2819.640062353932,621.9600197495854,443.0,0.0,0.0,99422.0,0,1,1,100.0,9,1.0,5,7,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,7140.365088137573,0.09938591847414027,0.07181876333344303,49711.0,10,5,10,10_1,10_1,10_0_1 +4755,2,68.0,2,0.0,99,111,2,77,75,3.0,0.0,0.0,878.8921366269919,0.0,2234.6536128005905,21892.36,71,70,1,16028,201704755,,,260.0,,0.0,1.0,5.0,0.0,2.0,1.5,1723.0793608926192,0.0,653.0,1263.0,0.0,22620.0,6,5,3,100.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3113.5457494275825,0.1422206536630853,0.13764570068203283,15080.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +4756,2,27.0,3,0.0,3,111,1,55,48,7.0,0.0,0.0,565.290501352736,0.0,0.0,39038.92000000001,30,31,2,16029,201704756,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3786.307542095621,0.0,420.0,0.0,0.0,43516.0,1,1,2,56.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,565.290501352736,0.01448017776497751,0.012990405858827466,24175.555555555555,7,4,7,7_0,7_2,7_0_1 +4757,2,53.0,2,0.0,3,111,2,0,64,6.0,0.0,0.0,403.7789295376686,0.0,1557.0033089980361,13615.047533755658,0,60,1,16032,201704757,,,200.0,,1.0,0.0,5.0,0.0,1.0,1.0,2415.1135836021167,0.0,300.0,880.0,0.0,24115.0,0,1,3,70.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1960.7822385357047,0.14401582026609572,0.08130965119368462,24115.0,7,4,7,7_1,7_2,7_0_1 +4758,2,31.0,1,0.0,3,111,1,0,37,7.0,0.0,0.0,269.1859530251124,0.0,0.0,44956.8,0,20,2,16033,201704758,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3999.9642754381025,0.0,200.0,0.0,0.0,26567.0,0,1,2,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,269.1859530251124,0.00598765821911507,0.010132342869918032,26567.0,7,4,7,7_0,7_4,7_0_1 +4759,2,30.0,2,0.0,9,111,2,37,37,8.0,0.0,0.0,1857.3830758732754,0.0,0.0,59413.46,20,31,1,16034,201704759,,,930.0,,2.0,0.0,4.0,2.0,4.0,2.1,2187.2215388402014,0.0,1380.0,0.0,0.0,68035.0,1,1,2,82.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1857.3830758732754,0.03126199140520137,0.02730040531892813,32397.619047619046,9,5,9,9_1,9_4,9_0_0 +4760,1,67.0,3,203.0,2,111,1,52,53,5.0,0.0,0.0,646.0462872602698,0.0,424.6372660903735,32211.759999999995,41,30,2,16037,201704760,,,,313.0,3.0,0.0,5.0,4.0,6.0,3.3,1853.5767406436287,0.0,480.0,240.0,0.0,80166.0,4,1,3,92.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1070.6835533506433,0.03323890260422415,0.013355831067418148,24292.727272727276,7,4,7,7_0,7_4,7_0_1 +4761,2,34.0,2,0.0,9,111,1,46,55,7.0,0.0,0.0,710.6509159862967,0.0,0.0,58072.060000000005,31,31,2,16038,201704761,,,220.0,857.0,2.0,0.0,4.0,3.0,5.0,2.4,1188.7238646248477,0.0,528.0,0.0,0.0,57964.0,1,1,3,103.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,710.6509159862967,0.012237398087588018,0.012260211786389771,24151.666666666668,7,4,7,7_0,7_3,7_0_0 +4762,1,43.0,4,353.0,99,111,2,0,45,3.0,0.0,0.0,1843.9237782220198,0.0,932.4326634567785,29067.046811688993,0,30,1,16039,201704762,,,870.0,,1.0,0.0,4.0,2.0,3.0,1.8,700.4950068288363,0.0,1370.0,527.0,0.0,29829.0,0,1,3,133.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2776.3564416787985,0.0955156008680702,0.09307574647754864,16571.666666666668,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +4763,2,54.0,2,0.0,2,111,1,0,62,6.0,0.0,0.0,55.673179318401516,0.0,103.74577667817053,25647.59087530163,0,71,2,1604,201704763,,,,400.0,1.0,1.0,3.0,0.0,1.0,1.0,2706.4233188628436,100.0,0.0,0.0,0.0,24981.0,0,1,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,159.41895599657204,0.006215747778092128,0.00638160826214211,24981.0,7,4,7,7_0,7_4,7_0_1 +4764,2,71.0,2,0.0,2,111,6,0,74,9.0,0.0,0.0,954.3197518722586,0.0,268.4714198163333,20394.280551405504,0,31,1,16042,201704764,,,76.0,,0.0,0.0,5.0,0.0,1.0,1.0,1747.3125141897717,258.7781675673967,602.0,0.0,0.0,39894.0,0,5,1,116.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1222.791171688592,0.05995755371739855,0.030651004454017947,39894.0,9,5,9,9_1,9_2,9_0_1 +4765,2,51.0,5,0.0,4,111,1,52,48,8.0,0.0,0.0,948.8804844135212,0.0,0.0,61009.836658454034,71,50,2,16043,201704765,,,317.0,,2.0,4.0,4.0,0.0,2.0,1.5,2404.5466068340347,0.0,705.0,0.0,0.0,45202.0,1,1,2,72.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,948.8804844135212,0.01555290976642922,0.020992002221439786,30134.666666666668,8,4,8,8_0,8_3,8_0_1 +4766,2,39.0,5,0.0,5,111,2,0,52,4.0,0.0,0.0,1749.7086946632305,0.0,0.0,21525.979999999996,0,50,1,16044,201704766,,,400.0,,1.0,0.0,4.0,2.0,3.0,1.8,682.6445050283982,0.0,1300.0,0.0,0.0,29240.0,0,1,2,85.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1749.7086946632305,0.08128357894336197,0.059839558641013355,16244.444444444443,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4767,1,38.0,3,8.0,99,111,2,0,63,3.0,0.0,0.0,640.2415621616174,0.0,1193.076431798961,17421.71,0,31,2,16045,201704767,,,,655.0,1.0,0.0,5.0,1.0,2.0,1.3,3341.369315956128,1150.0,0.0,0.0,0.0,18629.0,0,1,3,90.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1833.3179939605784,0.10523180525680766,0.09841204541094951,14330.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +4768,2,43.0,3,0.0,99,111,1,43,43,9.0,0.0,0.0,807.5578590753372,0.0,0.0,68752.9726259049,31,31,2,16046,201704768,,,,,2.0,0.0,4.0,4.0,6.0,2.9,2046.098485665618,0.0,600.0,0.0,0.0,127280.0,1,1,1,97.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.01174578826532169,0.006344734907882913,43889.6551724138,10,5,10,10_0,10_4,10_0_0 +4769,2,43.0,4,0.0,5,111,2,46,67,3.0,0.0,0.0,323.0231436301349,0.0,796.1948739194503,28776.071191295745,20,50,2,16047,201704769,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2430.9791005568904,0.0,240.0,450.0,0.0,33764.0,1,1,2,93.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1119.218017549585,0.03889405228772609,0.03314826494341858,16078.095238095237,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +4770,1,19.0,3,276.0,9,111,1,0,55,5.0,0.0,0.0,592.2090966552472,0.0,0.0,7297.311191295745,0,43,2,1605,201704770,,,,44.0,1.0,0.0,2.0,0.0,1.0,1.0,3720.4770634748043,0.0,440.0,0.0,0.0,18942.0,0,1,3,34.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,592.2090966552472,0.08115442539460782,0.03126433833044279,18942.0,5,3,5,5_0,5_3,5_0_0 +4771,2,75.0,2,0.0,5,111,5,77,75,6.0,0.0,624.566843803548,389.7122552288106,0.0,726.2204367471937,27271.01987708049,50,60,1,16050,201704771,,,250.0,,0.0,2.0,4.0,0.0,2.0,1.5,1749.5503264435001,700.0,0.0,0.0,0.0,31810.0,5,5,1,90.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1740.4995357795524,0.06382231187629064,0.054715483677445845,21206.666666666668,5,3,5,5_1,5_2,5_0_0 +4772,2,81.0,4,0.0,4,111,2,0,72,3.0,0.0,0.0,886.3170147489521,0.0,1651.6327647164749,17111.0,0,50,1,16051,201704772,,,206.0,,0.0,2.0,5.0,0.0,1.0,1.0,2457.100573166096,1592.0,0.0,0.0,0.0,15089.0,0,5,1,150.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2537.949779465427,0.14832270349280738,0.1681986731702185,15089.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +4773,1,45.0,4,264.0,1,300,2,85,67,3.0,0.0,1526.718951519784,888.3136449828709,398.09743695972514,0.0,12867.710875301627,60,50,1,16052,201704773,,,,,1.0,5.0,4.0,0.0,2.0,1.5,1956.3775728767991,0.0,660.0,0.0,0.0,20458.0,8,4,3,85.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2813.13003346238,0.21861930693997184,0.13750757813385375,13638.666666666666,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +4774,2,46.0,3,0.0,5,111,1,0,52,5.0,0.0,0.0,376.8603342351573,0.0,0.0,32405.38,0,41,2,16053,201704774,,,,386.0,2.0,3.0,4.0,1.0,2.0,1.5,667.3075989344487,0.0,280.0,0.0,0.0,27290.0,0,1,3,82.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,376.8603342351573,0.011629560716003247,0.013809466259991108,18193.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +4775,2,42.0,2,0.0,9,111,1,38,38,10.0,0.0,0.0,699.8834778652922,0.0,0.0,68725.92000000001,12,12,2,16055,201704775,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3514.40913489485,0.0,520.0,0.0,0.0,104399.0,1,1,2,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,699.8834778652922,0.010183690198185665,0.006703928944389239,49713.80952380952,10,5,10,10_0,10_4,10_0_0 +4776,2,24.0,2,0.0,9,111,2,47,52,6.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,27092.34,43,41,1,16056,201704776,,,320.0,,2.0,0.0,3.0,0.0,2.0,1.5,1568.4501999747902,1100.0,0.0,0.0,0.0,30689.0,1,1,3,70.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1753.6085159622926,0.06472709688281975,0.057141272637175944,20459.333333333332,5,3,5,5_1,5_2,5_0_0 +4777,2,49.0,4,0.0,2,221,6,77,63,5.0,1586.456009138882,0.0,1926.0254938946791,0.0,0.0,41159.36031599412,70,71,1,16057,201704777,,,420.0,,1.0,4.0,7.0,0.0,3.0,2.0,2260.3684124778415,0.0,1431.0,0.0,0.0,37873.0,7,1,1,102.0,1,3.0,5,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3512.4815030335612,0.08533858340039958,0.09274368291483541,18936.5,5,3,5,5_1,5_1,5_0_1 +4778,2,78.0,3,0.0,4,111,2,0,78,4.0,0.0,0.0,1113.4635863680303,0.0,2074.915533563411,19849.480315994115,0,70,1,1606,201704778,,,,,0.0,5.0,5.0,0.0,1.0,1.0,2041.7417344570893,2000.0,0.0,0.0,0.0,15980.0,0,5,1,85.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3188.379119931441,0.16062783857179078,0.1995230988693017,15980.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +4779,2,45.0,4,0.0,6,111,2,55,47,5.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,23829.16,42,50,2,16060,201704779,,,,555.0,2.0,0.0,4.0,2.0,4.0,2.5,3670.016984929251,1300.0,0.0,0.0,0.0,49580.0,1,1,3,90.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2072.4464279554363,0.08697102323184856,0.04180004897046059,19832.0,5,3,5,5_0,5_3,5_0_0 +4780,2,61.0,3,0.0,5,112,4,75,75,6.0,0.0,0.0,3364.824412813905,159.23897478389006,0.0,36929.9,60,41,1,16061,201704780,,,500.0,,0.0,5.0,5.0,0.0,2.0,1.5,1661.1647612302136,0.0,2500.0,0.0,0.0,32680.0,5,7,1,110.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3524.063387597795,0.09542574953080823,0.10783547697667671,21786.666666666668,6,3,6,6_1,6_1,6_0_0 +4781,2,24.0,1,0.0,99,111,1,38,38,10.0,0.0,0.0,323.0231436301349,0.0,0.0,38711.079999999994,12,12,2,16062,201704781,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3269.961451817243,0.0,240.0,0.0,0.0,63726.0,1,1,3,44.0,7,5.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,323.0231436301349,0.008344462196098247,0.005068938010076497,42484.0,10,5,10,10_0,10_2,10_0_0 +4782,1,25.0,3,308.0,9,111,4,0,54,5.0,0.0,0.0,339.1743008116416,353.8643884086446,0.0,43129.420000000006,0,41,2,16063,201704782,,,,502.0,2.0,0.0,3.0,0.0,2.0,1.5,4618.4103255380005,0.0,252.0,0.0,0.0,29704.0,0,2,3,55.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,693.0386892202862,0.01606881542159125,0.02333149371196762,19802.666666666668,5,3,5,5_0,5_4,5_0_0 +4783,2,29.0,3,0.0,6,112,2,38,38,8.0,0.0,0.0,2018.894647688343,0.0,0.0,62351.58,12,12,1,16065,201704783,,,150.0,,2.0,0.0,5.0,0.0,2.0,1.5,2194.2885570578733,0.0,1500.0,0.0,0.0,53003.0,1,1,2,125.0,9,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.032379205910874155,0.03809019579435773,35335.333333333336,9,5,9,9_1,9_1,9_0_0 +4784,2,83.0,3,0.0,99,112,4,0,86,2.0,0.0,0.0,2220.7841124571773,0.0,0.0,19960.56,0,71,2,16066,201704784,,,,450.0,0.0,2.0,1.0,0.0,1.0,1.0,5106.259878333436,0.0,1650.0,0.0,0.0,11582.0,0,5,3,35.0,9,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2220.7841124571773,0.11125860759704022,0.1917444407232928,11582.0,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +4785,0,80.0,3,0.0,99,111,2,0,78,1.0,0.0,0.0,605.6683943065029,0.0,1167.752481748527,8884.4658467513,0,70,1,16067,201704785,,,240.0,,0.0,2.0,3.0,0.0,1.0,1.0,2221.6015801777503,0.0,450.0,660.0,0.0,9571.0,0,5,5,54.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1773.42087605503,0.19960917253157098,0.1852910747105872,9571.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +4786,2,54.0,2,0.0,2,222,4,0,43,9.0,0.0,0.0,1709.3308017094637,0.0,0.0,14115.4,0,33,1,16068,201704786,,,,,1.0,4.0,4.0,0.0,1.0,1.0,2839.429655713312,0.0,1270.0,0.0,0.0,33930.0,0,1,1,130.0,1,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1709.3308017094637,0.12109687304004589,0.050378155075433646,33930.0,9,5,9,9_1,9_0,9_0_1 +4787,1,30.0,3,33.0,2,211,2,56,63,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,27259.859999999997,50,50,2,16069,201704787,,,,,2.0,0.0,2.0,0.0,2.0,1.5,1588.9002481582806,1200.0,0.0,0.0,0.0,25027.0,1,1,3,59.0,3,3.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1913.0274719588647,0.07017745035957136,0.07643854524948514,16684.666666666668,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +4788,2,70.0,2,0.0,6,400,5,74,74,8.0,0.0,471.89494865156956,2018.894647688343,265.39829130648343,0.0,69987.23536887667,12,71,1,16072,201704788,,,360.0,,0.0,3.0,5.0,0.0,2.0,1.5,1716.4371540714758,0.0,1500.0,0.0,0.0,47070.0,5,5,1,140.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2756.1878876463957,0.039381293933380204,0.05855508577961325,31380.0,8,4,8,8_1,8_0,8_0_0 +4789,2,77.0,3,0.0,4,111,2,0,77,6.0,0.0,0.0,1089.8747889788908,0.0,215.08575103897007,14809.888132181992,0,71,2,16073,201704789,,,,434.0,0.0,3.0,2.0,0.0,1.0,1.0,5105.252268823024,207.32000658319512,724.0,0.0,0.0,21986.0,0,5,3,48.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1304.960540017861,0.0881141389030598,0.059354159011091645,21986.0,6,3,6,6_0,6_4,6_0_1 +4790,2,56.0,1,0.0,6,111,3,47,56,9.0,0.0,0.0,2794.1501924006666,0.0,0.0,48431.67330625195,71,31,1,16074,201704790,,,263.0,,3.0,2.0,6.0,1.0,3.0,2.0,2904.891689567124,0.0,2076.0,0.0,0.0,63638.0,1,1,1,160.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2794.1501924006666,0.05769262141186386,0.0439069454162712,31819.0,8,4,8,8_1,8_3,8_0_0 +4791,2,57.0,3,0.0,1,112,5,12,75,2.0,0.0,27.7585263912688,740.261370819059,164.54694061001973,0.0,17478.28,30,33,1,16075,201704791,,,155.0,,1.0,3.0,5.0,0.0,2.0,1.5,1531.8729578908412,0.0,550.0,0.0,0.0,19967.0,1,5,1,120.0,8,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,932.5668378203476,0.05335575570481464,0.04670540581060488,13311.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4792,2,45.0,3,0.0,99,111,1,85,63,2.0,0.0,0.0,646.0462872602698,0.0,636.9558991355602,22575.699999999997,50,50,2,16076,201704792,,,,,1.0,0.0,3.0,2.0,4.0,2.1,3044.2814388791962,0.0,480.0,360.0,0.0,28440.0,6,1,1,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1283.00218639583,0.05683111426869732,0.04511259445836252,13542.857142857143,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +4793,2,62.0,4,0.0,9,300,6,0,77,8.0,99.94672857574957,0.0,2320.3829150764686,122.08321400098238,0.0,27865.7,0,60,1,16078,201704793,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2545.933348589927,0.0,1724.0,0.0,0.0,28692.0,0,5,1,143.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2542.4128576532007,0.09123807611698972,0.08861051365025793,28692.0,8,4,8,8_1,8_0,8_0_0 +4794,2,42.0,2,0.0,9,112,2,37,37,10.0,0.0,0.0,2153.487624200899,0.0,0.0,85750.45999999999,20,12,1,16079,201704794,,,750.0,,2.0,0.0,7.0,2.0,4.0,2.1,2597.442078041682,0.0,1600.0,0.0,0.0,107069.0,1,1,2,140.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2153.487624200899,0.025113423580478744,0.020113082444039816,50985.23809523809,10,5,10,10_1,10_1,10_0_0 +4795,2,82.0,3,0.0,4,112,2,86,72,2.0,475.9368027416647,0.0,1384.9617283142034,0.0,0.0,17036.28,70,50,1,1608,201704795,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2412.747549363903,0.0,1029.0,0.0,0.0,16600.0,5,5,1,120.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1860.898531055868,0.10923150658805021,0.11210232114794386,11066.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +4796,2,86.0,3,0.0,1,112,2,78,78,5.0,0.0,0.0,1130.581002705472,382.17353948133615,0.0,17097.54,70,71,1,16080,201704796,,,300.0,,0.0,0.0,3.0,0.0,2.0,1.5,4467.7742179913985,0.0,840.0,0.0,0.0,29611.0,5,5,1,65.0,8,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1512.754542186808,0.08847790630621762,0.051087587119205975,19740.666666666668,5,3,5,5_1,5_0,5_1_0 +4797,2,54.0,2,0.0,4,112,6,48,38,7.0,1108.9327503880786,832.755791738064,1157.4995980079832,116.7752481748527,0.0,46998.54,50,50,1,16082,201704797,,,556.0,,3.0,2.0,4.0,1.0,3.0,2.0,1491.0636163188822,0.0,860.0,0.0,0.0,53412.0,1,1,3,100.0,8,1.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3215.9633883089787,0.06842687854365218,0.060210503038811106,26706.0,7,4,7,7_1,7_1,7_0_1 +4798,1,59.0,3,372.0,8,111,2,0,78,3.0,0.0,0.0,546.4474846409781,0.0,0.0,5281.06,0,41,2,16083,201704798,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4642.807383449009,0.0,406.0,0.0,0.0,14184.0,0,7,3,15.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,546.4474846409781,0.10347306878561843,0.03852562638472773,14184.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +4799,2,67.0,2,0.0,6,111,2,74,74,10.0,0.0,0.0,807.5578590753372,0.0,2300.11852465619,58160.44,20,20,1,16084,201704799,,,300.0,,0.0,2.0,9.0,0.0,2.0,1.5,2022.513713301057,0.0,600.0,1300.0,0.0,64866.0,5,5,1,130.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3107.676383731527,0.05343282106757664,0.0479091725053422,43244.0,10,5,10,10_1,10_3,10_0_0 +4800,2,69.0,5,0.0,1,300,2,0,74,3.0,0.0,0.0,646.0462872602698,99.08202875442048,0.0,23599.874345444656,0,20,1,16085,201704800,,,188.0,,0.0,4.0,3.0,0.0,1.0,1.0,1909.675655965255,0.0,480.0,0.0,0.0,14090.0,0,5,1,89.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,745.1283160146902,0.03157340183713808,0.05288348587755076,14090.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4801,2,64.0,2,0.0,2,111,1,0,75,9.0,364.8848821019429,0.0,238.22956842722448,0.0,355.6337103506878,26094.08,0,44,2,16087,201704801,230.0,230.0,138.0,,0.0,0.0,3.0,0.0,1.0,1.0,3851.8075756891367,0.0,177.0,201.0,0.0,33256.0,0,5,1,68.0,9,7.0,1,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,958.7481608798552,0.03674197982377057,0.0288293288693726,33256.0,9,5,9,9_0,9_3,9_0_1 +4802,1,38.0,4,50.0,7,112,2,46,85,3.0,1511.8925767093547,0.0,2067.348119232863,283.09151072691566,0.0,27026.460000000003,43,50,1,16089,201704802,,,,,1.0,1.0,6.0,3.0,5.0,2.4,3283.0258290969323,0.0,1536.0,0.0,0.0,37340.0,1,4,2,160.0,9,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3862.3322066691335,0.1429092898836597,0.10343685609719158,15558.333333333334,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +4803,2,74.0,3,0.0,7,112,2,77,75,6.0,1586.456009138882,0.0,1615.1157181506744,0.0,0.0,39644.1,50,60,1,16091,201704803,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2930.9044059488774,0.0,1200.0,0.0,0.0,33070.0,5,5,1,200.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3201.5717272895563,0.08075783602830072,0.0968119663528744,22046.666666666668,6,3,6,6_1,6_0,6_0_0 +4804,2,63.0,1,0.0,1,111,2,74,31,10.0,0.0,0.0,3139.6919355695,0.0,5850.7486436684185,161764.32513250274,12,12,8,16092,201704804,,,,,1.0,2.0,6.0,0.0,2.0,1.5,3507.215877277225,5639.505366871954,0.0,0.0,0.0,444902.0,4,5,1,210.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,8990.440579237918,0.05557739984927926,0.020207687489015375,296601.3333333333,10,5,10,10_0,10_4,10_1_0 +4805,2,34.0,3,0.0,1,300,2,56,21,1.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,31565.819999999996,50,50,1,16093,201704805,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3111.6692302314905,1500.0,0.0,0.0,0.0,21007.0,1,1,2,150.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2391.2843399485805,0.07575549565791673,0.11383273860849148,10003.333333333332,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4806,2,62.0,2,0.0,6,300,2,0,31,9.0,5076.659229244423,0.0,1372.8483604280732,0.0,0.0,39617.08,0,10,1,16094,201704806,,,,,1.0,2.0,6.0,0.0,1.0,1.0,3280.3531642734,0.0,1020.0,0.0,0.0,39410.0,0,1,1,173.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6449.507589672496,0.16279613716287256,0.16365155010587404,39410.0,9,5,9,9_1,9_0,9_0_0 +4807,0,43.0,2,0.0,3,111,2,56,52,6.0,0.0,0.0,0.0,0.0,0.0,63645.11119129574,42,50,1,161,201704807,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1783.5918067039086,0.0,0.0,0.0,0.0,49697.0,1,1,5,140.0,9,7.0,4,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,20707.083333333336,5,3,5,5_1,5_3,5_0_1 +4808,0,47.0,3,0.0,5,300,4,84,52,7.0,0.0,0.0,1345.929765125562,153.93100895776038,0.0,17213.199999999997,50,50,1,1610,201704808,,,,,1.0,1.0,4.0,0.0,2.0,1.5,1782.8731307174285,0.0,1000.0,0.0,0.0,35900.0,3,1,5,90.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1499.8607740833224,0.08713433725764662,0.041778851645775,23933.333333333332,7,4,7,7_1,7_0,7_0_0 +4809,2,59.0,3,0.0,4,111,2,46,43,10.0,0.0,43.02571590646664,2144.0661158450202,0.0,0.0,72378.02000000002,31,33,1,16100,201704809,,,414.0,,2.0,2.0,6.0,0.0,2.0,1.5,2138.9179527330616,0.0,1593.0,0.0,0.0,65130.0,1,1,2,95.0,6,4.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2187.091831751487,0.030217624518486225,0.03358040583066923,43420.0,10,5,10,10_1,10_2,10_0_1 +4810,2,43.0,3,0.0,8,111,2,54,65,7.0,0.0,0.0,1884.3016711757866,0.0,1946.2541362475451,80979.16,43,43,1,16101,201704810,,,400.0,,2.0,0.0,7.0,2.0,4.0,2.3,1884.7600171428164,0.0,1400.0,1100.0,0.0,58805.0,1,1,1,120.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3830.5558074233318,0.047302982735599276,0.0651399678160587,25567.391304347828,7,4,7,7_1,7_3,7_0_0 +4811,2,63.0,3,0.0,2,111,6,72,31,10.0,0.0,0.0,1724.1686757997134,0.0,3217.0798309574534,133061.5654471642,30,10,1,16102,201704811,,,,,1.0,4.0,5.0,0.0,2.0,1.5,1551.122594724192,829.2800263327805,938.0,1332.0,0.0,98558.0,5,1,3,140.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4941.248506757167,0.03713505466549788,0.05013543808475382,65705.33333333333,10,5,10,10_1,10_2,10_0_1 +4812,2,71.0,3,0.0,1,111,2,77,74,8.0,2798.508400120988,416.377895869032,1279.1531443169915,0.0,678.158806456058,45349.85026832274,70,44,1,16103,201704812,,,99.0,,0.0,2.0,5.0,0.0,2.0,1.5,2101.31036767376,653.6736512752441,680.0,0.0,0.0,45945.0,5,5,1,90.0,6,4.0,3,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5172.19824676307,0.11405105454947652,0.11257369129966416,30630.0,8,4,8,8_1,8_2,8_1_0 +4813,2,64.0,3,0.0,5,111,1,0,77,3.0,0.0,0.0,796.7904209543327,0.0,0.0,17989.780000000002,0,71,2,16104,201704813,,,240.0,,1.0,2.0,4.0,0.0,2.0,1.5,3551.093974569288,0.0,592.0,0.0,0.0,21425.0,0,5,1,82.0,8,7.0,5,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,796.7904209543327,0.0442912821031904,0.03718975126974715,14283.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +4814,2,70.0,2,0.0,1,400,2,0,74,9.0,832.8894047979131,0.0,646.0462872602698,53.079658261296686,0.0,27630.06,0,20,1,16106,201704814,,,98.0,,0.0,0.0,4.0,0.0,1.0,1.0,2078.1299975048996,0.0,480.0,0.0,0.0,38089.0,0,5,3,85.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1532.0153503194797,0.05544741308268891,0.04022198929663367,38089.0,9,5,9,9_1,9_0,9_1_0 +4815,2,78.0,2,0.0,3,111,2,75,75,8.0,0.0,0.0,834.4764543778484,0.0,1468.537211895875,22009.920000000002,70,50,1,16107,201704815,,,250.0,,0.0,1.0,4.0,0.0,2.0,1.5,2805.7424617531506,0.0,620.0,830.0,0.0,38808.0,5,5,1,75.0,4,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2303.0136662737236,0.1046352583868421,0.05934378649437548,25872.0,7,4,7,7_1,7_1,7_0_1 +4816,2,79.0,3,0.0,1,111,2,0,74,6.0,0.0,0.0,720.0724243421756,0.0,3027.3098428359544,34126.28,0,50,1,16108,201704816,,,400.0,,0.0,2.0,5.0,0.0,1.0,1.0,2178.967177062122,0.0,535.0,1711.0,0.0,22155.0,0,5,5,100.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3747.38226717813,0.1098092809171738,0.16914386220618957,22155.0,6,3,6,6_1,6_2,6_1_0 +4817,2,68.0,2,0.0,7,111,5,86,72,8.0,0.0,749.4802125642576,1386.3076580793288,0.0,0.0,50287.4,70,50,1,16109,201704817,,,200.0,,0.0,3.0,8.0,0.0,2.0,1.5,1787.3890545879447,0.0,1030.0,0.0,0.0,40196.0,5,5,1,220.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2135.7878706435863,0.042471630480867696,0.05313433850740338,26797.333333333332,7,4,7,7_1,7_3,7_0_0 +4818,2,62.0,2,0.0,1,112,4,75,75,8.0,0.0,0.0,2529.422038235696,247.7050718860512,871.0972917078288,42345.62146450771,50,42,1,16110,201704818,,,311.0,,0.0,1.0,5.0,0.0,2.0,1.5,1721.8301850280245,839.6460266619403,1532.0,0.0,0.0,40820.0,5,5,1,80.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3648.224401829576,0.08615352132421439,0.08937345423394355,27213.333333333332,7,4,7,7_1,7_1,7_1_0 +4819,2,36.0,2,0.0,6,112,4,22,45,7.0,0.0,555.170527825376,2228.8596910479305,0.0,0.0,38754.5,31,20,1,16111,201704819,,,230.0,,2.0,0.0,6.0,2.0,4.0,2.1,2087.893503287841,0.0,1656.0,0.0,0.0,49775.0,1,1,2,120.0,8,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2784.0302188733067,0.07183759870139743,0.05593229972623419,23702.38095238095,6,3,6,6_1,6_1,6_0_0 +4820,2,34.0,2,0.0,3,400,2,31,46,10.0,0.0,0.0,753.7206684703146,0.0,2193.9592081335963,44711.64,30,20,1,16112,201704820,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2565.3983346608334,0.0,560.0,1240.0,0.0,56327.0,1,1,1,155.0,0,1.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2947.679876603911,0.06592645397493609,0.052331561712924725,37551.333333333336,9,5,9,9_1,9_1,9_0_1 +4821,2,48.0,3,0.0,7,112,6,55,63,7.0,0.0,1264.4008771222939,1825.080761510262,180.47083808840873,0.0,42032.74206659738,50,50,1,16113,201704821,,,900.0,,3.0,2.0,5.0,1.0,3.0,2.0,3653.275516650652,0.0,1356.0,0.0,0.0,46572.0,1,1,1,100.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3269.952476720964,0.07779536418394967,0.0702128419806099,23286.0,6,3,6,6_1,6_1,6_0_0 +4822,2,64.0,3,0.0,1,120,2,0,71,2.0,1805.386938400048,0.0,1098.2786883424585,0.0,0.0,16010.776658454031,0,71,1,16114,201704822,,,200.0,,0.0,0.0,6.0,0.0,1.0,1.0,2296.7972957357138,0.0,816.0,0.0,0.0,11694.0,0,5,1,120.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2903.6656267425064,0.18135695030192736,0.2483038846196773,11694.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4823,1,26.0,4,123.0,5,111,2,0,21,7.0,0.0,0.0,594.5895551205282,0.0,1108.0048949228615,24461.326296616575,0,60,2,16115,201704823,,,50.0,,1.0,1.0,3.0,1.0,2.0,1.5,1381.5122151105006,1068.0,0.0,0.0,0.0,42096.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1702.5944500433898,0.06960352146886198,0.04044551620209497,28064.0,8,4,8,8_0,8_4,8_0_0 +4824,2,85.0,2,0.0,4,300,2,86,75,7.0,0.0,0.0,565.290501352736,0.0,421.0986222062871,23762.81697444815,70,70,1,16116,201704824,,,212.0,,0.0,4.0,5.0,0.0,2.0,1.5,1969.0025695802342,0.0,420.0,238.0,0.0,34492.0,5,5,1,120.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,986.3891235590231,0.04150977237335433,0.028597620420938857,22994.666666666668,6,3,6,6_1,6_0,6_0_1 +4825,1,49.0,5,353.0,4,211,1,0,85,2.0,0.0,0.0,539.7178358153503,0.0,1089.9023162986252,26449.487325153168,0,71,2,16117,201704825,616.0,616.0,404.0,,0.0,1.0,3.0,1.0,2.0,1.3,1351.5155653794054,0.0,401.0,616.0,0.0,17288.0,0,7,3,60.0,2,2.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1629.6201521139756,0.06161254212909544,0.09426308145036878,13298.461538461537,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +4826,2,46.0,1,0.0,8,111,2,46,46,7.0,0.0,0.0,807.5578590753372,0.0,1592.3897478389006,48764.85087530163,31,30,1,16118,201704826,,,550.0,,2.0,0.0,6.0,2.0,4.0,2.5,2429.0376669857287,0.0,600.0,900.0,0.0,60048.0,1,1,1,120.0,4,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2399.947606914238,0.049214702061762296,0.039967153059456396,24019.2,7,4,7,7_1,7_1,7_0_0 +4827,2,58.0,3,0.0,6,111,2,46,13,6.0,0.0,0.0,1511.479126236006,339.7098128722988,0.0,44490.24,42,31,1,16119,201704827,,,550.0,,2.0,3.0,7.0,1.0,3.0,2.0,1935.8446390851486,0.0,1123.0,0.0,0.0,50468.0,1,1,1,130.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1851.188939108305,0.04160887734272292,0.0366804497722974,25234.0,7,4,7,7_1,7_2,7_0_0 +4828,2,82.0,2,0.0,6,112,4,0,71,6.0,0.0,0.0,1682.4122064069525,0.0,0.0,12868.22,0,70,1,1612,201704828,,,164.0,,0.0,5.0,5.0,0.0,1.0,1.0,2790.8392170245893,0.0,1250.0,0.0,0.0,20651.0,0,5,1,95.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1682.4122064069525,0.1307416415329356,0.08146880085259564,20651.0,5,3,5,5_1,5_0,5_0_0 +4829,2,53.0,3,0.0,99,112,4,77,38,6.0,0.0,0.0,290.6370188289346,132.69914565324171,75.08715933403549,51652.52,50,50,1,16122,201704829,,,42.0,458.0,1.0,3.0,4.0,0.0,2.0,1.5,2338.436040332425,72.37611181702668,186.0,0.0,0.0,31599.0,6,1,3,80.0,4,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,498.4233238162118,0.009649545149321113,0.015773389152068478,21066.0,5,3,5,5_1,5_0,5_0_0 +4830,1,42.0,2,233.0,2,112,2,85,47,5.0,1142.2483265799951,0.0,726.8020731678034,0.0,0.0,29982.24365795277,50,50,1,16125,201704830,,,450.0,,2.0,0.0,4.0,2.0,4.0,2.5,1678.132167480164,0.0,540.0,0.0,0.0,46940.0,6,1,3,100.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1869.0503997477986,0.06233857682802315,0.039817861093902826,18776.0,4,2,4_1,4_1_1,4_1_1,4_0_1_1 +4831,2,56.0,2,0.0,4,112,6,0,68,3.0,0.0,0.0,942.1508355878933,0.0,0.0,15157.560000000001,0,71,1,16126,201704831,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2696.313585432273,0.0,700.0,0.0,0.0,15511.0,0,1,1,60.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,942.1508355878933,0.06215715692947237,0.06074081848932327,15511.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +4832,2,25.0,2,0.0,9,111,1,46,52,9.0,0.0,0.0,398.39521047716636,0.0,0.0,40408.51344410586,31,50,2,16127,201704832,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3733.966885583835,0.0,296.0,0.0,0.0,52047.0,1,1,2,65.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,398.39521047716636,0.009859189970654013,0.007654527839782627,34698.0,9,5,9,9_0,9_4,9_0_0 +4833,2,43.0,3,0.0,9,111,4,0,31,7.0,0.0,0.0,711.9968457514223,0.0,0.0,22359.899999999998,0,0,2,16129,201704833,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3091.6458083061193,0.0,529.0,0.0,0.0,25790.0,0,1,2,65.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,711.9968457514223,0.03184257737071375,0.027607477539799235,25790.0,7,4,7,7_0,7_3,7_0_0 +4834,2,40.0,3,0.0,8,300,4,54,62,7.0,0.0,555.170527825376,2317.6910555462177,398.09743695972514,0.0,34211.6143438364,41,50,1,1613,201704834,,,210.0,,2.0,2.0,7.0,2.0,4.0,2.1,866.0647209165775,0.0,1722.0,0.0,0.0,53870.0,1,1,2,155.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3270.959020331319,0.09560960752852103,0.06071949174552291,25652.38095238095,7,4,7,7_1,7_0,7_0_0 +4835,2,60.0,1,0.0,1,111,6,43,75,9.0,0.0,0.0,296.1045483276236,0.0,2193.9592081335963,33726.53999999999,33,50,1,16130,201704835,,,187.0,,1.0,2.0,4.0,0.0,2.0,1.5,2611.301261083418,0.0,220.0,1240.0,0.0,56993.0,1,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2490.06375646122,0.07383098759793386,0.04369069458461951,37995.333333333336,9,5,9,9_1,9_4,9_1_0 +4836,2,62.0,3,0.0,6,111,4,78,75,3.0,0.0,0.0,672.964882562781,0.0,0.0,16850.827849749774,70,50,2,16131,201704836,,,,470.0,0.0,1.0,2.0,0.0,2.0,1.5,3614.783700570075,0.0,500.0,0.0,0.0,21304.0,5,5,3,50.0,8,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,672.964882562781,0.039936606590682974,0.031588663282143305,14202.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +4837,2,56.0,4,0.0,1,112,5,56,62,7.0,0.0,1110.341055650752,1405.1506747910867,0.0,0.0,22913.270875301627,71,71,1,16132,201704837,,,580.0,,2.0,2.0,4.0,0.0,2.0,1.5,1822.239141833212,0.0,1044.0,0.0,0.0,34900.0,1,1,2,80.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2515.4917304418386,0.10978317954392555,0.07207712694675755,23266.666666666668,6,3,6,6_1,6_0,6_1_0 +4838,2,75.0,3,0.0,99,111,2,72,74,6.0,0.0,0.0,565.290501352736,0.0,2123.1863304518674,44350.14087530163,50,20,2,16133,201704838,,,,,0.0,4.0,4.0,0.0,2.0,1.5,3255.747101753873,0.0,420.0,1200.0,0.0,32883.0,5,5,1,99.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2688.4768318046035,0.06061935269526512,0.08175886725069499,21922.0,6,3,6,6_0,6_3,6_0_0 +4839,2,61.0,3,0.0,4,111,5,0,52,5.0,0.0,249.82673752141918,2261.162005410944,53.079658261296686,0.0,23578.579999999994,0,50,1,16134,201704839,,,312.0,,1.0,2.0,3.0,0.0,1.0,1.0,1945.9660655585833,0.0,1680.0,0.0,0.0,19112.0,0,4,1,100.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2564.0684011936596,0.10874566666837698,0.13416012982386247,19112.0,5,3,5,5_1,5_3,5_0_1 +4840,2,55.0,2,0.0,7,120,6,55,37,8.0,0.0,0.0,1394.3832366700822,106.15931652259337,0.0,39226.72,50,60,1,16135,201704840,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2162.733458829206,0.0,1036.0,0.0,0.0,44049.0,1,1,1,120.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1500.5425531926755,0.03825307222201284,0.03406530348458933,29366.0,8,4,8,8_1,8_0,8_0_0 +4841,2,79.0,2,0.0,2,111,6,0,77,4.0,0.0,0.0,2265.199794706321,74.31152156581537,0.0,20022.14,0,70,1,16136,201704841,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2912.8662325605746,0.0,1683.0,0.0,0.0,16950.0,0,5,1,111.0,6,4.0,1,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2339.5113162721364,0.116846217051331,0.1380242664467337,16950.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +4842,2,36.0,3,0.0,1,112,2,46,37,8.0,0.0,0.0,3957.0335094691522,0.0,0.0,85331.2116935026,42,42,1,16138,201704842,,,312.0,,2.0,0.0,5.0,3.0,5.0,2.4,1935.1025245803428,0.0,2940.0,0.0,0.0,72557.0,1,1,2,120.0,9,2.0,4,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3957.0335094691522,0.04637263940048391,0.0545368952612312,30232.083333333336,8,4,8,8_1,8_1,8_1_0 +4843,1,79.0,3,686.0,9,111,1,0,74,10.0,0.0,0.0,0.0,0.0,0.0,8497.640000000001,0,30,2,16139,201704843,,,,,0.0,9.0,1.0,0.0,1.0,1.0,4009.553330119301,0.0,0.0,0.0,0.0,46132.0,0,5,3,32.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0.0,0.0,0.0,46132.0,10,5,10,10_0,10_4,10_0_0 +4844,1,49.0,5,260.0,4,400,4,55,53,1.0,0.0,0.0,2261.162005410944,0.0,0.0,14441.520315994117,71,71,1,16140,201704844,,,410.0,,3.0,1.0,4.0,2.0,4.0,2.5,2061.66983940201,0.0,1680.0,0.0,0.0,22063.0,1,4,3,85.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,2261.162005410944,0.15657368171318403,0.1024866067810789,8825.2,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +4845,2,46.0,2,0.0,1,400,5,12,42,9.0,0.0,235.94747432578478,971.1046488750272,159.23897478389006,430.17150207794015,62846.43974666346,50,30,1,16141,201704845,,,,,2.0,0.0,7.0,0.0,2.0,1.5,1848.570196583703,414.64001316639025,550.0,0.0,0.0,56295.0,1,1,1,140.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1796.4626000626422,0.028584954172491798,0.03191158362310405,37530.0,9,5,9,9_1,9_0,9_1_0 +4846,2,76.0,1,0.0,1,120,2,0,12,1.0,0.0,0.0,807.5578590753372,530.7965826129669,0.0,12358.291191295746,0,71,1,16142,201704846,,,,,1.0,0.0,2.0,0.0,1.0,1.0,1777.468571830308,0.0,600.0,0.0,0.0,9198.0,0,5,1,49.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1338.3544416883042,0.10829607596808698,0.14550494038794348,9198.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +4847,2,58.0,4,0.0,5,112,2,78,75,7.0,0.0,0.0,2288.080600713455,123.8525359430256,0.0,36362.340000000004,70,42,1,16143,201704847,,,390.0,,0.0,4.0,5.0,0.0,2.0,1.5,1878.0189753306465,0.0,1700.0,0.0,0.0,34965.0,5,5,1,100.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2411.9331366564807,0.06633052594130302,0.06898135668973204,23310.0,6,3,6,6_1,6_0,6_0_0 +4848,2,45.0,3,0.0,6,111,1,0,46,3.0,0.0,0.0,1292.0925745205395,0.0,0.0,31240.460000000003,0,31,2,16144,201704848,,,,578.0,1.0,0.0,3.0,2.0,3.0,1.6,666.357876285064,0.0,960.0,0.0,0.0,27644.0,0,1,3,70.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1292.0925745205395,0.041359588639877244,0.046740434615849355,17277.5,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +4849,2,63.0,5,0.0,1,112,2,0,78,3.0,475.9368027416647,0.0,538.3719060502248,0.0,0.0,30521.99883901972,0,70,1,16145,201704849,,,330.0,,0.0,0.0,4.0,0.0,1.0,1.0,4586.232193013777,0.0,400.0,0.0,0.0,14916.0,0,5,1,120.0,9,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1014.3087087918894,0.033232053842266185,0.06800138836094727,14916.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +4850,2,21.0,3,0.0,7,112,2,67,67,3.0,0.0,0.0,102.43864994585878,0.0,190.89222908783378,51118.259999999995,50,50,1,16147,201704850,,,60.0,,2.0,0.0,3.0,0.0,2.0,1.5,2896.8282606224175,184.0,0.0,0.0,0.0,22800.0,1,1,3,71.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,293.33087903369255,0.0057382798051751486,0.012865389431302304,15200.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4851,2,45.0,5,0.0,6,400,5,85,67,3.0,0.0,832.755791738064,915.2322402853821,0.0,0.0,32106.699999999997,50,50,1,16148,201704851,,,,,1.0,1.0,5.0,1.0,3.0,2.0,729.6111582034238,0.0,680.0,0.0,0.0,32152.0,7,1,1,118.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1747.988032023446,0.05444309231479555,0.05436638566880586,16076.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4852,2,71.0,3,0.0,5,400,2,0,75,5.0,0.0,0.0,1058.3471388428127,0.0,1972.2072146520218,16485.559999999998,0,70,1,16149,201704852,,,180.0,,0.0,4.0,4.0,0.0,1.0,1.0,2342.983089950043,1901.0,0.0,0.0,0.0,20275.0,0,5,1,100.0,0,1.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3030.5543534948347,0.183830840656601,0.14947247119579948,20275.0,5,3,5,5_1,5_1,5_0_0 +4853,2,32.0,2,0.0,1,111,2,0,22,5.0,0.0,0.0,807.5578590753372,0.0,0.0,12501.46636021547,0,30,2,16150,201704853,,,280.0,470.0,1.0,0.0,2.0,0.0,1.0,1.0,3289.5313100110175,0.0,600.0,0.0,0.0,18658.0,0,1,3,30.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,807.5578590753372,0.06459705092238623,0.04328212343634565,18658.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +4854,1,44.0,3,408.0,99,211,2,0,56,1.0,0.0,0.0,371.3401060537381,0.0,691.9843304433974,17018.899999999998,0,43,1,16151,201704854,,,200.0,34.0,1.0,0.0,4.0,2.0,3.0,1.8,221.08156725365833,667.0,0.0,0.0,0.0,12065.0,0,4,3,93.0,3,3.0,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1063.3244364971356,0.06247903427936798,0.08813298271837013,6702.777777777777,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +4855,2,78.0,3,0.0,7,211,2,0,77,4.0,0.0,0.0,2051.1969620513564,180.47083808840873,0.0,15289.171191295745,0,50,1,16153,201704855,,,860.0,,0.0,0.0,2.0,0.0,1.0,1.0,2470.299276018292,0.0,1524.0,0.0,0.0,17010.0,0,5,3,48.0,2,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2231.667800139765,0.14596394874630433,0.13119740153672926,17010.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4856,2,69.0,2,0.0,2,112,2,75,74,9.0,0.0,0.0,936.7671165273911,0.0,4118.981481076623,40265.50175060326,60,10,1,16154,201704856,,,523.0,,1.0,4.0,7.0,1.0,3.0,2.0,3178.827909617357,0.0,696.0,2328.0,0.0,62891.0,5,5,1,130.0,8,1.0,4,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5055.748597604014,0.1255603029342176,0.08038906357990833,31445.5,8,4,8,8_1,8_1,8_0_1 +4857,2,39.0,1,0.0,1,111,2,54,63,7.0,0.0,0.0,430.6975248401798,0.0,1769.3219420432229,39577.68,31,50,1,16156,201704857,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2413.2862332969303,0.0,320.0,1000.0,0.0,37862.0,4,1,2,90.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2200.019466883403,0.05558737821123934,0.05810626662308919,25241.333333333332,7,4,7,7_1,7_2,7_1_0 +4858,2,60.0,3,0.0,8,300,2,75,38,9.0,1243.7815111648836,0.0,942.1508355878933,212.31863304518674,0.0,51786.896006382165,70,44,1,16157,201704858,,,273.0,,1.0,4.0,7.0,0.0,2.0,1.5,1355.5208272607579,0.0,700.0,0.0,0.0,47203.0,5,1,1,160.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2398.2509797979637,0.04630999663510255,0.05080717284490316,31468.666666666668,8,4,8,8_1,8_1,8_0_0 +4859,1,46.0,3,123.0,9,111,2,0,52,4.0,0.0,0.0,1288.0547852251627,0.0,0.0,34238.380000000005,0,50,1,16158,201704859,,,,394.0,1.0,1.0,4.0,2.0,3.0,1.6,652.254777585402,0.0,957.0,0.0,0.0,28605.0,0,1,3,83.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1288.0547852251627,0.03762020239348832,0.04502900839801303,17878.125,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +4860,2,34.0,1,0.0,9,111,4,54,64,8.0,0.0,159.6115267497956,3230.231436301349,0.0,0.0,38444.78784974978,50,60,1,16159,201704860,,,500.0,,2.0,0.0,4.0,3.0,5.0,2.4,2280.1353596931654,0.0,2400.0,0.0,0.0,60520.0,1,1,2,149.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3389.8429630511446,0.08817431835751975,0.05601194585345579,25216.666666666668,7,4,7,7_1,7_3,7_0_0 +4861,2,70.0,3,0.0,8,112,2,77,12,5.0,0.0,520.47236983629,1615.1157181506744,345.01777869842846,0.0,24633.239999999998,71,50,1,1616,201704861,,,260.0,,1.0,3.0,4.0,0.0,2.0,1.5,2315.2284464012837,0.0,1200.0,0.0,0.0,30157.0,5,1,3,85.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2480.6058666853933,0.10070156693497866,0.08225638713019841,20104.666666666668,5,3,5,5_1,5_0,5_0_0 +4862,2,71.0,2,0.0,1,111,2,0,75,7.0,0.0,0.0,762.1658248689166,0.0,1420.2796827241546,30475.220000000005,0,31,1,16160,201704862,,,225.0,,0.0,0.0,6.0,0.0,1.0,1.0,2088.1991138626518,1369.0,0.0,0.0,0.0,27660.0,0,5,5,140.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2182.445507593071,0.0716137736690029,0.07890258523474587,27660.0,8,4,8,8_1,8_3,8_1_0 +4863,2,25.0,4,0.0,9,111,2,0,56,4.0,0.0,0.0,2584.185149041079,0.0,0.0,29645.926162745418,0,31,2,16161,201704863,,,,804.0,1.0,0.0,3.0,0.0,1.0,1.0,3916.4505728906133,0.0,1920.0,0.0,0.0,19061.0,0,1,3,66.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2584.185149041079,0.0871683055153965,0.13557447925298144,19061.0,5,3,5,5_0,5_4,5_0_0 +4864,2,40.0,3,0.0,7,112,2,56,33,4.0,0.0,346.98157989085996,1453.6041463356069,0.0,1486.2304313163072,42192.62,31,71,1,16162,201704864,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.3,2867.6059846998182,0.0,1080.0,840.0,0.0,37544.0,1,1,2,100.0,7,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3286.816157542774,0.07790026212031331,0.08754571056740822,16323.478260869566,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4865,2,67.0,3,0.0,1,111,2,75,74,4.0,3023.7851534187093,0.0,1348.621624655813,0.0,207.01066721905707,71783.9,33,50,1,16163,201704865,,,900.0,,0.0,2.0,5.0,1.0,3.0,2.0,1470.400523723398,0.0,1002.0,117.0,0.0,37833.0,5,5,1,120.0,8,7.0,4,4,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4579.4174452935795,0.0637944921534436,0.12104293725830834,18916.5,5,3,5,5_1,5_3,5_1_0 +4866,2,61.0,3,0.0,6,112,2,77,74,5.0,1031.1964059402735,416.377895869032,670.2730230325299,0.0,0.0,54005.15119129574,50,42,1,16164,201704866,,,394.0,,0.0,2.0,5.0,0.0,2.0,1.5,1610.8861871527356,0.0,498.0,0.0,0.0,27310.0,6,5,1,120.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2117.8473248418354,0.03921565402789167,0.07754841907146963,18206.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4867,2,62.0,1,0.0,4,112,6,0,74,9.0,0.0,0.0,1259.790260157526,2123.1863304518674,0.0,29470.519999999997,0,20,1,16168,201704867,,,168.0,,0.0,0.0,4.0,0.0,1.0,1.0,2309.756440943099,0.0,936.0,0.0,0.0,38519.0,0,5,1,87.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3382.9765906093935,0.11479188662464707,0.08782617904435197,38519.0,9,5,9,9_1,9_0,9_0_1 +4868,2,81.0,2,0.0,9,112,2,71,71,3.0,2221.038412794435,0.0,403.7789295376686,0.0,0.0,15709.910875301626,70,70,1,16169,201704868,,,200.0,,0.0,2.0,4.0,0.0,2.0,1.5,1530.7703614883471,0.0,300.0,0.0,0.0,22420.0,5,5,1,120.0,8,2.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2624.8173423321036,0.16708034585089318,0.11707481455540159,14946.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4869,2,55.0,2,0.0,6,111,2,64,55,9.0,0.0,0.0,1111.7379859937141,0.0,1486.2304313163072,34595.12,50,42,1,1617,201704869,,,405.0,,2.0,2.0,4.0,0.0,2.0,1.5,1604.9044911336684,0.0,826.0,840.0,0.0,48008.0,1,1,1,100.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2597.9684173100213,0.07509638403653525,0.05411532280682431,32005.333333333332,9,5,9,9_1,9_2,9_0_0 +4870,2,77.0,2,0.0,5,111,1,78,77,5.0,0.0,0.0,481.8428559149512,0.0,0.0,17397.7,71,70,2,16170,201704870,,,,404.0,0.0,6.0,4.0,0.0,2.0,1.5,2771.935346764864,0.0,358.0,0.0,0.0,29570.0,5,5,3,87.0,7,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,481.8428559149512,0.027695779092348483,0.016294990054614513,19713.333333333332,5,3,5,5_0,5_2,5_0_0 +4871,2,37.0,4,0.0,1,300,4,0,47,5.0,0.0,0.0,154.78192298943964,0.0,0.0,13381.9,0,43,1,16171,201704871,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2772.3900676584904,0.0,115.0,0.0,0.0,21156.0,0,1,3,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,154.78192298943964,0.011566513199877419,0.0073162187081414086,21156.0,5,3,5,5_1,5_0,5_1_0 +4872,2,69.0,2,0.0,4,111,2,0,77,3.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,20753.379999999997,0,50,2,16172,201704872,,,,,0.0,1.0,3.0,0.0,1.0,1.0,5408.193500967685,500.0,0.0,0.0,0.0,14740.0,0,5,1,60.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,797.0947799828602,0.0384079499331126,0.054076986430316165,14740.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +4873,2,27.0,2,0.0,5,111,1,46,67,7.0,0.0,0.0,444.15682249143543,0.0,0.0,35732.197810483114,43,30,2,16173,201704873,,,,820.0,2.0,0.0,3.0,1.0,3.0,1.8,3973.1852214318674,0.0,330.0,0.0,0.0,41036.0,1,1,3,65.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,444.15682249143543,0.01243015682514577,0.010823589591856794,22797.777777777777,6,3,6,6_0,6_3,6_0_0 +4874,2,57.0,3,0.0,1,112,4,46,46,7.0,0.0,0.0,2691.859530251124,0.0,0.0,26595.270670949223,20,31,1,16174,201704874,,,320.0,,2.0,2.0,6.0,0.0,2.0,1.5,1891.3658652366169,0.0,2000.0,0.0,0.0,36061.0,1,1,1,100.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2691.859530251124,0.1012157222822146,0.07464738998505654,24040.666666666668,7,4,7,7_1,7_0,7_1_0 +4875,2,31.0,3,0.0,7,112,2,52,65,6.0,0.0,0.0,726.8020731678034,1592.3897478389006,0.0,34085.7316935026,50,60,1,16175,201704875,,,300.0,389.0,2.0,0.0,3.0,1.0,3.0,1.8,2976.9127988894875,0.0,540.0,0.0,0.0,39539.0,1,1,3,77.0,5,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2319.1918210067042,0.06803996000029498,0.05865580366237649,21966.11111111111,6,3,6,6_1,6_0,6_0_0 +4876,2,37.0,2,0.0,6,112,5,46,38,7.0,0.0,0.0,1324.394888883553,0.0,0.0,47804.520000000004,31,20,1,16176,201704876,,,265.0,,2.0,0.0,5.0,2.0,4.0,2.1,2336.520865785216,0.0,984.0,0.0,0.0,55785.0,1,1,1,110.0,7,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1324.394888883553,0.027704386298273737,0.023741057432706873,26564.285714285714,7,4,7,7_1,7_2,7_0_0 +4877,2,64.0,2,0.0,9,112,4,0,75,8.0,0.0,0.0,1515.5169155313827,244.16642800196476,0.0,21002.02,0,50,1,16177,201704877,,,253.0,,0.0,2.0,4.0,0.0,1.0,1.0,2068.6907591300555,0.0,1126.0,0.0,0.0,30405.0,0,5,1,115.0,7,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1759.6833435333474,0.08378638547784201,0.05787480162911848,30405.0,8,4,8,8_1,8_1,8_0_0 +4878,2,76.0,3,0.0,2,111,2,0,78,5.0,0.0,0.0,511.45331074771354,0.0,406.94404666994126,11664.54,0,50,2,16178,201704878,,,,346.0,0.0,0.0,4.0,0.0,1.0,1.0,3248.6328048207142,0.0,380.0,230.0,0.0,18722.0,0,5,3,80.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,918.3973574176548,0.07873412559926536,0.04905444703651612,18722.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +4879,2,34.0,3,0.0,9,120,4,54,38,10.0,0.0,0.0,1635.3046646275577,0.0,0.0,72733.39169350262,31,31,1,1618,201704879,,,250.0,,2.0,0.0,5.0,1.0,3.0,1.8,2632.3013566456566,0.0,1215.0,0.0,0.0,78676.0,1,1,2,180.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1635.3046646275577,0.022483547467698276,0.02078530510737147,43708.88888888889,10,5,10,10_1,10_1,10_0_0 +4880,1,48.0,3,296.0,99,111,1,0,52,4.0,0.0,0.0,646.0462872602698,0.0,212.31863304518674,14131.18,0,50,2,16180,201704880,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3140.349267140644,0.0,480.0,120.0,0.0,27074.0,0,1,3,66.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,858.3649203054565,0.06074262165689323,0.03170439980444177,18049.333333333332,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +4881,2,49.0,3,0.0,1,111,6,62,52,4.0,0.0,0.0,2678.400232599868,0.0,318.4779495677801,44402.453444105864,50,50,1,16181,201704881,,,517.0,,2.0,0.0,6.0,2.0,4.0,2.3,1887.4817443328432,0.0,1990.0,180.0,0.0,39221.0,1,1,2,130.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2996.8781821676484,0.06749352681468695,0.07641004008484353,17052.608695652176,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +4882,2,43.0,4,0.0,1,112,2,81,64,5.0,0.0,0.0,952.0113663446658,0.0,1774.0527811967163,29261.8,71,71,1,16182,201704882,,,840.0,759.0,2.0,3.0,4.0,1.0,3.0,1.8,713.1074989727903,1710.0,0.0,0.0,0.0,33731.0,4,1,3,120.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2726.064147541382,0.0931611912986003,0.08081776844864909,18739.444444444445,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +4883,2,60.0,4,0.0,9,111,2,0,55,6.0,0.0,0.0,285.3371102066191,0.0,559.1057336856585,10566.38,0,71,2,16184,201704883,,,100.0,336.0,1.0,2.0,2.0,0.0,1.0,1.0,2535.3459143099058,0.0,212.0,316.0,0.0,22203.0,0,1,3,50.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,844.4428438922776,0.07991789467085962,0.03803282636996251,22203.0,6,3,6,6_0,6_2,6_0_0 +4884,2,60.0,2,0.0,7,111,2,77,78,3.0,0.0,0.0,872.1624878013641,0.0,1139.4433306758356,67959.45999999999,60,50,1,16185,201704884,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1927.3225246568688,0.0,648.0,644.0,0.0,23789.0,6,5,1,90.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2011.6058184771996,0.029600085381449467,0.08456033538514438,15859.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4885,2,52.0,3,0.0,99,111,1,75,52,1.0,0.0,0.0,1292.0925745205395,0.0,212.31863304518674,22551.972027330718,71,71,2,16186,201704885,,,,384.0,1.0,2.0,4.0,1.0,3.0,2.0,2940.7086829634936,0.0,960.0,120.0,0.0,6455.0,7,1,3,90.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1504.4112075657263,0.06670863220930442,0.23306137994821477,3227.5,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +4886,1,21.0,3,314.0,99,111,1,84,63,4.0,0.0,0.0,1205.9530695525036,233.5504963497054,0.0,10741.514007939446,42,50,2,16187,201704886,,,350.0,,1.0,0.0,3.0,2.0,4.0,2.1,3677.0431204373813,0.0,896.0,0.0,0.0,37648.0,3,4,3,81.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1439.503565902209,0.13401309767303,0.0382358575728381,17927.619047619046,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +4887,1,38.0,2,430.0,5,111,1,0,46,4.0,0.0,0.0,1776.6272899657417,0.0,0.0,38388.75672205293,0,50,8,16189,201704887,,,,60.0,1.0,0.0,3.0,2.0,3.0,2.0,458.2064471280395,0.0,1320.0,0.0,0.0,36300.0,0,1,3,100.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1776.6272899657417,0.04627988613512807,0.048942900550020436,18150.0,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +4888,2,83.0,2,0.0,4,111,2,86,75,7.0,0.0,0.0,1224.8099450048333,0.0,2282.4070869197517,32040.280000000002,50,50,1,1619,201704888,,,,,0.0,4.0,5.0,0.0,2.0,1.5,2064.335247822602,2200.0,0.0,0.0,0.0,40125.0,6,5,1,120.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3507.217031924585,0.10946274601609551,0.08740727805419526,26750.0,7,4,7,7_1,7_2,7_0_1 +4889,2,69.0,3,0.0,6,111,2,77,78,4.0,0.0,0.0,888.3136449828709,0.0,2370.891402337919,39822.84,70,50,1,16190,201704889,,,305.0,,0.0,2.0,5.0,0.0,2.0,1.5,2901.601841436508,0.0,660.0,1340.0,0.0,32030.0,5,5,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3259.2050473207896,0.08184260708982057,0.1017547626388008,21353.333333333332,6,3,6,6_1,6_4,6_0_0 +4890,2,52.0,2,0.0,7,112,2,34,34,8.0,0.0,0.0,814.287507900965,0.0,2883.994765530453,46710.539999999986,30,20,1,16191,201704890,,,860.0,,2.0,0.0,6.0,2.0,4.0,2.3,1137.897640173917,0.0,605.0,1630.0,0.0,67693.0,1,1,2,120.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3698.282273431418,0.07917447054629254,0.05463315665477107,29431.739130434784,8,4,8,8_1,8_1,8_0_0 +4891,1,22.0,3,144.0,6,111,1,0,43,2.0,0.0,0.0,323.0231436301349,0.0,0.0,9481.137349485414,0,42,2,16192,201704891,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3741.348263617455,0.0,240.0,0.0,0.0,12028.0,0,3,3,27.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,323.0231436301349,0.03407008375927249,0.02685593146243223,12028.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4892,2,66.0,2,0.0,6,111,2,77,75,6.0,0.0,0.0,1338.1319285259842,0.0,2301.329591669093,37586.187118611924,31,70,2,16193,201704892,,,,,0.0,2.0,5.0,0.0,2.0,1.5,3310.487385072111,1293.8908378369833,459.0,542.0,0.0,33884.0,5,5,1,87.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3639.4615201950774,0.0968297611223483,0.1074094416301227,22589.333333333332,6,3,6,6_0,6_3,6_0_0 +4893,1,50.0,4,412.0,99,111,1,0,85,2.0,0.0,0.0,484.5347154452023,1401.3029780982326,0.0,13873.1,0,71,2,16194,201704893,,,,,0.0,0.0,3.0,2.0,3.0,1.8,1533.179919948976,0.0,360.0,0.0,0.0,19104.0,0,7,3,65.0,8,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1885.8376935434349,0.13593484466654424,0.09871428462852988,10613.333333333334,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4894,1,54.0,2,376.0,9,111,4,0,56,2.0,0.0,41.637789586903196,1480.522741638118,0.0,0.0,22395.86,0,70,2,16195,201704894,,,550.0,,1.0,0.0,4.0,2.0,3.0,2.0,575.3322319536204,0.0,1100.0,0.0,0.0,24755.571428571428,0,1,3,120.0,5,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1522.1605312250213,0.0679661567461585,0.06148759424184541,12377.785714285714,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4895,1,49.0,5,375.0,4,111,1,0,85,1.0,0.0,0.0,624.653071952465,0.0,1164.0276143290735,41279.80000000002,0,71,2,16196,201704895,,,,,1.0,2.0,4.0,4.0,6.0,3.1,2373.0891836162427,1122.0,0.0,0.0,0.0,29540.0,0,6,3,80.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1788.6806862815383,0.0433306529169603,0.06055114036159574,9529.032258064515,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4896,2,45.0,2,0.0,6,111,6,0,34,4.0,0.0,0.0,1615.1157181506744,0.0,0.0,25892.68,0,20,2,16197,201704896,,,,564.0,1.0,0.0,4.0,2.0,3.0,2.0,1110.0746147450718,0.0,1200.0,0.0,0.0,37117.0,0,1,3,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1615.1157181506744,0.06237730965472382,0.043514177281317845,18558.5,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +4897,1,57.0,3,52.0,99,300,6,0,00,2.0,761.4988843866635,0.0,2708.0106874326307,106.15931652259337,0.0,24160.91087530163,0,60,1,16199,201704897,,,,263.0,1.0,0.0,2.0,0.0,1.0,1.0,2123.446974921782,0.0,2012.0,0.0,0.0,12974.0,0,4,3,50.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,3575.6688883418874,0.14799396044281993,0.2756026582659078,12974.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +4898,2,45.0,3,0.0,1,300,2,0,12,1.0,634.5824036555529,0.0,47.96893682907503,164.54694061001973,0.0,14650.740000000002,0,31,1,162,201704898,,,,,1.0,2.0,5.0,1.0,2.0,1.5,2264.879043881927,0.0,35.64,0.0,0.0,6593.0,0,1,1,100.0,0,1.0,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,847.0982810946476,0.05781948769104138,0.1284844958432652,4395.333333333333,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +4899,2,65.0,3,0.0,1,111,5,78,75,4.0,0.0,416.377895869032,605.6683943065029,0.0,1503.9236507367395,24094.939999999995,70,71,1,1620,201704899,,,240.0,,0.0,3.0,5.0,0.0,2.0,1.5,1495.874253920791,0.0,450.0,850.0,0.0,27090.0,5,5,1,90.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2525.9699409122745,0.10483404154201152,0.09324363015549186,18060.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +4900,2,47.0,2,0.0,8,400,2,0,62,6.0,642.5146837012472,0.0,672.964882562781,0.0,0.0,17582.734349903858,0,71,1,16200,201704900,,,,,1.0,1.0,5.0,0.0,1.0,1.0,1687.1721945702677,0.0,500.0,0.0,0.0,21160.0,0,1,2,96.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1315.479566264028,0.07481655242497713,0.06216822146805426,21160.0,5,3,5,5_1,5_0,5_0_0 +4901,1,36.0,3,452.0,99,111,1,0,63,4.0,0.0,0.0,1231.5257350898892,0.0,0.0,19863.78,0,50,2,16201,201704901,370.0,370.0,,30.0,1.0,0.0,3.0,2.0,3.0,1.6,1399.3899042967025,0.0,915.0,0.0,0.0,26536.0,0,1,3,40.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1231.5257350898892,0.061998558939430924,0.04640962221472299,16585.0,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +4902,2,28.0,3,0.0,9,111,2,0,68,3.0,0.0,0.0,269.1859530251124,0.0,884.6609710216114,19827.760000000002,0,43,2,16202,201704902,,,150.0,340.0,1.0,0.0,1.0,0.0,1.0,1.0,3749.554040994681,0.0,200.0,500.0,0.0,14101.0,0,1,3,30.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1153.8469240467239,0.058193508699254166,0.08182731182517013,14101.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +4903,2,72.0,2,0.0,4,111,1,0,75,7.0,0.0,0.0,4651.533268273942,0.0,169.8549064361494,24974.190158203397,0,31,2,16203,201704903,,,,850.0,0.0,1.0,2.0,0.0,1.0,1.0,2590.6619654647398,0.0,3456.0,96.0,0.0,25670.0,0,5,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4821.388174710091,0.19305483557897815,0.18782190006661828,25670.0,7,4,7,7_0,7_4,7_0_1 +4904,1,39.0,4,300.0,1,111,2,85,21,1.0,0.0,0.0,1615.1157181506744,0.0,0.0,36560.020000000004,71,71,2,16204,201704904,,,,,1.0,1.0,2.0,3.0,5.0,2.4,1994.8112237697912,0.0,1200.0,0.0,0.0,21830.0,6,4,2,45.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1615.1157181506744,0.04417710160308102,0.07398606129870244,9095.833333333334,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +4905,2,85.0,4,0.0,1,111,2,0,77,3.0,0.0,0.0,679.2127876844985,0.0,1265.6984754736804,20667.139999999996,0,71,2,16206,201704905,,,,,0.0,3.0,3.0,0.0,1.0,1.0,4438.038407876759,1220.0,0.0,0.0,0.0,13950.0,0,5,1,48.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1944.9112631581788,0.09410645416628421,0.1394201622335612,13950.0,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +4906,2,65.0,1,0.0,1,112,6,0,72,9.0,2538.3296146222115,0.0,2166.946921852155,0.0,0.0,35834.96,0,33,1,16208,201704906,,,,,0.0,1.0,7.0,1.0,2.0,1.5,1886.468879899746,0.0,1610.0,0.0,0.0,54520.0,0,5,1,90.0,10,0.0,2,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4705.276536474366,0.13130408228373538,0.08630367821853203,36346.666666666664,9,5,9,9_1,9_0,9_1_0 +4907,2,32.0,1,0.0,1,111,4,54,21,9.0,0.0,0.0,2288.080600713455,0.0,0.0,118610.10523642534,31,20,1,16209,201704907,,,210.0,,2.0,0.0,6.0,0.0,2.0,1.5,3083.2159091592966,0.0,1700.0,0.0,0.0,50891.0,1,1,2,105.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2288.080600713455,0.019290772874306347,0.044960417376617774,33927.333333333336,9,5,9,9_1,9_3,9_1_0 +4908,2,32.0,3,0.0,4,211,2,34,22,6.0,2379.684013708323,971.5484236944079,1345.929765125562,0.0,0.0,46494.920000000006,30,31,1,16210,201704908,,,600.0,,2.0,0.0,4.0,1.0,3.0,1.8,3276.8652883715617,0.0,1000.0,0.0,0.0,41427.0,1,1,2,120.0,4,4.0,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4697.162202528293,0.10102527765459737,0.11338407807778245,23015.0,6,3,6,6_1,6_2,6_0_1 +4909,2,65.0,4,0.0,1,111,6,21,74,1.0,364.8848821019429,0.0,2730.8914934397653,0.0,0.0,64322.35087530163,50,71,1,16211,201704909,,,,,1.0,5.0,14.0,0.0,2.0,1.5,1701.4223136472467,0.0,2029.0,0.0,0.0,6563.0,4,5,1,400.0,5,4.0,3,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3095.776375541708,0.0481290925069472,0.4717014133081987,4375.333333333333,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +4910,2,36.0,2,0.0,4,111,2,46,47,8.0,0.0,0.0,471.07541779394666,0.0,1549.9260212298632,38324.96,20,20,2,16213,201704910,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2500.4958752382863,0.0,350.0,876.0,0.0,53811.0,1,1,2,67.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2021.0014390238098,0.05273329545611554,0.03755740348671851,29895.0,8,4,8,8_0,8_3,8_0_1 +4911,2,37.0,2,0.0,9,221,2,54,13,10.0,0.0,0.0,3553.2545799314835,0.0,0.0,55896.799999999996,30,30,1,16215,201704911,,,422.0,,2.0,0.0,6.0,3.0,5.0,2.4,1983.6712048145096,0.0,2640.0,0.0,0.0,118460.0,1,1,2,180.0,1,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3553.2545799314835,0.06356812160859805,0.029995395744820897,49358.333333333336,10,5,10,10_1,10_1,10_0_0 +4912,2,71.0,3,0.0,1,112,4,0,77,2.0,0.0,0.0,807.5578590753372,109.69796040667983,0.0,8512.216722052928,0,70,1,16216,201704912,,,110.0,,0.0,0.0,2.0,0.0,1.0,1.0,2875.715070176834,0.0,600.0,0.0,0.0,11380.0,0,5,1,47.0,8,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,917.255819482017,0.1077575735478688,0.08060244459420185,11380.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4913,2,40.0,4,0.0,9,300,1,55,67,5.0,0.0,0.0,1009.4473238441715,0.0,990.8202875442048,31476.600000000002,50,50,1,16218,201704913,,,576.0,,2.0,0.0,4.0,2.0,4.0,2.3,2455.1925390279075,0.0,750.0,560.0,0.0,43160.0,1,1,2,120.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2000.2676113883763,0.06354776600358286,0.046345403414929945,18765.217391304348,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4914,2,70.0,2,0.0,7,400,4,0,74,10.0,0.0,0.0,0.0,0.0,0.0,46520.0,0,30,1,16219,201704914,,,,,1.0,0.0,5.0,1.0,2.0,1.5,2834.4770535000875,0.0,0.0,0.0,0.0,65306.0,0,5,1,220.0,0,0.0,2,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,43537.333333333336,10,5,10,10_1,10_0,10_0_0 +4915,2,46.0,3,0.0,1,111,4,0,43,1.0,0.0,0.0,0.0,0.0,0.0,34630.085980622454,0,41,1,16220,201704915,,,,,1.0,0.0,6.0,1.0,2.0,1.3,2434.0822466011373,0.0,0.0,0.0,0.0,10722.0,0,1,1,120.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0.0,0.0,0.0,8247.692307692307,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +4916,2,34.0,3,0.0,9,300,4,68,48,8.0,0.0,0.0,1480.522741638118,61.9262679715128,0.0,26118.484177580944,50,50,1,16221,201704916,,,350.0,,2.0,0.0,4.0,2.0,4.0,2.1,2820.1411916609613,0.0,1100.0,0.0,0.0,54408.0,1,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1542.4490096096308,0.05905583950134469,0.028349673018850736,25908.571428571428,7,4,7,7_1,7_0,7_0_0 +4917,2,64.0,3,0.0,7,112,5,77,72,5.0,0.0,358.0849904473675,1165.5751765987366,0.0,0.0,29684.420000000002,50,50,1,16222,201704917,,,336.0,,0.0,4.0,3.0,0.0,2.0,1.5,1318.9679020873257,0.0,866.0,0.0,0.0,30531.0,5,5,1,85.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1523.660167046104,0.05132861504607818,0.049905347582657106,20354.0,5,3,5,5_1,5_1,5_0_0 +4918,2,69.0,2,0.0,4,111,2,77,74,10.0,1173.9774467627728,0.0,928.6915379366377,0.0,0.0,24929.36,60,60,1,16223,201704918,,,302.0,,0.0,2.0,5.0,0.0,2.0,1.5,1906.239330737859,0.0,690.0,0.0,0.0,59708.0,5,5,1,110.0,8,6.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2102.6689846994104,0.08434508485975614,0.035215866964216025,39805.333333333336,9,5,9,9_1,9_2,9_0_1 +4919,2,54.0,2,0.0,9,111,2,0,46,7.0,0.0,0.0,483.18878568007676,0.0,1146.5206184440085,11681.955052882571,0,50,1,16226,201704919,,,400.0,,1.0,0.0,4.0,0.0,1.0,1.0,1639.5095187773413,0.0,359.0,648.0,0.0,25961.0,0,1,1,90.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1629.7094041240853,0.13950656347731347,0.06277529386865241,25961.0,7,4,7,7_1,7_2,7_0_0 +4920,1,27.0,3,353.0,4,211,1,0,52,1.0,0.0,0.0,932.7293272320144,0.0,194.62541362475451,12664.82,0,71,2,16227,201704920,,,180.0,,1.0,0.0,4.0,2.0,3.0,1.6,687.255926786468,0.0,693.0,110.0,0.0,13676.0,0,4,3,70.0,2,3.0,2,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1127.3547408567688,0.08901466746916015,0.08243307552330863,8547.5,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +4921,1,47.0,3,353.0,99,111,2,0,56,1.0,0.0,0.0,55.18312037014804,0.0,1020.8987605589397,10097.823983607204,0,50,2,16229,201704921,,,,,1.0,1.0,1.0,1.0,2.0,1.3,1156.472078168349,0.0,41.0,577.0,0.0,12026.0,0,4,3,30.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1076.0818809290877,0.10656571977051667,0.08947961757268316,9250.76923076923,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4922,2,38.0,2,0.0,9,111,5,54,48,7.0,0.0,138.792631956344,920.6159593458843,0.0,0.0,39188.06,31,43,1,1623,201704922,,,162.0,,2.0,0.0,3.0,1.0,3.0,1.8,3721.6372761160515,0.0,684.0,0.0,0.0,45703.0,4,1,1,96.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1059.4085913022284,0.02703396369461077,0.02318028556773578,25390.555555555555,7,4,7,7_1,7_3,7_0_0 +4923,2,43.0,2,0.0,9,112,6,45,53,8.0,0.0,402.4986326733976,2288.080600713455,0.0,0.0,37369.06,42,31,1,16231,201704923,,,,,2.0,0.0,4.0,2.0,4.0,2.3,1511.429474884384,0.0,1700.0,0.0,0.0,65445.0,1,1,2,140.0,7,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2690.5792333868526,0.07200018500296376,0.04111206713097796,28454.34782608696,8,4,8,8_1,8_0,8_0_0 +4924,1,43.0,3,72.0,8,111,1,0,55,1.0,0.0,0.0,61.24049725024166,0.0,114.1203543459876,14856.04,0,50,8,16232,201704924,,,,,1.0,0.0,3.0,1.0,2.0,1.5,1110.0783634851261,110.0,0.0,0.0,0.0,12177.0,0,1,3,60.0,6,5.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,175.36085159622925,0.011804010462830555,0.014400989701587357,8118.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4925,1,41.0,5,437.0,5,111,2,0,85,1.0,0.0,0.0,94.64440484128257,0.0,176.3678203528899,10052.76,0,71,1,16234,201704925,,,480.0,,0.0,0.0,4.0,2.0,3.0,1.6,415.8779173087288,170.0,0.0,0.0,0.0,16304.0,0,6,3,50.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,271.01222519417246,0.026958986904509055,0.016622437757248067,10190.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +4926,2,78.0,3,0.0,8,112,4,77,78,7.0,0.0,0.0,1399.7669557305844,100.85135069646371,0.0,47827.380631988235,70,70,1,16235,201704926,,,440.0,,0.0,2.0,3.0,0.0,2.0,1.5,2530.352391567363,0.0,1040.0,0.0,0.0,36553.0,5,5,3,90.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1500.618306427048,0.03137571588905695,0.04105321878989544,24368.666666666668,7,4,7,7_1,7_0,7_0_0 +4927,2,40.0,3,0.0,9,112,4,54,53,5.0,0.0,0.0,2411.9061391050072,0.0,0.0,53343.10175060326,20,31,1,16236,201704927,,,451.0,,2.0,0.0,5.0,2.0,4.0,2.1,1953.4987969346266,0.0,1792.0,0.0,0.0,39732.0,1,1,2,90.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2411.9061391050072,0.04521495863479163,0.06070437277521915,18920.0,5,3,5,5_1,5_1,5_0_0 +4928,2,54.0,2,0.0,5,112,2,77,52,6.0,2379.684013708323,0.0,672.964882562781,0.0,0.0,50989.19073775338,50,60,1,16237,201704928,,,520.0,,1.0,2.0,5.0,0.0,2.0,1.5,2474.877023076435,0.0,500.0,0.0,0.0,35967.0,5,1,1,140.0,9,1.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3052.648896271104,0.05986854962988977,0.08487360347738494,23978.0,7,4,7,7_1,7_1,7_0_0 +4929,2,41.0,2,0.0,6,111,2,21,37,9.0,0.0,0.0,3424.0453224794296,0.0,0.0,35123.82000000001,50,20,1,16238,201704929,,,710.0,,2.0,0.0,4.0,1.0,3.0,2.0,3580.180816013873,0.0,2544.0,0.0,0.0,75198.0,1,1,2,105.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3424.0453224794296,0.0974849923066292,0.045533728589582566,37599.0,9,5,9,9_1,9_4,9_0_0 +4930,2,74.0,3,0.0,1,221,2,0,78,4.0,1546.79460891041,416.377895869032,753.7206684703146,61.9262679715128,0.0,13980.239999999998,0,70,1,16239,201704930,,,267.0,,0.0,4.0,6.0,0.0,1.0,1.0,2902.26243048335,0.0,560.0,0.0,0.0,16173.0,0,5,1,160.0,1,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2778.8194412212697,0.19876764928365107,0.17181842832011807,16173.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +4931,2,56.0,3,0.0,3,111,2,46,47,6.0,0.0,0.0,995.9880261929159,0.0,1884.3278682760324,40936.399999999994,42,41,1,1624,201704931,,,317.0,,2.0,4.0,7.0,1.0,3.0,1.8,1511.6660102540338,0.0,740.0,1065.0,0.0,42276.0,1,1,1,150.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2880.3158944689485,0.07036075215380319,0.06813123035454982,23486.666666666668,6,3,6,6_1,6_3,6_0_1 +4932,2,54.0,2,0.0,7,112,2,52,48,5.0,1983.0700114236026,138.792631956344,1203.2612100222523,159.23897478389006,0.0,79398.06,60,31,1,16240,201704932,,,103.0,,2.0,0.0,6.0,3.0,5.0,3.0,1751.5430051211465,0.0,894.0,0.0,0.0,61087.0,1,1,1,120.0,8,0.0,4,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3484.3628281860892,0.043884735070177906,0.057039350896034985,20362.333333333332,5,3,5,5_1,5_0,5_0_0 +4933,2,87.0,4,0.0,1,400,5,86,78,2.0,63.77553156738307,458.01568545593517,861.3950496803596,169.8549064361494,0.0,43024.485846751304,71,71,1,16241,201704933,,,161.0,,0.0,5.0,4.0,0.0,2.0,1.5,3244.2527906032883,0.0,640.0,0.0,0.0,16429.0,5,5,5,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1553.0411731398274,0.036096681751679655,0.09453047496133833,10952.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4934,2,72.0,4,0.0,1,400,5,0,72,1.0,0.0,555.170527825376,807.5578590753372,212.31863304518674,0.0,23454.8,0,44,1,16243,201704934,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2208.403323695203,0.0,600.0,0.0,0.0,9628.0,0,5,1,60.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1575.0470199459,0.06715243873091649,0.16359025965370794,9628.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4935,2,43.0,4,0.0,9,111,4,56,52,3.0,0.0,0.0,1327.0867484138041,0.0,0.0,34606.99665845403,71,71,2,16245,201704935,,,,550.0,2.0,0.0,2.0,2.0,4.0,2.1,3882.673997584865,0.0,986.0,0.0,0.0,32230.0,1,4,3,38.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1327.0867484138041,0.0383473539039284,0.0411755118961776,15347.619047619048,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +4936,1,49.0,5,462.0,1,112,4,85,67,3.0,0.0,0.0,2584.185149041079,143.31507730550106,0.0,20834.1,70,50,1,16248,201704936,,,450.0,,1.0,4.0,4.0,3.0,5.0,2.8,1904.7070680542831,0.0,1920.0,0.0,0.0,39264.0,7,1,3,100.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2727.5002263465803,0.13091519318552663,0.06946567406139416,14022.857142857143,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +4937,2,61.0,4,0.0,1,111,2,0,52,8.0,0.0,0.0,602.9765347762518,0.0,1008.513506964637,22728.8,0,70,2,16249,201704937,,,,543.0,2.0,2.0,3.0,1.0,2.0,1.5,3190.33686508367,0.0,448.0,570.0,0.0,40900.0,0,1,3,65.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1611.490041740889,0.07090079730302035,0.039400734516892154,27266.666666666668,7,4,7,7_0,7_2,7_1_0 +4938,2,49.0,2,0.0,99,111,2,54,37,9.0,0.0,0.0,1480.522741638118,0.0,3538.6438840864457,70769.50000000001,42,31,1,1625,201704938,,,1300.0,,3.0,0.0,6.0,2.0,4.0,2.5,2547.4258110078326,0.0,1100.0,2000.0,0.0,100475.0,1,1,2,180.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5019.166625724563,0.07092273685308731,0.049954382938288765,40190.0,9,5,9,9_1,9_4,9_0_0 +4939,2,63.0,3,0.0,1,112,2,0,77,5.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,22368.32,0,50,1,16250,201704939,,,360.0,,0.0,2.0,3.0,0.0,1.0,1.0,2091.3703133700437,900.0,0.0,0.0,0.0,21560.0,0,5,3,100.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1434.7706039691484,0.06414297559982816,0.06654780166832784,21560.0,6,3,6,6_1,6_0,6_1_0 +4940,1,23.0,3,256.0,6,111,2,0,81,3.0,0.0,0.0,309.56384597887927,0.0,353.8643884086446,9911.300000000001,0,31,2,16251,201704940,,,200.0,21.0,1.0,0.0,1.0,0.0,1.0,1.0,2122.3883385638173,0.0,230.0,200.0,0.0,14644.0,0,4,3,36.0,7,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,663.4282343875238,0.0669365506429554,0.045303758152658004,14644.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +4941,2,28.0,3,0.0,1,112,2,21,56,1.0,0.0,0.0,1749.7086946632305,0.0,0.0,13928.96,50,50,1,16253,201704941,,,230.0,,2.0,0.0,4.0,2.0,4.0,2.1,3299.602748230569,0.0,1300.0,0.0,0.0,15513.0,1,1,2,80.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1749.7086946632305,0.12561660703047683,0.11278983398847615,7387.142857142857,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +4942,2,46.0,1,0.0,7,112,2,47,47,9.0,0.0,0.0,932.7293272320144,0.0,1464.9985680117886,44286.4058467513,43,42,1,16254,201704942,,,510.0,,2.0,0.0,6.0,1.0,3.0,1.8,2765.4859615189516,0.0,693.0,828.0,0.0,60040.0,1,1,2,120.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2397.727895243803,0.054141397329485294,0.039935507915453076,33355.555555555555,9,5,9,9_1,9_2,9_0_0 +4943,2,63.0,3,0.0,6,111,4,0,77,3.0,0.0,0.0,134.5929765125562,0.0,0.0,17818.4,0,50,2,16258,201704943,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2502.2765176618227,0.0,100.0,0.0,0.0,15120.0,0,5,1,55.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,134.5929765125562,0.007553594964337773,0.008901651885751071,15120.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +4944,2,54.0,2,0.0,6,111,1,0,34,10.0,0.0,0.0,1249.2450156294622,0.0,2489.3432328999115,26294.333694889545,0,10,1,16259,201704944,,,500.0,,1.0,2.0,6.0,0.0,1.0,1.0,2247.346123154915,1035.1126702695867,500.0,800.0,0.0,68578.0,0,1,1,250.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3738.5882485293737,0.14218227744086134,0.054515854188360316,68578.0,10,5,10,10_1,10_2,10_0_0 +4945,2,37.0,2,0.0,2,111,2,62,55,9.0,0.0,0.0,1097.8750961588778,0.0,2045.8667160935229,37486.42,43,43,1,1626,201704945,,,389.0,,2.0,0.0,4.0,2.0,4.0,2.3,1876.0027623953972,1972.0,0.0,0.0,0.0,78226.0,4,1,2,110.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3143.7418122524005,0.08386348475667724,0.04018794022770435,34011.30434782609,9,5,9,9_1,9_2,9_0_1 +4946,2,64.0,2,0.0,4,111,1,75,75,7.0,0.0,0.0,484.5347154452023,0.0,0.0,29743.811191295743,20,31,2,16260,201704946,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2539.164335753992,0.0,360.0,0.0,0.0,39392.0,5,5,1,81.0,8,6.0,3,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,484.5347154452023,0.01629027001042143,0.012300332946923292,26261.333333333332,7,4,7,7_0,7_2,7_0_1 +4947,2,58.0,5,0.0,7,111,2,0,48,9.0,0.0,0.0,966.3775713601535,0.0,1452.613314417486,29041.65055688436,0,42,1,16261,201704947,,,396.0,,1.0,3.0,6.0,0.0,1.0,1.0,1683.4618029118587,0.0,718.0,821.0,0.0,36467.0,0,1,2,100.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2418.9908857776395,0.08329385001859733,0.06633369582849259,36467.0,9,5,9,9_1,9_2,9_0_0 +4948,2,78.0,3,0.0,1,300,5,0,77,8.0,0.0,69.396315978172,874.8543473316153,261.859647422397,0.0,23424.28,0,70,1,16262,201704948,,,,,1.0,0.0,4.0,1.0,2.0,1.5,3717.7951007679794,0.0,650.0,0.0,0.0,42067.0,0,5,1,165.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1206.1103107321842,0.051489749556109486,0.02867117480999796,28044.666666666668,8,4,8,8_1,8_0,8_1_0 +4949,1,36.0,3,126.0,6,111,2,55,52,5.0,0.0,0.0,952.5680981378499,0.0,1775.090238963498,36230.76,50,71,1,16263,201704949,,,430.0,,2.0,0.0,4.0,2.0,4.0,2.1,977.1412200280074,1711.0,0.0,0.0,0.0,41253.0,1,1,2,87.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2727.658337101348,0.07528570576773294,0.06612024185153438,19644.285714285714,5,3,5,5_1,5_3,5_0_0 +4950,2,63.0,3,0.0,4,111,2,0,75,6.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,15229.480315994117,0,33,2,16264,201704950,,,,615.0,0.0,1.0,2.0,0.0,1.0,1.0,4139.581835601173,1400.0,0.0,0.0,0.0,22136.0,0,5,3,48.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2231.8653839520084,0.14654901793386124,0.10082514383592377,22136.0,6,3,6,6_0,6_4,6_0_1 +4951,2,51.0,3,0.0,9,300,2,56,62,3.0,0.0,902.152107716236,705.2671969257945,309.631339857564,0.0,48515.3,31,50,1,16265,201704951,,,332.0,,2.0,0.0,6.0,2.0,4.0,2.5,1620.0667685626595,0.0,524.0,0.0,0.0,37943.0,1,1,2,112.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1917.0506444995945,0.03951435206006341,0.050524487902896306,15177.2,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4952,2,32.0,1,0.0,7,120,2,85,47,9.0,0.0,0.0,1609.7319990901722,1909.0983754646375,0.0,74504.81999999999,30,31,1,16266,201704952,,,199.0,,2.0,2.0,7.0,1.0,4.0,2.3,2630.715821693493,0.0,1196.0,0.0,0.0,86160.0,6,1,1,210.0,0,0.0,5,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3518.8303745548096,0.047229566819365645,0.04084064965824988,37460.86956521739,9,5,9,9_1,9_0,9_0_0 +4953,1,44.0,3,125.0,99,111,1,85,68,2.0,0.0,0.0,861.3950496803596,0.0,1886.0971902180756,16779.18,71,71,8,16267,201704953,876.0,876.0,,364.0,1.0,0.0,5.0,3.0,5.0,2.4,2969.8982487898097,0.0,640.0,1066.0,0.0,28790.0,6,1,3,92.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,2747.4922398984354,0.16374413051760786,0.0954321722785146,11995.833333333334,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4954,2,64.0,1,0.0,1,111,2,75,74,10.0,0.0,0.0,3978.6281601117257,0.0,7414.088321124517,174446.62871361835,31,12,2,16268,201704954,,,,,0.0,5.0,6.0,0.0,2.0,1.5,2230.3886247291116,7146.400131663902,0.0,0.0,0.0,677341.0,5,5,1,200.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,11392.716481236243,0.06530774807886476,0.016819765053697092,451560.6666666667,10,5,10,10_0,10_4,10_1_0 +4955,2,45.0,3,0.0,4,112,6,0,48,8.0,1727.6505939522426,0.0,419.93008671917534,47.77169243516702,0.0,34808.45087530163,0,71,1,16269,201704955,,,45.0,,1.0,0.0,4.0,0.0,1.0,1.0,3115.0666388711848,0.0,312.0,0.0,0.0,29138.0,0,1,3,81.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2195.352373106585,0.06306952242635709,0.0753432758976795,29138.0,8,4,8,8_1,8_0,8_0_1 +4956,1,29.0,1,330.0,4,111,2,47,38,9.0,0.0,0.0,161.51157181506744,0.0,955.4338487033403,23794.93,41,20,2,1627,201704956,,,,170.0,2.0,0.0,2.0,0.0,2.0,1.5,2793.5461206514565,0.0,120.0,540.0,0.0,46814.0,1,1,3,53.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1116.945420518408,0.04694047935919155,0.023859217766446103,31209.333333333332,8,4,8,8_0,8_3,8_0_1 +4957,2,64.0,3,0.0,1,112,2,77,77,5.0,0.0,0.0,188.43016711757866,0.0,2388.5846217583507,27934.76,70,70,1,16272,201704957,,,400.0,,0.0,1.0,4.0,0.0,2.0,1.5,1117.0001915314442,0.0,140.0,1350.0,0.0,29648.0,5,5,1,110.0,10,1.0,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2577.0147888759293,0.09225118772725914,0.0869203585022912,19765.333333333332,5,3,5,5_1,5_1,5_1_0 +4958,2,41.0,3,0.0,5,111,4,46,46,6.0,0.0,0.0,2745.6967208561464,127.39117982711205,0.0,58205.02346853477,30,30,1,16273,201704958,,,550.0,,2.0,0.0,1.0,2.0,4.0,2.1,3207.523322010513,0.0,2040.0,0.0,0.0,43561.0,1,1,1,20.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2873.0879006832583,0.049361510905264555,0.0659555083832616,20743.333333333332,5,3,5,5_1,5_2,5_0_0 +4959,2,67.0,2,0.0,5,111,1,77,75,3.0,0.0,0.0,685.078250448911,0.0,0.0,26386.84,70,71,2,16275,201704959,,,246.0,394.0,0.0,2.0,5.0,0.0,2.0,1.5,2693.820132996913,0.0,509.0,0.0,0.0,23322.0,5,5,3,86.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,685.078250448911,0.025962875829349443,0.029374764190417246,15548.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +4960,1,41.0,3,255.0,1,400,4,0,85,2.0,0.0,0.0,897.7351533387498,212.31863304518674,0.0,10845.860513464171,0,50,2,16276,201704960,,,960.0,,0.0,1.0,3.0,0.0,1.0,1.0,5270.46549830006,0.0,667.0,0.0,0.0,12780.0,0,7,3,110.0,0,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1110.0537863839365,0.10234815255146454,0.08685866873113744,12780.0,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +4961,2,42.0,3,0.0,4,111,2,0,43,6.0,0.0,0.0,514.1451702779647,0.0,1769.3219420432229,28327.28668278627,0,33,1,16277,201704961,,,300.0,,1.0,0.0,5.0,2.0,3.0,1.8,555.2315659201269,0.0,382.0,1000.0,0.0,35859.0,0,1,2,82.0,6,4.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2283.4671123211874,0.08061016001609461,0.06367905162779741,19921.666666666668,5,3,5,5_1,5_2,5_0_1 +4962,0,55.0,1,0.0,2,111,2,85,44,1.0,0.0,0.0,0.0,0.0,0.0,46431.9,50,31,2,16278,201704962,,,,,1.0,4.0,5.0,0.0,2.0,1.5,1820.5744955086525,0.0,0.0,0.0,0.0,5562.0,6,1,5,120.0,6,4.0,3,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,3708.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +4963,2,66.0,3,0.0,3,111,1,0,78,4.0,0.0,0.0,169.5871504058208,0.0,1785.245839521612,14015.8,0,50,2,16279,201704963,624.0,624.0,,314.0,0.0,2.0,3.0,0.0,1.0,1.0,4599.061512179116,0.0,126.0,1009.0,0.0,16967.0,0,5,3,60.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1954.8329899274327,0.13947352201996552,0.11521382624668078,16967.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +4964,1,82.0,2,223.0,2,111,2,0,72,7.0,0.0,0.0,550.4852739363548,0.0,1873.711936623773,25498.371191295748,0,44,1,1628,201704964,,,199.0,44.0,0.0,3.0,4.0,0.0,1.0,1.0,2351.740306950984,0.0,409.0,1059.0,0.0,25785.0,0,5,3,80.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2424.197210560128,0.09507263002695891,0.09401579253675113,25785.0,7,4,7,7_1,7_3,7_0_1 +4965,2,63.0,2,0.0,6,111,4,75,75,9.0,0.0,0.0,1939.4847915459347,0.0,0.0,89912.7,31,31,2,16280,201704965,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2330.2945804534374,0.0,1441.0,0.0,0.0,54215.0,5,5,1,86.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1939.4847915459347,0.021570754649186764,0.03577395170240588,36143.333333333336,9,5,9,9_0,9_3,9_0_0 +4966,2,81.0,3,0.0,3,111,2,77,74,9.0,4949.742748513312,0.0,2065.3074527827116,0.0,2496.7842042918996,80782.9228406182,50,12,1,16281,201704966,,,490.0,,0.0,2.0,6.0,0.0,2.0,1.5,1961.3703274848976,2406.636958376789,539.0,0.0,0.0,63157.0,5,5,1,200.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,9511.834405587924,0.11774560849146833,0.15060617834266865,42104.666666666664,10,5,10,10_1,10_4,10_0_1 +4967,2,52.0,3,0.0,4,111,6,77,64,6.0,2401.8943978362677,0.0,942.1508355878933,0.0,0.0,43759.08,50,71,1,16283,201704967,,,380.0,,1.0,2.0,3.0,0.0,3.0,2.0,4177.919175706803,0.0,700.0,0.0,0.0,43611.0,7,1,2,60.0,10,8.0,5,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3344.045233424161,0.07641945930819753,0.0766789395662599,21805.5,6,3,6,6_1,6_4,6_0_1 +4968,1,63.0,4,120.0,8,111,2,85,48,2.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,31912.719999999998,31,41,1,16285,201704968,,,700.0,,1.0,0.0,5.0,4.0,6.0,2.9,1501.1538531326019,1800.0,0.0,0.0,0.0,32566.0,6,1,3,100.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2869.541207938297,0.08991841522559961,0.08811463513904984,11229.655172413793,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +4969,2,31.0,2,0.0,9,111,2,0,46,6.0,0.0,0.0,361.8756655696098,0.0,674.3475484081084,25535.600000000002,0,31,2,16286,201704969,,,174.0,433.0,1.0,0.0,3.0,1.0,2.0,1.3,1185.6034068530867,650.0,0.0,0.0,0.0,28967.0,0,1,3,70.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1036.2232139777182,0.04057955223208846,0.035772541650074846,22282.30769230769,6,3,6,6_0,6_3,6_0_0 +4970,2,47.0,2,0.0,6,221,2,56,37,4.0,0.0,138.792631956344,1130.581002705472,226.47320858153253,0.0,52189.76,71,31,1,16287,201704970,,,540.0,,2.0,0.0,5.0,2.0,4.0,2.5,1845.3068611893327,0.0,840.0,0.0,0.0,45260.0,1,1,1,126.0,3,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1495.8468432433485,0.02866169231748428,0.03305008491478897,18104.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4971,2,61.0,1,0.0,9,400,5,75,74,8.0,247.48713742566562,610.6875806079136,1030.9822000861805,0.0,0.0,77783.4,30,30,1,16290,201704971,,,398.0,,0.0,2.0,4.0,0.0,2.0,1.5,2203.421632647435,0.0,766.0,0.0,0.0,44571.0,5,5,1,125.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1889.1569181197597,0.02428740474342546,0.04238533840658185,29714.0,8,4,8,8_1,8_0,8_0_0 +4972,2,83.0,3,0.0,3,111,1,0,77,5.0,0.0,0.0,588.4535519824431,0.0,1051.8659784796414,23454.799097089464,0,70,2,16291,201704972,400.0,400.0,212.0,,0.0,2.0,3.0,0.0,1.0,1.0,4177.422805891386,331.7120105331122,300.0,400.0,0.0,21010.0,0,5,5,79.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1640.3195304620845,0.06993534771592368,0.07807327608101307,21010.0,5,3,5,5_0,5_3,5_0_1 +4973,2,66.0,3,0.0,1,300,2,78,78,5.0,1427.810408224994,416.377895869032,471.07541779394666,0.0,0.0,26728.37087530163,50,70,1,16292,201704973,,,,,0.0,1.0,6.0,0.0,2.0,1.5,2103.400037596333,0.0,350.0,0.0,0.0,30060.0,5,5,1,120.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2315.2637218879727,0.08662195435290798,0.07702141456713149,20040.0,5,3,5,5_1,5_0,5_1_0 +4974,1,49.0,5,552.0,9,111,2,85,85,2.0,0.0,0.0,1409.6449003419264,0.0,2626.843065491278,23264.539999999997,71,71,2,16294,201704974,,,,134.0,0.0,0.0,4.0,5.0,7.0,3.6,1209.1828231919237,2532.0,0.0,0.0,0.0,41640.0,6,7,3,116.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,4036.4879658332047,0.1735038804048223,0.09693775134085506,11566.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4975,2,60.0,1,0.0,2,111,1,34,34,10.0,42.64393752565315,0.0,1475.4013768700695,0.0,2498.2734899695124,55005.84887456149,10,10,2,16295,201704975,1063.0,1063.0,,,2.0,2.0,5.0,0.0,2.0,1.5,2139.681775533007,595.1897854050123,850.0,1063.0,0.0,96247.0,1,1,1,136.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,4016.3188043652353,0.0730162134853019,0.041729288230960296,64164.666666666664,10,5,10,10_0,10_3,10_0_1 +4976,2,53.0,3,0.0,99,111,2,0,52,7.0,0.0,0.0,646.0462872602698,0.0,594.492172526523,22955.276722052928,0,50,1,16296,201704976,,,600.0,,2.0,0.0,3.0,1.0,2.0,1.5,791.5338429471196,0.0,480.0,336.0,0.0,37181.0,0,1,3,65.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1240.5384597867928,0.05404153802228046,0.03336484924522721,24787.333333333332,7,4,7,7_1,7_2,7_0_0 +4977,1,61.0,3,298.0,4,111,4,0,,1.0,0.0,0.0,372.82254493978064,0.0,0.0,6739.04,0,71,2,16297,201704977,,,,,0.0,3.0,1.0,0.0,1.0,1.0,4413.451354117976,0.0,277.0,0.0,0.0,3786.0,0,8,3,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,372.82254493978064,0.05532279745183003,0.09847399496560504,3786.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4978,2,82.0,3,0.0,7,111,4,0,75,6.0,0.0,0.0,39.0319631886413,0.0,0.0,23273.7,0,31,2,16298,201704978,,,,706.0,0.0,3.0,2.0,0.0,1.0,1.0,2479.302383032854,0.0,29.0,0.0,0.0,21371.0,0,5,3,49.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,39.0319631886413,0.0016770845713677369,0.0018263985395461748,21371.0,6,3,6,6_0,6_3,6_0_0 +4979,1,36.0,3,238.0,99,111,2,0,46,5.0,0.0,0.0,342.94678460135333,0.0,639.0739843375304,20582.34,0,43,2,163,201704979,,,,210.0,1.0,0.0,3.0,1.0,2.0,1.3,1026.4341607798979,616.0,0.0,0.0,0.0,25485.0,0,1,3,70.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,982.0207689388837,0.047711813571191794,0.03853328502801192,19603.846153846152,5,3,5,5_0,5_2,5_0_0 +4980,1,26.0,3,300.0,2,111,6,0,85,2.0,0.0,0.0,1884.3016711757866,0.0,0.0,13365.267849749775,0,71,2,1630,201704980,,,,200.0,0.0,0.0,3.0,2.0,3.0,1.6,1152.257648202532,0.0,1400.0,0.0,0.0,16797.0,0,4,3,55.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1884.3016711757866,0.14098495386391113,0.11218084605440178,10498.125,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4981,1,19.0,2,224.0,5,111,2,0,84,2.0,0.0,0.0,538.3719060502248,0.0,0.0,9128.820000000002,0,41,2,16300,201704981,,,,256.0,0.0,0.0,2.0,0.0,1.0,1.0,2553.0532635315903,0.0,400.0,0.0,0.0,10954.0,0,3,3,32.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,538.3719060502248,0.05897497223630488,0.049148430349664485,10954.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4982,2,64.0,1,0.0,5,112,2,54,42,9.0,475.9368027416647,48.5774211847204,942.1508355878933,35.38643884086446,0.0,56889.12,60,60,1,16302,201704982,,,240.0,,2.0,2.0,5.0,0.0,2.0,1.5,1766.1923261811273,0.0,700.0,0.0,0.0,52307.0,1,1,1,120.0,6,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1502.0514983551427,0.026403141731760706,0.028716070475369313,34871.333333333336,9,5,9,9_1,9_0,9_0_0 +4983,2,57.0,3,0.0,99,111,2,0,47,4.0,0.0,0.0,0.0,0.0,0.0,37301.40816118815,0,60,2,16306,201704983,,,,400.0,1.0,1.0,1.0,0.0,1.0,1.0,3118.80228889234,0.0,0.0,0.0,0.0,16134.0,0,4,3,34.0,7,5.0,1,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,16134.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +4984,2,25.0,2,0.0,99,111,1,0,47,6.0,0.0,0.0,507.41552145233686,30.07847301473479,0.0,17522.5,0,43,2,16308,201704984,,,,420.0,1.0,0.0,2.0,0.0,1.0,1.0,4815.7905546573265,0.0,377.0,0.0,0.0,23613.0,0,1,3,51.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,537.4939944670716,0.030674503893112947,0.0227626305199285,23613.0,6,3,6,6_0,6_2,6_0_0 +4985,2,76.0,3,0.0,6,111,2,86,78,3.0,0.0,0.0,1345.929765125562,0.0,2300.11852465619,20968.199999999997,71,71,1,16309,201704985,,,500.0,,0.0,3.0,3.0,0.0,2.0,1.5,3625.15886001928,0.0,1000.0,1300.0,0.0,23330.0,6,5,1,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3646.048289781752,0.17388465818628934,0.1562815383532684,15553.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +4986,2,72.0,3,0.0,6,111,4,86,74,7.0,0.0,0.0,2277.3131625924507,70.77287768172891,0.0,18043.59665845403,10,20,2,1631,201704986,,,,480.0,0.0,3.0,5.0,0.0,2.0,1.5,2146.456237035951,0.0,1692.0,0.0,0.0,40420.0,5,5,3,100.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2348.0860402741796,0.13013403506634152,0.05809218308446758,26946.666666666668,7,4,7,7_0,7_2,7_0_0 +4987,1,28.0,3,200.0,5,111,1,0,56,3.0,0.0,0.0,376.8603342351573,0.0,0.0,7281.9400000000005,0,43,2,16315,201704987,,,,220.0,1.0,1.0,3.0,0.0,1.0,1.0,6615.899418470609,0.0,280.0,0.0,0.0,14250.0,0,4,3,65.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,376.8603342351573,0.05175273817624936,0.026446339244572445,14250.0,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +4988,1,29.0,3,408.0,1,221,2,0,81,1.0,0.0,0.0,807.5578590753372,0.0,1089.9023162986252,10083.48,0,71,2,16316,201704988,,,400.0,12.0,1.0,0.0,2.0,2.0,3.0,1.6,24453.781779600886,0.0,600.0,616.0,0.0,14796.0,0,4,3,40.0,1,3.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1897.4601753739626,0.18817513153930612,0.12824142845187636,9247.5,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +4989,2,53.0,2,0.0,3,111,2,0,63,6.0,0.0,0.0,580.0957287691172,0.0,2153.264803466602,21335.4,0,50,2,16318,201704989,,,,288.0,1.0,0.0,3.0,0.0,1.0,1.0,2474.449205042402,0.0,431.0,1217.0,0.0,21776.0,0,1,3,60.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2733.3605322357193,0.12811386391798227,0.1255216996801855,21776.0,6,3,6,6_0,6_3,6_0_1 +4990,1,36.0,3,275.0,9,111,2,85,62,3.0,0.0,0.0,1088.8571799865797,0.0,893.5075807318276,33892.06,41,42,1,16319,201704990,,,312.0,127.0,1.0,0.0,4.0,4.0,6.0,2.7,1981.079296820757,0.0,809.0,505.0,0.0,36707.0,6,1,3,85.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1982.3647607184073,0.05849053615266842,0.054005087877473164,13595.185185185184,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +4991,2,76.0,3,0.0,99,111,2,0,78,2.0,0.0,0.0,500.68587262670906,0.0,1776.3992298113958,12383.223983607202,0,70,1,16321,201704991,,,151.0,,0.0,1.0,3.0,0.0,1.0,1.0,3655.2451813523826,0.0,372.0,1004.0,0.0,12840.0,0,5,1,50.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2277.085102438105,0.18388467376932607,0.1773430765138711,12840.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4992,2,33.0,3,0.0,1,111,2,31,63,5.0,0.0,0.0,234.19177913184777,0.0,1769.3219420432229,33174.78,0,31,1,16322,201704992,,,114.0,,2.0,0.0,4.0,2.0,4.0,2.1,2360.7030030992896,0.0,174.0,1000.0,0.0,41700.0,1,1,2,75.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2003.5137211750707,0.060392675435227326,0.048045892594126394,19857.142857142855,5,3,5,5_1,5_3,5_1_0 +4993,2,58.0,3,0.0,99,111,1,0,64,8.0,0.0,0.0,480.49692614982564,0.0,205.24134527701386,18688.379999999997,0,50,2,16324,201704993,,,,512.0,1.0,2.0,5.0,0.0,1.0,1.0,3295.984589239723,0.0,357.0,116.0,0.0,31279.0,0,1,3,140.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,685.7382714268394,0.036693296659573466,0.021923279881928433,31279.0,8,4,8,8_0,8_4,8_0_0 +4994,2,61.0,1,0.0,6,111,2,46,46,10.0,0.0,0.0,1534.3599322431405,0.0,0.0,39333.86238259149,50,41,2,16326,201704994,,,,,2.0,4.0,4.0,0.0,2.0,1.5,1632.1970747238954,0.0,1140.0,0.0,0.0,70114.0,1,1,1,100.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1534.3599322431405,0.039008626137925946,0.021883788291113624,46742.666666666664,10,5,10,10_0,10_4,10_0_0 +4995,2,49.0,3,0.0,9,112,4,55,47,6.0,0.0,0.0,2153.487624200899,0.0,0.0,27952.62,50,50,1,16328,201704995,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1849.2902788900876,0.0,1600.0,0.0,0.0,39832.0,1,1,1,130.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2153.487624200899,0.07704063605489929,0.05406426049911878,22128.888888888887,6,3,6,6_1,6_0,6_0_0 +4996,2,36.0,2,0.0,9,300,2,35,45,9.0,0.0,0.0,1557.2407382502752,0.0,0.0,66021.40000000001,30,41,1,16329,201704996,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2617.3858009747823,0.0,1157.0,0.0,0.0,48847.0,1,1,2,115.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1557.2407382502752,0.02358690876367776,0.03187996679939966,32564.666666666668,9,5,9,9_1,9_0,9_0_0 +4997,2,74.0,1,0.0,7,111,4,72,74,8.0,0.0,0.0,2513.8684804817353,88.46609710216114,215.08575103897007,54672.23443568091,71,41,2,1633,201704997,,,319.0,,0.0,2.0,5.0,0.0,2.0,1.5,2177.9709467064645,207.32000658319512,1782.0,0.0,0.0,43312.0,5,5,1,100.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2817.4203286228667,0.05153292814357931,0.06504941652712566,28874.666666666668,8,4,8,8_0,8_2,8_0_0 +4998,1,51.0,3,210.0,99,111,4,0,85,4.0,0.0,0.0,1009.4473238441715,0.0,0.0,23656.6458467513,0,60,2,16330,201704998,,,,225.0,0.0,1.0,3.0,0.0,1.0,1.0,6409.186220842072,0.0,750.0,0.0,0.0,16506.0,0,7,3,65.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1009.4473238441715,0.04267077126585957,0.06115638700134324,16506.0,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +4999,2,35.0,2,0.0,7,111,2,34,34,10.0,0.0,0.0,1076.7438121004495,0.0,1910.8676974066807,61497.58,20,30,1,16331,201704999,,,360.0,,2.0,0.0,4.0,0.0,2.0,1.5,1178.5681364804761,0.0,800.0,1080.0,0.0,90738.0,1,1,2,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2987.61150950713,0.0485809605761256,0.032925692758349646,60492.0,10,5,10,10_1,10_4,10_0_0 +5000,2,57.0,3,0.0,9,111,2,0,54,3.0,0.0,0.0,67.2964882562781,0.0,0.0,26550.300000000003,0,50,2,16332,201705000,,,,413.0,1.0,0.0,2.0,0.0,1.0,1.0,1743.6876911812763,0.0,50.0,0.0,0.0,16887.0,0,1,3,57.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,67.2964882562781,0.002534679015162845,0.003985106191524729,16887.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +5001,1,59.0,3,250.0,99,211,4,0,77,1.0,0.0,0.0,672.964882562781,53.079658261296686,0.0,3516.22,0,70,1,16333,201705001,,,,,0.0,3.0,1.0,0.0,1.0,1.0,2837.5698435077375,0.0,500.0,0.0,0.0,8820.0,0,4,3,30.0,2,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,726.0445408240777,0.2064843897208018,0.08231797515012218,8820.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +5002,2,68.0,2,0.0,9,221,5,77,75,5.0,0.0,13.8792631956344,1099.6246181075842,212.31863304518674,0.0,33972.08,50,50,1,16336,201705002,,,,,0.0,0.0,4.0,0.0,2.0,1.5,1652.1565653299754,0.0,817.0,0.0,0.0,28255.0,6,5,1,115.0,1,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1325.8225143484053,0.039026827746443706,0.046923465381291996,18836.666666666668,5,3,5,5_1,5_1,5_0_0 +5003,2,66.0,2,0.0,5,111,2,0,75,9.0,0.0,0.0,780.639263772826,0.0,1061.5931652259337,15382.376722052926,0,33,1,16337,201705003,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2348.407748208665,0.0,580.0,600.0,0.0,36290.0,0,5,1,97.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1842.2324289987596,0.11976253489863145,0.050764189280759424,36290.0,9,5,9,9_1,9_2,9_0_0 +5004,2,43.0,3,0.0,9,111,2,46,38,8.0,0.0,0.0,1184.4181933104944,0.0,1541.0794115196472,102107.76816118813,20,30,1,16338,201705004,,,534.0,,2.0,0.0,5.0,2.0,4.0,2.3,2838.9216552998864,0.0,880.0,871.0,0.0,63021.0,1,1,2,140.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2725.4976048301414,0.026692362921179998,0.04324745092636013,27400.434782608696,8,4,8,8_1,8_3,8_0_0 +5005,2,68.0,2,0.0,4,111,2,86,86,10.0,1995.7616594967137,0.0,1269.2117685134049,0.0,0.0,41531.74,30,30,1,16339,201705005,,,368.0,,0.0,5.0,7.0,0.0,2.0,1.5,1428.9071661192597,0.0,943.0,0.0,0.0,64908.0,5,5,1,145.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3264.9734280101184,0.07861393305481829,0.05030155648009673,43272.0,10,5,10,10_1,10_4,10_0_1 +5006,2,64.0,2,0.0,1,300,4,0,43,9.0,0.0,0.0,2404.6446477081026,123.8525359430256,172.06860083117607,26693.020175977224,0,20,1,1634,201705006,,,128.0,,1.0,0.0,4.0,0.0,1.0,1.0,1811.9250944309722,165.8560052665561,1718.0,0.0,0.0,34837.0,0,1,1,100.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2700.565784482304,0.1011712337786609,0.0775200443345381,34837.0,9,5,9,9_1,9_0,9_1_0 +5007,2,45.0,3,0.0,9,111,2,0,52,1.0,0.0,0.0,1520.900634591885,159.23897478389006,0.0,40913.7,0,31,1,16341,201705007,,,160.0,,1.0,0.0,5.0,2.0,3.0,1.8,338.28779178497297,0.0,1130.0,0.0,0.0,18293.0,0,1,1,120.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1680.1396093757749,0.04106545263263345,0.09184603998118268,10162.777777777777,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +5008,0,50.0,1,0.0,3,111,1,33,23,10.0,0.0,0.0,0.0,0.0,0.0,36166.3,20,31,2,16342,201705008,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2005.4389909422407,0.0,0.0,0.0,0.0,92748.0,1,1,5,71.0,8,6.0,3,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,61832.0,10,5,10,10_0,10_2,10_0_1 +5009,2,59.0,4,0.0,1,112,5,77,21,2.0,0.0,416.377895869032,1265.1739792180283,265.39829130648343,0.0,22035.039999999997,50,50,1,16343,201705009,,,480.0,,2.0,1.0,7.0,1.0,3.0,2.0,3108.1719338424186,0.0,940.0,0.0,0.0,22856.0,6,1,1,120.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1946.950166393544,0.08835700622252304,0.08518332894616486,11428.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +5010,1,30.0,1,305.0,4,111,1,85,63,2.0,0.0,0.0,672.964882562781,0.0,884.6609710216114,24602.371693502602,60,50,2,16348,201705010,,,400.0,112.0,1.0,0.0,4.0,2.0,4.0,2.1,1348.2866274261003,0.0,500.0,500.0,0.0,27810.0,8,1,3,68.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1557.6258535843924,0.06331202019827038,0.05600955963985589,13242.857142857143,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5011,2,39.0,3,0.0,9,112,4,54,47,10.0,0.0,0.0,3230.231436301349,111.46728234872305,0.0,68903.90000000001,0,12,1,16349,201705011,,,720.0,,2.0,0.0,7.0,1.0,3.0,1.8,2367.911844498738,0.0,2400.0,0.0,0.0,81904.0,4,1,2,150.0,9,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3341.698718650072,0.04849796192450749,0.04080018947365296,45502.22222222222,10,5,10,10_1,10_0,10_0_0 +5012,2,45.0,3,0.0,7,211,4,68,48,7.0,0.0,0.0,2556.782038286543,198.16405750884095,809.2170580897301,68398.07087530162,50,42,1,1635,201705012,,,746.0,,2.0,0.0,6.0,2.0,4.0,2.3,1448.3272715944645,780.0,1577.0,0.0,0.0,58912.0,1,1,2,130.0,2,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3564.163153885114,0.05210911811216191,0.060499781944003156,25613.913043478264,7,4,7,7_1,7_1,7_0_0 +5013,2,59.0,3,0.0,1,300,2,37,42,9.0,0.0,0.0,1211.3367886130059,0.0,1946.2541362475451,42572.62,60,30,1,16351,201705013,,,696.0,650.0,2.0,3.0,6.0,0.0,2.0,1.5,421.01513833799936,0.0,900.0,1100.0,0.0,55793.0,1,1,3,130.0,0,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3157.5909248605512,0.07416952315503605,0.05659475068307048,37195.333333333336,9,5,9,9_1,9_0,9_1_0 +5015,2,49.0,2,0.0,1,400,5,0,69,3.0,0.0,138.792631956344,1049.8252167979383,159.23897478389006,0.0,14214.605846751301,0,50,1,16354,201705015,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3162.675903286709,0.0,780.0,0.0,0.0,14707.0,0,1,1,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1347.8568235381722,0.09482196256931177,0.09164729880588646,14707.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5016,2,43.0,3,0.0,9,111,6,0,52,5.0,0.0,0.0,592.2090966552472,0.0,0.0,20712.57665845403,0,30,2,16355,201705016,,,100.0,320.0,1.0,0.0,2.0,0.0,1.0,1.0,6479.781234933992,0.0,440.0,0.0,0.0,19400.0,0,1,3,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,592.2090966552472,0.02859176366227384,0.0305262420956313,19400.0,5,3,5,5_0,5_3,5_0_0 +5017,1,32.0,3,614.0,99,111,2,85,48,1.0,0.0,0.0,259.76444466923346,0.0,1666.701269404716,26310.659999999996,50,50,1,16356,201705017,,,,,1.0,0.0,5.0,4.0,6.0,2.7,2325.954624761662,0.0,193.0,942.0,0.0,26340.0,8,1,3,112.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1926.4657140739494,0.07321996917120094,0.07313840979779611,9755.555555555555,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +5018,2,53.0,5,0.0,99,111,1,78,52,1.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,28459.790418554006,50,50,2,16357,201705018,,,1200.0,,1.0,1.0,4.0,3.0,5.0,2.8,2493.9507935489783,1800.0,0.0,0.0,0.0,28286.0,5,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2869.541207938297,0.1008279107377943,0.1014474018220426,10102.142857142857,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +5019,1,53.0,4,250.0,1,211,5,0,68,1.0,0.0,0.0,222.07841124571772,0.0,0.0,3630.0,0,71,1,16358,201705019,,,,,1.0,0.0,2.0,0.0,1.0,1.0,900.8297356844881,0.0,165.0,0.0,0.0,9337.0,0,4,3,45.0,4,3.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,222.07841124571772,0.061178625687525544,0.02378477147324812,9337.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +5020,2,72.0,3,0.0,6,111,6,77,75,5.0,0.0,0.0,403.7789295376686,0.0,0.0,13423.52,31,60,2,16359,201705020,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2773.9404821870116,0.0,300.0,0.0,0.0,31010.0,5,5,3,85.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,403.7789295376686,0.03007995887350476,0.013020926460421432,20673.333333333332,5,3,5,5_0,5_4,5_0_0 +5021,2,72.0,3,0.0,4,300,2,72,72,4.0,1586.456009138882,0.0,874.8543473316153,116.7752481748527,0.0,23615.44,70,70,1,16360,201705021,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1970.2720839770411,0.0,650.0,0.0,0.0,25340.0,5,5,1,115.0,0,0.0,3,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2578.08560464535,0.10916949269822414,0.10173976340352604,16893.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +5022,2,56.0,2,0.0,1,111,2,43,38,9.0,0.0,0.0,1107.339536643006,0.0,2063.5034981288118,35505.94,31,50,1,16362,201705022,,,675.0,,2.0,1.0,4.0,1.0,3.0,2.0,1667.7015117389576,1989.0,0.0,0.0,0.0,64467.0,1,1,1,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3170.8430347718177,0.08930457931185085,0.0491855218138244,32233.5,9,5,9,9_1,9_4,9_1_0 +5023,2,24.0,2,0.0,7,111,6,0,54,6.0,47.593680274166466,0.0,619.1276919577585,0.0,0.0,28958.28,0,42,2,16363,201705023,,,,400.0,1.0,0.0,2.0,0.0,1.0,1.0,4339.386173260593,0.0,460.0,0.0,0.0,22365.0,0,1,3,55.0,9,7.0,1,3,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,666.721372231925,0.023023514249876892,0.029810926547369773,22365.0,6,3,6,6_0,6_3,6_0_0 +5024,2,61.0,2,0.0,9,112,2,78,56,6.0,2420.931869945934,222.0682111301504,1422.647761737719,0.0,0.0,14157.6516935026,70,70,1,16365,201705024,,,293.0,,1.0,1.0,4.0,1.0,3.0,2.0,2344.671644088768,0.0,1057.0,0.0,0.0,47030.0,5,1,2,140.0,7,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4065.6478428138034,0.28716964725722555,0.0864479660389922,23515.0,6,3,6,6_1,6_0,6_0_0 +5025,2,77.0,2,0.0,5,112,2,77,74,9.0,1197.774286899856,0.0,874.8543473316153,106.15931652259337,0.0,27332.84,70,71,1,16366,201705025,,,305.0,,0.0,3.0,6.0,0.0,2.0,1.5,1672.704859948196,0.0,650.0,0.0,0.0,45379.0,5,5,1,170.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2178.7879507540647,0.07971319302180324,0.048013132743208634,30252.666666666668,8,4,8,8_1,8_0,8_0_0 +5026,2,42.0,3,0.0,1,111,1,0,52,6.0,0.0,0.0,632.5869896090142,0.0,0.0,10700.380000000001,0,50,2,16367,201705026,,,,330.0,1.0,0.0,2.0,0.0,1.0,1.0,2868.769056015798,0.0,470.0,0.0,0.0,22022.0,0,1,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,632.5869896090142,0.05911817987856638,0.028725228844292714,22022.0,6,3,6,6_0,6_4,6_1_0 +5027,1,36.0,3,401.0,99,111,2,0,54,5.0,0.0,0.0,414.5463676586731,0.0,2478.8200408025555,40097.7258467513,0,42,2,16369,201705027,,,506.0,127.0,1.0,0.0,4.0,3.0,4.0,1.9,619.2719245977947,0.0,308.0,1401.0,0.0,36389.0,0,1,3,93.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2893.3664084612287,0.0721578679927966,0.07951211653140314,19152.105263157897,5,3,5,5_0,5_3,5_0_0 +5028,1,79.0,4,211.0,7,111,2,0,77,3.0,0.0,0.0,1288.0547852251627,0.0,0.0,12228.16,0,71,2,1637,201705028,,,,,0.0,5.0,1.0,0.0,1.0,1.0,6022.838919055054,0.0,957.0,0.0,0.0,13828.0,0,5,3,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1288.0547852251627,0.10533512688950446,0.09314830671284081,13828.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +5029,2,30.0,3,0.0,1,111,1,0,56,1.0,0.0,0.0,444.15682249143543,0.0,0.0,24499.08,0,20,2,16370,201705029,,,,565.0,1.0,0.0,1.0,0.0,1.0,1.0,4699.908336830679,0.0,330.0,0.0,0.0,7740.0,0,4,3,15.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,444.15682249143543,0.018129530679986162,0.05738460238907435,7740.0,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +5030,2,67.0,3,0.0,5,111,2,77,78,6.0,0.0,0.0,336.4824412813905,0.0,1942.7154923634587,23474.639999999992,70,70,1,16372,201705030,,,333.0,,0.0,0.0,5.0,1.0,3.0,2.0,2985.657976437696,0.0,250.0,1098.0,0.0,45496.0,5,5,1,130.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2279.1979336448494,0.09709192275770151,0.05009666638044772,22748.0,6,3,6,6_1,6_2,6_0_0 +5031,2,33.0,2,0.0,1,300,5,43,63,6.0,0.0,208.188947934516,2064.656259702612,0.0,0.0,44882.32,44,43,1,16374,201705031,,,233.0,,2.0,0.0,6.0,2.0,4.0,2.1,2299.2430109771985,0.0,1534.0,0.0,0.0,42665.0,1,1,2,160.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2272.8452076371277,0.05064010077101914,0.05327189048721734,20316.666666666664,5,3,5,5_1,5_0,5_1_0 +5032,2,65.0,2,0.0,7,111,2,74,31,10.0,0.0,0.0,67.2964882562781,0.0,1626.0068647377218,54407.530989269944,10,10,2,16375,201705032,,,,,1.0,2.0,5.0,0.0,2.0,1.5,1849.4820714191164,0.0,50.0,919.0,0.0,126819.0,5,1,1,112.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1693.3033529939999,0.031122591343612834,0.013352126676554773,84546.0,10,5,10,10_0,10_2,10_0_0 +5033,2,60.0,2,0.0,1,111,2,75,43,9.0,0.0,0.0,2078.186641936991,0.0,4019.536422698534,57946.25652484046,42,33,1,16376,201705033,,,95.0,,1.0,2.0,4.0,0.0,2.0,1.5,2277.6060233866856,2412.8476343984066,546.0,857.0,0.0,60386.0,5,1,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,6097.723064635525,0.10523066424526573,0.1009790856263956,40257.333333333336,9,5,9,9_1,9_4,9_1_0 +5034,2,55.0,2,0.0,5,111,4,0,78,9.0,0.0,0.0,780.639263772826,0.0,0.0,29498.96,0,50,2,16377,201705034,,,,607.0,0.0,0.0,3.0,0.0,1.0,1.0,2774.599059493658,0.0,580.0,0.0,0.0,33622.0,0,5,3,38.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,780.639263772826,0.026463280867285693,0.023218109088478555,33622.0,9,5,9,9_0,9_3,9_0_0 +5035,2,64.0,2,0.0,1,112,2,56,52,7.0,1285.0293674024945,0.0,550.4852739363548,0.0,0.0,35387.119999999995,71,50,1,16378,201705035,,,189.0,,2.0,3.0,7.0,0.0,2.0,1.5,1483.5265214018455,0.0,409.0,0.0,0.0,40087.0,1,1,1,100.0,9,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1835.5146413388493,0.0518695684005607,0.0457882765320141,26724.666666666668,7,4,7,7_1,7_0,7_1_0 +5036,2,68.0,2,0.0,99,300,2,0,68,6.0,0.0,0.0,269.1859530251124,0.0,442.3304855108057,11117.32,0,70,1,16379,201705036,,,,253.0,1.0,3.0,2.0,0.0,1.0,1.0,1645.585865661505,0.0,200.0,250.0,0.0,21050.0,0,1,3,50.0,0,1.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,711.516438535918,0.06400071586820547,0.03380125598745454,21050.0,5,3,5,5_1,5_1,5_0_0 +5037,2,83.0,3,0.0,4,111,1,0,74,9.0,0.0,0.0,2893.7489950199583,0.0,212.31863304518674,35070.36469104512,0,10,2,16381,201705037,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3068.0148259958387,0.0,2150.0,120.0,0.0,40230.0,0,5,1,110.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3106.067628065145,0.08856673306446253,0.07720774616120171,40230.0,9,5,9,9_0,9_3,9_0_1 +5038,2,32.0,4,0.0,9,112,2,63,52,5.0,0.0,0.0,2557.266553738568,0.0,0.0,20834.33632237629,71,41,1,16382,201705038,,,850.0,,2.0,0.0,4.0,1.0,3.0,1.8,3062.865008676371,0.0,1900.0,0.0,0.0,35446.0,4,1,2,89.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2557.266553738568,0.12274288531053602,0.0721454198989609,19692.222222222223,5,3,5,5_1,5_0,5_0_0 +5039,2,43.0,2,0.0,4,111,1,0,42,6.0,0.0,0.0,425.3138057796776,0.0,0.0,27988.940000000002,0,30,2,16383,201705039,,,,355.0,1.0,1.0,4.0,1.0,2.0,1.5,3113.439917792602,0.0,316.0,0.0,0.0,35530.0,0,1,3,75.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,425.3138057796776,0.015195781111384624,0.01197055462368921,23686.666666666668,6,3,6,6_0,6_4,6_0_1 +5040,2,40.0,2,0.0,3,111,6,46,22,9.0,0.0,0.0,1561.278527545652,95.54338487033404,0.0,61338.62238259149,30,43,1,16385,201705040,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2578.9831581756794,0.0,1160.0,0.0,0.0,57024.0,1,1,2,38.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1656.821912415986,0.02701107145970413,0.029054817487654074,38016.0,9,5,9,9_1,9_3,9_0_1 +5041,2,59.0,2,0.0,5,112,2,68,47,7.0,1637.2226014313264,0.0,1080.7816013958263,212.31863304518674,0.0,41951.98,71,50,1,16387,201705041,,,187.0,,2.0,1.0,5.0,0.0,2.0,1.5,1485.1197176255016,0.0,803.0,0.0,0.0,34806.0,1,1,1,110.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2930.3228358723395,0.06984945253769523,0.08419016364627764,23204.0,6,3,6,6_1,6_0,6_0_0 +5042,2,39.0,2,0.0,1,300,5,47,47,8.0,0.0,346.98157989085996,1857.3830758732754,0.0,0.0,64279.73779407659,43,20,1,16388,201705042,,,280.0,,2.0,0.0,4.0,1.0,3.0,1.8,2514.168217923985,0.0,1380.0,0.0,0.0,52551.0,1,1,1,100.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2204.3646557641355,0.034293305035343016,0.04194714954547269,29195.0,8,4,8,8_1,8_0,8_1_0 +5043,2,58.0,3,0.0,9,111,2,0,34,6.0,0.0,0.0,672.964882562781,0.0,884.6609710216114,32171.216658454032,0,10,1,16389,201705043,,,,,1.0,1.0,4.0,1.0,2.0,1.5,1824.8566516144188,0.0,500.0,500.0,0.0,36507.0,0,1,3,99.0,8,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1557.6258535843924,0.048416753090843256,0.04266649830400724,24338.0,7,4,7,7_1,7_3,7_0_0 +5044,2,44.0,3,0.0,1,111,2,68,63,3.0,0.0,0.0,985.175821262725,0.0,1835.8540322785807,45446.50000000001,71,71,2,1639,201705044,,,,787.0,2.0,0.0,3.0,2.0,4.0,2.3,4068.901178032733,1769.5698958171358,0.0,0.0,0.0,35928.0,1,1,3,45.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2821.029853541306,0.062073643812863594,0.078518978332813,15620.869565217392,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +5045,2,33.0,2,0.0,6,111,6,55,69,5.0,0.0,0.0,815.6334376660906,0.0,1946.2541362475451,22361.580315994117,50,43,1,16391,201705045,,,600.0,,2.0,0.0,6.0,3.0,5.0,2.4,1768.4499625694605,0.0,606.0,1100.0,0.0,46692.0,1,1,2,110.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2761.8875739136356,0.12351039304401022,0.05915119450684562,19455.0,5,3,5,5_1,5_2,5_0_0 +5046,2,75.0,3,0.0,3,111,2,0,86,3.0,0.0,0.0,471.07541779394666,0.0,1238.525359430256,16838.559999999998,0,71,2,16392,201705046,,,,327.0,0.0,7.0,5.0,0.0,1.0,1.0,3282.781591821071,0.0,350.0,700.0,0.0,16239.0,0,6,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1709.6007772242026,0.10152891798492288,0.10527746642183648,16239.0,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +5047,1,54.0,4,357.0,7,111,1,0,77,1.0,0.0,0.0,511.45331074771354,0.0,0.0,5433.060000000001,0,70,2,16393,201705047,,,,57.0,1.0,3.0,3.0,1.0,2.0,1.5,3414.64381490344,0.0,380.0,0.0,0.0,9364.0,0,7,3,78.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,511.45331074771354,0.09413724691936283,0.05461910623106723,6242.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5048,2,82.0,2,0.0,1,111,1,0,75,6.0,0.0,0.0,403.7789295376686,0.0,21.231863304518676,14269.171191295745,0,71,2,16394,201705048,,,,463.0,0.0,0.0,2.0,0.0,1.0,1.0,4917.518191288829,0.0,300.0,12.0,0.0,21281.0,0,5,3,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,425.0107928421873,0.02978524731005019,0.019971373189332613,21281.0,6,3,6,6_0,6_4,6_1_0 +5049,2,54.0,1,0.0,8,111,2,46,48,7.0,0.0,0.0,1130.581002705472,0.0,2399.20055341061,49313.299999999996,31,50,1,16395,201705049,,,720.0,,3.0,0.0,6.0,2.0,4.0,2.5,2509.751889722634,0.0,840.0,1356.0,0.0,63081.0,1,1,1,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3529.7815561160824,0.0715786928904795,0.055956334809468496,25232.4,7,4,7,7_1,7_3,7_0_0 +5050,1,40.0,3,148.0,99,111,1,55,21,4.0,0.0,0.0,2131.95274795889,0.0,318.4779495677801,25922.14,12,20,2,16396,201705050,,,,467.0,2.0,0.0,3.0,1.0,3.0,1.8,7192.0306340649495,0.0,1584.0,180.0,0.0,32746.0,1,1,3,68.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2450.43069752667,0.09453041676060195,0.07483145109407775,18192.222222222223,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +5051,2,36.0,5,0.0,3,111,6,0,34,6.0,0.0,0.0,1655.4936111044412,0.0,0.0,46795.06584675129,0,20,2,16397,201705051,,,290.0,,1.0,0.0,4.0,2.0,3.0,1.6,804.3720443090043,0.0,1230.0,0.0,0.0,36813.0,0,1,2,82.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1655.4936111044412,0.03537752498363826,0.04497035316612179,23008.125,6,3,6,6_0,6_3,6_0_1 +5052,1,55.0,4,159.0,99,111,1,0,45,2.0,0.0,0.0,403.7789295376686,0.0,169.8549064361494,8800.68,0,41,2,16398,201705052,,,,79.0,1.0,0.0,3.0,0.0,1.0,1.0,1945.8566753166072,0.0,300.0,96.0,0.0,12838.0,0,1,3,59.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,573.633835973818,0.06518062649406842,0.044682492286479046,12838.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +5053,1,32.0,3,325.0,4,111,4,85,53,2.0,0.0,0.0,1615.1157181506744,0.0,0.0,23545.02063198823,71,50,1,16399,201705053,,,171.0,,1.0,0.0,5.0,3.0,5.0,2.6,1782.115569382494,0.0,1200.0,0.0,0.0,30036.0,6,1,3,97.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1615.1157181506744,0.06859691241707304,0.05377266340893176,11552.307692307691,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +5054,1,33.0,3,394.0,4,111,4,0,68,2.0,0.0,0.0,689.1160397442877,191.08676974066807,0.0,11894.997171918203,0,71,2,164,201705054,,,264.0,,1.0,0.0,2.0,2.0,3.0,1.6,727.6728703952124,0.0,512.0,0.0,0.0,20358.0,0,4,3,49.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,880.2028094849558,0.07399773171556064,0.043236212274533635,12723.75,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +5055,2,60.0,1,0.0,1,111,2,43,42,9.0,0.0,0.0,1352.6594139511897,0.0,1539.310089577604,72503.29999999999,33,30,1,1640,201705055,,,469.0,,2.0,3.0,5.0,0.0,2.0,1.5,1839.8808378050621,0.0,1005.0,870.0,0.0,61800.0,1,1,1,143.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2891.9695035287937,0.03988741896615456,0.0467956230344465,41200.0,10,5,10,10_1,10_3,10_1_0 +5056,2,52.0,1,0.0,7,111,6,0,37,10.0,0.0,0.0,3364.824412813905,0.0,0.0,46408.78,0,31,2,16401,201705056,,,,1100.0,2.0,1.0,4.0,1.0,2.0,1.5,1453.644872340171,0.0,2500.0,0.0,0.0,79751.0,0,1,3,90.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3364.824412813905,0.07250404800156145,0.04219162659795996,53167.333333333336,10,5,10,10_0,10_4,10_0_0 +5057,2,58.0,4,0.0,5,111,2,54,65,3.0,0.0,0.0,846.232325639703,0.0,1576.935805508192,21272.78,41,41,2,16402,201705057,,,240.0,471.0,2.0,0.0,2.0,0.0,2.0,1.5,2737.8774188843227,1520.0,0.0,0.0,0.0,23580.0,4,1,3,58.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2423.168131147895,0.11390933066331224,0.10276370361102184,15720.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +5058,2,32.0,2,0.0,4,111,1,0,45,7.0,0.0,0.0,269.1859530251124,0.0,0.0,31872.100000000002,0,20,2,16403,201705058,,,,301.0,1.0,0.0,3.0,0.0,1.0,1.0,5812.479810557637,0.0,200.0,0.0,0.0,27836.0,0,1,3,80.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,269.1859530251124,0.008445817910495774,0.00967042509789885,27836.0,8,4,8,8_0,8_4,8_0_1 +5059,2,55.0,3,0.0,2,120,2,0,67,6.0,0.0,0.0,403.7789295376686,0.0,1946.2541362475451,21735.156722052925,0,50,1,16404,201705059,,,140.0,,1.0,1.0,3.0,0.0,1.0,1.0,2909.251349065615,0.0,300.0,1100.0,0.0,24090.0,0,1,1,40.0,0,1.0,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2350.0330657852137,0.10812128460066833,0.09755222356933224,24090.0,7,4,7,7_1,7_1,7_0_1 +5060,2,80.0,2,0.0,2,111,2,78,75,5.0,0.0,0.0,740.261370819059,0.0,1822.4016003045197,18734.98,70,71,1,16405,201705060,,,200.0,,0.0,4.0,4.0,0.0,2.0,1.5,2434.7855784390995,0.0,550.0,1030.0,0.0,27553.0,5,5,3,80.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2562.6629711235787,0.13678493230969976,0.09300849167508361,18368.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +5061,2,67.0,2,0.0,1,112,4,75,75,9.0,0.0,277.585263912688,4191.33638539747,44.23304855108057,536.9428396326666,65439.02975007711,60,31,1,16408,201705061,,,130.0,,0.0,1.0,5.0,0.0,2.0,1.5,2122.160407098327,517.5563351347934,2900.0,0.0,0.0,55330.0,5,5,1,115.0,6,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5050.097537493904,0.0771725613411613,0.0912723212993657,36886.666666666664,9,5,9,9_1,9_0,9_1_0 +5062,1,47.0,3,265.0,4,111,1,0,52,3.0,0.0,0.0,436.08124390068207,0.0,424.6372660903735,18308.34,0,41,2,16410,201705062,240.0,240.0,,38.0,1.0,0.0,3.0,1.0,2.0,1.3,569.0698535467129,0.0,324.0,240.0,0.0,19510.0,0,1,3,85.0,6,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,860.7185099910555,0.04701237304917079,0.04411678677555384,15007.692307692307,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +5063,2,39.0,2,0.0,4,111,1,0,47,9.0,0.0,0.0,515.4911000430902,0.0,0.0,23580.04,0,31,2,16413,201705063,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4054.2407225378715,0.0,383.0,0.0,0.0,31929.0,0,1,2,66.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,515.4911000430902,0.02186133272221295,0.016144918414077804,31929.0,9,5,9,9_0,9_4,9_0_1 +5064,2,56.0,1,0.0,1,111,7,47,43,10.0,0.0,0.0,942.1508355878933,0.0,180.47083808840873,36387.897482638225,31,33,2,16414,201705064,,,,784.0,2.0,0.0,3.0,0.0,2.0,1.5,3167.6167201891253,0.0,700.0,102.0,0.0,104749.0,1,1,3,80.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1122.621673676302,0.030851512490160746,0.010717254328693372,69832.66666666667,10,5,10,10_0,10_3,10_1_0 +5065,2,64.0,2,0.0,1,111,6,12,31,10.0,1903.7472109666587,0.0,1372.8483604280732,326.9706948895876,0.0,43800.870875301625,31,30,1,16415,201705065,,,700.0,,2.0,2.0,3.0,0.0,2.0,1.5,2850.5846584118335,0.0,1020.0,0.0,0.0,82817.0,1,1,1,100.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3603.5662662843197,0.0822715666212083,0.043512398013503505,55211.333333333336,10,5,10,10_1,10_3,10_1_0 +5066,2,47.0,1,0.0,9,111,2,42,47,10.0,0.0,138.792631956344,942.1508355878933,0.0,2123.1863304518674,72096.04000000001,30,50,1,16416,201705066,,,,,2.0,0.0,6.0,3.0,5.0,2.4,2098.6492324873525,0.0,700.0,1200.0,0.0,101126.0,1,1,1,169.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3204.1297979961046,0.04444252136450357,0.0316845301702441,42135.833333333336,10,5,10,10_1,10_4,10_0_0 +5067,2,62.0,3,0.0,1,112,6,0,77,6.0,0.0,371.9642536430019,376.8603342351573,0.0,1857.7880391453841,22517.5,0,50,1,16418,201705067,,,,,0.0,1.0,5.0,0.0,1.0,1.0,1966.3398886729894,0.0,280.0,1050.0,0.0,21972.0,0,5,2,82.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2606.6126270235436,0.11575941498938797,0.11863338007571197,21972.0,6,3,6,6_1,6_0,6_1_0 +5068,2,33.0,3,0.0,9,111,1,35,46,8.0,0.0,0.0,581.4416585342427,0.0,0.0,33778.28175060326,30,20,2,16421,201705068,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2830.8504985795666,0.0,432.0,0.0,0.0,51098.0,1,1,3,90.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,581.4416585342427,0.017213476482528852,0.011378951397985101,28387.777777777777,8,4,8,8_0,8_3,8_0_0 +5069,2,67.0,2,0.0,3,111,2,75,74,10.0,0.0,0.0,2109.1045886256243,0.0,3691.258111425037,38648.077742723675,41,20,1,16423,201705069,,,474.0,,0.0,2.0,6.0,0.0,2.0,1.5,2988.61955382302,829.2800263327805,1224.0,1600.0,0.0,91500.0,5,5,1,160.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5800.362700050661,0.1500815315748195,0.06339194207705641,61000.0,10,5,10,10_1,10_3,10_0_1 +5070,2,22.0,3,0.0,7,111,4,0,54,1.0,0.0,0.0,0.0,0.0,0.0,15579.44,0,41,2,16427,201705070,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3133.103926115992,0.0,0.0,0.0,0.0,7600.0,0,2,3,21.0,7,5.0,1,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,7600.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +5071,2,47.0,2,0.0,9,112,5,63,56,2.0,0.0,485.77421184720396,1258.4443303924004,212.31863304518674,0.0,63333.22000000001,50,50,1,16428,201705071,,,320.0,,2.0,0.0,6.0,2.0,4.0,2.5,2311.281086326827,0.0,935.0,0.0,0.0,26880.0,1,1,2,120.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1956.5371752847911,0.03089274752309753,0.07278784134244015,10752.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +5072,2,69.0,3,0.0,99,111,1,0,86,3.0,0.0,0.0,511.45331074771354,0.0,389.25082724950903,26873.470017449894,0,71,2,1643,201705072,,,,490.0,1.0,3.0,4.0,2.0,4.0,2.1,1629.2272766969527,0.0,380.0,220.0,0.0,34914.0,0,5,3,70.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,900.7041379972226,0.03351648065591691,0.025797792805098887,16625.714285714286,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +5073,2,60.0,2,0.0,9,300,2,0,77,10.0,0.0,0.0,1388.99951760958,0.0,0.0,65907.78584675129,0,71,1,16430,201705073,,,116.0,,1.0,1.0,4.0,1.0,2.0,1.5,3092.3314845686305,0.0,1032.0,0.0,0.0,73768.0,0,5,1,118.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1388.99951760958,0.021074892742403456,0.018829296139377234,49178.666666666664,10,5,10,10_1,10_0,10_0_0 +5074,2,37.0,3,0.0,6,111,1,85,63,1.0,0.0,0.0,403.7789295376686,0.0,530.7965826129669,23323.98,31,71,2,16432,201705074,,,,,1.0,0.0,3.0,4.0,6.0,2.7,3432.407383688559,0.0,300.0,300.0,0.0,17560.0,6,4,3,60.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,934.5755121506354,0.04006929829945984,0.0532218400996945,6503.7037037037035,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +5075,2,51.0,2,0.0,1,111,4,43,45,8.0,0.0,0.0,3472.49879402395,53.079658261296686,0.0,37641.11999999999,42,42,1,16433,201705075,,,780.0,,2.0,2.0,4.0,1.0,3.0,1.8,1839.784236400497,0.0,2580.0,0.0,0.0,46820.0,1,1,1,100.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3525.5784522852464,0.09366295296965785,0.07530069312868959,26011.11111111111,7,4,7,7_1,7_3,7_1_0 +5076,1,43.0,3,64.0,8,111,1,0,52,6.0,0.0,0.0,453.57833084731436,0.0,0.0,30589.379999999994,0,31,2,16435,201705076,,,220.0,458.0,1.0,0.0,4.0,2.0,3.0,1.8,705.8762494492364,0.0,337.0,0.0,0.0,37467.0,0,1,3,90.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,453.57833084731436,0.01482796744645738,0.012106075502370469,20815.0,5,3,5,5_0,5_3,5_0_0 +5077,2,71.0,5,0.0,5,111,1,0,75,8.0,0.0,0.0,415.89229742379865,0.0,0.0,19657.816658454027,0,33,2,16436,201705077,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2122.348915662259,0.0,309.0,0.0,0.0,28907.0,0,5,1,88.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,415.89229742379865,0.02115658644343599,0.014387252133524705,28907.0,8,4,8,8_0,8_3,8_0_0 +5078,2,57.0,2,0.0,4,112,2,43,31,10.0,0.0,346.98157989085996,2269.2375840016975,0.0,1473.8451777220048,112747.44,20,20,1,16437,201705078,,,310.0,,2.0,4.0,8.0,0.0,2.0,1.5,2521.9972653499003,0.0,1686.0,833.0,0.0,75292.0,1,1,1,190.0,10,2.0,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4090.064341614562,0.03627633888285678,0.05432269486286142,50194.666666666664,10,5,10,10_1,10_1,10_0_1 +5079,2,70.0,3,0.0,1,111,1,0,77,8.0,0.0,0.0,179.00865876169973,0.0,0.0,19475.870875301633,0,41,2,16439,201705079,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2343.108862877311,0.0,133.0,0.0,0.0,32209.0,0,5,1,115.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,179.00865876169973,0.009191304456054386,0.00555772171634325,32209.0,9,5,9,9_0,9_3,9_1_0 +5080,2,79.0,3,0.0,4,111,6,86,86,4.0,1380.2167279508276,0.0,986.5665178370369,212.31863304518674,0.0,24475.96,71,50,1,1644,201705080,,,196.0,,0.0,5.0,9.0,0.0,2.0,1.5,1700.3577126118996,0.0,733.0,0.0,0.0,24424.0,6,5,1,143.0,7,5.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2579.101878833051,0.10537285887185023,0.10559703074160871,16282.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +5081,0,72.0,3,0.0,2,400,5,22,72,1.0,0.0,791.1180021511608,1502.057617880127,230.01185246561897,0.0,15791.331191295747,60,71,1,16440,201705081,,,500.0,,1.0,1.0,5.0,0.0,2.0,1.5,2155.39753077563,0.0,1116.0,0.0,0.0,14890.0,5,5,5,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2523.187472496907,0.15978307603906752,0.1694551694087916,9926.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +5082,2,24.0,1,0.0,6,111,4,56,63,6.0,0.0,0.0,1238.255383915517,0.0,0.0,17476.56,50,44,1,16442,201705082,,,300.0,,2.0,0.0,4.0,0.0,2.0,1.5,3459.03047103771,0.0,920.0,0.0,0.0,35400.0,1,1,2,85.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1238.255383915517,0.07085235217431331,0.03497896564733099,23600.0,6,3,6,6_1,6_1,6_0_0 +5083,2,44.0,1,0.0,1,111,2,0,22,10.0,0.0,0.0,1004.0636047836692,0.0,1863.0960049715138,30172.16,0,30,2,16443,201705083,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3613.4001706328872,0.0,746.0,1053.0,0.0,54968.0,0,1,1,69.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2867.159609755183,0.0950266606618546,0.05216052266328014,54968.0,10,5,10,10_0,10_4,10_1_0 +5084,2,39.0,3,0.0,99,111,1,0,56,4.0,0.0,0.0,597.5928157157495,0.0,467.1009926994108,29294.74089963387,0,33,2,16445,201705084,,,,315.0,1.0,0.0,4.0,2.0,3.0,1.6,734.8765214910516,0.0,444.0,264.0,0.0,26190.0,0,1,3,65.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1064.6938084151602,0.0363441961157085,0.04065268455193433,16368.75,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +5086,2,54.0,3,0.0,1,112,4,46,48,8.0,0.0,0.0,1615.1157181506744,0.0,0.0,28184.539999999997,50,50,1,16448,201705086,,,300.0,,3.0,1.0,4.0,1.0,3.0,2.0,2189.3881060504455,0.0,1200.0,0.0,0.0,55060.0,4,1,2,150.0,10,2.0,4,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1615.1157181506744,0.05730502318472022,0.02933373988649972,27530.0,8,4,8,8_1,8_1,8_1_0 +5087,2,32.0,3,0.0,9,111,2,52,37,10.0,0.0,0.0,1868.15051399428,0.0,0.0,66734.4,41,12,2,16449,201705087,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3360.1305160748775,0.0,1388.0,0.0,0.0,90762.0,1,1,2,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1868.15051399428,0.027993815992865448,0.020582958881407196,50423.33333333333,10,5,10,10_0,10_4,10_0_0 +5088,2,75.0,3,0.0,5,112,6,74,75,10.0,0.0,0.0,1761.0732687032485,1020.7218283647353,1548.6174074805847,52587.248586693495,10,30,1,16450,201705088,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1473.0733720433655,1492.704047399005,691.0,0.0,0.0,87692.0,5,5,1,180.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4330.412504548569,0.08234719672411844,0.04938207025211614,58461.333333333336,10,5,10,10_1,10_0,10_0_0 +5089,2,56.0,2,0.0,9,111,2,43,34,9.0,0.0,0.0,1817.0051829195086,0.0,0.0,37002.31999999999,33,10,1,16452,201705089,,,200.0,,2.0,0.0,7.0,3.0,5.0,2.6,1091.523164593775,0.0,1350.0,0.0,0.0,82340.0,1,1,2,120.0,6,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1817.0051829195086,0.04910516916019074,0.022067102051487836,31669.23076923077,8,4,8,8_1,8_2,8_0_0 +5090,2,33.0,2,0.0,1,111,1,46,37,9.0,0.0,0.0,436.08124390068207,0.0,0.0,66978.56,20,20,2,16454,201705090,,,348.0,,2.0,0.0,3.0,0.0,2.0,1.5,2594.6246068346873,0.0,324.0,0.0,0.0,59970.0,1,1,2,68.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,436.08124390068207,0.006510758724891698,0.007271656559958014,39980.0,9,5,9,9_0,9_3,9_1_0 +5091,2,90.0,4,0.0,3,112,1,0,78,1.0,0.0,0.0,327.06093292551157,268.9369351905699,0.0,11948.2,0,50,2,16455,201705091,,,206.0,1376.0,0.0,2.0,3.0,0.0,1.0,1.0,3255.7741979304324,0.0,243.0,0.0,0.0,9134.0,0,5,3,55.0,9,1.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,595.9978681160815,0.04988181216552129,0.06525047822597782,9134.0,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +5092,2,67.0,2,0.0,9,111,1,0,74,6.0,0.0,0.0,220.73248148059216,0.0,0.0,20088.64,0,41,2,16456,201705092,,,,478.0,0.0,0.0,2.0,0.0,1.0,1.0,2493.127861127673,0.0,164.0,0.0,0.0,25051.0,0,5,3,38.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,220.73248148059216,0.01098792558782437,0.008811324157941485,25051.0,7,4,7,7_0,7_3,7_0_0 +5093,1,40.0,4,142.0,4,112,2,0,67,3.0,0.0,0.0,645.8088800934576,0.0,1203.4510094667783,12801.32,0,50,2,16457,201705093,,,,95.0,1.0,0.0,3.0,1.0,2.0,1.5,460.9142046650603,1160.0,0.0,0.0,0.0,21434.0,0,1,3,60.0,7,0.0,2,2,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,1849.259889560236,0.14445853158582364,0.08627693802184548,14289.333333333334,3,2,3_1,3_0_1,3_0_1,3_0_1_1 +5094,2,54.0,3,0.0,9,111,2,56,68,1.0,0.0,0.0,581.4416585342427,0.0,897.046224615914,24438.28,41,41,1,16458,201705094,,,415.0,,3.0,1.0,5.0,1.0,3.0,2.0,2433.8159805071236,0.0,432.0,507.0,0.0,17795.0,4,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1478.4878831501567,0.06049885193025682,0.08308445536106528,8897.5,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +5095,2,52.0,2,0.0,4,111,2,54,38,10.0,0.0,0.0,503.3777321569602,0.0,1689.7024546512778,32393.179999999997,50,44,1,16459,201705095,,,344.0,,2.0,2.0,5.0,0.0,2.0,1.5,1955.5790552667982,0.0,374.0,955.0,0.0,71477.0,1,1,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2193.080186808238,0.06770191092100987,0.030682320002353738,47651.333333333336,10,5,10,10_1,10_4,10_0_1 +5096,1,39.0,5,462.0,9,300,2,56,85,2.0,0.0,0.0,3162.9349480450705,0.0,4157.906563801574,24410.45333421399,43,50,1,1646,201705096,,,,,1.0,0.0,4.0,3.0,5.0,2.4,3222.0575872607433,0.0,2350.0,2350.0,0.0,30126.0,4,4,3,110.0,0,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,7320.841511846644,0.299906003858833,0.24300741923410488,12552.5,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +5097,2,74.0,3,0.0,4,111,2,0,77,4.0,0.0,0.0,360.7091770536506,0.0,2866.3015461100213,18596.980000000003,0,70,1,16460,201705097,,,295.0,,0.0,2.0,5.0,0.0,1.0,1.0,3455.1641538296485,0.0,268.0,1620.0,0.0,18124.0,0,5,1,146.0,4,3.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3227.010723163672,0.17352337439539492,0.1780517944804498,18124.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +5098,2,69.0,2,0.0,1,112,5,77,75,7.0,0.0,210.96480057364286,717.3805648119245,113.23660429076627,0.0,20954.4,50,50,1,16462,201705098,,,145.0,,0.0,2.0,3.0,0.0,2.0,1.5,1939.5219865544295,0.0,533.0,0.0,0.0,41121.0,5,5,1,70.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1041.5819696763335,0.04970707677988076,0.025329684824696226,27414.0,8,4,8,8_1,8_1,8_1_0 +5099,2,40.0,2,0.0,4,112,2,0,46,7.0,0.0,0.0,2002.7434905068362,0.0,0.0,18049.68,0,20,1,16465,201705099,,,,,1.0,0.0,3.0,1.0,2.0,1.3,438.4083081617234,0.0,1488.0,0.0,0.0,33574.0,0,1,2,70.0,7,1.0,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2002.7434905068362,0.11095728514338404,0.05965162001867029,25826.153846153844,7,4,7,7_1,7_1,7_0_1 +5100,2,82.0,3,0.0,3,111,1,0,72,6.0,0.0,0.0,399.7411402422919,0.0,0.0,18203.56417758094,0,70,2,16466,201705100,,,,,0.0,1.0,3.0,0.0,1.0,1.0,5402.359997514594,0.0,297.0,0.0,0.0,23021.0,0,5,1,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,399.7411402422919,0.021959498499453375,0.01736419531046835,23021.0,6,3,6,6_0,6_4,6_0_1 +5101,1,24.0,5,202.0,99,111,4,0,54,6.0,0.0,0.0,888.3136449828709,0.0,0.0,17915.440000000002,0,0,8,16467,201705101,,,,440.0,1.0,0.0,3.0,0.0,1.0,1.0,5135.350567943196,0.0,660.0,0.0,0.0,22524.0,0,1,3,70.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,888.3136449828709,0.04958369121734497,0.039438538669102775,22524.0,6,3,6,6_0,6_3,6_0_0 +5102,2,37.0,2,0.0,7,112,1,0,48,8.0,0.0,0.0,181.70051829195086,0.0,0.0,26114.760000000002,0,31,1,16468,201705102,,,496.0,,1.0,2.0,4.0,0.0,1.0,1.0,3737.2314656399512,0.0,135.0,0.0,0.0,29932.0,0,1,3,80.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,181.70051829195086,0.006957770942254527,0.006070443615259617,29932.0,8,4,8,8_1,8_0,8_0_0 +5103,2,45.0,3,0.0,4,111,1,0,85,3.0,0.0,0.0,323.0231436301349,0.0,0.0,18372.875052882573,0,50,2,1647,201705103,,,,,0.0,0.0,3.0,0.0,1.0,1.0,5125.332342340908,0.0,240.0,0.0,0.0,15892.0,0,7,1,69.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,323.0231436301349,0.017581523996673284,0.020326147975719536,15892.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +5104,2,29.0,2,0.0,6,300,2,43,47,9.0,0.0,0.0,2777.99903521916,0.0,0.0,33551.86,44,42,1,16470,201705104,,,151.0,,2.0,0.0,4.0,0.0,2.0,1.5,2278.450299750959,0.0,2064.0,0.0,0.0,50758.0,1,1,1,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2777.99903521916,0.08279716937359538,0.05473026981400291,33838.666666666664,9,5,9,9_1,9_0,9_0_0 +5105,2,80.0,1,0.0,5,111,1,0,75,6.0,0.0,0.0,1852.4437439986546,0.0,2342.396772155421,23066.627389779085,0,60,2,16471,201705105,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3342.384372256095,2070.2253405391734,520.0,110.0,0.0,23019.0,0,5,1,59.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,4194.840516154076,0.18185755746905707,0.1822338292781648,23019.0,6,3,6,6_0,6_3,6_0_0 +5106,2,76.0,3,0.0,2,111,2,0,78,5.0,0.0,0.0,508.7614512174624,0.0,725.4219962377214,16096.48,0,70,2,16472,201705106,,,250.0,,0.0,5.0,4.0,0.0,1.0,1.0,1646.4656839833967,0.0,378.0,410.0,0.0,19129.0,0,5,3,100.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1234.1834474551838,0.0766741205192181,0.06451897367636487,19129.0,5,3,5,5_0,5_1,5_0_1 +5107,1,48.0,4,462.0,7,112,2,0,85,2.0,0.0,0.0,336.4824412813905,0.0,1769.3219420432229,16499.36,0,71,1,16473,201705107,,,,100.0,0.0,0.0,4.0,3.0,4.0,2.1,335.31252002013997,0.0,250.0,1000.0,0.0,28188.0,0,4,3,100.0,6,0.0,2,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2105.8043833246134,0.12762945855624783,0.07470570396355233,13422.857142857143,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +5108,1,51.0,2,49.0,4,111,2,0,43,6.0,0.0,0.0,931.4122899968573,0.0,1735.666843825793,47180.880000000005,0,33,1,16474,201705108,,,234.0,,1.0,0.0,4.0,1.0,2.0,1.3,648.579796625198,1673.0,0.0,0.0,0.0,28125.0,0,1,2,90.0,5,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,2667.0791338226504,0.056528812811940984,0.09482948031369423,21634.615384615383,6,3,6,6_1,6_2,6_0_1 +5109,2,38.0,3,0.0,4,111,1,0,43,4.0,0.0,0.0,565.290501352736,0.0,442.3304855108057,30345.66,0,50,2,16475,201705109,,,284.0,365.0,1.0,0.0,4.0,1.0,2.0,1.3,2905.6819855488993,0.0,420.0,250.0,0.0,22428.0,0,1,3,70.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1007.6209868635417,0.033204780745040366,0.04492692111929471,17252.30769230769,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +5110,2,69.0,5,0.0,1,111,1,0,74,8.0,0.0,0.0,942.1508355878933,0.0,0.0,18506.51087530163,0,71,2,16476,201705110,,,,698.0,0.0,1.0,2.0,0.0,1.0,1.0,3816.709404945862,0.0,700.0,0.0,0.0,28650.0,0,5,3,53.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,942.1508355878933,0.05090915526628342,0.032884845919298196,28650.0,8,4,8,8_0,8_4,8_1_0 +5111,1,44.0,3,422.0,99,111,4,0,52,2.0,0.0,0.0,847.935752029104,0.0,0.0,10739.925846751301,0,33,2,16478,201705111,,,,,1.0,3.0,2.0,1.0,2.0,1.3,1064.978688389151,0.0,630.0,0.0,0.0,14035.0,0,1,3,31.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,847.935752029104,0.07895173245405548,0.06041579993082323,10796.153846153846,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +5112,2,36.0,2,0.0,1,300,5,55,12,2.0,0.0,138.792631956344,538.3719060502248,0.0,0.0,26961.380000000005,71,71,1,16481,201705112,,,230.0,,2.0,0.0,5.0,3.0,5.0,2.6,2623.8501433422716,0.0,400.0,0.0,0.0,33476.0,1,1,1,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,677.1645380065688,0.025116093390122045,0.020228358764684217,12875.384615384615,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +5113,2,77.0,4,0.0,1,111,2,77,77,5.0,0.0,0.0,403.7789295376686,0.0,1468.537211895875,12502.96,70,50,2,16482,201705113,,,,,0.0,5.0,3.0,0.0,2.0,1.5,2101.199479226998,0.0,300.0,830.0,0.0,28340.0,5,5,3,80.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1872.3161414335436,0.14974983055480812,0.06606620117972983,18893.333333333332,5,3,5,5_0,5_3,5_1_0 +5114,2,56.0,3,0.0,6,111,6,46,47,8.0,0.0,0.0,969.0694308904046,0.0,0.0,35380.620875301625,42,41,2,16483,201705114,,,,903.0,2.0,2.0,4.0,1.0,3.0,2.0,2446.727218394169,0.0,720.0,0.0,0.0,61167.0,1,1,3,88.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,969.0694308904046,0.027389836778327684,0.015843010624853347,30583.5,8,4,8,8_0,8_3,8_0_0 +5115,1,45.0,3,65.0,5,111,2,0,46,4.0,0.0,0.0,430.6975248401798,0.0,1043.8999458055016,22791.879999999997,0,31,2,16484,201705115,,,,214.0,1.0,0.0,3.0,1.0,2.0,1.3,3438.2108925395905,0.0,320.0,590.0,0.0,22556.0,0,1,3,60.0,5,4.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1474.5974706456814,0.06469836935986331,0.06537495436450086,17350.76923076923,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +5116,2,48.0,3,0.0,99,111,4,85,31,4.0,0.0,0.0,2153.487624200899,0.0,0.0,21882.660197470053,41,30,2,16485,201705116,,,,,1.0,0.0,3.0,1.0,3.0,1.8,4338.316936809469,0.0,1600.0,0.0,0.0,30540.0,6,1,3,60.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2153.487624200899,0.09841068703565907,0.07051367466276683,16966.666666666668,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +5117,2,45.0,2,0.0,6,111,4,38,46,10.0,0.0,0.0,224.77027077596884,0.0,0.0,42489.8,31,31,1,16488,201705117,,,600.0,465.0,2.0,1.0,5.0,1.0,3.0,1.8,1729.832822127644,0.0,167.0,0.0,0.0,70458.0,1,1,3,105.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,224.77027077596884,0.005289981849196015,0.0031901312948986464,39143.333333333336,9,5,9,9_1,9_3,9_0_0 +5118,1,78.0,4,261.0,2,111,4,0,74,2.0,0.0,0.0,472.4213475590722,150.39236507367394,0.0,8868.151191295747,0,70,2,16489,201705118,,,110.0,89.0,0.0,0.0,1.0,0.0,1.0,1.0,4068.9541777354766,0.0,351.0,0.0,0.0,12722.0,0,5,3,30.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,622.8137126327462,0.07023038953644016,0.04895564475968764,12722.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5119,2,63.0,3,0.0,1,111,6,0,78,2.0,237.96840137083234,0.0,242.26735772260116,244.16642800196476,0.0,10564.000315994117,0,71,1,1649,201705119,,,300.0,550.0,0.0,1.0,3.0,0.0,1.0,1.0,5575.114681143738,0.0,180.0,0.0,0.0,13050.0,0,5,3,70.0,6,5.0,1,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,724.4021870953983,0.06857271539443617,0.05550974613757841,13050.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +5120,2,45.0,5,0.0,4,111,2,0,34,6.0,0.0,0.0,629.895130078763,0.0,1778.168551753439,30882.74290709155,0,30,1,16490,201705120,,,256.0,,1.0,0.0,5.0,2.0,3.0,1.6,668.7125085122767,0.0,468.0,1005.0,0.0,33130.0,0,1,2,88.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2408.063681832202,0.07797441079235364,0.07268529072840935,20706.25,5,3,5,5_1,5_2,5_0_1 +5121,1,28.0,3,58.0,7,300,2,0,52,3.0,0.0,0.0,1512.8250560011315,44.23304855108057,0.0,8823.279999999999,0,43,1,16491,201705121,,,236.0,,1.0,0.0,3.0,0.0,1.0,1.0,3073.605989478028,0.0,1124.0,0.0,0.0,15843.0,0,1,3,66.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1557.0581045522122,0.1764715734457268,0.09828050902936389,15843.0,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +5122,2,80.0,3,0.0,3,112,6,0,78,2.0,0.0,0.0,464.34576896831885,0.0,2123.1863304518674,19556.36,0,70,1,16492,201705122,,,307.0,,0.0,2.0,4.0,0.0,1.0,1.0,3420.1056660099052,0.0,345.0,1200.0,0.0,11329.0,0,5,5,62.0,7,0.0,1,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2587.532099420186,0.13231153954111022,0.22839898485481386,11329.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +5123,2,51.0,4,0.0,9,300,4,0,52,2.0,0.0,0.0,1067.3223037445707,0.0,0.0,20578.688161188147,0,50,2,16493,201705123,,,251.0,,1.0,3.0,2.0,0.0,1.0,1.0,2634.137863221785,0.0,793.0,0.0,0.0,10730.0,0,1,3,45.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1067.3223037445707,0.051865419961878996,0.09947085775811469,10730.0,1,1,1_0,1_0_0,1_0_0,1_0_0_0 +5124,2,69.0,3,0.0,7,111,2,78,75,4.0,0.0,0.0,40.37789295376686,0.0,88.46609710216114,47721.47169350259,70,50,2,16495,201705124,,,,558.0,0.0,0.0,4.0,0.0,2.0,1.5,2607.477064810774,0.0,30.0,50.0,0.0,24339.0,6,5,3,89.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,128.843990055928,0.002699916525698231,0.005293725710009778,16226.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +5125,1,35.0,5,329.0,4,111,2,21,56,1.0,0.0,0.0,847.935752029104,0.0,1787.0151614636552,21796.299999999996,50,71,2,16498,201705125,,,,25.0,2.0,0.0,4.0,2.0,4.0,2.3,4659.46292209198,0.0,630.0,1010.0,0.0,20019.0,1,4,3,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2634.9509134927594,0.1208898259563669,0.1316225042955572,8703.913043478262,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5126,2,24.0,3,0.0,99,111,2,0,52,7.0,0.0,0.0,45.761612014269105,0.0,83.15813127603148,22200.88,0,43,8,16499,201705126,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2938.4187144032144,0.0,34.0,47.0,0.0,24851.0,0,1,3,68.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,128.91974329030057,0.0058069654576890905,0.005187708474117765,24851.0,7,4,7,7_0,7_3,7_0_0 +5127,1,42.0,4,622.0,1,211,2,0,85,2.0,0.0,0.0,1404.0775824100863,0.0,2616.468487823461,35877.34584675129,0,71,1,1650,201705127,,,,,2.0,0.0,6.0,8.0,10.0,4.7,555.2844459439813,2522.0,0.0,0.0,0.0,51888.0,0,6,3,92.0,2,3.0,5,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,4020.5460702335477,0.11206364281814926,0.07748508460980473,11040.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +5128,2,62.0,2,0.0,5,112,2,78,74,4.0,0.0,0.0,2281.3509518878277,65.46491185559925,0.0,26948.140000000003,50,50,1,16500,201705128,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1636.8121051351654,0.0,1695.0,0.0,0.0,26488.0,5,5,1,64.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2346.815863743427,0.08708637641571651,0.08859920959466276,17658.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5129,2,61.0,3,0.0,4,221,2,0,46,10.0,0.0,1387.9263195634398,4037.789295376686,0.0,0.0,35222.03999999999,0,12,1,16501,201705129,,,350.0,,1.0,2.0,8.0,0.0,1.0,1.0,3300.113289050684,0.0,3000.0,0.0,0.0,66678.0,0,1,1,250.0,1,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5425.715614940125,0.15404319610505599,0.08137190100093172,66678.0,10,5,10,10_1,10_1,10_0_1 +5130,2,84.0,3,0.0,7,300,5,71,74,6.0,0.0,2012.4931633669878,1924.6795641295537,0.0,0.0,31506.95150273411,70,41,1,16502,201705130,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2182.12082931686,0.0,1430.0,0.0,0.0,34231.0,5,5,1,105.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3937.1727274965415,0.12496203344696429,0.11501775371728963,22820.666666666668,6,3,6,6_1,6_0,6_0_0 +5131,1,46.0,4,350.0,99,221,2,0,85,1.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,6674.578002984744,0,71,1,16503,201705131,,,317.0,,0.0,2.0,3.0,1.0,2.0,1.5,658.0494257432196,1100.0,0.0,0.0,0.0,11060.0,0,4,3,75.0,1,3.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1753.6085159622926,0.26272949618359576,0.15855411536729588,7373.333333333333,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +5132,2,32.0,2,0.0,4,120,2,0,22,2.0,0.0,0.0,845.118862053335,0.0,1574.8608899746287,23537.38,0,50,1,16505,201705132,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4238.17039558632,1518.0,0.0,0.0,0.0,13410.0,0,1,3,70.0,0,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2419.9797520279635,0.1028143213912493,0.18046083162028065,13410.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +5133,0,21.0,2,0.0,1,111,6,0,84,1.0,0.0,0.0,0.0,0.0,0.0,5368.84,0,41,2,16507,201705133,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3392.848501344154,0.0,0.0,0.0,0.0,3929.0,0,3,5,28.0,8,7.0,1,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,3929.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +5134,1,70.0,4,241.0,99,111,2,0,86,2.0,0.0,0.0,403.7789295376686,0.0,530.7965826129669,2485.4,0,71,2,16508,201705134,,,,,0.0,0.0,3.0,0.0,1.0,1.0,1568.0500538879633,0.0,300.0,300.0,0.0,12472.0,0,7,3,43.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,934.5755121506354,0.3760261978557316,0.0749338928921292,12472.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5135,2,64.0,3,0.0,5,112,2,21,72,5.0,1083.5494542418564,388.6193694777632,1146.7321598869787,123.8525359430256,0.0,29281.060000000005,41,41,1,16509,201705135,,,300.0,,1.0,2.0,4.0,0.0,2.0,1.5,2661.5459719867654,0.0,852.0,0.0,0.0,27641.0,1,5,1,156.0,7,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2742.753519549624,0.09366988488632663,0.0992277240168454,18427.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5136,2,56.0,3,0.0,5,111,2,68,62,3.0,0.0,0.0,528.8952035248144,0.0,985.5848784426202,28078.52,41,20,2,1651,201705136,,,,390.0,2.0,3.0,4.0,0.0,2.0,1.5,4014.2091012946107,950.0,0.0,0.0,0.0,22655.0,1,1,3,72.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1514.4800819674347,0.05393731870367222,0.06684970567059963,15103.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +5137,2,55.0,1,0.0,8,120,2,0,34,9.0,0.0,0.0,1884.3016711757866,113.23660429076627,0.0,38894.100000000006,20,20,1,16510,201705137,,,300.0,,1.0,0.0,4.0,0.0,2.0,1.5,1659.802713825052,0.0,1400.0,0.0,0.0,45057.0,8,1,1,88.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1997.538275466553,0.05135838791658767,0.04433358358227474,30038.0,8,4,8,8_1,8_0,8_0_0 +5138,1,34.0,4,420.0,1,300,2,0,85,1.0,0.0,0.0,538.3719060502248,0.0,2653.9829130648345,25741.420315994117,0,50,1,16511,201705138,,,430.0,,0.0,0.0,3.0,4.0,5.0,2.2,244.2293172583845,0.0,400.0,1500.0,0.0,20432.0,0,6,3,80.0,0,0.0,2,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3192.3548191150594,0.12401626561109096,0.15624289443593672,9287.272727272726,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +5139,2,33.0,3,0.0,99,111,2,55,45,6.0,0.0,0.0,1480.522741638118,0.0,2300.11852465619,56072.04,50,60,2,16512,201705139,,,682.0,875.0,2.0,0.0,5.0,2.0,4.0,2.1,2859.6197857866123,0.0,1100.0,1300.0,0.0,46102.0,4,1,3,100.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3780.641266294308,0.06742471410518162,0.08200601419231938,21953.333333333332,6,3,6,6_0,6_3,6_0_0 +5140,1,33.0,4,30.0,99,111,1,0,47,5.0,0.0,0.0,350.7410297059295,0.0,653.5983930724744,16774.9039836072,0,20,2,16513,201705140,,,240.0,308.0,1.0,0.0,2.0,0.0,1.0,1.0,3392.442615584708,630.0,0.0,0.0,0.0,19200.0,0,1,3,60.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1004.339422778404,0.059871545241622026,0.05230934493637521,19200.0,5,3,5,5_0,5_3,5_0_0 +5141,2,52.0,4,0.0,5,111,2,0,42,6.0,2379.684013708323,0.0,713.3427755165478,0.0,0.0,27714.839999999997,0,31,1,16514,201705141,,,400.0,,1.0,1.0,5.0,0.0,1.0,1.0,2331.1038094231567,0.0,530.0,0.0,0.0,24310.0,0,1,1,120.0,6,4.0,1,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3093.026789224871,0.11160182736847377,0.12723269392122052,24310.0,7,4,7,7_1,7_2,7_0_0 +5142,2,22.0,3,0.0,9,300,7,63,52,6.0,0.0,0.0,2018.894647688343,0.0,0.0,28483.18,50,50,1,16515,201705142,,,420.0,,2.0,0.0,4.0,0.0,2.0,1.5,2273.9840371167325,0.0,1500.0,0.0,0.0,34310.0,1,1,3,90.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.07088024046782497,0.05884274694515718,22873.333333333332,6,3,6,6_1,6_0,6_0_0 +5143,2,79.0,1,0.0,8,111,2,0,78,5.0,0.0,0.0,45.761612014269105,0.0,148.62304313163074,28874.300000000003,0,71,2,16516,201705143,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4051.6299117194512,0.0,34.0,84.0,0.0,19692.0,0,5,1,75.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,194.38465514589984,0.00673209931135646,0.009871250007409092,19692.0,5,3,5,5_0,5_4,5_0_0 +5144,2,64.0,4,0.0,6,300,2,43,78,4.0,2696.9752155360998,0.0,807.5578590753372,276.0142229587428,0.0,25358.551191295748,50,70,1,16518,201705144,,,400.0,,1.0,4.0,6.0,0.0,2.0,1.5,2794.8591216220525,0.0,600.0,0.0,0.0,21550.0,1,5,1,115.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3780.5472975701796,0.14908372600039713,0.17543142912158605,14366.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5145,2,62.0,3,0.0,1,112,2,0,78,1.0,2000.5210275241304,0.0,1341.8919758301852,102.62067263850693,0.0,14285.879999999997,0,50,1,16519,201705145,,,475.0,,1.0,1.0,4.0,1.0,2.0,1.5,3573.0981525418943,0.0,997.0,0.0,0.0,15500.0,0,5,1,40.0,8,1.0,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3445.0336759928227,0.2411495599846018,0.22226023716082727,10333.333333333334,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +5146,2,46.0,3,0.0,99,111,1,47,48,6.0,0.0,0.0,1009.4473238441715,0.0,0.0,34845.119999999995,60,43,2,1652,201705146,,,,390.0,2.0,3.0,4.0,1.0,3.0,2.0,2503.633404655289,0.0,750.0,0.0,0.0,43483.0,1,1,3,100.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1009.4473238441715,0.028969546491565294,0.023214758039789608,21741.5,6,3,6,6_0,6_3,6_0_0 +5147,2,55.0,3,0.0,99,111,1,0,54,9.0,0.0,0.0,578.7497990039916,0.0,0.0,24909.76,0,50,2,16523,201705147,,,,826.0,1.0,1.0,2.0,0.0,1.0,1.0,3703.342523979541,0.0,430.0,0.0,0.0,35837.0,0,1,3,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,578.7497990039916,0.023233856889989773,0.016149504674051723,35837.0,9,5,9,9_0,9_4,9_0_0 +5148,2,81.0,3,0.0,4,112,1,0,72,3.0,0.0,0.0,672.964882562781,0.0,3538.6438840864457,16864.835368876687,0,70,1,16524,201705148,,,,,0.0,2.0,5.0,1.0,2.0,1.5,2579.370570631053,0.0,500.0,2000.0,0.0,23432.0,0,5,1,100.0,10,1.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4211.608766649227,0.24972723863178442,0.17973748577369522,15621.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +5149,1,30.0,4,219.0,99,111,2,0,85,2.0,0.0,0.0,403.7789295376686,0.0,2250.5775102789794,9262.720000000001,0,31,2,16525,201705149,,,240.0,,0.0,0.0,2.0,0.0,1.0,1.0,2792.8995872467913,0.0,300.0,1272.0,0.0,10652.0,0,8,3,42.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2654.356439816648,0.28656338956771316,0.24918855048973415,10652.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5150,2,35.0,3,0.0,4,111,6,63,63,1.0,0.0,0.0,1363.992893300837,0.0,2541.771528615178,64835.83175061422,71,71,1,16526,201705150,,,316.0,,2.0,0.0,6.0,2.0,4.0,2.1,2208.9537784568147,2450.0,0.0,0.0,0.0,21843.0,1,1,1,131.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3905.7644219160147,0.06024083159662733,0.17881080538003088,10401.42857142857,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +5151,2,52.0,2,0.0,8,111,2,55,22,2.0,0.0,0.0,2004.2344554624544,0.0,3734.8479604141394,91437.48166093751,31,31,1,16527,201705151,,,600.0,,2.0,1.0,10.0,2.0,4.0,2.3,3154.0230492131786,3600.0,0.0,0.0,0.0,29030.0,1,1,1,160.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5739.082415876594,0.06276509710927827,0.19769488170432634,12621.739130434784,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +5152,2,46.0,3,0.0,99,111,2,0,52,3.0,0.0,0.0,2243.8773026388735,0.0,2823.7978451314725,62151.6005950556,0,41,1,16528,201705152,,,,439.0,2.0,0.0,4.0,2.0,3.0,2.0,1189.0911993386972,1371.135204323504,1100.0,792.0,0.0,30946.0,0,1,3,92.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5067.675147770346,0.0815373232427018,0.1637586488648079,15473.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5153,1,42.0,4,408.0,99,300,4,0,55,2.0,0.0,0.0,1830.4644805707642,77.85016544990181,0.0,14667.54,0,43,1,16529,201705153,,,400.0,,1.0,0.0,4.0,2.0,3.0,1.6,295.94287351370036,0.0,1360.0,0.0,0.0,20336.0,0,1,3,83.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1908.314646020666,0.13010461509023777,0.09383923318354967,12710.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +5154,2,62.0,3,0.0,2,400,2,78,75,4.0,1610.2528492759654,0.0,749.682879174938,113.23660429076627,0.0,25312.82,60,50,1,1653,201705154,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1940.2174158600349,0.0,557.0,0.0,0.0,24643.0,6,5,1,84.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2473.1723327416694,0.09770433846334266,0.10036003460380917,16428.666666666668,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +5155,2,44.0,2,0.0,9,221,2,55,55,4.0,0.0,0.0,53.83719060502248,0.0,157.46965284184685,29019.72,71,71,1,16530,201705155,,,210.0,585.0,2.0,1.0,6.0,2.0,4.0,2.3,2525.4943834661817,0.0,40.0,89.0,0.0,38260.0,1,1,3,100.0,1,2.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,211.30684344686932,0.007281491463283219,0.005522918020043631,16634.782608695652,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +5156,2,85.0,3,0.0,99,111,2,77,78,7.0,0.0,0.0,623.5396083660969,0.0,1161.95269879551,35507.94,70,70,1,16531,201705156,,,230.0,,0.0,1.0,5.0,0.0,2.0,1.5,2719.768033152916,1120.0,0.0,0.0,0.0,38893.0,5,5,1,93.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1785.492307161607,0.0502843112600057,0.04590780621606991,25928.666666666668,7,4,7,7_1,7_2,7_0_0 +5157,2,35.0,1,0.0,99,111,2,45,62,7.0,0.0,0.0,80.75578590753372,0.0,88.46609710216114,43033.42,31,41,1,16532,201705157,,,50.0,,2.0,0.0,5.0,4.0,6.0,2.9,625.9916836303502,0.0,60.0,50.0,0.0,69174.0,1,1,3,150.0,5,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,169.22188300969486,0.003932336379718249,0.0024463220720168685,23853.103448275862,6,3,6,6_1,6_2,6_0_0 +5158,2,61.0,2,0.0,4,111,1,0,74,4.0,0.0,0.0,672.964882562781,0.0,0.0,20548.53672205293,0,50,8,16533,201705158,,,,680.0,0.0,2.0,2.0,0.0,1.0,1.0,3129.2985581098164,0.0,500.0,0.0,0.0,19463.0,0,5,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,672.964882562781,0.032750014838796145,0.03457662655103432,19463.0,5,3,5,5_0,5_4,5_0_1 +5159,2,54.0,2,0.0,9,111,4,56,75,7.0,0.0,0.0,2471.127048770532,120.31389205893916,0.0,32179.60175060325,60,60,1,16534,201705159,,,,,1.0,3.0,4.0,0.0,2.0,1.5,3464.728761440415,0.0,1836.0,0.0,0.0,40080.0,5,5,3,90.0,6,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2591.440940829471,0.08053054729867472,0.0646567101005357,26720.0,7,4,7,7_1,7_2,7_0_0 +5160,2,52.0,3,0.0,9,111,2,56,64,4.0,0.0,0.0,180.3545885268253,106.15931652259337,0.0,31085.412224800773,71,71,1,16537,201705160,,,287.0,,2.0,3.0,4.0,0.0,2.0,1.5,1897.4480226930186,0.0,134.0,0.0,0.0,27055.0,1,1,2,90.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,286.51390504941867,0.009216989080840633,0.010590053781164985,18036.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +5161,2,37.0,2,0.0,4,111,1,42,54,10.0,0.0,0.0,484.5347154452023,0.0,1719.7809276660128,40570.479999999996,30,12,2,16538,201705161,972.0,972.0,,,2.0,0.0,3.0,1.0,3.0,1.8,3292.429803565126,0.0,360.0,972.0,0.0,97195.0,1,1,2,68.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2204.315643111215,0.05433299391851453,0.02267931110768265,53997.22222222222,10,5,10,10_0,10_4,10_0_1 +5162,1,42.0,4,155.0,4,111,1,85,68,1.0,0.0,0.0,807.5578590753372,0.0,796.1948739194503,15930.327597354557,71,71,2,1654,201705162,,,600.0,97.0,1.0,0.0,3.0,3.0,5.0,2.4,3639.022585709135,0.0,600.0,450.0,0.0,22960.0,6,1,3,70.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1603.7527329947875,0.10067292861328929,0.0698498577088322,9566.666666666668,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5163,1,32.0,3,172.0,9,111,1,0,54,5.0,0.0,0.0,403.7789295376686,0.0,0.0,15097.720000000001,0,31,2,16540,201705163,,,,,2.0,0.0,2.0,0.0,2.0,1.5,4950.684487875325,0.0,300.0,0.0,0.0,29854.0,0,1,3,50.0,8,6.0,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,403.7789295376686,0.026744364681400144,0.013525119901442641,19902.666666666668,5,3,5,5_0,5_2,5_0_0 +5164,1,57.0,3,266.0,99,111,1,52,62,2.0,0.0,0.0,799.4822804845838,0.0,244.16642800196476,48145.01588583718,41,43,2,16541,201705164,,,,518.0,2.0,0.0,4.0,4.0,6.0,3.3,1593.2956158211796,0.0,594.0,138.0,0.0,35108.0,4,1,3,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1043.6487084865487,0.021677191071268476,0.029726806097942027,10638.78787878788,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5165,2,50.0,3,0.0,7,111,2,0,46,4.0,0.0,0.0,336.82273487632915,0.0,627.6619489029317,14934.619999999999,0,44,2,16542,201705165,,,280.0,343.0,1.0,0.0,3.0,1.0,2.0,1.3,901.7659545952417,605.0,0.0,0.0,0.0,22930.0,0,1,3,64.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,964.4846837792609,0.06458046363277144,0.042062131870007013,17638.46153846154,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +5166,2,58.0,3,0.0,1,111,2,0,54,7.0,0.0,0.0,579.0010649113758,0.0,1078.9560774529734,20627.100000000002,0,42,1,16543,201705166,,,140.0,,3.0,0.0,4.0,2.0,3.0,2.0,1974.2422292912202,1040.0,0.0,0.0,0.0,47770.0,0,1,1,85.0,6,4.0,2,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1657.9571423643492,0.08037761693909222,0.03470707855064579,23885.0,6,3,6,6_1,6_2,6_1_0 +5167,1,87.0,4,270.0,1,111,2,0,75,2.0,0.0,0.0,363.4010365839017,0.0,3025.540520893911,8006.480315994116,0,44,2,16545,201705167,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3147.2414805416092,0.0,270.0,1710.0,0.0,12671.0,0,5,3,60.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,3388.9415574778127,0.42327482535714306,0.26745651941265985,12671.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +5168,2,33.0,3,0.0,5,111,1,0,37,5.0,0.0,0.0,238.22956842722448,0.0,0.0,20476.990875301635,0,43,2,16546,201705168,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,3001.3848072023784,0.0,177.0,0.0,0.0,19088.0,0,1,3,52.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,238.22956842722448,0.011634012530355013,0.012480593484242691,19088.0,5,3,5,5_0,5_3,5_0_0 +5169,1,32.0,3,353.0,1,112,2,69,85,1.0,0.0,0.0,272.7985786601674,0.0,508.35430572303557,35222.33799332442,50,60,2,16547,201705169,,,,,1.0,0.0,2.0,1.0,3.0,1.8,988.2223790725295,490.0,0.0,0.0,0.0,13994.0,4,7,3,60.0,9,1.0,4,9,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,781.152884383203,0.02217776924777828,0.05582055769495519,7774.444444444444,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +5170,2,30.0,2,0.0,1,111,2,54,52,9.0,0.0,0.0,927.3456081715121,0.0,1907.3290535225942,24797.839999999997,41,42,1,16548,201705170,,,480.0,,2.0,0.0,4.0,0.0,2.0,1.5,1977.9601965042352,0.0,689.0,1078.0,0.0,46903.0,1,1,2,90.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2834.6746616941064,0.11431135379912552,0.060436958439632996,31268.666666666668,8,4,8,8_1,8_3,8_1_0 +5171,2,56.0,3,0.0,6,111,2,52,53,9.0,0.0,377.5159589212557,726.8020731678034,0.0,1981.6405750884096,36865.54,50,50,1,1655,201705171,,,425.0,,2.0,3.0,4.0,0.0,2.0,1.5,1332.579037285904,0.0,540.0,1120.0,0.0,55027.0,1,1,1,88.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3085.958607177469,0.08370848785010253,0.05608080773397548,36684.666666666664,9,5,9,9_1,9_3,9_0_0 +5172,2,85.0,1,0.0,7,111,1,0,75,10.0,0.0,0.0,827.7794522260891,0.0,860.3430041558803,20284.93774272367,0,70,8,16551,201705172,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4512.335884887072,829.2800263327805,272.0,0.0,0.0,46430.0,0,5,1,68.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1688.1224563819694,0.0832204898921866,0.03635844187770772,46430.0,10,5,10,10_0,10_2,10_0_0 +5173,2,59.0,4,0.0,6,211,2,78,78,2.0,0.0,0.0,1049.8252167979383,0.0,1790.5538053477417,31420.66,50,50,1,16552,201705173,,,477.0,,0.0,2.0,5.0,0.0,2.0,1.5,736.9603355103272,0.0,780.0,1012.0,0.0,18871.0,6,4,1,114.0,4,3.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2840.37902214568,0.09039845191494005,0.15051555413839648,12580.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5174,2,57.0,2,0.0,6,112,4,35,74,9.0,0.0,0.0,2594.9525871620835,123.8525359430256,0.0,43840.233444105856,30,30,1,16554,201705174,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2298.504840096311,0.0,1928.0,0.0,0.0,51900.0,1,5,1,120.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2718.805123105109,0.062016209986004114,0.05238545516580172,34600.0,9,5,9,9_1,9_2,9_0_0 +5175,2,87.0,3,0.0,3,111,2,78,78,5.0,0.0,0.0,391.66556165153855,0.0,2084.2612477269167,19977.46,70,71,1,16555,201705175,,,406.0,,0.0,2.0,4.0,0.0,2.0,1.5,2301.3578041192413,0.0,291.0,1178.0,0.0,29871.0,5,5,1,80.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2475.9268093784553,0.12393601635935977,0.08288730907497088,19914.0,5,3,5,5_1,5_3,5_0_1 +5176,2,82.0,3,0.0,1,111,4,0,75,5.0,0.0,0.0,584.1335180644938,0.0,0.0,23388.3,0,31,2,16557,201705176,,,407.0,,0.0,2.0,4.0,0.0,1.0,1.0,4230.342247362673,0.0,434.0,0.0,0.0,19598.0,0,5,5,105.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,584.1335180644938,0.024975458586750376,0.02980577191879242,19598.0,5,3,5,5_0,5_3,5_1_0 +5177,2,60.0,2,0.0,9,112,6,0,37,9.0,0.0,0.0,328.4068626906371,0.0,668.8036940923382,26780.899999999994,0,31,2,16558,201705177,,,,,1.0,1.0,3.0,0.0,1.0,1.0,1542.9250644418455,0.0,244.0,378.0,0.0,39787.0,0,1,1,66.0,9,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,997.2105567829753,0.03723588664992497,0.025063728272626117,39787.0,9,5,9,9_0,9_1,9_0_0 +5178,1,54.0,1,9999.0,99,111,1,63,78,1.0,0.0,0.0,1018.8688322000504,0.0,594.492172526523,8017.44,50,71,2,16559,201705178,,,,,1.0,3.0,3.0,0.0,2.0,1.5,2129.9958141567045,0.0,757.0,336.0,0.0,13353.0,4,7,3,54.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1613.3610047265734,0.20123144104933413,0.12082386016075589,8902.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5179,1,25.0,1,55.0,1,111,2,46,54,7.0,0.0,0.0,532.9881869897225,0.0,1295.1436615756393,24860.260000000002,30,30,2,1656,201705179,,,,420.0,2.0,0.0,3.0,0.0,2.0,1.5,3684.2589245383106,0.0,396.0,732.0,0.0,35467.0,1,1,3,52.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1828.131848565362,0.07353631251504858,0.05154458647659407,23644.666666666668,6,3,6,6_0,6_3,6_1_0 +5180,2,58.0,1,0.0,1,111,2,43,31,10.0,0.0,0.0,1550.5110894246473,0.0,4609.083659022595,104738.4762346651,20,10,2,16560,201705180,,,370.0,,2.0,1.0,7.0,1.0,3.0,2.0,2618.8417705654583,0.0,1152.0,2605.0,0.0,136569.0,1,1,1,220.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,6159.594748447243,0.058809283559240984,0.04510243721816256,68284.5,10,5,10,10_0,10_3,10_1_0 +5181,1,53.0,4,479.0,99,111,1,85,53,1.0,0.0,0.0,340.7198574286173,0.0,634.9241532704036,43717.70000000001,41,30,2,16562,201705181,,,800.0,146.0,1.0,2.0,6.0,6.0,8.0,3.9,2451.521093975057,612.0,0.0,0.0,0.0,38388.0,6,1,3,122.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,975.6440106990209,0.022316910786684126,0.025415338405205296,9843.076923076924,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5182,2,55.0,2,0.0,99,111,2,0,34,10.0,0.0,0.0,807.5578590753372,0.0,2123.1863304518674,98704.15999999999,0,10,1,16564,201705182,,,250.0,,1.0,0.0,3.0,1.0,2.0,1.3,737.2978340261153,0.0,600.0,1200.0,0.0,106888.0,0,1,2,66.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2930.7441895272045,0.029692205369329976,0.027418832698967187,82221.53846153845,10,5,10,10_1,10_2,10_0_0 +5183,2,74.0,3,0.0,2,111,2,77,74,8.0,190.37472109666587,0.0,484.5347154452023,0.0,1769.3219420432229,42948.99999999999,41,31,2,16565,201705183,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1930.879998073692,0.0,360.0,1000.0,0.0,40670.0,5,5,1,74.0,9,7.0,3,9,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2444.231378585091,0.056910088211252687,0.06009912413536,27113.333333333332,7,4,7,7_0,7_3,7_0_1 +5184,1,51.0,4,221.0,5,221,1,0,65,3.0,0.0,0.0,382.24405329565957,212.31863304518674,0.0,8618.284177580943,0,71,2,16566,201705184,,,,133.0,1.0,4.0,4.0,0.0,1.0,1.0,877.4681841584319,0.0,284.0,0.0,0.0,15823.0,0,1,3,90.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,594.5626863408463,0.06898852185537162,0.03757585074517135,15823.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +5185,2,63.0,3,0.0,1,112,6,77,78,3.0,1269.1648073111057,0.0,888.3136449828709,350.32574452455816,0.0,32862.11169350261,71,50,1,16568,201705185,,,174.0,,0.0,2.0,4.0,0.0,2.0,1.5,1990.7970784614731,0.0,660.0,0.0,0.0,24084.0,5,5,1,70.0,8,0.0,3,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2507.804196818535,0.07631293509705799,0.10412739564933295,16056.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5186,2,86.0,3,0.0,6,111,4,0,74,8.0,0.0,0.0,2274.6213030622,0.0,0.0,30673.38,0,31,8,16569,201705186,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2530.4732568278196,0.0,1690.0,0.0,0.0,30080.0,0,5,1,72.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2274.6213030622,0.07415620003606384,0.07561905927733377,30080.0,8,4,8,8_0,8_3,8_0_0 +5187,1,59.0,3,379.0,1,111,2,85,78,1.0,0.0,0.0,968.7133201401864,0.0,1805.1765142001673,9828.26,50,71,1,16570,201705187,,,648.0,,0.0,0.0,4.0,1.0,3.0,2.0,2309.275367659439,1740.0,0.0,0.0,0.0,14668.0,6,7,3,80.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2773.8898343403534,0.2822361063240445,0.18911166037226299,7334.0,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +5188,1,60.0,4,272.0,2,111,1,0,78,1.0,0.0,0.0,134.5929765125562,0.0,1079.286384646366,10298.840000000002,0,60,2,16571,201705188,500.0,500.0,170.0,45.0,0.0,4.0,3.0,1.0,2.0,1.5,2986.7497255480807,0.0,100.0,610.0,0.0,12966.0,0,7,3,65.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1213.8793611589222,0.11786563934956966,0.09362018827386412,8644.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5189,2,77.0,2,0.0,4,111,2,77,74,7.0,0.0,0.0,915.2322402853821,123.8525359430256,0.0,25573.960315994118,60,50,1,16572,201705189,,,307.0,,0.0,2.0,4.0,0.0,2.0,1.5,1943.1554370387344,0.0,680.0,0.0,0.0,40328.0,5,5,1,75.0,6,5.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1039.0847762284077,0.040630577485433785,0.0257658395216328,26885.333333333332,7,4,7,7_1,7_2,7_0_1 +5190,1,49.0,4,177.0,99,221,2,0,68,2.0,0.0,0.0,1507.4413369406293,0.0,0.0,17705.747849749772,0,71,1,16575,201705190,,,,,1.0,0.0,4.0,2.0,3.0,1.8,673.3030888127446,0.0,1120.0,0.0,0.0,18987.0,0,1,3,86.0,1,2.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1507.4413369406293,0.08513852957427795,0.07939333949231733,10548.333333333334,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +5191,2,81.0,3,0.0,5,112,2,0,77,4.0,0.0,0.0,2220.7841124571773,176.9321942043223,0.0,11178.107849749777,0,70,1,16576,201705191,,,240.0,,0.0,0.0,5.0,0.0,1.0,1.0,2931.5871451391085,0.0,1650.0,0.0,0.0,16343.0,0,5,1,93.0,8,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2397.7163066614994,0.21450108899380252,0.14671212792397353,16343.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5192,2,32.0,4,0.0,9,120,2,0,85,4.0,0.0,0.0,2018.894647688343,67.23423379764247,0.0,13120.68,0,31,1,16577,201705192,,,220.0,,0.0,0.0,2.0,1.0,2.0,1.3,4503.3786234986155,0.0,1500.0,0.0,0.0,23570.0,0,4,2,77.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2086.1288814859854,0.15899548510336242,0.08850780150555729,18130.76923076923,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5193,1,47.0,3,102.0,5,111,1,0,56,5.0,0.0,0.0,562.5986418224849,185.7788039145384,0.0,33600.17999999999,0,43,8,16578,201705193,,,200.0,219.0,2.0,0.0,4.0,3.0,4.0,2.3,623.3807717779354,0.0,418.0,0.0,0.0,41998.0,0,1,3,82.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,748.3774457370232,0.022273018946238482,0.01781935915369835,18260.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +5194,2,42.0,4,0.0,99,112,1,0,52,3.0,0.0,0.0,122.47960862642614,0.0,0.0,6537.74,0,71,2,16581,201705194,,,,183.0,1.0,0.0,2.0,0.0,1.0,1.0,2301.736367093443,0.0,91.0,0.0,0.0,14674.0,0,1,3,69.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,122.47960862642614,0.01873424281577826,0.008346709051821326,14674.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +5195,2,68.0,3,0.0,8,112,2,0,77,5.0,0.0,0.0,1211.3367886130059,0.0,0.0,20052.981750603252,0,70,2,16582,201705195,,,330.0,,1.0,0.0,3.0,1.0,2.0,1.5,3697.804318520147,0.0,900.0,0.0,0.0,29579.0,0,5,3,72.0,9,1.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1211.3367886130059,0.060406816486359455,0.04095259436130383,19719.333333333332,5,3,5,5_0,5_1,5_0_0 +5196,2,58.0,2,0.0,7,111,6,52,37,9.0,0.0,333.10231669522557,2245.010848229437,0.0,0.0,33736.077686990626,50,41,1,16584,201705196,,,405.0,,2.0,2.0,5.0,0.0,2.0,1.5,2272.938411578205,0.0,1668.0,0.0,0.0,60266.0,1,1,2,93.0,6,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2578.1131649246627,0.07642006248754993,0.042778899627064396,40177.333333333336,9,5,9,9_1,9_2,9_0_0 +5197,2,39.0,3,0.0,9,112,4,52,53,5.0,0.0,0.0,2261.162005410944,205.24134527701386,0.0,50833.06175060326,50,50,1,16585,201705197,,,290.0,,2.0,0.0,5.0,2.0,4.0,2.1,2052.249075593559,0.0,1680.0,0.0,0.0,42771.0,1,1,2,120.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2466.4033506879578,0.04851966939919152,0.057665318806854125,20367.142857142855,5,3,5,5_1,5_0,5_0_0 +5198,1,50.0,5,128.0,1,111,2,0,43,4.0,0.0,0.0,417.2382271889242,0.0,1496.8463629685666,21811.520000000004,0,20,1,16588,201705198,,,,572.0,1.0,0.0,3.0,1.0,2.0,1.3,774.7776600908666,0.0,310.0,846.0,0.0,21538.0,0,1,3,65.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1914.0845901574908,0.08775567178066868,0.08887011747411509,16567.69230769231,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +5199,2,64.0,3,0.0,5,400,2,56,67,5.0,0.0,1804.304215432472,189.77609688270422,212.31863304518674,0.0,27744.9,50,70,1,16589,201705199,,,177.0,,2.0,3.0,6.0,0.0,2.0,1.5,1345.3181382317648,0.0,141.0,0.0,0.0,29140.0,1,5,1,130.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2206.3989453603626,0.07952448721604195,0.07571719098697195,19426.666666666668,5,3,5,5_1,5_1,5_0_0 +5200,2,89.0,2,0.0,2,300,2,0,78,5.0,1983.0700114236026,0.0,942.1508355878933,219.39592081335965,0.0,20118.58,0,70,1,1659,201705200,,,365.0,,0.0,1.0,4.0,0.0,1.0,1.0,2517.5771957029588,0.0,700.0,0.0,0.0,19907.0,0,5,1,90.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3144.6167678248557,0.15630411131525462,0.1579653773961348,19907.0,5,3,5,5_1,5_0,5_0_1 +5201,2,48.0,2,0.0,1,112,5,0,63,9.0,0.0,666.2046333904511,869.470628271113,0.0,0.0,25071.08,0,50,1,16590,201705201,,,270.0,,1.0,2.0,6.0,0.0,2.0,1.5,4500.510927191081,0.0,646.0,0.0,0.0,52975.0,0,1,1,90.0,9,0.0,5,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1535.675261661564,0.061252856345301594,0.028988678842124853,35316.666666666664,9,5,9,9_1,9_0,9_1_0 +5202,2,71.0,3,0.0,5,111,2,77,72,2.0,951.8736054833294,0.0,1860.8676294621278,106.15931652259337,708.7645483151199,59623.891415099766,44,70,1,16591,201705202,,,400.0,,0.0,2.0,6.0,0.0,2.0,1.5,3429.280933167285,683.1743623779273,1100.0,0.0,0.0,30620.0,5,5,1,120.0,6,4.0,3,5,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3627.6650997831703,0.060842474613531566,0.11847371325222633,20413.333333333332,5,3,5,5_1,5_2,5_0_0 +5203,2,74.0,1,0.0,1,112,2,86,74,10.0,2443.1422540738786,0.0,4236.198745357102,123.8525359430256,1398.0573817533054,71793.64383192596,30,12,1,16592,201705203,,,274.0,,0.0,6.0,8.0,0.0,2.0,1.5,1893.9278258902818,1347.5800427907684,2590.0,0.0,0.0,100878.0,6,5,1,260.0,8,3.0,3,5,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,8201.250917127312,0.11423366302909803,0.08129870652795765,67252.0,10,5,10,10_1,10_1,10_1_0 +5204,2,36.0,3,0.0,9,300,6,52,54,3.0,0.0,69.396315978172,1712.0226612397148,49.54101437721024,0.0,41102.6,50,31,1,16593,201705204,,,346.0,,2.0,0.0,5.0,3.0,5.0,2.6,1790.1474662371006,0.0,1272.0,0.0,0.0,38781.0,1,1,2,141.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1830.959991595097,0.04454608690435878,0.04721281018011648,14915.76923076923,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5205,1,33.0,3,550.0,1,111,2,0,85,2.0,0.0,0.0,753.7206684703146,0.0,866.9677516011792,29650.38,0,60,1,16595,201705205,,,1140.0,,0.0,0.0,6.0,4.0,5.0,2.4,637.2346274105024,0.0,560.0,490.0,0.0,25617.0,0,6,3,100.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1620.688420071494,0.054659954444816354,0.06326612874542273,10673.75,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +5206,1,45.0,2,410.0,99,111,4,52,56,3.0,0.0,527.4120014341072,1103.6624074029608,276.0142229587428,0.0,30009.7,30,71,1,16597,201705206,,,630.0,,2.0,1.0,5.0,2.0,4.0,2.1,3634.5402076598025,0.0,820.0,0.0,0.0,28509.0,4,1,3,95.0,6,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1907.0886317958107,0.06354907352608692,0.06689426608424745,13575.714285714284,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +5207,2,36.0,3,0.0,99,112,2,65,38,10.0,0.0,0.0,286.7168734897678,0.0,534.2907498925782,66847.18417758094,12,30,1,16598,201705207,,,487.0,,2.0,0.0,4.0,2.0,4.0,2.1,1265.7216640395768,515.0,0.0,0.0,0.0,96886.0,1,1,3,131.0,8,1.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,821.0076233823461,0.01228185799421741,0.008473955198711332,46136.19047619047,10,5,10,10_1,10_1,10_0_0 +5208,1,41.0,5,256.0,2,211,1,0,48,1.0,0.0,0.0,340.5202305767672,0.0,369.78828588703357,10955.725846751302,0,50,2,16599,201705208,,,,,1.0,3.0,3.0,0.0,1.0,1.0,3365.1515549748874,0.0,253.0,209.0,0.0,9072.0,0,4,3,55.0,3,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,710.3085164638007,0.06483445518805386,0.07829679414283518,9072.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5209,1,78.0,4,306.0,5,112,2,0,77,1.0,0.0,0.0,941.4334622741695,0.0,1754.3410836278636,20256.520315994112,0,70,1,166,201705209,,,430.0,78.0,0.0,3.0,3.0,1.0,2.0,1.5,2723.046476433052,1691.0,0.0,0.0,0.0,15195.0,0,5,3,75.0,8,2.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2695.774545902033,0.13308181779737893,0.17741194773952174,10130.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +5210,2,56.0,3,0.0,7,300,4,56,78,5.0,0.0,0.0,1749.7086946632305,47.77169243516702,0.0,60108.14835195664,71,50,1,16600,201705210,,,,,3.0,1.0,5.0,1.0,5.0,3.0,2542.268661362404,0.0,1300.0,0.0,0.0,56802.0,1,5,1,170.0,0,1.0,5,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1797.4803870983976,0.029904105123542475,0.03164466721415439,18934.0,5,3,5,5_1,5_1,5_0_0 +5211,1,44.0,3,254.0,99,111,1,0,55,3.0,0.0,0.0,363.4010365839017,169.8549064361494,0.0,15376.461750603257,0,50,2,16602,201705211,,,208.0,164.0,1.0,0.0,4.0,2.0,3.0,1.8,587.0368326712191,0.0,270.0,0.0,0.0,25812.0,0,1,3,73.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,533.2559430200511,0.03468001622669338,0.020659226058424417,14340.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +5212,2,61.0,2,0.0,1,300,2,77,37,10.0,0.0,0.0,2955.661764215734,203.47202333497063,0.0,54440.48000000001,41,20,1,16603,201705212,,,776.0,,1.0,3.0,6.0,1.0,3.0,2.0,2365.8685577618885,0.0,2196.0,0.0,0.0,90718.0,6,1,1,144.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3159.1337875507047,0.05802913177015897,0.03482367101954083,45359.0,10,5,10,10_1,10_0,10_1_0 +5213,2,47.0,2,0.0,1,111,2,0,37,10.0,4759.368027416646,0.0,1345.929765125562,0.0,0.0,105135.02000000002,0,31,1,16605,201705213,,,400.0,,1.0,0.0,6.0,2.0,3.0,1.8,2055.6722726404964,0.0,1000.0,0.0,0.0,83560.0,0,1,2,180.0,7,5.0,2,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,6105.297792542208,0.05807101946185208,0.07306483715344912,46422.22222222222,10,5,10,10_1,10_2,10_1_0 +5214,2,66.0,2,0.0,6,112,2,78,23,10.0,0.0,971.5484236944079,3634.010365839017,0.0,2193.9592081335963,50247.14502166797,70,50,1,16607,201705214,,,680.0,,1.0,2.0,4.0,0.0,2.0,1.5,1576.5278372880105,0.0,2700.0,1240.0,0.0,105210.0,5,1,1,100.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6799.517997667021,0.13532147935439673,0.06462805814720103,70140.0,10,5,10,10_1,10_0,10_0_0 +5215,1,86.0,4,9999.0,2,120,2,0,86,3.0,3172.912018277764,0.0,740.261370819059,159.23897478389006,0.0,12341.271191295746,0,71,1,16609,201705215,,,,,0.0,0.0,6.0,0.0,1.0,1.0,1919.330744866761,0.0,550.0,0.0,0.0,15068.0,0,6,1,114.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,4072.4123638807137,0.3299832165387445,0.27026893840461336,15068.0,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +5216,2,45.0,3,0.0,1,111,6,0,52,4.0,0.0,0.0,2288.080600713455,53.079658261296686,0.0,18847.49672205293,0,50,1,1661,201705216,,,100.0,,1.0,0.0,5.0,0.0,1.0,1.0,1685.7449917787173,0.0,1700.0,0.0,0.0,18544.0,0,1,1,88.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2341.1602589747517,0.12421597910323155,0.12624893544945814,18544.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +5217,2,71.0,2,0.0,5,111,2,78,77,7.0,0.0,0.0,716.0346350467989,0.0,1618.9295769695489,53984.57087530162,50,70,1,16610,201705217,,,639.0,,0.0,3.0,5.0,0.0,2.0,1.5,1558.7932307684525,0.0,532.0,915.0,0.0,38911.0,5,5,1,104.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2334.964212016348,0.04325243628239366,0.06000781814952964,25940.666666666668,7,4,7,7_1,7_2,7_0_0 +5218,1,33.0,3,317.0,9,112,4,55,64,2.0,0.0,0.0,1884.3016711757866,212.31863304518674,0.0,27854.079999999998,50,60,1,16612,201705218,,,360.0,,2.0,0.0,4.0,3.0,5.0,2.4,2328.440611439469,0.0,1400.0,0.0,0.0,29587.0,4,1,3,110.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2096.6203042209736,0.07527156898454279,0.07086288924936539,12327.916666666668,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +5219,2,68.0,2,0.0,2,111,2,0,74,5.0,0.0,0.0,1370.4160395996553,0.0,2845.4137275388134,20897.009267090165,0,30,1,16614,201705219,,,93.0,,0.0,3.0,5.0,0.0,1.0,1.0,2273.3452074208085,1146.3872823235674,544.0,936.0,0.0,19794.0,0,5,1,120.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4215.829767138469,0.20174321182781904,0.21298523629071783,19794.0,5,3,5,5_1,5_3,5_0_1 +5220,1,43.0,2,427.0,9,112,4,0,85,1.0,0.0,0.0,1749.7086946632305,0.0,0.0,26365.28,0,50,1,16615,201705220,,,900.0,,0.0,1.0,5.0,4.0,5.0,2.6,658.5505143585605,0.0,1300.0,0.0,0.0,24405.0,0,6,2,89.0,8,0.0,2,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1749.7086946632305,0.06636412337222403,0.07169468119906701,9386.538461538461,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +5221,2,81.0,2,0.0,9,300,4,0,72,3.0,0.0,346.98157989085996,874.8543473316153,0.0,0.0,12889.039999999999,0,50,1,16617,201705221,,,240.0,,0.0,0.0,4.0,0.0,1.0,1.0,2240.1980302431075,0.0,650.0,0.0,0.0,15691.0,0,5,1,100.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1221.8359272224752,0.09479650363583908,0.07786858244996975,15691.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5222,2,31.0,4,0.0,4,111,1,0,85,1.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,20950.057558087905,0,50,2,16618,201705222,,,,306.0,0.0,0.0,4.0,3.0,4.0,1.9,886.142036687957,720.0,0.0,0.0,0.0,13220.0,0,6,3,80.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1147.8164831753188,0.0547882257598952,0.08682424229767918,6957.894736842106,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +5223,2,30.0,3,0.0,99,111,2,55,65,8.0,0.0,0.0,430.6975248401798,0.0,2406.277841178783,30198.16,43,71,1,16619,201705223,,,500.0,,2.0,0.0,4.0,1.0,3.0,1.8,2309.2936175146174,0.0,320.0,1360.0,0.0,52495.0,1,1,3,95.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2836.975366018963,0.09394530547619336,0.054042772950165976,29163.888888888887,8,4,8,8_1,8_3,8_0_0 +5224,1,31.0,2,370.0,5,111,1,0,63,3.0,0.0,0.0,233.82735313728637,0.0,435.7322620483162,16692.7858467513,0,71,2,1662,201705224,,,,,1.0,0.0,3.0,1.0,2.0,1.3,703.4783988502334,420.0,0.0,0.0,0.0,18670.0,0,1,3,75.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,669.5596151856025,0.04011071736812045,0.03586286101690426,14361.538461538461,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +5225,2,58.0,2,0.0,7,112,4,77,46,7.0,0.0,111.0341055650752,2018.894647688343,0.0,0.0,16077.64,50,60,1,16621,201705225,,,,,1.0,1.0,4.0,1.0,3.0,2.0,2449.6176495820837,0.0,1500.0,0.0,0.0,49876.0,5,1,1,90.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2129.928753253418,0.13247769904372894,0.04270448218087694,24938.0,7,4,7,7_1,7_0,7_0_0 +5226,2,64.0,3,0.0,5,120,2,0,75,5.0,0.0,0.0,2433.441015347016,79.61948739194503,0.0,31220.760000000002,0,31,1,16623,201705226,,,358.0,,0.0,2.0,4.0,0.0,1.0,1.0,1775.3959635477,0.0,1808.0,0.0,0.0,27153.0,0,5,1,96.0,0,2.0,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2513.060502738961,0.08049325201369092,0.09255185440794612,27153.0,7,4,7,7_1,7_1,7_0_0 +5227,2,55.0,3,0.0,4,111,1,52,45,3.0,0.0,0.0,521.1009584202382,0.0,971.0604697076762,38596.68801587889,33,41,2,16624,201705227,,,,,2.0,0.0,3.0,2.0,4.0,2.5,3013.566164177408,936.0,0.0,0.0,0.0,34640.0,1,1,1,57.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1492.1614281279144,0.03866034897901164,0.0430762536988428,13856.0,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +5228,2,48.0,3,0.0,7,112,2,43,65,6.0,1461.1259844169106,0.0,993.2961666626647,0.0,0.0,51228.33840905728,20,44,1,16625,201705228,,,400.0,,2.0,0.0,4.0,3.0,5.0,2.8,2198.560226333559,0.0,738.0,0.0,0.0,59793.0,1,1,2,110.0,9,3.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2454.422151079575,0.04791141441053704,0.04104865370661407,21354.64285714286,6,3,6,6_1,6_1,6_0_0 +5229,2,44.0,5,0.0,8,111,4,0,55,1.0,0.0,0.0,3499.417389326461,81.38880933398825,0.0,34822.3,0,42,1,16626,201705229,,,620.0,,1.0,0.0,4.0,2.0,3.0,2.0,1741.9587433081526,0.0,2600.0,0.0,0.0,20055.0,0,1,2,114.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3580.8061986604494,0.10283083537447121,0.17854929935978306,10027.5,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +5230,1,30.0,4,244.0,4,111,1,0,67,2.0,0.0,0.0,356.6713877582739,0.0,0.0,15508.411191295747,0,71,2,16627,201705230,,,,,1.0,0.0,4.0,2.0,3.0,1.6,683.9633735089636,0.0,265.0,0.0,0.0,20669.0,0,1,3,80.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,356.6713877582739,0.022998576924402117,0.017256344659067877,12918.125,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +5231,2,44.0,3,0.0,3,300,5,0,56,4.0,396.6140022847205,0.0,1292.0925745205395,123.8525359430256,0.0,33638.82000000001,0,41,1,16628,201705231,,,,,1.0,1.0,7.0,2.0,3.0,1.8,867.4890502589247,0.0,960.0,0.0,0.0,32237.0,0,1,1,120.0,0,0.0,2,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1812.5591127482858,0.053882957628962176,0.05622604810460917,17909.444444444445,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +5232,1,74.0,4,259.0,4,111,2,0,75,4.0,0.0,0.0,679.2127876844985,0.0,1265.6984754736804,35550.50999999999,0,60,1,16629,201705232,,,469.0,230.0,1.0,0.0,5.0,2.0,4.0,2.3,667.2437551113518,1220.0,0.0,0.0,0.0,38538.0,0,5,4,110.0,9,7.0,5,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1944.9112631581788,0.05470839273918094,0.05046736372303126,16755.652173913044,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +5233,2,41.0,5,0.0,5,111,4,54,21,9.0,0.0,0.0,3230.231436301349,123.8525359430256,0.0,47696.67672205292,43,43,1,1663,201705233,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2264.4239750024526,0.0,2400.0,0.0,0.0,65042.0,1,1,2,160.0,6,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3354.0839722443743,0.07032112513393597,0.05156797103785822,30972.38095238095,8,4,8,8_1,8_2,8_0_0 +5234,2,60.0,3,0.0,7,112,4,75,75,9.0,0.0,0.0,4066.053820444323,0.0,0.0,57579.920000000006,50,42,1,16630,201705234,,,750.0,,1.0,2.0,6.0,1.0,3.0,2.0,3854.431554501941,0.0,3021.0,0.0,0.0,74902.0,5,5,2,180.0,10,2.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4066.053820444323,0.07061582962331872,0.054284983317459116,37451.0,9,5,9,9_1,9_1,9_0_0 +5235,2,42.0,3,0.0,99,111,2,45,45,6.0,0.0,0.0,611.0521133670052,0.0,1339.3767101267197,33119.24216912759,31,42,2,16631,201705235,,,26.0,517.0,2.0,0.0,4.0,1.0,3.0,1.8,2162.4504190760467,0.0,454.0,757.0,0.0,38653.0,1,1,3,78.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1950.4288234937248,0.05889110667247801,0.05045995973129446,21473.888888888887,6,3,6,6_0,6_3,6_0_0 +5236,2,44.0,1,0.0,5,111,1,33,33,8.0,0.0,0.0,3405.2023057676715,106.15931652259337,0.0,71897.16,20,20,2,16633,201705236,1930.0,1930.0,,,2.0,0.0,5.0,3.0,5.0,2.8,2780.7594480169532,0.0,2530.0,0.0,0.0,80756.0,1,1,2,114.0,6,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,3511.3616222902647,0.04883866932004358,0.04348112366004092,28841.428571428572,8,4,8,8_0,8_2,8_0_0 +5237,2,69.0,2,0.0,1,111,2,77,74,10.0,0.0,0.0,1399.7669557305844,0.0,1910.8676974066807,42205.05543452477,50,30,1,16634,201705237,,,350.0,,0.0,2.0,5.0,0.0,2.0,1.5,1437.0972646070043,0.0,1040.0,1080.0,0.0,63442.0,5,5,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3310.634653137265,0.07844166105345486,0.05218364258909342,42294.666666666664,10,5,10,10_1,10_3,10_1_0 +5238,2,90.0,2,0.0,4,111,2,0,86,7.0,0.0,0.0,565.290501352736,42.46372660903735,0.0,18733.076658454032,0,71,1,16635,201705238,,,160.0,,0.0,3.0,3.0,0.0,1.0,1.0,13160.42532713696,0.0,420.0,0.0,0.0,24789.0,0,5,3,52.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,607.7542279617734,0.03244284102619633,0.0245170933866543,24789.0,7,4,7,7_1,7_3,7_0_1 +5239,2,77.0,3,0.0,1,111,2,0,77,3.0,0.0,0.0,751.5879207984204,0.0,1400.5679851553023,26623.082222222223,0,70,2,16636,201705239,,,,1210.0,0.0,2.0,2.0,0.0,1.0,1.0,4640.080953670883,1350.0,0.0,0.0,0.0,15480.0,0,5,3,55.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2152.1559059537226,0.08083796939774776,0.1390281592993361,15480.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +5240,2,52.0,3,0.0,9,111,4,0,67,6.0,0.0,0.0,1049.8252167979383,116.7752481748527,0.0,30848.99087530163,0,50,2,16638,201705240,,,393.0,809.0,1.0,1.0,4.0,2.0,3.0,1.8,720.2524503687755,0.0,780.0,0.0,0.0,40478.0,0,1,3,90.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1166.600464972791,0.037816487083433145,0.02882060538991035,22487.777777777777,6,3,6,6_0,6_3,6_0_0 +5241,2,57.0,1,0.0,7,111,5,54,33,8.0,0.0,555.170527825376,1345.929765125562,0.0,0.0,48310.280000000006,50,30,1,16639,201705241,,,,,2.0,2.0,7.0,0.0,2.0,1.5,1749.9642318082017,0.0,1000.0,0.0,0.0,48551.0,1,1,1,130.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1901.100292950938,0.03935187899865076,0.0391567690253741,32367.333333333332,9,5,9,9_1,9_3,9_0_0 +5242,2,66.0,2,0.0,6,112,2,77,78,6.0,0.0,0.0,452.2324010821888,1963.9473556679775,0.0,27596.22,70,70,1,1664,201705242,,,116.0,,0.0,6.0,4.0,0.0,2.0,1.5,1566.5645202956011,0.0,336.0,0.0,0.0,31289.0,5,5,1,78.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2416.1797567501662,0.08755473600189323,0.07722137993384788,20859.333333333332,5,3,5,5_1,5_0,5_0_0 +5243,1,28.0,3,177.0,2,111,1,42,84,4.0,0.0,0.0,399.7411402422919,0.0,1070.43977493615,35172.0458467513,20,20,2,16642,201705243,,,,126.0,1.0,0.0,3.0,0.0,2.0,1.5,991.5525960443227,0.0,297.0,605.0,0.0,26659.0,2,3,3,70.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1470.1809151784419,0.041799698589732065,0.05514763926548039,17772.666666666668,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +5244,0,57.0,3,0.0,4,111,4,0,46,6.0,0.0,0.0,471.07541779394666,0.0,0.0,17948.58,0,31,2,16643,201705244,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2035.6562220502235,0.0,350.0,0.0,0.0,21760.0,0,1,5,50.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,471.07541779394666,0.026245832137915457,0.021648686479501224,21760.0,6,3,6,6_0,6_2,6_0_1 +5245,0,38.0,4,0.0,1,111,2,0,55,1.0,0.0,0.0,1076.7438121004495,0.0,0.0,51455.26051346418,0,42,2,16645,201705245,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1489.2634210330955,0.0,800.0,0.0,0.0,6700.0,0,4,5,56.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1076.7438121004495,0.020925825685377698,0.16070803165678352,5153.846153846153,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +5246,2,72.0,3,0.0,6,400,5,78,78,4.0,0.0,69.396315978172,1018.8688322000504,0.0,0.0,19425.91434544466,71,70,1,16646,201705246,,,246.0,,0.0,2.0,5.0,0.0,2.0,1.5,1874.6164603584286,0.0,757.0,0.0,0.0,24767.0,6,5,1,96.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1088.2651481782225,0.05602130889830772,0.04394012791933712,16511.333333333332,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5247,2,34.0,2,0.0,1,111,4,0,46,7.0,0.0,0.0,1144.0403003567276,0.0,530.7965826129669,25948.379999999997,0,0,2,16647,201705247,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2995.70939161484,0.0,850.0,300.0,0.0,26810.0,0,1,2,52.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1674.8368829696944,0.06454494974135937,0.06247060361692258,26810.0,7,4,7,7_0,7_4,7_1_0 +5248,2,76.0,2,0.0,7,112,4,74,74,10.0,0.0,499.65347504283835,3364.824412813905,84.9274532180747,0.0,43461.48,20,41,1,16648,201705248,,,120.0,,0.0,3.0,5.0,0.0,2.0,1.5,2046.0138452459498,0.0,2500.0,0.0,0.0,60723.0,5,5,1,110.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3949.405341074818,0.09087139556855445,0.065039694038088,40482.0,9,5,9,9_1,9_0,9_0_0 +5249,2,49.0,2,0.0,4,400,2,52,62,4.0,2347.9548935255457,0.0,585.4794478296194,56.61830214538313,0.0,43254.14,50,50,1,16649,201705249,,,193.0,,2.0,0.0,6.0,2.0,4.0,2.5,1779.6733270475563,0.0,435.0,0.0,0.0,40866.0,1,1,2,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2990.052643500548,0.0691275481029226,0.07316724522832056,16346.4,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +5250,2,68.0,3,0.0,7,111,2,67,74,7.0,0.0,0.0,514.1451702779647,0.0,992.589609486248,24002.539999999997,71,70,2,16651,201705250,,,,543.0,1.0,2.0,2.0,0.0,2.0,1.5,2998.759744478049,0.0,382.0,561.0,0.0,39493.0,1,5,3,48.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1506.7347797642128,0.06277397224477964,0.03815194540207664,26328.666666666668,7,4,7,7_0,7_4,7_0_0 +5251,2,66.0,3,0.0,8,111,4,0,77,6.0,0.0,0.0,1076.7438121004495,0.0,0.0,14246.023667613084,0,50,1,16652,201705251,,,120.0,,0.0,2.0,4.0,0.0,1.0,1.0,1886.6387199211542,0.0,800.0,0.0,0.0,23853.0,0,5,1,100.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1076.7438121004495,0.07558205975386095,0.04514081298371062,23853.0,6,3,6,6_1,6_2,6_0_0 +5252,2,70.0,2,0.0,1,111,2,0,46,10.0,0.0,0.0,423.967876014552,0.0,1477.383821606091,34111.659999999996,0,41,2,16653,201705252,,,,1724.0,1.0,3.0,4.0,0.0,1.0,1.0,3280.4965548923233,0.0,315.0,835.0,0.0,52926.0,0,5,3,105.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1901.351697620643,0.05573905513893617,0.03592471937461065,52926.0,10,5,10,10_0,10_4,10_1_0 +5253,2,43.0,3,0.0,7,120,4,85,67,3.0,0.0,0.0,1601.6564204994188,0.0,0.0,25085.66,71,42,1,16654,201705253,,,195.0,,1.0,0.0,3.0,0.0,2.0,1.5,1915.1522151548843,0.0,1190.0,0.0,0.0,24240.0,7,1,2,66.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1601.6564204994188,0.06384748978099117,0.06607493483908493,16160.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5254,2,63.0,3,0.0,2,111,2,54,21,9.0,0.0,0.0,1765.8598518447372,0.0,2830.9151072691566,32166.30199316863,50,42,1,16655,201705254,,,600.0,,3.0,2.0,5.0,1.0,3.0,2.0,2635.378192474431,0.0,1312.0,1600.0,0.0,72300.0,1,1,2,145.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4596.774959113894,0.14290654114017026,0.06357918339023366,36150.0,9,5,9,9_1,9_3,9_0_1 +5255,2,70.0,2,0.0,9,111,4,42,22,10.0,0.0,693.9631597817199,3381.2533119865875,0.0,1342.3570990816663,50644.443840664855,30,12,1,16658,201705255,,,948.0,,2.0,2.0,6.0,1.0,3.0,1.8,2053.000387350336,1293.8908378369833,1977.0,0.0,0.0,80977.0,1,5,1,155.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5417.573570849973,0.10697271329298207,0.06690262137211768,44987.22222222222,10,5,10,10_1,10_4,10_0_0 +5256,0,63.0,3,0.0,4,111,1,0,56,1.0,0.0,0.0,0.0,0.0,0.0,16177.67665845403,0,50,2,16659,201705256,,,,,1.0,3.0,1.0,0.0,1.0,1.0,3373.5189204709363,0.0,0.0,0.0,0.0,9040.0,0,1,5,35.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,9040.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +5257,2,62.0,1,0.0,6,111,4,37,74,10.0,0.0,0.0,2489.9700654822896,0.0,0.0,32171.481767419056,20,71,1,1666,201705257,,,328.0,,1.0,2.0,6.0,0.0,2.0,1.5,5141.862957887636,0.0,1850.0,0.0,0.0,65001.0,4,5,1,147.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2489.9700654822896,0.07739681011534727,0.038306642443689934,43334.0,10,5,10,10_1,10_3,10_0_0 +5258,2,45.0,3,0.0,5,111,2,0,63,5.0,0.0,0.0,532.9881869897225,0.0,1486.2304313163072,22695.105846751303,0,60,1,16660,201705258,,,275.0,412.0,1.0,1.0,3.0,0.0,1.0,1.0,3241.606486916171,0.0,396.0,840.0,0.0,21320.0,0,1,3,65.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2019.2186183060298,0.08897154443521009,0.09471006652467306,21320.0,6,3,6,6_1,6_2,6_0_0 +5259,2,31.0,2,0.0,1,112,2,0,34,6.0,2155.993716419741,0.0,452.2324010821888,53.079658261296686,0.0,40273.38,0,20,2,16661,201705259,,,,530.0,1.0,0.0,4.0,1.0,2.0,1.3,497.58532237756936,0.0,336.0,0.0,0.0,28475.0,0,1,3,100.0,8,0.0,2,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2661.3057757632264,0.06608101370590763,0.09346113347719846,21903.846153846152,6,3,6,6_0,6_0,6_1_0 +5260,2,32.0,1,0.0,1,111,2,45,55,6.0,0.0,0.0,1345.929765125562,0.0,1592.3897478389006,31646.48,30,41,1,16663,201705260,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,3027.734140005127,0.0,1000.0,900.0,0.0,46780.0,1,1,2,90.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2938.319512964463,0.09284822555192435,0.06281144747679485,22276.190476190477,6,3,6,6_1,6_3,6_1_0 +5261,2,43.0,3,0.0,4,111,2,46,64,4.0,0.0,0.0,738.9154410539335,0.0,1557.0033089980361,39080.899999999994,20,71,1,16666,201705261,,,425.0,,2.0,0.0,5.0,2.0,4.0,2.1,3242.6831574222597,0.0,549.0,880.0,0.0,36270.0,4,1,2,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2295.9187500519697,0.05874784741528394,0.06330076509655279,17271.428571428572,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +5262,2,63.0,1,0.0,4,120,2,78,74,9.0,0.0,0.0,2288.080600713455,371.5576078290768,0.0,26437.02,50,60,1,16667,201705262,,,438.0,,0.0,2.0,4.0,0.0,2.0,1.5,1935.0619084851778,0.0,1700.0,0.0,0.0,48981.0,5,5,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2659.638208542532,0.10060279897441285,0.054299385650405915,32654.0,9,5,9,9_1,9_0,9_0_1 +5263,2,63.0,2,0.0,6,111,4,52,78,8.0,0.0,0.0,1897.7609688270425,53.079658261296686,0.0,31832.944054661435,50,50,1,16669,201705263,,,223.0,,1.0,2.0,5.0,0.0,2.0,1.5,2021.8323211887835,0.0,1410.0,0.0,0.0,43364.0,1,5,1,125.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1950.8406270883393,0.06128370105317574,0.044987561735272096,28909.333333333332,8,4,8,8_1,8_3,8_0_0 +5264,2,35.0,3,0.0,7,111,2,52,52,4.0,0.0,0.0,517.7605676611341,0.0,964.835723106986,27267.700315994116,50,41,1,1667,201705264,,,500.0,,2.0,0.0,4.0,1.0,3.0,1.8,1742.3122054272253,930.0,0.0,0.0,0.0,30677.0,1,1,2,98.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1482.59629076812,0.05437188591582436,0.04832924636594582,17042.777777777777,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +5265,2,56.0,3,0.0,1,111,4,52,52,9.0,0.0,0.0,764.7973397808985,0.0,336.663160449682,30489.07127334787,50,50,2,16670,201705265,,,297.0,,2.0,1.0,2.0,0.0,2.0,1.5,2342.983162657141,324.50782212951543,434.0,0.0,0.0,50229.0,1,1,1,40.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1101.4605002305805,0.03612640379746254,0.02192877620957177,33486.0,9,5,9,9_0,9_3,9_1_0 +5266,2,46.0,2,0.0,8,300,2,0,37,3.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,50350.84,0,12,1,16672,201705266,,,408.0,,1.0,0.0,9.0,3.0,4.0,2.1,172.9719392899623,1100.0,0.0,0.0,0.0,31014.0,0,1,1,200.0,0,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1753.6085159622926,0.03482779067761914,0.05654248132979598,14768.571428571428,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5267,2,60.0,2,0.0,6,111,4,52,64,7.0,0.0,166.55115834761278,2401.1387009840023,130.9298237111985,0.0,29475.140631988234,50,60,1,16673,201705267,,,576.0,,2.0,2.0,6.0,0.0,2.0,1.5,1985.8230889344613,0.0,1784.0,0.0,0.0,34880.0,1,1,1,100.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2698.6196830428134,0.09155578650960211,0.07736868357347515,23253.333333333332,6,3,6,6_1,6_2,6_0_0 +5268,2,61.0,1,0.0,1,112,2,74,74,7.0,0.0,0.0,5245.088294694315,0.0,0.0,54614.64,10,12,1,16674,201705268,,,161.0,,0.0,2.0,11.0,0.0,2.0,1.5,1801.0753065489907,0.0,3897.0,0.0,0.0,48210.0,6,5,1,300.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5245.088294694315,0.09603813729604946,0.10879668729919757,32140.0,9,5,9,9_1,9_0,9_1_0 +5269,2,65.0,3,0.0,4,111,1,0,74,9.0,0.0,0.0,278.6074613809913,0.0,0.0,14714.039999999999,0,50,2,16675,201705269,,,,,0.0,3.0,2.0,0.0,1.0,1.0,2332.3289010650888,0.0,207.0,0.0,0.0,32410.0,0,5,1,67.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,278.6074613809913,0.018934803859510463,0.0085963425294968,32410.0,9,5,9,9_0,9_3,9_0_1 +5270,2,61.0,3,0.0,6,300,5,23,75,5.0,0.0,499.65347504283835,1292.0925745205395,123.8525359430256,0.0,22099.48,50,50,1,16676,201705270,,,266.0,,1.0,4.0,4.0,0.0,2.0,1.5,1988.725821134212,0.0,960.0,0.0,0.0,29551.0,1,5,1,120.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1915.5985855064037,0.08668070857352317,0.06482347756442772,19700.666666666668,5,3,5,5_1,5_0,5_0_0 +5271,1,81.0,4,59.0,4,111,1,0,72,2.0,0.0,0.0,244.95921725285228,0.0,268.9369351905699,10188.080315994117,0,71,2,16677,201705271,,,,202.0,0.0,8.0,3.0,0.0,1.0,1.0,5114.352958230086,0.0,182.0,152.0,0.0,13218.0,0,5,3,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,513.8961524434221,0.050440920811810265,0.03887851054950992,13218.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +5272,0,68.0,3,0.0,99,112,2,0,77,3.0,2221.038412794435,0.0,655.4677956161487,106.15931652259337,0.0,10964.92,0,50,1,16678,201705272,,,,,0.0,3.0,2.0,0.0,1.0,1.0,1642.4900293756918,0.0,487.0,0.0,0.0,15645.0,0,5,5,53.0,6,1.0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2982.665524933177,0.27201890437259707,0.1906465659912545,15645.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5273,1,26.0,5,147.0,1,300,6,0,85,2.0,0.0,0.0,671.6189527976554,46.0023704931238,0.0,6088.960000000001,0,60,2,16679,201705273,,,,123.0,0.0,0.0,1.0,0.0,1.0,1.0,4499.257003902511,0.0,499.0,0.0,0.0,11234.0,0,8,3,23.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,717.6213232907792,0.11785614017677552,0.06387941279070493,11234.0,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +5274,2,47.0,4,0.0,99,111,1,0,54,5.0,0.0,0.0,633.9329193741397,0.0,0.0,48685.01872049566,0,50,2,16681,201705274,,,509.0,,2.0,0.0,4.0,3.0,4.0,2.5,925.9520626759279,0.0,471.0,0.0,0.0,48835.0,0,4,2,90.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,633.9329193741397,0.013021108670278964,0.012981118447305,19534.0,5,3,5,5_0,5_2,5_0_0 +5275,2,56.0,2,0.0,7,112,5,34,46,9.0,0.0,555.170527825376,2027.8958645899197,0.0,3778.940489299363,61420.29877690338,10,50,1,16682,201705275,,,600.0,,2.0,1.0,6.0,1.0,3.0,2.0,2037.6543966718764,3642.5005530798644,0.0,0.0,0.0,73350.0,1,1,1,100.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6362.006881714658,0.10358150332064228,0.08673492681274245,36675.0,9,5,9,9_1,9_1,9_0_0 +5276,2,47.0,4,0.0,1,112,2,46,52,3.0,3966.1400228472053,0.0,710.6509159862967,0.0,0.0,36559.68206659737,42,70,1,16683,201705276,,,438.0,,2.0,0.0,5.0,2.0,4.0,2.3,1525.284401743357,0.0,528.0,0.0,0.0,36330.0,4,1,2,80.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4676.790938833502,0.12792208997644527,0.1287308268327416,15795.652173913044,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5277,1,72.0,4,98.0,4,211,1,0,86,2.0,0.0,0.0,294.75861856249804,0.0,490.10217794597276,10087.359999999999,0,71,2,16684,201705277,,,190.0,150.0,0.0,1.0,2.0,0.0,1.0,1.0,1684.5293111500516,0.0,219.0,277.0,0.0,11498.0,0,6,3,38.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,784.8607965084708,0.07780636326139553,0.06826063632879377,11498.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +5278,2,55.0,1,0.0,1,111,1,0,33,10.0,0.0,0.0,646.0462872602698,0.0,0.0,76400.43999999999,0,20,2,16685,201705278,,,,550.0,1.0,3.0,2.0,0.0,1.0,1.0,3388.647382612008,0.0,480.0,0.0,0.0,62666.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,646.0462872602698,0.008456054536600442,0.010309358938822804,62666.0,10,5,10,10_0,10_4,10_1_0 +5279,2,63.0,2,0.0,1,111,2,0,75,7.0,0.0,0.0,642.0084979648931,0.0,0.0,23655.420000000002,0,33,2,16686,201705279,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3189.6139762636362,0.0,477.0,0.0,0.0,27160.0,0,5,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,642.0084979648931,0.027140016874141023,0.023638015388987226,27160.0,7,4,7,7_0,7_4,7_1_0 +5280,2,27.0,1,0.0,7,111,2,0,47,9.0,0.0,0.0,417.2382271889242,0.0,444.09980745284895,21703.776322376292,0,31,2,16687,201705280,,,300.0,633.0,1.0,0.0,5.0,0.0,2.0,1.5,4108.67261856172,0.0,310.0,251.0,0.0,57623.0,0,1,3,103.0,8,6.0,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,861.3380346417732,0.03968609065297755,0.0149478165774391,38415.333333333336,9,5,9,9_0,9_2,9_0_0 +5281,2,60.0,2,0.0,1,111,2,78,75,8.0,0.0,0.0,1047.602517454359,0.0,3631.0959560558936,35505.89602488642,50,60,1,16688,201705281,,,200.0,,0.0,0.0,6.0,0.0,2.0,1.5,2343.3424893626534,931.6014032426281,393.0,1506.0,0.0,47357.0,5,5,1,120.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4678.698473510252,0.13177243774473144,0.09879634422599093,31571.333333333332,8,4,8,8_1,8_2,8_1_0 +5282,2,37.0,5,0.0,5,211,1,67,62,2.0,0.0,0.0,403.7789295376686,102.62067263850693,0.0,22790.12,60,44,2,16689,201705282,,,,376.0,2.0,1.0,3.0,1.0,3.0,1.8,799.3007350029977,0.0,300.0,0.0,0.0,24621.0,4,1,3,60.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,506.39960217617556,0.02222013759366671,0.02056779181090027,13678.333333333332,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +5283,2,81.0,3,0.0,5,111,2,86,78,3.0,888.4153651177741,0.0,807.5578590753372,530.7965826129669,0.0,22553.705846751298,71,71,1,1669,201705283,,,450.0,,1.0,4.0,5.0,1.0,3.0,2.0,2473.809503425869,0.0,600.0,0.0,0.0,31014.0,5,5,1,95.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2226.769806806078,0.0987318812232726,0.07179885879944793,15507.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +5284,2,49.0,2,0.0,3,112,2,48,56,8.0,2538.3296146222115,0.0,942.1508355878933,0.0,0.0,27628.290875301627,50,71,1,16690,201705284,,,360.0,,2.0,2.0,8.0,0.0,2.0,1.5,2189.330472464647,0.0,700.0,0.0,0.0,42940.0,1,1,1,120.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3480.4804502101047,0.1259752355264758,0.08105450512832102,28626.666666666668,8,4,8,8_1,8_0,8_0_1 +5285,2,62.0,3,0.0,6,111,6,56,74,5.0,212.5851052246102,160.99945306935902,1792.7784471472485,0.0,0.0,34107.479999999996,50,44,1,16692,201705285,,,,,1.0,3.0,6.0,0.0,2.0,1.5,2782.859393411718,0.0,1332.0,0.0,0.0,30808.0,1,5,1,110.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2166.363005441218,0.06351577441198289,0.07031819674893593,20538.666666666668,5,3,5,5_1,5_3,5_0_0 +5286,2,66.0,3,0.0,1,111,2,42,75,4.0,0.0,0.0,660.8515146766509,0.0,2880.4561216463667,29817.219999999994,41,33,1,16693,201705286,,,274.0,,1.0,2.0,4.0,0.0,2.0,1.5,1816.7218133479523,0.0,491.0,1628.0,0.0,31342.0,4,5,1,80.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3541.3076363230175,0.11876719681858397,0.1129892041453327,20894.666666666668,5,3,5,5_1,5_2,5_1_0 +5287,2,70.0,3,0.0,4,112,5,0,77,4.0,0.0,1110.341055650752,1211.3367886130059,0.0,0.0,38491.54,0,70,1,16697,201705287,,,350.0,,1.0,0.0,5.0,0.0,2.0,1.5,2748.5364760164002,0.0,900.0,0.0,0.0,27444.0,0,5,1,110.0,10,2.0,5,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2321.677844263758,0.06031657460999892,0.08459691897186117,18296.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +5288,1,59.0,5,267.0,99,111,4,0,63,2.0,0.0,0.0,551.8312037014804,0.0,990.8202875442048,9156.951191295746,0,70,1,16698,201705288,,,335.0,,1.0,0.0,4.0,0.0,1.0,1.0,2755.682795490325,0.0,410.0,560.0,0.0,13104.0,0,1,3,70.0,5,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1542.651491245685,0.1684678075724671,0.11772370964939599,13104.0,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +5289,2,56.0,2,0.0,9,111,2,0,46,8.0,0.0,0.0,382.24405329565957,0.0,1654.3160158104133,20372.752693483446,0,60,2,167,201705289,,,310.0,476.0,1.0,0.0,2.0,0.0,1.0,1.0,2603.266593791012,0.0,284.0,935.0,0.0,31810.0,0,1,3,50.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2036.560069106073,0.09996489427555362,0.0640226365641645,31810.0,8,4,8,8_0,8_3,8_0_0 +5290,2,67.0,2,0.0,6,211,4,72,72,3.0,0.0,0.0,2691.859530251124,123.8525359430256,0.0,34672.32031599412,42,70,1,1670,201705290,,,488.0,,0.0,2.0,6.0,0.0,2.0,1.5,1132.1752206591134,0.0,2000.0,0.0,0.0,24560.0,5,5,1,141.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2815.7120661941494,0.08120921935805027,0.11464625676686276,16373.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5291,2,76.0,2,0.0,1,400,4,0,75,6.0,0.0,0.0,1736.249397011975,0.0,0.0,17108.956855924083,0,41,1,16700,201705291,,,140.0,,0.0,2.0,3.0,0.0,1.0,1.0,2180.277693556251,0.0,1290.0,0.0,0.0,23696.0,0,5,3,100.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1736.249397011975,0.1014818969755475,0.07327183478274708,23696.0,6,3,6,6_1,6_1,6_1_0 +5292,2,49.0,3,0.0,6,111,1,54,55,2.0,0.0,0.0,1009.4473238441715,0.0,0.0,23945.920000000002,31,41,2,16702,201705292,,,400.0,650.0,2.0,1.0,3.0,2.0,4.0,2.1,2388.4290677164577,0.0,750.0,0.0,0.0,26040.0,1,1,3,75.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1009.4473238441715,0.04215529509178062,0.03876525821214176,12400.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +5293,2,88.0,4,0.0,1,300,2,72,78,2.0,2379.684013708323,0.0,493.95622380108125,226.47320858153253,0.0,12450.0,71,70,1,16703,201705293,,,284.0,,0.0,2.0,4.0,0.0,2.0,1.5,1997.2505786571273,0.0,367.0,0.0,0.0,19406.0,5,5,1,80.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3100.113446090937,0.2490050960715612,0.159750254874314,12937.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +5294,2,35.0,4,0.0,8,111,2,55,68,5.0,79.32280045694411,0.0,807.5578590753372,0.0,973.1270681237726,34505.84,43,43,1,16704,201705294,,,,464.0,2.0,0.0,4.0,2.0,4.0,2.1,2410.604142724202,0.0,600.0,550.0,0.0,41073.0,1,1,3,77.0,6,4.0,4,8,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1860.007727656054,0.053904142824984236,0.04528541201412251,19558.571428571428,5,3,5,5_1,5_2,5_0_0 +5295,2,63.0,2,0.0,8,112,2,74,74,10.0,0.0,0.0,1622.873177131404,0.0,3024.189390168671,48759.91999999999,12,30,1,16706,201705295,,,1142.0,,0.0,1.0,7.0,0.0,2.0,1.5,1443.2728574332423,2915.0,0.0,0.0,0.0,76061.0,5,5,1,250.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4647.062567300075,0.09530496701594415,0.061096522098053864,50707.333333333336,10,5,10,10_1,10_0,10_0_0 +5296,2,47.0,3,0.0,2,111,2,56,43,6.0,0.0,0.0,702.5753373955433,0.0,1840.0948197249518,50666.46,31,33,1,16707,201705296,,,353.0,,2.0,0.0,5.0,1.0,3.0,2.0,1711.7035845970056,0.0,522.0,1040.0,0.0,45232.0,1,1,2,145.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2542.670157120495,0.050184484116721294,0.05621396703927518,22616.0,6,3,6,6_1,6_3,6_0_1 +5297,2,80.0,2,0.0,2,111,1,75,74,1.0,0.0,0.0,336.4824412813905,0.0,0.0,13801.76,71,41,2,16708,201705297,,,,320.0,0.0,1.0,3.0,0.0,2.0,1.5,3397.299639164,0.0,250.0,0.0,0.0,12361.0,5,5,3,70.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,336.4824412813905,0.024379676308049877,0.027221296115313525,8240.666666666666,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +5298,2,64.0,2,0.0,6,111,6,75,74,8.0,0.0,0.0,2180.4062195034103,0.0,0.0,71512.56,50,41,1,16709,201705298,,,,,0.0,1.0,5.0,0.0,2.0,1.5,2199.4334709081127,0.0,1620.0,0.0,0.0,48718.0,5,5,1,135.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2180.4062195034103,0.030489835904397918,0.04475565949963895,32478.666666666668,9,5,9,9_1,9_3,9_0_0 +5299,2,56.0,1,0.0,8,111,2,75,33,7.0,0.0,0.0,4133.516953895307,0.0,805.4142594489999,68069.8664127126,30,20,1,16711,201705299,,,,,1.0,0.0,8.0,3.0,5.0,3.0,1545.4511620542676,776.3345027021901,2750.0,0.0,0.0,87910.0,5,1,1,180.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4938.931213344307,0.0725567930954823,0.05618167686661708,29303.333333333332,8,4,8,8_1,8_2,8_0_0 +5300,2,88.0,4,0.0,1,222,2,77,78,4.0,1110.5192063972174,0.0,1193.8397016663735,283.09151072691566,0.0,20445.490875301628,70,70,1,16713,201705300,,,,,0.0,4.0,6.0,0.0,2.0,1.5,1940.9264344905753,0.0,887.0,0.0,0.0,25209.0,5,5,5,97.0,1,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2587.450418790507,0.12655359729788512,0.10263994679640234,16806.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5301,2,74.0,3,0.0,99,111,2,78,78,6.0,0.0,0.0,646.0462872602698,0.0,2123.1863304518674,26736.34,71,71,1,16715,201705301,,,600.0,,0.0,3.0,3.0,0.0,2.0,1.5,2296.581270945217,0.0,480.0,1200.0,0.0,32900.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2769.232617712137,0.10357560599962962,0.08417120418577925,21933.333333333332,6,3,6,6_1,6_4,6_0_0 +5302,2,70.0,2,0.0,5,111,2,74,74,10.0,0.0,0.0,1057.9007953886917,0.0,3257.3216953015735,65147.119999999995,41,30,1,16717,201705302,,,520.0,,0.0,1.0,7.0,0.0,2.0,1.5,1672.5928608310267,0.0,786.0,1841.0,0.0,72752.0,5,5,1,200.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4315.222490690265,0.06623811598563782,0.05931414243856203,48501.333333333336,10,5,10,10_1,10_3,10_0_0 +5303,2,67.0,2,0.0,6,112,2,78,78,2.0,1586.456009138882,0.0,942.1508355878933,130.9298237111985,0.0,26887.12,70,70,1,16718,201705303,,,120.0,,0.0,5.0,4.0,0.0,2.0,1.5,2321.8021833082807,0.0,700.0,0.0,0.0,19581.0,5,5,1,100.0,5,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2659.5366684379737,0.09891489562429795,0.13582231083386823,13054.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +5304,2,74.0,3,0.0,1,300,2,77,78,5.0,0.0,416.377895869032,538.3719060502248,1680.8558449410618,0.0,24845.220315994116,71,70,1,16719,201705304,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1681.6926064502013,0.0,400.0,0.0,0.0,28970.0,5,5,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2635.6056468603183,0.10608099317854093,0.09097706754781906,19313.333333333332,5,3,5,5_1,5_0,5_1_0 +5305,2,53.0,1,0.0,2,211,2,43,46,10.0,0.0,0.0,1523.592494122136,0.0,6466.87169816798,44233.25087530162,31,31,1,1672,201705305,,,,,2.0,1.0,9.0,0.0,2.0,1.5,691.6133544268783,0.0,1132.0,3655.0,0.0,109537.0,1,1,2,230.0,4,3.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,7990.4641922901155,0.18064383770517137,0.07294762675890444,73024.66666666667,10,5,10,10_1,10_1,10_0_1 +5306,2,71.0,1,0.0,1,120,5,71,78,6.0,0.0,0.0,1211.3367886130059,0.0,0.0,25181.04,70,70,5,16721,201705306,,,180.0,,0.0,3.0,6.0,0.0,2.0,1.5,1619.254759501529,0.0,900.0,0.0,0.0,33469.0,5,5,1,80.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1211.3367886130059,0.048105113554206096,0.03619279896659613,22312.666666666668,6,3,6,6_1,6_0,6_1_0 +5307,2,46.0,2,0.0,5,112,2,52,53,9.0,0.0,0.0,686.4241802140366,2123.1863304518674,0.0,25082.08,42,41,1,16724,201705307,,,220.0,,2.0,1.0,6.0,0.0,2.0,1.5,3172.3111259537764,0.0,510.0,0.0,0.0,52130.0,1,1,2,140.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2809.6105106659043,0.11201664736999101,0.05389623078200469,34753.333333333336,9,5,9,9_1,9_0,9_0_0 +5308,2,68.0,1,0.0,4,120,2,0,77,7.0,0.0,0.0,581.4416585342427,2036.4895552917496,0.0,18400.32,0,70,1,16725,201705308,,,140.0,,0.0,1.0,5.0,0.0,1.0,1.0,1706.404562150006,0.0,432.0,0.0,0.0,25182.0,0,5,1,129.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2617.9312138259925,0.14227639594452665,0.10396041671932303,25182.0,7,4,7,7_1,7_1,7_0_1 +5309,2,25.0,3,0.0,5,111,1,0,52,2.0,0.0,0.0,590.8631668901216,0.0,0.0,13435.900000000001,0,50,2,16727,201705309,,,,414.0,1.0,0.0,3.0,1.0,2.0,1.3,2919.2019914713533,0.0,439.0,0.0,0.0,16740.0,0,1,3,76.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,590.8631668901216,0.04397644868524785,0.03529648547730715,12876.923076923076,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +5310,2,69.0,3,0.0,6,300,2,78,75,7.0,0.0,416.377895869032,2240.9730589340606,127.39117982711205,0.0,31965.766393178008,70,60,1,16728,201705310,,,927.0,,0.0,2.0,4.0,0.0,2.0,1.5,1610.5050093480254,0.0,1665.0,0.0,0.0,38509.0,5,5,1,96.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2784.7421346302044,0.08711638883854547,0.07231405995040652,25672.666666666668,7,4,7,7_1,7_0,7_0_0 +5311,2,85.0,3,0.0,1,111,2,0,77,7.0,0.0,0.0,1111.7379859937141,0.0,0.0,16148.745846751302,0,50,2,16729,201705311,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3319.4040076070746,0.0,826.0,0.0,0.0,25714.0,0,5,1,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1111.7379859937141,0.06884361154382562,0.043234735396815514,25714.0,7,4,7,7_0,7_4,7_1_0 +5312,0,61.0,2,0.0,99,112,2,75,34,10.0,0.0,0.0,0.0,0.0,0.0,50495.899999999994,31,30,1,1673,201705312,,,,,1.0,3.0,4.0,0.0,2.0,1.5,1090.2845191867575,0.0,0.0,0.0,0.0,70255.0,5,1,5,95.0,9,3.0,3,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,46836.666666666664,10,5,10,10_1,10_1,10_0_0 +5313,2,76.0,5,0.0,3,111,1,75,46,5.0,0.0,0.0,1274.4246124493131,0.0,1008.4126236887541,41349.48285558749,30,20,8,16730,201705313,,,,,1.0,3.0,4.0,0.0,2.0,1.5,1670.1157979788975,787.8160250161415,621.0,108.0,0.0,30264.0,5,5,1,80.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2282.837236138067,0.05520836243855443,0.07543078364188696,20176.0,5,3,5,5_0,5_3,5_0_1 +5314,1,22.0,1,242.0,99,111,1,0,56,3.0,0.0,0.0,250.5293069328068,0.0,466.8559950517674,8323.790875301627,0,60,2,16731,201705314,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3346.6602346793507,450.0,0.0,0.0,0.0,13834.0,0,1,3,43.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,717.3853019845742,0.08618492616305409,0.0518566793396396,13834.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5315,2,71.0,3,0.0,4,111,4,0,78,4.0,0.0,0.0,1557.2407382502752,240.62778411787832,0.0,17840.427849749776,0,50,1,16732,201705315,,,120.0,,0.0,1.0,3.0,0.0,1.0,1.0,1718.5093893087196,0.0,1157.0,0.0,0.0,18468.0,0,5,1,90.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1797.8685223681534,0.1007749666941631,0.0973504722963046,18468.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +5316,1,77.0,4,200.0,3,120,2,86,78,4.0,1903.7472109666587,138.792631956344,703.9212671606689,0.0,0.0,40566.880315994116,70,50,1,16735,201705316,,,170.0,,0.0,3.0,5.0,0.0,2.0,1.5,2120.0815710279007,0.0,523.0,0.0,0.0,26593.0,6,5,1,140.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,2746.4611100836714,0.06770205371204838,0.10327759598705191,17728.666666666668,4,2,4_1,4_1_1,4_0_1,4_0_1_1 +5317,2,24.0,3,0.0,1,112,6,43,63,7.0,475.9368027416647,0.0,2422.6735772260117,0.0,0.0,24553.499999999996,30,44,1,16736,201705317,,,500.0,,2.0,0.0,4.0,0.0,2.0,1.5,2573.344339340919,0.0,1800.0,0.0,0.0,35635.0,1,1,3,68.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2898.6103799676766,0.11805283890148766,0.08134166914459595,23756.666666666668,6,3,6,6_1,6_0,6_1_0 +5318,2,43.0,1,0.0,1,111,2,0,62,6.0,0.0,0.0,460.30797967294217,0.0,684.7275915707272,24385.54,0,50,2,16737,201705318,,,,261.0,1.0,1.0,2.0,0.0,1.0,1.0,3164.2913710921594,0.0,342.0,387.0,0.0,22500.0,0,1,3,45.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1145.0355712436694,0.04695551426147091,0.050890469833051975,22500.0,6,3,6,6_0,6_3,6_1_0 +5319,1,68.0,4,129.0,2,211,1,0,78,2.0,0.0,0.0,654.1218658510231,0.0,0.0,8214.399999999998,0,71,2,16739,201705319,,,,295.0,0.0,1.0,4.0,0.0,1.0,1.0,1845.11546532346,0.0,486.0,0.0,0.0,12520.0,0,5,3,90.0,2,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,654.1218658510231,0.07963111923585695,0.05224615541941079,12520.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +5320,2,29.0,1,0.0,4,111,1,63,46,8.0,0.0,0.0,605.6683943065029,0.0,0.0,35681.60888771401,43,31,2,1674,201705320,,,600.0,,2.0,0.0,2.0,1.0,3.0,1.8,4427.507787760272,0.0,450.0,0.0,0.0,52157.0,1,1,2,37.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,605.6683943065029,0.016974245646054608,0.01161240857998932,28976.11111111111,8,4,8,8_0,8_3,8_0_1 +5321,2,45.0,1,0.0,8,111,2,38,35,10.0,0.0,0.0,2164.2550623219036,0.0,1932.0995607111995,89232.72,20,12,1,16740,201705321,,,290.0,,2.0,1.0,7.0,2.0,4.0,2.1,2371.7356951797397,0.0,1608.0,1092.0,0.0,125018.0,1,1,1,200.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4096.354623033103,0.04590641889021318,0.03276611866317733,59532.38095238095,10,5,10,10_1,10_3,10_0_0 +5322,2,63.0,3,0.0,6,111,4,78,75,6.0,0.0,180.43042154324718,2045.8132429908542,0.0,0.0,20647.26,50,50,1,16742,201705322,,,391.0,,0.0,2.0,5.0,0.0,2.0,1.5,2222.932245101174,0.0,1520.0,0.0,0.0,33640.0,5,5,1,100.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2226.2436645341013,0.10782271664783132,0.0661784680301457,22426.666666666668,6,3,6,6_1,6_2,6_0_0 +5323,2,81.0,3,0.0,1,112,2,86,75,5.0,1113.6921184154953,0.0,1804.8918150333786,0.0,0.0,22223.66784519403,70,31,1,16743,201705323,,,590.0,,0.0,2.0,6.0,0.0,2.0,1.5,2111.1260111172487,0.0,1341.0,0.0,0.0,29190.0,5,5,1,132.0,4,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2918.5839334488737,0.13132773373770662,0.09998574626409297,19460.0,5,3,5,5_1,5_0,5_1_0 +5324,2,62.0,3,0.0,99,111,2,0,63,2.0,0.0,0.0,991.9502368975392,0.0,0.0,14228.323786137145,0,50,2,16748,201705324,,,,229.0,1.0,1.0,3.0,1.0,2.0,1.5,2460.782382298189,0.0,737.0,0.0,0.0,18132.0,0,1,3,56.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,991.9502368975392,0.06971659148381275,0.05470716064954441,12088.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +5325,2,57.0,3,0.0,9,112,2,0,48,7.0,0.0,0.0,2284.0428114180786,44.23304855108057,0.0,25017.130875301624,0,44,1,16749,201705325,,,325.0,,1.0,0.0,4.0,0.0,1.0,1.0,2854.976645839868,0.0,1697.0,0.0,0.0,24971.0,0,1,2,89.0,8,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2328.2758599691592,0.09306726145274195,0.09323919186132551,24971.0,7,4,7,7_1,7_1,7_0_0 +5326,1,42.0,4,398.0,3,120,2,0,22,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,8935.702821199447,0,50,2,16750,201705326,,,320.0,,1.0,0.0,4.0,2.0,3.0,1.6,2603.1149663451306,1200.0,0.0,0.0,0.0,32739.0,0,1,3,80.0,0,3.0,2,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1913.0274719588647,0.21408808128895196,0.05843267882216514,20461.875,5,3,5,5_0,5_1,5_0_1 +5327,1,57.0,4,127.0,1,111,2,0,56,3.0,0.0,0.0,565.290501352736,201.70270139292742,0.0,8847.73087530163,0,71,2,16752,201705327,,,160.0,297.0,1.0,0.0,2.0,0.0,1.0,1.0,4986.879805884832,0.0,420.0,0.0,0.0,14014.0,0,1,3,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,766.9932027456634,0.08668812530077276,0.05473049826927811,14014.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +5328,2,31.0,3,0.0,9,112,2,52,46,9.0,0.0,0.0,1853.3452865778988,0.0,0.0,54137.16,31,31,1,16753,201705328,,,276.0,,2.0,0.0,4.0,1.0,3.0,1.8,2474.414221259551,0.0,1377.0,0.0,0.0,59114.0,1,1,2,95.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1853.3452865778988,0.034234254005527785,0.031352053431977174,32841.11111111111,9,5,9,9_1,9_0,9_0_0 +5329,2,61.0,3,0.0,2,300,2,77,78,7.0,0.0,0.0,549.1393441712293,0.0,3184.779495677801,27969.99883901972,50,50,1,16755,201705329,,,390.0,,0.0,2.0,4.0,0.0,2.0,1.5,1999.4859878468533,0.0,408.0,1800.0,0.0,39684.0,5,5,1,115.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3733.9188398490305,0.13349728261840338,0.09409129220464243,26456.0,7,4,7,7_1,7_0,7_0_1 +5330,2,60.0,3,0.0,5,211,4,56,78,5.0,0.0,0.0,2018.894647688343,0.0,0.0,45306.32000000001,50,70,1,16756,201705330,,,230.0,,1.0,2.0,4.0,0.0,2.0,1.5,1363.935905682559,0.0,1500.0,0.0,0.0,29844.0,1,5,1,78.0,3,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.04456099386770637,0.06764825920413962,19896.0,5,3,5,5_1,5_1,5_0_0 +5331,2,73.0,4,0.0,5,112,2,0,75,6.0,0.0,0.0,1173.65075518949,0.0,0.0,19984.36,0,42,2,16759,201705331,,,,463.0,0.0,2.0,4.0,0.0,1.0,1.0,2058.688605003213,0.0,872.0,0.0,0.0,21720.0,0,5,3,79.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1173.65075518949,0.05872846341786727,0.05403548596636694,21720.0,6,3,6,6_0,6_1,6_0_0 +5332,1,46.0,3,41.0,1,300,4,13,53,2.0,0.0,0.0,2153.487624200899,0.0,0.0,67152.58487956398,31,50,1,1676,201705332,,,,,2.0,3.0,6.0,2.0,4.0,2.3,1663.1979345880595,0.0,1600.0,0.0,0.0,25153.0,1,1,2,145.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2153.487624200899,0.032068573801933474,0.08561553787623341,10936.08695652174,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +5333,2,57.0,1,0.0,1,112,2,42,37,10.0,0.0,0.0,1211.3367886130059,0.0,3538.6438840864457,90424.70000000001,30,60,1,16760,201705333,,,519.0,,2.0,2.0,6.0,0.0,2.0,1.5,2516.741773772733,0.0,900.0,2000.0,0.0,86273.0,1,1,1,200.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4749.980672699452,0.05252968130056778,0.05505755766809375,57515.333333333336,10,5,10,10_1,10_2,10_1_0 +5334,2,90.0,3,0.0,4,111,2,0,77,4.0,1814.9056744548811,0.0,813.3551899242761,113.23660429076627,698.0256915224667,17011.627967093125,0,44,1,16761,201705334,,,173.0,,0.0,2.0,4.0,0.0,1.0,1.0,2373.141260518144,672.8232356752314,326.0,0.0,0.0,18077.0,0,5,5,85.0,4,4.0,1,7,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3439.52316019239,0.20218659653536505,0.19027068430560326,18077.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +5335,1,54.0,3,300.0,1,112,6,0,46,3.0,0.0,124.91336876070959,2099.6504335958766,47.77169243516702,0.0,17679.14,0,50,1,16762,201705335,,,397.0,,1.0,1.0,3.0,1.0,2.0,1.3,853.0280883722742,0.0,1560.0,0.0,0.0,19260.0,0,1,2,70.0,8,1.0,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,2272.3354947917533,0.12853201540299775,0.11798211291753652,14815.384615384615,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +5336,1,47.0,3,100.0,3,300,4,0,45,3.0,0.0,0.0,2880.2896973687025,0.0,0.0,19380.700315994116,0,42,1,16763,201705336,,,210.0,,1.0,1.0,3.0,1.0,2.0,1.5,627.4267203874027,0.0,2140.0,0.0,0.0,21219.0,0,1,2,52.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,2880.2896973687025,0.14861638900590785,0.13574106684427648,14146.0,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +5337,2,38.0,3,0.0,2,111,4,54,48,9.0,0.0,374.7401062821288,2465.7433297100297,0.0,0.0,25095.12331690806,31,31,1,16764,201705337,,,468.0,,2.0,0.0,5.0,0.0,2.0,1.5,561.0086912464244,0.0,1832.0,0.0,0.0,48928.0,1,1,2,95.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2840.4834359921583,0.11318866220029124,0.058054354071128154,32618.666666666668,9,5,9,9_1,9_3,9_0_1 +5338,1,37.0,4,212.0,7,120,1,0,52,3.0,222.10384127944351,0.0,1375.5402199583243,0.0,0.0,24954.468161188146,0,50,2,16767,201705338,522.0,522.0,,228.0,1.0,0.0,3.0,1.0,2.0,1.3,872.2533977223546,0.0,1022.0,0.0,0.0,20501.0,0,1,3,65.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1597.6440612377678,0.0640223646890858,0.07793005517963844,15770.0,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +5339,1,47.0,3,229.0,99,400,2,0,63,4.0,0.0,0.0,762.7225566621007,0.0,1421.3171404909363,14905.600000000002,0,50,1,16769,201705339,,,270.0,183.0,1.0,0.0,3.0,1.0,2.0,1.3,831.2754947804453,1370.0,0.0,0.0,0.0,22159.0,0,1,3,70.0,0,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2184.039697153037,0.14652477573214343,0.0985621958189917,17045.384615384613,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +5340,2,27.0,2,0.0,5,111,4,0,46,8.0,0.0,0.0,646.0462872602698,0.0,0.0,19854.72,0,20,2,1677,201705340,,,,625.0,1.0,0.0,1.0,0.0,1.0,1.0,6565.984418171833,0.0,480.0,0.0,0.0,30012.0,0,1,3,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,646.0462872602698,0.03253867530039556,0.021526265735714707,30012.0,8,4,8,8_0,8_4,8_0_0 +5341,2,23.0,2,0.0,9,111,2,0,34,10.0,0.0,0.0,1961.7742493551773,0.0,2150.8575103897006,25831.524356809176,0,41,1,16771,201705341,,,,,1.0,0.0,4.0,3.0,4.0,2.3,754.3621912453181,2073.200065831951,600.0,0.0,0.0,99190.0,0,1,1,100.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4112.631759744878,0.1592097974140961,0.04146216110237804,43126.08695652174,10,5,10,10_1,10_4,10_0_0 +5342,2,43.0,1,0.0,9,111,5,43,46,6.0,0.0,360.86084308649436,2677.054302834743,0.0,0.0,78785.02000000002,31,50,1,16774,201705342,,,170.0,,2.0,2.0,6.0,3.0,5.0,2.6,2008.6139228310817,0.0,1989.0,0.0,0.0,57487.0,1,1,2,150.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3037.915145921237,0.038559552893700305,0.05284525450834514,22110.384615384613,6,3,6,6_1,6_2,6_0_0 +5343,2,35.0,3,0.0,4,111,2,42,38,6.0,0.0,693.9631597817199,1614.5222002336438,0.0,3008.6275236669458,47598.6163223763,10,10,1,16776,201705343,,,400.0,,2.0,0.0,7.0,3.0,5.0,2.4,1905.5006487364994,2900.0,0.0,0.0,0.0,51613.0,1,1,2,125.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5317.11288368231,0.11170729938178295,0.10301886896096546,21505.416666666668,6,3,6,6_1,6_3,6_0_1 +5344,2,38.0,2,0.0,3,112,2,63,43,5.0,1269.1648073111057,0.0,1180.3804040151178,0.0,0.0,35368.92,50,44,1,16777,201705344,,,221.0,,2.0,0.0,4.0,2.0,4.0,2.1,2170.0687858604906,0.0,877.0,0.0,0.0,43238.0,1,1,1,110.0,9,1.0,4,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2449.5452113262236,0.06925699770663689,0.056652602139928385,20589.52380952381,5,3,5,5_1,5_1,5_0_1 +5345,2,57.0,2,0.0,6,400,5,52,75,6.0,0.0,0.0,847.935752029104,175.16287226227908,0.0,25155.62,71,50,1,16778,201705345,,,130.0,,1.0,2.0,5.0,0.0,2.0,1.5,2150.4078132000855,0.0,630.0,0.0,0.0,32792.0,1,5,1,73.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1023.0986242913831,0.04067077751577513,0.031199640896907268,21861.333333333332,6,3,6,6_1,6_0,6_0_0 +5346,1,35.0,3,179.0,99,111,2,0,54,4.0,0.0,0.0,659.5055849115254,0.0,1326.9914565324173,22544.840000000004,0,43,1,16779,201705346,,,,394.0,1.0,0.0,4.0,2.0,3.0,1.6,902.994205678446,0.0,490.0,750.0,0.0,28078.0,0,1,3,100.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1986.4970414439426,0.08811315766463379,0.07074923575197459,17548.75,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +5347,2,44.0,2,0.0,9,111,5,34,34,7.0,0.0,992.3673184878595,2288.080600713455,138.0071114793714,0.0,52590.06,30,30,1,16780,201705347,,,390.0,,2.0,0.0,7.0,3.0,5.0,2.6,631.8934088288884,0.0,1700.0,0.0,0.0,60520.0,1,1,1,149.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3418.455030680686,0.06500192299991074,0.05648471630338212,23276.923076923074,6,3,6,6_1,6_3,6_0_0 +5348,2,54.0,4,0.0,7,111,2,0,54,5.0,0.0,0.0,394.3574211817897,0.0,2995.462047879176,27313.16,0,33,2,16781,201705348,,,145.0,,1.0,2.0,4.0,0.0,1.0,1.0,2207.0397014700316,0.0,293.0,1693.0,0.0,18386.0,0,1,1,83.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,3389.8194690609657,0.12410938423313032,0.1843696001882392,18386.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +5349,1,48.0,3,92.0,8,111,2,45,38,8.0,0.0,0.0,2582.8392192759534,0.0,0.0,56274.9,60,30,2,16782,201705349,,,,998.0,3.0,0.0,5.0,3.0,6.0,3.3,1057.1344435383025,0.0,1919.0,0.0,0.0,97254.0,1,1,3,103.0,9,7.0,5,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2582.8392192759534,0.04589682468162455,0.026557665692680543,29470.909090909092,8,4,8,8_0,8_3,8_0_0 +5350,2,59.0,2,0.0,7,112,4,77,75,8.0,0.0,0.0,1978.5167547345761,0.0,0.0,29057.94,71,60,1,16783,201705350,,,490.0,,0.0,2.0,6.0,0.0,2.0,1.5,2124.678461707236,0.0,1470.0,0.0,0.0,45423.0,7,5,1,130.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1978.5167547345761,0.06808867919524152,0.04355759757687903,30282.0,8,4,8,8_1,8_0,8_0_0 +5351,1,19.0,2,177.0,9,111,2,0,84,1.0,0.0,0.0,1110.3920562285887,0.0,0.0,15625.90753375566,0,43,2,16785,201705351,,,,258.0,0.0,0.0,2.0,0.0,1.0,1.0,3047.4420608212663,0.0,825.0,0.0,0.0,6960.0,0,3,3,35.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1110.3920562285887,0.0710609642243101,0.15953908853859033,6960.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5352,2,38.0,3,0.0,99,111,1,0,45,5.0,0.0,0.0,1340.5460460650597,0.0,0.0,14658.420000000002,0,41,2,16786,201705352,,,,,1.0,0.0,3.0,2.0,3.0,1.6,4206.271810520564,0.0,996.0,0.0,0.0,29485.0,0,1,3,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1340.5460460650597,0.09145228790449854,0.04546535682771103,18428.125,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +5353,2,53.0,3,0.0,5,111,1,56,62,4.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,50949.759999999995,71,43,1,16787,201705353,,,260.0,,2.0,1.0,5.0,1.0,3.0,2.0,1413.7845022447166,900.0,0.0,0.0,0.0,33450.0,1,1,1,100.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1434.7706039691484,0.02816049779172951,0.04289299264481759,16725.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5354,2,67.0,3,0.0,1,111,6,0,77,6.0,0.0,0.0,940.8767304809855,0.0,1753.3036258610819,22343.24694028606,0,71,2,16788,201705354,,,258.0,420.0,0.0,1.0,4.0,0.0,2.0,1.5,3493.7984322992656,1690.0,0.0,0.0,0.0,31585.0,0,5,3,89.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2694.180356342067,0.12058141610046466,0.08529936223973618,21056.666666666668,5,3,5,5_0,5_3,5_1_0 +5355,2,44.0,1,0.0,2,211,2,0,42,7.0,0.0,0.0,734.8859670029,0.0,1369.444252151851,32771.96000000001,0,20,1,16791,201705355,,,,,1.0,0.0,5.0,2.0,3.0,1.8,1019.4451216265622,1320.0,0.0,0.0,0.0,47804.0,0,1,2,75.0,1,3.0,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2104.330219154751,0.06421130195309498,0.04401996107344053,26557.777777777777,7,4,7,7_1,7_1,7_0_1 +5356,2,41.0,2,0.0,1,111,2,65,48,8.0,0.0,0.0,1022.9066214954271,0.0,955.4338487033403,41910.420000000006,41,42,2,16792,201705356,,,420.0,,2.0,0.0,3.0,2.0,4.0,2.1,2105.4313100361583,0.0,760.0,540.0,0.0,55097.0,1,1,2,72.0,4,4.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1978.3404701987674,0.047204023968234324,0.03590650072052503,26236.666666666664,7,4,7,7_0,7_2,7_1_0 +5357,2,56.0,2,0.0,4,111,1,62,46,7.0,0.0,0.0,1211.3367886130059,0.0,0.0,26995.981750603252,60,50,2,16793,201705357,,,,316.0,4.0,1.0,3.0,2.0,4.0,2.5,3441.8572464501262,0.0,900.0,0.0,0.0,63646.0,1,1,3,68.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1211.3367886130059,0.04487100338871496,0.019032410341781193,25458.4,7,4,7,7_0,7_4,7_0_1 +5358,2,29.0,1,0.0,9,111,1,43,43,8.0,0.0,0.0,3364.824412813905,0.0,530.7965826129669,26479.481750603256,42,31,2,16794,201705358,,,,780.0,2.0,0.0,3.0,0.0,2.0,1.5,3052.7781923717343,0.0,2500.0,300.0,0.0,41307.0,1,1,3,60.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3895.6209954268716,0.14711847581148832,0.09430897899694655,27538.0,8,4,8,8_0,8_3,8_0_0 +5359,2,62.0,2,0.0,2,120,2,0,75,6.0,0.0,0.0,403.7789295376686,0.0,2477.050718860512,19577.36,0,70,1,16795,201705359,,,500.0,,0.0,0.0,4.0,0.0,1.0,1.0,2324.8835069883726,0.0,300.0,1400.0,0.0,22768.0,0,5,1,100.0,0,1.0,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2880.829648398181,0.14715107902179766,0.12652976319387652,22768.0,6,3,6,6_1,6_1,6_0_1 +5360,2,29.0,3,0.0,9,111,2,0,45,6.0,0.0,0.0,807.5578590753372,0.0,0.0,24998.9,0,31,2,16796,201705360,,,128.0,498.0,1.0,0.0,2.0,0.0,1.0,1.0,1687.6583430229716,0.0,600.0,0.0,0.0,21413.0,0,1,3,37.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.03230373572738549,0.03771343852217519,21413.0,6,3,6,6_0,6_2,6_0_0 +5361,2,61.0,2,0.0,1,112,4,0,78,3.0,0.0,0.0,2453.6299618238995,88.46609710216114,0.0,13290.785846751303,0,50,1,16798,201705361,,,203.0,,0.0,0.0,5.0,0.0,1.0,1.0,4265.800185808924,0.0,1823.0,0.0,0.0,14918.0,0,5,1,80.0,9,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2542.096058926061,0.19126755093623235,0.17040461582826524,14918.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +5362,2,67.0,2,0.0,6,112,2,75,74,10.0,3966.1400228472053,0.0,1211.3367886130059,0.0,0.0,48403.86,31,12,1,16799,201705362,,,400.0,,0.0,2.0,6.0,0.0,2.0,1.5,1695.6304145101915,0.0,900.0,0.0,0.0,73967.0,5,5,1,200.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5177.476811460211,0.10696413078337577,0.06999711778847609,49311.333333333336,10,5,10,10_1,10_0,10_0_0 +5363,1,43.0,4,320.0,7,112,6,56,85,1.0,237.96840137083234,0.0,1009.4473238441715,222.9345646974461,0.0,24247.440000000002,50,50,1,168,201705363,,,,305.0,1.0,0.0,4.0,2.0,4.0,2.5,1237.4376315396419,0.0,750.0,0.0,0.0,23470.0,1,7,3,80.0,8,0.0,4,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1470.35028991245,0.06063940316637344,0.06264807370739028,9388.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +5364,2,82.0,2,0.0,1,300,6,0,78,7.0,2608.133679024322,0.0,468.38355826369553,176.9321942043223,0.0,14005.599999999999,0,70,1,16800,201705364,,,,,0.0,5.0,6.0,0.0,1.0,1.0,2963.338397647239,0.0,348.0,0.0,0.0,22727.0,0,5,1,170.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3253.4494314923404,0.23229632657596538,0.14315349282757692,22727.0,6,3,6,6_1,6_0,6_1_0 +5365,2,55.0,2,0.0,6,111,2,34,31,8.0,0.0,346.98157989085996,5817.145222666778,53.079658261296686,4080.7655812082658,67794.43604058026,20,30,1,16801,201705365,,,688.0,,2.0,0.0,8.0,3.0,5.0,2.8,2236.329260817733,3933.4281470244296,2695.0,0.0,0.0,82423.0,1,1,1,170.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,10297.9720420272,0.1518999588087592,0.12494051468676462,29436.785714285717,8,4,8,8_1,8_3,8_0_0 +5366,2,57.0,3,0.0,9,112,2,78,34,5.0,0.0,138.792631956344,1675.6825575813245,0.0,2036.4895552917496,42565.93333333334,30,20,1,16803,201705366,,,1162.0,,1.0,0.0,6.0,3.0,5.0,3.0,1667.5689223013446,0.0,1245.0,1151.0,0.0,55714.0,6,1,2,172.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3850.964744829418,0.0904705815956755,0.06912023449814082,18571.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5367,2,63.0,2,0.0,9,112,5,78,75,8.0,0.0,138.792631956344,1212.8637808735848,530.7965826129669,692.5761183454837,28038.315860473504,70,50,1,16804,201705367,,,318.0,,0.0,2.0,3.0,0.0,2.0,1.5,1922.8861240174751,667.5704211978883,625.0,0.0,0.0,46572.0,5,5,1,120.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2575.029113788379,0.09183964994910693,0.05529135776407239,31048.0,8,4,8,8_1,8_1,8_0_0 +5368,2,36.0,2,0.0,1,112,2,54,37,9.0,0.0,0.0,1284.0169959297862,0.0,1312.8368809960714,80901.98063198823,43,12,1,16806,201705368,,,125.0,,2.0,0.0,6.0,2.0,4.0,2.1,673.0709644782606,0.0,954.0,742.0,0.0,73793.0,1,1,2,180.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2596.8538769258575,0.03209876762768741,0.035191059814966966,35139.52380952381,9,5,9,9_1,9_0,9_1_0 +5369,2,29.0,2,0.0,99,120,2,21,62,5.0,0.0,0.0,1561.278527545652,0.0,0.0,21897.031507289863,44,43,8,16807,201705369,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3996.5444909293296,0.0,1160.0,0.0,0.0,29461.0,1,1,3,70.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1561.278527545652,0.07130092163523982,0.05299475671381324,19640.666666666668,5,3,5,5_0,5_0,5_0_0 +5370,2,41.0,2,0.0,2,111,1,85,21,2.0,0.0,0.0,495.3021535662068,0.0,237.08914023379188,25654.2,50,71,2,16808,201705370,,,647.0,350.0,1.0,0.0,5.0,1.0,3.0,2.0,3837.499437965483,0.0,368.0,134.0,0.0,25915.0,7,1,3,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,732.3912937999987,0.02854859219153194,0.028261288589619862,12957.5,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +5371,2,78.0,4,0.0,5,400,1,0,78,4.0,0.0,0.0,232.8458493667222,106.15931652259337,0.0,10490.720000000001,0,70,2,16810,201705371,,,,314.0,0.0,2.0,4.0,0.0,1.0,1.0,3490.8064870907065,0.0,173.0,0.0,0.0,16161.0,0,5,3,83.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,339.00516588931555,0.032314766373453443,0.0209767443777808,16161.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +5372,1,35.0,4,614.0,5,111,1,0,85,2.0,0.0,0.0,1598.9645609691677,0.0,0.0,6644.9400000000005,0,50,2,16812,201705372,,,,134.0,0.0,0.0,4.0,4.0,5.0,2.2,971.7994057042077,0.0,1188.0,0.0,0.0,26908.0,0,6,3,68.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1598.9645609691677,0.24062889370997595,0.05942338936261215,12230.90909090909,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +5373,2,43.0,2,0.0,1,112,2,0,54,8.0,0.0,0.0,701.2294076304178,0.0,1633.0841525058947,39851.899999999994,0,31,2,16814,201705373,,,,,1.0,0.0,3.0,1.0,2.0,1.3,520.6325795670527,0.0,521.0,923.0,0.0,34580.0,0,1,2,80.0,9,0.0,2,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2334.3135601363124,0.058574711874121756,0.06750472990561922,26600.0,7,4,7,7_0,7_0,7_1_0 +5374,2,37.0,2,0.0,99,111,2,0,52,5.0,0.0,0.0,581.4416585342427,0.0,145.08439924754427,17754.96,0,42,2,16815,201705374,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1880.8002016195596,0.0,432.0,82.0,0.0,20350.0,0,1,2,53.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,726.526057781787,0.04091961107103519,0.0357015261809232,20350.0,5,3,5,5_0,5_3,5_0_0 +5375,0,75.0,3,0.0,1,111,2,86,78,4.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,13579.080000000002,71,71,1,16817,201705375,,,440.0,,0.0,6.0,2.0,0.0,2.0,1.5,3258.1281304738513,1400.0,0.0,0.0,0.0,23830.0,6,5,5,50.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2231.8653839520084,0.16436057405597493,0.0936578004176252,15886.666666666666,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +5376,2,40.0,1,0.0,8,112,2,37,34,9.0,0.0,208.188947934516,1886.9935307060377,26.539829130648343,0.0,95415.68000000001,31,10,1,16818,201705376,,,664.0,,2.0,0.0,7.0,2.0,4.0,2.1,2420.898279693787,0.0,1402.0,0.0,0.0,71096.0,4,1,2,160.0,8,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2121.722307771202,0.022236620938730425,0.029843061603623298,33855.23809523809,9,5,9,9_1,9_1,9_0_0 +5377,2,66.0,1,0.0,6,211,6,77,63,6.0,1903.7472109666587,0.0,2029.475567519412,0.0,3781.8842318581205,29503.74924585677,50,71,1,1682,201705377,,,235.0,,1.0,2.0,4.0,0.0,2.0,1.5,1989.5707226300674,3645.3380108087604,0.0,0.0,0.0,32152.0,5,5,1,120.0,4,4.0,3,7,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,7715.107010344191,0.26149581688936124,0.2399572969129196,21434.666666666668,6,3,6,6_1,6_2,6_0_0 +5378,2,44.0,2,0.0,9,111,4,0,68,4.0,0.0,0.0,934.07525699714,113.23660429076627,0.0,15563.9,0,50,2,16820,201705378,,,182.0,307.0,1.0,0.0,2.0,0.0,1.0,1.0,1914.5726270046146,0.0,694.0,0.0,0.0,17290.0,0,1,3,53.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1047.3118612879061,0.06729109421725314,0.060573271329549226,17290.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +5379,1,47.0,4,353.0,99,111,2,0,56,1.0,0.0,0.0,573.4337469795356,0.0,1068.5814997851564,9676.147533755657,0,71,2,16821,201705379,,,450.0,,1.0,3.0,5.0,1.0,2.0,1.5,1325.6922400238059,1030.0,0.0,0.0,0.0,13006.0,0,4,3,91.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1642.0152467646922,0.16969721069634908,0.12625059563007013,8670.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5380,2,57.0,4,0.0,7,111,4,22,37,1.0,0.0,0.0,1057.7904070496288,0.0,1971.1697568852403,43435.95665845403,31,30,2,16822,201705380,,,,616.0,4.0,0.0,3.0,2.0,4.0,2.5,6611.352070350638,1900.0,0.0,0.0,0.0,24767.0,1,1,3,72.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3028.9601639348693,0.06973393466966121,0.12229822602393788,9906.8,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +5381,2,57.0,4,0.0,1,120,2,85,21,1.0,1745.1016100527704,0.0,821.0171567265928,233.5504963497054,0.0,20632.4,71,71,1,16823,201705381,,,,,2.0,3.0,6.0,1.0,3.0,2.0,2123.17853783764,0.0,610.0,0.0,0.0,16290.0,6,4,1,150.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2799.669263129069,0.1356928550788599,0.17186428871265003,8145.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +5382,2,81.0,3,0.0,1,112,2,0,77,4.0,0.0,0.0,367.4388258792784,0.0,2146.1875156984293,9430.271191295746,0,71,1,16824,201705382,,,171.0,,0.0,2.0,3.0,0.0,1.0,1.0,3282.0659474688246,0.0,273.0,1213.0,0.0,17226.0,0,5,1,60.0,7,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2513.6263415777075,0.26654868037069973,0.14592048888759476,17226.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5383,2,37.0,2,0.0,9,111,4,55,38,8.0,0.0,0.0,1965.0574570833205,0.0,0.0,64160.94604054426,50,10,1,16826,201705383,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2149.8867248792644,0.0,1460.0,0.0,0.0,61526.0,1,1,3,85.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1965.0574570833205,0.03062700253580381,0.03193865125448299,29298.095238095237,8,4,8,8_1,8_3,8_0_0 +5384,1,31.0,4,580.0,99,111,2,0,52,2.0,0.0,0.0,672.964882562781,0.0,1061.5931652259337,9117.5,0,50,2,16827,201705384,,,,70.0,1.0,0.0,3.0,3.0,4.0,1.9,751.8525429806901,0.0,500.0,600.0,0.0,25100.0,0,1,3,60.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1734.5580477887147,0.1902449188690666,0.06910589831827549,13210.526315789475,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +5385,1,46.0,5,305.0,9,111,3,0,56,2.0,0.0,0.0,1744.3249756027283,0.0,0.0,13885.34,0,41,2,16829,201705385,999999.0,816.0,,,1.0,2.0,3.0,1.0,2.0,1.5,920.5241781698212,0.0,1296.0,0.0,0.0,18400.0,0,4,3,53.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1744.3249756027283,0.12562349755949284,0.09480027041319175,12266.666666666666,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +5386,2,78.0,2,0.0,5,111,2,0,72,6.0,0.0,0.0,962.3724287386453,0.0,3450.6303273071585,24905.781920304613,0,44,2,1683,201705386,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2493.761638399153,829.2800263327805,372.0,1464.0,0.0,21594.0,0,5,1,80.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,4413.002756045804,0.17718788232254104,0.20436245049762916,21594.0,6,3,6,6_0,6_2,6_0_0 +5387,2,61.0,4,0.0,1,300,2,0,52,6.0,1189.8420068541616,0.0,1211.3367886130059,1610.082967259333,0.0,27275.50384973604,0,31,1,16832,201705387,,,218.0,,1.0,0.0,4.0,0.0,1.0,1.0,1932.710474583538,0.0,900.0,0.0,0.0,22697.0,0,1,1,80.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4011.2617627265,0.1470646256371656,0.17673092314960126,22697.0,6,3,6,6_1,6_0,6_1_0 +5388,1,63.0,5,272.0,5,111,2,0,78,2.0,0.0,0.0,325.715003160386,0.0,720.1140304115917,3938.0,0,42,2,16834,201705388,,,,119.0,0.0,3.0,3.0,0.0,1.0,1.0,2951.3764833478494,0.0,242.0,407.0,0.0,12834.0,0,5,3,63.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1045.8290335719776,0.2655736499674905,0.0814889382555694,12834.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +5389,2,75.0,5,0.0,1,111,2,0,21,1.0,0.0,0.0,258.4185149041079,0.0,279.55286684282925,20605.0,0,30,8,16835,201705389,,,,,1.0,2.0,2.0,0.0,1.0,1.0,4179.745756637874,0.0,192.0,158.0,0.0,9540.0,0,5,1,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,537.9713817469371,0.026108778536614276,0.05639113016215274,9540.0,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +5390,2,33.0,2,0.0,4,111,1,37,37,10.0,0.0,0.0,1615.1157181506744,0.0,0.0,72447.92,20,12,2,16836,201705390,,,,1420.0,2.0,0.0,3.0,2.0,4.0,2.1,5147.7724253257575,0.0,1200.0,0.0,0.0,103159.0,1,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1615.1157181506744,0.022293472582106906,0.01565656625355688,49123.33333333333,10,5,10,10_0,10_4,10_0_1 +5391,1,34.0,4,456.0,4,111,2,0,85,2.0,0.0,0.0,891.005504513122,0.0,2480.5893627445985,32354.93665845403,0,71,2,1684,201705391,,,760.0,,0.0,0.0,4.0,5.0,6.0,2.9,748.4433327659523,0.0,662.0,1402.0,0.0,30992.0,0,6,3,75.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,3371.5948672577206,0.10420650495623071,0.10878919938234773,10686.896551724138,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5392,1,62.0,2,256.0,4,111,1,0,77,2.0,0.0,0.0,349.9417389326461,0.0,0.0,14304.660000000002,0,30,2,16840,201705392,,,,30.0,0.0,1.0,3.0,0.0,1.0,1.0,3345.8766965906802,0.0,260.0,0.0,0.0,12497.0,0,5,3,58.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,349.9417389326461,0.024463478260416262,0.02800205960891783,12497.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5393,1,40.0,4,350.0,99,111,1,0,68,1.0,0.0,0.0,646.0462872602698,0.0,743.1152156581536,47844.28,0,60,2,16841,201705393,,,460.0,,1.0,0.0,5.0,3.0,4.0,2.5,1020.4913359727353,0.0,480.0,420.0,0.0,22250.0,0,4,3,99.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1389.1615029184234,0.02903505921540513,0.06243422485026622,8900.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5394,2,61.0,3,0.0,1,120,2,75,13,2.0,0.0,0.0,825.0549460219695,53.079658261296686,0.0,18993.46,33,50,1,16842,201705394,,,,,1.0,4.0,3.0,0.0,2.0,1.5,1376.4616586529278,0.0,613.0,0.0,0.0,19776.0,6,1,1,60.0,0,3.0,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,878.1346042832662,0.04623352481766178,0.044404055637301085,13184.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +5395,2,71.0,2,0.0,6,112,6,77,74,10.0,0.0,0.0,2153.487624200899,0.0,0.0,60218.33002433224,50,50,1,16844,201705395,,,650.0,,0.0,1.0,5.0,0.0,2.0,1.5,2659.3587867827846,0.0,1600.0,0.0,0.0,61047.0,5,5,1,96.0,10,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2153.487624200899,0.035761330866046034,0.03527589601783706,40698.0,10,5,10,10_1,10_2,10_0_0 +5396,2,51.0,1,0.0,9,400,4,43,31,10.0,0.0,83.27557917380639,4261.213636387529,159.23897478389006,0.0,153144.0907377534,33,10,1,16846,201705396,,,,,2.0,1.0,7.0,1.0,3.0,2.0,2490.9439239836543,0.0,3166.0,0.0,0.0,117888.0,1,1,2,190.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4503.728190345225,0.02940843599416113,0.038203448954475645,58944.0,10,5,10,10_1,10_0,10_0_0 +5397,2,61.0,1,0.0,9,221,4,0,43,2.0,0.0,0.0,1615.1157181506744,0.0,0.0,23994.96,0,33,1,1685,201705397,,,132.0,,1.0,2.0,4.0,0.0,1.0,1.0,1622.3970658527048,0.0,1200.0,0.0,0.0,14673.0,0,1,1,89.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.06731062348721041,0.11007399428546817,14673.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5398,2,81.0,2,0.0,7,111,2,74,74,10.0,0.0,0.0,652.7759360858976,0.0,1203.1389205893915,55110.254065231835,31,20,2,16852,201705398,,,326.0,,0.0,0.0,4.0,0.0,2.0,1.5,4542.567024630066,0.0,485.0,680.0,0.0,66152.0,5,5,1,90.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1855.9148566752892,0.03367639812508424,0.02805530984211043,44101.333333333336,10,5,10,10_0,10_2,10_0_0 +5399,2,85.0,2,0.0,1,300,2,77,86,5.0,2221.038412794435,0.0,492.6102940359557,212.31863304518674,0.0,15828.3858467513,70,71,1,16853,201705399,,,960.0,,0.0,2.0,3.0,0.0,2.0,1.5,1733.644280452488,0.0,366.0,0.0,0.0,28449.0,5,5,1,77.0,0,1.0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2925.967339875577,0.1848556996401574,0.10284956729148924,18966.0,5,3,5,5_1,5_1,5_1_0 +5400,2,72.0,2,0.0,6,111,2,74,75,9.0,0.0,0.0,1145.7540303727033,0.0,2135.0880840367495,103872.01895505688,10,44,1,16854,201705400,,,266.0,,0.0,2.0,5.0,0.0,2.0,1.5,4836.945061318854,2058.0,0.0,0.0,0.0,53513.0,5,5,5,160.0,6,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3280.8421144094527,0.03158542740782771,0.061309254095443216,35675.333333333336,9,5,9,9_1,9_2,9_0_0 +5401,2,33.0,4,0.0,99,111,6,54,67,5.0,0.0,0.0,1453.6041463356069,0.0,0.0,18965.96,43,60,2,16856,201705401,,,,607.0,2.0,0.0,2.0,0.0,2.0,1.5,5605.425940575061,0.0,1080.0,0.0,0.0,27980.0,4,1,3,30.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1453.6041463356069,0.07664279300049177,0.05195154204201597,18653.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +5402,2,36.0,1,0.0,5,111,1,0,37,9.0,0.0,0.0,242.26735772260116,0.0,0.0,25797.0,0,0,2,16858,201705402,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2935.0900431956566,0.0,180.0,0.0,0.0,35100.0,0,1,1,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,242.26735772260116,0.009391299675256858,0.006902203923720831,35100.0,9,5,9,9_0,9_4,9_0_0 +5403,2,52.0,3,0.0,5,300,4,62,47,4.0,0.0,0.0,2576.1095704503255,318.4779495677801,0.0,31581.1,50,50,1,1686,201705403,,,,,3.0,2.0,4.0,2.0,4.0,2.3,2187.690111188258,0.0,1914.0,0.0,0.0,41780.0,1,1,2,90.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2894.5875200181054,0.09165569027101987,0.06928165438051952,18165.217391304348,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5404,1,48.0,4,178.0,99,112,2,0,52,3.0,0.0,0.0,655.2733205775858,0.0,1221.0877915020671,48901.3658467513,0,50,2,16862,201705404,,,240.0,,1.0,1.0,3.0,2.0,3.0,2.0,917.3003530390473,1177.0,0.0,0.0,0.0,27211.0,0,1,3,71.0,7,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1876.361112079653,0.03837032114726314,0.06895597780602157,13605.5,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +5405,2,54.0,3,0.0,5,111,1,0,46,9.0,0.0,0.0,403.7789295376686,0.0,0.0,25111.090875301627,0,31,2,16863,201705405,,,,334.0,1.0,0.0,2.0,0.0,1.0,1.0,3615.818466178249,0.0,300.0,0.0,0.0,34432.0,0,1,3,51.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,403.7789295376686,0.016079704842086776,0.011726850881089353,34432.0,9,5,9,9_0,9_4,9_0_0 +5406,2,58.0,3,0.0,6,111,1,0,55,1.0,0.0,0.0,336.4824412813905,0.0,0.0,20130.600000000002,0,44,2,16866,201705406,,,,,1.0,2.0,1.0,0.0,1.0,1.0,2552.9600746927595,0.0,250.0,0.0,0.0,1434.0,0,1,1,30.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,336.4824412813905,0.016714973288495645,0.23464605389218304,1434.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +5407,2,73.0,3,0.0,1,112,2,74,74,9.0,0.0,555.170527825376,1646.51665519594,2937.07442379175,1553.3492940034419,79776.17645749779,50,44,1,16867,201705407,,,,,0.0,3.0,8.0,0.0,2.0,1.5,1401.9758477438002,1497.2650875438353,604.0,0.0,0.0,47522.0,5,5,1,150.0,8,2.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,6692.110900816509,0.08388608226143619,0.14082132277295797,31681.333333333332,8,4,8,8_1,8_1,8_1_0 +5408,2,70.0,3,0.0,5,300,4,77,77,5.0,0.0,0.0,2503.4293631335454,0.0,0.0,17412.44,70,70,1,16868,201705408,,,393.0,,0.0,2.0,4.0,0.0,2.0,1.5,1824.2798442574394,0.0,1860.0,0.0,0.0,28136.0,5,5,1,80.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2503.4293631335454,0.1437724617074658,0.08897602228936399,18757.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5409,2,63.0,3,0.0,1,400,5,74,72,9.0,0.0,69.396315978172,1508.787266705755,247.7050718860512,0.0,27189.72,20,31,1,16869,201705409,,,514.0,,0.0,2.0,5.0,0.0,2.0,1.5,2331.157035321556,0.0,1121.0,0.0,0.0,48813.0,5,5,1,145.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1825.8886545699781,0.0671536394847015,0.03740578646200762,32542.0,9,5,9,9_1,9_0,9_1_0 +5410,2,50.0,3,0.0,9,112,2,0,43,7.0,0.0,0.0,1453.6041463356069,0.0,0.0,18359.440315994114,0,33,1,1687,201705410,,,180.0,,1.0,1.0,3.0,0.0,1.0,1.0,1835.3744959591284,0.0,1080.0,0.0,0.0,26951.0,0,1,2,70.0,8,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1453.6041463356069,0.07917475267855942,0.053935072774131086,26951.0,7,4,7,7_1,7_1,7_0_0 +5411,2,31.0,3,0.0,7,111,6,85,42,1.0,0.0,0.0,1884.3016711757866,0.0,0.0,31334.345846751297,60,30,2,16870,201705411,,,390.0,,1.0,0.0,4.0,1.0,3.0,1.8,4202.032242206378,0.0,1400.0,0.0,0.0,19280.0,4,1,3,116.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1884.3016711757866,0.06013534414892368,0.0977334891688686,10711.111111111111,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +5412,2,75.0,3,0.0,2,112,2,0,74,4.0,0.0,0.0,382.24405329565957,0.0,1840.0948197249518,12523.880000000001,0,50,1,16872,201705412,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1680.2628549790982,0.0,284.0,1040.0,0.0,15866.0,0,5,1,88.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2222.3388730206116,0.17744811296663746,0.1400692596130475,15866.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +5413,2,42.0,2,0.0,9,111,2,56,38,7.0,0.0,0.0,2691.859530251124,0.0,583.8762408742635,75919.22,31,31,1,16874,201705413,,,640.0,,2.0,0.0,5.0,3.0,5.0,2.4,4406.817625834065,0.0,2000.0,330.0,0.0,59949.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3275.7357711253876,0.043147647870004295,0.054642041921056025,24978.75,7,4,7,7_1,7_4,7_0_0 +5414,2,40.0,3,0.0,1,212,2,0,52,5.0,4759.368027416646,416.377895869032,1114.4298455239652,0.0,0.0,21056.62525652759,0,41,1,16875,201705414,,,300.0,,1.0,0.0,7.0,0.0,1.0,1.0,1872.2841741680966,0.0,828.0,0.0,0.0,20428.0,0,1,1,120.0,2,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6290.175768809643,0.29872668066121744,0.30791931509739784,20428.0,5,3,5,5_1,5_0,5_1_0 +5415,2,63.0,3,0.0,9,112,5,0,75,5.0,0.0,346.98157989085996,565.290501352736,123.8525359430256,0.0,15769.240000000002,0,70,1,16876,201705415,,,117.0,,0.0,2.0,4.0,0.0,1.0,1.0,3178.031735828347,0.0,420.0,0.0,0.0,20801.0,0,5,2,100.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1036.1246171866214,0.06570542506719546,0.04981128874509021,20801.0,5,3,5,5_1,5_0,5_0_0 +5416,2,76.0,3,0.0,2,211,2,77,78,5.0,0.0,0.0,1080.7816013958263,0.0,3200.70339315619,21724.59150728986,71,70,1,16879,201705416,,,408.0,,0.0,3.0,4.0,0.0,2.0,1.5,2098.5940334893644,0.0,803.0,1809.0,0.0,28016.0,5,5,1,80.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4281.484994552016,0.1970801150905567,0.15282285103341006,18677.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +5417,2,42.0,2,0.0,9,111,4,53,52,4.0,0.0,0.0,1845.2697079871455,0.0,0.0,58944.600000000006,43,50,1,1688,201705417,,,480.0,,2.0,0.0,5.0,2.0,4.0,2.5,1730.943453534881,0.0,1371.0,0.0,0.0,44702.0,1,1,2,90.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1845.2697079871455,0.03130515277034954,0.04127935456997775,17880.8,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +5418,2,50.0,3,0.0,1,111,2,75,52,4.0,0.0,0.0,1211.3367886130059,0.0,1663.1626255206295,38066.7975402539,71,50,1,16880,201705418,,,584.0,,4.0,1.0,5.0,3.0,5.0,3.0,2847.7391596650527,0.0,900.0,940.0,0.0,52760.0,5,1,1,124.0,4,3.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2874.4994141336356,0.07551198419289103,0.05448255144301811,17586.666666666668,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +5419,2,47.0,2,0.0,1,400,4,0,63,7.0,0.0,0.0,822.3630864917184,49.54101437721024,0.0,14723.999999999998,0,43,2,16881,201705419,,,,315.0,1.0,2.0,3.0,0.0,1.0,1.0,3060.5366260204055,0.0,611.0,0.0,0.0,24665.0,0,1,3,50.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,871.9041008689286,0.05921652410139423,0.035349852052257394,24665.0,7,4,7,7_0,7_0,7_1_0 +5420,2,34.0,2,0.0,1,111,2,52,54,8.0,0.0,0.0,695.9147414800188,0.0,1296.8222084771319,38972.04,33,31,1,16884,201705420,,,528.0,,2.0,0.0,4.0,1.0,3.0,1.8,1807.0655953969301,1250.0,0.0,0.0,0.0,47932.0,1,1,2,90.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1992.7369499571507,0.051132477282614684,0.041574249978243154,26628.888888888887,7,4,7,7_1,7_3,7_1_0 +5421,2,53.0,1,0.0,1,112,2,42,37,10.0,2295.6018452239623,41.637789586903196,1882.9557414106612,0.0,0.0,59220.48000000001,20,12,1,16886,201705421,,,182.0,,2.0,1.0,8.0,1.0,3.0,2.0,1731.297351327647,0.0,1399.0,0.0,0.0,128026.0,1,1,2,180.0,10,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4220.195376221527,0.07126243110865577,0.03296358064941127,64013.0,10,5,10,10_1,10_0,10_1_0 +5422,2,70.0,1,0.0,5,112,4,0,74,10.0,0.0,0.0,2986.618148813622,53.079658261296686,0.0,31832.809999999998,0,12,1,16887,201705422,,,290.0,,0.0,3.0,7.0,0.0,1.0,1.0,2164.705015789275,0.0,2219.0,0.0,0.0,50572.0,0,5,1,250.0,8,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3039.6978070749187,0.09548945905419343,0.060106339616288036,50572.0,10,5,10,10_1,10_1,10_0_0 +5423,1,27.0,2,333.0,9,111,4,47,47,6.0,0.0,0.0,874.8543473316153,0.0,0.0,38622.75232549083,20,20,2,16888,201705423,,,,97.0,2.0,0.0,3.0,0.0,2.0,1.5,3249.4981599143634,0.0,650.0,0.0,0.0,34253.0,1,1,3,63.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,874.8543473316153,0.02265126886760516,0.02554095545883909,22835.333333333332,6,3,6,6_0,6_2,6_0_0 +5424,1,32.0,4,41.0,2,111,6,56,65,2.0,0.0,0.0,1049.8252167979383,123.8525359430256,0.0,11677.346811689,71,60,1,16889,201705424,,,420.0,,2.0,0.0,5.0,1.0,3.0,1.8,934.2205861405814,0.0,780.0,0.0,0.0,19282.0,4,4,3,77.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1173.677752740964,0.10050894022999429,0.060869087892384814,10712.222222222223,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +5425,1,26.0,3,90.0,1,111,4,0,55,2.0,0.0,0.0,807.5578590753372,0.0,0.0,17206.976974448145,0,41,8,1689,201705425,,,,144.0,1.0,0.0,1.0,0.0,1.0,1.0,4777.502048540914,0.0,600.0,0.0,0.0,12548.0,0,1,3,35.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,807.5578590753372,0.04693200091303294,0.06435749594161119,12548.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +5426,2,57.0,4,0.0,5,111,5,45,48,5.0,0.0,0.0,1453.6041463356069,0.0,0.0,27222.0,31,41,1,16891,201705426,,,288.0,,2.0,0.0,6.0,2.0,4.0,2.3,2301.02496354319,0.0,1080.0,0.0,0.0,46386.0,1,1,2,104.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1453.6041463356069,0.05339813923795485,0.03133713073633439,20167.826086956524,5,3,5,5_1,5_3,5_0_0 +5427,2,38.0,1,0.0,9,300,5,34,34,9.0,0.0,124.91336876070959,1022.9066214954271,0.0,0.0,39243.979999999996,30,30,1,16893,201705427,,,438.0,,2.0,0.0,4.0,0.0,2.0,1.5,2540.554370632127,0.0,760.0,0.0,0.0,53336.0,1,1,2,92.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1147.8199902561366,0.029248307390232507,0.021520548789863068,35557.333333333336,9,5,9,9_1,9_0,9_0_0 +5428,2,45.0,4,0.0,1,112,2,0,52,2.0,0.0,624.566843803548,1749.7086946632305,0.0,1680.8558449410618,35034.46000000001,0,50,1,16896,201705428,,,1200.0,,1.0,0.0,5.0,4.0,5.0,2.6,348.0555214896691,0.0,1300.0,950.0,0.0,34750.0,0,1,2,130.0,10,2.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4055.13138340784,0.11574693554311496,0.11669442829950619,13365.384615384615,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +5429,2,54.0,9,0.0,1,111,2,77,22,7.0,0.0,0.0,1286.7088554600373,0.0,3883.6616627848744,70871.98999999999,60,20,1,16897,201705429,,,503.0,,1.0,0.0,12.0,2.0,4.0,2.3,2396.292506145865,0.0,956.0,2195.0,0.0,58967.0,6,4,1,215.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5170.370518244912,0.07295365232787894,0.08768244133574563,25637.826086956524,7,4,7,7_1,7_3,7_1_0 +5430,2,65.0,4,0.0,1,111,2,0,86,3.0,0.0,0.0,296.1045483276236,1946.2541362475451,1946.2541362475451,23442.941349499146,0,31,1,16898,201705430,,,,,0.0,1.0,4.0,0.0,1.0,1.0,1953.4819180258378,0.0,220.0,1100.0,0.0,15736.0,0,5,3,90.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4188.612820822714,0.1786726656172009,0.26618027585299403,15736.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +5431,2,58.0,2,0.0,3,111,2,45,37,10.0,0.0,0.0,1095.7110758918423,0.0,1894.780468163196,38993.42,50,42,1,169,201705431,,,646.0,,2.0,1.0,5.0,1.0,3.0,2.0,1921.7836544793402,300.0,690.0,895.0,0.0,106461.0,1,1,1,95.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2990.4915440550385,0.07669220971269097,0.028090019293967167,53230.5,10,5,10,10_1,10_2,10_0_1 +5432,2,51.0,3,0.0,9,111,2,0,54,1.0,0.0,0.0,3230.231436301349,0.0,0.0,46269.381864571566,0,30,1,1690,201705432,,,1200.0,,1.0,1.0,5.0,1.0,2.0,1.3,3429.282539846441,0.0,2400.0,0.0,0.0,15250.0,0,1,2,180.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3230.231436301349,0.0698135852723534,0.2118184548394327,11730.76923076923,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +5433,1,48.0,4,513.0,9,111,1,0,56,2.0,0.0,0.0,1022.9066214954271,0.0,0.0,20133.159999999996,0,50,2,16900,201705433,,,740.0,1.0,1.0,0.0,4.0,3.0,4.0,2.1,915.1466580858566,0.0,760.0,0.0,0.0,27556.0,0,1,3,85.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1022.9066214954271,0.050807057684706586,0.03712101253793827,13121.904761904761,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +5434,2,69.0,1,0.0,1,400,4,0,77,5.0,0.0,0.0,135.93890627768175,44.23304855108057,0.0,17162.10347014303,0,50,1,16901,201705434,,,124.0,,0.0,2.0,4.0,0.0,1.0,1.0,2274.3167066763826,0.0,101.0,0.0,0.0,19039.0,0,5,3,75.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,180.17195482876232,0.010498244294017228,0.009463309776183745,19039.0,5,3,5,5_1,5_0,5_1_0 +5435,1,21.0,2,120.0,7,112,2,0,69,3.0,0.0,0.0,0.0,0.0,0.0,9686.9658467513,0,31,2,16902,201705435,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4311.005847833182,0.0,0.0,0.0,0.0,13724.0,0,2,3,28.0,9,2.0,1,3,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,13724.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +5436,2,54.0,3,0.0,7,111,2,46,31,4.0,0.0,0.0,2664.9409349486127,0.0,0.0,52988.35087530163,41,20,1,16904,201705436,,,500.0,,3.0,1.0,5.0,1.0,3.0,2.0,2075.740415560677,0.0,1980.0,0.0,0.0,38085.0,1,1,1,90.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2664.9409349486127,0.050292958564044817,0.06997350492184883,19042.5,5,3,5,5_1,5_2,5_0_0 +5437,2,42.0,3,0.0,3,111,2,0,52,4.0,0.0,0.0,753.7206684703146,0.0,0.0,14380.259999999998,0,50,2,16905,201705437,,,,490.0,1.0,0.0,3.0,0.0,1.0,1.0,4261.297378627166,0.0,560.0,0.0,0.0,17260.0,0,1,3,54.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,753.7206684703146,0.05241356334797248,0.04366863664370305,17260.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +5438,1,43.0,3,380.0,99,111,2,0,55,2.0,0.0,0.0,538.3719060502248,0.0,1397.7643342141462,16020.26,0,50,2,16907,201705438,,,360.0,64.0,1.0,1.0,4.0,3.0,4.0,2.3,628.1266932172922,0.0,400.0,790.0,0.0,28100.0,0,1,3,78.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1936.1362402643708,0.12085548176274111,0.06890164556100964,12217.391304347828,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5439,2,76.0,2,0.0,7,111,1,77,78,5.0,0.0,0.0,511.45331074771354,0.0,0.0,21253.98,50,50,2,16908,201705439,,,,535.0,0.0,1.0,3.0,0.0,2.0,1.5,1853.7590388938943,0.0,380.0,0.0,0.0,31598.0,5,5,3,66.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,511.45331074771354,0.024063884070075984,0.016186255799345323,21065.333333333332,5,3,5,5_0,5_2,5_0_0 +5440,2,75.0,3,0.0,5,221,2,78,74,7.0,0.0,0.0,632.5869896090142,0.0,1893.1744779862486,59493.670875301636,70,12,1,16909,201705440,,,375.0,,0.0,1.0,5.0,0.0,2.0,1.5,2998.824918643668,0.0,470.0,1070.0,0.0,37486.0,5,5,5,100.0,1,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2525.7614675952627,0.0424542885055663,0.06737879388559095,24990.666666666668,7,4,7,7_1,7_1,7_0_0 +5441,2,47.0,3,0.0,9,111,2,54,64,8.0,0.0,0.0,521.1009584202382,0.0,971.0604697076762,55015.75202733072,31,50,2,1691,201705441,,,404.0,568.0,2.0,2.0,3.0,0.0,2.0,1.5,3615.560121337105,936.0,0.0,0.0,0.0,41658.0,1,1,3,68.0,7,6.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1492.1614281279144,0.027122439903877686,0.03581932469460642,27772.0,8,4,8,8_0,8_2,8_0_0 +5442,2,77.0,3,0.0,5,111,4,0,75,9.0,0.0,0.0,1076.7438121004495,0.0,0.0,21757.74,0,60,1,16912,201705442,,,334.0,,0.0,3.0,5.0,0.0,1.0,1.0,3324.9069076363867,0.0,800.0,0.0,0.0,37380.0,0,5,1,120.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1076.7438121004495,0.04948785177598636,0.02880534542804841,37380.0,9,5,9,9_1,9_3,9_0_0 +5443,2,42.0,4,0.0,99,111,2,0,54,6.0,0.0,0.0,538.3719060502248,0.0,265.39829130648343,13130.7,0,43,2,16913,201705443,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3186.2296618898927,0.0,400.0,150.0,0.0,23550.0,0,1,2,73.0,4,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,803.7701973567082,0.06121305013112082,0.034130369314509905,23550.0,6,3,6,6_0,6_2,6_0_0 +5444,1,40.0,3,269.0,99,111,1,0,42,2.0,0.0,0.0,484.5347154452023,88.46609710216114,0.0,16385.3,0,42,2,16916,201705444,,,448.0,327.0,1.0,0.0,3.0,2.0,3.0,1.6,848.9598038263009,0.0,360.0,0.0,0.0,18930.0,0,1,3,70.0,6,5.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,573.0008125473635,0.03497041937269159,0.030269456552951053,11831.25,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +5445,2,78.0,3,0.0,3,111,2,0,77,9.0,0.0,0.0,2518.2345905499265,51.310336319253466,0.0,31279.740315994113,0,41,1,16918,201705445,,,275.0,,0.0,3.0,4.0,0.0,1.0,1.0,2139.6030230201127,0.0,1871.0,0.0,0.0,38254.0,0,5,1,100.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2569.54492686918,0.08214725892578166,0.06717062076826423,38254.0,9,5,9,9_1,9_3,9_0_1 +5446,2,74.0,1,0.0,5,300,2,75,75,9.0,0.0,0.0,1111.7379859937141,0.0,2045.3361650019656,56601.48,31,30,1,16919,201705446,,,492.0,,0.0,2.0,4.0,0.0,2.0,1.5,1479.7281751538208,0.0,826.0,1156.0,0.0,56099.0,5,5,1,110.0,0,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3157.0741509956797,0.055777236761223904,0.056276834720684496,37399.333333333336,9,5,9,9_1,9_1,9_0_0 +5447,2,40.0,2,0.0,1,300,4,0,62,5.0,190.37472109666587,0.0,1425.3396212679702,44.23304855108057,0.0,24562.48,0,43,1,1692,201705447,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2327.2458784533073,0.0,1059.0,0.0,0.0,18988.0,0,1,2,100.0,0,1.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1659.9473909157166,0.06758061038281625,0.08742086533156292,18988.0,5,3,5,5_1,5_1,5_1_0 +5448,2,40.0,2,0.0,1,111,2,0,37,9.0,0.0,0.0,1113.0839157588398,0.0,0.0,29120.4,0,30,1,16920,201705448,,,238.0,,1.0,0.0,4.0,0.0,1.0,1.0,2686.7746946825814,0.0,827.0,0.0,0.0,37961.0,0,1,2,72.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1113.0839157588398,0.03822351052042004,0.029321775394716677,37961.0,9,5,9,9_1,9_3,9_1_0 +5449,2,72.0,1,0.0,4,111,2,77,74,6.0,0.0,0.0,500.68587262670906,0.0,123.8525359430256,31553.379999999997,44,41,1,16922,201705449,,,348.0,,0.0,3.0,4.0,0.0,2.0,1.5,1604.8792637955673,0.0,372.0,70.0,0.0,34678.0,5,5,1,87.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,624.5384085697347,0.019793074737785136,0.018009643248449583,23118.666666666668,6,3,6,6_1,6_3,6_0_1 +5450,2,56.0,2,0.0,9,300,4,56,38,9.0,0.0,0.0,2703.972898137254,53.079658261296686,0.0,48957.93556634675,50,60,1,16923,201705450,,,500.0,,3.0,2.0,5.0,2.0,4.0,2.5,1938.3126634816826,0.0,2009.0,0.0,0.0,79227.0,1,1,2,121.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2757.0525563985507,0.056314722516480537,0.034799406217559045,31690.8,8,4,8,8_1,8_0,8_0_0 +5451,2,59.0,1,0.0,8,111,2,46,46,10.0,0.0,0.0,874.0689152989037,0.0,1628.8086938472775,51867.752027330724,50,50,1,16924,201705451,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1725.3375677362528,1570.0,0.0,0.0,0.0,82133.0,1,1,3,140.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2502.8776091461814,0.04825498525224956,0.030473471188757033,45629.444444444445,10,5,10,10_1,10_2,10_0_0 +5452,2,59.0,3,0.0,7,111,2,56,75,1.0,0.0,0.0,703.9212671606689,0.0,1503.9236507367395,21939.100000000002,50,50,1,16925,201705452,,,423.0,,1.0,3.0,6.0,0.0,2.0,1.5,1761.1239970452173,0.0,523.0,850.0,0.0,12674.0,1,7,1,180.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2207.8449178974083,0.10063516360732246,0.17420269195971347,8449.333333333334,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +5453,2,60.0,1,0.0,6,112,2,33,47,10.0,0.0,693.9631597817199,556.7317931840151,0.0,1037.4577667817055,31537.679999999997,20,30,1,16926,201705453,,,600.0,,2.0,2.0,6.0,0.0,2.0,1.5,1697.9719379271073,1000.0,0.0,0.0,0.0,86545.0,1,1,1,110.0,9,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2288.1527197474406,0.07255298169514818,0.026438878268501248,57696.666666666664,10,5,10,10_1,10_0,10_0_0 +5454,2,30.0,2,0.0,6,111,2,47,47,9.0,0.0,0.0,1211.3367886130059,88.46609710216114,0.0,44308.28,31,30,1,16927,201705454,,,180.0,,2.0,0.0,4.0,0.0,2.0,1.5,2271.8098977901345,0.0,900.0,0.0,0.0,53086.0,1,1,2,89.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1299.8028857151671,0.029335439915861485,0.02448485261114356,35390.666666666664,9,5,9,9_1,9_3,9_0_0 +5455,2,83.0,1,0.0,1,400,2,0,72,9.0,3402.9481396029023,0.0,990.6043071324136,0.0,0.0,33104.16,0,41,1,16928,201705455,,,308.0,,0.0,5.0,7.0,0.0,1.0,1.0,2105.600160407639,0.0,736.0,0.0,0.0,35513.0,0,5,5,200.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4393.552446735316,0.13271904336903023,0.1237167360328701,35513.0,9,5,9,9_1,9_0,9_1_0 +5456,2,83.0,1,0.0,3,111,1,0,77,8.0,0.0,0.0,588.1713073598705,0.0,0.0,26678.31536887669,0,20,2,16930,201705456,,,,,0.0,3.0,5.0,0.0,1.0,1.0,5384.556230961631,0.0,437.0,0.0,0.0,29351.0,0,5,1,92.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,588.1713073598705,0.022046793406079894,0.02003922549009814,29351.0,8,4,8,8_0,8_4,8_0_1 +5457,1,61.0,9,305.0,5,111,1,0,77,3.0,0.0,0.0,605.6683943065029,0.0,0.0,15331.599999999999,0,41,2,16931,201705457,,,,103.0,0.0,1.0,4.0,0.0,1.0,1.0,2548.9943158388382,0.0,450.0,0.0,0.0,14590.0,0,4,3,41.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,605.6683943065029,0.039504578407113605,0.04151256986336552,14590.0,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +5458,2,43.0,1,0.0,1,112,4,46,37,10.0,0.0,0.0,174.97086946632305,176.9321942043223,0.0,50088.0,31,31,1,16933,201705458,,,200.0,,2.0,0.0,4.0,2.0,4.0,2.1,2199.005566539046,0.0,130.0,0.0,0.0,95198.0,1,1,2,110.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,351.90306367064534,0.007025696048367779,0.0036965384112128967,45332.38095238095,10,5,10,10_1,10_0,10_1_0 +5459,1,62.0,3,303.0,99,111,1,68,78,2.0,0.0,0.0,566.6364311178615,0.0,235.31981829174865,18227.102066597374,71,71,2,16934,201705459,,,,26.0,1.0,3.0,3.0,1.0,3.0,2.0,2810.366589054497,0.0,421.0,133.0,0.0,23986.0,1,5,3,63.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,801.9562494096102,0.043998011668528444,0.03343434709453891,11993.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5460,2,39.0,4,0.0,9,111,2,46,23,6.0,0.0,0.0,2249.0486375248142,247.7050718860512,0.0,30459.145846751297,31,43,1,16935,201705460,,,600.0,,2.0,0.0,4.0,1.0,3.0,1.8,2134.004131756903,0.0,1671.0,0.0,0.0,40466.0,1,1,2,120.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2496.7537094108657,0.08197057533959587,0.061700037300718276,22481.11111111111,6,3,6,6_1,6_2,6_0_0 +5461,1,49.0,4,304.0,4,111,1,0,56,3.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,8395.220000000001,0,41,8,16937,201705461,,,136.0,88.0,1.0,2.0,3.0,1.0,2.0,1.3,2152.1431167483747,600.0,0.0,0.0,0.0,19030.0,0,4,3,64.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,956.5137359794323,0.11393551758970369,0.050263464843900804,14638.461538461537,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +5462,2,54.0,4,0.0,6,112,2,0,21,7.0,1405.6000240970495,0.0,462.9998392031933,95.54338487033404,0.0,36010.259999999995,0,42,1,1694,201705462,,,360.0,,1.0,2.0,5.0,0.0,1.0,1.0,2442.392018587851,0.0,344.0,0.0,0.0,23208.0,0,1,2,160.0,9,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1964.1432481705767,0.05454398963435912,0.08463216339928373,23208.0,6,3,6,6_1,6_0,6_0_0 +5463,2,82.0,3,0.0,6,111,4,77,72,8.0,0.0,0.0,3455.0017070773174,0.0,0.0,51073.6,50,44,1,16940,201705463,,,287.0,,0.0,2.0,4.0,0.0,2.0,1.5,1992.627631857797,0.0,2567.0,0.0,0.0,43131.0,5,5,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3455.0017070773174,0.06764750687394892,0.08010483659264375,28754.0,8,4,8,8_1,8_4,8_0_0 +5464,2,33.0,3,0.0,2,221,2,43,55,7.0,95.18736054833293,0.0,2489.9700654822896,0.0,0.0,50308.5563223763,30,31,2,16941,201705464,,,570.0,740.0,2.0,0.0,3.0,1.0,3.0,1.8,4573.487632756739,0.0,1850.0,0.0,0.0,44583.0,1,1,3,63.0,1,2.0,4,7,1,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,2585.1574260306224,0.051386038777677924,0.05798527299712048,24768.333333333332,7,4,7,7_0,7_1,7_0_1 +5465,0,21.0,3,0.0,99,111,4,0,34,1.0,0.0,0.0,646.0462872602698,0.0,0.0,30828.487849749774,0,30,2,16942,201705465,,,,,1.0,0.0,3.0,0.0,2.0,1.5,3540.4766987038747,0.0,480.0,0.0,0.0,6021.0,0,1,5,44.0,8,7.0,5,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,646.0462872602698,0.020956145835272083,0.10729883528654206,4014.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +5466,2,52.0,2,0.0,4,112,5,0,52,6.0,0.0,582.9290542166448,605.6683943065029,0.0,0.0,10605.46,0,71,1,16943,201705466,,,90.0,,2.0,1.0,5.0,1.0,2.0,1.5,1886.5152205941831,0.0,450.0,0.0,0.0,31682.0,0,1,1,100.0,8,0.0,2,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1188.5974485231477,0.11207410602870105,0.03751649038959497,21121.333333333332,5,3,5,5_1,5_0,5_0_1 +5467,2,39.0,1,0.0,9,112,4,53,85,9.0,0.0,0.0,2376.9119652117424,0.0,0.0,39264.78,41,44,1,16944,201705467,,,200.0,,1.0,0.0,4.0,1.0,3.0,1.8,2363.2007397814455,0.0,1766.0,0.0,0.0,57714.0,1,1,2,120.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2376.9119652117424,0.06053547136165649,0.041184322091896985,32063.333333333332,9,5,9,9_1,9_0,9_0_0 +5468,2,81.0,1,0.0,6,111,4,86,74,10.0,0.0,0.0,1558.5866680154008,0.0,0.0,35789.42,30,12,2,16947,201705468,,,,,0.0,4.0,5.0,0.0,2.0,1.5,2400.5237863174284,0.0,1158.0,0.0,0.0,78441.0,6,5,1,122.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1558.5866680154008,0.04354881045894013,0.0198695410310348,52294.0,10,5,10,10_0,10_3,10_0_0 +5469,2,42.0,3,0.0,5,112,2,48,48,10.0,0.0,0.0,53.98533661488522,0.0,95.13724935432957,60593.72,42,43,1,16949,201705469,,,,301.0,2.0,0.0,5.0,2.0,4.0,2.1,1652.7435858859599,84.88052661587105,5.0,4.0,0.0,88962.0,1,1,3,120.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,149.12258596921478,0.002461023782154566,0.001676250376219226,42362.85714285714,10,5,10,10_1,10_1,10_0_0 +5470,2,57.0,3,0.0,1,120,6,22,63,4.0,0.0,0.0,605.6683943065029,4423.304855108057,0.0,28187.11665845403,50,50,1,1695,201705470,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2354.8341217831653,0.0,450.0,0.0,0.0,25560.0,1,1,2,100.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5028.97324941456,0.17841389420390552,0.19675169207412208,17040.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5471,2,81.0,3,0.0,99,111,4,0,77,6.0,0.0,0.0,889.6595747479964,0.0,0.0,11470.480315994115,0,71,2,16950,201705471,,,,453.0,0.0,2.0,2.0,0.0,1.0,1.0,3237.1069124906285,0.0,661.0,0.0,0.0,21540.0,0,5,3,50.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,889.6595747479964,0.07756079520989895,0.041302672922376805,21540.0,6,3,6,6_0,6_3,6_0_0 +5472,2,72.0,3,0.0,6,111,4,0,75,5.0,0.0,0.0,1884.3016711757866,0.0,0.0,38563.61087530163,0,30,2,16951,201705472,,,,,0.0,3.0,4.0,0.0,1.0,1.0,1842.4696167587858,0.0,1400.0,0.0,0.0,20016.0,0,5,2,90.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1884.3016711757866,0.04886216898279623,0.09413977174139622,20016.0,5,3,5,5_0,5_3,5_0_0 +5473,2,30.0,4,0.0,1,120,6,54,54,4.0,1427.810408224994,0.0,1615.1157181506744,0.0,0.0,28288.04,43,31,1,16952,201705473,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,1851.1557121208607,0.0,1200.0,0.0,0.0,36800.0,1,1,2,96.0,0,1.0,4,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3042.9261263756684,0.10756935179587092,0.08268820995586056,17523.809523809523,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +5474,2,63.0,4,0.0,8,111,2,85,34,9.0,0.0,0.0,2153.487624200899,0.0,0.0,51603.64000000001,41,10,1,16954,201705474,,,1500.0,,1.0,1.0,5.0,4.0,6.0,3.3,1948.8773854438953,0.0,1600.0,0.0,0.0,124960.0,6,1,1,124.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2153.487624200899,0.04173131244619369,0.017233415686626914,37866.66666666667,9,5,9,9_1,9_4,9_0_0 +5475,2,76.0,3,0.0,99,112,2,0,77,5.0,0.0,888.2728445206016,1063.284514449194,0.0,0.0,16575.52,0,71,1,16955,201705475,,,,,0.0,4.0,2.0,0.0,1.0,1.0,2990.532133244597,0.0,790.0,0.0,0.0,20807.0,0,5,1,80.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1951.5573589697956,0.11773732341246583,0.09379330797182658,20807.0,5,3,5,5_1,5_0,5_0_0 +5476,2,62.0,3,0.0,1,112,6,0,75,7.0,0.0,0.0,1615.1157181506744,0.0,0.0,13319.276974448147,0,50,1,16956,201705476,,,199.0,,0.0,0.0,3.0,0.0,1.0,1.0,3939.4583336398655,0.0,1200.0,0.0,0.0,25647.0,0,5,1,69.0,3,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1615.1157181506744,0.12126151601540616,0.06297483987018655,25647.0,7,4,7,7_1,7_0,7_1_0 +5477,2,33.0,4,0.0,6,111,2,34,43,8.0,0.0,0.0,349.9417389326461,0.0,1061.5931652259337,86276.88732515318,20,33,2,16957,201705477,,,,900.0,2.0,0.0,4.0,2.0,4.0,2.1,3118.2387949544745,0.0,260.0,600.0,0.0,59190.0,1,1,3,94.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1411.5349041585798,0.01636052189549797,0.023847523300533535,28185.714285714286,8,4,8,8_0,8_3,8_0_0 +5478,2,60.0,4,0.0,5,111,1,0,74,1.0,0.0,0.0,172.5868558870447,0.0,321.61190770232866,22713.339999999997,0,33,2,16959,201705478,,,,650.0,0.0,3.0,2.0,0.0,1.0,1.0,2507.6427282117506,310.0,0.0,0.0,0.0,10983.0,0,7,3,50.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,494.19876358937336,0.021758084173854372,0.04499670068190598,10983.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +5479,2,39.0,4,0.0,9,112,4,0,52,6.0,0.0,0.0,1161.53738730336,40.694404666994124,0.0,17670.04,0,43,1,16960,201705479,,,233.0,,1.0,0.0,3.0,0.0,1.0,1.0,2132.9933896965476,0.0,863.0,0.0,0.0,22090.0,0,1,2,80.0,7,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1202.2317919703542,0.06803786476829447,0.05442425495565207,22090.0,6,3,6,6_1,6_1,6_0_0 +5480,2,53.0,3,0.0,6,112,4,43,48,9.0,0.0,0.0,3364.824412813905,212.31863304518674,0.0,52962.420000000006,33,50,1,16961,201705480,,,,,2.0,4.0,6.0,1.0,3.0,1.8,2082.175338252865,0.0,2500.0,0.0,0.0,57673.0,1,1,2,150.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3577.1430458590917,0.0675411555185562,0.06202457035110176,32040.555555555555,9,5,9,9_1,9_0,9_0_0 +5481,2,32.0,2,0.0,7,111,4,0,33,10.0,0.0,0.0,524.9126083989692,0.0,0.0,29194.34,0,20,2,16962,201705481,,,,380.0,1.0,0.0,1.0,0.0,1.0,1.0,3095.3122929991555,0.0,390.0,0.0,0.0,54611.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,524.9126083989692,0.017979944345341226,0.009611847583801233,54611.0,10,5,10,10_0,10_4,10_0_0 +5482,2,48.0,3,0.0,7,112,2,48,53,8.0,0.0,416.377895869032,1305.5518721717951,0.0,831.5813127603147,55092.36000000001,43,42,1,16963,201705482,,,450.0,,2.0,0.0,4.0,2.0,4.0,2.3,1732.0613813784175,0.0,970.0,470.0,0.0,68714.0,1,1,1,90.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2553.511080801142,0.04634964050915846,0.037161438437598476,29875.652173913048,8,4,8,8_1,8_0,8_0_0 +5483,2,55.0,3,0.0,5,120,5,0,37,7.0,0.0,832.755791738064,1211.3367886130059,0.0,0.0,30749.490875301628,0,50,1,16964,201705483,,,600.0,,1.0,0.0,4.0,1.0,2.0,1.5,1825.130321418262,0.0,900.0,0.0,0.0,33400.0,0,1,2,120.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2044.09258035107,0.06647565608941221,0.06120037665721766,22266.666666666668,6,3,6,6_1,6_0,6_0_0 +5484,1,39.0,1,389.0,6,111,2,85,62,2.0,0.0,0.0,759.1043875308169,0.0,1392.4563683880165,38084.78,31,41,2,16965,201705484,,,,,1.0,0.0,3.0,3.0,5.0,2.4,2277.585774055759,0.0,564.0,787.0,0.0,27527.0,6,1,3,76.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2151.5607559188334,0.056493978852413834,0.07816183223449098,11469.583333333334,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5485,2,85.0,3,0.0,1,221,2,0,78,4.0,0.0,0.0,471.07541779394666,0.0,3839.4286142337937,13619.760000000002,0,71,1,16967,201705485,,,220.0,,0.0,4.0,4.0,0.0,1.0,1.0,2680.8137402235407,0.0,350.0,2170.0,0.0,17279.0,0,5,3,100.0,1,2.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4310.50403202774,0.3164889860047269,0.24946490144266106,17279.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +5486,2,68.0,2,0.0,1,111,4,78,78,6.0,0.0,0.0,1273.2495578087817,63.69558991355603,0.0,13858.061750603258,70,70,2,16968,201705486,,,110.0,550.0,0.0,7.0,2.0,0.0,2.0,1.5,2120.605632427535,0.0,946.0,0.0,0.0,30720.0,5,5,3,40.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1336.9451477223377,0.09647418028456532,0.04352034986075318,20480.0,5,3,5,5_0,5_3,5_1_0 +5487,2,40.0,4,0.0,1,111,2,0,34,6.0,0.0,0.0,910.8132136490487,0.0,1697.28090645487,37252.14,0,12,2,16969,201705487,,,,720.0,1.0,0.0,4.0,2.0,3.0,1.6,797.3871494647581,1636.0,0.0,0.0,0.0,36633.0,0,1,3,87.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2608.0941201039186,0.07001192737125757,0.07119520978636526,22895.625,6,3,6,6_0,6_3,6_1_0 +5488,2,47.0,1,0.0,8,112,2,43,62,5.0,0.0,0.0,1940.8307213110604,0.0,0.0,49377.22,31,50,1,16970,201705488,,,678.0,,2.0,0.0,8.0,3.0,5.0,2.8,2075.7634128452855,0.0,1442.0,0.0,0.0,56670.0,1,1,1,190.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1940.8307213110604,0.039306196689709555,0.03424793932082337,20239.285714285714,5,3,5,5_1,5_0,5_0_0 +5489,2,41.0,3,0.0,6,112,2,22,21,7.0,0.0,0.0,829.0927353173462,0.0,2123.1863304518674,16652.22,30,30,1,16972,201705489,,,440.0,,2.0,0.0,7.0,2.0,4.0,2.1,3702.262361120298,0.0,616.0,1200.0,0.0,51730.0,1,1,2,120.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2952.2790657692135,0.17729041928158606,0.05707092723311837,24633.333333333332,7,4,7,7_1,7_1,7_0_0 +5490,2,77.0,2,0.0,6,111,4,77,75,7.0,0.0,0.0,985.2205880719114,222.9345646974461,0.0,17145.920631988232,70,70,1,16975,201705490,,,140.0,,0.0,1.0,4.0,0.0,2.0,1.5,1743.5264824317474,0.0,732.0,0.0,0.0,39170.0,5,5,1,77.0,7,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1208.1551527693575,0.07046312523547826,0.030843889526917474,26113.333333333332,7,4,7,7_1,7_2,7_0_0 +5491,2,70.0,2,0.0,5,112,4,75,75,8.0,0.0,0.0,2325.766634136971,175.16287226227908,0.0,26780.059999999998,42,50,1,16976,201705491,,,360.0,,0.0,1.0,4.0,0.0,2.0,1.5,1571.2963728710479,0.0,1728.0,0.0,0.0,44289.0,5,5,1,95.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2500.92950639925,0.093387748436682,0.05646841216553207,29526.0,8,4,8,8_1,8_1,8_0_0 +5492,1,65.0,3,228.0,2,211,1,0,78,2.0,0.0,0.0,532.9881869897225,0.0,369.78828588703357,5896.499999999999,0,50,2,16977,201705492,,,,,0.0,2.0,2.0,0.0,1.0,1.0,1087.7989124634569,0.0,396.0,209.0,0.0,13007.0,0,5,3,32.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,902.7764728767561,0.15310378578423747,0.06940697108301346,13007.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +5493,2,71.0,3,0.0,4,221,2,69,71,3.0,2538.3296146222115,0.0,1061.9385846840685,247.7050718860512,0.0,24858.76,50,50,1,16978,201705493,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1407.4726144723613,0.0,789.0,0.0,0.0,23390.0,5,5,1,130.0,3,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3847.9732711923307,0.15479345193373809,0.1645136071480261,15593.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +5494,1,31.0,3,310.0,99,111,1,0,67,1.0,0.0,0.0,646.0462872602698,0.0,233.5504963497054,13971.160000000002,0,44,8,1698,201705494,,,,40.0,1.0,0.0,4.0,2.0,3.0,1.6,738.1386994229714,0.0,480.0,132.0,0.0,12981.0,0,4,3,81.0,6,4.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,879.5967836099752,0.06295803523901917,0.06776032536861376,8113.125,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5495,2,78.0,2,0.0,6,111,2,0,78,2.0,317.29120182777643,0.0,1502.057617880127,35.38643884086446,0.0,15769.436974448146,0,44,1,1699,201705495,,,279.0,,0.0,2.0,4.0,0.0,1.0,1.0,2274.1722495248614,0.0,1116.0,0.0,0.0,12707.0,0,5,1,100.0,8,6.0,1,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1854.735258548768,0.11761581986434076,0.14596169501446193,12707.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +5496,2,79.0,3,0.0,5,300,2,77,77,4.0,2279.7372851325736,0.0,608.360253836754,159.23897478389006,0.0,23594.300315994114,50,70,1,17,201705496,,,333.0,,0.0,3.0,4.0,0.0,2.0,1.5,2156.3222245494717,0.0,452.0,0.0,0.0,25400.0,5,5,1,90.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3047.336513753218,0.12915562118565932,0.11997387849422117,16933.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +5497,2,31.0,3,0.0,4,111,1,23,55,1.0,0.0,0.0,807.5578590753372,0.0,0.0,38982.380000000005,60,60,2,170,201705497,,,,,2.0,0.0,4.0,1.0,3.0,1.8,4605.571725683448,0.0,600.0,0.0,0.0,15709.0,1,1,2,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,807.5578590753372,0.020715971140688103,0.05140733713637642,8727.222222222223,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +5498,2,23.0,3,0.0,9,111,2,0,63,4.0,0.0,0.0,514.42017690203,0.0,958.6109765062956,10166.0,0,50,2,1703,201705498,,,,440.0,1.0,0.0,1.0,0.0,1.0,1.0,4471.940104924491,924.0,0.0,0.0,0.0,18992.0,0,1,3,44.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1473.0311534083257,0.14489781166715776,0.07756061254256139,18992.0,5,3,5,5_0,5_2,5_0_0 +5499,2,66.0,3,0.0,1,400,5,78,78,4.0,1681.6433696872152,138.792631956344,672.964882562781,318.4779495677801,0.0,23602.44,70,70,1,1704,201705499,,,129.0,,0.0,1.0,4.0,0.0,2.0,1.5,1892.7700505834055,0.0,500.0,0.0,0.0,24037.0,5,5,1,92.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2811.8788337741207,0.11913509085391684,0.11698127194633776,16024.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5500,2,39.0,2,0.0,7,120,2,43,37,7.0,1110.5192063972174,346.98157989085996,951.5723439437724,265.39829130648343,0.0,20178.16,33,30,1,1705,201705500,,,209.0,,2.0,0.0,3.0,1.0,3.0,1.8,2810.7056977293973,0.0,707.0,0.0,0.0,46267.0,1,1,2,100.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2674.4714215383333,0.1325428791098065,0.057805161811622395,25703.888888888887,7,4,7,7_1,7_0,7_0_0 +5501,2,60.0,3,0.0,2,111,2,77,78,6.0,0.0,0.0,834.4764543778484,0.0,1981.6405750884096,23961.979999999996,50,71,1,1706,201705501,,,248.0,,0.0,1.0,5.0,0.0,2.0,1.5,3183.974674332935,0.0,620.0,1120.0,0.0,32031.0,5,5,1,90.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2816.117029466258,0.11752438777873357,0.08791848613737498,21354.0,6,3,6,6_1,6_3,6_0_1 +5502,2,64.0,1,0.0,6,111,4,0,77,6.0,0.0,0.0,1547.8192298943961,0.0,0.0,54730.240000000005,0,41,1,1707,201705502,,,200.0,,1.0,1.0,4.0,1.0,2.0,1.5,2978.1181749969405,0.0,1150.0,0.0,0.0,34468.0,0,5,1,100.0,8,6.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1547.8192298943961,0.02828087780894796,0.04490597742527551,22978.666666666668,6,3,6,6_1,6_2,6_0_0 +5503,2,42.0,2,0.0,9,300,5,43,21,2.0,0.0,201.2493163366988,672.964882562781,141.54575536345783,0.0,42268.600000000006,20,20,1,1708,201705503,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2292.2416944940187,0.0,500.0,0.0,0.0,27749.0,1,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1015.7599542629376,0.02403107636077224,0.036605281425022076,13213.809523809523,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +5504,2,74.0,3,0.0,1,211,4,77,75,4.0,0.0,0.0,2032.3539453395986,0.0,237.08914023379188,23339.960000000003,50,71,2,1709,201705504,,,353.0,,0.0,2.0,4.0,0.0,2.0,1.5,7121.397886040937,0.0,1510.0,134.0,0.0,27047.0,5,5,1,120.0,2,3.0,3,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,2269.4430855733904,0.09723423200268509,0.08390738660751249,18031.333333333332,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +5505,2,34.0,2,0.0,9,111,2,46,31,10.0,0.0,0.0,1911.220266478298,0.0,0.0,56418.740000000005,31,10,1,171,201705505,,,360.0,,2.0,0.0,4.0,0.0,2.0,1.5,2552.8260016867707,0.0,1420.0,0.0,0.0,105498.0,1,1,2,103.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1911.220266478298,0.03387562831921269,0.018116175344350584,70332.0,10,5,10,10_1,10_3,10_0_0 +5506,2,50.0,3,0.0,99,111,2,0,43,6.0,0.0,0.0,527.7817399384463,0.0,983.5099629090568,33228.385846751306,0,20,2,1710,201705506,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3073.290197325395,948.0,0.0,0.0,0.0,24518.0,0,1,3,48.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1511.291702847503,0.04548194756788826,0.06164008903040636,24518.0,7,4,7,7_0,7_3,7_0_0 +5507,2,83.0,3,0.0,2,111,2,0,75,9.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,22363.64,0,41,1,1712,201705507,,,300.0,,0.0,1.0,4.0,0.0,1.0,1.0,2346.2624809791528,1200.0,0.0,0.0,0.0,35350.0,0,5,3,100.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1913.0274719588647,0.08554186491818258,0.0541167601685676,35350.0,9,5,9,9_1,9_2,9_0_1 +5508,2,49.0,4,0.0,99,111,4,0,85,2.0,0.0,0.0,1211.3367886130059,0.0,0.0,20271.055052882573,0,31,1,1713,201705508,,,,,0.0,0.0,4.0,1.0,2.0,1.3,1368.9241604265362,0.0,900.0,0.0,0.0,13944.0,0,4,1,125.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1211.3367886130059,0.05975696802425447,0.08687154249949841,10726.153846153846,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +5509,2,69.0,2,0.0,8,111,4,77,75,6.0,0.0,0.0,2543.807256087312,0.0,0.0,47694.24083603497,50,50,1,1715,201705509,,,295.0,,0.0,2.0,4.0,0.0,2.0,1.5,2415.083636826788,0.0,1890.0,0.0,0.0,37797.0,5,5,1,103.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2543.807256087312,0.0533357321868799,0.06730182967133137,25198.0,7,4,7,7_1,7_4,7_0_0 +5510,2,47.0,3,0.0,5,111,6,54,64,4.0,2075.084459953658,0.0,962.3397820647768,0.0,0.0,40149.8,31,50,1,1716,201705510,,,270.0,,2.0,0.0,6.0,2.0,4.0,2.1,1808.6100081915579,0.0,715.0,0.0,0.0,36503.0,4,1,2,120.0,7,5.0,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3037.424242018435,0.07565228823103565,0.08321026332132797,17382.38095238095,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5511,2,51.0,1,0.0,5,111,2,21,54,6.0,0.0,0.0,888.3136449828709,0.0,1818.8629564204332,41612.340000000004,44,42,2,1717,201705511,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2280.1515465473854,0.0,660.0,1028.0,0.0,41526.0,1,1,1,77.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2707.176601403304,0.0650570624339632,0.06519232773210287,23070.0,6,3,6,6_0,6_3,6_0_0 +5512,2,33.0,3,0.0,9,112,4,65,55,7.0,0.0,0.0,1170.9588956592388,0.0,0.0,28953.899999999998,41,31,1,1718,201705512,,,329.0,,2.0,0.0,3.0,1.0,3.0,1.8,1382.952656890517,0.0,870.0,0.0,0.0,44660.0,1,1,3,85.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1170.9588956592388,0.04044218207769036,0.026219411008939517,24811.11111111111,7,4,7,7_1,7_1,7_0_0 +5513,2,55.0,2,0.0,9,111,4,56,33,3.0,0.0,0.0,1884.3016711757866,0.0,0.0,56119.04206659738,60,20,2,1719,201705513,,,,,2.0,0.0,6.0,3.0,5.0,3.0,1972.421394419245,0.0,1400.0,0.0,0.0,42603.0,1,1,1,112.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1884.3016711757866,0.03357686806092761,0.04422931885491131,14201.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +5514,2,64.0,3,0.0,5,111,4,77,75,7.0,158.64560091388822,0.0,2967.775132101864,141.54575536345783,0.0,29905.459999999995,60,60,1,172,201705514,,,674.0,,0.0,2.0,5.0,0.0,2.0,1.5,1534.1385186349537,0.0,2205.0,0.0,0.0,40363.0,5,5,1,115.0,8,6.0,3,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3267.96648837921,0.10927658321855643,0.08096441018703293,26908.666666666668,7,4,7,7_1,7_2,7_0_0 +5515,2,39.0,1,0.0,9,111,2,0,37,10.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,36273.9,0,30,1,1723,201705515,,,,,1.0,0.0,4.0,2.0,3.0,1.6,780.2773922769567,1100.0,0.0,0.0,0.0,60502.0,0,1,3,100.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1753.6085159622926,0.04834353394485546,0.028984306567754664,37813.75,9,5,9,9_1,9_3,9_0_0 +5516,2,28.0,1,0.0,9,112,5,43,22,9.0,0.0,673.1442649882683,1211.3367886130059,0.0,0.0,41645.54,30,30,1,1725,201705516,,,125.0,,2.0,0.0,5.0,0.0,2.0,1.5,4582.113290542765,0.0,900.0,0.0,0.0,48549.0,1,1,2,130.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1884.4810536012742,0.04525048909442102,0.03881606322686923,32366.0,9,5,9,9_1,9_0,9_0_0 +5517,2,57.0,2,0.0,4,111,2,54,54,9.0,0.0,0.0,972.783686313852,0.0,2699.3968430433274,35611.258486773484,50,44,1,1726,201705517,,,,,2.0,2.0,6.0,0.0,2.0,1.5,1674.2934200874763,248.4270408647008,620.0,1380.0,0.0,54335.0,1,1,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3672.1805293571792,0.1031185272691522,0.06758407158106523,36223.333333333336,9,5,9,9_1,9_4,9_0_1 +5518,2,72.0,2,0.0,1,300,2,78,77,8.0,1745.1016100527704,0.0,1911.220266478298,132.69914565324171,0.0,17863.64,71,71,1,1727,201705518,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1866.2928924027726,0.0,1420.0,0.0,0.0,47258.0,5,5,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3789.0210221843104,0.21210800386619472,0.08017734610403128,31505.333333333332,8,4,8,8_1,8_0,8_1_0 +5519,2,73.0,2,0.0,4,111,4,86,74,8.0,487.0419948056368,371.9642536430019,1924.6795641295537,0.0,0.0,114282.02000000002,60,30,1,1728,201705519,,,,,0.0,0.0,5.0,0.0,2.0,1.5,2368.416477175473,0.0,1430.0,0.0,0.0,39960.0,6,5,1,125.0,6,5.0,3,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2783.6858125781923,0.02435803823364508,0.06966180712157638,26640.0,7,4,7,7_1,7_2,7_0_1 +5520,2,60.0,3,0.0,1,120,2,56,67,2.0,0.0,0.0,646.0462872602698,0.0,2388.5846217583507,20855.89840905729,50,71,1,1730,201705520,,,280.0,,2.0,3.0,4.0,0.0,2.0,1.5,1557.2873822269596,0.0,480.0,1350.0,0.0,16920.0,4,1,1,65.0,0,1.0,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3034.6309090186205,0.1455046840706101,0.17935170857084046,11280.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +5521,1,38.0,3,267.0,9,111,2,67,67,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,25466.199999999997,71,71,2,1732,201705521,,,,,2.0,0.0,4.0,3.0,5.0,2.4,1370.019037794471,1200.0,0.0,0.0,0.0,41794.0,1,1,3,80.0,4,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1913.0274719588647,0.07512025633816058,0.04577277771830561,17414.166666666668,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +5522,2,56.0,3,0.0,9,111,1,0,52,6.0,0.0,0.0,437.42717366580763,0.0,0.0,18556.427849749773,0,50,2,1733,201705522,,,,,1.0,2.0,3.0,0.0,1.0,1.0,1777.2889728509986,0.0,325.0,0.0,0.0,23151.0,0,1,2,52.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,437.42717366580763,0.02357281138415367,0.01889452609674777,23151.0,6,3,6,6_0,6_4,6_0_0 +5523,2,46.0,3,0.0,1,120,2,0,62,5.0,1269.1648073111057,0.0,807.5578590753372,116.7752481748527,0.0,12805.239999999998,0,50,1,1734,201705523,,,60.0,,1.0,2.0,4.0,0.0,1.0,1.0,2348.121871686999,0.0,600.0,0.0,0.0,18589.0,0,1,3,65.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2193.4979145612956,0.17129689990670194,0.11799978022278206,18589.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5524,1,35.0,3,213.0,5,112,1,85,62,2.0,0.0,0.0,403.7789295376686,0.0,353.8643884086446,17902.859999999997,31,71,2,1735,201705524,,,,187.0,1.0,0.0,4.0,3.0,5.0,2.4,3381.607769299489,0.0,300.0,200.0,0.0,31131.0,6,1,3,78.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,757.6433179463131,0.04231968065137711,0.02433726246976689,12971.25,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +5525,1,43.0,3,20.0,99,111,2,56,64,5.0,0.0,0.0,888.3136449828709,0.0,5555.67089801572,34256.939999999995,20,60,2,1738,201705525,,,360.0,455.0,2.0,3.0,3.0,2.0,4.0,2.1,2677.3690616553395,0.0,660.0,3140.0,0.0,41865.0,1,1,3,67.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,6443.984542998591,0.18810741832161867,0.1539229557625365,19935.714285714286,5,3,5,5_0,5_3,5_0_0 +5526,2,36.0,4,0.0,5,111,2,0,64,2.0,0.0,0.0,269.1859530251124,0.0,1769.3219420432229,10056.000000000002,0,31,1,1739,201705526,,,,,1.0,1.0,4.0,0.0,1.0,1.0,3564.212899677852,0.0,200.0,1000.0,0.0,12535.0,0,1,1,90.0,4,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2038.5078950683353,0.20271558224625447,0.16262528081917313,12535.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5527,1,47.0,3,182.0,99,111,2,0,22,1.0,0.0,0.0,1090.2031097517051,0.0,1061.5931652259337,10211.510875301628,0,31,2,1740,201705527,,,,,1.0,0.0,5.0,1.0,2.0,1.5,865.5893249212143,0.0,810.0,600.0,0.0,9936.0,0,1,3,103.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2151.796274977639,0.21072261502283118,0.21656564764267702,6624.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5528,2,31.0,2,0.0,10,111,1,54,38,10.0,0.0,0.0,538.3719060502248,0.0,0.0,51714.56,41,20,2,1741,201705528,,,,593.0,2.0,0.0,3.0,0.0,2.0,1.5,4107.024581861732,0.0,400.0,0.0,0.0,66340.0,1,1,3,65.0,7,5.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,538.3719060502248,0.010410451254931393,0.008115343775252106,44226.666666666664,10,5,10,10_0,10_2,10_0_0 +5529,2,61.0,3,0.0,5,112,5,86,75,3.0,0.0,69.396315978172,538.3719060502248,0.0,0.0,16280.039999999999,71,70,1,1742,201705529,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,1815.4739337158544,0.0,400.0,0.0,0.0,22330.0,5,5,1,100.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,607.7682220283967,0.03733210864521198,0.02721756480198821,14886.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5530,2,45.0,1,0.0,1,112,2,43,31,10.0,951.8736054833294,0.0,2153.487624200899,0.0,0.0,66094.54000000001,33,20,1,1743,201705530,,,,,2.0,2.0,5.0,1.0,3.0,1.8,2454.2766698736978,0.0,1600.0,0.0,0.0,74942.0,1,1,2,160.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3105.3612296842284,0.04698362723583866,0.04143686090155358,41634.444444444445,10,5,10,10_1,10_0,10_1_0 +5531,2,66.0,3,0.0,9,211,5,77,75,8.0,0.0,194.3096847388816,967.7235011252791,0.0,0.0,29650.920000000002,42,20,1,1745,201705531,,,90.0,,0.0,2.0,4.0,0.0,2.0,1.5,2254.794461346533,0.0,719.0,0.0,0.0,40043.0,5,5,2,100.0,2,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1162.0331858641607,0.03919045971808499,0.02901963354054793,26695.333333333332,7,4,7,7_1,7_1,7_0_0 +5532,2,75.0,1,0.0,5,111,4,74,74,10.0,31.729120182777642,0.0,1221.8428203616897,0.0,471.0377947753445,56165.6570141412,30,20,1,1746,201705532,,,108.0,,0.0,3.0,5.0,0.0,2.0,1.5,2086.726611277971,454.03081441719735,720.0,0.0,0.0,99244.0,5,5,1,110.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1724.609735319812,0.03070576980672719,0.017377471034216798,66162.66666666667,10,5,10,10_1,10_3,10_0_0 +5533,2,37.0,3,0.0,9,112,2,64,54,8.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,45835.82,43,20,1,1747,201705533,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2907.1635354998025,1000.0,0.0,0.0,0.0,49200.0,1,1,1,90.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1594.1895599657205,0.03478043067552234,0.03240222682857156,27333.333333333332,8,4,8,8_1,8_2,8_0_0 +5534,2,66.0,3,0.0,2,111,2,0,77,7.0,0.0,0.0,619.1276919577585,0.0,1769.3219420432229,22934.970875301628,0,70,1,1749,201705534,,,,,2.0,1.0,3.0,0.0,3.0,2.0,3409.4805572257587,0.0,460.0,1000.0,0.0,48601.0,0,5,1,75.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2388.4496340009814,0.10414007704596964,0.04914404300325058,24300.5,7,4,7,7_1,7_3,7_0_1 +5535,1,51.0,4,393.0,1,111,1,78,55,6.0,0.0,0.0,528.8952035248144,0.0,985.5848784426202,26631.84,50,43,2,175,201705535,,,750.0,,3.0,0.0,4.0,3.0,5.0,3.0,2653.028402721554,950.0,0.0,0.0,0.0,62880.0,5,1,3,71.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1514.4800819674347,0.05686727173065904,0.024085243033833248,20960.0,5,3,5,5_0,5_4,5_1_0 +5536,2,77.0,1,0.0,7,221,2,0,75,8.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,20531.49697444815,0,70,1,1750,201705536,,,475.0,,0.0,2.0,5.0,0.0,1.0,1.0,2664.454474831875,1200.0,0.0,0.0,0.0,27900.0,0,5,1,85.0,1,2.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1913.0274719588647,0.09317525528409666,0.06856729290175143,27900.0,8,4,8,8_1,8_1,8_0_0 +5537,2,71.0,3,0.0,1,400,2,0,77,2.0,0.0,0.0,1749.7086946632305,113.23660429076627,0.0,15131.198002984745,0,50,1,1752,201705537,,,140.0,,0.0,2.0,4.0,0.0,1.0,1.0,1925.1890179870652,0.0,1300.0,0.0,0.0,13380.0,0,5,1,109.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1862.9452989539968,0.12311948456338463,0.13923357989192803,13380.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +5538,2,38.0,3,0.0,99,111,2,64,46,3.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,26888.44,50,31,1,1753,201705538,,,900.0,,2.0,0.0,3.0,1.0,3.0,1.8,1744.8281117945294,750.0,0.0,0.0,0.0,28680.0,1,1,2,63.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1195.6421699742903,0.044466773452617195,0.04168905753048432,15933.333333333332,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +5539,2,65.0,2,0.0,6,221,4,77,75,8.0,0.0,277.585263912688,1668.9529087556969,58.38762408742635,0.0,25992.3,50,41,1,1755,201705539,,,525.0,,0.0,2.0,6.0,0.0,2.0,1.5,1638.4017253324437,0.0,1240.0,0.0,0.0,46439.0,5,5,1,120.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2004.9257967558112,0.07713537458231134,0.043173319769069345,30959.333333333332,8,4,8,8_1,8_2,8_0_0 +5540,2,47.0,3,0.0,5,112,2,42,47,9.0,1745.1016100527704,277.585263912688,1292.0925745205395,0.0,0.0,33020.61119129575,30,41,1,1757,201705540,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.1,1662.776580626265,0.0,960.0,0.0,0.0,74720.0,1,1,2,110.0,8,2.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3314.779448485998,0.10038516335396527,0.044362679985090976,35580.95238095238,9,5,9,9_1,9_1,9_0_0 +5541,2,54.0,3,0.0,99,112,6,0,37,10.0,0.0,0.0,807.5578590753372,0.0,0.0,77943.28000000001,0,31,2,1758,201705541,,,,1032.0,2.0,2.0,3.0,1.0,2.0,1.5,1646.3387872491926,0.0,600.0,0.0,0.0,74672.0,0,1,3,64.0,9,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.010360840075954426,0.01081473456014754,49781.333333333336,10,5,10,10_0,10_1,10_0_0 +5542,2,60.0,2,0.0,8,111,2,67,77,6.0,0.0,0.0,2018.894647688343,0.0,0.0,47255.560000000005,71,31,1,1759,201705542,,,166.0,,2.0,1.0,4.0,1.0,3.0,2.0,2972.2659387256376,0.0,1500.0,0.0,0.0,50020.0,5,5,2,81.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2018.894647688343,0.042722901764117124,0.04036174825446507,25010.0,7,4,7,7_1,7_4,7_0_0 +5543,2,78.0,3,0.0,5,120,2,0,71,3.0,3172.912018277764,0.0,516.8370298082158,212.31863304518674,0.0,8444.0,0,70,1,176,201705543,,,,,0.0,4.0,6.0,0.0,1.0,1.0,1750.5700631177829,0.0,384.0,0.0,0.0,14010.0,0,5,1,94.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3902.067681131167,0.4621112838857374,0.2785201770971568,14010.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5544,2,51.0,3,0.0,9,111,2,0,52,4.0,0.0,0.0,555.8689929968571,0.0,794.425551977407,22120.360315994116,0,50,2,1761,201705544,,,282.0,457.0,2.0,0.0,3.0,1.0,2.0,1.5,2371.938605617742,0.0,413.0,449.0,0.0,27109.0,0,1,3,75.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1350.2945449742642,0.06104306284730518,0.049809824964929146,18072.666666666668,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +5545,2,44.0,3,0.0,99,111,2,0,45,7.0,0.0,0.0,942.1508355878933,0.0,0.0,26910.32,0,30,2,1764,201705545,,,,360.0,1.0,0.0,1.0,0.0,1.0,1.0,5645.912508171239,0.0,700.0,0.0,0.0,27272.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,942.1508355878933,0.035010762993078245,0.03454645187693947,27272.0,7,4,7,7_0,7_4,7_0_0 +5546,2,43.0,3,0.0,9,112,5,43,53,8.0,0.0,555.170527825376,1238.255383915517,0.0,0.0,45901.69087530163,33,31,1,1765,201705546,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3700.697065100175,0.0,920.0,0.0,0.0,55762.0,1,1,2,120.0,9,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1793.425911740893,0.0390710206430736,0.03216215185504274,30978.888888888887,8,4,8,8_1,8_1,8_0_0 +5547,1,37.0,4,187.0,99,111,1,0,52,3.0,0.0,0.0,787.3689125984538,0.0,297.2460862632615,25403.2316935026,0,60,2,1766,201705547,,,,213.0,1.0,0.0,5.0,4.0,5.0,2.6,802.145978518734,0.0,585.0,168.0,0.0,37756.0,0,1,3,87.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1084.6149988617153,0.042695945616207875,0.028726957274650793,14521.538461538461,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +5548,2,82.0,2,0.0,6,112,4,75,72,10.0,0.0,0.0,5001.475007206588,212.31863304518674,0.0,39706.98384973604,41,44,1,1767,201705548,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2490.137132614105,0.0,3716.0,0.0,0.0,76100.0,5,5,1,151.0,9,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,5213.793640251775,0.1313067157148587,0.06851240000330848,50733.333333333336,10,5,10,10_1,10_1,10_0_0 +5549,2,67.0,4,0.0,1,300,2,77,69,4.0,1586.456009138882,0.0,730.8398624631801,247.7050718860512,0.0,28511.440000000002,70,50,1,1768,201705549,,,330.0,,1.0,2.0,4.0,0.0,2.0,1.5,2035.2851546640602,0.0,543.0,0.0,0.0,26223.0,5,5,1,80.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2565.000943488113,0.08996392127118492,0.0978149313003132,17482.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5550,2,54.0,4,0.0,7,120,6,52,69,7.0,0.0,0.0,2987.9640785787474,70.77287768172891,0.0,32463.46,50,50,1,1769,201705550,,,436.0,,4.0,1.0,5.0,2.0,4.0,2.5,1824.378537197935,0.0,2220.0,0.0,0.0,60804.0,1,1,1,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3058.7369562604763,0.09422091657082998,0.05030486409217282,24321.6,7,4,7,7_1,7_0,7_0_0 +5551,2,40.0,3,0.0,9,300,2,62,43,6.0,0.0,0.0,3051.222777539649,185.7788039145384,0.0,45543.76000000001,50,33,1,177,201705551,,,381.0,,2.0,0.0,5.0,3.0,5.0,2.4,1731.4250168028175,0.0,2267.0,0.0,0.0,52655.0,1,1,2,99.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3237.0015814541875,0.07107453537991125,0.06147567337297859,21939.583333333336,6,3,6,6_1,6_0,6_0_0 +5552,1,34.0,2,27.0,6,111,2,54,45,6.0,0.0,0.0,565.290501352736,0.0,1286.297051865423,27781.78,41,41,1,1771,201705552,,,298.0,639.0,2.0,0.0,5.0,2.0,4.0,2.1,1707.2093578531467,0.0,420.0,727.0,0.0,47756.0,4,1,3,98.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1851.587553218159,0.06664754933694526,0.038771830832108195,22740.95238095238,6,3,6,6_1,6_3,6_0_0 +5553,1,37.0,3,376.0,99,211,1,0,67,2.0,0.0,0.0,646.0462872602698,37.155760782907684,0.0,15276.61665845403,0,31,2,1775,201705553,,,438.0,,1.0,0.0,3.0,2.0,3.0,1.6,622.7771518169059,0.0,480.0,0.0,0.0,20264.0,0,1,3,76.0,2,2.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,683.2020480431775,0.04472207841028044,0.03371506356312561,12665.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +5554,2,38.0,1,0.0,5,111,1,72,63,9.0,0.0,0.0,601.6306050111261,0.0,0.0,21955.940000000002,44,50,2,1776,201705554,,,,,1.0,1.0,5.0,0.0,2.0,1.5,2561.9237969782544,0.0,447.0,0.0,0.0,50284.0,6,1,1,90.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,601.6306050111261,0.027401723862022127,0.011964652871910073,33522.666666666664,9,5,9,9_0,9_3,9_0_0 +5555,2,57.0,3,0.0,3,111,1,68,52,8.0,0.0,0.0,767.1799661215703,169.8549064361494,0.0,41189.33333333333,71,50,2,178,201705555,,,510.0,651.0,3.0,0.0,4.0,1.0,3.0,2.0,2384.8029917863782,0.0,570.0,0.0,0.0,59811.0,1,1,3,76.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,937.0348725577196,0.022749454694363905,0.01566659765858654,29905.5,8,4,8,8_0,8_2,8_0_1 +5556,1,53.0,3,234.0,99,111,2,0,45,5.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,18908.94,0,31,8,1780,201705556,,,,366.0,1.0,2.0,3.0,3.0,4.0,1.9,1336.7508340235984,1500.0,0.0,0.0,0.0,36848.0,0,1,3,55.0,6,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2391.2843399485805,0.1264631618667456,0.0648959058822346,19393.684210526317,5,3,5,5_0,5_2,5_0_0 +5557,2,56.0,3,0.0,1,112,2,0,00,10.0,0.0,0.0,2708.0106874326307,0.0,4508.232308326132,50041.78468577103,0,31,1,1781,201705557,,,485.0,,1.0,2.0,5.0,0.0,1.0,1.0,1420.8547835618172,0.0,2012.0,2548.0,0.0,46230.0,0,1,1,120.0,8,1.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,7216.242995758763,0.14420434924677342,0.15609437585461308,46230.0,10,5,10,10_1,10_1,10_1_0 +5558,2,71.0,2,0.0,2,111,2,0,78,4.0,0.0,0.0,399.7411402422919,0.0,736.0379278899808,21707.24,0,50,2,1782,201705558,,,,380.0,0.0,3.0,2.0,0.0,1.0,1.0,2819.2338027532337,0.0,297.0,416.0,0.0,18258.0,0,5,3,38.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1135.7790681322726,0.05232259228406157,0.06220720057685796,18258.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +5559,2,57.0,2,0.0,5,111,6,0,34,9.0,1031.1964059402735,0.0,323.0231436301349,0.0,79.61948739194503,38668.04000000001,0,20,1,1783,201705559,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1561.5081643456656,0.0,240.0,45.0,0.0,39318.0,0,1,1,80.0,7,5.0,1,5,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1433.8390369623535,0.0370807270542379,0.03646775107997237,39318.0,9,5,9,9_1,9_2,9_0_0 +5560,2,40.0,1,0.0,4,111,1,35,37,10.0,0.0,0.0,403.7789295376686,0.0,0.0,63727.4316935026,20,20,2,1784,201705560,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3410.085622844008,0.0,300.0,0.0,0.0,82429.0,1,1,2,85.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,403.7789295376686,0.006336030164837732,0.004898505738728708,39251.90476190476,9,5,9,9_0,9_4,9_0_1 +5561,2,56.0,3,0.0,1,112,4,0,,1.0,0.0,0.0,1628.57501580193,44.23304855108057,0.0,16423.5,0,71,1,1785,201705561,,,266.0,,0.0,0.0,4.0,0.0,1.0,1.0,1561.7932114415619,0.0,1210.0,0.0,0.0,9680.0,0,8,1,90.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1672.8080643530106,0.10185454162346702,0.1728107504496912,9680.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +5562,2,55.0,3,0.0,8,112,4,67,54,4.0,0.0,0.0,1099.6246181075842,191.08676974066807,0.0,31302.18,50,42,1,1786,201705562,,,530.0,,2.0,0.0,4.0,2.0,4.0,2.3,1651.9280195410427,0.0,817.0,0.0,0.0,40485.0,1,1,2,79.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1290.7113878482523,0.04123391367145203,0.031881224844961156,17602.17391304348,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +5563,2,57.0,4,0.0,1,111,2,0,77,2.0,0.0,0.0,471.07541779394666,0.0,594.492172526523,9849.4,0,71,1,1787,201705563,,,240.0,,0.0,4.0,6.0,0.0,1.0,1.0,2291.481900864758,0.0,350.0,336.0,0.0,10650.0,0,6,1,100.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1065.5675903204697,0.10818604080659427,0.1000532948657718,10650.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +5564,2,74.0,3,0.0,5,112,2,72,72,2.0,3172.912018277764,0.0,807.5578590753372,106.15931652259337,0.0,19912.802382591493,70,50,1,1788,201705564,,,400.0,,0.0,2.0,5.0,0.0,2.0,1.5,1639.5143820535852,0.0,600.0,0.0,0.0,19346.0,5,5,1,110.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4086.629193875695,0.20522622157132323,0.2112389741484387,12897.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +5565,2,77.0,2,0.0,4,111,2,74,72,4.0,1903.7472109666587,0.0,1057.9007953886917,0.0,0.0,45652.730875301626,70,70,1,1789,201705565,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1476.0089006161234,0.0,786.0,0.0,0.0,28613.0,5,5,1,137.0,6,4.0,3,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2961.6480063553504,0.06487340296125894,0.1035070774247842,19075.333333333332,5,3,5,5_1,5_2,5_0_1 +5566,2,81.0,3,0.0,2,111,1,72,72,8.0,0.0,0.0,1026.2416930949335,0.0,2311.07794548555,32048.008250883522,30,60,8,179,201705566,747.0,747.0,200.0,,0.0,2.0,4.0,0.0,2.0,1.5,3059.3125417628594,953.6720302826976,368.0,747.0,0.0,47513.0,5,5,1,90.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,3337.3196385804836,0.10413500934144568,0.07024013719572504,31675.333333333332,8,4,8,8_0,8_2,8_0_1 +5567,2,37.0,3,0.0,4,112,1,64,53,9.0,0.0,0.0,646.0462872602698,0.0,1698.549064361494,111510.78,42,30,1,1792,201705567,,,700.0,,2.0,0.0,5.0,1.0,3.0,1.8,1552.8362382790474,0.0,480.0,960.0,0.0,56910.0,1,1,2,110.0,10,3.0,4,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2344.5953516217637,0.02102572819974682,0.04119830173294261,31616.666666666664,8,4,8,8_1,8_1,8_0_1 +5568,2,67.0,2,0.0,1,111,2,75,74,9.0,0.0,0.0,895.1192380356277,0.0,2927.9801201523524,23012.327058197978,50,30,1,1793,201705568,,,182.0,,0.0,2.0,4.0,0.0,2.0,1.5,1776.3996361316429,988.9164314018408,256.0,1075.0,0.0,49601.0,5,5,1,110.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3823.09935818798,0.1661326709167393,0.077077062119473,33067.333333333336,9,5,9,9_1,9_3,9_1_0 +5569,2,49.0,2,0.0,1,112,2,42,37,8.0,0.0,0.0,1615.1157181506744,0.0,0.0,87027.45169350259,12,12,1,1794,201705569,,,,,2.0,0.0,10.0,4.0,6.0,3.1,1733.3624505431515,0.0,1200.0,0.0,0.0,84090.0,1,1,1,350.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1615.1157181506744,0.01855869253576292,0.01920698915626917,27125.8064516129,7,4,7,7_1,7_0,7_1_0 +5570,1,37.0,4,271.0,1,300,4,85,55,2.0,0.0,0.0,1480.522741638118,95.54338487033404,0.0,13602.840000000002,71,50,1,1795,201705570,,,310.0,,1.0,1.0,4.0,1.0,3.0,1.8,2853.303283099483,0.0,1100.0,0.0,0.0,23090.0,6,1,3,95.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1576.066126508452,0.11586302025962607,0.0682575195542855,12827.777777777777,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +5571,2,56.0,1,0.0,4,120,2,75,34,9.0,0.0,555.170527825376,764.4881065913191,2873.378833878194,0.0,69846.76,31,30,1,1797,201705571,,,177.0,,1.0,1.0,3.0,0.0,2.0,1.5,1436.9687661422083,0.0,568.0,0.0,0.0,51858.0,5,1,1,70.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4193.03746829489,0.060031953784182544,0.08085613537534979,34572.0,9,5,9,9_1,9_0,9_0_1 +5572,2,68.0,3,0.0,5,112,5,78,75,6.0,0.0,721.7216861729887,1113.0839157588398,176.9321942043223,0.0,14855.455383505434,71,71,1,1798,201705572,,,260.0,,1.0,2.0,4.0,1.0,3.0,2.0,1944.740968929161,0.0,827.0,0.0,0.0,41515.0,5,5,1,90.0,8,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2011.7377961361508,0.13542080967574097,0.04845809457150791,20757.5,5,3,5,5_1,5_1,5_0_0 +5573,2,45.0,2,0.0,9,112,1,85,21,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,51030.02,50,43,1,18,201705573,,,800.0,,1.0,0.0,5.0,3.0,5.0,2.8,2028.9885385804282,0.0,1200.0,0.0,0.0,61490.0,6,1,2,200.0,9,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.031650305411416155,0.026266315143123668,21960.714285714286,6,3,6,6_1,6_0,6_0_0 +5574,2,67.0,2,0.0,1,112,2,77,69,9.0,0.0,0.0,730.8398624631801,61.9262679715128,0.0,33460.579999999994,50,50,1,180,201705574,,,,550.0,1.0,2.0,4.0,0.0,2.0,1.5,1676.6216912052168,0.0,543.0,0.0,0.0,50198.0,5,1,3,79.0,8,3.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,792.766130434693,0.02369254001080355,0.01579278318727226,33465.333333333336,9,5,9,9_1,9_1,9_1_0 +5575,2,44.0,3,0.0,1,221,2,68,21,3.0,0.0,0.0,1009.4473238441715,0.0,0.0,35290.78,30,71,1,1800,201705575,,,144.0,,2.0,0.0,7.0,3.0,5.0,2.4,2006.8604385780511,0.0,750.0,0.0,0.0,33192.0,1,1,2,100.0,1,3.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1009.4473238441715,0.028603712466660457,0.03041236815630789,13830.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +5576,0,28.0,1,0.0,1,221,2,31,37,8.0,0.0,0.0,993.2961666626647,0.0,0.0,58602.52,30,0,2,1801,201705576,,,416.0,,2.0,0.0,2.0,0.0,2.0,1.5,7042.895987117947,0.0,738.0,0.0,0.0,42811.0,1,1,5,45.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,993.2961666626647,0.01694971763437246,0.023201891258383706,28540.666666666668,8,4,8,8_0,8_1,8_1_0 +5577,2,30.0,1,0.0,1,120,4,47,62,7.0,0.0,610.6875806079136,1281.325136399535,0.0,0.0,46424.650875301624,30,31,1,1802,201705577,,,170.0,,2.0,0.0,6.0,2.0,4.0,2.1,2369.688864212029,0.0,952.0,0.0,0.0,57542.0,1,1,2,140.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1892.0127170074486,0.04075448455367961,0.03288055189266012,27400.952380952378,8,4,8,8_1,8_0,8_1_0 +5578,2,47.0,2,0.0,7,112,2,42,13,8.0,0.0,0.0,2998.953710292693,0.0,6027.987116986357,65174.57846007252,20,50,1,1803,201705578,,,510.0,,2.0,0.0,6.0,3.0,5.0,2.8,1611.7241685651065,1035.1126702695867,1800.0,2800.0,0.0,83627.0,1,1,1,130.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,9026.94082727905,0.13850401553128827,0.10794289915074139,29866.785714285717,8,4,8,8_1,8_0,8_0_0 +5579,2,32.0,4,0.0,99,112,2,55,46,5.0,0.0,0.0,1843.9237782220198,191.08676974066807,0.0,40758.78,31,44,1,1804,201705579,,,690.0,548.0,2.0,0.0,4.0,2.0,4.0,2.1,2587.7950494150286,0.0,1370.0,0.0,0.0,41210.0,1,1,3,78.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2035.010547962688,0.04992815162678294,0.049381474107320744,19623.809523809523,5,3,5,5_1,5_0,5_0_0 +5580,2,48.0,3,0.0,6,112,2,21,67,6.0,0.0,402.4986326733976,2557.266553738568,0.0,0.0,59739.25214336787,44,50,1,1805,201705580,,,540.0,,3.0,0.0,6.0,2.0,4.0,2.5,1660.1437908316905,0.0,1900.0,0.0,0.0,58301.0,1,1,2,123.0,8,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2959.7651864119653,0.049544731147769354,0.05076697117394153,23320.4,6,3,6,6_1,6_1,6_0_0 +5581,2,63.0,2,0.0,1,112,5,71,71,4.0,0.0,97.1548423694408,2664.9409349486127,247.7050718860512,0.0,26947.670875301625,70,70,1,1806,201705581,,,90.0,,0.0,2.0,6.0,0.0,2.0,1.5,1584.903678976976,0.0,1980.0,0.0,0.0,24623.0,5,5,1,161.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3009.8008492041045,0.11169057478591518,0.12223534293969478,16415.333333333332,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5582,2,82.0,3,0.0,7,111,2,0,77,8.0,0.0,0.0,403.7789295376686,0.0,1663.1626255206295,28601.05087530163,0,70,1,1807,201705582,,,92.0,,0.0,1.0,3.0,0.0,1.0,1.0,2273.914968367125,0.0,300.0,940.0,0.0,29317.0,0,5,1,90.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2066.941555058298,0.07226802833469313,0.07050317409892888,29317.0,8,4,8,8_1,8_3,8_0_0 +5583,2,73.0,3,0.0,8,221,2,74,75,8.0,0.0,0.0,1453.6041463356069,0.0,1889.635834102162,38946.02784974978,70,50,1,1808,201705583,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1491.194992828582,0.0,1080.0,1068.0,0.0,41497.0,5,5,1,132.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3343.239980437769,0.08584290016264776,0.08056582356405931,27664.666666666668,8,4,8,8_1,8_1,8_0_0 +5584,1,37.0,3,270.0,9,300,4,22,54,3.0,0.0,0.0,1480.522741638118,37.155760782907684,0.0,35765.936449851535,50,43,1,181,201705584,,,500.0,,2.0,0.0,4.0,1.0,3.0,1.8,2405.1194083510827,0.0,1100.0,0.0,0.0,25520.0,1,1,2,125.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1517.6785024210258,0.04243362967859117,0.05947016075317499,14177.777777777777,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +5585,2,56.0,2,0.0,1,221,5,0,75,1.0,0.0,485.77421184720396,593.5550264203728,106.15931652259337,0.0,22800.899999999998,0,50,1,1810,201705585,,,103.0,,0.0,1.0,5.0,0.0,1.0,1.0,2462.36865496312,0.0,441.0,0.0,0.0,10745.0,0,7,5,150.0,1,1.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1185.4885547901702,0.05199305969458093,0.11032932106004376,10745.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +5586,2,22.0,4,0.0,1,111,4,54,67,8.0,0.0,0.0,1658.1854706346924,0.0,0.0,45611.3,43,71,2,1811,201705586,,,270.0,550.0,2.0,0.0,2.0,0.0,2.0,1.5,6595.724636787722,0.0,1232.0,0.0,0.0,41668.0,1,1,3,50.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1658.1854706346924,0.036354707509645465,0.03979517784954143,27778.666666666668,8,4,8,8_0,8_3,8_1_0 +5587,2,32.0,2,0.0,5,111,1,38,38,10.0,0.0,0.0,1076.7438121004495,0.0,0.0,59030.25999999999,30,20,2,1812,201705587,,,,1200.0,2.0,0.0,2.0,1.0,3.0,1.8,5470.246154625784,0.0,800.0,0.0,0.0,91124.0,1,1,3,52.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1076.7438121004495,0.01824053988751616,0.011816248322071567,50624.444444444445,10,5,10,10_0,10_4,10_0_0 +5589,2,65.0,1,0.0,5,112,2,77,75,4.0,0.0,277.585263912688,729.4939326980546,0.0,1728.6275373762287,23548.760000000002,50,50,1,1815,201705589,,,361.0,,0.0,2.0,4.0,0.0,2.0,1.5,1987.6639058765018,0.0,542.0,977.0,0.0,25209.0,5,5,1,80.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2735.7067339869714,0.11617200795230709,0.10852103351925786,16806.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5590,1,36.0,4,345.0,99,300,1,0,56,1.0,0.0,0.0,807.5578590753372,552.0284459174856,0.0,8266.280315994116,0,50,2,1816,201705590,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1106.9856187892167,0.0,600.0,0.0,0.0,12870.0,0,4,3,81.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1359.5863049928228,0.16447377212241523,0.10563996153790386,9900.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +5591,0,36.0,5,0.0,4,112,6,0,56,1.0,126.91648073111057,0.0,0.0,0.0,0.0,9438.5,0,71,1,1818,201705591,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1100.7279530295245,0.0,0.0,0.0,0.0,360.0,0,1,5,70.0,8,1.0,2,8,1,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,126.91648073111057,0.013446679104848288,0.3525457798086405,276.9230769230769,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +5592,2,64.0,3,0.0,1,111,2,77,77,8.0,0.0,0.0,823.7090162568439,0.0,884.6609710216114,22917.58282262692,71,71,2,1819,201705592,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2983.4613041424304,0.0,612.0,500.0,0.0,45961.0,5,5,1,40.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1708.3699872784555,0.07454407388861939,0.037169991672906494,30640.666666666668,8,4,8,8_0,8_3,8_1_0 +5593,2,63.0,4,0.0,9,112,2,0,,2.0,0.0,0.0,1749.7086946632305,0.0,0.0,19514.225846751302,0,50,1,182,201705593,,,95.0,,0.0,0.0,3.0,0.0,1.0,1.0,1227.522399667913,0.0,1300.0,0.0,0.0,12050.0,0,5,1,80.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1749.7086946632305,0.08966323893163916,0.1452040410508905,12050.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +5594,2,57.0,3,0.0,4,111,1,0,67,4.0,0.0,0.0,403.7789295376686,0.0,0.0,18833.64,0,50,2,1820,201705594,,,,514.0,1.0,0.0,2.0,0.0,1.0,1.0,2683.839488808897,0.0,300.0,0.0,0.0,18144.0,0,1,3,46.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,403.7789295376686,0.021439240079860748,0.02225412971437768,18144.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +5595,2,47.0,3,0.0,5,211,2,47,43,8.0,0.0,416.377895869032,1009.4473238441715,3574.0303229273104,0.0,70907.94,31,20,1,1822,201705595,,,,,4.0,1.0,7.0,3.0,5.0,3.0,1824.4464940341143,0.0,750.0,0.0,0.0,91629.0,1,1,2,170.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4999.855542640514,0.0705119277564757,0.054566300435893805,30543.0,8,4,8,8_1,8_2,8_0_0 +5596,2,46.0,3,0.0,5,300,4,56,63,3.0,95.18736054833293,0.0,942.1508355878933,63.69558991355603,0.0,38704.880000000005,50,50,1,1825,201705596,,,350.0,,2.0,3.0,4.0,1.0,3.0,2.0,695.4494765380462,0.0,700.0,0.0,0.0,30840.0,1,1,3,67.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1101.0337860497823,0.02844689832521848,0.0357014846319644,15420.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5597,2,74.0,2,0.0,1,400,5,0,74,4.0,0.0,208.188947934516,524.9126083989692,127.39117982711205,0.0,29160.92,0,20,1,1826,201705597,,,96.0,,0.0,1.0,6.0,0.0,1.0,1.0,2365.0009222629305,0.0,390.0,0.0,0.0,16111.0,0,5,1,150.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,860.4927361605972,0.02950842209918608,0.05341026231522545,16111.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5598,2,36.0,3,0.0,9,111,1,52,43,9.0,0.0,0.0,767.1799661215703,0.0,1415.4575536345783,30134.940000000002,50,50,2,1827,201705598,,,,512.0,2.0,0.0,4.0,3.0,5.0,2.4,2684.8095322274335,0.0,570.0,800.0,0.0,76953.0,1,1,3,87.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2182.6375197561483,0.07242879925283237,0.028363254450848547,32063.75,9,5,9,9_0,9_3,9_0_0 +5599,2,43.0,1,0.0,5,300,6,52,37,9.0,0.0,832.755791738064,2153.487624200899,0.0,0.0,66383.24739300215,50,31,1,1829,201705599,,,450.0,,2.0,0.0,6.0,2.0,4.0,2.1,2041.4126918498512,0.0,1600.0,0.0,0.0,83506.0,1,1,2,180.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2986.243415938963,0.04498489503322732,0.03576082456277349,39764.7619047619,9,5,9,9_1,9_0,9_0_0 +5600,1,61.0,3,272.0,6,111,1,0,67,2.0,0.0,0.0,1056.1415723215853,0.0,448.1817552496967,8369.880000000001,0,71,8,1831,201705600,606.0,606.0,,25.0,1.0,4.0,4.0,0.0,1.0,1.0,3849.4886580404886,432.0,606.0,0.0,0.0,11484.0,0,4,3,52.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1504.3233275712819,0.17973057290800845,0.130992975232609,11484.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5602,2,69.0,2,0.0,4,111,2,74,74,8.0,0.0,0.0,726.8020731678034,0.0,1804.7083808840873,22499.559999999998,30,20,1,1833,201705602,,,660.0,,0.0,3.0,4.0,0.0,2.0,1.5,1409.787018532309,0.0,540.0,1020.0,0.0,51252.0,5,5,1,120.0,7,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2531.5104540518905,0.11251377600503702,0.04939339838546575,34168.0,9,5,9,9_1,9_2,9_0_1 +5603,2,55.0,3,0.0,3,111,2,77,56,2.0,0.0,0.0,1884.3016711757866,0.0,1889.635834102162,20525.1,50,50,2,1834,201705603,,,,,1.0,2.0,3.0,0.0,2.0,1.5,3365.936361284335,0.0,1400.0,1068.0,0.0,19017.0,5,4,1,68.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3773.9375052779487,0.18386938457196061,0.19845072857327384,12678.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +5604,2,67.0,2,0.0,6,112,2,77,75,6.0,0.0,117.97373716289239,1154.807738477732,120.31389205893916,0.0,28767.9,50,50,1,1835,201705604,,,260.0,,0.0,3.0,10.0,0.0,2.0,1.5,2783.314051968408,0.0,858.0,0.0,0.0,31470.0,5,5,1,290.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1393.0953676995637,0.0484253410120156,0.04426740920557876,20980.0,5,3,5,5_1,5_0,5_0_0 +5605,2,33.0,3,0.0,9,300,6,62,63,3.0,634.5824036555529,0.0,995.9880261929159,796.1948739194503,0.0,26539.2,50,50,1,1838,201705605,,,480.0,,2.0,0.0,5.0,2.0,4.0,2.1,2725.3898256350826,0.0,740.0,0.0,0.0,33070.0,4,1,2,100.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2426.7653037679192,0.09144078584764873,0.07338268230323312,15747.619047619048,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5606,2,64.0,5,0.0,6,111,2,77,78,5.0,0.0,27.7585263912688,1012.1391833744226,0.0,0.0,27059.46,70,50,1,1839,201705606,,,220.0,,0.0,2.0,4.0,0.0,2.0,1.5,1592.4963452747345,0.0,752.0,0.0,0.0,30627.0,5,5,1,99.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1039.8977097656914,0.038430098374679,0.03395362620451534,20418.0,5,3,5,5_1,5_2,5_0_0 +5607,2,32.0,1,0.0,4,111,2,34,37,10.0,0.0,0.0,689.1698769348927,0.0,84.9274532180747,85893.62,10,20,2,184,201705607,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4360.74253922939,0.0,512.04,48.0,0.0,99924.0,1,1,1,60.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,774.0973301529674,0.009012279726398393,0.007746860915825701,66616.0,10,5,10,10_0,10_3,10_0_1 +5608,2,46.0,2,0.0,7,111,2,43,65,9.0,0.0,360.86084308649436,1127.8891431752209,0.0,1940.9461704214154,132338.32,33,71,1,1840,201705608,,,495.0,,2.0,1.0,7.0,1.0,3.0,2.0,2415.8023026571855,0.0,838.0,1097.0,0.0,66785.0,1,1,1,110.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3429.6961566831305,0.025916122833379858,0.05135428848818044,33392.5,9,5,9,9_1,9_3,9_0_0 +5609,2,46.0,3,0.0,1,111,2,52,47,7.0,0.0,0.0,672.964882562781,0.0,2441.664280019648,38963.09331690806,50,31,1,1841,201705609,,,300.0,,3.0,0.0,4.0,2.0,4.0,2.3,2202.329548668759,0.0,500.0,1380.0,0.0,61599.0,1,1,2,70.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3114.6291625824288,0.07993793350156912,0.05056298255787316,26782.17391304348,7,4,7,7_1,7_2,7_1_0 +5610,2,35.0,3,0.0,2,111,4,43,34,8.0,0.0,0.0,1009.4473238441715,0.0,0.0,50277.380000000005,20,30,2,1844,201705610,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3756.054391507911,0.0,750.0,0.0,0.0,52295.0,1,1,2,72.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1009.4473238441715,0.020077564181828315,0.019302941463699617,29052.777777777777,8,4,8,8_0,8_3,8_0_1 +5611,2,55.0,2,0.0,5,112,2,52,48,9.0,0.0,0.0,979.8368690114091,2547.823596542241,0.0,39960.600000000006,50,50,1,1845,201705611,,,465.0,,2.0,3.0,5.0,0.0,2.0,1.5,1989.0676875177949,0.0,728.0,0.0,0.0,49538.0,1,1,2,100.0,8,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3527.6604655536503,0.0882784659277801,0.0712112008065253,33025.333333333336,9,5,9,9_1,9_1,9_0_0 +5612,2,61.0,3,0.0,5,400,4,85,78,2.0,0.0,0.0,2140.0283265496437,46.0023704931238,0.0,12386.699999999999,71,50,1,1847,201705612,,,456.0,,0.0,1.0,4.0,0.0,2.0,1.5,2576.7272608951293,0.0,1590.0,0.0,0.0,20316.0,6,5,3,60.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2186.0306970427673,0.17648208942194188,0.10760143222301473,13544.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +5613,2,51.0,2,0.0,4,211,6,0,38,10.0,0.0,0.0,448.1946117868121,0.0,806.8108055717097,26066.44,0,30,2,1848,201705613,,,110.0,,1.0,0.0,3.0,0.0,1.0,1.0,1694.950591615655,0.0,333.0,456.0,0.0,44180.0,0,1,1,80.0,3,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1255.0054173585218,0.04814640654260888,0.02840664140693802,44180.0,10,5,10,10_0,10_1,10_0_1 +5614,1,20.0,1,166.0,1,111,2,0,84,1.0,0.0,0.0,137.2848360428073,0.0,261.859647422397,44394.9,0,41,2,1849,201705614,,,,814.0,0.0,0.0,2.0,0.0,2.0,1.5,4229.848998297678,0.0,102.0,148.0,0.0,13457.0,0,3,3,59.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,399.1444834652043,0.008990773342550705,0.029660732961670825,8971.333333333334,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +5615,2,59.0,2,0.0,6,112,3,56,75,8.0,0.0,0.0,1032.328129851306,61.9262679715128,0.0,26257.7316935026,50,42,1,185,201705615,,,175.0,,1.0,3.0,5.0,0.0,2.0,1.5,2870.447593608429,0.0,767.0,0.0,0.0,43210.0,1,5,1,120.0,9,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1094.2543978228186,0.04167360724816869,0.025324100852182795,28806.666666666668,8,4,8,8_1,8_1,8_0_0 +5616,2,91.0,2,0.0,1,400,2,71,71,1.0,0.0,0.0,740.261370819059,3450.1777869842845,0.0,21516.160631988234,70,70,1,1850,201705616,,,100.0,,0.0,2.0,5.0,0.0,2.0,1.5,1677.503077726018,0.0,550.0,0.0,0.0,10519.0,5,6,1,120.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4190.439157803344,0.19475775578536011,0.39836858615869797,7012.666666666667,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +5617,2,43.0,4,0.0,3,111,2,0,85,1.0,380.74944219333173,0.0,726.8020731678034,113.23660429076627,0.0,24133.16,0,50,1,1852,201705617,,,,,0.0,1.0,3.0,0.0,1.0,1.0,5899.584775256487,0.0,540.0,0.0,0.0,9656.0,0,7,1,60.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1220.7881196519015,0.050585506400815376,0.12642793285541648,9656.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +5618,2,58.0,2,0.0,6,112,2,78,37,8.0,1404.0135680879107,0.0,1214.028648143257,0.0,0.0,49575.079999999994,70,33,1,1853,201705618,,,302.0,,1.0,0.0,5.0,0.0,2.0,1.5,1638.4851298325004,0.0,902.0,0.0,0.0,46188.0,5,4,1,150.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2618.042216231168,0.0528096417843636,0.05668230311403758,30792.0,8,4,8,8_1,8_0,8_0_0 +5619,2,64.0,3,0.0,6,111,6,78,78,6.0,0.0,0.0,901.7729426341265,0.0,0.0,23933.8,70,50,2,1855,201705619,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2403.4436754645367,0.0,670.0,0.0,0.0,33145.0,5,5,1,75.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,901.7729426341265,0.03767780054291949,0.027206907305298733,22096.666666666668,6,3,6,6_0,6_3,6_0_0 +5620,2,48.0,3,0.0,1,111,2,0,37,4.0,0.0,0.0,557.2149227619826,0.0,1857.7880391453841,37827.245846751306,0,41,1,1856,201705620,,,752.0,,1.0,0.0,3.0,1.0,2.0,1.5,560.4481575906036,0.0,414.0,1050.0,0.0,25038.0,0,1,2,80.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2415.0029619073666,0.06384294991211402,0.09645350914239822,16692.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +5621,2,67.0,3,0.0,99,111,1,56,78,4.0,0.0,0.0,834.4764543778484,106.15931652259337,0.0,37700.96000000001,71,71,2,1857,201705621,,,,318.0,1.0,2.0,4.0,0.0,2.0,1.5,1858.715108390999,0.0,620.0,0.0,0.0,26798.0,1,5,3,79.0,6,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,940.6357709004418,0.024949915622849966,0.03510096913577289,17865.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +5622,2,59.0,2,0.0,5,120,2,63,48,6.0,1903.7472109666587,0.0,847.935752029104,265.39829130648343,0.0,26377.1,50,50,1,1858,201705622,,,520.0,,2.0,2.0,5.0,0.0,2.0,1.5,1475.7120707444233,0.0,630.0,0.0,0.0,36524.0,1,1,1,93.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3017.081254302246,0.11438259908413913,0.08260544448314112,24349.333333333332,7,4,7,7_1,7_1,7_0_0 +5623,2,38.0,2,0.0,2,112,4,0,43,5.0,0.0,1165.8581084332895,1172.8543070100618,99.08202875442048,53.69428396326666,35660.33468474448,0,30,1,1859,201705623,,,310.0,,1.0,0.0,6.0,2.0,3.0,1.6,1059.6949779529964,51.75563351347934,850.0,0.0,0.0,31015.0,0,1,2,155.0,4,0.0,2,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2491.4887281610386,0.06986722783695296,0.08033173394038493,19384.375,5,3,5,5_1,5_0,5_0_1 +5624,2,53.0,2,0.0,3,111,1,64,46,7.0,0.0,0.0,726.8020731678034,0.0,0.0,45891.23697444815,60,60,2,1860,201705624,,,,630.0,2.0,2.0,3.0,0.0,2.0,1.5,2665.550301078875,0.0,540.0,0.0,0.0,37380.0,1,1,3,70.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,726.8020731678034,0.015837491449020663,0.019443608163932678,24920.0,7,4,7,7_0,7_2,7_0_1 +5625,2,64.0,2,0.0,1,111,2,72,77,6.0,0.0,0.0,807.5578590753372,0.0,3397.098128722988,59833.61999999999,50,50,1,1861,201705625,,,335.0,,0.0,2.0,5.0,0.0,2.0,1.5,1573.1904025270894,0.0,600.0,1920.0,0.0,36900.0,5,5,1,140.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4204.655987798325,0.07027246534303501,0.11394731674250204,24600.0,7,4,7,7_1,7_2,7_1_0 +5626,2,54.0,1,0.0,2,111,2,38,38,10.0,0.0,111.0341055650752,781.9851935379515,0.0,2172.7273448290775,70824.14584675129,20,12,1,1863,201705626,,,378.0,,2.0,1.0,8.0,1.0,3.0,2.0,2257.495941691971,0.0,581.0,1228.0,0.0,131870.0,1,1,1,145.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3065.7466439321042,0.04328674362788281,0.023248249366285768,65935.0,10,5,10,10_1,10_4,10_0_1 +5627,1,37.0,2,130.0,9,111,4,56,47,2.0,0.0,0.0,1749.7086946632305,0.0,0.0,25584.280631988233,50,50,1,1864,201705627,,,330.0,,2.0,0.0,4.0,3.0,5.0,2.8,582.4708183607612,0.0,1300.0,0.0,0.0,32748.0,1,1,3,90.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1749.7086946632305,0.06838998992512439,0.05342948255353703,11695.714285714286,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +5628,2,69.0,3,0.0,7,300,5,12,71,4.0,0.0,1387.9263195634398,942.1508355878933,0.0,0.0,36118.86,42,50,1,1866,201705628,,,,,2.0,2.0,5.0,1.0,3.0,2.0,2227.2589489597262,0.0,700.0,0.0,0.0,31955.0,1,5,1,140.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2330.077155151333,0.06451137037966682,0.0729174512643196,15977.5,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5629,2,69.0,3,0.0,1,211,4,86,72,5.0,0.0,0.0,2039.0835941652263,191.08676974066807,0.0,31288.899999999994,71,71,1,1868,201705629,,,441.0,,0.0,3.0,5.0,0.0,2.0,1.5,1532.9160077219094,0.0,1515.0,0.0,0.0,28179.0,6,5,1,155.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2230.170363905894,0.07127672637599579,0.07914299172809164,18786.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +5630,2,47.0,3,0.0,99,120,3,85,63,4.0,0.0,0.0,2422.6735772260117,0.0,0.0,24289.860000000004,43,71,2,1869,201705630,,,552.0,448.0,2.0,0.0,3.0,1.0,3.0,2.0,3450.026536168901,0.0,1800.0,0.0,0.0,36375.0,6,1,3,72.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,2422.6735772260117,0.09974012107216802,0.06660271002683193,18187.5,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +5631,2,39.0,3,0.0,99,221,2,54,48,7.0,0.0,0.0,807.5578590753372,0.0,2919.381204371318,43649.37840905727,50,43,1,187,201705631,,,450.0,,2.0,0.0,6.0,2.0,4.0,2.1,3101.185428967816,0.0,600.0,1650.0,0.0,53841.0,1,1,2,150.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3726.939063446655,0.08538355411433105,0.0692212080653527,25638.571428571428,7,4,7,7_1,7_1,7_0_0 +5632,2,42.0,3,0.0,7,111,2,21,43,3.0,475.9368027416647,0.0,1461.6797249263602,176.9321942043223,0.0,76499.86,50,33,1,1870,201705632,,,534.0,,2.0,0.0,4.0,1.0,3.0,1.8,2647.7122528495497,0.0,1086.0,0.0,0.0,27601.0,1,1,3,110.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2114.5487218723474,0.027641210348258772,0.07661130835376788,15333.888888888889,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +5633,2,71.0,3,0.0,3,111,1,62,78,4.0,0.0,0.0,403.7789295376686,0.0,442.3304855108057,27206.44753375565,60,70,2,1871,201705633,,,,354.0,1.0,2.0,4.0,0.0,2.0,1.5,1969.0732905029895,0.0,300.0,250.0,0.0,26140.0,5,5,3,65.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,846.1094150484744,0.031099591888969973,0.032368378540492515,17426.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +5634,2,52.0,2,0.0,4,111,4,55,48,7.0,0.0,0.0,1292.0925745205395,0.0,0.0,25335.100197470052,50,50,2,1872,201705634,,,,600.0,2.0,2.0,3.0,0.0,2.0,1.5,2537.1603878099104,0.0,960.0,0.0,0.0,36820.0,1,1,3,78.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1292.0925745205395,0.05100009727411961,0.03509213944922704,24546.666666666668,7,4,7,7_0,7_3,7_0_1 +5635,1,79.0,3,28.0,1,111,1,0,72,4.0,0.0,0.0,397.0492807120408,0.0,0.0,11749.9,0,70,2,1874,201705635,,,,295.0,0.0,2.0,2.0,0.0,1.0,1.0,4598.47206442382,0.0,295.0,0.0,0.0,15867.0,0,5,3,39.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,397.0492807120408,0.033791715734775685,0.025023588624947427,15867.0,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +5636,1,35.0,5,458.0,5,111,4,0,52,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,28052.963786137145,0,50,2,1875,201705636,,,,76.0,1.0,0.0,4.0,5.0,6.0,2.5,616.7517105870126,0.0,1200.0,0.0,0.0,47497.0,0,1,3,90.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1615.1157181506744,0.05757379970485727,0.03400458382951922,18998.8,5,3,5,5_0,5_4,5_0_0 +5637,2,38.0,3,0.0,9,111,5,46,47,8.0,0.0,360.86084308649436,149.39820392893736,0.0,0.0,45968.3958467513,31,43,1,1877,201705637,,,22.0,,2.0,0.0,4.0,1.0,3.0,1.8,2406.7842862304365,0.0,111.0,0.0,0.0,53913.0,1,1,2,90.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,510.25904701543175,0.011100214345449973,0.009464489956326521,29951.666666666664,8,4,8,8_1,8_3,8_0_0 +5638,2,35.0,4,0.0,1,111,4,0,46,3.0,0.0,0.0,873.5084175664897,0.0,0.0,16294.480000000001,0,43,2,1878,201705638,,,,345.0,1.0,0.0,2.0,0.0,1.0,1.0,2185.967838538525,0.0,649.0,0.0,0.0,14786.0,0,1,3,30.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,873.5084175664897,0.053607627709904807,0.059076722410827114,14786.0,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +5639,2,53.0,1,0.0,8,112,2,23,38,8.0,0.0,138.792631956344,3075.449513311909,0.0,0.0,63983.926881271116,50,42,1,1879,201705639,,,326.0,,2.0,0.0,6.0,2.0,4.0,2.5,2004.7617146275402,0.0,2285.0,0.0,0.0,77170.0,1,1,1,125.0,9,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3214.242145268253,0.050235149699902226,0.041651446744437645,30868.0,8,4,8,8_1,8_0,8_0_0 +5640,2,33.0,2,0.0,9,112,4,46,54,8.0,0.0,0.0,1500.7116881150016,0.0,0.0,52528.1116935026,31,41,1,1880,201705640,,,211.0,,2.0,0.0,4.0,2.0,4.0,2.1,2361.805242555004,0.0,1115.0,0.0,0.0,56808.0,1,1,2,121.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1500.7116881150016,0.02856968658747027,0.026417259683759357,27051.42857142857,7,4,7,7_1,7_0,7_0_0 +5641,2,38.0,1,0.0,4,111,1,0,34,6.0,0.0,0.0,697.1916183350411,0.0,297.2460862632615,19094.760000000002,0,20,2,1882,201705641,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4438.709588095304,0.0,518.0,168.0,0.0,22090.0,0,1,3,45.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,994.4377045983026,0.052079088954158234,0.045017551136183914,22090.0,6,3,6,6_0,6_2,6_0_1 +5642,2,55.0,3,0.0,1,300,2,0,43,10.0,3172.912018277764,0.0,1345.929765125562,0.0,0.0,63821.97536887669,0,33,1,1883,201705642,,,300.0,,1.0,2.0,7.0,0.0,1.0,1.0,1519.1018577227928,0.0,1000.0,0.0,0.0,40327.0,0,1,1,150.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4518.841783403326,0.07080385333242094,0.11205499500095038,40327.0,9,5,9,9_1,9_0,9_1_0 +5643,2,57.0,1,0.0,1,112,2,0,52,9.0,0.0,208.188947934516,672.964882562781,88.46609710216114,0.0,31938.04,0,50,1,1884,201705643,,,400.0,,1.0,1.0,3.0,0.0,1.0,1.0,1240.7366924842315,0.0,500.0,0.0,0.0,35630.0,0,1,1,70.0,10,1.0,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,969.6199275994582,0.030359406137617027,0.027213582026367054,35630.0,9,5,9,9_1,9_1,9_1_0 +5644,1,30.0,4,408.0,2,112,4,0,64,1.0,0.0,0.0,2242.3189886991863,185.7788039145384,0.0,20870.852224800772,0,60,1,1885,201705644,,,350.0,32.0,2.0,0.0,4.0,2.0,4.0,2.1,435.71136987018707,0.0,1666.0,0.0,0.0,18556.0,0,4,3,72.0,9,0.0,5,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2428.097792613725,0.11633917802975115,0.13085243547174633,8836.190476190475,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +5645,1,52.0,4,90.0,4,111,2,0,56,1.0,0.0,0.0,462.6441201359166,0.0,862.1274041955971,30633.68,0,43,2,1886,201705645,,,,306.0,2.0,1.0,3.0,2.0,3.0,2.0,1865.6471381397357,831.0,0.0,0.0,0.0,20970.0,0,1,3,60.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1324.7715243315138,0.04324558865704394,0.06317460774113084,10485.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5646,1,40.0,3,29.0,6,111,2,0,52,4.0,95.18736054833293,0.0,349.6275661195615,0.0,651.523477538911,24914.179999999997,0,30,2,1888,201705646,,,,402.0,1.0,0.0,3.0,1.0,2.0,1.5,856.4351472723921,628.0,0.0,0.0,0.0,25881.0,0,1,3,60.0,8,6.0,2,7,1,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1096.3384042068055,0.04400459514247732,0.0423607435650402,17254.0,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +5647,1,56.0,4,150.0,8,112,5,0,71,1.0,0.0,0.0,1211.3367886130059,58.38762408742635,0.0,16924.31697444815,0,50,1,1889,201705647,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1987.371308870734,0.0,900.0,0.0,0.0,5750.0,0,4,1,135.0,8,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1269.7244127004321,0.07502367242456082,0.2208216369913795,5750.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +5648,2,42.0,1,0.0,99,111,2,54,23,10.0,0.0,0.0,244.91905655333952,0.0,543.0981888478846,84770.10482032805,30,43,2,1890,201705648,,,,,2.0,0.0,6.0,3.0,5.0,2.6,2859.36203647729,439.92288486457437,0.0,49.0,0.0,201323.0,1,1,3,220.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,788.017245401224,0.009295933360840386,0.003914193834788991,77431.92307692308,10,5,10,10_0,10_3,10_0_0 +5649,2,70.0,2,0.0,7,112,2,0,74,9.0,0.0,0.0,403.7789295376686,0.0,1698.549064361494,17676.12,0,30,1,1894,201705649,,,91.0,,0.0,2.0,6.0,0.0,1.0,1.0,1670.97663093555,0.0,300.0,960.0,0.0,36672.0,0,5,1,169.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2102.3279938991627,0.11893605575766417,0.05732787941478956,36672.0,9,5,9,9_1,9_0,9_0_0 +5650,2,68.0,3,0.0,8,112,4,0,77,7.0,0.0,0.0,2422.6735772260117,0.0,0.0,29057.939999999995,0,70,2,1895,201705650,,,250.0,,0.0,1.0,3.0,0.0,1.0,1.0,2964.3460204482635,0.0,1800.0,0.0,0.0,26948.0,0,5,1,68.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2422.6735772260117,0.08337389289213248,0.08990179520654637,26948.0,7,4,7,7_0,7_2,7_0_0 +5651,2,57.0,2,0.0,6,111,2,56,43,5.0,0.0,0.0,699.8834778652922,0.0,813.8880933398825,42208.49119129575,50,33,1,1896,201705651,,,340.0,,2.0,2.0,5.0,1.0,3.0,2.0,1352.475024443041,0.0,520.0,460.0,0.0,39404.0,1,1,1,120.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1513.7715712051747,0.035864147911483395,0.03841669808154438,19702.0,5,3,5,5_1,5_2,5_0_0 +5652,1,26.0,4,378.0,9,111,1,0,56,1.0,0.0,0.0,306.2024862512083,0.0,570.6017717299379,6152.44,0,71,2,1897,201705652,,,360.0,40.0,1.0,0.0,3.0,1.0,2.0,1.3,1219.4399728191422,550.0,0.0,0.0,0.0,13106.0,0,4,3,69.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,876.8042579811463,0.1425132562009782,0.0669009810759306,10081.538461538461,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5653,1,49.0,4,462.0,99,300,2,0,52,2.0,1047.0609660316622,0.0,1312.2815209974228,159.23897478389006,0.0,42997.200000000004,0,50,1,1898,201705653,,,1056.0,,1.0,6.0,4.0,3.0,4.0,1.9,511.6737732883565,0.0,975.0,0.0,0.0,21254.0,0,4,3,120.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2518.5814618129752,0.05857547611967698,0.1184991748288781,11186.315789473685,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +5654,2,77.0,3,0.0,5,112,6,77,75,6.0,0.0,0.0,1096.932758577333,0.0,1557.0033089980361,30897.27119129574,71,33,1,1899,201705654,,,480.0,,1.0,0.0,5.0,2.0,4.0,2.5,2218.8795414595843,0.0,815.0,880.0,0.0,57580.0,5,5,1,88.0,10,3.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2653.936067575369,0.08589548413981057,0.04609128286862399,23032.0,6,3,6,6_1,6_1,6_0_0 +5655,1,38.0,4,257.0,1,300,5,0,69,3.0,0.0,832.755791738064,282.645250676368,164.54694061001973,0.0,8482.519999999999,0,50,1,19,201705655,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4779.2975941882405,0.0,210.0,0.0,0.0,15574.0,0,1,3,64.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1279.9479830244516,0.1508924214766899,0.08218492250060688,15574.0,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +5656,2,54.0,3,0.0,5,120,2,85,64,4.0,47.593680274166466,0.0,556.7317931840151,0.0,1037.4577667817055,25421.269194280485,50,50,1,1900,201705656,,,300.0,,1.0,3.0,5.0,0.0,2.0,1.5,1428.4440854266797,1000.0,0.0,0.0,0.0,24634.0,6,1,1,100.0,0,1.0,3,3,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1641.7832402398872,0.06458305553875614,0.06664704230899923,16422.666666666668,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5657,2,34.0,3,0.0,9,400,5,84,63,6.0,0.0,627.3426964426749,835.822384142974,0.0,0.0,42925.062382591495,30,50,1,1901,201705657,,,320.0,,1.0,0.0,3.0,0.0,2.0,1.5,2456.8529390939234,0.0,621.0,0.0,0.0,31635.0,3,1,2,75.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1463.1650805856489,0.034086498641386805,0.04625146453566142,21090.0,5,3,5,5_1,5_0,5_0_0 +5658,2,34.0,2,0.0,1,211,2,33,46,8.0,0.0,0.0,612.3980431321307,0.0,2100.1851452053056,57196.18,20,31,1,1905,201705658,,,248.0,624.0,2.0,0.0,5.0,1.0,3.0,1.8,1266.3091746392204,0.0,455.0,1187.0,0.0,52796.0,1,1,3,90.0,2,3.0,4,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2712.5831883374362,0.0474259502704103,0.0513785739135055,29331.11111111111,8,4,8,8_1,8_1,8_1_0 +5659,1,28.0,5,136.0,4,111,1,0,81,1.0,0.0,0.0,0.0,0.0,0.0,10837.499999999998,0,50,8,1906,201705659,,,,,1.0,0.0,2.0,2.0,3.0,1.6,1161.492392325646,0.0,0.0,0.0,0.0,15822.0,0,4,3,50.0,6,5.0,2,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0.0,0.0,0.0,9888.75,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5660,2,69.0,3,0.0,4,400,2,86,75,7.0,0.0,0.0,1144.0403003567276,2653.9829130648345,0.0,42530.02753375566,70,44,1,1907,201705660,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1640.2688032829753,0.0,850.0,0.0,0.0,38596.0,5,5,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3798.023213421562,0.08930215740883565,0.09840458113331853,25730.666666666668,7,4,7,7_1,7_0,7_0_1 +5661,1,46.0,2,272.0,8,111,2,0,85,3.0,0.0,0.0,285.3371102066191,0.0,0.0,4329.0,0,71,2,1908,201705661,,,,34.0,0.0,0.0,1.0,0.0,1.0,1.0,1886.1466095008777,0.0,212.0,0.0,0.0,14244.0,0,7,3,27.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,285.3371102066191,0.06591293837066739,0.020032091421413867,14244.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +5662,2,67.0,2,0.0,6,112,5,77,78,2.0,0.0,832.755791738064,1314.973380527674,191.08676974066807,0.0,27867.66,70,50,1,1910,201705662,,,375.0,,0.0,4.0,5.0,0.0,2.0,1.5,2063.4965920195527,0.0,977.0,0.0,0.0,20064.0,7,5,1,140.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2338.8159420064057,0.08392581013283519,0.11656778020366855,13376.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5663,2,70.0,1,0.0,4,111,2,75,74,10.0,0.0,0.0,585.4794478296194,0.0,1822.4016003045197,22262.440000000002,41,20,1,1911,201705663,,,213.0,,0.0,2.0,6.0,0.0,2.0,1.5,1602.9032437057847,0.0,435.0,1030.0,0.0,61938.0,5,5,1,120.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2407.881048134139,0.1081589011866686,0.03887566676570343,41292.0,10,5,10,10_1,10_2,10_0_1 +5664,2,49.0,3,0.0,5,111,2,33,31,10.0,4738.744099297841,395.5590010755804,1251.917659097081,169.8549064361494,356.53004551609064,92663.39190670333,20,20,1,1913,201705664,,,835.0,,2.0,0.0,7.0,3.0,5.0,2.8,2088.6353981708417,343.6574065295028,788.0,0.0,0.0,121342.0,1,1,2,230.0,9,7.0,4,2,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,6912.605711422742,0.07459910077954615,0.05696795595443245,43336.42857142857,10,5,10,10_1,10_3,10_0_0 +5665,1,55.0,3,272.0,3,111,1,0,77,4.0,0.0,0.0,444.15682249143543,0.0,619.262679715128,12953.680000000002,0,71,2,1914,201705665,,,,232.0,2.0,0.0,3.0,2.0,3.0,2.0,4727.2720709055375,0.0,330.0,350.0,0.0,33124.0,0,6,3,75.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1063.4195022065635,0.08209400743314357,0.032104199438671766,16562.0,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +5666,2,65.0,3,0.0,1,111,2,0,77,3.0,0.0,0.0,302.83419715325147,0.0,1072.2090968781931,21161.691191295744,0,41,2,1915,201705666,,,326.0,,0.0,2.0,3.0,0.0,1.0,1.0,3508.3477591459814,0.0,225.0,606.0,0.0,14914.0,0,5,1,68.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1375.0432940314445,0.06497794914411327,0.09219815569474618,14914.0,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +5667,2,50.0,3,0.0,7,111,2,22,55,5.0,0.0,0.0,2580.147359745702,0.0,0.0,15764.104824197924,50,71,1,1916,201705667,,,312.0,,3.0,1.0,6.0,1.0,3.0,2.0,2091.7389118643787,0.0,1917.0,0.0,0.0,36822.0,1,1,2,100.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2580.147359745702,0.16367230416948078,0.07007080983503618,18411.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +5668,2,53.0,2,0.0,99,112,4,0,45,5.0,0.0,0.0,807.5578590753372,0.0,0.0,41605.99999999999,0,42,1,1917,201705668,,,230.0,,1.0,0.0,3.0,1.0,2.0,1.5,2033.224041763163,0.0,600.0,0.0,0.0,28824.0,0,1,3,70.0,7,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,807.5578590753372,0.01940964906684943,0.02801685606006582,19216.0,5,3,5,5_1,5_0,5_0_0 +5669,1,21.0,3,200.0,7,111,1,0,84,5.0,0.0,0.0,686.4241802140366,0.0,0.0,27483.38,0,31,2,1918,201705669,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4532.798621089222,0.0,510.0,0.0,0.0,18602.0,0,3,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,686.4241802140366,0.024975973850888667,0.03690055801602175,18602.0,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +5670,2,64.0,3,0.0,2,111,2,68,65,5.0,2855.620816449988,0.0,565.290501352736,159.23897478389006,0.0,30020.52,71,71,1,1919,201705670,,,492.0,,2.0,2.0,5.0,0.0,2.0,1.5,2135.683394224027,0.0,420.0,0.0,0.0,30097.0,1,1,1,110.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3580.1502925866143,0.11925677145454557,0.11895372603869536,20064.666666666668,5,3,5,5_1,5_4,5_0_1 +5671,2,65.0,2,0.0,8,111,2,54,75,8.0,0.0,0.0,655.4677956161487,0.0,1185.4457011689594,31085.382066597384,41,41,1,192,201705671,,,615.0,,1.0,2.0,4.0,0.0,2.0,1.5,2593.909789133313,0.0,487.0,670.0,0.0,44060.0,1,5,1,90.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1840.9134967851082,0.05922119576465657,0.04178196769825484,29373.333333333332,8,4,8,8_1,8_3,8_0_0 +5672,2,44.0,5,0.0,5,111,1,0,54,6.0,0.0,0.0,218.04062195034103,0.0,159.23897478389006,21524.9,0,41,2,1920,201705672,,,,616.0,1.0,0.0,2.0,1.0,2.0,1.5,1243.4481550319404,0.0,162.0,90.0,0.0,33940.0,0,1,3,47.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,377.27959673423106,0.01752758882662549,0.011116075331002683,22626.666666666668,6,3,6,6_0,6_4,6_0_0 +5673,1,54.0,4,215.0,1,111,6,0,77,1.0,0.0,0.0,242.26735772260116,0.0,594.492172526523,14349.436974448148,0,50,2,1921,201705673,,,319.0,244.0,1.0,0.0,2.0,1.0,2.0,1.5,2510.0448341204146,0.0,180.0,336.0,0.0,5280.0,0,7,3,40.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,836.759530249124,0.05831305658466814,0.1584771837593038,3520.0,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +5674,1,37.0,5,300.0,1,111,4,38,84,1.0,0.0,0.0,524.9126083989692,0.0,0.0,17149.16,12,20,2,1922,201705674,,,,285.0,1.0,0.0,1.0,0.0,2.0,1.5,4061.187379197452,0.0,390.0,0.0,0.0,12373.0,4,3,3,18.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,524.9126083989692,0.03060864837688663,0.042424036886686264,8248.666666666666,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +5675,2,51.0,3,0.0,8,221,2,56,38,8.0,2379.684013708323,249.82673752141918,1765.8598518447372,0.0,0.0,88832.10189034225,42,12,1,1923,201705675,,,965.0,,2.0,0.0,7.0,3.0,5.0,3.0,2986.203135507021,0.0,1312.0,0.0,0.0,86528.0,1,1,2,260.0,1,2.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4395.37060307448,0.04947952946672694,0.05079708999485114,28842.666666666668,8,4,8,8_1,8_1,8_0_0 +5676,2,74.0,2,0.0,6,112,2,74,74,10.0,0.0,0.0,807.5578590753372,0.0,2887.5334094145396,33913.07999999999,30,41,1,1924,201705676,,,623.0,,0.0,3.0,7.0,0.0,2.0,1.5,1141.0930409531127,0.0,600.0,1632.0,0.0,70115.0,5,5,1,200.0,9,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3695.0912684898767,0.10895770211640694,0.052700438828922155,46743.333333333336,10,5,10,10_1,10_1,10_0_0 +5677,1,41.0,4,345.0,9,221,4,85,55,1.0,0.0,0.0,3553.2545799314835,0.0,0.0,45733.19200949672,71,43,1,1927,201705677,,,,,1.0,1.0,5.0,4.0,6.0,2.9,2645.1653703610073,0.0,2640.0,0.0,0.0,26090.0,7,4,2,120.0,1,2.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,3553.2545799314835,0.07769531108158015,0.1361922031403405,8996.551724137931,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +5678,2,42.0,4,0.0,9,400,5,0,22,3.0,0.0,111.0341055650752,1345.929765125562,99.08202875442048,0.0,27296.30753375566,0,50,1,1928,201705678,,,,,1.0,1.0,3.0,1.0,2.0,1.3,4492.470910674902,0.0,1000.0,0.0,0.0,19260.0,0,1,3,80.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1556.0458994450576,0.05700572861442126,0.08079158356412552,14815.384615384615,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5679,2,65.0,3,0.0,3,112,2,0,75,6.0,0.0,0.0,380.898123530534,0.0,1808.2470247681738,18370.4,0,70,1,1929,201705679,,,300.0,,0.0,3.0,3.0,0.0,1.0,1.0,2086.3181144843625,0.0,283.0,1022.0,0.0,21129.0,0,5,1,64.0,10,0.0,1,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2189.1451482987077,0.11916698320660996,0.10360855451269382,21129.0,5,3,5,5_1,5_0,5_0_1 +5681,2,61.0,4,0.0,6,111,4,0,77,7.0,0.0,0.0,1197.87749096175,46.0023704931238,0.0,27010.631191295743,0,31,1,1930,201705681,,,,,1.0,1.0,5.0,1.0,2.0,1.5,3730.090112442072,0.0,890.0,0.0,0.0,35051.0,0,5,2,85.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1243.879861454874,0.046051491823549756,0.035487713944106415,23367.333333333332,6,3,6,6_1,6_3,6_0_0 +5682,2,71.0,3,0.0,4,112,2,77,74,6.0,0.0,0.0,1773.1907612910882,0.0,3304.3029871997314,28351.28,70,60,1,1931,201705682,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1746.1780378745796,3185.0,0.0,0.0,0.0,33990.0,5,5,1,100.0,6,1.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5077.49374849082,0.17909222259068444,0.14938198730481964,22660.0,6,3,6,6_1,6_1,6_0_1 +5683,2,32.0,1,0.0,1,111,1,43,45,7.0,0.0,0.0,726.8020731678034,0.0,0.0,37097.51632237629,44,41,2,1932,201705683,,,,700.0,2.0,0.0,3.0,1.0,3.0,1.8,1418.1267249767088,0.0,540.0,0.0,0.0,43864.0,4,1,3,83.0,7,6.0,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,726.8020731678034,0.01959166395000451,0.01656944357942284,24368.888888888887,7,4,7,7_0,7_2,7_1_0 +5684,2,72.0,2,0.0,9,111,4,75,74,10.0,0.0,0.0,2340.5718615533524,0.0,0.0,56144.12,31,31,1,1933,201705684,,,350.0,,0.0,5.0,5.0,0.0,2.0,1.5,1603.2863072415164,0.0,1739.0,0.0,0.0,70200.0,5,5,1,138.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2340.5718615533524,0.04168863741302477,0.033341479509307013,46800.0,10,5,10,10_1,10_2,10_0_0 +5685,2,54.0,3,0.0,7,211,6,52,48,7.0,555.2596031986087,0.0,2573.4177109200746,92.0047409862476,0.0,57037.84,60,50,1,1934,201705685,,,477.0,,2.0,3.0,6.0,0.0,2.0,1.5,2176.3758229431933,0.0,1912.0,0.0,0.0,41640.0,1,1,1,223.0,1,3.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3220.682055104931,0.05646570864368165,0.07734587067975339,27760.0,8,4,8,8_1,8_1,8_0_0 +5686,2,67.0,3,0.0,4,111,2,72,77,3.0,0.0,0.0,677.0026718581577,0.0,1946.2541362475451,41241.180000000015,50,50,1,1935,201705686,,,512.0,,0.0,2.0,5.0,0.0,2.0,1.5,2058.810375233204,0.0,503.0,1100.0,0.0,22122.0,5,5,1,140.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2623.256808105703,0.06360770492274231,0.11858135829064745,14748.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +5687,1,57.0,3,113.0,4,111,1,0,54,5.0,0.0,0.0,341.86616034189274,0.0,120.31389205893916,12582.840000000002,0,43,2,1936,201705687,,,,181.0,1.0,1.0,3.0,0.0,1.0,1.0,2093.1641903047957,0.0,254.0,68.0,0.0,18638.0,0,1,3,59.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,462.18005240083187,0.03673098063718777,0.024797727889303137,18638.0,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +5688,2,55.0,3,0.0,6,112,4,46,43,9.0,0.0,0.0,2718.778125553635,123.8525359430256,0.0,52200.479999999996,44,33,1,1940,201705688,,,500.0,,2.0,2.0,5.0,0.0,2.0,1.5,1554.6425131016101,0.0,2020.0,0.0,0.0,49682.0,1,1,1,130.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2842.6306614966607,0.05445602533725094,0.05721651023502799,33121.333333333336,9,5,9,9_1,9_0,9_0_0 +5689,1,39.0,4,143.0,1,112,4,85,53,1.0,0.0,0.0,942.1508355878933,414.02133443811414,0.0,14898.88,71,41,8,1941,201705689,,,800.0,,1.0,1.0,2.0,3.0,5.0,2.6,4146.765233530974,0.0,700.0,0.0,0.0,23288.0,6,1,3,60.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1356.1721700260075,0.09102510860051276,0.05823480633914495,8956.923076923076,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +5690,1,56.0,3,256.0,1,112,2,0,35,2.0,1876.7774588112977,471.89494865156956,959.6479225345257,120.31389205893916,0.0,26212.78115202909,0,20,1,1942,201705690,,,495.0,,1.0,2.0,4.0,0.0,2.0,1.5,4844.294248440777,0.0,713.0,0.0,0.0,18795.0,0,4,3,100.0,9,3.0,5,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,3428.634222056332,0.13080009336555753,0.18242267741720308,12530.0,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +5691,2,58.0,2,0.0,6,212,4,46,46,4.0,0.0,270.6456323148708,1726.827888656096,106.15931652259337,0.0,34016.542382591484,31,50,1,1943,201705691,,,277.0,,2.0,1.0,5.0,1.0,3.0,2.0,2372.3580503142675,0.0,1283.0,0.0,0.0,33990.0,1,1,1,95.0,2,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2103.63283749356,0.061841465656137004,0.061889756913608714,16995.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5692,2,60.0,2,0.0,1,300,2,75,13,10.0,2141.715612337491,0.0,740.261370819059,44.23304855108057,0.0,35431.880000000005,31,42,1,1944,201705692,,,220.0,,1.0,2.0,8.0,0.0,2.0,1.5,1721.4087095878556,0.0,550.0,0.0,0.0,94222.0,5,1,1,206.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2926.2100317076306,0.08258692543854941,0.03105654763969806,62814.666666666664,10,5,10,10_1,10_0,10_1_0 +5693,2,58.0,2,0.0,1,111,2,77,52,6.0,0.0,0.0,1300.168153111293,0.0,1689.7024546512778,30131.80238259149,50,50,1,1945,201705693,,,245.0,,1.0,3.0,6.0,0.0,2.0,1.5,2252.080751745191,0.0,966.0,955.0,0.0,32717.0,5,1,1,122.0,4,3.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2989.8706077625707,0.09922641101250401,0.09138584245996181,21811.333333333332,6,3,6,6_1,6_1,6_1_0 +5694,2,37.0,3,0.0,1,112,4,85,63,4.0,0.0,0.0,1144.0403003567276,127.39117982711205,0.0,45877.159999999996,50,41,1,1946,201705694,,,580.0,,1.0,0.0,6.0,2.0,4.0,2.1,2601.234194427083,0.0,850.0,0.0,0.0,33606.0,6,1,2,98.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1271.4314801838395,0.02771382274281668,0.03783346664833183,16002.857142857141,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +5695,2,55.0,2,0.0,1,111,6,0,54,2.0,2531.983790585656,0.0,488.572504740579,0.0,0.0,35655.54,0,41,1,1947,201705695,,,95.0,,1.0,2.0,7.0,0.0,1.0,1.0,2018.1528661389664,0.0,363.0,0.0,0.0,10631.0,0,1,5,120.0,6,4.0,1,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3020.556295326235,0.08471492215028113,0.28412720302193917,10631.0,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +5696,1,49.0,4,280.0,9,111,4,0,55,1.0,0.0,0.0,1615.1157181506744,0.0,0.0,17212.660000000003,0,50,1,1948,201705696,,,500.0,,1.0,1.0,6.0,2.0,3.0,1.8,617.993639986672,0.0,1200.0,0.0,0.0,4902.0,0,4,2,150.0,7,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1615.1157181506744,0.09383301117611538,0.32948097065497234,2723.3333333333335,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +5697,2,84.0,3,0.0,4,120,2,0,72,6.0,5552.596031986088,0.0,201.8894647688343,0.0,0.0,12805.0,0,50,1,1949,201705697,,,,,0.0,2.0,8.0,0.0,1.0,1.0,6090.857027622111,0.0,150.0,0.0,0.0,48460.0,0,5,1,200.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5754.485496754922,0.4493936350452887,0.11874712127022125,48460.0,10,5,10,10_1,10_0,10_0_1 +5698,2,35.0,4,0.0,5,111,6,0,21,2.0,0.0,624.566843803548,834.4764543778484,247.7050718860512,0.0,15988.514661438774,0,50,1,195,201705698,,,244.0,,1.0,2.0,2.0,0.0,1.0,1.0,4124.059532960699,0.0,620.0,0.0,0.0,11554.0,0,1,3,38.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1706.7483700674477,0.10674840072441481,0.1477192634643801,11554.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +5699,2,63.0,2,0.0,6,112,2,0,77,5.0,0.0,458.01568545593517,1682.4122064069525,106.15931652259337,0.0,16157.619999999999,0,60,1,1950,201705699,,,269.0,,0.0,1.0,5.0,0.0,1.0,1.0,2312.007218172388,0.0,1250.0,0.0,0.0,20366.0,0,5,5,138.0,8,0.0,1,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2246.587208385481,0.13904196338232247,0.11031067506557404,20366.0,5,3,5,5_1,5_0,5_0_0 +5700,2,73.0,3,0.0,1,111,2,0,78,4.0,0.0,0.0,1035.5211353222683,0.0,1929.671446213972,12642.607849749775,0,71,1,1952,201705700,,,,,0.0,3.0,7.0,0.0,1.0,1.0,1724.1224599743578,1860.0,0.0,0.0,0.0,17836.0,0,5,3,200.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2965.19258153624,0.23453963112483378,0.16624762175018165,17836.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +5701,2,68.0,2,0.0,1,300,6,0,78,6.0,2062.392811880547,0.0,516.8370298082158,60.15694602946958,0.0,17008.559999999998,0,71,1,1954,201705701,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2959.6587738882936,0.0,384.0,0.0,0.0,21601.0,0,5,1,100.0,0,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2639.3867877182324,0.15517990868822715,0.12218817590473739,21601.0,6,3,6,6_1,6_0,6_1_0 +5702,2,90.0,2,0.0,4,112,2,0,75,6.0,0.0,0.0,2099.6504335958766,61.9262679715128,0.0,22497.287009159056,0,70,1,1956,201705702,,,298.0,,0.0,2.0,4.0,0.0,1.0,1.0,2921.811943056243,0.0,1560.0,0.0,0.0,21341.0,0,5,1,150.0,6,2.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2161.5767015673896,0.09608166089926187,0.10128750768789604,21341.0,6,3,6,6_1,6_1,6_0_1 +5703,2,67.0,2,0.0,6,400,4,77,77,7.0,0.0,277.585263912688,1049.8252167979383,49.54101437721024,0.0,30573.680000000004,50,60,1,1957,201705703,,,324.0,,1.0,0.0,5.0,1.0,3.0,2.0,2345.3495562004646,0.0,780.0,0.0,0.0,48589.0,5,5,1,85.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1376.9514950878367,0.045037152710692224,0.02833874941011004,24294.5,7,4,7,7_1,7_0,7_0_0 +5704,2,59.0,3,0.0,1,111,2,77,54,6.0,0.0,0.0,753.7206684703146,0.0,1397.7643342141462,23358.2,60,60,1,1958,201705704,,,320.0,453.0,1.0,2.0,6.0,0.0,2.0,1.5,1797.8217763611083,0.0,560.0,790.0,0.0,33462.0,5,1,3,80.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2151.4850026844606,0.09210833894240397,0.0642963661073594,22308.0,6,3,6,6_1,6_3,6_1_0 +5705,2,44.0,2,0.0,7,120,2,22,13,7.0,1903.7472109666587,0.0,1938.1388617808093,283.09151072691566,0.0,29433.88,43,50,1,1959,201705705,,,,,4.0,0.0,5.0,3.0,5.0,3.0,1938.8438782886237,0.0,1440.0,0.0,0.0,77757.0,1,1,1,120.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4124.977583474383,0.14014386086626646,0.053049597894393855,25919.0,7,4,7,7_1,7_0,7_0_0 +5706,2,52.0,5,0.0,2,111,2,0,22,1.0,468.00452269597025,0.0,829.0927353173462,0.0,0.0,26412.1,0,60,1,196,201705706,,,180.0,,1.0,3.0,3.0,0.0,1.0,1.0,2407.79795239794,0.0,616.0,0.0,0.0,7191.0,0,1,2,74.0,9,7.0,1,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1297.0972580133164,0.04910996316132819,0.18037786928289756,7191.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +5707,2,64.0,3,0.0,6,300,5,72,72,3.0,0.0,277.585263912688,1615.1157181506744,169.8549064361494,0.0,21979.445846751303,71,70,1,1961,201705707,,,180.0,,0.0,2.0,5.0,0.0,2.0,1.5,1790.208935069504,0.0,1200.0,0.0,0.0,21540.0,6,5,1,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2062.555888499512,0.093840213392112,0.0957546837743506,14360.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5708,1,40.0,2,143.0,2,111,1,84,54,4.0,0.0,0.0,597.5928157157495,0.0,230.01185246561897,39836.560000000005,60,41,2,1962,201705708,,,,197.0,1.0,0.0,4.0,2.0,4.0,2.1,1132.513351197824,0.0,444.0,130.0,0.0,37299.0,3,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,827.6046681813684,0.02077500336829707,0.022188387575574908,17761.428571428572,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +5709,2,81.0,1,0.0,6,111,2,77,74,9.0,0.0,0.0,728.148002932929,0.0,2358.506148743616,25392.68031599412,60,44,2,1963,201705709,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1841.5988074602392,0.0,541.0,1333.0,0.0,50354.0,5,5,1,120.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,3086.654151676545,0.12155684682614425,0.061299085508133316,33569.333333333336,9,5,9,9_0,9_2,9_0_0 +5710,2,56.0,3,0.0,99,111,2,56,68,5.0,0.0,0.0,605.6683943065029,0.0,0.0,19040.98,71,71,2,1965,201705710,,,,380.0,2.0,0.0,3.0,0.0,2.0,1.5,2109.589078676437,0.0,450.0,0.0,0.0,30703.0,1,1,3,80.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,605.6683943065029,0.031808677615674345,0.019726684503354817,20468.666666666668,5,3,5,5_0,5_3,5_0_0 +5711,2,32.0,4,0.0,3,111,1,0,64,9.0,0.0,0.0,442.8108927263099,0.0,161.0082967259333,32473.199999999997,0,50,2,1966,201705711,,,,456.0,3.0,0.0,4.0,2.0,3.0,2.0,4582.311294379778,0.0,329.0,91.0,0.0,69917.0,0,1,3,72.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,603.8191894522431,0.01859438519924871,0.008636228520277517,34958.5,9,5,9,9_0,9_4,9_0_1 +5712,1,43.0,4,151.0,4,111,2,0,52,6.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,33595.600000000006,0,50,2,1969,201705712,,,,348.0,1.0,0.0,3.0,2.0,3.0,1.6,962.269745035256,1500.0,0.0,0.0,0.0,33472.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2391.2843399485805,0.07117849777794057,0.0714413342479858,20920.0,5,3,5,5_0,5_4,5_0_1 +5713,2,69.0,2,0.0,3,112,2,77,75,4.0,1522.997768773327,0.0,479.1509963847001,0.0,0.0,19984.96,50,50,1,197,201705713,,,362.0,,0.0,2.0,4.0,0.0,2.0,1.5,2623.544785776209,0.0,356.0,0.0,0.0,24183.0,5,5,1,65.0,9,1.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2002.148765158027,0.10018277570523168,0.08279157942182636,16122.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +5714,2,68.0,2,0.0,4,111,4,72,75,5.0,0.0,0.0,2273.3864700935446,274.24490101669954,536.9428396326666,25012.486847444772,70,50,1,1970,201705714,,,225.0,,0.0,1.0,4.0,0.0,2.0,1.5,2118.5698304223465,517.5563351347934,1475.0,0.0,0.0,29539.0,6,5,1,100.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3084.574210742911,0.12332137262305148,0.10442378586759575,19692.666666666668,5,3,5,5_1,5_2,5_0_1 +5715,2,39.0,3,0.0,1,400,4,55,47,9.0,0.0,387.23144315819974,218.04062195034103,123.8525359430256,0.0,48218.26,43,31,1,1971,201705715,,,88.0,,2.0,0.0,5.0,0.0,2.0,1.5,1965.8471409739295,0.0,162.0,0.0,0.0,49249.0,1,1,1,110.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,729.1246010515664,0.015121337871826283,0.014804861033758379,32832.666666666664,9,5,9,9_1,9_1,9_1_0 +5716,2,55.0,3,0.0,2,112,2,56,48,8.0,1586.456009138882,0.0,1130.581002705472,0.0,0.0,20947.719999999998,50,50,1,1972,201705716,,,191.0,,2.0,2.0,4.0,0.0,2.0,1.5,2164.6733397856715,0.0,840.0,0.0,0.0,43682.0,1,1,3,100.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2717.0370118443543,0.12970562007914727,0.06220038029037943,29121.333333333332,8,4,8,8_1,8_0,8_0_1 +5717,2,45.0,4,0.0,4,112,6,68,64,6.0,0.0,0.0,1749.7086946632305,44.23304855108057,0.0,21802.1971719182,71,50,1,1975,201705717,,,500.0,,2.0,0.0,3.0,0.0,2.0,1.5,3032.1348240942903,0.0,1300.0,0.0,0.0,31280.0,1,1,2,45.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1793.9417432143111,0.08228261257654136,0.057351078747260587,20853.333333333332,5,3,5,5_1,5_0,5_0_1 +5718,2,79.0,3,0.0,4,111,1,0,75,7.0,0.0,0.0,778.9976599087544,0.0,1202.8199350219625,20444.279712160245,0,50,2,1976,201705718,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3146.5875220148537,1036.6000329159756,150.0,72.0,0.0,23353.0,0,5,1,27.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1981.817594930717,0.09693751126638778,0.08486351196551693,23353.0,6,3,6,6_0,6_4,6_0_1 +5719,2,59.0,4,0.0,8,120,2,0,54,6.0,0.0,0.0,884.2758556874942,2524.822411295679,0.0,15243.977171918204,0,60,1,1977,201705719,,,199.0,,1.0,2.0,5.0,0.0,1.0,1.0,1279.4287382346608,0.0,657.0,0.0,0.0,24430.0,0,1,2,135.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3409.0982669831733,0.22363574994478913,0.13954556966775167,24430.0,7,4,7,7_1,7_1,7_0_0 +5720,2,47.0,3,0.0,9,111,2,34,21,8.0,0.0,0.0,646.0462872602698,0.0,1273.9117982711205,86588.5116935026,30,42,1,1978,201705720,,,600.0,,2.0,0.0,8.0,3.0,5.0,2.6,1520.3659057038683,0.0,480.0,720.0,0.0,79460.0,1,1,2,184.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1919.9580855313902,0.022173358197071995,0.024162573439861442,30561.53846153846,8,4,8,8_1,8_3,8_0_0 +5721,1,49.0,5,379.0,7,111,1,0,56,1.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,7537.22,0,71,2,1979,201705721,,,160.0,,1.0,1.0,3.0,1.0,2.0,1.3,765.3629266306967,1100.0,0.0,0.0,0.0,9503.0,0,4,3,70.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1753.6085159622926,0.23265985548548304,0.18453209680756524,7310.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5722,2,82.0,4,0.0,1,111,2,0,77,6.0,0.0,0.0,403.7789295376686,0.0,1151.8285842701382,18916.120000000003,0,41,2,198,201705722,,,320.0,,0.0,6.0,6.0,0.0,1.0,1.0,2596.1227508238003,0.0,300.0,651.0,0.0,22400.0,0,7,1,130.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1555.6075138078068,0.0822371349836968,0.06944676400927709,22400.0,6,3,6,6_0,6_2,6_1_0 +5723,2,35.0,2,0.0,99,111,2,0,47,9.0,0.0,0.0,68.47801056163385,0.0,127.60730531414974,35360.82,0,31,2,1980,201705723,,,120.0,550.0,1.0,0.0,3.0,0.0,1.0,1.0,3145.339175199007,123.0,0.0,0.0,0.0,29228.0,0,1,3,70.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,196.08531587578358,0.005545270609555536,0.006708817431086068,29228.0,8,4,8,8_0,8_2,8_0_0 +5724,1,45.0,4,273.0,9,111,2,0,52,2.0,0.0,0.0,726.8020731678034,0.0,1203.1389205893915,20767.7,0,50,1,1981,201705724,,,500.0,219.0,1.0,0.0,4.0,2.0,3.0,1.8,1009.9887501740214,0.0,540.0,680.0,0.0,21356.0,0,4,3,85.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1929.940993757195,0.09292993416493858,0.09036996599350042,11864.444444444443,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +5725,1,61.0,3,30.0,4,112,2,0,75,4.0,0.0,294.24037974744925,723.7513311392196,0.0,1348.6950968162168,26421.0,0,41,1,1983,201705725,,,500.0,,0.0,2.0,5.0,0.0,1.0,1.0,2562.6926510438793,1300.0,0.0,0.0,0.0,16280.0,0,4,3,140.0,9,0.0,1,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2366.6868077028857,0.0895759739488621,0.1453738825370323,16280.0,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +5726,2,39.0,2,0.0,4,111,1,47,43,3.0,0.0,0.0,476.45913685444896,0.0,0.0,37773.71272043095,43,33,2,1984,201705726,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3080.8327648317677,0.0,354.0,0.0,0.0,27041.0,1,1,3,74.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,476.45913685444896,0.01261351089263574,0.01761987858638545,15022.777777777777,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +5727,2,56.0,2,0.0,1,112,5,0,13,10.0,0.0,69.396315978172,1195.185631431499,49.54101437721024,0.0,20953.31087530163,0,70,1,1985,201705727,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2413.815714693808,0.0,888.0,0.0,0.0,77180.0,0,1,1,150.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1314.1229617868812,0.06271672145789055,0.01702672922760924,77180.0,10,5,10,10_1,10_0,10_1_0 +5728,2,51.0,2,0.0,1,112,2,52,46,5.0,0.0,0.0,5048.8452744938495,0.0,4392.192428195213,36118.86921209822,60,50,1,1986,201705728,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.5,1759.669423753215,4233.61082140261,2000.0,0.0,0.0,48264.0,1,1,2,110.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,9441.037702689064,0.26138796448053625,0.19561241717820868,19305.6,5,3,5,5_1,5_1,5_1_0 +5729,2,45.0,3,0.0,2,111,2,0,34,10.0,0.0,0.0,457.61612014269105,0.0,1380.0711147937138,28243.08,0,10,8,1987,201705729,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3490.364800743375,0.0,340.0,780.0,0.0,42918.0,0,1,2,52.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1837.6872349364048,0.06506681406335303,0.04281856645082261,42918.0,10,5,10,10_0,10_3,10_0_1 +5730,2,24.0,3,0.0,4,111,2,64,54,1.0,0.0,0.0,258.4185149041079,0.0,934.2019853988216,26727.300315994114,50,30,2,1989,201705730,,,140.0,332.0,2.0,0.0,2.0,0.0,2.0,1.5,4229.408042764779,0.0,192.0,528.0,0.0,15694.0,1,2,3,49.0,4,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1192.6205003029295,0.044621809393492806,0.07599213076990757,10462.666666666666,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +5731,2,69.0,1,0.0,6,112,5,78,75,5.0,0.0,277.585263912688,1578.7756144922841,191.08676974066807,0.0,31066.699999999997,70,50,1,199,201705731,,,,,1.0,0.0,4.0,1.0,3.0,2.0,2822.3224761753613,0.0,1173.0,0.0,0.0,36553.0,5,5,1,87.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2047.4476481456402,0.06590489650158016,0.056013121991235745,18276.5,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5732,1,43.0,3,515.0,9,111,1,85,85,1.0,0.0,0.0,378.2062640002829,0.0,0.0,11681.119999999997,71,71,2,1990,201705732,,,,,0.0,0.0,5.0,4.0,6.0,2.9,2576.9906402669944,0.0,281.0,0.0,0.0,28210.0,6,6,3,108.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,378.2062640002829,0.03237756858933758,0.013406815455522258,9727.586206896553,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5733,2,83.0,4,0.0,2,111,1,0,77,4.0,0.0,0.0,214.89847216902984,0.0,400.45869797773827,14206.8,0,71,2,1992,201705733,,,,280.0,0.0,5.0,3.0,0.0,1.0,1.0,4084.0208207902797,386.0,0.0,0.0,0.0,16830.0,0,5,3,51.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,615.3571701467681,0.043314269937408015,0.0365631117140088,16830.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +5734,1,62.0,2,422.0,4,111,2,0,54,3.0,0.0,0.0,68.64241802140366,0.0,111.46728234872305,16010.502382591489,0,60,2,1993,201705734,,,,,2.0,4.0,4.0,1.0,2.0,1.5,3980.3833045610695,0.0,51.0,63.0,0.0,23679.0,0,1,3,98.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,180.1097003701267,0.011249472131865347,0.007606305180545069,15786.0,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +5735,2,48.0,4,0.0,6,111,2,0,22,1.0,0.0,0.0,384.9359128259107,0.0,555.567089801572,14991.671191295745,0,50,2,1994,201705735,,,98.0,,1.0,0.0,3.0,0.0,1.0,1.0,4160.451285616069,0.0,286.0,314.0,0.0,7651.0,0,1,2,73.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,940.5030026274827,0.06273503404834176,0.12292550027806597,7651.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +5736,2,48.0,3,0.0,4,111,2,21,37,2.0,0.0,277.585263912688,928.6915379366377,0.0,1206.677564473478,27748.42,50,31,1,1995,201705736,,,430.0,,2.0,0.0,5.0,1.0,3.0,2.0,2006.8630044404656,0.0,690.0,682.0,0.0,27338.0,1,1,1,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2412.9543663228037,0.08695826163517792,0.08826374885956557,13669.0,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +5737,2,54.0,2,0.0,7,112,5,68,64,8.0,0.0,1110.341055650752,672.964882562781,141.54575536345783,0.0,61771.12,41,60,1,1997,201705737,,,104.0,,2.0,5.0,4.0,0.0,2.0,1.5,2125.332323468305,0.0,500.0,0.0,0.0,42269.0,1,1,1,85.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1924.8516935769908,0.031161029516333694,0.04553814127556816,28179.333333333332,8,4,8,8_1,8_0,8_0_0 +5738,2,49.0,3,0.0,7,111,6,0,22,1.0,0.0,0.0,2048.505102521105,0.0,0.0,28995.559999999998,0,60,1,1998,201705738,,,224.0,,1.0,1.0,4.0,1.0,2.0,1.5,3140.168139483339,0.0,1522.0,0.0,0.0,13062.0,0,1,2,130.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2048.505102521105,0.07064892357730305,0.1568293601685121,8708.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +5739,1,54.0,5,300.0,99,111,2,52,56,1.0,0.0,0.0,467.65470627457273,0.0,871.4645240966324,5245.3516935026,10,20,2,1999,201705739,,,,,2.0,1.0,3.0,1.0,3.0,1.8,1075.6181338158078,840.0,0.0,0.0,0.0,10910.0,4,4,3,52.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1339.119230371205,0.25529636688231366,0.12274236758672824,6061.111111111111,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5740,2,65.0,4,0.0,5,212,4,0,74,3.0,0.0,0.0,2717.4321957885095,0.0,0.0,20295.84784974977,0,50,1,2,201705740,,,147.0,,0.0,3.0,6.0,0.0,1.0,1.0,2407.1262995995844,0.0,2019.0,0.0,0.0,17192.0,0,5,1,120.0,2,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2717.4321957885095,0.13389104096097237,0.15806376197001568,17192.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5741,2,79.0,3,0.0,4,400,2,77,78,4.0,2084.603196008491,0.0,619.1276919577585,226.47320858153253,0.0,18229.760000000002,70,70,1,20,201705741,,,406.0,,0.0,3.0,8.0,0.0,2.0,1.5,2225.422466192601,0.0,460.0,0.0,0.0,26935.0,5,5,1,130.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2930.2040965477822,0.16073739295239114,0.10878797462586903,17956.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +5742,2,61.0,4,0.0,6,112,4,0,52,5.0,0.0,0.0,986.5665178370369,113.23660429076627,0.0,18411.853696501075,0,71,1,200,201705742,,,217.0,,1.0,2.0,4.0,0.0,1.0,1.0,2536.90480623849,0.0,733.0,0.0,0.0,19085.0,0,1,3,83.0,6,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1099.8031221278031,0.05973342718537927,0.0576265717646216,19085.0,5,3,5,5_1,5_1,5_0_0 +5743,2,76.0,3,0.0,4,112,2,0,78,5.0,0.0,0.0,2146.757975375271,283.09151072691566,0.0,11838.619999999999,0,60,1,2001,201705743,,,160.0,,0.0,1.0,4.0,0.0,1.0,1.0,3261.181921272125,0.0,1595.0,0.0,0.0,20387.0,0,5,1,80.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2429.849486102187,0.20524769661516182,0.11918622093011168,20387.0,5,3,5,5_1,5_0,5_0_1 +5744,1,21.0,3,209.0,99,111,4,0,84,1.0,0.0,0.0,672.964882562781,0.0,0.0,9094.34,0,31,2,2002,201705744,,,,91.0,0.0,0.0,1.0,0.0,1.0,1.0,2586.7193711401064,0.0,500.0,0.0,0.0,2509.0,0,3,3,20.0,6,4.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,672.964882562781,0.07399821015739251,0.26822035973008407,2509.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5745,2,60.0,3,0.0,6,300,6,0,86,1.0,0.0,0.0,565.290501352736,0.0,0.0,9620.28,0,71,1,2003,201705745,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2189.3465806609574,0.0,420.0,0.0,0.0,5240.0,0,7,1,90.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,565.290501352736,0.05876029609873475,0.10787986667036946,5240.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +5746,2,86.0,2,0.0,99,111,1,0,77,8.0,0.0,0.0,127.86332768692839,0.0,155.70033089980362,17609.871191295744,0,44,2,2004,201705746,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2717.111146957601,0.0,95.0,88.0,0.0,29833.0,0,5,1,108.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,283.563658586732,0.016102540189328166,0.009505033304955317,29833.0,8,4,8,8_0,8_3,8_0_0 +5747,2,25.0,2,0.0,2,111,2,54,46,7.0,0.0,0.0,100.94473238441715,0.0,214.08795498722998,53945.08000000001,31,43,2,2005,201705747,,,120.0,,2.0,0.0,4.0,1.0,3.0,1.8,3209.9669254333494,0.0,75.0,121.0,0.0,42709.0,1,1,2,85.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,315.0326873716471,0.00583987802727602,0.007376259977326725,23727.222222222223,6,3,6,6_0,6_3,6_0_1 +5748,2,66.0,3,0.0,1,300,2,77,78,3.0,0.0,0.0,721.4183541073012,56.61830214538313,0.0,47591.939999999995,50,31,1,2007,201705748,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1676.290538720522,0.0,536.0,0.0,0.0,22003.0,5,5,1,125.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,778.0366562526843,0.016348076087099716,0.035360480673212034,14668.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5749,2,53.0,1,0.0,2,111,2,56,47,5.0,0.0,0.0,691.8078992745388,0.0,2121.4170085098244,43331.590875301634,50,31,1,2008,201705749,,,432.0,,3.0,3.0,7.0,1.0,3.0,2.0,1514.7765738567414,0.0,514.0,1199.0,0.0,40497.0,1,1,1,120.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2813.2249077843635,0.06492318539331221,0.0694674891420195,20248.5,5,3,5,5_1,5_3,5_0_1 +5750,2,73.0,2,0.0,1,400,2,0,22,9.0,1521.4113127641879,0.0,612.3980431321306,106.15931652259337,0.0,18674.760000000002,0,30,1,201,201705750,,,262.0,,1.0,0.0,5.0,0.0,1.0,1.0,2263.9470303212493,0.0,454.99999999999994,0.0,0.0,32469.0,0,5,1,130.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2239.9686724189114,0.1199463164409562,0.06898791685666054,32469.0,9,5,9,9_1,9_0,9_1_0 +5751,2,77.0,3,0.0,5,111,2,0,72,5.0,0.0,0.0,306.87198644862815,0.0,1196.0616328212186,15053.670875301628,0,71,2,2010,201705751,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2590.053825410013,0.0,228.0,676.0,0.0,19060.0,0,5,3,50.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1502.9336192698468,0.09983834718584764,0.07885276071720078,19060.0,5,3,5,5_0,5_3,5_0_0 +5752,1,36.0,3,350.0,1,111,1,0,55,1.0,0.0,0.0,201.8894647688343,0.0,0.0,6367.58,0,50,2,2011,201705752,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1158.6892057638997,0.0,150.0,0.0,0.0,12265.0,0,4,3,120.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,201.8894647688343,0.03170583875959694,0.0164606167769127,9434.615384615385,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +5753,1,60.0,4,415.0,9,111,4,0,74,1.0,0.0,0.0,1345.929765125562,0.0,0.0,14087.21505288257,0,31,2,2014,201705753,,,,88.0,0.0,4.0,4.0,3.0,4.0,2.5,821.3792495380115,0.0,1000.0,0.0,0.0,8001.0,0,7,3,72.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1345.929765125562,0.09554264345883991,0.16822019311655567,3200.4,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5754,2,55.0,5,0.0,4,111,2,52,47,1.0,0.0,0.0,768.2898745939409,0.0,1431.6917181587535,27798.627533755658,20,41,2,2015,201705754,,,,620.0,2.0,1.0,4.0,2.0,4.0,2.3,1790.6269443851922,1380.0,0.0,0.0,0.0,23101.0,1,1,3,100.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2199.9815927526943,0.07913993559866485,0.09523317573926213,10043.913043478262,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +5755,1,54.0,4,183.0,2,111,1,0,55,1.0,0.0,0.0,419.93008671917534,0.0,0.0,10696.42,0,20,2,2016,201705755,,,170.0,122.0,1.0,2.0,1.0,0.0,1.0,1.0,2865.0688275537286,0.0,312.0,0.0,0.0,5057.0,0,7,3,30.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,419.93008671917534,0.0392589377304907,0.08303936854245113,5057.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5756,2,66.0,3,0.0,5,111,1,0,77,2.0,0.0,0.0,437.42717366580763,0.0,592.7228505844797,20098.384177580945,0,50,2,2017,201705756,,,140.0,296.0,0.0,1.0,3.0,0.0,1.0,1.0,2203.299782209725,0.0,325.0,335.0,0.0,12249.0,0,5,3,60.0,7,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1030.1500242502873,0.051255365364116394,0.08410074489756611,12249.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +5757,1,46.0,3,402.0,99,111,1,0,85,1.0,0.0,0.0,430.6975248401798,0.0,336.17116898821234,21633.46,0,71,2,202,201705757,,,,,0.0,1.0,4.0,2.0,3.0,1.8,1821.6601644577026,0.0,320.0,190.0,0.0,16913.0,0,6,3,71.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,766.8686938283922,0.03544826827647506,0.045341967352237465,9396.111111111111,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5758,2,33.0,2,0.0,9,111,2,0,52,7.0,0.0,0.0,888.3136449828709,0.0,0.0,14073.86,0,31,2,2020,201705758,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2574.113142982045,0.0,660.0,0.0,0.0,24237.0,0,1,2,44.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,888.3136449828709,0.06311798220124905,0.03665113854779349,24237.0,7,4,7,7_0,7_2,7_0_0 +5759,2,66.0,2,0.0,1,112,5,75,75,10.0,0.0,735.6009493686231,2745.6967208561464,0.0,0.0,65647.25495631514,30,30,1,2021,201705759,,,350.0,,0.0,4.0,8.0,0.0,2.0,1.5,1771.1346837214296,0.0,2040.0,0.0,0.0,75100.0,5,5,1,281.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3481.2976702247697,0.0530303616280893,0.04635549494307283,50066.666666666664,10,5,10,10_1,10_0,10_1_0 +5760,2,72.0,2,0.0,4,112,2,74,74,6.0,0.0,0.0,1695.871504058208,0.0,0.0,21900.622382591486,70,10,1,2022,201705760,,,420.0,,0.0,2.0,6.0,0.0,2.0,1.5,1733.6833187722125,0.0,1260.0,0.0,0.0,31830.0,5,5,1,150.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1695.871504058208,0.07743485433574865,0.05327902934521546,21220.0,6,3,6,6_1,6_0,6_0_1 +5761,2,68.0,3,0.0,1,112,6,77,78,2.0,682.1760839297193,0.0,969.0694308904046,300.7847301473479,0.0,12383.7316935026,71,71,1,2023,201705761,,,170.0,,0.0,2.0,4.0,0.0,2.0,1.5,2440.7533454786735,0.0,720.0,0.0,0.0,15805.0,5,5,1,72.0,8,0.0,3,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1952.0302449674718,0.15762859639406174,0.12350713349999821,10536.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +5762,1,23.0,2,256.0,1,112,4,0,54,5.0,0.0,0.0,336.4824412813905,44.23304855108057,0.0,7886.320000000001,0,41,2,2024,201705762,,,,94.0,1.0,0.0,3.0,0.0,1.0,1.0,5132.031039918772,0.0,250.0,0.0,0.0,19913.0,0,1,3,42.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,380.71548983247106,0.04827543009064697,0.01911894188884001,19913.0,5,3,5,5_0,5_0,5_1_0 +5763,1,22.0,2,318.0,1,111,4,0,34,7.0,0.0,0.0,1049.8252167979383,0.0,0.0,15512.04,0,31,2,2025,201705763,,,,432.0,1.0,0.0,2.0,0.0,1.0,1.0,5464.7535836547395,0.0,780.0,0.0,0.0,23928.0,0,3,3,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1049.8252167979383,0.06767808855559541,0.043874340387743994,23928.0,7,4,7,7_0,7_4,7_1_0 +5764,2,35.0,2,0.0,1,111,2,43,34,8.0,0.0,0.0,242.26735772260116,0.0,2017.027013929274,51293.65338050696,33,10,2,2028,201705764,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3259.5258512972214,0.0,180.0,1140.0,0.0,42391.0,1,1,2,33.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2259.2943716518753,0.04404627517739789,0.05329655756297033,28260.666666666668,8,4,8,8_0,8_4,8_1_0 +5765,1,46.0,4,162.0,7,120,2,0,52,3.0,0.0,0.0,592.2090966552472,0.0,2653.9829130648345,22153.357290442265,0,50,1,2029,201705765,,,440.0,,2.0,1.0,4.0,2.0,3.0,2.0,705.0110799738412,0.0,440.0,1500.0,0.0,28926.0,0,1,3,94.0,0,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3246.192009720082,0.14653273394008784,0.11222402024891384,14463.0,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +5766,2,63.0,4,0.0,8,111,1,0,75,6.0,0.0,0.0,1211.3367886130059,0.0,1150.059262328095,15604.000315994115,0,50,2,2030,201705766,,,,578.0,0.0,1.0,4.0,0.0,1.0,1.0,4167.749059217084,0.0,900.0,650.0,0.0,23167.0,0,5,3,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2361.396050941101,0.1513327353961066,0.10192929818021759,23167.0,6,3,6,6_0,6_4,6_0_0 +5767,2,49.0,1,0.0,7,221,2,22,22,10.0,0.0,0.0,1214.028648143257,53.079658261296686,0.0,34018.399999999994,50,50,1,2031,201705767,,,490.0,,2.0,2.0,5.0,0.0,2.0,1.5,2309.704646616692,0.0,902.0,0.0,0.0,59150.0,1,1,1,140.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1267.1083064045538,0.037247733767741986,0.021421949389764224,39433.333333333336,9,5,9,9_1,9_1,9_0_0 +5768,1,31.0,3,314.0,7,112,2,48,85,1.0,0.0,0.0,497.99401309645793,0.0,1415.4575536345783,19141.220000000005,60,43,2,2033,201705768,,,740.0,,1.0,0.0,2.0,2.0,4.0,2.1,1041.0370370482779,0.0,370.0,800.0,0.0,18150.0,4,1,3,52.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1913.451566731036,0.09996497437107121,0.10542432874551164,8642.857142857143,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +5769,2,27.0,4,0.0,8,111,4,65,55,2.0,0.0,0.0,3176.3942456963264,0.0,0.0,31859.841750603253,50,50,1,2034,201705769,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2666.5514136689176,0.0,2360.0,0.0,0.0,22310.0,1,1,3,72.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3176.3942456963264,0.09969899632775743,0.14237535839069146,12394.444444444443,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +5770,2,50.0,3,0.0,9,111,1,0,52,3.0,0.0,0.0,710.6509159862967,0.0,0.0,28171.18995415666,0,50,2,2035,201705770,,,,444.0,1.0,1.0,3.0,1.0,2.0,1.5,2665.1131733891066,0.0,528.0,0.0,0.0,22006.0,0,1,3,74.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,710.6509159862967,0.025226158963918388,0.032293507042910875,14670.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +5771,2,53.0,4,0.0,8,112,6,34,38,10.0,1110.5192063972174,0.0,2293.4643197739574,0.0,0.0,43715.32,30,50,1,2036,201705771,,,600.0,,3.0,1.0,7.0,1.0,3.0,2.0,1818.1735315402593,0.0,1704.0,0.0,0.0,88738.0,1,1,2,120.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3403.983526171175,0.07786706184859621,0.038359930651706994,44369.0,10,5,10,10_1,10_0,10_0_0 +5772,2,63.0,5,0.0,6,400,5,54,78,6.0,0.0,971.5484236944079,1428.0314807982213,53.079658261296686,0.0,46999.659999999996,50,50,1,2037,201705772,,,,,1.0,4.0,5.0,0.0,2.0,1.5,2806.305844502179,0.0,1061.0,0.0,0.0,33967.0,1,5,1,114.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2452.659562753926,0.05218462352182816,0.07220712935360574,22644.666666666668,6,3,6,6_1,6_0,6_0_0 +5773,2,60.0,3,0.0,7,111,6,0,34,4.0,0.0,0.0,2358.0689484999843,123.8525359430256,0.0,22274.7,0,10,1,2038,201705773,,,360.0,,1.0,1.0,4.0,0.0,1.0,1.0,1967.957450586037,0.0,1752.0,0.0,0.0,28708.0,0,1,5,100.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2481.92148444301,0.11142334058115305,0.08645400182677336,28708.0,8,4,8,8_1,8_3,8_0_0 +5774,1,23.0,2,262.0,99,111,2,22,43,2.0,0.0,0.0,376.8603342351573,0.0,980.2043558919455,14701.26,71,50,2,2039,201705774,,,,,3.0,0.0,2.0,0.0,3.0,2.0,3206.893447329955,0.0,280.0,554.0,0.0,25751.0,1,1,3,43.0,9,7.0,5,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1357.064690127103,0.09230941362353315,0.05269949478183771,12875.5,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5775,2,76.0,2,0.0,3,111,2,0,78,6.0,0.0,0.0,645.8088800934576,0.0,1203.4510094667783,16841.8,0,70,1,204,201705775,,,200.0,,0.0,1.0,5.0,0.0,1.0,1.0,2603.927367786302,1160.0,0.0,0.0,0.0,21414.0,0,5,1,80.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1849.259889560236,0.10980179610019333,0.08635751795835603,21414.0,6,3,6,6_1,6_3,6_0_1 +5776,2,38.0,3,0.0,5,112,4,63,67,6.0,0.0,0.0,2557.266553738568,0.0,0.0,45740.37000000001,50,50,1,2041,201705776,,,550.0,,2.0,0.0,4.0,2.0,4.0,2.1,2094.7273790596455,0.0,1900.0,0.0,0.0,46278.0,1,1,2,83.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2557.266553738568,0.05590830493366292,0.0552587958368678,22037.142857142855,6,3,6,6_1,6_0,6_0_0 +5777,2,42.0,2,0.0,2,111,2,52,62,4.0,0.0,0.0,1480.522741638118,0.0,0.0,29508.260000000006,71,50,1,2042,201705777,,,299.0,,2.0,0.0,3.0,3.0,5.0,2.6,1896.9910269006702,0.0,1100.0,0.0,0.0,43250.0,1,1,1,75.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1480.522741638118,0.050173163095286466,0.03423173969105475,16634.615384615383,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +5778,1,44.0,4,379.0,7,111,2,46,22,1.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,15768.03665845403,50,31,2,2044,201705778,,,,477.0,3.0,0.0,4.0,1.0,3.0,2.0,1956.1493633763084,800.0,0.0,0.0,0.0,14926.0,4,4,3,100.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1275.3516479725763,0.08088208288688857,0.08544497172535015,7463.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5779,1,40.0,2,216.0,99,400,2,0,56,2.0,2379.684013708323,346.98157989085996,1615.1157181506744,0.0,0.0,29401.079999999998,0,71,1,2045,201705779,,,1000.0,,1.0,0.0,6.0,3.0,4.0,2.3,252.52235774246776,0.0,1200.0,0.0,0.0,24702.0,0,1,2,140.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,4341.781311749857,0.14767421168711686,0.17576638781272194,10740.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +5780,2,41.0,2,0.0,6,111,2,47,37,8.0,0.0,0.0,336.4824412813905,0.0,1521.6168701571717,43066.3,31,31,1,2046,201705780,,,340.0,,2.0,0.0,5.0,2.0,4.0,2.1,2736.9821363242263,0.0,250.0,860.0,0.0,55689.0,1,1,1,110.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1858.0993114385622,0.04314508818817874,0.03336564333061398,26518.571428571428,7,4,7,7_1,7_2,7_0_0 +5781,2,46.0,2,0.0,2,111,2,85,56,5.0,0.0,0.0,672.964882562781,0.0,1689.7024546512778,40438.04,50,50,1,2047,201705781,,,310.0,,3.0,1.0,5.0,2.0,4.0,2.5,2691.6788353395586,0.0,500.0,955.0,0.0,53450.0,7,1,2,110.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2362.6673372140585,0.0584268509852124,0.04420331781504319,21380.0,6,3,6,6_1,6_3,6_0_1 +5782,2,42.0,3,0.0,9,400,5,56,62,4.0,0.0,610.6875806079136,1991.9760523858317,207.01066721905707,0.0,37923.34,44,43,1,205,201705782,,,,,2.0,0.0,3.0,1.0,3.0,2.0,2388.485907584128,0.0,1480.0,0.0,0.0,35678.0,1,1,2,96.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2809.674300212803,0.07408826069151091,0.078750891311531,17839.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5783,2,50.0,4,0.0,1,112,5,0,37,9.0,0.0,1554.4774779110528,1911.220266478298,58.38762408742635,0.0,36671.82,0,50,1,2050,201705783,,,600.0,,1.0,2.0,6.0,0.0,1.0,1.0,948.9733658010542,0.0,1420.0,0.0,0.0,41087.0,0,1,2,196.0,7,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3524.0853684767776,0.09609791301541014,0.08577129915731929,41087.0,10,5,10,10_1,10_0,10_1_0 +5784,1,22.0,3,137.0,2,111,2,0,84,1.0,0.0,0.0,686.4241802140366,0.0,0.0,6512.000000000001,0,30,2,2052,201705784,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3165.483830096379,0.0,510.0,0.0,0.0,1746.0,0,3,4,42.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,686.4241802140366,0.10540911858323657,0.3931409966861607,1746.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5785,2,28.0,3,0.0,2,111,2,46,38,8.0,0.0,0.0,484.5347154452023,0.0,796.1948739194503,21969.5,31,12,2,2053,201705785,,,,950.0,2.0,0.0,3.0,1.0,3.0,1.8,5069.721046594298,0.0,360.0,450.0,0.0,51015.0,4,1,3,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1280.7295893646526,0.05829580051274051,0.025104961077421398,28341.666666666664,8,4,8,8_0,8_3,8_0_1 +5786,2,58.0,3,0.0,1,111,2,0,,4.0,0.0,0.0,982.5287285416603,0.0,1150.059262328095,25341.12,0,31,1,2055,201705786,,,154.0,,0.0,2.0,5.0,1.0,2.0,1.5,1796.6662848494161,0.0,730.0,650.0,0.0,26337.0,0,8,2,60.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2132.5879908697552,0.08415523824005235,0.08097307935109371,17558.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +5787,2,70.0,2,0.0,6,111,6,77,75,6.0,0.0,0.0,872.1624878013641,0.0,0.0,44887.47923046352,50,71,2,2056,201705787,,,,,0.0,0.0,3.0,0.0,2.0,1.5,3582.6632706216674,0.0,648.0,0.0,0.0,33548.0,5,5,1,65.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,872.1624878013641,0.019429972516911993,0.025997451049283537,22365.333333333332,6,3,6,6_0,6_3,6_0_0 +5788,2,32.0,3,0.0,8,111,1,0,67,4.0,0.0,0.0,1006.7554643139204,0.0,0.0,16493.399999999998,0,30,2,2057,201705788,,,,487.0,1.0,1.0,1.0,0.0,1.0,1.0,5906.547588276611,0.0,748.0,0.0,0.0,16104.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1006.7554643139204,0.06103989864515021,0.06251586340747146,16104.0,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +5789,2,82.0,3,0.0,5,211,6,77,78,4.0,0.0,0.0,1909.8743367131724,212.31863304518674,0.0,24240.280000000002,71,50,1,2058,201705789,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2193.6311808217297,0.0,1419.0,0.0,0.0,26432.0,5,5,5,72.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2122.192969758359,0.08754820364114436,0.08028877760889676,17621.333333333332,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5790,2,68.0,3,0.0,1,112,6,0,78,4.0,0.0,0.0,1305.5518721717951,0.0,0.0,10016.6,0,71,1,2059,201705790,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2215.3527064075943,0.0,970.0,0.0,0.0,17750.0,0,5,1,60.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1305.5518721717951,0.13033882476806452,0.07355221815052367,17750.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5791,2,69.0,2,0.0,9,112,5,78,78,2.0,0.0,798.057633748978,822.3630864917184,0.0,0.0,20238.63087530163,44,71,1,2060,201705791,,,235.0,,0.0,3.0,3.0,0.0,2.0,1.5,5517.720237010853,0.0,611.0,0.0,0.0,18404.0,5,5,1,120.0,7,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1620.4207202406965,0.08006572827108524,0.0880472027950824,12269.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +5792,2,80.0,3,0.0,2,111,2,72,72,5.0,0.0,0.0,848.1023972238095,0.0,2128.8670720973305,20463.780271167154,41,50,2,2062,201705792,,,337.0,,0.0,3.0,4.0,0.0,2.0,1.5,1601.8725257970752,776.3345027021901,309.0,748.0,0.0,30195.0,5,5,1,78.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2976.96946932114,0.14547505054653073,0.09859147108200497,20130.0,5,3,5,5_0,5_3,5_0_1 +5793,2,73.0,4,0.0,1,111,4,77,75,7.0,0.0,0.0,1628.57501580193,0.0,0.0,18500.147849749777,70,70,1,2065,201705793,,,,,0.0,4.0,4.0,0.0,2.0,1.5,1961.8275843657004,0.0,1210.0,0.0,0.0,37720.0,5,5,3,80.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1628.57501580193,0.08803037840716268,0.04317537157481257,25146.666666666668,7,4,7,7_1,7_4,7_1_0 +5794,2,35.0,2,0.0,2,111,2,34,37,9.0,1586.456009138882,0.0,1305.5518721717951,0.0,0.0,70536.62405466144,30,20,1,2066,201705794,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,2257.946605533397,0.0,970.0,0.0,0.0,78283.0,1,1,1,90.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2892.0078813106775,0.04100008924540468,0.0369429873830931,37277.619047619046,9,5,9,9_1,9_4,9_0_1 +5795,2,39.0,2,0.0,9,400,5,34,34,9.0,0.0,416.377895869032,1345.929765125562,0.0,0.0,45479.1,20,20,1,2067,201705795,,,512.0,,2.0,0.0,7.0,2.0,4.0,2.1,1881.5866803312815,0.0,1000.0,0.0,0.0,78337.0,1,1,2,180.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1762.307660994594,0.0387498358805384,0.022496491581176125,37303.33333333333,9,5,9,9_1,9_1,9_0_0 +5796,2,30.0,4,0.0,9,211,4,55,37,7.0,317.29120182777643,0.0,2748.3885803863973,0.0,0.0,30643.9,50,41,1,2068,201705796,,,603.0,,2.0,0.0,4.0,0.0,2.0,1.5,2601.942139133014,0.0,2042.0,0.0,0.0,38845.0,1,1,2,81.0,1,2.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3065.679782214174,0.10004208936245627,0.07892083362631416,25896.666666666668,7,4,7,7_1,7_1,7_0_0 +5797,2,52.0,3,0.0,5,112,2,68,48,5.0,0.0,0.0,818.3957359805023,0.0,1525.0629171691069,34510.8,71,71,1,2069,201705797,,,406.0,,2.0,2.0,4.0,0.0,2.0,1.5,3392.714675771226,1470.0,0.0,0.0,0.0,30430.0,1,1,1,90.0,10,2.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2343.4586531496093,0.0679050805298518,0.07701145754681595,20286.666666666668,5,3,5,5_1,5_1,5_0_0 +5798,2,84.0,4,0.0,2,400,2,0,72,2.0,2408.240221872823,0.0,627.2032705485119,350.32574452455816,0.0,12775.150875301628,0,71,1,207,201705798,,,295.0,,0.0,1.0,2.0,0.0,1.0,1.0,3457.5706692498748,0.0,466.0,0.0,0.0,11761.0,0,5,5,70.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3385.7692369458928,0.2650277300044766,0.28788106767671906,11761.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +5800,1,27.0,1,189.0,9,112,4,0,46,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,31775.77536887669,0,50,1,2075,201705800,,,670.0,,1.0,0.0,3.0,1.0,2.0,1.3,652.7612221651581,0.0,1200.0,0.0,0.0,25473.0,0,1,3,73.0,7,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1615.1157181506744,0.0508285226529083,0.06340500601227474,19594.615384615383,5,3,5,5_1,5_0,5_0_0 +5801,2,34.0,2,0.0,3,111,2,46,33,8.0,0.0,0.0,699.8834778652922,0.0,1326.9914565324173,44228.24,41,20,1,2077,201705801,,,240.0,,2.0,0.0,5.0,1.0,3.0,1.8,1763.343294710734,0.0,520.0,750.0,0.0,49215.0,1,1,2,95.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2026.8749343977095,0.04582761905962592,0.041184088883423946,27341.666666666664,8,4,8,8_1,8_3,8_0_1 +5802,2,66.0,3,0.0,7,112,2,77,74,8.0,0.0,0.0,732.1857922283057,0.0,1541.0794115196472,12891.747699472087,50,50,1,2078,201705802,,,250.0,,0.0,2.0,7.0,0.0,2.0,1.5,1721.2921501168692,0.0,544.0,871.0,0.0,43489.0,5,5,1,120.0,10,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2273.265203747953,0.1763349125922657,0.05227218845565437,28992.666666666668,8,4,8,8_1,8_1,8_0_0 +5803,2,71.0,1,0.0,9,111,2,52,74,7.0,0.0,0.0,1301.1396859533622,0.0,774.3087037402923,36756.4879684513,60,50,2,208,201705803,,,,,1.0,0.0,3.0,0.0,2.0,1.5,440.92107265465313,746.3520236995025,658.0,0.0,0.0,35979.0,1,5,1,64.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2075.4483896936545,0.056464817625531745,0.057684993737837476,23986.0,7,4,7,7_0,7_3,7_0_0 +5804,2,70.0,2,0.0,4,112,2,78,77,8.0,2855.620816449988,0.0,646.0462872602698,0.0,0.0,28022.531191295744,50,71,1,2080,201705804,,,390.0,,0.0,0.0,5.0,0.0,2.0,1.5,1678.6569236227947,0.0,480.0,0.0,0.0,45569.0,5,5,1,96.0,10,4.0,3,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3501.667103710258,0.12495898674556326,0.07684318514143952,30379.333333333332,8,4,8,8_1,8_2,8_0_1 +5805,2,89.0,2,0.0,3,400,4,0,71,2.0,0.0,0.0,1375.5402199583243,169.8549064361494,0.0,7076.42,0,50,1,2081,201705805,,,152.0,,0.0,2.0,5.0,0.0,1.0,1.0,2050.164488897052,0.0,1022.0,0.0,0.0,11801.0,0,5,5,85.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1545.3951263944737,0.21838657490573957,0.1309545908308172,11801.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +5806,1,37.0,3,155.0,5,111,2,0,68,3.0,0.0,0.0,342.94678460135333,0.0,639.0739843375304,14074.32,0,50,2,2083,201705806,,,105.0,148.0,1.0,0.0,3.0,1.0,2.0,1.3,998.8178485572395,616.0,0.0,0.0,0.0,20870.0,0,1,3,65.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,982.0207689388837,0.06977394069048336,0.047054181549539234,16053.846153846152,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +5807,2,40.0,3,0.0,9,111,4,55,46,6.0,0.0,208.188947934516,2183.0980790336616,0.0,0.0,32977.94,43,43,1,2084,201705807,,,523.0,,2.0,0.0,5.0,3.0,5.0,2.4,1835.479468953292,0.0,1622.0,0.0,0.0,50710.0,1,1,2,100.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2391.2870269681775,0.07251171622509403,0.04715612358446416,21129.166666666668,5,3,5,5_1,5_2,5_0_0 +5808,2,52.0,3,0.0,99,111,2,0,52,5.0,0.0,0.0,484.5347154452023,0.0,1061.5931652259337,14267.66,0,60,2,2086,201705808,,,,402.0,1.0,2.0,3.0,0.0,1.0,1.0,2088.785041252654,0.0,360.0,600.0,0.0,21190.0,0,1,3,71.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1546.1278806711362,0.10836590447705764,0.07296497785139859,21190.0,5,3,5,5_0,5_3,5_0_0 +5809,2,67.0,3,0.0,1,111,2,0,77,5.0,0.0,0.0,942.1508355878933,0.0,2034.7202333497064,9353.04,0,60,1,209,201705809,,,600.0,,0.0,2.0,5.0,0.0,1.0,1.0,2166.157145442686,0.0,700.0,1150.0,0.0,19310.0,0,5,1,110.0,6,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2976.8710689376,0.31827844946002576,0.15416214753690316,19310.0,5,3,5,5_1,5_2,5_1_0 +5810,1,38.0,4,369.0,99,111,2,0,52,2.0,0.0,0.0,601.2703366387364,0.0,1120.4543881242419,8908.599999999999,0,71,2,2090,201705810,,,215.0,,1.0,0.0,2.0,1.0,2.0,1.3,1375.2738388634475,1080.0,0.0,0.0,0.0,13928.0,0,4,3,43.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1721.7247247629782,0.19326546536638511,0.12361607730923163,10713.846153846154,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5811,2,69.0,3,0.0,1,400,1,52,78,8.0,0.0,562.1101594231932,4710.754177939467,88.46609710216114,0.0,32322.413376829863,50,44,1,2091,201705811,,,240.0,,1.0,3.0,8.0,0.0,2.0,1.5,1664.9025519239326,0.0,3500.0,0.0,0.0,42555.0,1,5,1,200.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5361.330434464821,0.16587036283336629,0.12598591080871394,28370.0,8,4,8,8_1,8_0,8_1_0 +5812,2,81.0,3,0.0,2,111,2,0,75,9.0,0.0,0.0,1107.8962684361902,0.0,2064.540955895594,13837.720000000001,0,41,1,2092,201705812,,,200.0,,0.0,3.0,5.0,0.0,1.0,1.0,2571.337603795519,1990.0,0.0,0.0,0.0,32280.0,0,5,5,100.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3172.437224331784,0.229260111082735,0.09827872442167856,32280.0,9,5,9,9_1,9_3,9_0_1 +5813,2,51.0,3,0.0,7,111,2,46,52,6.0,0.0,0.0,582.3414556704798,0.0,1085.1808240536636,37175.86,31,31,2,2093,201705813,,,343.0,697.0,2.0,2.0,4.0,0.0,2.0,1.5,3796.120834793164,1046.0,0.0,0.0,0.0,33150.0,4,1,3,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1667.5222797241436,0.044854975237268044,0.050302331213398,22100.0,6,3,6,6_0,6_3,6_0_0 +5814,2,43.0,2,0.0,3,221,2,47,37,9.0,0.0,0.0,706.61312669092,0.0,0.0,46353.42,31,31,1,2094,201705814,,,632.0,,2.0,0.0,6.0,2.0,4.0,2.1,3503.4096354625117,0.0,525.0,0.0,0.0,69663.0,1,1,2,140.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,706.61312669092,0.015244034349373143,0.010143306011669323,33172.857142857145,9,5,9,9_1,9_1,9_0_1 +5815,2,65.0,3,0.0,1,211,2,0,78,2.0,0.0,0.0,646.0462872602698,53.079658261296686,0.0,11190.679999999998,0,71,1,2096,201705815,,,100.0,,0.0,1.0,3.0,0.0,1.0,1.0,2552.4313874386517,0.0,480.0,0.0,0.0,12546.0,0,5,1,60.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,699.1259455215665,0.062473946670047444,0.05572500761370688,12546.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +5816,2,79.0,2,0.0,4,112,2,77,78,9.0,0.0,624.566843803548,1039.0577786769338,0.0,1804.7083808840873,28568.224177580945,70,50,1,2098,201705816,,,350.0,,0.0,1.0,4.0,0.0,2.0,1.5,4047.731974386098,0.0,772.0,1020.0,0.0,52018.0,5,5,1,120.0,8,0.0,3,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3468.333003364569,0.12140527117840108,0.06667563157684972,34678.666666666664,9,5,9,9_1,9_0,9_0_1 +5817,2,37.0,2,0.0,9,111,5,48,34,7.0,0.0,138.792631956344,1749.7086946632305,0.0,0.0,31389.204054661433,31,20,1,2099,201705817,,,260.0,,2.0,0.0,6.0,2.0,4.0,2.1,2144.9617188513644,0.0,1300.0,0.0,0.0,57054.0,1,1,2,124.0,7,5.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1888.5013266195745,0.060164039946056666,0.033100244095410916,27168.571428571428,7,4,7,7_1,7_2,7_0_0 +5818,1,32.0,4,450.0,2,111,4,0,81,2.0,0.0,0.0,942.1508355878933,159.23897478389006,0.0,13734.180315994114,0,43,2,21,201705818,,,,,1.0,0.0,4.0,3.0,4.0,1.9,666.089278780956,0.0,700.0,0.0,0.0,21161.0,0,4,3,80.0,7,6.0,2,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1101.3898103717834,0.08019334135937926,0.05204809840611424,11137.368421052632,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5819,2,24.0,3,0.0,99,111,4,0,38,5.0,0.0,0.0,1082.1275311609518,169.8549064361494,0.0,23681.922702675387,0,30,2,2100,201705819,,,,500.0,1.0,0.0,3.0,0.0,1.0,1.0,3570.6066819663615,0.0,804.0,0.0,0.0,20072.0,0,1,3,70.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1251.9824375971011,0.0528665874521946,0.06237457341555904,20072.0,5,3,5,5_0,5_2,5_0_0 +5820,1,27.0,2,372.0,99,111,1,0,52,2.0,0.0,0.0,672.964882562781,0.0,0.0,7661.42,0,71,2,2102,201705820,,,,,1.0,0.0,3.0,1.0,2.0,1.3,974.1473905265073,0.0,500.0,0.0,0.0,15259.0,0,4,3,68.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,672.964882562781,0.08783814000051961,0.04410281686629405,11737.692307692307,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5821,2,45.0,2,0.0,1,111,1,37,37,10.0,0.0,0.0,1682.4122064069525,0.0,212.31863304518674,87185.08,30,20,2,2103,201705821,,,,,2.0,0.0,6.0,3.0,5.0,2.6,2573.6628589552,0.0,1250.0,120.0,0.0,131725.0,1,1,2,167.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1894.7308394521392,0.021732283086190195,0.014383988152986443,50663.46153846154,10,5,10,10_0,10_4,10_1_0 +5822,2,46.0,3,0.0,4,111,1,52,56,9.0,0.0,0.0,780.639263772826,0.0,0.0,20636.620315994114,50,43,2,2105,201705822,,,,326.0,2.0,4.0,4.0,0.0,2.0,1.5,1876.5082735941292,0.0,580.0,0.0,0.0,48864.0,1,1,3,80.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,780.639263772826,0.037827863856554206,0.01597575441578311,32576.0,9,5,9,9_0,9_4,9_0_1 +5823,1,37.0,3,247.0,7,111,2,68,63,4.0,0.0,0.0,856.0113306198574,0.0,1571.157884534382,33414.50175060326,71,50,2,2107,201705823,,,,280.0,2.0,0.0,4.0,2.0,4.0,2.1,1128.8299385145856,0.0,636.0,888.0,0.0,35020.0,1,1,3,80.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2427.1692151542393,0.07263819862615248,0.06930808724026954,16676.190476190477,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +5824,2,55.0,3,0.0,1,221,2,78,54,5.0,0.0,1943.0968473888158,1292.0925745205395,240.62778411787832,0.0,25449.32,71,60,1,2108,201705824,,,319.0,,1.0,2.0,6.0,0.0,2.0,1.5,2008.4694661419999,0.0,960.0,0.0,0.0,27909.0,5,1,2,185.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3475.817206027234,0.1365779991774725,0.12454108732047849,18606.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +5825,2,83.0,1,0.0,1,300,2,74,72,10.0,0.0,152.6718951519784,1022.9066214954271,106.60872429587235,0.0,50211.154,60,70,1,211,201705825,,,,,0.0,2.0,7.0,0.0,2.0,1.5,2241.924620846137,0.0,760.0,0.0,0.0,70517.0,5,5,1,200.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1282.1872409432779,0.025535904650653474,0.018182668589748256,47011.333333333336,10,5,10,10_1,10_0,10_1_0 +5826,2,48.0,3,0.0,9,111,2,85,54,5.0,0.0,0.0,619.1276919577585,0.0,1946.2541362475451,37358.79999999999,50,30,1,2110,201705826,,,480.0,,1.0,0.0,5.0,0.0,3.0,2.0,4231.8704034948505,0.0,460.0,1100.0,0.0,39464.0,7,1,1,120.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2565.3818282053035,0.06866874279166633,0.06500562102689295,19732.0,5,3,5,5_1,5_3,5_0_0 +5827,0,47.0,3,0.0,3,111,2,0,54,1.0,0.0,0.0,0.0,0.0,0.0,20673.560000000005,0,50,1,2111,201705827,,,,,1.0,0.0,4.0,1.0,2.0,1.5,779.5300469635339,0.0,0.0,0.0,0.0,7688.0,0,4,5,100.0,6,5.0,2,8,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,5125.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +5828,2,47.0,2,0.0,2,211,2,78,67,8.0,2934.943616906932,0.0,234.19177913184777,0.0,0.0,48383.380315994116,71,50,1,2112,201705828,,,,,1.0,4.0,6.0,0.0,2.0,1.5,1715.370571476457,0.0,174.0,0.0,0.0,42186.0,5,1,2,142.0,2,3.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3169.13539603878,0.06550049573512658,0.07512291746168824,28124.0,8,4,8,8_1,8_1,8_0_1 +5829,2,71.0,4,0.0,2,112,5,77,72,7.0,0.0,208.188947934516,535.6800465199736,495.4101437721024,0.0,20979.26,70,50,1,2113,201705829,,,532.0,,0.0,3.0,3.0,0.0,2.0,1.5,1606.4370870692396,0.0,398.0,0.0,0.0,35270.0,5,5,1,80.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1239.279138226592,0.05907163256600052,0.035136919144502184,23513.333333333332,6,3,6,6_1,6_0,6_0_1 +5830,2,52.0,2,0.0,3,111,1,0,37,7.0,0.0,0.0,244.95921725285228,0.0,0.0,15629.036658454032,0,31,2,2114,201705830,,,,,1.0,0.0,2.0,0.0,1.0,1.0,1384.3669400440353,0.0,182.0,0.0,0.0,28456.0,0,1,2,45.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,244.95921725285228,0.01567334075708047,0.00860835033922028,28456.0,8,4,8,8_0,8_3,8_0_1 +5831,2,76.0,3,0.0,9,211,4,72,75,4.0,0.0,0.0,0.0,0.0,0.0,34782.39087530163,71,60,2,2115,201705831,,,,391.0,0.0,3.0,2.0,0.0,2.0,1.5,1752.13114776378,0.0,0.0,0.0,0.0,24730.0,5,5,3,53.0,3,3.0,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,16486.666666666668,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +5832,2,82.0,3,0.0,1,112,4,74,75,9.0,0.0,0.0,386.28184259103625,0.0,0.0,33864.19087530163,50,70,2,2116,201705832,,,,900.0,0.0,0.0,3.0,0.0,2.0,1.5,3603.7290122605627,0.0,287.0,0.0,0.0,48633.0,5,5,3,70.0,10,4.0,3,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,386.28184259103625,0.011406793802144714,0.007942792807168718,32422.0,9,5,9,9_0,9_2,9_1_0 +5833,2,58.0,3,0.0,1,300,5,22,22,9.0,0.0,1665.511583476128,2710.7025469628816,106.15931652259337,0.0,45153.39169350259,33,60,1,2118,201705833,,,,,2.0,4.0,8.0,0.0,2.0,1.5,2454.900182342084,0.0,2014.0,0.0,0.0,57133.0,1,1,1,244.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4482.373446961603,0.09926991702832813,0.07845506882119971,38088.666666666664,9,5,9,9_1,9_0,9_1_0 +5834,2,55.0,3,0.0,1,300,6,0,78,1.0,158.64560091388822,0.0,538.3719060502248,123.8525359430256,0.0,6763.8,0,71,1,2119,201705834,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3049.8983713718517,0.0,400.0,0.0,0.0,9720.0,0,7,1,50.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,820.8700429071386,0.12136225833217104,0.08445165050484965,9720.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +5835,1,38.0,1,126.0,8,111,1,0,62,4.0,0.0,0.0,605.6683943065029,0.0,1326.9914565324173,39012.68,0,31,1,2120,201705835,,,576.0,,1.0,0.0,5.0,2.0,3.0,1.8,619.8083266345321,0.0,450.0,750.0,0.0,30376.0,0,1,3,65.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1932.6598508389202,0.04953927417544553,0.06362456712005926,16875.555555555555,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +5836,2,55.0,1,0.0,4,112,2,0,47,6.0,0.0,0.0,592.2090966552472,0.0,1213.754852241651,18590.28,0,31,2,2121,201705836,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3985.610956304416,0.0,440.0,686.0,0.0,24146.0,0,1,1,65.0,10,2.0,1,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1805.9639488968983,0.0971456023737619,0.07479350405437332,24146.0,7,4,7,7_0,7_1,7_0_1 +5837,1,43.0,3,120.0,6,111,1,85,46,2.0,0.0,0.0,597.5928157157495,0.0,318.4779495677801,38194.950875301634,71,31,2,2122,201705837,,,,323.0,1.0,0.0,4.0,3.0,5.0,2.4,2972.693476592196,0.0,444.0,180.0,0.0,27432.0,6,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,916.0707652835296,0.023984080206682426,0.03339423903774896,11430.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +5838,1,41.0,4,32.0,5,111,1,85,47,1.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,25974.38802731699,71,12,2,2123,201705838,,,,403.0,1.0,0.0,4.0,3.0,5.0,3.0,2836.798840073435,750.0,0.0,0.0,0.0,28814.0,6,1,3,84.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1195.6421699742903,0.04603158190740995,0.041495181855149936,9604.666666666666,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +5839,2,74.0,3,0.0,99,111,1,74,75,8.0,0.0,0.0,701.2294076304178,0.0,1910.8676974066807,31472.64,50,41,1,2124,201705839,,,240.0,,0.0,4.0,6.0,0.0,2.0,1.5,1393.1394836774168,0.0,521.0,1080.0,0.0,46105.0,5,5,1,100.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2612.0971050370986,0.08299580540549184,0.05665539757156705,30736.666666666668,8,4,8,8_1,8_2,8_0_0 +5840,2,41.0,2,0.0,9,111,4,62,64,6.0,0.0,693.9631597817199,1736.249397011975,0.0,0.0,37008.96000000001,41,43,1,2125,201705840,,,340.0,,2.0,0.0,7.0,2.0,4.0,2.3,2217.8577051795787,0.0,1290.0,0.0,0.0,49052.0,1,1,2,144.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2430.2125567936946,0.06566551874988366,0.0495435977491987,21326.956521739132,6,3,6,6_1,6_3,6_0_0 +5841,2,50.0,3,0.0,1,221,2,0,21,2.0,2246.421708940657,249.82673752141918,888.3136449828709,0.0,0.0,28878.925846751303,0,50,1,2128,201705841,,,357.0,,1.0,2.0,7.0,1.0,2.0,1.5,445.0776495181777,0.0,660.0,0.0,0.0,18206.0,0,1,1,200.0,1,1.0,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3384.562091444947,0.11719833727214923,0.18590366315747264,12137.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +5842,1,51.0,3,370.0,8,111,1,0,85,3.0,0.0,0.0,955.610133239149,0.0,0.0,11340.52,0,50,2,2129,201705842,,,,,0.0,2.0,1.0,0.0,1.0,1.0,4732.385089387924,0.0,710.0,0.0,0.0,14230.0,0,7,3,25.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,955.610133239149,0.08426510717666817,0.06715461231476803,14230.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +5843,2,53.0,3,0.0,99,111,1,69,65,7.0,0.0,0.0,585.4794478296194,0.0,0.0,33043.2,71,71,2,213,201705843,,,,365.0,3.0,1.0,4.0,1.0,3.0,2.0,1654.4424695896678,0.0,435.0,0.0,0.0,52020.0,4,1,3,90.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,585.4794478296194,0.01771860618310634,0.011254891346205678,26010.0,7,4,7,7_0,7_3,7_0_0 +5844,2,74.0,1,0.0,7,111,2,77,22,10.0,0.0,0.0,1038.7947512518565,0.0,1935.7717593507307,315637.8550273782,50,41,2,2130,201705844,,,,,1.0,1.0,4.0,0.0,2.0,1.5,1715.460769476459,1865.8800592487562,0.0,0.0,0.0,143293.0,6,1,1,175.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2974.566510602587,0.009423985314893791,0.020758630991064373,95528.66666666667,10,5,10,10_0,10_3,10_0_0 +5845,2,54.0,3,0.0,2,111,2,0,77,5.0,0.0,0.0,924.653748641261,0.0,573.2603092220043,25507.42,0,41,1,2132,201705845,,,159.0,,0.0,0.0,4.0,0.0,1.0,1.0,2241.921694122176,0.0,687.0,324.0,0.0,20644.0,0,5,2,57.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1497.9140578632653,0.05872464004055547,0.07255929363801905,20644.0,5,3,5,5_1,5_2,5_0_1 +5846,2,53.0,1,0.0,7,111,1,77,37,10.0,0.0,0.0,993.2961666626647,0.0,0.0,55076.1658467513,33,12,2,2133,201705846,,,,,1.0,3.0,5.0,1.0,3.0,2.0,1941.3354794186334,0.0,738.0,0.0,0.0,97134.0,5,1,2,155.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,993.2961666626647,0.01803495489185827,0.010226039972230781,48567.0,10,5,10,10_0,10_2,10_0_0 +5847,2,34.0,1,0.0,9,400,2,43,38,8.0,0.0,0.0,1648.7639622788133,212.31863304518674,0.0,42769.579999999994,33,20,1,2134,201705847,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.1,2235.756536486376,0.0,1225.0,0.0,0.0,59566.0,1,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1861.082595324,0.04351416580017854,0.031244041824597925,28364.761904761905,8,4,8,8_1,8_0,8_0_0 +5848,2,93.0,3,0.0,4,221,2,0,78,3.0,0.0,0.0,767.1799661215703,3538.6438840864457,0.0,14750.0,0,71,1,2135,201705848,,,,,0.0,4.0,5.0,0.0,1.0,1.0,2298.3333038257256,0.0,570.0,0.0,0.0,14620.0,0,5,1,103.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4305.823850208016,0.2919202610310519,0.2945159952262665,14620.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +5849,2,63.0,3,0.0,6,112,4,75,78,4.0,0.0,0.0,1808.9296043287552,382.17353948133615,0.0,26261.279999999995,33,50,1,2136,201705849,,,380.0,,1.0,1.0,4.0,1.0,3.0,2.0,2502.3213927431857,0.0,1344.0,0.0,0.0,33516.0,5,5,3,80.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2191.1031438100913,0.08343474285374101,0.0653748401900612,16758.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +5850,2,68.0,3,0.0,7,211,2,72,72,6.0,0.0,0.0,1633.9587348624323,0.0,0.0,48005.76,44,50,1,2137,201705850,,,438.0,,0.0,2.0,3.0,0.0,2.0,1.5,1377.9395378481606,0.0,1214.0,0.0,0.0,33901.0,5,5,1,98.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1633.9587348624323,0.03403672256959232,0.04819795094134192,22600.666666666668,6,3,6,6_1,6_1,6_0_0 +5851,2,33.0,1,0.0,99,112,2,0,38,10.0,1329.4501356583833,0.0,787.3689125984538,0.0,0.0,41632.2258467513,0,12,1,2138,201705851,,,225.0,,3.0,0.0,6.0,0.0,3.0,2.0,2494.6497616209485,0.0,585.0,0.0,0.0,122362.0,0,1,3,140.0,9,1.0,5,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2116.819048256837,0.05084568516823655,0.017299644074605165,61181.0,10,5,10,10_1,10_1,10_0_0 +5852,2,35.0,2,0.0,7,111,4,35,34,9.0,0.0,0.0,1421.3018319725934,0.0,0.0,40100.17999999999,41,20,1,2140,201705852,,,,,2.0,0.0,3.0,1.0,3.0,1.8,4290.401333762586,0.0,1056.0,0.0,0.0,56006.0,1,1,1,47.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1421.3018319725934,0.03544377686016855,0.025377670820494115,31114.444444444445,8,4,8,8_1,8_2,8_0_0 +5853,1,30.0,4,20.0,1,112,5,46,65,3.0,0.0,0.0,1615.1157181506744,56.61830214538313,0.0,23132.53425536623,50,50,1,2141,201705853,,,,,2.0,0.0,7.0,2.0,4.0,2.1,2464.7212277949593,0.0,1200.0,0.0,0.0,32411.0,1,4,2,145.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1671.7340202960575,0.07226765566804479,0.051579217558731835,15433.809523809523,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +5854,2,62.0,4,0.0,1,112,6,85,78,3.0,0.0,69.396315978172,538.3719060502248,0.0,0.0,12460.050875301627,71,71,1,2144,201705854,,,180.0,,0.0,3.0,5.0,0.0,2.0,1.5,2181.388937400438,0.0,400.0,0.0,0.0,23450.0,6,5,1,80.0,8,2.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,607.7682220283967,0.0487773467468835,0.025917621408460417,15633.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +5855,2,51.0,3,0.0,99,400,5,68,63,2.0,0.0,138.792631956344,76.71799661215704,176.9321942043223,0.0,22486.249600353032,71,50,2,2145,201705855,,,570.0,317.0,4.0,0.0,4.0,2.0,4.0,2.5,2849.687040443022,0.0,57.0,0.0,0.0,32970.0,1,1,3,80.0,0,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,392.4428227728233,0.017452569003177036,0.011903027684950662,13188.0,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +5856,2,53.0,4,0.0,1,111,2,42,62,3.0,3172.912018277764,0.0,678.3486016232832,113.23660429076627,0.0,55662.16031599411,50,50,1,2148,201705856,,,700.0,,2.0,0.0,4.0,1.0,3.0,2.0,2409.2001418225495,0.0,504.0,0.0,0.0,31171.0,1,1,1,125.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3964.4972241918135,0.07122427878625913,0.1271854359562354,15585.5,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +5857,1,47.0,4,150.0,9,112,5,68,52,2.0,0.0,555.170527825376,1304.2059424066695,0.0,0.0,25315.44,60,50,1,2149,201705857,,,345.0,,2.0,0.0,5.0,3.0,5.0,3.0,2372.4282790616417,0.0,969.0,0.0,0.0,33443.0,1,1,2,104.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1859.3764702320454,0.07344831732065671,0.05559837545172519,11147.666666666666,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +5858,2,46.0,3,0.0,9,112,4,68,63,2.0,0.0,0.0,1615.1157181506744,334.4018470461691,0.0,43308.35672205293,71,71,1,2150,201705858,,,500.0,,3.0,0.0,4.0,1.0,3.0,2.0,4680.672713039774,0.0,1200.0,0.0,0.0,21597.0,1,1,2,100.0,7,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1949.5175651968434,0.045014812677114,0.09026798005263895,10798.5,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +5859,2,64.0,2,0.0,1,111,1,0,31,3.0,0.0,0.0,484.5347154452023,0.0,212.31863304518674,53734.71087530163,0,10,2,2152,201705859,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2271.8677449941697,0.0,360.0,120.0,0.0,26956.0,0,1,1,100.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,696.8533484903891,0.01296840230717027,0.025851511666804758,26956.0,7,4,7,7_0,7_2,7_1_0 +5860,2,55.0,3,0.0,3,112,2,0,43,8.0,1269.1648073111057,0.0,740.261370819059,0.0,0.0,24013.000000000004,0,41,1,2153,201705860,,,350.0,,1.0,3.0,5.0,0.0,1.0,1.0,2879.0339398083543,0.0,550.0,0.0,0.0,32457.0,0,1,1,92.0,9,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2009.4261781301648,0.08368076367509951,0.061910410023420674,32457.0,9,5,9,9_1,9_1,9_0_1 +5861,2,78.0,3,0.0,8,400,6,77,78,3.0,0.0,83.27557917380639,1749.7086946632305,265.39829130648343,0.0,18360.52,71,50,1,2154,201705861,,,566.0,,0.0,3.0,7.0,0.0,2.0,1.5,1984.828558769812,0.0,1300.0,0.0,0.0,23023.0,5,5,1,99.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2098.3825651435204,0.1142877524788797,0.09114288168976764,15348.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5862,2,44.0,3,0.0,8,111,1,85,37,4.0,0.0,0.0,0.0,0.0,0.0,62943.03999999999,50,50,2,2155,201705862,,,,900.0,1.0,0.0,4.0,2.0,4.0,2.1,4458.786122463821,0.0,0.0,0.0,0.0,36167.0,7,1,3,80.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,17222.38095238095,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +5863,2,77.0,4,0.0,99,300,2,0,86,1.0,1586.456009138882,0.0,689.1160397442877,159.23897478389006,0.0,18428.367538214858,0,60,1,2156,201705863,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2075.4750215273593,0.0,512.0,0.0,0.0,9849.0,0,5,1,108.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2434.81102366706,0.1321229902007326,0.24721403428440045,9849.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +5864,1,53.0,3,177.0,1,300,2,46,54,5.0,0.0,0.0,646.0462872602698,0.0,1921.48362905894,29098.579999999998,50,42,1,2158,201705864,,,520.0,,2.0,1.0,6.0,1.0,3.0,2.0,1760.6399982639325,0.0,480.0,1086.0,0.0,40715.0,1,1,1,80.0,0,1.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2567.52991631921,0.08823557425548635,0.06306103196166547,20357.5,5,3,5,5_1,5_1,5_1_0 +5865,2,73.0,2,0.0,4,111,2,74,74,10.0,5076.659229244423,0.0,2448.443663355548,0.0,2255.1599264571996,50978.15850987129,30,10,1,2159,201705865,,,1000.0,,0.0,2.0,5.0,0.0,2.0,1.5,1820.3961436883721,2173.736607566132,920.0,0.0,0.0,84797.0,5,5,1,120.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,9780.26281905717,0.19185202261010162,0.11533736829200526,56531.333333333336,10,5,10,10_1,10_3,10_0_1 +5866,1,53.0,4,218.0,99,111,2,0,77,1.0,0.0,0.0,462.08738834273254,0.0,861.0899464288154,7866.02,0,30,2,2160,201705866,,,452.0,88.0,0.0,0.0,2.0,0.0,1.0,1.0,2464.3899609904674,830.0,0.0,0.0,0.0,10269.0,0,7,3,60.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1323.177334771548,0.16821433644607411,0.12885162477081974,10269.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5867,2,61.0,3,0.0,99,112,6,0,52,3.0,1189.8420068541616,0.0,605.6683943065029,88.46609710216114,0.0,23165.671191295747,0,70,2,2161,201705867,,,150.0,460.0,1.0,4.0,3.0,0.0,1.0,1.0,2379.7167298891172,0.0,450.0,0.0,0.0,14350.0,0,1,3,73.0,6,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1883.9764982628258,0.08132622114444539,0.13128756085455232,14350.0,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +5868,2,48.0,2,0.0,7,300,5,75,46,7.0,0.0,55.5170527825376,1509.7331594012971,123.8525359430256,616.249913468333,29727.68,50,60,1,2162,201705868,,,,,1.0,3.0,5.0,1.0,3.0,2.0,2209.8950251106844,594.0,876.0,0.0,0.0,49848.0,5,1,1,100.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2305.3526615951932,0.07754902708839685,0.04624764607597483,24924.0,7,4,7,7_1,7_0,7_0_0 +5869,2,51.0,2,0.0,7,120,2,43,48,8.0,0.0,0.0,423.967876014552,0.0,0.0,46605.255067511316,50,50,1,2164,201705869,,,230.0,,2.0,2.0,6.0,1.0,3.0,2.0,1936.8191676227214,0.0,315.0,0.0,0.0,51290.0,1,1,1,140.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,423.967876014552,0.009096997224892382,0.00826609233797138,25645.0,7,4,7,7_1,7_1,7_0_0 +5870,0,45.0,3,0.0,8,111,2,0,53,5.0,79.32280045694411,0.0,193.8138861780809,0.0,477.7169243516702,17182.920000000002,0,50,2,2165,201705870,,,72.0,,1.0,2.0,5.0,1.0,2.0,1.5,1534.1710405277504,0.0,144.0,270.0,0.0,30773.0,0,1,5,90.0,7,5.0,2,2,1,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,750.8536109866952,0.043697672513559695,0.024399753387277654,20515.333333333332,5,3,5,5_0,5_2,5_0_0 +5871,2,86.0,2,0.0,3,111,2,0,75,7.0,0.0,0.0,781.9851935379515,0.0,2093.1078574371327,23111.831191295743,0,60,1,2166,201705871,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2736.3010102514622,0.0,581.0,1183.0,0.0,23650.0,0,5,1,90.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2875.093050975084,0.12439918876085798,0.12156841653171603,23650.0,6,3,6,6_1,6_2,6_0_1 +5872,2,39.0,3,0.0,6,111,2,85,48,5.0,2379.684013708323,0.0,733.5317219934312,113.23660429076627,0.0,25757.780000000002,50,60,1,2167,201705872,,,130.0,300.0,1.0,1.0,4.0,2.0,4.0,2.1,2523.8760666696235,0.0,545.0,0.0,0.0,40835.0,6,1,3,103.0,9,7.0,4,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3226.4523399925206,0.1252612740691364,0.07901193436984255,19445.238095238095,5,3,5,5_1,5_3,5_0_0 +5873,1,63.0,3,206.0,3,400,1,0,77,2.0,47.593680274166466,0.0,605.6683943065029,60.15694602946958,0.0,12287.080000000002,0,71,2,2168,201705873,,,276.0,197.0,0.0,2.0,3.0,0.0,1.0,1.0,2141.858036336152,0.0,450.0,0.0,0.0,11472.0,0,5,3,86.0,0,1.0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,713.419020610139,0.05806253565616395,0.0621878504715951,11472.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +5874,2,51.0,2,0.0,6,111,4,38,38,10.0,0.0,0.0,1569.3541061364053,0.0,0.0,104419.17426230683,41,12,2,2169,201705874,,,,,2.0,3.0,5.0,2.0,4.0,2.5,2565.944943349859,0.0,1166.0,0.0,0.0,193364.0,4,1,3,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1569.3541061364053,0.015029367137055688,0.00811606144957906,77345.6,10,5,10,10_0,10_4,10_0_0 +5875,2,39.0,2,0.0,9,112,1,55,47,9.0,0.0,416.377895869032,1997.359771446334,0.0,0.0,46042.36,44,31,1,2170,201705875,,,410.0,,2.0,0.0,7.0,1.0,3.0,1.8,2237.0724371722577,0.0,1484.0,0.0,0.0,57672.0,1,1,1,200.0,9,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2413.737667315366,0.052424282059289874,0.04185285177062293,32040.0,9,5,9,9_1,9_0,9_0_0 +5876,1,31.0,3,54.0,99,111,2,85,67,2.0,0.0,0.0,336.4824412813905,0.0,884.6609710216114,18947.86238259149,71,50,2,2171,201705876,,,,226.0,1.0,0.0,3.0,2.0,4.0,2.1,3365.518469389851,0.0,250.0,500.0,0.0,23546.0,6,1,3,65.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1221.143412303002,0.06444755548915838,0.051862032290113054,11212.380952380952,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5877,2,76.0,2,0.0,8,112,2,0,75,8.0,0.0,0.0,1107.8962684361902,0.0,2064.540955895594,39305.61672205293,0,31,1,2172,201705877,,,402.0,,0.0,2.0,6.0,0.0,1.0,1.0,3119.0218921670785,1990.0,0.0,0.0,0.0,28714.0,0,5,1,185.0,7,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3172.437224331784,0.08071205819680846,0.11048398775272633,28714.0,8,4,8,8_1,8_2,8_0_0 +5878,2,36.0,3,0.0,1,112,5,52,64,5.0,0.0,624.566843803548,1668.9529087556969,53.079658261296686,0.0,60682.34,50,50,1,2173,201705878,,,,,2.0,0.0,7.0,2.0,4.0,2.1,2785.3302030038103,0.0,1240.0,0.0,0.0,39298.0,1,1,2,180.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2346.5994108205414,0.0386702195535067,0.05971294749912315,18713.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5879,2,64.0,5,0.0,1,111,6,0,74,6.0,0.0,0.0,131.90111698230507,0.0,0.0,16683.18,0,20,2,2175,201705879,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2591.4404800225575,0.0,98.0,0.0,0.0,23065.0,0,5,1,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,131.90111698230507,0.007906233522763949,0.005718669715252767,23065.0,6,3,6,6_0,6_4,6_1_0 +5880,2,27.0,4,0.0,7,120,4,0,63,4.0,0.0,0.0,1076.7438121004495,84.9274532180747,0.0,31774.260000000002,0,44,2,2177,201705880,,,,293.0,1.0,0.0,1.0,0.0,1.0,1.0,4017.5196091312187,0.0,800.0,0.0,0.0,18249.0,0,1,3,40.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1161.6712653185243,0.036560135950247916,0.063656708056251,18249.0,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +5881,1,31.0,5,569.0,99,111,2,0,85,2.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,13568.08,0,50,2,2178,201705881,,,698.0,,0.0,0.0,5.0,5.0,6.0,2.7,863.7285865540624,1300.0,0.0,0.0,0.0,29309.0,0,6,3,98.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2072.4464279554363,0.15274426653995526,0.0707102401294973,10855.185185185184,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5882,2,60.0,3,0.0,99,111,6,52,75,4.0,0.0,0.0,2018.894647688343,212.31863304518674,0.0,34321.100000000006,70,71,1,2181,201705882,,,178.0,,1.0,1.0,3.0,0.0,2.0,1.5,1599.2683744636884,0.0,1500.0,0.0,0.0,25680.0,1,5,1,80.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2231.2132807335297,0.06500995832690472,0.08688525236501284,17120.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +5883,2,52.0,3,0.0,7,111,4,75,45,9.0,0.0,0.0,2974.504780927492,0.0,0.0,34438.93274484164,50,31,1,2186,201705883,,,532.0,,1.0,2.0,6.0,1.0,3.0,2.0,2798.5202700695727,0.0,2210.0,0.0,0.0,64169.0,5,1,1,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2974.504780927492,0.08637041115546829,0.04635423305533033,32084.5,9,5,9,9_1,9_4,9_0_0 +5884,2,47.0,4,0.0,4,111,2,0,52,2.0,0.0,0.0,80.75578590753372,0.0,123.8525359430256,18746.244177580942,0,41,2,2187,201705884,,,,,1.0,3.0,5.0,2.0,3.0,1.8,854.3415616176561,0.0,60.0,70.0,0.0,19893.0,0,1,1,80.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,204.60832185055932,0.01091463014736867,0.010285443213721376,11051.666666666666,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +5885,2,89.0,1,0.0,4,111,2,0,77,9.0,2379.684013708323,0.0,779.2933340077004,0.0,0.0,21376.08,0,71,1,219,201705885,,,320.0,,0.0,6.0,5.0,0.0,1.0,1.0,2122.5787759992945,0.0,579.0,0.0,0.0,33963.0,0,5,1,71.0,8,6.0,1,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3158.9773477160234,0.14778094710143408,0.09301231774919834,33963.0,9,5,9,9_1,9_2,9_0_1 +5886,2,51.0,2,0.0,1,112,5,0,46,5.0,0.0,832.755791738064,969.0694308904046,0.0,0.0,34118.16816118814,0,44,1,2190,201705886,,,52.0,,1.0,2.0,3.0,0.0,1.0,1.0,2415.5014932534787,0.0,720.0,0.0,0.0,19130.0,0,1,2,100.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1801.8252226284685,0.052811311970675304,0.09418845910237682,19130.0,5,3,5,5_1,5_0,5_1_0 +5887,2,74.0,2,0.0,4,112,2,77,75,8.0,0.0,0.0,2016.301046177697,0.0,3137.0789759381405,20678.56235945747,70,44,1,2191,201705887,,,757.0,,1.0,1.0,5.0,0.0,3.0,2.0,1853.939147632323,735.11322979628,1194.0,1342.0,0.0,53328.0,5,5,1,90.0,6,0.0,5,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5153.380022115837,0.2492136509557158,0.0966355389685688,26664.0,7,4,7,7_1,7_0,7_0_1 +5888,2,79.0,1,0.0,7,112,4,75,75,8.0,511.0768033440909,390.4930700091738,1458.987865396109,0.0,0.0,44230.52175060326,30,41,1,2192,201705888,,,376.0,,0.0,5.0,4.0,0.0,2.0,1.5,2100.396901716636,0.0,1084.0,0.0,0.0,46459.0,5,5,1,95.0,10,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2360.557738749374,0.053369430097604004,0.05080948231234796,30972.666666666668,8,4,8,8_1,8_0,8_0_0 +5889,2,65.0,3,0.0,2,111,2,78,56,4.0,0.0,0.0,602.9765347762518,0.0,884.6609710216114,31994.38,71,70,2,2193,201705889,,,,305.0,1.0,2.0,4.0,0.0,2.0,1.5,2794.7619038877224,0.0,448.0,500.0,0.0,26970.0,5,5,3,70.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1487.6375057978632,0.0464968380633681,0.05515897314786293,17980.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +5890,1,28.0,5,353.0,1,400,4,0,63,1.0,0.0,0.0,1615.1157181506744,88.46609710216114,0.0,6500.98,0,71,1,2194,201705890,,,226.0,,1.0,0.0,4.0,1.0,2.0,1.3,201.30342027600958,0.0,1200.0,0.0,0.0,12657.0,0,4,3,100.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1703.5818152528354,0.2620500009618297,0.13459601921883824,9736.153846153846,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +5891,2,45.0,3,0.0,1,120,2,0,54,7.0,0.0,0.0,951.5723439437724,0.0,2017.027013929274,36328.36,0,60,1,2196,201705891,,,340.0,,2.0,1.0,4.0,1.0,3.0,1.8,650.8151682847385,0.0,707.0,1140.0,0.0,44368.0,0,1,2,110.0,0,2.0,5,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2968.5993578730463,0.08171575479523563,0.06690856828960165,24648.888888888887,7,4,7,7_1,7_1,7_1_0 +5892,2,37.0,2,0.0,3,111,2,63,48,9.0,0.0,0.0,982.5287285416603,0.0,849.274532180747,58709.200000000004,50,50,2,2198,201705892,,,200.0,,2.0,0.0,3.0,1.0,3.0,1.8,3199.116091141041,0.0,730.0,480.0,0.0,67011.0,4,1,2,55.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1831.8032607224072,0.031201298275609395,0.027335859198078034,37228.333333333336,9,5,9,9_0,9_3,9_0_1 +5893,2,51.0,2,0.0,4,111,1,35,35,10.0,0.0,0.0,1995.3764173330749,0.0,2865.7807939908266,53686.29788957955,20,30,2,2199,201705893,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2715.947735758242,2612.2320829482587,402.0,88.0,0.0,70533.0,1,1,2,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,4861.157211323902,0.09054744697282333,0.06892032398060342,47022.0,10,5,10,10_0,10_4,10_0_1 +5894,1,66.0,4,205.0,1,111,2,0,75,3.0,0.0,0.0,269.1859530251124,0.0,1167.752481748527,13377.419999999998,0,33,2,220,201705894,,,130.0,295.0,0.0,2.0,2.0,0.0,1.0,1.0,2679.943942425379,0.0,200.0,660.0,0.0,13440.0,0,5,3,50.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1436.9384347736395,0.1074152142022632,0.1069150621111339,13440.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +5895,2,34.0,3,0.0,5,111,2,42,56,6.0,0.0,0.0,1480.522741638118,0.0,2070.106672190571,51852.22,31,50,1,2201,201705895,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.1,2349.5232914782823,0.0,1100.0,1170.0,0.0,43248.0,1,1,2,110.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3550.629413828689,0.06847593823039184,0.08209927427461822,20594.285714285714,5,3,5,5_1,5_3,5_0_0 +5896,2,48.0,3,0.0,1,112,2,78,62,5.0,0.0,0.0,1022.7163040790358,0.0,1905.8099175779928,40661.63999999999,70,50,1,2202,201705896,,,570.0,,1.0,2.0,5.0,0.0,2.0,1.5,1931.4874383139704,1837.0,0.0,0.0,0.0,30470.0,7,1,3,100.0,9,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2928.5262216570286,0.07202184224878852,0.09611178935533406,20313.333333333332,5,3,5,5_1,5_0,5_1_0 +5897,2,76.0,3,0.0,5,111,5,72,75,8.0,0.0,832.755791738064,1615.1157181506744,353.8643884086446,0.0,24582.10175060325,70,50,1,2204,201705897,,,200.0,,0.0,0.0,6.0,0.0,2.0,1.5,2205.384994630893,0.0,1200.0,0.0,0.0,45550.0,5,5,1,129.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2801.735898297383,0.1139746278297228,0.061509020818822896,30366.666666666668,8,4,8,8_1,8_3,8_0_0 +5898,2,33.0,1,0.0,9,300,6,53,43,7.0,0.0,0.0,767.1799661215703,61.9262679715128,0.0,83996.5,30,33,1,2207,201705898,,,72.0,,2.0,0.0,3.0,0.0,2.0,1.5,3164.877042168258,0.0,570.0,0.0,0.0,49707.0,1,1,2,80.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,829.106234093083,0.009870723590781557,0.01667986871251701,33138.0,9,5,9,9_1,9_1,9_0_0 +5899,1,45.0,4,346.0,99,111,2,0,46,3.0,0.0,0.0,839.8601734383507,0.0,0.0,23858.44,0,20,2,2208,201705899,,,,354.0,1.0,0.0,3.0,1.0,2.0,1.3,1072.3852922230894,0.0,624.0,0.0,0.0,20909.0,0,1,3,49.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,839.8601734383507,0.03520180587826994,0.040167400327052974,16083.846153846152,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +5900,2,48.0,4,0.0,5,111,1,0,47,5.0,0.0,0.0,566.6364311178615,0.0,0.0,16934.94,0,60,2,221,201705900,141.0,141.0,,300.0,1.0,0.0,2.0,0.0,1.0,1.0,3304.536000534461,0.0,421.0,0.0,0.0,19876.0,0,1,3,35.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,566.6364311178615,0.033459606654517915,0.02850857471915182,19876.0,5,3,5,5_0,5_3,5_0_0 +5901,2,81.0,3,0.0,1,300,2,78,78,4.0,1078.79008621444,902.152107716236,61.91276919577585,0.0,0.0,34204.64,70,70,1,2211,201705901,,,166.0,,0.0,2.0,4.0,0.0,2.0,1.5,2080.7696349000116,0.0,46.0,0.0,0.0,23912.0,5,5,1,150.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2042.8549631264516,0.05972449828814019,0.08543220822710153,15941.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5902,2,55.0,1,0.0,1,111,2,37,35,10.0,0.0,0.0,2122.5312396030113,0.0,3361.7116898821237,128571.01999999999,30,20,1,2212,201705902,,,704.0,,2.0,1.0,5.0,1.0,3.0,2.0,1583.8867366692332,0.0,1577.0,1900.0,0.0,133810.0,1,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5484.242929485135,0.042655358334134204,0.040985299525335445,66905.0,10,5,10,10_1,10_4,10_1_0 +5903,1,27.0,3,356.0,99,111,4,0,85,2.0,0.0,0.0,1076.7438121004495,0.0,0.0,13311.416722052927,0,60,2,2213,201705903,,,160.0,84.0,0.0,0.0,3.0,1.0,2.0,1.3,1190.4963803913217,0.0,800.0,0.0,0.0,16823.0,0,6,3,70.0,4,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1076.7438121004495,0.08088874644849904,0.0640042686857546,12940.76923076923,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +5904,2,74.0,5,0.0,1,111,7,0,77,4.0,0.0,0.0,0.0,0.0,0.0,15121.839999999998,0,50,2,2214,201705904,,,,,0.0,1.0,1.0,0.0,1.0,1.0,3987.9738509091035,0.0,0.0,0.0,0.0,17816.0,0,5,1,22.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,17816.0,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +5905,1,23.0,3,274.0,3,111,4,0,84,2.0,285.5620816449988,0.0,662.1974444417765,0.0,212.31863304518674,29478.18,0,41,2,2215,201705905,,,,411.0,1.0,0.0,3.0,0.0,2.0,1.5,5143.776998500972,0.0,492.0,120.0,0.0,19738.0,0,3,4,58.0,9,7.0,5,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1160.078159131962,0.03935379182608838,0.058773845330426684,13158.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +5906,2,73.0,2,0.0,1,300,2,0,71,1.0,951.8736054833294,0.0,652.7759360858976,51.310336319253466,0.0,14364.779999999999,0,44,1,2217,201705906,,,,,0.0,0.0,3.0,0.0,1.0,1.0,1760.6367964665922,0.0,485.0,0.0,0.0,9844.0,0,5,1,92.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1655.9598778884806,0.11527916737245407,0.16822022327188954,9844.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +5907,2,48.0,2,0.0,1,120,5,85,43,9.0,0.0,693.9631597817199,1507.4413369406293,0.0,0.0,48247.719999999994,20,33,1,2219,201705907,,,350.0,,1.0,0.0,4.0,0.0,2.0,1.5,1581.8539047115034,0.0,1120.0,0.0,0.0,49832.0,6,1,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2201.404496722349,0.04562711972135366,0.04417652305190137,33221.333333333336,9,5,9,9_1,9_0,9_1_0 +5908,2,34.0,5,0.0,4,111,2,85,85,5.0,0.0,0.0,1728.1738184212215,0.0,0.0,9444.627699472088,33,42,2,222,201705908,,,,,0.0,0.0,2.0,0.0,2.0,1.5,2374.772682748881,0.0,1284.0,0.0,0.0,28620.0,4,4,3,60.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1728.1738184212215,0.18297955974673502,0.06038343181066463,19080.0,5,3,5,5_0,5_2,5_0_1 +5909,1,44.0,3,238.0,1,300,2,0,54,2.0,1110.5192063972174,0.0,484.5347154452023,0.0,0.0,17626.48,0,50,1,2220,201705909,,,380.0,,1.0,1.0,4.0,1.0,2.0,1.5,1479.5748839248433,0.0,360.0,0.0,0.0,16833.0,0,1,3,75.0,0,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1595.0539218424196,0.09049191454234877,0.09475755491251825,11222.0,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +5910,2,38.0,2,0.0,1,111,2,72,53,7.0,0.0,0.0,1695.871504058208,0.0,796.1948739194503,24229.379999999997,60,50,2,2221,201705910,,,,,1.0,0.0,4.0,0.0,2.0,1.5,3975.7873021613846,0.0,1260.0,450.0,0.0,35966.0,5,1,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2492.0663779776582,0.10285308076300997,0.06928950614407102,23977.333333333332,7,4,7,7_0,7_4,7_1_0 +5911,2,63.0,1,0.0,4,111,1,77,78,8.0,0.0,0.0,942.1508355878933,0.0,212.31863304518674,61921.2,71,50,2,2223,201705911,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2548.3070312638783,0.0,700.0,120.0,0.0,43309.0,7,5,1,112.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1154.46946863308,0.018644171441010188,0.026656571812627396,28872.666666666668,8,4,8,8_0,8_3,8_0_1 +5912,2,56.0,1,0.0,7,300,2,54,38,6.0,0.0,0.0,2478.0603384048827,0.0,5158.341485695149,73729.28547454253,31,30,1,2224,201705912,,,1106.0,,2.0,1.0,7.0,1.0,3.0,2.0,1921.4526936783823,1958.5853797288325,1031.0,1767.0,0.0,64936.0,1,1,1,220.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,7636.401824100031,0.10357352271827931,0.11759889466705728,32468.0,9,5,9,9_1,9_1,9_0_0 +5913,2,79.0,2,0.0,1,111,2,0,77,5.0,0.0,0.0,2148.103905140397,0.0,2277.1173394096277,11428.640000000003,0,70,1,2225,201705913,,,252.0,,0.0,3.0,2.0,0.0,1.0,1.0,1227.2190992227668,0.0,1596.0,1287.0,0.0,19750.0,0,5,1,48.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4425.2212445500245,0.387204535670913,0.22406183516708986,19750.0,5,3,5,5_1,5_2,5_1_0 +5914,2,79.0,1,0.0,4,111,2,74,74,10.0,0.0,0.0,778.8310405048071,0.0,2428.131458281894,37146.59102872855,12,12,1,2226,201705914,,,317.0,,0.0,2.0,6.0,0.0,2.0,1.5,1888.3005127870797,693.0079327454883,292.0,966.0,0.0,89287.0,5,5,1,125.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3206.962498786701,0.08633261922491056,0.03591746277494709,59524.666666666664,10,5,10,10_1,10_4,10_0_1 +5915,2,72.0,3,0.0,4,111,2,77,78,3.0,1586.456009138882,166.55115834761278,586.825377594745,212.31863304518674,0.0,17808.4,70,71,1,2228,201705915,,,206.0,,0.0,4.0,5.0,0.0,2.0,1.5,1520.1890568617225,0.0,436.0,0.0,0.0,24098.0,5,5,1,100.0,4,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2552.1511781264267,0.14331164945342795,0.10590717811131325,16065.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +5916,1,35.0,5,223.0,2,111,2,0,56,4.0,0.0,0.0,747.1340664529483,0.0,1392.2683230210487,15836.025846751301,0,44,1,2229,201705916,,,,,1.0,0.0,3.0,1.0,2.0,1.3,531.687870148338,1342.0,0.0,0.0,0.0,21246.0,0,1,3,80.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2139.402389473997,0.1350971771691625,0.1006967141802691,16343.076923076922,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +5917,2,52.0,3,0.0,9,120,5,47,33,9.0,0.0,555.170527825376,1668.9529087556969,0.0,0.0,53683.52,31,42,1,223,201705917,,,552.0,,2.0,3.0,5.0,2.0,4.0,2.3,1667.8575317572622,0.0,1240.0,0.0,0.0,77067.0,1,1,1,140.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2224.123436581073,0.04143028319642737,0.028859608348334214,33507.39130434783,9,5,9,9_1,9_0,9_0_0 +5918,2,44.0,3,0.0,9,111,2,37,46,8.0,0.0,0.0,1823.7348317451365,0.0,0.0,34278.82,20,50,2,2230,201705918,,,,630.0,2.0,0.0,4.0,2.0,4.0,2.1,1072.0282014606892,0.0,1355.0,0.0,0.0,56363.0,1,1,3,81.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1823.7348317451365,0.053202964155275374,0.03235695104492551,26839.52380952381,7,4,7,7_0,7_2,7_0_0 +5919,2,61.0,4,0.0,5,111,2,78,78,1.0,0.0,0.0,1126.8251494044466,0.0,2099.8145199661717,23441.631191295746,50,50,1,2231,201705919,,,689.0,383.0,1.0,2.0,4.0,1.0,3.0,2.0,1570.576451910203,2024.0,0.0,0.0,0.0,17481.0,6,5,3,92.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3226.6396693706183,0.13764569722301243,0.1845798106155608,8740.5,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +5920,2,46.0,2,0.0,5,111,2,0,65,9.0,0.0,0.0,484.5347154452023,0.0,2459.3574994400797,40331.58000000001,0,42,1,2232,201705920,,,400.0,,1.0,0.0,5.0,0.0,1.0,1.0,2498.6217953107125,0.0,360.0,1390.0,0.0,38090.0,0,1,2,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2943.892214885282,0.07299223622990425,0.07728779771292418,38090.0,9,5,9,9_1,9_4,9_0_0 +5921,2,59.0,3,0.0,6,111,4,54,77,8.0,0.0,138.792631956344,1950.2522296669392,166.31626255206297,0.0,31689.08,50,50,1,2233,201705921,,,495.0,,1.0,2.0,6.0,0.0,2.0,1.5,1713.25727099008,0.0,1449.0,0.0,0.0,40009.0,1,5,1,120.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2255.3611241753465,0.07117155575912416,0.05637134455185949,26672.666666666668,7,4,7,7_1,7_2,7_0_0 +5922,2,46.0,4,0.0,7,111,4,0,54,2.0,0.0,340.04194829304276,3243.690733952604,0.0,0.0,61305.61665845403,0,50,1,2234,201705922,,,600.0,,3.0,1.0,6.0,3.0,4.0,2.3,358.4591492243524,0.0,2410.0,0.0,0.0,30819.0,0,1,5,120.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3583.732682245647,0.058456840948380724,0.11628322405806961,13399.565217391306,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +5923,2,52.0,1,0.0,1,111,2,33,34,10.0,0.0,0.0,590.8631668901216,0.0,2293.041236888017,52625.9,20,10,1,2235,201705923,,,530.0,,2.0,0.0,4.0,1.0,3.0,2.0,3485.087591950228,0.0,439.0,1296.0,0.0,114814.0,1,1,2,115.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2883.9044037781387,0.05480009660220801,0.02511805532233124,57407.0,10,5,10,10_1,10_4,10_1_0 +5924,2,40.0,2,0.0,1,111,4,0,42,5.0,0.0,0.0,1808.9296043287552,0.0,0.0,38479.12,0,30,1,2237,201705924,,,570.0,,1.0,0.0,3.0,2.0,3.0,1.6,1017.2579246926139,0.0,1344.0,0.0,0.0,31180.0,0,1,3,76.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1808.9296043287552,0.047010680190418985,0.058015702512147375,19487.5,5,3,5,5_1,5_3,5_1_0 +5925,2,54.0,2,0.0,5,111,1,0,31,10.0,0.0,0.0,403.7789295376686,0.0,159.23897478389006,33615.714781575625,0,20,2,2238,201705925,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3786.4501370361695,0.0,300.0,90.0,0.0,50302.0,0,1,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,563.0179043215587,0.01674865187249096,0.0111927538531581,50302.0,10,5,10,10_0,10_4,10_0_0 +5926,2,29.0,3,0.0,99,111,2,46,46,8.0,0.0,0.0,1572.1644824745465,0.0,70.44796926892533,55561.59590588401,30,20,2,2239,201705926,,,,601.0,2.0,0.0,2.0,0.0,2.0,1.5,2903.3002156268176,67.90442129269684,1140.0,0.0,0.0,45032.0,1,1,3,68.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1642.6124517434719,0.029563809767557778,0.0364765600404928,30021.333333333332,8,4,8,8_0,8_3,8_0_0 +5927,2,59.0,3,0.0,1,112,2,0,56,5.0,0.0,0.0,441.4649629611843,0.0,1079.286384646366,11832.0,0,60,2,224,201705927,,,,460.0,1.0,3.0,3.0,0.0,1.0,1.0,2856.2335564025343,0.0,328.0,610.0,0.0,20354.0,0,1,3,66.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1520.7513476075503,0.12852868049421487,0.07471510993453623,20354.0,5,3,5,5_0,5_1,5_1_0 +5928,2,50.0,1,0.0,4,111,2,38,38,8.0,0.0,0.0,605.6683943065029,0.0,636.9558991355602,92715.2680158789,20,10,1,2240,201705928,,,342.0,,2.0,0.0,5.0,2.0,4.0,2.5,1624.1225417422688,0.0,450.0,360.0,0.0,76490.0,1,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1242.6242934420632,0.013402585356591374,0.016245578421258507,30596.0,8,4,8,8_1,8_4,8_0_1 +5929,2,46.0,3,0.0,8,112,2,68,43,7.0,0.0,0.0,1188.4559826058712,44.23304855108057,0.0,40581.36,50,33,1,2241,201705929,,,308.0,,2.0,0.0,4.0,2.0,4.0,2.3,1255.6775481471207,0.0,883.0,0.0,0.0,59390.0,1,1,1,97.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1232.6890311569518,0.03037574470537586,0.020755834840157465,25821.739130434784,7,4,7,7_1,7_0,7_0_0 +5930,2,56.0,2,0.0,5,112,2,0,45,9.0,0.0,0.0,769.8718256518214,0.0,1592.3897478389006,24984.52,0,42,1,2242,201705930,,,230.0,,1.0,2.0,6.0,0.0,1.0,1.0,968.1063336998416,0.0,572.0,900.0,0.0,32825.0,0,1,2,117.0,10,1.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2362.261573490722,0.09454900768518755,0.0719653183089329,32825.0,9,5,9,9_1,9_1,9_0_0 +5931,2,57.0,1,0.0,6,211,4,75,54,9.0,0.0,97.1548423694408,1975.824895204325,0.0,0.0,40425.50000000001,50,42,1,2244,201705931,,,219.0,,1.0,2.0,5.0,0.0,2.0,1.5,1219.499992180721,0.0,1468.0,0.0,0.0,49495.0,5,1,1,173.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2072.9797375737658,0.05127901293920336,0.04188260910341986,32996.666666666664,9,5,9,9_1,9_1,9_0_0 +5932,2,71.0,4,0.0,7,111,6,0,77,3.0,0.0,0.0,3634.010365839017,113.23660429076627,0.0,18101.28,0,44,1,2245,201705932,,,300.0,,0.0,0.0,4.0,0.0,1.0,1.0,2553.9460439058685,0.0,2700.0,0.0,0.0,15700.0,0,5,1,100.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3747.246970129783,0.20701557956839425,0.23867815096368045,15700.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +5933,2,59.0,3,0.0,6,211,2,0,54,5.0,0.0,0.0,403.7789295376686,0.0,1433.1507730550106,16252.24,0,70,1,2248,201705933,,,240.0,,1.0,2.0,3.0,0.0,1.0,1.0,2596.195221834065,0.0,300.0,810.0,0.0,18905.0,0,1,3,60.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1836.9297025926792,0.11302624761833933,0.09716634237464582,18905.0,5,3,5,5_1,5_1,5_0_0 +5934,1,83.0,2,79.0,1,112,2,0,77,2.0,0.0,0.0,511.45331074771354,0.0,1470.3065338379183,21047.0,0,71,2,2249,201705934,,,159.0,322.0,0.0,1.0,3.0,0.0,1.0,1.0,3964.579078695527,0.0,380.0,831.0,0.0,12357.0,0,5,3,53.0,10,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1981.759844585632,0.09415878009149199,0.16037548309343952,12357.0,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +5935,2,28.0,1,0.0,9,111,2,43,48,8.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,20756.739999999998,44,31,1,225,201705935,,,240.0,,2.0,0.0,4.0,0.0,2.0,1.5,2657.6418077695885,1100.0,0.0,0.0,0.0,43020.0,1,1,2,77.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1753.6085159622926,0.08448381181063562,0.04076263402980689,28680.0,8,4,8,8_1,8_3,8_0_0 +5936,2,45.0,2,0.0,8,111,2,43,31,10.0,0.0,0.0,3867.485453530467,0.0,5553.388414213918,68602.6080102114,33,10,1,2250,201705936,,,225.0,,2.0,3.0,6.0,2.0,4.0,2.1,671.1867657173766,2624.177478944649,1788.0,1600.0,0.0,137087.0,1,1,2,213.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,9420.873867744385,0.1373253020693047,0.06872186179392929,65279.52380952381,10,5,10,10_1,10_3,10_0_0 +5937,2,82.0,9,0.0,1,300,4,71,71,3.0,0.0,0.0,2691.859530251124,0.0,0.0,20703.16,71,71,1,2251,201705937,,,,,0.0,2.0,7.0,0.0,2.0,1.5,2088.142890651839,0.0,2000.0,0.0,0.0,24200.0,5,5,5,111.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2691.859530251124,0.130021674481148,0.11123386488641009,16133.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5938,2,73.0,1,0.0,1,111,2,75,74,10.0,0.0,0.0,1878.1981003106803,0.0,5526.729522005465,38112.66448087708,31,12,1,2252,201705938,,,289.0,,0.0,3.0,8.0,0.0,2.0,1.5,1096.1133069973923,2450.1078378002003,382.0,1687.0,0.0,80063.0,5,5,1,148.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,7404.927622316145,0.19429047334204477,0.09248876038015244,53375.333333333336,10,5,10,10_1,10_2,10_1_0 +5939,2,77.0,2,0.0,1,112,6,77,77,6.0,2379.684013708323,0.0,1020.214761965176,113.23660429076627,0.0,17143.31697444815,70,50,1,2253,201705939,,,594.0,,0.0,4.0,7.0,0.0,2.0,1.5,2091.993722072692,0.0,758.0,0.0,0.0,31820.0,5,5,1,100.0,8,2.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3513.135379964265,0.20492740029251863,0.11040651728360355,21213.333333333332,6,3,6,6_1,6_1,6_1_0 +5940,2,64.0,3,0.0,4,112,5,75,74,9.0,951.8736054833294,1110.341055650752,1324.394888883553,0.0,0.0,52022.32584675129,71,12,1,2254,201705940,,,,,0.0,3.0,6.0,1.0,4.0,2.5,2839.8181729107273,0.0,984.0,0.0,0.0,89019.0,6,5,1,160.0,6,0.0,5,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3386.6095500176343,0.06509915685034913,0.038043671014251275,35607.6,9,5,9,9_1,9_0,9_0_1 +5941,2,80.0,3,0.0,5,111,2,0,52,3.0,0.0,0.0,74.0261370819059,0.0,145.08439924754427,13098.720000000001,0,70,2,2255,201705941,,,,388.0,1.0,7.0,3.0,0.0,1.0,1.0,1843.5485619648982,0.0,55.0,82.0,0.0,14570.0,0,5,3,80.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,219.11053632945016,0.016727629595063496,0.015038471951231994,14570.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +5942,2,33.0,3,0.0,9,112,2,0,67,2.0,0.0,0.0,3634.010365839017,0.0,0.0,24162.12,0,43,1,2256,201705942,,,,,1.0,0.0,5.0,2.0,3.0,1.6,1830.1829832563358,0.0,2700.0,0.0,0.0,18193.0,0,4,2,170.0,8,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3634.010365839017,0.1504011388834679,0.19974772527010481,11370.625,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +5943,2,67.0,3,0.0,1,111,2,77,75,6.0,49.656073086047016,0.0,942.1508355878933,0.0,1415.4575536345783,50842.4716935026,70,50,1,2257,201705943,,,150.0,,0.0,2.0,4.0,0.0,2.0,1.5,1794.943092223229,0.0,700.0,800.0,0.0,37794.0,5,5,1,65.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2407.264462308519,0.04734751049910413,0.0636943552497359,25196.0,7,4,7,7_1,7_3,7_1_0 +5944,2,70.0,3,0.0,4,112,2,78,78,5.0,0.0,0.0,44.538543454721214,0.0,82.99662134253643,19265.115067511317,70,70,1,2258,201705944,,,,,1.0,4.0,4.0,1.0,3.0,2.0,1515.862810661972,80.0,0.0,0.0,0.0,40033.0,5,5,1,82.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,127.53516479725764,0.006620005349063962,0.003185750875459187,20016.5,5,3,5,5_1,5_0,5_0_1 +5945,2,44.0,3,0.0,8,111,2,0,85,1.0,0.0,0.0,311.76980418304845,0.0,580.976349397755,30270.98784974977,0,41,2,2260,201705945,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2620.178878719432,560.0,0.0,0.0,0.0,10720.0,0,7,1,44.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,892.7461535808035,0.029491807733925117,0.08327855910268689,10720.0,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +5946,2,49.0,4,0.0,99,111,2,85,54,5.0,0.0,0.0,1130.581002705472,0.0,1061.5931652259337,52476.91407609409,31,42,1,2261,201705946,,,540.0,,1.0,0.0,2.0,0.0,2.0,1.5,2333.87620794663,0.0,840.0,600.0,0.0,30330.0,4,4,3,45.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2192.1741679314055,0.041774067826333035,0.07227742063736912,20220.0,5,3,5,5_1,5_4,5_0_0 +5947,2,36.0,3,0.0,9,300,2,56,64,3.0,0.0,0.0,1749.7086946632305,0.0,0.0,47357.45999999999,44,44,1,2262,201705947,,,380.0,,2.0,0.0,5.0,2.0,4.0,2.1,2195.5707561268905,0.0,1300.0,0.0,0.0,32579.0,1,1,2,124.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1749.7086946632305,0.036946844164852395,0.05370664215179197,15513.809523809523,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5948,2,63.0,3,0.0,9,112,5,0,75,4.0,0.0,416.377895869032,1049.8252167979383,0.0,0.0,18560.38,0,50,1,2264,201705948,,,192.0,,0.0,0.0,5.0,0.0,1.0,1.0,2287.6409071801463,0.0,780.0,0.0,0.0,18434.0,0,5,2,96.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1466.2031126669704,0.07899639515284548,0.07953797942209886,18434.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5949,2,78.0,2,0.0,4,112,2,56,77,4.0,0.0,0.0,1624.5372265065532,0.0,2326.6583537868382,26997.0,70,71,1,2265,201705949,,,158.0,,1.0,3.0,5.0,0.0,2.0,1.5,1713.486143165824,0.0,1207.0,1315.0,0.0,25020.0,5,5,1,95.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3951.1955802933917,0.1463568389188944,0.15792148602291733,16680.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +5950,2,19.0,3,0.0,1,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,12952.2858467513,0,41,2,2266,201705950,,,,430.0,0.0,0.0,1.0,0.0,1.0,1.0,3422.342679280248,0.0,0.0,0.0,0.0,6309.0,0,3,3,28.0,9,7.0,1,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,6309.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +5951,2,36.0,3,0.0,9,211,2,46,37,8.0,0.0,0.0,2745.6967208561464,0.0,0.0,53650.46,43,31,1,2268,201705951,,,1460.0,,2.0,0.0,5.0,1.0,3.0,1.8,247.95709531215311,0.0,2040.0,0.0,0.0,53182.0,1,1,3,135.0,1,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2745.6967208561464,0.05117750567014982,0.051628308842393035,29545.555555555555,8,4,8,8_1,8_1,8_0_0 +5952,1,23.0,3,296.0,99,111,6,0,56,2.0,0.0,0.0,1389.6025557873018,0.0,2589.4945858871365,13352.76,0,50,8,2269,201705952,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1119.9364095623844,2496.0,0.0,0.0,0.0,14175.0,0,1,3,60.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3979.0971416744383,0.29799810239040003,0.28071232040031313,10903.846153846154,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5953,2,79.0,2,0.0,4,111,6,0,74,10.0,3907.441150509067,0.0,1141.3484408264765,0.0,0.0,25372.559999999998,0,60,1,2270,201705953,,,218.0,,0.0,0.0,6.0,0.0,1.0,1.0,1844.9261518451547,0.0,848.0,0.0,0.0,55202.0,0,5,1,130.0,9,7.0,1,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5048.789591335543,0.19898621153464782,0.09146026577543465,55202.0,10,5,10,10_1,10_3,10_0_1 +5954,1,45.0,4,150.0,9,300,2,0,62,2.0,0.0,0.0,2018.894647688343,191.08676974066807,0.0,11923.98,0,71,1,2273,201705954,,,,,1.0,1.0,4.0,1.0,2.0,1.5,1652.800863252032,0.0,1500.0,0.0,0.0,18540.0,0,4,3,90.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2209.981417429011,0.1853392422185387,0.11920072370167265,12360.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +5955,2,39.0,3,0.0,9,112,4,0,38,9.0,0.0,0.0,1615.1157181506744,0.0,0.0,40203.74,0,12,2,2274,201705955,,,,705.0,1.0,0.0,3.0,2.0,3.0,1.6,2605.8675775589454,0.0,1200.0,0.0,0.0,56515.0,0,1,3,98.0,9,1.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1615.1157181506744,0.040173270400979476,0.028578531684520472,35321.875,9,5,9,9_0,9_1,9_0_0 +5956,0,71.0,3,0.0,1,400,2,77,78,6.0,0.0,0.0,1044.441497737436,0.0,2689.3693519056987,31476.300000000003,71,71,1,2275,201705956,,,280.0,,0.0,1.0,4.0,0.0,2.0,1.5,1961.9224508602483,0.0,776.0,1520.0,0.0,31561.0,5,5,5,50.0,0,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3733.810849643135,0.1186229273975383,0.11830458000833735,21040.666666666668,5,3,5,5_1,5_1,5_1_0 +5957,2,36.0,2,0.0,4,111,2,54,37,9.0,0.0,0.0,888.3136449828709,0.0,2760.1422295874277,104811.48,30,20,1,2276,201705957,,,360.0,,2.0,0.0,7.0,0.0,2.0,1.5,2900.7342985322944,0.0,660.0,1560.0,0.0,62923.0,1,1,2,130.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3648.4558745702984,0.03480969713022179,0.05798286595633232,41948.666666666664,10,5,10,10_1,10_4,10_0_1 +5958,2,53.0,3,0.0,1,111,2,0,52,7.0,0.0,0.0,658.1596551463998,0.0,1606.5443233752464,27478.32,0,50,1,2277,201705958,,,299.0,,2.0,1.0,3.0,1.0,2.0,1.5,2450.0098675312543,0.0,489.0,908.0,0.0,39983.0,0,1,1,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2264.703978521646,0.08241784717994573,0.056641672173714984,26655.333333333332,7,4,7,7_1,7_4,7_1_0 +5959,2,51.0,4,0.0,8,111,2,0,46,1.0,0.0,0.0,403.7789295376686,0.0,796.1948739194503,14432.76,0,20,1,2278,201705959,,,300.0,,1.0,1.0,4.0,0.0,1.0,1.0,2099.954088259402,0.0,300.0,450.0,0.0,10560.0,0,4,3,90.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1199.973803457119,0.08314236524802733,0.11363388290313627,10560.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +5960,2,37.0,2,0.0,99,120,2,85,62,3.0,0.0,0.0,41.72382271889242,0.0,145.08439924754427,28177.380315994116,60,31,2,2279,201705960,,,35.0,355.0,1.0,0.0,3.0,2.0,4.0,2.1,1542.7662092301632,0.0,31.0,82.0,0.0,29853.0,6,1,3,42.0,0,3.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,186.8082219664367,0.006629722844050202,0.006257602986850122,14215.714285714284,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +5961,2,78.0,3,0.0,1,111,2,86,86,8.0,2141.715612337491,0.0,2422.6735772260117,0.0,141.54575536345783,78642.1430733172,71,71,1,228,201705961,,,1500.0,,0.0,6.0,8.0,0.0,3.0,2.0,3118.421385417656,0.0,1800.0,80.0,0.0,66045.0,6,5,1,450.0,10,8.0,5,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4705.93494492696,0.059839861440953726,0.07125346271370975,33022.5,9,5,9,9_1,9_4,9_1_0 +5962,2,80.0,3,0.0,4,111,2,0,78,6.0,0.0,0.0,411.85450812842197,0.0,1710.9343179557966,21468.78,0,50,1,2280,201705962,,,130.0,,0.0,4.0,5.0,0.0,1.0,1.0,2436.3821458387624,0.0,306.0,967.0,0.0,21398.0,0,5,1,90.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2122.7888260842187,0.09887794397651933,0.09920501103300396,21398.0,6,3,6,6_1,6_3,6_0_1 +5963,2,51.0,2,0.0,7,111,2,37,37,10.0,0.0,0.0,1140.1136078578213,0.0,2269.109020892982,51858.26684744477,20,31,1,2281,201705963,,,576.0,,2.0,2.0,5.0,2.0,4.0,2.3,1843.36771725474,517.5563351347934,633.0,979.0,0.0,97361.0,1,1,2,110.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3409.222628750803,0.06574116020460076,0.03501630661918841,42330.86956521739,10,5,10,10_1,10_3,10_0_0 +5964,2,33.0,3,0.0,9,111,1,0,52,4.0,0.0,0.0,300.6351683193682,0.0,560.2271940621209,19140.719999999998,0,20,2,2285,201705964,,,,447.0,1.0,0.0,3.0,0.0,1.0,1.0,954.6090788944387,540.0,0.0,0.0,0.0,19691.0,0,1,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,860.8623623814891,0.04497544305446656,0.04371857002597578,19691.0,5,3,5,5_0,5_4,5_0_0 +5965,1,45.0,4,522.0,7,111,2,0,52,3.0,0.0,0.0,890.7708690944243,0.0,1659.9324268507285,23181.986169368305,0,70,2,2286,201705965,,,,196.0,1.0,0.0,5.0,4.0,5.0,2.4,702.453457536964,1600.0,0.0,0.0,0.0,33737.0,0,1,3,90.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2550.7032959451526,0.11002954092499391,0.07560551607864222,14057.083333333334,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +5966,2,93.0,3,0.0,9,111,1,0,75,9.0,0.0,0.0,806.7055680136574,0.0,919.7537885558773,21459.858213006635,0,41,2,2287,201705966,284.0,284.0,,510.0,0.0,1.0,2.0,0.0,1.0,1.0,4186.825072202494,402.20081277139855,433.0,284.0,0.0,35394.0,0,5,3,41.0,6,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1726.4593565695347,0.08045064135247373,0.048778305830636116,35394.0,9,5,9,9_0,9_2,9_0_0 +5967,2,64.0,2,0.0,2,112,5,0,75,6.0,0.0,0.0,807.5578590753372,61.9262679715128,0.0,19915.8,0,41,1,2288,201705967,,,240.0,,0.0,2.0,3.0,0.0,1.0,1.0,2097.3766082672596,0.0,600.0,0.0,0.0,24211.0,0,5,1,52.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,869.4841270468501,0.04365800655995994,0.03591277217161001,24211.0,7,4,7,7_1,7_1,7_0_1 +5968,1,40.0,4,401.0,6,300,4,67,85,1.0,0.0,0.0,672.964882562781,92.0047409862476,0.0,20576.278002984738,50,50,1,2289,201705968,,,,,1.0,0.0,3.0,2.0,4.0,2.3,2680.016540496395,0.0,500.0,0.0,0.0,20972.0,4,7,3,65.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,764.9696235490286,0.037177259339034215,0.03647575927660827,9118.260869565218,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +5969,2,91.0,4,0.0,2,112,2,0,72,3.0,0.0,0.0,1454.1834437966475,0.0,2709.839686833814,19645.72,0,71,1,229,201705969,,,202.0,,0.0,2.0,4.0,0.0,1.0,1.0,2577.0266063261697,2612.0,0.0,0.0,0.0,15093.0,0,5,1,80.0,9,2.0,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4164.023130630461,0.211955740519078,0.2758910177320918,15093.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +5970,2,80.0,1,0.0,5,111,4,78,77,7.0,0.0,832.755791738064,1211.3367886130059,0.0,0.0,32677.318839019717,50,50,1,2290,201705970,,,161.0,,0.0,3.0,5.0,0.0,2.0,1.5,1527.074899545536,0.0,900.0,0.0,0.0,35796.0,5,5,1,98.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2044.09258035107,0.06255386466744743,0.05710393843868226,23864.0,6,3,6,6_1,6_2,6_0_0 +5971,2,41.0,2,0.0,3,111,4,46,48,9.0,0.0,0.0,222.07841124571772,0.0,0.0,48708.129322168425,30,31,1,2291,201705971,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1993.3584473001517,0.0,165.0,0.0,0.0,56807.0,1,1,2,120.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,222.07841124571772,0.004559370567833399,0.003909349397886136,31559.444444444445,8,4,8,8_1,8_3,8_0_1 +5972,2,36.0,1,0.0,3,111,3,0,47,7.0,0.0,0.0,450.88647131706324,0.0,1942.7154923634587,17682.240315994117,0,31,2,2292,201705972,618.0,618.0,,,1.0,0.0,3.0,0.0,1.0,1.0,2249.1779134099543,0.0,335.0,1098.0,0.0,26662.0,0,1,2,68.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2393.6019636805217,0.13536757339031508,0.08977578440028962,26662.0,7,4,7,7_0,7_2,7_0_1 +5973,1,48.0,4,202.0,3,111,2,0,54,1.0,0.0,0.0,845.2438924988529,0.0,1477.383821606091,22090.42,0,71,2,2294,201705973,,,450.0,,2.0,1.0,4.0,1.0,2.0,1.5,1419.3705899179151,0.0,628.0,835.0,0.0,12157.0,0,4,3,70.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2322.627714104944,0.10514185398489229,0.19105270330714355,8104.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5974,2,56.0,2,0.0,7,112,6,75,33,10.0,0.0,0.0,1938.1388617808093,247.7050718860512,0.0,62528.619999999995,42,41,1,2295,201705974,,,821.0,,2.0,2.0,7.0,1.0,3.0,2.0,5514.939629614808,0.0,1440.0,0.0,0.0,81939.0,5,1,1,142.0,7,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2185.8439336668607,0.03495749520246666,0.026676478034475166,40969.5,10,5,10,10_1,10_1,10_0_0 +5975,2,28.0,2,0.0,9,111,2,38,38,10.0,0.0,0.0,1211.3367886130059,0.0,0.0,51183.490000000005,12,12,8,2296,201705975,,,,726.0,2.0,0.0,3.0,0.0,2.0,1.5,4149.487423288645,0.0,900.0,0.0,0.0,70019.0,1,1,3,60.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1211.3367886130059,0.0236665531915273,0.017300115520258872,46679.333333333336,10,5,10,10_0,10_3,10_0_0 +5976,2,57.0,3,0.0,1,111,2,78,52,6.0,0.0,451.076053858118,1134.6187920008488,0.0,1086.3636724145388,19838.748161188145,50,50,1,2298,201705976,,,,,1.0,2.0,3.0,0.0,2.0,1.5,2055.4231880760694,0.0,843.0,614.0,0.0,32996.0,5,1,1,112.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2672.058518273506,0.13468886728957175,0.08098128616418675,21997.333333333332,6,3,6,6_1,6_3,6_1_0 +5977,2,52.0,2,0.0,7,400,2,65,45,7.0,0.0,0.0,1615.1157181506744,61.9262679715128,0.0,33491.81999999999,50,42,1,2299,201705977,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1694.155040958452,0.0,1200.0,0.0,0.0,36484.0,1,1,1,150.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1677.0419861221872,0.05007318163426734,0.04596650548520412,24322.666666666668,7,4,7,7_1,7_0,7_0_0 +5978,2,37.0,3,0.0,3,111,1,52,67,7.0,0.0,0.0,1356.6972032465665,0.0,0.0,28336.195699499553,42,71,2,23,201705978,,,,582.0,2.0,2.0,3.0,0.0,2.0,1.5,3471.1368200759825,0.0,1008.0,0.0,0.0,35760.0,1,1,3,35.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1356.6972032465665,0.047878593782810695,0.037938959822331274,23840.0,6,3,6,6_0,6_4,6_0_1 +5979,2,36.0,1,0.0,9,111,6,54,62,8.0,0.0,0.0,1384.9617283142034,0.0,0.0,25132.359999999997,42,43,1,2301,201705979,,,456.0,,2.0,0.0,4.0,1.0,3.0,1.8,2519.9284646920632,0.0,1029.0,0.0,0.0,51171.0,1,1,2,106.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1384.9617283142034,0.05510671215573084,0.02706536374732179,28428.333333333332,8,4,8,8_1,8_3,8_0_0 +5980,2,55.0,1,0.0,6,111,4,54,38,10.0,0.0,0.0,2961.045483276236,0.0,0.0,42452.96,42,31,1,2302,201705980,,,1120.0,,2.0,2.0,4.0,0.0,2.0,1.5,1747.4773307773119,0.0,2200.0,0.0,0.0,67449.0,1,1,1,112.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2961.045483276236,0.06974885810733189,0.043900509767027474,44966.0,10,5,10,10_1,10_2,10_0_0 +5981,2,68.0,3,0.0,5,112,2,0,77,6.0,1475.4040884991605,0.0,417.2382271889242,0.0,0.0,25978.879999999997,0,60,1,2303,201705981,,,200.0,,0.0,1.0,5.0,0.0,1.0,1.0,1650.7863430261013,0.0,310.0,0.0,0.0,24202.0,0,5,1,99.0,8,0.0,1,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1892.6423156880846,0.07285311436397893,0.07820189718569064,24202.0,7,4,7,7_1,7_0,7_0_0 +5982,2,51.0,2,0.0,7,300,2,46,47,7.0,0.0,555.170527825376,0.0,0.0,0.0,57734.471902229976,42,50,1,2304,201705982,,,,,3.0,0.0,5.0,2.0,4.0,2.5,1916.446092022061,0.0,0.0,0.0,0.0,65604.0,4,1,1,136.0,0,0.0,4,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,555.170527825376,0.009615928050152179,0.00846244936018194,26241.6,7,4,7,7_1,7_0,7_0_0 +5983,2,71.0,3,0.0,3,112,2,0,75,6.0,0.0,0.0,437.42717366580763,0.0,2247.038866394893,20022.18,0,60,1,2305,201705983,,,320.0,,0.0,1.0,4.0,0.0,1.0,1.0,2326.0136421609172,0.0,325.0,1270.0,0.0,22535.0,0,5,1,74.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2684.4660400607004,0.13407461325693307,0.11912429731798094,22535.0,6,3,6,6_1,6_2,6_0_1 +5984,2,64.0,2,0.0,1,111,2,72,72,6.0,0.0,0.0,1641.4352858659076,0.0,3623.460413358581,99044.79144401253,60,50,2,2306,201705984,,,,,0.0,0.0,2.0,0.0,2.0,1.5,3395.7368685566803,2225.4922410796116,299.0,743.0,0.0,33111.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,5264.895699224488,0.053156714477011126,0.1590074506727217,22074.0,6,3,6,6_0,6_4,6_1_0 +5985,2,69.0,3,0.0,7,111,2,77,75,4.0,0.0,0.0,340.5202305767672,138.0071114793714,0.0,31386.0258467513,42,50,1,2307,201705985,,,182.0,,0.0,2.0,5.0,0.0,2.0,1.5,1166.1765423590982,0.0,253.0,0.0,0.0,25678.0,6,5,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,478.52734205613854,0.015246509526011554,0.018635693669917384,17118.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +5986,2,53.0,2,0.0,1,111,5,0,34,9.0,0.0,416.377895869032,969.0694308904046,28.309151072691566,0.0,20850.800000000003,0,31,1,2308,201705986,,,157.0,,1.0,1.0,3.0,0.0,1.0,1.0,2536.184237756078,0.0,720.0,0.0,0.0,32992.0,0,1,2,64.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1413.7564778321282,0.06780346451129587,0.042851493629732305,32992.0,9,5,9,9_1,9_3,9_1_0 +5987,2,66.0,3,0.0,1,111,4,0,77,4.0,0.0,0.0,830.4386650824717,0.0,0.0,9910.04,0,71,2,2309,201705987,,,,356.0,0.0,2.0,2.0,0.0,1.0,1.0,1710.481010338618,0.0,617.0,0.0,0.0,17348.0,0,5,3,40.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,830.4386650824717,0.08379771071382877,0.04786941809329443,17348.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +5988,2,49.0,2,0.0,4,111,2,35,33,8.0,0.0,0.0,2239.627129168935,0.0,0.0,65482.42584675131,50,20,1,231,201705988,,,906.0,,2.0,0.0,9.0,3.0,5.0,2.8,1776.9951313003755,0.0,1664.0,0.0,0.0,79178.0,1,1,2,210.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2239.627129168935,0.03420195724590809,0.028285977533771187,28277.857142857145,8,4,8,8_1,8_4,8_0_1 +5989,2,57.0,1,0.0,1,111,2,54,33,10.0,0.0,0.0,1523.814687715077,0.0,2968.829479193625,74993.21369488955,50,31,1,2311,201705989,,,300.0,,2.0,2.0,6.0,0.0,2.0,1.5,1205.9478761414593,1035.1126702695867,704.0,1071.0,0.0,80997.0,1,1,1,135.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4492.644166908702,0.059907342885545056,0.05546679712716152,53998.0,10,5,10,10_1,10_2,10_1_0 +5990,2,60.0,3,0.0,6,300,2,78,77,4.0,0.0,0.0,2288.080600713455,109.69796040667983,0.0,53048.479999999996,50,60,1,2312,201705990,,,382.0,,0.0,1.0,3.0,0.0,2.0,1.5,2057.8783953377488,0.0,1700.0,0.0,0.0,27085.0,7,5,1,80.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2397.778561120135,0.045199759938835855,0.08852791438508897,18056.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5991,2,54.0,2,0.0,8,111,2,68,46,10.0,0.0,0.0,699.8834778652922,0.0,1840.0948197249518,27809.536919522987,50,71,1,2313,201705991,,,,,2.0,1.0,5.0,0.0,2.0,1.5,2336.9492687335055,0.0,520.0,1040.0,0.0,70963.0,4,1,1,108.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2539.978297590244,0.09133479298632678,0.03579299490706768,47308.666666666664,10,5,10,10_1,10_3,10_0_0 +5992,2,65.0,2,0.0,7,112,2,52,47,5.0,793.228004569441,0.0,3876.951961742828,106.15931652259337,813.8844819314627,50575.1040646166,50,41,1,2314,201705992,,,252.0,,2.0,1.0,4.0,0.0,2.0,1.5,1182.310194204795,784.4989049108103,2556.0,0.0,0.0,29944.0,1,5,1,160.0,6,0.0,3,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5590.223764766325,0.11053311442768464,0.18668927881266115,19962.666666666668,5,3,5,5_1,5_0,5_0_0 +5993,2,32.0,2,0.0,1,111,2,37,37,9.0,0.0,0.0,918.607458753625,0.0,1711.8053151898139,64895.68,0,0,1,2315,201705993,,,240.0,,2.0,0.0,5.0,1.0,3.0,1.8,2388.179403365089,1650.0,0.0,0.0,0.0,69300.0,1,1,2,130.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2630.412773943439,0.0405329410824178,0.03795689428489811,38500.0,9,5,9,9_1,9_3,9_1_0 +5994,2,82.0,3,0.0,1,112,6,0,75,9.0,0.0,0.0,2664.9409349486127,0.0,0.0,27268.464361131377,0,41,1,2316,201705994,,,360.0,,0.0,1.0,3.0,0.0,2.0,1.5,4115.552751835384,0.0,1980.0,0.0,0.0,47982.0,0,5,1,65.0,3,0.0,5,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2664.9409349486127,0.09772977677273366,0.055540430472856755,31988.0,9,5,9,9_1,9_0,9_1_0 +5995,2,31.0,4,0.0,4,111,1,48,46,5.0,0.0,0.0,253.8696976919109,0.0,473.0807416524576,35084.13087530163,50,0,2,2318,201705995,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2628.4120902337436,456.0,0.0,0.0,0.0,35241.0,1,1,2,61.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,726.9504393443685,0.020720206577958124,0.020627974215952118,19578.333333333332,5,3,5,5_0,5_4,5_0_1 +5996,1,24.0,4,422.0,3,112,1,0,52,4.0,0.0,0.0,807.5578590753372,0.0,0.0,11652.152625904886,0,31,2,2319,201705996,,,,208.0,1.0,0.0,4.0,2.0,3.0,2.0,2951.638999388825,0.0,600.0,0.0,0.0,32107.0,0,1,3,63.0,10,4.0,2,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,807.5578590753372,0.06930546526484617,0.025152080825842877,16053.5,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +5997,2,80.0,2,0.0,4,111,2,74,74,10.0,0.0,249.82673752141918,2983.970426832959,0.0,1045.9646516044347,44088.1692414139,41,44,1,232,201705997,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1739.6250753001011,1008.1997408425775,1800.0,0.0,0.0,70727.0,5,5,1,110.0,7,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4279.761815958813,0.09707279502861846,0.06051100450971783,47151.333333333336,10,5,10,10_1,10_2,10_0_1 +5998,2,42.0,2,0.0,9,112,2,52,38,10.0,0.0,0.0,1792.7784471472485,0.0,0.0,46374.939999999995,20,20,1,2321,201705998,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2295.8169611756275,0.0,1332.0,0.0,0.0,63224.0,1,1,2,140.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1792.7784471472485,0.03865834537246299,0.02835597948796736,42149.333333333336,10,5,10,10_1,10_0,10_0_0 +5999,2,51.0,3,0.0,1,111,6,0,43,7.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,12972.980513464174,0,20,2,2322,201705999,,,,286.0,1.0,0.0,1.0,0.0,1.0,1.0,2952.5376784999034,600.0,0.0,0.0,0.0,27580.0,0,1,3,33.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,956.5137359794323,0.07373122429242088,0.034681426250160706,27580.0,8,4,8,8_0,8_3,8_1_0 +6000,2,47.0,3,0.0,4,111,3,0,46,7.0,0.0,0.0,2866.830399717447,0.0,396.3281150176819,43673.479999999996,0,42,2,2323,201706000,,,110.0,,1.0,0.0,2.0,0.0,1.0,1.0,533.1145963700695,0.0,2130.0,224.0,0.0,27010.0,0,1,1,51.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3263.158514735129,0.07471716278929752,0.1208129772208489,27010.0,7,4,7,7_0,7_3,7_0_1 +6001,2,83.0,1,0.0,4,111,1,0,74,9.0,0.0,0.0,465.6916987334444,0.0,201.70270139292742,27751.7058467513,0,60,2,2324,201706001,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4985.443781578632,0.0,346.0,114.0,0.0,33905.0,0,5,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,667.3944001263718,0.02404877032827512,0.019684247164912898,33905.0,9,5,9,9_0,9_4,9_0_1 +6002,2,37.0,3,0.0,5,112,2,54,43,2.0,0.0,0.0,916.5781700505077,0.0,2379.738012048135,40056.90000000001,31,31,1,2325,201706002,,,800.0,,2.0,0.0,5.0,3.0,5.0,2.6,2291.1850941550415,0.0,681.0,1345.0,0.0,34963.0,1,1,1,140.0,9,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3296.3161820986425,0.082290845824281,0.09428012991158202,13447.307692307691,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +6003,2,98.0,2,0.0,2,111,1,0,86,10.0,0.0,0.0,269.1859530251124,0.0,368.0189639449904,20329.44,0,30,2,2326,201706003,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2393.65972007112,0.0,200.0,208.0,0.0,42830.0,0,5,1,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,637.2049169701028,0.03134394833158723,0.014877537169509755,42830.0,10,5,10,10_0,10_4,10_0_1 +6004,2,21.0,4,0.0,4,112,1,64,55,6.0,0.0,0.0,387.6277723561618,424.6372660903735,0.0,34298.520000000004,50,31,8,2328,201706004,,,340.0,244.0,2.0,0.0,1.0,0.0,2.0,1.5,2825.8842789859923,0.0,288.0,0.0,0.0,32310.0,1,1,3,38.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,812.2650384465353,0.02368221831281744,0.025139741208496914,21540.0,6,3,6,6_0,6_0,6_0_1 +6005,2,63.0,2,0.0,1,300,2,78,75,3.0,2524.0515105399613,0.0,770.4213072375188,283.09151072691566,53.69428396326666,41152.40538208028,70,44,1,233,201706005,,,,,1.0,0.0,6.0,1.0,3.0,2.0,1590.9436830523014,51.75563351347934,551.0,0.0,0.0,29020.0,5,5,1,150.0,0,0.0,4,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3631.2586124676623,0.08823927978822073,0.12512951800370994,14510.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6006,2,63.0,2,0.0,1,112,5,77,78,3.0,0.0,138.792631956344,1161.53738730336,116.7752481748527,0.0,27218.84,70,71,1,2330,201706006,,,162.0,,0.0,3.0,5.0,0.0,2.0,1.5,503.20589446988953,0.0,863.0,0.0,0.0,22570.0,7,5,1,160.0,4,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1417.1052674345567,0.0520633968028967,0.06278711862802644,15046.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6007,2,69.0,3,0.0,9,300,4,71,78,5.0,0.0,624.566843803548,2551.8828346780656,106.15931652259337,0.0,33905.2,71,70,1,2331,201706007,,,490.0,,0.0,2.0,5.0,0.0,2.0,1.5,1589.3762288171479,0.0,1896.0,0.0,0.0,30420.0,5,5,2,128.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3282.608995004207,0.09681727271935299,0.10790956591072344,20280.0,5,3,5,5_1,5_1,5_0_0 +6008,2,63.0,3,0.0,6,112,4,77,77,4.0,0.0,305.3437903039568,1480.522741638118,123.8525359430256,0.0,26200.256974448144,70,50,1,2332,201706008,,,255.0,,0.0,2.0,4.0,0.0,2.0,1.5,1696.2649554694437,0.0,1100.0,0.0,0.0,26000.0,5,5,1,90.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1909.7190678851002,0.07288932584697767,0.07345073338019616,17333.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6009,2,32.0,2,0.0,2,111,4,46,46,9.0,0.0,0.0,1776.6272899657417,0.0,0.0,30756.92,43,42,2,2333,201706009,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2448.327372466112,0.0,1320.0,0.0,0.0,47567.0,1,1,2,63.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1776.6272899657417,0.05776349809947621,0.03734999663560329,31711.333333333332,8,4,8,8_0,8_3,8_0_1 +6010,2,53.0,1,0.0,3,112,5,62,34,9.0,396.6140022847205,582.9290542166448,453.57833084731436,198.16405750884095,0.0,50011.3516935026,50,31,1,2335,201706010,,,246.0,,2.0,2.0,5.0,0.0,2.0,1.5,1217.5323312608166,0.0,337.0,0.0,0.0,54786.0,1,1,1,70.0,9,3.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1631.2854448575206,0.03261830343748647,0.029775589472812773,36524.0,9,5,9,9_1,9_1,9_0_1 +6011,2,47.0,2,0.0,7,111,2,38,38,10.0,0.0,0.0,70.1482059411859,0.0,130.71967861449488,98495.3943438364,10,10,1,2336,201706011,,,,,2.0,0.0,5.0,3.0,5.0,2.6,1491.3856346846046,126.0,0.0,0.0,0.0,115100.0,1,1,1,150.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,200.8678845556808,0.0020393632199133447,0.001745159726808695,44269.230769230766,10,5,10,10_1,10_4,10_0_0 +6012,1,37.0,4,272.0,9,111,2,0,56,1.0,0.0,0.0,1076.7438121004495,0.0,0.0,21612.551191295745,0,41,2,234,201706012,,,,828.0,1.0,0.0,3.0,2.0,3.0,1.6,1129.3245660518598,0.0,800.0,0.0,0.0,8494.0,0,1,3,68.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1076.7438121004495,0.04982030129483733,0.12676522393459494,5308.75,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6013,2,71.0,4,0.0,9,400,2,78,72,3.0,0.0,0.0,1265.1739792180283,153.93100895776038,0.0,14301.934661438776,60,50,1,2341,201706013,,,560.0,,0.0,2.0,4.0,0.0,2.0,1.5,1578.566713696858,0.0,940.0,0.0,0.0,22808.0,5,5,1,122.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1419.1049881757888,0.09922468685317198,0.06221961540581326,15205.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6014,2,74.0,3,0.0,5,112,2,78,77,8.0,0.0,0.0,1817.0051829195086,318.4779495677801,0.0,39152.52,50,33,1,2342,201706014,,,320.0,,0.0,2.0,5.0,0.0,2.0,1.5,1208.254011637604,0.0,1350.0,0.0,0.0,47361.0,5,5,1,120.0,10,1.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2135.4831324872885,0.05454267394505612,0.04508948570526992,31574.0,8,4,8,8_1,8_1,8_0_0 +6015,2,49.0,4,0.0,6,112,2,65,56,3.0,0.0,0.0,726.8020731678034,0.0,1144.7512965019653,48294.9881657439,50,50,1,2343,201706015,,,722.0,,3.0,0.0,6.0,2.0,4.0,2.5,2613.0957924634135,0.0,540.0,647.0,0.0,35816.0,1,1,3,102.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1871.5533696697687,0.03875253811527548,0.05225467304193011,14326.4,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6016,2,78.0,4,0.0,1,112,2,75,75,5.0,1488.0957365722716,0.0,471.07541779394666,513.1033631925346,0.0,17767.239999999998,31,44,1,2345,201706016,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1867.3663903407812,0.0,350.0,0.0,0.0,29296.0,5,5,1,80.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2472.274517558753,0.1391479215431746,0.08438949063212564,19530.666666666668,5,3,5,5_1,5_0,5_1_0 +6017,1,21.0,3,177.0,9,111,4,0,84,1.0,0.0,0.0,471.07541779394666,0.0,0.0,10129.7,0,30,2,2346,201706017,,,,259.0,0.0,0.0,1.0,0.0,1.0,1.0,2788.867927489033,0.0,350.0,0.0,0.0,2126.0,0,3,3,21.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,471.07541779394666,0.0465043799711686,0.22157827741954217,2126.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +6018,1,45.0,3,186.0,1,400,6,0,67,7.0,793.228004569441,0.0,956.9560630042746,233.5504963497054,0.0,15719.022568804228,0,71,1,2348,201706018,,,218.0,,1.0,2.0,4.0,1.0,3.0,2.0,2631.5866802271094,0.0,711.0,0.0,0.0,47619.0,0,1,3,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1983.734563923421,0.12619961293651397,0.041658467500859345,23809.5,6,3,6,6_1,6_0,6_1_0 +6019,2,64.0,2,0.0,99,300,2,0,75,7.0,1691.1621057420484,0.0,874.8543473316153,0.0,0.0,30050.116658454026,0,41,1,2349,201706019,,,236.0,,0.0,0.0,5.0,0.0,1.0,1.0,2772.2805282127033,0.0,650.0,0.0,0.0,26382.0,0,5,3,84.0,0,1.0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2566.016453073664,0.08539123099716034,0.0972639092211987,26382.0,7,4,7,7_1,7_1,7_0_0 +6020,2,59.0,3,0.0,7,111,2,52,47,7.0,0.0,0.0,328.4717579785689,0.0,612.1000824012061,19207.1,31,42,1,235,201706020,,,302.0,,2.0,1.0,4.0,0.0,2.0,1.5,2130.6599406987716,590.0,0.0,0.0,0.0,37980.0,1,1,3,70.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,940.571840379775,0.048970007985576956,0.0247649247072084,25320.0,7,4,7,7_1,7_2,7_0_0 +6021,2,64.0,2,0.0,5,111,4,77,78,8.0,0.0,0.0,88.83136449828709,0.0,0.0,27224.279999999995,60,42,1,2350,201706021,,,320.0,,0.0,3.0,6.0,0.0,2.0,1.5,1836.0789459817008,0.0,66.0,0.0,0.0,44326.0,5,5,1,144.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,88.83136449828709,0.0032629463294635195,0.0020040464850942354,29550.666666666668,8,4,8,8_1,8_2,8_0_0 +6022,2,25.0,2,0.0,9,111,4,46,85,7.0,0.0,0.0,982.5287285416603,0.0,0.0,41588.85,20,30,2,2351,201706022,,,,,1.0,0.0,3.0,0.0,2.0,1.5,3807.3933526374703,0.0,730.0,0.0,0.0,38188.0,1,4,3,70.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,982.5287285416603,0.02362481118236403,0.025728729667478273,25458.666666666668,7,4,7,7_0,7_3,7_0_0 +6023,2,42.0,3,0.0,1,120,2,22,55,5.0,1667.365265604965,104.094473967258,625.8573407833863,0.0,0.0,58429.74,60,31,1,2352,201706023,,,,,2.0,0.0,7.0,3.0,5.0,2.4,2413.125075961754,0.0,465.0,0.0,0.0,47379.0,1,1,3,160.0,0,0.0,4,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2397.3170803556095,0.04102905609978086,0.05059872686961754,19741.25,5,3,5,5_1,5_0,5_1_0 +6024,2,57.0,3,0.0,1,111,2,78,22,3.0,0.0,0.0,1423.0087291844018,0.0,3830.0367487947115,58565.71418234438,50,71,1,2353,201706024,,,350.0,,1.0,1.0,5.0,0.0,2.0,1.5,2447.491158098334,621.9600197495854,800.0,1800.0,0.0,24014.0,5,1,1,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,5253.0454779791135,0.08969489318654518,0.2187492911626182,16009.333333333334,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +6025,2,70.0,2,0.0,5,111,2,78,75,9.0,0.0,0.0,2153.487624200899,0.0,0.0,28169.440000000002,44,41,1,2354,201706025,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1990.374015941419,0.0,1600.0,0.0,0.0,46361.0,5,5,1,95.0,4,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2153.487624200899,0.07644765477059177,0.046450413584713426,30907.333333333332,8,4,8,8_1,8_1,8_0_0 +6026,2,66.0,2,0.0,6,112,4,0,75,8.0,0.0,222.0682111301504,2422.6735772260117,17.69321942043223,0.0,69445.4,0,33,1,2356,201706026,,,578.0,,0.0,1.0,5.0,1.0,2.0,1.5,2031.2664529812766,0.0,1800.0,0.0,0.0,48514.0,0,5,1,150.0,8,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2662.4350077765944,0.03833853657371971,0.05487972560037503,32342.666666666668,9,5,9,9_1,9_1,9_0_0 +6027,0,49.0,4,0.0,2,111,4,0,85,3.0,0.0,0.0,1615.1157181506744,0.0,0.0,21052.179999999997,0,31,2,2357,201706027,,,150.0,,0.0,0.0,3.0,1.0,3.0,1.8,1448.2367232873237,0.0,1200.0,0.0,0.0,25130.0,0,4,5,80.0,8,7.0,5,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1615.1157181506744,0.07671964224848328,0.06427042252887681,13961.111111111111,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +6028,2,84.0,3,0.0,8,400,6,85,74,4.0,634.5824036555529,0.0,663.5433742069021,424.6372660903735,0.0,19243.839999999997,44,30,1,2358,201706028,,,370.0,,0.0,3.0,7.0,0.0,2.0,1.5,1783.9016725123292,0.0,493.0,0.0,0.0,26894.0,7,5,1,120.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1722.7630439528284,0.08952283140749605,0.06405752375819247,17929.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6029,2,67.0,3,0.0,5,211,4,0,75,6.0,0.0,0.0,1425.3396212679702,143.31507730550106,0.0,21503.387849749775,0,50,1,2359,201706029,,,500.0,,0.0,3.0,4.0,0.0,1.0,1.0,1815.4885102374292,0.0,1059.0,0.0,0.0,23266.0,0,5,1,92.0,3,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1568.6546985734713,0.07294918872942735,0.06742262093069162,23266.0,6,3,6,6_1,6_1,6_0_0 +6030,2,65.0,3,0.0,9,111,2,75,74,5.0,0.0,27.7585263912688,1668.9529087556969,176.9321942043223,0.0,74406.76031599412,71,71,1,236,201706030,,,160.0,,0.0,2.0,5.0,0.0,2.0,1.5,2076.7300452433155,0.0,1240.0,0.0,0.0,47539.0,5,5,1,120.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1873.643629351288,0.025181094048366173,0.039412769081202545,31692.666666666668,8,4,8,8_1,8_3,8_0_0 +6031,1,70.0,5,40.0,1,111,6,0,77,3.0,0.0,0.0,1211.3367886130059,0.0,0.0,9870.927849749774,0,41,2,2360,201706031,,,,237.0,0.0,1.0,2.0,0.0,1.0,1.0,3932.023392818484,0.0,900.0,0.0,0.0,13691.0,0,5,3,25.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1211.3367886130059,0.12271762159052889,0.08847686718377079,13691.0,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +6032,1,45.0,4,238.0,99,111,1,0,43,5.0,0.0,0.0,549.1393441712293,0.0,0.0,71081.66,0,33,2,2362,201706032,,,,402.0,1.0,0.0,4.0,3.0,4.0,2.3,773.4507043204417,0.0,408.0,0.0,0.0,42138.0,0,1,3,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,549.1393441712293,0.00772547157974686,0.013031927100745865,18320.869565217392,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +6033,2,41.0,3,0.0,99,111,1,62,52,3.0,0.0,0.0,484.5347154452023,0.0,0.0,28042.58,71,71,2,2363,201706033,,,260.0,332.0,2.0,0.0,3.0,2.0,4.0,2.3,865.1933646358419,0.0,360.0,0.0,0.0,36205.0,4,1,3,69.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,484.5347154452023,0.017278535550052893,0.01338308839787881,15741.304347826088,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +6034,1,34.0,4,491.0,99,111,2,63,53,4.0,0.0,0.0,1818.3511126846342,49.54101437721024,0.0,16069.66,71,43,2,2364,201706034,,,,,2.0,1.0,2.0,4.0,6.0,2.7,3159.285033894001,0.0,1351.0,0.0,0.0,44633.0,1,1,3,43.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1867.8921270618446,0.11623719027420895,0.04185002413151356,16530.74074074074,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +6035,2,69.0,1,0.0,9,400,4,0,74,5.0,0.0,0.0,847.935752029104,42.46372660903735,0.0,18481.04,0,31,1,2368,201706035,,,250.0,,0.0,1.0,6.0,0.0,1.0,1.0,1555.7926038681028,0.0,630.0,0.0,0.0,19418.0,0,5,1,145.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,890.3994786381414,0.048179078592879045,0.04585433508281705,19418.0,5,3,5,5_1,5_1,5_0_0 +6036,2,71.0,3,0.0,1,111,2,77,31,6.0,0.0,0.0,1604.5149252243752,0.0,3767.2591904293554,47096.37659354345,60,31,1,2369,201706036,,,160.0,,1.0,2.0,4.0,0.0,2.0,1.5,2530.8886282075205,776.3345027021901,871.0,1674.0,0.0,34173.0,5,5,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5371.77411565373,0.11405918043364209,0.15719351873273432,22782.0,6,3,6,6_1,6_4,6_1_0 +6037,1,29.0,3,256.0,2,221,5,0,63,2.0,396.6140022847205,0.0,942.1508355878933,99.08202875442048,0.0,15427.7,0,42,1,2370,201706037,,,300.0,244.0,1.0,0.0,5.0,0.0,1.0,1.0,3242.5792427243255,0.0,700.0,0.0,0.0,12892.0,0,1,3,100.0,1,2.0,1,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1437.8468666270344,0.09319904241248107,0.11153016340575818,12892.0,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +6038,2,33.0,3,0.0,9,111,2,0,46,7.0,0.0,0.0,471.07541779394666,0.0,955.4338487033403,22779.879999999997,0,0,2,2371,201706038,,,,680.0,1.0,0.0,3.0,0.0,1.0,1.0,3002.0912114053995,0.0,350.0,540.0,0.0,26670.0,0,1,3,69.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1426.509266497287,0.06262145658788752,0.05348741156720236,26670.0,7,4,7,7_0,7_3,7_0_0 +6039,2,57.0,2,0.0,7,112,2,86,48,9.0,1292.961647448189,0.0,524.9126083989692,0.0,0.0,46754.35344410586,60,50,1,2372,201706039,,,88.0,,1.0,4.0,4.0,0.0,2.0,1.5,1446.9988581159323,0.0,390.0,0.0,0.0,49360.0,5,1,1,150.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1817.874255847158,0.038881390115262746,0.03682889497259234,32906.666666666664,9,5,9,9_1,9_0,9_0_0 +6040,2,51.0,2,0.0,7,111,2,42,37,10.0,0.0,0.0,1399.7669557305844,0.0,3508.565411071711,81471.89169350262,30,30,1,2373,201706040,,,692.0,,2.0,0.0,7.0,3.0,5.0,2.6,1584.0367545012507,0.0,1040.0,1983.0,0.0,146310.0,1,1,2,250.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4908.332366802295,0.060245714991710865,0.03354748388218368,56273.07692307692,10,5,10,10_1,10_3,10_0_0 +6041,2,75.0,3,0.0,5,111,1,78,75,3.0,0.0,0.0,222.69271727360606,0.0,414.9831067126821,16163.200000000003,50,70,2,2374,201706041,,,134.0,311.0,0.0,2.0,3.0,0.0,2.0,1.5,2824.722039778025,400.0,0.0,0.0,0.0,22016.0,5,5,3,67.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,637.6758239862882,0.03945232528127401,0.02896419985402835,14677.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +6042,1,37.0,4,540.0,3,111,1,34,85,1.0,0.0,0.0,228.80806007134552,0.0,0.0,21317.260000000002,10,41,2,2375,201706042,,,,,1.0,0.0,3.0,4.0,6.0,3.1,2129.3665472372477,0.0,170.0,0.0,0.0,26310.0,4,6,3,60.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,228.80806007134552,0.010733464810737661,0.008696619539009713,8487.096774193547,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6043,2,82.0,3,0.0,3,111,1,72,72,2.0,0.0,0.0,290.0572642488719,0.0,540.5154964932684,26911.5,60,70,2,2377,201706043,,,,,0.0,4.0,4.0,0.0,2.0,1.5,3795.217063881586,521.0,0.0,0.0,0.0,17698.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,830.5727607421403,0.030863116539105596,0.04693031759193922,11798.666666666666,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +6044,2,74.0,1,0.0,6,112,2,75,75,9.0,0.0,416.377895869032,634.6742442297772,0.0,1182.701854131144,53926.95087530163,33,30,1,2379,201706044,,,560.0,,0.0,2.0,4.0,0.0,2.0,1.5,1432.9043616448062,1140.0,0.0,0.0,0.0,57069.0,5,5,1,99.0,9,2.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2233.753994229953,0.04142184859283422,0.039141285009899475,38046.0,9,5,9,9_1,9_1,9_0_0 +6045,2,61.0,3,0.0,2,111,2,77,77,8.0,0.0,0.0,549.1393441712293,0.0,1889.635834102162,30338.096722052927,70,50,1,238,201706045,,,260.0,,0.0,1.0,3.0,0.0,2.0,1.5,2367.988830647579,0.0,408.0,1068.0,0.0,42850.0,5,5,2,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2438.7751782733912,0.08038655821479507,0.05691423986635685,28566.666666666668,8,4,8,8_1,8_4,8_0_1 +6046,2,68.0,2,0.0,8,111,2,72,72,9.0,0.0,0.0,3539.795282280228,0.0,0.0,60198.880000000005,31,30,1,2380,201706046,,,1300.0,,0.0,1.0,5.0,0.0,2.0,1.5,1649.10870191328,0.0,2630.0,0.0,0.0,48920.0,5,5,1,120.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3539.795282280228,0.05880168006913464,0.07235885695585094,32613.333333333332,9,5,9,9_1,9_2,9_0_0 +6047,2,34.0,2,0.0,3,111,1,37,12,9.0,0.0,0.0,1175.81754720464,0.0,2191.1108034429617,60718.98031599412,20,50,8,2381,201706047,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2896.871851242978,2112.0,0.0,0.0,0.0,70636.0,1,1,2,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3366.9283506476017,0.05545100285158629,0.04766589771005722,39242.22222222222,9,5,9,9_0,9_3,9_0_1 +6048,2,53.0,1,0.0,9,112,2,56,38,5.0,0.0,0.0,950.2264141786468,0.0,884.6609710216114,50763.4,60,12,1,2382,201706048,,,330.0,,2.0,1.0,5.0,3.0,5.0,2.4,987.4919473768102,0.0,706.0,500.0,0.0,47873.0,1,1,2,115.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1834.8873852002582,0.036145872522334165,0.03832823063522775,19947.083333333336,5,3,5,5_1,5_1,5_0_0 +6049,2,52.0,1,0.0,2,111,2,63,62,8.0,0.0,0.0,523.5666786338436,0.0,828.0426688762283,21623.011693502605,71,71,2,2383,201706049,,,533.0,,3.0,0.0,5.0,1.0,3.0,2.0,3068.0944627789336,0.0,389.0,468.0,0.0,55601.0,1,1,2,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1351.609347510072,0.06250791363703562,0.024309083424939697,27800.5,8,4,8,8_0,8_3,8_0_1 +6050,2,49.0,3,0.0,4,120,4,56,48,7.0,0.0,166.55115834761278,2938.164677269102,247.7050718860512,0.0,57729.617038047036,60,50,1,2385,201706050,,,458.0,,3.0,1.0,6.0,2.0,4.0,2.5,2052.3962050443624,0.0,2183.0,0.0,0.0,57827.0,4,1,2,146.0,0,3.0,4,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3352.4209075027657,0.0580710747707426,0.05797328077719345,23130.8,6,3,6,6_1,6_1,6_0_1 +6051,1,42.0,5,270.0,6,111,4,0,63,1.0,0.0,0.0,710.6509159862967,0.0,88.46609710216114,5446.756974448147,0,50,2,2386,201706051,,,,130.0,1.0,2.0,2.0,0.0,1.0,1.0,2881.682087346221,0.0,528.0,50.0,0.0,9510.0,0,4,3,40.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,799.1170130884578,0.14671427729147443,0.08402912861077369,9510.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6052,2,51.0,2,0.0,3,111,2,85,34,9.0,0.0,0.0,1749.7086946632305,0.0,0.0,39564.04,71,10,1,2387,201706052,,,1200.0,,1.0,0.0,5.0,2.0,4.0,2.1,2625.501997358678,0.0,1300.0,0.0,0.0,71046.0,6,1,2,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1749.7086946632305,0.04422472261839869,0.024627828374056675,33831.42857142857,9,5,9,9_1,9_4,9_0_1 +6053,2,86.0,3,0.0,1,300,2,0,77,1.0,0.0,0.0,257.07258513898233,3538.6438840864457,0.0,18456.8,0,70,1,2388,201706053,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2842.095070844801,0.0,191.0,0.0,0.0,9801.0,0,5,1,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3795.716469225428,0.20565409330032444,0.3872784888506712,9801.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6054,2,47.0,2,0.0,1,111,1,38,23,10.0,0.0,0.0,1019.3705746947521,0.0,1642.7959485654571,106098.28253146738,30,20,2,2389,201706054,,,,2499.0,2.0,0.0,5.0,2.0,4.0,2.1,4095.6207644316705,573.8617782222841,520.0,592.0,0.0,189511.0,1,1,3,109.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2662.166523260209,0.025091513827951408,0.014047556728950875,90243.33333333333,10,5,10,10_0,10_4,10_1_0 +6055,2,53.0,3,0.0,1,300,2,13,56,3.0,0.0,1040.94473967258,1615.1157181506744,221.16524275540286,0.0,36082.64,50,60,1,239,201706055,,,,,3.0,4.0,8.0,1.0,3.0,2.0,1891.9308483374618,0.0,1200.0,0.0,0.0,31070.0,1,1,1,200.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2877.225700578657,0.07973988878249089,0.09260462505885603,15535.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6056,2,85.0,3,0.0,1,112,2,78,75,7.0,2273.3914610960182,0.0,888.3136449828709,537.8738703811398,0.0,27671.479999999996,70,70,1,2390,201706056,,,,,0.0,4.0,5.0,0.0,2.0,1.5,1738.8763431261239,0.0,660.0,0.0,0.0,36147.0,5,5,1,101.0,9,1.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3699.5789764600286,0.13369646207792388,0.10234816102193899,24098.0,7,4,7,7_1,7_1,7_1_0 +6057,1,69.0,4,206.0,5,111,1,0,72,2.0,0.0,0.0,282.645250676368,0.0,0.0,10701.04,0,50,2,2391,201706057,,,,,0.0,1.0,1.0,0.0,1.0,1.0,2524.3996919475303,0.0,210.0,0.0,0.0,12725.0,0,5,3,40.0,6,4.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,282.645250676368,0.02641287675556469,0.02221180751877155,12725.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6058,2,41.0,2,0.0,8,112,4,22,63,3.0,0.0,0.0,2799.533911461169,0.0,0.0,26585.320000000003,71,50,1,2392,201706058,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.5,2048.015701868584,0.0,2080.0,0.0,0.0,37722.0,1,1,2,140.0,8,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2799.533911461169,0.10530375077152235,0.0742148855167056,15088.8,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6059,2,40.0,2,0.0,1,111,2,0,46,7.0,0.0,0.0,395.2795731606508,0.0,736.5950144150107,23535.84,0,30,1,2395,201706059,,,280.0,,1.0,0.0,5.0,0.0,1.0,1.0,536.4154984458414,710.0,0.0,0.0,0.0,27187.0,0,1,2,91.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1131.8745875756615,0.04809153136559653,0.041632934401576546,27187.0,7,4,7,7_1,7_3,7_1_0 +6060,1,45.0,4,403.0,4,111,1,0,85,1.0,0.0,0.0,807.5578590753372,0.0,0.0,9769.190875301627,0,71,2,2396,201706060,,,,,0.0,1.0,4.0,2.0,3.0,1.8,1096.8360412649733,0.0,600.0,0.0,0.0,15106.0,0,6,3,80.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,807.5578590753372,0.08266374046565075,0.0534594107689221,8392.222222222223,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6061,2,49.0,3,0.0,1,111,1,55,22,7.0,0.0,0.0,1258.4443303924004,0.0,0.0,30890.740631988232,43,31,2,2397,201706061,,,,600.0,2.0,4.0,4.0,0.0,2.0,1.5,3598.8457283394796,0.0,935.0,0.0,0.0,40670.0,1,1,3,105.0,5,4.0,3,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1258.4443303924004,0.04073856128555383,0.030942816090297528,27113.333333333332,7,4,7,7_0,7_2,7_1_0 +6062,2,58.0,3,0.0,8,112,2,0,52,5.0,0.0,0.0,645.8088800934576,0.0,1203.4510094667783,43398.920000000006,0,50,1,2398,201706062,,,464.0,,2.0,1.0,5.0,2.0,3.0,2.0,1674.6322148312333,1160.0,0.0,0.0,0.0,39380.0,0,1,1,108.0,9,1.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1849.259889560236,0.04261073523396978,0.046959367434236565,19690.0,5,3,5,5_1,5_1,5_0_0 +6063,2,70.0,3,0.0,4,120,5,75,75,5.0,1269.1648073111057,555.170527825376,1453.6041463356069,0.0,0.0,60217.64000000001,31,60,1,2399,201706063,,,384.0,,0.0,2.0,4.0,0.0,2.0,1.5,2253.4373565090054,0.0,1080.0,0.0,0.0,30472.0,5,5,1,101.0,0,0.0,3,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3277.9394814720886,0.054434871268154786,0.10757218041060937,20314.666666666668,5,3,5,5_1,5_0,5_0_1 +6064,2,57.0,3,0.0,2,300,6,85,47,4.0,3045.995537546654,0.0,699.8834778652922,191.08676974066807,0.0,33014.72,50,50,1,24,201706064,,,,,1.0,2.0,3.0,0.0,2.0,1.5,1991.7174274932624,0.0,520.0,0.0,0.0,28450.0,6,1,1,120.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3936.965785152614,0.11924880129689465,0.13838192566441526,18966.666666666668,5,3,5,5_1,5_0,5_0_1 +6065,2,77.0,2,0.0,9,111,2,77,75,8.0,0.0,0.0,386.28184259103625,0.0,1418.9961975186648,28365.92,70,60,2,240,201706065,,,244.0,590.0,0.0,1.0,4.0,0.0,2.0,1.5,2448.5727897399493,0.0,287.0,802.0,0.0,40578.0,5,5,3,90.0,6,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1805.2780401097011,0.06364249917188307,0.04448908374266108,27052.0,7,4,7,7_0,7_2,7_0_0 +6066,2,71.0,4,0.0,1,112,2,86,78,3.0,951.8736054833294,0.0,107.67438121004496,0.0,0.0,9118.930875301627,71,71,1,2400,201706066,,,100.0,,0.0,3.0,4.0,0.0,2.0,1.5,1660.2957410872637,0.0,80.0,0.0,0.0,21910.0,5,5,1,40.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1059.5479866933742,0.11619212835170523,0.04835910482397874,14606.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6067,1,90.0,3,250.0,99,111,2,0,78,4.0,0.0,0.0,1130.581002705472,0.0,849.274532180747,23053.58,0,71,2,2401,201706067,,,720.0,150.0,0.0,1.0,5.0,1.0,3.0,2.0,1310.4419420436861,0.0,840.0,480.0,0.0,34059.0,0,5,3,73.0,8,7.0,5,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1979.855534886219,0.08588061094572812,0.0581301721978396,17029.5,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +6068,2,66.0,2,0.0,5,111,5,75,75,8.0,0.0,610.6875806079136,1473.7930928124904,0.0,0.0,47848.63,33,33,1,2402,201706068,,,392.0,,1.0,2.0,4.0,1.0,3.0,2.0,2983.3016165779777,0.0,1095.0,0.0,0.0,61150.0,5,5,1,100.0,4,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2084.480673420404,0.043564061780251684,0.03408799138872288,30575.0,8,4,8,8_1,8_1,8_0_0 +6069,1,59.0,4,256.0,1,400,2,0,56,1.0,1085.1359102509955,0.0,794.0985614240816,0.0,0.0,7305.9400000000005,0,70,1,2403,201706069,,,190.0,,1.0,2.0,4.0,0.0,1.0,1.0,2002.6700839838288,0.0,590.0,0.0,0.0,9022.0,0,4,3,100.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1879.2344716750772,0.2572200800547331,0.20829466544835704,9022.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +6070,1,76.0,4,141.0,7,112,2,0,77,1.0,0.0,0.0,1170.9588956592388,0.0,0.0,12456.46,0,70,1,2404,201706070,,,,271.0,0.0,1.0,3.0,0.0,2.0,1.5,3788.5007890366824,0.0,870.0,0.0,0.0,14642.0,0,5,3,75.0,9,3.0,5,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1170.9588956592388,0.09400414689721148,0.07997260590487903,9761.333333333334,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +6071,2,73.0,3,0.0,4,111,2,77,75,4.0,0.0,0.0,650.0840765556464,0.0,3131.6998374165046,40764.95202733073,71,50,1,2405,201706071,,,510.0,,0.0,2.0,5.0,0.0,2.0,1.5,1275.563308317706,0.0,483.0,1770.0,0.0,26040.0,6,5,1,100.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3781.783913972151,0.09277047379907785,0.14522979700353883,17360.0,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +6072,2,56.0,3,0.0,9,400,2,0,67,2.0,0.0,0.0,1534.3599322431405,60.15694602946958,0.0,20820.18,0,50,1,2406,201706072,,,76.0,,1.0,1.0,4.0,0.0,1.0,1.0,1633.9950998615855,0.0,1140.0,0.0,0.0,13820.0,0,1,2,90.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1594.51687827261,0.07658516296557523,0.11537748757399494,13820.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6073,2,61.0,3,0.0,6,211,4,0,56,5.0,0.0,0.0,1808.9296043287552,47.77169243516702,0.0,22182.82,0,50,2,2407,201706073,,,216.0,543.0,1.0,3.0,3.0,0.0,1.0,1.0,2053.9358518476356,0.0,1344.0,0.0,0.0,19291.0,0,1,3,54.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1856.7012967639223,0.08369996676544832,0.09624702175957298,19291.0,5,3,5,5_0,5_2,5_0_0 +6074,2,34.0,3,0.0,9,400,2,0,64,5.0,0.0,555.170527825376,2433.441015347016,0.0,0.0,17686.8,0,50,1,2408,201706074,,,560.0,,1.0,2.0,6.0,0.0,1.0,1.0,2232.7132078807435,0.0,1808.0,0.0,0.0,20510.0,0,1,2,145.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2988.611543172392,0.16897412438498724,0.1457148485213258,20510.0,5,3,5,5_1,5_0,5_0_0 +6075,2,81.0,3,0.0,1,400,2,0,71,7.0,3172.912018277764,0.0,428.0056653099287,123.8525359430256,0.0,18939.68,0,70,1,2409,201706075,,,270.0,,0.0,1.0,5.0,0.0,1.0,1.0,2059.1014472278744,0.0,318.0,0.0,0.0,25040.0,0,5,1,80.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3724.7702195307184,0.19666489716461516,0.14875280429435775,25040.0,7,4,7,7_1,7_1,7_1_0 +6076,2,55.0,2,0.0,5,111,5,54,22,10.0,0.0,971.5484236944079,1647.4180325136879,0.0,0.0,39834.565447074674,42,50,1,2410,201706076,,,,,2.0,3.0,5.0,0.0,2.0,1.5,2475.7174595231622,0.0,1224.0,0.0,0.0,79245.0,1,1,1,135.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2618.9664562080957,0.06574607823167365,0.033048980455651404,52830.0,10,5,10,10_1,10_3,10_0_0 +6077,2,66.0,3,0.0,4,111,1,0,77,7.0,0.0,0.0,306.87198644862815,0.0,0.0,8243.430875301628,0,70,2,2411,201706077,,,180.0,318.0,0.0,4.0,3.0,0.0,1.0,1.0,2636.1813807625545,0.0,228.0,0.0,0.0,26120.0,0,5,3,51.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,306.87198644862815,0.03722624609712635,0.011748544657298169,26120.0,7,4,7,7_0,7_3,7_0_1 +6079,2,82.0,3,0.0,5,112,2,78,78,4.0,0.0,0.0,928.6286310309373,0.0,1730.4795549918845,15703.919999999998,71,50,1,2413,201706079,,,324.0,,0.0,3.0,5.0,0.0,2.0,1.5,2844.30570236101,1668.0,0.0,0.0,0.0,26097.0,5,5,1,104.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2659.108186022822,0.1693276701627888,0.10189325156235667,17398.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6080,1,28.0,3,284.0,1,120,6,52,64,4.0,111.05192063972176,0.0,1211.3367886130059,35.38643884086446,0.0,24229.56,50,60,1,2414,201706080,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2320.8900433925987,0.0,900.0,0.0,0.0,30586.0,1,1,3,60.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1357.7751480935922,0.05603796140307922,0.044392046952644745,16992.222222222223,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +6081,2,51.0,1,0.0,9,111,2,0,54,10.0,0.0,0.0,807.5578590753372,0.0,0.0,17283.6,0,41,2,2415,201706081,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4057.542473729737,0.0,600.0,0.0,0.0,52162.0,0,1,1,53.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.046723938246391795,0.01548172729334261,52162.0,10,5,10,10_0,10_4,10_0_0 +6082,2,56.0,3,0.0,1,112,2,78,52,6.0,0.0,277.585263912688,942.1508355878933,1769.3219420432229,0.0,24036.739999999998,50,50,1,2416,201706082,,,539.0,,1.0,1.0,3.0,0.0,2.0,1.5,1989.0357983665103,0.0,700.0,0.0,0.0,33551.0,5,1,1,90.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2989.0580415438044,0.12435372024425129,0.08908998365305965,22367.333333333332,6,3,6,6_1,6_0,6_1_0 +6083,1,30.0,3,284.0,9,120,6,85,63,2.0,0.0,0.0,2099.6504335958766,0.0,0.0,29415.603018669502,41,44,1,2417,201706083,,,600.0,,1.0,0.0,4.0,2.0,4.0,2.1,3344.5254910728772,0.0,1560.0,0.0,0.0,27998.0,6,1,2,105.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2099.6504335958766,0.07137879962084306,0.07499287211928983,13332.380952380952,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +6084,0,66.0,2,0.0,1,400,6,0,75,7.0,0.0,360.86084308649436,215.3487624200899,31.847794956778014,0.0,19479.2,0,33,1,2418,201706084,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2357.0067357918283,0.0,160.0,0.0,0.0,27590.0,0,5,5,200.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,608.0574004633622,0.031215727569066605,0.022039050397367244,27590.0,8,4,8,8_1,8_0,8_1_0 +6085,2,51.0,4,0.0,9,111,2,0,43,3.0,0.0,0.0,635.2788491392653,0.0,1473.8451777220048,29548.86,0,71,1,2419,201706085,,,545.0,,2.0,1.0,4.0,1.0,2.0,1.5,1707.6600074697355,0.0,472.0,833.0,0.0,22144.0,0,1,3,83.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2109.12402686127,0.0713775092122427,0.09524584658874956,14762.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +6086,2,81.0,2,0.0,5,211,4,77,74,9.0,0.0,0.0,3013.5367441161334,0.0,0.0,18988.739999999998,50,50,1,242,201706086,,,318.0,,0.0,2.0,4.0,0.0,2.0,1.5,1331.2419211087408,0.0,2239.0,0.0,0.0,56917.0,5,5,1,90.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3013.5367441161334,0.15870124843018196,0.05294616273022354,37944.666666666664,9,5,9,9_1,9_2,9_0_0 +6087,2,68.0,3,0.0,1,112,6,0,78,5.0,777.3634444780523,0.0,1643.380243218311,56.61830214538313,0.0,14090.08,0,70,1,2421,201706087,,,165.0,,0.0,3.0,5.0,0.0,1.0,1.0,4086.7149826920604,0.0,1221.0,0.0,0.0,19401.0,0,5,1,90.0,6,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2477.3619898417464,0.17582313158205962,0.1276924895542367,19401.0,5,3,5,5_1,5_0,5_1_0 +6088,2,33.0,3,0.0,1,112,5,43,63,5.0,0.0,138.792631956344,969.0694308904046,106.15931652259337,0.0,30112.372325490833,30,43,1,2422,201706088,,,580.0,,2.0,0.0,5.0,1.0,3.0,1.8,2561.67573186929,0.0,720.0,0.0,0.0,35990.0,1,1,3,110.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1214.021379369342,0.04031636452441325,0.03373218614529986,19994.444444444445,5,3,5,5_1,5_0,5_1_0 +6089,2,48.0,1,0.0,2,300,2,56,31,3.0,0.0,0.0,2961.045483276236,185.7788039145384,0.0,85535.17807155209,30,12,1,2424,201706089,,,800.0,,2.0,0.0,8.0,3.0,7.0,3.4,3133.543095823109,0.0,2200.0,0.0,0.0,47484.0,1,1,2,200.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3146.8242871907746,0.03678982563826998,0.06627125531106846,13965.882352941177,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +6090,2,31.0,2,0.0,1,111,2,46,47,8.0,0.0,0.0,484.5347154452023,0.0,1698.549064361494,53791.12238259149,44,31,1,2425,201706090,,,144.0,,2.0,0.0,5.0,1.0,3.0,1.8,2130.1408669152997,0.0,360.0,960.0,0.0,47192.0,1,1,2,82.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2183.0837798066964,0.04058446232594714,0.04625961560871962,26217.777777777777,7,4,7,7_1,7_3,7_1_0 +6091,2,33.0,2,0.0,1,111,2,0,54,4.0,0.0,416.377895869032,757.7584577656913,0.0,1972.7939653781934,42430.95087530163,0,31,1,2426,201706091,,,287.0,,1.0,0.0,6.0,2.0,3.0,1.6,294.29356957855265,0.0,563.0,1115.0,0.0,26489.0,0,1,1,110.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3146.9303190129167,0.07416591554267274,0.1188014012991399,16555.625,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +6092,2,61.0,1,0.0,99,300,2,77,63,10.0,1830.77023454627,0.0,952.9182737088979,0.0,0.0,45904.479999999996,60,50,1,2427,201706092,,,,,1.0,1.0,4.0,0.0,2.0,1.5,1834.2319225797557,0.0,708.0,0.0,0.0,60112.0,5,1,1,120.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2783.688508255168,0.06064088969649952,0.046308366187369714,40074.666666666664,9,5,9,9_1,9_0,9_0_0 +6093,2,73.0,3,0.0,5,112,2,0,78,5.0,0.0,0.0,746.0206028665804,0.0,1390.1934074874853,28370.63087530163,0,50,1,2429,201706093,,,,,0.0,0.0,4.0,1.0,2.0,1.5,2321.306286136014,1340.0,0.0,0.0,0.0,29665.0,0,5,1,140.0,8,0.0,2,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2136.2140103540655,0.07529666928252098,0.07201125940853077,19776.666666666668,5,3,5,5_1,5_0,5_0_0 +6094,2,58.0,2,0.0,7,112,2,54,55,9.0,0.0,0.0,465.6916987334444,0.0,1341.146032068763,29124.34,50,44,1,243,201706094,,,469.0,,2.0,3.0,6.0,0.0,2.0,1.5,1563.0120503487074,0.0,346.0,758.0,0.0,51383.0,1,1,1,110.0,9,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1806.8377308022073,0.062038752837049946,0.03516411518989174,34255.333333333336,9,5,9,9_1,9_1,9_0_0 +6095,2,75.0,3,0.0,4,112,2,63,78,4.0,0.0,0.0,578.7497990039916,0.0,2517.745123527506,27157.04,70,71,1,2430,201706095,,,328.0,,1.0,3.0,4.0,0.0,2.0,1.5,1972.6685560816923,0.0,430.0,1423.0,0.0,24575.0,5,5,1,73.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3096.4949225314977,0.11402181248514189,0.12600182797686663,16383.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +6096,2,85.0,3,0.0,3,111,2,0,78,7.0,2270.2185490777406,0.0,296.1045483276236,247.7050718860512,0.0,19660.68,0,50,1,2431,201706096,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2286.805070044833,0.0,220.0,0.0,0.0,24510.0,0,5,1,74.0,5,4.0,1,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2814.028169291415,0.14312974776515436,0.11481143081564321,24510.0,7,4,7,7_1,7_2,7_0_1 +6098,1,23.0,1,300.0,6,111,1,0,47,9.0,0.0,0.0,292.0667590322469,0.0,267.16761324852666,27748.14784974977,0,30,2,2434,201706098,,,,560.0,1.0,0.0,1.0,0.0,1.0,1.0,5673.0197444106425,0.0,217.0,151.0,0.0,35477.0,0,1,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,559.2343722807736,0.02015393514943437,0.015763293747520186,35477.0,9,5,9,9_0,9_4,9_0_0 +6099,2,45.0,3,0.0,8,112,5,0,42,4.0,0.0,416.377895869032,936.7671165273911,2298.3492027141465,0.0,40357.31672205293,0,30,1,2435,201706099,,,,,1.0,0.0,4.0,2.0,3.0,1.8,810.5532198813985,0.0,696.0,0.0,0.0,29551.0,0,1,2,110.0,9,3.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3651.4942151105697,0.0904791128770769,0.12356584261482081,16417.222222222223,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6100,1,41.0,3,376.0,8,111,1,0,63,5.0,0.0,0.0,713.3427755165478,0.0,583.8762408742635,13285.370875301627,0,71,2,2437,201706100,,,570.0,,1.0,1.0,3.0,1.0,2.0,1.3,1263.970989990441,0.0,530.0,330.0,0.0,23842.0,0,1,3,63.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1297.2190163908112,0.09764266489559777,0.05440898483310172,18340.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +6101,0,20.0,2,0.0,6,112,1,0,53,1.0,0.0,0.0,0.0,0.0,0.0,17731.04,0,41,2,2438,201706101,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3794.1619585155677,0.0,0.0,0.0,0.0,9534.0,0,1,5,75.0,9,3.0,1,7,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,9534.0,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +6102,2,82.0,3,0.0,5,111,4,86,78,6.0,0.0,48.5774211847204,1527.6302834175128,256.5516815962673,0.0,22617.284177580947,71,70,1,2440,201706102,,,250.0,,0.0,3.0,4.0,0.0,2.0,1.5,2215.7935674198065,0.0,1135.0,0.0,0.0,30869.0,6,5,1,110.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1832.7593861985006,0.0810335746683148,0.059372165803832345,20579.333333333332,5,3,5,5_1,5_3,5_0_0 +6103,1,46.0,4,242.0,2,111,2,0,35,1.0,0.0,277.585263912688,1749.7086946632305,132.69914565324171,0.0,11831.91,0,71,1,2441,201706103,,,900.0,,1.0,0.0,5.0,1.0,2.0,1.3,728.8563451769818,0.0,1300.0,0.0,0.0,12644.0,0,1,3,120.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2159.9931042291605,0.1825565867412075,0.17083146980616581,9726.153846153846,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +6104,2,26.0,3,0.0,1,111,1,0,37,7.0,0.0,0.0,403.7789295376686,0.0,0.0,32331.440000000002,0,0,2,2442,201706104,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4639.316328886995,0.0,300.0,0.0,0.0,27430.0,0,1,2,34.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,403.7789295376686,0.012488739429412008,0.014720340121679497,27430.0,8,4,8,8_0,8_4,8_1_0 +6105,2,56.0,2,0.0,1,112,6,85,43,4.0,0.0,0.0,2113.1097312471325,0.0,2609.749864513754,36322.68031599412,50,33,1,2444,201706105,,,350.0,670.0,1.0,4.0,4.0,1.0,3.0,2.0,1910.3075200647902,0.0,1570.0,1475.0,0.0,34660.0,8,1,3,150.0,7,0.0,4,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4722.859595760887,0.13002508500677054,0.1362625388274924,17330.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6106,2,49.0,4,0.0,8,111,5,62,64,6.0,0.0,624.566843803548,1830.4644805707642,268.9369351905699,0.0,18012.239999999998,50,50,1,2446,201706106,,,300.0,,2.0,2.0,4.0,1.0,3.0,1.8,1734.7933967051572,0.0,1360.0,0.0,0.0,39860.0,1,1,2,93.0,4,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2723.968259564882,0.15122873443641002,0.06833839085712197,22144.444444444445,6,3,6,6_1,6_1,6_0_0 +6107,1,36.0,9,435.0,3,111,1,85,56,2.0,0.0,0.0,1211.3367886130059,0.0,1079.286384646366,18906.680000000004,71,71,2,2447,201706107,,,1020.0,,1.0,0.0,4.0,5.0,7.0,3.2,2032.3951214136123,0.0,900.0,610.0,0.0,33710.0,6,4,3,55.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2290.623173259372,0.12115417266592397,0.06795085058615757,10534.375,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6108,2,61.0,3,0.0,2,111,1,52,86,6.0,0.0,0.0,563.9445715876104,0.0,410.4826905540277,23824.86,50,70,2,2448,201706108,,,244.0,364.0,1.0,3.0,4.0,0.0,2.0,1.5,2771.482224557062,0.0,419.0,232.0,0.0,32740.0,1,4,3,115.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,974.4272621416382,0.04089960075910785,0.029762592001882655,21826.666666666668,6,3,6,6_0,6_2,6_0_1 +6109,2,80.0,3,0.0,4,112,2,86,75,6.0,0.0,0.0,1965.0574570833205,0.0,5307.965826129669,18386.08,71,71,1,2449,201706109,,,304.0,,1.0,2.0,6.0,1.0,3.0,2.0,1765.5392893064038,0.0,1460.0,3000.0,0.0,47103.0,6,5,1,120.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,7273.02328321299,0.3955722635392095,0.1544067953891045,23551.5,6,3,6,6_1,6_1,6_0_1 +6110,2,76.0,1,0.0,4,111,4,75,74,9.0,0.0,0.0,2406.5224200445045,0.0,0.0,40661.96000000001,60,31,1,2451,201706110,,,397.0,,0.0,2.0,4.0,0.0,2.0,1.5,2730.286807505118,0.0,1788.0,0.0,0.0,53923.0,5,5,1,150.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2406.5224200445045,0.05918363059834066,0.04462886745998006,35948.666666666664,9,5,9,9_1,9_3,9_0_1 +6111,1,21.0,3,224.0,5,111,1,0,84,1.0,0.0,0.0,484.5347154452023,0.0,0.0,11801.82,0,30,2,2452,201706111,,,,114.0,0.0,0.0,1.0,0.0,1.0,1.0,5818.81331962967,0.0,360.0,0.0,0.0,5700.0,0,3,3,10.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,484.5347154452023,0.04105593166521793,0.08500609042898287,5700.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6112,2,44.0,3,0.0,9,111,4,0,33,8.0,0.0,0.0,2153.487624200899,106.15931652259337,0.0,61641.9116935026,0,20,1,2454,201706112,,,,,2.0,0.0,5.0,2.0,3.0,1.8,602.0386413989345,0.0,1600.0,0.0,0.0,52211.0,0,1,3,110.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2259.6469407234927,0.03665763891228688,0.04327913544508806,29006.11111111111,8,4,8,8_1,8_3,8_0_0 +6113,2,61.0,3,0.0,7,112,4,68,42,8.0,0.0,0.0,3512.876686977717,226.47320858153253,0.0,29775.19150728986,60,31,1,2457,201706113,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1772.0534488070218,0.0,2610.0,0.0,0.0,47674.0,1,5,1,104.0,9,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3739.3498955592495,0.12558609050906505,0.07843583285562884,31782.666666666668,8,4,8,8_1,8_1,8_0_0 +6114,2,29.0,2,0.0,10,112,4,55,63,6.0,0.0,0.0,1615.1157181506744,102.62067263850693,0.0,33456.53087530163,44,43,1,2458,201706114,,,360.0,,2.0,0.0,3.0,0.0,2.0,1.5,2960.84526154778,0.0,1200.0,0.0,0.0,32177.0,1,1,2,72.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1717.7363907891813,0.051342334242348284,0.05338398206138488,21451.333333333332,6,3,6,6_1,6_0,6_0_0 +6115,2,60.0,2,0.0,7,112,5,52,38,9.0,0.0,555.170527825376,874.8543473316153,143.31507730550106,0.0,30783.78,60,50,1,2459,201706115,,,350.0,,2.0,3.0,4.0,0.0,2.0,1.5,2199.517812289468,0.0,650.0,0.0,0.0,52315.0,1,1,1,100.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1573.3399524624922,0.051109381384043556,0.03007435635023401,34876.666666666664,9,5,9,9_1,9_0,9_0_0 +6116,2,38.0,3,0.0,9,111,2,0,54,6.0,0.0,0.0,1076.7438121004495,0.0,0.0,28600.36,0,30,2,2461,201706116,,,140.0,,1.0,0.0,2.0,0.0,1.0,1.0,2768.0386596049216,0.0,800.0,0.0,0.0,24423.0,0,1,2,56.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1076.7438121004495,0.037647911148686576,0.04408728706958398,24423.0,7,4,7,7_0,7_3,7_0_0 +6117,2,55.0,3,0.0,1,300,2,55,64,8.0,0.0,0.0,605.6683943065029,0.0,1309.298237111985,50261.02,60,60,1,2462,201706117,,,,,2.0,4.0,4.0,0.0,2.0,1.5,1312.1878859306757,0.0,450.0,740.0,0.0,44697.0,1,1,2,120.0,0,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1914.9666314184879,0.03810043312727215,0.042843292198995186,29798.0,8,4,8,8_1,8_1,8_1_0 +6118,2,83.0,4,0.0,1,111,5,0,78,4.0,0.0,485.77421184720396,104.98252167979383,169.8549064361494,0.0,21677.660315994115,0,71,1,2466,201706118,,,140.0,,0.0,1.0,3.0,1.0,2.0,1.5,1490.2814140569533,0.0,78.0,0.0,0.0,25407.0,0,5,1,50.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,760.6116399631471,0.03508734932071779,0.029937089776957023,16938.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +6119,2,65.0,3,0.0,3,112,6,78,13,4.0,3756.727829640873,0.0,1076.7438121004495,106.15931652259337,0.0,18489.511191295744,50,50,1,2467,201706119,,,278.0,,1.0,0.0,5.0,0.0,2.0,1.5,1612.3807023068343,0.0,800.0,0.0,0.0,26353.0,5,1,1,100.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4939.630958263916,0.26715854773864073,0.1874409349320349,17568.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +6120,2,53.0,1,0.0,6,111,2,43,38,10.0,0.0,0.0,1807.5836745636298,0.0,0.0,27547.113760099972,33,12,1,247,201706120,,,210.0,,2.0,0.0,5.0,1.0,3.0,1.8,1830.5125075262679,0.0,1343.0,0.0,0.0,124655.0,1,1,1,110.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1807.5836745636298,0.06561789704378343,0.014500691304509485,69252.77777777778,10,5,10,10_1,10_4,10_0_0 +6121,2,70.0,3,0.0,6,111,6,72,72,6.0,0.0,0.0,3903.19631886413,88.46609710216114,0.0,32639.280000000002,44,44,1,2475,201706121,,,905.0,,0.0,0.0,4.0,0.0,2.0,1.5,1400.645870558518,0.0,2900.0,0.0,0.0,39596.0,5,5,1,100.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3991.662415966291,0.1222962766325204,0.10080973876063974,26397.333333333332,7,4,7,7_1,7_3,7_0_0 +6122,2,67.0,2,0.0,3,111,2,0,75,9.0,1028.0234939219956,0.0,592.2090966552472,0.0,0.0,39889.88,0,33,1,2476,201706122,,,204.0,,0.0,0.0,5.0,0.0,2.0,1.5,2780.49634991554,0.0,440.0,0.0,0.0,46349.0,0,5,1,90.0,8,6.0,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1620.2325905772427,0.04061763511389964,0.03495722864737627,30899.333333333332,8,4,8,8_1,8_2,8_0_1 +6123,2,23.0,2,0.0,1,400,6,53,62,6.0,0.0,0.0,2422.6735772260117,0.0,0.0,31359.194027842288,60,43,1,2477,201706123,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1898.5670293728895,0.0,1800.0,0.0,0.0,39767.0,4,1,3,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2422.6735772260117,0.07725560724153302,0.0609217083819753,22092.777777777777,6,3,6,6_1,6_0,6_1_0 +6124,2,68.0,2,0.0,7,111,2,78,75,5.0,0.0,0.0,1086.1653204563286,0.0,2071.875994132614,17280.68,70,44,1,2478,201706124,,,223.0,,0.0,2.0,4.0,0.0,2.0,1.5,1569.9516804131356,0.0,807.0,1171.0,0.0,31302.0,5,5,1,140.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3158.0413145889424,0.18274982897599762,0.10088944203529943,20868.0,5,3,5,5_1,5_3,5_0_0 +6125,2,54.0,2,0.0,5,111,1,56,52,6.0,0.0,0.0,726.8020731678034,0.0,0.0,37042.884375051,50,71,2,248,201706125,,,,399.0,2.0,1.0,4.0,1.0,3.0,2.0,3702.2505810252183,0.0,540.0,0.0,0.0,45016.0,1,1,3,84.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,726.8020731678034,0.01962055831854489,0.016145416588941787,22508.0,6,3,6,6_0,6_3,6_0_0 +6126,2,50.0,3,0.0,7,112,4,56,47,7.0,0.0,0.0,1884.3016711757866,53.079658261296686,0.0,27010.2116935026,50,50,1,2480,201706126,,,520.0,,2.0,2.0,6.0,1.0,3.0,2.0,2870.704667333054,0.0,1400.0,0.0,0.0,46875.0,4,1,2,90.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1937.3813294370834,0.07172773584381523,0.04133080169465778,23437.5,6,3,6,6_1,6_1,6_0_0 +6127,1,46.0,9,410.0,3,111,1,85,63,1.0,0.0,0.0,615.0899026623819,0.0,283.09151072691566,33654.59999999999,71,50,2,2481,201706127,,,,,1.0,0.0,3.0,3.0,5.0,2.4,1778.663943569854,0.0,457.0,160.0,0.0,20120.0,6,4,3,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,898.1814133892975,0.026688221324552893,0.04464122332948795,8383.333333333334,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6128,2,38.0,3,0.0,9,112,2,56,64,4.0,634.5824036555529,0.0,942.1508355878933,99.08202875442048,0.0,26014.260000000002,31,50,1,2482,201706128,,,300.0,,2.0,0.0,4.0,3.0,5.0,2.4,2093.378949467493,0.0,700.0,0.0,0.0,42372.0,1,1,2,200.0,9,3.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1675.8152679978666,0.06441910198475245,0.03955006296605935,17655.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6129,2,48.0,3,0.0,99,111,2,0,46,6.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,62641.86000000001,0,71,1,2483,201706129,,,840.0,,1.0,1.0,5.0,1.0,3.0,1.8,2583.51997616464,960.0,0.0,0.0,0.0,38289.0,0,1,3,90.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1530.4219775670917,0.024431298457087507,0.03997027808423024,21271.666666666668,6,3,6,6_1,6_4,6_0_0 +6130,2,69.0,3,0.0,1,120,5,0,11,10.0,0.0,208.188947934516,672.964882562781,0.0,0.0,14142.86,0,70,1,2485,201706130,,,,,1.0,1.0,4.0,0.0,1.0,1.0,2262.2617203392992,0.0,500.0,0.0,0.0,44284.0,0,5,1,80.0,0,3.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,881.153830497297,0.062303793610153604,0.019897792216089265,44284.0,10,5,10,10_1,10_1,10_1_0 +6131,2,65.0,3,0.0,5,112,2,86,78,4.0,0.0,0.0,417.2382271889242,3457.2550747524574,0.0,52767.76,71,71,1,2486,201706131,,,64.0,,0.0,2.0,4.0,0.0,2.0,1.5,2677.2849861849763,0.0,310.0,0.0,0.0,25208.0,6,5,1,135.0,3,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3874.4933019413816,0.07342538894850532,0.15370094025473585,16805.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6132,0,29.0,4,0.0,3,221,2,0,56,1.0,0.0,0.0,1211.3367886130059,0.0,2653.9829130648345,22635.47665845403,0,44,1,2488,201706132,,,500.0,,1.0,0.0,6.0,1.0,2.0,1.3,543.7145552666739,0.0,900.0,1500.0,0.0,13423.0,0,1,5,140.0,1,1.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3865.3197016778404,0.17076378642259332,0.2879624302821903,10325.384615384615,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +6133,2,57.0,3,0.0,2,120,2,78,62,2.0,317.29120182777643,0.0,874.8543473316153,0.0,1503.9236507367395,22788.559999999998,71,71,1,249,201706133,,,450.0,,1.0,0.0,5.0,1.0,3.0,2.0,2687.4636721187385,0.0,650.0,850.0,0.0,23891.0,6,1,1,80.0,0,1.0,4,3,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2696.069199896131,0.11830801068150561,0.11284873801415307,11945.5,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +6134,1,22.0,2,212.0,1,111,1,0,45,8.0,0.0,0.0,387.6277723561618,0.0,0.0,16652.260000000002,0,0,2,2491,201706134,,,,413.0,1.0,0.0,1.0,0.0,1.0,1.0,4231.659567411884,0.0,288.0,0.0,0.0,26064.0,0,3,3,22.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,387.6277723561618,0.023277787661023897,0.014872152100834937,26064.0,7,4,7,7_0,7_4,7_1_0 +6135,2,34.0,3,0.0,9,111,4,47,46,6.0,0.0,0.0,1991.9760523858317,0.0,0.0,39178.659999999996,30,31,1,2493,201706135,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.1,2387.4465508736234,0.0,1480.0,0.0,0.0,45134.0,1,1,2,102.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1991.9760523858317,0.05084339414328698,0.04413471113541525,21492.38095238095,6,3,6,6_1,6_3,6_0_0 +6136,1,42.0,2,508.0,2,111,1,85,21,1.0,0.0,0.0,605.6683943065029,0.0,1765.7832981591364,18567.38,60,44,8,2494,201706136,528.0,528.0,,,1.0,3.0,5.0,4.0,6.0,3.1,2113.9517531629285,0.0,450.0,998.0,0.0,28505.0,6,1,3,96.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,2371.451692465639,0.12772139593554066,0.08319423583461284,9195.16129032258,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6137,2,72.0,1,0.0,3,111,2,75,75,10.0,4196.176144172344,0.0,497.99401309645793,0.0,0.0,35458.21119129575,33,12,1,2495,201706137,,,318.0,,0.0,4.0,4.0,0.0,2.0,1.5,1499.457985134699,0.0,370.0,0.0,0.0,68094.0,5,5,1,150.0,6,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4694.170157268802,0.13238598337473725,0.06893661933898437,45396.0,10,5,10,10_1,10_2,10_0_1 +6138,2,53.0,5,0.0,1,111,2,42,42,4.0,0.0,0.0,1333.8163972394318,0.0,1284.5277299233799,61826.7,20,60,2,2496,201706138,,,813.0,,3.0,2.0,3.0,3.0,5.0,3.0,1687.6811756358125,0.0,991.0,726.0,0.0,54361.0,1,1,2,100.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2618.3441271628117,0.042349731219081914,0.048165856536171364,18120.333333333332,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +6139,2,55.0,3,0.0,2,111,2,0,52,9.0,0.0,0.0,328.4717579785689,0.0,612.1000824012061,21106.23400793944,0,31,2,2498,201706139,,,,,1.0,1.0,2.0,0.0,1.0,1.0,2162.1573864198663,590.0,0.0,0.0,0.0,32432.0,0,1,1,12.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,940.571840379775,0.04456369810104276,0.02900135176306657,32432.0,9,5,9,9_0,9_4,9_0_1 +6140,2,91.0,1,0.0,6,211,4,0,74,9.0,0.0,0.0,2373.4773288398846,0.0,703.3951199187933,17977.76837015265,0,70,2,2499,201706140,,,225.0,,0.0,2.0,3.0,0.0,1.0,1.0,1964.5867854347546,677.9987990265794,1483.0,0.0,0.0,35878.0,0,5,1,40.0,4,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,3076.872448758678,0.17114874245832504,0.08575930789783928,35878.0,9,5,9,9_0,9_2,9_0_0 +6141,2,80.0,3,0.0,1,111,4,72,72,2.0,0.0,0.0,942.1508355878933,0.0,0.0,31581.42,70,50,1,25,201706141,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1387.2404248635814,0.0,700.0,0.0,0.0,23627.0,5,5,1,139.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,942.1508355878933,0.029832440580185863,0.03987602470004204,15751.333333333334,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +6142,2,59.0,2,0.0,1,300,2,75,56,6.0,1059.7526141047733,555.170527825376,831.7845948475973,0.0,0.0,39943.84753821486,31,50,1,2500,201706142,,,221.0,,1.0,2.0,6.0,0.0,2.0,1.5,1484.405289470702,0.0,618.0,0.0,0.0,31693.0,5,4,1,160.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2446.7077367777465,0.06125368204545007,0.0772002567373788,21128.666666666668,5,3,5,5_1,5_0,5_1_0 +6143,2,53.0,4,0.0,5,111,1,0,54,5.0,0.0,0.0,267.23126072832724,0.0,497.9797280552186,35126.38,0,42,8,2502,201706143,,,,,2.0,1.0,3.0,2.0,3.0,2.0,2142.961190471823,480.0,0.0,0.0,0.0,40320.0,0,1,3,60.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,765.2109887835459,0.021784510353288496,0.018978447142449055,20160.0,5,3,5,5_0,5_3,5_0_0 +6144,2,32.0,2,0.0,1,111,4,34,31,9.0,0.0,284.5248955105052,1615.1157181506744,0.0,0.0,58202.48000000001,20,10,1,2503,201706144,,,350.0,,2.0,0.0,4.0,2.0,4.0,2.1,2237.9131033777517,0.0,1200.0,0.0,0.0,71428.0,1,1,2,130.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1899.6406136611795,0.032638482306272504,0.026595181352707335,34013.33333333333,9,5,9,9_1,9_3,9_1_0 +6145,2,39.0,4,0.0,99,111,2,85,46,7.0,0.0,0.0,1063.284514449194,0.0,0.0,24876.8609457013,12,30,2,2504,201706145,,,270.0,623.0,1.0,0.0,3.0,1.0,3.0,1.8,2472.3344729274218,0.0,790.0,0.0,0.0,44331.0,6,1,3,60.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1063.284514449194,0.0427419085056601,0.023985123603103786,24628.333333333332,7,4,7,7_0,7_3,7_0_0 +6146,2,31.0,2,0.0,9,112,2,54,37,7.0,0.0,0.0,874.8543473316153,0.0,741.3458937161104,31769.239999999994,50,20,1,2506,201706146,,,620.0,,2.0,0.0,4.0,1.0,3.0,1.8,2281.716790446576,0.0,650.0,419.0,0.0,41310.0,1,1,2,95.0,9,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1616.2002410477257,0.0508731162926065,0.03912370469735477,22950.0,6,3,6,6_1,6_1,6_0_0 +6147,2,67.0,3,0.0,6,112,5,0,77,4.0,0.0,0.0,740.261370819059,247.7050718860512,0.0,14525.119999999999,0,70,1,2507,201706147,,,220.0,,0.0,2.0,4.0,0.0,1.0,1.0,4514.830058436377,0.0,550.0,0.0,0.0,16293.0,0,5,1,100.0,7,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,987.9664427051102,0.06801778179492564,0.06063747883785124,16293.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6148,1,41.0,3,289.0,99,111,2,0,56,2.0,0.0,0.0,376.8603342351573,0.0,2084.2612477269167,22837.78,0,50,2,2508,201706148,,,,293.0,1.0,0.0,3.0,1.0,2.0,1.5,1506.9590824099935,0.0,280.0,1178.0,0.0,19958.0,0,1,3,72.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2461.121581962074,0.10776535994138108,0.12331504068353913,13305.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6149,2,84.0,2,0.0,1,112,2,0,72,6.0,2379.684013708323,0.0,646.0462872602698,0.0,0.0,18407.62449357506,0,50,1,2509,201706149,,,209.0,,0.0,1.0,6.0,0.0,1.0,1.0,2502.0400056163026,0.0,480.0,0.0,0.0,20372.0,0,5,5,179.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3025.730300968593,0.1643737518670421,0.14852396922092054,20372.0,5,3,5,5_1,5_0,5_1_0 +6151,1,23.0,3,353.0,99,111,4,0,56,2.0,0.0,0.0,713.3427755165478,109.69796040667983,0.0,6452.377038047046,0,50,2,2510,201706151,,,193.0,147.0,1.0,1.0,3.0,0.0,1.0,1.0,1259.8578924186313,0.0,530.0,0.0,0.0,12826.0,0,4,3,73.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,823.0407359232277,0.12755620619658317,0.06416971276494836,12826.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6152,2,47.0,1,0.0,5,112,2,43,34,9.0,0.0,832.755791738064,2691.859530251124,0.0,0.0,47969.17344410585,30,20,1,2512,201706152,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.5,1981.0334988909478,0.0,2000.0,0.0,0.0,80879.0,1,1,2,110.0,9,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3524.615321989188,0.07347667405810326,0.04357886870496901,32351.6,9,5,9,9_1,9_1,9_0_0 +6153,2,32.0,2,0.0,5,400,4,0,47,3.0,0.0,0.0,1309.5896614671717,47.77169243516702,0.0,27594.8,0,42,1,2513,201706153,,,206.0,,1.0,0.0,4.0,0.0,1.0,1.0,2146.559274841553,0.0,973.0,0.0,0.0,17711.0,0,1,3,66.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1357.3613539023388,0.049189026697143624,0.07663945310272366,17711.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6154,2,60.0,2,0.0,1,112,4,75,52,4.0,0.0,0.0,2086.1911359446212,0.0,0.0,23532.66,71,50,1,2514,201706154,,,202.0,,1.0,1.0,4.0,0.0,2.0,1.5,1995.5092641167453,0.0,1550.0,0.0,0.0,25730.0,7,1,1,103.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2086.1911359446212,0.08865088502296899,0.08108010633286519,17153.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6155,2,40.0,2,0.0,6,111,2,56,38,8.0,0.0,0.0,888.3136449828709,0.0,1634.853474447938,58441.52,30,20,1,2515,201706155,,,780.0,,2.0,0.0,5.0,2.0,4.0,2.1,2617.1164811771596,0.0,660.0,924.0,0.0,58819.0,1,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2523.1671194308087,0.0431742213315261,0.04289714411042025,28009.04761904762,8,4,8,8_1,8_4,8_0_0 +6156,2,49.0,2,0.0,8,111,4,55,52,8.0,0.0,0.0,1310.9355912322974,106.15931652259337,0.0,44721.1,60,50,1,2518,201706156,,,205.0,,2.0,4.0,3.0,0.0,2.0,1.5,2192.699433817446,0.0,974.0,0.0,0.0,41288.0,1,1,2,70.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1417.0949077548908,0.0316873893476433,0.034322197920821806,27525.333333333332,8,4,8,8_1,8_3,8_0_0 +6157,2,69.0,2,0.0,7,221,2,0,77,2.0,0.0,1915.338320997547,776.6014744774493,51.310336319253466,0.0,18570.64,0,71,1,252,201706157,,,173.0,,0.0,3.0,5.0,0.0,1.0,1.0,2386.552869007791,0.0,577.0,0.0,0.0,13940.0,0,5,1,200.0,1,2.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2743.25013179425,0.14771974104254082,0.196789822940764,13940.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +6158,1,40.0,3,256.0,99,111,4,0,69,1.0,0.0,0.0,375.51440447003176,159.23897478389006,0.0,6888.58,0,30,2,2520,201706158,,,150.0,,1.0,2.0,2.0,1.0,2.0,1.3,2900.668152813114,0.0,279.0,0.0,0.0,11721.0,0,4,3,52.0,7,5.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,534.7533792539218,0.07762897131976719,0.04562352864550139,9016.153846153846,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6159,2,79.0,3,0.0,5,111,2,86,75,5.0,0.0,430.2571590646664,2247.7027077596886,0.0,0.0,25649.879999999997,70,50,1,2521,201706159,,,462.0,,0.0,4.0,5.0,0.0,2.0,1.5,1869.7102249559107,0.0,1670.0,0.0,0.0,29676.0,5,5,1,90.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2677.959866824355,0.10440438188499732,0.09023992003047428,19784.0,5,3,5,5_1,5_3,5_0_0 +6160,2,52.0,4,0.0,9,400,4,43,48,9.0,142.7810408224994,0.0,3179.0861052265773,159.23897478389006,0.0,61217.98,33,50,1,2523,201706160,,,,,2.0,3.0,5.0,0.0,2.0,1.5,2436.8571022584138,0.0,2362.0,0.0,0.0,50966.0,1,1,2,120.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3481.106120832967,0.056864112811840034,0.06830251777327957,33977.333333333336,9,5,9,9_1,9_0,9_0_0 +6161,1,43.0,3,480.0,4,111,1,85,63,1.0,0.0,0.0,138.63076580793287,0.0,424.6372660903735,12303.48,50,50,2,2525,201706161,,,,118.0,1.0,0.0,2.0,3.0,5.0,2.4,1124.56483932541,0.0,103.0,240.0,0.0,24960.0,6,1,3,49.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,563.2680318983064,0.04578119620613895,0.02256682820105394,10400.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6162,2,85.0,1,0.0,9,111,1,0,75,8.0,0.0,0.0,363.4010365839017,0.0,0.0,22382.84,0,71,2,2527,201706162,,,,653.0,0.0,2.0,3.0,0.0,1.0,1.0,3378.277785954757,0.0,270.0,0.0,0.0,28939.0,0,5,3,75.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,363.4010365839017,0.01623569826634608,0.012557484245616701,28939.0,8,4,8,8_0,8_3,8_0_0 +6163,2,59.0,2,0.0,8,111,4,0,48,9.0,0.0,0.0,1325.7408186486784,0.0,0.0,17645.36,0,50,1,2529,201706163,,,,,1.0,3.0,4.0,0.0,1.0,1.0,3296.9615008737437,0.0,985.0,0.0,0.0,35005.0,0,1,2,95.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1325.7408186486784,0.07513254581650237,0.03787289869014936,35005.0,9,5,9,9_1,9_3,9_0_0 +6164,2,37.0,2,0.0,7,111,6,0,38,9.0,0.0,0.0,60.56683943065029,0.0,0.0,68851.84,0,20,2,2532,201706164,,,,803.0,1.0,0.0,3.0,2.0,3.0,1.6,1029.8398256841485,0.0,45.0,0.0,0.0,56558.0,0,1,3,68.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,60.56683943065029,0.0008796691479944515,0.0010708801483547913,35348.75,9,5,9,9_0,9_4,9_0_0 +6165,2,32.0,2,0.0,5,111,1,85,34,3.0,0.0,0.0,888.3136449828709,0.0,442.3304855108057,15368.58,10,10,2,2533,201706165,250.0,250.0,,334.0,1.0,0.0,2.0,1.0,3.0,1.8,4741.6327156367615,0.0,660.0,250.0,0.0,29120.0,6,1,3,46.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1330.6441304936766,0.08658211301848814,0.0456951967889312,16177.777777777777,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +6166,2,66.0,3,0.0,7,112,4,0,77,5.0,0.0,0.0,1049.8252167979383,0.0,0.0,20676.76,0,44,8,2534,201706166,,,152.0,,0.0,2.0,3.0,0.0,1.0,1.0,2644.190743067552,0.0,780.0,0.0,0.0,20046.0,0,5,1,57.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1049.8252167979383,0.05077319738672492,0.052370807981539376,20046.0,5,3,5,5_0,5_1,5_0_0 +6167,2,83.0,2,0.0,4,211,1,0,75,5.0,0.0,0.0,629.895130078763,207.01066721905707,0.0,15947.850875301627,0,44,2,2535,201706167,,,,,0.0,2.0,5.0,0.0,1.0,1.0,3208.9732031058093,0.0,468.0,0.0,0.0,18201.0,0,5,3,62.0,1,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,836.9057972978201,0.052477653813150005,0.04598130857083787,18201.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +6168,1,66.0,3,254.0,7,120,4,78,62,8.0,0.0,305.3437903039568,1216.720507673508,61.9262679715128,0.0,48014.53999999999,71,71,1,2536,201706168,,,300.0,,1.0,6.0,3.0,0.0,2.0,1.5,2291.2016034029148,0.0,904.0,0.0,0.0,39498.0,5,5,3,70.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1583.9905659489775,0.032989810293902175,0.04010305752060807,26332.0,7,4,7,7_1,7_0,7_0_0 +6169,2,71.0,3,0.0,1,112,2,0,78,8.0,0.0,0.0,1563.6986474813814,185.7788039145384,1288.6628151183997,35031.843309169075,0,44,1,2538,201706169,,,280.0,,0.0,2.0,2.0,0.0,1.0,1.0,2804.8116731232767,1242.135204323504,648.0,0.0,0.0,26953.0,0,5,1,55.0,9,0.0,1,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3038.1402665143196,0.08672510434868069,0.11271992974861127,26953.0,7,4,7,7_1,7_0,7_1_0 +6171,1,36.0,3,424.0,1,111,1,0,85,1.0,0.0,0.0,726.8020731678034,0.0,884.6609710216114,28193.600000000002,0,43,2,254,201706171,,,,,0.0,0.0,4.0,6.0,7.0,3.4,563.0811256916365,0.0,540.0,500.0,0.0,32973.0,0,6,3,72.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1611.4630441894149,0.05715705139426731,0.048872199805580774,9697.94117647059,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +6172,1,44.0,3,202.0,1,111,2,0,22,2.0,0.0,0.0,528.9503976943458,0.0,1381.840436735757,25950.379999999997,0,50,2,2540,201706172,,,,162.0,1.0,0.0,2.0,0.0,1.0,1.0,3854.305780770932,0.0,393.0,781.0,0.0,12771.0,0,1,3,49.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1910.790834430103,0.07363247992630949,0.14961951565500767,12771.0,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +6173,2,36.0,3,0.0,7,111,1,0,46,8.0,0.0,0.0,532.9881869897225,0.0,0.0,19009.920000000002,0,31,2,2541,201706173,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2287.391665218016,0.0,396.0,0.0,0.0,28502.0,0,1,2,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,532.9881869897225,0.028037371382400478,0.018700027611736808,28502.0,8,4,8,8_0,8_4,8_0_0 +6174,2,69.0,4,0.0,5,120,5,71,71,3.0,0.0,0.0,942.1508355878933,383.9428614233794,0.0,41207.96000000001,71,60,1,2542,201706174,,,200.0,,0.0,2.0,6.0,0.0,3.0,2.0,4511.595019410229,0.0,700.0,0.0,0.0,30480.0,5,5,1,150.0,0,3.0,5,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1326.0936970112728,0.03218052281673911,0.043507011056800285,15240.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6175,2,32.0,4,0.0,3,111,1,0,62,5.0,0.0,0.0,79.05591463213015,0.0,147.31900288300216,17352.69087530163,0,50,2,2543,201706175,,,,226.0,1.0,0.0,2.0,0.0,1.0,1.0,3267.9919502846647,142.0,0.0,0.0,0.0,19734.0,0,1,3,43.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,226.37491751513232,0.013045522400063929,0.011471314356700736,19734.0,5,3,5,5_0,5_3,5_0_1 +6176,2,75.0,1,0.0,1,400,4,0,75,6.0,0.0,0.0,777.9474042425749,61.9262679715128,0.0,20691.519999999997,0,70,1,2544,201706176,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2711.3752485912396,0.0,578.0,0.0,0.0,22337.0,0,5,1,100.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,839.8736722140877,0.04059023562377669,0.03760011067798217,22337.0,6,3,6,6_1,6_1,6_1_0 +6177,2,68.0,3,0.0,9,120,2,77,78,3.0,0.0,277.585263912688,741.6073005841846,0.0,1459.690602185659,31184.600000000002,50,70,1,2546,201706177,,,233.0,,0.0,2.0,3.0,0.0,2.0,1.5,2138.874448803158,0.0,551.0,825.0,0.0,21133.0,5,5,1,90.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2478.8831666825317,0.07949061930191606,0.11729916087079599,14088.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6178,2,71.0,2,0.0,1,120,1,77,75,7.0,0.0,0.0,527.6044679292203,0.0,1238.525359430256,23795.373696501072,71,50,2,2548,201706178,,,,,0.0,6.0,3.0,0.0,2.0,1.5,2141.439392637867,0.0,392.0,700.0,0.0,37091.0,5,5,3,62.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1766.1298273594762,0.07422156297630123,0.04761612863927843,24727.333333333332,7,4,7,7_0,7_0,7_1_0 +6179,2,50.0,4,0.0,1,111,2,0,52,6.0,0.0,0.0,242.26735772260116,0.0,1203.1389205893915,9942.620315994116,0,50,1,2549,201706179,,,156.0,,1.0,0.0,5.0,0.0,1.0,1.0,1544.8923842448967,0.0,180.0,680.0,0.0,22474.0,0,1,1,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1445.4062783119928,0.14537478374657953,0.06431459812725784,22474.0,6,3,6,6_1,6_3,6_1_0 +6180,2,84.0,3,0.0,2,111,2,0,77,4.0,1983.0700114236026,208.188947934516,79.40985614240816,141.54575536345783,0.0,21014.755368876693,0,71,1,255,201706180,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2999.9553725462315,0.0,59.0,0.0,0.0,17978.0,0,5,1,104.0,6,5.0,1,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2412.2145708639846,0.11478670717416614,0.13417591338658275,17978.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +6181,2,39.0,4,0.0,99,400,2,0,63,3.0,0.0,0.0,1830.4644805707642,247.7050718860512,0.0,24175.32,0,31,1,2551,201706181,,,360.0,,1.0,0.0,3.0,0.0,1.0,1.0,2680.988508354263,0.0,1360.0,0.0,0.0,14785.0,0,1,3,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2078.1695524568154,0.08596244237746659,0.1405593204231867,14785.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6182,2,27.0,2,0.0,9,120,1,56,47,7.0,0.0,0.0,1897.7609688270425,0.0,0.0,21632.300000000003,50,42,1,2552,201706182,,,275.0,,2.0,0.0,4.0,0.0,2.0,1.5,2805.672900575587,0.0,1410.0,0.0,0.0,39246.0,1,1,2,100.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1897.7609688270425,0.087728118083932,0.04835552588358157,26164.0,7,4,7,7_1,7_0,7_0_0 +6183,1,42.0,3,280.0,99,300,2,85,62,2.0,0.0,0.0,1090.2031097517051,0.0,1840.0948197249518,37072.270875301634,60,50,2,2553,201706183,,,,,2.0,1.0,4.0,5.0,7.0,3.4,1815.081199023666,0.0,810.0,1040.0,0.0,39730.0,6,1,3,80.0,0,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2930.297929476657,0.07904284955548505,0.07375529648821186,11685.29411764706,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +6184,2,63.0,3,0.0,7,212,5,22,22,1.0,0.0,104.094473967258,1211.3367886130059,99.08202875442048,0.0,13248.72,50,70,1,2554,201706184,,,400.0,,2.0,2.0,5.0,0.0,2.0,1.5,2887.8352192995876,0.0,900.0000000000001,0.0,0.0,7728.0,1,1,1,166.0,2,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1414.5132913346843,0.1067660341025159,0.18303743417891877,5152.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6185,1,39.0,4,162.0,1,400,2,0,52,1.0,222.10384127944351,55.5170527825376,588.1713073598705,123.8525359430256,0.0,28490.62,0,42,1,2555,201706185,,,118.0,,1.0,1.0,4.0,0.0,1.0,1.0,2014.9180081245102,0.0,437.0,0.0,0.0,9835.0,0,1,3,70.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,989.6447373648772,0.034735809096638724,0.1006247826502163,9835.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +6186,2,65.0,3,0.0,2,111,2,0,77,3.0,0.0,0.0,776.6408514917011,0.0,1447.253584660479,21324.600000000002,0,20,1,2556,201706186,,,180.0,,0.0,3.0,5.0,0.0,1.0,1.0,2161.868587310796,1395.0,0.0,0.0,0.0,14600.0,0,5,1,167.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2223.89443615218,0.10428774449003403,0.15232153672275206,14600.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +6187,1,44.0,5,404.0,6,221,7,0,65,1.0,0.0,0.0,1211.3367886130059,0.0,0.0,13445.810875301628,0,50,2,2557,201706187,,,,416.0,1.0,0.0,2.0,2.0,3.0,1.6,1090.1737155403853,0.0,900.0,0.0,0.0,16318.0,0,4,3,50.0,1,3.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1211.3367886130059,0.09009027420117065,0.07423316513132773,10198.75,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +6188,0,54.0,3,0.0,3,112,4,0,54,6.0,0.0,0.0,841.2061032034762,106.15931652259337,0.0,31863.300000000003,0,31,2,2559,201706188,,,,,1.0,1.0,2.0,0.0,1.0,1.0,1921.5013296537554,0.0,625.0,0.0,0.0,22410.0,0,1,5,45.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,947.3654197260696,0.029732181529410623,0.04227422667229226,22410.0,6,3,6,6_0,6_1,6_0_1 +6189,2,63.0,3,0.0,6,112,3,54,75,7.0,0.0,0.0,1814.8132589733743,2268.2707296994117,2416.242778347,25589.6916888031,50,70,1,2560,201706189,,,240.0,,1.0,2.0,5.0,0.0,2.0,1.5,2592.641310568708,2329.0035081065703,385.0,0.0,0.0,35661.0,1,5,1,98.0,9,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6499.326767019786,0.25398222245341073,0.18225307105857338,23774.0,6,3,6,6_1,6_0,6_0_0 +6190,2,55.0,5,0.0,4,211,1,0,52,4.0,0.0,0.0,310.90977574400483,35.38643884086446,0.0,10367.84,0,71,2,2561,201706190,,,,246.0,1.0,2.0,2.0,0.0,1.0,1.0,2949.0908005561546,0.0,231.0,0.0,0.0,17487.0,0,1,3,48.0,1,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,346.2962145848693,0.03340099910732315,0.019803065968140292,17487.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +6191,2,77.0,1,0.0,5,111,1,0,75,9.0,0.0,0.0,518.1829595733413,0.0,254.7823596542241,24396.250875301626,0,30,2,2562,201706191,,,102.0,,0.0,2.0,4.0,0.0,1.0,1.0,3096.7622445400216,0.0,385.0,144.0,0.0,34716.0,0,5,1,90.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,772.9653192275655,0.03168377482173309,0.022265391151848297,34716.0,9,5,9,9_0,9_2,9_0_0 +6192,2,51.0,1,0.0,7,111,2,47,52,8.0,0.0,90.21521077162359,1705.293012414087,0.0,1070.43977493615,35134.69999999999,50,50,1,2565,201706192,,,290.0,,2.0,2.0,6.0,0.0,2.0,1.5,1359.537068371644,0.0,1267.0,605.0,0.0,41938.0,1,1,1,120.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2865.94799812186,0.08157029939409931,0.06833773661409366,27958.666666666668,8,4,8,8_1,8_2,8_0_0 +6193,2,41.0,3,0.0,9,111,2,0,53,2.0,0.0,0.0,807.5578590753372,0.0,0.0,23367.193696501075,0,30,2,2566,201706193,,,,670.0,1.0,0.0,3.0,0.0,1.0,1.0,3194.9756336392347,0.0,600.0,0.0,0.0,18453.0,0,1,3,56.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.03455947126403365,0.04376295773453299,18453.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +6194,2,82.0,4,0.0,1,111,2,0,77,3.0,0.0,0.0,538.3719060502248,0.0,1061.5931652259337,12289.1058467513,0,71,1,2567,201706194,,,350.0,,1.0,3.0,3.0,1.0,2.0,1.5,2888.9303629191113,0.0,400.0,600.0,0.0,22010.0,0,6,1,80.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1599.9650712761586,0.13019377416292002,0.07269264294757649,14673.333333333334,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +6195,2,45.0,2,0.0,1,111,2,46,34,7.0,0.0,0.0,1096.7616325725098,0.0,2043.7918005599593,56425.32,30,20,1,257,201706195,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.5,1547.2884020907343,1970.0,0.0,0.0,0.0,63892.0,1,1,2,100.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3140.553433132469,0.05565858435773991,0.04915409492788563,25556.8,7,4,7,7_1,7_2,7_1_0 +6196,2,66.0,2,0.0,8,112,2,54,74,10.0,1967.205451332214,0.0,939.4589760576422,0.0,0.0,73460.04000000001,50,12,1,2570,201706196,,,340.0,,1.0,3.0,6.0,0.0,2.0,1.5,2798.8383722076082,0.0,698.0,0.0,0.0,66676.0,1,5,1,150.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2906.664427389856,0.039567966848232806,0.04359386326999004,44450.666666666664,10,5,10,10_1,10_0,10_0_0 +6198,2,36.0,1,0.0,4,112,2,52,46,8.0,0.0,562.1101594231932,1823.7348317451365,0.0,1850.7107513772112,39199.92,50,41,1,2574,201706198,,,257.0,,2.0,0.0,7.0,1.0,3.0,1.8,2140.4842404863334,0.0,1355.0,1046.0,0.0,54006.0,4,1,3,126.0,4,0.0,4,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4236.555742545541,0.10807562215804371,0.07844601974864905,30003.333333333332,8,4,8,8_1,8_0,8_0_1 +6199,2,70.0,2,0.0,5,400,2,0,77,9.0,0.0,194.3096847388816,1695.871504058208,0.0,0.0,26879.64,0,50,1,2577,201706199,,,260.0,,0.0,7.0,4.0,0.0,1.0,1.0,1999.9792727964225,0.0,1260.0,0.0,0.0,33365.0,0,5,3,95.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1890.1811887970896,0.07032018244281135,0.05665161662811598,33365.0,9,5,9,9_1,9_0,9_0_0 +6200,2,65.0,4,0.0,5,111,4,0,77,5.0,0.0,0.0,1319.0111698230507,53.079658261296686,0.0,26419.193696501075,0,70,2,2578,201706200,,,,,0.0,2.0,1.0,0.0,1.0,1.0,2671.4482218937437,0.0,980.0,0.0,0.0,19624.0,0,5,2,36.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1372.0908280843473,0.051935378643522545,0.06991901896067812,19624.0,5,3,5,5_0,5_3,5_0_0 +6201,2,42.0,3,0.0,1,111,2,56,46,10.0,0.0,0.0,1615.1157181506744,0.0,1272.1424763290772,124810.93999999999,42,44,1,2579,201706201,,,700.0,,2.0,0.0,6.0,0.0,2.0,1.5,1765.4160018776074,0.0,1200.0,719.0,0.0,69560.0,1,1,1,120.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2887.2581944797516,0.02313305383710556,0.04150744960436676,46373.333333333336,10,5,10,10_1,10_3,10_1_0 +6202,2,59.0,1,0.0,1,111,4,0,75,4.0,0.0,0.0,1372.8483604280732,79.61948739194503,0.0,12875.400000000001,0,50,2,258,201706202,,,140.0,,0.0,1.0,3.0,0.0,1.0,1.0,3611.845886891875,0.0,1020.0,0.0,0.0,18756.0,0,5,3,52.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1452.4678478200183,0.11280953196172687,0.07744017102900502,18756.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +6203,2,51.0,1,0.0,8,300,5,0,22,10.0,0.0,832.755791738064,892.3514342782476,35.38643884086446,0.0,111210.70000000003,0,31,1,2580,201706203,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2789.759265099125,0.0,663.0,0.0,0.0,58399.0,0,1,3,90.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1760.4936648571759,0.015830254326761502,0.030145955664603433,58399.0,10,5,10,10_1,10_0,10_0_0 +6204,2,44.0,2,0.0,1,300,2,31,35,7.0,904.2799252091628,346.98157989085996,1387.801640118618,141.54575536345783,0.0,67065.50999999998,20,20,1,2581,201706204,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2132.2218548661886,0.0,1031.11,0.0,0.0,54945.0,1,1,1,170.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2780.6089005820986,0.04146108634053628,0.05060713259772679,23889.13043478261,6,3,6,6_1,6_0,6_1_0 +6205,1,35.0,3,235.0,5,111,1,0,55,3.0,0.0,0.0,658.1596551463998,0.0,0.0,26271.619999999995,0,60,2,2583,201706205,,,360.0,315.0,1.0,0.0,3.0,2.0,3.0,1.6,849.8664917097274,0.0,489.0,0.0,0.0,23951.0,0,1,3,65.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,658.1596551463998,0.0250521153680816,0.02747942278595465,14969.375,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +6206,2,70.0,3,0.0,5,111,5,77,77,8.0,349.0203220105541,27.7585263912688,1319.0111698230507,109.69796040667983,0.0,32912.22031599412,60,70,1,2584,201706206,,,169.0,,0.0,0.0,4.0,0.0,2.0,1.5,3564.439854974476,0.0,980.0,0.0,0.0,44927.0,5,5,1,100.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1805.4879786315535,0.05485767782595188,0.04018714756452809,29951.333333333332,8,4,8,8_1,8_3,8_0_0 +6207,2,60.0,2,0.0,6,111,2,0,65,3.0,0.0,0.0,542.4096953456014,0.0,1503.9236507367395,18549.14,0,60,1,2587,201706207,,,310.0,,1.0,1.0,4.0,0.0,1.0,1.0,3311.7843125917043,0.0,403.0,850.0,0.0,16544.0,0,1,1,92.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2046.333346082341,0.11031958064267891,0.1236903618279945,16544.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +6208,1,39.0,4,420.0,4,111,2,0,43,2.0,0.0,0.0,807.5578590753372,0.0,0.0,12384.41087530163,0,71,2,2588,201706208,,,,,1.0,0.0,2.0,1.0,2.0,1.3,1365.9444950795548,0.0,600.0,0.0,0.0,15450.0,0,1,3,35.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,807.5578590753372,0.06520761198951006,0.05226911709225483,11884.615384615385,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +6209,2,64.0,2,0.0,5,111,6,0,78,5.0,1903.7472109666587,0.0,619.1276919577585,0.0,0.0,13499.14,0,50,1,2590,201706209,,,184.0,,0.0,2.0,5.0,0.0,1.0,1.0,1627.5005153030088,0.0,460.0,0.0,0.0,20516.0,0,5,1,96.0,7,5.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2522.8749029244173,0.1868915281213779,0.12297109099846058,20516.0,5,3,5,5_1,5_2,5_0_0 +6210,2,52.0,3,0.0,7,111,2,21,47,5.0,0.0,0.0,1716.0604505350914,0.0,1886.0971902180756,45003.619999999995,50,50,1,2591,201706210,,,650.0,,3.0,0.0,4.0,2.0,4.0,2.5,2008.4316410221418,0.0,1275.0,1066.0,0.0,47956.0,1,1,1,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3602.157640753167,0.08004150867759455,0.07511380517043054,19182.4,5,3,5,5_1,5_3,5_0_0 +6211,2,76.0,3,0.0,1,111,2,75,74,6.0,0.0,0.0,870.8165580362386,0.0,2425.7403825412584,38990.94,50,31,1,2592,201706211,,,390.0,,0.0,2.0,5.0,0.0,2.0,1.5,3249.3570399365826,0.0,647.0,1371.0,0.0,33755.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3296.556940577497,0.08454674189895131,0.09766129286261285,22503.333333333332,6,3,6,6_1,6_4,6_1_0 +6212,2,56.0,2,0.0,1,111,2,0,31,10.0,0.0,0.0,1157.4995980079832,0.0,1188.984345053046,75404.52598062245,0,10,1,2594,201706212,,,300.0,,1.0,3.0,9.0,0.0,1.0,1.0,2864.4208090194415,0.0,860.0,672.0,0.0,85450.0,0,1,1,160.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2346.483943061029,0.03111860876446636,0.0274603153079114,85450.0,10,5,10,10_1,10_3,10_1_0 +6213,2,62.0,3,0.0,6,112,4,46,35,4.0,0.0,235.94747432578478,1670.2988385208223,28.309151072691566,0.0,25329.201750603253,50,70,1,2595,201706213,,,308.0,,2.0,3.0,4.0,0.0,2.0,1.5,1460.1709902340099,0.0,1241.0,0.0,0.0,27497.0,4,1,1,110.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1934.5554639192985,0.07637648761959993,0.07035514652214055,18331.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6214,1,45.0,4,345.0,4,111,1,85,67,4.0,0.0,0.0,847.935752029104,0.0,0.0,22647.25,71,31,2,2596,201706214,,,,40.0,1.0,1.0,4.0,3.0,5.0,2.4,2469.1321309543323,0.0,630.0,0.0,0.0,41580.0,6,1,3,67.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,847.935752029104,0.037441002860351874,0.02039287522917518,17325.0,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +6215,2,77.0,1,0.0,9,222,5,72,71,10.0,0.0,0.0,288.1400665333406,247.7050718860512,536.9428396326666,31143.248598048027,41,71,1,2597,201706215,,,,,0.0,4.0,2.0,0.0,2.0,1.5,1911.4061115357563,517.5563351347934,0.0,0.0,0.0,69484.0,5,5,1,45.0,1,0.0,3,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1072.7879780520584,0.03444688741043212,0.015439352628692338,46322.666666666664,10,5,10,10_1,10_0,10_0_0 +6216,1,77.0,2,32.0,9,111,1,86,78,3.0,0.0,0.0,621.0841871182708,0.0,129.05145062338204,25897.424661408553,71,71,2,2599,201706216,,,,382.0,0.0,6.0,3.0,0.0,2.0,1.5,2872.821634344366,124.39200394991708,410.0,0.0,0.0,23026.0,5,5,3,61.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,750.1356377416529,0.02896564610377954,0.03257776590556992,15350.666666666666,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +6217,1,21.0,1,177.0,99,111,1,0,85,2.0,0.0,0.0,621.8195514880097,0.0,0.0,9790.4,0,71,2,26,201706217,,,110.0,227.0,0.0,0.0,2.0,0.0,1.0,1.0,2855.3500202763066,0.0,462.0,0.0,0.0,11844.0,0,7,3,45.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,621.8195514880097,0.06351319164569473,0.052500806441068026,11844.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6218,2,62.0,3,0.0,5,111,2,74,38,10.0,0.0,0.0,779.2933340077004,0.0,1111.134179603144,46037.600000000006,20,31,2,260,201706218,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2836.5550143610944,0.0,579.0,628.0,0.0,86898.0,5,1,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1890.4275136108445,0.041062686013407394,0.021754557223536152,57932.0,10,5,10,10_0,10_4,10_0_0 +6219,2,42.0,3,0.0,1,221,2,0,43,6.0,1586.456009138882,0.0,807.5578590753372,180.47083808840873,0.0,93470.09999999999,0,30,1,2600,201706219,,,254.0,,1.0,0.0,5.0,1.0,2.0,1.3,741.1924429695265,0.0,600.0,0.0,0.0,29092.0,0,1,2,135.0,1,1.0,2,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2574.4847063026277,0.027543403786907558,0.08849459323190663,22378.46153846154,6,3,6,6_1,6_1,6_1_0 +6220,2,36.0,2,0.0,1,112,4,45,38,7.0,0.0,416.377895869032,2234.2434101084327,148.62304313163074,0.0,72423.62,30,31,1,2601,201706220,,,520.0,,2.0,0.0,4.0,2.0,4.0,2.1,3051.0205489051536,0.0,1660.0,0.0,0.0,48901.0,1,1,1,86.0,10,4.0,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2799.2443491090953,0.03865098636479501,0.05724309010263789,23286.190476190473,6,3,6,6_1,6_2,6_1_0 +6221,2,61.0,3,0.0,5,112,2,0,77,2.0,26.969752155360997,0.0,713.3427755165478,127.39117982711205,0.0,12227.8258467513,0,70,1,2602,201706221,,,126.0,,0.0,3.0,4.0,0.0,1.0,1.0,1772.7407385406236,0.0,530.0,0.0,0.0,12306.0,0,6,1,127.0,8,0.0,1,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,867.7037074990209,0.07096140543492882,0.0705106214447441,12306.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6222,2,61.0,3,0.0,2,111,6,0,75,8.0,0.0,0.0,738.9154410539335,0.0,1549.9260212298632,29197.791711336602,0,33,1,2603,201706222,,,,,0.0,0.0,5.0,0.0,1.0,1.0,1830.958713220024,0.0,549.0,876.0,0.0,31327.0,0,5,1,70.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2288.841462283797,0.07839091000142694,0.07306289980795469,31327.0,8,4,8,8_1,8_2,8_0_1 +6223,2,22.0,3,0.0,9,111,2,0,81,1.0,0.0,0.0,807.5578590753372,0.0,1061.5931652259337,22131.72,0,71,2,2606,201706223,,,135.0,,1.0,0.0,3.0,1.0,2.0,1.3,1945.226380440527,0.0,600.0,600.0,0.0,9710.0,0,4,3,63.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1869.1510243012708,0.08445575058338307,0.19249753082402377,7469.230769230769,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +6224,1,56.0,4,273.0,99,111,4,0,78,1.0,0.0,0.0,228.80806007134552,0.0,0.0,6868.311191295744,0,41,2,2609,201706224,,,,195.0,0.0,0.0,2.0,0.0,1.0,1.0,3841.293602059729,0.0,170.0,0.0,0.0,9006.0,0,7,3,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,228.80806007134552,0.03331358374695012,0.02540618033215029,9006.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +6225,2,63.0,4,0.0,5,400,2,71,71,3.0,0.0,971.5484236944079,471.07541779394666,113.23660429076627,0.0,24395.82,50,50,1,261,201706225,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1830.2688432569407,0.0,350.0,0.0,0.0,23480.0,5,5,1,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1555.860445779121,0.06377569787689534,0.06626322171120617,15653.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6226,2,49.0,3,0.0,8,111,6,0,52,2.0,0.0,0.0,2732.2374232048905,0.0,0.0,79066.76,0,50,1,2610,201706226,,,650.0,,1.0,0.0,6.0,4.0,6.0,3.3,1205.9412818938363,0.0,2030.0,0.0,0.0,38368.0,0,1,1,99.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2732.2374232048905,0.03455608176185404,0.07121135902848443,11626.666666666668,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +6227,2,69.0,3,0.0,4,111,1,78,78,6.0,0.0,0.0,441.4649629611843,0.0,0.0,20103.760000000002,50,50,2,2611,201706227,,,,364.0,0.0,1.0,4.0,0.0,2.0,1.5,1610.551195449627,0.0,328.0,0.0,0.0,31724.0,5,5,3,70.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,441.4649629611843,0.021959323179404463,0.013915803901184728,21149.333333333332,5,3,5,5_0,5_3,5_0_1 +6228,2,37.0,1,0.0,9,211,2,42,33,9.0,0.0,0.0,1823.7348317451365,70.77287768172891,0.0,33004.0,20,12,1,2612,201706228,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2691.3148934144738,0.0,1355.0,0.0,0.0,64942.0,1,1,2,120.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1894.5077094268654,0.05740236666546071,0.02917230312320017,30924.761904761905,8,4,8,8_1,8_2,8_0_0 +6229,1,43.0,3,323.0,8,111,2,0,56,1.0,0.0,0.0,829.0927353173462,0.0,1206.677564473478,22347.439999999995,0,43,2,2615,201706229,,,726.0,115.0,1.0,0.0,3.0,3.0,4.0,2.1,865.4173237187254,0.0,616.0,682.0,0.0,21268.0,0,1,3,65.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2035.770299790824,0.09109635375644032,0.09571987491963627,10127.619047619048,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +6230,2,58.0,2,0.0,8,111,6,46,46,9.0,0.0,0.0,1224.7960862642615,0.0,0.0,37365.7,60,60,1,2616,201706230,,,,,2.0,2.0,4.0,0.0,2.0,1.5,3049.435715078152,0.0,910.0,0.0,0.0,55625.0,1,1,2,75.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1224.7960862642615,0.032778620131946185,0.022018806045200207,37083.333333333336,9,5,9,9_1,9_3,9_0_0 +6231,2,62.0,3,0.0,2,111,6,0,78,9.0,1070.8578061687456,0.0,469.11687556015164,120.31389205893916,447.81032825364395,24091.84887076894,0,70,1,2617,201706231,,,120.0,,0.0,0.0,5.0,0.0,2.0,1.5,3712.5252158212274,431.6419835024177,170.0,0.0,0.0,50483.0,0,5,1,100.0,9,7.0,5,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2108.0989020414804,0.08750257870823994,0.04175859006084188,33655.333333333336,9,5,9,9_1,9_3,9_0_1 +6232,2,55.0,2,0.0,99,111,2,52,38,8.0,0.0,0.0,756.4125280005658,0.0,1272.1424763290772,66423.2,50,31,2,2619,201706232,,,,,2.0,0.0,5.0,0.0,4.0,2.3,3016.381505050817,0.0,562.0,719.0,0.0,70184.0,1,1,3,120.0,6,4.0,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2028.555004329643,0.030539856621325728,0.02890338259902033,30514.782608695656,8,4,8,8_0,8_2,8_0_0 +6233,1,34.0,3,500.0,99,111,1,0,67,2.0,0.0,0.0,915.2322402853821,0.0,0.0,11648.951191295746,0,41,2,262,201706233,,,,,1.0,0.0,3.0,3.0,4.0,1.9,1163.772107091729,0.0,680.0,0.0,0.0,24040.0,0,4,3,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,915.2322402853821,0.07856778050278518,0.03807122463749509,12652.631578947368,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +6234,2,87.0,3,0.0,3,111,2,0,77,6.0,0.0,0.0,605.6683943065029,0.0,1946.2541362475451,16096.68,0,71,1,2620,201706234,,,90.0,,0.0,3.0,4.0,0.0,1.0,1.0,3237.2230505729067,0.0,450.0,1100.0,0.0,21132.0,0,5,1,80.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2551.922530554048,0.15853719714587405,0.12076105103890063,21132.0,5,3,5,5_1,5_2,5_0_1 +6235,2,86.0,3,0.0,99,111,2,0,77,4.0,1142.2483265799951,0.0,650.0840765556464,212.31863304518674,0.0,12735.999999999998,0,70,1,2621,201706235,,,205.0,,0.0,1.0,5.0,0.0,1.0,1.0,5828.226836700115,0.0,483.0,0.0,0.0,18900.0,0,5,1,90.0,6,4.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2004.6510361808282,0.1574003640217359,0.10606619239052001,18900.0,5,3,5,5_1,5_2,5_0_0 +6236,2,76.0,1,0.0,1,111,2,0,72,10.0,0.0,0.0,1379.1901828542714,0.0,2813.1373403126227,85423.88740513349,0,30,2,2622,201706236,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3466.7895313770487,2114.66406714859,150.0,350.0,0.0,60244.0,0,5,1,75.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4192.327523166894,0.049076758861186634,0.06958912959243899,60244.0,10,5,10,10_0,10_4,10_1_0 +6237,2,41.0,3,0.0,7,111,2,56,54,5.0,0.0,0.0,791.4067018938305,0.0,2459.3574994400797,34953.119999999995,50,31,1,2625,201706237,,,680.0,,2.0,0.0,5.0,1.0,3.0,1.8,1841.9753511587148,0.0,588.0,1390.0,0.0,37900.0,1,1,1,110.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3250.76420133391,0.09300354879146441,0.0857721425154066,21055.555555555555,5,3,5,5_1,5_3,5_0_0 +6238,2,27.0,3,0.0,3,111,4,0,65,8.0,0.0,0.0,1063.284514449194,0.0,194.62541362475451,21825.64,0,41,2,2628,201706238,,,,332.0,1.0,0.0,2.0,0.0,1.0,1.0,6784.67635616696,0.0,790.0,110.0,0.0,29200.0,0,1,3,47.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1257.9099280739483,0.0576345036422276,0.04307910712582015,29200.0,8,4,8,8_0,8_3,8_0_1 +6239,2,52.0,2,0.0,99,111,2,0,42,2.0,0.0,0.0,367.4388258792784,0.0,1894.9437999282918,29004.539999999997,0,30,2,2629,201706239,,,,645.0,1.0,1.0,4.0,1.0,2.0,1.5,1769.4339145384363,0.0,273.0,1071.0,0.0,18275.0,0,1,3,90.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2262.38262580757,0.07800098280502192,0.12379658691149495,12183.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +6240,2,72.0,4,0.0,6,111,6,68,78,8.0,166.57788095958264,0.0,1144.0403003567276,254.7823596542241,0.0,15139.199999999999,50,50,1,263,201706240,,,220.0,,1.0,3.0,4.0,0.0,2.0,1.5,1501.3102045513237,0.0,850.0,0.0,0.0,44364.0,1,5,1,98.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1565.4005409705344,0.10340047961388545,0.035285378707297234,29576.0,8,4,8,8_1,8_3,8_0_0 +6241,2,54.0,3,0.0,9,111,2,0,46,1.0,0.0,0.0,115.74995980079832,0.0,0.0,21617.851111111107,0,41,2,2630,201706241,,,,,1.0,0.0,3.0,2.0,3.0,1.6,2606.8770127580633,0.0,86.0,0.0,0.0,17060.0,0,1,3,70.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,115.74995980079832,0.005354369368438538,0.006784874548698612,10662.5,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +6242,1,47.0,2,91.0,9,111,1,0,42,7.0,0.0,0.0,464.34576896831885,0.0,0.0,36826.56,0,20,2,2632,201706242,,,,423.0,1.0,0.0,3.0,2.0,4.0,2.1,2089.2963624131316,0.0,345.0,0.0,0.0,48001.0,0,1,3,67.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,464.34576896831885,0.012608991145746953,0.009673668652076391,22857.619047619046,6,3,6,6_0,6_4,6_0_0 +6243,1,29.0,4,353.0,9,112,4,0,68,3.0,0.0,0.0,1440.1448486843512,106.15931652259337,0.0,11783.986811688997,0,43,2,2633,201706243,,,,177.0,1.0,0.0,2.0,1.0,2.0,1.3,1186.8057627681076,0.0,1070.0,0.0,0.0,20249.0,0,1,3,54.0,8,3.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1546.3041652069446,0.13122079903153872,0.0763644706013603,15576.153846153846,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +6244,2,54.0,2,0.0,4,111,2,0,45,6.0,0.0,0.0,153.10124312560416,0.0,285.30088586496896,18126.368161188147,0,44,2,2634,201706244,,,120.0,336.0,1.0,0.0,3.0,0.0,1.0,1.0,2414.579294988586,275.0,0.0,0.0,0.0,24283.0,0,1,3,75.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,438.40212899057315,0.024185878003364837,0.01805387015568806,24283.0,7,4,7,7_0,7_2,7_0_1 +6245,2,45.0,2,0.0,1,112,2,42,55,6.0,2538.3296146222115,0.0,1341.5129678031033,0.0,744.2027757308759,36936.51000586009,20,43,1,2636,201706245,,,340.0,,2.0,0.0,5.0,2.0,4.0,2.3,1814.2649208705693,717.3330804968236,700.0,0.0,0.0,49251.0,1,1,1,120.0,7,0.0,4,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4624.045358156191,0.12518901643448643,0.09388733950896816,21413.478260869568,6,3,6,6_1,6_0,6_1_0 +6246,2,49.0,1,0.0,1,400,5,0,85,6.0,0.0,41.637789586903196,916.894762726689,102.62067263850693,28.17918770757014,50507.271191295746,0,50,1,2638,201706246,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3486.263442335007,27.161768517078738,670.0,0.0,0.0,21810.0,0,6,1,70.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1089.3324126596694,0.021567833441918385,0.04994646550479915,21810.0,6,3,6,6_1,6_0,6_1_0 +6247,1,53.0,2,200.0,5,111,1,0,68,1.0,0.0,0.0,305.5260566835026,0.0,106.15931652259337,8632.439999999999,0,50,2,2639,201706247,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3398.5619305527343,0.0,227.0,60.0,0.0,9961.0,0,1,3,60.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,411.68537320609596,0.04769049923383146,0.04132972324125047,9961.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6248,2,37.0,4,0.0,5,300,4,69,46,4.0,0.0,0.0,1265.1739792180283,99.08202875442048,0.0,40899.38784974978,41,41,1,264,201706248,,,700.0,,2.0,0.0,7.0,2.0,4.0,2.1,2584.2222036199505,0.0,940.0,0.0,0.0,36660.0,1,1,3,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1364.2560079724487,0.03335639186053967,0.03721374817164345,17457.142857142855,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6249,2,85.0,1,0.0,1,112,2,77,74,10.0,0.0,0.0,2974.857287379535,2431.0483483673884,2328.1841526472426,53307.16233052052,41,12,1,2640,201706249,,,,,0.0,6.0,6.0,0.0,2.0,1.5,1959.9064068123714,2244.124269144464,1282.0,0.0,0.0,100644.0,5,5,1,180.0,9,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,7734.089788394166,0.145085377841733,0.07684600958223209,67096.0,10,5,10,10_1,10_0,10_1_0 +6250,1,40.0,3,25.0,4,111,1,0,65,1.0,0.0,0.0,484.5347154452023,0.0,764.3470789626723,55866.3,0,31,2,2641,201706250,432.0,432.0,,195.0,1.0,0.0,2.0,0.0,1.0,1.0,3101.8578548084733,0.0,360.0,432.0,0.0,7162.0,0,1,3,55.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1248.8817944078746,0.022354832777683048,0.17437612320690793,7162.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6251,2,43.0,2,0.0,9,120,5,54,13,6.0,0.0,277.585263912688,2891.057135489707,7.077287768172892,0.0,33355.800315994114,42,50,1,2642,201706251,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.1,2253.08110741519,0.0,2148.0,0.0,0.0,49069.0,1,1,1,96.0,0,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3175.719687170568,0.09520741991154712,0.06471947028002543,23366.190476190473,6,3,6,6_1,6_1,6_0_0 +6252,2,49.0,4,0.0,9,111,1,0,52,2.0,0.0,0.0,646.0462872602698,0.0,0.0,22631.68,0,50,2,2643,201706252,,,,514.0,1.0,0.0,3.0,2.0,3.0,2.0,1130.4834638602929,0.0,480.0,0.0,0.0,24085.0,0,1,3,63.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,646.0462872602698,0.028546103835873863,0.026823595069971756,12042.5,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +6253,2,73.0,2,0.0,9,112,6,77,74,9.0,0.0,76.3359475759892,2467.089259475155,0.0,0.0,27740.340000000004,60,71,1,2644,201706253,,,588.0,,0.0,3.0,4.0,0.0,2.0,1.5,2212.8191420024095,0.0,1833.0,0.0,0.0,49755.0,5,5,2,104.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2543.4252070511443,0.0916868793623706,0.051118987178196046,33170.0,9,5,9,9_1,9_1,9_0_0 +6254,2,45.0,1,0.0,7,112,2,48,63,9.0,1256.4731592379947,0.0,1065.976373979445,191.08676974066807,0.0,45227.556249104906,42,50,1,2645,201706254,,,252.0,,2.0,0.0,5.0,0.0,2.0,1.5,1489.1835400697626,0.0,792.0,0.0,0.0,47561.0,1,1,2,95.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2513.5363029581076,0.05557532865835201,0.05284868490902436,31707.333333333332,8,4,8,8_1,8_0,8_0_0 +6255,2,53.0,2,0.0,1,111,2,34,38,9.0,0.0,0.0,1892.8880968256512,0.0,3527.356407057798,41808.880000000005,30,31,1,2647,201706255,,,600.0,,2.0,0.0,4.0,1.0,3.0,2.0,2724.3340319121385,3400.0,0.0,0.0,0.0,82886.0,1,1,1,150.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5420.244503883449,0.12964337968114545,0.06539396887150363,41443.0,10,5,10,10_1,10_2,10_1_0 +6256,2,33.0,3,0.0,1,111,2,52,46,8.0,0.0,0.0,1938.1388617808093,0.0,1231.448071662083,36533.36,50,30,1,2648,201706256,,,360.0,,2.0,0.0,5.0,1.0,3.0,1.8,2047.2610951678773,0.0,1440.0,696.0,0.0,53890.0,1,1,2,98.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3169.5869334428926,0.08675870309883604,0.058815864417199715,29938.888888888887,8,4,8,8_1,8_3,8_1_0 +6257,2,28.0,3,0.0,9,111,2,52,67,8.0,0.0,0.0,324.52033089124353,0.0,613.1073304999101,52065.61772661626,42,42,8,2649,201706257,,,,401.0,2.0,0.0,2.0,0.0,2.0,1.5,4309.309735103013,77.633450270219,209.0,301.0,0.0,41431.0,1,1,3,32.0,6,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,937.6276613911537,0.01800857652960934,0.022631065178034652,27620.666666666668,8,4,8,8_0,8_2,8_0_0 +6258,2,44.0,3,0.0,2,112,6,54,23,9.0,0.0,0.0,2496.6997143079175,0.0,0.0,56879.00000000001,31,50,2,265,201706258,,,400.0,,2.0,0.0,3.0,1.0,3.0,1.8,2812.8585101615135,0.0,1855.0,0.0,0.0,57446.0,1,1,1,90.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2496.6997143079175,0.04389492983891976,0.043461680783830337,31914.444444444445,9,5,9,9_0,9_1,9_0_1 +6259,2,54.0,4,0.0,1,111,2,0,68,6.0,0.0,0.0,751.5879207984204,0.0,1400.5679851553023,15357.6,0,71,1,2652,201706259,,,228.0,,1.0,1.0,4.0,0.0,1.0,1.0,1612.6386650856405,1350.0,0.0,0.0,0.0,22430.0,0,1,3,90.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2152.1559059537226,0.14013621307715546,0.09594988434925202,22430.0,6,3,6,6_1,6_2,6_1_0 +6260,2,37.0,2,0.0,8,111,2,47,33,6.0,0.0,0.0,672.964882562781,0.0,1142.981974559922,28605.78238259149,12,20,1,2653,201706260,,,408.0,,2.0,0.0,7.0,2.0,4.0,2.1,2011.398661664424,0.0,500.0,646.0,0.0,43821.0,1,1,1,140.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1815.946857122703,0.063481810524708,0.04144010536324372,20867.142857142855,5,3,5,5_1,5_3,5_0_0 +6261,2,38.0,1,0.0,7,111,5,47,43,8.0,0.0,0.0,1144.0403003567276,61.9262679715128,0.0,32403.539999999997,50,33,1,2654,201706261,,,319.0,,2.0,0.0,4.0,2.0,4.0,2.1,2528.5494007389425,0.0,850.0,0.0,0.0,60510.0,1,1,2,93.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1205.9665683282403,0.037217124065094136,0.019930037486832596,28814.285714285714,8,4,8,8_1,8_2,8_0_0 +6262,2,66.0,2,0.0,4,111,2,77,77,6.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,18880.380000000005,70,60,2,2655,201706262,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2181.635937187616,750.0,0.0,0.0,0.0,32305.0,5,5,1,73.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1195.6421699742903,0.06332723017091234,0.03701105618245752,21536.666666666668,6,3,6,6_0,6_3,6_0_1 +6263,2,55.0,5,0.0,2,300,2,56,63,3.0,1586.456009138882,0.0,1426.6855510330956,198.16405750884095,0.0,49108.29,50,50,1,2656,201706263,,,620.0,,3.0,2.0,6.0,3.0,5.0,2.8,1412.2687414847605,0.0,1060.0,0.0,0.0,42649.0,4,1,3,126.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3211.3056176808186,0.06539233228607265,0.07529615272763297,15231.785714285716,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +6264,1,36.0,3,160.0,4,112,2,0,46,2.0,2379.684013708323,0.0,565.290501352736,0.0,0.0,39020.12784974977,0,43,1,2657,201706264,,,260.0,,1.0,0.0,5.0,2.0,3.0,1.8,536.2696205969925,0.0,420.0,0.0,0.0,23890.0,0,1,2,95.0,8,0.0,2,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,2944.9745150610593,0.07547321542361232,0.12327226936212052,13272.222222222223,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +6265,1,65.0,2,256.0,7,111,2,0,77,4.0,0.0,0.0,672.964882562781,0.0,0.0,14384.950875301627,0,70,2,2659,201706265,,,,170.0,0.0,1.0,2.0,0.0,1.0,1.0,2630.476892539922,0.0,500.0,0.0,0.0,17494.0,0,5,3,32.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,672.964882562781,0.046782563833306805,0.03846832528654287,17494.0,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +6266,2,76.0,1,0.0,1,111,1,0,74,9.0,0.0,0.0,778.1695978355156,0.0,1073.8856792653332,38733.91369488954,0,41,2,266,201706266,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2438.2447195448835,1035.1126702695867,150.0,0.0,0.0,34773.0,0,5,1,34.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1852.0552771008488,0.047814824282659686,0.05326130265150688,34773.0,9,5,9,9_0,9_4,9_1_0 +6267,2,62.0,1,0.0,3,111,1,52,75,9.0,0.0,0.0,488.572504740579,0.0,325.555237335953,43682.80753821486,42,50,2,2660,201706267,,,,,1.0,3.0,5.0,0.0,2.0,1.5,4107.0403051529,0.0,363.0,184.0,0.0,56367.0,1,5,1,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,814.1277420765321,0.01863725772122847,0.014443339934297231,37578.0,9,5,9,9_0,9_3,9_0_1 +6268,1,26.0,4,368.0,99,111,1,81,52,2.0,0.0,0.0,359.36324728852503,0.0,562.6443775697448,5495.719999999999,71,71,2,2661,201706268,999999.0,62.0,,,2.0,0.0,2.0,2.0,4.0,2.1,3691.6240838116205,0.0,267.0,318.0,0.0,24346.0,4,8,3,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,922.0076248582699,0.16776830421824074,0.03787101063247638,11593.333333333332,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +6269,0,56.0,4,0.0,1,212,2,62,12,2.0,0.0,0.0,0.0,1231.448071662083,0.0,30259.600000000002,71,50,1,2662,201706269,,,,,2.0,0.0,7.0,3.0,5.0,2.8,1403.4303333984437,0.0,0.0,0.0,0.0,33205.0,1,1,5,120.0,4,0.0,4,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1231.448071662083,0.04069611203261388,0.037086224112696374,11858.928571428572,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6270,0,52.0,2,0.0,99,111,4,0,34,10.0,0.0,0.0,524.9126083989692,0.0,0.0,17737.244177580942,0,20,2,2663,201706270,,,,,1.0,1.0,1.0,0.0,1.0,1.0,4455.676158535242,0.0,390.0,0.0,0.0,44954.0,0,1,5,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,524.9126083989692,0.029593808550171196,0.01167666077321193,44954.0,10,5,10,10_0,10_4,10_0_0 +6271,2,42.0,3,0.0,9,120,5,65,42,5.0,0.0,138.792631956344,2597.6444466923344,88.46609710216114,0.0,72065.29999999997,42,30,1,2664,201706271,,,250.0,,2.0,0.0,6.0,2.0,4.0,2.3,2130.065950557817,0.0,1930.0,0.0,0.0,43998.0,1,1,2,137.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2824.9031757508396,0.03919921481976542,0.06420526332448838,19129.565217391304,5,3,5,5_1,5_0,5_0_0 +6272,2,71.0,2,0.0,5,111,6,75,74,9.0,1269.1648073111057,0.0,2691.859530251124,53.079658261296686,0.0,31295.800315994118,20,10,1,2665,201706272,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1832.6093643219901,0.0,2000.0,0.0,0.0,58099.0,5,5,1,140.0,8,7.0,3,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4014.103995823526,0.12826334381268617,0.06909075880520364,38732.666666666664,9,5,9,9_1,9_3,9_0_0 +6273,2,79.0,3,0.0,1,300,6,0,75,6.0,2243.2487969223794,0.0,1057.9007953886917,0.0,0.0,20186.88,0,41,1,2667,201706273,,,,,0.0,3.0,7.0,0.0,1.0,1.0,2690.960248067855,0.0,786.0,0.0,0.0,23811.0,0,5,5,200.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3301.149592311071,0.16352946033815383,0.13863968721645756,23811.0,6,3,6,6_1,6_0,6_1_0 +6274,0,85.0,4,0.0,6,111,4,0,72,2.0,0.0,0.0,982.5287285416603,0.0,0.0,14358.771191295744,0,70,2,2668,201706274,,,,,0.0,0.0,3.0,0.0,1.0,1.0,5772.57085574396,0.0,730.0,0.0,0.0,11735.0,0,5,5,76.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,982.5287285416603,0.06842707606743306,0.08372635096222072,11735.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +6275,2,74.0,2,0.0,4,112,4,0,86,6.0,0.0,0.0,1157.4995980079832,106.15931652259337,0.0,22515.370875301625,0,70,1,2669,201706275,,,250.0,,0.0,3.0,5.0,0.0,1.0,1.0,3311.3582037732276,0.0,860.0,0.0,0.0,22497.0,0,6,1,135.0,7,0.0,1,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1263.6589145305766,0.056124277122912285,0.05617010777128402,22497.0,6,3,6,6_1,6_0,6_0_1 +6276,2,46.0,2,0.0,99,111,4,52,52,6.0,0.0,0.0,1732.2116077165983,0.0,201.70270139292742,32026.96,71,50,2,267,201706276,,,324.0,423.0,2.0,1.0,3.0,1.0,3.0,2.0,418.5314356990924,0.0,1287.0,114.0,0.0,43456.0,1,1,3,70.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1933.9143091095257,0.06038394868290733,0.04450281455056898,21728.0,6,3,6,6_0,6_2,6_0_0 +6277,2,93.0,2,0.0,1,300,2,0,74,4.0,3490.203220105541,0.0,807.5578590753372,283.09151072691566,0.0,54546.810875301635,70,70,1,2670,201706277,,,400.0,,0.0,3.0,4.0,0.0,2.0,1.5,3022.990295892511,0.0,600.0,0.0,0.0,28645.0,8,5,1,66.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4580.852589907794,0.0839802092257967,0.15991805166373865,19096.666666666668,5,3,5,5_1,5_1,5_1_0 +6278,2,88.0,2,0.0,1,112,4,0,71,4.0,0.0,0.0,376.8603342351573,109.69796040667983,0.0,14492.24,0,44,1,2672,201706278,,,109.0,,0.0,1.0,5.0,0.0,1.0,1.0,2569.170634359886,0.0,280.0,0.0,0.0,16188.0,0,5,5,140.0,8,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,486.55829464183716,0.033573712182646515,0.030056726874341314,16188.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6279,2,47.0,3,0.0,1,111,4,0,54,5.0,0.0,222.0682111301504,4710.754177939467,60.15694602946958,0.0,36164.08,0,20,2,2673,201706279,,,320.0,,1.0,0.0,6.0,2.0,3.0,1.8,808.6755542786904,0.0,3500.0,0.0,0.0,33351.0,0,1,2,140.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4992.979335099087,0.13806460264160145,0.149710033735093,18528.333333333332,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +6280,2,83.0,2,0.0,1,221,2,71,71,5.0,0.0,0.0,853.4698389510952,0.0,1590.4227564763544,24521.100000000002,71,71,1,2674,201706280,,,291.0,,0.0,4.0,5.0,0.0,2.0,1.5,1861.0518780724335,1533.0,0.0,0.0,0.0,29849.0,5,5,1,100.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2443.8925954274496,0.09966488434154461,0.08187519164553082,19899.333333333332,5,3,5,5_1,5_1,5_1_0 +6281,1,47.0,3,247.0,5,111,4,63,52,3.0,0.0,0.0,2842.603663945187,123.8525359430256,0.0,31192.03003031546,50,50,1,2675,201706281,,,504.0,,3.0,0.0,4.0,2.0,4.0,2.3,411.1623774079285,0.0,2112.0,0.0,0.0,36484.0,1,1,3,90.0,7,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2966.4561998882123,0.09510301820705867,0.0813084146444527,15862.608695652176,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +6282,1,32.0,2,193.0,1,111,2,85,52,2.0,0.0,0.0,538.3719060502248,0.0,1592.3897478389006,37012.54,43,50,2,2676,201706282,,,300.0,116.0,1.0,0.0,4.0,3.0,5.0,2.4,3412.818283092416,0.0,400.0,900.0,0.0,28761.0,6,1,3,74.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2130.7616538891252,0.057568641706003565,0.07408510322621345,11983.75,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +6283,2,52.0,3,0.0,6,300,6,0,63,5.0,0.0,0.0,1831.8104103358899,127.39117982711205,0.0,22055.047849749775,0,50,1,2678,201706283,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2153.351754076666,0.0,1361.0,0.0,0.0,18991.0,0,1,2,100.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1959.2015901630018,0.08883234366617934,0.10316474067521467,18991.0,5,3,5,5_1,5_0,5_0_0 +6284,1,33.0,4,466.0,99,111,1,0,52,2.0,0.0,0.0,300.6351683193682,0.0,560.2271940621209,11941.800000000001,0,41,2,2679,201706284,,,,84.0,1.0,0.0,4.0,3.0,4.0,1.9,851.8921743724637,540.0,0.0,0.0,0.0,20143.0,0,1,3,69.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,860.8623623814891,0.07208815776361094,0.042737544674650706,10601.578947368422,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6285,1,37.0,5,361.0,6,111,2,0,85,3.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,16185.186974448148,0,50,2,268,201706285,,,240.0,102.0,0.0,0.0,3.0,1.0,2.0,1.3,821.7147561769575,1400.0,0.0,0.0,0.0,19773.0,0,4,3,79.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2231.8653839520084,0.13789555767724496,0.11287439356455815,15210.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +6286,2,76.0,3,0.0,3,111,5,0,77,7.0,0.0,2775.8526391268797,1239.7056922795,120.31389205893916,361.36253107278463,23568.899628330328,0,70,1,2680,201706286,,,160.0,,0.0,1.0,4.0,0.0,1.0,1.0,3249.5173994904826,348.31541354571596,777.0,0.0,0.0,26161.0,0,5,1,100.0,7,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4497.2347545381035,0.19081224942433586,0.171906072189064,26161.0,7,4,7,7_1,7_2,7_0_1 +6287,1,57.0,4,265.0,1,120,4,0,52,1.0,0.0,0.0,1884.3016711757866,265.39829130648343,0.0,8187.980315994116,0,41,1,2681,201706287,,,550.0,,1.0,1.0,4.0,0.0,1.0,1.0,3275.9084482518124,0.0,1400.0,0.0,0.0,9000.0,0,4,3,80.0,0,3.0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,2149.69996248227,0.26254337205514783,0.2388555513869189,9000.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +6288,2,67.0,2,0.0,2,111,2,0,77,7.0,0.0,0.0,323.0231436301349,0.0,1486.2304313163072,34618.2,0,31,1,2682,201706288,,,180.0,,0.0,1.0,4.0,0.0,1.0,1.0,2153.7698194689883,0.0,240.0,840.0,0.0,29726.0,0,5,1,100.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1809.253574946442,0.052263074768371616,0.06086434686625991,29726.0,8,4,8,8_1,8_3,8_0_1 +6289,2,33.0,3,0.0,1,112,4,85,21,3.0,0.0,0.0,1752.4005541934816,88.46609710216114,0.0,33530.35,60,50,1,2683,201706289,,,220.0,,1.0,0.0,5.0,3.0,5.0,2.4,2545.2740943810036,0.0,1302.0,0.0,0.0,37748.0,6,1,1,120.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1840.866651295643,0.05490150419830521,0.04876726320058395,15728.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6290,1,83.0,4,183.0,1,111,1,86,77,7.0,0.0,832.755791738064,403.7789295376686,0.0,180.47083808840873,17578.92,70,71,2,2684,201706290,600.0,600.0,,154.0,0.0,0.0,4.0,0.0,2.0,1.5,2679.2621606789685,0.0,300.0,102.0,0.0,35159.0,5,5,3,80.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1417.0055593641414,0.08060822618022845,0.04030278333752784,23439.333333333332,6,3,6,6_0,6_2,6_1_0 +6291,2,72.0,3,0.0,5,400,4,78,78,4.0,0.0,0.0,2078.1155573538676,212.31863304518674,0.0,26595.780631988237,70,70,1,2685,201706291,,,253.0,,1.0,0.0,4.0,1.0,3.0,2.0,2812.9797306025253,0.0,1544.0,0.0,0.0,33398.0,5,5,1,70.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2290.4341903990544,0.08612020914491304,0.0685799805497052,16699.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6292,2,36.0,2,0.0,1,111,2,43,38,9.0,0.0,0.0,1803.545885268253,0.0,0.0,48724.35333333333,33,12,2,2686,201706292,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3148.592589632774,0.0,1340.0,0.0,0.0,72843.0,1,1,2,100.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1803.545885268253,0.03701528623540315,0.024759357594665965,34687.142857142855,9,5,9,9_0,9_3,9_1_0 +6293,2,33.0,3,0.0,99,111,1,0,55,6.0,0.0,0.0,258.4185149041079,0.0,0.0,15782.119999999999,0,42,2,2687,201706293,,,,270.0,1.0,4.0,2.0,0.0,1.0,1.0,2540.206328993472,0.0,192.0,0.0,0.0,21033.0,0,1,3,33.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,258.4185149041079,0.016374131922967758,0.012286336466700323,21033.0,5,3,5,5_0,5_3,5_0_0 +6294,1,33.0,4,330.0,2,111,4,68,84,3.0,0.0,0.0,1453.6041463356069,0.0,0.0,24494.831191295743,50,50,8,2688,201706294,,,960.0,,1.0,0.0,3.0,2.0,4.0,2.1,2933.776405500242,0.0,1080.0,0.0,0.0,31852.0,4,3,3,62.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1453.6041463356069,0.059343301245209076,0.045636196984038896,15167.619047619048,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +6295,1,61.0,3,144.0,99,111,4,0,67,2.0,0.0,0.0,403.7789295376686,0.0,0.0,13057.82,0,70,2,2689,201706295,,,,426.0,1.0,4.0,2.0,0.0,1.0,1.0,746.1558879110702,0.0,300.0,0.0,0.0,12755.0,0,4,3,50.0,5,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,403.7789295376686,0.030922384405487946,0.03165652132792384,12755.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6296,1,71.0,3,49.0,2,111,1,0,86,2.0,0.0,0.0,403.7789295376686,0.0,884.6609710216114,10135.92,0,50,2,269,201706296,,,300.0,151.0,0.0,2.0,4.0,0.0,1.0,1.0,1253.223311824632,0.0,300.0,500.0,0.0,13018.0,0,5,3,72.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1288.43990055928,0.12711622630795033,0.09897372104465202,13018.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +6297,2,79.0,3,0.0,4,111,1,0,78,3.0,0.0,0.0,316.2934948045071,0.0,0.0,18887.090875301627,0,70,2,2690,201706297,,,,275.0,0.0,3.0,3.0,0.0,1.0,1.0,2764.702442526471,0.0,235.0,0.0,0.0,14665.0,0,5,3,50.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,316.2934948045071,0.01674654381094335,0.021567916454449852,14665.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6298,1,38.0,4,250.0,99,111,1,0,21,1.0,0.0,0.0,322.9044400467288,0.0,601.7255047333891,19819.568161188145,0,50,2,2691,201706298,,,,,1.0,0.0,2.0,1.0,2.0,1.3,1934.5863263427213,580.0,0.0,0.0,0.0,10330.0,0,1,3,47.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,924.629944780118,0.04665237593777564,0.08950919116942091,7946.153846153846,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6299,2,45.0,2,0.0,9,111,1,0,48,6.0,0.0,0.0,530.2963274594714,0.0,0.0,24793.887533755656,0,43,2,2692,201706299,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2797.018328754849,0.0,394.0,0.0,0.0,23350.0,0,1,2,71.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,530.2963274594714,0.021388187985345142,0.022710763488628327,23350.0,6,3,6,6_0,6_3,6_0_0 +6300,2,43.0,2,0.0,8,120,2,68,64,5.0,0.0,0.0,1378.2320794885754,0.0,1617.1602550275056,35472.02,43,71,1,2694,201706300,,,576.0,,2.0,0.0,4.0,2.0,4.0,2.1,2757.876209552573,0.0,1024.0,914.0,0.0,39935.0,1,1,2,80.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2995.392334516081,0.0844438048500221,0.07500669424104373,19016.666666666664,5,3,5,5_1,5_0,5_0_0 +6301,1,42.0,4,23.0,99,111,2,0,52,3.0,0.0,0.0,1145.3862301218533,0.0,849.274532180747,35138.120315994114,0,33,1,2696,201706301,,,336.0,,1.0,0.0,7.0,2.0,3.0,1.8,516.3705999394143,0.0,851.0,480.0,0.0,26000.0,0,1,2,90.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1994.6607623026002,0.05676629097870878,0.07671772162702309,14444.444444444443,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +6302,2,81.0,2,0.0,4,211,2,75,75,7.0,0.0,0.0,484.5347154452023,0.0,3687.2669272180765,37223.46469104511,50,70,1,2697,201706302,,,334.0,,0.0,1.0,4.0,0.0,2.0,1.5,3045.8950910379835,0.0,360.0,2084.0,0.0,39850.0,5,5,1,83.0,1,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4171.8016426632785,0.11207451206622615,0.10468761964023283,26566.666666666668,7,4,7,7_1,7_1,7_0_1 +6303,2,51.0,3,0.0,2,120,6,85,38,10.0,758.3259723683857,0.0,1084.819390691203,300.7847301473479,0.0,54561.11883901973,60,31,1,2698,201706303,,,250.0,,1.0,1.0,3.0,0.0,2.0,1.5,1532.596969036061,0.0,806.0,0.0,0.0,58190.0,6,1,2,70.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2143.9300932069364,0.03929410061279189,0.03684361734330532,38793.333333333336,9,5,9,9_1,9_0,9_0_1 +6304,2,33.0,2,0.0,5,120,4,43,53,8.0,0.0,0.0,0.0,0.0,0.0,66601.51047419751,30,42,1,2699,201706304,,,,,2.0,0.0,5.0,1.0,3.0,1.8,5000.678626215738,0.0,0.0,0.0,0.0,48168.0,1,1,2,93.0,0,0.0,4,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,26760.0,7,4,7,7_1,7_0,7_0_0 +6305,2,51.0,2,0.0,4,221,1,52,65,8.0,1745.1016100527704,0.0,538.3719060502248,0.0,0.0,38342.66816118816,43,50,2,270,201706305,500.0,500.0,200.0,100.0,2.0,0.0,3.0,0.0,2.0,1.5,5061.3946972964395,0.0,400.0,0.0,0.0,42141.0,1,1,3,70.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,2283.4735161029953,0.059554371816367496,0.05418650521114818,28094.0,8,4,8,8_0,8_1,8_0_1 +6306,1,30.0,3,437.0,2,111,1,52,53,2.0,0.0,0.0,1049.8252167979383,0.0,0.0,15176.160000000002,50,71,2,2700,201706306,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3877.7727749692704,0.0,780.0,0.0,0.0,26354.0,4,1,3,64.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1049.8252167979383,0.06917594548277946,0.039835517067539586,12549.52380952381,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6307,2,33.0,2,0.0,99,400,6,0,43,9.0,0.0,1387.9263195634398,2018.894647688343,0.0,0.0,60357.99999999999,0,33,1,2701,201706307,,,48.0,,1.0,0.0,8.0,2.0,3.0,1.6,264.82534596681046,0.0,1500.0,0.0,0.0,45919.0,0,1,2,150.0,0,1.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3406.820967251783,0.056443569489575254,0.07419196775303867,28699.375,8,4,8,8_1,8_1,8_0_0 +6308,2,49.0,3,0.0,5,111,2,0,22,10.0,0.0,0.0,1977.1708249694505,0.0,0.0,94187.92,0,71,2,2702,201706308,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3405.02923447756,0.0,1469.0,0.0,0.0,49520.0,0,1,2,35.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1977.1708249694505,0.020991766512833604,0.03992671294364803,49520.0,10,5,10,10_0,10_3,10_0_0 +6309,1,37.0,3,203.0,1,111,2,0,42,4.0,0.0,0.0,44.538543454721214,0.0,82.99662134253643,23981.82,0,30,2,2704,201706309,,,,,1.0,0.0,3.0,2.0,3.0,1.6,1976.2505230813063,80.0,0.0,0.0,0.0,28651.0,0,1,3,61.0,4,4.0,2,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,127.53516479725764,0.005317993580022602,0.004451333803261933,17906.875,4,2,4_1,4_0_1,4_2_1,4_1_0_1 +6310,2,71.0,3,0.0,1,120,2,78,78,4.0,0.0,0.0,2146.8135237735064,0.0,3807.1153039027786,22088.858809473717,71,70,1,2707,201706310,,,420.0,,0.0,2.0,3.0,0.0,2.0,1.5,2055.816910513655,258.7781675673967,1488.0,2000.0,0.0,26357.0,4,5,1,90.0,0,0.0,3,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5953.928827676285,0.26954442866567185,0.22589554303131182,17571.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6311,2,32.0,2,0.0,5,112,2,63,34,8.0,0.0,0.0,2355.3770889697334,0.0,0.0,109085.5,50,30,1,2708,201706311,,,1330.0,,2.0,0.0,5.0,3.0,5.0,2.4,792.1216179678468,0.0,1750.0,0.0,0.0,65652.0,1,1,2,120.0,10,2.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2355.3770889697334,0.02159202725357388,0.03587669970404151,27355.0,8,4,8,8_1,8_1,8_0_0 +6312,2,34.0,4,0.0,9,112,4,48,52,6.0,0.0,333.10231669522557,1707.984871944338,0.0,0.0,35563.3,30,50,1,2709,201706312,,,620.0,,2.0,0.0,4.0,2.0,4.0,2.1,2247.5150887948544,0.0,1269.0,0.0,0.0,44389.0,1,1,2,128.0,4,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2041.0871886395635,0.05739307625106678,0.0459818240699174,21137.619047619046,5,3,5,5_1,5_0,5_0_0 +6313,2,74.0,1,0.0,9,112,2,74,74,9.0,2062.392811880547,693.9631597817199,1582.0240909852694,244.16642800196476,658.1623981792485,53837.460431637635,50,50,1,271,201706313,,,8.0,,0.0,1.0,4.0,0.0,2.0,1.5,1416.4846032667851,634.3992201445772,913.0,0.0,0.0,48339.0,5,5,1,147.0,8,1.0,3,5,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,5240.708888828749,0.0973431667618007,0.10841574895692399,32226.0,9,5,9,9_1,9_1,9_0_0 +6314,2,57.0,2,0.0,1,111,2,0,37,10.0,0.0,0.0,731.9401304208071,0.0,2183.808498934626,41997.91302805007,0,12,1,2710,201706314,,,136.0,,1.0,0.0,4.0,0.0,1.0,1.0,2239.5422669011277,512.080416260492,332.0,934.0,0.0,51120.0,0,1,3,79.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2915.7486293554334,0.0694260361796556,0.05703733625499674,51120.0,10,5,10,10_1,10_3,10_1_0 +6315,0,60.0,3,0.0,1,112,4,72,21,3.0,47.593680274166466,0.0,2018.894647688343,0.0,0.0,31320.274857300577,60,60,2,2712,201706315,,,700.0,,2.0,3.0,3.0,1.0,3.0,2.0,2541.1509970693455,0.0,1500.0,0.0,0.0,32370.0,6,1,5,58.0,10,1.0,4,2,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,2066.4883279625096,0.06597925265272131,0.06383961470381556,16185.0,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +6316,2,65.0,2,0.0,4,111,2,75,75,6.0,0.0,0.0,1211.3367886130059,176.9321942043223,0.0,28953.236658454032,42,70,1,2713,201706316,,,340.0,,0.0,1.0,4.0,0.0,2.0,1.5,1707.770145938555,0.0,900.0,0.0,0.0,34915.0,5,5,1,100.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1388.2689828173282,0.04794866284533231,0.03976139145975449,23276.666666666668,6,3,6,6_1,6_2,6_0_1 +6317,2,80.0,3,0.0,6,221,6,0,75,5.0,0.0,0.0,2220.7841124571773,205.24134527701386,0.0,13691.0,0,41,1,2715,201706317,,,160.0,,0.0,3.0,4.0,0.0,1.0,1.0,2200.9412068127417,0.0,1650.0,0.0,0.0,21554.0,0,5,1,117.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2426.025457734191,0.1771985580114083,0.11255569535743673,21554.0,6,3,6,6_1,6_1,6_0_0 +6318,2,34.0,1,0.0,9,111,2,0,37,10.0,0.0,0.0,309.56384597887927,0.0,389.25082724950903,26522.6,0,20,2,2716,201706318,,,,600.0,1.0,0.0,2.0,0.0,1.0,1.0,3221.9237899386153,0.0,230.0,220.0,0.0,51497.0,0,1,3,50.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,698.8146732283883,0.026347894747437595,0.013570007441761428,51497.0,10,5,10,10_0,10_3,10_0_0 +6319,2,74.0,3,0.0,4,300,5,77,71,3.0,0.0,0.0,942.1508355878933,70.77287768172891,0.0,37340.82063198823,50,70,1,2717,201706319,,,,,0.0,1.0,5.0,0.0,2.0,1.5,1500.7257241543916,0.0,700.0,0.0,0.0,22071.0,5,5,1,185.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1012.9237132696222,0.02712644489665809,0.045893874915935946,14714.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +6320,2,50.0,1,0.0,9,111,5,52,33,9.0,0.0,319.2230534995912,780.639263772826,0.0,1238.525359430256,29153.679999999997,50,42,1,2718,201706320,,,290.0,,3.0,3.0,6.0,1.0,3.0,2.0,2149.5422888718685,0.0,580.0,700.0,0.0,73693.0,1,1,2,185.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2338.387676702673,0.08020900540524124,0.0317314762148735,36846.5,9,5,9,9_1,9_3,9_0_0 +6321,0,62.0,3,0.0,2,111,2,77,78,4.0,0.0,0.0,686.4241802140366,0.0,2477.050718860512,36883.48,50,50,1,2720,201706321,,,350.0,,0.0,3.0,4.0,0.0,2.0,1.5,2878.3048333109136,0.0,510.0,1400.0,0.0,24278.0,5,5,5,90.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3163.4748990745484,0.0857694257449283,0.130302121223929,16185.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +6322,2,46.0,1,0.0,7,111,2,0,37,10.0,0.0,0.0,1154.807738477732,0.0,0.0,14738.8,0,31,2,2722,201706322,,,335.0,540.0,1.0,0.0,2.0,0.0,1.0,1.0,2899.903859331487,0.0,858.0,0.0,0.0,59673.0,0,1,3,55.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1154.807738477732,0.07835154412012729,0.019352265488206257,59673.0,10,5,10,10_0,10_3,10_0_0 +6323,2,55.0,2,0.0,8,112,2,56,37,4.0,0.0,0.0,969.0694308904046,2383.2766559322213,0.0,40864.49999999999,50,20,1,2723,201706323,,,680.0,,2.0,0.0,6.0,3.0,5.0,2.8,1372.6673779821786,0.0,720.0,0.0,0.0,48053.0,1,1,2,130.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3352.3460868226257,0.08203565654351885,0.06976351292994455,17161.785714285714,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6324,2,42.0,2,0.0,0,111,4,0,21,5.0,0.0,0.0,740.5576628387846,0.0,176.11992317231335,38550.3,0,71,0,2725,201706324,,,,,1.0,1.0,,0.0,1.0,1.0,3922.8613539751886,169.7610532317421,480.0,0.0,0.0,19040.0,0,1,3,,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,916.6775860110979,0.023778740658596635,0.048144831198061865,19040.0,5,3,5,5_0,5_4,5_0_1 +6325,2,31.0,3,0.0,99,112,2,43,47,8.0,0.0,0.0,160.16564204994188,0.0,0.0,26240.86083603497,42,42,1,2727,201706325,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2752.0039354098185,0.0,119.0,0.0,0.0,46000.0,1,1,3,110.0,8,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,160.16564204994188,0.006103673315091714,0.0034818617836943886,30666.666666666668,8,4,8,8_1,8_1,8_0_0 +6326,1,49.0,3,272.0,4,111,1,0,68,1.0,0.0,0.0,320.6775128739927,0.0,597.5756736662623,6950.099999999999,0,71,8,2728,201706326,,,,,1.0,2.0,3.0,1.0,2.0,1.3,720.3179112592505,576.0,0.0,0.0,0.0,9000.0,0,4,3,70.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,918.253186540255,0.13212085963371104,0.10202813183780611,6923.076923076923,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6327,2,96.0,3,0.0,2,111,2,0,78,5.0,0.0,0.0,382.24405329565957,0.0,1088.132994356582,17063.559999999998,0,70,1,2729,201706327,,,165.0,,0.0,3.0,4.0,0.0,1.0,1.0,2446.38478877852,0.0,284.0,615.0,0.0,20997.0,0,5,5,75.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1470.3770476522416,0.08617059087624399,0.07002795864419877,20997.0,5,3,5,5_1,5_3,5_0_1 +6328,2,84.0,2,0.0,99,111,1,0,77,6.0,0.0,0.0,0.0,0.0,575.0296311640475,12477.425846751301,0,70,2,273,201706328,999999.0,325.0,,509.0,0.0,2.0,1.0,0.0,1.0,1.0,4474.383252612522,0.0,0.0,325.0,0.0,21452.0,0,5,3,26.0,8,7.0,1,2,0,1,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,575.0296311640475,0.04608559796119852,0.02680540887395336,21452.0,6,3,6,6_0,6_3,6_0_0 +6329,1,26.0,5,113.0,99,112,4,0,68,3.0,0.0,0.0,1418.6099724423423,40.694404666994124,0.0,14142.270875301627,0,42,1,2730,201706329,,,200.0,397.0,1.0,0.0,4.0,0.0,1.0,1.0,5412.01560660715,0.0,1054.0,0.0,0.0,14466.0,0,4,3,80.0,9,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1459.3043771093364,0.1031874152303148,0.10087822322060946,14466.0,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +6330,2,56.0,2,0.0,5,111,2,0,22,4.0,0.0,0.0,497.99401309645793,0.0,1150.059262328095,27039.08,0,10,1,2731,201706330,,,430.0,,1.0,0.0,5.0,0.0,1.0,1.0,3600.5533564785655,0.0,370.0,650.0,0.0,16921.0,0,1,1,110.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1648.0532754245528,0.06095078957658887,0.09739691953339358,16921.0,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +6331,2,80.0,3,0.0,6,111,2,0,86,3.0,0.0,0.0,1663.5691896951946,0.0,0.0,12803.920000000002,0,70,1,2732,201706331,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2283.257391442836,0.0,1236.0,0.0,0.0,14394.0,0,5,1,67.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1663.5691896951946,0.12992655293809977,0.11557379392074438,14394.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +6332,1,30.0,4,256.0,99,400,4,0,64,4.0,0.0,0.0,258.4185149041079,99.08202875442048,0.0,8987.669322168427,0,43,1,2734,201706332,,,,251.0,1.0,1.0,4.0,0.0,1.0,1.0,989.361456761084,0.0,192.0,0.0,0.0,17847.0,0,1,3,63.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,357.5005436585284,0.03977677981284199,0.020031408284783347,17847.0,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +6333,1,60.0,3,272.0,9,111,1,0,86,2.0,0.0,0.0,53.83719060502248,0.0,0.0,6350.58,0,71,2,2735,201706333,,,,98.0,0.0,7.0,3.0,0.0,1.0,1.0,3392.6295697726964,0.0,40.0,0.0,0.0,12914.0,0,5,3,60.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,53.83719060502248,0.008477523408101697,0.004168901239354381,12914.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6334,2,60.0,3,0.0,1,300,4,65,77,3.0,0.0,0.0,833.1305246127229,109.69796040667983,0.0,17178.7,50,50,1,2736,201706334,,,150.0,,1.0,0.0,3.0,0.0,2.0,1.5,1741.8824490981176,0.0,619.0,0.0,0.0,23453.0,1,5,1,70.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,942.8284850194027,0.054883575882890015,0.040200762589835105,15635.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6335,2,55.0,3,0.0,5,120,2,52,63,2.0,0.0,0.0,602.9765347762518,0.0,2604.441898687624,31016.739999999998,50,50,1,2737,201706335,,,305.0,,2.0,0.0,6.0,1.0,3.0,2.0,2227.066762206466,0.0,448.0,1472.0,0.0,27180.0,1,1,1,120.0,0,3.0,4,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3207.4184334638758,0.10340926975123356,0.1180065648809373,13590.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +6336,2,64.0,2,0.0,5,111,2,77,75,8.0,0.0,0.0,678.3486016232832,0.0,1769.3219420432229,35498.02,44,50,1,2740,201706336,,,327.0,,0.0,2.0,5.0,0.0,2.0,1.5,2091.2870892266064,0.0,504.0,1000.0,0.0,41039.0,5,5,1,96.0,4,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2447.670543666506,0.06895231180968703,0.0596425483970493,27359.333333333332,8,4,8,8_1,8_1,8_0_0 +6337,2,48.0,2,0.0,1,300,2,43,43,7.0,1827.5973225279922,0.0,888.3136449828709,113.23660429076627,0.0,70909.48,31,33,1,2741,201706337,,,100.0,,2.0,0.0,5.0,1.0,3.0,2.0,2514.6499769009456,0.0,660.0,0.0,0.0,50891.0,1,1,1,140.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2829.147571801629,0.03989801605937075,0.05559229670868383,25445.5,7,4,7,7_1,7_0,7_1_0 +6338,1,47.0,3,190.0,99,111,4,0,85,3.0,0.0,0.0,942.1508355878933,339.7098128722988,0.0,22262.11087530163,0,30,2,2742,201706338,,,350.0,,0.0,0.0,4.0,2.0,3.0,1.6,739.3554871555991,0.0,700.0,0.0,0.0,22100.0,0,6,3,56.0,6,4.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1281.8606484601921,0.0575803730221438,0.05800274427421684,13812.5,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6339,2,58.0,2,0.0,3,111,5,0,34,8.0,0.0,832.755791738064,578.7497990039916,219.39592081335965,0.0,28088.720000000005,0,31,2,2743,201706339,,,140.0,,1.0,0.0,3.0,0.0,1.0,1.0,3457.4277464849647,0.0,430.0,0.0,0.0,31970.0,0,1,1,60.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1630.9015115554153,0.058062507353678454,0.05101349738990977,31970.0,9,5,9,9_0,9_2,9_0_1 +6340,2,59.0,3,0.0,1,112,2,0,52,5.0,1586.456009138882,0.0,3499.417389326461,0.0,0.0,20644.11883901972,0,50,1,2744,201706340,,,170.0,,1.0,3.0,3.0,0.0,1.0,1.0,1886.389283250263,0.0,2600.0,0.0,0.0,20500.0,0,1,2,90.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5085.873398465343,0.24635943234605231,0.24809138529099234,20500.0,5,3,5,5_1,5_0,5_1_0 +6341,1,34.0,3,462.0,9,111,2,0,85,2.0,0.0,0.0,752.1446525916045,0.0,1401.605442922084,21311.659999999996,0,60,1,2745,201706341,,,500.0,,0.0,0.0,4.0,3.0,4.0,1.9,297.2530569844213,1351.0,0.0,0.0,0.0,20884.0,0,6,3,79.0,4,3.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2153.7500955136884,0.10105970607234203,0.10312919438391537,10991.578947368422,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +6342,2,76.0,2,0.0,1,111,6,0,78,5.0,0.0,0.0,433.38938437043095,0.0,996.1282533703345,27763.800000000003,0,50,1,2746,201706342,,,160.0,,0.0,1.0,3.0,0.0,1.0,1.0,3574.459789632178,0.0,322.0,563.0,0.0,20571.0,0,5,1,60.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1429.5176377407654,0.051488543994005334,0.06949188847118591,20571.0,5,3,5,5_1,5_3,5_1_0 +6343,2,36.0,1,0.0,3,112,2,46,23,7.0,0.0,485.77421184720396,3460.644826431838,0.0,6448.83747831508,90291.39169350259,31,50,1,2747,201706343,,,620.0,,2.0,0.0,7.0,2.0,4.0,2.1,2447.5397277005513,6216.0,0.0,0.0,0.0,75164.0,1,1,2,260.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,10395.256516594121,0.1151300951466248,0.13830100203014903,35792.380952380954,9,5,9,9_1,9_0,9_0_1 +6344,2,48.0,3,0.0,2,400,2,62,63,9.0,1946.5815232134084,0.0,1366.1187116024453,0.0,0.0,43300.449322168424,60,50,1,2748,201706344,,,490.0,,3.0,1.0,4.0,1.0,3.0,2.0,1998.5215043281892,0.0,1015.0,0.0,0.0,71042.0,1,1,2,80.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3312.700234815854,0.0765049852062357,0.04663016574443082,35521.0,9,5,9,9_1,9_1,9_0_1 +6345,2,50.0,3,0.0,7,111,2,46,48,7.0,2379.684013708323,0.0,2193.865517154666,0.0,0.0,41463.24,41,50,1,2749,201706345,,,970.0,,2.0,0.0,5.0,2.0,4.0,2.5,1449.212573212289,0.0,1630.0,0.0,0.0,64276.0,1,1,1,130.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4573.549530862989,0.11030371796470775,0.07115485610279092,25710.4,7,4,7,7_1,7_3,7_0_0 +6346,2,68.0,3,0.0,7,112,2,77,75,7.0,0.0,0.0,2624.5630419948457,106.15931652259337,0.0,36862.00238259149,60,60,1,2751,201706346,,,164.0,,0.0,2.0,6.0,0.0,2.0,1.5,2428.8438921309476,0.0,1950.0,0.0,0.0,36380.0,5,5,1,110.0,8,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2730.722358517439,0.07407959909977799,0.07506108736991311,24253.333333333332,7,4,7,7_1,7_1,7_0_0 +6347,2,64.0,3,0.0,1,111,6,67,78,2.0,1903.7472109666587,0.0,304.180126918377,0.0,0.0,13444.4,71,71,1,2755,201706347,,,151.0,,1.0,3.0,4.0,0.0,2.0,1.5,3047.9426114833022,0.0,226.0,0.0,0.0,18010.0,4,5,1,80.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2207.9273378850357,0.16422654323621996,0.12259452181482708,12006.666666666666,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +6348,2,49.0,2,0.0,2,112,5,77,65,6.0,0.0,1221.3751612158271,689.2672972402709,113.23660429076627,80.54142594489998,35078.08202711671,41,30,1,2756,201706348,,,215.0,,1.0,4.0,7.0,1.0,4.0,2.3,3489.1755023172905,77.633450270219,480.0,0.0,0.0,50757.0,5,1,1,116.0,7,0.0,5,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2104.420488691764,0.05999246159082945,0.041460694853749515,22068.26086956522,6,3,6,6_1,6_0,6_0_1 +6349,2,66.0,3,0.0,1,400,2,0,86,6.0,0.0,277.585263912688,934.07525699714,56.61830214538313,0.0,33306.24,0,50,5,276,201706349,,,,,0.0,0.0,5.0,0.0,2.0,1.5,3307.4693859274194,0.0,694.0,0.0,0.0,33885.0,0,5,1,200.0,0,0.0,5,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1268.278823055211,0.03807931555934296,0.03742891612970963,22590.0,6,3,6,6_1,6_0,6_1_0 +6350,2,35.0,3,0.0,3,111,2,55,56,3.0,0.0,0.0,1279.9792066344094,0.0,1079.286384646366,27413.21665845403,50,44,2,2760,201706350,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2849.4327778864695,0.0,951.0,610.0,0.0,29178.0,1,1,2,72.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2359.2655912807754,0.08606307025823604,0.08085768699982095,13894.285714285714,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +6351,2,62.0,3,0.0,6,211,2,74,33,6.0,269.69752155361,0.0,2325.766634136971,0.0,0.0,69303.72,20,33,1,2761,201706351,,,792.0,,3.0,0.0,6.0,2.0,4.0,2.5,2923.967190124153,0.0,1728.0,0.0,0.0,55999.0,4,1,1,120.0,1,2.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2595.464155690581,0.03745057488531035,0.04634840185879356,22399.6,6,3,6,6_1,6_1,6_0_0 +6352,2,45.0,4,0.0,9,111,1,0,55,6.0,0.0,0.0,516.8370298082158,0.0,0.0,21836.38,0,43,2,2762,201706352,,,,442.0,1.0,1.0,3.0,0.0,1.0,1.0,3058.4131321865793,0.0,384.0,0.0,0.0,23385.0,0,1,3,73.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,516.8370298082158,0.02366862226285748,0.022101220004627574,23385.0,6,3,6,6_0,6_3,6_0_0 +6353,1,32.0,2,214.0,9,111,1,0,55,4.0,0.0,0.0,538.3719060502248,0.0,0.0,14324.52,0,43,2,2763,201706353,,,100.0,236.0,1.0,0.0,3.0,1.0,2.0,1.3,575.1117448064022,0.0,400.0,0.0,0.0,22281.0,0,1,3,53.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,538.3719060502248,0.037583940407792005,0.024162825099870954,17139.23076923077,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +6354,2,52.0,3,0.0,1,221,4,0,55,2.0,0.0,0.0,1706.6389421792126,31.847794956778014,0.0,12519.339999999998,0,60,2,2764,201706354,,,272.0,464.0,1.0,1.0,4.0,0.0,1.0,1.0,1912.0187829453155,0.0,1268.0,0.0,0.0,12520.0,0,1,3,90.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1738.4867371359906,0.13886408845322443,0.13885676814185227,12520.0,2,1,2_0,2_0_0,2_1_0,2_1_0_0 +6355,2,44.0,5,0.0,7,112,2,0,43,3.0,0.0,0.0,982.5287285416603,0.0,1733.9355032023584,25571.147538214864,0,44,1,2766,201706355,,,540.0,,3.0,0.0,6.0,3.0,4.0,2.3,550.4195470447903,0.0,730.0,980.0,0.0,35223.0,0,1,2,120.0,8,1.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2716.4642317440184,0.10623161231557528,0.0771218871687255,15314.347826086958,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6356,2,66.0,2,0.0,6,300,4,0,74,8.0,0.0,0.0,1232.8716648550148,0.0,0.0,18763.780000000002,0,30,2,2767,201706356,,,272.0,,0.0,2.0,3.0,0.0,1.0,1.0,2912.1148598845293,0.0,916.0,0.0,0.0,29381.0,0,5,1,40.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1232.8716648550148,0.06570486676218835,0.041961528363738974,29381.0,8,4,8,8_0,8_0,8_0_0 +6357,2,30.0,2,0.0,3,111,1,0,43,6.0,0.0,0.0,323.0231436301349,0.0,0.0,24078.62,0,44,2,2769,201706357,,,,450.0,1.0,0.0,2.0,0.0,1.0,1.0,3903.7680280239942,0.0,240.0,0.0,0.0,22147.0,0,1,3,42.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,323.0231436301349,0.013415351196627335,0.014585413086654396,22147.0,6,3,6,6_0,6_3,6_0_1 +6358,1,50.0,3,308.0,4,111,1,0,52,3.0,0.0,0.0,363.4010365839017,0.0,507.795397366405,25684.16,0,50,2,277,201706358,,,200.0,44.0,3.0,0.0,4.0,2.0,3.0,2.0,660.450367538856,0.0,270.0,287.0,0.0,30229.0,0,1,3,80.0,7,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,871.1964339503068,0.03391960001613083,0.028819889309944318,15114.5,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +6359,2,80.0,2,0.0,1,300,2,0,77,6.0,1110.5192063972174,0.0,471.07541779394666,56.61830214538313,0.0,20021.260000000002,0,50,1,2772,201706359,,,336.0,,0.0,4.0,7.0,0.0,1.0,1.0,2744.8693632894374,0.0,350.0,0.0,0.0,21336.0,0,5,1,128.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1638.212926336547,0.0818236677580006,0.07678163321787342,21336.0,6,3,6,6_1,6_0,6_1_0 +6360,2,65.0,3,0.0,5,120,2,77,78,3.0,1427.810408224994,0.0,1076.7438121004495,0.0,0.0,19453.41,70,70,1,2773,201706360,,,300.0,,0.0,1.0,5.0,0.0,2.0,1.5,1596.809891703427,0.0,800.0,0.0,0.0,24120.0,5,5,1,80.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2504.5542203254436,0.12874628254508816,0.10383723964865023,16080.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6361,1,45.0,4,310.0,3,111,2,85,56,1.0,0.0,0.0,726.8020731678034,0.0,1380.0711147937138,9816.400315994117,71,71,2,2774,201706361,,,,,1.0,0.0,4.0,2.0,4.0,2.1,2257.8107099578665,0.0,540.0,780.0,0.0,11240.0,6,1,3,62.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2106.873187961517,0.21462787988879525,0.18744423380440542,5352.380952380952,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6362,2,65.0,2,0.0,9,111,2,0,78,4.0,0.0,0.0,1033.6740596164316,0.0,0.0,18822.92,0,71,2,2775,201706362,,,,,0.0,0.0,3.0,0.0,2.0,1.5,1024.8751568850464,0.0,768.0,0.0,0.0,24834.0,0,5,3,60.0,8,7.0,5,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1033.6740596164316,0.05491571231330908,0.041623341371363115,16556.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +6363,2,46.0,4,0.0,99,112,6,62,54,2.0,793.228004569441,0.0,2207.3248148059215,261.859647422397,0.0,57329.380000000005,71,71,1,2776,201706363,,,700.0,700.0,3.0,2.0,5.0,2.0,4.0,2.3,231.17761257514928,0.0,1640.0,0.0,0.0,30996.0,4,1,3,137.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3262.4124667977594,0.05690646692494772,0.10525269282480834,13476.521739130436,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +6364,1,34.0,3,529.0,4,111,3,67,85,2.0,0.0,0.0,646.0462872602698,0.0,530.7965826129669,13426.46,71,71,2,2779,201706364,,,,,1.0,0.0,6.0,5.0,7.0,3.2,1920.3035286594416,0.0,480.0,300.0,0.0,34384.0,4,6,3,100.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1176.8428698732366,0.08765101671425206,0.034226467830189525,10745.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6365,2,45.0,3,0.0,2,111,2,37,37,10.0,0.0,0.0,484.5347154452023,0.0,672.3423379764247,77991.90584675131,31,30,1,2780,201706365,,,213.0,,2.0,0.0,3.0,2.0,4.0,2.1,2881.592354915788,0.0,360.0,380.0,0.0,109331.0,1,1,2,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1156.877053421627,0.014833296364045907,0.010581418384736505,52062.38095238095,10,5,10,10_1,10_4,10_0_1 +6366,2,77.0,1,0.0,5,111,4,74,74,10.0,0.0,0.0,2761.847878037653,326.9706948895876,0.0,43684.60175060326,30,12,1,2781,201706366,,,60.0,,0.0,3.0,6.0,0.0,2.0,1.5,3171.398015526115,0.0,2052.0,0.0,0.0,60429.0,5,5,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3088.818572927241,0.07070726180729314,0.051114838453842376,40286.0,9,5,9,9_1,9_3,9_0_0 +6367,2,66.0,3,0.0,4,111,1,0,35,8.0,0.0,0.0,1315.3258127366346,0.0,1573.2425201237131,173611.57714962555,0,20,2,2782,201706367,,,,,1.0,3.0,2.0,0.0,1.0,1.0,3333.9892364257776,1516.4400619449445,350.0,0.0,0.0,30722.0,0,5,2,64.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2888.5683328603477,0.016638108934238074,0.09402279580952892,30722.0,8,4,8,8_0,8_4,8_0_1 +6368,2,63.0,3,0.0,5,120,2,0,71,1.0,0.0,374.7401062821288,201.8894647688343,49.54101437721024,0.0,9556.4658467513,0,70,1,2783,201706368,,,100.0,,0.0,0.0,4.0,0.0,1.0,1.0,1819.4012872691296,0.0,150.0,0.0,0.0,9929.0,0,7,1,75.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,626.1705854281734,0.06552323792807135,0.06306481875598483,9929.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +6369,1,83.0,4,115.0,2,111,1,0,78,3.0,0.0,0.0,215.3487624200899,0.0,176.9321942043223,10212.476974448147,0,71,2,2784,201706369,,,,392.0,0.0,1.0,3.0,0.0,1.0,1.0,4001.255008441817,0.0,160.0,100.0,0.0,13580.0,0,5,3,70.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,392.28095662441217,0.03841193058313944,0.0288866683817682,13580.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +6370,2,66.0,2,0.0,5,112,2,77,72,6.0,0.0,0.0,493.95622380108125,0.0,1468.537211895875,59896.54,43,50,1,2787,201706370,,,321.0,,0.0,2.0,5.0,0.0,2.0,1.5,1395.8368567503353,0.0,367.0,830.0,0.0,32544.0,5,5,1,100.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1962.4934356969563,0.03276472122925558,0.0603027727291346,21696.0,6,3,6,6_1,6_0,6_0_0 +6371,2,46.0,2,0.0,2,111,2,0,47,8.0,0.0,0.0,269.1859530251124,0.0,707.7287768172891,23863.719999999998,0,31,1,2789,201706371,,,170.0,,1.0,1.0,3.0,0.0,1.0,1.0,2289.618940278813,0.0,200.0,400.0,0.0,29409.0,0,1,1,65.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,976.9147298424016,0.04093723568003654,0.03321822332763445,29409.0,8,4,8,8_1,8_2,8_0_1 +6372,2,56.0,3,0.0,1,111,2,0,34,8.0,2094.1219320633245,0.0,740.261370819059,180.47083808840873,0.0,25794.44,0,30,1,279,201706372,,,,,1.0,0.0,4.0,0.0,1.0,1.0,772.273739499116,0.0,550.0,0.0,0.0,32367.0,0,1,1,111.0,7,5.0,1,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3014.8541409707923,0.1168799997585058,0.09314592458277851,32367.0,9,5,9,9_1,9_2,9_1_0 +6373,2,34.0,2,0.0,7,112,4,68,67,6.0,158.64560091388822,0.0,181.70051829195086,159.23897478389006,0.0,56563.7,50,71,1,2790,201706373,,,50.0,,2.0,0.0,5.0,2.0,4.0,2.1,645.5159329113782,0.0,135.0,0.0,0.0,45880.0,1,4,3,100.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,499.5850939897291,0.008832256270182628,0.010888951481903424,21847.619047619046,6,3,6,6_1,6_0,6_0_0 +6374,1,58.0,3,64.0,99,111,1,0,75,8.0,0.0,0.0,1650.109892043939,0.0,0.0,22601.46051346417,0,30,2,2791,201706374,696.0,696.0,,368.0,1.0,0.0,4.0,1.0,2.0,1.5,3476.1974944492868,0.0,1226.0,0.0,0.0,43664.0,0,5,3,80.0,5,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1650.109892043939,0.07300899386838003,0.037791084006136386,29109.333333333332,8,4,8,8_0,8_2,8_0_0 +6375,2,33.0,3,0.0,5,112,2,21,31,8.0,0.0,0.0,1022.9066214954271,0.0,2369.1220803958754,43848.08,20,10,1,2792,201706375,,,264.0,,2.0,0.0,5.0,0.0,2.0,1.5,1510.7988225296647,0.0,760.0,1339.0,0.0,47182.0,1,1,2,136.0,10,3.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3392.0287018913023,0.07735865976095879,0.07189243147580227,31454.666666666668,8,4,8,8_1,8_1,8_0_0 +6376,0,48.0,2,0.0,1,111,2,54,37,9.0,0.0,0.0,1465.717514221737,0.0,0.0,31712.04,31,31,2,2793,201706376,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3497.2338339898047,0.0,1089.0,0.0,0.0,54759.0,1,1,5,55.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1465.717514221737,0.046219590862705044,0.026766696145322906,36506.0,9,5,9,9_0,9_4,9_1_0 +6377,2,42.0,2,0.0,99,111,2,0,38,9.0,0.0,0.0,355.32545799314835,0.0,785.578942267191,22961.14315776929,0,71,2,2795,201706377,,,226.0,660.0,1.0,0.0,2.0,0.0,1.0,1.0,1146.639862830498,0.0,264.0,444.0,0.0,33160.0,0,1,3,48.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1140.9044002603393,0.04968848425450869,0.03440604343366524,33160.0,9,5,9,9_0,9_2,9_0_0 +6378,1,48.0,4,192.0,2,111,1,0,85,3.0,0.0,0.0,605.6683943065029,106.15931652259337,1273.9117982711205,10548.94,0,60,2,2797,201706378,720.0,720.0,,,0.0,0.0,3.0,0.0,1.0,1.0,2358.697409602859,0.0,450.0,720.0,0.0,14155.0,0,7,3,50.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1985.7395091002168,0.18824066769743847,0.14028537683505593,14155.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +6379,2,74.0,1,0.0,4,111,2,77,74,8.0,0.0,0.0,768.2898745939409,0.0,1431.6917181587535,43267.67904104552,71,12,1,28,201706379,,,383.0,,0.0,5.0,7.0,0.0,2.0,1.5,1890.4634260707105,1380.0,0.0,0.0,0.0,47452.0,5,5,1,360.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2199.9815927526943,0.050845842474372155,0.0463622522286246,31634.666666666668,8,4,8,8_1,8_2,8_0_1 +6380,1,47.0,4,299.0,2,111,1,0,42,2.0,0.0,0.0,183.04644805707642,0.0,396.3281150176819,8097.9800000000005,0,71,2,2800,201706380,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5113.550109848257,0.0,136.0,224.0,0.0,10708.0,0,1,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,579.3745630747583,0.07154556606397623,0.054106701818711085,10708.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +6381,2,52.0,3,0.0,99,211,2,0,62,4.0,0.0,0.0,538.3719060502248,0.0,1557.0033089980361,9113.52,0,71,1,2801,201706381,,,206.0,400.0,1.0,2.0,3.0,0.0,1.0,1.0,575.0316877431559,0.0,400.0,880.0,0.0,18641.0,0,1,3,60.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2095.375215048261,0.22991941807866345,0.1124068030174487,18641.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6382,2,67.0,1,0.0,1,111,2,74,74,9.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,65688.62,30,20,2,2802,201706382,,,570.0,1300.0,0.0,0.0,4.0,0.0,2.0,1.5,3138.974961091932,1200.0,0.0,0.0,0.0,60020.0,5,5,3,105.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1913.0274719588647,0.029122661915547392,0.03187316681037762,40013.333333333336,9,5,9,9_0,9_3,9_1_0 +6383,2,50.0,2,0.0,3,112,6,52,47,10.0,951.8736054833294,0.0,1672.3961730951924,63.69558991355603,1310.634313001152,44196.69511599266,50,31,1,2803,201706383,,,320.0,,2.0,2.0,5.0,0.0,2.0,1.5,1485.943368187311,1263.3134137757402,720.0,0.0,0.0,66901.0,1,1,1,100.0,9,3.0,3,7,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3998.5996814932296,0.0904728208975591,0.05976890751249203,44600.666666666664,10,5,10,10_1,10_1,10_0_1 +6384,2,54.0,1,0.0,5,111,4,42,37,8.0,0.0,277.585263912688,2887.184411501914,0.0,1868.8504965240304,81384.42868090568,41,50,1,2805,201706384,,,,,2.0,0.0,4.0,1.0,3.0,2.0,1917.2244031648468,1801.3750114584288,1400.0,0.0,0.0,60211.0,1,1,1,100.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5033.620171938632,0.06184991715890258,0.08359967733368706,30105.5,8,4,8,8_1,8_3,8_0_0 +6385,2,44.0,3,0.0,8,111,2,0,46,5.0,0.0,0.0,473.2220242064128,0.0,881.8391017644495,32298.255651313022,0,30,2,2807,201706385,,,286.0,500.0,1.0,0.0,3.0,1.0,2.0,1.3,428.154019441995,850.0,0.0,0.0,0.0,25140.0,0,1,3,65.0,4,3.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1355.0611259708623,0.04195462258395292,0.053900601669485376,19338.46153846154,5,3,5,5_0,5_1,5_0_0 +6386,2,51.0,3,0.0,8,112,2,47,37,10.0,1903.7472109666587,0.0,942.1508355878933,44.23304855108057,0.0,28458.440631988233,31,42,1,2808,201706386,,,240.0,,2.0,2.0,6.0,0.0,2.0,1.5,1270.1152016097583,0.0,700.0,0.0,0.0,68928.0,1,1,1,240.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2890.1310951056325,0.1015562002317523,0.04192971064162072,45952.0,10,5,10,10_1,10_0,10_0_0 +6387,2,58.0,2,0.0,7,111,5,52,52,8.0,0.0,416.377895869032,1997.359771446334,106.15931652259337,0.0,36443.78816118814,50,50,1,2809,201706387,,,1087.0,,2.0,1.0,4.0,0.0,2.0,1.5,1718.4162345233633,0.0,1484.0,0.0,0.0,43431.0,1,1,1,110.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2519.896983837959,0.069144759943523,0.05802069912822544,28954.0,8,4,8,8_1,8_3,8_0_0 +6388,2,78.0,3,0.0,1,112,6,71,71,4.0,2379.684013708323,69.396315978172,456.2701903775655,0.0,0.0,28732.749194280488,70,70,1,281,201706388,,,,,0.0,4.0,10.0,0.0,2.0,1.5,1736.9703686184882,0.0,339.0,0.0,0.0,26511.0,5,5,5,250.0,9,1.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2905.3505200640607,0.10111634290262753,0.10959037833593832,17674.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +6389,2,61.0,3,0.0,1,400,2,71,12,8.0,1110.5192063972174,0.0,1098.2786883424585,371.5576078290768,0.0,30926.05053779642,60,50,1,2810,201706389,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1800.9554648587607,0.0,816.0,0.0,0.0,40632.0,5,1,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2580.355502568753,0.08343630879782593,0.0635055006538874,27088.0,7,4,7,7_1,7_0,7_1_0 +6390,2,77.0,3,0.0,5,120,4,75,72,4.0,0.0,0.0,2395.7549819235,84.9274532180747,0.0,26621.479999999996,50,50,1,2812,201706390,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1402.3269564942268,0.0,1780.0,0.0,0.0,24633.0,5,5,1,145.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2480.682435141575,0.09318349074287287,0.100705656442235,16422.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6391,2,83.0,3,0.0,9,400,4,77,75,6.0,0.0,0.0,1884.3016711757866,127.39117982711205,0.0,30111.920315994117,50,70,1,2813,201706391,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1934.749189153326,0.0,1400.0,0.0,0.0,32680.0,5,5,3,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2011.6928510028986,0.06680719229767543,0.06155730878221844,21786.666666666668,6,3,6,6_1,6_0,6_0_0 +6392,1,29.0,3,379.0,99,111,2,0,54,3.0,0.0,0.0,605.6683943065029,0.0,937.7406292829081,15258.806296616573,0,31,2,2819,201706392,,,,66.0,1.0,0.0,3.0,1.0,2.0,1.3,789.0527881278817,0.0,450.0,530.0,0.0,19425.0,0,1,3,70.0,8,6.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1543.409023589411,0.10114873952699958,0.07945477598915886,14942.307692307691,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +6393,2,63.0,1,0.0,2,112,6,37,22,10.0,0.0,0.0,1615.1157181506744,0.0,2526.591733237722,33970.22263907648,42,31,2,282,201706393,,,678.0,,2.0,3.0,5.0,0.0,2.0,1.5,1833.2125774970575,0.0,1200.0,1428.0,0.0,81241.0,1,1,1,135.0,9,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,4141.707451388396,0.12192170464682577,0.05098050801182157,54160.666666666664,10,5,10,10_0,10_1,10_0_1 +6394,1,46.0,3,196.0,9,112,4,0,56,1.0,0.0,0.0,1924.6795641295537,63.69558991355603,0.0,29655.239999999998,0,42,1,2822,201706394,,,224.0,,1.0,0.0,5.0,3.0,4.0,2.5,510.35576668881686,0.0,1430.0,0.0,0.0,15437.0,0,1,2,90.0,8,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1988.3751540431097,0.06704970703467954,0.1288058012595135,6174.8,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +6395,2,42.0,2,0.0,1,300,2,46,47,8.0,2379.684013708323,0.0,646.0462872602698,74.31152156581537,0.0,69278.3716935026,31,31,1,2823,201706395,,,370.0,,2.0,1.0,6.0,1.0,3.0,1.8,2540.7811580014613,0.0,480.0,0.0,0.0,50330.0,1,1,2,120.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3100.0418225344083,0.044747613818775005,0.06159431397843052,27961.11111111111,8,4,8,8_1,8_0,8_1_0 +6396,2,73.0,3,0.0,99,111,2,0,75,6.0,0.0,0.0,40.37789295376686,0.0,141.54575536345783,16963.94,0,50,2,2824,201706396,,,,502.0,0.0,2.0,3.0,0.0,1.0,1.0,2097.6992321846565,0.0,30.0,80.0,0.0,22225.0,0,5,3,90.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,181.9236483172247,0.010724138868519029,0.008185540981652405,22225.0,6,3,6,6_0,6_2,6_0_0 +6397,2,43.0,2,0.0,4,111,2,0,46,3.0,0.0,0.0,1345.929765125562,0.0,0.0,10809.80449357506,0,43,2,2825,201706397,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2961.8997413158368,0.0,1000.0,0.0,0.0,15114.0,0,1,1,47.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1345.929765125562,0.12451009321450095,0.08905185689596148,15114.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6398,2,40.0,3,0.0,1,111,4,64,52,4.0,0.0,0.0,2635.33048011585,56.61830214538313,0.0,31975.616322376292,50,43,1,2827,201706398,,,369.0,,2.0,1.0,6.0,2.0,4.0,2.1,4248.225261944202,0.0,1958.0,0.0,0.0,34760.0,1,1,2,140.0,6,5.0,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2691.948782261233,0.08418754951026317,0.07744386600291235,16552.38095238095,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +6399,2,64.0,3,0.0,3,111,2,77,78,4.0,0.0,0.0,796.7904209543327,0.0,2034.7202333497064,25681.280000000002,71,71,1,2828,201706399,,,196.0,,0.0,2.0,5.0,0.0,2.0,1.5,1915.26180155919,0.0,592.0,1150.0,0.0,29842.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2831.5106543040392,0.11025582269668953,0.09488340775765831,19894.666666666668,5,3,5,5_1,5_4,5_0_1 +6400,2,33.0,5,0.0,9,120,2,0,81,2.0,0.0,0.0,2153.487624200899,0.0,0.0,21185.747533755657,0,50,1,2829,201706400,,,120.0,,1.0,0.0,5.0,3.0,4.0,1.9,148.6549192154286,0.0,1600.0,0.0,0.0,21181.0,0,4,1,100.0,0,0.0,2,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2153.487624200899,0.10164794141767743,0.10167072490443789,11147.894736842105,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6401,2,59.0,2,0.0,6,112,4,64,46,10.0,0.0,0.0,3312.333151974008,0.0,0.0,40207.66,50,50,1,283,201706401,,,723.0,,2.0,1.0,6.0,0.0,2.0,1.5,1821.4266237472823,0.0,2461.0,0.0,0.0,63347.0,1,1,1,130.0,10,4.0,3,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3312.333151974008,0.08238064965665766,0.05228871378240498,42231.333333333336,10,5,10,10_1,10_2,10_0_0 +6402,1,33.0,5,483.0,99,111,2,0,54,1.0,0.0,0.0,111.34635863680303,0.0,207.49155335634106,8113.660000000001,0,41,2,2831,201706402,,,,,1.0,0.0,4.0,2.0,3.0,1.6,1230.2587071118996,200.0,0.0,0.0,0.0,16358.0,0,4,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,318.8379119931441,0.039296434900297036,0.019491252719962347,10223.75,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6403,1,52.0,4,201.0,99,111,2,0,53,4.0,0.0,0.0,1170.9588956592388,0.0,672.3423379764247,22659.641750603256,0,71,2,2833,201706403,,,430.0,301.0,2.0,4.0,4.0,2.0,3.0,2.0,887.0292275850976,0.0,870.0,380.0,0.0,34502.0,0,1,3,96.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1843.3012336356635,0.0813473246366126,0.05342592410978098,17251.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +6404,2,83.0,3,0.0,5,211,2,77,77,2.0,3807.4944219333174,582.9290542166448,807.5578590753372,495.4101437721024,0.0,25104.482698585605,50,70,1,2834,201706404,,,,,0.0,2.0,4.0,2.0,4.0,2.5,4207.551609514512,0.0,600.0,0.0,0.0,30670.0,5,5,1,110.0,1,3.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5693.391478997402,0.2267878429264814,0.18563389237030983,12268.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +6405,1,24.0,4,112.0,8,112,4,52,63,7.0,0.0,0.0,1547.8192298943961,141.54575536345783,0.0,30017.566811689,42,50,1,2835,201706405,,,350.0,,2.0,0.0,5.0,1.0,3.0,1.8,915.0964237474137,0.0,1150.0,0.0,0.0,44040.0,1,1,3,82.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1689.364985257854,0.05627921129836567,0.03835978622293038,24466.666666666668,7,4,7,7_1,7_1,7_0_0 +6406,2,80.0,3,0.0,4,221,2,77,72,2.0,1748.274522071048,0.0,1057.9007953886917,49.54101437721024,0.0,30109.810909090902,71,50,1,2837,201706406,,,171.0,,0.0,3.0,5.0,0.0,2.0,1.5,1173.0910882915437,0.0,786.0,0.0,0.0,16011.0,5,5,1,120.0,1,3.0,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2855.71633183695,0.09484338312382885,0.17835964848147834,10674.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +6407,2,64.0,4,0.0,99,111,2,0,56,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,17260.539999999997,0,41,2,2838,201706407,,,,350.0,1.0,5.0,1.0,0.0,1.0,1.0,2194.679854822597,0.0,1200.0,0.0,0.0,18867.0,0,5,3,35.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1615.1157181506744,0.09357272241486504,0.08560532772304418,18867.0,5,3,5,5_0,5_3,5_0_0 +6408,1,24.0,4,187.0,99,111,2,85,63,3.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,23418.280315994118,60,50,1,284,201706408,,,300.0,,1.0,0.0,3.0,1.0,3.0,1.8,4318.6766667262345,1200.0,0.0,0.0,0.0,25174.0,6,1,3,60.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1913.0274719588647,0.08168949411081707,0.07599219321358801,13985.555555555555,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +6409,2,70.0,2,0.0,7,111,2,0,77,8.0,0.0,0.0,1440.1448486843512,0.0,0.0,23868.715052882577,0,60,2,2840,201706409,,,,,0.0,0.0,2.0,0.0,1.0,1.0,1879.3045556078418,0.0,1070.0,0.0,0.0,28908.0,0,5,1,50.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1440.1448486843512,0.06033608619038032,0.049818211176295535,28908.0,8,4,8,8_0,8_3,8_0_0 +6410,0,38.0,3,0.0,4,112,5,63,47,4.0,0.0,208.188947934516,861.3950496803596,212.31863304518674,0.0,29613.87800298474,30,20,1,2841,201706410,,,192.0,,2.0,0.0,3.0,1.0,3.0,1.8,2967.005315104215,0.0,640.0,0.0,0.0,29932.0,1,1,5,72.0,9,3.0,4,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1281.9026306600624,0.04328722602729913,0.04282716259054064,16628.888888888887,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +6411,2,72.0,3,0.0,3,112,1,75,74,9.0,0.0,0.0,2519.580520315052,0.0,3184.779495677801,43079.12,33,12,2,2844,201706411,1800.0,1800.0,,,0.0,2.0,6.0,0.0,2.0,1.5,1499.5558633034414,0.0,1872.0,1800.0,0.0,47650.0,5,5,1,160.0,9,2.0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,5704.360015992854,0.1324158900180146,0.11971374640068948,31766.666666666668,8,4,8,8_0,8_1,8_0_1 +6412,2,85.0,3,0.0,1,211,2,0,78,4.0,1269.1648073111057,0.0,1070.0141632748218,92.0047409862476,0.0,16076.800000000003,0,71,1,2845,201706412,,,100.0,,0.0,2.0,5.0,0.0,1.0,1.0,2410.2130061277753,0.0,795.0,0.0,0.0,17831.0,0,5,1,80.0,1,2.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2431.183711572175,0.15122311104026762,0.13634589824306967,17831.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +6413,2,70.0,1,0.0,8,211,4,0,74,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,34066.64,0,44,1,2846,201706413,,,138.0,,0.0,0.0,4.0,0.0,1.0,1.0,3599.886889441807,0.0,1200.0,0.0,0.0,23774.0,0,5,1,112.0,1,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.04741047893630468,0.06793622100406639,23774.0,6,3,6,6_1,6_1,6_0_0 +6414,2,46.0,3,0.0,4,211,1,0,65,5.0,0.0,0.0,355.32545799314835,44.23304855108057,0.0,20157.4,0,42,2,2847,201706414,,,,240.0,1.0,0.0,1.0,0.0,1.0,1.0,3016.628168914683,0.0,264.0,0.0,0.0,20970.0,0,1,3,34.0,1,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,399.5585065442289,0.019821926763582055,0.019053815285847826,20970.0,5,3,5,5_0,5_1,5_0_1 +6415,2,72.0,3,0.0,9,111,2,86,74,6.0,0.0,0.0,50.10586138656136,0.0,93.37119901035348,15370.18,71,71,2,2848,201706415,,,,406.0,0.0,2.0,3.0,0.0,2.0,1.5,2194.9011682406467,90.0,0.0,0.0,0.0,33495.0,5,5,3,70.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,143.47706039691485,0.009334767738368376,0.004283536659110758,22330.0,6,3,6,6_0,6_3,6_0_0 +6416,2,38.0,3,0.0,1,120,4,52,62,6.0,0.0,0.0,3230.231436301349,0.0,0.0,61869.6,50,71,1,2851,201706416,,,,,2.0,0.0,7.0,4.0,6.0,2.7,1393.2498205999852,0.0,2400.0,0.0,0.0,57142.0,1,1,2,156.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3230.231436301349,0.052210317123455606,0.05652989808374486,21163.7037037037,5,3,5,5_1,5_0,5_1_0 +6417,2,58.0,2,0.0,2,111,6,54,46,9.0,1903.7472109666587,0.0,524.7211902034733,106.15931652259337,375.8599877428666,31744.18279321134,50,50,1,2857,201706417,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1831.2817954359064,362.2894345943554,240.0,0.0,0.0,55550.0,4,1,1,85.0,10,8.0,3,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2910.4877054355916,0.09168570268118588,0.052394018099650615,37033.333333333336,9,5,9,9_1,9_4,9_0_1 +6418,2,38.0,3,0.0,1,300,2,46,63,5.0,0.0,0.0,1356.6972032465665,159.23897478389006,0.0,25265.140000000003,30,44,1,2858,201706418,,,80.0,,2.0,0.0,4.0,1.0,3.0,1.8,3160.332092716503,0.0,1008.0,0.0,0.0,33525.0,4,1,2,100.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1515.9361780304566,0.060001099460777044,0.04521808137301884,18625.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6419,2,58.0,2,0.0,6,112,2,78,43,9.0,0.0,0.0,686.4241802140366,0.0,1677.3172010569754,63693.2,71,20,1,286,201706419,,,237.0,,1.0,2.0,5.0,0.0,2.0,1.5,2532.0104444736257,0.0,510.0,948.0,0.0,52115.0,5,1,1,100.0,8,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2363.741381271012,0.03711136167237652,0.04535625791559075,34743.333333333336,9,5,9,9_1,9_1,9_0_0 +6420,1,38.0,3,130.0,3,111,2,0,56,3.0,0.0,0.0,192.46795641295535,0.0,615.7240358310415,22782.28,0,70,2,2860,201706420,,,,129.0,1.0,0.0,3.0,1.0,2.0,1.3,1252.6364189082112,0.0,143.0,348.0,0.0,19214.0,0,1,3,54.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,808.1919922439969,0.03547458780438117,0.042062662238159514,14780.0,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +6421,2,67.0,2,0.0,1,111,6,77,77,4.0,0.0,0.0,1378.6717697593685,0.0,1103.8469574133153,27892.40751699603,50,70,1,2861,201706421,,,123.0,,0.0,2.0,3.0,0.0,2.0,1.5,2478.216118401114,912.2080289660586,647.0,89.0,0.0,27150.0,5,5,1,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2482.5187271726836,0.08900338651871408,0.09143715385534747,18100.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +6422,1,62.0,4,353.0,4,111,6,0,81,1.0,0.0,0.0,1090.2031097517051,318.4779495677801,0.0,6290.54,0,60,1,2863,201706422,,,,,1.0,3.0,3.0,1.0,2.0,1.3,952.9473499570663,0.0,810.0,0.0,0.0,12776.0,0,4,3,50.0,6,4.0,2,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1408.6810593194853,0.2239364282429625,0.11025994515650323,9827.692307692307,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +6423,2,61.0,3,0.0,7,111,2,85,78,3.0,0.0,0.0,107.67438121004496,0.0,2653.9829130648345,26125.32,71,71,1,2864,201706423,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2834.22554546343,0.0,80.0,1500.0,0.0,21020.0,7,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2761.6572942748794,0.10570807531830728,0.13138236414247761,14013.333333333334,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +6424,2,75.0,1,0.0,3,111,3,72,72,1.0,0.0,0.0,2465.7433297100297,0.0,0.0,57738.26175060325,70,71,1,2865,201706424,,,360.0,,0.0,1.0,3.0,0.0,2.0,1.5,1635.9414422520917,0.0,1832.0,0.0,0.0,28225.0,5,5,1,90.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2465.7433297100297,0.04270553450951903,0.08736025968857501,18816.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +6425,2,66.0,3,0.0,6,111,5,43,74,8.0,0.0,2498.267375214192,2944.0329310450493,0.0,0.0,41581.107538214856,33,30,1,2866,201706425,,,540.0,,1.0,2.0,7.0,1.0,3.0,2.0,2240.1394904691206,0.0,2187.36,0.0,0.0,55290.0,1,5,1,120.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5442.300306259242,0.13088396698566843,0.09843191004267031,27645.0,8,4,8,8_1,8_3,8_0_0 +6426,2,59.0,3,0.0,5,112,2,52,77,4.0,1586.456009138882,416.377895869032,616.4358324275074,70.77287768172891,0.0,18679.440000000002,50,71,1,2867,201706426,,,235.0,,1.0,3.0,4.0,0.0,2.0,1.5,2191.851493745838,0.0,458.0,0.0,0.0,26915.0,1,4,1,100.0,4,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2690.0426151171505,0.144010881221126,0.09994585231718932,17943.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6427,2,67.0,2,0.0,6,111,4,74,75,8.0,0.0,451.076053858118,1635.3046646275577,70.77287768172891,0.0,31442.839999999997,30,31,1,2869,201706427,,,167.0,,0.0,2.0,4.0,0.0,2.0,1.5,1977.6657868353227,0.0,1215.0,0.0,0.0,46435.0,5,5,2,114.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2157.1535961674044,0.06860555840908152,0.046455337486107556,30956.666666666668,8,4,8,8_1,8_3,8_0_0 +6428,2,35.0,3,0.0,6,111,2,0,46,8.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,35616.13,0,31,2,287,201706428,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3763.705862465759,750.0,0.0,0.0,0.0,30579.0,0,1,2,76.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1195.6421699742903,0.0335702438747357,0.039100106935291874,30579.0,8,4,8,8_0,8_4,8_0_0 +6429,2,35.0,2,0.0,6,112,4,46,69,1.0,0.0,0.0,1749.7086946632305,185.7788039145384,0.0,21063.8658467513,42,71,1,2870,201706429,,,476.0,,2.0,0.0,4.0,4.0,6.0,2.9,1448.3786480903416,0.0,1300.0,0.0,0.0,29547.0,1,1,3,70.0,8,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1935.487498577769,0.09188662293328653,0.06550538120884587,10188.620689655172,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +6430,2,32.0,3,0.0,8,112,2,54,54,8.0,0.0,0.0,1386.3076580793288,283.09151072691566,0.0,50038.020000000004,20,30,1,2871,201706430,,,560.0,,2.0,0.0,5.0,1.0,3.0,1.8,3148.6389587505946,0.0,1030.0,0.0,0.0,47523.0,1,1,2,95.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1669.3991688062445,0.033362614444101595,0.03512823619734117,26401.666666666664,7,4,7,7_1,7_0,7_0_0 +6431,2,49.0,3,0.0,6,111,2,0,45,3.0,0.0,0.0,807.5578590753372,0.0,0.0,33732.83369650108,0,50,2,2872,201706431,,,,373.0,2.0,0.0,2.0,1.0,2.0,1.5,3452.634676761818,0.0,600.0,0.0,0.0,24685.0,0,1,3,45.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.023939816807003102,0.03271451728075095,16456.666666666668,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +6432,2,72.0,1,0.0,5,111,1,0,74,10.0,0.0,0.0,448.1946117868121,0.0,0.0,27785.34,0,10,8,2873,201706432,,,,,0.0,0.0,5.0,0.0,1.0,1.0,1825.0085639733463,0.0,333.0,0.0,0.0,54453.0,0,5,1,120.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,448.1946117868121,0.016130614625799507,0.008230852511097866,54453.0,10,5,10,10_0,10_3,10_0_0 +6433,2,68.0,3,0.0,5,111,2,72,74,6.0,0.0,0.0,679.6945313884088,0.0,2354.9675048595295,20075.71574816404,50,10,1,2874,201706433,,,470.0,,0.0,3.0,8.0,0.0,2.0,1.5,1868.9337443914133,0.0,505.0,1331.0,0.0,31777.0,5,5,1,120.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3034.6620362479384,0.1511608390114541,0.09549869516467692,21184.666666666668,5,3,5,5_1,5_2,5_0_0 +6434,2,63.0,1,0.0,5,111,1,0,86,3.0,0.0,0.0,333.79058175113937,0.0,0.0,41312.623849736054,0,12,2,2875,201706434,,,,,0.0,0.0,2.0,0.0,1.0,1.0,1662.2790150019948,0.0,248.0,0.0,0.0,14284.0,0,5,1,46.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,333.79058175113937,0.008079626773772976,0.023368144899967754,14284.0,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +6435,2,73.0,1,0.0,5,111,2,77,74,10.0,0.0,0.0,3761.2371198584806,212.31863304518674,625.841577692049,62105.78,60,50,1,2876,201706435,,,387.0,,0.0,2.0,7.0,0.0,2.0,1.5,1270.818379587723,603.2453539130274,2545.0,0.0,0.0,75016.0,5,5,1,166.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4599.397330595716,0.07405747630245875,0.061312217801478566,50010.666666666664,10,5,10,10_1,10_2,10_0_0 +6436,2,38.0,2,0.0,7,111,2,34,48,9.0,0.0,0.0,947.5345546483957,0.0,1627.776186679765,63248.020000000004,20,31,1,2877,201706436,,,270.0,,2.0,0.0,5.0,2.0,4.0,2.1,2129.3132010041977,0.0,704.0,920.0,0.0,77255.0,1,1,2,140.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2575.3107413281605,0.04071764999644511,0.033335198256788046,36788.09523809524,9,5,9,9_1,9_3,9_0_0 +6437,1,34.0,4,230.0,2,111,4,55,53,2.0,0.0,0.0,1076.7438121004495,325.555237335953,0.0,14203.987849749774,71,71,2,2878,201706437,,,,350.0,2.0,0.0,4.0,2.0,4.0,2.1,4179.281845675326,0.0,800.0,0.0,0.0,23466.0,1,1,3,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1402.2990494364026,0.09872572859607918,0.059758759457785846,11174.285714285714,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6438,2,46.0,1,0.0,1,221,5,22,38,10.0,0.0,388.6193694777632,874.8543473316153,0.0,0.0,33064.11632237629,43,50,2,288,201706438,,,770.0,,2.0,2.0,2.0,0.0,2.0,1.5,5420.906010900967,0.0,650.0,0.0,0.0,62629.0,1,1,3,65.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1263.4737168093784,0.038212837884141995,0.020173940455849183,41752.666666666664,10,5,10,10_0,10_1,10_1_0 +6439,2,64.0,4,0.0,4,111,1,0,75,7.0,0.0,0.0,518.1829595733413,0.0,1902.0210876964645,20044.567127683116,0,44,2,2880,201706439,965.0,965.0,,569.0,0.0,3.0,5.0,0.0,1.0,1.0,2152.524153190542,0.0,385.0,1075.0,0.0,24906.0,0,5,3,99.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2420.204047269806,0.12074114805539077,0.09717353438006127,24906.0,7,4,7,7_0,7_3,7_0_1 +6440,2,71.0,2,0.0,5,112,2,0,78,6.0,0.0,0.0,734.8776517585568,0.0,1703.8570301876236,14726.0858467513,0,70,1,2881,201706440,,,330.0,,0.0,3.0,5.0,0.0,1.0,1.0,2350.214224225002,0.0,546.0,963.0,0.0,22398.0,0,5,1,110.0,9,2.0,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2438.7346819461804,0.1656064420189555,0.10888180560524066,22398.0,6,3,6,6_1,6_1,6_0_0 +6441,2,39.0,2,0.0,9,111,2,43,37,10.0,0.0,83.27557917380639,1682.4122064069525,0.0,0.0,56387.719999999994,33,31,1,2882,201706441,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1916.1603956038077,0.0,1250.0,0.0,0.0,99164.0,1,1,2,110.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1765.6877855807588,0.03131333888975754,0.01780573379029445,41318.333333333336,10,5,10,10_1,10_3,10_0_0 +6442,2,74.0,4,0.0,9,120,6,0,77,5.0,0.0,0.0,1009.4473238441715,106.15931652259337,0.0,14166.030875301627,0,50,2,2883,201706442,,,350.0,550.0,0.0,2.0,2.0,0.0,1.0,1.0,3502.589807544979,0.0,750.0,0.0,0.0,19860.0,0,5,3,65.0,0,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1115.6066403667649,0.07875223837834612,0.05617354684626208,19860.0,5,3,5,5_0,5_1,5_0_0 +6443,2,70.0,2,0.0,3,112,2,0,74,9.0,0.0,0.0,551.8312037014804,0.0,1806.4777028261306,32661.88,0,20,1,2885,201706443,,,200.0,,0.0,1.0,5.0,0.0,1.0,1.0,2527.2062694606943,0.0,410.0,1021.0,0.0,32694.0,0,5,1,100.0,7,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2358.308906527611,0.07220370984547156,0.07213277379725977,32694.0,9,5,9,9_1,9_2,9_0_1 +6444,2,54.0,2,0.0,1,112,6,13,13,4.0,0.0,1193.6166348245583,1776.6272899657417,150.39236507367394,0.0,31250.82,50,50,1,2886,201706444,,,,,2.0,3.0,5.0,0.0,2.0,1.5,1358.5498548837702,0.0,1320.0,0.0,0.0,31877.0,1,1,1,180.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3120.636289863974,0.09985774100852311,0.0978961724711853,21251.333333333332,6,3,6,6_1,6_0,6_1_0 +6445,2,50.0,3,0.0,1,111,2,52,52,5.0,0.0,0.0,580.0957287691172,0.0,2167.419379002948,36628.59775555797,50,42,1,2889,201706445,,,460.0,,2.0,0.0,5.0,1.0,3.0,2.0,1393.251527848864,0.0,431.0,1225.0,0.0,39202.0,1,1,1,102.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2747.515107772065,0.07501010893476427,0.07008609529544578,19601.0,5,3,5,5_1,5_2,5_1_0 +6446,2,66.0,3,0.0,6,120,5,77,75,8.0,0.0,610.6875806079136,1480.522741638118,0.0,0.0,22143.559999999998,71,60,1,289,201706446,,,250.0,,0.0,1.0,4.0,0.0,2.0,1.5,1997.4521944559822,0.0,1100.0,0.0,0.0,42571.0,5,5,1,93.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2091.210322246032,0.09443875881954085,0.049122884645557585,28380.666666666668,8,4,8,8_1,8_0,8_0_0 +6447,1,32.0,4,179.0,9,300,2,85,55,4.0,0.0,0.0,2018.894647688343,0.0,0.0,31933.479999999996,31,42,1,2890,201706447,,,340.0,,1.0,0.0,6.0,2.0,4.0,2.1,2509.8397156924566,0.0,1500.0,0.0,0.0,34358.0,7,1,2,110.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2018.894647688343,0.0632218802237759,0.05876054041819497,16360.95238095238,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +6448,0,32.0,2,0.0,1,112,4,67,68,8.0,0.0,0.0,1749.7086946632305,113.23660429076627,0.0,29801.540000000005,50,50,1,2891,201706448,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2816.5159533889023,0.0,1300.0,0.0,0.0,42675.0,1,1,5,70.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1862.9452989539968,0.06251171244687344,0.043654254222706426,28450.0,8,4,8,8_1,8_0,8_1_0 +6449,2,50.0,2,0.0,1,222,2,54,45,7.0,2316.225773342768,0.0,1547.8192298943961,0.0,0.0,34252.82206659738,71,31,1,2892,201706449,,,,,2.0,1.0,8.0,1.0,3.0,2.0,1349.6287294361134,0.0,1150.0,0.0,0.0,48377.0,1,1,1,141.0,1,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3864.0450032371646,0.11280953714483277,0.0798735970241471,24188.5,7,4,7,7_1,7_0,7_1_0 +6450,2,47.0,3,0.0,8,112,4,54,46,8.0,0.0,0.0,3364.824412813905,0.0,0.0,93090.93999999999,31,41,1,2895,201706450,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.5,2134.2865722582583,0.0,2500.0,0.0,0.0,77769.0,1,1,1,150.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3364.824412813905,0.036145562745567995,0.04326691114472225,31107.6,8,4,8,8_1,8_0,8_0_0 +6451,2,74.0,1,0.0,1,300,2,0,78,7.0,0.0,0.0,1317.3935004634038,0.0,2891.6684946095597,19179.027486750023,0,70,1,2896,201706451,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1881.5710019506441,1242.135204323504,465.0,906.0,0.0,25672.0,0,5,1,80.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4209.061995072963,0.21946170096376502,0.16395535973328776,25672.0,7,4,7,7_1,7_0,7_1_0 +6452,2,43.0,3,0.0,9,300,5,42,43,8.0,0.0,999.3069500856767,1150.7699491823555,0.0,0.0,41815.62,20,10,1,2899,201706452,,,180.0,,2.0,0.0,6.0,3.0,5.0,2.4,2736.8279088465297,0.0,855.0,0.0,0.0,62669.0,1,1,2,174.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2150.0768992680323,0.05141803228717001,0.034308460311605934,26112.083333333336,7,4,7,7_1,7_0,7_0_0 +6453,2,73.0,2,0.0,9,111,2,77,75,6.0,0.0,0.0,403.7789295376686,0.0,1238.525359430256,69122.94,50,50,2,29,201706453,,,,650.0,0.0,2.0,3.0,0.0,2.0,1.5,1031.2008961107038,0.0,300.0,700.0,0.0,33486.0,5,5,3,69.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1642.3042889679245,0.023759178775785934,0.04904450483688481,22324.0,6,3,6,6_0,6_3,6_0_0 +6454,2,44.0,3,0.0,9,221,2,0,52,2.0,0.0,0.0,57.90010649113758,0.0,107.89560774529735,21177.8,0,50,2,290,201706454,,,,442.0,1.0,0.0,4.0,2.0,3.0,1.8,456.53500491705694,104.0,0.0,0.0,0.0,24509.0,0,1,3,89.0,1,2.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,165.79571423643495,0.007828750589600192,0.006764687022580886,13616.111111111111,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +6455,2,68.0,3,0.0,5,111,2,78,78,5.0,0.0,0.0,524.9126083989692,0.0,1146.5206184440085,22936.539999999997,71,50,1,2900,201706455,,,150.0,,0.0,2.0,4.0,0.0,2.0,1.5,2472.675460749143,0.0,390.0,648.0,0.0,30703.0,5,5,1,116.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1671.4332268429775,0.07287207341835245,0.054438759301793885,20468.666666666668,5,3,5,5_1,5_3,5_0_0 +6456,1,33.0,3,351.0,9,111,1,67,63,4.0,0.0,0.0,565.290501352736,0.0,0.0,16837.690024332245,50,50,2,2902,201706456,,,360.0,49.0,2.0,0.0,4.0,1.0,3.0,1.8,898.5851527488232,0.0,420.0,0.0,0.0,29020.0,4,1,3,80.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,565.290501352736,0.03357292482138769,0.01947934187983239,16122.222222222223,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +6457,2,39.0,2,0.0,9,120,4,38,38,10.0,0.0,0.0,1790.0865876169973,0.0,0.0,36483.7,31,43,1,2903,201706457,,,800.0,,2.0,0.0,5.0,2.0,4.0,2.1,2824.941973281392,0.0,1330.0,0.0,0.0,94052.0,1,1,2,140.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1790.0865876169973,0.04906537954256277,0.019032945472897942,44786.666666666664,10,5,10,10_1,10_0,10_0_0 +6458,1,29.0,4,408.0,99,111,2,0,54,1.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,15631.26,0,50,2,2904,201706458,,,,,1.0,0.0,3.0,2.0,3.0,1.6,1342.0667461008866,1440.0,0.0,0.0,0.0,16311.0,0,4,3,66.0,6,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2295.6329663506376,0.14686167118649665,0.1407413994451988,10194.375,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6459,2,25.0,2,0.0,9,112,2,46,63,7.0,1903.7472109666587,0.0,0.0,297.2460862632615,0.0,35274.56598062246,30,43,1,2905,201706459,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1042.0154898562514,0.0,0.0,0.0,0.0,35050.0,1,1,2,110.0,8,0.0,3,5,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2200.9932972299202,0.06239604190846748,0.0627958144716097,23366.666666666668,6,3,6,6_1,6_0,6_0_0 +6460,2,64.0,1,0.0,9,111,2,0,22,10.0,0.0,0.0,2071.0422706445365,0.0,3859.342892427944,46122.46,0,30,1,2906,201706460,,,1000.0,,1.0,3.0,6.0,0.0,1.0,1.0,2162.6772181498222,3720.0,0.0,0.0,0.0,89613.0,0,5,1,150.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5930.38516307248,0.1285791166185082,0.06617773272931919,89613.0,10,5,10,10_1,10_3,10_0_0 +6461,1,55.0,2,132.0,3,111,1,0,52,4.0,0.0,0.0,457.61612014269105,0.0,0.0,12378.060000000001,0,50,2,2908,201706461,,,84.0,,1.0,2.0,5.0,0.0,1.0,1.0,2170.5858243387825,0.0,340.0,0.0,0.0,16664.0,0,1,3,70.0,5,4.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,457.61612014269105,0.036969938757987195,0.027461361026325674,16664.0,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +6462,2,49.0,2,0.0,1,400,2,47,43,9.0,0.0,0.0,786.0229828333282,3660.727098087428,0.0,45743.9,50,33,1,2909,201706462,,,,,2.0,5.0,5.0,0.0,2.0,1.5,1775.8114841528895,0.0,584.0,0.0,0.0,49510.0,1,1,2,125.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4446.750080920757,0.09720968437148465,0.0898151904851698,33006.666666666664,9,5,9,9_1,9_0,9_1_0 +6463,2,49.0,1,0.0,1,211,3,0,67,4.0,0.0,0.0,1068.925042913309,0.0,1991.9189122208743,18172.7571719182,0,71,2,2911,201706463,,,180.0,,1.0,2.0,3.0,0.0,1.0,1.0,3581.9145105032894,1920.0,0.0,0.0,0.0,17646.0,0,1,3,90.0,1,3.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,3060.8439551341835,0.16843035573402207,0.17345823161816748,17646.0,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +6464,1,47.0,2,256.0,5,111,4,0,85,2.0,0.0,0.0,942.1508355878933,88.46609710216114,0.0,8111.0437861371465,0,31,1,2912,201706464,,,150.0,,0.0,0.0,3.0,0.0,1.0,1.0,2365.1901528860453,0.0,700.0,0.0,0.0,12570.0,0,7,3,60.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1030.6169326900545,0.127063416233989,0.08199020944232732,12570.0,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +6465,2,39.0,2,0.0,1,111,2,42,33,7.0,0.0,0.0,2033.699875104724,0.0,1893.1744779862486,51122.9259281842,20,10,1,2914,201706465,,,462.0,,2.0,0.0,6.0,2.0,4.0,2.1,1828.9112839438103,0.0,1511.0,1070.0,0.0,55371.0,1,1,2,145.0,6,4.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3926.8743530909724,0.07681239447459083,0.07091933237779655,26367.142857142855,7,4,7,7_1,7_2,7_1_0 +6466,2,68.0,2,0.0,1,300,2,77,75,7.0,0.0,693.9631597817199,1049.8252167979383,5131.0336319253465,0.0,38116.64,41,20,1,2915,201706466,,,290.0,,0.0,2.0,5.0,0.0,2.0,1.5,1600.6576425719002,0.0,780.0,0.0,0.0,37366.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6874.822008505005,0.1803627499303455,0.1839860303084356,24910.666666666668,7,4,7,7_1,7_0,7_1_0 +6467,2,51.0,2,0.0,2,300,6,0,42,8.0,1032.7828619494123,0.0,1243.6391029760193,63.69558991355603,0.0,43089.240000000005,0,31,1,2917,201706467,,,480.0,,1.0,1.0,3.0,0.0,1.0,1.0,2468.9751576764534,0.0,924.0,0.0,0.0,28444.285714285714,0,1,1,90.0,0,1.0,1,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2340.117554838988,0.05430862913430331,0.0822702168845006,28444.285714285714,8,4,8,8_1,8_1,8_0_1 +6468,2,62.0,1,0.0,6,111,5,77,74,8.0,0.0,29.14645271083224,870.8165580362386,46.0023704931238,0.0,33088.98,31,12,1,292,201706468,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2390.536851109908,0.0,647.0,0.0,0.0,40240.0,5,5,1,99.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,945.9653812401946,0.028588532533798096,0.023508086014915372,26826.666666666668,7,4,7,7_1,7_2,7_0_0 +6469,0,50.0,3,0.0,7,111,1,68,52,8.0,0.0,0.0,0.0,0.0,0.0,13710.101750603257,71,71,1,2921,201706469,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1548.9794047958287,0.0,0.0,0.0,0.0,43260.0,1,1,5,80.0,6,5.0,3,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,28840.0,8,4,8,8_1,8_2,8_0_0 +6470,2,48.0,3,0.0,99,111,1,0,52,6.0,0.0,0.0,323.0231436301349,0.0,0.0,10877.110875301627,0,50,2,2924,201706470,,,,282.0,1.0,1.0,3.0,0.0,1.0,1.0,2962.532176277574,0.0,240.0,0.0,0.0,22320.0,0,1,3,43.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,323.0231436301349,0.029697513184646775,0.014472363065866259,22320.0,6,3,6,6_0,6_2,6_0_0 +6471,2,44.0,4,0.0,7,112,2,0,47,4.0,0.0,0.0,511.45331074771354,0.0,1326.9914565324173,19790.399999999998,0,50,2,2927,201706471,,,230.0,,1.0,0.0,5.0,2.0,3.0,1.6,883.7361276627267,0.0,380.0,750.0,0.0,26350.0,0,1,3,97.0,9,3.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1838.4447672801307,0.09289578620341837,0.06977019989677916,16468.75,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +6472,1,36.0,4,425.0,5,221,6,85,21,2.0,0.0,0.0,1076.7438121004495,0.0,0.0,33348.94,50,50,2,2928,201706472,,,,45.0,1.0,0.0,4.0,3.0,5.0,2.4,1736.3329006532342,0.0,800.0,0.0,0.0,31210.0,6,1,3,77.0,1,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1076.7438121004495,0.03228719749714532,0.03449996193849566,13004.166666666668,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +6473,1,24.0,2,150.0,1,111,2,48,34,8.0,0.0,0.0,0.5567317931840151,0.0,1.0374577667817053,38439.07119129575,42,10,2,2929,201706473,,,360.0,,2.0,0.0,3.0,0.0,2.0,1.5,1496.0305548871506,1.0,0.0,0.0,0.0,41267.0,1,1,3,70.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1.5941895599657205,4.147315506225638e-05,3.863109894021181e-05,27511.333333333332,8,4,8,8_0,8_3,8_1_0 +6474,0,54.0,2,0.0,9,111,3,0,53,10.0,0.0,0.0,807.5578590753372,0.0,0.0,37737.219999999994,0,31,2,293,201706474,,,,,1.0,3.0,4.0,1.0,2.0,1.3,783.2132739536183,0.0,600.0,0.0,0.0,52158.0,0,1,5,113.0,7,5.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,807.5578590753372,0.021399505821449945,0.015482914587893271,40121.53846153846,9,5,9,9_0,9_2,9_0_0 +6475,2,50.0,4,0.0,9,112,2,85,63,2.0,0.0,0.0,707.0493773436992,0.0,1317.5713638127659,23045.6,71,50,2,2930,201706475,,,630.0,800.0,2.0,1.0,5.0,3.0,5.0,2.8,1651.7873935737416,1270.0,0.0,0.0,0.0,37740.0,7,1,3,100.0,9,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2024.620741156465,0.08785281099890935,0.05364654852030909,13478.57142857143,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +6476,1,53.0,3,237.0,5,112,2,68,46,3.0,0.0,346.98157989085996,1884.3016711757866,0.0,2636.289693644402,40751.062568804235,71,50,1,2931,201706476,,,220.0,503.0,2.0,0.0,8.0,4.0,6.0,3.1,1862.9283926933354,0.0,1400.0,1490.0,0.0,47686.0,1,1,3,120.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,4867.572944711049,0.11944652820997298,0.10207551366671662,15382.58064516129,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +6477,2,32.0,3,0.0,5,111,1,43,38,8.0,0.0,0.0,605.6683943065029,0.0,0.0,67239.98000000001,33,20,2,2933,201706477,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3047.81554636836,0.0,450.0,0.0,0.0,55236.0,1,1,2,101.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,605.6683943065029,0.00900756357016321,0.010965102366328172,30686.666666666664,8,4,8,8_0,8_3,8_0_0 +6478,1,85.0,4,200.0,1,211,2,77,78,5.0,0.0,0.0,471.07541779394666,0.0,2300.11852465619,10592.4,71,71,1,2934,201706478,,,,,0.0,5.0,4.0,0.0,2.0,1.5,906.3632465339988,0.0,350.0,1300.0,0.0,26960.0,5,5,3,80.0,4,3.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,2771.1939424501365,0.2616209680950622,0.10278909282085076,17973.333333333332,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +6479,2,73.0,3,0.0,99,112,2,64,52,5.0,0.0,313.67134822133744,1437.4529891541001,92.0047409862476,0.0,42618.95466143878,50,50,1,2935,201706479,,,230.0,,2.0,6.0,3.0,0.0,2.0,1.5,1436.572651885382,0.0,1068.0,0.0,0.0,28099.0,5,5,3,80.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1843.129078361685,0.043246698399886624,0.06559411645829692,18732.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6480,2,76.0,1,0.0,5,111,7,77,78,10.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,26172.56,31,50,2,2936,201706480,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2031.9127071923747,1200.0,0.0,0.0,0.0,115544.0,5,5,1,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1913.0274719588647,0.07309286794867849,0.016556701100523305,77029.33333333333,10,5,10,10_0,10_3,10_0_0 +6481,2,45.0,3,0.0,6,111,1,55,53,5.0,0.0,0.0,26.91859530251124,0.0,123.8525359430256,24306.019999999997,50,71,2,2938,201706481,,,,,2.0,1.0,3.0,0.0,2.0,1.5,2985.8619232208534,0.0,20.0,70.0,0.0,31775.0,1,1,2,75.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,150.77113124553685,0.006203036582934469,0.004744960857451986,21183.333333333332,5,3,5,5_0,5_4,5_0_0 +6482,2,60.0,3,0.0,9,300,2,52,75,8.0,0.0,222.0682111301504,2288.080600713455,0.0,0.0,32867.0,41,12,1,2939,201706482,,,390.0,,1.0,4.0,4.0,0.0,2.0,1.5,2406.0403228214523,0.0,1700.0,0.0,0.0,41472.0,4,5,1,111.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2510.1488118436055,0.07637292152747757,0.06052635059422274,27648.0,8,4,8,8_1,8_0,8_0_0 +6483,2,74.0,1,0.0,5,111,3,86,78,2.0,0.0,0.0,444.15682249143543,0.0,495.4101437721024,15738.64,71,71,2,2940,201706483,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2227.929955833394,0.0,330.0,280.0,0.0,19286.0,5,5,1,65.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,939.5669662635378,0.05969810391898778,0.048717565397881246,12857.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +6484,2,33.0,3,0.0,9,120,2,46,48,7.0,0.0,188.75797946062784,2234.2434101084327,0.0,0.0,59119.299999999996,20,30,1,2941,201706484,,,764.0,,2.0,0.0,6.0,3.0,5.0,2.4,3309.5115113301317,0.0,1660.0,0.0,0.0,56110.0,1,1,2,170.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2423.0013895690604,0.04098494720960939,0.04318305809248014,23379.166666666668,6,3,6,6_1,6_0,6_0_0 +6485,2,48.0,3,0.0,6,111,2,52,48,7.0,0.0,0.0,1144.0403003567276,0.0,0.0,33410.67999999999,43,50,2,2942,201706485,,,,495.0,2.0,0.0,3.0,0.0,2.0,1.5,1856.5872290164173,0.0,850.0,0.0,0.0,37960.0,1,1,3,65.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1144.0403003567276,0.034241754443690695,0.03013804795460294,25306.666666666668,7,4,7,7_0,7_4,7_0_0 +6486,2,83.0,3,0.0,99,111,2,77,72,3.0,0.0,0.0,581.4416585342427,0.0,1295.1436615756393,9071.5316935026,71,71,1,2944,201706486,,,180.0,,0.0,5.0,2.0,0.0,2.0,1.5,1755.610540482813,0.0,432.0,732.0,0.0,21817.0,5,5,3,58.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1876.585320109882,0.20686532148192446,0.08601481964110015,14544.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +6487,2,35.0,3,0.0,4,112,5,52,62,6.0,793.228004569441,693.9631597817199,1448.2204272751046,0.0,0.0,37745.38,42,50,1,2948,201706487,,,399.0,,2.0,0.0,6.0,2.0,4.0,2.1,2577.6633771128404,0.0,1076.0,0.0,0.0,46350.0,1,1,2,105.0,4,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2935.4115916262654,0.0777687651210894,0.06333142592505427,22071.42857142857,6,3,6,6_1,6_0,6_0_1 +6488,2,47.0,3,0.0,3,300,2,75,56,3.0,0.0,0.0,562.5986418224849,0.0,2209.8831056119852,20045.02,60,50,1,2949,201706488,,,449.0,,1.0,1.0,5.0,1.0,3.0,2.0,2252.0013484190836,0.0,418.0,1249.0,0.0,28415.0,5,1,1,120.0,0,1.0,4,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2772.48174743447,0.1383127453818689,0.09757106272864578,14207.5,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +6489,2,28.0,2,0.0,9,120,4,52,67,7.0,0.0,0.0,1493.9820392893737,106.15931652259337,0.0,73327.37087530163,50,50,1,295,201706489,,,,,2.0,0.0,4.0,1.0,3.0,1.8,4204.124225348431,0.0,1110.0,0.0,0.0,41132.0,1,1,2,102.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1600.141355811967,0.02182188365287391,0.0389025905818333,22851.11111111111,6,3,6,6_1,6_0,6_0_0 +6490,2,79.0,1,0.0,3,111,1,0,75,7.0,0.0,0.0,419.93008671917534,0.0,1592.3897478389006,26328.44,0,44,2,2950,201706490,,,,,0.0,1.0,3.0,0.0,1.0,1.0,5048.1660350226875,0.0,312.0,900.0,0.0,24227.0,0,5,1,53.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2012.3198345580759,0.07643141160502012,0.0830610407627059,24227.0,7,4,7,7_0,7_4,7_0_1 +6491,2,49.0,2,0.0,99,112,6,13,13,2.0,0.0,0.0,613.7439728972563,353.8643884086446,0.0,25553.379999999997,31,50,1,2951,201706491,,,200.0,,3.0,0.0,5.0,2.0,4.0,2.3,1810.355106543081,0.0,456.0,0.0,0.0,27895.0,1,1,1,120.0,4,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,967.6083613059009,0.037866159439804085,0.0346875196739882,12128.260869565218,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6492,2,54.0,3,0.0,1,111,4,0,37,7.0,0.0,0.0,1715.0463292733725,0.0,687.8408077484279,29587.813333944454,0,31,1,2952,201706492,,,350.0,,1.0,2.0,5.0,1.0,2.0,1.5,1930.4736336764909,663.0060806062273,1000.0,0.0,0.0,36488.0,0,1,2,99.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2402.8871370218003,0.08121205544666261,0.06585417498963496,24325.333333333332,7,4,7,7_1,7_2,7_1_0 +6493,1,42.0,3,275.0,1,111,6,0,52,2.0,0.0,0.0,1049.8252167979383,53.079658261296686,0.0,18188.479999999996,0,60,1,2954,201706493,,,,,1.0,0.0,4.0,1.0,2.0,1.3,845.4137086364871,0.0,780.0,0.0,0.0,15388.0,0,2,3,80.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1102.904875059235,0.060637550529743844,0.0716730488081125,11836.923076923076,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +6494,2,57.0,3,0.0,1,111,4,21,21,2.0,0.0,0.0,3249.1855498095765,0.0,536.9428396326666,47218.9835058988,30,44,1,2955,201706494,,,245.0,,2.0,2.0,4.0,0.0,2.0,1.5,2078.042472092001,517.5563351347934,2200.0,0.0,0.0,22217.0,1,1,1,140.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3786.128389442243,0.08018233575420494,0.17041582524383325,14811.333333333334,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +6495,2,66.0,3,0.0,1,221,5,0,77,4.0,0.0,874.3935813249672,780.639263772826,122.08321400098238,0.0,20521.84,0,50,1,2956,201706495,,,214.0,,0.0,5.0,5.0,0.0,1.0,1.0,2135.8625688075444,0.0,580.0,0.0,0.0,18065.0,0,5,1,74.0,1,2.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1777.1160590987756,0.08659633147411615,0.09837343255459594,18065.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +6496,1,38.0,3,47.0,7,111,2,0,85,3.0,0.0,0.0,524.9126083989692,0.0,4458.691293948922,19382.180000000004,0,30,2,2957,201706496,,,,298.0,0.0,0.0,1.0,0.0,1.0,1.0,4882.98675975169,0.0,390.0,2520.0,0.0,14485.0,0,4,3,34.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,4983.603902347892,0.25712298112740106,0.34405273747655446,14485.0,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +6497,2,59.0,4,0.0,3,112,2,0,65,6.0,0.0,0.0,868.5015973670635,0.0,1618.4341161794603,22452.04,0,60,1,2958,201706497,,,250.0,,1.0,1.0,2.0,0.0,1.0,1.0,1898.9666970948078,1560.0,0.0,0.0,0.0,23214.0,0,1,3,49.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2486.935713546524,0.11076658127931911,0.10713085696332057,23214.0,6,3,6,6_1,6_1,6_0_1 +6498,1,38.0,5,360.0,6,111,1,0,62,2.0,0.0,0.0,323.0231436301349,0.0,0.0,11824.64,0,30,2,2960,201706498,,,,,1.0,0.0,1.0,1.0,2.0,1.3,1294.7864707255246,0.0,240.0,0.0,0.0,14650.0,0,4,3,15.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,323.0231436301349,0.02731779941124084,0.022049361339940947,11269.23076923077,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +6499,2,36.0,3,0.0,99,111,4,0,34,9.0,0.0,0.0,2159.196494825489,0.0,311.61171123624734,13019.476133857426,0,10,2,2962,201706499,,,,202.0,1.0,2.0,1.0,0.0,1.0,1.0,10517.32713257182,300.3608640406608,1480.0,0.0,0.0,37690.0,0,1,3,20.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2470.808206061736,0.18977785132508876,0.06555606808335729,37690.0,9,5,9,9_0,9_3,9_0_0 +6500,2,25.0,2,0.0,8,111,2,56,12,10.0,0.0,0.0,1324.394888883553,0.0,0.0,63960.84,42,41,8,2963,201706500,,,,600.0,2.0,0.0,3.0,0.0,2.0,1.5,3231.6812113667834,0.0,984.0,0.0,0.0,79089.0,4,1,3,90.0,6,4.0,3,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1324.394888883553,0.020706339830489296,0.016745626937798595,52726.0,10,5,10,10_0,10_2,10_0_0 +6501,2,62.0,2,0.0,7,111,5,0,78,1.0,31.729120182777642,69.396315978172,672.964882562781,53.079658261296686,0.0,4799.92,0,31,1,2965,201706501,,,50.0,,0.0,0.0,3.0,0.0,1.0,1.0,1989.8873520743791,0.0,500.0,0.0,0.0,5648.0,0,4,1,100.0,7,5.0,1,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,827.1699769850273,0.17232995070439244,0.14645360782312808,5648.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6502,2,28.0,1,0.0,1,111,2,34,38,9.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,71285.38,0,12,1,2967,201706502,,,396.0,,2.0,0.0,6.0,0.0,2.0,1.5,2881.2659033553464,1800.0,0.0,0.0,0.0,54240.0,1,1,2,120.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2869.541207938297,0.04025427384883543,0.05290452079532258,36160.0,9,5,9,9_1,9_3,9_1_0 +6503,1,41.0,4,335.0,99,111,2,65,52,8.0,0.0,222.0682111301504,2678.400232599868,0.0,0.0,38950.51119129575,50,50,2,2969,201706503,,,671.0,,2.0,0.0,5.0,1.0,4.0,2.3,1517.4130943221812,0.0,1990.0,0.0,0.0,69271.0,1,1,3,140.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2900.4684437300184,0.07446547824456241,0.04187132340705372,30117.826086956524,8,4,8,8_0,8_3,8_0_0 +6504,0,44.0,3,0.0,1,112,2,0,54,3.0,4204.108424218038,0.0,1179.0344742499922,0.0,0.0,38767.64000000001,0,31,1,297,201706504,,,,,1.0,0.0,7.0,1.0,2.0,1.5,231.22536438717472,0.0,876.0,0.0,0.0,23520.0,0,1,5,200.0,9,0.0,2,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5383.14289846803,0.13885660562438232,0.22887512323418494,15680.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6505,2,52.0,3,0.0,99,112,2,0,52,6.0,0.0,0.0,500.68587262670906,0.0,0.0,13970.650875301628,0,50,2,2970,201706505,,,166.0,505.0,1.0,1.0,1.0,0.0,1.0,1.0,3759.956020773467,0.0,372.0,0.0,0.0,23460.0,0,1,3,37.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,500.68587262670906,0.03583840703598566,0.021342108807617607,23460.0,6,3,6,6_0,6_2,6_0_0 +6506,2,55.0,2,0.0,1,111,2,46,37,9.0,1932.3034191311585,277.585263912688,524.9126083989692,0.0,184.0094819724952,41590.82000000001,31,41,1,2971,201706506,,,289.0,,2.0,2.0,5.0,0.0,2.0,1.5,1414.4410447958828,0.0,390.0,104.0,0.0,53945.0,1,1,1,85.0,8,7.0,3,5,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2918.8107734153105,0.07017920717637474,0.054107160504501074,35963.333333333336,9,5,9,9_1,9_3,9_1_0 +6508,2,61.0,2,0.0,6,111,4,0,37,9.0,0.0,0.0,1799.5080959728764,0.0,0.0,50207.88,0,41,2,2974,201706508,,,,582.0,2.0,0.0,4.0,2.0,3.0,2.0,2526.0207628316443,0.0,1337.0,0.0,0.0,66947.0,0,1,3,95.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1799.5080959728764,0.03584114875937555,0.026879592752070688,33473.5,9,5,9,9_0,9_4,9_0_0 +6509,2,45.0,1,0.0,3,221,2,54,38,9.0,0.0,0.0,959.6479225345257,0.0,2452.2802116719067,77906.73331690807,50,50,1,2975,201706509,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.3,2711.52531966939,0.0,713.0,1386.0,0.0,72115.0,1,1,1,150.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3411.9281342064323,0.04379503528055056,0.04731232246004898,31354.34782608696,8,4,8,8_1,8_1,8_0_1 +6510,2,47.0,1,0.0,7,111,2,0,37,10.0,0.0,0.0,2422.6735772260117,0.0,70.77287768172891,141601.7858467513,0,12,2,2977,201706510,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3766.3211792340376,0.0,1800.0,40.0,0.0,149432.0,0,1,1,95.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2493.4464549077406,0.017608863052096503,0.01668616129682893,149432.0,10,5,10,10_0,10_4,10_0_0 +6511,2,75.0,3,0.0,1,111,2,0,75,6.0,0.0,0.0,1224.7960862642615,0.0,2459.3574994400797,30357.580000000005,0,33,1,2979,201706511,,,420.0,,2.0,1.0,6.0,2.0,3.0,2.0,2184.7798646545707,0.0,910.0,1390.0,0.0,43300.0,0,5,5,150.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3684.153585704341,0.12135860584751289,0.08508437842273305,21650.0,6,3,6,6_1,6_3,6_1_0 +6512,1,27.0,3,59.0,99,111,1,0,56,2.0,0.0,0.0,347.249879402395,0.0,191.08676974066807,16253.390875301628,0,50,2,2980,201706512,,,195.0,183.0,1.0,0.0,3.0,1.0,2.0,1.3,1132.3351243576299,0.0,258.0,108.0,0.0,16309.0,0,1,3,60.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,538.336649143063,0.033121497739964534,0.03300856270421626,12545.384615384615,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6513,1,30.0,5,422.0,99,111,1,0,68,1.0,0.0,0.0,565.290501352736,0.0,0.0,13439.897038047044,0,31,2,2981,201706513,,,,53.0,1.0,1.0,2.0,2.0,3.0,1.6,2656.3111814101653,0.0,420.0,0.0,0.0,12486.0,0,4,4,32.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,565.290501352736,0.04206062738073465,0.04527394692877911,7803.75,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6514,2,57.0,5,0.0,1,111,2,85,62,4.0,0.0,0.0,110.78962684361902,0.0,206.45409558955936,21316.095067511313,50,50,1,2982,201706514,,,320.0,,1.0,0.0,4.0,0.0,2.0,1.5,1416.0539705404715,199.0,0.0,0.0,0.0,24240.0,6,1,1,90.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,317.2437224331784,0.01488282546256335,0.013087612311599769,16160.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +6515,2,58.0,3,0.0,6,111,2,72,56,5.0,0.0,0.0,621.8195514880097,0.0,1137.6740087337923,26534.120000000003,60,70,1,2984,201706515,,,170.0,,1.0,2.0,3.0,0.0,2.0,1.5,1435.9769549186794,0.0,462.0,643.0,0.0,30245.0,5,1,1,75.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1759.493560221802,0.06631060537232068,0.058174692022542634,20163.333333333332,5,3,5,5_1,5_3,5_0_0 +6516,2,44.0,4,0.0,99,221,4,85,62,1.0,0.0,0.0,810.2497186055883,0.0,0.0,15105.36,41,71,1,2985,201706516,,,280.0,,1.0,1.0,4.0,1.0,3.0,1.8,3046.3759271192116,0.0,602.0,0.0,0.0,13750.0,4,1,3,53.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,810.2497186055883,0.053639881380224526,0.0589272522622246,7638.888888888889,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +6517,2,63.0,2,0.0,2,400,2,0,75,3.0,0.0,0.0,1049.8252167979383,0.0,0.0,19846.8,0,30,1,2987,201706517,,,200.0,,0.0,1.0,2.0,0.0,1.0,1.0,2146.235257246158,0.0,780.0,0.0,0.0,14156.0,0,5,2,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1049.8252167979383,0.05289644762873301,0.07416114840335818,14156.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +6519,2,53.0,3,0.0,1,300,2,13,54,9.0,0.0,902.152107716236,942.1508355878933,0.0,0.0,21148.18,50,50,1,299,201706519,,,,,2.0,3.0,7.0,0.0,2.0,1.5,1783.2511019993951,0.0,700.0,0.0,0.0,50779.0,1,1,1,200.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1844.3029433041293,0.08720858926414136,0.03632019030119005,33852.666666666664,9,5,9,9_1,9_0,9_1_0 +6520,2,43.0,5,0.0,1,111,2,0,68,1.0,0.0,0.0,1068.925042913309,0.0,1991.9189122208743,16026.587597354557,0,50,2,2990,201706520,,,600.0,90.0,1.0,0.0,3.0,1.0,2.0,1.5,2442.022714312887,1920.0,0.0,0.0,0.0,12180.0,0,1,3,55.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,3060.8439551341835,0.1909853820434878,0.25130081733449783,8120.0,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +6521,2,66.0,3,0.0,4,111,2,77,74,4.0,0.0,0.0,1386.3076580793288,0.0,1636.6227963899812,30140.684177580944,50,31,1,2992,201706521,,,370.0,,0.0,0.0,5.0,0.0,2.0,1.5,2282.956729844824,0.0,1030.0,925.0,0.0,24773.0,5,5,1,120.0,8,6.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3022.93045446931,0.10029402241365866,0.12202520705886691,16515.333333333332,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +6522,2,82.0,4,0.0,1,112,5,0,11,6.0,0.0,0.0,201.8894647688343,120.31389205893916,0.0,11033.251191295745,0,71,1,2995,201706522,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2736.0096359663767,0.0,150.0,0.0,0.0,20194.0,0,5,1,75.0,8,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,322.20335682777346,0.029202938575527335,0.015955400456956197,20194.0,5,3,5,5_1,5_1,5_1_0 +6523,1,33.0,2,257.0,9,112,1,0,63,2.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,11884.4,0,71,2,2997,201706523,,,220.0,,1.0,0.0,2.0,0.0,1.0,1.0,3380.259308338976,960.0,0.0,0.0,0.0,12916.0,0,4,3,60.0,9,0.0,1,5,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1530.4219775670917,0.12877570407989397,0.11849039776765963,12916.0,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +6524,2,77.0,3,0.0,1,120,6,77,78,5.0,0.0,0.0,1499.365758349876,159.23897478389006,0.0,17414.760000000002,60,50,1,2999,201706524,,,346.0,,0.0,3.0,2.0,0.0,2.0,1.5,2703.479361679627,0.0,1114.0,0.0,0.0,29883.0,5,5,1,54.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1658.6047331337659,0.09524132018665578,0.055503287258098784,19922.0,5,3,5,5_1,5_0,5_1_0 +6525,1,40.0,4,270.0,2,111,2,85,62,2.0,0.0,0.0,1614.5222002336438,0.0,3008.6275236669458,31069.92,50,71,1,3,201706525,,,800.0,386.0,2.0,0.0,6.0,3.0,5.0,2.6,968.686099856059,2900.0,0.0,0.0,0.0,34040.0,6,1,3,120.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,4623.149723900589,0.1487982500083872,0.13581520928027582,13092.307692307691,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +6526,2,69.0,3,0.0,6,111,4,0,75,6.0,0.0,0.0,2180.4062195034103,0.0,0.0,25035.443018669503,0,70,1,3002,201706526,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2003.3207790966985,0.0,1620.0,0.0,0.0,21651.0,0,5,1,100.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2180.4062195034103,0.08709277554535111,0.10070695208089281,21651.0,6,3,6,6_1,6_3,6_0_0 +6527,2,55.0,2,0.0,6,112,4,67,56,5.0,0.0,291.4645271083224,1736.249397011975,0.0,0.0,55768.845846751305,50,70,1,3004,201706527,,,410.0,,2.0,2.0,6.0,0.0,2.0,1.5,1569.8591459100314,0.0,1290.0,0.0,0.0,29307.0,1,1,1,130.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2027.7139241202972,0.036359259248296194,0.06918872365374475,19538.0,5,3,5,5_1,5_1,5_0_0 +6528,1,54.0,4,270.0,1,111,4,0,68,1.0,0.0,0.0,532.9881869897225,0.0,0.0,6069.24,0,60,2,3005,201706528,,,,,1.0,3.0,2.0,0.0,1.0,1.0,2719.3120186955875,0.0,396.0,0.0,0.0,9190.0,0,4,3,42.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,532.9881869897225,0.08781794540827559,0.05799653830138439,9190.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +6529,2,82.0,3,0.0,99,111,1,0,86,2.0,0.0,0.0,220.73248148059216,0.0,0.0,6030.36,0,71,2,3006,201706529,,,,210.0,0.0,2.0,1.0,0.0,1.0,1.0,1451.8956214609004,0.0,164.0,0.0,0.0,13120.0,0,6,3,26.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,220.73248148059216,0.03660353303626851,0.016824122064069524,13120.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +6530,1,46.0,5,45.0,1,300,2,0,33,5.0,2083.0167399993525,0.0,1144.0403003567276,0.0,0.0,33784.02,0,31,1,3008,201706530,,,168.0,,1.0,0.0,5.0,2.0,3.0,1.8,547.6830780200397,0.0,850.0,0.0,0.0,35064.0,0,1,2,160.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3227.05704035608,0.09552022051715812,0.09203334018811545,19480.0,5,3,5,5_1,5_0,5_1_0 +6531,1,31.0,4,437.0,9,111,1,0,68,2.0,0.0,0.0,349.9417389326461,0.0,833.350634702358,13961.291191295746,0,71,2,301,201706531,471.0,471.0,,108.0,1.0,0.0,4.0,2.0,3.0,1.6,407.91789972700894,0.0,260.0,471.0,0.0,17194.0,0,4,3,77.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1183.292373635004,0.0847552248156485,0.06882007523758311,10746.25,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6532,2,59.0,3,0.0,1,111,5,77,63,3.0,0.0,1165.8581084332895,2939.510607034227,0.0,0.0,33823.100000000006,50,71,1,3010,201706532,,,750.0,,1.0,3.0,5.0,1.0,3.0,2.0,2322.1288707055396,0.0,2184.0,0.0,0.0,29442.0,7,1,2,100.0,6,5.0,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4105.368715467517,0.12137765951280387,0.13943919283566053,14721.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +6533,1,43.0,4,207.0,9,111,5,54,48,3.0,0.0,832.755791738064,651.3761980252978,0.0,1213.8255871345953,44804.2,31,50,1,3011,201706533,,,430.0,,2.0,0.0,7.0,3.0,5.0,2.4,2030.7680741467352,1170.0,0.0,0.0,0.0,35784.0,1,1,2,132.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2697.9575768979566,0.06021662203315664,0.075395639864128,14910.0,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +6534,2,57.0,2,0.0,6,112,4,77,78,5.0,0.0,0.0,177.66272899657417,132.69914565324171,0.0,32958.02,50,50,1,3012,201706534,,,230.0,,0.0,3.0,7.0,0.0,2.0,1.5,2210.464383146304,0.0,132.0,0.0,0.0,29710.0,4,5,1,110.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,310.3618746498159,0.009416884711211897,0.01044637747054244,19806.666666666668,5,3,5,5_1,5_1,5_0_0 +6535,2,52.0,2,0.0,3,111,1,63,52,8.0,0.0,0.0,694.49975880479,0.0,0.0,29271.76,50,50,2,3013,201706535,,,187.0,295.0,2.0,0.0,3.0,0.0,2.0,1.5,1786.9965685793172,0.0,516.0,0.0,0.0,43098.0,1,1,3,72.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,694.49975880479,0.023725931027201302,0.01611443126838345,28732.0,8,4,8,8_0,8_2,8_0_1 +6536,2,74.0,2,0.0,7,112,4,0,74,9.0,0.0,0.0,2161.3136048429483,0.0,516.2058024935282,28461.429836929947,0,12,1,3014,201706536,,,200.0,,0.0,3.0,4.0,0.0,1.0,1.0,2951.449880534335,497.56801579966833,1400.0,0.0,0.0,32080.0,0,5,5,100.0,8,3.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2677.5194073364764,0.09407536524613666,0.08346382192445376,32080.0,9,5,9,9_1,9_1,9_0_0 +6537,2,54.0,3,0.0,7,111,2,52,37,9.0,0.0,0.0,1776.6272899657417,0.0,2123.1863304518674,57074.113948896294,50,50,1,3015,201706537,,,792.0,,3.0,1.0,4.0,1.0,3.0,2.0,1931.4161009835059,0.0,1320.0,1200.0,0.0,95601.0,1,1,1,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3899.813620417609,0.0683289384730435,0.04079260280141012,47800.5,10,5,10,10_1,10_3,10_0_0 +6538,2,42.0,3,0.0,2,111,2,54,53,7.0,0.0,0.0,613.7439728972563,0.0,2335.504963497054,29493.76,43,43,1,3016,201706538,,,168.0,,2.0,0.0,4.0,2.0,4.0,2.1,1747.347949887261,0.0,456.0,1320.0,0.0,48463.0,1,1,2,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2949.2489363943105,0.09999569184784546,0.06085568240501642,23077.619047619046,6,3,6,6_1,6_3,6_0_1 +6539,2,70.0,4,0.0,7,111,2,77,72,4.0,0.0,0.0,662.1974444417765,0.0,1981.6405750884096,17257.16,71,71,1,3017,201706539,,,320.0,,0.0,3.0,5.0,0.0,2.0,1.5,1902.5814947602944,0.0,492.0,1120.0,0.0,22386.0,5,5,1,109.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2643.838019530186,0.1532023820565021,0.1181022969503344,14924.0,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +6540,2,69.0,2,0.0,5,111,4,78,78,7.0,0.0,0.0,1695.871504058208,0.0,0.0,26469.559999999994,70,70,1,3018,201706540,,,255.0,,0.0,3.0,5.0,0.0,2.0,1.5,1723.2461916055834,0.0,1260.0,0.0,0.0,38713.0,5,5,1,90.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1695.871504058208,0.06406874553480331,0.04380625381805099,25808.666666666668,7,4,7,7_1,7_3,7_0_0 +6541,2,72.0,3,0.0,5,120,4,0,75,6.0,0.0,0.0,2220.7841124571773,0.0,194.62541362475451,87607.58932216844,50,30,1,3019,201706541,,,500.0,,1.0,1.0,6.0,1.0,5.0,2.8,1920.7727137711208,0.0,1650.0,110.0,0.0,61621.0,5,5,1,110.0,0,3.0,5,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2415.4095260819317,0.027570779481210204,0.039197830708393756,22007.5,6,3,6,6_1,6_1,6_0_0 +6542,2,40.0,2,0.0,1,112,6,21,22,5.0,1586.456009138882,0.0,718.7264945770501,53.079658261296686,0.0,28075.621204189894,50,31,1,302,201706542,,,127.0,,2.0,2.0,4.0,0.0,2.0,1.5,3074.7074263103673,0.0,534.0,0.0,0.0,28610.0,1,1,2,90.0,9,3.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2358.262161977229,0.08399679368894218,0.08242789800689371,19073.333333333332,5,3,5,5_1,5_1,5_1_0 +6543,0,66.0,3,0.0,6,112,4,77,75,5.0,0.0,0.0,1415.9181129120911,0.0,0.0,33902.06166666666,41,41,1,3020,201706543,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2164.2196210324096,0.0,1052.0,0.0,0.0,31481.0,5,5,5,100.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1415.9181129120911,0.041764955973289865,0.04497691029230619,20987.333333333332,5,3,5,5_1,5_1,5_0_0 +6544,2,50.0,3,0.0,1,400,2,56,65,5.0,1332.6230476766611,0.0,807.5578590753372,254.7823596542241,0.0,29572.349561086376,50,50,1,3021,201706544,,,600.0,,2.0,0.0,5.0,1.0,3.0,2.0,2274.9763499776745,0.0,600.0,0.0,0.0,38138.0,1,1,1,160.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2394.9632664062224,0.0809865736727833,0.0627972957786518,19069.0,5,3,5,5_1,5_0,5_1_0 +6545,2,82.0,1,0.0,4,300,2,72,72,5.0,1713.3724898699927,0.0,730.7422763050185,175.16287226227908,569.1594100106265,26579.151658291456,60,41,1,3022,201706545,,,340.0,,0.0,3.0,7.0,0.0,2.0,1.5,1567.205383672936,548.609715242881,316.0,0.0,0.0,30263.0,5,5,1,122.0,0,1.0,3,5,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3188.437048447917,0.11996007583083537,0.10535759998836589,20175.333333333332,5,3,5,5_1,5_1,5_0_1 +6546,2,40.0,3,0.0,7,111,6,77,54,2.0,0.0,0.0,1588.1971228481632,0.0,866.9677516011792,25667.360000000004,70,50,1,3023,201706546,,,430.0,830.0,3.0,1.0,5.0,3.0,5.0,2.8,2707.077510852862,0.0,1180.0,490.0,0.0,32576.0,7,1,3,73.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2455.1648744493423,0.09565319045080374,0.07536729108697637,11634.285714285716,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +6547,2,33.0,2,0.0,8,111,2,65,38,9.0,0.0,0.0,134.5929765125562,0.0,212.31863304518674,49215.83,31,30,1,3024,201706547,,,550.0,,2.0,0.0,5.0,3.0,5.0,2.6,2798.118550382199,0.0,100.0,120.0,0.0,81302.0,1,1,2,110.0,4,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,346.91160955774296,0.007048781043776828,0.004266950500082937,31270.0,8,4,8,8_1,8_1,8_0_0 +6548,2,61.0,1,0.0,1,111,1,0,43,10.0,0.0,0.0,421.2760164843009,0.0,0.0,34085.301349499154,0,33,2,3026,201706548,,,,,1.0,2.0,5.0,0.0,1.0,1.0,2119.2577020687504,0.0,313.0,0.0,0.0,48744.0,0,1,1,140.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,421.2760164843009,0.01235946287124409,0.00864262301994709,48744.0,10,5,10,10_0,10_2,10_1_0 +6549,2,75.0,3,0.0,4,111,1,78,78,5.0,0.0,0.0,538.3719060502248,0.0,230.01185246561897,39508.880315994116,70,50,2,3028,201706549,,,,,0.0,2.0,3.0,0.0,2.0,1.5,4136.6870705203055,0.0,400.0,130.0,0.0,30060.0,5,5,1,76.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,768.3837585158437,0.019448381031562264,0.02556166861330152,20040.0,5,3,5,5_0,5_3,5_0_1 +6550,2,49.0,1,0.0,99,111,2,0,38,10.0,0.0,0.0,1022.9066214954271,0.0,0.0,27806.58,0,20,2,3029,201706550,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2572.8107890955425,0.0,760.0,0.0,0.0,54697.0,0,1,2,47.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1022.9066214954271,0.03678649519269997,0.018701329533528842,54697.0,10,5,10,10_0,10_4,10_0_0 +6551,2,80.0,2,0.0,2,111,2,75,74,9.0,0.0,0.0,762.9871652093832,0.0,2226.53546173722,22702.65849625486,31,30,1,303,201706551,,,185.0,,0.0,4.0,7.0,0.0,2.0,1.5,1995.5082002165564,657.2965456211875,295.0,873.0,0.0,48478.0,5,5,1,100.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2989.522626946603,0.1316816102149345,0.061667614731354486,32318.666666666668,9,5,9,9_1,9_3,9_0_1 +6552,1,56.0,3,149.0,5,111,1,0,62,3.0,0.0,0.0,323.0231436301349,40.694404666994124,488.3328560039295,16314.7,0,50,2,3030,201706552,276.0,276.0,150.0,108.0,1.0,3.0,3.0,0.0,1.0,1.0,5027.074052172775,0.0,240.0,276.0,0.0,15311.0,0,4,3,68.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,852.0504043010585,0.052225931479037827,0.0556495594214002,15311.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +6553,2,55.0,3,0.0,99,112,6,0,37,7.0,0.0,0.0,1278.633276869284,254.7823596542241,0.0,36188.84,0,41,1,3031,201706553,,,244.0,,1.0,2.0,3.0,1.0,2.0,1.3,4687.009985258104,0.0,950.0,0.0,0.0,31082.0,0,1,1,75.0,7,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1533.415636523508,0.04237261090776903,0.049334522763126824,23909.23076923077,7,4,7,7_1,7_1,7_0_0 +6554,2,44.0,3,0.0,6,111,4,56,47,8.0,0.0,0.0,3728.2254493978066,0.0,0.0,51100.0,30,31,1,3032,201706554,,,160.0,,2.0,0.0,4.0,1.0,3.0,1.8,2706.7768272674107,0.0,2770.0,0.0,0.0,49510.0,1,1,2,113.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3728.2254493978066,0.07295940214085728,0.07530247322556669,27505.555555555555,8,4,8,8_1,8_4,8_0_0 +6555,2,61.0,1,0.0,5,112,6,37,23,10.0,0.0,0.0,8461.34772955281,0.0,5194.823778993527,91807.74135583577,12,12,1,3033,201706555,,,,,3.0,1.0,8.0,2.0,4.0,2.5,3587.998482956253,3881.6725135109505,4681.0,660.0,0.0,295886.0,1,1,1,250.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,13656.171508546337,0.1487474945671156,0.046153489886464165,118354.4,10,5,10,10_1,10_0,10_0_0 +6556,2,91.0,2,0.0,1,111,2,77,75,6.0,0.0,0.0,1076.7438121004495,0.0,1946.2541362475451,33675.06,70,71,1,3034,201706556,,,600.0,,0.0,0.0,4.0,1.0,3.0,2.0,2619.5762426901642,0.0,800.0,1100.0,0.0,43430.0,5,5,1,97.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3022.9979483479947,0.08976963807482437,0.06960621571144358,21715.0,6,3,6,6_1,6_4,6_1_0 +6557,2,91.0,3,0.0,1,111,2,75,75,5.0,0.0,0.0,632.5869896090142,0.0,3750.9625171316325,17565.86,41,71,1,3035,201706557,,,158.0,,0.0,3.0,5.0,0.0,2.0,1.5,2109.499505311568,0.0,470.0,2120.0,0.0,27940.0,5,5,5,110.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4383.549506740646,0.24954938196824103,0.1568915356743252,18626.666666666668,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +6558,2,56.0,3,0.0,99,111,4,0,52,1.0,0.0,0.0,1144.0403003567276,127.39117982711205,0.0,14304.240513464174,0,50,2,3037,201706558,,,,500.0,2.0,0.0,4.0,2.0,3.0,2.0,2193.227593652088,0.0,850.0,0.0,0.0,21530.0,0,1,3,90.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1271.4314801838395,0.08888493443514721,0.05905394705916579,10765.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +6559,2,66.0,3,0.0,6,111,1,0,77,8.0,0.0,0.0,355.32545799314835,0.0,0.0,24158.34,0,60,1,3038,201706559,1600.0,1600.0,103.0,,0.0,3.0,3.0,0.0,1.0,1.0,1499.60101088962,0.0,264.0,0.0,1600.0,30245.0,0,5,1,86.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,355.32545799314835,0.014708190131985408,0.011748237989523834,30245.0,8,4,8,8_1,8_4,8_0_0 +6560,2,61.0,3,0.0,1,221,2,77,78,5.0,0.0,0.0,1017.5229024349248,0.0,2229.345646974461,30795.540197470058,50,71,1,304,201706560,,,380.0,,1.0,7.0,6.0,1.0,3.0,2.0,3230.1925633344867,0.0,756.0,1260.0,0.0,37606.0,5,5,1,75.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3246.868549409386,0.10543307662698918,0.08633910943491427,18803.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +6561,2,95.0,3,0.0,1,112,2,0,78,2.0,0.0,0.0,590.8631668901216,0.0,2354.9675048595295,17451.999999999996,0,71,1,3041,201706561,,,367.0,,0.0,2.0,5.0,0.0,1.0,1.0,2653.0259225909076,0.0,439.0,1331.0,0.0,11982.0,0,5,1,100.0,6,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2945.830671749651,0.16879616500972106,0.2458546713194501,11982.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6562,2,47.0,3,0.0,3,111,6,0,46,2.0,31.729120182777642,0.0,1615.1157181506744,0.0,0.0,15612.220000000001,0,50,2,3042,201706562,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4357.248827785869,0.0,1200.0,0.0,0.0,13079.0,0,1,1,45.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1646.8448383334521,0.10548434741077514,0.1259151952239049,13079.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +6563,1,52.0,4,257.0,99,111,2,0,85,1.0,0.0,0.0,1288.0547852251627,95.54338487033404,0.0,10482.74,0,71,2,3043,201706563,,,280.0,,0.0,3.0,4.0,1.0,2.0,1.5,1061.589962878398,0.0,957.0,0.0,0.0,3474.0,0,7,3,70.0,6,5.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1383.5981700954967,0.13198821778423359,0.3982723575404423,2316.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6564,2,36.0,3,0.0,10,112,2,65,62,6.0,0.0,0.0,1475.1390225776158,0.0,0.0,34656.92,42,43,1,3044,201706564,,,130.0,,2.0,0.0,4.0,2.0,4.0,2.1,2432.3317881465537,0.0,1096.0,0.0,0.0,46268.0,1,1,2,140.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1475.1390225776158,0.04256405423729564,0.031882489465237654,22032.38095238095,6,3,6,6_1,6_0,6_0_0 +6565,2,35.0,2,0.0,99,111,2,46,37,10.0,1269.1648073111057,832.755791738064,511.45331074771354,106.15931652259337,0.0,46329.89665845403,0,0,1,3045,201706565,,,750.0,700.0,2.0,0.0,5.0,1.0,3.0,1.8,3077.5481697452906,0.0,380.0,0.0,0.0,81790.0,1,1,3,90.0,4,3.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2719.533226319477,0.05869931561401898,0.03325019227680006,45438.88888888889,10,5,10,10_1,10_1,10_0_0 +6566,2,33.0,3,0.0,99,111,2,67,47,3.0,0.0,0.0,990.982591867547,0.0,1846.6748248714355,39338.66,41,50,1,3046,201706566,,,380.0,,2.0,0.0,4.0,2.0,4.0,2.1,1916.4949954959336,1780.0,0.0,0.0,0.0,32690.0,4,1,2,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2837.6574167389826,0.07213406396504056,0.08680506016332158,15566.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +6567,2,81.0,3,0.0,4,221,2,77,75,5.0,0.0,0.0,623.1654812531352,0.0,1468.537211895875,20837.5,70,70,1,3047,201706567,,,440.0,,0.0,3.0,5.0,0.0,2.0,1.5,2935.8847565897277,0.0,463.0,830.0,0.0,29262.0,5,5,3,99.0,1,2.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2091.7026931490104,0.10038165294056439,0.07148187728620772,19508.0,5,3,5,5_1,5_1,5_0_1 +6568,2,50.0,3,0.0,1,111,2,0,63,7.0,0.0,0.0,403.7789295376686,0.0,3007.847301473479,11404.16,0,50,1,3048,201706568,,,260.0,,1.0,2.0,6.0,0.0,2.0,1.5,3965.3167674689116,0.0,300.0,1700.0,0.0,39797.0,0,1,1,170.0,7,5.0,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3411.626231011148,0.2991562930554419,0.08572571377267502,26531.333333333332,7,4,7,7_1,7_2,7_1_0 +6569,2,54.0,2,0.0,9,120,2,77,52,3.0,0.0,277.585263912688,821.0171567265928,0.0,1415.4575536345783,29907.480000000003,71,50,1,3049,201706569,,,552.0,,1.0,2.0,5.0,0.0,2.0,1.5,2067.2960316193826,0.0,610.0,800.0,0.0,25495.0,7,1,1,150.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2514.059974273859,0.08406124401901661,0.09860992250534846,16996.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6570,1,43.0,5,450.0,99,112,1,85,63,2.0,0.0,0.0,969.0694308904046,0.0,0.0,19089.02,41,71,2,305,201706570,,,,30.0,1.0,0.0,4.0,5.0,7.0,3.2,1341.8612494689019,0.0,720.0,0.0,0.0,41070.0,6,1,3,66.0,10,5.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,969.0694308904046,0.05076580311039564,0.02359555468445105,12834.375,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6571,2,55.0,1,0.0,3,111,2,0,33,8.0,0.0,0.0,421.2760164843009,0.0,3715.5760782907682,57951.13999999999,0,20,1,3050,201706571,,,192.0,,1.0,2.0,4.0,1.0,2.0,1.5,2365.918604622224,0.0,313.0,2100.0,0.0,40639.0,0,1,1,110.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4136.852094775069,0.07138517197030239,0.10179512524361006,27092.666666666668,7,4,7,7_1,7_4,7_0_1 +6572,2,48.0,2,0.0,99,120,2,85,47,3.0,523.5304830158311,1462.8743408198657,876.2002770967408,318.4779495677801,0.0,33016.0,42,31,1,3051,201706572,,,353.0,,1.0,0.0,5.0,1.0,3.0,2.0,1677.9575717813202,0.0,651.0,0.0,0.0,28115.0,6,1,1,120.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3181.0830505002177,0.09634974104980064,0.1131454046060899,14057.5,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6573,2,44.0,2,0.0,4,111,1,0,42,6.0,0.0,0.0,1189.8019123709967,0.0,525.4886167868372,42931.93119129575,0,30,2,3052,201706573,390.0,390.0,,309.0,1.0,0.0,3.0,2.0,3.0,2.0,2800.9484273605217,0.0,884.0,297.0,0.0,43962.0,0,1,3,60.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1715.2905291578338,0.03995372398960709,0.03901757265724566,21981.0,6,3,6,6_0,6_2,6_0_1 +6574,2,26.0,3,0.0,1,211,2,0,13,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,34966.41672205293,0,43,1,3056,201706574,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4766.278058953263,0.0,1200.0,0.0,0.0,22506.0,0,1,1,40.0,1,3.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1615.1157181506744,0.046190484171975195,0.07176378379768393,22506.0,6,3,6,6_1,6_1,6_1_0 +6575,2,65.0,2,0.0,5,111,3,75,74,9.0,0.0,0.0,1877.572022350159,0.0,0.0,42426.8,31,12,8,3057,201706575,995.0,995.0,400.0,,0.0,3.0,4.0,0.0,2.0,1.5,2045.010195069063,0.0,1395.0,0.0,0.0,58286.0,5,5,1,80.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1877.572022350159,0.0442543869052146,0.032213087574205795,38857.333333333336,9,5,9,9_0,9_4,9_0_0 +6576,1,35.0,4,153.0,8,211,2,22,63,2.0,0.0,0.0,742.9532303493102,0.0,1173.0604475746568,25392.379999999997,60,41,2,3058,201706576,,,,241.0,2.0,0.0,4.0,2.0,4.0,2.1,1816.1780984765705,0.0,552.0,663.0,0.0,26767.0,4,1,3,74.0,4,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1916.013677923967,0.0754562462409576,0.07158118869966627,12746.190476190475,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6577,2,57.0,1,0.0,2,111,4,0,38,10.0,0.0,0.0,558.5608525271082,0.0,176.9321942043223,20203.137038047047,0,20,2,3059,201706577,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2665.9390935548286,0.0,415.0,100.0,0.0,72363.0,0,1,3,38.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,735.4930467314305,0.03640489322753847,0.01016393801710032,72363.0,10,5,10,10_0,10_4,10_0_1 +6578,2,59.0,2,0.0,9,112,2,74,21,10.0,0.0,0.0,3230.231436301349,0.0,0.0,70659.88,31,50,1,306,201706578,,,340.0,,1.0,2.0,8.0,0.0,2.0,1.5,2555.307694691777,0.0,2400.0,0.0,0.0,65437.0,5,1,1,250.0,5,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3230.231436301349,0.045715212597323245,0.0493639903464607,43624.666666666664,10,5,10,10_1,10_0,10_0_0 +6579,2,33.0,2,0.0,9,111,4,55,38,8.0,0.0,0.0,1179.0344742499922,0.0,0.0,46148.16384973604,31,60,2,3061,201706579,,,,1050.0,2.0,0.0,3.0,0.0,2.0,1.5,2379.1615576154663,0.0,876.0,0.0,0.0,55952.0,1,1,3,83.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1179.0344742499922,0.025548892434573776,0.02107224896786517,37301.333333333336,9,5,9,9_0,9_3,9_0_0 +6580,2,29.0,2,0.0,9,111,6,64,63,8.0,0.0,0.0,1884.3016711757866,0.0,0.0,24217.63087530163,50,50,1,3063,201706580,,,600.0,,2.0,0.0,4.0,1.0,3.0,1.8,2580.6131041126155,0.0,1400.0,0.0,0.0,50346.0,1,1,3,76.0,6,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1884.3016711757866,0.07780701922818938,0.03742703831835273,27970.0,8,4,8,8_1,8_2,8_0_0 +6581,2,32.0,4,0.0,4,111,1,0,56,2.0,0.0,0.0,538.3719060502248,0.0,1061.5931652259337,18967.839999999997,0,50,2,3065,201706581,,,,460.0,1.0,7.0,5.0,1.0,2.0,1.5,2356.50025233918,0.0,400.0,600.0,0.0,19810.0,0,4,3,90.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1599.9650712761586,0.08435146391345345,0.08076552606139115,13206.666666666666,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +6582,2,62.0,3,0.0,9,111,4,77,45,8.0,0.0,0.0,1615.1157181506744,0.0,0.0,34072.5,50,50,2,3066,201706582,,,,,1.0,4.0,3.0,0.0,2.0,1.5,1855.939474499427,0.0,1200.0,0.0,0.0,43400.0,5,1,2,67.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1615.1157181506744,0.047402324987913254,0.03721464788365609,28933.333333333332,8,4,8,8_0,8_3,8_0_0 +6584,2,44.0,2,0.0,2,111,4,85,46,8.0,0.0,0.0,201.8894647688343,0.0,0.0,23222.433316908056,70,42,1,3068,201706584,,,528.0,,1.0,0.0,4.0,1.0,3.0,1.8,1729.0815123838188,0.0,150.0,0.0,0.0,53990.0,6,1,2,90.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,201.8894647688343,0.008693725675243529,0.0037393862709545157,29994.444444444445,8,4,8,8_1,8_2,8_0_1 +6585,2,46.0,2,0.0,9,400,2,46,38,8.0,0.0,0.0,2464.397399944904,106.15931652259337,0.0,52822.14000000001,50,12,1,3069,201706585,,,367.0,,2.0,0.0,6.0,2.0,4.0,2.5,1966.362702657022,0.0,1831.0,0.0,0.0,79141.0,1,1,2,130.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2570.5567164674976,0.048664380437208665,0.032480720694298755,31656.4,8,4,8,8_1,8_0,8_0_0 +6586,2,37.0,3,0.0,9,112,2,45,47,8.0,0.0,0.0,807.5578590753372,0.0,0.0,62952.42,31,31,1,307,201706586,,,420.0,,2.0,0.0,5.0,2.0,4.0,2.1,3077.433721370043,0.0,600.0,0.0,0.0,56214.0,1,1,2,120.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,807.5578590753372,0.012828066960338256,0.01436577825942536,26768.571428571428,7,4,7,7_1,7_0,7_0_0 +6587,0,46.0,4,0.0,99,111,2,0,21,1.0,0.0,0.0,1144.0403003567276,0.0,0.0,29852.200315994112,0,50,2,3070,201706587,,,450.0,,1.0,0.0,2.0,4.0,5.0,2.2,936.0671620995412,0.0,850.0,0.0,0.0,14841.0,0,1,5,58.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1144.0403003567276,0.0383234833026287,0.07708646993846288,6745.90909090909,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +6588,2,38.0,2,0.0,8,112,4,0,63,3.0,0.0,0.0,0.0,53.079658261296686,0.0,16495.22,0,71,1,3071,201706588,,,,,1.0,0.0,5.0,1.0,2.0,1.3,3158.1234943445347,0.0,0.0,0.0,0.0,18917.0,0,1,3,90.0,7,1.0,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,53.079658261296686,0.003217881195964448,0.002805923680356118,14551.538461538461,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6589,2,82.0,2,0.0,7,112,6,0,75,5.0,1475.4040884991605,0.0,2086.1911359446212,159.23897478389006,0.0,13027.0,0,41,1,3075,201706589,,,350.0,,0.0,1.0,4.0,0.0,1.0,1.0,2903.365650151465,0.0,1550.0,0.0,0.0,20920.0,0,5,1,110.0,9,0.0,1,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3720.834199227672,0.2856247945979636,0.1778601433665235,20920.0,5,3,5,5_1,5_0,5_0_0 +6590,1,54.0,4,89.0,9,112,4,0,46,1.0,0.0,0.0,2018.894647688343,0.0,26.539829130648343,24788.42,0,42,1,3077,201706590,,,300.0,,1.0,1.0,4.0,0.0,1.0,1.0,2237.374850002836,0.0,1500.0,15.0,0.0,10838.0,0,4,2,110.0,8,3.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2045.4344768189912,0.08251572616645157,0.18872803808996044,10838.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +6591,2,55.0,1,0.0,7,112,1,0,45,9.0,0.0,0.0,318.9853543347582,0.0,0.0,44202.16,0,42,2,3079,201706591,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1958.5265486302515,0.0,237.0,0.0,0.0,37254.0,0,1,1,51.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,318.9853543347582,0.0072165105581889705,0.008562445759777694,37254.0,9,5,9,9_0,9_0,9_0_0 +6592,2,44.0,3,0.0,2,111,5,52,62,7.0,0.0,624.566843803548,94.21508355878933,132.69914565324171,0.0,35381.54000000001,50,50,1,308,201706592,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1969.0790394213595,0.0,70.0,0.0,0.0,45215.0,1,1,2,76.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,851.4810730155789,0.02406568716385942,0.018831827336405593,25119.444444444445,7,4,7,7_1,7_3,7_0_1 +6593,1,50.0,4,133.0,5,111,1,0,68,2.0,0.0,0.0,179.00865876169973,0.0,0.0,9305.6,0,50,2,3080,201706593,,,,157.0,1.0,2.0,2.0,0.0,1.0,1.0,3179.7493120200334,0.0,133.0,0.0,0.0,13849.0,0,4,3,73.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,179.00865876169973,0.019236659512734237,0.012925746173853689,13849.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6594,2,68.0,1,0.0,6,112,5,77,75,7.0,1627.703865376493,673.1442649882683,1923.1690147163017,0.0,981.4273518989442,117964.05514037663,42,41,1,3081,201706594,,,361.0,,0.0,1.0,7.0,0.0,2.0,1.5,2331.9548978292414,311.5689137511456,1300.0,372.0,0.0,39177.0,5,5,1,140.0,7,0.0,3,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5205.444496980007,0.044127378384759275,0.13286991084003388,26118.0,7,4,7,7_1,7_0,7_0_0 +6595,2,57.0,2,0.0,1,111,4,46,46,9.0,131.67584875852722,99.93069500856768,955.610133239149,141.54575536345783,0.0,38226.5,43,31,1,3083,201706595,,,302.0,,2.0,2.0,5.0,0.0,2.0,1.5,1431.0231050289551,0.0,710.0,0.0,0.0,56112.0,1,1,1,91.0,8,7.0,3,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1328.7624323697019,0.03476024308711762,0.023680539499032326,37408.0,9,5,9,9_1,9_3,9_1_0 +6596,1,74.0,3,84.0,9,111,2,0,77,2.0,0.0,0.0,377.46415577876223,0.0,703.3963658779962,10596.56,0,71,2,3084,201706596,,,77.0,132.0,0.0,0.0,2.0,0.0,1.0,1.0,2416.1868966886022,678.0,0.0,0.0,0.0,11577.0,0,5,3,39.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1080.8605216567585,0.10200107597718114,0.09336274696871025,11577.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6597,2,35.0,3,0.0,99,221,3,52,55,5.0,0.0,0.0,769.8718256518214,0.0,2017.027013929274,37442.92,20,60,1,3085,201706597,,,341.0,700.0,2.0,0.0,4.0,0.0,2.0,1.5,3068.5613435628757,0.0,572.0,1140.0,0.0,30899.0,4,1,3,113.0,1,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2786.8988395810957,0.07443059567953289,0.09019381985116333,20599.333333333332,5,3,5,5_1,5_1,5_0_0 +6598,2,23.0,4,0.0,99,111,6,0,64,6.0,0.0,0.0,538.3719060502248,0.0,0.0,14274.347849749776,0,50,2,3086,201706598,,,,410.0,1.0,0.0,1.0,0.0,1.0,1.0,2899.087516473907,0.0,400.0,0.0,0.0,22011.0,0,1,3,27.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,538.3719060502248,0.03771604221202037,0.02445922066467788,22011.0,6,3,6,6_0,6_3,6_0_0 +6599,2,76.0,3,0.0,9,111,2,0,77,4.0,0.0,0.0,269.1859530251124,0.0,796.1948739194503,14766.113577977016,0,60,2,3087,201706599,,,,350.0,1.0,2.0,2.0,0.0,2.0,1.5,5850.5512821137745,0.0,200.0,450.0,0.0,25185.0,0,5,3,50.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1065.3808269445626,0.07215038820597516,0.04230219682130485,16790.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +6600,2,50.0,2,0.0,1,111,1,47,37,6.0,0.0,0.0,1049.8252167979383,0.0,265.39829130648343,68090.77672205293,31,20,2,3089,201706600,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2647.3632218431067,0.0,780.0,150.0,0.0,53031.0,1,4,3,65.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1315.2235081044219,0.019315736600761278,0.024801031624982026,35354.0,9,5,9,9_0,9_4,9_1_0 +6601,1,45.0,5,114.0,1,112,5,0,21,1.0,0.0,0.0,1884.3016711757866,0.0,0.0,16741.46,0,50,1,3090,201706601,,,200.0,,1.0,0.0,5.0,2.0,3.0,1.6,911.1168391459014,0.0,1400.0,0.0,0.0,8168.0,0,1,2,116.0,7,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1884.3016711757866,0.11255300739456336,0.23069315269047339,5105.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +6602,2,64.0,2,0.0,1,300,2,56,78,6.0,1903.7472109666587,0.0,1051.171146563064,88.46609710216114,0.0,44859.40000000001,71,50,1,3091,201706602,,,299.0,,1.0,3.0,6.0,0.0,2.0,1.5,2095.659470955518,0.0,781.0,0.0,0.0,32905.0,1,5,1,150.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3043.384454631884,0.06784273651970119,0.09249003053128352,21936.666666666668,6,3,6,6_1,6_0,6_1_0 +6603,2,53.0,1,0.0,1,111,2,0,46,6.0,0.0,0.0,943.4719923522285,0.0,2391.4904555494313,44384.88106736324,0,31,2,3092,201706603,,,,,1.0,0.0,5.0,1.0,2.0,1.5,2096.582079221608,1138.6239372965454,230.0,684.0,0.0,33468.0,0,1,1,112.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,3334.9624479016597,0.07513735235293667,0.09964630237545297,22312.0,6,3,6,6_0,6_3,6_1_0 +6604,2,77.0,3,0.0,99,111,2,0,75,6.0,0.0,0.0,1371.5024306629475,0.0,0.0,17547.08,0,33,2,3095,201706604,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2274.1615141113048,0.0,1019.0,0.0,0.0,22589.0,0,5,1,75.0,6,4.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1371.5024306629475,0.0781612912611641,0.060715500051482914,22589.0,6,3,6,6_0,6_2,6_0_0 +6605,2,89.0,1,0.0,4,111,2,0,78,6.0,4124.785623761094,0.0,546.4474846409781,0.0,0.0,9234.0,0,71,1,3097,201706605,,,144.0,,0.0,4.0,4.0,0.0,1.0,1.0,3295.957748326931,0.0,406.0,0.0,0.0,21930.0,0,5,1,100.0,6,4.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4671.2331084020725,0.5058731977909977,0.21300652569092898,21930.0,6,3,6,6_1,6_2,6_0_1 +6606,2,33.0,1,0.0,2,111,2,42,43,9.0,0.0,0.0,1588.3558059539953,0.0,2959.8670086282054,48680.920000000006,20,33,1,3098,201706606,,,660.0,,2.0,0.0,5.0,1.0,3.0,1.8,2442.7709690255906,2853.0,0.0,0.0,0.0,75554.0,1,1,1,135.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4548.222814582201,0.09342926991893745,0.060198306040477025,41974.444444444445,10,5,10,10_1,10_4,10_0_1 +6607,2,37.0,1,0.0,1,111,2,43,46,9.0,0.0,0.0,771.2177554169469,0.0,2990.1540820530467,88131.8023825915,30,31,1,3099,201706607,,,291.0,,2.0,0.0,5.0,1.0,3.0,1.8,2229.1198929073876,0.0,573.0,1690.0,0.0,64313.0,1,1,2,110.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3761.371837469994,0.042678939222658745,0.05848540477772758,35729.444444444445,9,5,9,9_1,9_2,9_1_0 +6608,2,67.0,1,0.0,6,112,2,75,33,8.0,0.0,0.0,1749.7086946632305,0.0,1946.2541362475451,84516.12,41,60,1,3101,201706608,,,550.0,,1.0,3.0,6.0,0.0,2.0,1.5,1824.7830121506158,0.0,1300.0,1100.0,0.0,45550.0,5,5,1,140.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3695.9628309107757,0.04373086259651739,0.08114078662811802,30366.666666666668,8,4,8,8_1,8_0,8_0_0 +6609,2,60.0,3,0.0,8,112,4,77,77,8.0,0.0,0.0,1345.929765125562,0.0,0.0,27903.26,41,41,1,3103,201706609,,,800.0,,0.0,1.0,4.0,0.0,2.0,1.5,3359.278820021636,0.0,1000.0,0.0,0.0,41871.0,5,5,2,120.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1345.929765125562,0.04823557409154206,0.03214467686765451,27914.0,8,4,8,8_1,8_0,8_0_0 +6610,2,32.0,1,0.0,1,120,2,31,13,7.0,2696.9752155360998,0.0,0.0,0.0,0.0,47407.96,30,30,1,3104,201706610,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2512.918626074742,0.0,0.0,0.0,0.0,50045.0,1,1,1,200.0,0,0.0,4,3,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2696.9752155360998,0.05688865784429661,0.053891002408554295,23830.95238095238,6,3,6,6_1,6_0,6_1_0 +6611,2,54.0,2,0.0,9,300,4,63,33,9.0,0.0,0.0,1615.1157181506744,0.0,0.0,52925.46,50,31,1,3106,201706611,,,250.0,,3.0,2.0,6.0,1.0,3.0,2.0,1774.6253594903737,0.0,1200.0,0.0,0.0,77706.0,1,1,2,165.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.030516800763766144,0.020784955063324253,38853.0,9,5,9,9_1,9_0,9_0_0 +6612,2,74.0,2,0.0,5,300,2,0,,4.0,0.0,0.0,716.0346350467989,0.0,1468.537211895875,18523.219999999998,0,50,1,3107,201706612,,,158.0,,0.0,3.0,4.0,0.0,1.0,1.0,1155.3842018877233,0.0,532.0,830.0,0.0,16440.0,0,8,1,90.0,0,1.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2184.571846942674,0.11793693790510905,0.13288149920575876,16440.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6613,2,61.0,3,0.0,1,300,2,78,56,4.0,0.0,1110.341055650752,1611.0779288552976,0.0,0.0,24710.98,50,60,1,3109,201706613,,,156.0,,1.0,3.0,7.0,0.0,2.0,1.5,2583.385065133448,0.0,1197.0,0.0,0.0,23636.0,5,1,1,90.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2721.4189845060496,0.11012994970276573,0.11513872840184675,15757.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6614,2,68.0,3,0.0,1,112,2,77,75,8.0,1983.0700114236026,0.0,2718.4595291339906,120.31389205893916,1429.029729902917,37233.29295066402,50,31,1,3110,201706614,,,228.0,,0.0,1.0,4.0,0.0,2.0,1.5,1262.9155230275228,1377.4341237387484,1450.0,0.0,0.0,42800.0,5,5,1,240.0,6,0.0,3,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6250.87316251945,0.16788397337840008,0.14604843837662265,28533.333333333332,8,4,8,8_1,8_0,8_1_0 +6615,2,77.0,4,0.0,99,112,6,0,78,5.0,0.0,0.0,1413.22625338184,0.0,0.0,16197.6,0,71,1,3111,201706615,,,,,0.0,8.0,5.0,1.0,2.0,1.5,2632.2429491280013,0.0,1050.0,0.0,0.0,29650.0,0,5,3,90.0,9,1.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1413.22625338184,0.08724911427506792,0.047663617314733224,19766.666666666668,5,3,5,5_1,5_1,5_0_0 +6616,2,35.0,2,0.0,6,112,2,42,38,8.0,0.0,0.0,2691.859530251124,0.0,0.0,41896.79516962885,31,60,1,3114,201706616,,,500.0,,2.0,0.0,6.0,2.0,4.0,2.3,2110.6221953925724,0.0,2000.0,0.0,0.0,64312.0,1,1,2,120.0,10,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2691.859530251124,0.06424977183463577,0.041856255912599886,27961.739130434784,8,4,8,8_1,8_1,8_0_0 +6617,2,38.0,5,0.0,3,111,2,0,43,3.0,0.0,138.792631956344,974.2806380720266,0.0,1815.5510918679845,19208.879999999997,0,42,1,3115,201706617,,,,,1.0,0.0,4.0,1.0,2.0,1.5,1250.3993111531072,1750.0,0.0,0.0,0.0,21233.0,0,1,2,67.0,6,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2928.6243618963554,0.15246200517137676,0.13792795939793506,14155.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +6618,2,56.0,3,0.0,2,400,2,0,68,5.0,2062.392811880547,0.0,403.7789295376686,291.9381204371318,0.0,18525.86,0,71,1,3116,201706618,,,180.0,,1.0,1.0,3.0,1.0,2.0,1.5,2943.6828897949686,0.0,300.0,0.0,0.0,27953.0,0,1,1,80.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2758.1098618553474,0.14887891098471798,0.09866954752102985,18635.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +6619,2,63.0,1,0.0,1,111,2,74,31,10.0,0.0,0.0,0.0,0.0,0.0,44778.78,20,10,1,3117,201706619,,,,,1.0,3.0,4.0,0.0,2.0,1.5,592.0858075672287,0.0,0.0,0.0,0.0,77577.0,6,1,3,116.0,8,7.0,3,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0.0,0.0,0.0,51718.0,10,5,10,10_1,10_3,10_1_0 +6620,2,55.0,2,0.0,4,112,4,42,38,10.0,237.96840137083234,0.0,2691.859530251124,0.0,0.0,58201.600000000006,31,31,1,3119,201706620,,,250.0,,2.0,2.0,7.0,0.0,2.0,1.5,1873.0939992910244,0.0,2000.0,0.0,0.0,105433.0,1,1,1,140.0,10,2.0,3,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2929.8279316219564,0.05033930221200029,0.027788528559577707,70288.66666666667,10,5,10,10_1,10_1,10_0_1 +6621,2,41.0,2,0.0,1,112,2,64,56,2.0,0.0,0.0,947.5345546483957,0.0,1787.0151614636552,30004.68,50,50,1,312,201706621,,,740.0,,2.0,1.0,6.0,1.0,3.0,2.0,1963.550794260713,0.0,704.0,1010.0,0.0,24346.0,1,1,2,90.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2734.549716112051,0.09113743976313199,0.11232028736186853,12173.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6622,1,41.0,2,280.0,9,111,2,0,47,6.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,53781.986172818404,0,50,2,3120,201706622,,,840.0,273.0,2.0,0.0,5.0,3.0,4.0,2.3,1122.0759661415304,960.0,0.0,0.0,0.0,47246.0,0,1,3,93.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1530.4219775670917,0.028456033078610474,0.03239262535594742,20541.739130434784,5,3,5,5_0,5_4,5_0_0 +6623,2,72.0,3,0.0,4,111,2,0,52,7.0,0.0,0.0,551.8312037014804,0.0,1733.9355032023584,18144.236974448148,0,50,1,3121,201706623,,,425.0,,1.0,3.0,4.0,0.0,1.0,1.0,1175.5257875391844,0.0,410.0,980.0,0.0,28150.0,0,5,1,96.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2285.766706903839,0.12597756026460627,0.08119952777633531,28150.0,8,4,8,8_1,8_2,8_0_1 +6624,2,34.0,2,0.0,4,111,1,64,62,6.0,0.0,0.0,888.3136449828709,233.5504963497054,0.0,19846.600315994114,71,50,8,3122,201706624,,,400.0,380.0,2.0,0.0,3.0,2.0,4.0,2.1,3122.942053524273,0.0,660.0,0.0,0.0,47647.0,1,1,3,86.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1121.8641413325763,0.05652676647236558,0.023545325861703284,22689.04761904762,6,3,6,6_0,6_2,6_0_1 +6625,2,36.0,3,0.0,4,111,2,56,63,7.0,2379.684013708323,0.0,134.5929765125562,88.46609710216114,0.0,39354.468161188146,44,50,1,3124,201706625,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,2378.8778415301526,0.0,100.0,0.0,0.0,49151.0,1,1,2,110.0,7,5.0,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2602.7430873230405,0.06613589787728087,0.0529540210234388,23405.238095238095,6,3,6,6_1,6_2,6_0_1 +6626,2,73.0,2,0.0,1,111,2,78,75,8.0,0.0,0.0,819.6712269614673,0.0,2259.424119989196,45056.439999999995,70,41,1,3126,201706626,,,480.0,,0.0,2.0,5.0,0.0,2.0,1.5,2201.336704223099,0.0,609.0,1277.0,0.0,41245.0,5,5,1,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3079.095346950663,0.06833862921594923,0.07465378462724362,27496.666666666668,8,4,8,8_1,8_2,8_1_0 +6627,2,65.0,2,0.0,4,111,1,77,77,7.0,0.0,0.0,639.316638434642,0.0,194.62541362475451,32520.440000000002,41,41,2,3127,201706627,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2132.0247380110777,0.0,475.0,110.0,0.0,36068.0,5,5,1,65.0,8,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,833.9420520593965,0.025643627578821087,0.02312138327768095,24045.333333333332,7,4,7,7_0,7_3,7_0_1 +6628,1,37.0,2,139.0,99,112,2,54,68,4.0,0.0,0.0,1407.5142135485237,0.0,215.08575103897007,57988.920598426324,20,12,1,3128,201706628,,,720.0,,2.0,0.0,4.0,2.0,4.0,2.1,873.751850409526,207.32000658319512,960.0,0.0,0.0,36208.0,1,1,3,74.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1622.5999645874938,0.027981206545022792,0.04481329994994183,17241.90476190476,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +6629,2,41.0,1,0.0,6,112,4,45,45,9.0,0.0,0.0,672.964882562781,0.0,0.0,77432.38,30,41,1,313,201706629,,,,,2.0,0.0,4.0,1.0,3.0,1.8,7276.02660165695,0.0,500.0,0.0,0.0,59208.0,1,1,1,145.0,7,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,672.964882562781,0.00869100087796321,0.011366114081927796,32893.333333333336,9,5,9,9_1,9_1,9_0_0 +6630,1,49.0,4,314.0,2,111,1,0,43,7.0,0.0,0.0,666.2352337371532,0.0,159.23897478389006,13141.848161188147,0,41,2,3130,201706630,,,360.0,,1.0,0.0,3.0,1.0,2.0,1.5,2903.5236193354126,0.0,495.0,90.0,0.0,38664.0,0,1,3,54.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,825.4742085210432,0.06281264236174318,0.02134994331991111,25776.0,7,4,7,7_0,7_2,7_0_1 +6631,2,34.0,2,0.0,4,111,2,0,47,4.0,0.0,0.0,1130.581002705472,0.0,1397.7643342141462,13933.880315994116,0,31,2,3132,201706631,,,,449.0,1.0,0.0,2.0,0.0,1.0,1.0,2860.6516240747774,0.0,840.0,790.0,0.0,18411.0,0,1,3,47.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2528.345336919618,0.18145306831848101,0.13732797441310185,18411.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +6632,2,72.0,3,0.0,9,120,3,0,72,5.0,0.0,0.0,57.87497990039916,81.38880933398825,0.0,48951.16000000001,0,71,1,3133,201706632,,,100.0,,0.0,2.0,4.0,0.0,1.0,1.0,1640.1139245468128,0.0,43.0,0.0,0.0,21620.0,0,5,1,100.0,0,3.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,139.26378923438742,0.0028449538118072663,0.006441433359592388,21620.0,6,3,6,6_1,6_1,6_0_0 +6633,2,67.0,4,0.0,7,111,2,0,77,5.0,0.0,0.0,524.9126083989692,0.0,707.7287768172891,21596.211191295748,0,50,2,3134,201706633,,,,372.0,0.0,1.0,2.0,0.0,1.0,1.0,2210.0070758581237,0.0,390.0,400.0,0.0,20292.0,0,5,3,55.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1232.6413852162582,0.05707674250347526,0.060745189494197625,20292.0,5,3,5,5_0,5_3,5_0_0 +6634,2,48.0,3,0.0,3,111,2,0,52,10.0,0.0,0.0,80.75578590753372,0.0,35.38643884086446,33829.5504052463,0,44,2,3138,201706634,,,,,1.0,0.0,4.0,1.0,2.0,1.3,917.7502986201672,0.0,60.0,20.0,0.0,52091.0,0,1,1,75.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,116.14222474839818,0.0034331589795644104,0.002229602517678643,40070.0,9,5,9,9_0,9_4,9_0_1 +6635,2,66.0,1,0.0,6,112,4,0,74,10.0,0.0,0.0,1406.4966045562123,113.23660429076627,0.0,26887.02,0,44,1,3139,201706635,,,157.0,,0.0,2.0,5.0,0.0,1.0,1.0,1961.422973094138,0.0,1045.0,0.0,0.0,48046.0,0,5,1,100.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1519.7332088469786,0.05652293221215957,0.031630795671793256,48046.0,10,5,10,10_1,10_1,10_0_0 +6636,1,59.0,3,215.0,2,111,2,0,21,2.0,0.0,0.0,601.8270684319203,0.0,1121.4918458910236,28237.199999999997,0,30,1,314,201706636,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2750.0486124105837,1081.0,0.0,0.0,0.0,11986.0,0,1,3,74.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1723.3189143229438,0.061030092017726405,0.14377765011871715,11986.0,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +6637,2,61.0,2,0.0,1,400,4,0,75,7.0,0.0,0.0,1348.621624655813,159.23897478389006,0.0,36456.32,0,50,1,3141,201706637,,,210.0,,0.0,2.0,4.0,0.0,1.0,1.0,2005.8377634668198,0.0,1002.0,0.0,0.0,30334.0,0,5,1,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1507.860599439703,0.04136074621463996,0.049708597594768346,30334.0,8,4,8,8_1,8_0,8_1_0 +6638,2,63.0,1,0.0,6,300,4,52,77,9.0,0.0,416.377895869032,2270.583513766823,38.925082724950904,0.0,75699.04000000001,71,50,1,3142,201706638,,,378.0,,1.0,1.0,5.0,0.0,2.0,1.5,2899.611641780053,0.0,1687.0,0.0,0.0,51544.0,1,5,1,110.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2725.8864923608057,0.03600952525105742,0.052884651799643134,34362.666666666664,9,5,9,9_1,9_0,9_0_0 +6639,1,55.0,3,107.0,2,211,4,0,56,4.0,0.0,0.0,1402.4588152608355,0.0,290.16879849508854,12346.050875301627,0,50,2,3143,201706639,,,360.0,253.0,1.0,0.0,2.0,0.0,1.0,1.0,1584.1164076500938,0.0,1042.0,164.0,0.0,17030.0,0,1,3,32.0,3,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1692.6276137559241,0.13709870717785871,0.09939093445425273,17030.0,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +6640,1,44.0,2,212.0,6,111,1,85,67,3.0,0.0,0.0,672.964882562781,212.31863304518674,0.0,25894.459041045524,71,60,2,3146,201706640,,,,148.0,1.0,0.0,4.0,2.0,4.0,2.1,3456.7282356382884,0.0,500.0,0.0,0.0,29104.0,6,1,3,84.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,885.2835156079677,0.03418814481525555,0.030417932779273217,13859.047619047618,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6641,1,38.0,3,280.0,7,112,2,56,62,2.0,0.0,0.0,1991.9760523858317,0.0,0.0,32332.596974448144,50,50,1,3147,201706641,,,,70.0,2.0,0.0,5.0,5.0,7.0,3.4,1808.2139839282438,0.0,1480.0,0.0,0.0,40902.0,1,1,3,100.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1991.9760523858317,0.06160890985527868,0.04870118948672025,12030.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +6642,2,68.0,2,0.0,7,111,4,77,74,8.0,0.0,0.0,1588.1971228481632,0.0,0.0,21374.92,50,44,1,3148,201706642,,,315.0,,0.0,3.0,4.0,0.0,2.0,1.5,4095.2133300971113,0.0,1180.0,0.0,0.0,46402.0,5,5,1,100.0,6,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1588.1971228481632,0.0743018978713447,0.034226910970392724,30934.666666666668,8,4,8,8_1,8_2,8_0_0 +6643,2,75.0,3,0.0,6,112,5,0,74,9.0,0.0,832.755791738064,1554.548878720024,88.46609710216114,0.0,38024.380000000005,0,30,1,3149,201706643,,,120.0,,0.0,3.0,4.0,0.0,1.0,1.0,1870.1405115848675,0.0,1155.0,0.0,0.0,41116.0,0,5,1,100.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2475.770767560249,0.06511008904182655,0.06021429048448899,41116.0,10,5,10,10_1,10_0,10_0_0 +6644,2,48.0,2,0.0,9,221,2,33,37,8.0,0.0,0.0,2835.123630908211,0.0,2150.9491197672764,69913.64087398065,31,30,1,315,201706644,,,664.0,,2.0,1.0,8.0,2.0,4.0,2.5,1576.6505095230045,175.13368166956946,2034.0,1113.0,0.0,76161.0,1,1,1,120.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4986.072750675487,0.07131759536973456,0.06546753260429206,30464.4,8,4,8,8_1,8_1,8_0_0 +6645,1,26.0,3,252.0,99,400,1,0,67,6.0,0.0,0.0,1870.842373524531,56.61830214538313,0.0,10503.390875301626,0,70,2,3150,201706645,999999.0,730.0,,85.0,1.0,1.0,3.0,0.0,1.0,1.0,2497.367860246356,0.0,1390.0,0.0,0.0,20508.0,0,1,3,57.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1927.460675669914,0.1835084210949698,0.09398579460063947,20508.0,5,3,5,5_0,5_1,5_0_0 +6646,2,70.0,1,0.0,5,211,6,72,72,10.0,0.0,0.0,6052.350479670706,0.0,1075.4287551948503,55981.992178404595,12,30,1,3151,201706646,,,167.0,,0.0,2.0,6.0,0.0,2.0,1.5,3424.6965759085006,1036.6000329159756,4068.0,0.0,0.0,97271.0,5,5,1,200.0,1,3.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,7127.779234865556,0.12732271499289627,0.07327753631468327,64847.333333333336,10,5,10,10_1,10_1,10_0_0 +6647,2,46.0,3,0.0,99,111,2,0,37,4.0,0.0,0.0,478.789342138253,0.0,892.2136794322666,33247.68031599412,0,20,1,3152,201706647,,,,588.0,1.0,0.0,4.0,1.0,2.0,1.5,634.5539013416541,860.0,0.0,0.0,0.0,25655.0,0,1,3,60.0,6,4.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1371.0030215705196,0.04123605041134209,0.05343999304504072,17103.333333333332,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +6648,2,61.0,3,0.0,5,111,1,56,52,4.0,0.0,0.0,959.6479225345257,0.0,164.54694061001973,15849.819310637526,50,33,2,3155,201706648,,,,302.0,2.0,0.0,4.0,2.0,4.0,2.5,1792.007996492474,0.0,713.0,93.0,0.0,48520.0,1,1,3,82.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1124.1948631445455,0.07092792927866678,0.023169721004627896,19408.0,5,3,5,5_0,5_3,5_0_0 +6649,2,93.0,3,0.0,3,111,2,0,74,8.0,0.0,0.0,497.99401309645793,0.0,5484.898020333991,21747.920315994113,0,30,2,3156,201706649,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2193.668710418072,0.0,370.0,3100.0,0.0,27970.0,0,5,5,90.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,5982.8920334304485,0.27510180037906606,0.21390389822776004,27970.0,8,4,8,8_0,8_3,8_0_1 +6650,2,67.0,2,0.0,4,111,1,0,75,6.0,0.0,0.0,473.76727732419783,0.0,1825.9402441886061,39398.24,0,30,2,3157,201706650,,,,525.0,0.0,1.0,4.0,0.0,2.0,1.5,3498.4593768498644,0.0,352.0,1032.0,0.0,33325.0,0,5,3,70.0,8,6.0,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2299.707521512804,0.058370818633340066,0.06900847776482533,22216.666666666668,6,3,6,6_0,6_2,6_0_1 +6651,1,19.0,3,132.0,4,111,2,0,84,1.0,0.0,0.0,361.8756655696098,0.0,674.3475484081084,10177.64,0,41,2,3159,201706651,,,118.0,,0.0,0.0,1.0,0.0,1.0,1.0,2900.8340889201454,650.0,0.0,0.0,0.0,5430.0,0,3,3,32.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1036.2232139777182,0.10181370278156018,0.19083300441578605,5430.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6652,2,40.0,3,0.0,4,111,2,62,52,1.0,0.0,0.0,0.0,0.0,0.0,29301.15972680281,31,43,1,316,201706652,,,,,2.0,0.0,8.0,2.0,4.0,2.5,883.5021969265738,0.0,0.0,0.0,0.0,11609.0,4,4,5,140.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0.0,0.0,0.0,4643.6,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +6653,2,45.0,4,0.0,1,222,2,52,52,2.0,2665.2460953533223,0.0,538.3719060502248,84.9274532180747,0.0,70082.81999999999,50,50,1,3161,201706653,,,,,2.0,0.0,6.0,3.0,5.0,3.0,2015.4896972565446,0.0,400.0,0.0,0.0,32576.0,1,1,1,200.0,1,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3288.545454621622,0.04692370333587636,0.10094994642134154,10858.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6654,2,47.0,2,0.0,9,111,6,52,63,9.0,0.0,0.0,2018.894647688343,0.0,0.0,71545.7,50,50,1,3163,201706654,,,1020.0,,3.0,0.0,5.0,2.0,4.0,2.5,2456.0688146980156,0.0,1500.0,0.0,0.0,83808.0,1,1,2,140.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2018.894647688343,0.028218252776733514,0.024089521855769652,33523.2,9,5,9,9_1,9_3,9_0_0 +6655,2,66.0,3,0.0,2,400,4,0,74,8.0,0.0,0.0,2912.592011731716,56.61830214538313,0.0,20593.836658454027,0,20,1,3164,201706655,,,,,0.0,0.0,5.0,0.0,1.0,1.0,3375.5859952203373,0.0,2164.0,0.0,0.0,28183.0,0,5,1,92.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2969.210313877099,0.14417956027917708,0.10535465755516088,28183.0,8,4,8,8_1,8_0,8_0_1 +6656,0,39.0,1,0.0,99,111,2,21,54,1.0,0.0,0.0,0.0,212.31863304518674,0.0,42572.77999999999,43,60,1,3165,201706656,,,,,2.0,0.0,5.0,4.0,6.0,3.1,947.2214531670112,0.0,0.0,0.0,0.0,14904.0,1,1,5,100.0,9,7.0,4,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,212.31863304518674,0.00498719212241218,0.014245748325629814,4807.741935483871,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +6657,2,58.0,1,0.0,6,211,5,54,68,8.0,0.0,0.0,1633.9587348624323,99.08202875442048,0.0,27705.27999999999,31,50,1,3166,201706657,,,389.0,,3.0,1.0,4.0,1.0,3.0,2.0,1289.2855137438678,0.0,1214.0,0.0,0.0,54845.0,1,1,1,120.0,3,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1733.0407636168527,0.06255272509849578,0.031598883464615785,27422.5,8,4,8,8_1,8_1,8_0_0 +6658,2,63.0,4,0.0,5,112,2,52,75,6.0,0.0,768.9111810381457,2252.95055702293,106.15931652259337,644.3314075591999,35655.96553910215,50,70,1,3167,201706658,,,347.0,,1.0,3.0,4.0,0.0,2.0,1.5,2331.6706993420175,621.067602161752,1417.0,0.0,0.0,30620.0,1,5,1,96.0,6,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3772.3524621428687,0.10579863439698231,0.1231989700242609,20413.333333333332,5,3,5,5_1,5_0,5_0_0 +6659,2,55.0,3,0.0,9,112,2,77,52,2.0,79.32280045694411,0.0,2018.894647688343,0.0,0.0,34691.56175060326,50,50,1,3168,201706659,,,660.0,,1.0,2.0,3.0,0.0,2.0,1.5,1548.3402646925854,0.0,1500.0,0.0,0.0,18700.0,7,1,2,90.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2098.217448145287,0.06048206947929639,0.11220414161204743,12466.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6660,2,71.0,2,0.0,1,111,4,74,74,9.0,0.0,0.0,2122.4509182039856,0.0,1096.8123093480283,38315.48964065611,31,60,2,3169,201706660,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3003.4447870875747,879.8457697291487,1213.0,104.0,0.0,51630.0,5,5,1,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3219.2632275520136,0.08401989006910907,0.06235257074476106,34420.0,9,5,9,9_0,9_4,9_1_0 +6661,2,49.0,3,0.0,1,111,2,0,43,8.0,0.0,0.0,417.2382271889242,0.0,1415.4575536345783,35206.82,0,33,2,317,201706661,,,200.0,,1.0,0.0,4.0,0.0,1.0,1.0,2284.744277072438,0.0,310.0,800.0,0.0,31112.0,0,1,1,113.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1832.6957808235024,0.052055135363645526,0.058906395629451734,31112.0,8,4,8,8_0,8_2,8_1_0 +6662,2,56.0,1,0.0,7,111,2,33,33,10.0,0.0,41.637789586903196,1822.303695926559,0.0,1998.6393064540812,63052.46943954221,31,41,1,3170,201706662,,,367.0,,2.0,2.0,8.0,0.0,2.0,1.5,1933.093456715553,536.544177037309,1132.0,815.0,0.0,97788.0,1,1,1,200.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3862.5807919675435,0.0612597861162468,0.03949953769345465,65192.0,10,5,10,10_1,10_3,10_0_0 +6663,2,38.0,4,0.0,1,112,5,47,68,1.0,0.0,69.396315978172,922.9794981033211,159.23897478389006,215.08575103897007,17704.70125233835,20,30,1,3171,201706663,,,110.0,,2.0,0.0,3.0,4.0,6.0,2.7,1941.8643191332974,207.32000658319512,600.0,0.0,0.0,23432.0,1,1,1,32.0,8,0.0,4,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1366.7005399043533,0.07719421640756836,0.0583262435944159,8678.518518518518,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6664,2,74.0,1,0.0,9,111,1,74,74,10.0,0.0,0.0,1563.0368665872768,0.0,655.3855589697534,95270.83443568091,10,10,2,3172,201706664,,,,,0.0,2.0,5.0,0.0,2.0,1.5,3351.228954802965,631.7226396625504,900.0,0.0,0.0,142398.0,5,5,1,207.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2218.4224255570302,0.023285430831979623,0.015579027974810252,94932.0,10,5,10,10_0,10_4,10_0_0 +6665,2,29.0,2,0.0,7,111,2,43,63,8.0,0.0,0.0,807.5578590753372,0.0,0.0,26682.64,43,43,2,3173,201706665,,,,,2.0,0.0,1.0,0.0,2.0,1.5,6647.082925151154,0.0,600.0,0.0,0.0,44050.0,1,1,2,30.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.030265290806132272,0.01833275503008711,29366.666666666668,8,4,8,8_0,8_4,8_0_0 +6666,2,42.0,4,0.0,8,111,2,85,53,1.0,0.0,0.0,484.5347154452023,0.0,0.0,24332.44,60,60,2,3174,201706666,,,,470.0,1.0,1.0,1.0,1.0,3.0,1.8,4986.711160042483,0.0,360.0,0.0,0.0,17390.0,6,1,3,28.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,484.5347154452023,0.019913116623125438,0.027862835850787943,9661.111111111111,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +6667,2,50.0,3,0.0,9,112,4,54,34,5.0,0.0,0.0,2153.487624200899,212.31863304518674,0.0,39114.17232549083,50,20,1,3175,201706667,,,670.0,,2.0,0.0,4.0,2.0,4.0,2.5,1906.3391905548222,0.0,1600.0,0.0,0.0,52277.0,1,1,2,95.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2365.806257246086,0.060484630418838815,0.04525520319157729,20910.8,5,3,5,5_1,5_0,5_0_0 +6668,1,44.0,4,4437.0,9,111,2,0,63,1.0,0.0,0.0,551.8312037014804,0.0,0.0,18576.02,0,71,2,3176,201706668,,,,49.0,1.0,0.0,3.0,2.0,3.0,1.8,1517.0442308845209,0.0,410.0,0.0,0.0,17530.0,0,4,3,72.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,551.8312037014804,0.029706643495295566,0.03147924721628525,9738.888888888889,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +6669,1,29.0,3,353.0,9,300,5,63,55,8.0,0.0,0.0,603.095051584142,127.39117982711205,70.44796926892533,52798.72,50,50,1,3179,201706669,,,536.0,,2.0,0.0,5.0,1.0,3.0,1.8,1210.271054964374,67.90442129269684,420.0,0.0,0.0,47536.0,1,1,3,90.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,800.9342006801794,0.015169576093514756,0.016849002875298287,26408.888888888887,7,4,7,7_1,7_0,7_0_0 +6670,2,50.0,3,0.0,6,111,1,62,62,8.0,0.0,0.0,672.964882562781,0.0,0.0,29212.8,71,50,2,318,201706670,,,,,2.0,2.0,4.0,0.0,2.0,1.5,3895.299723279331,0.0,500.0,0.0,0.0,42220.0,1,1,3,97.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,672.964882562781,0.023036644298484944,0.015939480875480364,28146.666666666668,8,4,8,8_0,8_3,8_0_0 +6671,2,32.0,3,0.0,9,111,2,34,38,9.0,0.0,0.0,874.8543473316153,0.0,1592.3897478389006,48804.62,10,20,1,3180,201706671,,,300.0,,2.0,0.0,5.0,1.0,3.0,1.8,1777.606738108625,0.0,650.0,900.0,0.0,63736.0,1,1,2,140.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2467.2440951705157,0.050553494631666335,0.03871036926023779,35408.88888888889,9,5,9,9_1,9_3,9_0_0 +6672,2,40.0,2,0.0,1,111,1,52,47,6.0,0.0,0.0,742.9532303493102,0.0,0.0,54749.36,71,71,2,3181,201706672,,,,543.0,2.0,0.0,3.0,2.0,4.0,2.1,2458.082133122977,0.0,552.0,0.0,0.0,45679.0,1,1,3,84.0,4,4.0,4,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,742.9532303493102,0.013570080642939207,0.01626465619539198,21751.90476190476,6,3,6,6_0,6_2,6_1_0 +6673,2,64.0,2,0.0,5,120,4,75,74,9.0,0.0,0.0,2846.6414532405634,102.62067263850693,0.0,33332.88,60,60,1,3182,201706673,,,168.0,,0.0,1.0,3.0,0.0,2.0,1.5,1778.211708500583,0.0,2115.0,0.0,0.0,48031.0,5,5,1,80.0,0,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2949.2621258790705,0.08847906709168457,0.061403304654891015,32020.666666666668,9,5,9,9_1,9_1,9_0_0 +6674,2,63.0,3,0.0,99,111,1,0,75,7.0,0.0,0.0,22.269271727360607,0.0,41.498310671268214,31634.11338050696,0,31,2,3183,201706674,,,,,0.0,1.0,2.0,0.0,1.0,1.0,9714.558274188035,40.0,0.0,0.0,0.0,26765.0,0,5,1,55.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,63.76758239862882,0.0020157853527174433,0.002382498875345743,26765.0,7,4,7,7_0,7_2,7_0_0 +6675,2,67.0,3,0.0,5,112,2,0,77,7.0,1399.254200060494,277.585263912688,655.4677956161487,0.0,0.0,20250.330875301628,0,50,1,3184,201706675,,,323.0,,0.0,3.0,7.0,0.0,1.0,1.0,2486.8692623705197,0.0,487.0,0.0,0.0,21813.0,0,5,5,180.0,9,0.0,1,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2332.3072595893304,0.11517378525572318,0.10692281023194107,21813.0,6,3,6,6_1,6_0,6_0_0 +6676,2,65.0,2,0.0,6,112,2,75,22,10.0,0.0,166.55115834761278,1087.511250221454,0.0,1802.939058942044,60115.10000000001,50,50,1,3185,201706676,,,736.0,,1.0,2.0,6.0,0.0,2.0,1.5,1643.7856682589256,0.0,808.0,1019.0,0.0,86647.0,5,5,1,135.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3057.0014675111106,0.050852472465505505,0.03528109995165569,57764.666666666664,10,5,10,10_1,10_0,10_0_0 +6677,2,69.0,2,0.0,5,300,2,78,78,7.0,0.0,0.0,672.964882562781,0.0,2653.9829130648345,21694.24,70,70,1,3187,201706677,,,350.0,,1.0,4.0,5.0,1.0,3.0,2.0,2482.5669520333204,0.0,500.0,1500.0,0.0,48193.0,5,5,1,106.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3326.9477956276155,0.15335627316871275,0.06903383884853849,24096.5,7,4,7,7_1,7_0,7_0_0 +6678,1,78.0,3,27.0,99,112,1,0,86,3.0,0.0,0.0,242.26735772260116,0.0,424.6372660903735,10571.420000000002,0,71,2,3188,201706678,240.0,240.0,,222.0,0.0,1.0,2.0,0.0,1.0,1.0,4336.20367096837,0.0,180.0,240.0,0.0,13493.0,0,5,3,32.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,666.9046238129747,0.06308562367335463,0.04942597078581299,13493.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +6679,2,64.0,3,0.0,6,120,2,78,78,6.0,0.0,0.0,807.5578590753372,0.0,2300.11852465619,19868.06,71,70,1,319,201706679,,,360.0,,0.0,4.0,5.0,0.0,2.0,1.5,1574.371440082579,0.0,600.0,1300.0,0.0,32024.0,5,5,1,95.0,0,1.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3107.676383731527,0.15641569351670606,0.0970421054125508,21349.333333333332,6,3,6,6_1,6_1,6_0_0 +6680,2,60.0,5,0.0,6,112,6,22,52,3.0,2062.392811880547,0.0,3768.6033423515732,109.69796040667983,0.0,35986.11665845403,50,71,1,3194,201706680,,,540.0,,2.0,3.0,4.0,0.0,2.0,1.5,5119.023091105785,0.0,2800.0,0.0,0.0,23303.0,1,1,1,150.0,7,0.0,3,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5940.6941146388,0.16508294493185285,0.25493258870698193,15535.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6681,2,84.0,3,0.0,2,112,2,78,78,3.0,2776.298015993044,0.0,613.7439728972563,0.0,0.0,19238.27800298474,50,50,1,3196,201706681,,,420.0,,0.0,3.0,5.0,0.0,2.0,1.5,2961.096325352915,0.0,456.0,0.0,0.0,21489.0,5,5,1,90.0,9,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3390.0419888903,0.17621337982351376,0.15775708450324818,14326.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +6682,1,40.0,3,367.0,5,111,2,85,68,2.0,0.0,0.0,808.37456370319,0.0,1506.3886773670363,34970.87864433685,43,71,1,3198,201706682,,,303.0,,1.0,0.0,5.0,5.0,7.0,3.2,1472.2212567683061,1452.0,0.0,0.0,0.0,35798.0,6,1,3,80.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2314.7632410702263,0.06619116621609611,0.06466180348260311,11186.875,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +6683,2,56.0,3,0.0,1,111,2,46,37,9.0,0.0,0.0,72.68020731678034,0.0,185.7788039145384,57692.12000000001,20,41,2,3199,201706683,,,,,2.0,0.0,1.0,0.0,2.0,1.5,1672.6179993521687,0.0,54.0,105.0,0.0,56705.0,1,4,2,180.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,258.45901123131875,0.004479970769514428,0.0045579580501070235,37803.333333333336,9,5,9,9_0,9_2,9_1_0 +6684,2,33.0,2,0.0,4,112,1,43,47,6.0,0.0,0.0,795.4444911892072,0.0,0.0,46665.00000000001,33,30,2,32,201706684,,,,,2.0,0.0,3.0,2.0,4.0,2.1,1829.2131170365235,0.0,591.0,0.0,0.0,45207.0,1,1,2,82.0,10,5.0,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,795.4444911892072,0.017045847877192908,0.017595604468095806,21527.142857142855,6,3,6,6_0,6_2,6_0_1 +6685,1,49.0,3,145.0,99,111,1,0,68,5.0,0.0,0.0,646.0462872602698,0.0,1210.2162083575645,16576.01672205293,0,70,2,320,201706685,480.0,480.0,,,3.0,0.0,4.0,3.0,4.0,2.5,3705.6649737494026,0.0,480.0,684.0,0.0,47660.0,0,1,3,75.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1856.2624956178342,0.11198483488184713,0.03894801711325712,19064.0,5,3,5,5_0,5_3,5_0_0 +6686,2,80.0,4,0.0,9,120,2,72,72,3.0,0.0,0.0,452.2324010821888,0.0,1316.3755248801579,23040.600000000002,70,50,2,3200,201706686,,,,,0.0,1.0,3.0,0.0,2.0,1.5,2256.8988469128267,0.0,336.0,744.0,0.0,21030.0,5,5,1,80.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1768.6079259623466,0.0767604978152629,0.08409928321266508,14020.0,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +6687,2,61.0,1,0.0,6,300,2,78,43,10.0,0.0,48.5774211847204,1071.3600930399473,99.08202875442048,0.0,44816.39087530163,44,33,1,3201,201706687,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2040.5215315838848,0.0,796.0,0.0,0.0,93661.0,5,1,1,110.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1219.019542979088,0.02720030594098757,0.013015230917661439,62440.666666666664,10,5,10,10_1,10_0,10_0_0 +6688,2,59.0,3,0.0,4,111,2,0,63,4.0,0.0,0.0,243.61328748772672,0.0,628.1092894253442,12349.820000000002,0,71,2,3204,201706688,,,,294.0,1.0,0.0,2.0,0.0,1.0,1.0,3272.714343617725,0.0,181.0,355.0,0.0,19134.0,0,1,3,60.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,871.722576913071,0.07058585282320477,0.045558826011971934,19134.0,5,3,5,5_0,5_3,5_0_1 +6689,2,37.0,2,0.0,99,111,2,43,38,9.0,0.0,346.98157989085996,1046.6557711859484,0.0,1950.420601549606,73009.15999999999,33,12,1,3205,201706689,,,720.0,,2.0,0.0,7.0,3.0,5.0,2.4,2312.682278870527,1880.0,0.0,0.0,0.0,81257.0,1,1,1,120.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3344.0579526264146,0.04580326568099695,0.04115409075681375,33857.083333333336,9,5,9,9_1,9_3,9_0_0 +6690,1,62.0,3,65.0,7,300,4,67,21,4.0,0.0,0.0,2288.080600713455,123.8525359430256,0.0,41891.64,50,50,1,3209,201706690,,,520.0,338.0,2.0,3.0,3.0,1.0,3.0,1.8,2975.316726056538,0.0,1700.0,0.0,0.0,30813.0,4,1,3,65.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2411.9331366564807,0.05757552429688789,0.07827647865045535,17118.333333333332,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +6691,2,55.0,2,0.0,6,111,2,52,47,9.0,0.0,0.0,955.610133239149,0.0,734.2686059479375,34081.81010576515,60,50,1,3210,201706691,,,237.0,,2.0,2.0,6.0,0.0,2.0,1.5,1252.3186581357127,0.0,710.0,415.0,0.0,49135.0,1,1,2,80.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1689.8787391870865,0.04958301023164356,0.03439256617863207,32756.666666666668,9,5,9,9_1,9_2,9_0_0 +6692,2,40.0,1,0.0,9,300,2,53,43,9.0,0.0,0.0,2901.8245736107115,0.0,0.0,98125.38,41,30,1,3212,201706692,,,589.0,,2.0,0.0,5.0,2.0,4.0,2.3,2509.298280708664,0.0,2156.0,0.0,0.0,80633.0,1,1,2,150.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2901.8245736107115,0.029572619984867436,0.03598805171097084,35057.82608695653,9,5,9,9_1,9_0,9_0_0 +6693,1,61.0,2,53.0,4,111,1,56,78,2.0,0.0,0.0,457.61612014269105,0.0,247.7050718860512,13303.71087530163,71,44,2,3214,201706693,,,160.0,222.0,1.0,2.0,3.0,1.0,3.0,1.8,2594.287498970431,0.0,340.0,140.0,0.0,22281.0,1,5,3,68.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,705.3211920287422,0.053016876166346386,0.03165572425065043,12378.333333333332,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6694,1,38.0,5,300.0,9,112,4,0,56,1.0,0.0,0.0,2422.6735772260117,0.0,0.0,24844.32063198823,0,60,1,3215,201706694,,,200.0,,1.0,0.0,4.0,3.0,4.0,2.1,1877.0838554640688,0.0,1800.0,0.0,0.0,21120.0,0,4,3,100.0,7,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2422.6735772260117,0.09751418093142405,0.1147099231641104,10057.142857142857,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +6695,2,60.0,1,0.0,1,120,6,74,74,10.0,0.0,3843.1679788711654,1714.714520769966,0.0,0.0,41300.65703804705,20,42,1,3216,201706695,,,549.0,,0.0,5.0,8.0,0.0,2.0,1.5,1759.365113519359,0.0,1274.0,0.0,0.0,72214.0,6,7,2,375.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5557.882499641131,0.13457128525875728,0.0769640582108889,48142.666666666664,10,5,10,10_1,10_0,10_1_0 +6696,2,56.0,1,0.0,5,111,2,56,54,5.0,0.0,0.0,767.1799661215703,0.0,1742.7821129125746,32048.705846751298,41,50,1,3218,201706696,,,500.0,,2.0,3.0,6.0,2.0,4.0,2.1,1969.3988039859482,0.0,570.0,985.0,0.0,40090.0,1,1,2,100.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2509.962079034145,0.07831711180589135,0.06260818356283725,19090.47619047619,5,3,5,5_1,5_2,5_0_0 +6697,2,70.0,2,0.0,5,112,4,78,75,9.0,0.0,0.0,1830.4644805707642,226.47320858153253,0.0,29217.16,71,50,1,3219,201706697,,,300.0,,1.0,1.0,5.0,1.0,3.0,2.0,2547.847341542301,0.0,1360.0,0.0,0.0,60940.0,5,5,1,138.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2056.9376891522966,0.07040169849336132,0.03375349014033962,30470.0,8,4,8,8_1,8_0,8_0_0 +6698,2,60.0,2,0.0,4,112,2,47,38,10.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,47858.01999999999,50,31,1,322,201706698,,,500.0,,2.0,2.0,6.0,0.0,2.0,1.5,1788.2010541734544,800.0,0.0,0.0,0.0,74951.0,1,1,1,140.0,10,2.0,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1275.3516479725763,0.0266486504868479,0.01701580563264768,49967.333333333336,10,5,10,10_1,10_1,10_0_1 +6699,2,28.0,3,0.0,99,111,2,0,55,4.0,0.0,0.0,403.7789295376686,0.0,0.0,12107.187849749776,0,43,2,3220,201706699,,,,412.0,1.0,0.0,1.0,0.0,1.0,1.0,2935.5537287601933,0.0,300.0,0.0,0.0,18104.0,0,1,3,26.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,403.7789295376686,0.033350348119527494,0.022303299245341836,18104.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +6700,2,72.0,3,0.0,1,300,2,72,78,4.0,0.0,451.076053858118,1954.290018962316,353.5105240202359,0.0,25167.199999999997,71,71,1,3225,201706700,,,540.0,,0.0,2.0,6.0,0.0,2.0,1.5,1524.8506146064465,0.0,1452.0,0.0,0.0,24517.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2758.87659684067,0.10962191252267517,0.11252912659952972,16344.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6701,2,51.0,5,0.0,7,111,4,0,42,7.0,0.0,555.170527825376,2422.6735772260117,0.0,0.0,25771.600000000002,0,31,1,3226,201706701,,,400.0,,1.0,2.0,4.0,1.0,2.0,1.3,1109.369934033707,0.0,1800.0,0.0,0.0,32426.0,0,1,2,160.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2977.8441050513875,0.11554750597756396,0.09183507386206709,24943.076923076922,7,4,7,7_1,7_3,7_0_0 +6702,2,51.0,2,0.0,1,112,5,54,46,7.0,0.0,138.792631956344,1103.6624074029608,123.8525359430256,0.0,38841.5,20,50,1,3227,201706702,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2461.262916911081,0.0,820.0,0.0,0.0,44447.0,1,1,1,140.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1366.3075753023304,0.03517648842867372,0.030740152885511518,24692.777777777777,7,4,7,7_1,7_0,7_1_0 +6703,2,59.0,3,0.0,1,111,2,52,48,8.0,0.0,0.0,1020.4893769062996,0.0,1901.660086510866,23910.88,70,44,1,3229,201706703,,,224.0,,2.0,4.0,4.0,0.0,2.0,1.5,1430.203026696667,1833.0,0.0,0.0,0.0,45410.0,1,1,1,79.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2922.149463417166,0.12221003423617892,0.06435035153968655,30273.333333333332,8,4,8,8_1,8_3,8_1_0 +6704,1,39.0,2,143.0,4,111,1,0,68,3.0,0.0,0.0,484.5347154452023,0.0,0.0,30064.22,0,70,8,3230,201706704,,,,114.0,1.0,0.0,2.0,1.0,2.0,1.3,867.2532793633239,0.0,360.0,0.0,0.0,18354.0,0,1,3,48.0,8,6.0,2,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,484.5347154452023,0.016116656791534997,0.026399406965522627,14118.461538461537,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +6705,2,86.0,2,0.0,1,300,2,77,74,10.0,0.0,0.0,716.0346350467989,4423.304855108057,0.0,21707.59408657773,41,12,1,3231,201706705,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,2350.425438241067,0.0,532.0,0.0,0.0,101341.0,5,5,1,160.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5139.339490154856,0.23675306759732623,0.050713329157545874,67560.66666666667,10,5,10,10_1,10_0,10_1_0 +6706,2,49.0,2,0.0,5,111,2,52,21,7.0,0.0,0.0,2384.9875438024956,0.0,0.0,34188.7,44,50,1,3232,201706706,,,240.0,,2.0,1.0,4.0,0.0,2.0,1.5,2225.9153469704715,0.0,1772.0,0.0,0.0,36679.0,1,1,1,98.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2384.9875438024956,0.06975952708943294,0.06502324337638692,24452.666666666668,7,4,7,7_1,7_3,7_0_0 +6707,2,55.0,3,0.0,1,300,5,68,62,4.0,0.0,416.377895869032,500.68587262670906,247.7050718860512,0.0,43497.12,50,50,1,3233,201706707,,,409.0,,2.0,1.0,4.0,0.0,2.0,1.5,1732.8573376190702,0.0,372.0,0.0,0.0,26323.0,1,1,1,80.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1164.7688403817922,0.02677806807397345,0.04424909168338686,17548.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6708,2,52.0,4,0.0,8,111,2,0,22,1.0,0.0,0.0,94.21508355878933,0.0,123.8525359430256,32507.386764219176,0,71,1,3234,201706708,,,170.0,,2.0,1.0,5.0,3.0,4.0,2.5,1060.220673643314,0.0,70.0,70.0,0.0,14240.0,0,4,2,120.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,218.06761950181493,0.0067082482231958914,0.015313737324565655,5696.0,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +6709,1,41.0,4,420.0,5,111,1,0,56,2.0,0.0,0.0,323.0231436301349,0.0,2310.734456308449,20336.242066597373,0,41,2,3235,201706709,999999.0,1056.0,,150.0,1.0,0.0,3.0,1.0,2.0,1.5,1408.0191686383637,0.0,240.0,1306.0,0.0,16318.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2633.7575999385836,0.1295105354919322,0.1614019855336796,10878.666666666666,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6710,1,50.0,3,200.0,99,211,2,0,63,1.0,0.0,0.0,1336.1563036416364,0.0,2489.898640276093,6610.68,0,71,2,3236,201706710,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2089.027624004683,2400.0,0.0,0.0,0.0,10260.0,0,4,3,56.0,3,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3826.0549439177294,0.5787687414785966,0.37290983858847265,10260.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6711,2,63.0,2,0.0,6,111,5,52,75,9.0,475.9368027416647,152.6718951519784,1386.534796725024,226.47320858153253,133.35316564416144,53362.63990072543,41,44,1,3237,201706711,,,348.0,,1.0,1.0,6.0,0.0,2.0,1.5,2227.052229202333,128.53840408158098,977.0,0.0,0.0,59299.0,1,5,1,120.0,4,4.0,3,7,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2374.969868844361,0.04450622895086708,0.04005075749750183,39532.666666666664,9,5,9,9_1,9_2,9_0_0 +6712,2,60.0,1,0.0,5,111,6,54,21,10.0,0.0,138.792631956344,2833.182155589308,0.0,0.0,55340.57087530164,41,50,1,3238,201706712,,,427.0,,2.0,2.0,5.0,0.0,2.0,1.5,2742.939694108072,0.0,2105.0,0.0,0.0,104285.0,1,1,1,90.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2971.974787545652,0.05370336338312038,0.028498583569503303,69523.33333333333,10,5,10,10_1,10_2,10_0_0 +6713,2,53.0,3,0.0,2,111,1,0,52,6.0,0.0,0.0,397.0492807120408,0.0,475.94760240962694,25685.440000000002,0,50,8,3239,201706713,,,,260.0,1.0,0.0,2.0,0.0,1.0,1.0,1572.6332040496436,0.0,295.0,269.0,0.0,24663.0,0,1,3,55.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,872.9968831216677,0.03398800577765721,0.03539702725222672,24663.0,7,4,7,7_0,7_3,7_0_1 +6714,2,76.0,3,0.0,6,112,2,43,74,9.0,0.0,194.3096847388816,3800.3316741342737,58.38762408742635,746.3475561052262,31429.010291812785,33,31,1,324,201706714,,,522.0,,1.0,2.0,4.0,0.0,2.0,1.5,1883.702299720511,719.4004228436871,2526.0,0.0,0.0,48877.0,1,5,1,95.0,10,2.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4799.376539065808,0.152705302982959,0.09819294431053069,32584.666666666668,9,5,9,9_1,9_1,9_0_0 +6715,1,40.0,2,31.0,2,111,1,65,53,6.0,0.0,0.0,192.46795641295535,0.0,127.39117982711205,55631.28,71,42,2,3241,201706715,,,,619.0,2.0,0.0,6.0,8.0,10.0,4.1,1713.209462583719,0.0,143.0,72.0,0.0,82745.0,1,1,3,108.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,319.8591362400674,0.005749627480080764,0.0038656007763619243,20181.70731707317,5,3,5,5_0,5_3,5_0_1 +6716,1,24.0,4,46.0,99,111,1,0,84,1.0,0.0,0.0,63.25869896090141,0.0,0.0,18494.42,0,30,2,3242,201706716,,,,377.0,0.0,0.0,3.0,0.0,2.0,1.5,1138.7398104871663,0.0,47.0,0.0,0.0,12576.0,0,3,3,72.0,8,6.0,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,63.25869896090141,0.0034204208058918,0.005030112830860481,8384.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6717,1,53.0,5,261.0,7,300,4,85,64,4.0,913.7986612639961,0.0,484.5347154452023,120.31389205893916,0.0,35123.0663609246,50,50,1,3243,201706717,,,1400.0,,1.0,1.0,4.0,3.0,5.0,2.8,544.2474044970246,0.0,360.0,0.0,0.0,46692.0,4,1,3,86.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1518.6472687681378,0.04323788968658146,0.032524785161658055,16675.714285714286,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +6718,2,66.0,3,0.0,6,111,1,0,75,4.0,0.0,0.0,538.3719060502248,0.0,0.0,20356.76,0,60,2,3244,201706718,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2268.371182869842,0.0,400.0,0.0,0.0,17984.0,0,5,1,80.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,538.3719060502248,0.02644683663069294,0.029936160256351468,17984.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +6719,2,34.0,2,0.0,1,111,1,46,47,7.0,0.0,0.0,888.3136449828709,0.0,0.0,70128.14,31,50,2,3245,201706719,,,,296.0,2.0,0.0,2.0,1.0,3.0,1.8,5448.057440144278,0.0,660.0,0.0,0.0,46240.0,1,1,3,40.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,888.3136449828709,0.012667007067104174,0.019210935228868315,25688.888888888887,7,4,7,7_0,7_4,7_1_0 +6720,2,49.0,5,0.0,6,111,1,0,54,7.0,0.0,0.0,551.8312037014804,0.0,212.31863304518674,28796.82,0,60,2,3246,201706720,,,,976.0,1.0,0.0,3.0,1.0,2.0,1.3,1312.0853662998447,0.0,410.0,120.0,0.0,32472.0,0,1,3,62.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,764.1498367466671,0.026535910449371394,0.02353257688921739,24978.46153846154,7,4,7,7_0,7_4,7_0_0 +6721,2,52.0,4,0.0,8,112,4,68,62,5.0,0.0,0.0,220.73248148059216,0.0,0.0,28089.979999999996,60,50,1,3248,201706721,,,506.0,,2.0,0.0,5.0,2.0,4.0,2.5,1702.3558841181296,0.0,164.0,0.0,0.0,45963.0,1,4,2,120.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,220.73248148059216,0.007858050503439027,0.0048023950020797635,18385.2,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6722,2,60.0,3,0.0,6,112,2,78,37,10.0,2379.684013708323,138.792631956344,2673.081806887103,141.54575536345783,1720.6860083117606,32287.386676743088,50,33,1,3249,201706722,,,425.0,,1.0,3.0,7.0,0.0,2.0,1.5,1934.340409802279,1658.560052665561,1300.0,0.0,0.0,70276.0,5,1,1,180.0,7,0.0,3,7,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,7053.790216226988,0.21846891130733417,0.10037267653575885,46850.666666666664,10,5,10,10_1,10_0,10_0_0 +6723,2,42.0,3,0.0,3,400,4,0,85,1.0,0.0,0.0,915.2322402853821,0.0,0.0,21292.7,0,50,1,325,201706723,,,7550.0,700.0,0.0,0.0,5.0,4.0,5.0,2.6,2087.766501487832,0.0,680.0,0.0,0.0,20207.0,0,6,3,101.0,0,1.0,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,915.2322402853821,0.04298338117220372,0.04529283121123284,7771.923076923076,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +6724,2,54.0,3,0.0,1,400,5,69,75,4.0,0.0,55.5170527825376,1642.0343134531856,0.0,88.46609710216114,26741.670875301632,30,30,1,3250,201706724,,,440.0,,1.0,2.0,6.0,0.0,2.0,1.5,2024.3257080848539,0.0,1220.0,50.0,0.0,25800.0,1,5,1,180.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1786.0174633378842,0.06678780363673663,0.0692254830751118,17200.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6725,2,85.0,2,0.0,1,111,2,0,78,3.0,0.0,0.0,632.5869896090142,3538.6438840864457,0.0,11547.6,0,71,1,3252,201706725,,,180.0,,0.0,1.0,4.0,0.0,1.0,1.0,2981.095138505332,0.0,470.0,0.0,0.0,15875.0,0,5,3,60.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4171.23087369546,0.3612205890137743,0.26275470070522583,15875.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +6726,2,76.0,1,0.0,1,400,5,0,71,2.0,0.0,62.456684380354794,839.8601734383507,106.15931652259337,0.0,10986.64,0,50,5,3253,201706726,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2094.730606109286,0.0,624.0,0.0,0.0,12132.0,0,5,1,200.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1008.4761743412988,0.09179113672071706,0.08312530286360854,12132.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6727,2,82.0,2,0.0,1,111,2,0,77,5.0,0.0,0.0,903.2428331064232,0.0,1683.1736645340836,9934.789770866913,0,50,1,3254,201706727,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2644.38889577808,1622.4021048639422,0.0,0.0,0.0,19901.0,0,5,1,100.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2586.416497640507,0.2603393284903718,0.12996414741171333,19901.0,5,3,5,5_1,5_3,5_1_0 +6728,2,40.0,2,0.0,2,111,1,0,42,7.0,0.0,0.0,874.8543473316153,0.0,0.0,17597.431191295742,0,20,2,3255,201706728,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3377.702695330551,0.0,650.0,0.0,0.0,27742.0,0,1,3,45.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,874.8543473316153,0.04971488950980223,0.03153537406573482,27742.0,8,4,8,8_0,8_2,8_0_1 +6729,2,55.0,3,0.0,7,111,2,52,52,8.0,0.0,0.0,874.8543473316153,0.0,1061.5931652259337,42043.11999999999,50,71,1,3259,201706729,,,,550.0,3.0,2.0,3.0,1.0,3.0,2.0,3604.662189644256,0.0,650.0,600.0,0.0,61941.0,1,1,3,76.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1936.447512557549,0.04605860632030995,0.03126277445565214,30970.5,8,4,8,8_1,8_4,8_0_0 +6730,2,83.0,2,0.0,7,400,2,0,78,1.0,1189.8420068541616,0.0,1050.2388285863751,274.24490101669954,698.0256915224667,19299.661776979832,0,60,1,326,201706730,,,,,0.0,2.0,6.0,0.0,1.0,1.0,3249.673558910406,672.8232356752314,502.0,0.0,0.0,9662.0,0,5,5,200.0,0,0.0,1,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3212.351427979703,0.16644599605425822,0.33247272075964635,9662.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6731,2,70.0,3,0.0,6,111,1,0,74,9.0,0.0,0.0,846.5437461137367,0.0,559.2229527013221,34656.35353277039,0,10,2,3261,201706731,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3215.319607974577,539.0320171163073,406.0,0.0,0.0,40622.0,0,5,1,108.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1405.7666988150588,0.04056302973380603,0.034606043494044086,40622.0,10,5,10,10_0,10_3,10_0_0 +6732,2,31.0,4,0.0,9,120,2,55,63,6.0,0.0,0.0,2328.4584936672222,0.0,0.0,34462.538409057284,43,43,1,3266,201706732,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,2645.593212728664,0.0,1730.0,0.0,0.0,42214.0,1,1,2,110.0,0,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2328.4584936672222,0.06756491544613752,0.05515844254671962,20101.90476190476,5,3,5,5_1,5_1,5_0_0 +6733,2,37.0,3,0.0,1,400,5,0,42,5.0,0.0,832.755791738064,1504.7494774103782,0.0,0.0,36984.18,0,31,1,3267,201706733,,,,,1.0,0.0,7.0,0.0,1.0,1.0,2198.1418964783907,0.0,1118.0,0.0,0.0,19527.0,0,1,1,140.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2337.505269148442,0.06320284157032661,0.11970631787516987,19527.0,5,3,5,5_1,5_0,5_1_0 +6734,2,51.0,3,0.0,9,111,4,72,55,5.0,0.0,0.0,1749.7086946632305,0.0,0.0,28429.221750603258,70,71,1,3269,201706734,,,1000.0,,1.0,1.0,5.0,0.0,2.0,1.5,1733.0866874806052,0.0,1300.0,0.0,0.0,29670.0,5,1,1,220.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1749.7086946632305,0.06154613411554617,0.05897231866070882,19780.0,5,3,5,5_1,5_2,5_0_0 +6735,2,52.0,2,0.0,8,112,2,47,33,7.0,1047.0609660316622,0.0,1024.2525512605525,286.6301546110021,0.0,48721.00000000001,31,31,1,327,201706735,,,360.0,,3.0,1.0,6.0,2.0,4.0,2.5,1764.1448768829432,0.0,761.0,0.0,0.0,63058.0,1,1,2,165.0,9,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2357.943671903217,0.04839686525118977,0.037393251798395394,25223.2,7,4,7,7_1,7_0,7_0_0 +6736,1,29.0,3,259.0,3,111,1,0,62,1.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,4558.02,0,71,2,3270,201706736,,,180.0,,1.0,0.0,2.0,0.0,1.0,1.0,4545.395635287175,500.0,0.0,0.0,0.0,8930.0,0,4,3,45.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,797.0947799828602,0.17487742045512308,0.0892603337046876,8930.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6737,2,74.0,3,0.0,5,300,2,78,78,3.0,1730.8235059705205,0.0,767.1799661215703,350.32574452455816,0.0,10875.0,70,50,1,3271,201706737,,,250.0,,0.0,2.0,4.0,0.0,2.0,1.5,1960.6512090546496,0.0,570.0,0.0,0.0,22380.0,5,5,1,85.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2848.329216616649,0.2619153302635999,0.12727118930369297,14920.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6738,1,39.0,3,265.0,9,111,2,0,46,5.0,0.0,0.0,807.5578590753372,0.0,1238.525359430256,40368.46000000001,0,20,2,3272,201706738,,,,,1.0,0.0,4.0,2.0,3.0,1.6,879.9628110457141,0.0,600.0,700.0,0.0,30700.0,0,1,3,84.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2046.0832185055933,0.050685193799951574,0.06664766184057307,19187.5,5,3,5,5_0,5_3,5_0_0 +6739,2,71.0,2,0.0,1,112,5,72,77,6.0,0.0,555.170527825376,962.3397820647768,159.23897478389006,0.0,20299.440315994118,71,50,1,3273,201706739,,,183.0,,0.0,1.0,4.0,0.0,2.0,1.5,3276.9277278422933,0.0,715.0,0.0,0.0,32534.0,5,5,1,90.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1676.7492846740429,0.08260076428574814,0.051538368619722226,21689.333333333332,6,3,6,6_1,6_1,6_1_0 +6740,2,42.0,2,0.0,7,112,4,42,38,10.0,0.0,0.0,2584.185149041079,0.0,0.0,73421.5916935026,30,31,1,3274,201706740,,,1000.0,,2.0,0.0,3.0,1.0,3.0,1.8,2571.422636476416,0.0,1920.0,0.0,0.0,73264.0,1,1,1,95.0,10,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2584.185149041079,0.03519652856109036,0.03527223669252401,40702.22222222222,10,5,10,10_1,10_2,10_0_0 +6741,2,46.0,3,0.0,8,112,2,0,55,3.0,0.0,0.0,690.4619695094133,0.0,0.0,18529.660508190078,0,50,1,3275,201706741,,,100.0,,1.0,0.0,5.0,1.0,2.0,1.3,2278.353582718644,0.0,513.0,0.0,0.0,19310.0,0,1,2,100.0,10,2.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,690.4619695094133,0.03726252670437379,0.035756704790751596,14853.846153846152,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6742,2,46.0,3,0.0,1,300,2,62,55,9.0,2135.3697883009354,0.0,2049.8510322862307,0.0,0.0,112149.82776008404,50,41,1,3277,201706742,,,602.0,,2.0,0.0,6.0,1.0,3.0,1.8,2016.8105526295992,0.0,1523.0,0.0,0.0,55946.0,1,1,2,150.0,0,1.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4185.220820587167,0.03731812080478964,0.07480822258226087,31081.11111111111,8,4,8,8_1,8_1,8_1_0 +6743,1,38.0,3,351.0,9,111,4,0,22,1.0,0.0,0.0,807.5578590753372,0.0,0.0,7153.661349499146,0,43,2,3279,201706743,,,300.0,,1.0,0.0,2.0,1.0,2.0,1.3,1725.132237278576,0.0,600.0,0.0,0.0,11387.0,0,4,3,50.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,807.5578590753372,0.11288734811746118,0.07091928155575104,8759.23076923077,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +6744,2,75.0,1,0.0,4,112,2,74,74,10.0,0.0,0.0,1638.7511057250424,0.0,5335.637006067502,25344.624356809178,50,50,1,328,201706744,,,180.0,,0.0,1.0,6.0,0.0,2.0,1.5,1901.2301491064482,2073.200065831951,360.0,1800.0,0.0,94842.0,5,5,5,110.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,6974.388111792544,0.27518214567337945,0.0735369152041558,63228.0,10,5,10,10_1,10_0,10_0_1 +6745,1,44.0,2,80.0,1,112,2,0,64,4.0,0.0,0.0,2068.694048997989,113.23660429076627,0.0,30928.04,0,50,1,3280,201706745,,,203.0,,1.0,2.0,4.0,1.0,2.0,1.5,764.6901709692318,0.0,1537.0,0.0,0.0,24060.0,0,1,3,100.0,9,1.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,2181.930653288755,0.07054862362079055,0.0906870595714362,16040.0,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +6746,2,85.0,3,0.0,99,300,4,0,77,4.0,0.0,0.0,2543.807256087312,60.15694602946958,0.0,18027.080315994113,0,71,1,3282,201706746,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3308.6550568802973,0.0,1890.0,0.0,0.0,17479.0,0,5,1,60.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2603.9642021167815,0.1444473623278016,0.14897672647844737,17479.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6747,1,23.0,3,329.0,99,111,2,85,68,2.0,0.0,0.0,269.1859530251124,0.0,0.0,3563.88,70,71,2,3283,201706747,,,,69.0,1.0,0.0,3.0,0.0,2.0,1.5,3719.81719962516,0.0,200.0,0.0,0.0,18468.0,4,1,3,56.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,269.1859530251124,0.07553171067070506,0.014575804257370175,12312.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6748,2,23.0,3,0.0,99,111,2,62,56,2.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,27321.007597354557,50,43,8,3284,201706748,,,,600.0,2.0,0.0,2.0,1.0,3.0,1.8,4753.0704867110335,1200.0,0.0,0.0,0.0,23876.0,1,4,3,45.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1913.0274719588647,0.07002038505139538,0.08012344915223926,13264.444444444443,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +6749,1,38.0,3,110.0,4,300,2,85,63,2.0,3490.203220105541,0.0,1211.3367886130059,350.32574452455816,0.0,23389.828161188143,43,43,1,3285,201706749,,,390.0,395.0,1.0,0.0,5.0,3.0,5.0,2.4,1538.561096000863,0.0,900.0,0.0,0.0,25779.0,6,1,3,110.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,5051.865753243104,0.21598558648780097,0.19596825917386648,10741.25,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +6750,2,60.0,2,0.0,4,111,1,0,77,7.0,0.0,0.0,493.95622380108125,0.0,164.54694061001973,23256.1,0,50,2,3286,201706750,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2416.884485255528,0.0,367.0,93.0,0.0,27753.0,0,5,1,81.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,658.503164411101,0.028315287791637507,0.023727278651356647,27753.0,8,4,8,8_0,8_2,8_0_1 +6751,2,58.0,3,0.0,6,300,2,77,56,1.0,1565.8320810200767,0.0,802.174140014835,339.7098128722988,0.0,25381.14,44,70,1,3287,201706751,,,521.0,,1.0,3.0,6.0,0.0,3.0,2.0,3901.6788033813605,0.0,596.0,0.0,0.0,16717.0,6,1,1,104.0,0,0.0,5,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2707.71603390721,0.10668220709972878,0.16197380115494467,8358.5,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6752,2,36.0,3,0.0,99,111,2,63,62,7.0,0.0,0.0,2719.634809703914,0.0,5067.98119072863,46716.259999999995,43,43,1,3288,201706752,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2041.5669034797136,4885.0,0.0,0.0,0.0,37767.0,1,1,3,95.0,4,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,7787.616000432545,0.16670033090047331,0.20620160458687598,25178.0,7,4,7,7_1,7_2,7_0_0 +6753,2,62.0,2,0.0,7,111,2,0,74,3.0,2538.3296146222115,0.0,1280.7472176780168,0.0,731.2915535324983,32714.12395661675,0,30,1,3289,201706753,,,300.0,,0.0,3.0,6.0,0.0,1.0,1.0,3963.759332888545,704.8880223828635,660.0,0.0,0.0,25024.0,0,5,1,160.0,9,7.0,1,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4550.368385832727,0.1390949178974536,0.18184016887119273,25024.0,7,4,7,7_1,7_3,7_0_0 +6754,2,55.0,1,0.0,1,111,2,22,38,10.0,0.0,69.396315978172,915.2322402853821,0.0,2848.608326689589,101761.66740740738,30,12,1,329,201706754,,,650.0,,2.0,3.0,10.0,1.0,3.0,2.0,2403.3583806113443,0.0,680.0,1610.0,0.0,106979.0,1,1,2,220.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3833.236882953143,0.03766877037899357,0.0358316761509562,53489.5,10,5,10,10_1,10_4,10_1_0 +6755,2,42.0,2,0.0,9,112,2,0,54,7.0,0.0,0.0,1137.3106515311,0.0,0.0,50254.86,0,20,2,3290,201706755,,,240.0,,1.0,0.0,1.0,0.0,1.0,1.0,4643.83923024925,0.0,845.0,0.0,0.0,27043.0,0,1,3,32.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1137.3106515311,0.02263085901604541,0.04205563922386939,27043.0,7,4,7,7_0,7_2,7_0_0 +6756,2,34.0,2,0.0,7,112,4,54,46,7.0,0.0,249.82673752141918,2487.2782059520387,176.9321942043223,0.0,41440.11806172223,60,42,1,3292,201706756,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3685.385037398855,0.0,1848.0,0.0,0.0,48838.0,1,1,2,100.0,9,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2914.0371376777803,0.07031922865995509,0.05966741344194644,23256.190476190473,6,3,6,6_1,6_1,6_0_0 +6757,2,47.0,4,0.0,4,111,1,63,62,3.0,0.0,0.0,517.7605676611341,0.0,1761.0305970264365,28031.3233870052,50,71,2,3293,201706757,450.0,450.0,400.0,330.0,3.0,3.0,5.0,2.0,4.0,2.5,1868.8499996510934,930.0,0.0,450.0,0.0,38469.0,4,1,3,80.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2278.7911646875705,0.0812944552501569,0.05923707828868883,15387.6,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6758,1,35.0,5,54.0,99,111,4,0,33,3.0,0.0,0.0,2099.6504335958766,132.69914565324171,0.0,48221.979999999996,0,20,1,3294,201706758,,,426.0,,1.0,0.0,4.0,2.0,3.0,1.8,780.5555211223118,0.0,1560.0,0.0,0.0,25194.0,0,1,3,110.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2232.3495792491185,0.04629319615762602,0.08860639752516943,13996.666666666666,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +6759,2,32.0,2,0.0,9,300,5,55,48,7.0,0.0,365.0246220451847,1695.871504058208,162.7776186679765,0.0,44366.46000000001,44,30,1,3295,201706759,,,231.0,,2.0,0.0,4.0,2.0,4.0,2.1,2009.9324117254168,0.0,1260.0,0.0,0.0,50624.0,1,1,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2223.6737447713695,0.05012060337406611,0.043925287309801074,24106.666666666664,7,4,7,7_1,7_0,7_0_0 +6760,2,75.0,3,0.0,9,111,2,77,74,8.0,0.0,0.0,2180.4062195034103,0.0,0.0,27567.1117113366,70,31,1,3297,201706760,,,600.0,1160.0,1.0,3.0,4.0,1.0,3.0,2.0,3138.1073613595604,0.0,1620.0,0.0,0.0,54317.0,5,5,3,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2180.4062195034103,0.07909447468908205,0.04014224311915994,27158.5,7,4,7,7_1,7_4,7_0_0 +6761,2,72.0,3,0.0,1,300,2,78,75,4.0,1411.945848133605,0.0,1076.7438121004495,371.5576078290768,0.0,26069.86,70,41,1,3299,201706761,,,,,0.0,1.0,3.0,0.0,2.0,1.5,3103.3581673490103,0.0,800.0,0.0,0.0,24160.0,5,5,1,50.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2860.2472680631317,0.10971471530967683,0.11838771804897069,16106.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6762,2,42.0,3,0.0,9,111,4,0,33,7.0,0.0,0.0,1094.240899047082,0.0,0.0,25908.239999999998,0,20,2,3300,201706762,,,,484.0,1.0,0.0,3.0,1.0,2.0,1.3,809.5919331053628,0.0,813.0,0.0,0.0,33524.0,0,1,3,69.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1094.240899047082,0.04223524635587296,0.03264052317882955,25787.69230769231,7,4,7,7_0,7_3,7_0_0 +6763,2,53.0,2,0.0,7,221,2,48,46,6.0,0.0,416.377895869032,1344.463745902973,0.0,1541.2372777899411,68630.22,50,50,1,3304,201706763,,,200.0,,2.0,0.0,6.0,3.0,5.0,2.8,1597.658241738016,360.0,850.0,660.0,0.0,58600.0,1,1,1,120.0,1,2.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3302.0789195619463,0.0481140657797971,0.05634946961709806,20928.57142857143,5,3,5,5_1,5_1,5_0_0 +6764,1,63.0,3,180.0,3,111,1,0,77,1.0,0.0,0.0,88.83136449828709,0.0,859.8904638330064,6630.959999999999,0,71,2,3305,201706764,392.0,392.0,,,0.0,1.0,3.0,0.0,1.0,1.0,4276.12410944127,0.0,66.0,486.0,0.0,10400.0,0,6,3,50.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,948.7218283312934,0.14307458170932918,0.09122325272416283,10400.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6765,2,62.0,4,0.0,1,300,5,0,77,2.0,0.0,0.0,864.0869092106108,176.9321942043223,0.0,13956.2,0,71,1,3306,201706765,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3419.6329151665423,0.0,642.0,0.0,0.0,11050.0,0,5,1,66.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1041.019103414933,0.0745918733906746,0.09420987361221113,11050.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6766,1,34.0,5,149.0,6,111,2,0,52,4.0,0.0,0.0,634.6742442297772,0.0,1182.701854131144,17868.026296616576,0,43,1,3307,201706766,,,288.0,,1.0,0.0,3.0,1.0,2.0,1.3,775.6151826132086,1140.0,0.0,0.0,0.0,23073.0,0,1,3,80.0,7,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1817.3760983609213,0.10171107139600824,0.07876635454257883,17748.46153846154,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +6767,2,55.0,2,0.0,7,112,2,46,38,9.0,0.0,1387.9263195634398,2557.266553738568,210.54931110314354,0.0,107788.76,30,31,1,331,201706767,,,612.0,,2.0,0.0,4.0,1.0,3.0,2.0,1351.9781498060568,0.0,1900.0,0.0,0.0,82177.0,1,1,1,110.0,10,3.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4155.742184405151,0.03855450405408831,0.050570624194180264,41088.5,10,5,10,10_1,10_1,10_0_0 +6768,2,49.0,3,0.0,4,111,2,52,43,4.0,0.0,0.0,890.7708690944243,0.0,1659.9324268507285,42725.66,42,50,1,3310,201706768,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.3,2979.9457130473,1600.0,0.0,0.0,0.0,42054.0,1,1,2,150.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2550.7032959451526,0.05969956452270491,0.06065304836508186,18284.34782608696,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +6769,2,62.0,3,0.0,6,111,5,77,77,7.0,0.0,13.8792631956344,2422.6735772260117,185.7788039145384,0.0,55329.62,43,50,1,3311,201706769,,,260.0,,0.0,2.0,5.0,0.0,2.0,1.5,1692.715311294818,0.0,1800.0,0.0,0.0,36550.0,5,5,1,120.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2622.3316443361846,0.047394716326195345,0.07174641981767947,24366.666666666668,7,4,7,7_1,7_2,7_0_0 +6770,2,27.0,2,0.0,9,112,4,43,38,9.0,0.0,0.0,2018.894647688343,35.38643884086446,0.0,52943.74,41,41,1,3313,201706770,,,500.0,,2.0,0.0,3.0,1.0,3.0,1.8,2703.4094524123325,0.0,1500.0,0.0,0.0,57028.0,1,1,2,110.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2054.2810865292076,0.03880120834926297,0.036022323885270525,31682.222222222223,8,4,8,8_1,8_1,8_0_0 +6771,2,66.0,3,0.0,99,112,2,78,78,5.0,0.0,2151.285795323332,1432.0692700935979,0.0,0.0,38739.00436113137,70,70,1,3314,201706771,,,136.0,,0.0,2.0,5.0,0.0,2.0,1.5,1496.3213987079673,0.0,1064.0,0.0,0.0,30186.0,5,5,1,140.0,6,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3583.35506541693,0.09249992674081928,0.11870917198094912,20124.0,5,3,5,5_1,5_1,5_0_0 +6772,2,64.0,2,0.0,4,111,4,75,74,9.0,0.0,0.0,3634.010365839017,0.0,0.0,39658.731191295745,71,31,1,3315,201706772,,,,,0.0,5.0,5.0,0.0,2.0,1.5,1773.9977504526119,0.0,2700.0,0.0,0.0,57762.0,5,5,3,135.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3634.010365839017,0.09163203805765238,0.06291351348358812,38508.0,9,5,9,9_1,9_2,9_0_1 +6773,2,40.0,3,0.0,10,112,2,53,43,6.0,0.0,0.0,253.03479584360565,0.0,0.0,56551.3423825915,31,33,1,3316,201706773,,,,,2.0,0.0,6.0,3.0,5.0,2.4,1719.8415383923225,0.0,188.0,0.0,0.0,51420.0,1,1,2,160.0,6,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,253.03479584360565,0.004474425985005418,0.0049209411871568584,21425.0,6,3,6,6_1,6_1,6_0_0 +6774,2,39.0,3,0.0,1,221,4,42,33,10.0,0.0,0.0,3020.266392941761,309.631339857564,0.0,26539.88,30,20,1,3318,201706774,,,264.0,,2.0,0.0,6.0,1.0,3.0,1.8,2717.9052693941785,0.0,2244.0,0.0,0.0,80925.0,1,1,2,350.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3329.897732799325,0.12546770116516445,0.041147948505397894,44958.333333333336,10,5,10,10_1,10_1,10_1_0 +6775,1,47.0,4,349.0,1,111,1,85,63,2.0,0.0,0.0,662.510833888978,0.0,1234.5747424702295,11334.539999999999,50,71,2,3320,201706775,,,,,1.0,0.0,3.0,2.0,4.0,2.1,2668.4110211204893,1190.0,0.0,0.0,0.0,24288.0,6,4,3,70.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1897.0855763592076,0.16737208359220646,0.07810793710306356,11565.714285714284,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +6776,2,68.0,3,0.0,9,111,1,0,75,6.0,0.0,0.0,298.7964078578747,0.0,0.0,21868.219999999998,0,31,2,3321,201706776,,,74.0,300.0,0.0,2.0,2.0,0.0,1.0,1.0,2642.6506674996995,0.0,222.0,0.0,0.0,22892.0,0,5,3,43.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,298.7964078578747,0.013663499263217343,0.013052437876021087,22892.0,6,3,6,6_0,6_3,6_0_0 +6777,2,45.0,1,0.0,1,112,5,42,38,7.0,0.0,138.792631956344,4951.351219792805,169.8549064361494,7731.902578348896,77745.40861385764,30,12,1,3322,201706777,,,150.0,,2.0,0.0,8.0,3.0,5.0,2.8,2074.4155660318856,7452.739596652698,596.0,0.0,0.0,64618.0,1,1,1,200.0,8,3.0,4,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,12991.901336534194,0.1671082777513175,0.201057001710579,23077.857142857145,6,3,6,6_1,6_1,6_1_0 +6778,2,55.0,2,0.0,1,111,4,0,42,10.0,0.0,0.0,885.9950578340818,0.0,1076.6753226267035,20666.406166005785,0,31,2,3323,201706778,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2690.3735241812597,1037.801592605215,229.0,0.0,0.0,46965.0,0,1,2,27.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1962.6703804607853,0.09496911870865994,0.04179006452594028,46965.0,10,5,10,10_0,10_3,10_1_0 +6779,2,85.0,1,0.0,7,111,1,74,74,10.0,0.0,0.0,846.786629324254,0.0,752.8001286363954,48108.98052488321,30,44,2,3325,201706779,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2210.9266961213625,725.620023041183,329.0,0.0,0.0,84669.0,5,5,1,100.0,8,6.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1599.5867579606493,0.033249234145240336,0.01889223633160483,56446.0,10,5,10,10_0,10_2,10_0_0 +6780,2,50.0,2,0.0,4,111,2,42,43,9.0,951.8736054833294,0.0,1903.8075806628271,0.0,1064.6744676429018,63926.42845662054,31,33,1,3326,201706780,,,450.0,,3.0,1.0,4.0,1.0,3.0,2.0,1728.001558265906,1026.2340325868158,990.0,0.0,0.0,74259.0,1,1,1,100.0,9,7.0,4,8,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3920.355653789058,0.06132605478576594,0.05279300359268315,37129.5,9,5,9,9_1,9_3,9_0_1 +6781,2,37.0,3,0.0,99,111,6,46,62,7.0,0.0,0.0,946.18862488327,0.0,0.0,36894.659999999996,31,43,2,3328,201706781,,,,553.0,2.0,0.0,2.0,0.0,2.0,1.5,676.4275896690929,0.0,703.0,0.0,0.0,39441.0,4,1,3,35.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,946.18862488327,0.025645679479991686,0.023989975530115108,26294.0,7,4,7,7_0,7_3,7_0_0 +6782,2,69.0,2,0.0,4,111,2,68,75,7.0,0.0,0.0,632.5869896090142,0.0,2176.265988713164,34291.72,60,60,1,333,201706782,,,60.0,,1.0,2.0,5.0,0.0,2.0,1.5,1480.8407484884488,0.0,470.0,1230.0,0.0,40040.0,1,5,2,100.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2808.8529783221784,0.08191053053979731,0.07015117328476969,26693.333333333332,7,4,7,7_1,7_3,7_0_1 +6783,1,40.0,4,99.0,5,111,2,0,52,3.0,0.0,0.0,827.7468055522206,0.0,773.1936886728884,9741.8,0,60,2,3330,201706783,,,458.0,180.0,1.0,0.0,4.0,1.0,2.0,1.5,1453.2919734433074,0.0,615.0,437.0,0.0,20774.0,0,1,3,90.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1600.940494225109,0.16433723687871946,0.0770646237713059,13849.333333333334,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6784,1,28.0,4,233.0,99,111,1,0,84,2.0,0.0,0.0,403.7789295376686,0.0,0.0,7789.02,0,50,2,3331,201706784,,,,,0.0,0.0,1.0,0.0,1.0,1.0,5195.663940348881,0.0,300.0,0.0,0.0,12516.0,0,3,3,30.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,403.7789295376686,0.051839503498215256,0.03226102025708442,12516.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6785,1,50.0,4,37.0,9,111,4,0,85,1.0,0.0,0.0,1520.900634591885,0.0,0.0,14034.9,0,71,1,3333,201706785,,,255.0,,0.0,1.0,5.0,0.0,1.0,1.0,1860.8048288258806,0.0,1130.0,0.0,0.0,5954.0,0,7,3,95.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1520.900634591885,0.10836561960483401,0.25544182643464647,5954.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +6786,2,57.0,2,0.0,7,120,6,55,77,6.0,1269.1648073111057,541.2912646297416,1340.5460460650597,169.8549064361494,0.0,31875.496231955123,50,44,1,3334,201706786,,,238.0,,1.0,3.0,4.0,1.0,3.0,2.0,313.55876066880916,0.0,996.0,0.0,0.0,46820.0,1,5,1,75.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3320.8570244420566,0.1041821278726605,0.07092817224352961,23410.0,6,3,6,6_1,6_0,6_0_0 +6787,2,55.0,2,0.0,1,112,2,46,13,6.0,4605.481794530175,0.0,1765.8598518447372,123.8525359430256,0.0,54373.34000000001,41,31,1,3335,201706787,,,639.0,,3.0,1.0,8.0,1.0,3.0,2.0,2463.448330497613,0.0,1312.0,0.0,0.0,43613.0,1,1,1,126.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6495.194182317938,0.11945549385632621,0.1489279385118643,21806.5,6,3,6,6_1,6_0,6_1_0 +6788,2,65.0,2,0.0,6,112,4,75,75,6.0,0.0,346.98157989085996,1651.4558218090644,0.0,0.0,55094.09999999999,33,33,1,3336,201706788,,,313.0,,0.0,3.0,6.0,0.0,2.0,1.5,1631.63087207625,0.0,1227.0,0.0,0.0,36426.0,5,5,1,150.0,9,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1998.4374016999245,0.03627316539701937,0.05486293860703686,24284.0,7,4,7,7_1,7_1,7_0_0 +6789,1,36.0,3,333.0,99,111,1,55,67,3.0,0.0,0.0,403.7789295376686,0.0,176.9321942043223,30698.23087530163,31,71,2,3337,201706789,,,,15.0,2.0,0.0,4.0,3.0,6.0,2.9,2655.5512288619957,0.0,300.0,100.0,0.0,41776.0,1,1,3,65.0,8,6.0,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,580.7111237419908,0.018916761884451263,0.013900591816880286,14405.517241379312,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +6790,2,45.0,3,0.0,7,112,6,62,56,3.0,0.0,0.0,1717.406380300217,0.0,0.0,36181.14,50,50,1,3338,201706790,,,399.0,,3.0,0.0,4.0,2.0,4.0,2.5,1909.1427239202762,0.0,1276.0,0.0,0.0,38501.0,1,1,2,100.0,4,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1717.406380300217,0.04746689519181035,0.044606799311711826,15400.4,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6791,2,55.0,3,0.0,3,112,2,0,62,8.0,2538.3296146222115,0.0,463.2008519291006,0.0,863.1648619623788,17191.16,0,71,1,3339,201706791,,,340.0,,1.0,1.0,5.0,1.0,2.0,1.5,3551.310460741222,832.0,0.0,0.0,0.0,41536.0,0,1,1,100.0,9,0.0,2,4,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3864.695328513691,0.22480712927537705,0.09304447535905458,27690.666666666668,8,4,8,8_1,8_0,8_0_1 +6792,2,63.0,3,0.0,5,112,2,0,77,4.0,0.0,0.0,256.09662486464697,0.0,477.2305727195844,20226.84449357506,0,71,1,3340,201706792,,,80.0,,0.0,1.0,2.0,0.0,1.0,1.0,2420.62102436074,460.0,0.0,0.0,0.0,16790.0,0,5,3,45.0,8,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,733.3271975842314,0.03625514586900436,0.0436764263004307,16790.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6793,2,72.0,1,0.0,7,111,2,75,74,9.0,0.0,0.0,726.8020731678034,0.0,3007.847301473479,32462.14,33,20,1,3341,201706793,,,280.0,,0.0,1.0,7.0,0.0,2.0,1.5,2166.3962078025747,0.0,540.0,1700.0,0.0,61312.0,5,5,1,130.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3734.6493746412825,0.115046308550246,0.06091220926802718,40874.666666666664,10,5,10,10_1,10_3,10_0_0 +6794,2,62.0,1,0.0,1,112,2,0,63,4.0,0.0,0.0,489.91843450570457,0.0,3927.894711335955,16781.48,0,50,1,3342,201706794,,,357.0,,1.0,0.0,9.0,0.0,1.0,1.0,2449.1211108420807,0.0,364.0,2220.0,0.0,21228.0,0,1,1,100.0,9,0.0,1,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4417.813145841659,0.2632552758065236,0.2081125469117043,21228.0,6,3,6,6_1,6_0,6_1_0 +6795,2,68.0,3,0.0,4,111,1,86,78,1.0,0.0,0.0,336.4824412813905,0.0,318.4779495677801,17200.879999999997,71,70,2,3345,201706795,,,,242.0,0.0,6.0,3.0,0.0,2.0,1.5,7344.550342215203,0.0,250.0,180.0,0.0,15597.0,5,5,3,82.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,654.9603908491706,0.03807714435826369,0.04199271596134966,10398.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +6796,0,45.0,4,0.0,1,300,2,85,62,1.0,0.0,0.0,1736.249397011975,95.54338487033404,0.0,26815.82,71,50,1,3346,201706796,,,,,3.0,3.0,9.0,4.0,6.0,3.1,2205.235026556326,0.0,1290.0,0.0,0.0,29759.0,7,1,5,210.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1831.7927818823089,0.06831015355421945,0.061554245165573736,9599.677419354839,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6797,2,68.0,2,0.0,5,111,4,0,77,7.0,0.0,0.0,1825.080761510262,38.925082724950904,0.0,21091.14,0,50,1,3347,201706797,,,147.0,,0.0,1.0,4.0,0.0,1.0,1.0,1859.1718712335216,0.0,1356.0,0.0,0.0,26148.0,0,5,1,100.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1864.0058442352129,0.08837861984867641,0.07128674637583038,26148.0,7,4,7,7_1,7_2,7_0_0 +6798,1,44.0,4,400.0,9,112,4,85,52,2.0,0.0,0.0,874.8543473316153,0.0,0.0,32635.553696501076,50,60,2,3348,201706798,,,480.0,,1.0,0.0,4.0,2.0,4.0,2.3,3280.8851469492233,0.0,650.0,0.0,0.0,26510.0,7,1,3,87.0,6,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,874.8543473316153,0.026806787329776795,0.03300091842065693,11526.08695652174,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +6799,2,61.0,2,0.0,7,111,2,0,74,8.0,0.0,0.0,915.2322402853821,0.0,1415.4575536345783,31017.72,0,10,1,3349,201706799,,,219.0,,0.0,2.0,6.0,0.0,1.0,1.0,2198.3053201554294,0.0,680.0,800.0,0.0,30558.0,0,7,1,140.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2330.6897939199603,0.07514059040832015,0.07627101884678186,30558.0,8,4,8,8_1,8_3,8_0_0 +6800,2,63.0,3,0.0,5,111,2,75,74,8.0,0.0,138.792631956344,1961.4648450178663,0.0,447.2733854140113,51950.51912392149,42,44,1,335,201706800,,,168.0,,0.0,2.0,5.0,0.0,2.0,1.5,1870.5635798353596,431.1244271672829,1279.0,0.0,0.0,42580.0,5,5,1,119.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2547.530862388222,0.0490376401496856,0.05982928281794791,28386.666666666668,8,4,8,8_1,8_3,8_0_0 +6801,2,39.0,2,0.0,4,111,1,54,46,7.0,0.0,416.377895869032,1408.5314367555584,0.0,2624.7681499577147,78920.36,30,31,1,3350,201706801,,,,,2.0,0.0,7.0,3.0,5.0,2.4,2276.2855495109634,2530.0,0.0,0.0,0.0,55392.0,4,1,2,200.0,4,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4449.677482582305,0.056381870059669076,0.08033068823263838,23080.0,6,3,6,6_1,6_2,6_0_1 +6802,2,87.0,3,0.0,1,400,5,0,77,2.0,0.0,562.1101594231932,1655.4936111044412,205.24134527701386,0.0,14563.046811688999,0,70,1,3352,201706802,,,,,0.0,5.0,6.0,0.0,1.0,1.0,2353.9210086356793,0.0,1230.0,0.0,0.0,12165.0,0,5,1,107.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2422.8451158046482,0.16636938321587738,0.1991652376329345,12165.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6803,1,31.0,3,379.0,99,112,2,0,52,2.0,0.0,0.0,794.0985614240816,0.0,0.0,14386.91665845403,0,30,2,3354,201706803,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1575.7992348031964,0.0,590.0,0.0,0.0,17147.0,0,1,3,35.0,10,4.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,794.0985614240816,0.05519588250046989,0.04631122420388882,13190.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6804,2,39.0,1,0.0,2,111,4,0,33,10.0,0.0,0.0,2018.894647688343,0.0,0.0,85224.44816118815,0,20,2,3355,201706804,,,,,1.0,0.0,4.0,2.0,3.0,1.6,2711.8537960386093,0.0,1500.0,0.0,0.0,108282.0,0,1,1,100.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2018.894647688343,0.023689148961926195,0.018644785353875464,67676.25,10,5,10,10_0,10_4,10_0_1 +6805,2,60.0,1,0.0,5,221,2,54,75,8.0,0.0,0.0,948.8804844135212,0.0,2006.4110822770149,40880.2,50,42,1,3358,201706805,,,400.0,,1.0,1.0,6.0,0.0,2.0,1.5,2931.9979778591414,0.0,705.0,1134.0,0.0,43215.0,4,5,1,180.0,1,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2955.291566690536,0.07229151439304446,0.06838578194355052,28810.0,8,4,8,8_1,8_1,8_0_0 +6806,2,59.0,3,0.0,3,112,2,85,75,1.0,0.0,0.0,358.01731752339947,0.0,421.0986222062871,19183.541750603257,71,71,1,3359,201706806,,,287.0,,0.0,0.0,4.0,0.0,2.0,1.5,2133.5123443270077,0.0,266.0,238.0,0.0,9720.0,7,7,1,93.0,10,3.0,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,779.1159397296865,0.04061376933720729,0.08015596087753976,6480.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +6807,2,31.0,2,0.0,7,112,4,31,47,8.0,0.0,0.0,1585.505263317912,123.8525359430256,0.0,28333.5,0,20,1,336,201706807,,,332.0,,2.0,0.0,5.0,1.0,3.0,1.8,2042.9926549281963,0.0,1178.0,0.0,0.0,50853.0,1,1,2,120.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1709.3577992609376,0.06032992038614846,0.03361370615816053,28251.666666666664,8,4,8,8_1,8_0,8_0_0 +6808,2,59.0,3,0.0,99,111,2,85,64,7.0,0.0,0.0,668.9270932674043,0.0,2609.749864513754,43904.37087530163,71,71,1,3362,201706808,,,320.0,,3.0,2.0,5.0,2.0,4.0,2.5,2089.378560660762,0.0,497.0,1475.0,0.0,60880.0,6,1,1,104.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3278.6769577811583,0.07467768908688714,0.05385474634988762,24352.0,7,4,7,7_1,7_3,7_0_0 +6809,2,34.0,3,0.0,9,111,1,53,55,5.0,0.0,0.0,605.6683943065029,0.0,0.0,34351.39781558768,60,60,2,3363,201706809,,,,740.0,2.0,0.0,3.0,1.0,3.0,1.8,3376.2675509500214,0.0,450.0,0.0,0.0,38826.0,1,1,3,68.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,605.6683943065029,0.017631550179063395,0.015599556851246662,21570.0,6,3,6,6_0,6_3,6_0_0 +6810,2,56.0,5,0.0,1,211,5,77,78,1.0,25.383296146222115,437.1967906624836,312.2557055091304,424.6372660903735,0.0,11492.480000000001,71,50,1,3364,201706810,,,79.0,,0.0,1.0,4.0,0.0,2.0,1.5,2081.6275040765645,0.0,232.0,0.0,0.0,10980.0,6,7,1,80.0,1,2.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1199.4730584082095,0.10437025414951423,0.1092416264488351,7320.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +6811,1,26.0,3,212.0,99,111,1,0,56,4.0,0.0,0.0,403.7789295376686,0.0,0.0,18688.139999999996,0,50,2,3365,201706811,,,,118.0,1.0,0.0,3.0,1.0,2.0,1.3,2467.7854812608407,0.0,300.0,0.0,0.0,21734.0,0,1,3,69.0,6,4.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,403.7789295376686,0.02160615928271453,0.01857821521752409,16718.46153846154,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +6812,2,69.0,3,0.0,5,300,2,78,78,6.0,0.0,0.0,1121.1594943495932,0.0,0.0,42007.251711336605,70,70,1,3366,201706812,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,2152.5237841992516,0.0,833.0,0.0,0.0,33984.0,5,5,1,135.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1121.1594943495932,0.02668966544286026,0.032990804329966844,22656.0,6,3,6,6_1,6_0,6_0_0 +6813,2,55.0,2,0.0,8,120,2,46,46,8.0,0.0,0.0,61.24049725024166,0.0,114.1203543459876,31549.510875301625,71,71,1,3367,201706813,,,,,3.0,0.0,4.0,2.0,4.0,2.5,1790.8574840261572,110.0,0.0,0.0,0.0,77210.0,1,1,2,90.0,0,3.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,175.36085159622925,0.005558274810957833,0.00227121942230578,30884.0,8,4,8,8_1,8_1,8_0_0 +6814,2,50.0,1,0.0,8,120,2,46,37,9.0,3298.242042999736,0.0,866.1058038582992,0.0,0.0,40964.05883901972,41,31,1,3368,201706814,,,461.0,,2.0,1.0,5.0,1.0,3.0,2.0,3401.7984341612296,0.0,643.5,0.0,0.0,79988.0,1,1,1,140.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4164.347846858035,0.10165857497722725,0.05206215740933684,39994.0,9,5,9,9_1,9_0,9_0_0 +6815,2,60.0,2,0.0,8,112,2,55,21,10.0,0.0,0.0,3714.766151746551,0.0,2653.9829130648345,33456.8913887658,70,50,1,3369,201706815,,,800.0,,2.0,2.0,6.0,0.0,2.0,1.5,2080.352694285814,0.0,2760.0,1500.0,0.0,96547.0,1,1,1,220.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6368.749064811385,0.19035686821011388,0.06596527147204352,64364.666666666664,10,5,10,10_1,10_0,10_0_0 +6816,2,38.0,3,0.0,7,120,2,65,65,9.0,0.0,0.0,1356.6972032465665,0.0,1926.7915948850698,40575.9502343622,42,41,1,337,201706816,,,1008.0,,2.0,0.0,6.0,2.0,4.0,2.1,903.3315520673337,0.0,1008.0,1089.0,0.0,67909.0,1,1,3,120.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3283.488798131636,0.08092204320950139,0.04835130539592154,32337.619047619046,9,5,9,9_1,9_0,9_0_0 +6817,2,47.0,1,0.0,7,111,4,0,62,6.0,0.0,0.0,363.4010365839017,0.0,0.0,24163.46,0,41,2,3370,201706817,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,2712.613958622322,0.0,270.0,0.0,0.0,22189.0,0,1,3,60.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,363.4010365839017,0.015039279829291903,0.016377531055203107,22189.0,6,3,6,6_0,6_3,6_0_0 +6818,2,52.0,3,0.0,3,111,2,85,48,1.0,571.1241632899976,0.0,998.7503827761018,0.0,1861.149936778962,45436.01645189225,71,44,1,3371,201706818,,,,,2.0,1.0,5.0,2.0,4.0,2.5,1611.3716505882471,1793.9524830513628,0.0,0.0,0.0,23060.0,6,4,2,100.0,8,7.0,4,2,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3431.0244828450614,0.07551332072603323,0.1487868379377737,9224.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +6819,1,82.0,3,92.0,3,221,2,0,,2.0,0.0,444.1364222603008,355.32545799314835,0.0,412.25201249607096,9083.14,0,70,1,3373,201706819,,,,,0.0,5.0,5.0,0.0,1.0,1.0,2040.4882238290784,0.0,264.0,233.0,0.0,11954.0,0,8,3,90.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1211.7138927495203,0.13340253400801047,0.10136472249870505,11954.0,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +6820,2,81.0,2,0.0,9,111,6,0,74,8.0,0.0,0.0,1782.011009026244,0.0,0.0,32005.72,0,44,2,3374,201706820,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2957.98882084333,0.0,1324.0,0.0,0.0,27242.0,0,5,1,58.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1782.011009026244,0.05567789160894503,0.06541410355430012,27242.0,7,4,7,7_0,7_4,7_0_0 +6821,2,68.0,2,0.0,1,111,2,0,74,9.0,0.0,0.0,1174.3049958299687,0.0,2188.292196367669,17352.160315994115,0,10,1,3375,201706821,,,486.0,,0.0,1.0,5.0,0.0,1.0,1.0,1828.1349133973356,2109.2831596952265,0.0,0.0,0.0,36110.0,0,5,1,120.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3362.597192197638,0.1937855074505167,0.09312094135136079,36110.0,9,5,9,9_1,9_2,9_1_0 +6822,2,76.0,3,0.0,4,300,6,0,71,2.0,1269.1648073111057,0.0,2874.9059783082002,113.23660429076627,0.0,10540.4,0,50,1,3376,201706822,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2830.5520453933814,0.0,2136.0,0.0,0.0,10859.0,0,5,5,96.0,0,1.0,1,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4257.307389910072,0.4039037787854419,0.3920533557334996,10859.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +6823,2,73.0,3,0.0,6,111,5,77,78,5.0,0.0,69.396315978172,942.1508355878933,0.0,636.9558991355602,24828.32,70,50,1,3377,201706823,,,230.0,,0.0,1.0,4.0,0.0,2.0,1.5,2162.9008526554185,0.0,700.0,360.0,0.0,27828.0,5,5,1,90.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1648.5030507016254,0.06639607716920136,0.059239005702947586,18552.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +6824,1,59.0,3,215.0,2,400,6,0,78,2.0,0.0,0.0,349.9417389326461,53.079658261296686,0.0,10444.99087530163,0,71,2,3378,201706824,,,,,0.0,0.0,3.0,0.0,1.0,1.0,5179.777333257805,0.0,260.0,0.0,0.0,12300.0,0,7,3,45.0,0,1.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,403.0213971939428,0.03858513635918369,0.03276596725154007,12300.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +6825,1,48.0,3,381.0,5,211,1,0,85,2.0,0.0,0.0,969.0694308904046,81.38880933398825,0.0,14593.88,0,71,2,3379,201706825,,,,,1.0,1.0,4.0,3.0,4.0,2.3,827.4702910700136,0.0,720.0,0.0,0.0,27162.0,0,6,3,63.0,3,3.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1050.458240224393,0.0719793667088117,0.038673817841999594,11809.565217391306,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +6826,2,48.0,4,0.0,1,120,4,0,64,6.0,0.0,0.0,2153.487624200899,58.38762408742635,0.0,16656.969830358503,0,50,1,3381,201706826,,,276.0,,1.0,1.0,5.0,0.0,1.0,1.0,2622.9012872826875,0.0,1600.0,0.0,0.0,23260.0,0,1,2,164.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2211.8752482883256,0.13278977333902753,0.09509351884300626,23260.0,6,3,6,6_1,6_0,6_1_0 +6827,2,33.0,2,0.0,2,111,2,56,62,5.0,0.0,0.0,951.5723439437724,0.0,1762.24465427505,26447.484177580944,42,50,1,3382,201706827,,,432.0,,2.0,0.0,5.0,1.0,3.0,1.8,2358.616159586842,0.0,707.0,996.0,0.0,39021.0,1,1,2,120.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2713.8169982188224,0.10261153688558688,0.06954760252732689,21678.333333333332,6,3,6,6_1,6_2,6_0_1 +6828,2,32.0,1,0.0,9,120,2,38,31,10.0,2284.4966531599903,0.0,2814.33913887755,0.0,0.0,78259.86,12,30,1,3383,201706828,,,434.0,,2.0,0.0,7.0,2.0,4.0,2.1,3056.8416893025883,0.0,2091.0,0.0,0.0,83846.0,1,1,1,230.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5098.83579203754,0.065152631144977,0.06081191460579563,39926.666666666664,9,5,9,9_1,9_0,9_0_0 +6829,1,35.0,5,408.0,9,211,4,0,67,2.0,0.0,0.0,1787.3947280867462,233.5504963497054,0.0,14679.14,0,42,2,3384,201706829,,,,313.0,1.0,0.0,3.0,2.0,3.0,1.6,524.3155914607565,0.0,1328.0,0.0,0.0,19556.0,0,1,3,74.0,4,4.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,2020.9452244364516,0.13767463382980555,0.10334144121683635,12222.5,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6830,2,84.0,2,0.0,2,111,1,0,77,5.0,0.0,0.0,242.26735772260116,53.079658261296686,0.0,16201.4,0,50,8,3385,201706830,,,,,0.0,1.0,2.0,0.0,1.0,1.0,7171.780545854705,0.0,180.0,0.0,0.0,19490.0,0,5,1,49.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,295.34701598389785,0.018229721874893395,0.015153771984807484,19490.0,5,3,5,5_0,5_3,5_0_1 +6831,1,28.0,2,355.0,1,111,2,0,56,3.0,0.0,0.0,969.0694308904046,0.0,1273.9117982711205,21608.11087530163,0,43,2,3386,201706831,,,,495.0,1.0,0.0,3.0,2.0,3.0,1.6,1435.044746142176,0.0,720.0,720.0,0.0,22623.0,0,1,3,50.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,2242.9812291615253,0.10380274527956462,0.0991460561889018,14139.375,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +6832,2,60.0,4,0.0,7,120,5,0,78,3.0,95.18736054833293,277.585263912688,1076.7438121004495,141.54575536345783,0.0,11940.4,0,50,1,3389,201706832,,,100.0,,0.0,2.0,5.0,0.0,1.0,1.0,2827.4182361735143,0.0,800.0,0.0,0.0,14280.0,0,4,1,120.0,0,0.0,1,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1591.0621919249284,0.13325032594594222,0.11141892100314624,14280.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6833,2,84.0,2,0.0,3,112,6,0,78,7.0,0.0,0.0,261.110374434359,0.0,0.0,16773.945846751303,0,50,1,3390,201706833,,,232.0,,0.0,1.0,5.0,0.0,1.0,1.0,2895.171158732676,0.0,194.0,0.0,0.0,25762.0,0,5,1,110.0,6,2.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,261.110374434359,0.015566425265700354,0.010135485382903464,25762.0,7,4,7,7_1,7_1,7_0_1 +6834,2,76.0,3,0.0,2,111,2,54,74,8.0,0.0,0.0,189.28880968256513,0.0,352.7356407057798,25189.541750603257,71,41,1,3391,201706834,,,250.0,,1.0,2.0,4.0,0.0,2.0,1.5,1708.1015382015632,340.0,0.0,0.0,0.0,44820.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,542.0244503883449,0.02151783687670158,0.012093361231332997,29880.0,8,4,8,8_1,8_4,8_0_1 +6835,2,56.0,3,0.0,1,112,5,85,63,2.0,0.0,0.0,592.2090966552472,132.69914565324171,0.0,14044.44,60,50,1,3394,201706835,,,210.0,,1.0,1.0,4.0,0.0,2.0,1.5,2488.199562009192,0.0,440.0,0.0,0.0,17366.0,6,1,1,80.0,9,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,724.908242308489,0.05161531839706595,0.041742959939450014,11577.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +6836,2,44.0,4,0.0,4,120,2,0,85,1.0,0.0,0.0,378.2062640002829,0.0,1273.9117982711205,12735.999999999998,0,71,2,3395,201706836,,,380.0,292.0,0.0,0.0,3.0,1.0,2.0,1.3,2365.279843355941,0.0,281.0,720.0,0.0,8870.0,0,7,4,77.0,0,3.0,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,1652.1180622714032,0.1297203252411592,0.1862590825559643,6823.076923076923,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +6837,2,42.0,3,0.0,4,111,2,42,63,8.0,0.0,0.0,627.9934627115691,0.0,1170.2523609297637,19773.07087530163,41,50,2,3396,201706837,,,,330.0,2.0,0.0,3.0,1.0,3.0,1.8,1800.0545496819923,1128.0,0.0,0.0,0.0,53313.0,1,1,3,62.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1798.2458236413327,0.09094418540154559,0.033729968743858585,29618.333333333332,8,4,8,8_0,8_3,8_0_1 +6838,2,38.0,2,0.0,9,111,2,0,42,5.0,0.0,0.0,2018.894647688343,0.0,0.0,31580.368161188147,0,30,1,3397,201706838,,,466.0,,1.0,0.0,6.0,2.0,3.0,1.6,374.3263885528259,0.0,1500.0,0.0,0.0,33321.0,0,1,2,105.0,7,6.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.06392878757409604,0.06058925745590898,20825.625,5,3,5,5_1,5_2,5_0_0 +6839,1,46.0,4,256.0,3,111,1,0,63,1.0,0.0,0.0,179.26763740525288,0.0,334.0614009037091,6782.4400000000005,0,50,2,3398,201706839,,,250.0,,1.0,3.0,3.0,0.0,1.0,1.0,2588.9167410660652,322.0,0.0,0.0,0.0,9022.0,0,4,3,60.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,513.329038308962,0.07568500986502821,0.05689747709033053,9022.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6840,2,60.0,3,0.0,9,111,1,0,63,6.0,0.0,0.0,631.2410598438886,0.0,0.0,20155.03087530163,0,50,2,3399,201706840,,,,456.0,1.0,3.0,2.0,0.0,1.0,1.0,2065.0971720920143,0.0,469.0,0.0,0.0,21563.0,0,1,3,55.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,631.2410598438886,0.03131928022087149,0.02927426887927879,21563.0,6,3,6,6_0,6_2,6_0_0 +6841,2,43.0,3,0.0,9,400,5,55,65,5.0,0.0,0.0,767.1799661215703,106.15931652259337,0.0,34528.78,30,60,1,34,201706841,,,60.0,,2.0,0.0,5.0,2.0,4.0,2.1,2234.977513829303,0.0,570.0,0.0,0.0,40754.0,1,1,2,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,873.3392826441636,0.0252930825428574,0.021429535325223625,19406.666666666664,5,3,5,5_1,5_0,5_0_0 +6842,2,51.0,1,0.0,1,111,2,0,31,10.0,0.0,0.0,4092.750040102079,0.0,6180.233887951715,230057.23169350263,0,10,2,340,201706842,,,,2548.0,1.0,0.0,5.0,3.0,4.0,2.3,591.4709654977157,4933.830452302941,1000.0,600.0,0.0,164879.0,0,1,3,180.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,10272.983928053793,0.0446540360954188,0.062306199868108085,71686.52173913045,10,5,10,10_0,10_4,10_1_0 +6843,1,49.0,3,58.0,8,111,2,0,52,2.0,0.0,0.0,573.4337469795356,0.0,1068.5814997851564,27172.0,0,30,8,3400,201706843,,,,392.0,1.0,0.0,3.0,2.0,3.0,1.8,862.4743466681522,1030.0,0.0,0.0,0.0,21091.0,0,1,3,70.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1642.0152467646922,0.06043041538218358,0.07785383560593107,11717.222222222223,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6844,2,54.0,4,0.0,4,111,2,0,68,3.0,0.0,0.0,457.61612014269105,0.0,442.3304855108057,7596.228161188145,0,71,2,3401,201706844,,,,269.0,1.0,2.0,2.0,0.0,1.0,1.0,2327.4123198243306,0.0,340.0,250.0,0.0,13890.0,0,1,3,52.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,899.9466056534968,0.11847282448039763,0.06479097232926542,13890.0,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +6845,2,57.0,3,0.0,9,112,4,54,38,8.0,0.0,0.0,2018.894647688343,0.0,0.0,46308.20796650527,50,50,1,3402,201706845,,,650.0,,3.0,0.0,6.0,1.0,3.0,2.0,1635.7495545635497,0.0,1500.0,0.0,0.0,58830.0,1,1,1,140.0,10,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.043596907251271945,0.034317434092951606,29415.0,8,4,8,8_1,8_1,8_0_0 +6846,2,31.0,2,0.0,1,111,6,46,34,4.0,0.0,0.0,807.5578590753372,0.0,0.0,33438.5,0,20,2,3404,201706846,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3462.8700455742805,0.0,600.0,0.0,0.0,25899.0,1,1,3,46.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,807.5578590753372,0.02415054081598568,0.031181044020052402,17266.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +6847,2,42.0,2,0.0,7,112,5,53,43,6.0,0.0,69.396315978172,672.964882562781,0.0,0.0,13847.36,50,43,1,3405,201706847,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.3,2206.1824983222477,0.0,500.0,0.0,0.0,51810.0,1,1,1,100.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,742.361198540953,0.0536103053969098,0.014328531143427001,22526.08695652174,6,3,6,6_1,6_0,6_0_0 +6848,2,79.0,2,0.0,4,111,1,86,77,8.0,0.0,0.0,430.6975248401798,0.0,205.24134527701386,31930.920000000002,71,70,2,3407,201706848,,,,,0.0,3.0,4.0,0.0,2.0,1.5,3485.637050739347,0.0,320.0,116.0,0.0,43294.0,5,5,1,72.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,635.9388701171937,0.019916083536496713,0.014688845339243167,28862.666666666668,8,4,8,8_0,8_4,8_0_1 +6849,2,70.0,1,0.0,1,112,2,71,13,5.0,2062.392811880547,0.0,160.16564204994188,169.8549064361494,0.0,22677.2,50,50,5,3408,201706849,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2258.8108321619297,0.0,119.0,0.0,0.0,32497.0,5,1,1,80.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2392.4133603666387,0.10549862242105015,0.07361951442799762,21664.666666666668,6,3,6,6_1,6_0,6_1_0 +6850,2,28.0,3,0.0,5,400,1,43,68,7.0,0.0,0.0,209.96504335958767,106.15931652259337,0.0,76748.62000000001,44,50,2,3409,201706850,,,,363.0,2.0,0.0,4.0,2.0,4.0,2.1,1044.0740877877838,0.0,156.0,0.0,0.0,52860.0,6,1,3,82.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,316.124359882181,0.004118958228593308,0.005980407867615986,25171.42857142857,7,4,7,7_0,7_1,7_0_0 +6851,2,55.0,4,0.0,1,400,2,46,21,1.0,0.0,0.0,3364.824412813905,339.7098128722988,0.0,45360.1,31,20,1,3410,201706851,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.1,2009.0568719052324,0.0,2500.0,0.0,0.0,15509.0,1,1,1,130.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3704.5342256862036,0.08166944573945392,0.23886351316565888,7385.2380952380945,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6852,2,55.0,2,0.0,1,111,4,0,23,7.0,0.0,416.377895869032,1218.0664374386336,0.0,0.0,33906.90031599412,0,30,1,3412,201706852,,,222.0,,1.0,2.0,6.0,0.0,1.0,1.0,3031.1266068450245,0.0,905.0,0.0,0.0,24403.0,0,1,1,120.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1634.4443333076656,0.04820388528811308,0.06697718859597859,24403.0,7,4,7,7_1,7_4,7_1_0 +6853,1,32.0,3,320.0,99,111,2,85,62,1.0,0.0,0.0,1345.929765125562,0.0,0.0,13059.289006883433,71,41,2,3413,201706853,,,,10.0,1.0,0.0,3.0,3.0,5.0,2.4,1610.5848590159985,0.0,1000.0,0.0,0.0,18580.0,6,4,3,70.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1345.929765125562,0.1030630200783622,0.07243970748792045,7741.666666666667,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +6854,2,37.0,2,0.0,6,112,2,54,46,8.0,2149.6478923831855,0.0,1169.6129658941134,0.0,0.0,66372.84660842016,31,30,1,3414,201706854,,,323.0,,2.0,0.0,7.0,2.0,4.0,2.1,2868.4552069580113,0.0,869.0,0.0,0.0,58126.0,1,1,1,130.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3319.260858277299,0.05000931898943464,0.05710458070875855,27679.04761904762,8,4,8,8_1,8_0,8_0_0 +6855,2,72.0,1,0.0,5,111,2,75,74,10.0,317.29120182777643,0.0,2911.2787286404587,0.0,860.3430041558803,84947.29774272366,41,12,1,3415,201706855,,,640.0,,0.0,3.0,9.0,0.0,2.0,1.5,1626.8974232099524,829.2800263327805,1820.0,0.0,0.0,73825.0,5,5,1,250.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4088.9129346241157,0.04813470284844182,0.055386561931921645,49216.666666666664,10,5,10,10_1,10_3,10_0_0 +6856,1,35.0,2,437.0,2,111,2,0,55,2.0,0.0,0.0,282.645250676368,0.0,1656.0853377524566,21085.269322168428,0,71,1,3416,201706856,,,240.0,40.0,1.0,0.0,5.0,2.0,3.0,2.0,757.2211875227398,0.0,210.0,936.0,0.0,21660.0,0,1,3,71.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1938.7305884288246,0.09194715793316904,0.08950741405488571,10830.0,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +6857,2,68.0,3,0.0,1,112,2,72,72,4.0,0.0,208.188947934516,1597.618631204042,106.15931652259337,0.0,25750.850875301632,71,50,1,3417,201706857,,,193.0,,0.0,1.0,5.0,0.0,2.0,1.5,1943.291317097717,0.0,1187.0,0.0,0.0,25337.0,5,5,1,150.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1911.9668956611513,0.07424868812762116,0.07546145540755225,16891.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6858,2,60.0,3,0.0,7,111,2,0,,1.0,0.0,0.0,407.8167188330453,0.0,1741.0127909705313,23068.999999999996,0,41,1,3418,201706858,,,214.0,,0.0,2.0,6.0,0.0,1.0,1.0,1887.0284608662514,0.0,303.0,984.0,0.0,14380.0,0,8,1,102.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2148.8295098035765,0.09314792621282139,0.1494318157026131,14380.0,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +6859,2,73.0,3,0.0,5,111,1,0,77,6.0,0.0,0.0,780.639263772826,0.0,265.39829130648343,15154.960315994116,0,60,2,3421,201706859,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2504.0544196725277,0.0,580.0,150.0,0.0,21554.0,0,5,1,90.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1046.0375550793094,0.0690227841755119,0.04853101768021292,21554.0,6,3,6,6_0,6_2,6_0_0 +6860,2,73.0,3,0.0,4,111,2,0,77,6.0,0.0,0.0,572.0201501783638,0.0,1486.2304313163072,14341.447538214861,0,70,1,3422,201706860,,,180.0,,0.0,1.0,5.0,0.0,1.0,1.0,1281.1761492590788,0.0,425.0,840.0,0.0,21148.0,0,5,1,80.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2058.2505814946708,0.14351763139740004,0.09732601576956075,21148.0,5,3,5,5_1,5_2,5_0_1 +6861,1,82.0,5,167.0,99,211,6,0,86,2.0,0.0,0.0,1113.0839157588398,0.0,0.0,7074.580508190074,0,70,2,3423,201706861,,,,180.0,0.0,1.0,2.0,0.0,1.0,1.0,3355.4615620843338,0.0,827.0,0.0,0.0,12534.0,0,6,3,56.0,1,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1113.0839157588398,0.1573356772843632,0.0888051632167576,12534.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +6862,2,79.0,2,0.0,7,400,2,0,75,9.0,1110.5192063972174,0.0,565.290501352736,159.23897478389006,0.0,28139.86,0,70,1,3424,201706862,,,180.0,,0.0,1.0,5.0,0.0,1.0,1.0,2161.2948069524828,0.0,420.0,0.0,0.0,31210.0,0,5,1,115.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1835.0486825338435,0.0652117204042182,0.05879681776782581,31210.0,8,4,8,8_1,8_0,8_0_0 +6863,2,73.0,2,0.0,2,111,1,77,74,10.0,0.0,0.0,1228.9373727752056,0.0,1131.3510504649826,49021.347531681626,60,12,2,3426,201706863,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1929.7576181237646,1090.5032346276064,462.0,0.0,0.0,72153.0,5,5,1,165.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2360.2884232401884,0.048148175072396285,0.03271227008218908,48102.0,10,5,10,10_0,10_3,10_0_1 +6864,2,50.0,3,0.0,7,300,2,52,69,6.0,0.0,693.9631597817199,1130.581002705472,1415.4575536345783,0.0,34966.56,50,50,1,3427,201706864,,,680.0,,2.0,1.0,6.0,2.0,4.0,2.5,1675.4805909872393,0.0,840.0,0.0,0.0,57375.0,1,1,1,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3240.00171612177,0.09266000762219019,0.056470618145913205,22950.0,6,3,6,6_1,6_0,6_0_0 +6865,2,51.0,5,0.0,1,112,1,72,64,4.0,0.0,0.0,2134.316286716327,441.62275673398847,215.08575103897007,15138.143397963524,41,71,1,3429,201706865,,,1200.0,,3.0,1.0,4.0,2.0,4.0,2.5,2188.512803925541,207.32000658319512,1500.0,0.0,0.0,43430.0,7,1,1,150.0,8,0.0,4,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2791.0247944892853,0.18437034985840808,0.06426490431704548,17372.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6866,1,66.0,2,106.0,1,300,2,0,72,4.0,1903.7472109666587,0.0,740.261370819059,247.7050718860512,0.0,21958.26,0,44,1,3431,201706866,,,,,0.0,1.0,5.0,0.0,1.0,1.0,1702.3175203920973,0.0,550.0,0.0,0.0,16562.0,0,5,3,120.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2891.713653671769,0.1316913841839822,0.17459930284215486,16562.0,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +6867,2,34.0,4,0.0,1,221,2,43,47,8.0,0.0,693.9631597817199,1475.1390225776158,0.0,0.0,40768.6316935026,30,31,1,3432,201706867,,,370.0,,2.0,0.0,6.0,2.0,4.0,2.1,2944.5183319618413,0.0,1096.0,0.0,0.0,60125.0,1,1,2,110.0,1,1.0,4,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2169.1021823593355,0.053205174965561354,0.03607654357354404,28630.952380952378,8,4,8,8_1,8_1,8_1_0 +6868,2,36.0,2,0.0,3,111,1,0,63,4.0,0.0,0.0,403.7789295376686,0.0,0.0,19519.54,0,30,2,3433,201706868,,,240.0,259.0,1.0,0.0,3.0,1.0,2.0,1.3,3361.6123632033878,0.0,300.0,0.0,0.0,22400.0,0,1,3,80.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,403.7789295376686,0.020685883455125918,0.01802584506864592,17230.76923076923,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +6869,2,61.0,1,0.0,6,111,2,56,78,6.0,0.0,0.0,775.2555447123236,0.0,2176.265988713164,46909.76000000001,50,50,1,3434,201706869,,,704.0,,1.0,3.0,6.0,0.0,2.0,1.5,1844.5635563010726,0.0,576.0,1230.0,0.0,36372.0,1,5,1,150.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2951.5215334254876,0.06291913523807172,0.08114817808824061,24248.0,7,4,7,7_1,7_2,7_0_0 +6870,2,59.0,1,0.0,2,111,2,0,43,10.0,0.0,416.377895869032,646.0462872602698,0.0,884.6609710216114,26668.1901582034,0,33,1,344,201706870,,,350.0,,1.0,3.0,7.0,0.0,1.0,1.0,1341.1816372150745,0.0,480.0,500.0,0.0,38492.0,0,1,1,210.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1947.0851541509132,0.07301152206431116,0.05058415136004659,38492.0,9,5,9,9_1,9_2,9_0_1 +6871,2,29.0,2,0.0,99,300,2,52,21,2.0,0.0,0.0,0.0,159.23897478389006,0.0,32222.700315994112,60,50,7,3440,201706871,,,,,2.0,0.0,3.0,1.0,3.0,1.8,501.3072572572258,0.0,0.0,0.0,0.0,19821.0,1,1,1,25.0,0,0.0,4,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,159.23897478389006,0.0049418258936185415,0.008033851712017056,11011.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6872,2,49.0,3,0.0,1,111,2,0,54,4.0,0.0,0.0,695.9147414800188,0.0,1296.8222084771319,47238.520000000004,0,31,1,3441,201706872,,,360.0,,1.0,0.0,5.0,3.0,4.0,2.5,665.7868841620923,1250.0,0.0,0.0,0.0,40659.0,0,1,1,120.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1992.7369499571507,0.042184576272862706,0.04901096805030007,16263.6,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +6873,2,44.0,2,0.0,99,111,2,37,37,10.0,0.0,0.0,1323.0489591184273,0.0,0.0,47098.957038047054,20,10,1,3442,201706873,,,,,2.0,0.0,4.0,3.0,5.0,2.4,2269.3971904216846,0.0,983.0,0.0,0.0,115470.0,1,1,1,112.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1323.0489591184273,0.02809083347747284,0.011457945432739477,48112.5,10,5,10,10_1,10_4,10_0_0 +6874,2,86.0,1,0.0,4,111,3,0,86,9.0,0.0,0.0,3442.672147994901,0.0,1557.134234934733,33817.17370733961,0,70,2,3443,201706874,857.0,857.0,,,0.0,6.0,4.0,0.0,1.0,1.0,2126.22489894639,1500.9133718909009,1937.0,0.0,0.0,35512.0,0,5,5,110.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,4999.806382929634,0.14784814444278904,0.140792024750215,35512.0,9,5,9,9_0,9_2,9_0_1 +6875,0,66.0,2,0.0,5,300,2,0,78,1.0,1586.456009138882,0.0,1749.7086946632305,102.62067263850693,0.0,20075.480000000003,0,50,1,3444,201706875,,,,,0.0,0.0,6.0,0.0,1.0,1.0,2146.5665248080245,0.0,1300.0,0.0,0.0,27830.0,0,5,5,110.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3438.78537644062,0.17129280975800426,0.12356397328209198,27830.0,8,4,8,8_1,8_0,8_0_0 +6876,1,46.0,4,176.0,1,111,1,0,45,3.0,0.0,0.0,1628.57501580193,0.0,849.274532180747,38291.327849749774,0,42,2,3445,201706876,,,,110.0,1.0,0.0,3.0,3.0,4.0,2.3,707.5893546566577,0.0,1210.0,480.0,0.0,32882.0,0,1,3,51.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,2477.849547982677,0.06471046284175463,0.07535580402599225,14296.521739130436,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +6877,2,59.0,3,0.0,6,111,2,77,75,3.0,0.0,0.0,794.0985614240816,0.0,1723.319571550099,34436.04,50,50,1,3446,201706877,,,505.0,,0.0,3.0,4.0,0.0,2.0,1.5,2297.102102136688,0.0,590.0,974.0,0.0,20918.0,6,5,1,110.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2517.4181329741805,0.07310417031035452,0.12034698025500433,13945.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +6878,2,45.0,2,0.0,7,112,2,0,37,6.0,0.0,0.0,1036.3659191466827,0.0,1712.7036398978398,40601.70051346417,0,31,1,3447,201706878,,,,,1.0,0.0,6.0,3.0,4.0,2.1,653.2600043879527,0.0,770.0,968.0,0.0,45030.0,0,1,2,140.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2749.0695590445225,0.06770823695260958,0.06104973482221902,21442.85714285714,6,3,6,6_1,6_2,6_0_0 +6879,1,30.0,4,196.0,1,111,4,0,56,2.0,0.0,0.0,0.0,0.0,0.0,14618.220000000001,0,30,2,3449,201706879,,,,430.0,1.0,0.0,1.0,0.0,1.0,1.0,6608.7839198687025,0.0,0.0,0.0,0.0,11092.0,0,4,3,30.0,9,7.0,1,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0.0,0.0,0.0,11092.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +6880,2,45.0,2,0.0,8,120,2,67,54,8.0,1971.9648193596306,0.0,1345.929765125562,0.0,0.0,68172.08,43,50,1,345,201706880,,,400.0,,3.0,0.0,6.0,2.0,4.0,2.5,1953.1038431108013,0.0,1000.0,0.0,0.0,76044.0,4,1,2,180.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3317.8945844851924,0.048669405194695425,0.043631247494676666,30417.6,8,4,8,8_1,8_0,8_0_0 +6881,2,54.0,1,0.0,5,112,2,22,37,8.0,0.0,0.0,4039.9610328594813,0.0,9170.410963343986,41712.4619548697,42,60,1,3451,201706881,,,320.0,,2.0,1.0,5.0,1.0,3.0,2.0,1459.7133491903653,4234.622228002154,1250.0,2700.0,0.0,75340.0,1,1,1,180.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,13210.371996203467,0.31670084615231464,0.17534340318825944,37670.0,9,5,9,9_1,9_0,9_0_0 +6882,2,66.0,2,0.0,4,221,2,78,77,5.0,0.0,0.0,767.1799661215703,0.0,1574.6965284184685,26498.4,70,60,1,3454,201706882,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,1747.867944170862,0.0,570.0,890.0,0.0,30303.0,5,5,1,92.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2341.876494540039,0.08837803393940913,0.07728200160182289,20202.0,5,3,5,5_1,5_1,5_0_1 +6883,2,35.0,3,0.0,99,120,6,67,69,4.0,793.228004569441,0.0,1324.394888883553,247.7050718860512,0.0,22010.96,71,71,2,3457,201706883,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3122.9824497846826,0.0,984.0,0.0,0.0,27072.0,4,1,3,60.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,2365.3279653390455,0.10746137221361747,0.0873717481286586,18048.0,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +6884,2,69.0,2,0.0,4,111,1,0,78,5.0,0.0,0.0,524.9126083989692,0.0,743.1152156581536,25254.72,0,50,2,3458,201706884,,,,280.0,0.0,2.0,3.0,0.0,1.0,1.0,2475.502666762156,0.0,390.0,420.0,0.0,18940.0,0,5,3,62.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1268.0278240571229,0.050209538021293555,0.06694972671896109,18940.0,5,3,5,5_0,5_2,5_0_1 +6885,2,27.0,3,0.0,1,300,5,52,63,7.0,0.0,138.792631956344,834.4764543778484,0.0,0.0,64500.038521417344,60,60,1,3459,201706885,,,285.0,,2.0,0.0,5.0,2.0,4.0,2.1,2838.3186201527674,0.0,620.0,0.0,0.0,50434.0,1,1,2,120.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,973.2690863341925,0.015089434187097685,0.01929787616160115,24016.190476190473,7,4,7,7_1,7_0,7_1_0 +6886,1,41.0,4,115.0,1,111,2,56,48,2.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,20335.573696501073,44,41,2,346,201706886,,,50.0,447.0,2.0,0.0,3.0,4.0,6.0,2.7,2215.0858149045243,1800.0,0.0,0.0,0.0,31530.0,1,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,2869.541207938297,0.14110942974930815,0.09100987021688223,11677.777777777777,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +6887,2,28.0,4,0.0,9,111,2,47,46,10.0,0.0,0.0,621.8195514880097,0.0,1020.8987605589397,33801.92,31,31,2,3460,201706887,,,385.0,334.0,2.0,0.0,2.0,0.0,2.0,1.5,3427.046235365418,0.0,462.0,577.0,0.0,62450.0,1,1,3,43.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1642.7183120469494,0.048598372874882535,0.02630453662204883,41633.333333333336,10,5,10,10_0,10_4,10_0_0 +6888,1,35.0,3,161.0,7,300,6,85,43,3.0,0.0,0.0,1184.4181933104944,0.0,0.0,27519.36,41,44,1,3461,201706888,,,,409.0,1.0,0.0,5.0,2.0,4.0,2.1,933.7226201237187,0.0,880.0,0.0,0.0,31013.0,6,1,3,91.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1184.4181933104944,0.04303945270931062,0.038191022903637004,14768.095238095237,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +6889,1,66.0,4,328.0,99,120,2,86,77,4.0,0.0,0.0,63.25869896090141,0.0,1415.4575536345783,17794.991191295747,71,71,2,3462,201706889,,,,92.0,0.0,6.0,3.0,0.0,2.0,1.5,1544.225578788585,0.0,47.0,800.0,0.0,25896.0,7,5,3,60.0,0,3.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1478.7162525954798,0.0830973298440732,0.057102110464762115,17264.0,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +6890,2,66.0,3,0.0,6,111,6,0,75,8.0,0.0,0.0,1001.3717452534181,212.31863304518674,0.0,25370.12,0,50,1,3464,201706890,,,336.0,,0.0,3.0,5.0,0.0,1.0,1.0,1570.1302942548284,0.0,744.0,0.0,0.0,30216.0,0,6,1,90.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1213.6903782986049,0.047839362931614234,0.04016714251716325,30216.0,8,4,8,8_1,8_3,8_0_0 +6891,2,48.0,4,0.0,2,111,2,0,52,7.0,0.0,0.0,36.18756655696099,0.0,67.43475484081084,29023.48,0,42,2,3465,201706891,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2694.7785984673133,65.0,0.0,0.0,0.0,24933.0,0,1,3,26.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,103.62232139777183,0.003570292790450071,0.004156031019041905,24933.0,7,4,7,7_0,7_4,7_0_1 +6892,2,60.0,2,0.0,6,111,2,77,78,2.0,0.0,0.0,2409.214279574756,0.0,123.8525359430256,24124.96115202909,70,70,1,3466,201706892,,,221.0,,0.0,2.0,6.0,0.0,2.0,1.5,2623.5309660952626,0.0,1790.0,70.0,0.0,19360.0,4,5,1,124.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2533.0668155177814,0.10499775728363117,0.13084022807426557,12906.666666666666,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +6893,2,78.0,2,0.0,5,111,2,75,75,10.0,0.0,0.0,1724.136029125845,61.9262679715128,0.0,25013.68,44,41,1,3468,201706893,,,312.0,,0.0,2.0,5.0,0.0,2.0,1.5,1505.1048825909033,0.0,1281.0,0.0,0.0,61564.0,5,5,1,125.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1786.0622970973577,0.07140341993250723,0.029011472566716875,41042.666666666664,10,5,10,10_1,10_2,10_0_0 +6894,2,84.0,2,0.0,1,111,2,0,72,4.0,0.0,0.0,952.9182737088979,0.0,2600.9032548035375,17691.776658454026,0,71,1,3469,201706894,,,300.0,,0.0,1.0,4.0,0.0,1.0,1.0,2250.479460953019,0.0,708.0,1470.0,0.0,18906.0,0,5,5,84.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3553.821528512435,0.20087420258124497,0.18797321107121734,18906.0,5,3,5,5_1,5_3,5_1_0 +6895,2,74.0,4,0.0,5,112,5,72,75,3.0,0.0,1040.94473967258,2018.894647688343,318.4779495677801,0.0,28431.72,71,50,1,347,201706895,,,576.0,,0.0,2.0,3.0,0.0,2.0,1.5,2461.217658146543,0.0,1500.0,0.0,0.0,20160.0,5,5,1,90.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3378.3173369287033,0.11882212321057971,0.16757526472860632,13440.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6896,2,82.0,3,0.0,1,400,2,0,77,5.0,2490.7359343480452,0.0,475.1132070893234,0.0,0.0,14963.3,0,60,1,3470,201706896,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2883.4783754834984,0.0,353.0,0.0,0.0,19109.0,0,5,5,120.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2965.8491414373684,0.19820822555434753,0.15520692560769106,19109.0,5,3,5,5_1,5_0,5_1_0 +6897,2,53.0,3,0.0,1,111,1,0,45,8.0,0.0,0.0,983.2506634350256,0.0,1290.5145062338204,36232.65748938714,0,60,2,3471,201706897,,,,700.0,1.0,1.0,3.0,0.0,1.0,1.0,3177.715951679025,1243.9200394991708,216.0,0.0,0.0,31382.0,0,1,3,72.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2273.765169668846,0.0627545790792423,0.07245443788378197,31382.0,8,4,8,8_0,8_4,8_1_0 +6898,2,56.0,2,0.0,1,111,4,78,56,3.0,0.0,0.0,2732.2374232048905,0.0,0.0,26100.68,71,71,1,3472,201706898,,,320.0,,1.0,4.0,4.0,0.0,2.0,1.5,2947.455449410001,0.0,2030.0,0.0,0.0,23885.0,5,4,1,80.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2732.2374232048905,0.1046806988632055,0.11439135119132889,15923.333333333334,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +6899,2,60.0,1,0.0,9,300,2,31,31,10.0,0.0,0.0,1265.1739792180283,53.079658261296686,0.0,48149.35434383641,10,10,1,3473,201706899,,,500.0,,2.0,6.0,9.0,0.0,2.0,1.5,2137.429784359344,0.0,940.0,0.0,0.0,94180.0,1,1,1,399.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1318.2536374793249,0.027378428131468277,0.01399717177191893,62786.666666666664,10,5,10,10_1,10_0,10_0_0 +6900,1,21.0,3,175.0,1,111,4,0,84,1.0,0.0,0.0,545.1015548758526,0.0,0.0,20758.580315994117,0,41,2,3478,201706900,,,,195.0,0.0,0.0,1.0,0.0,1.0,1.0,2636.6551446139583,0.0,405.0,0.0,0.0,6300.0,0,3,3,21.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,545.1015548758526,0.026259096073918964,0.08652405632950042,6300.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +6901,1,72.0,4,20.0,9,111,1,86,78,2.0,0.0,0.0,551.8312037014804,0.0,1486.2304313163072,19653.98,71,71,2,3479,201706901,,,400.0,342.0,0.0,3.0,3.0,0.0,2.0,1.5,2321.6501489937664,0.0,410.0,840.0,0.0,18951.0,6,5,3,60.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2038.0616350177875,0.10369714607513529,0.10754375151800895,12634.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6902,2,75.0,3,0.0,3,111,1,0,74,5.0,0.0,0.0,471.07541779394666,0.0,283.09151072691566,13430.4,0,70,2,348,201706902,,,,269.0,0.0,0.0,2.0,0.0,1.0,1.0,4227.94348636327,0.0,350.0,160.0,0.0,20292.0,0,5,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,754.1669285208623,0.05615372055343566,0.03716572681455067,20292.0,5,3,5,5_0,5_4,5_0_1 +6903,2,43.0,3,0.0,9,112,6,84,53,5.0,0.0,0.0,2166.946921852155,0.0,0.0,61859.66,50,41,1,3480,201706903,,,528.0,,1.0,0.0,5.0,3.0,5.0,2.8,2653.7277042266637,0.0,1610.0,0.0,0.0,52146.0,3,1,2,100.0,3,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2166.946921852155,0.03503004901501487,0.04155538146458319,18623.57142857143,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6904,2,66.0,2,0.0,5,111,2,77,74,7.0,0.0,0.0,762.7225566621007,0.0,1421.3171404909363,49006.439999999995,50,50,1,3481,201706904,,,600.0,,0.0,4.0,5.0,0.0,2.0,1.5,2157.334224027768,1370.0,0.0,0.0,0.0,37999.0,5,5,1,110.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2184.039697153037,0.04456638142156495,0.0574762414051169,25332.666666666668,7,4,7,7_1,7_3,7_0_0 +6905,2,37.0,4,0.0,5,111,2,43,52,7.0,0.0,0.0,619.1276919577585,0.0,3060.9269597347757,42372.78,41,31,1,3483,201706905,,,360.0,,2.0,0.0,4.0,2.0,4.0,2.1,1726.3725262875862,0.0,460.0,1730.0,0.0,45670.0,1,1,2,96.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3680.054651692534,0.08684949752394189,0.0805792566606642,21747.619047619046,6,3,6,6_1,6_3,6_0_0 +6906,2,37.0,1,0.0,9,111,4,33,31,10.0,0.0,624.566843803548,3055.2605668350257,53.079658261296686,0.0,220142.28285714283,20,10,1,3485,201706906,,,775.0,,2.0,0.0,6.0,2.0,4.0,2.1,2680.286773429804,0.0,2270.0,0.0,0.0,174769.0,1,1,2,200.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3732.90706889987,0.01695679276353407,0.021359091537400055,83223.33333333333,10,5,10,10_1,10_3,10_0_0 +6907,2,53.0,3,0.0,5,221,4,68,63,8.0,0.0,0.0,1921.9877045993026,0.0,0.0,25798.804177580947,50,50,1,3486,201706907,,,482.0,,3.0,0.0,4.0,1.0,3.0,2.0,2453.246473808563,0.0,1428.0,0.0,0.0,50732.0,1,1,2,85.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1921.9877045993026,0.07449910047650588,0.03788511599383629,25366.0,7,4,7,7_1,7_1,7_0_0 +6908,2,32.0,2,0.0,1,111,4,0,46,9.0,0.0,0.0,1111.769938141048,0.0,416.4060140114461,36683.39955422956,0,0,2,3488,201706908,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3108.464508356501,401.3715327450658,660.0,0.0,0.0,38540.0,0,1,1,34.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1528.1759521524941,0.04165851504284305,0.039651685317916296,38540.0,9,5,9,9_0,9_4,9_1_0 +6909,2,66.0,2,0.0,7,111,4,77,74,7.0,0.0,0.0,1067.3223037445707,0.0,0.0,34049.731827373755,70,30,1,349,201706909,,,196.0,,0.0,2.0,4.0,0.0,2.0,1.5,1664.6945239103723,0.0,793.0,0.0,0.0,39146.0,5,5,1,84.0,6,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1067.3223037445707,0.0313459826689887,0.027265168950711967,26097.333333333332,7,4,7,7_1,7_2,7_0_0 +6910,2,66.0,3,0.0,5,111,2,0,75,6.0,0.0,0.0,930.8054787453706,0.0,3208.3422723930103,42112.34427261086,0,42,1,3490,201706910,,,150.0,,0.0,2.0,6.0,0.0,1.0,1.0,1590.2200153507888,704.8880223828635,400.0,1400.0,0.0,24328.0,0,5,1,110.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4139.147751138381,0.0982882293216436,0.17013925317076542,24328.0,7,4,7,7_1,7_3,7_0_0 +6911,2,65.0,3,0.0,9,221,2,77,78,6.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,34405.388671156004,44,70,1,3492,201706911,,,380.0,,0.0,3.0,4.0,0.0,2.0,1.5,1709.451935225129,1440.0,0.0,0.0,0.0,30352.0,5,5,2,97.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2295.6329663506376,0.06672306446795637,0.07563366388872686,20234.666666666668,5,3,5,5_1,5_1,5_0_0 +6912,2,39.0,3,0.0,99,221,2,0,85,3.0,0.0,0.0,592.2090966552472,0.0,2140.8795498723,25200.88,0,30,2,3493,201706912,,,280.0,,0.0,0.0,3.0,1.0,2.0,1.3,2309.612367025271,0.0,440.0,1210.0,0.0,18828.0,0,4,3,65.0,1,2.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,2733.088646527547,0.10845211145513756,0.14516085864284825,14483.076923076922,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +6913,2,48.0,5,0.0,6,112,4,85,53,4.0,0.0,0.0,2236.935269638684,162.7776186679765,0.0,46222.34,41,30,1,3494,201706913,,,636.0,,1.0,1.0,6.0,2.0,4.0,2.3,2066.8728685930982,0.0,1662.0,0.0,0.0,40420.0,4,1,2,120.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2399.7128883066607,0.05191673308418961,0.0593694430555829,17573.913043478264,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6914,0,46.0,3,0.0,4,111,1,0,63,3.0,0.0,0.0,1184.4181933104944,122.08321400098238,0.0,26400.530024332238,0,50,3,3495,201706914,,,,,2.0,1.0,4.0,1.0,2.0,1.5,2363.5364060836946,0.0,880.0,0.0,0.0,21143.0,0,1,5,80.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1306.501407311477,0.04948769612228734,0.06179356795684041,14095.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6915,1,32.0,2,141.0,1,111,4,54,55,4.0,0.0,0.0,740.261370819059,0.0,0.0,25174.27987708049,41,31,2,3497,201706915,,,,563.0,2.0,0.0,2.0,0.0,2.0,1.5,3895.9292141906685,0.0,550.0,0.0,0.0,26777.0,1,1,3,45.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,740.261370819059,0.029405463609428518,0.027645418486725887,17851.333333333332,4,2,4_1,4_0_1,4_2_1,4_1_0_1 +6916,2,53.0,2,0.0,1,111,5,31,34,5.0,0.0,416.377895869032,323.0231436301349,0.0,0.0,45571.4451356363,12,30,1,3498,201706916,,,,,2.0,0.0,7.0,3.0,5.0,2.8,1916.8906180742326,0.0,240.0,0.0,0.0,56978.0,1,1,2,160.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,739.4010394991669,0.01622509528276874,0.01297695671134766,20349.285714285714,5,3,5,5_1,5_3,5_1_0 +6917,2,71.0,2,0.0,5,112,2,34,75,10.0,0.0,0.0,2946.240255859855,0.0,0.0,36897.87434383641,10,71,1,3499,201706917,,,320.0,,1.0,4.0,5.0,0.0,2.0,1.5,1899.5220035485343,0.0,2189.0,0.0,0.0,64688.0,5,5,1,120.0,9,2.0,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2946.240255859855,0.07984850911478071,0.04554539104408631,43125.333333333336,10,5,10,10_1,10_1,10_0_0 +6918,1,58.0,4,301.0,99,111,1,85,78,2.0,0.0,0.0,1615.1157181506744,0.0,0.0,22105.951507289865,71,71,2,35,201706918,,,,128.0,1.0,2.0,4.0,2.0,4.0,2.5,5446.835168305039,0.0,1200.0,0.0,0.0,27885.0,7,7,3,75.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1615.1157181506744,0.07306248354060031,0.05792059236688809,11154.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +6920,2,91.0,3,0.0,2,400,2,0,77,3.0,1983.0700114236026,0.0,667.5811635022787,106.15931652259337,0.0,19496.12,0,70,1,3501,201706920,,,230.0,,0.0,1.0,4.0,0.0,1.0,1.0,2892.2830541940903,0.0,496.0,0.0,0.0,15261.0,0,5,1,70.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2756.8104914484747,0.14140303257512135,0.18064415775168566,15261.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +6921,1,32.0,3,428.0,9,112,6,0,56,2.0,0.0,0.0,2557.266553738568,84.9274532180747,0.0,37909.299999999996,0,50,1,3502,201706921,,,,,1.0,0.0,4.0,3.0,4.0,1.9,478.5269490799923,0.0,1900.0,0.0,0.0,23788.0,0,1,3,130.0,9,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2642.1940069566426,0.06969777882885315,0.11107255788450658,12520.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +6922,2,50.0,4,0.0,6,112,1,0,56,3.0,0.0,0.0,436.08124390068207,0.0,0.0,19587.293257893118,0,71,2,3504,201706922,,,,422.0,2.0,1.0,3.0,4.0,5.0,2.6,664.0475415183507,0.0,324.0,0.0,0.0,38700.0,0,1,3,65.0,10,5.0,2,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,436.08124390068207,0.022263476538543877,0.011268249196400053,14884.615384615385,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +6923,2,37.0,2,0.0,9,111,5,0,43,9.0,0.0,693.9631597817199,1076.7438121004495,0.0,0.0,22307.28,0,10,1,3505,201706923,,,80.0,,1.0,0.0,6.0,0.0,1.0,1.0,2036.566012917539,0.0,800.0,0.0,0.0,35397.0,0,1,2,115.0,4,3.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1770.7069718821695,0.07937798655336596,0.05002421029697911,35397.0,9,5,9,9_1,9_1,9_0_0 +6924,2,65.0,2,0.0,6,111,2,0,74,9.0,0.0,69.396315978172,942.1508355878933,0.0,0.0,32962.47672205293,0,30,1,3506,201706924,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2328.7031439358116,0.0,700.0,0.0,0.0,33057.0,0,5,1,70.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1011.5471515660653,0.030687838177199483,0.03060008928717262,33057.0,9,5,9,9_1,9_3,9_0_0 +6925,2,53.0,5,0.0,99,112,2,52,53,3.0,0.0,0.0,830.0871036373665,0.0,1546.8495302715226,25139.091191295745,31,50,1,3507,201706925,,,400.0,,2.0,0.0,4.0,1.0,3.0,2.0,1602.436279858804,1491.0,0.0,0.0,0.0,29468.0,1,1,2,80.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2376.9366339088892,0.09455141460053611,0.08066162053444038,14734.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6926,2,43.0,4,0.0,9,221,2,64,42,6.0,0.0,0.0,1172.3048254243645,0.0,2038.2588772337929,54943.10031599412,43,30,1,3508,201706926,,,,,2.0,0.0,8.0,2.0,4.0,2.1,1782.6574343478349,0.0,871.0,1152.0,0.0,48959.0,1,1,2,180.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3210.563702658157,0.05843433814606839,0.06557657841577967,23313.809523809523,6,3,6,6_1,6_1,6_0_0 +6927,2,70.0,3,0.0,4,112,5,77,75,9.0,0.0,555.170527825376,942.1508355878933,0.0,0.0,20404.539999999997,41,50,1,3509,201706927,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,1819.0083201042278,0.0,700.0,0.0,0.0,45370.0,5,5,1,100.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1497.3213634132694,0.07338177500758505,0.033002454560574594,30246.666666666668,8,4,8,8_1,8_0,8_0_1 +6928,2,36.0,4,0.0,4,111,2,46,55,1.0,0.0,0.0,1682.4122064069525,0.0,0.0,25775.2,31,31,2,351,201706928,,,,370.0,2.0,0.0,1.0,0.0,2.0,1.5,2267.89845270453,0.0,1250.0,0.0,0.0,15183.0,4,4,3,38.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1682.4122064069525,0.06527251801758871,0.11080894463590545,10122.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +6929,2,82.0,3,0.0,4,111,2,0,,4.0,0.0,0.0,286.6830399717447,0.0,606.8774261208255,12460.240000000002,0,70,2,3510,201706929,,,119.0,425.0,0.0,4.0,4.0,0.0,1.0,1.0,2125.3065545529353,0.0,213.0,343.0,0.0,16010.0,0,8,3,75.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,893.5604660925701,0.07171294181272352,0.055812646226893824,16010.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6930,1,25.0,3,91.0,1,111,2,0,84,1.0,0.0,0.0,40.37789295376686,0.0,53.079658261296686,18111.46,0,30,2,3511,201706930,,,,269.0,0.0,0.0,3.0,0.0,1.0,1.0,4764.291872104108,0.0,30.0,30.0,0.0,10542.0,0,3,3,65.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,93.45755121506355,0.005160133485376858,0.008865258130816121,10542.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +6931,1,63.0,5,256.0,9,211,4,0,75,1.0,0.0,0.0,1076.7438121004495,0.0,0.0,7056.7,0,60,1,3512,201706931,,,31.0,,0.0,0.0,2.0,0.0,1.0,1.0,2827.134828413974,0.0,800.0,0.0,0.0,9492.0,0,4,3,48.0,2,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1076.7438121004495,0.15258460925084666,0.1134369797830225,9492.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +6932,2,35.0,3,0.0,8,211,5,0,22,4.0,0.0,0.0,1195.185631431499,0.0,0.0,21902.7,0,31,1,3513,201706932,,,90.0,,1.0,0.0,3.0,1.0,2.0,1.3,1068.711654366532,0.0,888.0,0.0,0.0,21458.0,0,1,1,70.0,1,3.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1195.185631431499,0.05456795881016947,0.05569883639814982,16506.153846153844,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6933,1,39.0,4,347.0,99,211,1,85,85,2.0,0.0,0.0,436.08124390068207,0.0,728.9606401218078,5640.320315994116,41,71,2,3514,201706933,,,744.0,,0.0,0.0,4.0,3.0,5.0,2.4,2201.0854174248857,0.0,324.0,412.0,0.0,28534.0,6,7,3,80.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1165.04188402249,0.20655597887212357,0.04082995317945223,11889.166666666668,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +6934,2,69.0,2,0.0,1,120,2,72,71,4.0,3172.912018277764,0.0,1076.7438121004495,0.0,0.0,18983.800000000003,50,50,1,3515,201706934,,,,,0.0,4.0,5.0,0.0,2.0,1.5,1474.5939526381528,0.0,800.0,0.0,0.0,31180.0,5,5,1,120.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4249.655830378214,0.22385696385224313,0.13629428577223265,20786.666666666668,5,3,5,5_1,5_0,5_1_0 +6935,2,55.0,2,0.0,99,112,4,64,75,10.0,0.0,124.91336876070959,107.67438121004496,0.0,0.0,32894.2,50,60,1,3517,201706935,,,130.0,,1.0,5.0,6.0,0.0,2.0,1.5,2258.6586324231316,0.0,80.0,0.0,0.0,75559.0,1,5,2,120.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,232.58774997075454,0.007070782994289405,0.003078226948090294,50372.666666666664,10,5,10,10_1,10_0,10_0_0 +6936,2,46.0,2,0.0,7,300,2,52,47,3.0,1054.9932460773566,499.65347504283835,3499.417389326461,0.0,0.0,25854.656658454027,50,50,1,3518,201706936,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2106.7026720947674,0.0,2600.0,0.0,0.0,40158.0,1,1,2,192.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5054.064110446656,0.19547983859201873,0.12585447757474616,16063.2,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6937,2,65.0,4,0.0,1,400,5,71,78,8.0,3172.912018277764,138.792631956344,1480.522741638118,360.94167617681745,0.0,36185.85703804704,60,70,1,3519,201706937,,,900.0,,0.0,1.0,6.0,0.0,3.0,2.0,2594.465029739431,0.0,1100.0,0.0,0.0,58328.0,5,5,1,142.0,0,0.0,5,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5153.169068049043,0.1424083741510067,0.08834811870883696,29164.0,8,4,8,8_1,8_0,8_1_0 +6938,1,29.0,2,355.0,99,111,4,0,85,2.0,0.0,0.0,0.0,0.0,0.0,21027.11150273411,0,50,2,352,201706938,,,405.0,,0.0,0.0,4.0,1.0,2.0,1.3,1223.7305352254796,0.0,0.0,0.0,0.0,14332.0,0,4,3,55.0,5,4.0,2,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,11024.615384615385,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6939,2,88.0,3,0.0,99,112,6,0,77,8.0,0.0,0.0,1380.9239390188266,247.7050718860512,0.0,15178.2,0,70,1,3522,201706939,,,,,0.0,2.0,4.0,0.0,1.0,1.0,7355.5666046746155,0.0,1026.0,0.0,0.0,29484.0,0,5,3,120.0,7,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1628.6290109048778,0.107300537013933,0.055237722524246295,29484.0,8,4,8,8_1,8_0,8_0_0 +6940,2,72.0,4,0.0,6,111,4,77,74,5.0,0.0,0.0,2597.6444466923344,0.0,0.0,39490.000315994126,70,50,1,3524,201706940,,,440.0,,0.0,3.0,5.0,0.0,2.0,1.5,1605.4440255029842,0.0,1930.0,0.0,0.0,30491.0,5,5,1,100.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2597.6444466923344,0.06577980313766278,0.08519380954026876,20327.333333333332,5,3,5,5_1,5_2,5_0_0 +6941,2,56.0,2,0.0,7,111,2,0,37,10.0,0.0,0.0,653.6031251980337,0.0,1217.975418201722,28818.839999999997,20,31,1,3525,201706941,,,228.0,,1.0,2.0,6.0,0.0,2.0,1.5,1862.7042907057069,1174.0,0.0,0.0,0.0,70050.0,1,1,1,136.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1871.5785433997557,0.06494288262122126,0.02671775222554969,46700.0,10,5,10,10_1,10_3,10_0_0 +6942,2,69.0,3,0.0,1,120,2,77,78,4.0,3490.203220105541,0.0,615.0899026623819,153.93100895776038,0.0,30040.58,70,71,1,3526,201706942,,,160.0,,0.0,3.0,5.0,0.0,2.0,1.5,1710.9502990296623,0.0,457.0,0.0,0.0,25900.0,5,5,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4259.224131725683,0.14178235346074153,0.1644488081747368,17266.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6943,2,31.0,2,0.0,9,111,6,56,54,6.0,0.0,0.0,2422.6735772260117,0.0,0.0,59573.62,50,31,1,3527,201706943,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1348.7341173996947,0.0,1800.0,0.0,0.0,43610.0,1,1,2,96.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2422.6735772260117,0.0406668853970266,0.055553166182664794,20766.666666666664,5,3,5,5_1,5_3,5_0_0 +6944,2,55.0,2,0.0,7,111,1,67,37,9.0,0.0,0.0,834.4764543778484,0.0,2087.799891611003,68621.39338649018,50,20,2,3528,201706944,0.0,,,840.0,2.0,1.0,4.0,1.0,3.0,2.0,2287.4254774580336,0.0,620.0,1180.0,0.0,64813.0,4,1,3,81.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2922.2763459888515,0.04258549996981224,0.04508781179684402,32406.5,9,5,9,9_0,9_4,9_0_0 +6945,1,21.0,2,295.0,99,111,6,52,54,2.0,0.0,0.0,1049.8252167979383,0.0,0.0,18302.260000000002,41,42,2,353,201706945,,,,75.0,2.0,0.0,2.0,0.0,2.0,1.5,2419.9932541098055,0.0,780.0,0.0,0.0,19480.0,2,2,3,38.0,7,5.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1049.8252167979383,0.05736041433123222,0.05389246492802558,12986.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6946,1,40.0,3,404.0,1,211,2,0,85,1.0,0.0,0.0,1319.0111698230507,0.0,0.0,23361.440000000002,0,31,2,3530,201706946,,,,96.0,0.0,0.0,4.0,2.0,3.0,1.6,762.69165314618,0.0,980.0,0.0,0.0,15455.0,0,4,3,80.0,1,3.0,2,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1319.0111698230507,0.05646103878113039,0.08534527142174382,9659.375,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +6947,2,35.0,3,0.0,1,112,2,85,48,6.0,0.0,832.755791738064,4037.789295376686,0.0,0.0,31187.801016380145,60,43,1,3532,201706947,,,300.0,,1.0,0.0,5.0,2.0,4.0,2.1,2276.100253444045,0.0,3000.0,0.0,0.0,48359.0,4,1,2,200.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4870.54508711475,0.15616827504307504,0.10071641446503753,23028.095238095237,6,3,6,6_1,6_0,6_1_0 +6948,2,31.0,1,0.0,3,111,4,0,38,10.0,0.0,0.0,1130.581002705472,0.0,0.0,27735.819999999996,0,12,2,3533,201706948,,,180.0,,1.0,0.0,1.0,0.0,1.0,1.0,3483.195728583671,0.0,840.0,0.0,0.0,51746.0,0,1,3,40.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1130.581002705472,0.04076248701878914,0.021848664683366287,51746.0,10,5,10,10_0,10_3,10_0_1 +6949,1,47.0,4,209.0,99,221,4,0,68,2.0,0.0,0.0,4037.789295376686,0.0,0.0,16532.0,0,71,1,3534,201706949,,,600.0,,2.0,1.0,5.0,2.0,3.0,1.8,403.82261013892276,0.0,3000.0,0.0,0.0,23711.0,0,1,3,106.0,1,2.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,4037.789295376686,0.24424082357710417,0.17029181794849166,13172.777777777777,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +6950,2,50.0,3,0.0,4,111,1,55,67,9.0,0.0,0.0,551.8312037014804,0.0,467.1009926994108,39337.64,33,50,2,3535,201706950,,,,,3.0,0.0,3.0,1.0,3.0,2.0,2263.0752698349133,0.0,410.0,264.0,0.0,78911.0,1,1,1,63.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1018.9321964008911,0.025902219767146458,0.012912422810519334,39455.5,9,5,9,9_0,9_4,9_0_1 +6951,2,64.0,3,0.0,3,211,2,78,77,6.0,0.0,0.0,483.18878568007676,0.0,1344.6846759528494,20993.88,71,50,1,3536,201706951,,,336.0,,0.0,1.0,4.0,0.0,2.0,1.5,1937.1061306502158,0.0,359.0,760.0,0.0,32970.0,5,5,1,68.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1827.8734616329261,0.08706696721296521,0.05544050535738326,21980.0,6,3,6,6_1,6_1,6_0_1 +6952,2,58.0,3,0.0,6,112,4,0,62,3.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,21720.120836034977,0,50,1,3537,201706952,,,300.0,,1.0,2.0,4.0,0.0,1.0,1.0,2309.6103593426024,900.0,0.0,0.0,0.0,14334.0,0,4,1,119.0,6,2.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1434.7706039691484,0.06605721095201175,0.10009561908533196,14334.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6953,2,74.0,2,0.0,1,111,2,0,74,8.0,0.0,0.0,471.07541779394666,0.0,1769.3219420432229,31796.34,0,70,1,3538,201706953,,,250.0,,0.0,2.0,6.0,0.0,1.0,1.0,1827.2026279639092,0.0,350.0,1000.0,0.0,31536.0,0,5,1,147.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2240.3973598371695,0.0704608568104747,0.07104253424141202,31536.0,8,4,8,8_1,8_2,8_1_0 +6954,1,33.0,3,350.0,9,221,4,67,65,3.0,0.0,0.0,1615.1157181506744,134.46846759528495,0.0,72546.72,50,50,1,3539,201706954,,,900.0,280.0,2.0,0.0,5.0,3.0,5.0,2.4,2613.166276531106,0.0,1200.0,0.0,0.0,33270.0,1,1,3,100.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1749.5841857459593,0.024116654560619132,0.05258744171163088,13862.5,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +6955,2,64.0,3,0.0,9,400,6,72,78,5.0,0.0,223.45613744971382,1278.633276869284,120.31389205893916,0.0,30471.23999999999,60,70,1,354,201706955,,,540.0,,0.0,1.0,5.0,0.0,2.0,1.5,1565.7343439346073,0.0,950.0,0.0,0.0,29337.0,5,5,1,110.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1622.403306377937,0.053243757273348166,0.05530229084016556,19558.0,5,3,5,5_1,5_1,5_0_0 +6956,1,47.0,5,439.0,2,111,1,0,56,2.0,0.0,0.0,269.1859530251124,0.0,353.8643884086446,7515.8,0,50,2,3542,201706956,,,,,1.0,1.0,4.0,1.0,2.0,1.3,2008.018791972136,0.0,200.0,200.0,0.0,14248.0,0,4,3,80.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,623.050341433757,0.0828987388479945,0.043728968376877946,10960.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6957,1,42.0,2,120.0,7,111,2,0,54,3.0,0.0,0.0,566.6364311178615,0.0,1091.6716382406685,20326.2958158351,0,43,2,3543,201706957,,,200.0,410.0,1.0,0.0,3.0,1.0,2.0,1.5,2202.1101692501315,0.0,421.0,617.0,0.0,23092.0,0,1,3,74.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1658.30806935853,0.08158437151478595,0.07181309844788368,15394.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +6958,2,69.0,3,0.0,7,112,2,0,71,3.0,0.0,0.0,410.5085783632964,2066.5680283064844,0.0,23690.620000000003,0,50,1,3545,201706958,,,378.0,,0.0,0.0,4.0,0.0,1.0,1.0,2264.3408387268496,0.0,305.0,0.0,0.0,13541.0,0,5,1,100.0,8,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2477.0766066697806,0.10455938285573702,0.18293158604754306,13541.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6959,2,50.0,2,0.0,1,300,5,13,13,10.0,0.0,416.377895869032,672.964882562781,0.0,0.0,18572.04417758094,50,42,1,3547,201706959,,,,,2.0,3.0,4.0,0.0,2.0,1.5,1434.8935107275788,0.0,500.0,0.0,0.0,69409.0,1,1,1,150.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1089.342778431813,0.05865497454215634,0.015694546505954747,46272.666666666664,10,5,10,10_1,10_0,10_1_0 +6960,2,59.0,3,0.0,4,300,5,52,47,8.0,793.228004569441,173.49078994542998,1130.581002705472,63.69558991355603,0.0,32581.39119129575,71,50,1,3548,201706960,,,468.0,,2.0,6.0,7.0,0.0,2.0,1.5,1653.0692849683699,0.0,840.0,0.0,0.0,43828.0,1,1,1,100.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2160.995387133899,0.06632606245835254,0.04930627423414025,29218.666666666668,8,4,8,8_1,8_1,8_0_1 +6961,2,71.0,1,0.0,2,111,1,0,,10.0,0.0,0.0,1159.672751349982,0.0,2482.415055459472,57508.35908924293,0,44,2,3549,201706961,490.0,490.0,,,0.0,1.0,3.0,0.0,1.0,1.0,1862.1085516789888,1345.646471350463,305.0,614.0,0.0,94000.0,0,8,1,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3642.0878068094544,0.0633314506706333,0.03874561496605802,94000.0,10,5,10,10_0,10_3,10_0_1 +6962,2,72.0,3,0.0,5,221,2,77,72,6.0,0.0,0.0,888.3136449828709,0.0,1388.91772450393,28425.300000000003,50,50,1,355,201706962,,,338.0,,0.0,2.0,5.0,0.0,2.0,1.5,1719.2938452798642,0.0,660.0,785.0,0.0,36364.0,5,5,1,91.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2277.2313694868008,0.0801128350267825,0.06262323642852273,24242.666666666668,7,4,7,7_1,7_1,7_0_0 +6963,1,34.0,3,175.0,1,111,2,52,62,4.0,0.0,55.5170527825376,1036.3659191466827,0.0,1291.6050176915528,72404.9,50,60,1,3552,201706963,,,,,4.0,0.0,6.0,6.0,8.0,3.9,728.3266301894906,0.0,770.0,730.0,0.0,61906.0,1,1,2,135.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,2383.487989620773,0.0329188768939778,0.03850172825930884,15873.333333333334,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +6964,2,43.0,2,0.0,1,111,2,48,46,7.0,0.0,0.0,2611.528153067251,0.0,4335.0429884312025,54429.2418108191,43,60,1,3553,201706964,,,,,2.0,0.0,3.0,1.0,3.0,1.8,4956.499856754999,1139.4307561812404,1469.0,1782.0,0.0,45766.0,4,1,1,67.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,6946.5711414984535,0.127625719381556,0.15178453746227447,25425.555555555555,7,4,7,7_1,7_4,7_1_0 +6965,2,65.0,2,0.0,4,211,2,77,75,5.0,2855.620816449988,0.0,740.261370819059,0.0,123.8525359430256,27114.84,71,60,1,3554,201706965,,,185.0,,0.0,5.0,5.0,0.0,2.0,1.5,1019.5320064837359,0.0,550.0,70.0,0.0,32288.0,5,5,1,100.0,3,3.0,3,2,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3719.7347232120724,0.1371844614687777,0.11520486630364446,21525.333333333332,6,3,6,6_1,6_1,6_0_1 +6966,1,45.0,3,268.0,1,111,2,0,52,5.0,0.0,0.0,619.1276919577585,0.0,1309.298237111985,23230.72,0,41,1,3556,201706966,,,250.0,,1.0,0.0,4.0,1.0,2.0,1.3,273.83313615756566,0.0,460.0,740.0,0.0,25626.0,0,1,4,80.0,4,4.0,2,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1928.4259290697435,0.08301188809773194,0.07525270932138232,19712.30769230769,5,3,5,5_1,5_2,5_1_0 +6967,1,71.0,5,165.0,3,111,1,85,77,2.0,0.0,0.0,167.01953795520456,0.0,311.2373300345116,22990.159999999996,71,71,2,3557,201706967,,,,101.0,0.0,4.0,3.0,2.0,4.0,2.1,4199.513342443796,300.0,0.0,0.0,0.0,23890.0,6,5,3,66.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,478.25686798971617,0.02080267679693035,0.020019123817066393,11376.190476190475,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +6968,2,26.0,3,0.0,99,111,1,84,47,3.0,0.0,0.0,97.98479560038666,0.0,182.59256695358013,28145.441750603255,41,31,2,3558,201706968,,,100.0,,1.0,0.0,1.0,0.0,2.0,1.5,3482.327832527514,176.0,0.0,0.0,0.0,24997.0,3,1,3,28.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,280.5773625539668,0.00996883847267926,0.011224441435130888,16664.666666666668,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +6969,2,64.0,2,0.0,5,112,2,77,77,8.0,1384.976095978244,208.188947934516,703.9212671606689,159.23897478389006,0.0,26240.640000000003,70,71,1,3559,201706969,,,174.0,,0.0,3.0,5.0,0.0,2.0,1.5,1697.6133700436283,0.0,523.0,0.0,0.0,39261.0,6,5,1,123.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2456.325285857319,0.09360767442628377,0.06256400208495247,26174.0,7,4,7,7_1,7_0,7_0_0 +6970,1,54.0,4,361.0,1,111,1,46,85,1.0,0.0,0.0,69.98834778652922,0.0,79.61948739194503,10645.407533755655,50,50,2,356,201706970,,,,,1.0,1.0,3.0,1.0,3.0,2.0,2961.940838581504,0.0,52.0,45.0,0.0,12692.0,4,7,3,53.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,149.60783517847426,0.01405374427461616,0.011787569743025075,6346.0,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +6971,2,66.0,2,0.0,99,112,2,0,78,6.0,0.0,0.0,554.5230632317315,0.0,734.2686059479375,21078.177038047048,0,70,2,3560,201706971,,,80.0,640.0,0.0,1.0,3.0,0.0,1.0,1.0,3930.9783843812784,0.0,412.0,415.0,0.0,23585.0,0,5,3,70.0,9,1.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1288.791669179669,0.061143412300472794,0.054644548195025185,23585.0,6,3,6,6_0,6_1,6_0_0 +6972,2,49.0,4,0.0,99,111,1,67,46,7.0,0.0,0.0,686.4241802140366,0.0,1273.9117982711205,43794.159999999996,50,41,2,3561,201706972,720.0,720.0,,523.0,3.0,0.0,3.0,1.0,3.0,2.0,4299.642154948001,0.0,510.0,720.0,0.0,51533.0,4,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1960.335978485157,0.0447624975221618,0.03804040087876035,25766.5,7,4,7,7_0,7_4,7_0_0 +6973,1,54.0,5,324.0,7,120,2,0,68,1.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,12939.14,0,50,1,3562,201706973,,,460.0,,1.0,1.0,3.0,1.0,2.0,1.5,1653.6695322996668,1100.0,0.0,0.0,0.0,15118.0,0,1,3,60.0,0,1.0,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1753.6085159622926,0.13552743968782258,0.11599474242375266,10078.666666666666,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +6974,2,65.0,2,0.0,4,212,4,0,78,6.0,0.0,360.86084308649436,1817.0051829195086,0.0,0.0,17001.1858467513,0,41,1,3563,201706974,,,210.0,,0.0,3.0,4.0,0.0,1.0,1.0,2373.6759847380517,0.0,1350.0,0.0,0.0,20950.0,0,5,1,80.0,2,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2177.866026006003,0.12810083047366744,0.1039554189024345,20950.0,5,3,5,5_1,5_0,5_0_1 +6975,2,60.0,3,0.0,99,111,1,0,67,4.0,0.0,0.0,547.7934144061037,0.0,212.31863304518674,11599.314661438775,0,70,2,3565,201706975,,,,335.0,1.0,4.0,3.0,0.0,1.0,1.0,1711.716919363097,0.0,407.0,120.0,0.0,18696.0,0,1,3,60.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,760.1120474512904,0.06553077226004027,0.04065639962833175,18696.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +6976,2,52.0,3,0.0,7,211,4,54,52,3.0,0.0,0.0,3584.2109645293713,63.69558991355603,0.0,33596.979999999996,44,50,1,3568,201706976,,,,,3.0,0.0,7.0,3.0,5.0,3.0,1916.40242994458,0.0,2663.0,0.0,0.0,47876.0,1,1,1,150.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3647.9065544429272,0.10857840658425036,0.07619489001677097,15958.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6977,0,46.0,3,0.0,1,221,2,52,65,6.0,0.0,804.9972653467952,1076.7438121004495,95.54338487033404,0.0,31962.379999999997,50,50,1,3569,201706977,,,160.0,,2.0,0.0,6.0,1.0,3.0,1.8,1987.1351577986825,0.0,800.0,0.0,0.0,39060.0,1,1,5,140.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1977.2844623175786,0.06186286698041819,0.05062172202553965,21700.0,6,3,6,6_1,6_1,6_1_0 +6978,2,65.0,4,0.0,4,111,5,0,46,3.0,0.0,0.0,194.8561276144053,0.0,363.11021837359687,17177.4,0,71,1,357,201706978,,,125.0,,1.0,0.0,4.0,0.0,1.0,1.0,2716.9615631927345,350.0,0.0,0.0,0.0,15460.0,0,4,1,80.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,557.9663459880021,0.0324825844416502,0.036090966752134676,15460.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +6979,0,44.0,2,0.0,7,111,2,21,42,8.0,0.0,0.0,0.0,0.0,0.0,26788.160000000003,50,20,1,3570,201706979,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1835.3986906360901,0.0,0.0,0.0,0.0,45976.0,1,1,5,100.0,7,5.0,3,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,30650.666666666668,8,4,8,8_1,8_2,8_0_0 +6980,2,72.0,2,0.0,6,112,2,0,72,10.0,1745.1016100527704,0.0,839.8601734383507,106.15931652259337,0.0,17038.431191295746,0,70,1,3571,201706980,,,42.0,,0.0,0.0,3.0,0.0,1.0,1.0,1652.4268977246024,0.0,624.0,0.0,0.0,65790.0,0,5,2,100.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2691.1211000137146,0.15794418334643984,0.040904713482500604,65790.0,10,5,10,10_1,10_0,10_0_0 +6981,2,47.0,3,0.0,99,111,2,0,37,7.0,0.0,0.0,1022.9066214954271,0.0,0.0,26934.84,0,31,2,3573,201706981,,,,695.0,1.0,0.0,2.0,1.0,2.0,1.5,3532.2981905220845,0.0,760.0,0.0,0.0,36220.0,0,1,3,42.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1022.9066214954271,0.037977081783126504,0.02824148596066889,24146.666666666668,7,4,7,7_0,7_4,7_0_0 +6982,2,59.0,3,0.0,99,111,4,0,33,8.0,0.0,0.0,524.9126083989692,0.0,0.0,31970.8,0,42,2,3574,201706982,,,190.0,540.0,1.0,1.0,2.0,0.0,1.0,1.0,1995.9106530307558,0.0,390.0,0.0,0.0,31419.0,0,1,3,42.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,524.9126083989692,0.01641850089453405,0.016706852808777147,31419.0,8,4,8,8_0,8_3,8_0_0 +6983,1,37.0,4,130.0,99,111,2,0,55,3.0,0.0,0.0,814.287507900965,100.85135069646371,0.0,19361.28,0,43,2,3575,201706983,,,,244.0,1.0,0.0,3.0,1.0,2.0,1.3,666.1163766354972,0.0,605.0,0.0,0.0,19410.0,0,1,3,56.0,4,3.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,915.1388585974287,0.04726644408827457,0.047147803121969534,14930.76923076923,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +6984,0,26.0,2,0.0,1,111,1,55,62,4.0,0.0,0.0,1388.99951760958,0.0,0.0,22134.764691045122,50,60,2,3576,201706984,,,,,2.0,0.0,2.0,0.0,2.0,1.5,5513.5220908849005,0.0,1032.0,0.0,0.0,25732.0,1,1,5,37.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1388.99951760958,0.06275194414745759,0.05397946205540105,17154.666666666668,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +6985,2,83.0,3,0.0,3,112,3,71,71,2.0,0.0,0.0,716.0346350467989,0.0,1979.8712531463664,21454.3,70,70,1,3577,201706985,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1999.7726495720322,0.0,532.0,1119.0,0.0,20212.0,5,5,1,85.0,4,0.0,3,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2695.905888193165,0.1256580679953746,0.13338145102875346,13474.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +6986,2,69.0,4,0.0,4,112,2,0,78,4.0,0.0,0.0,403.7789295376686,0.0,530.7965826129669,9793.439999999999,0,71,2,3578,201706986,,,,,0.0,0.0,3.0,0.0,1.0,1.0,1971.8167256889283,0.0,300.0,300.0,0.0,16750.0,0,5,3,45.0,9,3.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,934.5755121506354,0.09542872699997504,0.05579555296421704,16750.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +6987,2,53.0,1,0.0,9,111,2,0,38,9.0,0.0,0.0,807.5578590753372,0.0,0.0,50618.159999999996,0,20,1,3579,201706987,,,222.0,,1.0,0.0,4.0,1.0,2.0,1.3,2597.315270613691,0.0,600.0,0.0,0.0,43812.0,0,1,2,83.0,8,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,807.5578590753372,0.015953915730546848,0.01843234408553221,33701.53846153846,9,5,9,9_1,9_2,9_0_0 +6988,0,47.0,4,0.0,7,111,4,0,21,1.0,0.0,0.0,0.0,0.0,0.0,59683.324196668895,0,30,2,3580,201706988,,,,,1.0,0.0,3.0,2.0,3.0,1.8,1216.5160482891242,0.0,0.0,0.0,0.0,13376.0,0,1,5,77.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,7431.111111111111,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +6989,1,36.0,3,160.0,99,112,4,0,63,3.0,0.0,0.0,158.81971228481632,0.0,0.0,26975.520000000004,0,43,1,3581,201706989,,,,,1.0,0.0,4.0,1.0,2.0,1.3,322.4825633717372,0.0,118.0,0.0,0.0,20110.0,0,4,3,80.0,7,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,158.81971228481632,0.005887549611085024,0.007897549094222592,15469.23076923077,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +6990,2,64.0,2,0.0,1,120,6,33,74,7.0,0.0,832.755791738064,942.1508355878933,371.5576078290768,0.0,53915.17119129575,50,50,1,3583,201706990,,,250.0,,1.0,2.0,6.0,1.0,3.0,2.0,2079.385544344446,0.0,700.0,0.0,0.0,48925.0,1,5,1,140.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2146.464235155034,0.03981187832158023,0.04387254440786989,24462.5,7,4,7,7_1,7_1,7_1_0 +6991,2,37.0,2,0.0,99,111,2,0,37,9.0,0.0,0.0,3714.766151746551,0.0,1592.3897478389006,36886.92,0,31,2,3584,201706991,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2748.992831842754,0.0,2760.0,900.0,0.0,37255.0,0,1,3,49.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,5307.155899585451,0.14387636320911182,0.1424548624234452,37255.0,9,5,9,9_0,9_4,9_0_0 +6992,2,49.0,2,0.0,2,400,5,0,52,5.0,0.0,569.0497910210104,1184.4181933104944,102.62067263850693,0.0,24488.751191295745,0,50,1,3585,201706992,,,147.0,,2.0,0.0,3.0,1.0,2.0,1.5,2007.6114391668698,0.0,880.0,0.0,0.0,29255.0,0,1,1,70.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1856.0886569700117,0.07579352015425506,0.0634451771310891,19503.333333333332,5,3,5,5_1,5_0,5_0_1 +6993,2,29.0,1,0.0,5,111,2,55,37,10.0,0.0,0.0,664.7377610617141,0.0,1238.7245735373563,64257.759999999995,20,12,1,3586,201706993,,,300.0,,2.0,0.0,4.0,0.0,2.0,1.5,2877.446539750953,1194.0,0.0,0.0,0.0,68947.0,1,1,2,100.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1903.4623345990703,0.029622295184255885,0.02760761649671589,45964.666666666664,10,5,10,10_1,10_3,10_0_0 +6994,2,36.0,4,0.0,7,111,2,65,46,6.0,0.0,0.0,2148.103905140397,0.0,0.0,24240.26937154204,41,20,2,3587,201706994,,,,590.0,2.0,0.0,4.0,2.0,4.0,2.1,3830.9265587146065,0.0,1596.0,0.0,0.0,46756.0,1,1,3,81.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2148.103905140397,0.08861716312700141,0.0459428502254341,22264.761904761905,6,3,6,6_0,6_4,6_0_0 +6995,1,48.0,2,36.0,3,111,1,85,48,3.0,0.0,0.0,430.6975248401798,452.94641716306506,0.0,25901.180631988234,50,50,2,3588,201706995,,,,,1.0,3.0,5.0,1.0,5.0,3.0,4157.3069992646815,0.0,320.0,0.0,0.0,46642.0,6,1,3,98.0,8,6.0,5,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,883.6439420032449,0.03411597156740937,0.018945241241868808,15547.333333333334,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +6996,1,49.0,3,23.0,5,111,1,56,65,3.0,0.0,0.0,708.4923820915513,0.0,317.0158617101641,29244.20784974978,50,50,2,3589,201706996,,,550.0,312.0,3.0,1.0,5.0,3.0,5.0,2.8,2225.3545749703985,305.5698958171358,400.0,0.0,0.0,39706.0,1,1,3,100.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1025.5082438017155,0.035067054955653036,0.02582753850304023,14180.714285714286,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +6997,1,52.0,3,140.0,5,111,1,77,52,1.0,0.0,0.0,767.1799661215703,0.0,1576.4658503605117,15404.911191295745,71,71,2,3590,201706997,891.0,891.0,,149.0,1.0,0.0,2.0,2.0,4.0,2.5,3818.669032842563,0.0,570.0,891.0,0.0,24600.0,5,4,3,45.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2343.645816482082,0.15213627572266142,0.09527015514154805,9840.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6998,2,69.0,2,0.0,1,112,4,0,86,6.0,0.0,0.0,0.0,141.54575536345783,0.0,26678.120000000003,0,71,1,3592,201706998,,,100.0,,0.0,2.0,2.0,0.0,1.0,1.0,1727.9528099034048,0.0,0.0,0.0,0.0,22185.0,0,5,1,45.0,9,0.0,1,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,141.54575536345783,0.005305687033548759,0.006380245903243535,22185.0,6,3,6,6_1,6_0,6_1_0 +6999,2,65.0,3,0.0,1,111,2,77,77,7.0,0.0,832.755791738064,296.1045483276236,0.0,1096.9796040667982,24166.160315994115,71,71,1,3593,201706999,,,230.0,,0.0,4.0,5.0,0.0,2.0,1.5,1516.3827944166153,0.0,220.0,620.0,0.0,33787.0,5,5,1,110.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2225.8399441324855,0.09210565166446144,0.0658785907044865,22524.666666666668,6,3,6,6_1,6_3,6_1_0 +7000,2,46.0,4,0.0,1,111,2,0,46,2.0,0.0,0.0,2584.185149041079,0.0,265.39829130648343,21174.010875301632,0,43,1,3595,201707000,,,,240.0,1.0,0.0,6.0,0.0,1.0,1.0,1989.1862681307825,0.0,1920.0,150.0,0.0,11380.0,0,1,4,128.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2849.5834403475624,0.13457929426452933,0.25040276277219353,11380.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +7001,2,38.0,2,0.0,5,300,5,47,33,8.0,0.0,0.0,1615.1157181506744,764.3470789626723,0.0,42836.060000000005,31,20,1,3596,201707001,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,2418.382463391943,0.0,1200.0,0.0,0.0,55550.0,1,1,1,100.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2379.462797113347,0.055548124573393226,0.04283461380942118,26452.38095238095,7,4,7,7_1,7_0,7_0_0 +7002,2,58.0,3,0.0,1,112,4,85,47,8.0,0.0,0.0,2140.0283265496437,159.23897478389006,0.0,31554.32,71,50,1,3598,201707002,,,,,2.0,0.0,4.0,1.0,3.0,2.0,3245.36731990928,0.0,1590.0,0.0,0.0,55653.0,4,1,2,97.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2299.267301333534,0.07286695772032273,0.04131434606101259,27826.5,8,4,8,8_1,8_1,8_1_0 +7003,2,61.0,2,0.0,7,120,6,55,72,9.0,951.8736054833294,0.0,942.1508355878933,283.09151072691566,0.0,104591.3,71,71,1,360,201707003,,,360.0,,1.0,1.0,5.0,0.0,2.0,1.5,3016.5215557764213,0.0,700.0,0.0,0.0,48520.0,1,5,1,160.0,0,3.0,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2177.115951798138,0.0208154593335979,0.04487048540391876,32346.666666666668,9,5,9,9_1,9_1,9_0_0 +7004,2,50.0,4,0.0,5,111,1,0,68,1.0,0.0,0.0,174.97086946632305,0.0,0.0,8189.430875301629,0,71,2,3600,201707004,,,,206.0,1.0,1.0,2.0,0.0,1.0,1.0,3186.590310146108,0.0,130.0,0.0,0.0,10280.0,0,1,3,38.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,174.97086946632305,0.021365449215038232,0.0170205125940003,10280.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +7005,2,47.0,2,0.0,2,111,2,0,37,8.0,0.0,0.0,1135.7328580953908,0.0,2116.413844234679,61154.910875301626,0,20,1,3601,201707005,,,600.0,,2.0,0.0,3.0,2.0,3.0,1.8,519.6747496189888,2040.0,0.0,0.0,0.0,52152.0,0,1,2,114.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3252.1467023300697,0.05317883152444427,0.06235900257574148,28973.333333333332,8,4,8,8_1,8_4,8_0_1 +7006,2,31.0,1,0.0,99,111,4,65,23,10.0,0.0,0.0,134.5929765125562,0.0,0.0,26752.517038047044,50,30,2,3602,201707006,,,,400.0,2.0,0.0,3.0,0.0,2.0,1.5,3736.2834605158682,0.0,100.0,0.0,0.0,61675.0,4,1,3,49.0,6,5.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,134.5929765125562,0.005031039745573846,0.002182293903730137,41116.666666666664,10,5,10,10_0,10_2,10_0_0 +7007,2,69.0,3,0.0,5,111,2,75,75,8.0,0.0,0.0,634.6742442297772,0.0,1182.701854131144,37536.192792311456,50,50,1,3603,201707007,,,700.0,,0.0,3.0,5.0,0.0,2.0,1.5,1833.1746588458777,1140.0,0.0,0.0,0.0,42830.0,5,5,1,105.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1817.3760983609213,0.04841663373844283,0.04243231609528184,28553.333333333332,8,4,8,8_1,8_2,8_0_0 +7008,2,56.0,3,0.0,1,111,4,0,34,7.0,0.0,0.0,1064.6304442143196,0.0,0.0,25030.660000000003,0,31,2,3604,201707008,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2511.4223196261523,0.0,791.0,0.0,0.0,24226.0,0,1,2,29.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1064.6304442143196,0.04253305522963915,0.043945779089173596,24226.0,7,4,7,7_0,7_4,7_1_0 +7009,1,48.0,3,300.0,1,111,2,0,56,3.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,24359.26,0,41,2,3606,201707009,,,,539.0,1.0,0.0,3.0,2.0,3.0,1.8,1034.7729829365833,800.0,0.0,0.0,0.0,26360.0,0,1,3,78.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1275.3516479725763,0.05235592739568346,0.04838208072733598,14644.444444444443,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +7010,1,63.0,5,218.0,1,111,7,0,78,2.0,0.0,0.0,349.9417389326461,0.0,0.0,4155.2,0,71,2,3607,201707010,,,,79.0,0.0,2.0,2.0,0.0,1.0,1.0,4680.733852253569,0.0,260.0,0.0,0.0,12156.0,0,5,3,40.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,349.9417389326461,0.0842177846872945,0.028787573127068616,12156.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +7011,1,29.0,3,369.0,5,111,1,0,46,2.0,0.0,0.0,1049.8252167979383,0.0,0.0,34040.04932216842,0,31,8,3609,201707011,,,,61.0,2.0,0.0,5.0,3.0,6.0,3.3,1764.423507593619,0.0,780.0,0.0,0.0,43768.0,0,1,3,102.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1049.8252167979383,0.030840884126282525,0.023986136373559182,13263.030303030304,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +7012,2,69.0,3,0.0,1,111,1,0,86,3.0,0.0,0.0,713.3427755165478,0.0,2653.9829130648345,17311.347849749774,0,60,2,361,201707012,1500.0,1500.0,,,0.0,1.0,3.0,0.0,1.0,1.0,1326.2999777796422,0.0,530.0,1500.0,0.0,15460.0,0,5,1,82.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3367.3256885813826,0.19451551189470526,0.2178089061178126,15460.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +7013,2,56.0,3,0.0,1,111,2,52,62,6.0,0.0,0.0,403.7789295376686,0.0,1238.525359430256,37248.84,41,42,1,3611,201707013,,,300.0,,2.0,1.0,7.0,1.0,3.0,2.0,2114.907015750888,0.0,300.0,700.0,0.0,41431.0,1,1,2,150.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1642.3042889679245,0.04409007875058457,0.039639503969682716,20715.5,5,3,5,5_1,5_3,5_1_0 +7014,2,32.0,3,0.0,1,112,2,33,46,9.0,0.0,138.792631956344,788.7148423635794,0.0,1868.4039707976433,39810.56,20,30,1,3612,201707014,,,468.0,,2.0,0.0,4.0,1.0,3.0,1.8,3063.6846210762983,0.0,586.0,1056.0,0.0,57694.0,1,1,1,90.0,9,1.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2795.9114451175665,0.07023039728950226,0.04846104352476109,32052.222222222223,9,5,9,9_1,9_1,9_1_0 +7015,2,53.0,4,0.0,6,211,5,55,75,3.0,317.29120182777643,208.188947934516,874.8543473316153,230.01185246561897,0.0,47949.8,50,50,1,3615,201707015,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2730.0396582007106,0.0,650.0,0.0,0.0,25233.0,1,7,1,91.0,4,4.0,3,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1630.3463495595265,0.03400110844173545,0.06461167318826641,16822.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7016,1,24.0,3,175.0,1,111,4,0,84,2.0,0.0,0.0,605.6683943065029,0.0,0.0,14074.1,0,30,2,3617,201707016,,,,195.0,0.0,0.0,2.0,0.0,1.0,1.0,3517.926966352024,0.0,450.0,0.0,0.0,12560.0,0,3,3,30.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,605.6683943065029,0.043034254006046775,0.04822200591612284,12560.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +7017,2,43.0,3,0.0,1,120,2,0,62,5.0,317.29120182777643,0.0,2153.487624200899,61.9262679715128,0.0,17590.87087530163,0,60,1,362,201707017,,,500.0,,1.0,2.0,4.0,0.0,1.0,1.0,3065.0566848593094,0.0,1600.0,0.0,0.0,18640.0,0,1,3,110.0,0,3.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2532.7050940001886,0.14397838014695566,0.13587473680258522,18640.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7018,2,50.0,3,0.0,7,111,4,0,45,10.0,0.0,0.0,623.1654812531352,0.0,0.0,30591.559999999998,0,31,2,3621,201707018,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3512.0465819210685,0.0,463.0,0.0,0.0,45234.0,0,1,2,59.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,623.1654812531352,0.020370503539313956,0.013776484088365725,45234.0,10,5,10,10_0,10_3,10_0_0 +7019,2,63.0,2,0.0,4,112,2,0,78,8.0,0.0,0.0,578.7497990039916,3007.847301473479,0.0,10583.199999999999,0,50,1,3622,201707019,,,118.0,,0.0,2.0,4.0,0.0,1.0,1.0,3099.922098718858,0.0,430.0,0.0,0.0,28930.0,0,5,1,100.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3586.5971004774706,0.33889533415956147,0.12397501211467234,28930.0,8,4,8,8_1,8_0,8_0_1 +7020,2,80.0,2,0.0,2,120,2,71,71,3.0,1380.2167279508276,0.0,1026.9444107908037,176.75526201011795,0.0,13459.460315994116,70,70,1,3623,201707020,,,60.0,,0.0,2.0,6.0,0.0,2.0,1.5,2166.0366912197583,0.0,763.0,0.0,0.0,22476.0,5,5,1,100.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2583.9164007517493,0.19197771233674468,0.11496335650256938,14984.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +7021,2,63.0,3,0.0,1,400,2,0,78,5.0,0.0,0.0,753.7206684703146,265.39829130648343,0.0,19937.3,0,71,1,3625,201707021,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2758.6921032412884,0.0,560.0,0.0,0.0,19650.0,0,5,1,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1019.1189597767981,0.0511161972672728,0.05186356029398464,19650.0,5,3,5,5_1,5_0,5_1_0 +7022,2,58.0,3,0.0,3,111,1,53,78,4.0,0.0,0.0,1018.8688322000504,0.0,2374.4300462220053,17319.55466143878,50,50,2,3627,201707022,,,,,1.0,3.0,3.0,0.0,2.0,1.5,7164.141611598087,0.0,757.0,1342.0,0.0,24910.0,1,7,3,47.0,8,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3393.2988784220556,0.195922986748446,0.1362223556171038,16606.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +7023,1,45.0,4,262.0,99,211,2,68,56,1.0,0.0,0.0,597.5928157157495,0.0,507.795397366405,14816.84,60,41,2,3631,201707023,,,,,2.0,1.0,3.0,0.0,2.0,1.5,622.3011320707418,0.0,444.0,287.0,0.0,12064.0,4,4,3,60.0,1,3.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1105.3882130821544,0.07460350608376377,0.09162700705256585,8042.666666666667,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +7024,1,89.0,4,233.0,2,211,1,0,72,2.0,0.0,0.0,258.4185149041079,0.0,307.86201791552077,5443.92,0,70,2,3632,201707024,,,,36.0,0.0,2.0,3.0,0.0,1.0,1.0,1413.4053639953752,0.0,192.0,174.0,0.0,12076.0,0,5,3,54.0,4,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,566.2805328196287,0.1040207300657667,0.04689305505296693,12076.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +7025,1,38.0,3,279.0,99,112,4,0,52,6.0,0.0,0.0,2580.147359745702,0.0,0.0,35047.28,0,41,1,3634,201707025,,,399.0,,1.0,0.0,4.0,2.0,3.0,1.6,525.6043804517576,0.0,1917.0,0.0,0.0,32355.0,0,1,3,85.0,10,1.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2580.147359745702,0.07361904717700495,0.07974493462357293,20221.875,5,3,5,5_1,5_1,5_0_0 +7026,1,21.0,4,353.0,99,400,2,85,68,3.0,0.0,0.0,775.2555447123236,0.0,162.7776186679765,10257.530875301627,60,60,2,3635,201707026,,,150.0,,1.0,0.0,3.0,1.0,3.0,1.8,582.7840692361567,0.0,576.0,92.0,0.0,24322.0,6,1,3,85.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,938.0331633803002,0.09144824176341725,0.03856727092263384,13512.222222222223,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +7027,2,53.0,3,0.0,99,111,5,0,63,3.0,50.60794669153034,610.6875806079136,807.5578590753372,0.0,0.0,11890.580000000002,0,71,1,3636,201707027,,,560.0,,1.0,2.0,5.0,2.0,3.0,2.0,835.2066552058534,0.0,600.0,0.0,0.0,28040.0,0,1,2,80.0,6,4.0,2,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1468.8533863747812,0.12353084427965506,0.05238421492064127,14020.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7028,2,34.0,1,0.0,1,112,2,54,38,10.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,68751.45432624113,42,31,1,3637,201707028,,,708.0,,2.0,0.0,8.0,1.0,3.0,1.8,3298.697316596823,1440.0,0.0,0.0,0.0,98510.0,1,1,1,120.0,6,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2295.6329663506376,0.03339031863176802,0.02330355259720473,54727.777777777774,10,5,10,10_1,10_0,10_1_0 +7029,2,33.0,3,0.0,7,111,1,0,45,6.0,0.0,0.0,363.4010365839017,0.0,0.0,21998.3,0,31,2,3638,201707029,,,,,1.0,0.0,1.0,0.0,1.0,1.0,6618.780449111649,0.0,270.0,0.0,0.0,23461.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,363.4010365839017,0.016519505442870664,0.015489580008691092,23461.0,6,3,6,6_0,6_4,6_0_0 +7030,2,31.0,2,0.0,9,111,1,0,46,9.0,0.0,0.0,484.5347154452023,0.0,0.0,41145.899999999994,0,43,2,3641,201707030,,,160.0,,1.0,0.0,3.0,0.0,1.0,1.0,4705.894939549556,0.0,360.0,0.0,0.0,37653.0,0,1,2,63.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,484.5347154452023,0.011776014510442167,0.012868422581074611,37653.0,9,5,9,9_0,9_3,9_0_0 +7031,2,56.0,2,0.0,1,111,2,56,43,8.0,0.0,0.0,969.0694308904046,0.0,1468.537211895875,42943.12,31,33,1,3644,201707031,,,415.0,,2.0,2.0,7.0,1.0,3.0,2.0,1728.781358222654,0.0,720.0,830.0,0.0,61557.0,1,1,1,120.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2437.6066427862797,0.05676361295560918,0.03959917869269587,30778.5,8,4,8,8_1,8_2,8_1_0 +7033,2,81.0,3,0.0,4,111,2,78,75,6.0,0.0,0.0,880.1222769446132,0.0,1516.6489486662012,23237.193806769697,71,70,1,3646,201707033,,,169.0,,0.0,2.0,4.0,0.0,2.0,1.5,3005.804998194244,401.1061597294649,488.0,622.0,0.0,31161.0,5,5,1,85.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2396.7712256108143,0.10314374642400075,0.07691573523349104,20774.0,5,3,5,5_1,5_3,5_0_1 +7034,2,41.0,4,0.0,9,111,1,0,54,7.0,0.0,0.0,390.319631886413,0.0,0.0,22175.05728588652,0,42,2,3647,201707034,,,,334.0,1.0,0.0,2.0,0.0,1.0,1.0,2824.958848553915,0.0,290.0,0.0,0.0,26833.0,0,1,3,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,390.319631886413,0.017601741761219026,0.014546253936809637,26833.0,7,4,7,7_0,7_4,7_0_0 +7035,1,44.0,2,61.0,99,111,1,85,63,2.0,0.0,0.0,724.1102136375523,0.0,0.0,22913.84,71,43,2,3648,201707035,,,,234.0,1.0,0.0,3.0,2.0,4.0,2.1,842.7346759489742,0.0,538.0,0.0,0.0,27272.0,6,1,3,68.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,724.1102136375523,0.03160143448839445,0.026551415871133483,12986.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7036,2,78.0,2,0.0,1,300,5,78,78,4.0,0.0,1249.133687607096,969.0694308904046,184.0094819724952,0.0,27722.0,71,71,1,3649,201707036,,,,,0.0,4.0,6.0,0.0,2.0,1.5,2212.0206265568786,0.0,720.0,0.0,0.0,25620.0,5,5,1,180.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2402.2126004699953,0.086653654154462,0.09376317722365321,17080.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7037,2,68.0,1,0.0,1,112,2,72,72,5.0,0.0,0.0,1831.0908677822258,0.0,3412.1985949450286,33714.26063198823,50,50,1,365,201707037,,,363.0,,0.0,1.0,7.0,0.0,2.0,1.5,1530.16623915708,3289.0,0.0,0.0,0.0,30604.0,5,5,1,160.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5243.289462727254,0.1555214133259799,0.17132693316975736,20402.666666666668,5,3,5,5_1,5_0,5_1_0 +7038,2,60.0,1,0.0,99,112,4,0,77,5.0,0.0,0.0,1413.22625338184,46.0023704931238,0.0,15680.58,0,50,1,3650,201707038,,,276.0,,0.0,2.0,3.0,0.0,1.0,1.0,4952.278139600643,0.0,1050.0,0.0,0.0,19510.0,0,6,3,60.0,6,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1459.228623874964,0.09305960773612736,0.0747938812852365,19510.0,5,3,5,5_1,5_1,5_0_0 +7039,2,57.0,3,0.0,6,112,5,78,52,7.0,0.0,0.0,1749.7086946632305,0.0,0.0,23509.12,50,50,1,3651,201707039,,,150.0,,1.0,2.0,7.0,0.0,2.0,1.5,2877.991091209371,0.0,1300.0,0.0,0.0,39595.0,5,1,1,110.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1749.7086946632305,0.07442680519999177,0.04419014256000077,26396.666666666668,7,4,7,7_1,7_0,7_0_0 +7040,2,73.0,2,0.0,1,300,4,75,72,7.0,0.0,0.0,4091.6264859817084,0.0,0.0,20112.52,60,70,2,3652,201707040,,,300.0,,0.0,1.0,4.0,0.0,2.0,1.5,2157.7172223812554,0.0,3040.0,0.0,0.0,40010.0,5,5,1,90.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,4091.6264859817084,0.20343678892459563,0.10226509587557382,26673.333333333332,7,4,7,7_0,7_0,7_1_0 +7041,2,57.0,2,0.0,1,112,5,78,78,9.0,0.0,832.755791738064,1029.6362703210548,219.39592081335965,0.0,36886.43767803944,60,71,1,3654,201707041,,,195.0,,0.0,0.0,6.0,0.0,2.0,1.5,1984.6050908997438,0.0,765.0,0.0,0.0,52930.0,5,5,1,80.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2081.7879828724786,0.056437761787766334,0.03933096510244622,35286.666666666664,9,5,9,9_1,9_0,9_1_0 +7042,2,66.0,1,0.0,1,111,2,75,74,10.0,0.0,0.0,874.8543473316153,0.0,2300.11852465619,72342.64,42,31,2,3655,201707042,,,350.0,,0.0,2.0,5.0,0.0,2.0,1.5,2169.1303831775263,0.0,650.0,1300.0,0.0,64841.0,5,5,1,140.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3174.9728719878053,0.043887987388735124,0.04896551367171705,43227.333333333336,10,5,10,10_0,10_3,10_1_0 +7043,2,57.0,3,0.0,9,211,4,74,33,9.0,0.0,0.0,0.0,0.0,0.0,57461.14206659738,20,30,1,3658,201707043,,,,,2.0,4.0,5.0,1.0,3.0,2.0,2594.750768520333,0.0,0.0,0.0,0.0,75055.0,6,1,1,230.0,1,2.0,4,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,37527.5,9,5,9,9_1,9_1,9_0_0 +7044,1,33.0,4,250.0,2,111,1,0,54,3.0,0.0,0.0,807.5578590753372,0.0,0.0,28286.759999999995,0,41,2,3659,201707044,,,,449.0,1.0,0.0,2.0,1.0,2.0,1.3,1525.722136810146,0.0,600.0,0.0,0.0,19910.0,0,1,3,54.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,807.5578590753372,0.02854896987408022,0.040560414820458926,15315.384615384615,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +7045,1,58.0,2,98.0,1,111,2,0,77,2.0,0.0,0.0,484.5347154452023,0.0,1203.1389205893915,28360.12,0,70,2,3660,201707045,,,,354.0,0.0,0.0,3.0,0.0,1.0,1.0,2708.380802607139,0.0,360.0,680.0,0.0,11902.0,0,5,3,75.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1687.673636034594,0.05950869164286308,0.14179748244283263,11902.0,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +7046,2,63.0,3,0.0,7,111,2,0,72,5.0,0.0,0.0,467.03762849857,0.0,813.8880933398825,32569.480000000003,0,60,2,3661,201707046,,,,398.0,0.0,1.0,3.0,0.0,1.0,1.0,2235.243984805856,0.0,347.0,460.0,0.0,19060.0,0,5,3,70.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1280.9257218384525,0.039329019739905345,0.06720491720033854,19060.0,5,3,5,5_0,5_3,5_0_0 +7047,2,47.0,2,0.0,4,111,2,37,46,8.0,0.0,0.0,1790.0865876169973,0.0,1203.1389205893915,52141.37999999999,50,31,1,3662,201707047,,,300.0,,2.0,2.0,5.0,1.0,3.0,2.0,656.339729197628,0.0,1330.0,680.0,0.0,57255.0,1,1,3,90.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2993.225508206389,0.057405951054735976,0.05227884915215071,28627.5,8,4,8,8_1,8_3,8_0_1 +7048,2,84.0,3,0.0,4,111,1,0,74,9.0,0.0,0.0,807.5578590753372,0.0,0.0,14065.0,0,30,2,3663,201707048,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3452.6117426695846,0.0,600.0,0.0,0.0,33850.0,0,5,1,70.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,807.5578590753372,0.057416129333475806,0.023856953000748513,33850.0,9,5,9,9_0,9_2,9_0_1 +7049,2,60.0,2,0.0,1,112,6,72,74,2.0,2379.684013708323,0.0,672.964882562781,238.8584621758351,0.0,82240.92,50,50,1,3665,201707049,,,600.0,,0.0,2.0,5.0,0.0,2.0,1.5,2431.0149164456666,0.0,500.0,0.0,0.0,17537.0,4,5,1,131.0,9,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3291.507358446939,0.04002274486286072,0.18768930595010203,11691.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7050,2,87.0,3,0.0,1,111,4,0,77,3.0,0.0,0.0,2664.9409349486127,106.15931652259337,0.0,6300.66,0,70,1,3666,201707050,,,200.0,,0.0,3.0,3.0,0.0,1.0,1.0,3067.953026877592,0.0,1980.0,0.0,0.0,15059.0,0,5,3,60.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2771.1002514712063,0.4398111073238687,0.18401621963418596,15059.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +7051,1,65.0,4,245.0,3,111,1,0,,3.0,0.0,0.0,3230.231436301349,0.0,130.9298237111985,6714.96,0,20,2,3667,201707051,,,,,0.0,0.0,2.0,0.0,1.0,1.0,1913.5259416922822,0.0,2400.0,74.0,0.0,15470.0,0,8,3,64.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,3361.1612600125472,0.5005482177127708,0.2172696354242112,15470.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +7052,1,35.0,4,140.0,9,221,6,0,52,6.0,0.0,0.0,2961.045483276236,0.0,0.0,22577.22,0,31,1,3668,201707052,,,260.0,,1.0,0.0,4.0,1.0,2.0,1.3,668.148258852885,0.0,2200.0,0.0,0.0,27827.0,0,1,2,93.0,1,1.0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2961.045483276236,0.13115190813024083,0.10640908050728559,21405.384615384613,6,3,6,6_1,6_1,6_0_0 +7053,1,34.0,3,21.0,8,112,2,0,42,4.0,0.0,0.0,444.15682249143543,0.0,1342.9153540108061,23813.58,0,31,2,3669,201707053,,,275.0,372.0,1.0,0.0,3.0,1.0,2.0,1.3,630.7395703725208,0.0,330.0,759.0,0.0,21346.0,0,1,3,79.0,9,3.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1787.0721765022415,0.07504424687519648,0.08371929993920367,16420.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +7054,2,54.0,1,0.0,6,111,2,77,38,10.0,0.0,0.0,709.3049862211711,0.0,2188.651242307467,26936.500000000004,31,12,1,367,201707054,,,320.0,,1.0,3.0,6.0,0.0,2.0,1.5,1228.871532933548,0.0,527.0,1237.0,0.0,123121.0,6,1,1,150.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2897.956228528638,0.10758473552720797,0.02353746500214129,82080.66666666667,10,5,10,10_1,10_2,10_0_0 +7055,2,31.0,2,0.0,9,111,2,31,38,10.0,0.0,0.0,316.2934948045071,0.0,875.8143613113954,37196.46,20,12,2,3671,201707055,,,,749.0,2.0,0.0,3.0,0.0,2.0,1.5,2834.0829023771907,0.0,235.0,495.0,0.0,103982.0,1,1,3,74.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1192.1078561159025,0.03204895993102307,0.011464559790308923,69321.33333333333,10,5,10,10_0,10_3,10_0_0 +7056,1,48.0,3,517.0,3,112,1,85,85,1.0,0.0,0.0,403.7789295376686,0.0,1769.3219420432229,23148.058472656186,50,71,2,3672,201707056,,,,,0.0,1.0,5.0,5.0,7.0,3.6,2631.1662199209,0.0,300.0,1000.0,0.0,20839.0,6,7,3,84.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2173.1008715808916,0.09387832133515141,0.10428047754599029,5788.611111111111,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7057,2,60.0,5,0.0,8,112,2,0,77,1.0,0.0,0.0,672.964882562781,212.31863304518674,0.0,17838.188161188147,0,60,1,3674,201707057,,,150.0,,0.0,2.0,3.0,0.0,1.0,1.0,3539.6506225779444,0.0,500.0,0.0,0.0,9743.0,0,7,1,83.0,9,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,885.2835156079677,0.049628555748399604,0.09086354465852076,9743.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +7058,2,56.0,3,0.0,4,111,1,0,52,3.0,0.0,0.0,1076.7438121004495,0.0,530.7965826129669,20173.836722052933,0,50,2,3675,201707058,,,,362.0,1.0,1.0,4.0,1.0,2.0,1.5,2404.9686394947503,0.0,800.0,300.0,0.0,25910.0,0,1,3,90.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1607.5403947134164,0.07968441585314019,0.06204324178747265,17273.333333333332,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +7059,0,42.0,2,0.0,1,300,2,47,22,5.0,2855.620816449988,0.0,1211.3367886130059,0.0,0.0,44052.85505288258,31,31,1,3677,201707059,,,237.0,,2.0,0.0,4.0,1.0,3.0,1.8,3673.51776215461,0.0,900.0,0.0,0.0,36050.0,1,1,5,80.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4066.957605062994,0.09231995520337732,0.11281435797678208,20027.777777777777,5,3,5,5_1,5_0,5_1_0 +7060,1,77.0,4,151.0,5,111,2,0,86,2.0,0.0,0.0,847.935752029104,0.0,389.25082724950903,9745.68,0,60,1,3678,201707060,,,,,0.0,5.0,4.0,0.0,1.0,1.0,1710.6784744021722,0.0,630.0,220.0,0.0,11302.0,0,5,3,81.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1237.186579278613,0.12694717857333843,0.10946616344705476,11302.0,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +7061,1,38.0,3,140.0,7,120,4,0,67,2.0,0.0,0.0,1006.7554643139204,0.0,0.0,9609.94,0,50,2,3679,201707061,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2776.031580150205,0.0,748.0,0.0,0.0,11640.0,0,1,3,33.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1006.7554643139204,0.10476188866048282,0.08649101927095536,11640.0,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +7062,2,39.0,3,0.0,5,300,2,42,45,7.0,0.0,152.6718951519784,2874.9059783082002,0.0,0.0,71395.04000000001,20,20,1,3681,201707062,,,732.0,,2.0,0.0,4.0,2.0,4.0,2.1,2537.201713115237,0.0,2136.0,0.0,0.0,51503.0,1,1,2,90.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3027.5778734601786,0.042405997299814924,0.05878449553346754,24525.238095238095,7,4,7,7_1,7_1,7_0_0 +7063,2,67.0,2,0.0,9,111,4,75,74,10.0,0.0,0.0,2049.8510322862307,0.0,0.0,88298.84000000001,41,20,1,3682,201707063,,,185.0,,0.0,2.0,6.0,0.0,2.0,1.5,8085.523443475649,0.0,1523.0,0.0,0.0,64796.0,5,5,1,136.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2049.8510322862307,0.023214925952438677,0.031635456390614096,43197.333333333336,10,5,10,10_1,10_3,10_0_0 +7064,1,77.0,4,143.0,99,111,1,0,77,2.0,0.0,0.0,121.13367886130058,127.39117982711205,0.0,14760.34,0,71,2,3685,201707064,,,,123.0,0.0,8.0,2.0,0.0,1.0,1.0,2746.954168387445,0.0,90.0,0.0,0.0,11336.0,0,5,3,48.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,248.52485868841262,0.01683733970141695,0.021923505530029343,11336.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7065,2,38.0,4,0.0,1,111,4,0,52,2.0,0.0,0.0,1224.7960862642615,0.0,0.0,19273.719999999998,0,20,2,3686,201707065,,,,400.0,1.0,0.0,2.0,0.0,1.0,1.0,2435.271010353867,0.0,910.0,0.0,0.0,12932.0,0,1,3,63.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1224.7960862642615,0.06354746703097594,0.09471049228767874,12932.0,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +7066,2,67.0,2,0.0,5,111,1,77,75,8.0,0.0,0.0,761.0620654774881,0.0,497.74601233948187,51270.3953275813,60,60,2,3687,201707066,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2206.3749241683436,479.77472266995346,367.0,0.0,0.0,42214.0,5,5,1,86.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1258.80807781697,0.024552338045651552,0.02981968251805017,28142.666666666668,8,4,8,8_0,8_2,8_0_0 +7067,2,43.0,2,0.0,9,120,4,56,21,4.0,0.0,555.170527825376,1615.1157181506744,0.0,0.0,32627.482382591494,41,20,1,3688,201707067,,,,778.0,2.0,0.0,6.0,2.0,4.0,2.1,2137.968518791267,0.0,1200.0,0.0,0.0,39140.0,1,1,3,147.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2170.2862459760504,0.06651712260624847,0.055449316453143854,18638.095238095237,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7068,2,52.0,2,0.0,9,112,6,33,37,10.0,1783.1765542721037,0.0,1228.833875559638,198.16405750884095,0.0,117463.11087530162,20,31,1,3689,201707068,,,409.0,,2.0,0.0,6.0,1.0,3.0,2.0,1901.7617638275306,0.0,913.0,0.0,0.0,97478.0,1,1,1,160.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3210.174487340583,0.02732921394146024,0.03293229741419174,48739.0,10,5,10,10_1,10_0,10_0_0 +7069,2,49.0,3,0.0,7,111,2,0,48,10.0,0.0,0.0,398.6020163713847,0.0,349.01284576123334,56388.50632614073,0,31,8,369,201707069,,,,667.0,1.0,1.0,3.0,0.0,1.0,1.0,2337.124991378199,336.4116178376157,157.0,0.0,0.0,42235.0,0,1,3,48.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,747.6148621326181,0.013258284548424665,0.017701310811711096,42235.0,10,5,10,10_0,10_3,10_0_0 +7070,1,63.0,5,64.0,1,400,5,0,75,4.0,190.37472109666587,277.585263912688,111.71217050542164,3629.2331675190585,0.0,14154.760000000002,0,50,1,3691,201707070,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2454.0115654235256,0.0,83.0,0.0,0.0,17978.0,0,5,3,100.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,4208.905323033834,0.297349112456434,0.23411421309566327,17978.0,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +7071,2,58.0,1,0.0,6,111,2,42,37,10.0,0.0,0.0,1041.749638207185,0.0,1946.2541362475451,51267.899999999994,31,12,1,3692,201707071,,,463.0,,2.0,3.0,8.0,0.0,2.0,1.5,1927.938579683315,0.0,774.0,1100.0,0.0,98870.0,1,1,1,316.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2988.00377445473,0.05828215656297079,0.03022154115965136,65913.33333333333,10,5,10,10_1,10_3,10_0_0 +7072,1,25.0,3,257.0,2,400,6,0,67,1.0,0.0,0.0,807.5578590753372,0.0,0.0,7697.46,0,50,2,3693,201707072,,,,43.0,1.0,0.0,1.0,0.0,1.0,1.0,4122.8830098256585,0.0,600.0,0.0,0.0,6034.0,0,1,3,40.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,807.5578590753372,0.1049122514537701,0.13383458055607178,6034.0,1,1,1_1,1_0_1,1_0_1,1_0_1_1 +7073,0,69.0,3,0.0,1,111,2,0,86,2.0,0.0,0.0,629.1069262979371,0.0,1172.327276463327,9780.0,0,71,1,3694,201707073,,,450.0,,0.0,2.0,4.0,0.0,1.0,1.0,1281.879838029615,1130.0,0.0,0.0,0.0,11900.0,0,6,5,80.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1801.4342027612643,0.184195726253708,0.15138102544212304,11900.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +7074,2,63.0,2,0.0,6,111,6,0,74,10.0,0.0,0.0,3634.79759408012,0.0,3011.2005145455814,74870.12209953285,0,12,1,3696,201707074,,,200.0,,0.0,4.0,8.0,0.0,1.0,1.0,3053.7727745936913,2902.480092164732,1500.0,0.0,0.0,81740.0,0,5,1,200.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,6645.998108625701,0.08876702644868759,0.0813065587059665,81740.0,10,5,10,10_1,10_3,10_0_0 +7075,2,31.0,3,0.0,9,111,2,56,62,7.0,0.0,755.0319178425113,348.59580916752054,0.0,693.5742012809434,48212.31744680851,50,50,1,3697,201707075,,,35.0,,2.0,0.0,6.0,2.0,4.0,2.1,2070.9156006559647,0.0,259.0,392.0,0.0,53564.0,1,1,1,90.0,4,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1797.201928290975,0.03727682101723869,0.03355242193060591,25506.666666666664,7,4,7,7_1,7_2,7_0_0 +7076,1,67.0,3,296.0,99,111,1,56,78,2.0,0.0,0.0,1170.9588956592388,0.0,0.0,22531.310875301628,41,71,2,3699,201707076,,,,119.0,1.0,0.0,4.0,5.0,7.0,3.4,1793.4543059674754,0.0,870.0,0.0,0.0,40522.0,1,5,3,65.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1170.9588956592388,0.05197029600895616,0.02889686826067911,11918.235294117647,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +7077,2,60.0,4,0.0,5,111,1,0,68,2.0,0.0,0.0,285.3371102066191,0.0,0.0,9536.591186739997,0,71,2,3702,201707077,,,,283.0,1.0,1.0,2.0,0.0,1.0,1.0,2749.1352809701366,0.0,212.0,0.0,0.0,13240.0,0,1,3,65.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,285.3371102066191,0.029920241375488717,0.021551141254276367,13240.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +7078,2,48.0,3,0.0,6,111,6,56,62,4.0,1020.0912138763013,0.0,1615.1157181506744,0.0,0.0,41696.69536887669,50,50,1,3703,201707078,,,130.0,,3.0,0.0,5.0,3.0,5.0,2.8,2060.259267582053,0.0,1200.0,0.0,0.0,51137.0,1,1,1,116.0,4,3.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2635.2069320269757,0.0631994192516741,0.05153229426886551,18263.214285714286,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7079,1,32.0,5,320.0,7,111,4,0,56,4.0,0.0,0.0,853.3194710896063,0.0,0.0,13279.536974448147,0,50,2,3704,201707079,,,293.0,225.0,1.0,0.0,2.0,1.0,2.0,1.3,1187.158147170241,0.0,634.0,0.0,0.0,21830.0,0,1,3,45.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,853.3194710896063,0.06425822472060005,0.039089302386147794,16792.30769230769,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +7080,2,39.0,3,0.0,9,111,4,0,21,10.0,0.0,0.0,1870.842373524531,0.0,0.0,24113.820000000003,0,42,2,3705,201707080,,,210.0,,1.0,0.0,4.0,0.0,1.0,1.0,3344.570032427157,0.0,1390.0,0.0,0.0,57728.0,0,1,1,80.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1870.842373524531,0.07758382427688897,0.03240788479636452,57728.0,10,5,10,10_0,10_3,10_0_0 +7081,2,79.0,1,0.0,5,112,4,74,74,10.0,0.0,0.0,4710.754177939467,92.0047409862476,0.0,56972.975368876694,20,12,1,3706,201707081,,,,,0.0,2.0,10.0,0.0,2.0,1.5,1800.752597991448,0.0,3500.0,0.0,0.0,109153.0,5,5,1,400.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4802.758918925714,0.0842988958858093,0.04400024661645318,72768.66666666667,10,5,10,10_1,10_0,10_0_0 +7082,1,36.0,3,355.0,5,400,5,52,42,3.0,0.0,1533.6585831176012,1017.5229024349248,106.15931652259337,0.0,26080.94,31,31,1,3707,201707082,,,148.0,,2.0,0.0,4.0,1.0,3.0,1.8,2200.820650158493,0.0,756.0,0.0,0.0,25770.0,1,1,3,150.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2657.3408020751194,0.10188822956822567,0.10311760970411794,14316.666666666666,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +7083,2,78.0,2,0.0,9,111,2,0,75,10.0,0.0,0.0,1529.6651641395176,0.0,2850.498255247693,23627.024433000028,0,33,1,3709,201707083,,,,,0.0,4.0,5.0,0.0,1.0,1.0,2357.827704323864,2747.5800427907684,0.0,0.0,0.0,47140.0,0,6,5,100.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4380.1634193872105,0.1853878566811573,0.09291818878632181,47140.0,10,5,10,10_1,10_2,10_0_0 +7084,2,47.0,2,0.0,5,112,5,0,00,3.0,0.0,0.0,970.4153606555302,106.15931652259337,0.0,19980.952027330717,0,20,1,371,201707084,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1654.0477279085314,0.0,721.0,0.0,0.0,15355.0,0,1,1,140.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1076.5746771781237,0.05388004914408199,0.07011232023302662,15355.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +7085,2,36.0,3,0.0,1,111,2,67,68,4.0,0.0,0.0,1211.3367886130059,0.0,2919.381204371318,22360.2,50,71,1,3710,201707085,,,540.0,420.0,2.0,0.0,3.0,1.0,3.0,1.8,2013.8859880348932,0.0,900.0,1650.0,0.0,32150.0,1,4,3,70.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4130.717992984324,0.184735288279368,0.12848267474290279,17861.11111111111,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +7086,2,89.0,3,0.0,2,111,2,86,75,2.0,0.0,0.0,379.55219376540845,0.0,1592.3897478389006,16239.76,70,50,1,3713,201707086,,,110.0,,0.0,1.0,3.0,0.0,2.0,1.5,2415.7559942666358,0.0,282.0,900.0,0.0,19460.0,6,5,1,80.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1971.941941604309,0.12142679088880064,0.10133309052437353,12973.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +7087,1,51.0,3,240.0,99,111,1,68,63,2.0,0.0,0.0,444.15682249143543,544.9511581493126,0.0,41219.26,71,31,2,3714,201707087,,,390.0,297.0,2.0,0.0,4.0,3.0,5.0,2.8,1487.7920157461601,0.0,330.0,0.0,0.0,34490.0,1,1,3,80.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,989.1079806407481,0.023996257590280564,0.028678109035684202,12317.857142857143,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7088,2,53.0,3,0.0,10,111,5,45,22,8.0,0.0,277.585263912688,1520.900634591885,0.0,888.1996149056979,57698.45697444814,42,50,1,3715,201707088,,,225.0,,2.0,1.0,6.0,1.0,3.0,2.0,2590.419041640662,0.0,1130.0,502.0,0.0,59629.0,1,1,2,155.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2686.6855134102707,0.04656425239586691,0.04505669243841538,29814.5,8,4,8,8_1,8_3,8_0_0 +7089,2,39.0,4,0.0,5,111,3,0,56,2.0,0.0,0.0,1480.522741638118,0.0,0.0,30602.98238259149,0,42,2,3717,201707089,,,380.0,,1.0,0.0,4.0,2.0,3.0,1.8,1176.5673314762353,0.0,1100.0,0.0,0.0,25314.0,0,1,1,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1480.522741638118,0.048378381006431374,0.05848632146788805,14063.333333333332,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +7090,2,64.0,1,0.0,9,112,4,0,75,8.0,0.0,0.0,1647.4180325136879,0.0,0.0,13440.539999999999,0,50,1,3719,201707090,,,228.0,,0.0,4.0,4.0,0.0,1.0,1.0,2435.820031595991,0.0,1224.0,0.0,0.0,28799.0,0,5,1,100.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1647.4180325136879,0.12257082174627568,0.05720400126788041,28799.0,8,4,8,8_1,8_0,8_0_0 +7091,2,39.0,3,0.0,1,112,3,47,37,7.0,0.0,0.0,740.261370819059,0.0,2565.5168159626733,55976.36,60,20,1,372,201707091,270.0,270.0,640.0,,2.0,0.0,6.0,2.0,4.0,2.1,2254.269871979981,0.0,550.0,1450.0,0.0,54408.0,1,1,1,120.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3305.778186781732,0.05905668369257544,0.06075904622080819,25908.571428571428,7,4,7,7_1,7_1,7_1_0 +7092,1,83.0,3,15.0,4,111,1,0,86,3.0,0.0,0.0,659.5055849115254,0.0,1026.2067263850693,11906.0,0,71,1,3720,201707092,,,192.0,278.0,0.0,3.0,3.0,0.0,1.0,1.0,1758.8002984209947,0.0,490.0,580.0,0.0,14534.0,0,5,3,60.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1685.7123112965946,0.141585109297547,0.11598405884798367,14534.0,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +7093,2,55.0,3,0.0,2,111,2,0,52,5.0,0.0,0.0,632.5869896090142,0.0,1326.9914565324173,18129.56,0,50,1,3723,201707093,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1466.463168740435,0.0,470.0,750.0,0.0,22022.0,0,1,1,65.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1959.5784461414314,0.10808747957156331,0.08898276478709614,22022.0,6,3,6,6_1,6_2,6_0_1 +7094,2,58.0,4,0.0,3,111,2,0,47,9.0,0.0,1318.5300035852679,1480.522741638118,0.0,0.0,19169.803786137145,0,31,1,3725,201707094,,,147.0,,1.0,0.0,4.0,0.0,1.0,1.0,2456.0387065303057,0.0,1100.0,0.0,0.0,37512.0,0,1,2,75.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2799.052745223386,0.14601363563499548,0.07461752893003268,37512.0,9,5,9,9_1,9_4,9_0_1 +7095,2,74.0,3,0.0,3,111,4,0,75,7.0,0.0,0.0,1633.9587348624323,0.0,0.0,17949.02,0,41,1,3726,201707095,,,239.0,,0.0,2.0,3.0,0.0,1.0,1.0,2146.7114022737373,0.0,1214.0,0.0,0.0,25034.0,0,5,3,75.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1633.9587348624323,0.0910333118388877,0.06526958276194104,25034.0,7,4,7,7_1,7_3,7_0_1 +7096,2,76.0,2,0.0,5,112,2,77,75,7.0,0.0,0.0,615.0899026623819,0.0,406.94404666994126,40783.70230916274,70,50,1,3727,201707096,,,365.0,,0.0,1.0,6.0,1.0,3.0,2.0,2459.15587351681,0.0,457.0,230.0,0.0,48596.0,5,5,1,113.0,8,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1022.0339493323231,0.025059861941536046,0.02103123609622856,24298.0,7,4,7,7_1,7_0,7_0_0 +7097,2,65.0,1,0.0,5,112,4,78,78,8.0,0.0,0.0,2540.238626978607,53.079658261296686,966.4971113388,28789.58432540059,70,50,1,3728,201707097,,,166.0,,0.0,1.0,5.0,0.0,2.0,1.5,1690.705736349933,931.6014032426281,1502.0,0.0,0.0,39754.0,5,5,1,120.0,8,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3559.8153965787037,0.12364941974649962,0.08954609338880877,26502.666666666668,7,4,7,7_1,7_1,7_0_0 +7098,2,74.0,2,0.0,5,112,4,77,75,8.0,0.0,0.0,1784.702868556495,0.0,0.0,29189.3,41,41,1,3729,201707098,,,600.0,,0.0,2.0,5.0,0.0,2.0,1.5,1786.4341715285102,0.0,1326.0,0.0,0.0,44417.0,5,5,5,120.0,9,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1784.702868556495,0.061142366160082465,0.040180626079125,29611.333333333332,8,4,8,8_1,8_0,8_0_0 +7099,2,37.0,3,0.0,2,400,2,56,67,4.0,0.0,0.0,2590.914797866707,95.54338487033404,0.0,30821.440000000002,50,60,1,373,201707099,,,977.0,,2.0,0.0,5.0,4.0,6.0,2.9,1808.1210592415641,0.0,1925.0,0.0,0.0,50732.0,1,1,2,74.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2686.458182737041,0.08716199446674266,0.052953918290961154,17493.793103448275,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +7100,2,59.0,3,0.0,1,300,6,0,55,4.0,628.2365796189973,0.0,714.6887052816734,113.23660429076627,0.0,26147.71632237629,0,50,1,3730,201707100,,,87.0,,2.0,0.0,5.0,2.0,4.0,2.1,256.3516536554832,0.0,531.0,0.0,0.0,35248.0,0,1,1,100.0,0,0.0,5,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1456.161889191437,0.05568983047078972,0.04131190107783242,16784.761904761905,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7102,2,35.0,4,0.0,9,112,4,46,37,8.0,0.0,0.0,1695.871504058208,0.0,0.0,47574.58,12,41,1,3736,201707102,,,720.0,,2.0,0.0,4.0,3.0,5.0,2.4,2501.1648718665065,0.0,1260.0,0.0,0.0,64542.0,1,1,2,80.0,8,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1695.871504058208,0.035646589083039894,0.0262754718486909,26892.5,7,4,7,7_1,7_1,7_0_0 +7103,2,62.0,3,0.0,99,111,1,0,54,5.0,0.0,0.0,161.51157181506744,0.0,353.8643884086446,15079.119999999999,0,70,2,3737,201707103,,,,428.0,1.0,2.0,4.0,0.0,1.0,1.0,2526.4267932650846,0.0,120.0,200.0,0.0,21320.0,0,1,3,61.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,515.375960223712,0.034178119162372345,0.024173356483288555,21320.0,6,3,6,6_0,6_4,6_0_0 +7104,2,46.0,1,0.0,5,111,2,85,37,8.0,0.0,249.82673752141918,3831.862041312475,0.0,0.0,51888.940353934115,20,31,1,3738,201707104,,,345.0,,1.0,0.0,7.0,1.0,3.0,1.8,1570.4268134692882,0.0,2847.0,0.0,0.0,54289.0,6,1,2,160.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4081.688778833894,0.07866201836061254,0.07518445318266857,30160.555555555555,8,4,8,8_1,8_3,8_0_0 +7105,2,67.0,2,0.0,2,111,2,77,74,10.0,0.0,0.0,1615.1157181506744,0.0,1769.3219420432229,33381.740000000005,31,41,1,3739,201707105,,,240.0,,0.0,2.0,8.0,0.0,2.0,1.5,1980.9384427385717,0.0,1200.0,1000.0,0.0,69772.0,5,5,1,120.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3384.4376601938975,0.10138589720589451,0.04850710399865128,46514.666666666664,10,5,10,10_1,10_3,10_0_1 +7106,2,65.0,3,0.0,5,111,2,0,68,2.0,0.0,0.0,508.7614512174624,0.0,1288.0663738074663,17990.07087530163,0,70,2,374,201707106,,,,524.0,1.0,2.0,3.0,0.0,1.0,1.0,2102.0239037135257,0.0,378.0,728.0,0.0,13241.0,0,1,3,74.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1796.8278250249286,0.09987886303948773,0.13570182199417935,13241.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +7107,2,49.0,2,0.0,4,111,2,0,52,4.0,0.0,0.0,414.5463676586731,0.0,1401.3029780982326,22237.260000000002,0,50,2,3740,201707107,,,,,1.0,2.0,3.0,1.0,2.0,1.5,770.0321684525476,0.0,308.0,792.0,0.0,24531.0,0,1,2,56.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1815.8493457569057,0.08165796261575867,0.07402263852908181,16354.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +7108,2,81.0,1,0.0,5,111,2,77,77,7.0,0.0,0.0,1211.3367886130059,0.0,1769.3219420432229,21329.96,70,70,1,3741,201707108,,,800.0,,0.0,1.0,5.0,0.0,2.0,1.5,1973.3573450090482,0.0,900.0,1000.0,0.0,38640.0,5,5,1,95.0,6,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2980.6587306562287,0.13974047446203502,0.07713920110393967,25760.0,7,4,7,7_1,7_2,7_0_0 +7109,2,55.0,1,0.0,6,111,2,0,34,9.0,0.0,0.0,714.6887052816734,0.0,1896.713121870335,27648.76,0,10,1,3743,201707109,,,,,1.0,0.0,5.0,1.0,2.0,1.5,1905.3434021374312,0.0,531.0,1072.0,0.0,59339.0,0,1,2,140.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2611.4018271520085,0.09444914806855746,0.044008187316132874,39559.333333333336,9,5,9,9_1,9_3,9_0_0 +7110,2,62.0,3,0.0,5,120,4,77,75,10.0,0.0,0.0,3230.231436301349,0.0,0.0,30972.71,31,50,1,3748,201707110,,,600.0,,0.0,2.0,5.0,0.0,2.0,1.5,2031.5803771018243,0.0,2400.0,0.0,0.0,63745.0,5,5,1,160.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3230.231436301349,0.104292825403439,0.05067427149268725,42496.666666666664,10,5,10,10_1,10_0,10_0_0 +7111,2,30.0,2,0.0,2,111,4,47,43,8.0,0.0,0.0,2018.894647688343,0.0,0.0,49657.119999999995,31,33,1,375,201707111,,,280.0,,2.0,0.0,4.0,1.0,3.0,1.8,2550.118336242817,0.0,1500.0,0.0,0.0,51494.0,1,1,2,120.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2018.894647688343,0.040656700342032386,0.03920640555576073,28607.777777777777,8,4,8,8_1,8_3,8_0_1 +7112,2,49.0,3,0.0,7,111,2,42,38,7.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,48657.08,30,20,1,3750,201707112,,,348.0,,2.0,2.0,7.0,1.0,3.0,2.0,1377.413819649222,1800.0,0.0,0.0,0.0,53503.0,1,1,3,130.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2869.541207938297,0.058974792731875746,0.05363327678706422,26751.5,7,4,7,7_1,7_3,7_0_0 +7113,2,51.0,3,0.0,1,112,2,54,21,8.0,0.0,0.0,1372.8483604280732,0.0,2477.050718860512,28649.24,42,31,1,3751,201707113,,,640.0,750.0,2.0,3.0,5.0,0.0,2.0,1.5,412.1975289633025,0.0,1020.0,1400.0,0.0,43560.0,1,1,3,150.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3849.899079288585,0.13438049593247797,0.08838152156309884,29040.0,8,4,8,8_1,8_1,8_1_0 +7114,2,33.0,9,0.0,4,111,2,46,43,8.0,0.0,0.0,511.45331074771354,0.0,955.4338487033403,52262.625846751296,50,33,8,3753,201707114,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3543.2749523173848,0.0,380.0,540.0,0.0,47615.0,1,1,1,70.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1466.8871594510538,0.02806761305397052,0.030807248964634125,31743.333333333332,8,4,8,8_0,8_2,8_0_1 +7115,1,30.0,4,104.0,4,111,1,0,52,2.0,0.0,0.0,746.0206028665804,0.0,1390.1934074874853,16151.59,0,41,2,3754,201707115,,,,167.0,1.0,0.0,4.0,1.0,2.0,1.3,597.6313643542078,1340.0,0.0,0.0,0.0,16048.0,0,4,3,68.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2136.2140103540655,0.13226029204270698,0.13311403354648962,12344.615384615385,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7116,1,41.0,4,390.0,1,111,1,0,85,1.0,0.0,0.0,89.07708690944243,0.0,165.99324268507286,5142.140000000001,0,30,2,3755,201707116,,,,,0.0,0.0,2.0,2.0,3.0,1.6,1701.028859650065,160.0,0.0,0.0,0.0,15300.0,0,6,3,45.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,255.07032959451527,0.049603925524103816,0.01667126337219054,9562.5,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +7117,2,48.0,2,0.0,9,111,4,31,37,2.0,0.0,0.0,2288.080600713455,0.0,0.0,74449.67087530163,10,12,2,3756,201707117,,,,,2.0,0.0,6.0,3.0,5.0,3.0,4051.567021664453,0.0,1700.0,0.0,0.0,54978.0,1,1,2,135.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2288.080600713455,0.0307332534020982,0.041618112712602406,18326.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7118,2,31.0,1,0.0,9,120,2,52,65,4.0,0.0,0.0,1345.929765125562,0.0,0.0,29900.34,50,43,1,3757,201707118,,,510.0,,2.0,0.0,5.0,2.0,4.0,2.1,1986.6145388588225,0.0,1000.0,0.0,0.0,35080.0,1,1,2,96.0,0,1.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1345.929765125562,0.045013861552262016,0.038367439142689905,16704.761904761905,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7119,2,26.0,1,0.0,99,111,2,56,56,5.0,0.0,0.0,471.07541779394666,0.0,1592.3897478389006,75421.85999999999,44,42,2,3758,201707119,,,,600.0,2.0,0.0,3.0,1.0,3.0,1.8,2956.328554392422,0.0,350.0,900.0,0.0,36593.0,1,1,3,66.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2063.4651656328474,0.027358980083928557,0.05638961456105942,20329.444444444445,5,3,5,5_0,5_3,5_0_0 +7120,2,49.0,3,0.0,99,111,1,67,65,6.0,0.0,0.0,722.7642838724267,0.0,212.31863304518674,42022.816722052936,71,71,8,3759,201707120,,,444.0,315.0,3.0,2.0,5.0,2.0,4.0,2.5,1330.7078673956464,0.0,537.0,120.0,0.0,56012.0,1,1,3,93.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,935.0829169176135,0.02225179057135635,0.01669433187384156,22404.8,6,3,6,6_0,6_2,6_0_0 +7121,2,55.0,3,0.0,1,111,2,0,47,7.0,0.0,0.0,1122.5054241147186,0.0,0.0,13943.08,0,50,1,376,201707121,,,134.0,,1.0,0.0,2.0,0.0,1.0,1.0,2042.6891775885254,0.0,834.0,0.0,0.0,26024.0,0,1,1,28.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1122.5054241147186,0.08050627437515374,0.043133470032074954,26024.0,7,4,7,7_1,7_3,7_1_0 +7122,2,58.0,2,0.0,9,111,2,38,47,10.0,0.0,0.0,94.21508355878933,120.31389205893916,0.0,74779.9,31,42,2,3760,201707122,,,166.0,802.0,2.0,0.0,6.0,0.0,2.0,1.5,5974.634062920009,0.0,70.0,0.0,0.0,84950.0,1,1,3,105.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,214.5289756177285,0.0028688053289417145,0.0025253558047996292,56633.333333333336,10,5,10,10_0,10_2,10_0_0 +7123,2,71.0,5,0.0,1,112,5,0,72,6.0,0.0,277.585263912688,1076.7438121004495,86.69677516011792,0.0,23315.76,0,30,1,3762,201707123,,,170.0,,0.0,3.0,8.0,0.0,1.0,1.0,6139.962973489577,0.0,800.0,0.0,0.0,22280.0,0,5,1,160.0,7,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1441.0258511732557,0.061804798607176255,0.06467800050149262,22280.0,6,3,6,6_1,6_0,6_1_0 +7124,2,66.0,3,0.0,1,221,2,72,72,3.0,0.0,0.0,1035.0199893815573,0.0,1551.6953431719064,16227.619999999999,50,50,1,3763,201707124,,,485.0,,0.0,3.0,6.0,0.0,2.0,1.5,1604.703619525658,0.0,769.0,877.0,0.0,22487.0,6,5,1,120.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2586.7153325534637,0.15940201536352613,0.11503158858689304,14991.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +7125,1,27.0,4,272.0,9,111,2,0,55,1.0,0.0,0.0,302.83419715325147,0.0,973.1270681237726,8447.279999999999,0,41,2,3764,201707125,,,,58.0,1.0,0.0,2.0,0.0,1.0,1.0,3143.6259460308875,0.0,225.0,550.0,0.0,9085.0,0,4,3,50.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1275.961265277024,0.15104995516628125,0.14044702974981002,9085.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7126,2,72.0,2,0.0,9,112,2,75,78,5.0,0.0,0.0,1736.249397011975,297.2460862632615,0.0,36657.955699499544,50,50,1,3765,201707126,,,393.0,,0.0,4.0,4.0,0.0,2.0,1.5,1952.2306217959047,0.0,1290.0,0.0,0.0,29790.0,5,5,2,80.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2033.4954832752364,0.05547214634511105,0.0682610098447545,19860.0,5,3,5,5_1,5_0,5_0_0 +7127,2,63.0,2,0.0,6,111,6,0,78,4.0,0.0,0.0,659.5055849115254,79.61948739194503,0.0,32060.80083603497,0,50,1,3766,201707127,,,42.0,,0.0,0.0,2.0,0.0,1.0,1.0,3693.260015362258,0.0,490.0,0.0,0.0,17508.0,0,5,1,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,739.1250723034705,0.023053855581571296,0.042216419482720494,17508.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +7128,2,38.0,2,0.0,1,111,2,85,81,8.0,0.0,0.0,186.5523947811766,0.0,278.22791735376944,24962.98708230039,71,50,2,3767,201707128,,,,,1.0,0.0,2.0,1.0,3.0,1.8,4070.74141185823,165.8560052665561,70.0,60.0,0.0,46521.0,6,4,1,34.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,464.78031213494603,0.01861877789715683,0.009990763572041574,25845.0,7,4,7,7_0,7_4,7_1_0 +7130,2,50.0,3,0.0,1,120,2,45,67,7.0,2379.684013708323,0.0,589.5172371249961,398.09743695972514,0.0,27377.84784974977,42,50,1,377,201707130,,,200.0,,2.0,2.0,8.0,0.0,2.0,1.5,1650.603451663422,0.0,438.0,0.0,0.0,36029.0,1,4,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3367.2986877930443,0.12299354961255002,0.09346078680488064,24019.333333333332,7,4,7,7_1,7_0,7_1_0 +7131,2,34.0,2,0.0,9,120,2,46,48,10.0,0.0,0.0,119.78774909617502,0.0,0.0,89454.28,31,31,1,3771,201707131,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2337.7410211264364,0.0,89.0,0.0,0.0,86214.0,1,1,1,120.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,119.78774909617502,0.0013390946648519783,0.0013894234010273857,41054.28571428571,10,5,10,10_1,10_0,10_0_0 +7132,2,82.0,2,0.0,4,111,1,74,75,9.0,0.0,0.0,484.5347154452023,0.0,212.31863304518674,50638.590875301634,44,33,2,3772,201707132,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2564.332715167874,0.0,360.0,120.0,0.0,49687.0,5,5,1,107.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,696.8533484903891,0.013761310029467486,0.014024862609744783,33124.666666666664,9,5,9,9_0,9_3,9_0_1 +7133,2,51.0,4,0.0,4,111,5,56,47,4.0,0.0,693.9631597817199,969.0694308904046,0.0,0.0,13698.580315994117,31,33,1,3774,201707133,,,,,2.0,0.0,5.0,1.0,3.0,2.0,2616.9145633138874,0.0,720.0,0.0,0.0,35466.0,1,1,1,90.0,7,5.0,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1663.0325906721246,0.1214018206492836,0.04689089806214754,17733.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +7134,1,25.0,3,117.0,1,111,2,0,84,6.0,0.0,0.0,942.1508355878933,0.0,88.46609710216114,24828.4,0,0,2,3776,201707134,,,,493.0,0.0,0.0,3.0,0.0,1.0,1.0,6775.800007522511,0.0,700.0,50.0,0.0,20604.0,0,3,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1030.6169326900545,0.04150959919648686,0.050020235521746,20604.0,5,3,5,5_0,5_4,5_1_0 +7135,2,40.0,1,0.0,9,112,1,42,37,9.0,0.0,0.0,323.0231436301349,0.0,1576.4658503605117,33512.0,44,20,1,3777,201707135,,,388.0,602.0,2.0,0.0,3.0,0.0,2.0,1.5,3076.8988247841708,0.0,240.0,891.0,0.0,53006.0,1,1,3,69.0,7,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1899.4889939906466,0.056680860407932875,0.03583535814795771,35337.333333333336,9,5,9,9_1,9_2,9_0_0 +7136,1,33.0,2,143.0,1,111,1,56,21,1.0,0.0,0.0,1372.8483604280732,0.0,2059.4907405383115,55225.43999999999,43,50,1,3778,201707136,,,768.0,,2.0,0.0,6.0,2.0,4.0,2.1,2472.3267081106005,0.0,1020.0,1164.0,0.0,16346.0,1,1,1,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3432.3391009663846,0.062151412482478824,0.20998036834493972,7783.809523809524,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +7137,2,59.0,2,0.0,6,111,4,85,75,7.0,0.0,0.0,884.6368231341769,0.0,645.2572531169102,27748.843623036868,41,50,1,3779,201707137,,,400.0,,0.0,2.0,7.0,0.0,2.0,1.5,2357.37865021603,621.9600197495854,400.0,0.0,0.0,38395.0,6,5,1,160.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1529.894076251087,0.05513361554933342,0.03984617987370978,25596.666666666668,7,4,7,7_1,7_3,7_0_0 +7138,2,69.0,2,0.0,4,111,2,0,75,4.0,0.0,0.0,1095.5868288122074,0.0,1557.0033089980361,24775.48,0,44,1,3780,201707138,,,320.0,,0.0,2.0,4.0,0.0,1.0,1.0,7657.120745290335,0.0,814.0,880.0,0.0,17870.0,0,5,1,90.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2652.5901378102435,0.10706513608657607,0.1484381722333656,17870.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +7139,2,42.0,3,0.0,9,112,4,34,33,8.0,0.0,138.792631956344,2422.6735772260117,0.0,0.0,59083.77632237629,20,20,1,3782,201707139,,,700.0,,2.0,0.0,5.0,2.0,4.0,2.3,2224.292385656483,0.0,1800.0,0.0,0.0,70847.0,1,1,2,100.0,8,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2561.4662091823557,0.0433531227795315,0.03615490012537377,30803.04347826087,8,4,8,8_1,8_1,8_0_0 +7140,1,51.0,3,105.0,1,112,2,56,63,5.0,0.0,208.188947934516,2230.205620813056,123.8525359430256,0.0,41035.31999999999,71,71,1,3783,201707140,,,260.0,,3.0,1.0,5.0,2.0,4.0,2.5,1927.6142896907345,0.0,1657.0,0.0,0.0,49833.0,1,1,2,120.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2562.2471046905976,0.062440042009922134,0.05141667378425135,19933.2,5,3,5,5_1,5_0,5_1_0 +7141,1,43.0,3,372.0,8,221,2,68,56,2.0,0.0,0.0,726.8020731678034,0.0,1273.9117982711205,21806.22,71,71,2,3784,201707141,,,,228.0,2.0,0.0,3.0,2.0,4.0,2.3,3834.9103027959945,0.0,540.0,720.0,0.0,29981.0,4,1,3,92.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2000.713871438924,0.09174968754047808,0.066732726441377,13035.217391304348,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +7142,2,81.0,3,0.0,1,112,2,0,77,3.0,1784.7630102812425,0.0,619.1276919577585,0.0,0.0,13742.64,0,71,1,3785,201707142,,,260.0,,0.0,5.0,4.0,0.0,1.0,1.0,4302.790301845614,0.0,460.0,0.0,0.0,15373.0,0,5,1,40.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2403.8907022390013,0.17492204570875766,0.1563709557171015,15373.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7143,1,40.0,3,385.0,6,111,2,0,85,2.0,0.0,0.0,1049.8252167979383,0.0,1415.4575536345783,16005.04,0,71,1,3787,201707143,,,400.0,,2.0,0.0,6.0,5.0,6.0,2.9,531.6380688072212,0.0,780.0,800.0,0.0,38640.0,0,6,3,90.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2465.2827704325164,0.15403165318128015,0.06380131393458893,13324.137931034484,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +7144,2,19.0,2,0.0,1,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,7593.957171918203,0,41,8,3788,201707144,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3782.894204140529,0.0,0.0,0.0,0.0,3781.0,0,3,3,20.0,9,7.0,1,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,3781.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +7145,2,66.0,1,0.0,1,300,4,77,78,4.0,0.0,0.0,1201.9152802571268,274.24490101669954,0.0,32210.434007939442,71,71,1,3789,201707145,,,410.0,,0.0,2.0,5.0,0.0,2.0,1.5,1670.203894055795,0.0,893.0,0.0,0.0,23843.0,7,5,1,88.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1476.1601812738263,0.045828633693975454,0.06191167979171355,15895.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +7146,2,51.0,2,0.0,1,112,2,81,45,7.0,0.0,0.0,1037.7118489118084,0.0,1764.0139762170932,29153.890875301622,20,20,1,379,201707146,,,491.0,,2.0,0.0,6.0,0.0,2.0,1.5,3494.408281354908,0.0,771.0,997.0,0.0,37552.0,4,1,1,153.0,8,1.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2801.7258251289013,0.09610126610930161,0.0746092305370926,25034.666666666668,7,4,7,7_1,7_1,7_1_0 +7147,1,69.0,5,45.0,3,111,2,0,78,2.0,0.0,0.0,713.3427755165478,0.0,955.4338487033403,15784.5,0,70,2,3790,201707147,,,,153.0,0.0,3.0,1.0,0.0,1.0,1.0,2738.277292520344,0.0,530.0,540.0,0.0,11740.0,0,5,3,38.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1668.7766242198882,0.10572248878456006,0.1421445165434317,11740.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7148,2,51.0,3,0.0,8,222,2,22,52,3.0,0.0,0.0,2018.894647688343,0.0,0.0,27949.280315994118,31,50,1,3792,201707148,,,91.0,,2.0,2.0,5.0,0.0,2.0,1.5,3607.9764779805037,0.0,1500.0,0.0,0.0,22290.0,1,1,1,120.0,1,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.07223422660128462,0.09057400842029353,14860.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7149,2,84.0,3,0.0,3,111,2,0,86,7.0,2538.3296146222115,0.0,658.1596551463998,169.8549064361494,0.0,23125.651191295743,0,41,1,3794,201707149,,,850.0,,0.0,2.0,5.0,0.0,1.0,1.0,1496.428343501992,0.0,489.0,0.0,0.0,26513.0,0,6,1,98.0,9,7.0,1,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3366.344176204761,0.14556754092493698,0.1269695687475865,26513.0,7,4,7,7_1,7_3,7_0_1 +7151,2,55.0,2,0.0,1,112,2,55,47,9.0,0.0,208.188947934516,0.0,0.0,0.0,48152.9716935026,60,50,1,3796,201707151,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1614.0438457137384,0.0,0.0,0.0,0.0,47577.0,1,1,2,100.0,9,2.0,3,3,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,208.188947934516,0.004323491170174393,0.00437583176607428,31718.0,8,4,8,8_1,8_1,8_1_0 +7152,2,71.0,2,0.0,1,111,4,0,75,8.0,0.0,0.0,1144.0403003567276,0.0,0.0,57260.49999999999,0,31,2,3797,201707152,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3768.694466718593,0.0,850.0,0.0,0.0,30469.0,0,5,1,108.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1144.0403003567276,0.01997957231174593,0.037547681261502756,30469.0,8,4,8,8_0,8_4,8_1_0 +7153,2,25.0,2,0.0,5,111,2,47,47,8.0,0.0,0.0,269.1859530251124,0.0,1698.549064361494,36657.416322376295,30,30,1,3798,201707153,,,120.0,,2.0,0.0,2.0,0.0,2.0,1.5,2254.4242636790023,0.0,200.0,960.0,0.0,43793.0,1,1,2,78.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1967.7350173866064,0.05367904273672087,0.04493263803316983,29195.333333333332,8,4,8,8_1,8_2,8_0_0 +7154,2,57.0,4,0.0,6,112,2,78,42,2.0,0.0,0.0,486.58358724282925,0.0,906.7380881672105,21539.06,71,71,1,3799,201707154,,,264.0,,1.0,2.0,3.0,1.0,3.0,2.0,2757.190498159227,874.0,0.0,0.0,0.0,24067.0,7,1,3,86.0,9,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1393.32167541004,0.06468813752364494,0.057893450592514224,12033.5,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +7155,2,63.0,4,0.0,7,111,2,52,78,3.0,1522.997768773327,0.0,928.6915379366377,123.8525359430256,0.0,22087.980000000003,71,71,1,38,201707155,,,220.0,,1.0,3.0,4.0,0.0,2.0,1.5,2327.8883973261636,0.0,690.0,0.0,0.0,20633.0,1,5,1,100.0,7,5.0,3,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2575.54184265299,0.11660377466173863,0.12482633851853778,13755.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7156,2,75.0,3,0.0,6,300,2,78,75,7.0,0.0,0.0,1345.929765125562,318.4779495677801,0.0,27075.800836034974,70,70,1,380,201707156,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1723.1144478629585,0.0,1000.0,0.0,0.0,39432.0,5,5,1,114.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1664.407714693342,0.061472150898605915,0.042209568743491126,26288.0,7,4,7,7_1,7_0,7_0_0 +7157,2,60.0,3,0.0,6,111,1,0,52,9.0,0.0,0.0,605.6683943065029,0.0,0.0,26874.89569949955,0,71,2,3800,201707157,,,,500.0,2.0,3.0,3.0,0.0,2.0,1.5,3564.3673364820784,0.0,450.0,0.0,0.0,55802.0,0,1,3,80.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,605.6683943065029,0.02253658585613716,0.010853883271325453,37201.333333333336,9,5,9,9_0,9_4,9_0_0 +7158,1,21.0,3,421.0,99,111,1,52,55,2.0,0.0,0.0,646.0462872602698,0.0,0.0,13399.08,71,60,8,3802,201707158,,,,,2.0,1.0,4.0,2.0,4.0,2.1,1258.2502831256952,0.0,480.0,0.0,0.0,23192.0,4,1,3,75.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,646.0462872602698,0.04821571983003831,0.02785642839169842,11043.809523809523,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7159,2,65.0,3,0.0,4,221,2,77,78,5.0,1745.1016100527704,0.0,1018.8688322000504,53.079658261296686,0.0,33365.55087530163,50,50,1,3803,201707159,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,2530.6956292583213,0.0,757.0,0.0,0.0,28628.0,6,5,1,110.0,1,1.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2817.0501005141173,0.08442989930070052,0.09840191772090671,19085.333333333332,5,3,5,5_1,5_1,5_0_1 +7160,2,82.0,2,0.0,1,400,2,75,74,8.0,1277.0970873568,0.0,916.5781700505077,40.694404666994124,0.0,20003.270875301627,33,20,1,3804,201707160,,,,,0.0,2.0,6.0,0.0,2.0,1.5,2041.758187673235,0.0,681.0,0.0,0.0,41624.0,5,5,5,120.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2234.369662074302,0.111700215229956,0.05367984004599034,27749.333333333332,8,4,8,8_1,8_0,8_1_0 +7161,1,37.0,2,20.0,4,111,2,0,22,4.0,0.0,0.0,969.0694308904046,0.0,3184.779495677801,25062.5,0,20,1,3806,201707161,,,400.0,680.0,1.0,0.0,4.0,2.0,3.0,1.6,1101.9552832781874,0.0,720.0,1800.0,0.0,26426.0,0,1,3,103.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,4153.848926568206,0.16573960804262167,0.15718795604965585,16516.25,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +7162,2,33.0,3,0.0,2,111,2,0,56,3.0,31.729120182777642,0.0,444.15682249143543,0.0,0.0,25081.38,0,41,2,3807,201707162,,,,480.0,1.0,0.0,3.0,1.0,2.0,1.3,2699.753711152376,0.0,330.0,0.0,0.0,17673.0,0,1,3,65.0,8,7.0,2,5,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,475.8859426742131,0.018973674601406025,0.026927286973021734,13594.615384615385,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +7163,2,44.0,3,0.0,6,111,4,43,48,9.0,0.0,0.0,2032.3539453395986,0.0,0.0,42006.48739635203,44,30,1,3808,201707163,,,412.0,,2.0,0.0,5.0,2.0,4.0,2.1,2542.852615136181,0.0,1510.0,0.0,0.0,74415.0,1,1,2,120.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2032.3539453395986,0.048381906493712074,0.02731107902089093,35435.71428571428,9,5,9,9_1,9_3,9_0_0 +7164,2,51.0,2,0.0,7,111,2,53,37,10.0,1158.112886671384,0.0,935.4211867622655,0.0,0.0,126991.98000000001,30,20,1,381,201707164,,,745.0,,4.0,0.0,4.0,2.0,4.0,2.5,1768.3219903652796,0.0,695.0,0.0,0.0,107453.0,1,1,2,112.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2093.5340734336496,0.016485561319964058,0.019483253826637223,42981.2,10,5,10,10_1,10_3,10_0_0 +7165,2,33.0,2,0.0,9,111,4,34,47,9.0,0.0,0.0,1195.185631431499,0.0,0.0,49200.56000000001,20,43,2,3811,201707165,,,300.0,460.0,2.0,0.0,3.0,0.0,2.0,1.5,2057.7653833800846,0.0,888.0,0.0,0.0,48119.0,1,1,3,60.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1195.185631431499,0.024292114387143127,0.02483812280869301,32079.333333333332,9,5,9,9_0,9_2,9_0_0 +7166,2,60.0,3,0.0,1,111,1,52,53,8.0,0.0,0.0,1076.7438121004495,0.0,530.7965826129669,80981.18450820382,71,50,8,3812,201707166,,,110.0,,3.0,1.0,4.0,1.0,3.0,2.0,4849.620079373306,0.0,800.0,300.0,0.0,57995.0,1,1,3,73.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1607.5403947134164,0.019850788852694097,0.02771860323671724,28997.5,8,4,8,8_0,8_4,8_1_0 +7167,2,61.0,4,0.0,1,212,5,0,78,1.0,0.0,534.3516330319244,651.430006320772,0.0,0.0,15904.880875301627,0,71,1,3813,201707167,,,,,0.0,0.0,3.0,1.0,2.0,1.5,2291.6122237651985,0.0,484.0,0.0,0.0,14834.0,0,5,1,95.0,2,0.0,2,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1185.7816393526964,0.07455457533127915,0.0799367425746728,9889.333333333334,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +7168,2,82.0,3,0.0,3,400,2,0,71,2.0,0.0,0.0,511.45331074771354,0.0,3184.779495677801,10690.119999999999,0,70,1,3814,201707168,,,84.0,,0.0,5.0,5.0,0.0,1.0,1.0,2233.9045184614124,0.0,380.0,1800.0,0.0,12991.0,0,5,1,100.0,0,1.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3696.232806425515,0.34576158232325876,0.284522577663422,12991.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +7169,1,56.0,3,324.0,99,111,2,55,52,2.0,0.0,0.0,928.6915379366377,0.0,1273.9117982711205,25461.28,50,70,1,3815,201707169,,,279.0,127.0,2.0,1.0,3.0,1.0,3.0,2.0,1747.4755644112277,0.0,690.0,720.0,0.0,25379.0,4,1,3,70.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2202.6033362077583,0.08650795781703663,0.08678842098616014,12689.5,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +7170,1,65.0,4,49.0,9,111,1,0,78,2.0,0.0,0.0,550.4852739363548,0.0,0.0,11175.288161188146,0,50,2,3817,201707170,,,88.0,307.0,0.0,3.0,2.0,0.0,1.0,1.0,2802.356768970904,0.0,409.0,0.0,0.0,12998.0,0,5,3,51.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,550.4852739363548,0.049259156989633075,0.042351536693056996,12998.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7171,2,86.0,2,0.0,1,222,4,0,74,1.0,0.0,0.0,269.1859530251124,353.8643884086446,0.0,18774.516658454027,0,10,1,3818,201707171,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2616.3150944706103,0.0,200.0,0.0,0.0,9893.0,0,5,1,120.0,1,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,623.050341433757,0.033185959072517694,0.06297890846393986,9893.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +7172,2,37.0,4,0.0,8,111,2,43,64,6.0,0.0,159.6115267497956,2907.2082926712137,106.15931652259337,0.0,20870.129901412736,50,43,1,3819,201707172,,,564.0,,2.0,0.0,5.0,2.0,4.0,2.1,2409.819055539917,0.0,2160.0,0.0,0.0,45153.0,1,1,2,110.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3172.979135943603,0.1520344698826632,0.07027172360515588,21501.42857142857,6,3,6,6_1,6_3,6_0_0 +7173,2,69.0,1,0.0,7,112,2,74,74,10.0,0.0,0.0,1170.9588956592388,0.0,2938.843745733793,62839.439999999995,20,20,1,382,201707173,,,590.0,,0.0,0.0,3.0,0.0,2.0,1.5,1701.71044129172,0.0,870.0,1661.0,0.0,103820.0,5,5,1,150.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4109.802641393032,0.06540164332134456,0.03958584705637673,69213.33333333333,10,5,10,10_1,10_2,10_0_0 +7174,2,26.0,2,0.0,9,112,2,85,21,3.0,0.0,1110.341055650752,149.39820392893736,0.0,0.0,27425.179999999997,44,44,1,3820,201707174,,,32.0,,1.0,0.0,5.0,1.0,3.0,1.8,3098.626764780018,0.0,111.0,0.0,0.0,25878.0,4,1,2,110.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1259.7392595796894,0.045933673346161795,0.048679931199462456,14376.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7175,1,58.0,4,256.0,9,300,2,0,78,2.0,0.0,0.0,242.26735772260116,0.0,1008.513506964637,14076.719999999998,0,71,1,3821,201707175,,,120.0,,0.0,4.0,3.0,0.0,1.0,1.0,2349.424196868493,0.0,180.0,570.0,0.0,12680.0,0,7,3,64.0,0,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1250.7808646872381,0.08885456730596604,0.098642024028962,12680.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +7176,2,52.0,3,0.0,4,111,4,33,43,8.0,0.0,0.0,2414.597998635258,176.9321942043223,0.0,38037.88,31,33,1,3822,201707176,,,433.0,,3.0,2.0,6.0,2.0,4.0,2.5,734.157756735112,0.0,1794.0,0.0,0.0,73097.0,1,1,2,118.0,6,4.0,4,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2591.53019283958,0.06813024786974406,0.03545330441522333,29238.8,8,4,8,8_1,8_2,8_0_1 +7177,2,86.0,3,0.0,2,111,2,77,74,10.0,0.0,0.0,1009.4473238441715,0.0,5704.293941147351,35026.41866945331,41,12,1,3823,201707177,,,,,0.0,5.0,7.0,0.0,2.0,1.5,1725.7735002088589,0.0,750.0,3224.0,0.0,65421.0,5,5,1,150.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,6713.741264991522,0.19167649791289124,0.10262364172041887,43614.0,10,5,10,10_1,10_3,10_0_1 +7178,2,56.0,3,0.0,1,112,4,77,54,8.0,169.75079297786039,129.0771477193999,1076.7438121004495,84.9274532180747,0.0,54452.58000000001,41,41,1,3824,201707178,,,220.0,,1.0,2.0,3.0,0.0,2.0,1.5,3121.0718947285172,0.0,800.0,0.0,0.0,41065.0,5,1,1,70.0,9,0.0,3,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1460.4992060157847,0.02682148772410388,0.03556554744955034,27376.666666666668,8,4,8,8_1,8_0,8_1_0 +7179,2,75.0,2,0.0,1,400,5,77,78,6.0,0.0,2102.7083741386114,1154.807738477732,283.09151072691566,0.0,21826.75087530163,71,71,1,3825,201707179,,,86.0,,0.0,4.0,5.0,0.0,2.0,1.5,1954.5266995074073,0.0,858.0,0.0,0.0,29477.0,5,5,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3540.607623343259,0.16221414005094473,0.12011424579649418,19651.333333333332,5,3,5,5_1,5_0,5_1_0 +7180,2,57.0,2,0.0,1,400,2,43,21,2.0,2379.684013708323,0.0,686.4241802140366,0.0,0.0,36110.6,60,60,1,3826,201707180,,,500.0,,2.0,1.0,4.0,0.0,2.0,1.5,1916.3621375058972,0.0,510.0,0.0,0.0,19022.0,1,1,1,170.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3066.1081939223595,0.0849088133102845,0.16118747733794342,12681.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7181,2,46.0,4,0.0,1,111,4,0,21,2.0,0.0,0.0,0.0,0.0,0.0,7041.145846751299,0,44,1,3827,201707181,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3580.400672138223,0.0,0.0,0.0,0.0,14766.0,0,1,3,76.0,4,3.0,1,4,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,14766.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +7182,1,34.0,5,420.0,99,211,2,0,56,2.0,0.0,0.0,1722.7900993607193,106.15931652259337,0.0,24482.18,0,50,1,3828,201707182,,,,135.0,1.0,0.0,4.0,2.0,3.0,1.6,489.0373148039078,0.0,1280.0,0.0,0.0,18960.0,0,4,3,100.0,1,3.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1828.9494158833127,0.07470533326212424,0.09646357678709455,11850.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +7183,1,61.0,3,256.0,9,112,2,0,72,2.0,0.0,0.0,484.5347154452023,0.0,1380.0711147937138,11412.46,0,50,1,383,201707183,,,440.0,,0.0,2.0,3.0,0.0,1.0,1.0,3540.5097668919702,0.0,360.0,780.0,0.0,12830.0,0,7,3,55.0,9,0.0,1,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1864.605830238916,0.1633833398092012,0.14533170929375808,12830.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +7184,2,48.0,5,0.0,6,111,2,85,52,3.0,0.0,0.0,1022.9066214954271,0.0,1769.3219420432229,13793.007849749776,20,20,2,3830,201707184,,,,293.0,1.0,0.0,2.0,0.0,2.0,1.5,2831.6168180764234,0.0,760.0,1000.0,0.0,22692.0,6,1,3,45.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2792.2285635386497,0.20243797393251717,0.1230490288885356,15128.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7185,2,51.0,1,0.0,4,111,2,77,33,10.0,0.0,0.0,1293.6051494803705,0.0,2557.0429820717904,76692.70027116715,31,30,1,3831,201707185,,,480.0,,1.0,1.0,6.0,2.0,4.0,2.3,2131.0063195272346,776.3345027021901,640.0,990.0,0.0,126145.0,5,1,1,160.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3850.648131552161,0.05020879585589221,0.030525570823672448,54845.65217391305,10,5,10,10_1,10_4,10_0_1 +7186,2,48.0,3,0.0,6,112,2,0,52,2.0,0.0,0.0,220.73248148059216,0.0,0.0,37398.6858467513,0,50,1,3832,201707186,,,552.0,,1.0,1.0,4.0,2.0,3.0,1.8,263.60560288100197,0.0,164.0,0.0,0.0,24550.0,0,1,1,100.0,10,2.0,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,220.73248148059216,0.005902145395832577,0.00899113977517687,13638.888888888889,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +7187,2,67.0,2,0.0,1,400,2,75,77,5.0,1189.8420068541616,0.0,497.99401309645793,0.0,0.0,17927.72,50,70,1,3833,201707187,,,200.0,,0.0,3.0,5.0,0.0,2.0,1.5,2721.839240685615,0.0,370.0,0.0,0.0,29460.0,5,5,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1687.8360199506196,0.09414671915617934,0.05729246503566258,19640.0,5,3,5,5_1,5_0,5_1_0 +7188,1,40.0,3,462.0,99,111,1,0,56,4.0,0.0,0.0,1744.3249756027283,0.0,1868.4039707976433,25272.9,0,71,2,3834,201707188,1056.0,1056.0,,,1.0,0.0,5.0,3.0,4.0,2.3,604.2555280192473,0.0,1296.0,1056.0,0.0,39024.0,0,1,3,80.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3612.7289464003716,0.14294872952452514,0.09257710502255975,16966.956521739132,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +7189,2,47.0,4,0.0,4,111,2,56,47,6.0,0.0,0.0,1286.050442255075,0.0,2396.5274412657395,55447.7125407949,50,20,1,3835,201707189,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1823.6214078039538,2310.0,0.0,0.0,0.0,37177.0,1,1,2,120.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3682.577883520815,0.06641532562432415,0.09905527297847634,20653.888888888887,5,3,5,5_1,5_2,5_0_1 +7190,0,34.0,2,0.0,2,111,2,0,54,5.0,0.0,0.0,651.3761980252978,0.0,1213.8255871345953,21529.28,0,30,1,3836,201707190,,,,,1.0,0.0,4.0,1.0,2.0,1.3,552.1777536493205,1170.0,0.0,0.0,0.0,25269.0,0,1,5,93.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1865.201785159893,0.0866355858235804,0.0738138345466735,19437.69230769231,5,3,5,5_1,5_3,5_0_1 +7191,2,51.0,4,0.0,1,221,6,62,63,8.0,0.0,416.377895869032,2691.859530251124,265.39829130648343,0.0,25655.041723818063,71,50,1,3837,201707191,,,,,2.0,3.0,8.0,0.0,2.0,1.5,1881.1781213896766,0.0,2000.0,0.0,0.0,39762.0,1,1,2,160.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3373.635717426639,0.1314999115473886,0.08484572499941248,26508.0,7,4,7,7_1,7_2,7_1_0 +7192,1,56.0,5,353.0,1,221,2,0,47,1.0,0.0,0.0,161.51157181506744,0.0,477.7169243516702,9079.2,0,60,2,3839,201707192,,,220.0,,1.0,2.0,3.0,1.0,2.0,1.5,546.0280477917316,0.0,120.0,270.0,0.0,13116.0,0,4,3,60.0,1,3.0,2,9,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,639.2284961667376,0.07040581727098616,0.048736542861141936,8744.0,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +7193,2,34.0,3,0.0,6,112,4,63,43,7.0,0.0,0.0,2018.894647688343,123.8525359430256,0.0,36386.240000000005,50,33,1,384,201707193,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.1,2209.0028669496587,0.0,1500.0,0.0,0.0,48503.0,1,1,2,180.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2142.7471836313684,0.05888894218340142,0.044177621665286035,23096.666666666664,6,3,6,6_1,6_0,6_0_0 +7194,0,68.0,4,0.0,1,111,1,0,77,6.0,0.0,416.377895869032,0.0,0.0,0.0,13938.671191295747,0,71,3,3840,201707194,,,,,0.0,5.0,2.0,0.0,1.0,1.0,3062.7143808524743,0.0,0.0,0.0,0.0,23840.0,0,5,5,35.0,7,5.0,1,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,416.377895869032,0.029872137031903487,0.017465515766318458,23840.0,6,3,6,6_0,6_2,6_1_0 +7195,1,50.0,4,399.0,99,300,2,69,68,3.0,0.0,0.0,538.3719060502248,219.39592081335965,0.0,9924.581750603256,71,71,2,3843,201707195,,,,,2.0,3.0,3.0,1.0,3.0,2.0,3397.1297414559995,0.0,400.0,0.0,0.0,31668.0,1,1,3,58.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,757.7678268635844,0.07635262078601189,0.023928502806100305,15834.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +7196,2,55.0,1,0.0,2,400,2,37,37,10.0,0.0,0.0,652.7759360858976,0.0,4209.216900120828,22489.422382591492,20,20,2,3845,201707196,,,173.0,,2.0,2.0,7.0,0.0,2.0,1.5,1678.660110321051,0.0,485.0,2379.0,0.0,109100.0,1,1,3,100.0,0,1.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,4861.992836206725,0.2161902050436953,0.044564553952398944,72733.33333333333,10,5,10,10_0,10_1,10_0_1 +7197,2,58.0,3,0.0,4,300,2,13,13,1.0,0.0,208.188947934516,0.0,307.86201791552077,0.0,23107.950875301634,42,71,1,3846,201707197,,,,,2.0,3.0,5.0,0.0,2.0,1.5,2153.32659444861,0.0,0.0,0.0,0.0,10630.0,1,1,1,110.0,0,0.0,3,9,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,516.0509658500367,0.02233218205434239,0.04854665718250581,7086.666666666667,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +7198,2,62.0,3,0.0,1,112,2,78,77,9.0,0.0,0.0,1677.6879362357142,0.0,3126.335519172369,33201.54406940362,50,50,2,3847,201707198,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2238.056790337298,3013.4581081508168,0.0,0.0,0.0,52841.0,5,5,1,136.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,4804.0234554080835,0.14469277228088792,0.09091469607706296,35227.333333333336,9,5,9,9_0,9_0,9_1_0 +7199,2,75.0,3,0.0,5,111,2,77,74,6.0,0.0,0.0,2285.3887411832043,414.02133443811414,0.0,27079.02,70,50,1,3848,201707199,,,640.0,,0.0,1.0,6.0,0.0,2.0,1.5,1866.647555674479,0.0,1698.0,0.0,0.0,31216.0,5,5,1,92.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2699.4100756213184,0.0996864020788536,0.08647520744558299,20810.666666666668,5,3,5,5_1,5_2,5_0_0 +7200,2,68.0,2,0.0,9,111,6,77,72,5.0,0.0,0.0,2382.2956842722447,0.0,0.0,26497.64,70,50,1,3849,201707200,,,198.0,,0.0,1.0,5.0,0.0,2.0,1.5,1465.0243382549527,0.0,1770.0,0.0,0.0,28451.0,5,5,1,160.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2382.2956842722447,0.08990595706909162,0.08373328474472759,18967.333333333332,5,3,5,5_1,5_2,5_0_0 +7201,2,58.0,1,0.0,1,111,2,72,54,10.0,2221.038412794435,83.27557917380639,2301.539898364711,106.15931652259337,0.0,32566.825220746283,70,41,1,385,201707201,,,500.0,,1.0,4.0,5.0,0.0,2.0,1.5,2006.4786296901623,0.0,1710.0,0.0,0.0,62096.0,5,1,1,200.0,4,4.0,3,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4712.013206855545,0.1446875209639353,0.07588271719362834,41397.333333333336,10,5,10,10_1,10_2,10_1_0 +7202,2,28.0,3,0.0,99,111,4,0,42,1.0,0.0,0.0,92.86915379366377,0.0,0.0,18016.39087530163,0,44,2,3851,201707202,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3778.005899915283,0.0,69.0,0.0,0.0,9655.0,0,1,3,43.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,92.86915379366377,0.005154703538374966,0.009618762692248966,9655.0,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +7203,1,47.0,4,362.0,7,111,2,0,43,3.0,0.0,0.0,694.8012778936509,0.0,1294.7472929435683,27084.74134949914,0,43,2,3852,201707203,,,328.0,327.0,1.0,0.0,4.0,3.0,4.0,2.3,860.9116543040662,1248.0,0.0,0.0,0.0,31390.0,0,1,3,91.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1989.5485708372191,0.07345643604877956,0.06338160467783431,13647.826086956522,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7204,2,79.0,3,0.0,7,211,2,74,74,10.0,0.0,0.0,1944.868510606437,95.54338487033404,0.0,34483.44,41,41,1,3853,201707204,,,240.0,,0.0,3.0,4.0,0.0,2.0,1.5,2939.2635373800763,0.0,1445.0,0.0,0.0,60388.0,5,5,1,80.0,1,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2040.411895476771,0.059170775754297446,0.03378836681918214,40258.666666666664,9,5,9,9_1,9_1,9_0_0 +7205,1,19.0,2,200.0,1,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,17799.54,0,41,2,3854,201707205,,,,440.0,0.0,0.0,1.0,0.0,1.0,1.0,2191.3572337810856,0.0,0.0,0.0,0.0,7200.0,0,3,3,16.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0.0,0.0,0.0,7200.0,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +7206,2,66.0,2,0.0,5,111,4,0,74,6.0,0.0,0.0,2382.2956842722447,81.38880933398825,0.0,15317.38,0,60,1,3856,201707206,,,540.0,,0.0,3.0,5.0,0.0,1.0,1.0,2220.2846140348684,0.0,1770.0,0.0,0.0,23202.0,0,5,1,128.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2463.684493606233,0.16084242172004828,0.10618414333273998,23202.0,6,3,6,6_1,6_2,6_0_0 +7207,2,41.0,2,0.0,6,111,6,46,48,10.0,0.0,0.0,2459.0136808844018,0.0,0.0,56345.7,20,31,1,3857,201707207,,,456.0,,2.0,0.0,4.0,1.0,3.0,1.8,3177.7147039716187,0.0,1827.0,0.0,0.0,119946.0,1,1,2,95.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2459.0136808844018,0.043641549947634015,0.020501006126793737,66636.66666666667,10,5,10,10_1,10_4,10_0_0 +7208,1,41.0,3,123.0,9,120,5,0,55,3.0,0.0,359.47291676693095,982.5287285416603,0.0,0.0,28805.485980622452,0,42,1,3858,201707208,,,307.0,,1.0,0.0,4.0,2.0,3.0,1.6,670.36583337136,0.0,730.0,0.0,0.0,25565.0,0,1,2,90.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1342.0016453085912,0.04658840493825934,0.052493708011288526,15978.125,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +7209,2,33.0,4,0.0,3,111,1,0,55,3.0,0.0,0.0,336.4824412813905,0.0,619.262679715128,17362.9458467513,0,50,2,386,201707209,,,220.0,420.0,1.0,0.0,3.0,2.0,3.0,1.6,807.3096601969015,0.0,250.0,350.0,0.0,24565.0,0,1,3,78.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,955.7451209965185,0.05504510176050244,0.03890678286165351,15353.125,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7210,2,64.0,2,0.0,1,111,2,74,43,9.0,0.0,0.0,437.42717366580763,0.0,1489.7690752003937,41199.88932287755,31,0,1,3864,201707210,,,367.0,,1.0,2.0,4.0,0.0,2.0,1.5,964.8893462344059,0.0,325.0,842.0,0.0,51827.0,5,1,1,80.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1927.1962488662014,0.046776733640302874,0.0371851785529975,34551.333333333336,9,5,9,9_1,9_2,9_1_0 +7211,2,62.0,2,0.0,1,300,5,78,78,5.0,793.228004569441,34.698157989086,740.261370819059,0.0,0.0,10301.880000000001,71,71,1,3865,201707211,,,170.0,,0.0,3.0,5.0,0.0,2.0,1.5,2309.5426917855057,0.0,550.0,0.0,0.0,29679.0,5,5,1,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1568.187533377586,0.15222343236162583,0.0528382874550216,19786.0,5,3,5,5_1,5_0,5_1_0 +7212,2,35.0,4,0.0,99,111,1,0,43,5.0,0.0,0.0,352.6335984628972,0.0,0.0,13286.94,0,30,2,3866,201707212,,,,299.0,1.0,0.0,2.0,0.0,1.0,1.0,2668.2291763835447,0.0,262.0,0.0,0.0,21291.0,0,1,3,55.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,352.6335984628972,0.026539865346189358,0.016562566270391117,21291.0,6,3,6,6_0,6_3,6_0_0 +7213,2,40.0,4,0.0,9,111,4,0,46,5.0,0.0,0.0,733.5317219934312,0.0,0.0,25259.06,0,30,2,3867,201707213,,,192.0,461.0,1.0,1.0,3.0,0.0,1.0,1.0,3509.160037420185,0.0,545.0,0.0,0.0,22249.0,0,1,3,65.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,733.5317219934312,0.02904034124759319,0.03296919960418137,22249.0,6,3,6,6_0,6_3,6_0_0 +7214,2,59.0,3,0.0,4,111,1,72,54,3.0,0.0,0.0,471.07541779394666,0.0,0.0,21698.0916935026,50,71,2,3868,201707214,,,,,1.0,1.0,3.0,0.0,2.0,1.5,3809.284478552288,0.0,350.0,0.0,0.0,22980.0,5,4,1,72.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,471.07541779394666,0.021710453824610215,0.0204993654392492,15320.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7215,2,73.0,2,0.0,4,111,4,75,74,10.0,0.0,138.792631956344,2039.0835941652263,0.0,0.0,36856.159999999996,20,12,1,3869,201707215,,,230.0,,0.0,2.0,7.0,0.0,2.0,1.5,2294.1959305177347,0.0,1515.0,0.0,0.0,70511.0,5,5,1,180.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2177.87622612157,0.059091240816231815,0.030887042108629435,47007.333333333336,10,5,10,10_1,10_3,10_0_1 +7216,2,27.0,2,0.0,1,111,2,0,37,9.0,0.0,0.0,605.6683943065029,0.0,0.0,69327.01999999999,0,30,8,3872,201707216,,,,600.0,1.0,0.0,2.0,0.0,1.0,1.0,6611.49604408349,0.0,450.0,0.0,0.0,34238.0,0,1,3,31.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,605.6683943065029,0.008736397357141603,0.017689946676397655,34238.0,9,5,9,9_0,9_4,9_1_0 +7217,2,44.0,3,0.0,9,111,1,0,55,6.0,0.0,0.0,336.4824412813905,0.0,0.0,28653.9,0,41,8,3875,201707217,,,,,1.0,0.0,3.0,1.0,2.0,1.3,819.2157647496999,0.0,250.0,0.0,0.0,26644.0,0,1,1,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,336.4824412813905,0.011742989306216273,0.01262882605019481,20495.384615384613,5,3,5,5_0,5_4,5_0_0 +7218,2,51.0,4,0.0,4,112,2,47,42,7.0,475.9368027416647,0.0,2113.1097312471325,0.0,0.0,38053.20759735456,30,31,1,3876,201707218,,,,793.0,2.0,1.0,4.0,1.0,3.0,2.0,2080.4453073236255,0.0,1570.0,0.0,0.0,51760.0,4,1,3,110.0,9,2.0,4,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2589.046533988797,0.06803753737093075,0.05002021897196285,25880.0,7,4,7,7_1,7_1,7_0_1 +7219,2,56.0,3,0.0,5,112,7,54,37,8.0,0.0,0.0,969.0694308904046,0.0,1769.3219420432229,24399.187849749775,31,20,1,3877,201707219,,,360.0,,2.0,1.0,6.0,1.0,3.0,2.0,1690.9835861766178,0.0,720.0,1000.0,0.0,58181.0,4,1,1,120.0,8,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2738.3913729336273,0.11223289028293254,0.04706676359865983,29090.5,8,4,8,8_1,8_0,8_0_0 +7220,2,74.0,2,0.0,4,112,1,0,75,10.0,0.0,0.0,1384.626692803202,9073.082918797647,924.8687294675714,50648.72007342794,0,20,1,3878,201707220,,,60.0,,0.0,1.0,5.0,0.0,1.0,1.0,2228.594827656531,891.476028307739,660.0,0.0,0.0,42032.0,0,5,1,170.0,9,2.0,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,11382.57834106842,0.22473575491279021,0.2708074405469266,42032.0,10,5,10,10_1,10_1,10_0_1 +7221,2,75.0,2,0.0,4,211,2,0,77,5.0,0.0,0.0,767.1799661215703,0.0,0.0,13251.68,0,70,2,3879,201707221,,,106.0,285.0,0.0,0.0,1.0,0.0,1.0,1.0,2499.2233653035028,0.0,570.0,0.0,0.0,19965.0,0,5,3,35.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,767.1799661215703,0.05789303440179436,0.03842624423348712,19965.0,5,3,5,5_0,5_1,5_0_1 +7222,1,58.0,4,150.0,3,111,1,85,78,1.0,0.0,0.0,389.7122552288106,0.0,726.2204367471937,12884.353108305571,71,71,2,3880,201707222,,,,380.0,0.0,0.0,3.0,1.0,3.0,2.0,3141.7927379796374,700.0,0.0,0.0,0.0,12070.0,6,4,3,60.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1115.9326919760042,0.08661146451013102,0.09245506975774682,6035.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7223,2,60.0,2,0.0,1,111,2,47,33,10.0,0.0,0.0,1301.5140828764183,0.0,2776.0661270658165,92629.19016615879,41,33,1,3881,201707223,,,457.0,,2.0,1.0,6.0,1.0,3.0,2.0,1956.6514088176618,0.0,967.0,1569.0,0.0,83780.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4077.580209942235,0.044020467010753815,0.04867009083244491,41890.0,10,5,10,10_1,10_4,10_1_0 +7224,1,86.0,3,83.0,99,111,1,0,77,3.0,0.0,0.0,177.66272899657417,0.0,276.0142229587428,17972.4,0,71,2,3882,201707224,,,,309.0,1.0,4.0,4.0,1.0,2.0,1.5,3784.8878513759273,0.0,132.0,156.0,0.0,21746.0,0,5,3,45.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,453.67695195531695,0.025242981012848418,0.020862547225021472,14497.333333333334,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +7225,2,57.0,2,0.0,3,111,1,85,37,7.0,0.0,0.0,1043.3733099634862,0.0,1342.3570990816663,31165.06711861193,41,30,2,3883,201707225,,,,800.0,1.0,2.0,3.0,1.0,3.0,1.8,1913.5905131844434,1293.8908378369833,240.0,0.0,0.0,43464.0,6,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2385.7304090451526,0.07655142855830344,0.05488980326350894,24146.666666666668,7,4,7,7_0,7_4,7_0_1 +7226,1,20.0,4,272.0,5,112,1,0,21,1.0,0.0,0.0,1776.6272899657417,0.0,0.0,14312.3,0,50,2,3884,201707226,,,,148.0,1.0,0.0,1.0,0.0,1.0,1.0,4222.47103033852,0.0,1320.0,0.0,0.0,5114.0,0,1,3,32.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1776.6272899657417,0.1241328989726139,0.3474046323749984,5114.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7227,1,21.0,3,58.0,9,112,1,0,67,7.0,0.0,0.0,352.6335984628972,0.0,0.0,24516.9,0,60,2,3886,201707227,,,,392.0,1.0,0.0,2.0,0.0,1.0,1.0,2008.9303391083765,0.0,262.0,0.0,0.0,25097.0,0,1,3,43.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,352.6335984628972,0.014383286568158992,0.014050826730800384,25097.0,7,4,7,7_0,7_1,7_0_0 +7228,1,40.0,5,53.0,9,111,4,0,46,6.0,0.0,0.0,1520.900634591885,60.15694602946958,0.0,22604.339999999993,0,50,1,3887,201707228,,,300.0,564.0,1.0,0.0,4.0,1.0,2.0,1.3,552.0131558386349,0.0,1130.0,0.0,0.0,27157.0,0,1,3,100.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1581.0575806213544,0.06994486813688676,0.058219154568669385,20890.0,5,3,5,5_1,5_3,5_0_0 +7229,2,46.0,3,0.0,7,120,2,45,62,6.0,0.0,356.6970641278041,482.68646469054113,0.0,899.4758837997385,31986.766296616577,42,50,1,389,201707229,,,186.0,,2.0,0.0,4.0,1.0,3.0,1.8,2721.752963245166,867.0,0.0,0.0,0.0,38727.0,1,1,2,100.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1738.8594126180838,0.054361838158113934,0.04490044187822666,21515.0,6,3,6,6_1,6_0,6_0_0 +7231,2,37.0,3,0.0,9,112,4,48,38,9.0,0.0,0.0,1942.1766510761859,0.0,0.0,30999.559999999998,31,31,1,3891,201707231,,,580.0,,2.0,0.0,6.0,2.0,4.0,2.1,2921.6258007258816,0.0,1443.0,0.0,0.0,73410.0,1,1,2,118.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1942.1766510761859,0.06265174896276547,0.026456567920939734,34957.142857142855,9,5,9,9_1,9_1,9_0_0 +7232,2,72.0,3,0.0,9,400,5,0,72,4.0,0.0,1387.9263195634398,1009.4473238441715,0.0,0.0,22578.777349485415,0,70,1,3892,201707232,,,220.0,492.0,0.0,2.0,4.0,0.0,1.0,1.0,1894.5158809396505,0.0,750.0,0.0,0.0,18564.0,0,5,3,84.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2397.3736434076113,0.10617818698948502,0.1291410064322135,18564.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7233,2,40.0,3,0.0,1,111,2,0,52,4.0,1903.7472109666587,0.0,969.0694308904046,283.09151072691566,0.0,33943.07601093792,0,50,1,3893,201707233,,,420.0,,2.0,0.0,4.0,1.0,3.0,1.8,908.0189854362992,0.0,720.0,0.0,0.0,29710.0,0,1,3,100.0,9,7.0,5,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3155.9081525839792,0.09297649251255277,0.10622376817852505,16505.555555555555,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +7234,2,60.0,1,0.0,1,111,2,22,13,4.0,5804.84253743917,0.0,2663.7934328056767,106.15931652259337,1788.6531056400752,124799.71872160239,20,12,1,3895,201707234,,,96.0,,4.0,1.0,8.0,2.0,4.0,2.5,2139.6401198978765,1724.0731747458508,1266.0,0.0,0.0,43743.0,1,1,3,300.0,6,5.0,4,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,10363.448392407514,0.08304063902199836,0.2369167270742179,17497.2,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +7235,2,70.0,3,0.0,6,111,2,72,63,9.0,0.0,0.0,1266.5648294936345,0.0,2360.2164194283796,26204.461750603255,70,71,1,3896,201707235,,,210.0,,1.0,1.0,6.0,0.0,2.0,1.5,1499.1936326344944,2275.0,0.0,0.0,0.0,57242.0,5,1,1,95.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3626.781248922014,0.13840319573969198,0.06335874443454131,38161.333333333336,9,5,9,9_1,9_4,9_0_0 +7236,2,37.0,3,0.0,99,111,2,47,63,1.0,0.0,0.0,560.093152911686,0.0,466.8559950517674,26283.998319391543,20,50,2,3897,201707236,,,,543.0,2.0,0.0,1.0,2.0,4.0,2.1,5164.323909136494,450.0,230.0,0.0,0.0,7750.0,4,1,3,16.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1026.9491479634535,0.03907126820982184,0.1325095674791553,3690.4761904761904,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +7237,2,85.0,2,0.0,6,112,4,78,75,3.0,0.0,0.0,1480.522741638118,0.0,0.0,17552.1116935026,71,70,1,3898,201707237,,,200.0,,0.0,0.0,3.0,0.0,2.0,1.5,1985.4035348703785,0.0,1100.0,0.0,0.0,21863.0,5,5,1,100.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1480.522741638118,0.08435012079977673,0.06771818788080858,14575.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7238,2,73.0,2,0.0,4,111,2,77,78,7.0,0.0,0.0,349.9417389326461,0.0,1928.560916827113,23582.628027316983,70,71,1,39,201707238,,,170.0,,0.0,0.0,3.0,0.0,2.0,1.5,1448.1158159501165,0.0,260.0,1090.0,0.0,37189.0,5,5,1,90.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2278.5026557597594,0.0966178431479499,0.06126818832880043,24792.666666666668,7,4,7,7_1,7_3,7_0_1 +7239,2,38.0,4,0.0,9,111,6,55,63,9.0,0.0,0.0,874.8543473316153,0.0,0.0,18990.58753375566,43,43,2,3900,201707239,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1844.4085320516199,0.0,650.0,0.0,0.0,50840.0,1,1,2,54.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,874.8543473316153,0.04606778730655735,0.01720799266978,33893.333333333336,9,5,9,9_0,9_3,9_0_0 +7240,2,84.0,2,0.0,3,221,2,0,77,7.0,0.0,102.70654764769455,458.9620499078166,0.0,2480.5893627445985,14232.32,0,70,1,3901,201707240,,,179.0,,0.0,2.0,4.0,0.0,1.0,1.0,2511.8534659480642,0.0,341.0,1402.0,0.0,26864.0,0,5,1,121.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3042.2579603001095,0.21375699536689097,0.11324664831373249,26864.0,7,4,7,7_1,7_1,7_0_1 +7241,2,67.0,3,0.0,6,112,4,77,75,4.0,0.0,0.0,2557.266553738568,113.23660429076627,0.0,26137.06,60,50,1,3902,201707241,,,,,0.0,1.0,6.0,0.0,2.0,1.5,2777.955475335868,0.0,1900.0,0.0,0.0,25963.0,6,5,1,118.0,10,2.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2670.503158029334,0.10217305075740477,0.1028580348199104,17308.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7242,2,40.0,2,0.0,6,111,4,38,31,10.0,0.0,0.0,939.9973479636924,0.0,0.0,42178.14,20,30,1,3903,201707242,,,534.0,,2.0,0.0,4.0,2.0,4.0,2.1,2889.65858663383,0.0,698.4,0.0,0.0,128560.0,1,1,2,117.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,939.9973479636924,0.02228636321951827,0.007311740416643531,61219.04761904762,10,5,10,10_1,10_4,10_0_0 +7243,2,40.0,2,0.0,1,112,2,47,38,8.0,0.0,0.0,710.6509159862967,0.0,2406.277841178783,37791.86,42,31,1,3904,201707243,,,450.0,,2.0,0.0,6.0,2.0,4.0,2.1,2173.6139226264977,0.0,528.0,1360.0,0.0,60352.0,1,1,2,140.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3116.92875716508,0.08247619347566063,0.05164582378653698,28739.04761904762,8,4,8,8_1,8_0,8_1_0 +7244,2,65.0,3,0.0,6,400,5,71,71,2.0,0.0,208.188947934516,1615.1157181506744,180.47083808840873,0.0,18624.440000000002,50,50,1,3905,201707244,,,80.0,,0.0,2.0,9.0,0.0,2.0,1.5,1429.8602229934552,0.0,1200.0,0.0,0.0,16017.0,5,5,1,120.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2003.775504173599,0.10758849684466211,0.1251030470233876,10678.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +7245,2,46.0,2,0.0,1,111,2,46,34,4.0,0.0,0.0,1615.1157181506744,0.0,2653.9829130648345,41913.29045120703,43,31,2,3907,201707245,,,,,2.0,0.0,3.0,2.0,4.0,2.3,2688.946588132995,0.0,1200.0,1500.0,0.0,41991.0,1,1,1,100.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,4269.098631215509,0.10185548748994883,0.10166699128897881,18256.956521739132,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +7246,1,36.0,3,103.0,9,111,1,0,54,7.0,0.0,0.0,403.7789295376686,0.0,0.0,44463.34,0,31,2,3908,201707246,,,,267.0,1.0,0.0,3.0,1.0,2.0,1.3,959.1195623467253,0.0,300.0,0.0,0.0,30756.0,0,1,3,63.0,7,5.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,403.7789295376686,0.009081165057273445,0.013128460447966856,23658.46153846154,6,3,6,6_0,6_2,6_0_0 +7247,2,68.0,3,0.0,1,112,6,75,77,8.0,0.0,346.98157989085996,403.7789295376686,2653.9829130648345,0.0,19022.68,33,50,1,3909,201707247,,,,,0.0,4.0,7.0,0.0,2.0,1.5,1709.609634021933,0.0,300.0,0.0,0.0,40746.0,5,5,1,180.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3404.743422493363,0.1789833726106607,0.08356018805510634,27164.0,7,4,7,7_1,7_0,7_1_0 +7248,2,72.0,1,0.0,4,120,2,75,75,9.0,0.0,0.0,969.0694308904046,3007.847301473479,0.0,39893.16071093424,41,41,1,391,201707248,,,268.0,,0.0,1.0,5.0,0.0,2.0,1.5,1659.8021317189002,0.0,720.0,0.0,0.0,55615.0,5,5,1,86.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3976.916732363884,0.09968918635403734,0.07150798763577963,37076.666666666664,9,5,9,9_1,9_0,9_0_1 +7249,2,39.0,4,0.0,1,111,2,43,52,6.0,0.0,0.0,888.3136449828709,0.0,2742.4490101669953,60969.56454573587,50,50,1,3910,201707249,,,10800.0,,2.0,0.0,5.0,2.0,4.0,2.1,3096.560023220823,0.0,660.0,1550.0,0.0,48994.0,1,1,2,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3630.762655149866,0.05955041145859384,0.07410627128117456,23330.47619047619,6,3,6,6_1,6_4,6_1_0 +7250,2,43.0,2,0.0,5,111,1,85,67,6.0,0.0,0.0,648.7381467905209,0.0,297.2460862632615,33586.86,71,31,2,3911,201707250,,,,560.0,1.0,1.0,3.0,1.0,3.0,1.8,3430.2583464889117,0.0,482.0,168.0,0.0,37970.0,6,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,945.9842330537824,0.028165307297371128,0.02491399086262266,21094.444444444445,5,3,5,5_0,5_4,5_0_0 +7251,2,47.0,3,0.0,2,211,5,0,65,4.0,0.0,1126.9961714855133,942.1508355878933,219.39592081335965,0.0,24618.300000000003,0,44,1,3912,201707251,,,180.0,,1.0,0.0,5.0,2.0,3.0,1.8,606.7064617616688,0.0,700.0,0.0,0.0,30291.0,0,1,2,90.0,1,2.0,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2288.5429278867664,0.09296104637147025,0.07555191072882263,16828.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +7252,1,22.0,2,300.0,5,111,1,0,55,5.0,0.0,0.0,242.26735772260116,0.0,0.0,11581.832974434414,0,20,2,3913,201707252,,,,103.0,1.0,0.0,1.0,0.0,1.0,1.0,4950.127186176308,0.0,180.0,0.0,0.0,19170.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,242.26735772260116,0.02091787701112414,0.01263783817019307,19170.0,5,3,5,5_0,5_4,5_0_0 +7253,2,82.0,2,0.0,5,112,2,74,75,9.0,1903.7472109666587,0.0,741.6073005841846,0.0,0.0,13741.2,70,70,1,3915,201707253,,,232.0,,0.0,2.0,5.0,0.0,2.0,1.5,2080.385711263561,0.0,551.0,0.0,0.0,45548.0,5,5,1,118.0,5,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2645.354511550843,0.19251262710322556,0.058078390084105626,30365.333333333332,8,4,8,8_1,8_0,8_0_0 +7254,2,48.0,2,0.0,8,111,2,56,48,3.0,0.0,0.0,807.5578590753372,0.0,2300.11852465619,88881.1,50,43,1,3916,201707254,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.5,1847.0305068604039,0.0,600.0,1300.0,0.0,35517.0,1,1,1,125.0,5,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3107.676383731527,0.03496442307455158,0.08749827923899899,14206.8,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +7255,2,54.0,2,0.0,4,112,2,0,34,10.0,0.0,0.0,807.5578590753372,0.0,2158.572769292732,38653.09034032636,0,10,1,3918,201707255,,,200.0,,2.0,2.0,4.0,1.0,2.0,1.5,2726.695275209624,0.0,600.0,1220.0,0.0,84396.0,0,1,2,105.0,10,0.0,2,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2966.130628368069,0.07673721822116605,0.03514539348272512,56264.0,10,5,10,10_1,10_0,10_0_1 +7256,1,60.0,5,122.0,8,400,4,0,52,3.0,0.0,0.0,2094.2667145353744,120.31389205893916,0.0,12735.08,0,71,1,3919,201707256,,,274.0,,1.0,4.0,4.0,0.0,1.0,1.0,1578.6516703152738,0.0,1556.0,0.0,0.0,14866.0,0,1,3,98.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2214.5806065943134,0.1738960891171719,0.14896950131806225,14866.0,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +7257,2,81.0,1,0.0,3,111,1,0,74,9.0,0.0,0.0,304.180126918377,0.0,162.7776186679765,33396.65119129575,0,31,2,392,201707257,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2552.9552448017735,0.0,226.0,92.0,0.0,43456.0,0,5,1,77.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,466.95774558635355,0.013982172730781398,0.010745529859774337,43456.0,10,5,10,10_0,10_4,10_0_1 +7258,2,43.0,3,0.0,5,111,2,85,38,7.0,0.0,0.0,1615.1157181506744,0.0,0.0,55639.759999999995,20,30,2,3920,201707258,,,,1100.0,1.0,0.0,4.0,4.0,6.0,2.9,2607.371505099328,0.0,1200.0,0.0,0.0,69086.0,6,1,3,78.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1615.1157181506744,0.02902808563787253,0.0233783359602622,23822.758620689656,6,3,6,6_0,6_4,6_0_0 +7259,2,44.0,2,0.0,9,112,2,54,62,6.0,0.0,0.0,485.8806452103279,0.0,1521.6168701571717,52938.060000000005,42,43,2,3921,201707259,,,370.0,457.0,2.0,1.0,4.0,2.0,4.0,2.3,2865.890715476011,0.0,361.0,860.0,0.0,52679.0,4,1,3,80.0,8,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2007.4975153674995,0.03792162983244001,0.03810811737822471,22903.913043478264,6,3,6,6_0,6_1,6_0_0 +7260,0,43.0,3,0.0,99,111,1,0,52,3.0,0.0,0.0,0.0,0.0,0.0,39865.36,0,50,2,3922,201707260,,,,,1.0,0.0,3.0,4.0,5.0,2.6,690.84017498555,0.0,0.0,0.0,0.0,37040.0,0,1,5,75.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,14246.153846153846,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +7261,2,24.0,2,0.0,4,111,1,0,38,10.0,0.0,0.0,201.8894647688343,0.0,0.0,31126.100315994114,0,20,2,3923,201707261,,,,610.0,1.0,0.0,1.0,0.0,1.0,1.0,5296.12068878439,0.0,150.0,0.0,0.0,48765.0,0,1,3,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,201.8894647688343,0.006486179210348867,0.004140048493157681,48765.0,10,5,10,10_0,10_4,10_0_1 +7262,2,62.0,2,0.0,7,112,4,0,42,10.0,0.0,0.0,2397.2675568833315,0.0,805.4142594489999,18032.300271167158,0,31,1,3925,201707262,,,370.0,,1.0,2.0,5.0,0.0,1.0,1.0,2447.235030953249,776.3345027021901,1460.0,0.0,0.0,43750.0,0,1,1,140.0,8,0.0,1,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3202.6818163323314,0.17760805710701683,0.07320415580188186,43750.0,10,5,10,10_1,10_0,10_0_0 +7263,2,70.0,2,0.0,6,112,2,74,74,10.0,0.0,0.0,3145.045635540114,0.0,1882.8606645951438,56096.32600995075,44,50,1,3928,201707263,,,200.0,,0.0,1.0,6.0,0.0,2.0,1.5,1486.0903373825097,1814.8793376292901,1586.0,0.0,0.0,65050.0,5,5,1,100.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5027.906300135258,0.08962986808161684,0.07729294850323225,43366.666666666664,10,5,10,10_1,10_0,10_0_0 +7264,2,69.0,3,0.0,5,112,4,75,74,8.0,0.0,0.0,3230.231436301349,33.61711689882124,0.0,41575.479999999996,70,70,1,3929,201707264,,,80.0,,0.0,5.0,5.0,0.0,2.0,1.5,2362.5741183220202,0.0,2400.0,0.0,0.0,46784.0,5,5,1,130.0,8,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3263.84855320017,0.07850417008294722,0.06976420471101595,31189.333333333332,8,4,8,8_1,8_1,8_0_0 +7265,2,69.0,1,0.0,6,111,4,77,46,9.0,0.0,0.0,2691.859530251124,53.079658261296686,0.0,47145.94,50,50,1,393,201707265,,,400.0,,2.0,0.0,4.0,1.0,3.0,2.0,2029.9950787472587,0.0,2000.0,0.0,0.0,80908.0,5,1,1,95.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2744.9391885124205,0.05822217540921701,0.033926672127755235,40454.0,9,5,9,9_1,9_2,9_0_0 +7267,2,49.0,2,0.0,9,221,4,0,22,8.0,0.0,0.0,1615.1157181506744,191.08676974066807,0.0,67858.22753375566,0,33,1,3931,201707267,,,700.0,,1.0,0.0,4.0,1.0,2.0,1.3,2056.5182353660357,0.0,1200.0,0.0,0.0,22355.0,0,1,2,130.0,1,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1806.2024878913426,0.026617295404493996,0.08079635374150493,17196.153846153844,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7268,2,37.0,2,0.0,8,111,4,0,45,6.0,0.0,0.0,807.5578590753372,0.0,0.0,17290.950875301627,0,20,8,3932,201707268,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2367.3306401876207,0.0,600.0,0.0,0.0,24700.0,0,1,2,42.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,807.5578590753372,0.046704074570523,0.03269465016499341,24700.0,7,4,7,7_0,7_3,7_0_0 +7269,2,79.0,3,0.0,5,112,2,77,46,8.0,0.0,458.01568545593517,2018.894647688343,0.0,0.0,19808.839999999997,70,50,1,3933,201707269,,,160.0,,1.0,1.0,3.0,0.0,2.0,1.5,1844.1896232541728,0.0,1500.0,0.0,0.0,40028.0,5,5,1,70.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2476.910333144278,0.12504065523999783,0.06187944271870385,26685.333333333332,7,4,7,7_1,7_0,7_0_0 +7270,2,64.0,1,0.0,9,111,2,77,78,6.0,0.0,0.0,588.7817378502101,0.0,1097.1821518912832,24992.686968565245,70,50,2,3934,201707270,,,50.0,,0.0,2.0,3.0,0.0,2.0,1.5,1044.458572500882,1057.5680157996683,0.0,0.0,0.0,32759.0,5,5,1,70.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1685.9638897414934,0.06745828857305451,0.05146567018961181,21839.333333333332,6,3,6,6_0,6_1,6_0_0 +7271,1,58.0,3,293.0,4,111,1,56,63,3.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,24466.360000000004,71,71,2,3935,201707271,,,,193.0,2.0,0.0,5.0,3.0,5.0,2.6,2915.9009148912132,1440.0,0.0,0.0,0.0,34926.0,1,1,3,95.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2295.6329663506376,0.09382813652503426,0.06572848211506149,13433.076923076922,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7272,2,40.0,3,0.0,9,400,2,43,43,9.0,1232.6763191009115,208.188947934516,763.1421768261936,212.31863304518674,0.0,56054.633333333324,33,33,1,3936,201707272,,,,,2.0,0.0,7.0,1.0,3.0,1.8,2301.407687429689,0.0,567.0,0.0,0.0,60608.0,1,1,2,360.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2416.326076906808,0.04310662532636567,0.03986810448961866,33671.11111111111,9,5,9,9_1,9_0,9_0_0 +7273,2,48.0,3,0.0,4,111,4,0,35,6.0,0.0,0.0,1076.7438121004495,0.0,0.0,33237.78,0,41,2,3937,201707273,,,,,1.0,0.0,3.0,1.0,2.0,1.5,950.3473835257023,0.0,800.0,0.0,0.0,34054.0,0,1,2,65.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1076.7438121004495,0.032395178381361495,0.03161871768662858,22702.666666666668,6,3,6,6_0,6_3,6_0_1 +7274,2,33.0,4,0.0,6,112,4,46,47,4.0,0.0,0.0,36.34010365839017,0.0,0.0,57043.54000000001,50,50,1,3938,201707274,,,,,2.0,0.0,5.0,3.0,5.0,2.4,746.922749605361,0.0,27.0,0.0,0.0,41384.0,1,1,2,140.0,8,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,36.34010365839017,0.0006370590545115216,0.0008781196515172571,17243.333333333336,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7275,1,21.0,2,272.0,4,111,2,0,34,2.0,0.0,0.0,217.12539934176587,0.0,404.60852904486507,13233.413815743486,0,41,2,3939,201707275,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4202.380714607889,390.0,0.0,0.0,0.0,11302.0,0,3,3,28.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,621.733928386631,0.046982126988802275,0.05501096517312254,11302.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7276,2,69.0,3,0.0,4,112,2,77,78,5.0,1981.4835554144638,0.0,376.8603342351573,116.7752481748527,0.0,40242.48000000001,50,70,1,394,201707276,,,422.0,,0.0,1.0,3.0,0.0,2.0,1.5,2362.8271650095144,0.0,280.0,0.0,0.0,30846.0,5,5,1,100.0,8,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2475.1191378244735,0.061505134321355764,0.08024117025949794,20564.0,5,3,5,5_1,5_0,5_0_1 +7277,2,40.0,5,0.0,6,111,2,64,46,4.0,0.0,0.0,1480.522741638118,53.079658261296686,0.0,28827.36,50,43,2,3940,201707277,,,,,2.0,2.0,2.0,1.0,3.0,1.8,4160.232558795443,0.0,1100.0,0.0,0.0,29150.0,1,1,2,53.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1533.6023998994146,0.05319954376326568,0.052610716977681465,16194.444444444443,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +7278,2,70.0,3,0.0,4,400,2,0,78,4.0,2221.038412794435,1387.9263195634398,581.4416585342427,175.16287226227908,0.0,15212.0,0,50,1,3941,201707278,,,135.0,,0.0,2.0,5.0,0.0,1.0,1.0,2642.9449743116816,0.0,432.0,0.0,0.0,15981.0,0,5,1,80.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4365.569263154396,0.2869819394658425,0.2731724712567672,15981.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +7279,2,48.0,1,0.0,8,111,2,0,43,3.0,0.0,0.0,933.6392171695934,0.0,1739.8166748929198,33609.46000000001,0,33,1,3944,201707279,,,270.0,,1.0,0.0,8.0,2.0,3.0,1.8,715.6239865398466,1677.0,0.0,0.0,0.0,29486.0,0,1,2,140.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2673.455892062513,0.07954474401143347,0.09066865265083474,16381.111111111111,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +7280,2,65.0,3,0.0,6,111,2,78,78,2.0,0.0,0.0,2782.0368245145364,0.0,0.0,31277.16,71,71,1,3945,201707280,,,604.0,,1.0,3.0,5.0,1.0,3.0,2.0,3325.752440822325,0.0,2067.0,0.0,0.0,25140.0,5,5,1,120.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2782.0368245145364,0.08894787200994389,0.11066176708490598,12570.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7281,2,53.0,3,0.0,5,111,1,52,67,7.0,0.0,0.0,411.85450812842197,0.0,0.0,19318.2,71,71,8,3946,201707281,,,,259.0,2.0,1.0,4.0,0.0,2.0,1.5,2230.2078337300136,0.0,306.0,0.0,0.0,36610.0,1,1,3,56.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,411.85450812842197,0.021319507414170158,0.011249781702497186,24406.666666666668,7,4,7,7_0,7_2,7_0_0 +7282,2,50.0,3,0.0,8,120,2,42,42,6.0,0.0,0.0,580.0957287691172,0.0,1864.865326913557,52152.18289605566,30,30,1,3947,201707282,,,422.0,,2.0,0.0,5.0,2.0,4.0,2.5,1506.8575234214932,0.0,431.0,1054.0,0.0,56459.0,1,1,2,120.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2444.961055682674,0.04688127936189589,0.04330507192268149,22583.6,6,3,6,6_1,6_1,6_0_0 +7283,2,58.0,2,0.0,6,120,2,62,47,9.0,0.0,0.0,269.1859530251124,53.079658261296686,0.0,84662.75021491996,50,50,1,3948,201707283,,,629.0,,2.0,2.0,6.0,0.0,2.0,1.5,1985.7708341785735,0.0,200.0,0.0,0.0,56540.0,1,1,1,118.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,322.26561128640907,0.0038064628241856573,0.0056997808858579605,37693.333333333336,9,5,9,9_1,9_0,9_0_0 +7284,2,69.0,1,0.0,5,112,2,77,75,6.0,793.228004569441,0.0,635.2788491392653,176.75526201011795,0.0,21769.08103350503,42,31,1,3950,201707284,,,334.0,,0.0,3.0,5.0,0.0,2.0,1.5,1576.2260860489312,0.0,472.0,0.0,0.0,31770.0,6,5,1,106.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1605.2621157188244,0.07374046305621022,0.050527608300875805,21180.0,5,3,5,5_1,5_0,5_0_0 +7285,2,44.0,3,0.0,2,111,1,47,47,7.0,0.0,0.0,605.6683943065029,0.0,1450.8439924754427,19504.222821199444,50,50,2,3951,201707285,999999.0,450.0,,,2.0,0.0,3.0,1.0,3.0,2.0,3289.621602149038,0.0,450.0,820.0,0.0,48200.0,1,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2056.5123867819457,0.10543934027182515,0.042666232090911735,24100.0,7,4,7,7_0,7_4,7_0_1 +7286,1,26.0,4,400.0,2,300,5,0,56,2.0,0.0,555.170527825376,1615.1157181506744,159.23897478389006,0.0,15733.140000000001,0,50,1,3953,201707286,,,280.0,200.0,1.0,0.0,7.0,2.0,3.0,1.6,746.1742003744264,0.0,1200.0,0.0,0.0,18600.0,0,4,3,110.0,0,0.0,2,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,2329.5252207599406,0.14806486313348388,0.1252432914387065,11625.0,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +7287,2,41.0,3,0.0,4,112,2,53,46,5.0,0.0,0.0,1882.9557414106612,0.0,0.0,31487.3,60,31,2,3954,201707287,,,,604.0,2.0,0.0,4.0,1.0,3.0,1.8,719.5417085449691,0.0,1399.0,0.0,0.0,35860.0,4,1,3,80.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1882.9557414106612,0.05980048277910971,0.052508525973526524,19922.222222222223,5,3,5,5_0,5_1,5_0_1 +7288,2,67.0,2,0.0,6,112,4,0,78,7.0,0.0,0.0,605.6683943065029,0.0,0.0,21984.319999999996,0,50,1,3955,201707288,,,250.0,,0.0,2.0,5.0,0.0,1.0,1.0,2106.646806732948,0.0,450.0,0.0,0.0,25620.0,0,5,1,100.0,8,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,605.6683943065029,0.02755001720801476,0.02364045254904383,25620.0,7,4,7,7_1,7_0,7_0_0 +7289,2,74.0,2,0.0,4,112,1,78,77,5.0,0.0,0.0,1110.7631739200974,0.0,2069.88337283194,43283.73628390078,44,60,1,3958,201707289,,,120.0,,0.0,2.0,4.0,0.0,2.0,1.5,2257.9695038282025,1995.14952714935,0.0,0.0,0.0,29784.0,5,5,1,120.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3180.6465467520375,0.073483641197007,0.1067904427461737,19856.0,5,3,5,5_1,5_1,5_0_1 +7290,0,45.0,3,0.0,1,400,5,13,13,1.0,0.0,41.637789586903196,2099.6504335958766,198.16405750884095,0.0,22777.059999999998,43,50,1,3959,201707290,,,,,2.0,0.0,4.0,3.0,5.0,2.8,1794.386733134299,0.0,1560.0,0.0,0.0,25575.0,1,1,5,80.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2339.4522806916207,0.1027108977493856,0.0914741849732794,9133.928571428572,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +7291,2,57.0,2,0.0,8,112,4,48,43,9.0,0.0,0.0,2395.7549819235,138.0071114793714,0.0,54536.966162745426,31,33,1,396,201707291,,,543.0,,2.0,4.0,5.0,2.0,4.0,2.3,1690.8128875146622,0.0,1780.0,0.0,0.0,87295.0,1,1,1,111.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2533.7620934028714,0.04645953509481614,0.029025283159434923,37954.34782608696,9,5,9,9_1,9_0,9_0_0 +7292,2,44.0,3,0.0,1,300,1,0,48,7.0,0.0,0.0,659.5055849115254,201.70270139292742,0.0,21360.239999999998,0,50,2,3960,201707292,,,,406.0,1.0,0.0,3.0,0.0,1.0,1.0,4005.8522167186065,0.0,490.0,0.0,0.0,25431.0,0,1,3,70.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,861.2082863044528,0.04031828698106636,0.03386450734554099,25431.0,7,4,7,7_0,7_0,7_1_0 +7293,1,55.0,5,100.0,2,111,1,0,52,3.0,0.0,0.0,888.3136449828709,0.0,212.31863304518674,28369.16,0,20,2,3962,201707293,,,,270.0,1.0,1.0,3.0,1.0,2.0,1.3,865.2266837828934,0.0,660.0,120.0,0.0,20021.0,0,1,3,63.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1100.6322780280575,0.03879678770989545,0.05497389131552158,15400.76923076923,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +7294,2,72.0,2,0.0,5,111,2,22,72,3.0,985.1891816752459,0.0,1009.4473238441715,0.0,0.0,32928.72,0,50,1,3963,201707294,,,437.0,,1.0,2.0,3.0,0.0,2.0,1.5,1559.4738601362603,0.0,750.0,0.0,0.0,20909.0,1,5,1,75.0,7,5.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1994.6365055194174,0.06057437111188705,0.09539607372516225,13939.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7295,2,31.0,4,0.0,4,111,2,0,54,3.0,0.0,0.0,538.3719060502248,0.0,1061.5931652259337,10088.1,0,50,2,3964,201707295,,,,324.0,1.0,0.0,3.0,0.0,1.0,1.0,2174.5137985531146,0.0,400.0,600.0,0.0,16040.0,0,1,3,65.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1599.9650712761586,0.15859924775489523,0.09974844584015952,16040.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7296,2,59.0,1,0.0,7,221,2,52,75,8.0,0.0,0.0,989.2583773672881,0.0,1142.981974559922,35146.62000000001,60,50,1,3965,201707296,,,277.0,,1.0,2.0,4.0,0.0,2.0,1.5,1611.8287531639012,0.0,735.0,646.0,0.0,43777.0,1,5,3,100.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2132.24035192721,0.06066701014001374,0.048706863237024244,29184.666666666668,8,4,8,8_1,8_1,8_0_0 +7297,2,70.0,1,0.0,1,221,2,75,72,10.0,0.0,0.0,2729.5455636746397,0.0,0.0,50640.21999999999,60,44,1,3966,201707297,,,270.0,,0.0,2.0,7.0,0.0,2.0,1.5,1865.490469553868,0.0,2028.0,0.0,0.0,64420.0,5,5,1,220.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2729.5455636746397,0.05390074457959781,0.042371089159805024,42946.666666666664,10,5,10,10_1,10_1,10_1_0 +7298,2,65.0,3,0.0,5,111,2,0,78,2.0,1581.6966411114656,0.0,401.0870700074175,53.079658261296686,0.0,12425.807127683116,0,70,1,3967,201707298,,,88.0,,0.0,0.0,4.0,0.0,1.0,1.0,2593.8845341949386,0.0,298.0,0.0,0.0,12798.0,0,5,1,60.0,9,7.0,1,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2035.8633693801798,0.16384153950406452,0.15907668146430534,12798.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +7299,2,71.0,1,0.0,1,111,2,75,31,10.0,0.0,0.0,2258.6923394736336,0.0,4571.835158684785,37346.05843873455,33,10,1,3968,201707299,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1859.9633577601485,1035.1126702695867,1250.0,1977.0,0.0,65648.0,5,5,1,150.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,6830.527498158419,0.18289821693937958,0.10404776228001492,43765.333333333336,10,5,10,10_1,10_3,10_1_0 +7300,2,44.0,2,0.0,4,111,2,52,54,8.0,3172.912018277764,0.0,969.0694308904046,0.0,0.0,55329.6563223763,50,50,1,3969,201707300,,,650.0,,2.0,0.0,4.0,2.0,4.0,2.3,4218.522974312391,0.0,720.0,0.0,0.0,63004.0,1,1,2,70.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4141.981449168169,0.07486006103191857,0.06574156322087756,27393.04347826087,8,4,8,8_1,8_4,8_0_1 +7301,2,67.0,2,0.0,4,111,6,22,72,7.0,1903.7472109666587,0.0,1628.57501580193,159.23897478389006,0.0,48897.94242389004,31,12,1,397,201707301,,,498.0,,1.0,3.0,5.0,2.0,4.0,2.1,1368.0678840141259,0.0,1210.0,0.0,0.0,52016.0,1,5,1,180.0,6,4.0,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3691.561201552479,0.0754952257408053,0.07096972472993845,24769.52380952381,7,4,7,7_1,7_2,7_0_1 +7302,2,38.0,2,0.0,1,111,4,0,37,10.0,0.0,0.0,1647.4180325136879,0.0,0.0,42150.3,0,31,2,3970,201707302,,,,1261.0,1.0,0.0,3.0,1.0,2.0,1.3,975.2698905716206,0.0,1224.0,0.0,0.0,54527.0,0,1,3,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1647.4180325136879,0.03908437265010422,0.03021288595583267,41943.84615384615,10,5,10,10_0,10_4,10_1_0 +7303,2,70.0,2,0.0,5,112,2,77,77,8.0,1142.2483265799951,693.9631597817199,745.6450898795613,212.31863304518674,0.0,44032.56,70,50,1,3972,201707303,,,420.0,,0.0,2.0,7.0,0.0,2.0,1.5,1970.1925330144961,0.0,554.0,0.0,0.0,44790.0,5,5,1,220.0,7,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2794.175209286463,0.06345702383160241,0.06238390732945888,29860.0,8,4,8,8_1,8_0,8_0_0 +7304,2,70.0,2,0.0,5,111,4,75,75,9.0,0.0,0.0,4267.037045718825,138.0071114793714,946.3773045714684,47107.91921049864,41,41,1,3973,201707304,,,258.0,,0.0,2.0,5.0,0.0,2.0,1.5,1602.4917121070168,912.2080289660586,2793.0,0.0,0.0,52723.0,5,5,1,120.0,7,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5351.421461769665,0.11359918993359036,0.10150070105588956,35148.666666666664,9,5,9,9_1,9_2,9_0_0 +7305,2,74.0,4,0.0,2,111,2,56,78,3.0,0.0,0.0,698.5375481001666,0.0,2625.6737619921428,31453.820000000003,50,71,1,3974,201707305,,,500.0,,2.0,4.0,5.0,1.0,3.0,2.0,2341.77393356657,0.0,519.0,1484.0,0.0,28310.0,1,5,1,100.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3324.2113100923093,0.10568545601431906,0.11742180537238818,14155.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +7306,2,39.0,5,0.0,3,111,4,0,42,7.0,34.902032201055405,0.0,1817.0051829195086,0.0,0.0,16722.0,0,30,1,3975,201707306,,,250.0,,1.0,0.0,4.0,0.0,1.0,1.0,2282.8179712638016,0.0,1350.0,0.0,0.0,27525.0,0,1,1,90.0,5,4.0,1,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1851.907215120564,0.11074675368499964,0.06728091608067444,27525.0,8,4,8,8_1,8_2,8_0_1 +7307,2,53.0,4,0.0,1,211,2,56,77,4.0,0.0,0.0,895.0432938084987,0.0,2174.496666771121,38868.66449357506,50,50,1,3977,201707307,,,354.0,,2.0,0.0,5.0,2.0,4.0,2.5,1300.7254579409462,0.0,665.0,1229.0,0.0,44156.0,1,7,1,100.0,2,3.0,4,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3069.5399605796197,0.07897209746136276,0.0695158066985148,17662.4,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7308,2,45.0,1,0.0,4,111,1,43,46,5.0,0.0,0.0,807.5578590753372,0.0,0.0,32773.44,30,20,2,3978,201707308,,,,,2.0,0.0,5.0,3.0,5.0,2.6,1865.8557480781835,0.0,600.0,0.0,0.0,51179.0,1,1,1,103.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,807.5578590753372,0.024640619326971386,0.015779086325941053,19684.23076923077,5,3,5,5_0,5_3,5_0_1 +7309,2,58.0,2,0.0,6,112,4,78,47,9.0,0.0,416.377895869032,1480.522741638118,0.0,0.0,53503.5658467513,71,31,1,3979,201707309,,,420.0,,2.0,1.0,4.0,1.0,3.0,2.0,4090.5036325438327,0.0,1100.0,0.0,0.0,64066.0,5,4,1,85.0,10,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1896.9006375071501,0.035453723644147145,0.029608538655560675,32033.0,9,5,9,9_1,9_2,9_0_0 +7310,2,51.0,3,0.0,1,300,2,52,34,4.0,0.0,0.0,366.32951991508196,2830.9151072691566,682.6472105423621,60647.04594281295,50,20,1,3980,201707310,,,130.0,,2.0,0.0,4.0,2.0,4.0,2.5,1784.7652669839083,658.0,0.0,0.0,0.0,43998.0,1,1,1,120.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3879.891837726601,0.06397495174596203,0.08818336828325381,17599.2,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7311,2,69.0,1,0.0,5,111,2,74,75,10.0,0.0,0.0,1114.4298455239652,0.0,2303.6571685402764,60060.299999999996,30,31,1,3982,201707311,,,471.0,,0.0,1.0,4.0,0.0,2.0,1.5,1557.67104593838,0.0,828.0,1302.0,0.0,76546.0,5,5,1,115.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3418.087014064242,0.056910921425038535,0.04465402521443631,51030.666666666664,10,5,10,10_1,10_3,10_0_0 +7312,2,34.0,4,0.0,5,111,1,0,38,4.0,0.0,0.0,484.5347154452023,0.0,0.0,21388.98,0,30,2,3983,201707312,,,,780.0,1.0,0.0,1.0,0.0,1.0,1.0,2989.470025456193,0.0,360.0,0.0,0.0,17620.0,0,4,3,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,484.5347154452023,0.02265347461380591,0.027499132545130665,17620.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7313,2,62.0,2,0.0,1,212,2,74,34,10.0,3648.848821019429,0.0,4037.789295376686,0.0,0.0,76143.42238259148,12,30,1,3984,201707313,,,420.0,,1.0,2.0,7.0,0.0,2.0,1.5,1763.7657487219083,0.0,3000.0,0.0,0.0,86355.0,5,1,1,170.0,2,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,7686.638116396115,0.1009494697752579,0.08901207939778953,57570.0,10,5,10,10_1,10_0,10_1_0 +7314,2,57.0,3,0.0,6,111,2,38,74,9.0,0.0,0.0,1682.4122064069525,159.23897478389006,0.0,14746.0658467513,41,20,1,3985,201707314,,,400.0,,1.0,2.0,4.0,0.0,2.0,1.5,1876.8761182355179,0.0,1250.0,0.0,0.0,53924.0,4,5,1,105.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1841.6511811908426,0.12489101841333335,0.03415271829224172,35949.333333333336,9,5,9,9_1,9_3,9_0_0 +7315,2,52.0,3,0.0,6,112,2,0,54,8.0,0.0,0.0,1546.4733001292707,0.0,0.0,18311.871191295744,0,43,1,3986,201707315,,,472.0,,1.0,2.0,4.0,0.0,1.0,1.0,1755.6649958593775,0.0,1149.0,0.0,0.0,28330.0,0,1,1,96.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1546.4733001292707,0.0844519538158592,0.05458783269076141,28330.0,8,4,8,8_1,8_0,8_0_0 +7316,2,29.0,1,0.0,1,111,2,34,34,10.0,0.0,0.0,767.1799661215703,0.0,925.3553756886056,80854.3,41,10,2,3987,201707316,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3195.6616952732543,0.0,570.0,523.0,0.0,66023.0,1,1,1,25.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1692.5353418101759,0.020933151877020464,0.025635541278193598,44015.333333333336,10,5,10,10_0,10_4,10_1_0 +7317,2,37.0,3,0.0,9,120,4,85,63,3.0,0.0,0.0,1615.1157181506744,106.15931652259337,0.0,28756.54,50,50,1,3988,201707317,,,420.0,,1.0,0.0,5.0,2.0,4.0,2.1,1890.5145286637248,0.0,1200.0,0.0,0.0,31570.0,6,1,3,85.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1721.2750346732678,0.0598568198633517,0.05452249080371453,15033.333333333332,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7318,2,41.0,5,0.0,9,112,2,47,47,8.0,0.0,0.0,2584.185149041079,0.0,0.0,69094.42,31,31,1,3989,201707318,,,660.0,,2.0,2.0,7.0,2.0,4.0,2.3,511.6381836419411,0.0,1920.0,0.0,0.0,62146.0,1,1,2,150.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2584.185149041079,0.03740077923862852,0.04158248558299937,27020.000000000004,7,4,7,7_1,7_0,7_0_0 +7319,1,63.0,4,312.0,99,111,1,56,38,1.0,0.0,0.0,312.2557055091304,0.0,0.0,11521.34,20,20,2,399,201707319,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3662.198906931567,0.0,232.0,0.0,0.0,12097.0,4,4,3,39.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,312.2557055091304,0.027102377458622904,0.02581265648583371,8064.666666666667,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +7320,2,40.0,2,0.0,2,111,2,33,47,8.0,0.0,1387.9263195634398,565.290501352736,120.31389205893916,0.0,54390.36,31,30,1,3990,201707320,,,400.0,,2.0,0.0,4.0,3.0,5.0,2.4,1811.7054782152245,0.0,420.0,0.0,0.0,69979.0,1,1,2,130.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2073.530712975115,0.038123129042997965,0.029630756555182484,29157.916666666668,8,4,8,8_1,8_3,8_0_1 +7321,2,58.0,2,0.0,1,112,4,37,48,10.0,0.0,0.0,201.8894647688343,113.23660429076627,0.0,42115.235093768446,31,20,2,3991,201707321,,,120.0,,2.0,3.0,4.0,0.0,2.0,1.5,2653.165484882704,0.0,150.0,0.0,0.0,64776.0,1,1,1,80.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,315.1260690596006,0.007482472040295651,0.004864858420705208,43184.0,10,5,10,10_0,10_0,10_1_0 +7322,2,77.0,2,0.0,3,111,2,77,75,6.0,0.0,0.0,1798.1621662077507,0.0,0.0,35701.41087530163,50,71,2,3992,201707322,,,500.0,,0.0,2.0,5.0,0.0,2.0,1.5,3032.1622343709564,0.0,1336.0,0.0,0.0,34029.0,5,5,1,76.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1798.1621662077507,0.050366697621233955,0.052842051374055975,22686.0,6,3,6,6_0,6_3,6_0_1 +7323,2,57.0,2,0.0,1,111,2,33,33,10.0,0.0,0.0,2529.279770662107,0.0,2658.732623961824,116568.47296536325,30,20,2,3993,201707323,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2088.290045188875,1293.8908378369833,1344.0,744.0,0.0,166382.0,1,1,2,54.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,5188.012394623931,0.04450613671644715,0.03118133208294125,110921.33333333333,10,5,10,10_0,10_4,10_1_0 +7324,2,77.0,3,0.0,5,112,5,78,77,4.0,0.0,0.0,1316.3193102927996,636.9558991355602,0.0,17750.4658467513,71,71,1,3994,201707324,,,86.0,,0.0,4.0,5.0,0.0,2.0,1.5,4884.834441876279,0.0,978.0,0.0,0.0,24541.0,5,5,1,120.0,7,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1953.2752094283599,0.11004078576258039,0.0795923234354085,16360.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7325,2,70.0,1,0.0,9,111,4,77,72,8.0,0.0,555.170527825376,1267.1698357905957,0.0,279.61147635066106,36177.89676638518,50,50,1,3995,201707325,,,6.0,,0.0,4.0,6.0,0.0,2.0,1.5,792.837363838294,269.51600855815366,830.0,0.0,0.0,44629.0,5,5,1,140.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2101.9518399666326,0.058100443304920604,0.047098340540156235,29752.666666666668,8,4,8,8_1,8_1,8_0_0 +7326,2,29.0,3,0.0,5,111,6,54,63,6.0,95.18736054833293,0.0,1036.3659191466827,0.0,0.0,34580.619999999995,42,50,2,3996,201707326,,,,880.0,2.0,0.0,3.0,1.0,3.0,1.8,1353.5228258372274,0.0,770.0,0.0,0.0,39125.0,1,1,3,68.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1131.5532796950156,0.03272218021813998,0.028921489576869408,21736.11111111111,6,3,6,6_0,6_3,6_0_0 +7327,2,66.0,3,0.0,4,112,5,75,75,6.0,0.0,410.8261905907782,1682.4122064069525,212.31863304518674,0.0,34134.520000000004,30,60,1,3997,201707327,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2424.695211239561,0.0,1250.0,0.0,0.0,32592.0,4,5,1,100.0,8,1.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2305.5570300429176,0.06754326793061445,0.07073996778482197,21728.0,6,3,6,6_1,6_1,6_0_1 +7328,2,46.0,2,0.0,1,111,1,54,43,8.0,0.0,0.0,605.6683943065029,0.0,0.0,64872.550875301626,30,0,2,3998,201707328,,,,950.0,2.0,4.0,5.0,1.0,3.0,1.8,2582.4830075467185,0.0,450.0,0.0,0.0,55179.0,1,1,3,130.0,9,7.0,4,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,605.6683943065029,0.00933628146472492,0.010976429335553433,30655.0,8,4,8,8_0,8_3,8_1_0 +7329,2,78.0,1,0.0,1,120,2,86,71,4.0,4124.785623761094,0.0,753.7206684703146,212.31863304518674,0.0,25860.751191295745,71,71,1,4,201707329,,,163.0,,0.0,4.0,7.0,0.0,2.0,1.5,2076.2034037169337,0.0,560.0,0.0,0.0,26332.0,5,5,1,200.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5090.8249252765945,0.19685526099450942,0.19333225449174368,17554.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7330,2,78.0,2,0.0,1,112,5,0,78,1.0,0.0,0.0,197.85167547345762,0.0,0.0,4736.4400000000005,0,70,1,40,201707330,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4724.114883566748,0.0,147.0,0.0,0.0,9893.0,0,5,1,40.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,197.85167547345762,0.04177223304284602,0.019999158543764037,9893.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +7331,2,44.0,5,0.0,5,111,2,0,63,3.0,0.0,0.0,768.2898745939409,0.0,1431.6917181587535,30987.17087530163,0,50,2,400,201707331,,,,520.0,1.0,1.0,4.0,3.0,4.0,2.1,561.3756775790197,1380.0,0.0,0.0,0.0,30412.0,0,1,3,98.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2199.9815927526943,0.07099652955107925,0.07233926057979397,14481.904761904761,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7332,2,47.0,2,0.0,5,111,1,0,33,9.0,0.0,0.0,41.72382271889242,0.0,0.0,27333.8317113366,0,20,2,4000,201707332,,,,700.0,1.0,0.0,2.0,0.0,1.0,1.0,4740.212406289272,0.0,31.0,0.0,0.0,36600.0,0,1,3,53.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,41.72382271889242,0.001526453486636037,0.0011399951562538913,36600.0,9,5,9,9_0,9_4,9_0_0 +7333,1,24.0,4,329.0,4,111,1,85,85,1.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,3573.1081611881455,71,71,2,4002,201707333,,,,,0.0,0.0,3.0,1.0,3.0,1.8,2395.936314291568,500.0,0.0,0.0,0.0,14878.0,8,6,3,67.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,797.0947799828602,0.22308162642291993,0.05357539857392528,8265.555555555555,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7334,2,54.0,3,0.0,5,111,4,52,56,2.0,0.0,0.0,1345.929765125562,0.0,0.0,26651.54,60,50,2,4003,201707334,,,700.0,467.0,2.0,2.0,3.0,1.0,3.0,1.8,2526.7370215317937,0.0,1000.0,0.0,0.0,24824.0,4,4,3,90.0,5,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1345.929765125562,0.05050101289177143,0.054218891601899855,13791.111111111111,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +7335,1,39.0,3,482.0,9,221,1,0,85,1.0,0.0,0.0,962.3397820647768,452.94641716306506,891.7382587897844,15491.619999999999,0,60,2,4005,201707335,504.0,504.0,524.0,,0.0,0.0,4.0,4.0,5.0,2.4,786.718534162902,0.0,715.0,504.0,0.0,23084.0,0,6,4,82.0,1,3.0,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,2307.0244580176263,0.1489208009244757,0.0999404114545844,9618.333333333334,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +7336,2,45.0,2,0.0,1,111,1,0,52,4.0,0.0,0.0,3488.6499512054565,0.0,934.2019853988216,10974.220000000001,0,71,2,4007,201707336,,,,225.0,1.0,0.0,2.0,0.0,1.0,1.0,2489.263816330989,0.0,2592.0,528.0,0.0,17638.0,0,1,3,42.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,4422.851936604278,0.4030219857633871,0.2507569983333869,17638.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +7337,2,51.0,3,0.0,1,222,5,63,63,7.0,0.0,0.0,1289.4007149902884,353.8643884086446,0.0,45341.54000000001,50,31,1,4008,201707337,,,164.0,,4.0,0.0,7.0,3.0,5.0,3.0,2389.5034520528816,0.0,958.0,0.0,0.0,74384.0,1,1,2,150.0,1,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1643.265103398933,0.036241934071911376,0.02209164744298415,24794.666666666668,7,4,7,7_1,7_0,7_1_0 +7338,1,40.0,4,462.0,99,300,6,0,46,2.0,634.5824036555529,0.0,834.4764543778484,318.4779495677801,0.0,14455.32,0,50,1,4009,201707338,,,,88.0,2.0,0.0,4.0,3.0,4.0,2.3,108.14539579212159,0.0,620.0,0.0,0.0,25886.0,0,4,3,90.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1787.5368076011814,0.12365944217085346,0.06905419174848108,11254.782608695654,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +7339,2,70.0,4,0.0,1,300,6,0,75,7.0,0.0,0.0,629.1069262979371,0.0,1172.327276463327,22854.78,0,71,1,401,201707339,,,501.0,,0.0,4.0,11.0,0.0,1.0,1.0,5074.13788376263,1130.0,0.0,0.0,0.0,27712.0,0,5,5,280.0,0,0.0,1,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1801.4342027612643,0.07882089448077227,0.06500556447608488,27712.0,8,4,8,8_1,8_0,8_1_0 +7340,2,63.0,2,0.0,1,112,2,77,78,7.0,2379.684013708323,0.0,1453.6041463356069,56.61830214538313,0.0,41839.38,50,50,1,4010,201707340,,,400.0,,0.0,1.0,5.0,0.0,2.0,1.5,3522.1172192845006,0.0,1080.0,0.0,0.0,32605.0,5,5,1,90.0,7,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3889.906462189313,0.09297237344791709,0.11930398595888093,21736.666666666668,6,3,6,6_1,6_0,6_1_0 +7341,2,69.0,1,0.0,7,112,2,72,86,3.0,0.0,69.396315978172,4905.913993882673,0.0,0.0,45704.66,50,70,1,4011,201707341,,,440.0,,0.0,1.0,7.0,0.0,2.0,1.5,2057.2285315895347,0.0,3645.0,0.0,0.0,27572.0,5,5,1,260.0,9,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4975.310309860845,0.10885783440596308,0.18044792941610494,18381.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7342,2,49.0,3,0.0,4,111,1,0,37,9.0,0.0,0.0,250.5293069328068,0.0,466.8559950517674,52450.771693502604,0,20,2,4012,201707342,,,,325.0,2.0,0.0,5.0,2.0,3.0,1.8,796.6279390832715,450.0,0.0,0.0,0.0,58488.0,0,1,3,102.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,717.3853019845742,0.01367730690744901,0.012265512617709175,32493.333333333332,9,5,9,9_0,9_4,9_0_1 +7343,2,50.0,3,0.0,5,111,2,38,38,8.0,2538.3296146222115,0.0,1965.0574570833205,0.0,0.0,76544.69999999998,20,31,1,4014,201707343,,,452.0,,3.0,0.0,6.0,2.0,4.0,2.5,1864.1165148027228,0.0,1460.0,0.0,0.0,72910.0,1,1,1,150.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4503.387071705532,0.05883342767958505,0.061766384195659475,29164.0,8,4,8,8_1,8_3,8_0_0 +7344,2,51.0,3,0.0,9,111,2,43,38,1.0,0.0,0.0,2422.6735772260117,53.079658261296686,0.0,50362.53999999999,33,31,1,4015,201707344,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.3,1632.8038843524407,0.0,1800.0,0.0,0.0,20034.0,1,1,2,106.0,7,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2475.7532354873083,0.04915862534906517,0.12357757988855488,8710.434782608696,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7345,2,78.0,2,0.0,2,111,2,0,77,5.0,0.0,0.0,370.1306854095295,0.0,1829.4788880726926,19441.30083603497,0,71,2,4016,201707345,,,192.0,502.0,0.0,7.0,4.0,0.0,1.0,1.0,2608.0120245940584,0.0,275.0,1034.0,0.0,18420.0,0,5,3,75.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2199.609573482222,0.11314106972745296,0.1194142005147786,18420.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +7346,2,60.0,2,0.0,99,112,6,0,75,1.0,0.0,0.0,1682.4122064069525,0.0,0.0,18428.079999999998,0,50,1,4017,201707346,,,,,0.0,0.0,3.0,0.0,1.0,1.0,4273.072573292163,0.0,1250.0,0.0,0.0,7167.0,0,5,3,50.0,8,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1682.4122064069525,0.09129612018218679,0.23474427325337693,7167.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +7347,2,48.0,3,0.0,4,400,4,68,67,6.0,190.37472109666587,0.0,1615.1157181506744,95.54338487033404,0.0,28533.1,50,50,1,4018,201707347,,,360.0,,2.0,2.0,5.0,0.0,2.0,1.5,2140.204761606161,0.0,1200.0,0.0,0.0,31070.0,1,1,3,90.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1901.0338241176742,0.06662556203558934,0.06118551091463387,20713.333333333332,5,3,5,5_1,5_0,5_0_1 +7348,1,36.0,3,379.0,99,111,2,0,67,3.0,0.0,0.0,862.9342794352235,0.0,1608.0595385116433,16447.6,0,50,8,4019,201707348,,,,17.0,1.0,0.0,3.0,1.0,2.0,1.3,636.5962835751026,1550.0,0.0,0.0,0.0,18818.0,0,1,3,65.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2470.993817946867,0.15023430883210115,0.13131011892586178,14475.384615384615,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +7349,2,21.0,4,0.0,2,112,4,81,68,1.0,0.0,0.0,0.0,0.0,0.0,6960.0,50,71,1,402,201707349,,,,490.0,2.0,0.0,4.0,1.0,3.0,1.8,357.8374072571241,0.0,0.0,0.0,0.0,3970.0,4,4,3,90.0,8,0.0,4,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0.0,0.0,0.0,2205.5555555555557,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +7350,2,57.0,4,0.0,2,111,1,85,21,2.0,0.0,0.0,637.9707086695164,0.0,0.0,31903.55023234127,71,71,2,4020,201707350,,,,329.0,2.0,0.0,5.0,2.0,4.0,2.5,4689.19686868883,0.0,474.0,0.0,0.0,33610.0,6,1,3,85.0,7,6.0,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,637.9707086695164,0.01999685627534934,0.018981574194273026,13444.0,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +7351,2,45.0,2,0.0,5,111,2,0,85,1.0,0.0,0.0,1749.7086946632305,247.7050718860512,0.0,28433.22,0,20,2,4021,201707351,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2291.4467309460565,0.0,1300.0,0.0,0.0,4679.0,0,4,1,90.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1997.4137665492817,0.07024929876212689,0.42688902896971187,4679.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +7352,2,65.0,2,0.0,3,111,2,74,74,10.0,3172.912018277764,416.377895869032,1628.57501580193,0.0,0.0,37673.98134949915,20,20,1,4022,201707352,,,350.0,,0.0,1.0,4.0,0.0,2.0,1.5,1511.8851358984969,0.0,1210.0,0.0,0.0,64111.0,5,5,1,110.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,5217.864929948726,0.1385004914012916,0.0813879822487362,42740.666666666664,10,5,10,10_1,10_3,10_0_1 +7353,2,81.0,2,0.0,7,300,4,77,74,9.0,0.0,277.585263912688,3261.1878208992366,132.69914565324171,0.0,35184.53999999999,70,12,1,4023,201707353,,,296.0,,0.0,4.0,6.0,0.0,2.0,1.5,2565.0167025698447,0.0,2423.0,0.0,0.0,48899.0,5,5,1,150.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3671.4722304651664,0.104349018928915,0.075082767141765,32599.333333333332,9,5,9,9_1,9_0,9_0_0 +7354,1,41.0,3,379.0,5,111,4,0,52,3.0,0.0,0.0,1406.4966045562123,0.0,0.0,14370.939999999999,0,20,2,4024,201707354,,,,193.0,1.0,0.0,3.0,1.0,2.0,1.3,1074.7029133072758,0.0,1045.0,0.0,0.0,18638.0,0,1,3,55.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1406.4966045562123,0.09787088419798652,0.07546392341218008,14336.923076923076,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +7355,2,44.0,3,0.0,5,111,2,0,43,5.0,0.0,0.0,592.2090966552472,0.0,1733.9355032023584,49237.94,0,33,2,4027,201707355,,,,,1.0,0.0,4.0,2.0,3.0,2.0,1751.2103819080246,0.0,440.0,980.0,0.0,37583.0,0,1,2,87.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2326.1445998576055,0.04724293095644549,0.061893531646159315,18791.5,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7356,1,24.0,4,250.0,99,112,6,0,52,2.0,0.0,0.0,1857.3830758732754,0.0,0.0,12626.919999999998,0,60,2,4028,201707356,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1009.0396911919009,0.0,1380.0,0.0,0.0,15870.0,0,1,3,71.0,9,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1857.3830758732754,0.14709708114673062,0.11703737088048365,12207.692307692307,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +7357,2,67.0,3,0.0,1,111,5,52,77,7.0,0.0,55.5170527825376,336.4824412813905,184.0094819724952,0.0,13961.84,20,70,1,4029,201707357,,,120.0,,1.0,4.0,1.0,1.0,3.0,1.8,3476.469013663154,0.0,250.0,0.0,0.0,45620.0,4,5,2,30.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,576.0089760364233,0.0412559502212046,0.012626237966602878,25344.444444444445,7,4,7,7_1,7_2,7_1_0 +7358,2,42.0,2,0.0,6,111,4,52,56,6.0,0.0,0.0,1884.3016711757866,0.0,0.0,64407.4,50,31,1,403,201707358,,,1000.0,,2.0,0.0,7.0,3.0,5.0,2.6,1966.696244785101,0.0,1400.0,0.0,0.0,56629.0,1,1,2,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1884.3016711757866,0.029255981008017504,0.033274500188521544,21780.384615384613,6,3,6,6_1,6_4,6_0_0 +7359,2,45.0,3,0.0,9,111,2,43,42,7.0,0.0,0.0,853.3194710896063,0.0,1479.1531435481343,55194.619999999995,33,30,1,4031,201707359,,,737.0,,2.0,0.0,4.0,2.0,4.0,2.1,3416.085945818023,0.0,634.0,836.0,0.0,53463.0,1,1,2,100.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2332.4726146377407,0.0422590573979446,0.043627791456479076,25458.571428571428,7,4,7,7_1,7_2,7_0_0 +7360,2,58.0,4,0.0,3,211,1,0,75,1.0,0.0,0.0,422.62194624942646,0.0,1604.7750014332032,16977.72,0,42,2,4034,201707360,,,,420.0,0.0,3.0,3.0,1.0,2.0,1.5,1032.1089546185328,0.0,314.0,907.0,0.0,15453.0,0,5,3,59.0,4,3.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2027.3969476826296,0.11941514806950694,0.1311976281422785,10302.0,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +7361,2,53.0,3,0.0,9,111,2,85,21,6.0,0.0,0.0,2223.747032654432,0.0,4769.0465331966125,43167.56784974979,71,71,1,4035,201707361,,,,,2.0,1.0,5.0,1.0,3.0,2.0,2622.461393404583,1697.610532317421,950.0,1700.0,0.0,48913.0,7,1,1,180.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,6992.793565851045,0.16199183586599905,0.14296390664753839,24456.5,7,4,7,7_1,7_4,7_0_0 +7362,2,52.0,2,0.0,1,112,2,34,31,7.0,2920.665512824682,0.0,3041.931855879244,176.9321942043223,3441.372016623521,106528.77097089468,20,10,1,4037,201707362,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2164.4377677132097,3317.120105331122,888.0,0.0,0.0,97341.0,1,1,1,180.0,6,0.0,4,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,9580.90157953177,0.0899372206420125,0.09842616759157775,38936.4,9,5,9,9_1,9_0,9_1_0 +7363,1,33.0,4,174.0,1,221,5,0,22,2.0,0.0,138.792631956344,880.2380663921175,159.23897478389006,0.0,32667.359999999997,0,41,1,4039,201707363,,,720.0,,1.0,0.0,3.0,0.0,1.0,1.0,3097.021545869589,0.0,654.0,0.0,0.0,10858.0,0,1,3,60.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1178.2696731323517,0.036068714249708325,0.10851627124077655,10858.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +7364,2,65.0,3,0.0,2,111,2,78,74,4.0,0.0,0.0,629.895130078763,0.0,891.7382587897844,13491.44,71,30,2,404,201707364,,,324.0,,0.0,1.0,4.0,0.0,2.0,1.5,3102.717612539489,0.0,468.0,504.0,0.0,25440.0,5,5,3,80.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1521.6333888685474,0.11278509846751328,0.05981263321024164,16960.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +7365,2,39.0,2,0.0,9,111,4,52,45,7.0,0.0,0.0,150.74413369406295,0.0,0.0,50122.80238259149,30,31,1,4040,201707365,,,250.0,,2.0,0.0,4.0,2.0,4.0,2.1,2755.0130239340556,0.0,112.0,0.0,0.0,49995.0,1,1,2,190.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,150.74413369406295,0.003007496120097606,0.003015184192300489,23807.142857142855,6,3,6,6_1,6_3,6_0_0 +7366,2,66.0,2,0.0,6,111,4,75,74,10.0,0.0,0.0,1713.3685910048403,0.0,0.0,64018.48,30,20,2,4041,201707366,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2727.4309834091064,0.0,1273.0,0.0,0.0,76150.0,5,5,1,83.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1713.3685910048403,0.026763656228714586,0.022499915837227054,50766.666666666664,10,5,10,10_0,10_4,10_0_0 +7367,1,20.0,3,177.0,7,111,6,0,84,2.0,0.0,0.0,403.7789295376686,0.0,0.0,13940.04,0,31,2,4042,201707367,,,,302.0,0.0,0.0,1.0,0.0,1.0,1.0,2998.1582258498656,0.0,300.0,0.0,0.0,11124.0,0,3,3,23.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,403.7789295376686,0.02896540680928237,0.03629799798073252,11124.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7368,2,69.0,2,0.0,5,111,5,72,74,7.0,0.0,818.8765285424296,1323.3046857738013,0.0,0.0,29138.13086635044,50,41,1,4043,201707368,,,361.0,,0.0,1.0,5.0,0.0,2.0,1.5,1949.1285371496758,0.0,983.19,0.0,0.0,39486.0,5,5,1,110.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2142.181214316231,0.07351814102771033,0.0542516642434339,26324.0,7,4,7,7_1,7_2,7_0_0 +7369,1,37.0,2,400.0,1,111,2,0,68,2.0,0.0,0.0,1211.3367886130059,56.61830214538313,0.0,20477.3458467513,0,41,2,4044,201707369,,,500.0,,1.0,0.0,3.0,2.0,3.0,1.8,966.0148341328868,0.0,900.0,0.0,0.0,22280.0,0,1,3,55.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1267.955090758389,0.06191989431870381,0.05691001305019699,12377.777777777777,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +7370,2,36.0,2,0.0,4,112,2,68,64,7.0,0.0,0.0,545.6874430402354,0.0,1382.4197850548694,27897.830387787995,43,71,2,4045,201707370,,,,609.0,2.0,0.0,2.0,1.0,3.0,1.8,2208.0235461954617,346.7627445403116,262.0,578.0,0.0,42206.0,1,1,3,37.0,10,3.0,4,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1928.1072280951048,0.06911316046064697,0.045683249492847106,23447.777777777777,6,3,6,6_0,6_1,6_0_1 +7371,2,25.0,3,0.0,2,111,2,0,46,5.0,0.0,0.0,464.34576896831885,0.0,2609.749864513754,11783.84,0,50,2,4046,201707371,,,,390.0,1.0,1.0,3.0,0.0,1.0,1.0,1808.0261985340258,0.0,345.0,1475.0,0.0,20370.0,0,1,3,78.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3074.0956334820726,0.2608738436267017,0.15091289315081358,20370.0,5,3,5,5_0,5_2,5_0_1 +7372,2,41.0,3,0.0,7,111,4,52,52,6.0,0.0,0.0,1736.249397011975,0.0,0.0,53716.96000000001,42,30,1,4047,201707372,,,540.0,,2.0,0.0,4.0,2.0,4.0,2.1,2356.220456612101,0.0,1290.0,0.0,0.0,43748.0,1,1,2,96.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1736.249397011975,0.032322182733571944,0.03968751478952123,20832.38095238095,5,3,5,5_1,5_4,5_0_0 +7373,2,31.0,1,0.0,9,112,4,52,46,7.0,0.0,0.0,1534.3599322431405,0.0,0.0,41339.5,43,12,1,4048,201707373,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2344.5680469145004,0.0,1140.0,0.0,0.0,52074.0,4,1,2,78.0,8,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1534.3599322431405,0.03711607378519674,0.029464990825424215,28930.0,8,4,8,8_1,8_1,8_0_0 +7374,1,50.0,3,353.0,99,400,4,0,68,1.0,0.0,0.0,1671.644768285948,77.85016544990181,0.0,10617.579999999998,0,50,8,4049,201707374,,,360.0,16.0,1.0,3.0,3.0,1.0,2.0,1.3,723.4660019735819,0.0,1242.0,0.0,0.0,12926.0,0,4,3,70.0,0,1.0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1749.4949337358498,0.16477341670473405,0.13534696996254447,9943.076923076922,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +7375,2,85.0,3,0.0,2,211,2,0,77,8.0,0.0,0.0,2792.952408645404,0.0,88.05996158615667,10756.0,0,60,1,405,201707375,,,411.0,,0.0,0.0,5.0,0.0,1.0,1.0,1865.5285249612948,84.88052661587105,2040.0,0.0,0.0,29542.0,0,5,1,150.0,1,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2881.0123702315605,0.26785165212268136,0.09752259055688715,29542.0,8,4,8,8_1,8_1,8_0_1 +7376,2,58.0,2,0.0,7,111,4,77,56,7.0,0.0,0.0,1884.3016711757866,0.0,0.0,43254.28,70,31,2,4050,201707376,,,,570.0,1.0,3.0,4.0,0.0,2.0,1.5,2724.1497850963256,0.0,1400.0,0.0,0.0,37365.0,5,1,3,85.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1884.3016711757866,0.043563357687974154,0.05042959109262108,24910.0,7,4,7,7_0,7_4,7_0_0 +7377,2,44.0,4,0.0,1,111,2,56,38,6.0,0.0,0.0,1275.9414173390328,0.0,0.0,48453.435699499554,33,20,8,4051,201707377,,,,1040.0,2.0,0.0,3.0,2.0,4.0,2.1,4166.576299423304,0.0,948.0,0.0,0.0,47005.0,1,1,3,74.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1275.9414173390328,0.026333352814281674,0.027144801985725622,22383.333333333332,6,3,6,6_0,6_3,6_1_0 +7378,2,59.0,1,0.0,7,111,4,43,37,10.0,0.0,194.3096847388816,2522.272379845303,0.0,0.0,48024.63,33,30,1,4053,201707378,,,400.0,,3.0,2.0,6.0,1.0,3.0,2.0,1933.4175295817104,0.0,1874.0,0.0,0.0,114531.0,1,1,1,157.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2716.5820645841845,0.056566434027376884,0.023719185762668488,57265.5,10,5,10,10_1,10_3,10_0_0 +7379,2,64.0,1,0.0,6,111,2,37,22,10.0,0.0,0.0,840.6650077078629,0.0,1566.561227840375,77915.9,44,44,1,4054,201707379,,,660.0,,2.0,3.0,5.0,0.0,2.0,1.5,2544.5065104607297,1510.0,0.0,0.0,0.0,137302.0,1,1,1,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2407.226235548238,0.03089518616287867,0.017532346473818575,91534.66666666667,10,5,10,10_1,10_2,10_0_0 +7380,2,67.0,3,0.0,1,400,2,78,78,4.0,2379.684013708323,0.0,834.4764543778484,49.54101437721024,0.0,23778.420000000002,71,70,1,4055,201707380,,,250.0,,0.0,3.0,4.0,0.0,2.0,1.5,1807.7310449737042,0.0,620.0,0.0,0.0,27418.0,5,5,1,108.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3263.7014824633816,0.13725476640009646,0.11903499461898685,18278.666666666668,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7381,2,19.0,3,0.0,7,300,4,0,67,2.0,0.0,0.0,222.07841124571772,26.539829130648343,0.0,12949.42,0,50,2,4057,201707381,,,24.0,220.0,1.0,0.0,2.0,0.0,1.0,1.0,3538.962115465625,0.0,165.0,0.0,0.0,12845.0,0,1,3,50.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,248.61824037636606,0.019199179606219124,0.01935525421380818,12845.0,2,1,2_0,2_0_0,2_0_0,2_0_0_0 +7382,1,64.0,3,122.0,99,211,2,0,78,2.0,0.0,0.0,243.61328748772672,0.0,773.1936886728884,9838.699999999999,0,71,2,4058,201707382,,,,185.0,0.0,5.0,2.0,0.0,1.0,1.0,2473.3250634703954,0.0,181.0,437.0,0.0,11274.0,0,5,3,50.0,3,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1016.806976160615,0.10334769595176346,0.09019043606178952,11274.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7383,2,59.0,1,0.0,8,111,1,43,43,9.0,0.0,0.0,592.2090966552472,0.0,0.0,48686.77999999999,44,33,2,4059,201707383,800.0,800.0,,607.0,2.0,7.0,3.0,0.0,2.0,1.5,1717.8049978353313,0.0,440.0,0.0,800.0,48396.0,1,1,3,85.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,592.2090966552472,0.012163652980444533,0.012236736438037178,32264.0,9,5,9,9_0,9_3,9_0_0 +7384,2,83.0,4,0.0,7,221,2,75,72,3.0,1722.8912259248261,0.0,869.470628271113,226.47320858153253,0.0,19936.64,60,70,1,4060,201707384,,,490.0,,0.0,4.0,3.0,0.0,2.0,1.5,2075.3427260981416,0.0,646.0,0.0,0.0,20573.0,5,5,1,69.0,3,4.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2818.8350627774716,0.14138967563127347,0.13701623792239692,13715.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7385,2,73.0,1,0.0,1,112,6,77,72,7.0,2823.89169626721,0.0,551.8312037014804,0.0,0.0,26357.079999999994,70,44,1,4061,201707385,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1836.0447052195088,0.0,410.0,0.0,0.0,35562.0,5,5,1,140.0,6,0.0,3,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3375.7228999686904,0.12807651302681067,0.09492500140511474,23708.0,6,3,6,6_1,6_0,6_1_0 +7386,2,70.0,3,0.0,1,111,2,75,78,8.0,0.0,0.0,917.9240998156332,0.0,2659.290878890964,36580.82,50,50,1,4062,201707386,,,377.0,,0.0,1.0,6.0,0.0,2.0,1.5,1461.8270515057088,0.0,682.0,1503.0,0.0,45687.0,5,5,1,120.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3577.2149787065973,0.0977893600719338,0.07829831196416043,30458.0,8,4,8,8_1,8_3,8_1_0 +7387,2,44.0,3,0.0,8,112,2,37,21,5.0,0.0,0.0,1113.4635863680303,0.0,2074.915533563411,64954.71895505688,43,44,1,4064,201707387,,,600.0,,3.0,0.0,5.0,2.0,4.0,2.5,1674.2116389399475,2000.0,0.0,0.0,0.0,47689.0,4,1,1,127.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3188.379119931441,0.04908618143875778,0.06685774748750112,19075.6,5,3,5,5_1,5_0,5_0_0 +7388,2,67.0,4,0.0,1,111,4,0,56,3.0,0.0,0.0,1474.1867069330415,0.0,1505.6002572727907,11757.721049766424,0,50,2,4065,201707388,,,,460.0,1.0,7.0,2.0,0.0,1.0,1.0,2279.0832938666667,1451.240046082366,495.0,0.0,0.0,16085.0,0,5,3,30.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2979.786964205832,0.25343235747755966,0.18525253119091278,16085.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +7389,2,51.0,2,0.0,9,111,4,43,54,10.0,0.0,0.0,920.6159593458843,0.0,0.0,65619.3375402539,33,31,1,4067,201707389,,,,,2.0,1.0,5.0,1.0,3.0,2.0,1643.2753353177181,0.0,684.0,0.0,0.0,89904.0,1,1,2,140.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,920.6159593458843,0.014029644215489627,0.01023998886974867,44952.0,10,5,10,10_1,10_3,10_0_0 +7390,2,28.0,2,0.0,1,112,4,37,43,9.0,0.0,0.0,1453.6041463356069,53.079658261296686,0.0,48572.05087530163,20,20,2,4068,201707390,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3189.670673698681,0.0,1080.0,0.0,0.0,55992.0,1,1,2,60.0,10,4.0,3,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1506.6838045969034,0.031019563255934825,0.026908912069526066,37328.0,9,5,9,9_0,9_2,9_1_0 +7391,2,88.0,3,0.0,1,300,5,75,75,5.0,0.0,69.396315978172,798.1363507194583,2607.9805425717104,0.0,28106.92,60,71,1,407,201707391,,,,,0.0,4.0,4.0,0.0,2.0,1.5,2089.673399121863,0.0,593.0,0.0,0.0,27336.0,5,5,1,74.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3475.5132092693407,0.12365329282857535,0.12714051833733322,18224.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7392,2,27.0,2,0.0,99,111,1,0,56,2.0,0.0,0.0,165.54936111044412,0.0,0.0,22153.879999999997,0,30,2,4071,201707392,,,,,1.0,0.0,1.0,0.0,1.0,1.0,6382.86077339925,0.0,123.0,0.0,0.0,12540.0,0,3,3,37.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,165.54936111044412,0.007472702800161603,0.01320170343783446,12540.0,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +7393,1,40.0,3,408.0,9,112,4,0,68,1.0,0.0,0.0,1615.1157181506744,123.8525359430256,0.0,10533.170875301625,0,50,1,4074,201707393,,,339.0,88.0,1.0,1.0,4.0,2.0,3.0,1.8,525.5147654067738,0.0,1200.0,0.0,0.0,17782.0,0,1,3,120.0,7,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1738.9682540937001,0.16509446914710796,0.09779373827992915,9878.888888888889,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +7394,2,70.0,3,0.0,9,111,2,77,74,6.0,0.0,0.0,1421.3018319725934,51.310336319253466,0.0,18498.199999999997,50,50,1,4075,201707394,,,260.0,,0.0,3.0,5.0,0.0,2.0,1.5,2620.315388470391,0.0,1056.0,0.0,0.0,32070.0,5,5,1,100.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1472.612168291847,0.07960840342800095,0.04591868313975201,21380.0,6,3,6,6_1,6_3,6_0_0 +7396,2,45.0,3,0.0,9,120,5,52,56,3.0,0.0,69.396315978172,1356.6972032465665,198.16405750884095,0.0,50147.450875301634,71,44,1,4078,201707396,,,,,3.0,0.0,7.0,3.0,5.0,2.8,2176.515793219153,0.0,1008.0,0.0,0.0,41798.0,1,1,2,175.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1624.2575767335793,0.03238963393717686,0.03885969607956312,14927.857142857143,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7397,1,43.0,4,137.0,2,400,2,0,52,3.0,0.0,0.0,807.5578590753372,0.0,2823.8378195009836,16693.3,0,43,2,4080,201707397,,,,134.0,1.0,0.0,4.0,2.0,3.0,1.8,587.5518427935092,0.0,600.0,1596.0,0.0,26824.0,0,1,3,95.0,0,1.0,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,3631.3956785763207,0.21753611799801842,0.1353786041819386,14902.222222222223,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +7398,2,79.0,1,0.0,3,111,2,77,75,10.0,0.0,0.0,1025.3028069267323,0.0,3430.39626005438,44462.75352790374,44,50,1,4081,201707398,,,239.0,,0.0,1.0,3.0,0.0,2.0,1.5,2992.5896110641534,1036.6000329159756,333.0,1331.0,0.0,65040.0,5,5,1,75.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4455.699066981112,0.10021194625710313,0.06850705822541685,43360.0,10,5,10,10_1,10_4,10_0_1 +7399,1,43.0,2,124.0,9,112,2,0,52,3.0,0.0,0.0,2288.080600713455,0.0,1203.1389205893915,19925.887196250445,0,50,1,4082,201707399,,,,,1.0,2.0,6.0,0.0,1.0,1.0,2315.842648153034,0.0,1700.0,680.0,0.0,15719.0,0,2,3,75.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,3491.2195213028467,0.1752102421798216,0.22210188442667134,15719.0,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +7400,1,37.0,4,224.0,5,111,2,0,52,8.0,0.0,0.0,1275.9414173390328,0.0,1043.8999458055016,5570.360000000001,0,20,2,4083,201707400,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3307.1775585499404,0.0,948.0,590.0,0.0,30778.0,0,1,3,35.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2319.8413631445346,0.4164616583388748,0.07537336289377265,30778.0,8,4,8,8_0,8_2,8_0_0 +7401,1,33.0,4,180.0,3,111,1,0,46,5.0,0.0,0.0,982.5287285416603,148.62304313163074,0.0,18659.960000000003,0,50,2,4085,201707401,,,,270.0,1.0,0.0,3.0,1.0,2.0,1.3,4870.502296349686,0.0,730.0,0.0,0.0,24230.0,0,4,3,64.0,7,6.0,2,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1131.151771673291,0.060619195950757175,0.04668393609877387,18638.46153846154,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +7402,1,57.0,3,256.0,9,111,1,0,78,2.0,0.0,0.0,553.1771334666059,184.0094819724952,1273.9117982711205,20514.53831897886,0,71,2,4086,201707402,720.0,720.0,360.0,204.0,1.0,2.0,5.0,1.0,2.0,1.5,3231.6632064709665,0.0,411.0,720.0,0.0,19782.0,0,7,3,98.0,7,5.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,2011.0984137102216,0.09803283809948919,0.10166304790770507,13188.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7403,2,67.0,3,0.0,1,112,1,0,75,6.0,0.0,0.0,1029.6362703210548,0.0,0.0,14012.4,0,30,2,4087,201707403,,,140.0,410.0,0.0,2.0,1.0,0.0,1.0,1.0,3370.584767172001,0.0,765.0,0.0,0.0,20798.0,0,5,3,40.0,10,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1029.6362703210548,0.07348036527083546,0.049506504006205154,20798.0,5,3,5,5_0,5_0,5_1_0 +7404,2,56.0,3,0.0,1,400,5,22,22,3.0,0.0,444.1364222603008,821.0171567265928,148.62304313163074,0.0,25841.720000000005,71,42,1,4088,201707404,,,,,2.0,1.0,5.0,1.0,3.0,2.0,3037.3306675545464,0.0,610.0,0.0,0.0,36255.0,1,1,1,100.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1413.7766221185243,0.05470907594844786,0.03899535573351329,18127.5,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7405,1,53.0,3,353.0,1,111,4,0,56,4.0,0.0,0.0,1615.1157181506744,0.0,0.0,13532.06,0,50,1,4089,201707405,,,800.0,,3.0,1.0,4.0,3.0,4.0,2.3,310.67956052370766,0.0,1200.0,0.0,0.0,40736.0,0,1,3,70.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1615.1157181506744,0.11935475590195982,0.03964836307321962,17711.304347826088,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +7406,1,22.0,3,253.0,8,120,2,52,63,5.0,0.0,0.0,699.8834778652922,0.0,0.0,23162.59619377923,43,50,1,409,201707406,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2189.942072672107,0.0,520.0,0.0,0.0,32386.0,1,1,3,82.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,699.8834778652922,0.030216106692446662,0.021610679857509175,17992.222222222223,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +7407,2,33.0,3,0.0,5,120,2,42,46,8.0,0.0,0.0,3243.690733952604,0.0,0.0,70309.18,30,30,1,4092,201707407,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2229.402227096735,0.0,2410.0,0.0,0.0,54146.0,1,1,2,90.0,0,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3243.690733952604,0.046134668814977,0.05990637782943531,25783.809523809523,7,4,7,7_1,7_1,7_0_0 +7408,2,23.0,3,0.0,7,111,2,0,47,4.0,0.0,0.0,1021.5606917303015,0.0,0.0,17807.06,0,31,2,4093,201707408,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3974.441086418028,0.0,759.0,0.0,0.0,17398.0,0,1,2,42.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1021.5606917303015,0.05736829615502511,0.0587171336780263,17398.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +7409,1,50.0,4,106.0,9,300,4,0,52,6.0,0.0,0.0,121.13367886130058,127.39117982711205,0.0,16887.4,0,50,2,4094,201707409,,,,344.0,1.0,3.0,2.0,0.0,1.0,1.0,4026.4456529037216,0.0,90.0,0.0,0.0,22672.0,0,1,3,45.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,248.52485868841262,0.014716585068655483,0.010961752765014671,22672.0,6,3,6,6_0,6_0,6_0_0 +7410,0,41.0,4,0.0,4,111,1,0,54,1.0,0.0,0.0,200.42344554624543,0.0,373.4847960414139,20031.979999999996,0,42,2,4095,201707410,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1962.2566979680273,360.0,0.0,0.0,0.0,8660.0,0,4,5,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,573.9082415876594,0.028649601366797468,0.06627115953668122,6661.538461538461,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +7411,2,52.0,3,0.0,5,111,1,52,85,1.0,0.0,0.0,511.45331074771354,0.0,0.0,57504.20192904913,50,50,2,4096,201707411,,,,426.0,1.0,1.0,4.0,2.0,4.0,2.5,2076.3559352129896,0.0,380.0,0.0,0.0,25331.0,1,7,3,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,511.45331074771354,0.008894190225937994,0.020190806156397834,10132.4,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +7412,2,70.0,2,0.0,4,111,2,77,74,7.0,0.0,0.0,666.2352337371532,0.0,2220.4990372642446,26320.81632237629,44,60,1,4098,201707412,,,276.0,,0.0,2.0,6.0,0.0,2.0,1.5,1729.6089072396455,0.0,495.0,1255.0,0.0,39092.0,5,5,1,113.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2886.7342710013977,0.10967495216123974,0.07384462987315557,26061.333333333332,7,4,7,7_1,7_3,7_0_1 +7413,1,51.0,4,304.0,9,120,5,0,62,3.0,0.0,41.637789586903196,1092.8949692819563,185.7788039145384,0.0,17180.75119129575,0,50,1,4099,201707413,,,160.0,,1.0,0.0,5.0,1.0,2.0,1.3,622.9428096354969,0.0,812.0,0.0,0.0,18341.0,0,1,3,100.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1320.311562783398,0.07684830238693549,0.07198689072479134,14108.461538461537,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +7414,2,52.0,4,0.0,6,120,5,85,47,2.0,0.0,0.0,2180.4062195034103,286.6301546110021,0.0,37272.78,50,71,1,410,201707414,,,,,2.0,2.0,7.0,3.0,5.0,2.6,1662.7718168836143,0.0,1620.0,0.0,0.0,34050.0,6,1,1,100.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2467.0363741144124,0.06618868713614634,0.07245334432054075,13096.153846153846,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +7415,2,71.0,3,0.0,2,112,4,0,77,7.0,0.0,0.0,3499.417389326461,106.15931652259337,0.0,25270.48,0,70,1,4100,201707415,,,170.0,,0.0,2.0,5.0,0.0,1.0,1.0,1984.0654573082452,0.0,2600.0,0.0,0.0,27726.0,0,5,1,103.0,10,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3605.5767058490546,0.1426793913629284,0.130043161864281,27726.0,8,4,8,8_1,8_0,8_0_1 +7416,2,48.0,2,0.0,3,111,2,0,48,7.0,0.0,0.0,1076.7438121004495,0.0,1061.5931652259337,49700.82,0,20,1,4101,201707416,,,460.0,,1.0,2.0,5.0,0.0,1.0,1.0,2271.270447935889,0.0,800.0,600.0,0.0,26002.0,0,1,2,100.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2138.336977326383,0.04302417902413649,0.08223740394301911,26002.0,7,4,7,7_1,7_2,7_0_1 +7417,2,80.0,1,0.0,4,111,2,86,74,9.0,0.0,0.0,363.4010365839017,0.0,1450.8439924754427,26439.64,70,60,2,4102,201707417,,,264.0,680.0,0.0,2.0,3.0,0.0,2.0,1.5,2010.5002947458918,0.0,270.0,820.0,0.0,60884.0,5,5,3,79.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1814.2450290593445,0.06861837109201731,0.029798387574064524,40589.333333333336,9,5,9,9_0,9_2,9_0_1 +7418,1,32.0,2,210.0,2,112,2,56,62,4.0,0.0,416.377895869032,1002.1172277312272,0.0,1867.4239802070697,34061.22,42,43,1,4105,201707418,,,,,2.0,0.0,4.0,4.0,6.0,2.7,1410.387125360493,1800.0,0.0,0.0,0.0,43391.0,1,1,2,80.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,3285.9191038073286,0.09647097502107466,0.07572812573592055,16070.740740740739,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +7419,2,34.0,3,0.0,6,111,2,52,67,4.0,0.0,0.0,1776.6272899657417,0.0,1528.6941579253446,49897.21999999999,50,43,2,4106,201707419,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1224.8010939164874,0.0,1320.0,864.0,0.0,36214.0,1,1,2,80.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3305.3214478910863,0.06624259724070974,0.09127192378337345,17244.761904761905,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +7420,1,23.0,3,268.0,1,111,3,0,55,7.0,0.0,0.0,932.7293272320144,0.0,0.0,15166.14,0,30,2,4107,201707420,,,,82.0,1.0,0.0,2.0,0.0,1.0,1.0,4065.927001625195,0.0,693.0,0.0,0.0,24173.0,0,1,3,43.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,932.7293272320144,0.06150077259157666,0.03858558421511663,24173.0,7,4,7,7_0,7_2,7_1_0 +7421,2,34.0,2,0.0,1,111,1,0,38,10.0,0.0,0.0,323.0231436301349,0.0,0.0,39069.78999999999,0,20,2,4108,201707421,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3739.8976673007387,0.0,240.0,0.0,0.0,42019.0,0,1,2,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,323.0231436301349,0.00826784949778678,0.007687549528311832,42019.0,10,5,10,10_0,10_4,10_1_0 +7422,2,55.0,3,0.0,8,111,6,0,22,3.0,0.0,0.0,834.4764543778484,0.0,0.0,38465.64,0,31,2,411,201707422,,,,650.0,1.0,0.0,2.0,0.0,1.0,1.0,3359.401476856956,0.0,620.0,0.0,0.0,19307.0,0,1,3,40.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,834.4764543778484,0.02169407435773455,0.04322144581643178,19307.0,5,3,5,5_0,5_2,5_0_0 +7423,2,65.0,2,0.0,5,111,2,0,21,8.0,0.0,0.0,893.6973640433731,0.0,1981.6405750884096,31568.33509376844,50,71,1,4110,201707423,,,,,1.0,1.0,4.0,0.0,2.0,1.5,1385.2447434172764,0.0,664.0,1120.0,0.0,43454.0,8,1,1,92.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2875.3379391317826,0.09108297699549482,0.06616969529000283,28969.333333333332,8,4,8,8_1,8_2,8_0_0 +7424,2,29.0,2,0.0,8,111,2,65,85,4.0,0.0,0.0,38.41449372969704,0.0,71.58458590793767,34235.86,50,43,2,4111,201707424,,,,496.0,1.0,0.0,3.0,2.0,4.0,2.1,1848.3852187811174,69.0,0.0,0.0,0.0,38001.0,1,4,3,64.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,109.99907963763471,0.003212978427813255,0.002894636447399666,18095.714285714286,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7425,1,29.0,4,408.0,99,112,1,0,56,2.0,0.0,0.0,596.2468859506239,0.0,0.0,14872.36,0,50,2,4112,201707425,,,,302.0,1.0,0.0,3.0,2.0,3.0,1.6,240.07928954246051,0.0,443.0,0.0,0.0,17286.0,0,1,3,55.0,9,1.0,2,3,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,596.2468859506239,0.040090939565114336,0.0344930513681953,10803.75,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +7426,1,53.0,5,95.0,5,111,2,0,52,3.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,28090.899999999998,0,50,2,4114,201707426,,,,,1.0,2.0,4.0,1.0,2.0,1.5,817.7776132493213,900.0,0.0,0.0,0.0,21639.0,0,1,3,75.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1434.7706039691484,0.051075992722523965,0.06630484791206379,14426.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +7427,1,32.0,4,200.0,2,111,2,0,21,7.0,380.74944219333173,0.0,471.07541779394666,0.0,265.39829130648343,11396.499999999998,0,50,2,4115,201707427,,,300.0,129.0,1.0,1.0,3.0,0.0,1.0,1.0,2922.8058773933753,0.0,350.0,150.0,0.0,24040.0,0,1,3,73.0,6,5.0,1,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1117.223151293762,0.09803212839852254,0.04647350878925798,24040.0,7,4,7,7_0,7_2,7_0_1 +7428,2,60.0,3,0.0,9,300,4,69,37,5.0,0.0,0.0,1897.7609688270425,169.8549064361494,0.0,21954.82712768312,50,50,1,4116,201707428,,,1320.0,,2.0,4.0,4.0,1.0,3.0,2.0,1879.5812006138638,0.0,1410.0,0.0,0.0,42668.0,4,1,3,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2067.615875263192,0.09417591235123454,0.04845823275670741,21334.0,6,3,6,6_1,6_0,6_0_0 +7429,2,35.0,4,0.0,8,111,2,47,45,4.0,0.0,0.0,942.1508355878933,0.0,1415.4575536345783,34870.880000000005,60,31,1,4117,201707429,,,530.0,528.0,2.0,0.0,4.0,2.0,4.0,2.1,1334.161507375368,0.0,700.0,800.0,0.0,36310.0,1,1,3,80.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2357.6083892224715,0.06760966139146678,0.0649300024572424,17290.47619047619,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +7430,1,45.0,4,286.0,4,211,2,0,85,1.0,0.0,0.0,384.9359128259107,0.0,895.2769026738708,6650.799999999999,0,31,2,4118,201707430,,,319.0,,0.0,0.0,3.0,0.0,3.0,2.0,2627.939491678457,0.0,286.0,506.0,0.0,12242.0,0,4,3,67.0,2,3.0,5,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1280.2128154997815,0.1924900486407322,0.1045754627920096,6121.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +7431,1,20.0,3,223.0,99,111,4,0,84,1.0,0.0,0.0,807.5578590753372,0.0,0.0,9396.2,0,30,2,412,201707431,,,,179.0,0.0,0.0,2.0,0.0,1.0,1.0,2806.461357663849,0.0,600.0,0.0,0.0,3916.0,0,3,3,20.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,807.5578590753372,0.08594515432572074,0.20622008658716476,3916.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7432,1,31.0,3,238.0,99,111,1,52,46,2.0,0.0,0.0,457.61612014269105,0.0,0.0,34997.66,20,41,8,4120,201707432,,,,37.0,2.0,0.0,3.0,2.0,4.0,2.1,643.4811504307319,0.0,340.0,0.0,0.0,23974.0,1,1,3,67.0,7,5.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,457.61612014269105,0.013075620488418111,0.01908801702438855,11416.190476190475,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7433,1,22.0,3,353.0,5,211,2,55,55,1.0,0.0,0.0,527.2250081452623,0.0,982.472505142275,8151.411191295744,71,50,1,4121,201707433,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2228.1478433776083,947.0,0.0,0.0,0.0,14596.0,4,4,3,56.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1509.6975132875373,0.18520688968550936,0.1034322768763728,8108.888888888889,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +7434,2,53.0,3,0.0,1,211,2,54,64,6.0,2030.663691697769,0.0,868.1246985059875,176.9321942043223,0.0,36381.87119129575,42,50,1,4122,201707434,,,245.0,,3.0,0.0,5.0,1.0,3.0,2.0,1576.3467874993764,0.0,645.0,0.0,0.0,44846.0,1,1,1,120.0,1,2.0,4,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3075.720584408079,0.08453992287081527,0.06858405620140211,22423.0,6,3,6,6_1,6_1,6_1_0 +7435,2,40.0,4,0.0,4,111,1,0,53,3.0,0.0,0.0,565.290501352736,0.0,509.5647193084482,33346.159999999996,0,31,2,4123,201707435,,,,,1.0,0.0,4.0,2.0,3.0,1.6,593.6144725648506,0.0,420.0,288.0,0.0,25721.0,0,1,2,70.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1074.8552206611841,0.03223325326397955,0.04178901367214277,16075.625,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +7436,2,43.0,2,0.0,9,211,2,55,54,4.0,2338.4361574707123,0.0,847.935752029104,30.07847301473479,0.0,61178.700000000004,42,42,1,4124,201707436,,,585.0,,2.0,0.0,6.0,2.0,4.0,2.3,2097.533972768489,0.0,630.0,0.0,0.0,39341.0,1,1,2,150.0,1,2.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3216.450382514551,0.0525746768485527,0.08175822634184568,17104.782608695652,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7437,1,39.0,2,564.0,9,111,2,85,54,1.0,0.0,0.0,753.7206684703146,0.0,1132.3660429076626,22998.564375051,42,31,8,4125,201707437,,,,,1.0,0.0,5.0,5.0,7.0,3.2,2310.2252761969858,0.0,560.0,640.0,0.0,24492.0,7,4,3,100.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1886.0867113779773,0.08200888892978107,0.07700827663637014,7653.75,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7438,2,32.0,3,0.0,1,111,2,0,47,7.0,0.0,0.0,323.0231436301349,0.0,849.274532180747,19257.7,0,31,2,4126,201707438,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2548.1207705732595,0.0,240.0,480.0,0.0,26321.0,0,1,2,50.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1172.2976758108819,0.06087423086925655,0.04453849305918779,26321.0,7,4,7,7_0,7_3,7_1_0 +7439,2,59.0,2,0.0,6,111,5,55,46,9.0,0.0,902.152107716236,605.6683943065029,0.0,0.0,27093.205846751298,50,42,1,413,201707439,,,360.0,,2.0,2.0,4.0,0.0,2.0,1.5,532.2964788129909,0.0,450.0,0.0,0.0,54720.0,1,1,1,100.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1507.8205020227388,0.05565308552083138,0.02755519923287169,36480.0,9,5,9,9_1,9_3,9_0_0 +7440,2,63.0,3,0.0,8,211,4,74,74,4.0,0.0,0.0,2629.946761055348,84.9274532180747,0.0,56040.06,20,30,1,4130,201707440,,,,,0.0,2.0,6.0,1.0,3.0,2.0,2427.7829540837656,0.0,1954.0,0.0,0.0,36731.0,7,5,2,140.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2714.8742142734227,0.0484452410342427,0.07391234146289027,18365.5,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7441,1,46.0,3,230.0,9,400,2,0,64,2.0,453.7264186137203,0.0,1391.691377139831,0.0,0.0,12884.4,0,50,1,4131,201707441,,,254.0,,1.0,0.0,5.0,0.0,1.0,1.0,2163.804784876041,0.0,1034.0,0.0,0.0,12066.0,0,1,2,120.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1845.4177957535512,0.14322885006314234,0.15294362636777317,12066.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +7442,2,37.0,1,0.0,8,111,1,0,33,8.0,0.0,0.0,266.49409349486126,0.0,0.0,13320.0058467513,0,20,2,4132,201707442,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2532.3285893021466,0.0,198.0,0.0,0.0,30555.0,0,1,2,48.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,266.49409349486126,0.02000705529418804,0.008721783455894657,30555.0,8,4,8,8_0,8_3,8_0_0 +7443,2,69.0,2,0.0,5,112,4,78,78,6.0,0.0,0.0,1426.6855510330956,134.46846759528495,0.0,11713.36,70,71,1,4133,201707443,,,304.0,,0.0,2.0,4.0,0.0,2.0,1.5,2493.2869054375137,0.0,1060.0,0.0,0.0,33212.0,5,5,1,100.0,9,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1561.1540186283805,0.13327977784584275,0.047005721384691695,22141.333333333332,6,3,6,6_1,6_0,6_0_0 +7444,1,53.0,4,345.0,99,111,1,0,63,1.0,0.0,0.0,487.22657497545345,247.7050718860512,0.0,5490.58,0,50,2,4134,201707444,,,,,1.0,3.0,4.0,1.0,2.0,1.5,864.0416600645166,0.0,362.0,0.0,0.0,11900.0,0,4,3,94.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,734.9316468615046,0.1338531898017158,0.06175896192113484,7933.333333333333,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7445,2,51.0,3,0.0,1,221,2,0,85,5.0,0.0,416.377895869032,473.2220242064128,0.0,881.8391017644495,16147.66,0,71,1,4135,201707445,,,90.0,,0.0,4.0,5.0,1.0,2.0,1.5,3265.2244001342237,850.0,0.0,0.0,0.0,27980.0,0,5,1,100.0,1,2.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1771.4390218398944,0.10970252171769125,0.06331090142387043,18653.333333333332,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7446,2,38.0,2,0.0,1,111,2,0,38,10.0,0.0,0.0,672.964882562781,0.0,0.0,32795.600000000006,0,20,2,4136,201707446,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4313.433083300651,0.0,500.0,0.0,0.0,54004.0,0,1,2,34.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,672.964882562781,0.020519974708887195,0.012461389574157117,54004.0,10,5,10,10_0,10_4,10_1_0 +7447,2,86.0,3,0.0,1,112,2,0,72,2.0,0.0,0.0,457.61612014269105,0.0,1698.549064361494,14608.0,0,71,1,4137,201707447,,,250.0,,0.0,3.0,3.0,0.0,1.0,1.0,2110.9254181903343,0.0,340.0,960.0,0.0,11681.0,0,5,1,80.0,9,3.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2156.165184504185,0.14760166925685825,0.18458737989077864,11681.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +7448,2,70.0,3,0.0,8,111,5,78,78,4.0,0.0,624.566843803548,901.7729426341265,0.0,0.0,23743.98,50,44,1,4138,201707448,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1565.6048488764827,0.0,670.0,0.0,0.0,24279.0,5,5,1,97.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1526.3397864376743,0.06428323248409383,0.06286666610806352,16186.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +7449,1,36.0,4,330.0,3,111,4,0,56,2.0,0.0,0.0,672.964882562781,0.0,0.0,11322.340000000002,0,71,2,414,201707449,,,,170.0,1.0,0.0,3.0,2.0,3.0,1.6,2690.7414414217365,0.0,500.0,0.0,0.0,19859.0,0,1,3,50.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,672.964882562781,0.059436908144675116,0.03388714852524201,12411.875,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7450,2,71.0,3,0.0,4,111,2,78,74,6.0,31.729120182777642,0.0,823.7090162568439,0.0,1461.4599241277022,52406.380000000005,70,50,1,4140,201707450,,,220.0,,0.0,3.0,5.0,0.0,2.0,1.5,1315.021011800363,0.0,612.0,826.0,0.0,33979.0,5,5,1,100.0,8,7.0,3,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2316.8980605673237,0.044210228994395785,0.06818617559573041,22652.666666666668,6,3,6,6_1,6_3,6_0_1 +7451,2,77.0,2,0.0,4,211,2,77,78,6.0,0.0,0.0,530.2963274594714,0.0,1861.3266830294706,25221.899999999998,71,50,1,4141,201707451,,,189.0,,0.0,5.0,5.0,0.0,2.0,1.5,1049.7382542268635,0.0,394.0,1052.0,0.0,30930.0,5,5,1,104.0,3,3.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2391.623010488942,0.09482326908317541,0.077323731344615,20620.0,5,3,5,5_1,5_1,5_0_1 +7452,2,72.0,2,0.0,9,111,4,86,75,6.0,0.0,0.0,1211.3367886130059,0.0,0.0,22405.68,71,50,2,4142,201707452,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2381.724428492008,0.0,900.0,0.0,0.0,33172.0,6,5,1,65.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1211.3367886130059,0.05406382616430324,0.036516845189105446,22114.666666666668,6,3,6,6_0,6_3,6_0_0 +7453,2,37.0,5,0.0,99,300,2,0,55,4.0,0.0,0.0,1076.7438121004495,56.61830214538313,0.0,22773.54,0,31,1,4143,201707453,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1879.0048961182363,0.0,800.0,0.0,0.0,21610.0,0,1,3,60.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1133.3621142458326,0.04976662013221627,0.052446187609709975,16623.076923076922,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7454,2,58.0,1,0.0,5,112,1,75,52,10.0,0.0,0.0,441.4649629611843,0.0,0.0,70013.12000000001,50,60,2,4144,201707454,,,,,1.0,5.0,4.0,0.0,2.0,1.5,1525.9777147996128,0.0,328.0,0.0,0.0,73690.0,5,1,1,91.0,10,5.0,3,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,441.4649629611843,0.006305460504562348,0.0059908395027979955,49126.666666666664,10,5,10,10_0,10_2,10_0_0 +7455,1,33.0,3,378.0,99,111,1,0,56,3.0,0.0,0.0,563.9445715876104,0.0,203.47202333497063,14009.703983607202,0,50,2,4145,201707455,,,,,1.0,0.0,4.0,3.0,4.0,1.9,738.9738825657037,0.0,419.0,115.0,0.0,27088.0,0,1,3,81.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,767.416594922581,0.05477750249545155,0.02833050040322582,14256.842105263158,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +7456,2,63.0,3,0.0,8,111,1,0,78,3.0,0.0,0.0,305.5260566835026,0.0,0.0,13196.305980622457,0,71,8,4146,201707456,,,,265.0,0.0,0.0,1.0,0.0,1.0,1.0,5435.744583281828,0.0,227.0,0.0,0.0,16113.0,0,5,3,30.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,305.5260566835026,0.023152392581085878,0.018961463208806713,16113.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7457,2,76.0,4,0.0,4,300,5,0,86,1.0,0.0,0.0,1345.929765125562,123.8525359430256,0.0,25324.991711336603,0,60,1,4147,201707457,,,650.0,,0.0,1.0,4.0,0.0,1.0,1.0,1908.7123375647823,0.0,1000.0,0.0,0.0,9811.0,0,5,1,100.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1469.7823010685875,0.05803683246263994,0.14980963215458032,9811.0,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +7458,2,59.0,2,0.0,7,111,2,0,37,10.0,0.0,0.0,1682.4122064069525,0.0,0.0,23076.18,0,60,1,4148,201707458,,,145.0,,1.0,1.0,4.0,0.0,1.0,1.0,1730.8168473321903,0.0,1250.0,0.0,0.0,57447.0,0,1,1,100.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1682.4122064069525,0.07290687654572604,0.029286337082997414,57447.0,10,5,10,10_1,10_3,10_0_0 +7459,2,61.0,1,0.0,4,111,1,0,43,9.0,0.0,0.0,668.9270932674043,0.0,1935.638204595286,47737.95087530162,0,33,2,4149,201707459,1094.0,1094.0,,,1.0,0.0,3.0,0.0,1.0,1.0,1805.719143068866,0.0,497.0,1094.0,0.0,39465.0,0,1,2,80.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2604.5652978626904,0.0545596375652191,0.06599684018402864,39465.0,9,5,9,9_0,9_3,9_0_1 +7460,2,47.0,2,0.0,6,111,2,37,37,9.0,0.0,0.0,1615.1157181506744,0.0,0.0,50980.35999999999,31,20,2,415,201707460,,,,,2.0,0.0,3.0,2.0,4.0,2.3,2711.538219491115,0.0,1200.0,0.0,0.0,95203.0,1,1,2,72.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1615.1157181506744,0.0316811359933644,0.016964966630785526,41392.608695652176,10,5,10,10_0,10_4,10_0_0 +7461,2,65.0,3,0.0,6,120,4,78,78,4.0,0.0,0.0,2153.487624200899,339.7098128722988,0.0,19732.71087530163,50,70,1,4150,201707461,,,340.0,,0.0,1.0,6.0,0.0,2.0,1.5,1604.4007763186275,0.0,1600.0,0.0,0.0,26938.0,5,5,1,123.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2493.1974370731978,0.12634845018652752,0.09255317533124945,17958.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7462,2,54.0,2,0.0,99,111,1,56,46,5.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,37010.495699499545,41,30,2,4151,201707462,,,,413.0,2.0,0.0,3.0,1.0,3.0,1.8,1034.122140518505,1200.0,0.0,0.0,0.0,34860.0,4,1,3,82.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1913.0274719588647,0.05168878275750121,0.05487743752033462,19366.666666666668,5,3,5,5_0,5_4,5_0_0 +7463,2,38.0,1,0.0,9,112,5,37,37,10.0,0.0,291.4645271083224,969.0694308904046,0.0,0.0,93018.58000000002,0,0,1,4152,201707463,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2557.4656152166935,0.0,720.0,0.0,0.0,91220.0,4,1,3,110.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1260.5339579987271,0.01355142121067347,0.013818613878521456,50677.777777777774,10,5,10,10_1,10_1,10_0_0 +7464,2,66.0,3,0.0,5,112,4,77,75,6.0,0.0,208.188947934516,3798.213797184336,184.0094819724952,0.0,29727.719999999998,50,50,1,4153,201707464,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1731.6707421701842,0.0,2822.0,0.0,0.0,35143.0,5,5,1,140.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4190.412227091347,0.14095975833637248,0.11923888760468221,23428.666666666668,6,3,6,6_1,6_1,6_0_0 +7465,2,75.0,2,0.0,5,112,4,0,75,10.0,0.0,222.0682111301504,2779.3449649842855,226.47320858153253,0.0,24701.16,0,31,1,4157,201707465,,,238.0,,0.0,3.0,6.0,0.0,1.0,1.0,2250.476906907478,0.0,2065.0,0.0,0.0,46575.0,0,5,1,140.0,4,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3227.8863846959684,0.13067752221741685,0.06930512903265633,46575.0,10,5,10,10_1,10_0,10_0_0 +7466,2,30.0,2,0.0,4,112,4,52,13,10.0,0.0,0.0,0.0,212.31863304518674,0.0,65593.85922358118,50,31,1,4158,201707466,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2636.7965171206524,0.0,0.0,0.0,0.0,67954.0,1,1,3,70.0,9,0.0,4,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,212.31863304518674,0.0032368675293442343,0.0031244464350176113,37752.22222222222,9,5,9,9_1,9_0,9_0_1 +7467,2,67.0,3,0.0,6,111,2,77,78,7.0,0.0,0.0,2341.9177913184776,0.0,0.0,36796.6,44,70,1,4159,201707467,,,534.0,,0.0,2.0,6.0,0.0,2.0,1.5,2349.5297593007913,0.0,1740.0,0.0,0.0,39611.0,5,5,1,130.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2341.9177913184776,0.06364495065626927,0.059122915132626734,26407.333333333332,7,4,7,7_1,7_4,7_0_0 +7468,2,67.0,3,0.0,1,112,2,77,75,5.0,253.83296146222114,582.9290542166448,1076.7438121004495,113.23660429076627,0.0,29054.040000000005,70,50,1,4160,201707468,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1747.8585916405639,0.0,800.0,0.0,0.0,30000.0,4,5,1,120.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2026.7424320700818,0.06975768024240626,0.06755808106900273,20000.0,5,3,5,5_1,5_0,5_1_0 +7469,2,86.0,1,0.0,3,111,1,0,74,9.0,0.0,0.0,1287.0421458494484,0.0,1610.8285188979999,36919.28054233431,0,70,2,4161,201707469,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2512.375971492033,1552.6690054043802,314.0,0.0,0.0,35172.0,0,5,1,67.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2897.8706647474482,0.07849206761828798,0.08239140977901309,35172.0,9,5,9,9_0,9_3,9_0_1 +7470,2,46.0,1,0.0,9,111,2,37,37,10.0,0.0,0.0,1152.2108093541028,0.0,2987.499052846017,133947.8690754409,30,20,1,4162,201707470,,,580.0,,2.0,0.0,8.0,2.0,4.0,2.3,1932.371960803868,633.5699401182443,594.0,1317.0,0.0,150140.0,1,1,2,240.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4139.7098622001195,0.03090538050940243,0.027572331571867052,65278.26086956522,10,5,10,10_1,10_3,10_0_0 +7471,1,50.0,5,24.0,99,112,2,0,54,4.0,0.0,0.0,1037.7118489118084,0.0,2105.493111031435,25406.190875301632,0,50,1,4163,201707471,,,291.0,574.0,1.0,2.0,5.0,2.0,3.0,2.0,643.5615699158533,0.0,771.0,1190.0,0.0,32140.0,0,1,3,121.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,3143.2049599432435,0.12371807231436956,0.09779729184639836,16070.0,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +7472,2,44.0,3,0.0,3,111,2,0,52,3.0,0.0,0.0,388.97370212128743,0.0,2921.150526313361,40841.25728588652,0,50,1,4167,201707472,,,524.0,,1.0,0.0,6.0,2.0,3.0,2.0,814.9290672001698,0.0,289.0,1651.0,0.0,28618.0,0,1,1,120.0,6,4.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3310.124228434648,0.08104853886509819,0.11566581272047831,14309.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +7473,2,48.0,2,0.0,6,112,2,54,38,9.0,0.0,0.0,1051.3377917577693,0.0,2645.5090791739517,97653.14027116715,31,50,1,4169,201707473,,,330.0,,2.0,0.0,6.0,2.0,4.0,2.3,1023.9935820337279,776.3345027021901,460.0,1040.0,0.0,74578.0,1,1,1,170.0,10,3.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3696.8468709317212,0.037856917459757757,0.04957020664179411,32425.21739130435,9,5,9,9_1,9_1,9_0_0 +7474,2,49.0,3,0.0,2,111,2,37,33,10.0,0.0,0.0,636.6247789043908,0.0,2845.0696828055025,64260.307825110416,31,20,1,417,201707474,,,228.0,,2.0,3.0,5.0,1.0,3.0,2.0,1207.756046777983,0.0,473.0,1608.0,0.0,127295.0,1,1,1,140.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3481.6944617098934,0.05418110462815715,0.027351384278329026,63647.5,10,5,10,10_1,10_3,10_0_1 +7475,2,83.0,3,0.0,1,400,5,71,71,3.0,0.0,451.076053858118,403.7789295376686,159.23897478389006,0.0,28217.14,71,71,1,4171,201707475,,,292.0,,1.0,2.0,5.0,1.0,3.0,2.0,1803.7411952405769,0.0,300.0,0.0,0.0,31170.0,5,5,1,75.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1014.0939581796766,0.03593893492323023,0.032534294455555876,15585.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +7476,2,43.0,3,0.0,8,111,1,0,46,5.0,0.0,0.0,188.43016711757866,0.0,955.4338487033403,22551.79338496616,0,31,2,4173,201707476,,,,729.0,1.0,0.0,3.0,1.0,2.0,1.3,1099.5245999143215,0.0,140.0,540.0,0.0,26812.0,0,1,3,72.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1143.8640158209191,0.0507216431214495,0.04266239056470682,20624.615384615383,5,3,5,5_0,5_4,5_0_0 +7477,2,70.0,2,0.0,99,111,1,0,75,10.0,0.0,0.0,865.4328389757363,0.0,1093.4409601827117,26615.079999999998,0,33,8,4174,201707477,,,,749.0,0.0,3.0,5.0,0.0,1.0,1.0,2655.0240315558226,0.0,643.0,618.0,0.0,87570.0,0,5,3,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1958.873799158448,0.07360014695272185,0.022369233746242414,87570.0,10,5,10,10_0,10_4,10_0_0 +7478,2,65.0,2,0.0,4,112,2,77,74,10.0,0.0,0.0,605.6683943065029,0.0,3060.9269597347757,37965.5658467513,50,31,1,4176,201707478,,,490.0,,0.0,2.0,4.0,0.0,2.0,1.5,3425.813523497299,0.0,450.0,1730.0,0.0,132826.0,5,5,1,120.0,8,0.0,3,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3666.5953540412784,0.09657686570092378,0.02760450027887069,88550.66666666667,10,5,10,10_1,10_0,10_0_1 +7479,2,65.0,4,0.0,1,112,5,0,75,3.0,0.0,1249.133687607096,629.895130078763,0.0,0.0,11865.92,0,60,1,4177,201707479,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2168.0352403583283,0.0,468.0,0.0,0.0,14990.0,0,5,3,38.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1879.028817685859,0.15835508900159945,0.1253521559496904,14990.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7480,2,48.0,2,0.0,8,300,2,56,62,4.0,0.0,0.0,2691.859530251124,0.0,0.0,35496.270875301634,50,42,1,4179,201707480,,,264.0,,2.0,0.0,6.0,2.0,4.0,2.1,2312.585245417171,0.0,2000.0,0.0,0.0,34257.0,4,1,2,154.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2691.859530251124,0.07583499516632673,0.07857837902475769,16312.857142857141,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7481,2,45.0,3,0.0,9,111,4,0,43,5.0,0.0,0.0,1243.6391029760193,0.0,0.0,27401.98,0,33,1,418,201707481,,,,690.0,1.0,0.0,3.0,1.0,2.0,1.3,538.4337527688842,0.0,924.0,0.0,0.0,26808.0,0,1,3,57.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1243.6391029760193,0.04538500878316163,0.04639059620173155,20621.53846153846,5,3,5,5_1,5_3,5_0_0 +7482,2,41.0,2,0.0,4,111,4,0,52,7.0,0.0,0.0,1197.87749096175,0.0,0.0,30164.519999999997,0,50,1,4180,201707482,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1145.184486848801,0.0,890.0,0.0,0.0,37346.0,0,1,3,94.0,4,4.0,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1197.87749096175,0.03971147198635185,0.032075121591649706,24897.333333333332,7,4,7,7_1,7_2,7_0_1 +7483,2,60.0,2,0.0,1,120,5,75,31,9.0,0.0,1457.3226355416118,1584.1593335527864,445.8691293948922,0.0,72099.80000000002,33,30,1,4181,201707483,,,450.0,,1.0,1.0,4.0,0.0,2.0,1.5,2654.7824886802546,0.0,1177.0,0.0,0.0,45640.0,7,1,2,130.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3487.3510984892905,0.04836838796347964,0.07640997148311329,30426.666666666668,8,4,8,8_1,8_0,8_1_0 +7484,2,50.0,2,0.0,9,111,1,0,43,7.0,0.0,0.0,656.8137253812743,0.0,1910.8676974066807,31705.34,0,30,8,4182,201707484,600.0,600.0,,,1.0,0.0,3.0,1.0,2.0,1.5,1475.1639451784222,0.0,488.0,1080.0,0.0,35177.0,0,1,2,74.0,6,5.0,2,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2567.681422787955,0.08098577156996124,0.07299318937908164,23451.333333333332,6,3,6,6_0,6_2,6_0_0 +7485,2,45.0,2,0.0,1,112,2,37,12,5.0,0.0,0.0,1555.8948084851497,0.0,0.0,43427.95883901972,43,50,1,4185,201707485,,,417.0,,2.0,0.0,3.0,1.0,3.0,2.0,2301.5625851044856,0.0,1156.0,0.0,0.0,38576.0,1,1,1,65.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1555.8948084851497,0.0358270305600269,0.040333233318258756,19288.0,5,3,5,5_1,5_0,5_1_0 +7486,1,44.0,5,609.0,99,111,2,85,85,1.0,0.0,0.0,1227.4879457945126,0.0,2335.504963497054,43294.70712768311,71,71,1,4186,201707486,,,,16.0,0.0,0.0,5.0,5.0,7.0,3.6,2021.4126730923385,0.0,912.0,1320.0,0.0,31958.0,4,6,3,114.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,3562.992909291567,0.08229627004482841,0.11148985885510879,8877.222222222223,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +7487,2,34.0,2,0.0,9,120,5,42,37,8.0,0.0,749.4802125642576,807.5578590753372,233.5504963497054,0.0,38491.812212906996,30,31,7,4187,201707487,,,90.0,,2.0,0.0,3.0,2.0,4.0,2.1,3586.644858026279,0.0,600.0,0.0,0.0,59540.0,1,1,2,50.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1790.5885679893001,0.04651868709337836,0.030073707893673165,28352.38095238095,8,4,8,8_1,8_0,8_0_0 +7488,2,53.0,3,0.0,9,111,1,0,42,5.0,0.0,0.0,522.220748868718,0.0,0.0,11676.119999999999,0,41,2,4188,201707488,,,,365.0,1.0,2.0,3.0,0.0,1.0,1.0,2807.013814025293,0.0,388.0,0.0,0.0,18382.0,0,1,3,55.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,522.220748868718,0.04472553800994834,0.028409354198058862,18382.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +7489,2,24.0,1,0.0,9,111,2,0,62,9.0,0.0,0.0,2018.894647688343,0.0,1769.3219420432229,32945.08,0,30,1,4189,201707489,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2094.5107793699376,0.0,1500.0,1000.0,0.0,35291.0,0,1,2,67.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3788.216589731566,0.1149858063702248,0.10734228527759389,35291.0,9,5,9,9_1,9_3,9_0_0 +7490,2,52.0,4,0.0,9,112,4,0,42,7.0,0.0,0.0,2177.7143599731594,0.0,106.15931652259337,34941.90000000001,0,30,1,419,201707490,,,889.0,,2.0,0.0,5.0,1.0,2.0,1.5,2495.6699214127657,0.0,1618.0,60.0,0.0,41673.0,0,1,2,125.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2283.873676495753,0.06536203459158639,0.05480463793093257,27782.0,8,4,8,8_1,8_2,8_0_0 +7491,0,90.0,4,0.0,2,211,1,0,78,1.0,0.0,0.0,1534.3599322431405,0.0,0.0,11208.0,0,71,2,4191,201707491,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2219.9191870975797,0.0,1140.0,0.0,0.0,9634.0,0,6,5,96.0,2,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1534.3599322431405,0.13689863778043723,0.1592650957279573,9634.0,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +7492,1,31.0,2,356.0,2,111,1,21,68,1.0,0.0,0.0,538.3719060502248,0.0,884.6609710216114,23346.479999999996,50,50,2,4192,201707492,,,,,2.0,0.0,3.0,2.0,4.0,2.1,4122.36712924064,0.0,400.0,500.0,0.0,13637.0,1,1,3,60.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1423.032877071836,0.06095278076488774,0.10435087461111946,6493.809523809524,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +7493,2,78.0,3,0.0,1,112,5,71,71,3.0,0.0,1387.9263195634398,942.1508355878933,247.7050718860512,0.0,14401.04,71,71,1,4193,201707493,,,,,0.0,5.0,4.0,0.0,2.0,1.5,1955.385644126403,0.0,700.0,0.0,0.0,21486.0,5,5,1,100.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2577.7822270373845,0.17899972689732022,0.11997497100611489,14324.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7494,2,69.0,2,0.0,4,111,2,0,75,10.0,1586.456009138882,138.792631956344,1749.7086946632305,0.0,0.0,41537.481564735295,0,30,1,4196,201707494,,,750.0,,0.0,2.0,6.0,0.0,1.0,1.0,1830.1716353797194,0.0,1300.0,0.0,0.0,43591.0,0,5,5,120.0,9,7.0,1,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3474.957335758457,0.08365835396984309,0.07971731173312052,43591.0,10,5,10,10_1,10_3,10_0_1 +7495,2,85.0,3,0.0,4,111,1,0,75,9.0,0.0,0.0,218.04062195034103,0.0,166.31626255206297,16298.480315994117,0,60,2,4198,201707495,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3819.2797611886185,0.0,162.0,94.0,0.0,37784.0,0,5,1,49.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,384.356884502404,0.023582375598860266,0.010172477358204637,37784.0,9,5,9,9_0,9_4,9_0_1 +7496,1,38.0,4,272.0,99,112,4,0,46,4.0,0.0,0.0,1714.714520769966,70.77287768172891,0.0,31445.239999999998,0,50,1,4199,201707496,,,16.0,,1.0,0.0,4.0,3.0,4.0,2.1,125.73581680293124,0.0,1274.0,0.0,0.0,36158.0,0,1,3,90.0,7,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1785.4873984516948,0.05678084818089145,0.049380148195466975,17218.095238095237,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +7497,2,58.0,2,0.0,6,120,4,62,75,9.0,0.0,0.0,269.1859530251124,0.0,0.0,25913.52083603497,50,50,1,420,201707497,,,490.0,,1.0,2.0,6.0,0.0,2.0,1.5,2275.8584326317305,0.0,200.0,0.0,0.0,47947.0,1,5,1,110.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,269.1859530251124,0.010387857162612433,0.005614239744407625,31964.666666666668,9,5,9,9_1,9_0,9_0_0 +7498,2,60.0,1,0.0,1,111,2,0,42,8.0,0.0,0.0,740.261370819059,0.0,2211.6524275540287,28797.270418554006,0,41,1,4200,201707498,,,372.0,,1.0,1.0,5.0,1.0,2.0,1.5,2146.5879571003243,0.0,550.0,1250.0,0.0,49171.0,0,1,1,110.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2951.913798373088,0.10250672218125151,0.060033633612761345,32780.666666666664,9,5,9,9_1,9_4,9_1_0 +7499,1,35.0,4,437.0,99,111,6,0,52,1.0,0.0,0.0,1305.5518721717951,0.0,0.0,28271.22,0,50,1,4201,201707499,,,770.0,,1.0,0.0,3.0,2.0,3.0,1.6,388.8318879957137,0.0,970.0,0.0,0.0,16154.0,0,1,3,57.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1305.5518721717951,0.04617953778336397,0.08081910809531974,10096.25,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +7500,2,63.0,1,0.0,99,111,6,0,33,10.0,3915.3734305547614,0.0,496.6047595201415,0.0,925.4123279692811,66361.86175060326,0,20,1,4203,201707500,,,890.0,,1.0,1.0,5.0,1.0,2.0,1.5,2613.4174000751154,892.0,0.0,0.0,0.0,189722.0,0,1,1,109.0,10,8.0,2,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5337.390518044184,0.08042858318385959,0.028132691612170357,126481.33333333333,10,5,10,10_1,10_4,10_0_0 +7501,2,57.0,4,0.0,4,111,4,0,63,6.0,0.0,0.0,2018.894647688343,1415.4575536345783,0.0,42859.86134949915,0,50,1,4204,201707501,,,150.0,,2.0,0.0,5.0,1.0,2.0,1.5,2397.793862892672,0.0,1500.0,0.0,0.0,31216.0,0,1,1,145.0,8,7.0,2,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3434.3522013229212,0.0801298019449392,0.11001897108287165,20810.666666666668,5,3,5,5_1,5_3,5_0_1 +7502,2,28.0,3,0.0,1,111,4,67,85,4.0,237.96840137083234,0.0,969.0694308904046,106.15931652259337,0.0,24532.97768699063,50,50,2,4205,201707502,,,257.0,503.0,1.0,0.0,3.0,1.0,3.0,1.8,2134.8857662885243,0.0,720.0,0.0,0.0,30280.0,1,4,3,60.0,7,5.0,4,2,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1313.1971487838302,0.0535278336587814,0.043368465943983824,16822.222222222223,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +7503,1,37.0,3,146.0,6,111,2,0,54,4.0,0.0,0.0,323.0231436301349,0.0,1415.4575536345783,26072.059999999998,0,43,2,4206,201707503,,,,394.0,1.0,0.0,3.0,1.0,2.0,1.3,523.4735779412754,0.0,240.0,800.0,0.0,22392.0,0,4,3,93.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1738.4806972647132,0.06667983647110022,0.07763847343983178,17224.615384615383,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +7504,0,44.0,4,0.0,0,111,2,0,22,1.0,0.0,0.0,0.0,0.0,0.0,9213.09,0,50,0,4209,201707504,,,,,1.0,1.0,,0.0,1.0,1.0,3597.6981952606475,0.0,0.0,0.0,0.0,6864.0,0,1,5,,9,7.0,1,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,6864.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +7505,2,45.0,4,0.0,8,111,5,0,62,3.0,0.0,832.755791738064,942.1508355878933,70.77287768172891,0.0,25711.12,0,50,1,421,201707505,,,,650.0,1.0,0.0,4.0,2.0,3.0,2.0,2551.9479853836665,0.0,700.0,0.0,0.0,29860.0,0,1,3,100.0,7,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1845.6795050076862,0.07178526275820292,0.06181110197614488,14930.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +7506,1,31.0,4,379.0,3,111,2,85,63,1.0,0.0,0.0,1049.8252167979383,0.0,0.0,13941.64,60,43,2,4210,201707506,,,,,1.0,0.0,3.0,1.0,3.0,1.8,4261.272594238786,0.0,780.0,0.0,0.0,16156.0,6,4,3,64.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1049.8252167979383,0.07530141481188285,0.06498051601868893,8975.555555555555,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7507,2,67.0,2,0.0,5,111,2,75,74,8.0,0.0,444.1364222603008,874.8543473316153,0.0,1114.6728234872305,42941.0171719182,60,50,1,4211,201707507,,,400.0,,0.0,2.0,5.0,0.0,2.0,1.5,2281.88325079366,0.0,650.0,630.0,0.0,45048.0,5,5,1,100.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2433.6635930791463,0.056674567892412896,0.05402378780587698,30032.0,8,4,8,8_1,8_2,8_0_0 +7508,2,58.0,2,0.0,2,112,1,72,52,8.0,0.0,0.0,1056.5548656235662,0.0,1641.930762216111,25320.82031599412,44,60,1,4212,201707508,,,118.0,,1.0,2.0,5.0,0.0,2.0,1.5,1045.011042890705,0.0,785.0,928.0,0.0,42367.0,5,1,1,135.0,10,5.0,3,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2698.4856278396774,0.10657180905529966,0.06369310141949341,28244.666666666668,8,4,8,8_1,8_2,8_0_1 +7509,1,63.0,4,329.0,4,111,1,77,77,2.0,0.0,0.0,846.5898222639785,212.31863304518674,0.0,10644.0,71,71,2,4213,201707509,71.0,71.0,,114.0,0.0,3.0,3.0,0.0,2.0,1.5,3348.672344184139,0.0,629.0,0.0,0.0,16718.0,4,5,3,68.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1058.9084553091652,0.09948407133682499,0.06333942189910069,11145.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7510,2,69.0,2,0.0,2,111,2,77,74,6.0,0.0,0.0,2018.894647688343,0.0,654.6491185559925,60438.759999999995,70,41,2,4214,201707510,,,,,0.0,0.0,3.0,0.0,2.0,1.5,2436.4482556128005,0.0,1500.0,370.0,0.0,32411.0,5,5,1,57.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2673.5437662443355,0.04423558269965062,0.08248877745963826,21607.333333333332,6,3,6,6_0,6_3,6_0_1 +7511,2,62.0,2,0.0,6,111,4,45,33,10.0,0.0,0.0,2503.4293631335454,0.0,0.0,49723.04,50,20,1,4215,201707511,,,408.0,,2.0,1.0,7.0,0.0,2.0,1.5,2263.0435588113855,0.0,1860.0,0.0,0.0,101211.0,1,1,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2503.4293631335454,0.05034747197945953,0.02473475573933214,67474.0,10,5,10,10_1,10_4,10_0_0 +7512,2,67.0,1,0.0,6,112,6,43,74,10.0,0.0,0.0,670.4396682272354,0.0,805.4142594489999,65132.56027116715,30,12,1,4216,201707512,,,760.0,,1.0,2.0,6.0,0.0,2.0,1.5,1586.0293636886656,776.3345027021901,177.0,0.0,0.0,112561.0,5,5,1,160.0,9,1.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1475.8539276762353,0.02265923405331827,0.013111592182694143,75040.66666666667,10,5,10,10_1,10_1,10_0_0 +7513,2,78.0,3,0.0,1,300,2,0,78,5.0,840.8216848436076,0.0,266.49409349486126,141.54575536345783,0.0,21542.18,0,71,1,4217,201707513,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3068.1122268822137,0.0,198.0,0.0,0.0,18960.0,0,5,3,80.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1248.8615337019266,0.05797284832370385,0.06586822435136744,18960.0,5,3,5,5_1,5_0,5_1_0 +7514,2,61.0,3,0.0,5,112,4,77,75,6.0,0.0,0.0,2247.7027077596886,0.0,0.0,31343.565846751302,50,50,1,4218,201707514,,,420.0,,0.0,2.0,5.0,0.0,2.0,1.5,2720.587759335571,0.0,1670.0,0.0,0.0,33065.0,5,5,1,100.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2247.7027077596886,0.07171177391715494,0.06797830660092813,22043.333333333332,6,3,6,6_1,6_1,6_0_0 +7515,2,27.0,2,0.0,7,111,2,47,54,7.0,0.0,0.0,356.6713877582739,0.0,0.0,38958.5,0,30,2,4219,201707515,,,,514.0,2.0,0.0,2.0,0.0,2.0,1.5,3422.3316119492883,0.0,265.0,0.0,0.0,34877.0,1,1,3,46.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,356.6713877582739,0.009155162230534386,0.01022655009772268,23251.333333333332,6,3,6,6_0,6_3,6_0_0 +7516,2,46.0,1,0.0,2,111,1,85,37,10.0,0.0,0.0,1695.871504058208,0.0,0.0,114276.15119129574,20,20,2,422,201707516,,,,2600.0,1.0,0.0,4.0,1.0,3.0,1.8,1865.14206138129,0.0,1260.0,0.0,0.0,107944.0,6,1,3,110.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1695.871504058208,0.01484011743814645,0.015710660194714,59968.88888888889,10,5,10,10_0,10_3,10_0_1 +7517,2,60.0,3,0.0,7,111,2,56,75,7.0,0.0,0.0,80.75578590753372,0.0,70.77287768172891,36056.5,50,60,1,4220,201707517,,,485.0,,1.0,0.0,6.0,0.0,3.0,2.0,4368.770255389698,0.0,60.0,40.0,0.0,51493.0,1,5,1,150.0,8,7.0,5,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,151.52866358926264,0.004202533900663199,0.002942704126565992,25746.5,7,4,7,7_1,7_3,7_0_0 +7518,2,51.0,3,0.0,5,111,2,0,67,2.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,12377.790875301627,0,71,1,4221,201707518,,,330.0,,1.0,3.0,4.0,0.0,1.0,1.0,1485.2217432690288,1500.0,0.0,0.0,0.0,11711.0,0,4,3,90.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2391.2843399485805,0.19319152860467992,0.20419130219012727,11711.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +7519,2,62.0,2,0.0,6,111,4,77,72,10.0,0.0,0.0,4480.046952396471,61.9262679715128,708.7645483151199,40520.4058386271,44,50,1,4223,201707519,,,190.0,,0.0,2.0,6.0,0.0,2.0,1.5,1655.9611592289677,683.1743623779273,3046.0,0.0,0.0,74773.0,5,5,1,140.0,5,4.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5250.737768683104,0.12958255624571524,0.07022237664241242,49848.666666666664,10,5,10,10_1,10_2,10_0_0 +7520,1,40.0,3,49.0,1,111,4,0,54,3.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,35276.34,0,31,2,4224,201707520,,,500.0,,1.0,0.0,4.0,2.0,3.0,1.6,1073.6505972679681,1000.0,0.0,0.0,0.0,23868.0,0,1,2,100.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1594.1895599657205,0.04519146714102769,0.06679192056166082,14917.5,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +7521,1,76.0,3,72.0,1,111,1,0,75,3.0,0.0,0.0,471.07541779394666,0.0,601.5694602946958,13307.42,0,50,2,4225,201707521,,,,,0.0,2.0,3.0,0.0,1.0,1.0,5147.5336618724405,0.0,350.0,340.0,0.0,13787.0,0,5,3,63.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1072.6448780886424,0.0806050217163539,0.07780118068387919,13787.0,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +7522,2,66.0,1,0.0,5,111,2,43,65,10.0,0.0,0.0,2153.487624200899,0.0,2024.104301697447,35362.36,33,50,1,4226,201707522,,,1040.0,,2.0,3.0,4.0,0.0,2.0,1.5,1646.2688193925362,0.0,1600.0,1144.0,0.0,85630.0,1,1,1,120.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4177.591925898346,0.11813668335196932,0.04878654590562123,57086.666666666664,10,5,10,10_1,10_3,10_0_0 +7523,1,47.0,2,165.0,9,112,2,56,38,3.0,0.0,0.0,2422.6735772260117,0.0,0.0,41932.83999999999,41,31,1,4227,201707523,,,405.0,,2.0,0.0,7.0,3.0,5.0,2.4,3062.4675277282363,0.0,1800.0,0.0,0.0,37560.0,1,1,2,160.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2422.6735772260117,0.057775089338714294,0.06450142644371704,15650.0,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +7524,2,69.0,3,0.0,99,111,1,86,86,6.0,0.0,0.0,969.0694308904046,0.0,283.09151072691566,42035.56031599412,31,10,2,423,201707524,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1670.1927442105118,0.0,720.0,160.0,0.0,31720.0,5,5,1,90.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1252.1609416173203,0.029788134907788665,0.0394754395213531,21146.666666666668,5,3,5,5_0,5_3,5_0_0 +7525,2,44.0,3,0.0,6,112,2,85,46,4.0,0.0,0.0,1292.0925745205395,0.0,1815.3243125363467,28649.01620491166,44,71,1,4230,201707525,,,400.0,446.0,1.0,0.0,3.0,2.0,4.0,2.3,1820.5206719550497,0.0,960.0,1026.0,0.0,38128.0,8,1,3,60.0,9,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3107.4168870568865,0.10846504692625861,0.08149960362612481,16577.391304347828,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7526,2,59.0,4,0.0,4,111,2,0,52,3.0,0.0,0.0,679.2127876844985,0.0,1265.6984754736804,14543.760000000002,0,60,2,4231,201707526,,,160.0,402.0,1.0,1.0,3.0,0.0,1.0,1.0,1849.5556016093449,1220.0,0.0,0.0,0.0,15810.0,0,1,3,80.0,7,5.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1944.9112631581788,0.1337282286807661,0.12301779020608342,15810.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +7527,2,43.0,5,0.0,9,400,5,68,69,3.0,0.0,0.0,807.5578590753372,106.15931652259337,0.0,28292.859999999997,50,71,1,4233,201707527,,,313.0,,2.0,3.0,4.0,1.0,3.0,1.8,1705.2321542341172,0.0,600.0,0.0,0.0,27474.0,1,1,2,120.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,913.7171755979306,0.032294973912072894,0.033257522588553926,15263.333333333332,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7528,2,54.0,4,0.0,1,111,2,0,43,5.0,0.0,0.0,601.2703366387364,0.0,1120.4543881242419,30684.49087530163,0,33,2,4234,201707528,,,,,1.0,0.0,3.0,1.0,2.0,1.5,1004.0697842366106,1080.0,0.0,0.0,0.0,30070.0,0,1,2,57.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1721.7247247629782,0.05611058471720703,0.057257223969503765,20046.666666666668,5,3,5,5_0,5_4,5_1_0 +7529,2,49.0,2,0.0,9,111,4,37,37,10.0,0.0,0.0,3736.30102798856,0.0,0.0,70436.46,42,20,1,4235,201707529,,,520.0,,2.0,0.0,6.0,3.0,5.0,2.8,1915.5628975648215,0.0,2776.0,0.0,0.0,114681.0,1,1,2,167.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3736.30102798856,0.05304498590628432,0.03257994809941106,40957.5,10,5,10,10_1,10_3,10_0_0 +7530,2,84.0,3,0.0,6,300,2,0,72,5.0,0.0,0.0,1345.929765125562,141.54575536345783,0.0,12164.7458467513,0,70,1,4236,201707530,,,196.0,,0.0,1.0,3.0,0.0,1.0,1.0,2942.1955038422916,0.0,1000.0,0.0,0.0,22548.0,0,5,1,82.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1487.4755204890198,0.12227756660335512,0.06596928865039116,22548.0,6,3,6,6_1,6_0,6_0_0 +7531,1,42.0,4,117.0,1,112,2,0,62,3.0,0.0,0.0,1226.142016029387,90.23541904420436,0.0,39618.3439836072,0,42,1,4237,201707531,,,300.0,,1.0,0.0,4.0,2.0,3.0,1.8,1068.0258196171856,0.0,911.0,0.0,0.0,26357.0,0,1,3,85.0,8,0.0,2,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1316.3774350735912,0.03322646286321977,0.04994413002517704,14642.777777777777,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +7532,1,41.0,4,148.0,2,112,2,0,54,4.0,0.0,0.0,751.5879207984204,0.0,1400.5679851553023,26159.12,0,42,1,4238,201707532,,,275.0,,1.0,0.0,3.0,1.0,2.0,1.5,517.923833303058,1350.0,0.0,0.0,0.0,25635.0,0,1,3,60.0,8,2.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,2152.1559059537226,0.08227172419996248,0.08395380947742237,17090.0,4,2,4_1,4_1_1,4_1_1,4_0_1_1 +7533,2,46.0,3,0.0,2,111,7,38,56,4.0,0.0,0.0,942.1508355878933,0.0,1415.4575536345783,18406.844883241072,71,30,2,424,201707533,,,,390.0,2.0,0.0,3.0,2.0,4.0,2.3,1253.1384297001302,0.0,700.0,800.0,0.0,37300.0,4,1,3,100.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2357.6083892224715,0.12808324317270742,0.0632066592284845,16217.391304347828,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +7534,2,59.0,4,0.0,1,111,4,0,38,10.0,0.0,0.0,2961.045483276236,0.0,0.0,78089.71672205292,0,30,2,4240,201707534,,,,1953.0,2.0,1.0,3.0,1.0,2.0,1.5,2820.2976134859346,0.0,2200.0,0.0,0.0,110358.0,0,1,3,80.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2961.045483276236,0.03791850716805101,0.026831271709130612,73572.0,10,5,10,10_0,10_4,10_1_0 +7535,2,52.0,2,0.0,99,300,2,55,63,4.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,15347.32,71,71,1,4245,201707535,,,300.0,,2.0,0.0,4.0,1.0,3.0,2.0,2065.6836922370144,1400.0,0.0,0.0,0.0,33370.0,1,1,2,60.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2231.8653839520084,0.1454237862996281,0.0668823908885828,16685.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7536,2,72.0,3,0.0,3,111,2,71,71,1.0,3724.998709458095,0.0,640.6625681997675,106.15931652259337,0.0,29930.38,70,70,1,4247,201707536,,,,,0.0,0.0,6.0,0.0,2.0,1.5,3126.885692641262,0.0,476.0,0.0,0.0,28382.0,5,5,1,125.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4471.820594180455,0.1494074112717732,0.1575583325410632,18921.333333333332,5,3,5,5_1,5_3,5_0_1 +7537,2,74.0,2,0.0,4,400,2,77,75,5.0,2741.3959837919883,0.0,336.4824412813905,164.54694061001973,0.0,19805.44,60,60,1,4248,201707537,,,461.0,,0.0,3.0,4.0,0.0,2.0,1.5,1737.5905446770103,0.0,250.0,0.0,0.0,30346.0,5,5,1,90.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3242.4253656833985,0.16371387687844344,0.10684852585788567,20230.666666666668,5,3,5,5_1,5_1,5_0_1 +7538,2,66.0,3,0.0,99,111,1,0,77,4.0,0.0,0.0,972.0537108992904,0.0,1811.4012608008575,15778.451191295746,0,71,2,4249,201707538,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2998.688962247797,1746.0,0.0,0.0,0.0,18366.0,0,5,1,61.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2783.454971700148,0.17640863085697875,0.1515547735870711,18366.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +7539,2,72.0,3,0.0,2,112,2,0,75,6.0,2379.684013708323,0.0,538.3719060502248,0.0,0.0,15707.210875301627,0,60,1,425,201707539,,,150.0,,0.0,2.0,6.0,0.0,1.0,1.0,2256.3516645365894,0.0,400.0,0.0,0.0,21920.0,0,5,1,60.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2918.055919758548,0.18577810808836628,0.13312298904007974,21920.0,6,3,6,6_1,6_0,6_0_1 +7540,2,78.0,3,0.0,2,120,6,78,78,4.0,2855.620816449988,0.0,970.4153606555302,205.24134527701386,0.0,43857.39087530163,70,70,1,4251,201707540,,,54.0,,0.0,3.0,5.0,0.0,2.0,1.5,2462.427648792062,0.0,721.0,0.0,0.0,26500.0,5,5,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4031.277522382532,0.0919178601810705,0.15212368008990687,17666.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +7541,2,46.0,2,0.0,1,112,2,0,12,6.0,2855.620816449988,277.585263912688,908.5025914597545,134.46846759528495,0.0,26138.01087530163,0,44,5,4252,201707541,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2292.667006769657,0.0,675.0000000000001,0.0,0.0,23638.0,0,1,1,90.0,9,1.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4176.177139417716,0.15977409908279883,0.17667218628554512,23638.0,6,3,6,6_1,6_1,6_1_0 +7542,2,48.0,2,0.0,9,111,2,78,65,6.0,0.0,0.0,685.078250448911,0.0,824.5040249921419,26196.20102692834,70,50,1,4253,201707542,,,256.0,,1.0,3.0,4.0,0.0,2.0,1.5,2113.5506133444887,0.0,509.0,466.0,0.0,31458.0,5,1,3,65.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1509.5822754410528,0.05762599981154826,0.04798722981248181,20972.0,5,3,5,5_1,5_3,5_0_0 +7543,2,80.0,2,0.0,5,112,2,0,74,8.0,0.0,0.0,660.8515146766509,0.0,2160.342091234775,22020.199999999997,0,50,1,4254,201707543,,,405.0,,0.0,2.0,3.0,0.0,1.0,1.0,5092.66250096308,0.0,491.0,1221.0,0.0,29050.0,0,5,1,77.0,8,0.0,1,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2821.193605911426,0.12811843697656816,0.09711509831020398,29050.0,8,4,8,8_1,8_0,8_0_0 +7544,2,63.0,3,0.0,1,111,2,75,75,8.0,0.0,0.0,1507.4413369406293,0.0,2024.104301697447,52631.37999999999,33,33,1,4257,201707544,,,595.0,,0.0,2.0,4.0,0.0,2.0,1.5,2539.4945010265806,0.0,1120.0,1144.0,0.0,48185.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3531.5456386380765,0.06709962077068998,0.07329139023841603,32123.333333333332,9,5,9,9_1,9_4,9_1_0 +7545,1,40.0,2,270.0,6,111,4,85,12,2.0,0.0,0.0,2502.0834333684197,132.69914565324171,0.0,25448.60218056569,50,31,1,4258,201707545,,,287.0,,1.0,0.0,5.0,3.0,5.0,2.6,2034.022570122535,0.0,1859.0,0.0,0.0,30670.0,6,1,2,145.0,6,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2634.7825790216616,0.10353348920019519,0.08590748545880866,11796.153846153846,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +7546,2,54.0,2,0.0,7,111,2,54,47,9.0,0.0,0.0,1810.2755340938809,0.0,1861.3266830294706,49099.100000000006,31,50,1,4259,201707546,,,530.0,,2.0,0.0,5.0,1.0,3.0,1.8,2020.5864135749562,0.0,1345.0,1052.0,0.0,55601.0,1,1,1,125.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3671.6022171233517,0.07477941993077981,0.0660348234226606,30889.444444444445,8,4,8,8_1,8_2,8_0_0 +7547,2,57.0,1,0.0,7,111,2,43,37,10.0,0.0,0.0,1719.8580609155415,0.0,746.9695920828278,76561.0,33,31,1,426,201707547,,,400.0,,2.0,2.0,5.0,0.0,2.0,1.5,2101.037445157362,720.0,980.0,0.0,0.0,97520.0,1,1,1,120.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2466.8276529983696,0.032220421010676056,0.025295607598424627,65013.333333333336,10,5,10,10_1,10_2,10_0_0 +7548,2,37.0,3,0.0,1,111,2,56,53,2.0,0.0,0.0,807.5578590753372,185.7788039145384,1134.1353648497059,64568.19999999999,42,31,2,4260,201707548,,,960.0,,2.0,0.0,4.0,2.0,4.0,2.3,2297.2315913598854,0.0,600.0,641.0,0.0,28652.0,1,1,2,117.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2127.4720278395816,0.03294922311353858,0.07425212996787595,12457.391304347828,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +7549,2,44.0,2,0.0,1,112,2,23,55,4.0,1903.7472109666587,0.0,134.5929765125562,0.0,0.0,49977.19169350262,44,50,1,4261,201707549,,,500.0,,2.0,0.0,5.0,3.0,5.0,2.6,3141.6190880712584,0.0,100.0,0.0,0.0,41874.0,1,1,1,120.0,9,1.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2038.3401874792148,0.04078540867161636,0.04867794305486017,16105.384615384615,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +7550,2,42.0,3,0.0,99,111,2,56,62,4.0,3172.912018277764,0.0,538.3719060502248,198.16405750884095,0.0,29229.50629661657,71,50,1,4262,201707550,,,260.0,,2.0,0.0,6.0,2.0,4.0,2.3,1448.147764560541,0.0,400.0,0.0,0.0,36988.0,1,1,3,88.0,7,6.0,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3909.44798183683,0.13375005181970398,0.10569503573691008,16081.739130434784,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +7551,2,62.0,3,0.0,5,111,2,78,74,5.0,0.0,0.0,968.2313265085365,0.0,1600.146125521102,33720.28,71,60,2,4263,201707551,,,300.0,410.0,0.0,3.0,3.0,0.0,2.0,1.5,2849.859645709215,723.7611181702669,420.0,480.0,0.0,30254.0,5,5,3,70.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2568.3774520296383,0.07616714487630703,0.08489381410820514,20169.333333333332,5,3,5,5_0,5_3,5_0_0 +7552,2,78.0,3,0.0,4,111,2,0,75,1.0,0.0,0.0,390.319631886413,0.0,2427.509704483302,57454.24,0,44,1,4264,201707552,,,398.0,,0.0,1.0,5.0,0.0,1.0,1.0,2082.291383034007,0.0,290.0,1372.0,0.0,10530.0,0,5,1,118.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2817.829336369715,0.04904475868743047,0.2676001269107042,10530.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +7553,2,55.0,2,0.0,6,112,2,46,21,6.0,0.0,0.0,858.7031901501085,0.0,1666.701269404716,46112.84449357506,50,50,1,4268,201707553,,,431.0,,2.0,2.0,5.0,0.0,2.0,1.5,2702.369899838458,0.0,638.0,942.0,0.0,36194.0,1,1,1,110.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2525.4044595548244,0.05476574883396514,0.06977411890243754,24129.333333333332,7,4,7,7_1,7_2,7_0_0 +7554,2,35.0,3,0.0,99,111,2,0,52,1.0,0.0,0.0,942.1508355878933,0.0,0.0,16776.64,0,71,2,4269,201707554,,,,505.0,1.0,0.0,3.0,3.0,4.0,1.9,999.5394085223622,0.0,700.0,0.0,0.0,15550.0,0,4,3,72.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,942.1508355878933,0.05615849392893293,0.06058847817285488,8184.21052631579,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +7555,2,67.0,3,0.0,2,221,2,0,78,7.0,0.0,0.0,586.825377594745,0.0,1946.2541362475451,57426.91999999999,0,70,1,4271,201707555,,,240.0,,0.0,3.0,4.0,0.0,3.0,2.0,4885.3125186984535,0.0,436.0,1100.0,0.0,49852.0,0,5,5,50.0,1,1.0,5,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2533.07951384229,0.044109618169358385,0.05081199377842995,24926.0,7,4,7,7_1,7_1,7_0_1 +7556,1,32.0,2,50.0,1,112,4,21,56,3.0,0.0,0.0,1776.6272899657417,138.0071114793714,0.0,39470.44,50,41,1,4272,201707556,,,450.0,,2.0,0.0,3.0,2.0,4.0,2.1,2852.473151374279,0.0,1320.0,0.0,0.0,29686.0,1,1,2,80.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1914.634401445113,0.04850805821888768,0.06449620701492667,14136.190476190475,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +7557,2,79.0,2,0.0,1,300,2,0,71,2.0,1237.435687128328,0.0,699.8834778652922,0.0,0.0,15866.271191295746,0,70,1,4273,201707557,,,370.0,,0.0,2.0,4.0,0.0,1.0,1.0,1913.0456065138574,0.0,520.0,0.0,0.0,11726.0,0,5,1,120.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1937.3191649936202,0.1221029907806212,0.1652156886400836,11726.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7558,1,76.0,5,140.0,99,111,2,0,77,2.0,0.0,0.0,457.61612014269105,507.795397366405,0.0,9760.450989269943,0,71,2,4275,201707558,,,,474.0,0.0,0.0,3.0,0.0,1.0,1.0,2475.5181343389454,0.0,340.0,0.0,0.0,11320.0,0,5,3,79.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,965.411517509096,0.09891054404867274,0.08528370296016749,11320.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7560,2,70.0,3,0.0,8,112,2,0,75,6.0,1364.3521678594386,0.0,1056.5548656235662,90.23541904420436,0.0,25479.911191295745,0,41,1,4277,201707560,,,142.0,,0.0,3.0,4.0,0.0,1.0,1.0,1737.7881808754375,0.0,785.0,0.0,0.0,24670.0,0,5,1,112.0,8,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2511.142452527209,0.09855381495148408,0.1017893170866319,24670.0,7,4,7,7_1,7_0,7_0_0 +7561,2,52.0,4,0.0,4,300,6,0,52,4.0,0.0,0.0,2987.9640785787474,0.0,0.0,10269.400000000001,0,50,1,4278,201707561,,,340.0,,1.0,3.0,6.0,0.0,1.0,1.0,1610.9269677813945,0.0,2220.0,0.0,0.0,19249.0,0,1,2,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2987.9640785787474,0.2909579993552444,0.1552269769119823,19249.0,5,3,5,5_1,5_0,5_0_1 +7562,1,33.0,4,354.0,1,112,2,0,85,1.0,0.0,0.0,450.88647131706324,0.0,2480.5893627445985,10766.93087530163,0,71,2,4279,201707562,,,,,0.0,0.0,4.0,2.0,3.0,1.6,411.5342578507684,0.0,335.0,1402.0,0.0,15858.0,0,6,3,87.0,6,0.0,2,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,2931.4758340616618,0.272266615994183,0.18485785307489355,9911.25,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +7563,2,53.0,4,0.0,2,111,2,0,77,2.0,0.0,0.0,617.781762192633,0.0,822.7347030500987,13055.647009159053,0,50,2,428,201707563,,,116.0,327.0,0.0,3.0,4.0,1.0,2.0,1.3,714.6311572356333,0.0,459.0,465.0,0.0,13890.0,0,4,3,70.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1440.5164652427316,0.11033665847676123,0.10370888878637376,10684.615384615385,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +7564,1,27.0,3,437.0,99,111,2,0,85,2.0,0.0,0.0,672.964882562781,0.0,1256.2185788506883,14499.2658467513,0,71,1,4280,201707564,,,670.0,72.0,0.0,0.0,3.0,2.0,3.0,1.6,1248.0310580378045,0.0,500.0,710.0,0.0,17636.0,0,6,3,80.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1929.1834614134693,0.13305387195488394,0.10938894655326997,11022.5,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +7565,1,36.0,2,253.0,99,111,1,0,46,2.0,0.0,0.0,471.07541779394666,95.54338487033404,0.0,27292.7,0,42,2,4281,201707565,,,,94.0,2.0,0.0,4.0,2.0,3.0,1.8,1230.2862410200355,0.0,350.0,0.0,0.0,24198.0,0,1,3,77.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,566.6188026642807,0.020760818924631153,0.023415935311359645,13443.333333333332,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7566,2,77.0,3,0.0,1,112,2,0,74,5.0,0.0,0.0,985.2205880719114,5465.435478971515,0.0,21575.82,0,50,1,4283,201707566,,,343.0,,0.0,0.0,5.0,0.0,1.0,1.0,3038.802622755767,0.0,732.0,0.0,0.0,19780.0,0,5,1,120.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6450.656067043426,0.29897617179988645,0.3261201247241368,19780.0,5,3,5,5_1,5_0,5_1_0 +7567,2,25.0,3,0.0,9,300,4,55,62,7.0,0.0,0.0,2032.3539453395986,84.9274532180747,0.0,52194.53999999999,43,43,1,4285,201707567,,,312.0,,2.0,0.0,5.0,0.0,2.0,1.5,256.0995404585488,0.0,1510.0,0.0,0.0,37331.0,1,1,2,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2117.281398557673,0.04056518935807602,0.05671643938168474,24887.333333333332,7,4,7,7_1,7_0,7_0_0 +7568,2,66.0,2,0.0,1,211,2,77,74,9.0,0.0,0.0,576.0579394737405,0.0,2639.8283375284886,43556.54,50,50,1,4286,201707568,,,399.0,,0.0,1.0,5.0,0.0,2.0,1.5,1631.6638885594755,0.0,428.0,1492.0,0.0,50814.0,5,5,1,108.0,3,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3215.8862770022292,0.07383245494252365,0.06328740656122779,33876.0,9,5,9,9_1,9_2,9_1_0 +7569,2,49.0,1,0.0,8,120,4,43,46,9.0,0.0,0.0,3203.3128409988376,0.0,0.0,70389.24486894539,20,31,1,4287,201707569,,,530.0,,2.0,0.0,6.0,3.0,5.0,2.8,1861.7768504713758,0.0,2380.0,0.0,0.0,96976.0,1,1,1,150.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3203.3128409988376,0.04550855527663272,0.03303201659172205,34634.28571428572,9,5,9,9_1,9_0,9_0_0 +7570,2,64.0,1,0.0,4,112,2,77,37,8.0,0.0,0.0,605.6683943065029,1415.4575536345783,0.0,45206.36,41,50,1,4288,201707570,,,380.0,415.0,1.0,3.0,6.0,0.0,2.0,1.5,1648.7805749597912,0.0,450.0,0.0,0.0,43230.0,5,5,3,99.0,8,3.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2021.1259479410812,0.04470888494320448,0.046752855608167505,28820.0,8,4,8,8_1,8_1,8_0_1 +7571,2,89.0,3,0.0,2,111,2,0,74,10.0,0.0,0.0,726.8020731678034,0.0,3520.9506646660134,52313.68784974978,0,12,1,4289,201707571,,,425.0,,0.0,2.0,10.0,0.0,1.0,1.0,1925.6972787954353,0.0,540.0,1990.0,0.0,49110.0,0,5,1,100.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4247.752737833816,0.0811977306978203,0.0864946596993243,49110.0,10,5,10,10_1,10_4,10_0_1 +7572,1,36.0,2,279.0,9,111,4,55,53,5.0,0.0,0.0,1884.3016711757866,84.9274532180747,0.0,21338.64,50,50,1,429,201707572,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2026.1800314840123,0.0,1400.0,0.0,0.0,46377.0,1,1,2,168.0,6,4.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1969.2291243938614,0.09228465939693727,0.0424613304955875,19323.75,5,3,5,5_1,5_2,5_0_0 +7573,0,46.0,1,0.0,6,111,4,56,37,9.0,0.0,0.0,1884.3016711757866,0.0,0.0,100618.81262590487,31,30,2,4290,201707573,,,,,2.0,2.0,4.0,3.0,5.0,3.0,993.3324480606309,0.0,1400.0,0.0,0.0,112796.0,1,1,5,103.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1884.3016711757866,0.01872713086151707,0.016705394439304466,37598.666666666664,9,5,9,9_0,9_3,9_0_0 +7574,2,42.0,1,0.0,4,111,2,38,38,10.0,0.0,0.0,2714.0107596096414,0.0,5403.222896912135,55366.85312086423,12,12,1,4291,201707574,,,460.0,,2.0,0.0,6.0,2.0,4.0,2.1,3364.7553294206723,3690.2961171808734,490.0,890.0,0.0,120724.0,1,1,1,126.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,8117.2336565217765,0.14660818159200942,0.06723794487029734,57487.619047619046,10,5,10,10_1,10_4,10_0_1 +7575,2,63.0,2,0.0,1,112,5,55,75,5.0,0.0,1249.133687607096,1480.522741638118,106.15931652259337,0.0,27762.8,70,50,1,4294,201707575,,,468.0,,1.0,3.0,5.0,0.0,2.0,1.5,2127.1877303016795,0.0,1100.0,0.0,0.0,33048.0,4,5,1,140.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2835.815745767807,0.1021444431313775,0.0858089973906986,22032.0,6,3,6,6_1,6_0,6_1_0 +7576,2,82.0,3,0.0,7,400,2,78,78,2.0,0.0,0.0,561.2527120573593,2133.802262104127,0.0,14626.8,70,70,1,4295,201707576,,,,447.0,0.0,2.0,5.0,0.0,2.0,1.5,2009.7390903700102,0.0,417.0,0.0,0.0,18967.0,5,5,3,76.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2695.054974161486,0.1842545857030578,0.14209178964314262,12644.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +7577,2,50.0,1,0.0,9,111,2,56,21,3.0,0.0,0.0,689.0736270694922,0.0,1284.0739383665773,77048.12494384077,71,71,1,4296,201707577,,,550.0,,2.0,0.0,8.0,2.0,4.0,2.5,2985.008485122595,1237.7120105331123,0.0,0.0,0.0,42889.0,1,1,1,160.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1973.1475654360695,0.025609287271744347,0.04600591213215672,17155.6,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +7578,1,42.0,4,181.0,99,111,1,0,56,4.0,0.0,0.0,145.36041463356068,0.0,123.8525359430256,13039.966811688999,0,41,2,4298,201707578,,,,88.0,1.0,1.0,2.0,0.0,1.0,1.0,2862.9143735200114,0.0,108.0,70.0,0.0,15952.0,0,1,3,43.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,269.2129505765863,0.020645217465988058,0.0168764387272183,15952.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +7579,2,39.0,2,0.0,3,111,2,0,52,5.0,0.0,0.0,713.3427755165478,0.0,1486.2304313163072,22224.84,0,31,1,4299,201707579,,,110.0,,1.0,0.0,4.0,0.0,1.0,1.0,2882.311702778005,0.0,530.0,840.0,0.0,21113.0,0,1,1,75.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2199.5732068328552,0.09896913574328793,0.10418098834049426,21113.0,5,3,5,5_1,5_2,5_0_1 +7580,2,75.0,3,0.0,9,112,5,78,78,6.0,0.0,534.3516330319244,1060.5926549189428,141.54575536345783,0.0,25501.82,70,50,1,43,201707580,,,388.0,,0.0,3.0,4.0,0.0,2.0,1.5,1946.6509623970333,0.0,788.0,0.0,0.0,33065.0,5,5,2,100.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1736.490043314325,0.0680927888015179,0.05251746690803947,22043.333333333332,6,3,6,6_1,6_1,6_0_0 +7581,1,48.0,4,356.0,1,111,2,0,68,1.0,0.0,0.0,548.9375480794389,0.0,1022.9333580467614,5906.530875301629,0,50,2,430,201707581,,,,,1.0,0.0,4.0,2.0,3.0,2.0,637.7986012539664,986.0,0.0,0.0,0.0,16877.0,0,1,3,66.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1571.8709061262002,0.2661242172963211,0.09313686710471057,8438.5,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +7582,2,71.0,3,0.0,1,111,2,0,75,7.0,0.0,0.0,348.59580916752054,0.0,169.8549064361494,24112.096679147733,0,33,1,4300,201707582,,,80.0,,0.0,0.0,2.0,0.0,1.0,1.0,2344.590149474251,0.0,259.0,96.0,0.0,27230.0,0,5,1,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,518.45071560367,0.021501685336722663,0.019039688417321704,27230.0,7,4,7,7_1,7_4,7_1_0 +7583,2,63.0,2,0.0,6,112,2,77,74,9.0,0.0,0.0,1480.522741638118,0.0,2653.9829130648345,40754.86175060326,50,41,1,4301,201707583,,,350.0,,0.0,2.0,3.0,0.0,2.0,1.5,2112.1684535858617,0.0,1100.0,1500.0,0.0,55671.0,5,5,1,110.0,9,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4134.505654702953,0.10144815801373079,0.07426677542531933,37114.0,9,5,9,9_1,9_0,9_0_0 +7584,2,37.0,4,0.0,8,111,2,56,62,2.0,0.0,0.0,1211.3367886130059,336.17116898821234,0.0,30062.300177261546,71,71,1,4305,201707584,,,,,2.0,0.0,5.0,3.0,5.0,2.6,2926.502523045668,0.0,900.0,0.0,0.0,33667.0,4,1,2,120.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1547.507957601218,0.05147669833899532,0.04596512779877085,12948.846153846154,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +7585,2,55.0,2,0.0,7,111,4,47,40,9.0,0.0,416.377895869032,1450.9122868053557,212.31863304518674,0.0,44575.979999999996,50,50,1,4306,201707585,,,385.0,,2.0,2.0,4.0,0.0,2.0,1.5,1358.3892804986829,0.0,1078.0,0.0,0.0,49413.0,1,1,1,90.0,5,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2079.6088157195745,0.04665312609435787,0.04208626911378736,32942.0,9,5,9,9_1,9_2,9_0_0 +7586,2,38.0,2,0.0,5,111,2,55,47,7.0,0.0,0.0,900.4270128690009,0.0,1415.4575536345783,38916.05,60,31,2,4309,201707586,,,,635.0,2.0,0.0,3.0,2.0,4.0,2.1,2170.4065796699297,0.0,669.0,800.0,0.0,50747.0,4,1,3,75.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2315.884566503579,0.05950975411182736,0.045635891116786786,24165.238095238095,7,4,7,7_0,7_4,7_0_0 +7587,2,28.0,2,0.0,1,112,4,48,37,10.0,0.0,0.0,3149.475650393815,0.0,0.0,178368.19999999998,12,41,1,431,201707587,,,800.0,,2.0,0.0,5.0,2.0,4.0,2.1,3687.905726449458,0.0,2340.0,0.0,0.0,130884.0,1,1,2,130.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3149.475650393815,0.01765715890160811,0.024063106647060108,62325.71428571428,10,5,10,10_1,10_0,10_1_0 +7588,2,59.0,3,0.0,3,111,1,0,52,6.0,0.0,0.0,904.4648021643776,0.0,189.31744779862484,25863.8,0,50,2,4310,201707588,630.0,630.0,,340.0,2.0,0.0,3.0,1.0,2.0,1.5,6384.649373579051,0.0,672.0,107.0,0.0,32745.0,0,1,3,67.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1093.7822499630024,0.042290083049010684,0.033403030995968926,21830.0,6,3,6,6_0,6_4,6_0_1 +7589,2,32.0,1,0.0,8,112,2,42,43,8.0,0.0,0.0,779.2933340077004,0.0,2282.4253052357576,91649.14,44,30,1,4311,201707589,,,570.0,,2.0,0.0,4.0,2.0,4.0,2.1,3016.554138557673,0.0,579.0,1290.0,0.0,60630.0,1,1,2,118.0,8,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3061.718639243458,0.03340695438324307,0.05049841067530031,28871.42857142857,8,4,8,8_1,8_1,8_0_0 +7590,2,69.0,2,0.0,5,111,4,0,31,10.0,0.0,0.0,2755.118229212025,0.0,0.0,33464.02712768312,44,12,1,4312,201707590,,,317.0,,1.0,2.0,6.0,0.0,2.0,1.5,1866.7460459818874,0.0,2047.0,0.0,0.0,79253.0,5,1,1,110.0,4,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2755.118229212025,0.08233074335912349,0.03476358281972954,52835.333333333336,10,5,10,10_1,10_1,10_0_0 +7591,2,33.0,2,0.0,6,111,1,68,34,7.0,0.0,0.0,565.290501352736,0.0,0.0,40229.7,60,30,2,4314,201707591,,,,540.0,2.0,0.0,3.0,2.0,4.0,2.1,2926.3516840128163,0.0,420.0,0.0,0.0,51740.0,1,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,565.290501352736,0.014051571385139239,0.010925599175739003,24638.095238095237,7,4,7,7_0,7_4,7_0_0 +7592,2,58.0,2,0.0,7,221,2,0,33,4.0,0.0,0.0,2313.357592151895,0.0,4791.004833485618,137781.2980251559,0,41,1,4316,201707592,,,366.0,,3.0,0.0,6.0,2.0,3.0,2.0,2493.430141240365,1036.6000329159756,1290.0,2100.0,0.0,36449.0,0,1,1,220.0,1,1.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,7104.362425637513,0.05156260339730875,0.1949124098229722,18224.5,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7593,1,43.0,3,88.0,9,221,2,63,43,1.0,0.0,0.0,874.8543473316153,226.47320858153253,0.0,27561.56,31,30,1,4317,201707593,,,522.0,,2.0,0.0,5.0,3.0,5.0,2.4,2355.185481756544,0.0,650.0,0.0,0.0,17161.0,4,4,2,100.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1101.3275559131478,0.03995882511414984,0.0641761876296922,7150.416666666667,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +7594,1,75.0,4,183.0,7,111,1,0,78,4.0,0.0,0.0,972.0537108992904,0.0,3987.6672495140215,9792.8,0,71,2,4319,201707594,999999.0,1230.0,,252.0,0.0,3.0,2.0,0.0,1.0,1.0,5337.481206643763,1746.0,0.0,1230.0,0.0,17416.0,0,5,3,40.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,4959.720960413312,0.5064660730754547,0.2847795682368691,17416.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +7595,2,45.0,3,0.0,6,300,4,0,69,1.0,0.0,0.0,180.3545885268253,60.15694602946958,0.0,12673.98,0,50,1,4320,201707595,,,,,1.0,0.0,6.0,0.0,1.0,1.0,2460.7800152550876,0.0,134.0,0.0,0.0,6801.0,0,1,1,182.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,240.51153455629486,0.01897679612531303,0.035364142707880436,6801.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +7596,2,89.0,3,0.0,5,211,2,86,78,4.0,1745.1016100527704,0.0,1022.9066214954271,0.0,0.0,16340.2,71,71,1,4321,201707596,,,340.0,,0.0,4.0,4.0,0.0,2.0,1.5,2167.0812824857635,0.0,760.0,0.0,0.0,25256.0,5,5,1,110.0,4,4.0,3,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2768.0082315481977,0.16939867514156484,0.10959804527827834,16837.333333333332,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7597,1,64.0,3,272.0,99,111,2,0,77,1.0,0.0,0.0,589.5172371249961,0.0,916.5087659783894,19361.36,0,70,2,4322,201707597,,,272.0,,0.0,7.0,4.0,0.0,2.0,1.5,3871.279902304563,0.0,438.0,518.0,0.0,14466.0,0,5,3,77.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1506.0260031033854,0.07778513508882565,0.10410797754067368,9644.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7598,2,69.0,3,0.0,1,111,2,0,31,7.0,0.0,0.0,714.8436224482755,0.0,1332.0957725477097,20473.722180565685,0,20,2,4323,201707598,,,,480.0,1.0,1.0,3.0,0.0,1.0,1.0,2675.1898833637,1284.0,0.0,0.0,0.0,25520.0,0,5,3,60.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2046.9393949959851,0.09997885958123462,0.08020922394184894,25520.0,7,4,7,7_0,7_3,7_1_0 +7599,2,48.0,1,0.0,1,212,2,68,38,9.0,0.0,312.283421901774,1200.5693504920011,5546.824288305504,0.0,42567.920000000006,50,50,1,4324,201707599,,,,,4.0,0.0,6.0,2.0,4.0,2.5,1534.077738625064,0.0,892.0,0.0,0.0,85047.0,1,1,1,130.0,3,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,7059.677060699279,0.16584500865203838,0.08300912508024126,34018.8,9,5,9,9_1,9_0,9_1_0 +7600,1,37.0,3,118.0,9,112,4,65,52,3.0,0.0,0.0,2013.5109286278407,0.0,0.0,48071.12269899828,71,44,1,4327,201707600,,,720.0,,2.0,0.0,6.0,4.0,6.0,2.7,1842.275613908328,0.0,1496.0,0.0,0.0,36775.0,4,1,2,115.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2013.5109286278407,0.041886080781504166,0.054752166652014704,13620.370370370369,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +7601,2,65.0,2,0.0,9,111,6,0,75,5.0,0.0,0.0,1211.3367886130059,0.0,0.0,19806.640000000003,0,50,2,4328,201707601,,,300.0,700.0,0.0,2.0,3.0,0.0,1.0,1.0,3623.1602196254544,0.0,900.0,0.0,0.0,20019.0,0,5,3,75.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1211.3367886130059,0.061158116097076824,0.06050935554288455,20019.0,5,3,5,5_0,5_3,5_0_0 +7602,2,38.0,2,0.0,4,111,1,0,52,4.0,0.0,0.0,672.964882562781,0.0,0.0,48327.26,0,42,2,4329,201707602,,,,,1.0,0.0,5.0,2.0,3.0,1.6,2378.8206039633587,0.0,500.0,0.0,0.0,27292.0,0,1,2,110.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,672.964882562781,0.013925161131890799,0.024657954073090318,17057.5,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +7603,1,35.0,4,480.0,4,111,1,0,56,2.0,0.0,0.0,597.5928157157495,0.0,0.0,7372.36,0,60,2,433,201707603,,,,50.0,1.0,0.0,1.0,2.0,3.0,1.6,1501.0239411115415,0.0,444.0,0.0,0.0,18170.0,0,4,3,15.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,597.5928157157495,0.08105855054768751,0.03288898270312325,11356.25,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +7604,1,44.0,2,408.0,9,112,2,0,85,1.0,0.0,0.0,942.1508355878933,318.4779495677801,0.0,18721.38,0,71,1,4330,201707604,,,,,1.0,0.0,4.0,3.0,4.0,2.1,928.2367009651546,0.0,700.0,0.0,0.0,19504.0,0,6,3,80.0,8,1.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1260.6287851556735,0.06733631736312566,0.06463437167533191,9287.619047619048,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +7605,1,49.0,3,119.0,9,300,2,85,67,2.0,0.0,0.0,2160.217273026527,0.0,0.0,28535.220315994116,50,50,1,4333,201707605,,,770.0,,1.0,0.0,4.0,2.0,4.0,2.3,2174.8153259735686,0.0,1605.0,0.0,0.0,30453.0,6,1,2,115.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2160.217273026527,0.0757035428184767,0.07093610721526704,13240.434782608696,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +7606,2,70.0,2,0.0,1,112,2,77,74,9.0,0.0,0.0,2826.45250676368,0.0,0.0,36617.16,60,10,1,4334,201707606,,,250.0,,0.0,2.0,5.0,0.0,2.0,1.5,2267.7601141992136,0.0,2100.0,0.0,0.0,51925.0,5,5,1,150.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2826.45250676368,0.07718928793941637,0.05443336556116861,34616.666666666664,9,5,9,9_1,9_0,9_1_0 +7607,2,52.0,3,0.0,9,112,6,56,47,8.0,0.0,1346.2885299765367,1642.0343134531856,0.0,0.0,15935.600000000002,50,50,1,4335,201707607,,,600.0,,4.0,0.0,5.0,2.0,4.0,2.5,1824.8103183760852,0.0,1220.0,0.0,0.0,72300.0,1,1,1,106.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2988.3228434297225,0.1875249657013054,0.0413322661608537,28920.0,8,4,8,8_1,8_0,8_0_0 +7609,2,44.0,3,0.0,9,400,2,0,54,5.0,0.0,0.0,403.7789295376686,0.0,0.0,23399.80688025633,0,42,1,4339,201707609,,,530.0,,1.0,0.0,4.0,2.0,3.0,1.6,413.25459052352346,0.0,300.0,0.0,0.0,30611.0,0,1,2,110.0,0,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,403.7789295376686,0.017255652219863343,0.013190648117920636,19131.875,5,3,5,5_1,5_1,5_0_0 +7610,2,59.0,2,0.0,1,112,6,0,47,7.0,95.18736054833293,0.0,1053.863006093315,88.46609710216114,0.0,22794.62,0,50,1,434,201707610,,,100.0,,1.0,0.0,3.0,0.0,1.0,1.0,3114.02352916829,0.0,783.0,0.0,0.0,26329.0,0,1,1,150.0,8,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1237.5164637438093,0.05428984838281179,0.047002030602902097,26329.0,7,4,7,7_1,7_0,7_1_0 +7611,2,43.0,4,0.0,2,111,1,64,55,8.0,0.0,0.0,675.8723969253944,0.0,1259.4737288729903,52896.32000000001,50,30,2,4340,201707611,,,,989.0,2.0,0.0,4.0,2.0,4.0,2.3,2624.371757566845,1214.0,0.0,0.0,0.0,61976.0,4,1,3,90.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1935.3461257983845,0.036587538146290406,0.031227348099238165,26946.08695652174,7,4,7,7_0,7_3,7_0_1 +7612,0,64.0,4,0.0,1,112,2,0,77,5.0,0.0,0.0,309.56384597887927,0.0,1769.3219420432229,24397.48,0,71,1,4341,201707612,,,570.0,,0.0,0.0,3.0,0.0,1.0,1.0,2636.960125083394,0.0,230.0,1000.0,0.0,18985.0,0,5,5,80.0,9,2.0,1,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2078.885788022102,0.08520903749166316,0.1095014900195998,18985.0,5,3,5,5_1,5_1,5_1_0 +7613,1,37.0,4,180.0,9,111,2,63,62,4.0,0.0,0.0,962.0325386219781,0.0,1792.7270209987869,22453.52,60,60,1,4344,201707613,,,540.0,,3.0,0.0,6.0,3.0,5.0,2.6,1376.1471513275105,1728.0,0.0,0.0,0.0,44490.0,1,1,3,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2754.759559620765,0.12268720270232751,0.06191862350237727,17111.53846153846,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +7614,2,29.0,3,0.0,1,111,2,55,67,9.0,0.0,0.0,484.5347154452023,0.0,1008.513506964637,27102.98,42,71,2,4345,201707614,,,410.0,600.0,2.0,0.0,3.0,1.0,3.0,1.8,3088.7779045915568,0.0,360.0,570.0,0.0,56520.0,4,1,3,62.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1493.0482224098394,0.05508797270299574,0.026416281358985126,31400.0,8,4,8,8_0,8_3,8_1_0 +7615,2,83.0,1,0.0,1,111,4,75,74,10.0,0.0,0.0,5781.00450968662,0.0,903.3601543636743,73879.27063071985,41,10,2,4346,201707615,,,,,0.0,4.0,6.0,0.0,2.0,1.5,1874.9317897592148,870.7440276494195,3935.0,0.0,0.0,76590.0,5,5,1,180.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,6684.364664050294,0.0904768632254317,0.0872746398230878,51060.0,10,5,10,10_0,10_2,10_1_0 +7616,2,68.0,4,0.0,99,111,1,0,77,2.0,0.0,0.0,581.4416585342427,0.0,254.7823596542241,12265.36,0,70,2,4347,201707616,,,,441.0,0.0,1.0,3.0,0.0,1.0,1.0,3363.431265432905,0.0,432.0,144.0,0.0,12730.0,0,5,3,63.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,836.2240181884669,0.06817769867239663,0.06568923944921184,12730.0,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +7617,2,50.0,3,0.0,7,111,2,54,38,7.0,0.0,0.0,794.0985614240816,0.0,1309.298237111985,44555.2,43,31,1,4349,201707617,,,286.0,,3.0,0.0,5.0,2.0,4.0,2.5,1739.9255455637071,0.0,590.0,740.0,0.0,62171.0,1,1,1,105.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2103.3967985360664,0.04720878367813559,0.03383244275524065,24868.4,7,4,7,7_1,7_2,7_0_0 +7618,2,68.0,3,0.0,7,111,2,86,86,5.0,0.0,0.0,807.5578590753372,0.0,1415.4575536345783,12432.400000000001,70,70,1,435,201707618,,,406.0,,0.0,2.0,3.0,0.0,2.0,1.5,1888.006200064117,0.0,600.0,800.0,0.0,31200.0,5,5,1,88.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2223.0154127099154,0.1788082279133486,0.07125049399711267,20800.0,5,3,5,5_1,5_3,5_0_0 +7619,1,45.0,3,353.0,99,211,2,0,85,2.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,21713.7516935026,0,41,1,4351,201707619,,,255.0,124.0,0.0,0.0,4.0,2.0,3.0,1.8,6435.135511523145,720.0,0.0,0.0,0.0,21052.0,0,7,3,91.0,2,3.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1147.8164831753188,0.05286126964041776,0.0545229186383868,11695.555555555555,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +7620,1,49.0,4,170.0,9,112,4,54,64,3.0,0.0,277.585263912688,2409.214279574756,84.9274532180747,0.0,43553.600000000006,50,50,1,4354,201707620,,,670.0,,2.0,0.0,4.0,2.0,4.0,2.3,1799.5915607933457,0.0,1790.0,0.0,0.0,34700.0,1,1,2,95.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2771.7269967055186,0.06363944649134672,0.07987685869468353,15086.956521739132,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +7621,2,84.0,3,0.0,5,112,2,71,71,4.0,2379.684013708323,0.0,646.0462872602698,70.77287768172891,0.0,17934.04,70,70,1,4356,201707621,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2182.817056027642,0.0,480.0,0.0,0.0,25765.0,5,5,5,100.0,7,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3096.503178650322,0.17266065976491196,0.12018254137979126,17176.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7622,2,43.0,3,0.0,6,111,2,22,33,5.0,0.0,416.377895869032,1211.3367886130059,0.0,884.6609710216114,36196.37087530163,20,30,1,4357,201707622,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.1,952.2068111739248,0.0,900.0,500.0,0.0,44053.0,1,1,1,120.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2512.3756555036493,0.06940960087294147,0.05703075058460603,20977.619047619046,5,3,5,5_1,5_2,5_0_0 +7623,2,32.0,3,0.0,3,111,1,85,38,4.0,0.0,0.0,605.6683943065029,0.0,0.0,33749.18000000001,20,12,2,4358,201707623,,,,463.0,1.0,0.0,4.0,1.0,4.0,2.3,5883.209275207856,0.0,450.0,0.0,0.0,45506.0,6,1,3,68.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,605.6683943065029,0.01794616622704619,0.01330963816434103,19785.217391304348,5,3,5,5_0,5_4,5_0_1 +7624,1,37.0,4,28.0,1,221,5,68,52,4.0,0.0,0.0,1615.1157181506744,176.9321942043223,0.0,18971.96,71,71,1,4359,201707624,,,,,2.0,1.0,5.0,2.0,4.0,2.1,2917.865514348733,0.0,1200.0,0.0,0.0,36347.0,4,1,2,185.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1792.0479123549967,0.09445771087199197,0.04930387411216872,17308.095238095237,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +7625,2,55.0,2,0.0,4,111,2,75,38,5.0,0.0,0.0,61.24049725024166,0.0,114.1203543459876,21361.72,41,43,1,4361,201707625,,,500.0,,1.0,0.0,5.0,0.0,2.0,1.5,1973.050597795024,110.0,0.0,0.0,0.0,33781.0,5,1,2,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,175.36085159622925,0.008209116662713923,0.005191108954626247,22520.666666666668,6,3,6,6_1,6_4,6_0_1 +7626,1,45.0,4,490.0,9,111,2,0,85,1.0,0.0,0.0,565.290501352736,0.0,2452.2802116719067,8384.82,0,50,1,4362,201707626,,,1308.0,,1.0,0.0,5.0,3.0,4.0,2.5,504.1176870152076,0.0,420.0,1386.0,0.0,22400.0,0,6,3,100.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,3017.570713024643,0.3598849722504052,0.1347129782600287,8960.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +7627,2,30.0,2,0.0,99,221,4,55,46,5.0,0.0,0.0,821.0171567265928,0.0,0.0,32748.279999999995,50,50,2,4363,201707627,,,510.0,545.0,2.0,0.0,5.0,1.0,3.0,1.8,1466.284520103174,0.0,610.0,0.0,0.0,34807.0,4,1,3,125.0,1,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,821.0171567265928,0.02507054284153528,0.023587702379595853,19337.222222222223,5,3,5,5_0,5_1,5_0_0 +7628,2,84.0,3,0.0,99,112,2,0,77,3.0,0.0,0.0,796.1264642531415,0.0,1483.5646064978387,5628.6,0,71,1,4364,201707628,,,140.0,,0.0,3.0,3.0,0.0,1.0,1.0,2422.46443043809,1430.0,0.0,0.0,0.0,14710.0,0,5,1,80.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2279.69107075098,0.4050192002897665,0.15497559964316657,14710.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7629,2,58.0,2,0.0,6,221,5,75,62,7.0,0.0,693.9631597817199,1857.3830758732754,424.6372660903735,0.0,32571.140000000003,60,50,1,4365,201707629,,,730.0,,1.0,3.0,5.0,0.0,2.0,1.5,1832.7877086896945,0.0,1380.0,0.0,0.0,44062.0,5,1,1,130.0,1,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2975.983501745369,0.09136872402210572,0.06754081752406538,29374.666666666668,8,4,8,8_1,8_1,8_0_0 +7630,2,59.0,2,0.0,9,111,4,72,21,2.0,0.0,0.0,1615.1157181506744,0.0,0.0,24527.46,60,60,1,4366,201707630,,,,,1.0,4.0,4.0,1.0,3.0,2.0,1480.4650448956747,0.0,1200.0,0.0,0.0,26136.0,5,1,1,95.0,6,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.0658492855823911,0.06179659160356116,13068.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7631,2,46.0,3,0.0,3,300,2,0,43,3.0,0.0,0.0,309.56384597887927,0.0,636.9558991355602,23853.02,0,33,2,4367,201707631,,,,350.0,1.0,0.0,4.0,2.0,3.0,2.0,327.7866237991228,0.0,230.0,360.0,0.0,30560.0,0,1,3,69.0,0,1.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,946.5197451144395,0.039681337839587584,0.030972504748509145,15280.0,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +7632,2,41.0,4,0.0,9,300,4,52,62,2.0,0.0,0.0,2437.478804642393,106.15931652259337,0.0,40979.399999999994,50,71,1,4369,201707632,,,540.0,,3.0,1.0,5.0,1.0,3.0,2.0,2094.461178036347,0.0,1811.0,0.0,0.0,24256.0,4,4,2,85.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2543.638121164986,0.062071141138352104,0.10486634734354329,12128.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +7633,1,38.0,3,494.0,99,111,2,85,55,1.0,0.0,0.0,57.34337469795356,0.0,106.85814997851566,5600.76,60,71,2,437,201707633,,,,50.0,1.0,0.0,4.0,3.0,5.0,2.4,1630.6330009187527,103.0,0.0,0.0,0.0,21398.0,6,4,3,67.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,164.2015246764692,0.0293177220013836,0.007673685609705076,8915.833333333334,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7634,1,54.0,3,249.0,1,112,4,0,77,1.0,0.0,0.0,2109.0719419517554,99.08202875442048,0.0,14533.259999999998,0,50,2,4370,201707634,,,490.0,265.0,0.0,2.0,3.0,0.0,1.0,1.0,3804.2061527300634,0.0,1567.0,0.0,0.0,6986.0,0,7,3,65.0,9,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,2208.153970706176,0.1519379664786962,0.31608273270915777,6986.0,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +7635,2,50.0,4,0.0,4,111,1,55,62,8.0,0.0,0.0,310.27776664238934,0.0,578.1959694125669,35788.51443568092,31,50,2,4372,201707635,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3056.7227223092173,557.3200065831951,0.0,0.0,0.0,54244.0,1,1,1,68.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,888.4737360549562,0.024825666839335295,0.016379207581575034,30135.555555555555,8,4,8,8_0,8_3,8_0_1 +7636,2,45.0,2,0.0,8,111,4,0,37,8.0,0.0,0.0,1502.057617880127,0.0,0.0,45177.48,0,20,2,4373,201707636,,,,1130.0,1.0,0.0,2.0,1.0,2.0,1.5,4574.600280832985,0.0,1116.0,0.0,0.0,46718.0,0,1,3,57.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1502.057617880127,0.03324792834571842,0.0321515822141386,31145.333333333332,8,4,8,8_0,8_4,8_0_0 +7637,2,74.0,3,0.0,6,111,4,75,75,8.0,0.0,0.0,2018.894647688343,226.47320858153253,0.0,33684.737800958945,31,31,1,4376,201707637,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1898.097578234295,0.0,1500.0,0.0,0.0,44302.0,5,5,1,145.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2245.3678562698756,0.0666583147993497,0.05068321647487417,29534.666666666668,8,4,8,8_1,8_3,8_0_0 +7638,1,34.0,2,4.0,5,111,2,0,43,5.0,0.0,0.0,53.83719060502248,0.0,1238.525359430256,19610.140315994115,0,33,2,4379,201707638,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2702.797299023574,0.0,40.0,700.0,0.0,19088.0,0,1,3,60.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1292.3625500352784,0.06590276913935297,0.0677054982206244,19088.0,5,3,5,5_0,5_2,5_0_0 +7639,0,84.0,2,0.0,9,111,2,77,78,7.0,0.0,0.0,471.07541779394666,0.0,1061.5931652259337,26400.72,60,70,2,438,201707639,,,,,0.0,2.0,2.0,0.0,2.0,1.5,4715.360152244096,0.0,350.0,600.0,0.0,35471.0,5,5,5,50.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1532.6685830198803,0.05805404485256009,0.04320906044430324,23647.333333333332,6,3,6,6_0,6_3,6_0_0 +7640,2,64.0,1,0.0,9,111,2,0,77,4.0,0.0,0.0,304.180126918377,0.0,796.1948739194503,24918.680000000004,0,50,2,4380,201707640,,,11.0,620.0,0.0,2.0,3.0,0.0,1.0,1.0,3954.344431669679,0.0,226.0,450.0,0.0,18565.0,0,5,3,75.0,6,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1100.3750008378274,0.044158639255282676,0.059271478633871666,18565.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +7641,1,40.0,4,227.0,99,111,2,0,85,1.0,0.0,0.0,1938.1388617808093,0.0,0.0,9237.2,0,0,2,4381,201707641,,,,2.0,0.0,0.0,1.0,0.0,1.0,1.0,3495.4259367613276,0.0,1440.0,0.0,0.0,9464.0,0,7,3,34.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1938.1388617808093,0.2098188695471365,0.20479066586864003,9464.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7642,1,40.0,3,85.0,9,111,2,42,42,5.0,0.0,0.0,3364.824412813905,141.54575536345783,0.0,52501.479999999996,30,20,1,4382,201707642,,,,,2.0,0.0,6.0,5.0,7.0,3.0,270.7023740159826,0.0,2500.0,0.0,0.0,60677.0,1,1,2,150.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,3506.3701681773628,0.06678612047083936,0.05778746754416604,20225.666666666668,5,3,5,5_1,5_2,5_0_0 +7643,2,45.0,3,0.0,1,400,6,69,52,4.0,0.0,0.0,2691.859530251124,247.7050718860512,0.0,30630.725846751302,50,50,1,4384,201707643,,,400.0,,2.0,0.0,4.0,1.0,3.0,1.8,1866.7125927512818,0.0,2000.0,0.0,0.0,29225.0,1,1,1,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2939.564602137175,0.09596784016298279,0.10058390426474507,16236.111111111111,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7644,2,79.0,2,0.0,2,112,2,0,77,7.0,0.0,0.0,868.2922822308998,0.0,2737.985881831271,31937.160140324264,0,70,1,4386,201707644,,,255.0,,0.0,2.0,3.0,0.0,1.0,1.0,3149.965965915401,592.6020037293384,400.0,1200.0,0.0,27318.0,0,5,1,78.0,10,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3606.2781640621706,0.11291793472610102,0.13201106098770665,27318.0,8,4,8,8_1,8_2,8_0_1 +7645,2,86.0,3,0.0,2,112,2,0,78,4.0,0.0,0.0,1423.0064633783427,0.0,2651.742051894039,12030.84,0,71,1,4387,201707645,,,216.0,,0.0,2.0,4.0,0.0,1.0,1.0,2858.837709955307,2556.0,0.0,0.0,0.0,17210.0,0,5,1,90.0,9,2.0,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4074.7485152723816,0.3386919379920589,0.23676632860385716,17210.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +7646,2,73.0,2,0.0,1,112,6,0,72,4.0,1110.5192063972174,0.0,807.5578590753372,113.23660429076627,0.0,12649.6,0,71,1,4388,201707646,,,50.0,,0.0,1.0,4.0,0.0,1.0,1.0,2384.434335381095,0.0,600.0,0.0,0.0,16919.0,0,5,1,80.0,8,0.0,1,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2031.313669763321,0.16058323344321726,0.12006109520440458,16919.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7647,1,44.0,4,118.0,9,221,2,0,64,3.0,0.0,0.0,807.5578590753372,1769.3219420432229,0.0,38862.982382591494,0,50,2,4389,201707647,,,330.0,,2.0,1.0,4.0,3.0,4.0,2.5,700.4519516321199,0.0,600.0,0.0,0.0,39074.0,0,1,3,80.0,1,2.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,2576.87980111856,0.06630679487616632,0.06594870760911502,15629.6,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +7648,1,86.0,4,120.0,99,111,1,0,86,2.0,0.0,0.0,16.701953795520453,0.0,31.12373300345116,4840.6,0,71,2,4390,201707648,,,,230.0,0.0,2.0,3.0,0.0,1.0,1.0,2289.7483930007556,30.0,0.0,0.0,0.0,10800.0,0,5,3,65.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,47.82568679897162,0.009880115440022232,0.0044283043332381125,10800.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7649,2,58.0,2,0.0,6,111,4,37,34,10.0,0.0,0.0,3076.7954430770346,0.0,0.0,45042.18791334868,31,30,1,4392,201707649,,,633.0,,2.0,5.0,7.0,0.0,2.0,1.5,1895.2245374250167,0.0,2286.0,0.0,0.0,75890.0,1,1,1,183.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3076.7954430770346,0.06830919157382222,0.040542830980063706,50593.333333333336,10,5,10,10_1,10_4,10_0_0 +7650,2,88.0,3,0.0,99,111,1,0,77,7.0,0.0,0.0,384.9359128259107,0.0,0.0,12440.880315994116,0,70,2,4393,201707650,,,120.0,,0.0,1.0,4.0,0.0,1.0,1.0,3097.1921997507993,0.0,286.0,0.0,0.0,24244.0,0,5,1,80.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,384.9359128259107,0.030941211799219173,0.015877574361735303,24244.0,7,4,7,7_0,7_3,7_0_0 +7651,1,44.0,5,351.0,99,300,4,0,69,1.0,0.0,0.0,1453.6041463356069,509.5647193084482,0.0,14554.119999999999,0,71,2,4395,201707651,,,720.0,,2.0,3.0,3.0,1.0,2.0,1.5,1645.3450879975005,0.0,1080.0,0.0,0.0,12692.0,0,4,3,90.0,0,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1963.1688656440551,0.13488750028473417,0.15467766038796527,8461.333333333334,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +7652,2,56.0,3,0.0,2,300,4,56,63,6.0,0.0,0.0,1615.1157181506744,38.925082724950904,0.0,10462.585846751299,50,50,1,4396,201707652,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2085.892070640604,0.0,1200.0,0.0,0.0,32550.0,1,1,2,90.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1654.0408008756253,0.15809101355084373,0.05081538558757682,21700.0,6,3,6,6_1,6_1,6_0_1 +7653,2,73.0,2,0.0,1,111,2,86,74,9.0,0.0,0.0,3526.309125676226,0.0,2839.131913714405,71680.50255098812,20,30,2,4397,201707653,,,,,0.0,3.0,5.0,0.0,2.0,1.5,3165.197943109052,2736.624086898176,1488.0,0.0,0.0,61917.0,6,5,1,127.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,6365.441039390631,0.0888029633283156,0.10280603129012438,41278.0,10,5,10,10_0,10_4,10_1_0 +7654,0,47.0,3,0.0,99,112,6,69,62,3.0,0.0,0.0,0.0,191.08676974066807,0.0,20859.46,71,71,8,4398,201707654,,,,,2.0,0.0,4.0,3.0,5.0,2.4,10034.992363605164,0.0,0.0,0.0,0.0,35000.0,1,4,5,45.0,7,0.0,4,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,191.08676974066807,0.009160676726083422,0.005459621992590516,14583.333333333334,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +7655,2,53.0,2,0.0,1,112,2,0,48,9.0,0.0,0.0,518.1829595733413,0.0,1441.9973827652266,27462.767849749776,0,50,1,4399,201707655,,,180.0,,1.0,0.0,3.0,0.0,1.0,1.0,2340.200079701507,0.0,385.0,815.0,0.0,36208.0,0,1,2,57.0,10,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1960.180342338568,0.07137592077618746,0.05413666433767587,36208.0,9,5,9,9_1,9_0,9_1_0 +7656,2,75.0,1,0.0,4,112,2,75,74,10.0,0.0,0.0,2036.3917346349751,0.0,3237.8591539390977,57883.99999999999,33,12,1,44,201707656,,,290.0,,0.0,3.0,8.0,0.0,2.0,1.5,2740.8485978600324,0.0,1513.0,1830.0,0.0,79733.0,5,5,1,300.0,9,1.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,5274.250888574073,0.09111759533850586,0.06614890808791934,53155.333333333336,10,5,10,10_1,10_1,10_0_1 +7657,2,74.0,2,0.0,4,111,4,77,74,8.0,0.0,0.0,2857.408891361568,0.0,0.0,57953.840000000004,70,50,1,4403,201707657,,,352.0,,0.0,4.0,5.0,0.0,2.0,1.5,2579.753921934982,0.0,2123.0,0.0,0.0,44830.0,5,5,2,116.0,4,3.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2857.408891361568,0.04930491044875659,0.06373876625834414,29886.666666666668,8,4,8,8_1,8_1,8_0_1 +7658,2,41.0,3,0.0,7,111,1,38,38,10.0,0.0,0.0,20.18894647688343,0.0,0.0,59627.62,12,12,2,4404,201707658,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3089.399191130602,0.0,15.0,0.0,0.0,108303.0,1,1,2,114.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,20.18894647688343,0.0003385838052379657,0.00018641170121680314,51572.85714285714,10,5,10,10_0,10_3,10_0_0 +7659,2,61.0,4,0.0,5,400,2,77,77,4.0,0.0,0.0,2378.257894976868,0.0,0.0,44979.44932216843,50,70,1,4405,201707659,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1954.7400180488205,0.0,1767.0,0.0,0.0,25717.0,6,5,2,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2378.257894976868,0.05287432218083487,0.09247804545541347,17144.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7660,1,44.0,3,202.0,99,111,2,85,67,2.0,0.0,0.0,511.45331074771354,0.0,1450.8439924754427,27815.72000000001,20,71,2,4407,201707660,,,,358.0,1.0,0.0,5.0,3.0,5.0,2.4,910.5744889405684,0.0,380.0,820.0,0.0,27604.0,6,1,3,100.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1962.2973032231562,0.07054634225621899,0.07108742585216477,11501.666666666668,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7661,2,44.0,1,0.0,9,111,2,52,37,8.0,0.0,22.20682111301504,1098.2786883424585,0.0,0.0,30460.72,43,31,1,441,201707661,,,577.0,,2.0,1.0,6.0,2.0,4.0,2.1,2629.657947598947,0.0,816.0,0.0,0.0,59317.0,1,1,2,108.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1120.4855094554734,0.03678460356339159,0.018889787235623404,28246.190476190473,8,4,8,8_1,8_3,8_0_0 +7662,2,51.0,3,0.0,9,111,6,0,64,6.0,0.0,0.0,2355.3770889697334,0.0,0.0,16717.745846751302,0,50,1,4410,201707662,,,332.0,,1.0,3.0,4.0,0.0,1.0,1.0,2459.983207595183,0.0,1750.0,0.0,0.0,21060.0,0,1,3,100.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2355.3770889697334,0.14089083005334987,0.11184126728251347,21060.0,5,3,5,5_1,5_2,5_0_0 +7663,1,32.0,3,530.0,99,111,1,0,85,2.0,0.0,0.0,508.7614512174624,261.859647422397,0.0,20750.52,0,71,2,4411,201707663,,,,,0.0,0.0,4.0,2.0,3.0,1.6,1772.7121036598976,0.0,378.0,0.0,0.0,17043.0,0,6,3,72.0,9,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,770.6210986398594,0.037137435526428224,0.04521628226485122,10651.875,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7664,1,24.0,2,54.0,1,111,4,0,85,3.0,0.0,0.0,414.5463676586731,0.0,0.0,24612.579999999998,0,42,2,4412,201707664,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3774.1654805191565,0.0,308.0,0.0,0.0,14718.0,0,4,3,36.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,414.5463676586731,0.016842865220089608,0.02816594426271729,14718.0,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +7665,1,40.0,5,104.0,1,400,5,52,69,5.0,0.0,416.377895869032,2153.487624200899,185.7788039145384,0.0,40699.31569949955,50,50,1,4413,201707665,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2731.0322960021363,0.0,1600.0,0.0,0.0,41368.0,1,1,3,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2755.6443239844693,0.06770738712981245,0.06661294536802527,19699.04761904762,5,3,5,5_1,5_0,5_1_0 +7666,2,66.0,4,0.0,5,111,4,74,75,8.0,0.0,0.0,1076.7438121004495,212.31863304518674,0.0,20295.569830358505,50,50,1,4414,201707666,,,350.0,,0.0,1.0,4.0,0.0,2.0,1.5,1437.5083837451282,0.0,800.0,0.0,0.0,47260.0,5,5,1,80.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1289.0624451456363,0.06351447413993924,0.027275972178282613,31506.666666666668,8,4,8,8_1,8_3,8_0_0 +7667,2,51.0,2,0.0,2,120,2,21,62,5.0,1189.8420068541616,69.396315978172,823.7090162568439,141.54575536345783,0.0,28423.649830358503,44,50,1,4415,201707667,,,470.0,,2.0,0.0,3.0,1.0,3.0,1.8,2322.679939675445,0.0,612.0,0.0,0.0,34563.0,1,1,1,96.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2224.4930944526354,0.07826204965685711,0.06436053277934889,19201.666666666668,5,3,5,5_1,5_0,5_0_1 +7668,1,67.0,3,117.0,6,111,4,0,78,2.0,0.0,0.0,1332.4704674743064,169.8549064361494,0.0,15508.96,0,71,1,4416,201707668,,,204.0,188.0,0.0,0.0,2.0,0.0,1.0,1.0,1648.6744857503563,0.0,990.0,0.0,0.0,11859.0,0,5,3,55.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1502.3253739104557,0.09686822159000061,0.12668229816261536,11859.0,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +7669,2,30.0,2,0.0,4,111,1,0,65,5.0,0.0,0.0,298.7964078578747,0.0,0.0,18158.079999999998,0,41,2,4418,201707669,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2277.69895910573,0.0,222.0,0.0,0.0,21394.0,0,1,1,58.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,298.7964078578747,0.016455286454177685,0.013966364768527377,21394.0,6,3,6,6_0,6_3,6_0_1 +7670,2,62.0,3,0.0,2,111,2,77,77,5.0,0.0,0.0,796.7904209543327,0.0,1486.2304313163072,30932.58,50,60,1,4419,201707670,,,399.0,,0.0,8.0,4.0,0.0,2.0,1.5,1022.2775106798324,0.0,592.0,840.0,0.0,29695.0,5,5,1,80.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2283.02085227064,0.07380635085306947,0.07688233211889678,19796.666666666668,5,3,5,5_1,5_2,5_0_1 +7671,1,24.0,3,176.0,7,111,4,0,84,2.0,0.0,0.0,336.4824412813905,0.0,0.0,14617.64,0,31,2,442,201707671,,,,269.0,0.0,0.0,2.0,0.0,1.0,1.0,3478.634137148819,0.0,250.0,0.0,0.0,13512.0,0,3,3,37.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,336.4824412813905,0.023018930640061632,0.024902489733673067,13512.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7672,1,39.0,4,369.0,99,111,1,0,56,2.0,0.0,0.0,1049.8252167979383,0.0,0.0,20854.9839836072,0,71,2,4420,201707672,,,,,1.0,0.0,3.0,2.0,3.0,1.8,744.709014297521,0.0,780.0,0.0,0.0,23888.0,0,1,3,65.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1049.8252167979383,0.05033929623840231,0.04394780713320237,13271.111111111111,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7673,2,40.0,3,0.0,9,300,5,33,62,7.0,247.48713742566562,55.5170527825376,1857.3830758732754,187.54812585658163,0.0,26625.36,42,50,1,4422,201707673,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2166.9383546625354,0.0,1380.0,0.0,0.0,57770.0,1,1,2,88.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2347.93539193806,0.0881841744839529,0.040642814470106634,25117.391304347828,7,4,7,7_1,7_0,7_0_0 +7674,2,64.0,3,0.0,4,111,1,0,78,3.0,0.0,0.0,269.1859530251124,0.0,0.0,10354.74,0,70,2,4424,201707674,,,,243.0,0.0,0.0,2.0,0.0,1.0,1.0,1379.52531300892,0.0,200.0,0.0,0.0,15975.0,0,5,3,61.0,4,3.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,269.1859530251124,0.02599639904286466,0.01685045089359076,15975.0,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +7675,2,56.0,2,0.0,7,112,2,54,52,5.0,0.0,0.0,1144.0403003567276,0.0,1592.3897478389006,52582.06,31,42,1,4425,201707675,,,345.0,,3.0,0.0,5.0,2.0,4.0,2.5,1934.1487988090266,0.0,850.0,900.0,0.0,52522.0,1,1,1,102.0,6,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2736.430048195628,0.05204113433736959,0.0521006444574774,21008.8,5,3,5,5_1,5_0,5_0_0 +7676,2,46.0,3,0.0,1,300,2,0,42,4.0,0.0,0.0,4239.67876014552,0.0,0.0,24747.78,0,20,1,4426,201707676,,,230.0,,1.0,0.0,6.0,3.0,4.0,2.1,588.3435804576716,0.0,3150.0,0.0,0.0,34149.0,0,1,2,200.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4239.67876014552,0.17131551840793477,0.1241523546852183,16261.42857142857,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7677,2,55.0,1,0.0,1,300,5,0,52,8.0,0.0,277.585263912688,646.0462872602698,636.9558991355602,0.0,7493.7,0,71,1,4427,201707677,,,290.0,,1.0,2.0,5.0,0.0,1.0,1.0,1686.4400386581501,0.0,480.0,0.0,0.0,29328.0,0,1,1,91.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1560.5874503085179,0.2082532594457368,0.05321151971864832,29328.0,8,4,8,8_1,8_1,8_1_0 +7678,2,71.0,1,0.0,3,111,1,77,75,7.0,0.0,0.0,606.1375544931747,0.0,987.7289746433187,41109.264325400596,60,30,2,4429,201707678,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2452.71120964496,931.6014032426281,65.0,12.0,0.0,36814.0,5,5,1,90.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1593.8665291364932,0.038771468069100784,0.04329511949629199,24542.666666666668,7,4,7,7_0,7_3,7_0_1 +7679,2,58.0,3,0.0,7,212,2,77,52,8.0,475.9368027416647,0.0,2068.694048997989,176.9321942043223,0.0,29776.825642398897,60,60,1,443,201707679,,,350.0,,1.0,2.0,5.0,0.0,2.0,1.5,2387.076927594163,0.0,1537.0,0.0,0.0,42960.0,5,1,1,150.0,2,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2721.5630459439762,0.0913986963764456,0.06335109511042775,28640.0,8,4,8,8_1,8_0,8_0_0 +7680,2,63.0,3,0.0,5,300,4,0,75,8.0,0.0,555.170527825376,2018.894647688343,219.39592081335965,0.0,20071.4,0,30,1,4430,201707680,,,252.0,,0.0,0.0,4.0,1.0,2.0,1.5,2549.8439380968102,0.0,1500.0,0.0,0.0,41900.0,0,5,1,100.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2793.4610963270784,0.13917619579735735,0.06666971590279423,27933.333333333332,8,4,8,8_1,8_0,8_0_0 +7681,2,44.0,3,0.0,4,300,5,0,56,2.0,396.6140022847205,0.0,1259.790260157526,0.0,0.0,38515.69569949955,0,41,1,4432,201707681,,,,,1.0,0.0,7.0,3.0,4.0,2.3,626.2491862155588,0.0,936.0,0.0,0.0,28341.0,0,1,1,110.0,0,0.0,2,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1656.4042624422466,0.043005954646790114,0.058445512241708006,12322.17391304348,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +7682,2,52.0,3,0.0,7,112,2,52,21,9.0,2347.9548935255457,0.0,1049.8252167979383,0.0,0.0,18296.181750603253,71,71,1,4434,201707682,,,,,2.0,1.0,4.0,0.0,2.0,1.5,2471.5947108482646,0.0,780.0,0.0,0.0,53476.0,1,1,1,114.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3397.780110323484,0.18570979216532182,0.06353841181695498,35650.666666666664,9,5,9,9_1,9_0,9_0_0 +7683,0,61.0,3,0.0,2,111,1,53,56,9.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,49450.271693502604,70,71,2,4435,201707683,,,,,4.0,1.0,4.0,2.0,4.0,2.5,3478.158854291584,1200.0,0.0,0.0,0.0,95780.0,1,1,5,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1913.0274719588647,0.038685883948545066,0.019973141281675346,38312.0,9,5,9,9_0,9_4,9_0_1 +7684,1,34.0,3,18.0,5,111,2,67,67,4.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,18227.24,60,60,1,4436,201707684,,,370.0,,2.0,0.0,5.0,2.0,4.0,2.1,1108.1678397395237,1500.0,0.0,0.0,0.0,34786.0,1,1,3,88.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2391.2843399485805,0.1311928926128465,0.06874272235809177,16564.761904761905,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +7685,1,42.0,3,104.0,2,111,2,55,21,2.0,0.0,0.0,1345.929765125562,0.0,530.7965826129669,43037.420000000006,31,50,2,4437,201707685,,,300.0,,2.0,0.0,3.0,2.0,4.0,2.1,3105.426857200145,0.0,1000.0,300.0,0.0,22440.0,1,1,2,70.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1876.7263477385288,0.04360685068339432,0.08363308145002357,10685.714285714284,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7686,2,40.0,3,0.0,9,300,2,0,62,8.0,0.0,0.0,1886.9935307060377,0.0,0.0,21493.61119129575,0,43,1,4438,201707686,,,230.0,,1.0,0.0,5.0,0.0,1.0,1.0,2948.6170761292665,0.0,1402.0,0.0,0.0,30883.0,0,1,2,169.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1886.9935307060377,0.087793229062886,0.06110136744183006,30883.0,8,4,8,8_1,8_0,8_0_0 +7687,2,26.0,3,0.0,9,111,2,0,54,6.0,0.0,0.0,471.07541779394666,0.0,1061.5931652259337,31947.727849749775,0,71,8,4439,201707687,,,,430.0,1.0,0.0,3.0,0.0,1.0,1.0,2636.5020508180214,0.0,350.0,600.0,0.0,21653.0,0,1,3,70.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1532.6685830198803,0.04797425939735131,0.0707831978487914,21653.0,6,3,6,6_0,6_2,6_0_0 +7688,1,39.0,3,312.0,1,111,1,0,85,1.0,0.0,0.0,679.2127876844985,0.0,1265.6984754736804,15828.480000000001,0,71,1,444,201707688,,,504.0,,0.0,0.0,4.0,2.0,3.0,1.6,737.5818071531048,1220.0,0.0,0.0,0.0,8594.0,0,6,3,80.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1944.9112631581788,0.12287416499614484,0.22631036341147065,5371.25,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +7689,1,36.0,3,140.0,1,111,4,0,22,1.0,0.0,0.0,1211.3367886130059,0.0,0.0,11288.880000000001,0,60,2,4440,201707689,,,,410.0,1.0,0.0,3.0,1.0,2.0,1.3,548.6044734867148,0.0,900.0,0.0,0.0,8570.0,0,1,3,104.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1211.3367886130059,0.10730354017519947,0.14134618303535657,6592.307692307692,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +7690,2,65.0,1,0.0,3,111,6,77,74,10.0,0.0,0.0,1385.3997975322395,0.0,2411.1112691468547,64123.11042398308,20,12,1,4441,201707690,,,616.0,,0.0,3.0,6.0,0.0,2.0,1.5,1859.883618461426,2324.0572737976177,68.0,0.0,0.0,119183.0,6,5,1,139.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3796.5110666790943,0.0592065955874021,0.03185446805902767,79455.33333333333,10,5,10,10_1,10_3,10_0_1 +7691,2,42.0,2,0.0,5,112,5,0,46,8.0,0.0,1249.133687607096,672.964882562781,0.0,0.0,16314.6,0,20,1,4442,201707691,,,120.0,,1.0,1.0,7.0,0.0,1.0,1.0,1889.558984993671,0.0,500.0,0.0,0.0,29509.0,0,1,3,120.0,8,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1922.098570169877,0.11781463046411661,0.06513601173099315,29509.0,8,4,8,8_1,8_1,8_0_0 +7692,0,68.0,4,0.0,3,111,5,77,78,1.0,0.0,138.792631956344,1130.581002705472,159.23897478389006,0.0,11130.8858467513,30,71,1,4443,201707692,,,300.0,,0.0,2.0,3.0,0.0,2.0,1.5,3472.1598940000517,0.0,840.0,0.0,0.0,14182.0,6,5,5,42.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1428.6126094457059,0.1283467128416078,0.10073421304792736,9454.666666666666,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +7693,2,82.0,2,0.0,5,112,2,0,77,6.0,0.0,0.0,74.0261370819059,0.0,0.0,13441.273696501074,0,70,1,4444,201707693,,,352.0,,0.0,1.0,3.0,0.0,1.0,1.0,2746.0913974634514,0.0,55.0,0.0,0.0,20753.0,0,5,1,70.0,9,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,74.0261370819059,0.005507375175402894,0.0035670089665063315,20753.0,5,3,5,5_1,5_1,5_0_0 +7694,2,37.0,2,0.0,1,400,4,0,38,7.0,0.0,208.188947934516,954.2642034740235,141.54575536345783,0.0,54728.24,0,31,1,4446,201707694,,,682.0,,1.0,0.0,4.0,1.0,2.0,1.3,2410.207583524886,0.0,709.0,0.0,0.0,35942.0,0,1,2,90.0,0,1.0,2,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1303.9989067719973,0.023826801424127606,0.03628064400344993,27647.69230769231,8,4,8,8_1,8_1,8_1_0 +7695,2,28.0,3,0.0,99,111,2,56,43,8.0,0.0,0.0,1211.3367886130059,0.0,0.0,28544.08,30,33,2,4447,201707695,,,,895.0,2.0,0.0,2.0,0.0,2.0,1.5,7006.765042122714,0.0,900.0,0.0,0.0,45320.0,1,1,3,39.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1211.3367886130059,0.04243740868905237,0.026728525785812134,30213.333333333332,8,4,8,8_0,8_4,8_0_0 +7696,1,41.0,4,292.0,1,111,1,0,43,3.0,0.0,0.0,1238.255383915517,0.0,265.39829130648343,34747.73697444815,0,33,2,4448,201707696,,,,108.0,1.0,0.0,2.0,2.0,3.0,1.8,1166.692785299226,0.0,920.0,150.0,0.0,23950.0,0,1,3,42.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1503.6536752220004,0.04327342745594387,0.06278303445603342,13305.555555555555,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +7697,1,69.0,3,49.0,1,111,2,0,77,3.0,0.0,0.0,430.6975248401798,0.0,1595.928391722987,13194.820000000002,0,50,2,4449,201707697,,,160.0,100.0,0.0,0.0,3.0,0.0,1.0,1.0,2662.4002085322777,0.0,320.0,902.0,0.0,14529.0,0,5,3,65.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,2026.6259165631668,0.15359253984239016,0.13948832793469385,14529.0,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +7698,2,33.0,2,0.0,3,111,2,48,48,10.0,0.0,0.0,982.5287285416603,0.0,1663.1626255206295,40763.7458467513,30,31,1,445,201707698,,,460.0,,2.0,0.0,4.0,1.0,3.0,1.8,2667.981290414031,0.0,730.0,940.0,0.0,66060.0,1,1,2,90.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2645.69135406229,0.0649030480174368,0.040049823706665,36700.0,9,5,9,9_1,9_3,9_0_1 +7699,2,59.0,5,0.0,1,111,1,0,74,8.0,0.0,0.0,274.5696720856146,0.0,1150.059262328095,30159.016658454027,0,30,2,4450,201707699,,,600.0,,0.0,2.0,2.0,2.0,3.0,2.0,3874.097759533762,0.0,204.0,650.0,0.0,56270.0,0,5,3,55.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1424.6289344137097,0.047237247505361374,0.02531773475055464,28135.0,8,4,8,8_0,8_3,8_1_0 +7700,1,73.0,4,65.0,5,111,2,0,77,2.0,0.0,0.0,600.2846752460006,0.0,638.7252210776035,9877.28,0,71,2,4452,201707700,,,,378.0,0.0,2.0,4.0,0.0,1.0,1.0,2346.016140065068,0.0,446.0,361.0,0.0,13352.0,0,5,3,70.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1239.0098963236042,0.12544039414936137,0.09279582806497934,13352.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7701,2,51.0,2,0.0,7,111,4,46,38,6.0,0.0,0.0,2706.0559951358455,0.0,497.9797280552186,45467.740000000005,31,42,1,4453,201707701,,,160.0,,2.0,0.0,5.0,2.0,4.0,2.5,2128.0593408533837,480.0,1812.0,0.0,0.0,57879.0,1,1,1,120.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3204.035723191064,0.07046833036326555,0.05535748238896774,23151.6,6,3,6,6_1,6_3,6_0_0 +7702,2,72.0,3,0.0,6,211,2,78,78,5.0,1903.7472109666587,0.0,2543.807256087312,21.231863304518676,0.0,26923.506811689,70,71,1,4454,201707702,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2168.941254964411,0.0,1890.0,0.0,0.0,30873.0,5,5,1,120.0,2,2.0,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4468.78633035849,0.16598084200600272,0.1447473951465193,20582.0,5,3,5,5_1,5_1,5_0_0 +7703,1,25.0,2,230.0,99,300,2,0,38,7.0,0.0,0.0,403.7789295376686,0.0,1273.9117982711205,25207.32816118815,0,20,2,4455,201707703,,,,290.0,1.0,0.0,3.0,0.0,1.0,1.0,2726.2408421093414,0.0,300.0,720.0,0.0,26148.0,0,1,3,90.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1677.690727808789,0.066555674488022,0.06416134036288776,26148.0,7,4,7,7_0,7_1,7_0_0 +7704,2,27.0,2,0.0,7,120,2,52,62,5.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,39616.259999999995,50,60,1,4456,201707704,,,960.0,,2.0,0.0,4.0,1.0,3.0,1.8,2487.761183640346,1100.0,0.0,0.0,0.0,32734.0,1,1,3,96.0,0,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1753.6085159622926,0.044264867909345626,0.053571470518796745,18185.555555555555,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7705,1,43.0,5,192.0,5,111,4,0,52,2.0,0.0,0.0,1615.1157181506744,198.16405750884095,0.0,23843.041750603254,0,50,1,4458,201707705,,,170.0,,2.0,0.0,4.0,2.0,3.0,1.8,614.2282722760598,0.0,1200.0,0.0,0.0,20274.0,0,1,3,90.0,6,4.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1813.2797756595153,0.0760506899508171,0.08943867888228842,11263.333333333334,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +7706,2,62.0,3,0.0,6,112,5,77,75,7.0,0.0,763.359475759892,699.8834778652922,0.0,1238.525359430256,33131.5,60,50,1,4461,201707706,,,430.0,,0.0,4.0,4.0,0.0,2.0,1.5,1825.944287263955,0.0,520.0,700.0,0.0,36261.0,5,5,1,118.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2701.7683130554406,0.0815468153586599,0.07450893006413062,24174.0,7,4,7,7_1,7_0,7_0_0 +7707,2,56.0,2,0.0,6,111,5,64,52,6.0,0.0,69.396315978172,1615.1157181506744,180.47083808840873,0.0,30296.411191295745,71,50,1,4462,201707707,,,650.0,,2.0,3.0,5.0,0.0,2.0,1.5,1982.312107138619,0.0,1200.0,0.0,0.0,37080.0,1,1,1,109.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1864.9828722172551,0.0615578809134024,0.05029619396486664,24720.0,7,4,7,7_1,7_2,7_0_0 +7708,2,71.0,2,0.0,7,111,4,0,74,9.0,0.0,0.0,1483.2146011683692,0.0,0.0,27212.420000000002,0,20,2,4463,201707708,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2384.5716875272055,0.0,1102.0,0.0,0.0,34920.0,0,5,2,67.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1483.2146011683692,0.054505060599842614,0.04247464493609305,34920.0,9,5,9,9_0,9_2,9_0_0 +7709,2,46.0,4,0.0,1,111,5,0,33,7.0,0.0,693.9631597817199,2247.7027077596886,0.0,0.0,45499.64,0,30,1,4465,201707709,,,120.0,,1.0,0.0,5.0,2.0,3.0,2.0,813.563483735994,0.0,1670.0,0.0,0.0,46230.0,0,1,1,120.0,6,5.0,2,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2941.6658675414083,0.06465250862515413,0.0636311024776424,23115.0,6,3,6,6_1,6_2,6_1_0 +7710,2,37.0,2,0.0,9,221,2,52,00,5.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,37631.453371861426,31,50,1,4466,201707710,,,420.0,,2.0,0.0,5.0,1.0,3.0,1.8,1851.4910119436381,720.0,0.0,0.0,0.0,36395.0,1,4,3,100.0,1,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1147.8164831753188,0.030501518818127498,0.03153775197624176,20219.444444444445,5,3,5,5_1,5_1,5_0_0 +7711,2,32.0,2,0.0,4,111,2,46,38,7.0,0.0,0.0,787.3689125984538,0.0,153.93100895776038,21885.33073775338,31,31,1,4469,201707711,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2650.530572185502,0.0,585.0,87.0,0.0,50270.0,1,1,2,80.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,941.2999215562141,0.04301054129981326,0.01872488405721532,23938.095238095237,7,4,7,7_1,7_3,7_0_1 +7712,1,89.0,3,44.0,1,211,2,0,78,6.0,0.0,0.0,376.8603342351573,0.0,1415.4575536345783,11888.08,0,71,1,447,201707712,,,260.0,,0.0,1.0,3.0,1.0,2.0,1.5,1619.049456422819,0.0,280.0,800.0,0.0,31288.0,0,5,3,50.0,4,4.0,2,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1792.3178878697356,0.15076596791657992,0.057284514442269736,20858.666666666668,5,3,5,5_1,5_2,5_1_0 +7713,2,68.0,3,0.0,1,120,2,77,78,4.0,2379.684013708323,0.0,1022.9066214954271,123.8525359430256,0.0,20870.631191295746,70,70,1,4470,201707713,,,,,0.0,0.0,3.0,0.0,2.0,1.5,1881.7494804839048,0.0,760.0,0.0,0.0,26154.0,6,5,1,80.0,0,3.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3526.4431711467755,0.16896677148017952,0.1348337986979726,17436.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7714,2,66.0,3,0.0,9,300,4,78,72,7.0,0.0,0.0,4017.7669940945084,265.39829130648343,805.4142594489999,26961.582763171213,71,50,1,4471,201707714,,,324.0,,1.0,1.0,5.0,1.0,3.0,2.0,2181.195467512402,776.3345027021901,2664.0,0.0,0.0,46695.0,5,5,2,90.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5088.579544849992,0.1887344518883681,0.10897482695898901,23347.5,6,3,6,6_1,6_0,6_0_0 +7715,2,70.0,3,0.0,1,112,2,0,78,1.0,0.0,208.188947934516,403.7789295376686,230.01185246561897,0.0,13712.52,0,71,1,4472,201707715,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2955.151941590519,0.0,300.0,0.0,0.0,10300.0,0,5,1,70.0,8,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,841.9797299378035,0.06140226084904916,0.08174560484833045,10300.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +7716,2,69.0,3,0.0,1,300,5,71,71,5.0,0.0,69.396315978172,379.55219376540845,212.31863304518674,0.0,30506.971191295743,50,50,1,4474,201707716,,,90.0,,0.0,2.0,3.0,0.0,2.0,1.5,1689.74412918573,0.0,282.0,0.0,0.0,29220.0,5,5,1,65.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,661.2671427887672,0.02167593559656424,0.022630634592360272,19480.0,5,3,5,5_1,5_0,5_1_0 +7717,2,40.0,3,0.0,3,111,1,63,63,4.0,0.0,0.0,807.5578590753372,0.0,2561.978172078587,25623.58,50,71,2,4475,201707717,948.0,948.0,500.0,303.0,2.0,0.0,4.0,3.0,5.0,2.6,1362.9354071297691,0.0,600.0,1448.0,0.0,43450.0,4,1,3,79.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,3369.536031153924,0.13150137612128843,0.07754973604496948,16711.53846153846,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +7718,2,69.0,2,0.0,9,111,1,77,78,4.0,0.0,0.0,469.7294880288211,0.0,0.0,24321.682180565684,50,50,2,4476,201707718,,,,303.0,0.0,2.0,3.0,0.0,2.0,1.5,2833.821613761612,0.0,349.0,0.0,0.0,26087.0,5,5,3,71.0,7,5.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,469.7294880288211,0.019313199002499913,0.01800626703065976,17391.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +7719,2,50.0,3,0.0,4,111,1,0,37,9.0,0.0,0.0,242.26735772260116,0.0,0.0,16206.82,0,31,2,4478,201707719,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1812.8110511896866,0.0,180.0,0.0,0.0,41983.0,0,1,1,83.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,242.26735772260116,0.014948482041671417,0.005770606143500968,41983.0,10,5,10,10_0,10_2,10_0_1 +7720,2,70.0,3,0.0,1,112,6,75,74,9.0,0.0,1249.133687607096,524.9126083989692,0.0,0.0,22545.66,70,31,1,4479,201707720,,,300.0,,0.0,3.0,7.0,0.0,2.0,1.5,1554.2324162017476,0.0,390.0,0.0,0.0,51980.0,5,5,1,120.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1774.046296006065,0.07868682025747151,0.03412940161612284,34653.333333333336,9,5,9,9_1,9_0,9_1_0 +7721,2,24.0,3,0.0,99,300,4,0,63,7.0,0.0,0.0,473.76727732419783,61.9262679715128,0.0,64018.799999999996,0,50,1,448,201707721,,,,,2.0,0.0,4.0,0.0,2.0,1.5,266.4009806483207,0.0,352.0,0.0,0.0,36674.0,0,1,3,80.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,535.6935452957107,0.008367753617620304,0.014606902582093873,24449.333333333332,7,4,7,7_1,7_0,7_0_0 +7722,1,28.0,4,353.0,99,211,1,63,67,1.0,0.0,0.0,518.1829595733413,0.0,739.5765717740671,5627.690875301628,71,70,2,4480,201707722,,,577.0,,2.0,0.0,4.0,1.0,3.0,1.8,3145.0724902931897,0.0,385.0,418.0,0.0,14646.0,4,4,3,75.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1257.7595313474085,0.22349477951380836,0.08587734066280271,8136.666666666666,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +7723,2,90.0,1,0.0,5,111,2,0,72,10.0,1657.846529550132,0.0,1278.633276869284,0.0,0.0,28306.280315994114,0,12,1,4482,201707723,,,245.0,,0.0,6.0,10.0,0.0,1.0,1.0,2159.7820541763235,0.0,950.0,0.0,0.0,64391.0,0,5,1,280.0,5,4.0,1,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2936.4798064194156,0.10373951552935742,0.04560388573588569,64391.0,10,5,10,10_1,10_2,10_0_0 +7724,2,43.0,2,0.0,9,112,2,46,48,7.0,0.0,0.0,1884.3016711757866,0.0,0.0,43902.4,30,41,1,4484,201707724,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.3,2606.18250319606,0.0,1400.0,0.0,0.0,55825.0,1,1,2,120.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1884.3016711757866,0.04292024288366437,0.03375372451725547,24271.739130434784,7,4,7,7_1,7_0,7_0_0 +7725,1,37.0,4,247.0,99,120,2,0,55,3.0,1110.5192063972174,0.0,605.6683943065029,84.9274532180747,0.0,16078.88,0,50,1,4485,201707725,,,,198.0,1.0,0.0,4.0,1.0,2.0,1.3,382.1227337616135,0.0,450.0,0.0,0.0,19174.0,0,1,3,98.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1801.1150539217952,0.1120174448669183,0.09393527974975463,14749.23076923077,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +7726,2,62.0,1,0.0,1,211,2,46,75,9.0,0.0,0.0,769.8718256518214,0.0,2293.041236888017,21551.72,31,42,1,4486,201707726,,,307.0,,1.0,2.0,5.0,0.0,2.0,1.5,2306.7286760589936,0.0,572.0,1296.0,0.0,44873.0,1,5,1,148.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3062.9130625398384,0.14211919338873363,0.06825737219574886,29915.333333333332,8,4,8,8_1,8_1,8_1_0 +7727,2,46.0,3,0.0,8,111,2,52,46,5.0,1586.456009138882,0.0,1615.1157181506744,230.01185246561897,0.0,46268.91999999999,50,50,1,4487,201707727,,,,,2.0,0.0,6.0,2.0,4.0,2.3,2072.37476452931,0.0,1200.0,0.0,0.0,50719.0,1,1,2,165.0,5,4.0,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3431.5835797551754,0.07416606179169896,0.06765873892930017,22051.739130434784,6,3,6,6_1,6_2,6_0_0 +7728,2,50.0,1,0.0,99,120,2,56,37,10.0,788.4686365420245,0.0,1292.0925745205395,0.0,0.0,45353.545846751294,50,71,1,4488,201707728,,,,,2.0,3.0,4.0,0.0,2.0,1.5,2256.8660444313673,0.0,960.0,0.0,0.0,71331.0,4,1,1,72.0,0,0.0,3,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2080.561211062564,0.04587427889525414,0.02916770003312114,47554.0,10,5,10,10_1,10_0,10_0_0 +7729,2,65.0,4,0.0,5,111,1,0,77,3.0,0.0,0.0,839.8601734383507,0.0,169.8549064361494,14275.416722052929,0,60,2,4489,201707729,,,,340.0,0.0,0.0,2.0,0.0,1.0,1.0,4151.5146230598775,0.0,624.0,96.0,0.0,16881.0,0,5,3,54.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1009.7150798745001,0.0707310406087602,0.05981370060271904,16881.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7730,1,29.0,3,235.0,9,111,2,0,43,3.0,0.0,0.0,619.1276919577585,0.0,601.5694602946958,22225.371191295744,0,31,2,449,201707730,,,,176.0,1.0,0.0,3.0,1.0,2.0,1.3,1005.585323950869,0.0,460.0,340.0,0.0,20037.0,0,1,3,67.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1220.6971522524543,0.054923588980620636,0.06092215163210332,15413.076923076922,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +7731,1,35.0,3,297.0,99,211,2,0,56,3.0,0.0,0.0,577.403869238866,0.0,1641.930762216111,16902.739999999998,0,31,1,4490,201707731,,,382.0,,1.0,0.0,3.0,2.0,3.0,1.6,655.6359948033377,0.0,429.0,928.0,0.0,24544.0,0,1,2,80.0,3,4.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2219.334631454977,0.13130028808672306,0.09042269521899353,15340.0,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +7732,2,64.0,3,0.0,1,111,5,77,75,2.0,0.0,1249.133687607096,471.07541779394666,185.7788039145384,0.0,43653.7,71,71,1,4491,201707732,,,300.0,,0.0,3.0,5.0,0.0,2.0,1.5,1778.1629566546385,0.0,350.0,0.0,0.0,17400.0,5,5,1,90.0,6,4.0,3,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1905.987909315581,0.043661543221206474,0.10953953501813683,11600.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +7733,2,35.0,3,0.0,9,112,6,55,64,4.0,0.0,0.0,823.7090162568439,0.0,1273.9117982711205,28998.14,42,50,2,4492,201707733,,,,,2.0,0.0,3.0,2.0,4.0,2.3,1984.2573120661616,0.0,612.0,720.0,0.0,39795.0,1,1,2,80.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2097.6208145279643,0.07233639173160639,0.05271066250855545,17302.17391304348,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +7734,2,62.0,3,0.0,6,211,2,75,74,7.0,0.0,0.0,0.0,0.0,0.0,44780.5,30,71,1,4494,201707734,,,,,0.0,3.0,6.0,0.0,2.0,1.5,2566.8854619751996,0.0,0.0,0.0,0.0,38760.0,6,5,2,150.0,1,2.0,3,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,25840.0,7,4,7,7_1,7_1,7_0_0 +7735,1,48.0,4,256.0,1,112,2,0,42,2.0,0.0,0.0,2018.894647688343,0.0,0.0,12746.680000000002,0,10,1,4495,201707735,,,390.0,,1.0,2.0,4.0,0.0,1.0,1.0,1769.878787099011,0.0,1500.0,0.0,0.0,12185.0,0,4,3,65.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2018.894647688343,0.15838592070157426,0.16568688122185826,12185.0,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +7736,2,22.0,2,0.0,1,112,4,55,52,7.0,0.0,0.0,807.5578590753372,0.0,0.0,33944.26,31,50,2,4497,201707736,,,650.0,345.0,2.0,0.0,3.0,0.0,2.0,1.5,4069.016925120548,0.0,600.0,0.0,0.0,35941.0,1,1,3,71.0,9,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,807.5578590753372,0.023790704498355162,0.02246898692510885,23960.666666666668,7,4,7,7_0,7_0,7_1_0 +7737,1,38.0,3,30.0,9,112,5,0,52,4.0,0.0,0.0,1157.4995980079832,44.23304855108057,0.0,27889.025846751305,0,31,1,45,201707737,,,300.0,,1.0,0.0,6.0,2.0,3.0,1.6,104.1483605566685,0.0,860.0,0.0,0.0,27559.0,0,1,2,130.0,5,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1201.7326465590638,0.04308980360814752,0.0436058146724868,17224.375,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +7738,2,55.0,2,0.0,7,111,2,56,37,10.0,0.0,333.10231669522557,4118.545081284219,0.0,0.0,66697.92,50,60,1,450,201707738,,,880.0,,2.0,2.0,4.0,0.0,2.0,1.5,1409.479684869873,0.0,3060.0,0.0,0.0,78150.0,1,1,2,124.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4451.647397979445,0.06674342165362045,0.056962858579391484,52100.0,10,5,10,10_1,10_2,10_0_0 +7739,2,86.0,2,0.0,1,111,1,0,77,5.0,0.0,0.0,874.8543473316153,0.0,1150.059262328095,17816.64,0,41,8,4500,201707739,,,200.0,,0.0,2.0,3.0,0.0,1.0,1.0,3375.9511810085855,0.0,650.0,650.0,0.0,20191.0,0,5,5,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2024.9136096597103,0.11365294520514027,0.10028793074437672,20191.0,5,3,5,5_0,5_4,5_1_0 +7740,2,26.0,3,0.0,6,111,2,52,47,5.0,0.0,0.0,1356.6972032465665,0.0,0.0,20064.57119129575,41,31,2,4501,201707740,,,,500.0,2.0,0.0,2.0,0.0,2.0,1.5,3790.735102037251,0.0,1008.0,0.0,0.0,28674.0,1,2,3,40.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1356.6972032465665,0.06761655608344712,0.047314542904602304,19116.0,5,3,5,5_0,5_3,5_0_0 +7741,2,27.0,3,0.0,99,111,2,67,31,10.0,0.0,0.0,1453.6041463356069,0.0,0.0,32723.558318978856,43,30,2,4502,201707741,,,,415.0,2.0,0.0,2.0,0.0,2.0,1.5,2689.998883308523,0.0,1080.0,0.0,0.0,77871.0,1,1,3,41.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1453.6041463356069,0.04442072381512839,0.018666822646885323,51914.0,10,5,10,10_0,10_3,10_0_0 +7742,2,69.0,2,0.0,3,111,1,0,78,7.0,0.0,0.0,339.1743008116416,0.0,0.0,16281.439999999999,0,44,2,4505,201707742,,,,177.0,0.0,2.0,2.0,0.0,1.0,1.0,2524.2311456692064,0.0,252.0,0.0,0.0,26190.0,0,5,3,42.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,339.1743008116416,0.020831959630821455,0.012950526949661765,26190.0,7,4,7,7_0,7_3,7_0_1 +7743,2,53.0,3,0.0,4,400,2,0,56,5.0,0.0,0.0,969.0694308904046,99.08202875442048,0.0,13882.850875301629,0,50,1,4506,201707743,,,142.0,,1.0,1.0,3.0,0.0,1.0,1.0,1912.6584317868023,0.0,720.0,0.0,0.0,18778.0,0,1,3,65.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1068.151459644825,0.07694035391139485,0.056883132370051395,18778.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +7744,2,36.0,2,0.0,7,112,5,64,65,7.0,0.0,253.9905164801095,1085.0702649156453,0.0,2022.0051874575438,35798.759999999995,43,42,1,4508,201707744,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2513.36457526184,1949.0,0.0,0.0,0.0,51174.0,1,1,2,140.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3361.0659688532987,0.09388777624848736,0.06567917240890489,24368.571428571428,7,4,7,7_1,7_0,7_0_0 +7745,2,59.0,2,0.0,5,111,2,0,75,7.0,0.0,0.0,390.319631886413,0.0,1192.5229889371321,20503.907849749776,0,31,1,451,201707745,,,174.0,,0.0,3.0,6.0,0.0,1.0,1.0,1582.9238829337287,0.0,290.0,674.0,0.0,28087.0,0,5,1,100.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1582.842620823545,0.07719711932098162,0.056354990594351305,28087.0,8,4,8,8_1,8_3,8_0_0 +7746,2,67.0,3,0.0,1,111,2,75,75,9.0,0.0,0.0,1100.6587551247978,0.0,2051.0540049274314,37683.240000000005,33,33,1,4510,201707746,,,424.0,,0.0,2.0,6.0,0.0,2.0,1.5,1677.2191458851141,1977.0,0.0,0.0,0.0,49254.0,5,5,1,97.0,6,4.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3151.712760052229,0.08363698981436385,0.06398897064303871,32836.0,9,5,9,9_1,9_2,9_1_0 +7747,2,62.0,1,0.0,6,112,5,74,38,10.0,0.0,902.152107716236,1615.1157181506744,0.0,0.0,67298.33125530733,30,20,1,4511,201707747,,,,,1.0,2.0,7.0,0.0,2.0,1.5,1139.6620421297991,0.0,1200.0,0.0,0.0,71202.0,5,1,1,130.0,9,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2517.2678258669102,0.03740460987535098,0.03535389210790301,47468.0,10,5,10,10_1,10_1,10_0_0 +7748,2,51.0,4,0.0,3,111,6,74,37,4.0,634.5824036555529,0.0,1615.1157181506744,0.0,0.0,38546.64,71,50,2,4512,201707748,,,210.0,852.0,1.0,2.0,4.0,0.0,2.0,1.5,2927.3101330903564,0.0,1200.0,0.0,0.0,26520.0,7,1,3,98.0,5,4.0,3,8,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2249.6981218062274,0.058363014825837674,0.08483024592029514,17680.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +7749,1,48.0,5,193.0,99,0,1,0,54,4.0,0.0,0.0,1009.4473238441715,0.0,0.0,20344.201750603257,0,50,2,4513,201707749,,,360.0,301.0,2.0,0.0,4.0,3.0,4.0,2.3,261.1670484099969,0.0,750.0,0.0,0.0,39466.0,0,1,3,78.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1009.4473238441715,0.049618428691321784,0.02557764465221131,17159.13043478261,4,2,4_1,4_0_1,4_0_1,4_0_0_1 +7750,1,46.0,4,245.0,2,111,4,0,54,4.0,0.0,0.0,1453.6041463356069,122.08321400098238,0.0,27507.740315994113,0,42,1,4515,201707750,,,200.0,,1.0,0.0,4.0,2.0,3.0,1.6,516.762941181423,0.0,1080.0,0.0,0.0,27022.0,0,1,3,70.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1575.6873603365893,0.057281599369339,0.05831127823020462,16888.75,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +7751,2,71.0,3,0.0,5,111,1,75,75,7.0,0.0,0.0,484.5347154452023,0.0,79.61948739194503,29952.684177580944,50,50,8,4516,201707751,45.0,45.0,,,0.0,1.0,3.0,0.0,2.0,1.5,2325.779125932239,0.0,360.0,45.0,0.0,37702.0,5,5,1,70.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,564.1542028371473,0.018834846302669822,0.014963508642436668,25134.666666666668,7,4,7,7_0,7_2,7_0_0 +7752,2,57.0,1,0.0,1,300,2,43,34,10.0,1300.8939274938834,0.0,865.4328389757363,392.7894711335955,0.0,72535.76000000001,33,20,1,4517,201707752,,,587.0,,2.0,1.0,4.0,1.0,3.0,2.0,2111.6991897177277,0.0,643.0,0.0,0.0,78712.0,1,1,1,118.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2559.1162376032153,0.03528075307411427,0.032512402652749454,39356.0,9,5,9,9_1,9_0,9_1_0 +7753,2,47.0,1,0.0,4,111,2,48,38,10.0,0.0,0.0,1292.0925745205395,0.0,1910.8676974066807,52232.945846751296,50,31,1,4519,201707753,,,504.0,,2.0,0.0,6.0,1.0,3.0,1.8,1751.2984732642685,0.0,960.0,1080.0,0.0,75953.0,1,1,2,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3202.96027192722,0.061320689844385504,0.042170293101355054,42196.11111111111,10,5,10,10_1,10_4,10_0_1 +7754,2,45.0,3,0.0,1,112,6,38,46,6.0,0.0,485.77421184720396,1911.220266478298,159.23897478389006,0.0,50916.54,20,31,1,452,201707754,,,593.0,,2.0,0.0,4.0,2.0,4.0,2.3,2335.0496492671455,0.0,1420.0,0.0,0.0,51591.0,1,1,2,84.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2556.233453109392,0.05020438256624256,0.04954805010775895,22430.869565217392,6,3,6,6_1,6_0,6_1_0 +7755,2,37.0,3,0.0,2,211,2,0,67,4.0,0.0,0.0,662.1974444417765,0.0,2547.823596542241,20996.500000000004,0,43,1,4522,201707755,,,,,1.0,0.0,4.0,1.0,2.0,1.3,1161.1686955483733,0.0,492.0,1440.0,0.0,21880.0,0,1,2,100.0,2,3.0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3210.0210409840174,0.15288362541299821,0.1467102852369295,16830.76923076923,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +7756,2,24.0,4,0.0,4,111,1,56,63,6.0,0.0,0.0,646.0462872602698,33.61711689882124,0.0,32204.734571773035,50,43,2,4523,201707756,,,,332.0,2.0,0.0,3.0,1.0,3.0,1.8,2988.705329128738,0.0,480.0,0.0,0.0,39850.0,1,1,3,65.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,679.663404159091,0.021104456012340674,0.017055543391696137,22138.888888888887,6,3,6,6_0,6_3,6_0_1 +7757,2,89.0,3,0.0,4,300,2,71,71,2.0,2538.3296146222115,0.0,901.7729426341265,297.2460862632615,0.0,18484.039999999997,71,70,1,4526,201707757,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2189.4399930704876,0.0,670.0,0.0,0.0,18757.0,5,5,1,98.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3737.3486435195996,0.2021932782832974,0.19925087399475394,12504.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +7758,2,95.0,3,0.0,4,112,5,86,86,3.0,0.0,693.9631597817199,269.1859530251124,0.0,0.0,15000.976722052927,71,71,1,4527,201707758,,,40.0,,0.0,2.0,4.0,0.0,2.0,1.5,1248.6983052169558,0.0,200.0,0.0,0.0,23860.0,5,5,1,60.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,963.1491128068324,0.06420576010833398,0.04036668536491334,15906.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +7759,2,29.0,3,0.0,1,111,2,38,37,9.0,0.0,0.0,1615.1157181506744,0.0,0.0,46053.27672205293,20,20,1,4528,201707759,,,400.0,,2.0,0.0,4.0,0.0,3.0,2.0,3077.56175105339,0.0,1200.0,0.0,0.0,68799.0,1,1,1,80.0,9,7.0,5,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1615.1157181506744,0.035070592867874374,0.023475860378067624,34399.5,9,5,9,9_1,9_3,9_1_0 +7760,2,64.0,2,0.0,1,300,5,0,78,5.0,0.0,1318.5300035852679,584.1335180644938,0.0,0.0,20872.839999999997,0,50,1,453,201707760,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3136.7591621771444,0.0,434.0,0.0,0.0,19300.0,0,5,3,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1902.6635216497616,0.09115499000853558,0.09858360215801873,19300.0,5,3,5,5_1,5_0,5_1_0 +7761,1,35.0,3,338.0,1,111,1,0,68,4.0,0.0,0.0,572.0201501783638,0.0,350.32574452455816,18964.84,0,41,2,4530,201707761,,,,,1.0,0.0,4.0,3.0,4.0,1.9,632.7228936460393,0.0,425.0,198.0,0.0,31452.0,0,1,3,73.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,922.3458947029219,0.04863452023338567,0.029325508543269804,16553.684210526317,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +7762,2,57.0,4,0.0,5,112,4,0,64,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,19962.799999999996,0,50,2,4531,201707762,,,,,2.0,5.0,1.0,1.0,2.0,1.5,2576.5585134323323,0.0,1200.0,0.0,0.0,36150.0,0,1,3,32.0,10,3.0,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1615.1157181506744,0.08090627157265888,0.04467816647719708,24100.0,7,4,7,7_0,7_1,7_0_0 +7763,2,53.0,2,0.0,4,111,1,63,46,10.0,0.0,0.0,888.3136449828709,0.0,0.0,30735.375684870804,50,60,2,4532,201707763,,,,,3.0,0.0,4.0,1.0,3.0,2.0,3511.918205955605,0.0,660.0,0.0,0.0,84130.0,1,1,2,90.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,888.3136449828709,0.028901994043955506,0.010558821407142172,42065.0,10,5,10,10_0,10_3,10_0_1 +7764,2,59.0,2,0.0,5,112,4,77,74,9.0,0.0,0.0,386.2378535276136,0.0,463.9186134426239,27019.96127619228,50,31,1,4534,201707764,,,263.0,,0.0,1.0,4.0,0.0,2.0,1.5,1898.913774603481,447.1686735564615,102.0,0.0,0.0,49756.0,5,5,1,80.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,850.1564669702375,0.031464015002838804,0.017086511515600884,33170.666666666664,9,5,9,9_1,9_0,9_0_0 +7765,2,53.0,4,0.0,1,112,2,0,52,6.0,0.0,0.0,460.9739247563645,0.0,859.015030895252,17995.559999999998,0,50,1,4535,201707765,,,74.0,,1.0,1.0,4.0,0.0,1.0,1.0,2094.3754718502933,828.0,0.0,0.0,0.0,21577.0,0,1,3,85.0,8,3.0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1319.9889556516166,0.07335081295895303,0.0611757406336199,21577.0,6,3,6,6_1,6_1,6_1_0 +7766,2,18.0,3,0.0,1,111,4,0,84,1.0,0.0,0.0,403.7789295376686,0.0,0.0,9776.14,0,41,2,4537,201707766,,,,420.0,0.0,0.0,1.0,0.0,1.0,1.0,3430.3345320998114,0.0,300.0,0.0,0.0,2404.0,0,3,3,14.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,403.7789295376686,0.04130249050623954,0.16796128516541955,2404.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +7767,2,53.0,2,0.0,1,221,2,52,54,10.0,0.0,1179.737371628924,2197.9033064500427,0.0,0.0,43452.060000000005,50,31,2,4538,201707767,,,476.0,,3.0,1.0,5.0,1.0,3.0,2.0,3628.6555817419976,0.0,1633.0,0.0,0.0,85227.0,1,1,1,125.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,3377.6406780789666,0.07773257880245416,0.039631110775681024,42613.5,10,5,10,10_0,10_1,10_1_0 +7768,1,52.0,3,110.0,99,111,1,0,47,3.0,0.0,0.0,1615.1157181506744,0.0,0.0,14693.2630186695,0,41,2,454,201707768,,,,340.0,1.0,2.0,4.0,1.0,2.0,1.5,1752.9131083935554,0.0,1200.0,0.0,0.0,22997.0,0,1,3,80.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1615.1157181506744,0.10992219468871427,0.07023158316957318,15331.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +7769,2,72.0,1,0.0,2,400,6,75,75,8.0,1110.5192063972174,0.0,1534.3599322431405,0.0,0.0,20003.720627432485,50,42,2,4540,201707769,,,,,0.0,3.0,2.0,0.0,2.0,1.5,1978.0456611958693,0.0,1140.0,0.0,0.0,47840.0,5,5,3,46.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,2644.879138640358,0.13221935998312498,0.055285935172248286,31893.333333333332,9,5,9,9_0,9_0,9_0_1 +7770,1,25.0,2,301.0,1,300,5,56,68,6.0,0.0,693.9631597817199,2018.894647688343,0.0,0.0,56693.06238259149,43,50,1,4541,201707770,,,240.0,,2.0,0.0,5.0,3.0,5.0,2.4,2813.816025211525,0.0,1500.0,0.0,0.0,52066.0,1,1,3,150.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2712.8578074700627,0.04785167167655224,0.05210421018457463,21694.166666666668,6,3,6,6_1,6_0,6_1_0 +7771,2,44.0,2,0.0,1,111,2,43,38,10.0,0.0,0.0,2557.266553738568,0.0,0.0,58233.439999999995,31,12,2,4545,201707771,,,,,2.0,0.0,6.0,3.0,5.0,2.4,2281.290500758422,0.0,1900.0,0.0,0.0,101885.0,4,1,3,180.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2557.266553738568,0.04391405614606604,0.025099539223031535,42452.083333333336,10,5,10,10_0,10_3,10_1_0 +7772,2,60.0,3,0.0,6,112,2,0,64,8.0,0.0,832.755791738064,1670.2988385208223,53.079658261296686,0.0,22244.899999999998,50,50,1,4546,201707772,,,277.0,,1.0,2.0,5.0,0.0,2.0,1.5,1611.4694004835953,0.0,1241.0,0.0,0.0,41556.0,8,1,2,98.0,4,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2556.134288520183,0.11490877857487258,0.06151059506497697,27704.0,8,4,8,8_1,8_0,8_0_0 +7773,2,46.0,2,0.0,2,111,2,0,42,6.0,0.0,0.0,1938.1388617808093,0.0,0.0,31769.24,0,12,2,4547,201707773,,,468.0,,1.0,0.0,4.0,2.0,3.0,1.8,1466.4980907130994,0.0,1440.0,0.0,0.0,41466.0,0,1,3,80.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1938.1388617808093,0.061006774533505025,0.046740434615849355,23036.666666666668,6,3,6,6_0,6_3,6_0_1 +7774,2,67.0,4,0.0,1,300,5,0,75,1.0,0.0,832.755791738064,2826.45250676368,219.39592081335965,0.0,23759.21087530163,0,33,1,4548,201707774,,,612.0,,0.0,2.0,6.0,0.0,1.0,1.0,2007.997986867846,0.0,2100.0,0.0,0.0,8800.0,0,5,1,170.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3878.604219315104,0.16324634011085876,0.4407504794676254,8800.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +7775,2,52.0,3,0.0,1,111,2,34,37,8.0,0.0,0.0,837.1683139080995,0.0,0.0,110340.24,20,30,2,455,201707775,,,,2296.0,2.0,0.0,5.0,4.0,6.0,3.1,2537.3385075047468,0.0,622.0,0.0,0.0,94274.0,1,1,3,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,837.1683139080995,0.007587153280689796,0.008880161167533991,30410.967741935485,8,4,8,8_0,8_4,8_1_0 +7776,2,59.0,2,0.0,99,111,1,0,75,10.0,0.0,0.0,629.895130078763,0.0,0.0,33131.59665845403,0,31,2,4550,201707776,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3935.0939098656513,0.0,468.0,0.0,0.0,41031.0,0,5,1,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,629.895130078763,0.01901191592340708,0.015351688481361972,41031.0,10,5,10,10_0,10_3,10_0_0 +7777,2,45.0,2,0.0,9,111,2,42,37,10.0,0.0,0.0,2153.487624200899,0.0,0.0,35355.92758620689,31,31,1,4551,201707777,,,260.0,,2.0,0.0,6.0,0.0,2.0,1.5,1873.9980102454665,0.0,1600.0,0.0,0.0,78151.0,1,1,2,150.0,5,4.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2153.487624200899,0.060908814199546586,0.027555471128979783,52100.666666666664,10,5,10,10_1,10_2,10_0_0 +7778,1,35.0,3,15.0,9,111,2,52,62,5.0,0.0,0.0,646.0462872602698,0.0,1203.1389205893915,47059.759999999995,42,50,2,4552,201707778,,,620.0,436.0,2.0,0.0,3.0,2.0,4.0,2.1,670.2360548494504,0.0,480.0,680.0,0.0,41028.0,4,1,3,80.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1849.1852078496613,0.03929440370817151,0.045071297841709594,19537.142857142855,5,3,5,5_0,5_3,5_0_0 +7779,2,25.0,2,0.0,9,111,1,0,42,5.0,0.0,0.0,323.0231436301349,0.0,681.1889476866409,15916.08,0,31,2,4553,201707779,,,146.0,282.0,1.0,0.0,2.0,0.0,1.0,1.0,1412.648952400686,0.0,240.0,385.0,0.0,20020.0,0,1,3,51.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1004.2120913167757,0.06309418470608189,0.05016044412171707,20020.0,5,3,5,5_0,5_3,5_0_0 +7780,2,50.0,1,0.0,7,112,2,43,37,8.0,2252.767532977213,97.1548423694408,1938.1388617808093,0.0,0.0,84900.48000000001,33,31,1,4555,201707780,,,1305.0,,4.0,0.0,7.0,3.0,5.0,3.0,1615.6691497346035,0.0,1440.0,0.0,0.0,80658.0,1,1,1,170.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4288.061237127463,0.05050691394356619,0.05316349571186321,26886.0,7,4,7,7_1,7_0,7_0_0 +7781,1,40.0,3,342.0,9,111,1,85,53,2.0,0.0,0.0,847.935752029104,0.0,0.0,27242.02,60,41,2,4556,201707781,,,,,1.0,0.0,3.0,2.0,4.0,2.1,2796.0942924607443,0.0,630.0,0.0,0.0,26853.0,6,1,3,62.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,847.935752029104,0.031126023401682548,0.031576946785428224,12787.142857142857,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +7782,2,51.0,3,0.0,9,111,2,72,48,3.0,0.0,0.0,2472.543475588592,0.0,3658.781029894876,65773.24549213982,44,42,1,4557,201707782,,,600.0,,1.0,0.0,6.0,2.0,4.0,2.5,1776.1730038249232,1793.9524830513628,1095.0,1016.0,0.0,39382.0,6,1,2,125.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,6131.324505483468,0.09321912670732034,0.15568849996149176,15752.8,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +7783,2,77.0,3,0.0,5,211,1,77,78,4.0,0.0,0.0,860.0491199152341,0.0,1273.9117982711205,22227.964571802706,71,71,2,4558,201707783,720.0,720.0,,381.0,0.0,4.0,3.0,0.0,2.0,1.5,1628.979389957297,0.0,639.0,720.0,0.0,24693.0,5,5,3,66.0,3,3.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2133.9609181863543,0.0960034334809671,0.08641967027847383,16462.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +7784,2,38.0,3,0.0,99,111,2,56,56,2.0,0.0,0.0,2113.1097312471325,143.31507730550106,0.0,32049.365846751298,50,44,1,456,201707784,,,500.0,,2.0,2.0,4.0,2.0,4.0,2.3,1577.7326849797332,0.0,1570.0,0.0,0.0,25560.0,4,1,3,100.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2256.4248085526333,0.07040466321056263,0.088279530851042,11113.04347826087,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +7785,2,50.0,2,0.0,1,120,2,54,46,7.0,2379.684013708323,249.82673752141918,1009.4473238441715,212.31863304518674,0.0,40443.100000000006,30,30,1,4560,201707785,,,,,2.0,0.0,4.0,3.0,5.0,2.6,2967.6780978406614,0.0,750.0,0.0,0.0,61385.0,1,1,1,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3851.2767081191005,0.09522704016554369,0.06273970364289486,23609.615384615383,6,3,6,6_1,6_0,6_1_0 +7786,2,55.0,3,0.0,6,112,2,13,54,4.0,0.0,693.9631597817199,1211.3367886130059,92.0047409862476,0.0,33546.81087530163,50,50,1,4563,201707786,,,,,4.0,3.0,6.0,2.0,4.0,2.5,2129.283761189517,0.0,900.0,0.0,0.0,41788.0,1,1,1,180.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1997.3046893809733,0.059537840923396416,0.04779613021396031,16715.2,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7787,2,47.0,2,0.0,1,111,1,37,22,9.0,0.0,0.0,942.1508355878933,0.0,106.15931652259337,74307.90000000001,31,31,2,4566,201707787,,,,2300.0,2.0,0.0,4.0,1.0,3.0,1.8,2883.464479445628,0.0,700.0,60.0,0.0,65210.0,1,1,3,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1048.3101521104868,0.014107654127091288,0.016075910935600166,36227.777777777774,9,5,9,9_0,9_4,9_1_0 +7788,2,74.0,3,0.0,1,120,2,77,72,2.0,2221.038412794435,0.0,683.7323206837855,265.39829130648343,0.0,28816.839999999993,70,70,1,4567,201707788,,,203.0,,0.0,1.0,5.0,0.0,2.0,1.5,1664.36304746282,0.0,508.0,0.0,0.0,19685.0,5,5,1,124.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3170.1690247847037,0.11001098749150512,0.16104490854888004,13123.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7789,2,80.0,2,0.0,4,300,5,0,71,4.0,0.0,0.0,0.0,0.0,0.0,19331.98,0,50,1,4568,201707789,,,,,0.0,3.0,6.0,0.0,1.0,1.0,2157.3261661266574,0.0,0.0,0.0,0.0,17541.0,0,5,1,150.0,0,0.0,1,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0.0,0.0,0.0,17541.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +7790,2,63.0,3,0.0,4,111,2,0,75,4.0,0.0,0.0,1184.4181933104944,0.0,0.0,17711.677686990624,0,60,1,4571,201707790,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2324.8886840386335,0.0,880.0,0.0,0.0,17165.0,0,5,1,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1184.4181933104944,0.06687216277543598,0.06900193377864809,17165.0,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +7791,2,84.0,1,0.0,1,300,2,71,71,9.0,1445.2614243255216,0.0,692.5298341679043,106.15931652259337,1290.5145062338204,25460.366614085506,60,70,1,4572,201707791,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1561.8148075725553,1243.9200394991708,0.0,0.0,0.0,44184.0,5,5,1,120.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3534.4650812498394,0.13882223829779647,0.07999423051896251,29456.0,8,4,8,8_1,8_0,8_1_0 +7792,1,43.0,3,392.0,4,111,1,0,81,1.0,0.0,0.0,390.319631886413,0.0,406.94404666994126,24388.832234632628,0,30,2,4577,201707792,,,400.0,,1.0,0.0,4.0,2.0,3.0,1.8,637.3300037623866,0.0,290.0,230.0,0.0,15532.0,0,4,3,75.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,797.2636785563543,0.03268970284785608,0.051330393932291676,8628.888888888889,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7793,2,44.0,3,0.0,5,111,4,35,42,3.0,0.0,0.0,2301.539898364711,0.0,0.0,50549.08,20,20,2,4578,201707793,,,,600.0,2.0,0.0,4.0,2.0,4.0,2.1,3271.2945541651666,0.0,1710.0,0.0,0.0,30690.0,1,1,3,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2301.539898364711,0.04553079696731792,0.0749931540685797,14614.285714285714,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +7794,2,68.0,3,0.0,1,300,2,71,78,2.0,3172.912018277764,0.0,1884.3016711757866,0.0,0.0,19165.70121562799,44,71,1,4579,201707794,,,200.0,,0.0,0.0,3.0,0.0,2.0,1.5,1926.5323900426392,0.0,1400.0,0.0,0.0,18559.0,5,5,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5057.213689453551,0.26386791866137543,0.27249386763583977,12372.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7795,2,41.0,2,0.0,9,221,4,55,46,8.0,0.0,0.0,2826.45250676368,0.0,0.0,72496.84,44,31,1,4581,201707795,,,400.0,,2.0,0.0,6.0,3.0,5.0,2.4,3653.946330744849,0.0,2100.0,0.0,0.0,64054.0,1,1,2,118.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2826.45250676368,0.03898725112382388,0.04412608903056296,26689.166666666668,7,4,7,7_1,7_1,7_0_0 +7796,2,56.0,2,0.0,5,111,2,46,35,7.0,0.0,416.377895869032,888.3136449828709,0.0,1420.765519460708,33362.520000000004,20,41,1,4583,201707796,,,,,2.0,3.0,5.0,0.0,2.0,1.5,1717.7771375074974,0.0,660.0,803.0,0.0,39077.0,1,1,1,115.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2725.457060312611,0.08169218213470117,0.06974581109892292,26051.333333333332,7,4,7,7_1,7_3,7_0_0 +7797,2,56.0,3,0.0,6,112,5,77,78,1.0,0.0,555.170527825376,1453.6041463356069,0.0,0.0,20287.36,71,71,1,4585,201707797,,,500.0,,1.0,3.0,4.0,1.0,3.0,2.0,1851.1737971348891,0.0,1080.0,0.0,0.0,19990.0,5,5,1,90.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2008.7746741609828,0.09901607080275515,0.10048897819714772,9995.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +7798,2,82.0,3,0.0,3,111,6,0,86,6.0,1278.683543365939,0.0,349.9417389326461,155.70033089980362,0.0,15081.080000000002,0,70,1,4587,201707798,,,54.0,,0.0,4.0,4.0,0.0,1.0,1.0,1750.0526859576516,0.0,260.0,0.0,0.0,22413.0,0,5,1,70.0,6,4.0,1,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1784.3256131983887,0.1183155061307538,0.0796111905232851,22413.0,6,3,6,6_1,6_2,6_0_1 +7799,2,49.0,2,0.0,3,111,2,85,52,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,46811.6,50,50,1,459,201707799,,,412.0,,1.0,0.0,3.0,1.0,3.0,2.0,2315.1405657533683,1200.0,0.0,0.0,0.0,39158.0,6,1,2,65.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1913.0274719588647,0.040866526073854874,0.04885406486436653,19579.0,5,3,5,5_1,5_3,5_0_1 +7800,2,74.0,2,0.0,1,112,2,77,77,3.0,0.0,0.0,672.964882562781,0.0,2450.5108897298637,23471.920000000002,70,50,1,4590,201707800,,,272.0,,0.0,3.0,6.0,0.0,2.0,1.5,1399.5630099752088,0.0,500.0,1385.0,0.0,22045.0,5,5,1,100.0,8,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3123.4757722926447,0.13307287057439887,0.1416863584619027,14696.666666666666,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +7801,2,64.0,2,0.0,4,111,1,0,75,6.0,1427.810408224994,0.0,349.9417389326461,0.0,424.6372660903735,24122.879999999997,0,42,2,4591,201707801,900.0,900.0,160.0,,0.0,0.0,3.0,0.0,1.0,1.0,2857.5872280598055,0.0,260.0,240.0,0.0,23477.0,0,5,1,64.0,7,4.0,1,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2202.3894132480136,0.09129877581980318,0.0938105129807051,23477.0,6,3,6,6_0,6_2,6_0_1 +7802,2,54.0,3,0.0,6,111,2,54,21,9.0,1903.7472109666587,0.0,1009.4473238441715,106.15931652259337,0.0,52144.6258467513,50,50,1,4592,201707802,,,350.0,,4.0,2.0,5.0,2.0,4.0,2.5,2842.72348691997,0.0,750.0,0.0,0.0,86683.0,1,1,2,100.0,8,6.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3019.3538513334233,0.05790345222165467,0.034832133767098775,34673.2,9,5,9,9_1,9_2,9_0_0 +7803,2,40.0,3,0.0,4,112,4,0,37,6.0,0.0,0.0,2215.400393396675,26.539829130648343,0.0,25536.820000000003,0,30,1,4593,201707803,,,280.0,,1.0,0.0,4.0,1.0,2.0,1.3,592.1983246740265,0.0,1646.0,0.0,0.0,29357.0,0,1,2,80.0,8,1.0,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2241.9402225273234,0.08779245898774096,0.07636816508932531,22582.30769230769,6,3,6,6_1,6_1,6_0_1 +7804,2,50.0,4,0.0,2,111,2,0,47,7.0,0.0,0.0,1169.1367656864318,0.0,2178.661310241581,42429.9,0,31,1,4594,201707804,,,1000.0,,1.0,0.0,5.0,2.0,3.0,2.0,600.9496380245042,2100.0,0.0,0.0,0.0,47300.0,0,1,2,140.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3347.7980759280126,0.07890186109154187,0.07077797200693473,23650.0,6,3,6,6_1,6_3,6_0_1 +7805,2,61.0,2,0.0,9,112,6,46,46,10.0,0.0,277.585263912688,1635.3046646275577,247.7050718860512,0.0,56516.46,20,42,1,4595,201707805,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1537.3174534565655,0.0,1215.0,0.0,0.0,64048.0,1,1,2,154.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2160.595000426297,0.03822948217963929,0.033733996384372605,42698.666666666664,10,5,10,10_1,10_0,10_0_0 +7806,2,36.0,3,0.0,1,300,2,47,00,7.0,0.0,0.0,861.3950496803596,297.2460862632615,0.0,29983.256860383284,43,31,2,4597,201707806,,,510.0,570.0,2.0,0.0,4.0,1.0,3.0,1.8,1091.8346491894558,0.0,640.0,0.0,0.0,43647.0,1,4,3,105.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,1158.641135943621,0.03864293800165943,0.02654572217892687,24248.333333333332,7,4,7,7_0,7_0,7_1_0 +7807,2,47.0,3,0.0,9,300,4,63,63,5.0,63.458240365555284,0.0,2691.859530251124,123.8525359430256,0.0,37727.98,43,50,1,4598,201707807,,,253.0,,2.0,0.0,5.0,2.0,4.0,2.1,2281.1605393205427,0.0,2000.0,0.0,0.0,37626.0,1,1,2,145.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2879.170306559705,0.07631392686700175,0.07652076507095372,17917.142857142855,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7808,2,70.0,3,0.0,6,111,4,77,75,5.0,0.0,0.0,1274.5954875739071,123.8525359430256,0.0,16649.379999999997,70,70,1,4599,201707808,,,460.0,,0.0,3.0,4.0,0.0,2.0,1.5,1774.5009085613847,0.0,947.0,0.0,0.0,29090.0,5,5,1,96.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1398.4480235169326,0.08399399998780332,0.04807315309442876,19393.333333333332,5,3,5,5_1,5_4,5_0_0 +7809,2,61.0,2,0.0,8,111,2,43,34,10.0,0.0,0.0,760.4503172959425,0.0,1811.7856686522603,91111.08,33,10,2,46,201707809,,,,,2.0,1.0,3.0,1.0,3.0,2.0,2335.8498005296447,0.0,565.0,1024.0,0.0,145820.0,1,1,1,90.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2572.2359859482026,0.028231868022508377,0.017639802399864235,72910.0,10,5,10,10_0,10_2,10_0_0 +7810,2,31.0,3,0.0,7,112,6,52,63,4.0,1887.8826508752697,0.0,904.4648021643776,0.0,0.0,25847.219999999998,42,43,1,460,201707810,,,430.0,,2.0,0.0,5.0,1.0,3.0,1.8,2221.7343106702747,0.0,672.0,0.0,0.0,31903.0,1,1,2,87.0,7,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2792.3474530396475,0.10803279629452017,0.08752617161519755,17723.888888888887,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7811,2,34.0,3,0.0,4,111,1,52,48,6.0,0.0,0.0,532.9881869897225,0.0,141.54575536345783,27235.42,50,60,2,4600,201707811,,,,617.0,2.0,0.0,3.0,2.0,4.0,2.1,1040.1627190113647,0.0,396.0,80.0,0.0,46365.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,674.5339423531804,0.024766790537953165,0.014548343413203501,22078.571428571428,6,3,6,6_0,6_4,6_0_1 +7812,2,30.0,1,0.0,1,111,2,0,37,10.0,0.0,0.0,92.86915379366377,0.0,0.0,28771.839999999997,0,20,2,4601,201707812,,,,850.0,1.0,0.0,2.0,0.0,1.0,1.0,5557.047628333064,0.0,69.0,0.0,0.0,41682.0,0,1,3,36.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,92.86915379366377,0.0032277794466278064,0.002228039772411683,41682.0,10,5,10,10_0,10_4,10_1_0 +7813,2,50.0,5,0.0,1,111,2,0,46,3.0,0.0,0.0,565.290501352736,0.0,1238.525359430256,24006.99087530163,0,60,2,4602,201707813,,,,544.0,1.0,0.0,3.0,1.0,2.0,1.5,1178.7686278827841,0.0,420.0,700.0,0.0,20871.0,0,1,3,78.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1803.8158607829919,0.07513710777633342,0.0864269014797083,13914.0,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +7814,1,24.0,3,207.0,1,111,2,84,33,5.0,0.0,0.0,506.62593179745375,0.0,944.0865677713518,37484.399999999994,20,20,2,4603,201707814,,,,243.0,1.0,0.0,3.0,0.0,2.0,1.5,8961.015450250576,910.0,0.0,0.0,0.0,30139.0,3,1,3,65.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1450.7124995688055,0.038701766590069624,0.04813406216426575,20092.666666666668,5,3,5,5_0,5_3,5_1_0 +7815,2,35.0,4,0.0,99,111,2,0,54,5.0,0.0,0.0,942.1508355878933,0.0,0.0,32156.219999999998,0,43,2,4604,201707815,,,300.0,,1.0,0.0,2.0,0.0,1.0,1.0,5457.740549339621,0.0,700.0,0.0,0.0,21180.0,0,1,3,48.0,6,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,942.1508355878933,0.029299178684182824,0.044483042284603085,21180.0,5,3,5,5_0,5_2,5_0_0 +7816,2,51.0,2,0.0,7,221,2,37,43,10.0,0.0,0.0,1345.929765125562,0.0,2123.1863304518674,48640.01672205293,31,31,1,4605,201707816,,,200.0,,3.0,0.0,6.0,2.0,4.0,2.5,1516.8550215061177,0.0,1000.0,1200.0,0.0,236506.0,1,1,1,180.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3469.1160955774294,0.07132226362916862,0.014668194868533692,94602.4,10,5,10,10_1,10_1,10_0_0 +7817,2,50.0,1,0.0,4,111,2,0,46,3.0,0.0,277.585263912688,807.5578590753372,0.0,1305.7595932278984,33391.2,0,20,1,4607,201707817,,,156.0,,1.0,0.0,3.0,0.0,1.0,1.0,2532.864432673391,0.0,600.0,738.0,0.0,19734.0,0,1,1,120.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2390.9027162159236,0.07160277906202604,0.1211565174934592,19734.0,5,3,5,5_1,5_3,5_0_1 +7818,2,74.0,4,0.0,2,400,2,0,74,5.0,0.0,0.0,3095.6384597887923,0.0,0.0,15315.88,0,41,1,4608,201707818,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2164.4417099295697,0.0,2300.0,0.0,0.0,20680.0,0,5,3,80.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3095.6384597887923,0.20211952952026213,0.1496923820013923,20680.0,5,3,5,5_1,5_1,5_0_1 +7819,2,30.0,4,0.0,99,111,2,55,22,9.0,0.0,0.0,296.1045483276236,0.0,495.4101437721024,47694.18,12,31,2,4609,201707819,,,500.0,,2.0,0.0,3.0,0.0,2.0,1.5,2561.2654288616586,0.0,220.0,280.0,0.0,58310.0,1,1,3,85.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,791.5146920997261,0.016595624290001967,0.013574252994335895,38873.333333333336,9,5,9,9_0,9_3,9_0_0 +7820,1,18.0,2,175.0,99,111,1,0,84,1.0,0.0,0.0,222.07841124571772,0.0,0.0,2329.94,0,41,2,4610,201707820,,,,78.0,0.0,0.0,1.0,0.0,1.0,1.0,4017.654720213925,0.0,165.0,0.0,0.0,3303.0,0,3,3,15.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,222.07841124571772,0.09531507731774969,0.0672353651970081,3303.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7821,2,45.0,3,0.0,5,111,2,0,54,7.0,0.0,0.0,503.3777321569602,0.0,1362.3778953732817,34899.78,0,43,2,4612,201707821,,,352.0,420.0,2.0,0.0,4.0,1.0,2.0,1.5,1757.1701252506248,0.0,374.0,770.0,0.0,36363.0,0,1,3,80.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1865.7556275302418,0.05346038363365734,0.05130917766769083,24242.0,7,4,7,7_0,7_2,7_0_0 +7822,2,44.0,3,0.0,9,111,4,46,38,10.0,0.0,0.0,1048.4792870328129,0.0,0.0,38238.3,42,43,1,4613,201707822,,,420.0,,2.0,0.0,6.0,1.0,3.0,1.8,368.578265035386,0.0,779.0,0.0,0.0,137306.0,1,1,1,160.0,5,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1048.4792870328129,0.027419610365335613,0.007636077717163218,76281.11111111111,10,5,10,10_1,10_2,10_0_0 +7823,2,43.0,2,0.0,3,111,1,0,33,9.0,0.0,0.0,623.1654812531352,0.0,868.7370735432224,38845.119999999995,0,12,2,4614,201707823,491.0,491.0,,,1.0,0.0,4.0,0.0,1.0,1.0,3867.7539361606528,0.0,463.0,491.0,0.0,38881.0,0,1,1,67.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1491.9025547963577,0.03840643444521108,0.0383709923817895,38881.0,9,5,9,9_0,9_3,9_0_1 +7824,2,81.0,2,0.0,4,112,2,77,74,8.0,0.0,0.0,1473.1632898277674,0.0,3435.241291027199,87401.30614720739,41,60,1,4615,201707824,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1892.238726666446,828.0901362156694,752.0,1456.0,0.0,43303.0,5,5,1,70.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4908.404580854966,0.056159396206137795,0.11335022009687473,28868.666666666668,8,4,8,8_1,8_0,8_0_1 +7825,2,43.0,3,0.0,3,211,2,0,63,6.0,1586.456009138882,0.0,969.0694308904046,44.23304855108057,0.0,15187.618002984746,0,50,1,4618,201707825,,,360.0,,1.0,1.0,3.0,0.0,1.0,1.0,3507.243405533031,0.0,720.0,0.0,0.0,22081.0,0,1,2,80.0,1,3.0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2599.7584885803676,0.17117618365628173,0.1177373528635645,22081.0,6,3,6,6_1,6_1,6_0_1 +7826,2,60.0,3,0.0,2,111,2,85,75,2.0,0.0,0.0,673.6454697526583,0.0,1255.3238978058635,14836.420315994115,71,70,1,462,201707826,,,165.0,362.0,0.0,3.0,5.0,0.0,2.0,1.5,2622.58610273764,1210.0,0.0,0.0,0.0,16124.0,6,5,3,70.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1928.9693675585218,0.1300158209645108,0.11963342641767066,10749.333333333334,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +7827,1,47.0,4,129.0,3,111,2,52,37,5.0,0.0,0.0,1934.3181199289857,0.0,3604.5603673358364,38857.30468758888,60,31,1,4620,201707827,,,,830.0,2.0,0.0,5.0,2.0,4.0,2.1,2267.6664655134746,3474.4164849404256,0.0,0.0,0.0,39808.0,1,4,3,111.0,5,4.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,5538.878487264822,0.14254407329065089,0.13913983338185346,18956.190476190477,5,3,5,5_1,5_2,5_0_1 +7828,2,56.0,2,0.0,5,111,2,54,46,8.0,0.0,0.0,1453.6041463356069,0.0,0.0,67157.45182880123,20,30,2,4621,201707828,,,,,2.0,3.0,3.0,0.0,2.0,1.5,2670.2222455200044,0.0,1080.0,0.0,0.0,45387.0,1,4,2,65.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1453.6041463356069,0.021644718594165186,0.03202688316777066,30258.0,8,4,8,8_0,8_3,8_0_0 +7829,2,74.0,3,0.0,1,112,2,0,78,2.0,4759.368027416646,0.0,742.9532303493102,159.23897478389006,0.0,30449.37087530163,0,50,1,4622,201707829,,,150.0,,0.0,4.0,5.0,0.0,1.0,1.0,2567.5253765369466,0.0,552.0,0.0,0.0,13449.0,0,5,5,109.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5661.560232549846,0.1859335700476525,0.42096514481001157,13449.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7830,2,69.0,3,0.0,9,111,2,74,74,7.0,0.0,291.4645271083224,3230.231436301349,102.62067263850693,0.0,25038.799999999996,60,50,1,4623,201707830,,,287.0,,0.0,1.0,3.0,0.0,2.0,1.5,1618.6179732791866,0.0,2400.0,0.0,0.0,38453.0,5,5,1,120.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3624.316636048178,0.14474801652028768,0.09425315673804847,25635.333333333332,7,4,7,7_1,7_3,7_0_0 +7831,2,63.0,3,0.0,2,111,2,56,78,4.0,0.0,0.0,484.5347154452023,0.0,1592.3897478389006,25038.148165743893,60,70,2,4624,201707831,,,300.0,342.0,1.0,2.0,4.0,0.0,2.0,1.5,2499.372679258588,0.0,360.0,900.0,0.0,26076.0,1,5,3,88.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2076.924463284103,0.08295040230354019,0.07964889029314706,17384.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +7832,2,88.0,3,0.0,1,400,6,0,86,2.0,2379.684013708323,0.0,689.1160397442877,123.8525359430256,0.0,9264.8,0,71,1,4625,201707832,,,,,0.0,1.0,3.0,0.0,1.0,1.0,1814.6164503755435,0.0,512.0,0.0,0.0,10660.0,0,5,1,71.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3192.6525893956364,0.34460027085265055,0.2994983667350503,10660.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +7833,2,66.0,1,0.0,1,111,1,0,45,8.0,0.0,0.0,33.64824412813905,0.0,0.0,14367.84,0,31,2,4626,201707833,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2069.358198906439,0.0,25.0,0.0,0.0,31717.0,0,1,3,65.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,33.64824412813905,0.0023419138943737575,0.001060889873825994,31717.0,8,4,8,8_0,8_3,8_1_0 +7834,2,70.0,3,0.0,4,112,2,0,77,5.0,0.0,0.0,1028.2903405559293,530.7965826129669,0.0,22576.26,0,50,1,4627,201707834,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2604.8720968985845,0.0,764.0,0.0,0.0,20847.0,0,5,4,65.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1559.0869231688962,0.06905868922349832,0.0747871119666569,20847.0,5,3,5,5_1,5_0,5_0_1 +7835,1,61.0,4,188.0,5,111,1,0,77,3.0,0.0,0.0,1065.976373979445,0.0,0.0,20147.82995415666,0,71,2,4628,201707835,,,,194.0,2.0,2.0,4.0,1.0,5.0,2.8,1123.2134378122266,0.0,792.0,0.0,0.0,38148.0,0,5,3,85.0,8,7.0,5,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1065.976373979445,0.05290775117741777,0.02794317851471755,13624.285714285716,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7836,1,45.0,3,167.0,7,112,2,0,43,2.0,0.0,0.0,873.5084175664897,0.0,872.2757174273089,26812.74,0,44,1,4629,201707836,,,825.0,,1.0,0.0,4.0,2.0,3.0,1.8,551.0925386866073,0.0,649.0,493.0,0.0,22710.0,0,1,2,95.0,9,2.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1745.7841349937985,0.06511024740454718,0.07687292536300301,12616.666666666666,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +7837,1,28.0,2,212.0,1,111,4,84,37,9.0,0.0,0.0,1227.4879457945126,0.0,0.0,20498.520000000004,41,30,2,463,201707837,,,,563.0,1.0,0.0,2.0,0.0,2.0,1.5,5893.293637266936,0.0,912.0,0.0,0.0,48556.0,3,4,3,35.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1227.4879457945126,0.05988178394315845,0.02527984071576144,32370.666666666668,9,5,9,9_0,9_4,9_1_0 +7838,1,39.0,3,363.0,1,111,2,85,63,2.0,0.0,0.0,1978.5167547345761,0.0,1238.525359430256,23906.22,50,71,1,4630,201707838,,,1000.0,11.0,1.0,0.0,5.0,4.0,6.0,3.1,1516.865998769217,0.0,1470.0,700.0,0.0,37476.0,6,1,3,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3217.042114164832,0.13456925077092205,0.08584272905765909,12089.032258064515,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +7839,2,50.0,2,0.0,7,111,2,55,63,6.0,2221.038412794435,0.0,646.0462872602698,0.0,0.0,37858.28,50,50,1,4631,201707839,,,440.0,,3.0,0.0,4.0,2.0,4.0,2.5,2330.6567549905585,0.0,480.0,0.0,0.0,52360.0,1,1,2,110.0,7,5.0,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2867.0847000547046,0.07573203801268058,0.054757156227171595,20944.0,5,3,5,5_1,5_2,5_0_0 +7840,2,27.0,3,0.0,9,111,1,55,54,10.0,0.0,0.0,336.4286040907854,0.0,0.0,29240.999999999996,60,31,2,4632,201707840,,,,759.0,2.0,0.0,2.0,0.0,2.0,1.5,3106.801211446681,0.0,249.95999999999998,0.0,0.0,61690.0,1,1,3,45.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,336.4286040907854,0.011505372733175524,0.005453535485342607,41126.666666666664,10,5,10,10_0,10_4,10_0_0 +7841,2,69.0,3,0.0,6,111,2,75,74,8.0,0.0,0.0,1857.3830758732754,0.0,0.0,33985.24,31,10,1,4633,201707841,,,267.0,,0.0,1.0,4.0,0.0,2.0,1.5,7187.667970540026,0.0,1380.0,0.0,0.0,42358.0,5,5,1,105.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1857.3830758732754,0.0546526396716126,0.04384964058438254,28238.666666666668,8,4,8,8_1,8_3,8_0_0 +7842,2,70.0,3,0.0,5,111,2,77,75,7.0,0.0,0.0,1039.0577786769338,0.0,2034.7202333497064,29273.32,70,70,1,4635,201707842,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1646.1638989824207,0.0,772.0,1150.0,0.0,35444.0,5,5,1,120.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3073.77801202664,0.10500271277827866,0.08672209716811421,23629.333333333332,6,3,6,6_1,6_2,6_0_0 +7843,2,32.0,4,0.0,1,111,4,0,64,2.0,0.0,0.0,1615.1157181506744,0.0,690.0355573968569,25360.14,0,41,2,4636,201707843,,,,910.0,1.0,0.0,2.0,1.0,2.0,1.3,3341.910480851632,0.0,1200.0,390.0,0.0,18656.0,0,4,3,40.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2305.1512755475314,0.09089663052126414,0.12356085310610695,14350.76923076923,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +7844,2,60.0,3,0.0,2,111,2,46,75,10.0,0.0,0.0,450.88647131706324,0.0,1291.6050176915528,28600.416770814092,71,70,1,4638,201707844,,,380.0,,1.0,4.0,5.0,0.0,2.0,1.5,2057.2980282225953,0.0,335.0,730.0,0.0,69791.0,1,5,1,90.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1742.491489008616,0.060925388009967,0.02496728072399903,46527.333333333336,10,5,10,10_1,10_2,10_0_1 +7845,2,26.0,4,0.0,99,112,2,52,52,6.0,0.0,0.0,163.67914719610044,0.0,305.01258343382136,42268.66,43,30,1,464,201707845,,,90.0,,2.0,0.0,4.0,1.0,3.0,1.8,4211.373572578515,294.0,0.0,0.0,0.0,40817.0,1,1,3,100.0,8,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,468.69173062992184,0.011088398133035724,0.011482757934927158,22676.11111111111,6,3,6,6_1,6_1,6_0_0 +7846,2,47.0,2,0.0,9,111,2,48,46,7.0,0.0,0.0,965.3729293810823,0.0,1798.951767599477,33403.71,50,44,1,4640,201707846,,,320.0,,2.0,1.0,6.0,2.0,4.0,2.3,2213.53766277857,1734.0,0.0,0.0,0.0,60514.0,1,1,2,141.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2764.3246969805596,0.08275502023519422,0.04568074655419505,26310.434782608696,7,4,7,7_1,7_2,7_0_0 +7847,2,54.0,3,0.0,6,221,2,56,67,4.0,3172.912018277764,277.585263912688,1550.5110894246473,414.02133443811414,0.0,26395.079999999998,50,50,1,4641,201707847,,,400.0,,2.0,4.0,6.0,1.0,3.0,2.0,946.8996346305302,0.0,1152.0,0.0,0.0,41951.0,1,1,1,180.0,1,2.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,5415.029706053214,0.20515299465101883,0.1290798718994354,20975.5,5,3,5,5_1,5_1,5_0_0 +7848,1,46.0,4,91.0,3,111,1,56,67,1.0,0.0,0.0,538.3719060502248,0.0,707.7287768172891,17252.43087530163,71,71,2,4642,201707848,,,600.0,181.0,2.0,2.0,4.0,1.0,3.0,2.0,3020.8557824965696,0.0,400.0,400.0,0.0,9532.0,4,4,3,62.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1246.100682867514,0.07222754241846675,0.13072814549596246,4766.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7849,2,75.0,3,0.0,8,112,6,78,78,6.0,1580.1101851023266,0.0,1593.5808419086654,226.47320858153253,0.0,23315.38482419792,70,71,1,4644,201707849,,,284.0,,0.0,1.0,5.0,0.0,2.0,1.5,2008.921574630504,0.0,1184.0,0.0,0.0,32264.0,5,5,1,144.0,7,0.0,3,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3400.1642355925246,0.14583350269490972,0.10538570033450671,21509.333333333332,6,3,6,6_1,6_0,6_0_0 +7850,2,48.0,3,0.0,1,112,2,0,34,4.0,2379.684013708323,416.377895869032,969.0694308904046,0.0,0.0,48613.15087530163,0,31,1,4645,201707850,,,200.0,,3.0,0.0,6.0,2.0,3.0,2.0,1093.8499211256724,0.0,720.0,0.0,0.0,36740.0,0,1,1,160.0,9,3.0,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3765.1313404677594,0.07745088052666567,0.10248043931594338,18370.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7851,2,57.0,3,0.0,1,300,2,0,78,4.0,2221.038412794435,0.0,1760.476132784235,0.0,0.0,13431.0,0,71,1,4646,201707851,,,,,0.0,4.0,4.0,0.0,1.0,1.0,2309.0661423217553,0.0,1308.0,0.0,0.0,16580.0,0,4,1,97.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3981.5145455786696,0.2964421521538731,0.24013959864768816,16580.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7852,2,46.0,4,0.0,4,111,2,56,65,4.0,0.0,0.0,1593.5808419086654,0.0,2625.6737619921428,55107.279999999984,50,50,1,4647,201707852,,,750.0,,3.0,0.0,5.0,3.0,5.0,2.8,1872.2661386469547,0.0,1184.0,1484.0,0.0,49461.0,1,1,2,90.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4219.254603900808,0.07656437777188077,0.08530467649058467,17664.64285714286,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +7853,2,30.0,2,0.0,4,111,2,0,46,6.0,0.0,0.0,403.7789295376686,0.0,1698.549064361494,28094.27665845403,0,30,2,4649,201707853,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1233.5382502873488,0.0,300.0,960.0,0.0,28960.0,0,1,2,48.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2102.3279938991627,0.07483118428203196,0.07259419868436336,22276.923076923074,6,3,6,6_0,6_4,6_0_1 +7854,2,32.0,3,0.0,8,120,2,42,42,6.0,0.0,1644.6926886826764,1523.592494122136,0.0,0.0,54818.74,30,30,1,4650,201707854,,,657.0,,2.0,0.0,6.0,2.0,4.0,2.1,2895.7527164192193,0.0,1132.0,0.0,0.0,43575.0,1,1,2,230.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3168.2851828048124,0.05779565861610122,0.07270878216419535,20750.0,5,3,5,5_1,5_0,5_0_0 +7855,1,29.0,3,249.0,9,111,1,0,54,4.0,0.0,0.0,327.06093292551157,0.0,0.0,26778.179999999997,0,31,2,4652,201707855,,,,270.0,1.0,0.0,4.0,2.0,3.0,1.6,690.9604368963314,0.0,243.0,0.0,0.0,26533.0,0,1,3,83.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,327.06093292551157,0.012213710301652749,0.012326571926488205,16583.125,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +7856,2,36.0,3,0.0,9,111,1,52,37,6.0,0.0,0.0,605.6683943065029,0.0,0.0,38947.12,50,30,2,4655,201707856,,,,806.0,2.0,0.0,4.0,3.0,5.0,2.4,1306.7115384415615,0.0,450.0,0.0,0.0,56747.0,1,1,3,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,605.6683943065029,0.0155510444496667,0.010673135043376794,23644.583333333336,6,3,6,6_0,6_4,6_0_0 +7857,2,61.0,1,0.0,1,111,2,0,33,8.0,0.0,0.0,1437.1573150551542,0.0,2190.101578682081,26034.772178404586,0,31,2,4657,201707857,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2761.329536503245,1036.6000329159756,639.0,630.0,0.0,32530.0,0,1,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3627.2588937372348,0.13932362721982972,0.11150503823354549,32530.0,9,5,9,9_0,9_4,9_1_0 +7858,2,68.0,2,0.0,3,111,5,75,74,8.0,0.0,693.9631597817199,1230.4823203167298,106.15931652259337,161.08285188979997,47890.65403244655,50,60,1,4659,201707858,,,300.0,,0.0,2.0,6.0,0.0,2.0,1.5,1438.7540897107813,155.266900540438,850.0,0.0,0.0,47431.0,5,5,2,139.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2191.6876485108432,0.04576441255168379,0.0462079156777391,31620.666666666668,8,4,8,8_1,8_2,8_0_1 +7859,2,58.0,3,0.0,4,111,1,75,63,3.0,0.0,0.0,866.7787687408619,0.0,0.0,23434.600000000002,50,50,2,466,201707859,,,,329.0,1.0,2.0,4.0,0.0,2.0,1.5,1772.6199242079344,0.0,644.0,0.0,0.0,25652.0,5,1,3,89.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,866.7787687408619,0.03698713734140381,0.03378990989945665,17101.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +7860,2,62.0,2,0.0,9,222,2,77,77,7.0,0.0,0.0,942.1508355878933,0.0,0.0,24572.56,50,50,1,4660,201707860,,,550.0,,0.0,1.0,4.0,0.0,2.0,1.5,3484.5931166379387,0.0,700.0,0.0,0.0,40779.0,4,5,1,100.0,1,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,942.1508355878933,0.038341582463849645,0.0231038239188772,27186.0,7,4,7,7_1,7_0,7_0_0 +7861,0,40.0,4,0.0,9,111,2,0,38,6.0,0.0,0.0,478.789342138253,0.0,892.2136794322666,29554.48,0,20,1,4661,201707861,,,384.0,,1.0,0.0,4.0,2.0,3.0,1.6,836.266206282468,860.0,0.0,0.0,0.0,34300.0,0,1,5,100.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1371.0030215705196,0.046389008420060836,0.03997093357348454,21437.5,6,3,6,6_1,6_3,6_0_0 +7862,0,46.0,2,0.0,7,111,2,52,48,6.0,0.0,0.0,0.0,0.0,0.0,24159.93087530163,71,71,8,4662,201707862,,,,,3.0,1.0,4.0,1.0,3.0,2.0,1630.9848717705931,0.0,0.0,0.0,0.0,44660.0,1,1,5,61.0,7,6.0,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,22330.0,6,3,6,6_0,6_2,6_0_0 +7863,2,73.0,3,0.0,4,300,2,72,78,4.0,997.8808297483569,0.0,1130.581002705472,318.4779495677801,0.0,24733.039999999997,50,70,1,4663,201707863,,,360.0,,0.0,1.0,7.0,0.0,2.0,1.5,2187.5583739234653,0.0,840.0,0.0,0.0,26267.0,5,5,1,160.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2446.939782021609,0.09893404862570915,0.0931564237264099,17511.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +7864,2,24.0,3,0.0,99,111,4,0,67,3.0,0.0,0.0,114.40403003567276,0.0,0.0,20422.239999999998,0,50,1,4664,201707864,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1200.3452611928162,0.0,85.0,0.0,0.0,20214.0,0,1,3,63.0,7,5.0,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,114.40403003567276,0.005601933482109346,0.0056596433182780626,13476.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7865,1,52.0,4,353.0,6,111,1,0,43,2.0,0.0,0.0,235.53770889697333,95.54338487033404,0.0,16963.66031599412,0,31,2,4665,201707865,,,,42.0,1.0,0.0,3.0,1.0,2.0,1.3,1748.930534994159,0.0,175.0,0.0,0.0,14176.0,0,1,3,75.0,6,4.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,331.0810937673074,0.01951707872004186,0.023355043296226535,10904.615384615385,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7866,2,52.0,3,0.0,7,111,2,0,43,1.0,0.0,0.0,103.63659191466827,0.0,0.0,14430.66,0,33,2,4666,201707866,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2805.6281157840986,0.0,77.0,0.0,0.0,7055.0,0,1,1,49.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,103.63659191466827,0.0071816945250368506,0.014689807500307338,7055.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +7867,2,65.0,2,0.0,8,112,4,86,75,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,14135.311191295747,71,70,1,4667,201707867,,,200.0,,0.0,1.0,4.0,0.0,2.0,1.5,1681.3959799267682,0.0,1200.0,0.0,0.0,30200.0,5,5,1,80.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.11426106551833339,0.053480652918896504,20133.333333333332,5,3,5,5_1,5_0,5_0_0 +7868,2,71.0,1,0.0,5,111,1,0,55,8.0,0.0,0.0,410.5085783632964,0.0,0.0,31548.667849749774,0,41,2,4668,201707868,,,107.0,,1.0,2.0,4.0,0.0,1.0,1.0,4660.635220462179,0.0,305.0,0.0,0.0,29229.0,0,5,1,80.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,410.5085783632964,0.013011914807887912,0.014044564588706298,29229.0,8,4,8,8_0,8_2,8_0_0 +7869,2,81.0,3,0.0,9,300,2,0,74,10.0,0.0,0.0,1615.1157181506744,0.0,0.0,20094.52,0,50,1,4669,201707869,,,300.0,,0.0,0.0,4.0,0.0,1.0,1.0,2493.819849308784,0.0,1200.0,0.0,0.0,43059.0,0,5,3,75.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.08037592926582343,0.03750936431757994,43059.0,10,5,10,10_1,10_0,10_0_0 +7870,2,60.0,2,0.0,6,112,5,78,75,7.0,0.0,138.792631956344,1857.3830758732754,159.23897478389006,0.0,53155.56,71,50,1,467,201707870,,,340.0,,0.0,1.0,5.0,0.0,2.0,1.5,2702.1044334900357,0.0,1380.0,0.0,0.0,39996.0,4,5,1,98.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2155.4146826135093,0.04054918587281386,0.053890756140951825,26664.0,7,4,7,7_1,7_0,7_0_0 +7871,2,45.0,3,0.0,9,221,4,0,42,3.0,0.0,0.0,2395.7549819235,132.69914565324171,0.0,31776.550421759257,0,30,1,4670,201707871,,,433.0,,1.0,0.0,6.0,2.0,3.0,2.0,566.0462879257493,0.0,1780.0,0.0,0.0,31701.0,0,1,2,112.0,1,3.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2528.454127576742,0.07956981151249702,0.07975944378968304,15850.5,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7872,2,60.0,2,0.0,3,111,4,0,75,7.0,0.0,0.0,2506.1212226637963,0.0,0.0,32630.82,0,31,1,4672,201707872,,,240.0,,0.0,2.0,6.0,0.0,1.0,1.0,1645.8396502133423,0.0,1862.0,0.0,0.0,26777.0,0,5,1,110.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2506.1212226637963,0.07680227535390763,0.09359230767687927,26777.0,7,4,7,7_1,7_3,7_0_1 +7873,2,37.0,2,0.0,3,112,2,31,46,8.0,0.0,0.0,0.0,0.0,0.0,42757.08,30,31,2,4674,201707873,,,756.0,685.0,2.0,1.0,4.0,1.0,3.0,1.8,2831.979382578415,0.0,0.0,0.0,0.0,52039.0,4,1,3,80.0,9,3.0,4,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,28910.555555555555,8,4,8,8_0,8_1,8_0_1 +7874,2,89.0,3,0.0,1,111,2,0,77,9.0,0.0,0.0,813.7677889394231,0.0,3920.960569398468,12068.99786669195,0,70,1,4676,201707874,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2571.3318664723183,801.6947631237949,273.0,1746.0,0.0,33675.0,0,5,1,109.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4734.728358337891,0.3923050124488634,0.14060069364032343,33675.0,9,5,9,9_1,9_3,9_1_0 +7875,1,41.0,3,437.0,6,111,2,0,56,1.0,0.0,0.0,471.07541779394666,0.0,1061.5931652259337,21330.66,0,50,2,4678,201707875,,,,5.0,1.0,0.0,4.0,2.0,3.0,1.6,1612.163985084571,0.0,350.0,600.0,0.0,15164.0,0,1,3,96.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1532.6685830198803,0.07185284388855667,0.10107284245712743,9477.5,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7876,2,65.0,2,0.0,5,111,2,77,77,8.0,0.0,0.0,1469.7553035171136,0.0,1758.7060103909635,24322.420000000002,71,50,1,4679,201707876,,,450.0,,1.0,1.0,6.0,1.0,3.0,2.0,2002.5164746088117,0.0,1092.0,994.0,0.0,53773.0,5,5,1,120.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3228.461313908077,0.13273602354979797,0.06003870555684223,26886.5,7,4,7,7_1,7_2,7_0_0 +7877,2,48.0,4,0.0,1,111,2,85,68,1.0,0.0,0.0,807.5578590753372,0.0,0.0,10310.48,30,30,2,468,201707877,,,,,1.0,0.0,1.0,2.0,4.0,2.1,5017.718691593028,0.0,600.0,0.0,0.0,9500.0,6,1,3,17.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,807.5578590753372,0.07832398288686242,0.08500609042898287,4523.809523809524,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +7878,2,63.0,3,0.0,2,111,2,0,77,5.0,0.0,0.0,1309.4331775688036,0.0,2440.100667470571,19711.5,0,50,1,4680,201707878,,,472.0,,0.0,3.0,5.0,0.0,1.0,1.0,2859.3385085832297,2352.0,0.0,0.0,0.0,23210.0,0,4,1,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3749.5338450393747,0.19022062476419221,0.16154820530113634,23210.0,6,3,6,6_1,6_4,6_0_1 +7879,2,57.0,1,0.0,6,112,4,0,63,5.0,0.0,0.0,1744.3249756027283,53.079658261296686,0.0,11814.551191295746,0,50,1,4681,201707879,,,215.0,,1.0,3.0,6.0,0.0,1.0,1.0,2976.998100579434,0.0,1296.0,0.0,0.0,20837.0,0,1,1,97.0,9,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1797.404633864025,0.15213482126923664,0.08626024062312353,20837.0,5,3,5,5_1,5_1,5_0_0 +7880,2,56.0,3,0.0,7,111,2,22,33,7.0,0.0,0.0,2018.894647688343,141.54575536345783,0.0,23769.88087530163,41,42,1,4682,201707880,,,400.0,,3.0,2.0,5.0,1.0,3.0,2.0,2027.5878199999102,0.0,1500.0,0.0,0.0,53175.0,1,1,1,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2160.440403051801,0.09088982878734707,0.04062887452847768,26587.5,7,4,7,7_1,7_3,7_0_0 +7881,2,39.0,2,0.0,1,111,1,52,35,9.0,0.0,0.0,895.2247234398964,0.0,1668.232088984982,38290.979999999996,20,20,2,4684,201707881,,,1528.0,,2.0,0.0,3.0,1.0,3.0,1.8,3311.560653703806,1608.0,0.0,0.0,0.0,63400.0,1,1,3,101.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2563.4568124248785,0.0669467538418938,0.04043307275118105,35222.22222222222,9,5,9,9_0,9_2,9_1_0 +7882,2,69.0,2,0.0,99,111,2,75,86,9.0,1586.456009138882,0.0,84.7935752029104,0.0,0.0,28920.100000000002,33,30,1,4685,201707882,,,350.0,,0.0,3.0,7.0,0.0,2.0,1.5,1500.0453887097244,0.0,63.0,0.0,0.0,53283.0,5,5,1,120.0,8,6.0,3,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1671.2495843417926,0.05778851332954563,0.03136553092622023,35522.0,9,5,9,9_1,9_2,9_0_0 +7883,2,58.0,4,0.0,8,112,5,85,21,1.0,0.0,138.792631956344,1278.633276869284,0.0,0.0,13658.880000000001,41,60,1,4686,201707883,,,300.0,,1.0,4.0,5.0,0.0,2.0,1.5,2166.534470143055,0.0,950.0,0.0,0.0,15650.0,6,1,1,110.0,7,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1417.4259088256279,0.1037732163124376,0.09057034561186121,10433.333333333334,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +7884,1,32.0,3,515.0,5,111,1,85,67,1.0,0.0,0.0,957.578684276506,0.0,1784.4273588645333,9730.04,71,71,2,4687,201707884,,,287.0,20.0,1.0,2.0,4.0,4.0,6.0,2.7,1541.997266329474,1720.0,0.0,0.0,0.0,22336.0,6,4,3,80.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,2742.0060431410393,0.28180830121366807,0.12276173187415111,8272.592592592591,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7885,2,66.0,3,0.0,5,112,4,75,77,6.0,0.0,0.0,201.8894647688343,0.0,0.0,37598.060000000005,60,50,1,4688,201707885,,,680.0,,0.0,3.0,4.0,0.0,2.0,1.5,1615.8828591511656,0.0,150.0,0.0,0.0,33734.0,5,5,1,85.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,201.8894647688343,0.005369677711265801,0.005984747280750409,22489.333333333332,6,3,6,6_1,6_0,6_0_0 +7886,2,52.0,2,0.0,9,400,2,0,52,9.0,2163.925996465435,0.0,430.6975248401798,106.15931652259337,0.0,41105.434495953275,0,44,1,469,201707886,,,262.0,,1.0,2.0,4.0,1.0,2.0,1.5,2671.8100616290003,0.0,320.0,0.0,0.0,48366.0,0,1,2,87.0,0,1.0,2,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2700.7828378282084,0.06570379004494147,0.05584052511740083,32244.0,9,5,9,9_1,9_1,9_0_0 +7887,2,67.0,3,0.0,3,112,4,56,75,3.0,0.0,0.0,2274.6213030622,230.01185246561897,0.0,15954.262382591489,50,60,1,4690,201707887,,,400.0,,1.0,3.0,6.0,0.0,2.0,1.5,1850.5444614711084,0.0,1690.0,0.0,0.0,22446.0,4,5,1,110.0,6,2.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2504.633155527819,0.15698833925789965,0.11158483273312923,14964.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +7888,2,35.0,1,0.0,1,111,4,0,38,9.0,0.0,0.0,874.8543473316153,0.0,0.0,33406.96,0,31,2,4691,201707888,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4643.793185756793,0.0,650.0,0.0,0.0,36734.0,0,1,2,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,874.8543473316153,0.026187786836384255,0.02381592931158097,36734.0,9,5,9,9_0,9_4,9_1_0 +7889,1,23.0,5,31.0,1,112,4,0,54,4.0,0.0,0.0,974.4531499509069,0.0,0.0,11982.920000000002,0,31,2,4692,201707889,,,340.0,359.0,1.0,0.0,1.0,0.0,1.0,1.0,3585.8605222594747,0.0,724.0,0.0,0.0,16667.0,0,4,3,18.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,974.4531499509069,0.08132017487815213,0.05846601967666088,16667.0,4,2,4_1,4_0_1,4_2_1,4_1_0_1 +7890,1,46.0,2,263.0,8,111,1,0,46,8.0,0.0,0.0,363.4010365839017,0.0,654.6491185559925,41696.619999999995,0,31,2,4693,201707890,,,,269.0,2.0,0.0,5.0,3.0,4.0,2.1,510.9476727472603,0.0,270.0,370.0,0.0,57012.0,0,1,3,120.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1018.0501551398942,0.02441565179959177,0.017856769717601455,27148.571428571428,7,4,7,7_0,7_3,7_0_0 +7891,2,74.0,3,0.0,4,400,5,75,77,8.0,0.0,69.396315978172,1615.1157181506744,169.8549064361494,0.0,37455.8,60,41,1,4694,201707891,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2402.845986341077,0.0,1200.0,0.0,0.0,39480.0,5,5,1,100.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1854.3669405649957,0.04950813867451758,0.04696978066274052,26320.0,7,4,7,7_1,7_0,7_0_1 +7892,2,63.0,2,0.0,5,111,2,78,21,8.0,0.0,360.86084308649436,685.078250448911,0.0,1983.4098970304528,28837.980000000003,50,44,1,4695,201707892,,,368.0,,1.0,2.0,8.0,0.0,2.0,1.5,2302.444292922089,0.0,509.0,1121.0,0.0,46097.0,5,1,1,142.0,4,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3029.348990565858,0.10504719784693164,0.06571683603197297,30731.333333333332,8,4,8,8_1,8_1,8_0_0 +7893,2,39.0,4,0.0,99,221,2,85,48,4.0,2617.6524150791556,0.0,839.8601734383507,0.0,0.0,25313.58,50,31,1,4696,201707893,,,,,1.0,3.0,4.0,1.0,3.0,1.8,948.7155492813747,0.0,624.0,0.0,0.0,34310.0,6,1,3,150.0,1,1.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3457.512588517506,0.13658726219355405,0.10077273647675623,19061.11111111111,5,3,5,5_1,5_1,5_0_0 +7894,2,62.0,3,0.0,9,112,4,56,77,5.0,0.0,0.0,1172.3048254243645,0.0,0.0,47566.299999999996,71,71,1,4697,201707894,,,,555.0,1.0,2.0,3.0,0.0,2.0,1.5,2588.828734575625,0.0,871.0,0.0,0.0,30692.0,1,5,3,60.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1172.3048254243645,0.02464570137732732,0.038195778229648265,20461.333333333332,5,3,5,5_1,5_0,5_0_0 +7895,2,63.0,2,0.0,9,112,6,0,77,3.0,0.0,0.0,484.5347154452023,0.0,2505.3598699332038,56870.68000000001,0,70,2,4698,201707895,,,,,0.0,2.0,3.0,0.0,1.0,1.0,7261.991518605439,0.0,360.0,1416.0,0.0,15345.0,0,5,1,79.0,9,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2989.894585378406,0.05257356840780532,0.19484487359911412,15345.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +7896,2,66.0,1,0.0,5,221,2,74,74,9.0,810.6790206699688,0.0,1265.1739792180283,228.24253052357577,0.0,40384.840000000004,60,31,1,4699,201707896,,,286.0,,0.0,3.0,6.0,0.0,2.0,1.5,1091.9832231211383,0.0,940.0,0.0,0.0,58108.0,5,5,1,310.0,1,3.0,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2304.095530411573,0.05705347676037772,0.03965195034094398,38738.666666666664,9,5,9,9_1,9_1,9_0_0 +7897,1,29.0,5,408.0,4,111,2,0,56,1.0,0.0,0.0,2557.266553738568,0.0,2830.9151072691566,9370.749322168427,0,50,1,47,201707897,,,,,1.0,0.0,4.0,2.0,3.0,1.6,1166.6992218579433,0.0,1900.0,1600.0,0.0,15706.0,0,4,3,95.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,5388.181661007724,0.5750000854532387,0.3430651764298818,9816.25,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +7898,2,54.0,4,0.0,9,111,2,0,62,6.0,0.0,0.0,939.7632668946175,0.0,1751.2287103275185,24995.365846751298,0,50,1,4700,201707898,,,573.0,,1.0,2.0,6.0,1.0,2.0,1.5,869.3604947353331,1688.0,0.0,0.0,0.0,32026.0,0,1,1,112.0,4,3.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2690.991977222136,0.1076596355388769,0.08402522878980004,21350.666666666668,6,3,6,6_1,6_1,6_0_0 +7899,2,72.0,2,0.0,1,111,1,71,78,3.0,0.0,0.0,969.0694308904046,176.75526201011795,0.0,29784.3,70,70,1,4701,201707899,,,,,0.0,3.0,5.0,0.0,2.0,1.5,2334.260924704885,0.0,720.0,0.0,0.0,21275.0,5,5,1,150.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1145.8246929005227,0.03847076120306748,0.053857799901317165,14183.333333333334,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +7900,1,19.0,1,276.0,10,111,2,0,54,1.0,0.0,0.0,551.164475252175,0.0,1027.0831891138882,14368.472625904884,0,42,2,4702,201707900,,,,689.0,3.0,0.0,4.0,0.0,3.0,2.0,2635.9609645651244,990.0,0.0,0.0,0.0,6937.0,0,3,3,65.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1578.2476643660632,0.1098410182805822,0.227511556056806,3468.5,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7901,2,41.0,3,0.0,1,112,2,62,34,7.0,1745.1016100527704,0.0,1305.5518721717951,371.5576078290768,0.0,49156.299999999996,31,30,1,4703,201707901,,,480.0,,2.0,0.0,7.0,3.0,5.0,2.4,1516.3814509680908,0.0,970.0,0.0,0.0,61640.0,1,1,2,178.0,8,1.0,4,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3422.2110900536427,0.06961897234034382,0.0555193233298774,25683.333333333336,7,4,7,7_1,7_1,7_1_0 +7902,1,50.0,3,113.0,99,211,2,0,46,5.0,0.0,0.0,379.55219376540845,0.0,0.0,8036.345846751299,0,20,2,4704,201707902,,,,149.0,1.0,0.0,1.0,0.0,1.0,1.0,1534.282419448084,0.0,282.0,0.0,0.0,18212.0,0,1,3,35.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,379.55219376540845,0.04722944992702657,0.02084077497064619,18212.0,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +7903,2,69.0,3,0.0,8,300,2,22,22,6.0,0.0,155.44774779110526,1761.8220625493607,70.77287768172891,0.0,44201.5516935026,70,70,1,4705,201707903,,,411.0,,2.0,2.0,4.0,0.0,2.0,1.5,2374.002274622834,0.0,1309.0,0.0,0.0,32626.0,5,5,1,96.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1988.0426880221949,0.04497676239529905,0.06093430662729709,21750.666666666668,6,3,6,6_1,6_0,6_0_0 +7904,2,53.0,3,0.0,8,120,5,62,63,6.0,0.0,832.755791738064,2557.266553738568,0.0,0.0,42159.94476518298,50,50,1,4706,201707904,,,750.0,,4.0,0.0,4.0,2.0,4.0,2.5,2324.9170291516575,0.0,1900.0,0.0,0.0,58399.0,1,1,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3390.022345476632,0.08040860500074042,0.058049321828740764,23359.6,6,3,6,6_1,6_0,6_0_0 +7905,1,39.0,9,373.0,6,300,4,62,62,4.0,0.0,0.0,888.3136449828709,0.0,0.0,8656.84,71,71,1,4708,201707905,,,,,2.0,2.0,5.0,3.0,5.0,2.6,2117.268433597037,0.0,660.0,0.0,0.0,45396.0,4,1,3,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,888.3136449828709,0.10261407684361394,0.01956810390745596,17460.0,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +7906,2,55.0,1,0.0,5,112,2,0,37,10.0,0.0,0.0,492.6102940359557,0.0,3225.4739003447953,26270.010875301632,0,12,1,4713,201707906,,,306.0,,1.0,3.0,7.0,0.0,1.0,1.0,2654.792891716833,0.0,366.0,1823.0,0.0,81436.0,0,1,2,160.0,10,2.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3718.084194380751,0.1415334090278735,0.04565651793286447,81436.0,10,5,10,10_1,10_1,10_0_0 +7907,2,32.0,2,0.0,99,111,2,0,47,7.0,0.0,0.0,965.031641595028,0.0,0.0,23750.7,0,0,2,4714,201707907,,,,606.0,1.0,0.0,2.0,0.0,1.0,1.0,2982.5337946817317,0.0,717.0,0.0,0.0,26460.0,0,1,3,50.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,965.031641595028,0.040631713658756494,0.03647133944047725,26460.0,7,4,7,7_0,7_3,7_0_0 +7908,2,50.0,2,0.0,7,111,4,43,37,10.0,0.0,0.0,2396.815809941961,0.0,1692.4438305221652,56634.94206314592,33,31,2,4715,201707908,,,,,3.0,0.0,3.0,1.0,3.0,2.0,1834.8620029084934,1631.3375683448687,1106.0,0.0,0.0,89820.0,1,1,1,72.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,4089.2596404641263,0.07220382844048377,0.04552727277292503,44910.0,10,5,10,10_0,10_3,10_0_0 +7909,2,83.0,3,0.0,2,111,2,86,77,3.0,0.0,0.0,67.2964882562781,0.0,106.15931652259337,18119.185846751298,71,50,1,4716,201707909,,,450.0,,0.0,2.0,4.0,0.0,2.0,1.5,1923.504266221506,0.0,50.0,60.0,0.0,23524.0,5,5,1,85.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,173.45580477887148,0.009573046286181311,0.007373567623655479,15682.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +7910,2,62.0,3,0.0,6,300,6,56,75,5.0,951.8736054833294,0.0,1221.1192644155674,180.47083808840873,645.2572531169102,38487.234814332616,50,50,1,4717,201707910,,,280.0,,1.0,3.0,6.0,0.0,2.0,1.5,1967.9750986674062,621.9600197495854,650.0,0.0,0.0,29840.0,4,5,1,160.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2998.720961104216,0.07791468978144137,0.10049332979571769,19893.333333333332,5,3,5,5_1,5_0,5_0_0 +7911,1,49.0,5,9999.0,4,111,1,0,69,2.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,6741.0,0,50,2,4718,201707911,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2648.280195601859,600.0,0.0,0.0,0.0,12978.0,0,4,3,57.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,956.5137359794323,0.14189493190616115,0.07370270734931672,12978.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7912,1,29.0,4,215.0,99,120,4,0,42,6.0,0.0,0.0,516.8370298082158,35.38643884086446,0.0,14852.919999999998,0,31,1,4719,201707912,,,20.0,,1.0,0.0,3.0,0.0,1.0,1.0,2514.212214550007,0.0,384.0,0.0,0.0,22683.0,0,1,3,63.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,552.2234686490802,0.03717945485797273,0.024345257181549187,22683.0,6,3,6,6_1,6_1,6_0_0 +7913,1,49.0,5,259.0,1,120,2,0,56,1.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,14323.16,0,71,1,472,201707913,,,43.0,279.0,2.0,1.0,4.0,2.0,3.0,2.0,645.9803630608624,720.0,0.0,0.0,0.0,18678.0,0,4,3,116.0,0,3.0,2,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1147.8164831753188,0.08013709845978952,0.061452858077702045,9339.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +7914,2,50.0,4,0.0,1,120,5,78,63,2.0,0.0,1665.511583476128,1076.7438121004495,567.0676824248529,0.0,21431.9,50,50,1,4721,201707914,,,205.0,,1.0,1.0,5.0,2.0,4.0,2.5,1953.146056148763,0.0,800.0,0.0,0.0,27693.0,6,1,3,120.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3309.3230780014305,0.15441109178380966,0.11950034586362729,11077.2,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +7915,2,56.0,2,0.0,8,111,1,0,75,1.0,0.0,0.0,457.61612014269105,0.0,0.0,23833.4,0,44,2,4723,201707915,,,,620.0,0.0,2.0,3.0,0.0,1.0,1.0,2549.876716971259,0.0,340.0,0.0,0.0,9861.0,0,7,3,67.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,457.61612014269105,0.019200622661587983,0.04640666465294504,9861.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +7916,2,69.0,3,0.0,1,111,2,0,75,7.0,2221.038412794435,0.0,767.1799661215703,176.9321942043223,0.0,18849.7,50,60,1,4724,201707916,,,193.0,,0.0,0.0,5.0,0.0,2.0,1.5,1528.3968372376316,0.0,570.0,0.0,0.0,42148.0,5,5,1,100.0,6,4.0,3,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3165.150573120328,0.16791516963773045,0.0750961035664878,28098.666666666668,8,4,8,8_1,8_2,8_1_0 +7917,2,50.0,3,0.0,7,112,2,75,33,6.0,1351.6605197863275,0.0,796.7904209543327,0.0,0.0,26503.10031599412,71,50,1,4725,201707917,,,702.0,,2.0,0.0,5.0,1.0,3.0,2.0,2112.627573178235,0.0,592.0,0.0,0.0,50357.0,5,1,1,180.0,9,2.0,4,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2148.4509407406604,0.08106413646422003,0.04266439503426853,25178.5,7,4,7,7_1,7_1,7_0_0 +7918,2,34.0,3,0.0,99,111,2,35,37,7.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,44048.43697444815,20,20,2,4729,201707918,,,,830.0,2.0,0.0,4.0,2.0,4.0,2.1,2002.7028878120166,1100.0,0.0,0.0,0.0,50349.0,1,4,3,105.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1753.6085159622926,0.039810913540009034,0.03482906345632073,23975.714285714286,7,4,7,7_0,7_3,7_0_0 +7919,2,66.0,3,0.0,1,111,2,0,78,5.0,0.0,0.0,447.9476451930811,0.0,2230.574898378401,41415.18139681967,0,71,2,473,201707919,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2507.160489258592,103.51126702695868,290.0,1200.0,0.0,19718.0,0,5,1,90.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2678.522543571482,0.06467489585297746,0.13584149221886002,19718.0,5,3,5,5_0,5_3,5_1_0 +7920,2,28.0,3,0.0,9,111,4,56,85,8.0,0.0,0.0,1857.3830758732754,40.694404666994124,0.0,38080.38438967974,50,31,1,4730,201707920,,,408.0,,1.0,0.0,4.0,1.0,3.0,1.8,2321.6520679994924,0.0,1380.0,0.0,0.0,48270.0,1,4,3,90.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1898.0774805402696,0.04984396851452666,0.03932209406547068,26816.666666666664,7,4,7,7_1,7_2,7_0_0 +7921,2,52.0,2,0.0,1,111,2,52,38,10.0,0.0,0.0,1466.7783422401978,0.0,3359.1450999268814,39529.20206314591,41,12,2,4731,201707921,,,546.0,,3.0,1.0,5.0,1.0,3.0,2.0,2455.3914293059333,1631.3375683448687,415.0,942.0,0.0,93480.0,1,1,1,85.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4825.923442167079,0.12208502044786812,0.051625197284628575,46740.0,10,5,10,10_0,10_3,10_1_0 +7922,2,29.0,3,0.0,1,111,4,0,52,4.0,0.0,0.0,942.1508355878933,0.0,0.0,19969.49,0,50,2,4734,201707922,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5760.438842076874,0.0,700.0,0.0,0.0,18629.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,942.1508355878933,0.04717951412819723,0.050574418143104476,18629.0,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +7923,1,23.0,2,252.0,5,300,2,56,68,5.0,0.0,0.0,672.964882562781,53.079658261296686,0.0,19101.52,50,71,1,4735,201707923,,,370.0,,2.0,0.0,3.0,0.0,2.0,1.5,3366.699273598256,0.0,500.0,0.0,0.0,27914.0,1,1,3,65.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,726.0445408240777,0.03800977832256688,0.026010050183566585,18609.333333333332,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +7924,2,79.0,3,0.0,2,111,2,77,74,5.0,0.0,0.0,1202.5406732774727,0.0,2240.9087762484837,27130.239999999998,60,41,1,4736,201707924,,,381.0,,0.0,0.0,4.0,0.0,2.0,1.5,1911.3868487233312,2160.0,0.0,0.0,0.0,29046.0,5,5,1,100.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3443.4494495259564,0.1269229262080231,0.11855158884273072,19364.0,5,3,5,5_1,5_3,5_0_1 +7925,2,71.0,3,0.0,1,111,2,0,77,7.0,0.0,0.0,296.1045483276236,0.0,1486.2304313163072,14529.56,0,70,2,4737,201707925,,,,285.0,0.0,0.0,3.0,0.0,1.0,1.0,3898.7729506417245,0.0,220.0,840.0,0.0,26525.0,0,5,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1782.3349796439309,0.12266957703082068,0.06719453269157138,26525.0,7,4,7,7_0,7_4,7_1_0 +7926,1,33.0,2,256.0,1,300,2,0,85,3.0,0.0,0.0,323.0231436301349,0.0,636.9558991355602,26359.88,0,60,2,4738,201707926,,,,104.0,0.0,0.0,3.0,0.0,1.0,1.0,1974.6447086043638,0.0,240.0,360.0,0.0,14678.0,0,7,3,70.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,959.9790427656951,0.03641818713763853,0.0654025781963275,14678.0,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +7927,2,75.0,2,0.0,8,111,2,75,74,8.0,4050.222191331566,0.0,1663.5691896951946,0.0,0.0,47594.100000000006,50,41,1,4739,201707927,,,711.0,,0.0,2.0,10.0,0.0,2.0,1.5,1349.2541036884902,0.0,1236.0,0.0,0.0,43392.0,5,5,1,250.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5713.791381026761,0.12005251451391581,0.13167845181201054,28928.0,8,4,8,8_1,8_3,8_0_0 +7928,2,84.0,3,0.0,4,111,2,0,78,6.0,0.0,0.0,597.5928157157495,0.0,3566.9530351591375,15580.039999999999,0,70,1,4740,201707928,,,200.0,,0.0,1.0,4.0,0.0,1.0,1.0,2725.088871101651,0.0,444.0,2016.0,0.0,22040.0,0,5,1,85.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4164.545850874887,0.2673000743820226,0.18895398597435967,22040.0,6,3,6,6_1,6_3,6_0_1 +7929,2,70.0,3,0.0,5,120,2,86,72,4.0,737.7020442495802,0.0,619.0857540206248,0.0,1153.6530366612562,17856.78,50,50,1,4743,201707929,,,382.0,,0.0,3.0,6.0,0.0,2.0,1.5,1390.7528166564575,1112.0,0.0,0.0,0.0,24244.0,5,5,1,90.0,0,1.0,3,3,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2510.4408349314613,0.14058754349504565,0.10354895375892845,16162.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7930,1,48.0,2,120.0,99,111,4,85,64,5.0,0.0,0.0,1372.8483604280732,661.7264063241654,0.0,29792.36,30,43,1,4745,201707930,,,1096.0,620.0,1.0,0.0,5.0,3.0,5.0,2.6,1877.9420264971898,0.0,1020.0,0.0,0.0,46801.0,7,1,3,90.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2034.5747667522387,0.06829182940701034,0.04347289089447317,18000.384615384613,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +7931,2,25.0,2,0.0,99,300,2,67,64,7.0,0.0,0.0,686.4241802140366,0.0,1132.3660429076626,24486.413711848167,50,43,1,4747,201707931,,,,620.0,2.0,0.0,4.0,0.0,2.0,1.5,240.75525799981932,0.0,510.0,640.0,0.0,35511.0,1,1,3,70.0,0,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1818.7902231216992,0.07427752567300808,0.051217657151916285,23674.0,6,3,6,6_1,6_0,6_0_0 +7932,1,48.0,3,306.0,1,211,2,81,22,1.0,0.0,0.0,1258.4443303924004,0.0,0.0,13275.18,60,71,2,4748,201707932,,,170.0,,2.0,0.0,3.0,0.0,2.0,1.5,2305.862372685807,0.0,935.0,0.0,0.0,11202.0,4,4,3,52.0,3,3.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1258.4443303924004,0.09479678093949764,0.11234104002788792,7468.0,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +7933,2,62.0,1,0.0,5,111,1,47,74,10.0,0.0,0.0,2002.7434905068362,0.0,0.0,42058.782829434516,71,12,2,4749,201707933,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2026.33957557149,0.0,1488.0,0.0,0.0,144270.0,1,5,1,86.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2002.7434905068362,0.04761772347594499,0.013881912320696169,96180.0,10,5,10,10_0,10_4,10_0_0 +7934,1,46.0,3,353.0,1,120,2,22,56,1.0,0.0,0.0,834.4764543778484,0.0,884.6609710216114,33554.18000000001,50,43,1,4750,201707934,,,220.0,,3.0,6.0,6.0,1.0,3.0,2.0,3611.2276723617383,0.0,620.0,500.0,0.0,20966.0,1,1,3,150.0,0,3.0,4,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1719.13742539946,0.051234672562388936,0.08199644306970619,10483.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +7935,1,24.0,3,103.0,7,111,4,0,84,1.0,0.0,0.0,484.5347154452023,0.0,0.0,29564.68,0,30,2,4752,201707935,,,,377.0,0.0,0.0,1.0,0.0,1.0,1.0,2956.2107777211922,0.0,360.0,0.0,0.0,7236.0,0,3,3,18.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,484.5347154452023,0.016388972092551055,0.06696167985699314,7236.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7936,2,45.0,2,0.0,8,400,2,52,21,9.0,0.0,0.0,2451.644061113347,185.7788039145384,1082.3114992280973,43983.02976034637,50,50,1,4753,201707936,,,251.0,,2.0,0.0,6.0,2.0,4.0,2.3,2705.3802113513498,1043.2342731266378,1390.0,0.0,0.0,78068.0,1,1,1,150.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3719.7343642559827,0.08457203572659679,0.04764736337879775,33942.608695652176,9,5,9,9_1,9_0,9_0_0 +7937,1,45.0,4,106.0,99,112,2,0,68,2.0,0.0,485.77421184720396,1582.813403787661,148.62304313163074,0.0,24720.395368876685,0,50,1,4754,201707937,,,200.0,,2.0,1.0,5.0,2.0,3.0,2.0,642.8019466015861,0.0,1176.0,0.0,0.0,24899.0,0,1,3,84.0,6,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2217.2106587664957,0.08969155329764646,0.08904818100190753,12449.5,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +7938,2,62.0,3,0.0,6,111,4,56,75,4.0,0.0,0.0,1345.929765125562,0.0,0.0,27274.39119129574,50,70,1,4755,201707938,,,500.0,,1.0,3.0,4.0,0.0,2.0,1.5,2770.260100977239,0.0,1000.0,0.0,0.0,25098.0,1,5,1,100.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1345.929765125562,0.04934774733139039,0.053626972871366724,16732.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7939,2,66.0,3,0.0,4,400,5,0,71,2.0,0.0,624.566843803548,323.0231436301349,185.7788039145384,0.0,6912.7,0,71,1,4756,201707939,,,,,0.0,4.0,2.0,0.0,1.0,1.0,1845.8565260714568,0.0,240.0,0.0,0.0,11092.0,0,5,5,40.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1133.3687913482213,0.163954575107877,0.10217893899641375,11092.0,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +7940,2,71.0,2,0.0,6,111,1,0,75,3.0,0.0,0.0,222.69271727360606,0.0,414.9831067126821,16062.119999999999,0,33,2,4758,201707940,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3018.312928198239,400.0,0.0,0.0,0.0,15536.0,0,5,1,82.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,637.6758239862882,0.03970060141415256,0.04104504531322658,15536.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7941,2,58.0,4,0.0,9,112,2,0,52,4.0,214.1715612337491,0.0,572.0201501783638,0.0,895.2769026738708,22106.44,0,50,2,476,201707941,,,,340.0,1.0,3.0,2.0,0.0,1.0,1.0,3371.7247092082193,0.0,425.0,506.0,0.0,16916.0,0,1,3,62.0,8,1.0,1,7,1,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1681.4686140859837,0.07606238788723937,0.09940107673717095,16916.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +7942,2,74.0,2,0.0,7,212,4,77,78,4.0,0.0,693.9631597817199,1792.7784471472485,0.0,0.0,24455.353948896296,70,70,1,4760,201707942,,,107.0,,0.0,2.0,5.0,0.0,2.0,1.5,1805.6026166247534,0.0,1332.0,0.0,0.0,25595.0,5,5,1,120.0,2,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2486.7416069289684,0.10168495668169213,0.097157320059737,17063.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7943,2,46.0,2,0.0,2,300,2,85,65,5.0,0.0,0.0,2428.057296286514,0.0,0.0,24613.6,71,71,1,4761,201707943,,,,,2.0,2.0,5.0,2.0,4.0,2.5,2000.8073387624008,0.0,1804.0,0.0,0.0,47530.0,7,1,1,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2428.057296286514,0.09864697956765829,0.05108473167024014,19012.0,5,3,5,5_1,5_0,5_0_1 +7944,2,82.0,3,0.0,3,300,2,86,75,8.0,2075.084459953658,0.0,1938.1388617808093,159.23897478389006,0.0,35993.59665845404,60,44,1,4762,201707944,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2398.779319476186,0.0,1440.0,0.0,0.0,43373.0,6,5,1,154.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4172.462296518357,0.11592234963655251,0.09619953188661971,28915.333333333332,8,4,8,8_1,8_0,8_0_1 +7945,2,63.0,2,0.0,1,111,1,0,74,10.0,0.0,0.0,444.15682249143543,0.0,0.0,51192.134007939436,0,31,2,4763,201707945,,,,740.0,0.0,1.0,3.0,0.0,1.0,1.0,3321.19736153464,0.0,330.0,0.0,0.0,49206.0,0,5,3,66.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,444.15682249143543,0.008676270897840491,0.009026476903049129,49206.0,10,5,10,10_0,10_4,10_1_0 +7946,2,73.0,3,0.0,1,111,2,77,78,5.0,1630.876777394771,0.0,1009.4473238441715,0.0,0.0,16782.16,70,70,1,4766,201707946,,,440.0,,0.0,2.0,4.0,0.0,2.0,1.5,2312.5986721059758,0.0,750.0,0.0,0.0,28580.0,5,5,1,131.0,10,8.0,3,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2640.3241012389426,0.15732921752855072,0.09238362845482655,19053.333333333332,5,3,5,5_1,5_4,5_1_0 +7947,2,84.0,2,0.0,2,300,4,0,72,2.0,95.18736054833293,0.0,2422.6735772260117,123.8525359430256,0.0,11859.920315994117,0,71,1,4767,201707947,,,170.0,410.0,0.0,1.0,4.0,0.0,1.0,1.0,2902.8729475105733,0.0,1800.0,0.0,0.0,12280.0,0,5,3,80.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2641.71347371737,0.22274293615234442,0.21512324704538843,12280.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +7948,2,70.0,3,0.0,1,300,2,0,78,4.0,0.0,0.0,390.319631886413,0.0,2512.4371577013767,16783.04,0,50,1,4768,201707948,,,172.0,,0.0,2.0,4.0,0.0,1.0,1.0,2627.6228472389566,0.0,290.0,1420.0,0.0,17025.0,0,5,1,85.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2902.7567895877896,0.17295774720120966,0.1704996645866543,17025.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7949,2,73.0,3,0.0,5,300,5,0,78,5.0,0.0,911.8675919531801,403.7789295376686,254.7823596542241,0.0,17873.910875301626,0,50,1,4769,201707949,,,600.0,,0.0,3.0,4.0,0.0,1.0,1.0,2635.3810297843897,0.0,300.0,0.0,0.0,19305.0,0,5,1,120.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1570.4288811450729,0.08786151458968666,0.08134829739161216,19305.0,5,3,5,5_1,5_1,5_0_0 +7950,1,27.0,3,385.0,5,111,2,0,85,2.0,0.0,0.0,511.45331074771354,0.0,0.0,5273.26,0,50,2,477,201707950,,,,,0.0,0.0,3.0,2.0,3.0,1.6,752.3014493512702,0.0,380.0,0.0,0.0,17132.0,0,6,3,80.0,6,5.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,511.45331074771354,0.09698996650036477,0.029853683793352414,10707.5,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7951,2,42.0,3,0.0,2,120,5,56,47,2.0,0.0,485.77421184720396,1211.3367886130059,276.0142229587428,0.0,36953.02126397646,50,50,1,4770,201707951,,,800.0,,2.0,0.0,5.0,4.0,6.0,3.1,1969.8954629682291,0.0,900.0,0.0,0.0,40105.0,1,1,2,140.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1973.1252234189526,0.05339550477682992,0.049198983254430936,12937.096774193547,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +7952,2,49.0,3,0.0,8,111,2,0,46,6.0,0.0,0.0,475.1132070893234,0.0,1380.0711147937138,42986.240000000005,0,30,2,4771,201707952,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3320.821668122055,0.0,353.0,780.0,0.0,38124.0,0,1,1,56.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1855.1843218830372,0.043157631881342425,0.04866184875362074,25416.0,7,4,7,7_0,7_4,7_0_0 +7953,2,75.0,3,0.0,8,400,4,74,74,10.0,0.0,138.792631956344,3232.237944448642,0.0,590.6371235959333,37981.22153218924,31,10,1,4772,201707953,,,340.0,,0.0,3.0,7.0,0.0,2.0,1.5,1797.0484127573047,569.3119686482727,2166.0,0.0,0.0,86778.0,5,5,1,224.0,0,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3961.667700000919,0.10430595805465048,0.04565290396184424,57852.0,10,5,10,10_1,10_1,10_0_0 +7954,2,69.0,1,0.0,99,111,1,22,22,10.0,0.0,0.0,589.5172371249961,0.0,254.7823596542241,66934.48000000001,41,41,2,4773,201707954,,,,,2.0,1.0,3.0,0.0,2.0,1.5,2556.7354074096415,0.0,438.0,144.0,0.0,83161.0,1,1,1,84.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,844.2995967792202,0.012613821707126433,0.010152590718957447,55440.666666666664,10,5,10,10_0,10_4,10_0_0 +7955,2,54.0,1,0.0,5,112,5,56,47,6.0,0.0,346.98157989085996,1615.1157181506744,0.0,0.0,29728.94,50,50,1,4774,201707955,,,330.0,,2.0,2.0,4.0,0.0,2.0,1.5,1669.0443936908928,0.0,1200.0,0.0,0.0,31998.0,1,1,2,80.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1962.0972980415345,0.06599957139546632,0.06131937302461199,21332.0,6,3,6,6_1,6_0,6_0_0 +7956,2,40.0,4,0.0,5,111,4,85,43,4.0,475.9368027416647,0.0,3634.010365839017,0.0,0.0,34430.92,50,20,1,4776,201707956,,,612.0,550.0,2.0,1.0,4.0,2.0,4.0,2.5,2455.8083654610996,0.0,2700.0,0.0,0.0,47092.0,7,1,3,112.0,7,5.0,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4109.947168580682,0.11936791606441774,0.0872748485641018,18836.8,5,3,5,5_1,5_2,5_0_0 +7957,1,22.0,3,258.0,99,211,1,85,63,2.0,0.0,0.0,621.8195514880097,0.0,1114.6728234872305,17018.02,50,71,2,4777,201707957,630.0,630.0,,,1.0,0.0,3.0,1.0,3.0,1.8,981.9152494297606,0.0,462.0,630.0,0.0,20716.0,6,1,3,57.0,3,3.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1736.4923749752402,0.10203844953615286,0.08382372924190191,11508.888888888889,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +7958,1,39.0,4,140.0,1,211,2,0,54,2.0,0.0,0.0,545.5971573203348,0.0,1016.7086114460711,12655.199999999999,0,43,2,4779,201707958,,,,,1.0,0.0,3.0,1.0,2.0,1.5,796.0093149863067,980.0,0.0,0.0,0.0,19920.0,0,1,3,80.0,1,3.0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1562.305768766406,0.12345168537568794,0.07842900445614487,13280.0,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +7959,2,34.0,4,0.0,9,300,2,47,47,7.0,0.0,0.0,1877.572022350159,148.62304313163074,0.0,40250.159999999996,44,31,1,478,201707959,,,380.0,,2.0,0.0,6.0,2.0,4.0,2.1,2679.314658353874,0.0,1395.0,0.0,0.0,50361.0,1,1,2,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2026.1950654817897,0.05034004996456635,0.040233416045785224,23981.42857142857,7,4,7,7_1,7_0,7_0_0 +7960,2,61.0,3,0.0,1,112,2,78,77,9.0,0.0,83.27557917380639,196.50574570833206,0.0,0.0,10400.231357424862,60,70,1,4782,201707960,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1838.020938734123,0.0,146.0,0.0,0.0,46930.0,5,5,1,100.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,279.78132488213845,0.02690145202225707,0.00596167323422413,31286.666666666668,8,4,8,8_1,8_0,8_1_0 +7961,2,47.0,2,0.0,9,112,2,45,48,7.0,0.0,0.0,484.5347154452023,0.0,1252.6799349666019,53528.90000000001,20,50,1,4783,201707961,,,340.0,,2.0,0.0,4.0,1.0,3.0,2.0,2826.913298241558,0.0,360.0,708.0,0.0,52495.0,1,1,1,70.0,9,1.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1737.214650411804,0.03245377077451253,0.033092954574946265,26247.5,7,4,7,7_1,7_1,7_0_0 +7962,2,57.0,2,0.0,1,111,1,0,34,10.0,0.0,0.0,500.68587262670906,0.0,0.0,34788.57672205293,0,10,2,4785,201707962,,,,,1.0,2.0,2.0,0.0,1.0,1.0,4278.592895608692,0.0,372.0,0.0,0.0,86939.0,0,1,2,55.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,500.68587262670906,0.014392249404940955,0.005759047983375804,86939.0,10,5,10,10_0,10_4,10_1_0 +7963,2,83.0,4,0.0,99,112,2,0,77,2.0,0.0,0.0,985.2205880719114,0.0,0.0,11191.199999999999,0,60,1,4787,201707963,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3088.67259565824,0.0,732.0,0.0,0.0,13120.0,0,5,1,71.0,10,2.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,985.2205880719114,0.08803529452354632,0.07509303262743226,13120.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +7964,2,76.0,3,0.0,1,120,6,71,71,3.0,1110.5192063972174,0.0,815.6334376660906,212.31863304518674,0.0,16782.84,70,71,1,4789,201707964,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,2072.1279865689407,0.0,606.0,0.0,0.0,21220.0,5,5,1,80.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2138.4712771084946,0.12742010750912805,0.10077621475534848,14146.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7965,1,59.0,4,274.0,99,112,4,78,56,3.0,0.0,0.0,1911.220266478298,123.8525359430256,0.0,7632.48,70,50,1,479,201707965,,,438.0,,1.0,2.0,4.0,0.0,2.0,1.5,4281.267027935493,0.0,1420.0,0.0,0.0,23086.0,7,4,3,82.0,9,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2035.0728024213236,0.2666332309316662,0.088151815057668,15390.666666666666,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +7966,1,34.0,4,176.0,7,112,2,0,52,6.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,16737.72,0,50,2,4790,201707966,,,,298.0,1.0,0.0,3.0,1.0,2.0,1.3,1410.892860204915,1000.0,0.0,0.0,0.0,28605.0,0,1,3,78.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1594.1895599657205,0.09524532373380128,0.05573115049696628,22003.846153846152,6,3,6,6_0,6_2,6_0_0 +7967,2,26.0,3,0.0,7,111,2,55,48,7.0,0.0,0.0,545.5971573203348,0.0,1016.7086114460711,51435.16,43,30,2,4792,201707967,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4353.9864796094635,980.0,0.0,0.0,0.0,40445.0,1,1,2,72.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1562.305768766406,0.030374276443709047,0.03862790873448896,26963.333333333332,7,4,7,7_0,7_4,7_0_0 +7968,1,34.0,3,211.0,99,111,2,0,67,1.0,0.0,0.0,226.1162005410944,0.0,2547.823596542241,7346.2258467513,0,71,2,4795,201707968,,,,89.0,1.0,0.0,2.0,0.0,1.0,1.0,2042.9143273539546,0.0,168.0,1440.0,0.0,9922.0,0,4,3,35.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2773.939797083335,0.37760066937093234,0.27957466207249904,9922.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7969,2,47.0,3,0.0,1,400,5,0,52,2.0,0.0,1083.9704555790465,672.964882562781,0.0,0.0,14264.980000000001,0,60,1,4797,201707969,,,224.0,,1.0,0.0,5.0,1.0,2.0,1.5,275.49214159994676,0.0,500.0,0.0,0.0,16802.0,0,1,3,78.0,0,1.0,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1756.9353381418275,0.12316423423950312,0.10456703595654253,11201.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +7970,2,43.0,2,0.0,1,112,2,45,37,9.0,0.0,0.0,3284.0686269063713,0.0,0.0,73627.69087530162,20,20,1,4798,201707970,,,,1950.0,2.0,0.0,9.0,3.0,5.0,2.4,2388.995353945324,0.0,2440.0,0.0,0.0,93510.0,1,1,3,280.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3284.0686269063713,0.044603716181570635,0.035119972483225015,38962.5,9,5,9,9_1,9_0,9_1_0 +7971,2,41.0,4,0.0,99,112,4,0,85,1.0,0.0,0.0,1615.1157181506744,132.69914565324171,0.0,7417.839999999999,0,50,1,4799,201707971,,,,,0.0,0.0,3.0,1.0,2.0,1.3,1133.7500403405425,0.0,1200.0,0.0,0.0,8160.0,0,4,3,60.0,9,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1747.814863803916,0.2356231549620801,0.2141929980151858,6276.923076923077,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +7972,1,41.0,3,102.0,9,211,2,0,52,5.0,575.8835313174143,0.0,1224.7960862642615,0.0,0.0,33696.77999999999,0,50,1,48,201707972,,,463.0,,1.0,0.0,5.0,3.0,4.0,2.1,589.1078317783387,0.0,910.0,0.0,0.0,39078.0,0,1,2,90.0,2,2.0,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1800.6796175816758,0.05343773552196015,0.0460791140176487,18608.571428571428,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +7973,2,87.0,3,0.0,99,400,4,0,77,8.0,0.0,0.0,2876.6128755200084,44.23304855108057,645.2572531169102,18100.3802814909,0,70,1,480,201707973,,,255.0,,0.0,0.0,4.0,0.0,1.0,1.0,3033.641766645022,621.9600197495854,1880.0,0.0,0.0,28776.0,0,5,1,96.0,0,0.0,1,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3566.1031771879993,0.19701813562638945,0.12392629890144563,28776.0,8,4,8,8_1,8_0,8_0_0 +7974,2,43.0,1,0.0,3,111,2,0,38,10.0,0.0,0.0,1049.8252167979383,0.0,0.0,47437.30784974978,0,20,2,4800,201707974,,,194.0,593.0,1.0,0.0,2.0,0.0,1.0,1.0,4015.915179384277,0.0,780.0,0.0,0.0,61943.0,0,1,3,60.0,7,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1049.8252167979383,0.02213079250034793,0.01694824623925122,61943.0,10,5,10,10_0,10_2,10_0_1 +7975,2,64.0,3,0.0,6,111,1,0,77,3.0,0.0,0.0,791.4067018938305,0.0,0.0,26062.059999999998,0,71,2,4801,201707975,,,266.0,448.0,0.0,0.0,3.0,0.0,1.0,1.0,2569.861487238232,0.0,588.0,0.0,0.0,14584.0,0,5,3,74.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,791.4067018938305,0.030366237430726143,0.05426540742552321,14584.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7976,1,53.0,4,309.0,3,111,1,0,72,1.0,0.0,0.0,605.6683943065029,0.0,0.0,8853.391191295745,0,71,2,4802,201707976,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3771.6149093434915,0.0,450.0,0.0,0.0,9528.0,0,4,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,605.6683943065029,0.0684108926421289,0.06356721182897805,9528.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +7977,2,68.0,3,0.0,7,111,2,74,74,9.0,0.0,0.0,921.9618891110099,0.0,3611.186083710218,70611.14584675129,20,70,1,4804,201707977,,,488.0,,0.0,2.0,6.0,0.0,2.0,1.5,1858.4699741623801,0.0,685.0,2041.0,0.0,49719.0,5,5,1,130.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4533.147972821228,0.06419875953662621,0.09117536500776821,33146.0,9,5,9,9_1,9_3,9_0_0 +7978,2,80.0,3,0.0,9,111,2,0,77,5.0,0.0,0.0,586.825377594745,0.0,1017.3601166748532,31027.48,0,50,2,4805,201707978,,,269.0,539.0,0.0,2.0,4.0,1.0,2.0,1.5,4017.8244065510426,0.0,436.0,575.0,0.0,28150.0,0,5,3,72.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1604.1854942695982,0.051702087770892066,0.05698705130620242,18766.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +7979,1,52.0,4,18.0,1,111,2,0,62,3.0,2696.9752155360998,0.0,1103.6624074029608,148.62304313163074,0.0,21969.32,0,71,1,4806,201707979,,,653.0,,1.0,1.0,4.0,1.0,2.0,1.5,709.5383195872447,0.0,820.0,0.0,0.0,24251.0,0,1,3,90.0,6,5.0,2,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,3949.2606660706915,0.1797625354845162,0.16284939450211092,16167.333333333334,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +7980,2,31.0,3,0.0,6,111,1,0,84,2.0,0.0,0.0,471.07541779394666,0.0,0.0,13237.0,0,60,2,4807,201707980,,,,,0.0,0.0,3.0,1.0,2.0,1.3,906.3781647256792,0.0,350.0,0.0,0.0,15000.0,0,3,1,70.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,471.07541779394666,0.03558777803081866,0.03140502785292978,11538.461538461537,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +7981,2,51.0,3,0.0,2,111,2,68,68,3.0,0.0,0.0,471.07541779394666,0.0,1415.4575536345783,24875.0058467513,71,41,2,4808,201707981,,,,,2.0,2.0,2.0,1.0,3.0,1.8,2570.2192909397163,0.0,350.0,800.0,0.0,26250.0,1,1,3,32.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1886.532971428525,0.07584050363851101,0.07186792272108666,14583.333333333332,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +7982,1,22.0,3,434.0,9,111,2,0,84,8.0,0.0,0.0,53.83719060502248,0.0,0.0,14087.424691045117,0,41,2,4809,201707982,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2910.714334339067,0.0,40.0,0.0,0.0,25379.0,0,3,3,33.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,53.83719060502248,0.0038216488666835535,0.002121328287364454,25379.0,7,4,7,7_0,7_3,7_0_0 +7983,2,86.0,3,0.0,1,112,2,0,,5.0,793.228004569441,693.9631597817199,722.7642838724267,53.079658261296686,0.0,21817.100315994117,0,70,1,481,201707983,,,120.0,,0.0,2.0,5.0,0.0,1.0,1.0,1332.0173850287845,0.0,537.0,0.0,0.0,21480.0,0,5,1,120.0,8,1.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2263.035106484884,0.10372758403763918,0.10535545188477115,21480.0,6,3,6,6_1,6_1,6_1_0 +7984,2,68.0,3,0.0,1,211,2,0,77,2.0,2696.9752155360998,0.0,672.964882562781,212.31863304518674,0.0,14657.52,0,60,1,4811,201707984,,,90.0,,0.0,1.0,3.0,0.0,1.0,1.0,2312.8079442127028,0.0,500.0,0.0,0.0,11849.0,0,5,1,80.0,1,3.0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3582.2587311440675,0.24439732854835383,0.30232582759254517,11849.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +7985,2,49.0,1,0.0,1,112,2,43,21,8.0,0.0,0.0,1345.929765125562,0.0,1946.2541362475451,35326.76031599411,60,50,1,4812,201707985,,,550.0,,3.0,0.0,5.0,2.0,4.0,2.5,2372.0583727854205,0.0,1000.0,1100.0,0.0,71771.0,1,1,2,130.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3292.183901373107,0.09319235253742127,0.04587067062425084,28708.4,8,4,8,8_1,8_0,8_1_0 +7986,2,45.0,3,0.0,8,112,2,38,43,4.0,0.0,0.0,1076.7438121004495,0.0,2123.1863304518674,102209.72769947209,31,33,1,4814,201707986,,,450.0,,2.0,0.0,7.0,3.0,5.0,2.8,1451.3372362997432,0.0,800.0,1200.0,0.0,55615.0,1,1,1,120.0,6,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3199.930142552317,0.031307491122186455,0.057537177785711,19862.5,5,3,5,5_1,5_0,5_0_0 +7987,1,49.0,5,437.0,4,111,1,0,85,1.0,0.0,0.0,67.2964882562781,0.0,35.38643884086446,30145.34,0,50,2,4817,201707987,,,,,0.0,0.0,5.0,4.0,7.0,3.8,1300.3164925422975,0.0,50.0,20.0,0.0,26704.0,0,7,3,100.0,9,7.0,5,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,102.68292709714255,0.0034062620324449002,0.003845226449114086,7027.368421052632,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7989,1,49.0,3,128.0,9,111,2,0,62,3.0,0.0,0.0,540.0298393884947,0.0,1006.3340337782541,23905.8,0,50,2,4819,201707989,,,200.0,407.0,1.0,2.0,3.0,1.0,2.0,1.5,811.9004499187458,970.0,0.0,0.0,0.0,22077.0,0,1,3,63.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1546.3638731667488,0.06468571949764279,0.07004411256813647,14718.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +7990,2,66.0,3,0.0,5,111,2,0,75,3.0,50.76659229244423,0.0,538.3719060502248,0.0,1415.4575536345783,14863.66,0,50,1,482,201707990,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1573.5838890345346,0.0,400.0,800.0,0.0,14114.0,0,5,2,85.0,8,7.0,1,3,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2004.5960519772473,0.1348655749645274,0.14202891115043553,14114.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +7991,2,23.0,3,0.0,1,111,2,67,67,1.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,22931.739999999998,71,31,1,4820,201707991,,,350.0,,2.0,0.0,5.0,0.0,2.0,1.5,2082.9224831537226,800.0,0.0,0.0,0.0,12618.0,4,4,3,70.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1275.3516479725763,0.055615127677732974,0.10107399334067017,8412.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +7992,2,42.0,2,0.0,4,111,1,38,34,10.0,0.0,0.0,740.261370819059,0.0,0.0,58532.71349974937,12,10,2,4822,201707992,,,,,2.0,0.0,3.0,2.0,4.0,2.1,4760.437688118404,0.0,550.0,0.0,0.0,139684.0,1,1,2,71.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,740.261370819059,0.012646968277358759,0.005299543045868238,66516.19047619047,10,5,10,10_0,10_4,10_0_1 +7993,2,54.0,1,0.0,6,112,2,0,38,4.0,0.0,0.0,1532.7550118476613,0.0,2856.256120241631,71929.49259439862,33,12,1,4823,201707993,,,492.0,,1.0,2.0,8.0,1.0,3.0,2.0,1554.4487376860475,2753.130018103787,0.0,0.0,0.0,35728.0,1,1,1,165.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4389.011132089292,0.06101824124964116,0.12284513916506079,17864.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7994,2,50.0,4,0.0,1,111,2,22,22,3.0,0.0,0.0,1211.3367886130059,0.0,2123.1863304518674,42135.49344410586,50,41,1,4824,201707994,,,560.0,,2.0,1.0,5.0,2.0,4.0,2.5,3691.6211815920665,0.0,900.0,1200.0,0.0,36288.0,4,1,2,130.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3334.5231190648733,0.07913810534788752,0.09189051805183182,14515.2,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +7995,2,37.0,4,0.0,9,111,3,0,43,4.0,0.0,0.0,1130.581002705472,0.0,0.0,22412.990875301628,0,44,2,4825,201707995,,,480.0,640.0,1.0,0.0,3.0,1.0,2.0,1.3,4978.721481536274,0.0,840.0,0.0,0.0,20648.0,0,1,3,70.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1130.581002705472,0.05044311172014685,0.0547549885076265,15883.076923076922,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7996,2,63.0,4,0.0,5,111,2,0,43,9.0,0.0,0.0,549.1393441712293,0.0,1068.6704529941067,25054.792027330717,0,20,1,4826,201707996,,,840.0,850.0,1.0,1.0,4.0,0.0,1.0,1.0,2115.6650667457557,0.0,408.0,604.0,0.0,35246.0,0,1,3,90.0,5,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1617.809797165336,0.06457087312481252,0.04590052196462963,35246.0,9,5,9,9_1,9_2,9_0_0 +7997,2,58.0,1,0.0,6,111,2,33,42,10.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,64414.34759735455,30,30,1,4829,201707997,,,260.0,,2.0,1.0,4.0,0.0,2.0,1.5,1595.1022195922294,1000.0,0.0,0.0,0.0,62269.0,1,1,1,100.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1594.1895599657205,0.024748982477177068,0.025601656682550232,41512.666666666664,10,5,10,10_1,10_3,10_0_0 +7998,2,38.0,2,0.0,6,111,4,46,43,9.0,0.0,0.0,1607.040139559921,100.85135069646371,0.0,49388.2,42,33,1,4831,201707998,,,488.0,,2.0,0.0,5.0,2.0,4.0,2.1,2296.8601967049194,0.0,1194.0,0.0,0.0,66589.0,1,1,2,80.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1707.8914902563847,0.03458096246181041,0.025648252568087594,31709.04761904762,8,4,8,8_1,8_2,8_0_0 +7999,2,48.0,5,0.0,4,111,5,85,65,2.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,24187.680000000004,71,71,1,4832,201707999,,,320.0,,2.0,0.0,4.0,2.0,4.0,2.5,2405.407336260144,1500.0,0.0,0.0,0.0,27675.0,6,1,2,120.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2391.2843399485805,0.09886373310497659,0.08640593820952414,11070.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +8000,2,61.0,3,0.0,4,111,2,78,77,5.0,0.0,0.0,2463.0514701797783,0.0,0.0,20094.719999999998,71,50,1,4834,201708000,,,276.0,,0.0,6.0,4.0,0.0,2.0,1.5,3145.5721996398524,0.0,1830.0,0.0,0.0,29280.0,5,5,1,100.0,4,3.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2463.0514701797783,0.12257207217516734,0.08412061032034762,19520.0,5,3,5,5_1,5_1,5_0_1 +8001,1,45.0,3,462.0,3,111,2,0,64,1.0,0.0,0.0,1091.1943146406695,0.0,2033.4172228921423,18127.219999999998,0,70,2,4835,201708001,,,434.0,,1.0,2.0,5.0,3.0,4.0,2.1,312.14725165107177,1960.0,0.0,0.0,0.0,21039.0,0,4,3,91.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,3124.611537532812,0.17237124818548086,0.1485152116323405,10018.571428571428,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8002,1,53.0,3,350.0,1,112,5,78,64,2.0,0.0,0.0,1472.4471630473647,0.0,330.8632031620827,18318.519999999997,60,71,1,4839,201708002,,,590.0,,1.0,6.0,7.0,2.0,4.0,2.5,1999.2941595672362,0.0,1094.0,187.0,0.0,27440.0,7,1,3,120.0,8,1.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1803.3103662094475,0.09844192468657118,0.06571830780646674,10976.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +8003,1,63.0,2,196.0,1,111,1,0,78,2.0,0.0,0.0,565.290501352736,0.0,1008.513506964637,7060.2076477239725,0,71,2,4841,201708003,,,,59.0,0.0,0.0,2.0,0.0,1.0,1.0,3499.1028034370925,0.0,420.0,570.0,0.0,12624.0,0,5,3,40.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1573.804008317373,0.22291185852369746,0.12466761789586288,12624.0,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +8004,1,45.0,4,300.0,6,111,1,0,56,4.0,0.0,0.0,178.15417381888486,0.0,331.9864853701457,16251.979999999998,0,44,2,4842,201708004,,,,217.0,1.0,1.0,3.0,1.0,2.0,1.3,820.8502792339668,320.0,0.0,0.0,0.0,21280.0,0,1,3,72.0,8,6.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,510.14065918903054,0.03138944665136375,0.023972775337830383,16369.23076923077,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +8005,2,30.0,5,0.0,1,221,2,0,56,1.0,0.0,0.0,0.0,0.0,0.0,10594.900000000001,0,42,2,4843,201708005,,,,390.0,1.0,0.0,3.0,1.0,2.0,1.3,2886.9975573666898,0.0,0.0,0.0,0.0,8960.0,0,1,3,70.0,1,3.0,2,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,6892.307692307692,1,1,1_0,1_0_0,1_1_0,1_1_0_0 +8006,2,30.0,4,0.0,1,300,2,0,63,3.0,2379.684013708323,0.0,775.2555447123236,67.23423379764247,0.0,37572.16,0,50,1,4844,201708006,,,163.0,,1.0,0.0,4.0,0.0,1.0,1.0,3394.1078341102657,0.0,576.0,0.0,0.0,13831.0,0,1,2,75.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3222.1737922182892,0.08575961010009243,0.23296752167003754,13831.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8007,2,27.0,3,0.0,6,111,2,0,46,2.0,0.0,0.0,313.99673135578456,0.0,585.1261804648818,19790.439999999995,0,43,2,4846,201708007,,,,419.0,1.0,0.0,3.0,1.0,2.0,1.3,1341.8991966225199,564.0,0.0,0.0,0.0,16620.0,0,1,3,64.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,899.1229118206663,0.045432184015144005,0.05409885149342156,12784.615384615385,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +8008,2,71.0,2,0.0,1,221,2,75,74,9.0,0.0,0.0,2826.45250676368,0.0,0.0,49996.17999999999,50,50,1,4847,201708008,,,125.0,,0.0,2.0,6.0,0.0,2.0,1.5,1631.5742852582696,0.0,2100.0,0.0,0.0,51203.0,5,5,1,120.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2826.45250676368,0.05653336928468696,0.05520091609405074,34135.333333333336,9,5,9,9_1,9_1,9_1_0 +8009,2,51.0,2,0.0,8,111,2,54,47,8.0,0.0,0.0,2018.894647688343,0.0,0.0,30557.931961244918,42,71,1,4848,201708009,,,600.0,,2.0,2.0,5.0,1.0,3.0,2.0,2058.0228391050227,0.0,1500.0,0.0,0.0,58501.0,1,1,1,105.0,8,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.06606777743496534,0.034510429696728996,29250.5,8,4,8,8_1,8_2,8_0_0 +8010,2,53.0,3,0.0,6,111,2,0,43,10.0,0.0,0.0,1615.1157181506744,0.0,2123.1863304518674,65484.52269899829,0,33,1,4849,201708010,,,674.0,,2.0,1.0,10.0,2.0,3.0,2.0,1932.9589967794752,0.0,1200.0,1200.0,0.0,100297.0,0,1,5,220.0,8,6.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3738.3020486025416,0.057086803026506996,0.03727232169060432,50148.5,10,5,10,10_1,10_2,10_0_0 +8011,2,59.0,1,0.0,4,112,2,0,34,10.0,0.0,0.0,1152.115878947481,0.0,0.0,29496.840000000004,0,33,1,485,201708011,,,315.0,,1.0,0.0,5.0,0.0,1.0,1.0,2158.717038252693,0.0,856.0,0.0,0.0,59835.0,0,1,1,100.0,9,2.0,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1152.115878947481,0.039058959500322094,0.01925488224195673,59835.0,10,5,10,10_1,10_1,10_0_1 +8012,2,88.0,1,0.0,1,111,2,0,74,10.0,0.0,0.0,726.8020731678034,0.0,6369.558991355602,26501.32,0,41,1,4850,201708012,,,214.0,,0.0,0.0,8.0,0.0,1.0,1.0,2670.384599066387,0.0,540.0,3600.0,0.0,93792.0,0,5,1,206.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,7096.361064523406,0.26777387181179674,0.07566062206289882,93792.0,10,5,10,10_1,10_2,10_1_0 +8014,2,57.0,2,0.0,1,112,2,78,53,8.0,0.0,624.566843803548,807.5578590753372,0.0,2300.11852465619,26630.279999999995,70,50,1,4852,201708014,,,400.0,,1.0,3.0,5.0,0.0,2.0,1.5,1592.477809319234,0.0,600.0,1300.0,0.0,45393.0,5,1,1,120.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3732.243227535075,0.1401503561935915,0.08222067780351762,30262.0,8,4,8,8_1,8_0,8_1_0 +8015,2,30.0,2,0.0,9,300,2,63,46,6.0,0.0,0.0,1857.3830758732754,0.0,0.0,39921.82000000001,50,31,1,4855,201708015,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3481.4669551723387,0.0,1380.0,0.0,0.0,37980.0,1,1,2,94.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1857.3830758732754,0.0465255110080972,0.04890424107091299,21100.0,5,3,5,5_1,5_0,5_0_0 +8016,2,36.0,2,0.0,1,111,4,38,38,10.0,0.0,0.0,36.34010365839017,0.0,153.93100895776038,61361.03999999999,20,12,1,4858,201708016,,,700.0,,2.0,0.0,6.0,2.0,4.0,2.1,2282.007598333637,0.0,27.0,87.0,0.0,93805.0,1,1,2,160.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,190.27111261615056,0.0031008456280426566,0.002028368558351373,44669.04761904762,10,5,10,10_1,10_3,10_1_0 +8017,2,87.0,3,0.0,6,111,3,75,74,9.0,0.0,0.0,672.964882562781,0.0,0.0,32224.371693502602,33,30,1,486,201708017,,,125.0,,0.0,1.0,5.0,0.0,2.0,1.5,1736.085923192221,0.0,500.0,0.0,0.0,55939.0,5,5,1,130.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,672.964882562781,0.020883723939246607,0.01203033451729171,37292.666666666664,9,5,9,9_1,9_2,9_0_0 +8018,2,78.0,3,0.0,3,112,2,0,74,9.0,0.0,0.0,631.2410598438886,0.0,1983.4098970304528,24361.417038047046,0,30,1,4860,201708018,,,468.0,,0.0,3.0,4.0,0.0,1.0,1.0,2389.177022624102,0.0,469.0,1121.0,0.0,39145.0,0,5,1,100.0,6,0.0,1,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2614.6509568743413,0.10732753980570364,0.06679399557732384,39145.0,9,5,9,9_1,9_0,9_0_1 +8019,2,47.0,2,0.0,7,111,1,54,38,10.0,0.0,0.0,484.5347154452023,0.0,0.0,42700.4,60,20,2,4863,201708019,,,,515.0,2.0,0.0,2.0,0.0,2.0,1.5,3705.758931392867,0.0,360.0,0.0,0.0,67263.0,1,1,3,47.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,484.5347154452023,0.011347310925546418,0.007203584666833212,44842.0,10,5,10,10_0,10_4,10_0_0 +8020,2,44.0,2,0.0,4,112,2,54,53,7.0,0.0,0.0,915.2322402853821,0.0,1769.3219420432229,38874.9339488963,43,50,1,4866,201708020,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,1726.4983854101233,0.0,680.0,1000.0,0.0,52140.0,1,1,2,85.0,10,3.0,4,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2684.554182328605,0.06905617346791201,0.051487421985588894,24828.571428571428,7,4,7,7_1,7_1,7_0_1 +8021,2,93.0,3,0.0,4,111,4,0,72,3.0,0.0,0.0,1707.984871944338,276.0142229587428,0.0,18807.8,0,44,1,4870,201708021,,,130.0,,0.0,3.0,5.0,0.0,1.0,1.0,1841.0155758489655,0.0,1269.0,0.0,0.0,16567.0,0,5,1,90.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1983.9990949030807,0.10548810041063181,0.11975608709501302,16567.0,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +8022,2,41.0,1,0.0,1,111,2,0,46,10.0,0.0,0.0,3424.0453224794296,0.0,371.5576078290768,35995.54,0,31,8,4871,201708022,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3818.2681551262317,0.0,2544.0,210.0,0.0,48584.0,0,1,3,37.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3795.6029303085065,0.10544647837783531,0.07812454574157143,48584.0,10,5,10,10_0,10_4,10_1_0 +8023,1,54.0,2,138.0,1,111,1,56,38,7.0,0.0,0.0,437.42717366580763,0.0,0.0,16145.160000000002,31,50,2,4872,201708023,,,,,2.0,0.0,1.0,0.0,2.0,1.5,5050.498017107999,0.0,325.0,0.0,0.0,34496.0,1,1,2,20.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,437.42717366580763,0.027093393541210344,0.012680518717121047,22997.333333333332,6,3,6,6_0,6_4,6_1_0 +8024,2,82.0,2,0.0,6,111,4,21,74,9.0,0.0,416.377895869032,5653.692241768463,0.0,3011.2005145455814,69006.37818248865,50,10,1,4873,201708024,,,,,1.0,4.0,8.0,0.0,2.0,1.5,1752.038852125142,2902.480092164732,3000.0,0.0,0.0,68864.0,1,5,1,230.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,9081.270652183077,0.1316004533402331,0.13187254083676633,45909.333333333336,10,5,10,10_1,10_4,10_0_0 +8025,2,48.0,3,0.0,6,112,4,56,68,2.0,0.0,0.0,2018.894647688343,0.0,0.0,28638.74,71,71,1,4876,201708025,,,,,4.0,1.0,7.0,5.0,7.0,3.8,675.2263105122469,0.0,1500.0,0.0,0.0,51331.0,1,1,2,101.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.0704952329497856,0.03933090428178573,13508.157894736843,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +8026,2,39.0,4,0.0,9,111,2,0,43,8.0,0.0,0.0,597.5928157157495,0.0,1022.6680825009828,44567.740000000005,0,33,2,4877,201708026,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1608.8867217559025,0.0,444.0,578.0,0.0,40124.0,0,1,2,74.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1620.2608982167321,0.03635501594239986,0.0403813403004868,30864.615384615383,8,4,8,8_0,8_4,8_0_0 +8027,2,36.0,2,0.0,3,111,4,0,37,9.0,0.0,0.0,718.7264945770501,0.0,0.0,29794.78,0,20,2,4879,201708027,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3271.744167784447,0.0,534.0,0.0,0.0,36389.0,0,1,1,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,718.7264945770501,0.02412256424034848,0.019751202137378056,36389.0,9,5,9,9_0,9_4,9_0_1 +8028,2,59.0,3,0.0,1,111,5,0,67,5.0,0.0,0.0,772.5636851820725,53.079658261296686,0.0,15150.460000000001,0,71,1,4882,201708028,,,,,1.0,0.0,3.0,1.0,2.0,1.3,636.0237580666984,0.0,574.0,0.0,0.0,24990.0,0,1,1,38.0,7,5.0,2,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,825.6433434433692,0.05449625578651534,0.03303894931746175,19223.076923076922,5,3,5,5_1,5_2,5_1_0 +8029,2,61.0,3,0.0,8,112,6,0,54,4.0,1903.7472109666587,0.0,969.0694308904046,0.0,0.0,26262.411191295745,0,70,1,4883,201708029,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2289.903962962274,0.0,720.0,0.0,0.0,18009.0,0,4,1,118.0,8,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2872.8166418570636,0.10938891409975382,0.15952116396563182,18009.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8030,2,81.0,1,0.0,3,112,2,71,71,7.0,3696.4425012935953,0.0,413.20043789354753,0.0,0.0,78148.99999999999,50,50,1,4884,201708030,,,564.0,,0.0,3.0,8.0,0.0,2.0,1.5,1691.6068370891212,0.0,307.0,0.0,0.0,36442.0,5,5,1,120.0,8,1.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4109.6429391871425,0.05258727481077356,0.11277215682967846,24294.666666666668,7,4,7,7_1,7_1,7_0_1 +8031,2,47.0,4,0.0,99,112,4,0,37,2.0,0.0,0.0,605.6683943065029,0.0,0.0,18133.900918721818,0,50,2,4885,201708031,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3786.6574199686843,0.0,450.0,0.0,0.0,14240.0,0,4,1,42.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,605.6683943065029,0.03339978513289428,0.04253289285860273,14240.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +8032,1,56.0,3,89.0,99,111,6,21,22,10.0,1586.456009138882,0.0,2018.1289749063596,0.0,1857.304339380111,75513.00783129939,50,30,1,4887,201708032,,,411.0,,2.0,0.0,8.0,2.0,4.0,2.5,1796.3485417269085,1449.1577383774215,900.0,200.0,0.0,189488.0,1,1,1,220.0,8,7.0,4,3,1,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,5461.889323425353,0.0723304431949995,0.028824460247748422,75795.2,10,5,10,10_1,10_3,10_0_0 +8033,2,50.0,3,0.0,9,300,5,64,56,1.0,0.0,624.566843803548,1763.1679923144861,0.0,0.0,43136.31999999999,50,41,1,4888,201708033,,,410.0,,2.0,1.0,6.0,1.0,4.0,2.3,2840.49222442784,0.0,1310.0,0.0,0.0,22087.0,4,1,1,169.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2387.734836118034,0.05535323449283653,0.10810589197799764,9603.04347826087,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8034,2,62.0,2,0.0,6,112,2,77,77,8.0,0.0,0.0,597.5928157157495,0.0,1211.9855302996077,32043.810875301628,50,60,1,489,201708034,,,240.0,,0.0,2.0,5.0,0.0,2.0,1.5,2649.731838383571,0.0,444.0,685.0,0.0,40645.0,5,5,1,86.0,10,4.0,3,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1809.578346015357,0.05647200805975683,0.04452154867795195,27096.666666666668,7,4,7,7_1,7_2,7_0_0 +8035,2,30.0,3,0.0,9,112,4,54,46,8.0,0.0,0.0,1682.4122064069525,159.23897478389006,0.0,28734.979999999996,31,50,2,4890,201708035,,,,756.0,2.0,0.0,3.0,1.0,3.0,1.8,2709.491421190756,0.0,1250.0,0.0,0.0,48230.0,1,1,3,66.0,9,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1841.6511811908426,0.06409091571286435,0.03818476427930422,26794.444444444445,7,4,7,7_0,7_1,7_0_0 +8036,2,49.0,2,0.0,7,221,6,52,62,8.0,0.0,0.0,2026.96112766887,106.15931652259337,516.6539678572893,29443.850875301632,50,50,1,4891,201708036,,,326.0,,2.0,1.0,5.0,1.0,3.0,2.0,1810.5228697225818,498.0,1300.0,0.0,0.0,59448.0,1,1,1,104.0,3,4.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2649.7744120487528,0.08999415271021705,0.044572978267540586,29724.0,8,4,8,8_1,8_2,8_0_0 +8037,0,26.0,1,0.0,4,111,1,0,47,6.0,0.0,0.0,494.15974559954344,0.0,43.01715020779402,42316.734887136176,0,30,2,4893,201708037,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4461.208414529521,41.46400131663903,350.0,0.0,0.0,23359.0,0,1,5,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,537.1768958073375,0.012694195269083329,0.022996570735362706,23359.0,6,3,6,6_0,6_4,6_0_1 +8038,2,50.0,3,0.0,9,111,2,43,53,5.0,0.0,0.0,1009.4473238441715,0.0,1649.0080499842838,60646.397558087905,33,42,1,4894,201708038,,,795.0,,3.0,0.0,7.0,2.0,4.0,2.5,1103.3287595897552,0.0,750.0,932.0,0.0,54143.0,1,1,2,125.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2658.4553738284553,0.04383533863296913,0.049100629330263476,21657.2,6,3,6,6_1,6_2,6_0_0 +8039,1,43.0,3,39.0,1,112,5,52,62,3.0,0.0,735.6009493686231,1770.4071023251681,0.0,3299.115698365823,50827.079999999994,50,31,1,4896,201708039,,,1968.0,,2.0,0.0,9.0,4.0,6.0,2.9,1953.7649727519308,3180.0,0.0,0.0,0.0,39340.0,1,1,2,120.0,9,0.0,4,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,5805.123750059614,0.11421320583554308,0.1475628812928219,13565.517241379312,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +8040,2,40.0,1,0.0,9,112,2,47,38,10.0,0.0,0.0,790.0607721287049,0.0,1077.5170627043228,52976.799999999996,20,12,1,4899,201708040,,,619.0,,2.0,0.0,6.0,2.0,4.0,2.1,3423.7165476996215,0.0,587.0,609.0,0.0,87620.0,1,1,1,160.0,9,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1867.5778348330277,0.035252749030387415,0.021314515348470984,41723.80952380952,10,5,10,10_1,10_1,10_0_0 +8041,2,36.0,2,0.0,3,111,2,0,54,5.0,0.0,0.0,621.8195514880097,0.0,0.0,43864.95999999999,0,20,2,490,201708041,,,,,1.0,0.0,2.0,2.0,3.0,1.6,5618.06301485157,0.0,462.0,0.0,0.0,30506.0,0,1,2,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,621.8195514880097,0.014175769258378665,0.02038351640621549,19066.25,5,3,5,5_0,5_4,5_0_1 +8042,2,76.0,2,0.0,5,112,5,0,75,9.0,0.0,471.89494865156956,1077.0185900148397,0.0,404.317958243398,32085.0177896424,0,41,1,4901,201708042,,,363.0,,0.0,2.0,6.0,0.0,1.0,1.0,2902.5813243942607,389.7199203564994,639.0,0.0,0.0,39894.0,0,5,1,149.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1953.2314969098072,0.06087674657734939,0.048960532834757285,39894.0,9,5,9,9_1,9_1,9_0_0 +8043,2,83.0,3,0.0,4,112,2,77,78,6.0,0.0,0.0,1238.7282398344337,0.0,2308.3435310892946,30971.08,70,71,1,4902,201708043,,,,,0.0,1.0,4.0,1.0,3.0,2.0,2633.8690357919363,2225.0,0.0,0.0,0.0,44267.0,5,5,1,80.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3547.0717709237283,0.11452851405000175,0.0801290299980511,22133.5,6,3,6,6_1,6_2,6_0_1 +8044,2,56.0,3,0.0,7,112,2,72,43,7.0,1164.4587107079394,582.9290542166448,1767.205781609863,180.47083808840873,0.0,67361.94584675129,44,33,1,4903,201708044,,,647.0,,3.0,0.0,6.0,2.0,4.0,2.5,2023.6401976017128,0.0,1313.0,0.0,0.0,65321.0,7,1,1,140.0,9,3.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3695.064384622856,0.054853884313691634,0.05656778654066619,26128.4,7,4,7,7_1,7_1,7_0_0 +8045,2,27.0,1,0.0,4,111,1,42,38,9.0,0.0,0.0,985.2205880719114,0.0,0.0,72051.56,20,12,2,4907,201708045,,,,,2.0,0.0,3.0,0.0,2.0,1.5,5458.3515325495555,0.0,732.0,0.0,0.0,49659.0,1,1,2,62.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,985.2205880719114,0.013673827299116236,0.019839718642580627,33106.0,9,5,9,9_0,9_4,9_0_1 +8046,2,64.0,5,0.0,99,111,1,0,77,4.0,0.0,0.0,497.99401309645793,0.0,0.0,20528.308161188146,0,30,2,4909,201708046,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3920.676272393506,0.0,370.0,0.0,0.0,19570.0,0,5,3,35.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,497.99401309645793,0.02425889212039356,0.025446807005439855,19570.0,5,3,5,5_0,5_2,5_0_0 +8047,2,80.0,1,0.0,4,111,2,75,74,9.0,1903.7472109666587,0.0,4022.5559531317554,0.0,6452.572531169103,75662.65346536764,33,30,1,4910,201708047,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1596.6081722602357,6219.600197495854,416.0,0.0,0.0,49862.0,5,5,1,260.0,9,7.0,3,2,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,12378.875695267518,0.1636061534761477,0.24826271900981745,33241.333333333336,9,5,9,9_1,9_3,9_0_1 +8048,1,42.0,5,462.0,9,400,2,0,85,1.0,0.0,0.0,697.1916183350411,0.0,1139.4433306758356,19165.880315994113,0,42,1,4911,201708048,,,375.0,47.0,0.0,0.0,4.0,3.0,4.0,1.9,1363.2932701017746,0.0,518.0,644.0,0.0,13704.0,0,6,3,78.0,0,0.0,2,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1836.6349490108767,0.09582836367177912,0.13402181472642125,7212.631578947368,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +8049,2,49.0,4,0.0,7,111,1,0,37,1.0,0.0,0.0,578.7497990039916,0.0,1716.2422837819263,52955.65878865031,0,30,2,4913,201708049,,,,1055.0,1.0,0.0,5.0,4.0,5.0,2.8,772.5614460064672,0.0,430.0,970.0,0.0,20800.0,0,4,3,110.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2294.992082785918,0.043337995131840196,0.11033615782624605,7428.571428571429,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +8050,2,53.0,2,0.0,2,111,7,0,46,7.0,0.0,0.0,605.6683943065029,0.0,318.4779495677801,15478.777038047045,0,60,8,4914,201708050,,,,303.0,1.0,0.0,1.0,0.0,1.0,1.0,2554.6196578123486,0.0,450.0,180.0,0.0,25589.0,0,1,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,924.146343874283,0.059704093004422684,0.036114984715083946,25589.0,7,4,7,7_0,7_4,7_0_1 +8051,2,51.0,2,0.0,1,211,2,54,38,10.0,0.0,0.0,1887.3207788938112,0.0,3516.9818293899807,66817.57665497727,50,31,1,4915,201708051,,,,,2.0,2.0,6.0,0.0,2.0,1.5,1591.986255193004,3390.0,0.0,0.0,0.0,99630.0,1,1,1,230.0,3,3.0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,5404.302608283791,0.08088145183998113,0.05424372787597904,66420.0,10,5,10,10_1,10_1,10_1_0 +8052,2,51.0,3,0.0,9,112,5,0,67,2.0,0.0,416.377895869032,1345.929765125562,658.1877624400789,0.0,38829.90000000001,0,50,1,4917,201708052,,,184.0,,1.0,4.0,4.0,2.0,3.0,2.0,1292.548333991656,0.0,1000.0,0.0,0.0,26110.0,0,1,2,74.0,7,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2420.495423434673,0.06233586549114657,0.09270376956854358,13055.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8053,2,36.0,3,0.0,7,111,4,46,38,10.0,0.0,0.0,2018.894647688343,0.0,0.0,76960.09999999999,20,12,2,4918,201708053,,,,1211.0,2.0,0.0,3.0,1.0,3.0,1.8,2658.3936713269604,0.0,1500.0,0.0,0.0,89681.0,1,1,3,99.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2018.894647688343,0.026233004474894694,0.022511955126373957,49822.777777777774,10,5,10,10_0,10_4,10_0_0 +8054,2,54.0,3,0.0,1,111,2,68,68,7.0,0.0,69.396315978172,924.653748641261,0.0,2123.1863304518674,20382.926162745418,42,71,1,492,201708054,,,566.0,,2.0,2.0,6.0,0.0,2.0,1.5,1409.8590149016843,0.0,687.0,1200.0,0.0,36460.0,1,1,1,150.0,5,4.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3117.2363950713006,0.15293370393348046,0.08549743266789085,24306.666666666668,7,4,7,7_1,7_2,7_1_0 +8055,1,27.0,4,9999.0,9,111,4,0,63,1.0,0.0,0.0,807.5578590753372,0.0,0.0,9871.176658454031,0,71,2,4922,201708055,,,,500.0,1.0,0.0,1.0,0.0,1.0,1.0,6155.567227411937,0.0,600.0,0.0,0.0,8092.0,0,4,3,25.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,807.5578590753372,0.08180968561470486,0.09979706612399125,8092.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8056,2,47.0,9,0.0,9,120,4,56,67,4.0,0.0,0.0,1736.249397011975,99.08202875442048,0.0,24981.59087530163,71,50,1,4926,201708056,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.3,2258.454751715688,0.0,1290.0,0.0,0.0,37640.0,1,1,2,90.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1835.3314257663953,0.07346735581923725,0.04876013352195524,16365.21739130435,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8057,2,75.0,2,0.0,4,111,2,77,78,6.0,0.0,0.0,387.6277723561618,0.0,925.3553756886056,19838.94,50,50,1,4928,201708057,,,210.0,,0.0,2.0,4.0,0.0,2.0,1.5,2094.042171609939,0.0,288.0,523.0,0.0,36476.0,5,5,1,82.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1312.9831480447674,0.06618212203095364,0.035995809519814875,24317.333333333332,7,4,7,7_1,7_3,7_0_1 +8058,2,71.0,4,0.0,99,400,4,0,75,3.0,0.0,0.0,1682.4122064069525,123.8525359430256,0.0,12280.391191295745,0,70,1,493,201708058,,,,,0.0,3.0,2.0,0.0,1.0,1.0,2453.3619370143415,0.0,1250.0,0.0,0.0,15530.0,0,5,3,30.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1806.264742349978,0.14708527718809525,0.1163080967385691,15530.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +8059,2,32.0,2,0.0,5,120,5,31,38,9.0,0.0,846.6350549336984,1884.3016711757866,0.0,0.0,43465.380000000005,20,20,1,4931,201708059,,,400.0,,2.0,0.0,5.0,0.0,2.0,1.5,1845.232717758928,0.0,1400.0,0.0,0.0,53457.0,1,1,2,150.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2730.936726109485,0.06283015876335338,0.05108660654562517,35638.0,9,5,9,9_1,9_0,9_0_0 +8060,1,29.0,4,290.0,9,111,2,65,55,3.0,0.0,0.0,942.1508355878933,0.0,1716.2422837819263,30337.779999999995,50,50,1,4932,201708060,,,520.0,,2.0,0.0,4.0,3.0,5.0,2.4,2116.405271127539,0.0,700.0,970.0,0.0,37230.0,4,1,3,95.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2658.3931193698195,0.08762648814019416,0.07140459627638517,15512.5,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +8061,1,42.0,4,151.0,4,111,1,0,56,3.0,0.0,0.0,289.5005324556879,0.0,1583.3779845319882,19234.05672205293,0,71,8,4933,201708061,590.0,590.0,,156.0,1.0,0.0,3.0,2.0,3.0,1.8,1220.3694381164112,520.0,0.0,590.0,0.0,27322.0,0,1,3,48.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1872.878516987676,0.09737303700681693,0.06854836823759886,15178.888888888889,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +8062,1,25.0,4,259.0,99,111,2,63,55,3.0,0.0,0.0,497.99401309645793,0.0,1344.6846759528494,31219.170875301632,71,50,2,4934,201708062,,,,461.0,2.0,0.0,2.0,1.0,3.0,1.8,1796.6139692962006,0.0,370.0,760.0,0.0,28428.0,1,1,3,30.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1842.6786890493072,0.05902394706155065,0.06481914623080438,15793.333333333332,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +8063,2,46.0,2,0.0,7,111,2,43,38,9.0,2696.9752155360998,0.0,1144.0403003567276,141.54575536345783,0.0,78305.42000000001,33,12,1,4935,201708063,,,340.0,,2.0,0.0,7.0,3.0,5.0,2.8,1545.806899800365,0.0,850.0,0.0,0.0,92312.0,1,1,2,300.0,8,6.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3982.561271256285,0.05085933095379968,0.043142400459921626,32968.57142857143,9,5,9,9_1,9_2,9_0_0 +8064,2,43.0,2,0.0,1,120,2,54,37,7.0,0.0,0.0,3230.231436301349,0.0,0.0,56451.6,42,31,1,4936,201708064,,,550.0,,2.0,0.0,5.0,3.0,5.0,2.4,2075.5288733755388,0.0,2400.0,0.0,0.0,60923.0,1,1,2,128.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3230.231436301349,0.05722125566505376,0.05302154254224757,25384.583333333336,7,4,7,7_1,7_0,7_1_0 +8065,1,50.0,5,252.0,8,300,2,13,13,2.0,1903.7472109666587,0.0,693.5187326275526,212.31863304518674,660.3132556896381,32421.284698617674,42,50,1,4937,201708065,,,,,2.0,0.0,4.0,3.0,5.0,2.8,2207.8224994397524,636.472420210409,251.99999999999994,0.0,0.0,37591.0,1,1,2,96.0,0,0.0,4,7,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3469.897832329036,0.10702530342596141,0.09230661148490427,13425.357142857143,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +8066,2,68.0,1,0.0,5,112,6,75,74,10.0,2538.3296146222115,0.0,3019.346723971055,0.0,2365.9432614286707,45996.27879249009,50,31,1,4939,201708066,,,350.0,,0.0,3.0,7.0,0.0,2.0,1.5,2226.3036447691547,2280.5200724151464,1300.0,0.0,0.0,103140.0,6,5,1,140.0,8,0.0,3,7,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,7923.619600021937,0.17226653564234945,0.07682392476267148,68760.0,10,5,10,10_1,10_0,10_0_0 +8067,0,32.0,4,0.0,1,111,4,56,52,4.0,0.0,0.0,1480.522741638118,49.54101437721024,0.0,37405.2,71,71,1,494,201708067,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2274.963062744955,0.0,1100.0,0.0,0.0,33700.0,1,4,5,72.0,6,4.0,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1530.0637560153284,0.04090510827412575,0.04540248534170114,16047.619047619048,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +8068,1,40.0,2,85.0,1,112,4,64,43,6.0,0.0,0.0,1834.502269866141,113.23660429076627,0.0,35909.14175060326,50,30,1,4940,201708068,,,564.0,,2.0,1.0,4.0,2.0,4.0,2.1,770.7753097349132,0.0,1363.0,0.0,0.0,48200.0,1,1,3,100.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1947.7388741569073,0.05424075261069658,0.04040952021072422,22952.38095238095,6,3,6,6_1,6_0,6_1_0 +8069,2,81.0,1,0.0,1,111,2,77,75,8.0,0.0,0.0,705.8166785114918,0.0,1497.4609886705366,27749.694684744474,50,42,1,4941,201708069,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2386.0144572547124,51.75563351347934,503.0,816.0,0.0,43103.0,5,5,1,95.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2203.2776671820284,0.07939826697961079,0.05111657349098737,28735.333333333332,8,4,8,8_1,8_4,8_1_0 +8070,2,52.0,3,0.0,1,300,2,56,21,5.0,0.0,0.0,1647.4180325136879,1415.4575536345783,0.0,54703.11331690805,50,50,1,4942,201708070,,,,,2.0,1.0,8.0,0.0,2.0,1.5,2014.4624571919487,0.0,1224.0,0.0,0.0,31775.0,1,1,2,143.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3062.875586148266,0.0559908824275559,0.09639262269546077,21183.333333333332,5,3,5,5_1,5_0,5_1_0 +8071,2,30.0,3,0.0,4,300,1,0,67,6.0,0.0,0.0,242.26735772260116,0.0,0.0,12419.0,0,50,2,4945,201708071,,,,279.0,1.0,0.0,3.0,0.0,1.0,1.0,3319.539353999213,0.0,180.0,0.0,0.0,22534.0,0,1,3,64.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,242.26735772260116,0.019507799156341182,0.010751191875503736,22534.0,6,3,6,6_0,6_0,6_0_1 +8072,2,55.0,3,0.0,9,111,2,0,56,4.0,0.0,0.0,1025.5984810256782,0.0,0.0,13854.679999999998,0,71,2,4946,201708072,,,100.0,,1.0,0.0,1.0,0.0,1.0,1.0,2861.9002530252974,0.0,762.0,0.0,0.0,18210.0,0,1,1,30.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1025.5984810256782,0.0740254181998919,0.0563206194961932,18210.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +8073,2,65.0,1,0.0,9,112,4,0,74,7.0,0.0,0.0,1292.0925745205395,0.0,0.0,17433.435052882574,0,70,1,4947,201708073,,,360.0,,0.0,4.0,4.0,0.0,1.0,1.0,3184.2222578707024,0.0,960.0,0.0,0.0,27540.0,0,5,1,96.0,6,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1292.0925745205395,0.07411577641475169,0.04691694170372329,27540.0,8,4,8,8_1,8_1,8_0_0 +8074,2,34.0,2,0.0,9,111,2,85,13,8.0,0.0,0.0,1440.7115950291845,0.0,2180.814218907742,53049.152667109134,50,31,1,4949,201708074,,,270.0,,1.0,0.0,4.0,1.0,3.0,1.8,774.7688318313612,382.9916879997471,912.0,1008.0,0.0,55346.0,6,1,3,100.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3621.5258139369266,0.06826736397963806,0.06543428276545597,30747.777777777777,8,4,8,8_1,8_2,8_0_0 +8075,2,68.0,3,0.0,1,300,2,0,78,4.0,1586.456009138882,0.0,269.1859530251124,0.0,0.0,10081.770875301629,0,70,1,495,201708075,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3188.4614746437487,0.0,200.0,0.0,0.0,17042.0,0,5,1,80.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1855.6419621639945,0.18405912861102164,0.10888639608989523,17042.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8076,2,66.0,3,0.0,8,111,2,0,77,5.0,0.0,0.0,1096.932758577333,0.0,0.0,13625.48,0,71,2,4950,201708076,,,396.0,,0.0,1.0,2.0,0.0,1.0,1.0,3149.8877393502516,0.0,815.0,0.0,0.0,18870.0,0,5,1,60.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1096.932758577333,0.08050599014327077,0.05813104179000175,18870.0,5,3,5,5_0,5_3,5_0_0 +8077,1,34.0,3,274.0,99,112,1,0,55,4.0,0.0,0.0,569.5366244272475,0.0,1061.3192954176845,18762.780000000002,0,43,2,4951,201708077,,,370.0,,1.0,0.0,4.0,2.0,3.0,1.6,931.3643405849269,1023.0,0.0,0.0,0.0,26577.0,0,1,3,80.0,7,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1630.855919844932,0.08691973789837816,0.0613634315327137,16610.625,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +8078,2,83.0,2,0.0,2,300,2,0,74,1.0,1507.1332086819382,0.0,1452.8159910774395,120.31389205893916,1398.0573817533054,22215.203831925966,0,71,1,4954,201708078,,,54.0,,0.0,2.0,4.0,0.0,1.0,1.0,1938.6793168870315,1347.5800427907684,522.0,0.0,0.0,10003.0,0,5,5,90.0,0,0.0,1,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4478.320473571623,0.20158808838547446,0.4476977380357515,10003.0,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +8079,2,52.0,3,0.0,1,111,4,75,52,8.0,0.0,0.0,873.8693850131724,0.0,832.8053789734918,23633.143307042756,71,71,2,4956,201708079,,,,158.0,2.0,0.0,3.0,1.0,3.0,2.0,2533.5502467896617,621.9600197495854,392.0,106.0,0.0,54529.0,5,1,3,62.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1706.6747639866642,0.07221530973740888,0.03129847904760154,27264.5,7,4,7,7_0,7_4,7_1_0 +8080,2,49.0,2,0.0,1,221,2,56,21,2.0,0.0,0.0,1230.1798053247637,0.0,2730.063756572693,31570.46,31,71,1,4957,201708080,,,743.0,,2.0,2.0,6.0,1.0,3.0,2.0,2587.275870901445,0.0,914.0,1543.0,0.0,27213.0,1,1,2,120.0,1,2.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3960.243561897457,0.12544142726768812,0.14552763612602274,13606.5,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +8081,2,84.0,1,0.0,6,112,6,0,74,10.0,0.0,374.7401062821288,1642.0343134531856,244.16642800196476,0.0,28803.28,0,41,1,496,201708081,,,420.0,,0.0,1.0,5.0,0.0,1.0,1.0,5686.105583843035,0.0,1220.0,0.0,0.0,43600.0,0,5,1,170.0,7,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2260.9408477372795,0.07849595072982242,0.05185644146186421,43600.0,10,5,10,10_1,10_1,10_0_0 +8082,2,60.0,2,0.0,1,112,2,55,78,8.0,2292.4289332056846,0.0,672.964882562781,109.69796040667983,0.0,43139.38,60,60,1,4960,201708082,,,190.0,,2.0,1.0,7.0,1.0,3.0,2.0,2020.2292678776444,0.0,500.0,0.0,0.0,58443.0,1,5,1,148.0,4,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3075.0917761751452,0.07128270680234963,0.05261693917449729,29221.5,8,4,8,8_1,8_0,8_1_0 +8083,2,79.0,3,0.0,5,111,2,0,77,2.0,0.0,0.0,728.2051854846918,0.0,1356.9947589504704,18161.840315994115,0,50,1,4961,201708083,,,180.0,,0.0,0.0,4.0,0.0,1.0,1.0,2626.5335205378474,1308.0,0.0,0.0,0.0,12195.0,0,5,1,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2085.1999444351623,0.11481215053954877,0.17098810532473654,12195.0,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +8084,2,47.0,3,0.0,5,112,2,65,62,5.0,0.0,0.0,1614.5222002336438,0.0,3008.6275236669458,48904.17999999999,71,43,1,4963,201708084,,,1000.0,,3.0,0.0,5.0,4.0,6.0,3.1,1553.3376207122478,2900.0,0.0,0.0,0.0,60690.0,1,1,2,104.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4623.149723900589,0.09453485824525817,0.07617646603889586,19577.41935483871,5,3,5,5_1,5_1,5_0_0 +8085,2,36.0,2,0.0,4,111,1,37,42,9.0,0.0,0.0,417.54884488801133,0.0,2494.3356088682053,48964.66436113137,30,30,2,4965,201708085,999999.0,970.0,240.0,,2.0,0.0,4.0,1.0,3.0,1.8,2762.507894485262,750.0,0.0,970.0,0.0,68633.0,4,1,3,69.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2911.8844537562168,0.059469098619364766,0.04242688580939514,38129.444444444445,9,5,9,9_0,9_4,9_0_1 +8086,2,36.0,2,0.0,3,111,5,62,54,7.0,0.0,305.3437903039568,3162.9349480450705,99.08202875442048,0.0,56545.204286735745,43,31,1,4966,201708086,,,550.0,,2.0,3.0,6.0,2.0,4.0,2.3,2344.170908823729,0.0,2350.0,0.0,0.0,59662.0,1,1,2,130.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3567.360767103448,0.06308865291234383,0.05979284581649036,25940.000000000004,7,4,7,7_1,7_2,7_0_1 +8087,2,49.0,2,0.0,9,112,4,55,22,8.0,0.0,0.0,2664.9409349486127,123.8525359430256,0.0,56438.04,43,71,1,4967,201708087,,,151.0,,2.0,1.0,5.0,2.0,4.0,2.5,2268.9949445341067,0.0,1980.0,0.0,0.0,68262.0,1,1,2,110.0,4,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2788.793470891638,0.049413365008629605,0.04085425963041865,27304.8,8,4,8,8_1,8_0,8_0_0 +8088,1,66.0,3,104.0,9,300,2,0,78,2.0,0.0,0.0,872.1624878013641,148.62304313163074,0.0,10924.24,0,50,2,4969,201708088,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2939.4957516455706,0.0,648.0,0.0,0.0,10776.0,0,5,3,50.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1020.7855309329949,0.0934422468687062,0.09472768475621705,10776.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +8089,1,21.0,4,170.0,1,111,2,84,68,1.0,0.0,0.0,538.3719060502248,0.0,0.0,15973.5770334913,41,41,2,497,201708089,,,,,1.0,0.0,1.0,0.0,2.0,1.5,3243.6201998317306,0.0,400.0,0.0,0.0,8843.0,3,2,3,20.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,538.3719060502248,0.03370390394846672,0.060881138307161006,5895.333333333333,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +8090,1,30.0,3,106.0,7,111,4,0,46,6.0,0.0,0.0,874.8543473316153,0.0,0.0,23515.92,0,31,1,4970,201708090,,,,,1.0,0.0,3.0,1.0,2.0,1.3,834.9588097739604,0.0,650.0,0.0,0.0,26413.0,0,1,2,70.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,874.8543473316153,0.037202641756376754,0.03312211211644324,20317.69230769231,5,3,5,5_1,5_3,5_0_0 +8091,2,18.0,3,0.0,5,111,2,0,84,1.0,0.0,0.0,538.3719060502248,0.0,0.0,7702.590875301628,0,41,2,4971,201708091,,,,287.0,0.0,0.0,1.0,0.0,1.0,1.0,3210.308201632975,0.0,400.0,0.0,0.0,8822.0,0,3,3,19.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,538.3719060502248,0.06989491130530057,0.061026060536185076,8822.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +8092,1,44.0,3,70.0,3,111,1,0,46,5.0,0.0,0.0,323.0231436301349,0.0,0.0,26138.839999999997,0,0,2,4972,201708092,,,216.0,295.0,1.0,0.0,4.0,2.0,3.0,1.6,596.9340617304557,0.0,240.0,0.0,0.0,32160.0,0,1,3,74.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,323.0231436301349,0.01235797547366811,0.01004425197854897,20100.0,5,3,5,5_0,5_2,5_0_1 +8093,2,56.0,2,0.0,2,120,1,56,47,5.0,0.0,0.0,1695.871504058208,0.0,2830.9151072691566,38326.280000000006,60,42,1,4973,201708093,,,540.0,,3.0,2.0,10.0,2.0,4.0,2.5,1573.8076633655737,0.0,1260.0,1600.0,0.0,51222.0,1,1,1,120.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4526.786611327365,0.11811181808741585,0.08837582701431738,20488.8,5,3,5,5_1,5_1,5_0_1 +8094,2,71.0,3,0.0,2,111,2,0,54,4.0,0.0,0.0,936.7671165273911,0.0,971.3577461817293,25776.96,0,71,2,4975,201708094,,,,,1.0,1.0,3.0,0.0,1.0,1.0,3628.371965231181,0.0,696.0,549.0,0.0,22280.0,0,1,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1908.1248627091204,0.07402443355264238,0.08564294715929625,22280.0,6,3,6,6_0,6_4,6_0_1 +8095,2,70.0,2,0.0,6,111,2,0,74,6.0,0.0,0.0,794.0985614240816,0.0,1813.5549905943035,14695.660315994117,0,31,1,4976,201708095,,,265.0,,0.0,1.0,4.0,0.0,1.0,1.0,2157.301268463232,0.0,590.0,1025.0,0.0,24152.0,0,5,1,128.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2607.653552018385,0.17744378244646336,0.10796843126939322,24152.0,7,4,7,7_1,7_4,7_0_0 +8096,2,29.0,1,0.0,9,111,2,0,46,4.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,14862.080000000002,0,31,2,4977,201708096,,,492.0,318.0,1.0,0.0,2.0,0.0,1.0,1.0,2109.352342896807,960.0,0.0,0.0,0.0,17498.0,0,1,3,54.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1530.4219775670917,0.10297495219828527,0.08746268016728151,17498.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +8097,2,61.0,3,0.0,1,111,2,52,74,9.0,0.0,0.0,1397.2417413950388,0.0,3332.005992686722,55610.12027116715,50,50,1,4978,201708097,,,744.0,,1.0,3.0,3.0,0.0,2.0,1.5,1733.8402650398311,776.3345027021901,717.0,1428.0,0.0,57660.0,1,5,1,83.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4729.24773408176,0.0850429330312704,0.08201955834342282,38440.0,9,5,9,9_1,9_3,9_1_0 +8098,2,65.0,4,0.0,6,112,4,77,77,2.0,0.0,0.0,1615.1157181506744,63.69558991355603,0.0,17877.04,50,31,1,4979,201708098,,,552.0,,0.0,0.0,4.0,0.0,2.0,1.5,2170.485610529441,0.0,1200.0,0.0,0.0,19110.0,5,5,3,78.0,6,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1678.8113080642304,0.09390879631439154,0.08784988529901781,12740.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +8099,2,27.0,3,0.0,5,111,1,55,21,5.0,0.0,0.0,471.07541779394666,88.46609710216114,0.0,27740.16,42,44,2,4980,201708099,,,,540.0,2.0,0.0,3.0,1.0,3.0,1.8,3648.8645712446328,0.0,350.0,0.0,0.0,45171.0,1,1,3,75.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,559.5415148961079,0.02017081065488115,0.01238718458515658,25095.0,7,4,7,7_0,7_3,7_0_0 +8100,2,56.0,4,0.0,9,111,4,0,64,7.0,0.0,0.0,605.6683943065029,0.0,0.0,19309.000000000004,0,50,2,4981,201708100,,,,527.0,1.0,0.0,3.0,0.0,1.0,1.0,2745.7518048910724,0.0,450.0,0.0,0.0,27308.0,0,1,3,55.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,605.6683943065029,0.03136715491773281,0.02217915608270481,27308.0,8,4,8,8_0,8_3,8_0_0 +8101,2,37.0,4,0.0,5,221,5,85,62,3.0,0.0,832.755791738064,484.5347154452023,318.4779495677801,0.0,20777.74,31,31,1,4982,201708101,,,460.0,,1.0,0.0,5.0,1.0,3.0,1.8,2927.6977499407863,0.0,360.0,0.0,0.0,26300.0,6,1,2,108.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1635.7684567510464,0.07872696726164859,0.062196519268100624,14611.111111111111,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +8102,1,33.0,4,330.0,4,111,1,0,43,3.0,0.0,0.0,323.0231436301349,0.0,849.274532180747,11637.419999999998,0,33,2,4984,201708102,,,550.0,,1.0,0.0,3.0,2.0,4.0,1.9,852.7278076517028,0.0,240.0,480.0,0.0,29810.0,0,4,4,62.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1172.2976758108819,0.10073518664883471,0.03932565165417249,15689.473684210527,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +8103,2,35.0,1,0.0,9,111,1,0,38,10.0,0.0,0.0,620.4736217228841,0.0,0.0,57604.84,0,12,2,4985,201708103,,,,,1.0,0.0,3.0,2.0,3.0,1.6,989.9943208221971,0.0,461.0,0.0,0.0,69576.0,0,1,2,64.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,620.4736217228841,0.010771206407706091,0.008917926033731231,43485.0,10,5,10,10_0,10_4,10_0_0 +8104,2,75.0,3,0.0,1,111,2,0,75,3.0,0.0,0.0,2098.304503830751,0.0,552.0284459174856,19583.323983607206,0,33,1,4986,201708104,,,300.0,,0.0,2.0,6.0,0.0,1.0,1.0,1143.718147130816,0.0,1559.0,312.0,0.0,12454.0,0,5,1,115.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2650.3329497482364,0.13533621523939324,0.2128097759553747,12454.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +8105,2,62.0,3,0.0,2,111,2,75,74,8.0,0.0,0.0,740.261370819059,0.0,2411.585807004913,44937.7858467513,30,20,2,4987,201708105,,,,,1.0,3.0,4.0,1.0,3.0,2.0,2127.8184938183463,0.0,550.0,1363.0,0.0,56155.0,5,5,1,115.0,6,4.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,3151.847177823972,0.07013801678107888,0.05612763205100119,28077.5,8,4,8,8_0,8_2,8_0_1 +8106,2,59.0,3,0.0,4,111,2,77,62,8.0,0.0,0.0,918.607458753625,0.0,1711.8053151898139,34643.3,50,41,1,4988,201708106,,,300.0,,1.0,6.0,4.0,0.0,2.0,1.5,1327.7261978444833,1650.0,0.0,0.0,0.0,42284.0,5,1,1,95.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2630.412773943439,0.07592847026534535,0.062208229447153505,28189.333333333332,8,4,8,8_1,8_3,8_0_1 +8107,2,81.0,3,0.0,1,112,6,78,78,2.0,509.25237893358116,387.23144315819974,1956.9818784925671,198.16405750884095,0.0,16471.14,50,70,1,4989,201708107,,,261.0,,0.0,2.0,5.0,0.0,2.0,1.5,2524.431499549758,0.0,1454.0,0.0,0.0,16336.0,5,5,1,100.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3051.629758093189,0.1852713144380528,0.18680397637690924,10890.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8108,2,47.0,3,0.0,5,112,5,52,35,9.0,0.0,1526.718951519784,2883.3148472883645,265.39829130648343,1610.8285188979999,57501.880542334315,50,30,1,499,201708108,,,580.0,,3.0,2.0,6.0,2.0,4.0,2.5,2035.5981751561533,1552.6690054043802,1500.0,0.0,0.0,94799.0,1,1,1,130.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6286.260609012632,0.10932269605312352,0.06631146540588648,37919.6,9,5,9,9_1,9_0,9_0_0 +8109,2,27.0,3,0.0,9,111,4,52,63,6.0,0.0,0.0,2018.894647688343,0.0,0.0,32427.971693502604,50,50,1,4992,201708109,,,240.0,,2.0,0.0,4.0,2.0,4.0,2.1,2975.508319866794,0.0,1500.0,0.0,0.0,43560.0,1,1,2,150.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.06225781454264858,0.04634744370267087,20742.85714285714,5,3,5,5_1,5_2,5_0_0 +8110,2,49.0,3,0.0,7,111,4,0,46,2.0,0.0,0.0,1806.237744798504,0.0,0.0,29002.100315994114,0,41,2,4993,201708110,,,,852.0,2.0,0.0,3.0,2.0,3.0,2.0,636.9005665028861,0.0,1342.0,0.0,0.0,26563.0,0,1,3,63.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1806.237744798504,0.06227954958842749,0.06799825866048655,13281.5,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +8111,2,36.0,3,0.0,99,111,2,62,45,5.0,0.0,0.0,315.1101949421526,0.0,587.2010959984452,37410.1,30,31,1,4995,201708111,,,,,2.0,0.0,4.0,2.0,4.0,2.1,663.826811188528,566.0,0.0,0.0,0.0,40775.0,1,1,3,70.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,902.3112909405978,0.024119456802857993,0.022129032273221282,19416.666666666664,5,3,5,5_1,5_2,5_0_0 +8112,1,54.0,4,37.0,7,111,4,56,62,2.0,0.0,0.0,1227.4879457945126,0.0,0.0,33270.730875301626,60,50,1,4996,201708112,,,,,3.0,0.0,2.0,2.0,4.0,2.3,5737.452238905587,0.0,912.0,0.0,0.0,26739.0,1,1,2,47.0,6,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1227.4879457945126,0.03689392789100803,0.04590627719041522,11625.652173913044,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +8113,2,87.0,2,0.0,1,112,2,0,75,9.0,0.0,0.0,962.3397820647768,0.0,1893.1744779862486,24596.870875301625,0,60,1,4997,201708113,,,,,0.0,3.0,3.0,0.0,1.0,1.0,1198.499600154252,0.0,715.0,1070.0,0.0,39480.0,0,5,3,49.0,10,3.0,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2855.5142600510253,0.11609258244788866,0.07232812208842516,39480.0,9,5,9,9_1,9_1,9_1_0 +8114,2,80.0,3,0.0,5,111,2,0,78,5.0,0.0,0.0,615.0899026623819,1910.8676974066807,0.0,27672.52,0,50,1,4998,201708114,,,200.0,,0.0,2.0,4.0,0.0,1.0,1.0,2445.4806357603543,0.0,457.0,0.0,0.0,18102.0,0,5,1,88.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2525.9576000690627,0.0912803604467198,0.13954024969998136,18102.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +8115,2,46.0,2,0.0,6,111,4,34,11,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,55381.150875301624,20,43,2,4999,201708115,,,560.0,,2.0,0.0,4.0,2.0,4.0,2.1,1591.8673270424783,0.0,1200.0,0.0,0.0,46920.0,1,1,1,85.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1615.1157181506744,0.029163635869311068,0.03442275614131872,22342.85714285714,6,3,6,6_0,6_2,6_0_0 +8116,2,56.0,3,0.0,7,111,2,52,33,6.0,0.0,0.0,796.7904209543327,0.0,1850.7107513772112,42536.659999999996,50,50,1,5,201708116,,,576.0,537.0,3.0,6.0,4.0,1.0,3.0,2.0,1364.6628510044739,0.0,592.0,1046.0,0.0,42877.0,1,1,3,90.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2647.501172331544,0.06224045734506527,0.061746418180645656,21438.5,6,3,6,6_1,6_3,6_0_0 +8117,2,38.0,2,0.0,9,400,5,54,42,8.0,0.0,555.170527825376,1137.3106515311,0.0,0.0,40132.86,20,20,1,500,201708117,,,369.0,,2.0,0.0,3.0,1.0,3.0,1.8,2378.731070110164,0.0,845.0,0.0,0.0,48798.0,1,1,2,100.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1692.4811793564759,0.04217195533426912,0.03468341283160121,27110.0,7,4,7,7_1,7_0,7_0_0 +8118,1,41.0,2,350.0,6,111,4,0,55,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,22326.24,0,43,2,5001,201708118,,,,200.0,1.0,0.0,5.0,3.0,4.0,1.9,1054.2780306817244,0.0,1200.0,0.0,0.0,34780.0,0,1,3,83.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1615.1157181506744,0.0723415907985704,0.04643805975131324,18305.263157894737,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +8119,2,46.0,3,0.0,7,111,6,37,37,9.0,0.0,0.0,2051.1969620513564,0.0,0.0,80815.92,30,20,2,5002,201708119,,,,,2.0,0.0,4.0,2.0,4.0,2.5,3380.0990055660955,0.0,1524.0,0.0,0.0,96736.0,1,1,2,82.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2051.1969620513564,0.025381100184856602,0.021204070481013856,38694.4,9,5,9,9_0,9_4,9_0_0 +8120,2,55.0,3,0.0,99,112,4,56,37,8.0,0.0,0.0,2018.894647688343,0.0,0.0,67778.37331690807,71,60,2,5003,201708120,,,900.0,700.0,2.0,3.0,3.0,0.0,2.0,1.5,2968.9380148836917,0.0,1500.0,0.0,0.0,45830.0,1,1,3,75.0,10,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2018.894647688343,0.02978670848662441,0.04405181426332845,30553.333333333332,8,4,8,8_0,8_2,8_0_0 +8121,2,72.0,1,0.0,5,400,5,78,75,8.0,0.0,138.792631956344,1009.4473238441715,0.0,0.0,48131.0,50,30,1,5004,201708121,,,175.0,,0.0,3.0,5.0,0.0,2.0,1.5,1864.3011530374094,0.0,750.0,0.0,0.0,43233.0,5,5,1,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1148.2399558005154,0.023856557225083945,0.02655934022160191,28822.0,8,4,8,8_1,8_0,8_0_0 +8122,2,66.0,4,0.0,5,300,2,77,78,3.0,929.663221355385,0.0,1049.8252167979383,212.31863304518674,0.0,13677.690875301627,70,70,1,5006,201708122,,,630.0,,0.0,1.0,4.0,0.0,2.0,1.5,1950.6776899912809,0.0,780.0,0.0,0.0,21894.0,7,5,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2191.80707119851,0.16024686412209732,0.10010994204798164,14596.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8123,2,43.0,3,0.0,1,111,6,0,85,1.0,0.0,0.0,807.5578590753372,0.0,0.0,15776.64,0,31,1,5007,201708123,,,276.0,,0.0,0.0,3.0,0.0,1.0,1.0,3879.291174226489,0.0,600.0,0.0,0.0,6579.0,0,7,1,55.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,807.5578590753372,0.05118693581620277,0.12274781259695047,6579.0,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +8124,2,60.0,3,0.0,5,112,6,75,75,10.0,1269.1648073111057,55.5170527825376,1279.9792066344094,0.0,0.0,48701.756765845654,50,33,1,501,201708124,,,265.0,,0.0,2.0,6.0,0.0,2.0,1.5,3699.511918592403,0.0,951.0,0.0,0.0,68409.0,5,5,1,130.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2604.661066728053,0.05348187087482419,0.03807483031074936,45606.0,10,5,10,10_1,10_0,10_0_0 +8125,2,62.0,4,0.0,2,111,2,0,56,7.0,0.0,0.0,469.88163344730873,0.0,875.6143551637592,21053.2,0,71,2,5011,201708125,,,,519.0,1.0,3.0,3.0,0.0,1.0,1.0,696.865495976347,844.0,0.0,0.0,0.0,25585.0,0,1,3,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1345.495988611068,0.06390933390701024,0.05258925106941833,25585.0,7,4,7,7_0,7_3,7_0_1 +8126,2,82.0,3,0.0,99,111,2,0,77,3.0,0.0,0.0,491.26436427083013,0.0,4741.782804675838,18439.440315994118,0,70,1,5012,201708126,,,490.0,,0.0,4.0,7.0,0.0,1.0,1.0,3138.226913063232,0.0,365.0,2680.0,0.0,15080.0,0,5,1,100.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5233.047168946668,0.2837964211097879,0.34701904303359865,15080.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8127,2,80.0,2,0.0,4,120,5,77,74,8.0,0.0,333.10231669522557,2355.3770889697334,0.0,0.0,61896.66,50,12,1,5013,201708127,,,277.0,,0.0,3.0,9.0,0.0,2.0,1.5,1631.4292319114757,0.0,1750.0,0.0,0.0,43577.0,5,5,1,250.0,0,3.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2688.479405664959,0.04343496734177513,0.06169491717339328,29051.333333333332,8,4,8,8_1,8_1,8_0_1 +8128,2,68.0,2,0.0,1,111,6,0,75,7.0,1091.481734287551,0.0,483.18878568007676,61.9262679715128,0.0,41346.6,0,70,1,5014,201708128,,,110.0,,0.0,1.0,3.0,0.0,1.0,1.0,3262.3944657683905,0.0,359.0,0.0,0.0,25833.0,0,5,1,120.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1636.5967879391405,0.03958237891239281,0.06335295118411104,25833.0,7,4,7,7_1,7_4,7_1_0 +8129,2,69.0,4,0.0,1,111,4,0,77,2.0,0.0,0.0,1982.5545440299527,0.0,0.0,16084.861033505029,0,70,1,5015,201708129,,,960.0,,0.0,3.0,6.0,0.0,1.0,1.0,1834.302713903657,0.0,1473.0,0.0,0.0,12480.0,0,5,1,168.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1982.5545440299527,0.12325593238886298,0.15885853718188722,12480.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +8130,2,35.0,3,0.0,99,111,1,85,69,2.0,0.0,0.0,488.572504740579,0.0,0.0,21222.39665845403,41,20,2,5016,201708130,,,,,1.0,0.0,3.0,2.0,4.0,2.1,1875.854726720583,0.0,363.0,0.0,0.0,23788.0,6,1,2,62.0,8,6.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,488.572504740579,0.0230215518352379,0.020538612104446737,11327.619047619048,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +8131,2,46.0,2,0.0,4,111,1,52,43,6.0,0.0,0.0,969.0694308904046,0.0,318.4779495677801,75789.6,50,33,2,5017,201708131,,,,,2.0,1.0,5.0,2.0,4.0,2.3,2072.0869073968856,0.0,720.0,180.0,0.0,50357.0,1,1,1,92.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1287.5473804581848,0.016988444066972048,0.02556838930949391,21894.34782608696,6,3,6,6_0,6_3,6_0_1 +8132,2,50.0,4,0.0,7,112,2,0,68,6.0,0.0,0.0,1296.130363815916,120.31389205893916,0.0,13702.88,0,71,1,5018,201708132,,,184.0,402.0,1.0,2.0,3.0,0.0,1.0,1.0,2086.528281465228,0.0,963.0,0.0,0.0,22590.0,0,1,3,65.0,9,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1416.4442558748553,0.10336836167833736,0.06270226896303034,22590.0,6,3,6,6_1,6_1,6_0_0 +8133,1,65.0,3,31.0,4,111,6,0,75,3.0,0.0,0.0,380.24781474468233,0.0,708.5836547119047,22696.399999999998,0,50,2,5019,201708133,,,95.0,296.0,0.0,0.0,2.0,0.0,1.0,1.0,3201.3843290995633,683.0,0.0,0.0,0.0,13603.0,0,5,3,28.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1088.831469456587,0.04797375220107978,0.08004348080986451,13603.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8134,2,46.0,2,0.0,9,112,6,43,34,9.0,0.0,0.0,767.1799661215703,0.0,0.0,110301.79407609408,20,10,1,5020,201708134,,,445.0,,2.0,0.0,7.0,2.0,4.0,2.1,2053.6088151028544,0.0,570.0,0.0,0.0,65851.0,1,1,1,147.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,767.1799661215703,0.0069552809412357745,0.01165024018043113,31357.619047619046,8,4,8,8_1,8_1,8_0_0 +8135,2,30.0,4,0.0,4,111,4,67,64,4.0,0.0,0.0,779.2933340077004,77.85016544990181,0.0,25101.699999999997,50,50,2,5021,201708135,,,492.0,,2.0,0.0,2.0,0.0,2.0,1.5,3761.9314745740626,0.0,579.0,0.0,0.0,26313.0,4,1,2,35.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,857.1434994576023,0.03414683067113392,0.03257490591941634,17542.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8136,2,34.0,2,0.0,1,112,2,85,47,7.0,0.0,402.4986326733976,2196.557376684917,283.09151072691566,0.0,46968.44,41,12,1,5022,201708136,,,307.0,,1.0,0.0,6.0,3.0,5.0,2.4,2516.217590472541,0.0,1632.0,0.0,0.0,52607.0,6,1,2,140.0,7,0.0,4,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2882.14752008523,0.061363492593861535,0.054786388124873686,21919.583333333336,6,3,6,6_1,6_0,6_1_0 +8137,2,59.0,3,0.0,1,400,2,78,48,5.0,0.0,0.0,1520.900634591885,106.15931652259337,0.0,24823.06238259149,70,70,1,5023,201708137,,,,,1.0,2.0,6.0,0.0,2.0,1.5,1564.4892894004477,0.0,1130.0,0.0,0.0,27373.0,6,1,1,75.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1627.0599511144783,0.06554630230698456,0.05944032262135967,18248.666666666668,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +8138,2,50.0,3,0.0,1,111,2,54,13,2.0,1903.7472109666587,0.0,1375.5402199583243,0.0,0.0,45387.9,50,50,1,5024,201708138,,,449.0,,3.0,0.0,4.0,2.0,4.0,2.5,2097.701515868903,0.0,1022.0,0.0,0.0,29172.0,4,1,1,115.0,5,4.0,4,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3279.287430924983,0.07225025680687987,0.11241215655165854,11668.8,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +8139,2,62.0,3,0.0,6,111,2,78,77,5.0,0.0,0.0,3150.8215801589404,0.0,0.0,26215.62,50,42,1,5026,201708139,,,100.0,,0.0,0.0,5.0,0.0,2.0,1.5,2207.451865797523,0.0,2341.0,0.0,0.0,32357.0,5,5,1,99.0,7,5.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3150.8215801589404,0.12018871116376192,0.09737681429548291,21571.333333333332,6,3,6,6_1,6_2,6_0_0 +8140,2,59.0,1,0.0,7,111,2,38,38,10.0,0.0,0.0,985.2205880719114,0.0,2477.050718860512,111066.79999999999,20,12,1,5028,201708140,,,532.0,,2.0,3.0,8.0,0.0,2.0,1.5,1845.48741029306,0.0,732.0,1400.0,0.0,67567.0,4,1,1,200.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3462.2713069324236,0.031172873504345347,0.05124204577578439,45044.666666666664,10,5,10,10_1,10_3,10_0_0 +8141,2,33.0,2,0.0,8,111,6,43,48,8.0,0.0,416.377895869032,1292.0925745205395,0.0,0.0,39684.619999999995,33,50,1,5029,201708141,,,420.0,,2.0,0.0,5.0,2.0,4.0,2.1,2931.9903594665343,0.0,960.0,0.0,0.0,55971.0,1,1,2,105.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1708.4704703895716,0.043051198937764094,0.030524208436325445,26652.85714285714,7,4,7,7_1,7_3,7_0_0 +8142,2,50.0,2,0.0,1,111,2,0,37,10.0,0.0,0.0,2183.0980790336616,0.0,2760.1422295874277,61772.880000000005,0,20,1,5031,201708142,,,350.0,,1.0,0.0,5.0,1.0,2.0,1.3,1565.9899160679204,0.0,1622.0,1560.0,0.0,82885.0,0,1,1,140.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4943.240308621089,0.08002282407135766,0.05963974553442829,63757.692307692305,10,5,10,10_1,10_2,10_1_0 +8143,2,67.0,2,0.0,1,120,2,77,75,4.0,0.0,693.9631597817199,1615.1157181506744,0.0,0.0,79966.3353688767,70,60,1,5032,201708143,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2495.157125537777,0.0,1200.0,0.0,0.0,31870.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2309.0788779323943,0.028875637070035095,0.07245305547324739,21246.666666666668,6,3,6,6_1,6_0,6_1_0 +8144,2,45.0,3,0.0,9,221,2,46,31,1.0,0.0,0.0,471.07541779394666,0.0,1645.4694061001974,44634.72,20,20,2,5033,201708144,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3386.9347616323566,0.0,350.0,930.0,0.0,16689.0,4,1,2,78.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2116.544823894144,0.047419247256264715,0.126822746952732,7947.142857142857,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +8145,2,66.0,3,0.0,1,400,4,86,77,6.0,0.0,0.0,2355.3770889697334,0.0,0.0,25046.948015878887,10,70,1,5034,201708145,,,250.0,,0.0,2.0,3.0,0.0,2.0,1.5,1925.5208645511111,0.0,1750.0,0.0,0.0,33314.0,5,5,3,66.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2355.3770889697334,0.09403848674403392,0.07070232001470053,22209.333333333332,6,3,6,6_1,6_0,6_1_0 +8146,1,50.0,2,272.0,6,111,6,0,85,2.0,0.0,0.0,16.151157181506743,0.0,53.079658261296686,7371.370875301628,0,60,8,5035,201708146,,,,168.0,0.0,0.0,2.0,0.0,1.0,1.0,2949.571851307052,0.0,12.0,30.0,0.0,13012.0,0,7,3,52.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,69.23081544280343,0.009391850798711927,0.005320536077682404,13012.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8147,2,49.0,3,0.0,4,111,3,37,33,10.0,0.0,0.0,791.4067018938305,0.0,222.9345646974461,68155.18,31,20,2,5036,201708147,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2819.2006968585333,0.0,588.0,126.0,0.0,98891.0,1,1,1,78.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1014.3412665912765,0.014882819861839945,0.010257164621565932,47090.95238095238,10,5,10,10_0,10_4,10_0_1 +8148,0,40.0,3,0.0,1,112,6,0,55,5.0,1586.456009138882,0.0,904.4648021643776,0.0,0.0,21768.51202733072,0,31,1,5037,201708148,,,360.0,,1.0,1.0,5.0,0.0,1.0,1.0,769.9254498776493,0.0,672.0,0.0,0.0,18917.0,0,1,5,95.0,9,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2490.9208113032596,0.11442770218634458,0.13167631290919593,18917.0,5,3,5,5_1,5_0,5_1_0 +8149,2,26.0,1,0.0,9,221,2,0,67,5.0,0.0,0.0,694.8012778936509,0.0,1294.7472929435683,24770.08,0,50,2,5038,201708149,,,,429.0,1.0,0.0,4.0,2.0,3.0,1.6,841.4469656717891,1248.0,0.0,0.0,0.0,30933.0,0,1,3,85.0,1,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1989.5485708372191,0.08032063565548513,0.06431799601840169,19333.125,5,3,5,5_0,5_1,5_0_0 +8150,2,26.0,3,0.0,1,112,4,0,46,3.0,0.0,0.0,1566.6622466061542,0.0,0.0,20929.76,0,43,2,5039,201708150,,,,460.0,1.0,0.0,3.0,0.0,1.0,1.0,5509.541545088566,0.0,1164.0,0.0,0.0,15220.0,0,4,3,45.0,9,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1566.6622466061542,0.07485333069304924,0.10293444458647531,15220.0,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +8151,2,51.0,3,0.0,6,400,4,68,52,4.0,0.0,0.0,161.51157181506744,219.39592081335965,0.0,9068.347849749776,71,71,1,504,201708151,,,20.0,,2.0,0.0,4.0,0.0,2.0,1.5,1734.9833880514916,0.0,120.0,0.0,0.0,25300.0,1,1,2,80.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,380.9074926284271,0.04200406721704412,0.015055632119700678,16866.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8152,2,42.0,3,0.0,7,112,4,43,53,9.0,0.0,208.188947934516,3084.8710216677878,0.0,0.0,69510.14,20,31,1,5040,201708152,,,653.0,,2.0,0.0,4.0,2.0,4.0,2.1,1630.7156621035554,0.0,2292.0,0.0,0.0,72399.0,1,1,2,110.0,10,3.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3293.0599696023037,0.04737524582172189,0.045484881968014805,34475.71428571428,9,5,9,9_1,9_1,9_0_0 +8153,2,45.0,1,0.0,3,111,2,42,37,9.0,0.0,555.170527825376,1259.790260157526,0.0,1165.9831598064839,69593.69685592408,12,12,1,5041,201708153,,,220.0,,2.0,0.0,6.0,3.0,5.0,2.8,2664.9017749851637,0.0,936.0,659.0,0.0,93971.0,1,1,2,140.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2980.9439477893857,0.04283353353049582,0.03172195621829485,33561.07142857143,9,5,9,9_1,9_3,9_0_1 +8154,2,66.0,3,0.0,6,120,4,0,75,5.0,0.0,0.0,672.964882562781,56.61830214538313,0.0,14408.950875301627,0,50,1,5042,201708154,,,60.0,,0.0,3.0,4.0,0.0,1.0,1.0,2206.778395145196,0.0,500.0,0.0,0.0,18845.0,0,5,1,120.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,729.5831847081641,0.05063402540699491,0.03871494745068528,18845.0,5,3,5,5_1,5_0,5_0_0 +8155,2,46.0,3,0.0,5,112,5,43,43,7.0,0.0,1665.511583476128,2557.266553738568,433.4838758005896,0.0,71690.15703804704,33,33,1,5043,201708155,,,150.0,,2.0,0.0,5.0,3.0,5.0,2.8,2155.0888574022247,0.0,1900.0,0.0,0.0,68425.0,1,1,2,125.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4656.262013015285,0.0649498090866803,0.06804913427863041,24437.5,7,4,7,7_1,7_0,7_0_0 +8156,2,36.0,3,0.0,6,111,6,0,34,8.0,0.0,0.0,1070.0141632748218,0.0,0.0,24095.16,0,20,2,5044,201708156,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5335.579045454305,0.0,795.0,0.0,0.0,30784.0,0,1,2,40.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1070.0141632748218,0.04440784635897092,0.03475877609390664,30784.0,8,4,8,8_0,8_3,8_0_0 +8157,2,78.0,3,0.0,3,111,2,72,75,3.0,1903.7472109666587,0.0,1384.6660542152572,212.31863304518674,1075.4287551948503,76858.46033959273,70,70,1,5045,201708157,,,175.0,,0.0,2.0,4.0,0.0,2.0,1.5,3182.643094719378,1036.6000329159756,600.0,0.0,0.0,24806.0,5,5,1,96.0,8,7.0,3,9,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4576.160653421953,0.05954010310904703,0.18447797522462117,16537.333333333332,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +8158,2,30.0,2,0.0,7,112,4,43,38,10.0,0.0,0.0,2018.894647688343,0.0,0.0,85426.48000000001,0,30,1,5047,201708158,,,180.0,,2.0,0.0,4.0,1.0,3.0,1.8,2982.9757161631446,0.0,1500.0,0.0,0.0,73230.0,1,1,2,120.0,10,2.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.023633124620004744,0.02756922910949533,40683.333333333336,10,5,10,10_1,10_1,10_0_0 +8159,2,64.0,3,0.0,6,112,5,78,78,7.0,0.0,416.377895869032,897.7351533387498,0.0,0.0,27498.16,70,70,1,505,201708159,,,300.0,,0.0,3.0,5.0,0.0,2.0,1.5,1893.1204955911317,0.0,667.0,0.0,0.0,35111.0,5,5,1,104.0,9,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1314.1130492077818,0.047789126589116576,0.03742738882993312,23407.333333333332,6,3,6,6_1,6_0,6_0_0 +8160,2,55.0,3,0.0,99,111,1,52,48,5.0,0.0,0.0,888.3136449828709,0.0,360.94167617681745,36516.44,50,44,2,5050,201708160,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2769.4275462480455,0.0,660.0,204.0,0.0,30667.0,1,4,2,80.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1249.2553211596883,0.03421076427931332,0.04073614377538358,20444.666666666668,5,3,5,5_0,5_3,5_0_0 +8161,0,67.0,2,0.0,99,211,2,0,78,1.0,0.0,0.0,1079.5467684271712,0.0,1911.7059886002507,25396.18684744477,0,71,1,5052,201708161,,,,,0.0,0.0,4.0,3.0,4.0,2.5,412.9871239871272,517.5563351347934,588.0,777.0,0.0,22372.0,0,5,5,80.0,2,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2991.252757027422,0.11778353872555423,0.13370520101141703,8948.8,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +8162,2,52.0,5,0.0,6,111,5,85,63,1.0,0.0,1249.133687607096,1609.7319990901722,123.8525359430256,0.0,27350.14,50,50,1,5054,201708162,,,635.0,,2.0,1.0,5.0,1.0,3.0,2.0,1568.9990706926374,0.0,1196.0,0.0,0.0,12760.0,6,1,2,100.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2982.7182226402933,0.10905678079308893,0.23375534660190386,6380.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8163,2,36.0,3,0.0,1,112,6,0,52,4.0,555.2596031986087,0.0,577.403869238866,33.61711689882124,0.0,11166.89883901972,0,50,2,5055,201708163,,,210.0,,1.0,0.0,3.0,0.0,1.0,1.0,3426.603223633181,0.0,429.0,0.0,0.0,18170.0,0,1,2,60.0,6,2.0,1,8,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1166.280589336296,0.10444086636309831,0.06418715406363765,18170.0,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +8164,2,91.0,3,0.0,1,400,2,0,72,1.0,3172.912018277764,0.0,667.5811635022787,247.7050718860512,0.0,21124.78,0,71,1,5057,201708164,,,200.0,,0.0,2.0,6.0,0.0,1.0,1.0,2085.945364923256,0.0,496.0,0.0,0.0,12703.0,0,5,1,200.0,0,1.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4088.1982536660944,0.19352619310904515,0.32182935162293114,12703.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +8165,2,80.0,2,0.0,5,120,2,0,77,3.0,5076.659229244423,0.0,733.5317219934312,233.5504963497054,0.0,19527.280000000002,0,71,1,5058,201708165,,,270.0,,0.0,1.0,4.0,0.0,1.0,1.0,2872.0389788671237,0.0,545.0,0.0,0.0,16159.0,0,5,5,110.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6043.741447587559,0.30950247282711973,0.37401704607881425,16159.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8166,1,43.0,5,256.0,99,212,4,0,85,1.0,0.0,0.0,1413.22625338184,212.31863304518674,0.0,9449.030875301627,0,71,2,5059,201708166,,,127.0,,0.0,0.0,3.0,0.0,1.0,1.0,3523.0400409208637,0.0,1050.0,0.0,0.0,8893.0,0,8,3,63.0,2,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1625.5448864270268,0.17203297437369597,0.1827892596904337,8893.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +8167,2,70.0,3,0.0,3,112,1,0,78,5.0,0.0,0.0,519.5288893384669,0.0,176.9321942043223,24145.88,0,71,2,5060,201708167,,,,535.0,0.0,3.0,5.0,0.0,1.0,1.0,2313.269749183777,0.0,386.0,100.0,0.0,20899.0,0,5,3,82.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,696.4610835427892,0.028843889042055586,0.03332509132220629,20899.0,5,3,5,5_0,5_2,5_0_1 +8168,2,76.0,3,0.0,6,221,2,72,74,6.0,0.0,0.0,3675.73418855791,0.0,0.0,62712.78,50,41,1,5061,201708168,,,656.0,,0.0,4.0,6.0,0.0,2.0,1.5,1747.2634748770975,0.0,2731.0,0.0,0.0,31170.0,5,5,1,140.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3675.73418855791,0.058612202944246926,0.1179253830143699,20780.0,5,3,5,5_1,5_1,5_0_0 +8169,2,33.0,4,0.0,6,112,2,0,68,1.0,44.4207682558887,0.0,1480.522741638118,198.16405750884095,0.0,25000.261750603247,0,60,1,5062,201708169,,,606.0,,1.0,5.0,5.0,3.0,4.0,2.5,317.4396761632673,0.0,1100.0,0.0,0.0,12999.0,0,4,1,174.0,8,0.0,2,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1723.1075674028477,0.06892358106455704,0.13255693264119145,5199.6,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8170,2,40.0,2,0.0,1,400,5,0,64,4.0,0.0,152.6718951519784,807.5578590753372,0.0,0.0,24781.753499749375,0,50,1,5063,201708170,,,,,1.0,0.0,4.0,1.0,2.0,1.3,2238.708479784918,0.0,600.0,0.0,0.0,23019.0,0,1,2,76.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,960.2297542273157,0.03874744998319133,0.04171465981264676,17706.923076923078,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8171,1,23.0,3,46.0,99,111,4,0,54,2.0,0.0,0.0,1114.4298455239652,0.0,0.0,17361.04,0,41,2,5065,201708171,,,,334.0,1.0,0.0,2.0,0.0,1.0,1.0,3348.8867916686177,0.0,828.0,0.0,0.0,11278.0,0,2,3,35.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1114.4298455239652,0.06419142203024503,0.09881449242099355,11278.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8172,1,36.0,3,137.0,9,111,6,85,46,2.0,0.0,0.0,1130.581002705472,0.0,0.0,30790.119999999995,31,31,1,5066,201708172,,,,,1.0,0.0,5.0,3.0,5.0,2.4,1882.482934495158,0.0,840.0,0.0,0.0,25157.0,6,4,2,120.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1130.581002705472,0.03671895408999615,0.04494101056189021,10482.083333333334,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +8173,2,42.0,3,0.0,9,112,2,52,62,6.0,0.0,0.0,888.3136449828709,0.0,1167.752481748527,33891.877171918204,31,43,1,5067,201708173,,,216.0,,2.0,0.0,5.0,2.0,4.0,2.1,1727.778844826269,0.0,660.0,660.0,0.0,42514.0,1,1,2,100.0,8,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2056.066126731398,0.06066545433001253,0.048362095468113986,20244.761904761905,5,3,5,5_1,5_1,5_0_0 +8174,2,44.0,3,0.0,99,112,6,43,43,10.0,0.0,0.0,2188.481798094164,0.0,0.0,64661.4,33,33,1,5068,201708174,,,227.0,,2.0,0.0,4.0,1.0,3.0,1.8,8674.87076196217,0.0,1626.0,0.0,0.0,83967.0,1,1,3,100.0,7,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2188.481798094164,0.03384525850189083,0.026063594008290922,46648.333333333336,10,5,10,10_1,10_1,10_0_0 +8175,2,33.0,1,0.0,2,111,6,43,47,10.0,0.0,0.0,779.2933340077004,0.0,0.0,50530.94,33,30,2,5069,201708175,,,,,2.0,0.0,2.0,0.0,2.0,1.5,4698.8101098332,0.0,579.0,0.0,0.0,68432.0,1,1,1,58.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,779.2933340077004,0.015422102458566976,0.011387849748768126,45621.333333333336,10,5,10,10_0,10_3,10_0_1 +8176,2,69.0,1,0.0,4,111,2,75,74,9.0,0.0,0.0,67.2964882562781,0.0,141.54575536345783,61535.530875301636,50,30,1,507,201708176,,,300.0,,0.0,1.0,4.0,0.0,2.0,1.5,1547.196652511037,0.0,50.0,80.0,0.0,51413.0,5,5,1,94.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,208.84224361973594,0.003393848084985945,0.0040620513025837034,34275.333333333336,9,5,9,9_1,9_3,9_0_1 +8177,2,59.0,1,0.0,1,300,5,77,63,7.0,0.0,208.188947934516,904.4648021643776,153.93100895776038,0.0,19628.16,70,71,1,5071,201708177,,,447.0,,1.0,1.0,3.0,0.0,2.0,1.5,2149.6800825987007,0.0,672.0,0.0,0.0,38941.0,5,1,1,104.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1266.584759056654,0.06452896038429756,0.032525737886973986,25960.666666666668,7,4,7,7_1,7_1,7_1_0 +8178,2,68.0,3,0.0,5,400,2,78,77,4.0,2679.524199435572,0.0,1873.5342330547821,530.7965826129669,0.0,40298.96,70,70,1,5072,201708178,,,,,0.0,3.0,8.0,0.0,2.0,1.5,1824.0189163102752,0.0,1392.0,0.0,0.0,27421.0,5,5,1,146.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5083.8550151033205,0.12615350408802908,0.18540005890023414,18280.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8179,2,43.0,3,0.0,7,111,1,45,38,9.0,0.0,0.0,1446.8744975099792,0.0,0.0,63009.979999999996,50,50,8,5073,201708179,,,,1148.0,2.0,0.0,4.0,2.0,4.0,2.1,2973.6019238168133,0.0,1075.0,0.0,0.0,73180.0,1,1,3,67.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1446.8744975099792,0.02296262429396072,0.019771447082672578,34847.619047619046,9,5,9,9_0,9_4,9_0_0 +8180,2,43.0,2,0.0,99,111,1,0,54,4.0,0.0,0.0,672.964882562781,0.0,0.0,36837.16503487832,0,31,2,5075,201708180,,,,,1.0,0.0,4.0,1.0,2.0,1.3,4007.2097139101156,0.0,500.0,0.0,0.0,23313.0,0,1,2,69.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,672.964882562781,0.018268639346312385,0.028866507208972717,17933.076923076922,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +8181,1,34.0,4,400.0,2,112,4,0,85,1.0,0.0,0.0,1076.7438121004495,0.0,0.0,11424.57317190447,0,60,1,5078,201708181,,,350.0,,0.0,0.0,3.0,2.0,3.0,1.6,943.5722653394063,0.0,800.0,0.0,0.0,15360.0,0,6,3,70.0,6,1.0,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1076.7438121004495,0.09424805600163677,0.07010050860028968,9600.0,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +8182,2,49.0,3,0.0,8,300,5,54,62,5.0,0.0,20.818894793451598,1461.670626316134,153.93100895776038,516.6539678572893,43635.54,50,50,1,5079,201708182,,,,,2.0,0.0,4.0,1.0,3.0,2.0,1904.070652657539,498.0,880.0,0.0,0.0,38393.0,1,1,2,100.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2153.0744979246356,0.04934222191187815,0.05607987127665553,19196.5,5,3,5,5_1,5_0,5_0_0 +8183,1,52.0,5,327.0,2,111,6,0,56,2.0,0.0,0.0,893.6973640433731,0.0,0.0,10771.96,0,71,2,508,201708183,,,,353.0,1.0,3.0,3.0,1.0,2.0,1.3,325.180170223244,0.0,664.0,0.0,0.0,14024.0,0,4,3,45.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,893.6973640433731,0.08296515806254137,0.06372628095004086,10787.692307692307,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8184,2,51.0,1,0.0,9,111,4,37,37,9.0,0.0,0.0,1130.581002705472,0.0,0.0,68475.23999999999,30,31,2,5080,201708184,,,,,2.0,1.0,4.0,1.0,3.0,2.0,2772.5140376883064,0.0,840.0,0.0,0.0,80037.0,1,1,2,94.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1130.581002705472,0.016510800147695313,0.01412572938397831,40018.5,9,5,9,9_0,9_4,9_0_0 +8185,2,39.0,3,0.0,7,111,2,0,48,5.0,0.0,0.0,1017.5229024349248,0.0,0.0,18238.853711848173,0,20,2,5081,201708185,,,,323.0,1.0,1.0,4.0,1.0,2.0,1.5,3569.0945083655306,0.0,756.0,0.0,0.0,31324.0,0,1,3,75.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1017.5229024349248,0.05578875287397749,0.03248381121296529,20882.666666666668,5,3,5,5_0,5_2,5_0_0 +8186,2,40.0,4,0.0,1,112,2,55,55,5.0,0.0,138.792631956344,1057.7904070496288,0.0,1971.1697568852403,27826.94,50,60,1,5082,201708186,,,301.0,,2.0,0.0,5.0,1.0,3.0,1.8,2677.659449707152,1900.0,0.0,0.0,0.0,35366.0,1,1,2,95.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3167.7527958912133,0.11383762626761022,0.08957057048835643,19647.777777777777,5,3,5,5_1,5_0,5_1_0 +8187,2,50.0,2,0.0,9,112,4,55,46,7.0,0.0,0.0,1792.7784471472485,0.0,0.0,100736.87169350259,50,50,1,5083,201708187,,,280.0,,2.0,0.0,6.0,1.0,3.0,2.0,2054.349978386326,0.0,1332.0,0.0,0.0,53250.0,1,1,2,230.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1792.7784471472485,0.017796646024524906,0.033667200885394336,26625.0,7,4,7,7_1,7_0,7_0_0 +8188,1,45.0,3,353.0,1,300,4,0,31,1.0,0.0,0.0,392.4731195106139,0.0,0.0,24462.559999999998,0,30,1,5084,201708188,,,,152.0,1.0,0.0,3.0,2.0,3.0,1.6,1014.137169548198,0.0,291.6,0.0,0.0,15386.0,0,1,3,100.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,392.4731195106139,0.016043828589919207,0.025508457007059268,9616.25,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +8189,2,43.0,2,0.0,8,111,2,43,37,10.0,0.0,0.0,561.2527120573593,0.0,1799.4004150579576,138024.11,33,41,1,5085,201708189,,,400.0,,2.0,0.0,6.0,1.0,3.0,1.8,1794.1452949626323,0.0,417.0,1017.0,0.0,92177.0,1,1,1,139.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2360.653127115317,0.017103193979046975,0.025610001704495886,51209.444444444445,10,5,10,10_1,10_2,10_0_0 +8190,2,64.0,3,0.0,6,111,2,77,74,9.0,0.0,0.0,979.8368690114091,0.0,2123.1863304518674,36502.259999999995,50,50,1,5086,201708190,,,902.0,,0.0,2.0,5.0,0.0,2.0,1.5,1563.1831666064954,0.0,728.0,1200.0,0.0,52469.0,5,5,1,120.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3103.023199463277,0.0850090706565368,0.05914012463479915,34979.333333333336,9,5,9,9_1,9_2,9_0_0 +8191,2,45.0,2,0.0,6,111,4,0,37,4.0,0.0,0.0,1407.8425343213378,0.0,0.0,36689.59087530163,0,31,8,5088,201708191,,,,,1.0,0.0,4.0,3.0,4.0,2.3,805.5327267996163,0.0,1046.0,0.0,0.0,41932.0,0,1,2,91.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1407.8425343213378,0.03837171526676948,0.03357441892400405,18231.304347826088,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +8192,2,64.0,3,0.0,3,111,2,78,77,5.0,0.0,0.0,218.1634831559187,0.0,2758.2113977118897,19278.43087530163,50,50,2,5090,201708192,,,,,1.0,1.0,4.0,1.0,3.0,2.0,3727.5607032711405,80.0,129.0,1512.0,0.0,38260.0,5,5,1,90.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2976.3748808678083,0.1543888556138125,0.07779338423595944,19130.0,5,3,5,5_0,5_2,5_0_1 +8193,2,75.0,3,0.0,4,111,2,86,72,4.0,1269.1648073111057,0.0,557.2149227619826,0.0,0.0,15520.48,71,50,1,5091,201708193,,,240.0,,0.0,2.0,3.0,0.0,2.0,1.5,1985.9095087068613,0.0,414.0,0.0,0.0,25201.0,5,5,1,120.0,4,4.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1826.3797300730885,0.11767546687171328,0.07247251022074871,16800.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +8194,2,76.0,3,0.0,9,111,6,77,77,7.0,0.0,0.0,632.5869896090142,0.0,139.77643342141462,37381.30175060326,60,30,1,5092,201708194,,,500.0,,0.0,7.0,4.0,0.0,2.0,1.5,2723.747507414194,0.0,470.0,79.0,0.0,40557.0,5,5,1,89.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,772.3634230304287,0.020661758335314372,0.01904389927831025,27038.0,7,4,7,7_1,7_3,7_0_0 +8195,2,89.0,3,0.0,1,111,2,0,86,1.0,0.0,0.0,1938.1388617808093,0.0,1557.0033089980361,19093.1,0,71,1,5093,201708195,,,160.0,,0.0,3.0,3.0,0.0,1.0,1.0,2751.796078735364,0.0,1440.0,880.0,0.0,10228.0,0,5,1,65.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3495.1421707788454,0.1830578675426644,0.34172293417861216,10228.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +8196,2,48.0,4,0.0,5,111,1,0,43,4.0,0.0,0.0,2568.0339918595723,0.0,0.0,61826.70784974978,0,33,2,5094,201708196,816.0,816.0,,,1.0,0.0,5.0,3.0,4.0,2.3,648.979073881413,0.0,1908.0,0.0,0.0,37512.0,0,1,2,102.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2568.0339918595723,0.041535997648465536,0.06845899956972629,16309.565217391306,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +8197,2,82.0,2,0.0,4,300,2,0,75,8.0,0.0,416.377895869032,1572.0459656666565,0.0,61.9262679715128,24794.96753375566,0,30,1,5097,201708197,,,140.0,,0.0,2.0,5.0,0.0,1.0,1.0,3094.8141178017495,0.0,1168.0,35.0,0.0,28198.0,0,5,1,80.0,0,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2050.3501295072015,0.08269218851429719,0.07271260832354073,28198.0,8,4,8,8_1,8_1,8_0_1 +8198,2,84.0,3,0.0,1,111,2,0,86,2.0,0.0,0.0,539.7178358153503,0.0,1415.4575536345783,12295.240000000002,0,71,1,5098,201708198,,,100.0,,0.0,8.0,6.0,0.0,1.0,1.0,1783.5348034371737,0.0,401.0,800.0,0.0,10516.0,0,5,1,67.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1955.1753894499286,0.15901888775249026,0.18592386738778324,10516.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +8199,0,66.0,4,0.0,1,111,2,78,,2.0,0.0,0.0,0.0,0.0,0.0,36580.609284358914,50,70,1,510,201708199,,,,,0.0,2.0,4.0,1.0,3.0,2.0,2929.8935555992007,0.0,0.0,0.0,0.0,25081.0,4,8,5,140.0,9,7.0,4,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,12540.5,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +8200,1,23.0,3,148.0,4,111,1,55,67,4.0,0.0,0.0,0.0,0.0,0.0,17743.670875301632,50,31,2,5101,201708200,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1099.3430572688892,0.0,0.0,0.0,0.0,24286.0,4,1,3,74.0,5,4.0,3,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0.0,0.0,0.0,16190.666666666666,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +8201,2,56.0,3,0.0,2,111,4,0,37,8.0,0.0,0.0,637.9707086695164,0.0,0.0,22746.8,0,70,2,5102,201708201,,,130.0,,1.0,2.0,2.0,0.0,1.0,1.0,2630.898181677647,0.0,474.0,0.0,0.0,29613.0,0,1,2,51.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,637.9707086695164,0.02804661353111279,0.021543602764647837,29613.0,8,4,8,8_0,8_2,8_0_1 +8202,1,49.0,4,150.0,3,221,1,0,54,5.0,0.0,0.0,816.9793674312161,0.0,2390.353943700394,33865.31087530163,0,41,2,5103,201708202,1351.0,1351.0,,,1.0,1.0,5.0,1.0,2.0,1.3,602.8103559930213,0.0,607.0,1351.0,0.0,24606.0,0,1,2,85.0,1,1.0,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,3207.3333111316106,0.09470851523972741,0.1303476107913359,18927.69230769231,5,3,5,5_0,5_1,5_0_1 +8203,2,79.0,1,0.0,4,111,2,77,74,9.0,0.0,0.0,1057.7904070496288,0.0,1971.1697568852403,24955.888161188148,44,12,1,5104,201708203,,,440.0,,0.0,2.0,5.0,0.0,2.0,1.5,1772.6263960127953,1900.0,0.0,0.0,0.0,48504.0,5,5,1,110.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3028.9601639348693,0.12137256523875449,0.06244763656471362,32336.0,9,5,9,9_1,9_3,9_0_1 +8204,2,51.0,5,0.0,9,300,2,64,52,2.0,0.0,0.0,228.80806007134552,0.0,0.0,31162.520000000004,71,31,1,5105,201708204,,,300.0,,2.0,6.0,7.0,1.0,3.0,2.0,2109.1011434394823,0.0,170.0,0.0,0.0,26375.0,1,1,2,148.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,228.80806007134552,0.0073424119766740785,0.008675187111709783,13187.5,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8205,2,52.0,3,0.0,4,111,2,45,85,7.0,0.0,0.0,1210.9548444125269,0.0,1854.6580901633638,40065.74,60,33,1,5106,201708205,,,380.0,,1.0,2.0,5.0,1.0,3.0,2.0,950.66744025447,361.9472123478165,750.0,836.0,0.0,49591.0,1,5,1,95.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3065.612934575891,0.07651457166586442,0.061817929353630514,24795.5,7,4,7,7_1,7_2,7_0_1 +8207,2,39.0,3,0.0,9,111,2,22,38,10.0,0.0,208.188947934516,1345.929765125562,0.0,0.0,49760.22,41,30,1,5109,201708207,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.1,2479.123850479588,0.0,1000.0,0.0,0.0,82520.0,1,1,2,78.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1554.1187130600779,0.031232151165330013,0.018833236949346556,39295.23809523809,9,5,9,9_1,9_4,9_0_0 +8208,2,64.0,2,0.0,1,111,2,75,74,8.0,0.0,0.0,1211.4632731081986,0.0,3427.4657301976713,32236.717210052615,30,30,1,511,201708208,,,205.0,,0.0,2.0,5.0,0.0,2.0,1.5,1668.7926879973702,1216.2573875667645,397.0,1224.0,0.0,49563.0,5,5,1,80.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4638.92900330587,0.14390202864264598,0.09359661447664326,33042.0,9,5,9,9_1,9_3,9_1_0 +8209,2,44.0,2,0.0,9,111,5,64,67,7.0,0.0,333.10231669522557,1857.3830758732754,113.23660429076627,0.0,49503.660315994115,50,71,1,5110,201708209,,,696.0,,2.0,0.0,4.0,2.0,4.0,2.1,3360.241143631576,0.0,1380.0,0.0,0.0,51010.0,4,1,3,85.0,6,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2303.721996859267,0.04653639715031251,0.045162164219942506,24290.47619047619,7,4,7,7_1,7_2,7_0_0 +8210,2,51.0,3,0.0,3,120,2,0,64,6.0,0.0,0.0,336.4824412813905,0.0,990.8202875442048,27919.13665845403,0,41,2,5115,201708210,,,160.0,,1.0,0.0,3.0,0.0,1.0,1.0,2668.25556609501,0.0,250.0,560.0,0.0,23753.0,0,1,3,55.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1327.3027288255953,0.04754096607868003,0.05587937224037365,23753.0,6,3,6,6_0,6_1,6_0_1 +8211,1,37.0,4,408.0,1,112,2,0,56,2.0,1031.1964059402735,0.0,316.2934948045071,138.0071114793714,0.0,10986.679999999998,0,50,1,5117,201708211,,,345.0,,1.0,0.0,5.0,2.0,3.0,1.6,203.9847681756594,0.0,235.0,0.0,0.0,17716.0,0,1,3,160.0,7,0.0,2,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1485.497012224152,0.13520890862609564,0.0838505877299702,11072.5,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +8212,2,27.0,2,0.0,9,112,5,56,21,6.0,0.0,624.566843803548,153.43599322431407,159.23897478389006,0.0,17066.76,50,44,1,5118,201708212,,,240.0,,2.0,0.0,3.0,0.0,2.0,1.5,3507.160823936299,0.0,114.0,0.0,0.0,32530.0,1,1,2,70.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,937.2418118117521,0.05491621208781,0.02881161425796963,21686.666666666668,6,3,6,6_1,6_1,6_0_0 +8213,2,78.0,2,0.0,1,111,2,75,74,9.0,0.0,0.0,152.0900634591885,0.0,0.0,20481.747849749776,60,50,1,5119,201708213,,,270.0,,0.0,4.0,8.0,0.0,2.0,1.5,2077.148809850994,0.0,113.0,0.0,0.0,51650.0,5,5,1,185.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,152.0900634591885,0.0074256388944387176,0.0029446285277674447,34433.333333333336,9,5,9,9_1,9_2,9_1_0 +8214,2,58.0,3,0.0,4,112,2,0,52,7.0,0.0,416.377895869032,1211.3367886130059,0.0,1850.7107513772112,29277.62121562799,0,60,1,512,201708214,,,250.0,,1.0,2.0,4.0,0.0,1.0,1.0,3276.7734229371595,0.0,900.0,1046.0,0.0,25713.0,0,1,1,100.0,8,0.0,1,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3478.425435859249,0.11880833522098146,0.13527886422662658,25713.0,7,4,7,7_1,7_0,7_0_1 +8215,2,50.0,4,0.0,99,111,2,55,56,6.0,0.0,0.0,1076.7438121004495,0.0,955.4338487033403,47166.380000000005,50,71,2,5121,201708215,,,,520.0,3.0,1.0,4.0,2.0,4.0,2.5,2481.5671310073326,0.0,800.0,540.0,0.0,51375.0,1,1,3,89.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2032.1776608037899,0.04308530060614763,0.03955576955335844,20550.0,5,3,5,5_0,5_3,5_0_0 +8216,1,39.0,3,382.0,5,111,4,0,56,1.0,0.0,0.0,686.4241802140366,0.0,0.0,9963.220000000001,0,50,2,5122,201708216,,,280.0,,1.0,0.0,3.0,2.0,3.0,1.8,818.8277520690564,0.0,510.0,0.0,0.0,16674.0,0,4,3,81.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,686.4241802140366,0.06889581683572545,0.041167337184481026,9263.333333333334,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8217,1,33.0,3,165.0,99,112,1,0,46,4.0,0.0,0.0,323.0231436301349,44.23304855108057,0.0,25141.319999999996,0,42,2,5123,201708217,,,204.0,285.0,1.0,0.0,3.0,1.0,2.0,1.3,676.6250995301118,0.0,240.0,0.0,0.0,21280.0,0,1,3,59.0,9,1.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,367.25619218121545,0.01460767343087855,0.017258279707763884,16369.23076923077,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +8218,2,31.0,2,0.0,9,112,2,21,46,6.0,0.0,0.0,807.5578590753372,0.0,3184.779495677801,56218.62,50,31,1,5124,201708218,,,300.0,,2.0,0.0,7.0,3.0,5.0,2.4,2442.14134276415,0.0,600.0,1800.0,0.0,53608.0,1,1,2,165.0,8,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3992.3373547531382,0.07101450293075742,0.07447279053038984,22336.666666666668,6,3,6,6_1,6_1,6_0_0 +8219,2,32.0,3,0.0,3,111,1,34,34,8.0,0.0,0.0,686.4241802140366,0.0,0.0,50953.0,20,20,2,5125,201708219,,,250.0,700.0,2.0,0.0,3.0,1.0,3.0,1.8,3467.342770802671,0.0,510.0,0.0,0.0,54634.0,1,1,3,71.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,686.4241802140366,0.01347171275909243,0.012564047666545312,30352.222222222223,8,4,8,8_0,8_2,8_0_1 +8220,1,36.0,3,313.0,3,111,1,0,43,2.0,0.0,0.0,484.5347154452023,0.0,690.0355573968569,8744.6,0,50,2,5126,201708220,,,340.0,,1.0,0.0,4.0,2.0,3.0,1.6,443.00174750056243,0.0,360.0,390.0,0.0,17786.0,0,4,3,90.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1174.5702728420592,0.13431949692862558,0.06603903479377371,11116.25,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8221,2,60.0,3,0.0,1,400,4,62,63,7.0,0.0,0.0,2117.147520542509,0.0,0.0,28311.359999999997,60,50,1,5129,201708221,,,123.0,,2.0,1.0,3.0,0.0,2.0,1.5,1763.6298064748091,0.0,1573.0,0.0,0.0,36954.0,1,1,1,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2117.147520542509,0.07478084841358766,0.05729143044169803,24636.0,7,4,7,7_1,7_0,7_1_0 +8222,2,80.0,4,0.0,7,120,4,77,78,4.0,0.0,0.0,2489.9700654822896,0.0,0.0,19292.559999999998,71,71,1,513,201708222,,,,,0.0,8.0,5.0,0.0,2.0,1.5,2492.5287599227445,0.0,1850.0,0.0,0.0,25770.0,5,5,1,90.0,0,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2489.9700654822896,0.12906374610120636,0.09662281977036435,17180.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +8223,2,58.0,2,0.0,5,111,2,77,75,5.0,0.0,0.0,1445.5285677448535,0.0,3175.932885967585,65807.28000000001,50,31,1,5130,201708223,,,450.0,,0.0,3.0,7.0,0.0,2.0,1.5,2738.0515993719005,0.0,1074.0,1795.0,0.0,28423.0,6,5,1,250.0,7,5.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4621.461453712439,0.07022720668157745,0.16259583624925023,18948.666666666668,5,3,5,5_1,5_2,5_0_0 +8224,1,45.0,5,382.0,9,111,4,0,54,4.0,0.0,0.0,1493.9820392893737,0.0,0.0,21790.8458467513,0,31,2,5132,201708224,,,612.0,,1.0,0.0,4.0,2.0,3.0,1.6,512.9010505095137,0.0,1110.0,0.0,0.0,25614.0,0,4,3,83.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1493.9820392893737,0.06856007562974453,0.058326775954141236,16008.75,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +8225,2,51.0,3,0.0,1,300,5,72,22,1.0,0.0,832.755791738064,1345.929765125562,132.69914565324171,0.0,26516.82,42,31,1,5133,201708225,,,,,1.0,2.0,6.0,1.0,3.0,2.0,1589.9969297558162,0.0,1000.0,0.0,0.0,10303.0,4,4,1,200.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2311.384702516868,0.08716673803709751,0.22434093977646005,5151.5,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8226,1,38.0,4,285.0,1,111,1,85,68,2.0,0.0,0.0,77.3857192525781,0.0,144.20662958265703,22894.719999999998,60,60,2,5134,201708226,,,,,1.0,0.0,3.0,4.0,6.0,2.7,4078.2648231014514,139.0,0.0,0.0,0.0,35370.0,6,1,3,48.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,221.59234883523513,0.009678753390966788,0.0062649801762859805,13100.0,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +8227,2,59.0,1,0.0,1,120,2,13,13,9.0,0.0,0.0,973.1072201857813,307.86201791552077,0.0,27393.931191295746,50,50,1,5135,201708227,,,260.0,,2.0,3.0,6.0,0.0,2.0,1.5,1394.4920572368299,0.0,723.0,0.0,0.0,46925.0,1,1,1,93.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1280.9692381013022,0.04676105919797018,0.027298225638813046,31283.333333333332,8,4,8,8_1,8_1,8_1_0 +8228,2,27.0,2,0.0,9,400,5,42,37,8.0,0.0,0.0,3160.341028536425,0.0,2581.0290124676408,31883.433228171012,20,30,1,5136,201708228,,,,,2.0,0.0,6.0,1.0,3.0,1.8,3231.2154631196813,2487.8400789983416,1319.0,0.0,0.0,52890.0,1,1,2,125.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5741.370041004066,0.18007377059792937,0.1085530353753841,29383.333333333332,8,4,8,8_1,8_0,8_0_0 +8229,2,39.0,3,0.0,1,112,2,0,13,1.0,0.0,41.637789586903196,4253.138057796776,185.7788039145384,0.0,30473.8,0,44,1,5137,201708229,,,980.0,,1.0,0.0,8.0,4.0,5.0,2.4,1343.5519171376254,0.0,3160.0,0.0,0.0,14581.0,0,1,1,257.0,7,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4480.554651298217,0.14702973214033752,0.30728719918374714,6075.416666666667,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8230,1,41.0,4,420.0,99,111,1,0,84,2.0,0.0,0.0,1211.3367886130059,0.0,0.0,25949.64250520533,0,50,2,5138,201708230,,,,457.0,0.0,0.0,2.0,1.0,2.0,1.3,1050.8572963940671,0.0,900.0,0.0,0.0,17340.0,0,3,3,30.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1211.3367886130059,0.046680288114567266,0.06985794628679388,13338.461538461537,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +8231,2,50.0,4,0.0,7,112,2,46,46,4.0,2379.684013708323,0.0,5358.296198857831,0.0,5721.280977636604,79196.43660306485,31,50,1,5139,201708231,,,890.0,,2.0,0.0,6.0,5.0,7.0,3.4,1406.0932217176958,5514.712175112991,1700.0,0.0,0.0,57303.0,1,1,2,140.0,6,1.0,4,8,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,13459.261190202757,0.1699478129004846,0.2348788229272945,16853.823529411766,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +8232,1,44.0,4,284.0,7,111,2,0,52,2.0,0.0,0.0,1049.8252167979383,0.0,2335.504963497054,13571.410875301628,0,71,1,5141,201708232,,,276.0,,1.0,2.0,4.0,2.0,3.0,1.8,568.3289593048598,0.0,780.0,1320.0,0.0,24338.0,0,1,3,100.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,3385.3301802949927,0.24944570696447602,0.13909648205666006,13521.111111111111,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +8233,2,89.0,4,0.0,1,120,5,0,78,2.0,0.0,1387.9263195634398,317.63942456963264,176.75526201011795,0.0,15071.420315994115,0,71,1,5142,201708233,,,,,0.0,4.0,3.0,0.0,1.0,1.0,3802.111834627001,0.0,236.0,0.0,0.0,10500.0,0,5,1,45.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1882.3210061431905,0.12489340531135151,0.17926866725173243,10500.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8234,1,29.0,3,408.0,99,111,4,0,85,6.0,0.0,0.0,1082.1275311609518,0.0,0.0,5369.82,0,42,1,5143,201708234,,,,,0.0,0.0,2.0,2.0,3.0,1.6,573.7157025156812,0.0,804.0,0.0,0.0,37996.0,0,6,3,41.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1082.1275311609518,0.20152026160298703,0.028480038192466358,23747.5,6,3,6,6_1,6_2,6_0_0 +8235,2,51.0,3,0.0,9,120,2,13,43,1.0,2379.684013708323,0.0,969.0694308904046,0.0,0.0,27124.15755151122,31,33,1,5147,201708235,,,210.0,,2.0,0.0,5.0,1.0,3.0,1.8,1453.872811341151,0.0,720.0,0.0,0.0,11600.0,1,1,2,82.0,0,2.0,4,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3348.7534445987276,0.12346018261541,0.2886856417757524,6444.444444444444,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +8236,2,60.0,4,0.0,5,112,2,63,63,9.0,2855.620816449988,0.0,2128.840415355341,169.8549064361494,1333.5316564416146,52702.61464059074,50,50,1,5149,201708236,,,800.0,,4.0,1.0,5.0,2.0,4.0,2.5,2089.751408960421,1285.3840408158098,1050.0,0.0,0.0,80661.0,1,4,1,140.0,10,4.0,4,1,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,6487.8477946830935,0.12310295872277754,0.08043351551162388,32264.4,9,5,9,9_1,9_2,9_0_0 +8237,2,54.0,2,0.0,7,111,2,52,65,9.0,285.5620816449988,0.0,1075.397882335324,247.7050718860512,0.0,25548.619999999995,50,50,1,515,201708237,,,379.0,,2.0,3.0,5.0,0.0,2.0,1.5,1425.6317368635016,0.0,799.0,0.0,0.0,49209.0,1,1,1,105.0,4,4.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1608.665035866374,0.06296485038590634,0.03269046385552184,32806.0,9,5,9,9_1,9_2,9_0_0 +8238,2,56.0,1,0.0,1,300,2,56,38,10.0,0.0,0.0,3350.7411202908893,0.0,1290.5145062338204,34075.506614085505,30,20,1,5150,201708238,,,,,2.0,0.0,8.0,0.0,2.0,1.5,2552.8837386327496,1243.9200394991708,1975.0,0.0,0.0,87016.0,1,1,1,200.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4641.255626524709,0.13620503662904287,0.05333795654275891,58010.666666666664,10,5,10,10_1,10_0,10_1_0 +8239,2,46.0,2,0.0,4,111,1,0,46,7.0,0.0,0.0,538.3719060502248,0.0,2123.1863304518674,49782.74353213367,0,50,2,5151,201708239,800.0,800.0,,759.0,3.0,0.0,4.0,2.0,3.0,2.0,2200.6360644482784,0.0,400.0,1200.0,0.0,51057.0,0,1,3,68.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2661.5582365020923,0.05346347042492977,0.052129154405901094,25528.5,7,4,7,7_0,7_4,7_0_1 +8240,2,41.0,3,0.0,1,111,4,56,34,6.0,0.0,0.0,2045.8132429908542,212.31863304518674,0.0,50842.91214129903,41,20,8,5153,201708240,,,768.0,,2.0,0.0,3.0,3.0,5.0,2.4,2820.9190758490604,0.0,1520.0,0.0,0.0,51121.0,1,1,2,72.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2258.131876036041,0.044413897255932165,0.044172294674126894,21300.416666666668,6,3,6,6_0,6_3,6_1_0 +8241,2,56.0,3,0.0,7,111,2,0,45,2.0,0.0,0.0,518.1829595733413,0.0,2250.5775102789794,34069.0,0,31,1,5154,201708241,,,924.0,605.0,1.0,0.0,4.0,2.0,3.0,2.0,234.22335535063846,0.0,385.0,1272.0,0.0,22383.0,0,1,3,90.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2768.760469852321,0.08126920278999446,0.12369925701882326,11191.5,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +8242,2,56.0,3,0.0,8,120,5,0,56,1.0,0.0,0.0,633.9329193741397,54.84898020333991,0.0,17142.16,0,71,1,5156,201708242,,,,,1.0,3.0,2.0,0.0,1.0,1.0,2626.5649010750326,0.0,471.0,0.0,0.0,1580.0,0,1,1,65.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,688.7818995774796,0.04018057815219783,0.4359379111249871,1580.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8243,2,35.0,3,0.0,1,112,4,0,55,4.0,0.0,346.98157989085996,2691.859530251124,0.0,0.0,44603.62301866951,0,43,1,5157,201708243,,,,,1.0,0.0,6.0,2.0,3.0,1.6,405.2049638798376,0.0,2000.0,0.0,0.0,26263.0,0,1,2,140.0,8,1.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3038.841110141984,0.06812991646149533,0.11570807257898884,16414.375,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +8244,2,34.0,2,0.0,4,112,5,43,48,8.0,0.0,0.0,2045.8132429908542,123.8525359430256,0.0,55338.94,33,31,1,5158,201708244,,,690.0,,2.0,0.0,7.0,3.0,5.0,2.4,1975.3024986447203,0.0,1520.0,0.0,0.0,64286.0,1,1,2,110.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2169.6657789338797,0.03920685468377023,0.033750206560275636,26785.833333333336,7,4,7,7_1,7_0,7_0_1 +8245,2,41.0,4,0.0,9,111,1,0,45,6.0,0.0,0.0,403.7789295376686,0.0,0.0,19999.92,0,30,2,5159,201708245,,,,331.0,1.0,0.0,2.0,0.0,1.0,1.0,2574.2134542698577,0.0,300.0,0.0,0.0,22730.0,0,1,3,45.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,403.7789295376686,0.020189027232992363,0.017764141202713093,22730.0,6,3,6,6_0,6_3,6_0_0 +8246,1,59.0,2,177.0,4,400,2,0,64,3.0,126.91648073111057,0.0,928.6915379366377,132.69914565324171,0.0,11196.440000000002,0,50,1,516,201708246,,,150.0,,1.0,3.0,6.0,0.0,1.0,1.0,2438.5661480466674,0.0,690.0,0.0,0.0,15247.0,0,1,3,100.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1188.3071643209898,0.10613258895872167,0.07793711315806322,15247.0,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +8247,2,53.0,3,0.0,4,111,2,42,63,6.0,0.0,229.00784272796759,270.53188279023794,0.0,2055.952096654225,33914.09999999999,41,50,1,5161,201708247,,,375.0,,2.0,2.0,4.0,0.0,2.0,1.5,1221.4818151873917,0.0,201.0,1162.0,0.0,35242.0,1,1,2,90.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2555.4918221724306,0.07535189853696342,0.07251267868374187,23494.666666666668,6,3,6,6_1,6_2,6_0_1 +8248,2,55.0,3,0.0,6,400,5,13,13,3.0,1565.8320810200767,346.98157989085996,757.7584577656913,247.7050718860512,0.0,21691.040315994116,70,50,1,5162,201708248,,,130.0,,2.0,2.0,5.0,0.0,2.0,1.5,1836.778597527908,0.0,563.0,0.0,0.0,22600.0,1,1,1,100.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2918.2771905626787,0.1345383692090995,0.1291273093169327,15066.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8249,1,48.0,2,379.0,5,111,2,68,63,2.0,0.0,0.0,547.8240844930708,0.0,1020.8584425131979,22083.74,50,50,8,5163,201708249,,,,279.0,2.0,0.0,3.0,1.0,3.0,1.8,3282.1546712769573,984.0,0.0,0.0,0.0,22059.0,1,1,3,50.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1568.6825270062686,0.07103337238195472,0.07111303898663895,12255.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8250,2,31.0,3,0.0,5,111,6,0,63,4.0,0.0,0.0,1211.3367886130059,0.0,0.0,16373.8,0,50,2,5164,201708250,,,,708.0,1.0,1.0,2.0,0.0,1.0,1.0,5451.67159790817,0.0,900.0,0.0,0.0,19480.0,0,1,3,38.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1211.3367886130059,0.07398018716565524,0.062183613378491064,19480.0,5,3,5,5_0,5_3,5_0_0 +8251,2,32.0,2,0.0,99,111,2,0,43,6.0,0.0,0.0,434.25079868353174,0.0,809.2170580897301,17558.019999999997,0,33,2,5165,201708251,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3222.9054916038785,780.0,0.0,0.0,0.0,23995.0,0,1,2,35.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1243.467856773262,0.07082050577304629,0.051821956939915065,23995.0,7,4,7,7_0,7_4,7_0_0 +8252,2,69.0,1,0.0,4,112,2,72,74,10.0,0.0,0.0,2225.8137091496924,0.0,4147.7561515932575,81370.74461549887,20,12,1,5168,201708252,,,400.0,,0.0,2.0,7.0,0.0,2.0,1.5,2086.0022568441623,3998.0,0.0,0.0,0.0,96105.0,5,5,2,320.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,6373.5698607429495,0.07832753517077883,0.06631881651051401,64070.0,10,5,10,10_1,10_0,10_0_1 +8253,1,33.0,2,331.0,4,221,4,0,56,1.0,0.0,0.0,232.8458493667222,106.15931652259337,0.0,9493.960000000001,0,71,1,5169,201708253,,,122.0,,1.0,0.0,5.0,2.0,3.0,1.6,628.2396246123909,0.0,173.0,0.0,0.0,15035.0,0,4,3,52.0,1,3.0,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,339.00516588931555,0.03570745672925897,0.022547733015584673,9396.875,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +8254,2,65.0,3,0.0,1,112,2,81,71,2.0,0.0,0.0,462.9998392031933,0.0,2158.572769292732,24076.679999999997,50,50,1,5170,201708254,,,170.0,,1.0,1.0,3.0,0.0,2.0,1.5,1289.8017946466357,0.0,344.0,1220.0,0.0,19057.0,4,5,1,96.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2621.5726084959256,0.10888430666088206,0.13756481127648243,12704.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8255,2,35.0,3,0.0,9,112,2,47,38,8.0,0.0,0.0,504.72366192208574,0.0,1238.525359430256,50506.600000000006,31,12,1,5171,201708255,,,170.0,,2.0,0.0,4.0,1.0,3.0,1.8,2125.4010679915436,0.0,375.0,700.0,0.0,49892.0,4,1,3,90.0,8,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1743.2490213523417,0.03451527169424078,0.03494045180294119,27717.777777777777,8,4,8,8_1,8_1,8_0_0 +8256,2,69.0,2,0.0,5,400,4,77,74,10.0,0.0,0.0,3718.649408174904,325.555237335953,2257.012180004116,55697.310530707655,50,10,1,5172,201708256,,,132.0,,0.0,4.0,4.0,0.0,2.0,1.5,1768.456274319953,2175.5219848665133,1863.0,0.0,0.0,78350.0,5,5,1,90.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6301.216825514973,0.11313323328315676,0.08042395437798305,52233.333333333336,10,5,10,10_1,10_0,10_0_0 +8257,0,21.0,2,0.0,1,111,4,84,84,7.0,0.0,0.0,0.0,0.0,0.0,24934.56,41,41,2,5173,201708257,,,,,0.0,0.0,2.0,0.0,2.0,1.5,3157.948337282356,0.0,0.0,0.0,0.0,36014.0,3,3,5,45.0,10,8.0,3,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,24009.333333333332,7,4,7,7_0,7_4,7_1_0 +8258,1,38.0,4,220.0,7,112,2,0,63,3.0,0.0,0.0,1076.7438121004495,0.0,0.0,16112.865846751301,0,50,1,5175,201708258,,,200.0,250.0,1.0,0.0,3.0,2.0,3.0,1.6,1035.3180915802523,0.0,800.0,0.0,0.0,24830.0,0,1,3,55.0,9,2.0,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1076.7438121004495,0.06682509631379722,0.043364631981492124,15518.75,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +8259,2,85.0,2,0.0,7,112,4,0,72,1.0,0.0,0.0,4037.789295376686,0.0,0.0,26000.767699472086,0,33,1,5176,201708259,,,,,0.0,0.0,12.0,0.0,2.0,1.5,4178.692942294547,0.0,3000.0,0.0,0.0,15139.0,0,5,1,120.0,6,0.0,5,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4037.789295376686,0.1552950029032669,0.26671439958892174,10092.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8260,2,61.0,2,0.0,5,111,2,0,55,6.0,0.0,0.0,1009.4473238441715,58.38762408742635,0.0,13689.810875301628,0,70,2,5177,201708260,,,,440.0,1.0,2.0,4.0,0.0,1.0,1.0,3063.171458661391,0.0,750.0,0.0,0.0,21723.0,0,1,3,61.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1067.8349479315978,0.07800216947175832,0.049156882011305886,21723.0,6,3,6,6_0,6_2,6_0_0 +8261,2,83.0,2,0.0,4,111,1,86,74,8.0,0.0,0.0,565.290501352736,0.0,0.0,48094.87202733072,71,44,2,5178,201708261,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1887.6119865957098,0.0,420.0,0.0,0.0,40515.0,6,5,1,110.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,565.290501352736,0.011753654340352547,0.01395262251888772,27010.0,7,4,7,7_0,7_3,7_0_1 +8262,1,37.0,4,100.0,9,111,2,55,64,4.0,0.0,0.0,94.21508355878933,0.0,1946.2541362475451,45611.14000000001,31,43,1,518,201708262,,,1060.0,,2.0,0.0,5.0,3.0,5.0,2.4,1734.8012231472449,0.0,70.0,1100.0,0.0,41100.0,1,1,2,125.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2040.4692198063344,0.04473620303737934,0.049646453036650474,17125.0,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +8263,2,47.0,3,0.0,5,300,2,54,52,5.0,0.0,0.0,254.3807256087312,0.0,1613.6216111434194,45359.91999999999,31,50,1,5181,201708263,,,495.0,,2.0,0.0,5.0,2.0,4.0,2.3,1564.3759119860665,0.0,189.0,912.0,0.0,46580.0,1,1,1,170.0,0,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1868.0023367521505,0.0411817819950333,0.04010309868510414,20252.17391304348,5,3,5,5_1,5_1,5_0_0 +8264,2,47.0,3,0.0,6,111,2,43,21,7.0,0.0,0.0,1938.1388617808093,0.0,0.0,35732.1,20,50,1,5182,201708264,,,960.0,,2.0,2.0,4.0,1.0,3.0,2.0,3875.147031960734,0.0,1440.0,0.0,0.0,47086.0,1,1,2,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1938.1388617808093,0.054240832802460795,0.041161679942675305,23543.0,6,3,6,6_1,6_3,6_0_0 +8265,1,21.0,3,437.0,99,111,1,0,53,4.0,0.0,0.0,532.9881869897225,0.0,470.6396365834973,14987.251191295747,0,60,2,5183,201708265,,,,23.0,1.0,1.0,5.0,3.0,4.0,2.3,728.5792100555309,0.0,396.0,266.0,0.0,39024.0,0,1,3,102.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1003.6278235732198,0.06696543687451531,0.02571822016126537,16966.956521739132,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +8266,1,52.0,3,309.0,9,112,4,68,13,2.0,0.0,0.0,1483.2146011683692,0.0,0.0,26961.651191295747,71,50,1,5184,201708266,,,261.0,,3.0,1.0,5.0,2.0,4.0,2.3,1933.1673350796673,0.0,1102.0,0.0,0.0,26919.0,1,1,2,96.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1483.2146011683692,0.055012009117869146,0.05509917163224374,11703.913043478262,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +8267,2,20.0,4,0.0,99,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,5362.270875301629,0,41,2,5185,201708267,,,,,0.0,0.0,2.0,0.0,1.0,1.0,1507.9520886134062,0.0,0.0,0.0,0.0,2404.0,0,3,3,25.0,7,5.0,1,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,2404.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +8268,2,41.0,3,0.0,99,111,5,0,46,7.0,0.0,138.792631956344,510.107380982588,2813.2218878487242,0.0,54481.38,0,43,1,5186,201708268,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1895.8504265521274,0.0,379.0,0.0,0.0,24971.0,0,1,1,80.0,6,4.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3462.121900787656,0.0635468833716704,0.13864570504936352,24971.0,7,4,7,7_1,7_2,7_0_0 +8270,1,21.0,2,184.0,99,111,2,0,84,3.0,0.0,0.0,671.4185425799222,0.0,1251.1740667387367,19206.221750603254,0,30,2,5188,201708270,,,,376.0,0.0,0.0,3.0,0.0,2.0,1.5,4089.627447807721,1206.0,0.0,0.0,0.0,22615.0,0,3,3,45.0,8,7.0,5,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1922.592609318659,0.10010259353890213,0.08501404418831125,15076.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +8271,1,35.0,3,140.0,99,300,4,56,64,4.0,0.0,0.0,909.8485212248798,106.15931652259337,0.0,41483.44,42,50,1,519,201708271,,,90.0,,2.0,0.0,4.0,3.0,5.0,2.4,1795.175975960245,0.0,676.0,0.0,0.0,41776.0,1,1,2,86.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1016.0078377474732,0.024491889721476163,0.024320371451251273,17406.666666666668,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +8272,2,62.0,3,0.0,5,111,1,0,77,3.0,0.0,0.0,577.403869238866,0.0,0.0,24446.5,0,60,2,5190,201708272,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2733.38831020423,0.0,429.0,0.0,0.0,16073.0,0,5,1,81.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,577.403869238866,0.02361908122794126,0.03592383931057463,16073.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +8273,2,32.0,3,0.0,9,112,2,0,48,4.0,0.0,0.0,293.95438680116,0.0,547.7777008607404,25889.072027330712,0,50,1,5192,201708273,,,266.0,,1.0,0.0,5.0,2.0,3.0,1.6,738.6700507434272,528.0,0.0,0.0,0.0,27916.0,0,1,2,90.0,9,0.0,2,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,841.7320876619004,0.03251302660726102,0.030152317225315247,17447.5,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8274,2,84.0,2,0.0,3,111,1,0,74,8.0,0.0,0.0,796.7459231675512,0.0,1484.7189549108884,41736.86457019117,0,70,2,5193,201708274,,,,,0.0,0.0,2.0,0.0,1.0,1.0,4022.7544779335153,1431.1126702695867,0.0,0.0,0.0,43899.0,0,5,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2281.4648780784396,0.0546630634949009,0.05197077104440738,43899.0,10,5,10,10_0,10_4,10_0_1 +8275,2,55.0,3,0.0,2,111,2,68,63,4.0,0.0,0.0,1061.9385846840685,0.0,1487.9997532583504,21757.93517490295,50,60,2,5194,201708275,,,128.0,,3.0,1.0,4.0,1.0,3.0,2.0,2379.780712649002,0.0,789.0,841.0,0.0,33214.0,1,1,3,100.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2549.938337942419,0.11719578707467093,0.07677299746921235,16607.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +8276,2,44.0,5,0.0,8,111,2,0,64,2.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,31255.92,0,71,2,5195,201708276,,,480.0,528.0,3.0,0.0,4.0,3.0,4.0,2.5,848.1249546722597,900.0,0.0,0.0,0.0,29880.0,0,1,3,80.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1434.7706039691484,0.045903963280208945,0.04801775783029279,11952.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +8277,2,58.0,3,0.0,1,112,2,0,54,5.0,0.0,0.0,1224.7960862642615,0.0,0.0,23247.50753375566,0,60,2,5196,201708277,,,,550.0,1.0,1.0,2.0,0.0,1.0,1.0,1496.0482918301238,0.0,910.0,0.0,0.0,20760.0,0,1,3,38.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1224.7960862642615,0.05268504954717588,0.058997884694810286,20760.0,5,3,5,5_0,5_2,5_1_0 +8278,2,43.0,1,0.0,1,112,2,37,64,10.0,0.0,0.0,1265.1739792180283,0.0,2477.050718860512,66786.95999999999,12,12,1,5197,201708278,,,920.0,,2.0,0.0,8.0,2.0,4.0,2.1,2362.127126580193,0.0,940.0,1400.0,0.0,189661.0,1,1,2,160.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3742.2246980785403,0.05603226585067715,0.019731123942605705,90314.7619047619,10,5,10,10_1,10_0,10_1_0 +8279,2,42.0,3,0.0,9,112,5,22,37,8.0,0.0,416.377895869032,1697.2174338233335,141.54575536345783,0.0,39548.02102692835,41,43,1,5198,201708279,,,486.0,,2.0,0.0,4.0,2.0,4.0,2.3,2576.6941623470225,0.0,1261.0,0.0,0.0,65645.0,1,1,2,105.0,8,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2255.141085055823,0.057022855417222816,0.0343535849654326,28541.304347826088,8,4,8,8_1,8_1,8_0_0 +8280,2,57.0,2,0.0,6,111,5,52,62,6.0,0.0,55.5170527825376,752.3747387051891,153.93100895776038,0.0,23444.68,50,50,1,5199,201708280,,,200.0,,2.0,2.0,7.0,0.0,2.0,1.5,1392.8179294456509,0.0,559.0,0.0,0.0,33629.0,1,1,1,170.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,961.822800445487,0.04102520488424184,0.02860099320364825,22419.333333333332,6,3,6,6_1,6_2,6_0_0 +8281,2,27.0,1,0.0,99,111,4,0,34,7.0,0.0,0.0,888.3136449828709,0.0,0.0,18494.28,0,0,2,52,201708281,,,,491.0,1.0,0.0,2.0,0.0,1.0,1.0,3471.4069741335106,0.0,660.0,0.0,0.0,27450.0,0,1,3,42.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,888.3136449828709,0.048031804697607636,0.03236115282269111,27450.0,8,4,8,8_0,8_3,8_0_0 +8282,1,36.0,3,300.0,1,112,2,84,48,5.0,0.0,0.0,1884.3016711757866,0.0,0.0,24916.12,60,43,1,520,201708282,,,300.0,,1.0,0.0,5.0,2.0,4.0,2.1,1922.1188113415221,0.0,1400.0,0.0,0.0,41270.0,3,1,2,110.0,8,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1884.3016711757866,0.07562580655317869,0.04565790334809272,19652.38095238095,5,3,5,5_1,5_1,5_1_0 +8283,1,47.0,2,201.0,99,111,1,0,64,3.0,0.0,0.0,485.8806452103279,0.0,458.2543829891947,32204.0,0,50,2,5200,201708283,,,,294.0,2.0,1.0,4.0,2.0,3.0,2.0,850.5363743757761,0.0,361.0,259.0,0.0,27834.0,0,1,3,70.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,944.1350281995226,0.02931732170536339,0.03392020651719202,13917.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8284,2,46.0,3,0.0,5,111,4,47,47,7.0,0.0,0.0,2314.9991960159664,0.0,0.0,43524.92,31,43,1,5201,201708284,,,310.0,,2.0,0.0,6.0,2.0,4.0,2.5,1841.357509255848,0.0,1720.0,0.0,0.0,61757.0,1,1,2,180.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2314.9991960159664,0.05318790237905013,0.03748561614093895,24702.8,7,4,7,7_1,7_3,7_0_0 +8285,1,54.0,4,270.0,3,111,1,0,68,1.0,0.0,0.0,484.5347154452023,0.0,1280.9890860392934,13205.800000000001,0,71,2,5202,201708285,999999.0,604.0,,334.0,2.0,3.0,3.0,1.0,2.0,1.5,1550.3774957891283,0.0,360.0,724.0,0.0,12300.0,0,1,3,60.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1765.5238014844958,0.13369305922280328,0.14353852044589396,8200.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8286,2,42.0,2,0.0,8,400,6,0,38,6.0,1745.1016100527704,0.0,1817.0051829195086,159.23897478389006,0.0,27522.431191295742,0,31,1,5204,201708286,,,,,1.0,0.0,5.0,2.0,3.0,1.8,2109.0376012659826,0.0,1350.0,0.0,0.0,41789.0,0,1,1,100.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3721.345767756169,0.13521137511038936,0.08905084514480292,23216.11111111111,6,3,6,6_1,6_0,6_0_0 +8287,2,52.0,4,0.0,1,111,1,0,56,1.0,0.0,0.0,565.290501352736,0.0,530.7965826129669,48370.87010576514,0,50,2,5205,201708287,,,,440.0,1.0,0.0,3.0,0.0,3.0,2.0,5181.512135789264,0.0,420.0,300.0,0.0,17912.0,0,1,3,46.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1096.0870839657027,0.02266006548091977,0.06119289213743316,8956.0,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +8288,2,36.0,3,0.0,3,111,1,37,31,9.0,0.0,0.0,370.2266424673701,0.0,689.909414909834,58555.96,0,30,2,5206,201708288,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4229.94207940679,665.0,0.0,0.0,0.0,61516.0,1,1,2,83.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1060.136057377204,0.01810466530438924,0.017233501160303075,41010.666666666664,10,5,10,10_0,10_3,10_0_1 +8289,2,57.0,3,0.0,1,111,2,52,52,6.0,0.0,0.0,1453.6041463356069,0.0,3715.5760782907682,43391.9716919621,71,71,1,5207,201708289,,,820.0,,4.0,1.0,8.0,4.0,6.0,3.5,1329.2385850714393,0.0,1080.0,2100.0,0.0,83027.0,1,1,2,197.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5169.180224626375,0.11912757183107932,0.06225902687832121,23722.0,6,3,6,6_1,6_2,6_1_0 +8290,2,75.0,2,0.0,9,112,4,75,75,7.0,0.0,0.0,2000.051630976585,0.0,0.0,32002.085846751303,50,41,1,5208,201708290,,,532.0,,0.0,2.0,5.0,0.0,2.0,1.5,2821.6710628177125,0.0,1486.0,0.0,0.0,40027.0,5,5,1,103.0,10,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2000.051630976585,0.062497539708950584,0.049967562669612636,26684.666666666668,7,4,7,7_1,7_2,7_0_0 +8291,2,59.0,2,0.0,4,111,2,56,75,7.0,0.0,0.0,895.0432938084987,0.0,2057.7214185962684,43935.42,50,50,1,5209,201708291,,,420.0,,1.0,4.0,4.0,0.0,2.0,1.5,3355.8284990594334,0.0,665.0,1163.0,0.0,39000.0,1,5,1,130.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2952.764712404767,0.06720693036290007,0.07571191570268633,26000.0,7,4,7,7_1,7_3,7_0_1 +8292,0,56.0,4,0.0,5,111,1,0,63,2.0,0.0,0.0,0.0,0.0,488.3328560039295,10089.631191295746,0,71,2,5210,201708292,999999.0,276.0,,,1.0,2.0,2.0,0.0,1.0,1.0,2893.1747586428537,0.0,0.0,276.0,0.0,13380.0,0,4,5,45.0,8,6.0,1,2,0,1,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,488.3328560039295,0.04839947533713728,0.03649722391658666,13380.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +8293,2,74.0,3,0.0,1,111,6,0,77,4.0,0.0,0.0,907.1566616946287,0.0,311.40066179960724,13375.14,0,70,2,5214,201708293,,,,827.0,0.0,1.0,2.0,0.0,1.0,1.0,5371.33346163047,0.0,674.0,176.0,0.0,18395.0,0,5,3,36.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1218.557323494236,0.09110613597272522,0.0662439425656013,18395.0,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +8294,2,57.0,4,0.0,2,111,2,0,54,6.0,0.0,0.0,569.3282906481127,0.0,1495.0770410265234,29477.2,0,31,1,5215,201708294,,,405.0,,1.0,2.0,4.0,0.0,1.0,1.0,1891.6768678369779,0.0,423.0,845.0,0.0,22116.0,0,1,2,85.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2064.405331674636,0.0700339697011465,0.0933444262829913,22116.0,6,3,6,6_1,6_3,6_0_1 +8295,2,44.0,3,0.0,1,112,2,0,63,1.0,0.0,485.77421184720396,928.6915379366377,219.39592081335965,0.0,26514.74,0,50,1,5216,201708295,,,150.0,,1.0,0.0,4.0,2.0,3.0,1.8,2378.9109527187934,0.0,690.0,0.0,0.0,8140.0,0,1,2,92.0,8,3.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1633.8616705972013,0.06162088221861505,0.20072010695297313,4522.222222222222,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +8296,1,46.0,4,290.0,6,300,2,21,52,1.0,0.0,0.0,968.7133201401864,0.0,1805.1765142001673,18651.559999999994,71,60,2,5218,201708296,,,,145.0,2.0,2.0,4.0,2.0,4.0,2.1,2493.9159072531165,1740.0,0.0,0.0,0.0,20950.0,4,1,3,90.0,0,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2773.8898343403534,0.14872159939116913,0.132405242689277,9976.190476190475,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +8297,2,38.0,2,0.0,2,111,2,38,37,10.0,0.0,0.0,1860.0749354035265,0.0,0.0,63521.67999999999,30,12,2,5219,201708297,,,,1577.0,2.0,0.0,4.0,2.0,4.0,2.1,3016.62091439672,0.0,1382.0,0.0,0.0,92108.0,1,1,3,76.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1860.0749354035265,0.029282521107809597,0.020194499233546777,43860.95238095238,10,5,10,10_0,10_4,10_0_1 +8298,2,73.0,2,0.0,1,400,2,78,75,9.0,3014.2664173638764,0.0,655.4677956161487,40.694404666994124,0.0,32906.74,70,31,1,5220,201708298,,,487.0,,0.0,1.0,4.0,0.0,2.0,1.5,1838.8750003129774,0.0,487.0,0.0,0.0,49661.0,5,5,5,103.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3710.428617647019,0.11275588580476277,0.07471514100898127,33107.333333333336,9,5,9,9_1,9_0,9_1_0 +8299,1,33.0,4,330.0,9,111,6,0,55,3.0,0.0,0.0,1187.1100528407455,0.0,0.0,11930.34,0,50,2,5221,201708299,,,150.0,80.0,1.0,0.0,3.0,1.0,2.0,1.3,728.3229466694387,0.0,882.0,0.0,0.0,20720.0,0,1,3,69.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1187.1100528407455,0.09950345529471462,0.0572929562181827,15938.461538461537,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +8300,2,26.0,1,0.0,1,111,2,0,47,4.0,0.0,0.0,226.1162005410944,0.0,1095.210282124755,15966.219999999998,0,12,2,5222,201708300,,,,400.0,1.0,0.0,3.0,0.0,1.0,1.0,3660.079132691001,0.0,168.0,619.0,0.0,17940.0,0,1,3,55.0,6,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1321.3264826658494,0.0827576272070565,0.07365253526565493,17940.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +8301,2,37.0,3,0.0,2,112,2,21,46,4.0,237.96840137083234,0.0,100.94473238441715,0.0,345.01777869842846,57358.46000000001,44,43,1,5223,201708301,,,368.0,,2.0,0.0,8.0,3.0,5.0,2.6,3101.719631331277,0.0,75.0,195.0,0.0,43342.0,1,1,1,110.0,10,4.0,4,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,683.9309124536779,0.011923801867303931,0.015779865083606615,16670.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +8302,2,50.0,1,0.0,5,111,1,85,52,2.0,0.0,0.0,613.7439728972563,0.0,0.0,25114.079999999998,71,50,2,5225,201708302,,,,,1.0,0.0,4.0,0.0,2.0,1.5,2129.772162435414,0.0,456.0,0.0,0.0,20341.0,6,1,3,73.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,613.7439728972563,0.024438242328496857,0.03017275320275583,13560.666666666666,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +8303,2,31.0,4,0.0,6,111,2,54,63,4.0,0.0,0.0,420.8892356471154,0.0,784.3180716869692,48830.461016380155,42,60,2,5227,201708303,,,312.0,500.0,2.0,0.0,3.0,2.0,4.0,2.1,2357.3777718947895,756.0,0.0,0.0,0.0,36110.0,1,1,3,73.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1205.2073073340846,0.024681464853051425,0.033375998541514386,17195.238095238095,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +8304,2,33.0,4,0.0,99,111,6,55,63,8.0,79.32280045694411,0.0,946.18862488327,212.31863304518674,0.0,27336.64,43,43,2,5228,201708304,,,,600.0,2.0,0.0,3.0,0.0,2.0,1.5,2241.693485285017,0.0,703.0,0.0,0.0,43712.0,1,1,3,64.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1237.830058385401,0.04528098765559341,0.028317854556767042,29141.333333333332,8,4,8,8_0,8_3,8_0_0 +8305,1,35.0,3,100.0,1,111,4,0,45,5.0,0.0,0.0,1803.545885268253,0.0,0.0,30150.705980622457,0,41,8,5229,201708305,,,,420.0,1.0,0.0,1.0,1.0,2.0,1.3,1218.9630391082574,0.0,1340.0,0.0,0.0,24807.0,0,1,3,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1803.545885268253,0.05981770000435058,0.07270310336873677,19082.30769230769,5,3,5,5_0,5_4,5_1_0 +8306,2,52.0,3,0.0,2,111,2,46,22,4.0,2696.9752155360998,0.0,1884.3016711757866,120.31389205893916,0.0,64352.9912480123,31,33,1,523,201708306,,,260.0,,2.0,2.0,6.0,1.0,3.0,2.0,2225.421725268429,0.0,1400.0,0.0,0.0,35014.0,4,1,2,145.0,7,6.0,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4701.590778770826,0.07305939766888529,0.13427745412608744,17507.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +8307,2,54.0,3,0.0,7,112,4,52,52,6.0,0.0,0.0,1998.7057012114594,106.15931652259337,0.0,68369.48000000001,50,50,1,5231,201708307,,,489.0,,2.0,2.0,6.0,1.0,3.0,2.0,2047.4138381405146,0.0,1485.0,0.0,0.0,45228.0,1,1,1,100.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2104.865017734053,0.03078661732887324,0.04653898066980748,22614.0,6,3,6,6_1,6_0,6_0_0 +8308,2,59.0,3,0.0,4,111,2,0,68,4.0,0.0,0.0,323.0231436301349,0.0,684.7275915707272,15602.219999999998,0,70,2,5232,201708308,,,150.0,333.0,1.0,1.0,3.0,0.0,1.0,1.0,2708.32002339515,0.0,240.0,387.0,0.0,17750.0,0,4,3,66.0,5,4.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1007.7507352008621,0.06459021441825985,0.05677468930709082,17750.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +8309,2,87.0,2,0.0,3,120,2,74,74,10.0,2446.3151660921562,0.0,1653.065704543804,0.0,1156.731169087581,46003.97634315233,10,10,1,5234,201708309,,,393.0,,0.0,3.0,8.0,0.0,2.0,1.5,1817.1500758404159,1114.9669954044234,767.0,0.0,0.0,92890.0,5,5,1,305.0,0,3.0,3,4,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5256.112039723542,0.11425342888878151,0.05658426138145701,61926.666666666664,10,5,10,10_1,10_1,10_0_1 +8310,2,50.0,1,0.0,8,111,2,37,37,10.0,0.0,0.0,713.3427755165478,0.0,2123.1863304518674,51419.700000000004,43,31,1,5235,201708310,,,700.0,,2.0,0.0,6.0,1.0,3.0,2.0,2180.1266714107423,0.0,530.0,1200.0,0.0,102454.0,1,1,1,155.0,4,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2836.529105968415,0.05516424844890995,0.02768587957491572,51227.0,10,5,10,10_1,10_1,10_0_0 +8311,2,83.0,2,0.0,4,111,2,0,77,8.0,0.0,0.0,768.2898745939409,0.0,1431.6917181587535,14801.76,0,60,2,5237,201708311,,,230.0,336.0,0.0,4.0,3.0,0.0,1.0,1.0,2832.4267998439204,1380.0,0.0,0.0,0.0,28200.0,0,5,3,60.0,7,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2199.9815927526943,0.14862973002890834,0.07801353165789696,28200.0,8,4,8,8_0,8_2,8_0_1 +8312,1,43.0,3,28.0,1,111,4,84,63,2.0,0.0,0.0,807.5578590753372,0.0,0.0,19069.12,31,43,2,5239,201708312,,,,507.0,1.0,1.0,2.0,0.0,2.0,1.5,3160.692267801096,0.0,600.0,0.0,0.0,20196.0,3,1,3,30.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,807.5578590753372,0.042348984068238976,0.03998602986112781,13464.0,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +8313,1,47.0,2,174.0,9,111,6,85,48,3.0,0.0,0.0,2153.487624200899,0.0,0.0,41580.205846751305,41,31,2,524,201708313,,,550.0,406.0,1.0,0.0,5.0,4.0,6.0,3.1,2351.654674077259,0.0,1600.0,0.0,0.0,44350.0,6,1,3,100.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2153.487624200899,0.051791172755080356,0.04855665443519502,14306.451612903225,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +8314,2,63.0,3,0.0,8,300,4,0,77,4.0,0.0,0.0,118.44181933104946,120.31389205893916,0.0,15577.54,0,50,2,5240,201708314,,,360.0,,0.0,1.0,3.0,0.0,1.0,1.0,3660.7912343888825,0.0,88.0,0.0,0.0,17105.0,0,5,3,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,238.75571138998862,0.015326920129236619,0.013958240946506204,17105.0,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +8315,1,53.0,4,280.0,1,111,2,0,85,2.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,8214.48,0,71,2,5241,201708315,,,,100.0,0.0,3.0,2.0,0.0,1.0,1.0,822.4460698507326,800.0,0.0,0.0,0.0,13081.0,0,6,3,40.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1275.3516479725763,0.15525652846833596,0.09749649476130084,13081.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +8316,1,46.0,3,74.0,5,111,1,0,46,5.0,0.0,0.0,489.91843450570457,0.0,0.0,50342.119999999995,0,42,2,5243,201708316,,,,313.0,2.0,0.0,3.0,1.0,2.0,1.5,1757.29527454467,0.0,364.0,0.0,0.0,27573.0,0,1,3,66.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,489.91843450570457,0.009731779958923156,0.01776804970462788,18382.0,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +8317,1,54.0,4,50.0,99,211,2,78,67,1.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,20594.2,71,71,2,5245,201708317,,,,,1.0,1.0,3.0,1.0,3.0,2.0,2017.6287229368397,1500.0,0.0,0.0,0.0,17390.0,7,1,3,100.0,2,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2391.2843399485805,0.11611445649496364,0.13750916273424846,8695.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +8318,2,34.0,2,0.0,1,111,2,0,46,8.0,0.0,0.0,565.290501352736,0.0,0.0,23881.4,0,20,2,5246,201708318,,,,600.0,1.0,0.0,2.0,0.0,1.0,1.0,3959.7057823661075,0.0,420.0,0.0,0.0,26085.0,0,1,3,45.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,565.290501352736,0.023670743815385024,0.021671094550612842,26085.0,7,4,7,7_0,7_2,7_1_0 +8319,2,58.0,2,0.0,6,111,2,72,43,7.0,0.0,0.0,1345.929765125562,0.0,2477.050718860512,31997.373573887235,50,50,1,5248,201708319,,,382.0,,2.0,1.0,4.0,1.0,3.0,2.0,2484.2805273018666,0.0,1000.0,1400.0,0.0,52058.0,5,1,1,80.0,6,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3822.980483986074,0.11947794637451035,0.07343694502259161,26029.0,7,4,7,7_1,7_2,7_0_0 +8320,2,71.0,3,0.0,7,112,5,77,78,5.0,0.0,0.0,2325.766634136971,49.54101437721024,0.0,19396.310875301628,50,44,1,5249,201708320,,,155.0,,0.0,1.0,4.0,0.0,2.0,1.5,4629.419345889148,0.0,1728.0,0.0,0.0,28410.0,5,5,1,140.0,7,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2375.307648514181,0.12246182605470553,0.08360815376677863,18940.0,5,3,5,5_1,5_1,5_0_0 +8321,2,46.0,4,0.0,1,111,1,0,22,2.0,0.0,0.0,646.0462872602698,0.0,1326.9914565324173,25158.144685771018,0,71,2,5251,201708321,750.0,750.0,,,1.0,0.0,3.0,0.0,1.0,1.0,3479.4778842439723,0.0,480.0,750.0,0.0,11966.0,0,1,2,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1973.037743792687,0.07842540729597604,0.16488699179280353,11966.0,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +8322,2,55.0,3,0.0,9,112,1,77,52,9.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,16295.626560172434,50,50,1,5252,201708322,,,,481.0,1.0,6.0,3.0,0.0,2.0,1.5,1870.5024209367875,900.0,0.0,0.0,0.0,55790.0,5,1,3,70.0,8,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1434.7706039691484,0.0880463600875477,0.025717343681110387,37193.333333333336,9,5,9,9_1,9_0,9_0_0 +8323,2,44.0,1,0.0,1,111,2,46,37,10.0,0.0,0.0,2451.104747488354,0.0,3459.3971725138344,72758.12027116715,20,12,2,5253,201708323,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1464.3556298279636,776.3345027021901,1500.0,1500.0,0.0,134068.0,1,1,2,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,5910.501920002189,0.08123494529509476,0.04408585135902817,55861.66666666667,10,5,10,10_0,10_3,10_1_0 +8324,2,39.0,2,0.0,2,111,2,42,34,9.0,0.0,0.0,1263.8280494529026,0.0,2181.573954539294,48764.26000000001,30,10,1,5254,201708324,,,478.0,,2.0,0.0,4.0,2.0,4.0,2.1,2714.4260699582537,0.0,939.0,1233.0,0.0,77996.0,1,1,1,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3445.4020039921966,0.07065424562973366,0.04417408590174107,37140.95238095238,9,5,9,9_1,9_4,9_0_1 +8325,2,58.0,2,0.0,6,400,5,56,21,9.0,0.0,416.377895869032,1547.8192298943961,61.9262679715128,0.0,23657.459999999995,42,50,1,5256,201708325,,,250.0,,2.0,2.0,5.0,0.0,2.0,1.5,1734.822337178501,0.0,1150.0,0.0,0.0,47611.0,1,1,1,95.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2026.123393734941,0.08564416440881402,0.042555783195793846,31740.666666666668,8,4,8,8_1,8_1,8_0_0 +8326,2,65.0,2,0.0,6,300,2,54,63,10.0,0.0,0.0,2052.004519910432,116.7752481748527,0.0,18691.63170475992,50,50,1,5257,201708326,,,240.0,,2.0,1.0,6.0,0.0,2.0,1.5,1813.5419878931548,0.0,1524.6000000000001,0.0,0.0,71087.0,1,1,1,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2168.7797680852846,0.11602945116519676,0.03050880988204995,47391.333333333336,10,5,10,10_1,10_0,10_0_0 +8327,2,55.0,2,0.0,7,112,2,77,45,10.0,0.0,0.0,947.5345546483957,0.0,2722.98646880452,57996.1,50,30,1,5258,201708327,,,501.0,,2.0,0.0,5.0,1.0,3.0,2.0,2600.9614220926674,0.0,704.0,1539.0,0.0,81263.0,5,1,1,145.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3670.521023452916,0.0632891008783852,0.04516841641894732,40631.5,10,5,10,10_1,10_0,10_0_0 +8328,2,86.0,2,0.0,1,112,5,86,71,2.0,0.0,0.0,456.2701903775655,0.0,0.0,18761.44,71,71,1,5259,201708328,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2217.37452988651,0.0,339.0,0.0,0.0,16043.0,5,5,5,70.0,9,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,456.2701903775655,0.02431957197195767,0.028440453180674778,10695.333333333334,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8329,1,64.0,4,27.0,1,300,4,0,78,5.0,0.0,0.0,726.8020731678034,0.0,0.0,11095.320000000002,0,71,2,526,201708329,,,,313.0,0.0,1.0,1.0,0.0,1.0,1.0,3078.464874840183,0.0,540.0,0.0,0.0,18676.0,0,5,3,34.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,726.8020731678034,0.0655052826928654,0.038916367164692836,18676.0,4,2,4_1,4_0_1,4_0_1,4_1_0_1 +8330,0,45.0,3,0.0,1,400,2,0,52,3.0,1047.0609660316622,0.0,925.9996784063866,0.0,0.0,24043.57202733072,0,50,1,5260,201708330,,,,,1.0,1.0,7.0,1.0,2.0,1.3,670.7283114947572,0.0,688.0,0.0,0.0,19651.0,0,1,5,145.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1973.0606444380487,0.08206187675422098,0.10040510123851451,15116.153846153846,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +8331,1,59.0,4,218.0,99,111,2,0,,2.0,0.0,0.0,403.7789295376686,0.0,1061.5931652259337,8547.080315994117,0,71,2,5261,201708331,,,266.0,195.0,0.0,4.0,5.0,0.0,1.0,1.0,2486.855016199265,0.0,300.0,600.0,0.0,11786.0,0,8,3,70.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1465.3720947636023,0.17144709545099948,0.12433158788084187,11786.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8332,2,74.0,4,0.0,3,111,1,0,77,1.0,0.0,0.0,376.8603342351573,0.0,406.94404666994126,22776.2,0,30,2,5263,201708332,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4205.4327199628615,0.0,280.0,230.0,0.0,9660.0,0,5,1,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,783.8043809050986,0.034413307790812274,0.08113916986595224,9660.0,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +8333,2,76.0,2,0.0,5,111,3,75,75,7.0,0.0,0.0,6103.791484844423,79.61948739194503,0.0,40634.2585274848,50,50,2,5264,201708333,600.0,600.0,,,0.0,2.0,4.0,0.0,2.0,1.5,2377.222779397448,0.0,4535.0,0.0,0.0,37732.0,5,5,1,85.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,6183.410972236368,0.15217235889893108,0.16387710622909912,25154.666666666668,7,4,7,7_0,7_2,7_0_0 +8334,2,36.0,2,0.0,9,300,4,62,54,6.0,0.0,666.2046333904511,1877.572022350159,0.0,0.0,37763.74,43,31,1,5265,201708334,,,360.0,,2.0,0.0,4.0,2.0,4.0,2.1,1631.9321228409258,0.0,1395.0,0.0,0.0,46930.0,1,1,2,90.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2543.7766557406103,0.06736029470970328,0.05420363638910314,22347.619047619046,6,3,6,6_1,6_0,6_0_0 +8335,1,38.0,3,214.0,1,400,4,52,52,5.0,0.0,0.0,2288.080600713455,0.0,0.0,47418.06,42,50,1,5266,201708335,,,,,2.0,0.0,4.0,3.0,5.0,2.4,586.6371037990391,0.0,1700.0,0.0,0.0,47310.0,1,1,3,103.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2288.080600713455,0.04825335749107946,0.048363572198551155,19712.5,5,3,5,5_1,5_0,5_1_0 +8336,1,36.0,4,540.0,99,111,1,0,84,3.0,0.0,0.0,158.81971228481632,0.0,51.310336319253466,17337.25087530163,0,50,2,5267,201708336,,,,,0.0,0.0,4.0,3.0,4.0,2.1,974.5446700867253,0.0,118.0,29.0,0.0,33080.0,0,3,3,67.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,210.13004860406977,0.012120148120104651,0.006352178011005737,15752.380952380952,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +8337,2,75.0,4,0.0,99,111,1,0,72,7.0,0.0,0.0,390.319631886413,0.0,0.0,18907.62,0,70,2,5269,201708337,,,250.0,438.0,0.0,2.0,2.0,0.0,1.0,1.0,2494.855211677252,0.0,290.0,0.0,0.0,26440.0,0,5,3,60.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,390.319631886413,0.02064350943621741,0.014762467166657073,26440.0,7,4,7,7_0,7_3,7_0_0 +8338,2,34.0,2,0.0,9,111,1,0,46,8.0,0.0,0.0,0.0,0.0,605.1081041787822,9930.480000000001,0,31,2,527,201708338,999999.0,342.0,,,1.0,0.0,3.0,0.0,1.0,1.0,3307.522084411048,0.0,0.0,342.0,0.0,29720.0,0,1,3,68.0,9,7.0,1,7,0,1,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,605.1081041787822,0.06093442655126259,0.020360299602247046,29720.0,8,4,8,8_0,8_3,8_0_0 +8339,2,53.0,2,0.0,7,112,4,33,34,10.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,83088.22801587889,44,30,1,5270,201708339,,,350.0,,2.0,1.0,6.0,0.0,2.0,1.5,1492.381904065689,1700.0,0.0,0.0,0.0,72943.0,1,1,1,127.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2710.1222519417247,0.03261740341151332,0.03715397299181175,48628.666666666664,10,5,10,10_1,10_0,10_0_0 +8340,2,67.0,1,0.0,4,120,6,77,75,10.0,4759.368027416646,0.0,955.610133239149,198.16405750884095,0.0,60768.80000000001,50,20,1,5271,201708340,,,300.0,,0.0,3.0,6.0,0.0,2.0,1.5,1477.9179184285765,0.0,710.0,0.0,0.0,64551.0,5,5,1,140.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5913.142218164637,0.09730556170542508,0.09160419231560528,43034.0,10,5,10,10_1,10_0,10_0_1 +8341,2,68.0,4,0.0,4,211,2,0,64,6.0,1554.7268889561046,0.0,617.781762192633,53.079658261296686,0.0,24298.600000000002,0,50,1,5272,201708341,,,,,1.0,3.0,5.0,0.0,1.0,1.0,2016.2108130052866,0.0,459.0,0.0,0.0,22161.0,0,5,1,117.0,4,4.0,1,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2225.588309410034,0.09159327325072365,0.1004281534863063,22161.0,6,3,6,6_1,6_2,6_0_1 +8342,2,37.0,3,0.0,99,112,2,43,47,6.0,0.0,0.0,269.1859530251124,0.0,1769.3219420432229,25962.28,50,50,1,5274,201708342,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1811.4562418671242,0.0,200.0,1000.0,0.0,37700.0,1,1,2,95.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2038.5078950683353,0.07851806139785625,0.05407182745539351,20944.444444444445,5,3,5,5_1,5_0,5_0_0 +8343,2,61.0,3,0.0,99,112,1,0,78,3.0,0.0,0.0,141.322625338184,0.0,0.0,64759.82,0,71,2,5275,201708343,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2437.780496750621,0.0,105.0,0.0,0.0,13918.0,0,7,1,64.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,141.322625338184,0.002182257846581167,0.010153946352793791,13918.0,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +8344,2,30.0,1,0.0,99,111,1,43,38,10.0,0.0,0.0,1292.0925745205395,0.0,0.0,35021.92656017243,30,12,8,5276,201708344,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2953.3633089106143,0.0,960.0,0.0,0.0,65175.0,1,1,1,66.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1292.0925745205395,0.0368938177144695,0.019824972374691822,43450.0,10,5,10,10_0,10_4,10_0_0 +8345,2,38.0,2,0.0,5,111,4,54,67,3.0,0.0,0.0,2086.1911359446212,0.0,0.0,44820.159999999996,31,60,1,5277,201708345,,,360.0,,2.0,2.0,6.0,3.0,5.0,2.4,1727.5140505346315,0.0,1550.0,0.0,0.0,35492.0,1,1,2,115.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2086.1911359446212,0.04654582080797171,0.05877919350683594,14788.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8346,2,41.0,1,0.0,1,111,2,42,38,8.0,0.0,0.0,1177.6885444848667,0.0,2696.4466396738717,131271.23672205294,30,12,1,5278,201708346,,,715.0,,2.0,0.0,5.0,4.0,6.0,3.3,2010.6816457914774,0.0,875.0,1524.0,0.0,92082.0,1,1,3,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3874.1351841587384,0.029512445230950597,0.04207266549552289,27903.636363636364,8,4,8,8_1,8_4,8_1_0 +8347,2,59.0,2,0.0,6,111,2,34,21,10.0,0.0,0.0,4037.789295376686,0.0,0.0,39415.56,10,50,1,5279,201708347,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1599.0456239339808,0.0,3000.0,0.0,0.0,102403.0,1,1,1,120.0,7,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4037.789295376686,0.10244150521714486,0.0394303809007225,68268.66666666667,10,5,10,10_1,10_2,10_0_0 +8348,2,54.0,3,0.0,1,112,4,52,75,9.0,0.0,707.8424229773543,1973.1330356740739,0.0,0.0,32228.280000000002,50,20,1,528,201708348,,,420.0,,1.0,3.0,6.0,0.0,2.0,1.5,3397.8517903648353,0.0,1466.0,0.0,0.0,52615.0,1,5,2,198.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2680.975458651428,0.08318704748287616,0.0509545844084658,35076.666666666664,9,5,9,9_1,9_1,9_1_0 +8349,1,31.0,1,39.0,99,111,2,67,65,7.0,0.0,0.0,538.3719060502248,0.0,884.6609710216114,13619.846162745416,71,43,2,5280,201708349,,,,218.0,2.0,0.0,2.0,0.0,2.0,1.5,2238.993927711437,0.0,400.0,500.0,0.0,34031.0,1,1,3,51.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1423.032877071836,0.10448230178724638,0.04181578199499974,22687.333333333332,6,3,6,6_0,6_2,6_0_0 +8350,2,50.0,1,0.0,7,112,2,42,54,9.0,0.0,0.0,1365.6630886803891,0.0,2544.8839019155234,79727.64,31,33,1,5282,201708350,,,,,3.0,0.0,6.0,2.0,4.0,2.5,1910.1199636767526,2453.0,0.0,0.0,0.0,96259.0,1,1,2,160.0,9,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3910.5469905959126,0.049048824104111356,0.040625260916858814,38503.6,9,5,9,9_1,9_0,9_0_0 +8351,2,53.0,3,0.0,4,111,1,56,48,3.0,0.0,0.0,500.68587262670906,0.0,2193.9592081335963,31653.379999999997,71,71,2,5284,201708351,1060.0,1060.0,,706.0,3.0,0.0,5.0,3.0,5.0,2.8,4056.1262145155833,0.0,372.0,1240.0,0.0,43150.0,1,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2694.6450807603055,0.08512977384280307,0.06244832168621797,15410.714285714286,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8352,2,48.0,4,0.0,3,111,2,0,65,7.0,0.0,0.0,1243.028562887361,0.0,1679.8891220672244,25445.3,0,50,2,5286,201708352,,,,,2.0,1.0,4.0,1.0,2.0,1.5,3566.989149964769,1169.0,440.0,264.0,0.0,37690.0,0,1,1,66.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2922.9176849545856,0.11487063170623202,0.07755154377698556,25126.666666666668,7,4,7,7_0,7_3,7_0_1 +8353,2,50.0,2,0.0,2,111,1,0,63,6.0,0.0,0.0,538.3719060502248,0.0,707.7287768172891,15414.390875301628,0,71,8,5287,201708353,,,,268.0,1.0,2.0,3.0,0.0,1.0,1.0,2997.933730128332,0.0,400.0,400.0,0.0,24032.0,0,1,3,90.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1246.100682867514,0.0808400859267253,0.051851726151278046,24032.0,7,4,7,7_0,7_3,7_0_1 +8354,2,59.0,2,0.0,5,111,2,77,77,4.0,0.0,0.0,1116.8039771271344,0.0,2081.140280164101,33633.619999999995,50,50,1,5288,201708354,,,970.0,,1.0,0.0,5.0,1.0,3.0,2.0,2981.2933283612715,2006.0,0.0,0.0,0.0,34039.0,6,5,2,80.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3197.9442572912358,0.09508177404903892,0.09394941852848897,17019.5,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8355,2,50.0,2,0.0,6,111,4,34,38,7.0,0.0,0.0,2018.894647688343,0.0,0.0,38366.64,30,31,2,5289,201708355,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2116.6154581777923,0.0,1500.0,0.0,0.0,51723.0,1,1,2,84.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2018.894647688343,0.05262109602739106,0.03903282191072333,25861.5,7,4,7,7_0,7_3,7_0_0 +8356,2,72.0,3,0.0,1,211,2,69,22,6.0,0.0,0.0,1135.9647217659742,0.0,2232.8842908585475,31299.139999999996,60,41,1,5290,201708356,,,375.0,795.0,2.0,4.0,4.0,0.0,2.0,1.5,1430.6928638622028,0.0,844.0,1262.0,0.0,34727.0,4,5,3,100.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3368.8490126245215,0.10763391622340172,0.09700950305596572,23151.333333333332,6,3,6,6_1,6_1,6_1_0 +8357,2,37.0,3,0.0,7,111,1,85,47,6.0,0.0,0.0,969.0694308904046,0.0,2123.1863304518674,38723.62,41,31,1,5291,201708357,,,550.0,,2.0,0.0,4.0,2.0,6.0,3.1,1309.121623254655,0.0,720.0,1200.0,0.0,66382.0,6,1,3,96.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3092.2557613422723,0.07985451157051619,0.04658274474017463,21413.548387096773,6,3,6,6_1,6_3,6_0_0 +8358,2,30.0,1,0.0,7,120,5,34,31,10.0,0.0,728.6613177708059,891.005504513122,1815.3243125363467,0.0,121510.58801587891,20,10,1,5293,201708358,,,564.0,,2.0,1.0,5.0,2.0,4.0,2.1,2543.0303823272247,0.0,662.0,0.0,0.0,129129.0,1,1,2,117.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3434.991134820275,0.028269068489499803,0.026601237017403332,61490.0,10,5,10,10_1,10_0,10_0_0 +8359,2,77.0,1,0.0,3,111,1,0,74,8.0,0.0,0.0,242.26735772260116,0.0,212.31863304518674,29660.18,0,41,2,5295,201708359,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2896.983936318871,0.0,180.0,120.0,0.0,30720.0,0,5,1,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,454.5859907677879,0.015326474443775726,0.01479772105363893,30720.0,8,4,8,8_0,8_4,8_0_1 +8360,2,71.0,2,0.0,5,111,2,77,75,9.0,0.0,0.0,767.1799661215703,0.0,2655.7522350068775,43900.35672205293,60,60,1,5298,201708360,,,258.0,,0.0,1.0,5.0,0.0,2.0,1.5,2425.7421411468363,0.0,570.0,1501.0,0.0,49372.0,5,5,1,120.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3422.9322011284476,0.07797048718305676,0.069329421557329,32914.666666666664,9,5,9,9_1,9_4,9_0_0 +8361,2,62.0,2,0.0,7,112,4,86,74,7.0,0.0,416.377895869032,3459.0394963726944,0.0,0.0,182977.88,31,31,1,5299,201708361,,,,,0.0,3.0,7.0,0.0,2.0,1.5,1887.830190003995,0.0,2570.0,0.0,0.0,84774.0,6,5,1,170.0,8,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3875.4173922417262,0.02117970430219066,0.04571469309271388,56516.0,10,5,10,10_1,10_1,10_0_0 +8362,2,69.0,3,0.0,9,400,5,0,71,2.0,0.0,0.0,403.7789295376686,106.15931652259337,0.0,13430.759999999998,0,70,1,53,201708362,,,300.0,,0.0,0.0,3.0,0.0,1.0,1.0,1729.25424924465,0.0,300.0,0.0,0.0,12018.0,0,5,5,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,509.938246060262,0.03796793674075496,0.042431207027813445,12018.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8363,1,28.0,5,408.0,6,111,6,85,64,2.0,0.0,0.0,1130.581002705472,0.0,1486.2304313163072,18074.760000000002,71,71,2,530,201708363,,,1080.0,,1.0,0.0,4.0,2.0,4.0,2.1,1539.3172855092087,0.0,840.0,840.0,0.0,28148.0,4,1,3,70.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2616.811434021779,0.1447771054233516,0.0929661586621351,13403.809523809523,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8364,0,24.0,2,0.0,5,111,4,0,43,5.0,0.0,0.0,429.35159507505426,0.0,0.0,27059.17697444815,0,30,2,5300,201708364,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4295.0410265036135,0.0,319.0,0.0,0.0,20318.0,0,1,5,23.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,429.35159507505426,0.0158671342990398,0.02113158751230703,20318.0,5,3,5,5_0,5_2,5_0_0 +8365,0,39.0,3,0.0,1,211,4,46,52,1.0,0.0,0.0,3084.8710216677878,0.0,0.0,16680.140513464175,60,20,1,5301,201708365,,,465.0,,2.0,0.0,4.0,0.0,2.0,1.5,3496.837205439077,0.0,2292.0,0.0,0.0,12689.0,1,1,5,90.0,1,3.0,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3084.8710216677878,0.18494274788498852,0.24311380106137503,8459.333333333334,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +8366,2,25.0,2,0.0,6,111,1,0,38,9.0,0.0,0.0,228.80806007134552,0.0,0.0,14976.990875301626,0,30,2,5302,201708366,,,,,1.0,0.0,1.0,0.0,1.0,1.0,7609.645658739784,0.0,170.0,0.0,0.0,33880.0,0,1,3,19.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,228.80806007134552,0.015277305166064441,0.006753484653817755,33880.0,9,5,9,9_0,9_4,9_0_0 +8367,1,28.0,3,355.0,9,112,4,0,85,3.0,0.0,0.0,1076.7438121004495,0.0,0.0,12924.42,0,42,1,5304,201708367,,,320.0,,0.0,0.0,3.0,2.0,3.0,1.6,573.0494754213454,0.0,800.0,0.0,0.0,23270.0,0,8,3,63.0,9,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1076.7438121004495,0.08331080327786079,0.04627175814784914,14543.75,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +8368,2,75.0,3,0.0,5,111,2,74,75,10.0,0.0,0.0,5281.428398352705,0.0,0.0,30976.96,30,41,1,5305,201708368,,,590.0,,0.0,3.0,6.0,0.0,2.0,1.5,2147.3117455765378,0.0,3924.0,0.0,0.0,62693.0,5,5,1,240.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5281.428398352705,0.17049537457364133,0.08424271287628132,41795.333333333336,10,5,10,10_1,10_3,10_0_0 +8369,2,56.0,3,0.0,5,221,2,0,52,5.0,0.0,0.0,613.7439728972563,0.0,1325.222134590374,27713.68,0,31,1,5306,201708369,,,381.0,,2.0,0.0,7.0,2.0,3.0,2.0,888.3087748073594,0.0,456.0,749.0,0.0,40432.0,0,1,2,200.0,1,2.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1938.9661074876303,0.06996422371506167,0.04795622545230586,20216.0,5,3,5,5_1,5_1,5_0_0 +8370,2,83.0,3,0.0,5,111,2,0,78,5.0,2696.9752155360998,0.0,500.68587262670906,0.0,0.0,13000.600315994117,0,71,1,5308,201708370,,,,,0.0,3.0,5.0,0.0,1.0,1.0,4007.0885927733675,0.0,372.0,0.0,0.0,20224.0,0,5,1,100.0,6,4.0,1,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3197.661088162809,0.24596257176130973,0.1581121977928604,20224.0,5,3,5,5_1,5_2,5_0_0 +8371,2,68.0,3,0.0,6,111,1,62,77,4.0,0.0,0.0,538.3719060502248,0.0,0.0,17395.82791334867,71,71,2,5309,201708371,,,,,1.0,2.0,2.0,1.0,3.0,2.0,2978.512525386368,0.0,400.0,0.0,0.0,32656.0,4,5,1,50.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,538.3719060502248,0.03094833478072669,0.016486155868759945,16328.0,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +8372,2,83.0,2,0.0,1,112,4,0,86,3.0,0.0,0.0,1041.749638207185,58.38762408742635,0.0,6625.0,0,70,1,531,201708372,,,160.0,,0.0,1.0,3.0,0.0,1.0,1.0,2397.345679658114,0.0,774.0,0.0,0.0,14450.0,0,5,5,71.0,8,3.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1100.1372622946112,0.16605845468597905,0.07613406659478278,14450.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +8373,2,64.0,3,0.0,6,112,2,52,78,7.0,0.0,0.0,2033.699875104724,0.0,0.0,37540.52,50,50,1,5310,201708373,,,250.0,,1.0,3.0,6.0,0.0,2.0,1.5,1997.3155345472685,0.0,1511.0,0.0,0.0,32815.0,5,5,1,95.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2033.699875104724,0.05417346043967223,0.06197470288297193,21876.666666666668,6,3,6,6_1,6_0,6_0_0 +8374,2,36.0,1,0.0,8,112,2,52,31,10.0,0.0,97.1548423694408,1130.581002705472,0.0,3184.779495677801,109301.09999999999,50,10,1,5313,201708374,,,,1900.0,2.0,0.0,9.0,3.0,5.0,2.6,2654.796485453695,0.0,840.0,1800.0,0.0,107453.0,1,1,3,290.0,9,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4412.515340752714,0.040370273865063706,0.04106460816126785,41328.07692307692,10,5,10,10_1,10_0,10_0_0 +8375,2,50.0,3,0.0,5,111,3,46,22,10.0,0.0,0.0,826.4008757870951,0.0,0.0,50395.99999999999,42,42,2,5314,201708375,,,,873.0,2.0,3.0,4.0,1.0,3.0,2.0,2967.3650691925286,0.0,614.0,0.0,0.0,90028.0,1,1,3,104.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,826.4008757870951,0.016398144213570425,0.009179376147277459,45014.0,10,5,10,10_0,10_3,10_0_0 +8376,2,51.0,4,0.0,6,111,4,68,45,6.0,0.0,0.0,296.1045483276236,95.54338487033404,0.0,31160.579999999998,50,50,1,5319,201708376,,,52.0,,3.0,0.0,4.0,1.0,3.0,2.0,2159.9708833544923,0.0,220.0,0.0,0.0,42400.0,1,1,2,109.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,391.6479331979576,0.012568698438795352,0.009236979556555605,21200.0,5,3,5,5_1,5_4,5_0_0 +8377,2,75.0,3,0.0,1,120,5,0,78,5.0,0.0,1387.9263195634398,60.56683943065029,530.7965826129669,0.0,20116.56,0,71,1,5320,201708377,,,80.0,,0.0,0.0,3.0,0.0,1.0,1.0,3086.1165049082692,0.0,45.0,0.0,0.0,20060.0,0,5,1,118.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1979.289741607057,0.09839106395959632,0.09866848163544652,20060.0,5,3,5,5_1,5_0,5_1_0 +8378,1,48.0,4,194.0,99,111,1,0,68,1.0,0.0,0.0,1650.109892043939,0.0,1061.5931652259337,18639.847849749774,0,71,2,5321,201708378,,,,108.0,1.0,1.0,2.0,1.0,2.0,1.5,1143.314314040387,0.0,1226.0,600.0,0.0,14758.0,0,1,3,37.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2711.7030572698727,0.14547881930840306,0.18374461697180328,9838.666666666666,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +8379,2,45.0,1,0.0,5,211,2,52,38,9.0,1586.456009138882,832.755791738064,1146.7321598869787,0.0,0.0,64657.635357438594,50,12,1,5322,201708379,,,390.0,,2.0,0.0,7.0,3.0,5.0,2.6,1936.7397976996956,0.0,852.0,0.0,0.0,83731.0,1,1,2,160.0,2,2.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3565.943960763925,0.055151165690653085,0.04258809712966434,32204.23076923077,9,5,9,9_1,9_1,9_0_0 +8380,2,22.0,4,0.0,1,111,5,0,56,1.0,0.0,971.5484236944079,323.0231436301349,884.6609710216114,0.0,21010.54,0,71,1,5323,201708380,,,200.0,,1.0,3.0,6.0,1.0,3.0,2.0,2632.3998431238088,0.0,240.0,0.0,0.0,16820.0,0,1,1,90.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2179.232538346154,0.10372091999282997,0.1295619820657642,8410.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +8381,2,79.0,3,0.0,1,111,2,0,74,7.0,0.0,0.0,602.9765347762518,0.0,2487.6666505127714,23081.840000000004,0,50,1,5325,201708381,,,153.0,,0.0,1.0,5.0,0.0,1.0,1.0,3023.2315660624463,0.0,448.0,1406.0,0.0,23572.0,0,5,1,142.0,4,3.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3090.643185289023,0.13389934187608193,0.13111501719366295,23572.0,6,3,6,6_1,6_1,6_1_0 +8382,2,47.0,3,0.0,9,112,5,0,67,8.0,0.0,0.0,834.4764543778484,106.15931652259337,0.0,31291.760836034973,0,50,1,5327,201708382,,,157.0,,2.0,2.0,4.0,1.0,2.0,1.5,122.52669081176936,0.0,620.0,0.0,0.0,39616.0,0,1,2,100.0,9,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,940.6357709004418,0.030060173853087367,0.023743835089368986,26410.666666666668,7,4,7,7_1,7_0,7_0_0 +8383,2,53.0,3,0.0,8,111,2,54,37,10.0,0.0,111.0341055650752,686.4241802140366,0.0,1433.1507730550106,72993.35150728984,71,12,1,5329,201708383,,,350.0,,2.0,1.0,4.0,1.0,3.0,2.0,1613.1448252753896,0.0,510.0,810.0,0.0,75107.0,1,1,1,119.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2230.609058834122,0.030559071652044245,0.029699083425434675,37553.5,9,5,9,9_1,9_4,9_0_0 +8384,2,77.0,1,0.0,6,111,4,74,22,10.0,0.0,83.27557917380639,3095.6384597887923,0.0,0.0,69101.04695835097,10,10,1,5330,201708384,,,2000.0,,1.0,3.0,5.0,0.0,2.0,1.5,1711.9362589989514,0.0,2300.0,0.0,0.0,128700.0,5,5,1,160.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3178.9140389625986,0.04600384768234574,0.024700186782926174,85800.0,10,5,10,10_1,10_3,10_0_0 +8385,2,50.0,3,0.0,6,112,5,52,65,9.0,0.0,832.755791738064,2018.894647688343,159.23897478389006,0.0,33878.398693710464,50,71,1,5331,201708385,,,400.0,,2.0,1.0,5.0,1.0,3.0,1.8,1708.9072437393058,0.0,1500.0,0.0,0.0,58696.0,1,1,2,99.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3010.889414210297,0.08887342762068828,0.05129633048606885,32608.888888888887,9,5,9,9_1,9_0,9_0_0 +8386,2,76.0,4,0.0,99,111,2,0,77,3.0,0.0,0.0,368.78475564440396,0.0,2048.874808886052,14440.190875301627,0,50,2,5332,201708386,,,134.0,,0.0,2.0,3.0,0.0,1.0,1.0,2798.9028128352097,0.0,274.0,1158.0,0.0,14686.0,0,5,3,72.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2417.659564530456,0.16742573456321821,0.16462342125360588,14686.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +8387,1,34.0,3,462.0,1,111,2,85,68,3.0,0.0,0.0,1238.255383915517,79.61948739194503,2029.4122675235767,25133.421750603262,71,71,1,5333,201708387,,,,138.0,1.0,0.0,6.0,3.0,5.0,2.4,2067.245201875676,0.0,920.0,1147.0,0.0,33819.0,6,1,3,100.0,6,4.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,3347.2871388310386,0.1331807173748913,0.09897652617851027,14091.25,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +8388,2,64.0,3,0.0,1,111,2,68,64,6.0,0.0,0.0,888.3136449828709,0.0,1783.4765175795687,32048.8,70,70,1,5334,201708388,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1634.0345189169668,0.0,660.0,1008.0,0.0,35930.0,1,5,1,80.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2671.7901625624395,0.08336630895891389,0.0743609842071372,23953.333333333332,7,4,7,7_1,7_2,7_1_0 +8389,2,45.0,3,0.0,2,111,6,0,62,5.0,0.0,0.0,807.5578590753372,120.31389205893916,0.0,15791.44,0,60,1,5336,201708389,,,204.0,,1.0,0.0,2.0,0.0,1.0,1.0,10902.824791467132,0.0,600.0,0.0,0.0,19146.0,0,1,3,40.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,927.8717511342763,0.05875789358882257,0.04846295576800775,19146.0,5,3,5,5_1,5_2,5_0_1 +8390,2,34.0,3,0.0,9,112,2,45,37,8.0,0.0,0.0,2153.487624200899,0.0,0.0,40381.54,20,41,1,5337,201708390,,,150.0,,2.0,0.0,4.0,1.0,3.0,1.8,2436.1614278338543,0.0,1600.0,0.0,0.0,51666.0,1,1,3,95.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2153.487624200899,0.05332851654991115,0.04168094344831996,28703.333333333332,8,4,8,8_1,8_0,8_0_0 +8391,2,66.0,1,0.0,1,400,2,77,74,7.0,2094.1219320633245,0.0,1493.9820392893737,283.09151072691566,0.0,24064.320000000003,50,50,1,5338,201708391,,,324.0,,0.0,3.0,5.0,0.0,2.0,1.5,1688.8658728560301,0.0,1110.0,0.0,0.0,37695.0,5,5,1,130.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3871.1954820796136,0.160868683681052,0.10269785069849088,25130.0,7,4,7,7_1,7_0,7_1_0 +8392,1,39.0,4,264.0,9,120,6,42,37,2.0,0.0,0.0,2691.859530251124,122.08321400098238,0.0,48903.34,42,50,1,5339,201708392,,,1200.0,511.0,4.0,0.0,5.0,4.0,6.0,3.3,2725.3653876834946,0.0,2000.0,0.0,0.0,40158.0,1,1,3,120.0,0,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2813.9427442521064,0.057540911198541995,0.0700717850553341,12169.09090909091,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +8393,2,47.0,3,0.0,9,112,2,54,62,6.0,0.0,0.0,1065.976373979445,0.0,1928.560916827113,59215.8,42,41,1,5340,201708393,,,450.0,,2.0,0.0,5.0,3.0,5.0,2.6,1581.1719807544575,0.0,792.0,1090.0,0.0,57029.0,1,1,2,150.0,8,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2994.5372908065583,0.05056990348532922,0.05250902682506371,21934.23076923077,6,3,6,6_1,6_1,6_0_0 +8394,2,56.0,2,0.0,99,111,5,0,31,9.0,0.0,416.377895869032,746.9910196446868,0.0,0.0,26336.120000000003,0,20,1,5343,201708394,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2678.7385984765883,0.0,555.0,0.0,0.0,33954.0,0,1,2,88.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1163.3689155137188,0.04417389180766638,0.0342630887528338,33954.0,9,5,9,9_1,9_3,9_0_0 +8395,2,70.0,3,0.0,99,211,6,0,78,3.0,0.0,0.0,1292.0925745205395,113.23660429076627,0.0,14616.9,0,71,2,5347,201708395,,,,,0.0,2.0,5.0,0.0,1.0,1.0,4338.611236477617,0.0,960.0,0.0,0.0,15425.0,0,5,3,68.0,1,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1405.3291788113058,0.09614413307960688,0.09110724011742663,15425.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +8396,2,47.0,3,0.0,1,111,2,68,46,8.0,0.0,0.0,1076.7438121004495,88.46609710216114,1061.5931652259337,65827.59973663265,50,60,1,5348,201708396,,,550.0,450.0,4.0,0.0,6.0,2.0,4.0,2.5,1724.998784337849,0.0,800.0,600.0,0.0,72047.0,1,1,3,110.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2226.8030744285443,0.03382780297835077,0.030907644654580263,28818.8,8,4,8,8_1,8_3,8_1_0 +8397,2,41.0,2,0.0,5,111,4,45,35,9.0,0.0,0.0,3768.6033423515732,0.0,0.0,36815.34,20,31,1,5350,201708397,,,480.0,,2.0,0.0,4.0,0.0,2.0,1.5,3072.2888242097283,0.0,2800.0,0.0,0.0,50035.0,1,1,2,90.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3768.6033423515732,0.10236502888066697,0.07531934330671676,33356.666666666664,9,5,9,9_1,9_4,9_0_0 +8398,2,46.0,1,0.0,9,112,4,52,46,9.0,0.0,388.6193694777632,1079.7427626450124,0.0,2012.0775011355436,39367.93469850232,50,30,1,5353,201708398,,,276.0,,2.0,0.0,7.0,1.0,3.0,1.8,2095.5916097841523,1939.4307561812404,0.0,0.0,0.0,57661.0,1,1,2,126.0,9,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3480.439633258319,0.0884079812647811,0.06036037587378504,32033.888888888887,9,5,9,9_1,9_0,9_0_0 +8399,2,55.0,2,0.0,7,111,2,75,21,1.0,1427.810408224994,0.0,1211.3367886130059,237.08914023379188,0.0,23638.48,42,50,1,5354,201708399,,,300.0,,1.0,1.0,5.0,1.0,3.0,2.0,2311.926532947598,0.0,900.0,0.0,0.0,50744.0,5,1,1,160.0,8,6.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2876.236337071792,0.12167602726874961,0.05668130886551695,25372.0,7,4,7,7_1,7_2,7_0_0 +8400,2,71.0,2,0.0,9,212,5,46,75,10.0,0.0,485.77421184720396,954.2642034740235,0.0,0.0,34324.7,30,31,1,5355,201708400,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2294.506116962915,0.0,709.0,0.0,0.0,60411.0,4,5,1,109.0,2,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1440.0384153212274,0.04195341591685368,0.02383735437786541,40274.0,9,5,9,9_1,9_0,9_0_0 +8401,2,58.0,3,0.0,8,111,1,0,54,8.0,0.0,0.0,471.07541779394666,0.0,2760.1422295874277,29266.6058467513,0,71,2,5357,201708401,160.0,160.0,,463.0,1.0,0.0,2.0,0.0,1.0,1.0,2803.779161390369,0.0,350.0,1560.0,0.0,29197.0,0,1,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3231.2176473813743,0.11040629939464099,0.11066950876396117,29197.0,8,4,8,8_0,8_4,8_0_0 +8402,2,31.0,3,0.0,1,112,6,0,62,8.0,0.0,0.0,0.0,47.77169243516702,0.0,24444.2258467513,0,50,1,5358,201708402,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1886.8911140679247,0.0,0.0,0.0,0.0,30054.0,0,1,2,87.0,8,0.0,1,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,47.77169243516702,0.001954313985423924,0.001589528596365443,30054.0,8,4,8,8_1,8_0,8_1_0 +8403,0,24.0,1,0.0,9,111,4,0,34,7.0,0.0,0.0,0.0,0.0,0.0,13292.119999999997,0,10,2,5359,201708403,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3780.59542433941,0.0,0.0,0.0,0.0,26087.0,0,1,5,36.0,8,7.0,1,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,26087.0,7,4,7,7_0,7_3,7_0_0 +8404,2,74.0,2,0.0,1,111,1,0,78,7.0,0.0,0.0,807.5578590753372,0.0,0.0,37540.86,0,41,8,536,201708404,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3590.146984622413,0.0,600.0,0.0,0.0,24770.0,0,5,1,97.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,807.5578590753372,0.021511437379839918,0.03260225511002573,24770.0,7,4,7,7_0,7_4,7_1_0 +8405,0,42.0,2,0.0,1,111,1,0,46,4.0,0.0,0.0,605.6683943065029,0.0,0.0,29031.839999999997,0,31,2,5360,201708405,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5772.102493461209,0.0,450.0,0.0,0.0,19005.0,0,1,5,44.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,605.6683943065029,0.020862211775295778,0.031868897358932016,19005.0,5,3,5,5_0,5_4,5_1_0 +8406,2,25.0,3,0.0,5,111,4,0,67,3.0,0.0,0.0,678.3486016232832,0.0,0.0,33843.78784974978,0,43,2,5361,201708406,,,,500.0,1.0,0.0,3.0,1.0,2.0,1.3,3368.30017385276,0.0,504.0,0.0,0.0,20115.0,0,4,3,50.0,5,4.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,678.3486016232832,0.02004351890618232,0.033723519842072246,15473.076923076922,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +8407,2,30.0,2,0.0,5,112,2,54,46,7.0,1397.6677440513552,0.0,2115.8015907773834,0.0,0.0,23105.32753375566,43,43,1,5362,201708407,,,270.0,,2.0,0.0,4.0,2.0,4.0,2.1,2196.6878592280236,0.0,1572.0,0.0,0.0,49810.0,1,1,2,110.0,8,2.0,4,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3513.4693348287383,0.1520631694008988,0.07053742892649545,23719.04761904762,6,3,6,6_1,6_1,6_0_0 +8408,2,38.0,3,0.0,1,400,2,54,13,1.0,2538.3296146222115,0.0,2018.894647688343,176.9321942043223,0.0,26015.68,31,43,1,5363,201708408,,,360.0,,2.0,0.0,5.0,3.0,5.0,2.4,1699.0311482171378,0.0,1500.0,0.0,0.0,23646.0,1,1,2,133.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4734.1564565148765,0.18197319679957918,0.20020961078046504,9852.5,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8409,2,30.0,3,0.0,9,111,5,43,65,9.0,0.0,0.0,2422.6735772260117,0.0,0.0,55039.020000000004,30,50,1,5364,201708409,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2110.089199594571,0.0,1800.0,0.0,0.0,59570.0,1,1,2,90.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2422.6735772260117,0.044017382163163726,0.04066935667661594,33094.444444444445,9,5,9,9_1,9_3,9_0_0 +8410,2,72.0,2,0.0,6,112,2,75,74,8.0,0.0,152.6718951519784,1975.824895204325,233.5504963497054,0.0,35373.0,50,31,1,5365,201708410,,,356.0,,0.0,1.0,5.0,0.0,2.0,1.5,1631.63087207625,0.0,1468.0,0.0,0.0,42795.0,5,5,1,100.0,9,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2362.047286706009,0.06677543003720376,0.055194468669377474,28530.0,8,4,8,8_1,8_1,8_0_0 +8411,2,80.0,3,0.0,7,111,2,78,74,8.0,0.0,0.0,678.3486016232832,0.0,1150.059262328095,32485.467631486972,50,50,8,5366,201708411,,,,,1.0,1.0,4.0,1.0,3.0,2.0,2508.327769842307,0.0,504.0,650.0,0.0,55086.0,5,5,1,110.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1828.4078639513782,0.056283870827802694,0.033191879315096,27543.0,8,4,8,8_0,8_2,8_0_0 +8412,0,24.0,2,0.0,1,112,4,0,11,1.0,0.0,0.0,134.5929765125562,53.079658261296686,0.0,15375.62,0,50,1,5367,201708412,,,,,1.0,0.0,4.0,0.0,1.0,1.0,4112.556312956627,0.0,100.0,0.0,0.0,3127.0,0,1,5,90.0,9,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,187.67263477385288,0.01220585802548794,0.06001683235492577,3127.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8413,2,32.0,3,0.0,99,400,5,65,63,5.0,0.0,138.792631956344,952.9182737088979,0.0,1831.2482100147356,52808.77506751131,42,43,1,537,201708413,,,300.0,,2.0,0.0,5.0,1.0,3.0,1.8,1891.1458375980435,0.0,708.0,1035.0,0.0,34419.0,1,1,2,136.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2922.9591156799775,0.05534987531794166,0.08492283667974018,19121.666666666668,5,3,5,5_1,5_0,5_0_0 +8414,2,50.0,3,0.0,7,112,5,0,47,9.0,0.0,138.792631956344,917.9240998156332,53.079658261296686,0.0,22566.130875301627,0,31,1,5370,201708414,,,,,1.0,2.0,4.0,0.0,1.0,1.0,3618.0491310334637,0.0,682.0,0.0,0.0,34667.0,0,1,2,120.0,9,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1109.7963900332738,0.04917973737571173,0.03201304958702149,34667.0,9,5,9,9_1,9_1,9_0_0 +8415,2,84.0,3,0.0,7,111,2,0,75,6.0,0.0,0.0,349.9417389326461,0.0,1326.9914565324173,19647.440000000002,0,33,2,5372,201708415,,,,406.0,0.0,1.0,3.0,0.0,1.0,1.0,2699.816989184023,0.0,260.0,750.0,0.0,22083.0,0,5,3,71.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1676.9331954650634,0.08535123127822572,0.07593774376058793,22083.0,6,3,6,6_0,6_2,6_0_0 +8416,2,90.0,1,0.0,3,111,2,86,86,8.0,0.0,0.0,4576.16120142691,0.0,2300.11852465619,30608.140315994122,41,71,1,5375,201708416,,,600.0,,0.0,4.0,6.0,0.0,2.0,1.5,1474.454321284248,0.0,3400.0,1300.0,0.0,40524.0,5,5,1,80.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,6876.2797260831,0.22465526017240375,0.1696841310355123,27016.0,7,4,7,7_1,7_2,7_0_1 +8417,2,50.0,2,0.0,5,111,2,33,37,10.0,0.0,0.0,1522.4694744676171,0.0,5554.689805932752,60150.014969291406,20,30,1,5376,201708417,,,360.0,,3.0,0.0,5.0,1.0,3.0,2.0,2254.9536045480036,800.6111162037462,800.0,2670.0,0.0,91814.0,1,1,1,125.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,7077.159280400369,0.11765847912113564,0.07708148300259622,45907.0,10,5,10,10_1,10_2,10_0_0 +8418,2,64.0,4,0.0,2,111,2,0,75,6.0,0.0,0.0,355.32545799314835,0.0,909.4314782102166,25288.599999999995,0,50,2,5377,201708418,,,160.0,,0.0,2.0,4.0,0.0,1.0,1.0,1135.1900683566323,0.0,264.0,514.0,0.0,22445.0,0,5,3,82.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1264.756936203365,0.05001292820493682,0.05634916178228403,22445.0,6,3,6,6_0,6_2,6_0_1 +8419,2,42.0,4,0.0,1,112,2,46,64,4.0,2379.684013708323,0.0,1547.8192298943961,0.0,0.0,24394.08,42,50,1,5378,201708419,,,210.0,,2.0,0.0,5.0,2.0,4.0,2.1,2081.34910373551,0.0,1150.0,0.0,0.0,36770.0,1,1,2,110.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3927.5032436027195,0.16100231054430908,0.10681270719615772,17509.52380952381,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8420,2,59.0,3,0.0,1,221,5,12,77,2.0,0.0,1061.7636344660316,1846.615637752271,74.31152156581537,0.0,21946.577670447965,70,71,1,5379,201708420,,,,,1.0,6.0,5.0,0.0,2.0,1.5,2788.866092547585,0.0,1372.0,0.0,0.0,19835.0,4,5,1,100.0,1,2.0,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2982.690793784118,0.1359068752573866,0.1503751345492371,13223.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +8421,2,76.0,2,0.0,1,112,2,77,75,8.0,0.0,416.377895869032,2557.266553738568,113.23660429076627,0.0,28577.598413516484,50,60,1,538,201708421,,,33.0,,0.0,0.0,5.0,0.0,2.0,1.5,1384.990622905343,0.0,1900.0,0.0,0.0,44121.0,5,5,1,110.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3086.8810538983657,0.10801751110192481,0.06996398662537943,29414.0,8,4,8,8_1,8_1,8_1_0 +8422,2,61.0,4,0.0,3,111,2,77,72,3.0,0.0,0.0,1391.8294829600377,0.0,2593.6444169542638,48643.12,50,41,1,5382,201708422,,,700.0,,1.0,4.0,7.0,2.0,4.0,2.5,1941.4660840843064,2500.0,0.0,0.0,0.0,37650.0,5,5,1,240.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3985.4738999143015,0.08193294138851087,0.10585588047581146,15060.0,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +8423,2,84.0,3,0.0,3,111,2,0,77,5.0,0.0,0.0,679.6945313884088,0.0,2017.027013929274,16625.699999999997,0,71,1,5384,201708423,,,290.0,,0.0,3.0,3.0,0.0,1.0,1.0,2958.677712815118,0.0,505.0,1140.0,0.0,19385.0,0,5,1,70.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2696.7215453176827,0.16220198519867934,0.139113827460288,19385.0,5,3,5,5_1,5_2,5_0_1 +8424,2,37.0,2,0.0,5,112,2,85,33,5.0,2062.392811880547,0.0,1076.7438121004495,0.0,0.0,33606.28063198823,71,71,1,5385,201708424,,,240.0,,1.0,0.0,6.0,2.0,4.0,2.1,2040.7817350125513,0.0,800.0,0.0,0.0,42571.0,6,1,2,120.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3139.136623980997,0.09340922485164875,0.07373885095442899,20271.90476190476,5,3,5,5_1,5_1,5_0_0 +8425,2,44.0,3,0.0,1,300,4,85,62,7.0,0.0,0.0,1453.6041463356069,111.46728234872305,0.0,30905.980000000003,42,31,1,5386,201708425,,,800.0,,1.0,0.0,7.0,1.0,3.0,1.8,1729.8492197900703,0.0,1080.0,0.0,0.0,46110.0,8,1,2,210.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1565.07142868433,0.05063976061216405,0.033942125974502926,25616.666666666664,7,4,7,7_1,7_0,7_1_0 +8426,2,75.0,2,0.0,5,112,4,75,75,8.0,0.0,0.0,807.5578590753372,0.0,0.0,28095.380000000005,31,31,1,5387,201708426,,,280.0,,0.0,1.0,4.0,0.0,2.0,1.5,1296.1816010064456,0.0,600.0,0.0,0.0,51010.0,5,5,1,110.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,807.5578590753372,0.028743439635816888,0.015831363636058367,34006.666666666664,9,5,9,9_1,9_0,9_0_0 +8427,2,66.0,2,0.0,1,400,2,0,77,2.0,1166.0451667170785,0.0,491.26436427083013,120.31389205893916,0.0,15048.56,0,50,1,5388,201708427,,,419.0,,0.0,0.0,3.0,0.0,1.0,1.0,2609.6169192545294,0.0,365.0,0.0,0.0,11491.0,0,5,1,114.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1777.6234230468478,0.11812581556287431,0.154697017060904,11491.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8428,2,78.0,2,0.0,6,112,4,71,71,4.0,0.0,0.0,1920.6417748341769,0.0,0.0,14957.8258467513,50,71,1,5389,201708428,,,,,0.0,4.0,5.0,0.0,2.0,1.5,2236.7685386843546,0.0,1427.0,0.0,0.0,26240.0,5,5,1,120.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1920.6417748341769,0.128403806442988,0.0731951895897171,17493.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +8429,2,49.0,3,0.0,1,111,2,62,47,8.0,237.96840137083234,0.0,1938.1388617808093,0.0,3556.337103506878,41993.24,50,50,1,5393,201708429,,,500.0,,2.0,0.0,6.0,0.0,2.0,1.5,1461.0393231481698,0.0,1440.0,2010.0,0.0,44389.0,1,1,1,135.0,7,5.0,3,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5732.444366658519,0.1365087420417791,0.1291411017742801,29592.666666666668,8,4,8,8_1,8_2,8_1_0 +8430,0,56.0,2,0.0,1,111,6,0,43,8.0,0.0,0.0,1588.012818247196,0.0,3256.021249422185,24729.080293826963,0,33,1,5394,201708430,,,360.0,,2.0,1.0,7.0,1.0,2.0,1.5,1592.3477204602568,2156.1280684652293,288.0,576.0,0.0,48808.0,0,1,5,100.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4844.034067669381,0.19588411740806153,0.0992467232353176,32538.666666666668,9,5,9,9_1,9_3,9_1_0 +8431,0,36.0,2,0.0,7,111,5,0,21,3.0,0.0,0.0,1009.4473238441715,0.0,0.0,23668.186998780388,0,43,1,5395,201708431,,,250.0,,1.0,0.0,3.0,0.0,1.0,1.0,3565.024365638741,0.0,750.0,0.0,0.0,16442.0,0,1,5,75.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1009.4473238441715,0.04264996401693919,0.06139443643377761,16442.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8432,2,64.0,4,0.0,1,120,5,78,77,3.0,0.0,208.188947934516,1076.7438121004495,53.079658261296686,0.0,16711.1,50,50,1,5396,201708432,,,490.0,,0.0,3.0,4.0,0.0,2.0,1.5,1839.8623048879906,0.0,800.0,0.0,0.0,20650.0,5,5,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1338.0124182962622,0.08006728571406205,0.06479479023226452,13766.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8433,2,49.0,1,0.0,1,111,2,0,34,10.0,0.0,0.0,371.4766151746551,0.0,615.7240358310415,63000.670000000006,0,10,2,5397,201708433,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2894.5319335392146,0.0,276.0,348.0,0.0,75259.0,0,1,2,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,987.2006510056966,0.015669684957409127,0.013117376672633128,75259.0,10,5,10,10_0,10_4,10_1_0 +8434,1,19.0,3,200.0,1,111,4,0,84,1.0,0.0,0.0,592.2090966552472,0.0,0.0,10747.210875301627,0,41,2,5398,201708434,,,,157.0,0.0,0.0,1.0,0.0,1.0,1.0,2477.8587408295703,0.0,440.0,0.0,0.0,7266.0,0,3,3,18.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,592.2090966552472,0.055103515091177224,0.08150414212155893,7266.0,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +8435,2,67.0,2,0.0,5,211,4,0,75,9.0,0.0,0.0,2510.159011959173,0.0,0.0,24666.86,0,33,1,5399,201708435,,,312.0,,0.0,3.0,5.0,0.0,1.0,1.0,1611.094461910771,0.0,1865.0,0.0,0.0,34554.0,0,5,1,110.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2510.159011959173,0.10176240559030103,0.07264452775247938,34554.0,9,5,9,9_1,9_1,9_0_0 +8436,2,43.0,4,0.0,8,111,4,0,52,5.0,0.0,0.0,1184.4181933104944,56.61830214538313,0.0,22009.540513464177,0,50,2,540,201708436,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2507.922648786188,0.0,880.0,0.0,0.0,21250.0,0,1,3,50.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1241.0364954558775,0.0563862973285009,0.058401717433217766,21250.0,6,3,6,6_0,6_2,6_0_0 +8437,1,43.0,4,256.0,2,111,1,0,85,1.0,0.0,0.0,1211.3367886130059,339.7098128722988,0.0,11038.16,0,71,2,5400,201708437,,,,121.0,0.0,1.0,3.0,2.0,3.0,1.8,606.1680408925552,0.0,900.0,0.0,0.0,13976.0,0,6,3,65.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1551.0466014853046,0.14051677104565477,0.11097929318011623,7764.444444444444,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8438,2,66.0,4,0.0,4,111,1,0,78,8.0,0.0,0.0,131.90111698230507,0.0,208.7799891611003,8530.6,0,70,2,5401,201708438,,,,185.0,0.0,1.0,1.0,0.0,1.0,1.0,3255.6320349834946,0.0,98.0,118.0,0.0,27314.0,0,5,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,340.6811061434054,0.039936359241249775,0.01247276510739567,27314.0,8,4,8,8_0,8_4,8_0_1 +8439,2,55.0,2,0.0,7,120,6,0,47,9.0,666.3115238383306,0.0,672.964882562781,247.7050718860512,0.0,34806.2,0,50,1,5402,201708439,,,110.0,,1.0,2.0,5.0,0.0,1.0,1.0,2879.4432001453883,0.0,500.0,0.0,0.0,33245.0,0,1,1,155.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1586.9814782871629,0.04559479283251728,0.04773594460180968,33245.0,9,5,9,9_1,9_0,9_0_0 +8440,2,49.0,2,0.0,5,111,1,0,46,5.0,0.0,0.0,314.9475650393815,0.0,0.0,20575.800000000003,0,42,2,5405,201708440,,,129.0,196.0,1.0,0.0,2.0,0.0,1.0,1.0,2250.562985067978,0.0,234.0,0.0,0.0,21518.0,0,1,3,49.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,314.9475650393815,0.015306698404892226,0.014636470166343597,21518.0,6,3,6,6_0,6_3,6_0_0 +8441,2,61.0,2,0.0,99,111,2,0,56,5.0,0.0,0.0,565.290501352736,0.0,1733.9355032023584,28794.225846751302,0,70,1,5406,201708441,,,,,1.0,1.0,3.0,0.0,1.0,1.0,1746.6948393345692,0.0,420.0,980.0,0.0,21601.0,0,1,1,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2299.2260045550943,0.07985024555937154,0.10644072054789566,21601.0,6,3,6,6_1,6_4,6_0_0 +8442,2,49.0,2,0.0,4,111,4,46,23,7.0,0.0,0.0,2422.6735772260117,0.0,0.0,57371.29262590489,50,50,1,5407,201708442,,,520.0,,2.0,3.0,5.0,2.0,4.0,2.5,3289.3751862246168,0.0,1800.0,0.0,0.0,63690.0,1,1,1,100.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2422.6735772260117,0.042227976159144455,0.0380385237435392,25476.0,7,4,7,7_1,7_2,7_0_1 +8443,2,61.0,2,0.0,9,120,2,77,74,10.0,0.0,0.0,148.0522741638118,0.0,0.0,45004.42,50,60,1,5409,201708443,,,451.0,,0.0,3.0,6.0,0.0,2.0,1.5,1662.1125968197525,0.0,110.0,0.0,0.0,85103.0,5,5,1,160.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,148.0522741638118,0.003289727412636621,0.0017396833738388988,56735.333333333336,10,5,10,10_1,10_1,10_0_0 +8444,2,77.0,3,0.0,6,112,4,75,42,10.0,0.0,0.0,3230.231436301349,185.7788039145384,0.0,44698.66769947209,30,41,1,541,201708444,,,408.0,,1.0,3.0,6.0,0.0,2.0,1.5,1687.604187618633,0.0,2400.0,0.0,0.0,60196.0,5,5,1,120.0,10,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3416.0102402158873,0.07642308856235175,0.05674812678941935,40130.666666666664,9,5,9,9_1,9_1,9_0_0 +8445,2,72.0,3,0.0,1,300,5,71,71,2.0,2062.392811880547,69.396315978172,1245.9135965970065,123.8525359430256,64.43314075592,26722.52962169337,70,70,1,5411,201708445,,,200.0,,0.0,1.0,5.0,0.0,2.0,1.5,1488.4012903245075,62.1067602161752,900.0,0.0,0.0,18640.0,5,5,1,120.0,0,0.0,3,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3565.988401154671,0.13344501630787972,0.19130839061988578,12426.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8446,2,74.0,1,0.0,1,120,2,86,75,5.0,1586.456009138882,0.0,632.5869896090142,153.93100895776038,0.0,23512.08,70,50,1,5412,201708446,,,340.0,,0.0,3.0,4.0,0.0,2.0,1.5,1395.0743797830507,0.0,470.0,0.0,0.0,29700.0,6,5,1,75.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2372.9740077056567,0.10092573722553073,0.0798981147375642,19800.0,5,3,5,5_1,5_1,5_1_0 +8447,2,83.0,3,0.0,1,120,6,86,86,5.0,0.0,0.0,1399.7669557305844,0.0,3492.641513593322,36507.72468577101,60,71,1,5413,201708447,,,403.0,,0.0,4.0,6.0,0.0,2.0,1.5,1393.3727650975295,0.0,1040.0,1974.0,0.0,29430.0,5,5,1,120.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4892.4084693239065,0.1340102269159145,0.16623881988868183,19620.0,5,3,5,5_1,5_0,5_1_0 +8448,2,22.0,2,0.0,1,112,2,55,63,7.0,1275.5106313476613,0.0,0.0,0.0,0.0,29586.685846751305,43,43,1,5414,201708448,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2868.1347133627037,0.0,0.0,0.0,0.0,37312.0,1,1,3,110.0,4,0.0,3,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1275.5106313476613,0.043110966802918066,0.03418499762402608,24874.666666666668,7,4,7,7_1,7_0,7_1_0 +8449,2,27.0,3,0.0,1,111,5,0,43,5.0,0.0,832.755791738064,2018.894647688343,0.0,0.0,28435.74,0,50,1,5415,201708449,,,600.0,,1.0,0.0,4.0,1.0,2.0,1.3,1165.3655012154036,0.0,1500.0,0.0,0.0,22894.0,0,1,2,100.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2851.650439426407,0.10028402423943976,0.12455885557029821,17610.76923076923,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +8450,1,86.0,3,133.0,6,111,2,0,77,3.0,0.0,0.0,39.0319631886413,0.0,88.46609710216114,12156.958839019719,0,71,2,5416,201708450,,,220.0,292.0,0.0,3.0,3.0,0.0,1.0,1.0,4082.136690626927,0.0,29.0,50.0,0.0,13882.0,0,5,3,60.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,127.49806029080244,0.01048766076936749,0.009184415811180121,13882.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8451,2,66.0,4,0.0,8,111,2,74,77,6.0,0.0,0.0,611.4591569639297,0.0,1890.7426812996753,19168.469774272366,50,71,1,5417,201708451,,,480.0,,0.0,1.0,4.0,0.0,2.0,1.5,3324.310136554115,82.92800263327806,420.0,1020.0,0.0,30470.0,5,5,1,84.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2502.201838263605,0.13053738079927607,0.08212017847927815,20313.333333333332,5,3,5,5_1,5_4,5_0_0 +8452,2,52.0,3,0.0,8,120,5,0,69,6.0,0.0,8.32755791738064,1520.900634591885,0.0,0.0,16405.5,0,71,1,5419,201708452,,,240.0,,1.0,3.0,5.0,0.0,1.0,1.0,2016.9672366278933,0.0,1130.0,0.0,0.0,21474.0,0,1,1,180.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1529.2281925092655,0.09321436058085797,0.07121301073434225,21474.0,6,3,6,6_1,6_0,6_0_0 +8453,2,32.0,2,0.0,1,111,2,0,38,10.0,0.0,0.0,376.8603342351573,0.0,937.7406292829081,46933.979999999996,0,10,2,542,201708453,,,,1550.0,2.0,0.0,3.0,0.0,2.0,1.5,4276.545329704659,0.0,280.0,530.0,0.0,59582.0,0,1,3,62.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1314.6009635180653,0.028009577783901247,0.022063726687893415,39721.333333333336,9,5,9,9_0,9_4,9_1_0 +8454,2,62.0,3,0.0,10,111,4,0,75,7.0,0.0,0.0,1453.6041463356069,0.0,0.0,15414.24,0,50,1,5421,201708454,,,192.0,,0.0,1.0,3.0,0.0,1.0,1.0,2413.9315996602504,0.0,1080.0,0.0,0.0,25113.0,0,5,3,66.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1453.6041463356069,0.09430268027068521,0.057882536787146374,25113.0,7,4,7,7_1,7_3,7_0_0 +8455,2,47.0,4,0.0,5,300,2,56,52,1.0,2221.038412794435,0.0,1292.0925745205395,99.08202875442048,0.0,52087.42,50,50,1,5422,201708455,,,700.0,,2.0,1.0,5.0,2.0,8.0,3.5,2132.8227835020834,0.0,960.0,0.0,0.0,33848.0,1,1,2,178.0,0,0.0,5,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3612.213016069395,0.06934904850479051,0.10671865445726172,9670.857142857143,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8456,2,22.0,2,0.0,4,112,2,55,47,3.0,0.0,0.0,152.0900634591885,159.23897478389006,0.0,21383.07956108638,31,31,1,5423,201708456,,,224.0,,2.0,0.0,2.0,0.0,2.0,1.5,2128.5181462211563,0.0,113.0,0.0,0.0,21367.0,1,1,3,75.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,311.32903824307857,0.014559597805062899,0.014570554511306153,14244.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +8457,2,78.0,3,0.0,1,111,1,0,72,3.0,0.0,0.0,363.4010365839017,0.0,0.0,19637.559999999998,0,50,8,5425,201708457,,,,261.0,0.0,3.0,2.0,0.0,1.0,1.0,3296.5897052655882,0.0,270.0,0.0,0.0,14758.0,0,5,3,58.0,7,5.0,1,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,363.4010365839017,0.018505406811431854,0.024624003020998896,14758.0,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +8458,2,48.0,5,0.0,6,111,4,0,54,7.0,0.0,0.0,2341.9177913184776,0.0,0.0,35509.46,0,31,1,5428,201708458,,,480.0,,1.0,0.0,4.0,1.0,3.0,1.8,1154.3521913357672,0.0,1740.0,0.0,0.0,44210.0,0,1,3,64.0,6,5.0,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2341.9177913184776,0.06595194044962885,0.0529725806676878,24561.11111111111,7,4,7,7_1,7_2,7_0_0 +8459,2,50.0,3,0.0,7,112,2,52,64,7.0,3490.203220105541,0.0,798.1363507194583,0.0,0.0,50776.36,71,71,1,5429,201708459,,,432.0,,2.0,1.0,5.0,1.0,3.0,2.0,1902.085631736006,0.0,593.0,0.0,0.0,49436.0,1,1,2,140.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4288.339570824999,0.08445543498637947,0.08674527815407798,24718.0,7,4,7,7_1,7_0,7_0_0 +8460,2,52.0,3,0.0,8,112,2,54,63,3.0,0.0,555.170527825376,1372.8483604280732,159.23897478389006,0.0,19409.069322168427,50,50,1,543,201708460,,,500.0,,2.0,1.0,5.0,1.0,3.0,2.0,1573.9829410909542,0.0,1020.0,0.0,0.0,31920.0,1,1,1,135.0,8,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2087.257863037339,0.10754033737482399,0.0653902839297412,15960.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +8461,2,67.0,2,0.0,4,111,2,0,77,9.0,0.0,0.0,578.7497990039916,0.0,831.5813127603147,23953.199999999997,0,44,2,5430,201708461,,,110.0,,0.0,1.0,4.0,0.0,1.0,1.0,2335.0102804508983,0.0,430.0,470.0,0.0,39000.0,0,5,1,110.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1410.3311117643063,0.058878609612256674,0.03616233619908478,39000.0,9,5,9,9_0,9_2,9_0_1 +8462,1,47.0,3,261.0,6,112,2,0,55,4.0,0.0,0.0,317.63942456963264,0.0,1141.2126526178788,27260.611191295746,0,20,2,5431,201708462,,,199.0,221.0,1.0,0.0,3.0,2.0,3.0,1.6,1064.8894798196525,0.0,236.0,645.0,0.0,25770.0,0,1,3,76.0,9,3.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1458.8520771875114,0.05351501721477616,0.056610480294431956,16106.25,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +8463,2,76.0,3,0.0,5,111,2,77,74,6.0,793.228004569441,624.566843803548,740.261370819059,636.9558991355602,0.0,47234.700000000004,50,12,1,5432,201708463,,,400.0,,0.0,2.0,4.0,0.0,2.0,1.5,2190.5867667984653,0.0,550.0,0.0,0.0,32157.0,5,5,1,108.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2795.0121183276083,0.05917285636042164,0.08691768878712593,21438.0,6,3,6,6_1,6_3,6_0_0 +8464,2,48.0,3,0.0,9,112,2,42,48,8.0,2379.684013708323,0.0,807.5578590753372,0.0,0.0,74121.7216935026,31,41,1,5433,201708464,,,260.0,,2.0,0.0,4.0,2.0,4.0,2.5,1353.952082668024,0.0,600.0,0.0,0.0,72488.0,1,1,2,200.0,9,3.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3187.2418727836603,0.04300010577146442,0.04396923453238688,28995.2,8,4,8,8_1,8_1,8_0_0 +8465,2,70.0,3,0.0,3,112,2,77,78,7.0,0.0,0.0,740.261370819059,0.0,2432.8176703094314,43061.920000000006,71,50,1,5436,201708465,,,395.0,,0.0,1.0,3.0,0.0,2.0,1.5,2265.3716642568693,0.0,550.0,1375.0,0.0,36480.0,5,5,1,59.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3173.0790411284906,0.07368642738476339,0.08698133336426783,24320.0,7,4,7,7_1,7_0,7_0_1 +8466,2,31.0,3,0.0,9,120,4,56,63,7.0,0.0,0.0,1817.0051829195086,0.0,0.0,28252.24,44,50,1,5437,201708466,,,480.0,,2.0,0.0,4.0,0.0,2.0,1.5,2226.89541899022,0.0,1350.0,0.0,0.0,35292.0,1,1,2,120.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1817.0051829195086,0.06431366797533607,0.051484902610209354,23528.0,6,3,6,6_1,6_1,6_0_0 +8467,2,62.0,3,0.0,99,111,1,0,77,3.0,0.0,0.0,251.6888660784801,0.0,180.47083808840873,12229.220000000001,0,70,2,5438,201708467,,,190.0,343.0,0.0,0.0,3.0,0.0,1.0,1.0,2412.0098321763226,0.0,187.0,102.0,0.0,18091.0,0,5,3,69.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,432.1597041668888,0.035338288473581204,0.02388810481271841,18091.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +8468,2,27.0,2,0.0,4,111,1,37,34,8.0,0.0,0.0,371.4766151746551,0.0,0.0,34562.520000000004,12,10,2,5439,201708468,,,,750.0,2.0,0.0,3.0,1.0,3.0,1.8,3736.894550624355,0.0,276.0,0.0,0.0,51513.0,1,1,3,80.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,371.4766151746551,0.01074796094655873,0.007211317826076041,28618.333333333332,8,4,8,8_0,8_3,8_0_1 +8469,2,28.0,1,0.0,5,111,4,0,47,5.0,0.0,0.0,145.36041463356068,0.0,0.0,10054.800000000001,0,30,2,5440,201708469,,,,310.0,1.0,0.0,1.0,0.0,1.0,1.0,5207.981491761335,0.0,108.0,0.0,0.0,19950.0,0,1,3,18.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,145.36041463356068,0.01445681810016715,0.007286236322484245,19950.0,5,3,5,5_0,5_3,5_0_0 +8470,2,36.0,2,0.0,99,111,4,0,42,5.0,0.0,0.0,1211.3367886130059,159.23897478389006,0.0,23391.940000000002,0,30,2,5441,201708470,,,170.0,243.0,1.0,1.0,2.0,0.0,1.0,1.0,2782.3713698621614,0.0,900.0,0.0,0.0,20846.0,0,1,3,48.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1370.575763396896,0.05859179543880909,0.06574766206451578,20846.0,5,3,5,5_0,5_2,5_0_0 +8471,2,78.0,1,0.0,2,111,6,77,74,9.0,0.0,0.0,694.49975880479,0.0,1429.6121291709242,36407.24,60,41,1,5442,201708471,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1440.6917251835378,0.0,516.0,808.0,0.0,46738.0,5,5,1,100.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2124.111887975714,0.05834311768691376,0.0454472140009353,31158.666666666668,8,4,8,8_1,8_2,8_0_1 +8472,1,51.0,3,89.0,1,112,2,0,43,3.0,0.0,0.0,2691.859530251124,2268.2707296994117,0.0,41303.52,0,33,2,5443,201708472,,,450.0,,2.0,0.0,4.0,3.0,4.0,2.5,619.531968449847,0.0,2000.0,0.0,0.0,42524.0,0,1,3,107.0,9,2.0,2,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,4960.130259950536,0.12008977104010836,0.11664307826052432,17009.6,4,2,4_1,4_0_1,4_1_1,4_1_0_1 +8473,2,67.0,1,0.0,9,211,2,0,22,10.0,0.0,0.0,1546.1776260303247,0.0,1075.4287551948503,22513.792178404587,0,42,2,5444,201708473,,,150.0,,1.0,1.0,4.0,0.0,1.0,1.0,6034.067190293739,1036.6000329159756,720.0,0.0,0.0,55736.0,0,1,3,134.0,1,3.0,1,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2621.606381225175,0.11644446037570877,0.04703614147454383,55736.0,10,5,10,10_0,10_1,10_0_0 +8474,2,66.0,2,0.0,9,112,6,72,75,8.0,0.0,0.0,2507.007317943569,0.0,1182.9716307143353,58074.36939624505,44,33,1,5446,201708474,,,189.0,,0.0,2.0,6.0,0.0,2.0,1.5,1602.8290049135815,1140.2600362075732,1391.0,0.0,0.0,41110.0,5,5,1,200.0,7,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3689.9789486579043,0.0635388552130622,0.08975867060710056,27406.666666666668,8,4,8,8_1,8_0,8_0_0 +8475,2,35.0,5,0.0,4,111,1,0,43,5.0,0.0,0.0,444.15682249143543,0.0,0.0,30540.780315994114,0,33,2,5447,201708475,,,,553.0,1.0,0.0,2.0,1.0,2.0,1.3,1273.6768217751235,0.0,330.0,0.0,0.0,25771.0,0,1,3,43.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,444.15682249143543,0.014543073814614746,0.017234753113632977,19823.846153846152,5,3,5,5_0,5_2,5_0_1 +8476,2,60.0,2,0.0,1,112,2,0,78,4.0,1745.1016100527704,0.0,83.44764543778484,169.8549064361494,0.0,27053.4,0,50,1,5448,201708476,,,68.0,,0.0,0.0,6.0,0.0,1.0,1.0,3855.767996884746,0.0,62.0,0.0,0.0,18001.0,0,5,1,130.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1998.4041619267045,0.07386887274526324,0.1110162858689353,18001.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8477,1,42.0,3,154.0,5,111,1,0,55,5.0,0.0,0.0,698.5375481001666,0.0,0.0,16299.84,0,30,2,5449,201708477,,,,240.0,1.0,0.0,3.0,2.0,3.0,1.6,905.0938744878878,0.0,519.0,0.0,0.0,29094.0,0,1,3,70.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,698.5375481001666,0.04285548496796083,0.02400967718774203,18183.75,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +8478,2,42.0,1,0.0,4,111,2,37,48,9.0,0.0,0.0,888.3136449828709,0.0,1553.4646651139496,39911.58,20,31,1,545,201708478,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2345.8853787952003,0.0,660.0,878.0,0.0,86339.0,1,1,2,80.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2441.7783100968204,0.061179695469255294,0.028281290148100168,37538.69565217392,9,5,9,9_1,9_3,9_0_1 +8479,2,61.0,2,0.0,8,111,6,52,74,6.0,0.0,0.0,1076.7438121004495,0.0,2491.205294396858,54623.007849749774,50,31,1,5450,201708479,,,400.0,,1.0,4.0,8.0,0.0,2.0,1.5,2240.5130442006703,0.0,800.0,1408.0,0.0,35052.0,1,4,1,160.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3567.949106497307,0.06531952828946332,0.1017901719301982,23368.0,6,3,6,6_1,6_2,6_0_0 +8480,2,70.0,2,0.0,1,112,6,42,74,10.0,2827.0646082854882,0.0,1076.7438121004495,0.0,0.0,37778.69736204532,41,20,1,5451,201708480,,,500.0,,1.0,4.0,5.0,0.0,2.0,1.5,2148.4021518788136,0.0,800.0,0.0,0.0,100090.0,1,5,2,150.0,9,2.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3903.808420385938,0.10333358990582696,0.03900298152049094,66726.66666666667,10,5,10,10_1,10_1,10_1_0 +8481,2,56.0,5,0.0,9,300,4,0,42,4.0,0.0,0.0,807.5578590753372,0.0,0.0,22180.173380506956,0,30,1,5452,201708481,,,,,1.0,6.0,3.0,1.0,2.0,1.5,2852.2409146681143,0.0,600.0,0.0,0.0,25636.0,0,1,3,70.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,807.5578590753372,0.03640899668462733,0.03150093068635268,17090.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8482,2,72.0,1,0.0,1,400,4,78,74,10.0,0.0,277.585263912688,4775.358806665494,658.1877624400789,0.0,97768.94,41,50,1,5453,201708482,,,320.0,,0.0,2.0,5.0,0.0,2.0,1.5,1413.173307412627,0.0,3548.0,0.0,0.0,80761.0,5,5,1,192.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5711.13183301826,0.05841458271940209,0.07071645760971583,53840.666666666664,10,5,10,10_1,10_0,10_1_0 +8483,2,59.0,2,0.0,2,120,2,62,78,4.0,1586.456009138882,5551.705278253759,605.6683943065029,0.0,0.0,44124.22932216842,71,50,1,5454,201708483,,,500.0,,1.0,0.0,5.0,2.0,6.0,3.1,4052.9852733753946,0.0,450.0,0.0,0.0,51065.0,1,5,1,110.0,0,0.0,5,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,7743.829681699144,0.1755006217821593,0.15164652270046303,16472.58064516129,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +8484,2,69.0,2,0.0,8,112,2,74,72,8.0,0.0,0.0,1438.7989189192258,0.0,0.0,25207.27665845403,30,30,1,5456,201708484,,,207.0,,0.0,2.0,7.0,0.0,2.0,1.5,1759.3782119569678,0.0,1069.0,0.0,0.0,41118.0,5,5,1,160.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1438.7989189192258,0.05707871335782244,0.034991948025663355,27412.0,8,4,8,8_1,8_0,8_0_0 +8485,2,56.0,3,0.0,8,112,4,77,53,5.0,0.0,0.0,1076.7438121004495,0.0,0.0,19209.1258467513,42,60,1,5457,201708485,,,350.0,,1.0,2.0,4.0,0.0,2.0,1.5,2031.460836689689,0.0,800.0,0.0,0.0,29670.0,6,1,2,100.0,6,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1076.7438121004495,0.05605376427280533,0.036290657637359267,19780.0,5,3,5,5_1,5_1,5_0_0 +8486,1,54.0,3,228.0,6,111,1,0,78,2.0,0.0,0.0,306.87198644862815,0.0,0.0,13616.671191295743,0,71,2,5458,201708486,,,,223.0,0.0,3.0,3.0,0.0,1.0,1.0,2313.139114950542,0.0,228.0,0.0,0.0,10870.0,0,7,3,72.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,306.87198644862815,0.022536490904237413,0.028231093509533407,10870.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +8487,2,83.0,2,0.0,2,400,6,0,71,4.0,793.228004569441,0.0,309.56384597887927,159.23897478389006,0.0,31181.38,0,70,1,5459,201708487,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2247.369058408287,0.0,230.0,0.0,0.0,15980.0,0,5,5,79.0,0,1.0,1,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1262.0308253322105,0.04047386053254251,0.07897564614093933,15980.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +8488,2,63.0,3,0.0,5,111,4,64,64,9.0,0.0,166.55115834761278,417.2382271889242,51.310336319253466,0.0,48368.600000000006,50,50,1,546,201708488,,,285.0,,3.0,3.0,4.0,1.0,3.0,2.0,1863.5768561170294,0.0,310.0,0.0,0.0,63115.0,5,5,1,104.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,635.0997218557904,0.013130413571114118,0.010062579764806947,31557.5,8,4,8,8_1,8_2,8_0_0 +8489,2,53.0,3,0.0,8,300,2,52,63,3.0,1586.456009138882,0.0,915.2322402853821,159.23897478389006,0.0,39007.64290014543,50,50,1,5462,201708489,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2281.1616211242786,0.0,680.0,0.0,0.0,41453.0,1,1,2,180.0,0,0.0,4,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2660.9272242081543,0.0682155348637647,0.06419142701874785,16581.2,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8490,2,49.0,2,0.0,1,111,2,37,37,10.0,4283.431224674982,0.0,982.5287285416603,0.0,0.0,36501.600000000006,31,20,1,5463,201708490,,,440.0,,2.0,0.0,4.0,1.0,3.0,2.0,2427.373606747411,0.0,730.0,0.0,0.0,96956.0,1,1,2,89.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5265.959953216643,0.14426655141738012,0.054312883712371,48478.0,10,5,10,10_1,10_4,10_1_0 +8491,1,55.0,4,256.0,5,112,1,0,78,5.0,0.0,0.0,387.6277723561618,0.0,1273.9117982711205,15550.500000000002,0,71,8,5464,201708491,,,,208.0,1.0,0.0,4.0,1.0,2.0,1.5,4628.279129800969,0.0,288.0,720.0,0.0,27362.0,0,7,3,70.0,9,1.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1661.5395706272823,0.10684798370645844,0.060724346561920994,18241.333333333332,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +8492,2,87.0,3,0.0,3,400,4,0,78,5.0,0.0,0.0,1570.7000359015308,88.46609710216114,0.0,10488.545846751302,0,71,1,5466,201708492,,,132.0,,0.0,3.0,3.0,0.0,1.0,1.0,3054.563075648502,0.0,1167.0,0.0,0.0,21324.0,0,5,3,60.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1659.1661330036918,0.15818838542976843,0.0778074532453429,21324.0,6,3,6,6_1,6_0,6_0_1 +8493,2,50.0,3,0.0,1,112,4,0,85,1.0,0.0,0.0,2907.2082926712137,106.15931652259337,0.0,16830.21672205293,0,50,1,5467,201708493,,,600.0,,0.0,1.0,3.0,0.0,1.0,1.0,2812.910628205191,0.0,2160.0,0.0,0.0,6770.0,0,7,2,104.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3013.367609193807,0.179045086522584,0.44510599840381193,6770.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8494,2,70.0,3,0.0,1,111,6,77,77,5.0,1427.810408224994,0.0,1376.9187963973184,0.0,860.3430041558803,49358.79774272367,71,50,1,5468,201708494,,,882.0,,0.0,2.0,4.0,0.0,2.0,1.5,2966.8441219287215,829.2800263327805,680.0,0.0,0.0,30312.0,5,5,1,90.0,9,7.0,3,8,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3665.072208778193,0.07425367667749742,0.12091159305813516,20208.0,5,3,5,5_1,5_3,5_1_0 +8495,2,35.0,3,0.0,9,111,2,54,54,9.0,0.0,0.0,1076.7438121004495,0.0,1733.9355032023584,38564.48,43,31,1,5469,201708495,,,480.0,,2.0,0.0,6.0,1.0,3.0,1.8,2420.6863563673487,0.0,800.0,980.0,0.0,66573.0,1,1,2,125.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2810.679315302808,0.07288259339430501,0.04221950813847668,36985.0,9,5,9,9_1,9_4,9_0_0 +8496,2,35.0,2,0.0,99,111,1,21,45,3.0,0.0,0.0,1152.115878947481,0.0,207.01066721905707,31213.699999999997,71,43,2,547,201708496,,,,458.0,2.0,0.0,4.0,2.0,4.0,2.1,6223.38406905869,0.0,856.0,117.0,0.0,31320.0,1,1,3,67.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1359.126546166538,0.04354262859470483,0.043394845024474396,14914.285714285714,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +8497,1,35.0,5,34.0,9,111,2,55,47,7.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,29286.085980622458,71,42,2,5474,201708497,,,450.0,416.0,2.0,1.0,2.0,0.0,2.0,1.5,2708.9179497361847,800.0,0.0,0.0,0.0,37202.0,1,1,3,64.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1275.3516479725763,0.04354804014494905,0.03428180334316908,24801.333333333332,7,4,7,7_0,7_2,7_0_0 +8498,2,43.0,2,0.0,3,111,2,45,38,8.0,0.0,0.0,856.0113306198574,0.0,1539.310089577604,56303.49999999999,31,31,1,5475,201708498,,,500.0,,2.0,0.0,7.0,2.0,4.0,2.5,1867.9396426562116,0.0,636.0,870.0,0.0,73061.0,1,1,2,120.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2395.3214201974615,0.04254302876726068,0.03278522632043719,29224.4,8,4,8,8_1,8_3,8_0_1 +8499,0,59.0,3,0.0,1,111,1,0,67,9.0,0.0,0.0,235.09210732974796,0.0,438.0891043844343,33009.54000000001,0,50,2,5476,201708499,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3325.970518562843,422.27174773911923,0.0,0.0,0.0,32389.0,0,1,5,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,673.1812117141823,0.02039353507241186,0.020784254275037273,32389.0,9,5,9,9_0,9_4,9_1_0 +8500,2,64.0,2,0.0,7,112,6,75,75,8.0,0.0,0.0,2422.6735772260117,175.16287226227908,0.0,51425.74887828637,60,50,1,5478,201708500,,,2390.0,,0.0,1.0,5.0,0.0,2.0,1.5,2159.227407204613,0.0,1800.0,0.0,0.0,47696.0,5,5,1,200.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2597.836449488291,0.05051625899774076,0.05446654749849653,31797.333333333332,8,4,8,8_1,8_0,8_0_0 +8501,2,86.0,2,0.0,6,111,2,0,86,10.0,0.0,0.0,3675.9439585289138,0.0,1287.0519865995016,29202.663193325112,0,70,1,548,201708501,,,530.0,,0.0,0.0,6.0,1.0,2.0,1.5,2021.5702871010815,1240.5825353180996,2218.0,0.0,0.0,74200.0,0,5,1,76.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4962.995945128416,0.16995011421639153,0.06688673780496517,49466.666666666664,10,5,10,10_1,10_4,10_0_0 +8502,1,29.0,4,343.0,4,111,2,0,81,1.0,0.0,0.0,411.98152695617125,0.0,767.7187474184619,5980.173380506958,0,43,2,5480,201708502,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2879.9224717466245,740.0,0.0,0.0,0.0,11556.0,0,4,3,72.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1179.7002743746332,0.19726857388784041,0.10208552045471038,8889.23076923077,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8503,2,69.0,3,0.0,9,112,4,0,74,9.0,0.0,0.0,1453.6041463356069,0.0,0.0,54137.520000000004,0,20,2,5481,201708503,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4196.984631417486,0.0,1080.0,0.0,0.0,32323.0,0,5,1,75.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1453.6041463356069,0.026850216750519913,0.04497120150776868,32323.0,9,5,9,9_0,9_2,9_0_0 +8504,2,47.0,2,0.0,1,111,1,45,38,10.0,0.0,0.0,1380.1381153031737,0.0,2571.8578038518476,85007.2516935026,31,12,1,5482,201708504,,,480.0,,2.0,0.0,6.0,1.0,3.0,1.8,2187.3777318388024,2479.0,0.0,0.0,0.0,96331.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3951.9959191550215,0.04649010337852254,0.04102517278088073,53517.22222222222,10,5,10,10_1,10_4,10_1_0 +8505,2,85.0,3,0.0,2,111,2,0,77,6.0,0.0,0.0,753.7206684703146,0.0,1769.3219420432229,16491.96,0,70,1,5485,201708505,,,540.0,,0.0,2.0,4.0,0.0,1.0,1.0,2569.911567046333,0.0,560.0,1000.0,0.0,23470.0,0,5,1,100.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2523.0426105135375,0.1529862193768077,0.10750075034143747,23470.0,6,3,6,6_1,6_2,6_0_1 +8506,2,66.0,3,0.0,9,211,4,77,78,6.0,0.0,0.0,888.3136449828709,0.0,0.0,31035.100000000002,50,50,1,5486,201708506,,,262.0,,0.0,3.0,4.0,0.0,2.0,1.5,1143.2412136964101,0.0,660.0,0.0,0.0,31121.0,5,5,2,107.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,888.3136449828709,0.028622870394581324,0.02854386571713219,20747.333333333332,5,3,5,5_1,5_1,5_0_0 +8507,2,45.0,2,0.0,8,111,2,46,38,7.0,0.0,0.0,1749.7086946632305,0.0,0.0,36107.18282119944,20,31,1,5487,201708507,,,,,2.0,0.0,5.0,3.0,5.0,2.6,2198.2926285288268,0.0,1300.0,0.0,0.0,61518.0,1,1,2,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1749.7086946632305,0.04845874305197613,0.028442223327533902,23660.76923076923,6,3,6,6_1,6_4,6_0_0 +8508,1,48.0,2,194.0,1,112,5,69,69,3.0,0.0,138.792631956344,2557.266553738568,212.31863304518674,0.0,50634.15439208821,50,50,1,5488,201708508,,,490.0,,4.0,0.0,6.0,2.0,4.0,2.5,2357.6863798388335,0.0,1900.0,0.0,0.0,37538.0,1,1,2,150.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2908.3778187400985,0.05743905183483313,0.07747823055943573,15015.2,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +8509,1,28.0,2,186.0,99,111,1,0,52,3.0,0.0,0.0,452.2324010821888,0.0,410.4826905540277,24683.090875301627,0,50,2,549,201708509,62.0,62.0,,121.0,1.0,0.0,3.0,2.0,3.0,1.6,1225.184326769803,0.0,336.0,232.0,0.0,22577.0,0,1,3,43.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,862.7150916362166,0.03495166371159237,0.0382121225865357,14110.625,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +8510,2,28.0,2,0.0,9,400,5,56,69,3.0,0.0,0.0,0.0,123.8525359430256,0.0,28016.32,50,31,1,5490,201708510,,,,,2.0,0.0,5.0,0.0,2.0,1.5,4071.5455807682124,0.0,0.0,0.0,0.0,23110.0,1,1,3,122.0,0,0.0,3,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,123.8525359430256,0.004420728202098834,0.005359261615881679,15406.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8511,2,83.0,3,0.0,1,111,2,0,75,9.0,0.0,0.0,605.6683943065029,0.0,1326.9914565324173,39234.31087530163,0,33,2,5491,201708511,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3635.26932889572,0.0,450.0,750.0,0.0,35558.0,0,5,1,67.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1932.6598508389202,0.0492594315465739,0.05435232158273582,35558.0,9,5,9,9_0,9_4,9_1_0 +8512,2,50.0,2,0.0,7,120,5,62,34,2.0,1599.1476572119932,971.5484236944079,2930.883077413873,0.0,3139.126769039742,61672.59984227203,50,33,1,5492,201708512,,,412.0,,3.0,0.0,6.0,2.0,4.0,2.5,1791.875256148012,3025.787525575733,926.0,0.0,0.0,44104.0,1,1,1,180.0,0,0.0,4,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,8640.705927360015,0.14010607546071777,0.19591660455650317,17641.6,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8513,2,42.0,2,0.0,7,111,1,0,34,10.0,0.0,0.0,484.5347154452023,0.0,0.0,60976.20031599411,0,10,2,5494,201708513,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2474.4006050382322,0.0,360.0,0.0,0.0,67150.0,0,1,2,90.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,484.5347154452023,0.00794629237201106,0.0072157068569650385,67150.0,10,5,10,10_0,10_3,10_0_0 +8514,2,57.0,4,0.0,1,112,2,67,55,7.0,0.0,0.0,66.80781518208181,0.0,124.49493201380464,33608.58,71,50,1,5495,201708514,,,,,2.0,2.0,4.0,0.0,2.0,1.5,519.4963630044398,120.0,0.0,0.0,0.0,34590.0,1,1,3,85.0,6,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,191.30274719588647,0.0056920806292883085,0.005530579566229733,23060.0,6,3,6,6_1,6_0,6_1_0 +8515,2,62.0,3,0.0,9,111,1,0,74,7.0,0.0,0.0,209.96504335958767,0.0,0.0,37613.453380506966,0,31,2,5497,201708515,,,,685.0,0.0,2.0,2.0,0.0,1.0,1.0,2858.7739088281965,0.0,156.0,0.0,0.0,32930.0,0,5,3,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,209.96504335958767,0.005582179366396633,0.006376102136640986,32930.0,9,5,9,9_0,9_4,9_0_0 +8516,2,47.0,1,0.0,7,111,2,0,13,10.0,0.0,0.0,257.07258513898233,0.0,1314.6062029381146,20701.66,0,44,2,5498,201708516,,,,395.0,1.0,0.0,1.0,0.0,1.0,1.0,2769.6690776671626,0.0,191.0,743.0,0.0,51746.0,0,1,3,23.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1571.678788077097,0.0759204231968401,0.030372952268331792,51746.0,10,5,10,10_0,10_2,10_0_0 +8517,0,65.0,3,0.0,1,111,1,77,56,6.0,0.0,0.0,807.9514731958884,0.0,1505.6002572727907,29111.861049766427,70,70,2,5499,201708517,,,,,1.0,2.0,2.0,0.0,2.0,1.5,3131.7980372458123,1451.240046082366,0.0,0.0,0.0,33760.0,5,1,5,35.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2313.551730468679,0.0794711037715413,0.06852937590250827,22506.666666666668,6,3,6,6_0,6_4,6_1_0 +8518,2,31.0,2,0.0,1,111,2,0,37,9.0,0.0,0.0,780.639263772826,0.0,0.0,25652.260000000002,0,12,2,55,201708518,,,,813.0,1.0,0.0,2.0,0.0,1.0,1.0,5196.968885264095,0.0,580.0,0.0,0.0,36080.0,0,1,3,32.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,780.639263772826,0.030431597986798276,0.021636343230954157,36080.0,9,5,9,9_0,9_4,9_1_0 +8519,2,83.0,2,0.0,1,111,2,0,77,3.0,0.0,0.0,588.1713073598705,5307.965826129669,0.0,12822.199999999999,0,70,1,550,201708519,,,400.0,,0.0,3.0,3.0,0.0,1.0,1.0,3346.8992071877815,0.0,437.0,0.0,0.0,14984.0,0,5,1,92.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,5896.137133489539,0.4598381817074714,0.39349553747260674,14984.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +8520,2,41.0,2,0.0,9,112,4,37,31,9.0,0.0,0.0,1989.2841928555806,0.0,0.0,60305.52266666667,31,20,1,5500,201708520,,,940.0,,2.0,0.0,4.0,2.0,4.0,2.1,6598.59501528221,0.0,1478.0,0.0,0.0,74163.0,1,1,2,142.0,7,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1989.2841928555806,0.032986766466666234,0.026823135429467262,35315.71428571428,9,5,9,9_1,9_1,9_0_0 +8521,2,51.0,4,0.0,1,111,1,52,56,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,34718.53402784229,60,71,2,5501,201708521,,,,453.0,2.0,0.0,4.0,4.0,7.0,3.2,3504.826044470357,1200.0,0.0,0.0,0.0,52950.0,1,1,3,74.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1913.0274719588647,0.05510104402520929,0.03612894186891152,16546.875,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +8522,1,40.0,4,241.0,3,111,1,0,46,2.0,0.0,0.0,605.6683943065029,0.0,0.0,32807.1,0,50,2,5502,201708522,,,,,1.0,0.0,4.0,2.0,3.0,2.0,746.9096626794178,0.0,450.0,0.0,0.0,24294.0,0,1,3,75.0,8,6.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,605.6683943065029,0.0184615035863122,0.0249307810285051,12147.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8523,2,75.0,2,0.0,4,111,2,75,74,8.0,0.0,0.0,1453.6041463356069,0.0,1316.3755248801579,49000.82031599412,70,50,1,5503,201708523,,,400.0,,0.0,2.0,4.0,0.0,2.0,1.5,2476.0125700502795,0.0,1080.0,744.0,0.0,42787.0,5,5,1,100.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2769.979671215765,0.056529251007490365,0.06473881485534777,28524.666666666668,8,4,8,8_1,8_3,8_0_1 +8524,2,66.0,4,0.0,6,111,4,0,77,3.0,0.0,693.9631597817199,1642.0343134531856,60.15694602946958,0.0,12598.464691045117,0,50,1,5504,201708524,,,120.0,,0.0,2.0,4.0,0.0,1.0,1.0,2087.363958726437,0.0,1220.0,0.0,0.0,15216.0,0,5,1,74.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2396.154419264375,0.19019416079862028,0.1574759739264179,15216.0,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +8525,2,62.0,2,0.0,4,111,1,0,37,9.0,0.0,0.0,273.22374232048907,0.0,166.31626255206297,29366.08,0,42,2,5505,201708525,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2644.1912444504305,0.0,203.0,94.0,0.0,35842.0,0,1,1,89.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,439.540004872552,0.014967609053457322,0.012263266694731097,35842.0,9,5,9,9_0,9_4,9_0_1 +8526,1,54.0,5,63.0,5,112,4,0,47,5.0,0.0,0.0,2745.6967208561464,134.46846759528495,0.0,40642.200000000004,0,50,1,5506,201708526,,,390.0,,1.0,2.0,6.0,2.0,3.0,1.8,446.43435412359435,0.0,2040.0,0.0,0.0,34319.0,0,1,3,230.0,10,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2880.1651884514313,0.0708663701387088,0.08392334241823571,19066.11111111111,5,3,5,5_1,5_0,5_0_0 +8527,2,52.0,5,0.0,1,400,5,12,12,2.0,0.0,220.68028481058695,2774.3193093139844,424.6372660903735,429.5542717061333,10412.358109944049,71,50,1,5507,201708527,,,350.0,,2.0,0.0,2.0,0.0,2.0,1.5,2702.416313298465,414.0450681078347,1890.0,0.0,0.0,16720.0,1,1,1,65.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3849.1911319210785,0.36967525427741577,0.2302147806172894,11146.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8528,2,65.0,3,0.0,7,111,2,0,78,3.0,63.458240365555284,0.0,471.07541779394666,0.0,0.0,25592.12,0,71,2,5508,201708528,,,160.0,,0.0,2.0,3.0,0.0,1.0,1.0,4103.440574848878,0.0,350.0,0.0,0.0,14600.0,0,5,3,60.0,9,7.0,1,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,534.5336581595019,0.020886650193868345,0.03661189439448643,14600.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +8529,1,70.0,3,25.0,4,111,1,0,78,3.0,0.0,0.0,33.64824412813905,79.61948739194503,0.0,15879.591191295745,0,70,2,5509,201708529,,,15.0,345.0,0.0,2.0,3.0,0.0,1.0,1.0,4183.909118101104,0.0,25.0,0.0,0.0,15140.0,0,5,3,76.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,113.26773152008408,0.00713291231213627,0.007481356110969887,15140.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +8530,2,36.0,2,0.0,1,111,2,31,31,10.0,0.0,0.0,484.5347154452023,0.0,1698.549064361494,52613.7,20,20,1,551,201708530,,,384.0,,2.0,1.0,4.0,2.0,4.0,2.1,2187.8180630057805,0.0,360.0,960.0,0.0,153996.0,1,1,2,110.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2183.0837798066964,0.04149268688206107,0.014176236913989301,73331.42857142857,10,5,10,10_1,10_3,10_1_0 +8531,2,50.0,3,0.0,8,112,1,21,22,2.0,0.0,0.0,942.1508355878933,0.0,3007.847301473479,62312.8,50,60,1,5511,201708531,,,540.0,,2.0,1.0,7.0,1.0,3.0,2.0,2965.916073458551,0.0,700.0,1700.0,0.0,23980.0,1,1,1,170.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3949.9981370613723,0.06338983542805607,0.16472052281323488,11990.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8532,2,58.0,3,0.0,7,111,5,78,78,2.0,0.0,1582.2360043023216,915.2322402853821,276.0142229587428,0.0,20315.760000000002,50,71,1,5513,201708532,,,250.0,,0.0,1.0,4.0,0.0,2.0,1.5,1967.3714943578254,0.0,680.0,0.0,0.0,20280.0,7,5,1,103.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2773.4824675464465,0.1365187651137071,0.1367594905101798,13520.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +8533,2,39.0,4,0.0,6,111,2,0,33,6.0,0.0,0.0,471.07541779394666,0.0,1019.1294386168964,23917.771191295742,0,31,2,5514,201708533,,,,418.0,1.0,0.0,3.0,1.0,2.0,1.3,1633.3681401505476,0.0,350.0,576.0,0.0,27690.0,0,1,3,60.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1490.2048564108431,0.06230533959423296,0.05381743793466389,21300.0,6,3,6,6_0,6_3,6_0_0 +8534,2,66.0,2,0.0,1,300,5,71,71,3.0,0.0,208.188947934516,1076.7438121004495,256.5516815962673,0.0,50199.91169350262,70,71,1,5515,201708534,,,35.0,,0.0,2.0,5.0,0.0,2.0,1.5,1347.5045128100899,0.0,800.0,0.0,0.0,20792.0,5,5,1,160.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1541.4844416312328,0.030706915403413894,0.07413834367214471,13861.333333333334,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8535,2,61.0,2,0.0,2,111,1,54,48,9.0,0.0,0.0,535.6800465199736,0.0,304.32337403143435,42459.58238259149,50,50,2,5516,201708535,,,,310.0,2.0,1.0,3.0,0.0,2.0,1.5,2227.7461873309135,0.0,398.0,172.0,0.0,53446.0,1,1,3,57.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,840.003420551408,0.01978360062476288,0.01571686226380661,35630.666666666664,9,5,9,9_0,9_3,9_0_1 +8536,2,49.0,3,0.0,9,111,2,0,43,4.0,0.0,0.0,888.3136449828709,0.0,1273.9117982711205,47560.55869898456,0,33,1,5518,201708536,,,270.0,,1.0,0.0,4.0,2.0,3.0,1.8,597.3210438457537,0.0,660.0,720.0,0.0,31441.0,0,1,3,87.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2162.225443253991,0.04546257450293904,0.06877088652568275,17467.222222222223,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +8537,2,63.0,5,0.0,1,300,1,0,47,2.0,0.0,1249.133687607096,753.7206684703146,0.0,0.0,12592.279999999999,0,31,1,5522,201708537,900.0,900.0,,,1.0,2.0,3.0,0.0,1.0,1.0,2543.786559198422,0.0,560.0,0.0,0.0,13460.0,0,4,5,95.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2002.8543560774106,0.1590541471502707,0.14880047221971845,13460.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8538,2,77.0,3,0.0,1,300,2,77,75,6.0,1269.1648073111057,0.0,942.1508355878933,106.15931652259337,0.0,26626.2,50,44,1,5523,201708538,,,270.0,,0.0,3.0,3.0,0.0,2.0,1.5,1680.021725775331,0.0,700.0,0.0,0.0,32075.0,5,5,1,60.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2317.4749594215928,0.08703739021796549,0.07225175243715021,21383.333333333332,6,3,6,6_1,6_0,6_1_0 +8539,2,69.0,3,0.0,6,111,4,75,74,7.0,0.0,0.0,1884.3016711757866,0.0,0.0,59696.78,42,60,2,5524,201708539,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2491.0220083835375,0.0,1400.0,0.0,0.0,38831.0,4,5,1,65.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1884.3016711757866,0.03156454453951765,0.048525705523313506,25887.333333333332,7,4,7,7_0,7_4,7_0_0 +8540,2,85.0,2,0.0,1,400,2,71,78,5.0,0.0,0.0,686.4241802140366,132.69914565324171,0.0,19930.911191295745,71,71,1,5526,201708540,,,190.0,,0.0,2.0,4.0,0.0,2.0,1.5,2651.8946924082074,0.0,510.0,0.0,0.0,25017.0,5,5,1,72.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,819.1233258672783,0.041098137360875246,0.03274266802043723,16678.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8541,2,72.0,3,0.0,8,120,2,78,74,7.0,0.0,0.0,644.7003574951442,0.0,1574.6965284184685,73504.58,70,70,1,5528,201708541,,,283.0,,0.0,2.0,5.0,0.0,2.0,1.5,1526.9176621679037,0.0,479.0,890.0,0.0,38145.0,5,5,1,102.0,0,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2219.3968859136126,0.030193994522703382,0.058183166493999544,25430.0,7,4,7,7_1,7_1,7_0_0 +8542,2,69.0,2,0.0,9,111,2,77,75,8.0,0.0,0.0,1422.8797002801614,0.0,2565.025350485712,47932.395756614496,71,50,1,5529,201708542,,,283.0,,0.0,0.0,6.0,0.0,2.0,1.5,2063.0245778844846,2434.8945553677513,50.0,22.0,0.0,43652.0,5,5,1,120.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3987.905050765873,0.08319853384786335,0.09135675457632807,29101.333333333332,8,4,8,8_1,8_3,8_0_0 +8543,2,33.0,4,0.0,9,112,2,54,47,6.0,0.0,0.0,215.3487624200899,0.0,0.0,45223.36238259149,31,50,1,553,201708543,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1951.4527524177759,0.0,160.0,0.0,0.0,46525.0,1,1,3,90.0,8,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,215.3487624200899,0.004761891886725065,0.004628667650082534,22154.761904761905,6,3,6,6_1,6_1,6_0_0 +8544,1,49.0,2,408.0,2,111,2,0,85,1.0,0.0,0.0,834.4764543778484,0.0,2590.2873231512785,34195.96584675131,0,41,1,5530,201708544,,,180.0,,0.0,0.0,5.0,2.0,3.0,2.0,879.7578081299076,0.0,620.0,1464.0,0.0,14138.0,0,6,3,110.0,6,4.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,3424.763777529127,0.10015110533438806,0.24223820749251146,7069.0,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +8545,2,64.0,1,0.0,6,400,4,56,72,7.0,0.0,0.0,1467.0634439868625,0.0,0.0,26813.440000000002,50,50,1,5532,201708545,,,281.0,,1.0,2.0,6.0,0.0,2.0,1.5,1637.8234894123636,0.0,1090.0,0.0,0.0,37247.0,4,5,1,160.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1467.0634439868625,0.05471373475342449,0.039387425671513474,24831.333333333332,7,4,7,7_1,7_0,7_0_0 +8546,2,47.0,3,0.0,7,112,4,67,62,9.0,0.0,555.170527825376,1615.1157181506744,60.15694602946958,0.0,21282.64,42,50,1,5533,201708546,,,412.0,,2.0,1.0,4.0,1.0,3.0,1.8,2069.665114733569,0.0,1200.0,0.0,0.0,55837.0,1,1,2,90.0,9,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2230.44319200552,0.10480105813966312,0.03994561298073893,31020.555555555555,8,4,8,8_1,8_1,8_0_0 +8547,2,38.0,3,0.0,1,111,2,46,54,4.0,0.0,0.0,1433.584367448839,0.0,2671.453749462891,42089.66,41,31,1,5535,201708547,,,510.0,,2.0,0.0,2.0,2.0,4.0,2.1,2895.849112350272,2575.0,0.0,0.0,0.0,35060.0,1,1,2,33.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4105.03811691173,0.09753079775203054,0.11708608433861181,16695.238095238095,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +8548,2,55.0,4,0.0,2,120,2,54,62,8.0,2538.3296146222115,0.0,740.261370819059,123.8525359430256,0.0,40352.79087530163,50,71,1,5537,201708548,,,350.0,,3.0,1.0,4.0,1.0,3.0,2.0,1942.9357149384834,0.0,550.0,0.0,0.0,52911.0,1,1,1,100.0,0,3.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3402.4435213842958,0.08431742755782472,0.06430503149409944,26455.5,7,4,7,7_1,7_1,7_0_1 +8549,1,47.0,4,133.0,1,111,2,64,52,2.0,0.0,0.0,1503.1758415968409,0.0,2801.1359703106045,43446.56,50,50,1,5538,201708549,,,1056.0,,2.0,1.0,5.0,4.0,6.0,3.3,1478.5724567296033,2700.0,0.0,0.0,0.0,37156.0,4,1,1,112.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,4304.311811907445,0.09907140661786447,0.11584432694335896,11259.39393939394,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +8550,2,64.0,3,0.0,3,400,6,0,78,4.0,3172.912018277764,693.9631597817199,982.5287285416603,530.7965826129669,0.0,35165.93294189901,0,70,1,5539,201708550,,,200.0,,0.0,0.0,3.0,0.0,3.0,2.0,3335.986807306858,0.0,730.0,0.0,0.0,34915.0,0,5,1,80.0,0,0.0,5,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5380.200489214111,0.1529946752188618,0.1540942428530463,17457.5,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +8551,2,39.0,4,0.0,7,112,2,0,68,8.0,0.0,0.0,672.964882562781,0.0,1362.3778953732817,12468.88,0,50,1,554,201708551,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1627.805091516795,0.0,500.0,770.0,0.0,27360.0,0,4,3,41.0,10,1.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2035.3427779360627,0.16323380912608532,0.07439118340409585,27360.0,8,4,8,8_1,8_1,8_0_0 +8552,1,42.0,4,314.0,4,111,1,0,68,2.0,0.0,0.0,538.3719060502248,0.0,0.0,19885.630875301627,0,71,8,5540,201708552,,,250.0,,1.0,1.0,3.0,3.0,4.0,1.9,870.3173514869621,0.0,400.0,0.0,0.0,20985.0,0,4,3,70.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,538.3719060502248,0.02707341343235401,0.02565508248988443,11044.736842105263,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8553,1,37.0,3,350.0,4,111,1,0,56,2.0,0.0,0.0,269.1859530251124,0.0,138.0071114793714,11923.0,0,31,2,5543,201708553,,,,,1.0,0.0,3.0,2.0,3.0,1.6,757.4954488722574,0.0,200.0,78.0,0.0,20853.0,0,1,3,60.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,407.1930645044838,0.034151896712612914,0.01952683376514093,13033.125,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8554,2,69.0,2,0.0,1,111,2,78,75,8.0,0.0,0.0,1133.272862235723,0.0,2381.507333990178,45939.72,70,41,1,5544,201708554,,,488.0,,0.0,0.0,5.0,0.0,2.0,1.5,1706.4393633770205,0.0,842.0,1346.0,0.0,42278.0,5,5,1,90.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3514.780196225901,0.07650852456710447,0.08313496845228963,28185.333333333332,8,4,8,8_1,8_2,8_1_0 +8555,1,41.0,4,341.0,4,111,1,0,56,2.0,0.0,0.0,767.1799661215703,0.0,0.0,11170.0,0,71,2,5545,201708555,,,,,1.0,1.0,3.0,2.0,3.0,1.6,937.2935125512785,0.0,570.0,0.0,0.0,19305.0,0,1,3,65.0,5,4.0,2,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,767.1799661215703,0.06868218138957657,0.03973996198505932,12065.625,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8556,2,61.0,1,0.0,0,120,5,78,68,3.0,0.0,0.0,1413.22625338184,148.62304313163074,0.0,25151.160315994115,71,71,0,5548,201708556,,,310.0,,1.0,9.0,,0.0,2.0,1.5,2092.249086186603,0.0,1050.0,0.0,0.0,18727.0,5,1,1,,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1561.8492965134708,0.062098498713010084,0.08340093429345175,12484.666666666666,2,1,2_0,2_0_0,2_0_0,2_0_1_0 +8557,2,51.0,2,0.0,1,112,4,0,37,8.0,0.0,0.0,2546.4991156175633,0.0,0.0,20141.48,0,20,1,5549,201708557,,,253.0,,1.0,0.0,4.0,0.0,1.0,1.0,3362.000073403177,0.0,1892.0,0.0,0.0,30613.0,0,1,2,120.0,9,3.0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2546.4991156175633,0.12643058581681005,0.0831835859150545,30613.0,8,4,8,8_1,8_1,8_1_0 +8558,2,71.0,4,0.0,4,111,2,77,78,4.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,38669.939999999995,71,70,1,5551,201708558,,,240.0,,0.0,0.0,5.0,0.0,2.0,1.5,1662.2890867834146,1800.0,0.0,0.0,0.0,24797.0,5,5,1,100.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2869.541207938297,0.0742059906981572,0.11572130531670351,16531.333333333332,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +8559,1,62.0,5,152.0,99,111,4,0,78,1.0,0.0,0.0,2040.429523930352,1.769321942043223,0.0,10974.390875301628,0,71,1,5553,201708559,,,383.0,,0.0,6.0,3.0,1.0,2.0,1.5,2244.1339652899837,0.0,1516.0,0.0,0.0,11304.0,0,5,3,80.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2042.1988458723952,0.1860876716600698,0.18066161056903707,7536.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +8560,2,43.0,3,0.0,4,221,1,56,48,9.0,0.0,0.0,969.0694308904046,0.0,0.0,29779.247000207863,44,71,2,5557,201708560,,,384.0,600.0,2.0,3.0,2.0,0.0,2.0,1.5,6527.788239542674,0.0,720.0,0.0,0.0,51032.0,1,1,3,64.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,969.0694308904046,0.03254177081387049,0.01898944644322003,34021.333333333336,9,5,9,9_0,9_1,9_0_1 +8561,2,51.0,3,0.0,8,111,5,46,62,6.0,0.0,138.792631956344,1090.2031097517051,0.0,0.0,40398.619999999995,70,70,1,5558,201708561,,,,,3.0,0.0,4.0,2.0,4.0,2.5,2449.4742336958066,0.0,810.0,0.0,0.0,54954.0,1,1,2,90.0,7,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1228.995741708049,0.030421725833903467,0.022364081626597684,21981.6,6,3,6,6_1,6_2,6_0_0 +8562,2,51.0,2,0.0,8,300,2,42,54,7.0,0.0,0.0,2099.6504335958766,53.079658261296686,0.0,63558.52,30,50,1,5559,201708562,,,370.0,,2.0,1.0,7.0,2.0,4.0,2.3,1707.0641837647934,0.0,1560.0,0.0,0.0,54849.0,1,1,1,130.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2152.730091857173,0.03387004750672566,0.03924830155257476,23847.391304347828,6,3,6,6_1,6_0,6_0_0 +8563,2,37.0,3,0.0,99,111,2,0,21,1.0,0.0,0.0,1211.3367886130059,0.0,0.0,34993.77466143878,0,50,2,556,201708563,,,,,1.0,0.0,2.0,2.0,3.0,1.6,1140.756351281037,0.0,900.0,0.0,0.0,10107.0,0,1,1,45.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1211.3367886130059,0.034615779530289784,0.11985127026941782,6316.875,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +8564,2,28.0,2,0.0,99,111,1,21,56,2.0,0.0,0.0,666.2352337371532,0.0,0.0,40989.64071093423,50,50,2,5560,201708564,,,,366.0,2.0,0.0,4.0,2.0,4.0,2.1,2497.7187626004347,0.0,495.0,0.0,0.0,26962.0,1,1,3,86.0,8,6.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,666.2352337371532,0.016253746609675233,0.024710156284294682,12839.047619047618,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +8565,2,59.0,2,0.0,5,112,2,54,48,9.0,0.0,0.0,926.4017038582012,0.0,1726.3297239247577,22264.92,50,50,1,5561,201708565,,,340.0,,2.0,0.0,5.0,0.0,2.0,1.5,1649.6498078217132,1664.0,0.0,0.0,0.0,49070.0,1,1,2,110.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2652.731427782959,0.11914399098595276,0.054060147295352745,32713.333333333332,9,5,9,9_1,9_1,9_0_0 +8566,2,40.0,2,0.0,9,300,2,85,53,4.0,0.0,0.0,822.3630864917184,0.0,930.6633415147353,40724.16,50,60,1,5563,201708566,,,,,1.0,0.0,5.0,3.0,5.0,2.6,2103.3012946337985,0.0,611.0,526.0,0.0,44612.0,6,1,2,108.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1753.0264280064537,0.04304634958723405,0.0392949526586222,17158.46153846154,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8567,1,63.0,4,340.0,2,111,1,0,56,1.0,0.0,0.0,655.4677956161487,0.0,1128.8273990235762,7903.28,0,60,2,5565,201708567,,,505.0,,2.0,4.0,4.0,2.0,3.0,2.0,686.596907462333,0.0,487.0,638.0,0.0,15445.0,0,4,3,74.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1784.2951946397247,0.22576641529083175,0.11552574908641791,7722.5,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8568,2,50.0,3,0.0,3,111,1,46,63,6.0,0.0,0.0,1418.6099724423423,0.0,796.1948739194503,50811.341922885105,71,71,2,5567,201708568,500.0,500.0,450.0,365.0,3.0,0.0,4.0,1.0,4.0,2.5,1747.0952959640476,0.0,1054.0,450.0,0.0,57782.0,1,1,3,85.0,6,5.0,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2214.8048463617924,0.043588788694522915,0.038330359737665576,23112.8,6,3,6,6_0,6_2,6_0_1 +8569,2,38.0,3,0.0,9,112,1,67,67,4.0,0.0,0.0,336.4824412813905,0.0,0.0,12253.971693502599,60,71,2,5568,201708569,,,300.0,415.0,2.0,0.0,3.0,0.0,2.0,1.5,704.8371521956277,0.0,250.0,0.0,0.0,26341.0,1,1,3,72.0,6,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,336.4824412813905,0.027459051619957875,0.012774095185505124,17560.666666666668,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +8570,2,45.0,3,0.0,1,211,2,0,52,6.0,0.0,0.0,479.1509963847001,0.0,2845.0696828055025,20316.999999999996,0,42,1,5569,201708570,,,270.0,,1.0,0.0,5.0,1.0,2.0,1.5,1933.9751366513403,0.0,356.0,1608.0,0.0,33137.0,0,1,3,97.0,1,2.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3324.2206791902026,0.16361769351726158,0.10031749039412749,22091.333333333332,6,3,6,6_1,6_1,6_1_0 +8571,2,42.0,5,0.0,7,111,2,0,22,1.0,0.0,0.0,471.07541779394666,0.0,990.8202875442048,20698.071191295745,0,60,2,557,201708571,,,280.0,,1.0,0.0,2.0,0.0,1.0,1.0,3208.140215213299,0.0,350.0,560.0,0.0,4100.0,0,1,1,90.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1461.8957053381514,0.07062956213779616,0.3565599281312564,4100.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +8572,1,36.0,5,355.0,99,111,1,0,54,2.0,0.0,0.0,488.572504740579,0.0,0.0,13460.119999999999,0,41,2,5570,201708572,,,,41.0,1.0,0.0,5.0,2.0,3.0,1.8,876.9925658820315,0.0,363.0,0.0,0.0,19513.0,0,4,3,82.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,488.572504740579,0.03629778224418349,0.025038308037748116,10840.555555555555,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8573,2,57.0,3,0.0,2,111,1,78,55,1.0,0.0,0.0,619.1276919577585,0.0,215.85727692927318,33977.30186457158,50,31,2,5571,201708573,,,,,1.0,1.0,3.0,1.0,3.0,2.0,3391.378987724738,0.0,460.0,122.0,0.0,22587.0,7,1,1,75.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,834.9849688870318,0.024574787374676083,0.036967502053704866,11293.5,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +8574,2,58.0,1,0.0,5,111,2,31,22,4.0,0.0,0.0,2885.6734164292047,0.0,4600.23704931238,117367.8,10,12,1,5572,201708574,,,707.0,,2.0,3.0,9.0,0.0,2.0,1.5,1784.1778632277246,0.0,2144.0,2600.0,0.0,51763.0,1,1,1,250.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,7485.910465741585,0.06378163743157479,0.14461894530343267,34508.666666666664,9,5,9,9_1,9_3,9_0_0 +8575,2,81.0,1,0.0,7,400,2,0,72,5.0,0.0,0.0,872.1624878013641,3184.779495677801,0.0,13526.4,0,70,1,5574,201708575,,,350.0,,0.0,0.0,4.0,0.0,1.0,1.0,4202.903105027899,0.0,648.0,0.0,0.0,19641.0,0,5,1,89.0,0,1.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4056.941983479165,0.29992769572681316,0.20655475706324347,19641.0,5,3,5,5_1,5_1,5_0_0 +8576,2,96.0,3,0.0,99,112,6,0,86,7.0,0.0,0.0,1497.8036373884643,0.0,1557.134234934733,13617.524771411074,0,60,2,5576,201708576,,,,,0.0,3.0,1.0,0.0,1.0,1.0,2015.7296945696135,1500.9133718909009,492.0,0.0,0.0,27820.0,0,5,3,33.0,8,3.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,3054.9378723231976,0.22433870498527017,0.10981085091025153,27820.0,8,4,8,8_0,8_1,8_0_0 +8577,2,63.0,1,0.0,5,112,2,74,34,10.0,0.0,0.0,1615.1157181506744,0.0,2477.050718860512,43392.91202733072,30,10,1,5577,201708577,,,,,1.0,3.0,4.0,0.0,2.0,1.5,3747.2829860810166,0.0,1200.0,1400.0,0.0,161980.0,5,1,1,96.0,8,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4092.1664370111866,0.09430495087386079,0.025263405587178583,107986.66666666667,10,5,10,10_1,10_0,10_0_0 +8578,2,64.0,3,0.0,1,111,4,0,75,7.0,0.0,0.0,1319.0111698230507,185.7788039145384,0.0,28884.95665845403,0,70,2,5578,201708578,,,160.0,390.0,0.0,0.0,3.0,0.0,1.0,1.0,3415.3734392647825,0.0,980.0,0.0,0.0,22535.0,0,5,3,64.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1504.7899737375892,0.05209597478475594,0.0667756811066159,22535.0,6,3,6,6_0,6_2,6_1_0 +8579,2,39.0,3,0.0,7,112,2,47,47,7.0,0.0,0.0,1415.9181129120911,141.54575536345783,0.0,61288.46,31,31,1,558,201708579,,,275.0,,2.0,0.0,5.0,2.0,4.0,2.1,2119.2237852791523,0.0,1052.0,0.0,0.0,52540.0,1,1,2,90.0,4,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1557.463868275549,0.025412024845714004,0.02964339300105727,25019.04761904762,7,4,7,7_1,7_0,7_0_0 +8580,2,67.0,2,0.0,99,111,6,86,22,10.0,0.0,0.0,139.97669557305844,0.0,150.39236507367394,38584.4258467513,41,60,1,5580,201708580,,,284.0,,1.0,2.0,4.0,0.0,2.0,1.5,2758.3722487988234,0.0,104.0,85.0,0.0,114260.0,6,1,1,130.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,290.36906064673235,0.007525550899733826,0.002541301073400423,76173.33333333333,10,5,10,10_1,10_3,10_0_0 +8581,2,55.0,3,0.0,6,112,1,0,34,4.0,0.0,0.0,605.6683943065029,0.0,0.0,47669.96175060327,0,30,2,5581,201708581,,,,,2.0,1.0,4.0,2.0,3.0,2.0,1593.5919670110782,0.0,450.0,0.0,0.0,37631.0,0,1,2,90.0,9,3.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,605.6683943065029,0.012705451652661294,0.01609493221829085,18815.5,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +8582,2,51.0,3,0.0,9,300,2,21,21,6.0,0.0,416.377895869032,1615.1157181506744,63.69558991355603,0.0,30082.739999999998,50,50,1,5582,201708582,,,400.0,,2.0,2.0,5.0,0.0,2.0,1.5,2077.1685020837085,0.0,1200.0,0.0,0.0,31098.0,1,1,2,200.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2095.1892039332624,0.06964755218219028,0.06737376049692143,20732.0,5,3,5,5_1,5_0,5_0_0 +8583,2,66.0,2,0.0,99,111,1,0,46,2.0,0.0,0.0,227.46213030621996,0.0,0.0,12787.68,0,60,2,5583,201708583,,,,730.0,1.0,1.0,2.0,0.0,1.0,1.0,3730.652725562704,0.0,169.0,0.0,0.0,12510.0,0,1,3,36.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,227.46213030621996,0.01778759949468707,0.01818242448490967,12510.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +8584,2,81.0,3,0.0,9,221,4,75,74,9.0,0.0,0.0,1951.598159432065,0.0,0.0,25224.879999999997,33,33,2,5584,201708584,,,,,0.0,0.0,4.0,0.0,2.0,1.5,4017.650299580426,0.0,1450.0,0.0,0.0,54672.0,5,5,1,100.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1951.598159432065,0.07736798587077778,0.03569648374729414,36448.0,9,5,9,9_0,9_1,9_0_0 +8585,2,67.0,2,0.0,3,111,1,78,78,2.0,0.0,0.0,269.1859530251124,109.69796040667983,1946.2541362475451,34483.45703804705,71,71,2,5586,201708585,1100.0,1100.0,,,0.0,0.0,3.0,0.0,2.0,1.5,1957.6784474503324,0.0,200.0,1100.0,0.0,17763.0,5,5,1,65.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2325.138049679337,0.06742763775435609,0.1308978241107548,11842.0,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +8586,2,68.0,2,0.0,5,111,4,52,75,8.0,0.0,0.0,2463.0514701797783,0.0,0.0,58598.90000000001,71,44,1,5587,201708586,,,450.0,,1.0,2.0,3.0,0.0,2.0,1.5,1565.5597286795792,0.0,1830.0,0.0,0.0,44534.0,5,5,2,85.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2463.0514701797783,0.04203238405805874,0.055307214042748874,29689.333333333332,8,4,8,8_1,8_4,8_0_0 +8587,2,50.0,4,0.0,1,111,2,55,23,9.0,0.0,0.0,1289.390833014179,0.0,2402.7521878664297,63329.0458467513,43,43,1,5588,201708587,,,580.0,,3.0,2.0,7.0,2.0,4.0,2.5,320.78659145748867,2316.0,0.0,0.0,0.0,104118.0,1,1,2,170.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3692.1430208806087,0.05830094187452551,0.03546114044526987,41647.2,10,5,10,10_1,10_2,10_1_0 +8588,2,83.0,2,0.0,5,221,4,86,74,6.0,0.0,0.0,2153.487624200899,0.0,0.0,26287.66784974977,71,50,1,5589,201708588,,,672.0,,0.0,4.0,6.0,0.0,2.0,1.5,1798.5809170040993,0.0,1600.0,0.0,0.0,31289.0,6,5,1,110.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2153.487624200899,0.08192007128625516,0.06882570948898652,20859.333333333332,5,3,5,5_1,5_1,5_0_0 +8589,2,82.0,2,0.0,4,111,2,0,86,2.0,1903.7472109666587,0.0,334.0390759104091,0.0,622.4746600690232,36353.380000000005,0,41,1,559,201708589,,,800.0,,0.0,2.0,6.0,0.0,1.0,1.0,3356.3709975110855,600.0,0.0,0.0,0.0,13495.0,0,5,1,200.0,8,6.0,1,9,1,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2860.2609469460913,0.07867936755663685,0.21194968113716867,13495.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +8590,2,84.0,3,0.0,1,111,2,77,75,7.0,0.0,0.0,434.7353141355565,0.0,1827.7095661306494,18513.59087530163,71,50,1,5590,201708590,,,600.0,,0.0,2.0,4.0,0.0,2.0,1.5,1761.4001835658805,0.0,323.0,1033.0,0.0,36195.0,5,5,1,70.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2262.444880266206,0.12220454127483496,0.06250711093427838,24130.0,7,4,7,7_1,7_4,7_1_0 +8591,1,26.0,2,271.0,99,111,1,0,84,1.0,0.0,0.0,807.5578590753372,0.0,0.0,10478.14,0,20,2,5591,201708591,,,,59.0,0.0,0.0,4.0,0.0,1.0,1.0,2893.600687820696,0.0,600.0,0.0,0.0,3270.0,0,3,3,80.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,807.5578590753372,0.07707072620477845,0.24695958993129577,3270.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8592,2,62.0,3,0.0,6,112,4,72,72,3.0,0.0,0.0,2323.07477460672,49.54101437721024,0.0,19739.620000000003,42,50,1,5592,201708592,,,121.0,,0.0,2.0,6.0,0.0,2.0,1.5,1762.4160831470758,0.0,1726.0,0.0,0.0,23437.0,6,5,1,160.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2372.61578898393,0.12019561617619437,0.10123376665033622,15624.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8593,2,63.0,2,0.0,8,221,4,0,77,7.0,0.0,0.0,1759.1302030191096,54.84898020333991,0.0,18655.18,0,50,1,5593,201708593,,,195.0,,0.0,2.0,5.0,0.0,1.0,1.0,2220.255555582396,0.0,1307.0,0.0,0.0,26821.0,0,5,1,90.0,1,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1813.9791832224494,0.09723729190618634,0.06763279457225492,26821.0,7,4,7,7_1,7_1,7_0_0 +8594,2,46.0,3,0.0,9,111,2,85,46,2.0,0.0,0.0,1076.7438121004495,0.0,1946.2541362475451,40121.19087530163,50,43,1,5594,201708594,,,600.0,,1.0,0.0,5.0,2.0,4.0,2.3,2253.5665945819583,0.0,800.0,1100.0,0.0,25979.0,7,1,2,117.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3022.9979483479947,0.07534666550012438,0.11636313747057218,11295.217391304348,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +8595,2,50.0,2,0.0,5,112,2,46,38,10.0,0.0,0.0,29.610454832762365,0.0,42.46372660903735,21751.0,50,31,1,5595,201708595,,,372.0,,2.0,0.0,7.0,0.0,2.0,1.5,1600.1642200918088,0.0,22.0,24.0,0.0,78427.0,1,1,1,120.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,72.07418144179971,0.003313603119019802,0.0009189970474683427,52284.666666666664,10,5,10,10_1,10_0,10_0_0 +8597,2,40.0,3,0.0,9,400,5,52,62,4.0,0.0,0.0,2240.9730589340606,63.69558991355603,0.0,73891.74629661658,50,31,1,5597,201708597,,,160.0,,2.0,0.0,5.0,3.0,5.0,2.4,1745.8512422212928,0.0,1665.0,0.0,0.0,39918.0,1,1,2,130.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2304.6686488476166,0.031189798108116236,0.057735073121088644,16632.5,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8598,2,51.0,3,0.0,1,112,2,52,64,7.0,0.0,0.0,819.6712269614673,61.9262679715128,0.0,13619.925642398895,50,60,1,5598,201708598,,,155.0,,2.0,1.0,4.0,0.0,2.0,1.5,1494.4097082694677,0.0,609.0,0.0,0.0,36188.0,1,1,2,100.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,881.59749493298,0.06472851013140356,0.024361597627196308,24125.333333333332,7,4,7,7_1,7_0,7_1_0 +8599,2,45.0,3,0.0,1,111,5,56,48,5.0,0.0,416.377895869032,1297.4762935810418,0.0,0.0,35642.7316935026,50,71,1,5599,201708599,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2131.3149516692347,0.0,964.0,0.0,0.0,39065.0,1,1,3,160.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1713.8541894500738,0.04808425471391398,0.04387185945091703,18602.38095238095,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +8600,2,53.0,2,0.0,8,112,2,85,38,9.0,0.0,0.0,1547.8192298943961,0.0,1208.4468864155212,52396.3791302626,20,12,1,560,201708600,,,849.0,,1.0,0.0,4.0,2.0,4.0,2.5,1909.2102615774347,0.0,1150.0,683.0,0.0,86310.0,6,1,1,150.0,9,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2756.2661163099174,0.05260413337833071,0.031934493295213966,34524.0,9,5,9,9_1,9_1,9_0_0 +8601,2,57.0,2,0.0,1,112,4,37,34,7.0,0.0,208.188947934516,3242.3448041874785,33.61711689882124,0.0,32690.700315994116,20,31,1,5600,201708601,,,593.0,,3.0,1.0,5.0,1.0,3.0,2.0,1966.8651830463236,0.0,2409.0,0.0,0.0,52393.0,4,1,2,200.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3484.1508690208157,0.10657926674382606,0.06650031242762994,26196.5,7,4,7,7_1,7_0,7_1_0 +8602,2,63.0,1,0.0,4,111,1,75,75,8.0,0.0,0.0,438.7731034309332,0.0,0.0,38438.72,41,50,8,5601,201708602,,,,,0.0,0.0,3.0,0.0,2.0,1.5,3118.8608365577466,0.0,326.0,0.0,0.0,47507.0,5,5,2,88.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,438.7731034309332,0.011414872905001342,0.00923596740334968,31671.333333333332,8,4,8,8_0,8_3,8_0_1 +8603,1,67.0,3,134.0,1,111,2,78,78,1.0,0.0,0.0,66.80781518208181,0.0,124.49493201380464,12162.900000000001,70,50,1,5602,201708603,,,28.0,,0.0,2.0,4.0,0.0,2.0,1.5,1576.270690831279,120.0,0.0,0.0,0.0,15048.0,5,5,3,80.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,191.30274719588647,0.015728382803105054,0.012712835406425205,10032.0,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +8604,2,38.0,3,0.0,9,111,2,0,46,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,21684.800000000003,0,12,2,5603,201708604,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2942.4907741723437,0.0,1200.0,0.0,0.0,24553.0,0,1,2,67.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1615.1157181506744,0.0744814671175512,0.06578078923759517,24553.0,7,4,7,7_0,7_3,7_0_0 +8605,2,61.0,1,0.0,5,111,1,0,37,10.0,0.0,0.0,672.964882562781,0.0,0.0,38693.39087530163,0,12,2,5604,201708605,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3463.014372091493,0.0,500.0,0.0,0.0,51834.0,0,1,1,91.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,672.964882562781,0.01739224367105911,0.012983078337824227,51834.0,10,5,10,10_0,10_4,10_0_0 +8606,1,58.0,3,126.0,1,400,2,0,75,1.0,0.0,0.0,1278.633276869284,0.0,0.0,16566.019999999997,0,44,2,5606,201708606,,,132.0,,0.0,0.0,2.0,0.0,1.0,1.0,2333.662523810968,0.0,950.0,0.0,0.0,7297.0,0,7,3,52.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1278.633276869284,0.07718409593066314,0.17522725460727476,7297.0,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +8607,2,40.0,3,0.0,9,211,2,0,65,3.0,0.0,0.0,904.4648021643776,0.0,0.0,23649.951191295746,0,50,2,5607,201708607,,,,308.0,1.0,0.0,3.0,1.0,2.0,1.3,2714.454340316393,0.0,672.0,0.0,0.0,18133.0,0,1,3,70.0,3,4.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,904.4648021643776,0.03824383377574418,0.04987949055117066,13948.461538461537,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +8608,2,25.0,3,0.0,99,111,1,0,46,4.0,0.0,0.0,484.5347154452023,0.0,530.7965826129669,34631.36175060326,0,30,8,561,201708608,,,,,2.0,0.0,3.0,3.0,4.0,2.5,809.21287648076,0.0,360.0,300.0,0.0,43635.0,0,1,3,47.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1015.3312980581692,0.029318260869152298,0.023268736061834976,17454.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +8609,1,59.0,4,464.0,2,111,2,85,68,2.0,0.0,0.0,2004.2344554624544,0.0,3734.8479604141394,20557.960000000003,71,41,2,5610,201708609,,,,90.0,3.0,0.0,4.0,7.0,9.0,4.4,2468.258633805904,3600.0,0.0,0.0,0.0,55758.0,6,1,3,85.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,5739.082415876594,0.27916594914459375,0.10292841235117102,12672.272727272726,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +8610,1,36.0,3,267.0,4,111,1,0,54,6.0,0.0,0.0,80.75578590753372,53.079658261296686,0.0,38638.659999999996,0,41,2,5612,201708610,,,,558.0,1.0,0.0,4.0,2.0,3.0,1.6,663.1776987787016,0.0,60.0,0.0,0.0,33477.0,0,1,3,67.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,133.8354441688304,0.0034637703318083604,0.003997832666273274,20923.125,5,3,5,5_0,5_2,5_0_1 +8611,1,53.0,5,236.0,1,400,6,0,52,2.0,2474.871374256656,0.0,847.935752029104,185.7788039145384,0.0,24680.28,0,71,1,5615,201708611,,,213.0,364.0,1.0,1.0,7.0,1.0,2.0,1.3,770.0540641016435,0.0,630.0,0.0,0.0,16532.0,0,4,3,220.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3508.5859302002987,0.1421615123572463,0.2122299740019537,12716.923076923076,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +8612,2,83.0,1,0.0,1,211,2,77,72,9.0,1340.5553277223555,0.0,1577.9543933120653,164.54694061001973,1234.968531155133,17392.577749122975,70,70,1,5616,201708612,,,254.0,,0.0,2.0,9.0,0.0,2.0,1.5,1756.0054411908839,1190.3795708100247,680.0,0.0,0.0,49097.0,5,5,5,160.0,2,2.0,3,7,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4318.025192799574,0.24826827024058074,0.08794886027251307,32731.333333333332,9,5,9,9_1,9_1,9_1_0 +8613,2,79.0,2,0.0,1,111,2,0,74,10.0,0.0,0.0,1358.425575368997,0.0,2531.396950947361,23323.64,0,12,1,5619,201708613,,,714.0,,0.0,1.0,6.0,0.0,1.0,1.0,2932.562756323291,2440.0,0.0,0.0,0.0,56650.0,0,5,1,105.0,6,4.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3889.8225263163577,0.16677596319941304,0.06866412226507251,56650.0,10,5,10,10_1,10_2,10_1_0 +8614,2,84.0,2,0.0,3,111,1,0,,4.0,0.0,0.0,771.2177554169469,0.0,0.0,50014.520000000004,0,71,8,562,201708614,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3110.870270140472,0.0,573.0,0.0,0.0,19610.0,0,8,1,110.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,771.2177554169469,0.015419877176007025,0.03932777947052254,19610.0,5,3,5,5_0,5_3,5_0_1 +8615,2,46.0,4,0.0,8,112,2,56,64,2.0,0.0,0.0,1261.1361899226515,0.0,1756.9366884489204,32561.110875301634,71,50,1,5620,201708615,,,686.0,,2.0,1.0,6.0,2.0,4.0,2.3,1679.4203435531729,0.0,937.0,993.0,0.0,26186.0,1,1,2,120.0,8,2.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3018.072878371572,0.09268949360879611,0.11525520806429283,11385.217391304348,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +8616,2,39.0,1,0.0,8,112,2,38,37,9.0,0.0,416.377895869032,947.5345546483957,1.769321942043223,0.0,42695.439999999995,31,30,1,5622,201708616,,,535.0,,2.0,0.0,5.0,2.0,4.0,2.1,3163.0834691859122,0.0,704.0,0.0,0.0,78296.0,1,1,2,135.0,9,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1365.681772459471,0.0319865955816235,0.017442548437461312,37283.80952380952,9,5,9,9_1,9_1,9_0_0 +8617,2,54.0,3,0.0,5,112,5,54,37,10.0,0.0,721.7216861729887,1232.8716648550148,44.23304855108057,0.0,31560.190000000002,31,31,1,5623,201708617,,,229.0,,2.0,2.0,5.0,0.0,2.0,1.5,1479.864592116165,0.0,916.0,0.0,0.0,66697.0,1,1,2,90.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1998.8263995790842,0.06333378853483088,0.02996876020779172,44464.666666666664,10,5,10,10_1,10_1,10_0_0 +8618,1,36.0,3,23.0,3,111,2,85,65,5.0,0.0,0.0,349.9417389326461,0.0,1061.5931652259337,22212.032143367873,71,50,1,5624,201708618,,,420.0,,1.0,0.0,4.0,0.0,2.0,1.5,2257.119264829007,0.0,260.0,600.0,0.0,29198.0,7,1,3,75.0,5,4.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1411.5349041585798,0.06354821094476219,0.04834354764568052,19465.333333333332,5,3,5,5_1,5_2,5_0_1 +8619,1,27.0,1,329.0,99,111,2,34,43,9.0,0.0,0.0,437.42717366580763,0.0,861.6597857750495,43071.74,41,30,2,5625,201708619,,,,285.0,2.0,0.0,3.0,0.0,2.0,1.5,3534.996266495522,0.0,325.0,487.0,0.0,54130.0,1,1,3,60.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1299.086959440857,0.030161004859354582,0.02399938960725766,36086.666666666664,9,5,9,9_0,9_3,9_0_0 +8620,2,54.0,3,0.0,5,111,1,0,45,6.0,0.0,0.0,417.2382271889242,0.0,176.9321942043223,42863.46,0,31,2,5627,201708620,,,,658.0,2.0,1.0,4.0,2.0,3.0,2.0,3207.16698633395,0.0,310.0,100.0,0.0,48036.0,0,1,3,90.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,594.1704213932464,0.013861933250214668,0.012369273490574702,24018.0,7,4,7,7_0,7_4,7_0_0 +8621,2,36.0,3,0.0,1,120,5,67,22,2.0,85.66862449349964,1199.1683401028122,551.164475252175,0.0,1027.0831891138882,27339.64,41,71,1,5628,201708621,,,,,3.0,0.0,6.0,2.0,4.0,2.3,1962.883344619671,990.0,0.0,0.0,0.0,28355.0,4,1,2,116.0,0,1.0,4,3,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2863.084628962375,0.10472283574188888,0.10097283121009963,12328.260869565218,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +8622,2,74.0,3,0.0,3,111,2,75,75,9.0,0.0,0.0,1238.9304114662002,0.0,3485.9959183159963,38958.29078238421,60,60,1,563,201708622,,,148.0,,0.0,2.0,5.0,0.0,2.0,1.5,1415.0974517945428,1451.7455200530953,320.0,1119.0,0.0,47908.0,5,5,1,90.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4724.926329782196,0.12128166392553003,0.09862499644698582,31938.666666666668,9,5,9,9_1,9_3,9_0_1 +8623,2,48.0,3,0.0,7,111,2,85,65,3.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,15047.699999999999,30,60,1,5630,201708623,,,,500.0,1.0,0.0,2.0,2.0,4.0,2.1,2031.7907011423597,1400.0,0.0,0.0,0.0,31450.0,6,1,3,50.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2231.8653839520084,0.14831937000019993,0.07096551300324351,14976.190476190475,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +8624,1,16.0,2,100.0,99,300,4,0,56,1.0,0.0,0.0,879.6362332307439,0.0,1639.1832715150945,8375.48,0,60,8,5631,201708624,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3432.067174008876,1580.0,0.0,0.0,0.0,8465.0,0,2,3,30.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,2518.8195047458385,0.3007373314419996,0.2975569409032296,8465.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +8625,2,77.0,3,0.0,4,111,1,0,77,4.0,0.0,0.0,586.825377594745,0.0,0.0,10296.0,0,70,2,5632,201708625,,,,275.0,0.0,5.0,4.0,0.0,1.0,1.0,4407.045263545482,0.0,436.0,0.0,0.0,16400.0,0,5,3,63.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,586.825377594745,0.0569954717943614,0.035782035219191766,16400.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +8626,2,53.0,3,0.0,5,112,5,52,67,5.0,0.0,693.9631597817199,363.4010365839017,221.16524275540286,0.0,15839.939999999999,50,70,1,5633,201708626,,,180.0,,2.0,1.0,6.0,0.0,2.0,1.5,2753.8359945475713,0.0,270.0,0.0,0.0,28097.0,1,1,2,116.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1278.5294391210246,0.08071554810946409,0.04550412638790705,18731.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8627,0,54.0,1,0.0,7,111,2,37,23,10.0,0.0,0.0,1577.4296847271587,0.0,0.0,152773.38,30,30,2,5634,201708627,,,,,2.0,2.0,2.0,0.0,2.0,1.5,3544.186954903959,0.0,1172.0,0.0,0.0,96915.0,1,1,5,50.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1577.4296847271587,0.010325291518241977,0.016276424544468437,64610.0,10,5,10,10_0,10_4,10_0_0 +8628,2,73.0,3,0.0,99,400,5,0,71,1.0,0.0,138.792631956344,344.86053486411004,0.0,161.08285188979997,13268.892471403988,0,71,1,5636,201708628,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2168.968567616824,155.266900540438,192.0,0.0,0.0,7360.0,0,5,1,63.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,644.736018710254,0.04859004020868625,0.08760000254215408,7360.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8629,2,34.0,2,0.0,1,112,2,35,21,9.0,2855.620816449988,0.0,1502.057617880127,0.0,0.0,71579.70000000001,43,44,1,5637,201708629,,,,,2.0,0.0,7.0,1.0,3.0,1.8,2009.0851724075767,0.0,1116.0,0.0,0.0,62970.0,1,1,2,200.0,7,1.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4357.678434330115,0.060878690946317385,0.06920245250643346,34983.333333333336,9,5,9,9_1,9_1,9_1_0 +8630,2,70.0,2,0.0,2,111,2,56,77,4.0,0.0,0.0,703.9212671606689,0.0,1330.5301004165037,21228.319999999996,70,50,1,5638,201708630,,,276.0,,1.0,2.0,4.0,0.0,2.0,1.5,1706.6090763962638,0.0,523.0,752.0,0.0,27466.0,1,5,1,84.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2034.4513675771727,0.09583666383289742,0.07407162919890675,18310.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +8631,2,89.0,4,0.0,2,111,1,0,86,1.0,0.0,0.0,1117.1217050542164,0.0,0.0,12002.0,0,70,2,5639,201708631,,,,,0.0,3.0,4.0,1.0,2.0,1.5,2346.066977930811,0.0,830.0,0.0,0.0,13557.0,0,5,1,80.0,8,6.0,2,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1117.1217050542164,0.09307796242744679,0.08240183706234538,9038.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +8632,2,71.0,2,0.0,9,111,4,75,75,8.0,0.0,0.0,1485.9064606986203,0.0,0.0,57396.2,50,60,1,564,201708632,,,150.0,,0.0,3.0,3.0,0.0,2.0,1.5,1641.7807188409768,0.0,1104.0,0.0,0.0,44079.0,5,5,1,65.0,6,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1485.9064606986203,0.025888586016123375,0.033710076469489335,29386.0,8,4,8,8_1,8_2,8_0_0 +8633,2,41.0,4,0.0,9,300,2,62,62,6.0,0.0,0.0,2543.807256087312,0.0,0.0,51100.46,42,43,1,5640,201708633,,,670.0,,2.0,0.0,4.0,1.0,3.0,1.8,2051.486678741168,0.0,1890.0,0.0,0.0,40870.0,1,4,2,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2543.807256087312,0.04978051579354299,0.06224143029330345,22705.555555555555,6,3,6,6_1,6_0,6_0_0 +8634,1,31.0,4,306.0,99,120,2,85,63,2.0,0.0,0.0,2341.9177913184776,0.0,0.0,27228.189830358504,50,50,2,5642,201708634,,,,,1.0,0.0,4.0,3.0,5.0,2.4,2240.867024351876,0.0,1740.0,0.0,0.0,28592.0,6,1,3,87.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,2341.9177913184776,0.08601077801754266,0.08190814882898985,11913.333333333334,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +8635,2,73.0,3,0.0,4,111,1,86,78,4.0,0.0,0.0,565.290501352736,0.0,345.01777869842846,13386.776722052928,71,71,2,5644,201708635,,,,356.0,0.0,5.0,3.0,0.0,2.0,1.5,2674.1791538676202,0.0,420.0,195.0,0.0,25200.0,6,5,3,74.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,910.3082800511645,0.06800055748681855,0.03612334444647478,16800.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +8636,2,81.0,3,0.0,3,112,6,0,75,10.0,2062.392811880547,0.0,584.1335180644938,185.7788039145384,0.0,37963.54,0,50,1,5646,201708636,,,328.0,,0.0,3.0,5.0,0.0,1.0,1.0,3012.8773239565835,0.0,434.0,0.0,0.0,40199.0,0,5,1,140.0,7,4.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2832.305133859579,0.07460592805253617,0.07045710425283164,40199.0,9,5,9,9_1,9_2,9_0_1 +8637,2,41.0,2,0.0,5,112,4,64,64,8.0,0.0,0.0,3095.6384597887923,0.0,0.0,39495.48269899829,50,43,1,5648,201708637,,,300.0,,2.0,1.0,5.0,1.0,3.0,1.8,2310.7098093186287,0.0,2300.0,0.0,0.0,48696.0,1,1,2,120.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3095.6384597887923,0.0783795575656379,0.06357069286571365,27053.333333333332,7,4,7,7_1,7_0,7_0_0 +8638,2,32.0,3,0.0,5,111,1,0,23,1.0,0.0,0.0,288.3870688693199,0.0,537.4031231929233,63378.380000000005,0,41,2,5649,201708638,,,,580.0,1.0,0.0,3.0,2.0,3.0,1.6,1318.2051004420607,518.0,0.0,0.0,0.0,9397.0,0,1,3,50.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,825.7901920622432,0.013029525085088057,0.08787806662362917,5873.125,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +8639,2,42.0,4,0.0,9,300,5,52,46,6.0,0.0,138.792631956344,901.7729426341265,116.7752481748527,0.0,52714.36,42,31,1,565,201708639,,,140.0,,2.0,0.0,4.0,1.0,3.0,1.8,2120.921761339565,0.0,670.0,0.0,0.0,37147.0,1,1,2,98.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1157.3408227653233,0.021954944018391258,0.031155700938577092,20637.222222222223,5,3,5,5_1,5_0,5_0_0 +8640,1,82.0,3,18.0,3,400,4,0,86,3.0,0.0,0.0,1173.65075518949,0.0,0.0,5919.78,0,71,2,5650,201708640,,,,135.0,0.0,4.0,3.0,0.0,1.0,1.0,2432.2346220853833,0.0,872.0,0.0,0.0,13727.0,0,5,3,80.0,0,1.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1173.65075518949,0.19825918449494576,0.08549943579729656,13727.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +8641,2,60.0,2,0.0,6,112,4,74,52,9.0,0.0,0.0,1211.3367886130059,0.0,0.0,23507.36,30,50,1,5651,201708641,,,,,1.0,1.0,5.0,0.0,2.0,1.5,2183.6164773871988,0.0,900.0,0.0,0.0,57074.0,5,1,1,130.0,10,2.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1211.3367886130059,0.05153010753283252,0.021223968682990608,38049.333333333336,9,5,9,9_1,9_1,9_0_0 +8642,1,25.0,3,177.0,9,111,4,0,84,2.0,0.0,0.0,823.7090162568439,0.0,0.0,11547.099999999999,0,20,2,5654,201708642,,,,273.0,0.0,0.0,2.0,0.0,1.0,1.0,2968.7389715713493,0.0,612.0,0.0,0.0,13252.0,0,3,3,34.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,823.7090162568439,0.07133470882358722,0.0621573359686722,13252.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8643,2,32.0,2,0.0,99,111,2,0,67,7.0,0.0,0.0,562.8558429090392,0.0,1048.8698022163042,23914.297171918202,0,42,2,5657,201708643,,,,519.0,1.0,0.0,3.0,0.0,1.0,1.0,2728.1146044955435,1011.0,0.0,0.0,0.0,25825.0,0,1,3,60.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1611.7256451253434,0.06739590269112912,0.06240951191192036,25825.0,7,4,7,7_0,7_3,7_0_0 +8644,2,68.0,1,0.0,1,300,2,75,75,8.0,709.1458360850803,721.7216861729887,1444.182637979728,93.77406292829082,0.0,48789.17087530163,33,33,1,5658,201708644,,,263.0,,0.0,1.0,7.0,0.0,2.0,1.5,1562.6827394518345,0.0,1073.0,0.0,0.0,44220.0,5,5,1,250.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2968.824223166088,0.06085006508419649,0.06713758984997938,29480.0,8,4,8,8_1,8_0,8_1_0 +8645,2,30.0,2,0.0,4,211,2,0,46,10.0,0.0,832.755791738064,1320.445987194094,61.9262679715128,52.835976951694015,28540.28,0,31,1,5659,201708645,,,600.0,,1.0,0.0,6.0,0.0,1.0,1.0,3716.8889138187046,50.928315969522636,960.0,0.0,0.0,50985.0,0,1,3,160.0,4,4.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2267.964023855365,0.07946537398565695,0.044482966046001084,50985.0,10,5,10,10_1,10_2,10_0_1 +8646,2,61.0,3,0.0,9,111,2,46,33,10.0,0.0,0.0,1281.325136399535,0.0,1238.525359430256,38221.33530279089,31,20,1,566,201708646,,,400.0,,2.0,3.0,6.0,0.0,2.0,1.5,1368.8930699378125,0.0,952.0,700.0,0.0,85490.0,1,1,1,180.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2519.850495829791,0.06592785092062949,0.029475383036960942,56993.333333333336,10,5,10,10_1,10_2,10_0_0 +8647,2,58.0,1,0.0,6,400,4,62,62,8.0,0.0,346.98157989085996,2130.6068181937644,0.0,0.0,39254.54,71,50,1,5660,201708647,,,317.0,,2.0,3.0,5.0,0.0,2.0,1.5,1580.2666261888962,0.0,1583.0,0.0,0.0,45170.0,1,1,1,110.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2477.5883980846243,0.06311597074082703,0.054850307683963345,30113.333333333332,8,4,8,8_1,8_1,8_0_0 +8648,2,66.0,1,0.0,6,111,2,75,74,10.0,0.0,249.82673752141918,2422.6735772260117,247.7050718860512,0.0,47536.75169350261,50,50,1,5661,201708648,,,400.0,,0.0,2.0,5.0,0.0,2.0,1.5,2828.267911498967,0.0,1800.0,0.0,0.0,64098.0,5,5,1,120.0,6,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2920.205386633482,0.06143047815849436,0.045558447792965175,42732.0,10,5,10,10_1,10_2,10_0_0 +8649,2,71.0,2,0.0,9,111,4,0,75,7.0,0.0,0.0,1036.3659191466827,0.0,0.0,29713.559032086803,0,50,2,5662,201708649,,,258.0,,0.0,2.0,4.0,0.0,1.0,1.0,2363.922727562842,0.0,770.0,0.0,0.0,25947.0,0,5,1,87.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1036.3659191466827,0.034878552179748695,0.03994164717102874,25947.0,7,4,7,7_0,7_3,7_0_0 +8650,1,22.0,2,379.0,8,111,4,85,63,5.0,0.0,0.0,1292.0925745205395,0.0,0.0,32633.325204509292,60,43,2,5663,201708650,,,,181.0,1.0,0.0,3.0,3.0,5.0,2.4,2728.4852871414682,0.0,960.0,0.0,0.0,48088.0,6,1,3,57.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1292.0925745205395,0.03959426648749841,0.026869334855276567,20036.666666666668,5,3,5,5_0,5_3,5_0_0 +8651,2,31.0,2,0.0,8,112,6,43,38,8.0,0.0,0.0,565.290501352736,0.0,1698.549064361494,31944.32,33,12,2,5665,201708651,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2102.1496314725823,0.0,420.0,960.0,0.0,54217.0,1,1,2,98.0,9,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2263.83956571423,0.0708682972658122,0.04175516103277994,30120.555555555555,8,4,8,8_0,8_1,8_0_0 +8652,2,39.0,3,0.0,9,111,2,47,38,10.0,0.0,0.0,2843.9495937103125,0.0,0.0,73143.29999999999,20,31,1,5666,201708652,,,1440.0,,2.0,0.0,4.0,2.0,4.0,2.1,2883.442793115675,0.0,2113.0,0.0,0.0,86772.0,1,1,2,87.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2843.9495937103125,0.03888188793382733,0.03277496881148657,41320.0,10,5,10,10_1,10_4,10_0_0 +8653,2,60.0,3,0.0,7,111,2,0,34,9.0,0.0,0.0,215.3487624200899,0.0,424.6372660903735,35589.5,0,31,1,5668,201708653,,,56.0,,1.0,2.0,4.0,0.0,1.0,1.0,1743.2349469927424,0.0,160.0,240.0,0.0,35290.0,0,1,3,103.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,639.9860285104634,0.017982439441702282,0.018135053230673374,35290.0,9,5,9,9_1,9_3,9_0_0 +8654,2,55.0,2,0.0,6,112,5,64,45,10.0,0.0,138.792631956344,1096.932758577333,61.9262679715128,0.0,17018.03703804705,50,31,1,567,201708654,,,215.0,,3.0,2.0,4.0,1.0,3.0,2.0,4018.118084118872,0.0,815.0,0.0,0.0,92974.0,1,1,1,100.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1297.6516585051897,0.07625154743781809,0.013957145637545871,46487.0,10,5,10,10_1,10_1,10_0_0 +8655,2,43.0,3,0.0,9,111,5,43,43,5.0,0.0,346.98157989085996,1144.0403003567276,0.0,0.0,37127.146811688996,50,43,1,5670,201708655,,,240.0,,2.0,0.0,4.0,2.0,4.0,2.3,2089.1893366742897,0.0,850.0,0.0,0.0,43612.0,1,1,2,120.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1491.0218802475874,0.04015988321995588,0.03418833991212482,18961.739130434784,5,3,5,5_1,5_2,5_0_0 +8656,1,36.0,3,149.0,99,111,1,0,52,5.0,0.0,0.0,794.0985614240816,0.0,0.0,23879.539999999997,0,50,2,5671,201708656,,,,221.0,1.0,0.0,4.0,3.0,4.0,1.9,594.3694707462689,0.0,590.0,0.0,0.0,37205.0,0,1,3,70.0,8,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,794.0985614240816,0.033254349180264015,0.021343866722862023,19581.578947368424,5,3,5,5_0,5_2,5_0_0 +8657,2,31.0,1,0.0,1,111,1,0,37,6.0,0.0,0.0,646.0462872602698,0.0,0.0,29432.56,0,12,2,5673,201708657,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4255.860466970011,0.0,480.0,0.0,0.0,20872.0,0,4,1,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,646.0462872602698,0.02195005420052723,0.03095277344098648,20872.0,5,3,5,5_0,5_4,5_1_0 +8658,1,53.0,3,350.0,9,111,4,0,42,1.0,0.0,0.0,1938.1388617808093,0.0,0.0,15377.557856248015,0,30,1,5674,201708658,,,480.0,,3.0,0.0,3.0,2.0,3.0,2.0,2471.861356136586,0.0,1440.0,0.0,0.0,19393.0,0,1,3,70.0,4,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1938.1388617808093,0.12603684407490812,0.09994012591042177,9696.5,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +8659,2,48.0,3,0.0,2,111,2,0,68,9.0,0.0,0.0,1100.9705478727096,0.0,2176.265988713164,43741.191191295744,0,71,1,5675,201708659,,,488.0,,2.0,0.0,4.0,2.0,3.0,1.8,895.9948374020844,0.0,818.0,1230.0,0.0,61177.0,0,1,2,120.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3277.2365365858736,0.0749233490750939,0.05356974903290246,33987.22222222222,9,5,9,9_1,9_4,9_0_1 +8660,1,25.0,3,132.0,99,111,4,55,52,4.0,0.0,0.0,632.5869896090142,0.0,0.0,10650.730875301628,50,43,8,5676,201708660,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2535.043980570599,0.0,470.0,0.0,0.0,25599.0,4,1,3,38.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,632.5869896090142,0.05939376339664571,0.024711394570452523,17066.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +8661,2,69.0,3,0.0,1,111,2,0,72,5.0,0.0,0.0,511.45331074771354,0.0,1236.7560374882128,14586.019999999999,0,44,2,5677,201708661,,,,640.0,0.0,2.0,4.0,0.0,1.0,1.0,2403.0338225868777,0.0,380.0,699.0,0.0,21159.0,0,5,3,90.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1748.2093482359264,0.11985513171077009,0.08262249389082311,21159.0,5,3,5,5_0,5_3,5_1_0 +8662,2,70.0,3,0.0,5,111,2,75,75,7.0,0.0,0.0,1561.278527545652,0.0,1564.080596766209,30597.48,44,42,1,5678,201708662,,,1400.0,,0.0,3.0,5.0,0.0,2.0,1.5,2313.3277671236365,0.0,1160.0,884.0,0.0,38310.0,5,5,1,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3125.359124311861,0.10214433098123966,0.0815807654479734,25540.0,7,4,7,7_1,7_4,7_0_0 +8663,2,71.0,2,0.0,4,111,1,77,75,7.0,0.0,0.0,627.2032705485119,0.0,0.0,48185.324177580944,41,31,2,5679,201708663,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2043.059732522365,0.0,466.0,0.0,0.0,39823.0,5,5,1,120.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,627.2032705485119,0.01301647921340185,0.015749774515945857,26548.666666666668,7,4,7,7_0,7_2,7_0_1 +8664,2,60.0,4,0.0,1,300,2,13,13,1.0,0.0,416.377895869032,1164.0436083055213,350.32574452455816,742.0550043723453,44902.350143168675,71,71,1,5680,201708664,,,,,2.0,5.0,10.0,0.0,2.0,1.5,1865.7238957883521,715.2628551562844,569.0,0.0,0.0,12911.0,1,1,3,120.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2672.8022530714566,0.059524774194432445,0.20701744660146051,8607.333333333334,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8665,1,88.0,2,144.0,5,211,2,0,78,2.0,0.0,0.0,301.4882673881259,0.0,2047.1054869440088,10194.720000000001,0,70,2,5681,201708665,,,,158.0,0.0,4.0,3.0,0.0,1.0,1.0,2218.7118725036785,0.0,224.0,1157.0,0.0,13318.0,0,5,3,64.0,3,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2348.5937543321347,0.23037354182676273,0.17634733100556652,13318.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8666,1,46.0,4,248.0,3,111,1,33,34,3.0,0.0,0.0,180.38110099162088,0.0,336.1363164372725,10042.539999999999,20,20,2,5682,201708666,,,,,2.0,0.0,3.0,1.0,3.0,1.8,1229.1640342132628,324.0,0.0,0.0,0.0,24436.0,1,1,3,60.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,516.5174174288934,0.05143294599064514,0.021137560051927212,13575.555555555555,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +8667,1,33.0,3,30.0,99,111,2,0,43,4.0,0.0,0.0,929.7420946173053,0.0,1732.5544705254479,22872.239999999998,0,30,1,5683,201708667,,,,640.0,1.0,0.0,3.0,1.0,2.0,1.3,1381.9490078470742,1670.0,0.0,0.0,0.0,23160.0,0,1,3,85.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2662.296565142753,0.11639859345401908,0.11495235600789089,17815.384615384613,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +8668,2,44.0,3,0.0,1,111,1,0,35,8.0,0.0,0.0,969.0694308904046,0.0,0.0,34500.94,0,20,2,5684,201708668,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4275.517755671606,0.0,720.0,0.0,0.0,32996.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,969.0694308904046,0.028088203709533844,0.0293693002451935,32996.0,9,5,9,9_0,9_4,9_1_0 +8669,2,40.0,3,0.0,9,112,5,63,48,5.0,0.0,0.0,2135.9905372542667,176.9321942043223,0.0,40167.380000000005,42,50,1,5685,201708669,,,372.0,,2.0,0.0,5.0,3.0,5.0,2.6,2579.780358249101,0.0,1587.0,0.0,0.0,49705.0,1,1,2,130.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2312.9227314585887,0.05758211592238748,0.0465329993251904,19117.30769230769,5,3,5,5_1,5_0,5_0_0 +8670,2,61.0,2,0.0,5,112,2,52,74,9.0,0.0,166.55115834761278,2285.3887411832043,134.46846759528495,0.0,45185.53999999999,50,42,1,5686,201708670,,,245.0,,1.0,3.0,6.0,0.0,2.0,1.5,1976.055476844411,0.0,1698.0,0.0,0.0,50389.0,5,5,1,120.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2586.408367126102,0.05723973570142356,0.05132882905249364,33592.666666666664,9,5,9,9_1,9_0,9_0_0 +8671,2,62.0,2,0.0,2,111,1,37,72,10.0,0.0,0.0,1123.8513538798443,0.0,2675.214776369353,84393.40000000001,41,71,2,5687,201708671,,,,,1.0,5.0,4.0,0.0,2.0,1.5,3400.7635813121665,0.0,835.0,1512.0,0.0,161572.0,1,5,2,97.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3799.066130249197,0.045016152095415006,0.023513146648238538,107714.66666666667,10,5,10,10_0,10_4,10_0_1 +8672,1,32.0,3,381.0,1,112,2,21,68,3.0,1110.5192063972174,0.0,1211.3367886130059,132.69914565324171,0.0,35182.14,50,50,1,5688,201708672,,,300.0,,2.0,0.0,3.0,2.0,4.0,2.1,2451.6926570747282,0.0,900.0,0.0,0.0,28578.0,1,1,3,82.0,6,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2454.5551406634654,0.06976707899699863,0.08588967529790277,13608.571428571428,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +8673,2,46.0,3,0.0,8,111,6,52,48,6.0,0.0,0.0,1316.3193102927996,0.0,0.0,35618.52,50,31,1,5689,201708673,,,301.0,,2.0,0.0,4.0,2.0,4.0,2.1,2370.5502843979857,0.0,978.0,0.0,0.0,45205.0,1,1,2,92.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1316.3193102927996,0.03695603608158901,0.029118887518920465,21526.190476190477,6,3,6,6_1,6_3,6_0_0 +8674,1,33.0,5,408.0,2,400,2,0,56,2.0,0.0,0.0,942.1508355878933,403.40540278585485,0.0,13909.119999999999,0,50,1,569,201708674,,,,187.0,1.0,0.0,4.0,2.0,3.0,1.6,2271.6883882992506,0.0,700.0,0.0,0.0,18731.0,0,4,3,126.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1345.556238373748,0.09673913506920266,0.07183579298348984,11706.875,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +8675,2,70.0,3,0.0,99,111,1,0,78,6.0,0.0,0.0,460.30797967294217,0.0,0.0,25517.46,0,71,2,5690,201708675,,,,301.0,0.0,8.0,3.0,0.0,1.0,1.0,1992.980884769458,0.0,342.0,0.0,0.0,21163.0,0,5,3,75.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,460.30797967294217,0.018038941950842373,0.021750601506069184,21163.0,5,3,5,5_0,5_2,5_0_0 +8676,2,88.0,1,0.0,2,221,2,78,75,5.0,0.0,0.0,686.4241802140366,0.0,2537.2076648899815,25438.179999999997,44,41,1,5691,201708676,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1851.010734251504,0.0,510.0,1434.0,0.0,30616.0,5,5,1,100.0,1,2.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3223.631845104018,0.1267241542085172,0.10529239107342625,20410.666666666668,5,3,5,5_1,5_1,5_0_1 +8677,1,80.0,2,99.0,2,111,1,0,78,2.0,0.0,0.0,296.1045483276236,0.0,198.16405750884095,10526.199999999999,0,71,2,5692,201708677,,,,240.0,0.0,2.0,3.0,0.0,1.0,1.0,3458.4960186006124,0.0,220.0,112.0,0.0,13318.0,0,5,3,79.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,494.26860583646453,0.04695603407083891,0.03711282518669955,13318.0,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +8678,0,44.0,4,0.0,1,112,6,0,85,1.0,0.0,0.0,1009.4473238441715,368.0189639449904,0.0,14936.08,0,71,1,5693,201708678,,,,,0.0,0.0,6.0,1.0,2.0,1.5,412.2360000947547,0.0,750.0,0.0,0.0,8610.0,0,8,5,90.0,8,0.0,2,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1377.466287789162,0.09222408341339641,0.15998447012649963,5740.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8679,2,91.0,3,0.0,1,111,2,0,78,7.0,0.0,0.0,3539.795282280228,0.0,1091.6716382406685,16614.240000000005,0,70,1,5694,201708679,,,160.0,,0.0,1.0,2.0,0.0,1.0,1.0,3225.7759273148145,0.0,2630.0,617.0,0.0,27010.0,0,5,1,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4631.466920520897,0.2787648980947004,0.17147230361054783,27010.0,7,4,7,7_1,7_4,7_1_0 +8680,2,68.0,2,0.0,1,111,2,78,78,8.0,0.0,0.0,1115.775775289091,0.0,1668.4705913467592,28099.350875301632,70,50,1,5695,201708680,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,1623.1191891262727,0.0,829.0,943.0,0.0,39913.0,5,5,1,95.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2784.24636663585,0.09908578952559033,0.06975788256046526,26608.666666666668,7,4,7,7_1,7_2,7_1_0 +8681,2,57.0,3,0.0,4,111,2,0,52,7.0,0.0,0.0,527.7817399384463,0.0,983.5099629090568,41341.38417758094,0,50,2,5696,201708681,,,306.0,383.0,1.0,0.0,3.0,0.0,1.0,1.0,1906.2216655591285,948.0,0.0,0.0,0.0,27927.0,0,1,3,70.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1511.291702847503,0.036556388541704,0.05411579127179801,27927.0,8,4,8,8_0,8_2,8_0_1 +8682,2,35.0,4,0.0,5,111,1,54,38,5.0,0.0,0.0,969.0694308904046,0.0,0.0,55584.12,30,12,2,5697,201708682,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2592.2010232634234,0.0,720.0,0.0,0.0,43900.0,1,1,1,76.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,969.0694308904046,0.017434285743669318,0.022074474507754092,20904.761904761905,5,3,5,5_0,5_4,5_0_0 +8683,1,37.0,4,256.0,5,211,1,0,64,4.0,0.0,0.0,538.3719060502248,0.0,0.0,20547.047849749775,0,71,2,5698,201708683,,,,17.0,1.0,0.0,3.0,0.0,1.0,1.0,4166.733969276176,0.0,400.0,0.0,0.0,17912.0,0,4,3,69.0,1,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,538.3719060502248,0.026201910366251528,0.0300564931917276,17912.0,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +8684,2,71.0,3,0.0,1,300,2,77,78,3.0,0.0,291.4645271083224,989.2123012170463,360.94167617681745,559.2229527013221,25505.11353277039,50,70,1,5699,201708684,,,202.0,,0.0,2.0,6.0,0.0,2.0,1.5,2108.4027697949823,539.0320171163073,512.0,0.0,0.0,22797.0,5,5,1,140.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2200.841457203508,0.08629020429082758,0.09654083682956126,15198.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +8685,2,69.0,2,0.0,2,111,2,0,74,10.0,0.0,0.0,472.914986262518,0.0,557.0427904370165,57136.2788754384,0,71,2,57,201708685,,,540.0,,0.0,2.0,3.0,0.0,1.0,1.0,3621.7097596834515,402.20081277139855,185.0,79.0,0.0,58950.0,0,5,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1029.9577766995344,0.01802633627830268,0.01747171801017022,58950.0,10,5,10,10_0,10_4,10_0_1 +8686,2,43.0,3,0.0,1,300,4,34,42,8.0,0.0,832.755791738064,3230.231436301349,0.0,0.0,52713.880000000005,43,30,1,5700,201708686,,,,,2.0,0.0,6.0,3.0,5.0,2.6,2370.4241896899275,0.0,2400.0,0.0,0.0,67601.0,1,1,2,230.0,0,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4062.987228039413,0.0770762316877341,0.060102472271703275,26000.384615384613,7,4,7,7_1,7_1,7_1_0 +8687,2,41.0,2,0.0,8,300,2,62,62,10.0,0.0,0.0,1211.3367886130059,0.0,1277.450442155207,22195.8,50,31,2,5701,201708687,,,,500.0,2.0,1.0,3.0,0.0,2.0,1.5,2980.1351735474564,0.0,900.0,722.0,0.0,60674.0,1,1,3,90.0,0,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,2488.787230768213,0.11212874646411541,0.041019007000827584,40449.333333333336,9,5,9,9_0,9_0,9_0_0 +8688,2,67.0,3,0.0,6,400,4,0,77,5.0,0.0,117.97373716289239,861.3950496803596,53.079658261296686,0.0,25453.7,0,70,1,5703,201708688,,,72.0,,0.0,0.0,3.0,0.0,1.0,1.0,2244.020722138562,0.0,640.0,0.0,0.0,18985.0,0,5,1,70.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1032.4484451045487,0.040561821861047655,0.05438232526228858,18985.0,5,3,5,5_1,5_0,5_0_0 +8689,2,29.0,4,0.0,2,111,2,63,52,3.0,0.0,0.0,768.2898745939409,0.0,1431.6917181587535,32478.740315994113,50,31,2,5704,201708689,,,,,2.0,0.0,2.0,1.0,3.0,1.8,3941.6590029221575,1380.0,0.0,0.0,0.0,26450.0,1,1,2,37.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2199.9815927526943,0.06773605045480524,0.08317510747647237,14694.444444444443,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8690,2,43.0,2,0.0,8,112,2,38,37,10.0,0.0,0.0,161.51157181506744,0.0,180.47083808840873,38517.8458467513,30,31,1,5705,201708690,,,260.0,,2.0,1.0,7.0,2.0,4.0,2.1,3242.1746808155335,0.0,120.0,102.0,0.0,93360.0,4,1,2,156.0,9,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,341.9824099034762,0.008878544539175467,0.0036630506630620846,44457.142857142855,10,5,10,10_1,10_1,10_0_0 +8691,1,80.0,4,88.0,99,111,2,72,72,6.0,0.0,0.0,909.8485212248798,0.0,1344.6846759528494,24730.751191295745,70,70,1,5706,201708691,,,310.0,647.0,0.0,2.0,3.0,0.0,2.0,1.5,4127.950570166013,0.0,676.0,760.0,0.0,34916.0,5,5,3,70.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2254.533197177729,0.09116315067579656,0.06457020269153767,23277.333333333332,6,3,6,6_1,6_3,6_0_0 +8692,2,58.0,4,0.0,1,111,4,0,48,1.0,0.0,0.0,484.5347154452023,90.23541904420436,0.0,13949.827849749776,0,50,2,5707,201708692,,,,550.0,1.0,6.0,2.0,0.0,1.0,1.0,3497.6743898528084,0.0,360.0,0.0,0.0,7430.0,0,1,3,38.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,574.7701344894067,0.04120266864079736,0.0773580261762324,7430.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +8693,2,45.0,3,0.0,1,400,2,46,13,5.0,3966.1400228472053,0.0,646.0462872602698,265.39829130648343,0.0,42461.04051346418,20,44,1,5708,201708693,,,255.0,,2.0,0.0,8.0,2.0,4.0,2.1,2211.1795299636574,0.0,480.0,0.0,0.0,40891.0,1,1,2,250.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4877.584601413959,0.11487199895318867,0.1192825952266748,19471.90476190476,5,3,5,5_1,5_0,5_1_0 +8694,2,65.0,2,0.0,5,400,2,72,75,6.0,1002.6401977757736,0.0,807.5578590753372,51.310336319253466,0.0,27076.185846751298,50,41,1,5709,201708694,,,540.0,,0.0,3.0,5.0,0.0,2.0,1.5,1541.5778396923808,0.0,600.0,0.0,0.0,34755.0,5,5,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1861.5083931703643,0.06875076141471068,0.05356088025234828,23170.0,6,3,6,6_1,6_0,6_0_0 +8695,1,47.0,4,299.0,4,111,1,0,85,2.0,0.0,0.0,479.1509963847001,0.0,0.0,4395.2,0,50,2,5710,201708695,,,,,0.0,0.0,2.0,0.0,1.0,1.0,5207.339908645756,0.0,356.0,0.0,0.0,13311.0,0,7,3,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,479.1509963847001,0.10901688123059249,0.0359966190657877,13311.0,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +8696,1,44.0,3,210.0,8,112,4,42,37,5.0,0.0,0.0,3270.6093292551154,283.09151072691566,0.0,40112.91582142338,31,30,1,5711,201708696,,,1280.0,,2.0,0.0,5.0,4.0,6.0,2.9,1989.5333303132927,0.0,2430.0,0.0,0.0,58293.0,1,1,3,130.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3553.700839982031,0.08859243381365164,0.0609627372065605,20101.03448275862,5,3,5,5_1,5_0,5_0_0 +8697,2,25.0,4,0.0,99,111,2,55,52,4.0,0.0,0.0,740.261370819059,0.0,2972.4608626326144,31499.219999999998,43,43,2,5713,201708697,,,,375.0,2.0,0.0,4.0,1.0,3.0,1.8,1563.6952166401113,0.0,550.0,1680.0,0.0,29682.0,4,1,3,65.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3712.7222334516737,0.1178671165016681,0.1250832906627476,16490.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +8698,2,29.0,2,0.0,99,111,2,0,46,6.0,0.0,0.0,141.322625338184,0.0,0.0,19282.07665845403,0,30,2,5714,201708698,,,,440.0,1.0,0.0,3.0,1.0,2.0,1.3,769.5286944442654,0.0,105.0,0.0,0.0,29762.0,0,1,3,65.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,141.322625338184,0.00732922225346628,0.00474842501640293,22893.846153846152,6,3,6,6_0,6_3,6_0_0 +8699,1,49.0,4,187.0,1,111,4,62,56,4.0,0.0,0.0,1837.194129396392,0.0,360.94167617681745,49031.433623378,71,50,2,5717,201708699,,,420.0,686.0,2.0,0.0,3.0,3.0,5.0,2.4,2132.6438652246716,0.0,1365.0,204.0,0.0,42793.0,1,1,3,85.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,2198.1358055732094,0.044831155100575046,0.051366714312462536,17830.416666666668,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +8700,2,84.0,3,0.0,1,400,2,0,71,3.0,1094.6546463058287,0.0,874.8543473316153,185.7788039145384,0.0,12902.42,0,70,1,5718,201708700,,,294.0,,0.0,2.0,6.0,0.0,1.0,1.0,2172.5662798926323,0.0,650.0,0.0,0.0,13533.0,0,5,5,176.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2155.2877975519823,0.16704523628528464,0.15926164173146992,13533.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8701,2,34.0,3,0.0,7,111,2,0,42,1.0,0.0,0.0,269.1859530251124,0.0,1769.3219420432229,23915.860315994116,0,20,1,5719,201708701,,,180.0,,1.0,0.0,5.0,1.0,2.0,1.3,2206.047726633585,0.0,200.0,1000.0,0.0,10682.0,0,4,2,110.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2038.5078950683353,0.08523665333941804,0.19083578871637663,8216.923076923076,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +8702,2,64.0,3,0.0,4,111,1,0,77,3.0,0.0,0.0,134.5929765125562,0.0,0.0,8463.750875301626,0,70,2,5720,201708702,,,,316.0,0.0,0.0,1.0,0.0,1.0,1.0,2768.5313277823707,0.0,100.0,0.0,0.0,13830.0,0,5,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,134.5929765125562,0.015902284754778968,0.009731957810018524,13830.0,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +8703,1,57.0,3,58.0,2,211,1,0,77,1.0,0.0,0.0,457.61612014269105,0.0,230.01185246561897,13037.700513464173,0,71,2,5721,201708703,,,260.0,225.0,0.0,1.0,3.0,0.0,1.0,1.0,3738.4148645306896,0.0,340.0,130.0,0.0,3826.0,0,7,3,50.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,687.6279726083101,0.05274150697802801,0.1797250320460821,3826.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +8704,2,47.0,3,0.0,1,111,4,46,23,10.0,0.0,0.0,3364.824412813905,0.0,0.0,29576.899999999998,31,20,1,5722,201708704,,,900.0,,2.0,0.0,6.0,0.0,2.0,1.5,2243.0959724199,0.0,2500.0,0.0,0.0,141070.0,1,1,2,160.0,6,5.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3364.824412813905,0.11376528347507363,0.02385216142917633,94046.66666666667,10,5,10,10_1,10_2,10_1_0 +8705,2,24.0,3,0.0,8,112,4,43,62,7.0,0.0,0.0,1232.8716648550148,0.0,0.0,25314.920000000002,50,71,8,5723,201708705,,,,400.0,2.0,0.0,2.0,0.0,2.0,1.5,6575.826309319825,0.0,916.0,0.0,0.0,34641.0,1,1,3,54.0,9,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1232.8716648550148,0.04870138498778644,0.03558995597283609,23094.0,6,3,6,6_0,6_1,6_0_0 +8706,2,51.0,3,0.0,7,300,2,85,62,8.0,0.0,0.0,570.0933562204315,0.0,1062.3567531844662,31007.66,41,50,1,5725,201708706,,,,,1.0,3.0,5.0,0.0,2.0,1.5,2408.451514907465,1024.0,0.0,0.0,0.0,43720.0,7,1,1,80.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1632.4501094048978,0.05264667212569081,0.03733874907147525,29146.666666666668,8,4,8,8_1,8_0,8_0_0 +8707,2,34.0,4,0.0,4,111,1,0,43,4.0,0.0,0.0,471.07541779394666,0.0,0.0,30299.86,0,33,2,5726,201708707,,,,,1.0,0.0,4.0,2.0,3.0,1.6,2058.53965953331,0.0,350.0,0.0,0.0,28420.0,0,1,2,70.0,9,7.0,2,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,471.07541779394666,0.015547115326405687,0.016575489718295096,17762.5,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8708,2,43.0,5,0.0,1,111,2,85,38,2.0,0.0,0.0,1189.1791102410564,0.0,2216.009789845723,34081.5458467513,20,30,2,5727,201708708,,,,,1.0,0.0,5.0,3.0,5.0,2.6,1997.4156327966316,2136.0,0.0,0.0,0.0,29354.0,6,1,2,127.0,7,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,3405.1889000867795,0.09991298268565382,0.11600425495969134,11290.0,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +8709,2,34.0,2,0.0,1,111,1,0,37,10.0,0.0,0.0,242.26735772260116,0.0,318.4779495677801,35053.28,0,20,2,5729,201708709,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3154.1501007024945,0.0,180.0,180.0,0.0,44254.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,560.7453072903813,0.0159969425768539,0.012671064927246832,44254.0,10,5,10,10_0,10_4,10_1_0 +8710,2,80.0,2,0.0,5,400,6,0,78,4.0,2379.684013708323,0.0,594.9009561854983,318.4779495677801,0.0,16572.8658467513,0,70,1,573,201708710,,,195.0,,0.0,1.0,4.0,0.0,1.0,1.0,3312.488463582259,0.0,442.0,0.0,0.0,17699.0,0,5,1,95.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3293.0629194616013,0.19870208025047909,0.18605926433479864,17699.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8711,2,42.0,3,0.0,7,111,2,47,54,9.0,0.0,0.0,646.0462872602698,0.0,849.274532180747,51056.92,20,20,2,5730,201708711,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2225.106050832855,0.0,480.0,480.0,0.0,65686.0,1,1,2,82.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1495.3208194410167,0.029287329111137468,0.022764680745379788,31279.04761904762,8,4,8,8_0,8_3,8_0_0 +8712,2,33.0,2,0.0,4,111,1,0,38,10.0,0.0,0.0,572.0201501783638,0.0,0.0,38669.5,0,31,2,5731,201708712,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3023.3900194617545,0.0,425.0,0.0,0.0,57331.0,0,1,2,72.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,572.0201501783638,0.014792540637410978,0.009977501703761731,57331.0,10,5,10,10_0,10_3,10_0_1 +8713,2,55.0,3,0.0,4,211,6,0,54,4.0,0.0,0.0,921.9618891110099,0.0,0.0,17049.593696501073,0,31,2,5732,201708713,,,256.0,378.0,1.0,0.0,2.0,0.0,1.0,1.0,2162.5288943596092,0.0,685.0,0.0,0.0,17711.0,0,4,3,50.0,3,3.0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,921.9618891110099,0.054075299712286716,0.05205589120382869,17711.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +8714,2,39.0,2,0.0,7,112,5,37,38,10.0,0.0,416.377895869032,1238.255383915517,44.23304855108057,0.0,39677.450000000004,12,12,1,5733,201708714,,,550.0,,2.0,0.0,8.0,3.0,5.0,2.4,1952.2086612774233,0.0,920.0,0.0,0.0,95606.0,1,1,2,120.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1698.8663283356298,0.042816923172623984,0.017769453050390453,39835.833333333336,9,5,9,9_1,9_0,9_0_0 +8715,2,58.0,3,0.0,5,111,1,0,85,4.0,0.0,0.0,807.5578590753372,0.0,1415.4575536345783,19481.0,0,71,2,5734,201708715,,,,680.0,0.0,5.0,3.0,0.0,1.0,1.0,720.3427355681151,0.0,600.0,800.0,0.0,19400.0,0,7,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2223.0154127099154,0.11411197642369054,0.11458842333556264,19400.0,5,3,5,5_0,5_4,5_0_0 +8716,1,70.0,4,272.0,2,111,1,0,72,2.0,0.0,0.0,538.3719060502248,0.0,265.39829130648343,9373.48,0,70,2,5735,201708716,,,,249.0,0.0,1.0,4.0,0.0,1.0,1.0,3146.773408661418,0.0,400.0,150.0,0.0,12844.0,0,5,3,85.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,803.7701973567082,0.08574939055257047,0.06257942987828621,12844.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8717,2,80.0,3,0.0,1,400,2,71,71,4.0,0.0,1088.1342345377368,672.964882562781,276.0142229587428,0.0,24036.085846751303,70,50,1,5737,201708717,,,140.0,,0.0,2.0,6.0,0.0,2.0,1.5,1915.9524648876152,0.0,500.0,0.0,0.0,24265.0,5,5,5,250.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2037.1133400592605,0.08475229091156683,0.08395274428432971,16176.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +8718,2,28.0,2,0.0,9,211,2,54,62,8.0,0.0,0.0,2175.022500442908,0.0,0.0,53339.240000000005,31,43,1,5739,201708718,,,552.0,,2.0,0.0,6.0,1.0,3.0,1.8,2525.6649637836604,0.0,1616.0,0.0,0.0,49294.0,1,1,2,110.0,3,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2175.022500442908,0.0407771558132982,0.044123473454029054,27385.555555555555,8,4,8,8_1,8_2,8_0_0 +8719,2,88.0,2,0.0,4,112,5,0,78,5.0,0.0,0.0,121.13367886130058,123.8525359430256,0.0,13805.390875301626,0,70,1,5740,201708719,,,,,0.0,5.0,4.0,0.0,1.0,1.0,3917.896610681215,0.0,90.0,0.0,0.0,20301.0,0,5,1,80.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,244.98621480432618,0.01774569202836668,0.012067691975977842,20301.0,5,3,5,5_1,5_0,5_0_1 +8720,2,38.0,2,0.0,7,111,1,42,38,7.0,0.0,0.0,395.70335094691524,0.0,605.1081041787822,37372.240000000005,30,20,2,5741,201708720,342.0,342.0,,711.0,2.0,0.0,4.0,0.0,2.0,1.5,3562.9493233393623,0.0,294.0,342.0,0.0,38488.0,1,1,3,81.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1000.8114551256974,0.026779541582888724,0.026003207626421155,25658.666666666668,7,4,7,7_0,7_4,7_0_0 +8721,2,43.0,5,0.0,1,111,1,85,68,1.0,0.0,0.0,1113.4635863680303,0.0,2074.915533563411,20332.16,41,50,1,5742,201708721,,,384.0,,1.0,1.0,7.0,1.0,3.0,1.8,2116.926356526376,2000.0,0.0,0.0,0.0,16180.0,8,1,2,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3188.379119931441,0.15681457946088567,0.19705680592901365,8988.888888888889,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +8722,2,60.0,3,0.0,99,111,2,0,56,5.0,0.0,0.0,277.25243300563955,0.0,516.6539678572893,16256.52,0,71,2,5743,201708722,,,160.0,412.0,1.0,2.0,4.0,0.0,1.0,1.0,2464.397019834694,498.0,0.0,0.0,0.0,20821.0,0,1,3,63.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,793.9064008629289,0.04883618393499524,0.03813008024892795,20821.0,5,3,5,5_0,5_2,5_0_0 +8723,1,23.0,2,211.0,8,111,4,0,84,1.0,0.0,0.0,323.0231436301349,0.0,0.0,16895.08,0,20,2,5745,201708723,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3131.873675020069,0.0,240.0,0.0,0.0,9148.0,0,3,3,31.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,323.0231436301349,0.01911936159107473,0.03531079401291374,9148.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8724,2,27.0,2,0.0,9,300,4,62,43,8.0,0.0,0.0,4150.8473956472335,31.847794956778014,0.0,120129.65999999999,50,30,1,5746,201708724,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3337.3519064672196,0.0,3084.0,0.0,0.0,57374.0,1,1,2,170.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4182.695190604011,0.034818172219949775,0.07290227612862989,27320.952380952378,8,4,8,8_1,8_0,8_0_0 +8725,2,31.0,4,0.0,8,221,6,0,67,6.0,0.0,0.0,372.82254493978064,0.0,1142.981974559922,18451.120000000003,0,43,2,5747,201708725,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3778.8598855195855,0.0,277.0,646.0,0.0,21151.0,0,1,2,73.0,1,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1515.8045194997026,0.08215243949959149,0.07166585596424295,21151.0,5,3,5,5_0,5_1,5_0_0 +8726,0,26.0,4,0.0,6,221,5,84,62,3.0,0.0,1145.039213639838,888.3136449828709,148.62304313163074,0.0,34213.9916935026,42,50,2,5748,201708726,,,420.0,,1.0,0.0,4.0,0.0,4.0,2.3,677.7605318641826,0.0,660.0,0.0,0.0,35073.0,3,1,5,56.0,1,2.0,5,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,2181.9759017543397,0.06377437398421733,0.06221241130654177,15249.13043478261,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +8727,2,68.0,2,0.0,99,111,1,78,77,4.0,0.0,0.0,592.2090966552472,0.0,0.0,21602.84,50,50,8,5749,201708727,,,,,0.0,5.0,2.0,0.0,2.0,1.5,1839.9329285815431,0.0,440.0,0.0,0.0,23994.0,5,5,1,46.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,592.2090966552472,0.027413483442697683,0.02468154941465563,15996.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +8728,2,69.0,2,0.0,5,111,2,74,74,5.0,0.0,0.0,511.45331074771354,0.0,2107.2624329734786,45428.051191295745,41,42,1,5750,201708728,,,301.0,,0.0,1.0,6.0,0.0,2.0,1.5,1663.2034265886375,0.0,380.0,1191.0,0.0,30034.0,5,5,1,120.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2618.715743721192,0.05764534632343973,0.08719170752218126,20022.666666666668,5,3,5,5_1,5_2,5_0_0 +8729,2,73.0,1,0.0,6,221,2,77,74,7.0,0.0,0.0,807.5578590753372,0.0,1349.992641778979,20487.371693502602,50,12,1,5753,201708729,,,384.0,,0.0,3.0,7.0,0.0,2.0,1.5,1689.8726268239807,0.0,600.0,763.0,0.0,39748.0,5,5,1,120.0,1,2.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2157.5505008543164,0.1053112391931936,0.054280731127460916,26498.666666666668,7,4,7,7_1,7_1,7_0_0 +8730,2,56.0,3,0.0,8,112,5,56,62,6.0,0.0,478.83458024938676,969.0694308904046,247.7050718860512,0.0,18856.339036489768,60,50,1,5754,201708730,,,,,2.0,1.0,4.0,0.0,2.0,1.5,2296.9940933974144,0.0,720.0,0.0,0.0,32268.0,1,1,2,88.0,6,2.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1695.6090830258427,0.08992249660682233,0.05254769688316111,21512.0,6,3,6,6_1,6_1,6_0_0 +8731,1,47.0,3,131.0,99,111,6,85,53,6.0,0.0,0.0,5367.0781997768145,230.01185246561897,4598.963528715258,50151.78678372939,41,60,1,5757,201708731,,,,,1.0,0.0,6.0,4.0,6.0,3.1,1427.5690543168423,4432.916380761878,2154.0,0.0,0.0,63464.0,1,1,3,125.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,10196.05358095769,0.20330389473312982,0.16065885511404404,20472.25806451613,5,3,5,5_1,5_3,5_0_0 +8732,2,67.0,3,0.0,6,112,6,75,75,9.0,0.0,0.0,2449.592172528523,0.0,0.0,46778.479999999996,60,50,1,5759,201708732,,,430.0,,0.0,2.0,5.0,0.0,2.0,1.5,2859.5028524694853,0.0,1820.0,0.0,0.0,53811.0,5,5,1,120.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2449.592172528523,0.0523657924013034,0.04552214551910433,35874.0,9,5,9,9_1,9_1,9_0_0 +8733,2,67.0,3,0.0,4,111,5,0,71,2.0,0.0,115.19788452376551,1709.3308017094637,212.31863304518674,0.0,16477.52,0,70,1,5760,201708733,,,360.0,,0.0,0.0,5.0,0.0,2.0,1.5,3371.5748052061585,0.0,1270.0,0.0,0.0,20333.0,0,5,1,56.0,7,5.0,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2036.8473192784159,0.12361370638775834,0.10017446118518743,13555.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +8734,2,67.0,1,0.0,3,111,1,0,74,8.0,0.0,0.0,851.9735413244807,0.0,175.16287226227908,40575.838839019714,0,30,2,5761,201708734,,,219.0,,0.0,0.0,3.0,0.0,1.0,1.0,4819.4929627296715,0.0,633.0,99.0,0.0,29630.0,0,5,1,80.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1027.1364135867598,0.02531399086194652,0.034665420640795135,29630.0,8,4,8,8_0,8_3,8_0_1 +8735,2,48.0,2,0.0,6,111,2,34,37,9.0,0.0,0.0,969.0694308904046,0.0,2034.7202333497064,51366.67665845404,30,20,2,5762,201708735,,,,,2.0,0.0,4.0,1.0,3.0,2.0,3341.505012227721,0.0,720.0,1150.0,0.0,64588.0,1,1,2,84.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3003.789664240111,0.05847739935002669,0.04650693107450472,32294.0,9,5,9,9_0,9_4,9_0_0 +8736,2,87.0,2,0.0,4,211,2,0,77,8.0,0.0,0.0,2581.4932895108277,0.0,0.0,20178.19202733072,0,70,1,5765,201708736,,,348.0,,0.0,1.0,5.0,0.0,1.0,1.0,2330.6560537620394,0.0,1918.0,0.0,0.0,28954.0,0,5,5,160.0,2,3.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2581.4932895108277,0.12793481626174819,0.08915843370556151,28954.0,8,4,8,8_1,8_1,8_0_1 +8737,2,60.0,3,0.0,9,111,2,0,37,9.0,0.0,0.0,514.42017690203,0.0,958.6109765062956,27962.3,0,42,1,5766,201708737,,,160.0,,1.0,2.0,4.0,0.0,1.0,1.0,2876.6196372200525,924.0,0.0,0.0,0.0,34317.0,0,1,1,80.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1473.0311534083257,0.05267918423764589,0.042924240271828125,34317.0,9,5,9,9_1,9_3,9_0_0 +8738,2,44.0,2,0.0,9,111,2,31,62,8.0,0.0,416.377895869032,1413.22625338184,0.0,0.0,70260.54000000001,31,43,1,5767,201708738,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2377.720987776808,0.0,1050.0,0.0,0.0,55686.0,1,1,2,110.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1829.604149250872,0.02604028020921661,0.032855729433805124,30936.666666666664,8,4,8,8_1,8_3,8_0_0 +8739,2,71.0,3,0.0,1,400,4,0,72,4.0,0.0,0.0,1328.7149228015023,127.39117982711205,344.13720166235214,15761.119097089468,0,50,1,5768,201708739,,,230.0,,0.0,2.0,2.0,0.0,1.0,1.0,2574.583788056921,331.7120105331122,850.0,0.0,0.0,17918.0,0,5,3,40.0,0,0.0,1,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1800.2433042909665,0.11422052540821223,0.10047121912551438,17918.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8740,2,61.0,1,0.0,1,111,2,72,22,10.0,0.0,0.0,3061.602389261224,0.0,4065.8172752792248,67497.59924394535,60,30,1,5769,201708740,,,400.0,,1.0,2.0,4.0,0.0,2.0,1.5,1390.0960308909562,2114.66406714859,1400.0,1058.0,0.0,107420.0,5,1,1,120.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,7127.419664540448,0.10559515811489828,0.06635095573022201,71613.33333333333,10,5,10,10_1,10_2,10_1_0 +8741,1,25.0,2,66.0,4,111,2,52,37,4.0,0.0,0.0,403.7789295376686,0.0,1252.6799349666019,34892.53951068729,20,20,2,577,201708741,,,,454.0,2.0,0.0,3.0,0.0,2.0,1.5,3933.33556058229,0.0,300.0,708.0,0.0,26843.0,3,3,3,49.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1656.4588645042704,0.04747315293565581,0.06170915562732446,17895.333333333332,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +8742,2,36.0,5,0.0,2,211,5,85,84,2.0,0.0,1110.341055650752,1142.6943705916021,70.77287768172891,0.0,29156.88784974977,71,50,1,5771,201708742,,,528.0,,0.0,0.0,3.0,4.0,6.0,2.9,2650.6819260113643,0.0,849.0,0.0,0.0,38440.0,6,3,2,65.0,1,3.0,4,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2323.8083039240832,0.07970014892875567,0.06045286950895118,13255.172413793103,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +8743,2,67.0,2,0.0,4,112,2,77,78,8.0,951.8736054833294,0.0,605.6683943065029,0.0,0.0,27901.251693502596,60,70,1,5772,201708743,,,220.0,,0.0,2.0,5.0,0.0,2.0,1.5,1755.435668422026,0.0,450.0,0.0,0.0,44921.0,5,5,1,87.0,9,3.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1557.5419997898323,0.0558233736930354,0.034672914667746316,29947.333333333332,8,4,8,8_1,8_1,8_0_1 +8744,2,86.0,3,0.0,2,111,2,0,78,4.0,0.0,0.0,161.51157181506744,0.0,849.274532180747,9101.8,0,71,2,5773,201708744,,,120.0,245.0,0.0,1.0,2.0,0.0,1.0,1.0,3447.9534480296647,0.0,120.0,480.0,0.0,18014.0,0,5,3,30.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1010.7861039958144,0.11105342943108117,0.05611114155633476,18014.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8745,1,46.0,3,215.0,8,120,2,85,65,2.0,0.0,0.0,1292.0925745205395,0.0,2123.1863304518674,59438.581519771324,50,41,2,5774,201708745,,,,115.0,1.0,0.0,4.0,3.0,5.0,3.0,1055.3587757162318,0.0,960.0,1200.0,0.0,32390.0,7,4,3,97.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,3415.278904972407,0.057458957088946806,0.105442386692572,10796.666666666666,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +8746,2,53.0,3,0.0,9,112,4,46,38,8.0,0.0,0.0,3566.7138775827393,0.0,0.0,89254.96,31,30,1,5775,201708746,,,830.0,,2.0,0.0,5.0,2.0,4.0,2.3,1834.3722097188363,0.0,2650.0,0.0,0.0,69624.0,1,1,2,125.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3566.7138775827393,0.039960959901642876,0.05122822414085286,30271.304347826088,8,4,8,8_1,8_2,8_0_0 +8748,2,76.0,3,0.0,2,111,4,0,72,2.0,0.0,0.0,2682.718653720124,61.9262679715128,1525.454607396406,17206.890793590595,0,70,1,5778,201708748,,,284.0,,0.0,2.0,3.0,0.0,1.0,1.0,2681.7102598689685,1470.377548117948,1385.0,0.0,0.0,12803.0,0,5,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4270.099529088043,0.2481621799261151,0.3335233561734002,12803.0,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +8749,2,96.0,2,0.0,1,111,2,0,86,8.0,0.0,0.0,662.1974444417765,0.0,817.426737223969,30425.225846751302,0,30,2,5779,201708749,,,180.0,,0.0,0.0,4.0,0.0,1.0,1.0,3872.528457747028,0.0,492.0,462.0,0.0,32722.0,0,5,1,100.0,8,6.0,1,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1479.6241816657455,0.04863149378474489,0.04521802401032166,32722.0,9,5,9,9_0,9_2,9_1_0 +8750,2,77.0,3,0.0,3,111,2,0,75,6.0,0.0,0.0,177.66272899657417,0.0,424.6372660903735,12951.380000000001,0,44,1,578,201708750,,,264.0,,0.0,0.0,5.0,0.0,1.0,1.0,1783.4110040799756,0.0,132.0,240.0,0.0,24472.0,0,5,1,80.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,602.2999950869477,0.04650469641744336,0.024611801041473834,24472.0,7,4,7,7_1,7_3,7_0_1 +8751,2,70.0,3,0.0,1,211,2,77,75,9.0,0.0,0.0,1020.214761965176,0.0,2135.57158404617,46575.134343836406,60,41,1,5781,201708751,,,637.0,,0.0,1.0,6.0,0.0,2.0,1.5,1267.0541442129254,0.0,758.0,1207.0,0.0,49011.0,5,5,1,140.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3155.786346011346,0.06775689196544361,0.06438934822818032,32674.0,9,5,9,9_1,9_1,9_1_0 +8752,1,38.0,3,472.0,9,111,2,0,56,2.0,0.0,0.0,901.7729426341265,0.0,617.4933577730848,17054.94,0,41,1,5782,201708752,,,600.0,,1.0,0.0,4.0,3.0,4.0,1.9,856.2243426563235,0.0,670.0,349.0,0.0,24756.0,0,1,3,65.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1519.2663004072112,0.08908071798594491,0.06136961950263416,13029.473684210527,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +8753,2,69.0,2,0.0,4,111,4,0,75,8.0,0.0,0.0,2584.185149041079,0.0,0.0,28924.380315994113,0,33,1,5783,201708753,,,,,0.0,3.0,5.0,0.0,1.0,1.0,1597.951231420267,0.0,1920.0,0.0,0.0,33478.0,0,5,1,130.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2584.185149041079,0.08934280080711428,0.07719054749510362,33478.0,9,5,9,9_1,9_4,9_0_1 +8754,2,81.0,1,0.0,2,111,1,0,75,8.0,0.0,0.0,414.5463676586731,0.0,0.0,31367.3,0,31,2,5785,201708754,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3495.1196026731936,0.0,308.0,0.0,0.0,31868.0,0,5,1,72.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,414.5463676586731,0.01321587665048229,0.013008232950253329,31868.0,9,5,9,9_0,9_4,9_0_1 +8755,2,51.0,2,0.0,1,112,5,85,38,10.0,0.0,416.377895869032,4469.999395176697,0.0,805.4142594489999,30641.660271167155,10,12,1,5786,201708755,,,700.0,,1.0,5.0,4.0,1.0,3.0,2.0,2114.33409504196,776.3345027021901,3000.0,0.0,0.0,131248.0,6,1,1,120.0,10,0.0,4,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5691.791550494729,0.1857533664992209,0.0433666916866903,65624.0,10,5,10,10_1,10_0,10_1_0 +8756,2,54.0,4,0.0,9,300,5,85,63,2.0,0.0,693.9631597817199,1125.1972836449697,191.08676974066807,0.0,21623.02,71,50,1,5787,201708756,,,,,1.0,1.0,4.0,0.0,2.0,1.5,1806.8361579358402,0.0,836.0,0.0,0.0,17520.0,6,1,2,160.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2010.2472131673578,0.09296792090870552,0.11474013773786289,11680.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8757,2,69.0,3,0.0,9,120,2,72,75,7.0,0.0,333.10231669522557,1814.3133233892574,360.94167617681745,0.0,28585.24,71,42,1,5789,201708757,,,410.0,,0.0,2.0,7.0,0.0,2.0,1.5,1414.590515692433,0.0,1348.0,0.0,0.0,35250.0,5,5,1,171.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2508.3573162613006,0.08775008767676257,0.07115907280173903,23500.0,6,3,6,6_1,6_0,6_0_0 +8758,2,58.0,1,0.0,5,111,2,75,42,10.0,0.0,0.0,942.1508355878933,0.0,2477.050718860512,41261.840000000004,30,20,1,579,201708758,,,470.0,,1.0,2.0,3.0,0.0,2.0,1.5,2572.7055143365906,0.0,700.0,1400.0,0.0,103576.0,5,1,1,110.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3419.201554448405,0.08286594961466587,0.03301152346536268,69050.66666666667,10,5,10,10_1,10_2,10_0_0 +8759,2,43.0,2,0.0,5,111,2,0,33,7.0,0.0,0.0,839.8601734383507,0.0,1415.4575536345783,23940.079352483892,0,20,2,5793,201708759,,,,,1.0,0.0,3.0,1.0,3.0,1.8,1155.237294047164,0.0,624.0,800.0,0.0,43061.0,0,1,1,70.0,9,7.0,5,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2255.317727072929,0.09420677742402427,0.05237495011896911,23922.777777777777,7,4,7,7_0,7_3,7_0_0 +8760,0,18.0,4,0.0,1,211,2,0,56,1.0,0.0,0.0,26.91859530251124,0.0,106.15931652259337,13913.320197470057,0,50,2,5794,201708760,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5291.668203147708,0.0,20.0,60.0,0.0,5790.0,0,3,5,51.0,1,3.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,133.07791182510462,0.009564784676579426,0.02298409530658111,5790.0,1,1,1_0,1_0_0,1_1_0,1_1_0_0 +8761,2,80.0,3,0.0,9,222,4,78,74,8.0,0.0,0.0,0.0,0.0,0.0,57473.96,71,44,1,5795,201708761,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2906.0385779195085,0.0,0.0,0.0,0.0,40356.0,5,5,1,100.0,1,0.0,3,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0.0,0.0,0.0,26904.0,7,4,7,7_1,7_0,7_0_0 +8762,2,63.0,2,0.0,2,112,5,52,52,10.0,0.0,555.170527825376,672.964882562781,0.0,0.0,29861.338360169266,31,50,1,5796,201708762,,,,,2.0,5.0,3.0,0.0,2.0,1.5,1517.1306164242465,0.0,500.0,0.0,0.0,60676.0,1,1,1,78.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1228.135410388157,0.04112794261178572,0.020240876300154212,40450.666666666664,9,5,9,9_1,9_0,9_0_1 +8763,2,83.0,3,0.0,5,111,2,0,77,8.0,0.0,0.0,538.3719060502248,0.0,2123.1863304518674,26448.16,0,70,1,5797,201708763,,,150.0,,0.0,4.0,4.0,0.0,1.0,1.0,2628.16035013859,0.0,400.0,1200.0,0.0,26385.0,0,5,1,103.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2661.5582365020923,0.10063302084160457,0.10087391459170333,26385.0,7,4,7,7_1,7_4,7_0_0 +8764,1,66.0,2,198.0,6,112,6,0,78,6.0,745.6343242952746,0.0,0.0,0.0,240.62778411787832,8490.18,0,41,7,5798,201708764,,,,152.0,0.0,2.0,3.0,0.0,1.0,1.0,2334.5511288758294,0.0,0.0,136.0,0.0,20891.0,0,5,3,33.0,9,0.0,1,9,1,1,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,986.2621084131529,0.11616504107252766,0.04720990418903609,20891.0,5,3,5,5_1,5_0,5_0_0 +8765,1,43.0,3,89.0,8,111,9,56,63,1.0,0.0,0.0,1588.1971228481632,0.0,0.0,22120.38,71,50,2,5799,201708765,,,240.0,556.0,3.0,3.0,4.0,3.0,5.0,3.0,2378.001907594708,0.0,1180.0,0.0,0.0,29673.0,1,1,3,90.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1588.1971228481632,0.07179791318450059,0.05352330815381536,9891.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8766,2,67.0,3,0.0,1,300,2,78,78,5.0,0.0,0.0,672.964882562781,0.0,1464.9985680117886,30201.599999999995,70,50,1,58,201708766,,,326.0,,0.0,2.0,4.0,0.0,2.0,1.5,1934.9301693322184,0.0,500.0,828.0,0.0,27570.0,5,5,1,80.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2137.96345057457,0.07078974129101008,0.07754673378942945,18380.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8767,2,74.0,2,0.0,1,111,4,0,77,8.0,0.0,0.0,1788.740657851872,0.0,794.425551977407,21308.440000000002,0,50,2,580,201708767,,,190.0,,0.0,2.0,4.0,0.0,1.0,1.0,2950.6266628146736,0.0,1329.0,449.0,0.0,28490.0,0,5,1,95.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,2583.166209829279,0.12122737327693997,0.09066922463423233,28490.0,8,4,8,8_0,8_2,8_1_0 +8768,2,31.0,3,0.0,9,111,4,52,54,9.0,0.0,0.0,1480.522741638118,0.0,0.0,37404.86,60,60,2,5800,201708768,,,,1100.0,2.0,0.0,3.0,1.0,3.0,1.8,4827.999782082042,0.0,1100.0,0.0,0.0,57300.0,1,1,3,69.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1480.522741638118,0.039581026145749994,0.025838093222305725,31833.333333333332,8,4,8,8_0,8_4,8_0_0 +8769,2,57.0,4,0.0,7,111,2,0,33,9.0,0.0,0.0,1507.4413369406293,0.0,0.0,29299.65087530163,0,30,2,5801,201708769,,,,900.0,1.0,2.0,4.0,0.0,1.0,1.0,2980.9733190345105,0.0,1120.0,0.0,0.0,32337.0,0,1,3,78.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1507.4413369406293,0.051449122836181596,0.046616610599023695,32337.0,9,5,9,9_0,9_4,9_0_0 +8770,2,59.0,2,0.0,3,111,2,43,37,10.0,0.0,166.55115834761278,814.287507900965,0.0,1769.3219420432229,46304.36,31,31,1,5802,201708770,,,229.0,,2.0,2.0,8.0,0.0,2.0,1.5,2790.7339029681602,0.0,605.0,1000.0,0.0,60339.0,1,1,1,270.0,8,6.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2750.1606082918006,0.0593931242822879,0.04557849166031589,40226.0,9,5,9,9_1,9_2,9_0_1 +8771,2,92.0,3,0.0,1,112,2,0,77,4.0,0.0,0.0,333.79058175113937,0.0,2450.5108897298637,13894.98,0,70,1,5805,201708771,,,74.0,,0.0,2.0,2.0,0.0,1.0,1.0,3105.8020399265642,0.0,248.0,1385.0,0.0,16573.0,0,5,1,40.0,10,2.0,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2784.3014714810033,0.20038182649280556,0.1680022609956558,16573.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +8772,2,76.0,3,0.0,1,112,5,0,71,6.0,0.0,0.0,981.1827987765347,307.86201791552077,0.0,23418.385846751302,0,70,1,5806,201708772,,,104.0,,0.0,4.0,5.0,0.0,1.0,1.0,2945.0916341867746,0.0,729.0,0.0,0.0,22931.0,0,5,1,85.0,8,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1289.0448166920555,0.05504413605307803,0.05621406901975734,22931.0,6,3,6,6_1,6_0,6_1_0 +8773,2,57.0,2,0.0,6,111,4,75,33,9.0,0.0,0.0,2651.481637297357,0.0,0.0,52007.61175060326,50,60,1,5807,201708773,,,400.0,,2.0,1.0,4.0,1.0,3.0,2.0,3028.9480567797737,0.0,1970.0,0.0,0.0,64649.0,5,1,1,95.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2651.481637297357,0.05098256866729899,0.04101349807881571,32324.5,9,5,9,9_1,9_4,9_0_0 +8774,1,40.0,3,234.0,3,111,1,85,64,2.0,0.0,0.0,1211.3367886130059,0.0,884.6609710216114,31399.079999999998,31,71,2,5808,201708774,600.0,600.0,,196.0,1.0,0.0,4.0,3.0,5.0,2.4,2810.0966048024716,0.0,900.0,500.0,0.0,28628.0,6,1,3,72.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,2095.997759634617,0.06675347684182521,0.07321495597438232,11928.333333333334,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +8775,2,67.0,2,0.0,4,112,4,0,77,6.0,0.0,0.0,139.97669557305844,0.0,0.0,18094.6,0,70,1,5809,201708775,,,150.0,,0.0,2.0,6.0,0.0,1.0,1.0,2390.698774673714,0.0,104.0,0.0,0.0,24126.0,0,5,1,100.0,10,2.0,1,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,139.97669557305844,0.007735827018727048,0.005801902328320419,24126.0,7,4,7,7_1,7_1,7_0_1 +8776,2,49.0,2,0.0,5,120,2,0,47,9.0,1689.5756497329096,0.0,484.5347154452023,56.61830214538313,0.0,44478.399999999994,0,31,1,581,201708776,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2020.4125993153332,0.0,360.0,0.0,0.0,36911.0,0,1,1,120.0,0,0.0,1,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2230.728667323495,0.0501530780631384,0.06043533546431944,36911.0,9,5,9,9_1,9_0,9_0_0 +8777,2,71.0,2,0.0,5,111,2,0,77,5.0,0.0,0.0,646.0462872602698,0.0,1238.525359430256,21094.9971719182,0,71,1,5811,201708777,,,300.0,,0.0,2.0,4.0,0.0,1.0,1.0,4753.690524723888,0.0,480.0,700.0,0.0,20281.0,0,5,1,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1884.5716466905258,0.08933737375415628,0.09292301398799496,20281.0,5,3,5,5_1,5_4,5_0_0 +8778,2,33.0,1,0.0,6,111,2,0,46,6.0,0.0,0.0,578.7497990039916,0.0,1468.537211895875,30630.280000000002,0,20,2,5812,201708778,,,,,1.0,0.0,3.0,2.0,3.0,1.6,1105.396753942585,0.0,430.0,830.0,0.0,38566.0,0,1,2,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2047.2870108998668,0.06683866457962077,0.05308528265570365,24103.75,7,4,7,7_0,7_4,7_0_0 +8779,1,25.0,4,340.0,5,111,1,0,54,4.0,0.0,0.0,242.26735772260116,0.0,141.54575536345783,34749.3,0,50,2,5814,201708779,,,,,1.0,0.0,3.0,1.0,2.0,1.3,1242.2257102045442,0.0,180.0,80.0,0.0,21625.0,0,1,3,60.0,5,4.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,383.813113086059,0.011045204164862571,0.017748583264095213,16634.615384615383,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +8780,1,31.0,3,400.0,8,112,6,0,56,1.0,0.0,0.0,1615.1157181506744,0.0,0.0,8493.530875301627,0,50,1,5815,201708780,,,,,1.0,0.0,3.0,2.0,3.0,1.6,479.06219638385886,0.0,1200.0,0.0,0.0,15140.0,0,1,3,85.0,9,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1615.1157181506744,0.1901583383710626,0.1066787132199917,9462.5,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +8781,2,44.0,2,0.0,9,112,4,0,33,8.0,0.0,0.0,1707.610475021282,0.0,774.3087037402923,76954.11509613442,0,20,1,5818,201708781,,,180.0,,1.0,0.0,4.0,1.0,2.0,1.3,2476.2675223305437,746.3520236995025,960.0,0.0,0.0,41874.0,0,1,1,105.0,8,3.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2481.919178761574,0.0322519357887626,0.059271127161522046,32210.76923076923,9,5,9,9_1,9_1,9_0_0 +8782,2,50.0,5,0.0,99,111,2,0,52,7.0,0.0,97.1548423694408,1136.4855277438885,0.0,487.5440983864613,24622.40101278148,0,70,1,5819,201708782,,,600.0,,2.0,1.0,3.0,2.0,3.0,2.0,677.1172594764123,469.94115230239237,650.0,0.0,0.0,51980.0,0,1,2,80.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1721.1844684997905,0.06990319374647193,0.03311243686994595,25990.0,7,4,7,7_1,7_3,7_0_0 +8783,2,70.0,2,0.0,4,112,4,0,77,5.0,0.0,0.0,1609.7319990901722,0.0,0.0,23043.838002984747,0,70,1,582,201708783,,,154.0,,0.0,1.0,5.0,0.0,1.0,1.0,2225.2897331472805,0.0,1196.0,0.0,0.0,20529.0,0,5,5,110.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1609.7319990901722,0.06985520375909916,0.07841258702762785,20529.0,5,3,5,5_1,5_0,5_0_1 +8784,2,44.0,2,0.0,9,111,2,0,34,9.0,0.0,0.0,655.4677956161487,0.0,1282.7584079813366,28493.900000000005,0,10,1,5820,201708784,,,304.0,,1.0,0.0,4.0,1.0,2.0,1.3,1988.374146864153,0.0,487.0,725.0,0.0,47222.0,0,1,3,80.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1938.2262035974854,0.06802249616926728,0.04104498334669191,36324.61538461538,9,5,9,9_1,9_3,9_0_0 +8785,2,27.0,3,0.0,1,111,1,38,38,8.0,0.0,0.0,371.4766151746551,0.0,0.0,33653.53735404116,0,0,2,5821,201708785,,,,675.0,2.0,0.0,3.0,0.0,2.0,1.5,2862.752187655063,0.0,276.0,0.0,0.0,40010.0,1,1,3,79.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,371.4766151746551,0.011038263563994935,0.009284594230808674,26673.333333333332,7,4,7,7_0,7_3,7_1_0 +8786,2,49.0,1,0.0,1,111,2,34,38,10.0,3966.1400228472053,0.0,942.1508355878933,0.0,0.0,72807.34,30,12,1,5822,201708786,,,350.0,,2.0,0.0,6.0,2.0,4.0,2.5,1945.1439278821679,0.0,700.0,0.0,0.0,198955.0,1,1,1,95.0,10,8.0,4,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4908.290858435099,0.06741478068605582,0.024670356907014645,79582.0,10,5,10,10_1,10_4,10_1_0 +8787,1,67.0,3,61.0,2,112,1,0,77,2.0,0.0,0.0,497.99401309645793,0.0,0.0,9458.26,0,70,2,5824,201708787,,,55.0,121.0,0.0,0.0,4.0,0.0,1.0,1.0,2164.381682870348,0.0,370.0,0.0,0.0,12554.0,0,5,3,97.0,6,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,497.99401309645793,0.05265175762734984,0.039668154619759276,12554.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +8788,2,68.0,3,0.0,6,120,2,78,78,2.0,0.0,0.0,109.02031097517052,0.0,0.0,12088.520315994116,71,71,1,5825,201708788,,,290.0,,0.0,3.0,5.0,0.0,2.0,1.5,1883.2748847488324,0.0,81.0,0.0,0.0,14168.0,6,5,1,90.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,109.02031097517052,0.009018499214575303,0.007694827143927902,9445.333333333334,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +8789,2,77.0,1,0.0,9,111,4,75,74,9.0,0.0,0.0,989.2583773672881,0.0,0.0,79378.62,50,44,1,5826,201708789,,,200.0,,0.0,2.0,4.0,0.0,2.0,1.5,1758.2238320222855,0.0,735.0,0.0,0.0,47962.0,5,5,1,125.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,989.2583773672881,0.012462529297779277,0.02062587834884467,31974.666666666668,9,5,9,9_1,9_3,9_0_0 +8790,2,50.0,3,0.0,1,112,2,0,54,2.0,0.0,388.6193694777632,969.0694308904046,0.0,0.0,39335.4,0,50,2,5827,201708790,,,,,1.0,0.0,4.0,1.0,2.0,1.5,3222.7281434935844,0.0,720.0,0.0,0.0,19791.0,0,1,3,90.0,8,0.0,2,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1357.688800368168,0.03451569833707469,0.06860132385266879,13194.0,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +8791,1,45.0,4,348.0,6,111,1,0,85,1.0,0.0,0.0,336.4824412813905,0.0,212.31863304518674,15883.180315994117,0,31,2,5828,201708791,,,,,0.0,0.0,5.0,2.0,3.0,2.0,1048.8706709403587,0.0,250.0,120.0,0.0,11852.0,0,7,3,75.0,5,4.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,548.8010743265772,0.03455234174820411,0.046304511839906956,5926.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8792,2,85.0,3,0.0,1,111,2,0,75,10.0,0.0,0.0,493.95622380108125,0.0,1397.7643342141462,12863.000315994117,0,41,1,5829,201708792,,,125.0,,0.0,2.0,3.0,0.0,1.0,1.0,1926.090030364468,0.0,367.0,790.0,0.0,56849.0,0,6,1,75.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1891.7205580152274,0.14706682045735656,0.033276232792401404,56849.0,10,5,10,10_1,10_3,10_1_0 +8793,2,53.0,2,0.0,2,111,2,75,22,3.0,0.0,0.0,578.7497990039916,0.0,2830.9151072691566,46290.2953688767,30,41,2,583,201708793,,,,,1.0,2.0,7.0,0.0,2.0,1.5,2386.19886986346,0.0,430.0,1600.0,0.0,20805.0,6,1,1,180.0,8,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3409.664906273148,0.07365830956796265,0.16388680155122076,13870.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +8794,2,41.0,3,0.0,8,120,2,52,62,5.0,0.0,0.0,853.3194710896063,0.0,2300.11852465619,36648.34282119945,50,50,1,5830,201708794,,,304.0,,2.0,0.0,5.0,3.0,5.0,2.6,2581.350921275165,0.0,634.0,1300.0,0.0,52698.0,1,1,2,120.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3153.4379957457963,0.08604585509175253,0.059839804086413075,20268.46153846154,5,3,5,5_1,5_0,5_0_0 +8795,2,31.0,2,0.0,9,112,6,47,42,8.0,0.0,0.0,1009.4473238441715,0.0,0.0,35465.979999999996,43,10,2,5831,201708795,,,504.0,,2.0,0.0,2.0,0.0,2.0,1.5,8410.80076015024,0.0,750.0,0.0,0.0,44035.0,1,1,2,46.0,7,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1009.4473238441715,0.028462411692674827,0.022923749831819495,29356.666666666668,8,4,8,8_0,8_1,8_0_0 +8796,2,81.0,3,0.0,4,111,1,0,78,3.0,0.0,0.0,275.9156018507402,0.0,385.7121833654226,20218.52,0,41,2,5832,201708796,,,72.0,227.0,0.0,0.0,2.0,0.0,1.0,1.0,2316.947604115131,0.0,205.0,218.0,0.0,13445.0,0,5,3,40.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,661.6277852161628,0.03272384849218255,0.04920995055531148,13445.0,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +8797,2,43.0,3,0.0,2,112,2,85,63,2.0,1159.699342680523,0.0,1106.3542669332119,169.8549064361494,0.0,31550.4,42,43,1,5835,201708797,,,200.0,,1.0,0.0,5.0,2.0,4.0,2.3,4154.176394442763,0.0,822.0,0.0,0.0,29317.0,6,1,2,76.0,9,1.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2435.9085160498844,0.07720689804407818,0.08308860101817664,12746.521739130436,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +8798,2,82.0,3,0.0,7,111,2,77,78,5.0,0.0,0.0,650.0840765556464,0.0,1068.6704529941067,17376.36,60,71,2,5836,201708798,,,600.0,446.0,0.0,5.0,3.0,0.0,2.0,1.5,2551.7745751895004,0.0,483.0,604.0,0.0,28163.0,5,5,3,70.0,8,6.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1718.754529549753,0.0989133817180211,0.06102881545111504,18775.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +8799,2,45.0,2,0.0,3,112,1,0,43,6.0,0.0,0.0,258.4185149041079,0.0,244.16642800196476,25840.36,0,33,2,5837,201708799,,,,,1.0,0.0,3.0,2.0,3.0,1.6,791.2238811537951,0.0,192.0,138.0,0.0,33532.0,0,1,2,59.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,502.5849429060727,0.019449610721602666,0.014988218504893017,20957.5,5,3,5,5_0,5_2,5_0_1 +8800,2,30.0,3,0.0,5,111,4,46,47,8.0,0.0,0.0,672.964882562781,0.0,0.0,40077.38,31,43,2,5839,201708800,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2385.8139157706923,0.0,500.0,0.0,0.0,42987.0,4,1,1,56.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,672.964882562781,0.016791638639122145,0.015655079036982832,28658.0,8,4,8,8_0,8_3,8_0_0 +8801,1,29.0,3,133.0,4,111,1,0,62,4.0,0.0,0.0,323.0231436301349,0.0,247.7050718860512,34090.1,0,50,2,5841,201708801,,,,218.0,2.0,0.0,3.0,1.0,3.0,1.8,1610.2352062538282,0.0,240.0,140.0,0.0,31152.0,0,1,3,55.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,570.7282155161861,0.016741758326205735,0.0183207567898108,17306.666666666668,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +8802,2,76.0,3,0.0,9,112,6,0,77,2.0,237.96840137083234,0.0,195.1598159432065,123.8525359430256,0.0,28329.600000000002,0,70,8,5843,201708802,,,,,0.0,0.0,3.0,0.0,1.0,1.0,9866.189967686583,0.0,145.0,0.0,0.0,10490.0,0,5,5,110.0,7,1.0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,556.9807532570644,0.019660734823543725,0.053096353980654376,10490.0,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +8803,2,61.0,2,0.0,1,300,2,56,75,3.0,0.0,0.0,930.0374677017633,0.0,2027.6429455815335,31889.20822934279,71,44,1,5844,201708803,,,255.0,,1.0,2.0,6.0,0.0,2.0,1.5,1827.043881742743,0.0,691.0,1146.0,0.0,31610.0,1,5,1,135.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2957.6804132832967,0.09274863119874495,0.09356787134714636,21073.333333333332,5,3,5,5_1,5_0,5_1_0 +8804,2,45.0,3,0.0,5,111,6,54,46,7.0,0.0,0.0,2853.3711020661913,0.0,0.0,39722.90000000001,60,30,1,5845,201708804,,,250.0,,2.0,0.0,6.0,2.0,4.0,2.1,772.7962261288208,0.0,2120.0,0.0,0.0,50257.0,1,1,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2853.3711020661913,0.07183189299034538,0.05677559548055378,23931.90476190476,7,4,7,7_1,7_3,7_0_0 +8805,2,54.0,3,0.0,1,400,2,63,42,8.0,2865.139552504821,0.0,1176.857800258733,0.0,211.6413844234679,52583.431774935496,50,41,1,5846,201708805,,,,,2.0,2.0,5.0,1.0,3.0,2.0,1952.3277913580528,204.0,790.0,0.0,0.0,58082.0,1,1,1,110.0,0,0.0,4,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4253.638737187021,0.08089313674682161,0.07323505969469063,29041.0,8,4,8,8_1,8_0,8_1_0 +8806,1,32.0,5,379.0,9,111,2,0,55,2.0,0.0,0.0,403.7789295376686,0.0,707.7287768172891,12730.036974448147,0,42,2,5849,201708806,,,,101.0,1.0,0.0,3.0,1.0,2.0,1.3,1112.3302136157752,0.0,300.0,400.0,0.0,16158.0,0,4,3,69.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1111.5077063549577,0.08731378460141057,0.06878993107779166,12429.23076923077,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8807,2,55.0,2,0.0,5,112,2,38,37,8.0,0.0,0.0,852.9131071579112,0.0,1589.3852987095727,41069.869322168444,20,44,1,585,201708807,,,617.0,,2.0,0.0,4.0,1.0,3.0,1.8,1749.0733544647605,1532.0,0.0,0.0,0.0,56367.0,1,1,1,90.0,9,3.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2442.298405867484,0.0594669144600661,0.04332851501530122,31315.0,8,4,8,8_1,8_1,8_0_0 +8808,2,51.0,2,0.0,7,211,2,34,38,10.0,0.0,1387.9263195634398,1002.1172277312272,0.0,1867.4239802070697,58343.64,10,12,1,5850,201708808,,,645.0,,2.0,0.0,6.0,3.0,5.0,2.8,1370.6439783550654,1800.0,0.0,0.0,0.0,113776.0,1,1,1,140.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4257.467527501736,0.07297226445764673,0.03741973287425939,40634.28571428572,10,5,10,10_1,10_1,10_0_0 +8809,2,86.0,3,0.0,99,112,1,0,86,3.0,0.0,0.0,2220.7841124571773,0.0,0.0,14468.84,0,71,2,5851,201708809,,,,,0.0,4.0,1.0,0.0,1.0,1.0,4049.3734702746256,0.0,1650.0,0.0,0.0,14597.0,0,5,3,35.0,9,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2220.7841124571773,0.15348736404972183,0.15213976244825494,14597.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +8810,2,62.0,3,0.0,1,111,2,54,52,5.0,0.0,0.0,403.7789295376686,0.0,955.4338487033403,18091.7,71,71,2,5852,201708810,,,,1.0,2.0,0.0,2.0,0.0,2.0,1.5,2282.520478467254,0.0,300.0,540.0,0.0,28634.0,1,1,3,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1359.212778241009,0.0751290800887152,0.047468491242613986,19089.333333333332,5,3,5,5_0,5_4,5_1_0 +8811,1,45.0,3,221.0,9,400,4,0,56,2.0,0.0,0.0,1545.127370364145,123.8525359430256,0.0,13419.76,0,42,1,5853,201708811,,,197.0,170.0,1.0,0.0,3.0,1.0,2.0,1.5,214.4631630229398,0.0,1148.0,0.0,0.0,19565.0,0,1,3,68.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1668.9799063071705,0.12436734385020079,0.08530436525975826,13043.333333333334,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +8812,2,68.0,2,0.0,3,111,1,0,77,6.0,0.0,0.0,632.5869896090142,0.0,0.0,20582.34,0,50,2,5856,201708812,,,,457.0,0.0,2.0,4.0,0.0,1.0,1.0,2511.7128510767766,0.0,470.0,0.0,0.0,21310.0,0,5,3,84.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,632.5869896090142,0.030734454372487004,0.02968498308817523,21310.0,6,3,6,6_0,6_2,6_0_1 +8813,2,75.0,3,0.0,6,111,4,75,75,9.0,253.83296146222114,194.3096847388816,2288.080600713455,636.9558991355602,0.0,56016.659999999996,33,12,1,5857,201708813,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1856.593932670167,0.0,1700.0,0.0,0.0,56944.0,5,5,1,150.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3373.179146050118,0.06021742720915739,0.05923677904696049,37962.666666666664,9,5,9,9_1,9_3,9_0_0 +8814,0,65.0,3,0.0,1,111,4,0,74,1.0,0.0,0.0,1211.3367886130059,0.0,0.0,23561.960000000003,0,70,3,5858,201708814,,,,,0.0,0.0,1.0,0.0,1.0,1.0,4424.49079286675,0.0,900.0,0.0,0.0,9598.0,0,5,5,22.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1211.3367886130059,0.051410697098756036,0.12620720864899,9598.0,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +8815,2,70.0,2,0.0,1,300,5,77,72,1.0,0.0,69.396315978172,601.6306050111261,88.46609710216114,0.0,8509.96,70,70,1,5859,201708815,,,103.0,,0.0,1.0,3.0,0.0,2.0,1.5,2612.532735570402,0.0,447.0,0.0,0.0,14620.0,5,5,1,70.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,759.4930180914592,0.08924754265489607,0.05194890684620104,9746.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8816,2,64.0,3,0.0,3,112,2,0,77,7.0,3268.099378826097,0.0,1299.2568199315303,146.8537211895875,191.42631842468336,21186.330247756014,0,30,1,586,201708816,,,298.0,,0.0,2.0,8.0,0.0,2.0,1.5,3119.574470709409,184.51480585904366,889.0,0.0,0.0,37739.0,0,5,1,202.0,6,0.0,5,9,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4905.636238371899,0.2315472373461887,0.12998850627658123,25159.333333333332,7,4,7,7_1,7_0,7_0_1 +8817,2,42.0,2,0.0,7,111,4,0,54,6.0,0.0,0.0,1507.4413369406293,0.0,0.0,49075.55999999999,0,31,2,5860,201708817,,,,720.0,1.0,0.0,3.0,1.0,3.0,1.8,5115.911916461769,0.0,1120.0,0.0,0.0,40865.0,0,1,3,86.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1507.4413369406293,0.030716742446558525,0.03688832342935591,22702.777777777777,6,3,6,6_0,6_4,6_0_0 +8818,2,60.0,3,0.0,1,111,4,0,78,6.0,0.0,0.0,1480.522741638118,0.0,0.0,19131.70784974977,0,50,1,5863,201708818,,,80.0,,0.0,1.0,2.0,0.0,1.0,1.0,1900.728153281179,0.0,1100.0,0.0,0.0,23757.0,0,5,2,42.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1480.522741638118,0.07738581172498316,0.0623194318153857,23757.0,6,3,6,6_1,6_3,6_1_0 +8819,2,31.0,2,0.0,9,112,4,46,64,8.0,0.0,0.0,1822.3889019800108,0.0,0.0,40889.15363290217,60,43,1,5864,201708819,,,365.0,,2.0,0.0,4.0,0.0,2.0,1.5,1656.3790191438734,0.0,1354.0,0.0,0.0,45980.0,1,1,2,90.0,10,3.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1822.3889019800108,0.04456900522669645,0.03963438238321033,30653.333333333332,8,4,8,8_1,8_1,8_0_0 +8820,2,54.0,1,0.0,6,111,2,62,21,9.0,0.0,138.792631956344,306.2024862512083,0.0,570.6017717299379,25940.799999999996,50,71,1,5865,201708820,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2523.11206285686,550.0,0.0,0.0,0.0,53953.0,1,1,1,100.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1015.5968899374902,0.03915056166107022,0.018823733433497494,35968.666666666664,9,5,9,9_1,9_2,9_0_0 +8821,2,78.0,3,0.0,4,112,2,86,78,3.0,1373.870903914272,208.188947934516,686.4241802140366,226.47320858153253,0.0,32235.980000000003,71,71,1,5866,201708821,,,504.0,,0.0,3.0,4.0,0.0,2.0,1.5,2331.031957259185,0.0,510.0,0.0,0.0,20369.0,5,5,1,85.0,9,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2494.957240644357,0.07739666176255094,0.12248795918524999,13579.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +8822,2,76.0,3,0.0,5,221,2,0,77,4.0,0.0,0.0,323.0231436301349,3538.6438840864457,0.0,15525.9258467513,0,71,1,5869,201708822,,,210.0,,0.0,2.0,4.0,0.0,1.0,1.0,2879.114629296854,0.0,240.0,0.0,0.0,17699.0,0,5,1,71.0,1,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3861.6670277165804,0.2487237840650005,0.21818560527242106,17699.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +8823,1,38.0,4,191.0,9,111,2,21,85,2.0,0.0,0.0,597.5928157157495,0.0,1337.6073881846764,38807.92,41,44,1,587,201708823,,,456.0,,1.0,1.0,4.0,2.0,4.0,2.1,2350.7137044245937,0.0,444.0,756.0,0.0,28162.0,1,7,3,71.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1935.200203900426,0.04986611505848358,0.06871671770117271,13410.476190476189,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +8824,2,26.0,2,0.0,7,112,5,46,53,6.0,0.0,555.170527825376,0.0,0.0,0.0,45480.979999999996,42,43,1,5870,201708824,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3361.9003509664444,0.0,0.0,0.0,0.0,37239.0,1,1,2,90.0,6,0.0,4,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,555.170527825376,0.012206652711207543,0.014908309240994011,20688.333333333332,5,3,5,5_1,5_0,5_0_0 +8825,2,69.0,3,0.0,1,112,2,78,78,6.0,0.0,0.0,940.8767304809855,0.0,1753.3036258610819,17461.4,70,70,1,5871,201708825,,,80.0,,0.0,2.0,5.0,0.0,2.0,1.5,2187.3917267895163,1690.0,0.0,0.0,0.0,34326.0,5,5,1,120.0,8,3.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2694.180356342067,0.15429349057590266,0.07848803694989416,22884.0,6,3,6,6_1,6_1,6_1_0 +8826,2,84.0,2,0.0,1,111,2,0,86,4.0,0.0,0.0,621.3126811933608,0.0,1157.802867728383,38990.39119129574,0,60,2,5872,201708826,,,,,0.0,2.0,6.0,0.0,1.0,1.0,1956.355767757254,1116.0,0.0,0.0,0.0,21481.0,0,6,1,200.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1779.115548921744,0.04562958961332288,0.08282275261495015,21481.0,6,3,6,6_0,6_4,6_1_0 +8827,2,72.0,3,0.0,8,111,2,0,74,7.0,0.0,0.0,430.9104079244277,0.0,802.9923114890399,15937.44,0,30,2,5873,201708827,,,,,0.0,0.0,3.0,0.0,1.0,1.0,1949.3752406652816,774.0,0.0,0.0,0.0,28440.0,0,5,1,50.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1233.9027194134676,0.07742163857015101,0.04338617156868733,28440.0,8,4,8,8_0,8_3,8_0_0 +8828,2,67.0,2,0.0,6,112,2,77,75,8.0,856.6862449349964,0.0,1783.3569387913697,0.0,0.0,87076.59999999999,50,44,1,5874,201708828,,,832.0,,0.0,1.0,7.0,0.0,2.0,1.5,1561.3490373012685,0.0,1325.0,0.0,0.0,41188.0,5,5,1,105.0,8,2.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2640.043183726366,0.0303186296172148,0.06409738719351185,27458.666666666668,8,4,8,8_1,8_1,8_0_0 +8829,2,46.0,1,0.0,8,111,2,38,46,9.0,0.0,0.0,775.2555447123236,0.0,1985.179218972496,54616.940315994114,31,31,1,5875,201708829,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.3,1820.9750804842568,0.0,576.0,1122.0,0.0,74314.0,1,1,2,149.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2760.4347636848197,0.05054173206543482,0.03714555485756142,32310.4347826087,9,5,9,9_1,9_2,9_0_0 +8830,2,60.0,2,0.0,4,111,1,43,47,10.0,0.0,0.0,1345.929765125562,0.0,318.4779495677801,57251.880000000005,33,31,2,5877,201708830,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2390.4322659155387,0.0,1000.0,180.0,0.0,72004.0,1,1,1,78.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1664.407714693342,0.029071669169524948,0.023115489621317455,48002.666666666664,10,5,10,10_0,10_4,10_0_1 +8831,1,19.0,1,141.0,4,111,1,0,84,1.0,0.0,0.0,344.55801987214386,0.0,0.0,7804.58,0,60,2,5878,201708831,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2253.333828894886,0.0,256.0,0.0,0.0,4294.0,0,3,3,15.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,344.55801987214386,0.04414818220482638,0.08024173727809591,4294.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8832,2,56.0,1,0.0,4,111,2,62,38,7.0,1903.7472109666587,0.0,1002.7176750185437,0.0,0.0,42158.28,50,50,1,5879,201708832,,,297.0,,2.0,2.0,5.0,0.0,2.0,1.5,1638.4138495869558,0.0,745.0,0.0,0.0,41698.0,1,1,1,160.0,7,5.0,3,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2906.4648859852023,0.06894173305896736,0.06970274080256132,27798.666666666668,8,4,8,8_1,8_2,8_0_1 +8833,2,32.0,3,0.0,99,111,2,43,46,5.0,0.0,0.0,787.2187555621974,0.0,1466.9652822293313,30964.168161188147,33,44,1,588,201708833,,,350.0,,2.0,0.0,6.0,3.0,5.0,2.4,1669.3949055320868,1414.0,0.0,0.0,0.0,48310.0,1,1,2,100.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2254.1840377915287,0.07279976087382907,0.04666081634840672,20129.166666666668,5,3,5,5_1,5_2,5_0_0 +8834,0,36.0,2,0.0,3,112,2,46,43,9.0,0.0,0.0,0.0,0.0,0.0,59324.08,31,33,1,5880,201708834,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1917.6035950810824,0.0,0.0,0.0,0.0,94439.0,1,1,5,65.0,9,2.0,3,8,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0.0,0.0,0.0,62959.333333333336,10,5,10,10_1,10_1,10_0_1 +8835,1,45.0,2,462.0,99,120,2,85,64,3.0,0.0,0.0,1292.0925745205395,84.9274532180747,0.0,23662.7516935026,71,50,1,5882,201708835,,,880.0,,1.0,3.0,4.0,3.0,5.0,2.4,356.77529828739847,0.0,960.0,0.0,0.0,32624.0,6,1,3,100.0,0,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1377.0200277386143,0.05819357129613634,0.04220880418521991,13593.333333333334,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +8836,2,38.0,3,0.0,99,112,4,0,38,10.0,0.0,0.0,450.3960206858683,0.0,839.3033333263996,20584.7858467513,0,50,2,5883,201708836,,,189.0,850.0,1.0,2.0,3.0,0.0,1.0,1.0,5003.263811912021,809.0,0.0,0.0,0.0,52940.0,0,1,3,62.0,10,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1289.699354012268,0.06265303722923156,0.024361529165324292,52940.0,10,5,10,10_0,10_2,10_0_0 +8837,1,22.0,2,246.0,9,111,2,0,43,5.0,0.0,0.0,956.9560630042746,0.0,0.0,6953.78,0,44,2,5884,201708837,,,100.0,74.0,1.0,0.0,1.0,0.0,1.0,1.0,3266.4032929106743,0.0,711.0,0.0,0.0,18683.0,0,1,3,35.0,7,5.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,956.9560630042746,0.13761667222780627,0.05122068527561283,18683.0,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +8838,2,64.0,3,0.0,6,112,2,56,77,6.0,0.0,0.0,1942.1766510761859,347.1409650288804,0.0,26186.9058467513,50,50,1,5885,201708838,,,382.0,,2.0,1.0,5.0,1.0,3.0,2.0,2543.6600721862706,0.0,1443.0,0.0,0.0,46679.0,1,5,2,134.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2289.317616105066,0.087422226570119,0.04904384447192669,23339.5,6,3,6,6_1,6_0,6_0_0 +8839,2,87.0,2,0.0,4,112,1,78,78,3.0,0.0,0.0,598.938745480875,1233.2173936041263,0.0,15456.92,71,70,2,5887,201708839,697.0,697.0,245.0,380.0,0.0,1.0,4.0,0.0,2.0,1.5,2131.623562638296,0.0,445.0,0.0,0.0,20861.0,5,5,3,70.0,10,5.0,3,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1832.1561390850013,0.11853306733068433,0.08782686060519636,13907.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +8840,2,32.0,2,0.0,1,300,5,46,62,7.0,0.0,832.755791738064,1938.1388617808093,0.0,0.0,33920.08,20,31,1,5888,201708840,,,480.0,,2.0,0.0,5.0,0.0,2.0,1.5,2120.6467874052173,0.0,1440.0,0.0,0.0,36548.0,1,1,2,90.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2770.8946535188734,0.08168891858506445,0.07581521980734578,24365.333333333332,7,4,7,7_1,7_0,7_1_0 +8841,2,40.0,1,0.0,2,111,3,0,34,9.0,0.0,222.0682111301504,608.360253836754,0.0,803.2721616876232,33281.53999999999,0,20,1,5889,201708841,,,150.0,,1.0,1.0,3.0,0.0,1.0,1.0,2058.3385111360103,0.0,452.0,454.0,0.0,39810.0,0,1,2,80.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1633.7006266545277,0.04908729063181956,0.041037443523097905,39810.0,9,5,9,9_1,9_3,9_0_1 +8842,2,85.0,2,0.0,4,111,2,72,75,8.0,2595.442030951211,0.0,666.2352337371532,0.0,217.62659887131642,20295.151191295743,50,60,1,5890,201708842,,,164.0,,0.0,1.0,5.0,0.0,2.0,1.5,1910.297954331901,0.0,495.0,123.0,0.0,39592.0,5,5,1,102.0,8,7.0,3,4,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3479.3038635596804,0.17143522759524435,0.08787896200140635,26394.666666666668,7,4,7,7_1,7_3,7_0_1 +8843,1,32.0,4,326.0,4,120,2,0,56,1.0,0.0,0.0,1049.8252167979383,0.0,583.8762408742635,9785.740000000002,0,50,2,5891,201708843,,,,,1.0,0.0,4.0,2.0,3.0,1.6,562.8119797485164,0.0,780.0,330.0,0.0,16278.0,0,1,3,64.0,0,2.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1633.7014576722017,0.16694715552142214,0.10036254193833405,10173.75,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +8844,2,52.0,4,0.0,4,112,2,38,34,2.0,1269.1648073111057,346.98157989085996,919.2700295807588,0.0,0.0,47230.840000000004,20,0,1,5893,201708844,,,180.0,,2.0,1.0,7.0,1.0,3.0,2.0,1750.1559380557374,0.0,683.0,0.0,0.0,23826.0,4,1,1,150.0,8,0.0,4,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2535.416416782725,0.05368137464382858,0.10641385111989947,11913.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +8845,2,51.0,2,0.0,1,300,2,54,13,5.0,0.0,0.0,1211.3367886130059,350.32574452455816,0.0,34201.58,31,50,1,5894,201708845,,,,,2.0,2.0,6.0,1.0,3.0,1.8,2059.512701834653,0.0,900.0,0.0,0.0,34809.0,1,1,1,160.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1561.662533137564,0.04566053770432722,0.044863757451738456,19338.333333333332,5,3,5,5_1,5_0,5_1_0 +8846,2,77.0,3,0.0,5,120,5,0,75,4.0,0.0,1040.94473967258,538.3719060502248,679.4196257445976,0.0,14577.92,0,70,1,5895,201708846,,,72.0,,0.0,0.0,2.0,0.0,1.0,1.0,2687.4843255775463,0.0,400.0,0.0,0.0,17770.0,0,5,1,55.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2258.7362714674027,0.15494228747773364,0.1271095256875297,17770.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8847,2,80.0,3,0.0,4,111,2,75,74,8.0,1329.4501356583833,0.0,1390.3454473747056,0.0,0.0,34788.722431255985,33,60,1,5898,201708847,,,334.0,,0.0,3.0,5.0,0.0,2.0,1.5,1695.9359223528227,0.0,1033.0,0.0,0.0,45038.0,5,5,1,130.0,9,7.0,3,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2719.795583033089,0.07818038125451494,0.060388906768353144,30025.333333333332,8,4,8,8_1,8_3,8_0_1 +8848,2,49.0,5,0.0,1,111,4,0,35,3.0,0.0,0.0,1049.8252167979383,0.0,0.0,27555.47665845403,0,30,2,5899,201708848,,,,,1.0,1.0,1.0,0.0,1.0,1.0,3505.859093218264,0.0,780.0,0.0,0.0,14943.0,0,1,2,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1049.8252167979383,0.03809860485486654,0.07025531799490987,14943.0,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +8849,2,54.0,4,0.0,7,111,2,0,62,2.0,0.0,0.0,821.0171567265928,0.0,1043.8999458055016,28305.599999999995,0,50,1,590,201708849,,,235.0,,1.0,0.0,4.0,1.0,2.0,1.5,2695.0854319265673,0.0,610.0,590.0,0.0,19861.0,0,1,2,68.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1864.9171025320943,0.06588509349853366,0.09389844934958433,13240.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +8850,2,36.0,3,0.0,99,111,2,33,37,8.0,0.0,0.0,1615.1157181506744,0.0,0.0,45394.24502683593,20,20,2,5900,201708850,,,,975.0,2.0,0.0,2.0,1.0,3.0,1.8,2804.3139440678474,0.0,1200.0,0.0,0.0,53011.0,1,1,3,52.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1615.1157181506744,0.03557974622544904,0.0304675580191031,29450.555555555555,8,4,8,8_0,8_4,8_0_0 +8851,2,35.0,2,0.0,9,211,2,42,38,8.0,0.0,0.0,152.0900634591885,0.0,0.0,74632.78175060326,30,12,1,5901,201708851,,,,,2.0,0.0,6.0,3.0,5.0,2.4,3178.4632532378255,0.0,113.0,0.0,0.0,68299.0,1,1,2,150.0,1,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,152.0900634591885,0.0020378452992335255,0.0022268270905750963,28457.916666666668,8,4,8,8_1,8_1,8_0_0 +8852,2,70.0,2,0.0,8,112,2,78,75,5.0,0.0,0.0,2288.080600713455,53.079658261296686,0.0,26576.120000000003,70,50,1,5903,201708852,,,300.0,,0.0,1.0,5.0,0.0,2.0,1.5,3420.9533357357623,0.0,1700.0,0.0,0.0,30930.0,5,5,1,107.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2341.1602589747517,0.08809262823071055,0.07569221658502269,20620.0,5,3,5,5_1,5_0,5_0_0 +8853,1,24.0,1,17.0,3,111,1,47,38,7.0,0.0,0.0,1130.581002705472,0.0,0.0,32120.800000000003,30,20,2,5904,201708853,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1458.398547776203,0.0,840.0,0.0,0.0,37681.0,1,1,2,72.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1130.581002705472,0.03519778469731364,0.03000400739644574,25120.666666666668,7,4,7,7_0,7_3,7_0_1 +8854,2,68.0,1,0.0,7,111,2,74,72,10.0,0.0,0.0,2691.859530251124,0.0,0.0,82663.63740677781,31,41,1,5905,201708854,,,110.0,,0.0,3.0,7.0,0.0,2.0,1.5,1471.9685472791493,0.0,2000.0,0.0,0.0,91380.0,5,5,1,180.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2691.859530251124,0.03256401018267328,0.02945786310189455,60920.0,10,5,10,10_1,10_3,10_0_0 +8855,2,39.0,1,0.0,1,211,2,33,31,10.0,0.0,0.0,1336.1563036416364,0.0,2489.898640276093,48871.025846751305,20,20,1,5906,201708855,,,240.0,,2.0,1.0,6.0,0.0,2.0,1.5,4008.0918260031235,2400.0,0.0,0.0,0.0,117198.0,1,1,2,100.0,1,3.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3826.0549439177294,0.0782888199628833,0.03264607709958983,78132.0,10,5,10,10_1,10_1,10_1_0 +8856,2,58.0,2,0.0,5,112,4,0,42,10.0,0.0,0.0,2829.1443662939314,61.9262679715128,0.0,27688.120000000003,0,31,1,5907,201708856,,,337.0,,1.0,1.0,5.0,0.0,1.0,1.0,1682.3656737047615,0.0,2102.0,0.0,0.0,46805.0,0,1,1,132.0,6,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2891.0706342654444,0.10441556285747981,0.06176841436311173,46805.0,10,5,10,10_1,10_1,10_0_0 +8857,2,78.0,2,0.0,5,300,5,78,75,5.0,0.0,735.6009493686231,1884.3016711757866,185.7788039145384,0.0,19438.42,71,71,1,5908,201708857,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2908.394106882449,0.0,1400.0,0.0,0.0,29572.0,5,5,1,90.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2805.681424458948,0.14433690724137807,0.09487628244484472,19714.666666666668,5,3,5,5_1,5_0,5_0_0 +8858,2,44.0,3,0.0,5,111,1,0,35,3.0,0.0,0.0,333.79058175113937,0.0,0.0,14859.0,0,30,2,5909,201708858,,,,395.0,1.0,0.0,3.0,0.0,1.0,1.0,3300.564988242387,0.0,248.0,0.0,0.0,14444.0,0,4,3,68.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,333.79058175113937,0.022463865788487743,0.023109289791687856,14444.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +8859,2,69.0,1,0.0,5,300,4,0,75,6.0,0.0,0.0,955.610133239149,56.61830214538313,0.0,25029.72,0,70,1,591,201708859,,,96.0,,0.0,3.0,3.0,0.0,1.0,1.0,2403.0400856124593,0.0,710.0,0.0,0.0,22990.0,0,5,1,79.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1012.2284353845322,0.040441061081967045,0.04402907504934894,22990.0,6,3,6,6_1,6_0,6_0_0 +8860,2,69.0,3,0.0,1,112,2,77,78,5.0,0.0,0.0,2344.609650848729,0.0,1464.9985680117886,25852.060315994113,71,50,1,5911,201708860,,,298.0,,0.0,2.0,4.0,0.0,2.0,1.5,1626.3254692262558,0.0,1742.0,828.0,0.0,28200.0,5,5,1,100.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3809.608218860518,0.14736188034125836,0.13509249003051482,18800.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8861,2,30.0,3,0.0,3,120,5,0,67,6.0,0.0,680.0838965860855,1911.220266478298,0.0,0.0,24770.40753375566,0,50,2,5913,201708861,,,,,1.0,0.0,5.0,0.0,1.0,1.0,3683.3674965672276,0.0,1420.0,0.0,0.0,24162.0,0,1,2,103.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,2591.304163064384,0.10461289986985908,0.10724708894397748,24162.0,7,4,7,7_0,7_0,7_0_1 +8862,2,41.0,3,0.0,1,111,2,56,47,4.0,0.0,0.0,969.0694308904046,0.0,1422.5348414027512,28126.269322168424,43,50,1,5915,201708862,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1963.9241632904245,0.0,720.0,804.0,0.0,30006.0,1,1,2,90.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2391.604272293156,0.08503098099854121,0.07970420156945798,16670.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +8863,2,24.0,3,0.0,99,111,4,31,43,7.0,0.0,0.0,962.3397820647768,0.0,0.0,22966.846349206346,30,30,2,5916,201708863,,,,450.0,2.0,0.0,1.0,0.0,2.0,1.5,3781.353033365816,0.0,715.0,0.0,0.0,36674.0,4,1,3,35.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,962.3397820647768,0.04190125920784209,0.026240382343479765,24449.333333333332,7,4,7,7_0,7_2,7_0_0 +8864,2,30.0,2,0.0,1,112,6,0,46,8.0,0.0,0.0,565.290501352736,0.0,0.0,19539.127196250443,0,30,1,5917,201708864,,,140.0,,1.0,0.0,4.0,0.0,1.0,1.0,1848.4037639367373,0.0,420.0,0.0,0.0,29798.0,0,1,2,80.0,8,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,565.290501352736,0.02893120535400451,0.018970753116072755,29798.0,8,4,8,8_1,8_1,8_1_0 +8865,2,89.0,3,0.0,3,111,1,0,78,6.0,0.0,0.0,269.1859530251124,0.0,398.09743695972514,9456.650875301628,0,70,2,5918,201708865,,,,249.0,0.0,2.0,2.0,0.0,1.0,1.0,4907.9489521085325,0.0,200.0,225.0,0.0,20946.0,0,5,3,45.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,667.2833899848375,0.07056233742620364,0.031857318341680395,20946.0,5,3,5,5_0,5_3,5_0_1 +8866,2,89.0,2,0.0,1,400,2,77,75,7.0,0.0,0.0,1480.522741638118,240.62778411787832,0.0,19660.345846751297,50,50,1,5919,201708866,,,321.0,,0.0,1.0,3.0,0.0,2.0,1.5,1968.4467852383266,0.0,1100.0,0.0,0.0,35855.0,5,5,5,70.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1721.1505257559963,0.08754426494691606,0.04800308257581917,23903.333333333332,7,4,7,7_1,7_0,7_1_0 +8867,2,71.0,2,0.0,5,111,4,0,74,9.0,0.0,0.0,672.964882562781,0.0,0.0,29118.739999999998,0,30,8,5921,201708867,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3298.5830810516804,0.0,500.0,0.0,0.0,35168.0,0,5,1,49.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,672.964882562781,0.0231110577780076,0.01913571663338208,35168.0,9,5,9,9_0,9_4,9_0_0 +8868,2,65.0,2,0.0,2,111,2,75,78,7.0,0.0,0.0,936.7671165273911,0.0,2255.8854761051093,24463.468161188146,50,50,1,5922,201708868,,,420.0,,0.0,2.0,6.0,0.0,2.0,1.5,1258.1988185448904,0.0,696.0,1275.0,0.0,37363.0,5,5,1,115.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3192.6525926325003,0.13050694903912752,0.08544957826278672,24908.666666666668,7,4,7,7_1,7_2,7_0_1 +8869,1,40.0,1,281.0,7,112,4,0,47,5.0,0.0,0.0,2951.6239749203573,0.0,0.0,37582.020000000004,0,42,1,5923,201708869,,,,234.0,1.0,0.0,4.0,3.0,4.0,2.1,291.46265577551975,0.0,2193.0,0.0,0.0,38746.0,0,1,3,92.0,8,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2951.6239749203573,0.07853819392678618,0.07617880490683832,18450.47619047619,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +8870,2,48.0,4,0.0,3,111,4,0,52,2.0,126.91648073111057,0.0,1601.6564204994188,141.54575536345783,0.0,17389.6,0,50,1,5925,201708870,,,240.0,,1.0,2.0,5.0,0.0,1.0,1.0,1702.7196339068923,0.0,1190.0,0.0,0.0,11988.0,0,4,1,109.0,5,4.0,1,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1870.1186565939872,0.10754236190562103,0.1559992206034357,11988.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +8871,2,50.0,3,0.0,99,111,1,0,62,5.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,19227.457285886518,0,50,2,5928,201708871,,,,,1.0,0.0,3.0,1.0,2.0,1.5,870.5990896818771,600.0,0.0,0.0,0.0,29387.0,0,1,3,74.0,6,4.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,956.5137359794323,0.0497472818042113,0.03254887317451364,19591.333333333332,5,3,5,5_0,5_2,5_0_0 +8872,2,42.0,2,0.0,7,112,2,42,67,7.0,0.0,1387.9263195634398,1430.7559870023408,95.54338487033404,860.3430041558803,49050.3486180253,30,60,1,5929,201708872,,,400.0,,2.0,0.0,7.0,3.0,5.0,2.4,1832.9499342269005,829.2800263327805,720.0,0.0,0.0,57478.0,1,1,2,140.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3774.5686955919955,0.0769529432907006,0.06566979880288103,23949.166666666668,7,4,7,7_1,7_0,7_0_0 +8873,2,49.0,3,0.0,1,111,2,0,37,7.0,0.0,0.0,932.7293272320144,0.0,1965.7166776100207,31543.119999999995,0,42,1,5930,201708873,,,803.0,,1.0,0.0,4.0,1.0,2.0,1.5,988.3273831054896,0.0,693.0,1111.0,0.0,42093.0,0,1,1,110.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2898.446004842035,0.09188837390981093,0.06885814755047241,28062.0,8,4,8,8_1,8_4,8_1_0 +8874,2,56.0,3,0.0,9,111,1,54,55,4.0,0.0,0.0,807.5578590753372,0.0,0.0,51810.34,42,50,2,5931,201708874,,,,530.0,2.0,0.0,4.0,1.0,3.0,2.0,1834.5024190928289,0.0,600.0,0.0,0.0,34198.0,1,1,3,67.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,807.5578590753372,0.015586808715699169,0.023614183843363272,17099.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +8875,2,44.0,2,0.0,99,112,2,0,37,8.0,0.0,0.0,545.5971573203348,0.0,1016.7086114460711,38138.950875301634,0,20,1,5932,201708875,,,300.0,520.0,1.0,0.0,3.0,0.0,1.0,1.0,2354.0560865418574,980.0,0.0,0.0,0.0,31970.0,0,1,3,70.0,9,1.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1562.305768766406,0.04096352240717083,0.048867868901044914,31970.0,9,5,9,9_1,9_1,9_0_0 +8876,2,65.0,2,0.0,7,112,5,75,74,10.0,0.0,416.377895869032,2691.859530251124,0.0,0.0,47518.400128597066,71,41,1,5933,201708876,,,400.0,,0.0,2.0,6.0,0.0,2.0,1.5,1442.707460679532,0.0,2000.0,0.0,0.0,65109.0,5,5,1,100.0,9,2.0,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3108.2374261201558,0.06541123896655743,0.04773898272312823,43406.0,10,5,10,10_1,10_1,10_0_0 +8877,2,51.0,2,0.0,5,112,4,85,38,10.0,0.0,111.0341055650752,2691.859530251124,0.0,0.0,31439.730875301633,43,31,1,5934,201708877,,,270.0,,1.0,0.0,7.0,2.0,4.0,2.3,1531.743030690866,0.0,2000.0,0.0,0.0,92501.0,6,1,1,120.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2802.893635816199,0.0891513240661386,0.030301225238821193,40217.82608695653,9,5,9,9_1,9_0,9_0_0 +8878,2,80.0,2,0.0,7,112,5,0,78,10.0,0.0,624.566843803548,672.964882562781,61.9262679715128,0.0,20440.754007939446,0,60,1,5935,201708878,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2492.6689580700313,0.0,500.0,0.0,0.0,45353.0,0,5,1,95.0,6,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1359.4579943378417,0.0665072332365925,0.029975040115049537,45353.0,10,5,10,10_1,10_1,10_0_0 +8879,2,93.0,4,0.0,2,112,2,0,,3.0,1396.0812880422163,0.0,242.26735772260116,0.0,0.0,17425.520315994116,0,70,1,5936,201708879,,,94.0,,0.0,0.0,5.0,0.0,1.0,1.0,1688.7855662934326,0.0,180.0,0.0,0.0,14120.0,0,8,1,120.0,9,3.0,1,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1638.3486457648175,0.09402007033678356,0.11603035734878311,14120.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +8880,0,67.0,3,0.0,1,400,2,71,72,2.0,3648.848821019429,0.0,2422.6735772260117,230.01185246561897,0.0,32618.120000000003,71,70,1,5937,201708880,,,500.0,,0.0,3.0,5.0,0.0,2.0,1.5,2801.4333300668072,0.0,1800.0,0.0,0.0,18930.0,5,5,5,170.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6301.53425071106,0.19319121551797158,0.3328861199530407,12620.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8881,1,41.0,4,103.0,7,120,2,0,52,2.0,0.0,0.0,48.45347154452023,0.0,152.16168701571718,10669.68,0,50,2,5938,201708881,,,,387.0,1.0,0.0,3.0,1.0,2.0,1.5,2805.4154155997066,0.0,36.0,86.0,0.0,19213.0,0,4,3,75.0,0,1.0,2,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,200.6151585602374,0.01880235944847806,0.010441636317089336,12808.666666666666,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +8882,2,32.0,2,0.0,3,111,1,84,46,8.0,0.0,0.0,488.572504740579,0.0,0.0,33894.92,31,31,2,5939,201708882,,,,700.0,1.0,0.0,2.0,0.0,2.0,1.5,5579.185559632007,0.0,363.0,0.0,0.0,41810.0,3,1,3,47.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,488.572504740579,0.014414328304671585,0.011685541849810547,27873.333333333332,8,4,8,8_0,8_4,8_0_1 +8883,1,27.0,4,350.0,1,111,2,0,85,2.0,0.0,0.0,757.1552387302605,0.0,1410.9425628231193,8333.720000000001,0,43,1,594,201708883,,,400.0,20.0,0.0,0.0,3.0,1.0,2.0,1.3,915.617668047143,1360.0,0.0,0.0,0.0,14850.0,0,6,3,60.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2168.0978015533797,0.2601596647779598,0.14599985195645654,11423.076923076922,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +8884,2,55.0,3,0.0,7,112,2,52,67,5.0,1933.8898751402974,0.0,740.261370819059,0.0,0.0,26500.888161188148,71,50,1,5940,201708884,,,312.0,,3.0,2.0,4.0,1.0,3.0,2.0,1688.5734945801146,0.0,550.0,0.0,0.0,39206.0,1,1,1,85.0,7,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2674.1512459593564,0.10090798578878508,0.06820770407487008,19603.0,5,3,5,5_1,5_0,5_0_0 +8885,2,76.0,3,0.0,2,111,2,0,78,3.0,0.0,0.0,567.8664290476954,0.0,1058.2069221173394,20241.399999999998,0,70,2,5941,201708885,,,,,0.0,5.0,3.0,0.0,1.0,1.0,3463.9919994863717,1020.0,0.0,0.0,0.0,14660.0,0,5,1,67.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1626.0733511650349,0.08033403574678802,0.11091905533185777,14660.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +8886,2,60.0,5,0.0,5,111,2,77,78,7.0,0.0,582.9290542166448,1453.6041463356069,0.0,0.0,14160.716974448147,60,60,1,5943,201708886,,,500.0,,1.0,1.0,4.0,1.0,3.0,2.0,2329.1241509215115,0.0,1080.0,0.0,0.0,51190.0,5,5,1,92.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2036.5332005522516,0.14381568420772825,0.039783809348549554,25595.0,7,4,7,7_1,7_2,7_0_0 +8887,2,43.0,2,0.0,5,112,2,34,46,9.0,0.0,0.0,1292.0925745205395,0.0,0.0,24454.362639076488,20,41,2,5944,201708887,,,,640.0,2.0,0.0,2.0,0.0,2.0,1.5,1838.719700435382,0.0,960.0,0.0,0.0,53435.0,1,1,3,38.0,10,5.0,3,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1292.0925745205395,0.052836894323954255,0.02418064142454458,35623.333333333336,9,5,9,9_0,9_2,9_0_0 +8888,1,49.0,5,327.0,4,221,2,0,56,1.0,571.1241632899976,0.0,807.5578590753372,0.0,813.8880933398825,9725.64,0,42,2,5948,201708888,,,540.0,,1.0,1.0,4.0,2.0,3.0,2.0,555.671267703424,0.0,600.0,460.0,0.0,18095.0,0,4,3,70.0,1,1.0,2,5,1,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,2192.570115705217,0.22544224500446422,0.12116994284085202,9047.5,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +8889,2,50.0,3,0.0,99,221,5,0,62,1.0,0.0,832.755791738064,1211.3367886130059,212.31863304518674,0.0,16252.416974448146,0,71,1,5949,201708889,,,480.0,,1.0,1.0,4.0,1.0,2.0,1.3,2155.227967721393,0.0,900.0,0.0,0.0,9413.0,0,1,1,80.0,1,1.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2256.4112133962567,0.13883542472136662,0.23971222919327065,7240.7692307692305,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +8890,2,39.0,1,0.0,8,111,2,42,37,8.0,1586.456009138882,0.0,888.3136449828709,0.0,0.0,54146.340000000004,30,12,1,595,201708890,,,350.0,,2.0,0.0,5.0,2.0,4.0,2.1,2117.4367916319957,0.0,660.0,0.0,0.0,62970.0,1,1,1,120.0,9,7.0,4,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2474.769654121753,0.04570520655914606,0.039300772655578096,29985.714285714286,8,4,8,8_1,8_3,8_0_0 +8891,2,83.0,2,0.0,7,300,5,75,74,10.0,0.0,1238.0302770505884,1160.1914575382343,49.54101437721024,0.0,31875.36,31,12,1,5952,201708891,,,,,0.0,3.0,8.0,0.0,2.0,1.5,2593.2433839830414,0.0,862.0,0.0,0.0,88858.0,5,5,1,250.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2447.762748966033,0.07679168953593099,0.027546903474825375,59238.666666666664,10,5,10,10_1,10_0,10_0_0 +8892,2,36.0,3,0.0,99,120,2,0,43,7.0,0.0,0.0,483.18878568007676,0.0,3538.6438840864457,30565.097038047046,0,33,1,5954,201708892,,,280.0,,1.0,0.0,6.0,1.0,2.0,1.3,1035.31168414048,0.0,359.0,2000.0,0.0,30837.0,0,1,2,160.0,0,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4021.8326697665225,0.13158252580582996,0.1304223066370439,23720.76923076923,6,3,6,6_1,6_1,6_0_0 +8893,2,75.0,1,0.0,1,111,2,74,74,10.0,0.0,0.0,690.4619695094133,0.0,3436.023211447939,68665.48000000001,41,30,1,5955,201708893,,,440.0,,0.0,0.0,5.0,0.0,2.0,1.5,2254.5402493234387,0.0,513.0,1942.0,0.0,105664.0,5,5,1,120.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4126.485180957352,0.06009548292617122,0.039052895791919215,70442.66666666667,10,5,10,10_1,10_4,10_1_0 +8894,2,65.0,2,0.0,4,300,2,75,75,8.0,0.0,124.91336876070959,681.0404611535344,1971.1272641087887,0.0,39790.171316908054,33,33,1,5956,201708894,,,396.0,,0.0,0.0,5.0,0.0,2.0,1.5,1693.8269457875774,0.0,506.0,0.0,0.0,45866.0,5,5,2,140.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2777.0810940230326,0.06979314242969761,0.06054770623169739,30577.333333333332,8,4,8,8_1,8_1,8_0_1 +8895,2,53.0,3,0.0,8,111,2,52,52,4.0,0.0,0.0,807.5578590753372,0.0,1468.537211895875,19539.82,71,71,1,5957,201708895,,,375.0,500.0,2.0,1.0,4.0,1.0,3.0,2.0,1758.8759764411097,0.0,600.0,830.0,0.0,34942.0,1,1,3,86.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2276.0950709712124,0.11648495589883696,0.06513923275631654,17471.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8896,2,44.0,4,0.0,9,111,5,0,54,3.0,0.0,430.2571590646664,942.1508355878933,0.0,0.0,18427.34,0,71,1,5958,201708896,,,200.0,,1.0,0.0,4.0,1.0,2.0,1.5,745.5575449906437,0.0,700.0,0.0,0.0,22505.0,0,1,2,104.0,6,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1372.4079946525596,0.07447672830981356,0.06098235923806086,15003.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8897,2,87.0,3,0.0,3,111,1,0,77,10.0,0.0,0.0,387.6277723561618,0.0,325.555237335953,34974.06932216843,0,70,2,5959,201708897,,,,,0.0,6.0,5.0,0.0,1.0,1.0,3123.9859861325917,0.0,288.0,184.0,0.0,44709.0,0,5,1,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,713.1830096921149,0.020391765199597792,0.015951665429602874,44709.0,10,5,10,10_0,10_4,10_0_1 +8898,0,62.0,3,0.0,5,300,2,71,13,7.0,0.0,0.0,2261.162005410944,0.0,0.0,29872.86,50,50,1,596,201708898,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1803.7653423970503,0.0,1680.0,0.0,0.0,40103.0,5,1,5,90.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2261.162005410944,0.07569285315871811,0.056383861691418194,26735.333333333332,7,4,7,7_1,7_0,7_0_0 +8899,2,38.0,2,0.0,1,300,2,85,37,5.0,3626.6384368914846,0.0,1261.1361899226515,150.39236507367394,0.0,59693.70999999999,31,31,1,5960,201708899,,,658.0,,1.0,0.0,7.0,3.0,5.0,2.4,2182.278610097201,0.0,937.0,0.0,0.0,43809.0,6,1,2,180.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5038.166991887811,0.08440029932614025,0.11500301289433246,18253.75,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8900,2,39.0,4,0.0,2,111,2,63,52,3.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,25200.380315994113,50,31,1,5962,201708900,,,620.0,,2.0,0.0,5.0,2.0,4.0,2.3,1790.0513153715713,1700.0,0.0,0.0,0.0,33104.0,1,1,2,120.0,7,5.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2710.1222519417247,0.10754291077986912,0.08186691191220773,14393.04347826087,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +8901,2,38.0,1,0.0,4,111,2,0,45,9.0,0.0,0.0,807.5578590753372,0.0,0.0,26806.2,0,20,2,5963,201708901,,,,,1.0,0.0,2.0,0.0,1.0,1.0,1950.3712528366516,0.0,600.0,0.0,0.0,36922.0,0,1,2,40.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,807.5578590753372,0.030125786537268884,0.02187199661652503,36922.0,9,5,9,9_0,9_3,9_0_1 +8902,2,53.0,2,0.0,7,111,5,55,64,7.0,0.0,0.0,1615.1157181506744,0.0,0.0,35831.34,50,50,1,5964,201708902,,,330.0,,2.0,2.0,4.0,1.0,3.0,2.0,2327.827504119952,0.0,1200.0,0.0,0.0,46723.0,1,1,1,98.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.0450755042415571,0.0345678941452962,23361.5,6,3,6,6_1,6_3,6_0_0 +8903,2,23.0,3,0.0,9,111,4,0,84,2.0,0.0,0.0,565.290501352736,0.0,0.0,11731.08,0,41,2,5965,201708903,,,160.0,400.0,0.0,0.0,3.0,0.0,1.0,1.0,3753.6579600073856,0.0,420.0,0.0,0.0,12592.0,0,3,3,55.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,565.290501352736,0.04818742190426934,0.044892828887606095,12592.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +8904,2,47.0,3,0.0,2,111,2,0,35,1.0,0.0,0.0,1569.3541061364053,0.0,2653.9829130648345,59353.7,0,30,1,5967,201708904,,,647.0,,1.0,0.0,4.0,3.0,4.0,2.5,2067.736239162062,0.0,1166.0,1500.0,0.0,22193.0,0,4,1,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4223.33701920124,0.07115541270723207,0.19030041090439506,8877.2,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +8905,2,84.0,1,0.0,1,300,2,78,72,3.0,2273.3914610960182,0.0,942.1508355878933,148.62304313163074,0.0,24203.159999999996,70,50,1,5969,201708905,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2050.1262126509787,0.0,700.0,0.0,0.0,23450.0,5,5,1,73.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3364.165339815542,0.13899694667206855,0.14346120852091865,15633.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +8906,2,46.0,4,0.0,9,111,2,52,62,4.0,0.0,0.0,1063.284514449194,0.0,1061.5931652259337,25151.9,43,50,1,597,201708906,,,180.0,,2.0,0.0,4.0,3.0,5.0,2.8,1723.8219565271506,0.0,790.0,600.0,0.0,47420.0,1,1,3,85.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2124.8776796751276,0.08448179579575012,0.04480973596953032,16935.714285714286,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8907,2,55.0,2,0.0,8,111,4,69,64,7.0,0.0,0.0,1749.7086946632305,46.0023704931238,0.0,34169.36,50,50,1,5971,201708907,,,230.0,455.0,2.0,2.0,5.0,0.0,2.0,1.5,1430.0725830199208,0.0,1300.0,0.0,0.0,36293.0,1,1,3,82.0,5,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1795.7110651563544,0.052553254294384046,0.049478165628533174,24195.333333333332,7,4,7,7_1,7_2,7_0_0 +8908,1,36.0,3,105.0,3,111,1,0,55,3.0,0.0,0.0,538.3719060502248,0.0,707.7287768172891,22670.82,0,50,2,5972,201708908,,,,154.0,1.0,0.0,3.0,1.0,2.0,1.3,721.1192663917569,0.0,400.0,400.0,0.0,20467.0,0,1,3,47.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1246.100682867514,0.05496495860615161,0.06088340659928246,15743.846153846152,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +8909,2,54.0,4,0.0,1,400,2,54,42,1.0,0.0,1866.7608998128267,581.4416585342427,254.7823596542241,0.0,22421.8,33,44,1,5974,201708909,,,355.0,,3.0,2.0,5.0,2.0,4.0,2.5,2143.0343367472296,0.0,432.0,0.0,0.0,25846.0,4,1,2,122.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2702.9849180012934,0.12055164696863291,0.10458039611550311,10338.4,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8910,1,52.0,3,29.0,1,400,2,0,62,4.0,0.0,0.0,834.4764543778484,0.0,1698.549064361494,7718.351191295746,0,50,2,5976,201708910,,,250.0,,1.0,1.0,3.0,1.0,2.0,1.3,287.53942974427457,0.0,620.0,960.0,0.0,21996.0,0,1,3,60.0,0,1.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,2533.0255187393423,0.3281822057534676,0.1151584614811485,16920.0,4,2,4_1,4_0_1,4_1_1,4_1_0_1 +8911,2,77.0,1,0.0,4,112,2,0,75,5.0,0.0,0.0,448.1946117868121,0.0,3138.7771251846775,15163.56,0,71,1,5977,201708911,,,,,0.0,0.0,4.0,0.0,1.0,1.0,4148.6729520593335,0.0,333.0,1774.0,0.0,20586.0,0,5,1,90.0,10,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3586.9717369714895,0.23655208519447213,0.1742432593496303,20586.0,5,3,5,5_1,5_2,5_0_1 +8912,2,38.0,3,0.0,5,111,5,54,54,8.0,0.0,416.377895869032,1386.3076580793288,0.0,0.0,39832.64,43,31,1,5978,201708912,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.1,2146.510366410793,0.0,1030.0,0.0,0.0,50641.0,1,1,1,90.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1802.6855539483608,0.04525649201128423,0.03559735301333625,24114.761904761905,7,4,7,7_1,7_3,7_0_0 +8913,2,82.0,2,0.0,7,112,2,0,72,4.0,0.0,0.0,732.7963576236924,0.0,2238.0832055389037,35884.35050815985,0,71,1,5979,201708913,,,234.0,,1.0,1.0,5.0,1.0,2.0,1.5,2796.1943029047293,124.39200394991708,493.0,1192.0,0.0,26779.0,0,5,5,130.0,7,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2970.8795631625962,0.08279039528629727,0.11094064614670436,17852.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8914,2,77.0,3,0.0,1,120,2,74,74,8.0,0.0,0.0,4037.789295376686,353.5105240202359,0.0,33405.95999999999,60,60,1,5980,201708914,,,180.0,,0.0,2.0,5.0,0.0,2.0,1.5,2119.3945312469805,0.0,3000.0,0.0,0.0,42510.0,5,5,3,180.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4391.2998193969215,0.1314525856882102,0.10330039565741994,28340.0,8,4,8,8_1,8_0,8_1_0 +8915,2,33.0,3,0.0,1,111,1,0,65,5.0,0.0,0.0,444.15682249143543,0.0,0.0,24574.18,0,31,2,5981,201708915,,,,400.0,1.0,0.0,2.0,0.0,1.0,1.0,3877.7237745036527,0.0,330.0,0.0,0.0,21858.0,0,1,3,40.0,8,6.0,1,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,444.15682249143543,0.0180741258707894,0.02032010350862089,21858.0,6,3,6,6_0,6_2,6_1_0 +8916,1,24.0,3,270.0,7,111,4,0,46,2.0,0.0,0.0,726.8020731678034,0.0,0.0,9246.936974448146,0,30,2,5982,201708916,,,,120.0,1.0,0.0,1.0,0.0,1.0,1.0,4030.2698300779107,0.0,540.0,0.0,0.0,11405.0,0,3,3,35.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,726.8020731678034,0.07859922428109538,0.06372661755088149,11405.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8917,2,27.0,2,0.0,4,111,2,0,38,7.0,0.0,0.0,269.1859530251124,0.0,525.4886167868372,32634.490000000005,0,12,8,5983,201708917,,,,603.0,1.0,0.0,2.0,0.0,1.0,1.0,4244.010675783132,0.0,200.0,297.0,0.0,25831.0,0,1,3,58.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,794.6745698119496,0.024350758041935067,0.030764374968524237,25831.0,7,4,7,7_0,7_3,7_0_1 +8918,2,65.0,2,0.0,5,112,4,77,78,7.0,0.0,0.0,1884.3016711757866,212.31863304518674,0.0,32112.4,50,71,1,5984,201708918,,,230.0,,0.0,3.0,4.0,0.0,2.0,1.5,1588.6028651647712,0.0,1400.0,0.0,0.0,41046.0,5,5,1,90.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2096.6203042209736,0.06529005319505778,0.05107977157874028,27364.0,8,4,8,8_1,8_0,8_0_0 +8919,2,52.0,2,0.0,1,112,2,56,46,7.0,0.0,0.0,807.5578590753372,0.0,1104.056891834971,56778.2,50,31,1,5985,201708919,,,128.0,,2.0,2.0,7.0,1.0,3.0,2.0,1661.8659603791134,0.0,600.0,624.0,0.0,47867.0,1,1,1,110.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1911.6147509103084,0.03366811119250537,0.039935963208688835,23933.5,7,4,7,7_1,7_0,7_1_0 +8920,2,44.0,3,0.0,8,300,2,46,43,10.0,0.0,0.0,4441.568224914355,0.0,0.0,94451.54019747005,31,33,1,5986,201708920,,,700.0,,2.0,0.0,7.0,2.0,4.0,2.1,1963.8718051443668,0.0,3300.0,0.0,0.0,96947.0,1,1,1,170.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4441.568224914355,0.04702483639365073,0.04581439575143485,46165.23809523809,10,5,10,10_1,10_0,10_0_0 +8921,2,26.0,2,0.0,99,300,2,55,62,8.0,2062.392811880547,0.0,1049.8252167979383,53.079658261296686,0.0,45228.66,31,43,1,5987,201708921,,,180.0,,2.0,0.0,3.0,0.0,2.0,1.5,2345.939987327488,0.0,780.0,0.0,0.0,43115.0,1,1,3,84.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3165.2976869397817,0.06998433486510061,0.07341523105508017,28743.333333333332,8,4,8,8_1,8_0,8_0_0 +8922,2,74.0,3,0.0,1,400,2,77,78,5.0,1475.4040884991605,0.0,528.9503976943458,159.23897478389006,0.0,27801.42,71,71,2,5988,201708922,,,240.0,,0.0,5.0,4.0,0.0,2.0,1.5,2041.6726093739585,0.0,393.0,0.0,0.0,30044.0,5,5,3,62.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2163.5934609773963,0.07782312777467469,0.07201416126272787,20029.333333333332,5,3,5,5_0,5_0,5_1_0 +8923,2,49.0,2,0.0,7,400,4,52,48,6.0,0.0,0.0,215.3487624200899,31.847794956778014,0.0,38326.18000000001,31,31,1,5989,201708923,,,,,2.0,0.0,6.0,1.0,3.0,1.8,1446.9454492841464,0.0,160.0,0.0,0.0,42184.0,1,1,3,146.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,247.19655737686793,0.006449809435139842,0.00585996011229063,23435.555555555555,6,3,6,6_1,6_1,6_0_0 +8924,2,42.0,3,0.0,1,111,2,0,37,5.0,0.0,0.0,1076.7438121004495,0.0,1592.3897478389006,35939.26,0,31,1,599,201708924,,,560.0,,1.0,0.0,4.0,1.0,2.0,1.5,1902.6768125946535,0.0,800.0,900.0,0.0,29950.0,0,1,1,100.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2669.13355993935,0.07426790534750437,0.08911965141700669,19966.666666666668,5,3,5,5_1,5_3,5_1_0 +8925,2,43.0,3,0.0,1,112,5,43,21,3.0,0.0,1387.9263195634398,578.7497990039916,176.9321942043223,0.0,27516.0,44,43,1,5991,201708925,,,,,3.0,0.0,6.0,3.0,5.0,2.6,2401.8293688582335,0.0,430.0,0.0,0.0,41100.0,1,1,2,120.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2143.608312771754,0.07790406718897201,0.05215592001877747,15807.692307692307,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +8926,2,53.0,2,0.0,7,211,2,0,62,4.0,0.0,0.0,969.0694308904046,0.0,0.0,20496.94,0,71,2,5995,201708926,,,,,1.0,3.0,3.0,0.0,1.0,1.0,1471.0168118620545,0.0,720.0,0.0,0.0,18234.0,0,1,3,61.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,969.0694308904046,0.04727873677194765,0.053146288849972835,18234.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +8927,1,31.0,3,350.0,1,111,2,0,55,2.0,0.0,0.0,1332.4704674743064,0.0,1273.9117982711205,28843.62,0,31,1,5996,201708927,,,,70.0,1.0,0.0,3.0,1.0,2.0,1.3,1057.4100894420308,0.0,990.0,720.0,0.0,13880.0,0,1,3,60.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,2606.3822657454266,0.09036252265649827,0.18777970214304227,10676.923076923076,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +8928,2,81.0,2,0.0,5,400,4,0,78,6.0,0.0,305.3437903039568,1103.6624074029608,106.15931652259337,0.0,17553.62,0,70,1,5998,201708928,,,160.0,,0.0,3.0,4.0,0.0,1.0,1.0,2798.3737879259584,0.0,820.0,0.0,0.0,24309.0,0,5,1,115.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1515.165514229511,0.08631641303785266,0.06232940533257275,24309.0,7,4,7,7_1,7_0,7_0_0 +8929,2,33.0,4,0.0,1,300,2,46,65,7.0,0.0,0.0,3472.49879402395,0.0,0.0,36340.12,50,71,1,5999,201708929,,,400.0,,2.0,0.0,4.0,1.0,3.0,1.8,2158.333115235083,0.0,2580.0,0.0,0.0,42271.0,1,1,2,111.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3472.49879402395,0.09555551258564775,0.08214848936679875,23483.888888888887,6,3,6,6_1,6_0,6_1_0 +8930,2,48.0,3,0.0,7,112,4,52,52,2.0,0.0,0.0,2126.569028898388,265.39829130648343,0.0,49760.97331690806,50,50,1,6,201708930,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1834.8595620262238,0.0,1580.0,0.0,0.0,20889.0,1,1,1,110.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2391.967320204871,0.04806914255819259,0.11450846475201643,11605.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8931,2,70.0,3,0.0,1,111,2,77,78,8.0,0.0,0.0,1309.9899093619874,0.0,2441.1381252373526,79106.59999999999,70,70,1,600,201708931,,,214.0,,1.0,3.0,7.0,1.0,3.0,2.0,2574.5706107640376,2353.0,0.0,0.0,0.0,55594.0,5,5,1,89.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3751.12803459934,0.04741864818611014,0.06747361288267331,27797.0,8,4,8,8_1,8_3,8_1_0 +8932,2,57.0,2,0.0,6,111,2,54,38,7.0,1586.456009138882,971.5484236944079,1144.0403003567276,0.0,0.0,29441.14,31,30,1,6002,201708932,,,200.0,,2.0,3.0,4.0,0.0,2.0,1.5,1803.3016103404561,0.0,850.0,0.0,0.0,38890.0,1,4,2,110.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3702.0447331900177,0.1257439329180194,0.09519271620442318,25926.666666666668,7,4,7,7_1,7_3,7_0_0 +8933,2,45.0,4,0.0,99,111,2,0,56,1.0,0.0,0.0,0.0,0.0,0.0,20156.239999999998,0,50,2,6003,201708933,,,,577.0,1.0,0.0,4.0,2.0,3.0,1.8,716.8264119248099,0.0,0.0,0.0,0.0,14191.0,0,1,3,73.0,7,5.0,2,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,7883.888888888889,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +8934,2,68.0,2,0.0,5,112,2,77,75,7.0,539.39504310722,0.0,1615.1157181506744,81.38880933398825,0.0,30392.920000000006,70,60,1,6004,201708934,,,263.0,,0.0,1.0,5.0,0.0,2.0,1.5,2103.198891690729,0.0,1200.0,0.0,0.0,37397.0,5,5,1,91.0,3,0.0,3,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2235.899570591883,0.07356646122162275,0.05978820682385974,24931.333333333332,7,4,7,7_1,7_0,7_0_0 +8935,1,47.0,3,100.0,9,120,2,56,64,1.0,0.0,0.0,2790.11240310529,159.23897478389006,0.0,46928.36,50,71,1,6005,201708935,,,473.0,,3.0,1.0,5.0,1.0,3.0,2.0,2664.050196355546,0.0,2073.0,0.0,0.0,17987.0,1,1,2,147.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2949.35137788918,0.062847953303486,0.16397127802797465,8993.5,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +8936,2,73.0,2,0.0,3,111,2,77,78,3.0,0.0,0.0,538.3719060502248,0.0,1592.3897478389006,19594.46,70,70,1,6006,201708936,,,150.0,,0.0,1.0,5.0,0.0,2.0,1.5,1957.3053399304101,0.0,400.0,900.0,0.0,23379.0,5,5,1,90.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2130.7616538891252,0.10874306584050417,0.09113998262924528,15586.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +8937,2,74.0,3,0.0,7,111,2,77,86,6.0,0.0,0.0,2631.2926908204736,54.84898020333991,0.0,29356.260000000002,70,71,1,6007,201708937,,,205.0,472.0,0.0,4.0,5.0,0.0,2.0,1.5,1735.123401226547,0.0,1955.0,0.0,0.0,31720.0,5,5,3,76.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2686.1416710238136,0.09150149477569054,0.08468290261739639,21146.666666666668,5,3,5,5_1,5_2,5_0_0 +8938,1,48.0,3,59.0,7,111,2,56,48,3.0,0.0,0.0,807.5578590753372,0.0,1769.3219420432229,29481.657540253902,71,50,1,6008,201708938,,,430.0,,3.0,0.0,5.0,2.0,4.0,2.5,1833.557195286539,0.0,600.0,1000.0,0.0,36448.0,1,1,3,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2576.87980111856,0.08740620494624901,0.07070017013604478,14579.2,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +8939,2,43.0,4,0.0,5,111,2,63,63,2.0,0.0,0.0,672.964882562781,0.0,707.7287768172891,13569.44,71,71,2,601,201708939,,,,467.0,2.0,0.0,3.0,0.0,2.0,1.5,2950.819516188798,0.0,500.0,400.0,0.0,17760.0,4,1,3,63.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1380.6936593800701,0.10175023135664184,0.07774176010022918,11840.0,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +8941,2,65.0,3,0.0,9,112,4,0,77,2.0,0.0,0.0,1157.4995980079832,0.0,0.0,22133.98,0,50,2,6011,201708941,,,,685.0,0.0,3.0,3.0,0.0,1.0,1.0,2242.579083088959,0.0,860.0,0.0,0.0,11378.0,0,5,3,59.0,10,2.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1157.4995980079832,0.05229514068450334,0.10173137616522968,11378.0,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +8942,2,49.0,5,0.0,1,112,2,0,67,4.0,0.0,0.0,484.5347154452023,0.0,2232.8842908585475,20179.475846751302,0,50,2,6012,201708942,,,,300.0,1.0,0.0,3.0,0.0,1.0,1.0,3747.7848258345944,0.0,360.0,1262.0,0.0,17410.0,0,1,3,80.0,7,2.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,2717.41900630375,0.1346625168532922,0.15608380277448305,17410.0,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +8943,2,45.0,3,0.0,1,112,2,56,63,2.0,0.0,0.0,1076.7438121004495,0.0,884.6609710216114,37679.14175060326,50,43,1,6013,201708943,,,250.0,,4.0,0.0,5.0,3.0,5.0,3.0,1618.2390810273102,0.0,800.0,500.0,0.0,32740.0,1,1,2,61.0,8,0.0,4,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1961.404783122061,0.0520554527516715,0.059908515061761175,10913.333333333334,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8944,2,81.0,3,0.0,5,111,4,77,75,8.0,0.0,0.0,2302.8858281298367,0.0,0.0,49579.23087530164,42,60,2,6014,201708944,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2159.9697478475446,0.0,1711.0,0.0,0.0,44832.0,5,5,1,86.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2302.8858281298367,0.04644859929194749,0.05136701079875617,29888.0,8,4,8,8_0,8_3,8_0_0 +8945,2,83.0,3,0.0,4,112,2,77,77,4.0,1062.925526123051,0.0,646.0462872602698,300.7847301473479,0.0,22262.86932216843,70,71,1,6015,201708945,,,200.0,,0.0,2.0,5.0,0.0,2.0,1.5,1431.9839579799602,0.0,480.0,0.0,0.0,26507.0,5,5,1,120.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2009.7565435306688,0.09027392266680727,0.07581984168448594,17671.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +8946,1,37.0,3,382.0,9,112,4,0,46,4.0,0.0,0.0,323.0231436301349,0.0,0.0,19237.600000000002,0,31,2,6016,201708946,,,250.0,274.0,1.0,0.0,4.0,3.0,4.0,1.9,923.2172974226655,0.0,240.0,0.0,0.0,32474.0,0,1,3,73.0,9,3.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,323.0231436301349,0.016791239220595857,0.00994713135524219,17091.578947368424,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +8947,2,47.0,2,0.0,1,112,6,47,47,7.0,2847.6885364042937,0.0,2246.356777994563,0.0,0.0,55730.26000000001,50,31,1,6018,201708947,,,216.0,,3.0,2.0,7.0,2.0,4.0,2.5,2132.343103348361,0.0,1669.0,0.0,0.0,63712.0,1,1,1,150.0,9,2.0,4,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,5094.045314398856,0.09140537500451021,0.07995425217225728,25484.8,7,4,7,7_1,7_1,7_1_0 +8948,2,64.0,3,0.0,5,400,2,71,75,8.0,1269.1648073111057,138.792631956344,694.49975880479,265.39829130648343,0.0,31170.699999999993,50,31,1,6019,201708948,,,383.0,,0.0,2.0,5.0,0.0,2.0,1.5,1787.459678094186,0.0,516.0,0.0,0.0,41510.0,5,5,1,120.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2367.8554893787227,0.07596414226753724,0.05704301347575819,27673.333333333332,8,4,8,8_1,8_0,8_0_0 +8949,1,52.0,5,486.0,3,111,1,0,85,1.0,0.0,0.0,309.56384597887927,0.0,198.16405750884095,13136.267533755657,0,71,2,602,201708949,,,,438.0,1.0,2.0,5.0,2.0,3.0,2.0,2372.584256354368,0.0,230.0,112.0,0.0,15332.0,0,6,3,100.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,507.72790348772025,0.03865084980821496,0.03311556897258807,7666.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +8950,2,62.0,3,0.0,6,221,2,56,78,6.0,0.0,1110.341055650752,752.3747387051891,0.0,0.0,43857.945846751296,70,50,1,6020,201708950,,,,,1.0,2.0,6.0,0.0,2.0,1.5,2409.4709547589387,0.0,559.0,0.0,0.0,34038.0,5,5,1,100.0,1,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1862.715794355941,0.04247156948172297,0.0547245958739039,22692.0,6,3,6,6_1,6_1,6_0_0 +8951,2,63.0,2,0.0,7,112,2,0,77,3.0,0.0,0.0,1763.1679923144861,132.69914565324171,0.0,9483.52,0,70,1,6021,201708951,,,102.0,,0.0,2.0,3.0,0.0,1.0,1.0,2119.5304049133856,0.0,1310.0,0.0,0.0,16816.0,0,5,1,65.0,5,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1895.8671379677278,0.1999117561799551,0.11274186120169646,16816.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8952,2,64.0,1,0.0,1,111,1,0,33,8.0,0.0,0.0,503.3777321569602,0.0,0.0,47530.159999999996,0,20,2,6022,201708952,,,,,1.0,1.0,3.0,0.0,1.0,1.0,3380.8372846309794,0.0,374.0,0.0,0.0,35764.0,0,1,1,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,503.3777321569602,0.010590701402161496,0.01407498412249637,35764.0,9,5,9,9_0,9_4,9_1_0 +8953,2,33.0,3,0.0,7,111,2,52,37,9.0,0.0,0.0,656.9435159571378,0.0,1224.2001648024122,79271.42,41,31,8,6023,201708953,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,2790.456253203058,1180.0,0.0,0.0,0.0,73340.0,1,1,2,112.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1881.14368075955,0.02373041482995448,0.025649627498766703,34923.80952380952,9,5,9,9_0,9_4,9_0_0 +8954,1,65.0,5,240.0,6,400,5,0,75,2.0,0.0,555.170527825376,874.8543473316153,0.0,0.0,11937.999999999998,0,30,1,6025,201708954,,,50.0,,0.0,1.0,6.0,0.0,1.0,1.0,2567.80460141061,0.0,650.0,0.0,0.0,12110.0,0,5,3,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1430.0248751569911,0.11978764241556301,0.11808628201131223,12110.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +8955,2,39.0,2,0.0,5,300,2,46,46,8.0,1586.456009138882,693.9631597817199,713.3427755165478,159.23897478389006,0.0,54468.92,30,20,1,6026,201708955,,,160.0,,2.0,0.0,3.0,1.0,3.0,1.8,2097.33506806764,0.0,530.0,0.0,0.0,49793.0,1,1,2,75.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3153.0009192210396,0.05788623896381716,0.06332217217723454,27662.777777777777,8,4,8,8_1,8_0,8_0_0 +8956,2,77.0,3,0.0,4,111,2,0,77,3.0,0.0,0.0,1561.278527545652,0.0,2282.4253052357576,21451.199999999997,0,71,1,6027,201708956,,,547.0,,0.0,2.0,4.0,0.0,1.0,1.0,2429.3633576389243,0.0,1160.0,1290.0,0.0,16920.0,0,5,1,140.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3843.70383278141,0.17918362761903345,0.22716925725658452,16920.0,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +8957,2,40.0,2,0.0,9,120,2,52,37,7.0,1110.5192063972174,693.9631597817199,1049.8252167979383,0.0,0.0,50038.700000000004,42,30,1,6028,201708957,,,160.0,,2.0,0.0,7.0,2.0,4.0,2.1,2885.8218986982893,0.0,780.0,0.0,0.0,53497.0,1,1,2,200.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2854.307582976876,0.057042001150646914,0.05335453545015376,25474.761904761905,7,4,7,7_1,7_0,7_0_0 +8958,2,27.0,2,0.0,7,111,4,67,46,9.0,0.0,0.0,1873.5342330547821,0.0,0.0,54668.36,31,31,1,6029,201708958,,,300.0,,2.0,0.0,3.0,0.0,2.0,1.5,2327.0325415867815,0.0,1392.0,0.0,0.0,48532.0,1,1,2,70.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1873.5342330547821,0.034270906115617554,0.0386041010684658,32354.666666666668,9,5,9,9_1,9_2,9_0_0 +8959,2,66.0,1,0.0,4,111,4,75,74,10.0,0.0,0.0,3153.5134396891917,0.0,0.0,64814.54000000001,50,20,1,6031,201708959,,,180.0,,0.0,3.0,9.0,0.0,2.0,1.5,2189.899047135923,0.0,2343.0,0.0,0.0,99437.0,5,5,1,230.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3153.5134396891917,0.04865441364991854,0.031713682428967,66291.33333333333,10,5,10,10_1,10_3,10_0_1 +8960,2,85.0,2,0.0,4,111,2,0,75,8.0,0.0,0.0,321.6772138650093,0.0,2238.192256684677,16765.08218056569,0,44,1,6033,201708960,,,205.0,569.0,0.0,5.0,4.0,0.0,1.0,1.0,2969.5602212766858,0.0,239.0,1265.0,0.0,30160.0,0,5,3,100.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2559.8694705496864,0.1526905411485022,0.08487630870522833,30160.0,8,4,8,8_1,8_2,8_0_1 +8961,2,62.0,3,0.0,5,400,4,21,78,2.0,0.0,367.80047468431155,2017.5487179232173,198.16405750884095,0.0,22908.920000000006,70,50,1,6034,201708961,,,,,1.0,1.0,5.0,0.0,2.0,1.5,2037.7798537503654,0.0,1499.0,0.0,0.0,20336.0,1,5,1,100.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2583.51325011637,0.11277324509913035,0.12704136753129278,13557.333333333334,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +8962,2,56.0,4,0.0,4,111,3,67,47,3.0,0.0,0.0,2018.894647688343,0.0,0.0,40351.159999999996,50,50,2,6037,201708962,,,,426.0,2.0,2.0,4.0,2.0,4.0,2.5,1914.393706726708,0.0,1500.0,0.0,0.0,34530.0,1,1,3,87.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2018.894647688343,0.05003312538445842,0.058467843836905384,13812.0,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +8963,2,58.0,3,0.0,4,112,2,56,65,4.0,0.0,0.0,1615.1157181506744,0.0,3184.779495677801,45628.200000000004,44,60,1,6039,201708963,,,720.0,,4.0,0.0,4.0,2.0,4.0,2.5,1652.0628500109442,0.0,1200.0,1800.0,0.0,45408.0,1,1,1,130.0,8,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4799.895213828476,0.10519580465213345,0.1057059375843128,18163.2,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +8964,2,50.0,1,0.0,1,111,2,0,37,10.0,0.0,0.0,2288.080600713455,0.0,1769.3219420432229,48929.48133557952,0,30,1,604,201708964,,,1233.0,,1.0,0.0,7.0,2.0,3.0,2.0,1945.1773756147265,0.0,1700.0,1000.0,0.0,86164.0,0,1,1,120.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4057.402542756678,0.08292347337445208,0.04708930113222086,43082.0,10,5,10,10_1,10_3,10_1_0 +8965,2,45.0,3,0.0,6,111,6,0,46,4.0,0.0,0.0,807.5578590753372,0.0,1415.4575536345783,28095.72,0,20,1,6040,201708965,,,410.0,,1.0,0.0,4.0,2.0,3.0,1.8,987.6087670778832,0.0,600.0,800.0,0.0,30734.0,0,1,2,100.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2223.0154127099154,0.07912292024229724,0.07233081970163062,17074.444444444445,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +8966,1,24.0,1,177.0,1,111,4,0,84,8.0,0.0,0.0,344.55801987214386,0.0,0.0,12737.920000000002,0,30,2,6041,201708966,,,,183.0,0.0,0.0,1.0,0.0,1.0,1.0,3786.6878309541257,0.0,256.0,0.0,0.0,27294.0,0,3,3,24.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,344.55801987214386,0.027049786768337674,0.012623947383019852,27294.0,8,4,8,8_0,8_3,8_1_0 +8967,2,47.0,4,0.0,8,400,5,0,63,2.0,491.8013628330535,693.9631597817199,632.5869896090142,0.0,0.0,15582.176449851542,0,50,1,6043,201708967,,,408.0,,1.0,2.0,4.0,0.0,1.0,1.0,2625.5349716802943,0.0,470.0,0.0,0.0,13451.0,0,4,2,126.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1818.3515122237875,0.11669432175125392,0.13518337017498977,13451.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8968,1,25.0,4,353.0,1,120,6,0,85,1.0,158.64560091388822,0.0,1453.6041463356069,120.31389205893916,0.0,3278.0,0,71,1,6044,201708968,,,290.0,,0.0,0.0,2.0,1.0,2.0,1.3,480.4666997399532,0.0,1080.0,0.0,0.0,13266.0,0,6,3,70.0,0,0.0,2,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1732.5636393084344,0.5285429039989122,0.13060181209923372,10204.615384615385,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +8969,2,64.0,2,0.0,5,221,2,78,75,9.0,0.0,0.0,1484.248880760882,0.0,2526.8497298256707,34532.15532466546,50,33,1,6045,201708969,,,137.0,,0.0,2.0,5.0,0.0,2.0,1.5,2231.4472842233977,835.9142665434427,757.0,938.0,0.0,45497.0,5,5,1,106.0,1,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4011.0986105865527,0.11615546648840436,0.08816182628715195,30331.333333333332,8,4,8,8_1,8_1,8_0_0 +8970,2,76.0,3,0.0,9,111,7,78,52,4.0,0.0,0.0,581.7847238772957,0.0,1084.143366286882,17433.22,50,70,1,6046,201708970,,,232.0,364.0,1.0,5.0,3.0,0.0,2.0,1.5,1774.0584679435476,1045.0,0.0,0.0,0.0,24679.0,5,5,3,60.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1665.9280901641778,0.09556054992503839,0.067503873340256,16452.666666666668,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8971,2,24.0,3,0.0,5,120,4,42,63,6.0,0.0,0.0,1655.4936111044412,65.46491185559925,0.0,15710.522382591489,43,50,2,6047,201708971,,,180.0,,2.0,0.0,3.0,0.0,2.0,1.5,3784.2757070640628,0.0,1230.0,0.0,0.0,31128.0,1,1,3,80.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1720.9585229600405,0.10954177595437563,0.05528651127473787,20752.0,5,3,5,5_0,5_0,5_0_0 +8972,1,66.0,3,60.0,99,111,2,85,72,2.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,15820.917285886513,71,71,2,6048,201708972,,,500.0,,0.0,3.0,3.0,0.0,2.0,1.5,3596.3423353688854,720.0,0.0,0.0,0.0,15910.0,6,5,3,68.0,7,5.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1147.8164831753188,0.07255056470077498,0.07214434212289873,10606.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8973,2,38.0,3,0.0,1,111,5,56,64,3.0,0.0,416.377895869032,1098.2786883424585,0.0,0.0,29550.260000000002,50,71,1,605,201708973,,,300.0,,2.0,0.0,5.0,3.0,5.0,2.4,1985.9495388635717,0.0,816.0,0.0,0.0,33085.0,1,1,2,80.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1514.6565842114906,0.051256963025418066,0.04578076421978209,13785.416666666668,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +8974,2,40.0,3,0.0,1,112,5,85,52,3.0,0.0,263.7060007170536,1278.633276869284,350.32574452455816,0.0,52438.13542469232,41,12,1,6053,201708974,,,,,1.0,0.0,4.0,2.0,4.0,2.1,2382.2490988677814,0.0,950.0,0.0,0.0,30790.0,6,1,2,90.0,6,2.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1892.6650221108957,0.03609329368373515,0.06147012088700538,14661.904761904761,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +8975,2,39.0,3,0.0,8,111,4,85,37,5.0,0.0,0.0,1891.0313200014145,270.70625713261313,0.0,50105.280000000006,31,50,1,6054,201708975,,,512.0,,1.0,0.0,7.0,4.0,6.0,2.7,1593.7601875234552,0.0,1405.0,0.0,0.0,50750.0,6,1,2,200.0,6,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2161.7375771340276,0.04314390773056307,0.04259581432776409,18796.296296296296,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8976,1,74.0,3,130.0,2,111,1,0,77,2.0,0.0,0.0,182.60802816435697,0.0,340.2861475043993,12236.550875301626,0,33,2,6055,201708976,,,90.0,178.0,0.0,0.0,3.0,0.0,1.0,1.0,2289.5658639097724,328.0,0.0,0.0,0.0,11613.0,0,5,3,60.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,522.8941756687562,0.04273215393760761,0.0450266232385048,11613.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +8977,2,58.0,2,0.0,2,111,6,46,48,9.0,0.0,97.1548423694408,799.4822804845838,0.0,2703.5239274420446,30274.82,50,50,1,6056,201708977,,,222.0,,2.0,1.0,4.0,0.0,2.0,1.5,1679.072947943942,0.0,594.0,1528.0,0.0,47863.0,1,1,2,90.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3600.1610502960693,0.11891601833788176,0.07521804003710736,31908.666666666668,9,5,9,9_1,9_3,9_0_1 +8978,2,46.0,2,0.0,9,111,2,0,46,5.0,0.0,0.0,454.9242606124399,0.0,897.046224615914,21253.88,0,20,2,6058,201708978,,,304.0,655.0,1.0,0.0,3.0,0.0,1.0,1.0,2915.494140368618,0.0,338.0,507.0,0.0,21972.0,0,1,3,78.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1351.970485228354,0.06361052594765539,0.0615315167134696,21972.0,6,3,6,6_0,6_2,6_0_0 +8979,2,61.0,1,0.0,4,111,2,0,74,10.0,0.0,0.0,551.8312037014804,0.0,2034.7202333497064,43649.600000000006,0,12,1,6059,201708979,,,300.0,,0.0,2.0,4.0,0.0,1.0,1.0,3593.7429563440037,0.0,410.0,1150.0,0.0,47361.0,0,5,1,120.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2586.551437051187,0.059257162426486994,0.05461353090203304,47361.0,10,5,10,10_1,10_3,10_0_1 +8980,2,46.0,3,0.0,7,400,2,54,21,6.0,5235.304830158311,0.0,1036.0988794654875,247.7050718860512,227.7405034216662,33459.32186456342,50,50,1,606,201708980,,,,,3.0,0.0,6.0,2.0,4.0,2.5,2443.850253740651,219.51785481170893,679.0,0.0,0.0,50913.0,1,1,1,150.0,0,0.0,4,7,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6746.849284931516,0.20164333611545984,0.13251722123880966,20365.2,5,3,5,5_1,5_0,5_0_0 +8981,2,62.0,2,0.0,7,111,4,52,77,8.0,0.0,0.0,3422.5812030442607,58.38762408742635,1439.4356286917127,56117.580000000016,60,50,1,6060,201708981,,,220.0,,1.0,1.0,3.0,0.0,2.0,1.5,1887.5683744530356,1387.4643139999632,1969.0,0.0,0.0,42452.0,1,5,1,75.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4920.4044558234,0.08768026803407059,0.11590512710410346,28301.333333333332,8,4,8,8_1,8_4,8_0_0 +8982,2,93.0,2,0.0,5,120,2,0,71,1.0,1586.456009138882,0.0,430.6975248401798,106.15931652259337,0.0,14105.92,0,70,1,6061,201708982,,,90.0,,0.0,2.0,4.0,0.0,1.0,1.0,2141.7915033987083,0.0,320.0,0.0,0.0,17277.0,0,5,1,80.0,0,0.0,1,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2123.3128505016552,0.1505263641436826,0.12289823757027582,17277.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8983,2,29.0,1,0.0,1,211,2,53,55,7.0,1586.456009138882,0.0,1049.8252167979383,0.0,0.0,69900.04000000001,31,41,1,6063,201708983,,,138.0,,2.0,0.0,4.0,1.0,3.0,1.8,1347.0324154682667,0.0,780.0,0.0,0.0,46327.0,1,1,2,110.0,2,3.0,4,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2636.28122593682,0.03771501741539518,0.05690593446449846,25737.222222222223,7,4,7,7_1,7_1,7_1_0 +8984,2,62.0,3,0.0,99,111,6,0,54,5.0,0.0,0.0,236.88363866209892,0.0,0.0,14604.56,0,71,2,6065,201708984,,,,,1.0,6.0,1.0,0.0,1.0,1.0,6173.147713602949,0.0,176.0,0.0,0.0,19496.0,0,1,3,12.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,236.88363866209892,0.016219840834787145,0.01215037128960294,19496.0,5,3,5,5_0,5_4,5_0_0 +8985,2,55.0,3,0.0,5,112,6,77,13,7.0,0.0,0.0,2409.214279574756,148.62304313163074,0.0,65598.62,33,31,1,6066,201708985,,,482.0,,1.0,3.0,4.0,0.0,2.0,1.5,2610.512602562982,0.0,1790.0,0.0,0.0,39235.0,5,1,1,90.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2557.8373227063867,0.03899224286587716,0.0651927443024439,26156.666666666668,7,4,7,7_1,7_0,7_0_0 +8986,2,46.0,3,0.0,9,112,4,54,55,4.0,0.0,0.0,1547.8192298943961,0.0,0.0,45005.089284358924,42,71,1,6067,201708986,,,428.0,,2.0,0.0,3.0,2.0,4.0,2.5,2731.886431743777,0.0,1150.0,0.0,0.0,43207.0,1,1,3,60.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1547.8192298943961,0.034392093305597005,0.03582334413160822,17282.8,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8987,0,34.0,3,0.0,0,111,1,0,47,4.0,0.0,0.0,0.0,0.0,0.0,19168.379999999997,0,30,0,6069,201708987,,,,,1.0,0.0,,1.0,2.0,1.3,1847.2721309249628,0.0,0.0,0.0,0.0,20738.0,0,1,5,,10,8.0,2,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,15952.307692307691,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8988,2,24.0,3,0.0,1,300,5,0,42,4.0,777.3634444780523,804.9972653467952,668.9270932674043,318.4779495677801,0.0,22472.260000000002,0,30,1,607,201708988,,,,,2.0,1.0,5.0,1.0,2.0,1.5,2040.8267234582065,0.0,497.0,0.0,0.0,26465.0,0,1,1,180.0,0,0.0,2,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2569.7657526600324,0.11435279552034518,0.09710053854751681,17643.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8989,1,24.0,3,140.0,99,112,1,0,84,4.0,0.0,0.0,619.1276919577585,0.0,767.8857228467588,22884.62,0,44,2,6071,201708989,,,,260.0,0.0,0.0,2.0,0.0,1.0,1.0,3014.6280774881347,0.0,460.0,434.0,0.0,17039.0,0,3,3,34.0,9,0.0,1,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1387.0134148045172,0.060608977330823814,0.08140227799780017,17039.0,4,2,4_1,4_0_1,4_0_1,4_0_0_1 +8990,2,45.0,4,0.0,1,300,2,0,46,3.0,1586.456009138882,0.0,874.8543473316153,159.23897478389006,0.0,29957.499999999996,0,41,1,6072,201708990,,,700.0,,1.0,0.0,7.0,1.0,2.0,1.5,1566.8941585051914,0.0,650.0,0.0,0.0,23035.0,0,1,2,180.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2620.5493312543877,0.08747556809661647,0.1137638086066589,15356.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +8991,2,56.0,5,0.0,6,221,2,0,77,1.0,1673.7110896415206,0.0,1292.0925745205395,102.62067263850693,0.0,17106.79665845403,0,71,1,6075,201708991,,,100.0,,0.0,3.0,7.0,0.0,1.0,1.0,2434.880838247624,0.0,960.0,0.0,0.0,7930.0,0,7,1,133.0,1,2.0,1,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3068.4243368005673,0.17936872683198574,0.3869387562169694,7930.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +8992,2,80.0,3,0.0,6,400,4,78,77,4.0,0.0,0.0,1507.4413369406293,530.7965826129669,0.0,30032.14,70,60,1,6076,201708992,,,426.0,312.0,0.0,1.0,4.0,0.0,2.0,1.5,2484.955238257519,0.0,1120.0,0.0,0.0,26659.0,5,5,3,80.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2038.2379195535962,0.06786855414078372,0.07645590305538828,17772.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8993,2,43.0,1,0.0,7,111,4,85,38,10.0,0.0,0.0,2348.3077656509536,159.23897478389006,1610.8285188979999,66508.82870352245,31,12,1,6079,201708993,,,345.0,,1.0,0.0,8.0,2.0,4.0,2.1,1669.616776412626,1552.6690054043802,1102.5,0.0,0.0,90838.0,6,1,1,175.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4118.375259332844,0.061922234079499365,0.04533758184166146,43256.19047619047,10,5,10,10_1,10_3,10_0_0 +8994,2,36.0,2,0.0,1,112,5,52,47,8.0,0.0,2401.112532844751,1211.3367886130059,0.0,0.0,37449.25632237629,50,71,1,6080,201708994,,,1015.0,,2.0,0.0,4.0,2.0,4.0,2.1,2704.794001363506,0.0,900.0,0.0,0.0,53900.0,1,1,2,130.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3612.449321457757,0.09646251157460993,0.06702132321814021,25666.666666666664,7,4,7,7_1,7_0,7_1_0 +8995,2,61.0,2,0.0,1,111,2,0,37,10.0,0.0,0.0,484.5347154452023,0.0,707.7287768172891,31551.32,0,20,1,6081,201708995,,,150.0,,1.0,2.0,5.0,0.0,1.0,1.0,3180.033459590666,0.0,360.0,400.0,0.0,69410.0,0,1,2,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1192.2634922624916,0.03778807011125023,0.017177114137191925,69410.0,10,5,10,10_1,10_4,10_1_0 +8996,2,61.0,1,0.0,6,111,2,34,38,10.0,0.0,0.0,1033.6740596164316,106.15931652259337,0.0,35962.56,31,12,1,6082,201708996,,,137.0,,2.0,2.0,5.0,0.0,2.0,1.5,1632.0146605381112,0.0,768.0,0.0,0.0,157901.0,1,1,1,130.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1139.833376139025,0.03169500102715227,0.007218658375431599,105267.33333333333,10,5,10,10_1,10_2,10_0_0 +8997,0,35.0,4,0.0,1,300,6,67,85,1.0,0.0,0.0,5193.942963619544,0.0,120.31389205893916,34549.201033505036,71,42,1,6083,201708997,,,,,1.0,1.0,3.0,4.0,6.0,2.7,2545.6089927201947,0.0,3859.0,68.0,0.0,19590.0,4,6,5,75.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5314.256855678483,0.15381706947506069,0.27127395894224005,7255.555555555555,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8998,2,37.0,2,0.0,99,111,2,34,34,10.0,0.0,0.0,0.0,0.0,0.0,47714.42206659737,31,20,1,6084,201708998,,,,721.0,2.0,2.0,5.0,0.0,2.0,1.5,1994.7227567056136,0.0,0.0,0.0,0.0,66454.0,1,1,3,126.0,4,3.0,3,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,44302.666666666664,10,5,10,10_1,10_1,10_0_0 +8999,2,39.0,3,0.0,1,112,6,0,56,3.0,0.0,0.0,2106.3800824215045,0.0,0.0,18014.88,0,30,1,6086,201708999,,,230.0,,1.0,0.0,2.0,0.0,1.0,1.0,2815.8269499912826,0.0,1565.0,0.0,0.0,14215.0,0,1,1,60.0,7,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2106.3800824215045,0.11692445813802281,0.14818009725089726,14215.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9000,1,93.0,3,80.0,99,112,2,0,77,4.0,0.0,0.0,619.1276919577585,0.0,944.817917051081,11747.080000000002,0,41,2,6088,201709000,,,178.0,321.0,0.0,1.0,2.0,0.0,1.0,1.0,3051.498560372558,0.0,460.0,534.0,0.0,15888.0,0,5,3,46.0,9,3.0,1,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1563.9456090088397,0.13313483938211365,0.09843565011384943,15888.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +9001,2,73.0,2,0.0,2,111,2,86,75,7.0,0.0,0.0,896.3892235736242,0.0,161.0082967259333,19312.879999999997,50,60,2,609,201709001,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2480.106598127906,0.0,666.0,91.0,0.0,37282.0,5,5,1,70.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1057.3975202995575,0.054750897861922075,0.028362145815663257,24854.666666666668,7,4,7,7_0,7_2,7_0_1 +9002,2,39.0,3,0.0,1,300,4,0,42,6.0,0.0,0.0,1440.1448486843512,30.07847301473479,0.0,25196.12,0,30,1,6091,201709002,,,193.0,,1.0,0.0,4.0,1.0,2.0,1.3,1773.1442675858245,0.0,1070.0,0.0,0.0,26365.0,0,1,2,80.0,0,3.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1470.223321699086,0.05835117953474924,0.05576420715718134,20280.76923076923,5,3,5,5_1,5_1,5_1_0 +9003,2,63.0,2,0.0,6,400,5,77,72,4.0,0.0,652.3253701948167,815.6334376660906,222.9345646974461,0.0,14088.904177580944,50,44,1,6092,201709003,,,195.0,,0.0,2.0,4.0,0.0,2.0,1.5,1614.3151203285156,0.0,606.0,0.0,0.0,24312.0,7,5,1,89.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1690.8933725583533,0.12001596087572218,0.06954974385317347,16208.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9004,2,35.0,2,0.0,9,112,2,46,34,8.0,0.0,0.0,538.3719060502248,1557.0033089980361,0.0,54185.84000000001,31,30,1,6093,201709004,,,415.0,,2.0,0.0,4.0,1.0,3.0,1.8,3024.8317105725,0.0,400.0,0.0,0.0,50720.0,1,1,2,125.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2095.375215048261,0.03867016207644397,0.04131260282035215,28177.777777777777,8,4,8,8_1,8_0,8_0_0 +9005,2,49.0,3,0.0,99,111,1,0,42,9.0,0.0,0.0,522.220748868718,0.0,0.0,33227.299999999996,0,30,2,6094,201709005,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3350.779960679191,0.0,388.0,0.0,0.0,37555.0,0,1,3,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,522.220748868718,0.015716617024817487,0.01390549191502378,37555.0,9,5,9,9_0,9_4,9_0_0 +9006,2,51.0,3,0.0,10,112,4,62,52,8.0,0.0,0.0,2418.6357879306347,120.31389205893916,0.0,38701.06,50,50,1,6096,201709006,,,402.0,,2.0,3.0,3.0,0.0,2.0,1.5,1961.8195351587435,0.0,1797.0,0.0,0.0,46064.0,5,1,2,96.0,8,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2538.9496799895737,0.06560413797424602,0.055117872524956014,30709.333333333332,8,4,8,8_1,8_1,8_0_0 +9007,2,54.0,1,0.0,7,111,3,46,47,8.0,0.0,0.0,1319.3074618427763,0.0,1391.6440973560075,71842.19,50,31,1,6097,201709007,,,1120.0,,2.0,2.0,5.0,1.0,3.0,2.0,1675.0987590381988,169.7610532317421,910.0,687.0,0.0,59116.0,1,1,1,150.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2710.951559198784,0.03773481236024102,0.045858169686697065,29558.0,8,4,8,8_1,8_2,8_0_0 +9008,2,56.0,3,0.0,9,400,5,0,56,3.0,0.0,971.5484236944079,1001.3717452534181,56.61830214538313,0.0,19830.191191295744,0,71,1,6098,201709008,,,206.0,,1.0,2.0,3.0,0.0,1.0,1.0,1709.2438588501977,0.0,744.0,0.0,0.0,14729.0,0,1,1,115.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2029.538471093209,0.10234588519671226,0.13779200699933525,14729.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9009,1,31.0,3,138.0,1,211,2,68,63,3.0,0.0,0.0,742.9532303493102,0.0,636.9558991355602,26896.739999999994,50,71,2,6099,201709009,,,,,2.0,0.0,4.0,3.0,5.0,2.4,3032.435529065031,0.0,552.0,360.0,0.0,34418.0,1,1,3,50.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1379.9091294848704,0.05130395466085744,0.04009265876822797,14340.833333333334,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +9010,2,35.0,2,0.0,2,111,1,22,37,7.0,0.0,0.0,1049.8252167979383,0.0,0.0,46717.42,71,20,2,610,201709010,,,,,2.0,3.0,4.0,2.0,4.0,2.1,5256.192619429132,0.0,780.0,0.0,0.0,47212.0,1,1,2,74.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1049.8252167979383,0.02247181494179127,0.02223640635427303,22481.90476190476,6,3,6,6_0,6_4,6_0_1 +9011,1,57.0,4,103.0,3,111,2,0,22,1.0,475.9368027416647,0.0,888.3136449828709,0.0,1303.9902712858552,14999.2,0,60,1,6100,201709011,,,,,1.0,2.0,3.0,0.0,1.0,1.0,1583.9432613859392,0.0,660.0,737.0,0.0,8068.0,0,1,2,85.0,9,7.0,1,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2668.240719010391,0.17789220218480925,0.3307189785585512,8068.0,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +9012,2,77.0,1,0.0,5,112,2,0,74,9.0,0.0,0.0,1163.5694477545915,0.0,2168.286732573764,21877.031191295744,0,70,1,6101,201709012,,,139.0,,0.0,3.0,4.0,0.0,1.0,1.0,2750.3331590638677,2090.0,0.0,0.0,0.0,30990.0,0,5,1,90.0,8,0.0,1,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3331.8561803283555,0.15229928371880766,0.10751391353108601,30990.0,8,4,8,8_1,8_0,8_0_0 +9013,1,23.0,3,205.0,1,111,4,0,85,2.0,0.0,0.0,942.1508355878933,0.0,0.0,10759.919999999998,0,41,2,6102,201709013,,,141.0,243.0,0.0,0.0,2.0,0.0,1.0,1.0,4705.23797736679,0.0,700.0,0.0,0.0,11975.0,0,4,3,34.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,942.1508355878933,0.0875611375909759,0.0786764789634984,11975.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +9014,2,56.0,4,0.0,1,112,5,78,46,5.0,0.0,727.2733914512426,1615.1157181506744,247.7050718860512,0.0,24115.110875301623,70,41,1,6104,201709014,,,58.0,,1.0,2.0,5.0,0.0,2.0,1.5,1767.8119008131591,0.0,1200.0,0.0,0.0,29379.0,5,1,2,105.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2590.094181487968,0.10740544361920011,0.08816141398577106,19586.0,5,3,5,5_1,5_0,5_1_0 +9015,2,79.0,3,0.0,4,111,2,0,77,5.0,0.0,0.0,161.51157181506744,0.0,1645.4694061001974,6901.419999999999,0,50,1,6105,201709015,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2230.505296707354,0.0,120.0,930.0,0.0,19270.0,0,5,1,85.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1806.9809779152647,0.2618274178234718,0.0937717165498321,19270.0,5,3,5,5_1,5_3,5_0_1 +9016,2,42.0,2,0.0,1,111,2,34,34,10.0,0.0,0.0,242.26735772260116,0.0,690.0355573968569,52630.2898356326,20,20,1,6106,201709016,,,,,2.0,0.0,7.0,0.0,2.0,1.5,1800.6835244863757,0.0,180.0,390.0,0.0,88383.0,1,1,1,120.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,932.302915119458,0.017714189263085826,0.010548441613426315,58922.0,10,5,10,10_1,10_3,10_1_0 +9017,2,62.0,3,0.0,1,112,2,65,77,2.0,2119.5052282095467,0.0,1324.394888883553,0.0,0.0,28222.028161188147,50,50,1,6107,201709017,,,370.0,,1.0,3.0,5.0,0.0,2.0,1.5,2230.353185806056,0.0,984.0,0.0,0.0,21758.0,1,5,2,132.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3443.9001170930997,0.12202879599664149,0.15828201659587737,14505.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9018,2,76.0,2,0.0,4,111,2,0,74,10.0,1056.5797020864954,0.0,2940.560024204041,0.0,2469.937062310266,97828.39549824595,0,12,1,6109,201709018,,,225.0,,0.0,4.0,6.0,0.0,1.0,1.0,2410.894230300409,2380.7591416200494,1200.0,0.0,0.0,68180.0,0,5,5,140.0,9,7.0,1,8,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,6467.0767886008025,0.06610633605573911,0.09485298897918455,68180.0,10,5,10,10_1,10_3,10_0_1 +9019,2,67.0,3,0.0,1,112,1,0,77,5.0,0.0,0.0,40.37789295376686,0.0,79.61948739194503,18642.18,0,70,1,611,201709019,,,400.0,,0.0,2.0,4.0,1.0,2.0,1.5,1223.3939445188355,0.0,30.0,45.0,0.0,28255.0,0,5,1,56.0,10,1.0,2,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,119.99738034571189,0.00643687489047482,0.0042469432081299555,18836.666666666668,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +9020,2,77.0,2,0.0,6,111,4,77,74,9.0,0.0,0.0,2484.5863464217873,0.0,0.0,29802.979999999996,44,50,1,6110,201709020,,,320.0,,0.0,2.0,4.0,0.0,2.0,1.5,1966.8869630647582,0.0,1846.0,0.0,0.0,47586.0,5,5,1,94.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2484.5863464217873,0.08336704404800419,0.05221254878371343,31724.0,8,4,8,8_1,8_2,8_0_0 +9021,2,58.0,3,0.0,1,112,2,56,65,4.0,0.0,0.0,1514.310477460521,0.0,2821.8851256462385,22736.199999999997,71,50,1,6112,201709021,,,612.0,,2.0,5.0,6.0,0.0,2.0,1.5,1740.8897517961705,2720.0,0.0,0.0,0.0,26204.0,1,1,1,85.0,9,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4336.195603106759,0.19071769262703353,0.16547838509795296,17469.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9022,2,34.0,3,0.0,9,120,1,47,45,8.0,0.0,0.0,1009.4473238441715,0.0,1337.6073881846764,25574.079999999998,50,31,1,6113,201709022,,,456.0,,2.0,0.0,4.0,1.0,3.0,1.8,2600.541313683379,0.0,750.0,756.0,0.0,51024.0,1,1,2,105.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2347.054712028848,0.0917747466195792,0.04599903402377015,28346.666666666664,8,4,8,8_1,8_0,8_0_0 +9023,2,46.0,3,0.0,1,112,4,52,52,8.0,0.0,0.0,2126.569028898388,0.0,0.0,41628.62,42,50,1,6114,201709023,,,358.0,,2.0,2.0,5.0,1.0,3.0,1.8,2364.3165780322724,0.0,1580.0,0.0,0.0,52276.0,1,1,2,105.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2126.569028898388,0.051084302792126855,0.0406796432186546,29042.222222222223,8,4,8,8_1,8_0,8_1_0 +9024,2,61.0,3,0.0,7,112,1,0,78,8.0,0.0,0.0,1157.4995980079832,0.0,0.0,19837.760000000002,0,50,2,6115,201709024,,,,,0.0,2.0,2.0,1.0,2.0,1.3,2075.632604427783,0.0,860.0,0.0,0.0,41335.0,0,5,2,45.0,9,3.0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1157.4995980079832,0.058348301320712774,0.028002893383524453,31796.153846153844,8,4,8,8_0,8_1,8_0_0 +9025,2,50.0,3,0.0,4,111,1,55,85,1.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,35400.92350120651,71,71,2,6116,201709025,,,,378.0,1.0,0.0,4.0,2.0,4.0,2.5,3295.9096826757786,750.0,0.0,0.0,0.0,22414.0,1,7,3,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1195.6421699742903,0.03377432145049948,0.053343542873841805,8965.6,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +9026,1,44.0,4,332.0,99,221,2,0,52,3.0,0.0,0.0,1345.929765125562,0.0,0.0,20753.84,0,31,2,6117,201709026,,,400.0,227.0,1.0,0.0,5.0,2.0,3.0,1.8,772.740515529788,0.0,1000.0,0.0,0.0,25398.0,0,1,3,91.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1345.929765125562,0.06485208352408817,0.05299353355089227,14110.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +9027,1,37.0,3,160.0,99,300,6,21,64,3.0,0.0,785.566296872907,1029.6362703210548,0.0,0.0,49074.26835516188,44,50,1,6118,201709027,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.1,2209.4256309703705,0.0,765.0,0.0,0.0,32682.0,4,1,2,95.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1815.2025671939618,0.03698888700809392,0.055541355094362706,15562.857142857141,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +9028,2,60.0,3,0.0,5,111,2,75,75,7.0,1903.7472109666587,0.0,1095.5868288122074,196.39473556679775,0.0,36825.96,42,50,1,6119,201709028,,,482.0,,0.0,3.0,5.0,0.0,2.0,1.5,2280.287137332147,0.0,814.0,0.0,0.0,41503.0,5,5,1,147.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3195.728775345664,0.0867792387583559,0.07699994639774628,27668.666666666668,8,4,8,8_1,8_3,8_0_0 +9029,1,29.0,4,306.0,99,120,2,50,43,1.0,0.0,0.0,83.44764543778484,88.46609710216114,0.0,9233.810000000001,60,30,1,612,201709029,,,21.0,4.0,2.0,0.0,3.0,0.0,2.0,1.5,2083.0985986306987,0.0,62.0,0.0,0.0,14282.0,4,4,3,81.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,171.91374253994599,0.01861785574318141,0.01203709162161784,9521.333333333334,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +9030,2,46.0,3,0.0,4,112,2,34,22,7.0,0.0,0.0,2551.8828346780656,0.0,0.0,40468.74175060326,30,20,1,6120,201709030,,,340.0,,2.0,2.0,6.0,2.0,4.0,2.3,3869.902371491024,0.0,1896.0,0.0,0.0,66075.0,1,1,1,120.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2551.8828346780656,0.06305812151028949,0.03862100393005018,28728.26086956522,8,4,8,8_1,8_1,8_0_1 +9031,2,66.0,3,0.0,1,111,5,0,55,1.0,475.9368027416647,589.868685814462,1708.1533941994571,0.0,424.18484330980664,39343.84585623267,60,30,1,6122,201709031,,,,,1.0,2.0,3.0,0.0,2.0,1.5,1340.7570384556257,408.8695047564868,1100.0,0.0,0.0,12759.0,8,5,1,150.0,6,5.0,3,8,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3198.14372606539,0.08128701341886624,0.2506578670793471,8506.0,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +9032,2,53.0,2,0.0,3,111,1,0,33,10.0,0.0,0.0,508.7614512174624,0.0,0.0,59946.340000000004,0,60,2,6124,201709032,,,,575.0,1.0,0.0,2.0,0.0,1.0,1.0,3245.9683422827616,0.0,378.0,0.0,0.0,104983.0,0,1,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,508.7614512174624,0.008486947680499967,0.004846131766261799,104983.0,10,5,10,10_0,10_4,10_0_1 +9033,2,71.0,3,0.0,2,222,5,77,75,9.0,0.0,138.792631956344,1345.929765125562,0.0,0.0,69932.54000000001,60,60,1,6125,201709033,,,,,0.0,5.0,5.0,0.0,2.0,1.5,1346.1836903741835,0.0,1000.0,0.0,0.0,55535.0,5,5,2,110.0,1,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1484.722397081906,0.021230780364647213,0.026734895058646006,37023.333333333336,9,5,9,9_1,9_0,9_0_1 +9034,1,31.0,4,280.0,99,111,1,0,81,2.0,0.0,0.0,1076.7438121004495,0.0,0.0,14693.215052882573,0,71,2,6126,201709034,,,,,1.0,0.0,3.0,3.0,4.0,1.9,635.827140664816,0.0,800.0,0.0,0.0,25260.0,0,4,3,65.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1076.7438121004495,0.07328170235208051,0.042626437533667835,13294.736842105263,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +9035,2,30.0,3,0.0,4,112,4,0,54,6.0,0.0,0.0,1388.99951760958,0.0,0.0,20018.89665845403,0,31,2,6127,201709035,,,,450.0,1.0,0.0,2.0,0.0,1.0,1.0,1684.6425758461157,0.0,1032.0,0.0,0.0,23243.0,0,1,3,41.0,10,5.0,1,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1388.99951760958,0.06938441919689925,0.059759906965950176,23243.0,6,3,6,6_0,6_2,6_0_1 +9036,2,72.0,2,0.0,5,111,1,75,74,8.0,0.0,0.0,403.7789295376686,0.0,0.0,75838.98,41,50,2,6128,201709036,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2236.6985072122425,0.0,300.0,0.0,0.0,49333.0,5,5,1,118.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,403.7789295376686,0.005324160867375439,0.008184763333623914,32888.666666666664,9,5,9,9_0,9_3,9_0_0 +9037,2,49.0,1,0.0,6,111,4,37,37,9.0,0.0,208.188947934516,2355.3770889697334,0.0,0.0,132592.22,31,60,1,613,201709037,,,,,3.0,1.0,4.0,1.0,3.0,2.0,1962.3200858771906,0.0,1750.0,0.0,0.0,74625.0,1,1,1,150.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2563.5660369042494,0.019334211591783057,0.034352643710609705,37312.5,9,5,9,9_1,9_4,9_0_0 +9038,1,58.0,5,22.0,99,111,1,0,85,1.0,1237.435687128328,0.0,710.6509159862967,0.0,113.23660429076627,15479.2,0,50,2,6130,201709038,780.0,780.0,,369.0,0.0,1.0,4.0,0.0,1.0,1.0,997.8464200281574,0.0,528.0,64.0,0.0,5276.0,0,7,3,70.0,10,8.0,1,1,1,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2061.323207405391,0.13316729594587515,0.3906981060283152,5276.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9039,2,61.0,3,0.0,7,211,2,56,72,2.0,0.0,0.0,1083.4734609260775,0.0,1096.9796040667982,32852.86,60,50,1,6131,201709039,,,442.0,,1.0,3.0,7.0,0.0,2.0,1.5,1552.8487598008405,0.0,805.0,620.0,0.0,20035.0,1,5,1,170.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2180.4530649928756,0.06637026624144368,0.10883219690505992,13356.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +9040,2,57.0,2,0.0,1,111,2,38,38,10.0,0.0,0.0,1409.8055418624663,0.0,3525.4474371614665,93703.3,30,12,1,6133,201709040,,,450.0,,2.0,1.0,9.0,1.0,3.0,2.0,1567.4475658006434,840.0,700.0,1500.0,0.0,140317.0,1,1,1,120.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4935.252979023933,0.05266893459487481,0.03517216715739314,70158.5,10,5,10,10_1,10_3,10_1_0 +9041,2,46.0,2,0.0,9,111,2,43,33,8.0,0.0,0.0,2368.836386620989,0.0,0.0,55494.2458467513,33,30,1,6134,201709041,,,465.0,,2.0,0.0,5.0,2.0,4.0,2.1,2118.9432077422366,0.0,1760.0,0.0,0.0,57798.0,1,1,2,120.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2368.836386620989,0.042686162330461935,0.040984746645575776,27522.85714285714,8,4,8,8_1,8_3,8_0_0 +9042,2,61.0,4,0.0,9,120,2,0,86,1.0,0.0,0.0,565.290501352736,0.0,0.0,2543.2,0,71,1,6135,201709042,,,,,0.0,4.0,2.0,0.0,1.0,1.0,2143.33388211465,0.0,420.0,0.0,0.0,5730.0,0,4,3,50.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,565.290501352736,0.22227528363979868,0.09865453775789458,5730.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +9043,2,64.0,4,0.0,1,111,4,0,72,3.0,0.0,0.0,2625.9089717599713,0.0,0.0,14985.380000000001,0,44,1,6136,201709043,,,360.0,,0.0,2.0,5.0,0.0,1.0,1.0,1394.1189210183668,0.0,1951.0,0.0,0.0,13130.0,0,5,1,110.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2625.9089717599713,0.17523139031242257,0.1999930671561288,13130.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +9044,1,31.0,2,350.0,99,111,2,0,55,3.0,0.0,0.0,339.1743008116416,0.0,1096.9796040667982,13236.17,0,42,2,6137,201709044,,,144.0,,1.0,0.0,3.0,1.0,2.0,1.3,1263.2751016384439,0.0,252.0,620.0,0.0,17825.0,0,1,3,65.0,6,5.0,2,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1436.1539048784398,0.10850222571018957,0.08056964403245104,13711.538461538461,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9045,2,36.0,2,0.0,1,111,2,47,54,9.0,47.593680274166466,0.0,969.0694308904046,0.0,2317.811744076622,66372.45999999999,42,60,1,6138,201709045,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2180.6257935459034,0.0,720.0,1310.0,0.0,70764.0,1,1,2,210.0,9,7.0,4,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3334.474855241193,0.050238831817310876,0.04712106233736353,33697.142857142855,9,5,9,9_1,9_3,9_1_0 +9046,2,47.0,3,0.0,7,211,2,55,62,9.0,0.0,0.0,788.3322191485655,0.0,1469.0401977628946,34393.02,50,41,2,6139,201709046,,,,,2.0,5.0,3.0,0.0,2.0,1.5,2998.761654996978,1416.0,0.0,0.0,0.0,48858.0,1,1,3,80.0,1,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2257.3724169114603,0.06563460890935023,0.046202718427104265,32572.0,9,5,9,9_0,9_1,9_0_0 +9047,2,27.0,1,0.0,1,111,4,38,38,8.0,0.0,0.0,613.7439728972563,0.0,0.0,50748.880000000005,12,12,2,614,201709047,,,192.0,720.0,2.0,0.0,2.0,0.0,2.0,1.5,3054.402862750385,0.0,456.0,0.0,0.0,42220.0,1,1,3,71.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,613.7439728972563,0.012093744194891714,0.014536806558438094,28146.666666666668,8,4,8,8_0,8_3,8_1_0 +9048,2,43.0,2,0.0,7,400,2,69,52,4.0,1586.456009138882,0.0,849.2816817942296,212.31863304518674,0.0,34634.42,50,41,1,6141,201709048,,,450.0,,2.0,0.0,4.0,3.0,5.0,2.6,1800.3964784111804,0.0,631.0,0.0,0.0,46499.0,1,1,2,90.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2648.056323978298,0.07645736016304873,0.05694867253012534,17884.23076923077,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9049,2,79.0,3,0.0,1,111,2,0,78,6.0,713.905204112497,0.0,403.7789295376686,0.0,0.0,8429.64449357506,0,71,1,6142,201709049,,,300.0,,0.0,3.0,3.0,0.0,1.0,1.0,3475.5560122029938,0.0,300.0,0.0,0.0,22360.0,0,5,1,52.0,4,4.0,1,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1117.6841336501657,0.1325897117609226,0.04998587359795016,22360.0,6,3,6,6_1,6_2,6_1_0 +9050,2,80.0,3,0.0,1,112,2,0,86,4.0,1586.456009138882,0.0,269.1859530251124,102.62067263850693,0.0,11372.96,0,71,1,6143,201709050,,,160.0,,0.0,7.0,2.0,0.0,1.0,1.0,1596.8475344461667,0.0,200.0,0.0,0.0,16571.0,0,5,1,80.0,7,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1958.2626348025015,0.17218583682722013,0.11817407729180505,16571.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9051,2,75.0,2,0.0,3,111,1,78,77,6.0,0.0,0.0,471.07541779394666,0.0,0.0,15085.420000000002,50,70,2,6144,201709051,,,,247.0,0.0,7.0,2.0,0.0,2.0,1.5,2509.582554374467,0.0,350.0,0.0,0.0,34508.0,5,5,3,52.0,6,5.0,3,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,471.07541779394666,0.031227199361631736,0.013651194441693134,23005.333333333332,6,3,6,6_0,6_2,6_0_1 +9052,2,53.0,1,0.0,4,300,2,37,31,10.0,1745.1016100527704,0.0,3461.8619425984193,0.0,3441.372016623521,94190.99862921442,30,12,1,6148,201709052,,,400.0,,2.0,0.0,7.0,2.0,4.0,2.5,2165.7486078300203,3317.120105331122,1200.0,0.0,0.0,118320.0,1,1,1,160.0,0,0.0,4,9,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,8648.335569274712,0.09181700688108356,0.07309276174167269,47328.0,10,5,10,10_1,10_0,10_0_1 +9053,1,45.0,2,400.0,1,111,2,0,85,4.0,0.0,0.0,1615.1157181506744,0.0,4566.619932413559,14897.1,0,71,1,615,201709053,,,,,0.0,3.0,5.0,1.0,2.0,1.3,1188.2086801378264,0.0,1200.0,2581.0,0.0,20640.0,0,6,3,94.0,4,3.0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,6181.735650564233,0.41496235177076296,0.2995026962482671,15876.923076923076,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +9054,2,40.0,3,0.0,9,111,4,54,53,9.0,0.0,0.0,2314.9991960159664,0.0,0.0,62797.72,41,43,1,6150,201709054,,,421.0,,2.0,0.0,5.0,2.0,4.0,2.1,1932.9096060085824,0.0,1720.0,0.0,0.0,69033.0,1,1,2,94.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2314.9991960159664,0.03686438291097139,0.033534674663073694,32872.857142857145,9,5,9,9_1,9_4,9_0_0 +9055,2,59.0,3,0.0,1,221,2,85,43,6.0,0.0,0.0,3095.6384597887923,76.08084350785859,0.0,33643.32000000001,71,33,1,6151,201709055,,,510.0,,1.0,3.0,8.0,0.0,2.0,1.5,1847.2279374015563,0.0,2300.0,0.0,0.0,34979.0,4,1,2,180.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3171.7193032966507,0.09427486060521524,0.09067495649665944,23319.333333333332,6,3,6,6_1,6_1,6_1_0 +9056,2,35.0,3,0.0,1,120,6,46,62,6.0,1903.7472109666587,0.0,1857.3830758732754,191.08676974066807,0.0,58612.01999999999,42,50,1,6152,201709056,,,290.0,,2.0,0.0,6.0,2.0,4.0,2.1,2392.585679530567,0.0,1380.0,0.0,0.0,41861.0,1,1,2,120.0,0,0.0,4,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3952.2170565806023,0.06743014584006153,0.09441286774278213,19933.809523809523,5,3,5,5_1,5_0,5_1_0 +9057,2,61.0,2,0.0,5,212,4,13,13,8.0,0.0,0.0,2561.3043430339444,226.47320858153253,0.0,23158.723470143028,50,50,1,6153,201709057,,,370.0,,2.0,2.0,6.0,0.0,2.0,1.5,1459.83776061337,0.0,1903.0,0.0,0.0,47871.0,1,1,1,85.0,4,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2787.777551615477,0.12037699552868575,0.05823520610840544,31914.0,9,5,9,9_1,9_0,9_0_0 +9058,2,32.0,2,0.0,7,111,6,42,42,7.0,0.0,0.0,1144.0403003567276,120.31389205893916,0.0,20924.780315994118,30,30,1,6156,201709058,,,,,2.0,0.0,5.0,1.0,3.0,1.8,3187.272553768057,0.0,850.0,0.0,0.0,45366.0,1,1,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1264.3541924156668,0.0604237737898372,0.027870083155130867,25203.333333333332,7,4,7,7_1,7_3,7_0_0 +9059,2,75.0,3,0.0,6,111,4,77,74,10.0,0.0,478.83458024938676,2271.9294435319484,0.0,0.0,62819.625980622455,50,41,1,6157,201709059,,,360.0,,0.0,2.0,5.0,0.0,2.0,1.5,1758.5868453598873,0.0,1688.0,0.0,0.0,62769.0,5,5,1,113.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2750.7640237813353,0.043788290376479556,0.043823607573505,41846.0,10,5,10,10_1,10_4,10_0_0 +9060,2,41.0,3,0.0,9,112,4,46,38,6.0,0.0,0.0,2826.45250676368,318.4779495677801,0.0,44639.02089963387,50,31,1,6159,201709060,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2275.2483526879237,0.0,2100.0,0.0,0.0,52048.0,1,1,2,90.0,7,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3144.93045633146,0.07045249633504518,0.0604236561699097,22629.565217391308,6,3,6,6_1,6_2,6_0_0 +9061,2,32.0,3,0.0,9,111,4,0,47,3.0,0.0,0.0,713.3427755165478,0.0,0.0,18354.386162745417,0,43,2,616,201709061,,,208.0,532.0,1.0,0.0,2.0,0.0,1.0,1.0,3813.6301088957634,0.0,530.0,0.0,0.0,15030.0,0,1,3,50.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,713.3427755165478,0.0388649758805035,0.047461262509417686,15030.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +9062,2,46.0,2,0.0,9,112,2,33,48,9.0,0.0,0.0,915.2322402853821,0.0,1468.537211895875,49019.50225973319,41,31,1,6162,201709062,,,600.0,,2.0,2.0,6.0,2.0,4.0,2.1,2695.907005824951,0.0,680.0,830.0,0.0,70919.0,1,1,1,120.0,9,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2383.7694521812573,0.04862900156657429,0.033612564364715485,33770.95238095238,9,5,9,9_1,9_1,9_0_0 +9063,2,24.0,3,0.0,1,111,2,84,63,3.0,0.0,0.0,673.6454697526583,0.0,1255.3238978058635,22123.779999999995,30,43,2,6164,201709063,,,,439.0,1.0,0.0,2.0,0.0,2.0,1.5,3111.3468330245705,1210.0,0.0,0.0,0.0,22019.0,3,1,3,44.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1928.9693675585218,0.0871898639183052,0.08760476713558843,14679.333333333334,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +9064,1,39.0,4,161.0,4,111,1,0,43,3.0,0.0,0.0,632.5869896090142,0.0,1114.6728234872305,23280.13,0,41,2,6165,201709064,,,,293.0,1.0,0.0,5.0,2.0,3.0,1.6,663.9859380505462,0.0,470.0,630.0,0.0,24684.0,0,1,3,85.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1747.2598130962447,0.07505369656854341,0.07078511639508364,15427.5,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +9065,2,70.0,3,0.0,6,111,2,77,78,9.0,0.0,0.0,3230.231436301349,1415.4575536345783,0.0,46579.087196250446,71,50,1,6166,201709065,,,385.0,,0.0,3.0,5.0,0.0,2.0,1.5,3434.0621384508786,0.0,2400.0,0.0,0.0,57278.0,5,5,1,150.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4645.688989935927,0.09973765630834214,0.08110773752463296,38185.333333333336,9,5,9,9_1,9_3,9_0_0 +9066,2,54.0,1,0.0,7,111,2,33,33,10.0,0.0,0.0,736.2235815236824,0.0,1424.3041633447945,59043.920000000006,30,41,1,6167,201709066,,,,,2.0,2.0,5.0,1.0,3.0,2.0,2021.5262933734905,0.0,547.0,805.0,0.0,122708.0,1,1,2,100.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2160.527744868477,0.036591875079914696,0.017607065104707737,61354.0,10,5,10,10_1,10_3,10_0_0 +9067,1,49.0,4,75.0,5,111,2,0,55,5.0,0.0,0.0,497.99401309645793,0.0,1242.0640033143425,39956.26,0,41,8,6168,201709067,,,,365.0,2.0,2.0,3.0,2.0,3.0,2.0,2322.4294077026334,0.0,370.0,702.0,0.0,41595.0,0,1,3,75.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1740.0580164108005,0.043549071319758166,0.04183334574854671,20797.5,5,3,5,5_0,5_3,5_0_0 +9068,2,58.0,1,0.0,5,112,6,45,33,10.0,634.5824036555529,0.0,2012.164998862715,44.23304855108057,0.0,38134.00000000001,42,20,1,6169,201709068,,,877.0,,2.0,2.0,5.0,0.0,2.0,1.5,2208.853948694938,0.0,1495.0,0.0,0.0,68646.0,1,1,1,150.0,9,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2690.9804510693484,0.07056643549245681,0.03920083400444816,45764.0,10,5,10,10_1,10_0,10_0_0 +9069,2,69.0,5,0.0,99,120,1,77,78,2.0,0.0,624.566843803548,2473.818908300783,0.0,1769.3219420432229,18874.58,50,70,1,6170,201709069,,,,480.0,0.0,4.0,5.0,0.0,2.0,1.5,1861.3840854160787,0.0,1838.0,1000.0,0.0,19270.0,5,5,3,90.0,0,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4867.707694147553,0.2578975370126145,0.2526054849064636,12846.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +9070,2,38.0,1,0.0,1,111,2,65,33,9.0,0.0,0.0,890.7708690944243,0.0,1659.9324268507285,53460.28,41,20,2,6171,201709070,,,,,2.0,0.0,3.0,2.0,4.0,2.1,3555.319864359844,1600.0,0.0,0.0,0.0,69789.0,1,1,2,51.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2550.7032959451526,0.04771212002528143,0.03654878700003084,33232.857142857145,9,5,9,9_0,9_4,9_1_0 +9071,1,64.0,3,200.0,6,111,1,0,78,2.0,0.0,0.0,323.0231436301349,0.0,0.0,10449.06,0,70,2,6172,201709071,,,,280.0,0.0,1.0,3.0,0.0,1.0,1.0,1902.4244175703564,0.0,240.0,0.0,0.0,11940.0,0,5,3,53.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,323.0231436301349,0.03091408639917226,0.027053864625639436,11940.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9072,2,40.0,2,0.0,9,112,4,0,38,5.0,0.0,0.0,1238.255383915517,0.0,28.309151072691566,33121.26,0,30,1,6173,201709072,,,140.0,750.0,1.0,0.0,3.0,1.0,2.0,1.5,2300.150261122755,0.0,920.0,16.0,0.0,33225.0,0,1,3,100.0,10,0.0,2,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1266.5645349882086,0.038240228028408596,0.038120828743061205,22150.0,6,3,6,6_1,6_0,6_0_0 +9073,2,47.0,3,0.0,1,400,2,85,42,2.0,713.905204112497,693.9631597817199,1405.1506747910867,0.0,0.0,59540.759999999995,50,30,1,6174,201709073,,,,,2.0,0.0,5.0,3.0,5.0,2.8,2591.5475490295967,0.0,1044.0,0.0,0.0,32869.0,4,1,1,170.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2813.0190386853037,0.04724526591003044,0.08558273871080056,11738.928571428572,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9074,2,38.0,3,0.0,7,112,5,54,52,8.0,0.0,437.1967906624836,1569.3541061364053,0.0,0.0,43458.37087530163,31,43,1,6176,201709074,,,340.0,,2.0,0.0,5.0,1.0,3.0,1.8,1788.9824781987606,0.0,1166.0,0.0,0.0,45990.0,1,1,2,105.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2006.550896798889,0.04617179283034875,0.04363015648616849,25550.0,7,4,7,7_1,7_0,7_0_0 +9075,2,36.0,3,0.0,9,111,1,43,37,9.0,0.0,0.0,403.7789295376686,0.0,0.0,52921.32000000001,33,20,2,6177,201709075,,,,790.0,2.0,0.0,5.0,1.0,3.0,1.8,2891.58540846288,0.0,300.0,0.0,0.0,57002.0,1,1,3,90.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,403.7789295376686,0.007629797018246494,0.007083592321982888,31667.777777777777,8,4,8,8_0,8_3,8_0_0 +9076,2,77.0,2,0.0,1,400,6,77,74,5.0,1586.456009138882,0.0,248.99700654822897,530.7965826129669,0.0,21758.300315994118,50,60,1,6178,201709076,,,320.0,,0.0,3.0,4.0,0.0,2.0,1.5,2341.071942413764,0.0,185.0,0.0,0.0,27807.0,5,5,1,70.0,0,1.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2366.249598300078,0.10875158279531111,0.0850954651095076,18538.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +9078,2,57.0,1,0.0,7,111,2,21,56,6.0,0.0,0.0,3072.757653781658,0.0,0.0,27456.539999999997,71,71,1,618,201709078,,,506.0,,2.0,2.0,4.0,0.0,2.0,1.5,1321.9850827370963,0.0,2283.0,0.0,0.0,35180.0,1,1,1,63.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3072.757653781658,0.11191350599098278,0.08734387873171286,23453.333333333332,6,3,6,6_1,6_3,6_0_0 +9079,2,31.0,3,0.0,9,112,2,21,43,6.0,0.0,0.0,2974.504780927492,247.7050718860512,0.0,69319.82,60,33,1,6180,201709079,,,490.0,,2.0,1.0,5.0,2.0,4.0,2.1,2700.658404182473,0.0,2210.0,0.0,0.0,45722.0,1,1,2,105.0,7,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3222.209852813543,0.04648324033174845,0.07047394805156255,21772.38095238095,6,3,6,6_1,6_2,6_0_0 +9080,1,31.0,3,249.0,5,111,2,21,85,1.0,0.0,0.0,874.8543473316153,0.0,2653.9829130648345,22155.515699499552,50,60,1,6182,201709080,,,600.0,376.0,1.0,0.0,4.0,2.0,4.0,2.1,2430.3316295793265,0.0,650.0,1500.0,0.0,18408.0,1,6,3,90.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,3528.83726039645,0.1592757897518115,0.1917012853322713,8765.714285714286,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +9081,2,60.0,3,0.0,7,400,4,22,77,7.0,0.0,0.0,1319.0111698230507,0.0,0.0,33029.99665845404,41,50,8,6183,201709081,,,516.0,,1.0,1.0,4.0,0.0,2.0,1.5,2209.8594787516895,0.0,980.0,0.0,0.0,37087.0,1,5,3,124.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1319.0111698230507,0.039933736096381026,0.03556532396319602,24724.666666666668,7,4,7,7_0,7_1,7_0_0 +9082,2,49.0,1,0.0,8,120,5,56,52,6.0,0.0,624.566843803548,403.7789295376686,212.31863304518674,0.0,36545.579999999994,50,50,1,6184,201709082,,,250.0,,2.0,2.0,4.0,0.0,2.0,1.5,1625.948941220599,0.0,300.0,0.0,0.0,32892.0,1,1,2,95.0,0,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1240.6644063864032,0.03394841199363653,0.03771933620291874,21928.0,6,3,6,6_1,6_1,6_0_0 +9083,2,36.0,3,0.0,1,112,2,63,62,6.0,0.0,0.0,819.6712269614673,0.0,2300.11852465619,55665.619999999995,41,44,1,6186,201709083,,,722.0,,2.0,0.0,6.0,3.0,5.0,2.6,2532.875708283946,0.0,609.0,1300.0,0.0,56976.0,1,1,2,120.0,8,1.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3119.789751617657,0.056045181058212545,0.05475620878295523,21913.846153846152,6,3,6,6_1,6_1,6_1_0 +9084,2,47.0,3,0.0,5,111,1,0,38,8.0,0.0,0.0,363.4010365839017,0.0,0.0,33347.100000000006,0,12,2,6187,201709084,,,,,1.0,0.0,4.0,2.0,3.0,1.6,3604.5678610084838,0.0,270.0,0.0,0.0,49828.0,0,1,2,82.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,363.4010365839017,0.010897530417454641,0.007293109026729985,31142.5,8,4,8,8_0,8_3,8_0_0 +9085,1,50.0,4,112.0,10,111,3,0,62,2.0,0.0,0.0,681.0404611535344,191.08676974066807,0.0,20843.26,0,70,1,6188,201709085,,,325.0,195.0,1.0,2.0,3.0,1.0,2.0,1.5,776.3148162850016,0.0,506.0,0.0,0.0,17884.0,0,4,3,88.0,5,4.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,872.1272308942024,0.041842170125700226,0.048765781195157815,11922.666666666666,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +9086,2,69.0,3,0.0,99,400,2,69,71,8.0,0.0,0.0,2086.1911359446212,123.8525359430256,0.0,28429.2,41,70,1,619,201709086,,,340.0,,1.0,3.0,6.0,0.0,2.0,1.5,1275.4320686830933,0.0,1550.0,0.0,0.0,39550.0,1,5,1,120.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2210.0436718876467,0.07773851082294425,0.05587973885935896,26366.666666666668,7,4,7,7_1,7_1,7_0_0 +9087,1,60.0,3,257.0,5,400,4,0,64,1.0,0.0,0.0,1378.2320794885754,0.0,0.0,3943.5908753016283,0,71,2,6191,201709087,,,160.0,,1.0,1.0,4.0,0.0,1.0,1.0,3274.898533732403,0.0,1024.0,0.0,0.0,8814.0,0,4,3,80.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1378.2320794885754,0.34948657785987003,0.15636851367013563,8814.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +9088,2,44.0,4,0.0,1,111,2,0,85,3.0,0.0,0.0,1130.581002705472,0.0,813.8880933398825,17225.02,0,20,2,6194,201709088,,,,,0.0,0.0,2.0,0.0,1.0,1.0,6179.341273832409,0.0,840.0,460.0,0.0,15360.0,0,7,1,57.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1944.4690960453545,0.11288631862519488,0.12659304010711944,15360.0,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +9089,2,36.0,3,0.0,4,111,1,0,37,8.0,0.0,0.0,484.5347154452023,0.0,0.0,21285.36,0,30,2,6195,201709089,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4511.898103264542,0.0,360.0,0.0,0.0,31411.0,0,1,2,60.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,484.5347154452023,0.022763754780055507,0.015425638007233209,31411.0,8,4,8,8_0,8_3,8_0_1 +9090,2,56.0,4,0.0,2,111,2,46,54,9.0,0.0,0.0,1197.87749096175,0.0,0.0,15403.88,50,50,2,6196,201709090,,,,,2.0,1.0,2.0,0.0,2.0,1.5,2738.8063238245268,0.0,890.0,0.0,0.0,53740.0,1,1,1,65.0,6,5.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1197.87749096175,0.07776466000525517,0.022290239876474695,35826.666666666664,9,5,9,9_0,9_2,9_0_1 +9091,1,47.0,5,323.0,1,300,2,0,56,3.0,0.0,0.0,1286.7088554600373,84.9274532180747,0.0,12401.730875301626,0,50,1,6198,201709091,,,176.0,,1.0,2.0,3.0,1.0,2.0,1.3,135.18364427212686,0.0,956.0,0.0,0.0,19316.0,0,1,3,85.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1371.636308678112,0.11060039299915482,0.07101037009101843,14858.461538461537,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +9092,2,78.0,4,0.0,6,211,2,0,77,3.0,0.0,0.0,1963.7115273181948,113.23660429076627,0.0,15898.999999999996,0,70,2,6199,201709092,,,183.0,300.0,0.0,1.0,2.0,0.0,1.0,1.0,4429.364251564317,0.0,1459.0,0.0,0.0,15140.0,0,5,3,40.0,1,3.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2076.948131608961,0.13063388462223796,0.13718283564127878,15140.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +9093,1,44.0,4,444.0,1,221,4,0,68,3.0,72.97697642038858,0.0,1453.6041463356069,205.24134527701386,0.0,18902.72,0,71,1,62,201709093,,,,,2.0,3.0,6.0,4.0,5.0,2.4,851.5262988384949,0.0,1080.0,0.0,0.0,33598.0,0,1,3,115.0,1,3.0,2,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1731.8224680330093,0.09161763323124975,0.05154540353690724,13999.166666666668,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +9094,2,44.0,2,0.0,2,111,2,0,63,6.0,1142.2483265799951,0.0,538.3719060502248,0.0,0.0,18895.18,0,31,1,620,201709094,,,240.0,,1.0,0.0,3.0,0.0,1.0,1.0,1458.1565415264731,0.0,400.0,0.0,0.0,22527.0,0,1,2,80.0,4,3.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1680.62023263022,0.0889443886022901,0.07460470691304745,22527.0,6,3,6,6_1,6_1,6_0_1 +9095,2,68.0,1,0.0,3,111,1,0,74,10.0,0.0,0.0,922.4310492976817,0.0,1134.5826958329062,48776.384325400584,0,10,8,6203,201709095,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3405.4859587235105,931.6014032426281,300.0,95.0,0.0,48895.0,0,5,2,65.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2057.013745130588,0.04217232936758263,0.042070022397598696,48895.0,10,5,10,10_0,10_4,10_0_1 +9096,2,60.0,3,0.0,5,111,2,65,72,7.0,983.602725666107,0.0,1012.1391833744226,0.0,0.0,24023.84,42,71,1,6204,201709096,,,226.0,,1.0,3.0,5.0,0.0,2.0,1.5,1897.7799414712201,0.0,752.0,0.0,0.0,39954.0,1,6,1,120.0,7,5.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1995.7419090405297,0.08307339330600477,0.04995099136608424,26636.0,7,4,7,7_1,7_2,7_0_0 +9097,2,38.0,3,0.0,8,111,2,42,46,7.0,0.0,0.0,701.2294076304178,0.0,2301.887846598233,54150.299999999996,30,20,1,6205,201709097,,,301.0,,2.0,0.0,5.0,3.0,5.0,2.4,2113.5158166748333,0.0,521.0,1301.0,0.0,55618.0,1,1,3,120.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3003.117254228651,0.05545892181998347,0.05399541972434555,23174.166666666668,6,3,6,6_1,6_3,6_0_0 +9098,2,36.0,5,0.0,9,112,2,22,46,3.0,0.0,0.0,1763.1679923144861,398.09743695972514,0.0,20348.42,31,20,1,6206,201709098,,,,,2.0,0.0,4.0,3.0,5.0,2.4,2298.017576700132,0.0,1310.0,0.0,0.0,33220.0,4,4,2,105.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2161.2654292742113,0.10621293590727003,0.06505916403594857,13841.666666666668,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +9099,2,43.0,3,0.0,9,211,2,0,52,5.0,0.0,0.0,2032.3539453395986,0.0,0.0,31394.46,0,31,1,6208,201709099,,,263.0,,1.0,0.0,5.0,2.0,3.0,1.6,716.021025411648,0.0,1510.0,0.0,0.0,27110.0,0,1,2,110.0,1,3.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2032.3539453395986,0.0647360695275408,0.07496694744889704,16943.75,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9100,2,44.0,2,0.0,1,400,1,0,69,4.0,1269.1648073111057,0.0,334.0390759104091,0.0,622.4746600690232,40416.700000000004,0,50,1,6209,201709100,800.0,800.0,,,1.0,1.0,3.0,0.0,1.0,1.0,2137.520299905677,600.0,0.0,0.0,0.0,19084.0,0,1,1,70.0,0,0.0,1,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2225.678543290538,0.055068289674578524,0.11662536906783369,19084.0,5,3,5,5_1,5_0,5_1_0 +9101,2,41.0,2,0.0,9,111,2,37,38,10.0,0.0,0.0,1227.4879457945126,0.0,3290.9388122003948,66057.51999999999,10,10,1,621,201709101,,,280.0,,2.0,0.0,6.0,1.0,3.0,1.8,3036.4190117618455,0.0,912.0,1860.0,0.0,92420.0,1,1,2,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4518.426757994907,0.06840139862948091,0.04889014020769214,51344.444444444445,10,5,10,10_1,10_4,10_0_0 +9102,2,81.0,4,0.0,99,111,2,86,78,2.0,0.0,0.0,926.7004174880669,0.0,1908.865617777519,25875.39671186119,71,71,1,6211,201709102,,,503.0,,0.0,5.0,4.0,2.0,4.0,2.5,2997.4249810635933,129.38908378369834,635.0,1003.0,0.0,30450.0,5,5,1,80.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2835.566035265586,0.10958541300221969,0.09312203728294206,12180.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9103,2,49.0,4,0.0,3,111,1,47,63,3.0,0.0,0.0,428.68348075169166,0.0,798.8424804219131,43119.81026820503,44,50,2,6212,201709103,,,,600.0,2.0,1.0,3.0,1.0,3.0,2.0,2298.148676879568,770.0,0.0,0.0,0.0,31993.0,1,1,3,65.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1227.5259611736049,0.028467795974481305,0.03836857941342184,15996.5,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +9104,2,36.0,4,0.0,9,120,2,55,68,3.0,0.0,624.566843803548,842.8919348805989,0.0,1570.7110589075019,35442.899999999994,43,43,1,6213,201709104,,,128.0,,2.0,0.0,5.0,2.0,4.0,2.1,2670.804456788769,1514.0,0.0,0.0,0.0,32383.0,1,1,2,125.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3038.1698375916485,0.08572012554253881,0.09381990049074046,15420.476190476189,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9105,2,66.0,2,0.0,1,112,2,0,86,10.0,0.0,416.377895869032,2269.79552081123,0.0,4229.715315169013,39565.96000000001,0,70,1,6215,201709105,,,386.0,,0.0,3.0,7.0,0.0,1.0,1.0,1872.4389219629074,4077.0,0.0,0.0,0.0,73237.0,0,5,1,200.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,6915.888731849274,0.17479390698088138,0.09443162242922667,73237.0,10,5,10,10_1,10_1,10_1_0 +9106,2,54.0,3,0.0,4,111,1,85,56,2.0,0.0,0.0,430.6975248401798,0.0,0.0,28698.2,60,30,2,6216,201709106,,,,580.0,1.0,0.0,3.0,2.0,4.0,2.5,3791.901191828191,0.0,320.0,0.0,0.0,30997.0,6,1,3,54.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,430.6975248401798,0.015007823655845309,0.013894813202573792,12398.8,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +9107,2,48.0,2,0.0,4,300,2,0,63,4.0,2379.684013708323,0.0,2018.894647688343,230.01185246561897,0.0,21227.784177580947,0,50,1,6217,201709107,,,460.0,,1.0,0.0,8.0,0.0,1.0,1.0,3304.1193992183157,0.0,1500.0,0.0,0.0,20372.0,0,1,3,220.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4628.590513862286,0.21804397836071018,0.2272035398518695,20372.0,5,3,5,5_1,5_0,5_0_1 +9108,2,59.0,4,0.0,5,111,4,52,55,4.0,0.0,0.0,1951.598159432065,134.46846759528495,0.0,30670.910875301623,60,60,2,6219,201709108,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2576.9958771505762,0.0,1450.0,0.0,0.0,34539.0,1,4,1,87.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2086.06662702735,0.06801449867298195,0.06039742398527317,17269.5,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +9109,2,42.0,3,0.0,4,111,2,85,53,4.0,0.0,0.0,725.4561434026779,0.0,1654.3160158104133,43357.76,42,43,1,622,201709109,,,339.0,,1.0,1.0,6.0,2.0,4.0,2.3,1796.8904343635547,0.0,539.0,935.0,0.0,40581.0,6,1,2,107.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2379.772159213091,0.0548868797468571,0.05864252135760802,17643.913043478264,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +9110,2,69.0,2,0.0,9,400,4,74,77,9.0,0.0,0.0,1615.1157181506744,0.0,0.0,46176.659999999996,31,44,1,6221,201709110,,,440.0,,0.0,1.0,5.0,0.0,2.0,1.5,1524.3729614702727,0.0,1200.0,0.0,0.0,57964.0,5,5,1,120.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.03497688481909853,0.027864117696340392,38642.666666666664,9,5,9,9_1,9_1,9_0_0 +9111,2,61.0,2,0.0,1,111,2,0,46,9.0,0.0,0.0,376.8603342351573,0.0,1167.752481748527,19722.53202733072,0,60,2,6222,201709111,,,130.0,,1.0,2.0,3.0,0.0,1.0,1.0,3108.1195967055237,0.0,280.0,660.0,0.0,37096.0,0,1,2,46.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1544.6128159836844,0.07831716606383095,0.04163825792494297,37096.0,9,5,9,9_0,9_2,9_1_0 +9112,2,22.0,2,0.0,9,111,4,0,34,1.0,0.0,0.0,565.290501352736,0.0,0.0,12624.22,0,30,2,6223,201709112,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3676.6139899141062,0.0,420.0,0.0,0.0,8952.0,0,2,3,13.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,565.290501352736,0.04477825175359238,0.06314683884637355,8952.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +9113,2,55.0,3,0.0,2,221,2,56,37,9.0,0.0,0.0,1884.3016711757866,123.8525359430256,0.0,30776.579999999994,71,31,1,6224,201709113,,,267.0,,2.0,3.0,6.0,0.0,2.0,1.5,2410.712165054757,0.0,1400.0,0.0,0.0,57680.0,4,1,1,113.0,1,2.0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2008.1542071188123,0.06524942690574498,0.03481543354921658,38453.333333333336,9,5,9,9_1,9_1,9_0_1 +9114,2,34.0,2,0.0,9,112,5,47,53,8.0,0.0,589.868685814462,1954.290018962316,0.0,0.0,42724.09927632509,30,41,1,6226,201709114,,,530.0,,2.0,0.0,4.0,2.0,4.0,2.1,1824.6901296678338,0.0,1452.0,0.0,0.0,60406.0,1,1,2,100.0,10,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2544.158704776778,0.05954856270513782,0.042117648988126644,28764.761904761905,8,4,8,8_1,8_1,8_0_0 +9115,2,70.0,3,0.0,1,111,2,0,77,4.0,0.0,0.0,417.2382271889242,0.0,2523.0530893536356,19549.640000000003,0,60,1,6229,201709115,,,650.0,,0.0,1.0,5.0,0.0,1.0,1.0,2645.8978117785387,0.0,310.0,1426.0,0.0,16307.0,0,6,5,118.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2940.29131654256,0.15040130235352464,0.18030853722588824,16307.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +9116,2,45.0,1,0.0,99,111,2,35,37,9.0,0.0,0.0,269.1859530251124,0.0,0.0,77023.67469897083,31,20,1,623,201709116,,,456.0,,2.0,0.0,3.0,2.0,4.0,2.1,2341.6297225174403,0.0,200.0,0.0,0.0,72510.0,1,1,3,65.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,269.1859530251124,0.003494846929559817,0.0037123976420509225,34528.57142857143,9,5,9,9_1,9_3,9_0_0 +9117,2,63.0,3,0.0,1,111,2,0,78,5.0,0.0,0.0,916.5781700505077,0.0,1712.7036398978398,28309.26,0,70,1,6231,201709117,,,130.0,,0.0,4.0,4.0,0.0,2.0,1.5,3627.7799565913347,0.0,681.0,968.0,0.0,28074.0,0,5,1,104.0,9,7.0,5,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2629.2818099483475,0.09287709427757375,0.09365540393062433,18716.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +9118,2,25.0,2,0.0,99,111,2,43,62,6.0,0.0,0.0,821.0171567265928,0.0,106.15931652259337,24949.280000000002,31,43,2,6234,201709118,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3655.7530558080957,0.0,610.0,60.0,0.0,33053.0,1,1,3,73.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,927.1764732491862,0.03716245411687977,0.0280512048300967,22035.333333333332,6,3,6,6_0,6_3,6_0_0 +9119,2,75.0,2,0.0,1,111,2,72,74,10.0,0.0,0.0,3420.5382441656143,0.0,6519.971358420034,141642.24553094516,30,12,2,6236,201709119,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2874.1731052726136,3726.4056129705123,1000.0,1500.0,0.0,78016.0,4,5,1,130.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,9940.50960258565,0.07018040108954574,0.12741629412666183,52010.666666666664,10,5,10,10_0,10_4,10_1_0 +9120,2,67.0,4,0.0,9,111,2,77,77,7.0,0.0,0.0,2503.4293631335454,0.0,0.0,43465.520000000004,70,50,1,6237,201709120,,,100.0,,0.0,3.0,5.0,0.0,2.0,1.5,3061.555334029579,0.0,1860.0,0.0,0.0,40050.0,5,5,2,135.0,6,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2503.4293631335454,0.05759575321159267,0.06250759957886505,26700.0,7,4,7,7_1,7_2,7_0_0 +9121,2,61.0,3,0.0,2,300,2,0,77,3.0,0.0,832.755791738064,1527.6302834175128,53.079658261296686,0.0,25197.92,0,60,1,6238,201709121,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2744.4937068249296,0.0,1135.0,0.0,0.0,14190.0,0,6,1,75.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2413.4657334168733,0.09578035541889464,0.17008215175594596,14190.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +9122,2,22.0,3,0.0,9,111,2,0,46,5.0,0.0,0.0,323.0231436301349,0.0,1061.5931652259337,16441.9,0,41,2,6239,201709122,,,,330.0,1.0,0.0,2.0,0.0,1.0,1.0,4690.46973510374,0.0,240.0,600.0,0.0,19816.0,0,1,3,53.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1384.6163088560686,0.08421267060717244,0.06987365305087145,19816.0,5,3,5,5_0,5_3,5_0_0 +9123,2,50.0,2,0.0,7,111,4,0,56,9.0,0.0,0.0,2243.664918464312,0.0,0.0,70298.28031599411,0,50,1,6240,201709123,,,289.0,,3.0,2.0,7.0,0.0,3.0,2.0,3180.1325602988522,0.0,1667.0,0.0,0.0,68994.0,0,1,1,120.0,5,4.0,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2243.664918464312,0.031916355682940344,0.032519710677222834,34497.0,9,5,9,9_1,9_2,9_0_0 +9124,2,46.0,5,0.0,4,111,1,0,52,4.0,0.0,0.0,476.45913685444896,0.0,184.0094819724952,26599.84,0,43,8,6241,201709124,,,,460.0,2.0,1.0,3.0,1.0,2.0,1.5,918.0393974753563,0.0,354.0,104.0,0.0,24766.0,0,1,3,77.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,660.4686188269442,0.02482979667648167,0.02666836060837213,16510.666666666668,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +9125,1,89.0,4,37.0,4,111,3,0,78,3.0,0.0,0.0,258.4185149041079,0.0,0.0,11904.587533755657,0,70,2,6242,201709125,,,,303.0,0.0,2.0,4.0,0.0,1.0,1.0,3238.050390918299,0.0,192.0,0.0,0.0,15754.0,0,5,3,80.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,258.4185149041079,0.021707473204876513,0.016403358823416776,15754.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +9126,2,38.0,2,0.0,4,111,2,46,53,7.0,0.0,0.0,1288.0547852251627,0.0,1592.3897478389006,37742.49119129575,31,41,1,6243,201709126,,,420.0,,2.0,0.0,6.0,2.0,4.0,2.1,2084.7456251241233,0.0,957.0,900.0,0.0,51758.0,1,1,2,100.0,5,4.0,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2880.4445330640633,0.07631834683261071,0.055652160691372604,24646.666666666664,7,4,7,7_1,7_2,7_0_1 +9127,2,72.0,3,0.0,1,112,6,0,77,3.0,0.0,0.0,235.53770889697333,0.0,973.1270681237726,8474.460315994116,0,60,1,6244,201709127,,,137.0,,0.0,3.0,2.0,0.0,1.0,1.0,2574.8298076962333,0.0,175.0,550.0,0.0,14910.0,0,5,1,40.0,10,2.0,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1208.664777020746,0.14262439517707043,0.08106403601748799,14910.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +9128,2,54.0,1,0.0,1,300,5,54,75,2.0,0.0,0.0,1035.0199893815573,0.0,0.0,39513.14,50,50,1,6245,201709128,,,,,1.0,2.0,6.0,0.0,2.0,1.5,2625.4508267432466,0.0,769.0,0.0,0.0,22117.0,1,7,1,140.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1035.0199893815573,0.02619432394847783,0.04679748561656451,14744.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9129,2,69.0,2,0.0,7,112,2,72,75,9.0,3172.912018277764,0.0,1628.57501580193,0.0,0.0,38715.600000000006,50,30,1,6249,201709129,,,363.0,,0.0,2.0,7.0,0.0,2.0,1.5,2421.107083697055,0.0,1210.0,0.0,0.0,49730.0,5,5,1,180.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4801.487034079694,0.12401944007272762,0.0965511167118378,33153.333333333336,9,5,9,9_1,9_0,9_0_0 +9130,2,65.0,2,0.0,7,112,5,77,74,8.0,0.0,208.188947934516,1776.6272899657417,0.0,0.0,43034.64,31,31,1,6251,201709130,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,1896.1012902452176,0.0,1320.0,0.0,0.0,44762.0,5,5,1,112.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1984.8162379002576,0.0461213626487931,0.04434154501363339,29841.333333333332,8,4,8,8_1,8_2,8_0_0 +9131,1,40.0,4,250.0,2,111,4,0,46,2.0,0.0,0.0,738.9154410539335,0.0,0.0,11299.800000000001,0,31,2,6252,201709131,,,198.0,166.0,1.0,0.0,1.0,0.0,1.0,1.0,3264.7794467093045,0.0,549.0,0.0,0.0,11154.0,0,4,3,27.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,738.9154410539335,0.0653919043747618,0.06624667751962825,11154.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9132,2,36.0,5,0.0,99,111,1,0,67,5.0,0.0,0.0,672.964882562781,0.0,619.262679715128,18738.36,0,41,2,6253,201709132,,,250.0,257.0,1.0,2.0,3.0,0.0,1.0,1.0,3620.6659739245865,0.0,500.0,350.0,0.0,21480.0,0,1,3,70.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1292.2275622779089,0.06896161469188919,0.06015956993845013,21480.0,6,3,6,6_0,6_2,6_0_0 +9133,1,68.0,3,330.0,5,111,1,68,78,2.0,0.0,0.0,3162.9349480450705,0.0,842.1972444125742,16291.16,71,71,2,6254,201709133,,,,231.0,1.0,4.0,3.0,0.0,2.0,1.5,3102.16309036865,0.0,2350.0,476.0,0.0,19200.0,4,5,3,67.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,4005.1321924576446,0.24584696193872288,0.20860063502383566,12800.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9134,2,59.0,1,0.0,4,111,1,0,22,1.0,0.0,0.0,83.50976897760228,0.0,155.6186650172558,40941.72,0,41,2,6256,201709134,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3031.862251958663,150.0,0.0,0.0,0.0,7406.0,0,4,2,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,239.12843399485809,0.005840703175021911,0.0322884733992517,7406.0,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +9135,1,47.0,3,280.0,1,221,2,0,55,4.0,0.0,0.0,761.796247061068,0.0,1749.8594006807475,26962.459999999995,0,50,1,6257,201709135,,,492.0,,2.0,0.0,4.0,2.0,3.0,1.8,603.6894172013349,0.0,566.0,989.0,0.0,30501.0,0,1,3,94.0,1,2.0,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,2511.6556477418153,0.09315380153523883,0.08234666560905594,16945.0,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +9136,2,31.0,2,0.0,9,112,5,21,46,5.0,0.0,555.170527825376,1279.171648775334,63.69558991355603,0.0,33267.7,50,44,1,6258,201709136,,,236.0,,2.0,0.0,4.0,1.0,3.0,1.8,2372.8264685548775,0.0,950.4,0.0,0.0,36423.0,1,1,2,156.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1898.037766514266,0.05705347128037905,0.05211096742482129,20235.0,5,3,5,5_1,5_0,5_0_0 +9137,2,41.0,3,0.0,3,111,2,62,46,6.0,0.0,0.0,1296.0716145323872,0.0,2415.20168106781,36230.57717191821,44,50,2,626,201709137,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2113.2198389985656,2328.0,0.0,0.0,0.0,43657.0,1,1,2,110.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3711.2732956001973,0.10243483778880429,0.08500981046797071,20789.04761904762,5,3,5,5_0,5_3,5_0_1 +9138,2,36.0,2,0.0,1,111,2,52,35,9.0,0.0,0.0,969.0694308904046,0.0,2618.59647422397,40756.24175060326,31,31,1,6260,201709138,,,1200.0,,2.0,0.0,7.0,3.0,5.0,2.4,1693.924752035418,0.0,720.0,1480.0,0.0,71979.0,1,1,2,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3587.6659051143743,0.088027397792665,0.049843230735553065,29991.25,8,4,8,8_1,8_3,8_1_0 +9139,2,64.0,3,0.0,1,112,5,0,75,4.0,0.0,0.0,2220.7841124571773,226.47320858153253,0.0,30302.139999999996,0,50,1,6261,201709139,,,400.0,,0.0,2.0,4.0,0.0,1.0,1.0,3369.9673869102894,0.0,1650.0,0.0,0.0,18153.0,0,5,3,100.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2447.25732103871,0.08076186437785286,0.13481283099425495,18153.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +9140,2,59.0,2,0.0,7,112,2,0,13,8.0,1935.4763311494362,0.0,471.07541779394666,0.0,0.0,14530.0058467513,0,50,1,6262,201709140,,,250.0,,1.0,0.0,5.0,0.0,1.0,1.0,1647.274221063831,0.0,350.0,0.0,0.0,29273.0,0,1,1,100.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2406.551748943383,0.16562634415466893,0.08221062921270053,29273.0,8,4,8,8_1,8_0,8_0_0 +9141,2,52.0,3,0.0,4,111,2,56,48,5.0,0.0,416.377895869032,1001.3717452534181,0.0,2887.5334094145396,68623.58,60,50,1,6263,201709141,,,804.0,,4.0,1.0,6.0,4.0,6.0,3.3,1564.1412747255392,0.0,744.0,1632.0,0.0,68227.0,1,1,2,110.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,4305.283050536989,0.06273766321338801,0.06310233559348923,20674.848484848488,5,3,5,5_1,5_3,5_0_1 +9142,2,45.0,2,0.0,8,112,4,0,47,7.0,0.0,0.0,1087.511250221454,0.0,0.0,28137.41202733072,0,44,2,6265,201709142,,,,333.0,1.0,0.0,2.0,0.0,1.0,1.0,4802.643769870793,0.0,808.0,0.0,0.0,26160.0,0,1,3,48.0,10,2.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1087.511250221454,0.03865000978644097,0.04157153097176812,26160.0,7,4,7,7_0,7_1,7_0_0 +9143,2,82.0,3,0.0,3,111,2,0,86,3.0,0.0,0.0,807.5578590753372,0.0,530.7965826129669,21950.167963718086,0,71,2,6266,201709143,,,350.0,,0.0,4.0,3.0,0.0,1.0,1.0,2334.890676823248,0.0,600.0,300.0,0.0,14442.0,0,5,1,51.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1338.3544416883042,0.060972400935632914,0.09267099028446919,14442.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +9144,2,58.0,2,0.0,9,300,5,74,43,4.0,0.0,27.7585263912688,324.36907339526044,0.0,0.0,40204.1,12,33,1,6267,201709144,,,106.0,,1.0,0.0,4.0,0.0,2.0,1.5,1993.803656221767,0.0,241.0,0.0,0.0,24946.0,6,1,1,80.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,352.12759978652923,0.008758499749690436,0.01411559367379657,16630.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9145,1,55.0,3,320.0,4,120,2,0,67,2.0,1959.2731712865195,0.0,597.5928157157495,0.0,0.0,17783.36,0,71,1,6268,201709145,,,470.0,,1.0,1.0,3.0,1.0,2.0,1.5,132.7191740940469,0.0,444.0,0.0,0.0,19100.0,0,4,3,62.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2556.865987002269,0.1437785652993736,0.13386732916242244,12733.333333333334,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +9146,1,22.0,2,101.0,1,111,4,0,84,1.0,0.0,0.0,134.5929765125562,0.0,0.0,19733.68,0,42,2,627,201709146,,,,149.0,0.0,0.0,1.0,0.0,1.0,1.0,3627.5841918248243,0.0,100.0,0.0,0.0,9612.0,0,3,3,11.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,134.5929765125562,0.006820470206902929,0.014002598471967977,9612.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +9147,2,80.0,3,0.0,4,211,2,0,77,7.0,0.0,20.818894793451598,444.15682249143543,0.0,1774.6299078693526,14322.48,0,71,1,6270,201709147,,,207.0,,0.0,1.0,3.0,0.0,1.0,1.0,4171.004556362333,0.0,330.0,1003.0,0.0,23915.0,0,5,1,76.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2239.6056251542395,0.1563699600316593,0.09364857307774366,23915.0,7,4,7,7_1,7_1,7_0_1 +9148,2,72.0,2,0.0,6,111,2,78,74,10.0,0.0,0.0,1615.1157181506744,0.0,0.0,51425.46000000001,50,30,2,6271,201709148,,,,630.0,1.0,0.0,5.0,1.0,3.0,2.0,3730.348653040445,0.0,1200.0,0.0,0.0,95984.0,5,5,3,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1615.1157181506744,0.031406927972072084,0.016826926551828162,47992.0,10,5,10,10_0,10_4,10_0_0 +9149,1,51.0,4,150.0,4,111,1,52,46,5.0,0.0,0.0,1001.3717452534181,0.0,254.7823596542241,32331.32,41,43,2,6272,201709149,,,,,2.0,0.0,5.0,3.0,5.0,2.6,2786.5490390794457,0.0,744.0,144.0,0.0,51131.0,1,1,2,105.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1256.1541049076422,0.038852546227857145,0.024567368228817003,19665.76923076923,5,3,5,5_0,5_3,5_0_1 +9150,2,53.0,1,0.0,7,111,2,46,38,9.0,0.0,0.0,1162.8833170684854,0.0,1893.1744779862486,76182.84,41,31,1,6273,201709150,,,465.0,,2.0,1.0,5.0,1.0,3.0,2.0,1725.364090185464,0.0,864.0,1070.0,0.0,77710.0,1,1,1,120.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3056.057795054734,0.04011477906382506,0.039326441835732,38855.0,9,5,9,9_1,9_3,9_0_0 +9151,2,50.0,3,0.0,9,111,4,56,64,4.0,0.0,0.0,1211.3367886130059,0.0,0.0,55647.42000000001,50,50,1,6274,201709151,,,480.0,,2.0,1.0,4.0,1.0,3.0,2.0,3044.382987416924,0.0,900.0,0.0,0.0,37427.0,1,1,2,103.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1211.3367886130059,0.021768067389521483,0.03236531885037555,18713.5,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +9152,2,67.0,2,0.0,7,111,4,0,75,10.0,0.0,416.377895869032,2557.266553738568,0.0,0.0,38249.56,0,12,1,6276,201709152,,,277.0,,0.0,3.0,5.0,0.0,1.0,1.0,1645.9135474594905,0.0,1900.0,0.0,0.0,49059.0,0,5,1,142.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2973.6444496075997,0.07774323285307334,0.06061363765277726,49059.0,10,5,10,10_1,10_2,10_0_0 +9153,1,77.0,3,130.0,1,111,1,0,22,7.0,0.0,0.0,282.645250676368,0.0,0.0,8079.86753375566,0,70,8,6277,201709153,,,,95.0,1.0,2.0,2.0,0.0,1.0,1.0,4170.089487611232,0.0,210.0,0.0,0.0,24875.0,0,5,3,36.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,282.645250676368,0.034981421353202515,0.011362623142768563,24875.0,7,4,7,7_0,7_4,7_1_0 +9154,1,22.0,3,276.0,1,111,2,0,84,2.0,0.0,0.0,497.99401309645793,0.0,920.0474098624759,24927.460315994118,0,30,2,6278,201709154,,,,642.0,0.0,0.0,3.0,0.0,3.0,2.0,3249.766021656776,0.0,370.0,520.0,0.0,24922.0,0,3,3,84.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1418.0414229589337,0.05688671870230923,0.05689918236734346,12461.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +9155,2,63.0,2,0.0,1,111,2,0,34,9.0,0.0,0.0,868.5015973670635,0.0,1618.4341161794603,20277.120000000003,0,20,2,628,201709155,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2058.6752527694357,1560.0,0.0,0.0,0.0,36222.0,0,1,1,47.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2486.935713546524,0.122647383531119,0.06865815563874231,36222.0,9,5,9,9_0,9_4,9_1_0 +9156,2,41.0,2,0.0,3,111,1,31,38,10.0,0.0,0.0,672.964882562781,0.0,0.0,86128.09271308799,10,12,2,6280,201709156,,,,,2.0,0.0,4.0,1.0,3.0,1.8,3763.3387542668333,0.0,500.0,0.0,0.0,123695.0,1,1,2,77.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,672.964882562781,0.007813535181889817,0.005440518069144112,68719.44444444444,10,5,10,10_0,10_4,10_0_1 +9157,2,38.0,2,0.0,99,120,2,0,65,6.0,1348.4876077680499,582.9290542166448,511.45331074771354,127.39117982711205,0.0,25417.2,0,43,1,6281,201709157,,,170.0,,1.0,0.0,3.0,0.0,1.0,1.0,3044.021878054532,0.0,380.0,0.0,0.0,22841.0,0,1,1,80.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2570.2611525595203,0.1011229070298664,0.11252839860599449,22841.0,6,3,6,6_1,6_0,6_0_0 +9158,2,64.0,3,0.0,5,112,2,0,77,4.0,0.0,83.27557917380639,1222.1042267340104,70.77287768172891,0.0,19542.1,0,70,1,6282,201709158,,,135.0,,0.0,2.0,5.0,0.0,1.0,1.0,2738.3264415447948,0.0,908.0,0.0,0.0,18308.0,0,5,1,150.0,10,2.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1376.1526835895456,0.07041989773819322,0.07516674041891772,18308.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9159,1,22.0,4,141.0,1,400,4,0,56,4.0,0.0,0.0,1224.7960862642615,106.15931652259337,0.0,10971.160000000002,0,44,1,6283,201709159,,,145.0,209.0,1.0,0.0,2.0,0.0,1.0,1.0,2667.8904151768756,0.0,910.0,0.0,0.0,16677.0,0,1,3,80.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1330.9554027868548,0.12131400898235507,0.07980784330436258,16677.0,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +9160,2,83.0,3,0.0,1,111,2,77,72,5.0,0.0,0.0,816.9793674312161,0.0,2675.214776369353,25505.84,70,50,1,6284,201709160,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1544.4298592622579,0.0,607.0,1512.0,0.0,28208.0,5,5,1,65.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3492.194143800569,0.1369174331761106,0.12380155075867019,18805.333333333332,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +9161,2,76.0,3,0.0,4,111,2,0,75,6.0,0.0,0.0,359.36324728852503,0.0,1259.7572227347748,33032.20753821486,0,30,1,6286,201709161,,,216.0,,0.0,2.0,6.0,0.0,1.0,1.0,3411.1077273492456,0.0,267.0,712.0,0.0,21255.0,0,5,1,156.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1619.1204700232997,0.04901641732996937,0.07617598071151728,21255.0,6,3,6,6_1,6_2,6_0_1 +9162,2,30.0,1,0.0,8,221,4,21,34,5.0,0.0,0.0,2238.2811994038093,0.0,0.0,43475.479999999996,30,30,1,6287,201709162,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2292.899763616037,0.0,1663.0,0.0,0.0,34078.0,1,1,1,150.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2238.2811994038093,0.05148376048760841,0.06568111976653,18932.222222222223,5,3,5,5_1,5_1,5_0_0 +9163,2,45.0,3,0.0,9,211,2,52,62,3.0,0.0,0.0,771.2177554169469,0.0,1201.3695986473483,29997.343132637812,44,50,1,6289,201709163,,,408.0,,2.0,0.0,5.0,2.0,4.0,2.1,2300.895420886086,0.0,573.0,679.0,0.0,32703.0,1,1,1,92.0,1,3.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1972.5873540642951,0.06575873554341798,0.06031823851219445,15572.857142857141,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9164,2,61.0,3,0.0,5,300,5,0,62,9.0,0.0,832.755791738064,932.7293272320144,159.23897478389006,0.0,15454.400315994117,0,70,1,629,201709164,,,108.0,,1.0,1.0,5.0,0.0,1.0,1.0,2116.1704382851776,0.0,693.0,0.0,0.0,33763.0,0,1,1,80.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1924.7240937539686,0.12454214038716385,0.05700690382234898,33763.0,9,5,9,9_1,9_0,9_0_0 +9165,1,49.0,3,62.0,9,112,4,85,62,2.0,793.228004569441,0.0,2584.185149041079,169.8549064361494,0.0,23750.994392500892,50,71,1,6292,201709165,,,400.0,,1.0,2.0,3.0,1.0,3.0,2.0,2689.0206924625973,0.0,1920.0,0.0,0.0,24728.0,7,1,3,80.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,3547.2680600466697,0.14935240190055704,0.1434514744438155,12364.0,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +9166,1,52.0,3,30.0,99,400,4,85,34,2.0,0.0,0.0,2153.487624200899,0.0,0.0,18217.541750603254,71,20,1,6294,201709166,,,400.0,470.0,1.0,0.0,4.0,2.0,4.0,2.1,2668.7822826549886,0.0,1600.0,0.0,0.0,27540.0,6,1,3,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2153.487624200899,0.11820956162373492,0.07819490283953882,13114.285714285714,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +9167,2,56.0,1,0.0,3,111,1,77,43,10.0,0.0,0.0,1109.046126463463,0.0,403.40540278585485,60146.78,71,33,2,6295,201709167,,,,,2.0,1.0,4.0,2.0,4.0,2.5,2943.1647369222037,0.0,824.0,228.0,0.0,126170.0,6,1,1,65.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1512.451529249318,0.02514600996511065,0.011987410075686121,50468.0,10,5,10,10_0,10_3,10_0_1 +9168,2,26.0,3,0.0,99,111,2,52,65,6.0,0.0,0.0,974.2806380720266,0.0,1815.5510918679845,32289.58,50,43,1,6297,201709168,,,350.0,,2.0,0.0,3.0,0.0,2.0,1.5,2688.2934512100323,1750.0,0.0,0.0,0.0,33381.0,1,1,3,85.0,6,5.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2789.831729940011,0.08640037219251569,0.08357543902040115,22254.0,6,3,6,6_1,6_2,6_0_0 +9169,2,88.0,2,0.0,6,300,2,74,74,9.0,0.0,0.0,2325.766634136971,0.0,0.0,30977.48,31,41,1,6298,201709169,,,316.0,,0.0,2.0,6.0,0.0,2.0,1.5,1576.3052170393375,0.0,1728.0,0.0,0.0,56596.0,5,5,1,90.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2325.766634136971,0.07507927159139384,0.04109418747149924,37730.666666666664,9,5,9,9_1,9_1,9_0_0 +9170,1,57.0,3,272.0,99,111,2,0,78,2.0,0.0,0.0,366.09289611415284,0.0,1933.8688826532427,7249.200000000001,0,71,1,63,201709170,,,200.0,178.0,0.0,1.0,3.0,0.0,1.0,1.0,3448.9613895374214,0.0,272.0,1093.0,0.0,13020.0,0,7,3,80.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2299.9617787673956,0.3172711166428565,0.1766483701050227,13020.0,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +9171,0,21.0,2,0.0,1,120,6,43,47,3.0,0.0,0.0,1388.99951760958,53.079658261296686,0.0,40479.36031599412,30,43,1,630,201709171,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2030.5012927629946,0.0,1032.0,0.0,0.0,22828.0,1,1,5,75.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1442.0791758708765,0.03562504853371127,0.06317150761656197,15218.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9172,2,74.0,3,0.0,4,111,2,86,78,6.0,0.0,0.0,1394.3832366700822,176.9321942043223,0.0,18415.55087530163,71,50,1,6300,201709172,,,316.0,,0.0,2.0,4.0,0.0,2.0,1.5,2031.5601657018776,0.0,1036.0,0.0,0.0,32486.0,6,5,5,110.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1571.3154308744045,0.08532546441398092,0.048369002982035475,21657.333333333332,6,3,6,6_1,6_2,6_0_1 +9173,2,88.0,2,0.0,4,112,2,86,75,9.0,0.0,0.0,663.5433742069021,0.0,2422.201738657172,36158.54,50,44,1,6303,201709173,,,985.0,,0.0,3.0,5.0,0.0,2.0,1.5,1519.657706909851,0.0,493.0,1369.0,0.0,49930.0,6,5,1,100.0,9,3.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3085.745112864074,0.08533931715340481,0.06180142425123321,33286.666666666664,9,5,9,9_1,9_1,9_0_1 +9174,2,60.0,2,0.0,99,111,2,0,63,7.0,0.0,0.0,269.1859530251124,0.0,681.1889476866409,19167.940315994114,0,50,2,6304,201709174,,,,500.0,1.0,0.0,2.0,0.0,1.0,1.0,2402.934679407231,0.0,200.0,385.0,0.0,26351.0,0,1,3,60.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,950.3749007117533,0.049581482675983786,0.03606598993251692,26351.0,7,4,7,7_0,7_3,7_0_0 +9175,2,64.0,3,0.0,1,112,4,0,75,4.0,0.0,0.0,816.9793674312161,46.0023704931238,0.0,17851.905846751302,0,70,1,6305,201709175,,,159.0,,0.0,2.0,5.0,0.0,1.0,1.0,2620.996190988823,0.0,607.0,0.0,0.0,18284.0,0,5,1,200.0,8,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,862.9817379243399,0.048341154458944546,0.047198738674488074,18284.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +9176,2,66.0,3,0.0,1,111,6,74,35,10.0,0.0,0.0,903.5382954379056,0.0,1683.7242522575452,34854.63584878907,31,31,2,6306,201709176,,,,,1.0,1.0,2.0,0.0,2.0,1.5,2053.146669373399,1622.932813429718,0.0,0.0,0.0,71097.0,5,1,1,35.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2587.262547695451,0.07423008402439925,0.03639060083682084,47398.0,10,5,10,10_0,10_4,10_1_0 +9177,2,49.0,3,0.0,3,111,2,0,55,3.0,0.0,0.0,936.7671165273911,0.0,2618.59647422397,24714.320000000003,0,50,1,6307,201709177,,,,,1.0,0.0,6.0,2.0,3.0,1.8,512.06386539838,0.0,696.0,1480.0,0.0,27500.0,0,1,2,110.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3555.363590751361,0.14385844282793783,0.12928594875459493,15277.777777777777,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +9178,2,65.0,3,0.0,6,111,1,55,74,7.0,0.0,0.0,821.0171567265928,0.0,2830.9151072691566,47357.81672205293,71,31,1,6308,201709178,,,,,1.0,1.0,7.0,0.0,2.0,1.5,1391.810799111961,0.0,610.0,1600.0,0.0,41107.0,1,5,1,141.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3651.9322639957495,0.07711361115799008,0.08883966876677328,27404.666666666668,8,4,8,8_1,8_3,8_0_0 +9179,2,69.0,3,0.0,1,400,4,75,77,5.0,0.0,41.637789586903196,1911.220266478298,0.0,0.0,35894.3901582034,50,44,1,631,201709179,,,,,0.0,4.0,4.0,0.0,2.0,1.5,1467.7993009866889,0.0,1420.0,0.0,0.0,30330.0,5,5,1,140.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1952.8580560652013,0.0544056619281743,0.06438701140999674,20220.0,5,3,5,5_1,5_0,5_1_0 +9180,2,73.0,3,0.0,6,111,2,78,74,4.0,0.0,0.0,1497.0072753188063,0.0,2789.6409792333848,24348.487766114602,71,50,2,6310,201709180,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2345.3728867195214,2688.920039499171,0.0,0.0,0.0,27400.0,5,5,1,100.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4286.648254552191,0.17605398313557077,0.15644701658949603,18266.666666666668,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +9181,2,60.0,2,0.0,7,111,2,43,37,9.0,0.0,0.0,2153.487624200899,84.9274532180747,0.0,68686.47372915411,33,60,1,6311,201709181,,,300.0,,2.0,5.0,6.0,1.0,3.0,2.0,1955.989495876705,0.0,1600.0,0.0,0.0,72040.0,1,1,2,140.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2238.415077418974,0.032588877487662815,0.031071836166282257,36020.0,9,5,9,9_1,9_2,9_0_0 +9182,2,46.0,4,0.0,99,111,1,85,85,1.0,0.0,0.0,403.7789295376686,0.0,0.0,13485.259999999998,71,71,2,6312,201709182,,,,150.0,0.0,0.0,3.0,3.0,5.0,2.4,1163.376971962406,0.0,300.0,0.0,0.0,8120.0,6,4,3,78.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,403.7789295376686,0.02994224282940549,0.049726469154885294,3383.3333333333335,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +9183,2,89.0,3,0.0,4,111,1,0,86,3.0,0.0,0.0,662.1974444417765,0.0,0.0,18128.671191295747,0,50,2,6313,201709183,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2401.4677264185993,0.0,492.0,0.0,0.0,16000.0,0,5,1,90.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,662.1974444417765,0.03652763280078257,0.04138734027761103,16000.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +9184,2,89.0,2,0.0,1,112,4,0,77,7.0,0.0,0.0,134.5929765125562,318.4779495677801,0.0,28944.09665845403,0,50,1,6314,201709184,,,280.0,,0.0,2.0,5.0,0.0,1.0,1.0,2501.8152991668994,0.0,100.0,0.0,0.0,26896.0,0,5,1,120.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,453.07092608033633,0.01565331029075329,0.016845290232017265,26896.0,7,4,7,7_1,7_0,7_1_0 +9185,2,32.0,2,0.0,1,120,5,46,47,8.0,0.0,2359.474743257848,2961.045483276236,0.0,0.0,47316.709322168426,30,43,1,6317,201709185,,,380.0,,2.0,0.0,7.0,2.0,4.0,2.1,2332.7720212191975,0.0,2200.0,0.0,0.0,58540.0,1,1,2,185.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5320.520226534084,0.11244484882302157,0.09088691879969395,27876.190476190473,8,4,8,8_1,8_0,8_1_0 +9186,2,39.0,3,0.0,3,111,2,22,22,3.0,0.0,0.0,1063.284514449194,0.0,1450.8439924754427,55010.119999999995,41,20,1,6318,201709186,,,470.0,,2.0,0.0,6.0,4.0,6.0,2.9,2324.114555639182,0.0,790.0,820.0,0.0,38521.0,1,1,2,110.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2514.128506924637,0.0457030180433098,0.06526643926493697,13283.103448275862,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +9187,2,29.0,2,0.0,5,400,2,52,63,4.0,1427.810408224994,222.0682111301504,1095.5868288122074,0.0,0.0,27908.18,60,43,1,6321,201709187,,,,,2.0,0.0,4.0,1.0,3.0,1.8,1770.1214272060115,0.0,814.0,0.0,0.0,31716.0,1,1,3,86.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2745.4654481673515,0.09837493695996484,0.08656405120971597,17620.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9188,2,62.0,4,0.0,7,112,2,0,45,4.0,0.0,0.0,820.4083941949333,0.0,2465.4657276072826,27204.399999999998,0,42,1,6322,201709188,,,247.0,,1.0,0.0,4.0,1.0,2.0,1.5,1448.1447249574853,480.0,411.0,1112.0,0.0,26743.0,0,1,1,80.0,8,1.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3285.874121802216,0.12078465695998501,0.12286856829085054,17828.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9189,1,34.0,3,379.0,5,111,1,0,56,2.0,0.0,0.0,597.5928157157495,0.0,176.9321942043223,15949.490875301628,0,41,2,6323,201709189,,,,232.0,1.0,0.0,4.0,1.0,2.0,1.3,927.0578370364622,0.0,444.0,100.0,0.0,17621.0,0,4,3,78.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,774.5250099200717,0.04856111182329037,0.04395465693888382,13554.615384615385,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9190,1,31.0,2,408.0,99,112,5,56,13,2.0,0.0,27.7585263912688,1130.581002705472,0.0,0.0,16594.2916935026,50,43,1,6324,201709190,,,,172.0,2.0,0.0,4.0,2.0,4.0,2.1,2918.748213553785,0.0,840.0,0.0,0.0,23221.0,4,1,3,80.0,8,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1158.3395290967408,0.06980349330307854,0.049883275013855595,11057.619047619048,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +9191,2,67.0,3,0.0,99,112,1,0,78,3.0,0.0,0.0,403.7789295376686,0.0,0.0,11627.36,0,71,2,6325,201709191,,,,278.0,0.0,0.0,2.0,0.0,1.0,1.0,2432.620272043007,0.0,300.0,0.0,0.0,15380.0,0,5,3,49.0,10,5.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,403.7789295376686,0.03472662148051394,0.026253506471890026,15380.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +9192,1,22.0,3,260.0,99,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,15439.24,0,20,2,6326,201709192,,,,361.0,0.0,0.0,1.0,0.0,1.0,1.0,6056.2910105218025,0.0,0.0,0.0,0.0,6136.0,0,3,3,21.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0.0,0.0,0.0,6136.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9193,1,42.0,3,130.0,4,111,2,0,55,5.0,0.0,0.0,592.2629338458523,0.0,481.25556823575664,37920.44,0,30,1,6327,201709193,,,,,1.0,0.0,4.0,1.0,2.0,1.3,581.1238688128292,0.0,440.04,272.0,0.0,26112.0,0,1,2,80.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1073.5185020816089,0.028309758591451174,0.04111207498780671,20086.153846153844,5,3,5,5_1,5_3,5_0_1 +9194,2,30.0,4,0.0,9,111,1,0,46,7.0,0.0,0.0,376.8603342351573,0.0,0.0,28986.628161188146,0,42,2,6328,201709194,,,,369.0,1.0,0.0,2.0,0.0,1.0,1.0,2707.052035973572,0.0,280.0,0.0,0.0,26551.0,0,1,3,51.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,376.8603342351573,0.013001178755235739,0.014193828263913123,26551.0,7,4,7,7_0,7_4,7_0_0 +9195,2,89.0,3,0.0,7,111,2,77,78,6.0,0.0,0.0,620.4736217228841,0.0,1418.9961975186648,21465.760000000002,71,50,2,633,201709195,,,262.0,,0.0,3.0,4.0,0.0,2.0,1.5,2380.36061434378,0.0,461.0,802.0,0.0,32090.0,5,5,1,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2039.469819241549,0.0950103708995884,0.06355468430169987,21393.333333333332,6,3,6,6_0,6_3,6_0_0 +9196,0,85.0,2,0.0,1,111,2,0,77,3.0,0.0,0.0,180.3545885268253,0.0,1822.4016003045197,11694.279999999999,0,71,1,6330,201709196,,,220.0,,0.0,0.0,4.0,0.0,1.0,1.0,4609.976652355919,0.0,134.0,1030.0,0.0,13803.0,0,5,5,70.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2002.7561888313448,0.17125946948690685,0.14509571751295697,13803.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +9197,2,53.0,3,0.0,99,111,5,42,42,7.0,0.0,1151.9788452376552,1118.5231832175773,394.38186088143436,268.4714198163333,78508.4734237224,30,20,1,6332,201709197,,,530.0,,2.0,0.0,3.0,2.0,4.0,2.1,4126.354367374312,258.7781675673967,724.0,0.0,0.0,48568.0,1,1,3,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2933.3553091530002,0.03736355047080366,0.06039687261474634,23127.619047619046,6,3,6,6_1,6_3,6_0_0 +9198,0,53.0,2,0.0,2,221,5,0,52,1.0,0.0,138.792631956344,123.8255383915517,0.0,0.0,8093.0,0,71,1,6334,201709198,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1635.920581465168,0.0,92.0,0.0,0.0,7070.0,0,1,5,91.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,262.61817034789567,0.03245003958333074,0.037145427206208725,7070.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +9199,2,64.0,2,0.0,6,112,4,78,64,9.0,0.0,0.0,2417.2898581655095,169.8549064361494,0.0,36982.03999999999,71,70,1,6335,201709199,,,618.0,,3.0,0.0,5.0,2.0,4.0,2.5,2522.992974054293,0.0,1796.0,0.0,0.0,77660.0,5,1,1,130.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2587.144764601659,0.06995678887918728,0.03331373634563043,31064.0,8,4,8,8_1,8_0,8_0_0 +9200,2,40.0,2,0.0,99,221,2,52,38,8.0,1748.274522071048,0.0,1001.3717452534181,0.0,0.0,66564.03087530163,43,20,1,6336,201709200,,,,,2.0,0.0,7.0,1.0,3.0,1.8,3335.108954525151,0.0,744.0,0.0,0.0,50437.0,1,1,2,150.0,1,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2749.646267324466,0.04130828964483149,0.054516451559856176,28020.555555555555,8,4,8,8_1,8_1,8_0_0 +9201,2,76.0,3,0.0,4,111,1,0,86,4.0,0.0,0.0,395.70335094691524,0.0,0.0,10012.64115202909,0,70,2,6337,201709201,,,,285.0,0.0,0.0,2.0,0.0,1.0,1.0,2475.2874811862303,0.0,294.0,0.0,0.0,17520.0,0,5,3,50.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,395.70335094691524,0.039520376785572194,0.0225858077024495,17520.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +9202,2,59.0,1,0.0,9,111,6,37,35,10.0,0.0,0.0,4037.789295376686,0.0,0.0,45162.66,12,12,1,6339,201709202,,,1100.0,,2.0,2.0,7.0,0.0,2.0,1.5,1531.6719701451666,0.0,3000.0,0.0,0.0,114882.0,1,1,2,200.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4037.789295376686,0.08940547999999747,0.03514727542501598,76588.0,10,5,10,10_1,10_3,10_0_0 +9203,2,48.0,2,0.0,5,111,4,47,43,7.0,0.0,0.0,2974.504780927492,0.0,0.0,39009.52656017244,71,33,1,634,201709203,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2051.815828927327,0.0,2210.0,0.0,0.0,61360.0,1,1,2,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2974.504780927492,0.07625072753290917,0.04847628391342067,24544.0,7,4,7,7_1,7_4,7_0_0 +9204,2,42.0,2,0.0,8,111,2,38,53,10.0,0.0,0.0,1049.8252167979383,0.0,2505.3598699332038,155405.65087530165,30,31,1,6340,201709204,,,768.0,,2.0,0.0,7.0,2.0,4.0,2.1,1800.927247029825,0.0,780.0,1416.0,0.0,98254.0,1,1,2,145.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3555.1850867311423,0.022876807031835943,0.03618361681693511,46787.619047619046,10,5,10,10_1,10_2,10_0_0 +9205,1,44.0,5,40.0,5,111,1,0,52,2.0,0.0,0.0,444.15682249143543,0.0,150.39236507367394,11703.54,0,43,2,6343,201709205,,,200.0,254.0,2.0,1.0,4.0,1.0,2.0,1.5,3428.5236200734994,0.0,330.0,85.0,0.0,20080.0,0,1,3,90.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,594.5491875651094,0.050800799379086096,0.02960902328511501,13386.666666666666,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9206,2,77.0,3,0.0,1,400,2,0,,3.0,1367.5250798777165,527.4120014341072,605.6683943065029,383.9428614233794,0.0,37123.12,0,70,1,6345,201709206,,,,,0.0,2.0,6.0,0.0,1.0,1.0,1553.604804304573,0.0,450.0,0.0,0.0,15770.0,0,5,1,150.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2884.548337041706,0.07770220652363556,0.1829136548536275,15770.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9207,1,60.0,4,333.0,1,111,2,69,22,8.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,14134.644493575055,71,60,1,6346,201709207,,,600.0,,2.0,4.0,4.0,0.0,2.0,1.5,3664.0257035135487,720.0,0.0,0.0,0.0,40420.0,1,1,3,100.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1147.8164831753188,0.08120589687961818,0.028397241048375033,26946.666666666668,7,4,7,7_1,7_3,7_1_0 +9208,2,37.0,4,0.0,99,111,4,0,63,4.0,0.0,0.0,371.4766151746551,53.079658261296686,0.0,12114.990875301626,0,50,2,6348,201709208,,,,370.0,1.0,0.0,2.0,1.0,2.0,1.3,2784.703628115054,0.0,276.0,0.0,0.0,24410.0,0,1,3,30.0,8,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,424.55627343595177,0.03504387892701418,0.01739271910839622,18776.923076923078,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +9209,2,64.0,2,0.0,1,120,2,0,78,7.0,0.0,0.0,1169.1367656864318,0.0,2178.661310241581,22321.299999999996,0,60,1,635,201709209,,,300.0,,0.0,3.0,6.0,0.0,1.0,1.0,2635.6946701277043,2100.0,0.0,0.0,0.0,25178.0,0,5,1,180.0,0,3.0,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3347.7980759280126,0.14998221769914893,0.1329652107366754,25178.0,7,4,7,7_1,7_1,7_1_0 +9210,2,89.0,3,0.0,4,111,2,0,77,6.0,0.0,0.0,201.8894647688343,0.0,1096.9796040667982,14555.199999999999,0,71,2,6350,201709210,,,,650.0,0.0,0.0,4.0,0.0,1.0,1.0,3165.107764883194,0.0,150.0,620.0,0.0,22491.0,0,5,3,100.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1298.8690688356326,0.08923745938466202,0.057750614416239056,22491.0,6,3,6,6_0,6_3,6_0_1 +9211,2,56.0,3,0.0,4,111,2,54,13,6.0,2062.392811880547,0.0,0.0,0.0,0.0,51697.72,41,44,1,6351,201709211,,,360.0,,2.0,3.0,4.0,0.0,2.0,1.5,1195.6872656042722,0.0,0.0,0.0,0.0,35503.0,1,1,1,109.0,6,4.0,3,3,1,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2062.392811880547,0.03989330306792151,0.05809066309552846,23668.666666666668,6,3,6,6_1,6_2,6_0_1 +9212,2,39.0,2,0.0,9,111,2,43,38,8.0,0.0,0.0,767.1799661215703,0.0,2423.9710605992154,59679.58,33,30,1,6353,201709212,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.1,2364.063924664017,0.0,570.0,1370.0,0.0,60421.0,1,1,2,110.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3191.151026720786,0.053471405574918356,0.052815263347524635,28771.90476190476,8,4,8,8_1,8_3,8_0_0 +9213,2,65.0,3,0.0,5,111,4,0,78,4.0,0.0,0.0,2072.7318382933654,307.86201791552077,0.0,18990.68,0,70,1,6354,201709213,,,153.0,,0.0,3.0,5.0,0.0,1.0,1.0,2716.391766675863,0.0,1540.0,0.0,0.0,16022.0,0,5,1,99.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2380.5938562088863,0.12535590385435835,0.1485828146429214,16022.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +9214,2,45.0,4,0.0,7,111,2,0,47,4.0,0.0,0.0,807.5578590753372,0.0,2392.123265642437,52502.22,0,31,1,6355,201709214,,,640.0,,1.0,0.0,6.0,3.0,4.0,2.5,477.9955342116471,0.0,600.0,1352.0,0.0,40111.0,0,1,1,115.0,6,4.0,2,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3199.6811247177743,0.06094373008832339,0.07977066452389056,16044.4,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9215,1,26.0,3,250.0,9,111,2,46,42,3.0,0.0,0.0,323.0231436301349,0.0,636.9558991355602,19833.839999999997,30,44,2,6356,201709215,,,,390.0,2.0,0.0,1.0,0.0,2.0,1.5,6366.464124529762,0.0,240.0,360.0,0.0,22105.0,4,1,3,32.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,959.9790427656951,0.048401068212998354,0.043428140364881025,14736.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +9216,1,81.0,3,190.0,99,112,2,0,77,2.0,0.0,0.0,899.0810831038754,0.0,0.0,8623.07665845403,0,71,2,6357,201709216,,,,,0.0,2.0,1.0,0.0,1.0,1.0,3159.091477430351,0.0,668.0,0.0,0.0,10450.0,0,5,3,30.0,8,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,899.0810831038754,0.10426453558457233,0.08603646728266749,10450.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +9217,2,80.0,3,0.0,5,300,4,0,78,2.0,0.0,0.0,1507.4413369406293,38.925082724950904,0.0,9304.6,0,71,1,6358,201709217,,,150.0,,0.0,3.0,4.0,0.0,1.0,1.0,2110.7388491630795,0.0,1120.0,0.0,0.0,11040.0,0,5,1,80.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1546.3664196655802,0.16619375574077125,0.14006942207115763,11040.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +9218,2,42.0,4,0.0,1,111,2,54,65,4.0,0.0,416.377895869032,683.7323206837855,0.0,1666.701269404716,46835.500000000015,43,50,1,6359,201709218,,,240.0,,2.0,0.0,5.0,3.0,5.0,2.6,1883.8258467588078,0.0,508.0,942.0,0.0,46463.0,1,1,2,80.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2766.8114859575335,0.05907509231154856,0.05954870511928919,17870.384615384613,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +9219,1,43.0,4,422.0,99,111,1,0,52,1.0,0.0,0.0,71.81840132073795,0.0,133.83205191483998,13180.880000000001,0,50,2,636,201709219,,,,600.0,1.0,0.0,3.0,1.0,2.0,1.5,1582.8105318338464,129.0,0.0,0.0,0.0,13944.0,0,6,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,205.6504532355779,0.015602179310909278,0.014748311333589925,9296.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9220,2,56.0,2,0.0,5,112,2,0,34,10.0,0.0,0.0,1749.7086946632305,0.0,0.0,42125.579999999994,0,20,1,6360,201709220,,,150.0,,1.0,2.0,6.0,0.0,1.0,1.0,1202.9289611561446,0.0,1300.0,0.0,0.0,72470.0,0,1,2,132.0,10,1.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1749.7086946632305,0.04153553956202456,0.024143903610642066,72470.0,10,5,10,10_1,10_1,10_0_0 +9221,2,35.0,3,0.0,9,221,4,63,56,1.0,0.0,0.0,1951.598159432065,0.0,0.0,36092.7858467513,71,71,1,6361,201709221,,,210.0,,2.0,0.0,4.0,3.0,5.0,2.6,2345.088480183562,0.0,1450.0,0.0,0.0,26093.0,1,1,2,100.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1951.598159432065,0.05407169642483354,0.07479393551650117,10035.76923076923,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +9222,1,42.0,3,300.0,2,111,4,54,63,3.0,0.0,0.0,1292.0925745205395,0.0,0.0,27277.691693502602,41,50,1,6362,201709222,,,300.0,,2.0,0.0,5.0,3.0,5.0,2.4,1891.2975138657134,0.0,960.0,0.0,0.0,36320.0,1,1,2,140.0,7,5.0,4,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1292.0925745205395,0.04736810537485138,0.035575236082613974,15133.333333333334,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +9223,2,66.0,3,0.0,4,111,1,0,75,7.0,0.0,0.0,1069.3901684030616,212.31863304518674,1290.5145062338204,29126.726614085506,0,41,2,6364,201709223,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3048.736310988666,1243.9200394991708,280.0,0.0,0.0,24294.0,0,5,1,74.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2572.2233076820685,0.08831144473468423,0.10587895396731985,24294.0,7,4,7,7_0,7_2,7_0_1 +9224,2,62.0,3,0.0,1,120,5,0,74,6.0,0.0,138.792631956344,417.2382271889242,212.31863304518674,0.0,23047.62,0,41,1,6365,201709224,,,170.0,,0.0,2.0,4.0,0.0,1.0,1.0,1788.3159561158398,0.0,310.0,0.0,0.0,27577.0,0,5,1,89.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,768.349492190455,0.03333747658935955,0.027861968023731913,27577.0,8,4,8,8_1,8_1,8_1_0 +9225,2,35.0,4,0.0,1,112,2,0,35,5.0,0.0,0.0,304.180126918377,0.0,690.0355573968569,34894.04,0,31,1,6367,201709225,,,,,1.0,0.0,5.0,0.0,1.0,1.0,2614.1757370090836,0.0,226.0,390.0,0.0,19072.0,0,1,2,95.0,9,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,994.215684315234,0.028492421178953023,0.05212959754169641,19072.0,5,3,5,5_1,5_1,5_1_0 +9226,2,39.0,3,0.0,5,120,2,62,38,7.0,1872.018090783881,0.0,1897.7609688270425,28.309151072691566,0.0,56166.54063198824,31,43,1,6369,201709226,,,280.0,,2.0,0.0,8.0,2.0,4.0,2.1,1903.8870834641757,0.0,1410.0,0.0,0.0,53226.0,1,1,2,250.0,0,3.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3798.088210683615,0.06762190029771052,0.0713577614452263,25345.714285714286,7,4,7,7_1,7_1,7_0_0 +9227,2,52.0,2,0.0,2,111,2,54,46,8.0,0.0,0.0,3270.6093292551154,0.0,0.0,70096.98753821485,50,42,1,6371,201709227,,,672.0,,3.0,1.0,5.0,1.0,3.0,2.0,1788.585858813627,0.0,2430.0,0.0,0.0,57317.0,1,1,1,120.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3270.6093292551154,0.04665834359104339,0.05706176752543077,28658.5,8,4,8,8_1,8_3,8_0_1 +9228,1,56.0,4,25.0,4,111,6,0,68,2.0,0.0,0.0,1103.6624074029608,0.0,0.0,18833.4,0,71,2,6372,201709228,,,,,1.0,0.0,3.0,1.0,2.0,1.5,854.4622128073715,0.0,820.0,0.0,0.0,18160.0,0,1,2,60.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1103.6624074029608,0.05860133631755077,0.0607743616411322,12106.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9229,2,35.0,2,0.0,9,300,6,52,23,4.0,0.0,0.0,2146.757975375271,0.0,0.0,158735.72,50,50,1,6374,201709229,,,,,2.0,0.0,4.0,2.0,4.0,2.1,4584.31250513617,0.0,1595.0,0.0,0.0,34563.0,1,1,3,114.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2146.757975375271,0.013524101414447052,0.062111447946511335,16458.571428571428,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9230,2,35.0,3,0.0,6,111,4,52,38,9.0,0.0,0.0,807.5578590753372,0.0,0.0,22040.260315994114,50,31,2,6376,201709230,,,,500.0,2.0,0.0,2.0,0.0,2.0,1.5,3291.996391604718,0.0,600.0,0.0,0.0,51170.0,1,1,3,50.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,807.5578590753372,0.03664012346030736,0.015781861619607918,34113.333333333336,9,5,9,9_0,9_3,9_0_0 +9231,0,58.0,2,0.0,1,111,2,65,52,9.0,0.0,0.0,0.0,0.0,0.0,28448.730875301622,71,71,2,6377,201709231,,,,,2.0,3.0,4.0,0.0,2.0,1.5,2024.6761030198315,0.0,0.0,0.0,0.0,47810.0,1,1,5,75.0,8,6.0,3,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,31873.333333333332,9,5,9,9_0,9_2,9_1_0 +9232,2,69.0,3,0.0,4,211,1,0,78,3.0,0.0,0.0,1744.3249756027283,0.0,111.46728234872305,11567.94,0,70,2,6379,201709232,,,,252.0,0.0,0.0,3.0,0.0,1.0,1.0,2019.1727346547166,0.0,1296.0,63.0,0.0,13557.0,0,5,3,63.0,3,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1855.7922579514513,0.16042547402142915,0.13688812111466042,13557.0,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +9233,2,64.0,3,0.0,2,400,5,71,11,2.0,0.0,235.94747432578478,403.7789295376686,680.4812189098236,0.0,21310.480315994115,50,50,1,638,201709233,,,330.0,,1.0,2.0,5.0,0.0,2.0,1.5,1608.7446302761239,0.0,300.0,0.0,0.0,18820.0,5,1,1,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1320.2076227732769,0.061951096512002306,0.07014918293163001,12546.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +9234,2,70.0,2,0.0,5,112,4,75,75,9.0,0.0,0.0,1345.929765125562,70.77287768172891,0.0,25799.803018669503,60,60,1,6380,201709234,,,140.0,,0.0,2.0,5.0,0.0,2.0,1.5,1553.13599728763,0.0,1000.0,0.0,0.0,50589.0,5,5,1,120.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1416.7026428072909,0.054911374392359616,0.028004163806505188,33726.0,9,5,9,9_1,9_1,9_0_0 +9235,2,56.0,3,0.0,7,111,2,52,47,8.0,0.0,0.0,861.3950496803596,1238.525359430256,0.0,28833.282066597378,50,71,1,6381,201709235,,,550.0,,2.0,2.0,4.0,0.0,2.0,1.5,1702.6609379597223,0.0,640.0,0.0,0.0,47163.0,1,1,1,94.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2099.9204091106158,0.07282973905850698,0.04452474204589648,31442.0,8,4,8,8_1,8_2,8_0_0 +9236,1,56.0,3,250.0,5,111,1,0,,3.0,0.0,0.0,471.07541779394666,38.925082724950904,0.0,5479.097038047045,0,50,8,6382,201709236,,,,,0.0,3.0,3.0,0.0,1.0,1.0,1661.779505884501,0.0,350.0,0.0,0.0,14870.0,0,8,3,55.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,510.0005005188976,0.09308112212239278,0.03429727643032263,14870.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +9237,2,67.0,3,0.0,1,111,2,0,71,9.0,0.0,1665.511583476128,896.0609028008099,0.0,215.08575103897007,13439.8629735786,0,70,5,6383,201709237,,,,,0.0,2.0,6.0,0.0,1.0,1.0,733.4583673821545,207.32000658319512,580.0,0.0,0.0,34110.0,0,5,1,120.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2776.658237315908,0.20659870139855854,0.08140305591661999,34110.0,9,5,9,9_1,9_1,9_1_0 +9238,2,19.0,3,0.0,1,111,6,0,84,1.0,0.0,0.0,0.0,0.0,0.0,11831.24,0,41,2,6384,201709238,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3277.066900073765,0.0,0.0,0.0,0.0,3770.0,0,3,3,23.0,8,7.0,1,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,3770.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +9239,2,47.0,4,0.0,7,111,1,0,52,5.0,0.0,0.0,84.7935752029104,0.0,0.0,12346.86,0,50,2,6385,201709239,,,,359.0,1.0,2.0,3.0,0.0,1.0,1.0,1784.4666821704097,0.0,63.0,0.0,0.0,18785.0,0,1,3,74.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,84.7935752029104,0.0068676226346545115,0.004513898067762066,18785.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +9240,2,86.0,3,0.0,99,111,2,0,78,4.0,2025.9043236703526,0.0,0.0,113.23660429076627,0.0,9360.4,0,71,1,6387,201709240,,,50.0,,0.0,0.0,3.0,0.0,1.0,1.0,5780.7160967494465,0.0,0.0,0.0,0.0,18170.0,0,5,1,42.0,6,5.0,1,7,1,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2139.140927961119,0.2285309311526344,0.11772927506665487,18170.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +9241,2,56.0,2,0.0,1,112,2,56,47,9.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,31038.030337839456,50,50,1,6388,201709241,,,800.0,,2.0,2.0,5.0,0.0,2.0,1.5,1584.0522225986933,1500.0,0.0,0.0,0.0,52450.0,1,1,1,80.0,10,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2391.2843399485805,0.07704368846605866,0.04559169380264214,34966.666666666664,9,5,9,9_1,9_1,9_1_0 +9242,1,45.0,5,256.0,4,111,2,0,85,3.0,0.0,0.0,532.9881869897225,0.0,0.0,19948.579999999994,0,71,2,6389,201709242,,,,254.0,0.0,0.0,1.0,0.0,1.0,1.0,5533.419820161739,0.0,396.0,0.0,0.0,14052.0,0,7,3,27.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,532.9881869897225,0.026718101588670606,0.037929703030865534,14052.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +9243,2,70.0,3,0.0,4,111,1,0,78,2.0,0.0,0.0,646.0462872602698,0.0,0.0,11086.0,0,50,2,639,201709243,,,,332.0,0.0,5.0,2.0,0.0,1.0,1.0,4574.80478434925,0.0,480.0,0.0,0.0,11580.0,0,5,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,646.0462872602698,0.058275869318083144,0.05578983482385749,11580.0,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +9244,2,85.0,2,0.0,99,111,6,0,74,9.0,0.0,0.0,1232.8716648550148,0.0,0.0,29565.03087530163,0,60,2,6390,201709244,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3459.1793189569557,0.0,916.0,0.0,0.0,41800.0,0,5,5,75.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1232.8716648550148,0.04170033408911286,0.029494537436722843,41800.0,10,5,10,10_0,10_3,10_0_0 +9245,2,77.0,2,0.0,4,400,2,77,78,6.0,1665.7788095958263,0.0,74.0261370819059,283.09151072691566,0.0,31733.28,70,50,1,6391,201709245,,,360.0,,0.0,3.0,6.0,0.0,2.0,1.5,2007.5372250770886,0.0,55.0,0.0,0.0,33811.0,5,5,1,131.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2022.896457404648,0.06374684424064099,0.05982953646460169,22540.666666666668,6,3,6,6_1,6_0,6_0_1 +9246,2,33.0,3,0.0,3,111,3,0,38,5.0,0.0,0.0,874.8543473316153,0.0,0.0,38404.86,0,12,8,6392,201709246,,,,580.0,1.0,0.0,3.0,2.0,3.0,1.6,573.0565048238087,0.0,650.0,0.0,0.0,31679.0,0,1,3,56.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,874.8543473316153,0.022779782228905802,0.027616223597071096,19799.375,5,3,5,5_0,5_3,5_0_1 +9247,2,69.0,1,0.0,5,120,5,77,77,5.0,0.0,832.755791738064,1668.9529087556969,198.16405750884095,0.0,38817.42,70,70,1,6393,201709247,,,235.0,,0.0,4.0,4.0,0.0,2.0,1.5,1781.7068921725702,0.0,1240.0,0.0,0.0,29336.0,5,5,1,90.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2699.8727580026016,0.06955312223230194,0.09203275013643993,19557.333333333332,5,3,5,5_1,5_0,5_0_0 +9248,2,71.0,2,0.0,1,111,2,86,74,9.0,0.0,0.0,726.8020731678034,0.0,3045.003062256387,32760.16,33,12,1,6394,201709248,,,530.0,,0.0,3.0,9.0,0.0,2.0,1.5,1807.1489046851098,0.0,540.0,1721.0,0.0,67849.0,5,5,1,120.0,4,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3771.80513542419,0.11513390457873802,0.055591167672687736,45232.666666666664,10,5,10,10_1,10_2,10_1_0 +9250,2,38.0,2,0.0,5,111,2,63,85,3.0,0.0,0.0,726.8020731678034,0.0,1680.8558449410618,46510.131693502604,50,50,1,6396,201709250,,,249.0,,1.0,0.0,5.0,4.0,6.0,2.7,1332.6239758925424,0.0,540.0,950.0,0.0,40096.0,1,4,1,110.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2407.6579181088655,0.05176631048854269,0.060047334350280965,14850.370370370369,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9251,1,42.0,4,379.0,1,111,4,85,56,2.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,8220.740315994117,50,50,2,6398,201709251,,,,101.0,1.0,2.0,1.0,1.0,3.0,1.8,1046.7950470464855,1300.0,0.0,0.0,0.0,21159.0,6,1,3,28.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2072.4464279554363,0.2520997316900187,0.0979463314880399,11755.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +9252,2,52.0,1,0.0,4,112,4,0,64,8.0,0.0,0.0,92.33731122238724,0.0,172.06860083117607,23634.88519793895,0,50,1,6399,201709252,,,,,1.0,2.0,5.0,0.0,1.0,1.0,2181.8659550402103,165.8560052665561,0.0,0.0,0.0,29480.0,0,1,3,80.0,7,0.0,1,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,264.4059120535633,0.011187103717204452,0.008968992946186001,29480.0,8,4,8,8_1,8_0,8_0_1 +9253,2,54.0,4,0.0,4,111,1,0,52,8.0,0.0,0.0,29.5067850387528,0.0,54.98526163943038,13141.06784590315,0,41,2,64,201709253,,,,397.0,3.0,1.0,3.0,2.0,3.0,2.0,2488.057607323587,53.0,0.0,0.0,0.0,57980.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,84.49204667818317,0.006429618024118516,0.0014572619295995719,28990.0,8,4,8,8_0,8_4,8_0_1 +9254,2,61.0,1,0.0,2,111,4,78,38,10.0,0.0,0.0,2286.73467094833,0.0,0.0,24071.52,50,42,1,6400,201709254,,,170.0,,1.0,0.0,5.0,0.0,2.0,1.5,2274.4931028744872,0.0,1699.0,0.0,0.0,95864.0,5,1,1,156.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2286.73467094833,0.09499751868383592,0.023853945912421032,63909.333333333336,10,5,10,10_1,10_3,10_0_1 +9255,1,59.0,3,90.0,4,300,2,0,,2.0,0.0,0.0,1803.545885268253,0.0,1769.3219420432229,8310.96,0,50,1,6402,201709255,,,,,0.0,0.0,2.0,0.0,1.0,1.0,1583.9757889752973,0.0,1340.0,1000.0,0.0,10800.0,0,8,3,,0,0.0,1,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,3572.8678273114756,0.4298983303146058,0.33082109512143293,10800.0,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +9256,2,61.0,4,0.0,9,300,6,85,63,1.0,0.0,277.585263912688,672.964882562781,1316.3755248801579,0.0,29470.84,71,71,1,6403,201709256,,,600.0,,1.0,0.0,5.0,2.0,4.0,2.5,2329.4875842593115,0.0,500.0,0.0,0.0,16770.0,6,4,1,120.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2266.925671355627,0.07692097243769186,0.13517744015239277,6708.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +9257,2,66.0,3,0.0,5,111,4,0,74,7.0,0.0,0.0,1615.1157181506744,144.90746705333996,0.0,35040.58,0,30,1,6404,201709257,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2284.151066211601,0.0,1200.0,0.0,0.0,23364.0,0,5,1,145.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1760.0231852040145,0.050228140778606246,0.07533055920236323,23364.0,6,3,6,6_1,6_3,6_0_0 +9259,2,57.0,3,0.0,2,111,1,78,62,5.0,0.0,0.0,581.4416585342427,0.0,562.6443775697448,21374.239999999998,71,71,2,6408,201709259,,,276.0,330.0,2.0,2.0,4.0,1.0,3.0,2.0,2795.7643395566465,0.0,432.0,318.0,0.0,39029.0,7,4,3,70.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1144.0860361039877,0.05352639607789506,0.029313741989392187,19514.5,5,3,5,5_0,5_3,5_0_1 +9261,2,63.0,3,0.0,7,400,4,54,77,4.0,0.0,0.0,1652.8017515741901,106.15931652259337,0.0,27938.16,71,60,1,641,201709261,,,491.0,,1.0,0.0,3.0,0.0,2.0,1.5,2536.7970613602142,0.0,1228.0,0.0,0.0,27244.0,1,5,3,68.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1758.9610680967835,0.0629590877887729,0.06456324578243956,18162.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9262,2,54.0,2,0.0,4,111,1,85,63,2.0,0.0,0.0,1292.0925745205395,0.0,424.6372660903735,33585.191191295744,60,41,2,6410,201709262,,,,,1.0,0.0,4.0,2.0,4.0,2.5,2428.4835636701036,0.0,960.0,240.0,0.0,31874.0,6,1,1,77.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1716.729840610913,0.05111567865827237,0.05385988079974001,12749.6,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +9263,2,48.0,3,0.0,9,111,1,46,46,7.0,0.0,0.0,565.290501352736,0.0,0.0,40226.225846751295,31,31,2,6413,201709263,,,,825.0,2.0,0.0,1.0,0.0,2.0,1.5,1187.5531529967864,0.0,420.0,0.0,0.0,35191.0,2,1,3,29.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,565.290501352736,0.014052784954430153,0.016063496386938023,23460.666666666668,6,3,6,6_0,6_4,6_0_0 +9264,2,73.0,2,0.0,4,221,1,0,75,5.0,0.0,0.0,269.1859530251124,49.54101437721024,0.0,14184.8,0,44,2,6415,201709264,,,140.0,,0.0,0.0,1.0,0.0,1.0,1.0,1715.0118767405154,0.0,200.0,0.0,0.0,21688.0,0,5,1,40.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,318.7269674023226,0.022469613064852702,0.014696005505455672,21688.0,6,3,6,6_0,6_1,6_0_1 +9265,2,25.0,2,0.0,4,111,1,42,47,6.0,0.0,0.0,335.13651151626493,0.0,0.0,30930.762382591492,0,31,2,6416,201709265,,,,,2.0,0.0,2.0,0.0,2.0,1.5,4211.134643336478,0.0,249.0,0.0,0.0,33081.0,1,1,2,45.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,335.13651151626493,0.010835054997056493,0.010130785390897038,22054.0,6,3,6,6_0,6_3,6_0_1 +9266,1,62.0,3,80.0,3,111,1,0,78,3.0,0.0,0.0,361.8756655696098,0.0,674.3475484081084,9167.8,0,71,2,6418,201709266,,,,,0.0,0.0,3.0,0.0,1.0,1.0,4691.078011793799,650.0,0.0,0.0,0.0,15414.0,0,5,3,70.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1036.2232139777182,0.11302855799403545,0.06722610704409746,15414.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +9267,2,65.0,3,0.0,8,112,5,77,71,10.0,0.0,0.0,1345.929765125562,0.0,132.69914565324171,75132.18624417832,60,50,1,6419,201709267,,,,,1.0,0.0,6.0,1.0,3.0,2.0,1397.1960261046613,0.0,1000.0,75.0,0.0,110796.0,5,5,1,180.0,9,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1478.6289107788036,0.019680365828478423,0.013345508057861328,55398.0,10,5,10,10_1,10_1,10_0_0 +9268,2,48.0,1,0.0,1,111,2,38,43,8.0,0.0,0.0,108.56269967088294,0.0,202.30426452243253,62063.899999999994,50,33,1,642,201709268,,,544.0,,2.0,1.0,5.0,2.0,4.0,2.3,1833.603564040057,195.0,0.0,0.0,0.0,66930.0,1,1,1,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,310.8669641933155,0.005008820976337541,0.004644658063548715,29100.000000000004,8,4,8,8_1,8_4,8_1_0 +9269,2,66.0,1,0.0,1,111,2,74,31,10.0,0.0,0.0,1607.7523856094144,0.0,2996.0121191803228,59279.83860497342,20,10,2,6423,201709269,,,,,1.0,3.0,3.0,0.0,2.0,1.5,2126.2384569746287,2887.8400789983416,0.0,0.0,0.0,423335.0,5,1,1,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4603.764504789737,0.07766155598816853,0.01087499144835588,282223.3333333333,10,5,10,10_0,10_4,10_1_0 +9270,2,38.0,3,0.0,1,400,2,22,22,9.0,0.0,555.170527825376,2361.2072130392153,0.0,236.5943261428671,49389.385620555346,31,20,1,6425,201709270,,,,,2.0,1.0,8.0,0.0,2.0,1.5,3256.5363456711984,228.05200724151464,1660.0,0.0,0.0,52595.0,1,1,2,180.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3152.972067007458,0.06383906232871267,0.059948133225733585,35063.333333333336,9,5,9,9_1,9_0,9_1_0 +9271,2,23.0,3,0.0,9,112,4,43,63,8.0,0.0,0.0,1655.4936111044412,0.0,0.0,41785.64000000001,31,50,2,6426,201709271,,,,800.0,2.0,0.0,3.0,0.0,2.0,1.5,2839.5282562337256,0.0,1230.0,0.0,0.0,46569.0,1,1,3,66.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1655.4936111044412,0.03961872095543926,0.035549262623299646,31046.0,8,4,8,8_0,8_0,8_0_0 +9272,2,56.0,1,0.0,7,300,2,22,46,10.0,1903.7472109666587,0.0,2180.563665151631,0.0,602.2401029091162,84552.30841990658,41,50,1,6428,201709272,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1649.0944858303208,580.4960184329464,1380.0,0.0,0.0,123875.0,1,1,1,150.0,0,0.0,3,7,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4686.550979027406,0.05542783002153999,0.037832903967930626,82583.33333333333,10,5,10,10_1,10_0,10_0_0 +9273,1,22.0,3,272.0,99,111,2,84,55,2.0,0.0,0.0,194.8561276144053,0.0,363.11021837359687,25770.0458467513,41,43,8,6429,201709273,,,300.0,263.0,1.0,0.0,4.0,0.0,2.0,1.5,2710.3039276066033,350.0,0.0,0.0,0.0,17571.0,3,1,3,68.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,557.9663459880021,0.0216517405248754,0.03175495680314166,11714.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9274,2,63.0,3,0.0,5,111,4,0,75,6.0,0.0,0.0,888.3136449828709,106.15931652259337,0.0,19849.04,0,33,1,6430,201709274,,,96.0,,0.0,1.0,5.0,0.0,1.0,1.0,2266.739488424109,0.0,660.0,0.0,0.0,21430.0,0,5,2,100.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,994.4729615054642,0.05010181658687091,0.0464056444939554,21430.0,6,3,6,6_1,6_3,6_0_0 +9275,2,68.0,3,0.0,5,400,2,78,72,4.0,1045.4745100225234,0.0,602.9765347762518,212.31863304518674,0.0,27319.64,50,50,1,6433,201709275,,,293.0,,0.0,2.0,5.0,0.0,2.0,1.5,1634.0427330949026,0.0,448.0,0.0,0.0,24216.0,5,5,1,120.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1860.769677843962,0.06811106141383862,0.07684050536190791,16144.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9277,2,70.0,3,0.0,4,111,2,78,78,2.0,0.0,0.0,414.5463676586731,0.0,1077.5170627043228,16871.48,60,50,1,6436,201709277,,,380.0,388.0,0.0,0.0,2.0,0.0,2.0,1.5,1799.7401142789263,0.0,308.0,609.0,0.0,17547.0,5,5,3,60.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1492.0634303629959,0.08843702095862342,0.08503239473203374,11698.0,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +9278,2,66.0,3,0.0,5,112,2,77,77,5.0,0.0,0.0,706.61312669092,0.0,2025.8736236394902,20084.24,70,70,2,6438,201709278,,,320.0,284.0,0.0,1.0,2.0,0.0,2.0,1.5,3264.3001584204926,0.0,525.0,1145.0,0.0,30350.0,5,5,3,30.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2732.4867503304104,0.1360512894852088,0.0900325123667351,20233.333333333332,5,3,5,5_0,5_1,5_0_0 +9279,1,36.0,2,388.0,99,112,1,85,63,3.0,0.0,0.0,49.799401309645795,0.0,92.0047409862476,26060.878839019722,43,50,8,6439,201709279,,,90.0,31.0,1.0,0.0,3.0,2.0,4.0,2.1,2230.182685938134,0.0,37.0,52.0,0.0,32306.0,6,1,3,57.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,141.8041422958934,0.005441264785114489,0.004389405754221922,15383.809523809523,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +9280,2,73.0,3,0.0,1,400,2,71,71,4.0,1903.7472109666587,0.0,780.639263772826,205.24134527701386,0.0,15102.160000000002,70,71,1,6440,201709280,,,,,0.0,4.0,4.0,0.0,2.0,1.5,1630.970939878591,0.0,580.0,0.0,0.0,25344.0,5,5,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2889.6278200164984,0.19133871049018802,0.11401624921150956,16896.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9281,2,22.0,3,0.0,1,111,2,0,67,5.0,0.0,0.0,434.25079868353174,0.0,809.2170580897301,29747.76,0,43,2,6442,201709281,,,,385.0,1.0,0.0,2.0,0.0,1.0,1.0,3092.283858438528,780.0,0.0,0.0,0.0,18757.0,0,1,3,45.0,5,4.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1243.467856773262,0.04180038620633157,0.06629353610776041,18757.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +9282,2,62.0,1,0.0,4,400,2,0,77,4.0,1380.2167279508276,0.0,526.5248067130003,0.0,135.9341946566291,14934.98224335034,0,41,1,6443,201709282,,,119.0,,0.0,1.0,3.0,0.0,1.0,1.0,2677.58644883449,131.02624416057932,337.0,0.0,0.0,17876.0,0,5,5,120.0,0,0.0,1,7,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2042.675729320457,0.13677121914423027,0.11426917259568456,17876.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +9283,2,28.0,3,0.0,4,120,2,52,48,3.0,0.0,0.0,403.7789295376686,2653.9829130648345,0.0,32963.981750603256,50,50,1,6444,201709283,,,140.0,,2.0,0.0,4.0,1.0,3.0,1.8,3936.867775893223,0.0,300.0,0.0,0.0,28282.0,1,1,2,105.0,0,3.0,4,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3057.7618426025033,0.09276069455858575,0.10811688857232526,15712.222222222223,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +9284,2,86.0,3,0.0,3,112,2,86,62,4.0,2062.392811880547,0.0,565.290501352736,123.8525359430256,0.0,14696.76,70,71,1,6446,201709284,,,199.0,,1.0,3.0,5.0,0.0,2.0,1.5,2808.145672833507,0.0,420.0,0.0,0.0,24819.0,5,5,1,84.0,9,1.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2751.5358491763086,0.18722057441070744,0.11086408997849666,16546.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +9285,2,80.0,3,0.0,4,112,2,0,78,7.0,2062.392811880547,0.0,952.9182737088979,159.23897478389006,0.0,9348.271191295746,0,50,1,6447,201709285,,,,,0.0,5.0,6.0,0.0,1.0,1.0,3370.176706162944,0.0,708.0,0.0,0.0,25520.0,0,5,1,120.0,8,0.0,1,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3174.550060373335,0.339586860009922,0.12439459484221532,25520.0,7,4,7,7_1,7_0,7_0_1 +9286,1,61.0,3,358.0,2,111,2,0,75,3.0,0.0,0.0,647.3922170253953,0.0,2602.672576745581,31207.30031599411,0,50,2,6449,201709286,,,,240.0,0.0,0.0,4.0,3.0,4.0,2.5,890.1150872564086,0.0,481.0,1471.0,0.0,37552.0,0,5,3,84.0,7,5.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,3250.0647937709764,0.10414437522188613,0.08654838074592502,15020.8,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +9287,1,42.0,4,408.0,2,211,2,0,52,2.0,0.0,0.0,605.6683943065029,0.0,707.7287768172891,13246.247849749778,0,50,8,645,201709287,,,,,1.0,0.0,3.0,2.0,3.0,1.8,753.7134366285206,0.0,450.0,400.0,0.0,19396.0,0,2,3,83.0,1,2.0,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1313.397171123792,0.09915239289053482,0.06771484693358383,10775.555555555555,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +9288,2,77.0,2,0.0,5,111,1,0,75,8.0,0.0,0.0,703.2914641759462,0.0,859.1085434122666,20208.834955911632,0,12,2,6450,201709288,,,,,0.0,0.0,2.0,0.0,1.0,1.0,4188.397359795295,828.0901362156694,180.0,0.0,0.0,34528.0,0,5,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1562.4000075882127,0.07731272045107025,0.04525023191578466,34528.0,9,5,9,9_0,9_4,9_0_0 +9289,0,36.0,3,0.0,6,112,1,56,53,6.0,0.0,0.0,1480.522741638118,84.9274532180747,0.0,25939.242382591492,50,42,2,6452,201709289,,,,,2.0,1.0,4.0,2.0,4.0,2.1,2376.7608932729,0.0,1100.0,0.0,0.0,43844.0,1,1,5,72.0,9,3.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1565.4501948561929,0.06035065218045103,0.03570500398814417,20878.095238095237,5,3,5,5_0,5_1,5_0_0 +9290,1,38.0,4,434.0,99,111,1,0,52,2.0,0.0,0.0,500.68587262670906,0.0,2013.4883700451876,10285.9,0,71,2,6453,201709290,900.0,900.0,192.0,,1.0,0.0,4.0,2.0,3.0,1.6,842.040598463461,0.0,372.0,1138.0,0.0,20208.0,0,1,3,61.0,5,4.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2514.1742426718965,0.24442919362154955,0.12441479823198222,12630.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9291,2,70.0,3,0.0,5,111,2,78,78,4.0,1903.7472109666587,0.0,925.9996784063866,153.93100895776038,0.0,32887.119999999995,50,71,1,6455,201709291,,,,,0.0,4.0,5.0,0.0,2.0,1.5,2016.288965469617,0.0,688.0,0.0,0.0,26146.0,5,5,1,87.0,9,7.0,3,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2983.6778983308054,0.09072481562176335,0.1141160368060432,17430.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9292,2,37.0,3,0.0,9,400,5,56,65,5.0,0.0,0.0,807.5578590753372,0.0,0.0,25351.32,50,50,1,6456,201709292,,,176.0,,2.0,0.0,3.0,1.0,3.0,1.8,2388.525950901813,0.0,600.0,0.0,0.0,35318.0,1,1,2,130.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,807.5578590753372,0.03185466709722954,0.02286533379793129,19621.11111111111,5,3,5,5_1,5_0,5_0_0 +9293,2,54.0,3,0.0,4,111,2,0,54,4.0,0.0,0.0,417.2382271889242,0.0,0.0,14300.92,0,50,2,6457,201709293,,,,490.0,1.0,0.0,2.0,0.0,1.0,1.0,1901.5895201186904,0.0,310.0,0.0,0.0,20240.0,0,1,3,60.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,417.2382271889242,0.029175621371836512,0.020614536916448826,20240.0,5,3,5,5_0,5_3,5_0_1 +9294,2,92.0,4,0.0,5,112,4,0,71,1.0,0.0,0.0,2826.45250676368,0.0,0.0,20602.08,0,60,1,6458,201709294,,,440.0,,0.0,1.0,4.0,0.0,1.0,1.0,3541.5952886075606,0.0,2100.0,0.0,0.0,9769.0,0,5,1,100.0,6,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2826.45250676368,0.13719257991249814,0.28932874467843994,9769.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +9295,2,65.0,4,0.0,3,211,2,77,72,9.0,0.0,0.0,2338.2735313728635,0.0,4357.322620483162,56992.84784974978,60,42,1,6459,201709295,,,500.0,,0.0,3.0,7.0,0.0,2.0,1.5,1919.5050988022272,4200.0,0.0,0.0,0.0,50270.0,7,5,1,240.0,1,3.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,6695.596151856025,0.11748134028163713,0.13319268255134326,33513.333333333336,9,5,9,9_1,9_1,9_0_1 +9296,2,48.0,1,0.0,9,112,4,54,38,7.0,0.0,0.0,1390.3454473747056,0.0,0.0,79774.34000000001,50,12,1,646,201709296,,,292.0,,2.0,2.0,6.0,3.0,5.0,2.8,1835.6983467022721,0.0,1033.0,0.0,0.0,63290.0,1,1,2,170.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1390.3454473747056,0.0174284794756648,0.021967853489883168,22603.57142857143,6,3,6,6_1,6_1,6_0_0 +9297,2,60.0,3,0.0,4,400,6,45,67,8.0,0.0,0.0,2501.04767532308,123.8525359430256,146.0484523800853,30209.28406946957,42,60,1,6460,201709297,,,254.0,,2.0,2.0,5.0,0.0,2.0,1.5,2148.9571538248415,140.7753231566638,1800.0,0.0,0.0,45251.0,1,1,1,120.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2770.9486636461907,0.09172506893159367,0.061235081294251856,30167.333333333332,8,4,8,8_1,8_0,8_0_1 +9298,1,21.0,3,224.0,1,111,4,0,52,2.0,0.0,0.0,403.7789295376686,0.0,0.0,8925.2,0,30,3,6461,201709298,,,,176.0,1.0,0.0,2.0,0.0,1.0,1.0,3282.8292124847276,0.0,300.0,0.0,0.0,10739.0,0,3,3,40.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,403.7789295376686,0.0452403228541286,0.03759930436145531,10739.0,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +9299,2,76.0,2,0.0,5,111,1,0,75,8.0,0.0,0.0,393.0114914166641,0.0,0.0,31192.086296616573,0,31,2,6463,201709299,,,,,0.0,2.0,2.0,0.0,1.0,1.0,4667.6709662431385,0.0,292.0,0.0,0.0,25926.0,0,5,1,66.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,393.0114914166641,0.012599718007938902,0.015158971357581737,25926.0,7,4,7,7_0,7_4,7_0_0 +9300,2,79.0,3,0.0,4,111,1,0,86,3.0,0.0,0.0,269.1859530251124,0.0,141.54575536345783,16506.92,0,71,2,6464,201709300,,,140.0,380.0,0.0,2.0,4.0,0.0,1.0,1.0,3003.8613064343635,0.0,200.0,80.0,0.0,15780.0,0,6,3,71.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,410.7317083885702,0.024882395285648094,0.02602862537316668,15780.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +9301,2,42.0,2,0.0,5,112,6,52,65,9.0,0.0,0.0,1615.1157181506744,88.46609710216114,0.0,45806.280000000006,41,31,1,6465,201709301,,,262.0,,2.0,0.0,8.0,1.0,3.0,1.8,2077.02818529141,0.0,1200.0,0.0,0.0,60547.0,1,1,2,150.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1703.5818152528354,0.037191009950007625,0.02813651898942698,33637.22222222222,9,5,9,9_1,9_0,9_0_0 +9302,2,54.0,3,0.0,5,111,1,0,34,9.0,0.0,0.0,1806.5710351879152,0.0,1610.8285188979999,68981.87223583691,0,10,2,6466,201709302,,,,,1.0,0.0,4.0,2.0,3.0,2.0,2160.3858582423327,1552.6690054043802,700.0,0.0,0.0,84828.0,0,1,1,100.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3417.399554085915,0.04954054512180281,0.04028622098936572,42414.0,10,5,10,10_0,10_4,10_0_0 +9303,2,48.0,3,0.0,1,400,4,77,46,6.0,0.0,13.8792631956344,1689.1418552325802,106.15931652259337,0.0,26200.52621661115,60,42,1,6467,201709303,,,391.0,,1.0,1.0,7.0,0.0,2.0,1.5,1760.8339265611291,0.0,1255.0,0.0,0.0,38104.0,6,1,2,170.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1809.180434950808,0.06905130148889095,0.047480066002278186,25402.666666666668,7,4,7,7_1,7_0,7_1_0 +9304,2,55.0,2,0.0,8,111,2,75,54,9.0,0.0,0.0,80.75578590753372,0.0,79.61948739194503,59609.5716935026,50,60,1,6468,201709304,,,690.0,,3.0,1.0,6.0,2.0,4.0,2.5,2434.9650689602836,0.0,60.0,45.0,0.0,91958.0,5,1,1,240.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,160.37527329947875,0.0026904282104908924,0.001744005668886652,36783.2,9,5,9,9_1,9_3,9_0_0 +9305,2,54.0,1,0.0,7,112,2,54,48,9.0,399.7869143029983,249.82673752141918,942.1508355878933,247.7050718860512,0.0,22783.98,50,50,1,6469,201709305,,,120.0,,2.0,2.0,4.0,0.0,2.0,1.5,1305.660724342942,0.0,700.0,0.0,0.0,55980.0,1,1,1,102.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1839.469559298362,0.08073521655559572,0.032859406203972166,37320.0,9,5,9,9_1,9_0,9_0_0 +9306,2,90.0,3,0.0,6,400,5,0,78,3.0,0.0,936.8502657053219,623.1654812531352,95.54338487033404,0.0,18335.66,0,70,1,647,201709306,,,178.0,,0.0,2.0,4.0,0.0,1.0,1.0,2751.2384652600604,0.0,463.0,0.0,0.0,15428.0,0,5,1,95.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1655.5591318287911,0.09029176652647307,0.10730873294197506,15428.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9307,2,29.0,4,0.0,8,300,1,63,67,6.0,0.0,0.0,2516.888660784801,0.0,0.0,52944.56175060326,50,43,1,6471,201709307,,,276.0,640.0,2.0,0.0,4.0,2.0,4.0,2.1,2499.532764836762,0.0,1870.0,0.0,0.0,43739.0,1,1,3,88.0,0,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2516.888660784801,0.0475381904687524,0.05754335171779878,20828.095238095237,5,3,5,5_1,5_1,5_0_0 +9308,0,49.0,2,0.0,5,112,1,0,22,2.0,0.0,0.0,0.0,0.0,0.0,18716.059999999998,0,50,8,6472,201709308,,,,,1.0,0.0,3.0,1.0,2.0,1.5,5826.752276139807,0.0,0.0,0.0,0.0,17618.0,0,1,5,60.0,8,1.0,2,7,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,11745.333333333334,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +9309,2,41.0,3,0.0,9,300,2,52,47,6.0,0.0,0.0,1146.7321598869787,0.0,2845.0696828055025,34413.2958467513,44,31,1,6473,201709309,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2420.9697678004513,0.0,852.0,1608.0,0.0,43670.0,1,1,2,130.0,0,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3991.801842692481,0.11599591798671956,0.09140833163939732,20795.238095238095,5,3,5,5_1,5_0,5_0_0 +9310,2,33.0,2,0.0,9,111,4,55,46,9.0,0.0,0.0,4845.3471544520235,0.0,0.0,52962.85538350543,43,31,2,6476,201709310,,,,1000.0,2.0,0.0,3.0,2.0,4.0,2.1,3275.3485395296134,0.0,3600.0,0.0,0.0,73020.0,1,1,3,70.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4845.3471544520235,0.09148576147125635,0.06635643870791597,34771.42857142857,9,5,9,9_0,9_4,9_0_0 +9311,2,40.0,3,0.0,1,211,2,85,68,2.0,0.0,0.0,403.7789295376686,0.0,2123.1863304518674,31548.100000000002,71,71,2,6477,201709311,,,900.0,,1.0,1.0,4.0,4.0,6.0,2.7,903.0291477169601,0.0,300.0,1200.0,0.0,34220.0,6,1,3,72.0,4,3.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,2526.965259989536,0.08009880975366301,0.0738446890704131,12674.074074074073,2,1,2_0,2_0_0,2_1_0,2_1_0_0 +9312,2,73.0,2,0.0,5,112,5,77,75,6.0,0.0,971.5484236944079,1655.4936111044412,339.7098128722988,0.0,28679.68,50,50,1,6479,201709312,,,724.0,,0.0,1.0,4.0,0.0,2.0,1.5,3065.2928375043184,0.0,1230.0,0.0,0.0,33486.0,5,5,1,105.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2966.751847671148,0.10344438458417765,0.0885967821678059,22324.0,6,3,6,6_1,6_0,6_0_0 +9313,1,37.0,4,614.0,99,111,1,0,56,1.0,0.0,0.0,807.5578590753372,0.0,0.0,27340.326162745416,0,60,2,648,201709313,,,,135.0,1.0,0.0,4.0,4.0,5.0,2.6,858.8947713371085,0.0,600.0,0.0,0.0,17524.0,0,4,3,90.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,807.5578590753372,0.029537243055122543,0.04608296388240911,6740.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9314,2,45.0,1,0.0,9,112,2,0,45,10.0,0.0,0.0,995.9880261929159,0.0,0.0,34440.17087530163,0,60,2,6480,201709314,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3794.5368817788026,0.0,740.0,0.0,0.0,51250.0,0,1,2,59.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,995.9880261929159,0.028919369471165347,0.019433912706203236,51250.0,10,5,10,10_0,10_2,10_0_0 +9315,2,42.0,5,0.0,99,111,2,0,47,6.0,0.0,0.0,528.8952035248144,0.0,985.5848784426202,23348.280000000002,0,50,2,6481,201709315,,,,443.0,1.0,1.0,3.0,0.0,1.0,1.0,2965.221897403304,950.0,0.0,0.0,0.0,23675.0,0,1,3,75.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1514.4800819674347,0.06486473872882433,0.06396959163537211,23675.0,6,3,6,6_0,6_2,6_0_0 +9316,2,63.0,2,0.0,1,112,2,0,74,7.0,3172.912018277764,69.396315978172,1399.7669557305844,0.0,0.0,30017.87665845403,0,71,1,6482,201709316,,,190.0,,0.0,3.0,6.0,0.0,1.0,1.0,2917.1335051917217,0.0,1040.0,0.0,0.0,25286.0,0,5,1,120.0,8,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4642.07528998652,0.15464369258373767,0.18358282409185003,25286.0,7,4,7,7_1,7_0,7_1_0 +9317,2,32.0,2,0.0,4,111,1,0,37,5.0,0.0,0.0,1251.7146815667727,0.0,0.0,17915.011191295747,0,33,1,6484,201709317,,,,325.0,1.0,0.0,3.0,0.0,1.0,1.0,1715.0492631124855,0.0,930.0,0.0,0.0,20069.0,0,4,3,100.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1251.7146815667727,0.06986960087275498,0.06237055566130713,20069.0,5,3,5,5_1,5_3,5_0_1 +9318,2,78.0,1,0.0,1,111,2,0,72,8.0,0.0,0.0,282.645250676368,0.0,265.39829130648343,33514.880000000005,0,50,2,6485,201709318,,,,1700.0,0.0,0.0,3.0,0.0,1.0,1.0,4350.458898068248,0.0,210.0,150.0,0.0,27564.0,0,5,3,60.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,548.0435419828514,0.016352245390192394,0.019882583876899267,27564.0,8,4,8,8_0,8_4,8_1_0 +9319,2,50.0,3,0.0,1,111,1,0,52,6.0,0.0,0.0,759.1043875308169,0.0,161.0082967259333,23992.56,0,30,2,6488,201709319,,,,399.0,1.0,0.0,2.0,0.0,1.0,1.0,2771.0655077124447,0.0,564.0,91.0,0.0,23089.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,920.1126842567502,0.03834991698496326,0.039850694454361395,23089.0,6,3,6,6_0,6_4,6_1_0 +9320,2,43.0,4,0.0,8,112,2,54,67,9.0,0.0,0.0,300.1423376230003,0.0,1468.537211895875,43075.00405466143,41,50,1,6491,201709320,,,130.0,,2.0,0.0,4.0,0.0,2.0,1.5,2934.6817169554593,0.0,223.0,830.0,0.0,48843.0,1,1,2,90.0,8,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1768.6795495188753,0.04106046159100651,0.036211525694958856,32562.0,9,5,9,9_1,9_0,9_0_0 +9321,2,86.0,3,0.0,1,300,5,0,78,4.0,0.0,555.170527825376,417.2382271889242,4763.368532368764,0.0,19042.97665845403,0,70,1,6492,201709321,,,350.0,,0.0,3.0,6.0,0.0,1.0,1.0,3360.2601291078295,0.0,310.0,0.0,0.0,17636.0,0,5,1,130.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5735.7772873830645,0.3012017181062235,0.32523119116483695,17636.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9322,2,53.0,2,0.0,8,111,5,84,68,7.0,0.0,916.0313709118703,2083.49927641437,159.23897478389006,0.0,25948.601473127772,50,71,1,6493,201709322,,,600.0,,1.0,3.0,5.0,0.0,2.0,1.5,1796.2240096727796,0.0,1548.0,0.0,0.0,37610.0,3,1,2,112.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3158.7696221101305,0.12173178679326263,0.0839874932759939,25073.333333333332,7,4,7,7_1,7_2,7_0_0 +9323,1,31.0,3,462.0,99,221,2,0,43,2.0,793.228004569441,0.0,1021.5606917303015,53.079658261296686,0.0,17922.980000000003,0,50,1,6494,201709323,,,300.0,,1.0,0.0,3.0,3.0,4.0,1.9,777.9009897532604,0.0,759.0,0.0,0.0,25037.0,0,4,3,70.0,1,3.0,2,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1867.8683545610393,0.10421639451480942,0.07460431978915362,13177.368421052632,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +9324,2,25.0,4,0.0,4,300,5,34,62,8.0,0.0,0.0,955.610133239149,56.61830214538313,0.0,21942.371191295744,41,50,1,6497,201709324,,,,,2.0,0.0,5.0,0.0,2.0,1.5,4760.251696703429,0.0,710.0,0.0,0.0,44970.0,1,1,3,80.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1012.2284353845322,0.04613122376610191,0.0225089712115751,29980.0,8,4,8,8_1,8_0,8_0_1 +9325,1,41.0,2,215.0,9,120,5,85,67,3.0,0.0,249.82673752141918,1978.5167547345761,0.0,0.0,24906.949322168428,71,41,1,6499,201709325,,,650.0,,1.0,0.0,6.0,3.0,5.0,2.4,1842.1667990424767,0.0,1470.0,0.0,0.0,33129.0,6,1,2,122.0,0,1.0,4,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2228.3434922559954,0.08946673731225119,0.06726262465682621,13803.75,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +9326,2,45.0,2,0.0,6,111,4,0,46,1.0,0.0,0.0,0.0,0.0,0.0,16184.007849749774,0,50,2,650,201709326,,,,,1.0,0.0,3.0,1.0,2.0,1.3,2727.489279586874,0.0,0.0,0.0,0.0,8200.0,0,1,3,80.0,9,7.0,2,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,6307.692307692308,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +9327,0,55.0,1,0.0,3,111,1,0,52,7.0,0.0,0.0,430.6975248401798,0.0,368.0189639449904,25995.118002984742,0,31,2,6500,201709327,,,,,1.0,2.0,4.0,0.0,1.0,1.0,1771.277183262936,0.0,320.0,208.0,0.0,24896.0,0,1,5,76.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,798.7164887851702,0.030725634278461908,0.03208212117549687,24896.0,7,4,7,7_0,7_3,7_0_1 +9328,2,41.0,3,0.0,99,111,4,0,46,2.0,0.0,0.0,1897.7609688270425,0.0,0.0,38648.16,0,50,1,6501,201709328,,,476.0,,1.0,0.0,4.0,1.0,2.0,1.5,835.8205521046752,0.0,1410.0,0.0,0.0,19576.0,0,1,3,96.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1897.7609688270425,0.04910352701983852,0.09694324524044966,13050.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9329,2,43.0,2,0.0,4,111,1,0,55,9.0,0.0,0.0,3903.19631886413,0.0,0.0,39627.1,0,43,2,6502,201709329,,,,327.0,1.0,0.0,2.0,0.0,1.0,1.0,3242.33658016657,0.0,2900.0,0.0,0.0,36227.0,0,1,3,48.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,3903.19631886413,0.09849815704061438,0.10774274212228807,36227.0,9,5,9,9_0,9_2,9_0_1 +9330,2,81.0,4,0.0,6,221,4,77,78,6.0,0.0,0.0,3068.719864486281,100.85135069646371,0.0,27018.679999999997,70,50,1,6503,201709330,,,,,0.0,3.0,3.0,0.0,2.0,1.5,1912.512404633945,0.0,2280.0,0.0,0.0,30835.0,5,5,1,80.0,1,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3169.5712151827447,0.11731036509491748,0.10279134798711674,20556.666666666668,5,3,5,5_1,5_1,5_0_0 +9331,1,51.0,3,256.0,3,111,2,0,85,2.0,0.0,0.0,242.26735772260116,0.0,424.6372660903735,8227.6,0,71,2,6504,201709331,,,170.0,3.0,0.0,3.0,4.0,0.0,1.0,1.0,959.9912990351844,0.0,180.0,240.0,0.0,12795.0,0,7,3,40.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,666.9046238129747,0.08105700615160857,0.05212228400257716,12795.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +9332,1,49.0,3,131.0,5,111,4,0,52,1.0,0.0,0.0,686.4241802140366,0.0,0.0,27728.96,0,50,2,6505,201709332,,,,519.0,1.0,3.0,2.0,0.0,1.0,1.0,3407.887628311018,0.0,510.0,0.0,0.0,10402.0,0,4,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,686.4241802140366,0.024754775520395882,0.06598963470621386,10402.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9333,1,53.0,4,422.0,5,111,1,0,78,1.0,0.0,0.0,444.15682249143543,106.15931652259337,1141.2126526178788,5283.0,0,50,2,6507,201709333,645.0,645.0,,31.0,1.0,3.0,3.0,1.0,2.0,1.5,2329.150548375856,0.0,330.0,645.0,0.0,11204.0,0,7,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1691.5287916319076,0.3201833790709649,0.15097543659692142,7469.333333333333,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9334,2,67.0,2,0.0,7,112,4,37,52,10.0,0.0,0.0,4037.789295376686,0.0,0.0,26061.994343836406,50,50,1,6508,201709334,,,450.0,,2.0,4.0,6.0,0.0,2.0,1.5,1430.8177366533255,0.0,3000.0,0.0,0.0,61500.0,1,1,1,120.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4037.789295376686,0.15493017311361718,0.06565511049392986,41000.0,10,5,10,10_1,10_0,10_0_0 +9335,2,41.0,5,0.0,9,400,2,38,63,7.0,0.0,0.0,1520.900634591885,0.0,0.0,53754.27999999999,20,41,1,6509,201709335,,,700.0,,2.0,0.0,4.0,2.0,4.0,2.1,1756.9653610917214,0.0,1130.0,0.0,0.0,49830.0,1,1,2,120.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1520.900634591885,0.02829357280186592,0.03052178676684497,23728.571428571428,6,3,6,6_1,6_1,6_0_0 +9336,1,51.0,3,485.0,1,111,2,0,56,1.0,0.0,0.0,890.7708690944243,0.0,1659.9324268507285,34214.86,0,60,2,651,201709336,,,,,3.0,0.0,4.0,4.0,5.0,2.8,840.3044190199084,1600.0,0.0,0.0,0.0,22702.0,0,4,3,85.0,8,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,2550.7032959451526,0.07454957570906771,0.11235588476544589,8107.857142857143,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +9337,2,62.0,2,0.0,5,111,2,78,77,7.0,0.0,0.0,1016.1769726697993,0.0,2429.279026425345,33985.36,71,50,1,6510,201709337,,,521.0,,0.0,3.0,3.0,0.0,2.0,1.5,1831.4384021574633,0.0,755.0,1373.0,0.0,36390.0,5,5,1,90.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3445.4559990951443,0.10138059444111065,0.09468139596304326,24260.0,7,4,7,7_1,7_3,7_0_0 +9338,2,35.0,3,0.0,7,112,5,47,48,9.0,0.0,693.9631597817199,1452.2582165704814,0.0,0.0,92493.56629661655,31,30,1,6512,201709338,,,406.0,,2.0,0.0,5.0,2.0,4.0,2.1,2635.202512372086,0.0,1079.0,0.0,0.0,66353.0,1,1,2,99.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2146.2213763522013,0.023204007178937273,0.03234550625219962,31596.666666666664,8,4,8,8_1,8_0,8_0_0 +9339,2,60.0,4,0.0,1,112,5,0,11,1.0,0.0,27.7585263912688,150.74413369406295,0.0,0.0,10284.96,0,71,1,6513,201709339,,,92.0,,1.0,0.0,3.0,0.0,1.0,1.0,3433.241919172564,0.0,112.0,0.0,0.0,4522.0,0,1,1,79.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,178.50266008533174,0.01735569803726332,0.03947427246469079,4522.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +9340,2,78.0,3,0.0,99,111,2,86,78,3.0,0.0,0.0,403.7789295376686,0.0,1769.3219420432229,13490.880000000001,71,50,2,6514,201709340,,,140.0,604.0,0.0,3.0,4.0,0.0,2.0,1.5,2791.279153098413,0.0,300.0,1000.0,0.0,24281.0,6,5,3,85.0,8,6.0,3,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2173.1008715808916,0.1610792529161101,0.08949799726456455,16187.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +9341,1,46.0,9,410.0,9,211,2,0,85,3.0,0.0,0.0,1409.6449003419264,0.0,2626.843065491278,19999.619999999995,0,41,1,6515,201709341,,,,,0.0,0.0,4.0,2.0,3.0,1.6,847.3035886598356,2532.0,0.0,0.0,0.0,22110.0,0,7,3,80.0,1,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,4036.4879658332047,0.2018282330280878,0.18256390618874738,13818.75,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +9342,2,61.0,3,0.0,1,211,2,78,21,4.0,0.0,0.0,1228.295503653588,0.0,3351.0957582298643,32503.339999999997,50,60,1,6517,201709342,,,,,1.0,2.0,5.0,0.0,2.0,1.5,1333.048307609569,0.0,912.6,1894.0,0.0,26256.0,6,1,1,100.0,2,3.0,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4579.391261883452,0.1408898673761974,0.1744131345933673,17504.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +9343,2,44.0,3,0.0,9,111,2,46,47,5.0,0.0,0.0,3391.743008116416,0.0,1608.3136453172897,28998.393711848174,43,31,1,6518,201709343,,,360.0,,2.0,0.0,4.0,2.0,4.0,2.3,2101.817081656473,0.0,2520.0,909.0,0.0,43066.0,1,1,2,103.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,5000.056653433706,0.17242529717743577,0.1161021839370665,18724.34782608696,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +9344,2,57.0,4,0.0,4,221,2,56,68,1.0,0.0,0.0,1345.929765125562,0.0,884.6609710216114,27104.640000000003,71,71,2,6519,201709344,,,850.0,700.0,2.0,2.0,4.0,0.0,2.0,1.5,5695.487080133152,0.0,1000.0,500.0,0.0,15920.0,1,1,3,60.0,1,1.0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2230.5907361471736,0.08229553080753603,0.14011248342633,10613.333333333334,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +9345,2,51.0,3,0.0,9,111,4,52,64,8.0,0.0,0.0,2018.894647688343,0.0,0.0,51322.36000000001,71,50,1,652,201709345,,,780.0,,2.0,3.0,4.0,0.0,2.0,1.5,1779.8616846844484,0.0,1500.0,0.0,0.0,41370.0,1,1,3,85.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2018.894647688343,0.03933752554809137,0.048800934195995724,27580.0,8,4,8,8_1,8_3,8_0_0 +9346,1,24.0,2,277.0,8,120,2,85,65,3.0,0.0,0.0,921.947849512729,0.0,1718.030061790504,16259.2,50,50,1,6520,201709346,,,410.0,,1.0,0.0,5.0,2.0,4.0,2.1,2446.8327631166476,1656.0,0.0,0.0,0.0,28575.0,6,1,3,87.0,0,0.0,4,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2639.977911303233,0.16236825374577057,0.09238767843580868,13607.142857142857,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +9347,2,43.0,3,0.0,9,120,2,67,47,5.0,1427.810408224994,277.585263912688,938.1130462925166,0.0,0.0,38040.436658454026,50,43,1,6523,201709347,,,216.0,,2.0,0.0,5.0,3.0,5.0,2.6,1757.5601961901177,0.0,697.0,0.0,0.0,47384.0,1,1,1,80.0,0,3.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2643.5087184301988,0.06949207082360635,0.055789057876713635,18224.615384615383,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9348,2,47.0,3,0.0,5,111,2,0,52,8.0,0.0,0.0,403.7789295376686,61.9262679715128,0.0,17391.62,0,42,1,6524,201709348,,,160.0,,1.0,0.0,4.0,0.0,1.0,1.0,4837.947924220404,0.0,300.0,0.0,0.0,28110.0,0,1,1,100.0,6,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,465.7051975091814,0.026777562844012313,0.016567242885420896,28110.0,8,4,8,8_1,8_2,8_0_0 +9349,1,27.0,4,150.0,1,111,4,84,52,3.0,0.0,0.0,1615.1157181506744,0.0,0.0,15578.194343836405,20,50,2,6525,201709349,,,,,1.0,0.0,2.0,0.0,2.0,1.5,4071.6352351612877,0.0,1200.0,0.0,0.0,20877.0,3,1,3,40.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1615.1157181506744,0.10367797977752816,0.0773634007831908,13918.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +9350,0,61.0,8,0.0,98,111,2,74,38,6.0,0.0,0.0,1175.96997927657,0.0,3486.8988174415067,52563.97412656216,20,12,1,6526,201709350,,,522.0,,1.0,2.0,98.0,1.0,3.0,2.0,1987.2737759433612,625.4774345341767,615.0,1604.0,0.0,50160.0,6,1,1,228.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4662.868796718077,0.08870845239918396,0.09295990424079101,25080.0,7,4,7,7_1,7_4,7_0_0 +9351,2,70.0,3,0.0,4,400,2,0,78,3.0,3172.912018277764,499.65347504283835,430.6975248401798,148.62304313163074,0.0,21436.16,0,60,1,6527,201709351,,,210.0,,0.0,3.0,6.0,0.0,1.0,1.0,2111.4871500724753,0.0,320.0,0.0,0.0,16046.0,0,5,1,180.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4251.886061292413,0.19835110678836193,0.26498105828819724,16046.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +9352,2,27.0,3,0.0,7,112,2,85,38,3.0,0.0,0.0,708.1628409300673,0.0,1319.6462793463293,43438.28,30,12,1,6528,201709352,,,240.0,,1.0,0.0,3.0,1.0,3.0,1.8,4255.274988064659,1272.0,0.0,0.0,0.0,30980.0,6,1,3,50.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2027.8091202763967,0.04668253716022819,0.06545542673584237,17211.11111111111,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +9353,2,52.0,3,0.0,1,111,4,54,48,9.0,0.0,0.0,3216.772138650093,65.46491185559925,0.0,37002.94816118814,50,50,1,6529,201709353,,,348.0,,2.0,2.0,5.0,0.0,2.0,1.5,1552.5053657579492,0.0,2390.0,0.0,0.0,49448.0,1,1,1,110.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3282.2370505056924,0.08870204169159644,0.06637754915276033,32965.333333333336,9,5,9,9_1,9_4,9_1_0 +9354,2,48.0,2,0.0,1,111,2,42,38,10.0,0.0,0.0,868.1246985059875,0.0,3494.410835535365,57930.34,30,30,1,6531,201709354,,,600.0,,2.0,1.0,6.0,1.0,3.0,2.0,1540.2727993795208,0.0,645.0,1975.0,0.0,87034.0,1,1,1,180.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4362.535534041353,0.07530657569144861,0.05012449771401237,43517.0,10,5,10,10_1,10_2,10_1_0 +9355,1,52.0,5,437.0,8,111,2,0,56,1.0,0.0,0.0,646.0462872602698,0.0,955.4338487033403,22268.860000000004,0,41,2,6532,201709355,,,340.0,9.0,1.0,1.0,3.0,2.0,3.0,2.0,583.5466397370947,0.0,480.0,540.0,0.0,17222.0,0,1,3,68.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1601.48013596361,0.07191567668769797,0.09299036906071363,8611.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9356,2,73.0,3,0.0,7,111,4,0,78,5.0,0.0,0.0,1689.1418552325802,0.0,0.0,28496.497171918207,0,60,2,6533,201709356,,,,495.0,0.0,1.0,3.0,0.0,1.0,1.0,3959.866400227023,0.0,1255.0,0.0,0.0,19909.0,0,5,3,72.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1689.1418552325802,0.05927542059089074,0.0848431289985725,19909.0,5,3,5,5_0,5_4,5_0_0 +9357,1,74.0,4,42.0,99,111,2,0,77,2.0,0.0,0.0,576.2174059454557,0.0,1073.768788619065,11192.06,0,71,2,6534,201709357,,,250.0,200.0,0.0,3.0,3.0,0.0,1.0,1.0,2462.6188229425275,1035.0,0.0,0.0,0.0,13184.0,0,5,3,60.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1649.9861945645207,0.14742470953198256,0.12515065189354677,13184.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9358,1,46.0,4,161.0,99,400,2,85,64,2.0,1396.0812880422163,381.679737879946,1117.1217050542164,318.4779495677801,0.0,28896.219999999998,71,50,1,6536,201709358,,,237.0,296.0,2.0,0.0,5.0,3.0,5.0,3.0,2125.409181389795,0.0,830.0,0.0,0.0,34212.0,7,1,3,140.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,3213.3606805441586,0.11120349583939211,0.09392495851000113,11404.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +9359,2,36.0,1,0.0,1,111,4,0,38,10.0,0.0,0.0,29.610454832762365,0.0,0.0,27131.270875301627,0,12,8,6537,201709359,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5028.325250596903,0.0,22.0,0.0,0.0,55569.0,0,1,3,29.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,29.610454832762365,0.0010913773618956275,0.0005328592350548393,55569.0,10,5,10,10_0,10_4,10_1_0 +9360,2,68.0,3,0.0,9,112,4,77,21,3.0,0.0,0.0,1978.5167547345761,0.0,0.0,25852.67150728986,50,50,1,6538,201709360,,,640.0,,1.0,4.0,4.0,0.0,2.0,1.5,1588.1520610811056,0.0,1470.0,0.0,0.0,21472.0,5,5,2,88.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1978.5167547345761,0.07653045659813841,0.0921440366400231,14314.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9361,2,73.0,5,0.0,1,111,2,72,74,9.0,0.0,0.0,1594.3027768020306,0.0,1762.923464759361,120306.13661408552,70,20,2,654,201709361,,,,,0.0,3.0,5.0,0.0,2.0,1.5,3444.774497860728,1243.9200394991708,670.0,267.0,0.0,104852.0,5,5,1,92.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3357.2262415613914,0.027905694057241675,0.03201871439325327,69901.33333333333,10,5,10,10_0,10_4,10_1_0 +9362,1,34.0,3,437.0,9,111,2,0,52,2.0,0.0,0.0,1010.793253609297,0.0,0.0,11745.92,0,30,2,6540,201709362,,,,,1.0,0.0,3.0,2.0,3.0,1.6,801.3966847228036,0.0,751.0,0.0,0.0,20744.0,0,1,3,70.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1010.793253609297,0.08605483892358343,0.04872701762482149,12965.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9363,2,73.0,1,0.0,5,111,1,0,74,9.0,0.0,0.0,219.35232651450195,0.0,408.7583601119919,28700.964177580947,0,31,8,6542,201709363,,,,,0.0,1.0,3.0,0.0,1.0,1.0,4078.927940358464,394.0,0.0,0.0,0.0,36569.0,0,5,1,70.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,628.1106866264938,0.021884654562132344,0.01717604218399447,36569.0,9,5,9,9_0,9_3,9_0_0 +9364,2,55.0,2,0.0,9,111,2,33,37,10.0,0.0,0.0,955.610133239149,0.0,1840.0948197249518,61887.759999999995,31,60,1,6543,201709364,,,408.0,,2.0,2.0,6.0,1.0,3.0,2.0,1688.498789014269,0.0,710.0,1040.0,0.0,90593.0,1,1,2,240.0,6,5.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2795.704952964101,0.04517379451064477,0.030860054893469702,45296.5,10,5,10,10_1,10_2,10_0_0 +9365,2,50.0,2,0.0,5,111,4,0,45,9.0,0.0,0.0,761.796247061068,0.0,0.0,15390.4058467513,0,31,2,6544,201709365,,,,290.0,1.0,0.0,1.0,0.0,1.0,1.0,2265.7601906070518,0.0,566.0,0.0,0.0,37823.0,0,1,3,34.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,761.796247061068,0.04949812595240122,0.020141084711975996,37823.0,9,5,9,9_0,9_4,9_0_0 +9366,2,65.0,3,0.0,7,112,4,78,75,5.0,0.0,0.0,1746.2275223305878,0.0,658.1623981792485,23301.126167366783,60,42,1,6545,201709366,,,490.0,,0.0,1.0,4.0,0.0,2.0,1.5,1918.9444886826834,634.3992201445772,1035.0,0.0,0.0,29800.0,5,5,1,95.0,6,1.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2404.3899205098364,0.10318771304183501,0.08068422552046431,19866.666666666668,5,3,5,5_1,5_1,5_0_0 +9367,2,50.0,2,0.0,1,112,6,0,52,7.0,0.0,0.0,1106.3542669332119,564.7994116951536,0.0,12119.523846751299,0,50,1,6546,201709367,,,114.0,,1.0,0.0,3.0,0.0,1.0,1.0,2212.400432313477,0.0,822.0,0.0,0.0,25204.0,0,1,2,45.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1671.1536786283655,0.13788938408469956,0.06630509754913369,25204.0,7,4,7,7_1,7_0,7_1_0 +9368,2,37.0,3,0.0,3,111,1,52,64,5.0,0.0,0.0,33.403907591040905,0.0,62.24746600690232,33731.909115747185,50,50,2,6547,201709368,,,,389.0,2.0,0.0,4.0,2.0,4.0,2.3,2689.797525365914,60.0,0.0,0.0,0.0,43682.0,1,1,3,70.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,95.65137359794323,0.0028356347477910752,0.0021897205621982333,18992.17391304348,5,3,5,5_0,5_3,5_0_1 +9369,1,49.0,3,23.0,1,221,2,0,55,5.0,0.0,0.0,2039.0835941652263,81.38880933398825,0.0,29359.860000000004,0,42,1,6548,201709369,,,257.0,,2.0,0.0,4.0,3.0,4.0,2.3,324.22654433356354,0.0,1515.0,0.0,0.0,44779.0,0,1,2,95.0,1,1.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,2120.4724034992146,0.0722235188961805,0.04735417055984311,19469.13043478261,5,3,5,5_1,5_1,5_1_0 +9370,2,51.0,3,0.0,9,211,2,55,62,8.0,0.0,0.0,2018.894647688343,0.0,0.0,34459.479999999996,41,50,1,6549,201709370,,,250.0,,3.0,0.0,5.0,2.0,4.0,2.3,1754.5115108049495,0.0,1500.0,0.0,0.0,62781.0,1,1,2,120.0,3,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.058587496029781735,0.0321577331945707,27296.08695652174,8,4,8,8_1,8_1,8_0_0 +9371,1,51.0,3,27.0,5,111,2,0,85,3.0,0.0,0.0,418.66230847437936,0.0,780.1682406198424,16156.420000000002,0,50,2,655,201709371,,,,303.0,0.0,0.0,2.0,0.0,1.0,1.0,3231.6716510190186,752.0,0.0,0.0,0.0,14236.0,0,8,3,34.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1198.8305490942219,0.07420149693398796,0.08421119338959131,14236.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +9372,2,44.0,4,0.0,9,120,6,0,54,5.0,0.0,0.0,1345.929765125562,164.54694061001973,0.0,20032.739999999998,0,31,1,6550,201709372,,,500.0,,1.0,0.0,4.0,1.0,2.0,1.3,627.3035572180727,0.0,1000.0,0.0,0.0,24247.0,0,1,2,90.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1510.4767057355816,0.07540040482408207,0.06229540585373785,18651.53846153846,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9373,2,63.0,2,0.0,1,112,6,37,34,10.0,0.0,0.0,2843.9495937103125,0.0,0.0,122177.22,20,10,1,6552,201709373,,,232.0,,2.0,2.0,10.0,0.0,2.0,1.5,1486.9380184956328,0.0,2113.0,0.0,0.0,115948.0,5,1,1,290.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2843.9495937103125,0.02327724917714049,0.024527802063945153,77298.66666666667,10,5,10,10_1,10_1,10_1_0 +9374,1,20.0,2,154.0,99,400,2,42,52,5.0,0.0,0.0,942.1508355878933,79.61948739194503,0.0,30358.699999999993,43,50,1,6553,201709374,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2138.5480004706014,0.0,700.0,0.0,0.0,28954.0,1,1,3,90.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1021.7703229798383,0.033656590136594736,0.03528943575947497,19302.666666666668,5,3,5,5_1,5_1,5_0_0 +9375,2,69.0,2,0.0,6,112,2,75,75,7.0,856.6862449349964,138.792631956344,740.261370819059,0.0,0.0,18214.4,33,50,1,6554,201709375,,,300.0,,0.0,4.0,6.0,0.0,2.0,1.5,2134.8036778348423,0.0,550.0,0.0,0.0,39439.0,5,5,1,160.0,9,1.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1735.7402477103994,0.09529494508248415,0.04401075706053398,26292.666666666668,7,4,7,7_1,7_1,7_0_0 +9376,2,30.0,2,0.0,9,111,4,43,63,5.0,0.0,0.0,1843.9237782220198,0.0,0.0,34221.9258467513,44,50,1,6555,201709376,,,340.0,,2.0,0.0,5.0,1.0,3.0,1.8,2199.493143872474,0.0,1370.0,0.0,0.0,37900.0,1,1,3,84.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1843.9237782220198,0.05388135625327656,0.048652342433298676,21055.555555555555,5,3,5,5_1,5_3,5_0_0 +9377,0,30.0,2,0.0,99,111,1,0,85,1.0,0.0,0.0,0.0,0.0,0.0,14751.52,0,71,2,6559,201709377,,,,,0.0,0.0,3.0,1.0,2.0,1.3,1841.6437661525733,0.0,0.0,0.0,0.0,1700.0,0,8,5,45.0,9,7.0,2,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,1307.6923076923076,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +9378,1,55.0,4,272.0,4,111,1,0,64,1.0,0.0,0.0,258.4185149041079,0.0,0.0,3842.8,0,50,8,6560,201709378,,,,50.0,1.0,2.0,4.0,0.0,1.0,1.0,3246.1830887872507,0.0,192.0,0.0,0.0,9214.0,0,4,3,72.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,258.4185149041079,0.06724745365465491,0.028046289874550455,9214.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9379,2,26.0,3,0.0,9,112,1,54,63,6.0,0.0,0.0,532.9881869897225,0.0,4246.372660903735,41668.6258467513,41,50,2,6562,201709379,1200.0,1200.0,,600.0,2.0,0.0,3.0,0.0,2.0,1.5,3629.1068220959082,0.0,396.0,2400.0,0.0,34182.0,1,1,3,72.0,9,0.0,3,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,4779.3608478934575,0.11469926715296469,0.1398209832044192,22788.0,6,3,6,6_0,6_0,6_0_0 +9380,1,29.0,3,96.0,7,111,2,0,52,4.0,0.0,0.0,726.8020731678034,0.0,1275.6811202131637,23380.559999999998,0,44,2,6563,201709380,,,264.0,321.0,1.0,0.0,3.0,2.0,3.0,1.6,767.1004395717148,0.0,540.0,721.0,0.0,28630.0,0,1,3,75.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2002.4831933809671,0.08564735803509271,0.06994352753688324,17893.75,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +9381,2,57.0,3,0.0,1,112,2,0,13,4.0,0.0,0.0,1974.4789654391993,49.54101437721024,0.0,21080.68,0,50,1,6564,201709381,,,200.0,,1.0,1.0,4.0,1.0,2.0,1.5,2794.2384110475696,0.0,1467.0,0.0,0.0,26447.0,0,1,5,110.0,8,0.0,2,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2024.0199798164097,0.09601303088023772,0.07653117479549323,17631.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9382,2,46.0,3,0.0,9,111,4,0,21,4.0,0.0,0.0,2664.9409349486127,0.0,0.0,41237.10121562799,0,31,1,6565,201709382,,,779.0,,1.0,0.0,4.0,2.0,3.0,1.6,2104.3738594766387,0.0,1980.0,0.0,0.0,28035.0,0,1,2,115.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2664.9409349486127,0.06462483677050161,0.09505763991255975,17521.875,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9383,2,62.0,2,0.0,6,111,6,86,77,7.0,0.0,0.0,1195.185631431499,0.0,0.0,31161.46,60,41,1,6566,201709383,,,360.0,,0.0,3.0,7.0,0.0,2.0,1.5,1778.9463715635181,0.0,888.0,0.0,0.0,42350.0,6,5,1,130.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1195.185631431499,0.038354609553965024,0.028221620576894896,28233.333333333332,8,4,8,8_1,8_3,8_0_0 +9384,2,33.0,4,0.0,9,400,5,47,68,4.0,0.0,41.637789586903196,1195.185631431499,0.0,0.0,33278.78,42,43,1,6567,201709384,,,276.0,,2.0,0.0,5.0,3.0,5.0,2.4,1697.2532674668425,0.0,888.0,0.0,0.0,37975.0,1,4,2,136.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1236.823421018402,0.037165527733240285,0.03256941200838452,15822.916666666668,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9385,1,26.0,3,233.0,9,111,2,85,62,2.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,24429.78,71,50,1,6568,201709385,,,540.0,,1.0,0.0,4.0,2.0,4.0,2.1,3638.6398714247707,1400.0,0.0,0.0,0.0,27111.0,6,1,3,60.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2231.8653839520084,0.09135839061800836,0.08232324089675809,12910.0,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +9386,2,55.0,4,0.0,99,111,2,85,65,2.0,0.0,0.0,2691.859530251124,0.0,0.0,24540.679999999997,71,41,1,6569,201709386,,,750.0,,2.0,4.0,4.0,2.0,4.0,2.3,559.1554243820976,0.0,2000.0,0.0,0.0,24510.0,6,1,1,120.0,6,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2691.859530251124,0.10968968790804184,0.10982699021832411,10656.521739130436,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9387,2,27.0,4,0.0,9,111,1,0,55,4.0,0.0,0.0,428.68348075169166,0.0,1329.6390630348799,17456.28,0,50,2,657,201709387,999999.0,300.0,200.0,366.0,1.0,0.0,2.0,0.0,1.0,1.0,4661.555157846675,770.0,0.0,300.0,0.0,17981.0,0,1,3,49.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1758.3225437865715,0.10072721930368736,0.09778780622805025,17981.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +9388,2,60.0,1,0.0,1,112,5,75,13,6.0,0.0,41.637789586903196,1345.929765125562,212.31863304518674,0.0,20546.028161188144,33,31,1,6570,201709388,,,555.0,,1.0,2.0,4.0,0.0,2.0,1.5,2714.2528002724525,0.0,1000.0,0.0,0.0,35822.0,5,1,1,80.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1599.886187757652,0.07786839262587349,0.044662112326437714,23881.333333333332,6,3,6,6_1,6_0,6_1_0 +9389,2,73.0,3,0.0,1,300,2,0,77,6.0,1951.3408912408252,90.21521077162359,892.3514342782476,106.15931652259337,0.0,21649.467849749773,0,50,1,6573,201709389,,,153.0,,0.0,4.0,6.0,0.0,1.0,1.0,1813.5872287484249,0.0,663.0,0.0,0.0,20718.0,0,5,1,130.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3040.066852813289,0.14042224381272386,0.14673553686713434,20718.0,5,3,5,5_1,5_0,5_1_0 +9391,2,62.0,3,0.0,5,111,2,56,68,3.0,0.0,0.0,1825.080761510262,0.0,3676.650995565817,33782.40256880423,71,70,1,6575,201709391,,,3500.0,,2.0,5.0,5.0,0.0,2.0,1.5,674.0056322912144,0.0,1356.0,2078.0,0.0,25484.0,1,1,1,130.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5501.731757076079,0.16285791828662172,0.21588964672249564,16989.333333333332,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +9392,2,44.0,3,0.0,1,111,4,0,46,10.0,0.0,0.0,1884.3016711757866,0.0,0.0,17286.34,0,31,2,6577,201709392,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2823.4466070873445,0.0,1400.0,0.0,0.0,49896.0,0,1,2,48.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1884.3016711757866,0.10900524177910342,0.03776458375773181,49896.0,10,5,10,10_0,10_3,10_1_0 +9393,2,51.0,2,0.0,7,112,5,63,47,8.0,0.0,416.377895869032,2288.080600713455,159.23897478389006,0.0,52368.66999999999,31,31,1,6578,201709393,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2201.759035389378,0.0,1700.0,0.0,0.0,67751.0,1,1,1,110.0,7,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2863.697471366377,0.05468341035520623,0.04226797348181395,27100.4,7,4,7,7_1,7_0,7_0_0 +9394,2,49.0,4,0.0,1,111,6,0,54,3.0,0.0,277.585263912688,1372.8483604280732,0.0,0.0,26782.155877066765,0,43,1,6579,201709394,,,,,1.0,0.0,4.0,2.0,3.0,2.0,2317.2047028476895,0.0,1020.0,0.0,0.0,28641.0,0,4,1,60.0,8,6.0,2,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1650.433624340761,0.0616243752712233,0.05762486031705461,14320.5,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +9395,2,76.0,3,0.0,4,112,2,77,78,6.0,3426.7449797399854,0.0,807.5578590753372,477.7169243516702,0.0,18872.08,71,71,1,658,201709395,,,300.0,,0.0,3.0,4.0,0.0,2.0,1.5,2733.7551559204317,0.0,600.0,0.0,0.0,31359.0,5,5,5,72.0,9,1.0,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,4712.019763166993,0.24968205747151306,0.15026052371462714,20906.0,5,3,5,5_1,5_1,5_0_1 +9396,2,48.0,1,0.0,9,112,2,46,48,8.0,0.0,0.0,1523.592494122136,0.0,2017.027013929274,57705.09999999999,41,31,1,6581,201709396,,,158.0,,2.0,1.0,8.0,1.0,3.0,2.0,2299.967218891929,0.0,1132.0,1140.0,0.0,57846.0,1,1,1,170.0,8,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3540.61950805141,0.0613571332178856,0.06120768087769958,28923.0,8,4,8,8_1,8_0,8_0_0 +9397,2,31.0,3,0.0,4,112,2,64,54,7.0,0.0,0.0,1230.1798053247637,0.0,2638.059015586445,36848.42,71,30,1,6584,201709397,,,607.0,,2.0,0.0,5.0,1.0,3.0,1.8,3221.5306960501,0.0,914.0,1491.0,0.0,45610.0,1,1,2,120.0,6,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3868.2388209112087,0.10497706064225301,0.08481119975687806,25338.888888888887,7,4,7,7_1,7_0,7_0_1 +9398,2,44.0,1,0.0,9,120,6,52,37,9.0,0.0,0.0,2018.894647688343,0.0,0.0,91748.8,50,31,1,6588,201709398,,,624.0,,2.0,0.0,6.0,2.0,4.0,2.5,1648.4974793461404,0.0,1500.0,0.0,0.0,80645.0,1,1,2,200.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.022004589135643658,0.025034343700022853,32258.0,9,5,9,9_1,9_0,9_0_0 +9399,2,73.0,2,0.0,6,400,4,78,78,5.0,0.0,277.585263912688,1615.1157181506744,212.31863304518674,0.0,22354.92,70,70,1,6589,201709399,,,325.0,,0.0,2.0,3.0,0.0,2.0,1.5,1647.416755951236,0.0,1200.0,0.0,0.0,29385.0,5,5,1,80.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2105.0196151085493,0.09416359419351755,0.0716358555422341,19590.0,5,3,5,5_1,5_0,5_0_0 +9400,1,56.0,3,205.0,1,120,5,85,78,1.0,0.0,453.85190649724484,904.4648021643776,433.4838758005896,0.0,30753.14,71,50,1,659,201709400,,,,,0.0,0.0,4.0,3.0,5.0,2.8,1620.7116589254354,0.0,672.0,0.0,0.0,22020.0,6,7,2,82.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1791.800584462212,0.058263988147623694,0.08137150701463271,7864.285714285715,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +9401,1,27.0,3,418.0,99,111,2,0,55,4.0,0.0,0.0,605.6683943065029,0.0,973.1270681237726,19402.19087530163,0,50,2,6590,201709401,,,650.0,,1.0,0.0,4.0,3.0,4.0,1.9,1709.1772211846462,0.0,450.0,550.0,0.0,31796.0,0,1,3,76.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1578.7954624302756,0.08137201992173121,0.049653901825081004,16734.736842105263,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +9402,2,46.0,1,0.0,4,111,2,46,38,10.0,0.0,0.0,634.6222075936367,0.0,1746.547026958098,48581.488871361835,42,20,2,6591,201709402,,,,,2.0,2.0,3.0,0.0,2.0,1.5,2036.4711608643775,414.64001316639025,300.0,744.0,0.0,97005.0,1,1,2,90.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2381.169234551735,0.049013920525507064,0.0245468711360418,64670.0,10,5,10,10_0,10_3,10_0_1 +9403,2,65.0,2,0.0,1,400,4,78,74,2.0,0.0,458.01568545593517,1764.5139220796118,132.69914565324171,0.0,33293.14,71,71,1,6594,201709403,,,300.0,,0.0,2.0,6.0,0.0,2.0,1.5,1915.2448555655642,0.0,1311.0,0.0,0.0,19830.0,5,5,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2355.2287531887887,0.07074216349640763,0.11877099108365047,13220.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9404,2,30.0,3,0.0,3,111,1,53,37,10.0,0.0,0.0,269.1859530251124,0.0,442.3304855108057,68016.07999999999,42,20,2,6596,201709404,,,,,2.0,0.0,3.0,0.0,2.0,1.5,3522.3841262665796,0.0,200.0,250.0,0.0,64620.0,1,1,2,53.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,711.516438535918,0.01046100331768485,0.011010777445619282,43080.0,10,5,10,10_0,10_4,10_0_1 +9405,2,82.0,3,0.0,6,112,2,77,77,8.0,0.0,471.89494865156956,2948.077303221822,8165.774626917882,357.0669883557233,50004.40165355077,50,60,1,6597,201709405,,,420.0,,1.0,2.0,5.0,1.0,3.0,2.0,4934.246012046983,344.1749628646376,2048.0,0.0,0.0,59514.0,5,5,1,150.0,7,1.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,11942.813867146997,0.23883525194224473,0.2006723437703229,29757.0,8,4,8,8_1,8_1,8_0_0 +9406,2,55.0,1,0.0,4,111,6,42,37,10.0,0.0,0.0,527.6044679292203,0.0,2646.9056252966616,63220.84,20,10,1,6598,201709406,,,533.0,,4.0,0.0,6.0,2.0,4.0,2.5,2085.693794319683,0.0,392.0,1496.0,0.0,111237.0,1,1,2,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3174.510093225882,0.05021303249412507,0.028538256993858896,44494.8,10,5,10,10_1,10_4,10_0_1 +9407,2,63.0,1,0.0,5,111,1,0,74,8.0,0.0,0.0,430.6975248401798,0.0,0.0,16288.660000000002,0,42,2,6599,201709407,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2298.355517355339,0.0,320.0,0.0,0.0,28646.0,0,5,1,76.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,430.6975248401798,0.026441556570041966,0.015035171571604406,28646.0,8,4,8,8_0,8_3,8_0_0 +9408,2,63.0,3,0.0,5,221,6,77,75,7.0,0.0,0.0,1144.0403003567276,0.0,0.0,117742.2,50,50,1,66,201709408,,,350.0,,0.0,2.0,5.0,0.0,2.0,1.5,1391.8790322186903,0.0,850.0,0.0,0.0,40380.0,5,5,1,90.0,1,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1144.0403003567276,0.009716484831748749,0.028331854887487063,26920.0,7,4,7,7_1,7_1,7_0_0 +9409,2,43.0,1,0.0,8,221,2,46,31,10.0,0.0,0.0,1663.5691896951946,0.0,4196.831646526524,55070.98175060325,30,12,1,660,201709409,,,414.0,,2.0,0.0,4.0,2.0,4.0,2.3,3510.199691844312,0.0,1236.0,2372.0,0.0,100298.0,1,1,1,200.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5860.400836221719,0.10641540517220803,0.058429887298068944,43607.82608695653,10,5,10,10_1,10_1,10_0_0 +9410,2,51.0,1,0.0,1,111,2,37,38,10.0,0.0,0.0,457.61612014269105,0.0,0.0,81079.94,31,12,1,6600,201709410,,,100.0,,2.0,0.0,5.0,1.0,3.0,1.8,1449.4033019626715,0.0,340.0,0.0,0.0,87270.0,1,1,2,140.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,457.61612014269105,0.005644011578482804,0.005243681908361305,48483.333333333336,10,5,10,10_1,10_4,10_1_0 +9411,2,70.0,2,0.0,1,111,2,71,71,3.0,0.0,0.0,0.0,0.0,0.0,72774.92,70,50,1,6602,201709411,,,253.0,,0.0,2.0,7.0,0.0,2.0,1.5,1148.9210455801724,0.0,0.0,0.0,0.0,24120.0,5,5,1,200.0,8,7.0,3,4,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,16080.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +9412,2,44.0,1,0.0,1,111,4,0,37,10.0,0.0,0.0,807.5578590753372,0.0,0.0,26191.684177580944,0,20,2,6603,201709412,,,,633.0,1.0,0.0,2.0,0.0,1.0,1.0,3507.2090971643834,0.0,600.0,0.0,0.0,60574.0,0,1,3,35.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,807.5578590753372,0.030832605249821052,0.013331757174288262,60574.0,10,5,10,10_0,10_4,10_1_0 +9413,2,57.0,3,0.0,3,111,1,0,77,2.0,0.0,0.0,336.4824412813905,0.0,212.31863304518674,15567.519999999999,0,60,2,6604,201709413,,,,278.0,0.0,1.0,1.0,0.0,1.0,1.0,4304.660140617914,0.0,250.0,120.0,0.0,10890.0,0,7,3,30.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,548.8010743265772,0.03525295450570016,0.0503949563201632,10890.0,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +9414,2,46.0,3,0.0,9,112,2,52,56,4.0,0.0,0.0,247.6510767831034,0.0,0.0,30867.835067511314,50,50,1,6606,201709414,,,,,2.0,0.0,6.0,2.0,4.0,2.3,1845.0936995018078,0.0,184.0,0.0,0.0,39609.0,1,4,1,120.0,10,3.0,4,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,247.6510767831034,0.008022949333552663,0.006252394071627747,17221.304347826088,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9415,2,86.0,3,0.0,1,112,2,77,74,7.0,0.0,0.0,991.9502368975392,0.0,3386.4821970707285,32323.597540253904,60,50,1,661,201709415,,,,,0.0,3.0,4.0,1.0,3.0,2.0,2705.581752067387,0.0,737.0,1914.0,0.0,54583.0,5,5,1,100.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4378.432433968268,0.13545622291935872,0.0802160459111494,27291.5,7,4,7,7_1,7_2,7_1_0 +9416,2,39.0,3,0.0,1,111,2,0,42,7.0,0.0,0.0,1332.4704674743064,0.0,5307.965826129669,37230.159999999996,0,20,1,6610,201709416,,,600.0,,2.0,7.0,7.0,2.0,4.0,2.5,1706.6292610600226,0.0,990.0,3000.0,0.0,62838.0,0,1,1,136.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,6640.436293603975,0.17836174471460708,0.10567548766039618,25135.2,7,4,7,7_1,7_3,7_1_0 +9417,2,58.0,3,0.0,5,300,4,48,64,9.0,0.0,0.0,188.43016711757866,90.23541904420436,0.0,31349.111693502597,50,50,1,6611,201709417,,,,,2.0,2.0,6.0,0.0,2.0,1.5,2246.6834080728595,0.0,140.0,0.0,0.0,48629.0,1,7,2,145.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,278.66558616178304,0.008889106297054635,0.005730440398975571,32419.333333333332,9,5,9,9_1,9_0,9_0_0 +9418,2,45.0,3,0.0,1,400,2,0,56,2.0,1586.456009138882,0.0,834.4764543778484,247.7050718860512,0.0,20528.33672205293,0,50,1,6612,201709418,,,480.0,,1.0,3.0,5.0,0.0,1.0,1.0,3127.959070898794,0.0,620.0,0.0,0.0,12304.0,0,1,1,100.0,0,1.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2668.6375354027814,0.1299977475786409,0.21689186731166948,12304.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +9419,2,56.0,3,0.0,1,112,2,0,54,8.0,1745.1016100527704,0.0,607.0143240716285,88.46609710216114,0.0,19606.52,0,42,1,6613,201709419,,,190.0,,1.0,3.0,4.0,0.0,1.0,1.0,2654.9084188506927,0.0,451.0,0.0,0.0,24095.0,0,1,2,88.0,8,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2440.58203122656,0.12447808337362061,0.10128997846966424,24095.0,7,4,7,7_1,7_0,7_1_0 +9420,2,67.0,3,0.0,6,111,2,72,42,7.0,0.0,0.0,865.8273089446234,0.0,3824.8478011042207,33682.23318099934,50,41,1,6616,201709420,,,440.0,,1.0,3.0,6.0,0.0,2.0,1.5,2114.627019678855,709.052179134667,350.0,1746.0,0.0,37118.0,5,5,1,133.0,8,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4690.675110048844,0.13926259238342084,0.126371978825606,24745.333333333332,7,4,7,7_1,7_3,7_0_0 +9421,1,45.0,3,379.0,99,111,1,0,56,2.0,0.0,0.0,538.3719060502248,0.0,0.0,6036.54238259149,0,50,2,6617,201709421,,,,51.0,2.0,0.0,3.0,2.0,3.0,2.0,958.2164740062973,0.0,400.0,0.0,0.0,23802.0,0,1,3,49.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,538.3719060502248,0.08918547604383778,0.022618767584666195,11901.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9422,1,32.0,3,422.0,99,112,2,0,42,5.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,13350.550875301627,0,60,2,6618,201709422,,,,,1.0,0.0,3.0,1.0,2.0,1.3,871.769845425475,800.0,0.0,0.0,0.0,24444.0,0,1,3,66.0,10,2.0,2,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1275.3516479725763,0.09552801677509525,0.052174425133880556,18803.076923076922,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +9423,2,79.0,2,0.0,8,211,4,0,86,9.0,0.0,0.0,1453.6041463356069,0.0,0.0,37634.6,0,71,2,6619,201709423,,,,,0.0,3.0,3.0,0.0,1.0,1.0,1544.9336153627378,0.0,1080.0,0.0,0.0,35453.0,0,6,5,90.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1453.6041463356069,0.03862414231413664,0.04100087852468358,35453.0,9,5,9,9_0,9_2,9_0_0 +9424,1,51.0,4,256.0,99,111,1,0,85,2.0,0.0,0.0,274.5696720856146,0.0,1252.6799349666019,12474.680315994116,0,71,2,662,201709424,999999.0,708.0,,44.0,0.0,2.0,3.0,0.0,1.0,1.0,3088.3075844325676,0.0,204.0,708.0,0.0,12775.0,0,7,3,67.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1527.2496070522166,0.12242795553598994,0.11954987139351989,12775.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9425,2,67.0,2,0.0,5,111,2,22,77,3.0,0.0,0.0,1292.0925745205395,0.0,2505.3598699332038,19070.4775402539,50,71,1,6621,201709425,,,260.0,,2.0,2.0,6.0,0.0,3.0,2.0,1971.9958668663444,0.0,960.0,1416.0,0.0,32020.0,1,5,1,100.0,7,5.0,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3797.4524444537433,0.19912728647922387,0.11859626622279024,16010.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9426,2,84.0,2,0.0,5,111,2,77,78,8.0,237.96840137083234,0.0,652.119294540269,0.0,1833.2438021182159,25335.56846092494,43,50,1,6622,201709426,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1712.4688312544706,414.64001316639025,313.0,793.0,0.0,42363.0,5,5,1,100.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2723.331498029317,0.10749044380944175,0.06428561475885365,28242.0,8,4,8,8_1,8_3,8_0_0 +9427,2,61.0,2,0.0,7,120,5,52,72,7.0,0.0,0.0,2114.4556610122577,0.0,0.0,30715.13150728986,31,71,1,6623,201709427,,,275.0,,2.0,0.0,4.0,2.0,4.0,2.5,2910.281550105241,0.0,1571.0,0.0,0.0,67377.0,1,5,1,110.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2114.4556610122577,0.06884084675041738,0.03138245485866479,26950.8,7,4,7,7_1,7_0,7_0_0 +9428,2,63.0,2,0.0,5,111,4,77,74,9.0,0.0,0.0,1615.1157181506744,0.0,0.0,40471.8,70,50,2,6625,201709428,,,,270.0,0.0,1.0,3.0,0.0,2.0,1.5,2541.9663834348153,0.0,1200.0,0.0,0.0,44586.0,5,5,3,75.0,6,4.0,3,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1615.1157181506744,0.039907187675138595,0.036224727900028585,29724.0,8,4,8,8_0,8_2,8_0_0 +9429,2,45.0,3,0.0,5,111,2,62,62,8.0,0.0,0.0,759.1043875308169,0.0,732.4992840058943,68702.64000000001,42,50,1,6626,201709429,,,435.0,,3.0,0.0,4.0,3.0,5.0,2.6,1516.2007899189598,0.0,564.0,414.0,0.0,71345.0,1,1,2,80.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1491.6036715367113,0.021711009526514717,0.020906912489126236,27440.384615384613,8,4,8,8_1,8_2,8_0_0 +9430,1,27.0,3,177.0,7,111,2,0,54,2.0,0.0,0.0,403.7789295376686,0.0,1415.4575536345783,22803.12,0,42,2,6627,201709430,,,200.0,,1.0,0.0,4.0,0.0,1.0,1.0,711.026102408628,0.0,300.0,800.0,0.0,12100.0,0,1,3,90.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1819.2364831722468,0.07978015653876518,0.15035012257621874,12100.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9431,2,62.0,3,0.0,1,400,2,77,75,7.0,951.8736054833294,555.170527825376,921.9618891110099,212.31863304518674,0.0,25201.88,50,50,1,6628,201709431,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1844.8824610932502,0.0,685.0,0.0,0.0,38363.0,5,5,1,110.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2641.3246554649018,0.10480665154603155,0.06885083688618987,25575.333333333332,7,4,7,7_1,7_0,7_1_0 +9432,2,63.0,2,0.0,1,300,5,77,77,7.0,1269.1648073111057,555.170527825376,1157.4995980079832,106.15931652259337,0.0,35178.759999999995,50,70,1,6629,201709432,,,200.0,,0.0,2.0,7.0,0.0,2.0,1.5,1987.566566177065,0.0,860.0,0.0,0.0,35871.0,5,5,1,260.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3087.9942496670583,0.08778007666179986,0.08608609321365611,23914.0,7,4,7,7_1,7_0,7_1_0 +9433,2,81.0,3,0.0,5,111,1,0,75,9.0,0.0,0.0,161.51157181506744,0.0,0.0,43808.40218056569,0,41,2,663,201709433,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2396.925162835563,0.0,120.0,0.0,0.0,37599.0,0,5,1,120.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,161.51157181506744,0.0036867715729362372,0.0042956347726021285,37599.0,9,5,9,9_0,9_3,9_0_0 +9434,2,39.0,2,0.0,8,112,2,33,46,9.0,0.0,0.0,613.7439728972563,0.0,1804.7083808840873,31440.82,31,30,8,6631,201709434,,,,400.0,2.0,1.0,3.0,0.0,2.0,1.5,2380.5629295353283,0.0,456.0,1020.0,0.0,46846.0,1,1,3,70.0,9,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2418.452353781344,0.07692077858597021,0.05162558924521504,31230.666666666668,8,4,8,8_0,8_1,8_0_0 +9435,2,54.0,2,0.0,5,111,6,0,46,2.0,713.905204112497,0.0,768.5258958866958,0.0,0.0,35724.8,0,50,1,6632,201709435,,,286.0,1024.0,1.0,1.0,4.0,0.0,1.0,1.0,2910.0340634317404,0.0,571.0,0.0,0.0,14988.0,0,1,3,80.0,6,5.0,1,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1482.4310999991928,0.04149585442043602,0.09890786629298057,14988.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9436,2,62.0,2,0.0,6,111,2,56,78,2.0,1039.1286859859679,0.0,1076.7438121004495,81.38880933398825,0.0,37575.3,70,50,1,6633,201709436,,,260.0,,1.0,4.0,4.0,0.0,3.0,2.0,3751.396744444791,0.0,800.0,0.0,0.0,23784.0,1,5,1,100.0,8,6.0,5,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2197.2613074204055,0.058476214625575985,0.09238401057098913,11892.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9437,1,46.0,3,273.0,1,111,4,0,85,7.0,0.0,0.0,0.0,0.0,0.0,5534.990875301629,0,71,2,6634,201709437,,,,,0.0,0.0,2.0,0.0,1.0,1.0,4240.617940512734,0.0,0.0,0.0,0.0,25156.0,0,7,3,40.0,8,6.0,1,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0.0,0.0,0.0,25156.0,7,4,7,7_0,7_2,7_1_0 +9438,2,75.0,2,0.0,9,300,2,86,74,6.0,0.0,0.0,1518.2087750616338,371.5576078290768,0.0,26259.08,50,60,1,6636,201709438,,,320.0,,0.0,2.0,5.0,0.0,2.0,1.5,1836.4091322388786,0.0,1128.0,0.0,0.0,34189.0,6,5,1,140.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1889.7663828907107,0.07196620684695391,0.05527410520608122,22792.666666666668,6,3,6,6_1,6_0,6_0_0 +9439,2,54.0,2,0.0,7,111,2,52,46,9.0,0.0,0.0,874.0689152989037,0.0,1628.8086938472775,58539.52598062246,50,60,1,6637,201709439,,,500.0,,3.0,1.0,5.0,1.0,3.0,2.0,2180.4498827516304,1570.0,0.0,0.0,0.0,68940.0,1,1,1,110.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2502.8776091461814,0.04275534465336592,0.03630515824116886,34470.0,9,5,9,9_1,9_2,9_0_0 +9440,2,69.0,2,0.0,1,111,4,0,77,2.0,0.0,0.0,60.56683943065029,0.0,21.231863304518676,21928.260000000002,0,31,2,6638,201709440,,,25.0,293.0,0.0,0.0,1.0,0.0,1.0,1.0,2629.1529130781296,0.0,45.0,12.0,0.0,11776.0,0,5,3,39.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,81.79870273516897,0.003730286978317886,0.006946221359983779,11776.0,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +9441,2,37.0,3,0.0,6,111,2,55,67,6.0,0.0,0.0,0.0,0.0,0.0,44885.656974448146,43,31,1,6639,201709441,,,260.0,,2.0,0.0,6.0,2.0,4.0,2.1,1820.8887833004428,0.0,0.0,0.0,0.0,44841.0,1,1,2,125.0,8,7.0,4,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,21352.85714285714,6,3,6,6_1,6_3,6_0_0 +9442,2,53.0,4,0.0,5,300,2,0,62,4.0,2427.27769398249,0.0,924.653748641261,70.77287768172891,0.0,36304.6716935026,0,60,1,6643,201709442,,,800.0,,1.0,0.0,4.0,2.0,3.0,2.0,2229.635422423376,0.0,687.0,0.0,0.0,37962.0,0,1,1,79.0,0,0.0,2,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3422.7043203054795,0.09427724203654035,0.09016132765147988,18981.0,5,3,5,5_1,5_0,5_0_0 +9443,2,54.0,3,0.0,1,112,2,77,48,4.0,2855.620816449988,249.82673752141918,1063.284514449194,134.46846759528495,0.0,26562.56,60,50,1,6644,201709443,,,295.0,,1.0,2.0,5.0,0.0,2.0,1.5,1704.105520790182,0.0,790.0,0.0,0.0,25237.0,6,1,1,120.0,8,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4303.2005360158855,0.1620024777738247,0.17051157174053513,16824.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9444,2,43.0,3,0.0,9,211,2,46,34,7.0,0.0,0.0,908.5025914597543,0.0,950.1258828772108,56568.19331690806,31,30,1,6645,201709444,,,548.0,,2.0,0.0,7.0,3.0,5.0,2.6,1473.1329669300483,0.0,675.0,537.0,0.0,61529.0,1,1,2,147.0,2,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1858.6284743369652,0.0328564227590671,0.030207357089128136,23665.0,6,3,6,6_1,6_1,6_0_0 +9445,2,37.0,2,0.0,99,112,5,62,64,5.0,0.0,305.3437903039568,942.1508355878933,0.0,0.0,68289.18,50,50,1,6646,201709445,,,105.0,,2.0,0.0,4.0,2.0,4.0,2.1,2210.1125313585553,0.0,700.0,0.0,0.0,37963.0,1,1,2,110.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1247.49462589185,0.018267822602231424,0.032860801988563865,18077.619047619046,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9446,0,78.0,1,0.0,1,111,2,0,56,4.0,0.0,0.0,0.0,0.0,24.77050718860512,23873.8,0,71,8,6647,201709446,,,,,1.0,4.0,2.0,0.0,1.0,1.0,2603.635469344217,0.0,0.0,14.0,0.0,18462.0,0,1,5,33.0,10,8.0,1,1,0,1,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,24.77050718860512,0.0010375603041244009,0.0013417022634928566,18462.0,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +9447,2,52.0,4,0.0,1,300,6,85,55,2.0,1269.1648073111057,0.0,1615.1157181506744,360.94167617681745,0.0,38388.36,50,60,1,6648,201709447,,,,,1.0,1.0,4.0,2.0,4.0,2.5,2378.1684872375295,0.0,1200.0,0.0,0.0,32831.0,7,1,1,70.0,0,0.0,4,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3245.2222016385977,0.08453661999727516,0.09884627948093563,13132.4,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9448,2,81.0,2,0.0,8,112,5,74,74,9.0,0.0,416.377895869032,207.27318382933655,0.0,0.0,36451.92,31,30,1,6650,201709448,,,28.0,,0.0,2.0,5.0,0.0,2.0,1.5,2161.117913801782,0.0,154.0,0.0,0.0,47071.0,5,5,1,140.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,623.6510796983686,0.017108867782502778,0.013249157224158582,31380.666666666668,8,4,8,8_1,8_2,8_0_0 +9449,2,79.0,3,0.0,7,111,2,75,74,6.0,0.0,388.6193694777632,807.5578590753372,0.0,1238.525359430256,23646.7516935026,70,41,1,6652,201709449,,,182.0,,0.0,2.0,3.0,0.0,2.0,1.5,2205.638532367614,0.0,600.0,700.0,0.0,31620.0,5,5,1,114.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2434.7025879833564,0.10296139696228712,0.07699881682426807,21080.0,5,3,5,5_1,5_2,5_0_0 +9450,1,52.0,3,353.0,2,111,2,85,63,1.0,0.0,0.0,94.21508355878933,0.0,654.6491185559925,8574.009519638483,71,50,2,6653,201709450,,,360.0,,1.0,0.0,3.0,1.0,3.0,2.0,2127.265524456114,0.0,70.0,370.0,0.0,16606.0,6,1,3,60.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,748.8642021147818,0.08734119088619313,0.04509600157261122,8303.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9451,2,54.0,3,0.0,6,111,2,78,52,6.0,0.0,0.0,1057.8334989004354,0.0,6597.801521879178,21303.630000000005,71,50,1,6656,201709451,,,350.0,627.0,1.0,3.0,4.0,0.0,2.0,1.5,2614.4756200927113,0.0,785.95,3729.0,0.0,35520.0,5,1,3,80.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,7655.635020779613,0.35935824180102693,0.21553026522465127,23680.0,6,3,6,6_1,6_3,6_0_0 +9452,1,32.0,3,46.0,99,112,2,0,56,1.0,0.0,0.0,269.1859530251124,0.0,1061.5931652259337,31595.559999999994,0,71,2,6657,201709452,,,,,1.0,0.0,3.0,1.0,2.0,1.3,905.4081668540382,0.0,200.0,600.0,0.0,9596.0,0,1,3,60.0,9,1.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1330.7791182510462,0.04211918124733496,0.13868060840465257,7381.538461538461,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +9453,2,61.0,4,0.0,3,400,2,0,74,9.0,0.0,0.0,156.1278527545652,0.0,0.0,8780.119999999999,0,70,1,6659,201709453,,,,,0.0,5.0,2.0,0.0,1.0,1.0,3644.0697203122545,0.0,116.0,0.0,0.0,35660.0,0,5,3,50.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,156.1278527545652,0.017781972541897516,0.004378234794014728,35660.0,9,5,9,9_1,9_0,9_0_1 +9454,2,45.0,3,0.0,3,111,1,0,46,7.0,0.0,0.0,248.30237976007075,0.0,462.70616398464057,24667.864375051002,0,30,2,666,201709454,,,,336.0,1.0,0.0,3.0,1.0,3.0,1.6,1304.8018110970281,446.0,0.0,0.0,0.0,37847.0,0,1,3,71.0,6,5.0,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,711.0085437447113,0.02882327115693984,0.018786391094266688,23654.375,6,3,6,6_0,6_2,6_0_1 +9455,1,47.0,4,88.0,99,111,2,0,52,3.0,0.0,0.0,436.08124390068207,0.0,1565.8499187082523,16525.440000000002,0,50,1,6661,201709455,,,216.0,,1.0,0.0,3.0,1.0,2.0,1.5,1589.8595293011965,0.0,324.0,885.0,0.0,21724.0,0,1,3,80.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2001.9311626089343,0.12114238184332363,0.09215297194848712,14482.666666666666,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +9456,1,61.0,4,149.0,5,111,1,85,78,1.0,0.0,0.0,790.0607721287049,0.0,0.0,6620.020315994117,43,31,2,6663,201709456,,,,,0.0,4.0,1.0,1.0,3.0,1.8,4210.324142149393,0.0,587.0,0.0,0.0,10402.0,6,7,3,26.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,790.0607721287049,0.11934416125882583,0.07595277563244615,5778.888888888889,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9457,2,64.0,4,0.0,8,112,2,0,75,3.0,0.0,0.0,1480.522741638118,0.0,0.0,15357.481349499143,0,50,1,6665,201709457,,,180.0,,0.0,2.0,4.0,0.0,1.0,1.0,2156.84149243524,0.0,1100.0,0.0,0.0,13943.0,0,5,3,97.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1480.522741638118,0.09640400713795447,0.1061839447492016,13943.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +9458,2,74.0,3,0.0,6,221,6,0,77,2.0,3188.7765783691534,0.0,605.6683943065029,53.079658261296686,0.0,21279.179999999997,0,70,2,6666,201709458,,,170.0,478.0,0.0,3.0,4.0,0.0,1.0,1.0,1882.5430675699424,0.0,450.0,0.0,0.0,14290.0,0,5,3,98.0,1,3.0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,3847.524630936953,0.18081169626540844,0.26924595038047255,14290.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +9459,2,55.0,4,0.0,5,111,5,56,63,5.0,0.0,1387.9263195634398,501.0586138656136,0.0,933.7119901035348,24976.96,50,71,1,6667,201709459,,,450.0,,3.0,1.0,5.0,1.0,3.0,2.0,1468.868030513135,900.0,0.0,0.0,0.0,39494.0,1,1,1,120.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2822.6969235325882,0.11301202882707057,0.07147153804457862,19747.0,5,3,5,5_1,5_2,5_0_0 +9460,2,51.0,2,0.0,4,212,2,67,67,5.0,0.0,0.0,1243.7633500556542,3538.6438840864457,311.2373300345116,40281.67041855401,71,71,1,6668,201709460,,,330.0,,2.0,0.0,5.0,2.0,4.0,2.5,1748.7508968046775,300.0,800.0,0.0,0.0,51397.0,1,1,1,115.0,2,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5093.644564176611,0.1264506787144171,0.09910392754784543,20558.8,5,3,5,5_1,5_0,5_0_1 +9461,1,19.0,2,177.0,9,111,1,0,84,1.0,0.0,0.0,0.0,0.0,0.0,12413.990875301628,0,41,2,6669,201709461,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2429.112949698583,0.0,0.0,0.0,0.0,6806.0,0,3,3,20.0,9,7.0,1,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,6806.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9462,2,40.0,1,0.0,6,111,2,0,34,10.0,0.0,0.0,349.9417389326461,0.0,1610.082967259333,123573.84,0,10,2,667,201709462,,,,,1.0,0.0,4.0,3.0,4.0,1.9,3628.7021798895726,0.0,260.0,910.0,0.0,192865.0,0,1,2,81.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1960.024706191979,0.015861162088933865,0.010162677034153314,101507.8947368421,10,5,10,10_0,10_4,10_0_0 +9463,2,79.0,1,0.0,2,120,2,0,74,10.0,3172.912018277764,0.0,636.6247789043908,106.15931652259337,0.0,23353.23087530163,0,30,1,6672,201709463,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2838.1569183681454,0.0,473.0,0.0,0.0,43781.0,0,5,1,65.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3915.6961137047483,0.16767256464911617,0.08943825206607314,43781.0,10,5,10,10_1,10_0,10_0_1 +9464,2,57.0,2,0.0,4,300,2,33,37,10.0,2221.038412794435,0.0,1346.323379246113,0.0,1505.6002572727907,26024.321049766422,42,31,1,6673,201709464,,,157.0,,2.0,2.0,7.0,0.0,2.0,1.5,1732.8365740360632,1451.240046082366,400.0,0.0,0.0,80362.0,1,1,1,120.0,0,2.0,3,2,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5072.962049313339,0.19493158110108968,0.0631263787525614,53574.666666666664,10,5,10,10_1,10_1,10_0_1 +9465,2,55.0,2,0.0,9,111,4,55,48,8.0,0.0,0.0,1547.8192298943961,0.0,0.0,42230.17999999999,50,50,1,6675,201709465,,,377.0,,2.0,2.0,4.0,1.0,3.0,1.8,1989.850751183481,0.0,1150.0,0.0,0.0,54774.0,4,1,2,86.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1547.8192298943961,0.03665196856594967,0.028258283672808197,30430.0,8,4,8,8_1,8_3,8_0_0 +9466,2,30.0,2,0.0,99,111,2,85,21,2.0,0.0,0.0,1507.4413369406293,0.0,0.0,32591.5458467513,42,44,1,6676,201709466,,,280.0,,1.0,0.0,3.0,1.0,3.0,1.8,1422.97656194262,0.0,1120.0,0.0,0.0,21211.0,6,1,2,75.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1507.4413369406293,0.04625252646894286,0.07106884809488612,11783.888888888889,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +9467,1,22.0,3,250.0,1,111,4,0,56,4.0,0.0,0.0,538.3719060502248,0.0,0.0,17381.64,0,43,2,6677,201709467,,,,,1.0,0.0,1.0,0.0,1.0,1.0,5182.248819470193,0.0,400.0,0.0,0.0,17487.0,0,1,3,17.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,538.3719060502248,0.030973596625532732,0.03078697924459454,17487.0,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +9468,2,36.0,3,0.0,1,111,2,0,34,8.0,0.0,0.0,500.68587262670906,0.0,1394.2256903300597,18933.824691045116,0,20,1,6678,201709468,,,168.0,,1.0,0.0,4.0,0.0,1.0,1.0,1849.1786013065055,0.0,372.0,788.0,0.0,32620.0,0,1,2,80.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1894.9115629567686,0.10008075990335857,0.05809048322982124,32620.0,9,5,9,9_1,9_2,9_1_0 +9469,2,82.0,2,0.0,3,111,2,68,78,6.0,0.0,0.0,487.22657497545345,0.0,672.3423379764247,32110.155368876687,71,70,1,6679,201709469,,,772.0,,1.0,1.0,4.0,0.0,2.0,1.5,2032.5664876808496,0.0,362.0,380.0,0.0,34118.0,5,5,1,80.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1159.5689129518782,0.03611221744743752,0.033987013100178154,22745.333333333332,6,3,6,6_1,6_3,6_0_1 +9470,2,37.0,2,0.0,1,111,4,85,67,7.0,0.0,0.0,874.8543473316153,0.0,0.0,30092.25,30,20,1,668,201709470,,,325.0,628.0,1.0,0.0,3.0,0.0,2.0,1.5,2597.03881305494,0.0,650.0,0.0,0.0,34311.0,4,1,3,55.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,874.8543473316153,0.02907241390496275,0.02549778051737388,22874.0,6,3,6,6_1,6_3,6_1_0 +9471,1,33.0,4,274.0,1,300,2,85,62,3.0,1903.7472109666587,0.0,740.261370819059,0.0,0.0,28189.479999999996,43,43,1,6680,201709471,,,,,1.0,0.0,5.0,3.0,5.0,2.4,2253.2746338709217,0.0,550.0,0.0,0.0,34945.0,6,1,3,110.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,2644.008581785718,0.09379415944478998,0.07566199976493684,14560.416666666668,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +9472,2,86.0,2,0.0,1,111,2,0,77,3.0,0.0,0.0,502.0318023918346,0.0,1348.2233198369358,11353.48,0,71,2,6681,201709472,,,170.0,519.0,0.0,1.0,3.0,0.0,1.0,1.0,3092.07317262734,0.0,373.0,762.0,0.0,15663.0,0,5,3,90.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1850.2551222287705,0.16296810512977258,0.11812903800221991,15663.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +9473,2,61.0,3,0.0,1,400,2,78,75,7.0,0.0,0.0,2984.5234252023843,88.46609710216114,1548.6174074805847,30583.875936902605,50,50,1,6682,201709473,,,190.0,,0.0,0.0,4.0,0.0,2.0,1.5,2125.2671481378748,1492.704047399005,1600.0,0.0,0.0,38469.0,5,5,1,120.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4621.60692978513,0.1511125319537634,0.12013847331059112,25646.0,7,4,7,7_1,7_0,7_1_0 +9474,2,33.0,1,0.0,1,111,2,38,38,10.0,0.0,0.0,403.7789295376686,0.0,1061.5931652259337,73126.97469897084,12,12,1,6683,201709474,,,200.0,,2.0,0.0,4.0,0.0,2.0,1.5,1880.1468482333541,0.0,300.0,600.0,0.0,71860.0,1,1,2,100.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1465.3720947636023,0.02003873537495358,0.02039204139665464,47906.666666666664,10,5,10,10_1,10_3,10_1_0 +9475,2,75.0,3,0.0,1,111,2,78,78,5.0,0.0,0.0,457.61612014269105,0.0,2760.1422295874277,32312.91999999999,71,50,1,6684,201709475,,,343.0,,0.0,2.0,5.0,0.0,2.0,1.5,1699.7822700950114,0.0,340.0,1560.0,0.0,29786.0,5,5,1,80.0,4,4.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3217.758349730119,0.09958116907200339,0.10802922009434361,19857.333333333332,5,3,5,5_1,5_2,5_1_0 +9476,2,74.0,3,0.0,4,120,2,0,78,4.0,0.0,693.9631597817199,678.3486016232832,176.9321942043223,0.0,24605.700000000004,0,70,1,6685,201709476,,,314.0,,0.0,2.0,5.0,0.0,1.0,1.0,2338.1255851682745,0.0,504.0,0.0,0.0,16860.0,0,5,1,120.0,0,3.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1549.2439556093254,0.0629628076262543,0.09188872809070732,16860.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +9477,2,80.0,3,0.0,1,111,2,86,78,4.0,0.0,0.0,538.3719060502248,0.0,1555.2339870559929,15657.08,71,71,1,6686,201709477,,,260.0,,0.0,5.0,4.0,0.0,2.0,1.5,2492.214348984855,0.0,400.0,879.0,0.0,23514.0,6,5,1,80.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2093.6058931062175,0.13371624166870308,0.08903656940997778,15676.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +9478,2,34.0,2,0.0,1,112,4,55,37,9.0,0.0,555.170527825376,1386.3076580793288,0.0,0.0,30504.93672205293,50,31,1,6688,201709478,,,380.0,,2.0,0.0,4.0,1.0,3.0,1.8,4225.0669570741975,0.0,1030.0,0.0,0.0,64740.0,1,1,2,110.0,9,1.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1941.4781859047048,0.06364472097072577,0.02998885057004487,35966.666666666664,9,5,9,9_1,9_1,9_1_0 +9479,2,49.0,4,0.0,3,111,1,62,65,4.0,0.0,0.0,350.7410297059295,0.0,653.5983930724744,19023.4,71,71,2,6689,201709479,,,240.0,280.0,2.0,3.0,3.0,0.0,2.0,1.5,3092.791669758706,630.0,0.0,0.0,0.0,25926.0,8,4,3,56.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1004.339422778404,0.052794948472849434,0.03873869562517951,17284.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +9480,1,53.0,3,191.0,3,111,1,0,56,3.0,0.0,0.0,458.9620499078166,0.0,445.8691293948922,15399.600000000002,0,50,2,669,201709480,,,468.0,123.0,1.0,0.0,3.0,1.0,2.0,1.3,719.859531584012,0.0,341.0,252.0,0.0,20242.0,0,1,3,60.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,904.8311793027087,0.05875679753387806,0.044700680728322735,15570.76923076923,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +9481,2,90.0,3,0.0,1,211,2,75,72,7.0,6052.329674864835,0.0,619.1276919577585,283.09151072691566,0.0,34227.49907884776,41,41,1,6690,201709481,,,290.0,,0.0,1.0,3.0,0.0,2.0,1.5,2315.8459425771384,0.0,460.0,0.0,0.0,44061.0,5,5,1,102.0,1,3.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,6954.54887754951,0.20318600729573458,0.15783910663737794,29374.0,8,4,8,8_1,8_1,8_1_0 +9482,2,38.0,3,0.0,4,111,6,65,45,6.0,0.0,0.0,672.964882562781,0.0,838.6586005284877,23837.62,42,44,2,6691,201709482,,,,528.0,2.0,0.0,3.0,0.0,2.0,1.5,3189.0402506525875,0.0,500.0,474.0,0.0,34380.0,1,1,3,62.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1511.6234830912686,0.06341335599322703,0.04396810596542375,22920.0,6,3,6,6_0,6_2,6_0_1 +9483,2,57.0,3,0.0,5,112,2,78,46,9.0,745.6343242952746,69.396315978172,672.964882562781,58.38762408742635,0.0,19710.420000000002,50,50,1,6692,201709483,,,300.0,,1.0,1.0,3.0,0.0,2.0,1.5,3359.6535082816335,0.0,500.0,0.0,0.0,52040.0,5,1,1,95.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1546.3831469236538,0.07845510886747485,0.02971527953350603,34693.333333333336,9,5,9,9_1,9_0,9_0_0 +9484,2,57.0,3,0.0,1,111,2,0,31,6.0,0.0,0.0,460.30797967294217,0.0,1428.7274681999024,53158.36,0,30,1,6693,201709484,,,250.0,,2.0,1.0,3.0,1.0,2.0,1.5,4114.288924260069,0.0,342.0,807.5,0.0,33036.0,0,1,1,90.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1889.0354478728445,0.03553599937757381,0.05718111901782433,22024.0,6,3,6,6_1,6_3,6_1_0 +9485,2,73.0,3,0.0,6,111,6,77,77,5.0,0.0,0.0,499.3399428615835,0.0,0.0,21743.067849749772,71,71,2,6694,201709485,,,,393.0,0.0,1.0,2.0,0.0,2.0,1.5,4088.943592609891,0.0,371.0,0.0,0.0,30670.0,5,5,3,40.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,499.3399428615835,0.022965477839288907,0.01628105454390556,20446.666666666668,5,3,5,5_0,5_3,5_0_0 +9486,2,52.0,3,0.0,9,112,6,53,45,10.0,0.0,416.377895869032,1091.5490395168308,0.0,0.0,46483.7,50,31,1,6695,201709486,,,,,2.0,4.0,3.0,0.0,2.0,1.5,1557.8865301252954,0.0,811.0,0.0,0.0,61013.0,1,1,2,90.0,8,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1507.9269353858629,0.032439907653346506,0.02471484659639524,40675.333333333336,10,5,10,10_1,10_1,10_0_0 +9487,2,51.0,5,0.0,1,111,2,47,54,7.0,0.0,0.0,652.7759360858976,0.0,1733.9355032023584,49024.26006329323,50,60,1,6696,201709487,,,320.0,,2.0,1.0,3.0,1.0,3.0,2.0,3717.172996843693,0.0,485.0,980.0,0.0,49480.0,1,1,2,55.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2386.711439288256,0.04868429296448064,0.04823588195812967,24740.0,7,4,7,7_1,7_4,7_1_0 +9488,1,56.0,4,27.0,5,111,1,0,56,2.0,0.0,0.0,764.4881065913191,0.0,0.0,14953.478505191599,0,70,2,6698,201709488,,,,323.0,1.0,2.0,3.0,1.0,2.0,1.5,3097.9660250514794,0.0,568.0,0.0,0.0,18484.0,0,1,3,80.0,9,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,764.4881065913191,0.0511244327750163,0.04135945177403804,12322.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9489,2,59.0,2,0.0,4,300,5,71,54,8.0,0.0,804.9972653467952,3230.231436301349,111.46728234872305,0.0,32529.96,50,42,1,67,201709489,,,1000.0,,1.0,2.0,3.0,0.0,2.0,1.5,1747.4193348393649,0.0,2400.0,0.0,0.0,43172.0,7,1,1,100.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4146.695983996867,0.12747313504218472,0.09605058797361407,28781.333333333332,8,4,8,8_1,8_1,8_0_1 +9490,2,51.0,1,0.0,8,300,5,43,45,9.0,0.0,360.86084308649436,1114.4298455239652,0.0,0.0,31140.059999999998,44,50,1,670,201709490,,,360.0,,2.0,3.0,7.0,0.0,2.0,1.5,1624.2250155627908,0.0,828.0,0.0,0.0,50730.0,1,1,1,125.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1475.2906886104597,0.04737597450391746,0.02908122784566252,33820.0,9,5,9,9_1,9_1,9_0_0 +9491,2,42.0,3,0.0,1,300,4,55,37,9.0,0.0,971.5484236944079,3520.95226556847,61.9262679715128,0.0,41717.46000000001,30,33,1,6700,201709491,,,360.0,,2.0,0.0,5.0,0.0,2.0,1.5,2070.292902167709,0.0,2616.0,0.0,0.0,49659.0,1,1,2,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4554.426957234391,0.10917316052402017,0.09171402882124874,33106.0,9,5,9,9_1,9_0,9_1_0 +9492,2,78.0,1,0.0,9,111,4,0,74,10.0,0.0,0.0,1036.3659191466827,0.0,0.0,32505.08,0,60,2,6701,201709492,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2656.747449172824,0.0,770.0,0.0,0.0,68760.0,0,5,1,100.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1036.3659191466827,0.03188319853840331,0.015072221046345008,68760.0,10,5,10,10_0,10_4,10_0_0 +9493,2,77.0,3,0.0,99,112,2,77,77,8.0,0.0,0.0,1024.3864994585879,0.0,1908.9222908783377,47524.34,70,70,1,6702,201709493,,,168.0,,0.0,1.0,6.0,0.0,2.0,1.5,2073.9441713288124,1840.0,0.0,0.0,0.0,41967.0,5,5,1,115.0,10,2.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2933.3087903369255,0.061722241494293784,0.06989560345835837,27978.0,8,4,8,8_1,8_1,8_0_0 +9494,2,87.0,3,0.0,2,111,1,77,72,4.0,0.0,0.0,738.9154410539335,0.0,0.0,23079.04,70,71,2,6703,201709494,,,584.0,,0.0,0.0,2.0,0.0,2.0,1.5,2317.1084833151394,0.0,549.0,0.0,0.0,27184.0,5,5,3,77.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,738.9154410539335,0.03201673211077816,0.027181998273025806,18122.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +9495,2,49.0,4,0.0,5,111,1,0,52,1.0,0.0,0.0,394.3574211817897,0.0,0.0,18646.08,0,71,2,6705,201709495,,,,262.0,1.0,0.0,3.0,1.0,2.0,1.5,2819.1047624206085,0.0,293.0,0.0,0.0,12555.0,0,1,3,63.0,5,4.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,394.3574211817897,0.02114961542489304,0.03141038798739862,8370.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +9496,2,55.0,4,0.0,9,111,2,0,42,5.0,0.0,0.0,970.4153606555302,0.0,0.0,16407.49087530163,0,31,1,6706,201709496,,,157.0,,1.0,0.0,3.0,0.0,1.0,1.0,1365.3383174923865,0.0,721.0,0.0,0.0,20974.0,0,1,2,70.0,6,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,970.4153606555302,0.05914465338001843,0.04626753888888768,20974.0,5,3,5,5_1,5_2,5_0_0 +9497,2,48.0,3,0.0,7,111,2,0,48,8.0,761.4988843866635,0.0,1830.4644805707642,0.0,0.0,39217.17717191821,0,50,1,6707,201709497,,,620.0,,1.0,1.0,5.0,3.0,4.0,2.3,538.4063989475268,0.0,1360.0,0.0,0.0,65998.0,0,1,2,90.0,8,6.0,2,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2591.9633649574275,0.06609255310740277,0.03927336229821248,28694.782608695656,8,4,8,8_1,8_2,8_0_0 +9498,2,77.0,3,0.0,2,112,2,0,86,7.0,0.0,0.0,934.07525699714,0.0,0.0,14951.8,0,71,2,6708,201709498,,,,700.0,0.0,3.0,2.0,0.0,1.0,1.0,1728.6262030375808,0.0,694.0,0.0,0.0,25090.0,0,6,3,52.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,934.07525699714,0.06247242853684105,0.03722898593053567,25090.0,7,4,7,7_0,7_1,7_0_1 +9499,2,62.0,3,0.0,5,111,2,78,78,5.0,0.0,0.0,695.8456885699155,0.0,1096.9796040667982,19404.030315994118,70,70,1,6709,201709499,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1725.6808301644724,0.0,517.0,620.0,0.0,27734.0,5,5,2,90.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1792.8252926367136,0.09239448008689954,0.06464358883091922,18489.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9500,2,69.0,2,0.0,9,111,2,0,77,7.0,0.0,0.0,66.80781518208181,0.0,124.49493201380464,13526.35536887669,0,50,1,671,201709500,,,,,0.0,1.0,5.0,0.0,1.0,1.0,1850.578194851091,120.0,0.0,0.0,0.0,25171.0,0,5,1,100.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,191.30274719588647,0.014142963272727722,0.00760012503261239,25171.0,7,4,7,7_1,7_3,7_0_0 +9501,1,37.0,5,515.0,5,111,2,0,21,4.0,0.0,0.0,487.22657497545345,0.0,2225.8070030903746,32799.26,0,71,2,6710,201709501,,,490.0,,1.0,0.0,5.0,4.0,5.0,2.6,836.5516161822864,0.0,362.0,1258.0,0.0,42842.0,0,4,3,100.0,4,4.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,2713.033578065828,0.0827163045161942,0.063326492182107,16477.69230769231,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +9502,1,26.0,2,271.0,7,111,2,0,34,9.0,0.0,0.0,2961.045483276236,0.0,1026.2067263850693,114406.72,0,20,2,6711,201709502,,,,251.0,1.0,0.0,1.0,0.0,1.0,1.0,4710.929228257046,0.0,2200.0,580.0,0.0,37158.0,0,1,3,34.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,3987.2522096613056,0.034851556007036176,0.10730535038649297,37158.0,9,5,9,9_0,9_3,9_0_0 +9503,2,45.0,2,0.0,1,111,2,35,35,10.0,0.0,0.0,1211.3367886130059,0.0,4423.304855108057,78876.07156602736,10,31,1,6712,201709503,,,800.0,,2.0,1.0,4.0,2.0,4.0,2.1,2544.9069105058497,0.0,900.0,2500.0,0.0,128225.0,1,1,2,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,5634.641643721063,0.07143664145347668,0.04394339359501706,61059.52380952381,10,5,10,10_1,10_4,10_1_0 +9504,2,34.0,3,0.0,9,111,4,54,21,7.0,0.0,0.0,1615.1157181506744,0.0,0.0,35662.299999999996,43,43,1,6713,201709504,,,600.0,,2.0,0.0,4.0,0.0,2.0,1.5,2822.1500547023625,0.0,1200.0,0.0,0.0,37838.0,1,1,2,105.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.04528916301390192,0.042685018186761306,25225.333333333332,7,4,7,7_1,7_3,7_0_0 +9505,2,70.0,2,0.0,5,111,4,75,74,9.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,39017.939999999995,41,41,1,6714,201709505,,,390.0,,0.0,2.0,5.0,0.0,2.0,1.5,1761.484013759087,600.0,0.0,0.0,0.0,47561.0,5,5,1,100.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,956.5137359794323,0.02451471646066995,0.02011130413530902,31707.333333333332,8,4,8,8_1,8_3,8_0_0 +9506,2,76.0,4,0.0,4,112,2,78,78,5.0,0.0,0.0,589.5172371249961,0.0,1468.537211895875,44888.340000000004,70,70,1,6716,201709506,,,183.0,,0.0,0.0,5.0,0.0,2.0,1.5,2119.1708056970574,0.0,438.0,830.0,0.0,29294.0,5,5,1,100.0,8,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2058.0544490208713,0.045848308247105396,0.07025515289891689,19529.333333333332,5,3,5,5_1,5_1,5_0_1 +9507,2,68.0,3,0.0,9,212,6,78,78,5.0,0.0,0.0,1433.4151998587236,106.15931652259337,0.0,25489.09832394729,71,50,1,6717,201709507,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1913.4715131119551,0.0,1065.0,0.0,0.0,29053.0,5,5,2,110.0,1,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1539.574516381317,0.06040129379291811,0.05299192910822693,19368.666666666668,5,3,5,5_1,5_0,5_0_0 +9508,2,66.0,2,0.0,10,112,2,71,77,7.0,2379.684013708323,0.0,1216.0638661278795,159.23897478389006,430.17150207794015,22218.654718113135,70,50,1,6718,201709508,,,350.0,,0.0,2.0,4.0,0.0,2.0,1.5,1632.9128921408167,414.64001316639025,732.0,0.0,0.0,36290.0,5,5,1,95.0,9,1.0,3,8,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4185.158356698033,0.1883623653094622,0.11532538872135664,24193.333333333332,7,4,7,7_1,7_1,7_0_0 +9509,2,59.0,4,0.0,3,111,1,85,69,1.0,0.0,0.0,444.15682249143543,0.0,0.0,16423.3258467513,71,71,2,6719,201709509,,,,297.0,1.0,1.0,3.0,0.0,2.0,1.5,2945.575200818917,0.0,330.0,0.0,0.0,12720.0,6,4,3,63.0,5,4.0,3,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,444.15682249143543,0.02704426780762522,0.03491798918957826,8480.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +9510,2,59.0,3,0.0,1,111,2,52,62,5.0,0.0,693.9631597817199,831.7845948475973,0.0,2123.1863304518674,37677.159999999996,50,50,1,672,201709510,,,,,2.0,3.0,6.0,1.0,3.0,2.0,332.73957975638984,0.0,618.0,1200.0,0.0,40520.0,1,1,2,135.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3648.9340850811845,0.09684737610481217,0.09005266745017732,20260.0,5,3,5,5_1,5_2,5_1_0 +9511,2,62.0,1,0.0,6,112,2,75,43,10.0,0.0,0.0,4037.789295376686,353.8643884086446,0.0,49275.96417758094,33,33,1,6720,201709511,,,200.0,,1.0,2.0,5.0,0.0,2.0,1.5,2037.0903257918555,0.0,3000.0,0.0,0.0,63544.0,5,1,1,160.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4391.653683785331,0.0891236479505235,0.06911201189388975,42362.666666666664,10,5,10,10_1,10_0,10_0_0 +9512,2,32.0,5,0.0,9,111,2,52,63,5.0,0.0,0.0,668.0781518208182,339.7098128722988,1244.9493201380465,15881.62,50,43,2,6722,201709512,,,,389.0,2.0,0.0,3.0,1.0,3.0,1.8,4407.95209285458,1200.0,0.0,0.0,0.0,34575.0,1,1,3,55.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2252.7372848311634,0.14184556014003377,0.06515509139063379,19208.333333333332,5,3,5,5_0,5_3,5_0_0 +9513,2,41.0,4,0.0,1,300,2,0,46,3.0,0.0,0.0,1057.7904070496288,0.0,1971.1697568852403,42186.189999999995,0,50,1,6723,201709513,,,370.0,,1.0,1.0,5.0,1.0,2.0,1.3,386.5019312674565,1900.0,0.0,0.0,0.0,21001.0,0,4,2,164.0,0,0.0,2,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3028.9601639348693,0.0717998037731037,0.14422933021926906,16154.615384615385,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9514,2,91.0,2,0.0,4,111,2,0,86,5.0,0.0,0.0,1098.2786883424585,0.0,0.0,32066.620000000003,0,60,2,6724,201709514,,,,,0.0,1.0,2.0,0.0,1.0,1.0,2274.785943951234,0.0,816.0,0.0,0.0,20220.0,0,6,1,60.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1098.2786883424585,0.034249904989751286,0.05431645342939953,20220.0,5,3,5,5_0,5_3,5_0_1 +9515,2,62.0,2,0.0,1,112,2,0,56,5.0,0.0,0.0,471.07541779394666,0.0,1592.3897478389006,12514.373333333335,0,60,1,6725,201709515,,,214.0,,1.0,2.0,6.0,0.0,1.0,1.0,2454.108803870155,0.0,350.0,900.0,0.0,18977.0,0,1,1,110.0,8,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2063.4651656328474,0.1648876144789922,0.10873505641739196,18977.0,5,3,5,5_1,5_1,5_1_0 +9516,1,38.0,4,379.0,99,111,1,67,52,2.0,0.0,0.0,829.0927353173462,184.0094819724952,0.0,13412.999999999998,50,71,2,6726,201709516,,,,,3.0,1.0,4.0,2.0,4.0,2.3,1594.2888370340713,0.0,616.0,0.0,0.0,25738.0,4,1,3,76.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1013.1022172898414,0.07553136638260206,0.03936211894047095,11190.434782608696,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9517,2,57.0,2,0.0,5,111,2,77,37,8.0,0.0,0.0,1251.7146815667727,0.0,2162.1114131768186,61503.08,41,12,1,6728,201709517,,,850.0,,2.0,0.0,6.0,2.0,4.0,2.5,2469.6095924742594,0.0,930.0,1222.0,0.0,73798.0,6,1,1,122.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3413.826094743591,0.055506587552096434,0.04625905979489405,29519.2,8,4,8,8_1,8_4,8_0_0 +9518,2,56.0,2,0.0,1,111,2,37,37,10.0,0.0,0.0,1384.6660542152572,0.0,2349.340553465971,73744.22502743259,31,31,2,6729,201709518,,,,,2.0,3.0,5.0,0.0,2.0,1.5,2439.1619707125606,1036.6000329159756,600.0,720.0,0.0,305792.0,1,1,1,120.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3734.006607681228,0.05063456299516594,0.012210936217040433,203861.33333333334,10,5,10,10_0,10_4,10_1_0 +9519,0,30.0,4,0.0,9,112,2,22,54,9.0,0.0,0.0,0.0,0.0,0.0,49906.5,20,31,2,673,201709519,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3160.4928860224104,0.0,0.0,0.0,0.0,54767.0,1,1,5,70.0,8,2.0,4,7,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,30426.11111111111,8,4,8,8_0,8_1,8_0_0 +9520,2,67.0,3,0.0,1,112,4,0,54,5.0,0.0,0.0,1655.4936111044412,212.31863304518674,0.0,14952.08,0,50,1,6731,201709520,,,220.0,,1.0,2.0,3.0,0.0,1.0,1.0,1531.993451502259,0.0,1230.0,0.0,0.0,19520.0,0,1,1,90.0,10,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1867.812244149628,0.12491989369703935,0.0956871026715998,19520.0,5,3,5,5_1,5_0,5_1_0 +9521,2,81.0,1,0.0,6,300,5,78,78,5.0,0.0,166.55115834761278,538.3719060502248,2653.9829130648345,0.0,55780.25672205292,70,71,1,6734,201709521,,,,,0.0,2.0,4.0,0.0,2.0,1.5,3700.4954411848403,0.0,400.0,0.0,0.0,29570.0,5,5,5,85.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3358.905977462672,0.06021675364815445,0.11359167999535584,19713.333333333332,5,3,5,5_1,5_0,5_0_0 +9522,2,70.0,2,0.0,4,111,2,0,77,6.0,0.0,0.0,581.4416585342427,0.0,1036.8226580373287,14972.3,0,71,2,6736,201709522,,,,426.0,0.0,3.0,6.0,0.0,1.0,1.0,2647.786195820722,0.0,432.0,586.0,0.0,23768.0,0,5,3,94.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1618.2643165715713,0.10808388267477752,0.06808584300620882,23768.0,6,3,6,6_0,6_3,6_0_1 +9523,1,27.0,2,200.0,6,111,1,46,54,4.0,0.0,0.0,242.26735772260116,0.0,0.0,20787.579999999998,31,30,2,6737,201709523,,,,200.0,2.0,0.0,1.0,0.0,2.0,1.5,2722.739288237872,0.0,180.0,0.0,0.0,27337.0,1,1,3,33.0,9,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,242.26735772260116,0.011654428159631913,0.00886225107812127,18224.666666666668,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +9524,2,39.0,2,0.0,9,112,4,54,33,9.0,79.32280045694411,0.0,1660.8773301649435,23.0011852465619,0.0,39142.72,50,30,1,6738,201709524,,,317.0,,2.0,2.0,5.0,0.0,2.0,1.5,1932.2504838307061,0.0,1234.0,0.0,0.0,56261.0,1,1,2,115.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1763.2013158684495,0.045045446914993376,0.03133967252392331,37507.333333333336,9,5,9,9_1,9_0,9_0_0 +9525,2,33.0,3,0.0,1,111,1,0,54,5.0,0.0,0.0,538.3719060502248,0.0,0.0,17415.36031599412,0,31,2,674,201709525,,,,352.0,1.0,0.0,2.0,0.0,1.0,1.0,2724.979906817153,0.0,400.0,0.0,0.0,20712.0,0,1,3,53.0,6,4.0,1,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,538.3719060502248,0.030913624311050776,0.025993236097442293,20712.0,5,3,5,5_0,5_2,5_1_0 +9526,2,26.0,2,0.0,1,111,4,47,46,6.0,0.0,0.0,1345.929765125562,0.0,0.0,64063.9058467513,12,30,2,6741,201709526,,,,1200.0,2.0,0.0,3.0,0.0,2.0,1.5,5805.262613571103,0.0,1000.0,0.0,0.0,31310.0,1,1,3,47.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1345.929765125562,0.02100917431330507,0.04298721702732552,20873.333333333332,5,3,5,5_0,5_4,5_1_0 +9527,1,32.0,2,272.0,2,111,1,0,65,4.0,0.0,0.0,619.1276919577585,0.0,707.7287768172891,6538.34,0,50,2,6743,201709527,,,,57.0,1.0,3.0,3.0,0.0,1.0,1.0,2887.4963619438167,0.0,460.0,400.0,0.0,17799.0,0,1,3,58.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1326.8564687750477,0.202934761541163,0.07454668626187132,17799.0,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +9528,2,68.0,1,0.0,1,120,2,78,75,7.0,0.0,0.0,2153.487624200899,159.23897478389006,0.0,21417.55202733072,31,41,1,6744,201709528,,,170.0,,0.0,2.0,7.0,0.0,2.0,1.5,2119.9712340343413,0.0,1600.0,0.0,0.0,37760.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2312.7265989847892,0.10798277020798373,0.06124805611718192,25173.333333333332,7,4,7,7_1,7_0,7_1_0 +9529,2,89.0,2,0.0,2,111,5,0,77,5.0,0.0,1429.564109150343,1211.3367886130059,0.0,0.0,23187.496658454027,0,70,1,6746,201709529,,,250.0,,0.0,3.0,4.0,0.0,1.0,1.0,5193.822567191304,0.0,900.0,0.0,0.0,20380.0,0,5,1,80.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2640.900897763349,0.11389331658622544,0.12958296848691603,20380.0,5,3,5,5_1,5_4,5_0_1 +9530,2,41.0,2,0.0,1,111,2,0,37,6.0,0.0,0.0,511.45331074771354,0.0,1716.2422837819263,54094.45505288257,0,20,1,6747,201709530,,,360.0,,1.0,0.0,5.0,1.0,2.0,1.3,1842.7103917135387,0.0,380.0,970.0,0.0,30318.0,0,1,2,100.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2227.69559452964,0.04118158861849799,0.07347765665708951,23321.53846153846,6,3,6,6_1,6_3,6_1_0 +9531,2,60.0,2,0.0,2,111,6,77,21,8.0,396.6140022847205,0.0,952.9182737088979,0.0,288.39947655304536,35125.12,50,50,1,6748,201709531,,,280.0,,1.0,3.0,4.0,0.0,2.0,1.5,2257.790563125754,0.0,708.0,163.0,0.0,47036.0,6,1,1,130.0,9,7.0,3,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1637.9317525466638,0.04663134965935102,0.034822938866967086,31357.333333333332,8,4,8,8_1,8_3,8_0_1 +9532,2,63.0,1,0.0,6,112,5,78,75,7.0,0.0,27.7585263912688,562.5986418224849,106.15931652259337,0.0,22590.151191295747,70,33,1,6749,201709532,,,208.0,,0.0,2.0,4.0,0.0,2.0,1.5,2066.4554267329886,0.0,418.0,0.0,0.0,36082.0,5,5,1,108.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,696.516484736347,0.030832750026246972,0.019303710568603378,24054.666666666668,7,4,7,7_1,7_2,7_0_0 +9533,2,57.0,3,0.0,1,112,4,0,42,7.0,0.0,8882.728445206016,2422.6735772260117,0.0,0.0,46178.12753821486,0,20,1,675,201709533,,,380.0,,1.0,0.0,4.0,1.0,2.0,1.5,1280.867548763105,0.0,1800.0,0.0,0.0,36543.0,0,1,2,75.0,8,3.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,11305.402022432027,0.24482157733823667,0.3093725753887756,24362.0,7,4,7,7_1,7_1,7_1_0 +9534,2,26.0,2,0.0,9,111,4,0,62,8.0,0.0,0.0,1041.749638207185,0.0,0.0,29522.488161188146,0,31,2,6750,201709534,,,,477.0,1.0,0.0,2.0,0.0,1.0,1.0,1925.5667504749224,0.0,774.0,0.0,0.0,29765.0,0,1,3,44.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1041.749638207185,0.03528664767411865,0.03499914793237645,29765.0,8,4,8,8_0,8_2,8_0_0 +9535,2,55.0,3,0.0,1,300,5,62,47,6.0,0.0,971.5484236944079,1736.249397011975,371.5576078290768,0.0,44878.20154625086,70,50,1,6751,201709535,,,662.0,,2.0,4.0,5.0,0.0,2.0,1.5,1688.57391526598,0.0,1290.0,0.0,0.0,32535.0,4,1,2,140.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3079.35542853546,0.06861583847922066,0.09464746975673766,21690.0,6,3,6,6_1,6_0,6_1_0 +9536,2,55.0,2,0.0,6,111,2,56,47,8.0,0.0,416.377895869032,3523.6441250987214,0.0,0.0,58422.62031599413,71,50,1,6752,201709536,,,900.0,,3.0,1.0,5.0,2.0,4.0,2.5,1673.5047863208554,0.0,2618.0,0.0,0.0,64194.0,1,1,1,120.0,8,7.0,4,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3940.022020967753,0.06744000867569969,0.061376795665759314,25677.6,7,4,7,7_1,7_3,7_0_0 +9537,2,32.0,4,0.0,1,111,2,0,31,6.0,0.0,0.0,398.44904766777137,0.0,1390.6870464459732,38762.328018158776,0,30,2,6753,201709537,,,,990.0,1.0,0.0,2.0,0.0,1.0,1.0,4511.614120709666,0.0,296.04,786.0,0.0,25591.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1789.1360941137445,0.04615656967960226,0.06991270736250027,25591.0,7,4,7,7_0,7_4,7_1_0 +9538,2,68.0,2,0.0,9,111,4,77,75,6.0,0.0,0.0,1939.4847915459347,0.0,0.0,27281.62,71,71,1,6755,201709538,,,170.0,,0.0,1.0,3.0,0.0,2.0,1.5,1757.5500260677595,0.0,1441.0,0.0,0.0,33220.0,5,5,3,76.0,4,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1939.4847915459347,0.07109126186589854,0.05838304610312868,22146.666666666668,6,3,6,6_1,6_2,6_0_0 +9540,1,20.0,4,329.0,5,111,2,0,56,5.0,0.0,0.0,474.3354877927809,0.0,883.9140172980129,7621.588161188146,0,71,2,6759,201709540,,,,151.0,1.0,0.0,3.0,0.0,1.0,1.0,2957.975476780182,852.0,0.0,0.0,0.0,18429.0,0,1,3,65.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1358.2495050907937,0.17821082382901324,0.07370174752242627,18429.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +9541,1,33.0,3,330.0,99,120,2,0,56,2.0,0.0,0.0,807.5578590753372,0.0,0.0,11912.507849749776,0,50,2,6760,201709541,,,300.0,,1.0,0.0,4.0,1.0,2.0,1.3,1349.3846497228797,0.0,600.0,0.0,0.0,15020.0,0,1,3,80.0,0,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,807.5578590753372,0.06779075147407354,0.053765503267332704,11553.846153846154,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +9542,2,32.0,4,0.0,6,111,4,52,47,5.0,0.0,0.0,2987.9640785787474,0.0,0.0,29478.96970734245,42,50,1,6761,201709542,,,1200.0,,3.0,1.0,6.0,1.0,4.0,2.3,865.6774070530261,0.0,2220.0,0.0,0.0,46551.0,1,1,1,120.0,8,7.0,5,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2987.9640785787474,0.10135917599028309,0.06418689348410878,20239.565217391308,5,3,5,5_1,5_3,5_0_0 +9543,1,35.0,5,416.0,99,211,2,0,54,2.0,95.18736054833293,0.0,646.0462872602698,0.0,2123.1863304518674,20512.879999999994,0,31,1,6762,201709543,,,420.0,,1.0,0.0,4.0,3.0,4.0,2.1,1186.2795108483936,0.0,480.0,1200.0,0.0,27240.0,0,4,3,121.0,2,3.0,2,8,1,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2864.41997826047,0.13964006898399792,0.10515491843834325,12971.42857142857,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +9544,2,34.0,3,0.0,2,111,1,64,64,7.0,1903.7472109666587,0.0,497.99401309645793,0.0,0.0,74510.28,43,50,1,6763,201709544,1200.0,1200.0,86.0,,2.0,0.0,4.0,2.0,4.0,2.1,2648.818704385822,0.0,370.0,0.0,0.0,47358.0,1,1,2,70.0,6,4.0,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2401.7412240631165,0.032233689419273646,0.05071458304960337,22551.42857142857,6,3,6,6_1,6_2,6_0_1 +9545,2,58.0,2,0.0,6,111,4,75,34,9.0,0.0,0.0,4229.244612413927,318.4779495677801,1610.8285188979999,46763.220542334304,41,30,1,6764,201709545,,,824.0,,1.0,1.0,6.0,0.0,2.0,1.5,1483.6268808108978,1552.6690054043802,2500.0,0.0,0.0,53744.0,5,1,1,170.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,6158.551080879707,0.13169647020577696,0.11459048602410887,35829.333333333336,9,5,9,9_1,9_3,9_0_0 +9546,2,38.0,3,0.0,8,400,2,46,43,5.0,2221.038412794435,0.0,82.10171567265928,61.9262679715128,0.0,67370.58063198824,31,41,1,6765,201709546,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,2587.42963658124,0.0,61.0,0.0,0.0,42048.0,1,1,1,90.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2365.066396438607,0.035105328976720286,0.05624682259414496,20022.85714285714,5,3,5,5_1,5_0,5_0_0 +9547,2,84.0,2,0.0,3,111,1,0,74,7.0,0.0,0.0,2159.538565598099,0.0,11.275799632285997,51080.60468379634,0,70,2,6766,201709547,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3542.66575939942,10.86868303783066,1600.0,0.0,0.0,26023.0,0,5,1,88.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2170.814365230385,0.04249782042848458,0.08341906641165066,26023.0,7,4,7,7_0,7_2,7_0_1 +9548,2,47.0,3,0.0,9,112,2,43,22,6.0,0.0,0.0,807.5578590753372,0.0,1571.157884534382,59283.16417758095,33,44,1,6767,201709548,,,300.0,,2.0,0.0,5.0,3.0,5.0,3.0,1644.2938439728066,0.0,600.0,888.0,0.0,68566.0,1,1,1,110.0,8,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2378.715743609719,0.040124642073495725,0.03469235107210161,22855.333333333332,6,3,6,6_1,6_0,6_0_0 +9549,0,61.0,2,0.0,1,111,4,52,52,9.0,0.0,0.0,1144.0403003567276,0.0,0.0,49451.77016615878,71,50,2,6768,201709549,,,,,3.0,1.0,3.0,1.0,3.0,2.0,3300.5880517442497,0.0,850.0,0.0,0.0,67847.0,1,1,5,66.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1144.0403003567276,0.023134466097224284,0.01686206170290105,33923.5,9,5,9,9_0,9_4,9_1_0 +9550,1,33.0,3,7.0,9,111,7,43,64,1.0,0.0,0.0,753.7206684703146,0.0,0.0,19704.94,41,41,2,677,201709550,,,,553.0,2.0,0.0,1.0,0.0,2.0,1.5,4502.208160744379,0.0,560.0,0.0,0.0,14546.0,4,1,3,25.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,753.7206684703146,0.03825034069986078,0.05181635284410248,9697.333333333334,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9551,2,46.0,3,0.0,1,300,5,85,62,4.0,0.0,0.0,672.964882562781,0.0,0.0,30303.0,50,50,1,6770,201709551,,,130.0,,1.0,0.0,2.0,0.0,2.0,1.5,2230.8900139690404,0.0,500.0,0.0,0.0,25008.0,7,1,1,40.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,672.964882562781,0.022207863332435105,0.026909984107596808,16672.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9552,2,61.0,3,0.0,1,112,2,47,54,5.0,0.0,1387.9263195634398,1448.2204272751046,56.61830214538313,0.0,42810.50000000001,50,70,1,6771,201709552,,,246.0,,2.0,6.0,10.0,0.0,2.0,1.5,1925.124937806672,0.0,1076.0,0.0,0.0,29829.0,1,1,2,160.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2892.7650489839275,0.06757139134053392,0.09697827781635078,19886.0,5,3,5,5_1,5_0,5_1_0 +9553,2,76.0,2,0.0,1,111,2,71,77,3.0,0.0,0.0,471.07541779394666,0.0,9996.66897254421,23892.66,71,71,2,6774,201709553,,,190.0,549.0,0.0,5.0,3.0,0.0,2.0,1.5,901.36914990477,0.0,350.0,5650.0,0.0,21950.0,5,5,3,83.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,10467.744390338157,0.43811548778320025,0.4768904050267953,14633.333333333334,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +9554,1,41.0,4,297.0,5,111,1,85,65,1.0,0.0,0.0,998.679885723167,0.0,0.0,14366.480000000001,60,43,2,6775,201709554,,,,140.0,1.0,0.0,4.0,2.0,4.0,2.5,2153.4539686712483,0.0,742.0,0.0,0.0,19244.0,6,4,3,72.0,7,5.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,998.679885723167,0.06951458434655997,0.051895649850507534,7697.6,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9555,2,84.0,3,0.0,5,400,5,77,78,2.0,0.0,763.359475759892,942.1508355878933,148.62304313163074,0.0,25312.84,71,70,1,6778,201709555,,,300.0,,0.0,2.0,3.0,0.0,2.0,1.5,1912.2948476681129,0.0,700.0,0.0,0.0,19756.0,5,5,1,90.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1854.133354479416,0.07324872888539635,0.09385165795097267,13170.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +9556,2,85.0,3,0.0,2,111,1,0,77,6.0,0.0,0.0,737.5695112888079,106.15931652259337,0.0,14905.32,0,71,1,6780,201709556,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2983.3799201062975,0.0,548.0,0.0,0.0,22882.0,0,5,2,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,843.7288278114013,0.056605884866034496,0.036873036789240504,22882.0,6,3,6,6_1,6_4,6_0_1 +9557,1,43.0,3,494.0,3,111,1,85,63,2.0,0.0,0.0,942.1508355878933,636.9558991355602,0.0,27190.779999999995,44,60,2,6782,201709557,,,,56.0,1.0,0.0,3.0,3.0,5.0,2.4,2683.5310968844897,0.0,700.0,0.0,0.0,26865.0,6,1,3,54.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1579.1067347234534,0.05807508040311656,0.05877933127576599,11193.75,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9558,2,43.0,3,0.0,8,211,2,69,64,6.0,1043.8880540133846,0.0,1211.3367886130059,99.08202875442048,0.0,48324.94,50,71,1,6783,201709558,,,541.0,,2.0,2.0,5.0,0.0,2.0,1.5,2254.2658131743906,0.0,900.0,0.0,0.0,33744.0,1,1,3,128.0,1,2.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2354.306871380811,0.04871825751632203,0.06976964412579455,22496.0,6,3,6,6_1,6_1,6_0_0 +9559,2,80.0,1,0.0,1,111,2,0,75,9.0,0.0,0.0,1513.5575936484245,0.0,2820.4821427954175,19414.03149458841,0,44,1,6784,201709559,,,188.0,,0.0,2.0,5.0,0.0,1.0,1.0,2423.6628839436435,2718.6476723238834,0.0,0.0,0.0,32630.0,0,5,1,90.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,4334.039736443842,0.22324264476710776,0.13282377371878157,32630.0,9,5,9,9_1,9_3,9_1_0 +9560,1,33.0,4,452.0,7,111,2,0,22,1.0,0.0,0.0,403.7789295376686,0.0,707.7287768172891,23409.26,71,12,2,6785,201709560,,,,,1.0,2.0,4.0,3.0,5.0,2.4,2260.3545781256166,0.0,300.0,400.0,0.0,16084.0,8,1,3,85.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1111.5077063549577,0.04748153962811972,0.06910642292681905,6701.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9561,2,46.0,2,0.0,4,111,1,56,47,6.0,0.0,0.0,541.0637655804759,0.0,0.0,35019.56134949915,50,43,2,6789,201709561,,,,,2.0,0.0,5.0,1.0,3.0,2.0,1961.191519595146,0.0,402.0,0.0,0.0,43047.0,1,1,2,94.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,541.0637655804759,0.015450329608089572,0.012569139907089365,21523.5,6,3,6,6_0,6_3,6_0_1 +9562,2,42.0,2,0.0,9,300,2,62,48,6.0,929.663221355385,333.10231669522557,1183.072263545369,176.9321942043223,0.0,49566.219999999994,42,43,1,679,201709562,,,431.0,,2.0,0.0,5.0,2.0,4.0,2.1,1974.4632968721637,0.0,879.0,0.0,0.0,47160.0,1,1,2,140.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2622.7699958003022,0.05291446464548442,0.0556142916836366,22457.142857142855,6,3,6,6_1,6_0,6_0_0 +9563,2,37.0,1,0.0,4,111,4,33,43,10.0,0.0,0.0,2961.045483276236,0.0,0.0,52702.411693502596,20,33,1,6792,201709563,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2209.24512629641,0.0,2200.0,0.0,0.0,82978.0,1,1,1,187.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2961.045483276236,0.05618425017239369,0.035684705383068234,39513.33333333333,9,5,9,9_1,9_3,9_0_1 +9564,2,62.0,2,0.0,4,112,2,0,75,10.0,0.0,0.0,261.110374434359,334.4018470461691,0.0,16682.679999999997,0,33,1,6793,201709564,,,140.0,,0.0,1.0,3.0,0.0,1.0,1.0,1404.5965321673784,0.0,194.0,0.0,0.0,43994.0,0,5,1,60.0,10,3.0,1,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,595.5122214805281,0.035696436152975915,0.013536214517446198,43994.0,10,5,10,10_1,10_1,10_0_1 +9565,2,89.0,2,0.0,1,400,5,0,72,3.0,0.0,277.585263912688,606.3413591890657,350.32574452455816,0.0,16252.010315994114,0,71,1,6794,201709565,,,,,1.0,0.0,5.0,1.0,2.0,1.5,3248.9479232935905,0.0,450.5,0.0,0.0,22286.0,0,5,1,70.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1234.2523676263118,0.07594459661471205,0.055382409029270024,14857.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9566,2,74.0,2,0.0,9,111,2,72,72,4.0,0.0,83.27557917380639,1432.0692700935979,0.0,2689.3693519056987,29272.64,41,42,1,6796,201709566,,,340.0,,0.0,2.0,6.0,0.0,2.0,1.5,1262.9128263347181,0.0,1064.0,1520.0,0.0,26620.0,5,5,1,210.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4204.714201173103,0.14363973325170204,0.15795320064512033,17746.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +9567,2,32.0,3,0.0,5,112,6,56,45,3.0,634.5824036555529,0.0,1615.1157181506744,60.15694602946958,0.0,18455.28911153773,43,31,1,6797,201709567,,,406.0,,2.0,0.0,7.0,1.0,3.0,1.8,1849.53118798985,0.0,1200.0,0.0,0.0,24474.0,1,1,3,120.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2309.855067835697,0.1251595168125348,0.09437995700889502,13596.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +9568,2,54.0,3,0.0,1,111,4,0,46,10.0,0.0,0.0,681.0404611535344,0.0,0.0,25632.49672205293,0,60,2,6798,201709568,,,,512.0,1.0,1.0,3.0,0.0,1.0,1.0,2668.0095508814907,0.0,506.0,0.0,0.0,43057.0,0,1,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,681.0404611535344,0.026569415712344592,0.015817183295481207,43057.0,10,5,10,10_0,10_4,10_1_0 +9569,2,44.0,3,0.0,9,300,5,52,62,4.0,0.0,291.4645271083224,1331.1245377091807,106.15931652259337,0.0,41814.688987150126,50,31,1,68,201709569,,,251.0,,2.0,0.0,5.0,2.0,4.0,2.3,1718.4388403910796,0.0,989.0,0.0,0.0,40591.0,1,1,2,140.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1728.7483813400966,0.04134308835517944,0.04258945040378647,17648.26086956522,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9570,1,29.0,2,520.0,99,111,1,0,62,6.0,0.0,0.0,1360.734992541943,0.0,0.0,39866.420000000006,0,31,2,680,201709570,,,,195.0,4.0,1.0,3.0,3.0,4.0,2.5,4867.468085088919,0.0,1011.0,0.0,0.0,55271.0,0,1,3,72.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1360.734992541943,0.034132359829198176,0.02461933007439603,22108.4,6,3,6,6_0,6_4,6_0_0 +9571,2,56.0,3,0.0,5,111,1,0,54,8.0,0.0,0.0,1345.929765125562,0.0,0.0,16149.150158203402,0,31,2,6800,201709571,,,,383.0,2.0,1.0,4.0,1.0,3.0,1.8,1225.4321377900453,0.0,1000.0,0.0,0.0,48265.0,0,1,3,85.0,8,7.0,5,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1345.929765125562,0.08334369003571747,0.027886248111997556,26813.888888888887,7,4,7,7_0,7_3,7_0_0 +9572,2,69.0,3,0.0,3,111,2,0,86,5.0,1903.7472109666587,0.0,508.7614512174624,254.7823596542241,0.0,24707.952941899,0,71,1,6801,201709572,,,660.0,,1.0,0.0,6.0,2.0,3.0,2.0,1905.286948715463,0.0,378.0,0.0,0.0,37190.0,0,5,1,80.0,9,7.0,2,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2667.291021838345,0.10795273198514287,0.07172065129976728,18595.0,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +9573,2,55.0,3,0.0,6,112,2,0,62,6.0,0.0,0.0,601.2703366387364,0.0,1120.4543881242419,12421.0,0,60,2,6802,201709573,,,,450.0,1.0,2.0,3.0,0.0,1.0,1.0,3497.5689213170285,1080.0,0.0,0.0,0.0,21141.0,0,1,3,72.0,10,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1721.7247247629782,0.1386140185784541,0.0814400796917354,21141.0,5,3,5,5_0,5_2,5_0_0 +9574,2,38.0,4,0.0,1,111,2,68,48,9.0,0.0,0.0,0.0,0.0,0.0,28071.880315994113,71,33,1,6803,201709574,,,,,2.0,1.0,3.0,0.0,2.0,1.5,2113.9160806883647,0.0,0.0,0.0,0.0,48013.0,1,1,3,50.0,9,7.0,3,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,32008.666666666668,9,5,9,9_1,9_3,9_1_0 +9575,2,73.0,1,0.0,7,221,4,75,75,6.0,0.0,693.9631597817199,1963.7115273181948,0.0,0.0,26995.112027330713,50,70,1,6804,201709575,,,160.0,,0.0,3.0,5.0,0.0,2.0,1.5,4836.349453414511,0.0,1459.0,0.0,0.0,32618.0,5,5,1,100.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2657.674687099915,0.09845021885477638,0.08147877512722776,21745.333333333332,6,3,6,6_1,6_1,6_0_0 +9576,2,83.0,3,0.0,6,400,6,0,77,4.0,0.0,0.0,2503.4293631335454,53.079658261296686,0.0,15420.48,0,70,1,6805,201709576,,,390.0,,0.0,4.0,5.0,0.0,1.0,1.0,2763.433139697187,0.0,1860.0,0.0,0.0,16141.0,0,5,5,92.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2556.509021394842,0.16578660465788628,0.15838603688710998,16141.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9577,2,30.0,3,0.0,1,112,4,47,37,7.0,0.0,0.0,1453.6041463356069,191.08676974066807,0.0,44322.54932216843,31,10,1,6806,201709577,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2313.7338612684225,0.0,1080.0,0.0,0.0,40119.0,1,1,3,70.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1644.690916076275,0.037107317634675493,0.040995311849155634,26746.0,7,4,7,7_1,7_0,7_1_0 +9578,2,69.0,3,0.0,4,111,4,52,77,6.0,0.0,0.0,679.2127876844985,0.0,1265.6984754736804,34896.200000000004,41,31,1,6807,201709578,,,,,1.0,3.0,4.0,0.0,2.0,1.5,2317.2707832684673,1220.0,0.0,0.0,0.0,35242.0,1,5,3,82.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1944.9112631581788,0.05573418490145571,0.05518731238744052,23494.666666666668,6,3,6,6_1,6_2,6_0_1 +9579,2,37.0,3,0.0,2,211,2,67,67,6.0,0.0,624.566843803548,834.4764543778484,0.0,1273.9117982711205,50735.3316935026,60,42,1,6809,201709579,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2596.82743429258,0.0,620.0,720.0,0.0,43059.0,1,1,2,100.0,1,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2732.955096452517,0.05386690113632413,0.0634700085104744,20504.285714285714,5,3,5,5_1,5_1,5_0_1 +9580,2,56.0,4,0.0,1,120,5,67,52,5.0,0.0,305.3437903039568,1009.4473238441715,0.0,0.0,29889.679999999997,43,60,1,681,201709580,,,,,2.0,2.0,5.0,0.0,2.0,1.5,2258.0606456371484,0.0,750.0,0.0,0.0,29150.0,1,1,3,90.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1314.7911141481281,0.04398812948643573,0.045104326385870606,19433.333333333332,5,3,5,5_1,5_0,5_1_0 +9581,0,34.0,4,0.0,99,112,5,0,21,9.0,0.0,0.0,0.0,95.54338487033404,0.0,12948.08,0,71,1,6810,201709581,,,,,1.0,1.0,5.0,0.0,1.0,1.0,3921.969127081391,0.0,0.0,0.0,0.0,35250.0,0,1,5,110.0,8,0.0,1,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,95.54338487033404,0.007378961581202313,0.0027104506346194053,35250.0,9,5,9,9_1,9_0,9_0_0 +9582,2,49.0,3,0.0,8,111,6,62,21,2.0,0.0,277.585263912688,2328.4584936672222,0.0,0.0,23152.02,50,50,1,6812,201709582,,,,,2.0,0.0,3.0,1.0,3.0,2.0,1960.9663233274143,0.0,1730.0,0.0,0.0,24007.0,1,1,2,150.0,6,4.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2606.04375757991,0.11256226271314167,0.10855349512975007,12003.5,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9583,2,67.0,2,0.0,9,112,2,43,74,9.0,0.0,0.0,1961.0196677879437,132.69914565324171,0.0,32093.359999999997,31,50,1,6813,201709583,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1836.9797172352542,0.0,1457.0,0.0,0.0,54256.0,1,5,2,150.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2093.7188134411854,0.06523837994654301,0.03858962720143736,36170.666666666664,9,5,9,9_1,9_0,9_0_0 +9584,1,51.0,3,256.0,2,300,2,0,85,2.0,0.0,0.0,955.610133239149,0.0,0.0,11736.8,0,50,2,6814,201709584,,,,124.0,0.0,1.0,2.0,0.0,1.0,1.0,3115.42978898423,0.0,710.0,0.0,0.0,12794.0,0,7,3,35.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,955.610133239149,0.08141998954051778,0.0746920535594145,12794.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +9585,2,32.0,4,0.0,9,112,4,46,37,6.0,0.0,0.0,1865.4586544640288,0.0,0.0,69048.74,31,30,1,6818,201709585,,,607.0,,2.0,0.0,4.0,2.0,4.0,2.1,2087.0750491866593,0.0,1386.0,0.0,0.0,42978.0,1,1,2,83.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1865.4586544640288,0.027016548809783186,0.043404966598353314,20465.714285714286,5,3,5,5_1,5_1,5_0_0 +9586,1,65.0,4,76.0,4,111,1,0,75,2.0,0.0,0.0,148.0522741638118,0.0,138.0071114793714,11544.339999999998,0,44,2,6819,201709586,,,,144.0,0.0,3.0,2.0,0.0,1.0,1.0,2087.2830246002377,0.0,110.0,78.0,0.0,12157.0,0,5,3,50.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,286.0593856431832,0.02477918925145857,0.023530425733584204,12157.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9587,2,52.0,1,0.0,8,112,2,38,38,10.0,0.0,0.0,2115.8015907773834,0.0,2153.264803466602,80465.88185272079,20,20,1,682,201709587,,,459.0,,2.0,1.0,5.0,2.0,4.0,2.3,1796.4212546439658,0.0,1572.0,1217.0,0.0,101669.0,1,1,1,188.0,8,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4269.066394243986,0.05305436659549436,0.04198985329101285,44203.913043478264,10,5,10,10_1,10_1,10_0_0 +9588,1,66.0,4,199.0,1,111,2,0,72,2.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,10044.4,0,60,2,6821,201709588,,,141.0,200.0,0.0,2.0,2.0,0.0,1.0,1.0,2332.6527267271576,800.0,0.0,0.0,0.0,11918.0,0,5,3,45.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1275.3516479725763,0.12697141172918008,0.1070105427062071,11918.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +9589,1,30.0,5,515.0,99,112,4,0,85,1.0,0.0,0.0,3230.231436301349,0.0,0.0,20432.82,0,50,1,6823,201709589,,,192.0,,0.0,0.0,4.0,3.0,5.0,2.2,3059.509370046043,0.0,2400.0,0.0,0.0,22643.0,0,6,3,120.0,6,0.0,5,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3230.231436301349,0.15809033879324288,0.14265916337505405,10292.272727272726,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +9590,2,58.0,3,0.0,9,112,2,56,33,9.0,0.0,0.0,1345.929765125562,0.0,0.0,30189.011693502598,50,41,1,6824,201709590,,,420.0,,2.0,4.0,5.0,0.0,2.0,1.5,1646.93016871234,0.0,1000.0,0.0,0.0,54507.0,1,1,2,120.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1345.929765125562,0.04458343250154288,0.024692787442448894,36338.0,9,5,9,9_1,9_0,9_0_0 +9591,1,52.0,4,160.0,4,111,4,0,54,5.0,0.0,0.0,2076.769627588742,0.0,0.0,33484.62,0,30,1,6826,201709591,,,400.0,,2.0,1.0,4.0,2.0,3.0,2.0,680.8516529261054,0.0,1543.0,0.0,0.0,37820.0,0,1,3,100.0,8,7.0,2,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2076.769627588742,0.06202159760477323,0.0549119415015532,18910.0,5,3,5,5_1,5_3,5_0_1 +9592,2,43.0,3,0.0,8,111,2,0,52,3.0,0.0,0.0,376.8603342351573,0.0,1203.1389205893915,19136.6058467513,0,50,2,6827,201709592,,,,211.0,1.0,0.0,1.0,0.0,1.0,1.0,3277.1462542576423,0.0,280.0,680.0,0.0,14282.0,0,4,3,34.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1579.9992548245489,0.08256423670307111,0.11062871130265711,14282.0,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +9593,1,62.0,1,200.0,1,111,2,0,74,1.0,95.18736054833293,0.0,646.0462872602698,0.0,0.0,23339.879999999997,0,20,2,6828,201709593,,,,290.0,0.0,1.0,2.0,0.0,1.0,1.0,4473.369291778418,0.0,480.0,0.0,0.0,8284.0,0,5,3,75.0,9,7.0,1,9,1,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,741.2336478086027,0.03175824587823942,0.08947774599331274,8284.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +9594,1,47.0,3,79.0,9,111,2,0,45,4.0,0.0,0.0,302.83419715325147,0.0,760.8084350785858,29757.49,0,31,2,6829,201709594,,,,571.0,1.0,0.0,4.0,2.0,3.0,1.8,1026.3609677222025,0.0,225.0,430.0,0.0,32338.0,0,1,3,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1063.6426322318373,0.03574369451966,0.032891416668681964,17965.555555555555,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +9595,1,35.0,4,460.0,99,400,2,0,68,1.0,1110.5192063972174,0.0,133.24704674743063,212.31863304518674,0.0,9758.656722052927,0,71,1,683,201709595,,,100.0,90.0,2.0,0.0,4.0,3.0,4.0,2.1,764.1441682301012,0.0,99.0,0.0,0.0,21471.0,0,1,3,71.0,0,1.0,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1456.0848861898348,0.14920956107609845,0.06781635164593335,10224.285714285714,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +9596,1,41.0,3,306.0,5,111,5,0,67,2.0,79.32280045694411,416.377895869032,837.1683139080995,106.15931652259337,0.0,18516.4,0,50,1,6830,201709596,,,185.0,,1.0,0.0,4.0,2.0,3.0,1.8,342.6473578454124,0.0,622.0,0.0,0.0,22867.0,0,1,3,100.0,6,5.0,2,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1439.028326756669,0.07771642040335426,0.06293035058191582,12703.888888888889,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +9597,2,75.0,2,0.0,4,211,2,75,74,10.0,0.0,0.0,787.3689125984538,0.0,3467.871006404717,24234.159999999996,41,44,1,6832,201709597,,,472.0,,0.0,3.0,6.0,0.0,2.0,1.5,1584.6913709582248,0.0,585.0,1960.0,0.0,68449.0,5,5,1,100.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4255.23991900317,0.17558850478016036,0.06216657539194393,45632.666666666664,10,5,10,10_1,10_1,10_0_1 +9598,2,51.0,3,0.0,7,400,4,62,11,3.0,0.0,693.9631597817199,1084.819390691203,113.23660429076627,0.0,33504.899999999994,42,50,1,6837,201709598,,,191.0,,2.0,2.0,7.0,1.0,3.0,2.0,1680.9015864852447,0.0,806.0,0.0,0.0,25527.0,1,1,1,140.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1892.0191547636891,0.05646992394436902,0.07411835134421159,12763.5,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +9599,2,39.0,3,0.0,6,111,4,52,21,5.0,0.0,0.0,2489.9700654822896,0.0,0.0,48425.389510687295,50,43,1,6838,201709599,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.3,2461.6276037446532,0.0,1850.0,0.0,0.0,44500.0,1,1,3,100.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2489.9700654822896,0.051418689465218714,0.05595438349398404,19347.826086956524,5,3,5,5_1,5_3,5_0_0 +9600,1,54.0,3,306.0,4,111,2,77,78,3.0,0.0,0.0,528.8952035248144,530.7965826129669,985.5848784426202,22774.919999999995,50,50,1,684,201709600,,,,,0.0,6.0,4.0,0.0,2.0,1.5,2180.0651122294844,950.0,0.0,0.0,0.0,20169.0,7,7,3,64.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,2045.2766645804013,0.0898039011588362,0.1014069445475929,13446.0,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +9601,1,40.0,5,256.0,5,111,1,0,68,1.0,0.0,941.0140446640123,759.3821659029966,0.0,1415.092393890246,6946.6658467513,0,50,2,6841,201709601,678.0,678.0,,,1.0,0.0,2.0,1.0,2.0,1.5,760.5743257148099,1364.0,0.0,0.0,0.0,9882.0,0,4,3,50.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3115.488604457255,0.4484868961869318,0.3152690350594267,6588.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9602,2,62.0,3,0.0,1,120,4,0,75,9.0,0.0,832.755791738064,1596.2727014389166,0.0,0.0,18957.839999999997,0,30,1,6842,201709602,,,300.0,,0.0,3.0,6.0,0.0,1.0,1.0,2126.2580608663643,0.0,1186.0,0.0,0.0,35402.0,0,5,1,90.0,0,0.0,1,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2429.0284931769806,0.12812791400164686,0.06861274767462236,35402.0,9,5,9,9_1,9_0,9_1_0 +9603,2,82.0,3,0.0,3,112,2,86,75,6.0,0.0,0.0,884.2758556874942,0.0,1910.8676974066807,34564.34,60,50,1,6845,201709603,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2669.428467767206,0.0,657.0,1080.0,0.0,31964.0,6,5,1,78.0,8,1.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2795.143553094175,0.08086784104930617,0.0874466134743516,21309.333333333332,6,3,6,6_1,6_1,6_0_1 +9604,2,45.0,3,0.0,9,111,2,37,46,10.0,0.0,0.0,1534.3599322431405,0.0,1946.2541362475451,73535.6280158789,31,42,1,6847,201709604,,,784.0,,2.0,0.0,5.0,2.0,4.0,2.3,1748.748120320905,0.0,1140.0,1100.0,0.0,123920.0,1,1,2,121.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3480.614068490686,0.04733234980653324,0.02808758931964724,53878.26086956522,10,5,10,10_1,10_4,10_0_0 +9605,2,65.0,3,0.0,1,112,5,55,72,10.0,0.0,971.5484236944079,1091.1943146406695,0.0,2033.4172228921423,57107.700000000004,60,31,1,6849,201709605,,,360.0,,1.0,2.0,3.0,0.0,2.0,1.5,1421.7482547959326,1960.0,0.0,0.0,0.0,71841.0,1,5,3,110.0,9,2.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4096.159961227219,0.07172692931473723,0.05701702316542391,47894.0,10,5,10,10_1,10_1,10_1_0 +9606,2,35.0,2,0.0,5,120,4,54,38,9.0,0.0,0.0,2530.3479584360566,0.0,0.0,33160.4,42,31,1,6853,201709606,,,270.0,,2.0,0.0,4.0,0.0,2.0,1.5,2585.042515028971,0.0,1880.0,0.0,0.0,48580.0,1,1,3,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2530.3479584360566,0.07630631592007504,0.05208620746060223,32386.666666666668,9,5,9,9_1,9_0,9_0_0 +9607,1,42.0,5,437.0,7,111,2,0,67,1.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,7004.760315994116,0,60,2,6855,201709607,,,,105.0,1.0,0.0,4.0,2.0,3.0,1.8,666.3128035349355,1200.0,0.0,0.0,0.0,13634.0,0,4,3,82.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1913.0274719588647,0.2731039158600201,0.14031300219736428,7574.444444444444,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9608,2,55.0,2,0.0,99,111,2,0,48,7.0,0.0,0.0,215.3487624200899,0.0,270.70625713261313,25588.225846751302,0,50,2,6856,201709608,,,330.0,,1.0,3.0,3.0,0.0,1.0,1.0,2724.798488896657,0.0,160.0,153.0,0.0,24983.0,0,1,3,76.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,486.055019552703,0.018995260650883028,0.019455430474831007,24983.0,7,4,7,7_0,7_3,7_0_0 +9609,2,59.0,3,0.0,6,120,2,68,47,7.0,0.0,0.0,888.3136449828709,0.0,2760.1422295874277,26833.883468534776,50,71,1,6857,201709609,,,352.0,,2.0,2.0,4.0,0.0,2.0,1.5,2074.782973918819,0.0,660.0,1560.0,0.0,32480.0,1,1,1,78.0,0,0.0,3,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3648.4558745702984,0.1359645121381127,0.1123293064830757,21653.333333333332,6,3,6,6_1,6_0,6_0_0 +9610,2,42.0,4,0.0,4,111,2,68,68,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,30665.9,71,71,2,6858,201709610,,,,650.0,2.0,2.0,3.0,1.0,3.0,1.8,1090.963113335398,1200.0,0.0,0.0,0.0,29124.0,1,1,3,70.0,5,4.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1913.0274719588647,0.06238289017960877,0.0656856019763379,16180.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +9611,2,53.0,2,0.0,8,111,2,22,22,1.0,0.0,0.0,1211.3367886130059,0.0,0.0,29146.940000000002,50,31,1,686,201709611,,,400.0,,2.0,3.0,5.0,0.0,2.0,1.5,2202.881101344016,0.0,900.0,0.0,0.0,13659.0,1,1,2,125.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1211.3367886130059,0.0415596556143803,0.08868414881126041,9106.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +9612,1,43.0,4,300.0,99,112,2,0,56,1.0,0.0,333.10231669522557,874.8543473316153,0.0,0.0,47393.82000000001,0,41,1,6861,201709612,,,285.0,,1.0,0.0,5.0,2.0,3.0,2.0,257.12613699063655,0.0,650.0,0.0,0.0,16478.0,0,1,2,68.0,8,0.0,2,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1207.9566640268408,0.025487640878638623,0.07330723777320311,8239.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +9613,2,35.0,3,0.0,8,111,2,65,65,4.0,2379.684013708323,0.0,942.1508355878933,0.0,0.0,40712.52585273453,31,50,1,6862,201709613,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.1,2311.4923453783163,0.0,700.0,0.0,0.0,37166.0,1,1,2,110.0,7,6.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3321.8348492962164,0.08159245292989109,0.08937832560125428,17698.095238095237,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +9614,2,65.0,3,0.0,1,111,2,0,78,1.0,0.0,0.0,874.8543473316153,0.0,0.0,12484.1,0,70,2,6863,201709614,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3408.041886633944,0.0,650.0,0.0,0.0,9582.0,0,5,1,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,874.8543473316153,0.07007748634916536,0.09130185215316378,9582.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +9615,2,34.0,3,0.0,1,111,2,0,37,9.0,0.0,0.0,601.2703366387364,0.0,1120.4543881242419,53580.75999999999,0,0,2,6864,201709615,,,120.0,,1.0,0.0,3.0,1.0,2.0,1.3,1319.1843664329203,1080.0,0.0,0.0,0.0,47760.0,0,1,2,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1721.7247247629782,0.03213326434270396,0.036049512662541416,36738.46153846154,9,5,9,9_0,9_3,9_1_0 +9616,2,24.0,3,0.0,99,111,2,0,55,3.0,0.0,0.0,367.44298350145,0.0,684.7221260759255,32210.899999999998,0,41,2,6865,201709616,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2985.419838570625,660.0,0.0,0.0,0.0,15678.0,0,1,3,40.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1052.1651095773755,0.03266487771460517,0.067110926749418,15678.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +9617,2,63.0,3,0.0,4,111,1,68,78,2.0,0.0,0.0,856.0113306198574,0.0,0.0,23613.002180565687,50,50,2,6869,201709617,,,624.0,,2.0,2.0,3.0,1.0,3.0,2.0,3547.197840706989,0.0,636.0,0.0,0.0,25880.0,4,5,3,80.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,856.0113306198574,0.036251694048645124,0.03307617197140098,12940.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +9618,2,56.0,1,0.0,4,111,2,43,37,10.0,0.0,0.0,699.8834778652922,0.0,2055.952096654225,41433.08,33,30,1,687,201709618,,,350.0,,2.0,4.0,7.0,0.0,2.0,1.5,1509.9009480749942,0.0,520.0,1162.0,0.0,145011.0,1,1,1,110.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2755.835574519517,0.0665129305984377,0.0190043208757923,96674.0,10,5,10,10_1,10_2,10_0_1 +9619,2,67.0,2,0.0,1,112,4,78,56,4.0,0.0,0.0,1437.4529891541001,371.5576078290768,0.0,23279.96,71,50,1,6870,201709619,,,75.0,,1.0,4.0,5.0,0.0,4.0,2.3,4419.820946590842,0.0,1068.0,0.0,0.0,39570.0,5,1,1,130.0,9,0.0,5,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1809.010596983177,0.07770677428067647,0.04571671966093447,17204.347826086956,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9620,2,45.0,2,0.0,9,111,5,56,38,3.0,0.0,693.9631597817199,1224.7960862642615,0.0,0.0,41209.4,60,50,1,6871,201709620,,,480.0,,2.0,0.0,4.0,2.0,4.0,2.5,2409.042391140187,0.0,910.0,0.0,0.0,41160.0,1,1,2,90.0,4,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1918.7592460459814,0.0465612031732076,0.04661708566681199,16464.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9621,1,69.0,4,180.0,99,111,2,0,78,2.0,0.0,0.0,388.97370212128743,0.0,0.0,7864.96,0,70,2,6872,201709621,,,,200.0,0.0,2.0,1.0,0.0,1.0,1.0,4139.695418849621,0.0,289.0,0.0,0.0,11750.0,0,5,3,23.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,388.97370212128743,0.04945653914594447,0.033104144861386166,11750.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9622,2,86.0,2,0.0,1,111,2,78,72,3.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,20358.67087530163,70,44,2,6873,201709622,,,200.0,,0.0,1.0,2.0,0.0,2.0,1.5,2910.674367591353,1500.0,0.0,0.0,0.0,23182.0,5,5,1,44.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2391.2843399485805,0.11745778271063836,0.10315263307516954,15454.666666666666,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +9623,2,83.0,2,0.0,3,112,6,0,78,7.0,0.0,1790.4249522368375,807.5578590753372,46.0023704931238,0.0,12625.950875301629,0,70,1,6874,201709623,,,114.0,,0.0,1.0,4.0,0.0,1.0,1.0,2240.131142799589,0.0,600.0,0.0,0.0,22319.0,0,5,1,115.0,10,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2643.9851818052985,0.2094087968437573,0.11846342496551363,22319.0,6,3,6,6_1,6_0,6_0_1 +9624,2,49.0,3,0.0,8,300,5,55,62,5.0,0.0,693.9631597817199,2487.2782059520387,0.0,0.0,24292.083387005194,60,50,1,6875,201709624,,,764.0,,2.0,0.0,5.0,3.0,5.0,3.0,1436.0587737987644,0.0,1848.0,0.0,0.0,56833.0,1,1,1,100.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3181.2413657337584,0.1309579468772749,0.05597524969179453,18944.333333333332,5,3,5,5_1,5_1,5_0_0 +9625,2,40.0,4,0.0,1,111,5,0,21,1.0,0.0,187.3700531410644,269.1859530251124,0.0,0.0,26151.519999999997,0,71,1,6876,201709625,,,870.0,,1.0,0.0,3.0,0.0,1.0,1.0,4762.574674743014,0.0,200.0,0.0,0.0,8300.0,0,4,2,56.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,456.55600616617676,0.017458105921421652,0.05500674773086467,8300.0,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +9626,2,48.0,2,0.0,1,112,2,31,43,9.0,0.0,0.0,111.34635863680303,0.0,207.49155335634106,57351.75034175384,20,33,1,6878,201709626,,,76.0,,2.0,0.0,8.0,2.0,4.0,2.3,2049.380740052351,200.0,0.0,0.0,0.0,82756.0,1,1,1,150.0,9,0.0,4,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,318.8379119931441,0.005559340562288301,0.003852746773564987,35980.86956521739,9,5,9,9_1,9_0,9_1_0 +9627,2,30.0,3,0.0,7,112,5,54,42,8.0,0.0,0.0,605.6683943065029,141.54575536345783,0.0,40445.96,0,44,1,688,201709627,,,260.0,,2.0,0.0,4.0,0.0,2.0,1.5,2494.4835369953066,0.0,450.0,0.0,0.0,41096.0,1,1,3,70.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,747.2141496699608,0.01847438284738354,0.01818216248953574,27397.333333333332,8,4,8,8_1,8_2,8_0_0 +9628,2,53.0,2,0.0,99,221,6,0,34,7.0,0.0,0.0,403.7789295376686,0.0,0.0,23960.425846751303,0,20,2,6880,201709628,,,,850.0,1.0,1.0,3.0,1.0,2.0,1.5,1664.8033312584096,0.0,300.0,0.0,0.0,39200.0,0,1,3,72.0,1,3.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,403.7789295376686,0.01685190956622398,0.010300482896369097,26133.333333333332,7,4,7,7_0,7_1,7_0_0 +9629,2,46.0,1,0.0,1,221,4,31,31,7.0,0.0,0.0,8450.451068243872,0.0,3708.3003605103368,88248.10591110203,20,31,1,6881,201709629,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.1,4605.562583299266,3574.4109102521297,4800.0,0.0,0.0,47760.0,1,1,2,100.0,1,2.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,12158.751428754209,0.13777917727778202,0.2545802225451049,22742.85714285714,6,3,6,6_1,6_1,6_1_0 +9630,2,53.0,4,0.0,1,111,5,55,62,3.0,0.0,27.7585263912688,484.5347154452023,88.46609710216114,0.0,21037.1,60,50,1,6883,201709630,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2546.147153486646,0.0,360.0,0.0,0.0,30884.0,4,1,1,80.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,600.7593389386323,0.0285571366271317,0.01945212210007228,15442.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +9631,1,39.0,3,470.0,4,111,1,52,63,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,33813.92,50,43,2,6885,201709631,,,,373.0,2.0,0.0,4.0,4.0,6.0,2.7,2278.317166732006,1200.0,0.0,0.0,0.0,43844.0,1,1,3,80.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1913.0274719588647,0.0565751463290522,0.04363259447036914,16238.518518518518,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +9632,2,36.0,3,0.0,5,111,2,0,47,10.0,0.0,0.0,3162.9349480450705,0.0,0.0,27778.19,0,43,1,6886,201709632,,,680.0,,1.0,1.0,4.0,1.0,2.0,1.5,808.3293306361077,0.0,2350.0,0.0,0.0,60875.0,0,1,1,90.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3162.9349480450705,0.11386396838833167,0.05195786362291697,40583.333333333336,9,5,9,9_1,9_3,9_0_0 +9633,1,26.0,3,379.0,99,111,2,0,55,3.0,0.0,0.0,742.9532303493102,0.0,828.0426688762283,10387.880000000001,0,50,2,6888,201709633,,,340.0,65.0,1.0,0.0,3.0,1.0,2.0,1.3,1114.5971024297537,0.0,552.0,468.0,0.0,18218.0,0,1,3,65.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1570.9958992255383,0.15123354324708585,0.08623317044821266,14013.846153846154,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9634,2,73.0,1,0.0,5,111,2,77,74,8.0,0.0,0.0,1160.1914575382343,0.0,1371.2245050834977,25699.72,50,30,1,689,201709634,,,250.0,,0.0,2.0,8.0,0.0,2.0,1.5,1569.0915467318803,0.0,862.0,775.0,0.0,45273.0,5,5,1,150.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2531.415962621732,0.09849974873740772,0.0559144735851773,30182.0,8,4,8,8_1,8_2,8_0_0 +9635,2,66.0,3,0.0,5,111,3,75,77,8.0,0.0,0.0,94.21508355878933,0.0,0.0,33972.2,60,50,8,6890,201709635,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2378.298084830863,0.0,70.0,0.0,0.0,47137.0,5,5,1,86.0,6,4.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,94.21508355878933,0.0027732994495142894,0.001998750102017297,31424.666666666668,8,4,8,8_0,8_2,8_0_0 +9636,1,33.0,3,346.0,2,111,1,0,63,1.0,0.0,0.0,26.91859530251124,0.0,61.9262679715128,5954.394345444658,0,71,2,6891,201709636,0.0,,,,1.0,0.0,3.0,1.0,2.0,1.3,1869.6883427425769,0.0,20.0,35.0,0.0,10916.0,0,4,3,55.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,88.84486327402404,0.014920890038462736,0.00813895779351631,8396.923076923076,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9637,2,61.0,2,0.0,1,112,2,0,78,3.0,0.0,0.0,578.7497990039916,0.0,0.0,10912.696658454028,0,71,1,6893,201709637,,,90.0,,0.0,0.0,4.0,0.0,1.0,1.0,3885.1903402861853,0.0,430.0,0.0,0.0,15273.0,0,5,1,70.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,578.7497990039916,0.05303453556144037,0.03789365540522436,15273.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9638,2,44.0,3,0.0,2,111,2,52,46,5.0,0.0,0.0,1298.422186276584,0.0,2776.592004703108,47134.68000000001,50,50,1,6895,201709638,,,600.0,,2.0,0.0,6.0,2.0,4.0,2.5,2924.941275088965,594.0,719.0,1221.0,0.0,48620.0,1,1,1,115.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4075.014190979692,0.08645469091929109,0.08381353745330507,19448.0,5,3,5,5_1,5_2,5_0_1 +9639,2,60.0,1,0.0,6,211,2,74,34,10.0,0.0,0.0,909.8485212248798,0.0,1544.6180554037337,45309.44,31,31,1,6898,201709639,,,416.0,,1.0,2.0,5.0,0.0,2.0,1.5,2118.452830507114,0.0,676.0,873.0,0.0,82281.0,5,1,1,105.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2454.4665766286134,0.054171196479775814,0.02983029589611956,54854.0,10,5,10,10_1,10_1,10_0_0 +9640,2,58.0,2,0.0,5,111,2,77,77,9.0,0.0,0.0,75.71552387302606,0.0,141.09425628231193,73534.88,41,41,2,6899,201709640,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2937.6012711111075,136.0,0.0,0.0,0.0,58493.0,5,5,1,95.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,216.809780155338,0.0029483937439666453,0.003706593612147402,38995.333333333336,9,5,9,9_0,9_3,9_0_0 +9641,2,45.0,4,0.0,1,111,2,0,46,8.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,20085.88,0,30,1,69,201709641,,,612.0,,1.0,0.0,6.0,1.0,2.0,1.5,1719.6629230279357,1700.0,0.0,0.0,0.0,43280.0,0,1,1,195.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2710.1222519417247,0.13492673718760267,0.0626183514773966,28853.333333333332,8,4,8,8_1,8_3,8_1_0 +9642,2,54.0,4,0.0,1,221,2,0,46,5.0,1586.456009138882,416.377895869032,471.07541779394666,102.62067263850693,0.0,19178.760000000002,0,50,1,6900,201709642,,,250.0,,1.0,1.0,4.0,0.0,1.0,1.0,1704.2996997233092,0.0,350.0,0.0,0.0,19218.0,0,1,1,90.0,1,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2576.529995440368,0.1343428874150554,0.13406858130088292,19218.0,5,3,5,5_1,5_1,5_1_0 +9643,2,75.0,3,0.0,5,400,2,77,72,4.0,1586.456009138882,0.0,1231.5257350898892,123.8525359430256,0.0,37640.46,70,50,1,6901,201709643,,,240.0,,0.0,2.0,4.0,0.0,2.0,1.5,1359.2715974310433,0.0,915.0,0.0,0.0,26624.0,5,5,1,100.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2941.8342801717968,0.0781561723786531,0.11049557843193347,17749.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9644,2,28.0,2,0.0,9,112,2,47,46,9.0,0.0,0.0,0.0,0.0,2017.027013929274,55247.0258467513,30,20,2,6902,201709644,,,,840.0,2.0,0.0,3.0,0.0,2.0,1.5,3251.6797066003282,0.0,0.0,1140.0,0.0,56725.0,1,1,3,70.0,8,2.0,3,7,0,1,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,2017.027013929274,0.03650924159291883,0.03555799054965666,37816.666666666664,9,5,9,9_0,9_1,9_0_0 +9645,2,50.0,3,0.0,3,111,2,0,62,3.0,0.0,0.0,27.836589659200758,0.0,51.872888339085264,8096.027849749775,0,50,2,6903,201709645,,,,238.0,1.0,0.0,2.0,0.0,1.0,1.0,2522.346964116989,50.0,0.0,0.0,0.0,15061.0,0,4,3,42.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,79.70947799828602,0.009845504422363075,0.005292442599979153,15061.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +9646,2,45.0,3,0.0,3,112,2,0,37,7.0,0.0,0.0,607.0143240716285,0.0,1771.091263985266,33843.94,0,20,1,6904,201709646,,,312.0,,1.0,0.0,4.0,2.0,3.0,1.6,348.65122731926044,0.0,451.0,1001.0,0.0,38585.0,0,1,2,95.0,10,3.0,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2378.1055880568947,0.07026680664417011,0.06163290366870273,24115.625,7,4,7,7_1,7_1,7_0_1 +9647,2,35.0,2,0.0,9,112,4,37,37,10.0,0.0,444.1364222603008,3109.097757440048,53.079658261296686,0.0,73145.14000000001,20,30,1,6905,201709647,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.1,2107.6511151472564,0.0,2310.0,0.0,0.0,75794.0,1,1,1,160.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3606.3138379616453,0.04930353319388882,0.047580465973053876,36092.380952380954,9,5,9,9_1,9_1,9_0_0 +9648,2,66.0,3,0.0,5,111,2,77,78,6.0,0.0,0.0,1620.4994372111767,176.9321942043223,0.0,43277.78,50,50,1,6907,201709648,,,225.0,,0.0,2.0,6.0,0.0,2.0,1.5,1594.181366298791,0.0,1204.0,0.0,0.0,35192.0,5,5,1,100.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1797.431631415499,0.04153243607725486,0.05107500657579845,23461.333333333332,6,3,6,6_1,6_3,6_0_0 +9649,2,75.0,3,0.0,1,112,2,46,75,5.0,0.0,0.0,86.85015973670636,0.0,161.84341161794603,44269.44,50,71,1,6908,201709649,,,44.0,709.0,1.0,3.0,4.0,0.0,2.0,1.5,2906.035723200357,156.0,0.0,0.0,0.0,33647.0,4,5,3,119.0,10,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,248.6935713546524,0.005617725712244211,0.0073912554270708355,22431.333333333332,6,3,6,6_1,6_2,6_1_0 +9650,2,39.0,2,0.0,4,300,2,64,64,6.0,1189.8420068541616,582.9290542166448,1082.1275311609518,0.0,0.0,61159.37087530162,50,60,1,6909,201709650,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2093.6813247862983,0.0,804.0,0.0,0.0,37365.0,1,1,1,115.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2854.898592231758,0.04667965924719265,0.0764056896087718,20758.333333333332,5,3,5,5_1,5_0,5_0_1 +9651,2,30.0,1,0.0,7,111,1,0,47,8.0,0.0,0.0,100.94473238441715,0.0,157.46965284184685,23342.4,0,41,2,691,201709651,,,,700.0,1.0,0.0,2.0,0.0,1.0,1.0,3507.174396718691,0.0,75.0,89.0,0.0,31479.0,0,1,3,43.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,258.414385226264,0.011070600504929399,0.008209104013032943,31479.0,8,4,8,8_0,8_4,8_0_0 +9652,1,31.0,4,297.0,6,111,4,0,55,2.0,0.0,0.0,928.6915379366377,0.0,0.0,8002.96,0,50,2,6913,201709652,,,,163.0,1.0,0.0,3.0,1.0,2.0,1.3,729.463281979903,0.0,690.0,0.0,0.0,14404.0,0,4,3,70.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,928.6915379366377,0.11604350614480613,0.06447455831273519,11080.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9653,2,40.0,1,0.0,3,111,1,34,34,10.0,0.0,0.0,46.765470627457276,0.0,87.14645240966325,45617.2,10,10,2,6914,201709653,,,,828.0,2.0,0.0,4.0,2.0,4.0,2.1,3369.2715860371036,84.0,0.0,0.0,0.0,110126.0,1,1,3,92.0,8,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,133.91192303712052,0.0029355577071175022,0.001215988259240511,52440.95238095238,10,5,10,10_0,10_3,10_0_1 +9654,2,45.0,3,0.0,4,112,4,0,37,9.0,0.0,0.0,181.70051829195086,0.0,0.0,28238.07672205293,0,43,2,6916,201709654,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2098.5622690886476,0.0,135.0,0.0,0.0,40523.0,0,1,3,40.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,181.70051829195086,0.006434592556724985,0.0044838861459405984,40523.0,9,5,9,9_0,9_1,9_0_1 +9655,2,46.0,2,0.0,1,111,2,31,31,7.0,0.0,0.0,1671.9780586753589,0.0,2495.4894899196115,41551.330172244874,20,20,2,6917,201709655,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2937.0700896054086,1552.6690054043802,600.0,500.0,0.0,52550.0,1,1,2,75.0,7,6.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,4167.46754859497,0.10029685045747878,0.07930480587240667,25023.809523809523,7,4,7,7_0,7_2,7_1_0 +9656,2,29.0,3,0.0,99,111,1,0,43,5.0,0.0,0.0,538.3719060502248,0.0,0.0,21882.68,0,30,2,6918,201709656,,,,541.0,1.0,0.0,3.0,1.0,2.0,1.3,1129.2167075957004,0.0,400.0,0.0,0.0,26572.0,0,1,3,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,538.3719060502248,0.024602649494953305,0.020260872574522984,20440.0,5,3,5,5_0,5_4,5_0_0 +9657,2,61.0,2,0.0,7,112,5,0,75,7.0,0.0,277.585263912688,1076.7438121004495,70.77287768172891,0.0,20307.04,0,60,1,692,201709657,,,120.0,,0.0,1.0,4.0,0.0,1.0,1.0,2600.711449401863,0.0,800.0,0.0,0.0,26447.0,0,5,1,100.0,9,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1425.1019536948666,0.07017772918627563,0.053885202620140904,26447.0,7,4,7,7_1,7_1,7_0_0 +9658,2,45.0,3,0.0,6,400,5,56,65,1.0,0.0,555.170527825376,1615.1157181506744,106.15931652259337,0.0,38208.32,71,50,1,6920,201709658,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2395.4421443482834,0.0,1200.0,0.0,0.0,22664.0,1,4,2,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2276.445562498644,0.05957983922084625,0.10044323872655507,9853.913043478262,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +9659,2,24.0,3,0.0,2,111,2,55,55,1.0,0.0,0.0,517.7605676611341,0.0,964.835723106986,27669.819041045517,43,31,2,6921,201709659,,,,244.0,2.0,0.0,3.0,0.0,2.0,1.5,4211.629567456738,930.0,0.0,0.0,0.0,13980.0,4,1,3,50.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1482.59629076812,0.05358171257169521,0.10605123682175394,9320.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +9660,2,68.0,2,0.0,1,111,2,0,78,6.0,0.0,0.0,1179.0344742499922,0.0,152.16168701571718,26739.440000000002,0,70,2,6922,201709660,,,60.0,,0.0,0.0,3.0,0.0,1.0,1.0,3745.3380987070964,0.0,876.0,86.0,0.0,21426.0,0,5,1,60.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1331.1961612657094,0.04978399552367998,0.06212994311890738,21426.0,6,3,6,6_0,6_3,6_1_0 +9661,2,74.0,2,0.0,6,112,4,77,74,7.0,0.0,489.9379908058943,2057.9266108769843,215.85727692927318,0.0,26470.7,44,41,1,6923,201709661,,,,,0.0,2.0,7.0,0.0,2.0,1.5,1422.7602273719026,0.0,1529.0,0.0,0.0,35627.0,6,5,1,227.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2763.721878612152,0.10440683014095403,0.07757380297561266,23751.333333333332,6,3,6,6_1,6_0,6_0_0 +9662,2,52.0,2,0.0,5,111,2,48,38,10.0,0.0,555.170527825376,3148.1297206286895,318.4779495677801,0.0,64129.78269858561,42,31,1,6924,201709662,,,435.0,,3.0,1.0,6.0,1.0,3.0,2.0,1728.8728108665655,0.0,2339.0,0.0,0.0,88105.0,1,1,1,110.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4021.778198021846,0.0627131112688231,0.04564755913991086,44052.5,10,5,10,10_1,10_3,10_0_0 +9664,2,52.0,3,0.0,4,211,2,67,85,5.0,2958.7404570440153,0.0,1669.0771558353317,0.0,311.2373300345116,44361.32031599412,50,71,1,6926,201709664,,,,,2.0,1.0,3.0,1.0,3.0,2.0,1786.0484680535365,300.0,1116.0,0.0,0.0,38492.0,1,5,1,70.0,2,3.0,4,4,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4939.054942913859,0.111336968957011,0.1283138039830058,19246.0,5,3,5,5_1,5_1,5_0_1 +9665,1,51.0,4,333.0,2,111,1,0,68,1.0,0.0,0.0,126.51739792180283,0.0,0.0,23566.499999999996,0,71,2,6927,201709665,,,,,1.0,0.0,4.0,2.0,3.0,1.8,814.805059252312,0.0,94.0,0.0,0.0,18036.0,0,1,3,68.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,126.51739792180283,0.005368527270566391,0.007014714899190665,10020.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +9666,2,40.0,2,0.0,4,112,2,42,37,10.0,0.0,208.188947934516,767.1799661215703,0.0,6581.8776244007895,62734.35999999999,30,31,1,6928,201709666,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2704.253692418186,0.0,570.0,3720.0,0.0,104330.0,1,1,2,120.0,10,2.0,4,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,7557.246538456876,0.12046423265427235,0.07243598714134837,49680.95238095238,10,5,10,10_1,10_1,10_0_1 +9667,1,40.0,3,240.0,7,112,2,0,68,4.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,9324.050875301627,0,71,1,6929,201709667,,,400.0,,1.0,0.0,4.0,3.0,4.0,2.5,301.9952987510888,1200.0,0.0,0.0,0.0,41440.0,0,1,3,80.0,5,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1913.0274719588647,0.2051712820471906,0.0461637903464977,16576.0,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +9668,2,55.0,4,0.0,99,400,2,0,55,1.0,0.0,0.0,1615.1157181506744,0.0,0.0,19807.739999999998,0,50,2,6930,201709668,,,,354.0,2.0,0.0,3.0,2.0,3.0,2.0,1521.2839294205262,0.0,1200.0,0.0,0.0,20950.0,0,1,3,80.0,0,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1615.1157181506744,0.08153962633549686,0.0770938290286718,10475.0,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +9669,2,64.0,3,0.0,6,112,2,0,78,5.0,1196.1878308907171,0.0,672.964882562781,169.8549064361494,0.0,10584.205846751302,0,50,1,6931,201709669,,,133.0,,0.0,1.0,4.0,0.0,1.0,1.0,1517.6271769743478,0.0,500.0,0.0,0.0,21265.0,0,5,1,95.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2039.0076198896475,0.19264625512886233,0.09588561579542193,21265.0,6,3,6,6_1,6_0,6_0_0 +9670,2,63.0,2,0.0,1,400,2,0,31,10.0,0.0,0.0,969.0694308904046,0.0,414.02133443811414,44026.416658454036,0,20,1,6936,201709670,,,,,1.0,3.0,10.0,0.0,1.0,1.0,2235.804390802601,0.0,720.0,234.0,0.0,67855.0,0,1,1,400.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1383.0907653285187,0.03141502012435379,0.020383033900648717,67855.0,10,5,10,10_1,10_0,10_1_0 +9671,2,33.0,2,0.0,99,112,6,85,63,4.0,812.2654766791077,0.0,637.9707086695164,0.0,0.0,34215.20712768311,0,43,1,6937,201709671,,,300.0,,1.0,0.0,4.0,1.0,3.0,1.8,3055.6235628255854,0.0,474.0,0.0,0.0,28219.0,4,1,3,80.0,9,0.0,4,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1450.236185348624,0.04238571989164594,0.051392189140246784,15677.222222222223,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9672,2,72.0,3,0.0,5,112,2,78,75,7.0,0.0,0.0,3324.446519860138,70.77287768172891,0.0,41303.899999999994,71,44,1,6938,201709672,,,220.0,,0.0,2.0,5.0,0.0,2.0,1.5,1313.2457188090577,0.0,2470.0,0.0,0.0,35761.0,5,5,1,100.0,8,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3395.219397541867,0.08220093980330834,0.09494195904873652,23840.666666666668,6,3,6,6_1,6_1,6_0_0 +9673,2,55.0,1,0.0,1,111,2,37,37,10.0,0.0,0.0,2018.894647688343,0.0,0.0,82585.3,12,12,2,694,201709673,,,,,2.0,1.0,5.0,2.0,4.0,2.3,2591.868557275208,0.0,1500.0,0.0,0.0,141480.0,1,1,2,98.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2018.894647688343,0.024446174412254273,0.014269823633646756,61513.04347826087,10,5,10,10_0,10_4,10_1_0 +9674,2,36.0,3,0.0,4,111,6,46,46,7.0,0.0,0.0,1830.4644805707642,141.54575536345783,0.0,25786.18,30,44,1,6940,201709674,,,340.0,,2.0,0.0,5.0,1.0,3.0,1.8,3430.739106679102,0.0,1360.0,0.0,0.0,42996.0,1,1,2,100.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1972.010235934222,0.07647547003605117,0.04586496967006749,23886.666666666668,6,3,6,6_1,6_3,6_0_1 +9675,2,64.0,3,0.0,6,211,2,0,77,2.0,0.0,0.0,370.1306854095295,0.0,743.1152156581536,11031.701033505027,0,70,2,6941,201709675,,,173.0,274.0,0.0,3.0,2.0,0.0,1.0,1.0,3500.6102836891905,0.0,275.0,420.0,0.0,12979.0,0,5,3,47.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1113.245901067683,0.1009133494178802,0.08577285623450828,12979.0,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +9676,2,34.0,1,0.0,9,111,2,55,22,9.0,0.0,69.396315978172,2441.5165939377694,0.0,2632.7510497603157,74675.06553340824,44,50,1,6943,201709676,,,832.0,,2.0,0.0,5.0,2.0,4.0,2.1,3737.2745152532966,0.0,1814.0,1488.0,0.0,79662.0,1,1,2,160.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5143.663959676257,0.06888060857978193,0.06456860183872182,37934.28571428571,9,5,9,9_1,9_3,9_0_0 +9677,2,32.0,3,0.0,9,111,2,55,22,4.0,0.0,0.0,1305.5518721717951,0.0,0.0,48998.59119129575,43,20,1,6946,201709677,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3685.4028479073986,0.0,970.0,0.0,0.0,30178.0,1,1,3,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1305.5518721717951,0.026644681825132088,0.04326170959546011,16765.555555555555,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9678,2,57.0,2,0.0,6,111,2,62,45,8.0,0.0,0.0,484.5347154452023,0.0,1326.9914565324173,19423.1,60,41,1,6947,201709678,,,200.0,,2.0,2.0,5.0,0.0,2.0,1.5,739.2998188761431,0.0,360.0,750.0,0.0,43527.0,1,1,1,100.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1811.5261719776195,0.09326658319102613,0.04161844767564085,29018.0,8,4,8,8_1,8_1,8_0_0 +9679,2,34.0,3,0.0,9,111,2,46,48,7.0,0.0,0.0,2325.766634136971,0.0,0.0,55610.899999999994,31,41,2,6948,201709679,,,,,2.0,0.0,4.0,3.0,5.0,2.4,1129.176185421246,0.0,1728.0,0.0,0.0,61389.0,1,1,2,75.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2325.766634136971,0.04182213620238067,0.037885722753864225,25578.75,7,4,7,7_0,7_4,7_0_0 +9680,2,51.0,3,0.0,5,111,1,54,48,7.0,0.0,0.0,341.9199975324978,0.0,1751.6287226227907,34971.4458467513,50,50,1,6949,201709680,,,,,4.0,0.0,4.0,2.0,4.0,2.5,1626.2915009632295,0.0,254.04000000000002,990.0,0.0,63780.0,1,1,1,88.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2093.5487201552887,0.05986451716435883,0.03282453308490575,25512.0,7,4,7,7_1,7_3,7_0_0 +9681,2,46.0,2,0.0,7,111,2,0,47,6.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,53757.4,0,31,1,695,201709681,,,310.0,,1.0,0.0,6.0,3.0,4.0,2.3,693.9303250310264,1440.0,0.0,0.0,0.0,48572.0,0,1,2,160.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2295.6329663506376,0.04270357134739845,0.04726247563103512,21118.26086956522,5,3,5,5_1,5_2,5_0_0 +9682,2,72.0,4,0.0,1,221,4,0,77,5.0,0.0,367.80047468431155,1628.57501580193,70.77287768172891,0.0,20408.64,0,50,1,6950,201709682,,,192.0,,0.0,2.0,5.0,0.0,1.0,1.0,1868.462381450083,0.0,1210.0,0.0,0.0,19526.0,0,5,1,71.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2067.1483681679706,0.10128790395479417,0.10586645335286135,19526.0,5,3,5,5_1,5_2,5_1_0 +9683,2,84.0,3,0.0,6,300,4,0,77,1.0,0.0,0.0,2018.894647688343,0.0,0.0,12158.279999999999,0,71,1,6951,201709683,,,270.0,,0.0,0.0,4.0,0.0,1.0,1.0,2918.7413842041387,0.0,1500.0,0.0,0.0,9510.0,0,5,1,90.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.16605100784719082,0.21229176106081418,9510.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +9684,1,44.0,4,83.0,1,111,1,0,21,1.0,0.0,0.0,1480.522741638118,0.0,0.0,21189.000315994115,0,33,2,6953,201709684,,,,392.0,1.0,0.0,3.0,2.0,3.0,1.8,1119.487214327565,0.0,1100.0,0.0,0.0,8636.0,0,1,3,90.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1480.522741638118,0.06987223179757912,0.17143616739672513,4797.777777777777,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +9685,2,59.0,2,0.0,6,111,6,56,53,9.0,0.0,0.0,1211.3367886130059,56.61830214538313,0.0,39303.60256880423,50,60,1,6954,201709685,,,480.0,,2.0,3.0,5.0,0.0,2.0,1.5,1139.7709582944017,0.0,900.0,0.0,0.0,49176.0,1,1,1,110.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1267.955090758389,0.032260531042637326,0.025784022506067775,32784.0,9,5,9,9_1,9_3,9_0_0 +9686,2,46.0,3,0.0,8,112,5,0,56,2.0,0.0,416.377895869032,995.9880261929159,226.47320858153253,0.0,31288.620315994118,0,50,1,6955,201709686,,,,,1.0,0.0,4.0,2.0,3.0,2.0,817.6768142105068,0.0,740.0,0.0,0.0,26569.0,0,1,2,90.0,8,2.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1638.8391306434805,0.052378120674299554,0.06168237911263053,13284.5,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +9687,1,39.0,3,329.0,5,111,1,85,68,1.0,0.0,0.0,444.15682249143543,65.46491185559925,0.0,22264.231191295745,31,50,8,6956,201709687,,,,191.0,1.0,0.0,3.0,0.0,2.0,1.5,2054.5865655327407,0.0,330.0,0.0,0.0,11058.0,6,1,3,73.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,509.6217343470347,0.022889707260418342,0.046086248358386206,7372.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9688,2,49.0,2,0.0,7,111,2,0,37,10.0,0.0,0.0,2422.6735772260117,0.0,0.0,24349.720513464174,0,30,2,6958,201709688,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2436.158078892215,0.0,1800.0,0.0,0.0,43540.0,0,1,1,34.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2422.6735772260117,0.09949492339702194,0.05564247995466265,43540.0,10,5,10,10_0,10_4,10_0_0 +9689,2,64.0,1,0.0,4,300,2,77,75,8.0,618.717843564164,0.0,1137.3106515311,116.7752481748527,0.0,29474.26,50,33,1,6959,201709689,,,304.0,,0.0,2.0,3.0,0.0,2.0,1.5,2137.791376643265,0.0,845.0,0.0,0.0,41549.0,5,5,1,80.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1872.8037432701167,0.06354031426981091,0.045074580453684,27699.333333333332,8,4,8,8_1,8_0,8_0_1 +9690,2,45.0,3,0.0,1,112,2,0,35,3.0,951.8736054833294,0.0,1615.1157181506744,56.61830214538313,0.0,46527.95087530163,0,41,1,696,201709690,,,580.0,,1.0,0.0,5.0,2.0,3.0,1.6,1708.8712480156923,0.0,1200.0,0.0,0.0,24160.0,0,1,2,90.0,8,3.0,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2623.607625779387,0.05638777501314964,0.1085930308683521,15100.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +9691,2,46.0,5,0.0,5,111,4,63,43,6.0,0.0,0.0,2691.859530251124,0.0,0.0,58519.01999999999,50,30,1,6962,201709691,,,381.0,,2.0,5.0,8.0,0.0,2.0,1.5,2314.847308037229,0.0,2000.0,0.0,0.0,33293.0,1,1,2,149.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2691.859530251124,0.04599973701287418,0.0808536187862651,22195.333333333332,6,3,6,6_1,6_2,6_0_0 +9692,1,52.0,3,99.0,2,112,4,0,65,3.0,0.0,0.0,1388.99951760958,0.0,0.0,15259.88,0,71,2,6964,201709692,,,,,1.0,3.0,1.0,0.0,1.0,1.0,2028.745894120418,0.0,1032.0,0.0,0.0,15668.0,0,1,3,20.0,10,3.0,1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1388.99951760958,0.09102296463730908,0.08865199882624329,15668.0,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +9693,2,56.0,2,0.0,7,112,2,75,62,8.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,40503.48,41,50,1,6965,201709693,,,450.0,,1.0,5.0,7.0,0.0,2.0,1.5,1497.0626528584673,1700.0,0.0,0.0,0.0,51041.0,5,1,1,160.0,9,2.0,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2710.1222519417247,0.06691084943668357,0.05309696620249848,34027.333333333336,9,5,9,9_1,9_1,9_0_0 +9694,2,69.0,3,0.0,9,111,4,34,31,9.0,0.0,0.0,2961.045483276236,0.0,0.0,47989.951191295746,44,12,1,6966,201709694,,,,,2.0,3.0,5.0,0.0,2.0,1.5,2198.1225215872896,0.0,2200.0,0.0,0.0,55070.0,5,5,1,170.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2961.045483276236,0.0617013647601563,0.053768757640752424,36713.333333333336,9,5,9,9_1,9_3,9_0_0 +9695,2,78.0,3,0.0,1,111,1,0,35,10.0,0.0,0.0,1923.4315743860332,0.0,2581.0290124676408,70028.79322817101,0,60,2,6967,201709695,,,,2968.0,1.0,0.0,5.0,0.0,1.0,1.0,3153.8060357005456,2487.8400789983416,400.0,0.0,0.0,67756.0,0,1,3,170.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,4504.460586853674,0.06432297886637907,0.06648061554480303,67756.0,10,5,10,10_0,10_4,10_1_0 +9696,2,47.0,3,0.0,9,111,4,0,54,8.0,0.0,0.0,3714.766151746551,0.0,0.0,39445.08,0,43,2,6968,201709696,,,920.0,,1.0,1.0,4.0,1.0,2.0,1.5,783.7450982643284,0.0,2760.0,0.0,0.0,42364.0,0,1,2,92.0,8,6.0,2,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,3714.766151746551,0.09417565262249565,0.08768686034714736,28242.666666666668,8,4,8,8_0,8_2,8_0_0 +9697,1,59.0,4,296.0,5,112,1,67,74,3.0,0.0,0.0,710.6509159862967,0.0,0.0,16401.14,71,50,2,6969,201709697,,,,,1.0,2.0,3.0,0.0,2.0,1.5,2160.311762199346,0.0,528.0,0.0,0.0,20240.0,4,7,3,70.0,9,3.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,710.6509159862967,0.04332936100699687,0.03511121126414509,13493.333333333334,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +9698,2,43.0,3,0.0,2,211,2,52,37,5.0,0.0,0.0,1232.6041901094095,0.0,2296.9314956546955,29296.600000000002,20,30,1,6970,201709698,,,,,2.0,0.0,5.0,2.0,4.0,2.3,1022.077687704827,2214.0,0.0,0.0,0.0,46136.0,1,1,2,140.0,4,3.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3529.535685764105,0.1204759489416555,0.07650285429521643,20059.13043478261,5,3,5,5_1,5_1,5_0_1 +9699,2,78.0,3,0.0,6,300,4,77,74,9.0,0.0,0.0,3419.9051801317746,0.0,767.2913178350806,53539.745219446726,60,50,1,6971,201709699,,,270.0,,0.0,2.0,4.0,0.0,2.0,1.5,2038.015948779636,739.5880029076197,2235.0,0.0,0.0,43972.0,5,5,1,120.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4187.1964979668555,0.07820725483105176,0.09522415396085818,29314.666666666668,8,4,8,8_1,8_0,8_0_0 +9700,2,43.0,3,0.0,5,111,2,35,31,9.0,0.0,0.0,50.10586138656136,0.0,93.37119901035348,66739.47,20,30,1,6972,201709700,,,147.0,,2.0,0.0,5.0,3.0,5.0,2.6,2775.7112860362145,90.0,0.0,0.0,0.0,80532.0,1,1,2,105.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,143.47706039691485,0.002149808207900285,0.001781615511807913,30973.846153846152,8,4,8,8_1,8_4,8_0_0 +9701,2,64.0,3,0.0,1,300,2,77,72,5.0,1903.7472109666587,0.0,1459.5523546412544,120.31389205893916,688.2744033247043,49313.93819417894,60,50,1,6975,201709701,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1697.170630205101,663.4240210662244,810.0,0.0,0.0,27227.0,5,5,1,132.0,0,0.0,3,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4171.887860991556,0.08459855395373816,0.15322613071552343,18151.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9702,2,69.0,3,0.0,6,120,4,42,75,6.0,0.0,0.0,1655.4936111044412,148.62304313163074,0.0,25614.460000000003,71,31,1,6976,201709702,,,150.0,,1.0,3.0,5.0,0.0,2.0,1.5,1826.010524474313,0.0,1230.0,0.0,0.0,31621.0,5,5,2,125.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1804.116654236072,0.07043352287091244,0.05705438329705171,21080.666666666668,5,3,5,5_1,5_0,5_0_0 +9703,2,47.0,2,0.0,9,112,5,46,47,7.0,0.0,0.0,2422.6735772260117,0.0,0.0,30441.56,42,43,1,6977,201709703,,,207.0,,2.0,1.0,4.0,2.0,4.0,2.1,2438.922459543044,0.0,1800.0,0.0,0.0,52099.0,1,1,2,120.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2422.6735772260117,0.07958440951206218,0.04650134507813992,24809.04761904762,7,4,7,7_1,7_0,7_0_0 +9704,2,79.0,4,0.0,1,300,5,0,71,4.0,0.0,138.792631956344,1179.0344742499922,145.08439924754427,0.0,14435.94,0,71,1,6978,201709704,,,,,0.0,2.0,5.0,1.0,2.0,1.5,2773.049297612746,0.0,876.0,0.0,0.0,26225.0,0,5,1,100.0,0,0.0,2,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1462.9115054538804,0.10133815362587267,0.055783088863827664,17483.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9705,2,36.0,3,0.0,7,111,4,0,22,6.0,0.0,0.0,7456.450898795613,0.0,0.0,28016.059999999998,0,71,2,6979,201709705,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4125.908940371881,0.0,5540.0,0.0,0.0,24094.0,0,1,2,44.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,7456.450898795613,0.2661491622589191,0.309473350161684,24094.0,7,4,7,7_0,7_2,7_0_0 +9706,2,31.0,4,0.0,6,112,6,46,53,5.0,0.0,0.0,2018.894647688343,106.15931652259337,0.0,27764.07087530163,60,60,1,698,201709706,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,5953.459932558531,0.0,1500.0,0.0,0.0,38030.0,4,1,2,80.0,7,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2125.053964210936,0.0765397111164034,0.05587835824903855,18109.52380952381,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9707,2,72.0,2,0.0,6,111,2,75,75,9.0,0.0,524.6361487949803,1803.7033309164735,53.079658261296686,602.2401029091162,52771.6878734932,50,33,1,6980,201709707,,,647.0,,0.0,1.0,6.0,0.0,2.0,1.5,1952.0759108658538,580.4960184329464,1100.0,0.0,0.0,47817.0,5,5,1,118.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2983.6592408818665,0.05653901478448891,0.06239745782633512,31878.0,9,5,9,9_1,9_3,9_0_0 +9708,2,65.0,1,0.0,6,111,4,75,74,9.0,0.0,374.7401062821288,3176.6304141686574,0.0,903.3601543636743,46461.59262985986,44,31,1,6982,201709708,,,250.0,,0.0,3.0,6.0,0.0,2.0,1.5,1681.9087828329095,870.7440276494195,2000.0,0.0,0.0,57061.0,5,5,1,120.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4454.73067481446,0.09587985307140551,0.07806962154211212,38040.666666666664,9,5,9,9_1,9_3,9_0_0 +9709,2,32.0,4,0.0,9,111,4,65,52,4.0,0.0,0.0,1884.3016711757866,138.0071114793714,0.0,80207.31999999998,50,41,1,6984,201709709,,,450.0,,2.0,0.0,4.0,4.0,6.0,2.7,1659.7220423146634,0.0,1400.0,0.0,0.0,43947.0,1,1,3,85.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2022.308782655158,0.02521351894883358,0.04601699280167379,16276.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +9710,2,48.0,2,0.0,4,112,4,42,38,9.0,0.0,0.0,1709.3308017094637,132.69914565324171,0.0,41921.50238259149,30,12,1,6985,201709710,,,800.0,,2.0,0.0,5.0,2.0,4.0,2.1,2042.4573687954348,0.0,1270.0,0.0,0.0,73376.0,1,1,1,120.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1842.0299473627053,0.043939979310656456,0.025103984236844547,34940.95238095238,9,5,9,9_1,9_0,9_0_1 +9711,2,75.0,2,0.0,5,112,2,75,45,8.0,0.0,0.0,825.0549460219695,0.0,3149.393056836937,39663.119999999995,60,70,1,6986,201709711,,,385.0,,1.0,3.0,5.0,0.0,2.0,1.5,2161.4336193413988,0.0,613.0,1780.0,0.0,47686.0,5,5,1,120.0,10,2.0,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3974.4480028589064,0.10020512765659653,0.08334622327011924,31790.666666666668,8,4,8,8_1,8_1,8_0_0 +9712,2,47.0,2,0.0,5,111,1,0,47,4.0,0.0,0.0,807.5578590753372,0.0,0.0,27412.360315994112,0,30,2,6987,201709712,,,,,1.0,2.0,3.0,0.0,1.0,1.0,4184.529593214284,0.0,600.0,0.0,0.0,18194.0,0,1,1,65.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,807.5578590753372,0.029459625138669895,0.04438594366688673,18194.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +9713,2,21.0,3,0.0,4,300,2,65,43,6.0,0.0,0.0,807.5578590753372,4246.372660903735,0.0,60421.28,50,44,1,6988,201709713,,,,,2.0,0.0,4.0,0.0,2.0,1.5,2641.103802601873,0.0,600.0,0.0,0.0,31200.0,1,1,2,114.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,5053.930519979072,0.08364487677154593,0.16198495256343182,20800.0,5,3,5,5_1,5_0,5_0_1 +9714,2,45.0,3,0.0,6,111,2,53,42,8.0,0.0,0.0,538.3719060502248,0.0,2229.345646974461,35086.520000000004,42,20,2,6989,201709714,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3563.387463193845,0.0,400.0,1260.0,0.0,58176.0,4,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2767.717553024686,0.07888264647005988,0.04757490293290508,27702.85714285714,8,4,8,8_0,8_4,8_0_0 +9715,2,68.0,3,0.0,9,112,4,72,21,5.0,0.0,0.0,3364.824412813905,0.0,0.0,27015.08,70,44,1,699,201709715,,,150.0,,1.0,3.0,7.0,0.0,2.0,1.5,1757.6737320293585,0.0,2500.0,0.0,0.0,30851.0,5,5,1,250.0,8,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3364.824412813905,0.12455356093018806,0.10906694800213623,20567.333333333332,5,3,5,5_1,5_1,5_0_0 +9716,2,45.0,3,0.0,5,111,1,0,55,4.0,0.0,0.0,188.43016711757866,0.0,230.01185246561897,15602.1,0,31,2,6990,201709716,,,,,1.0,0.0,1.0,0.0,1.0,1.0,2415.630583638249,0.0,140.0,130.0,0.0,18472.0,0,1,1,35.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,418.44201958319763,0.026819596053300365,0.022652772822823606,18472.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +9717,2,38.0,2,0.0,5,111,2,63,55,5.0,0.0,0.0,1080.0596787769894,0.0,2012.6680675565083,54019.86,31,43,1,6993,201709717,,,370.0,,2.0,2.0,5.0,3.0,5.0,2.6,870.736155697816,1940.0,0.0,0.0,0.0,52560.0,1,1,2,115.0,4,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3092.7277463334976,0.05725168014751422,0.05884185209919136,20215.384615384613,5,3,5,5_1,5_1,5_0_0 +9718,1,38.0,3,216.0,99,111,2,0,64,2.0,0.0,0.0,629.895130078763,0.0,1558.7726309400794,26923.02,0,50,1,6995,201709718,,,286.0,288.0,1.0,0.0,4.0,2.0,3.0,1.8,596.0859895408795,0.0,468.0,881.0,0.0,24110.0,0,1,3,75.0,7,5.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2188.6677610188426,0.08129354585848254,0.09077842227369733,13394.444444444443,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +9719,2,51.0,2,0.0,1,300,2,47,63,9.0,2538.3296146222115,0.0,1415.9181129120911,169.8549064361494,0.0,23234.039999999997,50,50,1,6996,201709719,,,305.0,,2.0,2.0,5.0,0.0,2.0,1.5,1563.1043769320686,0.0,1052.0,0.0,0.0,49258.0,1,1,1,100.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4124.102633970452,0.17750260540011348,0.0837245246248417,32838.666666666664,9,5,9,9_1,9_0,9_1_0 +9720,1,25.0,1,177.0,2,111,4,0,84,1.0,0.0,0.0,672.964882562781,0.0,0.0,10483.416855924086,0,30,2,7,201709720,,,,178.0,0.0,0.0,2.0,0.0,1.0,1.0,4365.148639364243,0.0,500.0,0.0,0.0,3693.0,0,3,3,40.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,672.964882562781,0.06419327704044264,0.18222715476923396,3693.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9721,2,28.0,3,0.0,1,112,5,42,42,9.0,0.0,971.5484236944079,1076.7438121004495,0.0,0.0,50899.8,42,41,1,7001,201709721,,,160.0,,2.0,0.0,5.0,2.0,4.0,2.1,3142.982561454583,0.0,800.0,0.0,0.0,63601.0,1,1,2,110.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2048.2922357948573,0.04024165587673934,0.03220534639069916,30286.190476190473,8,4,8,8_1,8_0,8_1_0 +9722,2,23.0,1,0.0,99,111,1,0,42,1.0,0.0,0.0,169.5871504058208,0.0,0.0,7504.3980029847435,0,20,2,7002,201709722,,,,350.0,1.0,0.0,1.0,0.0,1.0,1.0,2804.5908247336265,0.0,126.0,0.0,0.0,7892.0,0,2,3,25.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,169.5871504058208,0.02259836836190864,0.02148848839404724,7892.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +9723,1,60.0,5,216.0,5,111,2,0,78,3.0,0.0,0.0,33.403907591040905,0.0,62.24746600690232,1656.28,0,70,2,7003,201709723,,,,,0.0,7.0,2.0,0.0,1.0,1.0,2131.6998325264312,60.0,0.0,0.0,0.0,13617.0,0,7,3,50.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,95.65137359794323,0.05775072668748233,0.007024408724237588,13617.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9724,1,43.0,3,186.0,9,300,4,0,46,4.0,0.0,0.0,1749.7086946632305,286.6301546110021,0.0,37702.18,0,42,1,7006,201709724,,,380.0,272.0,1.0,0.0,4.0,3.0,4.0,2.1,447.84584969006136,0.0,1300.0,0.0,0.0,35762.0,0,1,3,103.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2036.3388492742326,0.0540111698918798,0.05694141405050704,17029.52380952381,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +9725,1,35.0,2,95.0,1,111,4,68,67,5.0,0.0,0.0,2530.3479584360566,155.70033089980362,0.0,26037.22,60,71,1,7007,201709725,,,400.0,,2.0,0.0,3.0,1.0,3.0,1.8,1297.5539092122258,0.0,1880.0,0.0,0.0,33570.0,1,1,3,50.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,2686.0482893358603,0.10316186940602184,0.08001335386761574,18650.0,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +9726,1,59.0,3,203.0,1,111,2,56,63,2.0,0.0,0.0,441.4649629611843,0.0,1146.5206184440085,44457.64,41,41,2,7008,201709726,,,,650.0,2.0,0.0,5.0,2.0,4.0,2.3,1589.0428972115496,0.0,328.0,648.0,0.0,27691.0,1,1,3,140.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1587.9855814051928,0.035719070589558796,0.057346631808356245,12039.565217391306,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +9727,1,24.0,1,71.0,99,111,2,0,55,1.0,0.0,0.0,44.41568224914354,0.0,0.0,15669.300000000001,0,41,2,7009,201709727,,,,379.0,1.0,0.0,1.0,1.0,2.0,1.3,2605.4354068611347,0.0,33.0,0.0,0.0,2683.0,0,1,3,22.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,44.41568224914354,0.0028345670993052364,0.01655448462510009,2063.846153846154,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9728,2,56.0,2,0.0,7,111,4,43,31,10.0,0.0,346.98157989085996,5725.817453175267,0.0,888.3041517909464,54521.695419362186,33,10,1,701,201709728,,,,,2.0,4.0,7.0,1.0,3.0,2.0,1419.8311577529741,856.2316271885959,3900.0,0.0,0.0,102701.0,1,1,2,120.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,6961.103184857073,0.1276758386054332,0.06778028631519725,51350.5,10,5,10,10_1,10_2,10_0_0 +9729,2,36.0,2,0.0,1,221,2,46,23,10.0,0.0,0.0,2907.2082926712137,0.0,0.0,52340.26,31,20,1,7010,201709729,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.1,2699.5634893139554,0.0,2160.0,0.0,0.0,85331.0,1,1,2,120.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2907.2082926712137,0.055544399142671695,0.03406977877525417,40633.80952380952,10,5,10,10_1,10_1,10_1_0 +9730,2,76.0,2,0.0,5,111,2,0,77,7.0,0.0,0.0,532.9881869897225,0.0,1334.06874430059,13852.24449357506,0,70,2,7011,201709730,,,,333.0,0.0,3.0,4.0,0.0,1.0,1.0,3416.2589120212783,0.0,396.0,754.0,0.0,24950.0,0,5,3,76.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1867.0569312903126,0.13478371192165212,0.07483194113388027,24950.0,7,4,7,7_0,7_2,7_0_0 +9731,1,39.0,4,379.0,5,111,1,0,54,1.0,0.0,0.0,403.7789295376686,0.0,0.0,21881.760000000002,0,71,2,7012,201709731,,,,188.0,1.0,0.0,3.0,1.0,2.0,1.3,853.071056771178,0.0,300.0,0.0,0.0,11834.0,0,4,3,60.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,403.7789295376686,0.01845276291932955,0.03412024079243439,9103.076923076922,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9732,1,63.0,2,0.0,4,111,1,0,86,7.0,1189.8420068541616,0.0,538.3180688596198,0.0,406.94404666994126,28336.324361131377,0,20,8,7016,201709732,750.0,750.0,,341.0,1.0,0.0,4.0,1.0,2.0,1.5,1681.9167732944295,0.0,399.96,230.0,0.0,36643.0,0,5,3,75.0,9,7.0,2,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2135.1041223837224,0.07534866185087932,0.05826772159440336,24428.666666666668,7,4,7,7_0,7_3,7_0_1 +9733,2,56.0,2,0.0,4,111,6,37,33,10.0,0.0,0.0,2406.5224200445045,56.61830214538313,0.0,43825.470737753385,60,41,1,7018,201709733,,,263.0,,2.0,3.0,6.0,0.0,2.0,1.5,1895.543387746818,0.0,1788.0,0.0,0.0,65137.0,1,1,2,150.0,7,5.0,3,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2463.1407221898876,0.056203405935535536,0.037814770747653215,43424.666666666664,10,5,10,10_1,10_2,10_0_1 +9734,2,51.0,2,0.0,6,111,2,43,37,7.0,0.0,0.0,3095.6384597887923,0.0,1265.0651885609043,73244.23256880423,31,31,1,7019,201709734,,,,,2.0,0.0,5.0,3.0,5.0,3.0,452.0417721962555,0.0,2300.0,715.0,0.0,93392.0,1,1,1,90.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4360.703648349697,0.05953647810089805,0.046692475247876654,31130.666666666668,8,4,8,8_1,8_3,8_0_0 +9735,1,35.0,3,40.0,4,111,1,0,67,3.0,0.0,0.0,807.5578590753372,0.0,707.7287768172891,11182.011191295747,0,50,2,7020,201709735,,,,,1.0,1.0,3.0,0.0,1.0,1.0,1381.4887629062532,0.0,600.0,400.0,0.0,15481.0,0,1,3,60.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1515.2866358926262,0.1355110999237909,0.09788041056085693,15481.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +9736,2,60.0,3,0.0,99,111,1,78,68,4.0,0.0,0.0,250.34293631335453,0.0,0.0,18216.719999999998,71,71,2,7021,201709736,,,,378.0,1.0,0.0,2.0,0.0,2.0,1.5,2315.7504274188195,0.0,186.0,0.0,0.0,26665.0,5,1,3,51.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,250.34293631335453,0.0137424814298817,0.0093884468896814,17776.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +9737,1,33.0,3,144.0,9,211,2,0,46,3.0,0.0,0.0,928.6915379366377,70.77287768172891,0.0,22577.841349499144,0,30,1,7022,201709737,,,330.0,321.0,1.0,0.0,3.0,2.0,3.0,1.6,648.8571044035776,0.0,690.0,0.0,0.0,24751.0,0,1,3,59.0,2,3.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,999.4644156183666,0.04426749219054718,0.04038076908481947,15469.375,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +9738,2,73.0,3,0.0,7,111,2,0,72,4.0,0.0,0.0,222.69271727360606,0.0,414.9831067126821,16788.86,0,41,2,7023,201709738,,,,416.0,0.0,2.0,3.0,0.0,1.0,1.0,2170.602405559652,400.0,0.0,0.0,0.0,17895.0,0,5,3,65.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,637.6758239862882,0.03798208002129318,0.035634301424212804,17895.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +9739,1,24.0,3,113.0,9,300,4,0,69,4.0,0.0,0.0,541.0637655804759,53.079658261296686,0.0,21234.571191295745,0,50,1,7025,201709739,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4166.004908253946,0.0,402.0,0.0,0.0,16519.0,0,1,3,75.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,594.1434238417726,0.02798000574107744,0.0359672754913598,16519.0,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +9740,2,54.0,1,0.0,4,111,1,52,63,9.0,0.0,0.0,471.07541779394666,0.0,0.0,82240.07999999999,60,71,2,7026,201709740,,,,,2.0,1.0,3.0,0.0,2.0,1.5,2034.4243299226862,0.0,350.0,0.0,0.0,51212.0,1,1,1,75.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,471.07541779394666,0.005728051550946287,0.009198535846948892,34141.333333333336,9,5,9,9_0,9_3,9_0_1 +9741,2,58.0,3,0.0,1,112,2,0,54,6.0,0.0,0.0,896.3892235736242,4954.101437721024,0.0,32244.64,0,50,1,703,201709741,,,178.0,,2.0,2.0,6.0,1.0,2.0,1.5,1849.125284705217,0.0,666.0,0.0,0.0,31416.0,0,1,1,240.0,8,3.0,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,5850.490661294648,0.1814407188696989,0.18622646617311714,20944.0,5,3,5,5_1,5_1,5_1_0 +9742,2,58.0,1,0.0,1,111,2,77,33,10.0,0.0,0.0,1860.4082257929376,0.0,2516.72135322413,39517.327068071376,60,30,1,7030,201709742,,,,,1.0,2.0,4.0,0.0,2.0,1.5,1704.3977691023772,1552.6690054043802,740.0,512.0,0.0,105249.0,5,1,3,90.0,6,5.0,3,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4377.129579017068,0.11076481897364046,0.04158832463032493,70166.0,10,5,10,10_1,10_2,10_1_0 +9743,2,77.0,3,0.0,99,111,1,0,74,4.0,0.0,0.0,444.15682249143543,0.0,0.0,20675.2658467513,0,31,2,7031,201709743,,,,,0.0,1.0,5.0,0.0,1.0,1.0,4222.300743060539,0.0,330.0,0.0,0.0,17408.0,0,5,1,81.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,444.15682249143543,0.02148252050462634,0.02551452335084073,17408.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +9744,2,55.0,3,0.0,7,112,2,52,52,8.0,0.0,0.0,582.3414556704798,0.0,1085.1808240536636,20065.231693502603,41,50,1,7034,201709744,,,,,2.0,4.0,3.0,0.0,2.0,1.5,1744.5425648969913,1046.0,0.0,0.0,0.0,46740.0,1,1,1,100.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1667.5222797241436,0.08310505979674833,0.03567655711861668,31160.0,8,4,8,8_1,8_0,8_0_0 +9745,1,43.0,4,379.0,2,111,2,0,85,1.0,0.0,0.0,511.45331074771354,0.0,930.6633415147353,8175.160315994117,0,71,2,7035,201709745,,,210.0,,0.0,0.0,3.0,1.0,2.0,1.3,2133.5374728591137,0.0,380.0,526.0,0.0,4549.0,0,4,3,45.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1442.116652262449,0.17640224735911916,0.3170183891541985,3499.230769230769,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9746,2,60.0,3,0.0,8,111,2,52,65,9.0,0.0,0.0,1043.0955679723106,0.0,1498.6156849106098,48815.64,33,44,1,7038,201709746,,,520.0,,3.0,2.0,4.0,1.0,3.0,2.0,2289.7939192526837,0.0,775.0,847.0,0.0,72623.0,1,1,2,96.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2541.7112528829202,0.0520675597591862,0.03499870912635006,36311.5,9,5,9,9_1,9_4,9_0_0 +9747,2,65.0,2,0.0,5,111,4,75,74,10.0,0.0,312.283421901774,1702.6011528838358,0.0,0.0,88121.56031599412,60,44,1,7039,201709747,,,396.0,,0.0,2.0,7.0,0.0,2.0,1.5,2139.341543042562,0.0,1265.0,0.0,0.0,60853.0,5,5,1,120.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2014.8845747856099,0.022864830894510465,0.0331106859938805,40568.666666666664,9,5,9,9_1,9_2,9_0_0 +9748,2,60.0,1,0.0,5,111,2,46,37,10.0,1269.1648073111057,471.89494865156956,1130.581002705472,0.0,0.0,63968.3,41,50,1,704,201709748,,,,,2.0,2.0,6.0,0.0,2.0,1.5,1975.884342626499,0.0,840.0,0.0,0.0,72158.0,1,1,1,235.0,7,5.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2871.640758668147,0.04489162223582848,0.03979656806824118,48105.333333333336,10,5,10,10_1,10_2,10_0_0 +9749,1,42.0,3,325.0,1,300,2,85,52,4.0,1189.8420068541616,0.0,2018.894647688343,0.0,0.0,48345.200631988235,71,50,1,7040,201709749,,,,,1.0,0.0,6.0,5.0,7.0,3.0,1664.5613652210059,0.0,1500.0,0.0,0.0,47910.0,6,1,3,185.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3208.7366545425048,0.06637135874081784,0.0669742570349093,15970.0,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +9750,2,49.0,4,0.0,5,400,2,54,65,5.0,0.0,0.0,2422.6735772260117,247.7050718860512,0.0,24719.106974448143,42,50,1,7041,201709750,,,300.0,,2.0,1.0,4.0,1.0,3.0,1.8,1890.6667577827861,0.0,1800.0,0.0,0.0,33619.0,1,1,1,100.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2670.3786491120627,0.10802892887159728,0.07943063889800597,18677.222222222223,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9751,1,68.0,4,120.0,1,300,2,0,78,3.0,0.0,346.98157989085996,72.37513311392198,0.0,134.86950968162168,8459.220000000001,70,71,1,7042,201709751,,,58.0,,0.0,1.0,5.0,0.0,2.0,1.5,2447.467307396306,130.0,0.0,0.0,0.0,20320.0,8,5,3,93.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,554.2262226864036,0.06551741445268046,0.027274912533779706,13546.666666666666,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +9752,2,79.0,2,0.0,6,400,4,0,78,4.0,0.0,0.0,1534.3599322431405,123.8525359430256,0.0,18423.76,0,70,1,7043,201709752,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2585.756864918838,0.0,1140.0,0.0,0.0,18029.0,0,5,1,96.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1658.212468186166,0.09000402025352948,0.09197473338433446,18029.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9753,2,52.0,2,0.0,3,111,1,0,47,5.0,0.0,0.0,605.6683943065029,0.0,0.0,69241.52,0,60,8,7044,201709753,,,,479.0,2.0,0.0,4.0,2.0,3.0,2.0,2216.115863542023,0.0,450.0,0.0,0.0,44193.0,0,1,3,78.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,605.6683943065029,0.008747185132655997,0.013705075335607516,22096.5,6,3,6,6_0,6_4,6_0_1 +9754,2,41.0,3,0.0,6,112,2,52,67,5.0,0.0,0.0,740.261370819059,0.0,1415.4575536345783,37908.236322376295,60,50,8,7045,201709754,,,350.0,488.0,2.0,0.0,4.0,3.0,5.0,2.6,2349.6830268873828,0.0,550.0,800.0,0.0,49770.0,1,1,3,96.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2155.7189244536376,0.05686676916649826,0.043313621146345946,19142.30769230769,5,3,5,5_0,5_2,5_0_0 +9755,1,39.0,3,353.0,1,221,4,68,63,5.0,0.0,0.0,834.4764543778484,0.0,0.0,8534.880000000001,71,71,2,7046,201709755,,,230.0,,2.0,0.0,2.0,1.0,3.0,1.8,844.3655478841757,0.0,620.0,0.0,0.0,33032.0,1,1,3,40.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,834.4764543778484,0.0977724882339117,0.02526266815142433,18351.11111111111,4,2,4_1,4_0_1,4_1_1,4_1_0_1 +9756,1,66.0,3,357.0,3,111,1,0,77,7.0,0.0,0.0,156.1278527545652,0.0,230.01185246561897,6946.4400000000005,0,31,2,7049,201709756,,,,,1.0,0.0,3.0,1.0,2.0,1.5,4965.9763220304585,0.0,116.0,130.0,0.0,34846.0,0,5,3,66.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,386.13970522018417,0.05558814374272061,0.01108132081788969,23230.666666666668,6,3,6,6_0,6_4,6_0_1 +9757,2,58.0,3,0.0,4,112,2,67,52,8.0,0.0,0.0,874.8543473316153,0.0,1061.5931652259337,31245.129288818116,50,50,1,705,201709757,,,,,3.0,1.0,5.0,1.0,3.0,2.0,2174.9312356763135,0.0,650.0,600.0,0.0,57452.0,1,1,1,165.0,9,1.0,4,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1936.447512557549,0.061975980149026215,0.03370548479700531,28726.0,8,4,8,8_1,8_1,8_0_1 +9758,1,58.0,3,127.0,3,111,1,0,56,4.0,0.0,0.0,188.43016711757866,0.0,1691.471776593321,10673.191191295746,0,50,2,7050,201709758,776.0,776.0,,18.0,1.0,4.0,2.0,0.0,1.0,1.0,2976.603387329227,0.0,140.0,956.0,0.0,16644.0,0,1,3,35.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1879.9019437108996,0.1761330711703175,0.11294772552937392,16644.0,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +9759,1,58.0,3,460.0,7,111,2,0,68,1.0,0.0,0.0,403.7789295376686,0.0,2477.050718860512,16402.68,0,71,2,7053,201709759,,,,40.0,2.0,0.0,4.0,6.0,7.0,3.6,553.4495757457566,0.0,300.0,1400.0,0.0,35065.0,0,4,3,75.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2880.829648398181,0.1756316436337343,0.08215684153424158,9740.277777777777,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9760,2,67.0,2,0.0,7,111,2,77,74,10.0,0.0,0.0,1082.2258319029613,0.0,2016.704647489775,129812.48447265309,44,30,1,7054,201709760,,,,,0.0,6.0,8.0,0.0,2.0,1.5,1952.6136988993742,1943.8908378369833,0.0,0.0,0.0,97409.0,6,5,2,270.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3098.9304793927363,0.023872360905669066,0.03181359504145137,64939.333333333336,10,5,10,10_1,10_3,10_0_0 +9761,1,39.0,4,256.0,6,211,6,0,85,3.0,0.0,0.0,4037.789295376686,0.0,0.0,11422.247196250446,0,31,2,7056,201709761,,,100.0,,0.0,0.0,1.0,0.0,1.0,1.0,2105.4353886276754,0.0,3000.0,0.0,0.0,16590.0,0,4,3,31.0,3,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,4037.789295376686,0.3535021809633188,0.2433869376357255,16590.0,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +9762,2,52.0,3,0.0,1,221,2,56,63,2.0,1586.456009138882,0.0,942.1508355878933,159.23897478389006,0.0,79148.83,43,50,1,7057,201709762,,,500.0,,2.0,0.0,6.0,3.0,5.0,2.6,1911.1489907745304,0.0,700.0,0.0,0.0,30356.0,1,1,1,141.0,1,2.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2687.8458195106655,0.0339593878963298,0.08854413689256375,11675.384615384615,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +9763,2,55.0,4,0.0,1,112,2,52,47,5.0,0.0,277.585263912688,2247.7027077596886,159.23897478389006,0.0,55634.960123215045,50,50,1,7058,201709763,,,400.0,,2.0,2.0,5.0,1.0,3.0,2.0,1691.4093546143083,0.0,1670.0,0.0,0.0,40360.0,1,1,1,112.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2684.5269464562666,0.048252518569454,0.0665145427764189,20180.0,5,3,5,5_1,5_0,5_1_0 +9764,2,31.0,3,0.0,8,112,6,43,43,4.0,1903.7472109666587,69.396315978172,672.964882562781,0.0,0.0,34259.58616274543,33,33,1,7059,201709764,,,600.0,,2.0,0.0,5.0,1.0,3.0,1.8,4762.280040759717,0.0,500.0,0.0,0.0,33388.0,1,1,1,110.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2646.1084095076117,0.07723702198087389,0.07925327691109416,18548.888888888887,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9765,2,57.0,4,0.0,1,400,5,77,47,5.0,0.0,624.566843803548,2519.580520315052,95.54338487033404,0.0,28993.699999999997,50,50,1,7061,201709765,,,279.0,,1.0,1.0,3.0,0.0,3.0,2.0,2949.5429190689583,0.0,1872.0,0.0,0.0,41048.0,5,4,1,110.0,0,0.0,5,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3239.6907489889345,0.11173774816559924,0.0789244481823459,20524.0,5,3,5,5_1,5_0,5_1_0 +9766,2,37.0,1,0.0,1,111,2,43,34,10.0,0.0,0.0,89.07708690944243,0.0,165.99324268507286,48551.80206659737,33,10,1,7062,201709766,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1670.9342883015067,160.0,0.0,0.0,0.0,87630.0,1,1,2,110.0,8,6.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,255.07032959451527,0.005253570799383333,0.0029107649160620254,48683.333333333336,10,5,10,10_1,10_2,10_1_0 +9767,2,23.0,1,0.0,9,112,4,0,47,7.0,0.0,0.0,538.3719060502248,0.0,0.0,21696.2,0,30,2,7063,201709767,,,,610.0,1.0,0.0,3.0,0.0,1.0,1.0,3382.537451619681,0.0,400.0,0.0,0.0,25750.0,0,1,3,65.0,8,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,538.3719060502248,0.024814110583891408,0.02090764683690193,25750.0,7,4,7,7_0,7_1,7_0_0 +9768,2,78.0,3,0.0,6,112,4,71,71,6.0,0.0,0.0,2691.859530251124,0.0,53.079658261296686,30041.62,70,70,1,7066,201709768,,,390.0,,0.0,2.0,6.0,0.0,2.0,1.5,1667.703713686214,0.0,2000.0,30.0,0.0,35120.0,5,5,1,187.0,8,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2744.9391885124205,0.09137121062420804,0.07815886072074091,23413.333333333332,6,3,6,6_1,6_1,6_0_0 +9769,2,64.0,1,0.0,6,400,4,77,78,3.0,0.0,0.0,2021.586507218594,56.61830214538313,0.0,16687.1858467513,70,71,1,7067,201709769,,,306.0,,0.0,2.0,4.0,0.0,2.0,1.5,3583.8833787977037,0.0,1502.0,0.0,0.0,22900.0,5,5,1,80.0,0,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2078.2048093639773,0.1245389623181171,0.09075130171895097,15266.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9770,2,71.0,1,0.0,5,111,2,0,74,8.0,0.0,0.0,305.5260566835026,0.0,1730.396859318272,44936.38784974978,0,30,1,7069,201709770,,,300.0,,0.0,3.0,9.0,0.0,1.0,1.0,1813.9566898487737,0.0,227.0,978.0,0.0,30473.0,0,5,1,250.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2035.9229160017744,0.04530677727834128,0.06681071492802725,30473.0,8,4,8,8_1,8_3,8_0_0 +9771,2,67.0,3,0.0,6,111,2,75,75,8.0,0.0,0.0,1615.1157181506744,0.0,0.0,41568.40784974977,50,50,1,7070,201709771,,,470.0,,0.0,2.0,4.0,0.0,2.0,1.5,1843.0594838352017,0.0,1200.0,0.0,0.0,44072.0,5,5,1,95.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.038854404142409246,0.036647207255188656,29381.333333333332,8,4,8,8_1,8_3,8_0_0 +9772,2,44.0,3,0.0,99,112,5,0,54,3.0,158.64560091388822,555.170527825376,1076.7438121004495,0.0,0.0,19971.61672205293,0,43,1,7072,201709772,,,,,1.0,0.0,4.0,1.0,2.0,1.5,2316.04265714448,0.0,800.0,0.0,0.0,21281.0,0,1,2,85.0,6,1.0,2,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1790.5599408397138,0.08965523251117438,0.08413890046706987,14187.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9773,2,68.0,1,0.0,1,111,5,0,74,10.0,0.0,693.9631597817199,1231.4009361155372,5557.263287763559,258.1029012467641,48463.309322817106,0,20,1,7076,201709773,,,,,0.0,2.0,6.0,0.0,1.0,1.0,1801.8545546505497,248.78400789983417,812.0,0.0,0.0,58247.0,0,5,1,200.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,7740.73028490758,0.15972351853535416,0.132894917934101,58247.0,10,5,10,10_1,10_2,10_1_0 +9774,2,29.0,2,0.0,1,212,4,0,37,9.0,0.0,0.0,1682.4122064069525,0.0,0.0,19006.040000000005,0,31,1,7077,201709774,,,240.0,,1.0,0.0,3.0,0.0,1.0,1.0,2709.9163573891137,0.0,1250.0,0.0,0.0,42095.0,0,1,2,110.0,4,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1682.4122064069525,0.08851987086247066,0.0399670318661825,42095.0,10,5,10,10_1,10_0,10_1_0 +9775,1,48.0,3,147.0,1,111,2,85,52,2.0,0.0,0.0,1413.22625338184,0.0,1857.7880391453841,43777.05087530163,60,50,1,7078,201709775,,,600.0,,1.0,0.0,7.0,7.0,9.0,4.2,1384.7012735134178,0.0,1050.0,1050.0,0.0,50964.0,6,1,2,140.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3271.014292527224,0.07471984126670995,0.06418284068219182,12134.285714285714,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +9776,2,63.0,4,0.0,6,111,2,0,75,4.0,0.0,0.0,712.6166952755394,0.0,1327.9459414805829,24632.573696501076,0,33,1,708,201709776,,,500.0,,0.0,2.0,4.0,0.0,1.0,1.0,1693.58886190786,1280.0,0.0,0.0,0.0,15880.0,0,5,1,85.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2040.5626367561222,0.08284000940778563,0.12849890659673313,15880.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9777,2,52.0,3,0.0,3,111,1,0,22,2.0,0.0,0.0,1329.7786079440552,0.0,0.0,41227.76031599412,0,41,2,7080,201709777,,,,428.0,2.0,3.0,4.0,2.0,4.0,2.5,2547.5558025821806,0.0,988.0,0.0,0.0,30539.0,0,4,3,76.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1329.7786079440552,0.032254446949139114,0.04354361989403894,12215.6,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +9778,2,39.0,5,0.0,99,111,2,54,67,2.0,0.0,0.0,535.6800465199736,0.0,1592.3897478389006,50523.857678039436,20,30,1,7081,201709778,,,400.0,,2.0,0.0,5.0,3.0,5.0,2.4,1979.1702679596501,0.0,398.0,900.0,0.0,28241.0,4,1,3,84.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2128.0697943588743,0.042120097161224,0.07535391078073986,11767.083333333334,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9779,2,63.0,3,0.0,1,120,6,75,74,9.0,2221.038412794435,0.0,1345.929765125562,0.0,0.0,31709.079999999998,50,70,1,7082,201709779,,,412.0,,0.0,0.0,7.0,0.0,2.0,1.5,2514.3858296963017,0.0,1000.0,0.0,0.0,54550.0,5,5,2,120.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3566.968177919997,0.11249043422010342,0.06538896751457372,36366.666666666664,9,5,9,9_1,9_0,9_1_0 +9780,2,50.0,2,0.0,1,112,2,54,43,7.0,0.0,0.0,1413.22625338184,0.0,1486.2304313163072,82245.41000000002,43,50,1,7083,201709780,,,293.0,,3.0,2.0,5.0,1.0,3.0,2.0,1665.8293178055487,0.0,1050.0,840.0,0.0,50366.0,1,1,1,100.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2899.456684698147,0.03525372035592195,0.05756773785287986,25183.0,7,4,7,7_1,7_1,7_1_0 +9781,1,41.0,1,39.0,1,221,2,0,67,2.0,2102.054212109019,0.0,565.290501352736,47.77169243516702,0.0,31198.100000000002,0,42,1,7085,201709781,,,,,1.0,0.0,5.0,1.0,2.0,1.3,2148.1136256024834,0.0,420.0,0.0,0.0,17023.0,0,1,2,120.0,1,2.0,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,2715.116405896922,0.08702826152544295,0.1594969397812913,13094.615384615385,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +9782,2,41.0,2,0.0,6,111,2,37,37,10.0,0.0,0.0,707.0493773436992,0.0,1317.5713638127659,73557.98000000001,30,12,1,7088,201709782,,,630.0,,2.0,0.0,10.0,2.0,4.0,2.1,3652.237408033061,1270.0,0.0,0.0,0.0,132460.0,1,1,2,160.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2024.620741156465,0.02752414817748482,0.015284770807462367,63076.19047619047,10,5,10,10_1,10_3,10_0_0 +9783,1,37.0,4,272.0,1,111,1,0,53,4.0,0.0,0.0,0.0,0.0,0.0,16626.74,0,30,8,7089,201709783,,,,98.0,1.0,0.0,2.0,0.0,1.0,1.0,3299.019488212955,0.0,0.0,0.0,0.0,17134.0,0,4,4,37.0,8,7.0,1,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0.0,0.0,0.0,17134.0,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +9784,2,66.0,2,0.0,4,111,2,0,78,6.0,1884.709738856992,0.0,713.3427755165478,0.0,0.0,18557.239999999998,0,50,1,709,201709784,,,286.0,,0.0,1.0,4.0,0.0,1.0,1.0,2254.2028753135037,0.0,530.0,0.0,0.0,23557.0,0,5,1,100.0,9,7.0,1,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2598.05251437354,0.14000209699144595,0.11028791927552489,23557.0,6,3,6,6_1,6_3,6_0_1 +9785,2,56.0,3,0.0,1,112,2,85,62,5.0,1776.8307302355481,0.0,699.8834778652922,226.47320858153253,0.0,22647.159663922266,50,50,1,7090,201709785,,,200.0,,1.0,3.0,6.0,0.0,2.0,1.5,1735.7370316621427,0.0,520.0,0.0,0.0,29330.0,7,1,1,206.0,7,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2703.187416682373,0.11936099081725675,0.09216458972664075,19553.333333333332,5,3,5,5_1,5_0,5_1_0 +9786,2,78.0,1,0.0,1,112,2,0,74,9.0,0.0,0.0,487.22657497545345,0.0,523.719294844794,22679.595368876693,0,70,1,7092,201709786,,,100.0,,0.0,0.0,4.0,0.0,1.0,1.0,2883.4878702963356,0.0,362.0,296.0,0.0,35874.0,0,5,5,97.0,10,0.0,1,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1010.9458698202475,0.044575128143933856,0.028180461331890713,35874.0,9,5,9,9_1,9_0,9_1_0 +9787,2,74.0,3,0.0,5,112,5,0,77,6.0,0.0,1082.5825292594832,1368.8105711326964,116.7752481748527,0.0,16882.94,0,50,1,7093,201709787,,,240.0,,0.0,2.0,4.0,0.0,1.0,1.0,2956.158344465513,0.0,1017.0,0.0,0.0,23284.0,0,5,1,80.0,7,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2568.1683485670324,0.15211618050926157,0.11029755834766503,23284.0,6,3,6,6_1,6_0,6_0_0 +9788,2,81.0,2,0.0,7,212,5,77,77,5.0,0.0,1387.9263195634398,1547.8192298943961,191.08676974066807,0.0,48743.78031599411,70,70,1,7094,201709788,,,200.0,,0.0,1.0,6.0,0.0,2.0,1.5,2133.7387942304726,0.0,1150.0,0.0,0.0,27141.0,5,5,1,90.0,2,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3126.832319198504,0.06414833439113685,0.11520696802617826,18094.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9789,2,39.0,2,0.0,8,111,2,42,42,8.0,0.0,0.0,1041.0884532541083,0.0,1940.046023881789,49299.03999999999,0,0,1,7095,201709789,,,,,2.0,0.0,5.0,1.0,3.0,1.8,864.8064672509395,1870.0,0.0,0.0,0.0,45910.0,4,1,3,128.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2981.134477135897,0.0604704366887448,0.0649343166442147,25505.555555555555,7,4,7,7_1,7_3,7_0_0 +9790,2,65.0,3,0.0,1,111,2,0,74,5.0,1903.7472109666587,0.0,826.1512778383909,0.0,516.2058024935282,25461.3586456342,0,30,1,7096,201709790,,,120.0,,0.0,4.0,7.0,0.0,1.0,1.0,1844.4875020044951,497.56801579966833,408.0,0.0,0.0,19885.0,0,5,1,100.0,8,7.0,1,5,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3246.1042912985777,0.12749140124363237,0.16324386679902328,19885.0,5,3,5,5_1,5_3,5_1_0 +9791,1,47.0,9,409.0,7,111,1,0,55,2.0,0.0,0.0,690.4619695094133,0.0,0.0,2689.34,0,31,2,7097,201709791,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4581.417282083104,0.0,513.0,0.0,0.0,10638.0,0,4,3,17.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,690.4619695094133,0.25674030413016324,0.06490524248067431,10638.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9792,2,51.0,2,0.0,99,111,1,0,52,3.0,0.0,0.0,484.5347154452023,0.0,0.0,13156.480000000001,0,20,2,7098,201709792,,,,365.0,1.0,0.0,1.0,0.0,1.0,1.0,2843.935065612011,0.0,360.0,0.0,0.0,15335.0,0,1,3,18.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,484.5347154452023,0.036828598184712194,0.03159665571863073,15335.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +9793,2,53.0,2,0.0,1,111,2,47,64,6.0,0.0,180.43042154324718,589.5172371249961,0.0,1050.9772335736743,29713.16,31,50,2,7099,201709793,,,279.0,,2.0,0.0,3.0,1.0,3.0,2.0,2726.4451016458106,0.0,438.0,594.0,0.0,44457.0,1,1,1,80.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1820.9248922419176,0.0612834478810708,0.040959239090400106,22228.5,6,3,6,6_0,6_2,6_1_0 +9794,2,55.0,2,0.0,6,221,1,43,38,10.0,0.0,0.0,784.6770530682027,0.0,0.0,43040.659999999996,50,50,2,7100,201709794,,,410.0,,2.0,4.0,4.0,0.0,2.0,1.5,3504.815455443443,0.0,583.0,0.0,0.0,66503.0,1,1,1,90.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,784.6770530682027,0.018231064604218493,0.011799122642109418,44335.333333333336,10,5,10,10_0,10_1,10_0_0 +9795,1,45.0,3,18.0,99,111,2,0,52,5.0,0.0,0.0,3634.010365839017,0.0,690.0355573968569,14341.320000000002,0,50,2,7101,201709795,,,,266.0,1.0,0.0,2.0,0.0,1.0,1.0,3220.0856038581446,0.0,2700.0,390.0,0.0,18402.0,0,1,3,60.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,4324.045923235874,0.30150961858712266,0.2349769548546829,18402.0,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +9796,1,41.0,3,430.0,4,111,1,0,55,4.0,0.0,0.0,150.8743159528681,0.0,281.15105479784216,42078.02,0,71,2,7102,201709796,,,,,2.0,0.0,4.0,3.0,4.0,2.3,1127.1969733075857,271.0,0.0,0.0,0.0,37340.0,0,4,3,72.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,432.0253707507103,0.010267245719991347,0.011570042066167924,16234.782608695654,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +9797,1,46.0,3,226.0,99,111,1,0,52,4.0,0.0,0.0,977.145009481158,0.0,360.94167617681745,22800.260000000002,0,71,2,7103,201709797,,,,155.0,1.0,2.0,4.0,1.0,2.0,1.3,1004.2562416941995,0.0,726.0,204.0,0.0,21342.0,0,1,3,89.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1338.0866856579755,0.058687343287224594,0.06269734259478847,16416.923076923078,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +9798,2,51.0,3,0.0,9,111,1,74,52,4.0,0.0,0.0,753.7206684703146,0.0,0.0,44292.700000000004,10,42,2,7105,201709798,,,,552.0,1.0,1.0,4.0,3.0,5.0,3.0,2403.0802735951634,0.0,560.0,0.0,0.0,53634.0,7,1,3,90.0,8,6.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,753.7206684703146,0.01701681470017214,0.014053038529110539,17878.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +9799,1,46.0,3,245.0,9,112,2,0,55,2.0,0.0,0.0,549.1393441712293,0.0,1061.5931652259337,24448.760000000002,0,50,1,7106,201709799,,,480.0,200.0,2.0,1.0,4.0,2.0,3.0,1.8,555.5439277426113,0.0,408.0,600.0,0.0,21733.0,0,1,3,70.0,7,1.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1610.732509397163,0.06588197149455281,0.07411459574827052,12073.888888888889,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +9800,2,49.0,3,0.0,99,111,2,0,55,3.0,0.0,0.0,690.4619695094133,0.0,833.350634702358,7359.88,0,50,2,7107,201709800,,,,238.0,1.0,0.0,3.0,0.0,1.0,1.0,850.5406085937058,0.0,513.0,471.0,0.0,14226.0,0,1,3,50.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1523.8126042117713,0.20704313171026853,0.10711462141232751,14226.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +9801,2,62.0,4,0.0,6,111,4,0,75,4.0,0.0,0.0,1725.4819588909704,0.0,0.0,32379.450105765143,0,31,2,7108,201709801,,,,,1.0,0.0,4.0,3.0,5.0,2.6,1032.1618517340978,0.0,1282.0,0.0,0.0,43940.0,0,5,1,90.0,10,8.0,5,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1725.4819588909704,0.053289415146174746,0.03926904776720461,16900.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +9802,2,29.0,3,0.0,6,111,6,46,47,3.0,0.0,0.0,874.8543473316153,0.0,0.0,21463.3,41,42,2,711,201709802,,,,382.0,2.0,0.0,2.0,1.0,3.0,1.8,5869.333867269622,0.0,650.0,0.0,0.0,25602.0,1,4,3,40.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,874.8543473316153,0.040760477062316385,0.03417132830761719,14223.333333333332,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +9803,1,52.0,3,420.0,9,111,1,85,85,2.0,0.0,0.0,403.7789295376686,0.0,19.462541362475452,15247.640000000001,71,31,2,7110,201709803,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1825.443855699042,0.0,300.0,11.0,0.0,20540.0,4,4,3,68.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,423.24147090014407,0.027757834714102907,0.02060571912853671,13693.333333333334,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +9804,2,50.0,2,0.0,99,112,4,63,65,7.0,0.0,0.0,2664.9409349486127,0.0,0.0,36633.77999999999,50,50,1,7113,201709804,,,648.0,462.0,2.0,0.0,4.0,1.0,3.0,1.8,948.0501540164937,0.0,1980.0,0.0,0.0,43959.0,1,1,3,90.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2664.9409349486127,0.07274545337523491,0.06062332935118207,24421.666666666668,7,4,7,7_1,7_1,7_0_0 +9805,2,53.0,2,0.0,7,111,2,52,52,9.0,0.0,0.0,582.3414556704798,0.0,1085.1808240536636,33138.941750603255,50,50,2,7114,201709805,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2369.2572279340484,1046.0,0.0,0.0,0.0,49697.0,1,1,2,90.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1667.5222797241436,0.05031911677426417,0.033553781510436115,33131.333333333336,9,5,9,9_0,9_3,9_0_0 +9806,1,20.0,1,177.0,6,111,4,0,84,2.0,0.0,0.0,403.7789295376686,0.0,0.0,10502.84,0,41,8,7115,201709806,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3372.079664296773,0.0,300.0,0.0,0.0,12816.0,0,3,3,34.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,403.7789295376686,0.038444737760231384,0.03150584656192795,12816.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9807,2,51.0,4,0.0,99,112,6,52,52,5.0,0.0,0.0,900.4270128690009,0.0,2045.3361650019656,19299.28,31,50,1,7117,201709807,,,130.0,,2.0,3.0,3.0,0.0,2.0,1.5,1878.7244834786147,0.0,669.0,1156.0,0.0,30181.0,1,1,3,84.0,6,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2945.7631778709665,0.15263591065941148,0.09760323308939288,20120.666666666668,5,3,5,5_1,5_1,5_0_0 +9808,2,66.0,2,0.0,8,111,2,77,75,6.0,0.0,0.0,745.6450898795613,0.0,1765.7832981591364,29901.760000000002,50,31,1,7118,201709808,,,469.0,,0.0,2.0,5.0,0.0,2.0,1.5,1217.6051256043993,0.0,554.0,998.0,0.0,35682.0,5,5,1,110.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2511.4283880386974,0.08398931661677096,0.07038362165906333,23788.0,6,3,6,6_1,6_2,6_0_0 +9809,2,51.0,2,0.0,4,112,2,47,37,7.0,0.0,416.377895869032,2531.693888201182,44.23304855108057,0.0,127785.18000000004,31,31,1,7119,201709809,,,490.0,,3.0,0.0,6.0,4.0,7.0,3.8,2165.0840418794037,0.0,1881.0,0.0,0.0,92716.0,1,1,1,120.0,10,2.0,5,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2992.3048326212943,0.02341668128198664,0.032273877568286966,24398.947368421053,7,4,7,7_1,7_1,7_0_1 +9810,2,36.0,4,0.0,9,112,5,63,43,4.0,0.0,0.0,1453.6041463356069,141.54575536345783,0.0,33180.82,44,44,1,712,201709810,,,150.0,,2.0,0.0,7.0,2.0,4.0,2.3,1970.476588462727,0.0,1080.0,0.0,0.0,39490.0,1,1,1,130.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1595.1499016990647,0.04807445692116906,0.040393768085567605,17169.565217391304,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9811,2,62.0,1,0.0,4,111,2,45,74,10.0,0.0,0.0,752.3747387051891,0.0,1581.7738161866412,80125.94000000002,31,30,1,7120,201709811,,,339.0,,1.0,0.0,5.0,1.0,3.0,2.0,2296.2624914967087,0.0,559.0,894.0,0.0,125051.0,1,5,1,110.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2334.1485548918304,0.02913099746339113,0.0186655728853974,62525.5,10,5,10,10_1,10_3,10_0_1 +9812,2,70.0,3,0.0,2,112,2,77,78,5.0,2030.663691697769,0.0,362.05510681877615,0.0,0.0,43074.479999999996,50,50,1,7121,201709812,,,72.0,,0.0,5.0,4.0,0.0,2.0,1.5,2321.8643663603652,0.0,269.0,0.0,0.0,30738.0,5,5,1,100.0,6,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2392.718798516545,0.05554840821099977,0.0778423709583104,20492.0,5,3,5,5_1,5_0,5_0_1 +9813,2,60.0,3,0.0,7,111,2,0,52,7.0,0.0,0.0,537.0259762850992,0.0,1380.0711147937138,25566.516658454027,0,41,2,7122,201709813,,,,534.0,1.0,3.0,4.0,0.0,1.0,1.0,1881.234575899019,0.0,399.0,780.0,0.0,27161.0,0,1,3,71.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1917.097091078813,0.0749846808108249,0.07058271385732533,27161.0,7,4,7,7_0,7_3,7_0_0 +9814,2,62.0,1,0.0,5,111,2,34,38,10.0,0.0,557.9463804645028,2733.583352970016,0.0,0.0,80061.78,10,10,1,7123,201709814,,,,,2.0,2.0,7.0,0.0,2.0,1.5,2440.615225084805,0.0,2031.0,0.0,0.0,141570.0,1,1,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3291.529733434519,0.04111237263816167,0.023250192367270744,94380.0,10,5,10,10_1,10_4,10_0_0 +9816,2,33.0,2,0.0,8,111,2,85,64,4.0,0.0,0.0,1453.6041463356069,212.31863304518674,0.0,30660.915368876686,31,50,1,7125,201709816,,,360.0,,1.0,0.0,4.0,2.0,4.0,2.1,1953.1024680871687,0.0,1080.0,0.0,0.0,37190.0,7,1,2,90.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1665.9227793807936,0.054333758771985007,0.04479491205648813,17709.52380952381,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +9817,2,47.0,2,0.0,1,111,4,0,55,7.0,0.0,0.0,1009.4473238441715,44.23304855108057,0.0,24147.3,0,31,2,7128,201709817,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2644.9342090120567,0.0,750.0,0.0,0.0,26779.0,0,1,2,50.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1053.680372395252,0.043635535749141814,0.039347263616836034,26779.0,7,4,7,7_0,7_3,7_1_0 +9818,2,76.0,3,0.0,9,400,2,75,74,6.0,2379.684013708323,263.7060007170536,2049.8510322862307,325.555237335953,0.0,46423.04,30,30,1,7129,201709818,,,332.0,,0.0,2.0,7.0,0.0,2.0,1.5,1942.664986404775,0.0,1523.0,0.0,0.0,36360.0,5,5,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5018.796284047561,0.108110030796078,0.13803070088139607,24240.0,7,4,7,7_1,7_0,7_0_0 +9819,2,79.0,2,0.0,99,300,2,0,77,4.0,1586.456009138882,0.0,578.7497990039916,0.0,0.0,17223.791191295742,0,50,2,713,201709819,,,,610.0,0.0,3.0,4.0,0.0,1.0,1.0,3024.9418847053425,0.0,430.0,0.0,0.0,18210.0,0,5,3,100.0,0,1.0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2165.2058081428736,0.1257101751928511,0.11890202131482008,18210.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +9820,2,47.0,1,0.0,7,112,4,46,47,8.0,0.0,0.0,538.3719060502248,0.0,0.0,40629.41999999999,41,42,1,7133,201709820,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.5,2336.568077146375,0.0,400.0,0.0,0.0,76152.0,1,1,2,108.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,538.3719060502248,0.013250789847608578,0.007069701466149605,30460.8,8,4,8,8_1,8_0,8_0_0 +9821,2,45.0,2,0.0,8,112,4,85,46,4.0,0.0,0.0,1776.6272899657417,309.631339857564,0.0,67682.10604422133,43,31,1,7134,201709821,,,,,1.0,0.0,5.0,2.0,4.0,2.3,2445.721242100678,0.0,1320.0,0.0,0.0,39453.0,6,4,1,120.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2086.258629823306,0.03082437518212289,0.0528795941962159,17153.478260869568,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9822,1,40.0,4,290.0,1,120,2,0,56,2.0,0.0,0.0,870.1717927466156,0.0,1621.5464894798054,19831.136658454034,0,50,1,7135,201709822,,,400.0,,1.0,1.0,3.0,1.0,2.0,1.3,586.3383972730871,1563.0,0.0,0.0,0.0,16550.0,0,4,3,90.0,0,0.0,2,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2491.718282226421,0.1256467707898225,0.1505569959049197,12730.76923076923,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +9823,2,70.0,2,0.0,4,111,2,77,75,7.0,0.0,229.00784272796759,1137.1422777621463,0.0,1667.8053406694723,18970.548125533325,50,50,1,7136,201709823,,,222.0,,0.0,2.0,6.0,0.0,2.0,1.5,1675.4726795266183,1046.4989096425522,412.0,329.0,0.0,37612.0,5,5,1,120.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3033.955461159586,0.15992977330349495,0.08066456080930516,25074.666666666668,7,4,7,7_1,7_2,7_0_1 +9824,1,29.0,3,256.0,2,111,1,81,23,8.0,0.0,0.0,67.2964882562781,0.0,0.0,26754.394343836408,30,44,2,7137,201709824,,,,744.0,2.0,0.0,2.0,0.0,2.0,1.5,5135.318460117476,0.0,50.0,0.0,0.0,43465.0,4,1,3,42.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,67.2964882562781,0.002515343363464389,0.0015482914587893269,28976.666666666668,8,4,8,8_0,8_4,8_0_1 +9825,2,77.0,2,0.0,4,111,2,78,77,6.0,0.0,0.0,2611.1037443435903,0.0,0.0,35957.873499749374,71,31,1,7138,201709825,,,385.0,,0.0,1.0,5.0,0.0,2.0,1.5,1838.7734879840048,0.0,1940.0,0.0,0.0,36487.0,5,5,1,92.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2611.1037443435903,0.072615632967333,0.07156257692722313,24324.666666666668,7,4,7,7_1,7_4,7_0_1 +9826,1,39.0,3,277.0,1,111,2,65,64,3.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,24313.959999999995,42,41,1,714,201709826,,,780.0,,2.0,0.0,3.0,4.0,6.0,2.7,1811.8913410793625,960.0,0.0,0.0,0.0,40134.0,1,1,3,92.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1530.4219775670917,0.06294416777715732,0.03813280454395505,14864.444444444443,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +9827,2,61.0,2,0.0,1,111,6,0,43,10.0,0.0,0.0,1659.5314003998178,0.0,0.0,29354.4,0,30,1,7140,201709827,,,239.0,,1.0,3.0,4.0,0.0,1.0,1.0,2396.2589668058763,0.0,1233.0,0.0,0.0,40304.0,0,4,2,80.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1659.5314003998178,0.05653433217506806,0.04117535233227019,40304.0,9,5,9,9_1,9_2,9_1_0 +9828,2,92.0,1,0.0,2,111,2,72,75,5.0,3807.4944219333174,0.0,646.0462872602698,169.8549064361494,0.0,17662.72,70,70,1,7141,201709828,,,160.0,,0.0,1.0,6.0,0.0,2.0,1.5,1937.378336246179,0.0,480.0,0.0,0.0,27798.0,5,5,1,110.0,5,4.0,3,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4623.395615629736,0.2617601148424329,0.16632116035792993,18532.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +9829,2,65.0,2,0.0,1,120,2,0,71,5.0,0.0,693.9631597817199,1539.7436513036428,0.0,0.0,17241.530734548123,0,50,1,7142,201709829,,,,,1.0,0.0,7.0,1.0,2.0,1.5,2356.3699898795985,0.0,1144.0,0.0,0.0,27685.0,0,5,1,140.0,0,0.0,2,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2233.7068110853625,0.12955385722275342,0.08068292617248916,18456.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9830,2,82.0,2,0.0,1,112,2,0,86,2.0,936.0090453919405,0.0,672.964882562781,51.310336319253466,0.0,10595.12,0,70,1,7144,201709830,,,257.0,,0.0,0.0,4.0,0.0,1.0,1.0,1778.9376263380987,0.0,500.0,0.0,0.0,11414.0,0,5,1,120.0,8,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1660.2842642739752,0.1567027333596953,0.14546033505116307,11414.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9831,2,55.0,5,0.0,8,112,2,0,47,3.0,0.0,0.0,207.27318382933655,0.0,1132.3660429076626,18401.567597354555,0,60,1,7145,201709831,,,278.0,,1.0,2.0,4.0,1.0,2.0,1.5,3906.904255943885,0.0,154.0,640.0,0.0,21870.0,0,1,2,100.0,8,1.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1339.6392267369993,0.07280027745731774,0.06125465142830358,14580.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9832,2,69.0,3,0.0,1,111,2,77,72,2.0,0.0,0.0,504.96828184214684,0.0,940.9975726002604,15158.338738977907,71,71,1,7146,201709832,,,,,0.0,3.0,3.0,0.0,2.0,1.5,1720.2513198677943,907.0225340539173,0.0,0.0,0.0,18376.0,5,5,1,50.0,7,6.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,1445.9658544424071,0.09539078650645759,0.07868773696356156,12250.666666666666,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +9833,1,52.0,3,272.0,9,111,4,0,68,1.0,0.0,0.0,484.5347154452023,0.0,0.0,7717.3,0,50,2,7147,201709833,,,,164.0,1.0,0.0,2.0,0.0,1.0,1.0,3006.591802788651,0.0,360.0,0.0,0.0,5992.0,0,1,3,55.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,484.5347154452023,0.06278552284415564,0.08086360404626207,5992.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9834,2,51.0,3,0.0,4,120,2,42,62,8.0,3014.2664173638764,0.0,1547.8192298943961,77.85016544990181,0.0,74404.16000000002,20,50,1,7148,201709834,,,350.0,,2.0,0.0,7.0,3.0,5.0,3.0,1628.6660968324043,0.0,1150.0,0.0,0.0,88299.0,1,1,2,150.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4639.935812708174,0.06236124180029951,0.05254799955501392,29433.0,8,4,8,8_1,8_0,8_0_1 +9835,2,60.0,3,0.0,3,111,2,85,78,3.0,0.0,0.0,794.0985614240816,0.0,2742.4490101669953,38723.479999999996,50,70,1,7149,201709835,,,,,0.0,3.0,6.0,0.0,2.0,1.5,2594.9937305982307,0.0,590.0,1550.0,0.0,24746.0,6,5,1,105.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3536.547571591077,0.09132824765726318,0.14291390817065697,16497.333333333332,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +9836,0,22.0,5,0.0,1,111,1,0,85,1.0,0.0,0.0,0.0,0.0,0.0,16207.05087530163,0,60,3,715,201709836,,,,,0.0,0.0,1.0,3.0,4.0,1.9,1603.1446432314883,0.0,0.0,0.0,0.0,14590.0,0,6,5,15.0,10,8.0,2,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0.0,0.0,0.0,7678.947368421053,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +9837,2,76.0,3,0.0,4,111,2,77,74,8.0,0.0,94.37898973031392,1002.0610334729151,0.0,2884.2210356918904,74978.66887136182,60,50,1,7150,201709837,,,380.0,,0.0,3.0,5.0,0.0,2.0,1.5,2128.570088166044,414.64001316639025,573.0,1387.0,0.0,42452.0,5,5,1,105.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3980.6610588951194,0.05309058054530943,0.09376851641607273,28301.333333333332,8,4,8,8_1,8_4,8_0_1 +9838,2,71.0,2,0.0,5,300,2,0,72,3.0,1903.7472109666587,0.0,619.1276919577585,159.23897478389006,0.0,27242.160000000003,60,50,1,7151,201709838,,,230.0,,0.0,2.0,5.0,0.0,2.0,1.5,1317.566912317689,0.0,460.0,0.0,0.0,21535.0,5,5,1,108.0,0,1.0,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2682.1138777083074,0.09845452334573716,0.12454673218984479,14356.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9839,2,57.0,2,0.0,9,211,5,64,55,4.0,0.0,416.377895869032,2422.6735772260117,113.23660429076627,0.0,27005.365846751298,50,41,1,7153,201709839,,,700.0,,2.0,6.0,4.0,0.0,2.0,1.5,1084.432144351912,0.0,1800.0,0.0,0.0,27299.0,1,1,2,108.0,1,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2952.2880773858096,0.10932227669639089,0.1081463818229902,18199.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9840,2,40.0,2,0.0,5,111,2,85,54,10.0,4759.368027416646,0.0,1012.1391833744226,0.0,0.0,82328.42,30,31,1,7154,201709840,,,550.0,,1.0,0.0,7.0,3.0,5.0,2.4,2072.74468885069,0.0,752.0,0.0,0.0,98158.0,4,2,2,400.0,9,7.0,4,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5771.507210791069,0.07010346136596657,0.05879813373124013,40899.16666666667,10,5,10,10_1,10_3,10_0_0 +9841,1,30.0,2,250.0,2,111,2,68,21,4.0,0.0,0.0,181.70051829195086,0.0,0.0,21668.1458467513,41,44,2,7155,201709841,,,,125.0,2.0,0.0,2.0,0.0,2.0,1.5,3661.8275197661037,0.0,135.0,0.0,0.0,25448.0,4,1,3,36.0,8,6.0,3,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,181.70051829195086,0.008385605283305455,0.007140070665354875,16965.333333333332,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +9842,0,50.0,5,0.0,99,111,2,0,42,1.0,0.0,0.0,562.2991111158552,0.0,1047.8323444495225,17109.18,0,50,2,7156,201709842,,,230.0,,1.0,2.0,3.0,1.0,2.0,1.3,870.2699292349189,1010.0,0.0,0.0,0.0,10670.0,0,4,5,49.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1610.1314555653776,0.09410921245584987,0.15090266687585543,8207.692307692307,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +9843,2,47.0,2,0.0,8,400,2,35,47,7.0,1586.456009138882,0.0,1173.65075518949,92.0047409862476,0.0,52700.759999999995,30,31,1,7157,201709843,,,700.0,,2.0,0.0,5.0,2.0,4.0,2.3,2153.050903242168,0.0,872.0,0.0,0.0,54371.0,1,1,2,100.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2852.11150531462,0.05411898244569187,0.05245648425290357,23639.565217391308,6,3,6,6_1,6_1,6_0_0 +9844,2,84.0,3,0.0,2,120,2,0,75,7.0,2221.038412794435,0.0,323.0231436301349,176.75526201011795,0.0,21452.539999999997,0,71,1,7158,201709844,,,190.0,,0.0,1.0,4.0,0.0,1.0,1.0,3994.231665057254,0.0,240.0,0.0,0.0,25085.0,0,5,1,91.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2720.816818434688,0.12682958840466854,0.10846389549271229,25085.0,7,4,7,7_1,7_0,7_0_1 +9845,2,67.0,2,0.0,5,111,2,78,75,8.0,0.0,180.43042154324718,807.5578590753372,0.0,2653.9829130648345,31386.3,50,31,1,7159,201709845,,,250.0,,0.0,3.0,5.0,0.0,2.0,1.5,1518.3963278934916,0.0,600.0,1500.0,0.0,46226.0,5,5,1,110.0,5,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3641.971193683419,0.11603697134365693,0.0787862067599061,30817.333333333332,8,4,8,8_1,8_2,8_0_0 +9846,1,50.0,3,73.0,1,112,2,0,85,1.0,0.0,381.679737879946,1345.929765125562,0.0,0.0,11317.4,0,50,1,716,201709846,,,210.0,,0.0,0.0,3.0,0.0,1.0,1.0,4584.158541273618,0.0,1000.0,0.0,0.0,9306.0,0,7,3,75.0,8,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1727.609503005508,0.15265074160191458,0.1856446919197838,9306.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +9847,2,53.0,2,0.0,3,111,1,0,52,4.0,0.0,0.0,282.645250676368,0.0,0.0,12697.32,0,42,2,7160,201709847,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2100.255712850932,0.0,210.0,0.0,0.0,17961.0,0,1,1,42.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,282.645250676368,0.02226022898346801,0.015736609914613217,17961.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +9848,2,46.0,4,0.0,2,112,2,21,46,4.0,0.0,0.0,1803.545885268253,0.0,0.0,19040.36,50,71,1,7161,201709848,,,270.0,,2.0,0.0,4.0,0.0,2.0,1.5,1737.4509740853948,0.0,1340.0,0.0,0.0,27200.0,1,1,2,100.0,8,0.0,3,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1803.545885268253,0.09472225762896568,0.06630683401721518,18133.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +9849,2,32.0,3,0.0,9,111,4,85,47,5.0,0.0,0.0,1722.7900993607193,0.0,0.0,49881.5,20,50,1,7162,201709849,,,490.0,,1.0,0.0,4.0,2.0,4.0,2.1,3876.4758247044224,0.0,1280.0,0.0,0.0,41788.0,4,1,3,80.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1722.7900993607193,0.03453765623248538,0.041226909623832665,19899.04761904762,5,3,5,5_1,5_2,5_0_0 +9850,2,37.0,4,0.0,9,112,2,43,46,5.0,0.0,0.0,2551.8828346780656,0.0,0.0,65354.520000000004,33,31,1,7163,201709850,,,684.0,,2.0,0.0,6.0,2.0,4.0,2.1,2373.5524205719375,0.0,1896.0,0.0,0.0,40564.0,1,1,2,92.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2551.8828346780656,0.039046768833709826,0.06291003931264337,19316.190476190477,5,3,5,5_1,5_0,5_0_0 +9851,2,69.0,2,0.0,4,120,2,78,78,5.0,1110.5192063972174,0.0,799.4822804845838,212.31863304518674,0.0,42941.78,50,50,1,7164,201709851,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1647.983056649513,0.0,594.0,0.0,0.0,29374.0,5,5,1,98.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2122.320119926988,0.04942319857087871,0.07225165520279798,19582.666666666668,5,3,5,5_1,5_1,5_0_1 +9852,2,68.0,3,0.0,6,111,2,0,71,2.0,0.0,0.0,389.7122552288106,0.0,726.2204367471937,13696.58,0,71,1,7165,201709852,,,430.0,,0.0,2.0,4.0,0.0,1.0,1.0,2207.4803966600107,700.0,0.0,0.0,0.0,12502.0,0,5,1,80.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1115.9326919760042,0.08147528010466877,0.08926033370468758,12502.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9853,2,35.0,3,0.0,5,111,2,68,55,3.0,0.0,0.0,1551.857019189773,132.69914565324171,0.0,41662.09999999999,50,50,2,7166,201709853,,,7000.0,,2.0,0.0,4.0,2.0,4.0,2.1,3801.08953832286,0.0,1153.0,0.0,0.0,30887.0,4,1,1,70.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1684.5561648430146,0.04043377949846539,0.054539326086800746,14708.095238095237,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +9854,1,65.0,2,17.0,1,111,4,0,77,5.0,0.0,0.0,1158.8455277731089,0.0,0.0,13632.400000000001,0,71,2,7167,201709854,,,,373.0,0.0,2.0,1.0,0.0,1.0,1.0,4736.221081142221,0.0,861.0,0.0,0.0,19542.0,0,4,3,50.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1158.8455277731089,0.08500671398822722,0.059300252163192554,19542.0,5,3,5,5_0,5_2,5_1_0 +9855,1,31.0,4,130.0,7,300,1,52,38,7.0,0.0,0.0,317.63942456963264,53.079658261296686,0.0,22143.687913348676,50,12,2,7168,201709855,,,,255.0,2.0,0.0,4.0,1.0,3.0,1.8,977.3828641587847,0.0,236.0,0.0,0.0,46414.0,1,1,3,69.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,370.7190828309293,0.016741524008178067,0.007987225467120466,25785.555555555555,7,4,7,7_0,7_0,7_0_0 +9856,2,71.0,2,0.0,1,300,2,72,72,4.0,0.0,0.0,602.9765347762518,0.0,1825.9402441886061,21708.440000000002,41,50,1,717,201709856,,,188.0,,0.0,2.0,5.0,0.0,2.0,1.5,1809.7959587598248,0.0,448.0,1032.0,0.0,25027.0,5,5,1,96.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2428.916778964858,0.11188813102023258,0.0970518551550269,16684.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9857,2,35.0,3,0.0,9,120,6,65,46,8.0,0.0,0.0,1547.8192298943961,0.0,0.0,44969.2,41,20,1,7170,201709857,,,1200.0,,2.0,0.0,5.0,2.0,4.0,2.1,2687.883896914656,0.0,1150.0,0.0,0.0,56483.0,4,1,2,120.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1547.8192298943961,0.034419541150262765,0.02740327585104184,26896.666666666664,7,4,7,7_1,7_0,7_0_0 +9858,2,65.0,3,0.0,2,111,2,77,78,3.0,0.0,0.0,808.37456370319,0.0,1506.3886773670363,38161.92,71,71,2,7171,201709858,,,,480.0,0.0,4.0,3.0,0.0,2.0,1.5,2512.198243910521,1452.0,0.0,0.0,0.0,22934.0,5,5,3,67.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2314.7632410702263,0.06065636218173054,0.1009315095958065,15289.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +9859,2,59.0,3,0.0,99,120,2,0,75,10.0,1269.1648073111057,305.3437903039568,928.7319158295915,212.31863304518674,0.0,116168.17,42,50,1,7173,201709859,,,233.0,,0.0,2.0,6.0,0.0,2.0,1.5,1771.5377906378083,0.0,690.03,0.0,0.0,67376.0,8,5,1,162.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2715.5591464898407,0.023376103337857872,0.04030454681919141,44917.333333333336,10,5,10,10_1,10_1,10_0_0 +9860,2,30.0,3,0.0,1,111,3,52,46,7.0,0.0,0.0,565.290501352736,0.0,1353.5312856630655,30840.600000000002,50,43,2,7175,201709860,,,,550.0,2.0,0.0,3.0,1.0,3.0,1.8,3154.1978947100624,0.0,420.0,765.0,0.0,42770.0,1,1,3,68.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1918.8217870158014,0.06221739483070372,0.044863731283979455,23761.11111111111,6,3,6,6_0,6_3,6_1_0 +9861,2,62.0,3,0.0,1,300,6,0,52,2.0,0.0,0.0,1277.2873471041582,46.0023704931238,0.0,24010.1,0,50,1,7176,201709861,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1916.4573665782975,0.0,949.0,0.0,0.0,12694.0,0,1,3,55.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1323.289717597282,0.055113877809641866,0.10424529049923445,12694.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9862,2,43.0,3,0.0,9,111,4,21,42,2.0,0.0,0.0,1924.6795641295537,0.0,0.0,51977.30584675131,50,30,1,7179,201709862,,,,,3.0,0.0,9.0,3.0,5.0,2.8,1746.9980778932634,0.0,1430.0,0.0,0.0,32790.0,1,1,2,200.0,6,4.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1924.6795641295537,0.03702922906016396,0.05869715047665611,11710.714285714286,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9863,2,22.0,1,0.0,4,111,1,63,43,7.0,0.0,0.0,636.6247789043908,0.0,622.8013235992145,26090.100000000002,43,30,2,718,201709863,,,,550.0,2.0,0.0,4.0,0.0,2.0,1.5,1305.108769643165,0.0,473.0,352.0,0.0,36060.0,1,1,3,80.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1259.4261025036053,0.048272183797823894,0.03492584865511939,24040.0,7,4,7,7_0,7_2,7_0_1 +9864,2,71.0,1,0.0,5,111,4,74,74,9.0,0.0,0.0,2955.661764215734,196.39473556679775,0.0,53470.42,30,30,1,7180,201709864,,,260.0,,0.0,2.0,6.0,0.0,2.0,1.5,1405.384696690355,0.0,2196.0,0.0,0.0,62017.0,5,5,1,130.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3152.056499782532,0.058949536954872095,0.05082568488934537,41344.666666666664,10,5,10,10_1,10_2,10_0_0 +9865,2,66.0,2,0.0,3,300,2,0,74,6.0,0.0,0.0,642.0084979648931,0.0,2130.2636182200404,21330.752027330716,0,50,1,7181,201709865,,,212.0,,0.0,2.0,5.0,0.0,1.0,1.0,2289.2556611122923,0.0,477.0,1204.0,0.0,27021.0,0,5,1,97.0,0,1.0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2772.2721161849336,0.12996598116338656,0.10259694741811679,27021.0,7,4,7,7_1,7_1,7_0_1 +9866,1,52.0,4,272.0,4,111,4,0,56,3.0,0.0,0.0,1227.4879457945126,0.0,0.0,6632.360315994116,0,60,1,7182,201709866,,,,88.0,1.0,5.0,1.0,0.0,1.0,1.0,2263.0708315703537,0.0,912.0,0.0,0.0,14764.0,0,1,3,35.0,8,6.0,1,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1227.4879457945126,0.18507558204194552,0.08314060862872613,14764.0,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +9867,2,62.0,1,0.0,9,111,2,75,74,7.0,0.0,0.0,457.61612014269105,0.0,849.274532180747,30577.17331690806,50,41,1,7183,201709867,,,400.0,,0.0,3.0,6.0,0.0,2.0,1.5,1902.209785189811,0.0,340.0,480.0,0.0,39230.0,5,5,3,110.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1306.890652323438,0.04274072814967416,0.03331355218769916,26153.333333333332,7,4,7,7_1,7_2,7_0_0 +9868,2,48.0,2,0.0,1,112,2,52,13,9.0,0.0,0.0,1870.842373524531,106.15931652259337,0.0,47991.58404849744,31,50,1,7184,201709868,,,,,3.0,0.0,7.0,2.0,4.0,2.5,1910.991302973753,0.0,1390.0,0.0,0.0,91364.0,1,1,1,170.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1977.0016900471244,0.04119475798192625,0.021638738343845765,36545.6,9,5,9,9_1,9_0,9_1_0 +9869,2,70.0,4,0.0,1,300,4,0,78,3.0,0.0,0.0,1655.4936111044412,325.555237335953,0.0,25079.040315994116,0,70,1,7185,201709869,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2022.6103548112937,0.0,1230.0,0.0,0.0,14910.0,0,5,1,54.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1981.0488484403943,0.07899221116435559,0.13286712598527126,14910.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9870,2,56.0,3,0.0,1,112,4,0,23,6.0,0.0,0.0,880.2380663921175,0.0,0.0,46319.18,0,20,1,7187,201709870,,,,,1.0,2.0,6.0,0.0,1.0,1.0,2690.9163488465256,0.0,654.0,0.0,0.0,23184.0,0,1,3,160.0,9,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,880.2380663921175,0.019003748909028992,0.03796748043444261,23184.0,6,3,6,6_1,6_0,6_1_0 +9871,2,54.0,1,0.0,1,112,4,52,48,9.0,0.0,0.0,4313.704897227426,159.23897478389006,0.0,47481.11087530163,31,42,1,7188,201709871,,,291.0,,2.0,2.0,8.0,0.0,2.0,1.5,1720.2626637709184,0.0,3205.0,0.0,0.0,54727.0,1,1,1,300.0,4,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4472.943872011316,0.09420470139711955,0.08173193984708309,36484.666666666664,9,5,9,9_1,9_0,9_1_0 +9872,2,29.0,2,0.0,9,112,2,0,65,5.0,0.0,0.0,242.26735772260116,0.0,371.5576078290768,10990.0,0,31,2,7189,201709872,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3086.375649323156,0.0,180.0,210.0,0.0,19162.0,0,1,1,49.0,9,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,613.8249655516779,0.055853045091144485,0.03203344982526239,19162.0,5,3,5,5_0,5_1,5_0_0 +9873,2,68.0,3,0.0,5,112,5,75,75,7.0,0.0,485.77421184720396,1345.929765125562,0.0,0.0,26465.98,50,41,1,719,201709873,,,200.0,,0.0,1.0,4.0,0.0,2.0,1.5,1692.4165622180096,0.0,1000.0,0.0,0.0,36990.0,5,5,1,77.0,7,2.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1831.703976972766,0.06920975444600072,0.04951889637666304,24660.0,7,4,7,7_1,7_1,7_0_0 +9874,2,44.0,3,0.0,9,112,2,62,46,8.0,0.0,0.0,1675.6825575813245,0.0,0.0,64498.24,43,43,1,7190,201709874,,,290.0,,2.0,1.0,4.0,1.0,3.0,2.0,451.90134868828426,0.0,1245.0,0.0,0.0,62942.0,1,1,2,110.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1675.6825575813245,0.025980283455507073,0.026622645571817302,31471.0,8,4,8,8_1,8_1,8_0_0 +9875,2,69.0,4,0.0,1,112,2,56,78,5.0,1586.456009138882,13.8792631956344,816.9793674312161,233.5504963497054,0.0,18938.021750603253,71,71,1,7191,201709875,,,237.0,,1.0,4.0,5.0,0.0,2.0,1.5,1997.7171514646293,0.0,607.0,0.0,0.0,28603.0,1,5,1,140.0,9,1.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2650.8651361154384,0.1399758206546044,0.09267787071689818,19068.666666666668,5,3,5,5_1,5_1,5_1_0 +9876,2,78.0,1,0.0,6,300,4,75,77,6.0,0.0,0.0,2414.597998635258,226.47320858153253,0.0,26097.539999999997,70,50,1,7192,201709876,,,330.0,,0.0,2.0,5.0,0.0,2.0,1.5,2229.8004966521867,0.0,1794.0,0.0,0.0,31296.0,5,5,1,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2641.0712072167908,0.10120000610083521,0.08439005646781668,20864.0,5,3,5,5_1,5_0,5_0_0 +9877,2,84.0,3,0.0,2,400,4,72,72,2.0,0.0,0.0,1675.6825575813245,346.7871006404717,0.0,19092.36,70,44,1,7194,201709877,,,405.0,,0.0,2.0,3.0,0.0,2.0,1.5,2932.0539161203637,0.0,1245.0,0.0,0.0,20039.0,5,5,1,98.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2022.4696582217962,0.10593083611569215,0.10092667589309827,13359.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +9878,2,37.0,4,0.0,6,112,1,68,63,4.0,0.0,0.0,1195.185631431499,0.0,0.0,30608.879999999997,71,71,2,7195,201709878,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2000.039174777956,0.0,888.0,0.0,0.0,35139.0,1,1,2,86.0,10,5.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1195.185631431499,0.03904702267549479,0.03401308037882407,16732.85714285714,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +9879,2,64.0,3,0.0,5,112,6,77,77,7.0,0.0,0.0,713.3427755165478,53.079658261296686,0.0,41934.86000000001,50,50,1,7197,201709879,,,570.0,,0.0,2.0,4.0,0.0,2.0,1.5,3263.139150078076,0.0,530.0,0.0,0.0,35848.0,5,5,1,132.0,8,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,766.4224337778445,0.018276499165082328,0.021379782241069085,23898.666666666668,7,4,7,7_1,7_1,7_0_0 +9880,1,30.0,3,177.0,1,300,2,0,52,4.0,1586.456009138882,0.0,0.0,0.0,0.0,11911.960000000001,0,60,1,7198,201709880,,,,,1.0,0.0,5.0,1.0,2.0,1.3,460.20212327868154,0.0,0.0,0.0,0.0,21324.0,0,1,3,135.0,0,0.0,2,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1586.456009138882,0.13318177773757484,0.07439767441093989,16403.076923076922,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +9881,2,62.0,2,0.0,1,222,4,77,72,4.0,0.0,0.0,1897.7609688270425,159.23897478389006,0.0,17360.09087530163,71,50,1,72,201709881,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1497.0068606314055,0.0,1410.0,0.0,0.0,23846.0,7,5,1,75.0,1,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2056.9999436109324,0.11849015989527141,0.08626184448590675,15897.333333333334,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9882,2,85.0,3,0.0,1,211,2,72,75,4.0,0.0,0.0,753.7206684703146,0.0,3237.8591539390977,28707.05812647724,41,30,1,720,201709882,,,225.0,,0.0,3.0,4.0,0.0,2.0,1.5,2576.1613298302555,0.0,560.0,1830.0,0.0,24631.0,5,5,1,115.0,1,3.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3991.5798224094124,0.13904524123730666,0.16205512656446805,16420.666666666668,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +9883,2,63.0,4,0.0,7,112,2,77,72,2.0,2379.684013708323,0.0,1227.4879457945126,0.0,0.0,51033.04,50,50,1,7200,201709883,,,,,0.0,2.0,4.0,0.0,2.0,1.5,3080.5562166283253,0.0,912.0,0.0,0.0,20377.0,6,5,1,125.0,8,3.0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3607.1719595028358,0.07068307040895146,0.17702173820988545,13584.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +9884,2,49.0,2,0.0,9,111,2,0,46,10.0,0.0,0.0,2422.6735772260117,0.0,0.0,33459.740000000005,0,50,1,7201,201709884,,,,,1.0,1.0,5.0,0.0,1.0,1.0,2460.268928135106,0.0,1800.0,0.0,0.0,39390.0,0,1,3,106.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2422.6735772260117,0.0724056306841001,0.061504787439096514,39390.0,9,5,9,9_1,9_3,9_0_0 +9885,2,61.0,4,0.0,4,212,4,0,,8.0,0.0,0.0,335.346975761524,0.0,537.1280087442087,36990.152265466575,0,44,1,7202,201709885,,,220.0,,0.0,2.0,8.0,0.0,1.0,1.0,1753.949095054417,517.7348186523601,35.0,0.0,0.0,29280.0,0,5,1,180.0,1,0.0,1,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,872.4749845057327,0.02358668269987798,0.029797642913447154,29280.0,8,4,8,8_1,8_0,8_0_1 +9886,2,62.0,4,0.0,5,111,2,78,74,3.0,0.0,416.377895869032,2422.6735772260117,0.0,0.0,32527.560000000005,70,60,1,7204,201709886,,,800.0,,0.0,4.0,5.0,0.0,2.0,1.5,2865.4063406372316,0.0,1800.0,0.0,0.0,21318.0,7,5,1,112.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2839.0514730950435,0.08728141530121052,0.13317625823693796,14212.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9887,2,52.0,1,0.0,6,112,5,0,52,6.0,0.0,0.0,1130.581002705472,0.0,0.0,15430.006722052929,0,50,1,7206,201709887,,,200.0,,1.0,2.0,4.0,0.0,1.0,1.0,2848.8741605408813,0.0,840.0,0.0,0.0,21706.0,0,1,1,98.0,9,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1130.581002705472,0.07327158199416847,0.05208610534900359,21706.0,6,3,6,6_1,6_1,6_0_0 +9888,2,66.0,2,0.0,5,112,2,71,71,5.0,0.0,0.0,2691.859530251124,0.0,0.0,47506.805846751304,70,50,1,7208,201709888,,,585.0,,0.0,3.0,6.0,0.0,2.0,1.5,2354.3215247472217,0.0,2000.0,0.0,0.0,32568.0,5,5,1,125.0,8,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2691.859530251124,0.05666260827837163,0.08265351050881614,21712.0,6,3,6,6_1,6_0,6_0_0 +9889,2,30.0,3,0.0,1,111,1,43,43,9.0,0.0,0.0,66.80781518208181,0.0,124.49493201380464,44447.43119129575,20,33,1,7209,201709889,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1317.6975666256033,120.0,0.0,0.0,0.0,51639.0,1,1,2,117.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,191.30274719588647,0.004304022573825363,0.0037046175796565865,34426.0,9,5,9,9_1,9_2,9_1_0 +9890,2,36.0,2,0.0,7,111,2,0,37,6.0,0.0,0.0,414.2084541289072,0.0,771.8685784855887,25385.94,0,30,2,721,201709890,,,193.0,339.0,1.0,0.0,2.0,0.0,1.0,1.0,2488.3129086145877,744.0,0.0,0.0,0.0,24967.0,0,1,3,50.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1186.077032614496,0.04672180871043168,0.047505788945988545,24967.0,7,4,7,7_0,7_3,7_0_0 +9891,1,67.0,4,92.0,2,300,2,0,78,3.0,0.0,0.0,444.15682249143543,0.0,1486.2304313163072,14734.52,0,71,2,7211,201709891,,,180.0,248.0,0.0,1.0,2.0,0.0,1.0,1.0,2426.923816457133,0.0,330.0,840.0,0.0,15310.0,0,5,3,37.0,0,1.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1930.3872538077426,0.13101120727432874,0.12608669195347763,15310.0,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +9892,1,33.0,5,494.0,9,111,4,0,62,1.0,0.0,0.0,519.5288893384669,0.0,0.0,16866.44,0,50,2,7212,201709892,,,,,1.0,0.0,3.0,3.0,4.0,1.9,807.3418402715293,0.0,386.0,0.0,0.0,16009.0,0,1,3,68.0,8,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,519.5288893384669,0.03080252201048158,0.03245230116424929,8425.789473684212,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9893,2,54.0,4,0.0,5,111,2,0,75,3.0,0.0,291.4645271083224,1493.9820392893737,0.0,2547.823596542241,27743.2658467513,0,33,1,7214,201709893,,,370.0,800.0,0.0,3.0,5.0,0.0,1.0,1.0,2688.42966422781,0.0,1110.0,1440.0,0.0,17434.0,0,7,3,90.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4333.270162939937,0.15619178314752577,0.24855283715383372,17434.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9894,1,74.0,3,266.0,5,111,1,0,86,2.0,0.0,0.0,150.74413369406295,0.0,166.31626255206297,7768.739999999999,0,70,2,7215,201709894,,,,,0.0,4.0,2.0,0.0,1.0,1.0,2195.0156315126465,0.0,112.0,94.0,0.0,12752.0,0,5,3,45.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,317.06039624612595,0.04081233201859323,0.024863581888811635,12752.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +9895,2,47.0,2,0.0,1,120,5,48,65,7.0,0.0,624.566843803548,1476.4849523427415,212.31863304518674,0.0,58979.52,31,50,1,7216,201709895,,,214.0,,2.0,1.0,3.0,1.0,3.0,1.8,2248.989482996794,0.0,1097.0,0.0,0.0,45405.0,1,1,2,90.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2313.370429191476,0.039223283424339096,0.050949684598424756,25225.0,7,4,7,7_1,7_0,7_1_0 +9896,1,32.0,5,379.0,1,111,6,0,85,1.0,0.0,0.0,551.8312037014804,1047.438589689588,0.0,8618.210875301627,0,71,2,7217,201709896,,,,51.0,0.0,0.0,1.0,1.0,2.0,1.3,862.6713904278787,0.0,410.0,0.0,0.0,13278.0,0,6,3,25.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1599.2697933910686,0.18556865415933513,0.12044508159294084,10213.846153846154,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +9897,2,25.0,3,0.0,99,111,2,0,55,2.0,0.0,0.0,596.2468859506239,0.0,247.7050718860512,23619.656722052932,0,31,2,7220,201709897,,,,675.0,1.0,0.0,2.0,1.0,2.0,1.3,1112.8235707022613,0.0,443.0,140.0,0.0,17241.0,0,1,3,47.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,843.9519578366751,0.03573091547298838,0.0489502904609173,13262.307692307691,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +9898,2,93.0,3,0.0,1,221,4,0,71,6.0,0.0,0.0,4829.195997270516,175.16287226227908,0.0,22466.92,0,71,1,7222,201709898,,,,,0.0,4.0,8.0,0.0,1.0,1.0,1901.695960146958,0.0,3588.0,0.0,0.0,20532.0,0,5,1,135.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,5004.358869532795,0.2227434321007417,0.2437346030358852,20532.0,5,3,5,5_1,5_2,5_1_0 +9899,2,68.0,3,0.0,1,111,2,0,77,5.0,158.64560091388822,0.0,954.2382935174019,0.0,1778.202612263843,16062.430875301628,0,60,1,7225,201709899,,,240.0,,0.0,3.0,5.0,0.0,1.0,1.0,2223.675671508863,1714.0,0.0,0.0,0.0,21000.0,0,5,1,60.0,9,7.0,1,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2891.0865066951333,0.17999059601499098,0.1376707860331016,21000.0,5,3,5,5_1,5_3,5_1_0 +9900,2,84.0,3,0.0,4,111,6,0,86,1.0,1799.0411143634924,0.0,740.261370819059,169.8549064361494,0.0,15347.679999999998,0,71,1,7227,201709900,,,575.0,,0.0,4.0,5.0,0.0,1.0,1.0,1840.642810989014,0.0,550.0,0.0,0.0,7798.0,0,6,1,130.0,9,7.0,1,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2709.157391618701,0.17651901731197817,0.3474169519900873,7798.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +9901,2,62.0,3,0.0,2,111,2,0,33,9.0,0.0,0.0,471.07541779394666,0.0,2653.9829130648345,19901.159999999996,0,60,1,7228,201709901,,,100.0,,1.0,2.0,5.0,0.0,1.0,1.0,2092.2779399252436,0.0,350.0,1500.0,0.0,33610.0,0,1,1,105.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3125.058330858781,0.15702895363178737,0.09298001579466769,33610.0,9,5,9,9_1,9_2,9_0_1 +9902,1,32.0,3,303.0,4,111,2,0,52,3.0,0.0,0.0,94.21508355878933,0.0,74.31152156581537,18228.06,0,42,2,723,201709902,,,,,1.0,0.0,4.0,2.0,3.0,1.6,918.4922129810891,0.0,70.0,42.0,0.0,22516.0,0,1,3,62.0,5,4.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,168.5266051246047,0.009245449330570818,0.007484748850799641,14072.5,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +9903,2,57.0,3,0.0,9,120,5,62,52,4.0,396.6140022847205,138.792631956344,1211.3367886130059,159.23897478389006,0.0,41391.2445718027,50,43,1,7230,201709903,,,,,2.0,1.0,5.0,1.0,3.0,2.0,1987.7306899331968,0.0,900.0,0.0,0.0,36051.0,1,1,1,100.0,0,0.0,4,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1905.9823976379603,0.046047960561601195,0.052869057658260804,18025.5,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9904,2,52.0,3,0.0,6,111,2,0,55,5.0,0.0,0.0,457.61612014269105,0.0,987.2816436601183,11716.76,0,50,2,7231,201709904,,,150.0,447.0,1.0,2.0,4.0,0.0,1.0,1.0,2707.2800559936827,0.0,340.0,558.0,0.0,20390.0,0,1,3,90.0,4,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1444.8977638028093,0.12331888370187742,0.07086305854844577,20390.0,5,3,5,5_0,5_1,5_0_0 +9905,2,54.0,2,0.0,1,120,5,0,52,6.0,0.0,1249.133687607096,944.8426951181444,164.54694061001973,0.0,30265.46,0,41,1,7232,201709905,,,318.0,,1.0,0.0,3.0,0.0,1.0,1.0,2676.8633516826694,0.0,702.0,0.0,0.0,21870.0,0,1,1,75.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2358.52332333526,0.0779278862219593,0.1078428588630663,21870.0,6,3,6,6_1,6_0,6_1_0 +9906,1,45.0,3,143.0,99,111,1,0,54,3.0,0.0,0.0,674.3108123279065,0.0,364.4803200609039,18520.48,0,50,2,7233,201709906,,,231.0,225.0,2.0,1.0,4.0,1.0,2.0,1.5,3332.5456191334456,0.0,501.0,206.0,0.0,21207.0,0,1,3,87.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1038.7911323888104,0.05608878022539429,0.04898340794967748,14138.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +9907,2,55.0,3,0.0,4,112,2,0,35,2.0,647.274051728664,0.0,479.6893682907502,28.309151072691566,0.0,14387.98,0,60,1,7234,201709907,,,200.0,,1.0,2.0,3.0,0.0,1.0,1.0,1581.9412742005554,0.0,356.4,0.0,0.0,11543.0,0,1,1,80.0,7,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1155.2725710921056,0.08029428530565831,0.10008425635381665,11543.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +9908,1,57.0,3,272.0,99,111,1,0,78,1.0,0.0,0.0,538.3719060502248,0.0,1813.5549905943035,7614.14,0,71,2,7237,201709908,999999.0,645.0,,76.0,1.0,4.0,5.0,1.0,2.0,1.5,3403.715873530349,0.0,400.0,1025.0,0.0,12304.0,0,6,3,93.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2351.9268966445284,0.30888936854911103,0.19115140577410017,8202.666666666666,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9910,2,24.0,2,0.0,9,111,4,46,54,8.0,0.0,0.0,1103.6624074029608,0.0,0.0,40630.64,31,31,2,7239,201709910,,,,690.0,2.0,0.0,2.0,0.0,2.0,1.5,4068.0675450465674,0.0,820.0,0.0,0.0,44909.0,1,1,3,42.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1103.6624074029608,0.02716330354143968,0.024575528455386686,29939.333333333332,8,4,8,8_0,8_4,8_0_0 +9911,2,33.0,2,0.0,3,111,4,47,65,6.0,0.0,0.0,376.8603342351573,0.0,0.0,58470.12206659738,31,71,2,724,201709911,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2964.8281499932923,0.0,280.0,0.0,0.0,37692.0,4,1,2,82.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,376.8603342351573,0.006445348853657496,0.00999841701780636,20940.0,5,3,5,5_0,5_3,5_0_1 +9912,2,75.0,3,0.0,5,111,6,72,72,3.0,1903.7472109666587,0.0,1615.1157181506744,70.77287768172891,0.0,34875.899999999994,50,50,1,7240,201709912,,,1000.0,,0.0,2.0,5.0,0.0,2.0,1.5,1292.1964522751878,0.0,1200.0,0.0,0.0,22340.0,5,5,1,90.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3589.635806799062,0.10292596913051885,0.16068199672332417,14893.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +9913,2,61.0,3,0.0,4,111,2,85,75,3.0,1031.1964059402735,0.0,1278.633276869284,40.694404666994124,0.0,29647.207849749775,70,50,1,7241,201709913,,,130.0,,1.0,0.0,6.0,1.0,3.0,2.0,2266.6430576597913,0.0,950.0,0.0,0.0,33210.0,6,5,1,150.0,6,5.0,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2350.5240874765514,0.07928315203876408,0.07077759974334692,16605.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +9914,1,44.0,4,215.0,99,400,2,0,63,1.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,15215.480000000001,0,42,2,7242,201709914,,,515.0,,1.0,0.0,3.0,1.0,2.0,1.5,772.7577310420438,750.0,0.0,0.0,0.0,7132.0,0,4,3,92.0,0,0.0,2,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1195.6421699742903,0.07858064089823588,0.16764472377654097,4754.666666666667,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +9915,2,57.0,4,0.0,8,111,2,45,52,9.0,0.0,416.377895869032,1009.4473238441715,0.0,1132.3660429076626,35749.45999999999,42,50,1,7243,201709915,,,,,2.0,1.0,6.0,0.0,2.0,1.5,1671.4909511225537,0.0,750.0,640.0,0.0,48906.0,1,1,2,100.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2558.191262620866,0.07155887844518118,0.0523083315466582,32604.0,9,5,9,9_1,9_2,9_0_0 +9916,2,46.0,4,0.0,8,120,2,85,67,5.0,3966.1400228472053,138.792631956344,1351.5011482607329,0.0,386.59884453551996,38504.59773016024,50,60,1,7245,201709916,,,100.0,,1.0,3.0,5.0,1.0,4.0,2.5,4130.936914506107,372.64056129705125,850.0,0.0,0.0,47471.0,6,1,1,160.0,0,0.0,5,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5843.032647599803,0.1517489596579532,0.12308636109624407,18988.4,5,3,5,5_1,5_0,5_0_0 +9917,1,44.0,5,374.0,4,111,1,85,68,1.0,0.0,0.0,53.83719060502248,0.0,26.539829130648343,16256.6,71,71,2,7247,201709917,,,,,1.0,0.0,2.0,1.0,3.0,1.8,3644.183915257782,0.0,40.0,15.0,0.0,14378.0,4,1,3,48.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,80.37701973567081,0.004944270003301479,0.0055902781844255674,7987.777777777777,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +9918,1,46.0,4,228.0,1,111,2,0,85,2.0,0.0,0.0,538.3719060502248,0.0,884.6609710216114,10332.52,0,60,1,7248,201709918,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3500.9359160139857,0.0,400.0,500.0,0.0,12456.0,0,7,3,28.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1423.032877071836,0.13772369925940972,0.11424477176235036,12456.0,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +9919,1,27.0,4,285.0,99,111,2,0,85,1.0,0.0,0.0,306.87198644862815,0.0,1932.0995607111995,15400.72,0,50,2,7250,201709919,,,374.0,,0.0,0.0,2.0,2.0,3.0,1.6,739.6162467998358,0.0,228.0,1092.0,0.0,14100.0,0,6,3,41.0,6,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2238.9715471598274,0.1453809657704203,0.15879230830920762,8812.5,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9920,2,82.0,2,0.0,1,111,2,45,74,8.0,0.0,0.0,471.07541779394666,0.0,2760.1422295874277,33592.631191295746,60,70,1,7251,201709920,,,,,1.0,1.0,3.0,0.0,2.0,1.5,2960.177372886077,0.0,350.0,1560.0,0.0,42021.0,5,5,1,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3231.2176473813743,0.09618828691866868,0.07689530585615226,28014.0,8,4,8,8_1,8_4,8_1_0 +9921,1,33.0,3,341.0,2,111,1,0,84,2.0,0.0,0.0,387.48532805607454,0.0,722.0706056800669,13318.999999999998,0,30,2,7253,201709921,,,,9.0,0.0,0.0,3.0,1.0,2.0,1.3,1087.3992705660821,696.0,0.0,0.0,0.0,14884.0,0,3,3,56.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1109.5559337361415,0.08330624924815239,0.07454689154368056,11449.23076923077,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +9922,1,37.0,3,310.0,9,111,2,0,55,4.0,0.0,0.0,504.72366192208574,0.0,1910.8676974066807,23239.26,0,31,2,7254,201709922,,,648.0,217.0,1.0,0.0,4.0,2.0,3.0,1.6,658.9739382903819,0.0,375.0,1080.0,0.0,26240.0,0,1,3,92.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2415.5913593287664,0.10394441816687651,0.09205759753539507,16400.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +9923,2,53.0,3,0.0,8,111,2,45,43,9.0,0.0,0.0,645.8088800934576,0.0,1203.4510094667783,99527.38,20,33,2,7255,201709923,,,100.0,,2.0,0.0,3.0,2.0,4.0,2.5,2618.203627817262,1160.0,0.0,0.0,0.0,94928.0,1,1,1,75.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1849.259889560236,0.01858041364657882,0.019480657862382393,37971.2,9,5,9,9_0,9_4,9_0_0 +9924,2,56.0,2,0.0,5,111,2,54,47,9.0,0.0,316.4472008604643,636.6247789043908,0.0,1226.1401058359534,58522.979999999996,50,42,1,7256,201709924,,,84.0,,2.0,3.0,4.0,0.0,2.0,1.5,1622.787834106451,0.0,473.0,693.0,0.0,49115.0,1,1,1,90.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2179.2120856008087,0.03723686123982082,0.04436958333708253,32743.333333333332,9,5,9,9_1,9_3,9_0_0 +9925,2,92.0,1,0.0,4,120,2,77,75,9.0,0.0,416.377895869032,3526.3359846289723,0.0,0.0,29677.63087530163,70,41,1,7258,201709925,,,242.0,,0.0,1.0,5.0,0.0,2.0,1.5,1894.7022604894528,0.0,2620.0,0.0,0.0,54117.0,5,5,5,90.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3942.713880498004,0.13285136866430994,0.07285536671467384,36078.0,9,5,9,9_1,9_1,9_0_1 +9926,2,76.0,5,0.0,1,111,5,77,78,2.0,0.0,0.0,578.7497990039916,159.23897478389006,0.0,15821.8258467513,71,71,1,7259,201709926,,,650.0,,1.0,1.0,5.0,1.0,3.0,2.0,3327.40515903246,0.0,430.0,0.0,0.0,26800.0,5,5,1,90.0,5,4.0,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,737.9887737878817,0.04664371741516881,0.027536894544323943,13400.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +9927,1,63.0,4,234.0,99,112,2,0,68,1.0,0.0,0.0,279.95339114611687,0.0,1061.5931652259337,3285.1108753016288,0,71,2,726,201709927,,,70.0,,1.0,0.0,2.0,0.0,1.0,1.0,1956.8845481105684,0.0,208.0,600.0,0.0,8628.0,0,4,3,40.0,8,2.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1341.5465563720506,0.40837177413346026,0.15548754709921775,8628.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +9928,2,69.0,2,0.0,1,111,2,0,75,7.0,0.0,0.0,632.5869896090142,0.0,2034.7202333497064,25962.219999999998,0,41,1,7260,201709928,,,300.0,,0.0,2.0,5.0,0.0,1.0,1.0,1220.8519153013926,0.0,470.0,1150.0,0.0,24660.0,0,5,1,90.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2667.3072229587206,0.10273802559868613,0.10816330993344365,24660.0,7,4,7,7_1,7_2,7_1_0 +9929,2,56.0,1,0.0,8,112,2,43,37,10.0,0.0,1099.2376450942445,3038.0326658414183,0.0,0.0,55088.431693502615,33,60,1,7261,201709929,,,356.0,,2.0,2.0,5.0,0.0,2.0,1.5,2903.0179459661954,0.0,2257.2,0.0,0.0,80697.0,1,1,1,240.0,8,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4137.270310935663,0.07510234333687942,0.051269196016402875,53798.0,10,5,10,10_1,10_0,10_0_0 +9930,0,33.0,2,0.0,4,111,1,34,34,7.0,0.0,0.0,804.9512363243938,0.0,398.9485298470713,24749.361907651462,0,0,2,7262,201709930,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2298.0296208825894,384.5443570051515,439.0,0.0,0.0,41470.0,1,1,5,69.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1203.8997661714652,0.04864366890199581,0.029030618909367378,27646.666666666668,8,4,8,8_0,8_3,8_0_1 +9931,2,71.0,3,0.0,6,300,5,86,74,6.0,0.0,902.152107716236,376.8603342351573,233.5504963497054,0.0,41752.390421759264,71,70,1,7263,201709931,,,150.0,,0.0,3.0,4.0,0.0,2.0,1.5,1725.5495140916196,0.0,280.0,0.0,0.0,34960.0,6,5,1,125.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1512.5629383010985,0.03622697821662508,0.043265530271770554,23306.666666666668,6,3,6,6_1,6_0,6_0_0 +9932,1,48.0,5,272.0,1,111,2,0,37,1.0,0.0,0.0,924.1747766854651,0.0,1722.1798928576309,12510.560000000001,0,44,2,7264,201709932,,,400.0,,2.0,2.0,5.0,2.0,3.0,1.8,712.9005094238719,1660.0,0.0,0.0,0.0,12814.0,0,4,3,130.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2646.354669543096,0.21152967329544767,0.20652057667731355,7118.888888888889,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +9933,2,46.0,3,0.0,4,112,2,38,37,10.0,1110.5192063972174,0.0,1749.7086946632305,0.0,0.0,88218.31999999999,20,50,1,7266,201709933,,,800.0,,2.0,1.0,7.0,2.0,4.0,2.1,1933.1715101505513,0.0,1300.0,0.0,0.0,209027.0,4,1,3,215.0,9,2.0,4,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2860.227901060448,0.032422153369735994,0.013683533232838092,99536.66666666666,10,5,10,10_1,10_1,10_0_1 +9934,2,47.0,3,0.0,9,111,6,52,37,7.0,0.0,0.0,923.3078188761355,0.0,1388.91772450393,40659.340000000004,30,50,1,7267,201709934,,,638.0,,2.0,0.0,5.0,2.0,4.0,2.1,1915.6807232184876,0.0,686.0,785.0,0.0,56163.0,1,1,2,108.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2312.2255433800656,0.05686825077288676,0.04116990800669597,26744.285714285714,7,4,7,7_1,7_2,7_0_0 +9935,2,55.0,2,0.0,4,111,6,67,22,7.0,0.0,0.0,2826.45250676368,0.0,0.0,67202.59087530163,50,31,1,7268,201709935,,,244.0,,4.0,0.0,6.0,2.0,4.0,2.5,1530.2861703821939,0.0,2100.0,0.0,0.0,66190.0,1,1,1,160.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2826.45250676368,0.042058683600582146,0.04270210767130503,26476.0,7,4,7,7_1,7_3,7_0_1 +9936,2,24.0,2,0.0,1,111,1,47,38,8.0,0.0,0.0,484.5347154452023,26.539829130648343,0.0,33053.3,30,12,2,727,201709936,,,,650.0,2.0,0.0,3.0,0.0,2.0,1.5,3895.5290458905492,0.0,360.0,0.0,0.0,42239.0,1,1,3,64.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,511.07454457585067,0.01546213372267975,0.012099589113753893,28159.333333333332,8,4,8,8_0,8_2,8_1_0 +9937,2,74.0,1,0.0,2,111,2,75,75,9.0,0.0,0.0,538.3719060502248,0.0,1521.6168701571717,20267.671191295747,33,33,1,7272,201709937,,,420.0,,0.0,2.0,3.0,0.0,2.0,1.5,1653.5016453257122,0.0,400.0,860.0,0.0,54466.0,5,4,1,84.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2059.9887762073963,0.10163914525572573,0.037821554294558,36310.666666666664,9,5,9,9_1,9_3,9_0_1 +9938,2,86.0,3,0.0,1,112,4,72,72,4.0,0.0,0.0,1841.2319186917687,0.0,0.0,51878.14134949915,50,50,2,7273,201709938,,,,700.0,0.0,4.0,3.0,0.0,2.0,1.5,2971.6905358816875,0.0,1368.0,0.0,0.0,28352.0,5,5,3,64.0,9,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1841.2319186917687,0.0354914781215373,0.06494187072135188,18901.333333333332,5,3,5,5_0,5_1,5_1_0 +9939,2,41.0,2,0.0,1,111,2,47,22,10.0,0.0,0.0,307.31594983757634,0.0,572.6766872635013,39147.0,12,20,1,7276,201709939,,,154.0,,2.0,0.0,5.0,1.0,3.0,1.8,1893.347994560341,552.0,0.0,0.0,0.0,79670.0,1,1,2,90.0,6,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,879.9926371010777,0.02247918453779543,0.011045470529698478,44261.11111111111,10,5,10,10_1,10_2,10_1_0 +9940,2,66.0,4,0.0,5,111,1,0,77,9.0,0.0,0.0,535.6800465199736,0.0,0.0,17940.64,0,71,2,7277,201709940,,,,357.0,0.0,2.0,2.0,0.0,1.0,1.0,2688.743258319992,0.0,398.0,0.0,0.0,31511.0,0,5,3,49.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,535.6800465199736,0.029858469180585177,0.016999779331661122,31511.0,8,4,8,8_0,8_4,8_0_0 +9941,2,39.0,2,0.0,1,112,4,67,31,9.0,0.0,0.0,2261.162005410944,56.61830214538313,0.0,35456.44,50,10,1,728,201709941,,,216.0,,2.0,0.0,4.0,2.0,4.0,2.1,2203.4256246844793,0.0,1680.0,0.0,0.0,70170.0,1,1,2,100.0,5,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2317.780307556327,0.06536979763214601,0.033030929279696836,33414.28571428571,9,5,9,9_1,9_0,9_1_0 +9942,2,86.0,2,0.0,2,112,2,0,77,8.0,0.0,0.0,1615.1157181506744,0.0,2523.0530893536356,20344.6,0,50,1,7280,201709942,,,465.0,,0.0,2.0,6.0,0.0,1.0,1.0,2235.275258334542,0.0,1200.0,1426.0,0.0,30968.0,0,5,5,200.0,9,2.0,1,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4138.16880750431,0.20340379302145584,0.13362725418187518,30968.0,8,4,8,8_1,8_1,8_0_1 +9943,2,66.0,2,0.0,1,400,2,75,75,10.0,0.0,0.0,1520.900634591885,4954.101437721024,0.0,51436.74031599411,50,31,1,7281,201709943,,,361.0,,0.0,6.0,6.0,0.0,2.0,1.5,1774.222447017829,0.0,1130.0,0.0,0.0,68413.0,5,5,1,125.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6475.002072312909,0.12588282291091307,0.09464578475308653,45608.666666666664,10,5,10,10_1,10_0,10_1_0 +9944,2,24.0,3,0.0,5,222,2,0,52,6.0,1903.7472109666587,0.0,738.9154410539335,70.77287768172891,0.0,32168.690875301632,0,43,1,7283,201709944,,,370.0,,1.0,3.0,6.0,1.0,3.0,2.0,1636.7637836320348,0.0,549.0,0.0,0.0,41425.0,0,1,1,118.0,1,0.0,4,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2713.435529702321,0.08435020064138306,0.06550236643819725,20712.5,5,3,5,5_1,5_0,5_0_0 +9945,2,32.0,2,0.0,99,111,2,63,65,7.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,25770.6,43,71,1,7286,201709945,,,300.0,,2.0,0.0,4.0,0.0,2.0,1.5,2057.920292985586,1400.0,0.0,0.0,0.0,40031.0,4,1,3,90.0,5,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2231.8653839520084,0.08660509976298605,0.05575342569388745,26687.333333333332,7,4,7,7_1,7_2,7_0_0 +9946,1,19.0,2,408.0,6,111,2,0,85,2.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,12284.940000000002,0,60,2,7287,201709946,,,190.0,,0.0,0.0,2.0,2.0,3.0,1.6,1048.8054563970393,1000.0,0.0,0.0,0.0,17871.0,0,6,3,55.0,7,5.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1594.1895599657205,0.12976779373490796,0.08920539197390859,11169.375,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9947,2,79.0,3,0.0,2,111,6,0,71,4.0,1104.173382360662,0.0,893.9998790353394,53.079658261296686,161.08285188979997,13815.154929535058,0,71,1,7288,201709947,,,,,0.0,4.0,5.0,0.0,1.0,1.0,2042.932439227942,155.266900540438,600.0,0.0,0.0,17557.0,0,5,1,115.0,9,7.0,1,8,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2212.335771547098,0.16013832510972448,0.1260087584181294,17557.0,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +9948,2,28.0,3,0.0,99,111,2,43,63,7.0,0.0,0.0,1769.897641140114,60.15694602946958,0.0,44116.420000000006,30,43,2,7290,201709948,,,,443.0,2.0,0.0,3.0,0.0,2.0,1.5,3102.0507138118537,0.0,1315.0,0.0,0.0,38572.0,1,1,3,51.0,8,7.0,3,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1830.0545871695836,0.04148239107274759,0.04744515677614808,25714.666666666668,7,4,7,7_0,7_3,7_0_0 +9949,2,42.0,3,0.0,7,111,4,0,43,7.0,0.0,0.0,1211.3367886130059,0.0,0.0,42711.62,0,33,2,7291,201709949,,,350.0,525.0,1.0,0.0,3.0,2.0,3.0,1.6,1276.2561006444369,0.0,900.0,0.0,0.0,39070.0,0,1,3,80.0,6,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1211.3367886130059,0.028360825194947085,0.03100426896885093,24418.75,7,4,7,7_0,7_2,7_0_0 +9950,2,59.0,2,0.0,2,111,2,37,33,10.0,0.0,0.0,105.22230891177885,0.0,196.0795179217423,54016.259999999995,41,42,1,7292,201709950,,,,,2.0,3.0,6.0,0.0,2.0,1.5,1674.9461673683036,189.0,0.0,0.0,0.0,64410.0,1,1,2,150.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,301.30182683352115,0.005577983866960082,0.004677873417691681,42940.0,10,5,10,10_1,10_3,10_0_1 +9951,1,44.0,5,410.0,1,111,2,0,37,2.0,0.0,0.0,881.8631604034799,0.0,1643.3331025822213,33440.71087530163,0,30,2,7294,201709951,,,,598.0,1.0,0.0,5.0,2.0,3.0,1.8,895.1714878850256,1584.0,0.0,0.0,0.0,22612.0,0,4,3,115.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,2525.196262985701,0.07551263704895521,0.11167505143223515,12562.222222222223,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +9952,2,81.0,1,0.0,9,112,4,77,78,8.0,0.0,0.0,2643.4060587066037,0.0,0.0,25754.72,50,50,1,7298,201709952,,,130.0,,0.0,2.0,7.0,0.0,2.0,1.5,1889.5093114978545,0.0,1964.0,0.0,0.0,44462.0,5,5,1,225.0,8,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2643.4060587066037,0.1026377323731962,0.059453152325729924,29641.333333333332,8,4,8,8_1,8_1,8_0_0 +9953,2,39.0,2,0.0,1,120,2,56,38,5.0,0.0,0.0,1790.0865876169973,0.0,1880.789224391946,35504.8,71,60,1,73,201709953,,,500.0,,2.0,0.0,4.0,2.0,4.0,2.1,2536.102174771881,0.0,1330.0,1063.0,0.0,38177.0,1,1,1,118.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3670.8758120089433,0.1033909728264613,0.09615411928671565,18179.52380952381,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9954,2,80.0,2,0.0,4,111,2,77,74,8.0,0.0,0.0,1803.545885268253,0.0,0.0,15959.2,20,60,2,730,201709954,,,,,0.0,3.0,2.0,0.0,2.0,1.5,2718.586183837672,0.0,1340.0,0.0,0.0,44465.0,5,5,3,45.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1803.545885268253,0.11300979280090812,0.040561022945423436,29643.333333333332,8,4,8,8_0,8_2,8_0_1 +9955,2,44.0,2,0.0,7,111,2,0,46,6.0,0.0,0.0,761.796247061068,0.0,1022.6680825009828,43071.685846751294,0,31,1,7300,201709955,,,,,1.0,0.0,5.0,0.0,1.0,1.0,1550.1349956433849,0.0,566.0,578.0,0.0,23600.0,0,1,1,120.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1784.4643295620508,0.04143010180542179,0.07561289532042588,23600.0,6,3,6,6_1,6_3,6_0_0 +9956,2,29.0,2,0.0,5,111,4,0,37,10.0,0.0,0.0,2153.487624200899,0.0,0.0,46618.083610264635,0,12,2,7302,201709956,,,579.0,,5.0,0.0,3.0,3.0,5.0,3.0,3897.0963801707426,0.0,1600.0,0.0,0.0,149117.0,0,1,1,50.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2153.487624200899,0.046194254620254956,0.014441597029184459,49705.666666666664,10,5,10,10_0,10_4,10_0_0 +9957,2,62.0,2,0.0,5,221,2,78,72,7.0,1672.1246336323818,0.0,633.9329193741397,164.54694061001973,0.0,21530.6658467513,70,50,1,7303,201709957,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2243.777897130104,0.0,471.0,0.0,0.0,35015.0,5,5,1,100.0,3,4.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2470.6044936165413,0.11474816948075592,0.07055846047741086,23343.333333333332,6,3,6,6_1,6_2,6_0_0 +9958,0,22.0,1,0.0,0,211,2,0,56,1.0,0.0,416.377895869032,0.0,0.0,0.0,19082.72,0,50,0,7304,201709958,,,,,1.0,0.0,,1.0,2.0,1.3,1261.3223515464467,0.0,0.0,0.0,0.0,11704.0,0,4,5,,2,3.0,2,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,416.377895869032,0.02181963031837348,0.03557569171813329,9003.076923076922,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +9959,2,47.0,3,0.0,99,111,2,65,54,6.0,0.0,0.0,823.9630539123425,0.0,1535.4374948369239,30907.722066597373,71,42,1,7307,201709959,,,440.0,,4.0,2.0,4.0,2.0,4.0,2.5,2887.199638639596,1480.0,0.0,0.0,0.0,54649.0,1,1,3,85.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2359.4005487492664,0.07633692782876161,0.04317371861789358,21859.6,6,3,6,6_1,6_3,6_0_0 +9960,2,34.0,2,0.0,5,111,2,52,62,8.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,79474.28,71,50,2,7308,201709960,,,,680.0,2.0,0.0,3.0,2.0,4.0,2.1,2803.8178442328353,1500.0,0.0,0.0,0.0,63443.0,1,1,3,79.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2391.2843399485805,0.030088782684770225,0.03769185473493657,30210.952380952378,8,4,8,8_0,8_3,8_0_0 +9961,2,46.0,2,0.0,1,111,2,53,43,9.0,0.0,0.0,1130.581002705472,0.0,0.0,25893.100000000002,31,20,2,731,201709961,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2419.5308616762377,0.0,840.0,0.0,0.0,48278.0,1,1,1,29.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1130.581002705472,0.04366340850286261,0.02341814082409114,32185.333333333332,9,5,9,9_0,9_4,9_1_0 +9962,1,28.0,3,413.0,99,111,1,0,54,4.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,23523.480315994115,0,43,8,7310,201709962,,,,,1.0,0.0,3.0,3.0,4.0,1.9,3061.728641839581,1700.0,0.0,0.0,0.0,33736.0,0,1,3,77.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2710.1222519417247,0.11520923840929503,0.08033324199495272,17755.78947368421,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +9963,2,69.0,1,0.0,5,111,1,75,74,10.0,0.0,0.0,866.7787687408619,0.0,2653.9829130648345,32046.286676209587,30,20,2,7312,201709963,1500.0,1500.0,,,0.0,3.0,5.0,0.0,2.0,1.5,1659.5239775806162,0.0,644.0,1500.0,0.0,63086.0,5,5,1,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3520.7616818056963,0.10986488754153932,0.055808922451981366,42057.333333333336,10,5,10,10_0,10_3,10_0_0 +9964,2,59.0,2,0.0,6,120,2,52,62,9.0,0.0,513.5327382384728,1076.7438121004495,226.47320858153253,0.0,25952.579999999998,50,50,1,7313,201709964,,,100.0,,3.0,1.0,5.0,1.0,3.0,2.0,2516.244883230781,0.0,800.0,0.0,0.0,76700.0,1,1,1,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1816.749758920455,0.07000266481869838,0.023686437534816883,38350.0,9,5,9,9_1,9_0,9_0_0 +9965,2,44.0,2,0.0,9,120,2,52,64,5.0,0.0,0.0,1943.5225808413115,318.4779495677801,0.0,61018.34,30,42,1,7314,201709965,,,690.0,,2.0,0.0,6.0,3.0,5.0,2.6,1578.5197735242564,0.0,1444.0,0.0,0.0,51681.0,1,1,2,120.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2262.000530409092,0.037070830350499406,0.043768513194580055,19877.30769230769,5,3,5,5_1,5_1,5_0_0 +9966,1,36.0,3,303.0,2,112,6,0,54,3.0,0.0,0.0,1615.1157181506744,226.47320858153253,0.0,22548.96,0,31,1,7315,201709966,,,748.0,,1.0,0.0,3.0,1.0,2.0,1.3,471.10357838234887,0.0,1200.0,0.0,0.0,19015.0,0,1,3,90.0,9,0.0,2,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1841.588926732207,0.08167068134105551,0.09684927303351075,14626.923076923076,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +9967,1,43.0,3,400.0,99,111,2,0,85,1.0,0.0,0.0,336.4824412813905,0.0,353.8643884086446,2468.12,0,60,1,7316,201709967,,,100.0,,0.0,0.0,3.0,2.0,3.0,2.0,890.3819781418705,0.0,250.0,200.0,0.0,15820.0,0,6,3,70.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,690.3468296900351,0.2797055368823376,0.043637599853984514,7910.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +9968,2,66.0,2,0.0,3,111,4,78,77,7.0,0.0,596.8083174122792,1615.1157181506744,398.09743695972514,0.0,24335.319999999996,70,70,1,7317,201709968,,,260.0,,0.0,4.0,6.0,0.0,2.0,1.5,1343.4703737828972,0.0,1200.0,0.0,0.0,34713.0,5,5,1,100.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2610.021472522679,0.10725239990773408,0.07518858849775815,23142.0,6,3,6,6_1,6_2,6_0_1 +9969,2,36.0,1,0.0,99,112,4,0,46,8.0,0.0,0.0,2422.6735772260117,0.0,0.0,29687.445846751303,0,12,1,7318,201709969,,,180.0,,1.0,0.0,4.0,1.0,2.0,1.3,2304.0908392836677,0.0,1800.0,0.0,0.0,40982.0,0,1,3,100.0,9,1.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2422.6735772260117,0.08160599567008978,0.059115552613977156,31524.615384615383,8,4,8,8_1,8_1,8_0_0 +9970,1,48.0,3,350.0,1,111,4,0,85,1.0,126.91648073111057,0.0,2099.6504335958766,0.0,0.0,28195.1458467513,0,60,1,7319,201709970,,,280.0,,0.0,0.0,4.0,1.0,2.0,1.5,801.5969634864214,0.0,1560.0,0.0,0.0,10950.0,0,7,3,94.0,6,5.0,2,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,2226.566914326987,0.0789698668852084,0.20333944423077507,7300.0,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +9971,2,69.0,1,0.0,1,111,2,86,31,10.0,2068.7386359171023,0.0,1452.3561565920866,0.0,2775.654426092395,55281.14544394969,60,44,2,7324,201709971,,,165.0,,1.0,2.0,3.0,0.0,2.0,1.5,2017.153154043088,2487.8400789983416,50.0,110.0,0.0,138894.0,5,1,1,105.0,8,7.0,3,4,1,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,6296.749218601584,0.11390410180602978,0.045334926048652816,92596.0,10,5,10,10_0,10_3,10_1_0 +9972,2,87.0,3,0.0,3,300,2,0,78,7.0,0.0,0.0,671.6189527976554,0.0,3522.719986608057,17859.03087530163,0,71,1,7325,201709972,,,,,0.0,1.0,8.0,0.0,1.0,1.0,3908.3977579004854,0.0,499.0,1991.0,0.0,24521.0,0,5,5,170.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4194.338939405712,0.23485814928548704,0.17105089267997683,24521.0,7,4,7,7_1,7_0,7_0_1 +9973,2,84.0,3,0.0,3,111,1,77,78,3.0,0.0,0.0,199.19760523858318,0.0,449.4077732789786,17947.46,70,50,2,7326,201709973,,,,273.0,0.0,2.0,3.0,0.0,2.0,1.5,2285.5258634409356,0.0,148.0,254.0,0.0,23556.0,5,5,3,53.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,648.6053785175618,0.03613911821046331,0.027534614472642292,15704.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +9974,2,62.0,3,0.0,1,112,6,0,74,1.0,0.0,0.0,989.2583773672881,106.15931652259337,0.0,15644.779999999999,0,41,1,7327,201709974,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3559.3099544682022,0.0,735.0,0.0,0.0,8120.0,0,5,1,98.0,5,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1095.4176938898813,0.07001809510200088,0.1349036568829903,8120.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +9975,2,53.0,1,0.0,5,111,2,75,38,9.0,0.0,0.0,784.6770530682027,0.0,2257.6547980471523,48626.799999999996,41,20,1,7329,201709975,,,,,1.0,1.0,6.0,1.0,3.0,2.0,2837.92408528717,0.0,583.0,1276.0,0.0,82073.0,6,1,2,130.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3042.3318511153548,0.06256491998476879,0.03706860783833118,41036.5,10,5,10,10_1,10_3,10_0_0 +9976,1,19.0,2,177.0,1,111,2,0,56,2.0,0.0,0.0,484.5347154452023,53.079658261296686,0.0,16085.43644985154,0,41,2,733,201709976,,,,223.0,1.0,0.0,2.0,0.0,1.0,1.0,3443.652754128455,0.0,360.0,0.0,0.0,12630.0,0,3,3,35.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,537.614373706499,0.033422429996387254,0.042566458725771895,12630.0,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +9977,2,50.0,1,0.0,1,300,2,55,37,9.0,2379.684013708323,555.170527825376,2469.157124133646,123.8525359430256,1290.5145062338204,70560.3266140855,71,31,1,7330,201709977,,,450.0,,2.0,0.0,9.0,2.0,4.0,2.5,1635.6266326452383,1243.9200394991708,1320.0,0.0,0.0,76910.0,1,1,2,180.0,0,0.0,4,9,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6818.378707844192,0.09663190400373067,0.08865399438101927,30764.0,8,4,8,8_1,8_0,8_1_0 +9978,2,45.0,3,0.0,99,111,2,0,46,6.0,0.0,0.0,1045.7874275025617,0.0,1415.4575536345783,44437.09999999999,0,30,2,7331,201709978,,,476.0,440.0,1.0,0.0,4.0,1.0,2.0,1.3,3651.230286301527,0.0,777.0,800.0,0.0,29500.0,0,1,3,70.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2461.24498113714,0.055387164804569615,0.0834320332588861,22692.30769230769,6,3,6,6_0,6_2,6_0_0 +9979,1,34.0,3,383.0,5,111,1,0,54,2.0,0.0,0.0,209.96504335958767,0.0,0.0,15312.471191295746,0,42,2,7332,201709979,,,,,1.0,0.0,4.0,2.0,3.0,1.6,1480.2845497105727,0.0,156.0,0.0,0.0,21126.0,0,1,3,90.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,209.96504335958767,0.013712028629248337,0.009938703179001593,13203.75,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +9980,2,37.0,3,0.0,1,300,2,13,47,3.0,1062.925526123051,0.0,269.1859530251124,0.0,0.0,51398.49,31,20,1,7334,201709980,,,100.0,,2.0,0.0,5.0,3.0,5.0,2.4,2154.505013902808,0.0,200.0,0.0,0.0,32799.0,1,1,2,180.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1332.1114791481634,0.025917327126695033,0.0406143930957701,13666.25,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9981,2,36.0,2,0.0,9,112,2,0,37,3.0,0.0,0.0,646.0462872602698,0.0,0.0,12161.24,0,31,2,7335,201709981,,,240.0,,1.0,0.0,3.0,0.0,1.0,1.0,2087.208854798221,0.0,480.0,0.0,0.0,15299.0,0,4,1,70.0,9,3.0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,646.0462872602698,0.053123389330386524,0.04222800753384337,15299.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +9982,2,42.0,3,0.0,7,111,2,46,45,6.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,41517.44,43,31,1,7336,201709982,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,1920.4667290410348,1440.0,0.0,0.0,0.0,43510.0,1,1,2,105.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2295.6329663506376,0.055293220544201126,0.052761042664919273,20719.04761904762,5,3,5,5_1,5_2,5_0_0 +9983,2,34.0,2,0.0,5,300,5,42,43,10.0,0.0,832.755791738064,1324.394888883553,0.0,0.0,57226.49999999999,30,20,1,7337,201709983,,,,,2.0,0.0,5.0,1.0,3.0,1.8,2145.551036214992,0.0,984.0,0.0,0.0,158170.0,1,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2157.150680621617,0.03769496091184359,0.01363817841955881,87872.22222222222,10,5,10,10_1,10_0,10_0_0 +9984,2,54.0,4,0.0,1,111,2,67,65,3.0,0.0,0.0,1336.7130354348203,0.0,2490.9360980428746,15300.300000000001,50,50,1,7338,201709984,,,684.0,,2.0,1.0,4.0,0.0,2.0,1.5,1484.4599067208878,2401.0,0.0,0.0,0.0,22990.0,4,1,3,94.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3827.6491334776947,0.2501682407193123,0.16649191533178315,15326.666666666666,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +9985,2,60.0,3,0.0,3,112,2,21,75,3.0,0.0,0.0,1144.0403003567276,0.0,2830.9151072691566,16671.36435792612,60,50,1,734,201709985,,,300.0,,1.0,2.0,4.0,0.0,2.0,1.5,2456.100807918273,0.0,850.0,1600.0,0.0,21300.0,8,5,1,90.0,10,2.0,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3974.955407625884,0.23843012019205606,0.18661762477116828,14200.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +9986,2,34.0,3,0.0,99,111,4,0,31,6.0,0.0,0.0,807.5578590753372,0.0,0.0,38428.69999999999,0,20,2,7340,201709986,,,,,1.0,0.0,2.0,1.0,2.0,1.3,1462.0904635423894,0.0,600.0,0.0,0.0,30994.0,0,1,3,36.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.021014446470355164,0.026055296479168134,23841.53846153846,6,3,6,6_0,6_4,6_0_0 +9987,1,18.0,3,224.0,8,111,2,0,84,1.0,0.0,0.0,621.8195514880097,0.0,0.0,9790.200315994118,0,41,2,7341,201709987,,,,30.0,0.0,0.0,1.0,0.0,1.0,1.0,2609.6009606336497,0.0,462.0,0.0,0.0,4348.0,0,3,3,18.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,621.8195514880097,0.06351448708073434,0.14301277633118897,4348.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9988,1,39.0,4,123.0,4,112,4,0,43,2.0,0.0,0.0,751.0288089400635,0.0,0.0,32255.824177580944,0,30,1,7342,201709988,,,,,1.0,0.0,2.0,2.0,3.0,1.6,688.2670643815898,0.0,558.0,0.0,0.0,17081.0,0,1,2,60.0,8,0.0,2,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,751.0288089400635,0.02328351012844551,0.043968667463267,10675.625,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +9989,2,27.0,1,0.0,9,112,4,54,46,9.0,0.0,0.0,807.5578590753372,0.0,0.0,41253.5,20,30,2,7343,201709989,,,,390.0,2.0,0.0,2.0,0.0,2.0,1.5,3930.5369821710087,0.0,600.0,0.0,0.0,55745.0,1,1,3,48.0,6,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.019575499268555084,0.01448664201408803,37163.333333333336,9,5,9,9_0,9_1,9_0_0 +9990,2,62.0,3,0.0,7,112,2,78,78,7.0,2490.7359343480452,0.0,672.964882562781,148.62304313163074,0.0,31161.200000000004,50,60,1,7344,201709990,,,140.0,,0.0,0.0,5.0,1.0,3.0,2.0,1908.978966021524,0.0,500.0,0.0,0.0,50800.0,5,5,1,100.0,6,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3312.323860042457,0.10629641541540302,0.06520322559138694,25400.0,7,4,7,7_1,7_0,7_0_0 +9991,2,71.0,3,0.0,4,111,1,77,78,5.0,0.0,0.0,532.9881869897225,0.0,212.31863304518674,20606.04,70,71,2,7345,201709991,,,,,0.0,1.0,4.0,0.0,2.0,1.5,4605.284369982805,0.0,396.0,120.0,0.0,29411.0,5,5,1,70.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,745.3068200349093,0.03616933772985539,0.025341090749546404,19607.333333333332,5,3,5,5_0,5_3,5_0_1 +9992,2,80.0,3,0.0,4,111,2,0,77,9.0,3188.7765783691534,0.0,1466.8720257913667,116.7752481748527,375.8599877428666,24025.007853050465,0,70,2,7347,201709992,,,830.0,,0.0,1.0,5.0,0.0,1.0,1.0,1973.1383739957407,362.2894345943554,940.0,0.0,0.0,33938.0,0,5,1,105.0,9,7.0,1,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,5148.28384007824,0.21428853932401776,0.15169673640397902,33938.0,9,5,9,9_0,9_3,9_0_1 +9993,2,64.0,4,0.0,1,112,2,0,77,7.0,0.0,0.0,349.9417389326461,0.0,2317.811744076622,34880.28,0,31,1,7348,201709993,,,152.0,,0.0,0.0,5.0,0.0,2.0,1.5,3721.5029875020127,0.0,260.0,1310.0,0.0,35704.0,0,5,1,71.0,7,0.0,5,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2667.753483009268,0.07648314414360402,0.07471861648580742,23802.666666666668,6,3,6,6_1,6_0,6_1_0 +9994,1,49.0,3,180.0,1,112,2,13,13,5.0,2221.038412794435,0.0,1211.3367886130059,247.7050718860512,0.0,25336.94,43,50,1,7350,201709994,,,250.0,,2.0,0.0,6.0,3.0,5.0,2.4,2419.978067390911,0.0,900.0,0.0,0.0,42591.0,1,1,2,130.0,9,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3680.0802732934917,0.145245648183778,0.08640511547729547,17746.25,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +9995,2,60.0,4,0.0,1,211,2,52,56,5.0,504.49301090616456,0.0,699.8834778652922,238.8584621758351,0.0,28004.440000000002,71,71,1,7352,201709995,,,264.0,,2.0,1.0,4.0,0.0,2.0,1.5,1840.9947201970756,0.0,520.0,0.0,0.0,27716.0,1,1,1,80.0,1,2.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1443.2349509472917,0.0515359332644142,0.05207226695581223,18477.333333333332,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +9996,2,55.0,3,0.0,9,112,6,0,52,4.0,0.0,0.0,888.3136449828709,53.079658261296686,0.0,14169.490474197517,0,60,1,7353,201709996,,,306.0,,1.0,2.0,4.0,0.0,1.0,1.0,1723.499879140011,0.0,660.0,0.0,0.0,19755.0,0,1,1,106.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,941.3933032441676,0.06643804905747558,0.04765341955171691,19755.0,5,3,5,5_1,5_0,5_0_0 +9997,2,62.0,1,0.0,1,111,2,74,74,9.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,49183.0,31,31,2,7354,201709997,,,,,0.0,2.0,4.0,1.0,3.0,2.0,2595.700910833173,600.0,0.0,0.0,0.0,81543.0,5,5,1,95.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,956.5137359794323,0.019448055953874964,0.011730175931464778,40771.5,10,5,10,10_0,10_3,10_1_0 +9998,2,38.0,4,0.0,10,300,6,45,33,6.0,0.0,0.0,139.97669557305844,44.23304855108057,0.0,26902.34,71,41,1,7355,201709998,,,540.0,,2.0,0.0,5.0,2.0,4.0,2.1,2954.464080046026,0.0,104.0,0.0,0.0,45980.0,1,1,2,125.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,184.209744124139,0.006847350235114826,0.004006301525100892,21895.238095238095,6,3,6,6_1,6_0,6_0_0 +9999,1,53.0,3,115.0,7,111,2,0,52,2.0,0.0,0.0,1162.8833170684854,0.0,0.0,12490.68,0,31,8,7356,201709999,,,,,1.0,1.0,2.0,0.0,1.0,1.0,3184.8959655652716,0.0,864.0,0.0,0.0,12083.0,0,1,2,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1162.8833170684854,0.09310008078571266,0.09624127427530293,12083.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +10000,2,91.0,1,0.0,99,111,1,0,75,8.0,0.0,0.0,952.9182737088979,0.0,0.0,9424.0,0,30,2,7357,201710000,,,,,0.0,2.0,2.0,0.0,1.0,1.0,2588.002857478212,0.0,708.0,0.0,0.0,29777.0,0,5,5,51.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,952.9182737088979,0.10111611563124978,0.032001822672159654,29777.0,8,4,8,8_0,8_3,8_0_0 +10001,1,27.0,3,121.0,99,111,6,85,56,2.0,0.0,0.0,808.37456370319,0.0,1506.3886773670363,13409.880000000001,50,50,1,7358,201710001,,,525.0,301.0,1.0,0.0,3.0,1.0,3.0,1.8,1841.318464441346,1452.0,0.0,0.0,0.0,23772.0,6,1,3,63.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2314.7632410702263,0.1726162531708133,0.09737351678740645,13206.666666666666,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +10002,1,21.0,4,288.0,99,111,2,0,68,1.0,0.0,0.0,124.70792167321939,0.0,232.39053975910198,5260.305846751298,0,71,1,7359,201710002,,,400.0,,1.0,0.0,2.0,1.0,2.0,1.3,1087.2857077029169,224.0,0.0,0.0,0.0,11819.0,0,4,3,80.0,5,4.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,357.09846143232136,0.06788549408260379,0.030213931925909245,9091.538461538461,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +10003,2,69.0,2,0.0,6,112,5,0,77,5.0,0.0,90.21521077162359,606.2809227773924,0.0,1129.7915080252772,12293.96,0,50,1,7362,201710003,,,,,0.0,4.0,5.0,0.0,1.0,1.0,1749.3517020179215,1089.0,0.0,0.0,0.0,20465.0,0,5,1,98.0,7,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1826.287641574293,0.14855161734496397,0.08923956225625669,20465.0,5,3,5,5_1,5_1,5_0_0 +10004,2,34.0,3,0.0,9,400,2,55,62,8.0,0.0,0.0,995.9880261929159,0.0,0.0,47262.31702660895,44,43,1,7363,201710004,,,,,2.0,0.0,4.0,2.0,4.0,2.1,2448.6232508394696,0.0,740.0,0.0,0.0,48057.0,1,1,2,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,995.9880261929159,0.0210736182407682,0.020725139442597663,22884.285714285714,6,3,6,6_1,6_0,6_0_0 +10005,2,53.0,3,0.0,99,111,2,0,46,2.0,0.0,0.0,471.07541779394666,0.0,1450.8439924754427,15582.356974448147,0,43,8,7366,201710005,,,520.0,,1.0,1.0,4.0,1.0,2.0,1.5,537.9257989174146,0.0,350.0,820.0,0.0,19300.0,0,1,2,66.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1921.9194102693893,0.1233394545780809,0.09958131659426887,12866.666666666666,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +10006,2,77.0,3,0.0,1,111,2,0,78,3.0,0.0,0.0,442.8108927263099,0.0,1291.6050176915528,15430.44,0,71,1,7367,201710006,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3690.896609105597,0.0,329.0,730.0,0.0,13853.0,0,5,1,36.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1734.4159104178627,0.11240223288628598,0.12520146613858824,13853.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +10007,2,34.0,2,0.0,9,111,1,46,38,9.0,0.0,0.0,471.07541779394666,0.0,0.0,43889.92,20,20,2,7368,201710007,,,38.0,930.0,2.0,0.0,3.0,0.0,2.0,1.5,6644.382953114868,0.0,350.0,0.0,0.0,57442.0,1,1,3,72.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,471.07541779394666,0.010733111789539528,0.008200888161866694,38294.666666666664,9,5,9,9_0,9_2,9_0_0 +10008,2,32.0,4,0.0,5,111,2,63,46,5.0,0.0,0.0,666.2352337371532,0.0,973.1270681237726,45053.289920806346,31,31,1,7369,201710008,,,460.0,,2.0,0.0,3.0,2.0,4.0,2.1,1649.1767562917223,0.0,495.0,550.0,0.0,38939.0,1,1,2,85.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1639.3623018609258,0.036387182928096035,0.042100780756078114,18542.38095238095,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10009,2,78.0,3,0.0,3,111,2,78,77,8.0,0.0,0.0,1476.9246426135346,0.0,3589.7442859840435,49649.22814898428,50,70,1,737,201710009,,,679.0,,0.0,2.0,6.0,0.0,2.0,1.5,3335.937829369321,912.2080289660586,720.0,1494.0,0.0,45156.0,5,5,1,115.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,5066.668928597578,0.1020492990020678,0.1122036701345907,30104.0,8,4,8,8_1,8_3,8_0_1 +10010,2,57.0,2,0.0,6,112,5,75,45,7.0,0.0,388.6193694777632,1275.9414173390328,0.0,0.0,31327.76216912759,50,42,1,7370,201710010,,,650.0,,2.0,1.0,6.0,1.0,3.0,2.0,2647.029473738415,0.0,948.0,0.0,0.0,55820.0,5,1,1,120.0,6,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1664.560786816796,0.053133727772523835,0.029820150247524112,27910.0,8,4,8,8_1,8_1,8_0_0 +10011,1,52.0,3,369.0,6,111,1,67,68,5.0,0.0,0.0,434.8075304767158,0.0,810.2545158565118,20693.48,71,71,2,7371,201710011,,,,59.0,2.0,0.0,2.0,0.0,2.0,1.5,2743.0514500082063,781.0,0.0,0.0,0.0,28276.0,1,1,3,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1245.0620463332275,0.06016687605628573,0.044032467333895445,18850.666666666668,5,3,5,5_0,5_4,5_0_0 +10012,2,50.0,3,0.0,1,111,1,43,37,9.0,0.0,0.0,2495.353784542792,0.0,270.70625713261313,76848.72,31,20,2,7372,201710012,,,,2180.0,3.0,0.0,4.0,4.0,6.0,3.5,2486.3683938417275,0.0,1854.0,153.0,0.0,122780.0,1,1,3,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2766.060041675405,0.035993573369542196,0.022528588057300906,35080.0,9,5,9,9_0,9_4,9_1_0 +10013,1,48.0,3,189.0,4,111,2,0,52,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,11320.74,0,71,2,7373,201710013,,,,285.0,1.0,1.0,3.0,0.0,1.0,1.0,1802.684666258416,0.0,1200.0,0.0,0.0,21028.0,0,1,3,54.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1615.1157181506744,0.14266874057267231,0.07680786181047529,21028.0,5,3,5,5_0,5_4,5_0_1 +10014,2,29.0,1,0.0,9,112,2,0,37,9.0,0.0,0.0,807.5578590753372,35.38643884086446,0.0,45373.92000000001,0,31,1,7374,201710014,,,336.0,,1.0,0.0,3.0,0.0,1.0,1.0,2908.7942485587037,0.0,600.0,0.0,0.0,34976.0,0,1,2,83.0,6,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,842.9442979162017,0.0185777269831701,0.024100648956890486,34976.0,9,5,9,9_1,9_0,9_0_0 +10015,2,73.0,2,0.0,5,111,1,0,72,3.0,0.0,0.0,2317.6910555462177,0.0,0.0,26344.310875301628,0,30,2,7375,201710015,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2070.690907529834,0.0,1722.0,0.0,0.0,22267.0,0,5,1,79.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2317.6910555462177,0.08797690956946246,0.10408636347717329,22267.0,6,3,6,6_0,6_3,6_0_0 +10016,2,63.0,3,0.0,6,300,2,77,78,3.0,0.0,0.0,1088.8571799865797,2774.0951024223805,0.0,19074.226000000002,70,50,1,7376,201710016,,,110.0,,0.0,0.0,4.0,0.0,2.0,1.5,2172.176030331746,0.0,809.0,0.0,0.0,20427.0,7,5,1,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3862.95228240896,0.20252209879493718,0.18911011320355217,13618.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10017,1,62.0,4,275.0,7,111,1,56,72,7.0,0.0,0.0,403.7789295376686,0.0,10.615931652259338,21227.856974448147,71,31,8,7377,201710017,,,,238.0,1.0,1.0,3.0,0.0,2.0,1.5,4921.799772328791,0.0,300.0,6.0,0.0,35190.0,1,5,3,55.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,414.39486118992795,0.01952127629693062,0.011775926717531342,23460.0,6,3,6,6_0,6_4,6_0_0 +10018,1,58.0,3,256.0,5,400,2,0,72,2.0,0.0,0.0,1695.871504058208,84.9274532180747,0.0,33102.380000000005,0,60,1,7378,201710018,,,264.0,72.0,0.0,2.0,4.0,0.0,1.0,1.0,1799.684128102482,0.0,1260.0,0.0,0.0,12798.0,0,7,3,90.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1780.7989572762829,0.05379670456554129,0.13914666020286628,12798.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +10019,2,75.0,2,0.0,4,111,4,75,74,10.0,0.0,291.4645271083224,1686.449995702329,0.0,477.7169243516702,26923.879999999997,41,50,1,7379,201710019,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1642.8019070892474,0.0,1253.0,270.0,0.0,64462.0,5,5,1,120.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2455.6314471623214,0.09120644747942427,0.03809424850551211,42974.666666666664,10,5,10,10_1,10_3,10_0_1 +10020,2,30.0,3,0.0,7,111,2,62,52,6.0,0.0,0.0,452.2324010821888,0.0,743.1152156581536,36557.119999999995,50,42,2,738,201710020,,,,352.0,2.0,0.0,2.0,0.0,2.0,1.5,2628.131379368079,0.0,336.0,420.0,0.0,30789.0,4,1,3,53.0,8,6.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1195.3476167403423,0.03269807951885549,0.03882385321836832,20526.0,5,3,5,5_0,5_2,5_0_0 +10021,2,70.0,1,0.0,7,111,2,75,74,10.0,0.0,208.188947934516,2490.3310329289725,212.31863304518674,645.2572531169102,66319.16505764601,31,31,1,7381,201710021,,,150.0,,0.0,1.0,7.0,0.0,2.0,1.5,1644.2413158242966,621.9600197495854,1593.0,0.0,0.0,67814.0,5,5,1,160.0,6,4.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3556.0958670255854,0.053620938441166326,0.05243896344450387,45209.333333333336,10,5,10,10_1,10_2,10_0_0 +10022,1,46.0,4,473.0,4,111,1,0,85,1.0,0.0,0.0,430.35367613124373,0.0,801.9548537222582,26440.225846751302,0,50,2,7382,201710022,,,,,1.0,1.0,5.0,2.0,3.0,2.0,742.358054439812,773.0,0.0,0.0,0.0,16047.0,0,7,3,85.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1232.308529853502,0.04660733750899163,0.07679370161734293,8023.5,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10023,2,50.0,4,0.0,1,111,2,34,38,10.0,0.0,0.0,1670.1953795520453,0.0,3112.3733003451157,43297.090875301634,20,42,1,7383,201710023,,,450.0,,3.0,1.0,5.0,1.0,3.0,2.0,1783.7279463711666,3000.0,0.0,0.0,0.0,85419.0,1,1,2,125.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4782.568679897161,0.1104593538090414,0.05598951848999826,42709.5,10,5,10,10_1,10_4,10_1_0 +10024,1,65.0,5,218.0,4,111,1,0,,2.0,0.0,0.0,807.5578590753372,0.0,0.0,10599.320000000002,0,50,2,7385,201710024,,,,22.0,0.0,3.0,4.0,0.0,1.0,1.0,2015.6180226516346,0.0,600.0,0.0,0.0,12136.0,0,5,3,70.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,807.5578590753372,0.07618959132051274,0.0665423417168208,12136.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +10025,2,38.0,1,0.0,1,111,2,42,37,9.0,0.0,138.792631956344,1613.7697883855487,0.0,1928.560916827113,74889.2,30,20,1,7386,201710025,,,350.0,,2.0,0.0,4.0,2.0,4.0,2.1,747.4666974987476,0.0,1199.0,1090.0,0.0,70633.0,1,1,2,130.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3681.123337169006,0.049154261724908346,0.05211619692167975,33634.7619047619,9,5,9,9_1,9_3,9_1_0 +10026,1,40.0,2,393.0,8,112,4,0,67,2.0,0.0,0.0,1049.8252167979383,0.0,0.0,12043.870875301627,0,43,2,7387,201710026,,,,,1.0,0.0,3.0,2.0,3.0,1.8,4869.292428137098,0.0,780.0,0.0,0.0,23592.0,0,4,3,62.0,9,3.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1049.8252167979383,0.08716676122382011,0.044499203831720006,13106.666666666666,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +10027,2,63.0,3,0.0,1,112,2,52,78,8.0,3569.526020562485,0.0,565.290501352736,0.0,0.0,20037.76,71,70,1,7389,201710027,,,200.0,,1.0,0.0,3.0,0.0,2.0,1.5,4253.899006136049,0.0,420.0,0.0,0.0,39226.0,1,5,1,90.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4134.816521915221,0.20635123496414873,0.105410098452945,26150.666666666668,7,4,7,7_1,7_0,7_1_0 +10028,2,48.0,3,0.0,99,111,1,47,37,6.0,0.0,0.0,605.6683943065029,0.0,0.0,156765.4,12,12,2,7390,201710028,,,,2050.0,2.0,0.0,4.0,3.0,5.0,2.8,2187.294080575173,0.0,450.0,0.0,0.0,63780.0,1,1,3,71.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,605.6683943065029,0.0038635336260839635,0.009496211889408952,22778.57142857143,6,3,6,6_0,6_4,6_0_0 +10029,2,82.0,2,0.0,7,400,4,0,77,9.0,0.0,0.0,2018.894647688343,0.0,53.079658261296686,12545.090875301628,0,50,1,7391,201710029,,,260.0,,0.0,1.0,5.0,0.0,1.0,1.0,2263.5154854835264,0.0,1500.0,30.0,0.0,34572.0,0,5,1,73.0,0,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2071.9743059496395,0.16516215996720088,0.059932150467130615,34572.0,9,5,9,9_1,9_1,9_0_0 +10030,2,21.0,3,0.0,9,111,2,65,52,6.0,0.0,0.0,605.6683943065029,0.0,902.3541904420437,23334.719999999998,43,50,2,7392,201710030,,,,500.0,2.0,0.0,2.0,0.0,2.0,1.5,3261.459156110175,0.0,450.0,510.0,0.0,32619.0,1,1,3,47.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1508.0225847485467,0.06462569873341299,0.04623141680457852,21746.0,6,3,6,6_0,6_3,6_0_0 +10031,2,67.0,3,0.0,5,112,2,75,75,7.0,1903.7472109666587,0.0,915.2322402853821,371.5576078290768,0.0,42418.060000000005,50,50,1,7393,201710031,,,200.0,,0.0,1.0,3.0,0.0,2.0,1.5,2269.6244159792773,0.0,680.0,0.0,0.0,36560.0,5,5,5,80.0,9,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3190.5370590811176,0.07521647758245231,0.08726851912147476,24373.333333333332,7,4,7,7_1,7_0,7_0_0 +10032,2,52.0,3,0.0,4,111,1,0,38,10.0,0.0,0.0,565.290501352736,0.0,0.0,69227.54000000001,0,42,2,7394,201710032,,,,,1.0,2.0,3.0,0.0,1.0,1.0,4181.957433725567,0.0,420.0,0.0,0.0,52435.0,0,1,2,70.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,565.290501352736,0.008165688125747873,0.010780785760517516,52435.0,10,5,10,10_0,10_3,10_0_1 +10033,2,68.0,3,0.0,1,112,2,0,77,2.0,63.458240365555284,0.0,1687.7959254674547,162.7776186679765,0.0,28232.22,0,70,1,7395,201710033,,,136.0,,0.0,2.0,6.0,0.0,1.0,1.0,2960.000779825001,0.0,1254.0,0.0,0.0,10544.0,0,5,1,150.0,8,1.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1914.0317845009863,0.06779600699133778,0.18152805239956243,10544.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +10034,2,42.0,4,0.0,1,112,4,54,62,4.0,0.0,763.359475759892,2961.045483276236,0.0,0.0,56187.68,43,50,1,7397,201710034,,,808.0,,2.0,1.0,5.0,2.0,4.0,2.3,2407.6456801580307,0.0,2200.0,0.0,0.0,40486.0,4,1,2,103.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3724.4049590361283,0.06628508169470831,0.09199241612004466,17602.608695652176,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10035,2,74.0,3,0.0,1,111,2,0,78,4.0,0.0,0.0,413.20043789354753,0.0,1181.907057284873,16631.5,0,71,2,7398,201710035,,,,,0.0,4.0,2.0,0.0,1.0,1.0,2368.015551520066,0.0,307.0,668.0,0.0,16968.0,0,5,3,80.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1595.1074951784205,0.0959088173152404,0.09400680664653586,16968.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +10036,2,54.0,2,0.0,8,111,2,0,37,10.0,0.0,0.0,546.1019933588788,0.0,867.1626860067565,53384.141158623315,0,20,2,74,201710036,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2973.8092948770895,835.8534812426913,60.0,0.0,0.0,83828.0,0,1,2,50.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1413.2646793656354,0.026473492851862544,0.01685910053163186,83828.0,10,5,10,10_0,10_3,10_0_0 +10037,2,37.0,5,0.0,5,111,1,55,11,4.0,0.0,0.0,592.2090966552472,406.94404666994126,0.0,28780.320000000003,30,50,2,740,201710037,,,320.0,200.0,2.0,5.0,1.0,0.0,2.0,1.5,3368.9778221073834,0.0,440.0,0.0,0.0,26030.0,4,1,3,33.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,999.1531433251885,0.03471654044587372,0.03838467703900071,17353.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +10038,2,74.0,3,0.0,3,111,1,0,78,2.0,0.0,0.0,625.8573407833863,0.0,162.7776186679765,12729.2,0,50,2,7400,201710038,,,,667.0,0.0,3.0,2.0,0.0,1.0,1.0,5241.235706630187,0.0,465.0,92.0,0.0,11072.0,0,5,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,788.6349594513629,0.0619547936595672,0.07122786844755806,11072.0,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +10039,2,84.0,3,0.0,3,221,2,77,74,5.0,5711.241632899976,208.188947934516,1076.7438121004495,141.54575536345783,0.0,31715.871191295744,70,10,1,7403,201710039,,,675.0,,0.0,3.0,7.0,0.0,2.0,1.5,1561.0665480935027,0.0,800.0,0.0,0.0,30021.0,5,5,1,175.0,1,1.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,7137.7201482984,0.22505199700323258,0.23775757464103128,20014.0,5,3,5,5_1,5_1,5_0_1 +10040,2,45.0,3,0.0,4,112,4,62,63,4.0,0.0,0.0,1259.790260157526,442.3304855108057,0.0,25953.480000000003,71,71,2,7405,201710040,,,,376.0,2.0,0.0,4.0,2.0,5.0,2.6,1444.1354623299687,0.0,936.0,0.0,0.0,46650.0,1,1,3,73.0,10,3.0,5,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1702.120745668332,0.06558352658943355,0.036487047066845274,17942.30769230769,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +10041,2,25.0,4,0.0,3,111,5,21,46,6.0,0.0,138.792631956344,538.3719060502248,212.31863304518674,0.0,32488.88,31,30,1,7406,201710041,,,400.0,,2.0,0.0,4.0,0.0,2.0,1.5,2482.995844758846,0.0,400.0,0.0,0.0,34130.0,1,1,3,100.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,889.4831710517556,0.027378080470972083,0.026061622357215222,22753.333333333332,6,3,6,6_1,6_2,6_0_1 +10042,2,42.0,2,0.0,8,112,2,52,46,8.0,0.0,0.0,1109.7220925443532,61.9262679715128,1315.5099571000333,72733.0397762397,50,50,1,7407,201710042,,,,,2.0,0.0,7.0,2.0,4.0,2.3,847.5593518274243,1268.0130210802438,300.0,0.0,0.0,66388.0,1,1,2,138.0,7,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2487.1583176158993,0.03419571525220921,0.037463974176295406,28864.34782608696,8,4,8,8_1,8_1,8_0_0 +10043,2,75.0,2,0.0,8,211,2,77,72,6.0,0.0,0.0,1591.2068850691028,226.47320858153253,885.9556853938999,15740.949430935421,70,50,1,7408,201710043,,,402.0,,0.0,2.0,4.0,0.0,2.0,1.5,1287.8746648429153,853.9679529724091,829.0,0.0,0.0,33348.0,5,5,1,100.0,2,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2703.6357790445354,0.17175811350560125,0.08107340107486312,22232.0,6,3,6,6_1,6_1,6_0_0 +10044,1,46.0,4,349.0,99,111,2,0,56,3.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,15897.359999999999,0,71,2,741,201710044,,,,151.0,1.0,3.0,3.0,1.0,2.0,1.3,1255.3719171196296,1000.0,0.0,0.0,0.0,20368.0,0,1,3,63.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1594.1895599657205,0.10028014462563097,0.07826932246493129,15667.692307692307,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +10045,2,30.0,2,0.0,9,111,2,37,47,9.0,0.0,0.0,901.7729426341265,0.0,0.0,35897.2,31,30,2,7410,201710045,,,,698.0,2.0,0.0,2.0,0.0,2.0,1.5,5271.395219684029,0.0,670.0,0.0,0.0,59352.0,1,1,3,43.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,901.7729426341265,0.02512098276840886,0.015193640359787817,39568.0,9,5,9,9_0,9_3,9_0_0 +10046,1,23.0,2,224.0,7,111,4,0,84,1.0,0.0,0.0,0.0,0.0,0.0,8053.799999999999,0,30,2,7411,201710046,,,,146.0,0.0,0.0,1.0,0.0,1.0,1.0,3664.9372571785857,0.0,0.0,0.0,0.0,6410.0,0,3,3,18.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,6410.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10047,2,61.0,2,0.0,1,111,2,0,75,9.0,0.0,0.0,511.45331074771354,0.0,1323.4528126483308,28951.720000000005,0,42,1,7412,201710047,,,110.0,,0.0,0.0,2.0,0.0,1.0,1.0,2182.9180532653204,0.0,380.0,748.0,0.0,32851.0,0,5,1,50.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1834.9061233960442,0.06337813861822524,0.05585541150637863,32851.0,9,5,9,9_1,9_3,9_1_0 +10048,2,43.0,3,0.0,99,111,2,0,54,7.0,0.0,0.0,403.7789295376686,0.0,1238.525359430256,22636.280315994118,0,43,2,7414,201710048,,,,476.0,1.0,1.0,3.0,1.0,2.0,1.3,1342.4926385042804,0.0,300.0,700.0,0.0,30190.0,0,1,3,70.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1642.3042889679245,0.07255186214528019,0.05439894961801671,23223.076923076922,6,3,6,6_0,6_4,6_0_0 +10049,1,44.0,2,51.0,2,111,4,0,48,4.0,0.0,0.0,1316.3193102927996,0.0,0.0,24808.64,0,41,1,7415,201710049,,,232.0,,1.0,0.0,5.0,2.0,3.0,1.6,706.57087465378,0.0,978.0,0.0,0.0,28154.0,0,1,2,100.0,9,7.0,2,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1316.3193102927996,0.05305890650566898,0.046754255533593796,17596.25,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +10050,2,61.0,2,0.0,9,112,2,77,74,10.0,0.0,0.0,2045.8458896647226,0.0,2742.9015504898694,88799.77774272367,71,42,1,7416,201710050,,,617.0,,0.0,1.0,5.0,0.0,2.0,1.5,2097.3748681983684,829.2800263327805,1177.0,1064.0,0.0,66481.0,6,5,1,150.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4788.7474401545915,0.05392747101269615,0.07203182022163612,44320.666666666664,10,5,10,10_1,10_0,10_0_0 +10051,2,59.0,2,0.0,5,112,2,63,31,10.0,0.0,166.55115834761278,1195.185631431499,0.0,0.0,36994.16,42,20,1,7417,201710051,,,,,2.0,1.0,5.0,0.0,2.0,1.5,1403.4617370908645,0.0,888.0,0.0,0.0,59298.0,1,1,1,120.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1361.7367897791116,0.03680950695404657,0.022964295419392083,39532.0,9,5,9,9_1,9_1,9_0_0 +10052,2,54.0,2,0.0,1,111,2,55,64,8.0,0.0,0.0,538.3719060502248,0.0,2123.1863304518674,36647.48,50,50,1,7418,201710052,,,,470.0,2.0,2.0,3.0,0.0,2.0,1.5,1635.3209173342234,0.0,400.0,1200.0,0.0,40875.0,1,1,3,75.0,9,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2661.5582365020923,0.07262595508619125,0.06511457459332336,27250.0,7,4,7,7_1,7_3,7_1_0 +10053,2,36.0,3,0.0,99,111,2,52,21,6.0,0.0,0.0,888.3136449828709,0.0,1132.3660429076626,52017.399999999994,43,43,2,742,201710053,,,316.0,,2.0,0.0,4.0,2.0,4.0,2.3,3342.718355404144,0.0,660.0,640.0,0.0,49919.0,1,1,3,75.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2020.6796878905334,0.03884622622219745,0.040479170013232105,21703.913043478264,6,3,6,6_0,6_3,6_0_0 +10054,2,29.0,3,0.0,9,111,2,22,55,4.0,0.0,0.0,1679.7203468767013,0.0,0.0,20343.3,41,42,2,7420,201710054,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1041.8545797512388,0.0,1248.0,0.0,0.0,25003.0,1,1,2,65.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1679.7203468767013,0.08256872517618584,0.06718075218480588,16668.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +10055,2,43.0,3,0.0,1,112,4,55,65,4.0,0.0,624.566843803548,2516.888660784801,0.0,0.0,26475.60258663823,50,50,1,7421,201710055,,,,,2.0,0.0,6.0,2.0,4.0,2.3,2204.745992234283,0.0,1870.0,0.0,0.0,40135.0,1,1,2,170.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3141.455504588349,0.11865473106073084,0.07827221887600222,17450.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +10056,2,40.0,2,0.0,9,111,2,56,37,2.0,0.0,0.0,726.8020731678034,0.0,1061.5931652259337,31481.56,50,31,1,7422,201710056,,,,,2.0,0.0,5.0,3.0,5.0,2.4,3593.65344574862,0.0,540.0,600.0,0.0,30080.0,1,1,1,220.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1788.3952383937371,0.05680770706387285,0.059454628935962005,12533.333333333334,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +10057,2,81.0,2,0.0,6,111,2,74,74,10.0,0.0,0.0,3550.5627204012326,0.0,0.0,52341.579660717005,10,10,1,7423,201710057,,,743.0,,0.0,2.0,5.0,0.0,2.0,1.5,1968.5260559844648,0.0,2638.0,0.0,0.0,80734.0,5,5,1,228.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3550.5627204012326,0.06783445863530124,0.04397853098324414,53822.666666666664,10,5,10,10_1,10_4,10_0_0 +10058,2,61.0,3,0.0,6,111,4,75,78,6.0,0.0,0.0,2691.859530251124,185.7788039145384,0.0,41988.479999999996,71,70,1,7425,201710058,,,410.0,,0.0,1.0,4.0,0.0,2.0,1.5,2107.584538000387,0.0,2000.0,0.0,0.0,37757.0,5,5,1,140.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2877.6383341656624,0.06853399632865163,0.07621469751743154,25171.333333333332,7,4,7,7_1,7_3,7_0_0 +10059,1,40.0,1,437.0,9,111,4,85,64,3.0,0.0,416.377895869032,1076.7438121004495,0.0,0.0,31190.784691045115,60,50,1,7426,201710059,,,440.0,81.0,1.0,0.0,4.0,2.0,4.0,2.1,2031.7970178014825,0.0,800.0,0.0,0.0,32024.0,6,1,3,94.0,7,6.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1493.1217079694816,0.04787060417874506,0.04662508456062583,15249.52380952381,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +10060,2,56.0,3,0.0,6,111,4,0,64,5.0,0.0,0.0,1547.8192298943961,0.0,0.0,23534.856320948817,0,60,2,7427,201710060,,,,180.0,1.0,0.0,1.0,0.0,1.0,1.0,3245.618283229412,0.0,1150.0,0.0,0.0,19510.0,0,1,3,30.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1547.8192298943961,0.0657670991820185,0.07933466068141445,19510.0,5,3,5,5_0,5_2,5_0_0 +10061,1,43.0,3,68.0,8,112,2,0,62,4.0,0.0,0.0,516.8370298082158,0.0,1604.7750014332032,19522.68468577102,0,50,1,7428,201710061,,,283.0,341.0,1.0,0.0,3.0,1.0,2.0,1.5,434.1956837294704,0.0,384.0,907.0,0.0,24716.0,0,1,3,64.0,9,3.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2121.612031241419,0.10867419442510087,0.08583961932519094,16477.333333333332,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +10062,2,65.0,1,0.0,2,111,2,0,78,9.0,0.0,208.188947934516,929.7420946173053,0.0,1732.5544705254479,30281.580315994117,0,50,1,7429,201710062,,,380.0,,0.0,2.0,5.0,1.0,2.0,1.5,3626.049201188695,1670.0,0.0,0.0,0.0,46277.0,0,5,1,100.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2870.4855130772694,0.09479312120183955,0.06202834049478725,30851.333333333332,8,4,8,8_1,8_3,8_0_1 +10063,2,70.0,3,0.0,4,212,2,0,78,5.0,1031.1964059402735,0.0,671.6189527976554,283.09151072691566,0.0,17339.587849749776,0,50,1,7431,201710063,,,199.0,,0.0,0.0,4.0,0.0,1.0,1.0,2276.115808152573,0.0,499.0,0.0,0.0,18357.0,0,5,1,80.0,2,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1985.9068694648445,0.11453022336361372,0.10818253905675461,18357.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +10064,2,27.0,1,0.0,1,111,4,0,38,6.0,0.0,0.0,1063.284514449194,0.0,0.0,13419.900000000001,0,30,2,7432,201710064,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3938.826644554177,0.0,790.0,0.0,0.0,24220.0,0,1,1,60.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1063.284514449194,0.0792319253086233,0.043901094733657886,24220.0,7,4,7,7_0,7_3,7_1_0 +10065,2,36.0,1,0.0,9,120,2,63,63,5.0,0.0,0.0,1269.2117685134049,0.0,0.0,31382.64,43,44,1,7434,201710065,,,320.0,,2.0,0.0,5.0,2.0,4.0,2.1,1793.2335363621814,0.0,943.0,0.0,0.0,41555.0,1,1,2,96.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1269.2117685134049,0.04044311659291267,0.03054293751686692,19788.095238095237,5,3,5,5_1,5_1,5_0_0 +10066,2,33.0,2,0.0,5,111,6,35,21,6.0,0.0,0.0,1130.581002705472,0.0,0.0,47825.08497684891,41,50,2,7435,201710066,,,,,2.0,0.0,4.0,1.0,4.0,2.3,2503.262719447502,0.0,840.0,0.0,0.0,49669.0,1,1,1,85.0,6,5.0,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1130.581002705472,0.02363991623334829,0.022762306523293644,21595.217391304348,6,3,6,6_0,6_2,6_0_0 +10067,2,68.0,2,0.0,1,111,4,0,78,4.0,0.0,0.0,1345.929765125562,0.0,336.17116898821234,28585.726162745417,0,50,1,7436,201710067,,,900.0,,0.0,2.0,3.0,0.0,1.0,1.0,4404.324387104594,0.0,1000.0,190.0,0.0,16518.0,0,5,1,79.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1682.1009341137742,0.05884408618963076,0.10183441906488523,16518.0,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +10068,2,46.0,3,0.0,1,211,2,0,34,5.0,0.0,0.0,952.9182737088979,0.0,3142.315769068764,43474.166044221354,0,20,2,7438,201710068,,,,,1.0,1.0,5.0,1.0,2.0,1.5,3516.239714906028,0.0,708.0,1776.0,0.0,29797.0,0,1,3,128.0,1,3.0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,4095.2340427776617,0.094199254762289,0.13743779718688665,19864.666666666668,5,3,5,5_0,5_1,5_1_0 +10069,1,27.0,3,379.0,99,111,2,0,85,1.0,0.0,0.0,481.01626931098906,0.0,896.3635104993934,17300.7,0,50,2,744,201710069,,,,,0.0,0.0,4.0,3.0,4.0,1.9,2002.1740584533068,864.0,0.0,0.0,0.0,14870.0,0,8,3,74.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1377.3797798103824,0.07961410693268957,0.0926280954815321,7826.315789473684,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10070,2,71.0,2,0.0,5,111,2,0,77,5.0,1110.5192063972174,0.0,387.6277723561618,0.0,0.0,8827.08,0,70,1,7440,201710070,,,190.0,,0.0,1.0,4.0,0.0,1.0,1.0,2446.5927409520737,0.0,288.0,0.0,0.0,19240.0,0,5,1,90.0,4,3.0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1498.1469787533792,0.16972169491534905,0.07786626708697397,19240.0,5,3,5,5_1,5_1,5_0_0 +10071,1,59.0,4,142.0,4,111,5,0,68,2.0,0.0,138.792631956344,161.51157181506744,424.6372660903735,0.0,7076.0,0,71,1,7442,201710071,,,180.0,,1.0,2.0,3.0,0.0,1.0,1.0,3079.000083841115,0.0,120.0,0.0,0.0,13274.0,0,4,3,80.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,724.941469861785,0.10245074475152416,0.054613640941825,13274.0,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +10072,2,41.0,1,0.0,9,120,6,47,31,9.0,0.0,0.0,3431.9411164525827,0.0,1863.1916535253533,78690.26156063334,31,44,1,7443,201710072,,,259.0,,2.0,0.0,5.0,4.0,6.0,2.9,2383.5776289678765,1795.9204829177331,1807.0,0.0,0.0,98550.0,1,1,1,190.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5295.132769977936,0.06729082690744226,0.05373041877197297,33982.75862068966,9,5,9,9_1,9_0,9_0_0 +10073,2,52.0,2,0.0,9,111,2,85,21,3.0,1054.9932460773566,0.0,2280.005022122702,0.0,0.0,32682.32,60,50,1,7444,201710073,,,236.0,,2.0,0.0,4.0,1.0,3.0,2.0,2403.2860326401988,0.0,1694.0,0.0,0.0,29735.0,6,1,1,200.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3334.9982682000586,0.1020428864352365,0.11215733203968585,14867.5,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10074,1,37.0,4,450.0,5,111,1,0,68,3.0,237.96840137083234,0.0,403.7789295376686,0.0,442.3304855108057,12401.039999999999,0,71,2,7446,201710074,150.0,150.0,,150.0,1.0,0.0,3.0,1.0,2.0,1.3,1777.0584222207874,0.0,300.0,250.0,0.0,19671.0,0,1,3,75.0,10,8.0,2,1,1,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1084.0778164193066,0.08741829849910222,0.05511045785264128,15131.538461538461,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +10075,2,27.0,3,0.0,7,111,1,35,46,8.0,0.0,0.0,1413.22625338184,0.0,0.0,25631.02,20,20,2,7447,201710075,,,228.0,300.0,2.0,0.0,4.0,0.0,2.0,1.5,3864.653119826452,0.0,1050.0,0.0,0.0,46326.0,4,1,3,70.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1413.22625338184,0.05513733957454054,0.030506114350080733,30884.0,8,4,8,8_0,8_4,8_0_0 +10076,2,55.0,2,0.0,2,112,2,75,37,10.0,0.0,0.0,1725.868558870447,0.0,3216.1190770232865,73483.14000000001,50,31,1,7448,201710076,,,850.0,,1.0,3.0,5.0,0.0,2.0,1.5,1887.0007607244434,3100.0,0.0,0.0,0.0,70030.0,7,1,1,140.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4941.987635893734,0.06725335411488584,0.0705695792645114,46686.666666666664,10,5,10,10_1,10_0,10_0_1 +10077,2,52.0,3,0.0,5,111,2,0,67,4.0,0.0,0.0,703.9212671606689,0.0,1403.0723000402759,42193.700000000004,0,71,1,7451,201710077,,,320.0,,1.0,3.0,5.0,0.0,1.0,1.0,1603.5266535356743,0.0,523.0,793.0,0.0,16410.0,0,1,1,88.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2106.9935672009447,0.04993621244880028,0.1283969267032873,16410.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10078,1,46.0,3,230.0,9,111,1,56,37,5.0,0.0,0.0,40.37789295376686,0.0,74.31152156581537,22207.059999999998,50,42,8,7453,201710078,,,,,2.0,0.0,4.0,3.0,5.0,2.6,928.2750844034434,0.0,30.0,42.0,0.0,50738.0,4,1,3,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,114.68941451958223,0.005164547424088657,0.0022604244258658643,19514.615384615383,5,3,5,5_0,5_4,5_0_0 +10079,1,47.0,3,150.0,99,111,1,85,48,2.0,0.0,0.0,2490.1081713024964,0.0,2593.6444169542638,20908.36258663823,71,71,2,7454,201710079,999999.0,816.0,,,1.0,0.0,4.0,3.0,5.0,2.8,2433.6130306044247,2500.0,816.0,0.0,0.0,36992.0,6,1,3,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,5083.752588256761,0.24314446275700233,0.137428432857287,13211.428571428572,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +10080,2,36.0,3,0.0,9,111,4,63,46,5.0,0.0,0.0,1994.6679119160829,0.0,0.0,46732.95087530163,44,43,1,7455,201710080,,,573.0,,2.0,0.0,4.0,2.0,4.0,2.1,1934.0309089117407,0.0,1482.0,0.0,0.0,38918.0,4,1,2,126.0,7,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1994.6679119160829,0.04268225897479684,0.05125309399034079,18532.38095238095,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10081,1,35.0,3,408.0,2,112,4,0,85,1.0,0.0,0.0,96.90694308904045,0.0,0.0,15086.08,0,71,2,7456,201710081,,,85.0,,0.0,1.0,3.0,2.0,3.0,1.6,2168.099107326253,0.0,72.0,0.0,0.0,13606.0,0,8,3,70.0,8,1.0,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,96.90694308904045,0.006423599973554459,0.007122368299944176,8503.75,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +10082,2,27.0,3,0.0,6,400,5,64,52,5.0,317.29120182777643,83.27557917380639,1090.2031097517051,0.0,0.0,44574.560000000005,42,43,1,7457,201710082,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2597.701745794848,0.0,810.0,0.0,0.0,34330.0,1,1,2,80.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1490.769890753288,0.03344441068522691,0.04342469824507102,19072.222222222223,5,3,5,5_1,5_0,5_0_0 +10083,0,83.0,3,0.0,2,112,4,0,86,2.0,0.0,0.0,807.5578590753372,212.31863304518674,0.0,6410.08,0,71,1,7459,201710083,,,200.0,,0.0,2.0,2.0,0.0,1.0,1.0,1435.7800881519208,0.0,600.0,0.0,0.0,11642.0,0,5,5,40.0,8,0.0,1,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1019.876492120524,0.15910511134346592,0.08760320324003813,11642.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +10084,1,48.0,4,142.0,9,112,4,0,67,2.0,0.0,0.0,807.2611001168219,0.0,1504.3137618334729,22130.551191295748,0,71,2,746,201710084,,,528.0,,2.0,2.0,4.0,1.0,2.0,1.5,1034.6818662729943,1450.0,0.0,0.0,0.0,18899.0,0,1,3,78.0,7,1.0,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,2311.5748619502947,0.1044517527814431,0.12231201978677679,12599.333333333334,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +10085,2,46.0,1,0.0,1,111,2,37,37,10.0,0.0,0.0,1847.9068869036537,0.0,3158.9343914211495,198635.8079684513,30,30,2,7460,201710085,,,,,3.0,2.0,5.0,3.0,5.0,3.0,1096.868652712747,998.3520236995025,960.0,1200.0,0.0,278354.0,1,1,2,126.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,5006.841278324803,0.025206136444039455,0.017987315714251648,92784.66666666667,10,5,10,10_0,10_4,10_1_0 +10086,2,70.0,2,0.0,8,400,4,75,72,10.0,0.0,346.98157989085996,2438.8247344075185,35.38643884086446,0.0,52459.15999999999,60,31,1,7462,201710086,,,456.0,,0.0,1.0,6.0,0.0,2.0,1.5,1319.9886197363817,0.0,1812.0,0.0,0.0,67437.0,5,5,1,200.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2821.192753139243,0.053778839637143326,0.04183449372212944,44958.0,10,5,10,10_1,10_1,10_0_0 +10087,2,58.0,2,0.0,6,112,4,55,63,6.0,0.0,208.188947934516,807.5578590753372,0.0,0.0,37554.397171918215,50,50,1,7463,201710087,,,240.0,,2.0,3.0,6.0,0.0,2.0,1.5,1530.371609627995,0.0,600.0,0.0,0.0,33938.0,1,1,1,100.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1015.7468070098532,0.02704734687551824,0.02992948338175064,22625.333333333332,6,3,6,6_1,6_1,6_0_0 +10088,2,81.0,3,0.0,1,111,5,77,75,4.0,0.0,1804.304215432472,613.7439728972563,247.7050718860512,0.0,14022.6,70,70,1,7464,201710088,,,250.0,,0.0,3.0,5.0,0.0,2.0,1.5,2640.0723699456107,0.0,456.0,0.0,0.0,27119.0,5,5,1,100.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2665.753260215779,0.1901040648821031,0.09829836130446473,18079.333333333332,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +10089,2,87.0,3,0.0,4,111,2,75,75,7.0,0.0,0.0,3782.062640002829,0.0,0.0,34020.28,60,70,1,7465,201710089,,,340.0,,0.0,2.0,3.0,0.0,2.0,1.5,2927.658580592889,0.0,2810.0,0.0,0.0,40650.0,5,5,1,75.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3782.062640002829,0.11117082634248834,0.093039671340783,27100.0,7,4,7,7_1,7_4,7_0_1 +10090,2,69.0,4,0.0,4,111,1,72,72,1.0,0.0,0.0,605.6683943065029,0.0,0.0,21360.12,12,31,2,7466,201710090,,,,,0.0,1.0,3.0,0.0,2.0,1.5,4559.323091813612,0.0,450.0,0.0,0.0,12430.0,5,5,1,74.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,605.6683943065029,0.028355102607405903,0.04872633904316194,8286.666666666666,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +10091,2,61.0,2,0.0,4,111,1,22,43,9.0,0.0,0.0,648.7381467905209,0.0,0.0,32781.14,33,30,2,7467,201710091,,,,556.0,2.0,4.0,3.0,0.0,2.0,1.5,2483.0476417938003,0.0,482.0,0.0,0.0,53832.0,5,1,3,70.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,648.7381467905209,0.0197899812755298,0.012051161888663266,35888.0,9,5,9,9_0,9_3,9_0_1 +10092,1,51.0,5,204.0,6,111,6,0,31,2.0,0.0,0.0,1615.1157181506744,0.0,0.0,25515.88,0,42,2,747,201710092,,,360.0,,1.0,3.0,3.0,0.0,1.0,1.0,3645.5602550056774,0.0,1200.0,0.0,0.0,12719.0,0,1,3,60.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1615.1157181506744,0.0632984524990192,0.12698448920124808,12719.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10093,2,28.0,1,0.0,3,111,2,0,55,5.0,0.0,0.0,1275.9414173390328,0.0,0.0,40056.21087530163,30,44,2,7470,201710093,,,92.0,,2.0,0.0,3.0,1.0,3.0,1.8,1550.8506421943284,0.0,948.0,0.0,0.0,35708.0,1,1,1,63.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1275.9414173390328,0.031853772223017954,0.03573264863165209,19837.777777777777,5,3,5,5_0,5_3,5_0_1 +10094,2,69.0,3,0.0,4,112,2,0,77,5.0,1189.8420068541616,0.0,619.1276919577585,0.0,0.0,15733.82,0,50,1,7472,201710094,,,370.0,,0.0,2.0,4.0,0.0,1.0,1.0,2363.5938285663133,0.0,460.0,0.0,0.0,18430.0,0,5,1,140.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1808.9696988119201,0.11497333125788398,0.09815353764579056,18430.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +10095,2,46.0,3,0.0,2,111,2,0,37,10.0,0.0,0.0,1060.5926549189428,0.0,3075.0815352711215,44325.004603028254,0,30,1,7473,201710095,,,490.0,,1.0,0.0,6.0,1.0,2.0,1.5,2074.49644481434,0.0,788.0,1738.0,0.0,64521.0,0,1,1,110.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,4135.674190190064,0.0933034125372097,0.06409811054060018,43014.0,10,5,10,10_1,10_4,10_0_1 +10096,2,82.0,1,0.0,1,111,2,77,74,9.0,0.0,0.0,1009.4473238441715,0.0,2565.5168159626733,17030.059999999998,50,60,1,7475,201710096,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1846.1130752890215,0.0,750.0,1450.0,0.0,53710.0,5,5,1,88.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3574.9641398068447,0.20992081882311897,0.0665604941315741,35806.666666666664,9,5,9,9_1,9_2,9_1_0 +10097,2,69.0,2,0.0,8,111,2,74,74,9.0,0.0,0.0,2146.757975375271,0.0,0.0,42367.132625904895,41,20,2,7477,201710097,,,807.0,,1.0,1.0,3.0,1.0,3.0,2.0,3163.2514872819916,0.0,1595.0,0.0,0.0,73334.0,5,5,1,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2146.757975375271,0.05067036266841105,0.029273706266878544,36667.0,9,5,9,9_0,9_4,9_0_0 +10098,2,50.0,3,0.0,1,112,1,54,21,5.0,0.0,0.0,1924.931538494345,0.0,3587.0686739708804,24259.742981302195,60,50,1,7479,201710098,,,788.0,,3.0,0.0,5.0,2.0,5.0,2.8,3122.212013754943,3457.5563351347932,0.0,0.0,0.0,47074.0,1,1,2,80.0,10,1.0,5,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,5512.000212465226,0.22720769204824265,0.11709224226675502,16812.14285714286,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +10099,2,70.0,4,0.0,1,400,2,0,78,2.0,2138.542700319213,0.0,619.1276919577585,81.38880933398825,0.0,13451.119999999999,0,70,1,748,201710099,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2842.6204664673583,0.0,460.0,0.0,0.0,11904.0,0,5,1,110.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2839.05920161096,0.21106489285732044,0.23849623669446907,11904.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +10100,1,42.0,4,140.0,4,111,2,0,45,4.0,0.0,0.0,269.1859530251124,0.0,1592.3897478389006,18369.06,0,42,2,7480,201710100,,,,,1.0,0.0,2.0,1.0,2.0,1.3,1938.6104302312306,0.0,200.0,900.0,0.0,22350.0,0,1,3,46.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1861.575700864013,0.10134300290074794,0.08329197766729365,17192.30769230769,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +10101,2,38.0,2,0.0,99,111,1,0,52,7.0,0.0,0.0,403.7789295376686,0.0,442.3304855108057,32197.079999999998,0,42,8,7481,201710101,,,,296.0,1.0,0.0,2.0,0.0,1.0,1.0,2501.3625105878414,0.0,300.0,250.0,0.0,24792.0,0,1,3,42.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,846.1094150484744,0.02627907297955201,0.034128324259780345,24792.0,7,4,7,7_0,7_4,7_0_0 +10102,2,57.0,9,0.0,5,120,2,0,33,10.0,2379.684013708323,0.0,0.0,226.47320858153253,0.0,26549.691191295748,0,44,1,7482,201710102,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2048.357074939312,0.0,0.0,0.0,0.0,45242.0,0,1,3,130.0,0,0.0,1,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2606.157222289856,0.09816148909273484,0.057604819024133676,45242.0,10,5,10,10_1,10_0,10_0_0 +10103,2,83.0,3,0.0,1,300,2,71,71,3.0,1507.1332086819382,346.98157989085996,1076.7438121004495,318.4779495677801,0.0,27955.38995415666,70,71,1,7484,201710103,,,,,0.0,1.0,8.0,1.0,3.0,2.0,2235.880940504981,0.0,800.0,0.0,0.0,30769.0,5,5,1,200.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3249.336550241028,0.11623291807302753,0.10560422991455777,15384.5,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10104,1,22.0,3,177.0,1,111,4,0,84,1.0,0.0,0.0,807.5578590753372,0.0,0.0,17036.67047419752,0,41,2,7485,201710104,,,,163.0,0.0,0.0,1.0,0.0,1.0,1.0,2240.123886492854,0.0,600.0,0.0,0.0,9334.0,0,3,3,15.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,807.5578590753372,0.04740115507301762,0.08651787648118033,9334.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +10105,2,78.0,4,0.0,1,300,2,0,72,1.0,1348.4876077680499,0.0,710.6509159862967,88.46609710216114,0.0,12097.271191295746,0,70,1,7487,201710105,,,,,0.0,3.0,9.0,0.0,1.0,1.0,2274.1031316926155,0.0,528.0,0.0,0.0,9560.0,0,5,1,120.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2147.6046208565076,0.17752802155925518,0.22464483481762632,9560.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +10106,2,48.0,2,0.0,5,112,2,55,37,8.0,1745.1016100527704,242.88710592360198,495.46879876091236,198.16405750884095,805.4142594489999,69151.48027116715,50,31,1,7488,201710106,,,730.0,,2.0,1.0,6.0,2.0,4.0,2.3,1924.820398204979,776.3345027021901,47.0,0.0,0.0,68148.0,1,1,2,150.0,9,3.0,4,5,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3487.0358316951256,0.05042604754115513,0.051168571809812845,29629.565217391308,8,4,8,8_1,8_1,8_0_0 +10107,2,57.0,4,0.0,5,112,2,85,78,2.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,10806.110875301627,71,50,1,7490,201710107,,,280.0,,1.0,2.0,5.0,1.0,3.0,2.0,407.397821911203,1000.0,0.0,0.0,0.0,25217.0,7,7,1,91.0,6,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1594.1895599657205,0.14752667063683284,0.06321884284275371,12608.5,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10108,2,42.0,3,0.0,8,120,4,56,47,5.0,0.0,0.0,1749.7086946632305,297.2460862632615,0.0,34832.82556796596,50,31,1,7491,201710108,,,166.0,,2.0,0.0,7.0,3.0,5.0,2.4,1901.0753203133108,0.0,1300.0,0.0,0.0,44012.0,1,1,2,120.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2046.954780926492,0.058765108702779935,0.046509015289614014,18338.333333333336,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10109,2,31.0,3,0.0,9,111,4,54,46,7.0,0.0,0.0,1584.1593335527864,116.7752481748527,0.0,35915.888161188144,30,50,1,7492,201710109,,,440.0,,2.0,0.0,4.0,0.0,2.0,1.5,2475.7075750071685,0.0,1177.0,0.0,0.0,38585.0,1,1,1,120.0,5,4.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1700.9345817276392,0.047358833898077546,0.04408279335823867,25723.333333333332,7,4,7,7_1,7_2,7_0_0 +10110,1,40.0,3,272.0,1,111,2,0,68,2.0,0.0,0.0,775.2555447123236,0.0,0.0,8002.71665845403,0,71,2,7493,201710110,,,,,1.0,4.0,1.0,0.0,1.0,1.0,11166.548889244588,0.0,576.0,0.0,0.0,13144.0,0,4,3,25.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,775.2555447123236,0.09687404637690722,0.05898170607975682,13144.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +10111,2,60.0,3,0.0,1,112,6,0,67,5.0,0.0,0.0,134.5929765125562,53.079658261296686,0.0,13188.8,0,50,1,7495,201710111,,,72.0,,1.0,0.0,2.0,0.0,1.0,1.0,3632.2271889848425,0.0,100.0,0.0,0.0,20933.0,0,1,1,70.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,187.67263477385288,0.014229697529256102,0.008965396014611039,20933.0,5,3,5,5_1,5_0,5_1_0 +10112,2,66.0,2,0.0,3,111,2,0,74,9.0,0.0,0.0,1608.7808409898223,0.0,5430.274736524649,23171.841640228384,0,60,1,7496,201710112,,,,,0.0,2.0,6.0,0.0,1.0,1.0,1016.2849900675719,2164.4208687285573,300.0,1800.0,0.0,34292.0,0,5,1,110.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,7039.055577514471,0.3037762680586442,0.20526815518238864,34292.0,9,5,9,9_1,9_2,9_0_1 +10113,2,50.0,3,0.0,8,400,2,13,67,6.0,1713.3724898699927,0.0,839.8601734383507,0.0,0.0,26715.10031599411,50,50,1,7497,201710113,,,172.0,,3.0,2.0,6.0,1.0,3.0,2.0,1626.6845337452326,0.0,624.0,0.0,0.0,41728.0,1,1,1,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2553.2326633083435,0.0955726399342676,0.06118751589600133,20864.0,5,3,5,5_1,5_0,5_0_0 +10114,2,67.0,2,0.0,1,300,4,77,72,10.0,804.3331966334133,0.0,3386.359289055914,0.0,0.0,53068.100000000006,60,12,1,7498,201710114,,,531.0,,0.0,4.0,9.0,0.0,2.0,1.5,1395.4041916953581,0.0,2516.0,0.0,0.0,56709.0,5,5,1,250.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4190.692485689327,0.07896820285047565,0.07389819051101813,37806.0,9,5,9,9_1,9_1,9_1_0 +10115,2,52.0,3,0.0,7,111,2,85,63,3.0,0.0,0.0,67.2964882562781,0.0,176.9321942043223,18499.839999999997,71,50,1,7499,201710115,,,300.0,501.0,1.0,1.0,5.0,2.0,4.0,2.5,2313.75690455344,0.0,50.0,100.0,0.0,34681.0,6,1,3,92.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,244.2286824606004,0.013201664579834228,0.0070421464911796195,13872.4,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10116,1,54.0,5,272.0,99,111,2,0,69,1.0,0.0,0.0,406.4707890679197,0.0,1151.8285842701382,18424.34175060326,0,60,1,75,201710116,,,600.0,265.0,3.0,4.0,4.0,2.0,3.0,2.0,484.95147107788654,0.0,302.0,651.0,0.0,15594.0,0,4,3,110.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1558.2993733380579,0.08457829291442855,0.09992941986264318,7797.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +10117,2,43.0,1,0.0,9,111,2,31,38,9.0,0.0,0.0,454.25129572987714,0.0,748.4231814842833,86771.37999999999,20,31,1,750,201710117,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.1,3055.53896504687,0.0,337.5,423.0,0.0,83094.0,1,1,2,120.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1202.6744772141606,0.01386026679781007,0.01447366208407539,39568.57142857143,9,5,9,9_1,9_3,9_0_0 +10118,0,40.0,2,0.0,1,111,4,52,63,6.0,0.0,0.0,3534.6952395630906,0.0,968.6595774477236,72971.88,30,50,1,7500,201710118,,,622.0,,2.0,1.0,4.0,3.0,5.0,2.4,1128.3285835266406,933.6857927745816,2240.0,0.0,0.0,54170.0,1,1,5,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4503.354817010814,0.06171356441701672,0.08313374223760041,22570.833333333336,6,3,6,6_1,6_4,6_1_0 +10119,2,72.0,2,0.0,6,300,5,71,71,4.0,0.0,485.77421184720396,1332.4704674743064,205.24134527701386,0.0,23152.739999999998,70,70,1,7501,201710119,,,,,0.0,5.0,4.0,0.0,2.0,1.5,1438.6811388846666,0.0,990.0,0.0,0.0,23851.0,5,5,1,105.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2023.4860245985242,0.08739725944309504,0.08483862414986894,15900.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10120,2,56.0,2,0.0,2,111,2,0,34,9.0,0.0,0.0,846.6176067612619,0.0,4145.879287218997,114923.44095999491,0,10,1,7502,201710120,,,250.0,,2.0,1.0,7.0,2.0,3.0,2.0,1464.7598227188935,244.22296775500388,528.0,2200.0,0.0,81156.0,0,1,2,180.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,4992.496893980258,0.04344193710418188,0.06151728638646876,40578.0,9,5,9,9_1,9_3,9_0_1 +10121,2,65.0,2,0.0,6,111,4,74,75,9.0,0.0,0.0,2489.9700654822896,265.39829130648343,0.0,27767.52,41,41,1,7504,201710121,,,380.0,,0.0,2.0,6.0,0.0,2.0,1.5,1478.5704496308754,0.0,1850.0,0.0,0.0,51332.0,5,5,1,140.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2755.368356788773,0.09922990446351611,0.053677401168642815,34221.333333333336,9,5,9,9_1,9_3,9_0_0 +10122,2,85.0,2,0.0,4,111,4,0,77,7.0,0.0,0.0,1076.7438121004495,155.70033089980362,0.0,25135.376658454028,0,70,1,7505,201710122,,,300.0,,0.0,3.0,5.0,0.0,2.0,1.5,4384.157815188916,0.0,800.0,0.0,0.0,37699.0,0,5,1,130.0,8,7.0,5,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1232.4441430002532,0.0490322528182896,0.0326916932279438,25132.666666666668,7,4,7,7_1,7_3,7_0_1 +10123,2,55.0,2,0.0,7,211,2,0,21,4.0,1952.927347249964,0.0,1000.0258154882926,201.70270139292742,0.0,36721.8,0,50,1,7506,201710123,,,,,1.0,0.0,5.0,1.0,2.0,1.5,2942.9410709562794,0.0,743.0,0.0,0.0,31346.0,0,1,2,105.0,4,4.0,2,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3154.655864131184,0.08590689628861287,0.1006398221186494,20897.333333333332,5,3,5,5_1,5_2,5_0_0 +10124,2,56.0,1,0.0,8,112,5,0,64,5.0,0.0,235.94747432578478,1049.8252167979383,0.0,0.0,22216.080315994117,0,50,1,7507,201710124,,,180.0,,1.0,1.0,3.0,0.0,1.0,1.0,3585.551642321154,0.0,780.0,0.0,0.0,20470.0,0,1,1,80.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1285.772691123723,0.05787576713962684,0.06281253986925857,20470.0,5,3,5,5_1,5_0,5_0_0 +10125,1,35.0,4,244.0,99,111,1,0,52,3.0,0.0,0.0,597.5928157157495,0.0,0.0,37564.91202733073,0,70,2,7508,201710125,,,,170.0,1.0,0.0,3.0,2.0,3.0,1.6,1224.7163412969926,0.0,444.0,0.0,0.0,24588.0,0,1,3,51.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,597.5928157157495,0.015908271401806156,0.024304246612809072,15367.5,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +10126,2,64.0,2,0.0,6,221,2,77,74,7.0,0.0,0.0,3338.106560712875,162.7776186679765,767.8561312091232,43934.91773538087,50,60,1,7509,201710126,,,213.0,,0.0,2.0,5.0,0.0,2.0,1.5,1078.8962105189496,740.1324235020066,2174.0,0.0,0.0,36576.0,5,5,1,98.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4268.740310589975,0.09716053951211454,0.11670877927028583,24384.0,7,4,7,7_1,7_1,7_0_0 +10127,2,71.0,2,0.0,4,111,1,0,75,6.0,0.0,0.0,360.7091770536506,0.0,419.32930026424384,22914.68,0,60,2,751,201710127,,,,,0.0,0.0,3.0,0.0,1.0,1.0,1869.2655385705202,0.0,268.0,237.0,0.0,21244.0,0,5,1,46.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,780.0384773178944,0.03404099369128848,0.036718060502631066,21244.0,6,3,6,6_0,6_3,6_0_1 +10128,2,50.0,2,0.0,9,111,2,52,33,8.0,0.0,0.0,572.0201501783638,0.0,1006.7441850225938,47174.44,20,31,1,7510,201710128,,,,,2.0,0.0,5.0,3.0,5.0,2.6,1724.598377927301,0.0,425.0,569.0,0.0,73256.0,1,1,2,120.0,7,5.0,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1578.7643352009577,0.0334665199035952,0.021551331429520555,28175.384615384613,8,4,8,8_1,8_2,8_0_0 +10129,2,67.0,3,0.0,4,111,1,0,77,1.0,0.0,0.0,484.5347154452023,0.0,0.0,10706.270875301629,0,50,2,7511,201710129,,,,92.0,0.0,3.0,3.0,0.0,1.0,1.0,2627.4611620352844,0.0,360.0,0.0,0.0,10240.0,0,5,3,52.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,484.5347154452023,0.04525709475210261,0.04731784330519554,10240.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +10130,2,41.0,4,0.0,1,111,2,0,22,2.0,0.0,0.0,1292.0925745205395,0.0,0.0,28533.02,0,41,2,7513,201710130,,,,,1.0,2.0,4.0,0.0,1.0,1.0,4371.625152686307,0.0,960.0,0.0,0.0,13425.0,0,1,1,78.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1292.0925745205395,0.045284115544745686,0.09624525694752623,13425.0,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +10131,1,40.0,3,310.0,99,111,2,0,33,5.0,0.0,0.0,734.8859670029,0.0,1369.444252151851,13520.980000000001,0,31,2,7515,201710131,,,,250.0,1.0,0.0,4.0,1.0,2.0,1.3,765.2346988867378,1320.0,0.0,0.0,0.0,24002.0,0,1,3,70.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2104.330219154751,0.15563444507385935,0.08767311970480589,18463.076923076922,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +10132,1,59.0,4,82.0,5,111,2,0,62,1.0,0.0,0.0,1022.9066214954271,0.0,1693.2410985353642,27363.19665845403,0,70,1,7516,201710132,,,588.0,610.0,2.0,2.0,4.0,2.0,3.0,2.0,1285.192828299278,0.0,760.0,957.0,0.0,17842.0,0,4,3,80.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2716.1477200307913,0.09926280741002606,0.15223336621627573,8921.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +10133,1,53.0,3,363.0,99,111,1,85,78,1.0,0.0,0.0,269.1859530251124,0.0,265.39829130648343,13413.159999999998,71,71,2,7517,201710133,,,,,0.0,1.0,3.0,3.0,5.0,2.4,3672.061468120207,0.0,200.0,150.0,0.0,19906.0,6,7,3,64.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,534.5842443315958,0.03985520521126981,0.026855432750507172,8294.166666666668,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +10134,2,58.0,4,0.0,7,120,2,0,75,7.0,1570.5914490474934,0.0,1101.554558976679,0.0,740.98111869308,37580.86269319669,0,31,1,7518,201710134,,,160.0,,0.0,2.0,6.0,0.0,1.0,1.0,2305.5261726843087,714.2277424860149,523.0,0.0,0.0,29730.0,0,5,1,150.0,0,0.0,1,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3413.1271267172524,0.09082088281425044,0.11480414149738488,29730.0,8,4,8,8_1,8_0,8_0_0 +10135,2,33.0,3,0.0,99,111,4,0,53,5.0,0.0,0.0,1707.984871944338,0.0,0.0,19652.497038047048,0,41,2,7519,201710135,,,380.0,327.0,1.0,0.0,2.0,0.0,1.0,1.0,1821.4238063415755,0.0,1269.0,0.0,0.0,22046.0,0,1,3,65.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1707.984871944338,0.0869093056540192,0.07747368556401787,22046.0,6,3,6,6_0,6_2,6_0_0 +10136,2,71.0,3,0.0,1,111,4,77,78,4.0,0.0,0.0,639.316638434642,0.0,0.0,32482.768417269923,60,70,2,752,201710136,,,,,0.0,1.0,2.0,0.0,2.0,1.5,5060.001601290747,0.0,475.0,0.0,0.0,24015.0,5,5,1,30.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,639.316638434642,0.01968171647878203,0.026621554796362357,16010.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +10137,2,62.0,4,0.0,2,111,1,0,86,4.0,0.0,0.0,484.5347154452023,0.0,877.5836832534386,21094.11904104552,0,50,2,7520,201710137,410.0,410.0,,311.0,1.0,1.0,4.0,1.0,2.0,1.5,2992.2198389582077,0.0,360.0,496.0,0.0,25613.0,0,5,3,70.0,6,4.0,2,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1362.118398698641,0.0645733721350578,0.05318074410255109,17075.333333333332,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +10138,2,50.0,2,0.0,7,112,5,67,54,10.0,0.0,763.359475759892,810.2497186055883,0.0,0.0,29220.519999999997,71,50,1,7521,201710138,,,297.0,,2.0,2.0,4.0,0.0,2.0,1.5,2642.761876131403,0.0,602.0,0.0,0.0,63792.0,1,1,1,90.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1573.6091943654803,0.053852881275401006,0.024667814057647987,42528.0,10,5,10,10_1,10_0,10_0_0 +10139,2,31.0,2,0.0,1,111,1,0,31,10.0,0.0,0.0,969.0694308904046,0.0,0.0,60130.665846751304,0,0,2,7522,201710139,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3904.675317423805,0.0,720.0,0.0,0.0,91950.0,0,1,2,58.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,969.0694308904046,0.016116060203959323,0.010539091146170795,91950.0,10,5,10,10_0,10_4,10_1_0 +10140,2,50.0,4,0.0,2,111,1,68,68,6.0,0.0,0.0,935.4211867622655,0.0,429.9452319165032,76771.982091973,71,71,2,7524,201710140,,,,,3.0,0.0,5.0,3.0,5.0,3.0,2932.5608745501236,0.0,695.0,243.0,0.0,65970.0,1,1,2,92.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1365.3664186787687,0.017784696727551685,0.020696777606165964,21990.0,6,3,6,6_0,6_4,6_0_1 +10141,1,42.0,4,83.0,99,111,1,0,43,2.0,0.0,0.0,207.27318382933655,0.0,230.01185246561897,30710.33087530163,30,20,8,7525,201710141,,,,,1.0,2.0,3.0,1.0,3.0,1.8,1715.193264842315,0.0,154.0,130.0,0.0,19267.0,5,1,2,55.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,437.2850362949555,0.014239020675828539,0.022696062505577177,10703.888888888889,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +10142,2,81.0,2,0.0,3,112,2,0,71,5.0,2221.038412794435,0.0,1076.7438121004495,247.7050718860512,0.0,34385.78784974978,0,70,1,7527,201710142,,,120.0,,0.0,9.0,8.0,0.0,1.0,1.0,1963.0349147191666,0.0,800.0,0.0,0.0,19592.0,0,5,1,120.0,8,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3545.487296780935,0.10310909007736273,0.18096607272258755,19592.0,5,3,5,5_1,5_1,5_0_1 +10143,1,68.0,4,146.0,4,111,2,0,77,3.0,0.0,0.0,440.374848408556,0.0,820.6290935243289,8458.78,0,50,2,7528,201710143,,,,238.0,0.0,7.0,4.0,0.0,1.0,1.0,2021.3772524355136,791.0,0.0,0.0,0.0,14982.0,0,5,3,87.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1261.003941932885,0.14907633747808607,0.08416793097936758,14982.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +10144,2,81.0,2,0.0,4,111,1,75,75,9.0,0.0,0.0,1212.597630084989,0.0,1110.9347351999872,46548.646227363235,31,31,2,7529,201710144,,,,,0.0,2.0,2.0,0.0,2.0,1.5,2580.47198287487,1070.8240573938874,458.0,0.0,0.0,51537.0,5,5,1,54.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2323.5323652849765,0.04991621784091988,0.04508474232658045,34358.0,9,5,9,9_0,9_4,9_0_1 +10145,2,44.0,4,0.0,8,400,4,54,62,6.0,0.0,0.0,1076.7438121004495,0.0,0.0,23213.52,41,70,1,753,201710145,,,500.0,,2.0,0.0,4.0,1.0,3.0,2.0,2407.1954501407063,0.0,800.0,0.0,0.0,47650.0,1,1,2,100.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1076.7438121004495,0.046384340337029865,0.02259693204827806,23825.0,6,3,6,6_1,6_0,6_0_0 +10146,1,48.0,4,129.0,9,400,5,13,13,1.0,0.0,138.792631956344,1702.6011528838358,265.39829130648343,0.0,47386.76000000001,31,31,1,7531,201710146,,,255.0,,2.0,0.0,6.0,2.0,4.0,2.1,1636.597510806855,0.0,1265.0,0.0,0.0,19631.0,1,1,2,167.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2106.792076146663,0.044459508861687584,0.1073196513752057,9348.095238095239,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +10147,2,51.0,3,0.0,7,211,5,56,52,9.0,0.0,693.9631597817199,1601.6564204994188,0.0,0.0,46091.150413998264,41,50,1,7532,201710147,,,570.0,,4.0,0.0,4.0,1.0,4.0,2.5,1634.9675262095975,0.0,1190.0,0.0,0.0,76333.0,1,1,1,100.0,3,3.0,5,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2295.619580281139,0.049806081203474156,0.030073750282068556,30533.2,8,4,8,8_1,8_1,8_0_0 +10148,2,63.0,3,0.0,6,112,5,77,78,2.0,793.228004569441,34.698157989086,578.7497990039916,0.0,0.0,23838.185846751298,50,50,1,7534,201710148,,,,,0.0,2.0,7.0,0.0,2.0,1.5,2748.1098577278844,0.0,430.0,0.0,0.0,16220.0,6,5,1,90.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1406.6759615625188,0.05900935459626105,0.08672478184725763,10813.333333333334,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10149,2,29.0,1,0.0,1,111,4,37,33,10.0,0.0,0.0,823.7090162568439,0.0,0.0,105792.63169350261,20,20,2,7535,201710149,,,,1365.0,2.0,0.0,3.0,0.0,2.0,1.5,3279.977365470241,0.0,612.0,0.0,0.0,87508.0,1,4,3,52.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,823.7090162568439,0.007786071705289028,0.009412956715464231,58338.666666666664,10,5,10,10_0,10_4,10_1_0 +10150,2,53.0,4,0.0,3,111,2,0,54,3.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,17575.499999999996,0,60,1,7536,201710150,,,300.0,,1.0,3.0,5.0,0.0,1.0,1.0,1452.181207697155,1300.0,0.0,0.0,0.0,14508.0,0,1,1,100.0,6,5.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2072.4464279554363,0.1179167834744637,0.14284852687864877,14508.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +10151,1,28.0,3,200.0,4,120,2,0,55,4.0,0.0,0.0,145.36041463356068,0.0,0.0,16614.519999999997,0,31,2,7537,201710151,,,260.0,83.0,2.0,0.0,3.0,1.0,2.0,1.5,2522.8059036571367,0.0,108.0,0.0,0.0,25428.0,0,1,3,60.0,0,1.0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,145.36041463356068,0.0087489987452879,0.005716549261977374,16952.0,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +10152,2,80.0,2,0.0,5,111,1,74,74,9.0,0.0,0.0,323.0231436301349,0.0,155.70033089980362,19869.731191295745,31,30,2,7538,201710152,,,,,0.0,1.0,3.0,0.0,2.0,1.5,4379.509018837657,0.0,240.0,88.0,0.0,49260.0,5,5,5,55.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,478.72347452993847,0.024093102715936638,0.009718300335565134,32840.0,9,5,9,9_0,9_3,9_0_0 +10153,2,32.0,3,0.0,1,112,5,43,38,9.0,0.0,691.1873071425931,1372.8483604280732,56.61830214538313,0.0,44900.92,44,31,1,7539,201710153,,,714.0,,2.0,0.0,5.0,1.0,3.0,1.8,2372.2491756176532,0.0,1020.0,0.0,0.0,55452.0,1,1,2,90.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2120.6539697160492,0.04722963292770058,0.03824305651222768,30806.666666666664,8,4,8,8_1,8_0,8_1_0 +10154,2,87.0,3,0.0,4,111,2,0,78,5.0,0.0,0.0,390.319631886413,0.0,2123.1863304518674,11928.36,0,71,2,7540,201710154,,,320.0,,0.0,2.0,2.0,0.0,1.0,1.0,4288.585098821404,0.0,290.0,1200.0,0.0,20391.0,0,5,1,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2513.5059623382804,0.2107168095478574,0.12326545840509442,20391.0,5,3,5,5_0,5_4,5_0_1 +10155,2,36.0,3,0.0,5,120,2,56,62,6.0,1586.456009138882,0.0,1534.3599322431405,123.8525359430256,0.0,112553.04,42,44,1,7541,201710155,,,,,2.0,0.0,6.0,2.0,5.0,2.4,3369.892995700296,0.0,1140.0,0.0,0.0,52332.0,1,1,2,110.0,0,3.0,5,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3244.668477325048,0.028827906179389275,0.06200161425752977,21805.0,6,3,6,6_1,6_1,6_0_0 +10156,2,82.0,3,0.0,5,112,2,0,75,4.0,0.0,0.0,2092.9207847702487,0.0,0.0,13461.88,0,71,1,7542,201710156,,,184.0,,0.0,2.0,4.0,0.0,1.0,1.0,1589.5550758549434,0.0,1555.0,0.0,0.0,18364.0,0,5,1,80.0,10,3.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2092.9207847702487,0.15547017093973864,0.11396867701863693,18364.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10157,1,48.0,5,38.0,1,111,2,0,52,5.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,22833.519999999997,0,60,1,7543,201710157,,,198.0,,1.0,0.0,4.0,1.0,2.0,1.3,635.383048700144,1200.0,0.0,0.0,0.0,24306.0,0,1,1,70.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1913.0274719588647,0.08378154011991427,0.07870597679416048,18696.923076923078,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +10158,2,71.0,3,0.0,4,112,4,72,77,5.0,0.0,0.0,2153.487624200899,176.75526201011795,0.0,26907.696322376294,50,44,1,7544,201710158,,,480.0,,0.0,2.0,4.0,0.0,2.0,1.5,2165.349649860048,0.0,1600.0,0.0,0.0,27914.0,5,5,1,90.0,6,2.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2330.242886211017,0.08660135220394916,0.0834793611166804,18609.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +10159,1,32.0,3,127.0,1,111,6,0,84,1.0,0.0,0.0,565.290501352736,0.0,0.0,6663.960000000001,0,30,2,7545,201710159,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3172.9361315879246,0.0,420.0,0.0,0.0,1524.0,0,3,3,21.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,565.290501352736,0.08482801537715351,0.3709255258220052,1524.0,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +10160,2,62.0,3,0.0,6,111,4,0,77,7.0,0.0,0.0,2113.1097312471325,0.0,0.0,16478.0571719182,0,71,1,7546,201710160,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2745.6255537761726,0.0,1570.0,0.0,0.0,26102.0,0,5,1,90.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2113.1097312471325,0.1282377958275494,0.08095585515466755,26102.0,7,4,7,7_1,7_3,7_0_0 +10161,1,38.0,3,249.0,1,112,6,0,85,1.0,594.9210034270808,0.0,1345.929765125562,106.15931652259337,0.0,11113.92,0,50,1,7548,201710161,,,170.0,,0.0,0.0,3.0,0.0,1.0,1.0,3350.8309274053277,0.0,1000.0,0.0,0.0,7038.0,0,7,3,90.0,4,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2047.0100850752362,0.18418434585413934,0.29085110614879744,7038.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +10162,2,72.0,2,0.0,4,112,2,77,75,8.0,0.0,0.0,473.76727732419783,0.0,1344.6846759528494,68553.45999999999,60,33,1,7550,201710162,,,336.0,,0.0,0.0,4.0,0.0,2.0,1.5,2656.7798500856534,0.0,352.0,760.0,0.0,43595.0,5,5,1,100.0,9,1.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1818.4519532770473,0.026526041913523365,0.04171239713905373,29063.333333333332,8,4,8,8_1,8_1,8_0_1 +10163,2,71.0,1,0.0,1,111,2,75,74,10.0,0.0,0.0,3057.9524263652766,0.0,4463.9992597750515,80454.68000000001,33,20,1,7552,201710163,,,,,0.0,2.0,8.0,0.0,2.0,1.5,1712.5014564940846,0.0,2272.0,2523.0,0.0,124884.0,5,5,1,350.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,7521.951686140328,0.09349302844956102,0.060231508328851796,83256.0,10,5,10,10_1,10_3,10_1_0 +10164,2,83.0,4,0.0,4,112,2,77,78,4.0,95.18736054833293,0.0,134.5929765125562,318.4779495677801,0.0,12733.335067511318,71,71,1,7555,201710164,,,370.0,,0.0,3.0,5.0,0.0,2.0,1.5,2016.3977064922242,0.0,100.0,0.0,0.0,24350.0,5,5,1,80.0,9,2.0,3,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,548.2582866286692,0.04305692764086073,0.022515740723969987,16233.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +10165,2,57.0,3,0.0,6,112,5,13,11,9.0,0.0,0.0,1350.3256178111399,0.0,429.5542717061333,10373.237477955816,71,50,1,7556,201710165,,,,,2.0,4.0,4.0,0.0,2.0,1.5,1463.2668944689333,414.0450681078347,832.0,0.0,0.0,46841.0,1,1,1,100.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1779.879889517273,0.17158383709036826,0.037998332433493584,31227.333333333332,8,4,8,8_1,8_1,8_0_0 +10166,2,63.0,4,0.0,4,221,2,78,78,5.0,0.0,0.0,919.720922339993,0.0,1713.8802307233773,26145.859999999997,50,70,1,7558,201710166,,,443.0,,0.0,5.0,3.0,0.0,2.0,1.5,2014.4868527022718,1652.0,0.0,0.0,0.0,30108.0,5,5,3,70.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2633.6011530633705,0.10072727204472795,0.08747180659835826,20072.0,5,3,5,5_1,5_1,5_0_1 +10167,2,72.0,2,0.0,9,211,4,0,74,6.0,0.0,0.0,742.9532303493102,0.0,0.0,13189.83665845403,0,30,2,7559,201710167,,,,323.0,0.0,4.0,1.0,0.0,1.0,1.0,3507.700941226414,0.0,552.0,0.0,0.0,22007.0,0,5,3,25.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,742.9532303493102,0.05632770515570517,0.0337598596060031,22007.0,6,3,6,6_0,6_2,6_0_0 +10168,1,22.0,3,270.0,99,111,2,0,68,1.0,0.0,0.0,807.5578590753372,0.0,0.0,3257.6566584540305,0,60,2,7560,201710168,,,,80.0,1.0,0.0,1.0,0.0,1.0,1.0,2297.0280680984674,0.0,600.0,0.0,0.0,3240.0,0,1,3,35.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,807.5578590753372,0.2478953259176723,0.24924625280103,3240.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10169,2,55.0,2,0.0,1,111,2,0,63,1.0,0.0,0.0,2153.487624200899,0.0,2830.9151072691566,83765.59087530163,0,12,2,7561,201710169,,,730.0,,1.0,2.0,8.0,2.0,3.0,2.0,655.6366027888969,0.0,1600.0,1600.0,0.0,18684.0,0,1,1,250.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4984.402731470056,0.05950417921471037,0.26677385631931366,9342.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +10170,2,79.0,2,0.0,6,111,4,0,75,10.0,0.0,0.0,2086.584750065172,0.0,1505.6002572727907,44043.329647839986,0,31,2,7562,201710170,,,,,0.0,5.0,4.0,0.0,1.0,1.0,2094.2650654460404,1451.240046082366,950.0,0.0,0.0,38491.0,0,5,1,80.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,3592.185007337963,0.08156025069085879,0.09332532299337411,38491.0,9,5,9,9_0,9_3,9_0_0 +10171,2,57.0,1,0.0,1,111,6,22,45,1.0,380.74944219333173,0.0,1884.3016711757866,0.0,0.0,42760.91169350261,30,30,1,7563,201710171,,,1000.0,,2.0,3.0,6.0,3.0,5.0,3.0,2822.7502113472087,0.0,1400.0,0.0,0.0,24150.0,7,4,1,80.0,9,7.0,4,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2265.0511133691184,0.052970131450992566,0.09379093637139206,8050.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +10172,2,75.0,3,0.0,7,111,6,0,77,4.0,0.0,0.0,941.4334622741695,0.0,1754.3410836278636,13059.4,0,70,1,7565,201710172,,,210.0,,0.0,4.0,4.0,0.0,1.0,1.0,2684.545075855154,1691.0,0.0,0.0,0.0,18484.0,0,5,1,111.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2695.774545902033,0.2064240735333961,0.14584367809467827,18484.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10173,2,59.0,3,0.0,1,112,2,0,43,9.0,1576.937273084049,327.55061141697183,699.8834778652922,191.08676974066807,0.0,17060.32,0,44,1,7566,201710173,,,235.0,,1.0,1.0,4.0,0.0,1.0,1.0,1882.7984926515478,0.0,520.0,0.0,0.0,31527.0,0,1,2,95.0,4,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2795.458132106981,0.16385730936506354,0.08866870086297399,31527.0,8,4,8,8_1,8_0,8_1_0 +10174,2,66.0,2,0.0,4,111,2,0,78,7.0,0.0,0.0,577.403869238866,0.0,1578.235172302555,25754.591191295745,0,41,1,7567,201710174,,,110.0,,0.0,0.0,4.0,0.0,1.0,1.0,2758.52602402445,0.0,429.0,892.0,0.0,25230.0,0,5,1,110.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2155.6390415414207,0.0836992140752737,0.08543951809518116,25230.0,7,4,7,7_1,7_3,7_0_1 +10175,2,68.0,3,0.0,5,300,4,72,77,7.0,0.0,0.0,139.97669557305844,0.0,0.0,63410.40000000001,50,50,1,7569,201710175,,,150.0,,0.0,2.0,6.0,0.0,2.0,1.5,1711.0254059086515,0.0,104.0,0.0,0.0,39103.0,5,5,1,210.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,139.97669557305844,0.002207472206027062,0.003579691982023334,26068.666666666668,7,4,7,7_1,7_0,7_0_0 +10176,1,21.0,3,177.0,8,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,8238.380000000001,0,31,2,757,201710176,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2770.861368838974,0.0,0.0,0.0,0.0,2160.0,0,3,3,20.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,2160.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10177,2,32.0,4,0.0,99,112,2,46,65,4.0,0.0,0.0,1014.9220589744596,0.0,1891.285508843049,54240.82206659738,31,43,1,7571,201710177,,,1440.0,,2.0,0.0,4.0,2.0,4.0,2.1,3112.196895936523,1823.0,0.0,0.0,0.0,35020.0,4,1,3,96.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2906.207567817509,0.053579710946291347,0.08298708074864389,16676.190476190477,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10178,2,65.0,3,0.0,3,111,1,0,77,4.0,0.0,0.0,484.5347154452023,0.0,0.0,16981.376722052933,0,60,2,7572,201710178,,,,,0.0,1.0,3.0,0.0,1.0,1.0,2890.785867517248,0.0,360.0,0.0,0.0,17444.0,0,5,3,54.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,484.5347154452023,0.028533299942398626,0.027776583091332397,17444.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +10179,2,63.0,3,0.0,7,111,2,75,75,6.0,0.0,0.0,745.6450898795613,0.0,1845.4027855510815,32290.27331690806,20,20,1,7573,201710179,,,300.0,,0.0,1.0,5.0,0.0,2.0,1.5,1793.650840350173,0.0,554.0,1043.0,0.0,34547.0,5,5,1,150.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2591.0478754306428,0.08024236431823263,0.07500066215389593,23031.333333333332,6,3,6,6_1,6_2,6_0_0 +10180,2,55.0,3,0.0,6,120,1,45,47,4.0,0.0,0.0,1223.525536271351,0.0,2464.566373108192,55205.2615976933,42,50,1,7575,201710180,,,620.0,,3.0,0.0,6.0,3.0,5.0,3.0,2813.0727227327293,312.0,780.0,1210.0,0.0,49351.0,1,1,1,120.0,0,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3688.091909379543,0.0668068912752629,0.07473185770054391,16450.333333333332,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10181,2,65.0,2,0.0,5,111,2,0,77,9.0,0.0,0.0,562.5986418224849,0.0,1583.5431381286844,19336.565846751302,0,41,1,7576,201710181,,,195.0,,0.0,1.0,7.0,0.0,1.0,1.0,1539.1249472638647,0.0,418.0,895.0,0.0,39092.0,0,5,1,140.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2146.141779951169,0.11098877623669345,0.05489976926100402,39092.0,9,5,9,9_1,9_3,9_0_0 +10182,2,64.0,2,0.0,5,111,1,0,75,7.0,0.0,0.0,116.91367656864318,0.0,217.8661310241581,18416.7258467513,0,60,2,7577,201710182,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2389.6294455146895,210.0,0.0,0.0,0.0,23940.0,0,5,1,60.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,334.77980759280126,0.018178030686809416,0.013984118947067721,23940.0,7,4,7,7_0,7_2,7_0_0 +10183,2,44.0,4,0.0,9,111,1,0,56,2.0,0.0,0.0,672.964882562781,0.0,0.0,34712.22,0,50,2,7578,201710183,,,300.0,550.0,1.0,0.0,4.0,2.0,3.0,1.8,682.4004222007676,0.0,500.0,0.0,0.0,22909.0,0,1,3,77.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,672.964882562781,0.019386973306886768,0.029375567792691997,12727.222222222223,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +10184,1,42.0,3,437.0,99,111,1,0,68,2.0,0.0,0.0,349.9417389326461,254.7823596542241,0.0,16790.300000000003,0,33,2,7579,201710184,,,,,1.0,0.0,3.0,2.0,3.0,1.6,1031.5061766534807,0.0,260.0,0.0,0.0,20925.0,0,1,3,76.0,9,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,604.7240985868702,0.03601627717115657,0.028899598498775162,13078.125,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10185,2,62.0,3,0.0,1,300,6,77,77,6.0,0.0,1040.94473967258,807.5578590753372,169.8549064361494,0.0,77595.0,50,50,1,758,201710185,,,204.0,,0.0,7.0,3.0,0.0,2.0,1.5,1869.1331435147883,0.0,600.0,0.0,0.0,33433.0,5,5,2,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2018.3575051840664,0.026011437659437676,0.06037021820309474,22288.666666666668,6,3,6,6_1,6_0,6_1_0 +10186,1,33.0,3,462.0,1,221,4,68,21,1.0,0.0,0.0,1615.1157181506744,148.62304313163074,0.0,23388.76031599411,71,71,1,7581,201710186,,,,,2.0,0.0,6.0,3.0,5.0,2.4,1748.9522831221989,0.0,1200.0,0.0,0.0,24414.0,1,1,3,110.0,1,2.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1763.7387612823052,0.07540967274251789,0.0722429246040102,10172.5,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +10187,2,55.0,3,0.0,99,112,4,43,52,7.0,0.0,0.0,767.1799661215703,123.8525359430256,0.0,16891.819999999996,33,43,1,7582,201710187,,,130.0,,2.0,2.0,3.0,0.0,2.0,1.5,2522.433797547648,0.0,570.0,0.0,0.0,39274.0,1,1,3,56.0,6,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,891.0325020645959,0.052749348623451826,0.02268759235281855,26182.666666666668,7,4,7,7_1,7_1,7_0_0 +10188,1,27.0,3,87.0,8,111,4,0,56,3.0,0.0,0.0,713.3427755165478,0.0,0.0,12501.98,0,50,2,7584,201710188,,,,263.0,1.0,0.0,1.0,0.0,1.0,1.0,3774.4608335501457,0.0,530.0,0.0,0.0,14794.0,0,1,3,25.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,713.3427755165478,0.05705838399329929,0.04821838417713585,14794.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10189,2,56.0,2,0.0,8,400,2,0,65,4.0,0.0,0.0,1655.4936111044412,49.54101437721024,0.0,14682.2,0,50,1,7585,201710189,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2368.0795781336597,0.0,1230.0,0.0,0.0,18095.0,0,1,2,40.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1705.0346254816516,0.11612936926902313,0.09422683755079589,18095.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10190,1,29.0,3,86.0,1,111,1,0,54,9.0,0.0,0.0,242.26735772260116,0.0,0.0,26884.74,0,20,2,7586,201710190,,,,819.0,1.0,0.0,2.0,1.0,2.0,1.3,1808.2528242385185,0.0,180.0,0.0,0.0,41877.0,0,1,3,34.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,242.26735772260116,0.009011333482213373,0.005785212830971683,32213.076923076922,9,5,9,9_0,9_4,9_1_0 +10191,2,65.0,2,0.0,6,111,5,75,74,10.0,0.0,0.0,1211.3367886130059,0.0,0.0,61733.02,31,30,1,7589,201710191,,,288.0,,0.0,5.0,5.0,0.0,2.0,1.5,1971.9066159682661,0.0,900.0,0.0,0.0,68698.0,5,5,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1211.3367886130059,0.019622185802881602,0.017632780992357943,45798.666666666664,10,5,10,10_1,10_3,10_0_0 +10192,2,41.0,2,0.0,9,111,4,45,38,7.0,0.0,0.0,1877.572022350159,0.0,0.0,28776.736722052927,31,12,1,7591,201710192,,,,,2.0,0.0,4.0,2.0,4.0,2.1,3884.8596064966828,0.0,1395.0,0.0,0.0,52448.0,4,1,2,100.0,6,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1877.572022350159,0.06524617577333881,0.03579873441027606,24975.238095238095,7,4,7,7_1,7_2,7_0_0 +10193,2,51.0,3,0.0,8,111,2,52,48,6.0,0.0,0.0,484.5347154452023,1592.3897478389006,0.0,28635.08238259149,50,50,1,7596,201710193,,,340.0,,2.0,1.0,5.0,0.0,2.0,1.5,2227.7866198404386,0.0,360.0,0.0,0.0,33680.0,1,1,1,190.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2076.924463284103,0.07253076612577708,0.061666403304159824,22453.333333333332,6,3,6,6_1,6_3,6_0_0 +10194,1,59.0,4,21.0,1,111,6,0,62,3.0,0.0,0.0,969.0694308904046,0.0,0.0,10401.32,0,41,2,7597,201710194,,,,571.0,1.0,0.0,2.0,0.0,1.0,1.0,1892.0179762095627,0.0,720.0,0.0,0.0,14022.0,0,4,3,65.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,969.0694308904046,0.093167927810163,0.06911064262518932,14022.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +10195,2,54.0,3,0.0,6,111,2,77,52,9.0,0.0,0.0,1144.0403003567276,95.54338487033404,0.0,35987.031693502606,50,50,1,7598,201710195,,,500.0,,1.0,1.0,4.0,0.0,2.0,1.5,2788.467005435635,0.0,850.0,0.0,0.0,48912.0,5,1,1,90.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1239.5836852270616,0.0344452883967884,0.0253431404405271,32608.0,9,5,9,9_1,9_2,9_0_0 +10196,2,44.0,3,0.0,8,400,4,0,42,6.0,0.0,0.0,1345.929765125562,61.9262679715128,0.0,25384.380000000005,0,30,1,760,201710196,,,200.0,,1.0,1.0,6.0,1.0,2.0,1.3,188.84493133376859,0.0,1000.0,0.0,0.0,28400.0,0,1,2,190.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1407.8560330970747,0.055461509522670024,0.04957239553158714,21846.153846153844,6,3,6,6_1,6_0,6_0_0 +10197,2,27.0,3,0.0,9,112,1,63,55,5.0,0.0,0.0,1009.4473238441715,0.0,0.0,38374.446162745415,50,60,2,7601,201710197,631.0,631.0,,620.0,2.0,0.0,3.0,1.0,3.0,1.8,2581.230125258769,0.0,750.0,0.0,0.0,33954.0,1,1,3,80.0,9,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1009.4473238441715,0.026305195899456672,0.029729849910000928,18863.333333333332,5,3,5,5_0,5_1,5_0_0 +10198,2,39.0,4,0.0,5,300,5,0,62,7.0,0.0,763.359475759892,1036.3659191466827,212.31863304518674,0.0,21677.071191295745,0,50,1,7602,201710198,,,,,1.0,3.0,5.0,1.0,3.0,2.0,2462.2028606243925,0.0,770.0,0.0,0.0,49089.0,0,1,1,110.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2012.0440279517616,0.09281899801849992,0.04098767601604762,24544.5,7,4,7,7_1,7_0,7_0_0 +10199,2,57.0,2,0.0,6,111,1,55,78,3.0,0.0,0.0,2018.894647688343,0.0,0.0,18641.04,50,70,1,7603,201710199,,,232.0,,1.0,2.0,6.0,0.0,2.0,1.5,2501.3087648700644,0.0,1500.0,0.0,0.0,23670.0,1,7,1,100.0,4,3.0,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2018.894647688343,0.10830375599689411,0.08529339449464905,15780.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10200,2,64.0,2,0.0,4,111,2,0,74,5.0,0.0,0.0,1211.3367886130059,0.0,1539.310089577604,14394.68,0,50,2,7604,201710200,,,,,0.0,0.0,5.0,0.0,1.0,1.0,3448.4166424616487,0.0,900.0,870.0,0.0,18910.0,0,5,1,80.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2750.6468781906096,0.19108774062296693,0.14545990894715016,18910.0,5,3,5,5_0,5_3,5_0_1 +10201,1,23.0,3,242.0,7,111,4,68,56,3.0,0.0,0.0,1144.0403003567276,0.0,0.0,27018.23754623712,50,50,2,7605,201710201,,,,156.0,2.0,0.0,2.0,0.0,2.0,1.5,2699.2461607775317,0.0,850.0,0.0,0.0,22364.0,1,1,3,50.0,8,6.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1144.0403003567276,0.04234326159872187,0.051155441797385424,14909.333333333334,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +10202,2,47.0,3,0.0,99,111,3,64,55,10.0,0.0,0.0,484.5347154452023,0.0,1061.5931652259337,27093.11087530163,31,44,1,7606,201710202,,,240.0,,4.0,0.0,4.0,2.0,4.0,2.5,3124.9327492360326,0.0,360.0,600.0,0.0,122965.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1546.1278806711362,0.05706719644662891,0.012573723260042583,49186.0,10,5,10,10_1,10_4,10_0_0 +10203,1,37.0,4,486.0,99,111,1,0,67,3.0,0.0,0.0,807.5578590753372,0.0,0.0,7592.476722052928,0,50,2,7607,201710203,,,,12.0,1.0,0.0,3.0,2.0,3.0,1.6,1055.7974896237558,0.0,600.0,0.0,0.0,22852.0,0,1,3,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,807.5578590753372,0.10636290220419428,0.03533860752123828,14282.5,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +10204,2,90.0,3,0.0,1,111,2,0,77,8.0,0.0,0.0,781.9851935379515,0.0,1557.0033089980361,17778.92,0,71,2,7608,201710204,,,245.0,,0.0,1.0,4.0,0.0,1.0,1.0,3897.9952453894234,0.0,581.0,880.0,0.0,30411.0,0,5,3,95.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2338.9885025359877,0.13155965056010083,0.07691258105738015,30411.0,8,4,8,8_0,8_3,8_1_0 +10205,2,66.0,3,0.0,1,111,2,85,78,3.0,1332.6230476766611,0.0,942.1508355878933,360.94167617681745,0.0,25392.76,70,70,1,761,201710205,,,200.0,,0.0,3.0,3.0,1.0,3.0,2.0,3073.0873217416865,0.0,700.0,0.0,0.0,32670.0,6,5,3,75.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2635.715559441372,0.1037979156043444,0.0806769378463842,16335.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +10206,2,68.0,2,0.0,7,111,4,75,74,9.0,0.0,0.0,741.6073005841846,0.0,0.0,52452.38,70,41,2,7610,201710206,,,,,0.0,1.0,3.0,0.0,2.0,1.5,3502.468171481001,0.0,551.0,0.0,0.0,52046.0,5,5,1,78.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,741.6073005841846,0.014138677798494266,0.014249073907393163,34697.333333333336,9,5,9,9_0,9_3,9_0_0 +10207,2,44.0,1,0.0,1,112,6,85,62,8.0,0.0,1526.718951519784,1776.6272899657417,191.08676974066807,0.0,36354.22,50,50,1,7611,201710207,,,520.0,,1.0,0.0,5.0,2.0,4.0,2.1,2642.3735560683876,0.0,1320.0,0.0,0.0,62220.0,4,1,2,150.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3494.4330112261937,0.09612179854845444,0.0561625363424332,29628.571428571428,8,4,8,8_1,8_1,8_1_0 +10208,1,43.0,3,464.0,4,111,2,0,84,3.0,0.0,0.0,679.2127876844985,0.0,1265.6984754736804,17228.32,0,43,8,7614,201710208,,,,,1.0,0.0,4.0,4.0,5.0,2.8,895.4766072466923,1220.0,0.0,0.0,0.0,41321.0,0,3,3,80.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1944.9112631581788,0.11289036093816338,0.047068349341937,14757.500000000002,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +10209,2,79.0,3,0.0,1,221,2,0,78,3.0,53.90777519053921,0.0,1187.1100528407455,46.0023704931238,0.0,13407.847533755657,0,71,2,7615,201710209,,,,350.0,0.0,2.0,2.0,0.0,1.0,1.0,2533.1792796317623,0.0,882.0,0.0,0.0,14700.0,0,5,3,52.0,1,2.0,1,7,1,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1287.0201985244087,0.09599006815107353,0.08755239445744277,14700.0,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +10210,2,77.0,2,0.0,3,221,2,78,78,5.0,1649.9142495044375,0.0,821.0171567265928,176.9321942043223,0.0,66670.11150728985,70,70,1,7616,201710210,,,195.0,,0.0,1.0,5.0,0.0,2.0,1.5,2393.741985133741,0.0,610.0,0.0,0.0,27894.0,5,5,1,160.0,1,1.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2647.863600435353,0.0397159017822526,0.09492591956819936,18596.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +10211,2,45.0,3,0.0,1,111,2,0,34,10.0,0.0,0.0,540.3284012107371,0.0,2252.2377810752496,30916.86466140855,0,10,2,7619,201710211,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2363.4194638919166,124.39200394991708,350.0,1200.0,0.0,45810.0,0,1,1,80.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2792.5661822859865,0.09032501234744414,0.06095975075935356,45810.0,10,5,10,10_0,10_3,10_1_0 +10212,1,34.0,3,408.0,3,300,2,0,64,3.0,2760.433455901655,0.0,753.7206684703146,95.54338487033404,0.0,29188.72,0,50,1,7620,201710212,,,180.0,,1.0,0.0,6.0,2.0,3.0,1.8,143.13589253567974,0.0,560.0,0.0,0.0,27936.0,0,4,3,140.0,0,0.0,2,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,3609.697509242304,0.12366755065800432,0.12921311244424055,15520.0,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +10213,2,46.0,3,0.0,99,111,2,0,65,4.0,0.0,0.0,784.6770530682027,0.0,0.0,8862.127849749775,0,50,1,7621,201710213,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1725.2284983339111,0.0,583.0,0.0,0.0,17950.0,0,1,3,96.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,784.6770530682027,0.0885427367300234,0.04371459905672438,17950.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10214,2,80.0,3,0.0,99,400,1,0,77,3.0,0.0,0.0,251.6888660784801,291.9381204371318,0.0,15650.699999999999,0,70,8,7622,201710214,,,,224.0,0.0,1.0,2.0,0.0,1.0,1.0,3461.272397301685,0.0,187.0,0.0,0.0,16122.0,0,5,3,69.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,543.6269865156119,0.03473499501719488,0.03371957489862373,16122.0,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +10215,2,56.0,2,0.0,9,112,5,68,46,5.0,0.0,1110.341055650752,915.2322402853821,92.0047409862476,0.0,18652.719999999998,50,71,1,7624,201710215,,,,,2.0,0.0,5.0,0.0,2.0,1.5,2241.7909507032373,0.0,680.0,0.0,0.0,29762.0,1,1,2,128.0,5,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2117.5780369223817,0.11352650106377954,0.07115039435933007,19841.333333333332,5,3,5,5_1,5_0,5_0_0 +10216,0,38.0,3,0.0,1,120,5,0,12,6.0,42.83431224674982,138.792631956344,0.0,0.0,0.0,13595.28,0,44,1,7625,201710216,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2407.1559678062436,0.0,0.0,0.0,0.0,22285.0,0,1,5,37.0,0,0.0,1,3,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,181.6269442030938,0.013359558920676426,0.008150188207453167,22285.0,6,3,6,6_1,6_0,6_1_0 +10217,2,62.0,3,0.0,7,111,3,78,75,3.0,0.0,0.0,181.70051829195086,0.0,0.0,28644.548878286372,70,50,1,7626,201710217,,,16.0,,0.0,1.0,4.0,0.0,2.0,1.5,2448.013546622417,0.0,135.0,0.0,0.0,22694.0,7,5,1,90.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,181.70051829195086,0.006343284338811374,0.008006544385826687,15129.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10218,2,53.0,3,0.0,1,221,2,13,13,2.0,1507.1332086819382,0.0,1259.790260157526,123.8525359430256,0.0,52619.52,50,44,1,7628,201710218,,,,,2.0,1.0,9.0,3.0,5.0,3.0,1533.1015276270805,0.0,936.0,0.0,0.0,40070.0,1,1,1,250.0,3,4.0,4,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2890.77600478249,0.05493733133222215,0.07214314960774869,13356.666666666666,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +10219,2,45.0,2,0.0,99,400,6,0,21,1.0,0.0,0.0,1615.1157181506744,150.39236507367394,0.0,26701.620000000003,0,60,1,7629,201710219,,,550.0,,2.0,1.0,4.0,3.0,4.0,2.3,126.49248056346363,0.0,1200.0,0.0,0.0,18852.0,0,1,1,80.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1765.5080832243484,0.06611988647970977,0.0936509698294265,8196.521739130436,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10220,2,75.0,3,0.0,6,111,2,75,75,9.0,0.0,0.0,541.0637655804759,0.0,1801.1697370000009,41698.46089963387,41,42,1,7633,201710220,,,580.0,,0.0,2.0,5.0,0.0,2.0,1.5,1868.8983460716888,0.0,402.0,1018.0,0.0,60729.0,5,5,1,140.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2342.233502580477,0.05617074232591262,0.03856861635430316,40486.0,9,5,9,9_1,9_3,9_0_0 +10221,2,42.0,2,0.0,8,111,4,56,47,3.0,0.0,0.0,2422.6735772260117,0.0,0.0,52010.84134949915,50,43,1,7634,201710221,,,430.0,,2.0,0.0,4.0,2.0,4.0,2.1,2585.407000755437,0.0,1800.0,0.0,0.0,32975.0,1,1,2,130.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2422.6735772260117,0.04658016510339227,0.07347000992345752,15702.380952380952,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10222,2,58.0,2,0.0,6,212,5,75,54,8.0,0.0,832.755791738064,1547.8192298943961,141.54575536345783,0.0,33356.70238259149,31,50,1,7635,201710222,,,385.0,,1.0,2.0,5.0,0.0,2.0,1.5,1891.0912957484302,0.0,1150.0,0.0,0.0,42505.0,5,1,1,120.0,2,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2522.120776995918,0.07561061486438138,0.05933703745432109,28336.666666666668,8,4,8,8_1,8_0,8_0_0 +10223,1,63.0,5,273.0,99,111,2,0,63,2.0,0.0,0.0,2691.859530251124,360.94167617681745,0.0,9737.551191295745,0,71,2,7636,201710223,,,400.0,347.0,1.0,4.0,2.0,0.0,1.0,1.0,2136.8266869317645,0.0,2000.0,0.0,0.0,11586.0,0,4,3,42.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3052.8012064279415,0.3135081034702848,0.26349052359985686,11586.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +10224,2,38.0,3,0.0,99,111,2,0,52,4.0,0.0,0.0,67.92127876844984,0.0,126.56984754736804,16063.230875301628,0,33,1,7637,201710224,,,355.0,,1.0,0.0,5.0,2.0,3.0,1.6,1661.1367135135445,122.0,0.0,0.0,0.0,25980.0,0,1,3,94.0,4,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,194.4911263158179,0.012107846038299928,0.00748618654025473,16237.5,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10225,2,56.0,2,0.0,7,300,2,43,46,10.0,0.0,277.585263912688,826.4008757870951,0.0,1236.7560374882128,40953.74932216843,33,60,1,7638,201710225,,,,,2.0,2.0,5.0,0.0,2.0,1.5,1668.8208389785814,0.0,614.0,699.0,0.0,64588.0,1,1,1,110.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2340.742177187996,0.05715574803113186,0.03624113112633919,43058.666666666664,10,5,10,10_1,10_0,10_0_0 +10226,2,60.0,3,0.0,99,111,2,0,43,8.0,0.0,0.0,33.64824412813905,0.0,102.62067263850693,27817.199999999997,0,50,2,7639,201710226,,,,374.0,1.0,3.0,3.0,0.0,1.0,1.0,2636.9835143743744,0.0,25.0,58.0,0.0,28995.0,0,1,3,70.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,136.268916766646,0.004898728727788778,0.004699738464102293,28995.0,8,4,8,8_0,8_3,8_0_0 +10227,2,29.0,2,0.0,4,111,1,42,62,7.0,0.0,0.0,578.7497990039916,0.0,0.0,49961.4767708141,31,31,2,764,201710227,,,,257.0,2.0,0.0,2.0,0.0,2.0,1.5,956.4669017878948,0.0,430.0,0.0,0.0,39290.0,1,1,3,55.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,578.7497990039916,0.01158392098093623,0.014730206133977897,26193.333333333332,7,4,7,7_0,7_3,7_0_1 +10228,1,36.0,4,472.0,6,111,2,0,52,2.0,0.0,0.0,726.8020731678034,0.0,1592.3897478389006,33342.905846751295,0,50,2,7640,201710228,,,,,1.0,0.0,2.0,4.0,5.0,2.6,729.8884226467592,0.0,540.0,900.0,0.0,29660.0,0,4,3,68.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2319.1918210067042,0.06955577992110339,0.07819257656799407,11407.692307692307,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +10229,2,31.0,3,0.0,9,111,6,46,38,8.0,0.0,0.0,1195.185631431499,0.0,0.0,43215.340000000004,31,12,2,7641,201710229,,,,684.0,2.0,0.0,2.0,1.0,3.0,1.8,3752.4851756449416,0.0,888.0,0.0,0.0,53211.0,1,1,3,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1195.185631431499,0.027656513437855603,0.022461251084014564,29561.666666666664,8,4,8,8_0,8_4,8_0_0 +10230,0,31.0,2,0.0,9,112,4,55,54,8.0,0.0,0.0,2227.513761282805,0.0,0.0,63811.15642402792,50,30,1,7642,201710230,,,390.0,,2.0,0.0,4.0,1.0,3.0,1.8,930.5785108529396,0.0,1655.0,0.0,0.0,47184.0,1,1,5,104.0,9,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2227.513761282805,0.034907904606537435,0.047209091244549105,26213.333333333332,7,4,7,7_1,7_0,7_0_0 +10231,2,42.0,3,0.0,4,112,2,21,43,8.0,0.0,0.0,795.0130006667736,0.0,1481.4896909642753,33778.25904104552,50,31,1,7645,201710231,,,914.0,,2.0,0.0,4.0,1.0,3.0,1.8,2379.8508687787635,1428.0,0.0,0.0,0.0,48791.0,1,1,2,100.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2276.502691631049,0.06739550101930254,0.04665825032549136,27106.11111111111,7,4,7,7_1,7_2,7_0_1 +10232,2,55.0,2,0.0,7,112,2,43,42,10.0,1047.0609660316622,0.0,672.964882562781,0.0,0.0,26495.59087530163,33,20,1,7646,201710232,,,,,2.0,3.0,6.0,0.0,2.0,1.5,1755.983585511533,0.0,500.0,0.0,0.0,70423.0,1,1,2,130.0,6,1.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1720.0258485944432,0.0649174368931624,0.02442420585028248,46948.666666666664,10,5,10,10_1,10_1,10_0_0 +10233,2,30.0,3,0.0,2,111,6,85,67,6.0,0.0,0.0,467.65470627457273,0.0,871.4645240966324,49598.01223796573,30,43,2,7647,201710233,,,,,1.0,0.0,3.0,1.0,3.0,1.8,3464.9227797094527,840.0,0.0,0.0,0.0,39273.0,6,1,2,67.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1339.119230371205,0.026999453606048975,0.03409770657630446,21818.333333333332,6,3,6,6_0,6_3,6_0_1 +10234,2,72.0,3,0.0,7,120,6,63,72,4.0,0.0,0.0,1238.255383915517,2653.9829130648345,0.0,17454.98,71,71,1,7648,201710234,,,400.0,,1.0,5.0,5.0,0.0,2.0,1.5,2499.5480749788067,0.0,920.0,0.0,0.0,25790.0,1,5,1,120.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3892.2382969803516,0.22298726764398194,0.15092044579218114,17193.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10235,2,57.0,5,0.0,1,111,2,77,37,9.0,0.0,0.0,1671.5706756387349,0.0,2794.6976723789985,64314.696025016136,71,12,1,765,201710235,,,198.0,,2.0,0.0,5.0,3.0,5.0,3.0,2396.8150075022095,2562.4752813682917,182.0,77.0,0.0,121693.0,5,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4466.268348017733,0.06944397818937857,0.036701111386996235,40564.333333333336,9,5,9,9_1,9_4,9_1_0 +10236,2,61.0,3,0.0,6,112,2,0,77,4.0,951.8736054833294,0.0,942.1508355878933,176.9321942043223,0.0,25340.308161188146,0,50,1,7650,201710236,,,90.0,,0.0,1.0,5.0,0.0,1.0,1.0,2687.480238523461,0.0,700.0,0.0,0.0,17125.0,0,7,1,165.0,8,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2070.9566352755446,0.08172578731491016,0.12093177432265954,17125.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10237,2,43.0,1,0.0,1,111,1,0,38,10.0,0.0,0.0,815.6334376660906,0.0,0.0,41694.327127683115,0,12,2,7651,201710237,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3995.7071361187477,0.0,606.0,0.0,0.0,64734.0,0,1,1,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,815.6334376660906,0.019562216106002284,0.012599768864369428,64734.0,10,5,10,10_0,10_4,10_1_0 +10238,2,86.0,2,0.0,1,111,1,0,77,1.0,0.0,0.0,484.5347154452023,0.0,0.0,34061.78,0,41,2,7652,201710238,,,,1000.0,0.0,3.0,3.0,0.0,1.0,1.0,3527.23530493087,0.0,360.0,0.0,0.0,7120.0,0,5,3,92.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,484.5347154452023,0.014225173066269654,0.06805262857376437,7120.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +10239,2,48.0,3,0.0,10,112,5,68,65,3.0,0.0,270.6456323148708,523.3278855929742,0.0,975.210300774803,25231.420000000002,71,50,1,7654,201710239,,,493.0,,2.0,0.0,5.0,3.0,5.0,2.8,2543.889589560799,940.0,0.0,0.0,0.0,38694.0,1,1,2,139.0,8,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1769.183818682648,0.07011828183600638,0.04572243290129343,13819.285714285716,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10240,2,42.0,4,0.0,9,111,4,0,54,5.0,0.0,0.0,2516.888660784801,120.31389205893916,0.0,28133.430875301634,0,41,1,7655,201710240,,,1056.0,,1.0,0.0,5.0,2.0,3.0,1.8,343.97893861600636,0.0,1870.0,0.0,0.0,33220.0,0,1,2,120.0,6,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2637.20255284374,0.09373910222798111,0.07938598894773449,18455.555555555555,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10241,0,52.0,3,0.0,6,112,2,0,62,5.0,1586.456009138882,0.0,969.0694308904046,0.0,0.0,23042.571191295745,0,50,1,7656,201710241,,,135.0,,1.0,0.0,4.0,0.0,1.0,1.0,2550.984269222608,0.0,720.0,0.0,0.0,20640.0,0,1,5,70.0,6,0.0,1,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2555.525440029287,0.11090452618389342,0.1238142170556825,20640.0,5,3,5,5_1,5_0,5_0_0 +10242,2,62.0,3,0.0,6,120,2,78,78,4.0,0.0,346.98157989085996,121.13367886130058,0.0,0.0,21979.110875301634,71,71,1,7657,201710242,,,320.0,,0.0,2.0,4.0,0.0,2.0,1.5,1756.8529693334654,0.0,90.0,0.0,0.0,25693.0,6,5,1,80.0,0,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,468.11525875216057,0.021298189058147527,0.018219564035035246,17128.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10243,2,68.0,3,0.0,4,111,1,0,78,5.0,0.0,0.0,301.4882673881259,0.0,166.31626255206297,29984.540000000005,0,50,2,7658,201710243,,,,370.0,0.0,1.0,3.0,0.0,2.0,1.5,5028.9641972116015,0.0,224.0,94.0,0.0,27475.0,0,5,3,74.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,467.8045299401889,0.015601524316870922,0.017026552500097866,18316.666666666668,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +10244,2,46.0,3,0.0,4,111,1,0,38,10.0,0.0,0.0,484.5347154452023,0.0,0.0,39293.479999999996,0,12,2,7659,201710244,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3962.7035662200983,0.0,360.0,0.0,0.0,51301.0,0,1,2,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,484.5347154452023,0.01233117340192832,0.0094449370469426,51301.0,10,5,10,10_0,10_4,10_0_1 +10245,2,87.0,3,0.0,6,211,4,78,77,4.0,0.0,0.0,2473.818908300783,0.0,0.0,18868.96,71,70,1,766,201710245,,,476.0,481.0,0.0,3.0,4.0,0.0,2.0,1.5,772.4518379765477,0.0,1838.0,0.0,0.0,24820.0,5,5,3,70.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2473.818908300783,0.1311052070861766,0.09967038309028134,16546.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10246,2,65.0,2,0.0,8,111,2,0,72,3.0,0.0,0.0,442.8108927263099,0.0,279.55286684282925,37319.4,0,31,2,7660,201710246,,,,,0.0,1.0,4.0,1.0,2.0,1.5,2252.446620319318,0.0,329.0,158.0,0.0,21991.0,0,5,1,105.0,6,4.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,722.3637595691391,0.019356253304424482,0.032848154225325776,14660.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +10247,2,77.0,3,0.0,3,120,2,0,78,5.0,4442.07682558887,0.0,659.5055849115254,56.61830214538313,0.0,18848.571191295745,0,50,1,7665,201710247,,,416.0,,0.0,2.0,5.0,0.0,1.0,1.0,2506.7153126318176,0.0,490.0,0.0,0.0,19100.0,0,5,1,150.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,5158.200712645778,0.27366534366423656,0.2700628645364282,19100.0,5,3,5,5_1,5_0,5_0_1 +10248,2,56.0,1,0.0,1,120,2,52,38,8.0,0.0,346.98157989085996,511.45331074771354,0.0,1769.3219420432229,27297.72,60,31,1,7666,201710248,,,360.0,,3.0,2.0,7.0,1.0,3.0,2.0,2049.753188725439,0.0,380.0,1000.0,0.0,55647.0,1,1,1,100.0,0,1.0,4,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2627.7568326817964,0.09626286857223959,0.04722189574787134,27823.5,8,4,8,8_1,8_1,8_1_0 +10249,1,33.0,3,461.0,6,111,6,0,85,1.0,0.0,0.0,2355.3770889697334,291.9381204371318,0.0,22177.76,0,71,1,7668,201710249,,,700.0,,0.0,0.0,3.0,3.0,4.0,1.9,538.1635100946988,0.0,1750.0,0.0,0.0,19522.0,0,6,3,73.0,5,4.0,2,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2647.315209406865,0.11936801594962093,0.13560676208415454,10274.736842105263,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +10250,1,29.0,2,317.0,5,111,1,0,63,1.0,0.0,0.0,403.7789295376686,0.0,884.6609710216114,4267.879999999999,0,50,2,7669,201710250,,,430.0,,2.0,0.0,3.0,1.0,3.0,1.8,2083.095198341127,0.0,300.0,500.0,0.0,18464.0,0,4,3,65.0,8,7.0,5,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1288.43990055928,0.3018922510846791,0.06978119045490035,10257.777777777777,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10251,2,76.0,2,0.0,5,111,2,0,77,8.0,0.0,0.0,376.8603342351573,0.0,1132.3660429076626,34220.04,0,60,2,7670,201710251,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2943.8191827840215,0.0,280.0,640.0,0.0,27944.0,0,5,1,110.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1509.22637714282,0.04410358308005543,0.05400895996073647,27944.0,8,4,8,8_0,8_2,8_0_0 +10252,1,45.0,3,80.0,99,112,4,0,54,3.0,0.0,102.70654764769455,2691.859530251124,0.0,0.0,24990.565846751302,0,43,1,7671,201710252,,,,,1.0,0.0,5.0,1.0,2.0,1.5,931.694404781317,0.0,2000.0,0.0,0.0,23410.0,0,1,1,100.0,9,1.0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2794.5660778988185,0.1118248420238193,0.11937488585642113,15606.666666666666,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +10253,2,27.0,3,0.0,9,111,4,62,46,8.0,0.0,0.0,1480.522741638118,0.0,0.0,32961.06,43,30,2,7672,201710253,,,,710.0,2.0,0.0,3.0,0.0,2.0,1.5,3021.93714190098,0.0,1100.0,0.0,0.0,43642.0,4,1,3,75.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1480.522741638118,0.044917327951167776,0.03392426427840425,29094.666666666668,8,4,8,8_0,8_3,8_0_0 +10254,2,64.0,3,0.0,99,211,2,77,77,5.0,0.0,0.0,2117.147520542509,159.23897478389006,0.0,30855.959999999995,50,70,2,7675,201710254,,,495.0,,0.0,3.0,4.0,0.0,2.0,1.5,581.6866115838799,0.0,1573.0,0.0,0.0,32660.0,5,5,3,58.0,1,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,2276.386495326399,0.07377461259757918,0.06969952527025104,21773.333333333332,6,3,6,6_0,6_1,6_0_0 +10255,2,31.0,4,0.0,5,111,2,0,47,1.0,0.0,0.0,457.61612014269105,0.0,672.3423379764247,6539.3,0,43,2,7676,201710255,,,190.0,,1.0,0.0,4.0,1.0,2.0,1.3,1059.8167835008114,0.0,340.0,380.0,0.0,8630.0,0,4,3,75.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1129.9584581191157,0.1727950175277347,0.1309337726673367,6638.461538461538,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +10256,1,44.0,2,253.0,99,300,2,0,67,2.0,0.0,0.0,814.287507900965,0.0,1617.1602550275056,31653.0458467513,0,42,2,7677,201710256,,,,170.0,1.0,0.0,4.0,2.0,3.0,2.0,495.424345473058,0.0,605.0,914.0,0.0,24157.0,0,1,3,80.0,0,1.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2431.4477629284706,0.07681560171808936,0.10065189232638451,12078.5,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +10257,0,54.0,2,0.0,7,111,2,45,53,10.0,0.0,0.0,567.9823608829871,0.0,1595.928391722987,10545.0,31,31,2,7678,201710257,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1644.9450694570328,0.0,422.0,902.0,0.0,72738.0,1,1,5,78.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2163.9107526059743,0.20520727857809146,0.02974938481407207,48492.0,10,5,10,10_0,10_2,10_0_0 +10258,2,52.0,2,0.0,5,111,6,74,21,4.0,1903.7472109666587,0.0,2326.816889803151,212.31863304518674,1075.4287551948503,88527.50387190719,60,60,1,7679,201710258,,,500.0,,1.0,1.0,6.0,2.0,4.0,2.5,2508.7692482381567,1036.6000329159756,1300.0,0.0,0.0,45722.0,5,1,1,176.0,9,7.0,4,9,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,5518.311489009847,0.06233442995291542,0.12069269692948355,18288.8,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10259,2,47.0,4,0.0,99,111,2,0,52,4.0,0.0,0.0,1615.1157181506744,0.0,1815.3243125363467,24572.22,0,50,2,7680,201710259,,,,376.0,1.0,0.0,5.0,1.0,2.0,1.5,823.9960823431231,0.0,1200.0,1026.0,0.0,25690.0,0,1,3,90.0,4,3.0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,3430.440030687021,0.13960643485558166,0.13353211485741617,17126.666666666668,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +10260,2,50.0,2,0.0,6,112,4,0,62,7.0,0.0,0.0,1086.1653204563286,0.0,0.0,31426.52,0,71,1,7681,201710260,,,164.0,,1.0,1.0,4.0,1.0,2.0,1.5,2716.53112382185,0.0,807.0,0.0,0.0,37086.0,0,1,1,90.0,9,3.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1086.1653204563286,0.03456206161090469,0.029287745253096277,24724.0,7,4,7,7_1,7_1,7_0_0 +10261,2,80.0,3,0.0,4,112,2,0,75,8.0,0.0,0.0,509.1003727881142,0.0,2096.6857791022285,25233.159757276953,0,70,1,7682,201710261,,,266.0,,0.0,0.0,6.0,0.0,1.0,1.0,1434.8039798260263,450.27401156727024,192.0,921.0,0.0,33720.0,0,5,1,180.0,10,1.0,1,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2605.786151890343,0.10326832536852085,0.07727716939176581,33720.0,9,5,9,9_1,9_1,9_0_1 +10262,2,50.0,3,0.0,99,111,2,52,21,3.0,0.0,0.0,942.1508355878933,0.0,2123.1863304518674,31957.10216912759,70,70,1,7683,201710262,,,400.0,,3.0,0.0,5.0,2.0,4.0,2.5,3543.8464350368636,0.0,700.0,1200.0,0.0,37558.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3065.3371660397606,0.09592037318706118,0.08161609153947923,15023.2,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +10263,2,39.0,2,0.0,9,111,2,65,54,9.0,0.0,0.0,2911.2460819665903,0.0,0.0,38974.64,50,50,1,7684,201710263,,,,,2.0,0.0,3.0,1.0,3.0,1.8,2209.453007684565,0.0,2163.0,0.0,0.0,64289.0,1,4,2,90.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2911.2460819665903,0.0746959069273402,0.0452837356618798,35716.11111111111,9,5,9,9_1,9_2,9_0_0 +10264,2,27.0,4,0.0,99,300,5,52,65,5.0,0.0,1145.039213639838,1792.7784471472485,309.631339857564,0.0,29406.399999999998,71,71,1,7685,201710264,,,,,2.0,3.0,4.0,0.0,4.0,2.5,3765.3502882137113,0.0,1332.0,0.0,0.0,47587.0,4,1,1,78.0,0,0.0,5,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3247.4490006446504,0.11043340907573354,0.06824235611920589,19034.8,5,3,5,5_1,5_0,5_0_0 +10265,2,44.0,3,0.0,9,400,5,46,48,2.0,0.0,138.792631956344,1211.3367886130059,0.0,0.0,29305.68,31,43,1,7687,201710265,,,248.0,,2.0,0.0,4.0,1.0,3.0,1.8,2082.487742748894,0.0,900.0,0.0,0.0,21346.0,1,1,2,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1350.1294205693498,0.04607057132164651,0.06324976204297525,11858.888888888889,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10266,2,44.0,1,0.0,9,111,2,85,34,8.0,0.0,0.0,1875.182677811874,0.0,161.08285188979997,56791.126876860355,12,10,1,7688,201710266,,,868.0,,1.0,0.0,4.0,3.0,5.0,2.4,2214.9376880029977,155.266900540438,1329.0,0.0,0.0,65542.0,6,1,3,105.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2036.265529701674,0.0358553464543306,0.03106810182328391,27309.166666666668,8,4,8,8_1,8_3,8_0_0 +10267,2,71.0,2,0.0,9,111,1,0,74,10.0,0.0,0.0,3862.8184259103627,0.0,0.0,44850.16,0,31,2,7689,201710267,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3762.132432431016,0.0,2870.0,0.0,0.0,53510.0,0,5,1,130.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3862.8184259103627,0.08612719388092177,0.07218872034966105,53510.0,10,5,10,10_0,10_4,10_0_0 +10268,1,81.0,4,30.0,4,111,4,0,78,3.0,0.0,0.0,605.6683943065029,0.0,0.0,13106.28,0,50,2,769,201710268,,,,413.0,0.0,4.0,2.0,0.0,1.0,1.0,3736.546349631342,0.0,450.0,0.0,0.0,14279.0,0,5,3,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,605.6683943065029,0.04621207499813089,0.0424167234614821,14279.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +10269,2,29.0,1,0.0,1,112,6,56,64,7.0,0.0,485.77421184720396,821.0171567265928,0.0,760.8084350785858,60891.44,42,50,1,7690,201710269,,,,,2.0,0.0,5.0,0.0,2.0,1.5,1572.4779139822404,0.0,610.0,430.0,0.0,38921.0,1,1,1,89.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2067.5998036523824,0.0339555084204345,0.05312298768408783,25947.333333333332,7,4,7,7_1,7_0,7_1_0 +10270,2,59.0,1,0.0,8,111,4,0,45,5.0,0.0,0.0,565.290501352736,0.0,0.0,19710.284177580947,0,60,2,7693,201710270,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2492.190608912366,0.0,420.0,0.0,0.0,20434.0,0,1,1,50.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,565.290501352736,0.028679977227102284,0.027664211674304395,20434.0,5,3,5,5_0,5_3,5_0_0 +10271,2,53.0,1,0.0,9,112,2,43,43,10.0,0.0,0.0,2153.487624200899,0.0,0.0,54676.03694917677,33,33,1,7694,201710271,,,180.0,,2.0,2.0,6.0,2.0,4.0,2.1,1172.8982622719823,0.0,1600.0,0.0,0.0,110682.0,1,1,3,130.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2153.487624200899,0.039386315182328206,0.01945652973564716,52705.71428571428,10,5,10,10_1,10_0,10_0_0 +10272,2,62.0,1,0.0,1,120,2,34,75,10.0,0.0,0.0,1184.4181933104944,3248.475085591357,0.0,63942.72000000001,10,50,1,7696,201710272,,,380.0,,1.0,4.0,8.0,0.0,2.0,1.5,1823.4809063183852,0.0,880.0,0.0,0.0,94730.0,1,5,2,180.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4432.893278901852,0.06932600425665113,0.04679503091841921,63153.333333333336,10,5,10,10_1,10_0,10_1_0 +10273,1,21.0,3,110.0,4,111,4,56,42,2.0,0.0,0.0,1292.0925745205395,0.0,0.0,33323.520000000004,30,42,8,7697,201710273,,,42.0,315.0,2.0,0.0,3.0,0.0,2.0,1.5,3401.978636665655,0.0,960.0,0.0,0.0,16303.0,4,1,3,47.0,8,7.0,3,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1292.0925745205395,0.03877419235784633,0.07925489630868794,10868.666666666666,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10274,2,63.0,3,0.0,2,111,1,78,52,6.0,0.0,0.0,83.44764543778484,0.0,0.0,20114.94,50,50,2,77,201710274,,,,,1.0,3.0,5.0,0.0,2.0,1.5,1951.9516134447072,0.0,62.0,0.0,0.0,31640.0,5,5,1,80.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,83.44764543778484,0.004148540609009266,0.002637409779955273,21093.333333333332,5,3,5,5_0,5_3,5_0_1 +10275,2,62.0,3,0.0,3,111,5,0,75,6.0,0.0,902.152107716236,942.1508355878933,0.0,176.9321942043223,33577.535368876685,0,30,1,770,201710275,,,1200.0,,0.0,2.0,4.0,0.0,1.0,1.0,3185.684973180444,0.0,700.0,100.0,0.0,25050.0,0,5,1,160.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2021.2351375084515,0.06019605415655231,0.08068802944145514,25050.0,7,4,7,7_1,7_4,7_0_1 +10276,2,52.0,3,0.0,1,300,2,0,63,5.0,0.0,69.396315978172,672.964882562781,247.7050718860512,0.0,16732.800000000003,0,50,1,7700,201710276,,,100.0,,1.0,0.0,3.0,0.0,1.0,1.0,3329.1942133288776,0.0,500.0,0.0,0.0,19288.0,0,1,3,80.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,990.0662704270042,0.05916919286831875,0.051330685940844265,19288.0,5,3,5,5_1,5_0,5_1_0 +10277,2,73.0,3,0.0,9,111,4,0,78,4.0,0.0,0.0,1469.7553035171136,0.0,0.0,24434.132027330714,0,44,1,7701,201710277,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2219.1491683138756,0.0,1092.0,0.0,0.0,17404.0,0,5,1,140.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1469.7553035171136,0.06015172963267629,0.08444928197639126,17404.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10278,2,50.0,1,0.0,2,400,5,78,54,8.0,793.228004569441,41.637789586903196,1615.1157181506744,111.46728234872305,0.0,32863.28,50,42,1,7702,201710278,,,520.0,,1.0,0.0,11.0,0.0,2.0,1.5,2408.7972834655934,0.0,1200.0,0.0,0.0,45229.0,5,1,1,260.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2561.4487946557415,0.07794257891043564,0.05663288586207393,30152.666666666668,8,4,8,8_1,8_1,8_0_1 +10279,2,35.0,3,0.0,99,111,6,52,62,6.0,1189.8420068541616,0.0,969.0694308904046,0.0,460.02370493123794,42148.06753375567,50,50,1,7704,201710279,,,,,2.0,0.0,4.0,3.0,5.0,2.6,3262.885671676559,0.0,720.0,260.0,0.0,54690.0,1,1,3,54.0,10,8.0,4,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2618.935142675804,0.062136541386585364,0.047886910635871346,21034.615384615383,5,3,5,5_1,5_4,5_0_0 +10280,2,59.0,1,0.0,7,300,2,75,47,7.0,0.0,208.188947934516,1113.4635863680303,0.0,2074.915533563411,33615.600000000006,60,50,1,7705,201710280,,,440.0,,1.0,2.0,5.0,0.0,2.0,1.5,1689.3203389613632,2000.0,0.0,0.0,0.0,40136.0,5,4,1,180.0,0,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3396.5680678659573,0.101041423263781,0.0846264716928931,26757.333333333332,7,4,7,7_1,7_1,7_0_0 +10281,2,49.0,3,0.0,5,111,1,47,45,7.0,0.0,0.0,484.5347154452023,0.0,0.0,23712.959999999995,50,50,2,7706,201710281,,,,290.0,2.0,1.0,4.0,1.0,3.0,1.8,3459.7038801640906,0.0,360.0,0.0,0.0,47112.0,1,1,3,85.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,484.5347154452023,0.020433329092833727,0.010284740945941635,26173.333333333332,7,4,7,7_0,7_4,7_0_0 +10282,2,66.0,3,0.0,4,111,1,0,77,4.0,0.0,0.0,430.6975248401798,0.0,1733.9355032023584,10156.48,0,60,2,7709,201710282,980.0,980.0,200.0,284.0,0.0,5.0,4.0,0.0,1.0,1.0,2044.791445952624,0.0,320.0,980.0,0.0,17060.0,0,5,3,60.0,7,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2164.633028042538,0.213128271610099,0.12688353036591665,17060.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +10283,1,27.0,4,65.0,99,111,1,56,42,5.0,0.0,0.0,309.56384597887927,0.0,0.0,31462.8116935026,50,42,2,771,201710283,,,,535.0,2.0,0.0,2.0,0.0,2.0,1.5,3447.579104134573,0.0,230.0,0.0,0.0,31075.0,4,4,3,35.0,8,6.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,309.56384597887927,0.009839039466482503,0.009961829315490885,20716.666666666668,5,3,5,5_0,5_2,5_0_0 +10284,2,47.0,4,0.0,1,211,4,62,62,5.0,0.0,0.0,2961.045483276236,238.8584621758351,0.0,36989.119999999995,71,50,1,7711,201710284,,,600.0,520.0,2.0,2.0,5.0,3.0,5.0,2.6,721.776082809108,0.0,2200.0,0.0,0.0,47035.0,1,1,3,120.0,2,3.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3199.903945452071,0.08650932883648142,0.06803240024347977,18090.384615384613,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +10285,1,31.0,3,26.0,9,111,2,67,54,4.0,0.0,0.0,1179.0344742499922,0.0,0.0,32987.68000000001,71,50,8,7712,201710285,,,420.0,,2.0,0.0,3.0,2.0,4.0,2.1,4209.396142771048,0.0,876.0,0.0,0.0,33713.0,4,1,2,50.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1179.0344742499922,0.03574166095493808,0.03497269522884324,16053.809523809523,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +10286,1,50.0,2,379.0,5,111,2,0,52,1.0,0.0,0.0,282.645250676368,0.0,530.7965826129669,19002.420000000006,0,30,2,7713,201710286,,,,17.0,1.0,0.0,3.0,1.0,2.0,1.3,626.8517961644188,0.0,210.0,300.0,0.0,13329.0,0,4,3,70.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,813.4418332893349,0.04280727577273498,0.06102797158746604,10253.076923076922,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10287,2,71.0,3,0.0,4,111,1,0,77,4.0,0.0,0.0,29.610454832762365,0.0,0.0,13104.86,0,60,2,7714,201710287,,,,331.0,0.0,2.0,2.0,0.0,1.0,1.0,3318.5496879100992,0.0,22.0,0.0,0.0,17600.0,0,5,3,43.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,29.610454832762365,0.0022595018056478563,0.0016824122064069526,17600.0,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +10288,2,30.0,3,0.0,1,112,5,85,33,4.0,0.0,0.0,2086.1911359446212,176.9321942043223,0.0,43423.880000000005,50,60,1,7715,201710288,,,,,1.0,0.0,8.0,3.0,5.0,2.4,2220.76324153869,0.0,1550.0,0.0,0.0,41056.0,4,1,2,460.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2263.1233301489438,0.05211702248046336,0.05512284027058027,17106.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10289,2,76.0,3,0.0,4,111,1,78,77,5.0,0.0,0.0,457.61612014269105,0.0,113.23660429076627,19762.3,70,70,2,7716,201710289,,,,296.0,0.0,5.0,2.0,0.0,2.0,1.5,3033.1053667854503,0.0,340.0,64.0,0.0,29709.0,5,5,3,50.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,570.8527244334573,0.02888594568615279,0.019214807783279723,19806.0,5,3,5,5_0,5_3,5_0_1 +10290,2,36.0,4,0.0,9,400,5,52,47,6.0,0.0,0.0,847.935752029104,0.0,0.0,41597.020000000004,44,42,1,7719,201710290,,,,,2.0,0.0,5.0,3.0,5.0,2.4,2339.390950627647,0.0,630.0,0.0,0.0,48865.0,1,1,2,110.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,847.935752029104,0.020384531200290403,0.017352619503307153,20360.416666666668,5,3,5,5_1,5_0,5_0_0 +10291,2,53.0,1,0.0,8,112,6,21,43,9.0,0.0,0.0,2422.6735772260117,176.9321942043223,0.0,104504.31754025388,31,33,1,772,201710291,,,880.0,,3.0,0.0,5.0,1.0,5.0,3.0,3232.9501347084715,0.0,1800.0,0.0,0.0,102146.0,1,1,1,165.0,9,1.0,5,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2599.6057714303342,0.02487558248901052,0.025449902800210818,34048.666666666664,9,5,9,9_1,9_1,9_0_0 +10292,2,50.0,2,0.0,1,111,2,85,37,5.0,0.0,111.0341055650752,1137.3106515311,0.0,3184.779495677801,50485.18802731698,44,31,1,7720,201710292,,,850.0,,1.0,0.0,7.0,4.0,6.0,3.3,1769.339707862297,0.0,845.0,1800.0,0.0,70158.0,6,1,2,300.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4433.124252773976,0.0878103940184448,0.06318772275113281,21260.0,6,3,6,6_1,6_3,6_1_0 +10293,2,59.0,4,0.0,99,111,1,0,81,1.0,0.0,0.0,267.23126072832724,0.0,497.9797280552186,5994.160315994116,0,50,2,7721,201710293,,,280.0,119.0,1.0,2.0,3.0,0.0,1.0,1.0,1831.7959760632382,480.0,0.0,0.0,0.0,5280.0,0,4,3,85.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,765.2109887835459,0.12765941323620364,0.1449263236332473,5280.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +10294,1,38.0,4,200.0,4,111,2,0,56,1.0,951.8736054833294,0.0,1518.2087750616338,0.0,0.0,50990.12,0,50,1,7730,201710294,,,212.0,,2.0,0.0,4.0,3.0,4.0,2.1,583.8715132157021,0.0,1128.0,0.0,0.0,20771.0,0,1,3,120.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2470.082380544963,0.04844237237615764,0.1189197621946446,9890.95238095238,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +10295,2,55.0,3,0.0,1,112,4,0,52,6.0,0.0,0.0,2018.894647688343,0.0,0.0,19007.2,0,50,1,7731,201710295,,,220.0,,1.0,2.0,4.0,0.0,1.0,1.0,2079.049985072213,0.0,1500.0,0.0,0.0,22294.0,0,1,2,105.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2018.894647688343,0.1062173622463247,0.09055775758896308,22294.0,6,3,6,6_1,6_0,6_1_0 +10296,2,35.0,3,0.0,5,111,1,0,62,7.0,0.0,0.0,554.5230632317315,0.0,279.55286684282925,21581.18,0,50,2,7733,201710296,,,,363.0,1.0,0.0,1.0,0.0,1.0,1.0,2925.760328749078,0.0,412.0,158.0,0.0,25945.0,0,1,3,35.0,9,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,834.0759300745608,0.03864830051343628,0.0321478485286013,25945.0,7,4,7,7_0,7_3,7_0_0 +10297,2,47.0,4,0.0,2,111,1,0,37,10.0,0.0,0.0,200.42344554624543,0.0,373.4847960414139,40370.90031599412,0,31,8,7734,201710297,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2117.724879948281,360.0,0.0,0.0,0.0,45995.0,0,1,2,53.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,573.9082415876594,0.01421588909574773,0.012477622384773549,45995.0,10,5,10,10_0,10_4,10_0_1 +10298,2,34.0,2,0.0,99,111,2,0,54,7.0,0.0,0.0,740.261370819059,0.0,1150.059262328095,53793.78,0,31,1,7738,201710298,,,390.0,,1.0,0.0,3.0,0.0,1.0,1.0,1434.9271195579972,0.0,550.0,650.0,0.0,25030.0,0,1,1,95.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1890.320633147154,0.03514013391784615,0.07552219868746121,25030.0,7,4,7,7_1,7_2,7_0_0 +10299,2,51.0,2,0.0,3,111,1,54,53,9.0,0.0,0.0,1211.6346102576322,0.0,2257.8551329433876,94492.14027116715,41,60,1,7741,201710299,,,600.0,,2.0,1.0,4.0,0.0,2.0,1.5,1515.8294292147143,2176.33450270219,0.0,0.0,0.0,54090.0,1,1,1,100.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3469.48974320102,0.03671723101248964,0.0641429052172494,36060.0,9,5,9,9_1,9_3,9_0_1 +10300,2,39.0,3,0.0,9,111,4,43,62,9.0,0.0,0.0,2193.865517154666,106.15931652259337,0.0,36681.939999999995,30,42,1,7742,201710300,,,510.0,,2.0,0.0,4.0,1.0,3.0,1.8,1766.2449334831747,0.0,1630.0,0.0,0.0,54151.0,1,1,2,105.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2300.0248336772593,0.06270183184633255,0.04247428179862347,30083.888888888887,8,4,8,8_1,8_3,8_0_0 +10301,2,67.0,3,0.0,99,111,2,0,75,10.0,0.0,0.0,484.5347154452023,0.0,619.262679715128,52008.30000000001,0,33,2,7744,201710301,,,,,1.0,0.0,3.0,1.0,2.0,1.5,4365.610174290203,0.0,360.0,350.0,0.0,70280.0,0,5,1,67.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1103.7973951603303,0.021223485389069246,0.01570571137109178,46853.333333333336,10,5,10,10_0,10_4,10_0_0 +10302,2,37.0,3,0.0,4,111,2,63,37,9.0,0.0,0.0,794.0985614240816,0.0,1769.3219420432229,39118.14175060326,71,20,1,7746,201710302,,,390.0,,2.0,0.0,4.0,2.0,4.0,2.1,2490.915161852148,0.0,590.0,1000.0,0.0,68602.0,1,1,2,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2563.4205034673046,0.06553022175261618,0.03736655641916132,32667.619047619046,9,5,9,9_1,9_4,9_0_1 +10303,2,43.0,3,0.0,1,112,2,42,42,8.0,0.0,160.99945306935902,2018.894647688343,0.0,0.0,26765.8,60,41,1,7747,201710303,,,338.0,,2.0,1.0,3.0,1.0,3.0,1.8,2222.5125343188047,0.0,1500.0,0.0,0.0,46675.0,4,1,2,65.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2179.894100757702,0.08144326344655127,0.04670367650257529,25930.555555555555,7,4,7,7_1,7_0,7_1_0 +10304,2,69.0,4,0.0,7,111,2,77,78,9.0,0.0,0.0,3903.19631886413,0.0,0.0,44831.964383209466,71,50,1,7748,201710304,,,500.0,,2.0,1.0,5.0,1.0,5.0,2.8,3604.9802355602715,0.0,2900.0,0.0,0.0,93932.0,6,5,1,125.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3903.19631886413,0.08706279933444007,0.041553425018780926,33547.14285714286,9,5,9,9_1,9_3,9_0_0 +10305,2,24.0,2,0.0,2,112,2,43,46,9.0,905.8663812183017,0.0,538.3719060502248,0.0,0.0,27467.72,43,44,1,7749,201710305,,,240.0,,2.0,0.0,5.0,0.0,2.0,1.5,1078.4664548671774,0.0,400.0,0.0,0.0,48592.0,1,1,2,70.0,10,4.0,3,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1444.2382872685266,0.05257947464400127,0.0297217296523816,32394.666666666668,9,5,9,9_1,9_2,9_0_1 +10306,2,39.0,4,0.0,5,111,2,0,56,6.0,0.0,0.0,441.4649629611843,0.0,0.0,22559.294287897264,0,50,2,775,201710306,,,,,1.0,0.0,3.0,1.0,2.0,1.3,913.326109255725,0.0,328.0,0.0,0.0,27186.0,0,1,2,64.0,6,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,441.4649629611843,0.019569094552661776,0.016238687668696548,20912.30769230769,5,3,5,5_0,5_2,5_0_0 +10307,1,44.0,2,264.0,2,111,1,0,85,3.0,0.0,0.0,0.0,0.0,0.0,7747.550875301628,0,71,2,7750,201710307,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2391.598630780953,0.0,0.0,0.0,0.0,14160.0,0,7,3,40.0,9,7.0,1,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0.0,0.0,0.0,14160.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +10308,1,31.0,4,448.0,5,111,1,0,68,4.0,0.0,0.0,485.8806452103279,0.0,1203.1389205893915,12488.439999999999,0,71,2,7751,201710308,680.0,680.0,,,1.0,0.0,3.0,3.0,4.0,1.9,923.044604023641,0.0,361.0,680.0,0.0,32848.0,0,1,3,50.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1689.0195657997194,0.13524664135790537,0.051419251272519464,17288.42105263158,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +10309,1,34.0,3,406.0,99,111,1,85,65,2.0,0.0,0.0,942.1508355878933,0.0,1769.3219420432229,25199.62,71,71,1,7752,201710309,,,565.0,144.0,1.0,0.0,5.0,4.0,7.0,3.4,2220.2481009004314,0.0,700.0,1000.0,0.0,35484.0,6,4,3,90.0,6,4.0,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2711.472777631116,0.10759974863236493,0.07641395495522252,10436.470588235294,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +10310,2,87.0,3,0.0,2,211,2,77,72,3.0,0.0,0.0,875.7391106784557,0.0,1631.9210671476226,18085.72,70,70,1,7754,201710310,,,450.0,,0.0,5.0,4.0,0.0,2.0,1.5,1825.7026040913224,1573.0,0.0,0.0,0.0,21884.0,5,5,1,90.0,4,4.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2507.6601778260783,0.13865415243772866,0.11458874875827446,14589.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +10311,2,57.0,2,0.0,4,221,6,56,63,5.0,0.0,0.0,1951.598159432065,123.8525359430256,0.0,29985.74,50,50,2,7755,201710311,,,,,2.0,2.0,3.0,2.0,4.0,2.1,696.2994821750208,0.0,1450.0,0.0,0.0,43022.0,1,1,2,62.0,1,3.0,4,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2075.4506953750906,0.06921458984754389,0.048241613485544385,20486.666666666664,5,3,5,5_0,5_1,5_0_1 +10312,2,32.0,3,0.0,9,111,1,42,43,8.0,0.0,0.0,345.9039496372694,162.7776186679765,0.0,25401.4,0,33,2,7757,201710312,,,240.0,453.0,2.0,0.0,3.0,2.0,4.0,2.1,1533.5866514886477,0.0,257.0,0.0,0.0,54810.0,1,1,3,65.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,508.68156830524595,0.02002572961747171,0.00928081679082733,26100.0,7,4,7,7_0,7_4,7_0_0 +10313,2,29.0,2,0.0,9,111,1,0,31,10.0,0.0,0.0,242.26735772260116,0.0,318.4779495677801,39033.92,0,10,2,7758,201710313,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3454.0637539951413,0.0,180.0,180.0,0.0,45280.0,0,1,1,80.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,560.7453072903813,0.014365590422134937,0.012383951132738104,45280.0,10,5,10,10_0,10_2,10_0_0 +10314,2,55.0,2,0.0,9,400,2,52,48,8.0,0.0,0.0,1122.5054241147186,2167.419379002948,0.0,38062.62083603498,50,50,1,7759,201710314,,,342.0,,2.0,1.0,6.0,0.0,2.0,1.5,2136.505104782897,0.0,834.0,0.0,0.0,41800.0,1,1,2,190.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3289.9248031176667,0.08643453159176576,0.07870633500281499,27866.666666666668,8,4,8,8_1,8_0,8_0_0 +10315,2,68.0,3,0.0,8,400,4,74,75,5.0,0.0,0.0,2961.045483276236,0.0,0.0,42154.159999999996,41,33,1,776,201710315,,,700.0,,0.0,0.0,3.0,0.0,2.0,1.5,1706.198410984773,0.0,2200.0,0.0,0.0,30112.0,5,5,1,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2961.045483276236,0.07024325673376569,0.09833440101209605,20074.666666666668,5,3,5,5_1,5_0,5_0_0 +10316,1,28.0,3,271.0,9,111,1,85,64,4.0,0.0,0.0,969.0694308904046,0.0,884.6609710216114,27457.32,50,50,2,7761,201710316,,,,103.0,1.0,0.0,3.0,1.0,3.0,1.8,2925.8663209240813,0.0,720.0,500.0,0.0,29655.0,6,1,3,70.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1853.730401912016,0.06751315867360748,0.06250987698236439,16475.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10317,2,76.0,3,0.0,4,211,2,77,,3.0,0.0,0.0,524.9126083989692,0.0,1358.8392514891952,15459.439999999999,50,50,1,7762,201710317,,,,409.0,0.0,2.0,4.0,0.0,2.0,1.5,1467.9573496893092,0.0,390.0,768.0,0.0,21413.0,5,5,3,,3,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1883.7518598881643,0.12185123522508993,0.0879723467000497,14275.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +10318,1,42.0,3,309.0,6,111,1,0,22,1.0,0.0,0.0,465.6916987334444,0.0,0.0,21609.920000000002,0,41,2,7763,201710318,,,,671.0,1.0,0.0,2.0,0.0,1.0,1.0,5147.069336206281,0.0,346.0,0.0,0.0,9988.0,0,1,3,45.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,465.6916987334444,0.021549903874398625,0.04662512001736528,9988.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +10319,2,66.0,2,0.0,5,111,2,0,31,9.0,0.0,0.0,1211.3367886130059,0.0,1946.2541362475451,48117.980315994115,0,60,1,7764,201710319,,,90.0,,1.0,0.0,4.0,0.0,1.0,1.0,1470.4553265047007,0.0,900.0,1100.0,0.0,38969.0,0,1,1,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3157.5909248605512,0.06562185079515874,0.08102827696016196,38969.0,9,5,9,9_1,9_4,9_0_0 +10320,2,77.0,4,0.0,4,111,1,77,78,1.0,0.0,0.0,282.645250676368,268.9369351905699,1231.448071662083,13433.279999999999,71,71,2,7766,201710320,696.0,696.0,600.0,264.0,0.0,1.0,3.0,0.0,2.0,1.5,2274.241880645514,0.0,210.0,696.0,0.0,14850.0,6,5,3,67.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1783.030257529021,0.1327323079344003,0.12006937761138188,9900.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +10321,2,42.0,4,0.0,9,400,5,0,52,6.0,0.0,666.2046333904511,1327.0867484138041,176.9321942043223,0.0,53512.92,0,50,1,7767,201710321,,,250.0,,1.0,0.0,4.0,1.0,2.0,1.3,3496.828331517844,0.0,986.0,0.0,0.0,29820.0,0,1,2,100.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2170.2235760085778,0.0405551327793097,0.07277745057037484,22938.46153846154,6,3,6,6_1,6_0,6_0_0 +10322,1,28.0,3,353.0,1,300,4,0,69,1.0,0.0,0.0,2395.7549819235,0.0,0.0,20157.6,0,71,2,777,201710322,,,410.0,,1.0,1.0,3.0,1.0,2.0,1.3,232.78006085888566,0.0,1780.0,0.0,0.0,12807.0,0,4,3,78.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,2395.7549819235,0.11885120162735148,0.1870660562132818,9851.538461538461,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +10323,2,56.0,3,0.0,9,111,1,0,34,10.0,0.0,0.0,706.61312669092,0.0,0.0,75562.25904104553,0,10,2,7772,201710323,,,,975.0,1.0,0.0,3.0,2.0,3.0,2.0,1164.456067720108,0.0,525.0,0.0,0.0,86842.0,0,1,3,64.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,706.61312669092,0.009351402878348129,0.008136767079188872,43421.0,10,5,10,10_0,10_4,10_0_0 +10324,2,60.0,2,0.0,2,111,2,75,75,8.0,0.0,0.0,706.61312669092,0.0,2170.9580228870345,23048.76836321395,60,60,1,7773,201710324,,,255.0,,0.0,2.0,2.0,0.0,2.0,1.5,1901.5461980504085,0.0,525.0,1227.0,0.0,44405.0,5,5,1,75.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2877.5711495779547,0.12484706793142948,0.06480286340677749,29603.333333333332,8,4,8,8_1,8_2,8_0_1 +10325,2,55.0,2,0.0,9,112,4,68,53,9.0,0.0,0.0,1493.9820392893737,0.0,0.0,27256.699999999997,50,50,1,7774,201710325,,,300.0,,2.0,2.0,6.0,0.0,2.0,1.5,1314.8993509783313,0.0,1110.0,0.0,0.0,47156.0,1,1,2,155.0,8,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1493.9820392893737,0.05481155236288229,0.03168169563341618,31437.333333333332,8,4,8,8_1,8_1,8_0_0 +10326,2,50.0,3,0.0,7,111,2,63,48,6.0,0.0,0.0,1076.7438121004495,0.0,0.0,29344.730909090908,31,31,2,7776,201710326,,,,,2.0,0.0,2.0,0.0,2.0,1.5,2879.954110873043,0.0,800.0,0.0,0.0,36610.0,1,1,3,45.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1076.7438121004495,0.03669291824267087,0.029411193993456694,24406.666666666668,7,4,7,7_0,7_4,7_0_0 +10327,2,66.0,2,0.0,4,112,2,77,77,7.0,2538.3296146222115,0.0,1292.0925745205395,226.47320858153253,0.0,19765.71087530163,70,70,1,7777,201710327,,,,,0.0,0.0,5.0,0.0,3.0,2.0,3861.682487364104,0.0,960.0,0.0,0.0,46869.0,5,5,1,100.0,6,0.0,5,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4056.8953977242836,0.20524915209569333,0.08655818126532001,23434.5,6,3,6,6_1,6_0,6_0_1 +10328,2,52.0,2,0.0,9,111,2,0,34,5.0,0.0,0.0,672.964882562781,0.0,1334.06874430059,48999.380000000005,0,10,1,7778,201710328,,,242.0,,1.0,0.0,4.0,3.0,4.0,2.3,342.1771896449455,0.0,500.0,754.0,0.0,45602.0,0,1,3,90.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2007.033626863371,0.04096038821028696,0.04401196497661004,19826.956521739132,5,3,5,5_1,5_3,5_0_0 +10329,2,66.0,2,0.0,5,112,3,77,22,10.0,0.0,466.34324337331583,2609.406339485264,0.0,3517.5561650798577,48850.22618541822,50,30,1,7779,201710329,,,184.0,,1.0,4.0,5.0,0.0,2.0,1.5,1628.873473461335,2815.820329412956,774.0,337.0,0.0,67084.0,5,5,1,86.0,8,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6593.305747938438,0.1349698100252919,0.09828432633621188,44722.666666666664,10,5,10,10_1,10_1,10_0_0 +10330,2,43.0,3,0.0,99,111,2,0,52,4.0,0.0,0.0,823.7090162568439,0.0,1634.853474447938,25738.288161188146,0,60,1,7780,201710330,,,660.0,,1.0,0.0,4.0,2.0,3.0,1.8,1043.7969203762966,0.0,612.0,924.0,0.0,31921.0,0,1,1,80.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2458.562490704782,0.0955216009436149,0.07702022150636828,17733.888888888887,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +10331,2,43.0,3,0.0,5,111,2,0,34,3.0,0.0,0.0,790.5591463213016,0.0,1473.1900288300214,34514.6,0,30,1,7781,201710331,,,290.0,,1.0,0.0,7.0,3.0,4.0,2.3,712.6458246640963,1420.0,0.0,0.0,0.0,35716.0,0,1,1,140.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2263.749175151323,0.0655881619706247,0.06338193457137761,15528.695652173914,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10332,2,65.0,2,0.0,9,112,4,77,75,5.0,0.0,0.0,1615.1157181506744,95.54338487033404,0.0,31139.399999999998,70,50,1,7782,201710332,,,340.0,,0.0,2.0,4.0,0.0,2.0,1.5,1578.1035554810485,0.0,1200.0,0.0,0.0,28838.0,5,5,2,110.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1710.6591030210084,0.05493551908582081,0.05931961658301576,19225.333333333332,5,3,5,5_1,5_1,5_0_0 +10333,2,32.0,3,0.0,3,111,1,0,65,4.0,0.0,0.0,710.6509159862967,0.0,675.8809818605112,13617.367533755658,0,50,2,7785,201710333,,,80.0,223.0,1.0,0.0,2.0,0.0,1.0,1.0,4642.964529664665,0.0,528.0,382.0,0.0,17511.0,0,1,3,45.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1386.5318978468079,0.1018208471211325,0.07918062348505556,17511.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +10334,1,44.0,4,288.0,7,111,2,0,56,2.0,0.0,0.0,228.80806007134552,0.0,0.0,25490.750875301626,0,42,8,7786,201710334,,,92.0,302.0,1.0,1.0,4.0,4.0,5.0,2.6,480.2193026288413,0.0,170.0,0.0,0.0,32010.0,0,1,3,89.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,228.80806007134552,0.00897612083655963,0.007148018121566558,12311.538461538461,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10335,2,44.0,3,0.0,9,111,1,55,53,8.0,0.0,0.0,511.45331074771354,0.0,360.94167617681745,37110.7745082038,50,71,8,7787,201710335,,,,,2.0,1.0,3.0,0.0,2.0,1.5,2445.116465496456,0.0,380.0,204.0,0.0,42885.0,1,1,2,68.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,872.3949869245309,0.023507862567828573,0.020342660299044676,28590.0,8,4,8,8_0,8_2,8_0_0 +10336,2,29.0,2,0.0,4,111,2,52,47,8.0,0.0,0.0,979.0940921698025,0.0,3199.9083801417805,32547.288370152648,30,31,1,7788,201710336,,,320.0,,2.0,0.0,4.0,0.0,2.0,1.5,3077.3831012357946,677.9987990265794,447.0,1411.0,0.0,44564.0,1,1,2,120.0,5,4.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4179.002472311583,0.1283978691184584,0.09377530006982279,29709.333333333332,8,4,8,8_1,8_2,8_0_1 +10337,2,53.0,1,0.0,7,111,4,34,38,10.0,0.0,277.585263912688,2716.086266023384,0.0,0.0,76494.12000000002,10,10,1,7789,201710337,,,594.0,,2.0,0.0,6.0,2.0,4.0,2.5,896.980128080128,0.0,2018.0,0.0,0.0,186580.0,1,1,1,180.0,4,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2993.6715299360717,0.03913596927366536,0.016044975506142523,74632.0,10,5,10,10_1,10_1,10_0_0 +10338,2,51.0,2,0.0,4,111,1,56,46,10.0,0.0,0.0,821.0171567265928,0.0,159.23897478389006,33945.16,71,71,2,7790,201710338,,,,,2.0,1.0,4.0,0.0,2.0,1.5,3867.995074024387,0.0,610.0,90.0,0.0,61769.0,1,1,1,76.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,980.2561315104829,0.028877640627131607,0.01586971023507719,41179.333333333336,10,5,10,10_0,10_4,10_0_1 +10339,2,39.0,2,0.0,9,300,2,33,43,10.0,0.0,69.396315978172,1480.522741638118,212.31863304518674,0.0,62219.68,0,0,1,7792,201710339,,,320.0,,2.0,0.0,7.0,1.0,3.0,1.8,2057.9976141161296,0.0,1100.0,0.0,0.0,84600.0,1,1,2,168.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1762.2376906614768,0.028322834361434786,0.02083023275013566,47000.0,10,5,10,10_1,10_0,10_0_0 +10340,2,29.0,2,0.0,3,111,2,0,45,8.0,0.0,0.0,242.26735772260116,0.0,2123.1863304518674,14261.490875301628,0,30,2,7793,201710340,,,,438.0,1.0,0.0,3.0,0.0,1.0,1.0,2775.9602011858037,0.0,180.0,1200.0,0.0,31217.0,0,1,3,62.0,6,5.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2365.4536881744684,0.165863001901927,0.07577453593152668,31217.0,8,4,8,8_0,8_2,8_0_1 +10341,2,57.0,2,0.0,1,111,6,38,43,10.0,2379.684013708323,0.0,1533.014002478015,159.23897478389006,0.0,53096.3,33,33,1,7794,201710341,,,332.0,,2.0,3.0,3.0,0.0,2.0,1.5,759.6970408380388,0.0,1139.0,0.0,0.0,104710.0,1,1,2,90.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,4071.9369909702286,0.07668965617133827,0.038887756575018896,69806.66666666667,10,5,10,10_1,10_3,10_1_0 +10342,2,77.0,2,0.0,9,111,2,0,75,8.0,0.0,0.0,1531.6680727128894,0.0,0.0,51131.5,0,33,2,7795,201710342,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3259.9161340615983,0.0,1138.0,0.0,0.0,30667.0,0,5,1,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1531.6680727128894,0.029955469186565803,0.0499451551411253,30667.0,8,4,8,8_0,8_4,8_0_0 +10343,2,79.0,2,0.0,7,400,4,0,78,5.0,0.0,0.0,2176.3684302080337,0.0,0.0,15594.14218056569,0,70,1,7796,201710343,,,238.0,,0.0,2.0,5.0,0.0,1.0,1.0,3895.942814156833,0.0,1617.0,0.0,0.0,19273.0,0,5,1,120.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2176.3684302080337,0.1395632029647869,0.11292317906958095,19273.0,5,3,5,5_1,5_0,5_0_0 +10344,1,60.0,4,224.0,4,111,1,0,77,1.0,0.0,0.0,269.1859530251124,0.0,746.6538595422401,8078.867127683116,0,60,2,7797,201710344,325.0,325.0,128.0,92.0,0.0,4.0,3.0,0.0,1.0,1.0,1093.7736123835473,0.0,200.0,422.0,0.0,6109.0,0,7,3,70.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1015.8398125673525,0.12574037875761898,0.1662857771431253,6109.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10345,2,60.0,1,0.0,1,112,2,56,22,7.0,594.9210034270808,0.0,912.540380755131,0.0,0.0,37301.60063198823,71,31,2,7798,201710345,,,,618.0,3.0,1.0,3.0,2.0,4.0,2.5,1830.6573763087144,0.0,678.0,0.0,0.0,80420.0,1,1,3,52.0,10,3.0,4,1,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1507.4613841822118,0.040412780112429776,0.01874485680405635,32168.0,9,5,9,9_0,9_1,9_1_0 +10346,2,34.0,3,0.0,1,300,5,54,52,5.0,0.0,832.755791738064,1316.3193102927996,0.0,0.0,55735.61999999998,50,50,1,7799,201710346,,,482.0,791.0,2.0,0.0,4.0,3.0,5.0,2.6,2317.8488990864016,0.0,978.0,0.0,0.0,48490.0,1,1,3,100.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2149.0751020308635,0.038558377964233004,0.044319964983107106,18650.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10347,2,48.0,4,0.0,1,400,2,68,67,3.0,0.0,0.0,565.290501352736,0.0,1732.1661812603152,44824.205846751305,50,71,1,780,201710347,,,783.0,,2.0,1.0,5.0,3.0,5.0,2.6,1950.1320674777364,0.0,420.0,979.0,0.0,41318.0,1,1,1,200.0,0,0.0,4,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2297.4566826130513,0.05125482179132824,0.05560425680364614,15891.538461538461,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10348,2,65.0,1,0.0,1,111,2,74,74,9.0,0.0,0.0,646.0462872602698,0.0,3184.779495677801,46411.0,20,20,1,7800,201710348,,,300.0,,0.0,3.0,5.0,0.0,2.0,1.5,1777.0635449657607,0.0,480.0,1800.0,0.0,57177.0,5,5,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3830.825782938071,0.08254133250604535,0.06699941904853474,38118.0,9,5,9,9_1,9_4,9_1_0 +10349,2,52.0,3,0.0,5,111,2,0,42,5.0,0.0,471.89494865156956,1977.1708249694505,0.0,0.0,41445.97087530163,0,31,1,7802,201710349,,,584.0,,1.0,1.0,6.0,2.0,3.0,2.0,943.2272387302236,0.0,1469.0,0.0,0.0,40013.0,0,1,1,120.0,7,5.0,2,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2449.06577362102,0.05909056349505039,0.06120675214607803,20006.5,5,3,5,5_1,5_2,5_0_0 +10350,2,34.0,3,0.0,2,111,4,37,38,5.0,0.0,0.0,1884.3016711757866,0.0,0.0,38519.67119129575,20,10,2,7803,201710350,,,296.0,,2.0,0.0,3.0,2.0,4.0,2.1,2404.3556901918955,0.0,1400.0,0.0,0.0,38845.0,4,1,2,66.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1884.3016711757866,0.04891790643326105,0.048508216531748916,18497.619047619046,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10351,2,39.0,2,0.0,1,111,4,0,38,5.0,0.0,0.0,1332.4704674743064,0.0,0.0,46532.16,0,20,1,7804,201710351,,,,,1.0,0.0,4.0,2.0,3.0,1.6,2726.2253262140407,0.0,990.0,0.0,0.0,30375.0,0,1,3,95.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1332.4704674743064,0.028635474206963663,0.04386734049298128,18984.375,5,3,5,5_1,5_3,5_1_0 +10352,2,52.0,3,0.0,6,111,2,52,21,5.0,0.0,0.0,1144.0403003567276,0.0,0.0,43471.880000000005,50,31,2,7805,201710352,,,,465.0,2.0,0.0,2.0,1.0,3.0,1.8,4224.340986896368,0.0,850.0,0.0,0.0,36754.0,1,1,3,50.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1144.0403003567276,0.02631678916018188,0.03112696034055416,20418.888888888887,5,3,5,5_0,5_2,5_0_0 +10353,2,58.0,3,0.0,5,111,2,55,52,6.0,0.0,208.188947934516,634.1175124365933,0.0,1181.6643963643623,45390.01632237629,44,41,1,7806,201710353,,,540.0,,2.0,1.0,5.0,0.0,2.0,1.5,1421.4190640589347,1139.0,0.0,0.0,0.0,33635.0,1,1,2,100.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2023.9708567354717,0.04459066157545527,0.060174546060219165,22423.333333333332,6,3,6,6_1,6_3,6_0_0 +10354,1,40.0,2,507.0,99,111,1,85,55,1.0,0.0,0.0,1211.3367886130059,0.0,238.8584621758351,60532.22,71,71,8,7808,201710354,,,,,1.0,0.0,5.0,5.0,7.0,3.4,1142.1243169274521,0.0,900.0,135.0,0.0,34954.0,6,1,3,105.0,7,6.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1450.195250788841,0.023957410628403203,0.04148867799933744,10280.588235294117,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10355,2,63.0,3,0.0,2,111,2,56,78,3.0,0.0,0.0,1197.87749096175,0.0,1486.2304313163072,28407.8,50,50,1,7809,201710355,,,336.0,,1.0,2.0,3.0,0.0,2.0,1.5,2801.3485239283978,0.0,890.0,840.0,0.0,22628.0,1,5,1,80.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2684.1079222780572,0.09448489225769181,0.11861887582985935,15085.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +10356,2,86.0,3,0.0,1,112,2,77,78,4.0,0.0,0.0,33.64824412813905,0.0,212.31863304518674,14924.647127683114,71,50,1,7810,201710356,,,130.0,,0.0,2.0,3.0,0.0,2.0,1.5,3137.302307764384,0.0,25.0,120.0,0.0,26103.0,5,5,1,55.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,245.9668771733258,0.016480582426440887,0.009422935186504455,17402.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10357,2,45.0,3,0.0,1,111,2,31,31,7.0,0.0,0.0,969.0694308904046,0.0,1521.6168701571717,45328.1,20,20,1,7811,201710357,,,321.0,,2.0,0.0,7.0,2.0,4.0,2.1,2784.0640996318025,0.0,720.0,860.0,0.0,54920.0,1,1,2,118.0,4,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2490.6863010475763,0.05494795283825213,0.045351170812956594,26152.38095238095,7,4,7,7_1,7_2,7_1_0 +10358,2,64.0,2,0.0,1,112,5,0,71,2.0,0.0,41.637789586903196,497.99401309645793,219.39592081335965,0.0,11559.1,0,50,1,7812,201710358,,,300.0,,0.0,0.0,3.0,0.0,1.0,1.0,2209.292631970182,0.0,370.0,0.0,0.0,11577.0,0,5,3,80.0,9,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,759.0277234967208,0.06566494999582327,0.0655634208773189,11577.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +10359,2,72.0,2,0.0,9,111,4,0,77,9.0,0.0,0.0,969.0694308904046,0.0,0.0,18176.6,0,41,2,7815,201710359,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3968.6029118036195,0.0,720.0,0.0,0.0,43317.0,0,5,1,80.0,6,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,969.0694308904046,0.0533141198513696,0.022371573075014535,43317.0,10,5,10,10_0,10_2,10_0_0 +10360,2,58.0,1,0.0,8,111,6,43,38,10.0,0.0,0.0,3364.824412813905,106.15931652259337,0.0,50549.48000000001,33,12,1,7817,201710360,,,220.0,,2.0,2.0,5.0,0.0,2.0,1.5,2018.1210483377117,0.0,2500.0,0.0,0.0,143528.0,4,1,2,180.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3470.983729336498,0.06866507290157084,0.024183321228864737,95685.33333333333,10,5,10,10_1,10_3,10_0_0 +10361,2,54.0,1,0.0,8,111,4,37,37,10.0,0.0,0.0,4397.152542665211,0.0,0.0,98394.7,31,31,2,7819,201710361,,,,,2.0,0.0,7.0,1.0,3.0,2.0,2713.4850749524808,0.0,3267.0,0.0,0.0,206169.0,1,1,2,159.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4397.152542665211,0.04468891660491074,0.021327903528974824,103084.5,10,5,10,10_0,10_4,10_0_0 +10362,2,71.0,3,0.0,9,111,6,77,75,6.0,0.0,0.0,113.0581002705472,33.61711689882124,0.0,32118.444177580946,50,50,1,782,201710362,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1799.7876104663314,0.0,84.0,0.0,0.0,32439.0,5,5,1,136.0,6,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,146.67521716936844,0.004566697451421058,0.004521570244747632,21626.0,6,3,6,6_1,6_2,6_0_0 +10363,2,52.0,1,0.0,2,111,2,31,34,10.0,2728.7043357188772,0.0,2849.3749892713186,0.0,1630.3499928753934,70807.91222246134,10,10,1,7820,201710363,,,441.0,,2.0,2.0,7.0,0.0,2.0,1.5,1959.6701584667867,1571.4856499006191,1467.0,0.0,0.0,218201.0,1,1,1,200.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,7208.42931786559,0.10180259651235653,0.03303572998228968,145467.33333333334,10,5,10,10_1,10_3,10_0_1 +10364,1,35.0,5,76.0,4,112,1,0,52,4.0,0.0,0.0,572.0739873689689,0.0,0.0,33236.78366761308,0,50,2,7821,201710364,,,,,1.0,0.0,4.0,2.0,3.0,1.6,1124.3729413856925,0.0,425.04,0.0,0.0,26525.0,0,1,2,80.0,8,1.0,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,572.0739873689689,0.01721207422144204,0.02156735107894322,16578.125,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +10365,1,36.0,4,128.0,1,111,2,55,46,3.0,0.0,0.0,1615.1157181506744,0.0,0.0,21513.720000000005,31,43,8,7824,201710365,,,290.0,,2.0,0.0,3.0,1.0,3.0,1.8,2421.2603795507534,0.0,1200.0,0.0,0.0,25586.0,4,4,2,80.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1615.1157181506744,0.07507375377901516,0.06312497921326797,14214.444444444443,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +10366,1,72.0,4,300.0,5,111,1,0,78,2.0,0.0,0.0,605.6683943065029,0.0,0.0,9930.845846751301,0,71,2,7825,201710366,,,,31.0,0.0,4.0,2.0,0.0,1.0,1.0,3734.412039514338,0.0,450.0,0.0,0.0,13170.0,0,5,3,50.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,605.6683943065029,0.060988600936206915,0.045988488557821026,13170.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +10367,1,56.0,2,46.0,1,111,1,0,55,7.0,142.7810408224994,0.0,417.2382271889242,60.15694602946958,0.0,37514.259999999995,0,50,2,7826,201710367,90.0,90.0,,274.0,1.0,0.0,2.0,0.0,1.0,1.0,2872.108855861905,0.0,310.0,0.0,0.0,22854.0,0,1,3,65.0,7,5.0,1,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,620.1762140408932,0.016531745902515292,0.027136440624875,22854.0,6,3,6,6_0,6_2,6_1_0 +10368,1,38.0,4,54.0,1,300,7,85,13,2.0,0.0,0.0,2944.8943260947294,61.9262679715128,0.0,38053.009999999995,41,43,1,7828,201710368,,,,,1.0,0.0,6.0,4.0,6.0,2.7,1492.0225434468045,0.0,2188.0,0.0,0.0,30452.0,6,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,3006.8205940662424,0.07901662954037651,0.09873967536011567,11278.518518518518,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +10369,2,52.0,2,0.0,1,111,2,37,22,9.0,0.0,0.0,874.8543473316153,0.0,0.0,60045.04,12,31,2,7829,201710369,,,,933.0,2.0,0.0,2.0,0.0,2.0,1.5,3469.956279081641,0.0,650.0,0.0,0.0,52907.0,1,1,3,40.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,874.8543473316153,0.01456996859909853,0.016535701274531068,35271.333333333336,9,5,9,9_0,9_4,9_1_0 +10370,1,28.0,3,236.0,4,112,2,47,67,5.0,0.0,0.0,1086.1653204563286,0.0,1737.4741470864449,26649.52,31,60,1,7830,201710370,,,162.0,,2.0,0.0,5.0,2.0,4.0,2.1,3867.44632555372,0.0,807.0,982.0,0.0,41131.0,4,1,2,80.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,2823.6394675427737,0.10595460884634221,0.06864991047002926,19586.190476190477,5,3,5,5_1,5_0,5_0_1 +10371,2,68.0,2,0.0,5,112,5,77,74,7.0,0.0,866.0660234075865,966.3775713601535,159.23897478389006,0.0,42764.74,70,50,1,7834,201710371,,,343.0,,0.0,5.0,8.0,0.0,2.0,1.5,1805.0820208463156,0.0,718.0,0.0,0.0,37925.0,5,5,1,150.0,10,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1991.68256955163,0.04657300779922034,0.05251634988929809,25283.333333333332,7,4,7,7_1,7_0,7_0_0 +10372,2,66.0,2,0.0,7,111,2,0,78,6.0,0.0,0.0,1404.8789351965652,0.0,2544.881393969088,15074.61243386745,0,71,1,7835,201710372,,,60.0,,0.0,2.0,4.0,0.0,1.0,1.0,2178.3958283528045,1242.135204323504,530.0,710.0,0.0,20975.0,0,5,1,93.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3949.7603291656533,0.2620140548550293,0.18830800139049597,20975.0,5,3,5,5_1,5_3,5_0_0 +10373,2,21.0,3,0.0,8,111,4,0,84,4.0,0.0,0.0,484.5347154452023,0.0,0.0,25367.2,0,41,2,7837,201710373,,,,,0.0,0.0,1.0,0.0,1.0,1.0,5881.837566359591,0.0,360.0,0.0,0.0,16184.0,0,3,3,20.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,484.5347154452023,0.019100835545318454,0.029939119837197374,16184.0,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +10374,2,71.0,3,0.0,4,111,5,52,77,7.0,0.0,1249.133687607096,584.1335180644938,0.0,716.5753865275053,21233.600000000002,44,50,1,7838,201710374,,,300.0,,1.0,2.0,5.0,0.0,2.0,1.5,1688.913948114323,0.0,434.0,405.0,0.0,37640.0,1,5,1,100.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2549.8425921990947,0.12008527014727105,0.0677428956482225,25093.333333333332,7,4,7,7_1,7_3,7_0_1 +10375,2,44.0,2,0.0,9,112,4,0,47,6.0,0.0,0.0,2341.9177913184776,0.0,35.38643884086446,35923.49,0,31,1,7839,201710375,,,340.0,820.0,1.0,1.0,5.0,1.0,2.0,1.3,392.8730518873018,0.0,1740.0,20.0,0.0,28839.0,0,1,3,92.0,9,0.0,2,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2377.3042301593423,0.0661768728528142,0.08243365685909158,22183.846153846152,6,3,6,6_1,6_0,6_0_0 +10376,1,59.0,4,326.0,1,111,2,77,78,1.0,0.0,0.0,390.8257188151786,0.0,728.2953522807571,11564.779999999999,71,71,2,784,201710376,,,14.0,48.0,0.0,8.0,4.0,1.0,3.0,2.0,2270.1722134153965,702.0,0.0,0.0,0.0,14212.0,6,7,3,62.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1119.1210710959358,0.0967697674401014,0.07874479813509258,7106.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +10377,1,36.0,3,69.0,3,120,4,48,42,5.0,634.5824036555529,0.0,3650.161523020524,120.31389205893916,0.0,34646.119999999995,43,50,1,7841,201710377,,,212.0,,2.0,0.0,6.0,2.0,4.0,2.1,2085.0755491132654,0.0,2712.0,0.0,0.0,39190.0,4,1,2,123.0,0,0.0,4,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,4405.057818735016,0.127144333008574,0.11240259807948497,18661.90476190476,4,2,4_1,4_1_1,4_0_1,4_0_1_1 +10378,2,54.0,3,0.0,5,111,2,56,48,2.0,0.0,0.0,995.9880261929159,0.0,1592.3897478389006,47026.776715170585,50,60,1,7842,201710378,,,612.0,603.0,3.0,1.0,6.0,2.0,4.0,2.5,1893.173032757343,0.0,740.0,900.0,0.0,28851.0,1,5,3,140.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2588.3777740318164,0.055040509999419535,0.08971535731973992,11540.4,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10379,2,73.0,4,0.0,9,111,2,0,77,4.0,0.0,0.0,1345.929765125562,0.0,0.0,14925.039999999999,0,50,2,7843,201710379,,,287.0,313.0,0.0,3.0,2.0,0.0,1.0,1.0,2495.1363791418016,0.0,1000.0,0.0,0.0,17860.0,0,5,3,50.0,7,5.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1345.929765125562,0.09017930706554636,0.07536000924555218,17860.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +10380,2,90.0,2,0.0,3,211,2,0,78,9.0,0.0,0.0,721.4183541073012,0.0,1703.8570301876236,17436.519999999997,0,50,1,7845,201710380,,,654.0,,0.0,2.0,6.0,1.0,2.0,1.5,1677.3623558879667,0.0,536.0,963.0,0.0,54019.0,0,5,5,125.0,1,3.0,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2425.275384294925,0.13909171005997328,0.04489671012597281,36012.666666666664,9,5,9,9_1,9_1,9_0_1 +10381,2,37.0,2,0.0,5,111,1,48,45,7.0,0.0,0.0,713.3427755165478,0.0,0.0,63041.19703804705,50,31,2,7847,201710381,,,,,2.0,0.0,3.0,3.0,5.0,2.4,1920.1543104878674,0.0,530.0,0.0,0.0,54981.0,4,1,2,69.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,713.3427755165478,0.011315501751751738,0.01297435069417704,22908.75,6,3,6,6_0,6_4,6_0_0 +10382,2,77.0,2,0.0,5,111,2,75,74,8.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,32012.442382591493,44,50,1,7849,201710382,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2159.78501981688,1800.0,0.0,0.0,0.0,42547.0,5,5,1,140.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2869.541207938297,0.08963830918126903,0.06744403149313223,28364.666666666668,8,4,8,8_1,8_3,8_0_0 +10383,2,45.0,4,0.0,99,111,4,0,43,3.0,0.0,0.0,1728.1738184212215,0.0,162.7776186679765,44727.09999999999,0,33,2,785,201710383,,,480.0,800.0,1.0,0.0,4.0,2.0,3.0,2.0,581.1379729724622,0.0,1284.0,92.0,0.0,31690.0,0,1,3,80.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1890.951437089198,0.042277532795311976,0.059670288327207256,15845.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +10384,2,84.0,2,0.0,6,111,4,0,77,4.0,0.0,83.27557917380639,1884.3016711757866,0.0,0.0,18086.47665845403,0,60,1,7851,201710384,,,130.0,,0.0,2.0,5.0,0.0,1.0,1.0,2349.7604437710233,0.0,1400.0,0.0,0.0,18324.0,0,5,1,140.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1967.577250349593,0.10878720535267451,0.10737706015878591,18324.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10385,2,75.0,3,0.0,99,111,1,52,74,9.0,0.0,0.0,666.9289211155453,0.0,1095.0498864889353,25844.17379885904,41,44,2,7857,201710385,,,,,1.0,6.0,2.0,0.0,2.0,1.5,2375.8398375975257,714.4247426856904,200.0,200.0,0.0,53217.0,1,5,2,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1761.9788076044806,0.0681770220753688,0.03310932235196423,35478.0,9,5,9,9_0,9_4,9_0_0 +10386,2,25.0,2,0.0,1,111,4,0,67,5.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,15570.080315994117,0,60,2,7859,201710386,,,,680.0,1.0,0.0,2.0,0.0,1.0,1.0,3623.0082447865525,1300.0,0.0,0.0,0.0,20183.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2072.4464279554363,0.13310441474258478,0.10268277401552972,20183.0,5,3,5,5_0,5_4,5_1_0 +10387,2,65.0,3,0.0,7,111,2,75,34,10.0,0.0,0.0,2961.045483276236,212.31863304518674,0.0,55267.05672205293,33,10,1,786,201710387,,,402.0,,1.0,4.0,7.0,0.0,2.0,1.5,1739.9933746505294,0.0,2200.0,0.0,0.0,85510.0,6,1,1,160.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3173.364116321423,0.057418728344460074,0.03711102931027275,57006.666666666664,10,5,10,10_1,10_3,10_0_0 +10388,2,62.0,5,0.0,2,211,2,0,78,1.0,0.0,0.0,269.1859530251124,0.0,53.079658261296686,4395.704177580944,0,71,1,7861,201710388,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3908.9447008664547,0.0,200.0,30.0,0.0,5822.0,0,4,1,56.0,1,3.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,322.26561128640907,0.07331376231595256,0.05535307648340932,5822.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +10389,1,30.0,3,221.0,7,111,2,0,55,3.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,26668.56,0,41,2,7863,201710389,,,287.0,,1.0,0.0,3.0,1.0,2.0,1.3,1003.6183141554017,1000.0,0.0,0.0,0.0,17504.0,0,1,3,70.0,4,3.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1594.1895599657205,0.05977786427035132,0.09107572897427563,13464.615384615385,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +10390,2,87.0,3,0.0,2,111,2,0,77,7.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,13643.2,0,50,1,7864,201710390,,,180.0,,0.0,1.0,6.0,0.0,1.0,1.0,2115.285661521183,1700.0,0.0,0.0,0.0,24232.0,0,5,1,108.0,6,4.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2710.1222519417247,0.19864271226264546,0.11184063436537325,24232.0,7,4,7,7_1,7_2,7_0_1 +10391,2,59.0,2,0.0,2,120,5,0,62,3.0,0.0,0.0,1053.863006093315,44.23304855108057,0.0,14349.62,0,71,2,7865,201710391,,,160.0,,1.0,1.0,3.0,0.0,1.0,1.0,1857.5004501834824,0.0,783.0,0.0,0.0,14668.0,0,1,1,55.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,1098.0960546443957,0.07652439957604422,0.0748633797821377,14668.0,3,2,3_0,3_0_0,3_0_0,3_0_1_0 +10392,2,45.0,2,0.0,3,111,2,0,48,8.0,0.0,0.0,659.5055849115254,0.0,0.0,35951.46031599412,0,42,2,7867,201710392,,,68.0,,1.0,0.0,3.0,0.0,1.0,1.0,2701.7442372206183,0.0,490.0,0.0,0.0,32578.0,0,1,1,90.0,5,4.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,659.5055849115254,0.01834433369645694,0.020243894189684,32578.0,9,5,9,9_0,9_2,9_0_1 +10393,1,45.0,3,31.0,7,111,2,0,65,3.0,0.0,0.0,378.2062640002829,0.0,0.0,13916.56,0,50,2,7868,201710393,,,,279.0,1.0,0.0,1.0,0.0,1.0,1.0,2670.802981568463,0.0,281.0,0.0,0.0,14732.0,0,4,3,20.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,378.2062640002829,0.02717670631249985,0.02567243171329642,14732.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10394,1,26.0,3,317.0,99,112,1,0,56,2.0,39.661400228472054,0.0,596.2468859506239,74.31152156581537,0.0,17507.619999999995,0,50,2,7869,201710394,,,661.0,,1.0,0.0,4.0,2.0,3.0,1.6,965.4244355759502,0.0,443.0,0.0,0.0,16857.0,0,4,3,67.0,6,1.0,2,4,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,710.2198077449113,0.040566325276931506,0.04213204056148255,10535.625,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +10395,2,74.0,4,0.0,8,112,4,68,78,2.0,0.0,0.0,133.24704674743063,46.0023704931238,0.0,32881.701750603264,71,70,1,787,201710395,,,205.0,,1.0,1.0,4.0,0.0,2.0,1.5,2309.2487925686237,0.0,99.0,0.0,0.0,17649.0,1,5,1,112.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,179.24941724055444,0.005451342470049192,0.010156349778489117,11766.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10396,1,53.0,3,256.0,1,300,5,0,85,1.0,0.0,326.16268509740837,686.4241802140366,185.7788039145384,0.0,11313.399999999998,0,50,1,7870,201710396,,,260.0,,0.0,0.0,2.0,0.0,1.0,1.0,2217.407982369894,0.0,510.0,0.0,0.0,8925.0,0,7,3,50.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1198.3656692259833,0.10592444969911641,0.13427066321859757,8925.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +10397,1,22.0,4,379.0,5,111,1,0,56,2.0,0.0,0.0,551.8312037014804,0.0,0.0,17701.54,0,50,2,7871,201710397,,,360.0,82.0,1.0,0.0,3.0,1.0,2.0,1.3,1096.2804334674586,0.0,410.0,0.0,0.0,15929.0,0,1,3,80.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,551.8312037014804,0.031174191833110584,0.034643179339662274,12253.076923076922,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10398,1,26.0,4,124.0,1,111,2,0,67,2.0,237.96840137083234,0.0,982.5287285416603,0.0,0.0,10228.04,0,50,2,7872,201710398,,,290.0,276.0,1.0,0.0,3.0,0.0,1.0,1.0,3397.120044681143,0.0,730.0,0.0,0.0,12790.0,0,1,3,98.0,7,5.0,1,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1220.4971299124927,0.11932854485438976,0.09542588975078128,12790.0,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +10399,2,75.0,2,0.0,1,400,2,0,75,7.0,2776.298015993044,0.0,740.261370819059,61.9262679715128,0.0,17976.74,0,60,1,7874,201710399,,,220.0,,0.0,1.0,3.0,0.0,1.0,1.0,2948.7114762320516,0.0,550.0,0.0,0.0,24444.0,0,5,5,103.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3578.485654783616,0.1990619909273659,0.14639525670036066,24444.0,7,4,7,7_1,7_0,7_1_0 +10400,1,41.0,3,217.0,99,111,2,85,63,3.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,30423.87841351649,43,43,2,7875,201710400,,,600.0,363.0,1.0,0.0,4.0,2.0,4.0,2.1,3414.573633034128,1200.0,0.0,0.0,0.0,31851.0,8,1,3,90.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1913.0274719588647,0.06287914531991291,0.06006177112049432,15167.142857142857,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10401,2,67.0,3,0.0,8,111,2,77,74,8.0,0.0,138.792631956344,2987.9640785787474,0.0,0.0,48248.87999999999,50,44,1,7876,201710401,,,280.0,,0.0,3.0,5.0,0.0,2.0,1.5,1488.2489548019528,0.0,2220.0,0.0,0.0,42474.0,5,5,1,120.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3126.7567105350913,0.06480475216285003,0.07361578166725741,28316.0,8,4,8,8_1,8_2,8_0_0 +10402,2,59.0,3,0.0,8,300,2,0,52,4.0,0.0,0.0,1201.9152802571268,116.7752481748527,0.0,17412.089638162543,0,50,1,7878,201710402,,,,,1.0,2.0,4.0,0.0,1.0,1.0,1556.1409877540534,0.0,893.0,0.0,0.0,18739.0,0,1,2,90.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1318.6905284319796,0.07573419134839338,0.07037144609808312,18739.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10403,1,52.0,4,95.0,4,111,2,0,52,2.0,0.0,0.0,423.967876014552,0.0,1167.752481748527,13714.856974448147,0,50,2,7879,201710403,,,,235.0,1.0,2.0,3.0,0.0,1.0,1.0,2153.9254794933413,0.0,315.0,660.0,0.0,10790.0,0,1,3,63.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1591.7203577630792,0.11605810842421317,0.1475181054460685,10790.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10404,1,71.0,4,213.0,5,111,2,0,75,7.0,899.5205571817462,0.0,430.6975248401798,61.9262679715128,0.0,12990.04,0,50,1,7880,201710404,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2014.845710834759,0.0,320.0,0.0,0.0,24592.0,0,5,1,82.0,9,7.0,1,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1392.1443499934387,0.10717013573425783,0.05660964337969416,24592.0,7,4,7,7_1,7_3,7_0_0 +10405,2,64.0,2,0.0,1,300,6,0,78,8.0,1397.6677440513552,0.0,874.8543473316153,0.0,0.0,25668.04,0,50,1,7881,201710405,,,350.0,,1.0,1.0,5.0,1.0,2.0,1.5,5350.688380722057,0.0,650.0,0.0,0.0,39798.0,0,5,1,120.0,0,0.0,2,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2272.5220913829703,0.0885350845402676,0.057101414427432794,26532.0,7,4,7,7_1,7_0,7_1_0 +10406,2,71.0,5,0.0,4,120,2,0,72,3.0,0.0,0.0,1259.790260157526,0.0,1231.448071662083,8857.390875301628,0,20,8,7883,201710406,,,,315.0,0.0,1.0,3.0,0.0,2.0,1.5,2877.3612142002194,0.0,936.0,696.0,0.0,23217.0,0,5,3,50.0,0,1.0,5,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,2491.238331819609,0.28126096803137557,0.10730233586680488,15478.0,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +10407,2,45.0,3,0.0,9,112,2,0,37,9.0,0.0,0.0,654.1218658510231,0.0,2155.0341254086457,23918.505846751304,0,50,1,7884,201710407,,,,,1.0,1.0,4.0,0.0,1.0,1.0,1785.2783186984382,0.0,486.0,1218.0,0.0,35420.0,0,1,3,90.0,8,0.0,1,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2809.1559912596686,0.11744696801958547,0.07930988117616229,35420.0,9,5,9,9_1,9_0,9_0_0 +10408,2,76.0,3,0.0,1,300,2,78,78,4.0,0.0,0.0,1057.7904070496288,0.0,1971.1697568852403,16176.5,71,71,1,7885,201710408,,,260.0,,0.0,1.0,4.0,0.0,2.0,1.5,1707.979735210798,1900.0,0.0,0.0,0.0,24242.0,5,5,1,100.0,0,1.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3028.9601639348693,0.1872444696896652,0.12494679333119665,16161.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +10409,1,32.0,3,462.0,99,211,6,0,68,2.0,0.0,0.0,538.3719060502248,70.77287768172891,0.0,12091.82,0,71,1,7886,201710409,,,600.0,43.0,1.0,0.0,4.0,3.0,4.0,2.1,1126.9967213630011,0.0,400.0,0.0,0.0,22144.0,0,4,3,74.0,3,3.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,609.1447837319537,0.05037660035726249,0.027508344641074496,10544.761904761905,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +10410,2,69.0,4,0.0,6,112,6,0,75,9.0,0.0,0.0,2526.3101691406796,0.0,0.0,29385.04,0,33,1,7887,201710410,,,251.0,,0.0,2.0,8.0,0.0,1.0,1.0,1866.8944143739977,0.0,1877.0,0.0,0.0,38183.0,0,5,5,200.0,4,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2526.3101691406796,0.0859726639521566,0.06616321842549511,38183.0,9,5,9,9_1,9_0,9_0_0 +10411,2,74.0,2,0.0,2,111,2,77,77,7.0,0.0,0.0,355.32545799314835,0.0,1082.8250285304525,24957.679999999997,50,41,1,7888,201710411,,,204.0,289.0,0.0,5.0,2.0,0.0,2.0,1.5,2122.5328015260748,0.0,264.0,612.0,0.0,39931.0,5,5,3,50.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1438.1504865236009,0.057623564631151654,0.03601588957260276,26620.666666666668,7,4,7,7_1,7_3,7_0_1 +10412,2,76.0,3,0.0,9,211,4,0,77,7.0,0.0,0.0,1720.0982398304682,0.0,0.0,25228.66,0,70,2,789,201710412,,,,372.0,0.0,3.0,3.0,0.0,1.0,1.0,1222.9441731472127,0.0,1278.0,0.0,0.0,25762.0,0,5,3,70.0,4,3.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1720.0982398304682,0.06818032506801662,0.06676881607912694,25762.0,7,4,7,7_0,7_1,7_0_0 +10413,2,41.0,1,0.0,9,112,2,43,43,9.0,0.0,0.0,1278.633276869284,138.0071114793714,0.0,50579.12,30,33,1,7891,201710413,,,440.0,,2.0,0.0,5.0,2.0,4.0,2.1,2376.580039381453,0.0,950.0,0.0,0.0,75860.0,1,1,1,140.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1416.6403883486553,0.028008403237317202,0.018674405330195824,36123.80952380952,9,5,9,9_1,9_0,9_0_0 +10414,2,39.0,3,0.0,9,111,4,54,37,9.0,0.0,0.0,1965.0574570833205,0.0,0.0,28643.509638162544,31,20,1,7892,201710414,,,372.0,,2.0,0.0,4.0,1.0,3.0,1.8,2073.847483696715,0.0,1460.0,0.0,0.0,64621.0,1,1,2,96.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1965.0574570833205,0.06860393443075913,0.030408960818980216,35900.555555555555,9,5,9,9_1,9_3,9_0_0 +10415,2,58.0,1,0.0,1,111,2,0,77,9.0,0.0,0.0,897.7351533387498,0.0,2300.11852465619,36621.56,43,50,1,7893,201710415,,,,,0.0,2.0,6.0,0.0,2.0,1.5,668.9203708540465,0.0,667.0,1300.0,0.0,49392.0,5,5,1,165.0,4,3.0,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3197.85367799494,0.08732161267829498,0.06474436503877025,32928.0,9,5,9,9_1,9_1,9_1_0 +10416,2,48.0,2,0.0,7,300,4,43,46,6.0,0.0,874.3935813249672,1426.6855510330956,0.0,0.0,30915.98,20,50,1,7895,201710416,,,675.0,,2.0,0.0,5.0,2.0,4.0,2.1,2776.1873605891146,0.0,1060.0,0.0,0.0,46036.0,1,1,2,110.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2301.079132358063,0.0744300886582946,0.049984341219003886,21921.90476190476,6,3,6,6_1,6_0,6_0_0 +10417,2,86.0,3,0.0,5,221,4,0,74,6.0,0.0,0.0,1725.4819588909704,84.9274532180747,0.0,9706.577038047044,0,70,1,7898,201710417,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2671.786992584897,0.0,1282.0,0.0,0.0,21740.0,0,5,1,101.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1810.4094121090452,0.1865136808797531,0.0832755019369386,21740.0,6,3,6,6_1,6_1,6_0_0 +10418,2,59.0,2,0.0,6,112,4,46,74,9.0,0.0,0.0,2018.894647688343,226.47320858153253,0.0,52589.100000000006,42,50,1,7899,201710418,,,480.0,,1.0,1.0,4.0,1.0,3.0,2.0,2576.7832100267615,0.0,1500.0,0.0,0.0,67967.0,1,5,1,98.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2245.3678562698756,0.04269644957357847,0.03303614778156864,33983.5,9,5,9,9_1,9_2,9_0_0 +10419,2,60.0,1,0.0,6,111,2,75,75,2.0,0.0,485.77421184720396,2930.0890986783484,0.0,0.0,31573.160315994115,33,33,1,79,201710419,,,343.0,,0.0,1.0,5.0,0.0,2.0,1.5,1657.0377486495654,0.0,2177.0,0.0,0.0,19696.0,7,7,1,170.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3415.863310525552,0.10818883115717648,0.1734292907456109,13130.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +10420,2,42.0,5,0.0,4,0,1,0,54,1.0,0.0,0.0,672.964882562781,552.0284459174856,0.0,34561.51202733072,0,41,2,7900,201710420,,,314.0,520.0,1.0,1.0,5.0,2.0,3.0,2.0,1139.9447074669524,0.0,500.0,0.0,0.0,20090.0,0,1,3,100.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1224.9933284802664,0.035443858113370745,0.06097527767447817,10045.0,1,1,1_0,1_0_0,1_0_0,1_0_1_0 +10421,2,54.0,3,0.0,6,111,2,52,47,9.0,0.0,0.0,821.0171567265928,0.0,1415.4575536345783,61618.12,50,50,1,7901,201710421,,,360.0,,3.0,0.0,5.0,2.0,4.0,2.5,3049.7197731197243,0.0,610.0,800.0,0.0,78043.0,1,1,1,160.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2236.474710361171,0.03629573103433164,0.028656954632204953,31217.2,8,4,8,8_1,8_2,8_0_0 +10422,1,69.0,3,270.0,1,111,4,0,77,4.0,0.0,0.0,1125.1972836449697,0.0,0.0,10658.48,0,70,2,7902,201710422,,,,245.0,0.0,0.0,1.0,0.0,1.0,1.0,3855.570809291012,0.0,836.0,0.0,0.0,17580.0,0,5,3,18.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1125.1972836449697,0.10556826898816433,0.06400439611177303,17580.0,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +10423,2,65.0,2,0.0,8,112,4,56,74,7.0,0.0,266.48185335618047,2838.56587464981,0.0,0.0,45394.616658454026,50,71,1,7904,201710423,,,501.0,,1.0,3.0,5.0,0.0,2.0,1.5,1521.9470236627553,0.0,2109.0,0.0,0.0,38550.0,1,5,1,120.0,10,3.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3105.047728005991,0.06840123249345086,0.08054598516228251,25700.0,7,4,7,7_1,7_1,7_0_0 +10424,2,56.0,3,0.0,1,111,2,74,34,10.0,0.0,0.0,1193.8397016663735,0.0,7461.230629596271,101561.21888471195,30,20,1,7908,201710424,,,1100.0,,5.0,0.0,7.0,4.0,6.0,3.5,2737.334976979133,0.0,887.0,4217.0,0.0,178095.0,5,1,1,210.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,8655.070331262645,0.08522022900382398,0.04859805346170664,50884.28571428572,10,5,10,10_1,10_4,10_1_0 +10425,2,42.0,5,0.0,9,111,6,0,52,5.0,0.0,0.0,1076.7438121004495,0.0,530.7965826129669,23823.96,0,50,2,7911,201710425,,,,430.0,1.0,1.0,3.0,1.0,2.0,1.5,1097.5835838164505,0.0,800.0,300.0,0.0,29059.0,0,1,3,80.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1607.5403947134164,0.06747578466020832,0.055319880061716384,19372.666666666668,5,3,5,5_0,5_3,5_0_0 +10426,1,42.0,5,614.0,3,111,1,0,85,2.0,0.0,0.0,1076.7438121004495,0.0,0.0,15777.02,0,50,2,7912,201710426,,,,,1.0,0.0,2.0,4.0,5.0,2.6,568.2559679675137,0.0,800.0,0.0,0.0,29468.0,0,4,3,60.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1076.7438121004495,0.06824760392649876,0.036539426228466454,11333.846153846154,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +10427,1,51.0,4,390.0,2,111,2,0,63,3.0,0.0,952.1174552205198,1049.8252167979383,0.0,0.0,10796.119999999999,0,50,1,7913,201710427,,,180.0,,1.0,0.0,4.0,0.0,1.0,1.0,1786.7584040549134,0.0,780.0,0.0,0.0,13700.0,0,1,3,80.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,2001.942672018458,0.18543168027202905,0.14612720233711374,13700.0,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +10428,2,73.0,3,0.0,5,111,6,0,78,7.0,1348.4876077680499,0.0,695.8456885699155,0.0,0.0,16486.732027330723,0,70,1,7916,201710428,,,210.0,,0.0,3.0,3.0,0.0,1.0,1.0,1849.3251944863157,0.0,517.0,0.0,0.0,22851.0,0,5,1,80.0,8,6.0,1,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2044.3332963379653,0.12399869743433636,0.08946362506402193,22851.0,6,3,6,6_1,6_2,6_0_0 +10429,2,65.0,3,0.0,1,300,2,71,71,10.0,2379.684013708323,0.0,942.1508355878933,0.0,0.0,21504.98,70,50,1,7917,201710429,,,500.0,,0.0,3.0,5.0,0.0,2.0,1.5,1382.0802104203299,0.0,700.0,0.0,0.0,72010.0,5,5,1,120.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3321.8348492962164,0.15446816734059815,0.04613018815853654,48006.666666666664,10,5,10,10_1,10_0,10_1_0 +10430,2,64.0,4,0.0,6,111,2,74,75,6.0,0.0,0.0,2977.499155449709,0.0,161.08285188979997,36517.92102868158,31,60,1,7918,201710430,,,29.0,,0.0,3.0,4.0,0.0,2.0,1.5,3014.490738386936,155.266900540438,2148.0,0.0,0.0,31342.0,6,5,2,94.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3138.5820073395093,0.08594634959844599,0.10013981262649191,20894.666666666668,5,3,5,5_1,5_3,5_0_0 +10431,2,56.0,3,0.0,6,111,2,0,45,4.0,0.0,0.0,1042.2019168404763,0.0,1942.1209394153525,33162.35999999999,0,42,1,7920,201710431,,,340.0,,1.0,0.0,4.0,2.0,3.0,2.0,1433.015119233471,1872.0,0.0,0.0,0.0,39517.0,0,1,2,90.0,7,5.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2984.322856255829,0.08999126890413799,0.07551997510579823,19758.5,5,3,5,5_1,5_2,5_0_0 +10432,2,54.0,3,0.0,4,211,1,0,52,7.0,0.0,0.0,328.4068626906371,0.0,0.0,32015.381026928342,0,50,2,7925,201710432,,,,,2.0,2.0,3.0,1.0,2.0,1.5,2753.5727011758854,0.0,244.0,0.0,0.0,35602.0,0,1,2,70.0,1,3.0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,328.4068626906371,0.010257783982468053,0.009224393648970201,23734.666666666668,6,3,6,6_0,6_1,6_0_1 +10433,2,62.0,3,0.0,5,111,1,0,75,7.0,0.0,0.0,403.7789295376686,88.46609710216114,0.0,16654.54,0,42,2,7926,201710433,,,,560.0,0.0,2.0,3.0,0.0,1.0,1.0,9005.38811654121,0.0,300.0,0.0,0.0,25447.0,0,5,3,65.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,492.24502663982975,0.029556206694380614,0.01934393156913702,25447.0,7,4,7,7_0,7_3,7_0_0 +10434,2,48.0,3,0.0,2,120,2,46,48,6.0,0.0,0.0,995.9880261929159,0.0,2317.811744076622,63062.58,43,50,1,7927,201710434,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.5,1985.4044235801782,0.0,740.0,1310.0,0.0,53073.0,1,1,2,90.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3313.7997702695375,0.05254779887327061,0.06243852373654283,21229.2,6,3,6,6_1,6_1,6_0_1 +10435,2,44.0,3,0.0,9,111,2,0,85,1.0,0.0,0.0,1130.581002705472,0.0,111.46728234872305,42744.49087530162,0,50,1,7928,201710435,,,,,0.0,0.0,4.0,2.0,3.0,1.8,1883.1419650605137,0.0,840.0,63.0,0.0,11790.0,0,8,2,125.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1242.048285054195,0.029057505648566944,0.10534760687482571,6550.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +10436,2,75.0,2,0.0,1,400,6,78,75,4.0,620.304299573303,0.0,814.287507900965,53.079658261296686,0.0,16858.6458467513,70,50,1,7929,201710436,,,,,0.0,0.0,2.0,0.0,2.0,1.5,2294.469346003231,0.0,605.0,0.0,0.0,23856.0,5,5,1,40.0,0,1.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1487.6714657355647,0.0882438292647474,0.06236047391581005,15904.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +10437,2,51.0,3,0.0,4,112,2,56,54,7.0,0.0,346.98157989085996,1407.974704962374,0.0,2623.7306921909326,78346.31999999999,50,31,1,793,201710437,,,,,2.0,1.0,5.0,1.0,3.0,2.0,2328.053980991336,2529.0,0.0,0.0,0.0,53870.0,1,1,1,115.0,10,2.0,4,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4378.686977044166,0.05588886596133892,0.08128247590577624,26935.0,7,4,7,7_1,7_1,7_0_1 +10438,2,57.0,2,0.0,8,111,2,63,62,8.0,0.0,0.0,702.0387912050431,0.0,1308.2342439117306,25373.16,71,71,1,7930,201710438,,,331.0,,2.0,7.0,5.0,0.0,2.0,1.5,1682.2718437456615,1261.0,0.0,0.0,0.0,40110.0,1,1,2,100.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2010.2730351167738,0.07922832769417659,0.05011899863168222,26740.0,7,4,7,7_1,7_2,7_0_0 +10439,2,42.0,3,0.0,99,111,1,56,62,3.0,0.0,0.0,1211.3367886130059,0.0,484.79421211984305,32948.7458467513,44,50,2,7931,201710439,,,,555.0,2.0,0.0,1.0,0.0,2.0,1.5,4366.029457710311,0.0,900.0,274.0,0.0,21328.0,1,1,3,28.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1696.1310007328489,0.051477862271959135,0.07952602216489352,14218.666666666666,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +10440,1,51.0,4,130.0,1,400,5,56,55,1.0,0.0,388.6193694777632,1480.522741638118,143.31507730550106,0.0,43776.609954156665,70,50,1,7932,201710440,,,,,2.0,3.0,5.0,0.0,2.0,1.5,1614.921378940987,0.0,1100.0,0.0,0.0,10326.0,4,1,2,100.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2012.4571884213824,0.04597106058529542,0.1948922320764461,6884.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +10442,2,72.0,3,0.0,2,300,2,0,74,8.0,0.0,0.0,635.2788491392653,0.0,1334.06874430059,12632.88,0,60,1,7937,201710442,,,,,0.0,0.0,5.0,0.0,1.0,1.0,2441.7261079600885,0.0,472.0,754.0,0.0,30154.0,0,5,1,98.0,0,0.0,1,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1969.3475934398552,0.15589062774599738,0.06530966350865076,30154.0,8,4,8,8_1,8_0,8_0_1 +10443,1,36.0,4,224.0,99,112,1,0,52,6.0,0.0,0.0,888.3136449828709,1850.7107513772112,0.0,29381.760000000002,0,43,1,7939,201710443,523.0,523.0,281.0,202.0,1.0,0.0,4.0,2.0,3.0,1.6,550.1261746404025,0.0,660.0,0.0,0.0,32342.0,0,1,4,80.0,4,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2739.024396360082,0.09322193076112806,0.0846893944827185,20213.75,5,3,5,5_1,5_0,5_0_0 +10444,2,68.0,1,0.0,1,221,2,75,75,9.0,1308.8262075395778,0.0,819.6712269614673,0.0,0.0,28361.079999999998,31,41,1,794,201710444,,,385.0,,0.0,4.0,7.0,0.0,2.0,1.5,1284.5969283194702,0.0,609.0,0.0,0.0,50019.0,5,5,1,180.0,1,2.0,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2128.497434501045,0.07504994289713386,0.042553778254284275,33346.0,9,5,9,9_1,9_1,9_1_0 +10445,2,54.0,1,0.0,6,112,4,46,65,8.0,0.0,0.0,1541.0895810687684,51.310336319253466,0.0,31305.2,50,50,1,7940,201710445,,,88.0,,2.0,2.0,5.0,0.0,2.0,1.5,2052.8377376623257,0.0,1145.0,0.0,0.0,45368.0,1,1,1,155.0,8,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1592.399917388022,0.05086694598303228,0.035099627874008596,30245.333333333332,8,4,8,8_1,8_1,8_0_0 +10446,1,44.0,4,160.0,2,111,4,0,47,1.0,0.0,0.0,1345.929765125562,0.0,0.0,20342.941750603255,0,71,2,7944,201710446,,,,350.0,1.0,1.0,2.0,2.0,3.0,1.8,1448.6200961720858,0.0,1000.0,0.0,0.0,16540.0,0,1,3,35.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1345.929765125562,0.06616200260641504,0.08137423005595901,9188.888888888889,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10447,2,56.0,4,0.0,1,120,4,0,77,2.0,0.0,0.0,1682.4122064069525,169.8549064361494,0.0,13856.596974448146,0,50,1,7945,201710447,,,450.0,,0.0,1.0,4.0,0.0,1.0,1.0,1903.0537140260915,0.0,1250.0,0.0,0.0,11660.0,0,6,1,96.0,0,1.0,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1852.2671128431018,0.13367402662130687,0.15885652768808764,11660.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +10448,1,35.0,4,330.0,99,111,1,67,68,1.0,0.0,0.0,403.7789295376686,0.0,636.9558991355602,16086.31677081409,71,43,2,7946,201710448,,,,,2.0,0.0,3.0,1.0,3.0,1.8,709.9030460000679,0.0,300.0,360.0,0.0,16980.0,4,1,3,64.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1040.7348286732288,0.06469690007357475,0.0612918038087885,9433.333333333334,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10449,0,44.0,3,0.0,99,111,6,0,54,7.0,0.0,0.0,874.8543473316153,0.0,1082.8250285304525,17832.64,0,71,2,795,201710449,,,567.0,,1.0,0.0,3.0,1.0,2.0,1.3,1361.752147095334,0.0,650.0,612.0,0.0,29960.0,0,1,5,60.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1957.679375862068,0.10978068170848893,0.06534310333317983,23046.153846153844,6,3,6,6_0,6_2,6_0_0 +10450,2,46.0,1,0.0,8,111,1,37,22,10.0,0.0,0.0,698.5375481001666,0.0,0.0,173552.42,12,12,2,7950,201710450,,,,,2.0,0.0,5.0,2.0,4.0,2.3,3684.948309774325,0.0,519.0,0.0,0.0,232038.0,1,1,2,115.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,698.5375481001666,0.004024936950462382,0.003010444617261684,100886.08695652174,10,5,10,10_0,10_4,10_0_0 +10451,2,65.0,2,0.0,2,300,2,72,72,6.0,0.0,0.0,4989.361639320458,0.0,0.0,50947.876322376294,50,44,1,7951,201710451,,,343.0,,0.0,2.0,6.0,0.0,2.0,1.5,1436.7494156995317,0.0,3707.0,0.0,0.0,33788.0,5,5,1,214.0,0,1.0,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4989.361639320458,0.09793070878460015,0.14766667572275538,22525.333333333332,6,3,6,6_1,6_1,6_0_1 +10452,0,84.0,4,0.0,4,111,1,77,75,9.0,0.0,0.0,309.56384597887927,0.0,0.0,35352.513696501075,71,70,2,7954,201710452,,,,,1.0,0.0,5.0,1.0,3.0,2.0,3116.4792432819213,0.0,230.0,0.0,0.0,67085.0,5,5,5,100.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,309.56384597887927,0.008756487548140532,0.004614501691568596,33542.5,9,5,9,9_0,9_4,9_0_1 +10453,1,40.0,4,462.0,6,111,4,85,67,2.0,0.0,0.0,2166.946921852155,132.69914565324171,0.0,21578.161750603256,70,71,1,7956,201710453,,,,338.0,2.0,0.0,4.0,4.0,6.0,3.3,1011.4027296049486,0.0,1610.0,0.0,0.0,43564.0,6,1,3,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2299.646067505397,0.10657284406727122,0.052787762085790946,13201.212121212122,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +10454,2,52.0,3,0.0,1,112,2,21,54,3.0,0.0,0.0,807.5578590753372,0.0,2724.7557907465634,35531.58,50,30,1,7957,201710454,,,576.0,,3.0,0.0,6.0,2.0,4.0,2.5,1347.5430593924882,0.0,600.0,1540.0,0.0,36995.0,1,1,2,95.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3532.3136498219005,0.0994133570705806,0.09548083929779431,14798.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +10455,2,33.0,4,0.0,4,120,2,46,47,6.0,1110.5192063972174,0.0,740.261370819059,159.23897478389006,0.0,24826.280000000002,31,50,1,7958,201710455,,,420.0,,2.0,0.0,4.0,0.0,2.0,1.5,2800.8203924693044,0.0,550.0,0.0,0.0,31467.0,1,1,2,72.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2010.0195520001666,0.08096338041785424,0.06387706333619877,20978.0,5,3,5,5_1,5_1,5_0_1 +10456,2,76.0,4,0.0,1,221,5,77,78,9.0,0.0,693.9631597817199,874.8543473316153,283.09151072691566,0.0,20743.890875301633,71,71,1,7959,201710456,,,300.0,,0.0,3.0,3.0,0.0,2.0,1.5,2168.07110329647,0.0,650.0,0.0,0.0,47195.0,5,5,1,80.0,1,1.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1851.9090178402507,0.08927491129666495,0.039239517275987935,31463.333333333332,8,4,8,8_1,8_1,8_1_0 +10457,2,39.0,2,0.0,1,111,2,0,45,6.0,0.0,0.0,38.41449372969704,0.0,71.58458590793767,16040.0,0,20,2,796,201710457,,,,485.0,1.0,0.0,3.0,0.0,1.0,1.0,9352.682612856159,69.0,0.0,0.0,0.0,24067.0,0,1,3,65.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,109.99907963763471,0.006857797982396179,0.004570535573093228,24067.0,7,4,7,7_0,7_3,7_1_0 +10458,2,55.0,3,0.0,1,111,5,21,52,7.0,0.0,1040.94473967258,1615.1157181506744,638.9198464912282,0.0,45807.590000000004,50,50,1,7960,201710458,,,350.0,,2.0,2.0,4.0,0.0,2.0,1.5,2340.4972814458674,0.0,1200.0,0.0,0.0,35558.0,1,1,2,100.0,5,4.0,3,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3294.9803043144825,0.07193088098095714,0.0926649503435087,23705.333333333332,6,3,6,6_1,6_2,6_1_0 +10459,2,57.0,2,0.0,8,112,2,68,64,8.0,0.0,0.0,1258.4443303924004,0.0,1615.3909330854626,45844.86,50,50,1,7961,201710459,,,110.0,,2.0,3.0,6.0,0.0,2.0,1.5,1821.9508918546105,0.0,935.0,913.0,0.0,45425.0,1,1,1,130.0,7,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2873.835263477863,0.06268609531096535,0.06326549837045378,30283.333333333332,8,4,8,8_1,8_0,8_0_0 +10460,2,51.0,3,0.0,1,111,2,56,68,8.0,0.0,0.0,1174.9966849546156,0.0,2300.11852465619,40976.08,50,71,1,7962,201710460,,,650.0,,4.0,0.0,4.0,2.0,5.0,2.8,3344.285881794377,0.0,873.0,1300.0,0.0,77894.0,1,1,1,78.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3475.1152096108053,0.08480838600497669,0.044613387547318216,27819.285714285717,8,4,8,8_1,8_4,8_1_0 +10461,2,32.0,3,0.0,1,111,2,54,37,9.0,0.0,0.0,328.4068626906371,0.0,900.5848685000004,39089.020000000004,31,20,2,7963,201710461,,,,779.0,2.0,0.0,4.0,1.0,3.0,1.8,2572.8349658257584,0.0,244.0,509.0,0.0,53401.0,1,1,3,82.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1228.9917311906374,0.03144084275304516,0.023014395445602843,29667.222222222223,8,4,8,8_0,8_3,8_1_0 +10462,2,58.0,3,0.0,1,400,5,0,31,8.0,0.0,1915.338320997547,524.9126083989692,233.5504963497054,0.0,28366.150875301628,0,10,1,7964,201710462,,,142.0,,1.0,1.0,6.0,0.0,1.0,1.0,2386.4972797260725,0.0,390.0,0.0,0.0,27496.0,0,1,2,114.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2673.801425746222,0.09426028358589524,0.09724328723255099,27496.0,8,4,8,8_1,8_0,8_1_0 +10463,2,56.0,3,0.0,1,300,2,62,13,5.0,1586.456009138882,0.0,2153.487624200899,176.9321942043223,0.0,21199.4,50,71,1,7966,201710463,,,,,2.0,2.0,4.0,0.0,2.0,1.5,1307.4289107153297,0.0,1600.0,0.0,0.0,27634.0,1,1,2,120.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3916.8758275441032,0.18476352290838904,0.1417411821503982,18422.666666666668,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +10464,2,29.0,1,0.0,99,221,1,0,38,8.0,0.0,0.0,228.80806007134552,0.0,0.0,20164.880000000005,0,12,2,7967,201710464,,,,450.0,1.0,0.0,2.0,0.0,1.0,1.0,6367.422451321009,0.0,170.0,0.0,0.0,30087.0,0,1,3,41.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,228.80806007134552,0.011346859493899566,0.007604881180288681,30087.0,8,4,8,8_0,8_1,8_0_0 +10465,2,35.0,1,0.0,1,300,2,0,64,6.0,1134.3160465343008,0.0,500.68587262670906,0.0,0.0,9120.2,0,50,1,7969,201710465,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2404.969391741983,0.0,372.0,0.0,0.0,23884.0,0,1,2,90.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1635.00191916101,0.17927259480724214,0.06845595039193644,23884.0,6,3,6,6_1,6_0,6_1_0 +10466,1,35.0,5,272.0,5,111,2,0,52,2.0,0.0,0.0,1345.929765125562,0.0,0.0,15046.539999999999,0,60,8,797,201710466,,,240.0,,1.0,0.0,2.0,0.0,1.0,1.0,3259.4005928377146,0.0,1000.0,0.0,0.0,12379.0,0,4,3,34.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1345.929765125562,0.08945111401860907,0.10872685718762114,12379.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10467,2,67.0,2,0.0,6,112,2,0,78,4.0,0.0,0.0,1372.8483604280732,247.7050718860512,0.0,20397.06,71,50,1,7970,201710467,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1989.5374827377875,0.0,1020.0,0.0,0.0,27217.0,8,5,1,100.0,9,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1620.5534323141244,0.07945034393751474,0.059541956582802084,18144.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10468,1,83.0,3,65.0,4,111,1,86,78,2.0,0.0,0.0,963.6857118299024,0.0,2027.6429455815335,18235.600000000002,71,71,2,7971,201710468,999999.0,400.0,,248.0,1.0,6.0,5.0,2.0,4.0,2.5,3104.9972047042197,0.0,716.0,1146.0,0.0,29070.0,5,5,3,145.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2991.328657411436,0.16403785219084843,0.10290088260789253,11628.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +10469,2,42.0,1,0.0,4,111,2,37,37,10.0,0.0,0.0,3749.7603256398156,0.0,0.0,101256.94,20,20,1,7972,201710469,,,460.0,,2.0,0.0,7.0,3.0,5.0,2.4,2068.5620355253905,0.0,2786.0,0.0,0.0,134837.0,1,1,2,200.0,8,7.0,4,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3749.7603256398156,0.037032131581695195,0.027809579904920872,56182.083333333336,10,5,10,10_1,10_3,10_0_1 +10470,2,31.0,5,0.0,1,300,5,0,48,1.0,0.0,610.6875806079136,403.7789295376686,61.9262679715128,0.0,19587.42,0,43,1,7975,201710470,,,130.0,,1.0,3.0,5.0,0.0,1.0,1.0,2448.438264775068,0.0,300.0,0.0,0.0,6420.0,0,4,1,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1076.3927781170948,0.05495326991084558,0.16766242649798985,6420.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +10471,2,24.0,3,0.0,9,112,2,54,46,4.0,0.0,0.0,80.7261100116822,0.0,150.43137618334728,34358.58,41,60,1,7976,201710471,,,,,2.0,0.0,5.0,1.0,3.0,1.8,603.5576883278663,145.0,0.0,0.0,0.0,30847.0,1,1,3,89.0,8,0.0,4,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,231.1574861950295,0.006727795100817015,0.007493678030117337,17137.222222222223,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10472,2,57.0,3,0.0,9,111,4,0,54,6.0,0.0,0.0,441.4649629611843,0.0,0.0,19325.44,0,50,2,7977,201710472,,,,,1.0,2.0,3.0,0.0,1.0,1.0,3190.4250460162207,0.0,328.0,0.0,0.0,21084.0,0,1,2,68.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,441.4649629611843,0.022843721175879274,0.020938387543216863,21084.0,5,3,5,5_0,5_2,5_0_0 +10473,2,71.0,5,0.0,6,400,2,77,72,4.0,2030.663691697769,999.3069500856767,1146.7321598869787,61.9262679715128,0.0,24727.980000000003,70,50,1,7979,201710473,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1314.9880798047825,0.0,852.0,0.0,0.0,27100.0,5,5,1,153.0,0,1.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4238.629069641937,0.17141024336164687,0.1564069767395549,18066.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10474,2,64.0,2,0.0,5,222,2,77,78,7.0,0.0,0.0,2619.1793229343434,0.0,0.0,41702.35999999999,50,50,1,798,201710474,,,414.0,,0.0,3.0,4.0,0.0,2.0,1.5,1893.2956169913625,0.0,1946.0,0.0,0.0,35519.0,5,5,1,110.0,1,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2619.1793229343434,0.0628065011892455,0.07374023263420545,23679.333333333332,6,3,6,6_1,6_0,6_0_0 +10475,2,38.0,3,0.0,99,111,2,0,42,7.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,32293.100000000002,0,33,2,7981,201710475,,,,200.0,1.0,0.0,3.0,0.0,1.0,1.0,5130.169017047735,1200.0,0.0,0.0,0.0,25966.0,0,1,3,53.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1913.0274719588647,0.059239511597179106,0.07367432303623449,25966.0,7,4,7,7_0,7_4,7_0_0 +10476,1,25.0,4,167.0,4,111,4,0,52,2.0,0.0,0.0,1682.4122064069525,0.0,0.0,6456.790875301628,0,60,2,7982,201710476,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5057.360033714215,0.0,1250.0,0.0,0.0,13114.0,0,1,3,35.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1682.4122064069525,0.2605647664449654,0.12829130748871073,13114.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10477,2,73.0,4,0.0,1,221,2,0,75,3.0,0.0,0.0,1480.522741638118,141.54575536345783,0.0,18159.88,0,70,1,7983,201710477,,,220.0,,0.0,1.0,4.0,0.0,1.0,1.0,2122.758893452555,0.0,1100.0,0.0,0.0,14527.0,0,5,1,92.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1622.068497001576,0.08932154270851878,0.11165887636825056,14527.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +10478,2,56.0,2,0.0,8,112,2,46,47,9.0,1903.7472109666587,0.0,969.0694308904046,134.46846759528495,0.0,30970.059999999994,60,31,1,7984,201710478,,,430.0,,2.0,2.0,5.0,0.0,2.0,1.5,2480.5902048217877,0.0,720.0,0.0,0.0,49515.0,1,1,1,120.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3007.2851094523485,0.09710297976343439,0.06073483004043923,33010.0,9,5,9,9_1,9_0,9_0_0 +10479,1,55.0,3,317.0,1,211,1,0,68,2.0,0.0,0.0,502.04526168948587,0.0,2822.0684975589406,16339.33,0,30,1,7985,201710479,,,,,1.0,0.0,4.0,1.0,2.0,1.5,255.04290880150148,0.0,373.01,1595.0,0.0,18946.0,0,1,3,79.0,4,3.0,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,3324.1137592484265,0.2034424764814975,0.17545200882763784,12630.666666666666,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +10480,2,46.0,2,0.0,4,111,2,43,37,10.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,226561.4,10,41,1,7986,201710480,,,1200.0,,2.0,0.0,8.0,1.0,3.0,1.8,2494.0051279705917,1200.0,0.0,0.0,0.0,105799.0,1,1,1,154.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1913.0274719588647,0.008443748458293711,0.01808171600826912,58777.22222222222,10,5,10,10_1,10_4,10_0_1 +10481,2,75.0,2,0.0,4,120,2,0,75,7.0,0.0,0.0,457.61612014269105,0.0,1810.016346710217,27885.22,0,60,1,7988,201710481,,,280.0,,0.0,0.0,4.0,0.0,1.0,1.0,2552.9253366043367,0.0,340.0,1023.0,0.0,23732.0,0,5,1,100.0,0,1.0,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2267.6324668529082,0.0813202286678358,0.09555167987750329,23732.0,6,3,6,6_1,6_1,6_0_1 +10482,2,55.0,3,0.0,9,111,6,48,53,9.0,0.0,0.0,2220.7841124571773,286.6301546110021,0.0,42748.585846751295,41,50,1,799,201710482,,,300.0,,2.0,2.0,6.0,0.0,2.0,1.5,1760.3315205718495,0.0,1650.0,0.0,0.0,56479.0,1,1,2,148.0,6,4.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2507.4142670681795,0.05865490559282985,0.04439551456414206,37652.666666666664,9,5,9,9_1,9_2,9_0_0 +10483,1,40.0,3,437.0,8,111,4,0,38,4.0,0.0,0.0,1507.4413369406293,0.0,0.0,30008.220513464174,0,20,1,7990,201710483,,,300.0,137.0,1.0,0.0,3.0,2.0,3.0,1.6,559.6819432831638,0.0,1120.0,0.0,0.0,27854.0,0,4,3,70.0,7,6.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1507.4413369406293,0.05023427951231784,0.054119384538688496,17408.75,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +10484,1,54.0,4,240.0,4,111,1,0,78,2.0,0.0,0.0,546.4474846409781,0.0,973.1270681237726,5749.147849749776,0,71,2,7991,201710484,550.0,550.0,,73.0,0.0,0.0,2.0,0.0,1.0,1.0,3411.0429628117895,0.0,406.0,550.0,0.0,12601.0,0,7,3,51.0,8,6.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1519.5745527647507,0.26431300646249484,0.12059158422067699,12601.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10485,2,47.0,2,0.0,99,112,4,55,47,6.0,0.0,0.0,969.0694308904046,0.0,0.0,57589.58873154965,50,50,1,7992,201710485,,,912.0,,5.0,0.0,6.0,3.0,7.0,3.8,4206.483578596386,0.0,720.0,0.0,0.0,85796.0,1,1,1,94.0,10,4.0,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,969.0694308904046,0.016827163593886085,0.011295042086931845,22577.894736842107,6,3,6,6_1,6_2,6_0_0 +10486,2,76.0,1,0.0,5,111,4,0,75,9.0,0.0,0.0,1681.2903472951812,0.0,692.65626312614,21606.273433203754,0,44,1,7993,201710486,,,99.0,,0.0,1.0,4.0,0.0,1.0,1.0,1869.161623977129,667.6476723238835,973.0,0.0,0.0,37667.0,0,5,1,125.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2373.946610421321,0.10987302450653634,0.06302457351053498,37667.0,9,5,9,9_1,9_3,9_0_0 +10487,2,34.0,2,0.0,9,400,5,55,64,5.0,0.0,333.10231669522557,1270.5576982785306,88.46609710216114,0.0,32040.56665845403,42,50,1,7994,201710487,,,237.0,,2.0,0.0,5.0,1.0,3.0,1.8,3288.23146931361,0.0,944.0,0.0,0.0,32849.0,4,1,2,138.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1692.1261120759173,0.05281199081507015,0.05151225644847384,18249.444444444445,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10488,2,73.0,2,0.0,5,112,2,77,78,6.0,0.0,0.0,2153.487624200899,176.9321942043223,0.0,46703.659999999996,70,50,1,7995,201710488,,,400.0,,0.0,3.0,6.0,0.0,2.0,1.5,1663.4331842853408,0.0,1600.0,0.0,0.0,34064.0,5,5,1,160.0,9,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2330.419818405221,0.04989801266978265,0.06841298198700156,22709.333333333332,6,3,6,6_1,6_1,6_0_0 +10489,2,60.0,2,0.0,1,300,5,0,56,1.0,0.0,763.359475759892,1301.5140828764183,106.15931652259337,0.0,15786.88,0,70,1,7996,201710489,,,141.0,,1.0,3.0,5.0,0.0,1.0,1.0,2145.7390841453707,0.0,967.0,0.0,0.0,8144.0,0,1,1,100.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2171.032875158904,0.13752133893200583,0.2665806575588045,8144.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +10490,2,52.0,2,0.0,8,112,2,46,46,9.0,0.0,0.0,1345.929765125562,0.0,1574.6965284184685,40962.0,20,50,1,7997,201710490,,,530.0,,2.0,1.0,6.0,1.0,3.0,1.8,1833.554341426663,0.0,1000.0,890.0,0.0,70924.0,1,1,2,120.0,9,0.0,4,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2920.6262935440304,0.07130087138186686,0.04117966123659171,39402.22222222222,9,5,9,9_1,9_0,9_0_0 +10491,1,75.0,5,157.0,4,111,2,0,77,2.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,10427.839999999998,0,71,2,7998,201710491,,,150.0,66.0,0.0,5.0,2.0,0.0,1.0,1.0,2904.7467219614396,900.0,0.0,0.0,0.0,11694.0,0,5,3,50.0,8,6.0,1,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1434.7706039691484,0.1375903930218673,0.12269288557971168,11694.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10492,2,67.0,3,0.0,1,400,5,72,69,4.0,0.0,69.396315978172,2099.6504335958766,0.0,1061.5931652259337,22945.360315994116,50,31,1,7999,201710492,,,550.0,,2.0,3.0,5.0,1.0,3.0,2.0,1673.4600135847804,0.0,1560.0,600.0,0.0,35014.0,5,5,1,150.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3230.6399147999823,0.14079708796501475,0.092267090729422,17507.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10493,1,46.0,2,22.0,4,111,2,55,64,3.0,0.0,298.4041587061396,484.5347154452023,0.0,1380.0711147937138,38445.079999999994,41,31,1,8,201710493,,,385.0,,2.0,0.0,6.0,4.0,6.0,3.3,2409.3564236983652,0.0,360.0,780.0,0.0,50899.0,1,1,2,85.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,2163.0099889450557,0.05626233549117484,0.04249611954940285,15423.939393939394,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +10494,2,38.0,3,0.0,9,400,4,56,64,4.0,0.0,277.585263912688,2288.080600713455,109.69796040667983,0.0,65773.6,50,71,1,80,201710494,,,380.0,,2.0,0.0,4.0,2.0,4.0,2.1,2948.8438237666796,0.0,1700.0,0.0,0.0,37560.0,1,1,2,85.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2675.3638250328227,0.0406753442875686,0.07122906882409007,17885.714285714286,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10495,2,50.0,3,0.0,1,111,5,56,67,3.0,85.89072833477908,0.0,1718.7523100653425,0.0,0.0,30752.219999999998,42,50,1,800,201710495,,,126.0,,2.0,0.0,5.0,2.0,4.0,2.5,1459.588036763787,0.0,1277.0,0.0,0.0,36905.0,1,1,1,90.0,7,5.0,4,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1804.6430384001217,0.05868334183353663,0.04889968942961988,14762.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +10496,1,36.0,4,409.0,99,221,5,0,22,1.0,0.0,811.9368969446124,834.4764543778484,185.7788039145384,0.0,21147.646811689006,0,60,1,8001,201710496,,,350.0,,1.0,0.0,2.0,2.0,3.0,1.8,385.38457645892805,0.0,620.0,0.0,0.0,15759.0,0,1,3,77.0,1,3.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1832.1921552369993,0.0866381102139594,0.11626322452167011,8755.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +10497,2,82.0,3,0.0,9,111,4,78,78,5.0,0.0,0.0,1117.1217050542164,0.0,0.0,31966.288165743892,70,71,2,8003,201710497,,,276.0,,0.0,2.0,3.0,0.0,2.0,1.5,3468.505223709695,0.0,830.0,0.0,0.0,29598.0,5,5,3,56.0,4,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1117.1217050542164,0.03494686962909132,0.03774314835645031,19732.0,5,3,5,5_0,5_2,5_0_0 +10498,2,69.0,3,0.0,4,111,2,77,78,4.0,0.0,0.0,805.5909047372699,0.0,1501.2013885331278,18813.440000000002,50,50,1,8004,201710498,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1313.0216429104469,1447.0,0.0,0.0,0.0,26544.0,5,5,1,120.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2306.7922932703977,0.12261406171707022,0.08690447156684741,17696.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +10499,2,25.0,2,0.0,1,111,4,0,63,7.0,0.0,0.0,2288.080600713455,0.0,0.0,23527.186296616575,0,31,1,8007,201710499,,,,,1.0,0.0,4.0,0.0,1.0,1.0,3329.3918854112007,0.0,1700.0,0.0,0.0,25216.0,0,1,2,80.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2288.080600713455,0.09725262391629474,0.09073923702067954,25216.0,7,4,7,7_1,7_2,7_1_0 +10500,2,32.0,1,0.0,4,111,2,22,38,8.0,0.0,0.0,562.5986418224849,0.0,405.174724727898,72818.18,30,20,1,8008,201710500,,,,,2.0,0.0,6.0,2.0,4.0,2.1,3515.963885858901,0.0,418.0,229.0,0.0,62117.0,1,1,2,125.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,967.7733665503829,0.013290271283220523,0.015579847168253181,29579.52380952381,8,4,8,8_1,8_3,8_0_1 +10501,2,63.0,2,0.0,6,111,4,0,75,7.0,0.0,180.43042154324718,1843.9237782220198,201.70270139292742,0.0,26668.699999999997,0,41,1,8009,201710501,,,360.0,,0.0,2.0,5.0,0.0,1.0,1.0,2246.371061463636,0.0,1370.0,0.0,0.0,27877.0,0,5,1,110.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2226.0569011581943,0.08347076914728481,0.07985281418941041,27877.0,8,4,8,8_1,8_2,8_0_0 +10502,2,91.0,3,0.0,1,111,2,0,72,8.0,3601.2551407452625,0.0,710.6509159862967,0.0,0.0,18130.760000000002,0,71,1,8011,201710502,,,512.0,,0.0,2.0,3.0,0.0,1.0,1.0,3312.7297335144813,0.0,528.0,0.0,0.0,30598.0,0,5,1,80.0,10,8.0,1,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4311.906056731559,0.23782268678927737,0.1409211731724805,30598.0,8,4,8,8_1,8_4,8_1_0 +10503,0,37.0,1,0.0,6,221,4,21,64,6.0,0.0,0.0,1658.1854706346924,106.15931652259337,0.0,46829.74,43,31,1,8013,201710503,,,170.0,,2.0,0.0,5.0,0.0,2.0,1.5,1334.2400111250406,0.0,1232.0,0.0,0.0,32217.0,1,1,5,90.0,1,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1764.3447871572857,0.03767573313790095,0.05476440348751546,21478.0,6,3,6,6_1,6_1,6_0_0 +10504,2,41.0,2,0.0,99,111,1,35,37,9.0,0.0,0.0,1954.290018962316,0.0,0.0,52810.30616274542,60,31,2,8014,201710504,,,,,2.0,2.0,4.0,3.0,5.0,2.8,800.6501480834926,0.0,1452.0,0.0,0.0,102170.0,1,1,3,82.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1954.290018962316,0.03700584527837775,0.019127826357661897,36489.28571428572,9,5,9,9_0,9_4,9_0_0 +10505,2,51.0,2,0.0,8,111,2,43,65,5.0,0.0,777.2387389555264,1839.8859889266432,0.0,0.0,46669.119999999995,44,60,1,8017,201710505,,,648.0,,2.0,0.0,5.0,3.0,5.0,3.0,1335.6609636665921,0.0,1367.0,0.0,0.0,60145.0,1,1,1,95.0,4,4.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2617.1247278821697,0.056078296052768296,0.04351358762793532,20048.333333333332,5,3,5,5_1,5_2,5_0_0 +10506,1,34.0,4,379.0,99,111,1,0,52,3.0,0.0,0.0,775.2555447123236,0.0,764.3470789626723,13419.08,0,43,2,8018,201710506,616.0,616.0,,,1.0,0.0,5.0,1.0,2.0,1.3,990.1713398842587,0.0,576.0,432.0,616.0,19798.0,0,1,3,72.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1539.6026236749958,0.11473235301339554,0.07776556337382542,15229.23076923077,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10507,2,71.0,3,0.0,6,211,4,0,77,4.0,237.96840137083234,0.0,501.0586138656136,0.0,933.7119901035348,19638.747533755657,0,50,1,802,201710507,,,140.0,,0.0,1.0,6.0,0.0,1.0,1.0,1024.7007103499566,900.0,0.0,0.0,0.0,16500.0,0,5,5,150.0,1,3.0,1,9,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1672.7390053399808,0.08517544219481551,0.10137812153575641,16500.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10508,2,69.0,2,0.0,9,111,2,0,75,6.0,0.0,0.0,1130.581002705472,318.4779495677801,0.0,24309.04,0,31,2,8020,201710508,,,480.0,701.0,0.0,3.0,3.0,0.0,1.0,1.0,2804.95901564308,0.0,840.0,0.0,0.0,21312.0,0,5,3,85.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1449.058952273252,0.05960987979258959,0.06799263101882752,21312.0,6,3,6,6_0,6_3,6_0_0 +10509,2,68.0,2,0.0,6,112,4,77,74,9.0,0.0,0.0,2529.284967820038,56.61830214538313,788.0741918067863,43751.82313233489,31,30,1,8024,201710509,,,337.0,,0.0,3.0,5.0,0.0,2.0,1.5,1771.1346837214296,759.6205041208269,1565.0,0.0,0.0,52393.0,5,5,1,101.0,7,0.0,3,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3373.977461772208,0.07711627128238827,0.06439748557578699,34928.666666666664,9,5,9,9_1,9_0,9_0_0 +10510,1,38.0,2,408.0,5,111,2,0,85,1.0,0.0,0.0,885.6217854526197,0.0,2123.1863304518674,21988.780315994118,0,71,2,8025,201710510,,,456.0,192.0,0.0,0.0,4.0,2.0,3.0,1.6,604.9736043144636,0.0,658.0,1200.0,0.0,12778.0,0,7,3,86.0,6,5.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,3008.8081159044873,0.13683378853514452,0.23546784441262225,7986.25,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10511,2,67.0,2,0.0,1,111,2,0,77,6.0,0.0,0.0,409.16264859817085,0.0,1392.4563683880165,16058.619999999999,0,50,1,8026,201710511,,,,,0.0,2.0,3.0,0.0,1.0,1.0,1974.931744108395,0.0,304.0,787.0,0.0,20670.0,0,5,2,54.0,7,5.0,1,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1801.6190169861873,0.11219015189264005,0.08716105549038158,20670.0,5,3,5,5_1,5_2,5_1_0 +10512,2,54.0,3,0.0,1,111,2,0,67,2.0,0.0,0.0,528.8952035248144,0.0,985.5848784426202,11471.02,0,70,2,8028,201710512,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2724.9251806386296,950.0,0.0,0.0,0.0,12279.0,0,1,1,50.0,6,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1514.4800819674347,0.13202662727180622,0.12333904079871608,12279.0,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +10513,2,25.0,2,0.0,2,111,2,52,63,4.0,0.0,0.0,259.76444466923346,0.0,1431.3814511129674,36794.84,50,31,2,8029,201710513,,,,390.0,2.0,0.0,3.0,1.0,3.0,1.8,3564.279119306255,0.0,193.0,809.0,0.0,33492.0,4,1,3,69.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1691.1458957822008,0.045961496116906635,0.050494025312976254,18606.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10514,2,80.0,3,0.0,5,111,2,0,75,8.0,0.0,0.0,388.0420598492586,0.0,723.1080634468486,32993.3,0,41,2,803,201710514,,,,,0.0,0.0,3.0,1.0,2.0,1.5,4133.185906980633,697.0,0.0,0.0,0.0,43040.0,0,5,1,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1111.1501232961073,0.03367805352287001,0.025816685020820337,28693.333333333332,8,4,8,8_0,8_3,8_0_0 +10515,2,47.0,1,0.0,7,111,2,62,38,8.0,2213.1061327487405,0.0,1329.0721107975564,0.0,522.8787144579795,51635.61634574719,50,50,1,8032,201710515,,,338.0,,2.0,0.0,6.0,2.0,4.0,2.5,1964.0983122178138,504.0,779.0,0.0,0.0,75182.0,1,1,1,165.0,6,5.0,4,2,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4065.0569580042766,0.078725833943475,0.05406955066377958,30072.8,8,4,8,8_1,8_2,8_0_0 +10516,2,68.0,3,0.0,1,111,2,21,78,8.0,0.0,0.0,605.6683943065029,0.0,1680.8558449410618,44146.49999999999,71,71,2,8033,201710516,,,,,1.0,3.0,3.0,0.0,2.0,1.5,3851.3759876040913,0.0,450.0,950.0,0.0,45890.0,1,5,1,64.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2286.5242392475648,0.051794009474082095,0.04982619828388679,30593.333333333332,8,4,8,8_0,8_4,8_1_0 +10517,2,46.0,2,0.0,1,120,3,13,31,6.0,0.0,0.0,3598.6928407895352,0.0,2041.00002097594,22889.589413696147,71,10,5,8034,201710517,,,672.0,,2.0,0.0,5.0,2.0,4.0,2.1,2019.5870191963647,1967.3090185707704,1860.0,0.0,0.0,46080.0,1,1,1,100.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,5639.692861765476,0.24638680754976433,0.12238916800706327,21942.85714285714,6,3,6,6_1,6_0,6_1_0 +10518,1,66.0,4,295.0,9,111,1,0,77,2.0,0.0,0.0,807.5578590753372,0.0,0.0,13433.36,0,71,2,8036,201710518,,,,33.0,0.0,0.0,2.0,0.0,1.0,1.0,6467.309350041569,0.0,600.0,0.0,0.0,13150.0,0,5,3,55.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,807.5578590753372,0.06011585032153811,0.06141124403614732,13150.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10519,2,41.0,3,0.0,6,111,2,46,38,10.0,0.0,0.0,1615.1157181506744,0.0,2317.811744076622,46950.92,20,20,1,8037,201710519,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2201.134116436121,0.0,1200.0,1310.0,0.0,91819.0,1,1,1,120.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3932.927462227296,0.0837667816142324,0.042833481765509274,43723.33333333333,10,5,10,10_1,10_3,10_0_0 +10520,2,64.0,5,0.0,5,112,1,0,78,2.0,0.0,0.0,1615.1157181506744,0.0,0.0,11025.267849749778,0,71,2,8038,201710520,,,,403.0,0.0,1.0,3.0,0.0,1.0,1.0,1473.8606455123518,0.0,1200.0,0.0,0.0,10880.0,0,5,3,58.0,10,5.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1615.1157181506744,0.14649219775529806,0.14844813585943697,10880.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +10521,2,59.0,2,0.0,6,111,2,75,33,7.0,0.0,0.0,1431.0843077751551,0.0,2538.4317311031587,80490.94000901205,30,20,1,8039,201710521,,,850.0,,1.0,1.0,6.0,2.0,4.0,2.5,3329.55278753893,621.9600197495854,806.0,1070.0,0.0,68483.0,7,1,2,150.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3969.516038878314,0.04931630862347828,0.05796352436193382,27393.2,8,4,8,8_1,8_3,8_0_0 +10522,2,58.0,3,0.0,6,111,4,48,,8.0,0.0,0.0,3041.80126918377,212.31863304518674,0.0,48640.119999999995,31,33,1,804,201710522,,,470.0,,1.0,2.0,4.0,0.0,2.0,1.5,2069.9054226048397,0.0,2260.0,0.0,0.0,43880.0,4,1,1,152.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3254.1199022289566,0.06690197109359428,0.07415952375179938,29253.333333333332,8,4,8,8_1,8_4,8_0_0 +10523,1,60.0,4,240.0,6,111,1,0,78,1.0,0.0,0.0,605.6683943065029,0.0,0.0,10253.580315994117,0,71,2,8045,201710523,,,,130.0,0.0,0.0,1.0,0.0,1.0,1.0,2933.287837704911,0.0,450.0,0.0,0.0,8706.0,0,7,3,35.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,605.6683943065029,0.059068966706365675,0.06956907814225854,8706.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10524,2,77.0,2,0.0,5,111,2,78,77,5.0,0.0,48.5774211847204,467.8896250762334,0.0,869.4262544090592,19730.21873897791,71,70,1,8048,201710524,,,100.0,,0.0,2.0,5.0,0.0,2.0,1.5,3179.7696372858472,207.02253405391735,262.0,370.0,0.0,31959.0,5,5,1,100.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1385.893300670013,0.07024216604006119,0.04336472670202488,21306.0,6,3,6,6_1,6_3,6_0_0 +10525,1,42.0,2,254.0,3,111,1,0,62,7.0,0.0,0.0,403.7789295376686,0.0,230.01185246561897,20971.91047419752,0,71,2,8049,201710525,,,100.0,84.0,1.0,2.0,3.0,0.0,1.0,1.0,4857.760556632616,0.0,300.0,130.0,0.0,23148.0,0,4,3,70.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,633.7907820032876,0.030220936847077558,0.027379937014138916,23148.0,6,3,6,6_0,6_2,6_0_1 +10526,2,41.0,2,0.0,1,111,4,35,35,8.0,0.0,0.0,1429.3774105633468,0.0,0.0,51612.020000000004,20,30,2,805,201710526,,,,1105.0,2.0,0.0,3.0,3.0,5.0,2.4,3261.3707244872116,0.0,1062.0,0.0,0.0,68175.0,1,1,3,51.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1429.3774105633468,0.02769466125455556,0.020966298651460897,28406.25,8,4,8,8_0,8_4,8_1_0 +10527,2,39.0,3,0.0,10,112,5,62,62,4.0,0.0,624.566843803548,1285.3629256949116,0.0,0.0,43272.51150728986,41,50,1,8051,201710527,,,276.0,,3.0,0.0,5.0,3.0,5.0,2.6,2081.3262105038334,0.0,955.0,0.0,0.0,45958.0,1,1,2,100.0,6,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1909.9297694984596,0.044137252564522514,0.04155815678442185,17676.153846153844,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10528,2,55.0,2,0.0,4,400,2,0,75,9.0,0.0,0.0,670.2730230325299,0.0,2008.180404219058,16533.48,0,50,1,8052,201710528,,,152.0,,0.0,0.0,6.0,0.0,1.0,1.0,2788.46424181393,0.0,498.0,1135.0,0.0,34430.0,0,5,1,130.0,0,1.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2678.4534272515875,0.16200179437429915,0.07779417447724622,34430.0,9,5,9,9_1,9_1,9_0_1 +10529,2,59.0,1,0.0,6,111,4,55,46,7.0,0.0,0.0,1110.3920562285887,0.0,0.0,36870.35999999999,50,50,1,8053,201710529,,,196.0,,2.0,2.0,5.0,0.0,2.0,1.5,1562.3656455611692,0.0,825.0,0.0,0.0,37364.0,1,1,1,110.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1110.3920562285887,0.03011611647482121,0.029718232957622007,24909.333333333332,7,4,7,7_1,7_2,7_0_0 +10530,2,36.0,2,0.0,9,400,4,0,35,7.0,0.0,0.0,2127.9149586635135,56.61830214538313,0.0,19517.52,0,31,1,8054,201710530,,,143.0,,1.0,0.0,4.0,0.0,1.0,1.0,1779.8330578897192,0.0,1581.0,0.0,0.0,25432.0,0,1,2,90.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2184.5332608088966,0.11192678479688488,0.08589702975813529,25432.0,7,4,7,7_1,7_0,7_0_0 +10531,2,40.0,3,0.0,6,112,4,67,62,7.0,0.0,0.0,3745.722536344439,0.0,0.0,48960.92,71,43,1,8055,201710531,,,847.0,,3.0,1.0,6.0,2.0,4.0,2.5,1998.5825202990802,0.0,2783.0,0.0,0.0,64095.0,1,1,2,150.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3745.722536344439,0.07650433317724502,0.05844016750673905,25638.0,7,4,7,7_1,7_0,7_0_0 +10532,2,89.0,2,0.0,2,111,6,78,78,4.0,0.0,0.0,1076.7438121004495,0.0,0.0,25589.52,70,70,2,8058,201710532,,,,,0.0,7.0,2.0,0.0,2.0,1.5,4936.702680634068,0.0,800.0,0.0,0.0,26130.0,5,5,5,40.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1076.7438121004495,0.04207753064928336,0.04120718760430347,17420.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10533,1,33.0,1,390.0,7,111,1,0,21,1.0,0.0,0.0,605.6683943065029,0.0,0.0,18346.613304295228,0,44,2,8059,201710533,,,,,1.0,0.0,4.0,2.0,3.0,1.6,1134.6336144207964,0.0,450.0,0.0,0.0,16480.0,0,1,3,83.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,605.6683943065029,0.03301254483652885,0.03675172295549168,10300.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10534,2,45.0,3,0.0,8,111,1,46,65,7.0,0.0,0.0,1144.0403003567276,0.0,0.0,33220.840000000004,41,50,2,8060,201710534,,,,490.0,2.0,0.0,3.0,2.0,4.0,2.3,1925.9656332734564,0.0,850.0,0.0,0.0,55080.0,1,1,3,85.0,8,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1144.0403003567276,0.034437428444215365,0.0207705210667525,23947.826086956524,7,4,7,7_0,7_3,7_0_0 +10535,2,75.0,2,0.0,4,111,2,77,74,9.0,0.0,0.0,2422.6735772260117,0.0,0.0,30490.879999999997,70,50,1,8061,201710535,,,400.0,,0.0,2.0,6.0,0.0,2.0,1.5,2117.619516297409,0.0,1800.0,0.0,0.0,54543.0,5,5,1,98.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2422.6735772260117,0.0794556791153949,0.04441768104479056,36362.0,9,5,9,9_1,9_4,9_0_1 +10536,2,69.0,1,0.0,5,112,4,74,74,10.0,0.0,0.0,2414.597998635258,0.0,0.0,88955.29999999997,30,20,1,8062,201710536,,,171.0,,0.0,2.0,5.0,0.0,2.0,1.5,2007.098734957547,0.0,1794.0,0.0,0.0,74758.0,5,5,1,130.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2414.597998635258,0.027143947562823786,0.03229885762908663,49838.666666666664,10,5,10,10_1,10_0,10_0_0 +10537,2,34.0,2,0.0,9,300,6,47,42,7.0,0.0,0.0,1965.0574570833205,212.31863304518674,0.0,33742.92102692835,31,30,1,8063,201710537,,,114.0,,2.0,0.0,7.0,2.0,4.0,2.1,2484.348977185586,0.0,1460.0,0.0,0.0,48995.0,1,1,2,169.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2177.3760901285073,0.0645283817720127,0.04444078151094004,23330.95238095238,6,3,6,6_1,6_0,6_0_0 +10538,2,53.0,1,0.0,7,112,5,0,38,10.0,0.0,1040.94473967258,672.9379639674785,69.0035557396857,0.0,66520.58,0,12,1,8064,201710538,,,960.0,,1.0,0.0,5.0,2.0,3.0,2.0,1733.6708886166718,0.0,499.98,0.0,0.0,89431.0,0,1,1,140.0,9,1.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1782.8862593797442,0.02680202516844778,0.019935886430653176,44715.5,10,5,10,10_1,10_1,10_0_0 +10539,2,36.0,2,0.0,99,112,5,52,45,5.0,0.0,0.0,807.5578590753372,159.23897478389006,0.0,18748.86,50,50,1,8065,201710539,,,230.0,,2.0,0.0,4.0,3.0,5.0,2.4,2072.0542325856973,0.0,600.0,0.0,0.0,44986.0,1,1,2,94.0,8,0.0,4,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,966.7968338592273,0.05156563299631163,0.02149106019337632,18744.166666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10540,2,46.0,2,0.0,1,111,2,0,33,6.0,0.0,0.0,1749.7086946632305,0.0,0.0,17175.940000000002,0,30,2,8066,201710540,,,,,1.0,0.0,1.0,0.0,1.0,1.0,3176.994882284199,0.0,1300.0,0.0,0.0,24087.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1749.7086946632305,0.10186974888496526,0.07264120457770708,24087.0,7,4,7,7_0,7_4,7_1_0 +10541,2,33.0,3,0.0,1,111,2,56,22,9.0,0.0,0.0,350.74102970592963,0.0,653.5983930724746,104100.58,43,50,2,8067,201710541,,,700.0,,2.0,0.0,3.0,0.0,2.0,1.5,2565.740960449117,630.0000000000001,0.0,0.0,0.0,48990.0,1,1,3,100.0,7,5.0,3,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1004.3394227784042,0.00964777931860134,0.02050090677236996,32660.0,9,5,9,9_0,9_2,9_1_0 +10542,2,54.0,2,0.0,8,111,6,48,53,7.0,0.0,0.0,2332.528929636467,0.0,1039.0445203022457,50718.108934019416,30,41,1,8068,201710542,,,466.0,,2.0,1.0,6.0,2.0,4.0,2.5,1841.6496266547333,829.2800263327805,1390.0,101.0,0.0,59232.0,1,1,1,139.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3371.5734499387127,0.06647671848973875,0.056921485851207335,23692.8,6,3,6,6_1,6_3,6_0_0 +10543,2,49.0,4,0.0,8,111,2,0,38,7.0,0.0,0.0,403.7789295376686,0.0,1238.525359430256,13592.64,0,50,1,8069,201710543,,,120.0,,1.0,0.0,3.0,0.0,1.0,1.0,1002.4674495018023,0.0,300.0,700.0,0.0,26270.0,0,1,2,98.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1642.3042889679245,0.120823054900882,0.06251634141484295,26270.0,7,4,7,7_1,7_1,7_0_0 +10544,2,41.0,1,0.0,9,112,5,55,63,7.0,0.0,138.792631956344,969.0694308904046,307.86201791552077,0.0,41394.26,31,44,1,807,201710544,,,,,2.0,0.0,4.0,2.0,4.0,2.1,1991.2652193524034,0.0,720.0,0.0,0.0,47450.0,1,1,2,125.0,8,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1415.7240807622693,0.03420097570924735,0.029836123935980386,22595.238095238095,6,3,6,6_1,6_1,6_0_0 +10545,2,88.0,3,0.0,4,111,2,0,77,3.0,0.0,0.0,1022.9066214954271,56.61830214538313,0.0,8059.14,0,50,1,8071,201710545,,,330.0,,0.0,0.0,4.0,0.0,1.0,1.0,4579.1950758167,0.0,760.0,0.0,0.0,15050.0,0,5,1,78.0,6,4.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1079.5249236408101,0.1339503872175952,0.07172923080669835,15050.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +10546,1,78.0,3,253.0,1,211,2,78,75,9.0,2855.620816449988,0.0,773.9096149471981,0.0,2653.9829130648345,42359.630875301635,50,71,1,8072,201710546,,,600.0,,1.0,1.0,10.0,2.0,5.0,3.0,1095.2881448889943,0.0,575.0,1500.0,0.0,102068.0,5,5,3,231.0,1,2.0,5,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,6283.5133444620205,0.14833730168611337,0.06156203065076244,34022.666666666664,9,5,9,9_1,9_1,9_1_0 +10547,2,48.0,2,0.0,1,111,2,56,65,7.0,0.0,0.0,724.1102136375523,0.0,1134.1353648497059,41105.43087530162,50,44,1,8074,201710547,,,170.0,,2.0,2.0,6.0,0.0,2.0,1.5,1613.0293207698435,0.0,538.0,641.0,0.0,38885.0,1,1,1,100.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1858.2455784872582,0.04520681425586985,0.04778823655618512,25923.333333333332,7,4,7,7_1,7_2,7_1_0 +10548,1,50.0,4,490.0,1,111,7,0,85,1.0,0.0,0.0,640.2415621616174,0.0,1193.076431798961,11491.46,0,71,1,8075,201710548,,,400.0,,1.0,3.0,4.0,3.0,4.0,2.5,481.13478964245525,1150.0,0.0,0.0,0.0,22990.0,0,6,3,69.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1833.3179939605784,0.1595374298792824,0.07974414936757626,9196.0,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +10549,2,53.0,3,0.0,1,400,2,0,52,4.0,1064.51198213219,0.0,613.7439728972563,153.93100895776038,0.0,28032.88,0,41,1,8077,201710549,,,,,1.0,0.0,5.0,1.0,2.0,1.5,1950.4691181272344,0.0,456.0,0.0,0.0,26827.0,0,1,2,108.0,0,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1832.1869639872068,0.06535849916195577,0.06829637916976206,17884.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10550,1,35.0,3,300.0,5,111,2,85,67,2.0,0.0,0.0,532.9881869897225,0.0,2017.027013929274,15127.693696501075,71,71,2,808,201710550,,,408.0,,1.0,0.0,3.0,3.0,5.0,2.4,1967.5961739743984,0.0,396.0,1140.0,0.0,28730.0,6,1,3,58.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2550.0152009189965,0.1685660254681648,0.08875792554538797,11970.833333333334,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +10551,2,41.0,5,0.0,99,111,2,0,52,5.0,0.0,0.0,734.8859670029,0.0,1369.444252151851,9603.36,0,33,2,8080,201710551,,,270.0,233.0,1.0,0.0,3.0,0.0,1.0,1.0,2745.310946409489,1320.0,0.0,0.0,0.0,18391.0,0,1,3,61.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2104.330219154751,0.21912437096544862,0.11442173993555277,18391.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +10552,2,69.0,3,0.0,4,111,2,75,77,8.0,0.0,0.0,1458.987865396109,0.0,0.0,30425.4,50,50,1,8081,201710552,,,,,0.0,3.0,4.0,0.0,2.0,1.5,1987.9684173483906,0.0,1084.0,0.0,0.0,42437.0,5,5,1,80.0,9,7.0,3,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1458.987865396109,0.0479529559314293,0.034380089671657024,28291.333333333332,8,4,8,8_1,8_3,8_0_1 +10553,1,42.0,4,275.0,1,111,2,0,67,4.0,0.0,0.0,549.1393441712293,0.0,1422.5348414027512,23513.76,0,50,2,8082,201710553,,,300.0,,1.0,0.0,3.0,2.0,3.0,1.6,1307.368040845542,0.0,408.0,804.0,0.0,26093.0,0,1,3,70.0,5,4.0,2,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1971.6741855739806,0.08385193119152279,0.07556333827363586,16308.125,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +10554,2,52.0,2,0.0,3,111,2,0,62,5.0,0.0,0.0,323.0231436301349,0.0,2123.1863304518674,20513.076658454032,0,50,2,8084,201710554,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3644.3548653754933,0.0,240.0,1200.0,0.0,20161.0,0,1,1,68.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2446.209474082002,0.11925122275959751,0.12133373712028184,20161.0,5,3,5,5_0,5_2,5_0_1 +10555,1,33.0,3,422.0,7,112,1,68,55,2.0,0.0,0.0,851.9735413244807,0.0,313.16998374165047,15374.799999999997,71,31,2,8085,201710555,,,,39.0,2.0,0.0,2.0,1.0,3.0,1.8,2151.149208898951,0.0,633.0,177.0,0.0,19545.0,4,4,3,54.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1165.1435250661311,0.07578267847816761,0.05961338066339888,10858.333333333334,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10556,2,65.0,3,0.0,8,111,2,74,74,8.0,0.0,0.0,333.79058175113937,0.0,932.4326634567785,53329.182434472685,20,20,2,8088,201710556,,,,,0.0,0.0,4.0,0.0,2.0,1.5,2379.4568872578834,0.0,248.0,527.0,0.0,45419.0,5,5,1,80.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1266.223245207918,0.023743533791536518,0.027878712547786563,30279.333333333332,8,4,8,8_0,8_3,8_0_0 +10557,2,33.0,3,0.0,9,111,4,54,23,6.0,0.0,0.0,942.1508355878933,0.0,0.0,32976.479999999996,30,43,1,8089,201710557,,,360.0,,2.0,0.0,4.0,3.0,5.0,2.4,3108.9359188927615,0.0,700.0,0.0,0.0,50396.0,1,1,1,90.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,942.1508355878933,0.028570388215719004,0.01869495268648094,20998.333333333336,5,3,5,5_1,5_2,5_0_0 +10558,2,47.0,3,0.0,1,111,2,0,64,3.0,1586.456009138882,0.0,484.5347154452023,123.8525359430256,0.0,13138.48,0,50,1,809,201710558,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4495.121151591222,0.0,360.0,0.0,0.0,17200.0,0,1,1,100.0,6,4.0,1,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2194.84326052711,0.167054580174199,0.1276071663097157,17200.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +10559,2,85.0,3,0.0,3,221,2,0,86,2.0,3807.4944219333174,0.0,399.7411402422919,116.7752481748527,0.0,15328.419999999998,0,71,1,8090,201710559,,,100.0,,0.0,4.0,5.0,0.0,1.0,1.0,2876.0336415814418,0.0,297.0,0.0,0.0,11721.0,0,5,1,131.0,1,1.0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4324.010810350463,0.28209109682214234,0.3689114248230068,11721.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +10560,2,25.0,5,0.0,99,111,2,0,65,4.0,0.0,0.0,403.7789295376686,0.0,0.0,17835.32,0,43,2,8091,201710560,,,,600.0,1.0,0.0,1.0,0.0,1.0,1.0,6605.734186344092,0.0,300.0,0.0,0.0,16718.0,0,4,3,32.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,403.7789295376686,0.022639287074056904,0.02415234654490182,16718.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +10561,2,49.0,2,0.0,8,112,5,54,12,3.0,0.0,0.0,1339.200116299934,286.6301546110021,0.0,30883.300000000003,50,50,1,8092,201710561,,,492.0,,3.0,1.0,5.0,2.0,4.0,2.5,2254.17374176639,0.0,995.0,0.0,0.0,39955.0,1,1,1,128.0,7,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1625.8302709109362,0.05264431815612114,0.04069153474936644,15982.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +10562,2,44.0,3,0.0,9,112,2,47,52,4.0,0.0,0.0,915.2322402853821,0.0,1875.4812585658162,48123.380000000005,43,50,1,8093,201710562,,,590.0,,3.0,0.0,4.0,2.0,4.0,2.5,2263.2961403371096,0.0,680.0,1060.0,0.0,46192.0,1,1,2,100.0,8,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2790.7134988511984,0.057990804030207316,0.06041551564883959,18476.8,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10563,1,37.0,3,337.0,9,120,5,85,55,1.0,0.0,0.0,1211.3367886130059,184.0094819724952,0.0,25864.7,50,71,1,8095,201710563,,,,,1.0,0.0,4.0,3.0,5.0,2.4,3054.133858692995,0.0,900.0,0.0,0.0,24054.0,6,4,2,100.0,0,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1395.346270585501,0.053947900829528314,0.05800890789829139,10022.5,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +10564,2,75.0,2,0.0,3,112,2,0,78,2.0,872.5508050263852,0.0,296.1045483276236,226.47320858153253,0.0,9907.360315994116,0,70,1,8096,201710564,,,120.0,,0.0,2.0,4.0,0.0,1.0,1.0,2371.8948951984294,0.0,220.0,0.0,0.0,12938.0,0,5,1,80.0,8,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1395.1285619355415,0.14081738398908253,0.10783185669620818,12938.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +10565,2,69.0,2,0.0,3,111,2,0,77,5.0,0.0,0.0,531.642257224597,0.0,1590.6204258968573,21195.36,0,41,1,8097,201710565,,,87.0,,0.0,1.0,6.0,0.0,1.0,1.0,1630.497024605956,0.0,395.0,899.0,0.0,21031.0,0,5,1,140.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2122.2626831214543,0.10012864528469695,0.10091116366893892,21031.0,5,3,5,5_1,5_2,5_0_1 +10566,2,71.0,3,0.0,5,111,2,0,78,7.0,0.0,0.0,499.3399428615835,0.0,1820.6322783624764,17254.44,0,41,1,8098,201710566,,,,,0.0,3.0,5.0,0.0,1.0,1.0,3021.5364201180428,0.0,371.0,1029.0,0.0,26587.0,0,5,5,96.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2319.97222122406,0.13445653531636265,0.0872596464897905,26587.0,7,4,7,7_1,7_2,7_0_0 +10567,2,49.0,1,0.0,6,111,2,37,37,10.0,0.0,0.0,850.6276115593552,0.0,256.5516815962673,67788.58950571886,31,12,1,8100,201710567,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2310.5411321441043,0.0,632.0,145.0,0.0,124330.0,1,1,1,120.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1107.1792931556224,0.016332826825703715,0.008905166035193618,54056.52173913044,10,5,10,10_1,10_3,10_0_0 +10568,2,39.0,5,0.0,1,112,5,48,46,8.0,0.0,902.152107716236,2489.9700654822896,0.0,0.0,39880.16,30,43,1,8101,201710568,,,560.0,,2.0,0.0,4.0,1.0,3.0,1.8,2344.620812841232,0.0,1850.0,0.0,0.0,48603.0,1,1,1,80.0,9,2.0,4,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3392.1221731985256,0.08505788776169718,0.06979244435937135,27001.666666666664,7,4,7,7_1,7_1,7_1_0 +10569,2,39.0,3,0.0,1,112,2,43,64,8.0,0.0,0.0,1021.5606917303015,0.0,2653.9829130648345,46199.14,33,50,1,8102,201710569,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.1,2085.5344801249803,0.0,759.0,1500.0,0.0,54395.0,1,1,2,96.0,10,2.0,4,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3675.543604795136,0.07955870184585982,0.06757135039608671,25902.38095238095,7,4,7,7_1,7_1,7_1_0 +10570,2,40.0,3,0.0,9,300,5,54,64,6.0,0.0,693.9631597817199,977.145009481158,0.0,0.0,22824.38,31,50,1,8104,201710570,,,450.0,,2.0,1.0,4.0,1.0,3.0,1.8,2015.764545226271,0.0,726.0,0.0,0.0,39100.0,4,1,2,88.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1671.108169262878,0.07321592828645851,0.04273933936733703,21722.222222222223,6,3,6,6_1,6_1,6_0_0 +10571,2,27.0,1,0.0,9,111,1,52,43,7.0,0.0,0.0,942.1508355878933,0.0,636.9558991355602,43596.63999999999,50,20,2,8106,201710571,360.0,360.0,,420.0,2.0,0.0,2.0,0.0,2.0,1.5,3301.92826681253,0.0,700.0,360.0,0.0,41761.0,1,4,3,48.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1579.1067347234534,0.03622083570484913,0.03781295310752744,27840.666666666668,8,4,8,8_0,8_3,8_0_0 +10572,2,59.0,3,0.0,5,120,5,65,48,10.0,0.0,560.7222331036297,1787.3947280867462,0.0,0.0,34056.48262515687,50,50,1,8107,201710572,,,311.0,,2.0,3.0,6.0,0.0,2.0,1.5,2265.511064234525,0.0,1328.0,0.0,0.0,65502.0,1,1,1,132.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2348.116961190376,0.06894772390428444,0.03584801931529382,43668.0,10,5,10,10_1,10_0,10_0_0 +10573,2,26.0,2,0.0,1,120,2,69,63,6.0,0.0,0.0,985.2205880719114,0.0,0.0,32173.8,44,43,1,8108,201710573,,,456.0,,2.0,0.0,3.0,0.0,2.0,1.5,2415.559166635892,0.0,732.0,0.0,0.0,32106.0,1,1,3,70.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,985.2205880719114,0.030621828570821956,0.03068649436466428,21404.0,6,3,6,6_1,6_1,6_1_0 +10574,0,53.0,4,0.0,4,111,1,0,52,6.0,0.0,0.0,0.0,0.0,0.0,31711.02,0,50,2,811,201710574,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2581.9474438738093,0.0,0.0,0.0,0.0,22600.0,0,1,5,62.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,22600.0,6,3,6,6_0,6_4,6_0_1 +10575,2,28.0,2,0.0,9,221,4,0,67,4.0,0.0,0.0,904.4648021643776,0.0,0.0,15530.600000000002,0,43,2,8110,201710575,,,,330.0,1.0,0.0,2.0,0.0,1.0,1.0,4487.941092438341,0.0,672.0,0.0,0.0,18494.0,0,1,3,44.0,1,2.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,904.4648021643776,0.058237595596073395,0.04890585066315441,18494.0,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +10576,2,70.0,1,0.0,5,211,2,0,75,10.0,0.0,0.0,686.4241802140366,0.0,2459.3574994400797,29508.48,0,30,1,8111,201710576,,,,,0.0,3.0,5.0,0.0,1.0,1.0,3079.2495650297483,0.0,510.0,1390.0,0.0,45733.0,0,5,1,90.0,1,3.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3145.7816796541165,0.10660602239268564,0.06878581504939794,45733.0,10,5,10,10_1,10_1,10_0_0 +10577,2,57.0,4,0.0,1,111,6,0,52,5.0,0.0,346.98157989085996,1884.3016711757866,350.32574452455816,0.0,23748.31034032636,0,50,1,8112,201710577,,,350.0,,1.0,2.0,5.0,1.0,2.0,1.5,2310.334912039928,0.0,1400.0,0.0,0.0,30871.0,0,1,2,90.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2581.608995591205,0.10870705993796304,0.08362570035279727,20580.666666666668,5,3,5,5_1,5_4,5_1_0 +10578,2,69.0,3,0.0,1,400,6,77,77,8.0,0.0,0.0,2436.132874877267,291.9381204371318,0.0,36313.76,50,44,1,8114,201710578,,,130.0,,0.0,2.0,5.0,0.0,2.0,1.5,1592.5553594748953,0.0,1810.0,0.0,0.0,39421.0,5,5,1,106.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2728.0709953143987,0.0751249938126594,0.06920349547993199,26280.666666666668,7,4,7,7_1,7_0,7_1_0 +10579,2,52.0,4,0.0,7,111,4,46,46,5.0,0.0,0.0,1043.3153804268445,0.0,1944.195854948916,74510.78,50,31,1,8115,201710579,,,1212.0,,3.0,0.0,5.0,3.0,5.0,3.0,2075.201098009805,1874.0,0.0,0.0,0.0,61995.0,1,1,1,100.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2987.5112353757604,0.04009502028264582,0.0481895513408462,20665.0,5,3,5,5_1,5_3,5_0_0 +10580,2,28.0,1,0.0,99,111,1,0,34,8.0,0.0,0.0,266.49409349486126,0.0,150.39236507367394,22876.660000000003,0,30,2,8116,201710580,,,,560.0,1.0,0.0,2.0,0.0,1.0,1.0,6104.00787996074,0.0,198.0,85.0,0.0,30243.0,0,1,3,33.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,416.8864585685352,0.01822322220851012,0.013784560346808689,30243.0,8,4,8,8_0,8_4,8_0_0 +10581,2,44.0,2,0.0,9,111,4,47,48,9.0,0.0,0.0,3014.8826738812586,0.0,0.0,54651.48269899829,31,43,1,8118,201710581,,,,,2.0,0.0,8.0,1.0,3.0,2.0,2007.253059716617,0.0,2240.0,0.0,0.0,69102.0,1,1,2,250.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3014.8826738812586,0.055165615368318606,0.04362945607770048,34551.0,9,5,9,9_1,9_3,9_0_0 +10582,2,65.0,3,0.0,8,111,4,0,75,5.0,0.0,0.0,952.9182737088979,0.0,0.0,18569.785846751303,0,42,2,8119,201710582,,,,600.0,0.0,0.0,2.0,0.0,1.0,1.0,2962.06803877379,0.0,708.0,0.0,0.0,20375.0,0,5,3,50.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,952.9182737088979,0.051315523053035446,0.04676899502865756,20375.0,5,3,5,5_0,5_3,5_0_0 +10583,2,49.0,3,0.0,1,120,1,52,67,8.0,0.0,0.0,403.7789295376686,0.0,1061.5931652259337,47570.759999999995,50,71,8,8122,201710583,,,50.0,,2.0,0.0,4.0,1.0,3.0,1.8,2741.0780186207226,0.0,300.0,600.0,0.0,52051.0,1,1,3,90.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1465.3720947636023,0.03080405052943452,0.028152621366805675,28917.222222222223,8,4,8,8_0,8_1,8_1_0 +10584,2,36.0,2,0.0,3,111,1,85,55,5.0,0.0,0.0,0.0,0.0,0.0,49824.62999999999,71,20,2,8123,201710584,,,,,1.0,0.0,2.0,0.0,2.0,1.5,5855.493872266118,0.0,0.0,0.0,0.0,31951.0,6,1,1,49.0,10,8.0,3,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0.0,0.0,0.0,21300.666666666668,6,3,6,6_0,6_4,6_0_1 +10585,2,88.0,3,0.0,2,112,2,86,75,4.0,2379.684013708323,0.0,1324.394888883553,0.0,0.0,21781.62,70,44,1,8124,201710585,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2585.659909448168,0.0,984.0,0.0,0.0,25973.0,5,5,1,150.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3704.078902591876,0.1700552531258867,0.14261267095028976,17315.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +10586,2,82.0,2,0.0,3,211,2,0,75,8.0,0.0,0.0,1711.0347948647905,0.0,2552.7406021580005,47800.84563914397,0,41,1,8126,201710586,,,200.0,,0.0,2.0,9.0,1.0,2.0,1.5,2823.1545535943346,414.0450681078347,1100.0,1200.0,0.0,49200.0,0,5,1,120.0,1,3.0,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4263.775397022791,0.08919874408102936,0.08666210156550389,32800.0,9,5,9,9_1,9_1,9_0_1 +10587,1,41.0,3,494.0,99,111,2,0,55,3.0,1189.8420068541616,0.0,605.6683943065029,0.0,1521.6168701571717,20987.74468577102,0,43,2,8127,201710587,,,,50.0,1.0,2.0,4.0,3.0,4.0,2.1,408.9929913738376,0.0,450.0,860.0,0.0,32648.0,0,1,3,86.0,9,7.0,2,7,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,3317.127271317836,0.15805067771606426,0.10160277111363133,15546.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10588,2,70.0,3,0.0,2,111,6,0,77,5.0,0.0,0.0,538.3719060502248,0.0,0.0,20059.8126584403,0,41,2,8128,201710588,,,,,0.0,3.0,3.0,0.0,1.0,1.0,3388.4192497487898,0.0,400.0,0.0,0.0,19660.0,0,5,3,60.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,538.3719060502248,0.026838331704144864,0.027384125434904618,19660.0,5,3,5,5_0,5_2,5_0_1 +10589,2,35.0,2,0.0,4,111,1,0,56,10.0,0.0,0.0,516.8370298082158,53.079658261296686,0.0,25920.459999999995,0,30,2,8129,201710589,,,120.0,522.0,1.0,0.0,2.0,0.0,1.0,1.0,4325.766508390314,0.0,384.0,0.0,0.0,40286.0,0,1,3,47.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,569.9166880695125,0.021987136342083147,0.01414676781188285,40286.0,9,5,9,9_0,9_2,9_0_1 +10590,2,80.0,2,0.0,6,111,5,86,77,2.0,0.0,1104.7893503724981,619.1276919577585,530.7965826129669,0.0,18585.74,70,50,1,813,201710590,,,362.0,,0.0,2.0,4.0,0.0,2.0,1.5,2251.069850601822,0.0,460.0,0.0,0.0,16309.0,5,5,1,100.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2254.7136249432233,0.12131417016181346,0.13824965509493062,10872.666666666666,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10591,2,41.0,1,0.0,9,111,2,38,62,9.0,0.0,0.0,1410.534393851589,0.0,2296.5798807721035,59252.54,20,50,1,8130,201710591,,,520.0,,2.0,0.0,8.0,2.0,4.0,2.1,2108.615441575728,0.0,1048.0,1298.0,0.0,75328.0,1,1,2,220.0,5,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3707.1142746236924,0.06256464743323564,0.04921296562531452,35870.47619047619,9,5,9,9_1,9_2,9_0_0 +10592,2,74.0,2,0.0,9,120,4,72,72,6.0,0.0,0.0,3411.9319545932995,0.0,0.0,29510.382821199444,71,44,1,8131,201710592,,,392.0,,0.0,3.0,5.0,0.0,2.0,1.5,2227.6844098401343,0.0,2535.0,0.0,0.0,34401.0,5,5,1,108.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3411.9319545932995,0.11561801740309047,0.09918118527348913,22934.0,6,3,6,6_1,6_0,6_0_0 +10593,2,29.0,3,0.0,2,112,6,63,63,6.0,0.0,832.755791738064,1679.7203468767013,184.0094819724952,0.0,57448.46342267321,43,44,1,8132,201710593,,,500.0,,2.0,0.0,3.0,0.0,2.0,1.5,3179.542467908313,0.0,1248.0,0.0,0.0,33759.0,4,1,2,100.0,9,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2696.48562058726,0.04693747160386255,0.07987457035419473,22506.0,6,3,6,6_1,6_0,6_0_1 +10594,2,71.0,3,0.0,1,400,2,0,78,10.0,0.0,1387.9263195634398,990.6043071324136,124.75489013346765,0.0,25246.318887714002,0,41,1,8135,201710594,,,,,0.0,5.0,6.0,0.0,1.0,1.0,1848.9880934040207,0.0,736.0,0.0,0.0,42160.0,0,5,1,111.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2503.285516829321,0.09915447586489659,0.05937584242953797,42160.0,10,5,10,10_1,10_0,10_1_0 +10595,2,76.0,2,0.0,6,120,4,75,75,8.0,0.0,832.755791738064,2182.446068155773,176.75526201011795,889.1644947951023,34243.890117104915,41,41,1,8136,201710595,,,146.0,,0.0,2.0,6.0,0.0,2.0,1.5,1734.2239946907682,857.0609072149286,1267.0,0.0,0.0,42765.0,5,5,1,105.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4081.121616699057,0.11917809579293463,0.09543134845549063,28510.0,8,4,8,8_1,8_0,8_0_0 +10596,2,58.0,2,0.0,1,111,5,54,64,9.0,0.0,249.82673752141918,1259.790260157526,130.9298237111985,0.0,49708.9,31,50,1,8139,201710596,,,205.0,,3.0,1.0,5.0,1.0,3.0,2.0,2120.515682680936,0.0,936.0,0.0,0.0,63396.0,1,1,2,120.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1640.5468213901436,0.033003080361668505,0.025877765496090346,31698.0,8,4,8,8_1,8_3,8_1_0 +10597,2,53.0,1,0.0,4,400,2,13,37,10.0,0.0,0.0,2164.2550623219036,0.0,0.0,32066.181204189892,50,42,1,814,201710597,,,499.0,,2.0,1.0,6.0,0.0,2.0,1.5,1327.9877300723888,0.0,1608.0,0.0,0.0,102530.0,1,1,1,150.0,0,1.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2164.2550623219036,0.06749338340416768,0.021108505435695927,68353.33333333333,10,5,10,10_1,10_1,10_0_1 +10598,1,39.0,4,402.0,9,112,2,67,21,4.0,0.0,0.0,818.3957359805023,0.0,1525.0629171691069,17783.34115202909,50,71,1,8140,201710598,,,800.0,,2.0,0.0,4.0,4.0,6.0,2.7,3413.271474670919,1470.0,0.0,0.0,0.0,46997.0,4,1,3,90.0,9,1.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2343.4586531496093,0.1317783105612985,0.049864005216282085,17406.296296296296,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +10599,2,55.0,4,0.0,1,111,2,0,52,3.0,0.0,0.0,968.7133201401864,0.0,1805.1765142001673,27992.5033870052,0,50,2,8142,201710599,,,,380.0,3.0,2.0,3.0,3.0,4.0,2.5,3519.06781411751,1740.0,0.0,0.0,0.0,40164.0,0,1,3,55.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2773.8898343403534,0.09909402513917567,0.06906408311772616,16065.6,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +10600,1,61.0,5,140.0,8,111,2,85,78,1.0,0.0,0.0,969.0694308904046,0.0,2282.4253052357576,67981.35665845404,71,71,1,8144,201710600,,,1150.0,,0.0,2.0,4.0,5.0,7.0,4.0,1684.3093454181226,0.0,720.0,1290.0,0.0,27410.0,6,5,2,80.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,3251.494736126162,0.0478292122421451,0.11862439752375636,6852.5,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +10601,2,57.0,5,0.0,1,111,4,0,65,5.0,0.0,0.0,193.8138861780809,0.0,0.0,19597.471191295746,0,71,2,8145,201710601,,,200.0,,1.0,2.0,2.0,0.0,1.0,1.0,3603.163150458666,0.0,144.0,0.0,0.0,18130.0,0,1,3,50.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,193.8138861780809,0.009889739563141377,0.010690230897853332,18130.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +10602,2,75.0,3,0.0,5,111,2,0,55,6.0,0.0,111.0341055650752,2018.894647688343,185.7788039145384,0.0,17220.739999999998,0,70,1,8146,201710602,,,400.0,,1.0,1.0,5.0,0.0,1.0,1.0,2657.3858183658326,0.0,1500.0,0.0,0.0,21881.0,0,5,1,120.0,7,5.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2315.7075571679566,0.13447201207195258,0.10583188872391375,21881.0,6,3,6,6_1,6_2,6_0_0 +10603,2,26.0,1,0.0,4,111,6,0,43,5.0,0.0,0.0,317.3371221148886,0.0,591.350927065572,25353.051191295745,0,33,2,8147,201710603,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4637.617623459668,570.0,0.0,0.0,0.0,20368.0,0,1,3,63.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,908.6880491804607,0.035841368454004194,0.044613513805010836,20368.0,5,3,5,5_0,5_3,5_0_1 +10604,1,26.0,4,345.0,2,111,1,62,68,1.0,0.0,0.0,538.3719060502248,0.0,0.0,28991.840000000004,50,50,2,8149,201710604,,,,,2.0,0.0,3.0,1.0,3.0,1.8,4020.359031401661,0.0,400.0,0.0,0.0,12720.0,4,4,3,65.0,6,5.0,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,538.3719060502248,0.018569773634589067,0.04232483538130698,7066.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10605,2,61.0,2,0.0,7,111,4,54,75,10.0,0.0,0.0,2422.6735772260117,0.0,0.0,39426.21310830557,50,50,1,8150,201710605,,,600.0,,1.0,2.0,4.0,0.0,2.0,1.5,1715.4588130898835,0.0,1800.0,0.0,0.0,75091.0,1,5,1,100.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2422.6735772260117,0.06144829508659173,0.03226316838537257,50060.666666666664,10,5,10,10_1,10_4,10_0_0 +10606,2,36.0,4,0.0,9,111,4,84,63,5.0,0.0,0.0,1682.4122064069525,0.0,0.0,33619.03574816404,42,43,8,8152,201710606,,,,500.0,1.0,0.0,3.0,1.0,4.0,2.3,1323.4065678824024,0.0,1250.0,0.0,0.0,45233.0,3,1,3,70.0,9,7.0,5,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1682.4122064069525,0.05004344024051405,0.03719435382147884,19666.521739130436,5,3,5,5_0,5_3,5_0_0 +10607,2,38.0,2,0.0,1,111,2,85,31,10.0,0.0,0.0,699.8834778652922,0.0,1910.8676974066807,79042.52000000002,30,10,2,8153,201710607,,,,,1.0,0.0,3.0,1.0,3.0,1.8,3625.9867267693717,0.0,520.0,1080.0,0.0,204723.0,4,1,1,62.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2610.751175271973,0.03302970572385562,0.012752603152904036,113735.0,10,5,10,10_0,10_4,10_1_0 +10608,2,48.0,1,0.0,7,112,4,31,34,8.0,0.0,0.0,4336.58570323456,0.0,0.0,82478.23229893863,10,20,1,8154,201710608,,,,,3.0,0.0,6.0,4.0,6.0,3.3,1352.7181060823973,0.0,3222.0,0.0,0.0,89687.0,1,1,1,145.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4336.58570323456,0.05257854808911036,0.04835244464899662,27177.878787878788,7,4,7,7_1,7_1,7_0_0 +10609,2,84.0,1,0.0,7,112,3,74,74,9.0,0.0,0.0,1403.8047450259612,0.0,0.0,30185.480000000003,41,12,1,8156,201710609,,,432.0,,0.0,2.0,6.0,0.0,2.0,1.5,2252.137536667123,0.0,1043.0,0.0,0.0,53968.0,5,5,1,150.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1403.8047450259612,0.04650596064816465,0.026011798566297827,35978.666666666664,9,5,9,9_1,9_2,9_0_0 +10610,2,52.0,4,0.0,99,300,6,55,22,7.0,0.0,276.19733759312453,4113.161362223717,30.07847301473479,0.0,23787.51569949955,50,50,1,8157,201710610,,,101.0,,2.0,6.0,5.0,0.0,2.0,1.5,1929.3739337985007,0.0,3056.0,0.0,0.0,36084.0,1,1,2,110.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4419.437172831577,0.18578809273994742,0.12247636550359099,24056.0,7,4,7,7_1,7_0,7_0_0 +10611,1,51.0,4,374.0,4,111,1,0,55,1.0,0.0,0.0,484.5347154452023,0.0,212.31863304518674,8487.622568804229,0,71,2,8158,201710611,,,,,2.0,1.0,3.0,2.0,3.0,2.0,1135.6534667769056,0.0,360.0,120.0,0.0,15088.0,0,4,3,67.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,696.8533484903891,0.08210230165648903,0.046185932429108505,7544.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10612,2,40.0,4,0.0,4,111,1,0,52,6.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,29703.751507289864,0,44,2,8159,201710612,,,350.0,228.0,2.0,0.0,3.0,2.0,3.0,1.8,783.6287220675464,600.0,0.0,0.0,0.0,40274.0,0,1,3,65.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,956.5137359794323,0.03220178218043218,0.023750154838839757,22374.444444444445,6,3,6,6_0,6_3,6_0_1 +10613,2,58.0,3,0.0,2,211,2,0,56,3.0,0.0,0.0,658.3104146908303,0.0,1822.2034159884843,26890.159999999996,0,44,2,816,201710613,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1223.4187165156707,624.0,231.0,664.0,0.0,17003.0,0,1,2,66.0,1,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,2480.5138306793147,0.09224615363684392,0.14588683353992324,17003.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +10614,1,19.0,4,306.0,7,112,4,0,67,2.0,0.0,0.0,672.964882562781,0.0,0.0,12975.870875301625,0,60,1,8160,201710614,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3629.7685127857003,0.0,500.0,0.0,0.0,10933.0,0,4,3,47.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,672.964882562781,0.051862791255399096,0.06155354272045925,10933.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +10615,2,59.0,1,0.0,6,111,5,64,67,9.0,0.0,555.170527825376,686.4241802140366,0.0,771.4243667308452,21628.339999999997,50,71,1,8161,201710615,,,220.0,,2.0,3.0,4.0,0.0,2.0,1.5,1500.329410397912,0.0,510.0,436.0,0.0,51013.0,1,1,1,85.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2013.0190747702577,0.09307321203431507,0.03946090358869813,34008.666666666664,9,5,9,9_1,9_2,9_0_0 +10616,1,36.0,5,280.0,9,112,2,22,22,3.0,0.0,0.0,40.37789295376686,3874.815053074658,0.0,24042.76,50,31,1,8162,201710616,,,51.0,,2.0,1.0,4.0,1.0,3.0,1.8,3846.2941813199404,0.0,30.0,0.0,0.0,25660.0,4,4,2,80.0,8,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,3915.192946028425,0.1628429076374104,0.1525796159792839,14255.555555555555,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +10617,2,52.0,4,0.0,3,111,4,0,85,1.0,0.0,0.0,238.22956842722448,0.0,268.9369351905699,6516.150875301629,0,30,2,8163,201710617,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2881.3851579235907,0.0,177.0,152.0,0.0,6462.0,0,7,1,51.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,507.1665036177944,0.07783222232316989,0.07848444809931823,6462.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +10618,2,33.0,1,0.0,7,112,4,38,38,10.0,0.0,0.0,955.610133239149,0.0,0.0,33794.1,20,31,2,8164,201710618,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1654.336738349112,0.0,710.0,0.0,0.0,80016.0,1,1,2,60.0,10,5.0,3,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,955.610133239149,0.028277425149335213,0.01194273811786579,53344.0,10,5,10,10_0,10_2,10_0_0 +10619,2,51.0,3,0.0,7,222,4,68,38,5.0,0.0,0.0,2524.8534793736326,0.0,1444.4656962716986,46722.577471426375,60,42,1,8165,201710619,,,324.0,,3.0,0.0,4.0,2.0,4.0,2.5,3866.5250010238315,1392.3127692730773,1300.0,0.0,0.0,49414.0,1,1,1,100.0,1,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3969.319175645331,0.08495505578802465,0.0803278256292818,19765.6,5,3,5,5_1,5_0,5_0_0 +10620,2,89.0,2,0.0,6,111,1,0,75,6.0,0.0,0.0,672.964882562781,0.0,265.39829130648343,23669.600000000002,0,70,2,8167,201710620,,,,,0.0,1.0,5.0,0.0,1.0,1.0,4008.1818126416497,0.0,500.0,150.0,0.0,22697.0,0,5,1,100.0,7,6.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,938.3631738692644,0.03964423454005409,0.04134304859097081,22697.0,6,3,6,6_0,6_2,6_0_0 +10621,2,65.0,2,0.0,6,112,5,75,75,9.0,0.0,416.377895869032,1265.1739792180283,318.4779495677801,0.0,49915.119999999995,60,50,1,8169,201710621,,,230.0,,0.0,2.0,5.0,0.0,2.0,1.5,2770.2978449145025,0.0,940.0,0.0,0.0,53553.0,5,5,1,98.0,9,1.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2000.0298246548405,0.04006861697727744,0.03734673733786791,35702.0,9,5,9,9_1,9_1,9_0_0 +10622,2,46.0,3,0.0,1,221,2,55,55,5.0,0.0,0.0,2492.0052834669123,46.0023704931238,430.17150207794015,78231.18887136182,31,50,1,817,201710622,,,190.0,,2.0,0.0,6.0,1.0,3.0,1.8,1760.2402189674892,414.64001316639025,1680.0,0.0,0.0,36049.0,1,1,1,135.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2968.179156037976,0.03794112295696609,0.08233735071813299,20027.222222222223,5,3,5,5_1,5_1,5_1_0 +10623,2,29.0,2,0.0,99,111,2,63,68,5.0,0.0,0.0,389.7122552288106,0.0,726.2204367471937,17420.6258467513,50,50,2,8170,201710623,,,700.0,,2.0,0.0,4.0,2.0,4.0,2.1,2333.133798261639,700.0,0.0,0.0,0.0,40250.0,1,1,3,85.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1115.9326919760042,0.06405812866844332,0.02772503582549079,19166.666666666664,5,3,5,5_0,5_3,5_0_0 +10624,2,68.0,3,0.0,9,112,5,77,74,8.0,0.0,151.28396883241496,1184.4181933104944,219.39592081335965,0.0,47368.479999999996,41,31,1,8171,201710624,,,530.0,,0.0,5.0,4.0,0.0,2.0,1.5,1894.7565627904453,0.0,880.0,0.0,0.0,41506.0,5,5,2,90.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1555.098082956269,0.032829807563094046,0.037466826072285186,27670.666666666668,8,4,8,8_1,8_0,8_0_0 +10625,2,36.0,2,0.0,1,112,2,43,43,7.0,793.228004569441,528.7999277536707,982.5287285416603,88.46609710216114,0.0,28620.139999999996,33,30,1,8172,201710625,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2845.4261311352875,0.0,730.0,0.0,0.0,49237.0,1,1,2,140.0,8,1.0,4,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2393.022757966933,0.08361324430862091,0.04860212356493964,23446.190476190473,6,3,6,6_1,6_1,6_1_0 +10626,2,57.0,3,0.0,7,111,1,0,52,4.0,0.0,0.0,403.7789295376686,106.15931652259337,1511.0009385049123,12085.496974448148,0,60,2,8173,201710626,999999.0,854.0,230.0,448.0,1.0,1.0,3.0,0.0,1.0,1.0,1626.3491831419276,0.0,300.0,854.0,0.0,17450.0,0,1,3,70.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2020.9391845651742,0.1672201969714576,0.11581313378596987,17450.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +10627,1,28.0,2,272.0,99,111,4,0,56,3.0,0.0,0.0,242.26735772260116,0.0,0.0,8491.54,0,43,2,8174,201710627,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3676.0139350496256,0.0,180.0,0.0,0.0,14927.0,0,1,3,35.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,242.26735772260116,0.028530438262388345,0.01623014388173117,14927.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10628,1,50.0,2,200.0,9,400,5,77,12,1.0,0.0,208.188947934516,538.3719060502248,159.23897478389006,0.0,14539.630875301627,70,50,1,8176,201710628,,,,,1.0,0.0,2.0,0.0,2.0,1.5,1915.2076873325489,0.0,400.0,0.0,0.0,13396.0,7,1,2,80.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,905.7998287686308,0.0622986812070523,0.06761718638165354,8930.666666666666,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +10629,2,67.0,1,0.0,8,111,2,75,74,10.0,2062.392811880547,277.585263912688,2907.2082926712137,0.0,0.0,44566.78115552541,33,30,1,8177,201710629,,,500.0,,0.0,1.0,6.0,0.0,2.0,1.5,1896.710923649295,0.0,2160.0,0.0,0.0,74340.0,5,5,1,300.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5247.186368464449,0.11773761156663431,0.07058362077568535,49560.0,10,5,10,10_1,10_3,10_0_0 +10630,1,32.0,3,282.0,99,111,1,0,68,7.0,0.0,0.0,995.9880261929159,0.0,364.4803200609039,11007.199999999999,0,60,2,8178,201710630,,,,139.0,1.0,2.0,4.0,1.0,2.0,1.5,3874.2081424064463,0.0,740.0,206.0,0.0,36724.0,0,1,3,85.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1360.4683462538198,0.1235980400332346,0.037045756079234826,24482.666666666668,7,4,7,7_0,7_4,7_0_0 +10631,2,44.0,3,0.0,1,112,4,0,45,6.0,0.0,0.0,1317.665240057925,49.54101437721024,0.0,27444.900000000005,0,31,1,8179,201710631,,,250.0,638.0,1.0,0.0,3.0,1.0,2.0,1.3,706.1988957756116,0.0,979.0,0.0,0.0,27049.0,0,1,3,50.0,9,2.0,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1367.2062544351354,0.04981640503099429,0.05054553789179398,20806.923076923074,5,3,5,5_1,5_1,5_1_0 +10632,2,68.0,3,0.0,1,111,2,77,75,6.0,0.0,0.0,874.8543473316153,0.0,1477.383821606091,29656.55883901972,50,60,1,818,201710632,,,300.0,,0.0,2.0,4.0,0.0,2.0,1.5,1619.7676458315843,0.0,650.0,835.0,0.0,33086.0,5,5,1,99.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2352.238168937706,0.07931595104158949,0.07109466750098851,22057.333333333332,6,3,6,6_1,6_3,6_1_0 +10633,1,38.0,3,363.0,99,111,1,0,68,1.0,0.0,0.0,423.967876014552,0.0,152.16168701571718,15700.58,0,50,2,8180,201710633,,,360.0,,1.0,0.0,4.0,2.0,3.0,1.6,761.4739805659194,0.0,315.0,86.0,0.0,15546.0,0,4,3,78.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,576.1295630302692,0.03669479490759381,0.03705966570373531,9716.25,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10634,2,39.0,2,0.0,2,111,4,85,21,5.0,0.0,0.0,2671.6705837742406,0.0,0.0,63889.37685592409,71,71,1,8181,201710634,,,,,1.0,0.0,4.0,2.0,4.0,2.3,6595.976690422469,0.0,1985.0,0.0,0.0,46260.0,6,1,2,150.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2671.6705837742406,0.04181713322700082,0.057753363246308705,20113.04347826087,5,3,5,5_1,5_4,5_0_1 +10635,2,93.0,2,0.0,1,120,2,0,74,9.0,3172.912018277764,0.0,1153.7834147472342,247.7050718860512,494.69722738963117,18085.093158287862,0,30,1,8183,201710635,,,250.0,,0.0,4.0,6.0,0.0,1.0,1.0,2195.0508120991685,476.8360151413488,660.0,0.0,0.0,39617.0,0,5,1,100.0,0,3.0,1,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,5069.09773230068,0.2802914913367567,0.1279525893505485,39617.0,9,5,9,9_1,9_1,9_1_0 +10636,2,83.0,1,0.0,1,300,6,86,74,9.0,0.0,0.0,2053.7640226072554,265.39829130648343,258.1029012467641,34055.34932281711,50,60,1,8184,201710636,,,351.0,,0.0,5.0,6.0,0.0,2.0,1.5,2468.2612275898014,248.78400789983417,1423.0,0.0,0.0,52697.0,6,5,1,131.0,0,0.0,3,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2577.2652151605025,0.07567871909725891,0.04890724737955676,35131.333333333336,9,5,9,9_1,9_0,9_1_0 +10637,2,33.0,3,0.0,9,111,4,22,38,9.0,0.0,0.0,1195.185631431499,0.0,0.0,53175.7,20,12,2,8185,201710637,,,,941.0,2.0,0.0,2.0,1.0,3.0,1.8,3426.075164990028,0.0,888.0,0.0,0.0,65847.0,4,1,3,52.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1195.185631431499,0.02247616169474965,0.018150950406723144,36581.666666666664,9,5,9,9_0,9_4,9_0_0 +10638,2,66.0,1,0.0,6,111,4,74,37,10.0,0.0,0.0,7402.613708190591,0.0,0.0,76348.70261052811,20,20,1,8187,201710638,,,1700.0,,1.0,2.0,6.0,0.0,2.0,1.5,1920.1484136930812,0.0,5500.0,0.0,0.0,91316.0,5,5,1,155.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,7402.613708190591,0.09695795023463577,0.08106589982249103,60877.333333333336,10,5,10,10_1,10_4,10_0_0 +10639,2,63.0,1,0.0,9,111,4,0,75,4.0,0.0,0.0,1238.255383915517,0.0,0.0,13621.910989269942,0,50,2,8188,201710639,,,120.0,,0.0,2.0,3.0,0.0,1.0,1.0,2887.117049523886,0.0,920.0,0.0,0.0,18359.0,0,5,3,80.0,6,4.0,1,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1238.255383915517,0.0909017380080444,0.06744677727084901,18359.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +10640,2,67.0,1,0.0,2,111,7,77,75,8.0,0.0,0.0,1728.1738184212215,0.0,0.0,43372.6,60,50,1,8189,201710640,,,260.0,,0.0,5.0,5.0,0.0,2.0,1.5,1426.7826210420892,0.0,1284.0,0.0,0.0,44099.0,5,5,1,81.0,9,7.0,3,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1728.1738184212215,0.039844828726459135,0.03918850355838503,29399.333333333332,8,4,8,8_1,8_3,8_0_1 +10641,2,46.0,5,0.0,9,111,4,0,46,5.0,0.0,0.0,2585.5310788062047,0.0,0.0,33982.979999999996,0,43,1,819,201710641,,,,978.0,1.0,0.0,4.0,1.0,2.0,1.5,636.7940433197115,0.0,1921.0,0.0,0.0,30225.0,0,1,3,94.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2585.5310788062047,0.07608311804339128,0.08554279830624334,20150.0,5,3,5,5_1,5_4,5_0_0 +10642,2,56.0,4,0.0,1,400,5,0,69,1.0,0.0,555.170527825376,807.5578590753372,152.16168701571718,0.0,12353.48,0,71,1,8191,201710642,,,,,1.0,0.0,5.0,2.0,3.0,1.8,219.0135557776825,0.0,600.0,0.0,0.0,10920.0,0,4,1,130.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1514.8900739164305,0.12262860942150962,0.13872619724509438,6066.666666666667,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +10643,1,36.0,4,417.0,9,111,2,0,85,1.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,8671.4,0,71,2,8192,201710643,,,580.0,,0.0,1.0,4.0,2.0,3.0,1.6,1385.4099600203187,1000.0,0.0,0.0,0.0,12407.0,0,6,3,82.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1594.1895599657205,0.18384454182320278,0.12849113887045382,7754.375,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10644,2,55.0,2,0.0,5,221,4,47,42,8.0,107.87900862144399,0.0,3736.051893057546,0.0,812.163795923151,62230.21466913114,42,30,1,8193,201710644,,,565.0,,2.0,2.0,4.0,0.0,2.0,1.5,1060.5422546069412,782.8403448581448,2452.0,0.0,0.0,42331.0,1,1,1,105.0,1,3.0,3,9,1,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4656.0946976021405,0.07482048266035893,0.10999255150131441,28220.666666666668,8,4,8,8_1,8_1,8_0_0 +10645,2,47.0,3,0.0,7,400,4,56,63,4.0,0.0,0.0,2566.6880620944467,180.47083808840873,0.0,27407.2658467513,60,50,1,8194,201710645,,,414.0,,2.0,0.0,4.0,2.0,4.0,2.3,2391.5096582635974,0.0,1907.0,0.0,0.0,36607.0,1,1,2,105.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2747.158900182855,0.1002346938050549,0.07504463354502841,15916.08695652174,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10646,2,82.0,3,0.0,4,112,2,72,78,4.0,1645.1548814770208,0.0,1063.284514449194,230.01185246561897,0.0,27080.697678039436,71,50,1,8195,201710646,,,528.0,,0.0,2.0,4.0,0.0,2.0,1.5,2388.4991867521894,0.0,790.0,0.0,0.0,25654.0,5,5,1,86.0,7,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2938.451248391834,0.10850722102240053,0.11454164061712925,17102.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +10647,2,62.0,2,0.0,5,112,2,0,77,5.0,0.0,0.0,1035.0199893815573,0.0,0.0,8275.96,0,70,1,8196,201710647,,,150.0,,0.0,4.0,4.0,0.0,1.0,1.0,2245.4307057743217,0.0,769.0,0.0,0.0,21334.0,0,5,1,85.0,9,3.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1035.0199893815573,0.12506343546628515,0.0485150459070759,21334.0,6,3,6,6_1,6_1,6_0_0 +10648,2,73.0,2,0.0,4,112,2,77,74,9.0,0.0,0.0,1197.87749096175,0.0,0.0,30281.440000000002,70,31,1,8197,201710648,,,125.0,,0.0,2.0,4.0,0.0,2.0,1.5,1646.6433234613532,0.0,890.0,0.0,0.0,50051.0,5,5,1,92.0,9,2.0,3,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1197.87749096175,0.039558141586455264,0.023933138018456174,33367.333333333336,9,5,9,9_1,9_1,9_0_1 +10649,2,54.0,3,0.0,7,112,4,0,67,9.0,0.0,0.0,1891.0313200014145,247.7050718860512,0.0,38052.96,0,44,1,82,201710649,,,240.0,,1.0,1.0,5.0,0.0,1.0,1.0,1399.48355556834,0.0,1405.0,0.0,0.0,40248.0,0,1,1,140.0,8,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2138.7363918874657,0.05620420571454798,0.05313894831761742,40248.0,9,5,9,9_1,9_0,9_0_0 +10650,1,22.0,2,160.0,99,111,2,0,84,1.0,0.0,0.0,484.5347154452023,0.0,0.0,12792.77,0,31,2,820,201710650,,,,240.0,0.0,0.0,1.0,0.0,1.0,1.0,2680.744032419432,0.0,360.0,0.0,0.0,3378.0,0,3,3,24.0,6,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,484.5347154452023,0.03787566847877374,0.1434383408659569,3378.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10651,2,47.0,1,0.0,1,111,2,85,37,9.0,0.0,0.0,1057.7904070496288,0.0,1971.1697568852403,77428.47999999998,71,20,1,8200,201710651,,,400.0,,1.0,0.0,4.0,1.0,3.0,1.8,2705.335526832094,1900.0,0.0,0.0,0.0,69326.0,6,1,1,90.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3028.9601639348693,0.03911945790405378,0.04369154666264993,38514.444444444445,9,5,9,9_1,9_3,9_1_0 +10652,2,69.0,2,0.0,1,112,2,75,74,10.0,1586.456009138882,555.170527825376,874.8543473316153,0.0,0.0,41701.19028022378,33,31,1,8202,201710652,,,500.0,,0.0,2.0,6.0,0.0,2.0,1.5,1146.9973195115554,0.0,650.0,0.0,0.0,65457.0,5,5,1,120.0,9,3.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3016.4808842958732,0.07233560634662263,0.046083396493818436,43638.0,10,5,10,10_1,10_1,10_1_0 +10653,1,68.0,4,272.0,99,112,4,0,72,3.0,0.0,0.0,484.5347154452023,0.0,0.0,12666.640315994118,0,50,2,8203,201710653,,,,208.0,0.0,0.0,2.0,0.0,1.0,1.0,2417.064819309842,0.0,360.0,0.0,0.0,13741.0,0,5,3,25.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,484.5347154452023,0.03825282027100605,0.03526196895751418,13741.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +10654,2,59.0,2,0.0,7,300,2,72,43,8.0,3014.2664173638764,0.0,1285.3629256949116,53.079658261296686,0.0,42050.840000000004,42,33,1,8204,201710654,,,450.0,,1.0,2.0,4.0,0.0,2.0,1.5,2617.1161913177575,0.0,955.0,0.0,0.0,41618.0,5,1,1,230.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4352.709001320085,0.10351063144803016,0.1045871738507397,27745.333333333332,8,4,8,8_1,8_0,8_0_0 +10655,1,20.0,4,223.0,6,111,2,0,84,2.0,0.0,0.0,0.0,0.0,0.0,10943.06,0,41,2,8205,201710655,,,,177.0,0.0,0.0,1.0,0.0,1.0,1.0,2690.3229945561898,0.0,0.0,0.0,0.0,10918.0,0,3,3,35.0,9,7.0,1,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0.0,0.0,0.0,10918.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10656,2,64.0,3,0.0,6,300,5,65,78,7.0,0.0,763.359475759892,1772.5895006703652,0.0,1185.4457011689594,36540.12,41,50,1,8206,201710656,,,930.0,,1.0,1.0,4.0,0.0,2.0,1.5,1657.5724996107997,0.0,1317.0,670.0,0.0,39416.0,1,5,1,102.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3721.3946775992163,0.10184407379065027,0.0944133011365744,26277.333333333332,7,4,7,7_1,7_0,7_0_0 +10657,2,61.0,3,0.0,99,111,2,75,34,9.0,0.0,0.0,495.3021535662068,0.0,3184.779495677801,44845.412547371576,41,30,1,8207,201710657,,,280.0,840.0,1.0,1.0,5.0,0.0,2.0,1.5,2237.3360737129337,0.0,368.0,1800.0,0.0,57444.0,5,1,3,89.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3680.081649244008,0.08206149615318235,0.06406381256952873,38296.0,9,5,9,9_1,9_3,9_0_0 +10658,2,40.0,2,0.0,1,112,2,0,43,5.0,1784.7630102812425,312.283421901774,695.8456885699155,53.079658261296686,0.0,34028.020000000004,0,33,1,8208,201710658,,,192.0,,1.0,0.0,7.0,2.0,3.0,1.8,2694.8177155622757,0.0,517.0,0.0,0.0,35692.0,0,1,2,190.0,5,0.0,2,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2845.9717790142286,0.08363612631631898,0.07973696567898209,19828.888888888887,5,3,5,5_1,5_0,5_1_0 +10659,2,56.0,3,0.0,1,111,1,0,47,8.0,0.0,0.0,497.99401309645793,0.0,0.0,18722.6,0,43,2,821,201710659,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4800.791448479832,0.0,370.0,0.0,0.0,29757.0,0,1,1,31.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,497.99401309645793,0.02659855004627872,0.01673535682684605,29757.0,8,4,8,8_0,8_4,8_1_0 +10660,2,21.0,1,0.0,7,120,2,52,67,6.0,380.74944219333173,0.0,376.8603342351573,53.079658261296686,0.0,8669.451191295746,50,43,1,8210,201710660,,,240.0,,2.0,0.0,2.0,0.0,2.0,1.5,2047.6772898301422,0.0,280.0,0.0,0.0,34189.0,1,1,3,50.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,810.6894346897858,0.09351104433274042,0.02371199610078639,22792.666666666668,6,3,6,6_1,6_1,6_0_0 +10661,2,37.0,2,0.0,4,111,2,0,54,6.0,190.37472109666587,0.0,16.151157181506743,0.0,550.2591239754423,18813.859999999997,0,31,2,8211,201710661,,,,195.0,1.0,0.0,3.0,1.0,2.0,1.3,3424.1753015639993,0.0,12.0,311.0,0.0,29243.0,0,1,3,46.0,7,5.0,2,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,756.785002253615,0.04022486625570803,0.025879184839230414,22494.615384615383,6,3,6,6_0,6_2,6_0_1 +10662,2,67.0,3,0.0,1,112,6,0,78,6.0,1450.0207923529383,0.0,1092.8949692819563,70.77287768172891,0.0,26254.547963718087,0,50,1,8212,201710662,,,179.0,,0.0,0.0,4.0,0.0,1.0,1.0,2328.305991079678,0.0,812.0,0.0,0.0,21579.0,0,5,1,80.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2613.6886393166237,0.09955184309128289,0.12112186103696296,21579.0,6,3,6,6_1,6_0,6_1_0 +10663,2,62.0,3,0.0,5,111,5,0,86,4.0,0.0,693.9631597817199,753.7206684703146,0.0,0.0,16509.559999999998,0,70,1,8214,201710663,,,320.0,,0.0,2.0,4.0,0.0,1.0,1.0,1373.0844477995686,0.0,560.0,0.0,0.0,18107.0,0,5,1,80.0,6,5.0,1,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1447.6838282520346,0.08768760816472607,0.07995161143491658,18107.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10664,2,57.0,3,0.0,4,111,2,22,52,6.0,0.0,0.0,2691.859530251124,169.8549064361494,0.0,25219.399999999994,50,50,8,8215,201710664,,,,,2.0,3.0,4.0,0.0,2.0,1.5,3224.8347038116335,0.0,2000.0,0.0,0.0,34940.0,4,1,1,70.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2861.7144366872735,0.11347274069515033,0.08190367592121561,23293.333333333332,6,3,6,6_0,6_3,6_0_1 +10665,1,57.0,3,256.0,5,111,1,0,77,2.0,0.0,0.0,471.07541779394666,0.0,0.0,8257.960000000001,0,50,2,8216,201710665,,,,85.0,0.0,2.0,4.0,0.0,1.0,1.0,1200.7927887776327,0.0,350.0,0.0,0.0,11902.0,0,7,3,116.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,471.07541779394666,0.05704501084940428,0.03957951754276144,11902.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +10666,2,47.0,3,0.0,6,111,4,0,55,3.0,0.0,0.0,767.1799661215703,53.079658261296686,0.0,18351.299999999996,0,30,2,8217,201710666,,,,520.0,1.0,0.0,2.0,0.0,1.0,1.0,2273.0249236829013,0.0,570.0,0.0,0.0,14807.0,0,1,3,50.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,820.259624382867,0.04469763037947541,0.05539674642958513,14807.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +10667,2,52.0,2,0.0,8,111,4,37,43,10.0,0.0,0.0,2826.45250676368,371.5576078290768,0.0,44746.7,20,33,1,8218,201710667,,,800.0,,2.0,0.0,3.0,1.0,3.0,1.8,2041.9996667207577,0.0,2100.0,0.0,0.0,82245.0,1,1,1,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3198.010114592757,0.0714691835284559,0.03888394570603389,45691.666666666664,10,5,10,10_1,10_3,10_0_0 +10668,2,79.0,1,0.0,1,400,2,0,77,9.0,1170.804534744495,0.0,1014.8310429046737,0.0,0.0,37427.65665845403,0,50,1,8219,201710668,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3544.3135356867638,0.0,754.0,0.0,0.0,35035.0,0,5,1,90.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2185.6355776491687,0.05839627090721121,0.06238434644353272,35035.0,9,5,9,9_1,9_0,9_1_0 +10669,2,68.0,3,0.0,6,111,2,77,77,6.0,0.0,0.0,605.6683943065029,0.0,1450.8439924754427,37190.46134949914,70,50,1,822,201710669,,,396.0,,0.0,2.0,6.0,0.0,2.0,1.5,2738.3421569226775,0.0,450.0,820.0,0.0,33647.0,5,5,1,135.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2056.5123867819457,0.05529676998238263,0.06112023023692887,22431.333333333332,6,3,6,6_1,6_3,6_0_0 +10670,2,58.0,3,0.0,1,112,6,78,56,3.0,0.0,0.0,1534.3599322431405,1992.256506740669,0.0,40103.94,50,50,1,8220,201710670,,,240.0,,1.0,1.0,5.0,1.0,3.0,2.0,2006.3191641485498,0.0,1140.0,0.0,0.0,27883.0,5,1,1,160.0,9,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3526.6164389838095,0.08793690692195852,0.12647908901423124,13941.5,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +10671,2,74.0,3,0.0,4,211,4,0,86,3.0,0.0,0.0,3504.8011083869633,191.08676974066807,0.0,17472.1,0,71,1,8221,201710671,,,,852.0,1.0,3.0,5.0,0.0,3.0,2.0,6452.851747283547,0.0,2604.0,0.0,0.0,30970.0,0,7,3,87.0,1,2.0,5,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3695.887878127631,0.21153083362203923,0.11933767769220636,15485.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +10672,2,32.0,3,0.0,3,111,2,0,53,4.0,0.0,0.0,457.61612014269105,0.0,1256.2185788506883,22041.18,0,50,8,8222,201710672,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2872.179772674741,0.0,340.0,710.0,0.0,16277.0,0,1,1,70.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1713.8346989933793,0.07775603207239265,0.10529180432471459,16277.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +10673,1,74.0,3,225.0,6,112,4,0,78,2.0,0.0,0.0,1380.9239390188266,164.54694061001973,0.0,10506.616722052928,0,70,1,8223,201710673,,,108.0,,0.0,0.0,3.0,0.0,1.0,1.0,2745.1484052408855,0.0,1026.0,0.0,0.0,11780.0,0,5,3,70.0,4,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1545.4708796288462,0.14709500884190155,0.13119447195491055,11780.0,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +10674,2,50.0,4,0.0,9,120,6,0,62,6.0,0.0,0.0,888.3136449828709,0.0,1008.513506964637,76437.12000000001,0,71,1,8224,201710674,,,440.0,,1.0,1.0,4.0,1.0,2.0,1.5,3190.7257200485647,0.0,660.0,570.0,0.0,33288.0,0,1,1,90.0,0,0.0,2,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1896.827151947508,0.024815523556454083,0.0569823105007062,22192.0,6,3,6,6_1,6_0,6_0_0 +10675,2,44.0,3,0.0,8,211,2,56,53,10.0,3172.912018277764,0.0,942.1508355878933,219.39592081335965,0.0,45459.68063198822,50,50,1,8225,201710675,,,500.0,,2.0,0.0,5.0,1.0,3.0,2.0,2233.190417878931,0.0,700.0,0.0,0.0,79760.0,1,1,2,147.0,2,2.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4334.458774679017,0.09534732128384169,0.05434376598143201,39880.0,9,5,9,9_1,9_1,9_0_0 +10676,2,59.0,3,0.0,2,112,1,75,68,2.0,0.0,0.0,728.148002932929,0.0,371.5576078290768,42143.67999999999,20,70,2,8226,201710676,,,,,1.0,2.0,4.0,1.0,3.0,2.0,2406.4879402439537,0.0,541.0,210.0,0.0,27840.0,7,1,1,90.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1099.7056107620058,0.026094199907601947,0.039500919926796184,13920.0,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +10677,2,46.0,3,0.0,5,111,2,0,22,2.0,0.0,0.0,1094.240899047082,0.0,817.426737223969,32905.13214129904,0,31,1,8227,201710677,,,,,1.0,1.0,4.0,1.0,2.0,1.5,2580.1739724058525,0.0,813.0,462.0,0.0,18201.0,0,1,2,84.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1911.667636271051,0.058096336707055135,0.10503091238234442,12134.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10678,2,52.0,2,0.0,9,112,6,56,55,2.0,0.0,0.0,2288.080600713455,0.0,0.0,21984.782568804225,50,31,1,8228,201710678,,,280.0,,2.0,0.0,5.0,2.0,4.0,2.5,1723.5046776702382,0.0,1700.0,0.0,0.0,30125.0,1,1,2,150.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2288.080600713455,0.10407565294551405,0.07595288301123503,12050.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10679,2,38.0,3,0.0,1,111,2,62,48,6.0,0.0,0.0,1823.7348317451365,123.8525359430256,0.0,35985.36,43,43,1,8229,201710679,,,234.0,,2.0,0.0,5.0,2.0,4.0,2.3,1867.1751905886542,0.0,1355.0,0.0,0.0,55325.0,1,1,2,180.0,4,4.0,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1947.587367688162,0.0541216585769369,0.03520266367262832,24054.34782608696,7,4,7,7_1,7_2,7_1_0 +10680,2,27.0,3,0.0,4,112,1,63,37,8.0,0.0,0.0,0.0,0.0,0.0,60419.200000000004,44,44,2,823,201710680,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3833.679794208208,0.0,0.0,0.0,0.0,42123.0,1,1,2,87.0,7,0.0,3,4,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0.0,0.0,0.0,28082.0,8,4,8,8_0,8_0,8_0_1 +10681,2,48.0,3,0.0,8,120,2,54,21,7.0,2712.8397756274885,693.9631597817199,2137.584961178662,0.0,622.4746600690232,122817.38,50,50,1,8230,201710681,,,680.0,,3.0,0.0,5.0,2.0,4.0,2.5,2455.831122112749,600.0,1340.0,0.0,0.0,59740.0,1,1,1,300.0,0,0.0,4,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6166.8625566568935,0.0502116439599745,0.10322836552823725,23896.0,7,4,7,7_1,7_0,7_0_0 +10682,1,90.0,3,256.0,3,111,1,0,86,3.0,0.0,0.0,193.8138861780809,0.0,0.0,8197.320315994117,0,71,2,8231,201710682,,,230.0,9.0,0.0,3.0,3.0,0.0,1.0,1.0,2009.246801016601,0.0,144.0,0.0,0.0,14072.0,0,5,3,60.0,4,4.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,193.8138861780809,0.023643566276155263,0.01377301635716891,14072.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +10683,2,48.0,3,0.0,1,112,2,47,37,8.0,3188.7765783691534,0.0,2237.2685600280947,0.0,1610.8285188979999,33269.06085832843,31,31,1,8232,201710683,,,,,2.0,0.0,5.0,2.0,4.0,2.3,1843.1687907540797,1552.6690054043802,1020.0,0.0,0.0,63981.0,4,1,1,160.0,7,0.0,4,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,7036.873657295248,0.21151404565523432,0.10998380233655693,27817.826086956524,8,4,8,8_1,8_0,8_1_0 +10684,2,48.0,2,0.0,1,112,2,56,62,3.0,0.0,0.0,545.1015548758526,0.0,1574.6965284184685,38430.28,71,71,1,8233,201710684,,,,,2.0,1.0,5.0,2.0,4.0,2.3,2710.586984262215,0.0,405.0,890.0,0.0,36458.0,1,1,2,85.0,9,1.0,4,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2119.7980832943213,0.05515957945907033,0.058143564740093294,15851.304347826088,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +10685,2,50.0,2,0.0,1,112,4,56,62,4.0,441.03477054060926,335.87816933435244,2386.3334735676212,47.77169243516702,0.0,42547.119999999995,33,71,1,8234,201710685,,,,,3.0,1.0,7.0,1.0,4.0,2.3,3222.075231725327,0.0,1773.0,0.0,0.0,37680.0,1,1,1,170.0,9,0.0,5,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3211.01810587775,0.07546969350399628,0.08521810259760483,16382.608695652176,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10686,2,56.0,3,0.0,1,111,2,68,56,2.0,0.0,0.0,1127.8891431752209,0.0,1925.0222729430266,38448.716658454025,50,50,1,8235,201710686,,,406.0,,2.0,0.0,4.0,1.0,3.0,2.0,1221.5377840283945,0.0,838.0,1088.0,0.0,23685.0,4,1,1,100.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3052.9114161182474,0.07940216687172522,0.12889640768918081,11842.5,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +10687,2,40.0,1,0.0,9,111,2,85,31,10.0,0.0,0.0,1391.8294829600377,0.0,2593.6444169542638,72851.2516935026,30,30,1,8238,201710687,,,,,1.0,0.0,5.0,2.0,4.0,2.1,3165.964401288601,2500.0,0.0,0.0,0.0,201023.0,6,1,2,190.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3985.4738999143015,0.05470700649979023,0.01982595971562608,95725.23809523809,10,5,10,10_1,10_3,10_0_0 +10688,2,78.0,3,0.0,4,111,2,75,75,8.0,0.0,0.0,856.0113306198574,0.0,1390.6870464459732,32429.36,44,50,1,8239,201710688,,,338.0,,0.0,2.0,4.0,0.0,2.0,1.5,2836.7043543087702,0.0,636.0,786.0,0.0,46930.0,5,5,1,80.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2246.6983770658308,0.06927976306241723,0.04787339392852825,31286.666666666668,8,4,8,8_1,8_2,8_0_1 +10689,2,71.0,1,0.0,5,112,4,77,74,9.0,0.0,0.0,3230.231436301349,60.15694602946958,0.0,34167.31505288258,50,44,1,824,201710689,,,200.0,,0.0,2.0,4.0,0.0,2.0,1.5,1819.3545039414262,0.0,2400.0,0.0,0.0,56158.0,5,5,1,160.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3290.3883823308183,0.09630222267210954,0.05859162331868689,37438.666666666664,9,5,9,9_1,9_0,9_0_0 +10690,2,46.0,3,0.0,2,400,2,43,43,4.0,3807.4944219333174,0.0,2182.8766050915083,0.0,2174.1197646263972,50994.97356214156,33,33,1,8240,201710690,,,,,2.0,0.0,7.0,3.0,5.0,3.0,1539.3562263450483,2095.622428439403,755.0,0.0,0.0,50290.0,1,1,1,200.0,0,0.0,4,2,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,8164.490791651223,0.16010383418871904,0.16234819629451627,16763.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +10691,2,51.0,4,0.0,2,120,1,0,42,10.0,0.0,0.0,2784.7286840447878,123.8525359430256,0.0,13720.087533755659,0,0,1,8241,201710691,,,660.0,,1.0,3.0,5.0,0.0,1.0,1.0,1607.8263550160066,0.0,2069.0,0.0,0.0,36490.0,0,1,2,106.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2908.5812199878133,0.2119943632161095,0.07970899479276003,36490.0,9,5,9,9_1,9_1,9_0_1 +10692,2,75.0,4,0.0,9,300,2,72,72,1.0,0.0,0.0,2018.894647688343,0.0,0.0,17687.53087530163,71,44,1,8242,201710692,,,,,0.0,0.0,3.0,0.0,2.0,1.5,1537.817774821923,0.0,1500.0,0.0,0.0,15050.0,5,5,1,80.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2018.894647688343,0.11414225433282328,0.1341458237666673,10033.333333333334,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10693,2,60.0,2,0.0,6,112,2,0,77,1.0,0.0,888.2728445206016,2074.077768058491,58.38762408742635,0.0,20325.480000000003,0,60,1,8243,201710693,,,110.0,,0.0,2.0,6.0,0.0,1.0,1.0,1821.9525352223297,0.0,1541.0,0.0,0.0,9870.0,0,6,1,136.0,7,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3020.7382366665192,0.14861829765725182,0.3060525062478743,9870.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10694,2,71.0,3,0.0,1,112,6,71,71,3.0,0.0,0.0,2587.444739431146,0.0,259.3934157529979,19948.551369431185,50,71,1,8244,201710694,,,283.0,,0.0,2.0,5.0,0.0,2.0,1.5,1523.1610165141483,250.02792793933332,1819.0,0.0,0.0,23758.0,5,5,1,106.0,9,0.0,3,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2846.838155184144,0.1427090169337604,0.11982650707905311,15838.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10695,2,52.0,2,0.0,1,112,2,52,13,8.0,2855.620816449988,0.0,538.3719060502248,0.0,0.0,12324.330875301628,50,50,1,8246,201710695,,,350.0,,2.0,2.0,8.0,0.0,2.0,1.5,1517.3265585090226,0.0,400.0,0.0,0.0,50220.0,1,1,1,120.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3393.992722500213,0.2753896139953438,0.06758249148745944,33480.0,9,5,9,9_1,9_0,9_1_0 +10696,2,67.0,2,0.0,9,300,4,75,75,7.0,0.0,0.0,1636.6505943926834,0.0,0.0,64868.48,70,70,1,8247,201710696,,,391.0,,0.0,2.0,7.0,0.0,2.0,1.5,1665.29773598748,0.0,1216.0,0.0,0.0,37765.0,5,5,1,164.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1636.6505943926834,0.025230290495363593,0.04333776233000618,25176.666666666668,7,4,7,7_1,7_1,7_0_0 +10697,2,47.0,1,0.0,99,111,2,21,21,9.0,0.0,0.0,874.8543473316153,0.0,1769.3219420432229,33677.75569949955,50,31,1,8248,201710697,,,500.0,,2.0,0.0,3.0,1.0,3.0,2.0,2665.542267169471,0.0,650.0,1000.0,0.0,69030.0,1,1,1,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2644.1762893748382,0.07851402905135187,0.03830474126285439,34515.0,9,5,9,9_1,9_4,9_0_0 +10698,2,53.0,3,0.0,1,111,2,0,34,10.0,0.0,0.0,194.8561276144053,0.0,363.11021837359687,41914.837038047044,0,10,1,8249,201710698,,,150.0,,1.0,2.0,7.0,0.0,1.0,1.0,1774.5551275109935,350.0,0.0,0.0,0.0,109835.0,0,1,2,250.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,557.9663459880021,0.013311905411478123,0.005080041389247527,109835.0,10,5,10,10_1,10_3,10_1_0 +10699,1,53.0,3,437.0,8,111,2,0,56,1.0,0.0,0.0,484.5347154452023,0.0,1104.056891834971,17788.78,0,50,2,825,201710699,,,,26.0,1.0,0.0,4.0,2.0,3.0,2.0,928.5069272591699,0.0,360.0,624.0,0.0,17768.0,0,1,3,75.0,8,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1588.5916072801733,0.08930301050888108,0.08940745200811422,8884.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10700,2,42.0,2,0.0,9,112,4,0,46,3.0,0.0,0.0,1749.7086946632305,0.0,0.0,16114.52,0,31,1,8250,201710700,,,300.0,,1.0,0.0,4.0,2.0,3.0,1.8,644.4701142781608,0.0,1300.0,0.0,0.0,26450.0,0,1,2,120.0,8,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1749.7086946632305,0.10857963468122106,0.06615155745418641,14694.444444444443,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10701,2,64.0,2,0.0,1,112,2,75,74,10.0,0.0,499.65347504283835,1047.9948322083262,0.0,3708.0531189437233,60670.75379569489,70,30,1,8251,201710701,,,240.0,,0.0,3.0,7.0,0.0,2.0,1.5,2398.2262160803853,475.38817101068753,582.0,1817.0,0.0,56248.0,5,5,1,150.0,8,0.0,3,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5255.701426194888,0.08662660503433246,0.09343801426174954,37498.666666666664,9,5,9,9_1,9_0,9_1_0 +10702,2,52.0,1,0.0,6,120,4,63,43,10.0,0.0,0.0,3095.6384597887923,148.62304313163074,0.0,63505.907597354555,50,33,1,8252,201710702,,,,,2.0,2.0,8.0,0.0,2.0,1.5,1841.95375672131,0.0,2300.0,0.0,0.0,67374.0,1,1,1,150.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3244.261502920423,0.051085979646019075,0.04815301901208809,44916.0,10,5,10,10_1,10_0,10_0_0 +10703,1,38.0,3,80.0,1,111,2,0,46,5.0,0.0,0.0,518.1829595733413,0.0,681.1889476866409,11825.380000000003,0,30,2,8253,201710703,,,385.0,270.0,1.0,0.0,3.0,1.0,2.0,1.3,1672.4242093583744,0.0,385.0,385.0,0.0,26360.0,0,1,3,56.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1199.3719072599822,0.10142354049172052,0.045499692991653344,20276.923076923078,5,3,5,5_0,5_3,5_1_0 +10704,2,50.0,2,0.0,8,111,2,0,63,6.0,0.0,0.0,640.2415621616174,0.0,1193.076431798961,14158.976658454032,0,50,8,8254,201710704,,,240.0,328.0,1.0,0.0,3.0,0.0,1.0,1.0,2056.220466437773,1150.0,0.0,0.0,0.0,21224.0,0,1,3,81.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1833.3179939605784,0.12948096731736203,0.08637947578027602,21224.0,6,3,6,6_0,6_2,6_0_0 +10705,2,67.0,2,0.0,6,111,2,0,75,7.0,0.0,0.0,484.5347154452023,0.0,1130.5967209656194,23544.219999999998,0,33,1,8257,201710705,,,206.0,,0.0,0.0,3.0,0.0,1.0,1.0,1910.5004805634846,0.0,360.0,639.0,0.0,25722.0,0,5,1,68.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1615.1314364108216,0.06859991269240696,0.06279182942270514,25722.0,7,4,7,7_1,7_2,7_0_0 +10706,2,33.0,2,0.0,6,111,2,38,37,10.0,0.0,0.0,4306.975248401798,0.0,0.0,113312.44,12,12,1,8258,201710706,,,444.0,,2.0,0.0,8.0,2.0,4.0,2.1,2746.5444745784807,0.0,3200.0,0.0,0.0,152874.0,1,1,2,200.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4306.975248401798,0.03800972998553202,0.028173366618272553,72797.14285714286,10,5,10,10_1,10_4,10_0_0 +10707,1,59.0,4,167.0,1,300,2,0,43,3.0,0.0,0.0,565.290501352736,0.0,1486.2304313163072,13400.3,0,50,1,8259,201710707,,,154.0,147.0,1.0,4.0,3.0,0.0,1.0,1.0,1880.9204670215727,0.0,420.0,840.0,0.0,14218.0,0,1,3,63.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2051.5209326690433,0.1530951495615056,0.1442904017913239,14218.0,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +10708,2,76.0,3,0.0,8,300,5,71,71,3.0,0.0,0.0,1211.3367886130059,175.16287226227908,0.0,19815.36,71,70,1,826,201710708,,,396.0,,0.0,3.0,4.0,0.0,2.0,1.5,1819.978741155067,0.0,900.0,0.0,0.0,20820.0,5,5,1,100.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1386.499660875285,0.06997095489939546,0.06659460426874568,13880.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10709,2,46.0,2,0.0,4,111,2,63,54,8.0,0.0,0.0,3032.379760827891,0.0,0.0,29090.96,50,31,1,8260,201710709,,,400.0,,2.0,0.0,4.0,2.0,4.0,2.3,3491.2288694432173,0.0,2253.0,0.0,0.0,61410.0,1,1,1,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3032.379760827891,0.104237871862183,0.04937925029845124,26700.000000000004,7,4,7,7_1,7_4,7_0_1 +10710,1,46.0,4,385.0,1,111,2,0,68,2.0,0.0,0.0,1127.8891431752209,0.0,0.0,8970.565846751302,0,71,2,8261,201710710,,,,,1.0,0.0,1.0,1.0,2.0,1.3,880.8372450925772,0.0,838.0,0.0,0.0,14000.0,0,1,3,15.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1127.8891431752209,0.1257322182840547,0.08056351022680149,10769.23076923077,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +10711,2,76.0,2,0.0,3,112,2,77,74,8.0,0.0,1845.942005019375,1037.7118489118084,1981.6405750884096,0.0,30467.114661438776,70,60,1,8263,201710711,,,204.0,,0.0,2.0,7.0,0.0,2.0,1.5,1986.575069495158,0.0,771.0,0.0,0.0,41012.0,5,5,1,125.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4865.294429019593,0.15969002917028555,0.11863099651369338,27341.333333333332,8,4,8,8_1,8_0,8_0_1 +10712,2,72.0,3,0.0,5,120,5,77,78,3.0,0.0,69.396315978172,107.67438121004496,247.7050718860512,0.0,17188.856658454028,71,71,1,8264,201710712,,,360.0,,0.0,2.0,4.0,0.0,2.0,1.5,2130.7229203856177,0.0,80.0,0.0,0.0,20813.0,5,5,1,111.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,424.77576907426817,0.024712275953813943,0.02040915625206689,13875.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10713,2,41.0,1,0.0,7,111,2,0,31,10.0,1903.7472109666587,83.27557917380639,710.6509159862967,0.0,0.0,44245.58,0,10,1,8265,201710713,,,165.0,,1.0,0.0,7.0,1.0,2.0,1.3,1745.253913073415,0.0,528.0,0.0,0.0,361070.0,0,1,2,320.0,6,4.0,2,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2697.6737061267618,0.060970467697039156,0.007471331614719478,277746.1538461538,10,5,10,10_1,10_2,10_0_0 +10714,2,39.0,2,0.0,1,111,2,43,33,9.0,0.0,0.0,1179.0344742499922,0.0,1974.5632873202367,50778.33999999999,33,31,1,8267,201710714,,,396.0,,2.0,0.0,7.0,2.0,4.0,2.1,2226.3942587491665,0.0,876.0,1116.0,0.0,67649.0,1,1,2,130.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3153.5977615702286,0.06210517637185913,0.04661706398572379,32213.809523809523,9,5,9,9_1,9_3,9_1_0 +10715,2,56.0,2,0.0,9,111,2,21,43,7.0,0.0,346.98157989085996,865.4118200957732,0.0,1851.9661879684907,33724.96254100692,44,33,1,8268,201710715,,,223.0,,2.0,1.0,5.0,0.0,2.0,1.5,1224.8188645556886,403.69394140513884,476.0,810.0,0.0,38824.0,1,1,1,100.0,4,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3064.359587955124,0.09086324660046996,0.07892951751378333,25882.666666666668,7,4,7,7_1,7_2,7_0_0 +10716,1,46.0,4,388.0,8,111,2,67,56,1.0,0.0,0.0,920.6159593458843,0.0,976.665712007859,5918.46,50,50,2,8269,201710716,,,,12.0,2.0,2.0,4.0,2.0,4.0,2.3,1389.2546901423416,0.0,684.0,552.0,0.0,18976.0,4,4,3,85.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1897.2816713537434,0.3205701603717425,0.09998322467083386,8250.434782608696,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10717,1,70.0,5,170.0,99,111,1,0,78,2.0,0.0,0.0,1076.7438121004495,0.0,0.0,10085.0,0,71,2,827,201710717,,,,,0.0,8.0,1.0,0.0,1.0,1.0,4183.423642015816,0.0,800.0,0.0,0.0,11560.0,0,5,3,10.0,7,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1076.7438121004495,0.10676686287560233,0.09314392838239183,11560.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +10718,2,46.0,2,0.0,9,112,4,78,64,4.0,0.0,0.0,1615.1157181506744,0.0,0.0,40880.62,70,50,1,8271,201710718,,,250.0,,1.0,1.0,4.0,0.0,2.0,1.5,2937.4641705022627,0.0,1200.0,0.0,0.0,28503.0,7,1,2,110.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.03950810232698707,0.05666476224084042,19002.0,5,3,5,5_1,5_0,5_0_0 +10719,1,42.0,4,250.0,3,112,6,0,69,1.0,0.0,0.0,1938.1388617808093,123.8525359430256,0.0,30344.6,0,71,1,8272,201710719,,,280.0,,2.0,2.0,4.0,2.0,3.0,2.0,2824.28883985304,0.0,1440.0,0.0,0.0,16682.0,0,1,2,88.0,9,1.0,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,2061.991397723835,0.06795249888691349,0.12360576655819655,8341.0,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +10720,2,80.0,3,0.0,1,111,2,78,78,5.0,0.0,0.0,492.2819732631414,0.0,1777.397025863136,25827.714751675034,71,71,2,8274,201710720,,,205.0,,0.0,1.0,2.0,0.0,2.0,1.5,3058.074237387386,207.32000658319512,280.0,883.0,0.0,27637.0,5,5,1,57.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2269.678999126277,0.08787765471891311,0.0821246517033787,18424.666666666668,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +10721,2,80.0,3,0.0,1,112,4,0,75,5.0,0.0,0.0,3078.1413728421603,297.2460862632615,0.0,26790.751191295745,0,33,1,8275,201710721,,,110.0,,0.0,2.0,4.0,0.0,1.0,1.0,1679.9234693005874,0.0,2287.0,0.0,0.0,20058.0,0,5,5,100.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3375.387459105422,0.12599077327111596,0.16828135701991334,20058.0,5,3,5,5_1,5_0,5_1_0 +10722,2,75.0,3,0.0,6,111,2,75,78,9.0,0.0,0.0,1615.1157181506744,0.0,0.0,27355.600000000002,60,71,2,8277,201710722,,,,727.0,0.0,3.0,4.0,0.0,2.0,1.5,2099.3817627623725,0.0,1200.0,0.0,0.0,59262.0,5,5,3,85.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1615.1157181506744,0.059041502220776525,0.0272538172547446,39508.0,9,5,9,9_0,9_4,9_0_0 +10723,2,80.0,3,0.0,4,300,2,72,72,1.0,2855.620816449988,0.0,565.290501352736,233.5504963497054,0.0,31678.351191295744,70,70,1,8279,201710723,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1936.743459241067,0.0,420.0,0.0,0.0,12427.0,5,5,1,110.0,0,1.0,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3654.4618141524297,0.11536149063075497,0.2940743392735519,8284.666666666666,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +10724,2,36.0,4,0.0,4,111,4,0,62,3.0,0.0,0.0,538.3719060502248,0.0,0.0,15213.6,0,41,1,828,201710724,,,,,1.0,1.0,3.0,0.0,1.0,1.0,2283.026028995191,0.0,400.0,0.0,0.0,15100.0,0,4,1,90.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,538.3719060502248,0.03538754180800236,0.03565376861259767,15100.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +10725,2,60.0,2,0.0,1,111,2,0,43,9.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,56107.324260267786,0,30,1,8280,201710725,,,240.0,,2.0,1.0,3.0,1.0,2.0,1.5,2368.9101139426416,1440.0,0.0,0.0,0.0,49133.0,0,1,1,78.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2295.6329663506376,0.040915031978744396,0.046722833255666,32755.333333333332,9,5,9,9_1,9_3,9_1_0 +10726,2,61.0,1,0.0,5,112,2,63,74,10.0,1085.1359102509955,0.0,632.5869896090142,53.079658261296686,0.0,72184.25349974936,71,50,1,8281,201710726,,,532.0,,1.0,2.0,5.0,0.0,2.0,1.5,2670.6810998622527,0.0,470.0,0.0,0.0,57537.0,1,5,1,85.0,9,3.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1770.8025581213064,0.024531701475966016,0.03077676205087694,38358.0,9,5,9,9_1,9_1,9_0_0 +10727,2,39.0,3,0.0,9,111,2,63,21,3.0,0.0,0.0,527.6044679292202,0.0,1857.7880391453841,40908.28031599412,41,31,1,8282,201710727,,,1200.0,,2.0,0.0,4.0,1.0,3.0,1.8,3025.4210393222747,0.0,391.9999999999999,1050.0,0.0,25794.0,1,1,3,220.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2385.3925070746045,0.05831075001561421,0.09247858056426318,14330.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10728,1,41.0,5,128.0,4,111,1,0,65,3.0,0.0,0.0,856.0113306198574,0.0,0.0,20294.871191295744,0,31,2,8283,201710728,,,,181.0,1.0,0.0,4.0,2.0,3.0,1.8,809.2412498963162,0.0,636.0,0.0,0.0,25127.0,0,1,3,75.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,856.0113306198574,0.04217870232095839,0.03406739087912832,13959.444444444443,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +10729,2,57.0,2,0.0,2,111,5,37,45,10.0,0.0,0.0,1345.929765125562,0.0,0.0,45684.2,30,30,1,8286,201710729,,,200.0,,2.0,2.0,5.0,0.0,2.0,1.5,2805.060656857689,0.0,1000.0,0.0,0.0,63600.0,1,1,1,180.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1345.929765125562,0.029461603029615535,0.02116241769065349,42400.0,10,5,10,10_1,10_3,10_0_1 +10730,2,40.0,1,0.0,8,111,2,21,34,7.0,0.0,0.0,1695.871504058208,2523.0530893536356,2523.0530893536356,90955.6,12,10,1,8287,201710730,,,,,2.0,0.0,6.0,2.0,4.0,2.1,4209.002917787482,0.0,1260.0,1426.0,0.0,46056.0,1,1,1,200.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,6741.977682765479,0.07412383275758148,0.1463865225544007,21931.42857142857,6,3,6,6_1,6_3,6_0_0 +10731,2,66.0,3,0.0,6,112,4,67,78,8.0,0.0,0.0,711.5032316891713,0.0,1325.8710259470195,34270.98,70,71,1,8288,201710731,,,,,1.0,1.0,5.0,0.0,2.0,1.5,1161.1836038246756,1278.0,0.0,0.0,0.0,40535.0,5,5,1,100.0,9,3.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2037.3742576361908,0.059448964040018426,0.05026210084214113,27023.333333333332,7,4,7,7_1,7_1,7_0_0 +10732,2,69.0,3,0.0,4,112,2,0,77,2.0,0.0,0.0,1345.929765125562,0.0,0.0,26996.819999999996,0,44,1,8289,201710732,,,220.0,,0.0,2.0,4.0,0.0,1.0,1.0,907.8870209274604,0.0,1000.0,0.0,0.0,11550.0,0,5,1,97.0,10,1.0,1,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1345.929765125562,0.049855122385731435,0.11653071559528676,11550.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +10733,2,82.0,3,0.0,6,300,2,77,77,4.0,0.0,0.0,2207.3248148059215,56.61830214538313,0.0,23105.4,50,50,1,829,201710733,,,349.0,,0.0,3.0,4.0,0.0,2.0,1.5,3131.9736565153344,0.0,1640.0,0.0,0.0,27235.0,5,5,1,108.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2263.9431169513045,0.09798329035425937,0.08312623891871873,18156.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10734,1,50.0,3,174.0,1,400,5,0,69,1.0,0.0,0.0,1017.5229024349248,0.0,0.0,11718.56,0,71,1,8290,201710734,,,120.0,,1.0,0.0,2.0,0.0,1.0,1.0,2278.2717423376516,0.0,756.0,0.0,0.0,8178.0,0,4,3,55.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1017.5229024349248,0.08683002881198072,0.12442197388541512,8178.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +10735,1,26.0,2,107.0,1,111,1,52,52,2.0,0.0,0.0,1059.2467251538174,0.0,0.0,52899.700000000004,43,50,2,8293,201710735,,,,517.0,2.0,0.0,2.0,2.0,4.0,2.1,5524.20330143272,0.0,787.0,0.0,0.0,26344.0,1,1,3,42.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1059.2467251538174,0.020023681139095632,0.040208272287952374,12544.761904761905,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +10736,1,57.0,4,256.0,1,120,1,0,56,4.0,1903.7472109666587,0.0,471.07541779394666,0.0,0.0,8620.501750603258,0,60,2,8297,201710736,,,,284.0,2.0,0.0,3.0,2.0,3.0,2.0,2013.9157547296675,0.0,350.0,0.0,0.0,34782.0,0,4,3,80.0,0,0.0,2,2,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,2374.8226287606053,0.2754854296728629,0.06827734543041243,17391.0,4,2,4_1,4_0_1,4_0_1,4_1_0_1 +10737,2,66.0,2,0.0,1,111,2,75,74,9.0,0.0,0.0,857.3669615033833,0.0,1597.6849608438263,34507.72,31,20,1,8298,201710737,,,268.0,,0.0,2.0,5.0,0.0,2.0,1.5,1559.0394477698871,1540.0,0.0,0.0,0.0,52470.0,5,5,1,130.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2455.0519223472097,0.07114500530163133,0.0467896306908178,34980.0,9,5,9,9_1,9_3,9_1_0 +10738,2,44.0,2,0.0,9,112,4,42,34,7.0,0.0,188.75797946062784,2123.877169368137,106.15931652259337,0.0,50948.04063198823,12,10,1,8299,201710738,,,434.0,,2.0,0.0,7.0,3.0,5.0,2.8,1666.7425676184685,0.0,1578.0,0.0,0.0,73118.0,1,1,2,135.0,8,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2418.7944653513578,0.04747571124124239,0.033080697849385346,26113.57142857143,7,4,7,7_1,7_1,7_0_0 +10739,1,35.0,3,416.0,9,400,5,85,63,4.0,0.0,832.755791738064,1076.7438121004495,398.09743695972514,0.0,37775.04051346417,50,60,1,830,201710739,,,180.0,,1.0,0.0,5.0,3.0,5.0,2.4,1781.9741944619632,0.0,800.0,0.0,0.0,40835.0,6,1,3,180.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2307.5970407982386,0.061087877324069076,0.05651027404917935,17014.583333333336,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +10740,1,37.0,3,200.0,4,111,3,46,47,8.0,0.0,0.0,1063.284514449194,0.0,0.0,30497.98,50,50,2,8300,201710740,,,,550.0,2.0,1.0,3.0,1.0,3.0,1.8,5016.705303332661,0.0,790.0,0.0,0.0,49086.0,1,1,3,50.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1063.284514449194,0.03486409639094766,0.021661665534963,27270.0,7,4,7,7_0,7_4,7_0_1 +10741,2,84.0,3,0.0,4,111,2,0,77,3.0,2547.848350677045,0.0,442.8108927263099,77.85016544990181,0.0,19045.931191295746,0,70,1,8301,201710741,,,380.0,,0.0,2.0,5.0,0.0,1.0,1.0,2942.0663087687753,0.0,329.0,0.0,0.0,15796.0,0,5,1,120.0,7,5.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3068.5094088532564,0.1611110204081598,0.1942586356579676,15796.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +10742,2,56.0,3,0.0,2,300,2,46,42,9.0,2617.6524150791556,0.0,1063.284514449194,44.23304855108057,0.0,67280.76000000001,60,31,1,8302,201710742,,,150.0,,2.0,3.0,6.0,0.0,2.0,1.5,1880.040083413471,0.0,790.0,0.0,0.0,56877.0,1,1,2,130.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3725.16997807943,0.05536753713958388,0.06549519099248255,37918.0,9,5,9,9_1,9_0,9_0_1 +10743,2,35.0,3,0.0,9,120,2,54,37,10.0,0.0,0.0,1113.4635863680303,0.0,2074.915533563411,31348.2,30,43,1,8304,201710743,,,300.0,,2.0,0.0,5.0,0.0,2.0,1.5,3090.6162447659367,2000.0,0.0,0.0,0.0,78527.0,1,1,2,160.0,0,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3188.379119931441,0.10170852297520881,0.04060232938901831,52351.333333333336,10,5,10,10_1,10_1,10_0_0 +10744,2,53.0,4,0.0,4,221,2,0,62,4.0,2538.3296146222115,0.0,403.7789295376686,318.4779495677801,0.0,41292.36,0,50,1,8306,201710744,,,200.0,,1.0,0.0,4.0,0.0,1.0,1.0,2307.3958605212574,0.0,300.0,0.0,0.0,18630.0,0,1,2,100.0,1,3.0,1,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,3260.58649372766,0.07896343279307988,0.17501806192848418,18630.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +10745,2,70.0,2,0.0,1,400,2,77,74,8.0,1697.507929778604,555.170527825376,1597.4827614067813,159.23897478389006,644.3314075591999,29310.756216933725,50,50,1,8307,201710745,,,326.0,,0.0,1.0,5.0,0.0,2.0,1.5,1836.0033095841009,621.067602161752,930.0,0.0,0.0,42277.0,5,5,1,90.0,0,0.0,3,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4653.731601353851,0.15877214381337754,0.11007714836326729,28184.666666666668,8,4,8,8_1,8_0,8_1_0 +10746,2,57.0,3,0.0,6,111,1,0,52,6.0,0.0,0.0,332.4446519860138,0.0,0.0,16003.5,0,71,2,8308,201710746,,,,273.0,1.0,1.0,1.0,0.0,1.0,1.0,4939.4821703672,0.0,247.0,0.0,0.0,22639.0,0,1,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,332.4446519860138,0.0207732466014318,0.014684599672512648,22639.0,6,3,6,6_0,6_4,6_0_0 +10747,2,61.0,3,0.0,5,111,4,0,74,9.0,0.0,0.0,1345.929765125562,106.15931652259337,0.0,39127.8960049547,0,31,1,8310,201710747,,,380.0,,0.0,0.0,5.0,0.0,1.0,1.0,2800.0382726330326,0.0,1000.0,0.0,0.0,39868.0,0,5,2,100.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1452.0890816481553,0.03711135097742745,0.036422421030604876,39868.0,9,5,9,9_1,9_3,9_0_0 +10748,2,63.0,2,0.0,1,112,5,86,21,6.0,0.0,693.9631597817199,3221.2790881321416,0.0,966.4971113388,41775.52432540058,70,70,1,8311,201710748,,,239.0,,1.0,3.0,4.0,0.0,2.0,1.5,1757.364690134339,931.6014032426281,2008.0,0.0,0.0,30690.0,6,1,1,120.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4881.739359252661,0.11685644735964305,0.15906612444616036,20460.0,5,3,5,5_1,5_0,5_1_0 +10749,2,52.0,3,0.0,2,111,2,78,56,4.0,0.0,0.0,1238.1715080412496,0.0,2307.3060733225125,43335.90285385248,50,71,1,8312,201710749,,,961.0,,2.0,0.0,5.0,2.0,4.0,2.5,5259.3537300786165,2224.0,0.0,0.0,0.0,43570.0,5,1,1,127.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3545.477581363762,0.08181386212999081,0.08137428463079555,17428.0,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +10750,2,84.0,2,0.0,1,112,2,78,78,3.0,0.0,0.0,807.5578590753372,0.0,3892.5082724950903,11275.2,71,71,1,8313,201710750,,,495.0,,0.0,4.0,4.0,0.0,2.0,1.5,2402.8247556068873,0.0,600.0,2200.0,0.0,22065.0,5,5,1,130.0,10,0.0,3,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4700.066131570427,0.41684991233596097,0.2130100218250817,14710.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10751,1,61.0,4,270.0,3,111,4,0,86,3.0,0.0,0.0,942.1508355878933,254.7823596542241,0.0,5840.72,0,71,2,8314,201710751,,,,130.0,0.0,0.0,4.0,1.0,2.0,1.5,2449.322726571249,0.0,700.0,0.0,0.0,20716.0,0,4,3,75.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1196.9331952421173,0.20492904902856451,0.05777820019512055,13810.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +10752,2,62.0,2,0.0,3,111,1,0,86,7.0,0.0,0.0,449.5405415519377,0.0,0.0,21139.36,0,50,2,8315,201710752,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1945.549403512203,0.0,334.0,0.0,0.0,25610.0,0,5,1,80.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,449.5405415519377,0.021265570081210484,0.01755332063849815,25610.0,7,4,7,7_0,7_2,7_0_1 +10753,2,58.0,2,0.0,1,112,2,31,31,10.0,0.0,0.0,1324.394888883553,0.0,4671.009926994108,92845.45569949955,10,10,1,8317,201710753,,,330.0,,2.0,2.0,7.0,0.0,2.0,1.5,1876.7668316672148,0.0,984.0,2640.0,0.0,79433.0,1,1,2,208.0,8,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,5995.404815877661,0.06457402541360974,0.07547750702954265,52955.333333333336,10,5,10,10_1,10_1,10_1_0 +10754,2,47.0,1,0.0,8,111,2,43,43,9.0,0.0,0.0,797.0795949471911,0.0,1485.340745122228,64654.61909708946,33,33,2,8319,201710754,,,,,2.0,1.0,5.0,1.0,3.0,1.8,1698.663584163326,1431.7120105331123,0.0,0.0,0.0,83504.0,1,1,1,98.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2282.420340069419,0.03530173670410141,0.02733306596174338,46391.11111111111,10,5,10,10_0,10_3,10_0_0 +10755,2,51.0,3,0.0,1,300,6,0,47,7.0,0.0,20.818894793451598,3329.843667906171,0.0,1081.0209847218637,28168.04771373229,0,31,1,832,201710755,,,264.0,,2.0,2.0,7.0,0.0,2.0,1.5,3414.9103583254164,1041.9903530871388,2043.0,0.0,0.0,34691.0,0,1,1,160.0,0,0.0,5,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4431.683547421487,0.15733016332761263,0.12774735658878345,23127.333333333332,6,3,6,6_1,6_0,6_1_0 +10756,0,31.0,2,0.0,6,211,4,0,46,4.0,0.0,0.0,0.0,0.0,0.0,15032.965846751298,0,50,1,8320,201710756,,,,,1.0,0.0,5.0,0.0,1.0,1.0,3492.0602569589496,0.0,0.0,0.0,0.0,16945.0,0,1,5,120.0,1,2.0,1,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0.0,0.0,0.0,16945.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10757,2,90.0,4,0.0,3,112,1,0,77,4.0,0.0,0.0,207.1042270644536,0.0,385.93428924279436,17932.839999999997,0,70,2,8321,201710757,,,,505.0,0.0,2.0,3.0,0.0,1.0,1.0,4281.756992897918,372.0,0.0,0.0,0.0,16745.0,0,5,3,59.0,10,4.0,1,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,593.038516307248,0.03306997197918724,0.035415856453105285,16745.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +10758,1,43.0,4,383.0,1,211,1,0,52,1.0,0.0,0.0,565.290501352736,0.0,0.0,5478.570875301628,0,71,2,8323,201710758,,,,,1.0,2.0,4.0,1.0,2.0,1.3,1477.1889379140168,0.0,420.0,0.0,0.0,10456.0,0,4,3,67.0,1,3.0,2,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,565.290501352736,0.10318210975441901,0.0540637434346534,8043.076923076923,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +10759,2,56.0,3,0.0,99,111,2,0,52,7.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,10663.312027330718,0,31,1,8324,201710759,,,120.0,370.0,1.0,2.0,5.0,0.0,1.0,1.0,2122.0648573194408,1000.0,0.0,0.0,0.0,26849.0,0,1,3,90.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1594.1895599657205,0.14950228933371879,0.05937612424916088,26849.0,7,4,7,7_1,7_2,7_0_0 +10760,2,33.0,1,0.0,1,111,2,43,38,10.0,0.0,0.0,1300.168153111293,0.0,2310.734456308449,66863.95999999999,33,12,1,8325,201710760,,,326.0,,2.0,0.0,6.0,0.0,2.0,1.5,2396.013974418344,0.0,966.0,1306.0,0.0,158211.0,1,1,2,160.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3610.9026094197416,0.05400372053075741,0.022823334720213775,105474.0,10,5,10,10_1,10_2,10_1_0 +10761,2,57.0,4,0.0,6,111,2,0,78,2.0,0.0,0.0,2855.7999341713653,70.77287768172891,1935.7717593507307,40781.03808231641,0,60,1,8326,201710761,,,350.0,,0.0,2.0,5.0,0.0,1.0,1.0,3236.3394302230217,1865.8800592487562,1350.0,0.0,0.0,11405.0,0,7,1,105.0,4,4.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,4862.344571203825,0.11923052476960484,0.42633446481401355,11405.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10762,2,68.0,3,0.0,4,111,2,43,74,9.0,0.0,0.0,767.1799661215703,0.0,1910.8676974066807,27586.628161188146,31,41,1,8327,201710762,,,280.0,,1.0,3.0,5.0,0.0,2.0,1.5,1328.3177953338286,0.0,570.0,1080.0,0.0,55873.0,5,5,1,105.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2678.047663528251,0.09707774534388434,0.0479309803219489,37248.666666666664,9,5,9,9_1,9_3,9_0_1 +10763,2,31.0,2,0.0,9,400,5,85,13,6.0,0.0,0.0,1033.6740596164316,311.40066179960724,0.0,21914.980836034974,50,50,1,8329,201710763,,,,,1.0,0.0,6.0,2.0,4.0,2.1,1926.3488502150913,0.0,768.0,0.0,0.0,45461.0,4,1,2,103.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1345.0747214160388,0.06137695175185012,0.029587442454324337,21648.095238095237,6,3,6,6_1,6_0,6_0_0 +10764,2,65.0,3,0.0,1,400,5,0,13,9.0,645.687595719525,131.8530003585268,807.5578590753372,247.7050718860512,0.0,15819.425846751301,0,31,1,8330,201710764,,,84.0,,1.0,0.0,4.0,0.0,1.0,1.0,1698.0851983394014,0.0,600.0,0.0,0.0,32360.0,0,1,1,157.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1832.80352703944,0.11585777794937022,0.0566379334684623,32360.0,9,5,9,9_1,9_0,9_1_0 +10765,2,57.0,1,0.0,99,111,6,85,68,8.0,0.0,0.0,732.1857922283057,0.0,626.3399674833009,35111.5,71,71,2,8331,201710765,,,313.0,,1.0,0.0,3.0,0.0,2.0,1.5,2863.4195237087024,0.0,544.0,354.0,0.0,44639.0,6,1,2,73.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1358.5257597116065,0.03869176081089121,0.030433606481139956,29759.333333333332,8,4,8,8_0,8_3,8_0_0 +10766,1,25.0,2,360.0,2,111,2,0,42,1.0,0.0,0.0,714.8436224482755,0.0,1332.0957725477097,17758.01087530163,0,30,2,8335,201710766,,,200.0,390.0,2.0,0.0,5.0,0.0,2.0,1.5,2697.9465660767523,1284.0,0.0,0.0,0.0,10751.0,0,3,3,72.0,9,7.0,5,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2046.9393949959851,0.11526850666833015,0.1903952557897856,7167.333333333333,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10767,1,44.0,5,414.0,8,300,6,0,68,1.0,0.0,0.0,538.3719060502248,84.9274532180747,0.0,7268.860000000001,0,50,1,8336,201710767,,,360.0,,1.0,1.0,4.0,2.0,3.0,1.6,705.8355314084233,0.0,400.0,0.0,0.0,12568.0,0,4,3,69.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,623.2993592682994,0.08574925906790053,0.04959415652994108,7855.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +10768,1,60.0,4,170.0,4,111,2,0,34,2.0,0.0,0.0,436.08124390068207,276.0142229587428,516.6420070766211,12814.39665845403,0,10,2,8337,201710768,,,180.0,,1.0,4.0,3.0,0.0,2.0,1.5,2217.855018859655,0.0,324.0,292.0,0.0,17210.0,0,1,3,65.0,6,5.0,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1228.737473936046,0.09588726700803445,0.0713967155105198,11473.333333333334,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10769,1,38.0,5,200.0,8,300,2,0,55,3.0,0.0,0.0,645.8088800934576,0.0,1203.4510094667783,25439.005846751297,0,42,1,8338,201710769,,,150.0,250.0,1.0,0.0,4.0,2.0,3.0,1.6,455.417623959422,1160.0,0.0,0.0,0.0,23120.0,0,1,3,80.0,0,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1849.259889560236,0.07269387415139089,0.07998528934084065,14450.0,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +10770,2,35.0,1,0.0,2,111,1,0,34,9.0,0.0,0.0,309.56384597887927,0.0,0.0,20714.32,0,10,2,8339,201710770,,,120.0,,1.0,0.0,3.0,0.0,1.0,1.0,4418.975175243701,0.0,230.0,0.0,0.0,36474.0,0,1,2,55.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,309.56384597887927,0.01494443679439534,0.008487246969865638,36474.0,9,5,9,9_0,9_2,9_0_1 +10771,2,54.0,3,0.0,1,111,2,74,22,8.0,0.0,0.0,967.5998565538183,0.0,1803.1015986666039,68682.52,41,30,1,834,201710771,,,561.0,,1.0,1.0,4.0,2.0,4.0,2.5,2044.6866785251868,1738.0,0.0,0.0,0.0,79843.0,5,1,1,120.0,9,7.0,4,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2770.7014552204223,0.04034070758062491,0.03470187061133002,31937.2,9,5,9,9_1,9_3,9_1_0 +10772,2,90.0,2,0.0,1,111,2,0,74,10.0,0.0,0.0,67.2964882562781,0.0,230.01185246561897,27284.76753821486,0,12,1,8340,201710772,,,270.0,,0.0,3.0,11.0,0.0,1.0,1.0,2392.511620809893,0.0,50.0,130.0,0.0,77000.0,0,5,1,230.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,297.3083407218971,0.010896495280947108,0.0038611472821025593,77000.0,10,5,10,10_1,10_3,10_1_0 +10773,2,27.0,3,0.0,4,111,2,45,62,5.0,666.3115238383306,0.0,812.8284180486621,0.0,1514.6883395012899,69340.64,42,50,1,8341,201710773,,,,,2.0,0.0,5.0,2.0,4.0,2.1,1024.1788266237515,1460.0,0.0,0.0,0.0,42035.0,1,1,3,95.0,6,5.0,4,3,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2993.8282813882824,0.04317566554603884,0.071222273852463,20016.666666666664,5,3,5,5_1,5_2,5_0_1 +10774,2,55.0,3,0.0,2,111,2,52,47,6.0,0.0,0.0,1360.734992541943,0.0,2178.0353106552075,49804.68000000001,50,50,1,8342,201710774,,,550.0,,2.0,0.0,6.0,2.0,4.0,2.3,773.5083679712372,0.0,1011.0,1231.0,0.0,53811.0,1,1,1,140.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3538.7703031971505,0.07105296737569942,0.06576295373059692,23396.08695652174,6,3,6,6_1,6_2,6_0_1 +10775,2,22.0,2,0.0,1,112,6,63,43,6.0,0.0,0.0,1292.0925745205395,0.0,0.0,46781.36331690805,43,30,1,8343,201710775,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3262.0118815699307,0.0,960.0,0.0,0.0,33780.0,1,1,3,42.0,8,2.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1292.0925745205395,0.02761981444977561,0.03825022423092184,22520.0,6,3,6,6_1,6_1,6_1_0 +10776,2,48.0,3,0.0,1,120,5,85,21,3.0,0.0,971.5484236944079,3230.231436301349,0.0,0.0,22809.91119129575,71,71,1,8345,201710776,,,,,2.0,0.0,4.0,1.0,3.0,2.0,1957.1484068470406,0.0,2400.0,0.0,0.0,29318.0,6,1,1,100.0,0,3.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4201.779859995757,0.1842085146565215,0.14331741114659108,14659.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +10777,2,62.0,1,0.0,4,112,2,72,31,10.0,0.0,416.377895869032,1807.6163212374981,0.0,3514.3259172207145,68706.47406509997,33,12,1,8346,201710777,,,310.0,,1.0,2.0,6.0,0.0,2.0,1.5,2129.875273149879,829.2800263327805,1000.0,1500.0,0.0,127985.0,5,1,1,220.0,7,4.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,5738.320134327245,0.0835193511588171,0.044835880254148884,85323.33333333333,10,5,10,10_1,10_2,10_0_1 +10778,2,59.0,2,0.0,9,112,4,52,77,7.0,0.0,0.0,1262.4821196877772,0.0,0.0,45950.92,42,50,1,835,201710778,,,512.0,,1.0,2.0,4.0,1.0,3.0,1.8,3220.649185867283,0.0,938.0,0.0,0.0,47407.0,1,5,2,110.0,8,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1262.4821196877772,0.02747457765128048,0.026630711069837307,26337.222222222223,7,4,7,7_1,7_0,7_0_0 +10779,2,28.0,1,0.0,99,111,2,0,31,10.0,0.0,0.0,1722.7900993607193,0.0,0.0,36856.200000000004,0,30,2,8350,201710779,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3972.885400939659,0.0,1280.0,0.0,0.0,47515.0,0,1,3,33.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1722.7900993607193,0.0467435628024788,0.03625781541325306,47515.0,10,5,10,10_0,10_4,10_0_0 +10780,2,47.0,3,0.0,1,300,5,0,62,7.0,0.0,346.98157989085996,807.5578590753372,0.0,0.0,18950.982382591494,0,71,1,8351,201710780,,,50.0,,1.0,0.0,4.0,1.0,2.0,1.5,2393.259779878937,0.0,600.0,0.0,0.0,35032.0,0,1,1,120.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1154.5394389661972,0.06092240579711399,0.0329567092648492,23354.666666666668,6,3,6,6_1,6_0,6_1_0 +10781,2,54.0,3,0.0,6,112,2,67,64,7.0,1903.7472109666587,0.0,969.0694308904046,0.0,0.0,15098.560000000001,70,70,1,8352,201710781,,,420.0,,2.0,2.0,3.0,0.0,2.0,1.5,2898.7056832346234,0.0,720.0,0.0,0.0,36200.0,1,1,1,90.0,8,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2872.8166418570636,0.19027090277861355,0.07935957574190783,24133.333333333332,7,4,7,7_1,7_0,7_0_0 +10782,1,30.0,5,302.0,99,111,2,0,52,3.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,17799.58,0,50,2,8353,201710782,,,220.0,,1.0,0.0,3.0,1.0,2.0,1.3,1335.9433855870984,1700.0,0.0,0.0,0.0,18914.0,0,1,3,50.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2710.1222519417247,0.1522576516941256,0.14328657354032592,14549.23076923077,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10784,2,81.0,3,0.0,6,111,2,77,75,4.0,0.0,0.0,1996.0138416812083,159.23897478389006,0.0,23926.96,70,70,1,8355,201710784,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2285.5003914915605,0.0,1483.0,0.0,0.0,26765.0,5,5,1,100.0,8,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2155.2528164650985,0.09007633299278715,0.08052504451578922,17843.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10785,2,48.0,3,0.0,5,300,2,52,45,5.0,1110.5192063972174,0.0,1211.3367886130059,0.0,0.0,64719.159999999996,50,42,1,8356,201710785,,,,,2.0,0.0,6.0,2.0,4.0,2.3,1679.1557617018705,0.0,900.0,0.0,0.0,44202.0,1,1,1,138.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2321.8559950102235,0.03587586728582731,0.05252830177390669,19218.26086956522,5,3,5,5_1,5_0,5_0_0 +10786,2,57.0,2,0.0,3,300,2,0,56,7.0,0.0,624.566843803548,2422.6735772260117,113.23660429076627,0.0,33244.56,0,50,1,8357,201710786,,,115.0,,2.0,3.0,6.0,0.0,2.0,1.5,3819.881990683417,0.0,1800.0,0.0,0.0,34978.0,0,1,1,140.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3160.477025320326,0.09506749451099146,0.09035613886786911,23318.666666666668,6,3,6,6_1,6_0,6_0_1 +10787,2,50.0,3,0.0,1,111,2,0,43,6.0,237.96840137083234,0.0,1009.4473238441715,106.15931652259337,0.0,27432.9,0,33,1,8358,201710787,,,440.0,,1.0,0.0,7.0,2.0,3.0,1.6,3023.7093017843727,0.0,750.0,0.0,0.0,37250.0,0,1,1,240.0,6,4.0,2,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1353.5750417375973,0.04934130338890884,0.03633758501308986,23281.25,6,3,6,6_1,6_2,6_1_0 +10788,2,59.0,4,0.0,2,111,2,0,56,3.0,0.0,0.0,551.164475252175,0.0,1027.0831891138882,18451.32,0,41,2,8359,201710788,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2173.275430861659,990.0,0.0,0.0,0.0,15557.0,0,4,2,56.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1578.2476643660632,0.08553575919587668,0.10144935812599236,15557.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +10789,2,38.0,3,0.0,8,112,4,0,43,9.0,0.0,0.0,1776.6272899657417,0.0,0.0,67449.85285223326,0,33,1,8360,201710789,,,370.0,,2.0,0.0,3.0,1.0,2.0,1.5,2254.619950179788,0.0,1320.0,0.0,0.0,63946.0,0,1,2,110.0,6,2.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1776.6272899657417,0.026339972807026185,0.027783243517432547,42630.666666666664,10,5,10,10_1,10_1,10_0_0 +10790,2,73.0,2,0.0,1,111,2,0,77,3.0,793.228004569441,0.0,742.9532303493102,58.38762408742635,0.0,13265.531711336602,0,50,1,8361,201710790,,,,,0.0,0.0,2.0,0.0,1.0,1.0,1788.9393284415332,0.0,552.0,0.0,0.0,14623.0,0,5,1,54.0,4,4.0,1,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1594.5688590061775,0.12020391596090141,0.1090452615062694,14623.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +10791,2,78.0,2,0.0,4,120,5,77,77,8.0,0.0,1179.737371628924,860.0491199152341,0.0,268.9369351905699,25438.952664423516,60,71,1,8362,201710791,,,387.0,,0.0,2.0,4.0,0.0,2.0,1.5,2048.272082148467,0.0,639.0,152.0,0.0,42664.0,5,5,1,120.0,0,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2308.723426734728,0.0907554433230849,0.05411408744456047,28442.666666666668,8,4,8,8_1,8_0,8_0_1 +10792,2,54.0,3,0.0,1,111,6,0,64,3.0,0.0,0.0,524.9126083989692,0.0,764.3470789626723,21754.6,0,71,2,8363,201710792,,,240.0,490.0,1.0,2.0,3.0,0.0,1.0,1.0,3479.0873628895442,0.0,390.0,432.0,0.0,15412.0,0,1,3,65.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1289.2596873616415,0.05926377351740053,0.08365297737877248,15412.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +10793,2,26.0,2,0.0,4,111,1,13,43,8.0,0.0,0.0,484.5347154452023,0.0,194.62541362475451,28788.08,43,30,2,8364,201710793,,,,370.0,2.0,0.0,2.0,0.0,2.0,1.5,2108.0211203105646,0.0,360.0,110.0,0.0,47106.0,1,1,3,58.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,679.1601290699568,0.023591713274034143,0.014417698999489595,31404.0,8,4,8,8_0,8_2,8_0_1 +10794,2,30.0,2,0.0,4,111,1,0,43,5.0,0.0,0.0,161.51157181506744,0.0,0.0,23275.8858467513,0,41,2,8365,201710794,,,,550.0,1.0,0.0,1.0,0.0,1.0,1.0,7494.049909283563,0.0,120.0,0.0,0.0,20457.0,0,1,3,15.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,161.51157181506744,0.006939008589338404,0.007895173867872486,20457.0,5,3,5,5_0,5_4,5_0_1 +10795,1,68.0,4,351.0,4,111,1,85,78,1.0,0.0,0.0,269.1859530251124,0.0,424.6372660903735,19062.060000000005,30,71,2,8366,201710795,,,,,1.0,0.0,4.0,3.0,5.0,2.6,3181.9625183791177,0.0,200.0,240.0,0.0,20522.0,6,5,3,87.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,693.8232191154859,0.036398123766029786,0.033808752515129416,7893.076923076923,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10796,2,69.0,3,0.0,1,112,6,0,77,4.0,0.0,0.0,942.1508355878933,0.0,0.0,13913.360000000002,0,71,1,8367,201710796,,,370.0,,0.0,0.0,3.0,0.0,2.0,1.5,1953.0491196718178,0.0,700.0,0.0,0.0,26371.0,0,5,1,100.0,9,0.0,5,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,942.1508355878933,0.06771555077909959,0.035726776974247976,17580.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10797,2,26.0,3,0.0,1,111,1,0,62,4.0,0.0,0.0,565.290501352736,0.0,176.9321942043223,22700.727538214865,0,44,2,8369,201710797,,,,470.0,1.0,0.0,2.0,0.0,1.0,1.0,3505.438526423081,0.0,420.0,100.0,0.0,16822.0,0,1,3,54.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,742.2226955570583,0.032695987135548214,0.04412214335733315,16822.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +10798,2,74.0,2,0.0,6,111,2,0,75,3.0,0.0,0.0,269.1859530251124,0.0,530.7965826129669,22050.879999999997,0,30,2,837,201710798,,,150.0,,0.0,2.0,3.0,0.0,1.0,1.0,2999.201087302125,0.0,200.0,300.0,0.0,13707.0,0,5,1,77.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,799.9825356380793,0.03627893923680504,0.058363065268700616,13707.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +10799,2,64.0,4,0.0,5,112,4,0,78,5.0,0.0,0.0,2821.068787703178,0.0,0.0,26923.920000000002,0,50,1,8370,201710799,,,347.0,,0.0,3.0,6.0,0.0,1.0,1.0,2021.6490628142506,0.0,2096.0,0.0,0.0,18707.0,0,5,1,132.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2821.068787703178,0.10477927388371298,0.15080284319790335,18707.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10801,1,39.0,3,150.0,9,111,2,0,54,3.0,0.0,0.0,901.7729426341265,0.0,0.0,20113.5,0,43,2,8373,201710801,,,280.0,307.0,1.0,0.0,3.0,1.0,2.0,1.3,675.756635229981,0.0,670.0,0.0,0.0,19566.0,0,1,3,67.0,7,5.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,901.7729426341265,0.04483421297308407,0.04608877351702578,15050.76923076923,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +10802,2,71.0,1,0.0,5,111,6,77,77,10.0,3172.912018277764,0.0,3173.111037968183,44.23304855108057,2150.8575103897006,60370.35586409904,50,50,1,8375,201710802,,,800.0,,1.0,1.0,7.0,2.0,5.0,2.6,808.7849315950829,2073.200065831951,1500.0,0.0,0.0,163760.0,5,5,1,280.0,9,7.0,5,9,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,8541.113615186729,0.14147860308151583,0.05215628734237133,62984.61538461538,10,5,10,10_1,10_3,10_0_0 +10803,1,29.0,4,285.0,1,111,4,0,21,3.0,0.0,0.0,597.5928157157495,0.0,53.079658261296686,10202.08,0,50,2,8376,201710803,,,,,1.0,1.0,2.0,0.0,1.0,1.0,4463.386126848933,0.0,444.0,30.0,0.0,15545.0,0,1,1,45.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,650.6724739770461,0.06377841322328841,0.041857347956066014,15545.0,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +10804,2,40.0,3,0.0,5,111,4,0,46,3.0,0.0,0.0,121.13367886130058,0.0,0.0,19761.07202733072,0,43,1,8377,201710804,,,300.0,,1.0,0.0,6.0,1.0,2.0,1.5,603.2679233141549,0.0,90.0,0.0,0.0,21693.0,0,1,3,120.0,8,6.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,121.13367886130058,0.006129914343400277,0.0055839984723782135,14462.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +10805,2,29.0,4,0.0,9,112,4,63,55,5.0,0.0,0.0,1569.3541061364053,49.54101437721024,0.0,50001.931711336605,60,43,1,8378,201710805,,,744.0,,2.0,0.0,3.0,1.0,3.0,1.8,2449.9445054996704,0.0,1166.0,0.0,0.0,35566.0,1,1,2,80.0,6,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1618.8951205136157,0.032376651563374985,0.04551805433598424,19758.888888888887,5,3,5,5_1,5_0,5_0_0 +10806,2,66.0,4,0.0,7,112,4,0,78,2.0,0.0,971.5484236944079,2074.077768058491,70.77287768172891,0.0,16814.739999999998,0,71,1,8379,201710806,,,236.0,,0.0,2.0,4.0,0.0,1.0,1.0,2318.9671351525053,0.0,1541.0,0.0,0.0,11440.0,0,5,1,69.0,9,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3116.399069434628,0.1853373331633215,0.2724125060694605,11440.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10807,2,43.0,1,0.0,8,112,2,55,33,5.0,0.0,333.10231669522557,3679.7719778532864,169.8549064361494,0.0,43121.99999999999,43,20,1,838,201710807,,,590.0,,2.0,0.0,5.0,2.0,4.0,2.5,2960.945923585125,0.0,2734.0,0.0,0.0,50265.0,1,1,2,120.0,8,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,4182.7292009846615,0.09699756970884148,0.08321355219306996,20106.0,5,3,5,5_1,5_1,5_0_0 +10808,2,77.0,2,0.0,5,111,2,77,72,4.0,0.0,0.0,1009.4473238441715,0.0,1079.286384646366,23408.21087530163,70,50,1,8380,201710808,,,200.0,,0.0,5.0,4.0,0.0,2.0,1.5,1527.9208743129666,0.0,750.0,610.0,0.0,31254.0,5,5,1,100.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2088.7337084905375,0.08923081390617484,0.06683092431338508,20836.0,5,3,5,5_1,5_2,5_0_0 +10809,1,50.0,3,343.0,5,112,1,0,56,4.0,0.0,0.0,605.6683943065029,0.0,0.0,48167.92,0,50,2,8382,201710809,,,,,1.0,3.0,4.0,2.0,3.0,1.8,875.0206987397472,0.0,450.0,0.0,0.0,31232.0,0,1,3,75.0,8,1.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,605.6683943065029,0.012574103143887114,0.01939255873163752,17351.11111111111,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +10810,1,52.0,3,40.0,1,111,2,78,68,3.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,28354.760000000002,50,71,1,8383,201710810,,,660.0,328.0,1.0,3.0,3.0,0.0,2.0,1.5,2709.433307927906,1800.0,0.0,0.0,0.0,20840.0,7,1,3,80.0,8,7.0,3,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,2869.541207938297,0.10120139292091686,0.1376939159279413,13893.333333333334,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +10811,1,50.0,4,50.0,9,111,5,0,43,2.0,0.0,249.82673752141918,672.964882562781,0.0,0.0,20034.539999999997,0,33,1,8385,201710811,,,500.0,,1.0,0.0,4.0,2.0,3.0,1.8,884.0006350084055,0.0,500.0,0.0,0.0,19947.0,0,1,2,90.0,6,4.0,2,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,922.7916200842002,0.046060035323206835,0.04626217577000051,11081.666666666666,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +10812,1,33.0,3,314.0,9,112,2,85,63,3.0,0.0,0.0,1345.929765125562,0.0,1415.4575536345783,45514.64000000001,50,50,1,8386,201710812,,,1000.0,,1.0,0.0,5.0,4.0,6.0,2.7,1036.7547729390935,0.0,1000.0,800.0,0.0,42030.0,8,1,3,98.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2761.3873187601403,0.060670310009266024,0.06570038826457626,15566.666666666666,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +10813,2,62.0,2,0.0,4,300,2,13,13,6.0,645.687595719525,235.94747432578478,160.16564204994188,54.84898020333991,0.0,30937.50753375566,50,71,1,8387,201710813,,,150.0,,2.0,4.0,8.0,0.0,2.0,1.5,2622.44451119084,0.0,119.0,0.0,0.0,36086.0,1,1,1,159.0,0,0.0,3,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1096.6496922985914,0.03544725414941866,0.03038989337412269,24057.333333333332,7,4,7,7_1,7_0,7_0_1 +10814,2,40.0,2,0.0,9,112,5,11,34,9.0,0.0,249.82673752141918,683.7323206837855,0.0,0.0,40580.74,31,0,1,839,201710814,,,,,2.0,2.0,5.0,1.0,3.0,1.8,2112.8688457357375,0.0,508.0,0.0,0.0,64850.0,1,1,3,100.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,933.5590582052047,0.02300497867227667,0.014395667821205932,36027.777777777774,9,5,9,9_1,9_0,9_0_0 +10815,2,50.0,5,0.0,3,111,1,0,67,2.0,0.0,0.0,40.37789295376686,0.0,583.8762408742635,6891.12,0,71,2,8390,201710815,150.0,150.0,,430.0,1.0,0.0,3.0,0.0,1.0,1.0,2343.05746084847,0.0,30.0,330.0,0.0,11320.0,0,1,3,70.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,624.2541338280304,0.09058819666876072,0.05514612489646911,11320.0,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +10816,2,54.0,3,0.0,99,400,5,52,78,1.0,285.5620816449988,582.9290542166448,1227.4879457945126,382.17353948133615,0.0,24405.68,70,71,1,8391,201710816,,,290.0,590.0,1.0,4.0,4.0,1.0,3.0,1.8,2425.9933840508606,0.0,912.0,0.0,0.0,14853.0,1,7,3,100.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2478.1526211374926,0.1015399948347062,0.1668452582735806,8251.666666666666,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10817,2,65.0,3,0.0,2,111,2,42,43,10.0,0.0,0.0,607.0143240716285,0.0,2114.3397207416515,44625.09787408203,31,33,1,8392,201710817,,,240.0,,2.0,4.0,6.0,0.0,2.0,1.5,1260.758445972753,0.0,451.0,1195.0,0.0,76099.0,1,1,2,105.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2721.35404481328,0.06098258994281836,0.03576070703706067,50732.666666666664,10,5,10,10_1,10_3,10_0_1 +10818,2,60.0,2,0.0,3,111,1,0,33,8.0,0.0,0.0,444.15682249143543,0.0,0.0,28743.920000000002,0,50,2,8393,201710818,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2328.0112894320796,0.0,330.0,0.0,0.0,32913.0,0,1,1,58.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,444.15682249143543,0.015452200760767334,0.01349487504911237,32913.0,9,5,9,9_0,9_2,9_0_1 +10819,2,61.0,2,0.0,3,111,1,0,52,5.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,11250.420000000002,0,50,2,8394,201710819,,,80.0,,1.0,1.0,3.0,0.0,1.0,1.0,949.276949969009,500.0,0.0,0.0,0.0,18490.0,0,1,1,65.0,4,3.0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,797.0947799828602,0.07085022425677087,0.04310950675948406,18490.0,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +10820,2,77.0,2,0.0,6,400,4,0,77,6.0,0.0,0.0,1615.1157181506744,123.8525359430256,0.0,14474.803533741926,0,70,1,8395,201710820,,,420.0,,0.0,0.0,4.0,0.0,1.0,1.0,4938.417036146513,0.0,1200.0,0.0,0.0,21854.0,0,5,1,101.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1738.9682540937001,0.12013760670671805,0.07957208081329277,21854.0,6,3,6,6_1,6_0,6_0_0 +10821,2,48.0,3,0.0,5,111,2,0,52,5.0,0.0,0.0,296.1045483276236,0.0,530.7965826129669,18147.18784974977,0,50,2,8396,201710821,,,,291.0,1.0,0.0,1.0,0.0,1.0,1.0,3664.8223131587574,0.0,220.0,300.0,0.0,19850.0,0,1,3,40.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,826.9011309405905,0.04556635098434783,0.04165748770481564,19850.0,5,3,5,5_0,5_3,5_0_0 +10822,2,59.0,2,0.0,5,112,4,75,37,10.0,0.0,0.0,4037.789295376686,0.0,0.0,37867.3943438364,20,20,1,8398,201710822,,,480.0,,1.0,3.0,6.0,0.0,2.0,1.5,2231.2507578615946,0.0,3000.0,0.0,0.0,173772.0,6,1,1,148.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4037.789295376686,0.10662971047634041,0.02323613295224021,115848.0,10,5,10,10_1,10_0,10_0_0 +10823,2,23.0,4,0.0,1,111,4,0,54,3.0,0.0,0.0,0.0,0.0,0.0,10070.951191295744,0,43,2,840,201710823,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3143.516725502525,0.0,0.0,0.0,0.0,13490.0,0,1,3,35.0,7,5.0,1,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,13490.0,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +10824,2,51.0,3,0.0,1,111,2,67,38,8.0,0.0,0.0,839.8601734383507,0.0,1203.1389205893915,47656.26,31,50,1,8401,201710824,,,380.0,,2.0,0.0,4.0,1.0,3.0,2.0,2298.5256642603445,0.0,624.0,680.0,0.0,54217.0,1,1,2,85.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2042.999094027742,0.04286948019059284,0.03768189117855547,27108.5,7,4,7,7_1,7_3,7_1_0 +10826,2,68.0,3,0.0,1,111,2,77,75,9.0,0.0,0.0,932.0136435683031,0.0,1832.1076501667867,59758.07071389687,31,12,2,8403,201710826,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2512.330375304028,196.95400625403536,611.0,920.0,0.0,51514.0,5,5,1,127.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2764.1212937350897,0.04625519633940068,0.05365767157928116,34342.666666666664,9,5,9,9_0,9_4,9_1_0 +10827,1,58.0,4,272.0,99,111,2,0,22,1.0,0.0,0.0,266.49409349486126,0.0,0.0,12686.8,0,20,2,8404,201710827,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3137.2966429555477,0.0,198.0,0.0,0.0,7664.0,0,4,3,35.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,266.49409349486126,0.02100561950175468,0.0347721938276176,7664.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10828,2,79.0,3,0.0,4,111,1,77,78,6.0,0.0,0.0,328.4068626906371,0.0,189.31744779862484,25705.44,60,60,2,8407,201710828,,,,,0.0,1.0,3.0,0.0,2.0,1.5,3223.37036475383,0.0,244.0,107.0,0.0,34780.0,5,5,1,62.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,517.7243104892619,0.020140651569833544,0.014885690353342782,23186.666666666668,6,3,6,6_0,6_4,6_0_1 +10829,1,52.0,3,101.0,9,111,1,0,52,6.0,0.0,0.0,484.5347154452023,0.0,997.8975753123777,36010.165846751304,0,41,2,8408,201710829,,,372.0,387.0,1.0,0.0,3.0,1.0,2.0,1.5,2343.3339900899573,0.0,360.0,564.0,0.0,34027.0,0,1,3,80.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1482.4322907575802,0.041167049801058314,0.043566352918493555,22684.666666666668,6,3,6,6_0,6_3,6_0_0 +10830,1,34.0,3,272.0,8,111,1,0,67,1.0,0.0,0.0,605.6683943065029,0.0,1415.4575536345783,9862.640000000001,0,41,8,8410,201710830,,,100.0,24.0,1.0,0.0,2.0,0.0,1.0,1.0,1892.0152055614747,0.0,450.0,800.0,0.0,9408.0,0,4,3,45.0,7,5.0,1,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,2021.1259479410812,0.20492747864071698,0.21483056419441765,9408.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10831,1,80.0,3,206.0,1,400,6,0,72,4.0,2165.5124524745743,0.0,1345.929765125562,481.25556823575664,0.0,17060.281750603255,0,71,1,8411,201710831,,,407.0,,1.0,0.0,4.0,1.0,2.0,1.5,4421.7661131910545,0.0,1000.0,0.0,0.0,26292.0,0,5,3,68.0,0,1.0,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,3992.697785835893,0.23403469205276814,0.15185979711835892,17528.0,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +10832,2,39.0,3,0.0,1,111,1,65,46,9.0,0.0,0.0,581.4416585342427,0.0,0.0,25209.550000000003,50,31,2,8412,201710832,,,,,2.0,0.0,2.0,1.0,3.0,1.8,5264.745137124791,0.0,432.0,0.0,0.0,58316.0,1,1,2,34.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,581.4416585342427,0.023064341034815878,0.009970533962107187,32397.777777777777,9,5,9,9_0,9_4,9_1_0 +10833,2,83.0,3,0.0,5,111,4,78,77,5.0,0.0,0.0,1278.633276869284,0.0,106.15931652259337,21087.835368876687,71,70,1,8413,201710833,,,140.0,,0.0,4.0,5.0,0.0,2.0,1.5,2074.5791187615914,0.0,950.0,60.0,0.0,31095.0,5,5,1,120.0,8,6.0,3,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1384.7925933918773,0.06566783973644245,0.04453425288283895,20730.0,5,3,5,5_1,5_2,5_0_0 +10834,0,45.0,2,0.0,4,111,2,23,23,10.0,1903.7472109666587,0.0,0.0,176.9321942043223,0.0,54739.94063198823,43,50,1,8414,201710834,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2293.47193779488,0.0,0.0,0.0,0.0,108490.0,1,1,5,120.0,10,8.0,4,1,1,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2080.679405170981,0.03801026053643727,0.019178536318287226,43396.0,10,5,10,10_1,10_4,10_0_1 +10835,2,63.0,2,0.0,1,111,2,0,75,6.0,0.0,0.0,850.6276115593552,0.0,1282.7584079813366,37714.92,70,31,1,8415,201710835,,,316.0,,0.0,2.0,6.0,0.0,2.0,1.5,3338.776717371885,0.0,632.0,725.0,0.0,31534.0,8,5,1,120.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2133.386019540692,0.05656610220943573,0.06765351745863804,21022.666666666668,5,3,5,5_1,5_4,5_1_0 +10836,2,26.0,4,0.0,5,111,2,22,21,1.0,0.0,0.0,646.0462872602698,0.0,1061.5931652259337,21772.3316935026,71,31,1,8416,201710836,,,162.0,,2.0,0.0,5.0,0.0,2.0,1.5,2747.8869589894534,0.0,480.0,600.0,0.0,13963.0,4,1,1,110.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1707.6394524862035,0.07843162948853132,0.12229746132537445,9308.666666666666,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +10837,2,60.0,3,0.0,2,111,2,0,52,8.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,20704.04,0,50,1,8417,201710837,,,250.0,576.0,1.0,2.0,2.0,0.0,1.0,1.0,2229.384666826941,1000.0,0.0,0.0,0.0,30130.0,0,1,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,1594.1895599657205,0.07699896058767856,0.05291037371276869,30130.0,8,4,8,8_1,8_4,8_0_1 +10838,2,71.0,3,0.0,5,111,6,56,77,7.0,1586.456009138882,0.0,718.7264945770501,0.0,0.0,17042.92,60,70,1,8418,201710838,,,,,1.0,3.0,4.0,0.0,2.0,1.5,2086.5042831188152,0.0,534.0,0.0,0.0,38726.0,1,5,1,105.0,8,6.0,3,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2305.1825037159324,0.13525748543770272,0.059525448115372935,25817.333333333332,7,4,7,7_1,7_2,7_0_0 +10839,2,66.0,2,0.0,2,111,6,77,74,7.0,0.0,0.0,2917.975730792218,61.9262679715128,0.0,24826.84,60,42,1,8419,201710839,,,654.0,,0.0,3.0,4.0,0.0,2.0,1.5,1223.0347634564425,0.0,2168.0,0.0,0.0,39211.0,5,5,1,82.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2979.901998763731,0.12002743799709231,0.07599658256009108,26140.666666666668,7,4,7,7_1,7_3,7_0_1 +10840,2,57.0,2,0.0,5,111,1,54,48,9.0,0.0,0.0,672.964882562781,0.0,1061.5931652259337,71847.76000000001,50,43,1,842,201710840,,,200.0,,2.0,4.0,4.0,0.0,2.0,1.5,1515.7187597926927,0.0,500.0,600.0,0.0,60066.0,1,1,2,100.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1734.5580477887147,0.024142131192241963,0.028877535507420417,40044.0,9,5,9,9_1,9_3,9_0_0 +10841,2,73.0,3,0.0,4,111,2,0,77,4.0,0.0,0.0,786.6620237690134,0.0,1465.9278244625496,18843.674661438774,0,50,1,8420,201710841,,,310.0,,0.0,2.0,4.0,0.0,1.0,1.0,2133.0331225760115,1413.0,0.0,0.0,0.0,18263.0,0,5,1,87.0,7,6.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2252.589848231563,0.11954090105584378,0.12334172086905562,18263.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +10842,2,27.0,2,0.0,1,111,2,31,34,10.0,0.0,0.0,904.4648021643776,0.0,530.7965826129669,65548.48000000001,30,10,2,8421,201710842,,,,,2.0,0.0,2.0,0.0,2.0,1.5,5465.3866151617,0.0,672.0,300.0,0.0,73182.0,1,1,2,34.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1435.2613847773446,0.021896181036956834,0.01961221864361926,48788.0,10,5,10,10_0,10_4,10_1_0 +10843,2,53.0,3,0.0,5,111,2,52,53,7.0,0.0,0.0,780.639263772826,0.0,1884.3278682760324,55376.37999999999,31,50,1,8422,201710843,,,290.0,,2.0,1.0,5.0,1.0,3.0,2.0,2190.237898708908,0.0,580.0,1065.0,0.0,53600.0,1,1,1,100.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2664.9671320488583,0.04812461796977084,0.04971953604568766,26800.0,7,4,7,7_1,7_3,7_0_0 +10844,2,52.0,1,0.0,9,111,2,46,37,10.0,0.0,0.0,2907.2082926712137,0.0,0.0,80437.86000000002,12,20,1,8423,201710844,,,850.0,,2.0,0.0,6.0,2.0,4.0,2.5,1910.688728906067,0.0,2160.0,0.0,0.0,804859.0,1,1,2,110.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2907.2082926712137,0.03614228788124414,0.00361207154628477,321943.6,10,5,10,10_1,10_3,10_0_0 +10845,2,51.0,4,0.0,99,111,2,0,53,7.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,36658.06,0,41,2,8424,201710845,,,,270.0,1.0,2.0,2.0,0.0,1.0,1.0,4969.425838804155,960.0,0.0,0.0,0.0,27583.0,0,1,3,41.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1530.4219775670917,0.041748580736871835,0.055484246730489496,27583.0,8,4,8,8_0,8_4,8_0_0 +10846,2,48.0,5,0.0,7,300,2,0,46,2.0,0.0,0.0,403.7789295376686,0.0,796.1948739194503,16916.43087530163,0,31,1,8425,201710846,,,240.0,,1.0,2.0,4.0,0.0,1.0,1.0,2255.537285203905,0.0,300.0,450.0,0.0,13021.0,0,4,2,85.0,0,1.0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1199.973803457119,0.07093540075342415,0.09215680849835796,13021.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10847,1,26.0,2,174.0,1,111,4,0,42,1.0,0.0,0.0,565.290501352736,0.0,0.0,18421.111191295746,0,20,8,8426,201710847,,,,260.0,1.0,0.0,2.0,0.0,1.0,1.0,5002.152324541258,0.0,420.0,0.0,0.0,9448.0,0,1,3,37.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,565.290501352736,0.030687101091916993,0.059831763479332764,9448.0,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +10848,1,36.0,3,380.0,99,111,6,0,55,1.0,0.0,971.5484236944079,740.261370819059,0.0,0.0,8284.56,0,50,1,8427,201710848,,,,,1.0,0.0,4.0,1.0,2.0,1.5,625.4246758214606,0.0,550.0,0.0,0.0,13250.0,0,4,3,90.0,8,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1711.8097945134668,0.20662651903220774,0.1291931920387522,8833.333333333334,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +10849,2,56.0,1,0.0,8,111,2,52,34,10.0,0.0,0.0,1248.105237136262,0.0,2807.2502575422404,29671.95190899998,41,10,1,8429,201710849,,,200.0,,2.0,2.0,6.0,0.0,2.0,1.5,1875.0891403491435,1153.9431566420642,450.0,910.0,0.0,90020.0,1,1,1,133.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4055.3554946785025,0.13667302734635559,0.04504949449765055,60013.333333333336,10,5,10,10_1,10_2,10_0_0 +10850,2,60.0,3,0.0,6,221,6,0,52,7.0,0.0,0.0,1924.6795641295537,63.69558991355603,0.0,26973.3858467513,0,50,1,843,201710850,,,1824.0,,1.0,2.0,6.0,0.0,1.0,1.0,2066.095917339198,0.0,1430.0,0.0,0.0,23199.0,0,1,1,140.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1988.3751540431097,0.07371618696073305,0.08570951998116771,23199.0,6,3,6,6_1,6_1,6_0_0 +10851,2,33.0,2,0.0,9,111,2,46,23,9.0,0.0,0.0,2620.1979647067124,0.0,1020.1913953020664,62221.042480288095,31,43,1,8430,201710851,,,225.0,,2.0,0.0,5.0,2.0,4.0,2.1,3505.86321828469,983.3570367561074,1540.0,0.0,0.0,75236.0,1,1,2,140.0,4,4.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3640.3893600087786,0.058507366879332987,0.048386269339262836,35826.666666666664,9,5,9,9_1,9_2,9_0_0 +10852,1,51.0,3,272.0,4,111,2,0,85,1.0,0.0,0.0,562.5986418224849,0.0,2160.342091234775,8008.279999999999,0,71,2,8433,201710852,,,297.0,72.0,1.0,1.0,4.0,3.0,5.0,2.6,1197.7537172743423,0.0,418.0,1221.0,0.0,20934.0,0,6,3,57.0,7,5.0,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2722.94073305726,0.3400156754081101,0.13007264417011846,8051.538461538461,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10853,2,53.0,3,0.0,1,400,2,0,13,6.0,2379.684013708323,0.0,0.0,54.84898020333991,0.0,16054.239999999998,0,50,1,8435,201710853,,,,,1.0,5.0,6.0,1.0,2.0,1.5,2797.2779753783557,0.0,0.0,0.0,0.0,36504.0,0,1,1,120.0,0,0.0,2,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2434.532993911663,0.1516442381521432,0.06669222534274773,24336.0,7,4,7,7_1,7_0,7_1_0 +10854,2,55.0,2,0.0,7,211,2,77,52,6.0,0.0,0.0,479.1509963847001,0.0,1585.3124600707276,24341.12,50,50,1,8436,201710854,,,609.0,,1.0,2.0,5.0,0.0,2.0,1.5,1496.578849909977,0.0,356.0,896.0,0.0,34187.0,5,1,1,100.0,1,2.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2064.4634564554276,0.08481382354038876,0.06038738281965155,22791.333333333332,6,3,6,6_1,6_1,6_0_0 +10855,1,23.0,2,292.0,99,111,4,69,84,1.0,0.0,0.0,619.1276919577585,0.0,0.0,20347.3,30,0,2,8437,201710855,,,,303.0,1.0,0.0,2.0,0.0,2.0,1.5,2984.047848574826,0.0,460.0,0.0,0.0,6604.0,3,3,3,80.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,619.1276919577585,0.0304280023373007,0.093750407625342,4402.666666666667,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10856,2,59.0,3,0.0,1,221,2,13,13,3.0,1797.4546583543536,0.0,1881.6098116455355,106.15931652259337,0.0,37569.39344410585,31,44,1,8439,201710856,,,40.0,,3.0,2.0,7.0,1.0,3.0,2.0,2101.582421721241,0.0,1398.0,0.0,0.0,28433.0,1,1,2,120.0,1,2.0,4,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3785.2237865224824,0.10075285863089532,0.133127836898058,14216.5,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +10857,1,50.0,4,98.0,5,112,1,0,43,3.0,0.0,0.0,632.5869896090142,0.0,334.4018470461691,15502.78,0,71,1,844,201710857,,,360.0,221.0,1.0,2.0,5.0,1.0,2.0,1.3,454.5743062121106,0.0,470.0,189.0,0.0,18777.0,0,1,3,85.0,9,5.0,2,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,966.9888366551833,0.06237518926638856,0.05149857999974348,14443.846153846152,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +10858,2,57.0,2,0.0,1,111,2,56,45,2.0,0.0,0.0,1873.608923272567,0.0,2371.764970914346,31664.371144401255,50,50,1,8440,201710858,,,560.0,,2.0,2.0,4.0,0.0,2.0,1.5,1486.468300238215,222.54922410796115,1300.0,1210.0,0.0,19497.0,1,1,1,90.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4245.373894186913,0.1340741578232025,0.21774498098101827,12998.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +10859,2,67.0,3,0.0,1,111,2,0,77,6.0,0.0,0.0,343.2120901070183,0.0,1905.559731580551,19472.46,0,42,2,8442,201710859,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3562.188331588781,0.0,255.0,1077.0,0.0,20825.0,0,5,1,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2248.771821687569,0.11548473185655891,0.1079842411374583,20825.0,5,3,5,5_0,5_4,5_1_0 +10860,2,39.0,3,0.0,2,111,2,48,53,9.0,0.0,0.0,896.3381870262644,0.0,1670.3070045185457,29428.159999999996,71,43,2,8444,201710860,,,280.0,,2.0,0.0,4.0,0.0,2.0,1.5,2281.5238821192324,1610.0,0.0,0.0,0.0,44700.0,1,1,2,73.0,6,4.0,3,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2566.64519154481,0.08721731809072707,0.05741935551554385,29800.0,8,4,8,8_0,8_2,8_0_1 +10861,2,83.0,2,0.0,1,111,2,0,75,8.0,0.0,0.0,457.61612014269105,0.0,1220.832140009824,32162.92,0,60,2,8445,201710861,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4081.8598109823947,0.0,340.0,690.0,0.0,29311.0,0,5,1,68.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1678.4482601525149,0.05218581708851419,0.05726342534040172,29311.0,8,4,8,8_0,8_4,8_1_0 +10862,1,63.0,4,166.0,3,111,1,0,77,1.0,0.0,0.0,868.5015973670635,0.0,1618.4341161794603,8168.000000000001,0,50,2,8446,201710862,,,,56.0,0.0,0.0,3.0,1.0,2.0,1.5,2823.893171974541,1560.0,0.0,0.0,0.0,14842.0,0,5,3,52.0,8,6.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,2486.935713546524,0.30447303055172914,0.16756068680410482,9894.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10863,2,70.0,2,0.0,5,111,4,75,74,8.0,0.0,173.49078994542998,3028.3419715325144,60.15694602946958,0.0,44039.30753375566,50,41,1,8447,201710863,,,374.0,,0.0,2.0,5.0,0.0,2.0,1.5,1637.4919642500934,0.0,2250.0,0.0,0.0,43563.0,5,5,1,120.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,3261.989707507414,0.07406995909295654,0.07487982249862071,29042.0,8,4,8,8_1,8_3,8_0_0 +10864,2,74.0,2,0.0,1,211,2,0,72,9.0,1745.1016100527704,0.0,1637.5025909703468,276.0142229587428,214.77713585306665,46704.53873897791,0,70,1,8449,201710864,,,165.0,,0.0,2.0,12.0,0.0,1.0,1.0,1908.410494550647,207.02253405391735,1131.0,0.0,0.0,41083.0,0,5,1,350.0,1,2.0,1,2,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3873.3955598349266,0.0829340287778569,0.09428219847223734,41083.0,10,5,10,10_1,10_1,10_1_0 +10865,2,33.0,3,0.0,8,111,2,0,52,4.0,0.0,0.0,419.93008671917534,0.0,934.2019853988216,13357.671191295747,0,31,2,845,201710865,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3705.82240708785,0.0,312.0,528.0,0.0,18193.0,0,1,3,50.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1354.132072117997,0.10137486188463671,0.07443148860100023,18193.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +10866,2,44.0,3,0.0,1,111,2,42,33,7.0,0.0,0.0,1347.2909395053166,0.0,2510.647795611727,40748.04679473365,30,30,1,8450,201710866,,,,,2.0,0.0,8.0,3.0,5.0,2.8,829.8357223730162,2420.0,0.0,0.0,0.0,68075.0,1,1,2,170.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3857.9387351170435,0.0946778812381174,0.056671887405318304,24312.5,7,4,7,7_1,7_2,7_1_0 +10867,0,36.0,2,0.0,9,111,4,0,54,3.0,0.0,0.0,100.94473238441715,0.0,0.0,25516.31,0,30,2,8452,201710867,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2145.7605656791607,0.0,75.0,0.0,0.0,16408.0,0,1,5,67.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,100.94473238441715,0.003956086612226343,0.0061521655524388805,16408.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +10868,2,21.0,4,0.0,4,112,4,0,62,2.0,0.0,0.0,888.3136449828709,0.0,0.0,13778.332143367874,0,50,2,8453,201710868,,,,450.0,1.0,0.0,2.0,0.0,1.0,1.0,3807.459269752575,0.0,660.0,0.0,0.0,12419.0,0,1,3,28.0,10,1.0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,888.3136449828709,0.06447178335807907,0.07152859690658434,12419.0,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +10869,2,53.0,1,0.0,4,111,2,23,23,10.0,0.0,0.0,452.06621606542024,0.0,842.4157066267447,66134.90006958212,41,50,2,8454,201710869,,,28.0,1132.0,2.0,1.0,3.0,1.0,3.0,2.0,3357.1385453125504,812.0,0.0,0.0,0.0,122290.0,1,1,3,87.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1294.481922692165,0.01957335569162741,0.010585345675788413,61145.0,10,5,10,10_0,10_3,10_0_1 +10870,1,65.0,4,215.0,5,111,2,0,77,2.0,0.0,0.0,201.8894647688343,0.0,0.0,7600.68,0,71,2,8455,201710870,,,,368.0,0.0,0.0,1.0,0.0,1.0,1.0,5673.992919782024,0.0,150.0,0.0,0.0,12170.0,0,5,3,28.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,201.8894647688343,0.026562026656672073,0.016589109676978988,12170.0,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +10871,2,48.0,2,0.0,1,111,2,37,37,10.0,0.0,138.792631956344,1127.8891431752209,0.0,4136.674700497055,156769.56134949916,20,20,1,8457,201710871,,,759.0,,2.0,0.0,9.0,3.0,5.0,2.8,1994.7110448401754,0.0,838.0,2338.0,0.0,135683.0,1,1,2,263.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5403.35647562862,0.03446687245352736,0.03982338594834003,48458.21428571429,10,5,10,10_1,10_3,10_1_0 +10872,2,83.0,2,0.0,3,112,2,77,,7.0,3172.912018277764,0.0,1041.749638207185,212.31863304518674,0.0,25583.451191295742,50,50,1,8458,201710872,,,,,0.0,2.0,4.0,0.0,2.0,1.5,1594.5765579468386,0.0,774.0,0.0,0.0,37935.0,5,5,1,85.0,8,0.0,3,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4426.980289530136,0.17304077766631923,0.11669909818189367,25290.0,7,4,7,7_1,7_0,7_0_1 +10873,2,43.0,1,0.0,1,111,5,43,38,9.0,0.0,0.0,1480.522741638118,0.0,1415.4575536345783,58501.39999999999,33,12,1,8459,201710873,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.1,3670.2088429897813,0.0,1100.0,800.0,0.0,65922.0,1,1,1,140.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2895.9802952726964,0.04950275199008395,0.04393040707613083,31391.42857142857,8,4,8,8_1,8_3,8_1_0 +10874,2,57.0,4,0.0,6,111,2,37,75,4.0,0.0,0.0,1142.0134177063342,0.0,2128.117532487947,103216.87546032047,30,31,1,846,201710874,,,314.0,,1.0,1.0,6.0,2.0,4.0,2.5,2574.745788338858,2051.2811225941023,0.0,0.0,0.0,42859.0,4,5,1,94.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3270.130950194281,0.03168213468592559,0.07629974918206867,17143.6,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10875,1,57.0,4,422.0,5,111,2,0,78,1.0,0.0,0.0,278.3658965920076,0.0,518.7288833908527,11126.520000000002,0,71,8,8463,201710875,,,,,0.0,0.0,2.0,1.0,2.0,1.5,4718.984872752364,500.0,0.0,0.0,0.0,5064.0,0,7,3,50.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,797.0947799828602,0.07163918098227119,0.15740418246107035,3376.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +10876,1,22.0,3,329.0,9,111,2,54,54,8.0,0.0,0.0,662.1974444417765,0.0,973.1270681237726,33037.45087530163,31,30,1,8464,201710876,,,,233.0,2.0,0.0,3.0,0.0,2.0,1.5,2203.5320952620505,0.0,492.0,550.0,0.0,42733.0,2,2,3,75.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1635.324512565549,0.04949911295329679,0.03826842282464486,28488.666666666668,8,4,8,8_1,8_3,8_0_0 +10877,2,54.0,3,0.0,9,111,2,54,63,8.0,0.0,0.0,484.5347154452023,0.0,743.1152156581536,45748.06,43,50,2,8465,201710877,,,,718.0,2.0,1.0,3.0,1.0,3.0,2.0,2084.126262247414,0.0,360.0,420.0,0.0,55999.0,1,1,3,58.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1227.6499311033558,0.026835016197481507,0.02192271167526841,27999.5,8,4,8,8_0,8_3,8_0_0 +10878,2,44.0,3,0.0,99,111,2,85,52,1.0,0.0,0.0,686.4241802140366,0.0,1831.2482100147356,32938.399999999994,42,30,1,8466,201710878,,,310.0,,1.0,0.0,4.0,2.0,4.0,2.1,2153.096414611865,0.0,510.0,1035.0,0.0,22283.0,7,1,1,75.0,8,7.0,4,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2517.672390228772,0.0764357828622147,0.1129862401933659,10610.95238095238,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +10879,2,29.0,3,0.0,99,112,5,46,65,8.0,0.0,6.9396315978172,1292.0925745205395,141.54575536345783,0.0,44022.42,31,50,1,8467,201710879,,,300.0,,2.0,1.0,3.0,0.0,2.0,1.5,2608.077287858953,0.0,960.0,0.0,0.0,38490.0,1,1,3,68.0,5,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1440.5779614818146,0.03272373398558768,0.0374273307737546,25660.0,7,4,7,7_1,7_0,7_0_0 +10880,2,76.0,4,0.0,8,221,4,0,72,4.0,0.0,0.0,1022.9066214954271,0.0,0.0,13175.820000000002,0,70,1,8469,201710880,,,320.0,,0.0,3.0,3.0,0.0,1.0,1.0,2167.7271164641015,0.0,760.0,0.0,0.0,17967.0,0,5,1,43.0,1,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1022.9066214954271,0.07763513933063954,0.05693252192883771,17967.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10881,2,72.0,3,0.0,5,111,2,0,78,5.0,0.0,0.0,1843.9237782220198,0.0,0.0,15146.5058467513,0,71,1,847,201710881,,,220.0,,0.0,3.0,4.0,0.0,1.0,1.0,2110.930848234788,0.0,1370.0,0.0,0.0,19534.0,0,5,1,98.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1843.9237782220198,0.12173921806642381,0.09439560654356607,19534.0,5,3,5,5_1,5_3,5_0_0 +10882,2,51.0,3,0.0,1,111,2,0,68,5.0,0.0,0.0,2691.859530251124,2041.4436567294706,0.0,22939.8658467513,0,71,2,8471,201710882,,,300.0,,1.0,0.0,4.0,0.0,1.0,1.0,3656.112096854168,0.0,2000.0,0.0,0.0,19030.0,0,1,1,80.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4733.303186980595,0.20633526013627126,0.24872849117081422,19030.0,5,3,5,5_0,5_3,5_1_0 +10883,1,40.0,2,320.0,3,221,2,0,56,3.0,0.0,0.0,1951.598159432065,212.31863304518674,0.0,35477.98,0,50,1,8472,201710883,,,650.0,,1.0,0.0,5.0,3.0,4.0,2.1,710.962537750427,0.0,1450.0,0.0,0.0,33514.0,0,1,3,90.0,1,1.0,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,2163.916792477252,0.06099323559225333,0.064567547665968,15959.047619047618,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +10884,2,48.0,2,0.0,5,111,2,55,62,5.0,0.0,0.0,807.5578590753372,0.0,1857.7880391453841,28752.130875301624,50,50,1,8473,201710884,,,450.0,,4.0,0.0,5.0,2.0,4.0,2.5,2470.744384644507,0.0,600.0,1050.0,0.0,48080.0,1,1,3,90.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2665.345898220721,0.09270081267299325,0.0554356468015957,19232.0,5,3,5,5_1,5_3,5_0_0 +10885,1,45.0,5,360.0,99,111,1,0,63,1.0,0.0,0.0,121.13367886130058,0.0,707.7287768172891,5049.807533755659,0,71,2,8474,201710885,,,,,1.0,1.0,3.0,1.0,2.0,1.5,1817.789288419979,0.0,90.0,400.0,0.0,12920.0,0,4,3,65.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,828.8624556785898,0.1641374349691592,0.06415344084199612,8613.333333333334,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10886,2,49.0,2,0.0,1,111,5,54,54,8.0,0.0,388.6193694777632,605.6683943065029,0.0,566.1830214538313,25204.199999999997,42,50,1,8475,201710886,,,170.0,,2.0,0.0,5.0,0.0,2.0,1.5,1861.947293387227,0.0,450.0,320.0,0.0,46126.0,1,1,1,90.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1560.4707852380975,0.06191312500448726,0.03383061148241984,30750.666666666668,8,4,8,8_1,8_3,8_1_0 +10887,2,51.0,3,0.0,1,112,7,55,62,4.0,0.0,0.0,2767.2315970981554,159.23897478389006,0.0,30148.54,50,71,1,8476,201710887,,,330.0,,3.0,1.0,4.0,1.0,3.0,2.0,2019.4225721401526,0.0,2056.0,0.0,0.0,37940.0,1,1,2,150.0,8,1.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2926.4705718820455,0.09706840105298782,0.07713417427206234,18970.0,5,3,5,5_1,5_1,5_1_0 +10888,2,54.0,3,0.0,1,111,2,0,46,8.0,0.0,624.566843803548,556.7317931840151,0.0,1037.4577667817055,24543.096855924086,0,60,1,8477,201710888,,,534.0,,1.0,2.0,4.0,0.0,1.0,1.0,2457.4363336588576,1000.0,0.0,0.0,0.0,29883.0,0,1,2,70.0,6,5.0,1,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2218.756403769268,0.09040246293261546,0.07424811443861956,29883.0,8,4,8,8_1,8_2,8_1_0 +10889,2,79.0,3,0.0,1,211,2,77,78,5.0,0.0,0.0,1053.8932844973406,0.0,1963.9075525177682,38287.520000000004,70,50,1,8478,201710889,,,380.0,,0.0,3.0,6.0,0.0,2.0,1.5,2422.406623919728,1893.0,0.0,0.0,0.0,27788.0,5,5,1,100.0,3,4.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3017.8008370151088,0.07881943873656765,0.10860086501421869,18525.333333333332,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +10890,2,60.0,3,0.0,7,112,5,77,77,4.0,0.0,1193.6166348245583,938.1130462925166,0.0,0.0,30065.2,50,50,1,8479,201710890,,,241.0,,0.0,2.0,5.0,0.0,2.0,1.5,2288.643477844084,0.0,697.0,0.0,0.0,26099.0,5,5,1,100.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2131.729681117075,0.07090355896907637,0.08167859615759512,17399.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10891,2,90.0,2,0.0,1,111,5,0,77,1.0,0.0,0.0,1292.0925745205395,0.0,2505.3598699332038,18479.4516935026,0,70,1,848,201710891,,,632.0,,0.0,1.0,4.0,0.0,2.0,1.5,5019.862184430742,0.0,960.0,1416.0,0.0,18399.0,0,5,1,100.0,6,5.0,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3797.4524444537433,0.20549594800959017,0.20639450211716634,12266.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +10892,2,45.0,4,0.0,4,111,2,43,38,8.0,0.0,0.0,1110.3920562285887,0.0,2477.050718860512,62737.58019747006,31,31,1,8480,201710892,,,470.0,,2.0,0.0,6.0,2.0,4.0,2.3,1821.6144658310366,0.0,825.0,1400.0,0.0,64727.0,1,1,2,130.0,6,4.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3587.442775089101,0.05718172049029343,0.05542420898680768,28142.17391304348,8,4,8,8_1,8_2,8_0_1 +10893,2,38.0,4,0.0,9,300,6,56,46,5.0,0.0,693.9631597817199,874.8543473316153,92.0047409862476,0.0,55526.497674125065,50,50,1,8481,201710893,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.3,2278.9175405166025,0.0,650.0,0.0,0.0,46621.0,4,1,2,115.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1660.8222480995826,0.02991044488068826,0.03562390871280287,20270.0,5,3,5,5_1,5_0,5_0_0 +10894,2,64.0,3,0.0,9,300,2,77,75,6.0,0.0,0.0,1534.3599322431405,0.0,0.0,22497.151693502597,50,41,2,8482,201710894,,,87.0,470.0,0.0,1.0,3.0,0.0,2.0,1.5,2900.7337591196074,0.0,1140.0,0.0,0.0,34141.0,5,5,3,70.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1534.3599322431405,0.06820240860474257,0.044941856777573605,22760.666666666668,6,3,6,6_0,6_0,6_0_0 +10895,2,49.0,3,0.0,99,111,2,85,63,3.0,0.0,0.0,538.3719060502248,0.0,3043.2337403143433,26320.06,71,71,2,8485,201710895,,,,430.0,1.0,0.0,5.0,2.0,4.0,2.1,2333.347289191761,0.0,400.0,1720.0,0.0,30584.0,6,1,3,105.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3581.605646364568,0.13607893167282173,0.11710716866219488,14563.809523809523,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +10896,0,34.0,2,0.0,1,120,6,12,62,5.0,1507.1332086819382,346.98157989085996,1523.592494122136,153.93100895776038,0.0,48626.817285886515,43,71,1,8486,201710896,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1613.903726456727,0.0,1132.0,0.0,0.0,45420.0,1,1,5,140.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3531.6382916526945,0.07262737906306937,0.07775513631996245,18925.0,5,3,5,5_1,5_0,5_1_0 +10897,2,51.0,2,0.0,1,112,2,45,22,5.0,2977.7779291536817,0.0,1898.7704161508866,0.0,0.0,52688.00206659736,30,31,1,8487,201710897,,,1357.0,,2.0,0.0,5.0,2.0,4.0,2.5,2494.989570971237,0.0,1410.75,0.0,0.0,51648.0,1,1,1,140.0,9,2.0,4,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,4876.548345304568,0.09255519575672345,0.09441891932513491,20659.2,5,3,5,5_1,5_1,5_1_0 +10898,0,43.0,4,0.0,4,211,2,0,45,5.0,0.0,0.0,0.0,0.0,0.0,13546.06,0,30,2,849,201710898,,,,,1.0,0.0,5.0,0.0,1.0,1.0,765.7836053392591,0.0,0.0,0.0,0.0,21543.0,0,1,5,90.0,4,4.0,1,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,21543.0,6,3,6,6_0,6_2,6_0_1 +10899,2,59.0,2,0.0,9,112,4,52,37,9.0,0.0,0.0,2422.6735772260117,0.0,0.0,56392.4,42,33,1,8490,201710899,,,450.0,,2.0,4.0,4.0,0.0,2.0,1.5,1750.741979856011,0.0,1800.0,0.0,0.0,57746.0,1,1,1,115.0,7,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2422.6735772260117,0.042960994340124056,0.04195396351653814,38497.333333333336,9,5,9,9_1,9_0,9_0_0 +10900,2,38.0,3,0.0,9,112,4,54,65,10.0,0.0,208.188947934516,2018.894647688343,61.9262679715128,0.0,38352.96031599412,31,50,1,8491,201710900,,,360.0,,2.0,0.0,4.0,2.0,4.0,2.1,2609.9229299572426,0.0,1500.0,0.0,0.0,82752.0,1,1,2,100.0,8,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2289.009863594372,0.059682742733154784,0.027661082071664393,39405.71428571428,9,5,9,9_1,9_0,9_0_0 +10901,1,67.0,3,208.0,5,111,1,0,77,3.0,0.0,0.0,238.22956842722448,0.0,0.0,7051.0258467512995,0,70,2,8492,201710901,,,,163.0,0.0,0.0,2.0,0.0,1.0,1.0,2762.9600535736727,0.0,177.0,0.0,0.0,14683.0,0,5,3,36.0,8,6.0,1,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,238.22956842722448,0.03378651186436747,0.016224856529811652,14683.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +10902,2,75.0,1,0.0,99,111,1,77,74,8.0,0.0,0.0,1187.922901492186,0.0,1407.1297023729585,31214.23430765942,71,70,2,8493,201710902,,,,,0.0,1.0,3.0,0.0,2.0,1.5,4124.634355716357,1190.8971271451596,390.0,97.0,0.0,46351.0,5,5,1,58.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2595.052603865144,0.08313683360890145,0.05598698202552575,30900.666666666668,8,4,8,8_0,8_4,8_0_0 +10903,2,47.0,3,0.0,99,111,1,0,52,2.0,0.0,0.0,403.7789295376686,61.9262679715128,0.0,16462.620000000003,0,50,2,8494,201710903,,,,354.0,1.0,0.0,4.0,1.0,2.0,1.5,1578.2865488246061,0.0,300.0,0.0,0.0,19730.0,0,1,3,75.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,465.7051975091814,0.02828864406207404,0.02360391269686677,13153.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +10904,2,39.0,1,0.0,9,111,4,43,62,10.0,0.0,0.0,2368.836386620989,44.23304855108057,0.0,71986.04000000001,33,43,1,8495,201710904,,,472.0,,2.0,0.0,4.0,2.0,4.0,2.1,1811.9095094737968,0.0,1760.0,0.0,0.0,85621.0,1,1,2,98.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2413.0694351720695,0.033521352684104715,0.028183149404609493,40771.90476190476,10,5,10,10_1,10_3,10_0_0 +10905,2,89.0,3,0.0,5,112,2,78,78,5.0,0.0,0.0,1009.4473238441715,0.0,1326.9914565324173,29019.520000000004,50,70,1,8497,201710905,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2780.2340070843543,0.0,750.0,750.0,0.0,29762.0,5,5,1,90.0,9,1.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2336.4387803765885,0.08051266114589725,0.07850409180755959,19841.333333333332,5,3,5,5_1,5_1,5_0_0 +10906,2,28.0,4,0.0,1,111,1,56,52,3.0,0.0,0.0,633.9329193741397,0.0,0.0,32450.299999999996,30,20,2,8498,201710906,,,,796.0,2.0,0.0,3.0,2.0,4.0,2.1,4955.633829473679,0.0,471.0,0.0,0.0,31326.0,1,1,3,47.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,633.9329193741397,0.019535502580072906,0.0202366379165594,14917.142857142857,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +10907,2,59.0,2,0.0,9,112,4,78,21,9.0,0.0,0.0,2597.6444466923344,0.0,0.0,23983.673444105854,60,44,1,85,201710907,,,,,1.0,1.0,4.0,0.0,2.0,1.5,2840.9211598665165,0.0,1930.0,0.0,0.0,50642.0,5,1,2,110.0,9,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2597.6444466923344,0.10830886489286831,0.051294270500618744,33761.333333333336,9,5,9,9_1,9_1,9_0_0 +10908,2,43.0,3,0.0,1,120,2,0,52,6.0,0.0,0.0,2511.5049417242985,0.0,0.0,37894.401672069944,0,50,1,850,201710908,,,419.0,,1.0,0.0,4.0,1.0,3.0,2.0,3045.3760675184476,0.0,1866.0,0.0,0.0,44159.0,0,1,1,100.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2511.5049417242985,0.06627641105032679,0.056874135322908095,22079.5,6,3,6,6_1,6_0,6_1_0 +10909,2,64.0,2,0.0,6,112,6,72,75,8.0,0.0,346.98157989085996,3125.248914621555,0.0,0.0,34845.84,60,50,1,8500,201710909,,,360.0,,0.0,2.0,6.0,0.0,2.0,1.5,5451.392546908584,0.0,2322.0,0.0,0.0,43080.0,6,5,1,115.0,7,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3472.2304945124147,0.09964548119696397,0.08059959365163451,28720.0,8,4,8,8_1,8_0,8_0_0 +10910,2,57.0,3,0.0,8,111,4,72,52,3.0,0.0,0.0,4170.976836497502,0.0,1978.7889095585247,79134.12480826445,50,60,1,8501,201710910,,,800.0,,1.0,3.0,5.0,2.0,4.0,2.5,2260.1543556501097,1907.3440605653952,2310.0,0.0,0.0,46824.0,5,1,1,125.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,6149.765746056026,0.07771319593103997,0.13133789821578734,18729.6,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10911,2,55.0,2,0.0,7,111,2,52,34,10.0,0.0,97.1548423694408,632.5869896090142,0.0,1282.7584079813366,54545.6273940054,50,31,1,8502,201710911,,,388.0,,2.0,2.0,4.0,0.0,2.0,1.5,1583.8979922487,0.0,470.0,725.0,0.0,78827.0,1,1,1,90.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2012.5002399597915,0.03689572081411179,0.025530595353873566,52551.333333333336,10,5,10,10_1,10_3,10_0_0 +10912,1,91.0,3,206.0,4,400,2,78,78,2.0,1989.4158354601582,0.0,671.6189527976554,247.7050718860512,0.0,12358.345846751301,71,70,1,8504,201710912,,,215.0,,0.0,2.0,4.0,0.0,2.0,1.5,2169.865157486597,0.0,499.0,0.0,0.0,18179.0,5,5,3,82.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,2908.7398601438645,0.23536643950682923,0.16000549315935225,12119.333333333334,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +10913,1,52.0,3,289.0,6,111,2,0,35,2.0,0.0,0.0,2228.8596910479305,0.0,2487.6666505127714,30164.22175060325,0,30,1,8505,201710913,,,1524.0,,1.0,4.0,5.0,3.0,5.0,2.6,1129.2437967508179,0.0,1656.0,1406.0,0.0,32775.0,0,1,3,85.0,10,8.0,5,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,4716.526341560702,0.15636161212965413,0.14390621942214193,12605.76923076923,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +10914,2,32.0,1,0.0,1,111,2,38,38,10.0,0.0,0.0,0.0,0.0,0.0,99080.91999999998,12,12,1,8508,201710914,,,,,2.0,0.0,7.0,0.0,2.0,1.5,2319.542785048899,0.0,0.0,0.0,0.0,107244.0,1,1,2,180.0,9,7.0,3,2,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0.0,0.0,0.0,71496.0,10,5,10,10_1,10_3,10_1_0 +10915,2,35.0,2,0.0,7,120,1,55,43,7.0,0.0,0.0,1409.1884640864635,0.0,0.0,48634.67505288257,50,41,2,8509,201710915,,,492.0,649.0,2.0,0.0,5.0,3.0,5.0,2.4,2403.7798523554707,0.0,1047.0,0.0,0.0,56248.0,1,1,3,107.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,1409.1884640864635,0.028974974389243728,0.025053130139497642,23436.666666666668,6,3,6,6_0,6_0,6_0_0 +10916,2,43.0,3,0.0,4,111,2,0,37,4.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,22235.800000000003,0,30,2,851,201710916,,,250.0,,1.0,0.0,3.0,1.0,2.0,1.3,773.9416592644998,1100.0,0.0,0.0,0.0,23120.0,0,1,2,65.0,6,4.0,2,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1753.6085159622926,0.07886419719381774,0.07584811920252131,17784.615384615383,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +10917,2,44.0,1,0.0,1,111,2,33,33,10.0,0.0,0.0,527.6044679292203,0.0,1808.2470247681738,43271.72,20,20,1,8510,201710917,,,470.0,,2.0,0.0,5.0,0.0,2.0,1.5,1890.5713025191094,0.0,392.0,1022.0,0.0,72256.0,1,1,1,110.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2335.851492697394,0.053981017918802256,0.03232743983471814,48170.666666666664,10,5,10,10_1,10_3,10_1_0 +10918,2,48.0,3,0.0,9,112,2,21,63,2.0,0.0,0.0,740.261370819059,0.0,1503.9236507367395,24667.980000000003,44,50,1,8512,201710918,,,,,2.0,0.0,4.0,2.0,4.0,2.5,2469.167438437397,0.0,550.0,850.0,0.0,32949.0,1,1,2,101.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2244.185021555799,0.0909756300092589,0.06811086896585022,13179.6,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10919,2,35.0,1,0.0,1,111,1,31,31,10.0,0.0,0.0,901.7729426341265,0.0,0.0,92681.73999999999,30,30,2,8513,201710919,,,,1526.0,2.0,0.0,2.0,1.0,3.0,1.8,4278.1172444117265,0.0,670.0,0.0,0.0,131960.0,1,1,3,55.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,901.7729426341265,0.0097297800260777,0.006833684015111598,73311.11111111111,10,5,10,10_0,10_4,10_1_0 +10920,2,64.0,3,0.0,8,112,4,0,75,8.0,0.0,0.0,615.0899026623819,180.47083808840873,0.0,14805.880000000001,0,31,7,8514,201710920,,,,,0.0,3.0,2.0,0.0,1.0,1.0,2745.6722001799276,0.0,457.0,0.0,0.0,29046.0,0,5,1,30.0,8,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,795.5607407507906,0.05373275622595824,0.027389683286882554,29046.0,8,4,8,8_1,8_0,8_0_0 +10921,2,80.0,2,0.0,2,111,2,75,75,8.0,0.0,416.377895869032,969.0694308904046,0.0,2270.040051641455,29290.219999999998,33,30,1,8515,201710921,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1732.9114723004611,0.0,720.0,1283.0,0.0,46045.0,5,5,1,160.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3655.487378400892,0.12480231894471575,0.07938945332611341,30696.666666666668,8,4,8,8_1,8_3,8_0_1 +10922,2,54.0,2,0.0,6,111,2,43,47,7.0,0.0,0.0,1077.040104120175,0.0,1927.7486457951038,54270.47597580137,33,31,1,8516,201710922,,,744.0,,2.0,0.0,6.0,2.0,4.0,2.5,2203.2046201698977,169.7610532317421,730.0,990.0,0.0,64650.0,1,1,1,88.0,6,4.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3004.788749915279,0.055366913517675476,0.046477784221427364,25860.0,7,4,7,7_1,7_2,7_0_0 +10923,2,36.0,3,0.0,2,111,2,33,37,9.0,0.0,0.0,1391.8294829600377,0.0,2593.6444169542638,71980.62000000001,42,20,1,8517,201710923,,,650.0,,2.0,0.0,4.0,3.0,5.0,2.4,1604.74958838446,2500.0,0.0,0.0,0.0,84914.0,1,1,2,129.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3985.4738999143015,0.055368707575932256,0.0469354158314801,35380.833333333336,9,5,9,9_1,9_4,9_0_1 +10924,2,59.0,4,0.0,1,400,5,0,43,6.0,0.0,4163.77895869032,2469.7811190054063,0.0,0.0,69866.5,0,33,1,8518,201710924,,,610.0,,1.0,0.0,5.0,1.0,2.0,1.5,689.5370015511758,0.0,1835.0,0.0,0.0,35537.0,0,1,1,200.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,6633.560077695726,0.09494621997231471,0.18666629365719464,23691.333333333332,6,3,6,6_1,6_0,6_1_0 +10925,2,52.0,3,0.0,8,111,2,33,33,9.0,0.0,0.0,995.9880261929159,0.0,2335.504963497054,94182.74,20,41,1,8519,201710925,,,720.0,,2.0,0.0,7.0,3.0,5.0,2.8,1366.2565471947821,0.0,740.0,1320.0,0.0,106984.0,1,1,2,160.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3331.4929896899703,0.03537264884935361,0.031140104966069414,38208.57142857143,9,5,9,9_1,9_2,9_0_0 +10926,2,64.0,3,0.0,1,111,5,0,78,2.0,0.0,138.792631956344,363.4010365839017,0.0,0.0,14380.09672205293,0,71,1,8520,201710926,,,60.0,,0.0,0.0,4.0,0.0,1.0,1.0,3055.652622295138,0.0,270.0,0.0,0.0,11390.0,0,5,1,100.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,502.1936685402457,0.03492282967541484,0.04409075228623755,11390.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +10927,2,49.0,4,0.0,1,221,2,56,63,5.0,0.0,305.3437903039568,1076.7438121004495,0.0,0.0,37179.31175060326,42,71,1,8521,201710927,,,222.0,,2.0,0.0,5.0,1.0,3.0,1.8,1826.019184828328,0.0,800.0,0.0,0.0,34865.0,1,1,2,94.0,1,2.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1382.0876024044064,0.037173566086305544,0.03964111866927883,19369.444444444445,5,3,5,5_1,5_1,5_1_0 +10928,2,38.0,2,0.0,1,111,4,0,46,7.0,0.0,0.0,258.4185149041079,0.0,0.0,29238.219999999998,0,20,2,8522,201710928,,,,500.0,1.0,0.0,1.0,0.0,1.0,1.0,2332.062759205952,0.0,192.0,0.0,0.0,27266.0,0,1,3,32.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,258.4185149041079,0.008838380547930343,0.009477683375049801,27266.0,7,4,7,7_0,7_3,7_1_0 +10929,2,90.0,2,0.0,4,111,1,0,77,8.0,0.0,0.0,430.6975248401798,116.7752481748527,0.0,15185.2,0,50,2,8526,201710929,,,130.0,,0.0,2.0,4.0,0.0,1.0,1.0,3959.022303090308,0.0,320.0,0.0,0.0,27630.0,0,5,1,80.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,547.4727730150325,0.03605304987850226,0.019814432610026512,27630.0,8,4,8,8_0,8_2,8_0_1 +10930,2,44.0,4,0.0,7,112,2,55,48,9.0,0.0,0.0,952.0113663446658,0.0,1774.0527811967163,33393.43843791561,41,71,1,8528,201710930,,,670.0,,2.0,2.0,5.0,0.0,2.0,1.5,2180.1606059471997,1710.0,0.0,0.0,0.0,51485.0,1,1,3,80.0,10,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2726.064147541382,0.08163472451660299,0.05294870637159138,34323.333333333336,9,5,9,9_1,9_1,9_0_0 +10931,2,70.0,4,0.0,9,300,2,77,72,8.0,0.0,0.0,2288.080600713455,0.0,0.0,30476.32,50,70,1,853,201710931,,,800.0,,0.0,2.0,5.0,0.0,2.0,1.5,1828.7313851225329,0.0,1700.0,0.0,0.0,43920.0,5,5,1,150.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2288.080600713455,0.07507732563227631,0.052096552839559544,29280.0,8,4,8,8_1,8_0,8_0_0 +10932,2,52.0,3,0.0,1,111,2,0,46,5.0,0.0,0.0,562.5986418224849,0.0,651.110474671906,24535.59665845403,0,31,1,8530,201710932,,,,,1.0,0.0,3.0,1.0,2.0,1.5,3281.0886438974712,0.0,418.0,368.0,0.0,31762.0,0,1,3,67.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1213.7091164943909,0.04946727537910488,0.038212616223612834,21174.666666666668,5,3,5,5_1,5_4,5_1_0 +10933,2,50.0,3,0.0,7,112,7,52,52,5.0,0.0,0.0,2355.3770889697334,63.69558991355603,0.0,39046.079999999994,50,50,1,8531,201710933,,,600.0,,2.0,0.0,4.0,1.0,3.0,2.0,1883.144782057366,0.0,1750.0,0.0,0.0,38409.0,1,1,1,160.0,9,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2419.0726788832894,0.0619543031946687,0.06298192295772578,19204.5,5,3,5,5_1,5_0,5_0_0 +10934,2,50.0,1,0.0,1,111,2,31,21,10.0,0.0,0.0,1345.929765125562,0.0,2123.1863304518674,58490.82000000001,20,30,1,8532,201710934,,,360.0,,3.0,0.0,7.0,1.0,3.0,2.0,1806.9277134446793,0.0,1000.0,1200.0,0.0,119408.0,1,1,1,160.0,7,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3469.1160955774294,0.05931043701520049,0.029052627090123188,59704.0,10,5,10,10_1,10_2,10_1_0 +10935,2,66.0,3,0.0,9,111,2,78,77,5.0,0.0,138.792631956344,577.403869238866,0.0,1286.297051865423,28811.760000000002,71,70,2,8533,201710935,,,528.0,380.0,0.0,6.0,3.0,0.0,2.0,1.5,3044.7495067020477,0.0,429.0,727.0,0.0,31091.0,5,5,3,76.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2002.493553060633,0.06950264590086246,0.06440749905312254,20727.333333333332,5,3,5,5_0,5_3,5_0_0 +10936,1,51.0,2,370.0,5,111,1,85,64,1.0,0.0,0.0,387.6277723561618,0.0,0.0,34680.800315994114,50,50,2,8534,201710936,,,,,1.0,0.0,3.0,3.0,5.0,2.4,459.69838421827814,0.0,288.0,0.0,0.0,24530.0,6,1,3,74.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,387.6277723561618,0.011177013472131304,0.015802192105836194,10220.833333333334,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10937,2,48.0,3,0.0,8,112,2,0,47,7.0,0.0,0.0,1274.5954875739071,0.0,1946.2541362475451,23185.403786137143,0,50,1,8537,201710937,,,300.0,,1.0,2.0,5.0,0.0,1.0,1.0,716.559203747532,0.0,947.0,1100.0,0.0,23614.0,0,1,2,130.0,7,0.0,1,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3220.849623821452,0.13891712447756638,0.13639576623280478,23614.0,6,3,6,6_1,6_0,6_0_0 +10938,2,36.0,3,0.0,2,111,2,42,48,5.0,0.0,0.0,471.07541779394666,0.0,1698.549064361494,20126.86,30,43,1,8538,201710938,,,,,2.0,0.0,6.0,1.0,3.0,1.8,1122.7019271183144,0.0,350.0,960.0,0.0,34926.0,4,1,2,100.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2169.6244821554405,0.10779746478861782,0.062120611640481035,19403.333333333332,5,3,5,5_1,5_2,5_0_1 +10939,0,42.0,3,0.0,5,111,1,0,52,2.0,0.0,0.0,969.0694308904046,0.0,318.4779495677801,27819.55740677781,0,50,2,854,201710939,,,,,1.0,0.0,4.0,3.0,4.0,2.1,2142.3096116347547,0.0,720.0,180.0,0.0,24896.0,0,1,5,95.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1287.5473804581848,0.046282094342180065,0.05171703809681012,11855.238095238095,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +10940,2,71.0,2,0.0,5,111,2,0,77,5.0,0.0,916.0313709118703,497.99401309645793,0.0,1592.3897478389006,28300.5,0,71,1,8540,201710940,,,140.0,,0.0,4.0,5.0,0.0,1.0,1.0,3098.7844538411364,0.0,370.0,900.0,0.0,20372.0,0,5,1,197.0,7,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3006.4151318472286,0.10623187335372974,0.14757584585937703,20372.0,5,3,5,5_1,5_2,5_0_0 +10941,2,56.0,3,0.0,7,300,4,56,47,7.0,0.0,0.0,1831.8104103358899,109.69796040667983,0.0,29408.32,71,60,1,8541,201710941,,,468.0,,2.0,2.0,4.0,0.0,2.0,1.5,1878.467276908342,0.0,1361.0,0.0,0.0,39513.0,1,1,1,99.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1941.5083707425697,0.06601901675248942,0.04913593932990585,26342.0,7,4,7,7_1,7_0,7_0_0 +10942,2,54.0,1,0.0,9,300,4,0,52,2.0,0.0,413.6020432299051,1689.1418552325802,0.0,0.0,12635.705846751302,0,42,1,8543,201710942,,,550.0,,1.0,2.0,3.0,0.0,1.0,1.0,1857.034890144668,0.0,1255.0,0.0,0.0,11177.0,0,1,1,108.0,0,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2102.743898462485,0.1664128560734983,0.18813133206249308,11177.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10943,2,61.0,2,0.0,2,111,4,85,34,8.0,0.0,0.0,646.0462872602698,0.0,0.0,36532.741750603265,31,20,2,8544,201710943,,,,,1.0,0.0,3.0,1.0,3.0,2.0,2314.5564391459316,0.0,480.0,0.0,0.0,56424.0,6,1,1,60.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,646.0462872602698,0.017684035095712508,0.011449849129098784,28212.0,8,4,8,8_0,8_4,8_0_1 +10944,1,38.0,4,272.0,8,111,2,0,85,2.0,0.0,0.0,242.26735772260116,0.0,0.0,4282.0681611881455,0,50,2,8545,201710944,,,,105.0,0.0,0.0,1.0,0.0,1.0,1.0,3858.6331223973175,0.0,180.0,0.0,0.0,13051.0,0,7,3,29.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,242.26735772260116,0.05657718387541483,0.018563126022726317,13051.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10945,2,61.0,3,0.0,99,111,1,0,45,9.0,0.0,0.0,339.1743008116416,0.0,0.0,26745.879999999997,0,20,2,8546,201710945,,,,756.0,1.0,2.0,3.0,0.0,1.0,1.0,2206.6506926709185,0.0,252.0,0.0,0.0,35229.0,0,1,3,70.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,339.1743008116416,0.01268136628189619,0.00962770163250849,35229.0,9,5,9,9_0,9_3,9_0_0 +10946,2,88.0,2,0.0,7,112,4,71,71,3.0,0.0,0.0,2319.0369853113434,0.0,0.0,27715.52,60,60,1,8547,201710946,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1751.2576763889022,0.0,1723.0,0.0,0.0,23930.0,5,5,1,150.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2319.0369853113434,0.08367286579185032,0.09690919286716855,15953.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10947,1,25.0,1,83.0,9,111,2,0,65,3.0,0.0,0.0,538.3719060502248,0.0,0.0,19964.290875301627,0,43,2,8548,201710947,,,,367.0,1.0,0.0,2.0,0.0,1.0,1.0,4142.809909565256,0.0,400.0,0.0,0.0,14883.0,0,1,3,43.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,538.3719060502248,0.026966743242368776,0.03617361459720653,14883.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10948,2,53.0,2,0.0,5,112,4,0,38,10.0,0.0,555.170527825376,2220.7841124571773,0.0,0.0,39412.20712768311,0,12,1,8549,201710948,,,264.0,,1.0,2.0,5.0,0.0,1.0,1.0,2486.426357167121,0.0,1650.0,0.0,0.0,48963.0,0,1,2,200.0,8,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2775.9546402825536,0.07043387931280623,0.05669494598538802,48963.0,10,5,10,10_1,10_1,10_0_0 +10949,2,61.0,3,0.0,1,111,2,0,43,8.0,0.0,208.188947934516,942.1508355878933,0.0,3538.6438840864457,70247.67852141734,0,30,1,855,201710949,,,720.0,,2.0,2.0,8.0,1.0,2.0,1.5,2089.631078310667,0.0,700.0,2000.0,0.0,43718.0,0,1,5,250.0,4,4.0,2,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4688.983667608855,0.06674930426603724,0.10725521907701302,29145.333333333332,8,4,8,8_1,8_2,8_1_0 +10950,2,68.0,2,0.0,3,111,2,74,74,9.0,0.0,0.0,890.7708690944243,0.0,1659.9324268507285,61603.96699878039,30,30,1,8550,201710950,,,300.0,,0.0,2.0,5.0,0.0,2.0,1.5,1744.0046634717353,1600.0,0.0,0.0,0.0,59960.0,5,5,1,100.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2550.7032959451526,0.041404854593140895,0.04254008165352156,39973.333333333336,9,5,9,9_1,9_3,9_0_1 +10951,2,57.0,4,0.0,9,111,2,47,37,10.0,0.0,0.0,891.005504513122,0.0,380.4042175392929,93688.50657480117,50,12,1,8552,201710951,,,309.0,,2.0,0.0,5.0,1.0,3.0,2.0,2488.7373234171587,0.0,662.0,215.0,0.0,84282.0,1,1,1,178.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1271.409722052415,0.013570605067093452,0.015085186896993605,42141.0,10,5,10,10_1,10_4,10_0_0 +10952,2,61.0,3,0.0,4,112,2,72,75,8.0,3966.1400228472053,0.0,807.5578590753372,185.7788039145384,0.0,37656.759999999995,50,42,1,8553,201710952,,,400.0,,0.0,0.0,5.0,0.0,2.0,1.5,1617.6078568009113,0.0,600.0,0.0,0.0,39441.0,5,5,1,140.0,10,0.0,3,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4959.47668583708,0.1317021614668145,0.12574419223237443,26294.0,7,4,7,7_1,7_0,7_0_1 +10953,2,32.0,3,0.0,1,111,2,46,46,9.0,0.0,0.0,1749.7086946632305,0.0,0.0,80059.48052353716,31,31,1,8554,201710953,,,360.0,,2.0,0.0,4.0,0.0,2.0,1.5,2628.505451582127,0.0,1300.0,0.0,0.0,57877.0,4,1,2,117.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,1749.7086946632305,0.021855109266526195,0.030231502922805787,38584.666666666664,9,5,9,9_1,9_4,9_1_0 +10954,2,53.0,2,0.0,5,111,2,63,56,9.0,0.0,346.98157989085996,1884.3016711757866,106.15931652259337,0.0,45110.91672205293,50,71,1,8555,201710954,,,600.0,,3.0,0.0,4.0,1.0,3.0,2.0,1657.3310398810102,0.0,1400.0,0.0,0.0,70807.0,1,1,1,88.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2337.44256758924,0.05181545260964642,0.03301146168583954,35403.5,9,5,9,9_1,9_4,9_0_0 +10955,2,63.0,2,0.0,6,112,4,77,75,6.0,0.0,0.0,1749.7086946632305,88.46609710216114,0.0,16487.08,50,60,1,8556,201710955,,,230.0,,0.0,2.0,4.0,0.0,2.0,1.5,2333.8373267910756,0.0,1300.0,0.0,0.0,31461.0,5,5,1,100.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1838.1747917653915,0.11149183431907841,0.05842709360050194,20974.0,5,3,5,5_1,5_0,5_0_0 +10956,2,34.0,3,0.0,1,300,2,55,55,2.0,0.0,0.0,2018.894647688343,1769.3219420432229,0.0,31935.380315994116,71,71,1,8557,201710956,,,,,2.0,0.0,7.0,1.0,3.0,1.8,2472.3329132979825,0.0,1500.0,0.0,0.0,21701.0,1,1,2,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3788.216589731566,0.1186213081619173,0.17456414864437425,12056.111111111111,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +10957,2,35.0,2,0.0,1,112,2,22,37,10.0,0.0,0.0,296.1045483276236,0.0,1326.9914565324173,48038.69214479536,41,20,8,8558,201710957,,,480.0,,2.0,0.0,4.0,1.0,3.0,1.8,2737.6694877758805,0.0,220.0,750.0,0.0,69445.0,1,1,2,72.0,10,4.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1623.096004860041,0.03378726464841719,0.023372395490820663,38580.555555555555,9,5,9,9_0,9_2,9_1_0 +10958,2,71.0,3,0.0,6,112,6,0,56,4.0,0.0,0.0,454.9242606124399,0.0,1362.3778953732817,20056.45333333333,0,70,1,8559,201710958,,,384.0,,1.0,2.0,4.0,0.0,1.0,1.0,1994.7202224445227,0.0,338.0,770.0,0.0,16553.0,0,5,1,84.0,6,0.0,1,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1817.3021559857216,0.09060934781352445,0.10978687585245706,16553.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10959,2,74.0,3,0.0,6,400,4,0,77,6.0,0.0,0.0,209.96504335958767,53.079658261296686,0.0,34055.6658467513,0,50,1,8560,201710959,,,283.0,,0.0,2.0,4.0,0.0,1.0,1.0,1898.4556404029443,0.0,156.0,0.0,0.0,20587.0,0,5,1,100.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,263.0447016208843,0.007723962961246203,0.012777223569285682,20587.0,5,3,5,5_1,5_0,5_0_0 +10960,2,68.0,3,0.0,7,111,2,0,78,4.0,0.0,0.0,522.220748868718,0.0,1558.7726309400794,15297.460315994114,0,41,2,8561,201710960,,,312.0,367.0,0.0,0.0,2.0,0.0,1.0,1.0,4020.20122782275,0.0,388.0,881.0,0.0,17352.0,0,5,3,70.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2080.9933798087973,0.1360352200183866,0.11992815697376656,17352.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +10961,2,81.0,3,0.0,1,111,1,0,86,1.0,0.0,0.0,495.4912959337735,0.0,923.3374124357177,37750.8,0,71,1,8562,201710961,,,126.0,,0.0,0.0,3.0,0.0,1.0,1.0,1785.1053780360467,890.0,0.0,0.0,0.0,10410.0,0,5,1,60.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1418.8287083694913,0.03758406996327207,0.1362947846656572,10410.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +10962,2,44.0,3,0.0,7,112,2,64,52,5.0,0.0,0.0,963.6857118299024,0.0,1544.6180554037337,26427.559999999998,60,50,1,8563,201710962,,,765.0,477.0,2.0,2.0,4.0,1.0,3.0,1.8,3320.4099005607623,0.0,716.0,873.0,0.0,35304.0,1,1,3,90.0,8,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2508.303767233636,0.09491242351672406,0.07104871309861874,19613.333333333332,5,3,5,5_1,5_1,5_0_0 +10963,2,62.0,2,0.0,1,111,2,34,34,10.0,0.0,0.0,726.8020731678034,0.0,2866.3015461100213,55243.40063198824,30,10,1,8564,201710963,,,460.0,,2.0,2.0,8.0,0.0,2.0,1.5,2111.9649018189953,0.0,540.0,1620.0,0.0,95500.0,1,1,1,250.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,3593.1036192778247,0.06504131856787375,0.03762412166783063,63666.666666666664,10,5,10,10_1,10_3,10_1_0 +10964,2,69.0,1,0.0,3,111,4,0,86,8.0,0.0,0.0,403.7789295376686,0.0,0.0,22249.0,0,41,2,8566,201710964,,,,,0.0,1.0,4.0,0.0,1.0,1.0,2543.1638489316297,0.0,300.0,0.0,0.0,31780.0,0,5,1,83.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,403.7789295376686,0.018148183268356717,0.012705441458076418,31780.0,8,4,8,8_0,8_3,8_0_1 +10965,2,65.0,3,0.0,1,112,5,0,72,1.0,0.0,832.755791738064,646.0462872602698,0.0,0.0,12546.720315994115,0,42,2,8567,201710965,,,140.0,,0.0,0.0,6.0,0.0,1.0,1.0,3433.2215443679556,0.0,480.0,0.0,0.0,8250.0,0,5,1,135.0,7,0.0,1,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1478.8020789983339,0.11786363621361746,0.17924873684828288,8250.0,1,1,1_0,1_0_0,1_0_0,1_1_0_0 +10966,1,51.0,3,272.0,1,111,2,0,85,1.0,0.0,0.0,436.08124390068207,0.0,1309.298237111985,10626.690875301629,0,70,2,8569,201710966,,,,,0.0,1.0,1.0,0.0,1.0,1.0,4314.334144185846,0.0,324.0,740.0,0.0,9102.0,0,6,3,21.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1745.379481012667,0.16424487185086448,0.1917577983973486,9102.0,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +10967,2,72.0,2,0.0,5,112,5,0,72,7.0,0.0,1040.94473967258,2208.951376395926,0.0,1525.454607396406,26181.88198488634,0,70,1,857,201710967,,,320.0,,0.0,2.0,4.0,0.0,1.0,1.0,2104.7018003056364,1470.377548117948,1033.0,0.0,0.0,25985.0,0,5,1,89.0,10,0.0,1,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4775.350723464912,0.18239142343631046,0.18377335860938665,25985.0,7,4,7,7_1,7_0,7_0_0 +10968,2,46.0,5,0.0,9,111,2,0,55,3.0,0.0,0.0,2463.0514701797783,0.0,0.0,55482.911693502596,0,41,1,8570,201710968,,,550.0,,2.0,0.0,4.0,2.0,3.0,2.0,1995.7144775649924,0.0,1830.0,0.0,0.0,30541.0,0,1,3,83.0,7,5.0,2,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2463.0514701797783,0.044392974250992985,0.08064737468255062,15270.5,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +10969,1,71.0,3,162.0,9,111,2,0,78,3.0,0.0,0.0,659.5055849115254,0.0,1716.2422837819263,8472.6,0,70,1,8571,201710969,,,450.0,,0.0,1.0,4.0,0.0,1.0,1.0,1657.1752057959275,0.0,490.0,970.0,0.0,13535.0,0,5,3,89.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2375.747868693452,0.28040363863435686,0.1755262555370116,13535.0,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +10970,2,40.0,3,0.0,4,111,6,85,65,2.0,0.0,0.0,605.6683943065029,0.0,1946.2541362475451,37450.8058467513,71,31,1,8572,201710970,,,240.0,,1.0,1.0,5.0,2.0,4.0,2.1,1777.3306926709906,0.0,450.0,1100.0,0.0,26547.0,6,1,2,120.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2551.922530554048,0.06814065739991058,0.09612847141123472,12641.42857142857,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +10971,1,22.0,2,162.0,99,111,1,0,84,1.0,0.0,0.0,336.4824412813905,0.0,0.0,12412.14,0,41,2,8573,201710971,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2554.3302257256255,0.0,250.0,0.0,0.0,4344.0,0,3,3,22.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,336.4824412813905,0.027109140025925467,0.07745912552518197,4344.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10972,1,17.0,1,48.0,99,111,2,0,84,1.0,0.0,0.0,44.41568224914354,0.0,0.0,12409.22,0,41,2,8574,201710972,,,,92.0,0.0,0.0,3.0,0.0,1.0,1.0,3381.5560140313323,0.0,33.0,0.0,0.0,2492.0,0,3,4,40.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,44.41568224914354,0.0035792485143420413,0.017823307483604955,2492.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10973,1,67.0,4,353.0,4,112,4,0,77,5.0,0.0,0.0,1722.7900993607193,0.0,0.0,21929.879753588,0,70,1,8575,201710973,,,364.0,,2.0,3.0,8.0,3.0,4.0,2.5,4477.44367715172,0.0,1280.0,0.0,0.0,47045.0,0,5,3,145.0,10,4.0,2,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1722.7900993607193,0.07855903081633858,0.03662004675014814,18818.0,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +10974,1,37.0,3,133.0,5,111,1,0,52,3.0,0.0,0.0,942.1508355878933,0.0,247.7050718860512,23241.260000000002,0,50,2,8576,201710974,,,,583.0,1.0,0.0,3.0,3.0,4.0,2.3,630.7891595450382,0.0,700.0,140.0,0.0,35528.0,0,1,3,67.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1189.8559074739446,0.051195843404098766,0.033490652653511165,15446.956521739132,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10975,1,47.0,4,23.0,4,111,1,0,52,3.0,0.0,0.0,414.5463676586731,0.0,424.6372660903735,26320.9258467513,0,50,2,8577,201710975,,,170.0,274.0,1.0,0.0,4.0,2.0,3.0,1.8,944.221015545983,0.0,308.0,240.0,0.0,24750.0,0,1,3,97.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,839.1836337490465,0.03188275513692175,0.03390640944440592,13750.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10976,2,36.0,2,0.0,9,400,2,13,46,4.0,3966.1400228472053,0.0,1345.929765125562,159.23897478389006,0.0,71495.26206659737,71,31,1,8579,201710976,,,,,2.0,0.0,8.0,3.0,5.0,2.4,4441.856831581152,0.0,1000.0,0.0,0.0,37655.0,1,1,2,125.0,0,1.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,5471.3087627566565,0.07652687191579448,0.14530098958323348,15689.583333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10977,0,43.0,2,0.0,6,111,2,0,53,5.0,0.0,0.0,532.9881869897225,0.0,159.23897478389006,20190.239999999998,0,30,2,858,201710977,,,,,1.0,0.0,5.0,0.0,1.0,1.0,3630.442229104017,0.0,396.0,90.0,0.0,22099.0,0,1,5,105.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,692.2271617736126,0.034285236915143784,0.031323913379501904,22099.0,6,3,6,6_0,6_4,6_0_0 +10978,2,54.0,5,0.0,7,112,4,56,65,3.0,0.0,0.0,2105.034152656379,0.0,0.0,32197.019999999997,50,50,1,8580,201710978,,,484.0,,2.0,3.0,5.0,0.0,2.0,1.5,1875.997363917565,0.0,1564.0,0.0,0.0,22813.0,4,1,1,145.0,7,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2105.034152656379,0.06537978212444441,0.09227344727376403,15208.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10979,2,58.0,2,0.0,1,111,2,54,38,7.0,0.0,0.0,1049.8252167979383,0.0,1946.2541362475451,60401.47087530163,30,71,2,8582,201710979,,,,,2.0,0.0,4.0,2.0,4.0,2.5,924.0906459945592,0.0,780.0,1100.0,0.0,56982.0,1,1,1,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2996.0793530454835,0.049602754860570634,0.05257939968841886,22792.8,6,3,6,6_0,6_4,6_1_0 +10980,1,48.0,4,258.0,9,112,2,0,54,3.0,0.0,0.0,263.3341381760391,0.0,490.7175236877466,46979.41369650107,0,31,2,8583,201710980,,,,422.0,2.0,1.0,3.0,2.0,3.0,2.0,937.0271280123906,473.0,0.0,0.0,0.0,28697.0,0,1,3,72.0,9,3.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,754.0516618637857,0.01605068268274165,0.026276323722472236,14348.5,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +10981,1,48.0,4,100.0,6,112,5,0,12,1.0,0.0,41.637789586903196,699.8834778652922,185.7788039145384,0.0,27498.967196250447,0,50,1,8584,201710981,,,300.0,,1.0,1.0,4.0,0.0,1.0,1.0,1335.7947946961228,0.0,520.0,0.0,0.0,8510.0,0,1,1,100.0,6,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,927.3000713667338,0.03372126904799441,0.10896593083040351,8510.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +10982,2,53.0,2,0.0,1,111,2,0,34,9.0,0.0,0.0,2099.6504335958766,0.0,0.0,25536.345846751297,0,20,2,8585,201710982,,,,,1.0,0.0,4.0,0.0,1.0,1.0,2054.540780486228,0.0,1560.0,0.0,0.0,40133.0,0,1,2,80.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2099.6504335958766,0.0822220393707188,0.05231730579811817,40133.0,9,5,9,9_0,9_3,9_1_0 +10983,2,65.0,3,0.0,4,111,1,0,77,5.0,0.0,0.0,403.7789295376686,0.0,136.23778953732815,21046.120000000003,0,50,8,8586,201710983,,,,,0.0,0.0,3.0,0.0,1.0,1.0,3292.633132941325,0.0,300.0,77.0,0.0,19799.0,0,5,1,56.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,540.0167190749968,0.02565873040137549,0.027274949193140906,19799.0,5,3,5,5_0,5_4,5_0_1 +10984,2,55.0,3,0.0,7,111,2,55,63,5.0,0.0,277.585263912688,1211.3367886130059,2653.9829130648345,0.0,49294.65000000001,41,50,1,8590,201710984,,,300.0,,2.0,0.0,6.0,2.0,4.0,2.3,2188.4638145585154,0.0,900.0,0.0,0.0,43130.0,1,1,1,150.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,4142.904965590528,0.08404370384190835,0.09605622456736676,18752.17391304348,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10985,2,61.0,4,0.0,1,221,7,0,42,1.0,0.0,0.0,188.43016711757866,0.0,0.0,10133.28,0,20,1,8591,201710985,,,120.0,,1.0,0.0,6.0,0.0,1.0,1.0,1485.2192832207134,0.0,140.0,0.0,0.0,6397.0,0,4,1,140.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,188.43016711757866,0.018595180150709212,0.029456021122022613,6397.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +10986,2,61.0,2,0.0,5,111,2,72,54,7.0,1903.7472109666587,0.0,915.2322402853821,106.15931652259337,0.0,17168.345846751297,70,50,1,8592,201710986,,,390.0,,1.0,2.0,4.0,0.0,2.0,1.5,2009.088607290176,0.0,680.0,0.0,0.0,40470.0,5,1,1,110.0,4,4.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2925.1387677746343,0.1703797671531732,0.07227918872682565,26980.0,7,4,7,7_1,7_2,7_0_0 +10987,0,34.0,1,0.0,5,111,1,0,37,10.0,0.0,0.0,484.5347154452023,0.0,0.0,18690.120000000003,0,12,2,8594,201710987,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2963.4774634990167,0.0,360.0,0.0,0.0,47950.0,0,1,5,60.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,484.5347154452023,0.025924644434878012,0.010104999279357712,47950.0,10,5,10,10_0,10_3,10_0_0 +10988,2,65.0,3,0.0,99,112,2,0,78,4.0,0.0,0.0,1113.4635863680303,0.0,2074.915533563411,13786.279999999999,0,71,1,8595,201710988,,,,,0.0,3.0,4.0,0.0,1.0,1.0,2647.685295513553,2000.0,0.0,0.0,0.0,17380.0,0,5,1,89.0,6,1.0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3188.379119931441,0.23127189640217966,0.1834510425737308,17380.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10989,0,44.0,4,0.0,4,111,6,0,34,7.0,0.0,0.0,1432.2707929088385,0.0,2669.0059314552714,63909.09773016023,0,20,2,8596,201710989,,,420.0,,1.0,0.0,5.0,2.0,3.0,1.6,793.5202970192579,2572.640561297051,0.0,0.0,0.0,39024.0,0,1,5,100.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,4101.27672436411,0.0641735976571082,0.10509626702450056,24390.0,7,4,7,7_0,7_3,7_0_1 +10990,2,79.0,3,0.0,5,111,2,77,78,8.0,0.0,0.0,2153.487624200899,0.0,0.0,35993.7,71,71,1,8598,201710990,,,470.0,,0.0,7.0,6.0,0.0,2.0,1.5,3911.8188822756388,0.0,1600.0,0.0,0.0,40360.0,5,5,1,93.0,6,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2153.487624200899,0.05982957084714545,0.05335697780477946,26906.666666666668,7,4,7,7_1,7_2,7_0_0 +10991,2,56.0,4,0.0,6,112,5,64,64,4.0,0.0,381.679737879946,1812.967393624132,226.47320858153253,0.0,24357.580000000005,71,50,1,8599,201710991,,,140.0,,2.0,2.0,5.0,0.0,2.0,1.5,2222.0229531169557,0.0,1347.0,0.0,0.0,25280.0,1,1,1,100.0,5,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2421.1203400856107,0.09939905114077877,0.09577216535148776,16853.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10992,1,45.0,3,82.0,1,112,2,0,46,3.0,0.0,793.8938547902876,2537.077607261684,56.61830214538313,0.0,56304.78,0,43,1,860,201710992,,,240.0,,1.0,0.0,5.0,2.0,3.0,2.0,515.9689021281791,0.0,1885.0,0.0,0.0,28855.0,0,1,2,90.0,8,0.0,2,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3387.5897641973547,0.06016522512293548,0.11740044235651896,14427.5,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +10993,1,54.0,4,353.0,5,211,6,68,85,1.0,0.0,0.0,1954.290018962316,0.0,0.0,32003.3,71,50,2,8600,201710993,,,492.0,,1.0,2.0,4.0,2.0,4.0,2.3,1277.3647782026994,0.0,1452.0,0.0,0.0,22262.0,1,7,3,90.0,3,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1954.290018962316,0.061065265737043246,0.08778591406712406,9679.13043478261,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +10994,2,21.0,3,0.0,1,111,2,0,56,3.0,0.0,0.0,243.8485254145986,0.0,454.406501850387,20125.66,0,30,2,8601,201710994,,,,540.0,1.0,0.0,2.0,0.0,1.0,1.0,3552.454244197185,438.0,0.0,0.0,0.0,14366.0,0,1,3,55.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,698.2550272649855,0.034694764160031796,0.048604693530905296,14366.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +10995,2,33.0,3,0.0,99,111,2,52,38,5.0,0.0,0.0,1009.4473238441715,0.0,0.0,40283.775181479636,50,50,1,8602,201710995,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2477.726686424289,0.0,750.0,0.0,0.0,40987.0,1,1,2,87.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1009.4473238441715,0.025058409230430376,0.024628475464029364,19517.619047619046,5,3,5,5_1,5_4,5_0_0 +10996,2,53.0,2,0.0,6,112,4,85,77,7.0,0.0,693.9631597817199,2059.2725406421096,61.9262679715128,0.0,25385.339999999997,50,50,1,8603,201710996,,,210.0,,0.0,1.0,7.0,0.0,2.0,1.5,1856.8269705718023,0.0,1530.0,0.0,0.0,37526.0,6,5,2,135.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2815.1619683953422,0.11089715435741032,0.07501897266949162,25017.333333333332,7,4,7,7_1,7_0,7_0_0 +10997,2,59.0,2,0.0,99,211,2,0,34,9.0,63.458240365555284,0.0,597.5928157157495,0.0,0.0,20246.336855924084,0,20,2,8604,201710997,,,219.0,,1.0,2.0,3.0,0.0,1.0,1.0,1732.6568945304934,0.0,444.0,0.0,0.0,34450.0,0,1,2,75.0,1,3.0,1,9,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,661.0510560813048,0.032650402924017385,0.019188709900763563,34450.0,9,5,9,9_0,9_1,9_0_0 +10998,1,22.0,3,246.0,9,111,2,0,46,9.0,0.0,0.0,1388.99951760958,0.0,0.0,15852.09672205293,0,30,2,8605,201710998,,,,454.0,1.0,0.0,2.0,0.0,1.0,1.0,4783.9351325816915,0.0,1032.0,0.0,0.0,30532.0,0,1,3,40.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1388.99951760958,0.08762244780384466,0.04549323718097668,30532.0,8,4,8,8_0,8_4,8_0_0 +10999,2,36.0,2,0.0,9,112,5,52,62,7.0,0.0,416.377895869032,1018.2624497335636,0.0,1897.5102554437392,51193.99169350259,50,50,1,8607,201710999,,,212.0,,2.0,0.0,4.0,2.0,4.0,2.1,2284.8623759688317,1829.0,0.0,0.0,0.0,53627.0,1,1,2,116.0,6,0.0,4,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3332.1506010463345,0.06508870456900204,0.062135689131339336,25536.666666666664,7,4,7,7_1,7_0,7_0_0 +11000,2,44.0,3,0.0,1,111,6,55,46,3.0,0.0,416.377895869032,1453.6041463356069,0.0,0.0,59445.399999999994,41,31,1,8609,201711000,,,600.0,,2.0,0.0,4.0,3.0,5.0,2.6,2096.3603990429697,0.0,1080.0,0.0,0.0,40025.0,1,1,2,80.0,9,7.0,4,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1869.982042204639,0.03145713616536585,0.04672035083584357,15394.23076923077,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +11001,2,67.0,3,0.0,7,111,2,56,74,8.0,0.0,832.755791738064,1480.522741638118,0.0,1627.776186679765,33866.380000000005,31,30,1,8610,201711001,,,560.0,,1.0,4.0,7.0,0.0,2.0,1.5,1734.863259933465,0.0,1100.0,920.0,0.0,46951.0,1,5,1,135.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3941.054720055947,0.1163707110135759,0.08393973972984488,31300.666666666668,8,4,8,8_1,8_3,8_0_0 +11002,2,71.0,3,0.0,3,111,1,78,78,7.0,0.0,0.0,740.261370819059,113.23660429076627,0.0,25892.820000000003,71,50,2,8612,201711002,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2631.209914127346,0.0,550.0,0.0,0.0,36057.0,5,5,1,70.0,8,6.0,3,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,853.4979751098253,0.032962727702499195,0.023670798322373614,24038.0,7,4,7,7_0,7_2,7_0_1 +11003,2,47.0,3,0.0,8,120,2,0,85,1.0,0.0,0.0,2853.3711020661913,0.0,2653.9829130648345,33607.223983607204,0,50,1,8613,201711003,,,,,0.0,1.0,6.0,2.0,3.0,1.8,478.5147835845751,0.0,2120.0,1500.0,0.0,17360.0,0,7,2,180.0,0,1.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5507.354015131026,0.1638741128341151,0.3172438948808195,9644.444444444443,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11004,2,29.0,4,0.0,1,111,2,0,52,5.0,0.0,0.0,400.84689109249086,0.0,746.9695920828278,15841.331191295747,0,50,8,8615,201711004,,,,294.0,1.0,0.0,2.0,0.0,1.0,1.0,5472.323903247774,720.0,0.0,0.0,0.0,20810.0,0,1,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1147.8164831753188,0.07245707253478821,0.05515696699545021,20810.0,5,3,5,5_0,5_4,5_1_0 +11005,2,50.0,5,0.0,99,211,2,0,65,6.0,0.0,0.0,1547.8192298943961,0.0,0.0,18114.12,0,50,2,8616,201711005,,,160.0,,1.0,2.0,2.0,0.0,1.0,1.0,874.3292010459622,0.0,1150.0,0.0,0.0,21050.0,0,1,3,37.0,4,4.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,1547.8192298943961,0.0854482155298958,0.07353060474557702,21050.0,5,3,5,5_0,5_2,5_0_0 +11006,2,46.0,2,0.0,1,111,1,42,37,9.0,0.0,0.0,1022.1595722858517,0.0,1904.7724598112109,59050.24816118815,0,41,1,8617,201711006,,,520.0,,3.0,0.0,6.0,3.0,5.0,3.0,1665.5449723685,1836.0,0.0,0.0,0.0,90350.0,1,1,2,140.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2926.932032097063,0.04956680324369648,0.03239548458325471,30116.666666666668,8,4,8,8_1,8_3,8_1_0 +11007,2,35.0,2,0.0,1,111,2,37,31,10.0,0.0,0.0,797.7966596326936,0.0,1486.6769797981838,99376.49632237629,20,30,2,8618,201711007,,,,,2.0,0.0,3.0,0.0,2.0,1.5,1867.552853895172,1433.0,0.0,0.0,0.0,88239.0,1,1,2,88.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2284.4736394308775,0.022988067842722785,0.02588961388310019,58826.0,10,5,10,10_0,10_4,10_1_0 +11008,1,47.0,4,331.0,99,111,1,85,22,1.0,0.0,0.0,471.07541779394666,0.0,0.0,5859.431191295745,71,71,2,862,201711008,,,,,1.0,1.0,3.0,1.0,3.0,1.8,2595.0446293080286,0.0,350.0,0.0,0.0,13762.0,7,4,3,64.0,7,5.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,471.07541779394666,0.08039610030641453,0.03423015679363077,7645.555555555556,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11009,2,63.0,4,0.0,5,112,4,0,75,6.0,0.0,305.3437903039568,3068.719864486281,106.15931652259337,0.0,34171.14175060326,0,50,1,8620,201711009,,,230.0,,0.0,4.0,4.0,0.0,2.0,1.5,4268.219096800748,0.0,2280.0,0.0,0.0,30269.0,0,5,1,90.0,7,0.0,5,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3480.222971312831,0.10184684482342153,0.1149764766365863,20179.333333333332,5,3,5,5_1,5_0,5_0_0 +11010,2,75.0,2,0.0,4,111,2,0,74,10.0,0.0,0.0,740.261370819059,0.0,2742.4490101669953,52623.82000000001,0,20,1,8621,201711010,,,360.0,,0.0,0.0,5.0,0.0,1.0,1.0,2276.931250143556,0.0,550.0,1550.0,0.0,46314.0,0,5,1,120.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3482.7103809860546,0.06618125367915241,0.07519778859494007,46314.0,10,5,10,10_1,10_3,10_0_1 +11011,2,48.0,2,0.0,9,112,2,45,85,7.0,0.0,0.0,1467.0634439868625,0.0,0.0,86632.76000000001,42,30,1,8623,201711011,,,,,1.0,4.0,5.0,0.0,2.0,1.5,1453.3032042009293,0.0,1090.0,0.0,0.0,45822.0,1,4,2,140.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1467.0634439868625,0.01693428033444695,0.032016573785231164,30548.0,8,4,8,8_1,8_0,8_0_0 +11012,1,64.0,1,110.0,4,111,1,0,77,2.0,0.0,0.0,686.4241802140366,0.0,955.4338487033403,12571.140000000001,0,50,8,8625,201711012,,,,217.0,0.0,2.0,3.0,0.0,1.0,1.0,2074.4219908538544,0.0,510.0,540.0,0.0,11590.0,0,5,3,50.0,6,4.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1641.858028917377,0.13060534119557787,0.1416616073267797,11590.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +11013,2,61.0,3,0.0,4,112,5,0,74,3.0,0.0,180.43042154324718,1017.6060774658649,153.93100895776038,391.42035399419973,26389.77342927858,0,70,1,8626,201711013,,,578.0,,0.0,1.0,4.0,1.0,2.0,1.5,3713.928143052652,377.2879885110154,600.0,0.0,0.0,21929.0,0,7,1,135.0,9,1.0,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1743.3878619610723,0.06606300984861209,0.0795014757609135,14619.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +11014,2,42.0,2,0.0,10,300,5,21,38,9.0,0.0,69.396315978172,706.2093477613824,0.0,0.0,45055.65717191821,20,30,1,8627,201711014,,,,,2.0,0.0,3.0,1.0,3.0,1.8,3128.399133629581,0.0,524.7,0.0,0.0,60009.0,1,1,5,85.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,775.6056637395544,0.017214390210314484,0.01292482233897506,33338.333333333336,9,5,9,9_1,9_0,9_0_0 +11015,2,92.0,4,0.0,5,400,2,86,78,1.0,1586.456009138882,0.0,519.5288893384669,583.8762408742635,0.0,12715.680315994116,71,70,1,8628,201711015,,,266.0,,0.0,0.0,4.0,0.0,2.0,1.5,2359.811754300586,0.0,386.0,0.0,0.0,14624.0,6,5,5,80.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2689.8611393516126,0.21153890885163532,0.18393470591846367,9749.333333333334,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +11016,2,46.0,3,0.0,8,111,2,0,43,8.0,0.0,0.0,740.4532849347402,0.0,1379.818829819668,34208.36816118815,0,33,2,8632,201711016,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2040.2244556977914,1330.0,0.0,0.0,0.0,29320.0,0,1,2,53.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2120.272114754408,0.06198109494038973,0.0723148743094955,29320.0,8,4,8,8_0,8_3,8_0_0 +11017,2,30.0,3,0.0,9,112,5,0,65,3.0,0.0,0.0,639.316638434642,102.62067263850693,0.0,10628.0,0,43,1,8633,201711017,,,134.0,,1.0,0.0,4.0,0.0,1.0,1.0,2343.6007228669946,0.0,475.0,0.0,0.0,14760.0,0,1,2,90.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,741.9373110731489,0.06980968301403358,0.050266755492760766,14760.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11018,2,67.0,2,0.0,1,111,4,74,74,10.0,0.0,0.0,6024.508113197208,0.0,1261.8156731367667,81003.8450914952,10,20,1,8634,201711018,,,100.0,,0.0,4.0,9.0,0.0,2.0,1.5,1703.4015529236167,1216.2573875667645,3973.0,0.0,0.0,78220.0,5,5,1,210.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,7286.323786333975,0.08995034467936615,0.0931516720318841,52146.666666666664,10,5,10,10_1,10_3,10_1_0 +11019,2,32.0,3,0.0,1,112,2,0,63,7.0,1189.8420068541616,582.9290542166448,1036.3659191466827,37.155760782907684,0.0,12387.080000000002,0,50,1,8635,201711019,,,,,1.0,2.0,5.0,1.0,3.0,2.0,3949.8687482295877,0.0,770.0,0.0,0.0,49510.0,0,1,1,60.0,4,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2846.2927410003967,0.22977915222961315,0.05748924946476261,24755.0,7,4,7,7_1,7_0,7_1_0 +11020,1,41.0,2,400.0,99,111,1,0,68,2.0,0.0,0.0,363.4010365839017,0.0,707.7287768172891,21015.7,0,50,2,8636,201711020,,,,,1.0,0.0,4.0,3.0,4.0,2.3,655.6401202719314,0.0,270.0,400.0,0.0,27740.0,0,1,3,62.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1071.1298134011909,0.05096807688543283,0.03861318721705807,12060.869565217392,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11021,1,76.0,2,112.0,5,111,6,0,77,4.0,0.0,0.0,1130.581002705472,0.0,148.62304313163074,13653.020315994116,0,70,2,8637,201711021,,,,172.0,0.0,1.0,3.0,0.0,1.0,1.0,5170.288793789832,0.0,840.0,84.0,0.0,16543.0,0,5,3,65.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1279.2040458371027,0.09369385060817294,0.07732600168271189,16543.0,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +11022,2,32.0,4,0.0,4,221,2,0,48,4.0,0.0,0.0,1292.0925745205395,0.0,0.0,30041.399999999998,0,44,2,8639,201711022,,,792.0,,1.0,0.0,3.0,0.0,1.0,1.0,3973.2211741165534,0.0,960.0,0.0,0.0,19703.0,0,1,2,55.0,1,1.0,1,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1292.0925745205395,0.04301039813459225,0.06557846899053645,19703.0,5,3,5,5_0,5_1,5_0_1 +11023,1,36.0,5,90.0,3,111,1,0,35,6.0,0.0,0.0,194.8561276144053,0.0,363.11021837359687,43260.58,0,31,2,864,201711023,,,,295.0,1.0,0.0,3.0,2.0,3.0,1.6,1452.9750471061227,350.0,0.0,0.0,0.0,33056.0,0,1,3,64.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,557.9663459880021,0.012897800861384708,0.016879427214061053,20660.0,5,3,5,5_0,5_4,5_0_1 +11024,1,47.0,4,164.0,6,111,4,85,47,3.0,0.0,0.0,1726.827888656096,240.62778411787832,0.0,15993.882382591488,60,41,1,8640,201711024,,,,465.0,1.0,0.0,5.0,3.0,5.0,2.6,2419.7450188548796,0.0,1283.0,0.0,0.0,40418.0,4,1,3,100.0,8,6.0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1967.4556727739744,0.12301301370800675,0.0486777097524364,15545.384615384615,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +11025,2,69.0,3,0.0,5,111,6,77,77,7.0,0.0,0.0,1615.1157181506744,0.0,0.0,36431.79169350259,50,50,1,8641,201711025,,,236.0,,0.0,1.0,4.0,0.0,2.0,1.5,1513.553285151295,0.0,1200.0,0.0,0.0,36383.0,5,5,1,100.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.04433259093427242,0.044392043485987256,24255.333333333332,7,4,7,7_1,7_2,7_0_0 +11026,2,57.0,2,0.0,1,112,2,13,13,3.0,2368.578821644351,0.0,325.715003160386,0.0,0.0,30431.999999999996,60,50,1,8642,201711026,,,,,2.0,3.0,15.0,0.0,2.0,1.5,2498.1368220951786,0.0,242.0,0.0,0.0,28623.0,1,1,1,214.0,9,1.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2694.293824804737,0.08853489171939857,0.09413037853491028,19082.0,5,3,5,5_1,5_1,5_1_0 +11027,2,40.0,4,0.0,9,112,4,85,54,5.0,0.0,0.0,2531.693888201182,0.0,0.0,30561.22,50,50,1,8643,201711027,,,720.0,,1.0,3.0,4.0,2.0,4.0,2.3,329.5089062588791,0.0,1881.0,0.0,0.0,44576.0,1,1,1,119.0,9,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2531.693888201182,0.08284007929661125,0.05679499928663814,19380.869565217392,5,3,5,5_1,5_0,5_0_0 +11028,2,48.0,4,0.0,4,111,1,0,67,3.0,0.0,0.0,1238.255383915517,0.0,0.0,60649.90000000001,0,50,2,8645,201711028,,,,490.0,2.0,0.0,4.0,3.0,4.0,2.3,783.7491730777226,0.0,920.0,0.0,0.0,32980.0,0,1,3,108.0,7,5.0,2,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1238.255383915517,0.020416445598682224,0.0375456453582631,14339.13043478261,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +11029,2,29.0,3,0.0,4,111,6,64,38,9.0,0.0,0.0,400.84689109249086,2547.823596542241,746.9695920828278,39602.1058467513,43,20,2,8646,201711029,,,,,2.0,5.0,3.0,3.0,5.0,2.4,2662.962976000159,720.0,0.0,0.0,0.0,83960.0,1,1,2,79.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,3695.6400797175593,0.09331928190936659,0.04401667555642638,34983.333333333336,9,5,9,9_0,9_3,9_0_1 +11030,1,29.0,3,95.0,99,111,1,0,52,6.0,0.0,0.0,969.0694308904046,0.0,636.9558991355602,31257.02,0,50,2,8647,201711030,,,,252.0,1.0,0.0,3.0,2.0,3.0,1.6,1225.2202062757074,0.0,720.0,360.0,0.0,31490.0,0,1,3,67.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1606.0253300259649,0.05138126827272609,0.051001121944298664,19681.25,5,3,5,5_0,5_4,5_0_0 +11031,2,72.0,2,0.0,99,111,2,0,72,7.0,2221.038412794435,0.0,605.6683943065029,106.15931652259337,0.0,24246.6,0,70,1,8648,201711031,,,700.0,,0.0,2.0,6.0,1.0,2.0,1.5,1822.3016551606104,0.0,450.0,0.0,0.0,38670.0,0,5,1,135.0,5,4.0,2,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2932.866123623531,0.12095989225802922,0.0758434477275286,25780.0,7,4,7,7_1,7_2,7_0_0 +11032,2,28.0,2,0.0,9,222,5,46,46,8.0,0.0,458.01568545593517,874.8543473316153,0.0,0.0,28614.699999999997,31,41,1,8649,201711032,,,560.0,,2.0,0.0,4.0,1.0,3.0,1.8,3807.8140176603893,0.0,650.0,0.0,0.0,48657.0,1,1,2,101.0,1,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1332.8700327875504,0.046579905880108845,0.027393181511140233,27031.666666666664,7,4,7,7_1,7_0,7_0_0 +11033,2,43.0,3,0.0,1,400,2,48,63,4.0,2244.8352529315184,832.755791738064,1267.8658387482794,180.47083808840873,0.0,33741.78,43,50,1,8651,201711033,,,350.0,,2.0,0.0,5.0,2.0,4.0,2.1,2202.7238214165395,0.0,942.0,0.0,0.0,35994.0,1,1,3,120.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4525.92772150627,0.13413423125591686,0.12574117134817664,17140.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11034,2,77.0,3,0.0,1,111,4,0,75,5.0,0.0,0.0,1479.6704505764383,0.0,603.0451609301404,23773.668405220982,0,33,2,8653,201711034,,,,,0.0,0.0,2.0,0.0,1.0,1.0,3901.126002383951,402.20081277139855,933.0,105.0,0.0,18464.0,0,5,1,24.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2082.7156115065786,0.08760598389810087,0.1127987224602783,18464.0,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +11035,2,61.0,3,0.0,7,111,2,0,77,2.0,0.0,0.0,384.9359128259107,0.0,757.2697911944994,15042.671191295747,0,50,2,8654,201711035,,,,349.0,0.0,1.0,2.0,0.0,1.0,1.0,1891.2992849684595,0.0,286.0,428.0,0.0,10766.0,0,5,3,54.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1142.20570402041,0.07593104239899447,0.10609378636637655,10766.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +11036,2,58.0,1,0.0,1,111,2,0,43,9.0,0.0,0.0,417.2382271889242,0.0,1326.9914565324173,25507.71087530163,0,33,2,8658,201711036,,,,,1.0,2.0,5.0,0.0,1.0,1.0,1797.103350796568,0.0,310.0,750.0,0.0,36408.0,0,1,1,110.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1744.2296837213414,0.06838048667903901,0.04790786870251981,36408.0,9,5,9,9_0,9_2,9_1_0 +11037,2,33.0,2,0.0,1,111,5,48,37,9.0,0.0,152.6718951519784,549.1393441712293,0.0,1167.752481748527,58452.94,30,20,2,8659,201711037,,,,1303.0,2.0,0.0,5.0,0.0,2.0,1.5,3551.9281044117015,0.0,408.0,660.0,0.0,47213.0,4,1,3,89.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1869.5637210717348,0.03198408362473701,0.03959849450515186,31475.333333333332,8,4,8,8_0,8_3,8_1_0 +11038,2,31.0,1,0.0,9,111,4,43,38,8.0,0.0,0.0,2522.272379845303,0.0,0.0,50803.65985469075,33,12,1,866,201711038,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2109.001985158156,0.0,1874.0,0.0,0.0,57715.0,1,1,2,93.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2522.272379845303,0.04964745427907236,0.04370219838595345,32063.888888888887,9,5,9,9_1,9_3,9_0_0 +11039,2,51.0,2,0.0,5,111,3,42,34,9.0,856.6862449349964,0.0,1057.7904070496288,0.0,1971.1697568852403,45382.03087530162,31,20,1,8660,201711039,,,,,2.0,0.0,6.0,1.0,3.0,2.0,1715.0109497346534,1900.0,0.0,0.0,0.0,73023.0,1,1,1,114.0,7,5.0,4,2,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3885.646408869866,0.08562081365522496,0.053211267804251616,36511.5,9,5,9,9_1,9_2,9_0_0 +11040,2,49.0,2,0.0,2,111,2,22,54,1.0,0.0,0.0,187.61861430301312,0.0,349.6232674054347,53198.8879571414,31,31,1,8661,201711040,,,520.0,,2.0,0.0,7.0,2.0,4.0,2.3,1710.09366561592,337.0,0.0,0.0,0.0,38461.0,1,1,2,200.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,537.2418817084479,0.010098742705698395,0.01396848448320241,16722.17391304348,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +11041,2,55.0,4,0.0,5,111,2,0,52,1.0,0.0,0.0,672.964882562781,0.0,884.6609710216114,21510.600513464175,0,44,1,8662,201711041,,,,,1.0,3.0,4.0,0.0,1.0,1.0,1450.4822934061767,0.0,500.0,500.0,0.0,5820.0,0,4,1,95.0,6,5.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1557.6258535843924,0.07241201158514493,0.26763330817601244,5820.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11042,2,51.0,3,0.0,8,111,1,34,34,8.0,0.0,0.0,718.7264945770501,0.0,0.0,40707.14000000001,30,20,2,8663,201711042,,,,569.0,2.0,0.0,3.0,2.0,4.0,2.3,2645.341957895183,0.0,534.0,0.0,0.0,69563.0,1,1,3,63.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,718.7264945770501,0.017656030233935617,0.010332022692768427,30244.782608695656,8,4,8,8_0,8_4,8_0_0 +11043,2,74.0,2,0.0,1,300,4,0,74,5.0,0.0,0.0,888.3136449828709,0.0,0.0,15914.702775624854,0,60,1,8664,201711043,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2283.902444132673,0.0,660.0,0.0,0.0,19960.0,0,5,1,60.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,888.3136449828709,0.05581716840753209,0.04450469163240836,19960.0,5,3,5,5_1,5_0,5_1_0 +11044,1,38.0,2,535.0,1,111,6,0,85,1.0,380.74944219333173,0.0,1615.1157181506744,0.0,0.0,22071.159999999996,0,71,2,8666,201711044,,,1000.0,,0.0,0.0,3.0,4.0,5.0,2.8,542.2719039879265,0.0,1200.0,0.0,0.0,27310.0,0,8,3,41.0,8,6.0,2,8,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1995.8651603440062,0.09042864807939441,0.07308184402577833,9753.57142857143,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +11045,2,69.0,2,0.0,7,300,2,77,77,7.0,2300.361213251379,0.0,827.7468055522206,212.31863304518674,0.0,24424.32,70,50,1,8667,201711045,,,393.0,,0.0,2.0,5.0,0.0,2.0,1.5,1537.0556218990625,0.0,615.0,0.0,0.0,35671.0,5,5,1,80.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3340.426651848786,0.13676641363398392,0.09364544453053703,23780.666666666668,6,3,6,6_1,6_0,6_0_0 +11046,2,79.0,1,0.0,1,112,4,75,75,9.0,0.0,0.0,2443.33356094998,339.7098128722988,585.2676951996066,65622.41850689077,60,44,2,8668,201711046,,,366.0,,0.0,2.0,6.0,0.0,2.0,1.5,2158.0732993018246,564.1364052969247,1582.0,0.0,0.0,49976.0,5,5,5,150.0,6,1.0,3,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,3368.3110690218855,0.05132866397888386,0.06739857269533146,33317.333333333336,9,5,9,9_0,9_1,9_1_0 +11047,1,35.0,3,224.0,2,111,1,0,67,1.0,0.0,0.0,444.15682249143543,0.0,973.1270681237726,7917.88,0,41,8,8669,201711047,,,,,1.0,2.0,3.0,1.0,2.0,1.5,2922.7762498802613,0.0,330.0,550.0,0.0,14361.0,0,4,3,60.0,7,5.0,2,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1417.283890615208,0.17899789976801972,0.09868977721713029,9574.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11048,2,56.0,5,0.0,99,111,1,85,63,1.0,0.0,0.0,1736.249397011975,0.0,0.0,20690.460000000003,71,71,2,867,201711048,,,,386.0,2.0,2.0,4.0,5.0,7.0,3.6,2852.0707672778954,0.0,1290.0,0.0,0.0,35991.0,6,1,3,65.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1736.249397011975,0.0839154565443192,0.048241210219554194,9997.5,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +11049,1,46.0,5,379.0,9,111,2,0,85,2.0,0.0,0.0,807.5578590753372,0.0,668.8036940923382,6208.56,0,60,2,8671,201711049,,,948.0,,0.0,0.0,3.0,1.0,2.0,1.3,914.6853119239745,0.0,600.0,378.0,0.0,17188.0,0,6,3,70.0,8,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1476.3615531676755,0.2377945213008613,0.08589490069628086,13221.538461538461,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11050,2,84.0,2,0.0,7,111,2,78,72,3.0,0.0,1387.9263195634398,2826.45250676368,0.0,1592.3897478389006,32448.980000000003,71,50,1,8672,201711050,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1370.570975530416,0.0,2100.0,900.0,0.0,23233.0,5,5,1,200.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5806.768574166021,0.1789507273931575,0.2499362361367891,15488.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +11051,2,37.0,3,0.0,1,111,2,43,54,7.0,0.0,0.0,1278.633276869284,0.0,2300.11852465619,33662.302382591486,50,31,2,8674,201711051,,,,,2.0,0.0,4.0,2.0,4.0,2.1,4621.508366905649,0.0,950.0,1300.0,0.0,49400.0,1,1,2,80.0,7,5.0,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,3578.7518015254736,0.10631334009334521,0.07244436845193267,23523.809523809523,6,3,6,6_0,6_2,6_1_0 +11052,0,28.0,2,0.0,3,111,2,43,34,7.0,0.0,0.0,969.0694308904046,201.70270139292742,0.0,23308.739999999998,42,0,1,8678,201711052,,,720.0,,2.0,0.0,3.0,0.0,2.0,1.5,1821.5651259822475,0.0,720.0,0.0,0.0,37240.0,1,1,5,75.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1170.772132283332,0.050228889776252686,0.03143856423961686,24826.666666666668,7,4,7,7_1,7_2,7_0_1 +11053,2,85.0,2,0.0,7,120,2,75,72,8.0,0.0,0.0,3095.6384597887923,0.0,0.0,33762.380000000005,31,12,1,8680,201711053,,,540.0,,0.0,2.0,7.0,0.0,2.0,1.5,1527.9727716321584,0.0,2300.0,0.0,0.0,43420.0,5,5,1,140.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3095.6384597887923,0.09168898815156964,0.07129522017017025,28946.666666666668,8,4,8,8_1,8_1,8_0_0 +11054,2,70.0,3,0.0,2,400,2,0,77,7.0,0.0,0.0,1519.5547048267595,2264.7320858153253,0.0,32184.76816118815,0,60,1,8681,201711054,,,114.0,,0.0,2.0,7.0,0.0,1.0,1.0,2196.141546444504,0.0,1129.0,0.0,0.0,28018.0,0,5,1,120.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3784.2867906420847,0.11758005438130154,0.13506627134849328,28018.0,8,4,8,8_1,8_0,8_0_1 +11055,1,46.0,4,306.0,7,111,2,68,67,1.0,0.0,0.0,1547.8192298943961,74.31152156581537,0.0,29495.449999999997,50,44,2,8682,201711055,,,,206.0,2.0,3.0,4.0,3.0,5.0,2.6,629.90789877976,0.0,1150.0,0.0,0.0,23992.0,4,1,3,78.0,7,5.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1622.1307514602115,0.054995965528927736,0.06761131841698113,9227.692307692307,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11056,1,66.0,3,230.0,7,111,2,78,78,3.0,0.0,0.0,1480.522741638118,0.0,2123.1863304518674,11044.200000000003,71,71,2,8683,201711056,,,,66.0,0.0,3.0,4.0,0.0,2.0,1.5,10219.181290248838,0.0,1100.0,1200.0,0.0,21155.0,7,5,3,87.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,3603.7090720899855,0.3262987877881589,0.17034786443346658,14103.333333333334,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11057,2,89.0,3,0.0,4,112,4,86,77,2.0,0.0,0.0,2153.487624200899,123.8525359430256,0.0,19792.111191295746,71,70,1,8684,201711057,,,286.0,,0.0,2.0,4.0,0.0,2.0,1.5,2598.7670361623113,0.0,1600.0,0.0,0.0,18334.0,6,5,1,100.0,6,2.0,3,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2277.3401601439245,0.11506302375390162,0.1242140373155844,12222.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +11058,2,36.0,4,0.0,2,112,6,0,56,1.0,3648.848821019429,0.0,901.7729426341265,84.9274532180747,0.0,26724.3771719182,0,42,1,8685,201711058,,,450.0,,1.0,0.0,3.0,1.0,2.0,1.3,1882.5116672150884,0.0,670.0,0.0,0.0,13204.0,0,1,1,110.0,9,0.0,2,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,4635.54921687163,0.1734577081834721,0.3510715856461398,10156.923076923076,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +11059,2,67.0,2,0.0,9,111,4,0,75,9.0,0.0,0.0,995.9880261929159,0.0,0.0,26342.94,0,41,2,8686,201711059,,,,660.0,0.0,2.0,4.0,0.0,1.0,1.0,2836.873171547161,0.0,740.0,0.0,0.0,40190.0,0,5,3,66.0,8,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,995.9880261929159,0.03780853717136037,0.024781986220276584,40190.0,9,5,9,9_0,9_2,9_0_0 +11060,2,79.0,3,0.0,6,111,2,75,74,7.0,0.0,0.0,779.2933340077004,0.0,2004.6417603349717,30449.85087530163,50,41,1,8687,201711060,,,870.0,,0.0,2.0,5.0,0.0,2.0,1.5,2119.065022413481,0.0,579.0,1133.0,0.0,35038.0,5,5,1,110.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2783.935094342672,0.09142688763053244,0.07945473755187717,23358.666666666668,6,3,6,6_1,6_2,6_0_0 +11061,2,60.0,2,0.0,6,400,4,77,77,5.0,0.0,485.77421184720396,1076.7438121004495,0.0,0.0,61795.19999999999,71,60,1,8688,201711061,,,350.0,,0.0,2.0,4.0,0.0,2.0,1.5,1781.4249343967917,0.0,800.0,0.0,0.0,31214.0,5,5,1,100.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1562.5180239476535,0.025285427087340988,0.050058243863255386,20809.333333333332,5,3,5,5_1,5_1,5_0_0 +11062,2,65.0,3,0.0,6,111,5,72,77,5.0,0.0,138.792631956344,1137.3106515311,106.15931652259337,0.0,35296.264177580946,42,60,1,8689,201711062,,,285.0,,0.0,2.0,5.0,0.0,2.0,1.5,1354.882939336007,0.0,845.0,0.0,0.0,30764.0,5,5,1,105.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1382.2626000100372,0.0391617252481923,0.04493117279970216,20509.333333333332,5,3,5,5_1,5_2,5_0_0 +11063,1,38.0,4,494.0,3,111,1,0,85,1.0,0.0,0.0,301.7486319057362,0.0,562.3021095956843,17395.399999999994,0,70,2,869,201711063,,,,33.0,0.0,0.0,3.0,3.0,4.0,2.1,4991.143575945442,542.0,0.0,0.0,0.0,16638.0,0,4,3,62.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,864.0507415014206,0.04967122006400663,0.05193236816332616,7922.857142857142,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11064,2,66.0,4,0.0,1,112,5,86,78,5.0,0.0,208.188947934516,1804.8918150333786,106.15931652259337,0.0,16082.76,71,71,1,8691,201711064,,,225.0,,0.0,3.0,5.0,0.0,2.0,1.5,2514.5867526651923,0.0,1341.0,0.0,0.0,27760.0,5,5,2,120.0,8,0.0,3,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2119.240079490488,0.13177091988505008,0.07634150142256801,18506.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11065,2,82.0,3,0.0,1,111,6,0,78,3.0,1348.4876077680499,0.0,497.99401309645793,0.0,0.0,25046.859999999997,0,70,1,8692,201711065,,,88.0,,0.0,0.0,4.0,0.0,1.0,1.0,2759.9797918118024,0.0,370.0,0.0,0.0,13851.0,0,5,1,74.0,8,7.0,1,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1846.481620864508,0.07372108203840753,0.13331034732976016,13851.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +11066,2,55.0,3,0.0,4,300,5,67,67,7.0,0.0,41.637789586903196,1413.22625338184,159.23897478389006,0.0,14963.98,60,50,1,8693,201711066,,,122.0,,2.0,2.0,5.0,0.0,2.0,1.5,1514.856427694435,0.0,1050.0,0.0,0.0,35953.0,1,1,3,104.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1614.1030177526331,0.10786588980689851,0.044894807603054906,23968.666666666668,7,4,7,7_1,7_0,7_0_1 +11067,2,69.0,3,0.0,6,111,1,77,78,3.0,0.0,0.0,471.07541779394666,0.0,185.7788039145384,26101.507849749767,50,71,2,8694,201711067,,,,,0.0,1.0,4.0,0.0,2.0,1.5,2692.4054299303834,0.0,350.0,105.0,0.0,21898.0,5,5,1,82.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,656.854221708485,0.02516537456340026,0.029996082825303,14598.666666666666,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +11068,2,55.0,4,0.0,8,111,4,0,55,5.0,0.0,0.0,740.261370819059,0.0,0.0,16988.6971719182,0,42,2,8695,201711068,,,,370.0,1.0,1.0,2.0,0.0,1.0,1.0,2488.1058051186883,0.0,550.0,0.0,0.0,19950.0,0,1,3,38.0,7,6.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,740.261370819059,0.04357375750052738,0.03710583312376236,19950.0,5,3,5,5_0,5_2,5_0_0 +11069,2,37.0,3,0.0,7,111,2,0,54,2.0,0.0,0.0,497.99401309645793,0.0,955.4338487033403,29759.38,0,42,2,8696,201711069,,,180.0,,1.0,0.0,3.0,2.0,3.0,1.6,904.3200409641564,0.0,370.0,540.0,0.0,19932.0,0,1,2,70.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1453.4278617997984,0.04883931929360754,0.07291931877382091,12457.5,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +11070,2,57.0,3,0.0,6,111,6,52,42,4.0,0.0,0.0,2288.080600713455,143.31507730550106,0.0,39783.370875301625,50,30,1,8697,201711070,,,300.0,,2.0,2.0,6.0,2.0,4.0,2.5,1536.5852646072183,0.0,1700.0,0.0,0.0,45038.0,1,1,2,160.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2431.3956780189565,0.06111587893444241,0.05398542737286195,18015.2,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11071,2,47.0,3,0.0,9,111,2,63,46,8.0,0.0,0.0,874.0689152989037,0.0,1628.8086938472775,67398.8321433679,50,31,1,8698,201711071,,,500.0,,2.0,1.0,5.0,1.0,3.0,2.0,2140.4704780367338,1570.0,0.0,0.0,0.0,58743.0,1,1,1,90.0,5,4.0,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2502.8776091461814,0.03713532608135061,0.04260724867892653,29371.5,8,4,8,8_1,8_2,8_0_0 +11072,1,75.0,4,112.0,3,111,1,0,75,2.0,0.0,0.0,336.4824412813905,0.0,161.0082967259333,12531.84,0,60,2,8699,201711072,,,,367.0,0.0,4.0,2.0,0.0,1.0,1.0,3071.9404734214604,0.0,250.0,91.0,0.0,13093.0,0,5,3,47.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,497.4907380073238,0.039698139938534466,0.03799669579220376,13093.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11073,2,79.0,2,0.0,5,112,2,75,74,8.0,0.0,0.0,990.6043071324136,0.0,1882.5585463339892,42916.439999999995,60,44,1,87,201711073,,,177.0,,0.0,2.0,6.0,0.0,2.0,1.5,1816.6345479317195,0.0,736.0,1064.0,0.0,45338.0,5,5,1,140.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2873.162853466403,0.06694783755284463,0.06337206876056295,30225.333333333332,8,4,8,8_1,8_1,8_0_0 +11074,1,23.0,3,182.0,6,111,2,0,46,2.0,0.0,0.0,201.8894647688343,0.0,530.7965826129669,29483.691191295744,0,31,8,870,201711074,,,,62.0,1.0,0.0,3.0,0.0,1.0,1.0,3184.3943829543305,0.0,150.0,300.0,0.0,14237.0,0,4,3,70.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,732.6860473818011,0.024850553569700482,0.051463513899122085,14237.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11075,2,58.0,3,0.0,2,111,2,0,46,6.0,0.0,0.0,1126.5432134100954,0.0,1703.8570301876236,37306.399999999994,0,50,1,8701,201711075,,,166.0,,1.0,0.0,4.0,1.0,2.0,1.3,567.366206053327,0.0,837.0,963.0,0.0,27661.0,0,1,2,96.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2830.400243597719,0.07586902632250014,0.10232458130934236,21277.69230769231,6,3,6,6_1,6_2,6_0_1 +11076,2,42.0,4,0.0,1,300,4,46,42,5.0,0.0,0.0,170.93308017094637,0.0,0.0,38562.98175060325,20,20,1,8702,201711076,,,120.0,,2.0,0.0,3.0,2.0,4.0,2.1,2841.6858359094167,0.0,127.0,0.0,0.0,39682.0,1,1,2,77.0,0,1.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,170.93308017094637,0.004432569070421335,0.004307572203289813,18896.190476190477,5,3,5,5_1,5_1,5_1_0 +11077,2,83.0,4,0.0,1,111,5,0,71,8.0,0.0,0.0,598.9713921547435,2268.2707296994117,860.3430041558803,20142.853873117638,0,71,1,8703,201711077,,,160.0,,0.0,1.0,4.0,0.0,1.0,1.0,2891.5051568786266,829.2800263327805,102.0,0.0,0.0,28790.0,0,5,5,130.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3727.5851260100358,0.18505744764324666,0.1294749956932975,28790.0,8,4,8,8_1,8_3,8_1_0 +11078,2,64.0,2,0.0,5,221,5,75,56,9.0,744.0478682861358,721.7216861729887,1547.8192298943961,212.31863304518674,0.0,50762.64087530163,50,71,1,8704,201711078,,,467.0,,3.0,2.0,9.0,2.0,4.0,2.5,3153.2744566271735,0.0,1150.0,0.0,0.0,81117.0,5,5,1,249.0,1,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3225.9074173987074,0.06354884934617853,0.03976857400296741,32446.8,9,5,9,9_1,9_1,9_0_0 +11079,2,31.0,2,0.0,9,112,6,37,31,6.0,0.0,0.0,1130.581002705472,0.0,0.0,62121.9,50,20,1,8707,201711079,,,480.0,,2.0,2.0,5.0,1.0,3.0,2.0,7199.059542863304,0.0,840.0,0.0,0.0,47488.0,1,4,3,110.0,7,1.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1130.581002705472,0.018199395103908153,0.023807719901985176,23744.0,6,3,6,6_1,6_1,6_0_0 +11080,2,51.0,3,0.0,5,112,2,72,46,8.0,2336.8497014615737,0.0,1453.6041463356069,283.09151072691566,0.0,47452.78,70,43,1,8708,201711080,,,600.0,,2.0,3.0,6.0,1.0,3.0,2.0,2777.4299405367337,0.0,1080.0,0.0,0.0,52847.0,5,1,1,140.0,8,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4073.545358524096,0.08584418781205434,0.07708186573550242,26423.5,7,4,7,7_1,7_0,7_0_0 +11081,2,83.0,3,0.0,3,221,4,0,77,4.0,0.0,0.0,2153.487624200899,122.08321400098238,0.0,14330.339999999998,0,50,1,8709,201711081,,,247.0,,0.0,4.0,4.0,0.0,1.0,1.0,2928.00835064372,0.0,1600.0,0.0,0.0,16824.0,0,5,1,84.0,1,2.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2275.5708382018815,0.1587939182323575,0.1352574202450001,16824.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +11082,2,78.0,3,0.0,3,120,2,86,78,9.0,0.0,0.0,807.5578590753372,0.0,2300.11852465619,18756.219999999998,70,70,1,871,201711082,,,450.0,,0.0,2.0,5.0,0.0,2.0,1.5,2587.460495259179,0.0,600.0,1300.0,0.0,47241.0,6,5,1,81.0,0,1.0,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3107.676383731527,0.16568777630735443,0.06578345893887783,31494.0,8,4,8,8_1,8_1,8_0_1 +11083,2,38.0,1,0.0,3,111,2,62,54,5.0,0.0,0.0,807.5578590753372,0.0,1185.4457011689594,31105.86,50,30,1,8710,201711083,,,650.0,,3.0,0.0,4.0,2.0,4.0,2.3,2000.8850365234257,0.0,600.0,670.0,0.0,46454.0,1,1,2,98.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1993.0035602442968,0.06407164310018423,0.04290273303147838,20197.391304347828,5,3,5,5_1,5_2,5_0_1 +11084,2,78.0,2,0.0,4,111,2,77,74,9.0,0.0,0.0,508.7614512174624,0.0,1811.7856686522603,27405.44,50,44,1,8711,201711084,,,,,0.0,4.0,5.0,0.0,2.0,1.5,2045.3242672848235,0.0,378.0,1024.0,0.0,51897.0,5,5,1,83.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2320.547119869723,0.08467468939997763,0.04471447520800283,34598.0,9,5,9,9_1,9_3,9_0_1 +11085,2,56.0,3,0.0,0,400,2,0,77,2.0,0.0,0.0,0.0,54.84898020333991,0.0,12431.424493575061,0,41,0,8712,201711085,,,,,0.0,0.0,,0.0,1.0,1.0,2337.494765612072,0.0,0.0,0.0,0.0,10700.0,0,7,1,,0,1.0,1,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,54.84898020333991,0.004412123504565992,0.0051260729161999915,10700.0,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +11086,2,31.0,2,0.0,4,111,2,0,45,6.0,0.0,0.0,1184.4181933104944,0.0,0.0,17648.22,0,20,2,8714,201711086,,,,580.0,1.0,0.0,2.0,0.0,1.0,1.0,2633.046626406575,0.0,880.0,0.0,0.0,22583.0,0,1,3,50.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1184.4181933104944,0.06711261494419801,0.0524473361958329,22583.0,6,3,6,6_0,6_3,6_0_1 +11087,2,52.0,2,0.0,1,300,2,68,21,8.0,0.0,0.0,158.2813403787661,0.0,289.56722903479385,24958.378645045977,42,71,1,8716,201711087,,,300.0,,2.0,0.0,7.0,2.0,4.0,2.3,2567.6497160226704,0.0,117.6,163.66,0.0,63725.0,1,1,2,190.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,447.84856941355997,0.01794381661496485,0.0070278316110405645,27706.521739130436,8,4,8,8_1,8_0,8_1_0 +11088,2,51.0,3,0.0,8,112,4,52,31,4.0,0.0,0.0,2489.9700654822896,212.31863304518674,0.0,57546.588161188156,50,31,1,8718,201711088,,,442.0,,2.0,1.0,4.0,1.0,3.0,2.0,714.0306251449731,0.0,1850.0,0.0,0.0,34147.0,1,1,2,110.0,6,2.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2702.2886985274763,0.046958278238118274,0.07913692853039729,17073.5,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11089,2,27.0,2,0.0,2,111,4,54,47,7.0,63.458240365555284,0.0,874.8543473316153,0.0,0.0,64913.03999999999,30,30,2,8719,201711089,,,,600.0,2.0,0.0,3.0,0.0,2.0,1.5,2530.8963880942333,0.0,650.0,0.0,0.0,40583.0,1,1,3,70.0,9,7.0,3,3,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,938.3125876971706,0.014454916727011562,0.023120828615360387,27055.333333333332,7,4,7,7_0,7_3,7_0_1 +11090,2,60.0,2,0.0,6,111,2,43,45,10.0,0.0,0.0,701.2294076304178,0.0,2123.1863304518674,25353.080000000005,71,50,1,872,201711090,,,168.0,,2.0,2.0,4.0,0.0,2.0,1.5,1538.3176647253931,0.0,521.0,1200.0,0.0,64318.0,1,1,1,90.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2824.4157380822853,0.11140325901556279,0.04391330168976469,42878.666666666664,10,5,10,10_1,10_3,10_0_0 +11091,2,67.0,1,0.0,6,111,4,74,74,10.0,0.0,166.55115834761278,2068.860694192694,226.47320858153253,805.4142594489999,70792.14027116715,10,12,1,8720,201711091,,,246.0,,0.0,2.0,8.0,0.0,2.0,1.5,1839.8952698057913,776.3345027021901,1216.0,0.0,0.0,75009.0,5,5,1,150.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3267.2993205708394,0.04615341912330307,0.04355876388927781,50006.0,10,5,10,10_1,10_2,10_0_0 +11092,2,93.0,3,0.0,4,111,2,0,78,2.0,0.0,0.0,371.4766151746551,0.0,1723.319571550099,17296.239999999998,0,70,2,8721,201711092,,,,,0.0,2.0,4.0,0.0,1.0,1.0,5034.65247150562,0.0,276.0,974.0,0.0,13110.0,0,5,1,80.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,2094.796186724754,0.1211128075653873,0.15978613171050757,13110.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +11093,1,43.0,3,161.0,8,120,5,0,56,1.0,0.0,971.5484236944079,228.80806007134552,283.09151072691566,0.0,58842.49999999999,0,44,1,8722,201711093,,,420.0,,1.0,1.0,5.0,2.0,3.0,1.8,649.2497483916619,0.0,170.0,0.0,0.0,11202.0,0,1,2,110.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1483.447994492669,0.02521048552479363,0.13242706610361266,6223.333333333333,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +11094,2,33.0,2,0.0,2,111,2,56,63,5.0,0.0,0.0,1057.7904070496288,0.0,1971.1697568852403,50242.76,50,43,1,8723,201711094,,,418.0,,2.0,0.0,4.0,2.0,4.0,2.1,775.391098212381,1900.0,0.0,0.0,0.0,41701.0,1,1,2,110.0,4,4.0,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3028.9601639348693,0.0602865002626223,0.07263519253578737,19857.619047619046,5,3,5,5_1,5_2,5_0_1 +11095,2,53.0,3,0.0,7,112,4,55,63,5.0,0.0,0.0,2055.234751346733,318.4779495677801,0.0,23884.750875301626,50,71,1,8724,201711095,,,415.0,,3.0,1.0,4.0,1.0,3.0,2.0,2756.576097371753,0.0,1527.0,0.0,0.0,38557.0,1,1,1,100.0,9,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2373.7127009145133,0.09938193256891306,0.06156372904827952,19278.5,5,3,5,5_1,5_1,5_0_0 +11096,2,85.0,2,0.0,6,112,6,0,75,9.0,0.0,138.792631956344,269.1859530251124,0.0,0.0,20359.651191295747,0,41,1,8726,201711096,,,,,0.0,2.0,5.0,0.0,1.0,1.0,2568.4687823883082,0.0,200.0,0.0,0.0,40604.0,0,5,1,90.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,407.9785849814564,0.020038584214835533,0.010047743694745748,40604.0,9,5,9,9_1,9_0,9_0_0 +11097,1,53.0,4,350.0,2,112,4,0,22,1.0,0.0,0.0,659.5055849115254,184.0094819724952,0.0,24420.72031599412,0,42,2,8727,201711097,,,,,1.0,2.0,2.0,1.0,2.0,1.5,1490.1022612554034,0.0,490.0,0.0,0.0,13100.0,0,4,3,40.0,7,4.0,2,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,843.5150668840206,0.03454095767730358,0.0643904631209176,8733.333333333334,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11098,2,50.0,3,0.0,6,112,4,56,38,10.0,0.0,216.51650585189662,2472.472978535657,0.0,0.0,53374.04,42,12,1,8728,201711098,,,561.0,,2.0,3.0,6.0,0.0,2.0,1.5,1650.9686116511016,0.0,1837.0,0.0,0.0,73233.0,1,1,2,172.0,10,2.0,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2688.9894843875536,0.050380100220773126,0.03671827570067529,48822.0,10,5,10,10_1,10_1,10_0_0 +11099,2,86.0,1,0.0,1,400,2,0,78,3.0,2773.1251039747663,0.0,434.7353141355565,226.47320858153253,0.0,19560.92,0,70,1,8729,201711099,,,200.0,,0.0,1.0,6.0,0.0,1.0,1.0,3502.5957706833005,0.0,323.0,0.0,0.0,13457.0,0,5,5,89.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3434.3336266918554,0.17557117081874757,0.25520796809778223,13457.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11100,2,45.0,2,0.0,7,111,4,33,33,10.0,0.0,0.0,807.5578590753372,0.0,0.0,43456.420000000006,12,20,2,8730,201711100,,,,684.0,2.0,0.0,2.0,0.0,2.0,1.5,3198.5563554412684,0.0,600.0,0.0,0.0,72856.0,1,1,3,62.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.018583165826253915,0.011084301348898337,48570.666666666664,10,5,10,10_0,10_4,10_0_0 +11101,2,31.0,3,0.0,5,112,4,52,37,6.0,0.0,277.585263912688,2691.859530251124,0.0,0.0,56825.979999999996,42,60,1,8731,201711101,,,500.0,,2.0,0.0,4.0,3.0,5.0,2.4,2028.6439475343777,0.0,2000.0,0.0,0.0,53480.0,1,1,2,73.0,8,1.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2969.444794163812,0.052255056475291974,0.05552439779663074,22283.333333333336,6,3,6,6_1,6_1,6_0_0 +11102,2,68.0,1,0.0,5,112,2,77,74,10.0,0.0,0.0,2042.7787077691241,0.0,295.31856179796665,40750.54076609463,50,31,1,8734,201711102,,,265.0,,0.0,3.0,6.0,0.0,2.0,1.5,1537.9972444038551,284.65598432413634,1400.0,0.0,0.0,63943.0,5,5,1,130.0,6,0.0,3,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2338.0972695670907,0.0573758587152895,0.036565335839217596,42628.666666666664,10,5,10,10_1,10_0,10_0_0 +11103,2,42.0,2,0.0,1,111,2,0,56,1.0,0.0,0.0,282.645250676368,0.0,1114.6728234872305,35310.34,0,30,1,8736,201711103,,,340.0,,1.0,0.0,4.0,1.0,2.0,1.3,784.8845411838405,0.0,210.0,630.0,0.0,4120.0,0,1,1,80.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1397.3180741635986,0.03957248993251265,0.33915487236980546,3169.230769230769,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +11104,2,29.0,3,0.0,1,112,2,0,46,8.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,18442.260000000002,0,30,1,8737,201711104,,,212.0,,1.0,0.0,3.0,0.0,1.0,1.0,4011.8817029663187,1000.0,0.0,0.0,0.0,27317.0,0,1,2,60.0,9,1.0,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1594.1895599657205,0.08644220176733873,0.05835888128146284,27317.0,8,4,8,8_1,8_1,8_1_0 +11105,2,90.0,2,0.0,4,111,1,0,77,7.0,0.0,0.0,376.8603342351573,0.0,35.38643884086446,20452.36,0,44,2,874,201711105,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2880.945314563291,0.0,280.0,20.0,0.0,25417.0,0,5,1,75.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,412.2467730760218,0.020156440287381103,0.016219332457647315,25417.0,7,4,7,7_0,7_2,7_0_1 +11106,2,60.0,1,0.0,9,111,4,37,37,10.0,0.0,0.0,3698.837188157985,0.0,1073.8856792653332,68260.79369488954,12,12,1,8740,201711106,,,440.0,,2.0,2.0,7.0,0.0,2.0,1.5,2298.7426327973976,1035.1126702695867,2320.0,0.0,0.0,177283.0,1,1,1,180.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4772.722867423318,0.06991894774555832,0.026921492006697304,118188.66666666667,10,5,10,10_1,10_2,10_0_0 +11107,1,37.0,4,200.0,9,112,2,0,53,5.0,0.0,0.0,847.935752029104,0.0,980.2043558919455,12423.04,0,50,1,8742,201711107,,,345.0,215.0,1.0,0.0,3.0,1.0,2.0,1.3,1295.016619581283,0.0,630.0,554.0,0.0,24260.0,0,1,3,80.0,8,1.0,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1828.1401079210495,0.1471572262442244,0.07535614624571516,18661.53846153846,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +11108,2,62.0,3,0.0,2,111,2,0,78,1.0,0.0,0.0,484.5347154452023,0.0,760.8084350785858,11823.879999999997,0,71,1,8743,201711108,,,160.0,,0.0,0.0,4.0,0.0,1.0,1.0,2627.1990891597793,0.0,360.0,430.0,0.0,9585.0,0,5,1,75.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1245.3431505237882,0.10532440709173202,0.12992625461907023,9585.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +11109,2,63.0,2,0.0,1,111,1,0,34,3.0,0.0,0.0,672.964882562781,0.0,1380.0711147937138,17453.468161188146,0,31,2,8745,201711109,380.0,380.0,,650.0,1.0,1.0,3.0,0.0,1.0,1.0,2458.8099286989036,0.0,500.0,780.0,0.0,14351.0,0,1,3,60.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2053.0359973564946,0.1176291140761295,0.14305874136690785,14351.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +11110,1,67.0,2,218.0,3,111,1,0,78,3.0,0.0,0.0,239.57549819235004,0.0,2475.281396918469,9055.119999999999,0,50,2,8746,201711110,999999.0,624.0,,131.0,0.0,0.0,4.0,0.0,1.0,1.0,2679.824354311692,0.0,178.0,1399.0,0.0,13801.0,0,5,3,77.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,2714.856895110819,0.2998145684552849,0.19671450584094044,13801.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11111,2,62.0,3,0.0,1,120,6,75,78,6.0,0.0,0.0,3297.5279245576266,56.61830214538313,0.0,19112.16,50,50,1,8748,201711111,,,500.0,,0.0,1.0,4.0,0.0,2.0,1.5,2736.8361452602103,0.0,2450.0,0.0,0.0,34495.0,5,5,1,110.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3354.1462267030097,0.17549801941292925,0.09723572189311523,22996.666666666668,6,3,6,6_1,6_0,6_1_0 +11112,2,69.0,3,0.0,5,400,2,0,75,4.0,0.0,832.755791738064,995.9880261929159,102.62067263850693,0.0,14779.0,0,44,1,875,201711112,,,170.0,,0.0,3.0,4.0,1.0,2.0,1.5,911.3922346737834,0.0,740.0,0.0,0.0,26310.0,0,5,3,75.0,0,0.0,2,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1931.3644905694866,0.1306830293368622,0.07340800040172887,17540.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11113,2,46.0,3,0.0,9,111,5,0,21,1.0,0.0,0.0,201.8894647688343,153.93100895776038,0.0,12140.4,0,71,1,8750,201711113,,,240.0,,1.0,0.0,4.0,2.0,3.0,1.8,1600.0627621356155,0.0,150.0,0.0,0.0,8610.0,0,1,2,70.0,8,7.0,2,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,355.8204737265947,0.029308793262709194,0.04132641971272877,4783.333333333333,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +11114,1,48.0,3,122.0,7,111,2,85,68,2.0,0.0,0.0,1938.1388617808093,0.0,1082.8250285304525,20564.501750603253,50,50,1,8751,201711114,,,,187.0,1.0,0.0,3.0,1.0,3.0,1.8,2073.1816518841115,0.0,1440.0,612.0,0.0,23944.0,6,1,3,70.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,3020.963890311262,0.14690187620143255,0.1261678871663574,13302.222222222223,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +11115,2,35.0,3,0.0,9,111,5,46,47,6.0,0.0,485.77421184720396,1345.929765125562,26.539829130648343,0.0,83089.59617355147,31,31,1,8752,201711115,,,500.0,,2.0,0.0,6.0,2.0,4.0,2.1,1892.6536629572697,0.0,1000.0,0.0,0.0,43794.0,1,1,2,140.0,6,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1858.2438061034143,0.02236433791568863,0.04243147020375883,20854.285714285714,5,3,5,5_1,5_2,5_0_0 +11116,1,43.0,4,235.0,9,400,4,0,55,2.0,0.0,0.0,1184.4181933104944,0.0,0.0,21255.139999999996,0,50,1,8753,201711116,,,230.0,,1.0,0.0,4.0,2.0,3.0,1.8,259.88572534845815,0.0,880.0,0.0,0.0,20081.0,0,1,2,91.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1184.4181933104944,0.05572384812852301,0.058982032434166345,11156.111111111111,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +11117,1,42.0,3,120.0,1,300,2,69,64,4.0,1047.0609660316622,485.77421184720396,428.68348075169166,0.0,798.8424804219131,28712.04,41,50,1,8754,201711117,,,180.0,,2.0,1.0,5.0,3.0,5.0,2.6,2739.1792866515016,770.0,0.0,0.0,0.0,44002.0,4,1,2,120.0,0,0.0,4,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2760.361139052471,0.09613949893676907,0.06273262894987662,16923.846153846152,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +11118,2,62.0,1,0.0,6,111,2,77,77,4.0,0.0,0.0,775.2555447123236,0.0,1571.157884534382,32544.571693502603,50,50,1,8756,201711118,,,170.0,,0.0,1.0,3.0,0.0,2.0,1.5,2125.6946732680935,0.0,576.0,888.0,0.0,25335.0,7,5,1,71.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2346.4134292467056,0.07209845781178795,0.0926154896091062,16890.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +11119,2,94.0,2,0.0,1,111,4,0,71,3.0,0.0,888.2728445206016,1450.9122868053557,212.31863304518674,0.0,11064.590875301628,0,60,1,8758,201711119,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2284.1932592958165,0.0,1078.0,0.0,0.0,16010.0,0,5,1,90.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2551.503764371144,0.230600823214043,0.15936937941106458,16010.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +11120,2,47.0,2,0.0,9,111,2,54,46,7.0,0.0,0.0,823.7090162568439,0.0,1698.549064361494,54642.16,31,41,1,8759,201711120,,,,,2.0,0.0,5.0,2.0,4.0,2.5,2210.794247026255,0.0,612.0,960.0,0.0,61770.0,1,1,2,95.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2522.2580806183378,0.046159560321523484,0.04083305942396532,24708.0,7,4,7,7_1,7_3,7_0_0 +11121,2,61.0,3,0.0,1,112,2,74,31,10.0,0.0,0.0,5435.08658516996,3793.42624374067,1073.8856792653332,84835.45369488955,71,50,1,876,201711121,,,350.0,,1.0,3.0,6.0,0.0,2.0,1.5,2134.7811971406454,1035.1126702695867,3610.0,0.0,0.0,87240.0,5,1,1,250.0,4,0.0,3,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,10302.398508175964,0.12143977617221814,0.11809260096487809,58160.0,10,5,10,10_1,10_0,10_1_0 +11122,2,54.0,4,0.0,1,111,2,0,65,5.0,2062.392811880547,0.0,538.3719060502248,0.0,0.0,13650.854007939444,0,70,1,8760,201711122,,,,,1.0,1.0,5.0,0.0,1.0,1.0,1804.811667926353,0.0,400.0,0.0,0.0,24500.0,0,1,2,100.0,7,5.0,1,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2600.764717930772,0.19052029392579736,0.10615366195635803,24500.0,7,4,7,7_1,7_2,7_1_0 +11123,1,47.0,5,239.0,7,120,1,0,62,3.0,0.0,0.0,670.2730230325299,0.0,824.5040249921419,21357.64,0,43,2,8761,201711123,466.0,466.0,276.0,167.0,1.0,1.0,3.0,0.0,1.0,1.0,2423.181741338457,0.0,498.0,466.0,0.0,14178.0,0,4,3,61.0,0,0.0,1,7,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1494.7770480246718,0.06998793162655947,0.10542933051380109,14178.0,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +11124,1,26.0,3,180.0,1,120,5,0,69,1.0,0.0,55.5170527825376,874.8543473316153,141.54575536345783,0.0,2729.6,0,70,1,8762,201711124,,,444.0,,2.0,1.0,4.0,2.0,3.0,2.0,1781.5527998423354,0.0,650.0,0.0,0.0,14916.0,0,4,3,83.0,0,2.0,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1071.9171554776108,0.3927011853303088,0.07186357974507983,7458.0,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +11125,2,72.0,3,0.0,7,111,4,0,77,7.0,0.0,0.0,2907.2082926712137,95.54338487033404,0.0,15311.439999999999,0,60,1,8763,201711125,,,300.0,,0.0,1.0,5.0,0.0,1.0,1.0,1850.7509248980857,0.0,2160.0,0.0,0.0,25263.0,0,5,2,100.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3002.751677541548,0.19611164446593843,0.11885966344224945,25263.0,7,4,7,7_1,7_2,7_0_0 +11126,2,28.0,3,0.0,6,112,2,56,68,5.0,0.0,416.377895869032,1292.0925745205395,0.0,0.0,36651.20134949915,43,43,1,8766,201711126,,,300.0,,2.0,0.0,4.0,0.0,2.0,1.5,3197.6557428314777,0.0,960.0,0.0,0.0,28662.0,1,1,2,90.0,10,0.0,3,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1708.4704703895716,0.04661431024041777,0.0596075106548591,19108.0,5,3,5,5_1,5_0,5_0_0 +11127,2,79.0,2,0.0,2,221,2,78,72,7.0,0.0,0.0,605.6683943065029,0.0,2675.214776369353,24236.73904104552,70,50,1,8770,201711127,,,,,1.0,2.0,4.0,1.0,3.0,2.0,2886.746729225794,0.0,450.0,1512.0,0.0,47934.0,5,5,1,119.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3280.8831706758556,0.13536817659832862,0.06844584576033412,23967.0,7,4,7,7_1,7_1,7_0_1 +11128,1,38.0,3,109.0,8,111,2,55,46,5.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,32029.039999999994,31,31,1,8771,201711128,,,400.0,239.0,2.0,0.0,4.0,2.0,4.0,2.1,2261.063902699397,1300.0,0.0,0.0,0.0,40286.0,4,1,3,85.0,5,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2072.4464279554363,0.06470523087658689,0.05144334081207954,19183.809523809523,5,3,5,5_1,5_2,5_0_0 +11129,2,63.0,2,0.0,1,400,6,0,75,6.0,0.0,0.0,1656.8395408695667,99.08202875442048,0.0,23640.88134949915,0,50,1,8773,201711129,,,,,0.0,3.0,4.0,0.0,1.0,1.0,3191.4631749997598,0.0,1231.0,0.0,0.0,22680.0,0,5,1,100.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1755.9215696239871,0.07427479304451515,0.07742158596225693,22680.0,6,3,6,6_1,6_0,6_1_0 +11130,2,52.0,1,0.0,9,112,1,62,43,10.0,0.0,0.0,779.4245104576212,0.0,1452.4408734943875,43381.82000000001,50,33,1,8774,201711130,,,550.0,790.0,3.0,1.0,4.0,1.0,3.0,2.0,1448.0157293333043,1400.0,0.0,0.0,0.0,82240.0,1,1,3,88.0,5,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2231.8653839520084,0.051447020525003516,0.027138440952723837,41120.0,10,5,10,10_1,10_0,10_0_0 +11131,2,68.0,3,0.0,9,221,6,72,75,8.0,629.8230356281363,0.0,1052.5170763281894,53.079658261296686,0.0,35084.54,50,31,1,8775,201711131,,,,,0.0,4.0,3.0,0.0,2.0,1.5,1699.338697169831,0.0,782.0,0.0,0.0,41457.0,5,5,1,110.0,1,3.0,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1735.4197702176225,0.04946394537929306,0.041860717616268,27638.0,8,4,8,8_1,8_1,8_0_0 +11132,2,73.0,2,0.0,9,211,2,86,86,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,27882.780000000002,41,41,1,8779,201711132,,,400.0,,0.0,3.0,4.0,0.0,2.0,1.5,1201.7237078702078,0.0,1200.0,0.0,0.0,35779.0,5,5,1,170.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1615.1157181506744,0.05792520394848269,0.04514144381203148,23852.666666666668,6,3,6,6_1,6_1,6_0_0 +11133,2,70.0,2,0.0,4,112,2,75,74,10.0,0.0,0.0,1105.7763482116936,0.0,3006.639571000083,50641.47892806641,31,31,1,878,201711133,,,220.0,,0.0,2.0,5.0,0.0,2.0,1.5,1891.0510529187525,704.8880223828635,530.0,1286.0,0.0,65618.0,5,5,1,80.0,10,2.0,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4112.415919211777,0.08120647355211032,0.06267207045645672,43745.333333333336,10,5,10,10_1,10_1,10_0_1 +11134,2,44.0,2,0.0,1,111,4,0,37,10.0,0.0,166.55115834761278,2126.569028898388,95.54338487033404,0.0,37076.86,0,20,1,8781,201711134,,,170.0,,1.0,0.0,4.0,0.0,1.0,1.0,2177.677792926564,0.0,1580.0,0.0,0.0,65633.0,0,1,1,90.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2388.6635721163348,0.064424645779506,0.03639424637173883,65633.0,10,5,10,10_1,10_4,10_1_0 +11135,2,57.0,2,0.0,1,400,2,52,52,8.0,1120.0379424520509,0.0,860.0491199152341,53.079658261296686,0.0,27012.106560172433,60,50,1,8782,201711135,,,,,2.0,2.0,6.0,0.0,2.0,1.5,2235.2261340756118,0.0,639.0,0.0,0.0,41605.0,1,1,3,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2033.1667206285815,0.07526872130833186,0.04886832641818487,27736.666666666668,8,4,8,8_1,8_0,8_1_0 +11136,2,62.0,5,0.0,4,111,1,0,31,1.0,0.0,0.0,703.2483022781062,0.0,0.0,34311.0,0,10,2,8783,201711136,,,,,1.0,2.0,4.0,0.0,1.0,1.0,1620.213747835179,0.0,522.5,0.0,0.0,8571.0,0,1,1,108.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,703.2483022781062,0.02049629280050439,0.08204973775266669,8571.0,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +11137,2,66.0,2,0.0,5,111,2,75,75,8.0,0.0,0.0,673.85328571913,0.0,1334.722647783569,48173.71444202143,33,31,1,8785,201711137,,,207.0,,0.0,2.0,6.0,0.0,2.0,1.5,1569.6721628251316,502.02964508074956,293.0,460.0,0.0,44856.0,5,5,1,120.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2008.5759335026992,0.04169443765686956,0.04477831134079497,29904.0,8,4,8,8_1,8_3,8_0_0 +11138,2,42.0,4,0.0,1,112,5,21,21,1.0,0.0,20.818894793451598,2151.3341365766983,159.23897478389006,0.0,36725.757874082025,30,31,1,8787,201711138,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.1,910.6474958339024,0.0,1598.4,0.0,0.0,14167.0,1,1,2,128.0,9,1.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2331.3920061540402,0.0634811135592478,0.1645649753761587,6746.190476190476,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +11139,2,64.0,2,0.0,4,111,5,75,37,9.0,0.0,555.170527825376,1527.6302834175128,212.31863304518674,0.0,29791.46,50,12,1,8788,201711139,,,,,1.0,2.0,5.0,0.0,2.0,1.5,1786.9628880755272,0.0,1135.0,0.0,0.0,50178.0,4,4,1,126.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2295.1194442880756,0.07703950878164667,0.04573955606616596,33452.0,9,5,9,9_1,9_2,9_0_1 +11140,1,39.0,4,68.0,3,111,1,0,55,5.0,0.0,0.0,905.8107319295032,0.0,0.0,19027.28,0,31,2,879,201711140,,,,592.0,1.0,0.0,3.0,1.0,2.0,1.3,902.3865700461234,0.0,673.0,0.0,0.0,25389.0,0,1,3,75.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,905.8107319295032,0.04760589700311885,0.03567729063490106,19530.0,5,3,5,5_0,5_3,5_0_1 +11141,1,26.0,2,92.0,8,111,2,47,38,3.0,0.0,0.0,484.5347154452023,0.0,698.8821671070731,50282.9,30,12,2,8790,201711141,,,,659.0,2.0,0.0,3.0,0.0,2.0,1.5,5413.254463539861,0.0,360.0,395.0,0.0,21643.0,1,1,3,75.0,9,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1183.4168825522754,0.023535175627345983,0.054678966989431935,14428.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11142,2,68.0,3,0.0,7,221,2,0,78,5.0,0.0,0.0,2153.487624200899,169.8549064361494,0.0,25485.145846751297,0,71,1,8791,201711142,,,600.0,,0.0,2.0,6.0,0.0,1.0,1.0,2201.7182123843277,0.0,1600.0,0.0,0.0,19277.0,0,5,1,133.0,1,2.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2323.3425306370486,0.091164576597203,0.12052407172470035,19277.0,5,3,5,5_1,5_1,5_0_0 +11143,2,80.0,3,0.0,1,112,2,0,74,7.0,0.0,4385.84716982047,2187.135868329038,123.8525359430256,0.0,32844.271191295746,0,12,1,8793,201711143,,,205.0,,0.0,1.0,13.0,1.0,2.0,1.5,4106.934387828351,0.0,1625.0,0.0,0.0,45370.0,0,5,1,350.0,7,0.0,2,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,6696.835574092534,0.20389661061705344,0.14760492779573584,30246.666666666668,8,4,8,8_1,8_0,8_1_0 +11144,2,53.0,3,0.0,99,111,1,0,56,3.0,0.0,0.0,589.5172371249961,0.0,176.9321942043223,15857.830875301628,0,50,8,8794,201711144,,,100.0,261.0,1.0,1.0,3.0,0.0,1.0,1.0,1749.363905560618,0.0,438.0,100.0,0.0,15711.0,0,1,3,51.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,766.4494313293184,0.048332551744075775,0.048784255065197527,15711.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +11145,2,53.0,1,0.0,4,111,1,0,22,9.0,0.0,0.0,1072.706022805073,0.0,0.0,33908.1701582034,0,60,2,8795,201711145,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3389.456878007291,0.0,797.0,0.0,0.0,41639.0,0,1,1,60.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1072.706022805073,0.031635621084836196,0.025762050548886212,41639.0,10,5,10,10_0,10_3,10_0_1 +11146,2,44.0,4,0.0,1,111,2,52,64,4.0,1586.456009138882,0.0,1345.929765125562,240.62778411787832,0.0,46575.12301499241,50,71,1,8797,201711146,,,356.0,,2.0,0.0,7.0,2.0,5.0,2.8,3064.967109167785,0.0,1000.0,0.0,0.0,49173.0,1,1,2,130.0,7,6.0,5,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3173.0135583823226,0.0681267885725377,0.0645275569597609,17561.785714285714,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +11147,2,50.0,3,0.0,1,111,4,56,46,6.0,0.0,416.377895869032,471.07541779394666,0.0,0.0,46125.485846751304,31,31,1,8799,201711147,,,300.0,,2.0,0.0,5.0,2.0,4.0,2.5,549.8626502466326,0.0,350.0,0.0,0.0,55544.0,1,1,1,100.0,9,7.0,4,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,887.4533136629786,0.019239977582273717,0.015977482962389794,22217.6,6,3,6,6_1,6_3,6_1_0 +11148,1,38.0,4,144.0,3,111,1,85,52,2.0,0.0,0.0,726.8020731678034,0.0,0.0,48465.280000000006,60,43,2,88,201711148,,,,,1.0,0.0,5.0,3.0,5.0,2.4,2461.9281072899744,0.0,540.0,0.0,0.0,30399.0,6,1,1,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,726.8020731678034,0.014996345284042584,0.023908749405171334,12666.25,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +11149,2,63.0,3,0.0,7,212,5,0,77,6.0,0.0,138.792631956344,1668.9529087556969,0.0,0.0,17195.68,0,71,1,8801,201711149,,,600.0,,0.0,3.0,5.0,0.0,1.0,1.0,836.3197863629687,0.0,1240.0,0.0,0.0,21177.0,0,5,1,110.0,4,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1807.7455407120408,0.10512788913913498,0.0853636275540464,21177.0,5,3,5,5_1,5_0,5_0_0 +11150,2,67.0,3,0.0,7,112,4,0,74,9.0,0.0,0.0,578.7497990039916,0.0,0.0,19093.0,0,20,2,8802,201711150,,,,500.0,0.0,0.0,2.0,0.0,1.0,1.0,3069.285722699734,0.0,430.0,0.0,0.0,32842.0,0,5,3,37.0,10,4.0,1,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,578.7497990039916,0.03031214576043532,0.017622245874307035,32842.0,9,5,9,9_0,9_2,9_0_0 +11151,2,40.0,3,0.0,8,112,2,52,53,6.0,0.0,0.0,835.0976897760227,0.0,1556.1866501725578,35181.34,50,31,1,8806,201711151,,,700.0,800.0,2.0,0.0,5.0,2.0,4.0,2.3,2854.8674780846713,1500.0,0.0,0.0,0.0,52552.0,1,1,3,94.0,9,1.0,4,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2391.2843399485805,0.06797024615743973,0.045503203302416285,22848.695652173916,6,3,6,6_1,6_1,6_0_0 +11152,2,69.0,3,0.0,1,120,5,0,78,5.0,0.0,0.0,646.0462872602698,268.9369351905699,0.0,10890.279999999999,0,71,1,8807,201711152,,,200.0,,0.0,3.0,5.0,0.0,1.0,1.0,2985.4158931027046,0.0,480.0,0.0,0.0,18650.0,0,5,1,100.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,914.9832224508397,0.08401833767826353,0.04906076259790025,18650.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11153,1,57.0,4,140.0,1,111,1,0,78,1.0,0.0,0.0,265.1481637297357,0.0,495.4101437721024,4361.679999999999,0,71,1,8808,201711153,,,324.0,,0.0,3.0,4.0,0.0,1.0,1.0,2513.581994265843,0.0,197.0,280.0,0.0,7700.0,0,6,3,80.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,760.558307501838,0.17437278926969382,0.09877380616906987,7700.0,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +11154,2,32.0,2,0.0,5,111,1,81,34,4.0,0.0,0.0,565.290501352736,0.0,0.0,36497.740000000005,30,0,2,8809,201711154,,,,,2.0,0.0,3.0,2.0,4.0,2.1,1092.7427418221057,0.0,420.0,0.0,0.0,36090.0,4,1,2,58.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,565.290501352736,0.015488370001888772,0.015663355537620837,17185.714285714286,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11155,2,81.0,1,0.0,7,300,5,71,71,3.0,0.0,693.9631597817199,1145.3862301218533,0.0,0.0,19677.239999999998,70,70,1,8810,201711155,,,228.0,,0.0,3.0,6.0,0.0,2.0,1.5,1838.9656416528946,0.0,851.0,0.0,0.0,22201.0,5,5,1,130.0,0,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1839.3493899035732,0.0934759849401427,0.082849844146821,14800.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11156,0,80.0,3,0.0,2,300,2,0,71,3.0,0.0,0.0,0.0,0.0,0.0,18196.74,0,70,1,8812,201711156,,,,,0.0,2.0,12.0,0.0,1.0,1.0,2053.6330595468858,0.0,0.0,0.0,0.0,15050.0,0,5,5,200.0,0,0.0,1,9,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0.0,0.0,0.0,15050.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +11157,2,70.0,3,0.0,1,112,1,0,75,4.0,0.0,0.0,467.03762849857,0.0,0.0,17403.120000000003,0,44,2,8813,201711157,,,,400.0,0.0,0.0,2.0,0.0,1.0,1.0,324.9286176761221,0.0,347.0,0.0,0.0,17187.0,0,5,3,44.0,9,0.0,1,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,467.03762849857,0.02683643096746847,0.027173888898502935,17187.0,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +11158,1,44.0,4,457.0,99,111,1,0,85,1.0,0.0,0.0,1744.3249756027283,0.0,0.0,32813.880000000005,0,71,2,8815,201711158,,,,,1.0,0.0,5.0,5.0,6.0,3.1,886.7451139484634,0.0,1296.0,0.0,0.0,23991.0,0,6,3,80.0,9,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1744.3249756027283,0.05315814452916656,0.07270747261901248,7739.032258064516,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11159,2,67.0,3,0.0,4,111,1,86,77,1.0,0.0,0.0,581.4416585342427,0.0,456.48506104715153,27060.43119129575,71,50,2,8816,201711159,,,,308.0,0.0,4.0,4.0,0.0,2.0,1.5,2310.018573899898,0.0,432.0,258.0,0.0,14712.0,6,5,3,75.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1037.9267195813943,0.03835588251510395,0.07054966826953468,9808.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +11160,2,58.0,3,0.0,6,300,2,78,52,7.0,1269.1648073111057,0.0,1076.7438121004495,49.54101437721024,0.0,36566.86,70,50,1,8817,201711160,,,500.0,,1.0,1.0,3.0,0.0,2.0,1.5,2751.2812603855573,0.0,800.0,0.0,0.0,36350.0,5,1,1,80.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2395.4496337887654,0.06550875940096484,0.06589957727066754,24233.333333333332,7,4,7,7_1,7_0,7_0_0 +11161,2,53.0,4,0.0,5,111,1,85,53,1.0,0.0,0.0,543.755625110727,0.0,0.0,7905.72,71,71,2,8818,201711161,,,,257.0,1.0,2.0,1.0,1.0,3.0,1.8,3058.494652242041,0.0,404.0,0.0,0.0,19370.0,4,1,3,33.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,543.755625110727,0.06878002574221286,0.028072050857549147,10761.111111111111,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +11162,2,50.0,3,0.0,99,111,2,0,45,5.0,0.0,0.0,753.7206684703146,0.0,1496.8463629685666,33837.020000000004,0,42,1,8820,201711162,,,249.0,621.0,1.0,0.0,3.0,1.0,2.0,1.5,1619.8115099146623,0.0,560.0,846.0,0.0,33057.0,0,1,3,90.0,8,7.0,2,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2250.5670314388813,0.06651197509233618,0.06808140579722544,22038.0,6,3,6,6_1,6_3,6_0_0 +11163,2,50.0,3,0.0,1,300,6,0,63,4.0,253.83296146222114,0.0,532.9881869897225,0.0,0.0,22868.760000000002,0,50,2,8821,201711163,,,,290.0,1.0,0.0,1.0,1.0,2.0,1.3,3991.6377196031694,0.0,396.0,0.0,0.0,21517.0,0,1,3,38.0,0,0.0,2,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,786.8211484519436,0.03440593842656723,0.03656741871320089,16551.53846153846,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +11164,2,40.0,3,0.0,3,111,2,0,37,6.0,0.0,0.0,67.92127876844984,0.0,126.56984754736804,49297.320000000014,0,31,2,8822,201711164,,,,595.0,1.0,0.0,4.0,3.0,4.0,2.3,670.5202191297537,122.0,0.0,0.0,0.0,51720.0,0,1,3,80.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,194.4911263158179,0.003945267741041863,0.0037604626124481417,22486.956521739132,6,3,6,6_0,6_2,6_0_1 +11165,1,44.0,3,406.0,99,111,2,0,56,1.0,0.0,0.0,726.8020731678034,0.0,1344.6846759528494,35796.32,0,50,1,8824,201711165,,,,,1.0,0.0,4.0,2.0,3.0,2.0,623.1670695012457,0.0,540.0,760.0,0.0,17453.0,0,1,3,60.0,6,4.0,2,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2071.486749120653,0.05786870687044514,0.11868943729563128,8726.5,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11166,2,38.0,1,0.0,9,221,3,62,62,9.0,0.0,402.4986326733976,2212.7085338664237,0.0,2675.214776369353,55425.100000000006,50,50,1,8825,201711166,,,700.0,,2.0,0.0,6.0,2.0,4.0,2.3,2978.115329362101,0.0,1644.0,1512.0,0.0,82701.0,1,1,2,122.0,1,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5290.421942909174,0.09545173473587189,0.06397047125076086,35956.956521739135,9,5,9,9_1,9_1,9_0_0 +11167,2,84.0,3,0.0,1,111,2,86,78,3.0,0.0,0.0,334.0390759104091,0.0,622.4746600690232,16977.36,71,71,2,8827,201711167,,,,,0.0,2.0,2.0,0.0,2.0,1.5,4686.9752790793245,600.0,0.0,0.0,0.0,20168.0,5,5,1,35.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,956.5137359794323,0.05634054623212515,0.047427297499971856,13445.333333333334,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +11168,2,56.0,2,0.0,7,120,4,78,67,2.0,317.29120182777643,0.0,1884.3016711757866,212.31863304518674,0.0,16285.8716935026,71,71,1,8829,201711168,,,,,1.0,2.0,4.0,0.0,2.0,1.5,2366.2639902564392,0.0,1400.0,0.0,0.0,19639.0,7,1,1,100.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2413.9115060487497,0.14822120372051084,0.1229141761825322,13092.666666666666,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11169,1,73.0,4,119.0,99,112,2,78,78,4.0,0.0,485.77421184720396,628.5492003136375,176.9321942043223,0.0,21526.312027330718,71,71,1,883,201711169,,,200.0,,0.0,6.0,5.0,0.0,2.0,1.5,1945.4720325545345,0.0,467.0,0.0,0.0,25979.0,7,5,3,95.0,9,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1291.2556063651637,0.05998498975234266,0.04970382256303798,17319.333333333332,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +11170,2,57.0,3,0.0,5,111,4,21,38,10.0,0.0,416.377895869032,4845.3471544520235,0.0,0.0,40128.73840905729,31,41,1,8830,201711170,,,400.0,,2.0,1.0,4.0,1.0,3.0,2.0,1659.6270186441075,0.0,3600.0,0.0,0.0,84570.0,1,1,1,90.0,8,6.0,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,5261.725050321055,0.1311211181544011,0.062217394469919064,42285.0,10,5,10,10_1,10_2,10_0_0 +11171,2,42.0,3,0.0,2,111,1,0,55,3.0,0.0,0.0,430.6975248401798,0.0,19.462541362475452,20691.48,0,20,2,8831,201711171,,,,,1.0,0.0,2.0,0.0,1.0,1.0,5195.546807392389,0.0,320.0,11.0,0.0,14800.0,0,1,2,38.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,450.1600662026553,0.021755817670009843,0.0304162206893686,14800.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +11172,2,38.0,2,0.0,9,400,4,55,47,3.0,0.0,0.0,2298.8480388344597,0.0,0.0,28244.279999999995,50,31,1,8833,201711172,,,583.0,,2.0,0.0,5.0,2.0,4.0,2.1,1938.5567193076079,0.0,1708.0,0.0,0.0,33766.0,1,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2298.8480388344597,0.08139163182189314,0.06808174017752945,16079.047619047618,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11173,2,29.0,3,0.0,1,221,2,63,63,5.0,0.0,0.0,769.8718256518214,0.0,1070.43977493615,45084.67363290217,50,50,1,8838,201711173,,,383.0,,2.0,0.0,8.0,1.0,3.0,1.8,2345.819631266556,0.0,572.0,605.0,0.0,35989.0,1,1,2,153.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1840.3116005879713,0.040819006821975465,0.05113539138592268,19993.888888888887,5,3,5,5_1,5_1,5_1_0 +11174,2,28.0,3,0.0,7,112,2,54,37,3.0,0.0,0.0,1049.8252167979383,0.0,0.0,38848.740000000005,60,43,1,8839,201711174,,,180.0,638.0,2.0,1.0,4.0,2.0,4.0,2.3,217.3413676696808,0.0,780.0,0.0,0.0,35165.0,4,1,3,83.0,6,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1049.8252167979383,0.027023404537648794,0.029854264660825774,15289.13043478261,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11175,2,71.0,3,0.0,1,120,6,86,75,5.0,0.0,97.1548423694408,538.3719060502248,184.0094819724952,0.0,26381.600000000002,50,60,1,8841,201711175,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2364.2879325718773,0.0,400.0,0.0,0.0,33210.0,5,5,1,185.0,0,3.0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,819.5362303921607,0.0310646901777057,0.024677393266852175,22140.0,6,3,6,6_1,6_1,6_1_0 +11176,1,31.0,4,29.0,7,111,4,0,43,5.0,0.0,0.0,1067.3223037445707,0.0,0.0,31361.481349499143,0,30,2,8842,201711176,,,,464.0,1.0,0.0,3.0,1.0,2.0,1.3,2781.386230500392,0.0,793.0,0.0,0.0,25334.0,0,1,3,72.0,8,7.0,2,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1067.3223037445707,0.03403290462749829,0.042130034883736116,19487.69230769231,5,3,5,5_0,5_3,5_0_0 +11177,2,46.0,1,0.0,5,111,1,85,63,2.0,0.0,0.0,807.5578590753372,0.0,0.0,36049.200000000004,71,71,2,8843,201711177,,,,,1.0,0.0,4.0,4.0,6.0,2.9,3044.0758103383687,0.0,600.0,0.0,0.0,30670.0,4,1,1,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,807.5578590753372,0.022401547304110415,0.02633054643219228,10575.862068965518,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +11178,2,32.0,3,0.0,5,111,4,38,38,9.0,0.0,0.0,2772.6153161586576,0.0,0.0,45456.72,20,20,1,8844,201711178,,,456.0,,2.0,0.0,4.0,1.0,3.0,1.8,3870.049560464779,0.0,2060.0,0.0,0.0,61481.0,1,1,2,90.0,9,7.0,4,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2772.6153161586576,0.0609946189729188,0.045097108312464954,34156.11111111111,9,5,9,9_1,9_3,9_0_0 +11179,2,40.0,3,0.0,5,400,2,13,52,4.0,0.0,138.792631956344,0.0,106.15931652259337,0.0,44871.74,44,50,1,8846,201711179,,,,,2.0,0.0,6.0,3.0,5.0,2.8,1603.8052467369025,0.0,0.0,0.0,0.0,43820.0,1,1,1,150.0,0,0.0,4,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,244.95194847893737,0.005458935813029256,0.005589957747123171,15650.000000000002,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11180,1,28.0,4,330.0,4,120,2,63,56,3.0,0.0,0.0,1090.2031097517051,0.0,348.5564225825149,14579.927849749774,50,50,2,8847,201711180,,,221.0,,2.0,0.0,5.0,2.0,4.0,2.1,3357.9231176210947,0.0,810.0,197.0,0.0,32280.0,4,4,3,90.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,1438.75953233422,0.09868084034166963,0.04457123706115923,15371.42857142857,3,2,3_1,3_0_1,3_0_1,3_0_1_1 +11181,2,65.0,1,0.0,1,111,4,0,75,8.0,0.0,0.0,646.0462872602698,0.0,0.0,33045.91665845403,0,50,2,8849,201711181,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2683.5582542402267,0.0,480.0,0.0,0.0,28832.0,0,5,1,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,646.0462872602698,0.01954995813665813,0.022407265790103697,28832.0,8,4,8,8_0,8_4,8_1_0 +11182,2,73.0,3,0.0,4,111,2,77,75,7.0,2125.851052246102,0.0,787.3689125984538,148.62304313163074,0.0,24273.8,60,33,1,885,201711182,,,165.0,,0.0,2.0,5.0,0.0,2.0,1.5,1727.4607550787316,0.0,585.0,0.0,0.0,39680.0,5,5,1,150.0,7,5.0,3,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3061.8430079761865,0.12613777026984596,0.07716338225746437,26453.333333333332,7,4,7,7_1,7_2,7_0_1 +11183,2,33.0,1,0.0,1,221,2,22,22,6.0,0.0,0.0,1858.729005638401,53.079658261296686,0.0,14406.88,50,50,1,8850,201711183,,,434.0,,2.0,0.0,4.0,0.0,2.0,1.5,2914.831848660964,0.0,1381.0,0.0,0.0,33284.0,1,1,1,90.0,3,4.0,3,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1911.8086638996979,0.13270108891721857,0.057439270036645174,22189.333333333332,6,3,6,6_1,6_2,6_1_0 +11184,2,37.0,3,0.0,1,111,4,85,47,4.0,509.25237893358116,387.23144315819974,1144.0403003567276,61.9262679715128,0.0,19181.851191295747,50,41,1,8851,201711184,,,400.0,,1.0,0.0,6.0,2.0,4.0,2.1,2496.147787317644,0.0,850.0,0.0,0.0,36405.0,6,1,2,130.0,4,4.0,4,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2102.4503904200214,0.10960622983948816,0.057751693185552025,17335.714285714286,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +11185,2,55.0,2,0.0,8,112,5,56,47,6.0,0.0,416.377895869032,1222.7092567179427,265.39829130648343,322.16570377959994,27941.768108466862,50,50,1,8852,201711185,,,374.0,,2.0,2.0,6.0,0.0,2.0,1.5,1899.2070403145433,310.533801080876,780.0,0.0,0.0,34726.0,1,1,1,220.0,8,0.0,3,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2226.651147673058,0.07968898528645159,0.06412057673423538,23150.666666666668,6,3,6,6_1,6_0,6_0_0 +11186,2,34.0,4,0.0,1,112,2,0,12,5.0,1903.7472109666587,0.0,693.1538290396644,56.61830214538313,0.0,12298.880000000001,0,50,1,8853,201711186,,,193.0,,1.0,2.0,4.0,0.0,1.0,1.0,2264.7315025728913,0.0,515.0,0.0,0.0,18486.0,0,1,2,118.0,5,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2653.519342151706,0.21575292564458762,0.14354210441153878,18486.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11187,2,62.0,3,0.0,4,400,2,78,78,8.0,1903.7472109666587,0.0,834.4764543778484,0.0,0.0,35921.47697444815,71,71,1,8854,201711187,,,384.0,350.0,1.0,1.0,5.0,1.0,3.0,2.0,2596.692888725251,0.0,620.0,0.0,0.0,55795.0,5,5,3,140.0,0,1.0,4,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2738.223665344507,0.07622803670607069,0.04907650623433116,27897.5,8,4,8,8_1,8_1,8_0_1 +11188,2,73.0,3,0.0,5,112,4,77,74,10.0,0.0,0.0,3993.3736131275423,0.0,0.0,67643.70000000001,31,12,1,8856,201711188,,,,,0.0,2.0,6.0,0.0,2.0,1.5,1918.2741851085796,0.0,2967.0,0.0,0.0,61637.0,5,5,1,140.0,8,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3993.3736131275423,0.05903541073488797,0.06478857850199624,41091.333333333336,10,5,10,10_1,10_1,10_0_0 +11189,2,73.0,3,0.0,1,400,6,0,72,4.0,967.7381655747181,0.0,1076.7438121004495,159.23897478389006,0.0,20693.590875301627,0,71,1,8857,201711189,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2631.5363386670247,0.0,800.0,0.0,0.0,16053.0,0,5,2,82.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2203.7209524590576,0.10649292168471639,0.13727782672765573,16053.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11190,2,55.0,3,0.0,7,300,2,47,21,3.0,1522.997768773327,0.0,1615.1157181506744,58.38762408742635,0.0,48438.26,31,31,1,8859,201711190,,,487.0,,2.0,0.0,4.0,2.0,4.0,2.5,2295.0263388784783,0.0,1200.0,0.0,0.0,38120.0,1,1,1,92.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3196.501111011428,0.06599124557759564,0.08385364929201017,15248.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11191,2,67.0,2,0.0,1,111,2,0,74,8.0,0.0,0.0,605.6683943065029,0.0,1592.3897478389006,41228.380000000005,0,30,2,886,201711191,,,,670.0,0.0,1.0,4.0,0.0,1.0,1.0,2224.492636134323,0.0,450.0,900.0,0.0,32071.0,0,5,3,80.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2198.0581421454035,0.05331420109510496,0.06853724991878656,32071.0,9,5,9,9_0,9_3,9_1_0 +11192,2,56.0,1,0.0,2,400,6,85,62,2.0,777.3634444780523,0.0,769.8718256518214,219.39592081335965,0.0,27374.850875301636,41,50,1,8861,201711192,,,441.0,,1.0,1.0,3.0,1.0,3.0,2.0,2475.657118765226,0.0,572.0,0.0,0.0,26147.0,4,1,1,80.0,0,1.0,4,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1766.6311909432334,0.06453482428052743,0.06756534940693898,13073.5,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +11193,2,46.0,3,0.0,2,111,2,52,63,5.0,0.0,0.0,699.8834778652922,0.0,2653.9829130648345,32647.34,31,50,1,8862,201711193,,,400.0,,2.0,0.0,5.0,2.0,4.0,2.3,1734.6426202671153,0.0,520.0,1500.0,0.0,42395.0,1,1,2,90.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3353.8663909301267,0.10273015783001392,0.07910995143130385,18432.608695652176,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +11194,2,47.0,3,0.0,8,120,2,55,67,7.0,0.0,0.0,1076.7438121004495,0.0,2830.9151072691566,53370.187533755656,50,31,1,8864,201711194,,,400.0,,2.0,0.0,6.0,2.0,4.0,2.5,1857.52181875961,0.0,800.0,1600.0,0.0,57158.0,1,1,1,160.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3907.6589193696063,0.07321800990296473,0.06836591412172585,22863.2,6,3,6,6_1,6_1,6_0_0 +11195,2,70.0,2,0.0,99,112,2,0,72,7.0,0.0,0.0,1345.929765125562,53.079658261296686,0.0,18650.265846751303,0,41,1,8866,201711195,,,,,0.0,1.0,2.0,0.0,1.0,1.0,3988.3748713876867,0.0,1000.0,0.0,0.0,24162.0,0,5,3,65.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1399.0094233868585,0.07501284082932,0.057901226032069306,24162.0,7,4,7,7_1,7_0,7_0_0 +11196,2,52.0,3,0.0,1,120,2,0,53,9.0,2062.392811880547,0.0,1382.2698687839522,0.0,0.0,45353.255383505435,0,44,1,8867,201711196,,,600.0,,1.0,1.0,4.0,1.0,3.0,2.0,2753.3727066555603,0.0,1027.0,0.0,0.0,65368.0,0,1,1,200.0,0,0.0,4,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3444.662680664499,0.07595182862920336,0.05269646739481855,32684.0,9,5,9,9_1,9_0,9_1_0 +11197,1,43.0,3,249.0,99,111,2,85,67,2.0,0.0,0.0,823.9630539123425,0.0,1535.4374948369239,26218.800000000003,50,50,1,8868,201711197,,,490.0,,1.0,1.0,5.0,2.0,4.0,2.3,2006.8339161799565,1480.0,0.0,0.0,0.0,27738.0,6,1,3,100.0,8,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2359.4005487492664,0.08998888388291097,0.08506022599860359,12060.000000000002,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +11198,2,46.0,3,0.0,9,112,2,54,33,9.0,0.0,0.0,1991.9760523858317,0.0,0.0,55274.880000000005,31,20,1,8869,201711198,,,232.0,,2.0,0.0,6.0,2.0,4.0,2.1,2151.8473620554305,0.0,1480.0,0.0,0.0,67363.0,1,1,2,92.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1991.9760523858317,0.03603763685033476,0.029570774050826594,32077.619047619046,9,5,9,9_1,9_0,9_0_0 +11199,2,61.0,2,0.0,1,111,2,0,86,3.0,0.0,0.0,615.0899026623819,0.0,0.0,17526.64,0,60,2,887,201711199,,,,,0.0,0.0,1.0,0.0,1.0,1.0,2781.488345367785,0.0,457.0,0.0,0.0,15445.0,0,5,1,32.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,615.0899026623819,0.03509457047456797,0.03982453238344978,15445.0,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +11200,2,30.0,2,0.0,9,111,4,55,55,5.0,0.0,0.0,1243.6391029760193,0.0,0.0,26053.46,20,20,2,8870,201711200,,,,705.0,2.0,0.0,3.0,0.0,2.0,1.5,2417.8469397180634,0.0,924.0,0.0,0.0,29949.0,1,1,3,59.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1243.6391029760193,0.04773412448772713,0.04152522965628299,19966.0,5,3,5,5_0,5_3,5_0_0 +11201,2,74.0,3,0.0,4,111,2,0,77,3.0,0.0,0.0,581.4416585342427,0.0,2761.911551529471,17807.0,0,71,1,8871,201711201,,,390.0,,0.0,2.0,5.0,0.0,1.0,1.0,3509.84934256802,0.0,432.0,1561.0,0.0,14420.0,0,5,1,120.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3343.353210063714,0.18775499579175123,0.23185528502522287,14420.0,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +11202,2,56.0,3,0.0,6,112,2,62,77,9.0,0.0,0.0,874.8543473316153,0.0,1617.1602550275056,51319.74,60,30,1,8872,201711202,,,460.0,,1.0,5.0,4.0,0.0,2.0,1.5,3226.217465700391,0.0,650.0,914.0,0.0,54436.0,1,5,2,85.0,8,1.0,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2492.014602359121,0.04855859757588642,0.04577879716289075,36290.666666666664,9,5,9,9_1,9_1,9_0_0 +11203,2,50.0,3,0.0,9,111,5,55,53,5.0,0.0,485.77421184720396,1877.572022350159,222.9345646974461,0.0,37649.599877080494,50,50,1,8873,201711203,,,1350.0,,2.0,0.0,5.0,2.0,4.0,2.3,1657.7903247635743,0.0,1395.0,0.0,0.0,46680.0,1,1,2,135.0,6,4.0,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2586.280798894809,0.06869344713724909,0.05540447298403618,20295.652173913044,5,3,5,5_1,5_2,5_0_0 +11204,2,81.0,3,0.0,5,300,6,0,71,5.0,104.70609660316623,0.0,672.964882562781,148.62304313163074,0.0,14754.44,0,70,2,8874,201711204,,,,266.0,0.0,1.0,3.0,0.0,1.0,1.0,3668.1316001961904,0.0,500.0,0.0,0.0,20515.0,0,5,3,55.0,0,0.0,1,7,1,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,926.294022297578,0.06278069667825942,0.045152036183162464,20515.0,5,3,5,5_0,5_0,5_0_0 +11205,2,39.0,4,0.0,1,300,6,62,54,4.0,0.0,693.9631597817199,1292.0925745205395,0.0,0.0,18780.26,50,43,1,8875,201711205,,,300.0,,2.0,0.0,4.0,1.0,3.0,1.8,2201.592340259015,0.0,960.0,0.0,0.0,29832.0,4,1,2,120.0,0,0.0,4,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1986.0557343022595,0.10575230238038555,0.06657467599565096,16573.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11206,2,41.0,2,0.0,4,111,1,0,34,9.0,0.0,0.0,2547.8450453826886,0.0,0.0,36262.86932216843,0,20,2,8876,201711206,,,,,1.0,2.0,5.0,0.0,1.0,1.0,2663.1726473994836,0.0,1893.0,0.0,0.0,39170.0,0,1,2,106.0,7,5.0,1,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2547.8450453826886,0.07026043699815902,0.06504582704576688,39170.0,9,5,9,9_0,9_2,9_0_1 +11207,2,27.0,2,0.0,99,111,2,43,37,8.0,0.0,0.0,1130.581002705472,0.0,0.0,42670.6,30,31,2,8878,201711207,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3850.861884286542,0.0,840.0,0.0,0.0,44292.0,1,1,2,78.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1130.581002705472,0.02649554969242223,0.025525625456187844,29528.0,8,4,8,8_0,8_3,8_0_0 +11208,2,67.0,1,0.0,8,300,4,0,75,4.0,0.0,0.0,2328.4584936672222,90.23541904420436,0.0,57688.81665845403,0,70,1,8879,201711208,,,131.0,,0.0,3.0,4.0,0.0,2.0,1.3,678.2301736664482,0.0,1730.0,0.0,0.0,21868.0,0,5,1,136.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2418.6939127114265,0.04192656484932384,0.11060425794363575,16821.53846153846,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11209,2,43.0,4,0.0,3,111,2,65,52,7.0,0.0,0.0,2018.894647688343,0.0,1256.2185788506883,36017.437671875436,60,50,1,888,201711209,,,610.0,,2.0,0.0,3.0,1.0,3.0,2.0,2591.0137378667296,0.0,1500.0,710.0,0.0,48070.0,4,1,3,90.0,8,6.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3275.1132265390315,0.09093132211057965,0.06813216614393658,24035.0,7,4,7,7_1,7_2,7_0_1 +11210,1,41.0,4,85.0,6,111,6,0,52,2.0,0.0,0.0,1749.7086946632305,46.0023704931238,0.0,11839.480000000001,0,42,2,8880,201711210,,,,261.0,1.0,0.0,3.0,1.0,2.0,1.3,643.8884120680082,0.0,1300.0,0.0,0.0,15863.0,0,1,3,75.0,9,7.0,2,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1795.7110651563544,0.15167144715446576,0.11320122707913727,12202.307692307691,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11211,2,44.0,3,0.0,9,111,2,0,46,7.0,0.0,0.0,134.5929765125562,0.0,176.9321942043223,16230.49490387111,0,31,8,8882,201711211,,,,580.0,1.0,0.0,2.0,1.0,2.0,1.3,3914.506429846569,0.0,100.0,100.0,0.0,37660.0,0,1,3,40.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,311.5251707168785,0.019193818337762278,0.0082720438320998,28969.23076923077,8,4,8,8_0,8_3,8_0_0 +11212,2,35.0,4,0.0,9,112,4,52,52,6.0,0.0,0.0,3499.417389326461,0.0,0.0,22830.979999999996,31,50,1,8883,201711212,,,340.0,,2.0,0.0,4.0,2.0,4.0,2.1,2521.2359568979637,0.0,2600.0,0.0,0.0,45920.0,1,1,2,92.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3499.417389326461,0.15327495312625483,0.0762068246804543,21866.666666666664,6,3,6,6_1,6_0,6_0_0 +11213,2,57.0,1,0.0,7,111,2,37,37,10.0,0.0,0.0,1580.843479150775,0.0,3399.546261149342,153668.3066140855,31,31,1,8885,201711213,,,457.0,,3.0,0.0,7.0,3.0,5.0,2.8,1922.8731740725955,1243.9200394991708,660.0,1192.0,0.0,126337.0,1,1,2,160.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4980.389740300117,0.03240999949851472,0.03942146592288971,45120.357142857145,10,5,10,10_1,10_4,10_0_0 +11214,2,34.0,3,0.0,9,400,2,43,37,9.0,0.0,0.0,1642.0343134531856,0.0,0.0,30839.8,44,30,1,8886,201711214,,,380.0,,2.0,0.0,6.0,0.0,2.0,1.5,2876.8789971328697,0.0,1220.0,0.0,0.0,53392.0,1,1,2,120.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1642.0343134531856,0.05324400007306097,0.030754313632251753,35594.666666666664,9,5,9,9_1,9_0,9_0_0 +11215,1,59.0,3,270.0,9,111,2,0,63,2.0,0.0,0.0,1144.0403003567276,0.0,0.0,8250.470875301628,0,50,8,8888,201711215,,,,,1.0,2.0,3.0,0.0,1.0,1.0,2721.649148759155,0.0,850.0,0.0,0.0,10920.0,0,4,3,63.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1144.0403003567276,0.13866363722117894,0.1047655952707626,10920.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11216,2,68.0,3,0.0,6,112,5,77,77,7.0,0.0,832.755791738064,928.6915379366377,0.0,0.0,20364.040315994116,60,71,1,8889,201711216,,,,,0.0,3.0,6.0,0.0,2.0,1.5,2703.9388191021067,0.0,690.0,0.0,0.0,36851.0,5,5,1,105.0,9,3.0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1761.4473296747017,0.08649792979889377,0.04779917314793904,24567.333333333332,7,4,7,7_1,7_1,7_0_0 +11217,2,86.0,3,0.0,6,120,2,0,77,3.0,0.0,0.0,464.34576896831885,2615.0578303398834,0.0,21911.760000000002,0,70,1,889,201711217,,,270.0,,0.0,2.0,4.0,0.0,1.0,1.0,2437.0459388400945,0.0,345.0,0.0,0.0,14118.0,0,5,5,103.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3079.403599308202,0.14053657028500685,0.21811896864344824,14118.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11218,1,40.0,3,112.0,99,111,2,56,63,7.0,0.0,0.0,672.964882562781,0.0,925.3553756886056,37436.38,44,43,2,8890,201711218,,,574.0,603.0,2.0,0.0,4.0,1.0,3.0,1.8,2169.0457370891722,0.0,500.0,523.0,0.0,45710.0,1,1,3,95.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1598.3202582513866,0.04269430586641622,0.03496653376178925,25394.444444444445,7,4,7,7_0,7_3,7_0_0 +11219,1,32.0,4,319.0,2,111,1,0,46,5.0,0.0,0.0,301.4882673881259,0.0,184.0094819724952,16723.42,0,31,2,8891,201711219,,,,107.0,1.0,0.0,3.0,1.0,2.0,1.3,1019.5313089326872,0.0,224.0,104.0,0.0,24345.0,0,1,3,60.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,485.4977493606211,0.02903100857125045,0.01994240087741307,18726.923076923078,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +11220,2,43.0,2,0.0,1,111,2,43,38,6.0,0.0,1387.9263195634398,1009.4473238441715,159.23897478389006,0.0,57962.10584675129,33,20,1,8893,201711220,,,400.0,,2.0,0.0,7.0,2.0,4.0,2.3,2148.3839393869043,0.0,750.0,0.0,0.0,54870.0,1,1,2,120.0,8,6.0,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2556.6126181915015,0.044108345976094254,0.04659399705105707,23856.521739130436,6,3,6,6_1,6_2,6_1_0 +11221,2,59.0,1,0.0,1,111,2,56,37,10.0,2062.392811880547,444.1364222603008,1749.7086946632305,0.0,0.0,34155.330875301624,50,12,1,8895,201711221,,,1100.0,,2.0,2.0,6.0,0.0,2.0,1.5,2047.3130310862653,0.0,1300.0,0.0,0.0,186856.0,1,1,1,126.0,7,5.0,3,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,4256.237928804078,0.1246141618227404,0.02277817104510467,124570.66666666667,10,5,10,10_1,10_2,10_1_0 +11222,2,29.0,2,0.0,99,400,2,52,62,5.0,1031.1964059402735,0.0,951.5723439437724,60.15694602946958,0.0,24419.420000000002,43,30,2,8896,201711222,,,,337.0,2.0,0.0,3.0,1.0,3.0,1.8,2236.2619974875333,0.0,707.0,0.0,0.0,34510.0,1,1,3,80.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2042.9256959135155,0.08365987791329668,0.059198078699319485,19172.222222222223,5,3,5,5_0,5_1,5_0_0 +11223,1,45.0,3,189.0,99,221,4,0,46,2.0,0.0,0.0,1947.560370136688,0.0,0.0,20130.12,0,41,1,8897,201711223,,,270.0,281.0,1.0,0.0,4.0,1.0,2.0,1.3,465.0136257679007,0.0,1447.0,0.0,0.0,16907.0,0,1,3,85.0,1,2.0,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1947.560370136688,0.09674857229548002,0.11519254569921855,13005.384615384615,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +11224,2,56.0,3,0.0,1,112,2,0,37,10.0,0.0,0.0,1749.7086946632305,0.0,0.0,65216.23999999999,0,30,1,8898,201711224,,,390.0,,1.0,3.0,3.0,0.0,1.0,1.0,2613.696571795943,0.0,1300.0,0.0,0.0,61026.0,0,1,2,96.0,9,2.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1749.7086946632305,0.026829340278789925,0.02867152844137303,61026.0,10,5,10,10_1,10_1,10_1_0 +11225,1,45.0,3,74.0,6,400,1,0,52,5.0,0.0,0.0,592.2090966552472,0.0,0.0,29504.98,0,30,1,8900,201711225,,,360.0,381.0,1.0,0.0,5.0,1.0,2.0,1.3,500.1495506902923,0.0,440.0,0.0,0.0,24975.0,0,1,3,86.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,592.2090966552472,0.02007149629165135,0.02371207594215204,19211.53846153846,5,3,5,5_1,5_0,5_0_0 +11226,2,81.0,3,0.0,2,111,2,0,77,5.0,1497.6144726271048,0.0,767.1799661215703,0.0,0.0,21257.0,0,70,1,8903,201711226,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2531.2039161779153,0.0,570.0,0.0,0.0,19307.0,0,5,1,80.0,8,6.0,1,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2264.794438748675,0.10654346515259326,0.11730431650430802,19307.0,5,3,5,5_1,5_2,5_0_1 +11227,1,49.0,2,195.0,99,111,1,0,21,1.0,0.0,0.0,201.8894647688343,61.9262679715128,0.0,8591.04,0,41,2,8904,201711227,,,,,1.0,2.0,1.0,0.0,1.0,1.0,4247.077378178044,0.0,150.0,0.0,0.0,8160.0,0,4,3,31.0,8,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,263.81573274034713,0.030708241696039956,0.032330359404454306,8160.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11228,2,45.0,3,0.0,8,112,5,0,54,4.0,0.0,395.5590010755804,403.7789295376686,60.15694602946958,0.0,6453.6,0,31,1,8905,201711228,,,70.0,,1.0,0.0,4.0,0.0,1.0,1.0,2133.0788882008947,0.0,300.0,0.0,0.0,16754.0,0,4,1,73.0,8,1.0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,859.4948766427186,0.13318068622826307,0.05130087600827973,16754.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11229,2,65.0,3,0.0,8,111,2,21,77,4.0,0.0,693.9631597817199,1274.5954875739071,0.0,1024.437404443026,31877.460000000003,50,60,1,8907,201711229,,,375.0,,1.0,3.0,5.0,0.0,2.0,1.5,1637.5274177096303,0.0,947.0,579.0,0.0,26284.0,1,5,1,98.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2992.996051798653,0.09389066920007594,0.11387140662755489,17522.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11230,1,20.0,3,224.0,6,111,2,0,56,2.0,0.0,0.0,642.0084979648931,0.0,0.0,16320.9458467513,0,41,2,8909,201711230,,,,254.0,1.0,0.0,1.0,0.0,1.0,1.0,3136.8975870515374,0.0,477.0,0.0,0.0,11757.0,0,3,3,28.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,642.0084979648931,0.0393364762062908,0.0546064895776893,11757.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11231,2,68.0,2,0.0,5,112,6,75,75,8.0,0.0,0.0,2691.859530251124,159.23897478389006,0.0,36149.979999999996,70,33,1,891,201711231,,,312.0,,0.0,3.0,5.0,0.0,2.0,1.5,1808.9060238483569,0.0,2000.0,0.0,0.0,43238.0,5,5,1,120.0,8,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2851.098505035014,0.07886860532246531,0.06593964811126819,28825.333333333332,8,4,8,8_1,8_1,8_0_0 +11232,2,42.0,2,0.0,1,112,2,85,37,7.0,0.0,0.0,1082.1275311609518,0.0,1507.462294620826,47093.04,30,20,1,8911,201711232,,,500.0,,1.0,0.0,3.0,2.0,4.0,2.1,1712.4500072345982,0.0,804.0,852.0,0.0,49241.0,8,1,2,70.0,10,1.0,4,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2589.589825781778,0.054988801440335515,0.0525901144530326,23448.095238095237,6,3,6,6_1,6_1,6_1_0 +11233,0,54.0,2,0.0,7,111,3,53,33,10.0,0.0,0.0,2298.3668976387235,0.0,4123.152619832949,61068.67632237629,43,41,2,8913,201711233,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2697.5246956850215,3258.0,360.0,420.0,0.0,82579.0,1,1,5,66.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,6421.519517471673,0.10515242681162801,0.07776213707445807,55052.666666666664,10,5,10,10_0,10_4,10_0_0 +11234,1,63.0,3,272.0,99,111,2,0,78,4.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,9482.279999999999,0,70,1,8914,201711234,,,220.0,102.0,0.0,1.0,3.0,0.0,1.0,1.0,2194.4700728026,1100.0,0.0,0.0,0.0,17794.0,0,5,3,70.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1753.6085159622926,0.18493532314615185,0.09855055164450335,17794.0,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +11235,2,42.0,3,0.0,5,111,1,68,54,4.0,0.0,0.0,1790.0865876169973,0.0,2123.1863304518674,26037.319999999996,50,43,2,8915,201711235,1200.0,1200.0,,392.0,2.0,0.0,4.0,3.0,5.0,2.6,3237.6563337532666,0.0,1330.0,1200.0,0.0,44735.0,1,1,3,82.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3913.272918068865,0.15029476605383602,0.08747676132935878,17205.76923076923,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +11236,2,48.0,1,0.0,7,112,4,64,56,2.0,0.0,0.0,1547.8192298943961,51.310336319253466,0.0,17283.0916935026,50,50,1,8917,201711236,,,407.0,,2.0,3.0,4.0,0.0,2.0,1.5,2326.346238429067,0.0,1150.0,0.0,0.0,20250.0,1,1,1,100.0,9,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1599.1295662136497,0.09252566581098601,0.07896936129450122,13500.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +11237,2,34.0,1,0.0,99,111,2,0,31,10.0,0.0,0.0,1098.2786883424585,0.0,0.0,45042.23087530163,0,10,2,892,201711237,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2737.835446830102,0.0,816.0,0.0,0.0,120898.0,0,1,2,68.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1098.2786883424585,0.024383310217982263,0.009084341249172513,120898.0,10,5,10,10_0,10_3,10_0_0 +11238,2,88.0,1,0.0,4,211,2,0,75,9.0,0.0,0.0,16.151157181506743,0.0,53.079658261296686,17670.071191295745,0,50,1,8920,201711238,,,534.0,,0.0,0.0,4.0,0.0,1.0,1.0,1812.3296888224486,0.0,12.0,30.0,0.0,32910.0,0,5,1,60.0,3,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,69.23081544280343,0.0039179703745000445,0.0021036407001763426,32910.0,9,5,9,9_1,9_2,9_0_1 +11239,2,65.0,3,0.0,1,120,6,0,77,4.0,1269.1648073111057,0.0,390.319631886413,318.4779495677801,0.0,12215.689999999999,0,50,1,8921,201711239,,,156.0,,0.0,0.0,5.0,0.0,1.0,1.0,1762.6403222527285,0.0,290.0,0.0,0.0,16580.0,0,5,1,70.0,0,1.0,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1977.9623887652988,0.16191982514006978,0.11929809341165855,16580.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +11240,1,46.0,5,345.0,99,111,2,0,52,1.0,0.0,0.0,441.4649629611843,0.0,1974.5632873202367,13846.22,0,30,2,8922,201711240,,,,,2.0,0.0,4.0,3.0,4.0,2.1,702.509260862616,0.0,328.0,1116.0,0.0,20483.0,0,4,3,94.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2416.028250281421,0.17449009551209074,0.11795285115859108,9753.809523809523,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11241,2,58.0,3,0.0,6,112,2,56,,7.0,0.0,0.0,5996.474365467015,176.9321942043223,5779.354130417126,77721.65296204787,50,50,1,8924,201711241,,,131.0,,1.0,4.0,8.0,0.0,2.0,1.5,1583.5322265702118,5570.688576890453,2151.0,0.0,0.0,39697.0,1,1,1,130.0,8,3.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,11952.760690088464,0.15378932684209762,0.30109984860539746,26464.666666666668,7,4,7,7_1,7_1,7_0_0 +11242,1,38.0,2,194.0,3,111,2,0,55,3.0,0.0,0.0,501.0586138656136,0.0,933.7119901035348,32379.739999999994,0,43,2,8926,201711242,,,460.0,,1.0,0.0,4.0,2.0,3.0,1.6,889.1906859467562,900.0,0.0,0.0,0.0,24694.0,0,1,3,90.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1434.7706039691484,0.04431075122805645,0.05810199254754792,15433.75,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +11243,2,51.0,2,0.0,1,120,2,0,62,1.0,1115.2785744246341,0.0,807.5578590753372,102.62067263850693,0.0,22137.991191295743,0,50,1,8927,201711243,,,400.0,,1.0,0.0,7.0,2.0,3.0,1.8,2281.2156291149126,0.0,600.0,0.0,0.0,18075.0,0,1,1,110.0,0,0.0,2,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2025.4571061384784,0.09149236209538521,0.11205848443366409,10041.666666666666,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +11244,2,73.0,3,0.0,5,112,2,72,75,6.0,2181.377012565963,624.566843803548,888.3136449828709,53.079658261296686,0.0,27805.08,70,31,1,8929,201711244,,,260.0,,0.0,2.0,8.0,0.0,2.0,1.5,1704.8309955490613,0.0,660.0,0.0,0.0,33073.0,5,5,1,250.0,6,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3747.3371596136785,0.13477167336377663,0.11330502704966826,22048.666666666668,6,3,6,6_1,6_0,6_0_0 +11245,2,55.0,4,0.0,5,112,5,52,62,6.0,0.0,666.2046333904511,2180.4062195034103,0.0,0.0,37554.85574816403,50,50,1,8931,201711245,,,,,2.0,2.0,4.0,1.0,3.0,1.8,2091.2777751074673,0.0,1620.0,0.0,0.0,42157.0,1,1,2,110.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2846.610852893861,0.07579874283055994,0.06752403759503431,23420.555555555555,6,3,6,6_1,6_0,6_0_0 +11246,1,28.0,4,460.0,9,120,2,0,85,2.0,0.0,0.0,0.0,0.0,0.0,7663.970875301628,0,71,1,8932,201711246,,,,,0.0,0.0,4.0,2.0,4.0,1.9,1060.4148940752825,0.0,0.0,0.0,0.0,23053.0,0,6,3,65.0,0,3.0,4,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0.0,0.0,0.0,12133.157894736843,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +11247,2,87.0,3,0.0,6,111,2,77,75,8.0,0.0,0.0,2110.417871716881,0.0,0.0,23020.440000000002,70,71,2,8934,201711247,,,406.0,,0.0,1.0,4.0,0.0,2.0,1.5,4687.80279194797,0.0,1568.0,0.0,0.0,43163.0,5,5,1,80.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,2110.417871716881,0.09167582686155785,0.04889414247658599,28775.333333333332,8,4,8,8_0,8_3,8_0_0 +11248,2,55.0,2,0.0,4,111,2,68,63,8.0,0.0,0.0,1047.1333572676872,0.0,1917.9449851748536,28700.120000000003,71,50,1,8935,201711248,,,362.0,,2.0,2.0,5.0,0.0,2.0,1.5,1466.7890277320219,0.0,778.0,1084.0,0.0,40310.0,1,1,2,110.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2965.078342442541,0.10331240226321495,0.07355689264307966,26873.333333333332,7,4,7,7_1,7_2,7_0_1 +11249,2,40.0,1,0.0,6,111,2,43,43,7.0,0.0,0.0,542.4096953456014,0.0,1380.0711147937138,64188.64816574391,30,33,1,8936,201711249,,,280.0,,2.0,0.0,3.0,1.0,3.0,1.8,2643.6092633499493,0.0,403.0,780.0,0.0,44863.0,1,1,3,80.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1922.4808101393153,0.029950479797848456,0.04285225709692431,24923.888888888887,7,4,7,7_1,7_3,7_0_0 +11250,2,76.0,3,0.0,3,111,1,0,75,5.0,0.0,0.0,336.5611641055007,0.0,831.916634067525,19833.264525947405,0,70,2,8937,201711250,,,,,0.0,0.0,4.0,0.0,1.0,1.0,2860.780365687426,290.2480092164732,130.0,300.0,0.0,20437.0,0,5,1,74.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1168.4777981730258,0.05891505135951437,0.057174624366248754,20437.0,5,3,5,5_0,5_3,5_0_1 +11251,2,29.0,3,0.0,1,112,6,0,56,5.0,0.0,0.0,2045.8132429908542,0.0,0.0,24286.82,0,71,2,8938,201711251,,,,940.0,1.0,0.0,3.0,0.0,1.0,1.0,2020.76146044515,0.0,1520.0,0.0,0.0,19816.0,0,1,3,65.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,2045.8132429908542,0.0842355336347391,0.10324047451508146,19816.0,5,3,5,5_0,5_1,5_1_0 +11252,1,30.0,4,342.0,9,111,4,85,85,1.0,0.0,0.0,511.45331074771354,0.0,0.0,7112.799999999999,50,50,2,894,201711252,,,,126.0,0.0,0.0,2.0,1.0,3.0,1.8,6306.996201253368,0.0,380.0,0.0,0.0,14014.0,7,4,3,50.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,511.45331074771354,0.07190604413841435,0.036495883455666726,7785.555555555556,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +11253,2,54.0,3,0.0,1,111,2,34,31,7.0,0.0,0.0,998.679885723167,0.0,0.0,72377.3116935026,30,12,1,8940,201711253,,,,,2.0,0.0,3.0,2.0,4.0,2.5,2803.7546056236774,0.0,742.0,0.0,0.0,62426.0,1,1,2,140.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,998.679885723167,0.013798245090288697,0.01599781958996519,24970.4,7,4,7,7_1,7_4,7_1_0 +11254,2,42.0,3,0.0,8,112,4,54,63,3.0,0.0,555.170527825376,2275.9672328273255,0.0,0.0,24910.899999999998,31,50,1,8941,201711254,,,315.0,,2.0,0.0,7.0,2.0,4.0,2.1,3130.6089948908307,0.0,1691.0,0.0,0.0,28495.0,1,1,2,135.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2831.137760652701,0.11365056102560331,0.0993555978470855,13569.047619047618,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +11255,2,25.0,2,0.0,2,111,4,0,47,7.0,0.0,0.0,1049.8252167979383,0.0,0.0,31697.295052882568,0,20,2,8942,201711255,,,,760.0,1.0,0.0,1.0,0.0,1.0,1.0,5121.401233976578,0.0,780.0,0.0,0.0,25164.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1049.8252167979383,0.033120340869668835,0.04171932986798356,25164.0,7,4,7,7_0,7_4,7_0_1 +11256,2,21.0,3,0.0,1,221,1,68,55,2.0,0.0,0.0,430.6975248401798,44.23304855108057,0.0,19221.539999999997,50,43,2,8943,201711256,,,45.0,255.0,2.0,0.0,2.0,0.0,2.0,1.5,2869.4093259949764,0.0,320.0,0.0,0.0,17642.0,4,1,3,48.0,1,2.0,3,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,474.9305733912604,0.02470824779862906,0.026920449687748576,11761.333333333334,2,1,2_0,2_0_0,2_1_0,2_1_0_0 +11257,2,57.0,2,0.0,1,111,2,52,62,4.0,0.0,0.0,1649.6925261346753,0.0,2550.330469326648,34820.38962169337,44,71,2,8944,201711257,,,,490.0,2.0,3.0,5.0,0.0,2.0,1.5,2118.2665231384963,62.1067602161752,1200.0,1405.0,0.0,26113.0,1,1,3,110.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,4200.022995461323,0.12061964386649701,0.16084030925061552,17408.666666666668,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +11258,2,42.0,2,0.0,6,111,4,43,45,6.0,0.0,555.170527825376,1090.2031097517051,276.0142229587428,0.0,41757.640000000014,50,30,1,8946,201711258,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2169.240115590277,0.0,810.0,0.0,0.0,45609.0,1,1,2,120.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1921.3878605358238,0.04601284604531825,0.042127384080681965,21718.571428571428,6,3,6,6_1,6_4,6_0_0 +11259,2,43.0,2,0.0,9,300,5,0,46,10.0,0.0,763.359475759892,1211.3367886130059,106.15931652259337,0.0,34037.600000000006,0,42,1,8947,201711259,,,106.0,,1.0,1.0,4.0,0.0,1.0,1.0,3030.797701517008,0.0,900.0,0.0,0.0,43697.0,0,1,2,110.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2080.8555808954916,0.06113402768983393,0.047620101629299305,43697.0,10,5,10,10_1,10_0,10_0_0 +11260,2,67.0,3,0.0,1,112,2,78,77,3.0,1903.7472109666587,0.0,1534.3599322431405,307.86201791552077,0.0,26337.760000000002,71,70,1,8948,201711260,,,830.0,,0.0,3.0,7.0,0.0,2.0,1.5,1654.6408559246456,0.0,1140.0,0.0,0.0,23625.0,5,5,1,180.0,6,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3745.96916112532,0.14222808473937495,0.15855954121165378,15750.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11261,2,45.0,1,0.0,5,111,2,42,53,6.0,0.0,0.0,1607.040139559921,0.0,1183.6763792269162,54785.05087530163,12,41,1,8951,201711261,,,427.0,,2.0,0.0,5.0,3.0,5.0,2.8,1595.0968297771306,0.0,1194.0,669.0,0.0,65789.0,1,1,1,140.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2790.7165187868372,0.050939379889212745,0.04241919650377475,23496.07142857143,6,3,6,6_1,6_2,6_0_0 +11262,2,44.0,3,0.0,9,211,4,0,48,7.0,0.0,0.0,962.3397820647768,0.0,0.0,17804.48,0,60,2,8952,201711262,,,,553.0,1.0,0.0,3.0,0.0,1.0,1.0,1994.1463190556713,0.0,715.0,0.0,0.0,24304.0,0,1,3,62.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,962.3397820647768,0.05405042899679052,0.03959594231668766,24304.0,7,4,7,7_0,7_2,7_0_0 +11263,1,45.0,5,100.0,4,111,1,56,85,2.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,33203.10005671654,50,50,2,8954,201711263,,,275.0,250.0,2.0,0.0,4.0,2.0,4.0,2.5,4241.361715472048,960.0,0.0,0.0,0.0,30624.0,1,7,3,92.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1530.4219775670917,0.04609274359782282,0.04997459435629218,12249.6,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11264,2,78.0,3,0.0,7,112,2,0,78,3.0,0.0,0.0,78.49918283894614,0.0,146.28154511622046,15504.940315994116,0,70,1,8955,201711264,,,612.0,,0.0,2.0,5.0,0.0,1.0,1.0,2560.912923712713,141.0,0.0,0.0,0.0,15110.0,0,5,1,140.0,10,3.0,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,224.78072795516658,0.014497361703694795,0.014876289077112283,15110.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11265,2,57.0,1,0.0,7,112,5,75,43,6.0,0.0,27.7585263912688,2013.5109286278407,226.47320858153253,0.0,31745.519999999997,20,33,1,8956,201711265,,,,,1.0,1.0,5.0,0.0,2.0,1.5,2478.626954828388,0.0,1496.0,0.0,0.0,33051.0,5,1,1,120.0,9,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2267.742663600642,0.07143504543635266,0.06861343570847,22034.0,6,3,6,6_1,6_0,6_0_0 +11266,2,90.0,1,0.0,1,111,2,0,78,3.0,0.0,0.0,336.4824412813905,0.0,1150.059262328095,15470.960000000001,0,70,2,8957,201711266,,,,,0.0,1.0,5.0,0.0,1.0,1.0,2933.0614843565727,0.0,250.0,650.0,0.0,14874.0,0,5,1,90.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1486.5417036094855,0.09608593801609502,0.09994229552302578,14874.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +11267,2,22.0,2,0.0,9,111,4,84,84,1.0,0.0,0.0,107.67438121004496,0.0,0.0,98234.95999999998,41,42,8,8958,201711267,,,,,0.0,0.0,2.0,0.0,2.0,1.5,2343.2090732613615,0.0,80.0,0.0,0.0,14400.0,3,3,4,60.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,107.67438121004496,0.0010960902433313454,0.007477387584030899,9600.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +11268,2,55.0,2,0.0,4,112,1,46,34,8.0,0.0,0.0,511.45331074771354,0.0,0.0,94077.574793605,41,20,8,896,201711268,,,,,2.0,0.0,5.0,2.0,4.0,2.5,1869.3006641664083,0.0,380.0,0.0,0.0,71149.0,1,1,1,90.0,10,4.0,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,511.45331074771354,0.005436506116040738,0.00718848206928718,28459.6,8,4,8,8_0,8_2,8_0_1 +11269,2,34.0,3,0.0,1,111,4,31,46,8.0,0.0,0.0,80.75578590753372,0.0,0.0,42278.68584675131,30,20,2,8960,201711269,,,,,2.0,0.0,2.0,0.0,2.0,1.5,5147.187296463999,0.0,60.0,0.0,0.0,46442.0,1,1,2,44.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,80.75578590753372,0.0019100826880062308,0.0017388524591433125,30961.333333333332,8,4,8,8_0,8_4,8_1_0 +11270,2,54.0,3,0.0,8,111,2,0,37,9.0,0.0,485.77421184720396,2713.25981351662,0.0,1563.1959357951873,62775.64000000001,0,31,1,8962,201711270,,,480.0,,1.0,0.0,4.0,1.0,2.0,1.5,2019.008243868226,0.0,2015.8999999999999,883.5,0.0,68318.0,0,1,1,162.0,9,7.0,2,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4762.2299611590115,0.0758611136606335,0.0697068116917798,45545.333333333336,10,5,10,10_1,10_3,10_0_0 +11271,2,65.0,3,0.0,2,111,1,54,35,7.0,0.0,0.0,511.45331074771354,0.0,148.62304313163074,44860.520000000004,20,30,2,8963,201711271,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2001.3408454680068,0.0,380.0,84.0,0.0,51670.0,1,1,2,92.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,660.0763538793443,0.014713970187580177,0.012774847181717522,25835.0,7,4,7,7_0,7_3,7_0_1 +11272,1,22.0,3,263.0,7,111,1,0,43,2.0,0.0,0.0,323.0231436301349,0.0,0.0,12348.73697444815,0,44,2,8965,201711272,,,,,1.0,0.0,1.0,0.0,1.0,1.0,4088.178193054353,0.0,240.0,0.0,0.0,13411.0,0,4,3,20.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,323.0231436301349,0.02615839533213237,0.024086432304088797,13411.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11273,2,40.0,3,0.0,9,111,2,0,47,6.0,0.0,0.0,10242.525512605527,155.70033089980362,0.0,38040.32000000001,0,31,2,8966,201711273,,,106.0,,1.0,0.0,3.0,0.0,1.0,1.0,3219.2698973724378,0.0,7610.0,0.0,0.0,24520.0,0,4,2,70.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,10398.22584350533,0.273347486128017,0.42407120079548655,24520.0,7,4,7,7_0,7_3,7_0_0 +11274,2,48.0,1,0.0,7,111,2,46,33,8.0,0.0,0.0,1480.522741638118,0.0,1160.6751939803542,67132.98000000001,20,30,1,8967,201711274,,,660.0,,2.0,0.0,5.0,1.0,3.0,2.0,2093.3992865346145,0.0,1100.0,656.0,0.0,61106.0,1,1,2,68.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2641.197935618472,0.03934277810427113,0.04322321761559376,30553.0,8,4,8,8_1,8_3,8_0_0 +11275,0,51.0,3,0.0,9,111,2,52,62,6.0,0.0,0.0,0.0,0.0,199.9333794508842,40021.58,50,50,1,8968,201711275,,,,,2.0,3.0,4.0,1.0,3.0,1.8,2632.8220367549634,0.0,0.0,113.0,0.0,37907.0,1,1,5,107.0,9,7.0,4,8,0,1,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,199.9333794508842,0.004995639338848796,0.005274312909248534,21059.444444444445,5,3,5,5_1,5_3,5_0_0 +11276,1,31.0,4,200.0,99,111,6,0,52,5.0,0.0,0.0,1211.3367886130059,0.0,0.0,11274.907849749776,0,50,2,897,201711276,,,500.0,500.0,1.0,0.0,3.0,1.0,2.0,1.3,863.4122350935884,0.0,900.0,0.0,0.0,24595.0,0,1,3,60.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1211.3367886130059,0.10743651342923295,0.04925134330607871,18919.23076923077,5,3,5,5_0,5_3,5_0_0 +11277,2,67.0,2,0.0,1,111,2,46,72,10.0,0.0,0.0,1520.900634591885,0.0,1291.6050176915528,48209.6743438364,31,44,1,8970,201711277,,,600.0,,1.0,2.0,7.0,0.0,2.0,1.5,1331.0234699742384,0.0,1130.0,730.0,0.0,69950.0,1,5,1,140.0,7,6.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2812.5056522834375,0.058339030299693694,0.040207371726711044,46633.333333333336,10,5,10,10_1,10_2,10_1_0 +11278,2,53.0,2,0.0,8,112,5,54,38,5.0,0.0,288.6886744691955,1808.9296043287552,0.0,0.0,26871.491191295743,43,71,1,8974,201711278,,,530.0,,2.0,0.0,4.0,2.0,4.0,2.3,3262.889776778542,0.0,1344.0,0.0,0.0,44791.0,1,1,2,90.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2097.6182787979506,0.07806110438252918,0.04683124464285125,19474.34782608696,5,3,5,5_1,5_1,5_0_0 +11279,2,61.0,3,0.0,9,112,2,77,78,6.0,0.0,555.170527825376,784.6770530682027,0.0,1203.1389205893915,33561.119999999995,50,50,1,8976,201711279,,,140.0,,0.0,2.0,5.0,0.0,2.0,1.5,2008.7437102589154,0.0,583.0,680.0,0.0,34567.0,5,5,1,156.0,8,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2542.98650148297,0.0757718008660906,0.07356688464382129,23044.666666666668,6,3,6,6_1,6_0,6_0_0 +11280,2,39.0,3,0.0,5,111,2,54,53,8.0,0.0,0.0,605.6683943065029,0.0,1079.286384646366,52898.68000000001,43,42,2,8979,201711280,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2906.946589514008,0.0,450.0,610.0,0.0,53257.0,1,1,2,86.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1684.954778952869,0.03185249195164924,0.03163818425658353,29587.222222222223,8,4,8,8_0,8_3,8_0_0 +11281,2,26.0,3,0.0,6,111,2,0,42,6.0,0.0,0.0,942.1508355878933,0.0,1769.3219420432229,50679.96,0,41,1,898,201711281,,,,,1.0,0.0,5.0,0.0,1.0,1.0,3408.93212259199,0.0,700.0,1000.0,0.0,20761.0,0,1,2,80.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2711.472777631116,0.05350187288291301,0.13060415093835154,20761.0,5,3,5,5_1,5_4,5_0_0 +11282,2,47.0,4,0.0,1,300,5,54,64,4.0,0.0,416.377895869032,1655.4936111044412,159.23897478389006,0.0,37260.340315994115,31,50,1,8980,201711282,,,,,2.0,0.0,5.0,3.0,5.0,2.8,1873.9924015249437,0.0,1230.0,0.0,0.0,42788.0,4,1,2,100.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2231.1104817573632,0.05987896145971732,0.05214336920999727,15281.428571428572,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11283,2,32.0,3,0.0,9,112,2,52,67,5.0,0.0,0.0,0.0,1817.09363447839,0.0,22110.24604054426,50,71,1,8981,201711283,,,,530.0,2.0,1.0,5.0,0.0,2.0,1.5,1459.7642425052175,0.0,0.0,0.0,0.0,30388.0,4,1,3,129.0,8,0.0,3,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1817.09363447839,0.0821833294458292,0.05979642077393675,20258.666666666668,5,3,5,5_1,5_0,5_0_0 +11284,2,44.0,2,0.0,5,300,2,52,69,8.0,0.0,416.377895869032,1103.6624074029608,35.38643884086446,0.0,55233.01864504598,44,50,1,8982,201711284,,,800.0,,2.0,0.0,6.0,3.0,5.0,2.4,1823.0451477089123,0.0,820.0,0.0,0.0,63198.0,4,1,2,120.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1555.4267421128573,0.028161175692908977,0.02461196148790875,26332.5,7,4,7,7_1,7_0,7_0_0 +11285,2,67.0,3,0.0,1,120,2,71,71,2.0,1745.1016100527704,0.0,403.7789295376686,247.7050718860512,0.0,22371.14,60,71,1,8983,201711285,,,150.0,,0.0,1.0,4.0,0.0,2.0,1.5,1981.5270738457364,0.0,300.0,0.0,0.0,19433.0,5,5,1,80.0,0,3.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2396.58561147649,0.10712845261692029,0.12332556020565483,12955.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +11286,2,30.0,2,0.0,2,300,2,43,52,8.0,0.0,0.0,718.7264945770501,0.0,1829.4788880726926,36601.9079672144,44,50,1,8984,201711286,,,385.0,,2.0,0.0,5.0,0.0,2.0,1.5,2289.177890857686,0.0,534.0,1034.0,0.0,41033.0,1,1,2,110.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2548.2053826497427,0.06961946860617918,0.06210136676942321,27355.333333333332,8,4,8,8_1,8_0,8_0_1 +11287,2,76.0,2,0.0,9,111,4,0,77,4.0,0.0,0.0,1076.7438121004495,0.0,0.0,24918.107849749773,0,70,2,8985,201711287,,,,,0.0,2.0,3.0,0.0,1.0,1.0,3193.4258134544307,0.0,800.0,0.0,0.0,17317.0,0,5,1,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1076.7438121004495,0.043211299132059185,0.06217842652309578,17317.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +11288,2,22.0,4,0.0,6,300,2,0,56,2.0,0.0,416.377895869032,672.964882562781,0.0,1326.9914565324173,9329.0,0,60,1,8986,201711288,,,376.0,,1.0,7.0,4.0,1.0,2.0,1.5,2233.1423323857107,0.0,500.0,750.0,0.0,16370.0,0,1,1,84.0,0,0.0,2,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2416.3342349642303,0.2590132098793258,0.14760746701064326,10913.333333333334,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +11289,1,51.0,4,191.0,9,111,4,0,56,6.0,0.0,0.0,1076.7438121004495,0.0,0.0,12715.44,0,50,2,8987,201711289,,,,249.0,1.0,1.0,1.0,1.0,2.0,1.3,1402.6214954102836,0.0,800.0,0.0,0.0,27162.0,0,1,3,19.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1076.7438121004495,0.08468002775369547,0.03964155114131689,20893.846153846152,5,3,5,5_0,5_4,5_0_0 +11290,2,58.0,1,0.0,99,111,2,46,23,10.0,0.0,0.0,971.7612904206558,0.0,2935.3051018497067,118835.58,31,50,1,8988,201711290,,,410.0,,3.0,2.0,6.0,1.0,3.0,2.0,1849.316632750472,0.0,722.0,1659.0,0.0,114466.0,1,1,1,140.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3907.0663922703625,0.03287791747446651,0.034132986146719224,57233.0,10,5,10,10_1,10_2,10_0_0 +11291,2,41.0,2,0.0,9,111,2,37,37,9.0,0.0,2137.4065321276976,1328.4326781789296,0.0,0.0,115630.49344410587,31,31,1,899,201711291,,,,,2.0,0.0,6.0,3.0,5.0,2.4,1462.5057988836418,0.0,987.0,0.0,0.0,81150.0,1,4,2,230.0,6,4.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3465.839210306627,0.029973401540329535,0.04270904757001389,33812.5,9,5,9,9_1,9_2,9_0_0 +11292,2,72.0,2,0.0,5,111,2,74,74,10.0,4134.304359815927,0.0,2312.3073364857155,424.6372660903735,0.0,115011.42206659737,60,30,1,8991,201711292,,,1212.0,,0.0,2.0,8.0,0.0,2.0,1.5,1909.0658074144571,0.0,1718.0,0.0,0.0,100751.0,5,5,1,241.0,4,3.0,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,6871.2489623920155,0.059744057059073825,0.06820030533088521,67167.33333333333,10,5,10,10_1,10_1,10_0_0 +11293,1,27.0,5,394.0,99,111,1,0,68,2.0,0.0,0.0,174.97086946632305,0.0,0.0,10473.88,0,31,2,8993,201711293,,,,,1.0,0.0,3.0,1.0,2.0,1.3,3611.564590233798,0.0,130.0,0.0,0.0,15029.0,0,4,3,62.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,174.97086946632305,0.016705449123564815,0.011642216346152309,11560.76923076923,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +11294,2,43.0,2,0.0,5,111,2,56,63,5.0,2075.084459953658,0.0,807.5578590753372,123.8525359430256,0.0,29178.319999999996,42,71,1,8994,201711294,,,400.0,,2.0,0.0,7.0,2.0,4.0,2.3,2912.736572905524,0.0,600.0,0.0,0.0,43960.0,1,1,2,150.0,6,5.0,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3006.4948549720207,0.10303865524032985,0.0683916027063699,19113.04347826087,5,3,5,5_1,5_2,5_0_0 +11295,2,79.0,4,0.0,4,211,2,0,78,6.0,0.0,0.0,487.22657497545345,0.0,2169.188700944991,16103.439999999999,0,71,1,8995,201711295,,,,,0.0,2.0,4.0,0.0,1.0,1.0,3185.5319397869052,0.0,362.0,1226.0,0.0,21790.0,0,5,1,100.0,1,2.0,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2656.4152759204444,0.16495949163162932,0.12190983368152568,21790.0,6,3,6,6_1,6_1,6_0_1 +11296,2,45.0,3,0.0,3,111,2,46,42,4.0,1586.456009138882,0.0,1278.633276869284,0.0,0.0,37304.45420996525,41,43,1,8997,201711296,,,500.0,,2.0,1.0,4.0,1.0,3.0,2.0,1617.3205542684443,0.0,950.0,0.0,0.0,35320.0,1,1,3,110.0,7,6.0,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2865.089286008166,0.07680287372339589,0.08111804320521421,17660.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +11297,2,53.0,1,0.0,6,111,4,37,38,10.0,0.0,0.0,3297.5279245576266,0.0,0.0,130336.8,30,12,2,8999,201711297,,,,,2.0,0.0,5.0,3.0,5.0,2.8,2518.847231256962,0.0,2450.0,0.0,0.0,157264.0,1,1,1,105.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,3297.5279245576266,0.025300052821287822,0.020968104108744702,56165.71428571429,10,5,10,10_0,10_4,10_0_0 +11298,2,36.0,3,0.0,9,111,2,84,54,6.0,0.0,0.0,1480.522741638118,0.0,0.0,31404.060000000005,20,20,2,9,201711298,,,480.0,,1.0,0.0,2.0,0.0,2.0,1.5,2838.8770949380814,0.0,1100.0,0.0,0.0,31770.0,3,1,3,38.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1480.522741638118,0.0471443100553915,0.04660128239339371,21180.0,5,3,5,5_0,5_3,5_0_0 +11299,1,48.0,2,300.0,4,221,2,0,22,2.0,1110.5192063972174,0.0,484.5347154452023,40.694404666994124,0.0,15776.44,0,41,1,90,201711299,,,150.0,,1.0,2.0,4.0,1.0,2.0,1.3,488.03067373515734,0.0,360.0,0.0,0.0,16750.0,0,1,3,85.0,1,3.0,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1635.7483265094138,0.10368298085686085,0.09765661650802471,12884.615384615385,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +11300,2,79.0,3,0.0,1,211,2,78,78,4.0,2736.6366157645716,0.0,965.031641595028,283.09151072691566,0.0,20428.539999999997,71,71,1,900,201711300,,,492.0,,0.0,3.0,6.0,0.0,2.0,1.5,2236.8130268757486,0.0,717.0,0.0,0.0,23400.0,5,5,1,100.0,1,2.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3984.759768086515,0.1950584705557282,0.1702888789780562,15600.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +11301,2,77.0,2,0.0,1,221,2,72,75,9.0,0.0,0.0,612.3980431321307,0.0,1742.7821129125746,27277.840000000004,44,50,1,9000,201711301,,,195.0,,0.0,3.0,5.0,0.0,2.0,1.5,1951.4059815255387,0.0,455.0,985.0,0.0,46710.0,5,5,1,110.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2355.180156044705,0.08634041977094611,0.05042132639787423,31140.0,8,4,8,8_1,8_1,8_1_0 +11302,2,82.0,2,0.0,4,111,4,75,74,10.0,0.0,0.0,4742.413445557586,0.0,2817.9187707570136,32464.62057220166,71,12,1,9002,201711302,,,230.0,,0.0,1.0,5.0,0.0,2.0,1.5,1899.709812673731,2716.1768517078735,2400.0,0.0,0.0,67586.0,5,5,1,74.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,7560.3322163145995,0.23287911834670424,0.1118624007385346,45057.333333333336,10,5,10,10_1,10_4,10_0_1 +11303,2,74.0,3,0.0,99,111,2,0,77,5.0,0.0,0.0,753.7206684703146,0.0,1194.2923108791754,11212.68,0,71,2,9003,201711303,,,,,0.0,7.0,2.0,0.0,1.0,1.0,2744.69409488344,0.0,560.0,675.0,0.0,21170.0,0,5,3,31.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1948.01297934949,0.17373303967913914,0.09201761829709447,21170.0,5,3,5,5_0,5_3,5_0_0 +11304,2,29.0,3,0.0,2,111,4,21,31,1.0,0.0,0.0,672.964882562781,0.0,0.0,31766.42938209023,50,30,2,9005,201711304,,,,565.0,2.0,0.0,2.0,1.0,3.0,1.8,3002.384068422921,0.0,500.0,0.0,0.0,11289.0,1,1,3,39.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,672.964882562781,0.021184782037297383,0.059612444199023916,6271.666666666666,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +11305,2,65.0,2,0.0,3,111,2,0,77,6.0,0.0,0.0,789.9181841338311,0.0,2556.550990610321,24750.488997819284,0,41,2,9007,201711305,,,,,0.0,2.0,4.0,0.0,1.0,1.0,2151.572955743969,451.8266805726746,400.0,1180.0,0.0,21356.0,0,5,1,82.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,3346.469174744152,0.13520820437281067,0.15669924961341786,21356.0,6,3,6,6_0,6_2,6_0_1 +11306,2,83.0,2,0.0,3,300,2,0,75,10.0,0.0,0.0,1416.8824136533185,0.0,2640.33001645944,20530.487849749778,0,41,1,9009,201711306,,,100.0,,0.0,1.0,5.0,0.0,1.0,1.0,2876.668726007134,2545.0,0.0,0.0,0.0,49839.0,0,5,5,111.0,0,0.0,1,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,4057.2124301127583,0.1976189002329142,0.08140637713663514,49839.0,10,5,10,10_1,10_0,10_0_1 +11307,2,66.0,2,0.0,7,221,6,72,78,2.0,0.0,0.0,1857.3830758732754,0.0,0.0,20803.219999999998,50,70,1,901,201711307,,,500.0,,0.0,1.0,3.0,0.0,2.0,1.5,1239.154835104334,0.0,1380.0,0.0,0.0,16656.0,5,5,1,100.0,1,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1857.3830758732754,0.08928344149959841,0.11151435373878935,11104.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11308,2,59.0,2,0.0,6,112,4,77,75,7.0,0.0,138.792631956344,1623.1912967414278,240.62778411787832,0.0,27377.59214336787,50,50,1,9010,201711308,,,227.0,,0.0,3.0,7.0,0.0,2.0,1.5,1802.0444654042537,0.0,1206.0,0.0,0.0,40852.0,5,5,1,95.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2002.61171281565,0.07314783938370474,0.04902114248545114,27234.666666666668,7,4,7,7_1,7_1,7_0_0 +11309,2,81.0,3,0.0,1,221,2,22,78,7.0,1110.5192063972174,555.170527825376,269.1859530251124,247.7050718860512,0.0,19747.00031599412,71,50,1,9013,201711309,,,,,1.0,4.0,4.0,0.0,2.0,1.5,3584.9596438916974,0.0,200.0,0.0,0.0,36668.0,5,5,1,87.0,1,1.0,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2182.580759133757,0.11052720535817137,0.05952276533036318,24445.333333333332,7,4,7,7_1,7_1,7_1_0 +11310,2,53.0,3,0.0,1,112,2,52,67,1.0,2855.620816449988,0.0,1601.6564204994188,153.93100895776038,0.0,25303.79536887669,50,50,1,9014,201711310,,,370.0,,2.0,1.0,4.0,1.0,3.0,2.0,1865.7974495956366,0.0,1190.0,0.0,0.0,22518.0,1,1,3,60.0,8,0.0,4,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4611.208245907167,0.18223385775474962,0.20477876569442965,11259.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11311,2,64.0,2,0.0,1,111,2,0,74,10.0,0.0,0.0,991.1356596718509,0.0,1867.5927374910939,23218.300900730064,0,20,1,9016,201711311,,,150.0,,0.0,1.0,5.0,0.0,1.0,1.0,2918.2509169732966,631.9362851995827,475.0,685.0,0.0,44312.0,0,5,1,110.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2858.728397162945,0.12312392751672266,0.06451363958212099,44312.0,10,5,10,10_1,10_3,10_1_0 +11312,2,64.0,2,0.0,1,400,5,0,75,1.0,0.0,832.755791738064,538.3719060502248,51.310336319253466,0.0,14229.800315994116,0,60,1,9018,201711312,,,205.0,,0.0,1.0,7.0,0.0,1.0,1.0,2753.743591209582,0.0,400.0,0.0,0.0,10280.0,0,5,1,115.0,0,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1422.4380341075423,0.09996191109644313,0.1383694585707726,10280.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +11313,2,64.0,3,0.0,6,112,4,86,74,3.0,0.0,0.0,2664.9409349486127,0.0,0.0,21710.54,70,50,1,902,201711313,,,469.0,,0.0,2.0,4.0,1.0,3.0,2.0,2665.2739635888056,0.0,1980.0,0.0,0.0,32416.0,6,5,1,100.0,8,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2664.9409349486127,0.12274871721056282,0.08221066556480172,16208.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11314,2,40.0,1,0.0,9,111,1,55,37,10.0,0.0,0.0,672.964882562781,0.0,0.0,99471.66269899829,43,41,1,9022,201711314,,,320.0,,2.0,0.0,6.0,0.0,2.0,1.5,3175.6984674986315,0.0,500.0,0.0,0.0,74287.0,1,1,2,147.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,672.964882562781,0.006765392919983411,0.00905898585974371,49524.666666666664,10,5,10,10_1,10_2,10_0_0 +11315,1,60.0,4,256.0,99,111,1,0,77,1.0,0.0,0.0,570.6742204132382,0.0,0.0,14110.35536887669,0,70,2,9024,201711315,,,,,0.0,4.0,3.0,0.0,1.0,1.0,2926.989407540005,0.0,424.0,0.0,0.0,6492.0,0,7,3,67.0,6,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,570.6742204132382,0.04044364620837108,0.08790422372354255,6492.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11316,2,46.0,4,0.0,1,111,2,0,43,5.0,0.0,0.0,646.0462872602698,0.0,115.00592623280949,16032.220000000001,0,33,1,9026,201711316,,,500.0,,1.0,0.0,3.0,2.0,3.0,1.6,561.7095741360491,0.0,480.0,65.0,0.0,29200.0,0,1,2,70.0,9,7.0,2,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,761.0522134930793,0.047470170287900196,0.02606343196894107,18250.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +11317,2,40.0,2,0.0,9,120,4,46,37,8.0,0.0,0.0,1884.3016711757866,0.0,0.0,60901.72,12,0,1,9028,201711317,,,,,2.0,0.0,7.0,2.0,4.0,2.1,3235.7024728948168,0.0,1400.0,0.0,0.0,64602.0,1,1,2,158.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1884.3016711757866,0.030940040300598843,0.029167853490229198,30762.85714285714,8,4,8,8_1,8_0,8_0_0 +11318,2,37.0,3,0.0,3,211,1,52,47,6.0,0.0,0.0,1500.7116881150016,116.7752481748527,0.0,34036.7,31,30,2,9029,201711318,,,308.0,611.0,2.0,0.0,4.0,2.0,4.0,2.1,3005.3957965180552,0.0,1115.0,0.0,0.0,45325.0,1,1,3,100.0,4,4.0,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1617.4869362898544,0.04752184954152002,0.03568641889221962,21583.333333333332,6,3,6,6_0,6_2,6_0_1 +11319,1,31.0,3,450.0,3,111,1,85,64,5.0,0.0,0.0,504.72366192208574,0.0,265.39829130648343,40677.16,60,50,2,9030,201711319,,,,30.0,1.0,0.0,4.0,4.0,6.0,2.7,4193.891657379393,0.0,375.0,150.0,0.0,53740.0,6,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,770.1219532285692,0.018932539863367282,0.014330516435217142,19903.7037037037,5,3,5,5_0,5_4,5_0_1 +11320,2,49.0,2,0.0,1,112,6,21,21,8.0,1903.7472109666587,0.0,1345.929765125562,0.0,0.0,71382.12,50,50,1,9031,201711320,,,200.0,,3.0,0.0,7.0,2.0,4.0,2.5,2782.525236346257,0.0,1000.0,0.0,0.0,77077.0,1,1,1,270.0,9,0.0,4,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3249.6769760922207,0.04552508353761728,0.042161435656450315,30830.8,8,4,8,8_1,8_0,8_1_0 +11321,2,46.0,3,0.0,9,111,2,52,31,6.0,0.0,124.91336876070959,1507.4413369406293,106.15931652259337,0.0,48232.18753375567,50,20,1,9032,201711321,,,319.0,,2.0,0.0,4.0,2.0,4.0,2.3,1627.8052853832237,0.0,1120.0,0.0,0.0,49528.0,1,1,2,120.0,9,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1738.5140222239322,0.03604468532569085,0.03510163992537418,21533.913043478264,6,3,6,6_1,6_3,6_0_0 +11322,1,47.0,5,408.0,7,111,6,0,56,2.0,0.0,0.0,847.935752029104,0.0,0.0,13260.40603027983,0,50,8,9033,201711322,,,170.0,152.0,2.0,3.0,3.0,2.0,3.0,1.8,672.8430555415504,0.0,630.0,0.0,0.0,18961.0,0,1,3,75.0,6,4.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,847.935752029104,0.06394493125571438,0.04471999114124276,10533.888888888889,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11323,2,83.0,3,0.0,7,300,2,0,77,7.0,1427.810408224994,0.0,783.3311233030771,0.0,0.0,17227.92,0,70,1,9034,201711323,,,187.0,,0.0,1.0,4.0,0.0,1.0,1.0,2656.008944054525,0.0,582.0,0.0,0.0,24740.0,0,5,1,90.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2211.141531528071,0.1283464011632322,0.08937516295586383,24740.0,7,4,7,7_1,7_0,7_0_0 +11324,2,26.0,2,0.0,1,300,5,52,62,8.0,0.0,0.0,363.4010365839017,61.9262679715128,0.0,39948.740000000005,42,43,1,9035,201711324,,,,,2.0,0.0,6.0,0.0,2.0,1.5,3032.8738609775583,0.0,270.0,0.0,0.0,40962.0,1,1,2,120.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,425.3273045554145,0.010646826522073398,0.010383460391470497,27308.0,8,4,8,8_1,8_0,8_1_0 +11325,2,77.0,2,0.0,8,111,6,0,72,9.0,0.0,810.5489706250489,2691.859530251124,0.0,0.0,37260.9,31,41,1,9036,201711325,,,390.0,,0.0,0.0,5.0,0.0,2.0,1.5,1649.333092344256,0.0,2000.0,0.0,0.0,55460.0,6,5,1,130.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3502.408500876173,0.09399688415674803,0.06315197441175935,36973.333333333336,9,5,9,9_1,9_3,9_0_0 +11326,2,33.0,2,0.0,99,111,1,0,34,9.0,0.0,0.0,274.5696720856146,0.0,0.0,23276.059999999998,0,20,2,9037,201711326,,,,450.0,1.0,0.0,2.0,0.0,1.0,1.0,2437.359528632276,0.0,204.0,0.0,0.0,41964.0,0,1,3,47.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,274.5696720856146,0.011796226340953522,0.006542981414679598,41964.0,10,5,10,10_0,10_3,10_0_0 +11327,2,27.0,3,0.0,9,111,6,55,62,7.0,0.0,0.0,699.8834778652922,0.0,0.0,23837.030875301632,31,71,2,904,201711327,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3697.8008482473906,0.0,520.0,0.0,0.0,36784.0,1,1,3,36.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,699.8834778652922,0.029361185188146295,0.019026845309517513,24522.666666666668,7,4,7,7_0,7_2,7_0_0 +11328,1,92.0,3,82.0,5,300,4,0,71,3.0,0.0,0.0,1876.2260925850333,56.61830214538313,0.0,13656.22,0,70,2,9041,201711328,,,240.0,202.0,0.0,9.0,2.0,0.0,1.0,1.0,2034.0590361115812,0.0,1394.0,0.0,0.0,14891.0,0,5,3,40.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1932.8443947304163,0.14153582724431918,0.12979950270165982,14891.0,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +11329,2,37.0,2,0.0,1,400,2,56,38,7.0,761.4988843866635,416.377895869032,969.0694308904046,53.079658261296686,0.0,46341.64,71,31,1,9042,201711329,,,,,2.0,0.0,4.0,3.0,5.0,2.4,1812.0516532324775,0.0,720.0,0.0,0.0,54762.0,1,1,1,180.0,0,1.0,4,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2200.0258694073964,0.04747406154394614,0.04017431557297755,22817.5,6,3,6,6_1,6_1,6_1_0 +11330,2,52.0,3,0.0,1,111,6,0,54,3.0,1732.4099619796593,0.0,807.5578590753372,0.0,0.0,22913.74,0,50,1,9043,201711330,,,,,1.0,2.0,2.0,0.0,1.0,1.0,2690.0333753262303,0.0,600.0,0.0,0.0,16231.0,0,1,1,60.0,8,6.0,1,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2539.9678210549964,0.1108491159040382,0.15648868344864744,16231.0,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +11331,2,69.0,4,0.0,5,120,5,0,78,2.0,0.0,0.0,411.85450812842197,88.46609710216114,0.0,12085.720000000001,0,70,1,9044,201711331,,,164.0,,0.0,2.0,6.0,0.0,1.0,1.0,2141.695457306918,0.0,306.0,0.0,0.0,12235.0,0,5,2,134.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,500.3206052305831,0.041397666438622034,0.0408925709219929,12235.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +11332,2,53.0,2,0.0,5,111,1,37,37,10.0,0.0,0.0,484.5347154452023,0.0,0.0,37743.04,20,20,2,9046,201711332,,,,,2.0,2.0,3.0,0.0,2.0,1.5,2149.2290249815965,0.0,360.0,0.0,0.0,101233.0,1,1,2,72.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,484.5347154452023,0.012837723602688133,0.004786331684778702,67488.66666666667,10,5,10,10_0,10_4,10_0_0 +11333,1,48.0,4,353.0,99,300,2,0,46,3.0,1586.456009138882,0.0,834.4764543778484,123.8525359430256,0.0,25085.659999999996,0,50,1,9047,201711333,,,,107.0,1.0,0.0,3.0,1.0,2.0,1.5,333.8506961192314,0.0,620.0,0.0,0.0,22111.0,0,1,3,68.0,0,0.0,2,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2544.784999459756,0.10144381289787696,0.11509135721856795,14740.666666666666,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +11334,2,50.0,4,0.0,99,400,4,0,85,1.0,0.0,0.0,1345.929765125562,0.0,0.0,9617.18,0,60,1,9048,201711334,,,480.0,,0.0,0.0,4.0,0.0,1.0,1.0,2633.674164529467,0.0,1000.0,0.0,0.0,9725.0,0,7,1,72.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1345.929765125562,0.13995056400374767,0.13839894757075188,9725.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +11335,1,38.0,3,312.0,9,111,1,0,52,3.0,0.0,0.0,360.76220198324177,0.0,672.272632874545,21472.554345444656,0,50,2,9049,201711335,,,,,1.0,0.0,3.0,1.0,2.0,1.3,809.8865502987726,648.0,0.0,0.0,0.0,19919.0,0,1,3,65.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1033.0348348577868,0.048109545713034475,0.05186178195982664,15322.307692307691,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11336,2,74.0,1,0.0,5,300,2,78,75,10.0,0.0,0.0,794.0985614240816,0.0,1627.776186679765,41905.29466143878,70,31,1,905,201711336,,,250.0,,0.0,3.0,6.0,0.0,2.0,1.5,1620.4504873007268,0.0,590.0,920.0,0.0,68725.0,5,5,1,160.0,0,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2421.8747481038467,0.05779400354228876,0.03524008363919748,45816.666666666664,10,5,10,10_1,10_0,10_0_0 +11337,2,64.0,3,0.0,8,111,1,43,74,10.0,0.0,0.0,565.290501352736,0.0,2588.518001209235,16421.832325490832,60,31,1,9050,201711337,,,295.0,,2.0,0.0,5.0,1.0,3.0,2.0,3913.7610015365694,0.0,420.0,1463.0,0.0,87050.0,1,5,1,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3153.808502561971,0.19204973233507347,0.03622985068997095,43525.0,10,5,10,10_1,10_4,10_0_0 +11338,2,70.0,3,0.0,9,300,5,0,75,7.0,0.0,97.1548423694408,726.8020731678034,0.0,0.0,22018.120000000003,0,44,1,9051,201711338,,,,,0.0,1.0,4.0,0.0,1.0,1.0,1961.216786268247,0.0,540.0,0.0,0.0,24413.0,0,5,1,90.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,823.9569155372442,0.03742176514331124,0.03375074409278844,24413.0,7,4,7,7_1,7_0,7_0_0 +11339,1,34.0,3,569.0,1,211,2,85,65,2.0,0.0,0.0,1175.81754720464,0.0,2191.1108034429617,14636.910875301628,71,50,1,9052,201711339,,,480.0,,1.0,0.0,5.0,5.0,7.0,3.2,1343.9983442786397,2112.0,0.0,0.0,0.0,37578.0,6,4,3,86.0,1,3.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,3366.9283506476017,0.2300299823734643,0.08959839136323386,11743.125,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +11340,2,57.0,4,0.0,4,111,2,0,63,2.0,0.0,0.0,317.3371221148886,0.0,591.350927065572,13726.48,0,50,2,9053,201711340,,,,458.0,1.0,1.0,3.0,0.0,1.0,1.0,3325.92342088102,570.0,0.0,0.0,0.0,10981.0,0,4,3,55.0,8,6.0,1,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,908.6880491804607,0.06619964107188883,0.08275093790915769,10981.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +11341,1,46.0,4,327.0,8,300,4,0,67,3.0,0.0,0.0,164.20343134531856,0.0,0.0,11859.539999999999,0,71,1,9054,201711341,,,490.0,,1.0,2.0,3.0,1.0,2.0,1.5,849.3553728370829,0.0,122.0,0.0,0.0,22024.0,0,1,3,70.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,164.20343134531856,0.013845682998271314,0.007455658887818678,14682.666666666666,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +11342,2,42.0,4,0.0,2,120,6,52,52,3.0,0.0,1110.341055650752,1263.8280494529026,106.15931652259337,0.0,34096.17999999999,50,50,1,9055,201711342,,,792.0,,2.0,0.0,4.0,2.0,4.0,2.1,3037.9050437186565,0.0,939.0,0.0,0.0,31370.0,1,1,2,110.0,0,0.0,4,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2480.328421626248,0.07274505301257352,0.0790668926243624,14938.095238095237,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +11343,2,43.0,2,0.0,4,112,1,0,54,7.0,0.0,0.0,1002.1172277312272,0.0,1867.4239802070697,55063.340000000004,0,31,1,9057,201711343,,,600.0,,1.0,0.0,5.0,3.0,4.0,2.1,664.689929949544,1800.0,0.0,0.0,0.0,53758.0,0,1,2,140.0,10,0.0,2,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2869.541207938297,0.05211346075153263,0.053378868409135326,25599.04761904762,7,4,7,7_1,7_0,7_0_1 +11344,2,35.0,1,0.0,9,221,2,69,45,4.0,0.0,55.5170527825376,538.3719060502248,106.15931652259337,0.0,43677.920000000006,31,31,1,9058,201711344,,,170.0,,2.0,0.0,5.0,2.0,4.0,2.1,2117.9604319307005,0.0,400.0,0.0,0.0,35032.0,1,1,2,213.0,3,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,700.0482753553557,0.016027509445398398,0.019983109024758954,16681.90476190476,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11345,2,69.0,1,0.0,5,120,2,72,75,5.0,1826.0108665188534,0.0,698.5375481001666,233.5504963497054,0.0,28096.1,44,70,1,9059,201711345,,,605.0,,0.0,0.0,7.0,0.0,2.0,1.5,1517.9124709608259,0.0,519.0,0.0,0.0,31160.0,5,5,1,135.0,0,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2758.0989109687257,0.09816661070286359,0.08851408571786668,20773.333333333332,5,3,5,5_1,5_1,5_0_0 +11346,2,48.0,2,0.0,7,111,6,46,43,7.0,0.0,0.0,807.5578590753372,2480.5893627445985,0.0,40682.32,31,33,1,906,201711346,,,650.0,,2.0,0.0,4.0,2.0,4.0,2.3,1682.6957947535989,0.0,600.0,0.0,0.0,55188.0,1,1,2,115.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3288.1472218199356,0.08082496823730642,0.05958083680908777,23994.782608695656,7,4,7,7_1,7_3,7_0_0 +11347,2,30.0,2,0.0,9,112,4,0,21,3.0,0.0,0.0,1872.1883032896567,0.0,0.0,22573.4,0,50,1,9060,201711347,,,125.0,,1.0,0.0,4.0,0.0,1.0,1.0,2826.6986603520972,0.0,1391.0,0.0,0.0,21633.0,0,1,2,120.0,8,0.0,1,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1872.1883032896567,0.08293780747648367,0.08654316568620425,21633.0,6,3,6,6_1,6_0,6_0_0 +11348,2,28.0,3,0.0,9,111,4,0,47,5.0,0.0,0.0,1195.185631431499,0.0,0.0,24820.24,0,31,2,9061,201711348,,,,395.0,1.0,0.0,1.0,0.0,1.0,1.0,3967.845679200329,0.0,888.0,0.0,0.0,20322.0,0,1,3,35.0,9,7.0,1,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1195.185631431499,0.04815366940172613,0.05881240190096934,20322.0,5,3,5,5_0,5_3,5_0_0 +11349,2,76.0,2,0.0,1,111,2,77,77,9.0,0.0,0.0,2489.9700654822896,0.0,3121.083905764245,38104.399999999994,50,50,1,9063,201711349,,,849.0,,1.0,1.0,5.0,1.0,3.0,2.0,1832.9436620919294,0.0,1850.0,1764.0,0.0,68888.0,5,5,1,160.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5611.053971246534,0.14725475197737098,0.08145183444499092,34444.0,9,5,9,9_1,9_3,9_1_0 +11350,2,65.0,2,0.0,5,300,2,0,77,4.0,0.0,0.0,646.0462872602698,138.0071114793714,0.0,20649.42,0,70,1,9065,201711350,,,,,0.0,2.0,6.0,0.0,1.0,1.0,2636.1542143294832,0.0,480.0,0.0,0.0,16950.0,0,5,1,120.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,784.0533987396411,0.0379697540531231,0.04625683768375464,16950.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11351,2,80.0,2,0.0,99,112,4,71,71,7.0,0.0,0.0,1615.1157181506744,169.8549064361494,0.0,18154.120000000003,71,71,1,9066,201711351,,,300.0,,0.0,3.0,4.0,0.0,2.0,1.5,1809.5651238698642,0.0,1200.0,0.0,0.0,33800.0,5,5,1,90.0,8,1.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1784.9706245868238,0.09832316986925412,0.05280978179250958,22533.333333333332,6,3,6,6_1,6_1,6_0_0 +11352,2,67.0,3,0.0,5,400,4,77,78,3.0,0.0,97.1548423694408,1224.7960862642615,116.7752481748527,0.0,30607.14,71,50,1,9067,201711352,,,,,0.0,3.0,5.0,0.0,2.0,1.5,1620.7276294191252,0.0,910.0,0.0,0.0,20559.0,5,5,1,84.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1438.726176808555,0.04700622720086081,0.06998035783883239,13706.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +11353,2,40.0,5,0.0,2,221,2,65,37,7.0,0.0,0.0,3310.9872222088825,0.0,0.0,36229.411693502596,50,50,2,9068,201711353,,,,,3.0,0.0,4.0,2.0,4.0,2.5,4970.275668584371,0.0,2460.0,0.0,0.0,61430.0,1,1,3,85.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,3310.9872222088825,0.09138948350085069,0.053898538535062386,24572.0,7,4,7,7_0,7_1,7_0_1 +11354,2,67.0,1,0.0,4,111,2,0,72,8.0,0.0,0.0,209.96504335958767,0.0,629.8786113673874,18179.5,0,30,2,9069,201711354,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2337.6080954883364,0.0,156.0,356.0,0.0,27229.0,0,5,1,74.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,839.843654726975,0.046197291164607114,0.030843720104556726,27229.0,7,4,7,7_0,7_3,7_0_1 +11355,2,32.0,3,0.0,8,111,2,54,48,7.0,0.0,0.0,80.75578590753372,53.079658261296686,0.0,35766.236322376295,43,43,1,907,201711355,,,600.0,,2.0,0.0,4.0,2.0,4.0,2.1,3159.781269898921,0.0,60.0,0.0,0.0,48543.0,4,1,3,90.0,7,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,133.8354441688304,0.0037419493335142857,0.002757049299977966,23115.714285714286,6,3,6,6_1,6_2,6_0_0 +11356,2,65.0,3,0.0,1,112,2,0,74,10.0,0.0,902.152107716236,966.8351874802962,1491.1845327540282,0.0,48729.31999999999,0,30,1,9070,201711356,,,250.0,,0.0,2.0,5.0,0.0,1.0,1.0,2673.8968345597928,0.0,718.34,0.0,0.0,53756.0,0,5,1,160.0,8,3.0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3360.1718279505603,0.06895585302545902,0.06250784708591711,53756.0,10,5,10,10_1,10_1,10_1_0 +11357,2,61.0,2,0.0,1,111,2,52,13,10.0,3172.912018277764,0.0,2788.7664733401643,0.0,0.0,36825.6058467513,50,50,5,9071,201711357,,,250.0,,2.0,2.0,5.0,0.0,2.0,1.5,1563.158035379116,0.0,2072.0,0.0,0.0,98925.0,1,1,1,200.0,8,7.0,3,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5961.678491617929,0.16188948842898288,0.06026462968529622,65950.0,10,5,10,10_1,10_3,10_1_0 +11358,2,69.0,2,0.0,4,111,1,0,78,6.0,0.0,0.0,349.9417389326461,0.0,184.0094819724952,14480.36,0,70,2,9073,201711358,,,,244.0,0.0,1.0,2.0,0.0,1.0,1.0,2236.944006483913,0.0,260.0,104.0,0.0,21998.0,0,5,3,40.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,533.9512209051413,0.03687416755558158,0.024272716651747493,21998.0,6,3,6,6_0,6_3,6_0_1 +11359,1,39.0,3,342.0,99,111,1,85,63,4.0,0.0,0.0,565.290501352736,0.0,743.1152156581536,15473.88,31,71,2,9074,201711359,,,,348.0,1.0,0.0,2.0,2.0,4.0,2.1,2087.6389678432847,0.0,420.0,420.0,0.0,37358.0,6,1,3,41.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1308.4057170108895,0.08455576216248863,0.035023441217701415,17789.52380952381,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +11360,2,50.0,3,0.0,7,112,2,0,65,5.0,63.458240365555284,0.0,152.0900634591885,339.7098128722988,0.0,19600.9316935026,0,50,1,9075,201711360,,,76.0,466.0,2.0,1.0,4.0,2.0,3.0,2.0,590.5237987841374,0.0,113.0,0.0,0.0,39871.0,0,1,3,70.0,9,0.0,2,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,555.2581166970426,0.028328149160435162,0.013926365445989382,19935.5,5,3,5,5_1,5_0,5_0_0 +11361,2,40.0,3,0.0,8,111,4,0,43,6.0,0.0,0.0,942.1508355878933,0.0,0.0,17947.24,0,44,8,9076,201711361,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3526.9478815552598,0.0,700.0,0.0,0.0,19920.0,0,1,2,40.0,8,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,942.1508355878933,0.05249558347622772,0.04729672869417135,19920.0,5,3,5,5_0,5_3,5_0_0 +11362,2,62.0,3,0.0,4,111,2,0,42,8.0,0.0,0.0,1975.824895204325,0.0,187.54812585658163,23233.180000000004,0,30,2,9077,201711362,,,,,1.0,3.0,2.0,0.0,1.0,1.0,2101.9674983625846,0.0,1468.0,106.0,0.0,29023.0,0,1,3,55.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2163.3730210609065,0.09311566565837763,0.07453995179894933,29023.0,8,4,8,8_0,8_2,8_0_1 +11363,2,51.0,3,0.0,5,112,6,56,68,4.0,0.0,555.170527825376,942.1508355878933,191.08676974066807,0.0,29204.460000000003,60,50,1,9078,201711363,,,180.0,,2.0,0.0,5.0,1.0,3.0,2.0,1469.9494214872207,0.0,700.0,0.0,0.0,33014.0,1,1,1,90.0,8,2.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1688.4081331539376,0.05781336594321338,0.05114218613781843,16507.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11364,2,51.0,2,0.0,9,111,4,55,48,5.0,0.0,0.0,1211.3367886130059,0.0,0.0,37200.64,42,50,1,908,201711364,,,360.0,,2.0,1.0,5.0,2.0,4.0,2.5,1615.367211972336,0.0,900.0,0.0,0.0,49843.0,1,1,2,110.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1211.3367886130059,0.03256225668733134,0.024303047340910575,19937.2,5,3,5,5_1,5_2,5_0_0 +11365,2,46.0,3,0.0,9,300,2,54,45,8.0,0.0,0.0,1281.325136399535,60.15694602946958,0.0,59286.700315994116,31,31,1,9080,201711365,,,380.0,,2.0,1.0,5.0,2.0,4.0,2.3,1733.4219055340498,0.0,952.0,0.0,0.0,64944.0,1,1,2,137.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1341.4820824290045,0.02262703229019317,0.020655981806310123,28236.521739130436,8,4,8,8_1,8_1,8_0_0 +11366,2,48.0,4,0.0,1,112,2,0,62,2.0,158.64560091388822,0.0,1076.7438121004495,247.7050718860512,0.0,22874.22,0,44,1,9083,201711366,,,300.0,,1.0,0.0,6.0,2.0,3.0,1.6,2668.7149883862603,0.0,800.0,0.0,0.0,19449.0,0,1,1,200.0,6,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1483.094484900389,0.06483694241379111,0.07625556506249108,12155.625,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11367,2,46.0,3,0.0,5,400,2,0,65,8.0,2109.9864921547132,0.0,500.68587262670906,987.2816436601183,0.0,124392.09999999999,0,50,1,9085,201711367,,,245.0,,3.0,0.0,4.0,3.0,5.0,3.0,3927.3774412824027,0.0,372.0,0.0,0.0,90430.0,0,1,1,109.0,0,1.0,4,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3597.9540084415407,0.028924296707279168,0.039787172491889206,30143.333333333332,8,4,8,8_1,8_1,8_0_0 +11368,1,37.0,3,395.0,99,111,1,0,54,2.0,0.0,0.0,417.54884488801133,0.0,1928.152587414374,12142.898002984744,0,20,2,9088,201711368,650.0,650.0,,,1.0,0.0,4.0,2.0,3.0,1.6,822.0071246197693,750.0,0.0,650.0,0.0,17420.0,0,4,3,71.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2345.7014323023855,0.19317476204822012,0.13465565053400605,10887.5,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11369,2,77.0,5,0.0,5,112,1,0,77,9.0,0.0,0.0,853.4305678860767,0.0,685.5658827642974,19388.684137887038,0,50,2,909,201711369,,,,320.0,1.0,5.0,3.0,1.0,2.0,1.5,2331.898997749001,517.5563351347934,420.0,84.0,0.0,47860.0,0,5,3,76.0,10,3.0,2,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1538.996450650374,0.07937601333362547,0.03215621501567852,31906.666666666668,9,5,9,9_0,9_1,9_0_0 +11370,2,40.0,3,0.0,2,111,2,85,64,4.0,0.0,0.0,831.7845948475973,0.0,934.2019853988216,29753.57536887669,50,43,1,9093,201711370,,,600.0,,1.0,1.0,4.0,2.0,4.0,2.1,789.0532857837226,0.0,618.0,528.0,0.0,35326.0,4,1,3,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1765.986580246419,0.0593537602910642,0.049991127788213185,16821.90476190476,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +11371,2,68.0,3,0.0,2,111,2,0,77,10.0,0.0,0.0,2594.9833625595284,0.0,4898.154132050441,59066.83648810088,0,60,1,9094,201711371,,,500.0,,0.0,2.0,4.0,0.0,1.0,1.0,1730.7112139998073,1397.4021048639422,1350.0,1949.0,0.0,54039.0,0,5,1,140.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,7493.1374946099695,0.12685862220028452,0.13866166092285145,54039.0,10,5,10,10_1,10_3,10_0_1 +11372,1,44.0,4,245.0,3,211,1,0,63,1.0,0.0,0.0,672.964882562781,0.0,884.6609710216114,3124.2,0,50,2,9095,201711372,,,160.0,,1.0,1.0,2.0,0.0,1.0,1.0,2177.1958120127438,0.0,500.0,500.0,0.0,8890.0,0,4,3,55.0,1,3.0,1,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1557.6258535843924,0.4985679065310776,0.1752110071523501,8890.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +11373,1,49.0,4,283.0,99,111,2,85,63,2.0,0.0,0.0,741.5667485211081,0.0,1381.8937453532315,13445.080315994113,71,71,1,9096,201711373,,,102.0,,1.0,2.0,6.0,3.0,5.0,2.4,1702.7587612506352,1332.0,0.0,0.0,0.0,29926.0,6,1,3,110.0,7,5.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2123.4604938743396,0.1579358727480635,0.0709570438372766,12469.166666666668,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +11374,2,57.0,4,0.0,7,111,2,56,21,3.0,0.0,569.0497910210104,1090.2031097517051,0.0,2211.6524275540287,37886.946888211714,50,31,1,9097,201711374,,,600.0,,3.0,2.0,8.0,2.0,4.0,2.5,3160.4962535570994,0.0,810.0,1250.0,0.0,35200.0,4,1,1,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3870.905328326744,0.10216989349255672,0.10996890137291886,14080.0,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +11375,2,54.0,1,0.0,1,111,2,43,37,9.0,0.0,0.0,2058.7553464372368,0.0,4179.0812820308165,79095.65999999997,33,20,1,9098,201711375,,,434.0,,2.0,2.0,6.0,1.0,3.0,2.0,1063.1788937234217,2300.5834368997853,578.0,1013.0,0.0,81353.0,1,1,1,160.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,6237.836628468053,0.07886446144413051,0.07667617209528908,40676.5,10,5,10,10_1,10_2,10_1_0 +11376,2,75.0,3,0.0,4,111,2,0,78,4.0,0.0,0.0,248.99700654822897,0.0,1004.9748630805506,11274.811191295745,0,70,1,9099,201711376,,,,,0.0,1.0,4.0,0.0,1.0,1.0,3869.331163323183,0.0,185.0,568.0,0.0,17495.0,0,5,1,80.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,1253.9718696287796,0.11121887970921031,0.07167601426857843,17495.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +11377,2,70.0,2,0.0,7,111,2,77,72,6.0,0.0,0.0,2697.243249311626,0.0,0.0,38008.92,70,50,1,910,201711377,,,45.0,,0.0,3.0,3.0,0.0,2.0,1.5,2018.2364694682515,0.0,2004.0,0.0,0.0,31727.0,5,5,5,110.0,6,5.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2697.243249311626,0.0709634277772593,0.08501412832324601,21151.333333333332,5,3,5,5_1,5_2,5_0_0 +11378,2,64.0,2,0.0,2,221,5,56,77,3.0,0.0,2081.88947934516,901.7729426341265,106.15931652259337,0.0,26678.54,71,71,1,9101,201711378,,,200.0,,1.0,2.0,3.0,0.0,2.0,1.5,2133.2852624581374,0.0,670.0,0.0,0.0,22180.0,1,5,1,60.0,1,1.0,3,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3089.8217385018797,0.11581674778686839,0.13930666088827232,14786.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +11379,2,43.0,3,0.0,7,111,2,0,42,7.0,0.0,0.0,376.8603342351573,0.0,884.6609710216114,26298.34,0,20,2,9102,201711379,,,,,1.0,0.0,3.0,1.0,2.0,1.3,788.6238471064179,0.0,280.0,500.0,0.0,30050.0,0,1,2,61.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1261.5213052567688,0.04796961729359225,0.04198074227143989,23115.384615384613,6,3,6,6_0,6_4,6_0_0 +11380,2,34.0,3,0.0,1,300,4,69,46,5.0,0.0,0.0,1830.4644805707642,176.9321942043223,0.0,25942.938409057286,60,43,8,9103,201711380,,,396.0,,2.0,0.0,4.0,1.0,3.0,1.8,2632.5838743505283,0.0,1360.0,0.0,0.0,35596.0,1,1,4,90.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,2007.3966747750865,0.07737738274374723,0.056393883435641265,19775.555555555555,5,3,5,5_0,5_0,5_1_0 +11381,2,48.0,3,0.0,9,112,4,33,33,8.0,0.0,0.0,2335.18814249285,0.0,0.0,52806.49087530163,30,30,1,9105,201711381,,,412.0,,2.0,0.0,6.0,2.0,4.0,2.5,2288.9034291407,0.0,1735.0,0.0,0.0,72000.0,1,1,2,160.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2335.18814249285,0.04422161184705897,0.03243316864573403,28800.0,8,4,8,8_1,8_0,8_0_0 +11382,1,44.0,2,65.0,7,111,2,0,42,5.0,0.0,0.0,1056.5548656235662,0.0,1362.3778953732817,67575.76000000001,0,30,1,9109,201711382,,,180.0,,1.0,0.0,5.0,2.0,3.0,2.0,529.8050706748573,0.0,785.0,770.0,0.0,37193.0,0,1,2,95.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2418.9327609968477,0.035795864685751924,0.06503731242429618,18596.5,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +11383,2,84.0,2,0.0,6,112,4,0,74,10.0,0.0,0.0,1117.1217050542164,0.0,0.0,17289.071191295745,0,50,1,911,201711383,,,247.0,,0.0,2.0,3.0,0.0,1.0,1.0,2655.405135074851,0.0,830.0,0.0,0.0,58095.0,0,5,1,99.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1117.1217050542164,0.06461432732237438,0.019229222911682872,58095.0,10,5,10,10_1,10_1,10_0_0 +11384,2,29.0,5,0.0,1,120,2,67,53,3.0,0.0,0.0,823.7090162568439,0.0,1061.5931652259337,27786.719041045522,43,50,2,9110,201711384,,,560.0,,2.0,0.0,3.0,1.0,3.0,2.0,2396.4822294089176,0.0,612.0,600.0,0.0,30561.0,1,1,3,67.0,0,3.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1885.3021814827775,0.06784903891308212,0.06168980666479427,15280.5,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +11385,2,82.0,2,0.0,6,111,2,77,72,8.0,0.0,0.0,1442.5736807895253,0.0,3970.491992700437,42586.70992112826,60,41,2,9111,201711385,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2073.2908547322368,1865.8800592487562,300.0,1150.0,0.0,39603.0,5,5,1,140.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,5413.065673489962,0.12710692334568943,0.136683222823775,26402.0,7,4,7,7_0,7_3,7_0_0 +11386,1,24.0,3,310.0,5,111,1,0,54,6.0,0.0,0.0,362.05510681877615,0.0,231.7811744076622,22180.30872,0,31,2,9112,201711386,,,,82.0,4.0,0.0,5.0,2.0,6.0,3.3,1279.5339678567823,0.0,269.0,131.0,0.0,70891.0,0,1,3,90.0,9,7.0,5,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,593.8362812264384,0.026773129658514434,0.008376751367965445,21482.121212121212,6,3,6,6_0,6_3,6_0_0 +11387,2,57.0,5,0.0,7,112,5,85,68,2.0,0.0,2498.267375214192,3230.231436301349,636.9558991355602,0.0,53922.17087530162,71,70,1,9113,201711387,,,700.0,,2.0,6.0,5.0,1.0,3.0,2.0,2332.0650126862038,0.0,2400.0,0.0,0.0,23451.0,6,1,2,115.0,6,0.0,4,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,6365.454710651102,0.11804893251370781,0.27143638696222344,11725.5,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11388,2,61.0,3,0.0,4,111,1,0,54,7.0,0.0,0.0,605.6683943065029,0.0,0.0,51037.28584675131,0,60,2,9114,201711388,,,,,1.0,0.0,3.0,0.0,1.0,1.0,1899.9523904368539,0.0,450.0,0.0,0.0,28783.0,0,1,1,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,605.6683943065029,0.011867174836160605,0.02104257354363697,28783.0,8,4,8,8_0,8_4,8_0_1 +11389,2,30.0,2,0.0,9,112,4,52,48,5.0,0.0,0.0,1924.6795641295537,0.0,0.0,19418.66,50,71,1,9115,201711389,,,640.0,,2.0,1.0,4.0,1.0,3.0,1.8,2948.609037758117,0.0,1430.0,0.0,0.0,35711.0,1,1,3,80.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1924.6795641295537,0.09911495253171711,0.053895986226360326,19839.444444444445,5,3,5,5_1,5_0,5_0_0 +11390,2,39.0,3,0.0,3,111,2,37,43,7.0,0.0,0.0,3499.417389326461,0.0,0.0,50805.74699878039,20,30,1,9116,201711390,,,350.0,,2.0,0.0,5.0,3.0,5.0,2.4,1625.9068063025486,0.0,2600.0,0.0,0.0,59900.0,1,1,2,100.0,6,5.0,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3499.417389326461,0.06887837687753053,0.058420991474565295,24958.333333333336,7,4,7,7_1,7_2,7_0_1 +11391,2,32.0,4,0.0,99,112,6,52,62,6.0,0.0,0.0,1615.1157181506744,0.0,0.0,45382.3716935026,42,50,2,9118,201711391,,,,410.0,2.0,0.0,3.0,2.0,4.0,2.1,533.6927211888508,0.0,1200.0,0.0,0.0,46652.0,1,1,3,66.0,9,3.0,4,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1615.1157181506744,0.035589054910100934,0.0346205032613966,22215.238095238095,6,3,6,6_0,6_1,6_0_0 +11392,2,37.0,1,0.0,2,111,2,45,37,10.0,1665.7788095958263,0.0,787.3689125984538,116.7752481748527,0.0,57326.86000000001,12,12,1,9119,201711392,,,404.0,,2.0,0.0,5.0,1.0,3.0,1.8,2943.073912160827,0.0,585.0,0.0,0.0,72909.0,1,1,2,96.0,9,7.0,4,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2569.9229703691326,0.044829299395939916,0.03524836399304795,40505.0,9,5,9,9_1,9_3,9_0_1 +11393,2,82.0,2,0.0,3,211,2,77,78,7.0,2379.684013708323,0.0,1096.1791025546358,53.079658261296686,941.645418048611,25722.037870706805,50,50,1,912,201711393,,,169.0,,0.0,3.0,5.0,0.0,2.0,1.5,1276.287142745008,907.6469888212283,439.0,0.0,0.0,36731.0,5,5,1,73.0,3,3.0,3,2,1,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4470.588192572866,0.17380381037632073,0.12171158401820986,24487.333333333332,7,4,7,7_1,7_1,7_0_1 +11394,2,58.0,3,0.0,3,300,1,0,56,5.0,0.0,0.0,497.99401309645793,0.0,0.0,24860.52963816254,0,60,2,9122,201711394,,,,335.0,1.0,0.0,2.0,0.0,1.0,1.0,3275.66550204571,0.0,370.0,0.0,0.0,18976.0,0,1,3,40.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,497.99401309645793,0.02003151261636858,0.02624336072388585,18976.0,5,3,5,5_0,5_1,5_0_1 +11395,2,82.0,2,0.0,5,111,2,77,78,5.0,0.0,0.0,565.290501352736,0.0,2123.1863304518674,39395.345846751305,70,71,1,9123,201711395,,,316.0,,0.0,0.0,4.0,0.0,2.0,1.5,2538.923746061727,0.0,420.0,1200.0,0.0,30014.0,5,5,1,100.0,8,7.0,3,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2688.4768318046035,0.06824351389788105,0.08957409315001677,20009.333333333332,5,3,5,5_1,5_3,5_0_0 +11396,1,29.0,3,379.0,9,111,2,0,85,2.0,0.0,0.0,467.65470627457273,0.0,871.4645240966324,37901.532459362,0,43,2,9124,201711396,,,600.0,37.0,0.0,2.0,4.0,2.0,3.0,1.8,1046.504030866859,840.0,0.0,0.0,0.0,23768.0,0,8,3,90.0,9,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1339.119230371205,0.03533153261829209,0.056341266844968235,13204.444444444443,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11397,1,31.0,2,33.0,9,112,1,0,43,5.0,0.0,0.0,484.5347154452023,0.0,0.0,18928.58,0,50,2,9125,201711397,,,180.0,398.0,1.0,0.0,3.0,1.0,2.0,1.3,1769.837409036667,0.0,360.0,0.0,0.0,23936.0,0,1,3,65.0,9,3.0,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,484.5347154452023,0.025598048847045172,0.02024292761719595,18412.30769230769,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +11398,2,68.0,2,0.0,6,300,6,0,75,4.0,0.0,693.9631597817199,672.964882562781,65.46491185559925,0.0,33353.56,0,50,1,9126,201711398,,,172.0,,0.0,1.0,4.0,0.0,1.0,1.0,1998.1970940829506,0.0,500.0,0.0,0.0,17409.0,0,5,1,110.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1432.3929542001001,0.042945729157550204,0.08227887611006376,17409.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11399,2,51.0,4,0.0,1,400,2,0,85,5.0,2379.684013708323,0.0,2481.134445290794,0.0,359.7517025538866,89879.16372112132,0,50,1,9127,201711399,,,840.0,,1.0,1.0,5.0,4.0,5.0,2.8,638.444263895821,346.7627445403116,1700.0,0.0,0.0,52551.0,0,7,2,93.0,0,0.0,2,5,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,5220.570161553003,0.058084320607960725,0.0993429270908832,18768.214285714286,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11400,1,31.0,5,163.0,1,112,6,68,85,1.0,0.0,555.170527825376,807.5578590753372,265.39829130648343,0.0,18756.1,71,71,1,9130,201711400,,,501.0,,1.0,0.0,4.0,3.0,5.0,2.4,5510.535384741245,0.0,600.0,0.0,0.0,24866.0,1,7,2,90.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1628.1266782071966,0.08680518221843543,0.06547601858791911,10360.833333333334,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +11401,2,32.0,5,0.0,9,112,4,46,13,8.0,0.0,0.0,2332.496282962599,51.310336319253466,0.0,39333.37087530163,20,30,1,9132,201711401,,,258.0,710.0,2.0,0.0,3.0,0.0,2.0,1.5,1815.227731428948,0.0,1733.0,0.0,0.0,47662.0,1,1,3,78.0,8,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2383.8066192818524,0.06060519518754752,0.05001482563219865,31774.666666666668,8,4,8,8_1,8_1,8_0_0 +11402,2,64.0,3,0.0,6,111,1,85,75,2.0,0.0,0.0,1170.9588956592388,0.0,0.0,24745.57016615878,71,71,1,9134,201711402,,,350.0,,1.0,4.0,4.0,1.0,3.0,2.0,2865.550698400157,0.0,870.0,0.0,0.0,28770.0,6,5,1,90.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1170.9588956592388,0.04731994000528641,0.04070069154185745,14385.0,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +11403,2,70.0,2,0.0,6,111,4,0,74,8.0,0.0,0.0,1036.4446419707929,0.0,301.1200514545581,26831.824209953284,0,20,1,9135,201711403,,,147.0,,0.0,1.0,3.0,0.0,1.0,1.0,1695.9488806085142,290.2480092164732,650.0,0.0,0.0,29746.0,0,5,1,80.0,5,4.0,1,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1337.564693425351,0.04984993502339585,0.044966203638316105,29746.0,8,4,8,8_1,8_2,8_0_0 +11404,2,76.0,3,0.0,6,112,2,0,78,3.0,0.0,0.0,1345.929765125562,153.93100895776038,0.0,13254.8,0,70,1,9136,201711404,,,120.0,,0.0,2.0,4.0,0.0,1.0,1.0,2213.7473768694704,0.0,1000.0,0.0,0.0,14539.0,0,5,1,90.0,7,0.0,1,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1499.8607740833224,0.11315604717410467,0.10316120600339242,14539.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11405,2,82.0,2,0.0,1,120,4,86,72,1.0,0.0,0.0,1305.8481641915205,0.0,176.11992317231335,24135.440631988233,71,71,2,9137,201711405,,,400.0,,0.0,6.0,3.0,0.0,2.0,1.5,2865.727924215934,169.7610532317421,900.0,0.0,0.0,14190.0,6,5,1,78.0,0,0.0,3,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,1481.9680873638338,0.061402155857046475,0.10443749734769794,9460.0,1,1,1_0,1_0_0,1_0_0,1_1_0_0 +11406,2,57.0,3,0.0,6,112,4,75,47,9.0,0.0,444.1364222603008,1547.8192298943961,0.0,0.0,33311.04,33,50,1,9138,201711406,,,806.0,,1.0,2.0,5.0,0.0,2.0,1.5,1743.3556540090449,0.0,1150.0,0.0,0.0,47793.0,5,1,1,174.0,6,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1991.955652154697,0.05979866291039538,0.041678815980471975,31862.0,8,4,8,8_1,8_0,8_0_0 +11407,2,56.0,3,0.0,9,111,4,0,37,10.0,0.0,0.0,637.9707086695164,0.0,0.0,21106.76,0,31,2,9139,201711407,,,167.0,,1.0,0.0,5.0,0.0,1.0,1.0,1826.1135425019265,0.0,474.0,0.0,0.0,47725.0,0,1,2,110.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,637.9707086695164,0.03022589486351844,0.013367641878879339,47725.0,10,5,10,10_0,10_2,10_0_0 +11408,2,79.0,3,0.0,5,111,1,0,78,7.0,0.0,0.0,484.5347154452023,265.39829130648343,1581.7738161866412,25875.23202733072,0,50,2,914,201711408,999999.0,624.0,,359.0,0.0,2.0,2.0,0.0,1.0,1.0,2637.170051039696,0.0,360.0,894.0,0.0,26749.0,0,5,3,55.0,7,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2331.7068229383267,0.090113465281218,0.08716986888998941,26749.0,7,4,7,7_0,7_2,7_0_0 +11409,2,34.0,3,0.0,1,111,2,0,42,6.0,0.0,0.0,1135.7328580953908,0.0,2116.413844234679,32124.35672205293,0,60,1,9142,201711409,,,403.0,,1.0,2.0,4.0,0.0,1.0,1.0,2945.490582834682,2040.0,0.0,0.0,0.0,20467.0,0,1,1,75.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3252.1467023300697,0.10123616576880794,0.15889708810915473,20467.0,5,3,5,5_1,5_4,5_1_0 +11411,2,37.0,2,0.0,10,112,1,21,47,6.0,0.0,138.792631956344,403.7789295376686,0.0,0.0,35524.1516935026,71,71,1,9145,201711411,999999.0,100.0,,,2.0,0.0,5.0,2.0,4.0,2.1,2733.6397488598313,0.0,300.0,0.0,0.0,46380.0,1,1,2,200.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,542.5715614940126,0.015273315072383541,0.011698395030056331,22085.714285714286,6,3,6,6_1,6_0,6_0_0 +11412,2,45.0,1,0.0,1,111,2,0,34,9.0,0.0,0.0,795.4444911892072,0.0,1066.9011310520634,50181.560000000005,0,20,2,9146,201711412,,,,,1.0,0.0,6.0,2.0,3.0,1.8,588.8953456858671,0.0,591.0,603.0,0.0,62900.0,0,1,2,132.0,8,6.0,2,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,1862.3456222412706,0.037112150802830174,0.029608038509400168,34944.444444444445,9,5,9,9_0,9_2,9_1_0 +11413,2,68.0,2,0.0,5,112,4,0,77,8.0,0.0,0.0,2146.757975375271,0.0,0.0,26583.88,0,50,1,9148,201711413,,,255.0,,0.0,1.0,5.0,0.0,1.0,1.0,1191.6577674969021,0.0,1595.0,0.0,0.0,32590.0,0,5,1,115.0,10,1.0,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2146.757975375271,0.08075412525843749,0.06587167767337439,32590.0,9,5,9,9_1,9_1,9_0_0 +11414,2,51.0,4,0.0,1,300,2,0,62,1.0,940.7684134193571,0.0,1450.9122868053557,0.0,0.0,15133.571502734116,0,50,1,9149,201711414,,,,595.0,2.0,2.0,6.0,1.0,4.0,2.3,3670.93744823912,0.0,1078.0,0.0,0.0,20030.0,0,1,3,105.0,0,1.0,5,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2391.680700224713,0.1580380876908414,0.11940492761980594,8708.695652173914,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +11415,1,46.0,3,97.0,2,111,2,0,46,6.0,0.0,0.0,403.7789295376686,0.0,1571.157884534382,51734.71672205293,0,42,2,915,201711415,,,35.0,570.0,2.0,0.0,3.0,2.0,3.0,2.0,662.4046289344425,0.0,300.0,888.0,0.0,44685.0,0,1,3,65.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1974.9368140720505,0.038174304204321566,0.044196862796733814,22342.5,6,3,6,6_0,6_3,6_0_1 +11417,2,73.0,2,0.0,4,120,6,77,78,5.0,1786.3494662903813,0.0,355.1948840514017,0.0,661.898055206728,31276.280315994118,70,50,1,9152,201711417,,,430.0,,0.0,4.0,5.0,0.0,2.0,1.5,1723.81942562071,638.0,0.0,0.0,0.0,28628.0,5,5,1,140.0,0,0.0,3,4,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2803.4424055485106,0.08963477680927681,0.09792658954689502,19085.333333333332,5,3,5,5_1,5_0,5_0_1 +11418,0,42.0,5,0.0,99,112,2,22,64,8.0,0.0,0.0,0.0,46.0023704931238,0.0,9596.390875301628,50,50,8,9153,201711418,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2800.397967397656,0.0,0.0,0.0,0.0,41370.0,1,1,5,120.0,8,1.0,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,46.0023704931238,0.004793715792832155,0.0011119741477670728,27580.0,8,4,8,8_0,8_1,8_0_0 +11419,2,77.0,3,0.0,5,211,2,86,78,5.0,0.0,0.0,471.07541779394666,0.0,1808.2470247681738,27090.546162745424,70,70,1,9154,201711419,,,287.0,,0.0,3.0,4.0,1.0,3.0,2.0,2952.4146173282556,0.0,350.0,1022.0,0.0,36516.0,5,5,1,90.0,1,3.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2279.3224425621206,0.08413719047483126,0.062419828090758044,18258.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11420,1,39.0,4,402.0,3,111,6,0,55,2.0,0.0,0.0,1426.6855510330956,0.0,0.0,23653.54,0,42,2,9155,201711420,,,,,1.0,0.0,3.0,3.0,4.0,2.1,1001.2972508657331,0.0,1060.0,0.0,0.0,22654.0,0,4,2,66.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1426.6855510330956,0.06031594218172399,0.0629772027471129,10787.619047619048,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +11421,2,18.0,2,0.0,99,111,1,0,84,9.0,0.0,0.0,0.0,0.0,0.0,11825.150875301626,0,41,2,9156,201711421,,,,391.0,0.0,0.0,1.0,0.0,1.0,1.0,4062.7792717748953,0.0,0.0,0.0,0.0,29941.0,0,3,3,30.0,8,6.0,1,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,29941.0,8,4,8,8_0,8_2,8_0_0 +11422,1,38.0,3,97.0,5,111,4,0,43,3.0,0.0,0.0,629.895130078763,0.0,0.0,12405.380000000001,0,20,2,9157,201711422,,,,275.0,1.0,0.0,2.0,0.0,1.0,1.0,3163.34503023273,0.0,468.0,0.0,0.0,14911.0,0,1,3,30.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,629.895130078763,0.050775964144489164,0.04224365435442043,14911.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11423,2,52.0,2,0.0,8,111,4,85,31,4.0,0.0,0.0,1480.522741638118,0.0,0.0,56379.913444105856,41,10,2,9159,201711423,,,,,1.0,0.0,5.0,3.0,5.0,2.6,2438.584078317534,0.0,1100.0,0.0,0.0,59060.0,6,1,2,87.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1480.522741638118,0.026259755490860848,0.02506811279441446,22715.384615384613,6,3,6,6_0,6_4,6_0_0 +11424,2,36.0,1,0.0,5,112,5,85,33,4.0,0.0,763.359475759892,1450.9122868053557,159.23897478389006,0.0,59147.93999999998,50,0,1,916,201711424,,,610.0,,1.0,0.0,6.0,4.0,6.0,2.7,1574.4280739751118,0.0,1078.0,0.0,0.0,48916.0,6,1,2,156.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2373.510737349138,0.04012837534746161,0.04852217551208475,18117.037037037036,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11425,1,27.0,1,177.0,99,111,2,0,34,6.0,0.0,0.0,635.2788491392653,0.0,0.0,35474.119999999995,0,10,2,9160,201711425,,,,418.0,1.0,0.0,2.0,0.0,1.0,1.0,3440.2709480940407,0.0,472.0,0.0,0.0,22083.0,0,1,3,55.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,635.2788491392653,0.017908234203956725,0.028767778342583223,22083.0,6,3,6,6_0,6_3,6_0_0 +11426,2,65.0,3,0.0,2,112,6,0,78,8.0,0.0,0.0,1526.2843536523872,191.08676974066807,0.0,45158.85087530162,0,60,1,9164,201711426,,,517.0,,0.0,1.0,2.0,0.0,1.0,1.0,2652.698380435024,0.0,1134.0,0.0,0.0,30530.0,0,5,1,45.0,8,1.0,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1717.3711233930553,0.038029557663796176,0.0562519201897496,30530.0,8,4,8,8_1,8_1,8_0_1 +11427,1,38.0,5,449.0,6,211,1,0,85,2.0,0.0,0.0,629.895130078763,0.0,2335.504963497054,14423.142066597371,0,71,2,9166,201711427,660.0,660.0,360.0,,1.0,0.0,5.0,4.0,5.0,2.4,396.0005035857901,0.0,468.0,1320.0,0.0,26807.0,0,6,3,90.0,2,2.0,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,2965.400093575817,0.20560014453739608,0.11062036384436219,11169.583333333334,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +11428,2,26.0,1,0.0,6,111,2,0,33,8.0,0.0,0.0,613.7439728972563,0.0,0.0,21583.379999999997,0,12,2,9167,201711428,,,,463.0,1.0,0.0,2.0,0.0,1.0,1.0,4078.6557772753204,0.0,456.0,0.0,0.0,29172.0,0,1,3,40.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,613.7439728972563,0.028435952705148888,0.02103880340385494,29172.0,8,4,8,8_0,8_3,8_0_0 +11429,1,34.0,3,300.0,1,111,2,85,33,5.0,0.0,0.0,1326.0185606398543,0.0,2227.0180701032778,39010.13296536322,0,20,1,9168,201711429,,,160.0,,1.0,0.0,6.0,4.0,6.0,2.7,1296.2890567401655,1293.8908378369833,450.0,500.0,0.0,49282.0,6,1,3,120.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,3553.0366307431323,0.09107983902279555,0.07209603162905588,18252.59259259259,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +11430,2,76.0,3,0.0,5,300,2,75,75,6.0,3966.1400228472053,0.0,1076.7438121004495,247.7050718860512,0.0,48989.88,60,71,1,9169,201711430,,,450.0,,0.0,2.0,6.0,0.0,2.0,1.5,2429.193502559811,0.0,800.0,0.0,0.0,31642.0,5,5,1,200.0,0,0.0,3,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,5290.588906833706,0.10799350614522235,0.16720146978173647,21094.666666666668,5,3,5,5_1,5_0,5_0_0 +11431,2,67.0,2,0.0,1,221,2,75,31,10.0,0.0,0.0,1235.3878490753295,0.0,2302.1187844886044,51444.23236241278,41,10,1,917,201711431,,,904.0,,1.0,3.0,7.0,0.0,2.0,1.5,1737.3046299262935,2219.0,0.0,0.0,0.0,113325.0,5,1,1,200.0,1,2.0,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3537.506633563934,0.06876391134856505,0.03121558908946776,75550.0,10,5,10,10_1,10_1,10_1_0 +11432,2,65.0,1,0.0,6,111,7,77,74,6.0,0.0,0.0,746.3343780990583,0.0,1160.9014641417912,39558.448871361834,30,30,1,9171,201711432,,,159.0,,0.0,5.0,7.0,0.0,2.0,1.5,1650.8502001979243,414.64001316639025,383.0,413.0,0.0,34337.0,6,5,1,110.0,6,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1907.2358422408495,0.048213109883122454,0.05554462656145993,22891.333333333332,6,3,6,6_1,6_2,6_0_0 +11433,2,68.0,3,0.0,5,111,1,0,77,3.0,0.0,0.0,258.4185149041079,0.0,0.0,14336.051191295746,0,70,2,9173,201711433,,,,422.0,0.0,2.0,2.0,0.0,1.0,1.0,3491.785128487363,0.0,192.0,0.0,0.0,15630.0,0,5,3,52.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,258.4185149041079,0.01802578070180224,0.016533494235707477,15630.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +11434,2,73.0,2,0.0,1,300,5,0,77,4.0,951.8736054833294,1040.94473967258,323.0231436301349,212.31863304518674,0.0,20786.44,0,50,1,9174,201711434,,,140.0,,0.0,0.0,2.0,0.0,1.0,1.0,3073.8351033358135,0.0,240.0,0.0,0.0,16835.0,0,5,1,80.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2528.160121831231,0.12162545014111273,0.15017286140963654,16835.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11435,1,23.0,4,256.0,9,111,1,0,55,1.0,0.0,0.0,242.26735772260116,0.0,0.0,11432.880000000001,0,41,8,9176,201711435,,,,33.0,1.0,0.0,1.0,0.0,1.0,1.0,2968.9064132878516,0.0,180.0,0.0,0.0,8860.0,0,3,3,27.0,7,5.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,242.26735772260116,0.0211904050180358,0.027343945566885006,8860.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11436,2,62.0,3,0.0,5,112,4,78,78,6.0,0.0,0.0,2779.3449649842855,53.079658261296686,0.0,28156.679999999997,50,50,1,9177,201711436,,,320.0,,0.0,3.0,5.0,0.0,2.0,1.5,1806.1826352742,0.0,2065.0,0.0,0.0,34531.0,5,5,1,92.0,8,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2832.424623245582,0.10059512070476996,0.08202556031524086,23020.666666666668,6,3,6,6_1,6_1,6_0_0 +11437,2,45.0,2,0.0,9,111,2,85,47,7.0,0.0,0.0,1405.1506747910867,0.0,2059.4907405383115,48990.5823825915,20,31,1,9179,201711437,,,1128.0,,1.0,0.0,6.0,4.0,6.0,2.9,1662.717032617474,0.0,1044.0,1164.0,0.0,69804.0,6,1,2,178.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3464.641415329398,0.07072055988786402,0.04963385214786256,24070.344827586207,7,4,7,7_1,7_3,7_0_0 +11438,2,69.0,2,0.0,8,300,2,75,75,10.0,0.0,0.0,1512.8250560011315,106.15931652259337,0.0,47616.342382591494,60,33,1,918,201711438,,,380.0,,0.0,3.0,7.0,0.0,2.0,1.5,1917.7441324444676,0.0,1124.0,0.0,0.0,76453.0,5,5,1,140.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1618.984372523725,0.03400060339610681,0.021176204629298066,50968.666666666664,10,5,10,10_1,10_0,10_0_0 +11439,2,45.0,2,0.0,8,111,2,68,62,4.0,0.0,0.0,726.8020731678034,0.0,990.8202875442048,35926.899999999994,42,50,1,9180,201711439,,,400.0,,2.0,0.0,4.0,3.0,5.0,2.6,2000.9292624130924,0.0,540.0,560.0,0.0,44845.0,1,1,3,80.0,9,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1717.6223607120082,0.04780881068814756,0.038301312536782435,17248.076923076922,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +11440,2,51.0,2,0.0,9,111,4,74,38,9.0,0.0,0.0,1800.8540257380018,0.0,0.0,79052.51999999999,30,10,2,9182,201711440,,,,,1.0,0.0,6.0,2.0,4.0,2.5,2414.5459860888673,0.0,1338.0,0.0,0.0,85607.0,5,1,1,132.0,8,6.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1800.8540257380018,0.02278047588790341,0.02103629406167722,34242.8,9,5,9,9_0,9_2,9_0_0 +11441,1,78.0,4,9999.0,1,120,2,0,86,3.0,2589.096206914656,0.0,523.5666786338436,0.0,0.0,10205.24,0,71,1,9183,201711441,,,164.0,,0.0,2.0,6.0,0.0,1.0,1.0,2240.4047920721987,0.0,389.0,0.0,0.0,15163.0,0,6,1,97.0,0,0.0,1,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,3112.6628855484996,0.3050063384642105,0.20528014809394576,15163.0,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +11442,2,39.0,3,0.0,99,111,6,0,38,8.0,0.0,0.0,1251.7146815667727,0.0,0.0,44053.67999999999,0,20,1,9184,201711442,,,164.0,,1.0,0.0,2.0,0.0,1.0,1.0,6574.342174116548,0.0,930.0,0.0,0.0,28666.0,0,1,3,50.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1251.7146815667727,0.028413396600846352,0.04366548111235515,28666.0,8,4,8,8_1,8_3,8_0_0 +11443,2,50.0,1,0.0,4,111,2,0,37,10.0,2657.3138153076275,0.0,1275.9414173390328,0.0,0.0,106229.23999999999,0,10,1,9186,201711443,,,864.0,,1.0,0.0,5.0,2.0,3.0,1.8,681.6840787226389,0.0,948.0,0.0,0.0,153394.0,0,1,2,150.0,10,8.0,2,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3933.2552326466603,0.03702610724360506,0.02564151943783108,85218.88888888889,10,5,10,10_1,10_4,10_0_1 +11444,0,34.0,1,0.0,5,111,1,68,23,4.0,0.0,0.0,572.7608802276776,0.0,882.6302934415892,29597.700315994116,60,60,2,9188,201711444,,,,,2.0,0.0,3.0,2.0,4.0,2.3,3481.8832385137284,424.40263307935527,250.0,250.0,0.0,40930.0,1,1,5,50.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1455.3911736692667,0.04917244103869776,0.035558054572911474,17795.652173913044,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11445,2,56.0,3,0.0,4,111,2,43,63,4.0,0.0,0.0,888.3136449828709,0.0,955.4338487033403,38780.66785420897,50,71,2,919,201711445,,,,,3.0,3.0,3.0,2.0,4.0,2.3,4138.506405249398,0.0,660.0,540.0,0.0,40070.0,1,4,2,70.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1843.7474936862113,0.04754295363394843,0.0460131643046222,17421.739130434784,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +11446,2,25.0,2,0.0,99,111,2,0,46,9.0,0.0,0.0,534.4625214566545,0.0,995.9594561104371,26336.120000000003,0,0,2,9190,201711446,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3912.261484100652,960.0,0.0,0.0,0.0,40440.0,0,1,3,32.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1530.4219775670917,0.05811114080460947,0.037844262551115025,40440.0,9,5,9,9_0,9_4,9_0_0 +11447,2,35.0,1,0.0,1,111,2,0,33,10.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,36298.0,0,20,8,9192,201711447,,,,980.0,1.0,0.0,2.0,0.0,1.0,1.0,6618.43492790183,800.0,0.0,0.0,0.0,47844.0,0,1,3,37.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1275.3516479725763,0.03513559005930289,0.02665645949278021,47844.0,10,5,10,10_0,10_4,10_1_0 +11448,2,48.0,3,0.0,9,112,4,85,67,3.0,0.0,277.585263912688,2880.2896973687025,219.39592081335965,0.0,35060.520000000004,43,50,1,9193,201711448,,,685.0,,2.0,0.0,7.0,3.0,5.0,3.0,2696.100493064476,0.0,2140.0,0.0,0.0,40351.0,6,1,2,120.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3377.27088209475,0.09632689081892538,0.08369732799917598,13450.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11449,1,40.0,5,462.0,10,111,2,56,85,1.0,0.0,0.0,1072.706022805073,0.0,1300.4516274017687,9655.093316908062,60,70,1,9194,201711449,,,596.0,3.0,2.0,0.0,4.0,3.0,5.0,2.8,1623.5609775813173,0.0,797.0,735.0,0.0,20999.0,4,6,3,89.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2373.157650206842,0.24579334163979058,0.11301288871883623,7499.642857142858,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11450,2,54.0,3,0.0,1,112,2,0,31,3.0,1586.456009138882,0.0,1426.6855510330956,70.77287768172891,0.0,53169.82175060327,0,33,1,92,201711450,,,186.0,,1.0,1.0,9.0,2.0,3.0,2.0,1624.9821242257512,0.0,1060.0,0.0,0.0,31980.0,0,1,1,220.0,6,0.0,2,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3083.9144378537067,0.058001218291064076,0.0964325965557757,15990.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11451,2,51.0,1,0.0,7,111,4,43,43,10.0,0.0,0.0,5887.487861923137,0.0,938.7623665380735,120366.82,31,33,1,920,201711451,,,76.0,,2.0,2.0,7.0,0.0,2.0,1.5,1534.7945075204843,904.8680308695413,4000.0,0.0,0.0,179986.0,1,1,1,200.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,6826.25022846121,0.056712059257370176,0.037926562224068594,119990.66666666667,10,5,10,10_1,10_3,10_0_0 +11452,2,19.0,3,0.0,6,111,2,84,84,1.0,0.0,0.0,0.0,0.0,0.0,22344.980000000003,41,41,2,9200,201711452,,,,580.0,0.0,0.0,2.0,0.0,2.0,1.5,2585.3731524227405,0.0,0.0,0.0,0.0,3964.0,3,3,3,58.0,9,7.0,3,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,2642.6666666666665,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +11453,2,50.0,4,0.0,6,112,6,85,65,4.0,0.0,485.77421184720396,1076.7438121004495,53.079658261296686,0.0,32132.920000000002,50,50,1,9202,201711453,,,490.0,,2.0,1.0,4.0,1.0,3.0,2.0,2431.03269049338,0.0,800.0,0.0,0.0,32941.0,7,1,3,87.0,8,1.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1615.5976822089501,0.050278582905286855,0.04904519238058803,16470.5,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11454,2,26.0,2,0.0,3,111,1,0,45,6.0,0.0,0.0,605.6683943065029,0.0,0.0,19587.550537796415,0,20,2,9203,201711454,,,,200.0,1.0,0.0,3.0,0.0,1.0,1.0,3381.207039141681,0.0,450.0,0.0,0.0,22345.0,0,1,3,80.0,9,7.0,1,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,605.6683943065029,0.030921089042644543,0.02710532084611783,22345.0,6,3,6,6_0,6_3,6_0_1 +11455,2,26.0,4,0.0,1,112,4,42,48,8.0,0.0,0.0,80.75578590753372,0.0,0.0,33160.972224800775,42,31,1,9204,201711455,,,140.0,,2.0,0.0,5.0,1.0,3.0,1.8,4258.473981297653,0.0,60.0,0.0,0.0,50680.0,1,1,3,99.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,80.75578590753372,0.0024352659312906768,0.0015934448679466007,28155.555555555555,8,4,8,8_1,8_0,8_1_0 +11456,2,42.0,2,0.0,1,111,2,35,31,8.0,0.0,194.3096847388816,1122.3712950589745,0.0,2091.514857831918,58128.76000000001,20,20,1,9205,201711456,,,526.0,,2.0,0.0,5.0,3.0,5.0,2.4,3368.923467374082,2016.0,0.0,0.0,0.0,81482.0,1,1,2,110.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3408.1958376297744,0.05863183452786149,0.04182759183169012,33950.833333333336,9,5,9,9_1,9_4,9_1_0 +11457,2,23.0,3,0.0,7,111,2,64,55,5.0,0.0,0.0,1063.284514449194,0.0,583.8762408742635,23125.8458467513,43,30,2,9206,201711457,,,,461.0,2.0,0.0,3.0,0.0,2.0,1.5,3574.930304695338,0.0,790.0,330.0,0.0,27202.0,4,1,3,69.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1647.1607553234576,0.07122596795977731,0.0605529282892235,18134.666666666668,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +11458,2,62.0,3,0.0,4,112,2,72,72,2.0,2855.620816449988,0.0,1275.9414173390328,0.0,0.0,26674.359999999997,50,50,1,9207,201711458,,,280.0,,0.0,2.0,5.0,0.0,2.0,1.5,2011.2620503454536,0.0,948.0,0.0,0.0,20770.0,6,5,1,120.0,10,2.0,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,4131.562233789021,0.154888898319923,0.19891970311935583,13846.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +11459,2,87.0,4,0.0,6,111,2,77,86,5.0,0.0,0.0,1336.1563036416364,0.0,2489.898640276093,40082.558839019715,70,71,1,9208,201711459,,,750.0,,0.0,2.0,4.0,1.0,3.0,2.0,2526.0054869831024,2400.0,0.0,0.0,0.0,37880.0,5,5,1,90.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,3826.0549439177294,0.09545435857236557,0.10100461837164017,18940.0,5,3,5,5_1,5_4,5_0_0 +11460,2,56.0,1,0.0,2,111,2,52,62,4.0,0.0,485.77421184720396,722.7642838724267,0.0,2034.7202333497064,48962.28764611572,50,50,1,9210,201711460,,,260.0,,2.0,1.0,6.0,2.0,4.0,2.5,1648.594809287208,0.0,537.0,1150.0,0.0,45341.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3243.2587290693373,0.06623993454943546,0.07153037491606576,18136.4,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +11461,2,35.0,4,0.0,1,120,1,0,68,5.0,0.0,0.0,807.5578590753372,0.0,0.0,29996.04,0,41,2,9211,201711461,,,,540.0,1.0,0.0,4.0,2.0,3.0,1.6,2175.4286796413353,0.0,600.0,0.0,0.0,30350.0,0,1,3,80.0,0,1.0,2,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,807.5578590753372,0.026922149026182694,0.0266081666911149,18968.75,5,3,5,5_0,5_1,5_1_0 +11462,1,25.0,5,353.0,9,112,4,0,85,1.0,0.0,0.0,807.5578590753372,0.0,0.0,5524.053696501075,0,71,2,9212,201711462,,,,217.0,0.0,0.0,3.0,1.0,2.0,1.3,4256.397926190999,0.0,600.0,0.0,0.0,13057.0,0,6,3,73.0,8,3.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,807.5578590753372,0.14618935720824777,0.06184865275908227,10043.846153846154,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +11463,2,55.0,3,0.0,7,112,6,53,65,8.0,0.0,0.0,565.290501352736,0.0,1171.2911256326136,19611.697290442266,71,50,8,9213,201711463,,,214.0,,2.0,6.0,5.0,0.0,2.0,1.5,1741.6393926911471,0.0,420.0,662.0,0.0,45186.0,1,1,3,90.0,10,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1736.5816269853494,0.08854825777020688,0.03843185117039236,30124.0,8,4,8,8_0,8_1,8_0_0 +11464,1,46.0,3,107.0,4,111,1,68,62,4.0,0.0,0.0,343.2120901070183,0.0,442.3304855108057,10935.316658454032,71,71,2,9214,201711464,,,,133.0,2.0,2.0,4.0,0.0,2.0,1.5,2193.9988808868634,0.0,255.0,250.0,0.0,26284.0,1,4,3,70.0,4,4.0,3,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,785.542575617824,0.07183537524818959,0.029886721032484555,17522.666666666668,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +11465,2,47.0,2,0.0,4,112,2,75,33,9.0,0.0,338.65402197347936,1243.6391029760193,0.0,2123.1863304518674,61081.66,31,10,1,9216,201711465,,,664.0,,1.0,2.0,6.0,2.0,4.0,2.3,2167.3345036013807,0.0,924.0,1200.0,0.0,83370.0,5,1,1,180.0,9,2.0,4,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3705.479455401366,0.06066435416786914,0.04444619713807564,36247.82608695653,9,5,9,9_1,9_1,9_0_1 +11466,2,36.0,3,0.0,5,111,1,0,31,7.0,0.0,0.0,90.44648021643776,0.0,1716.2422837819263,46905.8,0,30,2,9217,201711466,999999.0,970.0,,1550.0,1.0,0.0,2.0,0.0,1.0,1.0,6461.586229547169,0.0,67.2,970.0,0.0,34081.0,0,1,3,55.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1806.688763998364,0.03851738514210106,0.053011612452638246,34081.0,9,5,9,9_0,9_4,9_0_0 +11467,2,50.0,3,0.0,5,111,2,63,63,3.0,0.0,0.0,563.9445715876104,0.0,1141.2126526178788,47750.07087530162,50,50,1,9218,201711467,,,578.0,,2.0,0.0,3.0,2.0,4.0,2.5,2088.647882429115,0.0,419.0,645.0,0.0,42220.0,1,1,3,96.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1705.1572242054892,0.035710045931836916,0.040387428332673836,16888.0,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +11468,2,46.0,3,0.0,9,212,5,13,52,3.0,0.0,624.566843803548,1170.9588956592388,247.7050718860512,0.0,29001.56854574959,50,50,1,9219,201711468,,,184.0,,3.0,1.0,5.0,1.0,3.0,2.0,2241.482341410583,0.0,870.0,0.0,0.0,27659.0,1,1,2,128.0,2,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2043.230811348838,0.07045242425855927,0.0738721866787967,13829.5,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11469,2,82.0,1,0.0,4,111,1,0,77,6.0,0.0,0.0,297.45047809274917,0.0,0.0,22309.231191295745,0,60,2,922,201711469,,,,894.0,0.0,2.0,4.0,0.0,1.0,1.0,2996.8389850583744,0.0,221.0,0.0,0.0,24306.0,0,5,3,70.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,297.45047809274917,0.013333067174847495,0.012237738751450225,24306.0,7,4,7,7_0,7_4,7_0_1 +11470,1,44.0,3,425.0,99,111,2,0,52,3.0,0.0,0.0,1144.0403003567276,0.0,1592.3897478389006,25806.8858467513,0,71,2,9220,201711470,,,370.0,,2.0,1.0,4.0,2.0,3.0,1.8,652.1543934351954,0.0,850.0,900.0,0.0,28010.0,0,1,3,90.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,2736.430048195628,0.10603488016513637,0.0976947535949885,15561.111111111111,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11471,2,42.0,1,0.0,1,400,2,0,13,6.0,856.6862449349964,0.0,1076.7438121004495,221.16524275540286,0.0,18755.16,0,31,1,9223,201711471,,,450.0,,1.0,1.0,5.0,1.0,3.0,2.0,1635.4527475324296,0.0,800.0,0.0,0.0,43634.0,0,1,1,110.0,0,0.0,4,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2154.5952997908485,0.11488013430921669,0.04937881697279297,21817.0,6,3,6,6_1,6_0,6_1_0 +11472,2,33.0,2,0.0,9,111,2,46,63,9.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,61557.08000000001,30,50,1,9225,201711472,,,,,2.0,0.0,3.0,0.0,2.0,1.5,4419.620186753658,1200.0,0.0,0.0,0.0,51158.0,1,1,3,80.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1913.0274719588647,0.031077293984036677,0.037394492981720644,34105.333333333336,9,5,9,9_1,9_3,9_0_0 +11473,2,42.0,3,0.0,8,221,4,43,48,7.0,0.0,0.0,3327.138379390389,0.0,0.0,41581.24,50,50,1,9227,201711473,,,717.0,,2.0,0.0,5.0,2.0,4.0,2.3,2830.7365808815116,0.0,2472.0,0.0,0.0,54843.0,1,1,2,85.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3327.138379390389,0.08001537182129223,0.06066660064895044,23844.782608695656,6,3,6,6_1,6_1,6_0_0 +11474,1,23.0,3,350.0,4,221,1,0,85,1.0,0.0,0.0,767.1799661215703,138.0071114793714,0.0,14323.580000000002,0,70,2,9229,201711474,,,500.0,,0.0,0.0,4.0,3.0,4.0,1.9,929.996741845156,0.0,570.0,0.0,0.0,19000.0,0,6,3,92.0,1,2.0,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,905.1870776009416,0.06319558920332358,0.047641425136891666,10000.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +11475,2,49.0,1,0.0,8,221,2,55,54,10.0,0.0,0.0,1184.4181933104944,0.0,2919.381204371318,27195.459999999995,31,31,1,923,201711475,,,600.0,,2.0,2.0,5.0,0.0,2.0,1.5,3005.981908585672,0.0,880.0,1650.0,0.0,68389.0,1,1,1,112.0,1,1.0,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4103.7993976818125,0.15090016486876168,0.060006717420664324,45592.666666666664,10,5,10,10_1,10_1,10_0_0 +11476,2,55.0,3,0.0,1,112,2,34,34,10.0,0.0,41.637789586903196,2934.126887973725,0.0,1574.6965284184685,65523.44,30,20,1,9230,201711476,,,1088.0,,2.0,0.0,5.0,1.0,3.0,1.8,2236.4449088391157,0.0,2180.0,890.0,0.0,131259.0,1,1,2,180.0,10,2.0,4,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4550.461205979096,0.06944783738428716,0.03466780339617928,72921.66666666667,10,5,10,10_1,10_1,10_1_0 +11477,2,84.0,1,0.0,2,111,2,77,86,10.0,0.0,0.0,1391.8294829600377,0.0,2593.6444169542638,64474.399999999994,60,12,1,9231,201711477,,,300.0,,0.0,3.0,5.0,0.0,2.0,1.5,2182.7121120225233,2500.0,0.0,0.0,0.0,68770.0,5,5,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3985.4738999143015,0.06181482727895571,0.0579536702037851,45846.666666666664,10,5,10,10_1,10_4,10_0_1 +11478,2,53.0,1,0.0,1,112,6,52,62,9.0,0.0,0.0,1289.4007149902884,0.0,0.0,18474.801750603256,50,50,1,9233,201711478,,,421.0,,2.0,2.0,4.0,0.0,2.0,1.5,1966.2304284773643,0.0,958.0,0.0,0.0,49299.0,1,1,1,110.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1289.4007149902884,0.06979239790479407,0.026154703239219628,32866.0,9,5,9,9_1,9_0,9_1_0 +11479,2,33.0,3,0.0,5,111,2,54,52,5.0,0.0,0.0,1211.3367886130059,0.0,743.1152156581536,26674.506811689,43,41,2,9234,201711479,,,,480.0,2.0,0.0,2.0,1.0,3.0,1.8,2339.837599576609,0.0,900.0,420.0,0.0,36700.0,1,1,3,53.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1954.4520042711595,0.07327040826167035,0.05325482300466375,20388.888888888887,5,3,5,5_0,5_3,5_0_0 +11480,2,71.0,3,0.0,5,112,2,77,78,4.0,0.0,0.0,884.3869524839646,0.0,1078.3553538978929,20579.746525129634,70,50,1,9236,201711480,,,,,0.0,1.0,4.0,0.0,2.0,1.5,1935.2898710306638,517.5563351347934,443.0,306.0,0.0,25666.0,5,5,1,80.0,9,1.0,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1962.7423063818574,0.09537252093873852,0.07647246576723515,17110.666666666668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11481,2,41.0,5,0.0,4,111,1,85,53,2.0,0.0,0.0,403.7789295376686,0.0,0.0,25189.68,50,71,2,9237,201711481,,,,480.0,1.0,0.0,3.0,2.0,4.0,2.1,2334.097413327771,0.0,300.0,0.0,0.0,27760.0,6,1,3,68.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,403.7789295376686,0.01602953787176608,0.014545350487668177,13219.047619047618,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +11482,2,44.0,4,0.0,4,111,6,0,42,5.0,0.0,0.0,602.9765347762518,0.0,1256.2185788506883,31118.559999999998,0,20,2,9238,201711482,,,266.0,690.0,1.0,0.0,2.0,2.0,3.0,1.8,737.3340319715278,0.0,448.0,710.0,0.0,34144.0,0,1,3,45.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1859.1951136269402,0.05974553814916051,0.0544515907224385,18968.888888888887,5,3,5,5_0,5_3,5_0_1 +11483,2,70.0,1,0.0,2,111,1,75,74,9.0,0.0,0.0,1258.7220723835762,0.0,1342.3570990816663,85953.14711861193,31,12,2,9239,201711483,,,,778.0,0.0,1.0,3.0,0.0,2.0,1.5,2427.1189536538436,1293.8908378369833,400.0,0.0,0.0,59737.0,5,5,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,2601.0791714652423,0.0302615931895531,0.04354217941083821,39824.666666666664,9,5,9,9_0,9_4,9_0_1 +11484,1,22.0,3,143.0,1,111,4,0,55,3.0,0.0,0.0,1278.633276869284,0.0,0.0,37918.200000000004,0,31,2,924,201711484,,,,154.0,1.0,0.0,2.0,0.0,1.0,1.0,2907.9018134573826,0.0,950.0,0.0,0.0,13696.0,0,1,3,29.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1278.633276869284,0.033720832657385735,0.09335815397702131,13696.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +11485,2,65.0,2,0.0,1,112,2,0,34,8.0,0.0,0.0,1467.0634439868625,0.0,0.0,16533.677171918203,0,41,1,9240,201711485,,,244.0,,1.0,0.0,3.0,0.0,1.0,1.0,1576.825032786614,0.0,1090.0,0.0,0.0,25772.0,0,5,1,120.0,9,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1467.0634439868625,0.08873183071934002,0.05692470293290635,25772.0,7,4,7,7_1,7_1,7_1_0 +11486,1,61.0,3,374.0,4,111,2,0,86,2.0,0.0,0.0,388.97370212128743,0.0,746.6538595422401,14481.92,0,70,1,9241,201711486,,,325.0,,0.0,2.0,3.0,1.0,2.0,1.5,1744.0578435410719,0.0,289.0,422.0,0.0,18908.0,0,6,3,80.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1135.6275616635276,0.07841691997079997,0.06006069185865917,12605.333333333334,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +11487,2,66.0,3,0.0,5,111,2,0,77,8.0,2014.7991316063803,0.0,1368.0870103537222,0.0,1420.750753668036,32599.53015833886,0,50,1,9242,201711487,,,157.0,,0.0,2.0,5.0,0.0,1.0,1.0,2373.896794922155,1369.4540627666634,450.0,0.0,0.0,27863.0,0,5,1,120.0,6,4.0,1,2,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4803.6368956281385,0.14735294871724963,0.17240199890995725,27863.0,8,4,8,8_1,8_2,8_0_0 +11488,1,59.0,3,115.0,9,221,4,0,55,4.0,0.0,0.0,807.5578590753372,123.8525359430256,0.0,13789.64,0,71,1,9244,201711488,,,120.0,,1.0,2.0,2.0,0.0,1.0,1.0,2654.75496338239,0.0,600.0,0.0,0.0,16336.0,0,1,1,65.0,1,2.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,931.4103950183628,0.06754421399096444,0.057015817520712705,16336.0,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +11489,2,84.0,1,0.0,1,111,1,86,74,8.0,0.0,0.0,1952.9440891971904,0.0,0.0,95802.52898715012,71,12,2,9245,201711489,,,,,0.0,3.0,4.0,0.0,2.0,1.5,4512.75102397911,0.0,1451.0,0.0,0.0,44350.0,6,5,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,1952.9440891971904,0.0203850995359333,0.044034815990917485,29566.666666666668,8,4,8,8_0,8_3,8_1_0 +11490,2,39.0,3,0.0,1,111,2,0,54,4.0,0.0,0.0,1776.6272899657417,0.0,0.0,17789.079999999998,0,31,2,9249,201711490,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2375.0881252888876,0.0,1320.0,0.0,0.0,18450.0,0,1,3,45.0,8,6.0,1,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,1776.6272899657417,0.09987179156908293,0.09629416205776378,18450.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +11491,2,46.0,1,0.0,1,300,2,52,45,7.0,0.0,0.0,292.0667590322469,0.0,1549.9260212298632,34395.740000000005,50,41,2,9250,201711491,,,,490.0,2.0,0.0,5.0,1.0,3.0,2.0,927.2594674338804,0.0,217.0,876.0,0.0,51588.0,1,1,3,97.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1841.99278026211,0.0535529335976522,0.0357058381845024,25794.0,7,4,7,7_0,7_1,7_1_0 +11492,2,43.0,3,0.0,1,111,2,38,37,10.0,0.0,0.0,1453.6041463356069,0.0,1408.0264014779968,76904.14,31,12,1,9251,201711492,,,500.0,,2.0,0.0,6.0,3.0,5.0,2.4,1677.7672775878991,0.0,1080.0,795.8000000000001,0.0,110876.0,1,1,1,180.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2861.6305478136037,0.03721035756740279,0.02580928738242364,46198.333333333336,10,5,10,10_1,10_3,10_1_0 +11493,2,60.0,1,0.0,6,221,4,0,77,6.0,0.0,0.0,2140.0283265496437,53.079658261296686,0.0,15781.34,0,41,1,9252,201711493,,,312.0,,0.0,2.0,5.0,0.0,1.0,1.0,1846.2217258672813,0.0,1590.0,0.0,0.0,22227.0,0,5,1,107.0,3,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2193.1079848109403,0.13896842630669767,0.0986686455576974,22227.0,6,3,6,6_1,6_2,6_0_0 +11494,0,65.0,3,0.0,5,111,1,0,77,2.0,0.0,0.0,261.110374434359,0.0,0.0,11345.44,0,60,2,9253,201711494,,,,,0.0,1.0,1.0,0.0,1.0,1.0,2653.4072451764664,0.0,194.0,0.0,0.0,12037.0,0,5,5,30.0,8,6.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,261.110374434359,0.023014565714010123,0.021692313237049017,12037.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +11495,2,61.0,4,0.0,5,111,2,0,75,3.0,0.0,0.0,1049.8252167979383,0.0,0.0,24079.52,0,30,1,9256,201711495,,,550.0,470.0,0.0,3.0,3.0,0.0,1.0,1.0,608.7506151139174,0.0,780.0,0.0,0.0,16642.0,0,4,3,65.0,4,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1049.8252167979383,0.04359826179250825,0.06308287566385881,16642.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11496,2,41.0,3,0.0,9,111,4,43,43,5.0,0.0,0.0,1865.4586544640288,0.0,0.0,43581.24431940747,30,31,1,9257,201711496,,,411.0,,3.0,0.0,6.0,2.0,4.0,2.3,2974.008818735273,0.0,1386.0,0.0,0.0,43620.0,1,1,2,135.0,4,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1865.4586544640288,0.042804162285777325,0.042766131464099695,18965.217391304348,5,3,5,5_1,5_1,5_0_0 +11497,2,57.0,2,0.0,1,111,4,37,23,9.0,0.0,0.0,3595.98465792235,0.0,1610.8285188979999,38255.16491738531,44,60,2,9258,201711497,,,,,2.0,2.0,4.0,1.0,3.0,2.0,3197.1182483447556,1552.6690054043802,2029.5,0.0,0.0,62820.0,1,1,3,120.0,8,6.0,4,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,5206.813176820349,0.13610745602756713,0.08288464146482569,31410.0,8,4,8,8_0,8_2,8_1_0 +11498,1,80.0,3,107.0,99,111,1,0,78,2.0,0.0,0.0,523.5666786338436,0.0,339.7098128722988,12540.560000000001,0,71,2,9259,201711498,,,,145.0,0.0,4.0,5.0,0.0,1.0,1.0,3989.046795841355,0.0,389.0,192.0,0.0,10957.0,0,5,3,87.0,6,4.0,1,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,863.2764915061424,0.06883875134014289,0.07878766920746029,10957.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11499,2,49.0,2,0.0,7,112,2,54,55,9.0,2124.2645962369634,0.0,888.3136449828709,212.31863304518674,0.0,49101.64,31,31,1,926,201711499,,,676.0,,3.0,1.0,5.0,1.0,3.0,2.0,1838.361666291857,0.0,660.0,0.0,0.0,75969.0,1,1,1,130.0,9,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3224.896874265021,0.06567798701357064,0.0424501688091856,37984.5,9,5,9,9_1,9_0,9_0_0 +11500,2,45.0,2,0.0,8,300,2,52,69,8.0,0.0,416.377895869032,668.0781518208182,0.0,1244.9493201380465,36299.060000000005,50,50,1,9260,201711500,,,220.0,,2.0,0.0,4.0,1.0,3.0,1.8,1604.3711997508638,1200.0,0.0,0.0,0.0,52200.0,1,1,1,134.0,0,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2329.405367827897,0.06417260854214672,0.044624623904748986,29000.0,8,4,8,8_1,8_1,8_0_0 +11501,1,44.0,4,72.0,99,111,1,0,63,6.0,0.0,0.0,1130.581002705472,0.0,0.0,29179.519999999997,0,31,2,9261,201711501,,,,859.0,2.0,0.0,4.0,3.0,4.0,2.3,1045.9391960715875,0.0,840.0,0.0,0.0,54824.0,0,1,3,82.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1130.581002705472,0.03874570255800891,0.020622008658716474,23836.521739130436,6,3,6,6_0,6_4,6_0_0 +11502,1,37.0,4,300.0,1,111,6,0,56,2.0,0.0,0.0,497.99401309645793,0.0,0.0,8420.380000000001,0,71,2,9262,201711502,,,,100.0,1.0,3.0,1.0,2.0,3.0,1.6,878.489467331875,0.0,370.0,0.0,0.0,17740.0,0,1,3,15.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,497.99401309645793,0.05914151298355393,0.028071815845347122,11087.5,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +11503,2,39.0,3,0.0,9,300,5,43,47,8.0,0.0,274.8094112735611,1292.0925745205395,0.0,0.0,60115.72238259149,42,31,1,9263,201711503,,,996.0,,2.0,0.0,4.0,2.0,4.0,2.3,1991.4014683716443,0.0,960.0,0.0,0.0,58917.0,1,1,2,105.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1566.9019857941007,0.026064761824235342,0.026595074185618763,25616.08695652174,7,4,7,7_1,7_0,7_0_0 +11504,1,26.0,4,196.0,99,111,1,0,56,1.0,0.0,0.0,379.55219376540845,0.0,0.0,9519.2,0,41,2,9264,201711504,,,,222.0,1.0,0.0,1.0,1.0,2.0,1.3,3247.5998036038322,0.0,282.0,0.0,0.0,12042.0,0,4,4,30.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,379.55219376540845,0.03987227852817552,0.03151903286542173,9263.076923076922,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +11505,1,34.0,5,260.0,99,221,1,0,85,2.0,0.0,0.0,1017.5229024349248,0.0,0.0,13568.411191295745,0,71,8,9265,201711505,,,,500.0,0.0,0.0,3.0,1.0,2.0,1.5,4669.334995563114,0.0,756.0,0.0,0.0,17270.0,0,7,3,48.0,1,1.0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1017.5229024349248,0.07499204498516929,0.058918523592062816,11513.333333333334,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +11506,2,53.0,2,0.0,7,111,2,0,43,7.0,0.0,0.0,242.26735772260116,0.0,0.0,44181.26,0,33,1,9266,201711506,,,320.0,,3.0,0.0,4.0,2.0,3.0,2.0,1197.6055141339489,0.0,180.0,0.0,0.0,57414.0,0,1,1,144.0,9,7.0,2,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,242.26735772260116,0.005483486838596299,0.004219656490099996,28707.0,8,4,8,8_1,8_3,8_0_0 +11507,2,59.0,1,0.0,99,111,4,0,78,6.0,0.0,0.0,366.09289611415284,81.38880933398825,0.0,10869.24,0,71,1,9267,201711507,,,,,0.0,2.0,2.0,0.0,1.0,1.0,3990.4444588372194,0.0,272.0,0.0,0.0,23292.0,0,5,3,40.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,447.4817054481411,0.04116954869412591,0.01921181974275035,23292.0,6,3,6,6_1,6_3,6_0_0 +11508,1,52.0,4,316.0,99,111,2,0,63,2.0,0.0,0.0,487.22657497545345,0.0,539.643192323183,15204.25202733072,0,50,2,9268,201711508,,,,,2.0,0.0,4.0,2.0,3.0,2.0,2130.7327876538943,0.0,362.0,305.0,0.0,25654.0,0,4,3,93.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1026.8697672986364,0.06753832845264372,0.04002766692518268,12827.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11509,2,45.0,1,0.0,2,211,2,54,46,6.0,0.0,0.0,1226.142016029387,0.0,1682.625166883105,55376.659999999996,31,31,1,927,201711509,,,330.0,,2.0,0.0,5.0,2.0,4.0,2.3,2584.759049512119,0.0,911.0,951.0,0.0,50306.0,1,1,1,70.0,1,3.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2908.767182912492,0.052526952382330246,0.057821476223760424,21872.17391304348,6,3,6,6_1,6_1,6_0_1 +11510,2,73.0,2,0.0,5,111,4,86,86,9.0,0.0,0.0,3499.417389326461,0.0,0.0,35304.01665845402,70,44,1,9270,201711510,,,350.0,,0.0,3.0,7.0,0.0,2.0,1.5,1390.4794837797997,0.0,2600.0,0.0,0.0,59830.0,5,5,1,140.0,9,7.0,3,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3499.417389326461,0.09912235831920498,0.05848934296049575,39886.666666666664,9,5,9,9_1,9_3,9_0_0 +11511,1,38.0,5,400.0,9,111,2,0,84,3.0,0.0,0.0,1036.3659191466827,0.0,1468.537211895875,27107.64,0,50,1,9271,201711511,,,,100.0,0.0,0.0,4.0,3.0,4.0,2.3,752.4881550880286,0.0,770.0,830.0,0.0,33020.0,0,3,3,83.0,7,5.0,2,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2504.903131042558,0.09240579892025119,0.07586017961970194,14356.521739130436,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +11513,2,66.0,3,0.0,5,111,2,77,75,6.0,0.0,0.0,714.8436224482755,0.0,1332.0957725477097,41214.9423825915,70,50,1,9273,201711513,,,260.0,,0.0,1.0,5.0,0.0,2.0,1.5,2191.2740531866552,1284.0,0.0,0.0,0.0,35220.0,5,5,1,110.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2046.9393949959851,0.04966498256856906,0.05811866538886954,23480.0,6,3,6,6_1,6_3,6_0_0 +11514,2,78.0,2,0.0,3,111,1,0,77,4.0,0.0,0.0,497.99401309645793,0.0,1167.752481748527,15662.22,0,71,2,9274,201711514,,,340.0,314.0,0.0,5.0,3.0,0.0,1.0,1.0,3362.8426284151883,0.0,370.0,660.0,0.0,17152.0,0,5,3,68.0,5,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1665.7464948449851,0.10635443090730339,0.09711674993266005,17152.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +11515,2,33.0,2,0.0,1,300,5,43,47,6.0,0.0,652.3253701948167,1951.598159432065,0.0,0.0,42544.54,33,30,1,9275,201711515,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2520.5222646940892,0.0,1450.0,0.0,0.0,44814.0,1,1,2,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2603.9235296268816,0.06120464646290409,0.05810513521727321,21340.0,6,3,6,6_1,6_0,6_1_0 +11516,2,69.0,3,0.0,9,300,2,75,74,8.0,0.0,0.0,1454.9500761007325,53.079658261296686,0.0,45900.54,50,33,1,9277,201711516,,,416.0,,0.0,3.0,6.0,0.0,2.0,1.5,1783.173333488469,0.0,1081.0,0.0,0.0,41364.0,5,5,1,110.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1508.029734362029,0.03285429178746108,0.03645754120399451,27576.0,8,4,8,8_1,8_0,8_0_0 +11517,2,41.0,1,0.0,1,111,2,0,33,10.0,0.0,0.0,1278.633276869284,0.0,0.0,33602.6,0,10,2,9279,201711517,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3017.5008752471626,0.0,950.0,0.0,0.0,55683.0,0,1,2,69.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1278.633276869284,0.03805161734119634,0.022962722498236155,55683.0,10,5,10,10_0,10_4,10_1_0 +11518,2,49.0,4,0.0,1,112,6,0,85,1.0,761.4988843866635,0.0,1413.22625338184,0.0,0.0,13088.18,0,71,1,928,201711518,,,396.0,,0.0,3.0,6.0,2.0,3.0,2.0,1987.3594056818472,0.0,1050.0,0.0,0.0,10840.0,0,8,1,120.0,8,1.0,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2174.7251377685034,0.16615947654819108,0.20062040016314606,5420.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +11519,2,28.0,3,0.0,9,111,4,43,67,5.0,0.0,0.0,829.0927353173462,0.0,0.0,35064.32222480077,50,50,2,9281,201711519,,,236.0,451.0,2.0,0.0,3.0,1.0,3.0,1.8,2268.80872017824,0.0,616.0,0.0,0.0,35743.0,1,1,3,71.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,829.0927353173462,0.02364490977472635,0.023195947047459534,19857.222222222223,5,3,5,5_0,5_3,5_0_0 +11520,2,58.0,3,0.0,1,111,5,77,67,3.0,0.0,521.8602961558535,1561.278527545652,233.5504963497054,0.0,17003.147849749774,50,70,1,9282,201711520,,,500.0,,1.0,1.0,5.0,0.0,2.0,1.5,2106.8210969109914,0.0,1160.0,0.0,0.0,22540.0,6,8,3,108.0,4,3.0,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2316.689320051211,0.1362506131525113,0.10278124756216553,15026.666666666666,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +11521,2,48.0,2,0.0,5,111,1,54,42,4.0,0.0,0.0,484.5347154452023,0.0,1.769321942043223,58797.535699499545,31,50,2,9283,201711521,1.0,1.0,,,2.0,0.0,5.0,2.0,4.0,2.5,1074.6643322812042,0.0,360.0,1.0,0.0,43921.0,1,1,2,98.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,486.30403738724556,0.00827082345546983,0.011072244197246091,17568.4,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +11522,1,55.0,3,216.0,99,300,5,0,54,2.0,0.0,0.0,1615.1157181506744,141.54575536345783,0.0,29050.520839531287,0,31,1,9284,201711522,,,410.0,,2.0,2.0,5.0,2.0,3.0,2.0,176.0125944427414,0.0,1200.0,0.0,0.0,23865.0,0,4,3,180.0,0,1.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1756.6614735141322,0.06046919031908396,0.07360827460775748,11932.5,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +11523,2,85.0,2,0.0,1,111,2,0,77,7.0,0.0,0.0,255.72665537385677,0.0,1560.5419528821226,14937.640000000001,0,50,1,9286,201711523,,,48.0,,0.0,1.0,4.0,0.0,1.0,1.0,2862.894424873966,0.0,190.0,882.0,0.0,25599.0,0,5,5,95.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1816.2686082559794,0.1215900643110946,0.07095076402421889,25599.0,7,4,7,7_1,7_3,7_1_0 +11524,2,57.0,1,0.0,5,111,2,0,54,9.0,1291.37519143905,0.0,538.3719060502248,0.0,115.00592623280949,43886.525135636286,33,41,1,9288,201711524,,,,,2.0,2.0,6.0,0.0,2.0,1.5,1884.7034230534907,0.0,400.0,65.0,0.0,54901.0,1,1,1,170.0,8,7.0,3,9,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1944.7530237220844,0.044313214995072056,0.03542290711866969,36600.666666666664,9,5,9,9_1,9_3,9_0_0 +11525,2,41.0,3,0.0,7,120,4,55,64,5.0,0.0,693.9631597817199,1211.3367886130059,185.7788039145384,0.0,54591.22,44,50,1,929,201711525,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2573.8121776759117,0.0,900.0,0.0,0.0,38737.0,1,1,2,140.0,0,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2091.078752309264,0.03830430520346063,0.053981432540188036,18446.190476190477,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11526,2,67.0,3,0.0,9,112,5,78,72,2.0,0.0,69.396315978172,2110.417871716881,371.5576078290768,0.0,30236.896722052934,60,44,1,9291,201711526,,,,,0.0,2.0,3.0,0.0,2.0,1.5,1800.042581692408,0.0,1568.0,0.0,0.0,20670.0,5,5,1,100.0,7,4.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2551.37179552413,0.08437941958717332,0.12343356533740349,13780.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11527,0,88.0,2,0.0,4,400,2,0,78,8.0,1746.6880660619092,0.0,567.9823608829871,106.15931652259337,0.0,22352.559999999998,0,70,1,9293,201711527,,,166.0,,0.0,5.0,3.0,0.0,1.0,1.0,3477.336846801491,0.0,422.0,0.0,0.0,28223.0,0,5,5,80.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,2420.8297434674896,0.10830212483346381,0.08577506797532118,28223.0,8,4,8,8_1,8_0,8_0_1 +11528,2,68.0,2,0.0,4,112,2,75,74,10.0,0.0,0.0,4800.842555545827,0.0,1118.4519349548443,60407.86268322746,31,31,1,9294,201711528,,,242.0,,0.0,2.0,9.0,0.0,2.0,1.5,822.772008408788,1078.0698460857745,3121.0,0.0,0.0,62808.0,5,5,1,140.0,10,3.0,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,5919.294490500672,0.09798880853541923,0.0942442760556087,41872.0,10,5,10,10_1,10_1,10_0_1 +11529,2,40.0,3,0.0,9,111,2,46,47,7.0,0.0,0.0,527.6044679292203,0.0,797.9641958614935,65133.88,43,50,1,9295,201711529,,,298.0,,2.0,0.0,4.0,0.0,2.0,1.5,2558.3083490058752,0.0,392.0,451.0,0.0,39191.0,1,1,2,80.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1325.5686637907138,0.020351446340840032,0.033823292689411186,26127.333333333332,7,4,7,7_1,7_4,7_0_0 +11530,2,54.0,4,0.0,99,400,6,85,64,3.0,0.0,0.0,1749.7086946632305,452.94641716306506,0.0,32401.58,71,71,1,9296,201711530,,,,,3.0,0.0,4.0,2.0,4.0,2.5,2548.398113731539,0.0,1300.0,0.0,0.0,40590.0,6,1,3,85.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2202.6551118262955,0.06797986739616696,0.05426595495999743,16236.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11532,2,27.0,5,0.0,99,112,1,53,42,2.0,0.0,0.0,646.0462872602698,0.0,884.6609710216114,27202.260000000002,43,43,2,9299,201711532,250.0,250.0,,250.0,2.0,0.0,3.0,1.0,3.0,1.8,2305.7043540321993,0.0,480.0,500.0,0.0,22600.0,4,1,3,38.0,10,5.0,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1530.7072582818812,0.05627132665748659,0.06773040965849032,12555.555555555555,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +11533,2,48.0,1,0.0,1,112,2,85,38,10.0,579.056443335692,0.0,2770.119336671617,0.0,5162.0580249352815,181343.28645634203,30,0,1,93,201711533,,,,,1.0,0.0,12.0,0.0,2.0,1.5,1872.5278439465997,4975.680157996683,0.0,0.0,0.0,110800.0,6,1,1,300.0,9,3.0,3,4,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,8511.23380494259,0.04693437497059837,0.07681618957529414,73866.66666666667,10,5,10,10_1,10_1,10_1_0 +11534,1,34.0,4,104.0,9,400,2,0,55,4.0,0.0,0.0,68.64241802140366,0.0,1291.6050176915528,20035.607849749773,0,50,1,930,201711534,,,422.0,,1.0,0.0,4.0,2.0,3.0,1.6,355.6863794687933,0.0,51.0,730.0,0.0,25790.0,0,1,3,88.0,0,0.0,2,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1360.2474357129565,0.06789149827215972,0.05274321193148339,16118.75,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +11535,2,40.0,2,0.0,3,111,2,42,38,10.0,0.0,0.0,1142.6943705916021,0.0,2321.3503879607083,40137.1658467513,30,12,1,9301,201711535,,,543.0,,2.0,0.0,4.0,2.0,4.0,2.1,2783.8699479073384,0.0,849.0,1312.0,0.0,84156.0,1,1,2,140.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3464.0447585523107,0.08630516593469667,0.04116218402196291,40074.28571428571,9,5,9,9_1,9_4,9_0_1 +11536,2,74.0,3,0.0,2,111,1,78,78,5.0,0.0,0.0,357.5616679750366,0.0,581.935623815299,12155.685055637268,71,71,2,9302,201711536,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2621.3774130580787,134.56464713504627,210.0,250.0,0.0,29322.0,5,5,3,90.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,939.4972917903356,0.07728871614312172,0.03204069612544627,19548.0,5,3,5,5_0,5_4,5_0_1 +11537,2,67.0,2,0.0,6,112,2,78,75,8.0,0.0,0.0,830.4386650824717,0.0,2084.2612477269167,35376.53999999999,71,60,1,9304,201711537,,,343.0,,0.0,3.0,5.0,0.0,2.0,1.5,2080.8394465863785,0.0,617.0,1178.0,0.0,45642.0,5,5,1,108.0,8,0.0,3,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2914.6999128093885,0.08239075706130077,0.06386003927981658,30428.0,8,4,8,8_1,8_0,8_0_0 +11538,1,67.0,4,110.0,6,111,2,0,77,2.0,0.0,0.0,330.69868515130497,0.0,616.249913468333,9095.38,0,50,2,9306,201711538,,,120.0,232.0,0.0,3.0,2.0,0.0,1.0,1.0,2180.548680766751,594.0,0.0,0.0,0.0,11560.0,0,5,3,50.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,946.948598619638,0.10411314300443061,0.081915968738723,11560.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11539,1,36.0,3,378.0,99,111,1,52,68,1.0,0.0,0.0,605.6683943065029,0.0,0.0,24300.04,71,31,2,9307,201711539,,,,93.0,2.0,0.0,5.0,3.0,6.0,2.9,4529.162180750464,0.0,450.0,0.0,0.0,28248.0,1,1,3,90.0,9,7.0,5,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,605.6683943065029,0.024924584251980776,0.02144110713347858,9740.689655172415,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11540,2,47.0,3,0.0,8,112,2,54,48,6.0,0.0,0.0,1044.441497737436,0.0,1988.7178628565825,52597.179999999986,43,43,1,9308,201711540,,,480.0,,2.0,0.0,5.0,2.0,4.0,2.3,2044.0097998572692,0.0,776.0,1124.0,0.0,55702.0,1,1,2,80.0,7,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3033.159360594019,0.057667718318625064,0.054453329514093186,24218.26086956522,7,4,7,7_1,7_0,7_0_0 +11541,2,43.0,2,0.0,1,111,2,85,53,7.0,0.0,0.0,156.1278527545652,0.0,79.61948739194503,62165.880000000005,31,20,1,9309,201711541,,,,,1.0,0.0,8.0,5.0,7.0,3.4,1841.338381287364,0.0,116.0,45.0,0.0,85573.0,6,1,2,210.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,235.74734014651023,0.0037922304026985574,0.002754926672507803,25168.529411764706,7,4,7,7_1,7_3,7_1_0 +11542,1,22.0,4,326.0,99,120,4,0,85,2.0,0.0,0.0,40.37789295376686,38.925082724950904,0.0,4575.911191295744,0,50,2,9310,201711542,,,,176.0,0.0,0.0,3.0,1.0,2.0,1.3,2713.972414509324,0.0,30.0,0.0,0.0,14498.0,0,6,3,65.0,0,3.0,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,79.30297567871776,0.017330532076227166,0.005469925208905902,11152.307692307691,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +11543,1,20.0,1,347.0,7,300,4,55,62,4.0,0.0,0.0,2648.789777767106,0.0,0.0,52280.5279672144,43,50,1,9311,201711543,,,,303.0,2.0,0.0,3.0,1.0,3.0,1.8,1945.07683801725,0.0,1968.0,0.0,0.0,33869.0,1,4,3,90.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,2648.789777767106,0.05066493933320999,0.07820690831636913,18816.11111111111,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +11544,2,74.0,3,0.0,99,300,2,78,78,6.0,872.5508050263852,0.0,893.6973640433731,0.0,0.0,31729.04,70,71,1,9313,201711544,,,300.0,,0.0,6.0,5.0,0.0,2.0,1.5,1733.4793108603183,0.0,664.0,0.0,0.0,31155.0,5,5,1,120.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1766.2481690697582,0.05566661232327729,0.05669228595954929,20770.0,5,3,5,5_1,5_0,5_0_0 +11545,2,31.0,2,0.0,5,111,2,0,63,7.0,0.0,416.377895869032,1076.7438121004495,0.0,0.0,35495.25883901972,0,43,1,9314,201711545,,,200.0,,1.0,0.0,4.0,0.0,1.0,1.0,2215.737413336734,0.0,800.0,0.0,0.0,25856.0,0,1,2,95.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1493.1217079694816,0.04206538441489267,0.05774759080946324,25856.0,7,4,7,7_1,7_3,7_0_0 +11546,2,64.0,2,0.0,1,111,4,0,77,4.0,0.0,0.0,740.261370819059,0.0,0.0,37742.78417758094,0,50,2,9315,201711546,,,200.0,,0.0,0.0,2.0,0.0,1.0,1.0,3965.9451671745846,0.0,550.0,0.0,0.0,18193.0,0,5,1,50.0,8,7.0,1,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,740.261370819059,0.01961332177658402,0.04068935144391024,18193.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +11547,1,35.0,4,420.0,99,221,1,84,56,1.0,0.0,0.0,0.0,0.0,0.0,10436.08,71,50,2,9316,201711547,,,,210.0,1.0,0.0,4.0,2.0,4.0,2.1,1302.2208081836823,0.0,0.0,0.0,0.0,19600.0,3,4,3,102.0,1,3.0,4,4,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,9333.333333333332,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +11548,1,50.0,3,103.0,5,111,2,0,56,1.0,0.0,0.0,672.964882562781,0.0,819.1960591660122,19779.82,0,70,2,9318,201711548,,,300.0,306.0,1.0,0.0,4.0,2.0,3.0,2.0,769.1610281306146,0.0,500.0,463.0,0.0,21004.0,0,1,3,63.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1492.1609417287932,0.07543855008431792,0.07104175117733733,10502.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11549,1,32.0,5,437.0,1,111,4,0,85,1.0,0.0,0.0,1076.7438121004495,0.0,0.0,10181.839999999998,0,71,2,932,201711549,,,,143.0,0.0,0.0,3.0,2.0,3.0,1.6,1827.3717758086252,0.0,800.0,0.0,0.0,15468.0,0,4,3,38.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1076.7438121004495,0.1057513977925846,0.0696110558637477,9667.5,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +11551,2,83.0,3,0.0,5,111,4,0,77,7.0,0.0,0.0,0.0,0.0,0.0,17656.37772277193,0,70,2,9324,201711551,,,,,0.0,3.0,3.0,0.0,1.0,1.0,2558.3798684285484,0.0,0.0,0.0,0.0,25760.0,0,5,3,80.0,8,7.0,1,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,25760.0,7,4,7,7_0,7_3,7_0_0 +11552,1,45.0,3,436.0,99,111,1,0,46,3.0,0.0,0.0,633.9329193741397,0.0,776.7323325569748,18599.82,0,30,2,9325,201711552,,,715.0,,1.0,0.0,3.0,2.0,3.0,1.6,604.4656006087733,0.0,471.0,439.0,0.0,24632.0,0,4,3,76.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1410.6652519311147,0.07584295180980863,0.05726961886696633,15395.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11553,2,41.0,2,0.0,6,111,5,62,47,10.0,1054.9932460773566,832.755791738064,1192.4937719012478,0.0,0.0,45468.86,43,31,1,9326,201711553,,,,,2.0,0.0,4.0,2.0,4.0,2.3,2265.6779576467784,0.0,886.0,0.0,0.0,95037.0,1,1,2,116.0,8,6.0,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3080.2428097166685,0.06774400787080803,0.03241098529748065,41320.434782608696,10,5,10,10_1,10_2,10_0_0 +11554,2,73.0,3,0.0,2,111,4,0,78,4.0,0.0,0.0,1722.7900993607193,185.7788039145384,0.0,13390.000315994115,0,70,1,9327,201711554,,,300.0,,0.0,2.0,2.0,0.0,1.0,1.0,2453.433597516042,0.0,1280.0,0.0,0.0,18680.0,0,5,2,50.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1908.5689032752578,0.14253688261646316,0.10217178283058125,18680.0,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +11555,2,58.0,2,0.0,1,300,2,0,13,10.0,0.0,1665.511583476128,1843.9237782220198,138.0071114793714,0.0,38208.4,0,31,1,9328,201711555,,,,,1.0,3.0,19.0,0.0,1.0,1.0,2145.1474930192753,0.0,1370.0,0.0,0.0,78204.0,0,1,1,600.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3647.4424731775193,0.09546179565691103,0.04664010118635261,78204.0,10,5,10,10_1,10_0,10_1_0 +11556,2,53.0,2,0.0,9,111,2,0,37,10.0,0.0,0.0,1061.9385846840685,0.0,0.0,31184.511191295744,0,20,2,9329,201711556,,,,841.0,1.0,2.0,2.0,0.0,1.0,1.0,3657.320500541595,0.0,789.0,0.0,0.0,60642.0,0,1,3,48.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1061.9385846840685,0.034053398437762845,0.017511602267142715,60642.0,10,5,10,10_0,10_4,10_0_0 +11557,2,64.0,3,0.0,5,111,2,0,77,3.0,0.0,485.77421184720396,1718.7523100653425,0.0,0.0,17335.3,0,60,1,933,201711557,,,620.0,,0.0,2.0,4.0,0.0,1.0,1.0,1909.350063886174,0.0,1277.0,0.0,0.0,15755.0,0,5,1,80.0,6,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2204.5265219125463,0.1271697935376109,0.13992551710012988,15755.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +11558,2,64.0,2,0.0,5,111,2,54,72,7.0,0.0,0.0,1597.618631204042,0.0,1194.2923108791754,32215.8,50,50,1,9330,201711558,,,459.0,,1.0,2.0,6.0,0.0,2.0,1.5,1481.9143669986063,0.0,1187.0,675.0,0.0,35700.0,4,5,1,134.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2791.9109420832174,0.08666278478520531,0.07820478829364755,23800.0,6,3,6,6_1,6_2,6_0_0 +11559,2,71.0,2,0.0,4,112,2,0,78,7.0,1332.6230476766611,0.0,753.7206684703146,106.15931652259337,0.0,19225.28,0,70,1,9331,201711559,,,119.0,,0.0,1.0,4.0,0.0,1.0,1.0,2353.364872224264,0.0,560.0,0.0,0.0,25012.0,0,5,1,100.0,7,1.0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2192.5030326695687,0.11404271004997424,0.08765804544496916,25012.0,7,4,7,7_1,7_1,7_0_1 +11560,2,67.0,2,0.0,5,112,4,56,74,8.0,0.0,0.0,2277.3131625924507,99.08202875442048,0.0,48382.44,50,44,1,9332,201711560,,,,,1.0,1.0,5.0,0.0,2.0,1.5,1672.546146990741,0.0,1692.0,0.0,0.0,42170.0,5,5,1,79.0,8,2.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2376.3951913468713,0.049116894297742554,0.05635274345143162,28113.333333333332,8,4,8,8_1,8_1,8_0_0 +11561,1,43.0,3,112.0,8,111,6,0,64,2.0,0.0,0.0,768.2898745939409,0.0,1431.6917181587535,18175.54238259149,0,44,1,9334,201711561,,,125.0,,1.0,0.0,3.0,2.0,3.0,1.8,660.9056567981881,1380.0,0.0,0.0,0.0,23897.0,0,1,3,87.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2199.9815927526943,0.12104076711679501,0.09206099480071533,13276.111111111111,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +11562,2,76.0,2,0.0,3,400,2,0,77,4.0,637.7553156738306,0.0,375.51440447003176,159.23897478389006,0.0,19013.08,0,70,1,9337,201711562,,,240.0,,0.0,2.0,4.0,0.0,1.0,1.0,3034.1981914893718,0.0,279.0,0.0,0.0,15869.0,0,5,1,80.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1172.5086949277525,0.06166853002920896,0.07388674112595327,15869.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +11563,1,36.0,4,22.0,9,111,4,0,55,2.0,0.0,0.0,0.0,0.0,0.0,47674.98,0,60,2,9339,201711563,,,450.0,,1.0,0.0,4.0,2.0,3.0,1.8,1998.7826498850186,0.0,0.0,0.0,0.0,23505.0,0,1,3,95.0,9,7.0,2,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0.0,0.0,0.0,13058.333333333332,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11564,2,19.0,3,0.0,1,111,6,0,53,5.0,0.0,0.0,0.0,0.0,0.0,10841.82,0,41,2,934,201711564,,,,505.0,1.0,0.0,1.0,0.0,1.0,1.0,5308.785297126503,0.0,0.0,0.0,0.0,18018.0,0,3,3,17.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0.0,0.0,0.0,18018.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +11565,2,78.0,1,0.0,4,111,1,0,75,9.0,0.0,0.0,497.99401309645793,0.0,1415.4575536345783,24687.43119129575,0,41,2,9340,201711565,800.0,800.0,130.0,,0.0,2.0,5.0,0.0,1.0,1.0,2341.547887027368,0.0,370.0,800.0,0.0,39437.0,0,5,1,99.0,8,7.0,1,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1913.451566731036,0.07750711493246318,0.04851919686413866,39437.0,9,5,9,9_0,9_3,9_0_1 +11566,2,55.0,3,0.0,4,111,2,0,63,2.0,0.0,0.0,61.24049725024166,0.0,114.1203543459876,22446.68,50,50,1,9341,201711566,,,135.0,,1.0,2.0,5.0,0.0,2.0,1.5,3092.232907649969,110.0,0.0,0.0,0.0,19300.0,8,1,3,100.0,6,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,175.36085159622925,0.007812329110417632,0.009086054486851257,12866.666666666666,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11567,2,29.0,4,0.0,99,111,2,56,67,3.0,0.0,0.0,423.1161628198515,0.0,788.467902754096,24477.6,50,43,2,9343,201711567,,,250.0,448.0,2.0,0.0,2.0,0.0,2.0,1.5,3149.5806965001498,760.0,0.0,0.0,0.0,23711.0,3,1,3,47.0,7,5.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1211.5840655739476,0.049497665848528764,0.05109797417122633,15807.333333333334,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +11568,1,48.0,3,27.0,1,111,4,0,45,5.0,0.0,0.0,1009.4473238441715,0.0,176.9321942043223,24497.67087530163,0,43,1,9344,201711568,,,,,1.0,0.0,3.0,1.0,2.0,1.5,2219.488016346596,0.0,750.0,100.0,0.0,28706.0,0,1,3,70.0,7,5.0,2,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1186.3795180484938,0.04842825769386072,0.04132862530650365,19137.333333333332,5,3,5,5_1,5_2,5_1_0 +11569,2,59.0,3,0.0,9,111,4,48,63,9.0,0.0,249.82673752141918,2125.223099133262,0.0,0.0,37970.36,71,71,1,9345,201711569,,,612.0,,2.0,2.0,5.0,0.0,2.0,1.5,1634.0015672880318,0.0,1579.0,0.0,0.0,57541.0,1,1,2,99.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2375.0498366546813,0.06255010056935677,0.04127578312255055,38360.666666666664,9,5,9,9_1,9_4,9_0_0 +11570,2,68.0,3,0.0,5,300,4,78,78,5.0,0.0,0.0,2962.391413041362,0.0,0.0,20084.199999999997,71,71,1,9346,201711570,,,420.0,,0.0,4.0,4.0,0.0,2.0,1.5,1645.087365058816,0.0,2201.0,0.0,0.0,28840.0,5,5,1,135.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2962.391413041362,0.14749860153958647,0.10271814885719008,19226.666666666668,5,3,5,5_1,5_1,5_0_0 +11571,2,76.0,2,0.0,4,111,4,75,74,10.0,0.0,0.0,2691.859530251124,0.0,0.0,35344.4879672144,30,12,1,9347,201711571,,,800.0,,0.0,3.0,5.0,0.0,2.0,1.5,1812.6026097405606,0.0,2000.0,0.0,0.0,90148.0,5,5,1,190.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,2691.859530251124,0.07616065998036517,0.0298604464907832,60098.666666666664,10,5,10,10_1,10_4,10_0_1 +11572,2,37.0,5,0.0,1,120,2,65,62,7.0,3299.828499008875,0.0,942.1508355878933,127.39117982711205,0.0,42123.28,50,31,1,935,201711572,,,500.0,,2.0,0.0,4.0,1.0,3.0,1.8,1968.9231423506885,0.0,700.0,0.0,0.0,46259.0,4,1,2,100.0,0,2.0,4,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4369.37051442388,0.103728164436005,0.09445449565325408,25699.444444444445,7,4,7,7_1,7_1,7_1_0 +11573,1,46.0,4,389.0,99,111,1,0,56,4.0,0.0,0.0,142.52333905510787,0.0,265.58918829611656,28303.440000000006,0,71,2,9350,201711573,,,480.0,,1.0,2.0,4.0,2.0,3.0,1.8,1107.0958160635048,256.0,0.0,0.0,0.0,30746.0,0,1,3,65.0,4,4.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,408.11252735122446,0.014419184641556799,0.013273678766383414,17081.11111111111,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +11574,2,40.0,2,0.0,9,112,4,55,38,10.0,0.0,249.82673752141918,2153.487624200899,0.0,0.0,48835.06,31,12,1,9354,201711574,,,350.0,,2.0,0.0,5.0,2.0,4.0,2.1,1916.867137448955,0.0,1600.0,0.0,0.0,102034.0,1,1,2,145.0,8,2.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2403.314361722318,0.04921288848057765,0.02355405415569632,48587.619047619046,10,5,10,10_1,10_1,10_0_0 +11575,2,52.0,3,0.0,1,111,2,85,64,1.0,0.0,0.0,1179.0344742499922,0.0,1769.3219420432229,34434.37034175383,50,71,1,9355,201711575,,,,,2.0,0.0,5.0,3.0,5.0,3.0,1212.927221284683,0.0,876.0,1000.0,0.0,26300.0,6,1,1,111.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2948.3564162932153,0.0856224866908093,0.11210480670316408,8766.666666666666,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +11576,2,34.0,3,0.0,1,120,4,52,54,8.0,0.0,0.0,3979.914315476287,123.8525359430256,0.0,34732.72,50,31,1,9358,201711576,,,480.0,,2.0,0.0,5.0,2.0,4.0,2.1,2529.1812962568197,0.0,2957.0,0.0,0.0,55882.0,1,1,2,120.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4103.766851419313,0.11815276348697461,0.07343629167566144,26610.47619047619,7,4,7,7_1,7_0,7_1_0 +11577,0,28.0,3,0.0,6,111,1,55,63,4.0,0.0,0.0,672.964882562781,0.0,707.7287768172891,30633.35831897886,50,50,2,9359,201711577,,,,,2.0,0.0,4.0,0.0,2.0,1.5,5954.453844964025,0.0,500.0,400.0,0.0,25508.0,4,1,5,75.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1380.6936593800701,0.045071573446280065,0.0541278680955022,17005.333333333332,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11578,2,46.0,1,0.0,1,400,2,54,48,10.0,0.0,0.0,834.4764543778484,0.0,1592.3897478389006,44152.940315994114,31,31,1,936,201711578,,,210.0,,2.0,1.0,6.0,0.0,2.0,1.5,1618.1479825345466,0.0,620.0,900.0,0.0,88911.0,1,1,2,147.0,0,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2426.866202216749,0.05496499632523075,0.027295455030499592,59274.0,10,5,10,10_1,10_1,10_1_0 +11579,1,33.0,3,118.0,9,112,4,0,54,5.0,0.0,0.0,1514.1709857662572,0.0,0.0,18423.44,0,30,1,9360,201711579,,,275.0,,1.0,0.0,4.0,1.0,2.0,1.3,691.3348578081109,0.0,1125.0,0.0,0.0,24292.0,0,1,2,80.0,8,0.0,2,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1514.1709857662572,0.0821872020516395,0.06233208405097387,18686.153846153844,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +11580,2,83.0,3,0.0,3,111,2,77,75,6.0,1040.7151419951067,0.0,674.4219091243768,226.47320858153253,536.9428396326666,37009.22684744478,50,44,1,9363,201711580,,,76.0,,0.0,2.0,4.0,0.0,2.0,1.5,1615.5589337643094,517.5563351347934,287.0,0.0,0.0,34507.0,5,5,1,90.0,9,7.0,3,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,2478.553099333683,0.06697122070532552,0.07182754511645993,23004.666666666668,6,3,6,6_1,6_3,6_0_1 +11581,1,45.0,3,273.0,99,112,1,0,54,3.0,0.0,0.0,1938.1388617808093,0.0,0.0,12906.580315994117,0,50,2,9364,201711581,999999.0,1400.0,40.0,417.0,1.0,2.0,2.0,0.0,1.0,1.0,3827.65026021002,0.0,1440.0,0.0,0.0,15013.0,0,4,3,37.0,9,2.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1938.1388617808093,0.1501667222710438,0.12909737306206684,15013.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +11582,1,42.0,3,397.0,4,111,2,0,52,3.0,0.0,0.0,1453.6041463356069,0.0,0.0,16437.98,0,31,2,9365,201711582,,,,135.0,1.0,0.0,4.0,2.0,3.0,1.6,1292.7369503987836,0.0,1080.0,0.0,0.0,22524.0,0,1,3,90.0,9,7.0,2,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1453.6041463356069,0.08842960913297175,0.0645357905494409,14077.5,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +11583,2,65.0,3,0.0,1,221,4,0,75,2.0,0.0,0.0,1637.9965241578088,56.61830214538313,0.0,23208.281152029092,0,60,1,9367,201711583,,,106.0,,0.0,0.0,4.0,0.0,1.0,1.0,4019.9829363016406,0.0,1217.0,0.0,0.0,13366.0,0,5,1,70.0,1,2.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,1694.6148263031919,0.07301767912937543,0.12678548752829508,13366.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +11584,2,40.0,4,0.0,9,112,5,56,65,5.0,0.0,0.0,1255.7524708621493,141.54575536345783,0.0,51440.020000000004,60,50,1,9368,201711584,,,160.0,,2.0,1.0,7.0,2.0,4.0,2.1,2198.596779264341,0.0,933.0,0.0,0.0,40826.0,1,1,2,130.0,6,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1397.298226225607,0.0271636408039034,0.03422569505279986,19440.95238095238,5,3,5,5_1,5_1,5_0_0 +11585,2,46.0,5,0.0,9,112,5,0,13,3.0,0.0,185.98212682150094,644.7003574951442,47.77169243516702,0.0,8958.791711336602,0,31,1,9369,201711585,,,232.0,,1.0,0.0,3.0,0.0,1.0,1.0,4500.536940731755,0.0,479.0,0.0,0.0,15130.0,0,1,2,90.0,8,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,878.4541767518122,0.09805498387022457,0.05806042146409862,15130.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11586,2,44.0,3,0.0,9,111,4,42,52,4.0,0.0,0.0,1973.1330356740739,0.0,0.0,25271.14,20,42,1,9373,201711586,,,250.0,,2.0,0.0,4.0,2.0,4.0,2.1,1390.5395551396211,0.0,1466.0,0.0,0.0,37498.0,1,1,2,122.0,5,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1973.1330356740739,0.07807851310522888,0.05261968733463315,17856.190476190477,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11587,2,80.0,2,0.0,9,300,2,0,74,9.0,2124.2645962369634,0.0,834.4764543778484,0.0,0.0,48292.12,0,10,1,9374,201711587,,,126.0,,0.0,2.0,6.0,0.0,1.0,1.0,2677.55405374372,0.0,620.0,0.0,0.0,38455.0,0,5,3,124.0,0,0.0,1,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2958.7410506148117,0.061267574308496116,0.07694034717500485,38455.0,9,5,9,9_1,9_0,9_0_0 +11588,2,71.0,3,0.0,1,112,1,77,75,6.0,0.0,0.0,566.6364311178615,0.0,1705.6263521296669,42195.619999999995,70,71,1,9375,201711588,,,,,0.0,2.0,3.0,0.0,2.0,1.5,995.8111121808032,0.0,421.0,964.0,0.0,33181.0,5,5,1,87.0,10,1.0,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2272.262783247528,0.05385067889149463,0.06848084094052403,22120.666666666668,6,3,6,6_1,6_1,6_1_0 +11589,2,24.0,3,0.0,9,300,2,13,43,7.0,0.0,0.0,1220.7582969688847,0.0,0.0,37663.92,50,30,1,9377,201711589,,,,,2.0,0.0,4.0,0.0,2.0,1.5,3361.9153991296375,0.0,907.0,0.0,0.0,36782.0,1,1,2,100.0,0,0.0,3,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1220.7582969688847,0.0324118757943646,0.03318901356557242,24521.333333333332,7,4,7,7_1,7_0,7_0_0 +11590,1,39.0,3,360.0,1,111,1,63,85,1.0,0.0,0.0,597.5928157157495,0.0,1210.2162083575645,22221.0,71,71,2,9378,201711590,564.0,564.0,,,1.0,0.0,4.0,4.0,6.0,2.9,2437.537695502358,0.0,444.0,684.0,0.0,27200.0,4,6,3,100.0,8,6.0,4,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1807.809024073314,0.08135588065673525,0.0664635670615189,9379.310344827587,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +11591,2,24.0,2,0.0,99,111,2,0,68,5.0,0.0,0.0,1615.1157181506744,0.0,0.0,18046.4,0,41,1,938,201711591,,,,,1.0,0.0,7.0,0.0,1.0,1.0,3194.3901243384507,0.0,1200.0,0.0,0.0,18985.0,0,1,3,115.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1615.1157181506744,0.08949794519409268,0.08507325352387013,18985.0,5,3,5,5_1,5_3,5_0_0 +11592,2,38.0,3,0.0,2,111,5,62,33,5.0,0.0,277.585263912688,1512.8250560011315,0.0,0.0,48577.76,42,20,1,9380,201711592,,,366.0,,2.0,0.0,4.0,2.0,4.0,2.1,1691.8066356919935,0.0,1124.0,0.0,0.0,43219.0,1,1,2,90.0,8,7.0,4,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,1790.4103199138194,0.036856584575201065,0.04142646335902773,20580.47619047619,5,3,5,5_1,5_3,5_0_1 +11593,1,50.0,3,38.0,1,112,2,0,42,3.0,0.0,0.0,761.6090930757326,0.0,1419.2422249573729,41152.08,0,31,2,9381,201711593,,,,322.0,1.0,0.0,5.0,2.0,3.0,1.8,566.3332218221743,1368.0,0.0,0.0,0.0,27100.0,0,1,3,120.0,10,4.0,2,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,2180.8513180331056,0.05299492317358213,0.08047421837760538,15055.555555555555,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +11594,1,58.0,4,277.0,99,111,2,78,68,2.0,0.0,0.0,1615.1157181506744,509.5647193084482,0.0,25563.2,71,71,1,9382,201711594,,,400.0,,1.0,2.0,6.0,2.0,5.0,2.8,1346.0112014484246,0.0,1200.0,0.0,0.0,36158.0,6,1,3,80.0,7,5.0,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2124.6804374591225,0.08311480712348698,0.05876100551632066,12913.57142857143,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +11595,2,72.0,4,0.0,4,400,2,0,71,4.0,858.2727009441353,0.0,383.58998306078513,53.079658261296686,0.0,16192.539999999999,0,70,1,9383,201711595,,,125.0,,0.0,2.0,4.0,0.0,1.0,1.0,1816.640370748945,0.0,285.0,0.0,0.0,16479.0,0,5,1,90.0,0,0.0,1,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1294.942342266217,0.07997153888557429,0.0785813667252999,16479.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +11596,1,51.0,3,309.0,99,111,1,0,85,3.0,0.0,0.0,258.4185149041079,0.0,0.0,5887.379999999999,0,50,2,9386,201711596,,,,26.0,0.0,1.0,2.0,0.0,1.0,1.0,4744.664734568842,0.0,192.0,0.0,0.0,14688.0,0,7,3,42.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,258.4185149041079,0.043893636032345106,0.017593853138896234,14688.0,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +11597,2,45.0,3,0.0,9,111,2,46,64,6.0,0.0,0.0,45.65200704108924,0.0,85.07153687609983,43718.052593233144,31,43,2,9387,201711597,,,,,2.0,0.0,3.0,2.0,4.0,2.3,1751.9650706783807,82.0,0.0,0.0,0.0,53540.0,1,1,1,73.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,130.72354391718906,0.002990150204847482,0.002441605228188066,23278.26086956522,6,3,6,6_0,6_4,6_0_0 +11598,1,50.0,5,73.0,8,112,2,0,52,2.0,1959.2731712865195,0.0,783.3311233030771,138.0071114793714,0.0,24898.399999999998,0,42,1,9388,201711598,,,680.0,,1.0,0.0,5.0,2.0,3.0,2.0,759.4102938609876,0.0,582.0,0.0,0.0,21818.0,0,1,2,118.0,8,1.0,2,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2880.611406068968,0.11569463925669794,0.13202912302085287,10909.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +11599,2,45.0,2,0.0,99,112,2,43,43,7.0,0.0,111.0341055650752,1712.0226612397148,0.0,0.0,38402.259999999995,33,33,1,939,201711599,,,400.0,,2.0,0.0,5.0,3.0,5.0,2.8,2897.791990089257,0.0,1272.0,0.0,0.0,71280.0,1,1,2,100.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1823.05676680479,0.04747264267271745,0.025575992800291665,25457.14285714286,7,4,7,7_1,7_0,7_0_0 +11600,2,64.0,2,0.0,4,112,4,74,74,4.0,0.0,0.0,2835.8436835341395,0.0,619.4469629922338,60200.459546679245,10,41,1,9391,201711600,,,580.0,,0.0,8.0,5.0,0.0,2.0,1.5,2485.8517518089266,597.081618959602,1860.0,0.0,0.0,26641.0,5,5,1,140.0,9,0.0,3,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,3455.290646526373,0.05739641644840189,0.12969823379476644,17760.666666666668,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +11601,0,30.0,3,0.0,1,112,2,0,56,3.0,1151.7670626348286,0.0,888.3136449828709,53.079658261296686,0.0,16026.935699403008,0,44,1,9392,201711601,,,384.0,,1.0,0.0,3.0,0.0,1.0,1.0,2166.1541019428423,0.0,660.0,0.0,0.0,14104.0,0,1,5,80.0,9,0.0,1,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2093.160365878996,0.1306026557501547,0.14840898793810237,14104.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11602,2,79.0,4,0.0,99,111,1,0,77,3.0,0.0,0.0,383.6034423584364,0.0,277.783544900786,16316.690000000002,0,50,2,9393,201711602,,,,440.0,0.0,3.0,3.0,0.0,1.0,1.0,3024.1492230334493,0.0,285.01,157.0,0.0,13972.0,0,5,3,79.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,661.3869872592225,0.040534384563243056,0.04733660086309923,13972.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +11603,2,48.0,3,0.0,4,111,2,63,33,8.0,0.0,571.8256436601373,574.7120097086149,0.0,635.186577193517,38591.696322376294,71,31,1,9395,201711603,,,,,2.0,1.0,5.0,1.0,3.0,2.0,722.8208804224421,0.0,427.0,359.0,0.0,60782.0,1,1,2,100.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1781.7242305622692,0.04616859066464998,0.029313353140111697,30391.0,8,4,8,8_1,8_3,8_0_1 +11604,2,69.0,2,0.0,5,112,4,86,77,6.0,0.0,0.0,1480.522741638118,95.54338487033404,0.0,32553.78,71,60,1,9399,201711604,,,,,0.0,3.0,6.0,0.0,2.0,1.5,1884.4697490507501,0.0,1100.0,0.0,0.0,32752.0,5,5,1,135.0,8,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1576.066126508452,0.0484142279793146,0.04812121783428346,21834.666666666668,6,3,6,6_1,6_0,6_0_0 +11605,2,60.0,4,0.0,2,400,5,65,62,6.0,0.0,111.0341055650752,1157.4995980079832,265.39829130648343,0.0,26932.88,42,50,1,94,201711605,,,300.0,,2.0,3.0,4.0,0.0,2.0,1.5,1883.665899802291,0.0,860.0,0.0,0.0,35041.0,1,5,3,90.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1533.931994879542,0.05695387923161362,0.04377534873090214,23360.666666666668,6,3,6,6_1,6_0,6_0_1 +11606,2,46.0,2,0.0,9,300,4,46,38,8.0,0.0,0.0,2095.6126443005,0.0,0.0,50158.64000000001,42,31,1,940,201711606,,,356.0,,2.0,0.0,4.0,2.0,4.0,2.1,1982.788924368712,0.0,1557.0,0.0,0.0,60101.0,1,1,1,130.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2095.6126443005,0.041779694272023715,0.034868182630912965,28619.52380952381,8,4,8,8_1,8_0,8_0_0 +11607,2,79.0,1,0.0,6,111,4,72,74,10.0,0.0,0.0,3432.1739229766135,0.0,1379.5600071639542,91920.3678304574,50,70,2,9400,201711607,,,,,0.0,2.0,3.0,0.0,2.0,1.5,3328.604908035829,1329.7505222246136,2000.0,0.0,0.0,101487.0,5,5,1,48.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,4811.733930140568,0.0523467653982366,0.04741231813080068,67658.0,10,5,10,10_0,10_4,10_0_0 +11608,2,41.0,1,0.0,4,111,1,35,33,2.0,0.0,0.0,1002.7176750185437,0.0,0.0,104231.39767803944,20,10,2,9403,201711608,,,,,2.0,0.0,4.0,2.0,4.0,2.1,5458.682540075161,0.0,745.0,0.0,0.0,20263.0,1,1,2,80.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1002.7176750185437,0.009620111572482604,0.04948515397614093,9649.047619047618,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +11609,2,35.0,2,0.0,3,111,1,42,65,5.0,0.0,0.0,409.16264859817085,196.39473556679775,1960.408711783891,26220.600315994117,43,71,2,9404,201711609,1108.0,1108.0,,347.0,2.0,0.0,4.0,3.0,5.0,2.4,3231.243263472583,0.0,304.0,1108.0,0.0,45311.0,1,1,3,92.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2565.9660959488597,0.09786069216667263,0.0566300919412253,18879.583333333336,5,3,5,5_0,5_3,5_0_1 +11610,2,59.0,3,0.0,6,112,2,77,63,5.0,2221.038412794435,0.0,2366.144527090738,109.69796040667983,0.0,25873.06,50,50,1,9405,201711610,,,274.0,,1.0,3.0,5.0,0.0,2.0,1.5,2056.4111993768565,0.0,1758.0,0.0,0.0,27470.0,5,1,1,100.0,5,0.0,3,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4696.880900291853,0.1815355779444663,0.17098219513257565,18313.333333333332,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11611,2,49.0,5,0.0,1,112,5,56,63,6.0,0.0,703.678644018664,2018.894647688343,0.0,0.0,26965.878839019715,50,50,1,9406,201711611,,,303.0,,2.0,0.0,3.0,1.0,3.0,1.8,1878.8090890297951,0.0,1500.0,0.0,0.0,38804.0,1,1,1,96.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2722.5732917070072,0.10096364030856042,0.07016218152012697,21557.777777777777,6,3,6,6_1,6_0,6_1_0 +11612,2,57.0,2,0.0,1,300,5,77,77,5.0,609.1991075093308,638.4461069991823,1018.8688322000504,0.0,0.0,31261.28,42,60,1,9407,201711612,,,,,0.0,0.0,98.0,0.0,2.0,1.5,1894.0277198964686,0.0,757.0,0.0,0.0,32490.0,5,5,1,155.0,0,0.0,3,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2266.5140467085635,0.0725022790720202,0.06976035847056213,21660.0,6,3,6,6_1,6_0,6_1_0 +11613,2,70.0,1,0.0,6,111,5,74,74,9.0,0.0,0.0,1578.7756144922841,0.0,196.39473556679775,33191.520000000004,31,31,1,9408,201711613,,,272.0,,0.0,2.0,5.0,0.0,2.0,1.5,1831.1049351598533,0.0,1173.0,111.0,0.0,57963.0,5,5,1,145.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1775.170350059082,0.05348264707549042,0.030625922572314786,38642.0,9,5,9,9_1,9_3,9_0_0 +11614,2,30.0,3,0.0,1,112,5,43,48,6.0,0.0,208.188947934516,1934.1010724854325,127.39117982711205,0.0,30883.5,31,50,1,941,201711614,,,444.0,,2.0,0.0,5.0,2.0,4.0,2.1,2104.926531435571,0.0,1437.0,0.0,0.0,44223.0,1,1,2,150.0,8,0.0,4,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2269.6812002470606,0.07349170917308791,0.05132354657637565,21058.571428571428,5,3,5,5_1,5_0,5_1_0 +11615,2,50.0,1,0.0,1,111,2,0,33,7.0,1983.0700114236026,0.0,578.7497990039916,106.15931652259337,0.0,39012.26000000001,0,12,1,9412,201711615,,,183.0,,1.0,0.0,7.0,2.0,3.0,2.0,583.5221201247522,0.0,430.0,0.0,0.0,54702.0,0,1,1,180.0,8,6.0,2,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2667.9791269501875,0.0683882227522883,0.04877297223045204,27351.0,8,4,8,8_1,8_2,8_1_0 +11616,2,84.0,3,0.0,1,120,2,77,75,4.0,0.0,0.0,562.5986418224849,0.0,222.9345646974461,19926.58,50,70,1,9414,201711616,,,396.0,,0.0,2.0,4.0,0.0,2.0,1.5,2423.5699620612404,0.0,418.0,126.0,0.0,24222.0,5,5,1,80.0,0,1.0,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,785.5332065199309,0.03942137619801947,0.03243056752208451,16148.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +11617,0,42.0,5,0.0,1,111,4,0,21,2.0,0.0,0.0,1413.22625338184,0.0,0.0,24297.02,0,44,2,9416,201711617,,,,,1.0,0.0,1.0,0.0,1.0,1.0,5196.924215416766,0.0,1050.0,0.0,0.0,13698.0,0,1,5,27.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1413.22625338184,0.05816459192863322,0.10317026232894146,13698.0,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +11618,2,41.0,1,0.0,5,111,4,34,34,9.0,0.0,152.6718951519784,2904.516433140963,0.0,0.0,94819.20000000001,20,20,2,9417,201711618,,,,,2.0,0.0,8.0,5.0,7.0,3.2,676.1985645973641,0.0,2158.0,0.0,0.0,100122.0,1,1,1,150.0,9,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,3057.188328292941,0.0322422919439622,0.030534631033069068,31288.125,8,4,8,8_0,8_3,8_0_0 +11620,2,40.0,5,0.0,4,111,1,0,52,4.0,0.0,0.0,355.32545799314835,0.0,290.16879849508854,16184.176722052927,0,43,2,9419,201711620,,,,252.0,1.0,3.0,2.0,0.0,1.0,1.0,2195.638794252497,0.0,264.0,164.0,0.0,16910.0,0,1,3,50.0,6,5.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,645.4942564882369,0.039884281268918166,0.038172339236442164,16910.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +11621,2,89.0,3,0.0,1,112,2,0,71,3.0,3966.1400228472053,0.0,767.1799661215703,176.9321942043223,0.0,22416.72,0,70,1,9420,201711621,,,50.0,,0.0,3.0,6.0,0.0,1.0,1.0,2041.414111478056,0.0,570.0,0.0,0.0,15152.0,0,5,1,135.0,7,0.0,1,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4910.252183173098,0.21904418591003047,0.3240662739686575,15152.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11622,2,58.0,2,0.0,1,111,2,75,43,9.0,0.0,0.0,777.9474042425749,0.0,2995.462047879176,60970.8,33,33,1,9423,201711622,,,278.0,,1.0,1.0,4.0,0.0,2.0,1.5,1324.1767033246288,0.0,578.0,1693.0,0.0,49773.0,5,1,1,110.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3773.409452121751,0.06188879680308854,0.0758123772350823,33182.0,9,5,9,9_1,9_4,9_1_0 +11623,2,62.0,3,0.0,6,112,2,56,21,7.0,720.2510281490526,0.0,3337.9058175113937,0.0,0.0,44176.748433389526,50,50,1,9425,201711623,,,491.0,,3.0,2.0,5.0,1.0,3.0,2.0,4720.94595931099,0.0,2480.0,0.0,0.0,53451.0,1,5,1,88.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,4058.1568456604464,0.09186182753534716,0.07592293587885066,26725.5,7,4,7,7_1,7_0,7_0_0 +11624,2,44.0,1,0.0,1,111,2,0,38,8.0,0.0,0.0,807.5578590753372,0.0,1806.4777028261306,19332.16,0,31,2,9426,201711624,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3293.478872831591,0.0,600.0,1021.0,0.0,29207.0,0,1,2,70.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2614.0355619014676,0.13521694223001815,0.08950031026471283,29207.0,8,4,8,8_0,8_3,8_1_0 +11625,2,56.0,3,0.0,7,111,2,72,46,8.0,0.0,0.0,4395.3494575067225,0.0,6277.183292149743,53455.87477955817,60,42,1,9427,201711625,,,642.0,,1.0,3.0,8.0,0.0,2.0,1.5,1556.3965913354998,4140.450681078347,1553.0,1120.0,0.0,43963.0,5,1,1,300.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,10672.532749656464,0.1996512599161075,0.2427617030151824,29308.666666666668,8,4,8,8_1,8_4,8_0_0 +11626,2,54.0,2,0.0,3,111,2,0,38,6.0,0.0,0.0,1061.9385846840685,53.079658261296686,0.0,38058.39119129575,0,31,2,9429,201711626,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2503.7045629705344,0.0,789.0,0.0,0.0,22712.0,0,1,3,50.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1115.0182429453653,0.029297566398455085,0.04909379371897522,22712.0,6,3,6,6_0,6_3,6_0_1 +11627,1,22.0,4,280.0,2,111,1,85,81,1.0,0.0,0.0,381.36127833105036,0.0,2161.502562720911,5316.88,50,71,2,943,201711627,820.0,820.0,,,1.0,0.0,3.0,1.0,3.0,1.8,1114.1890693940677,685.0,0.0,820.0,0.0,13060.0,8,4,3,60.0,7,5.0,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,2542.8638410519616,0.4782624097312637,0.19470626654302922,7255.555555555556,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11628,2,35.0,2,0.0,9,111,4,47,38,8.0,0.0,0.0,3230.231436301349,0.0,0.0,56798.32759735456,31,31,1,9430,201711628,,,435.0,,2.0,0.0,5.0,3.0,5.0,2.4,1377.7902896717455,0.0,2400.0,0.0,0.0,66525.0,1,1,2,160.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3230.231436301349,0.056871946286879756,0.048556654435195024,27718.75,8,4,8,8_1,8_2,8_0_0 +11629,2,58.0,2,0.0,9,112,4,77,53,4.0,0.0,0.0,2429.403226051639,0.0,0.0,29299.641750603256,50,50,1,9431,201711629,,,161.0,,1.0,2.0,5.0,0.0,2.0,1.5,2474.877023076435,0.0,1805.0,0.0,0.0,24947.0,6,5,1,120.0,9,1.0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2429.403226051639,0.08291579967873224,0.0973825801119028,16631.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11630,2,75.0,4,0.0,2,111,2,78,78,4.0,1837.1160585828256,624.566843803548,718.7264945770501,0.0,0.0,26486.0,70,50,1,9432,201711630,,,619.0,,0.0,6.0,5.0,0.0,2.0,1.5,1763.0107098655228,0.0,534.0,0.0,0.0,27283.0,5,5,1,120.0,9,7.0,3,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3180.409396963424,0.1200788868444999,0.11657110277328095,18188.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +11631,2,46.0,2,0.0,6,111,2,0,46,6.0,0.0,0.0,323.0231436301349,0.0,1316.3755248801579,20922.66,0,50,2,9434,201711631,,,,361.0,1.0,0.0,2.0,0.0,1.0,1.0,1082.5694483897753,0.0,240.0,744.0,0.0,22047.0,0,1,3,51.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1639.3986685102927,0.07835517417528616,0.07435926287069863,22047.0,6,3,6,6_0,6_4,6_0_0 +11632,0,34.0,2,0.0,1,211,4,0,52,5.0,0.0,0.0,1722.7900993607193,61.9262679715128,0.0,20802.66,0,31,1,9435,201711632,,,200.0,,1.0,0.0,3.0,0.0,1.0,1.0,6888.396836329809,0.0,1280.0,0.0,0.0,20203.0,0,1,5,70.0,1,3.0,1,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1784.716367332232,0.08579269993992268,0.08833917573292244,20203.0,5,3,5,5_1,5_1,5_1_0 +11633,2,70.0,2,0.0,4,111,1,0,78,3.0,0.0,0.0,398.39521047716636,0.0,0.0,11154.377038047043,0,70,2,9436,201711633,,,,349.0,0.0,3.0,3.0,0.0,1.0,1.0,2024.6403319894055,0.0,296.0,0.0,0.0,14433.0,0,5,3,78.0,8,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,398.39521047716636,0.03571649130366129,0.027603077009434377,14433.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +11634,2,54.0,3,0.0,4,111,1,43,34,10.0,0.0,0.0,2665.098380596833,0.0,602.2401029091162,50379.92841990658,20,10,2,9438,201711634,,,,890.0,2.0,0.0,2.0,0.0,2.0,1.5,2712.644220898885,580.4960184329464,1740.0,0.0,0.0,71055.0,4,1,3,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,3267.338483505949,0.06485397232551304,0.04598323106756666,47370.0,10,5,10,10_0,10_4,10_0_1 +11635,2,67.0,2,0.0,1,112,2,75,74,10.0,0.0,0.0,2086.35089668129,0.0,5974.5383425523205,53713.688537391296,31,10,1,9439,201711635,,,380.0,,0.0,3.0,6.0,0.0,2.0,1.5,1529.4795811418455,2006.8576637253288,720.0,2200.0,0.0,90801.0,5,5,1,118.0,8,1.0,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,8060.889239233611,0.15007141491730264,0.08877533550548575,60534.0,10,5,10,10_1,10_1,10_1_0 +11636,2,49.0,2,0.0,8,111,1,54,38,7.0,0.0,0.0,2422.6735772260117,0.0,3538.6438840864457,60821.299999999996,71,50,1,944,201711636,,,,,2.0,0.0,6.0,2.0,4.0,2.5,2561.744427738274,0.0,1800.0,2000.0,0.0,67335.0,1,1,1,120.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,5961.317461312457,0.09801364754308865,0.08853222635052287,26934.0,7,4,7,7_1,7_4,7_0_0 +11637,2,68.0,3,0.0,1,111,2,77,74,8.0,0.0,333.10231669522557,2018.894647688343,0.0,2213.4217494960717,39845.29400793944,41,10,1,9440,201711637,,,560.0,,0.0,3.0,4.0,0.0,2.0,1.5,1833.9479090128937,0.0,1500.0,1251.0,0.0,47164.0,5,5,1,140.0,7,5.0,3,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4565.418713879641,0.11457861781544267,0.0967988023466975,31442.666666666668,8,4,8,8_1,8_2,8_1_0 +11638,1,26.0,4,486.0,99,111,4,0,52,1.0,0.0,0.0,323.0231436301349,0.0,0.0,12502.48,0,50,2,9442,201711638,,,,214.0,1.0,0.0,2.0,2.0,3.0,1.6,1280.8710072929962,0.0,240.0,0.0,0.0,16392.0,0,4,3,61.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,323.0231436301349,0.02583672548407475,0.01970614590227763,10245.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +11639,2,71.0,3,0.0,6,112,5,71,77,6.0,0.0,69.396315978172,807.5578590753372,212.31863304518674,0.0,23749.459999999995,50,41,1,9443,201711639,,,,,0.0,2.0,4.0,0.0,2.0,1.5,2039.1863161854958,0.0,600.0,0.0,0.0,31978.0,5,5,1,300.0,6,0.0,3,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1089.2728080986958,0.04586516106465983,0.03406319369875214,21318.666666666668,6,3,6,6_1,6_0,6_0_0 +11640,2,34.0,3,0.0,99,111,2,0,62,6.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,30936.070875301626,0,31,2,9444,201711640,,,100.0,480.0,1.0,0.0,2.0,0.0,1.0,1.0,2586.011494559411,750.0,0.0,0.0,0.0,22692.0,0,1,3,50.0,8,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1195.6421699742903,0.0386488049757105,0.05269003040605898,22692.0,6,3,6,6_0,6_3,6_0_0 +11641,2,69.0,1,0.0,4,112,4,75,78,8.0,0.0,0.0,2549.4552065006815,0.0,236.25484943837327,64387.3286128757,33,70,1,9445,201711641,,,90.0,,0.0,1.0,5.0,0.0,2.0,1.5,1505.6282131155097,227.72478745930908,1800.0,0.0,0.0,47226.0,5,5,5,89.0,7,1.0,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2785.7100559390547,0.043264880155037044,0.058986788123894775,31484.0,8,4,8,8_1,8_1,8_0_1 +11642,2,75.0,3,0.0,5,112,2,74,75,9.0,0.0,0.0,3985.298034536789,0.0,0.0,38287.520000000004,60,41,1,9446,201711642,,,600.0,,0.0,1.0,5.0,0.0,2.0,1.5,2499.674937877467,0.0,2961.0,0.0,0.0,49935.0,5,5,1,100.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3985.298034536789,0.1040886961217856,0.07980971331804924,33290.0,9,5,9,9_1,9_0,9_0_0 +11643,1,32.0,2,355.0,99,111,1,0,67,2.0,0.0,0.0,26.91859530251124,0.0,212.31863304518674,11399.070875301626,0,30,2,9448,201711643,,,120.0,45.0,1.0,1.0,3.0,1.0,2.0,1.3,1103.1513639741877,0.0,20.0,120.0,0.0,14265.0,0,4,3,65.0,8,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,239.237228347698,0.020987432306088512,0.01677092382388349,10973.076923076922,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11644,2,54.0,2,0.0,1,111,4,78,47,6.0,0.0,0.0,1518.2087750616338,132.69914565324171,0.0,31627.200000000004,50,42,1,9451,201711644,,,900.0,,3.0,1.0,4.0,2.0,4.0,2.5,2731.4420332609516,0.0,1128.0,0.0,0.0,59722.0,6,1,1,70.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1650.9079207148754,0.05219899076474918,0.02764321222857365,23888.8,6,3,6,6_1,6_3,6_1_0 +11645,2,66.0,2,0.0,7,112,2,74,74,10.0,0.0,0.0,646.0462872602698,0.0,1680.8558449410618,68512.14,31,31,1,9453,201711645,,,700.0,,0.0,5.0,6.0,0.0,2.0,1.5,1829.6744661232356,0.0,480.0,950.0,0.0,68336.0,5,5,1,140.0,9,0.0,3,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2326.9021322013314,0.03396335499374755,0.03405089750938497,45557.333333333336,10,5,10,10_1,10_0,10_0_0 +11646,2,46.0,3,0.0,9,400,2,54,13,2.0,0.0,0.0,1091.5490395168308,0.0,0.0,29819.0313887658,31,50,1,9454,201711646,,,,,2.0,0.0,4.0,2.0,4.0,2.5,1915.5641352374905,0.0,811.0,0.0,0.0,33150.0,1,1,2,120.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1091.5490395168308,0.036605784583870406,0.032927572836103494,13260.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11647,2,80.0,2,0.0,3,111,6,77,75,8.0,0.0,0.0,1158.8455277731089,42.46372660903735,0.0,32340.400315994117,70,31,1,9455,201711647,,,129.0,,0.0,3.0,4.0,0.0,2.0,1.5,2749.6441378685345,0.0,861.0,0.0,0.0,42289.0,5,5,1,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,1201.3092543821463,0.03714577564421899,0.028407133164230564,28192.666666666668,8,4,8,8_1,8_3,8_0_1 +11648,2,44.0,3,0.0,1,111,2,46,34,9.0,0.0,0.0,807.5578590753372,0.0,2565.5168159626733,44622.54932287755,30,10,2,9457,201711648,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2948.9946127824037,0.0,600.0,1450.0,0.0,77796.0,1,1,1,105.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,3373.0746750380104,0.07559125881919676,0.043357944817702845,37045.71428571428,9,5,9,9_0,9_3,9_1_0 +11649,2,78.0,2,0.0,1,112,2,71,71,3.0,2221.038412794435,0.0,0.0,212.31863304518674,0.0,15309.479999999998,71,70,1,9458,201711649,,,120.0,,0.0,1.0,5.0,0.0,2.0,1.5,1790.0756295246488,0.0,0.0,0.0,0.0,23934.0,5,5,1,100.0,8,0.0,3,3,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2433.3570458396216,0.15894446093790396,0.10166946794683804,15956.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11650,1,35.0,1,52.0,9,120,5,13,62,8.0,0.0,0.0,646.0462872602698,0.0,0.0,57493.78,43,43,1,9459,201711650,,,240.0,,2.0,0.0,5.0,1.0,3.0,1.8,1812.085328598347,0.0,480.0,0.0,0.0,54425.0,1,1,2,121.0,0,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,646.0462872602698,0.01123680313349148,0.011870395723661364,30236.11111111111,8,4,8,8_1,8_1,8_0_0 +11651,2,52.0,2,0.0,9,300,2,64,46,9.0,0.0,0.0,1615.1157181506744,2123.1863304518674,0.0,21499.834007939444,60,60,1,946,201711651,,,,,2.0,3.0,5.0,0.0,2.0,1.5,1704.0644509815136,0.0,1200.0,0.0,0.0,56568.0,1,1,1,120.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3738.3020486025416,0.17387585630763772,0.06608510197642734,37712.0,9,5,9,9_1,9_0,9_0_0 +11652,2,41.0,4,0.0,1,211,2,46,46,7.0,0.0,832.755791738064,1380.6948470963575,0.0,2572.8952616186293,49556.4316935026,31,44,1,9460,201711652,,,630.0,,2.0,0.0,5.0,2.0,4.0,2.1,3493.305300616385,2480.0,0.0,0.0,0.0,54111.0,1,1,2,180.0,1,3.0,4,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4786.3459004530505,0.09658374779797944,0.08845421264535955,25767.142857142855,7,4,7,7_1,7_1,7_1_0 +11653,1,34.0,4,327.0,9,111,1,0,54,3.0,0.0,0.0,532.9881869897225,0.0,0.0,27947.1,0,50,2,9461,201711653,,,,116.0,1.0,0.0,3.0,1.0,2.0,1.3,1661.3084134422456,0.0,396.0,0.0,0.0,18160.0,0,1,3,60.0,9,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,532.9881869897225,0.019071323571666562,0.029349569768156527,13969.23076923077,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11654,1,39.0,3,494.0,8,111,1,85,85,3.0,0.0,0.0,1047.1333572676872,0.0,0.0,13145.24,71,71,2,9463,201711654,,,266.0,57.0,0.0,0.0,5.0,3.0,5.0,2.4,3107.6309530323438,0.0,778.0,0.0,0.0,37818.0,6,6,3,80.0,9,7.0,4,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1047.1333572676872,0.07965874774957986,0.027688755546768397,15757.5,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11655,2,74.0,3,0.0,6,111,4,0,75,7.0,0.0,0.0,1076.7438121004495,0.0,0.0,21593.019999999997,0,44,2,9466,201711655,,,,,0.0,2.0,3.0,0.0,1.0,1.0,4342.183843982666,0.0,800.0,0.0,0.0,23594.0,0,5,1,55.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1076.7438121004495,0.04986536446038811,0.045636340260254704,23594.0,6,3,6,6_0,6_3,6_0_0 +11656,1,36.0,4,401.0,99,111,2,0,56,2.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,19213.68,0,71,8,947,201711656,,,400.0,53.0,1.0,0.0,4.0,2.0,3.0,1.8,727.3196783386247,1700.0,0.0,0.0,0.0,20487.0,0,1,3,98.0,9,7.0,2,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,2710.1222519417247,0.1410517012847994,0.1322849734925428,11381.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11657,1,56.0,5,234.0,99,300,5,0,63,1.0,0.0,693.9631597817199,366.09289611415284,123.8525359430256,0.0,3398.0800000000004,0,50,1,9471,201711657,,,,,1.0,3.0,2.0,0.0,1.0,1.0,3452.2448552554406,0.0,272.0,0.0,0.0,8758.0,0,4,3,62.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1183.9085918388982,0.3484051558053071,0.1351802456998057,8758.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +11658,2,52.0,4,0.0,1,111,2,0,54,4.0,0.0,0.0,484.5347154452023,0.0,1645.4694061001974,16889.047196250445,0,60,1,9472,201711658,,,100.0,,1.0,1.0,4.0,0.0,1.0,1.0,1459.5144805252692,0.0,360.0,930.0,0.0,18322.0,0,1,2,110.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,2130.0041215454,0.12611748293404523,0.1162539090462504,18322.0,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +11659,2,50.0,2,0.0,1,111,4,0,43,8.0,0.0,0.0,1018.8688322000504,0.0,0.0,31623.2,0,33,2,9473,201711659,,,120.0,,1.0,2.0,2.0,0.0,1.0,1.0,3364.313473545429,0.0,757.0,0.0,0.0,31937.0,0,1,2,65.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1018.8688322000504,0.032219030085508436,0.031902458972353394,31937.0,9,5,9,9_0,9_3,9_1_0 +11660,1,45.0,4,379.0,2,111,1,0,54,1.0,0.0,0.0,495.3021535662068,0.0,141.54575536345783,6599.8671276831155,0,41,8,9474,201711660,,,310.0,13.0,1.0,1.0,4.0,1.0,2.0,1.5,1389.089089995263,0.0,368.0,80.0,0.0,13008.0,0,4,3,87.0,7,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,636.8479089296646,0.09649405004813032,0.04895817258069378,8672.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11661,2,33.0,3,0.0,9,300,5,85,48,8.0,0.0,666.2046333904511,1076.7438121004495,339.7098128722988,0.0,39470.8658467513,71,41,1,9475,201711661,,,200.0,,1.0,0.0,5.0,3.0,5.0,2.4,2232.7229907647825,0.0,800.0,0.0,0.0,65230.0,6,1,2,147.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2082.6582583631994,0.052764443183214715,0.03192792056359343,27179.166666666668,7,4,7,7_1,7_0,7_0_0 +11662,2,67.0,2,0.0,5,111,4,74,75,10.0,0.0,0.0,2516.888660784801,159.23897478389006,0.0,63211.57871247185,31,30,1,9476,201711662,,,180.0,,0.0,2.0,5.0,0.0,2.0,1.5,1459.045169291568,0.0,1870.0,0.0,0.0,79375.0,5,5,1,100.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2676.127635568691,0.042336035423850005,0.033714993833936266,52916.666666666664,10,5,10,10_1,10_2,10_0_0 +11663,2,80.0,3,0.0,1,211,4,0,75,9.0,72.97697642038858,0.0,471.07541779394666,0.0,0.0,10544.48,0,41,1,9477,201711663,,,,,0.0,4.0,3.0,0.0,1.0,1.0,3431.070863583985,0.0,350.0,0.0,0.0,33360.0,0,5,1,70.0,2,3.0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,544.0523942143352,0.05159594349027503,0.016308525006424917,33360.0,9,5,9,9_1,9_1,9_1_0 +11664,2,71.0,2,0.0,7,300,5,22,74,10.0,0.0,624.566843803548,2059.2725406421096,106.15931652259337,0.0,49845.68,31,41,1,9478,201711664,,,,,1.0,1.0,4.0,0.0,2.0,1.5,2001.8393033249274,0.0,1530.0,0.0,0.0,64138.0,1,5,1,120.0,0,0.0,3,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2789.998700968251,0.05597272824782912,0.04349993297215771,42758.666666666664,10,5,10,10_1,10_0,10_0_0 +11665,2,75.0,1,0.0,7,221,2,0,74,10.0,0.0,222.0682111301504,3098.3303193190436,0.0,0.0,47416.28,0,10,1,9479,201711665,,,316.0,,0.0,6.0,6.0,0.0,1.0,1.0,2190.975594720594,0.0,2302.0,0.0,0.0,62414.0,0,5,1,130.0,1,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3320.398530449194,0.07002655059505287,0.05319957910803977,62414.0,10,5,10,10_1,10_1,10_0_0 +11666,2,64.0,3,0.0,5,111,2,0,77,4.0,0.0,0.0,471.07541779394666,0.0,566.1830214538313,23402.12,0,70,2,948,201711666,,,120.0,380.0,0.0,4.0,3.0,0.0,1.0,1.0,2534.441194291746,0.0,350.0,320.0,0.0,18600.0,0,5,3,93.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1037.258439247778,0.04432326811621246,0.05576658275525688,18600.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11667,2,74.0,3,0.0,1,112,2,75,75,7.0,1903.7472109666587,0.0,1154.807738477732,159.23897478389006,0.0,44569.09117488921,44,31,1,9480,201711667,,,140.0,,0.0,2.0,6.0,0.0,2.0,1.5,1895.3822903945463,0.0,858.0,0.0,0.0,37105.0,5,5,1,100.0,8,0.0,3,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3217.793924228281,0.0721978806254238,0.08672130236432504,24736.666666666668,7,4,7,7_1,7_0,7_1_0 +11668,2,55.0,3,0.0,1,111,6,85,31,2.0,793.228004569441,0.0,471.07541779394666,0.0,619.262679715128,28305.719999999998,10,20,1,9481,201711668,,,356.0,,1.0,0.0,4.0,3.0,5.0,2.4,2136.4787443317296,0.0,350.0,350.0,0.0,25462.0,6,1,1,75.0,8,6.0,4,5,1,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,1883.5661020785155,0.06654365626730271,0.07397557544884595,10609.166666666668,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +11669,2,53.0,1,0.0,6,111,1,46,47,7.0,0.0,0.0,807.5578590753372,0.0,0.0,54438.57087530163,31,31,2,9482,201711669,,,,,3.0,0.0,5.0,2.0,4.0,2.5,2016.8026025244112,0.0,600.0,0.0,0.0,64492.0,1,1,1,100.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,807.5578590753372,0.014834295722515378,0.012521829980080277,25796.8,7,4,7,7_0,7_2,7_0_0 +11670,2,66.0,2,0.0,4,111,2,75,75,7.0,0.0,123.52544244114615,3339.2517472765194,54.84898020333991,0.0,50004.020000000004,60,50,1,9484,201711670,,,742.0,,0.0,1.0,6.0,0.0,2.0,1.5,1696.0015646085194,0.0,2481.0,0.0,0.0,37812.0,5,5,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,3517.6261699210054,0.07034686751027228,0.09302936025391424,25208.0,7,4,7,7_1,7_4,7_0_1 +11671,1,48.0,4,256.0,99,300,5,0,22,1.0,0.0,777.2387389555264,94.21508355878933,35.38643884086446,0.0,5949.92,0,71,1,9485,201711671,,,,64.0,1.0,0.0,3.0,0.0,1.0,1.0,3779.283855780364,0.0,70.0,0.0,0.0,8723.0,0,1,3,60.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,906.8402613551802,0.1524121771982111,0.10395967687208303,8723.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +11672,0,40.0,3,0.0,5,111,1,0,56,4.0,0.0,0.0,0.0,0.0,0.0,28623.94,0,31,2,9486,201711672,,,,,1.0,0.0,2.0,0.0,1.0,1.0,2490.1833595762055,0.0,0.0,0.0,0.0,17044.0,0,1,5,25.0,9,7.0,1,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0.0,0.0,0.0,17044.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11673,2,69.0,3,0.0,5,111,1,78,78,4.0,0.0,0.0,838.5142436732251,0.0,0.0,19716.45087530163,71,70,2,9487,201711673,,,,522.0,0.0,2.0,3.0,0.0,2.0,1.5,2263.7652145414945,0.0,623.0,0.0,0.0,26259.0,5,5,3,73.0,8,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,838.5142436732251,0.04252866040528692,0.031932451489897755,17506.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11674,1,49.0,3,335.0,4,221,1,68,68,2.0,0.0,0.0,635.2788491392653,0.0,477.7169243516702,30986.179999999997,71,71,2,9489,201711674,,,,,2.0,0.0,4.0,3.0,5.0,2.6,971.0381750591613,0.0,472.0,270.0,0.0,28839.0,1,4,3,60.0,1,2.0,4,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1112.9957734909353,0.03591910243505122,0.03859342465033237,11091.923076923076,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +11675,2,37.0,2,0.0,1,111,4,0,42,2.0,0.0,0.0,689.1160397442877,0.0,0.0,29369.73740677781,0,30,2,9491,201711675,,,196.0,,1.0,0.0,2.0,0.0,1.0,1.0,3050.7997188373133,0.0,512.0,0.0,0.0,14251.0,0,1,3,36.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,689.1160397442877,0.02346347296878646,0.048355626955602256,14251.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +11676,2,43.0,2,0.0,7,111,2,37,37,10.0,0.0,0.0,376.8603342351573,0.0,2123.1863304518674,57454.42,12,12,1,9492,201711676,,,320.0,,2.0,0.0,4.0,2.0,4.0,2.1,4116.409291092202,0.0,280.0,1200.0,0.0,230060.0,1,1,1,100.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2500.0466646870245,0.04351356544347719,0.010866933255181364,109552.38095238095,10,5,10,10_1,10_4,10_0_0 +11677,2,55.0,3,0.0,1,211,2,12,12,2.0,0.0,1582.2360043023216,969.0694308904046,81.38880933398825,0.0,16464.08,71,71,1,9493,201711677,,,80.0,,2.0,3.0,5.0,0.0,2.0,1.5,968.7986421240972,0.0,720.0,0.0,0.0,17513.0,1,1,1,90.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,2632.6942445267146,0.15990533601189463,0.15032799888806683,11675.333333333334,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +11678,2,83.0,3,0.0,4,111,2,77,74,5.0,0.0,0.0,742.9532303493102,0.0,2443.433601961691,26928.18,70,50,1,9495,201711678,,,249.0,,0.0,2.0,4.0,0.0,2.0,1.5,1821.115577568341,0.0,552.0,1381.0,0.0,29225.0,5,5,1,80.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3186.386832311001,0.11832908248203187,0.10902948955726265,19483.333333333332,5,3,5,5_1,5_2,5_0_1 +11679,1,58.0,3,272.0,4,111,2,0,78,3.0,0.0,0.0,839.8601734383507,0.0,1656.0853377524566,6869.099999999999,0,71,2,95,201711679,,,,21.0,0.0,1.0,2.0,0.0,1.0,1.0,2755.7378617872464,0.0,624.0,936.0,0.0,14233.0,0,7,3,60.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2495.9455111908073,0.3633584474226329,0.17536327627280315,14233.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +11680,1,24.0,9,66.0,3,111,1,0,63,1.0,0.0,0.0,0.0,0.0,0.0,5528.280000000001,0,50,2,9500,201711680,,,,164.0,1.0,0.0,2.0,0.0,1.0,1.0,1488.5540855536283,0.0,0.0,0.0,0.0,6934.0,0,1,3,54.0,9,7.0,1,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0.0,0.0,0.0,6934.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11681,2,65.0,3,0.0,2,111,2,31,46,2.0,1316.7584875852722,0.0,1345.929765125562,0.0,0.0,35227.99665845403,31,20,1,9501,201711681,,,100.0,,2.0,3.0,4.0,0.0,2.0,1.5,1669.3795572349125,0.0,1000.0,0.0,0.0,22782.0,1,1,1,150.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2662.688252710834,0.07558443582603898,0.11687684367969599,15188.0,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +11682,2,40.0,3,0.0,9,111,4,0,38,8.0,0.0,0.0,1036.3659191466827,0.0,0.0,46485.50999999999,0,31,2,9502,201711682,,,,,1.0,0.0,3.0,2.0,3.0,1.6,661.7424018572259,0.0,770.0,0.0,0.0,43573.0,0,1,2,73.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1036.3659191466827,0.022294386339887052,0.023784589519810037,27233.125,7,4,7,7_0,7_3,7_0_0 +11683,2,40.0,5,0.0,6,112,2,0,38,6.0,0.0,0.0,2018.894647688343,53.079658261296686,0.0,24571.28,0,60,1,9503,201711683,,,,,1.0,0.0,4.0,1.0,2.0,1.3,3034.198282988389,0.0,1500.0,0.0,0.0,28840.0,0,1,2,80.0,8,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2071.9743059496395,0.0843250455796214,0.07184376927703327,22184.615384615383,6,3,6,6_1,6_0,6_0_0 +11684,2,82.0,3,0.0,4,112,2,77,74,7.0,1962.4460833047972,124.91336876070959,874.8543473316153,0.0,530.7965826129669,36419.62036465861,44,12,1,9505,201711684,,,280.0,,0.0,3.0,6.0,0.0,2.0,1.5,3229.5798191402628,0.0,650.0,300.0,0.0,38637.0,5,5,1,150.0,8,0.0,3,4,1,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3493.0103820100894,0.09591012610882915,0.09040583849703883,25758.0,7,4,7,7_1,7_0,7_0_1 +11685,2,72.0,2,0.0,6,111,6,77,74,9.0,0.0,0.0,2557.266553738568,53.079658261296686,0.0,45014.16134949914,50,50,1,9507,201711685,,,288.0,,0.0,2.0,5.0,0.0,2.0,1.5,2102.454092063064,0.0,1900.0,0.0,0.0,53754.0,5,5,1,150.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2610.3462119998644,0.057989444515751463,0.04856096684897616,35836.0,9,5,9,9_1,9_3,9_0_0 +11686,2,60.0,3,0.0,2,111,2,52,75,6.0,0.0,0.0,1615.1157181506744,0.0,1415.4575536345783,33677.17119129575,41,50,1,9508,201711686,,,500.0,,1.0,2.0,5.0,0.0,2.0,1.5,2001.6400651596944,0.0,1200.0,800.0,0.0,34935.0,1,5,1,130.0,8,6.0,3,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,3030.5732717852525,0.08998894992013282,0.08674891288923008,23290.0,6,3,6,6_1,6_2,6_0_1 +11687,2,30.0,3,0.0,7,111,2,47,38,9.0,0.0,0.0,55.673179318401516,0.0,103.74577667817053,75298.48000000001,0,10,2,9510,201711687,,,250.0,,2.0,0.0,3.0,0.0,2.0,1.5,2657.83037392242,100.0,0.0,0.0,0.0,56833.0,1,1,2,100.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,159.41895599657204,0.0021171603463519054,0.002805042070567664,37888.666666666664,9,5,9,9_0,9_3,9_0_0 +11688,1,44.0,4,30.0,9,112,2,0,54,3.0,0.0,0.0,740.261370819059,0.0,0.0,32443.199999999997,0,50,2,9512,201711688,,,,600.0,1.0,0.0,3.0,1.0,2.0,1.3,1044.499015863004,0.0,550.0,0.0,0.0,21090.0,0,1,3,70.0,9,3.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,740.261370819059,0.022817150306352615,0.0351001124143698,16223.076923076922,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +11689,2,58.0,2,0.0,6,111,4,77,74,9.0,0.0,208.188947934516,890.7708690944243,0.0,1659.9324268507285,37113.14,60,50,1,9513,201711689,,,500.0,,0.0,1.0,5.0,0.0,2.0,1.5,1686.2072523700347,1600.0,0.0,0.0,0.0,57276.0,5,5,1,110.0,8,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2758.892243879669,0.07433734369766797,0.04816838193797872,38184.0,9,5,9,9_1,9_3,9_0_0 +11690,0,36.0,3,0.0,1,111,6,0,52,4.0,0.0,0.0,687.7701099791622,0.0,0.0,23951.620315994118,0,41,2,9514,201711690,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4555.19164954606,0.0,511.0,0.0,0.0,18916.0,0,1,5,37.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,687.7701099791622,0.02871497213572192,0.036359172656965644,18916.0,5,3,5,5_0,5_3,5_1_0 +11691,2,69.0,3,0.0,99,111,1,0,77,5.0,0.0,0.0,733.2157716233479,0.0,1366.331878851506,36693.934007939446,0,60,1,9515,201711691,,,173.0,,0.0,2.0,5.0,0.0,1.0,1.0,2080.4303528634127,1317.0,0.0,0.0,0.0,19549.0,0,5,1,120.0,9,7.0,1,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2099.547650474854,0.05721784014819932,0.10739923527929071,19549.0,5,3,5,5_1,5_3,5_0_0 +11692,2,46.0,2,0.0,2,120,2,0,34,9.0,0.0,0.0,336.4824412813905,1751.6287226227907,0.0,35416.03999999999,0,30,1,9516,201711692,,,70.0,,1.0,0.0,3.0,0.0,1.0,1.0,1830.543562436938,0.0,250.0,0.0,0.0,35223.0,0,1,2,70.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2088.111163904181,0.05895947609908339,0.059282604091195554,35223.0,9,5,9,9_1,9_0,9_0_1 +11693,2,68.0,2,0.0,6,111,2,52,78,9.0,0.0,0.0,749.682879174938,0.0,1910.8676974066807,33986.04,50,50,1,9517,201711693,,,257.0,,1.0,1.0,5.0,0.0,2.0,1.5,2796.871744463193,0.0,557.0,1080.0,0.0,51994.0,1,5,1,115.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2660.5505765816188,0.07828362988396467,0.05117033843485053,34662.666666666664,9,5,9,9_1,9_4,9_0_0 +11694,2,65.0,2,0.0,6,111,2,54,75,8.0,1887.8826508752697,0.0,567.9823608829871,54.84898020333991,0.0,48963.28238259149,50,60,1,9518,201711694,,,246.0,,1.0,3.0,7.0,0.0,2.0,1.5,1546.9965192076338,0.0,422.0,0.0,0.0,44912.0,1,5,1,140.0,4,4.0,3,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2510.713991961597,0.051277485286694374,0.055902965620805066,29941.333333333332,8,4,8,8_1,8_2,8_0_0 +11695,2,35.0,2,0.0,1,111,4,0,63,7.0,0.0,0.0,1643.380243218311,0.0,0.0,14638.04,0,50,2,9519,201711695,,,,290.0,1.0,0.0,2.0,0.0,1.0,1.0,4125.916316727124,0.0,1221.0,0.0,0.0,27047.0,0,1,3,62.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,1643.380243218311,0.11226777923945494,0.060760167235490485,27047.0,7,4,7,7_0,7_3,7_1_0 +11696,2,40.0,1,0.0,1,211,2,54,42,5.0,0.0,693.9631597817199,1776.6272899657417,138.0071114793714,0.0,31481.3,20,20,1,952,201711696,,,410.0,,2.0,0.0,5.0,2.0,4.0,2.1,2690.4686560081773,0.0,1320.0,0.0,0.0,41175.0,1,1,1,100.0,1,3.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2608.597561226833,0.08286181197176842,0.06335391769828375,19607.142857142855,5,3,5,5_1,5_1,5_1_0 +11697,1,58.0,3,80.0,7,111,2,0,68,2.0,0.0,0.0,799.4822804845838,0.0,1323.4528126483308,14857.720000000001,0,60,1,9521,201711697,,,,313.0,1.0,3.0,3.0,0.0,1.0,1.0,1366.1179177594424,0.0,594.0,748.0,0.0,12390.0,0,1,3,69.0,8,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2122.9350931329145,0.14288431153184433,0.17134262252888738,12390.0,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +11698,0,25.0,2,0.0,7,111,4,54,56,6.0,0.0,0.0,672.964882562781,0.0,0.0,13585.859999999999,30,42,2,9522,201711698,,,,,2.0,0.0,2.0,0.0,2.0,1.5,5619.494145904054,0.0,500.0,0.0,0.0,32563.0,1,4,5,30.0,8,6.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,672.964882562781,0.049534212965743875,0.02066655045796705,21708.666666666668,6,3,6,6_0,6_2,6_0_0 +11699,2,26.0,3,0.0,4,300,5,0,69,4.0,0.0,138.792631956344,306.87198644862815,198.16405750884095,0.0,18144.95672205293,0,43,1,9523,201711699,,,136.0,,1.0,0.0,4.0,0.0,1.0,1.0,3690.137536088555,0.0,228.0,0.0,0.0,16824.0,0,1,3,60.0,0,0.0,1,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,643.8286759138131,0.035482513724120354,0.03826846623358375,16824.0,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +11700,1,36.0,2,46.0,6,112,4,53,64,4.0,0.0,0.0,3068.719864486281,0.0,0.0,34446.33087530163,50,60,1,9524,201711700,,,517.0,,2.0,0.0,5.0,3.0,5.0,2.4,1313.3945325489651,0.0,2280.0,0.0,0.0,39051.0,4,1,2,100.0,10,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3068.719864486281,0.08908698797544747,0.07858236317856857,16271.25,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +11701,2,45.0,2,0.0,6,111,2,0,37,10.0,0.0,0.0,461.6539094380677,0.0,2209.8831056119852,62204.2,0,31,2,9526,201711701,,,,,1.0,1.0,5.0,0.0,1.0,1.0,2914.3475970442255,0.0,343.0,1249.0,0.0,40820.0,0,1,2,86.0,8,6.0,1,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2671.537015050053,0.042947855852981845,0.06544676665972693,40820.0,10,5,10,10_0,10_2,10_0_0 +11702,2,41.0,3,0.0,9,112,4,52,63,6.0,0.0,1387.9263195634398,2018.894647688343,0.0,0.0,45197.22000000001,50,50,1,9527,201711702,,,230.0,,2.0,0.0,5.0,3.0,5.0,2.4,1888.592776548151,0.0,1500.0,0.0,0.0,53510.0,4,1,2,120.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3406.820967251783,0.07537678129875648,0.06366699621102191,22295.833333333336,6,3,6,6_1,6_0,6_0_0 +11703,2,26.0,2,0.0,9,300,4,55,64,8.0,0.0,0.0,2971.8129213972406,0.0,0.0,93212.18,43,31,1,9528,201711703,,,,744.0,2.0,0.0,3.0,0.0,2.0,1.5,2631.394821238348,0.0,2208.0,0.0,0.0,44360.0,1,1,3,85.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2971.8129213972406,0.03188223815167976,0.06699307757883771,29573.333333333332,8,4,8,8_1,8_0,8_0_0 +11704,2,52.0,3,0.0,5,111,2,56,47,5.0,2379.684013708323,0.0,1547.8192298943961,79.61948739194503,0.0,35876.051191295745,44,31,1,9529,201711704,,,,,2.0,0.0,3.0,3.0,5.0,2.6,1652.997856062304,0.0,1150.0,0.0,0.0,47996.0,4,1,1,80.0,7,5.0,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,4007.1227309946644,0.11169352807610201,0.08348868095246821,18460.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11705,2,57.0,2,0.0,6,111,2,62,38,10.0,0.0,0.0,1009.4473238441715,0.0,1415.4575536345783,51695.76,71,31,1,9530,201711705,,,537.0,,2.0,4.0,4.0,0.0,2.0,1.5,1734.7204736728283,0.0,750.0,800.0,0.0,62389.0,4,1,2,78.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2424.9048774787498,0.04690722948030457,0.03886750673161535,41592.666666666664,10,5,10,10_1,10_4,10_0_0 +11706,2,68.0,2,0.0,5,112,2,0,77,4.0,0.0,0.0,647.3922170253953,1670.2399132888024,0.0,21733.7,0,60,1,9532,201711706,,,108.0,,0.0,1.0,5.0,0.0,1.0,1.0,2835.6772572805503,0.0,481.0,0.0,0.0,21791.0,0,5,1,150.0,6,0.0,1,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2317.6321303141976,0.10663771609593385,0.10635730945409562,21791.0,6,3,6,6_1,6_0,6_0_0 +11707,1,52.0,3,334.0,3,111,1,0,85,1.0,0.0,0.0,430.6975248401798,219.39592081335965,1252.6799349666019,8027.28,0,71,2,9533,201711707,708.0,708.0,,,0.0,0.0,3.0,1.0,2.0,1.3,764.5744127354732,0.0,320.0,708.0,0.0,12878.0,0,6,3,55.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1902.7733806201413,0.23703837172991865,0.14775379566859306,9906.153846153846,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11708,2,38.0,2,0.0,9,120,4,67,46,5.0,0.0,0.0,2422.6735772260117,0.0,0.0,36472.06,43,71,1,9534,201711708,,,220.0,,2.0,0.0,4.0,2.0,4.0,2.3,2498.4824588561546,0.0,1800.0,0.0,0.0,44360.0,1,1,2,110.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2422.6735772260117,0.06642546588336419,0.05461392193926988,19286.956521739132,5,3,5,5_1,5_0,5_0_0 +11709,2,70.0,1,0.0,6,111,2,0,74,10.0,0.0,0.0,785.5119785123035,0.0,987.2435972688726,57447.51164039787,0,10,1,9535,201711709,,,313.0,,0.0,2.0,6.0,0.0,1.0,1.0,1600.578382483938,951.5988302168656,190.0,0.0,0.0,73632.0,0,5,1,132.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1772.755575781176,0.030858700841178824,0.024075885155654824,73632.0,10,5,10,10_1,10_4,10_0_0 +11710,2,64.0,3,0.0,1,112,2,75,43,6.0,2379.684013708323,0.0,767.1799661215703,99.08202875442048,0.0,23576.5716935026,33,33,1,9536,201711710,,,90.0,,1.0,2.0,9.0,0.0,2.0,1.5,1488.7018324635635,0.0,570.0,0.0,0.0,45902.0,7,1,1,100.0,4,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,3245.9460085843143,0.1376767602508916,0.07071469671439838,30601.333333333332,8,4,8,8_1,8_0,8_1_0 +11711,2,62.0,1,0.0,6,111,2,0,77,7.0,0.0,0.0,646.0462872602698,0.0,1415.4575536345783,18268.32,0,31,2,9539,201711711,,,450.0,,0.0,0.0,3.0,0.0,1.0,1.0,4299.336064464705,0.0,480.0,800.0,0.0,23656.0,0,5,1,74.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2061.503840894848,0.1128458359003372,0.08714507274665405,23656.0,6,3,6,6_0,6_4,6_0_0 +11712,2,57.0,3,0.0,1,111,6,85,69,3.0,0.0,707.8424229773543,1179.0344742499922,0.0,0.0,21134.4,71,60,1,954,201711712,,,700.0,,3.0,2.0,3.0,3.0,5.0,3.0,2248.1747291183647,0.0,876.0,0.0,0.0,40350.0,6,1,3,80.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,1886.8768972273465,0.08927988952737463,0.0467627483823382,13450.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +11713,2,30.0,3,0.0,99,111,2,56,63,6.0,0.0,0.0,646.0462872602698,0.0,1190.753666995089,28388.922698998293,50,50,1,9540,201711713,,,240.0,540.0,2.0,0.0,4.0,1.0,3.0,1.8,2538.832863428836,0.0,480.0,673.0,0.0,39792.0,1,1,3,100.0,6,4.0,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1836.7999542553587,0.06470129119482827,0.04616003101767588,22106.666666666668,6,3,6,6_1,6_2,6_0_0 +11714,1,44.0,5,379.0,5,111,4,0,68,1.0,0.0,0.0,1749.7086946632305,0.0,0.0,11137.4,0,70,8,9541,201711714,,,,350.0,1.0,0.0,5.0,2.0,3.0,2.0,929.8671527642304,0.0,1300.0,0.0,0.0,21298.0,0,1,3,146.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1749.7086946632305,0.1571020790007749,0.0821536620651343,10649.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11715,2,56.0,2,0.0,7,112,2,54,43,6.0,0.0,0.0,807.5578590753372,0.0,1946.2541362475451,87551.94,50,33,1,9543,201711715,,,340.0,,4.0,0.0,6.0,2.0,4.0,2.5,1636.8455612594491,0.0,600.0,1100.0,0.0,55526.0,1,1,1,155.0,8,2.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2753.8119953228825,0.03145346631180169,0.04959500045605451,22210.4,6,3,6,6_1,6_1,6_0_0 +11716,2,41.0,4,0.0,9,112,2,0,37,3.0,0.0,0.0,1227.4879457945126,0.0,0.0,28795.719999999998,0,0,1,9544,201711716,,,407.0,,1.0,0.0,6.0,2.0,3.0,1.6,648.6149844510015,0.0,912.0,0.0,0.0,23122.0,0,4,2,103.0,7,2.0,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1227.4879457945126,0.04262744414081373,0.053087446838271456,14451.25,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11717,2,56.0,3,0.0,6,111,4,0,56,4.0,0.0,0.0,1817.0051829195086,88.46609710216114,0.0,40649.63697444815,0,60,1,9547,201711717,,,480.0,,1.0,3.0,4.0,0.0,1.0,1.0,4366.317811014984,0.0,1350.0,0.0,0.0,17929.0,0,1,1,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1905.4712800216698,0.04687548086147547,0.10627872608743766,17929.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +11718,2,78.0,2,0.0,1,400,6,0,71,3.0,0.0,0.0,2162.909132556778,2538.976986832025,0.0,14347.6,0,70,1,9548,201711718,,,72.0,,0.0,3.0,5.0,0.0,1.0,1.0,2021.5282714820714,0.0,1607.0,0.0,0.0,15210.0,0,5,1,85.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4701.886119388802,0.3277123783342721,0.3091312373036688,15210.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11719,2,87.0,3,0.0,3,300,2,0,78,4.0,0.0,0.0,428.0056653099287,3046.77238419843,0.0,11908.32,0,71,1,9549,201711719,,,77.0,,0.0,0.0,4.0,0.0,1.0,1.0,3278.6865260550326,0.0,318.0,0.0,0.0,16199.0,0,5,1,80.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3474.7780495083584,0.2917941447247268,0.21450571328528664,16199.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +11720,1,40.0,4,170.0,9,111,6,0,52,4.0,0.0,0.0,1547.8192298943961,247.7050718860512,0.0,25088.78,0,50,2,9551,201711720,,,920.0,258.0,1.0,0.0,3.0,1.0,2.0,1.3,798.559871388282,0.0,1150.0,0.0,0.0,22410.0,0,1,3,67.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1795.5243017804473,0.07156682396595002,0.08012156634450902,17238.46153846154,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +11721,2,60.0,2,0.0,7,111,4,56,78,3.0,0.0,208.188947934516,2086.1911359446212,53.079658261296686,0.0,30057.261750603255,60,50,1,9552,201711721,,,300.0,,1.0,3.0,4.0,0.0,2.0,1.5,2135.2110902480745,0.0,1550.0,0.0,0.0,22163.0,1,5,1,92.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,2347.4597421404337,0.07809958743475093,0.10591795975907746,14775.333333333334,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +11722,1,40.0,5,30.0,99,112,4,0,56,1.0,0.0,0.0,403.7789295376686,0.0,0.0,9775.72,0,43,2,9553,201711722,,,,,1.0,1.0,1.0,0.0,1.0,1.0,4524.005347545967,0.0,300.0,0.0,0.0,6262.0,0,1,3,25.0,7,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,403.7789295376686,0.041304265009397635,0.06448082554098827,6262.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11723,2,54.0,2,0.0,99,111,2,77,38,9.0,0.0,0.0,0.0,0.0,0.0,26738.58753375566,71,50,2,9555,201711723,,,,,2.0,2.0,4.0,1.0,3.0,2.0,2958.938492953918,0.0,0.0,0.0,0.0,64974.0,7,1,3,110.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,32487.0,9,5,9,9_0,9_4,9_0_0 +11724,2,77.0,1,0.0,99,111,2,0,74,10.0,0.0,0.0,1852.235525285104,0.0,4891.411811729099,88441.67262985985,0,30,1,9557,201711724,,,567.0,,0.0,2.0,5.0,0.0,1.0,1.0,2296.416143954414,870.7440276494195,1016.0,2254.0,0.0,57300.0,0,5,5,160.0,8,7.0,1,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,6743.647337014203,0.07624965852056262,0.11769018040164403,57300.0,10,5,10,10_1,10_3,10_0_0 +11725,2,48.0,1,0.0,1,112,2,22,56,1.0,0.0,0.0,1116.8039771271344,0.0,2081.140280164101,42433.399999999994,50,31,1,9558,201711725,,,230.0,,2.0,0.0,11.0,2.0,4.0,2.5,2145.9386467358004,2006.0,0.0,0.0,0.0,22232.0,1,1,1,290.0,10,4.0,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3197.9442572912358,0.07536384681150311,0.1438442001300484,8892.8,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +11726,0,49.0,3,0.0,7,111,4,52,67,6.0,0.0,0.0,0.0,0.0,0.0,71017.87672205293,60,50,2,9559,201711726,,,,,3.0,0.0,4.0,3.0,5.0,2.8,2333.1700678960447,0.0,0.0,0.0,0.0,61226.0,1,1,5,100.0,10,8.0,4,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0.0,0.0,0.0,21866.428571428572,6,3,6,6_0,6_4,6_0_0 +11727,2,24.0,3,0.0,4,111,2,0,38,8.0,0.0,0.0,468.38355826369553,0.0,0.0,14864.120315994118,0,0,2,956,201711727,,,,490.0,1.0,0.0,1.0,0.0,1.0,1.0,4035.389766958893,0.0,348.0,0.0,0.0,26170.0,0,1,3,28.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,468.38355826369553,0.03151101769269888,0.017897728630634144,26170.0,7,4,7,7_0,7_3,7_0_1 +11728,2,32.0,3,0.0,2,111,2,34,45,5.0,0.0,0.0,418.5841569540498,0.0,1466.7678899538319,28114.57272331155,20,30,2,9560,201711728,,,,,2.0,0.0,3.0,2.0,4.0,2.1,2759.4850883800054,0.0,311.0,829.0,0.0,43377.0,1,1,2,66.0,8,7.0,4,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1885.3520469078817,0.06705960163302138,0.04346432549295437,20655.714285714286,5,3,5,5_0,5_3,5_0_1 +11729,2,54.0,2,0.0,8,111,6,0,22,6.0,0.0,0.0,9270.423397971063,0.0,2226.5676947554184,328315.43746573495,0,31,1,9561,201711729,,,1200.0,,2.0,0.0,5.0,2.0,3.0,2.0,2888.903515891284,2146.176708149236,6000.0,0.0,0.0,61701.0,0,1,1,174.0,9,7.0,2,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,11496.991092726481,0.03501812519530514,0.18633395070949385,30850.5,8,4,8,8_1,8_3,8_0_0 +11730,2,71.0,3,0.0,99,111,1,0,77,5.0,0.0,0.0,23.382735313728638,0.0,43.57322620483163,22601.719999999998,0,70,2,9562,201711730,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2322.6675654256082,42.0,0.0,0.0,0.0,19150.0,0,5,3,67.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,66.95596151856026,0.002962427705438359,0.003496394857366071,19150.0,5,3,5,5_0,5_3,5_0_0 +11731,2,67.0,2,0.0,5,300,2,71,71,3.0,888.4153651177741,0.0,1292.0925745205395,44.23304855108057,0.0,14284.6,70,44,1,9563,201711731,,,222.0,,0.0,3.0,5.0,0.0,2.0,1.5,1671.2127602479477,0.0,960.0,0.0,0.0,22430.0,5,5,1,110.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2224.740988189394,0.1557440172065997,0.09918595578196139,14953.333333333334,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11732,2,53.0,2,0.0,3,221,4,0,52,5.0,0.0,0.0,48.45347154452023,0.0,0.0,35409.267849749776,0,31,1,9564,201711732,,,25.0,,1.0,2.0,4.0,0.0,1.0,1.0,1557.448832176808,0.0,36.0,0.0,0.0,20350.0,0,1,1,90.0,1,1.0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,48.45347154452023,0.0013683838861091456,0.0023810059727036965,20350.0,5,3,5,5_1,5_1,5_0_1 +11733,2,46.0,3,0.0,9,112,2,42,47,7.0,0.0,0.0,2018.894647688343,233.5504963497054,0.0,34259.17632237629,30,30,1,9567,201711733,,,296.0,,2.0,0.0,8.0,2.0,4.0,2.5,2426.7750564896055,0.0,1500.0,0.0,0.0,63766.0,1,1,2,133.0,7,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2252.4451440380485,0.06574720661240387,0.03532360731483939,25506.4,7,4,7,7_1,7_0,7_0_0 +11734,2,48.0,4,0.0,1,111,2,35,21,4.0,0.0,0.0,2826.45250676368,0.0,0.0,29809.98,20,41,8,9570,201711734,,,,,2.0,0.0,3.0,2.0,4.0,2.1,1790.191254660228,0.0,2100.0,0.0,0.0,36690.0,1,1,2,89.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2826.45250676368,0.09481564585966445,0.07703604542828237,17471.428571428572,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +11735,2,65.0,5,0.0,1,111,5,77,72,2.0,0.0,1748.7871626499343,942.1508355878933,636.9558991355602,0.0,20901.079999999994,70,50,1,9571,201711735,,,,,0.0,2.0,5.0,0.0,2.0,1.5,1912.0998886176812,0.0,700.0,0.0,0.0,18470.0,5,5,1,100.0,8,7.0,3,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3327.893897373388,0.15922114538451548,0.18017833770294467,12313.333333333334,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +11736,2,57.0,1,0.0,1,112,6,62,55,10.0,0.0,0.0,3375.5918509349094,1.769321942043223,0.0,34970.34,50,60,1,9574,201711736,,,400.0,,2.0,1.0,7.0,0.0,2.0,1.5,1975.5452363424936,0.0,2508.0,0.0,0.0,60893.0,1,1,1,220.0,8,3.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3377.3611728769524,0.09657787636256761,0.05546386568040584,40595.333333333336,9,5,9,9_1,9_1,9_1_0 +11737,1,41.0,2,345.0,99,112,6,0,46,1.0,0.0,0.0,456.2701903775655,0.0,1475.6144996640478,19965.739999999998,0,20,1,9575,201711737,,,,,1.0,0.0,4.0,2.0,3.0,1.6,2891.2785645430895,0.0,339.0,834.0,0.0,15560.0,0,4,3,85.0,9,3.0,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1931.8846900416133,0.09675998435528127,0.12415711375588774,9725.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +11738,1,61.0,4,353.0,9,111,2,85,68,3.0,0.0,0.0,740.261370819059,0.0,1769.3219420432229,15269.581750603258,71,71,1,9576,201711738,,,500.0,,2.0,2.0,3.0,1.0,3.0,2.0,2376.470022849822,0.0,550.0,1000.0,0.0,30917.0,6,4,3,60.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,2509.5833128622817,0.16435180438148772,0.08117163091057611,15458.5,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +11739,1,29.0,3,270.0,99,111,4,0,62,1.0,0.0,0.0,874.8543473316153,0.0,0.0,3617.7,0,43,2,9577,201711739,,,,,1.0,0.0,1.0,0.0,1.0,1.0,5758.852404192842,0.0,650.0,0.0,0.0,9060.0,0,4,3,39.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,874.8543473316153,0.24182611806717397,0.09656228999245202,9060.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11740,2,34.0,2,0.0,5,111,2,54,53,9.0,0.0,0.0,1749.7086946632305,0.0,0.0,23216.4,30,41,1,9578,201711740,,,150.0,,2.0,0.0,3.0,0.0,2.0,1.5,2468.885464656218,0.0,1300.0,0.0,0.0,50732.0,1,1,2,78.0,8,6.0,3,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1749.7086946632305,0.07536520281625189,0.03448925125489298,33821.333333333336,9,5,9,9_1,9_2,9_0_0 +11741,1,64.0,3,354.0,1,221,4,0,78,4.0,0.0,0.0,703.9212671606689,88.46609710216114,0.0,7470.5199999999995,0,50,2,9579,201711741,,,372.0,10.0,1.0,2.0,2.0,1.0,2.0,1.5,2324.9416495184864,0.0,523.0,0.0,0.0,24310.0,0,5,3,50.0,1,3.0,2,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,792.38736426283,0.10606856875596747,0.03259511987917853,16206.666666666666,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +11742,2,44.0,3,0.0,6,111,2,0,54,7.0,0.0,0.0,471.07541779394666,0.0,2653.9829130648345,25549.120000000003,0,71,1,958,201711742,,,400.0,,2.0,0.0,4.0,1.0,2.0,1.5,2229.7244789065344,0.0,350.0,1500.0,0.0,38892.0,0,1,3,95.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3125.058330858781,0.12231569348998246,0.0803522146163422,25928.0,7,4,7,7_1,7_3,7_0_0 +11743,2,49.0,2,0.0,1,111,2,31,38,10.0,0.0,0.0,1637.9965241578088,0.0,5435.357005956781,92151.69665845404,20,12,1,9580,201711743,,,,,2.0,1.0,7.0,4.0,6.0,3.3,1683.49190126619,0.0,1217.0,3072.0,0.0,122669.0,1,1,3,200.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,7073.353530114589,0.07675771349420593,0.05766211129229544,37172.42424242425,9,5,9,9_1,9_3,9_1_0 +11744,2,41.0,2,0.0,5,111,1,0,31,6.0,0.0,0.0,1211.3367886130059,0.0,0.0,39551.119999999995,0,12,1,9581,201711744,,,,,1.0,0.0,5.0,2.0,3.0,1.6,2299.0600924097116,0.0,900.0,0.0,0.0,36579.0,0,1,3,90.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,1211.3367886130059,0.030627117224822104,0.033115634342464416,22861.875,6,3,6,6_1,6_4,6_0_0 +11745,2,73.0,2,0.0,7,120,4,0,78,5.0,0.0,485.77421184720396,2018.894647688343,645.8025088457764,0.0,24437.670875301632,0,50,1,9582,201711745,,,100.0,,0.0,0.0,4.0,0.0,1.0,1.0,1869.377655043618,0.0,1500.0,0.0,0.0,19683.0,0,5,1,85.0,0,0.0,1,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3150.4713683813234,0.12891864304324532,0.1600605277844497,19683.0,5,3,5,5_1,5_0,5_0_0 +11746,2,53.0,3,0.0,2,111,1,46,34,9.0,0.0,0.0,541.0637655804759,0.0,0.0,52877.68,42,30,2,9583,201711746,,,,,2.0,1.0,4.0,0.0,2.0,1.5,1715.5498076895303,0.0,402.0,0.0,0.0,53550.0,1,1,2,92.0,8,7.0,3,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,541.0637655804759,0.010232365822034474,0.010103898516908981,35700.0,9,5,9,9_0,9_3,9_0_1 +11747,2,66.0,2,0.0,6,221,2,77,74,7.0,0.0,0.0,2997.7465543813087,92.0047409862476,645.2572531169102,59761.34330704275,50,30,1,9584,201711747,,,300.0,,0.0,2.0,7.0,0.0,2.0,1.5,1113.4276312424765,621.9600197495854,1970.0,0.0,0.0,39432.0,5,5,1,150.0,1,3.0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,3735.0085484844667,0.06249873817753196,0.09472024113624637,26288.0,7,4,7,7_1,7_1,7_0_0 +11748,2,68.0,3,0.0,2,111,1,86,78,3.0,0.0,0.0,323.0231436301349,0.0,240.62778411787832,15376.930875301625,71,71,2,9587,201711748,,,480.0,299.0,0.0,0.0,3.0,0.0,2.0,1.5,3595.626372156116,0.0,240.0,136.0,0.0,21230.0,5,5,3,63.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,563.6509277480131,0.03665561953285147,0.026549737529345887,14153.333333333334,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +11749,2,54.0,4,0.0,1,111,4,0,64,1.0,0.0,0.0,672.964882562781,0.0,0.0,4931.791191295744,0,60,2,9589,201711749,,,,,1.0,3.0,2.0,0.0,1.0,1.0,2816.1829699666023,0.0,500.0,0.0,0.0,5070.0,0,4,3,40.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,672.964882562781,0.13645445568549525,0.1327346908407852,5070.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +11750,2,68.0,3,0.0,5,111,2,0,74,8.0,0.0,1596.115267497956,689.1160397442877,0.0,0.0,36297.77717191821,0,60,1,959,201711750,,,350.0,,0.0,0.0,6.0,0.0,1.0,1.0,2205.7263763888045,0.0,512.0,0.0,0.0,30897.0,0,5,1,140.0,9,7.0,1,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2285.231307242244,0.0629578857244794,0.07396288659877152,30897.0,8,4,8,8_1,8_3,8_0_0 +11751,2,46.0,3,0.0,5,111,2,43,45,7.0,0.0,0.0,640.2415621616174,0.0,1193.076431798961,57310.35087530162,33,31,2,9591,201711751,,,,495.0,2.0,1.0,3.0,1.0,3.0,2.0,4348.464725795722,1150.0,0.0,0.0,0.0,55270.0,1,1,3,65.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1833.3179939605784,0.031989299768022575,0.033170218816004675,27635.0,8,4,8,8_0,8_4,8_0_0 +11752,1,29.0,3,256.0,99,111,2,0,55,2.0,0.0,0.0,201.8894647688343,0.0,1592.3897478389006,6459.270875301629,0,50,2,9593,201711752,,,,119.0,1.0,0.0,2.0,0.0,1.0,1.0,2854.836244625099,0.0,150.0,900.0,0.0,11902.0,0,4,3,43.0,6,5.0,1,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1794.279212607735,0.27778355285710904,0.1507544288865514,11902.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11753,2,50.0,3,0.0,1,111,4,0,62,8.0,0.0,0.0,807.5578590753372,495.4101437721024,0.0,20012.499999999996,0,50,1,9594,201711753,,,100.0,,1.0,0.0,3.0,1.0,2.0,1.5,2603.9444475202267,0.0,600.0,0.0,0.0,39638.0,0,1,1,70.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,1302.9680028474395,0.06510770782498138,0.032871688855326694,26425.333333333332,7,4,7,7_1,7_3,7_1_0 +11754,2,50.0,3,0.0,1,111,5,21,46,7.0,0.0,874.3935813249672,1615.1157181506744,58.38762408742635,0.0,34023.46,50,0,1,9595,201711754,,,,,2.0,2.0,4.0,0.0,2.0,1.5,2796.600930344223,0.0,1200.0,0.0,0.0,36010.0,1,4,1,70.0,7,5.0,3,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2547.896923563068,0.07488647314420897,0.0707552603044451,24006.666666666668,7,4,7,7_1,7_2,7_1_0 +11755,2,33.0,8,0.0,8,111,4,0,45,6.0,0.0,0.0,269.1859530251124,0.0,0.0,15830.32,0,31,2,9597,201711755,,,,410.0,1.0,0.0,1.0,0.0,1.0,1.0,4366.270625355692,0.0,200.0,0.0,0.0,22470.0,0,1,3,25.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,269.1859530251124,0.017004454301941616,0.011979793192038825,22470.0,6,3,6,6_0,6_4,6_0_0 +11756,2,70.0,2,0.0,5,111,2,74,74,9.0,0.0,0.0,942.1508355878933,194.62541362475451,0.0,20377.371693502602,50,50,1,9598,201711756,,,130.0,,0.0,1.0,5.0,0.0,2.0,1.5,2348.088784124062,0.0,700.0,0.0,0.0,51638.0,5,5,1,104.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1136.7762492126478,0.055786205714405894,0.02201433535792726,34425.333333333336,9,5,9,9_1,9_3,9_0_0 +11757,2,69.0,1,0.0,1,112,2,0,77,4.0,0.0,0.0,1084.819390691203,92.0047409862476,0.0,14198.04,0,70,2,9599,201711757,,,,308.0,0.0,2.0,2.0,0.0,1.0,1.0,3686.17233869451,0.0,806.0,0.0,0.0,18288.0,0,5,3,50.0,8,1.0,1,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,1176.8241316774504,0.08288637950572406,0.06434952601035927,18288.0,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +11758,2,69.0,2,0.0,6,111,2,0,74,9.0,0.0,0.0,985.2205880719114,0.0,0.0,35096.380000000005,0,50,8,96,201711758,,,,440.0,0.0,0.0,3.0,0.0,1.0,1.0,2616.1321550313032,0.0,732.0,0.0,0.0,35108.0,0,5,3,81.0,6,4.0,1,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,985.2205880719114,0.028071857783392797,0.028062566596556666,35108.0,9,5,9,9_0,9_2,9_0_0 +11759,2,72.0,3,0.0,99,300,2,72,72,4.0,0.0,69.396315978172,1615.1157181506744,212.31863304518674,0.0,34583.6916935026,71,50,1,960,201711759,,,160.0,,0.0,3.0,7.0,0.0,3.0,2.0,2980.892116353221,0.0,1200.0,0.0,0.0,32568.0,5,5,1,180.0,0,0.0,5,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1896.8306671740331,0.054847547334872855,0.058242160009028286,16284.0,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11760,2,45.0,3,0.0,1,112,5,21,63,5.0,0.0,693.9631597817199,1144.0403003567276,0.0,1061.5931652259337,28132.38,44,50,1,9600,201711760,,,847.0,,2.0,0.0,6.0,2.0,4.0,2.1,2035.3410173816487,0.0,850.0,600.0,0.0,38304.0,1,1,2,150.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2899.596625364381,0.10306972340642281,0.07569957772985539,18240.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11761,2,69.0,1,0.0,1,111,2,0,74,10.0,0.0,0.0,0.0,0.0,2388.5846217583507,69024.4,0,10,1,9601,201711761,,,,,0.0,3.0,6.0,0.0,1.0,1.0,6997.54251435442,0.0,0.0,1350.0,0.0,53910.0,0,5,1,180.0,8,7.0,1,7,0,1,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2388.5846217583507,0.03460493132513069,0.044306893373369516,53910.0,10,5,10,10_1,10_3,10_1_0 +11762,2,37.0,1,0.0,9,120,5,0,43,10.0,0.0,0.0,305.5260566835026,0.0,0.0,21534.76,0,33,1,9602,201711762,,,380.0,,1.0,0.0,4.0,0.0,1.0,1.0,2004.335597139316,0.0,227.0,0.0,0.0,64367.0,0,1,2,106.0,0,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,305.5260566835026,0.014187576582395282,0.004746625703908876,64367.0,10,5,10,10_1,10_0,10_0_0 +11763,2,34.0,2,0.0,6,300,2,84,53,6.0,0.0,346.98157989085996,1402.4588152608355,0.0,0.0,50412.40000000001,43,31,1,9603,201711763,,,529.0,,1.0,0.0,6.0,2.0,4.0,2.1,1994.4008951409166,0.0,1042.0,0.0,0.0,43696.0,3,1,2,220.0,0,1.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1749.4403951516956,0.03470258101482364,0.04003662566714792,20807.619047619046,5,3,5,5_1,5_1,5_0_0 +11764,1,69.0,2,260.0,99,111,6,0,78,3.0,0.0,0.0,387.6277723561618,0.0,0.0,8280.631191295744,0,71,2,9604,201711764,,,,216.0,0.0,2.0,1.0,0.0,1.0,1.0,5689.169428806103,0.0,288.0,0.0,0.0,15420.0,0,5,3,30.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,387.6277723561618,0.04681137988171965,0.025137987831138898,15420.0,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +11765,1,58.0,3,140.0,2,111,1,68,21,1.0,0.0,0.0,1130.581002705472,0.0,636.9558991355602,45235.22175060326,50,60,2,9605,201711765,,,,,5.0,1.0,3.0,3.0,5.0,3.0,3105.3891404011183,0.0,840.0,360.0,0.0,22150.0,1,1,3,60.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1767.5369018410322,0.03907435032784956,0.07979850572645744,7383.333333333333,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11766,2,42.0,4,0.0,9,111,1,52,52,6.0,0.0,0.0,376.8603342351573,0.0,212.31863304518674,22223.92,31,31,2,9607,201711766,,,,,2.0,0.0,4.0,1.0,3.0,1.8,2162.269941633726,0.0,280.0,120.0,0.0,38210.0,4,1,2,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,589.1789672803441,0.026511028085069787,0.015419496657428528,21227.777777777777,6,3,6,6_0,6_4,6_0_0 +11767,2,77.0,2,0.0,4,221,2,0,78,1.0,1903.7472109666587,0.0,471.07541779394666,233.5504963497054,0.0,14174.24,0,71,1,9608,201711767,,,350.0,,0.0,4.0,6.0,0.0,1.0,1.0,2676.1217392575672,0.0,350.0,0.0,0.0,9630.0,0,5,1,100.0,1,1.0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2608.373125110311,0.18402207985121677,0.27085909918071766,9630.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +11768,2,62.0,2,0.0,6,112,2,72,21,10.0,0.0,0.0,2368.836386620989,0.0,3328.0945729833024,66669.72238259148,50,71,1,961,201711768,,,407.0,,1.0,2.0,8.0,0.0,2.0,1.5,2047.6946271367974,0.0,1760.0,1881.0,0.0,79600.0,5,5,1,200.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,5696.930959604291,0.08545004772799009,0.07156948441713934,53066.666666666664,10,5,10,10_1,10_0,10_0_0 +11769,1,72.0,5,309.0,1,111,1,0,78,2.0,0.0,0.0,710.6509159862967,0.0,212.31863304518674,11899.71087530163,0,71,2,9610,201711769,,,,21.0,0.0,7.0,2.0,0.0,1.0,1.0,4147.754754233889,0.0,528.0,120.0,0.0,13378.0,0,5,3,50.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,922.9695490314834,0.07756235077502154,0.06899159433633453,13378.0,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +11770,2,48.0,1,0.0,7,400,2,22,37,10.0,782.1228125054689,138.792631956344,1235.563524385266,113.23660429076627,0.0,31543.04,20,20,1,9611,201711770,,,494.0,,2.0,2.0,5.0,0.0,2.0,1.5,2008.663239800065,0.0,918.0,0.0,0.0,68017.0,1,1,1,180.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2269.7155731378452,0.07195614541711405,0.033369827736269536,45344.666666666664,10,5,10,10_1,10_0,10_0_0 +11771,0,89.0,3,0.0,1,211,2,0,78,6.0,0.0,0.0,137.2848360428073,0.0,1719.7809276660128,14653.1,0,70,1,9612,201711771,,,,,0.0,2.0,4.0,0.0,1.0,1.0,1759.6541369098147,0.0,102.0,972.0,0.0,22076.0,0,5,5,60.0,2,3.0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1857.06576370882,0.12673535045204223,0.08412147869672132,22076.0,6,3,6,6_1,6_1,6_1_0 +11772,2,27.0,3,0.0,5,111,2,0,46,7.0,0.0,0.0,601.2703366387364,0.0,1120.4543881242419,15707.92,0,31,2,9613,201711772,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3008.704350639303,1080.0,0.0,0.0,0.0,30160.0,0,1,2,64.0,9,7.0,1,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1721.7247247629782,0.10960870215553543,0.057086363553149146,30160.0,8,4,8,8_0,8_3,8_0_0 +11773,2,52.0,1,0.0,2,112,2,63,63,5.0,0.0,0.0,1345.929765125562,0.0,0.0,33226.36,50,50,2,9614,201711773,,,,476.0,2.0,2.0,3.0,1.0,3.0,2.0,2324.644797882951,0.0,1000.0,0.0,0.0,38492.0,1,1,3,35.0,9,2.0,4,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1345.929765125562,0.04050789087716987,0.03496648044075553,19246.0,5,3,5,5_0,5_1,5_0_1 +11774,2,45.0,4,0.0,7,111,4,0,43,5.0,0.0,0.0,814.287507900965,0.0,0.0,43968.33999999999,0,31,1,9615,201711774,,,,,1.0,0.0,2.0,1.0,2.0,1.3,787.1016656150987,0.0,605.0,0.0,0.0,26498.0,0,1,2,43.0,9,7.0,2,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,814.287507900965,0.01851986015166743,0.030730149743413277,20383.076923076922,5,3,5,5_1,5_3,5_0_0 +11775,1,65.0,3,65.0,7,111,2,77,78,4.0,0.0,0.0,1130.581002705472,0.0,1273.9117982711205,19981.925846751303,50,50,1,9617,201711775,,,350.0,,0.0,4.0,4.0,0.0,2.0,1.5,2895.0681514910616,0.0,840.0,720.0,0.0,23880.0,5,5,3,85.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,2404.4928009765927,0.12033338625203233,0.1006906533072275,15920.0,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +11776,2,63.0,3,0.0,6,111,6,77,74,8.0,0.0,0.0,1356.6972032465665,0.0,0.0,66830.2,31,50,1,962,201711776,,,751.0,,0.0,2.0,6.0,0.0,2.0,1.5,3358.8804054873863,0.0,1008.0,0.0,0.0,41118.0,6,5,1,173.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1356.6972032465665,0.020300660528422276,0.03299521385394636,27412.0,8,4,8,8_1,8_3,8_0_0 +11777,1,54.0,5,22.0,4,111,1,68,65,1.0,0.0,0.0,444.15682249143543,0.0,601.5694602946958,25455.600000000002,71,60,2,9620,201711777,,,,396.0,2.0,0.0,3.0,3.0,5.0,2.4,2261.682481656582,0.0,330.0,340.0,0.0,24287.0,1,1,3,70.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1045.7262827861312,0.04108040206422677,0.043057038036238775,10119.583333333334,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +11778,2,48.0,2,0.0,9,120,2,42,63,10.0,0.0,0.0,1144.0403003567276,0.0,1503.9236507367395,57513.72,30,71,1,9621,201711778,,,600.0,,2.0,0.0,5.0,2.0,4.0,2.1,2366.7069150071957,0.0,850.0,850.0,0.0,77228.0,1,1,2,135.0,0,1.0,4,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2647.963951093467,0.04604056129726032,0.034287615257334994,36775.23809523809,9,5,9,9_1,9_1,9_0_0 +11779,2,42.0,3,0.0,9,111,1,0,53,8.0,0.0,0.0,201.8894647688343,0.0,0.0,42413.69672205293,0,42,2,9622,201711779,,,,,1.0,0.0,3.0,0.0,1.0,1.0,2648.3603744440666,0.0,150.0,0.0,0.0,30454.0,0,1,2,60.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,201.8894647688343,0.004760006327481052,0.006629325040022142,30454.0,8,4,8,8_0,8_4,8_0_0 +11780,2,49.0,2,0.0,4,112,1,33,37,5.0,0.0,0.0,819.6712269614673,0.0,2756.603585703341,48970.78115202909,31,20,1,9623,201711780,,,441.0,,2.0,0.0,7.0,2.0,4.0,2.5,1387.8415421483091,0.0,609.0,1558.0,0.0,52126.0,1,1,1,139.0,9,2.0,4,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,3576.2748126648085,0.0730287475211456,0.06860827250632714,20850.4,5,3,5,5_1,5_1,5_0_1 +11781,2,79.0,3,0.0,6,221,4,0,78,3.0,0.0,0.0,2503.4293631335454,109.69796040667983,0.0,20984.071191295745,0,70,1,9624,201711781,,,200.0,,0.0,3.0,5.0,0.0,1.0,1.0,2996.6551633079116,0.0,1860.0,0.0,0.0,14897.0,0,5,1,110.0,1,3.0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2613.127323540225,0.12452909160087858,0.1754129907726539,14897.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11782,2,32.0,2,0.0,1,111,2,37,34,9.0,0.0,0.0,995.9880261929159,0.0,0.0,36387.600000000006,20,30,2,9625,201711782,,,,,2.0,0.0,3.0,0.0,2.0,1.5,2737.730099221934,0.0,740.0,0.0,0.0,52659.0,1,1,2,51.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,995.9880261929159,0.02737163281428057,0.018913918346207027,35106.0,9,5,9,9_0,9_4,9_1_0 +11783,2,51.0,1,0.0,3,111,2,0,31,10.0,3490.203220105541,0.0,1036.3659191466827,0.0,0.0,74297.36000000002,0,20,1,9628,201711783,,,758.0,,1.0,1.0,7.0,1.0,2.0,1.5,1067.975760373807,0.0,770.0,0.0,0.0,86871.0,0,1,1,166.0,5,4.0,2,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,4526.569139252224,0.060925033396236734,0.05210679213146187,57914.0,10,5,10,10_1,10_2,10_0_1 +11784,2,81.0,3,0.0,5,111,2,77,77,5.0,0.0,0.0,476.45913685444896,0.0,605.1081041787822,19092.52,71,70,1,9629,201711784,,,240.0,,0.0,3.0,4.0,0.0,2.0,1.5,2111.8026830561876,0.0,354.0,342.0,0.0,29366.0,5,5,1,94.0,7,5.0,3,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1081.5672410332313,0.056648742074552304,0.036830594600327976,19577.333333333332,5,3,5,5_1,5_2,5_0_0 +11785,1,55.0,4,329.0,3,111,1,56,55,1.0,0.0,0.0,791.4067018938305,0.0,594.492172526523,15345.980000000001,71,71,2,963,201711785,,,,31.0,2.0,0.0,3.0,1.0,3.0,2.0,2175.526562221107,0.0,588.0,336.0,0.0,16528.0,4,4,3,50.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1385.8988744203534,0.09031022290009197,0.08385157759077647,8264.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11786,2,89.0,3,0.0,1,111,2,0,71,2.0,2696.9752155360998,0.0,640.6625681997675,212.31863304518674,0.0,12250.74,0,71,1,9630,201711786,,,160.0,,0.0,2.0,4.0,0.0,1.0,1.0,1730.3311317760272,0.0,476.0,0.0,0.0,11900.0,0,5,5,80.0,4,4.0,1,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,3549.956416781054,0.2897748557867569,0.29831566527571884,11900.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +11787,2,64.0,3,0.0,1,111,2,55,75,6.0,0.0,0.0,1035.0199893815573,0.0,2549.5929184842844,27975.260000000002,50,50,1,9631,201711787,,,260.0,,1.0,2.0,5.0,0.0,2.0,1.5,1572.9639805476356,0.0,769.0,1441.0,0.0,33505.0,5,5,1,98.0,8,7.0,3,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,3584.6129078658414,0.12813510608537118,0.10698740211508256,22336.666666666668,6,3,6,6_1,6_3,6_1_0 +11788,2,57.0,2,0.0,5,112,4,78,56,2.0,0.0,0.0,1480.522741638118,198.16405750884095,0.0,10233.741750603256,70,71,1,9632,201711788,,,340.0,309.0,1.0,2.0,3.0,0.0,2.0,1.5,2204.62734228374,0.0,1100.0,0.0,0.0,18722.0,5,1,3,87.0,8,2.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1678.686799146959,0.16403450859486504,0.08966386065307974,12481.333333333334,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +11789,2,62.0,1,0.0,1,112,2,74,31,10.0,1586.456009138882,0.0,5420.281357753579,0.0,1073.8856792653332,95762.91369488955,10,20,1,9636,201711789,,,500.0,,1.0,6.0,8.0,0.0,2.0,1.5,1914.5558248272282,1035.1126702695867,3599.0,0.0,0.0,221633.0,5,1,1,120.0,6,0.0,3,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,8080.623046157794,0.08438154954122937,0.0364594760083462,147755.33333333334,10,5,10,10_1,10_0,10_1_0 +11790,2,73.0,3,0.0,4,111,2,72,75,7.0,2646.2086232436554,0.0,1039.0577786769338,291.9381204371318,0.0,35157.950875301634,44,50,1,9637,201711790,,,442.0,,0.0,3.0,5.0,0.0,2.0,1.5,1415.071213399458,0.0,772.0,0.0,0.0,40460.0,5,5,1,101.0,8,7.0,3,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,3977.204522357721,0.11312390009486294,0.09829966688971134,26973.333333333332,7,4,7,7_1,7_3,7_0_1 +11791,2,46.0,3,0.0,1,111,4,0,54,5.0,0.0,0.0,746.9910196446868,0.0,0.0,30373.160000000003,0,31,2,9638,201711791,,,150.0,313.0,1.0,0.0,2.0,0.0,1.0,1.0,2506.6505617301104,0.0,555.0,0.0,0.0,19610.0,0,1,3,54.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,746.9910196446868,0.024593786739499177,0.03809235184317628,19610.0,5,3,5,5_0,5_3,5_1_0 +11792,2,50.0,1,0.0,3,111,1,46,34,6.0,0.0,0.0,686.4241802140366,0.0,254.7823596542241,69914.24175060325,31,31,8,964,201711792,,,,825.0,2.0,0.0,3.0,2.0,4.0,2.5,2683.4482130663773,0.0,510.0,144.0,0.0,56375.0,1,1,3,97.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,941.2065398682607,0.01346230061717203,0.016695459687241874,22550.0,6,3,6,6_0,6_3,6_0_1 +11793,1,32.0,5,386.0,1,111,4,0,85,2.0,0.0,0.0,565.290501352736,169.8549064361494,0.0,16593.739999999998,0,50,2,9640,201711793,,,,,0.0,0.0,2.0,2.0,3.0,1.6,1613.001903434459,0.0,420.0,0.0,0.0,19682.0,0,6,3,32.0,8,6.0,2,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,735.1454077888854,0.044302574813687906,0.037351153733811884,12301.25,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +11794,2,65.0,3,0.0,7,111,2,78,78,2.0,0.0,0.0,551.8312037014804,0.0,813.8880933398825,20228.019999999997,70,50,8,9641,201711794,,,259.0,422.0,0.0,2.0,3.0,0.0,2.0,1.5,2741.6610990677787,0.0,410.0,460.0,0.0,18959.0,6,5,3,49.0,6,4.0,3,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1365.719297041363,0.06751621251320511,0.07203540782959876,12639.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +11795,2,69.0,4,0.0,7,111,2,77,77,4.0,0.0,0.0,1712.0226612397148,0.0,0.0,32129.70932287755,30,30,2,9642,201711795,,,,,0.0,3.0,3.0,0.0,2.0,1.5,2699.3992163732796,0.0,1272.0,0.0,0.0,25770.0,5,5,1,80.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1712.0226612397148,0.053284722996877254,0.0664347171610289,17180.0,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +11796,2,45.0,3,0.0,8,120,2,48,62,4.0,951.8736054833294,0.0,672.964882562781,247.7050718860512,0.0,26203.0,31,50,1,9643,201711796,,,550.0,,2.0,0.0,4.0,2.0,4.0,2.3,2552.602944793391,0.0,500.0,0.0,0.0,38401.0,1,1,2,95.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1872.5435599321615,0.07146294546167085,0.04876288533976098,16696.08695652174,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11797,2,47.0,2,0.0,8,221,2,0,43,4.0,0.0,0.0,1408.1622506306512,0.0,3699.2318906189716,74107.15999999999,0,33,1,9646,201711797,,,,,2.0,0.0,6.0,3.0,4.0,2.5,544.8023218122843,252.0,942.0,1943.0,0.0,39072.0,0,1,2,140.0,1,2.0,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,5107.394141249622,0.06891903752956696,0.13071749952010706,15628.8,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11798,2,59.0,2,0.0,1,111,2,72,43,4.0,0.0,3555.867230721533,1313.6274507625485,0.0,0.0,46235.14000000001,12,33,1,9647,201711798,,,,,1.0,4.0,6.0,1.0,3.0,2.0,1909.1857906622524,0.0,976.0,0.0,0.0,37206.0,5,1,1,200.0,6,4.0,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4869.494681484081,0.10532021059056122,0.13087928510143745,18603.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +11799,1,68.0,3,82.0,1,300,2,77,78,1.0,0.0,0.0,775.2555447123236,1967.485999552064,0.0,12001.025846751301,71,71,1,9648,201711799,,,,,0.0,1.0,3.0,0.0,2.0,1.5,3055.7708500247577,0.0,576.0,0.0,0.0,15574.0,5,5,3,61.0,0,0.0,3,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,2742.741544264388,0.22854225791096455,0.17611028279596685,10382.666666666666,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +11800,1,47.0,4,503.0,4,111,1,0,85,1.0,0.0,0.0,1076.7438121004495,0.0,0.0,13806.670875301628,0,71,2,9650,201711800,,,,357.0,0.0,0.0,5.0,6.0,7.0,3.6,1036.9230152660678,0.0,800.0,0.0,0.0,19626.0,0,6,3,64.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1076.7438121004495,0.07798721515311897,0.05486313115767092,5451.666666666667,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +11801,2,55.0,2,0.0,1,211,5,85,35,2.0,0.0,0.0,942.1508355878933,557.3364117436153,0.0,55190.4156848708,50,60,1,9651,201711801,,,,,1.0,0.0,8.0,2.0,4.0,2.1,4307.747061041822,0.0,700.0,0.0,0.0,25837.0,6,1,1,450.0,1,3.0,4,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1499.4872473315086,0.02716934142865242,0.058036430209835066,12303.333333333332,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +11802,2,70.0,2,0.0,5,211,6,74,74,8.0,0.0,0.0,1585.505263317912,0.0,0.0,36158.86,31,31,1,9653,201711802,,,296.0,,0.0,2.0,5.0,0.0,2.0,1.5,1829.9437507279742,0.0,1178.0,0.0,0.0,46660.0,5,5,1,90.0,2,2.0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1585.505263317912,0.04384831997795041,0.033979967066393314,31106.666666666668,8,4,8,8_1,8_1,8_0_0 +11803,2,58.0,2,0.0,6,400,4,78,75,7.0,0.0,388.6193694777632,1204.607139787378,169.8549064361494,0.0,35484.2,50,33,1,9654,201711803,,,175.0,,0.0,3.0,5.0,0.0,2.0,1.5,2069.419737021706,0.0,895.0,0.0,0.0,36031.0,5,5,1,124.0,0,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1763.0814157012906,0.04968637916879317,0.0489323475812853,24020.666666666668,7,4,7,7_1,7_0,7_0_0 +11804,2,54.0,3,0.0,4,112,1,0,46,8.0,0.0,0.0,403.7789295376686,0.0,0.0,19867.08,0,31,2,9655,201711804,,,,,1.0,0.0,2.0,0.0,1.0,1.0,1924.5985571535355,0.0,300.0,0.0,0.0,31978.0,0,1,1,53.0,10,4.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,403.7789295376686,0.020324019913226733,0.012626772454114348,31978.0,9,5,9,9_0,9_2,9_0_1 +11805,2,80.0,4,0.0,1,400,4,72,74,1.0,0.0,346.98157989085996,1615.1157181506744,185.7788039145384,0.0,25479.52,70,30,1,9656,201711805,,,410.0,,0.0,0.0,5.0,0.0,2.0,1.5,2026.4460665038357,0.0,1200.0,0.0,0.0,13341.0,5,5,1,150.0,0,0.0,3,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2147.876101956073,0.08429813834625115,0.16099813371981658,8894.0,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +11806,2,40.0,3,0.0,9,221,9,85,46,5.0,0.0,0.0,1440.1448486843512,0.0,0.0,38832.348015878895,31,50,2,9657,201711806,,,480.0,720.0,1.0,0.0,3.0,2.0,4.0,2.1,5149.783456741006,0.0,1070.0,0.0,0.0,41490.0,4,1,3,69.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,1440.1448486843512,0.03708621606129671,0.034710649522399405,19757.142857142855,5,3,5,5_0,5_1,5_0_0 +11807,2,44.0,2,0.0,99,111,4,65,42,6.0,0.0,0.0,1884.3016711757866,106.15931652259337,0.0,36487.200000000004,71,42,1,9658,201711807,,,,,2.0,0.0,6.0,3.0,5.0,2.6,1788.5685138308659,0.0,1400.0,0.0,0.0,55292.0,1,1,3,100.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1990.46098769838,0.05455230841770209,0.03599907740176481,21266.153846153844,6,3,6,6_1,6_2,6_0_0 +11808,2,76.0,3,0.0,1,211,2,0,77,4.0,0.0,0.0,865.4328389757363,0.0,2040.028199175836,17266.760315994117,0,60,1,9659,201711808,,,100.0,,0.0,0.0,4.0,0.0,1.0,1.0,1630.1641638540227,0.0,643.0,1153.0,0.0,17540.0,0,5,1,100.0,3,3.0,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,2905.461038151572,0.1682690316526985,0.16564772167340777,17540.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +11809,0,68.0,4,0.0,4,120,5,0,78,1.0,0.0,1734.9078994543,0.0,0.0,0.0,7039.916974448147,0,71,1,966,201711809,,,,,0.0,0.0,4.0,0.0,1.0,1.0,3210.466056741394,0.0,0.0,0.0,0.0,9640.0,0,5,5,120.0,0,0.0,1,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,1734.9078994543,0.24643868752305817,0.1799696991135166,9640.0,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +11810,2,76.0,3,0.0,6,111,2,74,75,9.0,0.0,0.0,2358.0689484999843,0.0,0.0,22549.740315994117,41,30,1,9660,201711810,,,246.0,,0.0,2.0,6.0,0.0,2.0,1.5,1616.7909576936936,0.0,1752.0,0.0,0.0,45415.0,5,5,1,120.0,7,5.0,3,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2358.0689484999843,0.1045718893191621,0.05192268960695771,30276.666666666668,8,4,8,8_1,8_2,8_0_0 +11811,2,38.0,2,0.0,99,111,1,0,56,4.0,0.0,0.0,436.08124390068207,0.0,0.0,9733.240000000002,0,41,2,9662,201711811,,,120.0,260.0,1.0,3.0,2.0,0.0,1.0,1.0,3274.623668956741,0.0,324.0,0.0,0.0,17370.0,0,1,3,34.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,436.08124390068207,0.04480329714470022,0.02510542567073587,17370.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11812,2,78.0,2,0.0,2,111,1,0,75,8.0,0.0,0.0,134.5929765125562,0.0,1946.2541362475451,33044.56469104512,0,41,2,9664,201711812,1000.0,1000.0,,,0.0,2.0,3.0,0.0,1.0,1.0,2498.958606173006,0.0,100.0,1100.0,0.0,31573.0,0,5,1,75.0,7,5.0,1,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,2080.8471127601015,0.06297093431901067,0.06590590418269095,31573.0,8,4,8,8_0,8_2,8_0_1 +11813,2,41.0,2,0.0,8,120,5,54,47,5.0,0.0,83.27557917380639,2382.2956842722447,198.16405750884095,0.0,57820.79087530162,31,50,1,9666,201711813,,,,,2.0,0.0,5.0,2.0,4.0,2.3,2486.6717841132217,0.0,1770.0,0.0,0.0,43603.0,1,1,1,120.0,0,0.0,4,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2663.735320954892,0.04606881505131257,0.06109064332625948,18957.826086956524,5,3,5,5_1,5_0,5_0_0 +11814,2,57.0,2,0.0,3,111,2,52,38,10.0,0.0,0.0,833.1305246127229,0.0,1760.4753323330067,78738.74,60,42,8,9667,201711814,,,,,2.0,3.0,4.0,0.0,2.0,1.5,3042.3563106804736,0.0,619.0,995.0,0.0,60919.0,1,1,1,94.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2593.6058569457296,0.03293938735806198,0.042574662370454694,40612.666666666664,10,5,10,10_0,10_3,10_0_1 +11815,1,50.0,3,138.0,3,111,2,0,55,2.0,0.0,0.0,726.8020731678034,0.0,1571.157884534382,40756.27999999999,0,50,1,9668,201711815,,,400.0,242.0,1.0,1.0,5.0,2.0,3.0,2.0,552.6969337761205,0.0,540.0,888.0,0.0,25185.0,0,1,3,90.0,7,5.0,2,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,2297.9599577021854,0.056382966200599904,0.09124319863816499,12592.5,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +11816,2,57.0,3,0.0,2,300,4,0,77,2.0,0.0,0.0,1613.7697883855487,0.0,0.0,16563.89672205293,0,70,1,9669,201711816,,,650.0,,0.0,0.0,4.0,0.0,1.0,1.0,2117.546409579408,0.0,1199.0,0.0,0.0,12318.0,0,7,3,91.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1613.7697883855487,0.09742694098285455,0.13100907520584093,12318.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +11817,2,84.0,3,0.0,5,111,6,74,74,10.0,0.0,0.0,4522.594021842162,0.0,602.449866067852,38816.51866183133,41,31,1,967,201711817,,,290.0,,0.0,1.0,7.0,0.0,2.0,1.5,1999.8893192549824,580.6982080212382,3120.0,0.0,0.0,60515.0,5,5,1,117.0,9,7.0,3,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,5125.043887910014,0.13203254863114555,0.0846904715840703,40343.333333333336,9,5,9,9_1,9_3,9_0_0 +11818,2,85.0,3,0.0,7,111,4,0,72,4.0,0.0,0.0,1292.0925745205395,0.0,0.0,15314.4,0,71,2,9670,201711818,,,,268.0,0.0,8.0,2.0,0.0,1.0,1.0,3260.569034176899,0.0,960.0,0.0,0.0,15901.0,0,5,3,40.0,8,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1292.0925745205395,0.08437108698483385,0.08125857333001317,15901.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +11819,2,36.0,2,0.0,1,400,2,13,46,8.0,2379.684013708323,0.0,0.0,53.079658261296686,0.0,32402.859999999997,43,31,1,9671,201711819,,,,,2.0,0.0,5.0,3.0,5.0,2.4,1891.5243159892466,0.0,0.0,0.0,0.0,62446.0,1,1,2,160.0,0,0.0,4,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2432.7636719696197,0.07507867120277716,0.03895787835841559,26019.166666666668,7,4,7,7_1,7_0,7_1_0 +11820,2,64.0,1,0.0,1,111,2,75,35,10.0,0.0,0.0,2190.253988653709,0.0,5149.08667626266,90594.41879249009,41,41,2,9672,201711820,,,,,1.0,2.0,5.0,0.0,2.0,1.5,1852.445245063801,2280.5200724151464,684.0,1573.0,0.0,124516.0,5,5,1,207.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,7339.340664916369,0.08101316574178155,0.05894295243114434,83010.66666666667,10,5,10,10_0,10_4,10_1_0 +11821,2,79.0,2,0.0,6,212,5,77,77,6.0,0.0,138.792631956344,1288.110333623398,424.6372660903735,268.4714198163333,17145.228792599075,70,71,1,9673,201711821,,,130.0,,0.0,4.0,6.0,0.0,2.0,1.5,2003.9648869842636,258.7781675673967,850.0,0.0,0.0,34489.0,6,6,1,110.0,1,0.0,3,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2120.0116514864485,0.12365023979158415,0.061469211965741205,22992.666666666668,6,3,6,6_1,6_0,6_0_0 +11822,2,49.0,2,0.0,2,111,4,37,37,10.0,0.0,0.0,1410.534393851589,0.0,0.0,57817.399999999994,60,43,2,9674,201711822,,,,,2.0,0.0,2.0,0.0,2.0,1.5,3546.2569638519813,0.0,1048.0,0.0,0.0,68360.0,4,4,2,45.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1410.534393851589,0.02439636500173977,0.020633914479982283,45573.333333333336,10,5,10,10_0,10_4,10_0_1 +11823,2,72.0,2,0.0,3,111,1,77,74,4.0,866.2049809898297,0.0,278.6074613809913,0.0,307.86201791552077,23690.16,30,20,2,9675,201711823,546.0,546.0,,339.0,0.0,1.0,4.0,0.0,2.0,1.5,1980.5547097365477,0.0,207.0,174.0,0.0,26418.0,5,5,3,70.0,8,7.0,3,4,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1452.6744602863416,0.06131974035997822,0.05498805588183593,17612.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +11824,2,51.0,3,0.0,1,111,2,0,52,5.0,0.0,0.0,520.8748191035925,0.0,2300.11852465619,28536.280000000002,0,50,1,9678,201711824,,,160.0,,1.0,2.0,4.0,0.0,1.0,1.0,1287.4813844353264,0.0,387.0,1300.0,0.0,19230.0,0,1,1,100.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2820.9933437597824,0.09885638015045346,0.14669752177637974,19230.0,5,3,5,5_1,5_2,5_1_0 +11825,2,40.0,2,0.0,9,112,4,0,37,9.0,0.0,0.0,1691.8337147628313,0.0,0.0,40931.64000000001,0,20,1,9679,201711825,,,,900.0,1.0,0.0,4.0,1.0,2.0,1.3,1453.428185100918,0.0,1257.0,0.0,0.0,43784.0,0,1,3,91.0,9,3.0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1691.8337147628313,0.04133315241614631,0.03864045575467822,33680.0,9,5,9,9_1,9_1,9_0_0 +11826,2,57.0,1,0.0,5,111,6,0,35,10.0,4065.6742728605786,0.0,3013.8236487885,0.0,3633.408418898703,83545.01848523211,0,41,1,968,201711826,,,362.0,,1.0,0.0,7.0,2.0,3.0,2.0,527.1039803841803,3502.222967755004,790.55,0.0,0.0,109525.0,0,1,1,280.0,7,5.0,2,2,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,10712.906340547783,0.12822914561257123,0.09781242949598523,54762.5,10,5,10,10_1,10_2,10_0_0 +11827,2,69.0,3,0.0,1,111,2,0,77,4.0,0.0,0.0,1325.021667777956,0.0,2469.149484940459,25891.199999999997,0,41,1,9680,201711827,,,180.0,,0.0,2.0,4.0,0.0,1.0,1.0,1013.3117534883613,2380.0,0.0,0.0,0.0,17689.0,0,5,1,90.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3794.171152718415,0.14654288533240697,0.21449325302269293,17689.0,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +11828,1,44.0,4,120.0,4,111,2,0,55,2.0,0.0,0.0,684.7801056163386,0.0,1276.0730531414974,29476.44,0,50,2,9681,201711828,,,,920.0,2.0,0.0,5.0,2.0,3.0,1.8,597.0985847286131,1230.0,0.0,0.0,0.0,22824.0,0,1,3,78.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1960.853158757836,0.06652272658291965,0.08591189794767945,12680.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11829,2,18.0,2,0.0,3,111,2,0,84,1.0,0.0,0.0,0.0,0.0,0.0,8712.170875301628,0,41,8,9682,201711829,,,,,0.0,0.0,1.0,0.0,1.0,1.0,3842.303884708091,0.0,0.0,0.0,0.0,4.0,0,3,3,9.0,9,7.0,1,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0.0,0.0,0.0,4.0,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +11830,2,28.0,1,0.0,8,111,2,0,38,8.0,0.0,0.0,1436.1070593889747,0.0,0.0,14378.0,0,20,2,9683,201711830,,,,,1.0,0.0,3.0,0.0,1.0,1.0,4927.517225248508,0.0,1067.0,0.0,0.0,30792.0,0,1,2,59.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1436.1070593889747,0.09988225479127658,0.046638966594861477,30792.0,8,4,8,8_0,8_3,8_0_0 +11831,2,43.0,2,0.0,1,111,2,35,37,10.0,0.0,0.0,1082.1275311609518,0.0,1415.4575536345783,59793.14,30,20,2,9684,201711831,,,,,2.0,1.0,5.0,4.0,6.0,2.9,2249.979799033698,0.0,804.0,800.0,0.0,116191.0,1,1,2,120.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2497.58508479553,0.041770428594242244,0.021495512430356307,40065.86206896552,9,5,9,9_0,9_3,9_1_0 +11832,2,60.0,2,0.0,1,112,4,52,38,10.0,0.0,0.0,1166.9211063638622,0.0,0.0,37784.5,42,31,1,9685,201711832,,,600.0,,2.0,0.0,5.0,1.0,3.0,1.8,1560.7571575959598,0.0,867.0,0.0,0.0,84245.0,1,1,1,120.0,7,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1166.9211063638622,0.030883592646822434,0.01385151767302347,46802.777777777774,10,5,10,10_1,10_0,10_1_0 +11833,2,58.0,1,0.0,8,221,5,74,31,10.0,0.0,0.0,3573.443526408367,240.62778411787832,0.0,60521.0,31,10,1,9686,201711833,,,257.0,,1.0,2.0,5.0,0.0,2.0,1.5,1356.391877916319,0.0,2655.0,0.0,0.0,134050.0,5,1,1,160.0,1,3.0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3814.0713105262453,0.06302062607237563,0.028452602092698585,89366.66666666667,10,5,10,10_1,10_1,10_0_0 +11834,2,57.0,2,0.0,8,112,2,77,33,8.0,0.0,0.0,497.99401309645793,0.0,649.3411527298628,33184.796974448145,50,31,1,9687,201711834,,,150.0,,1.0,2.0,5.0,0.0,2.0,1.5,1795.2421862714846,0.0,370.0,367.0,0.0,47506.0,5,1,2,111.0,8,1.0,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1147.3351658263207,0.034574120393436596,0.024151373843858053,31670.666666666668,8,4,8,8_1,8_1,8_0_0 +11835,1,45.0,2,222.0,9,112,2,0,46,2.0,0.0,0.0,565.290501352736,973.1270681237726,0.0,28656.6,0,50,1,9688,201711835,,,490.0,308.0,3.0,0.0,4.0,2.0,3.0,2.0,945.9948679664767,0.0,420.0,0.0,0.0,23409.0,0,1,3,85.0,8,0.0,2,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1538.4175694765086,0.053684581195135105,0.06571906401283731,11704.5,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +11836,2,61.0,3,0.0,1,111,4,0,78,8.0,0.0,0.0,2691.859530251124,247.7050718860512,0.0,29038.90488779682,0,50,1,9689,201711836,,,264.0,,0.0,0.0,4.0,1.0,2.0,1.5,2646.976195678325,0.0,2000.0,0.0,0.0,42029.0,0,5,1,70.0,7,6.0,2,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2939.564602137175,0.10122849375674922,0.06994134055383604,28019.333333333332,8,4,8,8_1,8_2,8_1_0 +11837,2,47.0,2,0.0,1,112,2,42,21,8.0,0.0,0.0,1751.0546244283562,0.0,2584.9793573251486,84260.43999999999,30,42,1,969,201711837,,,814.0,,2.0,0.0,5.0,2.0,4.0,2.5,2388.484937134098,0.0,1301.0,1461.0,0.0,77699.0,1,1,1,160.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,4336.033981753505,0.0514599019629319,0.055805531367887684,31079.6,8,4,8,8_1,8_0,8_1_0 +11838,2,59.0,3,0.0,9,211,5,52,78,7.0,0.0,464.95531705375237,885.6217854526197,61.9262679715128,0.0,46237.08,50,50,1,9691,201711838,,,320.0,,1.0,6.0,4.0,0.0,2.0,1.5,1380.346523111254,0.0,658.0,0.0,0.0,36500.0,1,5,1,110.0,2,3.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1412.5033704778848,0.03054914736133607,0.03869872247884616,24333.333333333332,7,4,7,7_1,7_1,7_0_0 +11839,1,32.0,3,417.0,9,120,5,85,21,1.0,1110.5192063972174,652.3253701948167,672.964882562781,247.7050718860512,0.0,37014.95999999999,30,0,1,9692,201711839,,,140.0,,1.0,0.0,5.0,4.0,6.0,2.7,2376.9053209776507,0.0,500.0,0.0,0.0,26870.0,6,1,3,140.0,0,0.0,4,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,2683.514531040866,0.07249810700972976,0.09987028399854359,9951.85185185185,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +11841,2,46.0,3,0.0,7,112,2,56,68,5.0,0.0,0.0,969.0694308904046,56.61830214538313,0.0,62910.42,50,71,1,9695,201711841,,,,,2.0,0.0,4.0,1.0,3.0,2.0,2157.743976680793,0.0,720.0,0.0,0.0,37022.0,1,1,1,75.0,8,3.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1025.6877330357877,0.016303940317610146,0.027704816947647013,18511.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11842,2,56.0,1,0.0,1,112,4,43,34,10.0,0.0,313.67134822133744,4349.56385969008,33.61711689882124,3380.037404174796,87145.89333333333,30,30,1,9696,201711842,,,360.0,,2.0,1.0,4.0,1.0,3.0,2.0,1943.042619133729,3258.0,1884.0,0.0,0.0,84079.0,1,1,2,100.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,8076.889728985034,0.0926823906445127,0.0960631040924016,42039.5,10,5,10,10_1,10_0,10_1_0 +11843,2,89.0,3,0.0,9,112,4,0,71,5.0,0.0,0.0,1642.0343134531856,0.0,0.0,21363.88,0,70,2,9697,201711843,,,420.0,,0.0,5.0,3.0,0.0,1.0,1.0,3235.4235221360364,0.0,1220.0,0.0,0.0,21531.0,0,5,3,70.0,6,0.0,1,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,1642.0343134531856,0.07686030409519178,0.07626372734444223,21531.0,6,3,6,6_0,6_0,6_0_0 +11844,2,64.0,2,0.0,1,111,2,0,74,9.0,0.0,0.0,403.7789295376686,0.0,743.1152156581536,38751.08666666667,0,12,2,9699,201711844,,,,,0.0,1.0,3.0,0.0,1.0,1.0,3916.7449397845808,0.0,300.0,420.0,0.0,36621.0,0,5,1,52.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1146.8941451958221,0.029596438289880785,0.03131793629873084,36621.0,9,5,9,9_0,9_4,9_1_0 +11845,2,27.0,4,0.0,99,112,2,55,48,6.0,0.0,111.0341055650752,969.0694308904046,0.0,0.0,30893.974343836402,50,43,1,97,201711845,,,250.0,,2.0,0.0,4.0,1.0,3.0,1.8,2575.4177176820713,0.0,720.0,0.0,0.0,36818.0,4,1,3,90.0,9,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1080.1035364554798,0.034961624698538314,0.029336290305162688,20454.444444444445,5,3,5,5_1,5_0,5_0_0 +11846,1,31.0,4,408.0,99,300,6,0,67,3.0,0.0,0.0,1227.4879457945126,53.079658261296686,0.0,12332.48,0,50,1,9702,201711846,,,,174.0,1.0,0.0,5.0,2.0,3.0,1.6,105.8412419979695,0.0,912.0,0.0,0.0,22978.0,0,1,3,97.0,0,0.0,2,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1280.5676040558092,0.10383699013140985,0.0557301594593006,14361.25,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +11847,2,45.0,3,0.0,1,111,2,31,37,9.0,0.0,208.188947934516,801.6937821849817,0.0,1493.9391841656557,85019.52103350504,12,20,1,9703,201711847,,,360.0,,2.0,0.0,5.0,2.0,4.0,2.3,3172.463019466323,1440.0,0.0,0.0,0.0,77640.0,1,1,2,95.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2503.8219142851535,0.02944996494744344,0.03224912305879899,33756.52173913044,9,5,9,9_1,9_4,9_1_0 +11848,2,48.0,3,0.0,8,111,1,0,48,8.0,0.0,0.0,1082.1275311609518,0.0,1698.549064361494,21539.18951436439,0,50,2,9707,201711848,,,,670.0,1.0,1.0,2.0,0.0,1.0,1.0,3448.0827536410347,0.0,804.0,960.0,0.0,28870.0,0,1,3,40.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2780.6765955224455,0.12909847855083056,0.09631716645384293,28870.0,8,4,8,8_0,8_4,8_0_0 +11849,2,74.0,2,0.0,9,112,2,0,75,8.0,0.0,0.0,295.624582180712,0.0,550.8900741610855,17758.3458467513,0,31,2,9708,201711849,,,310.0,673.0,0.0,3.0,3.0,0.0,1.0,1.0,3507.3980293350164,531.0,0.0,0.0,0.0,27930.0,0,5,3,91.0,9,1.0,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,846.5146563417975,0.04766855334651894,0.03030843739139984,27930.0,8,4,8,8_0,8_1,8_0_0 +11850,2,25.0,2,0.0,7,111,1,47,54,7.0,0.0,0.0,333.79058175113937,0.0,0.0,21962.039999999997,43,30,2,9709,201711850,,,,350.0,2.0,0.0,2.0,0.0,2.0,1.5,5283.183222729135,0.0,248.0,0.0,0.0,36135.0,2,1,3,50.0,6,4.0,3,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,333.79058175113937,0.015198523532018856,0.009237320651754238,24090.0,7,4,7,7_0,7_2,7_0_0 +11851,2,59.0,1,0.0,6,112,4,55,42,10.0,0.0,0.0,201.8894647688343,212.31863304518674,0.0,30576.62,41,50,1,971,201711851,,,450.0,,2.0,4.0,6.0,0.0,2.0,1.5,1521.1736573794653,0.0,150.0,0.0,0.0,56168.0,4,1,1,120.0,7,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,414.208097814021,0.013546562629029011,0.007374449825773056,37445.333333333336,9,5,9,9_1,9_1,9_0_0 +11852,2,86.0,3,0.0,1,111,5,0,,2.0,4442.07682558887,0.0,837.1683139080995,240.62778411787832,0.0,26693.54238259149,0,71,1,9710,201711852,,,200.0,,0.0,2.0,6.0,1.0,2.0,1.5,2253.9284819094787,0.0,622.0,0.0,0.0,16300.0,0,5,1,80.0,9,7.0,2,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5519.872923614847,0.20678682673509446,0.33864251065121764,10866.666666666666,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +11853,0,47.0,3,0.0,99,112,2,85,48,3.0,0.0,288.6886744691955,1114.4298455239652,0.0,1804.7083808840873,46248.560000000005,42,50,1,9711,201711853,,,,,1.0,0.0,4.0,3.0,5.0,2.6,1985.490332474432,0.0,828.0,1020.0,0.0,40215.0,8,1,5,120.0,9,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3207.826900877248,0.06936057902942812,0.07976692529845203,15467.307692307691,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11854,2,41.0,4,0.0,6,111,6,55,43,4.0,0.0,0.0,1911.220266478298,0.0,0.0,30318.82,20,33,2,9715,201711854,,,380.0,677.0,2.0,0.0,3.0,2.0,4.0,2.1,1061.8621112106794,0.0,1420.0,0.0,0.0,37603.0,1,1,3,63.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1911.220266478298,0.06303742251440848,0.05082627094854927,17906.190476190477,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11855,2,25.0,3,0.0,6,112,1,0,63,9.0,0.0,0.0,740.261370819059,100.85135069646371,0.0,20385.92,0,31,2,9716,201711855,,,,,1.0,0.0,4.0,0.0,1.0,1.0,1050.2949897067936,0.0,550.0,0.0,0.0,31226.0,0,1,3,87.0,9,3.0,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,841.1127215155227,0.041259492900763015,0.02693629416241346,31226.0,8,4,8,8_0,8_1,8_0_0 +11856,2,34.0,2,0.0,9,111,2,52,52,8.0,0.0,0.0,1102.3164776378353,0.0,1364.147217315325,56722.880000000005,20,31,1,9717,201711856,,,450.0,,2.0,0.0,5.0,2.0,4.0,2.1,1741.8392356944885,0.0,819.0,771.0,0.0,59110.0,1,1,2,90.0,6,5.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2466.4636949531605,0.04348269507742132,0.041726673912251065,28147.619047619046,8,4,8,8_1,8_2,8_0_0 +11857,2,64.0,3,0.0,1,112,2,77,75,5.0,0.0,0.0,589.5172371249961,0.0,2243.5002225108065,29364.120000000003,70,50,1,9718,201711857,,,406.0,,0.0,2.0,5.0,0.0,2.0,1.5,2234.4705535136,0.0,438.0,1268.0,0.0,27749.0,6,5,1,80.0,10,0.0,3,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2833.0174596358024,0.09647888169765695,0.10209439834357283,18499.333333333332,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11858,2,26.0,3,0.0,1,300,5,52,48,5.0,0.0,693.9631597817199,1712.0226612397148,212.31863304518674,0.0,31058.899999999998,42,50,1,972,201711858,,,264.0,,2.0,0.0,5.0,2.0,4.0,2.1,2851.1868622453944,0.0,1272.0,0.0,0.0,42380.0,1,1,2,150.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2618.3044540666215,0.0843012616050994,0.06178160580619683,20180.95238095238,5,3,5,5_1,5_0,5_1_0 +11859,2,50.0,3,0.0,2,211,2,64,54,8.0,0.0,0.0,831.7572990169185,0.0,1549.9619035718677,34644.659999999996,71,71,1,9721,201711859,,,580.0,412.0,2.0,2.0,5.0,0.0,2.0,1.5,1541.4639859306083,1494.0,0.0,0.0,0.0,44286.0,1,1,3,83.0,3,4.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2381.719202588786,0.06874707971123938,0.053780409217106674,29524.0,8,4,8,8_1,8_2,8_0_1 +11860,2,50.0,1,0.0,1,111,2,37,37,10.0,0.0,0.0,1115.1028475280696,0.0,2911.13983726766,75965.57203375368,20,20,1,9722,201711860,,,116.0,,2.0,1.0,5.0,1.0,3.0,2.0,2253.2050718302503,363.84210359975975,678.0,1432.0,0.0,82617.0,1,1,1,146.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,4026.2426847957295,0.053000886809708415,0.04873382820479719,41308.5,10,5,10,10_1,10_4,10_1_0 +11861,2,51.0,3,0.0,6,111,4,37,38,10.0,0.0,0.0,134.5929765125562,0.0,0.0,78100.48,43,50,1,9723,201711861,,,,,2.0,0.0,7.0,2.0,4.0,2.3,2337.180666422641,0.0,100.0,0.0,0.0,94178.0,1,1,1,134.0,6,4.0,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,134.5929765125562,0.0017233309771278768,0.0014291339433047654,40946.956521739135,10,5,10,10_1,10_2,10_0_0 +11862,1,42.0,2,140.0,9,112,4,85,21,3.0,0.0,0.0,1776.6272899657417,445.8691293948922,0.0,38521.950798147016,71,71,1,9724,201711862,,,,,2.0,0.0,4.0,4.0,6.0,3.1,4186.269952301527,0.0,1320.0,0.0,0.0,40875.0,6,1,2,120.0,9,3.0,4,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,2222.496419360634,0.057694285292206444,0.054373001085275444,13185.483870967742,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +11863,2,52.0,3,0.0,1,111,2,77,52,6.0,0.0,0.0,578.7497990039916,0.0,1857.7880391453841,29582.799999999996,60,50,1,9725,201711863,,,350.0,,2.0,2.0,5.0,1.0,3.0,2.0,2837.3386229023204,0.0,430.0,1050.0,0.0,46090.0,5,1,2,130.0,9,7.0,4,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,2436.5378381493756,0.08236332727630163,0.05286478277607671,23045.0,6,3,6,6_1,6_3,6_1_0 +11864,1,65.0,4,46.0,3,111,1,0,77,2.0,0.0,0.0,282.645250676368,0.0,194.62541362475451,14209.38,0,42,2,9726,201711864,,,180.0,308.0,0.0,2.0,4.0,0.0,1.0,1.0,1933.8073220957797,0.0,210.0,110.0,0.0,12602.0,0,5,3,100.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,477.2706643011225,0.03358842287989501,0.03787261262506923,12602.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +11865,1,36.0,5,240.0,1,111,1,0,47,8.0,0.0,0.0,323.0231436301349,0.0,0.0,14474.20449357506,0,42,2,9727,201711865,,,,380.0,1.0,0.0,1.0,0.0,1.0,1.0,6256.270241906363,0.0,240.0,0.0,0.0,26313.0,0,4,3,14.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,323.0231436301349,0.022317160419663914,0.012276180733102835,26313.0,7,4,7,7_0,7_4,7_1_0 +11866,2,32.0,3,0.0,99,111,1,85,53,2.0,0.0,0.0,417.2382271889242,0.0,442.3304855108057,11616.025846751303,50,50,2,9728,201711866,,,,349.0,1.0,0.0,3.0,0.0,2.0,1.5,2653.467602782998,0.0,310.0,250.0,0.0,18440.0,6,1,3,60.0,8,7.0,3,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,859.56871269973,0.0739985192904963,0.04661435535247994,12293.333333333334,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +11867,2,53.0,1,0.0,7,112,2,65,47,6.0,0.0,0.0,2861.446680656945,95.54338487033404,0.0,46050.91999999999,50,50,1,9729,201711867,,,518.0,,2.0,1.0,7.0,1.0,3.0,2.0,2153.8040710796013,0.0,2126.0,0.0,0.0,43165.0,1,1,1,165.0,7,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2956.990065527279,0.06421131359649883,0.06850434531512288,21582.5,6,3,6,6_1,6_0,6_0_0 +11868,2,37.0,3,0.0,99,111,2,54,38,10.0,0.0,0.0,605.6683943065029,0.0,0.0,22273.0,31,20,1,973,201711868,,,,,2.0,0.0,5.0,1.0,3.0,1.8,1830.3502901047661,0.0,450.0,0.0,0.0,84245.0,1,1,3,110.0,7,5.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,605.6683943065029,0.02719294187161599,0.007189369034441248,46802.777777777774,10,5,10,10_1,10_2,10_0_0 +11869,2,58.0,2,0.0,4,112,2,62,52,7.0,0.0,0.0,2288.080600713455,99.08202875442048,0.0,43095.17999999999,71,50,1,9730,201711869,,,,660.0,2.0,6.0,5.0,0.0,3.0,2.0,3661.9838409919244,0.0,1700.0,0.0,0.0,52036.0,1,4,3,100.0,8,1.0,5,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,2387.162629467876,0.05539279867186716,0.0458752138801575,26018.0,7,4,7,7_1,7_1,7_0_1 +11870,2,29.0,1,0.0,1,112,4,21,21,8.0,0.0,485.77421184720396,2826.45250676368,0.0,0.0,27651.879999999997,44,31,1,9731,201711870,,,420.0,,2.0,0.0,3.0,1.0,3.0,1.8,3308.9964673927448,0.0,2100.0,0.0,0.0,48180.0,1,1,2,110.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3312.226718610884,0.11978305701496188,0.06874692234559743,26766.666666666664,7,4,7,7_1,7_1,7_1_0 +11871,2,83.0,3,0.0,4,111,2,0,86,5.0,0.0,0.0,621.3126811933608,0.0,1157.802867728383,17842.739999999998,0,60,1,9732,201711871,,,160.0,,0.0,5.0,3.0,0.0,1.0,1.0,1844.646794953386,1116.0,0.0,0.0,0.0,19860.0,0,5,3,71.0,7,5.0,1,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,1779.115548921744,0.09971089355792576,0.08958285744822478,19860.0,5,3,5,5_1,5_2,5_0_1 +11872,2,58.0,3,0.0,7,111,6,52,67,8.0,0.0,0.0,1292.0925745205395,495.4101437721024,0.0,27982.787849749777,42,50,1,9733,201711872,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1789.5401462673185,0.0,960.0,0.0,0.0,43773.0,1,1,2,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1787.502718292642,0.06387865025780931,0.04083573705920641,29182.0,8,4,8,8_1,8_3,8_0_0 +11873,1,24.0,4,360.0,4,111,1,0,45,4.0,0.0,0.0,445.3854345472121,0.0,829.9662134253642,16335.32,0,30,2,9734,201711873,,,,,3.0,2.0,5.0,3.0,5.0,3.0,1838.7883839716662,800.0,0.0,0.0,0.0,49790.0,0,1,3,110.0,6,5.0,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1275.3516479725763,0.07807325770003748,0.025614614339678175,16596.666666666668,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +11874,2,56.0,3,0.0,9,111,2,56,62,2.0,0.0,0.0,556.7317931840151,0.0,1037.4577667817055,42703.297874082025,71,71,2,9735,201711874,,,600.0,439.0,2.0,1.0,3.0,1.0,3.0,2.0,3163.381844459889,1000.0,0.0,0.0,0.0,24650.0,4,1,3,69.0,9,7.0,4,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1594.1895599657205,0.037331766850102796,0.064673004461084,12325.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +11875,2,60.0,3,0.0,6,111,2,0,33,9.0,0.0,0.0,2449.592172528523,0.0,0.0,27996.74,0,20,2,9736,201711875,,,,467.0,1.0,0.0,2.0,0.0,1.0,1.0,2517.4530452307486,0.0,1820.0,0.0,0.0,40525.0,0,1,3,57.0,6,4.0,1,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,2449.592172528523,0.08749562172340504,0.060446444726181936,40525.0,9,5,9,9_0,9_2,9_0_0 +11876,1,35.0,4,303.0,99,111,1,0,54,1.0,0.0,0.0,444.15682249143543,0.0,1295.1436615756393,14909.321349499145,0,20,2,9737,201711876,732.0,732.0,,,1.0,0.0,3.0,2.0,3.0,1.8,886.6729312305805,0.0,330.0,732.0,0.0,16663.0,0,4,3,55.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1739.3004840670746,0.11665859520329566,0.10438099286245422,9257.222222222223,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11877,2,54.0,4,0.0,1,111,2,0,47,2.0,0.0,0.0,471.07541779394666,0.0,1592.3897478389006,16255.1,0,41,2,9738,201711877,,,350.0,,1.0,0.0,3.0,0.0,1.0,1.0,2437.160730785067,0.0,350.0,900.0,0.0,13718.0,0,4,3,85.0,9,7.0,1,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,2063.4651656328474,0.12694263127466748,0.15042026283954274,13718.0,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +11878,2,85.0,2,0.0,1,400,4,0,77,7.0,0.0,138.792631956344,1609.7319990901722,0.0,0.0,20413.440315994114,0,70,1,9739,201711878,,,160.0,,0.0,4.0,5.0,0.0,1.0,1.0,2354.948681290185,0.0,1196.0,0.0,0.0,25078.0,0,5,5,92.0,0,0.0,1,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1748.524631046516,0.08565555849380917,0.06972344808383907,25078.0,7,4,7,7_1,7_0,7_1_0 +11879,2,50.0,3,0.0,2,112,2,0,46,3.0,0.0,0.0,1749.7086946632305,95.54338487033404,0.0,33764.453444105864,0,41,2,9740,201711879,,,,,1.0,0.0,3.0,1.0,2.0,1.5,2620.7771960963737,0.0,1300.0,0.0,0.0,21484.0,0,1,1,65.0,9,2.0,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1845.2520795335645,0.0546507315034203,0.0858895959566917,14322.666666666666,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +11880,2,53.0,2,0.0,9,111,2,0,65,3.0,0.0,0.0,617.4155586410727,0.0,1150.5406633609111,36893.86000000001,0,43,1,9741,201711880,,,180.0,,1.0,2.0,4.0,1.0,2.0,1.5,2067.401903424184,1109.0,0.0,0.0,0.0,28075.0,0,1,3,96.0,8,6.0,2,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1767.9562220019839,0.047920066428451334,0.06297261699027547,18716.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11881,1,56.0,4,408.0,2,211,2,0,78,4.0,0.0,0.0,387.6277723561618,0.0,2374.4300462220053,14178.232941899001,0,50,2,9743,201711881,,,,,0.0,0.0,4.0,2.0,3.0,2.0,4488.248173853821,0.0,288.0,1342.0,0.0,34008.0,0,7,3,77.0,1,3.0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,2762.057818578167,0.19480973615660055,0.08121788457357583,17004.0,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +11882,2,76.0,4,0.0,4,111,1,78,78,3.0,0.0,0.0,538.3719060502248,0.0,707.7287768172891,14322.28,50,71,2,9744,201711882,,,512.0,337.0,0.0,3.0,4.0,0.0,2.0,1.5,3946.690888417972,0.0,400.0,400.0,0.0,22050.0,5,5,3,93.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,1246.100682867514,0.087004351462722,0.056512502624377056,14700.0,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +11883,2,69.0,3,0.0,7,111,2,0,75,5.0,0.0,277.585263912688,623.1654812531352,0.0,1150.059262328095,17039.44,0,31,1,9745,201711883,,,214.0,,0.0,2.0,4.0,0.0,1.0,1.0,2992.0337605551863,0.0,463.0,650.0,0.0,18914.0,0,5,1,92.0,9,7.0,1,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2050.8100074939184,0.12035665535334017,0.10842814885766726,18914.0,5,3,5,5_1,5_3,5_0_0 +11884,1,36.0,4,272.0,2,111,1,0,81,1.0,0.0,0.0,266.49409349486126,0.0,0.0,6383.870875301628,0,71,2,9747,201711884,,,,28.0,1.0,0.0,1.0,0.0,1.0,1.0,3723.5092858759094,0.0,198.0,0.0,0.0,8994.0,0,4,3,30.0,8,7.0,1,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,266.49409349486126,0.04174490660923179,0.029630208304965672,8994.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11885,1,41.0,3,56.0,2,111,1,0,52,4.0,0.0,0.0,503.8422728315337,0.0,938.8992789374433,15049.7,0,50,2,9748,201711885,,,,287.0,1.0,0.0,3.0,1.0,2.0,1.5,784.4206945576182,905.0,0.0,0.0,0.0,24130.0,0,1,3,71.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1442.741551768977,0.09586513696412399,0.05979036683667538,16086.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +11886,1,28.0,3,225.0,99,112,2,85,62,2.0,2221.038412794435,0.0,1615.1157181506744,0.0,0.0,27355.02,60,42,1,9749,201711886,,,,,1.0,2.0,5.0,3.0,5.0,2.6,3875.5148639635204,0.0,1200.0,0.0,0.0,35056.0,6,1,3,115.0,8,0.0,4,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,3836.1541309451095,0.14023583718619506,0.10942931683435388,13483.076923076922,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +11887,2,51.0,3,0.0,99,111,1,0,63,5.0,0.0,0.0,659.5055849115254,0.0,0.0,20277.239999999998,0,60,2,975,201711887,,,,384.0,1.0,2.0,5.0,2.0,3.0,2.0,1463.6013207621124,0.0,490.0,0.0,0.0,37869.0,0,1,3,90.0,6,4.0,2,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,659.5055849115254,0.032524425657117315,0.017415447593322385,18934.5,5,3,5,5_0,5_2,5_0_0 +11888,2,49.0,3,0.0,6,111,2,54,64,6.0,0.0,451.076053858118,1372.8483604280732,159.23897478389006,0.0,30816.98,60,50,1,9750,201711888,,,434.0,,2.0,0.0,4.0,1.0,3.0,1.8,2761.9443984378768,0.0,1020.0,0.0,0.0,38230.0,1,1,2,90.0,6,5.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,1983.1633890700814,0.06435294402858688,0.05187453280329797,21238.888888888887,6,3,6,6_1,6_2,6_0_0 +11889,2,86.0,2,0.0,1,112,6,0,74,9.0,3490.203220105541,0.0,646.0462872602698,318.4779495677801,0.0,29210.519999999997,0,70,1,9751,201711889,,,,,0.0,1.0,5.0,0.0,2.0,1.5,3063.5475738862724,0.0,480.0,0.0,0.0,53770.0,0,5,3,200.0,7,0.0,5,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4454.7274569335905,0.15250421618422372,0.08284782326452651,35846.666666666664,9,5,9,9_1,9_0,9_1_0 +11890,2,35.0,2,0.0,99,111,1,55,63,5.0,0.0,0.0,500.68587262670906,0.0,488.3328560039295,30345.599999999995,71,50,2,9752,201711890,,,,672.0,2.0,0.0,4.0,1.0,3.0,1.8,2851.847109731521,0.0,372.0,276.0,0.0,37720.0,1,1,3,90.0,9,7.0,4,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,989.0187286306386,0.032591833037759636,0.02622000871237112,20955.555555555555,5,3,5,5_0,5_3,5_0_0 +11891,1,45.0,3,430.0,99,111,2,85,63,2.0,0.0,0.0,306.2024862512083,0.0,570.6017717299379,20849.119999999995,42,50,1,9753,201711891,,,,,1.0,0.0,4.0,2.0,4.0,2.1,4456.4852292275755,550.0,0.0,0.0,0.0,23400.0,6,1,3,72.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,876.8042579811463,0.04205473698559683,0.03747026743509172,11142.857142857143,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +11892,2,36.0,4,0.0,1,111,4,0,37,10.0,0.0,0.0,963.6857118299024,0.0,0.0,69295.12134949912,0,12,2,9755,201711892,,,,1390.0,1.0,0.0,3.0,1.0,2.0,1.3,3822.816973565088,0.0,716.0,0.0,0.0,63430.0,0,1,3,50.0,10,8.0,2,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,963.6857118299024,0.013906977764991937,0.015192901022070037,48792.30769230769,10,5,10,10_0,10_4,10_1_0 +11893,2,35.0,4,0.0,9,112,6,0,21,1.0,0.0,0.0,2288.080600713455,69.0035557396857,0.0,27543.72,0,71,1,9756,201711893,,,290.0,,1.0,0.0,3.0,0.0,1.0,1.0,6718.521145420456,0.0,1700.0,0.0,0.0,7585.0,0,1,2,90.0,7,1.0,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2357.084156453141,0.08557610070292397,0.3107559863484695,7585.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11894,1,46.0,5,273.0,99,111,2,0,85,1.0,0.0,0.0,0.0,0.0,0.0,9767.345846751301,0,20,2,9757,201711894,,,,,0.0,1.0,2.0,0.0,1.0,1.0,722.5379104150484,0.0,0.0,0.0,0.0,9536.0,0,8,3,26.0,10,8.0,1,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0.0,0.0,0.0,9536.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +11895,0,24.0,5,0.0,9,400,6,55,65,2.0,0.0,0.0,1345.929765125562,0.0,0.0,14193.471693502599,43,43,1,9758,201711895,,,500.0,,2.0,0.0,3.0,2.0,4.0,2.1,2426.6499337645632,0.0,1000.0,0.0,0.0,28125.0,1,1,5,65.0,0,0.0,4,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1345.929765125562,0.0948273822071096,0.04785528053779776,13392.857142857143,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11896,2,70.0,2,0.0,2,111,1,0,75,6.0,0.0,0.0,275.9156018507402,0.0,180.47083808840873,21716.859999999997,0,60,2,9759,201711896,,,,,0.0,0.0,3.0,0.0,1.0,1.0,2678.243478371374,0.0,205.0,102.0,0.0,23976.0,0,5,1,55.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,456.3864399391489,0.02101530515641529,0.019035136800932134,23976.0,7,4,7,7_0,7_3,7_0_1 +11897,2,57.0,3,0.0,5,111,1,0,63,10.0,0.0,0.0,228.80806007134552,254.7823596542241,0.0,24233.3,0,50,2,976,201711897,,,,465.0,1.0,0.0,2.0,0.0,1.0,1.0,8263.180878481995,0.0,170.0,0.0,0.0,42596.0,0,1,3,48.0,8,7.0,1,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,483.59041972556963,0.0199556156085044,0.011352953792036099,42596.0,10,5,10,10_0,10_3,10_0_0 +11898,2,71.0,2,0.0,99,111,1,0,78,4.0,0.0,0.0,977.145009481158,0.0,0.0,15196.84,0,50,2,9760,201711898,,,,,0.0,0.0,2.0,0.0,1.0,1.0,2042.1607419300576,0.0,726.0,0.0,0.0,18000.0,0,5,3,71.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,977.145009481158,0.06429922335703725,0.05428583386006433,18000.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11899,1,42.0,5,322.0,99,111,2,0,43,2.0,0.0,0.0,565.290501352736,0.0,583.8762408742635,16043.7,0,41,2,9761,201711899,,,,186.0,1.0,0.0,3.0,1.0,2.0,1.3,605.613556050598,0.0,420.0,330.0,0.0,14994.0,0,4,3,72.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1149.1667422269995,0.07162728935513625,0.07664177285760967,11533.846153846154,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11900,1,22.0,4,272.0,8,111,4,0,52,1.0,0.0,0.0,323.0231436301349,0.0,0.0,6545.5199999999995,0,50,2,9762,201711900,,,120.0,288.0,1.0,0.0,2.0,0.0,1.0,1.0,3431.217723997221,0.0,240.0,0.0,0.0,7284.0,0,1,3,36.0,9,7.0,1,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,323.0231436301349,0.04935026455195842,0.0443469444851915,7284.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11901,2,60.0,3,0.0,1,111,2,55,77,4.0,0.0,0.0,942.1508355878933,0.0,2300.11852465619,25920.020000000004,50,70,1,9763,201711901,,,,625.0,1.0,1.0,4.0,0.0,2.0,1.5,1848.154346082838,0.0,700.0,1300.0,0.0,26161.0,1,5,3,105.0,7,5.0,3,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,3242.269360244083,0.12508745596045384,0.1239352226690143,17440.666666666668,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +11902,2,56.0,2,0.0,1,112,4,46,21,9.0,0.0,0.0,0.0,0.0,0.0,25335.059999999998,42,50,2,9764,201711902,,,,,2.0,2.0,3.0,0.0,2.0,1.5,3425.7898217655097,0.0,0.0,0.0,0.0,62120.0,1,1,1,50.0,8,0.0,3,5,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0.0,0.0,0.0,41413.333333333336,10,5,10,10_0,10_0,10_1_0 +11903,2,67.0,3,0.0,1,111,2,46,48,10.0,1965.618995323075,0.0,2295.6919456599603,0.0,871.9576347119847,51128.21616225044,50,50,1,9766,201711903,,,458.0,,2.0,1.0,5.0,0.0,2.0,1.5,1687.7299178304777,840.4753066882731,1358.0,0.0,0.0,73643.0,1,1,1,130.0,5,4.0,3,4,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,5133.26857569502,0.10039991536972637,0.06970477269659059,49095.333333333336,10,5,10,10_1,10_2,10_1_0 +11904,2,62.0,3,0.0,99,111,4,0,78,3.0,0.0,0.0,460.30797967294217,132.69914565324171,0.0,18057.38,0,71,2,9767,201711904,,,,378.0,0.0,0.0,2.0,0.0,1.0,1.0,3939.385220906494,0.0,342.0,0.0,0.0,14849.0,0,5,3,52.0,7,5.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,593.0071253261839,0.032840153185356005,0.03993582903402141,14849.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +11905,2,70.0,3,0.0,4,120,2,77,75,5.0,2696.9752155360998,0.0,662.1974444417765,212.31863304518674,0.0,24800.633696501074,71,50,1,9768,201711905,,,276.0,,0.0,1.0,7.0,0.0,2.0,1.5,2322.6120565504975,0.0,492.0,0.0,0.0,30112.0,5,5,1,112.0,0,0.0,3,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,3571.491293023063,0.1440080659522396,0.11860691063440033,20074.666666666668,5,3,5,5_1,5_0,5_0_1 +11906,2,54.0,2,0.0,2,111,2,0,52,2.0,0.0,0.0,765.6548076445006,0.0,1426.7813273634806,25516.874929535054,0,50,2,9769,201711906,,,,,1.0,1.0,3.0,0.0,1.0,1.0,1953.8365090576915,1375.266900540438,0.0,0.0,0.0,12607.0,0,1,2,52.0,8,7.0,1,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,2192.436135007981,0.08592102838072459,0.17390625327262482,12607.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +11907,2,62.0,1,0.0,5,111,2,86,34,10.0,0.0,495.4896960841481,2578.153123735049,0.0,756.2415006530189,56107.19931585411,30,10,1,977,201711907,,,,,1.0,2.0,5.0,0.0,2.0,1.5,1619.1116251258986,728.9371431465141,1614.0,0.0,0.0,79137.0,6,1,1,135.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3829.884320472216,0.06826012289282123,0.04839562177580924,52758.0,10,5,10,10_1,10_3,10_0_0 +11908,2,41.0,4,0.0,99,111,1,56,53,2.0,0.0,0.0,1082.1275311609518,0.0,0.0,36956.34,71,71,2,9770,201711908,,,,475.0,2.0,0.0,3.0,3.0,5.0,2.6,3724.404997309587,0.0,804.0,0.0,0.0,33780.0,1,1,3,67.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1082.1275311609518,0.02928124189681532,0.03203456279339703,12992.307692307691,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +11909,1,50.0,3,136.0,7,111,2,85,63,2.0,0.0,0.0,2288.080600713455,201.70270139292742,0.0,40725.644493575055,50,50,1,9772,201711909,,,400.0,,1.0,5.0,4.0,4.0,6.0,3.5,1702.7757460025607,0.0,1700.0,0.0,0.0,40472.0,6,1,3,90.0,4,3.0,4,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2489.7833021063825,0.06113551628382885,0.061518662337081996,11563.42857142857,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +11910,2,82.0,1,0.0,1,111,2,77,74,10.0,0.0,0.0,1707.649836433337,0.0,3223.217932181718,51419.66007342795,50,30,2,9773,201711910,,,,,0.0,5.0,6.0,0.0,2.0,1.5,2671.204625534004,891.476028307739,900.0,1299.0,0.0,95440.0,5,5,1,160.0,9,7.0,3,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,4930.867768615055,0.09589460065612473,0.05166458265522899,63626.666666666664,10,5,10,10_0,10_3,10_1_0 +11911,2,52.0,3,0.0,4,111,2,0,33,9.0,0.0,0.0,856.5758198650024,0.0,803.2803295575137,27987.198194178938,0,20,2,9774,201711911,,,,700.0,1.0,2.0,4.0,0.0,1.0,1.0,2023.0728417504943,663.4240210662244,362.0,65.0,0.0,35840.0,0,1,3,82.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1659.856149422516,0.05930769267813845,0.04631295059772645,35840.0,9,5,9,9_0,9_3,9_0_1 +11912,2,65.0,3,0.0,2,111,1,77,77,3.0,0.0,0.0,47.107541779394666,0.0,95.54338487033404,23217.2171719182,50,70,2,9775,201711912,,,,347.0,0.0,8.0,3.0,0.0,2.0,1.5,2597.1966046330726,0.0,35.0,54.0,0.0,23434.0,5,5,3,60.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,142.65092664972872,0.0061441871174064975,0.006087348581109871,15622.666666666666,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +11913,1,43.0,3,494.0,4,111,2,0,43,2.0,0.0,0.0,444.15682249143543,0.0,2114.3397207416515,21773.388161188144,0,50,2,9777,201711913,,,,90.0,2.0,0.0,3.0,3.0,4.0,2.5,750.0712962642328,0.0,330.0,1195.0,0.0,30422.0,0,1,3,64.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,2558.496543233087,0.11750566904390654,0.08410020850808911,12168.8,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11914,2,42.0,2,0.0,1,111,1,46,22,6.0,0.0,0.0,323.0231436301349,0.0,1061.5931652259337,35434.08,42,71,2,9779,201711914,,,,,2.0,0.0,3.0,2.0,4.0,2.1,5566.003623390535,0.0,240.0,600.0,0.0,48767.0,1,1,1,92.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1384.6163088560686,0.039075836281231756,0.02839248485361143,23222.38095238095,6,3,6,6_0,6_4,6_1_0 +11915,2,60.0,2,0.0,1,112,6,74,,4.0,0.0,0.0,3230.231436301349,0.0,0.0,65928.06238259148,12,50,1,9780,201711915,,,182.0,,0.0,2.0,8.0,0.0,2.0,1.5,2302.1135317358526,0.0,2400.0,0.0,0.0,43898.0,5,8,2,250.0,9,1.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3230.231436301349,0.04899630475344141,0.07358493408131006,29265.333333333332,8,4,8,8_1,8_1,8_1_0 +11916,2,42.0,3,0.0,6,112,5,65,54,8.0,0.0,832.755791738064,2382.2956842722447,0.0,0.0,46318.58000000001,30,43,1,9781,201711916,,,900.0,,2.0,0.0,5.0,2.0,4.0,2.1,456.1093413437793,0.0,1770.0,0.0,0.0,58650.0,1,1,1,140.0,10,4.0,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,3215.0514760103088,0.06941170208608097,0.054817586973747806,27928.571428571428,8,4,8,8_1,8_2,8_0_0 +11917,2,40.0,3,0.0,6,111,2,52,43,6.0,0.0,0.0,672.964882562781,0.0,1769.3219420432229,44167.02175060326,30,33,8,9783,201711917,,,,,2.0,0.0,4.0,2.0,4.0,2.1,4443.905847059792,0.0,500.0,1000.0,0.0,47729.0,1,1,2,86.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,2442.286824606004,0.055296615615080404,0.051169872082088536,22728.095238095237,6,3,6,6_0,6_3,6_0_0 +11918,2,23.0,3,0.0,8,111,6,0,54,1.0,0.0,0.0,318.9853543347582,0.0,0.0,29162.100315994117,0,31,2,9785,201711918,,,,,1.0,0.0,2.0,0.0,1.0,1.0,4702.753683235891,0.0,237.0,0.0,0.0,7773.0,0,4,2,47.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,318.9853543347582,0.010938353235134058,0.04103761151868753,7773.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +11919,2,61.0,2,0.0,99,112,2,56,13,6.0,0.0,0.0,1615.1157181506744,652.8797966139492,0.0,24743.219999999994,71,70,1,9786,201711919,,,70.0,,2.0,3.0,6.0,0.0,2.0,1.5,1781.0004517001196,0.0,1200.0,0.0,0.0,34564.0,1,1,1,120.0,4,0.0,3,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2267.9955147646237,0.09166129205352513,0.06561727562679735,23042.666666666668,6,3,6,6_1,6_0,6_0_0 +11920,2,39.0,2,0.0,8,112,2,43,43,9.0,0.0,0.0,1825.080761510262,230.01185246561897,0.0,38893.0,50,31,1,9787,201711920,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2956.046759081282,0.0,1356.0,0.0,0.0,78545.0,1,1,2,130.0,9,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2055.092613975881,0.05283965273894739,0.02616452497263837,37402.380952380954,9,5,9,9_1,9_1,9_0_0 +11921,1,22.0,2,329.0,9,111,4,84,43,3.0,0.0,0.0,134.5929765125562,0.0,0.0,26575.250875301626,30,30,2,9788,201711921,,,,231.0,1.0,0.0,3.0,0.0,2.0,1.5,2767.4458776644583,0.0,100.0,0.0,0.0,23470.0,3,4,3,54.0,8,6.0,3,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,134.5929765125562,0.005064598529816459,0.005734681572754844,15646.666666666666,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +11922,2,39.0,3,0.0,6,112,2,52,48,6.0,0.0,0.0,946.4440484128256,0.0,1763.678203528899,65518.33999999999,50,31,1,9789,201711922,,,340.0,,2.0,0.0,6.0,3.0,5.0,2.6,2017.3847685509718,1700.0,0.0,0.0,0.0,54688.0,1,1,2,100.0,8,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2710.1222519417247,0.04136433023092046,0.04955606809431182,21033.846153846152,5,3,5,5_1,5_1,5_0_0 +11923,2,72.0,3,0.0,1,300,4,78,78,3.0,0.0,0.0,3730.9173089280575,63.69558991355603,0.0,27878.28,70,50,1,9790,201711923,,,,,0.0,2.0,3.0,0.0,2.0,1.5,2632.7851380015823,0.0,2772.0,0.0,0.0,23654.0,5,5,3,70.0,0,1.0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,3794.6128988416135,0.1361135944843661,0.1604216157453967,15769.333333333334,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +11924,2,62.0,3,0.0,99,111,2,0,74,7.0,0.0,0.0,507.41552145233686,0.0,1946.2541362475451,31069.52,0,42,2,9792,201711924,,,,1170.0,0.0,2.0,3.0,0.0,1.0,1.0,4206.043578811341,0.0,377.0,1100.0,0.0,26213.0,0,5,3,70.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,2453.669657699882,0.07897352961036676,0.09360506838972578,26213.0,7,4,7,7_0,7_4,7_0_0 +11925,0,58.0,3,0.0,99,111,2,0,62,3.0,0.0,0.0,417.54884488801133,0.0,778.0933250862789,16669.52,0,43,2,9794,201711925,,,,,1.0,2.0,3.0,0.0,1.0,1.0,1941.3520979287962,750.0,0.0,0.0,0.0,14532.0,0,4,5,54.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1195.6421699742903,0.07172625066434368,0.08227650495281381,14532.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +11926,2,53.0,2,0.0,7,300,2,0,46,6.0,2221.038412794435,0.0,1292.0925745205395,53.079658261296686,0.0,23293.8,0,50,1,9795,201711926,,,240.0,,1.0,1.0,8.0,0.0,1.0,1.0,1597.4170566514053,0.0,960.0,0.0,0.0,24660.0,0,1,2,240.0,0,0.0,1,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3566.210645576271,0.1530969891377221,0.14461519244023807,24660.0,7,4,7,7_1,7_0,7_0_0 +11927,2,50.0,2,0.0,7,120,5,64,22,7.0,0.0,1734.9078994543,2039.0835941652263,113.23660429076627,0.0,78922.65107277168,31,31,1,9796,201711927,,,200.0,,2.0,3.0,6.0,0.0,2.0,1.5,1436.3010597655239,0.0,1515.0,0.0,0.0,35359.0,1,1,2,100.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3887.2280979102925,0.04925364321994229,0.10993603037162511,23572.666666666668,6,3,6,6_1,6_0,6_0_0 +11928,2,60.0,2,0.0,1,111,2,74,33,10.0,0.0,0.0,690.4619695094133,0.0,0.0,41367.92,20,31,2,9799,201711928,,,,,1.0,2.0,4.0,0.0,2.0,1.5,3076.6218081571214,0.0,513.0,0.0,0.0,64969.0,5,1,1,75.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,690.4619695094133,0.016690758672648114,0.010627560367396963,43312.666666666664,10,5,10,10_0,10_4,10_1_0 +11929,2,82.0,3,0.0,3,211,2,0,71,3.0,0.0,0.0,499.3399428615835,0.0,1061.5931652259337,10676.22,0,71,1,9800,201711929,,,144.0,,0.0,2.0,4.0,0.0,1.0,1.0,1171.7109291142829,0.0,371.0,600.0,0.0,15133.0,0,5,5,90.0,2,3.0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,1560.9331080875172,0.14620653265739347,0.10314763153951742,15133.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +11930,2,41.0,2,0.0,9,111,2,52,68,3.0,0.0,83.27557917380639,1345.929765125562,212.31863304518674,0.0,32361.279999999995,42,50,1,9802,201711930,,,500.0,,2.0,0.0,5.0,2.0,4.0,2.3,2927.786353661635,0.0,1000.0,0.0,0.0,33577.0,1,1,2,100.0,8,6.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1641.523977344555,0.05072493972254977,0.048888345514624745,14598.695652173914,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +11931,2,58.0,1,0.0,10,111,2,33,31,9.0,0.0,0.0,1695.871504058208,0.0,2919.381204371318,50216.14,20,20,1,9804,201711931,,,340.0,,2.0,0.0,7.0,2.0,4.0,2.5,3094.1372036635926,0.0,1260.0,1650.0,0.0,96347.0,1,1,1,240.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4615.252708429526,0.09190775532387647,0.04790240182288526,38538.8,9,5,9,9_1,9_4,9_0_0 +11932,2,33.0,2,0.0,9,111,4,63,38,8.0,0.0,0.0,839.8601734383507,0.0,0.0,28154.699999999997,31,30,8,9805,201711932,,,516.0,,2.0,0.0,3.0,1.0,3.0,1.8,3102.867215034922,0.0,624.0,0.0,0.0,49477.0,1,1,2,70.0,8,7.0,4,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,839.8601734383507,0.029830194370330736,0.016974759452641645,27487.222222222223,8,4,8,8_0,8_3,8_0_0 +11933,2,59.0,3,0.0,1,112,2,71,48,10.0,0.0,277.585263912688,3270.6093292551154,191.08676974066807,0.0,65162.44602647676,50,50,1,9807,201711933,,,180.0,,1.0,1.0,5.0,1.0,3.0,2.0,2419.3294679034925,0.0,2430.0,0.0,0.0,79875.0,5,1,5,130.0,8,3.0,4,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,3739.2813629084712,0.05738399324956477,0.04681416416786818,39937.5,9,5,9,9_1,9_1,9_1_0 +11934,2,50.0,2,0.0,7,221,5,65,46,7.0,0.0,111.0341055650752,2018.894647688343,680.4812189098236,0.0,33397.05665845403,50,31,1,9808,201711934,,,550.0,,2.0,1.0,5.0,1.0,3.0,2.0,13026.193749333182,0.0,1500.0,0.0,0.0,51110.0,1,1,1,106.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2810.409972163242,0.08415142690282029,0.054987477444007865,25555.0,7,4,7,7_1,7_1,7_0_0 +11935,2,67.0,3,0.0,7,111,2,72,75,6.0,0.0,0.0,755.0665982354402,0.0,1592.3897478389006,41567.82000000001,44,50,1,9809,201711935,,,438.0,,0.0,2.0,4.0,0.0,2.0,1.5,2043.0745064918383,0.0,561.0,900.0,0.0,33934.0,5,5,1,91.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,2347.4563460743407,0.05647292415321131,0.06917711870319858,22622.666666666668,6,3,6,6_1,6_4,6_0_0 +11936,2,47.0,4,0.0,1,111,4,0,37,1.0,0.0,0.0,214.00283265496435,0.0,0.0,45586.00000000001,0,30,2,981,201711936,,,,,1.0,0.0,2.0,0.0,1.0,1.0,3035.582774723398,0.0,159.0,0.0,0.0,18098.0,0,4,2,44.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,214.00283265496435,0.004694485865286806,0.011824667513259165,18098.0,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +11937,2,80.0,2,0.0,4,111,6,78,75,4.0,0.0,0.0,2499.3915738381684,113.23660429076627,0.0,36942.72031599412,50,71,1,9811,201711937,,,275.0,,0.0,2.0,4.0,0.0,2.0,1.5,1206.0822903116818,0.0,1857.0,0.0,0.0,25715.0,5,5,1,120.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2612.6281781289345,0.0707210556174937,0.10159938472210517,17143.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +11938,2,82.0,3,0.0,1,111,2,0,74,5.0,0.0,0.0,438.7731034309332,0.0,1144.7512965019653,10861.197038047045,0,30,2,9813,201711938,,,,75.0,0.0,0.0,1.0,0.0,1.0,1.0,4093.07734299224,0.0,326.0,647.0,0.0,19280.0,0,5,3,20.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1583.5243999328984,0.14579648950164267,0.08213300829527481,19280.0,5,3,5,5_0,5_4,5_1_0 +11939,2,41.0,3,0.0,5,111,1,55,52,5.0,0.0,0.0,1278.633276869284,0.0,619.262679715128,36278.1,50,50,2,9814,201711939,,,,750.0,2.0,0.0,3.0,1.0,3.0,1.8,2983.95964427771,0.0,950.0,350.0,0.0,33280.0,1,1,3,74.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,1897.895956584412,0.05231519722875266,0.05702812369544508,18488.888888888887,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +11940,1,42.0,4,400.0,2,111,2,0,56,1.0,2062.392811880547,0.0,524.9126083989692,132.69914565324171,0.0,19630.571191295745,0,41,1,9816,201711940,,,260.0,,1.0,0.0,3.0,2.0,3.0,1.6,797.3811944102017,0.0,390.0,0.0,0.0,16480.0,0,1,3,80.0,6,4.0,2,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,2720.004565932758,0.1385596241406779,0.16504882074834695,10300.0,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +11941,1,30.0,3,360.0,99,111,6,52,56,3.0,0.0,0.0,77.94245104576211,0.0,145.24408734943876,26718.359999999997,50,50,8,9817,201711941,,,163.0,138.0,2.0,0.0,5.0,4.0,6.0,2.7,665.5133762490374,140.0,0.0,0.0,0.0,39482.0,1,1,3,98.0,6,4.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,223.18653839520087,0.008353302313285729,0.0056528681017983095,14622.962962962962,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +11942,2,66.0,3,0.0,6,111,4,0,75,3.0,0.0,0.0,1292.0925745205395,53.079658261296686,0.0,21852.954661438773,0,50,1,9818,201711942,,,200.0,,0.0,1.0,5.0,0.0,1.0,1.0,1842.3430917707562,0.0,960.0,0.0,0.0,14362.0,0,5,1,100.0,5,4.0,1,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1345.172232781836,0.06155562273487422,0.09366190173943992,14362.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +11943,2,47.0,2,0.0,7,112,6,22,69,1.0,2241.6623409132403,0.0,1924.6795641295537,0.0,0.0,34491.42,31,42,1,9819,201711943,,,600.0,,2.0,1.0,6.0,2.0,4.0,2.5,2420.501410257524,0.0,1430.0,0.0,0.0,24067.0,1,1,1,101.0,7,2.0,4,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4166.341905042794,0.12079357431624427,0.1731143019505046,9626.8,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11944,1,34.0,4,349.0,99,111,4,85,68,2.0,0.0,0.0,72.68020731678034,123.8525359430256,0.0,20419.15087530163,50,71,2,982,201711944,,,,,1.0,0.0,3.0,3.0,5.0,2.4,3622.729753512403,0.0,54.0,0.0,0.0,29656.0,6,1,3,80.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,196.53274325980595,0.009624922429929534,0.006627081982054422,12356.666666666668,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11945,2,71.0,3,0.0,5,111,1,0,75,8.0,0.0,0.0,335.13651151626493,0.0,0.0,31610.019999999997,0,50,2,9821,201711945,,,,612.0,0.0,1.0,4.0,0.0,1.0,1.0,2467.933459829721,0.0,249.0,0.0,0.0,28490.0,0,5,3,80.0,5,4.0,1,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,335.13651151626493,0.010602223963042888,0.011763303317524216,28490.0,8,4,8,8_0,8_2,8_0_0 +11946,2,48.0,2,0.0,2,111,2,0,37,6.0,0.0,138.792631956344,693.1310825140988,0.0,1291.6349196432232,34499.995302790885,0,60,1,9822,201711946,,,470.0,,2.0,0.0,4.0,3.0,4.0,2.5,736.0892512221288,1245.0,0.0,0.0,0.0,57247.0,0,1,2,85.0,8,7.0,2,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2123.558634113666,0.061552432557632264,0.037094671058984154,22898.8,6,3,6,6_1,6_3,6_0_1 +11947,2,73.0,2,0.0,1,112,2,77,75,9.0,1599.1476572119932,0.0,981.1827987765347,61.9262679715128,0.0,35371.64,70,44,1,9823,201711947,,,645.0,,0.0,1.0,5.0,0.0,2.0,1.5,1850.1248023811834,0.0,729.0,0.0,0.0,48425.0,5,5,1,140.0,7,0.0,3,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2642.2567239600407,0.07469986474927487,0.05456389724233435,32283.333333333332,9,5,9,9_1,9_0,9_1_0 +11948,2,56.0,3,0.0,6,120,2,45,63,8.0,0.0,0.0,1172.3048254243645,2006.4110822770149,0.0,33123.619999999995,50,50,1,9824,201711948,,,250.0,,2.0,2.0,7.0,0.0,2.0,1.5,1331.7499240330903,0.0,871.0,0.0,0.0,40949.0,1,1,1,230.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3178.7159077013794,0.09596523289729142,0.0776262157244714,27299.333333333332,8,4,8,8_1,8_0,8_0_0 +11949,2,57.0,1,0.0,6,120,2,75,56,2.0,0.0,55.5170527825376,1776.6272899657417,0.0,0.0,51953.2,71,50,1,9826,201711949,,,,,1.0,2.0,7.0,0.0,4.0,2.1,3058.917400480646,0.0,1320.0,0.0,0.0,28059.0,5,1,1,135.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1832.1443427482793,0.03526528380827898,0.06529613823544243,13361.42857142857,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11950,2,36.0,1,0.0,9,120,2,42,37,7.0,0.0,0.0,2647.4438480019803,0.0,0.0,33165.479999999996,30,31,1,9828,201711950,,,963.0,,2.0,0.0,6.0,2.0,4.0,2.1,2255.492885966795,0.0,1967.0,0.0,0.0,50383.0,1,1,2,150.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2647.4438480019803,0.07982528363834869,0.052546371752416096,23991.90476190476,7,4,7,7_1,7_0,7_0_0 +11951,1,76.0,4,127.0,99,111,1,0,86,3.0,0.0,0.0,430.6975248401798,0.0,3269.706948895876,15944.06,0,71,2,9829,201711951,1608.0,1608.0,450.0,235.0,0.0,9.0,5.0,0.0,1.0,1.0,1718.9746542433804,0.0,320.0,1848.0,0.0,13424.0,0,5,3,75.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,3700.404473736056,0.23208671277805376,0.27565587557628546,13424.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11952,2,37.0,1,0.0,1,112,5,20,35,5.0,0.0,555.170527825376,646.0462872602698,60.15694602946958,0.0,41499.76,31,30,1,983,201711952,,,310.0,,2.0,0.0,5.0,2.0,4.0,2.1,2411.3817135378367,0.0,480.0,0.0,0.0,41856.0,1,1,1,110.0,9,1.0,4,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,1261.3737611151153,0.030394724237323666,0.03013603213673345,19931.42857142857,5,3,5,5_1,5_1,5_1_0 +11953,2,45.0,2,0.0,6,211,2,21,34,5.0,0.0,0.0,1486.939326349907,0.0,2256.438567262197,47002.66,50,20,1,9830,201711953,,,197.0,,3.0,0.0,4.0,2.0,4.0,2.5,3189.429254913989,804.0,772.2,803.88,0.0,49981.0,1,1,2,120.0,1,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,3743.3778936121043,0.0796418307732393,0.0748960183592186,19992.4,5,3,5,5_1,5_1,5_0_0 +11954,1,39.0,4,196.0,7,111,2,85,65,2.0,0.0,0.0,1362.0809223070687,0.0,1656.0853377524566,23091.0,71,50,1,9831,201711954,,,902.0,473.0,1.0,1.0,6.0,3.0,5.0,2.8,2297.5152957378655,0.0,1012.0,936.0,0.0,33902.0,6,1,3,110.0,8,6.0,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,3018.1662600595255,0.13070747304402258,0.08902620081586707,12107.857142857143,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +11955,2,54.0,3,0.0,4,111,4,0,52,5.0,0.0,0.0,1749.7086946632305,0.0,0.0,16535.240315994117,0,71,2,9832,201711955,,,,490.0,2.0,1.0,2.0,1.0,2.0,1.5,4182.313394048455,0.0,1300.0,0.0,0.0,29753.0,0,2,3,55.0,9,7.0,2,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1749.7086946632305,0.1058169498129871,0.0588078074366696,19835.333333333332,5,3,5,5_0,5_3,5_0_1 +11956,2,34.0,1,0.0,9,112,2,42,47,9.0,0.0,0.0,1043.0955679723106,0.0,1689.7024546512778,72545.87999999999,20,31,1,9833,201711956,,,651.0,,2.0,0.0,5.0,2.0,4.0,2.1,1702.4772991412087,0.0,775.0,955.0,0.0,70403.0,1,1,2,105.0,10,3.0,4,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,2732.7980226235886,0.037669927260150254,0.03881649961824906,33525.23809523809,9,5,9,9_1,9_1,9_0_0 +11957,2,36.0,3,0.0,7,112,5,43,47,7.0,0.0,0.0,672.964882562781,1815.3243125363467,0.0,37358.600000000006,33,31,1,9834,201711957,,,368.0,,2.0,0.0,5.0,2.0,4.0,2.1,1971.9189213725597,0.0,500.0,0.0,0.0,50422.0,1,1,2,140.0,7,1.0,4,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2488.289195099128,0.06660552577182034,0.04934927601243758,24010.47619047619,7,4,7,7_1,7_1,7_0_0 +11958,1,41.0,3,515.0,99,112,5,85,68,2.0,1110.5192063972174,624.566843803548,740.261370819059,123.8525359430256,0.0,19497.360000000004,43,71,1,9838,201711958,,,,135.0,1.0,0.0,5.0,4.0,6.0,2.7,660.8729597263294,0.0,550.0,0.0,0.0,28780.0,6,4,3,100.0,8,1.0,4,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,2599.19995696285,0.13331035365623087,0.09031271566931376,10659.25925925926,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +11959,0,71.0,9,0.0,5,111,4,78,77,8.0,0.0,0.0,1211.3367886130059,0.0,0.0,35949.240000000005,50,50,1,9839,201711959,,,,,0.0,1.0,2.0,0.0,2.0,1.5,1776.4326165818404,0.0,900.0,0.0,0.0,43577.0,5,5,5,70.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1211.3367886130059,0.03369575514289052,0.027797617748192987,29051.333333333332,8,4,8,8_1,8_3,8_0_0 +11960,2,55.0,2,0.0,8,111,2,68,62,8.0,0.0,0.0,538.3719060502248,0.0,1362.3778953732817,24605.03665845403,50,50,1,984,201711960,,,337.0,,2.0,2.0,4.0,0.0,2.0,1.5,1754.5717859472088,0.0,400.0,770.0,0.0,43440.0,1,1,3,85.0,9,7.0,3,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1900.7498014235066,0.07725043566518845,0.04375575049317464,28960.0,8,4,8,8_1,8_3,8_0_0 +11961,1,28.0,3,462.0,5,111,6,85,56,1.0,555.2596031986087,0.0,969.0694308904046,212.31863304518674,0.0,26213.520000000004,50,43,1,9840,201711961,,,,,1.0,0.0,4.0,3.0,5.0,2.4,736.8539289617557,0.0,720.0,0.0,0.0,22014.0,6,4,3,90.0,6,4.0,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1736.6476671342002,0.06625007504273367,0.07888832866058873,9172.5,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11962,2,46.0,2,0.0,6,111,2,46,34,9.0,0.0,388.6193694777632,1730.8656779514727,0.0,0.0,28329.46216912759,30,20,1,9841,201711962,,,339.0,,2.0,0.0,6.0,3.0,5.0,2.6,1848.8024294515603,0.0,1286.0,0.0,0.0,87153.0,1,1,2,113.0,5,4.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,2119.4850474292357,0.07481557661687531,0.02431912897352054,33520.38461538462,9,5,9,9_1,9_2,9_0_0 +11963,2,59.0,3,0.0,5,300,4,67,77,3.0,0.0,48.5774211847204,1839.8859889266432,106.15931652259337,0.0,23241.52,70,71,1,9843,201711963,,,124.0,,2.0,1.0,4.0,1.0,3.0,2.0,2690.556403322022,0.0,1367.0,0.0,0.0,28987.0,1,7,1,80.0,0,0.0,4,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1994.622726633957,0.08582152658836242,0.06881094030544578,14493.5,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11964,2,52.0,4,0.0,7,111,2,85,85,2.0,0.0,0.0,2691.859530251124,442.3304855108057,0.0,43449.36,50,50,1,9844,201711964,,,400.0,,0.0,1.0,5.0,2.0,4.0,2.3,4207.47212167825,0.0,2000.0,0.0,0.0,25230.0,5,5,1,160.0,6,4.0,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,3134.1900157619298,0.07213431948737403,0.12422473308608521,10969.565217391306,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11965,2,69.0,2,0.0,6,111,2,75,75,9.0,0.0,0.0,4516.940291761386,0.0,0.0,57174.840000000004,50,70,1,9845,201711965,,,527.0,,0.0,3.0,8.0,0.0,2.0,1.5,2030.5231503941109,0.0,3356.0,0.0,0.0,51228.0,5,5,1,190.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,4516.940291761386,0.07900223755346558,0.08817327031626036,34152.0,9,5,9,9_1,9_4,9_0_0 +11966,2,45.0,2,0.0,9,112,4,46,37,10.0,0.0,0.0,1615.1157181506744,0.0,70.77287768172891,46296.4458467513,20,43,1,9846,201711966,,,,1850.0,2.0,0.0,4.0,1.0,3.0,2.0,1883.571871063062,0.0,1200.0,40.0,0.0,84240.0,1,1,3,130.0,9,2.0,4,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1685.8885958324033,0.03641507603873019,0.020012922552616375,42120.0,10,5,10,10_1,10_1,10_0_0 +11967,2,75.0,3,0.0,1,112,2,77,75,3.0,1960.8596272956584,0.0,605.6683943065029,226.47320858153253,0.0,44654.77574816404,50,70,1,9847,201711967,,,64.0,,0.0,1.0,6.0,0.0,2.0,1.5,2121.836876280326,0.0,450.0,0.0,0.0,23814.0,5,5,1,100.0,9,0.0,3,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2793.0012301836937,0.06254652908650038,0.11728400227528737,15876.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11968,2,65.0,3,0.0,7,112,4,77,75,5.0,0.0,0.0,1615.1157181506744,120.31389205893916,0.0,33990.324177580944,50,50,1,9848,201711968,,,450.0,,0.0,0.0,4.0,0.0,3.0,2.0,4436.2192646806,0.0,1200.0,0.0,0.0,38677.0,5,5,1,88.0,6,1.0,5,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1735.4296102096137,0.051056577193643066,0.044869809194343246,19338.5,5,3,5,5_1,5_1,5_0_0 +11969,1,27.0,2,128.0,8,111,4,37,37,10.0,0.0,0.0,1317.665240057925,0.0,0.0,48575.67,30,20,2,9849,201711969,,,,452.0,2.0,0.0,2.0,0.0,2.0,1.5,2844.290730601298,0.0,979.0,0.0,0.0,62030.0,1,1,3,49.0,9,7.0,3,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1317.665240057925,0.027126033260229353,0.02124238658806908,41353.333333333336,10,5,10,10_0,10_3,10_0_0 +11970,2,44.0,2,0.0,1,111,2,46,33,9.0,0.0,0.0,1076.7438121004495,0.0,1415.4575536345783,31714.976322376293,20,20,1,985,201711970,,,80.0,,2.0,0.0,4.0,1.0,3.0,1.8,3090.438215683964,0.0,800.0,800.0,0.0,65930.0,1,1,2,80.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,2492.201365735028,0.07858121476750628,0.03780071842461744,36627.777777777774,9,5,9,9_1,9_4,9_1_0 +11971,2,33.0,3,0.0,9,112,2,13,43,6.0,0.0,0.0,0.0,58.38762408742635,0.0,24421.836322376294,44,33,1,9850,201711971,,,,,2.0,0.0,5.0,2.0,4.0,2.1,2058.5217167656674,0.0,0.0,0.0,0.0,45136.0,1,1,2,110.0,7,0.0,4,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,58.38762408742635,0.002390795815543535,0.0012935932312882479,21493.333333333332,6,3,6,6_1,6_0,6_0_0 +11972,2,50.0,3,0.0,8,112,3,0,52,7.0,0.0,0.0,734.8859670029,0.0,1369.444252151851,37941.280000000006,0,50,2,9851,201711972,,,,414.0,3.0,1.0,4.0,2.0,3.0,2.0,4019.678760061328,1320.0,0.0,0.0,0.0,51890.0,0,1,3,78.0,10,2.0,2,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,2104.330219154751,0.05546281567608553,0.0405536754510455,25945.0,7,4,7,7_0,7_1,7_0_0 +11973,2,77.0,3,0.0,6,111,1,0,74,10.0,0.0,0.0,612.3980431321307,0.0,0.0,44919.54,0,31,2,9852,201711973,,,,920.0,0.0,4.0,4.0,0.0,1.0,1.0,3068.3072193841153,0.0,455.0,0.0,0.0,66440.0,0,5,3,80.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,612.3980431321307,0.013633221603162693,0.009217309499279512,66440.0,10,5,10,10_0,10_3,10_0_0 +11974,2,45.0,3,0.0,3,112,5,52,56,4.0,0.0,0.0,1873.5342330547821,0.0,0.0,44451.26,71,50,1,9853,201711974,,,693.0,,2.0,0.0,4.0,3.0,5.0,2.8,1977.486534116128,0.0,1392.0,0.0,0.0,45902.0,1,1,2,90.0,10,0.0,4,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,1873.5342330547821,0.042148056839216304,0.0408159608090014,16393.57142857143,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +11975,1,47.0,4,126.0,99,111,2,22,56,1.0,0.0,0.0,723.7513311392196,0.0,1348.6950968162168,17842.68,71,71,2,9854,201711975,,,,,3.0,2.0,5.0,2.0,4.0,2.5,4212.808163876721,1300.0,0.0,0.0,0.0,13609.0,4,1,3,160.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2072.4464279554363,0.11615107304258308,0.15228498992985792,5443.6,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +11976,2,79.0,2,0.0,1,112,2,0,71,3.0,1965.618995323075,0.0,686.4241802140366,81.38880933398825,0.0,22821.539999999997,0,70,1,9855,201711976,,,155.0,,0.0,4.0,6.0,0.0,1.0,1.0,1584.6228595960908,0.0,510.0,0.0,0.0,14913.0,0,5,1,125.0,6,0.0,1,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,2733.4319848711,0.11977421264608351,0.18329189196480253,14913.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11977,1,19.0,3,224.0,9,111,2,0,84,1.0,0.0,0.0,336.4824412813905,0.0,0.0,11710.191191295746,0,41,2,9857,201711977,,,50.0,288.0,0.0,0.0,1.0,0.0,1.0,1.0,4278.011370498982,0.0,250.0,0.0,0.0,8691.0,0,3,3,18.0,9,7.0,1,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,336.4824412813905,0.028734154360477042,0.03871619391110235,8691.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11978,2,48.0,2,0.0,6,112,5,45,42,9.0,0.0,0.0,986.5665178370369,0.0,0.0,34810.81999999999,31,20,1,9859,201711978,,,363.0,,2.0,0.0,6.0,0.0,2.0,1.5,2537.955970916121,0.0,733.0,0.0,0.0,46449.0,1,1,1,120.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,986.5665178370369,0.028340800872746954,0.02123977949658845,30966.0,8,4,8,8_1,8_0,8_0_0 +11979,2,32.0,2,0.0,9,112,5,43,43,6.0,0.0,555.170527825376,2220.7841124571773,240.62778411787832,0.0,29817.519999999993,44,50,1,986,201711979,,,260.0,,2.0,0.0,4.0,2.0,4.0,2.1,3152.7250147387695,0.0,1650.0,0.0,0.0,45360.0,1,1,2,100.0,8,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3016.582424400432,0.10116811942778718,0.06650313986773439,21600.0,6,3,6,6_1,6_0,6_0_0 +11980,2,75.0,4,0.0,4,111,2,0,86,5.0,0.0,0.0,668.0781518208182,0.0,1244.9493201380465,10525.44,0,71,2,9861,201711980,,,200.0,373.0,0.0,6.0,4.0,0.0,1.0,1.0,1497.3266718788316,1200.0,0.0,0.0,0.0,18770.0,0,6,3,80.0,7,4.0,1,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1913.0274719588647,0.18175273166336653,0.10191941779216114,18770.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +11981,2,62.0,2,0.0,3,111,1,86,86,7.0,0.0,0.0,894.0506907164897,0.0,763.1242446862657,43012.69689779589,30,20,2,9863,201711981,,,,,0.0,3.0,2.0,0.0,2.0,1.5,2252.1571392103633,735.5713833571763,360.0,0.0,0.0,35080.0,5,5,1,50.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,1657.1749354027554,0.03852757569097404,0.04723987843223362,23386.666666666668,6,3,6,6_0,6_4,6_0_1 +11982,2,37.0,2,0.0,9,221,4,56,37,3.0,0.0,0.0,2923.3594498527204,0.0,0.0,56804.54000000001,44,71,1,9864,201711982,,,504.0,,2.0,0.0,4.0,2.0,4.0,2.1,2750.8179304962487,0.0,2172.0,0.0,0.0,30523.0,1,1,2,117.0,1,2.0,4,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2923.3594498527204,0.05146348249370068,0.09577562657185468,14534.761904761905,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11983,2,68.0,4,0.0,5,111,2,0,75,3.0,0.0,0.0,526.6682763520782,0.0,981.4350473754932,15621.36,0,50,1,9866,201711983,,,100.0,397.0,0.0,5.0,2.0,0.0,1.0,1.0,2403.1267012583317,946.0,0.0,0.0,0.0,14786.0,0,5,3,58.0,9,7.0,1,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1508.1033237275715,0.09654110293390405,0.10199535531770401,14786.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +11984,2,71.0,3,0.0,1,300,5,77,78,4.0,0.0,97.1548423694408,759.1043875308169,42.46372660903735,0.0,16823.84,50,60,1,9867,201711984,,,30.0,,0.0,4.0,4.0,0.0,2.0,1.5,678.5308828626678,0.0,564.0,0.0,0.0,24750.0,5,5,3,70.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,898.722956509295,0.053419609108817906,0.036312038646840204,16500.0,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +11985,1,62.0,5,150.0,9,111,2,0,77,2.0,0.0,0.0,640.2415621616174,0.0,1193.076431798961,17664.418725051404,0,70,8,9868,201711985,,,200.0,205.0,0.0,3.0,3.0,1.0,2.0,1.5,1386.6017344199304,1150.0,0.0,0.0,0.0,17640.0,0,5,3,60.0,8,6.0,2,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1833.3179939605784,0.10378592256537687,0.10392959149436386,11760.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11986,2,83.0,3,0.0,3,111,2,74,77,8.0,0.0,0.0,605.6683943065029,0.0,2653.9829130648345,23358.26,71,71,1,9869,201711986,,,640.0,,0.0,2.0,5.0,0.0,2.0,1.5,2154.5517083013847,0.0,450.0,1500.0,0.0,39520.0,5,5,1,80.0,5,4.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,3259.6513073713377,0.13955026219296035,0.08248105534846502,26346.666666666668,7,4,7,7_1,7_2,7_0_1 +11987,2,81.0,2,0.0,8,112,6,72,74,7.0,0.0,0.0,3857.123056677248,0.0,867.2257481891272,26497.02093741023,41,30,1,9870,201711987,,,662.0,,0.0,0.0,5.0,0.0,2.0,1.5,1746.5429187773343,835.9142665434427,2520.0,0.0,0.0,41737.0,5,5,1,140.0,9,2.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,4724.348804866375,0.17829735712652245,0.11319330102466336,27824.666666666668,8,4,8,8_1,8_1,8_0_0 +11988,2,73.0,1,0.0,2,111,4,75,72,10.0,0.0,0.0,4377.666509302752,0.0,2772.7728238630903,76170.23272020479,20,12,2,9871,201711988,,,228.0,,0.0,2.0,3.0,0.0,2.0,1.5,1885.3029449176393,2672.660914636073,2147.0,0.0,0.0,100909.0,5,5,1,72.0,8,6.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,7150.439333165843,0.09387445827337126,0.07086027344603398,67272.66666666667,10,5,10,10_0,10_2,10_0_1 +11989,2,50.0,4,0.0,8,120,5,46,46,6.0,0.0,832.755791738064,1145.3862301218533,0.0,0.0,55571.78000000001,41,31,1,9874,201711989,,,660.0,,2.0,0.0,5.0,2.0,4.0,2.3,1351.0249313162226,0.0,851.0,0.0,0.0,51862.0,1,1,2,150.0,0,3.0,4,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1978.1420218599173,0.035596160890652,0.03814241683428941,22548.695652173916,6,3,6,6_1,6_1,6_0_0 +11990,1,42.0,4,80.0,5,111,2,85,55,3.0,0.0,0.0,4845.3471544520235,0.0,1698.549064361494,27824.676322376294,31,43,1,9875,201711990,,,660.0,430.0,1.0,0.0,4.0,2.0,4.0,2.3,2771.6003140671933,0.0,3600.0,960.0,0.0,31833.0,4,1,3,80.0,8,7.0,4,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,6543.896218813517,0.2351831928966947,0.2055695730472628,13840.434782608696,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +11991,2,76.0,2,0.0,3,111,1,74,74,7.0,0.0,0.0,484.5347154452023,0.0,0.0,38029.64,30,30,2,9876,201711991,,,,,0.0,3.0,4.0,0.0,2.0,1.5,2021.918797917637,0.0,360.0,0.0,0.0,36861.0,5,5,1,90.0,9,7.0,3,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,484.5347154452023,0.012740975603376796,0.013144915098483555,24574.0,7,4,7,7_0,7_3,7_0_1 +11992,2,46.0,3,0.0,9,112,2,65,55,5.0,0.0,0.0,897.7351533387498,0.0,2121.4170085098244,53606.92,31,31,1,9877,201711992,,,415.0,,2.0,0.0,4.0,2.0,4.0,2.5,1399.8540448593405,0.0,667.0,1199.0,0.0,49474.0,1,1,2,130.0,6,0.0,4,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,3019.152161848574,0.056320194516838014,0.06102502651591895,19789.6,5,3,5,5_1,5_0,5_0_0 +11993,2,37.0,2,0.0,5,111,2,0,46,6.0,0.0,0.0,2086.1911359446212,0.0,0.0,17557.239999999998,0,20,1,9878,201711993,,,400.0,,1.0,0.0,5.0,2.0,3.0,1.6,2026.5958006432436,0.0,1550.0,0.0,0.0,38012.0,0,1,2,90.0,8,7.0,2,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2086.1911359446212,0.11882227137890816,0.05488243543998267,23757.5,6,3,6,6_1,6_3,6_0_0 +11994,1,31.0,5,399.0,9,111,4,67,54,4.0,0.0,0.0,901.7729426341265,0.0,0.0,31877.34,60,31,2,9879,201711994,,,320.0,93.0,2.0,1.0,4.0,3.0,5.0,2.4,1069.103803617394,0.0,670.0,0.0,0.0,38998.0,1,1,3,77.0,8,6.0,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,901.7729426341265,0.028288839113744323,0.02312356896851445,16249.166666666668,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +11995,2,64.0,2,0.0,8,111,1,0,86,8.0,0.0,0.0,318.9853543347582,0.0,0.0,19411.24,0,50,2,9880,201711995,,,,,0.0,2.0,3.0,0.0,1.0,1.0,1935.4959774466997,0.0,237.0,0.0,0.0,30526.0,0,5,1,68.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,318.9853543347582,0.016433023049262085,0.010449628327810987,30526.0,8,4,8,8_0,8_4,8_0_0 +11996,2,53.0,4,0.0,2,300,6,0,56,2.0,0.0,0.0,1615.1157181506744,184.0094819724952,0.0,21896.280836034974,0,50,1,9881,201711996,,,600.0,560.0,1.0,2.0,3.0,1.0,2.0,1.5,2292.0710939239516,0.0,1200.0,0.0,0.0,19230.0,0,1,3,60.0,0,1.0,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,1799.1252001231696,0.08216578941398704,0.09355825273651427,12820.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +11997,2,60.0,3,0.0,9,211,2,54,46,7.0,0.0,0.0,969.0694308904046,0.0,1663.1626255206295,36880.020000000004,50,50,1,9883,201711997,,,503.0,,3.0,1.0,6.0,2.0,4.0,2.5,1492.6046929677482,0.0,720.0,940.0,0.0,64310.0,1,1,2,134.0,2,3.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2632.232056411034,0.07137284785667236,0.040930369404618784,25724.0,7,4,7,7_1,7_1,7_0_0 +11998,2,59.0,3,0.0,5,111,2,0,52,2.0,0.0,0.0,1510.1331964708804,0.0,0.0,25075.762066597374,0,50,2,9884,201711998,,,,449.0,2.0,1.0,3.0,1.0,2.0,1.5,2145.365042206447,0.0,1122.0,0.0,0.0,19153.0,0,1,3,67.0,8,7.0,2,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1510.1331964708804,0.06022282363583601,0.07884577854492145,12768.666666666666,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +11999,2,85.0,3,0.0,1,120,6,0,77,2.0,1903.7472109666587,0.0,511.45331074771354,268.9369351905699,0.0,14801.9,0,71,1,9885,201711999,,,,,0.0,5.0,3.0,0.0,1.0,1.0,2982.528410462787,0.0,380.0,0.0,0.0,11545.0,0,5,1,49.0,0,0.0,1,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2684.137456904942,0.18133735918395222,0.23249349994845753,11545.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +12000,2,50.0,2,0.0,1,111,2,0,37,10.0,0.0,0.0,702.5753373955433,0.0,1583.5431381286844,55744.4,0,71,2,9886,201712000,,,296.0,,1.0,2.0,3.0,1.0,2.0,1.5,1234.0593443820687,0.0,522.0,895.0,0.0,58632.0,0,1,3,80.0,9,7.0,2,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,2286.1184755242275,0.04101072888979391,0.0389909686779272,39088.0,9,5,9,9_0,9_3,9_1_0 +12001,1,19.0,2,177.0,1,111,2,0,84,1.0,0.0,0.0,545.1015548758526,0.0,0.0,12488.5,0,30,2,9887,201712001,,,,322.0,0.0,0.0,2.0,0.0,1.0,1.0,3258.2517895588658,0.0,405.0,0.0,0.0,3033.0,0,3,3,41.0,9,7.0,1,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,545.1015548758526,0.043648280808411946,0.1797235591413955,3033.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +12002,2,52.0,2,0.0,6,111,4,56,13,3.0,0.0,0.0,2422.6735772260117,0.0,0.0,27666.437558087902,50,50,1,9888,201712002,,,,,3.0,1.0,7.0,3.0,5.0,2.8,1933.05330796598,0.0,1800.0,0.0,0.0,46530.0,1,1,2,112.0,6,5.0,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,2422.6735772260117,0.08756723998669559,0.052066915478745146,16617.857142857145,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +12003,2,66.0,1,0.0,2,120,2,37,74,10.0,0.0,0.0,1934.1010724854325,0.0,884.6609710216114,60789.8,50,50,1,989,201712003,,,58.0,,1.0,3.0,4.0,0.0,2.0,1.5,1564.9057505673147,0.0,1437.0,500.0,0.0,69868.0,1,5,1,110.0,0,1.0,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,2818.762043507044,0.04636899683017618,0.040344106651214344,46578.666666666664,10,5,10,10_1,10_1,10_0_1 +12004,2,89.0,1,0.0,4,111,2,0,77,8.0,1467.471808453466,208.188947934516,524.9126083989692,0.0,0.0,15225.2,0,70,1,9891,201712004,,,82.0,,0.0,0.0,4.0,0.0,1.0,1.0,3001.3664568386525,0.0,390.0,0.0,0.0,30040.0,0,5,1,140.0,7,5.0,1,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2200.573364786951,0.14453493975691295,0.07325477246294777,30040.0,8,4,8,8_1,8_2,8_0_1 +12005,2,33.0,2,0.0,9,300,1,67,46,10.0,0.0,0.0,2760.5019482725274,0.0,0.0,68983.18000000001,43,31,1,9893,201712005,,,739.0,,2.0,0.0,5.0,1.0,3.0,1.8,2736.983601388817,0.0,2051.0,0.0,0.0,74729.0,4,1,2,126.0,0,0.0,4,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2760.5019482725274,0.04001702948852934,0.036940169790476624,41516.11111111111,10,5,10,10_1,10_0,10_0_0 +12006,2,48.0,3,0.0,2,112,5,62,47,5.0,1903.7472109666587,346.98157989085996,541.0637655804759,0.0,0.0,50802.44,42,42,1,9894,201712006,,,320.0,,3.0,0.0,4.0,2.0,4.0,2.5,1727.8730753879158,0.0,402.0,0.0,0.0,49380.0,1,1,1,110.0,9,0.0,4,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,2791.7925564379943,0.054953906868213304,0.056536908797853266,19752.0,5,3,5,5_1,5_0,5_0_1 +12007,2,24.0,2,0.0,1,120,2,0,63,8.0,0.0,0.0,1036.3659191466827,0.0,0.0,36313.560000000005,0,44,2,9895,201712007,,,,,1.0,0.0,3.0,0.0,1.0,1.0,3312.7978830500792,0.0,770.0,0.0,0.0,27791.0,0,1,3,70.0,0,1.0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,1036.3659191466827,0.02853936433515972,0.037291422372231396,27791.0,8,4,8,8_0,8_1,8_1_0 +12008,2,79.0,3,0.0,8,120,2,0,78,5.0,0.0,0.0,1776.6272899657417,132.69914565324171,0.0,34958.78,0,71,1,9897,201712008,,,120.0,,0.0,0.0,3.0,1.0,2.0,1.5,3752.7680342039016,0.0,1320.0,0.0,0.0,30012.0,0,5,3,87.0,0,0.0,2,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,1909.3264356189834,0.05461650651478637,0.06361876701382725,20008.0,5,3,5,5_1,5_0,5_0_0 +12009,2,55.0,3,0.0,8,111,2,0,63,7.0,0.0,0.0,672.964882562781,0.0,1086.3636724145388,26927.519999999997,0,70,1,9899,201712009,,,,,1.0,2.0,4.0,0.0,1.0,1.0,2208.0893524808776,0.0,500.0,614.0,0.0,24852.0,0,1,2,92.0,9,7.0,1,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,1759.3285549773198,0.06533570692649453,0.07079223221379848,24852.0,7,4,7,7_1,7_3,7_0_0 +12010,2,77.0,3,0.0,6,111,5,77,75,9.0,0.0,278.9731902322514,918.607458753625,0.0,1711.8053151898139,54845.399999999994,70,44,1,990,201712010,,,540.0,,1.0,2.0,5.0,1.0,3.0,2.0,856.9681905398002,1650.0,0.0,0.0,0.0,63900.0,5,5,1,92.0,9,7.0,4,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,2909.3859641756903,0.05304703701998145,0.04553029677896229,31950.0,9,5,9,9_1,9_3,9_0_0 +12011,2,77.0,3,0.0,4,111,2,75,75,8.0,0.0,0.0,40.37789295376686,0.0,159.23897478389006,25774.431191295746,50,44,1,9900,201712011,,,40.0,,0.0,1.0,5.0,0.0,2.0,1.5,1424.759375932751,0.0,30.0,90.0,0.0,48224.0,5,5,1,120.0,6,5.0,3,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,199.61686773765692,0.00774476325999657,0.004139367695289833,32149.333333333332,9,5,9,9_1,9_2,9_0_1 +12012,2,49.0,4,0.0,3,111,5,37,38,10.0,0.0,388.6193694777632,2422.6735772260117,159.23897478389006,0.0,65524.63665845402,20,31,1,9901,201712012,,,,,2.0,0.0,4.0,2.0,4.0,2.3,1491.3970438829149,0.0,1800.0,0.0,0.0,127594.0,1,1,2,110.0,9,7.0,4,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,2970.531921487665,0.04533458059403685,0.023281125456429495,55475.65217391305,10,5,10,10_1,10_3,10_0_1 +12013,1,23.0,3,408.0,99,111,2,0,85,2.0,1237.435687128328,0.0,1197.87749096175,0.0,0.0,14915.1,0,71,1,9902,201712013,,,,,0.0,0.0,3.0,2.0,3.0,1.6,2903.9352749575205,0.0,890.0,0.0,0.0,18156.0,0,6,3,100.0,6,4.0,2,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,2435.313178090078,0.1632783674323389,0.13413269321932575,11347.5,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +12014,1,53.0,4,410.0,5,211,2,85,77,1.0,0.0,0.0,269.1859530251124,0.0,1061.5931652259337,16203.240000000002,50,71,2,9906,201712014,,,,,1.0,2.0,4.0,2.0,4.0,2.3,2144.656530843731,0.0,200.0,600.0,0.0,22425.0,8,7,3,85.0,1,3.0,4,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1330.7791182510462,0.0821304330646862,0.05934355042368099,9750.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +12015,2,73.0,1,0.0,4,111,2,74,74,10.0,0.0,832.755791738064,0.0,0.0,0.0,31039.039999999997,41,60,1,9907,201712015,,,439.0,,0.0,1.0,5.0,0.0,2.0,1.5,1553.0990413894667,0.0,0.0,0.0,0.0,72130.0,5,5,1,100.0,8,7.0,3,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,832.755791738064,0.026829302444214255,0.01154520715011873,48086.666666666664,10,5,10,10_1,10_3,10_0_1 +12016,2,56.0,2,0.0,8,112,2,77,77,5.0,0.0,0.0,236.88363866209892,0.0,1242.0640033143425,63194.420000000006,50,12,1,9909,201712016,,,643.0,,0.0,2.0,5.0,0.0,2.0,1.5,1818.4316784477476,0.0,176.0,702.0,0.0,33902.0,7,5,1,100.0,9,2.0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,1478.9476419764414,0.023403136574027286,0.043624200400461374,22601.333333333332,6,3,6,6_1,6_1,6_0_0 +12017,2,71.0,2,0.0,1,120,2,78,75,9.0,0.0,0.0,2352.685229439482,1450.8439924754427,0.0,35927.66,50,41,1,9911,201712017,,,310.0,,0.0,1.0,5.0,0.0,2.0,1.5,1600.010479394784,0.0,1748.0,0.0,0.0,51729.0,5,5,5,154.0,0,0.0,3,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3803.529221914925,0.1058663219902138,0.07352798665960922,34486.0,9,5,9,9_1,9_0,9_1_0 +12018,2,83.0,3,0.0,5,120,2,77,75,9.0,0.0,0.0,6109.175203904926,0.0,0.0,50058.23999999999,60,60,1,9912,201712018,,,448.0,,0.0,2.0,6.0,0.0,2.0,1.5,2459.495404920931,0.0,4539.0,0.0,0.0,53620.0,5,5,1,160.0,0,0.0,3,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,6109.175203904926,0.12204135031325367,0.11393463640255364,35746.666666666664,9,5,9,9_1,9_0,9_0_0 +12019,1,31.0,4,270.0,7,111,4,0,85,1.0,0.0,0.0,2018.894647688343,291.9381204371318,0.0,16739.56,0,71,1,9913,201712019,,,,201.0,1.0,0.0,5.0,3.0,5.0,2.4,769.1637904633909,0.0,1500.0,0.0,0.0,24370.0,0,6,3,120.0,8,6.0,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,2310.8327681254746,0.13804620719573718,0.09482284645570269,10154.166666666668,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +12020,2,68.0,4,0.0,1,111,2,77,78,8.0,3172.912018277764,0.0,753.7206684703146,132.69914565324171,0.0,39560.72,50,70,1,9915,201712020,,,160.0,,0.0,2.0,6.0,0.0,2.0,1.5,1675.3046295578654,0.0,560.0,0.0,0.0,42338.0,5,5,1,160.0,7,5.0,3,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,4059.3318324013208,0.10261016059367273,0.0958791589683339,28225.333333333332,8,4,8,8_1,8_2,8_1_0 +12021,2,35.0,3,0.0,6,111,4,31,31,9.0,0.0,0.0,3472.49879402395,0.0,0.0,47168.42,10,10,1,9916,201712021,,,521.0,,2.0,0.0,5.0,1.0,3.0,1.8,2590.0144426346947,0.0,2580.0,0.0,0.0,66996.0,1,1,3,130.0,8,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3472.49879402395,0.07361914590363532,0.051831434623320044,37220.0,9,5,9,9_1,9_3,9_0_0 +12022,2,66.0,2,0.0,7,111,4,75,75,9.0,0.0,0.0,201.8894647688343,0.0,0.0,46916.77864433685,60,60,1,9919,201712022,,,480.0,,0.0,2.0,8.0,0.0,2.0,1.5,1485.1877187691941,0.0,150.0,0.0,0.0,49889.0,5,5,1,120.0,10,8.0,3,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,201.8894647688343,0.004303139955522151,0.004046773131729125,33259.333333333336,9,5,9,9_1,9_4,9_0_0 +12023,2,45.0,4,0.0,4,111,2,0,54,1.0,0.0,0.0,589.5172371249961,0.0,1229.6787497200398,34512.32,0,41,2,992,201712023,,,450.0,,1.0,0.0,4.0,2.0,3.0,2.0,1210.446560249282,0.0,438.0,695.0,0.0,19248.0,0,1,2,85.0,6,5.0,2,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,1819.1959868450358,0.05271149510797987,0.09451350721347858,9624.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +12024,2,63.0,2,0.0,6,111,6,77,75,10.0,0.0,0.0,2157.186441844069,0.0,909.8127268948435,31846.702862930277,50,42,1,9922,201712024,,,570.0,,0.0,2.0,6.0,0.0,2.0,1.5,2198.4971027152137,876.9636278469154,1240.0,0.0,0.0,56406.0,5,5,1,110.0,9,7.0,3,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,3066.999168738913,0.09630507691610724,0.054373633456350615,37604.0,9,5,9,9_1,9_3,9_0_0 +12025,2,30.0,3,0.0,7,400,4,43,63,6.0,0.0,0.0,1090.2031097517051,70.77287768172891,0.0,29776.38,33,43,1,9923,201712025,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1813.480107387681,0.0,810.0,0.0,0.0,33133.0,1,1,3,70.0,0,1.0,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1160.975987433434,0.03898982977223672,0.035039869237118104,22088.666666666668,6,3,6,6_1,6_1,6_0_0 +12026,1,46.0,3,123.0,99,300,1,55,64,2.0,0.0,0.0,857.357260384983,0.0,1061.5931652259337,17193.199999999997,71,71,2,9929,201712026,600.0,600.0,,134.0,3.0,1.0,4.0,2.0,4.0,2.5,2549.663977112984,0.0,637.0,600.0,0.0,29326.0,4,1,3,72.0,0,1.0,4,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1918.9504256109167,0.11161101049315526,0.06543512329028564,11730.4,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +12027,2,51.0,2,0.0,2,111,1,46,38,10.0,0.0,0.0,1009.4473238441715,0.0,168.08558449410617,50708.81999999999,20,41,2,993,201712027,,,360.0,,2.0,0.0,4.0,2.0,4.0,2.3,2384.4137950640197,0.0,750.0,95.0,0.0,96310.0,1,1,2,105.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,1177.5329083382776,0.023221461440796252,0.012226486432751298,41873.913043478264,10,5,10,10_0,10_2,10_0_1 +12028,2,49.0,2,0.0,1,111,2,55,37,10.0,0.0,0.0,772.5636851820725,0.0,5085.031261432223,57498.18,31,20,1,9930,201712028,,,,,2.0,0.0,7.0,1.0,3.0,1.8,1700.6471387080935,0.0,574.0,2874.0,0.0,108113.0,1,1,2,210.0,8,7.0,4,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,5857.594946614296,0.10187444101038147,0.054180301597534945,60062.777777777774,10,5,10,10_1,10_3,10_1_0 +12029,2,65.0,3,0.0,3,111,2,0,75,6.0,1586.456009138882,0.0,821.0171567265928,0.0,0.0,25612.92,0,60,1,9931,201712029,,,235.0,,0.0,0.0,4.0,0.0,1.0,1.0,2775.158382415258,0.0,610.0,0.0,0.0,22387.0,0,5,1,90.0,8,6.0,1,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,2407.473165865475,0.09399448270113189,0.10753889158285948,22387.0,6,3,6,6_1,6_2,6_0_1 +12030,2,59.0,3,0.0,1,111,1,46,54,5.0,0.0,0.0,1749.7086946632305,0.0,0.0,61306.68369350259,31,60,2,9932,201712030,,,,1450.0,2.0,0.0,3.0,3.0,5.0,2.8,2283.410929332938,0.0,1300.0,0.0,0.0,57164.0,1,1,3,92.0,10,8.0,4,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,1749.7086946632305,0.02854026003772682,0.03060857698312278,20415.714285714286,5,3,5,5_0,5_4,5_1_0 +12031,2,27.0,1,0.0,8,211,5,54,38,9.0,0.0,416.377895869032,1197.87749096175,35.38643884086446,0.0,32266.219999999998,31,20,1,9934,201712031,,,282.0,,2.0,0.0,6.0,0.0,2.0,1.5,3239.287152870798,0.0,890.0,0.0,0.0,49336.0,1,1,2,100.0,4,4.0,3,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,1649.6418256716465,0.05112597092785107,0.033436878256681665,32890.666666666664,9,5,9,9_1,9_2,9_0_0 +12032,2,48.0,2,0.0,99,120,2,0,64,8.0,0.0,208.188947934516,2939.510607034227,141.54575536345783,0.0,35334.56784974978,0,43,1,9938,201712032,,,440.0,,3.0,1.0,5.0,0.0,3.0,2.0,4086.5267060221927,0.0,2184.0,0.0,0.0,53312.0,0,1,2,110.0,0,0.0,5,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,3289.245310332201,0.09308859596978186,0.06169802878024087,26656.0,7,4,7,7_1,7_0,7_0_0 +12033,2,62.0,3,0.0,8,111,2,0,67,6.0,0.0,0.0,283.99118044149355,0.0,375.09625171316327,18234.379999999997,0,71,2,9939,201712033,,,,382.0,1.0,1.0,2.0,0.0,1.0,1.0,3137.1007287407283,0.0,211.0,212.0,0.0,25260.0,0,1,3,52.0,8,7.0,1,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,659.0874321546569,0.03614531627369052,0.02609213904016852,25260.0,7,4,7,7_0,7_3,7_0_0 +12034,2,41.0,3,0.0,7,112,2,63,43,8.0,1507.1332086819382,0.0,1345.929765125562,0.0,0.0,65783.91812399033,50,33,1,9940,201712034,,,340.0,,2.0,0.0,5.0,2.0,4.0,2.1,1730.0667122885436,0.0,1000.0,0.0,0.0,63760.0,1,1,1,101.0,8,1.0,4,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2853.0629738075004,0.043370219579046854,0.04474690987778388,30361.90476190476,8,4,8,8_1,8_1,8_0_0 +12035,2,54.0,2,0.0,7,400,2,46,65,8.0,0.0,0.0,2438.8247344075185,95.54338487033404,0.0,29208.92,42,60,1,9942,201712035,,,300.0,,2.0,1.0,6.0,1.0,3.0,1.8,1611.7120371101068,0.0,1812.0,0.0,0.0,53496.0,1,1,1,160.0,0,0.0,4,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2534.3681192778527,0.08676692323022737,0.047374908764727316,29720.0,8,4,8,8_1,8_0,8_0_0 +12036,2,39.0,3,0.0,4,111,2,55,21,7.0,0.0,0.0,959.6479225345257,0.0,1691.471776593321,37438.94,60,43,1,9944,201712036,,,140.0,,2.0,0.0,5.0,2.0,4.0,2.1,3676.1553780709905,0.0,713.0,956.0,0.0,51134.0,1,1,2,120.0,8,6.0,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,2651.1196991278466,0.07081182584570628,0.05184651502186112,24349.52380952381,7,4,7,7_1,7_2,7_0_1 +12037,2,49.0,3,0.0,1,400,2,56,47,6.0,1586.456009138882,624.566843803548,2826.45250676368,0.0,0.0,16972.2,50,50,1,9945,201712037,,,285.0,,2.0,2.0,5.0,0.0,2.0,1.5,1545.8333155183393,0.0,2100.0,0.0,0.0,33720.0,4,1,2,100.0,0,1.0,3,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,5037.47535970611,0.29680744745561033,0.14939132146222153,22480.0,6,3,6,6_1,6_1,6_1_0 +12038,2,23.0,4,0.0,5,111,2,55,56,4.0,0.0,0.0,1628.57501580193,0.0,0.0,16653.72250520533,50,71,2,9948,201712038,,,912.0,340.0,2.0,1.0,3.0,0.0,2.0,1.5,4616.732769945467,0.0,1210.0,0.0,0.0,25222.0,4,1,3,70.0,8,7.0,3,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,1628.57501580193,0.09779044987046581,0.06456962238529577,16814.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +12039,2,27.0,2,0.0,4,112,2,0,42,6.0,0.0,0.0,403.7789295376686,0.0,884.6609710216114,23287.64,0,0,2,9949,201712039,,,,600.0,1.0,0.0,2.0,0.0,1.0,1.0,4710.229263447096,0.0,300.0,500.0,0.0,21880.0,0,1,3,48.0,10,2.0,1,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1288.43990055928,0.055327199345201146,0.058886649934153566,21880.0,6,3,6,6_0,6_1,6_0_1 +12040,2,65.0,4,0.0,1,400,6,0,75,2.0,0.0,0.0,1345.929765125562,106.15931652259337,0.0,10507.230875301626,0,60,1,995,201712040,,,630.0,248.0,0.0,5.0,2.0,0.0,1.0,1.0,2720.581524879695,0.0,1000.0,0.0,0.0,11776.0,0,5,3,63.0,0,0.0,1,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,1452.0890816481553,0.138199026830318,0.12330919511278493,11776.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +12041,2,61.0,1,0.0,8,111,2,75,,10.0,0.0,0.0,2163.6637141240117,0.0,4274.043840841568,79491.98435680919,31,10,1,9950,201712041,,,380.0,,0.0,3.0,7.0,0.0,2.0,1.5,1217.7562397050206,2073.200065831951,750.0,1200.0,0.0,109506.0,6,1,1,230.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,6437.70755496558,0.0809856189533421,0.05878862852232371,73004.0,10,5,10,10_1,10_3,10_0_0 +12042,2,86.0,2,0.0,6,400,2,71,71,3.0,1158.112886671384,0.0,807.5578590753372,90.23541904420436,0.0,14517.390875301628,71,70,1,9951,201712042,,,375.0,,0.0,4.0,4.0,0.0,2.0,1.5,1968.4159963894003,0.0,600.0,0.0,0.0,20883.0,5,5,1,90.0,0,0.0,3,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2055.9061647909257,0.14161678103526368,0.09844879398510395,13922.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +12043,2,88.0,3,0.0,6,111,2,0,77,3.0,0.0,0.0,340.5202305767672,0.0,1417.2268755766215,11369.2,0,71,8,9952,201712043,,,,440.0,0.0,6.0,2.0,0.0,1.0,1.0,3752.682107326639,0.0,253.0,801.0,0.0,16130.0,0,5,3,39.0,7,5.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1757.7471061533888,0.15460605021931084,0.10897378215458083,16130.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +12045,2,76.0,2,0.0,1,111,2,75,74,8.0,1738.7557860162149,0.0,1056.5548656235662,61.9262679715128,0.0,45445.96,50,50,1,9954,201712045,,,126.0,,0.0,1.0,4.0,0.0,2.0,1.5,1815.5114304146068,0.0,785.0,0.0,0.0,40293.0,5,5,1,80.0,5,4.0,3,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2857.236919611294,0.06287108732242193,0.07091149628003113,26862.0,7,4,7,7_1,7_2,7_1_0 +12046,2,45.0,2,0.0,1,112,2,42,37,8.0,0.0,0.0,798.1363507194583,0.0,3927.894711335955,47218.5,20,41,1,9955,201712046,,,370.0,,2.0,0.0,7.0,2.0,4.0,2.1,2240.7253201235094,0.0,593.0,2220.0,0.0,62821.0,1,1,2,178.0,10,2.0,4,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,4726.031062055414,0.10008854711724036,0.07523011512162196,29914.761904761905,8,4,8,8_1,8_1,8_1_0 +12047,1,37.0,3,515.0,2,300,2,0,85,2.0,0.0,0.0,3364.824412813905,0.0,0.0,25614.620197470056,0,70,1,9956,201712047,,,500.0,,0.0,0.0,6.0,4.0,5.0,2.2,750.3210450484703,0.0,2500.0,0.0,0.0,26710.0,0,6,3,180.0,0,0.0,2,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,3364.824412813905,0.13136343177738186,0.12597620414877966,12140.90909090909,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +12048,2,66.0,3,0.0,1,111,2,0,75,5.0,0.0,0.0,222.69271727360606,0.0,414.9831067126821,23754.92,0,50,1,9957,201712048,,,,,0.0,3.0,5.0,0.0,1.0,1.0,2586.685575262374,400.0,0.0,0.0,0.0,21230.0,0,5,1,90.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,637.6758239862882,0.026843947442731365,0.03003654375818597,21230.0,6,3,6,6_1,6_4,6_1_0 +12049,2,65.0,1,0.0,5,112,2,52,74,9.0,0.0,582.9290542166448,1864.1127246989033,212.31863304518674,0.0,48823.24,50,30,1,9958,201712049,,,500.0,,1.0,3.0,6.0,0.0,2.0,1.5,2242.69608628018,0.0,1385.0,0.0,0.0,47181.0,1,5,1,140.0,7,0.0,3,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,2659.360411960735,0.05446915059223302,0.05636507093874091,31454.0,8,4,8,8_1,8_0,8_0_0 +12050,2,43.0,1,0.0,1,111,1,0,37,10.0,0.0,0.0,1126.397112676959,0.0,1647.5568529585107,54664.026177315835,0,31,8,9959,201712050,,,,,1.0,1.0,1.0,0.0,1.0,1.0,2775.540791912759,1588.0712504272747,180.0,0.0,0.0,76647.0,0,1,1,13.0,10,8.0,1,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,2773.95396563547,0.050745511438134605,0.0361912921006102,76647.0,10,5,10,10_0,10_4,10_1_0 +12051,2,70.0,3,0.0,5,400,4,0,74,8.0,0.0,0.0,1211.3367886130059,61.9262679715128,0.0,19791.180000000004,0,60,1,996,201712051,,,90.0,,0.0,1.0,4.0,0.0,1.0,1.0,2270.4230798251565,0.0,900.0,0.0,0.0,31332.0,0,5,1,85.0,0,1.0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,1273.2630565845186,0.06433487324073241,0.04063778426479377,31332.0,8,4,8,8_1,8_1,8_0_0 +12052,0,33.0,1,0.0,4,112,5,55,13,6.0,0.0,0.0,0.0,169.8549064361494,0.0,21539.32532640478,43,43,1,9960,201712052,,,,,2.0,0.0,4.0,0.0,2.0,1.5,1956.3337795466048,0.0,0.0,0.0,0.0,37908.0,1,1,5,100.0,9,0.0,3,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,169.8549064361494,0.00788580440019291,0.0044807140032750185,25272.0,7,4,7,7_1,7_0,7_0_1 +12053,2,53.0,2,0.0,7,112,2,77,48,9.0,1427.810408224994,0.0,1056.5548656235662,180.47083808840873,0.0,29358.65856230322,50,50,1,9964,201712053,,,,,1.0,1.0,6.0,0.0,2.0,1.5,1505.3639526663535,0.0,785.0,0.0,0.0,49590.0,5,1,1,120.0,8,1.0,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,2664.836111936969,0.09076831989042722,0.05373736866176586,33060.0,9,5,9,9_1,9_1,9_0_0 +12054,1,46.0,4,206.0,9,111,2,0,52,1.0,0.0,0.0,71.81840132073795,0.0,133.83205191483998,17568.260000000002,0,30,1,9966,201712054,,,,,1.0,0.0,4.0,2.0,3.0,2.0,701.4999855439105,129.0,0.0,0.0,0.0,18273.0,0,1,3,80.0,8,7.0,2,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,205.6504532355779,0.011705795180375171,0.011254334440736492,9136.5,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +12055,1,51.0,4,135.0,8,112,2,77,68,1.0,0.0,0.0,1308.2437317020463,116.7752481748527,0.0,14187.920631988232,71,71,2,9967,201712055,,,,215.0,1.0,5.0,2.0,0.0,2.0,1.5,2203.657471678127,0.0,972.0,0.0,0.0,13353.0,6,4,3,28.0,7,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1425.018979876899,0.10043888860387593,0.10671901294667109,8902.0,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +12056,2,59.0,3,0.0,6,112,5,52,78,2.0,0.0,1387.9263195634398,1261.1361899226515,162.7776186679765,0.0,32351.719999999998,42,71,1,9968,201712056,,,200.0,,1.0,2.0,4.0,0.0,2.0,1.5,3168.655327043829,0.0,937.0,0.0,0.0,19155.0,1,7,1,80.0,6,0.0,3,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2811.840128154068,0.08691470277790697,0.1467940552416637,12770.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +12057,2,61.0,3,0.0,7,111,2,0,74,5.0,0.0,0.0,801.6937821849817,0.0,1493.9391841656557,21034.76,0,12,2,9969,201712057,,,,,0.0,2.0,3.0,0.0,1.0,1.0,2727.334252859519,1440.0,0.0,0.0,0.0,20569.0,0,4,3,90.0,6,4.0,1,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,2295.6329663506376,0.10913521078208821,0.11160644495846359,20569.0,5,3,5,5_0,5_2,5_0_0 +12058,2,65.0,3,0.0,1,111,2,0,22,2.0,0.0,0.0,646.0462872602698,0.0,2017.0270139292745,37127.371827373754,0,70,1,997,201712058,,,720.0,,1.0,7.0,7.0,0.0,1.0,1.0,2311.838206471371,0.0,480.00000000000006,1140.0000000000002,0.0,11808.0,0,5,1,360.0,6,4.0,1,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,2663.0733011895445,0.07172803164122915,0.2255312755072446,11808.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +12059,2,70.0,3,0.0,3,111,2,77,75,8.0,0.0,0.0,1749.7086946632305,0.0,2830.9151072691566,33598.44,60,50,1,9970,201712059,,,300.0,,0.0,1.0,5.0,0.0,2.0,1.5,1978.206485236244,0.0,1300.0,1600.0,0.0,46339.0,5,5,1,120.0,8,6.0,3,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,4580.623801932387,0.13633441915554373,0.09885029460999131,30892.666666666668,8,4,8,8_1,8_2,8_0_1 +12060,2,44.0,3,0.0,9,111,2,0,43,1.0,1189.8420068541616,346.98157989085996,2454.975891589025,90.23541904420436,0.0,24951.559999999998,0,30,1,9971,201712060,,,744.0,,1.0,0.0,6.0,1.0,2.0,1.3,2272.24125701462,0.0,1824.0,0.0,0.0,20752.0,0,1,2,136.0,8,7.0,2,5,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,4082.034897378251,0.16359838412420913,0.19670561379039375,15963.076923076922,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +12061,2,45.0,2,0.0,3,300,6,42,42,7.0,0.0,0.0,642.0084979648931,0.0,1496.8463629685666,78908.61169350261,30,31,2,9972,201712061,,,300.0,,2.0,0.0,4.0,2.0,4.0,2.3,5703.934791682038,0.0,477.0,846.0,0.0,54750.0,1,1,2,98.0,0,0.0,4,4,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,2138.85486093346,0.02710546814891656,0.03906584220883032,23804.34782608696,6,3,6,6_0,6_0,6_0_1 +12062,2,51.0,2,0.0,7,112,4,0,45,7.0,0.0,0.0,807.5578590753372,0.0,0.0,16964.72134949915,0,60,2,9974,201712062,,,,483.0,1.0,0.0,2.0,0.0,1.0,1.0,3024.8729378059306,0.0,600.0,0.0,0.0,25117.0,0,1,3,35.0,10,0.0,1,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,807.5578590753372,0.047602188237484896,0.03215184373433679,25117.0,7,4,7,7_0,7_0,7_0_0 +12063,2,59.0,3,0.0,9,111,2,65,46,9.0,0.0,0.0,41.75488448880114,0.0,77.8093325086279,51647.96865184262,60,50,1,9975,201712063,,,175.0,740.0,3.0,2.0,3.0,1.0,3.0,2.0,1613.3428502270694,75.0,0.0,0.0,0.0,75711.0,1,1,3,88.0,9,7.0,4,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,119.56421699742904,0.0023149839213117518,0.001579218567941634,37855.5,9,5,9,9_1,9_3,9_0_0 +12064,2,35.0,1,0.0,1,400,2,67,64,6.0,0.0,624.566843803548,2118.1315920457832,0.0,184.92591933092905,40370.63279231146,30,44,1,9976,201712064,,,100.0,,2.0,0.0,5.0,1.0,3.0,1.8,2138.019907026291,178.24910589332922,1500.0,0.0,0.0,39191.0,1,1,2,85.0,0,0.0,4,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2927.62435518026,0.07251866400612433,0.0747014456171126,21772.777777777777,6,3,6,6_1,6_0,6_1_0 +12065,2,59.0,2,0.0,6,111,5,75,48,8.0,0.0,0.0,1615.1157181506744,180.47083808840873,0.0,32419.24,33,50,1,9977,201712065,,,154.0,,1.0,4.0,5.0,0.0,2.0,1.5,2499.851674901228,0.0,1200.0,0.0,0.0,46396.0,5,1,1,90.0,9,7.0,3,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,1795.5865562390832,0.05538644817827571,0.03870132244674289,30930.666666666668,8,4,8,8_1,8_3,8_0_0 +12066,2,24.0,2,0.0,7,111,2,0,46,7.0,0.0,0.0,47.878934213825296,0.0,89.22136794322667,15192.36,0,30,2,9978,201712066,,,120.0,500.0,1.0,0.0,1.0,0.0,1.0,1.0,4689.768671941841,86.0,0.0,0.0,0.0,25771.0,0,1,3,30.0,8,6.0,1,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,137.10030215705197,0.009024292615304796,0.005319944983006169,25771.0,7,4,7,7_0,7_2,7_0_0 +12067,2,76.0,2,0.0,3,111,2,74,72,10.0,0.0,0.0,612.4049725024166,0.0,1141.2035434598758,44440.78,20,41,2,998,201712067,,,,,0.0,2.0,5.0,0.0,2.0,1.5,2130.415634554482,1100.0,0.0,0.0,0.0,68259.0,5,5,1,145.0,9,7.0,3,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,1753.6085159622926,0.03945944504039516,0.02569050991022858,45506.0,10,5,10,10_0,10_3,10_0_1 +12068,2,49.0,2,0.0,99,111,1,85,33,1.0,0.0,0.0,1615.1157181506744,0.0,0.0,29687.365405350778,30,12,2,9980,201712068,,,,750.0,1.0,0.0,3.0,1.0,3.0,2.0,1772.4930903040213,0.0,1200.0,0.0,0.0,6990.0,4,1,3,80.0,9,7.0,4,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,1615.1157181506744,0.054404144527407945,0.23106090388421666,3495.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +12069,2,67.0,4,0.0,7,111,2,0,78,1.0,0.0,0.0,780.639263772826,0.0,0.0,10498.7,0,50,2,9981,201712069,,,,,0.0,2.0,1.0,0.0,1.0,1.0,2227.7158951504634,0.0,580.0,0.0,0.0,10178.0,0,5,1,42.0,9,7.0,1,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,780.639263772826,0.07435580250629373,0.07669868970061171,10178.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +12070,1,27.0,4,63.0,9,111,1,0,85,5.0,0.0,0.0,44.41568224914354,0.0,0.0,22257.39434544466,0,44,2,9982,201712070,,,,697.0,0.0,0.0,1.0,0.0,1.0,1.0,3325.4690394718627,0.0,33.0,0.0,0.0,18425.0,0,4,3,38.0,10,8.0,1,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,44.41568224914354,0.001995547257679511,0.0024106204748517526,18425.0,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +12071,2,59.0,2,0.0,1,120,6,56,74,6.0,2696.9752155360998,0.0,1211.3367886130059,0.0,0.0,33638.799999999996,50,42,1,9984,201712071,,,,,1.0,3.0,6.0,0.0,2.0,1.5,1933.7032075399036,0.0,900.0,0.0,0.0,32719.0,4,5,1,120.0,0,0.0,3,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,3908.3120041491056,0.11618464404643168,0.11945083908888125,21812.666666666668,6,3,6,6_1,6_0,6_1_0 +12072,2,72.0,3,0.0,1,111,2,86,74,10.0,0.0,0.0,2143.8815385425446,0.0,1700.837691929678,47085.75641993518,30,20,1,9985,201712072,,,480.0,,0.0,1.0,3.0,0.0,2.0,1.5,2605.1943058447123,1554.1563680507688,950.0,50.0,0.0,73460.0,6,5,1,120.0,10,8.0,3,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,3844.7192304722225,0.08165355136663886,0.05233758821769974,48973.333333333336,10,5,10,10_1,10_4,10_1_0 +12073,2,43.0,2,0.0,9,112,4,43,46,8.0,0.0,346.98157989085996,868.5015973670635,0.0,1618.4341161794603,55981.92,30,60,1,9986,201712073,,,,,2.0,0.0,6.0,2.0,4.0,2.1,2331.440123262009,1560.0,0.0,0.0,0.0,57812.0,1,1,2,120.0,10,0.0,4,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,2833.9172934373837,0.05062200963163435,0.04901953389326409,27529.52380952381,8,4,8,8_1,8_0,8_0_0 +12074,2,76.0,3,0.0,1,300,4,0,75,2.0,0.0,0.0,2086.1911359446212,0.0,0.0,28303.690537796418,0,31,1,9987,201712074,,,720.0,,0.0,3.0,4.0,0.0,1.0,1.0,2867.6550921161834,0.0,1550.0,0.0,0.0,13140.0,0,5,1,125.0,0,0.0,1,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,2086.1911359446212,0.07370738925931747,0.15876644870202597,13140.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +12075,1,43.0,5,289.0,99,111,2,0,52,3.0,0.0,0.0,726.8020731678034,0.0,1857.7880391453841,13849.3058467513,0,71,2,9989,201712075,,,,61.0,1.0,0.0,3.0,2.0,3.0,1.6,1679.090773548411,0.0,540.0,1050.0,0.0,23262.0,0,1,3,60.0,10,8.0,2,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,2584.5901123131875,0.18662235789380502,0.11110782014930735,14538.75,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +12076,2,59.0,2,0.0,2,111,4,0,75,5.0,0.0,0.0,2691.859530251124,0.0,0.0,18534.12,0,50,2,9991,201712076,,,,340.0,0.0,0.0,2.0,0.0,1.0,1.0,4012.447258394524,0.0,2000.0,0.0,0.0,20626.0,0,5,3,35.0,7,6.0,1,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,2691.859530251124,0.14523805447742455,0.1305080738025368,20626.0,5,3,5,5_0,5_2,5_0_1 +12077,2,42.0,2,0.0,1,111,2,22,37,10.0,0.0,0.0,942.1508355878933,0.0,2123.1863304518674,130620.04000000001,12,12,2,9994,201712077,,,,,2.0,0.0,5.0,2.0,4.0,2.1,3898.397862741176,0.0,700.0,1200.0,0.0,271447.0,1,1,2,180.0,10,8.0,4,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,3065.3371660397606,0.02346758710255915,0.01129258074703261,129260.47619047618,10,5,10,10_0,10_4,10_1_0 +12078,2,45.0,3,0.0,1,111,2,55,62,6.0,0.0,0.0,935.4211867622655,0.0,1741.0127909705313,20667.86,50,50,1,9996,201712078,,,,,2.0,0.0,5.0,2.0,4.0,2.3,1362.3548224300682,0.0,695.0,984.0,0.0,48704.0,1,1,1,90.0,6,5.0,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,2676.433977732797,0.12949739246021585,0.054953062946222014,21175.652173913044,5,3,5,5_1,5_2,5_1_0 +12079,2,65.0,2,0.0,4,111,2,75,75,8.0,1903.7472109666587,0.0,1103.6624074029608,0.0,0.0,37820.78,33,31,1,9997,201712079,,,590.0,,0.0,2.0,5.0,0.0,2.0,1.5,1547.819779038382,0.0,820.0,0.0,0.0,47554.0,5,5,1,120.0,9,7.0,3,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,3007.4096183696192,0.07951738748829663,0.06324199054484626,31702.666666666668,8,4,8,8_1,8_3,8_0_1 +12080,2,51.0,2,0.0,1,120,6,52,62,10.0,2347.9548935255457,0.0,1808.9296043287552,116.7752481748527,0.0,60834.01505288257,50,50,1,9998,201712080,,,560.0,,3.0,1.0,5.0,1.0,3.0,2.0,1762.1578389628562,0.0,1344.0,0.0,0.0,77057.0,1,1,2,100.0,0,0.0,4,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,4273.659746029154,0.07025115377168666,0.05546101906418825,38528.5,9,5,9,9_1,9_0,9_1_0 diff --git a/openfisca_france_indirect_taxation/assets/matching/matching_enl/data_matching_enl.csv b/openfisca_france_indirect_taxation/assets/matching/matching_enl/data_matching_enl.csv index 8886c6a6..d0f4b353 100644 --- a/openfisca_france_indirect_taxation/assets/matching/matching_enl/data_matching_enl.csv +++ b/openfisca_france_indirect_taxation/assets/matching/matching_enl/data_matching_enl.csv @@ -1,32564 +1,32564 @@ ,aba,agepr,amr,ancons,cataeu,coml11,coml12,coml13,cs42cj,cs42pr,depenses_combustibles_liquides,depenses_combustibles_solides,depenses_electricite,depenses_energies,depenses_gaz_liquefie,depenses_gaz_ville,dip14pr,gchauf_2,gchauf_6,gchauf_7,gchaufs_1,gchaufs_2,gchaufs_3,gchaufs_4,gchaufs_5,gmoy1,gtt1,htl,iaatcd,iaatr,idlog,isolation_fenetres,isolation_murs,isolation_toit,kusa_5,majorite_double_vitrage,mchof_d,mfac_eau1_d,mloy_d,mtypmena,nactifs,nbh1,nbphab,npers,ocde10,plus_14,plus_18,pondmen,poste_04_5_1_1_1,revtot,situacj,situapr,soc,stalog,surfhab_d,tau,tuu,zeat,fioul,gaz_ville,electricite,strate,rural,petite_ville,moyenne_ville,grande_ville,paris,bat_av_49,bat_49_74,bat_ap_74,log_indiv,log_colec,ouest_sud,est_nord,froid,froid_installation,froid_cout,froid_isolation,froid_impaye,aides_logement,part_energies_revtot,niveau_vie,niveau_vie_decile,niveau_vie_quintile,donation_class_1,donation_class_2,donation_class_3,donation_class_4 -0,2,30.0,0.0,9,111,1464.0,,,0,42,0.0,0.0,,1464.0,0.0,,12,0,0,0,0,0,0,0,0,2,50.0,1,2009.0,6,115667,2,1,0,0,2,,450.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,157.1817022696658,1464.0,30298.80888047912,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04831873113478148,23306.776061907014,6,3,6,6_1,6_3,6_0_0 -1,2,57.0,0.0,2,111,1200.0,,,63,64,0.0,0.0,,1347.0,252.8880696159582,,50,0,0,0,0,0,0,0,0,0,,1,,2,119467,2,2,0,0,2,,500.0,,43,3.0,1.0,5.0,4.0,2.5,2,2,79.70630470219986,1200.0,19996.966188353188,4,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06736021791068146,7998.786475341275,1,1,1_0,1_1_0,1_3_0,1_0_1 -2,1,42.0,330.0,7,111,600.0,,,55,63,0.0,0.0,,726.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,121791,2,1,0,0,2,,452.0,900.0,43,2.0,0.0,4.0,4.0,2.3,1,1,100.59760057870369,600.0,14405.0,4,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05039916695591808,6263.04347826087,1,1,1_1,1_1_1,1_3_1,1_0_0 -3,2,51.0,0.0,9,111,0.0,,,52,42,0.0,0.0,,1479.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,120392,2,1,0,0,2,,769.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,183.50997228159542,0.0,5339.6632543948035,4,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2769837590006656,3559.775502929869,1,1,1_0,1_1_0,1_3_0,1_0_0 -4,2,39.0,0.0,7,111,700.0,,,85,68,0.0,0.0,,788.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,105921,2,1,0,0,2,,160.0,,42,1.0,0.0,3.0,5.0,2.5999999999999996,1,1,82.71357460359182,700.0,17232.126904139972,7,1,0,1,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04572853974344195,6627.741116976913,1,1,1_0,1_1_0,1_3_0,1_0_0 -5,0,51.0,0.0,7,111,0.0,,,0,55,0.0,0.0,,63.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,111923,2,1,0,0,2,,450.0,,12,1.0,2.0,3.0,1.0,1.0,6,5,111.86494897090098,0.0,17720.740778509673,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003555156118326694,17720.740778509673,4,2,4_0,4_1_0,4_3_0,4_0_0 -6,2,41.0,0.0,9,111,1080.0,,,53,52,0.0,0.0,,1146.0,113.54158227655265,,12,0,0,0,0,0,0,0,0,2,45.0,1,2008.0,6,131659,2,1,0,0,2,,600.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,94.22021330527599,1080.0,57644.0,1,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01988064672819374,27449.52380952381,7,4,7,7_1,7_3,7_0_0 -7,2,53.0,0.0,9,111,1000.0,,,55,53,0.0,0.0,,1126.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,126732,2,1,0,0,2,,480.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,77.34488430930091,1000.0,43295.5564941019,4,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026007287841499246,17318.222597640757,4,2,4_0,4_1_0,4_3_0,4_0_0 -8,2,42.0,0.0,9,111,450.0,,,42,42,0.0,0.0,,600.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,107998,2,2,0,0,2,,250.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,294.93676971178945,450.0,64935.909269288,1,1,1,2,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009239879856179594,30921.861556803808,8,4,8,8_1,8_3,8_0_0 -9,0,43.0,0.0,9,111,340.0,,,0,52,0.0,0.0,,343.0,5.160981012570575,,10,0,0,0,0,0,0,0,0,2,1.0,1,2005.0,6,130796,2,2,0,0,2,,2700.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,104.5647289965824,340.0,46594.74057501614,0,1,5,0,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007361345846486262,31063.160383344093,8,4,8,8_1,8_3,8_0_0 -10,0,43.0,0.0,8,111,700.0,,,54,43,0.0,0.0,,763.0,108.38060126398207,,12,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125847,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,90.20868525639331,700.0,53717.57634021406,4,4,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01420391707860436,29843.097966785586,8,4,8,8_1,8_3,8_0_0 -11,2,50.0,0.0,9,111,1314.0,,,43,42,0.0,0.0,,1482.0,289.01493670395223,,44,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,132764,2,1,0,0,2,,940.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,80.03826131115457,1314.0,75822.3647861949,1,1,1,2,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019545684234182976,30328.94591447796,8,4,8,8_1,8_3,8_0_0 -12,1,56.0,357.0,9,112,600.0,,,0,85,0.0,0.0,,850.0,430.0817510475479,,12,0,0,0,0,0,0,0,0,0,,2,2009.0,6,127170,2,2,0,0,2,,709.0,517.0,31,1.0,4.0,4.0,3.0,2.0,2,2,252.07959041809238,600.0,9447.12,0,7,2,3,74.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08997451075036624,4723.56,1,1,1_1,1_0_1,1_1_1,1_0_0 -13,1,54.0,293.0,9,111,588.0,,,85,78,0.0,0.0,,712.0,213.32054851958378,,10,0,0,0,0,0,0,0,0,0,,8,2011.0,6,102977,2,2,0,0,2,,50.0,780.0,41,1.0,0.0,4.0,6.0,3.0999999999999996,3,2,167.4037309327808,588.0,14449.863372093025,7,6,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04927382229613903,4661.2462490622665,1,1,1_1,1_0_1,1_3_1,1_0_0 -14,0,27.0,0.0,9,111,735.0,,,0,46,0.0,0.0,,859.0,213.32054851958378,,20,0,0,0,0,0,0,0,0,0,,2,2012.0,6,119363,2,2,0,0,2,,325.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,167.45758359318836,735.0,20815.315289429447,0,4,5,0,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04126769102729961,13876.876859619631,3,2,3_0,3_0_0,3_3_0,3_0_0 -15,2,58.0,0.0,7,111,420.0,,,78,45,0.0,0.0,,489.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,116101,2,3,0,0,2,,450.0,,42,1.0,1.0,4.0,2.0,1.5,3,3,78.3658136899747,420.0,31443.730286485254,7,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015551589952740938,20962.486857656837,5,3,5,5_1,5_3,5_0_0 -16,1,35.0,522.0,9,112,360.0,,,0,85,0.0,0.0,,500.0,240.84578058662683,,31,0,0,0,0,0,0,0,0,0,,2,2008.0,6,108536,2,2,0,0,2,,900.0,612.0,31,0.0,0.0,4.0,6.0,2.8999999999999995,2,2,198.12258232518917,360.0,24547.385717987312,0,6,2,3,99.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020368767808688508,8464.615764823213,1,1,1_1,1_0_1,1_1_1,1_0_0 -17,2,60.0,0.0,8,112,1300.0,,,21,52,0.0,0.0,,1366.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,123215,2,1,0,0,2,,500.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,94.73573173727101,1300.0,42540.71153661983,1,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032110417307527214,28360.474357746552,8,4,8,8_1,8_1,8_0_0 -18,1,37.0,220.0,9,111,700.0,,,0,43,0.0,0.0,,788.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,124864,1,2,0,0,2,,500.0,350.0,22,2.0,0.0,3.0,2.0,1.5,3,3,84.30802974431094,700.0,33212.73631526339,0,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02372583795927297,22141.824210175593,6,3,6,6_0,6_3,6_0_0 -19,2,46.0,0.0,7,112,1300.0,,,21,22,0.0,0.0,,1420.0,206.439240502823,,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,112726,2,1,0,0,2,,250.0,750.0,43,2.0,0.0,4.0,3.0,1.8,1,1,90.37615570821956,1300.0,32795.930482898184,1,1,2,3,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04329805494436193,18219.961379387878,4,2,4_0,4_1_0,4_1_0,4_0_0 -20,2,57.0,0.0,8,111,702.0,,,0,53,0.0,0.0,,978.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,103959,2,1,0,0,2,,512.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,147.4736507343097,702.0,36931.31676679508,0,1,1,2,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026481590303850718,36931.31676679508,9,5,9,9_1,9_3,9_0_0 -21,2,53.0,0.0,9,111,900.0,,,0,52,0.0,0.0,,966.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,119215,2,1,0,0,2,,500.0,551.0,32,1.0,0.0,5.0,2.0,1.3,2,2,78.96737748575278,900.0,36057.386511255034,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02679062720473295,27736.451162503872,7,4,7,7_0,7_3,7_0_0 -22,1,45.0,207.0,9,111,340.0,,,0,56,0.0,0.0,,384.0,75.69438818436844,,12,0,0,0,0,0,0,0,0,2,30.0,2,2010.0,6,121114,2,1,0,0,2,,320.0,285.0,32,1.0,0.0,3.0,2.0,1.5,2,2,276.4714796018747,340.0,18618.796387951807,0,1,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020624319209403125,12412.530925301204,2,1,2_1,2_0_1,2_2_1,2_0_0 -23,2,63.0,0.0,8,112,300.0,,,0,78,0.0,0.0,,344.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,108648,2,2,0,0,2,,150.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,127.74793392836379,300.0,7979.015249047637,0,7,0,1,30.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04311308968121841,7979.015249047637,1,1,1_0,1_1_0,1_1_0,1_0_0 -25,2,47.0,0.0,9,111,336.0,,,0,63,0.0,0.0,,428.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,124695,2,2,0,0,2,,418.0,504.0,32,1.0,1.0,4.0,3.0,2.0,2,2,71.68604690483487,336.0,38565.89945069696,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011097887151501796,19282.94972534848,5,3,5,5_0,5_3,5_0_0 -26,1,58.0,250.0,9,111,360.0,,,0,78,0.0,0.0,,448.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,0,,2,2011.0,6,126648,2,1,0,0,2,,224.0,384.0,21,1.0,0.0,2.0,2.0,1.5,2,2,293.9181453103776,360.0,9406.0,0,7,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.047629172868381885,6270.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_0 -27,2,47.0,0.0,7,112,1500.0,,,68,67,0.0,0.0,,1588.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,103164,2,1,0,0,2,,2000.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,102.03460657208973,1500.0,34610.17281439953,1,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045882463763350936,13844.069125759812,3,2,3_0,3_1_0,3_1_0,3_0_0 -28,2,38.0,0.0,9,111,0.0,,,67,55,0.0,0.0,,1028.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,105618,2,1,0,0,2,,1369.0,880.0,43,2.0,0.0,4.0,4.0,2.5,3,3,211.33518108915362,0.0,23981.719139138906,4,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042865984462401294,9592.687655655562,1,1,1_0,1_1_0,1_2_0,1_0_0 -29,2,43.0,0.0,9,120,600.0,,,56,21,0.0,0.0,,732.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,127101,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,78.63360130974216,600.0,12880.427253412761,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05683041296677883,7155.792918562645,1,1,1_0,1_1_0,1_1_0,1_0_0 -30,2,68.0,0.0,5,111,480.0,,,0,77,0.0,0.0,,595.0,197.83760548187203,,20,0,0,0,0,0,0,0,0,0,,1,,3,114953,1,3,0,0,2,,270.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,75.77483469768026,480.0,5534.96229629707,0,5,0,1,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10749847390976075,5534.96229629707,1,1,1_0,1_1_0,1_3_0,1_0_0 -31,2,92.0,0.0,2,120,260.0,,,0,72,0.0,0.0,,524.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,2,,2,127440,2,2,0,0,2,,220.0,,21,1.0,1.0,3.0,2.0,1.5,1,1,87.0586712427935,260.0,10396.048780487807,0,5,0,1,50.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.050403765032681264,6930.699186991871,1,1,1_0,1_0_0,1_1_0,1_0_1 -32,2,59.0,0.0,7,111,359.0,,,0,56,0.0,0.0,,543.0,316.54016877099525,,20,0,0,0,0,0,0,0,0,0,,1,,5,102230,2,2,0,0,2,,600.0,,22,2.0,2.0,4.0,2.0,1.5,2,2,100.76443618730778,359.0,13955.201073332018,0,4,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03891022401946305,9303.467382221346,1,1,1_0,1_1_0,1_3_0,1_0_0 -33,2,75.0,0.0,2,300,300.0,,,0,86,0.0,0.0,,432.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,2,105491,2,2,0,0,2,,450.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,82.98362300390062,300.0,21861.90485511894,0,5,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019760400699889043,21861.90485511894,6,3,6,6_1,6_1,6_0_1 -34,2,59.0,0.0,7,111,432.0,,,0,85,0.0,0.0,,616.0,316.54016877099525,,20,0,0,0,0,0,0,0,0,0,,1,,5,100064,2,2,0,0,2,,99.0,,21,2.0,0.0,5.0,3.0,2.0,1,1,79.70630470219986,432.0,15271.98457494903,0,6,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04033529479923901,7635.992287474515,1,1,1_0,1_1_0,1_3_0,1_0_0 -35,1,35.0,483.0,2,300,720.0,,,0,85,0.0,0.0,,808.0,151.38877636873687,,43,0,0,0,0,0,0,0,0,0,,1,,2,113986,2,2,0,0,2,,540.0,600.0,11,0.0,0.0,5.0,1.0,1.0,2,2,95.12267176888763,720.0,13309.94306312612,0,6,2,3,95.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06070649560015655,13309.94306312612,3,2,3_1,3_1_1,3_1_1,3_0_1 -36,2,73.0,0.0,5,111,800.0,,,0,75,0.0,0.0,,932.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,1,,3,111704,2,1,0,0,2,,300.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,88.63490974405487,800.0,31441.0,0,5,0,1,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029642823065424127,20960.666666666668,5,3,5,5_1,5_3,5_0_0 -37,2,51.0,0.0,7,300,540.0,,,0,56,0.0,0.0,,804.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,1,5.0,1,,5,133561,2,1,0,0,2,,0.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,73.12973243970434,540.0,7955.604709489523,0,1,0,1,64.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10106082810285696,7955.604709489523,1,1,1_0,1_1_0,1_1_0,1_0_0 -38,0,64.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,748.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,2,106292,2,2,0,0,2,,268.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,112.40955995701913,0.0,27527.334888973404,0,5,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027172990157489803,27527.334888973404,7,4,7,7_1,7_3,7_0_1 -40,1,45.0,467.0,7,111,1200.0,,,0,21,0.0,0.0,,1244.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,0,,1,,5,128182,2,2,0,0,2,,2000.0,770.0,32,1.0,1.0,5.0,4.0,2.3,2,2,93.39171664573445,1200.0,18817.248922698447,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06610955751876225,8181.412575086282,1,1,1_1,1_1_1,1_3_1,1_0_0 -41,2,41.0,0.0,1,111,312.0,,,0,52,0.0,0.0,,496.0,316.54016877099525,,20,0,0,0,0,0,0,0,0,0,,1,,1,107761,2,2,0,0,2,,300.0,,32,1.0,0.0,3.0,4.0,2.3,1,1,97.77388065568415,312.0,15730.48127439219,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03153113953401054,6839.339684518344,1,1,1_0,1_1_0,1_3_0,1_1_0 -42,2,67.0,0.0,5,111,240.0,,,42,74,0.0,0.0,,312.0,123.8635443016938,,10,0,0,0,0,0,0,0,0,0,,1,,3,124661,2,2,0,0,2,,2000.0,,42,2.0,2.0,5.0,4.0,2.5,1,1,159.6775151942509,240.0,80373.88607789786,1,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0038818578424540976,32149.554431159144,8,4,8,8_1,8_3,8_0_0 -43,2,40.0,0.0,7,111,0.0,,,21,54,0.0,0.0,,2067.0,0.0,,31,0,0,0,0,0,0,0,0,2,55.0,1,,5,110234,2,1,0,0,2,,490.0,700.0,43,2.0,0.0,4.0,3.0,1.8,1,1,83.854455094848,0.0,18360.877495166747,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11257631889021152,10200.48749731486,2,1,2_0,2_1_0,2_3_0,2_0_0 -44,2,57.0,0.0,8,221,2004.0,,,72,45,0.0,0.0,,2109.0,180.63433543997013,,12,0,0,0,0,0,0,0,0,0,,1,2003.0,6,114647,2,1,0,0,2,,600.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,94.67961842688156,2004.0,62748.467315434435,5,1,0,1,134.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03361038269505656,41832.31154362296,9,5,9,9_1,9_1,9_0_0 -45,0,89.0,0.0,5,111,0.0,,,71,71,0.0,0.0,,669.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,,3,122892,2,1,0,0,2,,649.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,108.42496904463243,0.0,20145.794306872456,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033207923689153325,13430.52953791497,3,2,3_0,3_1_0,3_3_0,3_0_0 -46,2,80.0,0.0,2,221,270.0,,,74,78,0.0,0.0,,798.0,908.3326582124212,,12,0,0,0,0,0,0,0,0,0,,1,,2,114333,2,2,0,0,2,,570.0,,41,0.0,4.0,4.0,3.0,2.0,2,2,119.32697383947647,270.0,40009.28297180101,5,5,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01994537119204159,20004.641485900505,5,3,5,5_1,5_1,5_0_1 -48,2,71.0,0.0,2,221,600.0,,,0,78,0.0,0.0,,850.0,430.0817510475479,,12,0,0,0,0,0,0,0,0,0,,1,,2,121277,2,2,0,0,2,,340.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,93.6579950591848,600.0,12115.748540473294,0,5,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07015662277576415,12115.748540473294,2,1,2_0,2_1_0,2_1_0,2_0_1 -49,0,72.0,0.0,2,111,150.0,,,0,86,0.0,0.0,,213.0,108.38060126398207,,31,0,0,0,0,0,0,0,0,0,,1,,2,122943,2,1,0,0,2,,150.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,94.83118414745853,150.0,20735.11592658222,0,5,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010272428702794762,20735.11592658222,5,3,5,5_1,5_3,5_0_1 -50,2,74.0,0.0,2,111,100.0,,,78,77,0.0,0.0,,121.0,36.12686708799403,,10,0,0,0,0,0,0,0,0,0,,1,,2,128567,1,2,0,0,2,,300.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,85.42435011149784,100.0,43863.21605221416,5,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002758575656102446,29242.144034809437,8,4,8,8_1,8_2,8_0_1 -51,2,62.0,0.0,9,111,0.0,,,77,77,0.0,0.0,,413.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,2011.0,6,128248,2,1,0,0,2,,191.0,,41,0.0,3.0,4.0,2.0,1.5,4,4,183.50997228159542,0.0,26871.68896410299,5,5,1,2,97.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01536933538311318,17914.45930940199,4,2,4_0,4_1_0,4_3_0,4_0_0 -52,0,57.0,0.0,7,111,1200.0,,,52,21,0.0,0.0,,1368.0,289.01493670395223,,10,0,0,0,0,0,0,0,0,0,,1,,5,105716,2,1,0,0,2,,1545.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,103.29643831975959,1200.0,29084.37572143079,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04703556346206842,19389.583814287194,5,3,5,5_1,5_3,5_0_0 -54,2,73.0,0.0,7,111,1200.0,,,75,31,0.0,0.0,,1284.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,106716,2,2,0,0,2,,900.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,141.65577588502043,1200.0,95646.72444464905,5,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013424401174794577,63764.48296309937,10,5,10,10_1,10_3,10_0_0 -55,2,44.0,0.0,7,111,840.0,,,42,37,0.0,0.0,,966.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,2,40.0,1,,5,104475,2,1,0,0,2,,840.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,83.30388857658967,840.0,66097.89260569103,1,1,1,2,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014614686821601138,28738.214176387406,8,4,8,8_1,8_3,8_0_0 -56,2,64.0,0.0,7,111,420.0,,,0,54,0.0,0.0,,504.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,120278,2,1,0,0,1,,480.0,,22,3.0,0.0,5.0,3.0,2.0,3,3,92.26052520870017,420.0,30614.76639330067,0,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01646264399098236,15307.383196650335,3,2,3_0,3_1_0,3_3_0,3_0_0 -57,2,81.0,0.0,2,111,3570.0,,,0,77,0.0,0.0,,3800.0,395.67521096374406,,10,0,0,0,0,0,0,0,0,0,,1,,2,108427,2,1,0,0,2,,720.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,109.31682336394431,3570.0,38157.04951156592,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09958841285273297,38157.04951156592,9,5,9,9_1,9_2,9_0_1 -58,2,67.0,0.0,9,111,163.0,,,0,78,0.0,0.0,,331.0,289.01493670395223,,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,133274,1,1,0,0,2,,240.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,299.9976131578885,163.0,10934.578490893313,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030270942796347202,10934.578490893313,2,1,2_0,2_1_0,2_2_0,2_0_0 -59,2,51.0,0.0,8,111,552.0,,,0,54,0.0,0.0,,636.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,125340,2,1,0,0,2,,1200.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,95.32978500035112,552.0,50539.82867779695,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012584134466593596,50539.82867779695,10,5,10,10_1,10_3,10_0_0 -60,2,31.0,0.0,7,111,0.0,,,21,42,0.0,0.0,,1204.0,0.0,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,121535,2,1,0,0,2,,464.0,680.0,43,2.0,0.0,3.0,3.0,1.8,2,2,110.14480232322786,0.0,31422.79363221381,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03831613490805895,17457.107573452115,4,2,4_0,4_1_0,4_3_0,4_0_0 -61,2,53.0,0.0,6,111,500.0,,,45,37,0.0,0.0,,638.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,2,180.0,1,,4,105348,2,1,0,0,2,,1200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,98.19147948205435,500.0,148771.50082445363,1,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00428845576245697,99181.00054963575,10,5,10,10_1,10_2,10_0_0 -62,2,62.0,0.0,9,111,360.0,,,0,56,0.0,0.0,,383.0,39.567521096374406,,60,0,0,0,0,0,0,0,0,1,20.0,1,2012.0,6,109534,2,1,0,0,2,,120.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,173.56597043070045,360.0,3162.2061038134843,0,1,0,1,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1211179750548576,3162.2061038134843,1,1,1_0,1_1_0,1_2_0,1_0_0 -63,2,65.0,0.0,9,111,360.0,,,78,22,0.0,0.0,,860.0,860.1635020950959,,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,118723,2,3,0,0,2,,300.0,,42,3.0,1.0,4.0,4.0,2.5,1,1,134.69237645486248,360.0,16210.0,5,1,1,2,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05305367057371992,6484.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -64,1,64.0,200.0,7,111,180.0,,,0,77,0.0,0.0,,306.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,0,,1,,5,100924,2,1,0,0,2,,180.0,448.0,11,0.0,0.0,3.0,1.0,1.0,2,2,105.74438758555573,180.0,12222.0,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025036818851251842,12222.0,2,1,2_1,2_1_1,2_3_1,2_0_0 -65,0,69.0,0.0,6,111,900.0,,,0,77,0.0,0.0,,1026.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,4,108343,2,1,0,0,2,,1200.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,115.91748297842979,900.0,17839.998555685706,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05751121541840081,17839.998555685706,4,2,4_0,4_1_0,4_3_0,4_0_0 -66,2,86.0,0.0,2,111,300.0,,,0,86,0.0,0.0,,300.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,2,123563,1,3,0,0,1,,350.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,94.9455381875873,300.0,9447.12,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03175570967659985,9447.12,1,1,1_0,1_1_0,1_2_0,1_0_1 -67,2,37.0,0.0,7,111,900.0,,,34,34,0.0,0.0,,963.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,101419,2,3,0,0,2,,636.0,980.0,43,2.0,0.0,4.0,4.0,2.1,6,5,123.22031726318467,900.0,56600.03878346702,1,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01701412261719676,26952.399420698577,7,4,7,7_1,7_3,7_0_0 -68,1,24.0,322.0,7,111,600.0,,,0,56,0.0,0.0,,663.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,0,,2,,5,100614,2,1,0,0,2,,210.0,407.0,32,1.0,0.0,2.0,2.0,1.3,3,3,90.82595486185217,600.0,7245.582196319569,0,4,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09150403404943418,5573.524766399669,1,1,1_1,1_0_1,1_2_1,1_0_0 -69,2,68.0,0.0,5,111,500.0,,,86,78,0.0,0.0,,626.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,0,,1,,3,112145,2,1,0,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,100.76443618730778,500.0,33369.1585525204,5,5,0,1,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018759837741030416,22246.105701680266,6,3,6,6_1,6_3,6_0_0 -70,2,78.0,0.0,2,111,864.0,,,74,78,0.0,0.0,,1128.0,454.1663291062106,,60,0,0,0,0,0,0,0,0,0,,1,,2,127962,1,1,0,0,2,,816.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,75.65631735660781,864.0,34208.67105251244,5,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03297409590300803,22805.78070167496,6,3,6,6_1,6_2,6_0_1 -71,2,45.0,0.0,9,112,0.0,,,0,35,0.0,41.40690019277831,,103.0,108.38060126398207,,43,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,100371,2,1,0,0,2,,160.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,185.24183233946246,0.0,23594.341637334644,0,1,0,1,45.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004365453445711634,23594.341637334644,6,3,6,6_1,6_2,6_0_0 -72,0,57.0,0.0,7,111,600.0,,,77,21,0.0,0.0,,768.0,289.01493670395223,,31,0,0,0,0,0,0,0,0,0,,1,,5,126473,1,2,0,0,2,,240.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,102.60140362551735,600.0,27527.334888973404,6,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02789954069646012,18351.556592648936,4,2,4_0,4_1_0,4_2_0,4_0_0 -73,2,47.0,0.0,9,112,300.0,,,84,43,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,107182,2,1,0,0,2,,330.0,,42,1.0,1.0,4.0,2.0,1.5,3,3,167.5992761550614,300.0,163460.44844695617,3,1,1,2,110.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018353063560654042,108973.63229797078,10,5,10,10_1,10_2,10_0_0 -74,2,47.0,0.0,9,111,260.0,,,81,46,0.0,0.0,,428.0,289.01493670395223,,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123254,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,71.79898465195423,260.0,35069.6404932842,4,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012204288209967867,13488.32326664777,3,2,3_0,3_1_0,3_3_0,3_0_0 -75,2,67.0,0.0,6,111,600.0,,,0,75,0.0,0.0,,680.0,137.62616033521533,,70,0,0,0,0,0,0,0,0,0,,1,,4,124647,1,1,0,0,1,,180.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,106.9601690242614,600.0,42384.920767552656,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016043441575112418,42384.920767552656,9,5,9,9_1,9_2,9_0_0 -76,2,77.0,0.0,8,111,240.0,,,0,77,0.0,0.0,,284.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,122136,2,2,0,0,2,,230.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,105.4189948180749,240.0,13141.764010750378,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02161049306376823,13141.764010750378,2,1,2_0,2_1_0,2_3_0,2_0_0 -78,2,48.0,0.0,9,111,372.0,,,0,52,0.0,0.0,,416.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,116176,2,2,0,0,2,,500.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,129.8263785995442,372.0,28394.629324155147,0,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014650657885014587,28394.629324155147,8,4,8,8_1,8_3,8_0_0 -79,2,62.0,0.0,7,111,600.0,,,0,52,0.0,0.0,,726.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,3,30.0,1,,5,129767,2,1,0,0,1,,600.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,120.50088187147271,600.0,28676.78407872092,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025316646315955454,28676.78407872092,8,4,8,8_1,8_2,8_0_0 -80,2,52.0,0.0,8,111,600.0,,,64,42,0.0,0.0,,726.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,104651,2,2,0,0,2,,500.0,,43,2.0,3.0,4.0,3.0,2.0,3,2,113.54095718939438,600.0,37611.76452305372,4,1,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01930247116045317,18805.88226152686,5,3,5,5_1,5_3,5_0_0 -81,2,50.0,0.0,9,111,600.0,,,0,52,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,115209,2,2,0,0,2,,1080.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,108.37044242614186,600.0,35576.93801997175,0,1,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01686485778127334,35576.93801997175,9,5,9,9_1,9_2,9_0_0 -82,2,35.0,0.0,9,111,0.0,,,0,54,0.0,0.0,,1307.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,100500,2,1,0,0,1,,153.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,299.9976131578885,0.0,5795.0,0,1,1,2,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22553925798101812,5795.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -83,2,88.0,0.0,2,112,720.0,,,0,78,0.0,0.0,,805.0,146.2277953561663,,10,0,0,0,0,0,0,0,0,0,,1,,2,124230,2,1,0,0,2,,560.0,,21,1.0,9.0,9.0,2.0,1.5,6,4,91.2399571362685,720.0,14777.088991885168,0,5,0,1,110.0,6,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05447622332396221,9851.39266125678,2,1,2_0,2_1_0,2_0_0,2_0_1 -84,2,41.0,0.0,9,111,540.0,,,52,67,0.0,0.0,,628.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,125687,2,1,0,0,2,,320.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,324.47008503705393,540.0,51725.35248819039,1,1,1,2,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012141048244057517,22489.28369051756,6,3,6,6_1,6_2,6_0_0 -85,0,51.0,0.0,5,112,200.0,,,56,69,0.0,0.0,,320.0,206.439240502823,,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,121048,2,2,0,0,2,,200.0,,43,2.0,1.0,2.0,2.0,1.5,1,1,145.18257281633913,200.0,21918.92037304426,1,1,5,0,15.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014599259204095372,14612.613582029508,3,2,3_0,3_1_0,3_2_0,3_0_0 -86,2,57.0,0.0,6,111,249.0,,,0,34,0.0,0.0,,293.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,108224,2,2,0,0,2,,250.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,121.63758474493326,249.0,54715.65166401526,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005354957696550597,54715.65166401526,10,5,10,10_1,10_3,10_0_0 -87,2,73.0,0.0,6,112,600.0,,,78,77,0.0,0.0,,840.0,412.878481005646,,12,0,0,0,0,0,0,0,0,0,,1,,4,132678,2,1,0,0,2,,600.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,96.40689464802085,600.0,31134.212093784452,5,5,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026979966522669617,20756.141395856303,5,3,5,5_1,5_2,5_0_0 -88,2,40.0,0.0,8,120,0.0,,,75,43,0.0,0.0,,176.0,302.77755273747374,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106140,2,1,0,0,2,,402.0,,42,1.0,2.0,9.0,4.0,2.3,2,2,220.54540972058524,0.0,56207.77010176035,5,1,0,1,170.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00313123967880889,24438.16091380885,7,4,7,7_1,7_1,7_0_0 -89,2,91.0,0.0,1,111,558.0,,,0,86,0.0,0.0,,602.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,1,,1,100456,1,3,0,0,2,,180.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,78.3658136899747,558.0,9704.479704657097,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.062033207170406605,9704.479704657097,1,1,1_0,1_1_0,1_3_0,1_1_0 -90,2,49.0,0.0,2,112,600.0,,,0,47,0.0,0.0,,750.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,107766,2,2,0,0,2,,400.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,107.81882287902812,600.0,24172.914500543568,0,1,1,2,58.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031026461454746593,24172.914500543568,7,4,7,7_1,7_2,7_0_1 -91,2,46.0,0.0,9,221,1208.0,,,42,34,0.0,0.0,,1248.0,68.81308016760767,,41,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,125851,2,1,0,0,2,,630.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,333.83149288430377,1208.0,71477.31567725298,1,1,1,2,140.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01746008489791629,27491.275260481918,7,4,7,7_1,7_1,7_0_0 -92,2,78.0,0.0,2,111,438.0,,,78,78,0.0,0.0,,622.0,316.54016877099525,,43,0,0,0,0,0,0,0,0,0,,1,,2,128944,2,2,0,0,2,,320.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,78.3658136899747,438.0,25461.90404720454,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024428652266022866,16974.60269813636,4,2,4_0,4_1_0,4_3_0,4_0_1 -93,0,35.0,0.0,2,111,160.0,,,0,65,0.0,0.0,,204.0,75.69438818436844,,60,0,0,0,0,0,0,0,0,0,,1,,2,125999,2,2,0,0,2,,60.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,98.39919748201812,160.0,7872.607817054656,0,4,5,0,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025912633366299405,7872.607817054656,1,1,1_0,1_1_0,1_3_0,1_0_1 -94,2,54.0,0.0,6,112,720.0,,,0,56,0.0,0.0,,852.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,4,108493,2,2,0,0,1,,480.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,105.83438414616009,720.0,16616.007265084645,0,4,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0512758562515987,16616.007265084645,4,2,4_0,4_1_0,4_2_0,4_0_0 -95,2,48.0,0.0,9,111,1560.0,,,55,38,0.0,0.0,,1620.0,103.2196202514115,,41,0,0,0,0,0,0,0,0,2,40.0,1,2009.0,6,117129,2,1,0,0,2,,220.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,1,1,174.42745658901907,1560.0,7360.912316435862,1,1,1,2,139.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2200814152320185,2831.120121706101,1,1,1_0,1_1_0,1_3_0,1_0_0 -96,2,74.0,0.0,9,111,402.0,,,0,75,0.0,0.0,,402.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107184,2,2,0,0,2,,600.0,1021.0,11,0.0,2.0,4.0,1.0,1.0,2,2,109.6501166697795,402.0,33620.96775358173,0,5,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011956824174318238,33620.96775358173,9,5,9,9_1,9_3,9_0_0 -97,2,76.0,0.0,1,112,378.0,,,0,72,0.0,0.0,,882.0,867.0448101118566,,41,0,0,0,0,0,0,0,0,0,,1,,1,112511,2,3,0,0,2,,180.0,,21,0.0,4.0,4.0,2.0,1.5,1,1,82.91673747853143,378.0,16791.431343762084,0,5,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05252679071505466,11194.287562508056,2,1,2_0,2_1_0,2_2_0,2_1_0 -99,2,45.0,0.0,7,112,1000.0,,,48,52,0.0,0.0,,1250.0,430.0817510475479,,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,105438,2,1,0,0,2,,600.0,,42,1.0,3.0,4.0,3.0,2.0,2,2,82.98362300390062,1000.0,24664.90708752747,4,7,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0506792908468769,12332.453543763735,2,1,2_0,2_1_0,2_2_0,2_0_0 -100,2,33.0,0.0,9,111,0.0,,,0,47,0.0,0.0,,23.0,39.567521096374406,,31,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,116070,2,1,0,0,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,195.8815257513612,0.0,30884.10031074506,0,1,0,1,163.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0007447197674072423,30884.10031074506,8,4,8,8_1,8_3,8_0_0 -101,2,70.0,0.0,6,111,420.0,,,0,77,0.0,0.0,,464.0,75.69438818436844,,12,0,0,0,0,0,0,0,0,0,,1,,4,123794,2,2,0,0,2,,300.0,,11,0.0,7.0,5.0,1.0,1.0,2,2,94.83118414745853,420.0,6097.948002326406,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07609117031220683,6097.948002326406,1,1,1_0,1_1_0,1_3_0,1_0_0 -102,2,41.0,0.0,9,112,500.0,,,52,52,0.0,0.0,,550.0,86.01635020950958,,60,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,123767,2,2,0,0,2,,150.0,458.0,43,2.0,0.0,3.0,4.0,2.1,2,2,93.98465707976275,500.0,89448.80087491796,1,1,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006148768844527056,42594.66708329426,9,5,9,9_1,9_2,9_0_0 -103,2,68.0,0.0,8,112,1000.0,,,75,75,0.0,0.0,,1110.0,189.2359704609211,,41,0,0,0,0,0,0,0,0,0,,1,2001.0,6,122743,2,1,0,0,1,,300.0,,41,0.0,6.0,4.0,2.0,1.5,5,3,92.45114374001963,1000.0,37192.088905969315,5,5,1,2,90.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029845056641113952,24794.725937312876,7,4,7,7_1,7_2,7_0_0 -104,2,51.0,0.0,9,111,1200.0,,,37,21,0.0,0.0,,2000.0,1376.2616033521533,,41,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,115968,2,1,0,0,2,,80.0,,43,2.0,1.0,5.0,4.0,2.5,1,1,206.1454944498031,1200.0,54353.125784629825,1,1,1,2,128.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036796411818610944,21741.25031385193,6,3,6,6_1,6_3,6_0_0 -105,0,53.0,0.0,2,111,900.0,,,53,34,0.0,0.0,,1068.0,289.01493670395223,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,119055,2,1,0,0,2,,1080.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,71.79898465195423,900.0,82267.81153153729,1,1,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012981991135021055,29381.36126126332,8,4,8,8_1,8_3,8_0_1 -106,1,52.0,350.0,7,111,700.0,,,0,65,0.0,0.0,,722.0,37.84719409218422,,41,0,0,0,0,0,0,0,0,0,,2,,5,110397,2,1,0,0,2,,1000.0,700.0,32,1.0,1.0,4.0,2.0,1.5,5,4,87.6241941557986,700.0,16026.945692202302,0,4,2,3,97.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04504913249636077,10684.630461468201,2,1,2_1,2_0_1,2_3_1,2_0_0 -107,2,38.0,0.0,9,111,2000.0,,,42,37,0.0,0.0,,2150.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,117454,2,1,0,0,2,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,176.80378377586402,2000.0,70213.18077807759,1,1,1,2,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030621031210585563,33434.84798956075,8,4,8,8_1,8_3,8_0_0 -108,1,27.0,223.0,2,111,0.0,,,0,63,0.0,0.0,,381.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,2,131317,2,1,0,0,2,,233.0,700.0,22,1.0,4.0,3.0,2.0,1.5,2,2,113.06651163249231,0.0,29891.93672220112,0,1,3,4,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.012745912168247917,19927.957814800746,5,3,5,5_1,5_3,5_0_1 -109,1,48.0,200.0,8,112,600.0,,,0,81,0.0,0.0,,840.0,412.878481005646,,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,122231,2,2,0,0,2,,480.0,,32,1.0,2.0,5.0,4.0,1.9,1,1,70.873864487861,600.0,3300.6196460942742,0,4,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2544976671256254,1737.1682347864603,1,1,1_1,1_1_1,1_2_1,1_0_0 -110,2,63.0,0.0,9,111,360.0,,,13,78,0.0,0.0,,636.0,474.81025315649293,,33,0,0,0,0,0,0,0,0,0,,1,2011.0,6,122080,2,2,0,0,2,,400.0,,42,1.0,6.0,5.0,2.0,1.5,1,1,172.41385611911673,360.0,22672.0,1,5,0,1,86.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02805222300635145,15114.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0 -111,0,54.0,0.0,8,111,200.0,,,0,54,0.0,0.0,,368.0,289.01493670395223,,12,0,0,0,0,0,0,0,0,3,60.0,1,2000.0,6,131709,2,1,0,0,2,,248.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,89.09003298623608,200.0,42044.86280655012,0,1,0,1,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008752555614063504,28029.908537700077,7,4,7,7_1,7_3,7_0_0 -112,0,45.0,0.0,2,111,180.0,,,0,47,0.0,0.0,,246.0,113.54158227655265,,12,0,0,0,0,0,0,0,0,2,15.0,1,,2,114061,1,3,0,0,2,,150.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,131.4265447237113,180.0,40002.37472732018,0,1,5,0,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006149634907349409,40002.37472732018,9,5,9,9_1,9_3,9_0_1 -113,1,57.0,312.0,5,111,600.0,,,0,81,0.0,0.0,,684.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,3,127541,2,2,0,0,2,,800.0,312.0,32,2.0,2.0,3.0,3.0,2.0,3,3,120.39882927791749,600.0,3996.7239669421488,0,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17114016520968828,1998.3619834710744,1,1,1_1,1_1_1,1_3_1,1_0_0 -114,2,69.0,0.0,9,111,2200.0,,,23,34,0.0,0.0,,2244.0,75.69438818436844,,10,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,112988,2,1,0,0,1,,1300.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,104.66902557429529,2200.0,198078.65985678235,1,1,1,2,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011328832705262085,132052.43990452157,10,5,10,10_1,10_3,10_0_0 -115,2,46.0,0.0,6,111,2500.0,,,34,43,0.0,0.0,,2540.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,113027,2,1,0,0,2,,600.0,,43,2.0,1.0,6.0,4.0,2.3,1,1,136.3574822131841,2500.0,263499.16426589835,1,1,1,2,220.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009639499263978208,114564.85402865146,10,5,10,10_1,10_3,10_0_0 -116,2,76.0,0.0,5,111,330.0,,,0,78,0.0,0.0,,414.0,144.50746835197612,,70,0,0,0,0,0,0,0,0,0,,1,,3,108834,2,1,0,0,2,,140.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,78.3658136899747,330.0,10092.038958744479,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04102243379087238,10092.038958744479,2,1,2_0,2_1_0,2_3_0,2_0_0 -117,2,59.0,0.0,6,111,900.0,,,0,68,0.0,0.0,,950.0,86.01635020950958,,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,107256,2,1,0,0,2,,624.0,,22,2.0,3.0,5.0,2.0,1.5,1,1,90.09539993528003,900.0,26208.036267906078,0,1,0,1,83.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03624842358614079,17472.024178604053,4,2,4_0,4_1_0,4_3_0,4_0_0 -118,0,74.0,0.0,7,111,840.0,,,0,77,0.0,0.0,,1344.0,867.0448101118566,,50,0,0,0,0,0,0,0,0,0,,1,,5,121066,2,1,0,0,2,,720.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,78.3658136899747,840.0,9404.09307656096,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14291649275035628,9404.09307656096,1,1,1_0,1_1_0,1_3_0,1_0_0 -119,2,59.0,0.0,7,111,900.9,,,0,43,0.0,0.0,,985.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,5,120108,2,1,0,0,2,,217.0,,12,1.0,2.0,4.0,1.0,1.0,4,4,111.99991031247436,900.9,61902.29667340428,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01591217213146141,61902.29667340428,10,5,10,10_1,10_3,10_0_0 -120,2,49.0,0.0,9,111,1560.0,,,68,47,0.0,0.0,,1680.0,206.439240502823,,30,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,100581,2,1,0,0,1,,840.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,167.5992761550614,1560.0,47822.577644725774,1,1,1,2,104.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512985043342352,31881.71842981718,8,4,8,8_1,8_3,8_0_0 -121,2,67.0,0.0,7,111,780.0,,,72,77,0.0,0.0,,1032.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,5,128045,2,1,0,0,2,,1200.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,143.72332407950577,780.0,5255.042585870598,5,5,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19638280435153307,3503.3617239137316,1,1,1_0,1_1_0,1_3_0,1_0_0 -122,2,61.0,0.0,7,111,480.0,,,0,37,0.0,0.0,,600.0,206.439240502823,,30,0,0,0,0,0,0,0,0,0,,1,,5,102444,2,1,0,0,2,,50.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,89.96041202022626,480.0,64525.703017151835,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009298620114848057,64525.703017151835,10,5,10,10_1,10_3,10_0_0 -125,2,50.0,0.0,8,111,1100.0,,,85,22,0.0,0.0,,1320.0,378.4719409218422,,20,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,105964,2,1,0,0,2,,560.0,,42,2.0,1.0,4.0,4.0,2.5,2,2,88.88192437751896,1100.0,16220.325813834239,6,1,1,2,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08137937641635892,6488.130325533695,1,1,1_0,1_1_0,1_3_0,1_0_0 -126,2,30.0,0.0,9,111,420.0,,,47,43,0.0,0.0,,420.0,0.0,,20,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,121346,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,136.2253840869313,420.0,53125.47189994901,1,1,1,2,93.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007905812127014784,29514.151055527225,8,4,8,8_1,8_3,8_0_0 -127,1,39.0,522.0,7,111,800.0,,,0,56,0.0,0.0,,968.0,289.01493670395223,,10,0,0,0,0,0,0,0,0,0,,2,,5,128736,2,1,0,0,1,,1200.0,800.0,32,1.0,0.0,4.0,5.0,2.8,3,2,99.8706729113674,800.0,13652.356360167412,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07090351104694793,4875.841557202648,1,1,1_1,1_0_1,1_3_1,1_0_0 -128,2,78.0,0.0,2,111,1300.0,,,72,75,0.0,0.0,,1438.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,2,126763,2,2,0,0,2,,190.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,107.81893636210343,1300.0,39246.69926942828,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03664002391967134,26164.466179618856,7,4,7,7_1,7_3,7_0_1 -129,2,44.0,0.0,9,111,720.0,,,46,34,0.0,0.0,,762.0,72.25373417598806,,41,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,126574,2,1,0,0,2,,220.0,,43,2.0,0.0,7.0,3.0,2.0,1,1,167.37393482753984,720.0,65165.59719516734,1,1,1,2,151.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01169328653150914,32582.79859758367,8,4,8,8_1,8_3,8_0_0 -130,2,42.0,0.0,8,111,1200.0,,,54,38,0.0,0.0,,1284.0,144.50746835197612,,33,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,127443,2,1,0,0,1,,800.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,132.40874847934924,1200.0,91037.05245033043,1,1,1,2,143.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014104147327271463,43350.9773573002,10,5,10,10_1,10_3,10_0_0 -131,2,35.0,0.0,9,111,630.0,,,0,52,0.0,0.0,,674.0,75.69438818436844,,10,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,128835,2,1,0,0,2,,1105.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,166.5086174796991,630.0,37477.23010123398,0,1,1,2,97.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017984253323401502,28828.638539410753,8,4,8,8_1,8_3,8_0_0 -132,0,63.0,0.0,7,111,1134.0,,,21,45,0.0,0.0,,1302.0,289.01493670395223,,12,0,0,0,0,0,0,0,0,0,,1,,5,124283,2,1,0,0,2,,738.0,,43,3.0,1.0,5.0,4.0,2.5,1,1,105.4189948180749,1134.0,44891.437283157225,1,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02900330394385693,17956.57491326289,4,2,4_0,4_1_0,4_3_0,4_0_0 -133,2,62.0,0.0,9,111,0.0,,,77,77,0.0,0.0,,448.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2013.0,6,128354,2,2,0,0,2,,215.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,177.27052781324562,0.0,36598.55336674199,6,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012240920986978373,24399.03557782799,7,4,7,7_1,7_3,7_0_0 -134,0,40.0,0.0,9,111,480.0,,,55,52,0.0,0.0,,606.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,2,45.0,1,2013.0,6,121459,2,1,0,0,2,,1080.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,117.23107243422268,480.0,54607.98397053261,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01109727838198546,26003.801890729814,7,4,7,7_1,7_3,7_0_0 -136,2,57.0,0.0,9,111,576.0,,,54,34,0.0,0.0,,576.0,0.0,,12,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,120818,2,1,0,0,2,,148.0,,43,2.0,2.0,3.0,2.0,1.5,3,2,206.81752056347926,576.0,8722.746052963812,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06603425073968386,5815.164035309208,1,1,1_0,1_1_0,1_3_0,1_0_0 -137,0,61.0,0.0,7,111,240.0,,,0,67,0.0,0.0,,366.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,,5,131267,2,1,0,0,2,,300.0,,12,1.0,2.0,3.0,1.0,1.0,3,3,99.45549056060123,240.0,8060.528618523346,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04540645127900428,8060.528618523346,1,1,1_0,1_1_0,1_3_0,1_0_0 -138,1,46.0,329.0,9,111,324.0,,,0,22,0.0,0.0,,368.0,75.69438818436844,,12,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,127339,2,1,0,0,2,,180.0,563.0,32,1.0,0.0,4.0,3.0,1.6,2,2,115.13635879950921,324.0,19264.152937828134,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.019102838374864397,12040.095586142583,2,1,2_1,2_1_1,2_3_1,2_0_0 -139,0,94.0,0.0,8,111,0.0,,,0,86,0.0,0.0,,857.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125909,2,1,0,0,2,,185.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,98.39919748201812,0.0,5911.585142985492,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14496957740968855,5911.585142985492,1,1,1_0,1_1_0,1_3_0,1_0_0 -140,1,45.0,413.0,8,111,352.0,,,0,55,0.0,0.0,,472.0,206.439240502823,,20,0,0,0,0,0,0,0,0,3,45.0,2,2001.0,6,104697,2,3,0,0,2,,240.0,714.0,32,1.0,2.0,4.0,3.0,2.0,1,1,77.1712989977263,352.0,16232.536495579177,0,1,2,3,94.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029077402667694357,8116.268247789589,1,1,1_1,1_0_1,1_3_1,1_0_0 -141,2,40.0,0.0,8,111,520.0,,,0,52,0.0,0.0,,604.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,111189,2,1,0,0,2,,240.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,75.77483469768026,520.0,4821.233231580997,0,4,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12527914975022564,2678.4629064338874,1,1,1_0,1_1_0,1_3_0,1_0_0 -142,2,78.0,0.0,6,111,1096.0,,,78,77,0.0,0.0,,1256.0,275.25232067043066,,10,0,0,0,0,0,0,0,0,0,,1,,4,127836,2,1,0,0,2,,400.0,,41,0.0,7.0,4.0,2.0,1.5,2,2,85.15876486556523,1096.0,23112.984986375675,5,5,0,1,162.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05434174775522805,15408.656657583784,3,2,3_0,3_1_0,3_3_0,3_0_0 -143,2,55.0,0.0,6,111,6602.4,,,75,37,0.0,0.0,,6822.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,4,120809,2,1,0,0,2,,1500.0,,42,2.0,2.0,6.0,3.0,2.0,2,1,75.57619737908021,6602.4,64852.965980313485,5,4,0,1,117.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10519179650273605,32426.482990156743,8,4,8,8_1,8_3,8_0_0 -144,2,55.0,0.0,9,111,786.0,,,56,64,0.0,0.0,,926.0,240.84578058662683,,20,0,0,0,0,0,0,0,0,1,6.0,1,2012.0,6,112231,1,1,0,0,2,,294.0,,43,2.0,2.0,4.0,3.0,1.8,1,1,173.42643877097305,786.0,39153.808339130315,1,1,1,2,112.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02365031753691647,21752.115743961287,6,3,6,6_1,6_3,6_0_0 -145,2,67.0,0.0,8,111,660.0,,,45,77,0.0,0.0,,786.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,112989,2,1,0,0,2,,480.0,,42,2.0,0.0,4.0,4.0,2.5,1,1,77.34488430930091,660.0,58798.152900871195,1,5,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013367766863784493,23519.261160348477,6,3,6,6_1,6_3,6_0_0 -146,2,66.0,0.0,7,111,480.0,,,55,74,0.0,0.0,,502.0,37.84719409218422,,60,0,0,0,0,0,0,0,0,0,,1,,5,130548,1,2,0,0,2,,376.0,860.0,42,1.0,2.0,3.0,2.0,1.5,1,1,116.17440603145813,480.0,46741.200903955556,1,5,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010739989351825092,31160.80060263704,8,4,8,8_1,8_3,8_0_0 -147,2,44.0,0.0,9,111,780.0,,,0,22,0.0,0.0,,918.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,119709,1,1,0,0,2,,720.0,,32,1.0,0.0,4.0,3.0,2.0,1,1,173.42643877097305,780.0,40922.177588458835,0,1,1,2,127.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022432823815781027,20461.088794229418,5,3,5,5_1,5_3,5_0_0 -148,2,38.0,0.0,5,111,630.0,,,56,21,0.0,0.0,,756.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,3,118897,2,1,0,0,1,,480.0,950.0,43,2.0,0.0,4.0,3.0,1.8,1,1,87.17306211495004,630.0,28238.03544251652,4,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02677240070538798,15687.797468064733,3,2,3_0,3_1_0,3_3_0,3_0_0 -149,1,54.0,87.0,7,111,560.0,,,68,53,0.0,0.0,,682.0,209.8798945112034,,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,132751,1,3,0,0,2,,400.0,554.0,43,2.0,0.0,4.0,5.0,2.8,1,1,76.24669465604333,560.0,43443.53687673323,1,1,2,3,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01569853766591583,15515.548884547585,3,2,3_1,3_0_1,3_3_1,3_0_0 -150,2,62.0,0.0,9,111,1152.0,,,75,75,0.0,0.0,,1244.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,120891,1,1,0,0,2,,218.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,172.65323870496135,1152.0,44713.69270405793,5,5,0,1,76.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02782145523595063,29809.128469371954,8,4,8,8_1,8_3,8_0_0 -151,2,60.0,0.0,7,111,540.0,,,0,54,0.0,0.0,,600.0,103.2196202514115,,10,0,0,0,0,0,0,0,0,0,,1,,5,120382,2,1,0,0,2,,120.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,85.15876486556523,540.0,23521.978585190544,0,4,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025508058253983806,23521.978585190544,6,3,6,6_1,6_3,6_0_0 -152,2,33.0,0.0,9,111,432.0,,,54,46,0.0,0.0,,552.0,206.439240502823,,12,0,0,0,0,0,0,0,0,0,,3,2004.0,6,117976,2,1,0,0,2,,840.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,91.4116501399512,432.0,42830.94913178091,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012887876901854868,23794.97173987828,6,3,6,6_0,6_3,6_0_0 -153,2,90.0,0.0,2,111,270.0,,,0,77,0.0,0.0,,333.0,108.38060126398207,,70,0,0,0,0,0,0,0,0,0,,2,,2,101985,2,1,0,0,2,,190.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,132.7086869291808,270.0,9447.12,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035248837741025836,9447.12,1,1,1_0,1_0_0,1_3_0,1_0_1 -154,2,45.0,0.0,7,112,1764.0,,,77,21,0.0,0.0,,1932.0,289.01493670395223,,10,0,0,0,0,0,0,0,0,0,,1,,5,128894,2,1,0,0,2,,228.0,,42,1.0,4.0,6.0,3.0,2.0,1,1,91.35803752365557,1764.0,4976.812858445151,7,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3882002508335411,2488.4064292225753,1,1,1_0,1_1_0,1_1_0,1_0_0 -155,1,27.0,300.0,5,112,154.0,,,0,81,0.0,0.0,,430.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,,3,100571,2,1,0,0,2,,240.0,520.0,32,1.0,0.0,4.0,2.0,1.3,1,1,114.1919712776492,154.0,7386.337931034483,0,4,2,3,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05821558721180484,5681.798408488064,1,1,1_1,1_1_1,1_1_1,1_0_0 -156,1,44.0,357.0,2,111,672.0,,,0,55,0.0,0.0,,792.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,8,,2,125947,1,1,0,0,2,,380.0,554.0,32,1.0,2.0,4.0,2.0,1.5,1,1,108.08489662342225,672.0,13522.828372752921,0,4,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05856762935746466,9015.218915168614,1,1,1_1,1_0_1,1_3_1,1_0_1 -157,2,40.0,0.0,9,111,1340.0,,,54,54,0.0,0.0,,1440.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,126019,2,1,0,0,2,,300.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,163.94225456287901,1340.0,56449.09489177863,1,1,1,2,130.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025509709283394105,28224.547445889315,8,4,8,8_1,8_3,8_0_0 -158,1,41.0,400.0,7,112,280.0,,,0,81,0.0,0.0,,464.0,316.54016877099525,,10,0,0,0,0,0,0,0,0,0,,2,,5,126317,2,1,0,0,2,,240.0,600.0,32,2.0,0.0,4.0,4.0,2.3,1,1,78.95591742687472,280.0,10219.9,0,4,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04540161841113905,4443.434782608696,1,1,1_1,1_0_1,1_1_1,1_0_0 -159,2,64.0,0.0,7,112,0.0,,,52,63,0.0,0.0,,749.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,107426,2,1,0,0,2,,50.0,,43,2.0,2.0,3.0,2.0,1.5,3,3,94.11540918472043,0.0,38960.21423575985,1,1,0,1,85.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019224740281651897,25973.476157173234,7,4,7,7_1,7_1,7_0_0 -160,2,40.0,0.0,9,111,2719.0,,,37,37,0.0,0.0,,2809.0,154.82943037711726,,10,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,103250,2,1,0,0,2,,300.0,1600.0,43,2.0,2.0,5.0,4.0,2.3,2,2,215.53423224474096,2719.0,84796.04107073342,1,1,2,3,222.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033126546528945214,36867.84394379715,9,5,9,9_1,9_3,9_0_0 -161,2,82.0,0.0,2,112,760.0,,,0,72,0.0,0.0,,892.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,1,,2,117840,2,1,0,0,2,,300.0,,21,1.0,11.0,5.0,2.0,1.5,2,2,81.24529308041659,760.0,20378.853785900785,0,5,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04377086215796567,13585.902523933857,3,2,3_0,3_1_0,3_1_0,3_0_1 -162,1,47.0,75.0,5,111,900.0,,,0,56,0.0,0.0,,1032.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,127427,2,2,0,0,2,,250.0,330.0,32,1.0,0.0,3.0,2.0,1.5,1,1,106.94228275519184,900.0,22295.677523717375,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04628699885447275,14863.785015811583,3,2,3_1,3_0_1,3_3_1,3_0_0 -163,2,57.0,0.0,9,111,236.0,,,0,37,0.0,0.0,,280.0,75.69438818436844,,12,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,115046,2,2,0,0,2,,155.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,174.37831727885055,236.0,44135.44873883414,0,1,1,2,94.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006344106789462233,44135.44873883414,10,5,10,10_1,10_3,10_0_0 -164,2,53.0,0.0,8,112,720.0,,,81,81,0.0,0.0,,996.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,1999.0,6,105048,1,1,0,0,2,,500.0,,43,3.0,0.0,4.0,5.0,3.0,1,1,88.10377625198923,720.0,16308.16709732222,4,4,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061073693570600086,5436.055699107407,1,1,1_0,1_1_0,1_1_0,1_0_0 -165,2,43.0,0.0,8,111,420.0,,,0,52,0.0,0.0,,516.0,165.1513924022584,,12,0,0,0,0,0,0,0,0,2,20.0,2,2002.0,6,127173,2,2,0,0,2,,140.0,474.0,12,1.0,0.0,3.0,1.0,1.0,1,1,97.47660180046059,420.0,39377.34253206042,0,1,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013103982311144556,39377.34253206042,9,5,9,9_0,9_3,9_0_0 -166,1,30.0,440.0,8,111,588.0,,,0,52,0.0,0.0,,700.0,192.67662446930146,,20,0,0,0,0,0,0,0,0,0,,2,2001.0,6,117518,1,2,0,0,2,,300.0,520.0,32,1.0,0.0,4.0,4.0,1.9,2,2,87.66037901564637,588.0,15898.662485016102,0,4,2,3,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044028860959827526,8367.717097376897,1,1,1_1,1_0_1,1_3_1,1_0_0 -167,2,48.0,0.0,6,112,792.0,,,64,43,0.0,0.0,,930.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,4,105121,2,1,0,0,1,,600.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,84.61166481170939,792.0,35620.084308946025,1,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026108865771730626,23746.722872630682,6,3,6,6_1,6_1,6_0_0 -168,2,66.0,0.0,6,111,828.0,,,75,77,0.0,0.0,,960.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,,4,125461,1,2,0,0,2,,400.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,89.19998983454833,828.0,55364.37500376837,5,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0173396701386886,36909.58333584558,9,5,9,9_1,9_3,9_0_0 -169,2,78.0,0.0,2,112,462.0,,,86,86,0.0,0.0,,616.0,264.9303586452895,,20,0,0,0,0,0,0,0,0,0,,1,,2,104683,2,3,0,0,2,,160.0,,41,0.0,7.0,4.0,3.0,2.0,1,1,94.73573173727101,462.0,31539.158876987698,5,5,0,1,250.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019531275466241418,15769.579438493849,3,2,3_0,3_1_0,3_1_0,3_0_1 -170,2,55.0,0.0,7,111,400.0,,,0,78,0.0,0.0,,400.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,102367,2,1,0,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,98.98212538139661,400.0,5768.368468326607,0,7,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06934369782311067,5768.368468326607,1,1,1_0,1_1_0,1_3_0,1_0_0 -171,2,67.0,0.0,9,112,240.0,,,0,86,0.0,0.0,,306.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101932,2,1,0,0,2,,120.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,86.93560954055549,240.0,12081.935608744696,0,5,0,1,70.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025327067608150674,12081.935608744696,2,1,2_0,2_1_0,2_1_0,2_0_0 -172,0,80.0,0.0,7,111,780.0,,,0,86,0.0,0.0,,1044.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,5,124870,1,3,0,0,2,,600.0,,21,1.0,0.0,5.0,3.0,2.0,4,3,78.72395517876922,780.0,23108.886305279237,0,7,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04517742595676269,11554.443152639618,2,1,2_0,2_1_0,2_3_0,2_0_0 -173,2,56.0,0.0,7,112,450.0,,,52,77,0.0,0.0,,538.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,1,,5,118926,2,1,0,0,2,,180.0,,42,1.0,4.0,5.0,2.0,1.5,1,1,127.12873398376998,450.0,13029.222365312822,4,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041291796618061864,8686.148243541882,1,1,1_0,1_1_0,1_1_0,1_0_0 -174,1,40.0,340.0,2,111,960.0,,,43,47,0.0,0.0,,1090.0,223.64251054472493,,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,103343,2,2,0,0,2,,455.0,620.0,43,3.0,0.0,5.0,5.0,2.8,1,1,91.63852141976899,960.0,53498.71387645461,1,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020374321568125048,19106.68352730522,5,3,5,5_0,5_3,5_0_1 -175,1,41.0,332.0,8,112,700.0,,,0,11,0.0,0.0,,790.0,154.82943037711726,,12,0,0,0,0,0,0,0,0,0,,1,1999.0,6,126008,2,1,0,0,2,,220.0,600.0,32,1.0,0.0,4.0,4.0,2.3,1,1,92.24731560969643,700.0,22021.322909308506,0,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0358743206869767,9574.488221438482,1,1,1_1,1_1_1,1_1_1,1_0_0 -176,2,46.0,0.0,7,111,660.0,,,0,52,0.0,0.0,,849.0,325.14180379194624,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,128545,2,1,0,0,1,,400.0,,32,1.0,0.0,5.0,4.0,2.5,2,2,112.49552545081576,660.0,36572.87628545401,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023213924805188742,14629.150514181605,3,2,3_0,3_1_0,3_3_0,3_0_0 -177,2,60.0,0.0,7,112,610.0,,,85,64,0.0,0.0,,700.0,154.82943037711726,,33,0,0,0,0,0,0,0,0,2,25.0,1,,5,107912,2,1,0,0,2,,700.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,81.24529308041659,610.0,9378.745264448475,6,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07463684962779124,6252.49684296565,1,1,1_0,1_1_0,1_1_0,1_0_0 -178,2,79.0,0.0,2,111,660.0,,,0,77,0.0,0.0,,786.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,0,,1,,2,131254,1,2,0,0,2,,380.0,,21,1.0,5.0,6.0,2.0,1.5,2,2,105.1415077297635,660.0,21324.426955305495,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036859138191492835,14216.28463687033,3,2,3_0,3_1_0,3_3_0,3_0_1 -179,2,60.0,0.0,9,111,1200.0,,,0,34,0.0,0.0,,1332.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,129934,2,1,0,0,2,,600.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,195.5302801840146,1200.0,49043.06667128944,0,1,1,2,878.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027159802402401016,49043.06667128944,10,5,10,10_1,10_2,10_0_0 -180,2,59.0,0.0,7,112,600.0,,,0,68,0.0,0.0,,742.0,244.28643459500722,,20,0,0,0,0,0,0,0,0,0,,1,,5,113929,2,1,0,0,2,,240.0,,12,1.0,4.0,5.0,1.0,1.0,2,2,108.40686331428323,600.0,14129.446756821246,0,4,0,1,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05251444113633013,14129.446756821246,3,2,3_0,3_1_0,3_1_0,3_0_0 -181,1,48.0,350.0,6,111,0.0,,,0,21,0.0,0.0,,52.0,89.45700421788997,,12,0,0,0,0,0,0,0,0,0,,1,,4,130198,2,3,0,0,2,,0.0,650.0,12,1.0,1.0,3.0,1.0,1.0,1,1,125.32366682661905,0.0,251.00301138902938,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2071688292193644,251.00301138902938,1,1,1_1,1_1_1,1_3_1,1_0_0 -182,1,37.0,357.0,7,112,700.0,,,0,81,0.0,0.0,,744.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,0,,2,,5,118609,2,1,0,0,2,,150.0,416.0,32,1.0,0.0,3.0,2.0,1.3,1,1,100.01212902474671,700.0,9361.48884686335,0,4,2,3,68.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07947453788285863,7201.145266817962,1,1,1_1,1_0_1,1_1_1,1_0_0 -183,2,63.0,0.0,6,111,300.0,,,85,77,0.0,0.0,,426.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,,4,117828,2,2,0,0,2,,500.0,,41,2.0,1.0,4.0,4.0,2.5,2,2,131.00935107474297,300.0,29127.7337220227,6,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014625236692476106,11651.09348880908,2,1,2_0,2_1_0,2_3_0,2_0_0 -184,2,56.0,0.0,9,111,0.0,,,21,55,0.0,0.0,,216.0,0.0,,20,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,114119,1,1,0,0,2,,408.0,950.0,43,2.0,1.0,4.0,2.0,1.5,1,1,169.30048641544744,0.0,24885.463661769474,1,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00867976594431841,16590.309107846315,4,2,4_0,4_1_0,4_3_0,4_0_0 -185,0,62.0,0.0,9,112,0.0,,,0,81,0.0,0.0,,711.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122651,2,1,0,0,2,,150.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,111.4655598571438,0.0,7350.817407137984,0,4,5,0,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09672393702904197,7350.817407137984,1,1,1_0,1_1_0,1_1_0,1_0_0 -186,0,43.0,0.0,6,111,830.0,,,0,62,0.0,0.0,,896.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,102153,2,2,0,0,2,,508.0,,12,1.0,3.0,4.0,1.0,1.0,2,2,97.4132660707966,830.0,45790.93187193267,0,1,5,0,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019567192965321566,45790.93187193267,10,5,10,10_1,10_3,10_0_0 -187,1,49.0,247.0,9,112,300.0,,,0,85,0.0,0.0,,344.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,101871,2,2,0,0,2,,160.0,298.0,11,0.0,0.0,2.0,1.0,1.0,1,1,97.39209304303458,300.0,11431.653783871581,0,7,3,4,40.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030091884035653223,11431.653783871581,2,1,2_1,2_1_1,2_1_1,2_0_0 -188,2,65.0,0.0,6,112,800.0,,,0,67,0.0,0.0,,888.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,4,107772,1,1,0,0,2,,150.0,,32,3.0,1.0,4.0,3.0,2.0,1,1,73.06045595658577,800.0,17296.10537396359,0,4,0,1,90.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05134103781171086,8648.052686981795,1,1,1_0,1_1_0,1_1_0,1_0_0 -190,2,45.0,0.0,7,112,2500.0,,,81,21,0.0,0.0,,2610.0,189.2359704609211,,20,0,0,0,0,0,0,0,0,2,1.0,1,,5,129227,2,2,0,0,2,,300.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,1,1,85.51237016118151,2500.0,24719.07410747276,4,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10558647903446261,7973.89487337831,1,1,1_0,1_1_0,1_1_0,1_0_0 -191,1,21.0,200.0,7,111,0.0,,,0,54,0.0,0.0,,344.0,0.0,,12,0,0,0,0,0,0,0,0,0,,8,,5,103433,2,2,0,0,2,,407.0,368.0,32,1.0,0.0,3.0,2.0,1.3,2,2,112.79734028876933,0.0,13393.882240200286,0,4,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02568336751293223,10302.986338615605,2,1,2_1,2_0_1,2_3_1,2_0_0 -192,1,28.0,330.0,7,112,400.0,,,0,81,0.0,0.0,,554.0,264.9303586452895,,41,0,0,0,0,0,0,0,0,0,,2,,5,116161,1,1,0,0,2,,350.0,358.0,32,1.0,0.0,2.0,2.0,1.3,1,1,107.95579855871935,400.0,12054.935655117692,0,4,2,3,62.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04595628013699185,9273.027427013609,1,1,1_1,1_0_1,1_1_1,1_0_0 -193,2,43.0,0.0,1,111,600.0,,,0,63,0.0,0.0,,710.0,189.2359704609211,,20,0,0,0,0,0,0,0,0,0,,1,,1,116791,1,1,0,0,2,,200.0,870.0,32,1.0,0.0,4.0,2.0,1.3,1,1,137.6525479140053,600.0,6135.641530309774,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11571732091789166,4719.724254084441,1,1,1_0,1_1_0,1_3_0,1_1_0 -194,2,40.0,0.0,9,112,500.0,,,0,54,0.0,0.0,,544.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,2,1.0,1,2012.0,6,121384,2,1,0,0,2,,220.0,,32,1.0,0.0,3.0,4.0,2.5,1,1,162.88673377088395,500.0,28398.84234993253,0,1,1,2,75.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01915571040878335,11359.536939973012,2,1,2_0,2_1_0,2_1_0,2_0_0 -195,1,53.0,306.0,7,112,1000.0,,,56,64,0.0,0.0,,1000.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,101923,2,1,0,0,2,,450.0,522.0,43,3.0,3.0,4.0,3.0,2.0,1,1,89.11635594768686,1000.0,18764.08975641522,4,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05329328589776714,9382.04487820761,1,1,1_1,1_0_1,1_1_1,1_0_0 -197,2,65.0,0.0,9,112,500.0,,,0,72,0.0,0.0,,544.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,108156,2,2,0,0,2,,180.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,134.44579136379204,500.0,9460.09938458883,0,5,0,1,87.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05750468128127855,9460.09938458883,1,1,1_0,1_1_0,1_1_0,1_0_0 -198,1,47.0,192.0,9,112,1440.0,,,0,67,0.0,0.0,,1584.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,3,2.0,2,2005.0,6,113549,2,1,0,0,2,,120.0,496.0,32,3.0,1.0,4.0,3.0,2.0,3,3,94.23128904223186,1440.0,24015.117200898938,0,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06595845386674638,12007.558600449469,2,1,2_1,2_0_1,2_1_1,2_0_0 -199,2,61.0,0.0,5,111,720.0,,,0,77,0.0,0.0,,800.0,137.62616033521533,,10,0,0,0,0,0,0,0,0,0,,1,,3,130126,2,1,0,0,2,,240.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,118.51891277345909,720.0,15243.436898445105,0,5,0,1,61.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052481602759913246,15243.436898445105,3,2,3_0,3_1_0,3_3_0,3_0_0 -200,2,44.0,0.0,9,112,1000.0,,,52,23,0.0,0.0,,1066.0,113.54158227655265,,12,0,0,0,0,0,0,0,0,2,40.0,1,2012.0,6,115368,2,1,0,0,2,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,161.41155737136756,1000.0,76920.18442092037,1,1,1,2,250.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01385852111542877,36628.659248057316,9,5,9,9_1,9_1,9_0_0 -201,1,37.0,436.0,7,112,450.0,,,0,85,0.0,0.0,,594.0,247.7270886033876,,10,0,0,0,0,0,0,0,0,0,,2,,5,115599,2,1,0,0,2,,350.0,424.0,31,0.0,0.0,3.0,4.0,1.9,1,1,80.04718168533577,450.0,7367.222894941226,0,6,2,3,76.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08062739630259806,3877.485734179593,1,1,1_1,1_0_1,1_1_1,1_0_0 -202,1,43.0,413.0,8,112,350.0,,,0,56,0.0,0.0,,416.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,30.0,2,2000.0,6,111676,2,1,0,0,2,,125.0,424.0,32,1.0,0.0,3.0,3.0,1.8,1,1,80.04718168533577,350.0,12274.979831729373,0,1,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03389007604922406,6819.433239849652,1,1,1_1,1_0_1,1_1_1,1_0_0 -203,2,49.0,0.0,9,112,1200.0,,,55,43,0.0,0.0,,1200.0,0.0,,41,0,0,0,0,0,0,0,0,2,1.0,1,2012.0,6,111228,2,1,0,0,2,,292.0,,43,2.0,2.0,4.0,3.0,1.8,1,1,163.94225456287901,1200.0,56054.47337968156,1,1,1,2,110.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021407747279541332,31141.37409982309,8,4,8,8_1,8_1,8_0_0 -204,2,56.0,0.0,6,112,1000.0,,,85,43,0.0,0.0,,1132.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,4,123015,2,1,0,0,2,,350.0,,42,2.0,0.0,5.0,3.0,2.0,1,1,75.75601504323583,1000.0,24743.53039104051,6,1,0,1,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045749332537037266,12371.765195520255,2,1,2_0,2_1_0,2_1_0,2_0_0 -205,2,68.0,0.0,2,111,780.0,,,0,77,0.0,0.0,,801.0,36.12686708799403,,20,0,0,0,0,0,0,0,0,0,,2,,2,100687,2,2,0,0,2,,800.0,291.0,11,0.0,3.0,2.0,1.0,1.0,1,1,110.78410118106012,780.0,17501.226971067757,0,5,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.045768219641067295,17501.226971067757,4,2,4_0,4_0_0,4_3_0,4_0_1 -206,1,52.0,316.0,2,111,160.0,,,0,55,0.0,0.0,,250.0,154.82943037711726,,31,0,0,0,0,0,0,0,0,0,,2,,2,103200,2,1,0,0,2,,180.0,315.0,32,1.0,1.0,2.0,2.0,1.5,2,2,103.60966861012466,160.0,17456.046867855097,0,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01432168473724536,11637.364578570065,2,1,2_1,2_0_1,2_3_1,2_0_1 -207,2,66.0,0.0,9,112,500.0,,,55,77,0.0,0.0,,500.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,124758,2,1,0,0,2,,150.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,105.70496931581839,500.0,45417.79926021503,1,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011008899773749907,30278.532840143354,8,4,8,8_1,8_1,8_0_0 -208,2,45.0,0.0,8,111,1800.0,,,52,63,0.0,0.0,,1938.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,125220,2,1,0,0,2,,800.0,,43,2.0,0.0,5.0,5.0,2.8,3,2,105.56486251361862,1800.0,56383.79622175047,1,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034371577117264095,20137.070079196597,5,3,5,5_1,5_3,5_0_0 -209,2,62.0,0.0,7,112,500.0,,,56,34,0.0,0.0,,566.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,1,,5,111821,2,1,0,0,2,,150.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,113.09840619287502,500.0,78504.76924579676,4,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007209753056248927,52336.512830531174,10,5,10,10_1,10_1,10_0_0 -210,2,50.0,0.0,6,111,580.0,,,0,37,0.0,0.0,,580.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,4,130018,1,3,0,0,2,,600.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,98.27538169296517,580.0,1376.0502183257452,0,4,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.4214962450321705,917.3668122171634,1,1,1_0,1_0_0,1_3_0,1_0_0 -211,2,37.0,0.0,9,111,0.0,,,63,43,0.0,0.0,,348.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,133696,2,1,0,0,2,,413.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,239.04863208655777,0.0,44443.41767730299,1,1,1,2,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007830180894880226,21163.532227287138,5,3,5,5_1,5_2,5_0_0 -213,2,34.0,0.0,7,112,0.0,,,45,43,0.0,0.0,,582.0,0.0,,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,115149,1,2,0,0,2,,403.0,890.0,43,2.0,0.0,4.0,4.0,2.1,1,1,96.69448462735278,0.0,65121.23515845873,1,1,2,3,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008937176922148763,31010.11198021844,8,4,8,8_1,8_1,8_0_0 -214,2,57.0,0.0,9,112,1000.0,,,56,64,0.0,0.0,,1176.0,302.77755273747374,,12,0,0,0,0,0,0,0,0,0,,1,2005.0,6,130533,1,1,0,0,2,,420.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,110.73313876128293,1000.0,10262.99303341002,4,4,0,1,155.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11458645603399166,6841.99535560668,1,1,1_0,1_1_0,1_1_0,1_0_0 -215,0,60.0,0.0,5,111,390.0,,,0,77,0.0,0.0,,510.0,206.439240502823,,70,0,0,0,0,0,0,0,0,0,,1,,3,130072,2,1,0,0,2,,202.0,,21,1.0,0.0,4.0,2.0,1.5,1,1,96.66834252624712,390.0,20773.525964932312,0,7,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02455047837622407,13849.017309954876,3,2,3_0,3_1_0,3_3_0,3_0_0 -216,2,35.0,0.0,9,112,600.0,,,65,43,0.0,0.0,,696.0,165.1513924022584,,41,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,123622,2,2,0,0,2,,120.0,900.0,43,2.0,0.0,4.0,4.0,2.1,1,1,138.0352583885894,600.0,18619.428732601016,1,1,2,3,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037380309030714994,8866.394634571912,1,1,1_0,1_1_0,1_1_0,1_0_0 -217,0,25.0,0.0,2,111,0.0,,,0,53,0.0,0.0,,654.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,133091,2,3,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,134.91729537181268,0.0,22307.334366109626,0,1,5,0,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02931771180126247,22307.334366109626,6,3,6,6_1,6_3,6_0_1 -218,2,51.0,0.0,9,112,450.0,,,0,37,0.0,0.0,,472.0,37.84719409218422,,41,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,117248,2,1,0,0,2,,110.0,800.0,12,1.0,1.0,4.0,1.0,1.0,5,3,106.50880342265775,450.0,43137.19143090113,0,1,2,3,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010941834281354835,43137.19143090113,9,5,9,9_1,9_1,9_0_0 -219,2,63.0,0.0,1,111,520.0,,,0,34,0.0,0.0,,540.0,34.40654008380383,,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,121296,2,1,0,0,2,,700.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,127.66158581093266,520.0,107505.61273820295,0,1,0,1,127.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.005022993555834195,107505.61273820295,10,5,10,10_1,10_3,10_1_0 -220,1,37.0,400.0,7,112,300.0,,,0,81,0.0,0.0,,468.0,289.01493670395223,,71,0,0,0,0,0,0,0,0,0,,1,,5,121990,2,2,0,0,2,,120.0,430.0,32,1.0,0.0,3.0,3.0,1.6,1,1,146.6861745220548,300.0,9399.56747126427,0,4,2,3,40.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04978952504258716,5874.729669540168,1,1,1_1,1_1_1,1_1_1,1_0_0 -221,0,75.0,0.0,2,112,720.0,,,0,22,0.0,0.0,,866.0,251.16774261176798,,12,0,0,0,0,0,0,0,0,1,1.0,1,,2,125349,2,1,0,0,2,,60.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,93.24902938345701,720.0,33942.06787274571,0,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025514061289570622,33942.06787274571,9,5,9,9_1,9_1,9_0_1 -222,0,66.0,0.0,7,112,660.0,,,0,86,0.0,0.0,,786.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,2,,5,126177,2,1,0,0,2,,600.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,78.34531397431311,660.0,9331.214439742038,0,5,0,1,200.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08423340874606768,9331.214439742038,1,1,1_0,1_0_0,1_1_0,1_0_0 -223,1,21.0,353.0,9,111,0.0,,,0,56,0.0,0.0,,994.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,2004.0,6,121913,2,1,0,0,2,,205.0,404.0,32,1.0,0.0,3.0,2.0,1.3,3,2,97.90520981931692,0.0,9447.12,0,4,2,3,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10521725139513417,7267.015384615385,1,1,1_1,1_0_1,1_3_1,1_0_0 -224,2,65.0,0.0,5,112,1800.0,,,72,72,0.0,0.0,,2089.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,3,119751,2,1,0,0,2,,800.0,,41,1.0,0.0,4.0,3.0,2.0,1,1,107.09197046882286,1800.0,67202.78699611983,5,5,0,1,180.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031085020329895175,33601.393498059915,9,5,9,9_1,9_1,9_0_0 -225,2,40.0,0.0,8,111,1020.0,,,63,56,0.0,0.0,,1272.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,106561,1,2,0,0,2,,350.0,,43,2.0,1.0,4.0,6.0,2.8999999999999995,1,1,90.00457888406275,1020.0,24695.433394679523,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051507498559391324,8515.666687820527,1,1,1_0,1_1_0,1_3_0,1_0_0 -226,2,45.0,0.0,7,112,1320.0,,,55,55,0.0,0.0,,1430.0,189.2359704609211,,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,127984,2,1,0,0,2,,100.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,96.88758180587469,1320.0,45318.2226086575,1,1,0,1,126.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03155463558994071,30212.14840577167,8,4,8,8_1,8_1,8_0_0 -227,2,46.0,0.0,7,111,0.0,,,47,31,0.0,0.0,,770.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,114848,2,1,0,0,1,,636.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,3,124.91184024441851,0.0,65103.0,4,1,1,2,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011827411947222094,22449.31034482759,6,3,6,6_1,6_3,6_0_0 -228,2,34.0,0.0,9,112,1200.0,,,0,54,0.0,0.0,,1284.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,106363,2,1,0,0,1,,100.0,,12,1.0,1.0,7.0,1.0,1.0,1,1,132.49946596128908,1200.0,40441.83220464694,0,1,1,2,180.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03174930338226523,40441.83220464694,9,5,9,9_1,9_1,9_0_0 -229,2,41.0,0.0,7,111,800.0,,,42,42,0.0,0.0,,860.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,118614,2,1,0,0,2,,1000.0,1000.0,43,2.0,0.0,5.0,5.0,2.4,2,2,105.28654495754911,800.0,71842.81159161194,1,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011970578279823474,29934.50482983831,8,4,8,8_1,8_3,8_0_0 -230,2,75.0,0.0,1,112,0.0,,,0,77,0.0,0.0,,481.0,416.3191350140264,,71,0,0,0,0,0,0,0,0,0,,1,,1,127468,2,1,0,0,2,,435.0,,21,3.0,0.0,6.0,6.0,3.0999999999999996,1,1,71.55798006697829,0.0,45131.549913703406,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01065773280376424,14558.564488291422,3,2,3_0,3_1_0,3_1_0,3_1_0 -231,0,29.0,0.0,2,111,0.0,,,0,48,0.0,0.0,,593.0,0.0,,41,0,0,0,0,0,0,0,0,1,2.0,2,,2,102923,1,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,125.22347847858498,0.0,20341.142630148956,0,1,5,0,24.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029152737915571932,20341.142630148956,5,3,5,5_0,5_3,5_0_1 -232,2,59.0,0.0,6,112,540.0,,,0,52,0.0,0.0,,714.0,299.3368987290934,,10,0,0,0,0,0,0,0,0,2,30.0,1,,4,104119,2,3,0,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,107.25294367961686,540.0,35253.431639600036,0,1,0,1,110.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02025334745562661,35253.431639600036,9,5,9,9_1,9_1,9_0_0 -233,2,51.0,0.0,8,111,0.0,,,56,21,0.0,0.0,,126.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,0,,1,2003.0,6,124042,2,1,0,0,2,,300.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,100.7469656446396,0.0,28120.363986160555,1,4,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00448073858723916,15622.424436755864,3,2,3_0,3_1_0,3_3_0,3_0_0 -234,1,58.0,413.0,7,112,260.0,,,81,63,0.0,0.0,,524.0,454.1663291062106,,44,0,0,0,0,0,0,0,0,0,,1,,5,118928,2,1,0,0,2,,413.0,520.0,43,2.0,0.0,3.0,4.0,2.1,2,2,108.20345536744506,260.0,3417.7387972549423,4,4,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15331774342172258,1627.4946653594961,1,1,1_1,1_1_1,1_1_1,1_0_0 -235,2,61.0,0.0,5,111,700.0,,,0,74,0.0,20.703450096389155,,762.0,72.25373417598806,,30,0,0,0,0,0,0,0,0,0,,1,,3,120489,2,1,0,0,2,,210.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,96.15600755490976,700.0,31859.22876744007,0,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02391771645077483,31859.22876744007,8,4,8,8_1,8_3,8_0_0 -236,2,45.0,0.0,5,112,306.0,,,0,38,0.0,0.0,,582.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,0,,1,,3,107079,2,1,0,0,2,,115.0,,22,1.0,3.0,5.0,3.0,2.0,2,2,96.69448462735278,306.0,32264.23316523889,0,1,0,1,180.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018038550521852787,16132.116582619445,4,2,4_0,4_1_0,4_1_0,4_0_0 -237,1,50.0,253.0,7,111,0.0,,,0,85,0.0,0.0,,126.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,0,,3,,5,117879,2,1,0,0,2,,0.0,400.0,11,0.0,6.0,1.0,1.0,1.0,1,1,104.91383303755853,0.0,7032.0,0,6,3,4,16.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017918088737201365,7032.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -238,2,81.0,0.0,5,112,0.0,,,0,75,0.0,0.0,,309.0,158.27008438549763,,60,0,0,0,0,0,0,0,0,0,,1,,3,112840,2,1,0,0,2,,149.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,93.5233200161658,0.0,42846.08249870797,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0072118612012969435,42846.08249870797,9,5,9,9_1,9_1,9_0_0 -239,2,54.0,0.0,9,111,1500.0,,,0,67,0.0,0.0,,1615.0,197.83760548187203,,20,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,122557,2,2,0,0,1,,1000.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,96.25616428351259,1500.0,28833.96933584887,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05601032522400907,19222.646223899246,5,3,5,5_1,5_3,5_0_0 -240,1,30.0,350.0,7,112,420.0,,,0,81,0.0,0.0,,590.0,292.4555907123326,,70,0,0,0,0,0,0,0,0,0,,2,,5,129615,2,2,0,0,2,,150.0,412.0,32,1.0,0.0,3.0,2.0,1.3,2,2,87.40585037127347,420.0,9391.060610609375,0,4,2,3,70.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06282570462099442,7223.892777391827,1,1,1_1,1_0_1,1_1_1,1_0_0 -241,2,70.0,0.0,6,111,169.0,,,0,78,0.0,0.0,,269.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,0,,1,,4,121056,2,1,0,0,2,,124.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,106.2774234569179,169.0,10637.137033824794,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025288759479605547,10637.137033824794,2,1,2_0,2_1_0,2_3_0,2_0_0 -242,1,26.0,250.0,7,112,192.0,,,0,68,0.0,0.0,,868.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,5,126576,2,2,0,0,2,,180.0,400.0,32,2.0,0.0,4.0,4.0,2.3,2,2,74.32008443887162,192.0,20358.007832898173,0,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04263678485265772,8851.307753433988,1,1,1_1,1_0_1,1_1_1,1_0_0 -243,1,23.0,230.0,7,112,33.0,,,0,55,0.0,0.0,,56.0,39.567521096374406,,50,0,0,0,0,0,0,0,0,0,,2,,5,107355,2,1,0,0,2,,0.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,85.46218489915118,33.0,14421.91569767442,0,4,2,3,70.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.003882979291650566,14421.91569767442,3,2,3_1,3_0_1,3_1_1,3_0_0 -244,2,65.0,0.0,7,111,360.0,,,75,75,0.0,0.0,,448.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,0,,1,,5,101907,1,1,0,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,115.12602130892775,360.0,59977.34732996902,5,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0074694867303033725,39984.898219979346,9,5,9,9_1,9_3,9_0_0 -245,1,67.0,154.0,7,112,528.0,,,0,77,0.0,0.0,,612.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,0,,2,,5,133678,2,1,0,0,2,,104.0,450.0,11,0.0,4.0,3.0,1.0,1.0,1,1,93.51175401094162,528.0,9571.30655709294,0,5,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06394111361384298,9571.30655709294,1,1,1_1,1_0_1,1_1_1,1_0_0 -246,1,42.0,169.0,7,112,0.0,,,85,90,0.0,0.0,,971.0,395.67521096374406,,10,0,0,0,0,0,0,0,0,0,,2,,5,114349,2,1,0,0,2,,400.0,495.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,2,2,87.2314136059333,0.0,39968.290975657015,7,4,2,3,65.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024294258680997764,15372.419606021931,3,2,3_1,3_0_1,3_1_1,3_0_0 -247,2,74.0,0.0,6,111,24.0,,,0,77,0.0,0.0,,116.0,158.27008438549763,,60,0,0,0,0,0,0,0,0,0,,1,,4,100596,1,1,0,0,2,,360.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,90.44109755224477,24.0,25115.325694058356,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004618693837103719,25115.325694058356,7,4,7,7_1,7_3,7_0_0 -248,1,57.0,243.0,7,112,540.0,,,0,55,0.0,0.0,,666.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,2,,5,115942,2,2,0,0,2,,240.0,500.0,22,1.0,6.0,3.0,2.0,1.3,2,2,93.51175401094162,540.0,7414.0,0,4,2,3,65.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0898300512543836,5703.076923076923,1,1,1_1,1_0_1,1_1_1,1_0_0 -250,2,54.0,0.0,7,112,1700.0,,,85,22,0.0,0.0,,1700.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,117032,2,1,0,0,2,,400.0,750.0,42,2.0,0.0,4.0,5.0,2.8,1,1,92.24731560969643,1700.0,10154.93448556818,6,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16740629911655044,3626.76231627435,1,1,1_0,1_1_0,1_1_0,1_0_0 -251,0,42.0,0.0,2,111,480.0,,,0,63,0.0,0.0,,543.0,108.38060126398207,,10,0,0,0,0,0,0,0,0,0,,1,,2,131839,2,1,0,0,2,,450.0,,12,1.0,1.0,6.0,1.0,1.0,3,2,121.83821905996878,480.0,7546.620105408697,0,4,0,1,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07195274075222488,7546.620105408697,1,1,1_0,1_1_0,1_3_0,1_0_1 -252,2,47.0,0.0,9,112,2500.0,,,52,63,0.0,0.0,,2600.0,172.03270041901916,,12,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101006,2,1,0,0,2,,300.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,74.4371719791204,2500.0,53684.0,4,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048431562476715595,19172.857142857145,5,3,5,5_1,5_1,5_0_0 -253,2,68.0,0.0,9,111,680.0,,,0,74,0.0,0.0,,768.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,117316,1,1,0,0,2,,490.0,,11,0.0,4.0,4.0,1.0,1.0,3,3,90.44109755224477,680.0,43789.91483992697,0,5,1,2,73.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017538284849545983,43789.91483992697,10,5,10,10_1,10_3,10_0_0 -254,2,64.0,0.0,9,112,600.0,,,52,21,0.0,0.0,,666.0,113.54158227655265,,70,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,125767,2,1,0,0,2,,150.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,126.70344112643299,600.0,51291.60683992923,1,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012984580539238162,34194.40455995282,9,5,9,9_1,9_1,9_0_0 -255,2,66.0,0.0,7,111,700.0,,,77,75,0.0,0.0,,950.0,430.0817510475479,,71,0,0,0,0,0,0,0,0,0,,1,,5,125616,2,1,0,0,2,,550.0,,41,1.0,1.0,6.0,4.0,2.5,5,4,102.26019406753441,700.0,46905.99662814312,5,5,0,1,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020253273958366545,18762.39865125725,5,3,5,5_1,5_3,5_0_0 -256,2,49.0,0.0,8,112,500.0,,,68,46,0.0,0.0,,566.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,128059,2,1,0,0,2,,150.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,78.55911095989467,500.0,7882.225798589067,4,4,0,1,90.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07180712840037075,3941.1128992945337,1,1,1_0,1_1_0,1_1_0,1_0_0 -257,2,86.0,0.0,2,111,1284.0,,,0,77,0.0,0.0,,1424.0,240.84578058662683,,70,0,0,0,0,0,0,0,0,0,,1,,2,105714,1,1,0,0,2,,1000.0,,21,1.0,1.0,4.0,2.0,1.5,1,1,87.91435662885756,1284.0,22220.98932934627,0,5,0,1,159.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0640835553671495,14813.992886230846,3,2,3_0,3_1_0,3_3_0,3_0_1 -258,0,63.0,0.0,2,112,300.0,,,0,68,0.0,0.0,,300.0,0.0,,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,105289,2,1,0,0,2,,400.0,,12,1.0,7.0,4.0,1.0,1.0,4,4,128.47046698853623,300.0,3530.8302078278166,0,1,5,0,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0849658528849399,3530.8302078278166,1,1,1_0,1_1_0,1_1_0,1_0_1 -259,2,49.0,0.0,8,111,288.0,,,46,47,0.0,0.0,,357.0,118.70256328912323,,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,108655,2,1,0,0,2,,294.0,,43,2.0,1.0,5.0,3.0,1.8,1,1,82.46593908786451,288.0,49517.011143872674,1,1,0,1,149.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0072096435498243076,27509.45063548482,7,4,7,7_1,7_3,7_0_0 -260,2,27.0,0.0,7,111,840.0,,,0,22,0.0,0.0,,886.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,2,45.0,1,,5,109445,1,1,0,0,2,,600.0,820.0,12,1.0,0.0,4.0,1.0,1.0,1,1,84.02643721911467,840.0,13341.575709438024,0,1,2,3,99.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06640894743588875,13341.575709438024,3,2,3_0,3_1_0,3_3_0,3_0_0 -261,1,28.0,340.0,9,111,0.0,,,56,37,0.0,0.0,,46.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,116501,1,2,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,3.0,1.8,2,2,96.53640845958533,0.0,19427.533246293347,1,1,2,3,25.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.002367773582823569,10793.074025718526,2,1,2_1,2_1_1,2_3_1,2_0_0 -262,2,66.0,0.0,8,112,1000.0,,,75,75,0.0,0.0,,1090.0,154.82943037711726,,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,103262,2,1,0,0,2,,350.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,81.24529308041659,1000.0,67576.91908172726,5,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01612976760129828,45051.27938781818,10,5,10,10_1,10_1,10_0_0 -263,2,59.0,0.0,5,111,468.0,,,75,42,0.0,0.0,,636.0,289.01493670395223,,20,0,0,0,0,0,0,0,0,2,20.0,1,,3,119705,2,1,0,0,2,,183.0,,42,1.0,3.0,5.0,2.0,1.5,3,2,74.57516201010513,468.0,97584.28450641005,5,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006517442877374613,65056.18967094004,10,5,10,10_1,10_3,10_0_0 -264,2,54.0,0.0,8,111,880.0,,,37,54,0.0,0.0,,1132.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,132741,2,3,0,0,2,,300.0,,43,4.0,0.0,4.0,6.0,3.3,1,1,81.94290212958164,880.0,54076.04204146112,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020933484723827868,16386.679406503372,4,2,4_0,4_1_0,4_3_0,4_0_0 -265,2,56.0,0.0,5,112,1000.0,,,78,56,0.0,0.0,,1066.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,3,45.0,1,,3,124852,2,1,0,0,2,,700.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,81.24529308041659,1000.0,16392.211238068532,5,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06503088476095097,10928.140825379021,2,1,2_0,2_1_0,2_1_0,2_0_0 -266,2,34.0,0.0,6,111,360.0,,,46,42,0.0,0.0,,406.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,40.0,1,,4,116051,2,2,0,0,2,,230.0,640.0,43,2.0,0.0,3.0,2.0,1.5,3,3,96.16796082052794,360.0,52051.783453306176,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007799924864518971,34701.18896887078,9,5,9,9_1,9_3,9_0_0 -267,1,66.0,330.0,2,112,400.0,,,85,78,0.0,0.0,,620.0,378.4719409218422,,20,0,0,0,0,0,0,0,0,0,,1,,2,101672,2,3,0,0,2,,0.0,400.0,41,0.0,0.0,3.0,4.0,2.1,1,1,108.20345536744506,400.0,5639.076419680508,6,5,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10994708243998709,2685.2744855621463,1,1,1_1,1_1_1,1_1_1,1_0_1 -268,0,58.0,0.0,5,111,300.0,,,0,77,0.0,0.0,,438.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,3,109558,1,3,0,0,2,,400.0,,21,0.0,0.0,4.0,2.0,1.5,1,1,97.47895443701563,300.0,22105.918925622205,0,7,5,0,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01981369792740574,14737.279283748137,3,2,3_0,3_1_0,3_3_0,3_0_0 -269,2,70.0,0.0,5,112,300.0,,,0,86,0.0,0.0,,344.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,1,,3,130996,2,1,0,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,86.93560954055549,300.0,31064.038013659054,0,5,0,1,90.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011073898372411888,31064.038013659054,8,4,8,8_1,8_1,8_0_0 -270,2,76.0,0.0,2,112,1200.0,,,0,77,0.0,0.0,,1200.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,105096,2,2,0,0,2,,550.0,,21,0.0,5.0,4.0,2.0,1.5,1,1,81.24529308041659,1200.0,30327.097188745225,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03956857435222436,20218.064792496818,5,3,5,5_1,5_1,5_0_1 -271,2,74.0,0.0,7,111,900.0,,,72,45,0.0,0.0,,1038.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,5,105042,2,1,0,0,2,,700.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,99.44882926642907,900.0,26377.029024115953,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03935242286199021,17584.686016077303,4,2,4_0,4_1_0,4_3_0,4_0_0 -272,1,82.0,253.0,2,112,240.0,,,0,77,0.0,0.0,,328.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,1,,2,116633,2,2,0,0,2,,100.0,500.0,11,0.0,0.0,3.0,1.0,1.0,2,2,117.22103609494386,240.0,10976.127650843584,0,5,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.029883034384607505,10976.127650843584,2,1,2_1,2_1_1,2_1_1,2_0_1 -273,0,55.0,0.0,1,112,400.0,,,81,62,0.0,0.0,,530.0,223.64251054472493,,12,0,0,0,0,0,0,0,0,0,,1,,1,101182,1,3,0,0,2,,0.0,,43,2.0,2.0,4.0,3.0,2.0,5,5,150.3663733400958,400.0,29190.81266457902,4,1,5,0,55.0,8,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01815639756556409,14595.40633228951,3,2,3_0,3_1_0,3_1_0,3_1_0 -274,2,72.0,0.0,2,112,500.0,,,0,78,0.0,0.0,,544.0,75.69438818436844,,12,0,0,0,0,0,0,0,0,0,,1,,2,122182,2,2,0,0,2,,200.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,86.93560954055549,500.0,9472.153779756442,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05743150002089471,9472.153779756442,1,1,1_0,1_1_0,1_1_0,1_0_1 -275,2,49.0,0.0,7,112,1200.0,,,85,85,0.0,0.0,,1420.0,378.4719409218422,,10,0,0,0,0,0,0,0,0,0,,1,,5,118201,2,3,0,0,2,,900.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,95.80831051815663,1200.0,15155.75260214832,6,5,0,1,80.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09369379649274004,10103.83506809888,2,1,2_0,2_1_0,2_1_0,2_0_0 -276,0,40.0,0.0,7,112,680.0,,,54,42,0.0,0.0,,806.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,5,108203,2,1,0,0,2,,150.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,112.55277534558847,680.0,25993.529820948086,4,1,5,0,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03100771636449497,17329.01988063206,4,2,4_0,4_1_0,4_1_0,4_0_0 -277,2,59.0,0.0,6,111,200.0,,,0,77,0.0,0.0,,288.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,4,114056,2,2,0,0,2,,620.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,112.5707969001411,200.0,1094.6479053363264,0,7,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.26309829726620004,1094.6479053363264,1,1,1_0,1_1_0,1_3_0,1_0_0 -278,2,68.0,0.0,9,112,1300.0,,,0,75,0.0,0.0,,1300.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,114229,2,2,0,0,2,,120.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,102.01478504302294,1300.0,43861.64471257254,0,5,1,2,76.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029638651457759103,43861.64471257254,10,5,10,10_1,10_1,10_0_0 -279,2,58.0,0.0,7,112,1080.0,,,62,74,0.0,0.0,,1146.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,0,,1,,5,127448,2,3,0,0,2,,760.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,89.21141930352901,1080.0,50091.0,4,5,0,1,80.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022878361382284242,33394.0,8,4,8,8_1,8_1,8_0_0 -280,2,75.0,0.0,7,112,750.0,,,90,77,0.0,0.0,,876.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,5,115957,2,1,0,0,2,,100.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,81.24529308041659,750.0,31774.969144763574,5,5,0,1,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027568870201227634,21183.312763175716,5,3,5,5_1,5_1,5_0_0 -281,2,64.0,0.0,9,112,300.0,,,45,77,0.0,0.0,,450.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,118477,2,3,0,0,2,,400.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,103.97799748351133,300.0,75487.16956338992,1,5,0,1,125.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005961277957601987,50324.77970892662,10,5,10,10_1,10_1,10_0_0 -282,2,62.0,0.0,5,112,900.0,,,77,75,0.0,0.0,,900.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,132441,2,1,0,0,2,,300.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,94.53939385249434,900.0,80881.74909593996,6,5,0,1,180.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011127355801028017,53921.16606395997,10,5,10,10_1,10_1,10_0_0 -283,2,69.0,0.0,6,221,600.0,,,77,78,0.0,0.0,,688.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,1,,4,118883,2,2,0,0,2,,560.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,75.14835236789278,600.0,20746.811889242068,5,5,0,1,72.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033161721601994744,13831.207926161378,3,2,3_0,3_1_0,3_1_0,3_0_0 -284,2,77.0,0.0,2,112,600.0,,,0,77,0.0,0.0,,600.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,101837,2,1,0,0,2,,130.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,98.31566835640307,600.0,19675.185932270335,0,5,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03049526454618696,19675.185932270335,5,3,5,5_1,5_1,5_0_1 -285,2,83.0,0.0,9,221,500.0,,,0,78,0.0,0.0,,780.0,481.69156117325366,,50,0,0,0,0,0,0,0,0,0,,1,2013.0,6,113184,2,2,0,0,2,,105.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,101.78975836617957,500.0,12202.733333333334,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06392010533159237,12202.733333333334,2,1,2_0,2_1_0,2_1_0,2_0_0 -286,2,50.0,0.0,2,112,1000.0,,,0,55,0.0,0.0,,1000.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,106936,2,1,0,0,2,,400.0,,22,1.0,0.0,4.0,3.0,2.0,2,2,102.03460657208973,1000.0,7791.783764427759,0,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1283403172153407,3895.8918822138794,1,1,1_0,1_1_0,1_1_0,1_0_1 -287,2,70.0,0.0,1,221,0.0,,,0,71,0.0,0.0,,259.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,1,103021,2,2,0,0,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,4,3,91.86543179355385,0.0,11003.434460261418,0,5,0,1,41.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023538105392036542,11003.434460261418,2,1,2_0,2_1_0,2_1_0,2_1_0 -288,2,89.0,0.0,9,221,0.0,,,0,86,0.0,0.0,,1949.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,110249,2,2,0,0,2,,300.0,,11,0.0,9.0,3.0,1.0,1.0,1,1,119.12170874400253,0.0,10841.588898525588,0,5,0,1,32.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17977069765715392,10841.588898525588,2,1,2_0,2_1_0,2_1_0,2_0_0 -289,2,50.0,0.0,5,120,432.0,,,78,56,0.0,0.0,,511.0,136.2498987318632,,60,0,0,0,0,0,0,0,0,0,,1,,3,104892,2,1,0,0,1,,128.0,,42,1.0,4.0,5.0,4.0,2.5,4,4,71.6258318909671,432.0,49700.43882697809,5,1,0,1,150.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010281599359292218,19880.175530791235,5,3,5,5_1,5_1,5_0_0 -290,2,21.0,0.0,2,221,600.0,,,0,63,0.0,0.0,,660.0,103.2196202514115,,20,0,0,0,0,0,0,0,0,0,,1,,2,132347,2,2,0,0,2,,500.0,,22,2.0,4.0,6.0,3.0,2.0,1,1,85.83159063789836,600.0,23911.822315881473,0,1,0,1,130.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027601409515394776,11955.911157940736,2,1,2_0,2_1_0,2_1_0,2_0_1 -291,2,57.0,0.0,6,300,1200.0,,,74,33,0.0,0.0,,1266.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,1,,4,111181,2,1,0,0,2,,200.0,,42,1.0,2.0,6.0,2.0,1.5,3,2,97.77678567157739,1200.0,119694.31922040525,5,1,0,1,170.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010576943068357205,79796.2128136035,10,5,10,10_1,10_1,10_0_0 -292,2,77.0,0.0,7,120,174.0,,,0,75,0.0,0.0,,306.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,1,,5,101058,2,1,0,0,2,,120.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,118.96131279135167,174.0,10976.55534643049,0,5,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027877598239370183,10976.55534643049,2,1,2_0,2_1_0,2_1_0,2_0_0 -293,2,47.0,0.0,2,120,420.0,,,0,85,0.0,136.64277063616842,,912.0,619.317721508469,,12,0,0,0,0,0,0,0,0,0,,1,,2,104738,2,1,0,0,2,,350.0,,21,0.0,4.0,5.0,2.0,1.5,5,4,85.8341199189916,420.0,27134.917927669194,0,7,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03360983078817582,18089.945285112797,4,2,4_0,4_1_0,4_1_0,4_0_1 -294,2,42.0,0.0,9,120,0.0,,,71,56,0.0,22.77379510602807,,286.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,1,2010.0,6,128004,2,1,0,0,2,,420.0,,42,1.0,5.0,3.0,4.0,2.3,1,1,121.89311182825593,0.0,13566.0,5,1,0,1,42.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021082117057349255,5898.260869565218,1,1,1_0,1_1_0,1_1_0,1_0_0 -295,0,69.0,0.0,2,120,270.0,,,0,77,0.0,0.0,,534.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,2,129705,2,2,0,0,2,,1127.0,,21,1.0,3.0,4.0,2.0,1.5,3,2,90.96233761612828,270.0,13769.9203016133,0,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038780180880018306,9179.9468677422,1,1,1_0,1_1_0,1_1_0,1_0_1 -296,2,67.0,0.0,7,120,592.0,,,0,77,0.0,22.77379510602807,,812.0,340.62474682965797,,71,0,0,0,0,0,0,0,0,0,,1,,5,129423,2,1,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,80.42358956548964,592.0,17088.828350891177,0,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047516423205085,17088.828350891177,4,2,4_0,4_1_0,4_1_0,4_0_0 -297,2,92.0,0.0,2,120,450.0,,,0,77,0.0,0.0,,650.0,344.06540083803833,,43,0,0,0,0,0,0,0,0,0,,1,,2,132958,1,1,0,0,2,,189.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,100.98302179537978,450.0,10396.048780487807,0,5,0,1,150.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06252375433443287,10396.048780487807,2,1,2_0,2_1_0,2_1_0,2_0_1 -298,0,72.0,0.0,2,120,392.0,,,0,78,0.0,0.0,,502.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,,2,104156,2,1,0,0,2,,400.0,,21,1.0,4.0,4.0,2.0,1.5,2,2,74.01669285250334,392.0,9184.0,0,5,0,1,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0546602787456446,6122.666666666667,1,1,1_0,1_1_0,1_1_0,1_0_1 -299,1,26.0,200.0,5,120,0.0,,,0,68,0.0,0.0,,351.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,3,113727,2,2,0,0,2,,329.0,450.0,22,1.0,0.0,3.0,3.0,1.8,2,2,124.75069314086919,0.0,25043.324087935194,0,1,2,3,65.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01401571128367487,13912.957826630663,3,2,3_1,3_0_1,3_1_1,3_0_0 -300,2,80.0,0.0,2,120,610.0,,,0,86,0.0,0.0,,830.0,378.4719409218422,,71,0,0,0,0,0,0,0,0,0,,1,,2,109478,2,1,0,0,2,,250.0,,11,0.0,9.0,6.0,1.0,1.0,3,2,100.05585390001096,610.0,20079.751338542697,0,5,0,1,160.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04133517323029947,20079.751338542697,5,3,5,5_1,5_1,5_0_1 -301,2,53.0,0.0,6,120,0.0,,,0,69,0.0,0.0,,88.0,151.38877636873687,,43,0,0,0,0,0,0,0,0,0,,1,,4,117459,1,2,0,0,2,,0.0,,12,1.0,5.0,6.0,1.0,1.0,4,4,100.98302179537978,0.0,8748.673206330095,0,4,0,1,76.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010058668088816905,8748.673206330095,1,1,1_0,1_1_0,1_1_0,1_0_0 -302,1,40.0,253.0,8,120,327.0,,,0,81,0.0,0.0,,459.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126510,2,2,0,0,2,,302.0,,32,2.0,0.0,4.0,3.0,2.0,4,3,86.8757327146008,327.0,9982.903999999999,0,4,1,2,65.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04597860502314758,4991.451999999999,1,1,1_1,1_1_1,1_1_1,1_0_0 -303,2,59.0,0.0,6,120,750.0,,,0,52,0.0,0.0,,948.0,340.62474682965797,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,128899,2,2,0,0,2,,400.0,,32,4.0,0.0,6.0,4.0,2.5,2,2,108.52108624404863,750.0,87698.22204118452,0,1,0,1,130.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010809797256263687,35079.28881647381,9,5,9,9_1,9_1,9_0_0 -304,0,62.0,0.0,5,120,0.0,,,0,52,0.0,0.0,,934.0,454.1663291062106,,20,0,0,0,0,0,0,0,0,1,2.0,1,,3,121223,2,1,0,0,2,,390.0,,22,5.0,0.0,5.0,7.0,3.6,2,2,127.4422475245607,0.0,48192.76539446249,0,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019380502288157127,13386.87927623958,3,2,3_0,3_1_0,3_1_0,3_0_0 -305,2,45.0,0.0,7,120,720.0,,,0,85,0.0,0.0,,1160.0,756.9438818436844,,71,0,0,0,0,0,0,0,0,0,,1,,5,122671,2,2,0,0,2,,320.0,,21,1.0,8.0,8.0,4.0,2.5,1,1,70.5200567062903,720.0,33963.82187182616,0,7,0,1,275.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034153989040975656,13585.528748730465,3,2,3_0,3_1_0,3_1_0,3_0_0 -306,2,59.0,0.0,6,300,0.0,,,77,68,0.0,124.22070057833493,,867.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,1,,4,118457,2,2,0,0,2,,562.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,108.50965553119455,0.0,33514.23445661578,5,1,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02586960478307606,22342.822971077185,6,3,6,6_1,6_1,6_0_0 -307,2,35.0,0.0,9,300,150.0,,,0,55,0.0,0.0,,203.0,90.83326582124212,,50,0,0,0,0,0,0,0,0,2,50.0,1,2009.0,6,112154,2,1,0,0,2,,160.0,,32,2.0,0.0,4.0,4.0,2.1,3,3,141.06761155755245,150.0,31852.021514773925,0,1,0,1,110.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0063732218661802205,15167.629292749487,3,2,3_0,3_1_0,3_1_0,3_0_0 -308,2,52.0,0.0,7,300,0.0,,,0,56,0.0,0.0,,941.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,118630,2,2,0,0,2,,0.0,300.0,22,2.0,2.0,5.0,2.0,1.5,4,3,82.71339437204318,0.0,8060.528618523346,0,4,3,4,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1167417230971121,5373.685745682231,1,1,1_0,1_1_0,1_1_0,1_0_0 -309,2,49.0,0.0,7,300,0.0,,,85,52,0.0,0.0,,66.0,113.54158227655265,,12,0,0,0,0,0,0,0,0,3,70.0,1,,5,122941,2,1,0,0,2,,800.0,,42,1.0,1.0,4.0,4.0,2.1,3,3,74.50775387490093,0.0,48137.62408337098,6,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0013710689145291558,22922.67813493856,6,3,6,6_1,6_1,6_0_0 -310,2,61.0,0.0,6,300,250.0,,,0,77,0.0,0.0,,490.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,4,119752,1,3,0,0,2,,280.0,,11,0.0,2.0,1.0,1.0,1.0,2,2,126.45590921710215,250.0,20622.4908616188,0,7,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023760466341723793,20622.4908616188,5,3,5,5_1,5_1,5_0_0 -311,2,48.0,0.0,7,300,1237.0,,,52,21,0.0,0.0,,1397.0,275.25232067043066,,43,0,0,0,0,0,0,0,0,0,,1,,5,121212,2,2,0,0,2,,440.0,,43,2.0,0.0,4.0,4.0,2.3,4,4,118.71726007588985,1237.0,46581.871165285986,1,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02999020788673428,20252.98746316782,5,3,5,5_1,5_1,5_0_0 -312,2,77.0,0.0,2,300,448.0,,,0,86,0.0,0.0,,624.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,0,,1,,2,122989,2,1,0,0,2,,700.0,,21,0.0,2.0,6.0,2.0,1.5,1,1,86.0563549619415,448.0,15624.319162765498,0,5,0,1,95.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03993774023043909,10416.212775176999,2,1,2_0,2_1_0,2_1_0,2_0_1 -313,2,55.0,0.0,9,300,600.0,,,77,63,0.0,0.0,,810.0,361.26867087994026,,31,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,100331,2,2,0,0,2,,337.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,91.97885000668111,600.0,63904.349934727565,5,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012675193485691362,42602.899956485046,9,5,9,9_0,9_1,9_0_0 -314,1,40.0,135.0,1,300,280.0,,,85,85,0.0,0.0,,544.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,1,,1,130265,2,1,0,0,2,,835.0,500.0,41,0.0,0.0,3.0,9.0,3.999999999999999,2,2,100.08979374069176,280.0,26523.871671650544,7,6,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.02050982627025158,6630.967917912638,1,1,1_1,1_1_1,1_1_1,1_1_0 -315,1,31.0,468.0,2,300,220.0,,,0,52,0.0,0.0,,308.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,1,,2,103417,2,3,0,0,2,,440.0,600.0,32,1.0,0.0,3.0,4.0,1.9,1,1,101.9469520931869,220.0,16553.887969925196,0,4,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01860590095568901,8712.572615750103,1,1,1_1,1_1_1,1_1_1,1_0_1 -316,2,51.0,0.0,2,300,480.0,,,0,45,0.0,0.0,,730.0,430.0817510475479,,71,0,0,0,0,0,0,0,0,0,,1,,2,120694,2,1,0,0,2,,600.0,,22,1.0,2.0,7.0,3.0,2.0,2,2,70.5200567062903,480.0,44945.59081007911,0,1,0,1,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016241860143404688,22472.795405039556,6,3,6,6_1,6_1,6_0_1 -317,2,62.0,0.0,5,300,480.0,,,0,43,0.0,0.0,,720.0,412.878481005646,,41,0,0,0,0,0,0,0,0,0,,1,,3,120172,2,2,0,0,2,,720.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,88.67350010961052,480.0,48462.91770639825,0,1,0,1,64.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0148567200258548,48462.91770639825,10,5,10,10_1,10_1,10_0_0 -318,2,64.0,0.0,2,300,300.0,,,0,46,0.0,0.0,,344.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,116535,1,3,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,3,3,140.48815379141652,300.0,19426.54501309656,0,1,0,1,82.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017707729283209635,19426.54501309656,5,3,5,5_1,5_1,5_0_1 -319,2,43.0,0.0,9,300,720.0,,,85,63,0.0,0.0,,878.0,271.8116666620503,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,106409,1,2,0,0,2,,1400.0,,42,2.0,0.0,5.0,5.0,2.8,2,2,85.8341199189916,720.0,21591.38060455148,7,4,1,2,248.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04066437510785748,7711.207358768386,1,1,1_0,1_1_0,1_1_0,1_0_0 -320,2,70.0,0.0,7,300,420.0,,,0,77,0.0,0.0,,588.0,289.01493670395223,,10,0,0,0,0,0,0,0,0,0,,1,,5,124986,2,3,0,0,2,,1380.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,118.96131279135167,420.0,11023.550765791606,0,5,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05334034491179444,11023.550765791606,2,1,2_0,2_1_0,2_1_0,2_0_0 -321,1,46.0,253.0,1,300,360.0,,,0,81,0.0,0.0,,448.0,151.38877636873687,,20,0,0,0,0,0,0,0,0,0,,1,,1,124501,2,3,0,0,2,,160.0,530.0,12,1.0,0.0,3.0,1.0,1.0,1,1,124.9753839058977,360.0,21641.368955175847,0,4,2,3,40.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0207010933979227,21641.368955175847,6,3,6,6_1,6_1,6_1_0 -322,2,58.0,0.0,7,300,360.0,,,0,52,0.0,0.0,,406.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,0,,1,,5,123736,2,2,0,0,2,,260.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,97.3213174568268,360.0,7872.607817054656,0,4,0,1,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05157122130743901,7872.607817054656,1,1,1_0,1_1_0,1_1_0,1_0_0 -323,2,78.0,0.0,1,300,570.0,,,0,78,0.0,0.0,,834.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,1,,1,133527,2,2,0,0,2,,240.0,,11,0.0,10.0,5.0,1.0,1.0,1,1,94.88346375469598,570.0,10959.0,0,5,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07610183410895155,10959.0,2,1,2_0,2_1_0,2_1_0,2_1_0 -324,1,32.0,357.0,7,300,0.0,,,0,54,0.0,0.0,,330.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,5,114886,2,2,0,0,2,,551.0,550.0,32,1.0,0.0,3.0,2.0,1.3,3,2,129.29194957656736,0.0,9380.175583527684,0,4,3,4,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03518057813112855,7215.519679636679,1,1,1_1,1_1_1,1_1_1,1_0_0 -326,2,69.0,0.0,9,300,1500.0,,,48,75,0.0,0.0,,1588.0,151.38877636873687,,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,115856,2,2,0,0,1,,540.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,101.66541316716304,1500.0,27292.435243867643,4,5,1,2,90.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05818462096953436,18194.956829245097,4,2,4_0,4_1_0,4_1_0,4_0_0 -327,2,77.0,0.0,1,300,1296.0,,,77,78,0.0,0.0,,1548.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,1,121370,2,3,0,0,2,,272.0,,41,0.0,7.0,7.0,2.0,1.5,2,2,83.7166981953634,1296.0,32657.917562864044,5,5,0,1,69.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04740045035082889,21771.945041909363,6,3,6,6_1,6_1,6_1_0 -328,2,32.0,0.0,2,300,810.0,,,0,52,0.0,0.0,,936.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,0,,1,,2,129548,2,1,0,0,2,,340.0,,22,1.0,6.0,5.0,2.0,1.5,2,2,82.71339437204318,810.0,36266.0,0,1,0,1,65.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025809297965036122,24177.333333333332,7,4,7,7_1,7_1,7_0_1 -329,2,40.0,0.0,2,300,320.0,,,0,21,0.0,0.0,,408.0,151.38877636873687,,44,0,0,0,0,0,0,0,0,2,10.0,1,,2,127667,2,2,0,0,2,,360.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,82.71339437204318,320.0,5080.427381898626,0,1,0,1,56.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08030820427700411,5080.427381898626,1,1,1_0,1_1_0,1_1_0,1_0_1 -330,2,56.0,0.0,6,300,780.0,,,77,21,0.0,0.0,,1044.0,454.1663291062106,,60,0,0,0,0,0,0,0,0,0,,1,,4,107423,2,1,0,0,2,,780.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,140.18088878984636,780.0,54854.4322177643,6,4,0,1,131.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01903219043185915,36569.62147850953,9,5,9,9_1,9_1,9_0_0 -331,2,84.0,0.0,1,300,420.0,,,0,86,0.0,0.0,,552.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,1,109468,2,2,0,0,2,,348.0,,21,0.0,8.0,5.0,2.0,1.5,2,2,90.96233761612828,420.0,21448.809902854147,0,6,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025735693611912077,14299.206601902764,3,2,3_0,3_1_0,3_1_0,3_1_0 -332,2,68.0,0.0,8,112,250.0,,,75,74,0.0,0.0,,400.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,127461,2,3,0,0,2,,175.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,100.63416435356625,250.0,95468.0,5,5,0,1,150.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00418988561612268,63645.333333333336,10,5,10,10_1,10_1,10_0_0 -333,2,21.0,0.0,7,112,0.0,,,0,56,0.0,41.40690019277831,,304.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,0,,1,,5,119045,1,1,0,0,2,,840.0,,22,2.0,1.0,2.0,5.0,2.8,1,1,92.67368590726447,0.0,9922.0,0,1,0,1,45.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03063898407579117,3543.571428571429,1,1,1_0,1_1_0,1_1_0,1_0_0 -334,2,61.0,0.0,9,112,720.0,,,0,47,0.0,0.0,,810.0,154.82943037711726,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129711,2,1,0,0,2,,300.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,101.0781440922649,720.0,10809.339982653939,0,4,0,1,90.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07493519505352135,10809.339982653939,2,1,2_0,2_1_0,2_1_0,2_0_0 -335,2,54.0,0.0,8,112,1056.0,,,75,37,0.0,0.0,,1129.0,125.58387130588399,,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,101681,2,2,0,0,2,,170.0,,42,1.0,4.0,4.0,2.0,1.5,3,3,110.73313876128293,1056.0,22791.577639004885,5,1,1,2,85.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04953584248893153,15194.385092669923,3,2,3_0,3_1_0,3_1_0,3_0_0 -336,1,54.0,240.0,5,112,390.0,,,0,46,0.0,0.0,,463.0,125.58387130588399,,71,0,0,0,0,0,0,0,0,0,,1,,3,128320,2,2,0,0,2,,343.0,533.0,22,1.0,1.0,2.0,2.0,1.5,3,3,126.76922252959608,390.0,7282.275862068965,0,4,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06357902512477154,4854.850574712643,1,1,1_1,1_1_1,1_1_1,1_0_0 -337,2,65.0,0.0,7,112,586.0,,,74,77,0.0,0.0,,784.0,340.62474682965797,,50,0,0,0,0,0,0,0,0,0,,2,,5,107646,2,1,0,0,2,,112.0,632.0,41,0.0,3.0,4.0,2.0,1.5,2,2,95.00143224416139,586.0,34214.84678845652,5,5,2,3,85.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022914029247224563,22809.897858971013,6,3,6,6_0,6_1,6_0_0 -338,2,45.0,0.0,9,112,600.0,,,21,31,0.0,103.51725048194578,,810.0,189.2359704609211,,10,0,0,0,0,0,0,0,0,0,,1,2004.0,6,108636,2,2,0,0,2,,800.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,94.11540918472043,600.0,28975.58181471746,1,1,0,1,40.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02795457241133221,13797.89610224641,3,2,3_0,3_1_0,3_1_0,3_0_0 -339,2,69.0,0.0,2,112,260.0,,,0,77,0.0,0.0,,400.0,240.84578058662683,,71,0,0,0,0,0,0,0,0,0,,1,,2,110992,1,2,0,0,2,,360.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,112.40894431487531,260.0,9389.73493299883,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04259971158443029,9389.73493299883,1,1,1_0,1_1_0,1_1_0,1_0_1 -340,0,52.0,0.0,8,112,390.0,,,0,85,0.0,0.0,,918.0,908.3326582124212,,20,0,0,0,0,0,0,0,0,0,,3,1999.0,6,112881,2,2,0,0,2,,103.0,,21,1.0,1.0,2.0,2.0,1.5,2,2,86.93560954055549,390.0,11977.304644235664,0,7,0,1,45.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0766449570473109,7984.869762823776,1,1,1_0,1_0_0,1_1_0,1_0_0 -341,2,33.0,0.0,7,112,0.0,,,0,63,0.0,0.0,,542.0,0.0,,10,0,0,0,0,0,0,0,0,2,60.0,1,,5,105865,2,2,0,0,2,,0.0,,32,1.0,3.0,3.0,2.0,1.3,1,1,108.40686331428323,0.0,14782.302998620218,0,1,1,2,75.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03666546410600502,11371.002306630937,2,1,2_0,2_1_0,2_1_0,2_0_0 -342,2,45.0,0.0,9,112,1000.0,,,54,55,0.0,0.0,,1138.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,122826,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,2.0,6,5,115.66829146429319,1000.0,43990.78366016384,1,1,0,1,176.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02586905495458413,21995.39183008192,6,3,6,6_1,6_1,6_0_0 -343,2,70.0,0.0,7,112,450.0,,,75,75,0.0,0.0,,610.0,275.25232067043066,,10,0,0,0,0,0,0,0,0,0,,1,,5,133267,2,1,0,0,2,,300.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,81.24529308041659,450.0,56083.84621578833,5,5,0,1,75.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010876572153289249,37389.23081052556,9,5,9,9_1,9_1,9_0_0 -344,2,87.0,0.0,7,112,0.0,,,0,78,0.0,0.0,,331.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,5,102602,2,1,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,94.73573173727101,0.0,9994.414019949681,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033118499927989424,9994.414019949681,2,1,2_0,2_1_0,2_1_0,2_0_0 -345,0,77.0,0.0,6,112,120.0,,,0,86,0.0,0.0,,288.0,289.01493670395223,,41,0,0,0,0,0,0,0,0,0,,1,,4,128815,2,2,0,0,2,,80.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,98.31566835640307,120.0,17521.01265517586,0,5,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016437406083085176,17521.01265517586,4,2,4_0,4_1_0,4_1_0,4_0_0 -346,2,24.0,0.0,7,111,1000.0,,,56,21,0.0,0.0,,1264.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,1,,5,102722,2,1,0,0,2,,480.0,,43,3.0,0.0,5.0,4.0,2.3,1,1,97.0789559709865,1000.0,37107.26101638271,1,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034063414150722386,16133.591746253354,4,2,4_0,4_1_0,4_2_0,4_0_0 -347,2,80.0,0.0,5,111,500.0,,,71,75,0.0,0.0,,698.0,340.62474682965797,,60,0,0,0,0,0,0,0,0,0,,1,,3,117694,1,2,0,0,2,,900.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,87.52851394772053,500.0,30535.832478270902,5,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022858391055711098,20357.2216521806,5,3,5,5_1,5_2,5_0_0 -348,1,33.0,522.0,7,111,300.0,,,81,62,0.0,0.0,,300.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,126462,2,1,0,0,2,,0.0,600.0,43,2.0,0.0,3.0,6.0,2.6999999999999997,1,1,85.83074543994297,300.0,33052.26773869638,4,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.00907653303463868,12241.580643961623,2,1,2_1,2_1_1,2_2_1,2_0_0 -349,2,66.0,0.0,6,111,960.0,,,85,72,0.0,0.0,,1212.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,4,124847,2,1,0,0,2,,1000.0,,41,0.0,0.0,6.0,3.0,2.0,2,2,85.86880191144273,960.0,9447.12,6,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1282930670934634,4723.56,1,1,1_0,1_1_0,1_2_0,1_0_0 -350,2,62.0,0.0,7,111,850.0,,,0,81,0.0,0.0,,1102.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,5,110022,2,1,0,0,2,,840.0,,22,2.0,0.0,7.0,2.0,1.5,2,2,76.65057716911467,850.0,24536.609211883453,0,4,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04491248120242648,16357.739474588969,4,2,4_0,4_1_0,4_2_0,4_0_0 -351,2,48.0,0.0,8,111,700.0,,,53,42,0.0,0.0,,952.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,114241,1,1,0,0,2,,792.0,,43,2.0,0.0,6.0,6.0,3.3,2,2,76.57642750335924,700.0,75586.04688627907,1,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012594917173434214,22904.862692811843,6,3,6,6_1,6_2,6_0_0 -352,2,64.0,0.0,5,111,480.0,,,0,69,0.0,0.0,,565.0,146.2277953561663,,70,0,0,0,0,0,0,0,0,3,8.0,1,,3,129679,1,1,0,0,2,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,93.6579950591848,480.0,17102.653082575063,0,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03303581013261895,17102.653082575063,4,2,4_0,4_1_0,4_2_0,4_0_0 -353,2,63.0,0.0,9,111,200.0,,,0,77,0.0,0.0,,452.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,122173,1,1,0,0,1,,190.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,82.76875462301109,200.0,18054.11191001592,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025035847913917216,12036.074606677279,2,1,2_0,2_1_0,2_2_0,2_0_0 -354,2,60.0,0.0,7,111,980.0,,,0,63,0.0,0.0,,1232.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,2,11.0,1,,5,111836,1,1,0,0,2,,594.0,,32,4.0,0.0,4.0,7.0,3.6,1,1,73.92079044469071,980.0,51301.73546907703,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02401478212647618,14250.482074743619,3,2,3_0,3_1_0,3_2_0,3_0_0 -355,2,74.0,0.0,6,111,500.0,,,0,86,0.0,0.0,,632.0,227.0831645531053,,43,0,0,0,0,0,0,0,0,0,,1,,4,119853,2,3,0,0,2,,486.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,87.52851394772053,500.0,24567.056991869722,0,5,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02572550713783729,24567.056991869722,7,4,7,7_1,7_2,7_0_0 -356,2,73.0,0.0,5,111,720.0,,,74,72,0.0,0.0,,786.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,,3,125591,1,2,0,0,2,,720.0,,41,1.0,0.0,4.0,3.0,2.0,2,2,97.83841816948629,720.0,51897.051272975594,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01514536916299317,25948.525636487797,7,4,7,7_1,7_2,7_0_0 -357,2,89.0,0.0,1,111,1000.0,,,0,86,0.0,0.0,,1240.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,1,127087,1,3,0,0,2,,916.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,81.1307404718666,1000.0,5181.239440800425,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23932497506975636,5181.239440800425,1,1,1_0,1_1_0,1_2_0,1_1_0 -358,2,86.0,0.0,2,111,330.0,,,0,72,0.0,0.0,,594.0,454.1663291062106,,20,0,0,0,0,0,0,0,0,0,,1,,2,128412,1,1,0,0,2,,160.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,105.92597110094013,330.0,9520.56843533146,0,5,0,1,76.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062391232628046314,9520.56843533146,1,1,1_0,1_1_0,1_2_0,1_0_1 -359,2,66.0,0.0,8,111,255.0,,,0,86,0.0,0.0,,318.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104120,2,2,0,0,2,,250.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,129.52885222203167,255.0,10651.872672720026,0,5,0,1,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02985390548409518,10651.872672720026,2,1,2_0,2_1_0,2_2_0,2_0_0 -360,2,43.0,0.0,2,111,85.0,,,21,52,0.0,0.0,,385.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,1,,2,103612,1,3,0,0,2,,73.0,900.0,43,4.0,0.0,5.0,7.0,3.8,1,1,105.92597110094013,85.0,42327.08655382303,1,4,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00909583038535938,11138.706987848165,2,1,2_0,2_1_0,2_2_0,2_0_1 -361,1,61.0,152.0,6,111,510.0,,,0,86,0.0,0.0,,552.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,0,,1,,4,121135,1,1,0,0,2,,516.0,968.0,11,0.0,0.0,4.0,1.0,1.0,2,2,126.98519451253466,510.0,9631.39892466108,0,7,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.057312546631892766,9631.39892466108,1,1,1_1,1_1_1,1_2_1,1_0_0 -362,2,52.0,0.0,7,111,400.0,,,55,64,0.0,0.0,,652.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,5,119074,2,2,0,0,2,,500.0,489.0,43,3.0,0.0,4.0,3.0,2.0,2,2,87.31380568248343,400.0,25492.73173791101,1,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025575917351783495,12746.365868955505,2,1,2_0,2_1_0,2_2_0,2_0_0 -363,2,90.0,0.0,2,111,510.0,,,0,78,0.0,0.0,,762.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,2,112784,1,1,0,0,2,,540.0,,21,0.0,0.0,4.0,2.0,1.5,3,3,78.23654355234346,510.0,18471.129519565904,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04125356812602265,12314.08634637727,2,1,2_0,2_1_0,2_2_0,2_0_1 -364,2,44.0,0.0,2,111,600.0,,,0,43,0.0,0.0,,700.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,2,45.0,1,,2,102406,2,2,0,0,2,,600.0,525.0,22,1.0,0.0,4.0,2.0,1.5,2,2,83.60818328165023,600.0,13924.562188545884,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05027088037107612,9283.04145903059,1,1,1_0,1_1_0,1_2_0,1_0_1 -365,2,64.0,0.0,6,111,800.0,,,0,86,0.0,0.0,,954.0,264.9303586452895,,71,0,0,0,0,0,0,0,0,0,,1,,4,120784,2,1,0,0,1,,600.0,,21,2.0,0.0,4.0,3.0,2.0,5,5,78.23654355234346,800.0,25044.53233621193,0,5,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03809214670862948,12522.266168105965,2,1,2_0,2_1_0,2_2_0,2_0_0 -366,2,75.0,0.0,5,111,580.0,,,0,86,0.0,0.0,,601.0,36.12686708799403,,20,0,0,0,0,0,0,0,0,0,,1,,3,127431,1,1,0,0,1,,240.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,87.52851394772053,580.0,22755.534666401378,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026411157057424736,22755.534666401378,6,3,6,6_1,6_2,6_0_0 -367,2,61.0,0.0,7,111,660.0,,,85,72,0.0,0.0,,912.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,5,117167,1,1,0,0,2,,900.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,76.65057716911467,660.0,5172.438939896493,6,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17631914278687458,3448.292626597662,1,1,1_0,1_1_0,1_2_0,1_0_0 -368,2,75.0,0.0,2,221,300.0,,,0,78,0.0,0.0,,321.0,36.12686708799403,,71,0,0,0,0,0,0,0,0,0,,1,,2,125681,1,3,0,0,2,,510.0,,11,0.0,2.0,3.0,1.0,1.0,3,2,110.48692587542146,300.0,6416.299686656137,0,5,0,1,72.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050028835259608884,6416.299686656137,1,1,1_0,1_1_0,1_1_0,1_0_1 -369,2,28.0,0.0,7,221,0.0,,,0,43,0.0,0.0,,1769.0,0.0,,20,0,0,0,0,0,0,0,0,1,2.0,1,,5,108942,2,3,0,0,2,,218.0,600.0,12,1.0,0.0,4.0,1.0,1.0,1,1,123.88436186743107,0.0,14407.525604300643,0,1,3,4,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12278305439706828,14407.525604300643,3,2,3_0,3_1_0,3_1_0,3_0_0 -370,2,43.0,0.0,9,221,600.0,,,0,54,0.0,0.0,,688.0,151.38877636873687,,20,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,111271,2,1,0,0,2,,600.0,,22,2.0,1.0,4.0,2.0,1.5,1,1,118.78702872288379,600.0,19846.17008142369,0,1,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03466663830740714,13230.78005428246,2,1,2_0,2_1_0,2_1_0,2_0_0 -371,2,81.0,0.0,5,221,450.0,,,0,78,0.0,0.0,,708.0,443.84436708106944,,10,0,0,0,0,0,0,0,0,0,,1,,3,106077,2,2,0,0,2,,1092.0,,11,0.0,11.0,4.0,1.0,1.0,3,3,105.92597110094013,450.0,12212.933333333334,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0579713309387862,12212.933333333334,2,1,2_0,2_1_0,2_1_0,2_0_0 -372,2,32.0,0.0,5,221,684.0,,,0,46,0.0,0.0,,813.0,221.92218354053472,,20,0,0,0,0,0,0,0,0,0,,1,,3,108147,2,2,0,0,2,,600.0,,22,1.0,0.0,4.0,2.0,1.5,1,1,87.52851394772053,684.0,23922.339724454083,0,2,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03398497008923123,15948.226482969389,3,2,3_0,3_1_0,3_1_0,3_0_0 -373,2,69.0,0.0,9,221,607.0,,,78,38,0.0,0.0,,607.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114313,2,2,0,0,2,,283.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,103.50608253634329,607.0,86059.90386819227,6,1,1,2,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00705322656332117,57373.26924546151,10,5,10,10_1,10_1,10_0_0 -374,2,63.0,0.0,6,221,650.0,,,43,43,0.0,0.0,,848.0,340.62474682965797,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,118375,2,2,0,0,2,,240.0,,43,2.0,2.0,7.0,2.0,1.5,5,5,99.81480168937483,650.0,107969.0,1,1,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007854106271244525,71979.33333333333,10,5,10,10_1,10_1,10_0_0 -376,2,64.0,0.0,6,221,563.0,,,0,86,0.0,0.0,,1199.0,1094.1279746649618,,71,0,0,0,0,0,0,0,0,0,,1,,4,103139,2,3,0,0,2,,1716.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,129.52885222203167,563.0,9345.77579397037,0,5,0,1,40.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12829325530937313,9345.77579397037,1,1,1_0,1_1_0,1_1_0,1_0_0 -377,2,71.0,0.0,5,221,0.0,,,78,86,0.0,0.0,,264.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,3,122218,2,3,0,0,2,,180.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,102.14502293311382,0.0,2490.778594156848,5,5,0,1,25.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10599095424190702,1660.519062771232,1,1,1_0,1_1_0,1_1_0,1_0_0 -378,2,45.0,0.0,7,221,0.0,,,0,56,0.0,0.0,,215.0,0.0,,10,0,0,0,0,0,0,0,0,3,15.0,1,,5,133511,2,3,0,0,2,,509.0,,32,2.0,1.0,7.0,3.0,1.8,2,2,79.48466493293883,0.0,20457.026109660575,0,1,0,1,140.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01050983651521415,11365.014505366986,2,1,2_0,2_1_0,2_1_0,2_0_0 -379,2,77.0,0.0,8,221,780.0,,,0,75,0.0,0.0,,834.0,92.89765822627035,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,131999,2,1,0,0,2,,420.0,,11,0.0,4.0,3.0,1.0,1.0,4,4,127.602955023384,780.0,23316.29927487454,0,5,0,1,160.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0357689696022521,23316.29927487454,6,3,6,6_1,6_1,6_0_0 -380,2,59.0,0.0,2,221,600.0,,,0,77,0.0,0.0,,732.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,2,133136,2,2,0,0,2,,480.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,93.29432893382456,600.0,5265.276621986995,0,6,0,1,64.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13902403473794314,5265.276621986995,1,1,1_0,1_1_0,1_1_0,1_0_1 -381,2,77.0,0.0,2,221,660.0,,,78,78,0.0,0.0,,910.0,430.0817510475479,,41,0,0,0,0,0,0,0,0,0,,1,,2,126353,2,2,0,0,2,,360.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,102.27255104610352,660.0,5431.52865738019,5,5,0,1,32.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1675403109147773,3621.019104920127,1,1,1_0,1_1_0,1_1_0,1_0_1 -382,2,52.0,0.0,7,221,260.0,,,52,53,0.0,0.0,,524.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,125170,1,3,0,0,2,,558.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,99.62722522205016,260.0,73013.23259723486,1,1,0,1,66.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007176781267726595,34768.20599868327,9,5,9,9_1,9_1,9_0_0 -383,2,66.0,0.0,6,221,1080.0,,,56,78,0.0,0.0,,1344.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,0,,1,,4,116653,2,1,0,0,2,,450.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,87.52851394772053,1080.0,15648.422586406547,4,5,0,1,107.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0858872511001527,10432.281724271032,2,1,2_0,2_1_0,2_1_0,2_0_0 -384,2,75.0,0.0,8,221,720.0,,,75,78,0.0,0.0,,892.0,295.89624472071296,,10,0,0,0,0,0,0,0,0,0,,1,2001.0,6,109290,2,2,0,0,2,,1800.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,87.52851394772053,720.0,68336.99999999999,5,5,0,1,180.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01305295813395379,45557.99999999999,10,5,10,10_1,10_1,10_0_0 -385,2,52.0,0.0,7,221,750.0,,,0,52,0.0,0.0,,816.0,113.54158227655265,,43,0,0,0,0,0,0,0,0,2,5.0,1,,5,105359,1,2,0,0,2,,450.0,,12,1.0,4.0,5.0,1.0,1.0,2,2,103.87135175714154,750.0,25392.80749906936,0,1,0,1,67.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032135083922087235,25392.80749906936,7,4,7,7_1,7_1,7_0_0 -386,2,45.0,0.0,7,221,900.0,,,0,68,0.0,0.0,,1072.0,295.89624472071296,,70,0,0,0,0,0,0,0,0,0,,1,,5,111050,2,3,0,0,2,,900.0,,32,1.0,4.0,4.0,2.0,1.5,2,2,93.29432893382456,900.0,9044.10083608275,0,1,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11853030162192582,6029.400557388501,1,1,1_0,1_1_0,1_1_0,1_0_0 -387,2,55.0,0.0,7,221,1590.0,,,21,52,0.0,0.0,,1766.0,302.77755273747374,,20,0,0,0,0,0,0,0,0,2,4.0,1,,5,119701,2,1,0,0,2,,960.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,93.56813266306177,1590.0,62330.0,1,1,0,1,86.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028333065939355046,31165.0,8,4,8,8_1,8_1,8_0_0 -388,2,21.0,0.0,7,221,540.0,,,0,52,0.0,0.0,,712.0,295.89624472071296,,71,0,0,0,0,0,0,0,0,0,,1,,5,114960,2,2,0,0,2,,402.0,,22,2.0,6.0,4.0,3.0,2.0,7,7,107.2917832769285,540.0,24860.49735876847,0,1,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028639813183338133,12430.248679384234,2,1,2_0,2_1_0,2_1_0,2_0_0 -389,1,23.0,357.0,7,221,0.0,,,0,52,0.0,0.0,,282.0,0.0,,42,0,0,0,0,0,0,0,0,2,15.0,2,,5,123037,1,1,0,0,2,,312.0,447.0,32,1.0,0.0,3.0,2.0,1.3,2,2,97.66213593050543,0.0,15664.552211651751,0,1,2,3,66.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018002429701772144,12049.655547424423,2,1,2_1,2_0_1,2_1_1,2_0_0 -390,1,47.0,65.0,6,221,600.0,,,0,54,0.0,0.0,,720.0,206.439240502823,,71,0,0,0,0,0,0,0,0,2,45.0,2,,4,132213,2,2,0,0,2,,500.0,456.0,32,2.0,1.0,4.0,2.0,1.5,4,4,75.63191212923263,600.0,22847.060701984534,0,1,2,3,89.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03151390060155351,15231.373801323023,3,2,3_1,3_0_1,3_1_1,3_0_0 -391,1,68.0,121.0,7,221,385.0,,,0,78,0.0,0.0,,429.0,75.69438818436844,,10,0,0,0,0,0,0,0,0,0,,2,,5,132420,2,1,0,0,2,,300.0,440.0,11,0.0,1.0,3.0,1.0,1.0,2,2,98.22597638526716,385.0,17437.121885774766,0,5,2,3,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024602684021494334,17437.121885774766,4,2,4_1,4_0_1,4_1_1,4_0_0 -392,1,55.0,253.0,7,221,900.0,,,0,77,0.0,0.0,,1010.0,189.2359704609211,,42,0,0,0,0,0,0,0,0,0,,2,,5,106317,2,1,0,0,2,,990.0,407.0,21,0.0,6.0,4.0,2.0,1.5,1,1,91.80605677142148,900.0,9380.790050785325,0,6,2,3,81.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10766683771112077,6253.860033856883,1,1,1_1,1_0_1,1_1_1,1_0_0 -393,1,44.0,225.0,7,221,330.0,,,0,56,0.0,0.0,,506.0,302.77755273747374,,10,0,0,0,0,0,0,0,0,0,,1,,5,108249,2,2,0,0,2,,900.0,,32,1.0,2.0,4.0,2.0,1.5,2,2,103.26996530544565,330.0,8286.387494394758,0,4,1,2,62.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.061064004108217065,5524.258329596505,1,1,1_1,1_1_1,1_1_1,1_0_0 -394,2,80.0,0.0,2,221,420.0,,,0,78,0.0,0.0,,550.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,1,,2,120679,2,2,0,0,2,,300.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,93.6579950591848,420.0,6083.35096669516,0,5,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09041069683651556,6083.35096669516,1,1,1_0,1_1_0,1_1_0,1_0_1 -395,2,76.0,0.0,7,221,0.0,,,0,77,0.0,0.0,,340.0,111.82125527236246,,10,0,0,0,0,0,0,0,0,0,,1,,5,111348,2,3,0,0,2,,540.0,,11,0.0,5.0,3.0,1.0,1.0,4,3,109.91647591844047,0.0,10959.0,0,5,0,1,44.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03102472853362533,10959.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -396,2,67.0,0.0,9,221,576.0,,,77,78,0.0,0.0,,834.0,443.84436708106944,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,112510,2,2,0,0,2,,570.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,92.4344950097329,576.0,45720.0,5,5,0,1,100.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018241469816272966,30480.0,8,4,8,8_1,8_1,8_0_0 -398,2,71.0,0.0,2,111,960.0,,,77,78,0.0,0.0,,1212.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,2,114166,1,2,0,0,2,,720.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,102.73562832070859,960.0,9376.631363069595,5,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12925750763472818,6251.08757537973,1,1,1_0,1_1_0,1_2_0,1_0_1 -399,2,71.0,0.0,1,111,965.0,,,78,75,0.0,0.0,,1322.0,614.1567404958985,,31,0,0,0,0,0,0,0,0,0,,1,,1,117355,2,2,0,0,1,,541.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,84.40595565518949,965.0,35541.50203422095,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03719595189666208,23694.33468948063,6,3,6,6_1,6_2,6_1_0 -400,0,73.0,0.0,6,111,620.0,,,0,75,0.0,0.0,,686.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,1,,4,103062,1,1,0,0,2,,300.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,90.31390173949526,620.0,24165.991433524257,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02838700004868606,24165.991433524257,6,3,6,6_1,6_2,6_0_0 -401,0,48.0,0.0,2,111,300.0,,,0,63,0.0,0.0,,468.0,289.01493670395223,,30,0,0,0,0,0,0,0,0,0,,1,,2,114031,1,2,0,0,2,,400.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,87.52851394772053,300.0,7872.607817054656,0,4,0,1,56.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05944662948739275,7872.607817054656,1,1,1_0,1_1_0,1_2_0,1_0_1 -402,2,39.0,0.0,6,111,696.0,,,0,63,0.0,0.0,,960.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,4,110364,1,2,0,0,2,,420.0,,22,3.0,0.0,5.0,5.0,2.8,1,1,79.48466493293883,696.0,24777.184227087982,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03874532276151329,8848.994366817136,1,1,1_0,1_1_0,1_2_0,1_0_0 -403,2,45.0,0.0,6,111,0.0,,,0,45,0.0,0.0,,737.0,0.0,,42,0,0,0,0,0,0,0,0,2,30.0,2,,4,115040,1,1,0,0,2,,383.0,600.0,32,1.0,0.0,4.0,3.0,1.6,1,1,96.87182311096421,0.0,34894.74691785571,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02112065755154899,21809.216823659815,6,3,6,6_0,6_2,6_0_0 -404,0,49.0,0.0,7,111,800.0,,,81,54,0.0,0.0,,1030.0,395.67521096374406,,10,0,0,0,0,0,0,0,0,2,6.0,1,,5,109066,1,1,0,0,2,,350.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,91.44049022899823,800.0,17190.04809770244,4,1,5,0,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05991838964881465,8595.02404885122,1,1,1_0,1_1_0,1_2_0,1_0_0 -406,2,44.0,0.0,8,111,900.0,,,0,56,0.0,0.0,,1152.0,433.5224050559283,,41,0,0,0,0,0,0,0,0,2,6.0,1,2000.0,6,126887,1,3,0,0,2,,3000.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,83.72706791316253,900.0,15633.19593033821,0,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07368934702368804,8685.108850187895,1,1,1_0,1_1_0,1_2_0,1_0_0 -407,2,76.0,0.0,8,111,300.0,,,86,78,0.0,0.0,,552.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,124154,1,2,0,0,2,,800.0,,41,0.0,0.0,2.0,2.0,1.5,1,1,147.8253677453463,300.0,17269.99052692445,5,5,0,1,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03196295904965408,11513.327017949632,2,1,2_0,2_1_0,2_2_0,2_0_0 -408,2,52.0,0.0,7,111,300.0,,,0,55,0.0,0.0,,342.0,72.25373417598806,,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,132827,1,2,0,0,2,,356.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,100.74289125111984,300.0,15365.647232642805,0,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02225744186508816,11819.728640494464,2,1,2_0,2_1_0,2_2_0,2_0_0 -410,2,44.0,0.0,7,111,900.0,,,56,52,0.0,0.0,,1001.0,173.75302742320937,,20,0,0,0,0,0,0,0,0,2,7.0,1,,5,114949,2,1,0,0,2,,200.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,2,2,90.4967013005385,900.0,40365.07810417466,1,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024798663771109463,13918.992449715402,3,2,3_0,3_1_0,3_2_0,3_0_0 -411,2,80.0,0.0,2,111,1000.0,,,86,78,0.0,0.0,,2200.0,2064.39240502823,,50,0,0,0,0,0,0,0,0,0,,1,,2,105628,2,2,0,0,2,,450.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,85.42435011149784,1000.0,23184.0,6,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09489302967563837,15456.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -412,0,53.0,0.0,2,111,400.0,,,0,63,0.0,0.0,,526.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,0,,1,,2,126705,1,1,0,0,2,,396.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,127.0164137464683,400.0,12591.34499166817,0,4,5,0,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041774727032581505,12591.34499166817,2,1,2_0,2_1_0,2_2_0,2_0_1 -413,2,81.0,0.0,2,111,400.0,,,86,86,0.0,0.0,,652.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,2,125476,2,1,0,0,2,,420.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,87.52851394772053,400.0,18002.105936805823,5,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036217984845148994,12001.403957870549,2,1,2_0,2_1_0,2_2_0,2_0_1 -414,2,69.0,0.0,1,111,273.0,,,0,77,0.0,0.0,,525.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,1,101771,1,1,0,0,2,,120.0,,21,1.0,0.0,5.0,2.0,1.5,1,1,105.92597110094013,273.0,4989.390935374124,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1052232640817578,3326.2606235827493,1,1,1_0,1_1_0,1_2_0,1_1_0 -415,2,85.0,0.0,2,111,400.0,,,0,86,0.0,0.0,,532.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,0,,1,,2,121351,1,1,0,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,90.31390173949526,400.0,10866.390889421018,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04895829769182415,10866.390889421018,2,1,2_0,2_1_0,2_2_0,2_0_1 -416,2,62.0,0.0,7,111,490.0,,,0,86,0.0,0.0,,742.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,5,107556,1,1,0,0,2,,414.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,105.92597110094013,490.0,44545.95748908815,0,7,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016656954790606044,44545.95748908815,10,5,10,10_1,10_2,10_0_0 -418,2,72.0,0.0,5,111,800.0,,,0,71,0.0,0.0,,1030.0,395.67521096374406,,41,0,0,0,0,0,0,0,0,0,,1,,3,118118,2,1,0,0,2,,600.0,,21,1.0,13.0,4.0,2.0,1.5,2,2,86.8474831527283,800.0,14440.302325581397,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07132814651500241,9626.868217054265,1,1,1_0,1_1_0,1_2_0,1_0_0 -419,2,49.0,0.0,5,111,900.0,,,71,52,0.0,0.0,,1130.0,395.67521096374406,,60,0,0,0,0,0,0,0,0,0,,1,,3,124020,2,1,0,0,2,,600.0,,42,2.0,1.0,3.0,3.0,2.0,1,1,99.98924133978386,900.0,33828.43010515462,7,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0334038557653261,16914.21505257731,4,2,4_0,4_1_0,4_2_0,4_0_0 -420,1,36.0,300.0,5,111,420.0,,,0,54,0.0,0.0,,558.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,3,108967,2,3,0,0,2,,0.0,400.0,32,1.0,0.0,2.0,3.0,1.6,1,1,122.09279450368044,420.0,13984.356930810598,0,4,2,3,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03990172753461433,8740.223081756623,1,1,1_1,1_1_1,1_2_1,1_0_0 -421,2,88.0,0.0,2,111,710.0,,,0,86,0.0,0.0,,840.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,1,,2,116306,2,1,0,0,2,,0.0,,11,0.0,6.0,3.0,1.0,1.0,2,2,109.31682336394431,710.0,9494.81483714439,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08846933978257905,9494.81483714439,1,1,1_0,1_1_0,1_2_0,1_0_1 -422,2,91.0,0.0,1,111,750.0,,,77,74,0.0,0.0,,890.0,240.84578058662683,,20,0,0,0,0,0,0,0,0,0,,1,,1,126973,2,1,0,0,2,,600.0,,41,0.0,4.0,5.0,2.0,1.5,5,5,98.5552339083418,750.0,35002.556361163544,5,5,0,1,102.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02542671428957353,23335.03757410903,6,3,6,6_1,6_2,6_1_0 -423,2,76.0,0.0,7,111,1200.0,,,0,86,0.0,0.0,,1320.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,5,115350,2,1,0,0,2,,2400.0,457.0,11,0.0,0.0,3.0,1.0,1.0,2,2,125.38220350278671,1200.0,19009.10647790696,0,5,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06944040223743023,19009.10647790696,5,3,5,5_1,5_2,5_0_0 -424,0,26.0,0.0,9,111,0.0,,,0,53,0.0,0.0,,399.0,0.0,,31,0,0,0,0,0,0,0,0,2,3.0,1,2006.0,6,113286,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,3,107.9418204288335,0.0,24171.342656837995,0,1,5,0,33.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016507150871369745,24171.342656837995,7,4,7,7_1,7_2,7_0_0 -425,0,49.0,0.0,9,111,2760.0,,,85,53,0.0,0.0,,2852.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,118766,2,1,0,0,2,,75.0,,42,1.0,1.0,4.0,3.0,2.0,2,2,79.05754063393327,2760.0,63033.29587677528,5,1,5,0,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04524592852601928,31516.64793838764,8,4,8,8_1,8_2,8_0_0 -426,0,51.0,0.0,9,111,350.0,,,46,53,0.0,0.0,,420.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,125155,2,1,0,0,2,,200.0,,43,2.0,1.0,5.0,3.0,2.0,4,3,89.41251563124493,350.0,66439.6644348064,4,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00632152500427095,33219.8322174032,8,4,8,8_1,8_2,8_0_0 -427,0,38.0,0.0,9,111,1200.0,,,85,53,0.0,0.0,,1270.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,118607,2,1,0,0,2,,300.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,1,1,111.43404454692346,1200.0,73103.94541207247,6,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01737252336848937,27075.53533780462,7,4,7,7_1,7_2,7_0_0 -428,1,47.0,450.0,2,111,700.0,,,0,85,0.0,0.0,,976.0,474.81025315649293,,33,0,0,0,0,0,0,0,0,0,,1,,2,107628,2,1,0,0,2,,600.0,500.0,31,0.0,1.0,4.0,6.0,3.0999999999999996,1,1,83.16734173391669,700.0,32180.333701337964,0,6,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.030329082633453883,10380.752806883216,2,1,2_1,2_1_1,2_2_1,2_0_1 -429,2,43.0,0.0,8,111,480.0,,,55,42,0.0,0.0,,572.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,124083,2,1,0,0,2,,360.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,104.17218421074864,480.0,62106.03586627289,1,1,1,2,96.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009210054900809223,41404.02391084859,9,5,9,9_1,9_2,9_0_0 -430,0,54.0,0.0,2,111,240.0,,,0,78,0.0,0.0,,332.0,158.27008438549763,,44,0,0,0,0,0,0,0,0,0,,1,,2,117482,2,1,0,0,2,,360.0,,11,0.0,2.0,3.0,1.0,1.0,3,2,109.31682336394431,240.0,7032.0,0,7,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047212741751990896,7032.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -431,2,44.0,0.0,7,111,800.0,,,0,21,0.0,0.0,,960.0,275.25232067043066,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,118115,2,1,0,0,2,,600.0,,32,1.0,0.0,7.0,3.0,1.6,1,1,83.74876530448387,800.0,29917.90308607386,0,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03208781034011903,18698.689428796162,5,3,5,5_1,5_2,5_0_0 -432,2,58.0,0.0,6,111,720.0,,,75,42,0.0,0.0,,895.0,301.05722573328353,,71,0,0,0,0,0,0,0,0,0,,1,,4,120021,2,1,0,0,2,,720.0,,42,1.0,1.0,5.0,4.0,2.5,6,5,98.5552339083418,720.0,76565.84969464576,5,1,0,1,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01168928449915168,30626.339877858303,8,4,8,8_1,8_2,8_0_0 -433,2,49.0,0.0,2,111,1500.0,,,0,63,0.0,0.0,,1684.0,316.54016877099525,,71,0,0,0,0,0,0,0,0,0,,1,,2,104875,2,1,0,0,2,,1680.0,,22,4.0,0.0,7.0,7.0,3.6,1,1,84.0427201047741,1500.0,9413.458790874007,0,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17889279991670803,2614.8496641316683,1,1,1_0,1_1_0,1_2_0,1_0_1 -434,2,87.0,0.0,2,111,720.0,,,86,77,0.0,0.0,,996.0,474.81025315649293,,60,0,0,0,0,0,0,0,0,0,,1,,2,104482,2,1,0,0,2,,720.0,,41,0.0,7.0,4.0,3.0,2.0,1,1,72.29206346397196,720.0,43044.06081962787,6,5,0,1,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023139080770600277,21522.030409813935,6,3,6,6_1,6_2,6_0_1 -435,2,73.0,0.0,5,111,270.0,,,0,72,0.0,0.0,,316.0,79.13504219274881,,31,0,0,0,0,0,0,0,0,0,,1,,3,128422,2,1,0,0,2,,800.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,90.78286028685605,270.0,4058.0578512396696,0,5,0,1,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07786976223206557,4058.0578512396696,1,1,1_0,1_1_0,1_2_0,1_0_0 -436,2,82.0,0.0,5,111,700.0,,,0,77,0.0,0.0,,861.0,276.9726476746209,,70,0,0,0,0,0,0,0,0,0,,1,,3,107020,2,1,0,0,2,,700.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,93.26696311012148,700.0,25079.34976437691,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03433103362284844,25079.34976437691,7,4,7,7_1,7_2,7_0_0 -437,2,54.0,0.0,7,111,1400.0,,,43,43,0.0,0.0,,1400.0,0.0,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,120513,2,2,0,0,2,,480.0,,43,2.0,2.0,3.0,3.0,1.8,1,1,82.9644614661048,1400.0,98566.50279666494,1,1,1,2,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014203608328156795,54759.16822036941,10,5,10,10_1,10_2,10_0_0 -438,2,40.0,0.0,2,111,800.0,,,48,48,0.0,0.0,,920.0,206.439240502823,,43,0,0,0,0,0,0,0,0,0,,1,,2,100061,2,1,0,0,2,,300.0,,43,2.0,0.0,3.0,4.0,2.3,1,1,88.644901669831,800.0,42232.1727239502,4,4,1,2,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021784339773697238,18361.814227804436,4,2,4_0,4_1_0,4_2_0,4_0_1 -439,2,74.0,0.0,2,111,1000.0,,,75,74,0.0,0.0,,1150.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,2,127500,2,1,0,0,2,,1000.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,87.17934639004365,1000.0,68191.65470635203,5,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01686423368009103,45461.10313756802,10,5,10,10_1,10_2,10_0_1 -440,2,54.0,0.0,2,111,1200.0,,,52,63,0.0,0.0,,1476.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,130118,1,1,0,0,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,86.27832232575926,1200.0,66061.66055238096,1,1,0,1,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022342762619926345,31457.933596371884,8,4,8,8_1,8_2,8_0_1 -441,1,61.0,150.0,7,111,0.0,,,0,86,0.0,0.0,,40.0,68.81308016760767,,70,0,0,0,0,0,0,0,0,0,,1,,5,114299,2,1,0,0,2,,0.0,350.0,11,0.0,0.0,2.0,1.0,1.0,1,1,126.94305403635535,0.0,9414.759550852257,0,7,2,3,30.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.004248648070505323,9414.759550852257,1,1,1_1,1_1_1,1_2_1,1_0_0 -442,2,56.0,0.0,7,111,650.0,,,68,38,0.0,0.0,,720.0,120.42289029331342,,60,0,0,0,0,0,0,0,0,2,60.0,1,,5,106089,2,1,0,0,2,,150.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,88.82211197968888,650.0,61916.64560579806,4,1,0,1,198.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011628536929858761,41277.76373719871,9,5,9,9_1,9_2,9_0_0 -443,2,70.0,0.0,2,111,900.0,,,77,78,0.0,0.0,,1080.0,309.6588607542345,,10,0,0,0,0,0,0,0,0,0,,1,,2,120209,2,1,0,0,2,,900.0,,41,0.0,6.0,4.0,2.0,1.5,1,1,85.24123833721185,900.0,26880.52748136794,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0401777829973238,17920.351654245293,4,2,4_0,4_1_0,4_2_0,4_0_1 -444,2,72.0,0.0,2,111,720.0,,,77,78,0.0,0.0,,990.0,464.48829113135173,,70,0,0,0,0,0,0,0,0,0,,1,,2,101599,2,1,0,0,2,,600.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,72.29206346397196,720.0,28927.79906126232,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034223135949728194,19285.19937417488,5,3,5,5_1,5_2,5_0_1 -445,2,64.0,0.0,8,111,700.0,,,0,77,0.0,0.0,,746.0,79.13504219274881,,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,121046,2,1,0,0,2,,600.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,95.41206974780145,700.0,21983.603777474218,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03393438162147002,21983.603777474218,6,3,6,6_1,6_2,6_0_0 -446,2,71.0,0.0,2,111,200.0,,,0,78,0.0,0.0,,330.0,223.64251054472493,,41,0,0,0,0,0,0,0,0,0,,1,,2,111168,2,1,0,0,2,,400.0,325.0,11,0.0,0.0,2.0,1.0,1.0,1,1,130.3778751735262,200.0,14658.0,0,5,2,3,30.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02251330331559558,14658.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -447,2,50.0,0.0,2,111,600.0,,,0,52,0.0,0.0,,880.0,481.69156117325366,,20,0,0,0,0,0,0,0,0,3,30.0,1,,2,117598,2,1,0,0,2,,480.0,623.0,32,3.0,4.0,4.0,4.0,2.5,3,3,102.11969215086057,600.0,26766.68232227141,0,1,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03287669309945782,10706.672928908563,2,1,2_0,2_1_0,2_2_0,2_0_1 -448,2,48.0,0.0,2,111,480.0,,,0,46,0.0,0.0,,550.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,102063,2,1,0,0,2,,180.0,562.0,32,1.0,1.0,4.0,2.0,1.3,1,1,79.05754063393327,480.0,53298.496904803906,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010319240352731737,40998.84377292608,9,5,9,9_1,9_2,9_0_1 -449,2,57.0,0.0,6,111,700.0,,,77,52,0.0,0.0,,820.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,4,110423,2,1,0,0,2,,600.0,,42,1.0,3.0,4.0,2.0,1.5,3,3,87.00541358612068,700.0,59911.0,5,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013686969004022633,39940.666666666664,9,5,9,9_1,9_2,9_0_0 -450,2,53.0,0.0,7,111,780.0,,,0,52,0.0,0.0,,860.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,104769,2,1,0,0,2,,900.0,877.0,32,1.0,2.0,4.0,2.0,1.5,1,1,85.12465466363705,780.0,29744.316868917176,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028913086280986346,19829.544579278117,5,3,5,5_1,5_2,5_0_0 -451,1,49.0,300.0,1,111,600.0,,,85,68,0.0,0.0,,830.0,395.67521096374406,,70,0,0,0,0,0,0,0,0,0,,1,,1,128715,2,1,0,0,2,,600.0,450.0,42,1.0,0.0,4.0,7.0,3.1999999999999993,1,1,71.15944889044628,600.0,27929.97321980047,6,1,2,3,82.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.029717178511706768,8728.11663118765,1,1,1_1,1_1_1,1_2_1,1_1_0 -452,1,55.0,179.0,7,111,540.0,,,0,55,0.0,0.0,,678.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,101945,2,1,0,0,2,,200.0,492.0,12,1.0,1.0,3.0,1.0,1.0,2,2,85.12465466363705,540.0,18410.210188560726,0,1,2,3,61.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.036827390510798114,18410.210188560726,4,2,4_1,4_1_1,4_2_1,4_0_0 -453,2,64.0,0.0,2,111,2160.0,,,71,77,0.0,0.0,,2436.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,2,128323,2,1,0,0,2,,800.0,516.0,41,0.0,4.0,4.0,2.0,1.5,2,2,69.59979898362016,2160.0,22484.485364051612,5,5,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10834137230886759,14989.65690936774,3,2,3_0,3_1_0,3_2_0,3_0_1 -454,2,60.0,0.0,5,111,540.0,,,0,52,0.0,0.0,,714.0,299.3368987290934,,20,0,0,0,0,0,0,0,0,2,10.0,1,,3,121475,2,1,0,0,2,,200.0,488.0,12,1.0,2.0,3.0,1.0,1.0,1,1,93.66414177236153,540.0,38992.0,0,1,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018311448502256873,38992.0,9,5,9,9_1,9_2,9_0_0 -455,2,32.0,0.0,2,111,460.0,,,54,54,0.0,0.0,,598.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,102610,2,1,0,0,2,,600.0,527.0,43,2.0,0.0,3.0,3.0,1.8,2,2,83.38341084281848,460.0,34163.16572426494,1,1,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017504232623713232,18979.53651348052,5,3,5,5_1,5_2,5_0_1 -456,2,82.0,0.0,1,111,480.0,,,0,77,0.0,0.0,,618.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,1,133299,2,1,0,0,2,,600.0,,21,4.0,0.0,7.0,6.0,3.5,2,2,72.14766715744457,480.0,31405.574842828337,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019678034969677502,8973.021383665238,1,1,1_0,1_1_0,1_2_0,1_1_0 -457,2,64.0,0.0,5,111,700.0,,,75,75,0.0,0.0,,828.0,220.20185653634454,,71,0,0,0,0,0,0,0,0,0,,1,,3,118366,2,1,0,0,2,,700.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,98.5552339083418,700.0,61757.542419748585,5,5,0,1,105.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013407269259069892,41171.694946499054,9,5,9,9_1,9_2,9_0_0 -458,0,38.0,0.0,2,111,1000.0,,,85,21,0.0,0.0,,1000.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,102417,2,1,0,0,2,,300.0,,42,1.0,1.0,4.0,4.0,2.1,2,2,88.82211197968888,1000.0,35291.75947098933,6,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028335226551173338,16805.599748090157,4,2,4_0,4_1_0,4_2_0,4_0_1 -459,2,74.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,876.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,2,129348,2,1,0,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,90.78286028685605,600.0,8060.528618523346,0,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10867773584810861,8060.528618523346,1,1,1_0,1_1_0,1_2_0,1_0_1 -460,2,60.0,0.0,2,111,650.0,,,77,74,0.0,0.0,,870.0,378.4719409218422,,41,0,0,0,0,0,0,0,0,0,,1,,2,101825,2,1,0,0,2,,230.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,87.17934639004365,650.0,99267.16616912505,5,5,0,1,108.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008764227222098289,66178.1107794167,10,5,10,10_1,10_2,10_0_1 -461,2,69.0,0.0,2,111,360.0,,,0,75,0.0,0.0,,430.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,0,,1,,2,100731,2,1,0,0,2,,160.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,93.26696311012148,360.0,35210.08719948557,0,5,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012212409403129294,35210.08719948557,9,5,9,9_1,9_2,9_0_1 -462,2,50.0,0.0,5,111,0.0,,,0,42,0.0,0.0,,333.0,0.0,,60,0,0,0,0,0,0,0,0,2,20.0,1,,3,111855,2,1,0,0,2,,0.0,330.0,12,1.0,2.0,1.0,1.0,1.0,2,2,94.07951242283501,0.0,29321.0,0,1,2,3,41.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011357047849664063,29321.0,8,4,8,8_1,8_2,8_0_0 -463,2,59.0,0.0,5,111,540.0,,,75,54,0.0,0.0,,792.0,433.5224050559283,,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,105537,2,2,0,0,2,,288.0,,42,3.0,2.0,7.0,4.0,2.5,2,2,68.79625788139943,540.0,25159.0,5,1,0,1,180.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031479788544854725,10063.6,2,1,2_0,2_1_0,2_2_0,2_0_0 -464,2,83.0,0.0,2,111,432.0,,,0,78,0.0,0.0,,600.0,289.01493670395223,,12,0,0,0,0,0,0,0,0,0,,1,,2,106760,2,1,0,0,2,,114.0,,11,0.0,7.0,6.0,1.0,1.0,2,2,94.9455381875873,432.0,26184.12802081708,0,5,0,1,116.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022914645067538014,26184.12802081708,7,4,7,7_1,7_2,7_0_1 -465,2,23.0,0.0,6,111,420.0,,,0,54,0.0,0.0,,504.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,4,101226,2,1,0,0,2,,189.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,84.75096443705554,420.0,13819.209737227446,0,1,0,1,59.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03647097117588996,9212.806491484964,1,1,1_0,1_1_0,1_2_0,1_0_0 -466,1,41.0,413.0,7,111,310.0,,,0,54,0.0,0.0,,373.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,2,,5,101391,2,1,0,0,1,,410.0,465.0,32,1.0,0.0,3.0,3.0,1.6,5,5,102.26958486943803,310.0,10977.170874711319,0,4,2,3,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033979611345879616,6860.731796694574,1,1,1_1,1_0_1,1_2_1,1_0_0 -467,1,30.0,358.0,1,111,160.0,,,0,56,0.0,0.0,,204.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,0,,2,,1,127510,1,2,0,0,2,,1500.0,393.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.65907285243293,160.0,9765.201170336764,0,4,2,3,62.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.020890506651279242,7511.693207951357,1,1,1_1,1_0_1,1_2_1,1_1_0 -468,2,58.0,0.0,7,111,780.0,,,0,31,0.0,0.0,,780.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,124805,2,1,0,0,2,,292.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,101.01588343057323,780.0,98227.47559599708,0,1,0,1,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00794075176285795,98227.47559599708,10,5,10,10_1,10_2,10_0_0 -469,1,28.0,399.0,1,111,396.0,,,0,54,0.0,0.0,,459.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,102534,1,2,0,0,2,,800.0,401.0,32,1.0,0.0,4.0,4.0,2.1,2,2,83.45024918367706,396.0,23401.24211389191,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.019614343450919614,11143.448625662813,2,1,2_1,2_0_1,2_2_1,2_1_0 -470,1,58.0,208.0,1,111,400.0,,,0,68,0.0,0.0,,670.0,464.48829113135173,,41,0,0,0,0,0,0,0,0,1,30.0,2,,1,125742,2,1,0,0,2,,1189.0,357.0,22,2.0,3.0,3.0,2.0,1.5,2,2,91.68647569011421,400.0,4870.545928014164,0,1,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.13756158137146954,3247.0306186761095,1,1,1_1,1_0_1,1_2_1,1_1_0 -471,1,40.0,246.0,1,111,300.0,,,68,68,0.0,0.0,,476.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,101900,2,2,0,0,2,,600.0,425.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,1,1,83.74335148035617,300.0,38009.0,1,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.012523349732957984,13106.551724137933,2,1,2_1,2_0_1,2_2_1,2_1_0 -472,1,46.0,286.0,7,111,500.0,,,0,52,0.0,0.0,,752.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,1,30.0,2,,5,114394,2,1,0,0,2,,330.0,513.0,32,1.0,1.0,4.0,3.0,1.8,2,2,71.09851596996029,500.0,30989.58106140229,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024266220266417882,17216.43392300127,4,2,4_1,4_0_1,4_2_1,4_0_0 -473,2,77.0,0.0,6,111,444.0,,,0,77,0.0,0.0,,570.0,216.76120252796414,,43,0,0,0,0,0,0,0,0,0,,1,,4,100117,2,2,0,0,2,,263.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,106.95737441660037,444.0,14774.324665203394,0,5,0,1,86.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03858044363560444,14774.324665203394,3,2,3_0,3_1_0,3_2_0,3_0_0 -474,1,44.0,413.0,7,111,498.0,,,63,68,0.0,0.0,,750.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,121123,1,3,0,0,2,,0.0,478.0,43,2.0,1.0,6.0,4.0,2.1,2,2,79.45025342464037,498.0,22838.758792655193,4,4,2,3,89.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03283891242991697,10875.5994250739,2,1,2_1,2_0_1,2_2_1,2_0_0 -475,2,91.0,0.0,2,111,420.0,,,0,86,0.0,0.0,,552.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,2,129439,1,3,0,0,2,,400.0,,11,0.0,9.0,4.0,1.0,1.0,2,2,83.9492775382804,420.0,14412.354651162792,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03830047298728279,14412.354651162792,3,2,3_0,3_1_0,3_2_0,3_0_1 -476,2,45.0,0.0,2,111,0.0,,,0,22,0.0,0.0,,332.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,104152,2,2,0,0,2,,662.0,290.0,32,1.0,1.0,3.0,2.0,1.3,4,3,99.47447942496754,0.0,2991.850974852512,0,4,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11096809392933298,2301.4238268096246,1,1,1_0,1_1_0,1_2_0,1_0_1 -479,2,30.0,0.0,2,111,180.0,,,0,35,0.0,0.0,,180.0,0.0,,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,109550,2,3,0,0,1,,300.0,350.0,12,1.0,0.0,1.0,1.0,1.0,2,2,115.76920968149622,180.0,30139.270763143548,0,1,2,3,25.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005972274558816362,30139.270763143548,8,4,8,8_0,8_2,8_0_1 -480,1,51.0,253.0,1,111,420.0,,,0,68,0.0,0.0,,552.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,3,10.0,2,,1,121374,1,2,0,0,2,,240.0,533.0,22,2.0,2.0,3.0,2.0,1.5,1,1,152.39426354192264,420.0,8586.642905460081,0,1,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06428589217900209,5724.4286036400545,1,1,1_1,1_0_1,1_2_1,1_1_0 -481,1,44.0,467.0,1,111,752.0,,,0,85,0.0,0.0,,1102.0,602.1144514665671,,71,0,0,0,0,0,0,0,0,0,,2,,1,119244,1,3,0,0,2,,428.0,700.0,31,1.0,0.0,4.0,5.0,2.8,1,1,96.79372471396125,752.0,7710.887143050892,0,6,2,3,40.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.14291481376343712,2753.8882653753185,1,1,1_1,1_0_1,1_2_1,1_1_0 -482,2,77.0,0.0,2,111,318.0,,,0,78,0.0,0.0,,582.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,2,115101,1,2,0,0,2,,900.0,,21,3.0,9.0,4.0,4.0,2.5,2,1,73.70124828659587,318.0,20801.727002503354,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02797844620929599,8320.690801001341,1,1,1_0,1_1_0,1_2_0,1_0_1 -483,1,56.0,123.0,1,111,594.0,,,81,69,0.0,0.0,,1034.0,756.9438818436844,,50,0,0,0,0,0,0,0,0,0,,1,,1,127624,1,2,0,0,2,,450.0,290.0,43,2.0,1.0,4.0,4.0,2.3,2,2,83.0668897463397,594.0,15048.548355390387,4,1,2,3,85.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06871094643687817,6542.847111039299,1,1,1_1,1_1_1,1_2_1,1_1_0 -484,0,52.0,0.0,1,111,220.0,,,0,85,0.0,0.0,,264.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,0,,1,,1,109353,1,3,0,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,80.95183756499117,220.0,10598.0,0,7,0,1,75.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02491036044536705,10598.0,2,1,2_0,2_1_0,2_2_0,2_1_0 -485,1,59.0,140.0,6,111,640.0,,,21,56,0.0,0.0,,905.0,455.8866561104008,,12,0,0,0,0,0,0,0,0,0,,1,,4,122715,2,2,0,0,2,,461.0,240.0,43,3.0,2.0,3.0,3.0,2.0,2,2,103.10511374946314,640.0,32924.0,4,4,2,3,58.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027487547078119304,16462.0,4,2,4_1,4_1_1,4_2_1,4_0_0 -486,2,87.0,0.0,5,111,330.0,,,0,78,0.0,0.0,,506.0,302.77755273747374,,12,0,0,0,0,0,0,0,0,0,,1,,3,102141,2,1,0,0,1,,248.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,83.9492775382804,330.0,10328.73170731707,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048989557899111656,10328.73170731707,2,1,2_0,2_1_0,2_2_0,2_0_0 -487,1,53.0,247.0,2,111,599.0,,,0,77,0.0,0.0,,731.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,2,123792,1,2,0,0,2,,367.0,445.0,31,1.0,1.0,3.0,2.0,1.5,1,1,117.12994619432978,599.0,9383.352690569802,0,7,2,3,39.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07790392454656953,6255.568460379868,1,1,1_1,1_1_1,1_2_1,1_0_1 -488,2,58.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,66.0,113.54158227655265,,33,0,0,0,0,0,0,0,0,1,10.0,1,,3,104067,2,3,0,0,2,,300.0,,12,1.0,2.0,2.0,1.0,1.0,3,3,99.6259813014227,0.0,26258.0,0,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0025135196892375655,26258.0,7,4,7,7_1,7_2,7_0_0 -489,2,66.0,0.0,6,111,240.0,,,85,86,0.0,0.0,,366.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,4,127659,2,2,0,0,2,,400.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,78.45723682630921,240.0,28666.816176011394,6,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012767375272956594,19111.210784007595,5,3,5,5_1,5_2,5_0_0 -490,2,55.0,0.0,6,111,546.0,,,56,62,0.0,0.0,,798.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,4,132570,2,1,0,0,2,,324.0,,43,3.0,4.0,4.0,3.0,2.0,1,1,95.10484542231671,546.0,33656.209771855785,4,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023710334746823117,16828.104885927893,4,2,4_0,4_1_0,4_2_0,4_0_0 -491,2,55.0,0.0,7,111,720.0,,,0,52,0.0,0.0,,846.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,115128,2,1,0,0,2,,640.0,455.0,32,2.0,2.0,4.0,2.0,1.5,1,1,95.3693353641592,720.0,27157.046807228522,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03115213542935074,18104.69787148568,4,2,4_0,4_1_0,4_2_0,4_0_0 -492,1,35.0,400.0,8,111,390.0,,,56,21,0.0,0.0,,516.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,1,5.0,8,2000.0,6,118009,2,1,0,0,2,,280.0,621.0,43,2.0,0.0,3.0,4.0,2.1,1,1,85.35162107175336,390.0,16184.763979186697,1,1,2,3,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03188183656329906,7707.030466279379,1,1,1_1,1_0_1,1_2_1,1_0_0 -493,2,34.0,0.0,7,111,570.0,,,45,43,0.0,0.0,,696.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,2,10.0,8,,5,115258,2,1,0,0,2,,480.0,997.0,43,2.0,0.0,4.0,4.0,2.1,2,2,105.07036293453162,570.0,61735.60624070621,1,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011273882972596176,29397.907733669625,8,4,8,8_0,8_2,8_0_0 -494,2,54.0,0.0,7,111,1200.0,,,54,31,0.0,0.0,,1200.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,5,127968,2,1,0,0,2,,1200.0,,43,2.0,2.0,3.0,4.0,2.1,1,1,108.81004295602109,1200.0,85306.54853335522,4,1,1,2,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014066915384940171,40622.16596826439,9,5,9,9_0,9_2,9_0_0 -495,2,60.0,0.0,8,111,180.0,,,0,42,0.0,0.0,,180.0,0.0,,44,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,126030,2,1,0,0,2,,180.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,109.31369114413742,180.0,64901.209667308096,0,1,1,2,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0027734459946540755,64901.209667308096,10,5,10,10_0,10_2,10_0_0 -496,2,48.0,0.0,7,111,600.0,,,0,52,0.0,0.0,,726.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,2,10.0,8,,5,106277,2,1,0,0,2,,400.0,440.0,22,2.0,0.0,3.0,2.0,1.5,1,1,85.35162107175336,600.0,30975.751849816967,0,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02343768776041153,20650.50123321131,5,3,5,5_0,5_2,5_0_0 -497,1,34.0,235.0,7,111,643.0,,,0,56,0.0,0.0,,781.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,2,10.0,2,,5,115153,2,2,0,0,2,,246.0,380.0,32,1.0,0.0,3.0,2.0,1.5,2,2,85.34939104260977,643.0,17968.901039084412,0,1,2,3,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04346398248291511,11979.267359389609,2,1,2_1,2_0_1,2_2_1,2_0_0 -499,1,58.0,358.0,7,111,500.0,,,0,43,0.0,0.0,,626.0,216.76120252796414,,43,0,0,0,0,0,0,0,0,0,,2,,5,133021,2,1,0,0,2,,287.0,353.0,32,1.0,4.0,3.0,2.0,1.5,2,2,83.45024918367706,500.0,9372.1727722632,0,4,2,3,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06679347630601062,6248.115181508801,1,1,1_1,1_0_1,1_2_1,1_0_0 -500,1,43.0,358.0,7,111,300.0,,,0,56,0.0,0.0,,552.0,433.5224050559283,,41,0,0,0,0,0,0,0,0,0,,2,,5,114459,1,2,0,0,2,,210.0,424.0,32,1.0,0.0,3.0,2.0,1.3,1,1,85.34939104260977,300.0,9372.0,0,4,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.058898847631242,7209.230769230769,1,1,1_1,1_0_1,1_2_1,1_0_0 -501,1,49.0,358.0,7,111,210.0,,,0,52,0.0,0.0,,336.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,2,,5,116703,2,2,0,0,2,,219.0,424.0,32,1.0,0.0,3.0,2.0,1.3,2,2,85.34939104260977,210.0,9382.41904408957,0,4,2,3,46.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035811659916390355,7217.245418530439,1,1,1_1,1_0_1,1_2_1,1_0_0 -502,1,54.0,253.0,7,111,150.0,,,0,42,0.0,0.0,,213.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,1,20.0,2,,5,132465,2,3,0,0,2,,430.0,314.0,12,1.0,0.0,2.0,1.0,1.0,1,1,97.16045445652243,150.0,11256.411410866745,0,1,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018922549312152315,11256.411410866745,2,1,2_1,2_0_1,2_2_1,2_0_0 -503,1,35.0,358.0,7,111,330.0,,,0,43,0.0,0.0,,582.0,433.5224050559283,,41,0,0,0,0,0,0,0,0,0,,2,,5,103347,2,2,0,0,2,,240.0,400.0,32,1.0,0.0,3.0,2.0,1.3,2,2,97.56711820941106,330.0,22505.946521511083,0,1,2,3,71.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02585983217563087,17312.266555008526,4,2,4_1,4_0_1,4_2_1,4_0_0 -504,2,57.0,0.0,7,111,300.0,,,0,45,0.0,0.0,,370.0,120.42289029331342,,20,0,0,0,0,0,0,0,0,1,25.0,2,,5,107499,2,2,0,0,2,,292.0,424.0,22,1.0,2.0,3.0,3.0,1.6,2,2,91.68647569011421,300.0,42390.72362680887,0,1,2,3,77.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008728324698047936,26494.20226675554,7,4,7,7_0,7_2,7_0_0 -505,1,41.0,413.0,7,111,922.0,,,0,54,0.0,0.0,,1048.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,0,,2,,5,131721,2,2,0,0,2,,1151.0,491.0,32,1.0,2.0,4.0,3.0,1.6,1,1,71.09851596996029,922.0,12714.265829276574,0,4,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08242709520724485,7946.416143297858,1,1,1_1,1_0_1,1_2_1,1_0_0 -506,2,72.0,0.0,2,111,589.0,,,56,78,0.0,0.0,,673.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,0,,1,,2,109819,2,1,0,0,2,,168.0,,42,1.0,5.0,4.0,2.0,1.5,1,1,131.2513888908937,589.0,17106.494621701542,4,5,0,1,58.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03934178304105755,11404.329747801028,2,1,2_0,2_1_0,2_2_0,2_0_1 -507,2,46.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,282.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,2,,5,119046,2,1,0,0,2,,232.0,470.0,32,1.0,0.0,3.0,2.0,1.3,2,2,98.09803310045908,0.0,30671.20575248258,0,1,2,3,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009194291293134912,23593.235194217366,6,3,6,6_0,6_2,6_0_0 -508,1,91.0,242.0,2,111,573.0,,,0,78,0.0,0.0,,837.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,2,,2,103701,2,1,0,0,2,,0.0,500.0,21,2.0,2.0,4.0,4.0,2.3,3,3,85.42963231776488,573.0,25724.0,0,5,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03253770797698647,11184.347826086958,2,1,2_1,2_0_1,2_2_1,2_0_1 -510,2,51.0,0.0,7,111,462.0,,,0,43,0.0,0.0,,546.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,2,5.0,2,,5,105576,1,2,0,0,2,,285.0,388.0,12,1.0,0.0,2.0,1.0,1.0,2,2,101.78827055014075,462.0,22762.41631110631,0,1,2,3,51.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023986908618905893,22762.41631110631,6,3,6,6_0,6_2,6_0_0 -511,2,78.0,0.0,2,111,250.0,,,0,75,0.0,0.0,,315.0,111.82125527236246,,10,0,0,0,0,0,0,0,0,0,,2,,2,122172,2,1,0,0,2,,220.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,104.58942142434007,250.0,41416.72077063965,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007605623867336783,41416.72077063965,9,5,9,9_0,9_2,9_0_1 -512,2,64.0,0.0,1,111,540.0,,,0,77,0.0,0.0,,792.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,1,117631,1,2,0,0,2,,789.0,,31,1.0,2.0,4.0,4.0,2.3,1,1,72.20591099166415,540.0,9410.279395625137,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0841632821622919,4091.4258241848424,1,1,1_0,1_1_0,1_2_0,1_1_0 -513,2,71.0,0.0,2,111,390.0,,,78,77,0.0,0.0,,432.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,0,,2,,2,112122,2,2,0,0,2,,0.0,409.0,41,0.0,2.0,4.0,2.0,1.5,1,1,85.34939104260977,390.0,22677.96909457801,5,5,2,3,55.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019049324840260288,15118.646063052007,3,2,3_0,3_0_0,3_2_0,3_0_1 -514,2,51.0,0.0,1,111,93.0,,,0,34,0.0,0.0,,162.0,118.70256328912323,,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,128007,2,1,0,0,1,,148.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,106.11299744861847,93.0,67761.45944835227,0,1,1,2,70.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0023907395342255915,67761.45944835227,10,5,10,10_1,10_2,10_1_0 -515,2,51.0,0.0,1,111,560.0,,,0,46,0.0,0.0,,824.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,123422,2,1,0,0,1,,273.0,,32,1.0,0.0,5.0,3.0,1.8,1,1,87.41450453798029,560.0,38093.6744050871,0,1,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02163088788016631,21163.15244727061,5,3,5,5_1,5_2,5_1_0 -516,2,69.0,0.0,1,111,568.0,,,77,77,0.0,0.0,,890.0,553.9452953492417,,20,0,0,0,0,0,0,0,0,0,,1,,1,102446,1,2,0,0,2,,389.0,,41,2.0,0.0,4.0,5.0,2.8,2,2,73.70124828659587,568.0,38076.577635372894,6,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02337394942693578,13598.777726918892,3,2,3_0,3_1_0,3_2_0,3_1_0 -517,2,79.0,0.0,5,111,429.0,,,0,78,0.0,0.0,,781.0,605.5551054749475,,30,0,0,0,0,0,0,0,0,0,,2,,3,127167,2,3,0,0,2,,0.0,654.0,21,1.0,6.0,4.0,2.0,1.5,1,1,77.8069365493319,429.0,28747.472008821103,0,5,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027167606242397654,19164.981339214068,5,3,5,5_0,5_2,5_0_0 -518,1,79.0,133.0,1,111,330.0,,,0,78,0.0,0.0,,396.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,0,,1,,1,110870,2,2,0,0,2,,408.0,600.0,11,0.0,1.0,4.0,1.0,1.0,3,3,131.2513888908937,330.0,12483.349380069289,0,5,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03172225561773086,12483.349380069289,2,1,2_1,2_1_1,2_2_1,2_1_0 -519,2,80.0,0.0,5,111,510.0,,,78,78,0.0,0.0,,699.0,325.14180379194624,,50,0,0,0,0,0,0,0,0,0,,1,,3,129930,2,2,0,0,1,,398.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,88.73682266988199,510.0,38630.383679976425,5,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018094565298410897,25753.589119984284,7,4,7,7_1,7_2,7_0_0 -520,0,53.0,0.0,7,111,600.0,,,68,45,0.0,0.0,,724.0,213.32054851958378,,43,0,0,0,0,0,0,0,0,2,5.0,1,,5,101349,2,1,0,0,2,,400.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,132.501585328731,600.0,37745.74264610681,4,1,5,0,35.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01918097113065214,25163.828430737874,7,4,7,7_1,7_2,7_0_0 -521,2,56.0,0.0,2,111,424.0,,,0,52,0.0,0.0,,676.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,1,30.0,1,,2,104870,2,2,0,0,2,,600.0,487.0,12,1.0,2.0,3.0,1.0,1.0,3,3,91.26542804704101,424.0,27349.33103447672,0,1,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024717240767162845,27349.33103447672,7,4,7,7_1,7_2,7_0_1 -522,2,51.0,0.0,2,111,402.0,,,90,85,0.0,0.0,,902.0,860.1635020950959,,41,0,0,0,0,0,0,0,0,0,,1,,2,103222,2,3,0,0,1,,469.0,220.0,42,1.0,1.0,2.0,3.0,2.0,1,1,122.01348976354116,402.0,11880.866666666667,4,7,2,3,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07592038740159247,5940.433333333333,1,1,1_0,1_1_0,1_2_0,1_0_1 -523,0,65.0,0.0,2,111,1298.0,,,77,52,0.0,0.0,,1598.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,,2,130917,2,2,0,0,2,,289.0,,42,1.0,0.0,5.0,2.0,1.5,2,1,94.61165707248314,1298.0,41313.045632963906,5,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03868027581885532,27542.03042197594,7,4,7,7_1,7_2,7_0_1 -524,2,65.0,0.0,7,111,120.0,,,0,78,0.0,0.0,,160.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,1,,5,131080,1,2,0,0,2,,124.0,200.0,11,0.0,0.0,3.0,1.0,1.0,1,1,116.10474548549792,120.0,5119.638415715187,0,5,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031252207091201155,5119.638415715187,1,1,1_0,1_1_0,1_2_0,1_0_0 -525,0,83.0,0.0,2,111,100.0,,,0,86,0.0,0.0,,145.0,77.41471518855863,,71,0,0,0,0,0,0,0,0,0,,1,,2,131492,2,3,0,0,2,,100.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,141.49669188095834,100.0,5821.898148622095,0,5,5,0,30.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024905966456029133,5821.898148622095,1,1,1_0,1_1_0,1_2_0,1_0_1 -526,2,75.0,0.0,7,111,400.0,,,77,78,0.0,0.0,,400.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,5,126990,1,1,0,0,1,,270.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,95.79074177487038,400.0,35366.0,5,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011310298026352994,23577.333333333332,6,3,6,6_1,6_2,6_0_0 -527,2,51.0,0.0,9,111,180.0,,,0,67,0.0,0.0,,230.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,1,5.0,1,2005.0,6,105706,1,1,0,0,2,,150.0,350.0,12,1.0,0.0,2.0,1.0,1.0,2,2,141.49669188095834,180.0,6344.803784768226,0,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03625013598563188,6344.803784768226,1,1,1_0,1_1_0,1_2_0,1_0_0 -528,0,42.0,0.0,7,111,738.0,,,0,81,0.0,0.0,,874.0,233.96447256986607,,71,0,0,0,0,0,0,0,0,0,,1,,5,116342,2,1,0,0,2,,738.0,,32,1.0,0.0,5.0,3.0,1.8,2,2,100.60712046370837,738.0,6565.223589161691,0,4,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13312570213798317,3647.3464384231615,1,1,1_0,1_1_0,1_2_0,1_0_0 -529,1,49.0,100.0,2,111,876.0,,,0,56,0.0,0.0,,1002.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,3,15.0,1,,2,115378,1,3,0,0,2,,264.0,304.0,22,2.0,0.0,4.0,2.0,1.5,1,1,93.40224846839058,876.0,33937.82091896533,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.029524582688809482,22625.213945976884,6,3,6,6_1,6_2,6_0_1 -530,2,50.0,0.0,9,111,360.0,,,0,85,0.0,0.0,,486.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,0,,2,2005.0,6,107345,2,1,0,0,2,,460.0,,31,0.0,0.0,4.0,2.0,1.5,2,1,73.7031739703013,360.0,11320.335895867967,0,6,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.042931588291244493,7546.890597245311,1,1,1_0,1_0_0,1_2_0,1_0_0 -532,2,40.0,0.0,9,111,380.0,,,0,21,0.0,0.0,,422.0,72.25373417598806,,43,0,0,0,0,0,0,0,0,0,,1,2005.0,6,118866,2,1,0,0,2,,160.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,85.31531054022021,380.0,25727.42207314889,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016402731637867114,25727.42207314889,7,4,7,7_1,7_2,7_0_0 -533,2,42.0,0.0,5,111,720.0,,,46,34,0.0,0.0,,783.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,108563,1,2,0,0,2,,300.0,500.0,43,2.0,0.0,3.0,3.0,1.8,2,2,103.54895120710252,720.0,47001.114308076976,1,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016659179500887796,26111.730171153875,7,4,7,7_1,7_2,7_0_0 -534,2,78.0,0.0,2,111,1700.0,,,77,78,0.0,0.0,,1700.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,122180,1,1,0,0,1,,480.0,,41,0.0,0.0,5.0,4.0,2.5,2,2,86.95832326123185,1700.0,21674.0,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07843499123373628,8669.6,1,1,1_0,1_1_0,1_2_0,1_0_1 -535,2,33.0,0.0,7,111,200.0,,,38,38,0.0,0.0,,242.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,108920,1,1,0,0,2,,90.0,900.0,43,2.0,0.0,5.0,2.0,1.5,1,1,132.04627090970678,200.0,90393.2874718156,1,1,2,3,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0026771899415147945,60262.191647877065,10,5,10,10_1,10_2,10_0_0 -536,1,44.0,413.0,8,111,0.0,,,56,62,0.0,0.0,,472.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,116439,1,1,0,0,2,,526.0,750.0,43,2.0,0.0,5.0,4.0,2.1,2,2,115.16329718425975,0.0,15721.706453724853,4,4,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03002218629315342,7486.526882726121,1,1,1_1,1_1_1,1_2_1,1_0_0 -537,2,56.0,0.0,5,111,480.0,,,0,22,0.0,0.0,,543.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,1,2.0,1,,3,108965,1,1,0,0,1,,135.0,507.0,32,1.0,0.0,3.0,2.0,1.3,2,2,105.8923535366746,480.0,16417.084791070145,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033075299720408194,12628.52676236165,2,1,2_0,2_1_0,2_2_0,2_0_0 -538,2,71.0,0.0,2,111,260.0,,,0,75,0.0,0.0,,316.0,96.33831223465073,,42,0,0,0,0,0,0,0,0,0,,1,,2,132374,1,1,0,0,2,,134.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,83.9514709849261,260.0,9401.478653224873,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033611734032029786,9401.478653224873,1,1,1_0,1_1_0,1_2_0,1_0_1 -539,1,46.0,124.0,2,111,580.0,,,85,42,0.0,0.0,,664.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,0,,1,,2,122286,1,2,0,0,2,,0.0,750.0,42,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,84.77173336295814,580.0,35745.16463134206,6,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.018575939063315765,13748.14024282387,3,2,3_1,3_1_1,3_2_1,3_0_1 -540,2,53.0,0.0,2,111,1110.0,,,0,22,0.0,0.0,,1362.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,2,106797,1,1,0,0,1,,260.0,,32,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,120.50088187147271,1110.0,19928.87589925484,0,4,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06834304186975877,7664.95226894417,1,1,1_0,1_1_0,1_2_0,1_0_1 -541,2,60.0,0.0,9,111,540.0,,,65,45,0.0,0.0,,783.0,418.03946201821657,,71,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,116162,1,2,0,0,1,,630.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,82.62210755885155,540.0,62902.61167020056,1,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012447813838084848,34945.895372333645,9,5,9,9_1,9_2,9_0_0 -542,0,52.0,0.0,2,111,200.0,,,0,52,0.0,0.0,,332.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,1,,2,113475,1,1,0,0,1,,450.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,103.54895120710252,200.0,5321.290173797726,0,4,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06239088438266025,5321.290173797726,1,1,1_0,1_1_0,1_2_0,1_0_1 -543,1,87.0,253.0,7,111,120.0,,,0,86,0.0,0.0,,209.0,153.10910337292705,,50,0,0,0,0,0,0,0,0,0,,2,,5,124508,1,1,0,0,2,,120.0,402.0,11,0.0,0.0,2.0,1.0,1.0,1,1,114.44154940977204,120.0,10057.20688,0,5,2,3,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020781117709293855,10057.20688,2,1,2_1,2_0_1,2_2_1,2_0_0 -544,0,62.0,0.0,5,111,1350.0,,,52,21,0.0,0.0,,2150.0,1376.2616033521533,,41,0,0,0,0,0,0,0,0,2,30.0,1,,3,122851,1,1,0,0,2,,800.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,73.97665163971278,1350.0,35112.52537973272,1,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061231710813970684,17556.26268986636,4,2,4_0,4_1_0,4_2_0,4_0_0 -545,1,63.0,253.0,9,111,162.0,,,0,86,0.0,0.0,,294.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,2,2006.0,6,126686,1,1,0,0,2,,225.0,309.0,11,0.0,0.0,3.0,1.0,1.0,1,1,91.3201874764336,162.0,4851.981640828003,0,5,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06059379893898942,4851.981640828003,1,1,1_1,1_0_1,1_2_1,1_0_0 -546,1,44.0,467.0,9,111,700.0,,,85,63,0.0,0.0,,700.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,130032,2,1,0,0,2,,700.0,619.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,3,70.2479314292964,700.0,18945.24376439133,6,1,2,3,102.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03694858766165311,7286.632217073589,1,1,1_1,1_0_1,1_2_1,1_0_0 -548,2,73.0,0.0,2,111,280.0,,,86,75,0.0,0.0,,368.0,151.38877636873687,,41,0,0,0,0,0,0,0,0,0,,1,,2,103634,2,1,0,0,2,,240.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,81.02718146150312,280.0,26694.307817385547,6,5,0,1,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01378571051616959,17796.205211590364,4,2,4_0,4_1_0,4_2_0,4_0_1 -549,2,31.0,0.0,6,111,840.0,,,0,63,0.0,0.0,,1008.0,289.01493670395223,,60,0,0,0,0,0,0,0,0,0,,1,,4,125204,2,1,0,0,2,,480.0,,22,1.0,2.0,3.0,2.0,1.5,3,2,84.75317883036678,840.0,30462.023889670556,0,1,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03309038177012937,20308.01592644704,5,3,5,5_1,5_2,5_0_0 -550,2,53.0,0.0,8,111,200.0,,,81,56,0.0,0.0,,327.0,218.48152953215435,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,109424,2,1,0,0,2,,216.0,,43,4.0,3.0,3.0,4.0,2.5,1,1,81.66972340070275,200.0,12476.983603002725,4,4,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026208257572872325,4990.79344120109,1,1,1_0,1_1_0,1_2_0,1_0_0 -551,2,55.0,0.0,6,111,200.0,,,90,52,0.0,0.0,,305.0,180.63433543997013,,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,104988,2,1,0,0,2,,300.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,102.60140362551735,200.0,31133.35751017449,7,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009796566268200432,20755.57167344966,5,3,5,5_1,5_2,5_0_0 -552,2,40.0,0.0,6,111,1200.0,,,0,34,0.0,0.0,,1326.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,0,,1,,4,129642,2,1,0,0,2,,320.0,,32,1.0,3.0,7.0,4.0,2.3,2,2,124.68371092099382,1200.0,81909.68909263816,0,1,0,1,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01618856101993406,35612.90830114703,9,5,9,9_1,9_2,9_0_0 -553,2,57.0,0.0,9,111,480.0,,,0,42,0.0,0.0,,580.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,100840,2,1,0,0,2,,160.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,76.55273684534522,480.0,57975.51802675241,0,1,1,2,144.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010004222812331973,28987.759013376206,8,4,8,8_1,8_2,8_0_0 -554,2,41.0,0.0,9,111,540.0,,,0,34,0.0,0.0,,624.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,124086,2,3,0,0,2,,260.0,,32,1.0,0.0,4.0,4.0,2.1,1,1,94.06881434151757,540.0,50905.6631307677,0,1,1,2,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01225796820281181,24240.791967032237,7,4,7,7_1,7_2,7_0_0 -555,2,70.0,0.0,7,111,720.0,,,0,75,0.0,0.0,,804.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,,5,126783,2,1,0,0,2,,520.0,,11,0.0,3.0,3.0,1.0,1.0,2,1,98.52495596346157,720.0,36623.93499687018,0,5,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02195285678801878,36623.93499687018,9,5,9,9_1,9_2,9_0_0 -556,0,68.0,0.0,2,111,640.0,,,42,72,0.0,0.0,,766.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,,2,119464,2,1,0,0,2,,660.0,,42,1.0,2.0,3.0,4.0,2.3,1,1,91.90446101579518,640.0,11138.69966565313,4,7,5,0,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06876924802650065,4842.912898110057,1,1,1_0,1_1_0,1_2_0,1_0_1 -557,2,60.0,0.0,8,111,1500.0,,,86,86,0.0,0.0,,1592.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,103940,2,1,0,0,2,,200.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,106.9601690242614,1500.0,52558.07174468855,5,5,1,2,204.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030290304555567825,35038.71449645903,9,5,9,9_1,9_2,9_0_0 -558,2,51.0,0.0,7,111,480.0,,,0,52,0.0,0.0,,564.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,108069,2,1,0,0,2,,300.0,,12,1.0,1.0,5.0,1.0,1.0,3,2,84.5019418281039,480.0,37145.0979509909,0,1,1,2,102.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015183699360387727,37145.0979509909,9,5,9,9_1,9_2,9_0_0 -559,2,72.0,0.0,7,111,1680.0,,,0,75,0.0,0.0,,1764.0,144.50746835197612,,70,0,0,0,0,0,0,0,0,0,,1,,5,108552,2,1,0,0,2,,860.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,78.13667882810432,1680.0,60904.359778275764,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028963443773514695,60904.359778275764,10,5,10,10_1,10_2,10_0_0 -560,2,66.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,684.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,0,,1,,2,108614,2,1,0,0,2,,600.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,104.82415980880772,600.0,37122.0,0,5,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0184257313722321,37122.0,9,5,9,9_1,9_2,9_0_1 -561,2,58.0,0.0,8,111,360.0,,,0,45,0.0,0.0,,560.0,344.06540083803833,,60,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,119983,2,1,0,0,2,,280.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,99.6259813014227,360.0,52866.96291017964,0,1,0,1,105.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01059262664570752,52866.96291017964,10,5,10,10_1,10_2,10_0_0 -562,2,47.0,0.0,9,111,480.0,,,42,67,0.0,0.0,,606.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,123241,2,1,0,0,2,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,117.6279686936611,480.0,46254.778924183614,1,1,1,2,117.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013101348965331711,22026.085201992195,6,3,6,6_1,6_2,6_0_0 -563,2,48.0,0.0,8,111,540.0,,,52,55,0.0,0.0,,666.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,3,20.0,1,2002.0,6,123368,2,1,0,0,2,,438.0,,43,3.0,1.0,3.0,5.0,2.5999999999999996,4,3,113.82435351254354,540.0,43195.69871628982,1,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015418201806950752,16613.730275496087,4,2,4_0,4_1_0,4_2_0,4_0_0 -564,2,29.0,0.0,7,111,432.0,,,52,43,0.0,0.0,,532.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,126609,2,1,0,0,1,,175.0,820.0,43,2.0,1.0,4.0,2.0,1.5,1,1,90.07888187353525,432.0,60050.41810594792,1,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008859222246569272,40033.61207063195,9,5,9,9_1,9_2,9_0_0 -565,2,58.0,0.0,2,111,684.0,,,77,68,0.0,0.0,,810.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,0,,1,,2,129354,2,2,0,0,2,,500.0,,42,1.0,3.0,3.0,2.0,1.5,1,1,99.1832226606231,684.0,35619.93861513203,5,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022740072877494983,23746.62574342135,6,3,6,6_1,6_2,6_0_1 -566,2,63.0,0.0,5,111,420.0,,,0,77,0.0,0.0,,525.0,180.63433543997013,,50,0,0,0,0,0,0,0,0,0,,1,,3,110243,2,2,0,0,2,,560.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,101.27108788269733,420.0,19352.983003418372,0,5,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027127600944374712,19352.983003418372,5,3,5,5_1,5_2,5_0_0 -567,2,45.0,0.0,7,111,1000.0,,,0,56,0.0,0.0,,1126.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,5,122138,2,1,0,0,2,,500.0,,32,4.0,0.0,5.0,6.0,3.3,2,2,72.4610141169146,1000.0,25252.413096610824,0,4,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0445897980399791,7652.246392912371,1,1,1_0,1_1_0,1_2_0,1_0_0 -568,2,32.0,0.0,2,111,0.0,,,0,55,0.0,0.0,,851.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,107666,2,1,0,0,1,,249.0,650.0,12,1.0,2.0,3.0,1.0,1.0,1,1,134.1416788135969,0.0,38921.41311740566,0,1,2,3,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021864570986489508,38921.41311740566,9,5,9,9_1,9_2,9_0_1 -569,2,62.0,0.0,9,111,0.0,,,0,34,0.0,0.0,,421.0,0.0,,60,0,0,0,0,0,0,0,0,3,30.0,1,2008.0,6,127244,2,1,0,0,1,,1660.0,600.0,12,1.0,1.0,3.0,1.0,1.0,1,1,121.96642457519341,0.0,50356.49458045358,0,1,2,3,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008360391316106735,50356.49458045358,10,5,10,10_1,10_2,10_0_0 -570,2,57.0,0.0,6,111,0.0,,,0,33,0.0,0.0,,444.0,0.0,,70,0,0,0,0,0,0,0,0,2,10.0,8,,4,112531,2,1,0,0,2,,186.0,670.0,12,1.0,0.0,3.0,1.0,1.0,5,4,117.18517260285371,0.0,27401.50138654351,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016203491689621142,27401.50138654351,7,4,7,7_0,7_2,7_0_0 -571,2,54.0,0.0,8,111,1800.0,,,52,63,0.0,0.0,,1892.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127910,2,1,0,0,1,,1800.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,93.17524375944159,1800.0,39813.47292507066,4,1,1,2,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04752160163371737,22118.596069483698,6,3,6,6_1,6_2,6_0_0 -572,2,53.0,0.0,7,111,500.0,,,0,43,0.0,0.0,,626.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,,5,101154,2,1,0,0,2,,800.0,,32,1.0,3.0,4.0,3.0,1.8,2,1,71.34224919413032,500.0,14874.31057169067,0,4,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04208598421976115,8263.505873161483,1,1,1_0,1_1_0,1_2_0,1_0_0 -573,2,62.0,0.0,6,111,520.0,,,0,77,0.0,0.0,,570.0,86.01635020950958,,41,0,0,0,0,0,0,0,0,0,,1,,4,101341,1,1,0,0,2,,450.0,,31,1.0,2.0,4.0,3.0,2.0,2,2,87.07904310892435,520.0,35458.34951402315,0,5,0,1,104.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01607519830483297,17729.174757011577,4,2,4_0,4_1_0,4_2_0,4_0_0 -574,0,58.0,0.0,2,111,540.0,,,0,45,0.0,0.0,,624.0,144.50746835197612,,70,0,0,0,0,0,0,0,0,2,30.0,1,,2,105031,2,1,0,0,2,,440.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,79.33400357892992,540.0,39979.46797106175,0,1,5,0,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015608011603647866,26652.9786473745,7,4,7,7_1,7_2,7_0_1 -575,0,71.0,0.0,7,111,600.0,,,86,86,0.0,0.0,,726.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,5,132083,2,1,0,0,2,,550.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,127.3871828671562,600.0,15239.101708302009,5,5,5,0,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047640603356855826,10159.401138868006,2,1,2_0,2_1_0,2_2_0,2_0_0 -576,0,63.0,0.0,5,111,0.0,,,0,78,0.0,0.0,,309.0,111.82125527236246,,50,0,0,0,0,0,0,0,0,0,,1,,3,124112,2,2,0,0,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,101.22090672440463,0.0,5280.430867774738,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058517951988682655,5280.430867774738,1,1,1_0,1_1_0,1_2_0,1_0_0 -577,2,56.0,0.0,1,111,720.0,,,0,54,0.0,0.0,,970.0,430.0817510475479,,71,0,0,0,0,0,0,0,0,3,20.0,1,,1,121679,2,1,0,0,2,,300.0,,12,1.0,3.0,5.0,1.0,1.0,3,3,81.85862047318395,720.0,23210.044280615344,0,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041792251159560624,23210.044280615344,6,3,6,6_1,6_2,6_1_0 -578,2,89.0,0.0,6,111,408.0,,,0,77,0.0,0.0,,496.0,151.38877636873687,,33,0,0,0,0,0,0,0,0,0,,1,,4,103001,2,2,0,0,2,,356.0,,11,0.0,1.0,4.0,1.0,1.0,4,4,101.22090672440463,408.0,15758.75508624741,0,5,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03147456745697234,15758.75508624741,3,2,3_0,3_1_0,3_2_0,3_0_0 -579,0,50.0,0.0,2,111,820.0,,,52,42,0.0,0.0,,946.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,123748,2,1,0,0,2,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,114.37844435455817,820.0,58207.14314220435,1,1,5,0,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016252300816222025,27717.687210573502,7,4,7,7_1,7_2,7_0_1 -580,2,45.0,0.0,9,112,0.0,,,0,42,0.0,0.0,,1391.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,125522,2,1,0,0,2,,676.0,,22,1.0,0.0,3.0,2.0,1.5,1,1,153.25382891408688,0.0,28935.129761778902,0,1,1,2,150.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04807305208070657,19290.0865078526,5,3,5,5_1,5_0,5_0_0 -581,0,46.0,0.0,6,112,720.0,,,53,53,0.0,0.0,,808.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,2,50.0,1,,4,123947,2,1,0,0,2,,480.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,105.68211885948745,720.0,97997.2587819427,1,1,5,0,80.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008245128588728287,46665.361324734615,10,5,10,10_1,10_0,10_0_0 -582,2,43.0,0.0,9,112,1560.0,,,31,34,0.0,0.0,,1692.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,129931,2,1,0,0,2,,550.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,106.74794037753114,1560.0,71697.01148719093,1,1,1,2,95.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023599309997771458,34141.43404151949,9,5,9,9_1,9_0,9_0_0 -583,2,65.0,0.0,8,112,80.0,,,77,77,0.0,0.0,,164.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,129815,2,1,0,0,2,,134.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,92.08831680236045,80.0,26527.387405195106,5,5,0,1,96.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006182289929082211,17684.92493679674,4,2,4_0,4_1_0,4_0_0,4_0_0 -584,0,58.0,0.0,7,112,0.0,,,0,55,0.0,0.0,,1368.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,102250,2,1,0,0,2,,320.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,129.69134263861474,0.0,23108.03914342628,0,1,5,0,60.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059200176679169485,23108.03914342628,6,3,6,6_1,6_0,6_0_0 -585,2,87.0,0.0,1,112,450.0,,,0,77,0.0,0.0,,534.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,,1,120514,2,1,0,0,2,,450.0,,11,0.0,3.0,2.0,1.0,1.0,6,6,104.82415980880772,450.0,12738.142619433891,0,5,0,1,60.0,6,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04192133939412056,12738.142619433891,2,1,2_0,2_1_0,2_0_0,2_1_0 -586,0,62.0,0.0,1,112,120.0,,,0,86,0.0,0.0,,204.0,144.50746835197612,,12,0,0,0,0,0,0,0,0,0,,1,,1,126029,2,2,0,0,2,,300.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,80.95395269381392,120.0,6362.841424189946,0,5,5,0,95.0,6,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03206114790546918,6362.841424189946,1,1,1_0,1_1_0,1_0_0,1_1_0 -587,2,54.0,0.0,8,112,900.0,,,54,65,0.0,0.0,,1026.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,108437,2,1,0,0,2,,400.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,96.08309722744286,900.0,68070.87351668249,1,1,0,1,100.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01507252583953624,27228.349406672998,7,4,7,7_1,7_0,7_0_0 -588,2,73.0,0.0,2,112,300.0,,,0,77,0.0,0.0,,400.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,0,,1,,2,118739,2,1,0,0,2,,600.0,,21,2.0,8.0,4.0,3.0,2.0,2,2,83.97206320237777,300.0,10047.868042413253,0,5,0,1,100.0,6,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03980944000374529,5023.934021206626,1,1,1_0,1_1_0,1_0_0,1_0_1 -589,2,65.0,0.0,2,112,240.0,,,86,78,0.0,0.0,,450.0,361.26867087994026,,71,0,0,0,0,0,0,0,0,0,,1,,2,122366,2,1,0,0,2,,190.0,,41,2.0,1.0,4.0,4.0,2.5,3,3,86.95832326123185,240.0,26538.534905710403,6,5,0,1,75.0,6,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016956474861887408,10615.413962284161,2,1,2_0,2_1_0,2_0_0,2_0_1 -590,0,52.0,0.0,2,112,240.0,,,0,56,0.0,0.0,,306.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,,2,103947,2,1,0,0,2,,160.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,108.23728981132018,240.0,8921.38571414703,0,1,5,0,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03429960432209118,8921.38571414703,1,1,1_0,1_1_0,1_2_0,1_0_1 -591,2,36.0,0.0,2,112,1096.0,,,55,42,0.0,0.0,,1216.0,206.439240502823,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,119805,2,2,0,0,2,,240.0,721.0,43,2.0,0.0,5.0,4.0,2.1,1,1,85.23734910129548,1096.0,49079.51751352743,4,1,2,3,57.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02477611968505686,23371.198815965443,6,3,6,6_1,6_2,6_0_1 -592,2,89.0,0.0,7,112,240.0,,,0,78,0.0,0.0,,460.0,378.4719409218422,,20,0,0,0,0,0,0,0,0,0,,1,,5,131788,2,2,0,0,2,,600.0,,11,0.0,7.0,6.0,1.0,1.0,1,1,77.40319015645989,240.0,13753.93160557666,0,5,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033444982365150686,13753.93160557666,3,2,3_0,3_1_0,3_2_0,3_0_0 -593,0,59.0,0.0,2,112,540.0,,,0,65,0.0,0.0,,660.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,2,102425,2,2,0,0,2,,180.0,,22,2.0,3.0,4.0,2.0,1.5,1,1,107.02736757437734,540.0,22110.518598451577,0,4,5,0,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02985004612448215,14740.345732301052,3,2,3_0,3_1_0,3_2_0,3_0_1 -594,2,62.0,0.0,5,112,240.0,,,77,77,0.0,0.0,,328.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,1,,3,129813,2,2,0,0,2,,600.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,92.75618960366012,240.0,32872.2181601577,6,5,0,1,120.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009978030639792591,21914.812106771802,6,3,6,6_1,6_2,6_0_0 -595,2,58.0,0.0,5,112,1700.0,,,78,63,0.0,0.0,,1850.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,3,105464,2,2,0,0,2,,1200.0,,42,1.0,5.0,8.0,3.0,2.0,3,2,91.40685935103743,1700.0,9377.242934792495,7,4,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19728613334052839,4688.621467396248,1,1,1_0,1_1_0,1_2_0,1_0_0 -596,2,81.0,0.0,2,112,360.0,,,0,78,0.0,0.0,,600.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,,2,108868,2,2,0,0,2,,400.0,,21,1.0,5.0,3.0,3.0,2.0,1,1,90.85057167698892,360.0,9424.127049289762,0,5,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06366637428187243,4712.063524644881,1,1,1_0,1_1_0,1_2_0,1_0_1 -597,0,54.0,0.0,2,112,300.0,,,0,47,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,105216,2,2,0,0,2,,300.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,122.98079060100862,300.0,10581.170731707316,0,4,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02835225020054031,10581.170731707316,2,1,2_0,2_1_0,2_2_0,2_0_1 -598,2,69.0,0.0,2,112,900.0,,,78,77,0.0,0.0,,1032.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,2,124575,2,2,0,0,2,,520.0,,41,0.0,2.0,6.0,2.0,1.5,5,5,85.23734910129548,900.0,38014.046371362274,5,5,0,1,184.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027147859765264373,25342.69758090818,7,4,7,7_1,7_2,7_0_1 -599,2,45.0,0.0,1,112,1300.0,,,46,47,0.0,0.0,,1576.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,1,108329,2,1,0,0,2,,1320.0,,43,3.0,0.0,4.0,5.0,2.8,3,3,79.00697918652779,1300.0,6983.0996141026535,4,4,0,1,136.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22568774428152277,2493.964147893805,1,1,1_0,1_1_0,1_2_0,1_1_0 -600,2,78.0,0.0,1,112,356.0,,,0,72,0.0,0.0,,488.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,0,,1,,1,105901,1,2,0,0,2,,350.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,91.20726406153356,356.0,9397.776764132488,0,5,0,1,84.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05192717514449785,9397.776764132488,1,1,1_0,1_1_0,1_2_0,1_1_0 -601,0,32.0,0.0,7,112,0.0,,,42,55,0.0,0.0,,829.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,128644,1,1,0,0,2,,117.0,,43,2.0,0.0,5.0,3.0,1.8,4,2,89.0463586007787,0.0,24136.177784554562,1,1,5,0,65.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03434678048031702,13408.987658085867,3,2,3_0,3_0_0,3_2_0,3_0_0 -602,2,55.0,0.0,7,112,780.0,,,0,45,0.0,0.0,,780.0,0.0,,33,0,0,0,0,0,0,0,0,2,50.0,1,,5,132911,2,1,0,0,1,,432.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,128.15358334685575,780.0,32668.897525598746,0,1,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02387592049559696,32668.897525598746,8,4,8,8_1,8_2,8_0_0 -603,1,51.0,235.0,8,112,780.0,,,0,67,0.0,0.0,,1056.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,126220,1,1,0,0,2,,1800.0,,32,2.0,1.0,5.0,5.0,2.5999999999999996,6,5,71.98581453192712,780.0,20722.19534515836,0,1,1,2,187.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05095985161855591,7970.075132753217,1,1,1_1,1_1_1,1_2_1,1_0_0 -604,2,53.0,0.0,8,112,600.0,,,55,54,0.0,0.0,,738.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,2,1.0,1,2001.0,6,109965,2,1,0,0,2,,900.0,,43,2.0,4.0,7.0,3.0,2.0,2,2,95.66824418651484,600.0,16962.544680851064,1,1,1,2,122.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043507623053345566,8481.272340425532,1,1,1_0,1_1_0,1_2_0,1_0_0 -605,2,70.0,0.0,7,112,540.0,,,0,77,0.0,0.0,,672.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,5,104042,2,1,0,0,2,,1500.0,,21,0.0,3.0,4.0,4.0,2.3,2,2,79.00697918652779,540.0,23637.341150386237,0,5,0,1,82.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02842959348619544,10277.104847994016,2,1,2_0,2_1_0,2_2_0,2_0_0 -606,2,43.0,0.0,8,112,960.0,,,22,55,0.0,0.0,,1236.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,111709,1,1,0,0,2,,480.0,,43,2.0,2.0,3.0,4.0,2.3,1,1,96.51407748500301,960.0,29948.781979003397,1,1,0,1,88.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04127045970906394,13021.209556088435,2,1,2_0,2_1_0,2_2_0,2_0_0 -607,1,61.0,270.0,7,112,624.0,,,0,75,0.0,0.0,,690.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,0,,2,,5,111572,2,2,0,0,2,,288.0,425.0,11,0.0,4.0,4.0,1.0,1.0,2,2,82.300911089169,624.0,14346.989247311829,0,5,2,3,83.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04809371416579852,14346.989247311829,3,2,3_1,3_0_1,3_2_1,3_0_0 -608,2,80.0,0.0,2,112,540.0,,,0,86,0.0,0.0,,660.0,206.439240502823,,12,0,0,0,0,0,0,0,0,0,,1,,2,106600,1,1,0,0,2,,800.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,109.95152487399963,540.0,12366.317957565923,0,5,0,1,82.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053370777159760865,12366.317957565923,2,1,2_0,2_1_0,2_2_0,2_0_1 -609,2,61.0,0.0,6,112,1200.0,,,78,54,0.0,0.0,,1376.0,302.77755273747374,,41,0,0,0,0,0,0,0,0,0,,1,,4,112058,1,1,0,0,2,,120.0,,42,2.0,1.0,4.0,4.0,2.5,4,4,79.00697918652779,1200.0,93322.4059625931,6,1,0,1,139.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014744583423530135,37328.96238503724,9,5,9,9_1,9_2,9_0_0 -610,2,83.0,0.0,2,112,420.0,,,86,71,0.0,0.0,,680.0,447.28502108944986,,20,0,0,0,0,0,0,0,0,0,,1,,2,100040,2,1,0,0,2,,342.0,,41,0.0,7.0,4.0,2.0,1.5,1,1,96.40689464802085,420.0,9387.72950707444,5,5,0,1,65.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07243498009689808,6258.486338049627,1,1,1_0,1_1_0,1_2_0,1_0_1 -611,2,72.0,0.0,7,112,670.0,,,0,77,0.0,0.0,,713.0,73.97406118017824,,71,0,0,0,0,0,0,0,0,0,,1,,5,130259,1,2,0,0,2,,184.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,124.21205812053016,670.0,18796.277442264,0,5,0,1,75.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0379330429756691,18796.277442264,5,3,5,5_1,5_2,5_0_0 -612,0,60.0,0.0,2,112,462.0,,,0,71,0.0,0.0,,594.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,2,117638,2,3,0,0,2,,180.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,103.14649166847398,462.0,10253.0,0,7,5,0,130.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05793426314249488,10253.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -613,2,90.0,0.0,2,112,720.0,,,0,77,0.0,0.0,,927.0,356.1076898673697,,71,0,0,0,0,0,0,0,0,0,,1,,2,106466,2,2,0,0,2,,600.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,91.20726406153356,720.0,10404.463414634156,0,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0890963774927739,10404.463414634156,2,1,2_0,2_1_0,2_2_0,2_0_1 -614,2,70.0,0.0,2,112,528.0,,,0,86,0.0,0.0,,660.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,2,115737,2,2,0,0,2,,548.0,,11,0.0,4.0,5.0,1.0,1.0,3,3,96.40689464802085,528.0,5133.055164571316,0,7,0,1,71.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.128578396070115,5133.055164571316,1,1,1_0,1_1_0,1_2_0,1_0_1 -615,0,42.0,0.0,2,112,972.0,,,0,56,0.0,0.0,,1248.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,2,116963,2,3,0,0,2,,744.0,,32,1.0,0.0,3.0,3.0,1.8,3,3,129.13310399311817,972.0,11076.106465909295,0,4,5,0,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11267497327162476,6153.39248106072,1,1,1_0,1_1_0,1_2_0,1_0_1 -616,2,58.0,0.0,2,112,336.0,,,85,64,0.0,0.0,,566.0,395.67521096374406,,71,0,0,0,0,0,0,0,0,0,,1,,2,107883,2,2,0,0,2,,360.0,,42,2.0,0.0,3.0,4.0,2.5,2,2,102.69499769844236,336.0,9297.26593403437,6,4,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06087811234139832,3718.906373613748,1,1,1_0,1_1_0,1_2_0,1_0_1 -618,2,41.0,0.0,8,112,323.0,,,56,68,0.0,82.81380038555662,,495.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,1,10.0,1,2001.0,6,117675,1,2,0,0,2,,300.0,,43,2.0,0.0,3.0,2.0,1.5,5,4,98.10233859777526,323.0,7363.184487696549,1,4,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0672263476254216,4908.789658464366,1,1,1_0,1_1_0,1_2_0,1_0_0 -619,2,50.0,0.0,7,112,0.0,,,0,85,0.0,0.0,,250.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,104221,2,2,0,0,2,,100.0,,11,0.0,4.0,4.0,1.0,1.0,5,4,82.42029136667685,0.0,7032.0,0,7,0,1,95.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035551763367463025,7032.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -621,2,51.0,0.0,6,112,0.0,,,85,69,0.0,0.0,,522.0,898.01069618728,,60,0,0,0,0,0,0,0,0,2,7.0,1,,4,101554,2,2,0,0,2,,800.0,,42,3.0,1.0,4.0,4.0,2.5,2,2,107.819998368018,0.0,44106.319036129345,6,1,0,1,136.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01183503886534734,17642.527614451737,4,2,4_0,4_1_0,4_2_0,4_0_0 -622,2,62.0,0.0,5,112,0.0,,,0,77,0.0,0.0,,400.0,688.1308016760767,,20,0,0,0,0,0,0,0,0,0,,1,,3,129520,2,2,0,0,2,,120.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,91.20726406153356,0.0,6346.0,0,5,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06303183107469272,6346.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -623,2,42.0,0.0,9,112,360.0,,,0,42,0.0,0.0,,385.0,43.00817510475479,,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,131753,2,2,0,0,2,,240.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,98.10233859777526,360.0,41562.1323169194,0,1,1,2,53.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009263239842082683,31970.871013014923,8,4,8,8_1,8_2,8_0_0 -624,2,64.0,0.0,7,112,500.0,,,0,52,0.0,0.0,,620.0,206.439240502823,,50,0,0,0,0,0,0,0,0,3,60.0,1,,5,110667,2,2,0,0,2,,220.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,116.17410495812159,500.0,16886.05106382979,0,1,0,1,96.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03671669578970128,16886.05106382979,4,2,4_0,4_1_0,4_2_0,4_0_0 -625,2,71.0,0.0,2,112,600.0,,,0,77,0.0,0.0,,732.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,2,112125,2,2,0,0,2,,600.0,,21,2.0,3.0,5.0,3.0,2.0,2,2,105.51621642790796,600.0,13803.778716749715,0,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05302895786874503,6901.889358374858,1,1,1_0,1_1_0,1_2_0,1_0_1 -626,2,65.0,0.0,5,112,600.0,,,52,74,0.0,0.0,,732.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,3,107095,2,1,0,0,2,,900.0,,42,2.0,3.0,5.0,3.0,2.0,1,1,102.78416314416867,600.0,81801.38923316746,1,5,0,1,118.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008948503281692445,40900.69461658373,9,5,9,9_1,9_2,9_0_0 -627,2,43.0,0.0,9,112,360.0,,,0,55,0.0,0.0,,426.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,2010.0,6,102114,2,2,0,0,2,,80.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,138.8161880791397,360.0,7890.0866684062,0,4,0,1,95.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05399180235951098,7890.0866684062,1,1,1_0,1_1_0,1_2_0,1_0_0 -628,2,72.0,0.0,2,112,528.0,,,0,77,0.0,0.0,,662.0,230.52381856148568,,30,0,0,0,0,0,0,0,0,0,,1,,2,128480,2,2,0,0,2,,250.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,103.14649166847398,528.0,13168.64895982482,0,5,0,1,142.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05027091253018005,13168.64895982482,2,1,2_0,2_1_0,2_2_0,2_0_1 -629,2,75.0,0.0,5,112,150.0,,,85,78,0.0,0.0,,304.0,264.9303586452895,,71,0,0,0,0,0,0,0,0,0,,1,,3,106428,2,2,0,0,2,,300.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,107.02736757437734,150.0,9447.12,6,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032179119138954514,6298.080000000001,1,1,1_0,1_1_0,1_2_0,1_0_0 -630,2,72.0,0.0,6,112,180.0,,,0,77,0.0,0.0,,314.0,230.52381856148568,,12,0,0,0,0,0,0,0,0,0,,1,,4,130358,2,2,0,0,2,,160.0,,11,0.0,1.0,4.0,1.0,1.0,4,4,100.92306884857064,180.0,10353.975609756104,0,5,0,1,68.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030326515324619014,10353.975609756104,2,1,2_0,2_1_0,2_2_0,2_0_0 -631,2,53.0,0.0,2,112,150.0,,,0,67,0.0,0.0,,216.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,1,,2,111998,2,2,0,0,2,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,107.02736757437734,150.0,15120.729168340571,0,1,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0142850253843747,15120.729168340571,3,2,3_0,3_1_0,3_2_0,3_0_1 -632,2,85.0,0.0,2,112,120.0,,,0,77,0.0,0.0,,186.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,1,,2,120887,2,2,0,0,2,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,107.02736757437734,120.0,13408.550837368457,0,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013871745146510113,13408.550837368457,3,2,3_0,3_1_0,3_2_0,3_0_1 -633,2,79.0,0.0,2,112,270.0,,,0,78,0.0,0.0,,410.0,240.84578058662683,,71,0,0,0,0,0,0,0,0,0,,1,,2,123346,2,3,0,0,2,,200.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,91.20726406153356,270.0,10303.487804878052,0,5,0,1,96.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03979235068399759,10303.487804878052,2,1,2_0,2_1_0,2_2_0,2_0_1 -634,2,19.0,0.0,7,112,420.0,,,85,85,0.0,0.0,,552.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,1,,5,133048,1,1,0,0,2,,960.0,,41,1.0,3.0,3.0,4.0,2.3,2,2,103.14649166847398,420.0,4386.080351679746,7,6,0,1,66.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1258526875342353,1906.9914572520636,1,1,1_0,1_1_0,1_2_0,1_0_0 -635,2,80.0,0.0,2,112,1200.0,,,0,72,0.0,0.0,,1458.0,443.84436708106944,,71,0,0,0,0,0,0,0,0,0,,1,,2,106115,1,2,0,0,2,,454.0,,21,1.0,6.0,7.0,3.0,2.0,1,1,69.41635548107905,1200.0,7751.6633682020065,0,5,0,1,78.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.188088663135301,3875.8316841010032,1,1,1_0,1_1_0,1_2_0,1_0_1 -636,2,60.0,0.0,6,112,120.0,,,0,46,0.0,0.0,,208.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,1,1.0,1,,4,116122,2,1,0,0,2,,210.0,1020.0,12,1.0,10.0,2.0,1.0,1.0,3,2,120.59536322509446,120.0,19104.21811969184,0,1,2,3,30.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010887647884715166,19104.21811969184,5,3,5,5_1,5_2,5_0_0 -637,1,47.0,330.0,7,112,1200.0,,,0,85,0.0,0.0,,1464.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,5,120854,1,3,0,0,2,,450.0,380.0,31,0.0,0.0,3.0,4.0,2.3,2,2,87.02978944163235,1200.0,18916.07595948995,0,6,2,3,52.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07739448726761589,8224.380851952154,1,1,1_1,1_1_1,1_2_1,1_0_0 -638,2,37.0,0.0,9,112,540.0,,,62,55,0.0,0.0,,804.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,105625,1,1,0,0,2,,396.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,129.13310399311817,540.0,60392.74792900984,1,1,1,2,48.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013312856718245074,28758.45139476659,8,4,8,8_1,8_2,8_0_0 -639,2,51.0,0.0,7,112,1050.0,,,22,55,0.0,0.0,,1314.0,454.1663291062106,,12,0,0,0,0,0,0,0,0,2,5.0,1,,5,113969,1,2,0,0,2,,1080.0,,43,3.0,0.0,4.0,4.0,2.5,1,1,89.4381397656874,1050.0,41878.62446022716,4,1,0,1,74.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03137638871706323,16751.449784090866,4,2,4_0,4_1_0,4_2_0,4_0_0 -640,2,53.0,0.0,7,112,200.0,,,21,69,0.0,0.0,,475.0,473.0899261523027,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,126485,1,1,0,0,2,,1200.0,,43,3.0,3.0,4.0,4.0,2.3,1,1,87.76639103944274,200.0,26011.407975417114,1,1,0,1,42.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01826121832577896,11309.307815398746,2,1,2_0,2_1_0,2_2_0,2_0_0 -641,2,41.0,0.0,2,112,0.0,,,0,42,0.0,0.0,,516.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,2,127906,1,1,0,0,2,,360.0,,22,1.0,5.0,5.0,3.0,2.0,3,3,87.54700135818776,0.0,22662.603217109066,0,1,0,1,84.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022768787639120262,11331.301608554533,2,1,2_0,2_1_0,2_2_0,2_0_1 -642,2,38.0,0.0,7,112,0.0,,,0,85,0.0,0.0,,586.0,412.878481005646,,20,0,0,0,0,0,0,0,0,0,,2,,5,125658,1,2,0,0,2,,0.0,400.0,31,0.0,0.0,2.0,3.0,1.6,1,1,130.69281273730599,0.0,2353.019241248866,0,6,2,3,36.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.24904173741009455,1470.637025780541,1,1,1_0,1_0_0,1_2_0,1_0_0 -643,0,53.0,0.0,7,112,216.0,,,0,55,0.0,0.0,,348.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,2,,5,105520,1,1,0,0,2,,300.0,,22,2.0,2.0,3.0,2.0,1.5,1,1,99.6390625769713,216.0,7928.032598601553,0,4,5,0,78.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04389487501115783,5285.3550657343685,1,1,1_0,1_0_0,1_2_0,1_0_0 -644,2,36.0,0.0,1,112,200.0,,,85,21,0.0,0.0,,464.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,1,121688,1,2,0,0,2,,180.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,105.83438414616009,200.0,9991.923645506286,7,1,0,1,76.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04643750457487502,4758.058878812517,1,1,1_0,1_1_0,1_2_0,1_1_0 -645,2,32.0,0.0,7,112,960.0,,,0,63,0.0,0.0,,1075.0,197.83760548187203,,10,0,0,0,0,0,0,0,0,2,5.0,2,,5,122833,1,2,0,0,2,,300.0,575.0,22,3.0,0.0,3.0,5.0,2.5999999999999996,1,1,120.59536322509446,960.0,35660.30769020399,0,1,2,3,90.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03014556153970893,13715.502957770766,3,2,3_0,3_0_0,3_2_0,3_0_0 -646,0,38.0,0.0,7,112,450.0,,,0,85,0.0,0.0,,542.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,0,,1,,5,127819,2,1,0,0,2,,160.0,,11,0.0,0.0,4.0,1.0,1.0,2,1,103.14649166847398,450.0,10182.866025687346,0,7,5,0,82.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053226665128731754,10182.866025687346,2,1,2_0,2_1_0,2_2_0,2_0_0 -647,2,48.0,0.0,7,112,960.0,,,0,54,0.0,0.0,,1120.0,275.25232067043066,,41,0,0,0,0,0,0,0,0,0,,1,,5,103716,1,1,0,0,2,,582.0,,22,2.0,0.0,5.0,3.0,2.0,1,1,102.78416314416867,960.0,24654.079748933236,0,1,0,1,74.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0454285867250211,12327.039874466618,2,1,2_0,2_1_0,2_2_0,2_0_0 -648,2,58.0,0.0,2,112,390.0,,,0,77,0.0,0.0,,642.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,2,108370,1,2,0,0,2,,200.0,,21,1.0,5.0,4.0,4.0,2.1,2,2,107.68438538416382,390.0,23018.930671813338,0,6,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02789008790865027,10961.39555800635,2,1,2_0,2_1_0,2_2_0,2_0_1 -650,2,88.0,0.0,1,112,382.0,,,0,77,0.0,0.0,,658.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,1,115561,1,1,0,0,2,,245.0,,11,0.0,10.0,7.0,1.0,1.0,1,1,106.0447039802746,382.0,9430.627071424715,0,5,0,1,104.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06977266676081105,9430.627071424715,1,1,1_0,1_1_0,1_2_0,1_1_0 -651,1,21.0,313.0,2,112,660.0,,,0,54,0.0,0.0,,844.0,316.54016877099525,,41,0,0,0,0,0,0,0,0,0,,1,,2,113279,2,3,0,0,2,,360.0,550.0,22,1.0,1.0,4.0,2.0,1.5,2,2,98.0572074666857,660.0,27230.56843919129,0,1,2,3,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03099457882727422,18153.712292794193,4,2,4_1,4_1_1,4_2_1,4_0_1 -652,2,81.0,0.0,2,112,360.0,,,0,77,0.0,0.0,,475.0,197.83760548187203,,71,0,0,0,0,0,0,0,0,0,,1,,2,103887,2,1,0,0,2,,250.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,98.55195204739874,360.0,16141.359979105284,0,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029427508005203988,16141.359979105284,4,2,4_0,4_1_0,4_2_0,4_0_1 -653,0,53.0,0.0,1,112,1400.0,,,0,72,0.0,0.0,,1400.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,1,127717,1,2,0,0,2,,270.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,110.42358429910371,1400.0,5141.357756075723,0,7,5,0,54.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.27230161105703465,5141.357756075723,1,1,1_0,1_1_0,1_2_0,1_1_0 -655,2,74.0,0.0,5,112,600.0,,,0,77,0.0,0.0,,640.0,68.81308016760767,,42,0,0,0,0,0,0,0,0,0,,1,,3,104869,2,2,0,0,2,,280.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,107.42847528221172,600.0,33685.1856107958,0,5,0,1,35.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01899945000733158,33685.1856107958,9,5,9,9_1,9_2,9_0_0 -656,2,65.0,0.0,6,112,800.0,,,74,34,0.0,0.0,,930.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,1,,4,129552,2,2,0,0,2,,800.0,,42,1.0,3.0,4.0,3.0,2.0,7,7,81.3718552386464,800.0,114683.30427651308,5,1,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008109288495539643,57341.65213825654,10,5,10,10_1,10_2,10_0_0 -657,2,77.0,0.0,7,112,700.0,,,78,78,0.0,0.0,,800.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,0,,1,,5,102309,2,2,0,0,2,,400.0,,41,1.0,2.0,4.0,4.0,2.3,1,1,89.13432338802569,700.0,22444.396028090236,5,5,0,1,30.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03564364124562593,9758.433055691408,2,1,2_0,2_1_0,2_2_0,2_0_0 -658,1,47.0,300.0,2,112,400.0,,,81,63,0.0,0.0,,640.0,412.878481005646,,60,0,0,0,0,0,0,0,0,0,,1,,2,105515,2,2,0,0,2,,500.0,450.0,43,4.0,0.0,4.0,8.0,4.1,1,1,96.6065028259124,400.0,15313.737807896858,4,4,2,3,58.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04179254000744157,3735.0580019260633,1,1,1_1,1_1_1,1_2_1,1_0_1 -659,2,63.0,0.0,7,112,540.0,,,0,77,0.0,0.0,,740.0,344.06540083803833,,42,0,0,0,0,0,0,0,0,0,,1,,5,108982,2,2,0,0,2,,700.0,,21,1.0,1.0,4.0,2.0,1.5,1,1,144.87583701207163,540.0,3826.5719008264464,0,5,0,1,50.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19338458003106593,2551.0479338842974,1,1,1_0,1_1_0,1_2_0,1_0_0 -660,2,84.0,0.0,7,112,740.0,,,77,77,0.0,0.0,,980.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,5,129749,2,2,0,0,2,,600.0,,41,1.0,4.0,6.0,3.0,2.0,2,2,80.42358956548964,740.0,34298.66034769748,5,5,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02857254452696981,17149.33017384874,4,2,4_0,4_1_0,4_2_0,4_0_0 -661,2,68.0,0.0,6,112,580.0,,,0,77,0.0,0.0,,844.0,454.1663291062106,,60,0,0,0,0,0,0,0,0,0,,1,,4,131369,2,2,0,0,2,,310.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,100.98302179537978,580.0,9393.322351816005,0,5,0,1,35.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08985106316902135,9393.322351816005,1,1,1_0,1_1_0,1_2_0,1_0_0 -662,2,60.0,0.0,2,112,420.0,,,0,64,0.0,0.0,,470.0,86.01635020950958,,41,0,0,0,0,0,0,0,0,0,,1,,2,129183,2,1,0,0,2,,150.0,500.0,12,1.0,4.0,4.0,1.0,1.0,2,2,106.6097958846631,420.0,16984.80822563898,0,1,2,3,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027671787267549104,16984.80822563898,4,2,4_0,4_1_0,4_2_0,4_0_1 -663,2,52.0,0.0,7,112,480.0,,,0,52,0.0,0.0,,503.0,39.567521096374406,,41,0,0,0,0,0,0,0,0,1,10.0,1,,5,105629,2,3,0,0,2,,250.0,548.0,12,1.0,0.0,4.0,1.0,1.0,2,2,74.5394772152239,480.0,16727.600000000002,0,1,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03007006384657691,16727.600000000002,4,2,4_0,4_1_0,4_2_0,4_0_0 -664,1,54.0,288.0,8,112,420.0,,,81,62,0.0,0.0,,490.0,120.42289029331342,,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,107823,2,2,0,0,2,,440.0,389.0,43,2.0,0.0,3.0,3.0,1.8,1,1,90.87911469197765,420.0,18322.81954153159,4,4,2,3,92.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02674260906676164,10179.344189739772,2,1,2_1,2_1_1,2_2_1,2_0_0 -665,2,33.0,0.0,7,112,0.0,,,0,85,0.0,0.0,,296.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,102352,2,1,0,0,2,,547.0,464.0,31,0.0,0.0,3.0,3.0,1.6,3,3,87.48872926709241,0.0,18383.0,0,6,2,3,71.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016101833215470814,11489.375,2,1,2_0,2_0_0,2_2_0,2_0_0 -666,1,35.0,310.0,9,112,900.0,,,0,54,0.0,0.0,,1015.0,197.83760548187203,,70,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,122193,2,1,0,0,2,,1020.0,358.0,32,1.0,0.0,3.0,3.0,1.6,1,1,93.98465707976275,900.0,31689.653781501587,0,1,2,3,40.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03202938116643271,19806.033613438492,5,3,5,5_0,5_2,5_0_0 -667,1,32.0,57.0,9,112,468.0,,,55,47,0.0,0.0,,493.0,43.00817510475479,,71,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,106455,2,1,0,0,2,,150.0,401.0,43,2.0,0.0,3.0,4.0,2.1,2,2,90.87911469197765,468.0,11794.299363148995,1,1,2,3,69.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04179985472815508,5616.33303007095,1,1,1_1,1_0_1,1_2_1,1_0_0 -668,1,39.0,467.0,9,112,0.0,,,0,53,0.0,0.0,,641.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,122045,2,1,0,0,2,,400.0,520.0,32,2.0,0.0,4.0,4.0,2.3,2,1,77.95731192611477,0.0,31624.155591442886,0,1,2,3,95.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020269315907788122,13749.632865844735,3,2,3_1,3_1_1,3_2_1,3_0_0 -669,1,35.0,393.0,8,112,1663.0,,,0,85,0.0,0.0,,1803.0,240.84578058662683,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,133573,2,1,0,0,2,,216.0,421.0,31,0.0,0.0,3.0,4.0,2.1,3,3,89.79988973566499,1663.0,22431.258999540925,0,6,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08037890338820929,10681.551904543297,2,1,2_1,2_1_1,2_2_1,2_0_0 -670,2,61.0,0.0,9,112,540.0,,,56,77,0.0,0.0,,626.0,147.94812236035648,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126674,2,1,0,0,2,,300.0,486.0,42,1.0,3.0,3.0,2.0,1.5,2,2,89.97918960617349,540.0,32082.205532371638,4,5,2,3,89.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01951237421530613,21388.137021581093,6,3,6,6_1,6_2,6_0_0 -671,1,42.0,413.0,9,112,984.0,,,0,56,0.0,0.0,,1059.0,129.02452531426437,,60,0,0,0,0,0,0,0,0,3,20.0,1,2006.0,6,110428,2,3,0,0,2,,600.0,549.0,32,1.0,1.0,4.0,3.0,2.0,2,2,76.51549089034897,984.0,17815.37072480534,0,1,2,3,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05944305152884048,8907.68536240267,1,1,1_1,1_1_1,1_2_1,1_0_0 -672,2,52.0,0.0,9,112,600.0,,,0,45,0.0,0.0,,650.0,86.01635020950958,,70,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,110416,2,1,0,0,2,,200.0,489.0,32,1.0,0.0,3.0,2.0,1.5,2,2,97.53720651032994,600.0,36704.594343044824,0,1,2,3,96.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01770895474078898,24469.729562029883,7,4,7,7_1,7_2,7_0_0 -673,1,47.0,280.0,7,112,1200.0,,,0,21,0.0,0.0,,1250.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,0,,2,,5,130560,2,3,0,0,2,,1000.0,420.0,12,1.0,2.0,4.0,1.0,1.0,2,2,74.5394772152239,1200.0,8598.451806627108,0,1,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14537500797952768,8598.451806627108,1,1,1_1,1_0_1,1_2_1,1_0_0 -674,1,26.0,200.0,7,112,750.0,,,0,47,0.0,0.0,,1906.0,1988.6980168438615,,50,0,0,0,0,0,0,0,0,0,,2,,5,112861,2,3,0,0,2,,600.0,300.0,22,2.0,0.0,4.0,4.0,2.5,1,1,74.39055531135097,750.0,36318.23125466436,0,1,2,3,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05248052931419153,14527.292501865744,3,2,3_1,3_0_1,3_2_1,3_0_0 -675,1,36.0,260.0,7,112,700.0,,,0,55,0.0,0.0,,860.0,275.25232067043066,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,113816,2,2,0,0,2,,400.0,523.0,32,1.0,0.0,3.0,3.0,1.8,1,1,104.47031947650174,700.0,25990.23339268374,0,1,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03308935271978321,14439.018551490964,3,2,3_1,3_1_1,3_2_1,3_0_0 -676,1,81.0,253.0,8,112,240.0,,,0,77,0.0,0.0,,490.0,430.0817510475479,,41,0,0,0,0,0,0,0,0,0,,2,2001.0,6,118674,2,1,0,0,2,,160.0,340.0,11,0.0,1.0,2.0,1.0,1.0,1,1,107.10012544020013,240.0,11429.525192972484,0,5,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042871422191822946,11429.525192972484,2,1,2_1,2_0_1,2_2_1,2_0_0 -677,2,60.0,0.0,8,112,1100.0,,,77,64,0.0,0.0,,1250.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,2,45.0,2,2000.0,6,116947,2,1,0,0,2,,280.0,345.0,42,1.0,7.0,3.0,2.0,1.5,1,1,93.60042257129082,1100.0,20458.32898172324,6,1,2,3,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06109980933030779,13638.885987815493,3,2,3_0,3_0_0,3_2_0,3_0_0 -678,1,46.0,270.0,7,112,160.0,,,69,52,0.0,0.0,,260.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,119305,2,1,0,0,2,,100.0,400.0,43,2.0,0.0,2.0,2.0,1.5,2,2,106.97343838617503,160.0,24272.501125369814,1,1,2,3,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.010711710287171267,16181.66741691321,4,2,4_1,4_1_1,4_2_1,4_0_0 -679,2,60.0,0.0,8,112,400.0,,,0,52,0.0,0.0,,466.0,113.54158227655265,,70,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,109811,2,2,0,0,2,,250.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,116.08529181234579,400.0,34364.19297572665,0,1,0,1,145.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013560626909794211,34364.19297572665,9,5,9,9_1,9_2,9_0_0 -680,2,49.0,0.0,8,112,720.0,,,37,43,0.0,0.0,,970.0,430.0817510475479,,60,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,108268,2,2,0,0,2,,120.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,97.48513391164416,720.0,81109.0,1,1,1,2,89.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011959215376838575,35264.782608695656,9,5,9,9_1,9_2,9_0_0 -681,2,50.0,0.0,7,112,2500.0,,,0,56,0.0,0.0,,2750.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,1,,5,125322,2,2,0,0,2,,1200.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,100.89973509510358,2500.0,13123.046464440778,0,4,0,1,120.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.209554999858578,13123.046464440778,2,1,2_0,2_1_0,2_2_0,2_0_0 -682,2,46.0,0.0,7,112,360.0,,,54,21,0.0,0.0,,480.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,5,103864,2,1,0,0,2,,150.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,103.74203798921143,360.0,37103.76710059082,1,1,0,1,174.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012936691810798822,17668.460524090864,4,2,4_0,4_1_0,4_2_0,4_0_0 -683,2,41.0,0.0,9,112,1200.0,,,0,46,0.0,0.0,,1270.0,120.42289029331342,,30,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,122535,2,2,0,0,2,,480.0,,32,1.0,0.0,4.0,4.0,2.3,1,1,85.71509250639642,1200.0,45418.22059853512,0,1,1,2,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027962346020243726,19747.052434145706,5,3,5,5_1,5_2,5_0_0 -685,2,47.0,0.0,7,112,720.0,,,68,67,0.0,0.0,,870.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,105651,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,98.12766660238684,720.0,15777.211682510308,1,1,1,2,120.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05514282355509187,7888.605841255154,1,1,1_0,1_1_0,1_2_0,1_0_0 -686,2,51.0,0.0,9,112,1200.0,,,35,31,0.0,0.0,,1288.0,151.38877636873687,,30,0,0,0,0,0,0,0,0,0,,1,2006.0,6,117066,2,1,0,0,2,,1049.0,,43,2.0,0.0,7.0,4.0,2.5,1,1,84.27200571410603,1200.0,54661.90778439007,1,1,0,1,220.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023563026835441286,21864.763113756027,6,3,6,6_1,6_2,6_0_0 -687,2,85.0,0.0,2,112,360.0,,,71,71,0.0,0.0,,492.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,0,,1,,2,131035,2,2,0,0,2,,280.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,102.78416314416867,360.0,18043.32718241296,5,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027267698192579366,12028.884788275305,2,1,2_0,2_1_0,2_2_0,2_0_1 -688,2,60.0,0.0,7,112,564.0,,,85,71,0.0,0.0,,702.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,5,114173,2,2,0,0,2,,200.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,74.64133906607897,564.0,16071.997066262844,6,5,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043678454961492426,10714.664710841897,2,1,2_0,2_1_0,2_2_0,2_0_0 -689,2,79.0,0.0,9,112,260.0,,,0,72,0.0,0.0,,380.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,126605,2,2,0,0,2,,200.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,113.85861412705552,260.0,9447.12,0,5,0,1,28.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040223898923693144,9447.12,1,1,1_0,1_1_0,1_2_0,1_0_0 -690,0,57.0,0.0,2,111,432.0,,,0,56,0.0,0.0,,524.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,126115,2,3,0,0,2,,537.0,,32,1.0,4.0,4.0,2.0,1.5,5,5,107.62992413534647,432.0,11429.525192972484,0,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04584617393574536,7619.6834619816555,1,1,1_0,1_1_0,1_3_0,1_0_1 -691,2,62.0,0.0,6,111,780.0,,,54,21,0.0,0.0,,868.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,30.0,2,,4,118862,2,2,0,0,2,,460.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,97.66038542785533,780.0,52018.095662395324,1,1,0,1,86.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016686500898330472,26009.047831197662,7,4,7,7_0,7_3,7_0_0 -692,2,49.0,0.0,2,111,590.0,,,63,47,0.0,0.0,,592.0,3.4406540083803834,,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,110582,2,2,0,0,2,,440.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,116.68957419318859,590.0,40862.35028471949,4,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014487663971237085,27241.56685647966,7,4,7,7_1,7_3,7_0_1 -693,2,53.0,0.0,5,111,402.0,,,0,65,0.0,0.0,,468.0,113.54158227655265,,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,105057,2,2,0,0,2,,467.0,,12,1.0,2.0,5.0,1.0,1.0,5,4,105.5893800218637,402.0,30798.195448430062,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015195695500525058,30798.195448430062,8,4,8,8_1,8_3,8_0_0 -694,2,46.0,0.0,6,111,528.0,,,0,54,0.0,0.0,,660.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,4,108153,2,2,0,0,2,,700.0,,32,1.0,1.0,4.0,4.0,2.5,2,2,105.45066562520418,528.0,43742.25812720723,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015088384282325994,17496.90325088289,4,2,4_0,4_1_0,4_3_0,4_0_0 -695,2,46.0,0.0,7,111,792.0,,,0,54,0.0,0.0,,930.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,5,109176,2,2,0,0,2,,500.0,,32,1.0,0.0,7.0,4.0,2.5,1,1,106.78228153707744,792.0,38498.87782015703,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024156548259520325,15399.551128062812,3,2,3_0,3_1_0,3_3_0,3_0_0 -696,2,51.0,0.0,8,111,600.0,,,0,52,0.0,0.0,,715.0,197.83760548187203,,71,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,125695,2,1,0,0,2,,479.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,142.65847649111933,600.0,30973.835074862873,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02308399971368949,20649.223383241915,5,3,5,5_1,5_3,5_0_0 -697,2,25.0,0.0,5,112,400.0,,,0,69,0.0,103.51725048194578,,750.0,430.0817510475479,,41,0,0,0,0,0,0,0,0,0,,1,,3,121958,2,2,0,0,2,,450.0,,22,4.0,1.0,4.0,5.0,3.0,1,1,80.16189460133205,400.0,16380.145938791778,0,1,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04578713784373773,5460.0486462639265,1,1,1_0,1_1_0,1_2_0,1_0_0 -698,2,66.0,0.0,8,112,200.0,,,0,77,0.0,0.0,,280.0,137.62616033521533,,44,0,0,0,0,0,0,0,0,0,,1,2003.0,6,105733,2,1,0,0,2,,360.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,83.58402174014486,200.0,12117.733333333334,0,5,0,1,51.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023106631603270138,12117.733333333334,2,1,2_0,2_1_0,2_2_0,2_0_0 -699,1,40.0,250.0,2,111,600.0,,,0,68,0.0,0.0,,669.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,116630,1,2,0,0,2,,240.0,250.0,32,1.0,0.0,4.0,3.0,1.8,1,1,142.93832948375822,600.0,17943.86068760647,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03728294661037283,9968.811493114705,2,1,2_1,2_1_1,2_3_1,2_0_1 -701,0,51.0,0.0,2,111,400.0,,,85,53,0.0,0.0,,538.0,237.40512657824647,,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,115428,2,1,0,0,2,,450.0,,42,1.0,0.0,4.0,3.0,2.0,2,2,102.33940652184108,400.0,46364.33432698249,6,1,5,0,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011603746884529344,23182.167163491245,6,3,6,6_1,6_3,6_0_1 -702,2,56.0,0.0,7,111,240.0,,,0,81,0.0,0.0,,244.0,6.881308016760767,,10,0,0,0,0,0,0,0,0,0,,1,,5,124290,1,3,0,0,2,,276.0,100.0,12,1.0,4.0,2.0,1.0,1.0,2,2,157.5308298093717,240.0,7032.0,0,4,3,4,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034698521046643914,7032.0,1,1,1_0,1_1_0,1_3_0,1_0_0 -703,2,50.0,0.0,2,111,500.0,,,0,22,0.0,0.0,,684.0,316.54016877099525,,20,0,0,0,0,0,0,0,0,0,,1,,2,132369,2,2,0,0,2,,600.0,,32,2.0,0.0,5.0,3.0,2.0,2,2,102.43348382873418,500.0,8810.863911093631,0,1,0,1,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07763143397763589,4405.4319555468155,1,1,1_0,1_1_0,1_3_0,1_0_1 -704,2,55.0,0.0,9,111,402.0,,,0,77,0.0,0.0,,512.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,102787,2,3,0,0,2,,500.0,,31,0.0,0.0,4.0,2.0,1.3,2,2,123.64083321951378,402.0,15828.20998084352,0,6,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032347309052613064,12175.5461391104,2,1,2_0,2_1_0,2_3_0,2_0_0 -705,2,81.0,0.0,7,111,432.0,,,0,78,0.0,0.0,,662.0,395.67521096374406,,20,0,0,0,0,0,0,0,0,0,,1,,5,113489,1,2,0,0,2,,220.0,,21,2.0,0.0,4.0,3.0,2.0,1,1,89.96041202022626,432.0,17039.038297872343,0,5,0,1,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03885195798184594,8519.519148936171,1,1,1_0,1_1_0,1_3_0,1_0_0 -706,2,68.0,0.0,7,111,365.0,,,0,75,0.0,0.0,,448.0,142.7871413477859,,71,0,0,0,0,0,0,0,0,0,,1,,5,112072,2,2,0,0,2,,320.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,93.57343009790448,365.0,32170.0,0,5,0,1,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01392601802921977,32170.0,8,4,8,8_1,8_3,8_0_0 -707,2,31.0,0.0,2,111,540.0,,,0,47,0.0,0.0,,584.0,75.69438818436844,,41,0,0,0,0,0,0,0,0,0,,1,,2,119981,2,3,0,0,2,,463.0,,22,1.0,1.0,3.0,2.0,1.5,1,1,117.23531937151758,540.0,29728.04194552252,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019644751614324163,19818.694630348346,5,3,5,5_1,5_3,5_0_1 -708,1,26.0,357.0,9,111,0.0,,,0,81,0.0,0.0,,44.0,75.69438818436844,,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119445,2,2,0,0,2,,0.0,380.0,32,1.0,0.0,2.0,2.0,1.3,1,1,125.49584685487612,0.0,9506.823168378727,0,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.004628254804018161,7312.940898752867,1,1,1_1,1_1_1,1_3_1,1_0_0 -709,1,61.0,226.0,7,111,324.0,,,0,75,0.0,0.0,,390.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,1,,5,114356,2,2,0,0,2,,203.0,622.0,11,0.0,3.0,6.0,1.0,1.0,3,3,106.26298207970197,324.0,9513.262840190804,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04099539837713324,9513.262840190804,1,1,1_1,1_1_1,1_3_1,1_0_0 -710,2,55.0,0.0,7,111,1200.0,,,0,42,0.0,0.0,,1332.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,112716,1,2,0,0,2,,800.0,811.0,32,3.0,0.0,5.0,4.0,2.5,1,1,82.99266589510688,1200.0,70858.66399592235,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01879798354759626,28343.46559836894,8,4,8,8_1,8_3,8_0_0 -711,0,54.0,0.0,6,111,0.0,,,52,48,0.0,0.0,,817.0,0.0,,71,0,0,0,0,0,0,0,0,2,3.0,3,,4,102603,2,2,0,0,2,,280.0,,43,3.0,1.0,3.0,4.0,2.5,5,5,140.9572647986048,0.0,59039.94044685094,1,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013838089839123085,23615.976178740377,6,3,6,6_0,6_3,6_0_0 -712,2,67.0,0.0,5,111,440.0,,,0,86,0.0,0.0,,465.0,43.00817510475479,,43,0,0,0,0,0,0,0,0,0,,1,,3,101697,2,1,0,0,2,,120.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,112.80396833320184,440.0,9447.12,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04922134999872977,9447.12,1,1,1_0,1_1_0,1_3_0,1_0_0 -713,1,70.0,309.0,8,111,360.0,,,86,86,0.0,0.0,,636.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,129947,2,1,0,0,2,,350.0,400.0,41,0.0,0.0,2.0,2.0,1.5,1,1,109.66768746975403,360.0,3603.0,6,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1765195670274771,2402.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -714,1,82.0,253.0,7,111,300.0,,,0,78,0.0,0.0,,300.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,5,114055,2,2,0,0,2,,200.0,432.0,11,0.0,1.0,2.0,1.0,1.0,1,1,117.3075233617168,300.0,8763.924550127522,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03423123947314617,8763.924550127522,1,1,1_1,1_0_1,1_3_1,1_0_0 -715,1,27.0,130.0,7,111,300.0,,,0,85,0.0,0.0,,350.0,86.01635020950958,,60,0,0,0,0,0,0,0,0,0,,2,,5,110322,2,1,0,0,2,,400.0,450.0,21,0.0,1.0,4.0,2.0,1.5,2,2,84.71189660454648,300.0,7254.744031011682,0,7,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04824429345871658,4836.4960206744545,1,1,1_1,1_0_1,1_3_1,1_0_0 -716,2,37.0,0.0,7,111,3000.0,,,46,37,0.0,0.0,,3075.0,129.02452531426437,,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,117719,2,1,0,0,2,,500.0,1200.0,43,2.0,0.0,6.0,5.0,2.4,2,2,102.31521492898099,3000.0,223505.55446557462,1,1,2,3,290.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013758047344070037,93127.31436065609,10,5,10,10_1,10_3,10_0_0 -717,2,37.0,0.0,9,111,800.0,,,0,85,0.0,0.0,,875.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109917,2,3,0,0,2,,120.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,109.80395039069583,800.0,6221.920960273885,0,7,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14063180898419564,6221.920960273885,1,1,1_0,1_1_0,1_3_0,1_0_0 -718,2,57.0,0.0,7,111,2000.0,,,54,34,0.0,0.0,,2200.0,344.06540083803833,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,127476,2,1,0,0,2,,900.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,139.50932701655614,2000.0,125041.14057978292,1,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017594209312224583,83360.76038652194,10,5,10,10_1,10_3,10_0_0 -719,2,38.0,0.0,7,111,240.0,,,52,31,0.0,0.0,,290.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,2,45.0,8,,5,129905,2,2,0,0,2,,240.0,,43,2.0,0.0,3.0,3.0,1.8,4,4,125.4333641502687,240.0,47719.518059872535,1,1,1,2,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006077177888430138,26510.84336659585,7,4,7,7_0,7_3,7_0_0 -720,2,41.0,0.0,8,111,1500.0,,,0,46,0.0,0.0,,1500.0,0.0,,10,0,0,0,0,0,0,0,0,2,60.0,2,2000.0,6,107911,2,3,0,0,2,,60.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,99.8816542605927,1500.0,41891.81671102627,0,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03580651587270951,32224.47439309713,8,4,8,8_0,8_3,8_0_0 -721,2,50.0,0.0,6,111,500.0,,,67,63,0.0,0.0,,700.0,344.06540083803833,,60,0,0,0,0,0,0,0,0,3,60.0,1,,4,113314,2,1,0,0,2,,360.0,,43,2.0,5.0,3.0,2.0,1.5,2,2,132.1686289896523,500.0,28909.326533939075,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02421363912363062,19272.884355959384,5,3,5,5_1,5_3,5_0_0 -722,2,51.0,0.0,8,111,1100.0,,,0,52,0.0,0.0,,1150.0,86.01635020950958,,42,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,124509,2,1,0,0,2,,840.0,,32,3.0,0.0,3.0,4.0,2.5,3,3,102.43348382873418,1100.0,40142.20741185793,0,1,1,2,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028648150516513253,16056.882964743174,4,2,4_0,4_1_0,4_3_0,4_0_0 -723,2,45.0,0.0,9,111,1200.0,,,0,68,0.0,0.0,,1325.0,215.04087552377396,,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,114286,2,1,0,0,2,,240.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,181.08185995044244,1200.0,21377.867200500375,0,1,0,1,57.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06197999021946337,21377.867200500375,6,3,6,6_1,6_3,6_0_0 -724,2,71.0,0.0,9,111,700.0,,,0,63,0.0,0.0,,700.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,121585,2,1,0,0,2,,500.0,,22,2.0,1.0,3.0,2.0,1.5,1,1,100.93295698849764,700.0,79710.13944424514,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008781818785922825,53140.092962830095,10,5,10,10_1,10_3,10_0_0 -725,2,55.0,0.0,9,111,3500.0,,,74,21,0.0,0.0,,3550.0,86.01635020950958,,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,112317,2,1,0,0,2,,200.0,2000.0,42,1.0,2.0,7.0,2.0,1.5,1,1,163.83550232266302,3500.0,20324.13315926893,5,1,2,3,250.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17466919608234327,13549.422106179287,3,2,3_0,3_1_0,3_3_0,3_0_0 -726,1,38.0,166.0,8,111,720.0,,,52,52,0.0,0.0,,845.0,215.04087552377396,,12,0,0,0,0,0,0,0,0,1,15.0,2,2000.0,6,125431,2,1,0,0,2,,500.0,444.0,43,2.0,0.0,3.0,3.0,1.8,2,2,120.96655883270049,720.0,40052.028519013016,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02109755813238952,22251.126955007232,6,3,6,6_0,6_3,6_0_0 -727,2,75.0,0.0,7,111,800.0,,,0,78,0.0,0.0,,850.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,0,,2,,5,102523,2,1,0,0,2,,350.0,340.0,11,0.0,4.0,2.0,1.0,1.0,2,2,117.3075233617168,800.0,27565.37110073502,0,5,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030835790198280155,27565.37110073502,7,4,7,7_0,7_3,7_0_0 -728,2,62.0,0.0,2,111,1500.0,,,22,22,0.0,0.0,,1750.0,430.0817510475479,,10,0,0,0,0,0,0,0,0,0,,1,,2,120816,2,2,0,0,2,,1120.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,104.66902557429529,1500.0,53145.731887882546,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03292832628012048,35430.48792525503,9,5,9,9_1,9_3,9_0_1 -729,0,39.0,0.0,2,111,520.0,,,0,21,0.0,0.0,,820.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,,2,128462,2,1,0,0,2,,600.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,84.15881497230515,520.0,5407.711701050646,0,1,0,1,48.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15163530256997335,5407.711701050646,1,1,1_0,1_1_0,1_3_0,1_0_1 -730,2,32.0,0.0,9,111,480.0,,,54,62,0.0,0.0,,530.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,132338,2,3,0,0,2,,240.0,370.0,43,2.0,2.0,2.0,2.0,1.5,1,1,127.39622278461582,480.0,39751.42047165161,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013332856881880862,26500.946981101075,7,4,7,7_0,7_3,7_0_0 -731,0,56.0,0.0,6,111,720.0,,,21,21,0.0,0.0,,996.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,1,,4,119451,2,2,0,0,2,,600.0,,43,2.0,1.0,2.0,2.0,1.5,1,1,104.66902557429529,720.0,14940.936262599662,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0666624890498462,9960.624175066441,2,1,2_0,2_1_0,2_3_0,2_0_0 -732,2,66.0,0.0,6,111,1128.0,,,75,77,0.0,0.0,,1238.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,,4,113134,2,1,0,0,2,,1000.0,,41,1.0,3.0,4.0,3.0,2.0,3,3,139.50932701655614,1128.0,58688.6484543197,5,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021094368887427984,29344.32422715985,8,4,8,8_1,8_3,8_0_0 -733,2,71.0,0.0,7,111,654.0,,,72,75,0.0,0.0,,744.0,154.82943037711726,,50,0,0,0,0,0,0,0,0,0,,1,,5,128929,2,1,0,0,2,,360.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,119.18797917402004,654.0,49776.39169372919,5,5,0,1,134.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014946844772875107,33184.261129152794,8,4,8,8_1,8_3,8_0_0 -734,2,56.0,0.0,6,111,124.0,,,78,75,0.0,0.0,,124.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,4,115452,2,1,0,0,2,,500.0,,41,1.0,2.0,5.0,4.0,2.3,2,2,94.9962672449265,124.0,96824.50481997983,6,5,0,1,161.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001280667535873754,42097.610791295585,9,5,9,9_1,9_3,9_0_0 -735,2,47.0,0.0,1,111,336.0,,,63,43,0.0,0.0,,380.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,1,,1,129709,2,1,0,0,2,,384.0,,43,2.0,4.0,6.0,2.0,1.5,1,1,152.52885296330768,336.0,26362.557620516993,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014414382908897284,17575.038413677994,4,2,4_0,4_1_0,4_3_0,4_1_0 -736,2,76.0,0.0,2,111,499.0,,,71,71,0.0,0.0,,675.0,302.77755273747374,,10,0,0,0,0,0,0,0,0,0,,1,,2,101927,2,1,0,0,2,,120.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,119.18797917402004,499.0,15330.716371347578,5,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044029253666289514,10220.477580898385,2,1,2_0,2_1_0,2_3_0,2_0_1 -737,2,88.0,0.0,6,111,375.0,,,0,77,0.0,0.0,,555.0,309.6588607542345,,71,0,0,0,0,0,0,0,0,0,,1,,4,122515,2,1,0,0,2,,249.0,,11,0.0,6.0,5.0,1.0,1.0,2,2,112.80396833320184,375.0,21878.250938405916,0,5,0,1,160.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025367658573918806,21878.250938405916,6,3,6,6_1,6_3,6_0_0 -738,0,63.0,0.0,2,111,500.0,,,0,63,0.0,0.0,,544.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,,2,102803,1,1,0,0,2,,100.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,109.80395039069583,500.0,11429.525192972484,0,4,5,0,170.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04759602790275854,11429.525192972484,2,1,2_0,2_1_0,2_3_0,2_0_1 -739,0,63.0,0.0,9,111,552.0,,,0,90,0.0,0.0,,585.0,56.77079113827632,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,107442,2,1,0,0,2,,86.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,126.21601110546527,552.0,72358.19125513536,0,5,5,0,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008084779205401734,72358.19125513536,10,5,10,10_1,10_3,10_0_0 -740,1,53.0,357.0,5,111,221.0,,,0,55,0.0,0.0,,326.0,180.63433543997013,,41,0,0,0,0,0,0,0,0,0,,1,,3,132610,2,2,0,0,2,,319.0,500.0,32,1.0,1.0,3.0,2.0,1.5,2,2,100.60107978120348,221.0,13281.350547716134,0,4,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02454569652602529,8854.233698477423,1,1,1_1,1_1_1,1_3_1,1_0_0 -741,2,95.0,0.0,2,111,779.0,,,0,74,0.0,0.0,,977.0,340.62474682965797,,50,0,0,0,0,0,0,0,0,0,,1,,2,132471,2,1,0,0,2,,365.0,,21,1.0,0.0,7.0,2.0,1.5,3,2,139.50932701655614,779.0,49291.84530594512,0,5,0,1,117.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019820722757201453,32861.230203963416,8,4,8,8_1,8_3,8_0_1 -742,2,58.0,0.0,7,111,1200.0,,,31,31,0.0,0.0,,1250.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,109738,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,3,3,103.10863150864891,1200.0,4929.968431694144,1,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.25355131930742353,1971.9873726776575,1,1,1_0,1_1_0,1_3_0,1_0_0 -743,2,48.0,0.0,9,111,1230.0,,,35,46,0.0,0.0,,1330.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,102943,2,1,0,0,2,,890.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,108.48474933064534,1230.0,44666.99136690621,1,1,1,2,147.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029775902949787603,22333.495683453104,6,3,6,6_1,6_3,6_0_0 -744,2,36.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,360.0,0.0,,12,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,107151,2,1,0,0,1,,185.0,720.0,32,1.0,0.0,3.0,2.0,1.3,1,1,131.83379152637715,0.0,32911.94179550406,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010938278945582537,25316.878304233895,7,4,7,7_0,7_3,7_0_0 -745,0,52.0,0.0,7,111,720.0,,,0,52,0.0,0.0,,820.0,172.03270041901916,,12,0,0,0,0,0,0,0,0,2,5.0,1,,5,110968,2,2,0,0,1,,1000.0,,32,1.0,0.0,4.0,5.0,2.2,2,2,91.50816303236259,720.0,32922.63547468136,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024906876019406412,14964.834306673343,3,2,3_0,3_1_0,3_3_0,3_0_0 -746,2,37.0,0.0,9,111,450.0,,,0,55,0.0,0.0,,500.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,130357,2,3,0,0,2,,1000.0,440.0,32,1.0,0.0,3.0,2.0,1.3,2,2,101.06486519083425,450.0,20094.788590061802,0,1,2,3,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02488207316832798,15457.529684662924,3,2,3_0,3_0_0,3_3_0,3_0_0 -747,2,37.0,0.0,9,111,280.0,,,0,52,0.0,0.0,,330.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,128467,2,2,0,0,2,,350.0,576.0,12,1.0,1.0,3.0,1.0,1.0,2,2,113.76261563807253,280.0,18763.942266555474,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017586922583330812,18763.942266555474,5,3,5,5_0,5_3,5_0_0 -748,2,27.0,0.0,9,111,480.0,,,43,42,0.0,0.0,,580.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,128190,2,1,0,0,2,,280.0,450.0,43,2.0,0.0,3.0,4.0,2.5,1,1,101.06486519083425,480.0,28843.801348558907,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020108306564418144,11537.520539423564,2,1,2_0,2_0_0,2_3_0,2_0_0 -749,1,31.0,300.0,9,111,320.0,,,0,85,0.0,0.0,,460.0,240.84578058662683,,20,0,0,0,0,0,0,0,0,0,,2,2008.0,6,117162,2,1,0,0,2,,420.0,490.0,31,0.0,0.0,3.0,4.0,1.9,1,1,85.6978773607263,320.0,16353.9460688336,0,6,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028127767944437658,8607.340036228212,1,1,1_1,1_0_1,1_3_1,1_0_0 -750,1,22.0,353.0,9,111,300.0,,,0,67,0.0,0.0,,350.0,86.01635020950958,,30,0,0,0,0,0,0,0,0,0,,2,2007.0,6,107326,2,1,0,0,2,,800.0,420.0,22,1.0,0.0,4.0,3.0,1.8,2,2,82.99266589510688,300.0,14690.7694541429,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023824483876935226,8161.538585634944,1,1,1_1,1_0_1,1_3_1,1_0_0 -751,1,58.0,360.0,9,111,600.0,,,85,52,0.0,0.0,,738.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,2,2008.0,6,112693,2,3,0,0,2,,560.0,450.0,42,1.0,3.0,4.0,4.0,2.3,3,3,90.41480709707534,600.0,36899.71453973699,6,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0200001547222067,16043.354147711736,4,2,4_1,4_0_1,4_3_1,4_0_0 -752,1,49.0,400.0,7,111,300.0,,,0,55,0.0,0.0,,350.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,0,,1,,5,122558,2,1,0,0,2,,400.0,450.0,32,1.0,0.0,3.0,2.0,1.3,2,1,97.41194221503022,300.0,9073.043081822307,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03857581153794136,6979.263909094082,1,1,1_1,1_1_1,1_3_1,1_0_0 -753,1,44.0,309.0,2,111,400.0,,,85,42,0.0,0.0,,700.0,516.0981012570575,,43,0,0,0,0,0,0,0,0,0,,1,,2,126459,2,1,0,0,2,,200.0,550.0,42,1.0,1.0,3.0,2.0,1.5,2,2,117.7335388078212,400.0,17711.937992807754,7,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03952136690430191,11807.958661871837,2,1,2_1,2_1_1,2_3_1,2_0_1 -754,0,53.0,0.0,7,111,0.0,,,86,21,0.0,0.0,,50.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,0,,1,,5,100520,2,1,0,0,2,,0.0,,42,1.0,4.0,3.0,2.0,1.5,3,2,122.84975015334693,0.0,8719.2312023403,5,1,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00573445053120964,5812.8208015601995,1,1,1_0,1_1_0,1_3_0,1_0_0 -755,0,59.0,0.0,7,111,0.0,,,78,52,0.0,0.0,,230.0,395.67521096374406,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,126782,2,2,0,0,2,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,122.84975015334693,0.0,35981.84884456552,6,1,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0063921117837372554,23987.899229710343,6,3,6,6_1,6_3,6_0_0 -756,0,87.0,0.0,2,111,400.0,,,0,86,0.0,0.0,,650.0,430.0817510475479,,71,0,0,0,0,0,0,0,0,0,,1,,2,126470,2,1,0,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,93.57343009790448,400.0,9447.12,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06880403763263301,9447.12,1,1,1_0,1_1_0,1_3_0,1_0_1 -757,2,48.0,0.0,8,111,1800.0,,,43,55,0.0,0.0,,1900.0,172.03270041901916,,42,0,0,0,0,0,0,0,0,0,,1,1999.0,6,101142,2,1,0,0,1,,564.0,,43,2.0,0.0,6.0,4.0,2.3,2,1,106.78228153707744,1800.0,216449.29279566696,1,1,0,1,160.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00877803745837896,94108.38817202912,10,5,10,10_1,10_3,10_0_0 -758,0,55.0,0.0,5,111,750.0,,,52,52,0.0,0.0,,825.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,124444,2,1,0,0,2,,700.0,,43,3.0,0.0,1.0,3.0,2.0,1,1,87.27389632237833,750.0,27929.97321980047,1,1,5,0,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02953815936404588,13964.986609900236,3,2,3_0,3_1_0,3_3_0,3_0_0 -759,2,63.0,0.0,9,111,732.0,,,77,54,0.0,0.0,,892.0,275.25232067043066,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,116859,2,2,0,0,2,,200.0,,42,1.0,4.0,5.0,2.0,1.5,5,4,126.21601110546527,732.0,63714.11285547095,5,1,1,2,107.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014000037982533197,42476.075236980636,9,5,9,9_1,9_3,9_0_0 -760,0,64.0,0.0,6,111,600.0,,,71,54,0.0,0.0,,900.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,131050,2,1,0,0,2,,1200.0,,42,2.0,6.0,5.0,4.0,2.5,2,2,96.05785916573058,600.0,25344.97142728346,6,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0355100025495063,10137.988570913385,2,1,2_0,2_1_0,2_3_0,2_0_0 -762,2,54.0,0.0,6,111,1200.0,,,0,34,0.0,0.0,,1242.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,0,,1,,4,109504,2,1,0,0,2,,240.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,103.10863150864891,1200.0,84243.9126253093,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0147429049921272,84243.9126253093,10,5,10,10_1,10_3,10_0_0 -763,2,56.0,0.0,9,111,1338.0,,,42,75,0.0,0.0,,1338.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,131420,2,1,0,0,2,,162.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,145.07894294229834,1338.0,121279.63722502935,1,5,1,2,144.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011032354899919402,80853.0914833529,10,5,10,10_1,10_3,10_0_0 -764,2,64.0,0.0,7,111,908.0,,,0,74,0.0,0.0,,948.0,68.81308016760767,,33,0,0,0,0,0,0,0,0,0,,1,,5,119677,2,2,0,0,2,,205.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,112.80396833320184,908.0,25842.906087849802,0,5,0,1,138.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036683180938606126,25842.906087849802,7,4,7,7_1,7_3,7_0_0 -765,2,45.0,0.0,5,111,1100.0,,,0,42,0.0,0.0,,1220.0,206.439240502823,,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,114653,2,2,0,0,2,,240.0,400.0,32,1.0,0.0,4.0,2.0,1.3,1,1,120.41144479842245,1100.0,37789.422065816965,0,1,2,3,113.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03228416666111363,29068.78620447459,8,4,8,8_1,8_3,8_0_0 -766,2,26.0,0.0,7,111,0.0,,,38,38,0.0,0.0,,1294.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,121655,2,2,0,0,2,,643.0,950.0,43,2.0,0.0,3.0,2.0,1.5,3,3,141.23712225228473,0.0,57145.5968400855,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022643914344286056,38097.064560057,9,5,9,9_1,9_3,9_0_0 -767,2,44.0,0.0,9,111,1128.0,,,85,63,0.0,0.0,,1191.0,108.38060126398207,,31,0,0,0,0,0,0,0,0,2,4.0,1,2010.0,6,109310,2,2,0,0,2,,272.0,,42,1.0,1.0,3.0,3.0,1.8,1,1,111.2573712014558,1128.0,25734.354008650193,6,1,1,2,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046280547768934255,14296.863338138995,3,2,3_0,3_1_0,3_3_0,3_0_0 -768,0,62.0,0.0,2,111,600.0,,,81,63,0.0,0.0,,852.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,2,126890,2,2,0,0,2,,600.0,,43,3.0,6.0,3.0,4.0,2.3,3,3,94.95938912162077,600.0,9382.68592312632,4,4,5,0,148.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09080555471861225,4079.4286622288355,1,1,1_0,1_1_0,1_3_0,1_0_1 -769,2,54.0,0.0,7,111,1500.0,,,0,46,0.0,0.0,,1600.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,2,1.0,1,,5,106676,2,1,0,0,2,,160.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,141.8952705682125,1500.0,65803.98925600784,0,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024314635299316927,65803.98925600784,10,5,10,10_1,10_3,10_0_0 -770,2,78.0,0.0,7,111,500.0,,,75,74,0.0,0.0,,632.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,5,116549,2,2,0,0,2,,350.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,110.84491930440463,500.0,11194.793481194705,5,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056454815451633784,7463.195654129803,1,1,1_0,1_1_0,1_3_0,1_0_0 -771,2,65.0,0.0,7,111,324.0,,,0,77,0.0,0.0,,412.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,0,,1,,5,100185,2,2,0,0,2,,375.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,119.64292257518935,324.0,18818.26279943183,0,5,1,2,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02189362559079785,18818.26279943183,5,3,5,5_1,5_3,5_0_0 -772,2,53.0,0.0,8,111,0.0,,,0,45,0.0,0.0,,784.0,0.0,,31,0,0,0,0,0,0,0,0,2,1.0,1,1999.0,6,105552,2,2,0,0,2,,65.0,,32,2.0,0.0,4.0,3.0,1.8,1,1,93.22452928682887,0.0,58296.67709229116,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01344845090842531,32387.042829050642,8,4,8,8_1,8_3,8_0_0 -773,2,75.0,0.0,9,111,588.0,,,77,77,0.0,0.0,,680.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,129271,2,2,0,0,2,,600.0,,41,0.0,2.0,4.0,2.0,1.5,5,5,95.34669486432476,588.0,34344.460326093365,5,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019799408508491448,22896.306884062244,6,3,6,6_1,6_3,6_0_0 -774,2,38.0,0.0,9,111,17.0,,,0,47,0.0,0.0,,17.0,0.0,,10,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,104151,2,1,0,0,2,,95.0,,32,1.0,2.0,5.0,2.0,1.3,1,1,158.57543574991973,17.0,76099.0,0,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0002233932114745266,58537.692307692305,10,5,10,10_1,10_3,10_0_0 -775,2,43.0,0.0,7,111,1200.0,,,0,21,0.0,0.0,,1270.0,120.42289029331342,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,110196,2,1,0,0,2,,500.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,120.67520831601838,1200.0,31007.14812638632,0,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04095829757781759,15503.57406319316,3,2,3_0,3_1_0,3_3_0,3_0_0 -776,2,53.0,0.0,8,111,560.0,,,43,65,0.0,0.0,,564.0,6.881308016760767,,44,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,108966,2,2,0,0,2,,670.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,155.05346390972593,560.0,83816.15081061168,1,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006729013376841852,41908.07540530584,9,5,9,9_1,9_3,9_0_0 -777,2,57.0,0.0,6,111,700.0,,,75,47,0.0,0.0,,798.0,168.59204641063877,,71,0,0,0,0,0,0,0,0,0,,1,,4,106550,2,2,0,0,2,,500.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,137.55361051975493,700.0,71805.0,5,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011113432212241488,47870.0,10,5,10,10_1,10_3,10_0_0 -778,0,71.0,0.0,2,111,420.0,,,77,71,0.0,0.0,,530.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,,2,126260,2,2,0,0,2,,300.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,98.0852867812595,420.0,7966.44117425571,6,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06652907972417393,5310.96078283714,1,1,1_0,1_1_0,1_3_0,1_0_1 -779,2,55.0,0.0,6,111,600.0,,,77,65,0.0,0.0,,840.0,412.878481005646,,12,0,0,0,0,0,0,0,0,2,15.0,1,,4,121895,2,1,0,0,2,,360.0,,42,2.0,0.0,4.0,3.0,2.0,2,2,114.92297737359058,600.0,138253.63283310033,5,1,0,1,182.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006075789711898908,69126.81641655017,10,5,10,10_1,10_3,10_0_0 -780,2,52.0,0.0,7,111,480.0,,,37,31,0.0,0.0,,522.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,116717,2,2,0,0,2,,400.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,151.953680304014,480.0,212533.38845562926,1,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002456084682943726,141688.92563708618,10,5,10,10_1,10_3,10_0_0 -781,2,37.0,0.0,6,111,0.0,,,0,42,0.0,0.0,,682.0,72.25373417598806,,12,0,0,0,0,0,0,0,0,0,,1,,4,116731,2,1,0,0,2,,900.0,1580.0,12,1.0,0.0,4.0,1.0,1.0,3,3,166.0161598814476,0.0,48495.22156982654,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014063241241572894,48495.22156982654,10,5,10,10_1,10_3,10_0_0 -782,2,27.0,0.0,7,111,0.0,,,0,55,0.0,0.0,,632.0,3.4406540083803834,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,116414,2,2,0,0,2,,0.0,682.0,12,1.0,0.0,2.0,1.0,1.0,3,2,131.25246068627163,0.0,24104.742093110515,0,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026218907365145996,24104.742093110515,6,3,6,6_1,6_3,6_0_0 -783,2,41.0,0.0,8,111,200.0,,,34,43,0.0,0.0,,242.0,72.25373417598806,,60,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,128058,2,2,0,0,2,,200.0,815.0,43,2.0,0.0,4.0,3.0,1.8,3,3,91.79321682467639,200.0,38937.30069631277,1,1,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006215120094930375,21631.83372017376,6,3,6,6_0,6_3,6_0_0 -784,1,38.0,290.0,9,111,0.0,,,0,54,0.0,0.0,,1750.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,127017,2,1,0,0,1,,242.0,780.0,32,1.0,0.0,3.0,2.0,1.3,2,2,170.9820473009973,0.0,27402.0,0,1,2,3,42.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0638639515363842,21078.46153846154,5,3,5,5_0,5_3,5_0_0 -785,2,45.0,0.0,9,111,1800.0,,,47,45,0.0,0.0,,1800.0,0.0,,50,0,0,0,0,0,0,0,0,3,30.0,1,2004.0,6,101238,1,2,0,0,2,,125.0,800.0,43,2.0,0.0,4.0,4.0,2.5,2,2,138.59330491187464,1800.0,57687.88286935751,1,1,2,3,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031202393127797014,23075.153147743004,6,3,6,6_1,6_3,6_0_0 -786,2,48.0,0.0,8,111,1100.0,,,0,46,0.0,0.0,,1100.0,0.0,,44,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,130887,1,2,0,0,2,,250.0,653.0,32,1.0,0.0,3.0,2.0,1.5,4,3,153.82221518899013,1100.0,40141.203985565946,0,1,2,3,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02740326374852982,26760.802657043965,7,4,7,7_1,7_3,7_0_0 -787,1,42.0,350.0,9,111,360.0,,,0,56,0.0,0.0,,360.0,0.0,,12,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,127689,1,1,0,0,2,,220.0,810.0,12,1.0,0.0,4.0,1.0,1.0,2,2,109.6585070554014,360.0,9691.318144842453,0,1,2,3,84.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03714664967340749,9691.318144842453,1,1,1_1,1_1_1,1_3_1,1_0_0 -788,1,44.0,90.0,9,111,600.0,,,0,54,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,2,25.0,2,2005.0,6,119144,2,2,0,0,2,,300.0,380.0,32,1.0,0.0,3.0,3.0,1.6,2,2,106.18844229244674,600.0,27483.467677832712,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021831306261398044,17177.167298645443,4,2,4_1,4_0_1,4_3_1,4_0_0 -789,2,40.0,0.0,9,111,600.0,,,0,37,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,108891,2,1,0,0,1,,240.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,151.43605832640347,600.0,48222.80273523528,0,1,1,2,81.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012442246530013362,48222.80273523528,10,5,10,10_0,10_3,10_0_0 -790,1,43.0,240.0,9,111,600.0,,,0,46,0.0,0.0,,692.0,158.27008438549763,,33,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,103312,2,1,0,0,2,,320.0,417.0,32,1.0,0.0,3.0,4.0,2.3,1,1,131.59320501398605,600.0,33689.709565339384,0,1,2,3,66.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020540396724344066,14647.699811017124,3,2,3_1,3_0_1,3_3_1,3_0_0 -791,2,31.0,0.0,9,111,720.0,,,43,43,0.0,0.0,,720.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,110137,2,2,0,0,2,,360.0,665.0,43,2.0,0.0,3.0,3.0,1.8,3,3,170.9820473009973,720.0,71690.97167828957,1,1,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010043105612112106,39828.31759904976,9,5,9,9_0,9_3,9_0_0 -793,1,38.0,329.0,9,111,1000.0,,,0,55,0.0,0.0,,1088.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,118753,2,2,0,0,2,,600.0,563.0,32,2.0,0.0,4.0,3.0,1.8,5,3,101.20944246341635,1000.0,28046.0,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.038793410825073094,15581.111111111111,3,2,3_1,3_1_1,3_3_1,3_0_0 -794,1,38.0,300.0,8,111,282.0,,,0,55,0.0,0.0,,402.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,102616,2,2,0,0,2,,200.0,468.0,32,1.0,0.0,3.0,2.0,1.3,1,1,112.34131881497534,282.0,9394.0,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042793272301469024,7226.153846153846,1,1,1_1,1_0_1,1_3_1,1_0_0 -795,2,49.0,0.0,9,111,0.0,,,34,34,0.0,0.0,,653.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,113938,2,1,0,0,2,,426.0,1000.0,43,2.0,2.0,4.0,2.0,1.5,2,2,130.99138979744595,0.0,87147.0,1,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007493086394253388,58098.0,10,5,10,10_1,10_3,10_0_0 -796,2,89.0,0.0,7,111,312.0,,,0,72,0.0,0.0,,400.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,0,,1,,5,104540,1,3,0,0,2,,136.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,119.64292257518935,312.0,11645.121363145368,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034349148242106366,11645.121363145368,2,1,2_0,2_1_0,2_3_0,2_0_0 -797,0,73.0,0.0,2,111,800.0,,,71,72,0.0,0.0,,938.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,2,128703,2,2,0,0,2,,1000.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,114.92297737359058,800.0,23334.51441674754,7,5,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04019796526499746,15556.342944498361,3,2,3_0,3_1_0,3_3_0,3_0_1 -798,0,47.0,0.0,2,111,470.0,,,0,52,0.0,0.0,,536.0,113.54158227655265,,70,0,0,0,0,0,0,0,0,0,,1,,2,102379,2,2,0,0,2,,350.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,107.81893636210343,470.0,8653.351531951286,0,4,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061941318114824666,6656.424255347143,1,1,1_0,1_1_0,1_3_0,1_0_1 -799,2,49.0,0.0,6,111,600.0,,,46,38,0.0,0.0,,600.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,114017,2,2,0,0,2,,240.0,1109.0,43,2.0,1.0,4.0,3.0,2.0,2,2,154.5172814307315,600.0,94645.30282791176,4,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0063394588222824575,47322.65141395588,10,5,10,10_1,10_3,10_0_0 -800,2,85.0,0.0,2,111,736.0,,,0,86,0.0,0.0,,824.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,0,,1,,2,125726,1,2,0,0,2,,360.0,,21,0.0,0.0,5.0,3.0,1.8,2,2,98.0852867812595,736.0,29052.7085317338,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028362243716449305,16140.393628741,4,2,4_0,4_1_0,4_3_0,4_0_1 -801,2,68.0,0.0,9,111,0.0,,,0,78,0.0,0.0,,44.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,110669,2,2,0,0,2,,0.0,500.0,11,0.0,0.0,3.0,1.0,1.0,3,1,148.0590858880648,0.0,21359.35890053165,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00205998692212175,21359.35890053165,6,3,6,6_1,6_3,6_0_0 -802,2,47.0,0.0,9,111,320.0,,,0,68,0.0,0.0,,364.0,75.69438818436844,,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105770,2,2,0,0,2,,120.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,119.64292257518935,320.0,12822.776551497056,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02838698768072217,12822.776551497056,2,1,2_0,2_1_0,2_3_0,2_0_0 -803,2,37.0,0.0,9,111,480.0,,,0,52,0.0,0.0,,546.0,113.54158227655265,,30,0,0,0,0,0,0,0,0,0,,1,2008.0,6,106794,2,2,0,0,2,,150.0,,32,1.0,1.0,4.0,4.0,2.1,2,2,134.51157797716496,480.0,31634.70626171727,0,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017259524886461226,15064.145838912986,3,2,3_0,3_1_0,3_3_0,3_0_0 -804,1,40.0,350.0,8,111,540.0,,,0,52,0.0,0.0,,582.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,129723,2,1,0,0,2,,540.0,485.0,32,1.0,0.0,3.0,3.0,1.6,2,2,90.56157331680535,540.0,17901.5796896514,0,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03251109734949505,11188.487306032124,2,1,2_1,2_0_1,2_3_1,2_0_0 -805,1,38.0,230.0,8,111,360.0,,,0,46,0.0,0.0,,528.0,289.01493670395223,,10,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,118020,1,1,0,0,2,,310.0,500.0,32,1.0,0.0,3.0,2.0,1.5,2,1,99.49079946489928,360.0,16642.0,0,1,3,4,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03172695589472419,11094.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0 -806,1,35.0,80.0,7,111,600.0,,,81,55,0.0,0.0,,666.0,113.54158227655265,,44,0,0,0,0,0,0,0,0,2,10.0,2,,5,107593,2,2,0,0,2,,300.0,685.0,43,2.0,0.0,3.0,2.0,1.5,2,2,99.49079946489928,600.0,23386.903300702685,4,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0284774769637838,15591.268867135122,3,2,3_1,3_0_1,3_3_1,3_0_0 -807,1,44.0,336.0,7,111,256.0,,,48,85,0.0,0.0,,376.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,2,,5,106812,1,3,0,0,2,,480.0,713.0,42,1.0,1.0,4.0,5.0,2.5999999999999996,1,1,76.24669465604333,256.0,5976.329166957075,4,7,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0629148745820246,2298.588141137337,1,1,1_1,1_0_1,1_3_1,1_0_0 -808,0,47.0,0.0,6,111,330.0,,,0,68,0.0,0.0,,450.0,206.439240502823,,50,0,0,0,0,0,0,0,0,3,15.0,1,,4,106853,1,3,0,0,2,,0.0,,32,1.0,1.0,3.0,3.0,1.6,2,2,105.83674327111206,330.0,9390.961718563594,0,4,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047918414906373434,5869.3510741022465,1,1,1_0,1_1_0,1_3_0,1_0_0 -809,1,35.0,280.0,8,111,420.0,,,0,43,0.0,0.0,,580.0,275.25232067043066,,20,0,0,0,0,0,0,0,0,0,,2,2001.0,6,131209,2,1,0,0,2,,180.0,700.0,32,1.0,0.0,3.0,3.0,1.6,2,2,110.9207952697156,420.0,25827.33512345118,0,4,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02245682712628609,16142.084452156987,4,2,4_1,4_0_1,4_3_1,4_0_0 -810,0,71.0,0.0,2,111,266.0,,,0,72,0.0,0.0,,386.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,2,126043,2,2,0,0,2,,0.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,113.63551882616599,266.0,6864.063720944494,0,5,5,0,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05623490918684049,6864.063720944494,1,1,1_0,1_1_0,1_3_0,1_0_1 -811,1,49.0,496.0,6,111,0.0,,,68,21,0.0,0.0,,84.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,0,,2,,4,105049,2,3,0,0,2,,0.0,550.0,43,2.0,3.0,2.0,3.0,1.8,2,2,138.6348000578148,0.0,18948.313469755805,4,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.004433112220466265,10526.840816531003,2,1,2_1,2_0_1,2_3_1,2_0_0 -812,1,68.0,228.0,6,111,200.0,,,0,77,0.0,0.0,,280.0,137.62616033521533,,41,0,0,0,0,0,0,0,0,0,,1,,4,128729,2,2,0,0,2,,240.0,228.0,11,0.0,3.0,2.0,1.0,1.0,1,1,152.75934694242588,200.0,7504.180867150477,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037312533500584846,7504.180867150477,1,1,1_1,1_1_1,1_3_1,1_0_0 -813,1,24.0,152.0,2,111,300.0,,,0,42,0.0,0.0,,420.0,206.439240502823,,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,121376,1,3,0,0,2,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,159.63046997340106,300.0,8359.0,0,1,2,3,44.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050245244646488815,8359.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -814,1,57.0,467.0,2,111,1080.0,,,85,81,0.0,0.0,,1200.0,206.439240502823,,12,0,0,0,0,0,0,0,0,0,,1,,2,124720,2,2,0,0,2,,109.0,650.0,42,1.0,1.0,4.0,5.0,2.4,2,2,92.00741850003233,1080.0,14911.406245666618,6,4,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08047530730703084,6213.085935694425,1,1,1_1,1_1_1,1_3_1,1_0_1 -815,2,74.0,0.0,1,111,1200.0,,,78,72,0.0,0.0,,1400.0,344.06540083803833,,71,0,0,0,0,0,0,0,0,0,,1,,1,125514,2,1,0,0,2,,180.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,99.9172112993484,1200.0,22761.03070625486,5,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061508638078295465,15174.020470836573,3,2,3_0,3_1_0,3_3_0,3_1_0 -816,2,41.0,0.0,9,111,80.0,,,0,67,0.0,0.0,,240.0,275.25232067043066,,70,0,0,0,0,0,0,0,0,2,40.0,2,2009.0,6,104859,1,1,0,0,2,,313.0,550.0,32,1.0,0.0,3.0,2.0,1.5,5,4,166.52663241092947,80.0,17966.747739612885,0,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013358010224123683,11977.83182640859,2,1,2_0,2_0_0,2_3_0,2_0_0 -817,2,74.0,0.0,9,111,240.0,,,0,75,0.0,0.0,,360.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,2,2009.0,6,113641,2,1,0,0,2,,120.0,370.0,11,0.0,0.0,2.0,1.0,1.0,1,1,155.78001314082496,240.0,19434.839723062236,0,5,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018523435496759368,19434.839723062236,5,3,5,5_0,5_3,5_0_0 -818,2,28.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,672.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,124291,2,1,0,0,2,,448.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,118.0457478180379,0.0,35223.1286446485,0,1,1,2,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01907837338299867,35223.1286446485,9,5,9,9_0,9_3,9_0_0 -819,2,50.0,0.0,8,111,480.0,,,0,46,0.0,0.0,,560.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,2,2002.0,6,125183,2,1,0,0,1,,84.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,111.45421636858671,480.0,43350.81842138017,0,4,1,2,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012917864538488479,43350.81842138017,10,5,10,10_0,10_3,10_0_0 -820,2,57.0,0.0,8,111,1080.0,,,46,21,0.0,0.0,,1128.0,82.5756962011292,,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,109954,2,1,0,0,2,,320.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,131.26185770092502,1080.0,48532.0,4,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02324239676914201,24266.0,7,4,7,7_1,7_3,7_0_0 -821,2,38.0,0.0,9,111,300.0,,,0,46,0.0,0.0,,340.0,68.81308016760767,,31,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,117425,2,2,0,0,2,,180.0,610.0,12,1.0,0.0,2.0,1.0,1.0,1,1,169.395077852602,300.0,39968.0,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008506805444355484,39968.0,9,5,9,9_1,9_3,9_0_0 -822,2,73.0,0.0,5,111,1400.0,,,77,78,0.0,0.0,,1540.0,240.84578058662683,,60,0,0,0,0,0,0,0,0,0,,1,,3,128617,2,1,0,0,2,,1200.0,,41,1.0,1.0,4.0,4.0,2.3,2,2,79.99859593378916,1400.0,41411.121504673945,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03718807759954497,18004.83543681476,4,2,4_0,4_1_0,4_3_0,4_0_0 -823,1,45.0,189.0,7,111,660.0,,,0,54,0.0,0.0,,756.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,108580,2,2,0,0,2,,640.0,410.0,32,1.0,0.0,3.0,2.0,1.3,2,2,99.49079946489928,660.0,21848.58590579541,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03460178170155481,16806.604542919547,4,2,4_1,4_1_1,4_3_1,4_0_0 -824,1,46.0,357.0,7,111,720.0,,,0,55,0.0,0.0,,960.0,412.878481005646,,12,0,0,0,0,0,0,0,0,0,,1,,5,113074,2,2,0,0,2,,200.0,472.0,32,1.0,1.0,4.0,4.0,2.3,2,2,77.1712989977263,720.0,22708.07178776423,0,4,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042275716272716556,9873.074690332274,2,1,2_1,2_1_1,2_3_1,2_0_0 -825,1,51.0,60.0,7,111,1200.0,,,52,56,0.0,0.0,,1320.0,206.439240502823,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,118953,2,1,0,0,2,,400.0,400.0,43,2.0,3.0,3.0,3.0,1.8,1,1,90.56157331680535,1200.0,25646.738692758,1,1,3,4,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05146853234687243,14248.188162643333,3,2,3_1,3_1_1,3_3_1,3_0_0 -826,2,53.0,0.0,7,111,220.0,,,0,21,0.0,0.0,,243.0,39.567521096374406,,10,0,0,0,0,0,0,0,0,2,30.0,2,,5,102559,2,2,0,0,2,,240.0,547.0,12,1.0,0.0,3.0,1.0,1.0,2,2,99.05487170615284,220.0,21727.28768321746,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01118409271985189,21727.28768321746,6,3,6,6_0,6_3,6_0_0 -827,1,52.0,217.0,6,111,300.0,,,0,85,0.0,0.0,,540.0,412.878481005646,,12,0,0,0,0,0,0,0,0,0,,2,,4,118949,1,2,0,0,2,,240.0,443.0,31,0.0,0.0,3.0,2.0,1.5,2,2,92.61430417907452,300.0,10598.0,0,7,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05095301000188715,7065.333333333333,1,1,1_1,1_0_1,1_3_1,1_0_0 -828,2,52.0,0.0,6,111,0.0,,,53,43,0.0,0.0,,799.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,113189,2,2,0,0,2,,410.0,900.0,43,2.0,0.0,4.0,3.0,2.0,2,2,116.17440603145813,0.0,25897.9413763578,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030851873065455546,12948.9706881789,2,1,2_0,2_1_0,2_3_0,2_0_0 -829,2,60.0,0.0,7,111,780.0,,,75,54,0.0,0.0,,950.0,292.4555907123326,,31,0,0,0,0,0,0,0,0,0,,1,,5,132872,2,1,0,0,2,,700.0,,42,2.0,1.0,4.0,3.0,2.0,1,1,121.56948257797286,780.0,59170.88480098102,5,1,0,1,113.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016055193414722262,29585.44240049051,8,4,8,8_1,8_3,8_0_0 -830,2,63.0,0.0,7,111,1200.0,,,77,21,0.0,0.0,,1266.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,0,,1,,5,102996,2,1,0,0,2,,400.0,,42,1.0,0.0,3.0,2.0,1.5,1,1,106.21763597323519,1200.0,68630.52581937879,6,1,1,2,99.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01844660207517348,45753.68387958586,10,5,10,10_1,10_3,10_0_0 -831,2,56.0,0.0,6,111,1500.0,,,77,37,0.0,0.0,,1546.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,2,20.0,1,,4,100803,2,2,0,0,2,,600.0,,42,2.0,1.0,5.0,3.0,2.0,3,2,103.51112897945056,1500.0,82877.76375804625,5,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018653978219216917,41438.88187902312,9,5,9,9_1,9_3,9_0_0 -832,2,50.0,0.0,8,111,480.0,,,42,43,0.0,0.0,,600.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,112532,2,2,0,0,2,,400.0,,43,2.0,2.0,4.0,3.0,1.8,3,2,119.73086219781308,480.0,211606.09692441858,1,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002835457053084382,117558.94273578809,10,5,10,10_1,10_3,10_0_0 -833,1,69.0,240.0,7,111,200.0,,,0,72,0.0,0.0,,294.0,161.71073839387802,,20,0,0,0,0,0,0,0,0,0,,2,,5,102695,2,2,0,0,2,,200.0,480.0,11,0.0,3.0,3.0,1.0,1.0,2,2,99.05487170615284,200.0,21790.928822186106,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013491852614408446,21790.928822186106,6,3,6,6_0,6_3,6_0_0 -834,2,33.0,0.0,6,111,360.0,,,0,37,0.0,0.0,,405.0,77.41471518855863,,60,0,0,0,0,0,0,0,0,2,30.0,2,,4,129818,2,1,0,0,2,,500.0,540.0,12,1.0,0.0,3.0,1.0,1.0,1,1,106.40957100841503,360.0,36683.57310677484,0,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01104036400219703,36683.57310677484,9,5,9,9_0,9_3,9_0_0 -835,2,63.0,0.0,8,111,540.0,,,0,43,0.0,0.0,,771.0,397.3955379679343,,10,0,0,0,0,0,0,0,0,0,,1,2002.0,6,120492,2,2,0,0,2,,400.0,,22,2.0,0.0,4.0,3.0,2.0,1,1,91.7197862926788,540.0,37838.82306360394,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02037589802156406,18919.41153180197,5,3,5,5_1,5_3,5_0_0 -836,2,47.0,0.0,5,111,300.0,,,0,43,0.0,0.0,,342.0,72.25373417598806,,43,0,0,0,0,0,0,0,0,2,1.0,2,,3,120380,2,2,0,0,2,,88.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,111.45421636858671,300.0,30410.164968550154,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011246239550284995,30410.164968550154,8,4,8,8_0,8_3,8_0_0 -837,0,65.0,0.0,5,111,0.0,,,0,31,0.0,0.0,,2334.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,3,107933,2,2,0,0,2,,1089.0,,22,2.0,2.0,4.0,2.0,1.5,1,1,128.19615544318634,0.0,144383.78702514523,0,1,5,0,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01616524990852,96255.85801676348,10,5,10,10_1,10_3,10_0_0 -838,2,80.0,0.0,5,111,900.0,,,86,74,0.0,0.0,,984.0,144.50746835197612,,60,0,0,0,0,0,0,0,0,0,,1,,3,104736,2,2,0,0,1,,360.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,102.64329373697144,900.0,41468.21959178598,6,5,0,1,91.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023729014886255465,27645.47972785732,7,4,7,7_1,7_3,7_0_0 -839,2,61.0,0.0,6,111,500.0,,,0,42,0.0,0.0,,2224.0,0.0,,41,0,0,0,0,0,0,0,0,2,45.0,1,,4,125131,2,2,0,0,2,,200.0,,12,1.0,0.0,5.0,1.0,1.0,3,3,118.40788743824407,500.0,5218.042609142084,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.42621346098315116,5218.042609142084,1,1,1_0,1_1_0,1_3_0,1_0_0 -840,1,27.0,413.0,8,111,420.0,,,0,54,0.0,0.0,,546.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,0,,2,2002.0,6,103010,1,2,0,0,2,,240.0,496.0,32,1.0,0.0,4.0,3.0,1.6,1,1,77.1712989977263,420.0,9398.753513477097,0,4,2,3,82.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05809280977707071,5874.220945923185,1,1,1_1,1_0_1,1_3_1,1_0_0 -841,2,80.0,0.0,2,111,360.0,,,0,75,0.0,0.0,,498.0,237.40512657824647,,33,0,0,0,0,0,0,0,0,0,,1,,2,130892,2,1,0,0,2,,600.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,105.88306538655605,360.0,26684.131257487083,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018662777333636082,26684.131257487083,7,4,7,7_1,7_3,7_0_1 -842,2,61.0,0.0,5,111,1200.0,,,85,21,0.0,0.0,,1440.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,,3,129903,1,2,0,0,2,,420.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,83.26335569929125,1200.0,5598.247351687003,6,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2572233610874774,2799.1236758435016,1,1,1_0,1_1_0,1_3_0,1_0_0 -843,2,38.0,0.0,6,111,200.0,,,0,81,0.0,0.0,,440.0,412.878481005646,,31,0,0,0,0,0,0,0,0,0,,1,,4,123459,2,3,0,0,1,,0.0,700.0,32,1.0,0.0,4.0,3.0,1.6,1,1,101.15034934059437,200.0,13019.790474751671,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03379470667006968,8137.369046719794,1,1,1_0,1_1_0,1_3_0,1_0_0 -844,2,24.0,0.0,7,111,450.0,,,0,43,0.0,0.0,,714.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,1,10.0,2,,5,102683,1,1,0,0,2,,1200.0,530.0,22,3.0,1.0,3.0,3.0,2.0,2,2,90.56157331680535,450.0,30000.0,0,1,2,3,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0238,15000.0,3,2,3_0,3_0_0,3_3_0,3_0_0 -846,1,68.0,375.0,7,111,200.0,,,0,78,0.0,0.0,,320.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,1,,5,106061,2,2,0,0,2,,0.0,400.0,31,0.0,0.0,3.0,2.0,1.5,4,3,118.0457478180379,200.0,8414.319863999612,0,5,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03803040592372883,5609.546575999741,1,1,1_1,1_1_1,1_3_1,1_0_0 -847,2,61.0,0.0,7,111,1200.0,,,77,63,0.0,0.0,,1392.0,330.3027848045168,,70,0,0,0,0,0,0,0,0,2,10.0,1,,5,114748,2,2,0,0,2,,270.0,,42,1.0,0.0,5.0,2.0,1.5,1,1,91.7197862926788,1200.0,53656.52737704456,5,1,0,1,94.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025942789592371725,35771.018251363035,9,5,9,9_1,9_3,9_0_0 -848,2,55.0,0.0,9,111,480.0,,,0,38,0.0,0.0,,480.0,0.0,,71,0,0,0,0,0,0,0,0,2,6.0,2,2008.0,6,131853,1,1,0,0,1,,100.0,900.0,12,1.0,1.0,4.0,1.0,1.0,2,2,129.5876327848858,480.0,58836.890155369685,0,1,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008158147018519695,58836.890155369685,10,5,10,10_0,10_3,10_0_0 -849,1,50.0,413.0,7,111,240.0,,,0,90,0.0,0.0,,400.0,275.25232067043066,,10,0,0,0,0,0,0,0,0,0,,2,,5,106879,2,3,0,0,2,,1000.0,534.0,32,1.0,2.0,4.0,3.0,2.0,1,1,78.77057567440373,240.0,20672.0,0,4,2,3,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01934984520123839,10336.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -850,1,32.0,253.0,6,111,360.0,,,0,46,0.0,0.0,,480.0,206.439240502823,,42,0,0,0,0,0,0,0,0,0,,2,,4,132819,2,1,0,0,2,,800.0,526.0,22,3.0,0.0,4.0,3.0,2.0,2,2,77.1712989977263,360.0,45678.11389829224,0,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010508314793136537,22839.05694914612,6,3,6,6_0,6_3,6_0_0 -851,1,28.0,357.0,7,111,700.0,,,0,55,0.0,0.0,,766.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,,5,101329,2,2,0,0,2,,250.0,850.0,32,1.0,0.0,4.0,3.0,1.8,1,1,86.33210995134922,700.0,9478.166639273235,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08081731722525773,5265.648132929575,1,1,1_1,1_1_1,1_3_1,1_0_0 -852,2,58.0,0.0,7,111,1280.0,,,77,55,0.0,0.0,,1419.0,239.12545358243665,,50,0,0,0,0,0,0,0,0,0,,2,,5,106771,2,2,0,0,2,,400.0,685.0,42,2.0,1.0,4.0,3.0,2.0,3,3,81.9849810100895,1280.0,17168.91963250681,5,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08264934721421453,8584.459816253406,1,1,1_0,1_0_0,1_3_0,1_0_0 -853,2,50.0,0.0,7,111,800.0,,,0,46,0.0,0.0,,866.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,2,20.0,2,,5,125009,2,2,0,0,2,,120.0,639.0,32,1.0,0.0,4.0,3.0,2.0,3,3,84.83993986511786,800.0,46842.667021883004,0,1,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01848741873718334,23421.333510941502,6,3,6,6_0,6_3,6_0_0 -854,1,33.0,570.0,7,111,450.0,,,0,85,0.0,0.0,,710.0,447.28502108944986,,50,0,0,0,0,0,0,0,0,0,,2,,5,126737,2,2,0,0,2,,900.0,610.0,31,0.0,0.0,5.0,7.0,2.9999999999999996,3,2,86.22895358923766,450.0,23764.272058817973,0,6,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029876783022964398,7921.424019605992,1,1,1_1,1_0_1,1_3_1,1_0_0 -855,1,42.0,413.0,7,111,402.0,,,0,22,0.0,0.0,,666.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,2,,5,133186,2,1,0,0,2,,400.0,702.0,32,2.0,1.0,5.0,6.0,3.0999999999999996,1,1,91.9194479336519,402.0,11084.16641536772,0,4,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06008570920377194,3575.537553344426,1,1,1_1,1_0_1,1_3_1,1_0_0 -856,2,23.0,0.0,9,111,0.0,,,0,46,0.0,0.0,,185.0,0.0,,41,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,125955,2,2,0,0,2,,164.0,427.0,12,1.0,1.0,3.0,1.0,1.0,1,1,136.2396706176431,0.0,16962.544680851064,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010906382472722128,16962.544680851064,4,2,4_0,4_0_0,4_3_0,4_0_0 -857,1,47.0,203.0,8,111,540.0,,,0,55,0.0,0.0,,561.0,36.12686708799403,,71,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,124449,2,2,0,0,2,,100.0,496.0,32,1.0,0.0,4.0,2.0,1.5,5,4,99.49079946489928,540.0,25255.677426616454,0,1,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022212827259536237,16837.118284410968,4,2,4_1,4_0_1,4_3_1,4_0_0 -858,1,42.0,140.0,8,111,0.0,,,0,22,0.0,0.0,,351.0,0.0,,50,0,0,0,0,0,0,0,0,2,45.0,2,2000.0,6,130301,2,2,0,0,2,,380.0,461.0,32,1.0,0.0,3.0,2.0,1.3,1,1,98.19560493543153,0.0,20535.198433420366,0,1,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017092603275201807,15796.306487246435,3,2,3_1,3_0_1,3_3_1,3_0_0 -859,1,62.0,309.0,8,111,0.0,,,77,78,0.0,0.0,,1139.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,133134,2,2,0,0,2,,453.0,442.0,41,0.0,2.0,3.0,2.0,1.5,3,3,99.49079946489928,0.0,21460.22913536121,5,5,2,3,53.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053074922584270386,14306.81942357414,3,2,3_1,3_0_1,3_3_1,3_0_0 -860,1,26.0,357.0,8,111,0.0,,,0,54,0.0,0.0,,902.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,109748,2,2,0,0,2,,279.0,416.0,32,1.0,0.0,3.0,2.0,1.3,4,3,96.21049489967595,0.0,9613.126177244554,0,4,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09383003857113041,7394.712444034272,1,1,1_1,1_0_1,1_3_1,1_0_0 -861,1,60.0,244.0,8,111,660.0,,,0,75,0.0,0.0,,723.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,117139,2,2,0,0,2,,100.0,354.0,11,0.0,2.0,3.0,1.0,1.0,2,2,99.05487170615284,660.0,8060.528618523346,0,7,2,3,53.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08969635047737731,8060.528618523346,1,1,1_1,1_0_1,1_3_1,1_0_0 -862,2,46.0,0.0,8,111,264.0,,,0,46,0.0,0.0,,352.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,107465,2,2,0,0,2,,200.0,430.0,32,1.0,0.0,3.0,2.0,1.3,4,3,99.49079946489928,264.0,35891.76727602843,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00980726296626512,27609.051750791103,7,4,7,7_0,7_3,7_0_0 -863,2,52.0,0.0,9,111,720.0,,,0,37,0.0,0.0,,720.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,2,2008.0,6,133130,2,2,0,0,2,,167.0,579.0,12,1.0,2.0,2.0,1.0,1.0,2,2,100.89471857752025,720.0,40541.57108017114,0,1,2,3,23.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01775954855267441,40541.57108017114,9,5,9,9_0,9_3,9_0_0 -864,2,43.0,0.0,9,111,0.0,,,0,46,0.0,0.0,,339.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,126749,2,2,0,0,2,,294.0,598.0,12,1.0,3.0,2.0,1.0,1.0,1,1,141.68209092102748,0.0,31727.82610489328,0,1,2,3,34.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010684627395499913,31727.82610489328,8,4,8,8_0,8_3,8_0_0 -865,2,58.0,0.0,7,111,650.0,,,75,38,0.0,0.0,,720.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,132910,2,1,0,0,2,,400.0,,42,2.0,1.0,5.0,3.0,2.0,2,2,106.73118193470862,650.0,80204.53879921019,5,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008977048067098793,40102.269399605095,9,5,9,9_1,9_3,9_0_0 -866,2,38.0,0.0,6,111,0.0,,,34,34,0.0,0.0,,876.0,0.0,,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,127152,1,3,0,0,2,,385.0,1300.0,43,2.0,0.0,6.0,3.0,1.8,2,2,121.55862045564004,0.0,122718.37112265959,1,1,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007138295529724882,68176.872845922,10,5,10,10_1,10_3,10_0_0 -867,2,74.0,0.0,6,111,1200.0,,,78,71,0.0,0.0,,1263.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,1,,4,130112,2,2,0,0,2,,350.0,,41,1.0,7.0,5.0,3.0,2.0,4,3,93.00296113540847,1200.0,22751.73763611041,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055512243513015466,11375.868818055205,2,1,2_0,2_1_0,2_3_0,2_0_0 -868,1,55.0,100.0,6,111,0.0,,,0,77,0.0,0.0,,703.0,10.32196202514115,,50,0,0,0,0,0,0,0,0,0,,1,,4,125094,2,2,0,0,2,,0.0,350.0,11,0.0,0.0,3.0,1.0,1.0,3,3,114.78301992405801,0.0,8188.456497434888,0,6,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08585256576990077,8188.456497434888,1,1,1_1,1_1_1,1_3_1,1_0_0 -869,2,65.0,0.0,7,111,120.0,,,75,77,0.0,0.0,,258.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,5,123797,2,2,0,0,2,,480.0,,41,0.0,1.0,5.0,2.0,1.5,5,3,115.92963735660148,120.0,59813.174796137784,5,5,0,1,118.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0043134309603084205,39875.449864091854,9,5,9,9_1,9_3,9_0_0 -870,2,63.0,0.0,8,111,0.0,,,0,71,0.0,0.0,,599.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,121715,2,2,0,0,2,,478.0,390.0,11,0.0,4.0,2.0,1.0,1.0,2,2,116.01442126539936,0.0,5129.085218284169,0,5,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11678495764989127,5129.085218284169,1,1,1_0,1_0_0,1_3_0,1_0_0 -871,1,27.0,347.0,8,111,1000.0,,,54,81,0.0,0.0,,1063.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,8,1999.0,6,117461,2,1,0,0,2,,800.0,384.0,43,2.0,0.0,2.0,3.0,1.8,2,2,97.5175712164025,1000.0,9339.867980412619,4,4,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11381317190235472,5188.815544673677,1,1,1_1,1_0_1,1_3_1,1_0_0 -872,1,39.0,19.0,7,111,840.0,,,85,46,0.0,0.0,,882.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,2,40.0,2,,5,121269,2,2,0,0,2,,320.0,397.0,42,2.0,0.0,3.0,4.0,2.3,2,2,106.95405144179861,840.0,37897.50111340905,6,1,2,3,54.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02327330230456612,16477.17439713437,4,2,4_1,4_0_1,4_3_1,4_0_0 -873,1,49.0,467.0,8,111,1356.0,,,0,85,0.0,0.0,,1482.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,119202,2,2,0,0,2,,500.0,573.0,31,0.0,0.0,4.0,4.0,2.3,3,2,91.13895852484335,1356.0,4763.851157215997,0,6,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.31109284297330636,2071.239633572173,1,1,1_1,1_0_1,1_3_1,1_0_0 -874,2,32.0,0.0,2,111,0.0,,,0,47,0.0,0.0,,305.0,0.0,,12,0,0,0,0,0,0,0,0,2,20.0,1,,2,107494,2,1,0,0,2,,0.0,1000.0,32,1.0,0.0,6.0,2.0,1.3,2,2,107.97944359494988,0.0,17584.22030686435,0,1,3,4,175.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017345096608061557,13526.323312972576,3,2,3_0,3_1_0,3_3_0,3_0_1 -875,2,77.0,0.0,2,111,684.0,,,0,75,0.0,0.0,,1004.0,550.5046413408613,,50,0,0,0,0,0,0,0,0,0,,1,,2,119987,2,1,0,0,2,,600.0,,21,0.0,5.0,5.0,2.0,1.5,1,1,126.00488129877523,684.0,35098.386977437185,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028605303162376555,23398.92465162479,6,3,6,6_1,6_3,6_0_1 -876,2,53.0,0.0,5,111,1200.0,,,45,33,0.0,0.0,,1263.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,101569,2,1,0,0,2,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,127.1076308837635,1200.0,112143.15024066475,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01126239094665648,62301.75013370263,10,5,10,10_1,10_3,10_0_0 -877,0,65.0,0.0,2,111,600.0,,,0,75,0.0,0.0,,663.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,0,,1,,2,116972,2,2,0,0,2,,220.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,139.01726547052814,600.0,41429.05827086245,0,5,5,0,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01600326021569976,41429.05827086245,9,5,9,9_1,9_3,9_0_1 -878,0,84.0,0.0,2,111,320.0,,,0,75,0.0,0.0,,342.0,37.84719409218422,,20,0,0,0,0,0,0,0,0,0,,1,,2,115303,1,3,0,0,2,,70.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,99.03568488372754,320.0,29324.619251137974,0,5,5,0,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011662555515933197,29324.619251137974,8,4,8,8_1,8_3,8_0_1 -879,1,78.0,250.0,2,111,420.0,,,0,77,0.0,0.0,,640.0,378.4719409218422,,12,0,0,0,0,0,0,0,0,0,,8,,2,129960,2,3,0,0,2,,200.0,300.0,11,0.0,0.0,3.0,1.0,1.0,2,2,112.4291807324652,420.0,9447.12,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06774551397674634,9447.12,1,1,1_1,1_0_1,1_3_1,1_0_1 -880,1,58.0,55.0,2,111,350.0,,,0,55,0.0,0.0,,405.0,94.61798523046055,,71,0,0,0,0,0,0,0,0,0,,8,,2,104375,2,1,0,0,2,,200.0,243.0,32,1.0,4.0,4.0,2.0,1.5,1,1,87.84270580709622,350.0,9370.488201246984,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0432208003790138,6246.992134164656,1,1,1_1,1_0_1,1_3_1,1_0_1 -881,1,41.0,270.0,2,111,803.0,,,0,65,0.0,0.0,,979.0,302.77755273747374,,50,0,0,0,0,0,0,0,0,0,,8,,2,108363,2,2,0,0,2,,390.0,321.0,22,2.0,0.0,4.0,3.0,2.0,1,1,93.75638627842365,803.0,23057.398574533654,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04245925648703849,11528.699287266827,2,1,2_1,2_0_1,2_3_1,2_0_1 -882,1,35.0,370.0,2,111,1200.0,,,0,56,0.0,0.0,,1464.0,454.1663291062106,,43,0,0,0,0,0,0,0,0,0,,8,,2,133535,2,3,0,0,2,,800.0,400.0,32,1.0,0.0,4.0,6.0,2.6999999999999997,3,3,77.27984322840818,1200.0,27164.62267916991,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05389362544404525,10060.971362655522,2,1,2_1,2_0_1,2_3_1,2_0_1 -884,1,29.0,220.0,2,111,480.0,,,0,43,0.0,0.0,,656.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,0,,8,,2,119612,2,2,0,0,2,,200.0,267.0,32,1.0,0.0,3.0,2.0,1.3,1,1,106.94228275519184,480.0,19089.119417891503,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03436512631301139,14683.938013762694,3,2,3_1,3_0_1,3_3_1,3_0_1 -885,2,90.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,372.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,2,,2,123593,2,2,0,0,2,,200.0,500.0,11,0.0,4.0,5.0,1.0,1.0,2,2,140.62535066564968,240.0,9135.558332619748,0,5,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04072000708174821,9135.558332619748,1,1,1_0,1_0_0,1_3_0,1_0_1 -886,1,43.0,520.0,2,111,1080.0,,,0,52,0.0,0.0,,1164.0,144.50746835197612,,12,0,0,0,0,0,0,0,0,0,,2,,2,114634,2,2,0,0,2,,200.0,700.0,32,1.0,0.0,5.0,4.0,1.9,1,1,99.34480041553256,1080.0,14003.55894532023,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08312172673711568,7370.29418174749,1,1,1_1,1_0_1,1_3_1,1_0_1 -887,1,62.0,300.0,2,111,1200.0,,,85,78,0.0,0.0,,1464.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,2,,2,112667,2,2,0,0,2,,400.0,526.0,41,1.0,0.0,3.0,4.0,2.5,2,2,106.72961484292874,1200.0,12828.989489683963,6,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11411654839823748,5131.595795873585,1,1,1_1,1_0_1,1_3_1,1_0_1 -888,2,58.0,0.0,2,111,720.0,,,85,55,0.0,0.0,,1098.0,650.2836075838925,,43,0,0,0,0,0,0,0,0,0,,2,,2,125189,2,2,0,0,2,,500.0,,42,1.0,2.0,3.0,3.0,2.0,5,5,121.31209771996448,720.0,38450.433544274114,6,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02855624498318589,19225.216772137057,5,3,5,5_0,5_3,5_0_1 -889,1,33.0,357.0,2,111,500.0,,,0,81,0.0,0.0,,764.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,8,,2,117341,2,2,0,0,2,,450.0,650.0,32,1.0,0.0,3.0,3.0,1.8,2,2,167.5985187525312,500.0,5956.9821046265115,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1282528613619028,3309.434502570284,1,1,1_1,1_0_1,1_3_1,1_0_1 -890,2,73.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,280.0,68.81308016760767,,33,0,0,0,0,0,0,0,0,0,,8,,2,112651,1,3,0,0,2,,220.0,359.0,11,0.0,1.0,4.0,1.0,1.0,1,1,99.44651008926839,240.0,28973.039138696375,0,5,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009664157034393819,28973.039138696375,8,4,8,8_0,8_3,8_0_1 -891,1,68.0,190.0,2,111,250.0,,,0,77,0.0,0.0,,290.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,8,,2,121160,1,3,0,0,2,,200.0,293.0,11,0.0,4.0,2.0,1.0,1.0,5,5,124.04781866730336,250.0,10812.854992824257,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026819928704532977,10812.854992824257,2,1,2_1,2_0_1,2_3_1,2_0_1 -892,2,49.0,0.0,2,111,300.0,,,0,42,0.0,0.0,,344.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,0,,8,,2,110759,2,3,0,0,2,,250.0,276.0,12,1.0,0.0,2.0,1.0,1.0,1,1,119.69581721804846,300.0,17720.740778509673,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019412281027053693,17720.740778509673,4,2,4_0,4_0_0,4_3_0,4_0_1 -893,1,72.0,450.0,2,111,300.0,,,0,72,0.0,0.0,,454.0,264.9303586452895,,30,0,0,0,0,0,0,0,0,0,,8,,2,114856,2,2,0,0,2,,500.0,500.0,11,0.0,0.0,2.0,1.0,1.0,6,4,145.84490910468296,300.0,9218.718411024478,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049247626379071374,9218.718411024478,1,1,1_1,1_0_1,1_3_1,1_0_1 -894,1,28.0,350.0,8,111,420.0,,,0,56,0.0,0.0,,441.0,36.12686708799403,,50,0,0,0,0,0,0,0,0,0,,8,1999.0,6,108656,1,2,0,0,2,,87.0,423.0,32,1.0,0.0,3.0,2.0,1.3,2,2,136.90280520291242,420.0,32178.630234242723,0,4,2,3,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013704747429886314,24752.792487879018,7,4,7,7_0,7_3,7_0_0 -895,2,53.0,0.0,2,111,300.0,,,0,33,0.0,0.0,,321.0,36.12686708799403,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,122016,2,2,0,0,2,,739.0,,32,2.0,0.0,5.0,2.0,1.5,1,1,125.2785653876091,300.0,48226.2206582614,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006656130122131207,32150.813772174268,8,4,8,8_1,8_3,8_0_1 -896,2,29.0,0.0,2,111,720.0,,,0,42,0.0,0.0,,764.0,75.69438818436844,,60,0,0,0,0,0,0,0,0,0,,8,,2,115751,1,1,0,0,2,,200.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,124.06562602292455,720.0,37377.81060427984,0,1,1,2,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020439934486492378,23361.1316276749,6,3,6,6_0,6_3,6_0_1 -897,1,30.0,281.0,2,111,600.0,,,0,54,0.0,0.0,,666.0,113.54158227655265,,42,0,0,0,0,0,0,0,0,0,,8,,2,120691,2,2,0,0,2,,260.0,337.0,32,1.0,0.0,3.0,2.0,1.3,2,2,128.45884346708505,600.0,18813.0,0,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.035401052463721897,14471.538461538461,3,2,3_1,3_0_1,3_3_1,3_0_1 -898,1,68.0,54.0,2,111,336.0,,,0,77,0.0,0.0,,528.0,330.3027848045168,,20,0,0,0,0,0,0,0,0,0,,8,,2,102842,2,2,0,0,2,,192.0,341.0,11,0.0,1.0,3.0,1.0,1.0,2,1,137.27117987451842,336.0,13135.0,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.040197944423296536,13135.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -899,2,36.0,0.0,2,111,600.0,,,0,43,0.0,0.0,,688.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,127406,2,1,0,0,2,,800.0,325.0,32,1.0,0.0,3.0,2.0,1.3,1,1,106.94228275519184,600.0,36260.99680129891,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01897355452664652,27893.074462537625,7,4,7,7_0,7_3,7_0_1 -900,2,54.0,0.0,2,111,0.0,,,0,48,0.0,0.0,,567.0,0.0,,42,0,0,0,0,0,0,0,0,0,,8,,2,121211,2,2,0,0,2,,312.0,510.0,12,1.0,0.0,4.0,1.0,1.0,3,3,99.34480041553256,0.0,9408.58525327343,0,1,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06026410823058968,9408.58525327343,1,1,1_0,1_0_0,1_3_0,1_0_1 -901,2,47.0,0.0,2,111,360.0,,,0,53,0.0,0.0,,624.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,1,15.0,2,,2,106085,1,3,0,0,2,,500.0,700.0,22,1.0,5.0,5.0,2.0,1.5,2,2,90.40864306005149,360.0,34475.1099460995,0,1,2,3,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018100014792573536,22983.406630733003,6,3,6,6_0,6_3,6_0_1 -902,1,44.0,479.0,2,111,600.0,,,0,68,0.0,0.0,,696.0,165.1513924022584,,12,0,0,0,0,0,0,0,0,0,,2,,2,101541,2,2,0,0,2,,400.0,529.0,32,1.0,1.0,4.0,5.0,3.0,2,2,77.27984322840818,600.0,26178.340456807047,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026586864860603566,8726.11348560235,1,1,1_1,1_0_1,1_3_1,1_0_1 -903,2,36.0,0.0,2,111,360.0,,,0,43,0.0,0.0,,404.0,75.69438818436844,,10,0,0,0,0,0,0,0,0,0,,8,,2,114306,2,2,0,0,2,,200.0,300.0,12,1.0,1.0,3.0,1.0,1.0,4,3,136.90280520291242,360.0,28327.022191087643,0,4,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014262000335746835,28327.022191087643,8,4,8,8_0,8_3,8_0_1 -904,1,37.0,413.0,6,111,1200.0,,,0,81,0.0,0.0,,1200.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,4,123881,2,1,0,0,2,,360.0,771.0,32,1.0,0.0,4.0,3.0,1.6,2,2,118.90608038610974,1200.0,13327.21814393002,0,4,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09004129646865193,8329.511339956262,1,1,1_1,1_0_1,1_3_1,1_0_0 -905,1,68.0,240.0,2,111,220.0,,,0,77,0.0,0.0,,300.0,137.62616033521533,,41,0,0,0,0,0,0,0,0,0,,2,,2,108026,2,1,0,0,2,,200.0,400.0,11,0.0,0.0,3.0,1.0,1.0,2,2,116.64171393374683,220.0,9218.718411024478,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.032542484391456857,9218.718411024478,1,1,1_1,1_0_1,1_3_1,1_0_1 -906,2,62.0,0.0,2,111,1140.0,,,0,77,0.0,0.0,,1272.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,0,,2,,2,131772,1,3,0,0,2,,600.0,407.0,21,0.0,2.0,5.0,3.0,1.8,3,3,101.3978385745699,1140.0,15750.822765724359,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08075768605358327,8750.457092069088,1,1,1_0,1_0_0,1_3_0,1_0_1 -907,0,38.0,0.0,2,111,20.0,,,0,42,0.0,0.0,,42.0,37.84719409218422,,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,109617,2,1,0,0,2,,170.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,114.35190669648205,20.0,27568.13076721286,0,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00152349828701303,27568.13076721286,7,4,7,7_0,7_3,7_0_1 -908,2,63.0,0.0,6,111,360.0,,,0,86,0.0,0.0,,426.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,1,,4,117728,2,2,0,0,2,,240.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,92.55976558806019,360.0,4643.697520661157,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0917372413049305,4643.697520661157,1,1,1_0,1_1_0,1_3_0,1_0_0 -909,2,45.0,0.0,2,111,500.0,,,54,63,0.0,0.0,,620.0,206.439240502823,,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,102165,2,3,0,0,2,,200.0,450.0,43,2.0,0.0,4.0,4.0,2.1,2,2,90.95684787819887,500.0,49578.67133649406,1,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012505377479602363,23608.891112616217,6,3,6,6_0,6_3,6_0_1 -910,2,34.0,0.0,5,111,420.0,,,0,43,0.0,0.0,,588.0,289.01493670395223,,70,0,0,0,0,0,0,0,0,0,,8,,3,105077,2,1,0,0,2,,160.0,540.0,32,1.0,0.0,4.0,4.0,2.1,2,2,93.75638627842365,420.0,40246.041508577,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014610132523833155,19164.781670750952,5,3,5,5_0,5_3,5_0_0 -911,2,55.0,0.0,2,111,480.0,,,0,35,0.0,0.0,,546.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,111938,1,3,0,0,2,,300.0,521.0,12,1.0,5.0,4.0,1.0,1.0,1,1,109.08604258788807,480.0,24074.506220979085,0,1,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022679592885033004,24074.506220979085,6,3,6,6_0,6_3,6_0_1 -912,1,66.0,180.0,2,111,480.0,,,0,78,0.0,0.0,,568.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,2,,2,103601,2,2,0,0,2,,200.0,384.0,11,0.0,1.0,4.0,1.0,1.0,2,2,99.44651008926839,480.0,10328.73170731707,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05499223100137435,10328.73170731707,2,1,2_1,2_0_1,2_3_1,2_0_1 -914,2,60.0,0.0,2,111,594.0,,,0,78,0.0,0.0,,638.0,75.69438818436844,,60,0,0,0,0,0,0,0,0,0,,2,,2,129410,2,2,0,0,2,,150.0,406.0,11,0.0,2.0,3.0,1.0,1.0,1,1,116.64171393374683,594.0,29596.622606956204,0,7,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021556513676329016,29596.622606956204,8,4,8,8_0,8_3,8_0_1 -915,1,36.0,168.0,2,111,600.0,,,81,47,0.0,0.0,,726.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,107192,1,1,0,0,2,,180.0,443.0,43,2.0,0.0,4.0,5.0,2.4,2,2,77.27984322840818,600.0,31102.61698437503,4,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023342087270814525,12959.423743489595,2,1,2_1,2_0_1,2_3_1,2_0_1 -916,2,53.0,0.0,2,111,480.0,,,0,46,0.0,0.0,,546.0,113.54158227655265,,12,0,0,0,0,0,0,0,0,0,,2,,2,109162,2,1,0,0,2,,160.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,136.90280520291242,480.0,23927.84406318874,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02281860407306739,23927.84406318874,6,3,6,6_0,6_3,6_0_1 -917,1,23.0,357.0,2,111,372.0,,,0,81,0.0,0.0,,570.0,340.62474682965797,,71,0,0,0,0,0,0,0,0,0,,2,,2,121871,2,1,0,0,2,,300.0,419.0,32,1.0,0.0,3.0,2.0,1.3,4,4,114.88059286215415,372.0,17932.00763535581,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03178673640960057,13793.852027196777,3,2,3_1,3_0_1,3_3_1,3_0_1 -918,2,40.0,0.0,2,111,0.0,,,0,42,0.0,0.0,,731.0,0.0,,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,101926,2,2,0,0,2,,383.0,250.0,32,1.0,0.0,4.0,2.0,1.3,3,3,89.66313376979859,0.0,25064.18047230969,0,1,2,3,81.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02916512673564537,19280.138824853606,5,3,5,5_0,5_3,5_0_1 -920,2,35.0,0.0,7,111,810.0,,,0,68,0.0,0.0,,1086.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,5,132839,1,3,0,0,2,,1200.0,,22,4.0,6.0,5.0,4.0,2.5,2,2,92.36821262959822,810.0,2739.5327908976296,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.39641795988291983,1095.813116359052,1,1,1_0,1_1_0,1_3_0,1_0_0 -921,1,51.0,146.0,8,111,672.0,,,56,65,0.0,0.0,,948.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,2,12.0,2,2002.0,6,129675,1,2,0,0,2,,280.0,553.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,76.44569774955478,672.0,29089.348102630312,4,1,2,3,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0325892487055865,11188.210808703969,2,1,2_1,2_0_1,2_3_1,2_0_0 -922,1,59.0,253.0,8,111,1062.0,,,0,77,0.0,0.0,,1338.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,2,2002.0,6,103114,1,2,0,0,2,,378.0,545.0,11,0.0,4.0,4.0,1.0,1.0,3,3,99.31340390857589,1062.0,4262.47665443433,0,7,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.31390201248564137,4262.47665443433,1,1,1_1,1_0_1,1_3_1,1_0_0 -923,1,63.0,50.0,8,111,510.0,,,0,77,0.0,0.0,,648.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,2,2002.0,6,119138,2,3,0,0,2,,210.0,520.0,11,0.0,5.0,3.0,1.0,1.0,1,1,83.10669946022213,510.0,17000.610961909108,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03811627720038315,17000.610961909108,4,2,4_1,4_0_1,4_3_1,4_0_0 -924,2,30.0,0.0,8,111,600.0,,,0,55,0.0,0.0,,738.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,101356,2,2,0,0,2,,230.0,450.0,12,1.0,2.0,3.0,1.0,1.0,2,2,95.48088440159621,600.0,18808.140135706642,0,1,2,3,63.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0392383295038796,18808.140135706642,5,3,5,5_0,5_3,5_0_0 -925,2,37.0,0.0,8,111,366.0,,,0,43,0.0,0.0,,401.0,60.21144514665671,,42,0,0,0,0,0,0,0,0,2,20.0,2,2003.0,6,126559,1,2,0,0,2,,141.0,351.0,32,1.0,0.0,3.0,2.0,1.3,2,2,89.11862958959463,366.0,35698.118911157224,0,1,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011233084886012578,27460.09147012094,7,4,7,7_0,7_3,7_0_0 -926,2,52.0,0.0,8,111,570.0,,,0,54,0.0,0.0,,662.0,158.27008438549763,,42,0,0,0,0,0,0,0,0,2,25.0,2,2003.0,6,129935,2,2,0,0,2,,216.0,453.0,12,1.0,0.0,3.0,1.0,1.0,1,1,116.87815338197424,570.0,30459.895470272604,0,1,2,3,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021733495462782536,30459.895470272604,8,4,8,8_0,8_3,8_0_0 -927,1,46.0,393.0,8,111,360.0,,,0,56,0.0,0.0,,622.0,450.7256750978302,,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,101775,1,2,0,0,2,,280.0,415.0,32,1.0,3.0,4.0,4.0,2.1,1,1,76.44569774955478,360.0,13194.529011076034,0,4,2,3,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04714075049422889,6283.109052893349,1,1,1_1,1_0_1,1_3_1,1_0_0 -928,2,92.0,0.0,2,111,1276.0,,,0,72,0.0,0.0,,1284.0,13.762616033521534,,43,0,0,0,0,0,0,0,0,0,,1,,2,128474,2,1,0,0,2,,1000.0,,11,0.0,5.0,5.0,1.0,1.0,2,1,98.07821583118266,1276.0,18414.448011335073,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06972785712662305,18414.448011335073,4,2,4_0,4_1_0,4_3_0,4_0_1 -929,2,79.0,0.0,5,111,373.0,,,0,71,0.0,0.0,,511.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,3,110824,2,1,0,0,2,,120.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,95.41086837443598,373.0,10345.560975609755,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049393164972369445,10345.560975609755,2,1,2_0,2_1_0,2_3_0,2_0_0 -930,0,36.0,0.0,7,111,500.0,,,0,55,0.0,0.0,,730.0,395.67521096374406,,41,0,0,0,0,0,0,0,0,0,,1,,5,122454,1,2,0,0,2,,260.0,,22,2.0,1.0,4.0,4.0,2.5,4,4,78.72395517876922,500.0,22416.873404676964,0,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03256475543318614,8966.749361870785,1,1,1_0,1_1_0,1_3_0,1_0_0 -931,2,52.0,0.0,8,111,840.0,,,55,46,0.0,0.0,,980.0,240.84578058662683,,50,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,100792,1,1,0,0,2,,280.0,,43,2.0,1.0,4.0,4.0,2.3,2,2,93.58778791777763,840.0,62336.98463134072,1,1,1,2,121.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015721004244842674,27103.036796235097,7,4,7,7_1,7_3,7_0_0 -932,1,53.0,400.0,1,111,1080.0,,,0,56,0.0,0.0,,1402.0,553.9452953492417,,70,0,0,0,0,0,0,0,0,0,,1,,1,121671,2,1,0,0,2,,800.0,400.0,32,1.0,5.0,3.0,4.0,2.1,1,1,106.11297608898226,1080.0,13822.591293324795,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10142815990494154,6582.186330154664,1,1,1_1,1_1_1,1_3_1,1_1_0 -933,1,42.0,200.0,5,111,700.0,,,0,52,0.0,0.0,,976.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,2,5.0,1,,3,123894,2,1,0,0,2,,300.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,94.72656535101584,700.0,25755.923230712535,0,1,1,2,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03789419588097596,16097.452019195334,4,2,4_1,4_1_1,4_3_1,4_0_0 -934,2,83.0,0.0,2,111,1200.0,,,0,77,0.0,0.0,,1476.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,2,113609,1,2,0,0,2,,450.0,,21,1.0,9.0,4.0,3.0,2.0,1,1,107.17317806163273,1200.0,12203.866666666667,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12094527417539797,6101.933333333333,1,1,1_0,1_1_0,1_3_0,1_0_1 -935,2,96.0,0.0,5,111,360.0,,,0,90,0.0,0.0,,498.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,3,100875,2,2,0,0,2,,140.0,,11,0.0,12.0,4.0,1.0,1.0,4,3,107.38423516906569,360.0,7950.245964289259,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06263957143425568,7950.245964289259,1,1,1_0,1_1_0,1_3_0,1_0_0 -936,2,65.0,0.0,7,111,318.0,,,0,78,0.0,0.0,,387.0,118.70256328912323,,41,0,0,0,0,0,0,0,0,0,,1,,5,127182,1,1,0,0,2,,300.0,,11,0.0,2.0,3.0,1.0,1.0,4,4,116.46178409512639,318.0,9834.648522463633,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039350669128239917,9834.648522463633,2,1,2_0,2_1_0,2_3_0,2_0_0 -937,2,70.0,0.0,6,111,720.0,,,0,77,0.0,0.0,,996.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,1,,4,119768,1,1,0,0,2,,448.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,101.67050201151882,720.0,202603.7379113426,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004916000120569541,202603.7379113426,10,5,10,10_1,10_3,10_0_0 -938,2,68.0,0.0,6,111,468.0,,,0,74,0.0,0.0,,588.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,1,,4,106464,1,1,0,0,2,,150.0,,11,0.0,4.0,6.0,1.0,1.0,3,2,95.41086837443598,468.0,81124.44500391625,0,5,0,1,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007248123546134763,81124.44500391625,10,5,10,10_1,10_3,10_0_0 -939,2,39.0,0.0,5,111,100.0,,,0,45,0.0,0.0,,143.0,73.97406118017824,,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,132514,2,1,0,0,2,,100.0,556.0,32,1.0,0.0,4.0,3.0,1.6,3,3,75.9417063821041,100.0,34667.88280547486,0,1,2,3,77.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004124855296251809,21667.426753421787,6,3,6,6_0,6_3,6_0_0 -940,2,46.0,0.0,7,111,420.0,,,63,62,0.0,0.0,,546.0,216.76120252796414,,43,0,0,0,0,0,0,0,0,2,5.0,2,,5,121999,1,1,0,0,2,,400.0,600.0,43,2.0,0.0,4.0,5.0,3.0,1,1,92.15935675298077,420.0,63082.71789900514,1,1,2,3,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008655302405868768,21027.572633001713,5,3,5,5_0,5_3,5_0_0 -941,0,24.0,0.0,7,111,0.0,,,56,54,0.0,0.0,,1069.0,0.0,,10,0,0,0,0,0,0,0,0,2,25.0,1,,5,119212,2,2,0,0,2,,295.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,96.67666016553726,0.0,28395.62022637413,4,1,5,0,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037646650838325496,18930.41348424942,5,3,5,5_1,5_3,5_0_0 -942,2,33.0,0.0,7,111,0.0,,,42,52,0.0,0.0,,683.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,128054,2,1,0,0,1,,172.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,116.66895768993807,0.0,50032.0330287475,4,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013651254179648478,27795.57390485972,7,4,7,7_1,7_3,7_0_0 -943,2,35.0,0.0,8,111,0.0,,,0,53,0.0,0.0,,796.0,0.0,,12,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,126155,2,2,0,0,2,,672.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,82.19896097231718,0.0,22817.573767909125,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034885391764110464,22817.573767909125,6,3,6,6_0,6_3,6_0_0 -944,2,39.0,0.0,8,111,360.0,,,42,68,0.0,0.0,,406.0,79.13504219274881,,41,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,121089,2,2,0,0,2,,258.0,403.0,43,2.0,3.0,3.0,2.0,1.5,1,1,92.8560265660998,360.0,30707.0,4,1,2,3,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013221740971114079,20471.333333333332,5,3,5,5_0,5_3,5_0_0 -945,1,43.0,328.0,8,111,960.0,,,81,22,0.0,0.0,,1212.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,100236,1,2,0,0,2,,468.0,370.0,43,2.0,1.0,3.0,5.0,2.8,3,2,105.61925664330765,960.0,9397.71939136737,4,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12896746003219978,3356.328354059775,1,1,1_1,1_0_1,1_3_1,1_0_0 -946,1,42.0,250.0,8,111,480.0,,,0,63,0.0,0.0,,572.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,3,20.0,2,2001.0,6,121576,2,2,0,0,2,,200.0,410.0,32,1.0,0.0,3.0,3.0,1.8,5,4,99.75046943431576,480.0,18930.881933867568,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030215179725815382,10517.156629926427,2,1,2_1,2_0_1,2_3_1,2_0_0 -947,2,40.0,0.0,8,111,900.0,,,55,42,0.0,0.0,,1026.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,133119,1,2,0,0,2,,440.0,497.0,43,2.0,0.0,3.0,4.0,2.1,1,1,92.6713709107117,900.0,33204.634449880155,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03089930116678948,15811.730690419121,3,2,3_0,3_0_0,3_3_0,3_0_0 -948,1,50.0,64.0,8,111,220.0,,,0,68,0.0,0.0,,358.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,108553,1,2,0,0,2,,134.0,218.0,12,1.0,0.0,1.0,1.0,1.0,2,2,98.7469140272362,220.0,14764.11469338143,0,1,2,3,25.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02424798285809084,14764.11469338143,3,2,3_1,3_0_1,3_3_1,3_0_0 -949,0,50.0,0.0,5,111,660.0,,,0,55,0.0,0.0,,752.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,2,5.0,1,,3,101063,2,2,0,0,2,,240.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,98.98212538139661,660.0,9633.661778911646,0,1,5,0,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07805962231787594,9633.661778911646,1,1,1_0,1_1_0,1_3_0,1_0_0 -950,1,38.0,205.0,9,111,684.0,,,0,56,0.0,0.0,,707.0,39.567521096374406,,50,0,0,0,0,0,0,0,0,2,60.0,2,2011.0,6,127116,2,1,0,0,1,,366.0,788.0,32,1.0,0.0,3.0,3.0,1.6,3,3,136.91305833075566,684.0,30330.868574994493,0,1,2,3,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02330958634606554,18956.792859371555,5,3,5,5_0,5_3,5_0_0 -951,2,50.0,0.0,9,111,1200.0,,,0,53,0.0,0.0,,1200.0,0.0,,12,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,115337,2,3,0,0,2,,240.0,674.0,32,1.0,0.0,3.0,2.0,1.5,1,1,118.18303789331114,1200.0,42474.47291878305,0,1,2,3,77.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028252263478220498,28316.3152791887,8,4,8,8_0,8_3,8_0_0 -952,2,27.0,0.0,9,111,1020.0,,,0,55,0.0,0.0,,1020.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,112877,2,3,0,0,2,,460.0,623.0,32,1.0,0.0,3.0,2.0,1.3,2,2,117.79687310344285,1020.0,31706.81589664723,0,1,2,3,76.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032169739254954886,24389.85838203633,7,4,7,7_0,7_3,7_0_0 -953,2,26.0,0.0,9,111,1020.0,,,0,42,0.0,0.0,,1020.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,2,2010.0,6,104916,2,2,0,0,2,,200.0,631.0,12,1.0,0.0,2.0,1.0,1.0,1,1,176.30411495971663,1020.0,24596.269759837407,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04146970292485289,24596.269759837407,7,4,7,7_0,7_3,7_0_0 -954,2,79.0,0.0,5,111,1200.0,,,72,90,0.0,0.0,,1752.0,949.6205063129859,,71,0,0,0,0,0,0,0,0,0,,1,,3,114972,2,1,0,0,2,,700.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,78.8815443707613,1200.0,11578.905195829197,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15130964200579886,7719.270130552798,1,1,1_0,1_1_0,1_3_0,1_0_0 -955,2,77.0,0.0,2,111,648.0,,,86,75,0.0,0.0,,924.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,2,115134,1,2,0,0,2,,450.0,,41,1.0,5.0,4.0,3.0,2.0,2,2,77.12584955195769,648.0,13990.0,6,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06604717655468191,6995.0,1,1,1_0,1_1_0,1_3_0,1_0_1 -956,2,29.0,0.0,2,111,1005.0,,,0,64,0.0,0.0,,1120.0,197.83760548187203,,71,0,0,0,0,0,0,0,0,0,,1,,2,130359,2,1,0,0,2,,700.0,,22,1.0,5.0,4.0,3.0,2.0,2,2,105.0306031590758,1005.0,49049.31811578575,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022834160453691316,24524.659057892874,7,4,7,7_1,7_3,7_0_1 -957,2,75.0,0.0,9,111,400.0,,,86,86,0.0,0.0,,676.0,474.81025315649293,,44,0,0,0,0,0,0,0,0,0,,1,2004.0,6,126528,1,1,0,0,2,,400.0,,41,1.0,5.0,6.0,3.0,2.0,4,3,107.17317806163273,400.0,20850.032032346826,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03242201253941725,10425.016016173413,2,1,2_0,2_1_0,2_3_0,2_0_0 -958,2,41.0,0.0,1,111,280.0,,,0,56,0.0,0.0,,544.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,1,115628,1,1,0,0,2,,280.0,638.0,32,1.0,1.0,4.0,2.0,1.5,3,2,88.7106756073776,280.0,9339.867980412619,0,4,2,3,63.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05824493463300185,6226.578653608412,1,1,1_0,1_1_0,1_3_0,1_1_0 -959,2,49.0,0.0,1,111,250.0,,,0,52,0.0,0.0,,338.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,1,101172,2,1,0,0,2,,186.0,,32,1.0,1.0,5.0,3.0,1.8,2,2,80.36795017805649,250.0,29953.88165625409,0,4,0,1,104.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011284013333524965,16641.045364585603,4,2,4_0,4_1_0,4_3_0,4_1_0 -960,2,37.0,0.0,9,111,0.0,,,55,38,0.0,0.0,,592.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,118486,1,1,0,0,2,,560.0,800.0,43,2.0,0.0,4.0,3.0,1.8,2,2,90.72189027874329,0.0,58195.340234381416,1,1,3,4,78.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010172635774887185,32330.744574656343,8,4,8,8_1,8_3,8_0_0 -961,2,71.0,0.0,5,111,960.0,,,86,78,0.0,0.0,,1236.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,3,124769,1,3,0,0,2,,500.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,92.55211661365105,960.0,17488.0,6,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07067703568161025,11658.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_0 -962,2,74.0,0.0,1,111,575.0,,,0,78,0.0,0.0,,851.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,1,117164,2,2,0,0,2,,424.0,,21,1.0,2.0,3.0,2.0,1.5,1,1,78.8815443707613,575.0,20861.66841136693,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04079251875829425,13907.778940911287,3,2,3_0,3_1_0,3_3_0,3_1_0 -963,1,43.0,350.0,7,111,0.0,,,0,85,0.0,0.0,,264.0,454.1663291062106,,44,0,0,0,0,0,0,0,0,0,,8,,5,106187,2,1,0,0,2,,0.0,480.0,31,0.0,1.0,3.0,3.0,1.6,1,1,106.32213716865144,0.0,9720.803795501688,0,7,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027158247975560032,6075.502372188555,1,1,1_1,1_0_1,1_3_1,1_0_0 -964,2,65.0,0.0,5,111,705.0,,,0,75,0.0,0.0,,843.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,3,133429,2,1,0,0,2,,350.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,113.62325777783849,705.0,9447.12,0,5,0,1,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08923354419124557,9447.12,1,1,1_0,1_1_0,1_3_0,1_0_0 -965,1,43.0,407.0,6,111,780.0,,,0,54,0.0,0.0,,830.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,15.0,2,,4,111494,2,2,0,0,2,,400.0,524.0,32,1.0,0.0,4.0,4.0,1.9,2,2,76.44569774955478,780.0,25527.811523887336,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03251355876015215,13435.690275730178,3,2,3_1,3_0_1,3_3_1,3_0_0 -966,2,47.0,0.0,5,111,1500.0,,,54,67,0.0,0.0,,1584.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,110191,2,3,0,0,2,,220.0,550.0,43,2.0,4.0,4.0,4.0,2.1,4,4,77.51550132117286,1500.0,66310.56703922617,1,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023887595457643743,31576.460494869603,8,4,8,8_0,8_3,8_0_0 -967,1,30.0,180.0,5,111,0.0,,,0,54,0.0,0.0,,729.0,0.0,,50,0,0,0,0,0,0,0,0,2,35.0,2,,3,133046,2,1,0,0,2,,307.0,500.0,22,2.0,0.0,2.0,2.0,1.5,1,1,96.27086463012884,0.0,23671.0,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030797177981496345,15780.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0 -970,1,40.0,210.0,2,111,398.0,,,52,56,0.0,0.0,,498.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,112356,1,3,0,0,2,,425.0,400.0,43,2.0,0.0,4.0,2.0,1.5,4,4,88.21738448616928,398.0,9294.60330613573,4,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0535794787144117,6196.4022040904865,1,1,1_1,1_0_1,1_3_1,1_0_1 -971,2,49.0,0.0,2,111,302.4,,,0,45,0.0,0.0,,378.0,130.142737866988,,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,114742,2,2,0,0,2,,60.0,430.0,32,2.0,1.0,4.0,2.0,1.5,2,2,75.9417063821041,302.4,5669.017736209078,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06667821791871337,3779.3451574727187,1,1,1_0,1_0_0,1_3_0,1_0_1 -972,1,90.0,239.0,5,111,312.0,,,0,86,0.0,0.0,,380.0,116.98223628493304,,50,0,0,0,0,0,0,0,0,0,,2,,3,109684,2,3,0,0,2,,360.0,244.0,11,0.0,8.0,3.0,1.0,1.0,1,1,97.47660180046059,312.0,9826.60524786718,0,5,2,3,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03867052663812635,9826.60524786718,2,1,2_1,2_0_1,2_3_1,2_0_0 -973,1,93.0,230.0,2,111,420.0,,,0,72,0.0,0.0,,545.0,215.04087552377396,,43,0,0,0,0,0,0,0,0,0,,8,,2,129870,2,2,0,0,2,,256.0,258.0,11,0.0,3.0,4.0,1.0,1.0,2,2,97.47660180046059,420.0,12468.229994445446,0,5,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.043711096141376575,12468.229994445446,2,1,2_1,2_0_1,2_3_1,2_0_1 -974,0,35.0,0.0,2,111,1200.0,,,48,42,0.0,0.0,,1350.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,2,3.0,2,,2,120501,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,91.63852141976899,1200.0,51759.280447625686,1,1,5,0,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026082279126079456,28755.155804236492,8,4,8,8_0,8_3,8_0_1 -975,2,60.0,0.0,2,111,550.0,,,0,77,0.0,0.0,,638.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,8,,2,130149,2,1,0,0,2,,360.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,113.34637044704188,550.0,14384.326355741616,0,5,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04435383237431465,14384.326355741616,3,2,3_0,3_0_0,3_3_0,3_0_1 -976,2,53.0,0.0,6,111,770.0,,,0,85,0.0,0.0,,1022.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,8,,4,125422,1,2,0,0,2,,426.0,566.0,31,2.0,2.0,5.0,4.0,2.5,1,1,94.88319945393891,770.0,14111.599462365592,0,7,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07242269047712027,5644.639784946236,1,1,1_0,1_0_0,1_3_0,1_0_0 -977,2,62.0,0.0,5,111,420.0,,,0,52,0.0,0.0,,464.0,75.69438818436844,,41,0,0,0,0,0,0,0,0,2,10.0,8,,3,105878,2,1,0,0,2,,180.0,580.0,12,1.0,5.0,4.0,1.0,1.0,2,2,99.31340390857589,420.0,37236.73524821234,0,1,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012460813143447524,37236.73524821234,9,5,9,9_0,9_3,9_0_0 -978,1,29.0,363.0,9,111,310.0,,,0,81,0.0,0.0,,478.0,289.01493670395223,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,123583,2,2,0,0,2,,200.0,392.0,32,1.0,0.0,2.0,3.0,1.6,2,2,128.2002245843361,310.0,18860.090907064205,0,4,2,3,94.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0253445225876913,11787.556816915127,2,1,2_1,2_1_1,2_3_1,2_0_0 -979,1,41.0,70.0,9,111,600.0,,,0,64,0.0,0.0,,732.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,113590,2,2,0,0,2,,300.0,470.0,32,2.0,0.0,3.0,4.0,2.1,2,2,108.49118166352778,600.0,6491.873010315672,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11275636458643636,3091.36810015032,1,1,1_1,1_1_1,1_3_1,1_0_0 -980,2,46.0,0.0,8,111,100.0,,,0,47,0.0,0.0,,140.0,68.81308016760767,,12,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,132589,2,1,0,0,2,,120.0,550.0,12,1.0,3.0,3.0,1.0,1.0,2,1,118.635315105618,100.0,18084.04355835212,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007741631430396603,18084.04355835212,4,2,4_0,4_1_0,4_3_0,4_0_0 -981,1,48.0,340.0,9,111,900.0,,,62,43,0.0,0.0,,1005.0,180.63433543997013,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,101325,2,1,0,0,2,,372.0,523.0,43,3.0,1.0,4.0,3.0,2.0,3,3,108.49118166352778,900.0,12361.342925420757,4,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08130184609094904,6180.671462710378,1,1,1_1,1_1_1,1_3_1,1_0_0 -982,2,38.0,0.0,2,111,1080.0,,,0,52,0.0,0.0,,1300.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,2,104975,2,1,0,0,2,,400.0,,32,1.0,2.0,3.0,4.0,2.3,1,1,89.48042802128604,1080.0,41784.02672457686,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031112367617632114,18166.96814112038,4,2,4_0,4_1_0,4_3_0,4_0_1 -983,2,80.0,0.0,2,111,468.0,,,0,86,0.0,0.0,,720.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,2,105473,2,1,0,0,2,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,134.61117987465653,468.0,21812.562475562845,0,7,0,1,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033008501445285665,21812.562475562845,6,3,6,6_1,6_3,6_0_1 -984,2,82.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,612.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,2,126127,2,1,0,0,2,,300.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,117.27314885371901,360.0,9440.912318931154,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06482424360332234,9440.912318931154,1,1,1_0,1_1_0,1_3_0,1_0_1 -985,2,46.0,0.0,7,111,78.0,,,43,46,0.0,0.0,,225.0,252.8880696159582,,31,0,0,0,0,0,0,0,0,2,15.0,3,,5,108561,1,1,0,0,2,,440.0,533.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,4,2,152.59321565517854,78.0,115036.42919150667,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0019559021570934865,44244.7804582718,10,5,10,10_0,10_3,10_0_0 -986,2,31.0,0.0,9,111,0.0,,,43,21,0.0,0.0,,1223.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,130048,2,1,0,0,2,,138.0,,43,2.0,0.0,3.0,2.0,1.5,5,5,226.24585543179114,0.0,14849.66345269309,4,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08235876886342501,9899.775635128726,2,1,2_0,2_1_0,2_3_0,2_0_0 -987,0,89.0,0.0,2,111,420.0,,,77,71,0.0,0.0,,672.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,2,124441,2,1,0,0,2,,400.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,124.18572259271954,420.0,19128.16379176894,5,5,5,0,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03513144321198091,12752.109194512626,2,1,2_0,2_1_0,2_3_0,2_0_1 -988,2,40.0,0.0,9,111,480.0,,,54,52,0.0,0.0,,732.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,109663,2,1,0,0,2,,360.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,148.18026954554549,480.0,51685.6940083346,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014162526285938252,24612.235242064093,7,4,7,7_1,7_3,7_0_0 -989,2,50.0,0.0,7,111,330.0,,,0,52,0.0,0.0,,582.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,129976,2,1,0,0,2,,500.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,99.48423475439284,330.0,39653.66991774016,0,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014677077839386217,39653.66991774016,9,5,9,9_1,9_3,9_0_0 -990,2,82.0,0.0,2,111,180.0,,,78,77,0.0,0.0,,432.0,433.5224050559283,,60,0,0,0,0,0,0,0,0,0,,1,,2,113216,2,2,0,0,2,,220.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,126.57557935853136,180.0,26812.0,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01611218857228107,17874.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_1 -991,1,46.0,120.0,7,111,450.0,,,0,56,0.0,0.0,,702.0,433.5224050559283,,12,0,0,0,0,0,0,0,0,0,,3,,5,128272,2,1,0,0,2,,220.0,331.0,32,2.0,1.0,3.0,2.0,1.5,4,4,93.6761368523319,450.0,19209.174496407955,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03654503737947049,12806.116330938637,2,1,2_1,2_0_1,2_3_1,2_0_0 -992,2,36.0,0.0,7,111,600.0,,,55,46,0.0,0.0,,726.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,2,15.0,3,,5,102471,2,1,0,0,2,,340.0,391.0,43,2.0,0.0,3.0,3.0,1.8,2,2,93.13567391873444,600.0,41530.92455679571,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017480949623627017,23072.735864886505,6,3,6,6_0,6_3,6_0_0 -993,2,65.0,0.0,7,111,1320.0,,,0,22,0.0,0.0,,1572.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,2,10.0,3,,5,103512,2,2,0,0,2,,650.0,458.0,11,0.0,8.0,3.0,1.0,1.0,2,1,111.80195824393986,1320.0,14753.111342512317,0,6,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10655379489139699,14753.111342512317,3,2,3_0,3_0_0,3_3_0,3_0_0 -994,2,56.0,0.0,2,111,100.0,,,0,63,0.0,0.0,,226.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,3,,2,123911,2,3,0,0,2,,0.0,150.0,12,1.0,0.0,2.0,1.0,1.0,3,3,166.787400379696,100.0,8893.601158237056,0,4,3,4,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025411528578688714,8893.601158237056,1,1,1_0,1_0_0,1_3_0,1_0_1 -995,2,62.0,0.0,7,111,240.0,,,0,21,0.0,0.0,,284.0,75.69438818436844,,10,0,0,0,0,0,0,0,0,0,,2,,5,121482,2,2,0,0,2,,240.0,700.0,12,1.0,2.0,4.0,1.0,1.0,2,2,110.01678498603566,240.0,8920.22802431745,0,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031837751145574654,8920.22802431745,1,1,1_0,1_0_0,1_3_0,1_0_0 -996,2,54.0,0.0,8,111,960.0,,,45,35,0.0,0.0,,1026.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,124525,2,1,0,0,2,,540.0,,43,2.0,2.0,5.0,3.0,1.8,1,1,126.51116930801136,960.0,105342.37388923283,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009739670392076372,58523.54104957379,10,5,10,10_1,10_3,10_0_0 -997,2,58.0,0.0,5,111,1150.0,,,0,64,0.0,0.0,,1216.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,,3,124587,2,3,0,0,2,,600.0,,22,3.0,1.0,3.0,4.0,2.5,2,2,92.97898489201188,1150.0,15259.571451640217,0,4,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07968769004120983,6103.828580656087,1,1,1_0,1_1_0,1_3_0,1_0_0 -998,2,56.0,0.0,7,111,750.0,,,0,54,0.0,0.0,,792.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,122306,2,1,0,0,2,,500.0,650.0,32,1.0,1.0,4.0,2.0,1.5,2,2,125.1556349072796,750.0,35184.805658183934,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022509716486547707,23456.537105455955,6,3,6,6_1,6_3,6_0_0 -999,2,40.0,0.0,8,111,0.0,,,0,53,0.0,0.0,,2047.0,0.0,,71,0,0,0,0,0,0,0,0,3,20.0,1,2003.0,6,114025,2,3,0,0,2,,413.0,610.0,32,1.0,0.0,4.0,3.0,1.8,3,3,106.93539702968447,0.0,42091.0,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0486327243353686,23383.888888888887,6,3,6,6_1,6_3,6_0_0 -1000,2,74.0,0.0,5,111,789.0,,,0,86,0.0,0.0,,877.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,3,112842,1,3,0,0,2,,750.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,84.69405320062475,789.0,21117.57960109537,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04152938057136576,21117.57960109537,5,3,5,5_1,5_3,5_0_0 -1001,2,51.0,0.0,7,111,720.0,,,68,21,0.0,0.0,,842.0,209.8798945112034,,50,0,0,0,0,0,0,0,0,1,30.0,1,,5,107353,2,2,0,0,2,,648.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,128.3449487389137,720.0,14981.69826653351,1,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056201906153782344,6513.78185501457,1,1,1_0,1_1_0,1_3_0,1_0_0 -1002,2,45.0,0.0,7,111,900.0,,,72,21,0.0,0.0,,1005.0,180.63433543997013,,50,0,0,0,0,0,0,0,0,0,,1,,5,103718,2,2,0,0,2,,600.0,,42,1.0,1.0,4.0,4.0,2.5,3,2,109.53347045536245,900.0,5115.505439591257,7,4,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19646152503755374,2046.2021758365026,1,1,1_0,1_1_0,1_3_0,1_0_0 -1003,1,56.0,350.0,5,111,600.0,,,0,54,0.0,0.0,,650.0,86.01635020950958,,41,0,0,0,0,0,0,0,0,0,,1,,3,116021,2,1,0,0,2,,500.0,750.0,32,1.0,0.0,4.0,2.0,1.5,1,1,153.77598430339927,600.0,9001.060777442362,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0722137108138377,6000.707184961575,1,1,1_1,1_1_1,1_3_1,1_0_0 -1004,0,53.0,0.0,6,111,400.0,,,0,35,0.0,0.0,,400.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,4,112096,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,129.25942249015466,400.0,1124.2696091107,0,4,5,0,104.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3557865451120759,1124.2696091107,1,1,1_0,1_1_0,1_3_0,1_0_0 -1005,1,33.0,357.0,6,111,450.0,,,0,56,0.0,0.0,,494.0,75.69438818436844,,60,0,0,0,0,0,0,0,0,0,,2,,4,102596,2,3,0,0,2,,0.0,507.0,32,1.0,0.0,3.0,2.0,1.3,1,1,150.00240377985335,450.0,9372.831511186749,0,4,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052705524409608406,7209.870393220575,1,1,1_1,1_0_1,1_3_1,1_0_0 -1006,2,67.0,0.0,6,111,1500.0,,,34,34,0.0,0.0,,1588.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,2,1.0,1,,4,100292,2,1,0,0,2,,359.0,,43,3.0,0.0,5.0,3.0,2.0,1,1,107.87746008577363,1500.0,57630.48530347227,1,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027554860793516902,28815.242651736135,8,4,8,8_1,8_3,8_0_0 -1007,2,73.0,0.0,7,111,550.0,,,0,75,0.0,0.0,,575.0,43.00817510475479,,71,0,0,0,0,0,0,0,0,0,,1,,5,131986,2,1,0,0,2,,600.0,,11,0.0,0.0,3.0,1.0,1.0,4,4,135.25844679362305,550.0,27409.937118643044,0,5,0,1,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02097779347362713,27409.937118643044,7,4,7,7_1,7_3,7_0_0 -1008,2,75.0,0.0,6,111,960.0,,,21,86,0.0,0.0,,1030.0,121.11102109498951,,31,0,0,0,0,0,0,0,0,0,,1,,4,104963,2,2,0,0,2,,674.0,,42,1.0,2.0,3.0,2.0,1.5,3,3,113.50222619189918,960.0,29658.765195495424,1,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034728350732431586,19772.510130330284,5,3,5,5_1,5_3,5_0_0 -1009,2,68.0,0.0,5,111,600.0,,,0,77,0.0,0.0,,1200.0,1032.196202514115,,10,0,0,0,0,0,0,0,0,0,,1,,3,109988,2,2,0,0,2,,600.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,116.00707150981351,600.0,14992.0,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08004268943436499,14992.0,3,2,3_0,3_1_0,3_3_0,3_0_0 -1010,2,59.0,0.0,5,111,0.0,,,77,55,0.0,0.0,,297.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,110999,2,1,0,0,2,,600.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,112.06913666141347,0.0,26965.124718046747,5,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011014226824666939,17976.749812031165,4,2,4_0,4_1_0,4_3_0,4_0_0 -1011,2,45.0,0.0,7,111,600.0,,,42,37,0.0,0.0,,842.0,416.3191350140264,,41,0,0,0,0,0,0,0,0,2,70.0,1,,5,125320,2,2,0,0,2,,480.0,750.0,43,2.0,0.0,4.0,4.0,2.1,1,1,151.20307734663513,600.0,77599.53873615892,1,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010850579961084933,36952.16130293282,9,5,9,9_1,9_3,9_0_0 -1012,2,89.0,0.0,6,111,660.0,,,0,77,0.0,0.0,,968.0,529.860717290579,,30,0,0,0,0,0,0,0,0,0,,1,,4,102537,1,3,0,0,2,,500.0,,21,2.0,9.0,8.0,3.0,2.0,1,1,89.65961058390245,660.0,11852.533333333333,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08167030395752245,5926.266666666666,1,1,1_0,1_1_0,1_3_0,1_0_0 -1013,2,84.0,0.0,2,111,432.0,,,0,86,0.0,0.0,,558.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,2,127424,2,3,0,0,2,,170.0,,11,0.0,7.0,5.0,1.0,1.0,4,3,95.93686638535515,432.0,12296.516972003226,0,6,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045378703682551515,12296.516972003226,2,1,2_0,2_1_0,2_3_0,2_0_1 -1014,2,89.0,0.0,7,111,200.0,,,0,77,0.0,0.0,,989.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,130135,2,2,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,116.67187317173565,200.0,9218.718411024478,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1072817235438361,9218.718411024478,1,1,1_0,1_1_0,1_3_0,1_0_0 -1015,2,44.0,0.0,7,111,300.0,,,0,21,0.0,0.0,,350.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,116284,2,1,0,0,2,,145.0,500.0,12,1.0,0.0,4.0,1.0,1.0,2,1,129.15321896643906,300.0,32065.40817655884,0,1,2,3,63.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01091518929286123,32065.40817655884,8,4,8,8_1,8_3,8_0_0 -1016,2,63.0,0.0,5,111,400.0,,,0,86,0.0,0.0,,568.0,289.01493670395223,,50,0,0,0,0,0,0,0,0,0,,1,,3,122667,2,2,0,0,2,,250.0,,11,0.0,5.0,4.0,1.0,1.0,3,1,112.46237329512364,400.0,13835.173925574496,0,6,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041054778426026485,13835.173925574496,3,2,3_0,3_1_0,3_3_0,3_0_0 -1017,2,58.0,0.0,7,111,1000.0,,,81,21,0.0,0.0,,1168.0,289.01493670395223,,12,0,0,0,0,0,0,0,0,0,,1,,5,119354,2,2,0,0,2,,450.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,123.80131426466332,1000.0,16521.621592714706,4,4,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07069523977688943,8260.810796357353,1,1,1_0,1_1_0,1_3_0,1_0_0 -1018,0,52.0,0.0,2,111,270.0,,,0,81,0.0,0.0,,522.0,433.5224050559283,,44,0,0,0,0,0,0,0,0,0,,1,,2,100406,2,1,0,0,2,,600.0,,22,2.0,0.0,4.0,4.0,2.1,2,2,108.16938978014302,270.0,9054.52004454899,0,4,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05765076419641424,4311.676211689995,1,1,1_0,1_1_0,1_3_0,1_0_1 -1019,2,81.0,0.0,2,111,540.0,,,0,77,0.0,0.0,,792.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,2,102861,2,1,0,0,2,,160.0,,21,1.0,6.0,4.0,2.0,1.5,2,2,112.23872386524643,540.0,8472.457882824176,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09347936702117873,5648.305255216117,1,1,1_0,1_1_0,1_3_0,1_0_1 -1020,2,50.0,0.0,7,111,540.0,,,78,68,0.0,0.0,,792.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,5,111386,2,1,0,0,2,,600.0,,42,2.0,0.0,5.0,4.0,2.3,4,3,97.63150140446767,540.0,24454.410740559248,7,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03238679551114335,10632.352495895326,2,1,2_0,2_1_0,2_3_0,2_0_0 -1021,2,50.0,0.0,7,111,420.0,,,0,56,0.0,0.0,,672.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,115178,1,2,0,0,2,,300.0,,32,1.0,0.0,6.0,3.0,2.0,1,1,108.8114209744089,420.0,20882.22185467309,0,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032180483699325205,10441.110927336546,2,1,2_0,2_1_0,2_3_0,2_0_0 -1022,2,89.0,0.0,1,111,180.0,,,0,71,0.0,0.0,,390.0,361.26867087994026,,41,0,0,0,0,0,0,0,0,0,,1,,1,101437,2,1,0,0,2,,120.0,,11,0.0,13.0,4.0,1.0,1.0,1,1,99.48423475439284,180.0,9452.51314973262,0,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04125886881321417,9452.51314973262,1,1,1_0,1_1_0,1_3_0,1_1_0 -1023,2,51.0,0.0,7,111,1200.0,,,22,22,0.0,0.0,,1452.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,2,10.0,1,,5,120033,2,1,0,0,2,,0.0,550.0,43,3.0,0.0,4.0,5.0,2.8,2,2,149.70731316595987,1200.0,39921.476435626595,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03637140029981985,14257.670155580927,3,2,3_0,3_1_0,3_3_0,3_0_0 -1024,2,46.0,0.0,5,111,720.0,,,56,63,0.0,0.0,,972.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,3,126616,1,3,0,0,2,,800.0,,43,4.0,0.0,4.0,9.0,4.3999999999999995,1,1,86.02275479394197,720.0,24287.741737413042,4,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04002018839416112,5519.94130395751,1,1,1_0,1_1_0,1_3_0,1_0_0 -1025,2,84.0,0.0,5,111,1200.0,,,86,78,0.0,0.0,,1326.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,0,,1,,3,130111,2,2,0,0,2,,116.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,112.23872386524643,1200.0,12503.586725551399,6,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10604957034370667,8335.724483700933,1,1,1_0,1_1_0,1_3_0,1_0_0 -1026,2,58.0,0.0,6,111,1300.0,,,85,21,0.0,0.0,,1525.0,387.0735759427931,,12,0,0,0,0,0,0,0,0,0,,1,,4,114351,2,2,0,0,2,,800.0,,42,1.0,6.0,6.0,3.0,2.0,1,1,127.34710880503825,1300.0,5286.032792066451,6,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.28849612932572005,2643.0163960332256,1,1,1_0,1_1_0,1_3_0,1_0_0 -1027,2,60.0,0.0,5,111,420.0,,,56,81,0.0,0.0,,504.0,144.50746835197612,,42,0,0,0,0,0,0,0,0,0,,1,,3,100346,2,1,0,0,2,,360.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,95.64957034683432,420.0,14640.348837209303,4,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0344254092306226,7320.174418604652,1,1,1_0,1_1_0,1_3_0,1_0_0 -1028,2,61.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,580.0,378.4719409218422,,71,0,0,0,0,0,0,0,0,0,,2,,2,122177,2,2,0,0,2,,450.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,112.46237329512364,360.0,24027.971298085184,0,7,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02413853391135942,24027.971298085184,6,3,6,6_0,6_3,6_0_1 -1029,2,77.0,0.0,8,111,1200.0,,,0,78,0.0,0.0,,1332.0,227.0831645531053,,33,0,0,0,0,0,0,0,0,0,,1,2002.0,6,121297,2,1,0,0,1,,120.0,,21,2.0,0.0,6.0,4.0,2.3,1,1,95.64957034683432,1200.0,24778.21345543777,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05375690230433794,10773.136284972945,2,1,2_0,2_1_0,2_3_0,2_0_0 -1030,2,79.0,0.0,6,111,450.0,,,75,86,0.0,0.0,,600.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,1,,4,102174,2,1,0,0,2,,300.0,,41,1.0,0.0,5.0,3.0,2.0,2,2,92.23433904598662,450.0,68973.24041068774,5,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008699025831284957,34486.62020534387,9,5,9,9_1,9_3,9_0_0 -1031,2,58.0,0.0,5,111,1500.0,,,77,54,0.0,0.0,,1660.0,275.25232067043066,,50,0,0,0,0,0,0,0,0,0,,1,,3,109208,2,2,0,0,2,,500.0,,42,1.0,4.0,5.0,3.0,1.8,1,1,89.65961058390245,1500.0,60145.671057042244,6,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027599658808788643,33414.2616983568,8,4,8,8_1,8_3,8_0_0 -1032,2,41.0,0.0,9,111,1200.0,,,47,34,0.0,0.0,,1284.0,144.50746835197612,,70,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,117914,2,2,0,0,2,,900.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,125.59545886217423,1200.0,89482.33781243673,4,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014349200427590336,42610.6370535413,9,5,9,9_1,9_3,9_0_0 -1033,2,65.0,0.0,6,111,160.0,,,0,78,0.0,0.0,,204.0,75.69438818436844,,42,0,0,0,0,0,0,0,0,0,,1,,4,133510,2,2,0,0,1,,115.0,,11,0.0,3.0,4.0,1.0,1.0,2,1,94.62473121824033,160.0,2949.262192612269,0,7,0,1,41.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06916984204083591,2949.262192612269,1,1,1_0,1_1_0,1_3_0,1_0_0 -1034,2,70.0,0.0,5,111,360.0,,,0,77,0.0,0.0,,444.0,144.50746835197612,,12,0,0,0,0,0,0,0,0,0,,1,,3,110734,2,2,0,0,2,,400.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,121.96191140027348,360.0,11404.508509430765,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0389319714771436,11404.508509430765,2,1,2_0,2_1_0,2_3_0,2_0_0 -1035,2,72.0,0.0,2,111,621.0,,,56,72,0.0,0.0,,831.0,361.26867087994026,,71,0,0,0,0,0,0,0,0,0,,1,,2,130419,2,1,0,0,2,,160.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,114.05278242995273,621.0,15932.063527213206,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05215896852159717,10621.375684808803,2,1,2_0,2_1_0,2_3_0,2_0_1 -1036,2,47.0,0.0,8,111,580.0,,,0,43,0.0,0.0,,643.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,124294,2,3,0,0,2,,450.0,,32,1.0,0.0,4.0,2.0,1.3,3,2,108.87017942147595,580.0,7528.742510259009,0,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08540602884529772,5791.34039250693,1,1,1_0,1_1_0,1_3_0,1_0_0 -1037,1,43.0,357.0,7,111,0.0,,,0,63,0.0,0.0,,125.0,215.04087552377396,,10,0,0,0,0,0,0,0,0,0,,2,,5,130949,2,2,0,0,2,,0.0,550.0,32,1.0,2.0,1.0,2.0,1.3,2,2,149.1823830064137,0.0,4060.0363636363636,0,4,2,3,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03078790158619269,3123.104895104895,1,1,1_1,1_0_1,1_3_1,1_0_0 -1038,2,67.0,0.0,9,111,900.0,,,0,77,0.0,0.0,,1050.0,258.04905062852873,,44,0,0,0,0,0,0,0,0,0,,1,2008.0,6,132354,2,1,0,0,2,,700.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,101.24512528309506,900.0,12230.277926773922,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0858525052567605,12230.277926773922,2,1,2_0,2_1_0,2_3_0,2_0_0 -1039,0,32.0,0.0,7,111,360.0,,,0,54,0.0,0.0,,485.0,215.04087552377396,,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,110760,2,1,0,0,2,,420.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,127.54192038691475,360.0,28155.141611468025,0,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017225983328119792,17596.963507167515,4,2,4_0,4_1_0,4_3_0,4_0_0 -1040,1,33.0,210.0,2,111,900.0,,,0,62,0.0,0.0,,943.0,73.97406118017824,,71,0,0,0,0,0,0,0,0,0,,2,,2,110641,2,3,0,0,2,,500.0,258.0,32,1.0,0.0,2.0,2.0,1.3,3,3,89.23001714726742,900.0,16586.15434713569,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05685464998478381,12758.580267027453,2,1,2_1,2_0_1,2_3_1,2_0_1 -1042,2,74.0,0.0,2,111,398.0,,,77,78,0.0,0.0,,698.0,516.0981012570575,,20,0,0,0,0,0,0,0,0,0,,8,,2,103191,2,2,0,0,2,,400.0,178.0,41,3.0,1.0,4.0,5.0,3.0,2,2,76.0386657482265,398.0,19704.434924204706,5,5,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03542349743521874,6568.1449747349025,1,1,1_0,1_0_0,1_3_0,1_0_1 -1043,1,80.0,168.0,2,111,480.0,,,0,78,0.0,0.0,,555.0,129.02452531426437,,31,0,0,0,0,0,0,0,0,0,,8,,2,119896,2,2,0,0,2,,375.0,258.0,11,0.0,1.0,4.0,1.0,1.0,1,1,90.4752543870714,480.0,10959.0,0,5,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05064330687106488,10959.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -1044,1,38.0,213.0,2,111,756.0,,,0,85,0.0,0.0,,806.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,2,,2,120754,2,2,0,0,2,,0.0,216.0,11,0.0,0.0,2.0,1.0,1.0,3,3,112.85723289847972,756.0,7032.0,0,7,2,3,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11461888509670079,7032.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -1046,2,51.0,0.0,2,111,3000.0,,,47,34,0.0,0.0,,3189.0,325.14180379194624,,60,0,0,0,0,0,0,0,0,0,,1,,2,126676,2,3,0,0,2,,3000.0,,43,2.0,2.0,9.0,2.0,1.5,2,2,92.90359818548373,3000.0,104083.99512755805,1,1,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03063871631840981,69389.3300850387,10,5,10,10_1,10_3,10_0_1 -1047,1,41.0,150.0,9,111,1200.0,,,0,68,0.0,0.0,,1300.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,1,10.0,8,2008.0,6,104104,2,2,0,0,2,,0.0,186.0,32,1.0,3.0,3.0,2.0,1.3,1,1,152.97754851378895,1200.0,7438.381681413032,0,1,2,3,29.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17476919788190345,5721.832062625409,1,1,1_1,1_0_1,1_3_1,1_0_0 -1048,1,71.0,247.0,2,111,360.0,,,0,72,0.0,0.0,,486.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,0,,1,,2,103739,1,3,0,0,2,,250.0,320.0,11,0.0,1.0,2.0,1.0,1.0,3,3,149.1823830064137,360.0,9450.449908829873,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05142612306170883,9450.449908829873,1,1,1_1,1_1_1,1_3_1,1_0_1 -1049,2,60.0,0.0,7,111,120.0,,,0,63,0.0,0.0,,330.0,361.26867087994026,,31,0,0,0,0,0,0,0,0,0,,1,,5,111405,2,1,0,0,2,,600.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,90.49538663304989,120.0,7046.390000420159,0,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046832491528331945,7046.390000420159,1,1,1_0,1_1_0,1_3_0,1_0_0 -1050,0,42.0,0.0,2,111,720.0,,,68,65,0.0,0.0,,846.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,112567,2,2,0,0,2,,154.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,109.79236424678548,720.0,39373.39925623198,1,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021486587797371746,21874.110697906657,6,3,6,6_1,6_3,6_0_1 -1051,2,66.0,0.0,5,111,120.0,,,0,75,0.0,0.0,,240.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,2,,3,129912,2,1,0,0,2,,180.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,101.24512528309506,120.0,39552.27157281129,0,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006067919501366361,39552.27157281129,9,5,9,9_0,9_3,9_0_0 -1052,1,95.0,253.0,7,111,710.0,,,0,78,0.0,0.0,,962.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,2,,5,131397,2,1,0,0,2,,225.0,444.0,21,0.0,1.0,4.0,2.0,1.5,3,3,99.21935212618025,710.0,11129.39086755929,0,5,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08643779443528248,7419.5939117061935,1,1,1_1,1_0_1,1_3_1,1_0_0 -1053,1,47.0,468.0,7,111,540.0,,,85,63,0.0,0.0,,771.0,397.3955379679343,,70,0,0,0,0,0,0,0,0,0,,2,,5,110477,1,2,0,0,2,,300.0,704.0,42,1.0,0.0,4.0,6.0,3.3,2,2,77.2317691367952,540.0,14607.988372093025,6,1,2,3,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052779341026373744,4426.663143058493,1,1,1_1,1_0_1,1_3_1,1_0_0 -1054,1,51.0,254.0,7,111,480.0,,,0,68,0.0,0.0,,732.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,2,10.0,3,,5,126395,2,2,0,0,2,,220.0,380.0,32,1.0,1.0,4.0,2.0,1.5,4,4,96.12878885168276,480.0,13468.788919235096,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.054347870798881814,8979.192612823397,1,1,1_1,1_0_1,1_3_1,1_0_0 -1057,1,32.0,413.0,5,111,720.0,,,0,56,0.0,0.0,,996.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,3,123005,1,2,0,0,2,,360.0,400.0,32,1.0,0.0,4.0,3.0,1.6,2,2,136.20803607403548,720.0,3929.533540550222,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2534651987880826,2455.9584628438884,1,1,1_1,1_1_1,1_3_1,1_0_0 -1058,2,78.0,0.0,6,111,700.0,,,74,74,0.0,0.0,,792.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,0,,1,,4,121168,1,1,0,0,2,,1000.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,94.62473121824033,700.0,110619.87113075404,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007159653974500173,73746.58075383602,10,5,10,10_1,10_3,10_0_0 -1059,1,39.0,350.0,7,111,464.0,,,0,45,0.0,0.0,,464.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,,5,115063,1,1,0,0,2,,325.0,650.0,32,1.0,0.0,3.0,2.0,1.3,3,2,127.65973170779148,464.0,31356.221027808715,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014797701533883658,24120.170021391317,6,3,6,6_1,6_3,6_0_0 -1060,2,58.0,0.0,2,111,450.0,,,0,77,0.0,0.0,,450.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,2,111614,2,1,0,0,2,,110.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,140.45558921057807,450.0,24642.0,0,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018261504747991233,24642.0,7,4,7,7_0,7_3,7_0_1 -1061,1,60.0,350.0,8,111,800.0,,,81,56,0.0,0.0,,950.0,258.04905062852873,,70,0,0,0,0,0,0,0,0,0,,2,2000.0,6,101145,1,2,0,0,2,,0.0,600.0,43,2.0,0.0,4.0,5.0,2.4,1,1,97.21455496333098,800.0,27878.272578098942,4,1,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03407671681732232,11615.946907541227,2,1,2_1,2_0_1,2_3_1,2_0_0 -1062,1,43.0,320.0,5,111,365.0,,,0,63,0.0,0.0,,415.0,86.01635020950958,,33,0,0,0,0,0,0,0,0,0,,2,,3,107226,2,2,0,0,2,,0.0,600.0,32,1.0,0.0,4.0,2.0,1.5,2,2,108.8281745966775,365.0,12918.641006378115,0,4,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03212412201833836,8612.42733758541,1,1,1_1,1_0_1,1_3_1,1_0_0 -1063,2,54.0,0.0,8,111,530.0,,,0,68,0.0,0.0,,658.0,220.20185653634454,,10,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,121401,2,3,0,0,2,,350.0,,22,1.0,4.0,4.0,2.0,1.5,1,1,114.05278242995273,530.0,19777.77456684237,0,1,1,2,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033269668322701146,13185.18304456158,2,1,2_0,2_1_0,2_3_0,2_0_0 -1064,2,78.0,0.0,1,111,210.0,,,0,86,0.0,0.0,,260.0,86.01635020950958,,41,0,0,0,0,0,0,0,0,0,,1,,1,131615,2,3,0,0,2,,180.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,136.30019940829203,210.0,9833.185460946916,0,5,0,1,45.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026441075583553828,9833.185460946916,2,1,2_0,2_1_0,2_3_0,2_1_0 -1065,2,59.0,0.0,9,111,720.0,,,45,42,0.0,0.0,,850.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,115773,2,2,0,0,2,,500.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,152.43976251900332,720.0,120792.24932964472,1,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007036875335273633,80528.16621976315,10,5,10,10_1,10_3,10_0_0 -1066,2,62.0,0.0,8,111,480.0,,,85,33,0.0,0.0,,540.0,103.2196202514115,,12,0,0,0,0,0,0,0,0,2,65.0,1,1999.0,6,128726,2,1,0,0,1,,200.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,128.70241923645412,480.0,115874.19627786265,6,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00466022649861663,77249.46418524177,10,5,10,10_1,10_3,10_0_0 -1067,2,94.0,0.0,6,111,325.0,,,0,86,0.0,0.0,,425.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,4,108805,2,2,0,0,2,,34.0,,11,0.0,5.0,2.0,1.0,1.0,4,3,148.41428028342142,325.0,17975.53475238554,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02364324654895722,17975.53475238554,4,2,4_0,4_1_0,4_3_0,4_0_0 -1068,2,61.0,0.0,6,111,960.0,,,72,68,0.0,0.0,,1120.0,275.25232067043066,,31,0,0,0,0,0,0,0,0,0,,7,,4,108919,2,2,0,0,2,,600.0,,42,4.0,3.0,4.0,5.0,3.0,1,1,78.67943863354706,960.0,16917.01276595745,5,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06620554204781387,5639.00425531915,1,1,1_0,1_1_0,1_3_0,1_0_0 -1069,1,33.0,360.0,2,111,0.0,,,0,55,0.0,0.0,,698.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,2,102940,2,3,0,0,2,,275.0,334.0,32,1.0,1.0,3.0,4.0,2.1,2,2,88.06056081119442,0.0,14111.599462365592,0,4,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04946285513995102,6719.809267793138,1,1,1_1,1_0_1,1_3_1,1_0_1 -1070,1,53.0,232.0,2,111,516.0,,,0,90,0.0,0.0,,616.0,172.03270041901916,,33,0,0,0,0,0,0,0,0,0,,2,,2,118946,2,3,0,0,2,,350.0,238.0,32,1.0,0.0,3.0,2.0,1.3,1,1,99.21935212618025,516.0,4472.333268923714,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13773571041324545,3440.256360710549,1,1,1_1,1_0_1,1_3_1,1_0_1 -1071,2,64.0,0.0,2,111,420.0,,,0,77,0.0,0.0,,495.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,0,,2,,2,124742,2,2,0,0,2,,345.0,201.0,11,0.0,0.0,2.0,1.0,1.0,1,1,132.6879670333394,420.0,18717.46651908171,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026445886760121474,18717.46651908171,5,3,5,5_0,5_3,5_0_1 -1072,2,50.0,0.0,9,111,150.0,,,0,68,0.0,0.0,,172.0,37.84719409218422,,41,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,112565,2,1,0,0,1,,210.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,101.24512528309506,150.0,24212.064717303012,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007103896425532069,24212.064717303012,7,4,7,7_1,7_3,7_0_0 -1073,2,65.0,0.0,2,111,120.0,,,0,11,0.0,0.0,,164.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,129750,2,2,0,0,2,,100.0,,12,1.0,3.0,3.0,1.0,1.0,4,4,127.54192038691475,120.0,23836.252183524233,0,1,0,1,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006880276258922862,23836.252183524233,6,3,6,6_1,6_3,6_0_1 -1074,2,71.0,0.0,5,111,550.0,,,0,77,0.0,0.0,,558.0,13.762616033521534,,10,0,0,0,0,0,0,0,0,0,,1,,3,111854,2,3,0,0,2,,360.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,101.24512528309506,550.0,12056.500090080419,0,5,0,1,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04628208815418157,12056.500090080419,2,1,2_0,2_1_0,2_3_0,2_0_0 -1075,1,58.0,200.0,6,111,204.0,,,0,54,0.0,0.0,,456.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,4,125112,2,2,0,0,2,,120.0,320.0,32,1.0,1.0,3.0,2.0,1.5,3,2,107.20750581764014,204.0,6642.424207395696,0,4,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06864963539851733,4428.2828049304635,1,1,1_1,1_1_1,1_3_1,1_0_0 -1076,1,38.0,211.0,7,111,560.0,,,0,52,0.0,0.0,,812.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,,5,101933,2,2,0,0,2,,500.0,,22,2.0,4.0,4.0,3.0,2.0,2,2,88.54407738255635,560.0,21475.660153684574,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037810246306243835,10737.830076842287,2,1,2_1,2_1_1,2_3_1,2_0_0 -1077,1,49.0,100.0,9,111,160.0,,,0,85,0.0,0.0,,286.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,116648,2,2,0,0,2,,140.0,150.0,11,0.0,3.0,2.0,1.0,1.0,3,3,112.85723289847972,160.0,12878.939443404965,0,7,3,4,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.022206797481795337,12878.939443404965,2,1,2_1,2_1_1,2_3_1,2_0_0 -1078,1,75.0,210.0,6,111,360.0,,,86,71,0.0,0.0,,612.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,4,113856,2,1,0,0,2,,220.0,251.0,41,1.0,0.0,4.0,3.0,2.0,1,1,106.11924672697575,360.0,4936.930105382548,6,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12396367518607555,2468.465052691274,1,1,1_1,1_1_1,1_3_1,1_0_0 -1079,0,46.0,0.0,1,111,1080.0,,,85,31,0.0,0.0,,1126.0,79.13504219274881,,41,0,0,0,0,0,0,0,0,0,,2,,1,126280,1,2,0,0,2,,0.0,,42,1.0,0.0,4.0,4.0,2.1,3,2,121.66564363263869,1080.0,13927.818084347538,6,1,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08084539826560698,6632.2943258797795,1,1,1_0,1_0_0,1_3_0,1_1_0 -1080,2,71.0,0.0,1,111,720.0,,,0,75,0.0,0.0,,996.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,1,114368,1,2,0,0,2,,720.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,118.73698828209724,720.0,26693.923212128662,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037311862781843064,26693.923212128662,7,4,7,7_1,7_3,7_1_0 -1081,2,87.0,0.0,9,111,540.0,,,0,72,0.0,0.0,,816.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,1,2004.0,6,100620,2,2,0,0,2,,480.0,,11,0.0,9.0,3.0,1.0,1.0,1,1,118.73698828209724,540.0,10981.023487957675,0,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07431001316906984,10981.023487957675,2,1,2_0,2_1_0,2_3_0,2_0_0 -1082,2,44.0,0.0,7,111,900.0,,,0,90,0.0,0.0,,1038.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,122546,2,1,0,0,2,,320.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,112.0097706433764,900.0,17937.0,0,4,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057869208897809,17937.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -1083,2,29.0,0.0,7,111,0.0,,,0,43,0.0,0.0,,248.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,8,,5,127111,2,3,0,0,2,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,2,2,107.77307482348874,0.0,22038.93880988037,0,1,2,3,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011252810407042742,22038.93880988037,6,3,6,6_0,6_3,6_0_0 -1084,2,57.0,0.0,7,111,750.0,,,46,22,0.0,0.0,,750.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,128021,1,1,0,0,2,,300.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,103.98134828551576,750.0,53800.957340539215,4,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013940272386842312,35867.30489369281,9,5,9,9_1,9_3,9_0_0 -1085,2,67.0,0.0,5,111,393.0,,,0,77,0.0,0.0,,462.0,118.70256328912323,,20,0,0,0,0,0,0,0,0,0,,1,,3,111591,2,1,0,0,2,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,121.96191140027348,393.0,15291.688396234948,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030212491127778383,15291.688396234948,3,2,3_0,3_1_0,3_3_0,3_0_0 -1086,1,35.0,143.0,2,111,840.0,,,0,55,0.0,0.0,,960.0,206.439240502823,,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,126129,2,1,0,0,2,,0.0,287.0,32,1.0,0.0,3.0,2.0,1.3,2,2,95.50756152399389,840.0,19719.758117462417,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.048682138709900916,15169.04470574032,3,2,3_1,3_0_1,3_3_1,3_0_1 -1087,2,53.0,0.0,6,111,0.0,,,75,56,0.0,0.0,,481.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,4,126753,2,2,0,0,2,,182.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,136.12303303966002,0.0,32176.90226780207,5,1,0,1,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014948611149598274,21451.268178534712,6,3,6,6_0,6_3,6_0_0 -1088,2,55.0,0.0,6,111,840.0,,,0,52,0.0,0.0,,882.0,72.25373417598806,,41,0,0,0,0,0,0,0,0,2,8.0,2,,4,117596,2,1,0,0,2,,492.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,94.41417594861126,840.0,50091.716959850935,0,1,0,1,87.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01760770150296371,50091.716959850935,10,5,10,10_0,10_3,10_0_0 -1089,2,43.0,0.0,5,111,360.0,,,0,90,0.0,0.0,,402.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,103111,1,2,0,0,2,,720.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,94.41417594861126,360.0,28179.518346690907,0,1,1,2,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014265680309159949,21676.55257437762,6,3,6,6_0,6_3,6_0_0 -1090,1,56.0,253.0,2,111,0.0,,,0,78,0.0,0.0,,162.0,75.69438818436844,,10,0,0,0,0,0,0,0,0,0,,2,,2,116846,2,3,0,0,2,,118.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,110.78410118106012,0.0,6226.4288841430825,0,7,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026018124195165426,6226.4288841430825,1,1,1_1,1_0_1,1_3_1,1_0_1 -1091,2,35.0,0.0,2,111,300.0,,,54,47,0.0,0.0,,344.0,75.69438818436844,,42,0,0,0,0,0,0,0,0,0,,2,,2,107253,1,2,0,0,2,,400.0,200.0,43,2.0,0.0,4.0,5.0,2.4,1,1,74.14116255793883,300.0,49270.53498476865,4,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006981860458920187,20529.389576986938,5,3,5,5_0,5_3,5_0_1 -1092,1,41.0,213.0,2,111,1200.0,,,0,85,0.0,0.0,,1680.0,825.756962011292,,60,0,0,0,0,0,0,0,0,0,,2,,2,111015,1,3,0,0,2,,1000.0,273.0,31,0.0,1.0,3.0,2.0,1.5,1,1,98.26012552931424,1200.0,6097.37057673934,0,6,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.27552860349491914,4064.9137178262267,1,1,1_1,1_0_1,1_3_1,1_0_1 -1093,2,58.0,0.0,2,111,360.0,,,0,21,0.0,0.0,,430.0,120.42289029331342,,20,0,0,0,0,0,0,0,0,0,,2,,2,120358,1,3,0,0,2,,180.0,174.0,12,1.0,2.0,3.0,1.0,1.0,3,3,91.63151137864757,360.0,12336.475348294813,0,1,2,3,49.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03485598502488282,12336.475348294813,2,1,2_0,2_0_0,2_3_0,2_0_1 -1094,1,58.0,104.0,2,111,1000.0,,,0,55,0.0,0.0,,1250.0,430.0817510475479,,60,0,0,0,0,0,0,0,0,1,10.0,2,,2,127458,2,3,0,0,2,,250.0,209.0,32,2.0,0.0,4.0,3.0,2.0,2,2,95.50756152399389,1000.0,35887.57235785745,0,1,2,3,57.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0348309990861312,17943.786178928724,4,2,4_1,4_0_1,4_3_1,4_0_1 -1095,2,74.0,0.0,5,111,996.0,,,21,74,0.0,0.0,,1080.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,2,,3,100353,2,1,0,0,2,,356.0,390.0,42,1.0,3.0,3.0,2.0,1.5,1,1,100.48735706711965,996.0,26170.487207895898,1,5,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04126785991489502,17446.9914719306,4,2,4_0,4_0_0,4_3_0,4_0_0 -1096,2,46.0,0.0,5,111,744.0,,,90,52,0.0,0.0,,828.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,122384,2,2,0,0,2,,400.0,517.0,43,2.0,1.0,5.0,3.0,2.0,2,2,81.23135696141564,744.0,27862.463759751874,1,1,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029717400698644234,13931.231879875937,3,2,3_0,3_0_0,3_3_0,3_0_0 -1097,2,79.0,0.0,5,111,840.0,,,0,74,0.0,0.0,,882.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,0,,2,,3,102573,2,1,0,0,2,,200.0,528.0,21,2.0,0.0,5.0,4.0,2.3,1,1,92.04590042343241,840.0,41047.458177022796,0,5,2,3,123.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021487323190543344,17846.720946531652,4,2,4_0,4_0_0,4_3_0,4_0_0 -1098,2,55.0,0.0,2,111,400.0,,,0,34,0.0,0.0,,484.0,144.50746835197612,,12,0,0,0,0,0,0,0,0,2,20.0,2,,2,110035,2,2,0,0,2,,600.0,695.0,32,3.0,0.0,4.0,3.0,2.0,2,2,114.31491090642399,400.0,65733.42492361114,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007363072904879926,32866.71246180557,8,4,8,8_0,8_3,8_0_1 -1099,1,43.0,80.0,2,111,342.0,,,68,52,0.0,0.0,,502.0,275.25232067043066,,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,100851,1,2,0,0,2,,0.0,376.0,43,2.0,0.0,4.0,5.0,2.4,1,1,83.00400328303384,342.0,37441.18574925871,4,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013407695027659188,15600.494062191128,3,2,3_1,3_0_1,3_3_1,3_0_1 -1100,1,60.0,253.0,2,111,480.0,,,0,67,0.0,0.0,,600.0,206.439240502823,,12,0,0,0,0,0,0,0,0,0,,2,,2,106506,2,2,0,0,2,,0.0,308.0,32,2.0,2.0,4.0,2.0,1.5,2,2,83.00400328303384,480.0,9414.910386809112,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06372870004590146,6276.606924539407,1,1,1_1,1_0_1,1_3_1,1_0_1 -1101,1,93.0,253.0,2,111,360.0,,,0,77,0.0,0.0,,440.0,137.62616033521533,,42,0,0,0,0,0,0,0,0,0,,2,,2,130657,2,1,0,0,2,,0.0,393.0,11,0.0,4.0,5.0,1.0,1.0,2,2,100.40777716030985,360.0,9218.718411024478,0,5,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04772897710747005,9218.718411024478,1,1,1_1,1_0_1,1_3_1,1_0_1 -1102,1,47.0,318.0,2,111,250.0,,,0,52,0.0,0.0,,250.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,2,128192,2,1,0,0,2,,0.0,306.0,32,1.0,2.0,3.0,2.0,1.3,1,1,97.39674155358506,250.0,9394.355957757965,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026611723158472312,7226.427659813819,1,1,1_1,1_0_1,1_3_1,1_0_1 -1103,2,52.0,0.0,2,111,540.0,,,0,52,0.0,0.0,,582.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,116055,2,1,0,0,2,,0.0,392.0,12,1.0,3.0,5.0,1.0,1.0,1,1,83.84776407817584,540.0,26538.27437434106,0,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021930589449429903,26538.27437434106,7,4,7,7_0,7_3,7_0_1 -1104,2,84.0,0.0,2,111,1400.0,,,86,74,0.0,0.0,,1750.0,602.1144514665671,,10,0,0,0,0,0,0,0,0,0,,2,,2,100656,2,1,0,0,2,,0.0,,41,1.0,3.0,5.0,4.0,2.3,1,1,110.80000449889434,1400.0,134483.0,6,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013012797156517925,58470.8695652174,10,5,10,10_0,10_3,10_0_1 -1105,2,59.0,0.0,2,111,180.0,,,0,55,0.0,0.0,,390.0,361.26867087994026,,20,0,0,0,0,0,0,0,0,0,,1,,2,103007,2,2,0,0,2,,160.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,103.72702520933873,180.0,7076.4609541473355,0,4,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05511229448265815,7076.4609541473355,1,1,1_0,1_1_0,1_3_0,1_0_1 -1106,2,57.0,0.0,2,111,600.0,,,0,22,0.0,0.0,,864.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,1,10.0,1,,2,101783,2,2,0,0,2,,300.0,,32,1.0,0.0,3.0,3.0,2.0,3,2,99.78573775615702,600.0,16204.295275828077,0,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05331919625587343,8102.147637914039,1,1,1_0,1_1_0,1_3_0,1_0_1 -1107,2,31.0,0.0,2,111,1200.0,,,52,21,0.0,0.0,,1222.0,37.84719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,2,106497,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,80.82302648020492,1200.0,21394.935346564038,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05711632123236351,10188.06445074478,2,1,2_0,2_1_0,2_3_0,2_0_1 -1108,1,82.0,253.0,2,111,300.0,,,0,78,0.0,0.0,,420.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,2,,2,114794,2,2,0,0,2,,0.0,382.0,11,0.0,3.0,2.0,1.0,1.0,1,1,110.78410118106012,300.0,10851.222777616757,0,5,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03870531539232155,10851.222777616757,2,1,2_1,2_0_1,2_3_1,2_0_1 -1109,2,36.0,0.0,2,111,12.0,,,0,48,0.0,0.0,,33.0,36.12686708799403,,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,131712,2,1,0,0,2,,0.0,308.0,12,1.0,1.0,2.0,1.0,1.0,3,3,130.02770374400671,12.0,25185.98815112534,0,1,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0013102523435645117,25185.98815112534,7,4,7,7_0,7_3,7_0_1 -1110,1,64.0,147.0,5,111,400.0,,,0,77,0.0,0.0,,445.0,77.41471518855863,,20,0,0,0,0,0,0,0,0,0,,2,,3,132038,2,1,0,0,2,,0.0,269.0,11,0.0,0.0,3.0,1.0,1.0,1,1,104.16988849296456,400.0,11900.304484785642,0,5,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037394001184501265,11900.304484785642,2,1,2_1,2_0_1,2_3_1,2_0_0 -1112,1,79.0,40.0,5,111,0.0,,,0,71,0.0,0.0,,1268.0,0.0,,33,0,0,0,0,0,0,0,0,0,,2,,3,121463,2,1,0,0,2,,0.0,300.0,11,0.0,9.0,1.0,1.0,1.0,1,1,87.84608177475845,0.0,11440.588343673775,0,5,2,3,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11083346082469242,11440.588343673775,2,1,2_1,2_0_1,2_3_1,2_0_0 -1113,1,32.0,304.0,2,111,0.0,,,0,52,0.0,0.0,,651.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,2,112273,2,2,0,0,2,,0.0,295.0,12,1.0,1.0,3.0,1.0,1.0,2,2,104.16988849296456,0.0,11788.037199828595,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.055225478929559695,11788.037199828595,2,1,2_1,2_0_1,2_3_1,2_0_1 -1114,2,66.0,0.0,5,111,1200.0,,,77,64,0.0,0.0,,1320.0,206.439240502823,,60,0,0,0,0,0,0,0,0,0,,2,,3,118503,2,1,0,0,2,,230.0,372.0,42,3.0,1.0,4.0,4.0,2.5,1,1,78.45019213317698,1200.0,64853.226952882054,5,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020353651807627434,25941.29078115282,7,4,7,7_0,7_3,7_0_0 -1115,1,48.0,331.0,2,111,630.0,,,0,43,0.0,0.0,,770.0,240.84578058662683,,41,0,0,0,0,0,0,0,0,0,,2,,2,118837,2,3,0,0,2,,520.0,447.0,32,3.0,1.0,4.0,4.0,2.3,1,1,80.07597223781342,630.0,15602.006059949112,0,4,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04935262792754687,6783.480895630049,1,1,1_1,1_0_1,1_3_1,1_0_1 -1116,2,69.0,0.0,5,111,480.0,,,0,77,0.0,0.0,,542.0,106.66027425979189,,31,0,0,0,0,0,0,0,0,0,,2,,3,117996,1,3,0,0,2,,160.0,405.0,11,0.0,2.0,4.0,1.0,1.0,1,1,88.8132685781497,480.0,16038.769550753452,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03379311600462135,16038.769550753452,4,2,4_0,4_0_0,4_3_0,4_0_0 -1117,1,27.0,243.0,2,111,0.0,,,0,53,0.0,0.0,,78.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,121891,1,3,0,0,2,,593.0,235.0,32,1.0,0.0,3.0,3.0,1.6,1,1,122.2645781805114,0.0,9293.980052132629,0,4,2,3,47.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008392529310637142,5808.7375325828925,1,1,1_1,1_0_1,1_3_1,1_0_1 -1118,1,67.0,145.0,2,111,510.0,,,0,77,0.0,0.0,,550.0,68.81308016760767,,31,0,0,0,0,0,0,0,0,0,,2,,2,108084,2,2,0,0,2,,260.0,145.0,21,2.0,5.0,4.0,3.0,2.0,1,1,95.25343031677511,510.0,10092.796,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05449431455862181,5046.398,1,1,1_1,1_0_1,1_3_1,1_0_1 -1119,2,48.0,0.0,2,111,2000.0,,,0,52,0.0,0.0,,2252.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,103717,2,1,0,0,2,,340.0,178.0,32,2.0,1.0,3.0,2.0,1.5,2,2,114.31491090642399,2000.0,15970.211270404798,0,1,2,3,47.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.14101253651999548,10646.807513603198,2,1,2_0,2_0_0,2_3_0,2_0_1 -1120,2,51.0,0.0,2,111,258.0,,,0,68,0.0,0.0,,384.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,1,30.0,2,,2,101742,2,1,0,0,2,,140.0,131.0,12,1.0,0.0,2.0,1.0,1.0,1,1,152.8755510364635,258.0,26651.060325622013,0,1,2,3,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01440843235909931,26651.060325622013,7,4,7,7_0,7_3,7_0_1 -1121,2,60.0,0.0,2,111,540.0,,,45,34,0.0,0.0,,580.0,68.81308016760767,,44,0,0,0,0,0,0,0,0,2,5.0,2,,2,122262,2,1,0,0,2,,320.0,,43,3.0,3.0,4.0,3.0,2.0,1,1,101.02518260068908,540.0,73935.50612804541,1,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00784467477635881,36967.753064022705,9,5,9,9_0,9_3,9_0_1 -1122,1,29.0,100.0,2,111,192.0,,,0,42,0.0,0.0,,234.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,118982,2,2,0,0,2,,136.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,108.63524991346078,192.0,14824.58526446363,0,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01578458997844122,14824.58526446363,3,2,3_1,3_0_1,3_3_1,3_0_1 -1123,2,80.0,0.0,2,111,402.0,,,0,75,0.0,0.0,,522.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,2,,2,132158,2,1,0,0,2,,330.0,436.0,11,0.0,4.0,4.0,1.0,1.0,2,2,88.8132685781497,402.0,52897.67045204732,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009868109418413847,52897.67045204732,10,5,10,10_0,10_3,10_0_1 -1124,2,70.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,320.0,137.62616033521533,,10,0,0,0,0,0,0,0,0,0,,2,,2,113273,2,3,0,0,2,,220.0,196.0,21,0.0,2.0,3.0,2.0,1.5,2,2,97.39674155358506,240.0,19480.17276454473,0,5,2,3,49.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016426959035107852,12986.781843029821,2,1,2_0,2_0_0,2_3_0,2_0_1 -1126,2,26.0,0.0,5,111,540.0,,,43,63,0.0,0.0,,580.0,68.81308016760767,,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,119787,1,1,0,0,2,,600.0,600.0,43,2.0,0.0,3.0,3.0,2.0,1,1,110.64324488257472,540.0,49610.80321394884,1,1,3,4,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011691002008145759,24805.40160697442,7,4,7,7_0,7_3,7_0_0 -1127,1,34.0,322.0,2,111,0.0,,,0,56,0.0,0.0,,455.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,2,126408,2,1,0,0,2,,166.0,500.0,32,1.0,0.0,4.0,2.0,1.3,1,1,108.6042858053534,0.0,2876.354611421249,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1581863370369267,2212.580470324038,1,1,1_1,1_0_1,1_3_1,1_0_1 -1128,2,29.0,0.0,5,111,438.0,,,0,55,0.0,0.0,,480.0,72.25373417598806,,12,0,0,0,0,0,0,0,0,3,25.0,2,,3,101632,1,1,0,0,2,,300.0,700.0,12,1.0,0.0,4.0,1.0,1.0,2,2,97.06396994330717,438.0,17304.579259229457,0,1,3,4,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027738322487326026,17304.579259229457,4,2,4_0,4_0_0,4_3_0,4_0_0 -1129,1,35.0,272.0,2,111,240.0,,,0,43,0.0,0.0,,372.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,2,,2,119462,2,2,0,0,2,,200.0,352.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.39674155358506,240.0,5590.606516967113,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06654018644864473,4300.466551513164,1,1,1_1,1_0_1,1_3_1,1_0_1 -1130,1,30.0,312.0,2,111,330.0,,,0,81,0.0,0.0,,462.0,227.0831645531053,,30,0,0,0,0,0,0,0,0,0,,2,,2,128657,2,2,0,0,2,,703.0,387.0,32,1.0,0.0,3.0,3.0,1.6,1,1,97.39674155358506,330.0,11797.0,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03916249894040858,7373.125,1,1,1_1,1_0_1,1_3_1,1_0_1 -1131,1,30.0,339.0,2,111,600.0,,,0,81,0.0,0.0,,732.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,2,,2,116062,2,2,0,0,2,,170.0,443.0,32,1.0,0.0,4.0,4.0,1.9,1,1,80.07597223781342,600.0,8708.251257275464,0,4,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08405820851671425,4583.29013540814,1,1,1_1,1_0_1,1_3_1,1_0_1 -1132,2,80.0,0.0,2,111,400.0,,,0,77,0.0,0.0,,532.0,227.0831645531053,,42,0,0,0,0,0,0,0,0,0,,2,,2,126774,2,1,0,0,2,,200.0,509.0,11,0.0,0.0,5.0,1.0,1.0,2,2,100.40777716030985,400.0,18717.46651908171,0,5,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028422650012898232,18717.46651908171,5,3,5,5_0,5_3,5_0_1 -1133,2,91.0,0.0,5,111,800.0,,,0,72,0.0,0.0,,1020.0,378.4719409218422,,33,0,0,0,0,0,0,0,0,0,,1,,3,105995,2,2,0,0,2,,400.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,103.72702520933873,800.0,10022.884990244444,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1017671060770222,10022.884990244444,2,1,2_0,2_1_0,2_3_0,2_0_0 -1134,0,57.0,0.0,8,111,900.0,,,0,33,0.0,0.0,,900.0,0.0,,70,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,105867,2,1,0,0,2,,500.0,,12,1.0,2.0,3.0,1.0,1.0,4,3,130.17734955878257,900.0,183385.10358232484,0,1,5,0,66.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004907705055748838,183385.10358232484,10,5,10,10_0,10_3,10_0_0 -1135,2,59.0,0.0,2,111,1200.0,,,0,43,0.0,0.0,,1270.0,120.42289029331342,,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,117018,2,2,0,0,2,,500.0,300.0,12,1.0,0.0,6.0,1.0,1.0,1,1,101.98480137842044,1200.0,47081.0,0,1,3,4,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026974788131093223,47081.0,10,5,10,10_1,10_3,10_0_1 -1136,2,45.0,0.0,6,111,600.0,,,0,31,0.0,0.0,,696.0,165.1513924022584,,43,0,0,0,0,0,0,0,0,0,,1,,4,108730,1,3,0,0,2,,400.0,960.0,32,1.0,0.0,4.0,3.0,1.8,3,3,91.63205807697577,600.0,47997.3493068355,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014500800774447762,26665.194059353056,7,4,7,7_1,7_3,7_0_0 -1137,2,49.0,0.0,7,111,1462.0,,,0,85,0.0,0.0,,1714.0,433.5224050559283,,60,0,0,0,0,0,0,0,0,0,,1,,5,122797,2,2,0,0,2,,400.0,,31,2.0,2.0,4.0,4.0,2.3,5,5,93.52311005660736,1462.0,7124.426233979281,0,6,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2405807771333554,3097.576623469253,1,1,1_0,1_1_0,1_3_0,1_0_0 -1138,2,50.0,0.0,7,111,1100.0,,,0,56,0.0,0.0,,1352.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,5,109936,2,3,0,0,2,,1114.0,,32,1.0,2.0,3.0,4.0,2.1,2,2,81.3164591927682,1100.0,9878.638749030535,0,4,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13686096175271942,4704.11369001454,1,1,1_0,1_1_0,1_3_0,1_0_0 -1139,2,58.0,0.0,6,111,420.0,,,0,48,0.0,0.0,,696.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,1,,4,129681,2,1,0,0,2,,350.0,,12,1.0,4.0,4.0,1.0,1.0,2,2,103.91712136487618,420.0,8463.947479582872,0,4,0,1,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08223113407531457,8463.947479582872,1,1,1_0,1_1_0,1_3_0,1_0_0 -1140,2,74.0,0.0,7,111,660.0,,,78,77,0.0,0.0,,936.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,0,,1,,5,103035,1,2,0,0,2,,600.0,,41,0.0,2.0,3.0,2.0,1.5,3,2,96.66834252624712,660.0,15399.87681976701,5,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06077970693886115,10266.58454651134,2,1,2_0,2_1_0,2_3_0,2_0_0 -1141,2,51.0,0.0,6,111,972.0,,,0,85,0.0,0.0,,1260.0,495.4541772067752,,10,0,0,0,0,0,0,0,0,0,,1,,4,132492,2,3,0,0,2,,661.0,,31,1.0,2.0,5.0,3.0,2.0,2,2,82.73986573978867,972.0,9126.296813983092,0,7,0,1,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1380625707975505,4563.148406991546,1,1,1_0,1_1_0,1_3_0,1_0_0 -1142,2,64.0,0.0,5,111,500.0,,,0,46,0.0,0.0,,577.0,132.46517932264476,,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,100296,2,2,0,0,2,,600.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,128.60479754486659,500.0,17869.126302711622,0,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03229033083237208,17869.126302711622,4,2,4_0,4_1_0,4_3_0,4_0_0 -1143,2,26.0,0.0,7,111,360.0,,,0,53,0.0,0.0,,383.0,39.567521096374406,,31,0,0,0,0,0,0,0,0,2,30.0,2,,5,123314,2,1,0,0,2,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,2,2,128.32578722293871,360.0,27561.626705940565,0,1,2,3,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013896131896940942,27561.626705940565,7,4,7,7_0,7_3,7_0_0 -1144,2,69.0,0.0,2,111,3901.3,,,78,77,0.0,0.0,,4033.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,2,115105,2,3,0,0,2,,258.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,82.38977593633344,3901.3,10157.671999999999,5,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.39703979415755897,6771.781333333332,1,1,1_0,1_1_0,1_3_0,1_0_1 -1145,0,42.0,0.0,6,111,540.0,,,0,56,0.0,0.0,,632.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,0,,1,,4,116498,2,1,0,0,2,,1080.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,111.05078036028262,540.0,13625.081525751966,0,4,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04638504355408765,10480.831942886127,2,1,2_0,2_1_0,2_3_0,2_0_0 -1146,2,21.0,0.0,2,111,900.0,,,0,55,0.0,0.0,,1026.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,0,,1,,2,121344,2,1,0,0,2,,400.0,,22,2.0,2.0,4.0,3.0,2.0,1,1,116.84794908682694,900.0,29729.906752500417,0,1,0,1,76.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034510703600296656,14864.953376250209,3,2,3_0,3_1_0,3_3_0,3_0_1 -1147,2,76.0,0.0,2,111,138.0,,,0,77,0.0,0.0,,390.0,433.5224050559283,,12,0,0,0,0,0,0,0,0,0,,1,,2,115635,2,2,0,0,2,,180.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,88.154154620333,138.0,5489.369837037656,0,5,0,1,31.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07104640634132676,5489.369837037656,1,1,1_0,1_1_0,1_3_0,1_0_1 -1148,2,73.0,0.0,7,111,300.0,,,0,72,0.0,0.0,,372.0,123.8635443016938,,50,0,0,0,0,0,0,0,0,0,,1,,5,120526,2,1,0,0,2,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,91.63205807697577,300.0,40103.03912781831,0,5,0,1,98.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009276104955894838,40103.03912781831,9,5,9,9_1,9_3,9_0_0 -1149,2,85.0,0.0,2,111,360.0,,,0,72,0.0,0.0,,510.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,1,,2,100182,1,3,0,0,2,,288.0,,11,0.0,8.0,4.0,1.0,1.0,2,2,112.1601148310336,360.0,8035.825303974911,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06346578984833445,8035.825303974911,1,1,1_0,1_1_0,1_3_0,1_0_1 -1150,2,72.0,0.0,2,111,746.0,,,0,86,0.0,0.0,,1114.0,633.0803375419905,,41,0,0,0,0,0,0,0,0,0,,5,,2,126152,2,2,0,0,2,,328.0,,21,0.0,0.0,5.0,3.0,2.0,1,1,90.09337809447157,746.0,22350.147292449423,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049843071968315125,11175.073646224711,2,1,2_0,2_1_0,2_3_0,2_0_1 -1151,2,71.0,0.0,7,111,300.0,,,0,78,0.0,0.0,,381.0,139.3464873394055,,60,0,0,0,0,0,0,0,0,0,,1,,5,130470,2,3,0,0,2,,60.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,88.154154620333,300.0,4024.423140495868,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09467195339530206,4024.423140495868,1,1,1_0,1_1_0,1_3_0,1_0_0 -1152,0,61.0,0.0,2,111,960.0,,,0,86,0.0,0.0,,1098.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,2,120683,2,2,0,0,2,,800.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,157.4196993274863,960.0,20652.456919060052,0,5,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05316558723754853,13768.304612706701,3,2,3_0,3_1_0,3_3_0,3_0_1 -1153,2,74.0,0.0,5,111,1440.0,,,86,78,0.0,0.0,,1580.0,240.84578058662683,,44,0,0,0,0,0,0,0,0,0,,1,,3,126359,1,3,0,0,2,,368.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,99.30578473873457,1440.0,21447.2733253831,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07366903829821815,14298.182216922067,3,2,3_0,3_1_0,3_3_0,3_0_0 -1154,2,65.0,0.0,5,111,700.0,,,0,74,0.0,0.0,,930.0,395.67521096374406,,71,0,0,0,0,0,0,0,0,0,,1,,3,105407,2,2,0,0,2,,330.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,124.98576118462728,700.0,7292.813793103448,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12752279523158366,7292.813793103448,1,1,1_0,1_1_0,1_3_0,1_0_0 -1155,2,73.0,0.0,6,111,380.0,,,0,72,0.0,0.0,,403.0,39.567521096374406,,43,0,0,0,0,0,0,0,0,0,,2,,4,117764,2,1,0,0,2,,150.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,111.81177577223296,380.0,29749.93967362765,0,5,0,1,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013546245956163949,29749.93967362765,8,4,8,8_0,8_3,8_0_0 -1156,2,37.0,0.0,5,111,0.0,,,37,63,0.0,0.0,,979.0,0.0,,71,0,0,0,0,0,0,0,0,1,6.0,1,,3,101828,2,1,0,0,2,,0.0,600.0,43,2.0,0.0,1.0,2.0,1.5,3,3,121.82503381810616,0.0,7058.3448275862065,1,1,3,4,34.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13870107283137592,4705.563218390805,1,1,1_0,1_1_0,1_3_0,1_0_0 -1157,2,31.0,0.0,6,111,180.0,,,0,34,0.0,0.0,,203.0,39.567521096374406,,20,0,0,0,0,0,0,0,0,2,10.0,2,,4,127755,2,1,0,0,2,,200.0,,12,1.0,0.0,2.0,1.0,1.0,5,5,104.55531362236381,180.0,63849.57311641038,0,1,1,2,34.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0031793478028410765,63849.57311641038,10,5,10,10_0,10_3,10_0_0 -1158,2,49.0,0.0,5,111,0.0,,,0,55,0.0,0.0,,669.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,115840,2,1,0,0,2,,99.0,650.0,12,1.0,2.0,2.0,1.0,1.0,1,1,130.17734955878257,0.0,17616.897371972074,0,1,3,4,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03797490476753062,17616.897371972074,4,2,4_0,4_0_0,4_3_0,4_0_0 -1159,2,25.0,0.0,6,111,0.0,,,0,56,0.0,0.0,,371.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,2,,4,113676,2,2,0,0,2,,212.0,450.0,12,1.0,2.0,2.0,1.0,1.0,3,3,130.17734955878257,0.0,14285.631720430109,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0259701500962976,14285.631720430109,3,2,3_0,3_0_0,3_3_0,3_0_0 -1160,2,87.0,0.0,2,111,780.0,,,86,77,0.0,0.0,,872.0,158.27008438549763,,60,0,0,0,0,0,0,0,0,0,,1,,2,120011,2,1,0,0,2,,240.0,,41,0.0,10.0,7.0,2.0,1.5,1,1,82.38977593633344,780.0,11429.525192972484,6,5,0,1,118.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07629363296177472,7619.6834619816555,1,1,1_0,1_1_0,1_3_0,1_0_1 -1161,2,36.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,251.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2005.0,6,123586,2,1,0,0,1,,0.0,890.0,12,1.0,0.0,3.0,1.0,1.0,1,1,122.47799447193847,0.0,23480.994515976286,0,1,2,3,63.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010689496129698491,23480.994515976286,6,3,6,6_0,6_3,6_0_0 -1162,2,58.0,0.0,5,111,600.0,,,85,63,0.0,0.0,,900.0,516.0981012570575,,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,102201,2,1,0,0,2,,320.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,109.89722965755256,600.0,22159.891063203027,6,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04061391806634236,14773.260708802018,3,2,3_0,3_1_0,3_3_0,3_0_0 -1163,0,36.0,0.0,5,111,360.0,,,0,52,0.0,0.0,,406.0,79.13504219274881,,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,105540,2,2,0,0,2,,80.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,120.73594301442641,360.0,20173.0,0,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020125910870966143,20173.0,5,3,5,5_1,5_3,5_0_0 -1164,2,53.0,0.0,6,111,720.0,,,33,31,0.0,0.0,,860.0,240.84578058662683,,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,100639,1,3,0,0,2,,360.0,900.0,43,2.0,0.0,4.0,5.0,2.4,1,1,86.82215852645525,720.0,248391.40933504837,1,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0034622775493816276,103496.42055627015,10,5,10,10_1,10_3,10_0_0 -1165,2,55.0,0.0,6,111,900.0,,,0,56,0.0,0.0,,992.0,158.27008438549763,,70,0,0,0,0,0,0,0,0,1,5.0,1,,4,124366,2,3,0,0,2,,1200.0,,22,2.0,5.0,5.0,4.0,2.3,1,1,93.16713097614938,900.0,41647.69831490141,0,1,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023818843300760888,18107.694919522353,4,2,4_0,4_1_0,4_3_0,4_0_0 -1166,2,38.0,0.0,9,111,0.0,,,54,52,0.0,0.0,,364.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,2005.0,6,101642,2,1,0,0,1,,318.0,625.0,43,2.0,0.0,2.0,2.0,1.5,1,1,152.73318116810316,0.0,52686.98031236012,1,1,3,4,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006908727694052477,35124.65354157342,9,5,9,9_0,9_3,9_0_0 -1167,0,89.0,0.0,5,111,1392.0,,,0,77,0.0,0.0,,1539.0,252.8880696159582,,10,0,0,0,0,0,0,0,0,0,,1,,3,113904,2,2,0,0,2,,300.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,95.78190495397969,1392.0,9402.920977347429,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1636725442772096,9402.920977347429,1,1,1_0,1_1_0,1_3_0,1_0_0 -1168,1,64.0,124.0,6,111,546.0,,,0,77,0.0,0.0,,630.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,1,,4,103702,2,2,0,0,2,,462.0,600.0,11,0.0,2.0,4.0,1.0,1.0,1,1,139.28487539226964,546.0,11917.133333333333,0,5,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.052865062626918105,11917.133333333333,2,1,2_1,2_1_1,2_3_1,2_0_0 -1169,2,54.0,0.0,6,111,1200.0,,,0,77,0.0,0.0,,1284.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,2,,4,121397,2,1,0,0,2,,150.0,600.0,21,0.0,1.0,4.0,2.0,1.5,1,1,111.91574733912796,1200.0,14285.631720430109,0,6,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08988051947074424,9523.75448028674,1,1,1_0,1_0_0,1_3_0,1_0_0 -1170,2,49.0,0.0,7,111,900.0,,,54,37,0.0,0.0,,900.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,126967,2,1,0,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,162.7311355834914,900.0,91824.05736788175,1,1,1,2,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009801352998313516,61216.038245254495,10,5,10,10_1,10_3,10_0_0 -1171,2,58.0,0.0,2,111,800.0,,,0,54,0.0,0.0,,1000.0,344.06540083803833,,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,117872,2,2,0,0,2,,700.0,,32,2.0,3.0,6.0,2.0,1.5,2,2,108.88948471323322,800.0,96852.49359005917,0,1,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010324979388064396,64568.32906003945,10,5,10,10_1,10_3,10_0_1 -1172,2,86.0,0.0,9,111,780.0,,,0,77,0.0,0.0,,918.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,100433,2,1,0,0,2,,240.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,113.10979167358543,780.0,9447.12,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09717247161039554,9447.12,1,1,1_0,1_1_0,1_3_0,1_0_0 -1173,1,44.0,450.0,6,111,384.0,,,0,85,0.0,0.0,,522.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,4,113345,2,3,0,0,2,,300.0,650.0,31,0.0,1.0,5.0,3.0,1.6,2,2,93.52311005660736,384.0,12814.313091367776,0,6,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04073569892338901,8008.94568210486,1,1,1_1,1_1_1,1_3_1,1_0_0 -1174,2,52.0,0.0,6,111,0.0,,,85,31,0.0,0.0,,394.0,0.0,,71,0,0,0,0,0,0,0,0,2,12.0,1,,4,118105,2,2,0,0,2,,286.0,1250.0,42,1.0,0.0,5.0,3.0,1.8,2,2,115.68996631253809,0.0,95325.2920596832,6,1,2,3,175.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00413321576558419,52958.49558871289,10,5,10,10_1,10_3,10_0_0 -1175,2,57.0,0.0,7,111,300.0,,,0,43,0.0,0.0,,346.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,7.0,1,,5,124991,2,1,0,0,1,,180.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,138.28778747932637,300.0,52058.00339618942,0,1,1,2,145.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006646432391322306,52058.00339618942,10,5,10,10_1,10_3,10_0_0 -1176,2,41.0,0.0,7,111,720.0,,,46,33,0.0,0.0,,780.0,103.2196202514115,,41,0,0,0,0,0,0,0,0,2,90.0,1,,5,116230,2,1,0,0,2,,200.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,142.3161284342006,720.0,116836.97203007442,1,1,1,2,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006675968971527472,41727.49001074087,9,5,9,9_1,9_3,9_0_0 -1177,2,62.0,0.0,5,111,750.0,,,0,77,0.0,0.0,,888.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,3,114210,2,2,0,0,2,,140.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,82.38977593633344,750.0,19751.425672574216,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04495877992407554,19751.425672574216,5,3,5,5_1,5_3,5_0_0 -1178,2,65.0,0.0,6,111,0.0,,,0,22,0.0,0.0,,645.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,101728,2,2,0,0,2,,126.0,900.0,22,1.0,2.0,4.0,2.0,1.5,1,1,82.38977593633344,0.0,16962.544680851064,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03802495510759877,11308.363120567376,2,1,2_0,2_1_0,2_3_0,2_0_0 -1179,2,70.0,0.0,7,111,200.0,,,0,74,0.0,0.0,,223.0,39.567521096374406,,31,0,0,0,0,0,0,0,0,0,,2,,5,117327,2,1,0,0,2,,96.0,,11,0.0,2.0,1.0,1.0,1.0,2,2,131.5259755638893,200.0,60296.654743850646,0,5,1,2,24.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0036983809623823724,60296.654743850646,10,5,10,10_0,10_3,10_0_0 -1180,2,44.0,0.0,2,111,1000.0,,,56,22,0.0,0.0,,1042.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,100933,2,2,0,0,2,,400.0,800.0,43,2.0,2.0,2.0,2.0,1.5,2,2,155.8118737342918,1000.0,18018.162818006054,1,1,2,3,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05783053525072491,12012.108545337369,2,1,2_0,2_0_0,2_3_0,2_0_1 -1181,2,35.0,0.0,9,111,480.0,,,0,55,0.0,0.0,,503.0,39.567521096374406,,31,0,0,0,0,0,0,0,0,1,10.0,2,2004.0,6,115252,2,1,0,0,2,,200.0,540.0,22,2.0,0.0,2.0,2.0,1.5,1,1,121.82503381810616,480.0,21154.788581374352,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023777122520754677,14103.192387582902,3,2,3_0,3_0_0,3_3_0,3_0_0 -1182,2,62.0,0.0,8,111,300.0,,,0,74,0.0,0.0,,300.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2003.0,6,113821,2,1,0,0,2,,150.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,119.33908391664215,300.0,46975.27300742301,0,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006386338615905311,46975.27300742301,10,5,10,10_0,10_3,10_0_0 -1183,1,45.0,70.0,8,111,240.0,,,0,52,0.0,0.0,,263.0,39.567521096374406,,71,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,104544,2,1,0,0,2,,120.0,495.0,22,1.0,0.0,3.0,2.0,1.5,1,1,105.47825271516228,240.0,21184.0,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012415030211480363,14122.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0 -1184,2,43.0,0.0,8,111,740.0,,,0,45,0.0,0.0,,763.0,39.567521096374406,,10,0,0,0,0,0,0,0,0,2,5.0,2,2002.0,6,115415,2,1,0,0,2,,360.0,500.0,32,1.0,0.0,4.0,2.0,1.3,4,3,108.21887086493123,740.0,38173.85293890886,0,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019987502996384972,29364.50226069912,8,4,8,8_0,8_3,8_0_0 -1185,2,53.0,0.0,9,111,420.0,,,0,46,0.0,0.0,,496.0,130.74485231845458,,70,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,117201,2,1,0,0,1,,180.0,690.0,12,1.0,0.0,2.0,1.0,1.0,2,2,136.96483920677125,420.0,38240.593948279165,0,1,2,3,42.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012970509837552355,38240.593948279165,9,5,9,9_0,9_3,9_0_0 -1187,2,47.0,0.0,8,111,0.0,,,0,47,0.0,0.0,,311.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,2,2000.0,6,118562,2,1,0,0,2,,124.0,723.0,12,1.0,0.0,3.0,1.0,1.0,1,1,141.8330745384084,0.0,36990.07902674272,0,1,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00840765978832206,36990.07902674272,9,5,9,9_0,9_3,9_0_0 -1188,1,38.0,260.0,7,111,400.0,,,0,56,0.0,0.0,,576.0,302.77755273747374,,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,107463,1,3,0,0,2,,400.0,476.0,32,1.0,0.0,3.0,3.0,1.6,1,1,93.3907036491963,400.0,23295.04162351142,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024726291942687485,14559.401014694637,3,2,3_1,3_0_1,3_3_1,3_0_0 -1189,1,71.0,187.0,9,111,600.0,,,86,71,0.0,0.0,,873.0,469.6492721439223,,20,0,0,0,0,0,0,0,0,0,,2,2005.0,6,107854,1,3,0,0,2,,700.0,460.0,41,0.0,5.0,3.0,2.0,1.5,2,2,97.39674155358506,600.0,15227.328970502558,6,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05733113152616074,10151.552647001705,2,1,2_1,2_0_1,2_3_1,2_0_0 -1190,2,97.0,0.0,2,111,250.0,,,0,77,0.0,0.0,,338.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,2,108747,1,3,0,0,2,,240.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,88.44637054134961,250.0,10959.0,0,5,0,1,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03084223013048636,10959.0,2,1,2_0,2_1_0,2_3_0,2_0_1 -1191,1,74.0,253.0,2,111,522.0,,,0,72,0.0,0.0,,544.0,37.84719409218422,,10,0,0,0,0,0,0,0,0,0,,2,,2,101851,2,2,0,0,2,,134.0,426.0,11,0.0,0.0,3.0,1.0,1.0,1,1,104.16988849296456,522.0,10959.0,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04963956565380053,10959.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -1192,1,28.0,468.0,2,111,600.0,,,81,81,0.0,0.0,,888.0,495.4541772067752,,12,0,0,0,0,0,0,0,0,0,,2,,2,103903,1,3,0,0,2,,549.0,534.0,43,2.0,0.0,4.0,7.0,2.9999999999999996,2,2,70.09967988026196,600.0,9447.12,4,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09399690064273555,3149.040000000001,1,1,1_1,1_0_1,1_3_1,1_0_1 -1193,1,26.0,357.0,2,111,342.0,,,0,81,0.0,0.0,,364.0,37.84719409218422,,10,0,0,0,0,0,0,0,0,0,,2,,2,130655,2,3,0,0,2,,304.0,433.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.39674155358506,342.0,19886.01278179935,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01830432294266403,15296.932909076422,3,2,3_1,3_0_1,3_3_1,3_0_1 -1194,2,44.0,0.0,5,111,0.0,,,0,21,0.0,0.0,,829.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,3,100315,2,2,0,0,2,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,2,2,134.10195445743446,0.0,4871.424093093178,0,4,3,4,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17017610952316306,4871.424093093178,1,1,1_0,1_1_0,1_3_0,1_0_0 -1195,2,75.0,0.0,6,111,340.0,,,0,72,0.0,0.0,,580.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,4,121512,2,1,0,0,2,,200.0,,21,1.0,0.0,4.0,2.0,1.5,1,1,99.30578473873457,340.0,7962.659003171121,0,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07283998972818195,5308.439335447414,1,1,1_0,1_1_0,1_3_0,1_0_0 -1196,2,53.0,0.0,6,111,600.0,,,85,85,0.0,0.0,,840.0,412.878481005646,,10,0,0,0,0,0,0,0,0,0,,1,,4,130315,1,2,0,0,2,,450.0,,41,0.0,0.0,3.0,4.0,2.1,4,4,95.41004356230935,600.0,14407.941860465116,6,7,0,1,66.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05830117917847311,6860.924695459579,1,1,1_0,1_1_0,1_3_0,1_0_0 -1197,1,42.0,350.0,6,111,0.0,,,0,68,0.0,0.0,,230.0,395.67521096374406,,31,0,0,0,0,0,0,0,0,0,,1,,4,108481,2,2,0,0,2,,0.0,500.0,32,1.0,0.0,2.0,3.0,1.6,2,2,114.1961970547753,0.0,13250.196331788897,0,4,3,4,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017358233360527716,8281.37270736806,1,1,1_1,1_1_1,1_3_1,1_0_0 -1198,2,72.0,0.0,2,111,270.0,,,0,78,0.0,0.0,,420.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,1,,2,118769,2,1,0,0,2,,600.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,103.38432388626195,270.0,19459.353197820023,0,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021583451193385575,19459.353197820023,5,3,5,5_1,5_3,5_0_1 -1199,1,25.0,82.0,9,111,0.0,,,0,46,0.0,0.0,,44.0,75.69438818436844,,12,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,109116,2,1,0,0,2,,0.0,553.0,12,1.0,0.0,2.0,1.0,1.0,2,2,147.79228405479475,0.0,20515.580657373932,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0021447114139655143,20515.580657373932,5,3,5,5_1,5_3,5_0_0 -1200,2,61.0,0.0,2,111,1500.0,,,72,75,0.0,0.0,,1764.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,2,119201,2,3,0,0,2,,800.0,,41,1.0,2.0,4.0,3.0,2.0,2,2,79.66572542700081,1500.0,76736.88357404113,5,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022987641898409506,38368.441787020565,9,5,9,9_1,9_3,9_0_1 -1201,2,48.0,0.0,8,111,720.0,,,0,34,0.0,0.0,,910.0,326.8621307961364,,71,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,119038,2,3,0,0,2,,160.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,105.77471533801979,720.0,53675.98078996899,0,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01695357935909504,41289.21599228384,9,5,9,9_1,9_3,9_0_0 -1202,2,56.0,0.0,7,111,1200.0,,,0,22,0.0,0.0,,1240.0,68.81308016760767,,70,0,0,0,0,0,0,0,0,2,1.0,1,,5,129550,2,1,0,0,2,,200.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,132.4842966779993,1200.0,32387.120933838785,0,1,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038286824029005316,32387.120933838785,8,4,8,8_1,8_3,8_0_0 -1203,2,45.0,0.0,7,111,720.0,,,42,21,0.0,0.0,,816.0,165.1513924022584,,71,0,0,0,0,0,0,0,0,2,90.0,1,,5,114399,1,1,0,0,2,,360.0,784.0,43,2.0,0.0,3.0,2.0,1.5,2,2,147.49701976833214,720.0,60524.59338294026,1,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013482122793244598,40349.72892196017,9,5,9,9_1,9_3,9_0_0 -1204,2,37.0,0.0,7,111,2400.0,,,37,22,0.0,0.0,,2544.0,247.7270886033876,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,123910,2,3,0,0,2,,554.0,1000.0,43,2.0,0.0,5.0,4.0,2.1,1,1,112.56669106502082,2400.0,47187.00615250699,1,1,2,3,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05391314701716545,22470.002929765233,6,3,6,6_1,6_3,6_0_0 -1205,2,73.0,0.0,7,111,0.0,,,0,77,0.0,0.0,,264.0,454.1663291062106,,30,0,0,0,0,0,0,0,0,0,,1,,5,108175,2,2,0,0,2,,400.0,,11,0.0,0.0,4.0,1.0,1.0,2,1,88.154154620333,0.0,9394.633635564785,0,5,0,1,123.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02810114904327814,9394.633635564785,1,1,1_0,1_1_0,1_3_0,1_0_0 -1206,2,27.0,0.0,9,111,320.0,,,43,47,0.0,0.0,,364.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129481,2,2,0,0,1,,150.0,600.0,43,2.0,0.0,2.0,2.0,1.5,1,1,93.48269234563917,320.0,37530.68736866687,4,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009698729906660104,25020.458245777914,7,4,7,7_1,7_3,7_0_0 -1207,2,66.0,0.0,6,111,760.0,,,78,75,0.0,0.0,,880.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,4,124312,2,1,0,0,2,,800.0,,41,0.0,0.0,7.0,3.0,2.0,2,2,95.78190495397969,760.0,36674.55833435204,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02399483565629551,18337.27916717602,4,2,4_0,4_1_0,4_3_0,4_0_0 -1208,2,82.0,0.0,2,111,930.0,,,86,78,0.0,0.0,,1194.0,454.1663291062106,,12,0,0,0,0,0,0,0,0,0,,1,,2,127661,1,3,0,0,2,,480.0,,41,1.0,0.0,4.0,4.0,2.5,2,2,81.3164591927682,930.0,29233.14180585372,5,5,0,1,81.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04084405323005379,11693.256722341488,2,1,2_0,2_1_0,2_3_0,2_0_1 -1209,2,75.0,0.0,7,111,1320.0,,,72,74,0.0,0.0,,1410.0,154.82943037711726,,33,0,0,0,0,0,0,0,0,0,,1,,5,118605,2,1,0,0,1,,500.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,112.1601148310336,1320.0,71725.26247474717,5,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019658345628172903,47816.84164983145,10,5,10,10_1,10_3,10_0_0 -1210,0,74.0,0.0,2,111,900.0,,,0,75,0.0,0.0,,900.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,100682,1,1,0,0,2,,840.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,103.38432388626195,900.0,43254.0,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020807324178110695,43254.0,9,5,9,9_1,9_3,9_0_1 -1211,2,47.0,0.0,9,111,1800.0,,,42,11,0.0,0.0,,2258.0,0.0,,12,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,113033,2,1,0,0,2,,300.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,110.70255985764216,1800.0,103920.77978188971,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021728089461406273,41568.31191275588,9,5,9,9_1,9_3,9_0_0 -1212,2,29.0,0.0,7,111,0.0,,,46,45,0.0,0.0,,368.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,5,126079,2,2,0,0,2,,247.0,620.0,43,2.0,0.0,3.0,2.0,1.5,2,2,129.42387065254547,0.0,16035.145046955971,4,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022949589724469577,10690.096697970648,2,1,2_0,2_0_0,2_3_0,2_0_0 -1213,1,21.0,250.0,9,111,0.0,,,0,55,0.0,0.0,,365.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,2006.0,6,106389,2,2,0,0,2,,243.0,690.0,22,2.0,0.0,3.0,2.0,1.5,2,2,114.57488783728952,0.0,19701.0,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0185269783259733,13134.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -1214,2,73.0,0.0,7,111,0.0,,,90,77,0.0,0.0,,1184.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,5,117946,2,1,0,0,2,,367.0,,41,0.0,3.0,3.0,2.0,1.5,4,2,103.38432388626195,0.0,37590.07915682139,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03149767243267808,25060.05277121426,7,4,7,7_1,7_3,7_0_0 -1215,2,58.0,0.0,8,111,510.0,,,0,52,0.0,0.0,,636.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,107002,2,2,0,0,2,,400.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,82.38977593633344,510.0,41073.19581940614,0,1,1,2,130.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015484551112029727,41073.19581940614,9,5,9,9_1,9_3,9_0_0 -1216,1,52.0,244.0,8,111,0.0,,,0,46,0.0,0.0,,21.0,36.12686708799403,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,111603,2,1,0,0,2,,0.0,517.0,12,1.0,0.0,2.0,1.0,1.0,1,1,82.38977593633344,0.0,20970.373096092768,0,4,3,4,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0010014127981305566,20970.373096092768,5,3,5,5_0,5_3,5_0_0 -1217,2,39.0,0.0,9,111,900.0,,,0,43,0.0,0.0,,1100.0,344.06540083803833,,12,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,114125,2,2,0,0,2,,600.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,113.85311954983776,900.0,26692.407564952402,0,1,1,2,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04121022044651825,26692.407564952402,7,4,7,7_1,7_3,7_0_0 -1218,2,51.0,0.0,8,111,350.0,,,0,21,0.0,0.0,,438.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,2,35.0,1,2002.0,6,128073,2,1,0,0,2,,400.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,109.94059095709824,350.0,14912.186500263491,0,1,0,1,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029371950249700858,14912.186500263491,3,2,3_0,3_1_0,3_3_0,3_0_0 -1219,2,45.0,0.0,5,111,0.0,,,85,22,0.0,0.0,,1127.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,108990,2,1,0,0,2,,535.0,800.0,42,1.0,1.0,4.0,2.0,1.5,1,1,81.3164591927682,0.0,86013.13792107535,7,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013102649516567132,57342.09194738357,10,5,10,10_1,10_3,10_0_0 -1220,2,68.0,0.0,7,111,1410.0,,,56,21,0.0,0.0,,2052.0,1104.449936690103,,33,0,0,0,0,0,0,0,0,0,,1,,5,110659,2,2,0,0,2,,440.0,,43,2.0,4.0,4.0,2.0,1.5,3,3,92.62450565654508,1410.0,5693.373826865809,4,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3604189822064823,3795.582551243873,1,1,1_0,1_1_0,1_3_0,1_0_0 -1221,2,65.0,0.0,5,111,429.0,,,56,77,0.0,0.0,,693.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,3,101354,2,2,0,0,2,,550.0,,42,1.0,0.0,5.0,2.0,1.5,1,1,127.50902287019996,429.0,23403.279257355447,4,5,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029611234920516368,15602.186171570298,3,2,3_0,3_1_0,3_3_0,3_0_0 -1222,0,63.0,0.0,1,111,600.0,,,0,11,0.0,0.0,,622.0,37.84719409218422,,41,0,0,0,0,0,0,0,0,1,30.0,1,,1,133338,2,1,0,0,2,,120.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,119.85410614845819,600.0,4873.127589236246,0,1,5,0,110.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12763876763125848,4873.127589236246,1,1,1_0,1_1_0,1_3_0,1_1_0 -1223,2,33.0,0.0,7,111,372.0,,,0,46,0.0,0.0,,412.0,68.81308016760767,,33,0,0,0,0,0,0,0,0,2,25.0,1,,5,110502,2,1,0,0,1,,0.0,400.0,12,1.0,0.0,4.0,1.0,1.0,1,1,108.88948471323322,372.0,39412.9861742139,0,1,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010453407366264286,39412.9861742139,9,5,9,9_1,9_3,9_0_0 -1224,1,43.0,200.0,7,111,360.0,,,55,22,0.0,0.0,,444.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,0,,1,,5,106075,2,1,0,0,2,,300.0,,43,2.0,0.0,5.0,2.0,1.5,4,2,93.66466715875579,360.0,4200.101349635061,4,1,1,2,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10571173479863251,2800.0675664233736,1,1,1_1,1_1_1,1_3_1,1_0_0 -1225,2,86.0,0.0,1,111,330.0,,,0,71,0.0,0.0,,462.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,1,112958,2,2,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,99.6542363612057,330.0,14580.831592353308,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03168543557160956,14580.831592353308,3,2,3_0,3_1_0,3_3_0,3_1_0 -1226,2,52.0,0.0,6,111,900.0,,,81,63,0.0,0.0,,1092.0,330.3027848045168,,71,0,0,0,0,0,0,0,0,0,,1,,4,111760,2,2,0,0,2,,1000.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,92.62450565654508,900.0,32487.351898033303,4,4,0,1,37.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03361308128244539,18048.528832240725,4,2,4_0,4_1_0,4_3_0,4_0_0 -1227,2,60.0,0.0,5,111,240.0,,,0,56,0.0,0.0,,600.0,619.317721508469,,41,0,0,0,0,0,0,0,0,0,,1,,3,127129,2,1,0,0,2,,160.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,103.38432388626195,240.0,7543.164064129236,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07954221794713973,7543.164064129236,1,1,1_0,1_1_0,1_3_0,1_0_0 -1229,2,44.0,0.0,7,111,216.0,,,0,56,0.0,0.0,,360.0,247.7270886033876,,10,0,0,0,0,0,0,0,0,0,,1,,5,133565,2,1,0,0,2,,240.0,,32,3.0,0.0,5.0,3.0,2.0,1,1,97.0345847342345,216.0,10167.370006515985,0,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035407386548270206,5083.685003257992,1,1,1_0,1_1_0,1_3_0,1_0_0 -1230,2,68.0,0.0,2,111,200.0,,,0,78,0.0,0.0,,286.0,147.94812236035648,,71,0,0,0,0,0,0,0,0,0,,1,,2,107246,2,1,0,0,2,,100.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,103.38432388626195,200.0,15951.609919581315,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017929224789337544,15951.609919581315,3,2,3_0,3_1_0,3_3_0,3_0_1 -1232,2,71.0,0.0,6,111,1200.0,,,75,75,0.0,0.0,,1344.0,247.7270886033876,,10,0,0,0,0,0,0,0,0,0,,1,,4,101128,2,1,0,0,2,,1000.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,93.16713097614938,1200.0,55024.54647787099,5,5,0,1,82.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024425462562249586,36683.03098524732,9,5,9,9_1,9_3,9_0_0 -1233,2,57.0,0.0,6,111,600.0,,,68,68,0.0,0.0,,888.0,495.4541772067752,,12,0,0,0,0,0,0,0,0,2,35.0,1,,4,115617,1,2,0,0,2,,320.0,,43,2.0,2.0,3.0,2.0,1.5,3,2,98.92907790077965,600.0,33592.40064141084,1,1,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026434550167436476,22394.93376094056,6,3,6,6_1,6_3,6_0_0 -1234,2,54.0,0.0,6,111,570.0,,,85,78,0.0,0.0,,846.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,4,120892,1,2,0,0,2,,220.0,,41,0.0,0.0,3.0,4.0,2.3,4,3,100.68502728452945,570.0,15370.0,6,7,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055042290175666884,6682.608695652174,1,1,1_0,1_1_0,1_3_0,1_0_0 -1235,2,63.0,0.0,7,111,800.0,,,0,77,0.0,0.0,,920.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,1,,5,120320,2,2,0,0,2,,560.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,103.38432388626195,800.0,10522.26829268293,0,5,0,1,82.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08743361929288174,10522.26829268293,2,1,2_0,2_1_0,2_3_0,2_0_0 -1236,2,47.0,0.0,8,111,200.0,,,85,37,0.0,0.0,,440.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125599,2,2,0,0,2,,0.0,800.0,42,1.0,0.0,4.0,3.0,2.0,2,2,118.81928359701651,200.0,91522.1004043929,6,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004807581972614789,45761.05020219645,10,5,10,10_1,10_3,10_0_0 -1237,2,40.0,0.0,9,111,1000.0,,,56,21,0.0,0.0,,1078.0,134.18550632683494,,10,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,127051,1,1,0,0,2,,400.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,148.031666741988,1000.0,49712.84996492456,1,1,1,2,104.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021684534295671937,23672.78569758312,6,3,6,6_1,6_3,6_0_0 -1238,1,43.0,467.0,7,111,0.0,,,0,55,0.0,0.0,,44.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,1,5.0,1,,5,106896,2,1,0,0,2,,0.0,600.0,32,2.0,0.0,3.0,4.0,2.3,1,1,126.09771399077066,0.0,10084.298951599878,0,1,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.004363218525271842,4384.477805043425,1,1,1_1,1_1_1,1_3_1,1_0_0 -1239,2,63.0,0.0,7,111,120.0,,,0,62,0.0,0.0,,140.0,34.40654008380383,,10,0,0,0,0,0,0,0,0,0,,1,,5,114253,2,1,0,0,2,,120.0,655.0,11,0.0,0.0,4.0,1.0,1.0,2,2,115.21739653157984,120.0,33693.13801237624,0,7,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0041551487412236545,33693.13801237624,9,5,9,9_1,9_3,9_0_0 -1240,2,42.0,0.0,9,111,480.0,,,0,42,0.0,0.0,,500.0,34.40654008380383,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,129000,2,3,0,0,2,,360.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,121.89926127866477,480.0,25241.22585258681,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01980886359957665,25241.22585258681,7,4,7,7_1,7_3,7_0_0 -1241,2,61.0,0.0,9,111,312.0,,,0,77,0.0,0.0,,432.0,206.439240502823,,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,113217,2,1,0,0,2,,202.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,107.10148295485956,312.0,27723.215513234936,0,5,1,2,88.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015582608005689858,27723.215513234936,7,4,7,7_1,7_3,7_0_0 -1242,2,39.0,0.0,2,111,0.0,,,56,52,0.0,0.0,,86.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,2,107904,1,3,0,0,2,,430.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,86.54772311453227,0.0,14631.523255813954,1,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.005877720213842206,8128.624031007752,1,1,1_0,1_1_0,1_3_0,1_0_1 -1243,2,44.0,0.0,6,111,600.0,,,52,52,0.0,0.0,,720.0,206.439240502823,,71,0,0,0,0,0,0,0,0,2,15.0,2,,4,118677,2,3,0,0,2,,300.0,530.0,43,2.0,0.0,3.0,2.0,1.5,3,3,97.41822555028745,600.0,54604.395190011426,1,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01318575176035842,36402.930126674284,9,5,9,9_0,9_3,9_0_0 -1244,2,32.0,0.0,7,111,300.0,,,0,33,0.0,0.0,,366.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,114941,2,1,0,0,2,,240.0,636.0,32,1.0,0.0,3.0,2.0,1.5,1,1,104.19286652595798,300.0,38051.01335210391,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009618666304974061,25367.34223473594,7,4,7,7_0,7_3,7_0_0 -1246,1,30.0,250.0,7,111,420.0,,,0,63,0.0,0.0,,660.0,412.878481005646,,10,0,0,0,0,0,0,0,0,0,,2,,5,124266,2,1,0,0,2,,420.0,420.0,22,1.0,0.0,3.0,2.0,1.5,4,3,88.16173411454126,420.0,19307.10314966394,0,4,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03418431003780533,12871.40209977596,2,1,2_1,2_0_1,2_3_1,2_0_0 -1247,2,59.0,0.0,7,111,180.0,,,0,42,0.0,0.0,,222.0,72.25373417598806,,12,0,0,0,0,0,0,0,0,2,60.0,2,,5,121478,2,2,0,0,2,,278.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,82.8613353336723,180.0,56697.38522048098,0,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003915524483831156,56697.38522048098,10,5,10,10_0,10_3,10_0_0 -1248,2,49.0,0.0,7,111,1144.0,,,22,85,0.0,0.0,,1229.0,146.2277953561663,,12,0,0,0,0,0,0,0,0,0,,1,,5,106157,2,2,0,0,2,,513.0,,42,1.0,0.0,5.0,2.0,1.5,1,1,96.66834252624712,1144.0,8628.761697410855,1,7,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14243063409304416,5752.507798273903,1,1,1_0,1_1_0,1_3_0,1_0_0 -1249,2,60.0,0.0,6,111,600.0,,,0,75,0.0,0.0,,810.0,361.26867087994026,,41,0,0,0,0,0,0,0,0,0,,1,,4,127312,2,2,0,0,2,,789.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,105.7051336789189,600.0,26284.023829960497,0,5,1,2,31.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030817199270558468,26284.023829960497,7,4,7,7_1,7_3,7_0_0 -1250,2,61.0,0.0,7,111,300.0,,,0,77,0.0,0.0,,426.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,0,,1,,5,111231,2,2,0,0,2,,474.0,,21,0.0,2.0,4.0,2.0,1.5,2,2,84.66932140342483,300.0,15587.987094912312,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02732873702076903,10391.991396608208,2,1,2_0,2_1_0,2_3_0,2_0_0 -1251,2,51.0,0.0,6,111,884.0,,,0,62,0.0,0.0,,1010.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,4,104248,2,1,0,0,1,,960.0,,32,1.0,2.0,4.0,2.0,1.5,2,2,84.66932140342483,884.0,8454.797525362175,0,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11945880394773084,5636.5316835747835,1,1,1_0,1_1_0,1_3_0,1_0_0 -1252,1,46.0,253.0,6,111,542.0,,,0,69,0.0,0.0,,752.0,361.26867087994026,,10,0,0,0,0,0,0,0,0,0,,1,,4,104165,2,2,0,0,2,,660.0,500.0,12,1.0,4.0,4.0,1.0,1.0,2,2,87.58385116289233,542.0,6678.583574650995,0,4,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1125987257019985,6678.583574650995,1,1,1_1,1_1_1,1_3_1,1_0_0 -1253,2,58.0,0.0,7,111,0.0,,,0,75,0.0,0.0,,598.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,5,113577,2,2,0,0,2,,0.0,800.0,11,0.0,2.0,3.0,1.0,1.0,1,1,145.9338212253633,0.0,63487.187118120615,0,5,3,4,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009419223423576721,63487.187118120615,10,5,10,10_0,10_3,10_0_0 -1254,2,36.0,0.0,5,111,600.0,,,22,42,0.0,0.0,,726.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,2,45.0,1,,3,115781,2,2,0,0,1,,1200.0,1144.0,43,2.0,1.0,4.0,4.0,2.1,2,2,133.49689854964362,600.0,68870.8959435186,1,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010541462980173753,32795.66473500885,8,4,8,8_1,8_3,8_0_0 -1255,2,80.0,0.0,2,111,609.0,,,0,71,0.0,0.0,,853.0,419.7597890224068,,10,0,0,0,0,0,0,0,0,0,,1,,2,111768,2,2,0,0,2,,420.0,,21,1.0,8.0,4.0,2.0,1.5,1,1,84.66932140342483,609.0,17239.988106346653,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04947799237088687,11493.325404231102,2,1,2_0,2_1_0,2_3_0,2_0_1 -1256,2,72.0,0.0,2,111,135.0,,,0,74,0.0,0.0,,157.0,37.84719409218422,,20,0,0,0,0,0,0,0,0,0,,2,,2,114530,2,1,0,0,2,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,108.05261568685063,135.0,16628.82296835559,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009441437935731755,16628.82296835559,4,2,4_0,4_0_0,4_3_0,4_0_1 -1257,2,65.0,0.0,2,111,120.0,,,56,21,0.0,0.0,,330.0,361.26867087994026,,31,0,0,0,0,0,0,0,0,0,,1,,2,109301,2,2,0,0,2,,160.0,,43,2.0,8.0,3.0,2.0,1.5,3,3,84.66932140342483,120.0,3157.94722558946,4,4,0,1,24.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10449826308873876,2105.298150392973,1,1,1_0,1_1_0,1_3_0,1_0_1 -1258,2,75.0,0.0,2,111,300.0,,,77,78,0.0,0.0,,560.0,447.28502108944986,,10,0,0,0,0,0,0,0,0,0,,1,,2,114642,2,2,0,0,2,,340.0,,41,0.0,6.0,5.0,2.0,1.5,4,4,84.66932140342483,300.0,24589.591381214457,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022773863596115686,16393.06092080964,4,2,4_0,4_1_0,4_3_0,4_0_1 -1259,1,37.0,350.0,5,111,0.0,,,0,42,0.0,0.0,,41.0,70.53340717179786,,50,0,0,0,0,0,0,0,0,0,,1,,3,120377,2,2,0,0,2,,0.0,650.0,32,1.0,0.0,3.0,2.0,1.3,2,2,114.1805163747458,0.0,8287.123807718017,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.004947434230657399,6374.710621321551,1,1,1_1,1_1_1,1_3_1,1_0_0 -1260,2,51.0,0.0,8,111,2000.0,,,21,63,0.0,0.0,,2400.0,688.1308016760767,,12,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,129399,2,2,0,0,2,,400.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,106.3160893146194,2000.0,31751.820136739487,4,1,0,1,160.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07558621803929284,15875.910068369743,3,2,3_0,3_1_0,3_3_0,3_0_0 -1261,2,51.0,0.0,2,111,240.0,,,0,56,0.0,0.0,,500.0,447.28502108944986,,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,111699,2,2,0,0,2,,200.0,,32,3.0,1.0,5.0,4.0,2.3,2,2,120.13668960118547,240.0,25450.210785212435,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019646202706129236,11065.309037048886,2,1,2_0,2_1_0,2_3_0,2_0_1 -1262,1,53.0,357.0,2,111,200.0,,,0,68,0.0,0.0,,440.0,412.878481005646,,10,0,0,0,0,0,0,0,0,3,15.0,1,,2,107625,2,2,0,0,2,,200.0,420.0,32,1.0,2.0,3.0,2.0,1.3,2,2,129.8059126962516,200.0,15354.362575089339,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.028656350782926582,11811.048134684106,2,1,2_1,2_1_1,2_3_1,2_0_1 -1263,2,55.0,0.0,9,111,480.0,,,56,56,0.0,0.0,,735.0,438.68338606849886,,10,0,0,0,0,0,0,0,0,3,45.0,1,2009.0,6,105679,2,2,0,0,2,,150.0,,43,2.0,1.0,3.0,2.0,1.5,3,2,146.5378417031201,480.0,24881.48293333479,1,1,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029540039955387423,16587.655288889862,4,2,4_0,4_1_0,4_3_0,4_0_0 -1264,2,61.0,0.0,6,111,1100.0,,,0,52,0.0,0.0,,1352.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,4,102720,1,2,0,0,2,,600.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,95.75533641533913,1100.0,33929.880687037235,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039846883414374215,33929.880687037235,9,5,9,9_1,9_3,9_0_0 -1265,2,48.0,0.0,7,111,1200.0,,,85,21,0.0,0.0,,1450.0,430.0817510475479,,10,0,0,0,0,0,0,0,0,0,,1,,5,106934,2,2,0,0,2,,600.0,,42,1.0,2.0,4.0,5.0,2.8,1,1,78.79134763241706,1200.0,23365.133362619217,6,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06205828049412237,8344.69048664972,1,1,1_0,1_1_0,1_3_0,1_0_0 -1266,2,72.0,0.0,2,111,1000.0,,,21,72,0.0,0.0,,1500.0,860.1635020950959,,10,0,0,0,0,0,0,0,0,0,,1,,2,115210,1,2,0,0,2,,400.0,,41,0.0,4.0,3.0,2.0,1.5,4,4,84.66932140342483,1000.0,13620.378968094132,6,5,0,1,36.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1101290943162275,9080.252645396087,1,1,1_0,1_1_0,1_3_0,1_0_1 -1267,2,74.0,0.0,6,111,350.0,,,0,22,0.0,0.0,,415.0,111.82125527236246,,12,0,0,0,0,0,0,0,0,2,45.0,1,,4,116757,1,2,0,0,2,,200.0,,12,1.0,4.0,5.0,1.0,1.0,2,2,109.10738804250775,350.0,60090.02013390273,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006906304891814429,60090.02013390273,10,5,10,10_1,10_3,10_0_0 -1268,2,59.0,0.0,9,111,400.0,,,0,77,0.0,0.0,,442.0,72.25373417598806,,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,133665,2,2,0,0,2,,120.0,,11,0.0,4.0,1.0,1.0,1.0,1,1,105.6704307095364,400.0,19486.649909656182,0,5,0,1,28.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022682195351648237,19486.649909656182,5,3,5,5_1,5_3,5_0_0 -1269,2,61.0,0.0,8,111,1500.0,,,74,75,0.0,0.0,,1615.0,197.83760548187203,,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,113275,2,1,0,0,2,,700.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,118.02169210843613,1500.0,58367.25035985314,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027669626203787195,38911.500239902096,9,5,9,9_1,9_3,9_0_0 -1270,2,60.0,0.0,9,111,0.0,,,0,75,0.0,0.0,,65.0,111.82125527236246,,43,0,0,0,0,0,0,0,0,0,,1,2005.0,6,104317,2,2,0,0,2,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,1,1,121.61840972770649,0.0,28107.954805908164,0,7,3,4,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0023125126124913685,28107.954805908164,8,4,8,8_1,8_3,8_0_0 -1271,2,78.0,0.0,9,111,0.0,,,0,71,0.0,0.0,,126.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114155,2,2,0,0,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,90.59713755746766,0.0,5528.837936098043,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022789599090496045,5528.837936098043,1,1,1_0,1_1_0,1_3_0,1_0_0 -1272,2,32.0,0.0,9,111,1158.0,,,47,43,0.0,0.0,,1179.0,36.12686708799403,,20,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,104193,2,1,0,0,2,,425.0,1190.0,43,2.0,0.0,4.0,3.0,1.8,1,1,155.02298658785563,1158.0,50123.4056600765,1,1,3,4,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023521945176584007,27846.336477820278,7,4,7,7_1,7_3,7_0_0 -1273,1,52.0,300.0,9,111,600.0,,,64,46,0.0,0.0,,600.0,0.0,,44,0,0,0,0,0,0,0,0,0,,2,2009.0,6,126684,2,1,0,0,1,,250.0,715.0,43,2.0,5.0,3.0,2.0,1.5,1,1,150.30338685490054,600.0,15705.530724836239,4,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03820310249377174,10470.353816557492,2,1,2_1,2_0_1,2_3_1,2_0_0 -1274,2,73.0,0.0,9,111,360.0,,,77,78,0.0,0.0,,612.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,119850,2,1,0,0,2,,380.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,84.66932140342483,360.0,9075.358461481472,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06743535284005701,6050.2389743209815,1,1,1_0,1_1_0,1_3_0,1_0_0 -1275,2,41.0,0.0,7,111,0.0,,,42,37,0.0,0.0,,629.0,0.0,,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,127313,2,1,0,0,2,,626.0,1220.0,43,2.0,0.0,5.0,5.0,2.4000000000000004,1,1,115.5579903135613,0.0,81070.67571398229,1,1,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007758662358003711,33779.44821415928,9,5,9,9_1,9_3,9_0_0 -1276,0,53.0,0.0,2,111,450.0,,,0,56,0.0,0.0,,513.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,2,90.0,1,,2,117174,2,1,0,0,2,,270.0,,12,1.0,1.0,3.0,1.0,1.0,4,4,106.2774234569179,450.0,4802.341773544039,0,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10682288437405728,4802.341773544039,1,1,1_0,1_1_0,1_3_0,1_0_1 -1277,2,59.0,0.0,6,111,650.0,,,54,37,0.0,0.0,,750.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,123404,2,2,0,0,2,,400.0,,43,3.0,1.0,5.0,3.0,2.0,4,3,115.42716576209068,650.0,136879.27765561885,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005479280814784551,68439.63882780942,10,5,10,10_1,10_3,10_0_0 -1278,0,47.0,0.0,1,111,400.0,,,0,52,0.0,0.0,,485.0,146.2277953561663,,70,0,0,0,0,0,0,0,0,2,45.0,1,,1,123119,2,2,0,0,2,,400.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,88.17704451097369,400.0,23351.6198681288,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020769437098534946,14594.7624175805,3,2,3_0,3_1_0,3_3_0,3_1_0 -1279,2,75.0,0.0,7,111,500.0,,,0,90,0.0,0.0,,760.0,447.28502108944986,,20,0,0,0,0,0,0,0,0,0,,1,,5,126369,2,2,0,0,2,,450.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,114.1805163747458,500.0,10221.224,0,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0743550870228458,10221.224,2,1,2_0,2_1_0,2_3_0,2_0_0 -1280,0,24.0,0.0,2,111,0.0,,,42,55,0.0,0.0,,368.0,0.0,,10,0,0,0,0,0,0,0,0,1,2.0,1,,2,104898,2,2,0,0,2,,0.0,,43,2.0,0.0,1.0,2.0,1.5,1,1,123.4423769497848,0.0,34115.95363039365,1,1,5,0,20.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01078674229619516,22743.969086929097,6,3,6,6_1,6_3,6_0_1 -1281,0,28.0,0.0,2,111,0.0,,,0,56,0.0,0.0,,367.0,0.0,,12,0,0,0,0,0,0,0,0,1,5.0,1,,2,119392,2,2,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,123.4423769497848,0.0,14285.631720430109,0,1,5,0,12.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025690148478008674,14285.631720430109,3,2,3_0,3_1_0,3_3_0,3_0_1 -1282,0,26.0,0.0,2,111,0.0,,,0,46,0.0,0.0,,597.0,0.0,,60,0,0,0,0,0,0,0,0,1,5.0,2,,2,117711,1,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,125.22347847858498,0.0,13217.981145165948,0,1,5,0,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04516574758607018,13217.981145165948,2,1,2_0,2_0_0,2_3_0,2_0_1 -1283,0,25.0,0.0,2,111,0.0,,,0,42,0.0,0.0,,138.0,0.0,,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,108737,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,125.22347847858498,0.0,14501.88342644655,0,1,5,0,25.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009516005331303002,14501.88342644655,3,2,3_0,3_0_0,3_3_0,3_0_1 -1284,0,31.0,0.0,2,111,0.0,,,0,55,0.0,0.0,,434.0,0.0,,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,123921,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,125.22347847858498,0.0,18601.300049784033,0,1,5,0,25.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023331702560490598,18601.300049784033,4,2,4_0,4_0_0,4_3_0,4_0_1 -1285,0,29.0,0.0,5,111,0.0,,,0,56,0.0,0.0,,339.0,0.0,,41,0,0,0,0,0,0,0,0,1,3.0,2,,3,123640,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,125.22347847858498,0.0,9599.0,0,1,5,0,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03531617876862173,9599.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -1286,2,70.0,0.0,5,111,360.0,,,0,78,0.0,0.0,,490.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,1,,3,110773,2,1,0,0,2,,200.0,,11,0.0,4.0,4.0,1.0,1.0,3,3,90.59713755746766,360.0,11369.0,0,5,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04309965696191398,11369.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -1287,2,46.0,0.0,9,111,600.0,,,42,35,0.0,0.0,,855.0,438.68338606849886,,20,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,109647,2,2,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,131.69432623185952,600.0,60177.15081017925,1,1,1,2,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014208050538932673,30088.575405089625,8,4,8,8_1,8_3,8_0_0 -1289,1,49.0,357.0,8,111,640.0,,,0,54,0.0,0.0,,770.0,223.64251054472493,,41,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,122490,1,2,0,0,2,,300.0,537.0,32,1.0,0.0,4.0,3.0,1.8,2,2,80.61237425888602,640.0,33702.0,0,1,2,3,98.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022847308765058454,18723.333333333332,5,3,5,5_0,5_3,5_0_0 -1290,1,50.0,307.0,7,111,384.0,,,0,52,0.0,0.0,,644.0,447.28502108944986,,60,0,0,0,0,0,0,0,0,2,30.0,2,,5,110284,1,2,0,0,2,,400.0,411.0,32,1.0,2.0,4.0,2.0,1.5,1,1,75.87928374446442,384.0,17522.67810021642,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03675237291450592,11681.785400144281,2,1,2_1,2_0_1,2_3_1,2_0_0 -1292,2,47.0,0.0,7,111,350.0,,,85,62,0.0,0.0,,650.0,516.0981012570575,,10,0,0,0,0,0,0,0,0,0,,1,,5,103713,2,2,0,0,2,,300.0,,42,1.0,0.0,3.0,4.0,2.3,4,4,98.57452615522115,350.0,20718.159408992964,6,1,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031373443324210534,9007.895395214333,1,1,1_0,1_1_0,1_3_0,1_0_0 -1293,2,56.0,0.0,9,111,312.0,,,0,43,0.0,0.0,,382.0,120.42289029331342,,70,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,106529,2,2,0,0,2,,120.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,96.49877356885459,312.0,50319.45782202005,0,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007591496739713178,50319.45782202005,10,5,10,10_1,10_3,10_0_0 -1294,2,69.0,0.0,6,111,1000.0,,,75,75,0.0,0.0,,1250.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,1,,4,114048,2,2,0,0,2,,400.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,162.06119682539406,1000.0,41706.05399514855,5,5,0,1,127.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029971667905705154,27804.0359967657,7,4,7,7_1,7_3,7_0_0 -1295,1,37.0,156.0,9,111,1080.0,,,0,43,0.0,0.0,,1122.0,72.25373417598806,,12,0,0,0,0,0,0,0,0,2,45.0,2,2007.0,6,101669,1,2,0,0,2,,550.0,406.0,32,1.0,0.0,3.0,3.0,1.6,2,2,94.61059001912076,1080.0,26309.65852461866,0,1,2,3,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04264593548221518,16443.53657788666,4,2,4_1,4_0_1,4_3_1,4_0_0 -1296,2,57.0,0.0,5,111,532.0,,,81,71,0.0,0.0,,658.0,216.76120252796414,,43,0,0,0,0,0,0,0,0,0,,1,,3,132535,1,2,0,0,2,,328.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,99.6971601541575,532.0,10598.0,4,7,0,1,77.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062087186261558784,7065.333333333333,1,1,1_0,1_1_0,1_3_0,1_0_0 -1297,2,78.0,0.0,9,111,300.0,,,0,78,0.0,0.0,,468.0,289.01493670395223,,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,121139,2,2,0,0,2,,100.0,,21,0.0,0.0,2.0,2.0,1.5,2,2,85.4032466745017,300.0,4121.3702479338845,0,5,0,1,18.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11355446655990606,2747.5801652892565,1,1,1_0,1_1_0,1_3_0,1_0_0 -1298,2,40.0,0.0,9,111,0.0,,,0,53,0.0,0.0,,21.0,36.12686708799403,,31,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,109025,1,1,0,0,2,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,79.79627212090355,0.0,28443.796047540884,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0007382980796550733,28443.796047540884,8,4,8,8_1,8_3,8_0_0 -1299,2,50.0,0.0,8,111,780.0,,,48,45,0.0,0.0,,843.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,2,25.0,1,1999.0,6,101091,2,2,0,0,2,,192.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,101.3755417832853,780.0,89422.09142294097,1,1,1,2,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009427200668041308,49678.93967941165,10,5,10,10_1,10_3,10_0_0 -1300,2,68.0,0.0,6,111,587.0,,,77,78,0.0,0.0,,755.0,289.01493670395223,,31,0,0,0,0,0,0,0,0,0,,1,,4,112270,2,1,0,0,2,,346.0,,41,0.0,7.0,5.0,2.0,1.5,1,1,99.6971601541575,587.0,42655.65067669396,5,5,0,1,116.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017699882384223344,28437.100451129303,8,4,8,8_1,8_3,8_0_0 -1301,2,59.0,0.0,7,111,900.0,,,56,67,0.0,0.0,,1194.0,505.7761392319164,,33,0,0,0,0,0,0,0,0,0,,2,,5,101317,1,2,0,0,2,,600.0,,43,5.0,3.0,5.0,5.0,3.0,1,1,72.0413321392731,900.0,26702.40608997611,4,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0447150715923019,8900.802029992037,1,1,1_0,1_0_0,1_3_0,1_0_0 -1302,2,66.0,0.0,6,111,230.0,,,0,72,0.0,0.0,,482.0,433.5224050559283,,12,0,0,0,0,0,0,0,0,0,,1,,4,109573,2,2,0,0,2,,160.0,,11,0.0,3.0,6.0,1.0,1.0,4,3,72.0413321392731,230.0,2282.494318517962,0,5,0,1,137.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21117248620928253,2282.494318517962,1,1,1_0,1_1_0,1_3_0,1_0_0 -1303,2,59.0,0.0,6,111,538.0,,,0,67,0.0,0.0,,580.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,2,60.0,1,,4,132843,2,2,0,0,2,,250.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,89.90641248660108,538.0,28971.640502410766,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02001957741922614,28971.640502410766,8,4,8,8_1,8_3,8_0_0 -1304,2,47.0,0.0,7,111,2000.0,,,46,54,0.0,0.0,,2130.0,223.64251054472493,,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,131051,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,106.3160893146194,2000.0,46659.27144938888,1,1,0,1,144.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04565009126450683,23329.63572469444,6,3,6,6_1,6_3,6_0_0 -1305,2,74.0,0.0,7,111,500.0,,,0,78,0.0,0.0,,550.0,86.01635020950958,,31,0,0,0,0,0,0,0,0,0,,1,,5,103867,2,2,0,0,2,,500.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,109.1712533917608,500.0,15773.569873718956,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03486845428163851,15773.569873718956,3,2,3_0,3_1_0,3_3_0,3_0_0 -1306,2,76.0,0.0,7,111,300.0,,,77,78,0.0,0.0,,600.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,5,107938,2,2,0,0,2,,225.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,102.07574117003496,300.0,18873.79300815116,5,5,0,1,136.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03179011233941549,12582.528672100772,2,1,2_0,2_1_0,2_3_0,2_0_0 -1307,2,51.0,0.0,7,111,600.0,,,21,52,0.0,0.0,,644.0,75.69438818436844,,12,0,0,0,0,0,0,0,0,2,8.0,1,,5,116027,2,1,0,0,2,,432.0,,43,2.0,2.0,4.0,2.0,1.5,4,3,127.40468121918364,600.0,33253.50177559829,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019366381451970054,22169.001183732194,6,3,6,6_1,6_3,6_0_0 -1309,1,43.0,413.0,2,111,110.0,,,0,85,0.0,0.0,,294.0,316.54016877099525,,10,0,0,0,0,0,0,0,0,0,,1,,2,109947,2,1,0,0,2,,352.0,500.0,31,0.0,0.0,4.0,3.0,1.6,4,3,90.59713755746766,110.0,17020.825531914896,0,6,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01727295773337993,10638.015957446809,2,1,2_1,2_1_1,2_3_1,2_0_1 -1310,2,38.0,0.0,7,111,750.0,,,38,33,0.0,0.0,,820.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,124944,2,1,0,0,2,,313.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,108.50897348205525,750.0,114822.71744223943,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007141443943028903,47842.79893426643,10,5,10,10_1,10_3,10_0_0 -1311,2,47.0,0.0,7,111,2000.0,,,21,55,0.0,0.0,,2140.0,240.84578058662683,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,132531,2,1,0,0,2,,1500.0,,43,2.0,0.0,8.0,4.0,2.3,2,2,109.28264991843267,2000.0,47834.70521652889,1,1,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04473739286806644,20797.697920229955,5,3,5,5_1,5_3,5_0_0 -1312,2,63.0,0.0,7,111,800.0,,,0,45,0.0,0.0,,865.0,111.82125527236246,,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,120031,2,1,0,0,2,,950.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,92.71588862276026,800.0,43530.72818786495,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019871020679160974,43530.72818786495,10,5,10,10_1,10_3,10_0_0 -1313,2,84.0,0.0,7,111,1200.0,,,0,77,0.0,0.0,,1300.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,0,,1,,5,106551,2,1,0,0,2,,1200.0,,11,0.0,8.0,4.0,1.0,1.0,2,2,123.26389364856854,1200.0,9398.232580493304,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1383238804600603,9398.232580493304,1,1,1_0,1_1_0,1_3_0,1_0_0 -1314,2,84.0,0.0,2,111,350.0,,,77,77,0.0,0.0,,626.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,0,,1,,2,101706,2,1,0,0,2,,240.0,,41,0.0,5.0,4.0,2.0,1.5,4,4,84.66932140342483,350.0,25450.027579908266,5,5,0,1,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02459722285307859,16966.685053272176,4,2,4_0,4_1_0,4_3_0,4_0_1 -1315,2,69.0,0.0,2,111,110.0,,,77,78,0.0,0.0,,308.0,340.62474682965797,,10,0,0,0,0,0,0,0,0,0,,1,,2,129199,2,1,0,0,2,,320.0,,41,1.0,0.0,4.0,3.0,2.0,4,4,99.35968172977576,110.0,16212.608980198842,6,5,0,1,124.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018997559268602214,8106.304490099421,1,1,1_0,1_1_0,1_3_0,1_0_1 -1316,2,69.0,0.0,5,111,966.0,,,75,74,0.0,0.0,,1242.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,3,112594,2,1,0,0,2,,668.0,,41,0.0,3.0,8.0,2.0,1.5,3,2,97.1651308249195,966.0,45116.625235015534,5,5,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027528654759311863,30077.750156677022,8,4,8,8_1,8_3,8_0_0 -1317,2,55.0,0.0,6,111,420.0,,,81,56,0.0,0.0,,696.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,4,114207,2,1,0,0,2,,544.0,,43,3.0,0.0,4.0,4.0,2.5,1,1,98.06600761920484,420.0,14288.39222808679,4,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04871086885702004,5715.356891234716,1,1,1_0,1_1_0,1_3_0,1_0_0 -1318,2,43.0,0.0,9,111,800.0,,,56,42,0.0,0.0,,926.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,117882,2,1,0,0,2,,1000.0,,43,2.0,1.0,5.0,6.0,2.6999999999999997,1,1,86.85852294235069,800.0,25176.82559962493,4,1,0,1,136.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03677985520199159,9324.750222083308,1,1,1_0,1_0_0,1_3_0,1_0_0 -1319,2,71.0,0.0,9,111,3200.0,,,46,75,0.0,0.0,,3263.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,102302,2,1,0,0,1,,170.0,,42,1.0,1.0,5.0,3.0,2.0,1,1,71.56634871919583,3200.0,34516.0,1,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09453586742380346,17258.0,4,2,4_0,4_1_0,4_3_0,4_0_0 -1320,1,36.0,206.0,8,111,360.0,,,52,55,0.0,0.0,,528.0,289.01493670395223,,20,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,102422,2,3,0,0,2,,400.0,750.0,43,2.0,2.0,4.0,4.0,2.3,1,1,84.02643721911467,360.0,20111.43233236706,4,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026253724313322235,8744.101014072636,1,1,1_1,1_1_1,1_3_1,1_0_0 -1322,2,65.0,0.0,6,111,192.0,,,0,77,0.0,0.0,,507.0,541.9030063199103,,10,0,0,0,0,0,0,0,0,0,,1,,4,114918,2,1,0,0,2,,1120.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,106.5605667653984,192.0,15185.951715187062,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033386119586628404,15185.951715187062,3,2,3_0,3_1_0,3_3_0,3_0_0 -1323,2,51.0,0.0,8,111,720.0,,,55,46,0.0,0.0,,846.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,120218,2,1,0,0,2,,600.0,450.0,43,2.0,7.0,4.0,3.0,2.0,2,2,72.91491050499367,720.0,75925.01857549399,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011142572183354855,37962.509287746994,9,5,9,9_1,9_3,9_0_0 -1324,2,58.0,0.0,7,111,180.0,,,85,52,0.0,0.0,,432.0,433.5224050559283,,12,0,0,0,0,0,0,0,0,0,,1,,5,116109,1,2,0,0,2,,230.0,,42,2.0,0.0,5.0,3.0,2.0,2,2,80.94073096083527,180.0,32587.337108325206,7,4,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01325668306569411,16293.668554162603,4,2,4_0,4_1_0,4_3_0,4_0_0 -1325,2,38.0,0.0,9,111,900.0,,,46,38,0.0,0.0,,965.0,111.82125527236246,,10,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,102197,2,1,0,0,2,,200.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,116.34085606177645,900.0,94932.69816483473,1,1,1,2,190.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010165096101286821,45206.046745159394,10,5,10,10_1,10_3,10_0_0 -1326,2,70.0,0.0,7,111,180.0,,,0,21,0.0,0.0,,222.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,0,,1,,5,106052,2,1,0,0,2,,112.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,78.32043950332108,180.0,20319.991824040248,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010925201246260122,20319.991824040248,5,3,5,5_1,5_3,5_0_0 -1327,2,46.0,0.0,7,111,460.8,,,11,64,0.0,0.0,,713.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,2,40.0,1,,5,114997,1,1,0,0,2,,320.0,,43,2.0,1.0,6.0,5.0,2.8,1,1,72.0413321392731,460.8,42653.874109148746,1,1,0,1,96.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0167159493689946,15233.526467553125,3,2,3_0,3_1_0,3_3_0,3_0_0 -1328,2,47.0,0.0,7,111,800.0,,,0,56,0.0,0.0,,1010.0,361.26867087994026,,20,0,0,0,0,0,0,0,0,0,,1,,5,105288,2,1,0,0,2,,1100.0,,32,1.0,1.0,3.0,3.0,2.0,1,1,87.3399591016204,800.0,17466.771909118084,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05782407907168898,8733.385954559042,1,1,1_0,1_1_0,1_3_0,1_0_0 -1329,2,40.0,0.0,9,111,1200.0,,,0,52,0.0,103.51725048194578,,1552.0,433.5224050559283,,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,106765,2,1,0,0,2,,1400.0,,32,1.0,0.0,3.0,4.0,1.9,1,1,85.72460593994401,1200.0,9403.62031657906,0,4,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16504281837748652,4949.273850831084,1,1,1_0,1_1_0,1_3_0,1_0_0 -1330,2,23.0,0.0,7,111,480.0,,,68,68,0.0,0.0,,732.0,433.5224050559283,,12,0,0,0,0,0,0,0,0,0,,1,,5,109271,1,1,0,0,2,,365.0,,43,5.0,1.0,4.0,6.0,3.3,2,2,86.3127072503203,480.0,27860.054385054114,1,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026274176994883786,8442.440722743671,1,1,1_0,1_1_0,1_3_0,1_0_0 -1331,0,70.0,0.0,8,111,403.0,,,0,86,0.0,0.0,,571.0,289.01493670395223,,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,130475,2,2,0,0,2,,180.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,106.04872920959623,403.0,12890.836073410972,0,7,5,0,48.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04429503228093652,12890.836073410972,2,1,2_0,2_1_0,2_3_0,2_0_0 -1332,2,43.0,0.0,8,111,780.0,,,0,21,0.0,0.0,,860.0,137.62616033521533,,12,0,0,0,0,0,0,0,0,0,,1,2000.0,6,130971,2,2,0,0,2,,550.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,88.06817101260756,780.0,4883.063889603813,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1761189325888128,4883.063889603813,1,1,1_0,1_1_0,1_3_0,1_0_0 -1333,1,38.0,600.0,7,111,840.0,,,68,22,0.0,0.0,,1008.0,289.01493670395223,,10,0,0,0,0,0,0,0,0,0,,2,,5,129506,2,2,0,0,2,,1900.0,600.0,43,2.0,0.0,5.0,6.0,3.0999999999999996,2,2,98.6760508293382,840.0,19399.770345033183,4,4,2,3,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05195937797573324,6257.990433881672,1,1,1_1,1_0_1,1_3_1,1_0_0 -1334,1,46.0,194.0,2,111,720.0,,,85,62,0.0,0.0,,870.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,1,,2,111615,2,2,0,0,2,,350.0,700.0,42,2.0,1.0,4.0,5.0,2.8,1,1,89.234239045537,720.0,41093.11841595532,6,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02117142805259099,14676.113719984045,3,2,3_1,3_1_1,3_3_1,3_0_1 -1335,2,74.0,0.0,8,111,660.0,,,0,77,0.0,0.0,,744.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,116994,2,1,0,0,2,,465.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,109.1712533917608,660.0,14517.479805652272,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05124856448640136,14517.479805652272,3,2,3_0,3_1_0,3_3_0,3_0_0 -1336,2,63.0,0.0,8,111,210.0,,,0,74,0.0,0.0,,210.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118312,1,2,0,0,2,,101.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,96.08175430733556,210.0,43176.2911954982,0,5,1,2,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004863780426371957,43176.2911954982,9,5,9,9_1,9_3,9_0_0 -1337,2,52.0,0.0,7,111,831.0,,,21,22,0.0,0.0,,894.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,0,,1,,5,105352,2,1,0,0,2,,950.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,132.01293074464374,831.0,20183.464783863074,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044293683446994886,13455.64318924205,3,2,3_0,3_1_0,3_3_0,3_0_0 -1338,2,65.0,0.0,2,111,1200.0,,,86,33,0.0,0.0,,1300.0,172.03270041901916,,12,0,0,0,0,0,0,0,0,2,10.0,1,,2,122971,2,1,0,0,2,,1200.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,108.72511096492461,1200.0,78900.41431543688,6,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016476466077893014,52600.27621029125,10,5,10,10_1,10_3,10_0_1 -1339,2,80.0,0.0,7,111,150.0,,,0,78,0.0,0.0,,195.0,77.41471518855863,,10,0,0,0,0,0,0,0,0,0,,1,,5,122985,2,2,0,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,106.2774234569179,150.0,9218.718411024478,0,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021152614854446954,9218.718411024478,1,1,1_0,1_1_0,1_3_0,1_0_0 -1340,2,48.0,0.0,9,111,588.0,,,0,11,0.0,0.0,,672.0,144.50746835197612,,12,0,0,0,0,0,0,0,0,0,,1,2006.0,6,129223,2,2,0,0,2,,523.0,,32,2.0,1.0,5.0,2.0,1.5,2,2,122.83707476853375,588.0,13374.315764444882,0,4,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05024556110649689,8916.210509629922,1,1,1_0,1_1_0,1_3_0,1_0_0 -1341,1,30.0,460.0,7,111,0.0,,,0,55,0.0,0.0,,784.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,105498,2,1,0,0,2,,413.0,650.0,32,1.0,0.0,4.0,4.0,1.9,1,1,118.9427061462923,0.0,18034.93906094399,0,4,2,3,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.043471175441774056,9492.073189970522,1,1,1_1,1_1_1,1_3_1,1_0_0 -1342,2,73.0,0.0,7,111,240.0,,,0,75,0.0,0.0,,324.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,0,,1,,5,105051,2,1,0,0,2,,88.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,123.26389364856854,240.0,15589.06547683822,0,5,0,1,113.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02078379877750785,15589.06547683822,3,2,3_0,3_1_0,3_3_0,3_0_0 -1343,2,38.0,0.0,9,111,240.0,,,63,68,0.0,0.0,,290.0,86.01635020950958,,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,111814,2,1,0,0,2,,300.0,500.0,42,1.0,0.0,3.0,4.0,2.1,1,1,124.75412203183643,240.0,5121.639846080442,6,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056622489810941146,2438.876117181163,1,1,1_0,1_1_0,1_3_0,1_0_0 -1344,2,32.0,0.0,7,111,386.0,,,54,21,0.0,0.0,,428.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,2,60.0,1,,5,119184,2,2,0,0,2,,199.0,738.0,43,2.0,0.0,4.0,2.0,1.5,3,3,103.73580863114834,386.0,45224.71739423051,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009463851288866242,30149.81159615367,8,4,8,8_1,8_3,8_0_0 -1345,2,44.0,0.0,7,111,900.0,,,69,55,0.0,0.0,,1152.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,5,105444,2,1,0,0,2,,600.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,100.7469656446396,900.0,21149.60857876396,4,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05446909316121849,9195.48199076694,1,1,1_0,1_1_0,1_3_0,1_0_0 -1346,1,43.0,192.0,8,111,115.0,,,67,46,0.0,0.0,,185.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,101557,2,1,0,0,2,,115.0,600.0,43,2.0,0.0,3.0,6.0,2.6999999999999997,2,2,106.25423965120919,115.0,55565.0,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0033294339962206426,20579.62962962963,5,3,5,5_1,5_3,5_0_0 -1347,2,74.0,0.0,9,111,180.0,,,0,78,0.0,0.0,,280.0,172.03270041901916,,12,0,0,0,0,0,0,0,0,0,,1,2010.0,6,132396,2,1,0,0,2,,120.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,137.66178546161223,180.0,5000.014334213207,0,5,0,1,61.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055999839457272334,5000.014334213207,1,1,1_0,1_1_0,1_3_0,1_0_0 -1348,2,41.0,0.0,9,111,50.0,,,52,48,0.0,0.0,,73.0,39.567521096374406,,20,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,124638,2,1,0,0,2,,0.0,850.0,43,2.0,0.0,3.0,3.0,1.8,1,1,121.61840972770649,50.0,47810.565407362235,4,1,3,4,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0015268591655006637,26561.425226312353,7,4,7,7_1,7_3,7_0_0 -1349,2,37.0,0.0,5,111,1200.0,,,0,53,0.0,0.0,,1290.0,154.82943037711726,,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,127281,2,1,0,0,2,,250.0,,22,4.0,2.0,5.0,4.0,2.5,2,2,113.82527259205268,1200.0,99367.70910824157,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012982084538094752,39747.08364329663,9,5,9,9_1,9_3,9_0_0 -1350,2,89.0,0.0,2,111,500.0,,,77,90,0.0,0.0,,760.0,447.28502108944986,,71,0,0,0,0,0,0,0,0,0,,1,,2,130384,2,2,0,0,2,,300.0,,41,1.0,3.0,5.0,3.0,2.0,2,2,84.66932140342483,500.0,14285.631720430109,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05320030747489535,7142.815860215054,1,1,1_0,1_1_0,1_3_0,1_0_1 -1351,2,75.0,0.0,5,111,300.0,,,72,77,0.0,0.0,,560.0,447.28502108944986,,50,0,0,0,0,0,0,0,0,0,,1,,3,107477,2,2,0,0,2,,700.0,,41,0.0,3.0,2.0,2.0,1.5,3,2,105.7051336789189,300.0,20991.237335257778,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026677798504969506,13994.158223505185,3,2,3_0,3_1_0,3_3_0,3_0_0 -1352,2,47.0,0.0,7,111,600.0,,,0,52,0.0,0.0,,730.0,223.64251054472493,,41,0,0,0,0,0,0,0,0,1,5.0,1,,5,120000,2,1,0,0,2,,300.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,115.67915111719363,600.0,20560.958067287145,0,1,0,1,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0355041821305712,20560.958067287145,5,3,5,5_1,5_3,5_0_0 -1353,2,71.0,0.0,2,111,0.0,,,77,75,0.0,0.0,,309.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,2,101446,2,1,0,0,2,,1136.0,650.0,41,0.0,6.0,5.0,2.0,1.5,2,2,94.17688763382176,0.0,41029.0,5,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007531258378220283,27352.666666666668,7,4,7,7_1,7_3,7_0_1 -1354,1,48.0,357.0,7,111,1200.0,,,68,56,0.0,0.0,,1470.0,464.48829113135173,,10,0,0,0,0,0,0,0,0,0,,1,,5,117919,2,2,0,0,2,,400.0,430.0,43,2.0,1.0,3.0,3.0,1.8,2,2,110.43433870271282,1200.0,9044.10083608275,4,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.16253688748529008,5024.5004644904175,1,1,1_1,1_1_1,1_3_1,1_0_0 -1355,2,81.0,0.0,2,111,500.0,,,0,78,0.0,0.0,,760.0,447.28502108944986,,10,0,0,0,0,0,0,0,0,0,,1,,2,115280,2,3,0,0,2,,120.0,,11,0.0,11.0,6.0,1.0,1.0,3,2,77.33410110036084,500.0,13011.878583740032,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05840816874434372,13011.878583740032,2,1,2_0,2_1_0,2_3_0,2_0_1 -1357,2,79.0,0.0,2,111,550.0,,,0,78,0.0,0.0,,814.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,2,124171,2,2,0,0,2,,300.0,,11,0.0,8.0,5.0,1.0,1.0,2,2,90.59713755746766,550.0,19550.719053393586,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04163529728891005,19550.719053393586,5,3,5,5_1,5_3,5_0_1 -1358,2,41.0,0.0,7,111,900.0,,,46,52,0.0,0.0,,992.0,158.27008438549763,,70,0,0,0,0,0,0,0,0,2,20.0,1,,5,109869,2,2,0,0,2,,1200.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,78.65972688895864,900.0,57366.94443797465,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017292188205571137,24942.149755641152,7,4,7,7_1,7_3,7_0_0 -1359,2,41.0,0.0,9,111,0.0,,,0,52,0.0,0.0,,92.0,158.27008438549763,,70,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,120733,2,2,0,0,2,,450.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,93.52914141678039,0.0,19712.375262920476,0,1,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004667118942944159,19712.375262920476,5,3,5,5_1,5_3,5_0_0 -1360,2,36.0,0.0,7,111,650.0,,,84,42,0.0,0.0,,750.0,172.03270041901916,,30,0,0,0,0,0,0,0,0,0,,1,,5,108094,2,1,0,0,2,,210.0,650.0,42,1.0,0.0,3.0,2.0,1.5,1,1,121.61840972770649,650.0,55643.606582050095,3,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013478637458448645,37095.73772136673,9,5,9,9_1,9_3,9_0_0 -1361,1,41.0,413.0,7,111,401.0,,,0,81,0.0,0.0,,527.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,5,100132,2,1,0,0,2,,135.0,550.0,32,1.0,1.0,4.0,3.0,1.6,2,2,94.17688763382176,401.0,9764.589961451138,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05397052022465891,6102.868725906961,1,1,1_1,1_1_1,1_3_1,1_0_0 -1362,2,51.0,0.0,6,111,405.0,,,0,11,0.0,93.1655254337512,,642.0,252.8880696159582,,12,0,0,0,0,0,0,0,0,1,10.0,1,,4,113588,2,2,0,0,2,,460.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,129.58234144619706,405.0,35507.66947684949,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018080600880285177,23671.779651232995,6,3,6,6_1,6_3,6_0_0 -1363,2,67.0,0.0,9,111,492.0,,,77,78,0.0,0.0,,642.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,1,2008.0,6,124593,2,1,0,0,2,,526.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,84.52349117401357,492.0,31878.647933268436,5,5,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02013887167811817,21252.43195551229,5,3,5,5_1,5_3,5_0_0 -1364,2,45.0,0.0,8,111,1500.0,,,56,43,0.0,0.0,,1650.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,132739,1,2,0,0,2,,1200.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,77.4404005452826,1500.0,25660.165693114057,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06430200099770907,10691.73570546419,2,1,2_0,2_1_0,2_3_0,2_0_0 -1365,2,55.0,0.0,7,111,650.0,,,22,48,0.0,0.0,,725.0,129.02452531426437,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,117510,2,1,0,0,1,,700.0,,43,3.0,1.0,3.0,3.0,2.0,1,1,119.92977214023436,650.0,33471.5396714938,1,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021660192722399614,16735.7698357469,4,2,4_0,4_1_0,4_3_0,4_0_0 -1366,2,42.0,0.0,8,111,720.0,,,55,64,0.0,0.0,,770.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,126984,2,1,0,0,1,,260.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,103.30609661847421,720.0,45269.246528030104,1,1,0,1,130.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017009339873223346,25149.58140446117,7,4,7,7_1,7_3,7_0_0 -1367,2,44.0,0.0,7,111,840.0,,,11,56,0.0,0.0,,940.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,133654,1,1,0,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,83.42232159124227,840.0,43886.461472817544,1,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021418906160438986,17554.58458912702,4,2,4_0,4_1_0,4_3_0,4_0_0 -1368,2,56.0,0.0,9,111,810.0,,,72,34,0.0,0.0,,898.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,104125,1,1,0,0,2,,390.0,,42,1.0,1.0,3.0,2.0,1.5,3,3,105.64984327432173,810.0,72528.55917791005,5,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012381329646949652,48352.372785273365,10,5,10,10_1,10_3,10_0_0 -1369,2,40.0,0.0,9,111,1200.0,,,22,63,0.0,0.0,,1288.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,116621,1,1,0,0,2,,900.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,108.32208302121559,1200.0,32645.29820114553,1,1,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039454379986481596,14193.607913541537,3,2,3_0,3_1_0,3_3_0,3_0_0 -1370,2,66.0,0.0,6,111,1440.0,,,22,77,0.0,0.0,,1572.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,120690,1,1,0,0,2,,1200.0,,42,2.0,2.0,7.0,4.0,2.3,1,1,74.44430786293364,1440.0,16653.65523107642,1,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09439369184649518,7240.7196656854,1,1,1_0,1_1_0,1_3_0,1_0_0 -1371,2,39.0,0.0,9,111,588.0,,,0,54,0.0,0.0,,654.0,113.54158227655265,,41,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,121355,1,1,0,0,2,,318.0,,32,1.0,0.0,2.0,4.0,1.9,1,1,166.98327638476474,588.0,30419.736596053423,0,1,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021499199966276115,16010.387682133382,4,2,4_0,4_1_0,4_3_0,4_0_0 -1372,1,62.0,224.0,7,111,256.0,,,0,56,0.0,0.0,,344.0,151.38877636873687,,44,0,0,0,0,0,0,0,0,0,,2,,5,130246,1,1,0,0,2,,480.0,468.0,12,1.0,3.0,3.0,1.0,1.0,1,1,111.28277234907135,256.0,7902.0,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043533282713237156,7902.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -1373,1,79.0,230.0,7,111,474.0,,,0,78,0.0,0.0,,540.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,0,,2,,5,126321,1,1,0,0,2,,320.0,466.0,11,0.0,0.0,2.0,1.0,1.0,1,1,118.36696349400106,474.0,15204.617532745364,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035515526703452496,15204.617532745364,3,2,3_1,3_0_1,3_3_1,3_0_0 -1374,1,51.0,266.0,7,111,720.0,,,78,56,0.0,0.0,,852.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,2,,5,113869,1,2,0,0,2,,540.0,461.0,42,1.0,2.0,4.0,2.0,1.5,2,2,120.52238420667483,720.0,15772.0,5,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05401978189196044,10514.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0 -1375,1,39.0,402.0,6,111,240.0,,,0,81,0.0,0.0,,438.0,340.62474682965797,,60,0,0,0,0,0,0,0,0,0,,1,,4,108727,1,2,0,0,2,,240.0,460.0,32,2.0,0.0,4.0,3.0,2.0,2,2,94.01468204505316,240.0,12724.64984135333,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03442137940617913,6362.324920676665,1,1,1_1,1_1_1,1_3_1,1_0_0 -1376,2,66.0,0.0,9,111,700.0,,,72,74,0.0,0.0,,766.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,2010.0,6,130322,1,1,0,0,2,,240.0,1137.0,41,0.0,1.0,4.0,2.0,1.5,1,1,146.36581250576432,700.0,50051.2060590465,5,5,2,3,98.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015304326515056064,33367.470706030996,8,4,8,8_1,8_3,8_0_0 -1377,2,28.0,0.0,7,111,0.0,,,0,43,0.0,0.0,,543.0,0.0,,20,0,0,0,0,0,0,0,0,2,90.0,1,,5,127407,2,1,0,0,2,,0.0,550.0,12,1.0,0.0,3.0,1.0,1.0,1,1,106.9288104013069,0.0,6562.482126198713,0,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08274308250413936,6562.482126198713,1,1,1_0,1_1_0,1_3_0,1_0_0 -1378,2,48.0,0.0,9,111,1000.0,,,0,22,0.0,0.0,,1150.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,1,2007.0,6,107895,2,1,0,0,2,,800.0,,32,1.0,0.0,5.0,3.0,1.8,2,1,88.02517275368662,1000.0,29766.004829943293,0,1,1,2,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038634677598491506,16536.669349968495,4,2,4_0,4_1_0,4_3_0,4_0_0 -1379,2,59.0,0.0,7,111,1000.0,,,71,56,0.0,103.51725048194578,,1310.0,361.26867087994026,,12,0,0,0,0,0,0,0,0,0,,1,,5,104197,2,2,0,0,1,,492.0,,42,3.0,4.0,5.0,5.0,2.8,2,2,89.7634036999083,1000.0,49429.35544139152,5,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026502469803662915,17653.3412290684,4,2,4_0,4_1_0,4_3_0,4_0_0 -1380,2,67.0,0.0,7,111,0.0,,,0,74,0.0,0.0,,527.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,120794,2,1,0,0,2,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,4,2,137.7739077562758,0.0,25338.527044206272,0,5,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020798367603633065,25338.527044206272,7,4,7,7_1,7_3,7_0_0 -1381,2,75.0,0.0,2,111,612.0,,,0,77,0.0,0.0,,759.0,252.8880696159582,,20,0,0,0,0,0,0,0,0,0,,1,,2,102494,2,3,0,0,2,,578.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,123.05159004685137,612.0,12333.235479946847,0,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06154102881065489,12333.235479946847,2,1,2_0,2_1_0,2_3_0,2_0_1 -1382,2,73.0,0.0,7,111,672.0,,,85,78,0.0,0.0,,756.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,0,,1,,5,111519,2,1,0,0,2,,300.0,,41,0.0,4.0,4.0,3.0,1.8,2,2,81.72843932346042,672.0,21056.347732023067,6,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035903662383493726,11697.970962235036,2,1,2_0,2_1_0,2_3_0,2_0_0 -1384,2,47.0,0.0,7,111,3360.0,,,85,22,0.0,0.0,,3612.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,5,118171,2,1,0,0,2,,1200.0,,42,3.0,0.0,5.0,5.0,2.8,2,2,88.60939282856413,3360.0,21930.24014058151,6,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16470407879009313,7832.2286216362545,1,1,1_0,1_1_0,1_3_0,1_0_0 -1385,2,54.0,0.0,8,111,489.0,,,85,63,0.0,0.0,,599.0,189.2359704609211,,12,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,121583,1,2,0,0,2,,420.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,122.38374177063714,489.0,27195.924351592286,6,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022025359103667656,18130.616234394856,4,2,4_0,4_1_0,4_3_0,4_0_0 -1386,0,90.0,0.0,9,111,420.0,,,0,77,0.0,0.0,,508.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,110282,1,1,0,0,2,,430.0,,11,0.0,6.0,5.0,1.0,1.0,3,2,122.38374177063714,420.0,56740.52735897925,0,5,5,0,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008953036280153792,56740.52735897925,10,5,10,10_1,10_3,10_0_0 -1387,2,60.0,0.0,5,111,1320.0,,,78,11,0.0,0.0,,1467.0,252.8880696159582,,50,0,0,0,0,0,0,0,0,0,,1,,3,111989,2,2,0,0,2,,780.0,,42,2.0,0.0,3.0,3.0,2.0,3,3,115.4993686369066,1320.0,35403.825446452574,6,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0414362002269727,17701.912723226287,4,2,4_0,4_1_0,4_3_0,4_0_0 -1388,2,69.0,0.0,7,111,348.0,,,85,78,0.0,0.0,,474.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,5,105167,2,2,0,0,2,,372.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,81.72843932346042,348.0,19639.306013163223,6,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02413527238092334,9819.653006581611,2,1,2_0,2_1_0,2_3_0,2_0_0 -1389,2,49.0,0.0,7,111,800.0,,,0,46,0.0,0.0,,900.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,122179,1,3,0,0,2,,2800.0,,32,1.0,1.0,4.0,3.0,1.6,1,1,100.57344408017065,800.0,15448.663077533893,0,1,0,1,99.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05825746833127706,9655.414423458682,1,1,1_0,1_1_0,1_3_0,1_0_0 -1390,2,47.0,0.0,7,111,1500.0,,,42,43,0.0,0.0,,1544.0,75.69438818436844,,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,132882,1,1,0,0,2,,200.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,145.61751708744868,1500.0,97831.0181979872,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01578231555226486,54350.56566554844,10,5,10,10_1,10_3,10_0_0 -1391,2,50.0,0.0,9,111,1082.0,,,85,21,0.0,0.0,,1148.0,113.54158227655265,,60,0,0,0,0,0,0,0,0,0,,1,2007.0,6,121856,1,1,0,0,2,,400.0,850.0,42,2.0,0.0,4.0,3.0,2.0,3,3,122.9464448331751,1082.0,22663.08163420342,6,1,2,3,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05065507059143375,11331.54081710171,2,1,2_0,2_1_0,2_3_0,2_0_0 -1392,2,70.0,0.0,2,111,420.0,,,0,78,0.0,0.0,,486.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,0,,1,,2,128538,1,1,0,0,2,,112.0,,11,0.0,6.0,4.0,1.0,1.0,2,2,90.44109755224477,420.0,17726.329187701238,0,5,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027416843885376633,17726.329187701238,4,2,4_0,4_1_0,4_3_0,4_0_1 -1393,2,54.0,0.0,6,111,1500.0,,,21,12,0.0,0.0,,1610.0,189.2359704609211,,10,0,0,0,0,0,0,0,0,0,,1,,4,122140,1,1,0,0,2,,970.0,,43,2.0,1.0,5.0,2.0,1.5,3,3,109.31288530213608,1500.0,19782.067513373346,1,1,1,2,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08138684184105557,13188.045008915564,2,1,2_0,2_1_0,2_3_0,2_0_0 -1394,2,78.0,0.0,2,111,720.0,,,0,75,0.0,0.0,,720.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,2,105527,1,1,0,0,2,,0.0,506.0,11,0.0,7.0,2.0,1.0,1.0,2,2,154.69419876048406,720.0,34559.847642642206,0,5,3,4,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02083342517724577,34559.847642642206,9,5,9,9_1,9_3,9_0_1 -1395,1,76.0,253.0,7,111,756.0,,,0,72,0.0,0.0,,756.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,5,130897,1,1,0,0,2,,348.0,450.0,11,0.0,2.0,2.0,1.0,1.0,2,2,154.69419876048406,756.0,5363.502010103677,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14095268326102228,5363.502010103677,1,1,1_1,1_0_1,1_3_1,1_0_0 -1396,2,100.0,0.0,7,111,360.0,,,0,78,0.0,0.0,,404.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,0,,1,,5,122373,2,2,0,0,2,,0.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,106.09437650688845,360.0,12683.0,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03185366238271702,12683.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -1397,2,62.0,0.0,6,111,370.0,,,22,22,0.0,0.0,,458.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,2,15.0,2,,4,116277,1,1,0,0,2,,320.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,104.31098371950863,370.0,34041.94188527392,1,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013453991594942608,22694.627923515945,6,3,6,6_0,6_3,6_0_0 -1398,2,61.0,0.0,7,111,842.0,,,12,71,0.0,0.0,,974.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,2,60.0,1,,5,105382,1,1,0,0,2,,800.0,,42,1.0,3.0,3.0,2.0,1.5,1,1,105.64984327432173,842.0,5969.057867695771,1,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16317482952732576,3979.371911797181,1,1,1_0,1_1_0,1_3_0,1_0_0 -1399,2,49.0,0.0,7,111,600.0,,,85,22,0.0,0.0,,732.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,5,118678,1,2,0,0,2,,345.0,,42,1.0,0.0,5.0,5.0,2.8,2,2,77.4404005452826,600.0,23883.87190843099,6,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030648297010067473,8529.954253011068,1,1,1_0,1_1_0,1_3_0,1_0_0 -1400,2,50.0,0.0,7,111,504.0,,,0,55,0.0,0.0,,636.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,115057,1,1,0,0,2,,420.0,,32,2.0,0.0,4.0,3.0,2.0,2,2,96.0903774520246,504.0,21571.060288945802,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029483947079129966,10785.530144472901,2,1,2_0,2_1_0,2_3_0,2_0_0 -1401,1,53.0,209.0,7,111,1104.0,,,0,56,0.0,0.0,,1214.0,189.2359704609211,,10,0,0,0,0,0,0,0,0,0,,1,,5,114195,1,1,0,0,2,,636.0,275.0,32,2.0,0.0,3.0,3.0,1.8,2,2,108.57252396115665,1104.0,21821.671327239234,0,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055632768993482455,12123.15073735513,2,1,2_1,2_1_1,2_3_1,2_0_0 -1402,1,46.0,293.0,7,111,420.0,,,0,52,0.0,0.0,,486.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,2,,5,115552,1,1,0,0,2,,780.0,493.0,32,1.0,0.0,3.0,2.0,1.3,2,2,90.92045356354996,420.0,9352.402703506094,0,4,2,3,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05196525592485501,7194.155925773918,1,1,1_1,1_0_1,1_3_1,1_0_0 -1403,1,48.0,455.0,9,111,260.0,,,0,52,0.0,0.0,,348.0,151.38877636873687,,43,0,0,0,0,0,0,0,0,0,,2,2006.0,6,108776,1,1,0,0,2,,320.0,455.0,32,3.0,2.0,5.0,5.0,2.5999999999999996,2,2,85.97158347941325,260.0,9676.708773721966,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03596264061857762,3721.811066816141,1,1,1_1,1_0_1,1_3_1,1_0_0 -1404,2,43.0,0.0,8,111,360.0,,,52,52,0.0,0.0,,492.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,125106,1,2,0,0,2,,360.0,431.0,43,2.0,0.0,4.0,5.0,2.4,1,1,74.84105458567478,360.0,74007.61986548227,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006647964100105761,30836.50827728428,8,4,8,8_0,8_3,8_0_0 -1405,1,54.0,358.0,7,111,720.0,,,0,56,0.0,0.0,,830.0,189.2359704609211,,50,0,0,0,0,0,0,0,0,0,,2,,5,131380,1,1,0,0,2,,510.0,481.0,32,2.0,4.0,4.0,2.0,1.5,1,1,80.47353151352436,720.0,9010.755092596384,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09211214725855361,6007.1700617309225,1,1,1_1,1_0_1,1_3_1,1_0_0 -1406,2,51.0,0.0,7,111,900.0,,,0,68,0.0,0.0,,1032.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,2,,5,125401,1,1,0,0,2,,360.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,113.72681535785031,900.0,19237.19486494092,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05364607507723395,19237.19486494092,5,3,5,5_0,5_3,5_0_0 -1407,1,34.0,259.0,7,111,1380.0,,,54,22,0.0,0.0,,1512.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,2,,5,123539,1,1,0,0,2,,1260.0,449.0,43,2.0,0.0,3.0,4.0,2.1,1,1,90.7393544805521,1380.0,24191.380604800008,4,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0625016002476515,11519.705049904765,2,1,2_1,2_0_1,2_3_1,2_0_0 -1409,2,50.0,0.0,7,111,215.0,,,81,21,0.0,0.0,,299.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,0,,1,,5,125715,2,1,0,0,2,,300.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,84.52349117401357,215.0,7032.0,4,4,0,1,114.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04251990898748578,4688.0,1,1,1_0,1_1_0,1_3_0,1_0_0 -1410,2,68.0,0.0,8,111,540.0,,,75,75,0.0,0.0,,582.0,72.25373417598806,,12,0,0,0,0,0,0,0,0,0,,1,2002.0,6,103514,2,1,0,0,1,,508.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,105.64984327432173,540.0,73106.57930320865,5,5,1,2,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00796097978522784,48737.71953547243,10,5,10,10_1,10_3,10_0_0 -1411,0,45.0,0.0,9,111,800.0,,,0,22,0.0,0.0,,842.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,113642,2,1,0,0,1,,459.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,134.50159811020498,800.0,9732.944945773139,0,4,5,0,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08651030132104744,9732.944945773139,1,1,1_0,1_1_0,1_3_0,1_0_0 -1412,0,66.0,0.0,2,111,210.0,,,0,22,0.0,0.0,,294.0,144.50746835197612,,60,0,0,0,0,0,0,0,0,3,60.0,1,,2,125317,2,3,0,0,2,,222.0,,12,1.0,3.0,4.0,1.0,1.0,4,3,110.77476347963793,210.0,4800.0,0,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06125,4800.0,1,1,1_0,1_1_0,1_3_0,1_0_1 -1413,2,48.0,0.0,9,111,800.0,,,0,45,0.0,0.0,,844.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,120930,1,1,0,0,2,,100.0,,32,1.0,0.0,4.0,2.0,1.5,1,1,112.48944861286252,800.0,38738.707793304566,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021786994148159825,25825.805195536377,7,4,7,7_1,7_3,7_0_0 -1414,2,53.0,0.0,9,111,966.0,,,63,56,0.0,0.0,,1098.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,112974,1,1,0,0,2,,900.0,,43,2.0,2.0,5.0,5.0,2.5999999999999996,2,2,113.34661141939573,966.0,39473.76947103048,4,1,1,2,134.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02781593991943978,15182.219027319417,3,2,3_0,3_1_0,3_3_0,3_0_0 -1415,2,42.0,0.0,7,111,1200.0,,,0,52,0.0,0.0,,1332.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,1,,5,132318,1,1,0,0,2,,978.0,,32,3.0,0.0,4.0,4.0,2.3,1,1,83.42232159124227,1200.0,23122.34688668306,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05760660916159613,10053.194298557852,2,1,2_0,2_1_0,2_3_0,2_0_0 -1416,2,51.0,0.0,7,111,576.0,,,65,64,0.0,0.0,,708.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,5,118386,1,1,0,0,2,,492.0,,43,3.0,0.0,5.0,5.0,2.8,3,2,87.58309191711778,576.0,27133.138115164176,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026093553830557947,9690.406469701493,1,1,1_0,1_1_0,1_3_0,1_0_0 -1418,2,71.0,0.0,2,111,1200.0,,,0,71,0.0,0.0,,1364.0,282.13362868719145,,41,0,0,0,0,0,0,0,0,0,,1,,2,129936,2,3,0,0,2,,800.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,93.0475576248084,1200.0,13821.64843584949,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09868576865709922,13821.64843584949,3,2,3_0,3_1_0,3_3_0,3_0_1 -1419,2,90.0,0.0,2,111,210.0,,,77,78,0.0,0.0,,360.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,0,,1,,2,103301,2,3,0,0,2,,652.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,89.72512845188683,210.0,18008.951065814184,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019990059314635846,12005.967377209456,2,1,2_0,2_1_0,2_3_0,2_0_1 -1420,0,84.0,0.0,7,111,804.0,,,0,78,0.0,0.0,,870.0,113.54158227655265,,12,0,0,0,0,0,0,0,0,0,,1,,5,130241,2,1,0,0,2,,650.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,99.56194567044426,804.0,16957.08085106383,0,5,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05130600058119196,16957.08085106383,4,2,4_0,4_1_0,4_3_0,4_0_0 -1421,2,40.0,0.0,7,111,300.0,,,0,68,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,111110,2,2,0,0,2,,200.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,100.5943413193926,300.0,9356.183094361488,0,4,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032064357545631535,9356.183094361488,1,1,1_0,1_1_0,1_3_0,1_0_0 -1422,2,59.0,0.0,7,111,672.0,,,0,77,0.0,0.0,,810.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,5,118519,1,1,0,0,2,,1700.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,99.6971601541575,672.0,31344.733945719163,0,7,0,1,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02584166135857803,31344.733945719163,8,4,8,8_1,8_3,8_0_0 -1423,2,64.0,0.0,7,111,480.0,,,78,75,0.0,0.0,,618.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,5,111571,1,1,0,0,2,,300.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,74.57516201010513,480.0,55291.024319676886,5,5,0,1,165.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011177221033687146,36860.68287978459,9,5,9,9_1,9_3,9_0_0 -1424,2,71.0,0.0,6,111,642.0,,,71,71,0.0,0.0,,867.0,387.0735759427931,,71,0,0,0,0,0,0,0,0,0,,1,,4,132182,1,1,0,0,1,,980.0,,41,0.0,6.0,4.0,2.0,1.5,1,1,71.56634871919583,642.0,22217.80292240525,5,5,0,1,167.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039022760397504706,14811.868614936835,3,2,3_0,3_1_0,3_3_0,3_0_0 -1426,2,32.0,0.0,5,111,300.0,,,67,34,0.0,0.0,,468.0,289.01493670395223,,70,0,0,0,0,0,0,0,0,0,,1,,3,110512,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,83.99006675175225,300.0,23687.994390606924,4,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01975684358425792,11279.99732886044,2,1,2_0,2_1_0,2_3_0,2_0_0 -1428,2,64.0,0.0,7,111,840.0,,,0,75,0.0,0.0,,886.0,79.13504219274881,,12,0,0,0,0,0,0,0,0,0,,1,,5,121333,1,1,0,0,2,,600.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,78.32043950332108,840.0,25830.630890612774,0,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034300362377985325,25830.630890612774,7,4,7,7_1,7_3,7_0_0 -1429,2,69.0,0.0,5,111,960.0,,,75,75,0.0,0.0,,1121.0,276.9726476746209,,60,0,0,0,0,0,0,0,0,0,,1,,3,105209,1,2,0,0,2,,3567.0,,41,1.0,0.0,7.0,3.0,2.0,2,2,80.94073096083527,960.0,63245.34621998772,5,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017724624292525814,31622.67310999386,8,4,8,8_1,8_3,8_0_0 -1430,1,43.0,389.0,6,111,534.0,,,0,43,0.0,0.0,,672.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,4,119969,1,1,0,0,2,,642.0,650.0,32,2.0,1.0,4.0,3.0,2.0,1,1,85.60979090780224,534.0,25513.9922142603,0,4,2,3,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026338488871388982,12756.99610713015,2,1,2_1,2_1_1,2_3_1,2_0_0 -1431,2,92.0,0.0,2,111,186.0,,,0,78,0.0,0.0,,209.0,39.567521096374406,,10,0,0,0,0,0,0,0,0,0,,1,,2,119263,1,1,0,0,2,,222.0,,11,0.0,7.0,3.0,1.0,1.0,1,1,85.8955829266672,186.0,5129.318092935428,0,5,0,1,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040746156938064375,5129.318092935428,1,1,1_0,1_1_0,1_3_0,1_0_1 -1432,2,59.0,0.0,2,111,300.0,,,0,72,0.0,0.0,,346.0,79.13504219274881,,31,0,0,0,0,0,0,0,0,0,,1,,2,112499,1,1,0,0,2,,500.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,94.92368362932261,300.0,3339.351306393966,0,7,0,1,93.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10361293803904441,3339.351306393966,1,1,1_0,1_1_0,1_3_0,1_0_1 -1433,2,48.0,0.0,2,111,304.0,,,0,64,0.0,0.0,,580.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,,2,124823,1,2,0,0,2,,180.0,,22,1.0,3.0,3.0,2.0,1.5,1,1,73.1958938609709,304.0,25040.80189747997,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023162197535629616,16693.867931653313,4,2,4_0,4_1_0,4_3_0,4_0_1 -1434,2,57.0,0.0,2,111,560.0,,,21,47,0.0,0.0,,728.0,289.01493670395223,,20,0,0,0,0,0,0,0,0,0,,1,,2,104353,2,2,0,0,2,,180.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,82.46593908786451,560.0,32322.715305543803,1,1,0,1,116.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02252286025843682,16161.357652771901,4,2,4_0,4_1_0,4_3_0,4_0_1 -1435,2,82.0,0.0,9,111,268.0,,,0,77,0.0,0.0,,436.0,289.01493670395223,,20,0,0,0,0,0,0,0,0,0,,1,2010.0,6,100192,2,1,0,0,2,,200.0,,11,0.0,4.0,2.0,1.0,1.0,2,2,126.36390163015203,268.0,10513.853658536595,0,5,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041469095363144526,10513.853658536595,2,1,2_0,2_1_0,2_3_0,2_0_0 -1437,2,57.0,0.0,2,111,675.0,,,0,22,0.0,0.0,,759.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,126522,2,3,0,0,2,,150.0,,32,2.0,2.0,6.0,2.0,1.5,2,2,70.31146647197285,675.0,6220.739477966616,0,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12201121790879044,4147.159651977744,1,1,1_0,1_1_0,1_3_0,1_0_1 -1438,2,48.0,0.0,8,111,375.0,,,0,55,0.0,0.0,,417.0,72.25373417598806,,12,0,0,0,0,0,0,0,0,2,7.0,1,2001.0,6,113308,2,2,0,0,2,,60.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,93.60717602250219,375.0,17020.458013198895,0,1,0,1,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024499928243800963,17020.458013198895,4,2,4_0,4_1_0,4_3_0,4_0_0 -1439,1,66.0,253.0,7,111,200.0,,,0,77,0.0,0.0,,263.0,108.38060126398207,,12,0,0,0,0,0,0,0,0,0,,2,,5,112596,2,2,0,0,2,,260.0,430.0,11,0.0,6.0,3.0,1.0,1.0,2,2,90.47527477915658,200.0,8782.0,0,5,2,3,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029947620132088362,8782.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -1440,1,50.0,500.0,7,111,650.0,,,71,85,0.0,0.0,,1154.0,867.0448101118566,,20,0,0,0,0,0,0,0,0,0,,2,,5,124050,2,3,0,0,2,,1135.0,514.0,41,2.0,1.0,4.0,10.0,5.1,2,2,72.04833701020443,650.0,39048.2084653672,5,6,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029553212435431207,7656.51146379749,1,1,1_1,1_0_1,1_3_1,1_0_0 -1441,1,68.0,300.0,7,111,1200.0,,,86,86,0.0,0.0,,1284.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,0,,1,,5,100479,2,1,0,0,2,,1200.0,535.0,41,0.0,0.0,3.0,2.0,1.5,3,3,116.00302842899416,1200.0,17050.98202781449,5,5,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0753035806328028,11367.321351876328,2,1,2_1,2_1_1,2_3_1,2_0_0 -1442,0,63.0,0.0,9,111,660.0,,,0,45,0.0,0.0,,723.0,108.38060126398207,,31,0,0,0,0,0,0,0,0,2,45.0,1,2013.0,6,132205,2,1,0,0,2,,600.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,116.96808923640873,660.0,39217.65392790643,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018435574992045328,39217.65392790643,9,5,9,9_1,9_3,9_0_0 -1443,0,51.0,0.0,8,111,900.0,,,46,54,0.0,0.0,,1070.0,292.4555907123326,,50,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,110766,2,1,0,0,2,,480.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,86.53761643183405,900.0,45904.66220830677,1,1,0,1,130.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023309179253831348,18361.86488332271,4,2,4_0,4_1_0,4_3_0,4_0_0 -1444,0,54.0,0.0,6,111,300.0,,,0,75,0.0,0.0,,384.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,0,,1,,4,127105,2,1,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,91.03494580244833,300.0,14909.765318414953,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02575493254248101,14909.765318414953,3,2,3_0,3_1_0,3_3_0,3_0_0 -1445,2,81.0,0.0,5,111,600.0,,,86,86,0.0,0.0,,726.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,,3,104019,2,1,0,0,2,,500.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,73.1958938609709,600.0,16352.68813512068,6,5,0,1,250.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044396370431645994,10901.792090080453,2,1,2_0,2_1_0,2_3_0,2_0_0 -1446,0,50.0,0.0,2,111,0.0,,,0,33,0.0,0.0,,63.0,108.38060126398207,,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,105416,2,1,0,0,2,,0.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,103.29145984590531,0.0,86558.90098248493,0,1,5,0,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0007278280949147906,86558.90098248493,10,5,10,10_1,10_3,10_0_1 -1447,1,45.0,120.0,7,111,300.0,,,0,55,0.0,0.0,,350.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,114968,2,1,0,0,1,,450.0,489.0,12,1.0,2.0,4.0,1.0,1.0,1,1,73.43010567044755,300.0,22652.601934212234,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015450763714317287,22652.601934212234,6,3,6,6_0,6_3,6_0_0 -1448,0,53.0,0.0,6,111,600.0,,,0,75,0.0,0.0,,726.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,0,,1,,4,104362,2,1,0,0,2,,444.0,,11,0.0,0.0,5.0,1.0,1.0,3,2,104.55460167233942,600.0,28368.547591208247,0,7,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025591722581701577,28368.547591208247,8,4,8,8_1,8_3,8_0_0 -1449,2,70.0,0.0,6,111,1000.0,,,0,77,0.0,0.0,,1084.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,1,,4,119999,2,1,0,0,2,,900.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,94.37760151469993,1000.0,10530.682926829279,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10293729357649414,10530.682926829279,2,1,2_0,2_1_0,2_3_0,2_0_0 -1450,2,53.0,0.0,7,111,900.0,,,54,55,0.0,0.0,,1026.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,0,,1,,5,111776,2,1,0,0,2,,360.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,72.91491050499367,900.0,20446.645953448926,4,1,0,1,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050179379167414745,13631.097302299284,3,2,3_0,3_1_0,3_3_0,3_0_0 -1451,2,72.0,0.0,7,111,900.0,,,81,77,0.0,0.0,,1026.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,2,,5,102084,2,1,0,0,2,,1080.0,309.0,42,1.0,0.0,3.0,2.0,1.5,1,1,89.98763047848938,900.0,11369.301036527166,4,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09024301465003684,7579.534024351444,1,1,1_0,1_0_0,1_3_0,1_0_0 -1452,2,38.0,0.0,6,111,450.0,,,0,62,0.0,0.0,,726.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,4,116778,1,1,0,0,2,,720.0,,22,1.0,3.0,4.0,2.0,1.5,1,1,73.1958938609709,450.0,39404.07190365187,0,1,0,1,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018424491808236604,26269.381269101246,7,4,7,7_1,7_3,7_0_0 -1453,2,66.0,0.0,8,111,720.0,,,77,78,0.0,0.0,,996.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,130019,1,1,0,0,2,,504.0,,41,1.0,2.0,5.0,4.0,2.3,1,1,82.75253144449648,720.0,57717.24212595096,5,5,0,1,245.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01725654177700525,25094.453098239548,7,4,7,7_1,7_3,7_0_0 -1454,2,86.0,0.0,2,111,360.0,,,0,71,0.0,0.0,,498.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,2,129559,1,2,0,0,2,,120.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,91.87591063952193,360.0,11429.525192972484,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04357136377862822,11429.525192972484,2,1,2_0,2_1_0,2_3_0,2_0_1 -1455,2,42.0,0.0,2,111,468.0,,,0,43,0.0,0.0,,560.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,0,,1,,2,129867,1,3,0,0,2,,318.0,,32,1.0,4.0,4.0,3.0,1.8,1,1,71.56634871919583,468.0,33831.7200321416,0,1,0,1,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016552513424324147,18795.400017856446,5,3,5,5_1,5_3,5_0_1 -1456,2,70.0,0.0,2,111,336.0,,,0,78,0.0,0.0,,612.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,2,128126,1,2,0,0,2,,320.0,,21,0.0,5.0,4.0,2.0,1.5,2,2,78.32043950332108,336.0,18919.04069417218,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03234836321212208,12612.693796114787,2,1,2_0,2_1_0,2_3_0,2_0_1 -1457,2,27.0,0.0,9,111,420.0,,,0,43,0.0,0.0,,483.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,108342,2,1,0,0,2,,352.0,465.0,22,1.0,0.0,3.0,2.0,1.5,2,2,97.93002995102718,420.0,33803.86621516617,0,1,2,3,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014288306459552284,22535.91081011078,6,3,6,6_0,6_3,6_0_0 -1458,2,87.0,0.0,2,111,340.0,,,0,78,0.0,0.0,,592.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,2,125267,2,1,0,0,2,,223.0,,21,0.0,4.0,6.0,2.0,1.5,1,1,85.10657750434792,340.0,26005.469708256816,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022764441736348957,17336.979805504543,4,2,4_0,4_1_0,4_3_0,4_0_1 -1459,1,37.0,20.0,9,111,470.0,,,0,52,0.0,0.0,,596.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,2011.0,6,124435,2,1,0,0,2,,220.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,94.9994770078803,470.0,18844.901892624956,0,4,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0316265907562643,11778.063682890597,2,1,2_1,2_1_1,2_3_1,2_0_0 -1460,0,40.0,0.0,7,111,1080.0,,,0,43,0.0,0.0,,1160.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,1,,5,118130,2,1,0,0,2,,400.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,96.6505530753416,1080.0,17264.672195279985,0,4,5,0,147.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06718922820423628,13280.517073292296,3,2,3_0,3_1_0,3_3_0,3_0_0 -1461,2,58.0,0.0,6,111,1176.0,,,0,52,0.0,0.0,,1428.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,111992,2,2,0,0,2,,520.0,,22,3.0,1.0,4.0,4.0,2.5,1,1,72.91491050499367,1176.0,52184.68595316636,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02736434978801199,20873.87438126654,5,3,5,5_1,5_3,5_0_0 -1462,0,51.0,0.0,6,111,500.0,,,0,35,0.0,0.0,,542.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,0,,1,,4,102499,2,2,0,0,2,,175.0,,12,1.0,4.0,8.0,1.0,1.0,2,2,78.32043950332108,500.0,4834.111497810751,0,1,5,0,193.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11211987978462193,4834.111497810751,1,1,1_0,1_1_0,1_3_0,1_0_0 -1463,2,57.0,0.0,9,111,600.0,,,22,34,0.0,0.0,,660.0,103.2196202514115,,10,0,0,0,0,0,0,0,0,2,60.0,1,2006.0,6,126796,2,1,0,0,2,,420.0,820.0,43,2.0,2.0,4.0,2.0,1.5,1,1,91.7593423864239,600.0,93505.71702536904,1,1,2,3,87.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007058391946461791,62337.14468357936,10,5,10,10_1,10_3,10_0_0 -1464,2,48.0,0.0,8,111,900.0,,,90,21,0.0,0.0,,942.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,2,25.0,2,2002.0,6,125233,2,2,0,0,2,,200.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,91.82151837603655,900.0,5110.0,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1843444227005871,3406.6666666666665,1,1,1_0,1_0_0,1_3_0,1_0_0 -1465,2,55.0,0.0,6,111,1560.0,,,0,42,0.0,0.0,,1749.0,325.14180379194624,,10,0,0,0,0,0,0,0,0,2,5.0,1,,4,129589,2,2,0,0,2,,480.0,,32,3.0,2.0,5.0,5.0,2.6,2,2,81.47688506461279,1560.0,82045.1602189969,0,1,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02131752799716068,31555.830853460346,8,4,8,8_1,8_3,8_0_0 -1466,2,62.0,0.0,8,111,0.0,,,75,34,0.0,0.0,,1307.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,2003.0,6,130754,2,1,0,0,2,,363.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,87.91435662885756,0.0,99970.4085868474,5,1,1,2,141.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013073868742514625,66646.93905789827,10,5,10,10_1,10_3,10_0_0 -1467,2,42.0,0.0,9,111,100.0,,,54,64,0.0,0.0,,160.0,103.2196202514115,,20,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,123960,2,1,0,0,2,,240.0,,43,2.0,0.0,5.0,5.0,2.6,2,2,101.3755417832853,100.0,71169.4217948836,4,1,0,1,145.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002248156525159552,27372.85453649369,7,4,7,7_1,7_3,7_0_0 -1468,2,48.0,0.0,9,111,780.0,,,63,43,0.0,0.0,,843.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,2,7.0,2,2007.0,6,121811,1,1,0,0,2,,270.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,80.19018723233121,780.0,44573.434586638854,1,1,1,2,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018912610343307358,19379.75416810385,5,3,5,5_0,5_3,5_0_0 -1469,1,57.0,263.0,8,111,150.0,,,22,42,0.0,0.0,,255.0,180.63433543997013,,20,0,0,0,0,0,0,0,0,0,,2,2003.0,6,118412,1,2,0,0,2,,207.0,357.0,43,2.0,1.0,3.0,2.0,1.5,1,1,92.57379701711649,150.0,12413.009906259294,4,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020542962740359657,8275.339937506196,1,1,1_1,1_0_1,1_3_1,1_0_0 -1470,1,51.0,158.0,8,111,778.0,,,0,63,0.0,0.0,,820.0,72.25373417598806,,41,0,0,0,0,0,0,0,0,2,4.0,2,2003.0,6,113218,2,1,0,0,2,,914.0,357.0,32,3.0,4.0,3.0,3.0,2.0,2,2,86.00373581526173,778.0,17070.0,0,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04803749267721148,8535.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -1471,1,43.0,140.0,8,111,591.0,,,0,56,0.0,0.0,,612.0,36.12686708799403,,31,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,104401,1,3,0,0,2,,285.0,421.0,32,2.0,0.0,3.0,2.0,1.5,2,2,92.18014725498269,591.0,44165.52637376836,0,1,2,3,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013856961531958346,29443.68424917891,8,4,8,8_0,8_3,8_0_0 -1472,1,52.0,43.0,9,111,420.0,,,56,68,0.0,0.0,,588.0,289.01493670395223,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,133101,2,1,0,0,2,,341.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,71.56634871919583,420.0,24151.0,4,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024346817937145458,9660.4,1,1,1_1,1_1_1,1_3_1,1_0_0 -1473,1,40.0,47.0,9,111,924.0,,,0,52,0.0,0.0,,1022.0,168.59204641063877,,60,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,119936,1,1,0,0,2,,238.0,,32,1.0,1.0,7.0,3.0,1.6,3,2,88.06817101260756,924.0,36314.88067732628,0,1,1,2,132.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02814273325254516,22696.80042332892,6,3,6,6_1,6_3,6_0_0 -1474,2,77.0,0.0,5,111,640.0,,,75,72,0.0,0.0,,724.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,,3,115918,2,1,0,0,2,,80.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,88.5538568886709,640.0,30526.823577536336,5,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02371684686292639,20351.21571835756,5,3,5,5_1,5_3,5_0_0 -1475,1,39.0,195.0,2,111,1453.0,,,62,52,0.0,0.0,,1663.0,361.26867087994026,,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,120340,2,1,0,0,2,,200.0,600.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,1,1,82.86993852366734,1453.0,42755.75690566548,4,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03889534697442437,14743.36445022948,3,2,3_1,3_1_1,3_3_1,3_0_1 -1476,2,82.0,0.0,6,111,840.0,,,0,86,0.0,0.0,,936.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,0,,1,,4,107361,2,1,0,0,2,,190.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,73.1958938609709,840.0,10777.991218560273,0,6,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08684364099203924,10777.991218560273,2,1,2_0,2_1_0,2_3_0,2_0_0 -1477,1,39.0,347.0,8,111,650.0,,,0,56,0.0,0.0,,734.0,144.50746835197612,,43,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,122973,2,2,0,0,2,,500.0,452.0,32,1.0,0.0,3.0,2.0,1.3,3,3,86.17538347332253,650.0,14591.724349984806,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05030248532626401,11224.403346142159,2,1,2_1,2_0_1,2_3_1,2_0_0 -1478,2,46.0,0.0,7,111,2741.0,,,37,43,0.0,0.0,,2901.0,275.25232067043066,,31,0,0,0,0,0,0,0,0,0,,1,,5,126376,2,1,0,0,2,,380.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,99.34281670720418,2741.0,100917.40928645131,4,1,1,2,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02874627896724529,56065.22738136184,10,5,10,10_1,10_3,10_0_0 -1479,2,71.0,0.0,7,111,250.0,,,78,75,0.0,0.0,,271.0,36.12686708799403,,70,0,0,0,0,0,0,0,0,0,,2,,5,118097,2,1,0,0,2,,238.0,460.0,41,0.0,4.0,2.0,2.0,1.5,2,2,95.46827878008399,250.0,56359.13009310237,5,5,3,4,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004808448951435588,37572.75339540158,9,5,9,9_0,9_3,9_0_0 -1480,0,40.0,0.0,7,111,912.0,,,0,81,0.0,0.0,,1038.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,,5,111901,2,1,0,0,2,,240.0,,32,2.0,0.0,4.0,3.0,2.0,1,1,101.13821040925055,912.0,11984.0,0,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0866154873164219,5992.0,1,1,1_0,1_1_0,1_3_0,1_0_0 -1481,0,66.0,0.0,7,111,0.0,,,0,72,0.0,0.0,,457.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,0,,8,,5,118590,2,1,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,99.55968883413907,0.0,13692.241828277254,0,5,5,0,18.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033376565045484544,13692.241828277254,3,2,3_0,3_0_0,3_3_0,3_0_0 -1482,0,38.0,0.0,8,111,1900.0,,,52,21,0.0,0.0,,2089.0,325.14180379194624,,10,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,115124,2,1,0,0,2,,1800.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,78.9003713645804,1900.0,45252.47438116035,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046163221537996145,18855.19765881681,5,3,5,5_1,5_3,5_0_0 -1483,2,35.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,534.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,117739,2,1,0,0,2,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,147.0490214593208,0.0,6257.652845410537,0,4,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08533551048483684,6257.652845410537,1,1,1_0,1_1_0,1_3_0,1_0_0 -1485,0,38.0,0.0,7,111,1008.0,,,0,68,0.0,0.0,,1176.0,289.01493670395223,,12,0,0,0,0,0,0,0,0,0,,1,,5,103054,2,1,0,0,1,,390.0,,32,1.0,0.0,4.0,3.0,1.8,1,1,73.1958938609709,1008.0,21469.298546671,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05477589300104772,11927.38808148389,2,1,2_0,2_1_0,2_3_0,2_0_0 -1486,2,70.0,0.0,7,111,400.0,,,0,72,0.0,0.0,,484.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,1,,5,107236,2,1,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,78.32043950332108,400.0,13203.972392821948,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036655635561849254,13203.972392821948,2,1,2_0,2_1_0,2_3_0,2_0_0 -1487,1,34.0,357.0,5,111,390.0,,,42,69,0.0,0.0,,516.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,124888,2,1,0,0,2,,270.0,450.0,43,2.0,0.0,3.0,3.0,1.8,2,2,98.7080659089667,390.0,16290.79289420888,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03167433306352018,9050.44049678271,1,1,1_1,1_1_1,1_3_1,1_0_0 -1489,1,41.0,522.0,2,111,480.0,,,0,42,0.0,0.0,,568.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,1,,2,105626,2,3,0,0,2,,350.0,700.0,32,1.0,1.0,5.0,6.0,2.6999999999999997,2,2,120.94950432779615,480.0,17842.28278717286,0,4,2,3,113.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03183449151519701,6608.252884138096,1,1,1_1,1_1_1,1_3_1,1_0_1 -1490,2,87.0,0.0,2,111,426.0,,,0,72,0.0,0.0,,573.0,252.8880696159582,,71,0,0,0,0,0,0,0,0,0,,1,,2,112090,2,2,0,0,2,,559.0,,11,0.0,5.0,3.0,1.0,1.0,2,2,90.6784231604455,426.0,13461.770844681034,0,5,0,1,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04256497949721093,13461.770844681034,3,2,3_0,3_1_0,3_3_0,3_0_1 -1491,2,50.0,0.0,1,111,252.0,,,0,34,0.0,0.0,,378.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,110991,2,1,0,0,2,,200.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,91.93411890023383,252.0,49488.77746526199,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007638095329094202,32992.51831017466,8,4,8,8_0,8_3,8_1_0 -1492,2,58.0,0.0,7,111,409.0,,,0,77,0.0,0.0,,514.0,180.63433543997013,,12,0,0,0,0,0,0,0,0,0,,1,,5,119723,2,2,0,0,2,,339.0,,21,1.0,1.0,4.0,2.0,1.5,1,1,81.71930661958524,409.0,7033.766979598963,0,6,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0730760631523375,4689.177986399309,1,1,1_0,1_1_0,1_3_0,1_0_0 -1494,2,62.0,0.0,2,111,1080.0,,,78,74,0.0,0.0,,1218.0,237.40512657824647,,60,0,0,0,0,0,0,0,0,0,,1,,2,124666,2,2,0,0,2,,1200.0,,41,1.0,2.0,6.0,4.0,2.5,2,2,90.08533283129113,1080.0,108234.29954582907,5,5,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011253364276490456,43293.71981833163,9,5,9,9_1,9_3,9_0_1 -1495,1,47.0,80.0,8,111,480.0,,,0,52,0.0,0.0,,522.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,2,45.0,2,1999.0,6,104973,2,1,0,0,2,,741.0,441.0,32,2.0,0.0,3.0,3.0,1.8,1,1,75.94736418827296,480.0,35694.52635511162,0,1,2,3,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014624090954641487,19830.292419506455,5,3,5,5_0,5_3,5_0_0 -1496,1,41.0,199.0,8,111,600.0,,,0,54,0.0,0.0,,726.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,2,1.0,2,1999.0,6,116419,1,3,0,0,2,,509.0,442.0,32,1.0,1.0,3.0,2.0,1.3,1,1,89.13550806943869,600.0,32770.07083201306,0,1,2,3,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022154361634481763,25207.746793856197,7,4,7,7_0,7_3,7_0_0 -1497,1,42.0,171.0,8,111,480.0,,,0,43,0.0,0.0,,543.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,1,15.0,2,1999.0,6,115571,1,2,0,0,2,,633.0,470.0,12,1.0,1.0,3.0,1.0,1.0,1,1,107.20090288493942,480.0,21716.22865176373,0,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025004341624294837,21716.22865176373,6,3,6,6_0,6_3,6_0_0 -1499,2,87.0,0.0,7,111,1200.0,,,0,77,0.0,0.0,,1326.0,216.76120252796414,,42,0,0,0,0,0,0,0,0,0,,1,,5,122255,2,2,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,148.98703442485947,1200.0,21202.963765795914,0,5,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06253842692213953,21202.963765795914,5,3,5,5_1,5_3,5_0_0 -1500,2,68.0,0.0,9,111,720.0,,,74,74,0.0,0.0,,783.0,108.38060126398207,,12,0,0,0,0,0,0,0,0,0,,1,2004.0,6,131218,2,1,0,0,2,,300.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,81.71930661958524,720.0,77067.3780502631,5,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010159940818141366,51378.25203350873,10,5,10,10_1,10_3,10_0_0 -1501,2,73.0,0.0,5,111,660.0,,,77,75,0.0,0.0,,798.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,3,108090,1,1,0,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,84.74528844862685,660.0,44507.0,5,5,0,1,118.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017929763857370752,29671.333333333332,8,4,8,8_1,8_3,8_0_0 -1502,1,67.0,280.0,5,111,0.0,,,67,78,0.0,0.0,,138.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,3,122627,1,2,0,0,2,,30.0,550.0,42,1.0,6.0,3.0,2.0,1.5,1,1,116.21741033806188,0.0,19227.0,4,5,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.007177406771727258,12818.0,2,1,2_1,2_1_1,2_3_1,2_0_0 -1503,2,57.0,0.0,6,111,1200.0,,,0,54,0.0,0.0,,1315.0,197.83760548187203,,71,0,0,0,0,0,0,0,0,0,,1,,4,102166,1,1,0,0,2,,300.0,,22,2.0,1.0,3.0,2.0,1.5,1,1,129.8279034227134,1200.0,67379.43606638376,0,4,0,1,44.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019516340248149775,44919.62404425584,10,5,10,10_1,10_3,10_0_0 -1504,2,46.0,0.0,7,111,300.0,,,0,81,0.0,0.0,,343.0,73.97406118017824,,31,0,0,0,0,0,0,0,0,0,,1,,5,132714,2,2,0,0,2,,300.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,90.6784231604455,300.0,7567.0752889812575,0,4,0,1,135.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04532794863286969,7567.0752889812575,1,1,1_0,1_1_0,1_3_0,1_0_0 -1505,2,53.0,0.0,7,111,480.0,,,22,67,0.0,0.0,,572.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,1,5.0,1,,5,101788,1,1,0,0,2,,380.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,106.41147828229735,480.0,45737.14639277979,1,1,0,1,78.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012506245909786311,30491.430928519858,8,4,8,8_1,8_3,8_0_0 -1506,2,37.0,0.0,7,111,996.0,,,63,56,0.0,0.0,,1180.0,316.54016877099525,,50,0,0,0,0,0,0,0,0,0,,1,,5,121364,1,2,0,0,2,,310.0,,43,2.0,1.0,4.0,5.0,2.8,1,1,100.83735788076756,996.0,3891.8628099173557,4,4,0,1,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.30319671006724347,1389.9510035419128,1,1,1_0,1_1_0,1_3_0,1_0_0 -1507,2,74.0,0.0,7,111,226.0,,,0,77,0.0,0.0,,249.0,39.567521096374406,,20,0,0,0,0,0,0,0,0,0,,1,,5,103773,1,1,0,0,2,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,127.93161208936803,226.0,21404.430153065336,0,5,0,1,66.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011633105773868996,21404.430153065336,6,3,6,6_1,6_3,6_0_0 -1508,2,50.0,0.0,7,111,1200.0,,,48,46,0.0,0.0,,1407.0,356.1076898673697,,44,0,0,0,0,0,0,0,0,2,60.0,1,,5,108225,1,1,0,0,2,,472.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,108.60632995021518,1200.0,71526.42728258997,1,1,0,1,177.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01967105101504872,34060.203467899984,9,5,9,9_1,9_3,9_0_0 -1509,2,61.0,0.0,7,111,330.0,,,77,52,0.0,0.0,,422.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,,5,115784,2,1,0,0,2,,520.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,116.14873859133489,330.0,47174.43724818838,5,1,1,2,84.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008945522715614503,31449.624832125584,8,4,8,8_1,8_3,8_0_0 -1510,2,63.0,0.0,2,111,660.0,,,0,77,0.0,0.0,,798.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,2,110399,1,2,0,0,2,,240.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,123.37448853258752,660.0,27356.92961120162,0,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02916994017023202,27356.92961120162,7,4,7,7_1,7_3,7_0_1 -1511,2,74.0,0.0,5,111,918.0,,,77,78,0.0,0.0,,1194.0,474.81025315649293,,60,0,0,0,0,0,0,0,0,0,,1,,3,103609,1,2,0,0,2,,1160.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,84.74528844862685,918.0,24216.582733516694,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04930505732947438,16144.38848901113,4,2,4_0,4_1_0,4_3_0,4_0_0 -1512,2,54.0,0.0,6,111,540.0,,,68,56,0.0,0.0,,678.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,4,104357,1,2,0,0,2,,400.0,,43,3.0,3.0,4.0,4.0,2.3,4,4,81.94290212958164,540.0,23380.052271430053,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0289990797338166,10165.240118013067,2,1,2_0,2_1_0,2_3_0,2_0_0 -1513,2,56.0,0.0,5,111,696.0,,,78,55,0.0,0.0,,972.0,474.81025315649293,,60,0,0,0,0,0,0,0,0,2,60.0,1,,3,126347,1,2,0,0,2,,314.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,99.44882926642907,696.0,18247.03870380218,7,1,0,1,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05326891753660072,12164.692469201453,2,1,2_0,2_1_0,2_3_0,2_0_0 -1514,2,51.0,0.0,7,111,540.0,,,56,69,0.0,0.0,,724.0,316.54016877099525,,31,0,0,0,0,0,0,0,0,0,,1,,5,125200,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,90.08533283129113,540.0,27309.826891379806,4,1,0,1,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026510603779349717,11873.837778860787,2,1,2_0,2_1_0,2_3_0,2_0_0 -1515,2,51.0,0.0,7,111,120.0,,,0,81,0.0,0.0,,258.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,5,119753,1,2,0,0,2,,100.0,,32,2.0,0.0,4.0,4.0,2.3,4,4,76.20759201267548,120.0,15761.606584983434,0,4,0,1,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01636888972002413,6852.872428253668,1,1,1_0,1_1_0,1_3_0,1_0_0 -1516,2,68.0,0.0,7,111,450.0,,,0,75,0.0,0.0,,588.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,5,102504,1,1,0,0,2,,445.0,,21,2.0,0.0,4.0,4.0,2.3,1,1,96.34252728089929,450.0,65107.44359709446,0,5,0,1,181.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009031225425447983,28307.584172649767,8,4,8,8_1,8_3,8_0_0 -1517,1,45.0,243.0,5,111,400.0,,,0,55,0.0,0.0,,561.0,276.9726476746209,,33,0,0,0,0,0,0,0,0,2,45.0,2,,3,110635,1,1,0,0,2,,586.0,404.0,32,2.0,1.0,3.0,3.0,1.8,2,2,96.65232608638719,400.0,21694.786599926265,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0258587470964986,12052.659222181259,2,1,2_1,2_0_1,2_3_1,2_0_0 -1518,2,65.0,0.0,5,111,480.0,,,0,56,0.0,0.0,,606.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,,3,121318,2,2,0,0,2,,250.0,,22,1.0,3.0,4.0,2.0,1.5,2,2,103.08760070384427,480.0,27546.30720115101,0,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021999319022140237,18364.20480076734,4,2,4_0,4_1_0,4_3_0,4_0_0 -1520,2,60.0,0.0,2,111,1200.0,,,0,33,0.0,0.0,,1284.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,1,,2,120323,1,3,0,0,2,,300.0,,22,2.0,6.0,7.0,3.0,2.0,3,2,97.8871162940309,1200.0,67336.6892127745,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019068356567735905,33668.34460638725,9,5,9,9_1,9_3,9_0_1 -1521,2,66.0,0.0,7,111,612.0,,,0,75,0.0,0.0,,864.0,433.5224050559283,,41,0,0,0,0,0,0,0,0,0,,1,,5,117419,2,1,0,0,2,,700.0,,11,0.0,3.0,7.0,1.0,1.0,3,3,102.52654553987699,612.0,32131.250362134393,0,5,1,2,145.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026889709870058315,32131.250362134393,8,4,8,8_1,8_3,8_0_0 -1522,1,39.0,150.0,9,111,0.0,,,42,68,0.0,0.0,,42.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,1,15.0,2,2007.0,6,114509,2,2,0,0,2,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,119.04942397258989,0.0,25554.36719107144,1,1,3,4,53.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0016435546881659654,14196.870661706354,3,2,3_1,3_0_1,3_3_1,3_0_0 -1523,2,32.0,0.0,9,111,0.0,,,52,11,0.0,0.0,,347.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2007.0,6,124221,2,1,0,0,2,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,6,6,147.80033438419562,0.0,2270.0,4,1,3,4,53.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.15286343612334802,1513.3333333333333,1,1,1_0,1_0_0,1_3_0,1_0_0 -1524,2,63.0,0.0,5,111,540.0,,,78,52,0.0,0.0,,729.0,325.14180379194624,,10,0,0,0,0,0,0,0,0,2,1.0,1,,3,101096,2,2,0,0,2,,500.0,,42,2.0,12.0,6.0,3.0,2.0,1,1,82.59336715223124,540.0,46322.640046103996,5,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015737445000424004,23161.320023051998,6,3,6,6_1,6_3,6_0_0 -1525,2,41.0,0.0,7,111,652.0,,,21,63,0.0,0.0,,784.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,133660,2,1,0,0,2,,661.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,104.74507287146774,652.0,33390.30140502495,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023479871909212982,15900.143526202355,3,2,3_0,3_1_0,3_3_0,3_0_0 -1526,2,22.0,0.0,8,111,0.0,,,0,55,0.0,0.0,,315.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,2001.0,6,128005,2,1,0,0,2,,0.0,590.0,32,1.0,0.0,3.0,3.0,1.6,1,1,132.64357315538683,0.0,12337.247058198767,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025532438356307818,7710.779411374229,1,1,1_0,1_0_0,1_3_0,1_0_0 -1527,2,61.0,0.0,7,111,250.0,,,0,48,0.0,0.0,,274.0,41.2878481005646,,41,0,0,0,0,0,0,0,0,2,45.0,1,,5,129722,2,1,0,0,2,,250.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,103.08760070384427,250.0,85973.68611509037,0,1,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0031870216618745937,85973.68611509037,10,5,10,10_1,10_3,10_0_0 -1528,2,55.0,0.0,5,111,500.0,,,0,77,0.0,0.0,,752.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,3,121506,2,1,0,0,2,,460.0,,31,0.0,2.0,4.0,3.0,2.0,2,2,92.67649550551292,500.0,53707.16263399967,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01400185679375178,26853.581316999836,7,4,7,7_1,7_3,7_0_0 -1529,2,59.0,0.0,2,111,900.0,,,0,52,0.0,0.0,,1038.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,2,40.0,1,,2,103210,1,1,0,0,1,,420.0,,32,1.0,0.0,5.0,2.0,1.5,1,1,86.72718517318023,900.0,39578.451611650744,0,1,0,1,102.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026226392335531465,26385.634407767164,7,4,7,7_1,7_3,7_0_1 -1530,2,58.0,0.0,6,111,960.0,,,52,68,0.0,0.0,,1098.0,237.40512657824647,,60,0,0,0,0,0,0,0,0,1,30.0,1,,4,104138,2,1,0,0,1,,320.0,,43,5.0,0.0,4.0,5.0,3.0,1,1,90.08533283129113,960.0,44617.56685402021,1,1,0,1,99.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02460914113923866,14872.522284673403,3,2,3_0,3_1_0,3_3_0,3_0_0 -1531,2,64.0,0.0,2,111,816.0,,,0,56,0.0,0.0,,908.0,158.27008438549763,,30,0,0,0,0,0,0,0,0,0,,1,,2,123611,2,1,0,0,2,,972.0,,12,1.0,4.0,6.0,1.0,1.0,4,3,81.71930661958524,816.0,12976.01797706237,0,1,0,1,115.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06997524214324195,12976.01797706237,2,1,2_0,2_1_0,2_3_0,2_0_1 -1532,2,68.0,0.0,9,111,1080.0,,,78,75,0.0,0.0,,1360.0,481.69156117325366,,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,110025,1,1,0,0,2,,500.0,,41,0.0,7.0,4.0,2.0,1.5,1,1,110.20726747710468,1080.0,29772.3831254689,5,5,0,1,59.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045679917333744866,19848.255416979267,5,3,5,5_1,5_3,5_0_0 -1533,0,57.0,0.0,2,111,720.0,,,0,55,0.0,0.0,,927.0,356.1076898673697,,43,0,0,0,0,0,0,0,0,3,45.0,1,,2,115399,1,2,0,0,2,,600.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,88.25615875702071,720.0,5083.763567273136,0,1,5,0,76.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1823452227337218,3389.1757115154237,1,1,1_0,1_1_0,1_3_0,1_0_1 -1534,2,37.0,0.0,7,111,268.0,,,0,47,0.0,0.0,,406.0,237.40512657824647,,30,0,0,0,0,0,0,0,0,2,90.0,1,,5,110228,2,2,0,0,2,,804.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,113.05822095894565,268.0,19869.189393146207,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020433646887479364,15283.991840881697,3,2,3_0,3_1_0,3_3_0,3_0_0 -1535,2,61.0,0.0,5,111,1035.0,,,78,56,0.0,0.0,,1283.0,427.3292278408436,,31,0,0,0,0,0,0,0,0,0,,1,,3,132391,1,1,0,0,2,,396.0,,42,1.0,4.0,6.0,2.0,1.5,1,1,81.71930661958524,1035.0,26451.867797893487,5,1,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048503191147136034,17634.57853192899,4,2,4_0,4_1_0,4_3_0,4_0_0 -1536,2,41.0,0.0,9,111,720.0,,,54,22,0.0,0.0,,766.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,128459,1,1,0,0,1,,340.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,142.2472858604853,720.0,74994.40438292513,1,1,1,2,106.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010214095388887498,35711.62113472625,9,5,9,9_1,9_3,9_0_0 -1538,2,54.0,0.0,7,111,1500.0,,,0,55,0.0,0.0,,1569.0,118.70256328912323,,42,0,0,0,0,0,0,0,0,2,45.0,1,,5,132042,1,1,0,0,1,,300.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,143.47296528577536,1500.0,22247.828961440893,0,1,0,1,62.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07052373526960011,22247.828961440893,6,3,6,6_1,6_3,6_0_0 -1539,2,60.0,0.0,7,111,600.0,,,0,34,0.0,0.0,,692.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,2,30.0,1,,5,126160,2,1,0,0,1,,1500.0,,32,1.0,1.0,5.0,2.0,1.5,1,1,96.34252728089929,600.0,75816.86867097631,0,1,1,2,191.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009127256402570299,50544.57911398421,10,5,10,10_1,10_3,10_0_0 -1541,2,54.0,0.0,6,111,468.0,,,56,67,0.0,0.0,,583.0,197.83760548187203,,20,0,0,0,0,0,0,0,0,0,,1,,4,111867,1,1,0,0,2,,420.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,106.41147828229735,468.0,16610.974637297604,4,4,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035097278319295946,8305.487318648802,1,1,1_0,1_1_0,1_3_0,1_0_0 -1542,2,51.0,0.0,7,111,300.0,,,52,52,0.0,0.0,,576.0,474.81025315649293,,60,0,0,0,0,0,0,0,0,0,,1,,5,129510,1,2,0,0,2,,194.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,98.79951125401492,300.0,9762.430596432374,4,4,0,1,93.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05900169986463166,4881.215298216187,1,1,1_0,1_1_0,1_3_0,1_0_0 -1543,2,63.0,0.0,7,111,444.0,,,0,77,0.0,0.0,,536.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,5,111534,2,1,0,0,2,,144.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,115.42812238649469,444.0,37391.33657205185,0,5,0,1,125.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014334871366984863,37391.33657205185,9,5,9,9_1,9_3,9_0_0 -1544,2,56.0,0.0,6,111,360.0,,,0,77,0.0,0.0,,550.0,326.8621307961364,,10,0,0,0,0,0,0,0,0,0,,1,,4,110834,1,1,0,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,109.26920407098801,360.0,2570.546017400054,0,7,0,1,102.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21396232406541021,2570.546017400054,1,1,1_0,1_1_0,1_3_0,1_0_0 -1545,2,39.0,0.0,9,111,720.0,,,42,42,0.0,0.0,,998.0,478.2509071648733,,71,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,117700,1,1,0,0,2,,300.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,93.61305767353011,720.0,72177.65962326247,1,1,1,2,102.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013826993078040313,30074.024843026033,8,4,8,8_1,8_3,8_0_0 -1546,2,68.0,0.0,7,111,1260.0,,,77,75,0.0,0.0,,1375.0,197.83760548187203,,71,0,0,0,0,0,0,0,0,0,,1,,5,102830,1,3,0,0,2,,738.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,102.16732561071501,1260.0,44425.044625841845,5,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030951009989535695,29616.696417227897,8,4,8,8_1,8_3,8_0_0 -1547,2,49.0,0.0,7,111,518.0,,,68,53,0.0,0.0,,656.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,5,116576,2,1,0,0,1,,532.0,,43,2.0,1.0,4.0,4.0,2.3,2,2,131.86870803721717,518.0,37231.12847959567,4,1,0,1,89.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01761966469427639,16187.447165041596,4,2,4_0,4_1_0,4_3_0,4_0_0 -1548,2,55.0,0.0,9,111,760.0,,,0,37,0.0,0.0,,806.0,79.13504219274881,,42,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,108873,2,1,0,0,1,,460.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,113.05822095894565,760.0,51735.84612764329,0,1,1,2,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015579140196362638,51735.84612764329,10,5,10,10_1,10_3,10_0_0 -1549,2,69.0,0.0,6,111,432.0,,,86,72,0.0,0.0,,708.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,4,129581,2,1,0,0,1,,700.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,102.16732561071501,432.0,2255.387840968927,5,5,0,1,187.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.31391496714633316,1503.5918939792846,1,1,1_0,1_1_0,1_3_0,1_0_0 -1550,2,36.0,0.0,5,111,420.0,,,0,54,0.0,0.0,,546.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,3,100127,2,1,0,0,2,,550.0,,32,2.0,3.0,6.0,5.0,2.4,1,1,87.53823627451203,420.0,16207.22249893146,0,4,0,1,183.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03368868416756774,6753.009374554776,1,1,1_0,1_1_0,1_3_0,1_0_0 -1551,2,74.0,0.0,6,111,480.0,,,0,78,0.0,0.0,,618.0,237.40512657824647,,44,0,0,0,0,0,0,0,0,0,,1,,4,119364,1,1,0,0,2,,488.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,102.52654553987699,480.0,9396.865131410852,0,5,0,1,82.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06576661379700073,9396.865131410852,1,1,1_0,1_1_0,1_3_0,1_0_0 -1552,2,27.0,0.0,6,111,780.0,,,0,47,0.0,0.0,,989.0,359.54834387575005,,71,0,0,0,0,0,0,0,0,0,,1,,4,126543,1,1,0,0,2,,260.0,,22,2.0,1.0,5.0,3.0,2.0,4,4,97.25230936565995,780.0,30456.147911186243,0,1,0,1,83.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03247291820633528,15228.073955593121,3,2,3_0,3_1_0,3_3_0,3_0_0 -1553,2,58.0,0.0,9,111,1220.0,,,71,52,0.0,0.0,,1329.0,187.51564345673088,,60,0,0,0,0,0,0,0,0,1,15.0,1,2009.0,6,113915,1,1,0,0,2,,1200.0,,42,1.0,3.0,5.0,2.0,1.5,3,2,158.89334764486085,1220.0,33811.65945610788,5,1,1,2,97.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03930596786369572,22541.10630407192,6,3,6,6_1,6_3,6_0_0 -1554,2,44.0,0.0,9,111,420.0,,,0,55,0.0,0.0,,558.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,2,3.0,1,2008.0,6,117076,1,2,0,0,2,,160.0,,32,2.0,0.0,3.0,2.0,1.5,5,5,99.44882926642907,420.0,9388.388953288519,0,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0594351174388175,6258.925968859013,1,1,1_0,1_1_0,1_3_0,1_0_0 -1555,2,52.0,0.0,7,111,360.0,,,56,53,0.0,0.0,,498.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,120473,1,1,0,0,2,,450.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,88.25615875702071,360.0,12598.977227817722,1,1,0,1,102.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039527018026546505,8399.318151878482,1,1,1_0,1_1_0,1_3_0,1_0_0 -1556,2,65.0,0.0,2,111,516.0,,,0,77,0.0,0.0,,654.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,2,129240,1,1,0,0,2,,516.0,,11,0.0,4.0,5.0,1.0,1.0,3,2,90.6784231604455,516.0,16697.635439511036,0,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03916722235128349,16697.635439511036,4,2,4_0,4_1_0,4_3_0,4_0_1 -1557,2,64.0,0.0,2,112,500.0,,,86,63,0.0,0.0,,570.0,120.42289029331342,,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,133423,2,3,0,0,2,,400.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,81.47814655870766,500.0,30721.166283251274,6,1,0,1,60.0,8,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018553983098967032,20480.777522167515,5,3,5,5_1,5_1,5_0_1 -1559,2,43.0,0.0,8,112,480.0,,,0,68,0.0,0.0,,480.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,2000.0,6,130079,2,3,0,0,2,,450.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,112.5707969001411,480.0,7032.0,0,4,0,1,100.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06825938566552901,7032.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -1560,2,50.0,0.0,6,112,600.0,,,52,63,0.0,0.0,,750.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,,4,131770,2,2,0,0,2,,500.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,92.38729991058618,600.0,31298.442325740594,4,4,0,1,80.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023962853876059575,13608.01840249591,3,2,3_0,3_1_0,3_1_0,3_0_0 -1561,2,56.0,0.0,7,112,360.0,,,67,67,0.0,0.0,,620.0,447.28502108944986,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,108646,1,2,0,0,2,,400.0,,43,2.0,0.0,4.0,5.0,2.8,2,2,90.79655391926796,360.0,30532.641118002575,1,1,0,1,54.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02030613721242861,10904.51468500092,2,1,2_0,2_1_0,2_1_0,2_0_0 -1563,1,25.0,300.0,6,112,0.0,,,81,63,0.0,0.0,,88.0,151.38877636873687,,43,0,0,0,0,0,0,0,0,0,,1,,4,114143,2,3,0,0,2,,0.0,520.0,43,2.0,0.0,3.0,2.0,1.5,2,2,113.976051965937,0.0,14201.962365591398,4,1,2,3,45.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.006196326798696985,9467.974910394265,1,1,1_1,1_1_1,1_1_1,1_0_0 -1564,2,56.0,0.0,6,112,0.0,,,0,67,0.0,0.0,,1613.0,0.0,,41,0,0,0,0,0,0,0,0,2,90.0,1,,4,103814,2,2,0,0,1,,320.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,89.96197654298086,0.0,34672.52992459277,0,1,0,1,130.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04652097794732655,34672.52992459277,9,5,9,9_1,9_1,9_0_0 -1565,2,48.0,0.0,8,112,500.0,,,0,81,0.0,0.0,,626.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106099,2,3,0,0,2,,600.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,93.0475576248084,500.0,4863.2278856890425,0,4,0,1,54.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12872109115884164,3242.151923792695,1,1,1_0,1_1_0,1_1_0,1_0_0 -1566,1,33.0,353.0,2,112,180.0,,,0,85,0.0,0.0,,220.0,68.81308016760767,,60,0,0,0,0,0,0,0,0,0,,1,,2,130175,2,3,0,0,2,,340.0,400.0,11,0.0,1.0,3.0,1.0,1.0,3,2,120.96331298547577,180.0,9402.2372528062,0,7,2,3,50.0,8,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.023398686300363097,9402.2372528062,1,1,1_1,1_1_1,1_1_1,1_0_1 -1567,2,81.0,0.0,6,112,360.0,,,0,78,0.0,0.0,,480.0,206.439240502823,,43,0,0,0,0,0,0,0,0,0,,1,,4,103690,1,2,0,0,2,,700.0,,11,0.0,8.0,4.0,1.0,1.0,2,2,99.56194567044426,360.0,14521.203488372093,0,5,0,1,60.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03305511147091642,14521.203488372093,3,2,3_0,3_1_0,3_1_0,3_0_0 -1568,2,42.0,0.0,6,112,0.0,,,0,63,0.0,0.0,,24.0,41.2878481005646,,31,0,0,0,0,0,0,0,0,3,90.0,1,,4,106347,1,2,0,0,2,,0.0,500.0,12,1.0,3.0,2.0,1.0,1.0,2,1,173.1824667561385,0.0,17117.336684021157,0,1,3,4,30.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0014020872781221703,17117.336684021157,4,2,4_0,4_1_0,4_1_0,4_0_0 -1569,2,71.0,0.0,6,112,560.0,,,0,71,0.0,0.0,,780.0,378.4719409218422,,60,0,0,0,0,0,0,0,0,0,,1,,4,127044,2,2,0,0,2,,810.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,89.72512845188683,560.0,11984.0,0,5,0,1,80.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.065086782376502,11984.0,2,1,2_0,2_1_0,2_1_0,2_0_0 -1570,2,66.0,0.0,2,112,720.0,,,0,75,0.0,0.0,,850.0,223.64251054472493,,12,0,0,0,0,0,0,0,0,0,,1,,2,132558,2,3,0,0,2,,600.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,96.00907664483314,720.0,33674.27337772463,0,5,0,1,120.0,8,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02524182156703256,33674.27337772463,9,5,9,9_1,9_1,9_0_1 -1571,0,43.0,0.0,2,112,852.0,,,52,52,0.0,0.0,,992.0,240.84578058662683,,70,0,0,0,0,0,0,0,0,1,5.0,1,,2,121557,2,3,0,0,2,,1000.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,103.2165867202408,852.0,27698.52425464416,1,1,5,0,60.0,8,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035814182404814335,15388.069030357865,3,2,3_0,3_1_0,3_1_0,3_0_1 -1572,2,56.0,0.0,7,112,300.0,,,0,78,0.0,0.0,,420.0,206.439240502823,,12,0,0,0,0,0,0,0,0,0,,1,,5,109785,1,3,0,0,2,,500.0,,31,0.0,1.0,3.0,2.0,1.5,1,1,98.25145349585512,300.0,10598.0,0,7,0,1,55.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03963011889035667,7065.333333333333,1,1,1_0,1_1_0,1_1_0,1_0_0 -1573,0,33.0,0.0,7,112,732.0,,,0,56,0.0,0.0,,832.0,172.03270041901916,,12,0,0,0,0,0,0,0,0,0,,1,,5,106433,2,3,0,0,2,,1200.0,,32,1.0,0.0,4.0,4.0,1.9,2,2,84.4950626482678,732.0,8968.850997159903,0,4,5,0,80.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09276550588960203,4720.447893242054,1,1,1_0,1_1_0,1_1_0,1_0_0 -1574,2,41.0,0.0,8,111,1200.0,,,46,46,0.0,0.0,,1500.0,516.0981012570575,,10,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,115411,2,2,0,0,2,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,109.78185518906149,1200.0,68707.83102786013,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021831572581468475,32718.014775171487,8,4,8,8_1,8_3,8_0_0 -1575,2,55.0,0.0,6,111,440.0,,,11,52,0.0,0.0,,690.0,430.0817510475479,,41,0,0,0,0,0,0,0,0,0,,1,,4,128758,2,3,0,0,2,,400.0,,42,1.0,0.0,6.0,4.0,2.5,3,2,86.24628522782258,440.0,29510.56884452458,5,1,0,1,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02338145373053435,11804.227537809831,2,1,2_0,2_1_0,2_3_0,2_0_0 -1576,2,70.0,0.0,6,111,300.0,,,0,78,0.0,0.0,,450.0,258.04905062852873,,60,0,0,0,0,0,0,0,0,0,,1,,4,119971,1,3,0,0,2,,400.0,,21,1.0,5.0,3.0,2.0,1.5,1,1,123.38057291511973,300.0,8060.528618523346,0,5,0,1,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05582760403156264,5373.685745682231,1,1,1_0,1_1_0,1_3_0,1_0_0 -1577,2,90.0,0.0,7,111,550.0,,,77,78,0.0,0.0,,760.0,361.26867087994026,,41,0,0,0,0,0,0,0,0,0,,1,,5,114077,2,1,0,0,2,,600.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,93.0475576248084,550.0,24261.26248339051,5,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0313256575382383,16174.174988927007,4,2,4_0,4_1_0,4_3_0,4_0_0 -1578,2,48.0,0.0,7,111,500.0,,,0,63,0.0,0.0,,742.0,416.3191350140264,,50,0,0,0,0,0,0,0,0,0,,1,,5,117511,2,2,0,0,2,,950.0,,32,1.0,2.0,4.0,3.0,1.8,1,1,110.15727446362997,500.0,13936.314703137166,0,4,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05324219607590882,7742.397057298425,1,1,1_0,1_1_0,1_3_0,1_0_0 -1579,2,78.0,0.0,2,111,632.0,,,72,71,0.0,0.0,,862.0,395.67521096374406,,41,0,0,0,0,0,0,0,0,0,,1,,2,104257,2,2,0,0,2,,740.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,103.20910859857958,632.0,19373.87804044472,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04449289905719945,12915.918693629814,2,1,2_0,2_1_0,2_3_0,2_0_1 -1580,2,45.0,0.0,9,111,720.0,,,85,45,0.0,0.0,,764.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,111803,2,3,0,0,2,,230.0,800.0,42,1.0,0.0,5.0,3.0,2.0,1,1,99.20611019010241,720.0,55551.12900622147,7,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013753095817628397,27775.564503110734,7,4,7,7_1,7_3,7_0_0 -1581,1,39.0,360.0,8,111,960.0,,,0,54,0.0,0.0,,1210.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,114180,1,2,0,0,2,,800.0,424.0,32,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,78.35610501180722,960.0,18494.954207079645,0,4,2,3,54.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06542324930638793,7113.443925799865,1,1,1_1,1_1_1,1_3_1,1_0_0 -1582,1,44.0,490.0,7,111,300.0,,,0,85,0.0,0.0,,460.0,275.25232067043066,,71,0,0,0,0,0,0,0,0,0,,2,,5,124921,2,3,0,0,2,,700.0,464.0,31,2.0,2.0,4.0,8.0,3.6999999999999993,5,3,77.37521908149635,300.0,35062.45049633457,0,6,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013119448112963138,9476.337971982317,1,1,1_1,1_0_1,1_3_1,1_0_0 -1583,0,61.0,0.0,6,111,300.0,,,0,52,0.0,0.0,,360.0,103.2196202514115,,50,0,0,0,0,0,0,0,0,2,45.0,2,,4,110703,2,3,0,0,2,,100.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,106.49187888179793,300.0,36381.260377123595,0,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009895204186668768,36381.260377123595,9,5,9,9_0,9_3,9_0_0 -1585,2,68.0,0.0,7,111,450.0,,,77,77,0.0,0.0,,700.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,1,,5,132530,2,3,0,0,2,,500.0,,41,0.0,2.0,4.0,4.0,2.5,3,3,89.7652050040474,450.0,25843.724546559682,6,5,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02708587915564918,10337.489818623873,2,1,2_0,2_1_0,2_3_0,2_0_0 -1586,2,33.0,0.0,7,111,0.0,,,54,42,0.0,0.0,,317.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,123827,2,3,0,0,2,,133.0,500.0,43,2.0,0.0,2.0,2.0,1.5,2,2,148.9388499969032,0.0,51836.0,1,1,2,3,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006115441006250482,34557.333333333336,9,5,9,9_1,9_3,9_0_0 -1587,2,49.0,0.0,7,111,500.0,,,0,62,0.0,0.0,,945.0,765.5455168646353,,20,0,0,0,0,0,0,0,0,0,,1,,5,127041,2,3,0,0,2,,400.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,97.63076772272653,500.0,16269.69564757125,0,1,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05808344670178696,16269.69564757125,4,2,4_0,4_1_0,4_3_0,4_0_0 -1588,2,47.0,0.0,7,112,400.0,,,0,64,0.0,0.0,,500.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,2,90.0,1,,5,105724,2,2,0,0,2,,200.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,137.08134927983596,400.0,28681.0,0,1,0,1,100.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017433143893169693,28681.0,8,4,8,8_1,8_1,8_0_0 -1589,0,59.0,0.0,7,112,400.0,,,81,21,0.0,0.0,,450.0,86.01635020950958,,20,0,0,0,0,0,0,0,0,0,,1,,5,123290,1,2,0,0,2,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,119.81717712883582,400.0,17356.194664922616,4,4,5,0,70.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025927342294072293,11570.796443281744,2,1,2_0,2_1_0,2_1_0,2_0_0 -1590,2,94.0,0.0,1,112,0.0,,,0,71,0.0,0.0,,376.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,1,113365,1,3,0,0,2,,0.0,,11,0.0,8.0,2.0,1.0,1.0,2,2,93.0475576248084,0.0,8888.970398918727,0,5,0,1,28.0,8,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04229961211770234,8888.970398918727,1,1,1_0,1_1_0,1_1_0,1_1_0 -1591,2,55.0,0.0,6,112,200.0,,,43,64,0.0,0.0,,320.0,206.439240502823,,31,0,0,0,0,0,0,0,0,2,90.0,1,,4,102241,2,2,0,0,2,,400.0,,43,2.0,2.0,4.0,3.0,1.8,1,1,91.06039185815996,200.0,42403.31001734697,1,1,0,1,100.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007546580676581372,23557.394454081652,6,3,6,6_1,6_1,6_0_0 -1592,2,53.0,0.0,9,112,500.0,,,0,52,0.0,0.0,,500.0,0.0,,10,0,0,0,0,0,0,0,0,2,90.0,1,2010.0,6,126358,2,2,0,0,2,,1170.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,150.57232768727317,500.0,29459.160344314525,0,1,0,1,80.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016972649395165046,29459.160344314525,8,4,8,8_1,8_1,8_0_0 -1593,2,51.0,0.0,8,112,200.0,,,0,69,0.0,103.51725048194578,,350.0,86.01635020950958,,41,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,117798,2,2,0,0,2,,300.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,119.81717712883582,200.0,11565.547781788362,0,4,1,2,74.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030262293373697867,11565.547781788362,2,1,2_0,2_1_0,2_1_0,2_0_0 -1594,2,47.0,0.0,6,112,800.0,,,0,67,0.0,0.0,,1100.0,516.0981012570575,,70,0,0,0,0,0,0,0,0,0,,1,,4,121829,2,2,0,0,2,,1200.0,,22,2.0,1.0,5.0,6.0,3.5,2,1,91.36900042762157,800.0,23192.482641947565,0,1,0,1,100.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04742916129256737,6626.423611985018,1,1,1_0,1_1_0,1_1_0,1_0_0 -1595,2,32.0,0.0,9,112,0.0,,,46,46,0.0,0.0,,626.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109708,2,2,0,0,2,,1381.0,900.0,43,2.0,0.0,5.0,2.0,1.5,1,1,126.73630671269288,0.0,58731.07590127551,4,1,2,3,124.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010658752464407086,39154.050600850336,9,5,9,9_1,9_1,9_0_0 -1596,2,77.0,0.0,7,112,500.0,,,0,71,0.0,0.0,,600.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,0,,1,,5,121514,2,3,0,0,2,,500.0,,11,0.0,10.0,5.0,1.0,1.0,1,1,116.79383417053975,500.0,14285.631720430109,0,5,0,1,70.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04200024274333843,14285.631720430109,3,2,3_0,3_1_0,3_1_0,3_0_0 -1597,2,57.0,0.0,6,112,400.0,,,0,68,0.0,0.0,,450.0,86.01635020950958,,43,0,0,0,0,0,0,0,0,0,,1,,4,122988,1,3,0,0,2,,300.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,137.48896988431528,400.0,7872.607817054656,0,1,0,1,70.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05716022066095457,7872.607817054656,1,1,1_0,1_1_0,1_1_0,1_0_0 -1598,2,83.0,0.0,7,112,500.0,,,77,78,0.0,62.110350289167464,,710.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,1,,5,131904,2,3,0,0,2,,700.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,108.18857120082987,500.0,23080.180756279486,5,5,0,1,80.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030762324069183403,15386.787170852991,3,2,3_0,3_1_0,3_1_0,3_0_0 -1599,0,27.0,0.0,6,112,480.0,,,0,56,0.0,0.0,,520.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,2,60.0,1,,4,112490,2,3,0,0,2,,250.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,112.5707969001411,480.0,11468.36399371523,0,1,5,0,45.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0453421255451052,8821.818456704023,1,1,1_0,1_1_0,1_1_0,1_0_0 -1600,1,50.0,288.0,7,112,400.0,,,0,46,0.0,0.0,,550.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,0,,1,,5,103319,1,3,0,0,2,,360.0,483.0,12,1.0,0.0,3.0,1.0,1.0,1,1,112.78244341618044,400.0,7032.0,0,4,2,3,54.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07821387940841866,7032.0,1,1,1_1,1_1_1,1_1_1,1_0_0 -1601,1,47.0,282.0,7,112,300.0,,,0,55,0.0,0.0,,450.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,110738,2,3,0,0,2,,600.0,414.0,32,1.0,0.0,4.0,3.0,1.8,2,1,98.86767685264869,300.0,14552.773167858117,0,1,2,3,80.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030921941461568948,8084.873982143398,1,1,1_1,1_1_1,1_1_1,1_0_0 -1602,1,56.0,140.0,8,112,400.0,,,56,68,0.0,0.0,,520.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,1,2002.0,6,116931,2,2,0,0,2,,500.0,318.0,43,2.0,0.0,3.0,3.0,2.0,1,1,79.30632973461181,400.0,25104.697977172535,4,4,2,3,45.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02071325456585182,12552.348988586267,2,1,2_1,2_1_1,2_1_1,2_0_0 -1603,2,82.0,0.0,2,112,350.0,,,0,71,0.0,0.0,,550.0,344.06540083803833,,12,0,0,0,0,0,0,0,0,0,,1,,2,122579,2,3,0,0,2,,500.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,99.56194567044426,350.0,7414.0,0,5,0,1,50.0,8,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07418397626112759,7414.0,1,1,1_0,1_1_0,1_1_0,1_0_1 -1604,0,67.0,0.0,1,112,400.0,,,0,77,0.0,0.0,,550.0,258.04905062852873,,44,0,0,0,0,0,0,0,0,0,,1,,1,103075,2,3,0,0,2,,400.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,127.2642614321198,400.0,12724.993730318749,0,5,5,0,45.0,8,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04322202522501542,12724.993730318749,2,1,2_0,2_1_0,2_1_0,2_1_0 -1605,2,80.0,0.0,2,112,250.0,,,0,71,0.0,0.0,,350.0,172.03270041901916,,44,0,0,0,0,0,0,0,0,0,,1,,2,118794,2,2,0,0,2,,200.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,99.56194567044426,250.0,10421.292682926825,0,5,0,1,57.0,8,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03358508494569047,10421.292682926825,2,1,2_0,2_1_0,2_1_0,2_0_1 -1607,2,40.0,0.0,9,112,800.0,,,53,33,0.0,0.0,,860.0,103.2196202514115,,10,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,126393,2,2,0,0,2,,1200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,154.95073727586734,800.0,79060.66781514254,1,1,1,2,120.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010877722434761468,43922.593230634746,10,5,10,10_1,10_1,10_0_0 -1608,2,38.0,0.0,9,221,176.0,,,0,81,0.0,0.0,,440.0,454.1663291062106,,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,132249,2,2,0,0,2,,480.0,,32,2.0,0.0,4.0,4.0,2.3,1,1,79.83403032611209,176.0,24118.28975172955,0,4,0,1,63.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01824341628404423,10486.212935534588,2,1,2_0,2_1_0,2_1_0,2_0_0 -1609,2,79.0,0.0,8,221,540.0,,,86,71,0.0,0.0,,804.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,133337,2,1,0,0,2,,1440.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,85.08287309319246,540.0,14285.631720430109,5,5,0,1,47.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0562803252760735,9523.75448028674,1,1,1_0,1_1_0,1_1_0,1_0_0 -1610,2,51.0,0.0,9,221,2280.0,,,56,63,0.0,0.0,,2784.0,867.0448101118566,,30,0,0,0,0,0,0,0,0,0,,1,2013.0,6,104794,2,2,0,0,2,,3480.0,,42,3.0,4.0,4.0,8.0,4.1,7,6,86.3570483656732,2280.0,16654.748936170214,6,1,0,1,52.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16715952973351667,4062.1338868707844,1,1,1_0,1_1_0,1_1_0,1_0_0 -1611,2,52.0,0.0,7,221,580.0,,,0,52,0.0,0.0,,844.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,113111,2,2,0,0,2,,300.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,85.87545443802038,580.0,30624.728726892332,0,1,0,1,90.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027559427792052987,20416.48581792822,5,3,5,5_1,5_1,5_0_0 -1612,2,90.0,0.0,7,221,592.0,,,0,77,0.0,0.0,,724.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,0,,1,,5,106364,2,1,0,0,2,,0.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,91.02243580299466,592.0,14097.09677419355,0,5,0,1,35.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051358092492162645,14097.09677419355,3,2,3_0,3_1_0,3_1_0,3_0_0 -1613,2,77.0,0.0,1,221,407.0,,,0,72,0.0,0.0,,671.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,1,104268,2,2,0,0,2,,438.0,,11,0.0,8.0,7.0,1.0,1.0,2,2,78.290630917001,407.0,10983.36111276043,0,5,0,1,57.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061092409974614646,10983.36111276043,2,1,2_0,2_1_0,2_1_0,2_1_0 -1614,2,69.0,0.0,9,221,0.0,,,0,74,0.0,0.0,,258.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,114407,2,1,0,0,2,,1098.0,,31,0.0,3.0,5.0,2.0,1.3,1,1,82.7530537641008,0.0,61601.69744991153,0,5,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004188196278353861,47385.92111531656,10,5,10,10_1,10_1,10_0_0 -1615,2,33.0,0.0,2,221,864.0,,,0,42,0.0,0.0,,1128.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,2,129882,2,2,0,0,2,,1800.0,,32,1.0,3.0,3.0,4.0,2.3,2,2,66.4413384119763,864.0,33763.13581654732,0,1,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03340921904082046,14679.624268064053,3,2,3_0,3_1_0,3_1_0,3_0_1 -1616,2,47.0,0.0,9,221,903.0,,,43,31,0.0,0.0,,947.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,123933,2,1,0,0,2,,346.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,82.08179353488981,903.0,94736.32912857077,4,1,1,2,131.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00999616523788657,41189.7083167699,9,5,9,9_1,9_1,9_0_0 -1617,2,66.0,0.0,9,221,307.0,,,77,75,0.0,0.0,,2311.0,3447.535316397144,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,132876,2,1,0,0,2,,273.0,,41,0.0,4.0,7.0,2.0,1.5,4,3,70.55426115301253,307.0,74085.0421350141,5,5,0,1,158.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031193881158741683,49390.0280900094,10,5,10,10_1,10_1,10_0_0 -1618,2,43.0,0.0,8,221,480.0,,,0,45,0.0,0.0,,606.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119161,2,1,0,0,2,,600.0,,22,1.0,4.0,6.0,3.0,2.0,1,1,64.07015420384268,480.0,55374.409268864736,0,1,0,1,100.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010943683336785219,27687.204634432368,7,4,7,7_1,7_1,7_0_0 -1619,2,57.0,0.0,9,221,468.0,,,0,11,0.0,0.0,,600.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,113226,2,2,0,0,2,,1092.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,96.2872720588478,468.0,28993.984277167092,0,1,0,1,123.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02069394789844399,28993.984277167092,8,4,8,8_1,8_1,8_0_0 -1620,2,46.0,0.0,5,221,270.0,,,0,47,0.0,0.0,,1307.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,0,,1,,3,115484,2,1,0,0,2,,240.0,,22,2.0,4.0,7.0,4.0,2.3,2,2,64.07015420384268,270.0,22597.15433802589,0,1,0,1,100.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057839141178967615,9824.84971218517,2,1,2_0,2_1_0,2_1_0,2_0_0 -1621,2,62.0,0.0,8,221,360.0,,,77,86,0.0,0.0,,492.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127353,2,1,0,0,2,,737.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,99.71085191618519,360.0,43189.150407932786,5,5,1,2,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011391749903689508,28792.76693862186,8,4,8,8_1,8_1,8_0_0 -1622,2,37.0,0.0,9,221,720.0,,,55,85,0.0,0.0,,972.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,118080,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,5.0,2.4,3,1,79.15439637026383,720.0,38595.34386258562,4,7,0,1,63.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025184385024802386,16081.393276077342,4,2,4_0,4_1_0,4_1_0,4_0_0 -1623,2,41.0,0.0,9,221,420.0,,,55,62,0.0,0.0,,684.0,454.1663291062106,,20,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,122902,2,3,0,0,2,,900.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,85.20855677938023,420.0,45401.145814384014,1,1,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015065699063993552,17461.97915937847,4,2,4_0,4_1_0,4_1_0,4_0_0 -1624,2,85.0,0.0,9,221,0.0,,,0,71,0.0,0.0,,417.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,2010.0,6,121387,2,1,0,0,2,,105.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,114.89219104387226,0.0,15809.468008860855,0,5,0,1,42.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026376599121885745,15809.468008860855,3,2,3_0,3_1_0,3_1_0,3_0_0 -1625,2,43.0,0.0,6,221,43.0,,,0,85,0.0,0.0,,307.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,4,117067,2,1,0,0,2,,288.0,,31,0.0,0.0,3.0,5.0,2.5999999999999996,3,3,71.40445973736117,43.0,5251.303226520376,0,6,0,1,28.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05846167832197812,2019.7320102001447,1,1,1_0,1_1_0,1_1_0,1_0_0 -1627,2,83.0,0.0,5,221,78.0,,,71,71,0.0,0.0,,330.0,433.5224050559283,,60,0,0,0,0,0,0,0,0,0,,1,,3,114362,2,2,0,0,2,,645.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,99.71085191618519,78.0,15751.901147650266,5,5,0,1,99.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02094985214208423,10501.267431766844,2,1,2_0,2_1_0,2_1_0,2_0_0 -1628,2,47.0,0.0,2,221,1100.0,,,0,43,0.0,258.79312620486445,,1434.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,0,,1,,2,111583,2,2,0,0,2,,1000.0,,32,1.0,0.0,3.0,4.0,2.3,4,4,86.66682992996067,1100.0,20859.339179480703,0,1,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06874618546931839,9069.277904122046,1,1,1_0,1_1_0,1_1_0,1_0_1 -1629,2,54.0,0.0,7,221,1000.0,,,11,56,0.0,124.22070057833493,,1204.0,144.50746835197612,,60,0,0,0,0,0,0,0,0,2,30.0,1,,5,123633,2,1,0,0,2,,0.0,,43,2.0,3.0,4.0,2.0,1.5,3,2,75.48794278008387,1000.0,19737.92093643668,1,1,0,1,90.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06099933239561148,13158.613957624453,2,1,2_0,2_1_0,2_1_0,2_0_0 -1631,1,38.0,230.0,6,221,600.0,,,0,52,0.0,0.0,,700.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,3,15.0,1,,4,106513,2,3,0,0,2,,600.0,243.0,32,1.0,0.0,4.0,3.0,1.8,2,2,67.62405502356864,600.0,20319.361564173192,0,1,2,3,55.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03444990128204766,11288.53420231844,2,1,2_1,2_1_1,2_1_1,2_0_0 -1632,2,56.0,0.0,6,221,1000.0,,,56,62,0.0,0.0,,1105.0,180.63433543997013,,12,0,0,0,0,0,0,0,0,0,,1,,4,119299,2,1,0,0,2,,600.0,,43,2.0,3.0,4.0,3.0,2.0,2,2,101.31307430705638,1000.0,46878.98316159281,1,1,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023571330380418927,23439.491580796406,6,3,6,6_1,6_1,6_0_0 -1633,2,79.0,0.0,7,221,54.0,,,78,75,0.0,0.0,,306.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,5,127455,2,3,0,0,2,,109.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,73.16621581014174,54.0,28581.05480303034,5,5,0,1,117.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01070639282240752,19054.03653535356,5,3,5,5_1,5_1,5_0_0 -1634,1,40.0,250.0,7,221,420.0,,,0,54,0.0,0.0,,483.0,108.38060126398207,,41,0,0,0,0,0,0,0,0,1,7.0,2,,5,130611,2,1,0,0,2,,400.0,420.0,32,1.0,0.0,4.0,3.0,1.8,1,1,79.63528503375814,420.0,14819.03932514999,0,1,2,3,66.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032593205902374606,8232.799625083328,1,1,1_1,1_0_1,1_1_1,1_0_0 -1635,1,29.0,312.0,7,221,700.0,,,0,55,0.0,0.0,,763.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,1,5.0,2,,5,111378,2,1,0,0,2,,500.0,489.0,32,1.0,0.0,3.0,2.0,1.3,2,2,74.20356471131996,700.0,8363.297983155211,0,4,2,3,63.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09123195198075962,6433.306140888623,1,1,1_1,1_0_1,1_1_1,1_0_0 -1636,2,95.0,0.0,2,221,360.0,,,0,72,0.0,0.0,,425.0,111.82125527236246,,41,0,0,0,0,0,0,0,0,0,,1,,2,101428,2,1,0,0,2,,300.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,70.64359552944924,360.0,10352.595030200624,0,5,0,1,72.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04105250893714944,10352.595030200624,2,1,2_0,2_1_0,2_1_0,2_0_1 -1637,2,62.0,0.0,2,221,47.0,,,77,68,0.0,0.0,,299.0,433.5224050559283,,33,0,0,0,0,0,0,0,0,0,,1,,2,131467,1,3,0,0,2,,102.0,,42,1.0,0.0,2.0,2.0,1.5,1,1,78.290630917001,47.0,9725.139920598634,5,1,0,1,10.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030745058933979323,6483.426613732423,1,1,1_0,1_1_0,1_1_0,1_0_1 -1638,2,74.0,0.0,7,221,157.0,,,0,22,0.0,0.0,,241.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,0,,1,,5,124055,2,1,0,0,1,,124.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,80.77496699043493,157.0,29809.818701300144,0,5,0,1,26.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00808458455970042,29809.818701300144,8,4,8,8_1,8_1,8_0_0 -1639,1,44.0,470.0,9,221,1800.0,,,0,56,0.0,0.0,,1863.0,108.38060126398207,,10,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,115618,2,1,0,0,2,,700.0,540.0,32,2.0,0.0,3.0,5.0,2.8,1,1,69.00936841197445,1800.0,23560.685761670677,0,1,2,3,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07907240132334313,8414.530629168099,1,1,1_1,1_0_1,1_1_1,1_0_0 -1640,1,36.0,267.0,9,221,480.0,,,0,56,0.0,0.0,,564.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,107560,1,2,0,0,2,,430.0,465.0,32,1.0,0.0,3.0,3.0,1.8,5,5,69.96086107017757,480.0,25825.239385222867,0,1,2,3,81.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021839100563099498,14347.355214012703,3,2,3_1,3_0_1,3_1_1,3_0_0 -1641,2,35.0,0.0,2,221,600.0,,,0,67,0.0,0.0,,642.0,72.25373417598806,,41,0,0,0,0,0,0,0,0,0,,1,,2,100750,2,1,0,0,2,,400.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,66.4413384119763,600.0,9394.325583114869,0,4,0,1,90.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0683391260309218,9394.325583114869,1,1,1_0,1_1_0,1_1_0,1_0_1 -1642,2,68.0,0.0,6,221,500.0,,,0,78,0.0,0.0,,668.0,289.01493670395223,,41,0,0,0,0,0,0,0,0,0,,1,,4,106601,1,1,0,0,2,,600.0,,31,1.0,0.0,3.0,4.0,2.3,3,2,81.20032295360753,500.0,19190.87614321165,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03480820755733397,8343.859192700718,1,1,1_0,1_1_0,1_1_0,1_0_0 -1643,2,45.0,0.0,8,221,475.0,,,68,65,0.0,0.0,,727.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,2,3.0,1,1999.0,6,109404,2,1,0,0,2,,0.0,,43,2.0,2.0,3.0,3.0,2.0,1,1,84.59318166453924,475.0,52115.98632754041,1,1,0,1,8.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013949654438676923,26057.993163770207,7,4,7,7_1,7_1,7_0_0 -1644,2,81.0,0.0,2,221,1340.0,,,0,72,0.0,0.0,,1640.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,1,,2,133575,2,1,0,0,2,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,75.49533116674898,1340.0,24134.132395848137,0,5,0,1,100.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06795355114079567,24134.132395848137,6,3,6,6_1,6_1,6_0_1 -1645,2,55.0,0.0,9,221,900.0,,,0,56,0.0,0.0,,900.0,0.0,,20,0,0,0,0,0,0,0,0,1,45.0,1,2005.0,6,133125,2,1,0,0,1,,1000.0,,12,1.0,1.0,4.0,1.0,1.0,4,4,114.70019679619473,900.0,22155.0,0,1,0,1,62.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040622884224779957,22155.0,6,3,6,6_1,6_1,6_0_0 -1646,0,51.0,0.0,1,221,540.0,,,0,63,0.0,186.3310508675024,,783.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,0,,1,,1,105053,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,107.7271568904445,540.0,4420.125619834711,0,4,0,1,30.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17714428668868465,4420.125619834711,1,1,1_0,1_1_0,1_1_0,1_1_0 -1647,2,66.0,0.0,6,221,960.0,,,0,77,0.0,74.53242034700096,,1074.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,0,,1,,4,117340,2,1,0,0,2,,560.0,,21,1.0,4.0,4.0,3.0,2.0,3,3,87.07957983014174,960.0,21641.13576015948,0,5,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04962770955751748,10820.56788007974,2,1,2_0,2_1_0,2_1_0,2_0_0 -1648,0,43.0,0.0,2,221,1200.0,,,0,22,0.0,144.92415067472407,,1466.0,216.76120252796414,,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,114256,2,1,0,0,2,,700.0,,32,2.0,0.0,4.0,4.0,2.5,1,1,97.36850774900509,1200.0,4850.027841995743,0,1,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3022663060418132,1940.0111367982972,1,1,1_0,1_1_0,1_1_0,1_0_1 -1649,0,46.0,0.0,7,300,480.0,,,0,85,0.0,124.22070057833493,,726.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,0,,1,,5,126382,1,2,0,0,2,,400.0,,31,0.0,0.0,5.0,3.0,1.8,1,1,65.39718207372526,480.0,18099.647426561743,0,7,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04011127857300549,10055.359681423191,2,1,2_0,2_1_0,2_1_0,2_0_0 -1650,1,66.0,107.0,5,300,318.0,,,54,71,0.0,0.0,,582.0,454.1663291062106,,70,0,0,0,0,0,0,0,0,3,7.0,1,,3,111949,2,2,0,0,2,,319.0,,42,2.0,0.0,4.0,3.0,2.0,1,1,66.4413384119763,318.0,23610.77740182144,1,5,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024649760153814416,11805.38870091072,2,1,2_1,2_1_1,2_1_1,2_0_0 -1651,2,70.0,0.0,2,300,0.0,,,77,71,0.0,0.0,,132.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,2,105796,2,2,0,0,2,,540.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,86.31912701538062,0.0,12129.066666666668,5,5,0,1,32.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010882947849793333,8086.044444444445,1,1,1_0,1_1_0,1_1_0,1_0_1 -1652,0,44.0,0.0,9,300,600.0,,,0,11,0.0,0.0,,770.0,292.4555907123326,,20,0,0,0,0,0,0,0,0,1,5.0,1,2006.0,6,115953,2,1,0,0,2,,115.0,,12,1.0,3.0,3.0,1.0,1.0,3,2,108.8969086470904,600.0,11441.705875119533,0,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06729765722036232,11441.705875119533,2,1,2_0,2_1_0,2_1_0,2_0_0 -1653,2,52.0,0.0,7,300,1080.0,,,56,11,0.0,74.53242034700096,,1362.0,361.26867087994026,,33,0,0,0,0,0,0,0,0,0,,1,,5,125814,2,1,0,0,2,,300.0,,43,2.0,4.0,4.0,3.0,1.8,2,2,71.40445973736117,1080.0,8766.81096428792,4,1,0,1,62.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15535865955684236,4870.450535715511,1,1,1_0,1_1_0,1_1_0,1_0_0 -1654,2,30.0,0.0,9,300,1200.0,,,81,81,0.0,74.53242034700096,,1404.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122125,2,1,0,0,2,,0.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,119.01499097052405,1200.0,27690.449046985494,4,4,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05070340309821901,15383.582803880829,3,2,3_0,3_1_0,3_1_0,3_0_0 -1655,2,69.0,0.0,2,300,467.0,,,81,75,0.0,0.0,,731.0,454.1663291062106,,30,0,0,0,0,0,0,0,0,0,,1,,2,125057,2,1,0,0,2,,520.0,,42,3.0,2.0,5.0,4.0,2.5,2,2,84.20945002072988,467.0,36994.84894421795,4,5,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01975950763043325,14797.939577687179,3,2,3_0,3_1_0,3_1_0,3_0_1 -1656,2,74.0,0.0,9,300,480.0,,,78,78,0.0,0.0,,480.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,2012.0,6,120971,2,1,0,0,2,,420.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,107.5128683187223,480.0,15094.8154513596,5,5,0,1,34.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03179899757944812,10063.2103009064,2,1,2_0,2_1_0,2_1_0,2_0_0 -1657,0,47.0,0.0,5,300,720.0,,,43,52,0.0,37.26621017350048,,882.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,1,5.0,1,,3,130416,1,2,0,0,2,,600.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,85.63706878939415,720.0,59812.969467323805,1,1,5,0,95.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014745965763860664,23004.988256663004,6,3,6,6_1,6_1,6_0_0 -1658,2,56.0,0.0,6,300,600.0,,,55,63,0.0,103.51725048194578,,847.0,252.8880696159582,,70,0,0,0,0,0,0,0,0,0,,1,,4,124459,1,1,0,0,2,,750.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,78.2144673037368,600.0,54394.035713470665,4,1,0,1,53.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015571560169973575,27197.017856735332,7,4,7,7_1,7_1,7_0_0 -1659,2,56.0,0.0,9,300,1122.0,,,0,45,0.0,0.0,,1386.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,111137,2,1,0,0,2,,1443.0,,12,1.0,4.0,6.0,1.0,1.0,1,1,131.58444211950973,1122.0,34570.20208036382,0,1,0,1,210.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040092331447123944,34570.20208036382,9,5,9,9_1,9_1,9_0_0 -1660,2,59.0,0.0,8,300,101.0,,,0,85,0.0,0.0,,365.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,120592,2,2,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,92.34125416950563,101.0,10589.585365853665,0,7,0,1,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034467827340714394,10589.585365853665,2,1,2_0,2_1_0,2_1_0,2_0_0 -1661,2,50.0,0.0,2,111,360.0,,,0,65,0.0,0.0,,443.0,142.7871413477859,,50,0,0,0,0,0,0,0,0,0,,1,,2,115914,2,2,0,0,2,,190.0,,22,1.0,3.0,4.0,2.0,1.5,2,2,108.81868749658443,360.0,50292.78866098827,0,1,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008808419890695616,33528.52577399218,8,4,8,8_1,8_2,8_0_1 -1662,2,58.0,0.0,9,120,447.0,,,77,74,0.0,0.0,,447.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,2011.0,6,122408,2,1,0,0,1,,430.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,303.9244316249469,447.0,65965.69299418108,7,7,1,2,82.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006776249588394841,43977.128662787385,10,5,10,10_1,10_0,10_0_0 -1663,1,43.0,360.0,9,111,350.0,,,0,56,0.0,0.0,,375.0,43.00817510475479,,10,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,107135,1,1,0,0,2,,360.0,790.0,32,1.0,0.0,3.0,2.0,1.3,2,2,162.3389684807116,350.0,112719.99999999999,0,1,2,3,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.003326827537260469,86707.6923076923,10,5,10,10_0,10_2,10_0_0 -1664,0,61.0,0.0,8,111,0.0,,,0,63,0.0,0.0,,100.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,117566,1,2,0,0,2,,100.0,,12,1.0,0.0,4.0,1.0,1.0,2,1,149.14715055478825,0.0,835.89851268169,0,4,5,0,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11963174773356725,835.89851268169,1,1,1_0,1_1_0,1_2_0,1_0_0 -1665,2,73.0,0.0,6,111,486.0,,,0,77,0.0,0.0,,572.0,147.94812236035648,,10,0,0,0,0,0,0,0,0,0,,1,,4,126492,2,1,0,0,2,,362.0,,21,1.0,3.0,4.0,3.0,2.0,2,2,166.8360835937458,486.0,37594.70315332446,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015214909336221709,18797.35157666223,5,3,5,5_1,5_2,5_0_0 -1666,2,74.0,0.0,6,111,1200.0,,,78,78,0.0,0.0,,1470.0,464.48829113135173,,44,0,0,0,0,0,0,0,0,0,,1,,4,123113,2,1,0,0,2,,800.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,93.65021560293526,1200.0,57026.64760649609,5,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0257774226909412,38017.76507099739,9,5,9,9_1,9_2,9_0_0 -1667,2,66.0,0.0,5,111,420.0,,,72,77,0.0,0.0,,580.0,275.25232067043066,,71,0,0,0,0,0,0,0,0,0,,1,,3,108875,2,2,0,0,2,,462.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,100.38879685985447,420.0,29574.486365176308,5,5,0,1,129.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0196114986694391,19716.324243450872,5,3,5,5_1,5_2,5_0_0 -1668,1,28.0,357.0,9,111,0.0,,,0,48,0.0,0.0,,1554.0,0.0,,20,0,0,0,0,0,0,0,0,2,45.0,2,2009.0,6,109776,2,1,0,0,2,,363.0,398.0,32,1.0,0.0,3.0,2.0,1.3,3,3,267.87901414880145,0.0,16396.45221235115,0,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0947766004422225,12612.655547962422,2,1,2_1,2_0_1,2_2_1,2_0_0 -1669,2,40.0,0.0,5,111,1080.0,,,90,52,0.0,0.0,,1130.0,86.01635020950958,,60,0,0,0,0,0,0,0,0,2,30.0,1,,3,133146,1,3,0,0,2,,540.0,665.0,43,2.0,2.0,4.0,2.0,1.5,6,4,120.61161145310791,1080.0,38308.18627945629,4,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02949761160073481,25538.790852970862,7,4,7,7_1,7_2,7_0_0 -1670,2,46.0,0.0,9,111,302.0,,,45,45,0.0,0.0,,398.0,165.1513924022584,,70,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,103802,2,1,0,0,2,,205.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,250.44797390127192,302.0,58483.165608491225,1,1,1,2,113.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0068053771689508885,38988.77707232748,9,5,9,9_1,9_2,9_0_0 -1671,2,72.0,0.0,7,111,1000.0,,,77,78,0.0,0.0,,1360.0,619.317721508469,,71,0,0,0,0,0,0,0,0,0,,1,,5,107133,1,2,0,0,2,,1200.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,111.61816868814631,1000.0,40831.75174884325,5,5,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033307412534377204,27221.167832562165,7,4,7,7_1,7_2,7_0_0 -1672,1,36.0,200.0,9,111,300.0,,,0,52,0.0,0.0,,323.0,39.567521096374406,,60,0,0,0,0,0,0,0,0,2,60.0,2,2009.0,6,121749,2,1,0,0,2,,300.0,450.0,32,1.0,0.0,3.0,2.0,1.3,1,1,267.87901414880145,300.0,32849.656260223535,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009832675186653598,25268.966354018103,7,4,7,7_0,7_2,7_0_0 -1673,2,58.0,0.0,6,111,900.0,,,0,74,0.0,0.0,,1000.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,0,,1,,4,122029,2,1,0,0,2,,500.0,,21,3.0,1.0,5.0,4.0,2.5,1,1,161.69775800798254,900.0,14302.09849643522,0,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06991980933771703,5720.839398574088,1,1,1_0,1_1_0,1_2_0,1_0_0 -1674,2,51.0,0.0,9,111,420.0,,,54,33,0.0,0.0,,492.0,123.8635443016938,,31,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,103565,2,1,0,0,1,,142.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,254.65766019943496,420.0,61306.288689159366,1,1,1,2,123.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008025277838862217,26654.908125721464,7,4,7,7_1,7_2,7_0_0 -1675,2,53.0,0.0,2,111,600.0,,,0,52,0.0,0.0,,712.0,192.67662446930146,,70,0,0,0,0,0,0,0,0,3,60.0,2,,2,126430,2,1,0,0,2,,660.0,370.0,32,2.0,0.0,3.0,2.0,1.5,1,1,88.5742382803468,600.0,39270.31070901368,0,1,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018130745266463483,26180.207139342452,7,4,7,7_0,7_2,7_0_1 -1676,2,74.0,0.0,7,111,468.0,,,0,78,0.0,0.0,,618.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,,5,105239,1,1,0,0,2,,600.0,,21,2.0,0.0,3.0,3.0,2.0,1,1,113.59953646793272,468.0,14298.621913095214,0,5,0,1,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04322094840720366,7149.310956547607,1,1,1_0,1_1_0,1_2_0,1_0_0 -1677,2,57.0,0.0,9,111,282.0,,,0,63,0.0,0.0,,332.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,0,,1,2013.0,6,124953,2,1,0,0,2,,356.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,118.59642954049494,282.0,6599.0,0,4,0,1,88.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05031065312926201,6599.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -1678,2,50.0,0.0,9,111,360.0,,,0,45,0.0,0.0,,456.0,165.1513924022584,,41,0,0,0,0,0,0,0,0,2,75.0,1,2011.0,6,117774,2,1,0,0,1,,678.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,223.8936035539207,360.0,35299.054732408214,0,1,1,2,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01291819295040058,35299.054732408214,9,5,9,9_1,9_2,9_0_0 -1679,2,49.0,0.0,7,111,500.0,,,0,63,0.0,0.0,,650.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,107208,2,1,0,0,2,,400.0,386.0,12,1.0,0.0,3.0,1.0,1.0,4,4,181.17757052669558,500.0,27799.623840264692,0,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02338161133887526,27799.623840264692,7,4,7,7_0,7_2,7_0_0 -1680,2,73.0,0.0,2,111,372.0,,,0,78,0.0,0.0,,522.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,1,,2,103013,2,1,0,0,2,,250.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,98.04775839005185,372.0,19373.266774542797,0,5,0,1,86.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026944345838768282,19373.266774542797,5,3,5,5_1,5_2,5_0_1 -1681,2,48.0,0.0,9,111,996.0,,,42,45,0.0,0.0,,1078.0,141.06681434359572,,71,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,130318,2,1,0,0,1,,350.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,221.24509690542467,996.0,66999.821601732,1,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016089595079938734,37222.12311207333,9,5,9,9_1,9_2,9_0_0 -1682,2,42.0,0.0,7,111,300.0,,,0,56,0.0,0.0,,300.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,5,106135,1,1,0,0,2,,600.0,,32,1.0,2.0,5.0,5.0,2.8,3,3,137.1746702112971,300.0,54203.83352228849,0,1,1,2,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005534663888240316,19358.51197224589,5,3,5,5_1,5_2,5_0_0 -1683,2,52.0,0.0,9,111,350.0,,,52,45,0.0,0.0,,432.0,141.06681434359572,,10,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,125751,2,1,0,0,2,,400.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,214.44387090178088,350.0,37426.85107166604,1,1,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011542515269927296,18713.42553583302,5,3,5,5_1,5_2,5_0_0 -1684,1,37.0,413.0,5,111,0.0,,,0,68,0.0,0.0,,300.0,516.0981012570575,,12,0,0,0,0,0,0,0,0,0,,2,,3,111820,2,2,0,0,2,,0.0,500.0,32,1.0,0.0,2.0,3.0,1.6,1,1,187.56580294893337,0.0,10021.406216899508,0,4,2,3,30.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029935918523499996,6263.378885562192,1,1,1_1,1_0_1,1_2_1,1_0_0 -1685,2,38.0,0.0,7,111,216.0,,,67,54,0.0,0.0,,304.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,2,20.0,2,,5,123547,2,1,0,0,2,,240.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,104.30700985323749,216.0,60091.769871108496,1,1,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005058929045559033,40061.17991407233,9,5,9,9_0,9_2,9_0_0 -1686,2,33.0,0.0,9,111,800.0,,,53,42,0.0,0.0,,892.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,121341,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,217.80540307334368,800.0,67531.50029123707,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013208650720821414,32157.85728154146,8,4,8,8_1,8_2,8_0_0 -1687,1,44.0,200.0,7,111,270.0,,,0,46,0.0,0.0,,345.0,129.02452531426437,,10,0,0,0,0,0,0,0,0,0,,2,,5,104012,2,1,0,0,2,,200.0,9.0,12,1.0,1.0,3.0,1.0,1.0,1,1,103.83245202878796,270.0,9583.657931034482,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03599878068297873,9583.657931034482,1,1,1_1,1_0_1,1_2_1,1_0_0 -1688,2,44.0,0.0,9,111,540.0,,,55,62,0.0,0.0,,540.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,131825,2,1,0,0,2,,500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,199.03978870355564,540.0,37456.06497195378,1,1,1,2,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01441689084009063,14406.178835366842,3,2,3_0,3_1_0,3_2_0,3_0_0 -1689,2,38.0,0.0,8,111,450.0,,,45,47,0.0,0.0,,570.0,206.439240502823,,20,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,125463,2,1,0,0,2,,426.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,168.42660118464477,450.0,41603.40743472792,1,1,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013700800851331223,23113.0041304044,6,3,6,6_1,6_2,6_0_0 -1690,2,34.0,0.0,9,111,1320.0,,,54,37,0.0,0.0,,1464.0,247.7270886033876,,42,0,0,0,0,0,0,0,0,2,60.0,2,2007.0,6,126051,2,1,0,0,2,,640.0,827.0,43,2.0,0.0,3.0,4.0,2.1,1,1,114.69567960838712,1320.0,88061.53487178645,1,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01662473862318567,41934.064224660215,9,5,9,9_0,9_2,9_0_0 -1692,2,50.0,0.0,9,111,200.0,,,0,52,0.0,0.0,,200.0,0.0,,10,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,104625,2,1,0,0,2,,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,217.29446764359594,200.0,32188.19731475153,0,1,1,2,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006213457623746515,32188.19731475153,8,4,8,8_1,8_2,8_0_0 -1693,2,55.0,0.0,7,111,600.0,,,63,52,0.0,0.0,,687.0,149.6684493645467,,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,108925,2,2,0,0,2,,400.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,126.45590781124002,600.0,47572.76852994047,1,1,0,1,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014441034676542498,31715.179019960313,8,4,8,8_1,8_2,8_0_0 -1694,2,45.0,0.0,8,111,0.0,,,55,22,0.0,0.0,,184.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,112021,2,2,0,0,2,,408.0,900.0,43,2.0,1.0,4.0,5.0,2.5999999999999996,1,1,122.44606169099205,0.0,32003.668980153925,4,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005749340805708928,12309.103453905358,2,1,2_0,2_0_0,2_2_0,2_0_0 -1695,2,55.0,0.0,9,111,0.0,,,52,52,0.0,0.0,,482.0,0.0,,31,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,106910,2,1,0,0,2,,134.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,214.44387090178088,0.0,52470.4873578493,1,1,1,2,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009186116315496647,26235.24367892465,7,4,7,7_1,7_2,7_0_0 -1696,2,67.0,0.0,7,111,600.0,,,0,77,0.0,0.0,,692.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,8,,5,106553,2,1,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,91.5583481406191,600.0,31332.57702537081,0,5,1,2,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022085639474840178,31332.57702537081,8,4,8,8_0,8_2,8_0_0 -1697,2,46.0,0.0,9,111,1200.0,,,42,33,0.0,0.0,,1235.0,60.21144514665671,,30,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,121172,2,1,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,202.31994759885947,1200.0,102822.58496091263,1,1,1,2,144.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012010979888022438,42842.7437337136,9,5,9,9_1,9_2,9_0_0 -1698,2,66.0,0.0,6,111,350.0,,,0,75,0.0,0.0,,419.0,118.70256328912323,,12,0,0,0,0,0,0,0,0,0,,1,,4,118824,2,2,0,0,2,,268.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,133.09629105838334,350.0,29398.16221177916,0,5,0,1,124.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014252591606971827,29398.16221177916,8,4,8,8_1,8_2,8_0_0 -1699,2,49.0,0.0,9,111,450.0,,,46,43,0.0,0.0,,542.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,105021,2,1,0,0,2,,400.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,135.56759490777068,450.0,86314.47816522277,1,1,1,2,127.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006279363688702446,35964.365902176156,9,5,9,9_1,9_2,9_0_0 -1700,0,21.0,0.0,7,111,350.0,,,0,69,0.0,0.0,,630.0,481.69156117325366,,12,0,0,0,0,0,0,0,0,0,,1,,5,101638,2,1,0,0,2,,800.0,,22,2.0,0.0,4.0,5.0,2.4,2,2,104.47125141638946,350.0,20575.068893953954,0,1,5,0,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0306195815550891,8572.945372480815,1,1,1_0,1_1_0,1_2_0,1_0_0 -1701,1,42.0,400.0,7,111,0.0,,,0,81,0.0,0.0,,276.0,474.81025315649293,,60,0,0,0,0,0,0,0,0,0,,1,,5,123035,2,1,0,0,2,,0.0,700.0,32,1.0,0.0,3.0,3.0,1.6,1,1,94.17831325591682,0.0,9431.11898089172,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02926482006633575,5894.449363057325,1,1,1_1,1_1_1,1_2_1,1_0_0 -1702,2,65.0,0.0,9,111,240.0,,,0,77,0.0,0.0,,286.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,104267,2,1,0,0,2,,120.0,,11,0.0,2.0,3.0,1.0,1.0,4,2,217.29446764359594,240.0,19004.1574621324,0,5,0,1,29.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015049338576039602,19004.1574621324,5,3,5,5_1,5_2,5_0_0 -1703,1,41.0,273.0,7,111,268.0,,,0,90,0.0,0.0,,368.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,0,,1,,5,106148,2,1,0,0,2,,375.0,450.0,32,1.0,0.0,3.0,2.0,1.3,1,1,151.8659272610735,268.0,8397.120932261183,0,4,2,3,45.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.043824544503839206,6459.3237940470635,1,1,1_1,1_1_1,1_2_1,1_0_0 -1704,2,68.0,0.0,6,111,564.0,,,72,77,0.0,0.0,,828.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,4,102932,2,1,0,0,1,,331.0,,41,1.0,3.0,5.0,3.0,2.0,1,1,83.19506270799614,564.0,47974.244810328266,5,5,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017259260740290834,23987.122405164133,6,3,6,6_1,6_2,6_0_0 -1705,2,62.0,0.0,9,111,810.0,,,46,22,0.0,0.0,,890.0,137.62616033521533,,10,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,119789,2,1,0,0,2,,300.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,231.25957578187575,810.0,134687.39575452177,1,1,1,2,179.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006607893745470393,89791.59716968118,10,5,10,10_1,10_2,10_0_0 -1706,0,31.0,0.0,7,111,320.0,,,0,85,0.0,0.0,,570.0,430.0817510475479,,10,0,0,0,0,0,0,0,0,0,,1,,5,104137,2,1,0,0,2,,800.0,,21,1.0,1.0,4.0,4.0,2.5,2,2,111.61816868814631,320.0,26931.92654845591,0,7,0,1,55.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02116447180169069,10772.770619382365,2,1,2_0,2_1_0,2_2_0,2_0_0 -1707,2,57.0,0.0,6,111,383.0,,,0,85,0.0,124.22070057833493,,643.0,240.84578058662683,,20,0,0,0,0,0,0,0,0,0,,1,,4,105544,2,1,0,0,2,,132.0,,31,0.0,2.0,7.0,3.0,2.0,2,2,70.01022994040224,383.0,23134.200957667603,0,7,0,1,256.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027794346611607693,11567.100478833801,2,1,2_0,2_1_0,2_2_0,2_0_0 -1708,2,37.0,0.0,9,111,360.0,,,45,33,0.0,0.0,,406.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,100013,2,1,0,0,2,,360.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,217.80540307334368,360.0,70636.85347026837,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00574770788977582,33636.596890603985,9,5,9,9_1,9_2,9_0_0 -1709,2,63.0,0.0,5,111,300.0,,,0,21,0.0,0.0,,415.0,197.83760548187203,,12,0,0,0,0,0,0,0,0,0,,1,,3,107737,2,1,0,0,2,,460.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,107.2490362387036,300.0,5110.0,0,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0812133072407045,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0 -1710,2,40.0,0.0,7,111,390.0,,,85,69,0.0,155.27587572291867,,678.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,5,117775,2,1,0,0,2,,251.0,,42,1.0,2.0,4.0,5.0,2.5999999999999996,2,2,64.8420393998452,390.0,13296.645532987328,6,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050990304157388124,5114.0944357643575,1,1,1_0,1_1_0,1_2_0,1_0_0 -1711,0,54.0,0.0,1,111,300.0,,,0,43,0.0,0.0,,396.0,165.1513924022584,,20,0,0,0,0,0,0,0,0,3,60.0,1,,1,120211,2,1,0,0,2,,237.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,93.0369899865139,300.0,26322.259531885065,0,1,5,0,56.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015044301174840688,26322.259531885065,7,4,7,7_1,7_2,7_1_0 -1712,2,76.0,0.0,5,111,430.0,,,0,75,0.0,0.0,,610.0,309.6588607542345,,10,0,0,0,0,0,0,0,0,0,,1,,3,113047,2,1,0,0,2,,230.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,143.13968093677335,430.0,38880.60923961245,0,5,0,1,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015689054568067778,38880.60923961245,9,5,9,9_1,9_2,9_0_0 -1713,2,54.0,0.0,8,111,459.0,,,85,63,0.0,51.75862524097289,,605.0,165.1513924022584,,10,0,0,0,0,0,0,0,0,0,,1,2003.0,6,103335,2,1,0,0,2,,223.0,,42,1.0,1.0,5.0,3.0,2.0,2,2,111.12651039031593,459.0,9372.74443800457,6,4,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06454886335605697,4686.372219002285,1,1,1_0,1_1_0,1_2_0,1_0_0 -1714,2,45.0,0.0,9,111,300.0,,,0,54,0.0,0.0,,399.0,170.31237341482898,,50,0,0,0,0,0,0,0,0,2,1.0,1,2012.0,6,128725,2,2,0,0,2,,180.0,,32,1.0,0.0,3.0,2.0,1.5,3,3,206.10452312330744,300.0,16689.898306102885,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023906676522654442,11126.598870735257,2,1,2_0,2_1_0,2_2_0,2_0_0 -1716,2,46.0,0.0,9,111,720.0,,,62,34,0.0,41.40690019277831,,912.0,261.48970463690915,,41,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,121254,2,1,0,0,2,,260.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,116.20971062267049,720.0,83893.22119754402,1,1,1,2,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010870961765224231,39949.152951211436,9,5,9,9_1,9_2,9_0_0 -1719,2,52.0,0.0,8,120,500.0,,,52,52,0.0,0.0,,776.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,125804,2,1,0,0,2,,400.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,94.09752147585965,500.0,28085.97386924808,1,1,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027629449618254424,13374.273271070513,3,2,3_0,3_1_0,3_1_0,3_0_0 -1720,2,38.0,0.0,7,120,500.0,,,0,31,0.0,0.0,,500.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,5,132136,2,1,0,0,2,,0.0,760.0,32,1.0,0.0,3.0,3.0,1.6,2,2,110.93892603400073,500.0,8338.91891175644,0,1,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.059959810772963154,5211.824319847775,1,1,1_0,1_0_0,1_1_0,1_0_0 -1721,2,76.0,0.0,5,111,780.0,,,0,77,0.0,0.0,,960.0,309.6588607542345,,12,0,0,0,0,0,0,0,0,0,,1,,3,127157,2,1,0,0,2,,290.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,173.02690149369172,780.0,47901.11671085149,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020041286423339733,31934.077807234327,8,4,8,8_1,8_2,8_0_0 -1722,2,27.0,0.0,9,111,400.0,,,0,52,0.0,0.0,,500.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,2,60.0,1,2005.0,6,116106,2,2,0,0,2,,600.0,,22,3.0,0.0,4.0,3.0,2.0,2,2,142.82559695128026,400.0,59839.20108767331,0,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008355726528959264,29919.600543836656,8,4,8,8_1,8_2,8_0_0 -1723,2,81.0,0.0,5,111,278.0,,,0,72,0.0,0.0,,438.0,275.25232067043066,,31,0,0,0,0,0,0,0,0,0,,1,,3,117572,2,2,0,0,2,,700.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,198.5825018593454,278.0,8460.042035509554,0,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05177279240003433,8460.042035509554,1,1,1_0,1_1_0,1_2_0,1_0_0 -1724,2,80.0,0.0,5,111,600.0,,,0,72,0.0,0.0,,700.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,0,,1,,3,115512,2,1,0,0,2,,0.0,500.0,21,1.0,4.0,4.0,2.0,1.5,1,1,155.30166192416274,600.0,27047.906835531146,0,5,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02588000632568187,18031.937890354096,4,2,4_0,4_1_0,4_2_0,4_0_0 -1725,2,39.0,0.0,8,111,480.0,,,55,46,0.0,0.0,,555.0,129.02452531426437,,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,123414,1,1,0,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,133.6896846962551,480.0,41618.66859799917,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013335361718579384,23121.48255444398,6,3,6,6_1,6_2,6_0_0 -1726,2,75.0,0.0,8,111,800.0,,,86,78,0.0,0.0,,800.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2001.0,6,109259,2,1,0,0,2,,460.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,72.90520739808231,800.0,30493.861797147823,6,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026234788014774378,20329.24119809855,5,3,5,5_1,5_2,5_0_0 -1727,2,44.0,0.0,7,111,350.0,,,0,52,0.0,0.0,,580.0,395.67521096374406,,50,0,0,0,0,0,0,0,0,2,5.0,2,,5,118988,2,2,0,0,2,,350.0,510.0,32,2.0,1.0,4.0,2.0,1.5,1,1,86.79079003069263,350.0,29316.738360955533,0,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019783919781896767,19544.49224063702,5,3,5,5_0,5_2,5_0_0 -1728,2,75.0,0.0,6,111,480.0,,,0,75,0.0,0.0,,660.0,309.6588607542345,,31,0,0,0,0,0,0,0,0,0,,1,,4,112079,2,2,0,0,1,,260.0,,21,0.0,0.0,5.0,2.0,1.5,1,1,100.38879685985447,480.0,27592.0,0,5,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023919976804870978,18394.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0 -1729,1,33.0,357.0,6,111,360.0,,,0,68,0.0,0.0,,408.0,82.5756962011292,,50,0,0,0,0,0,0,0,0,0,,2,,4,122956,2,1,0,0,2,,283.0,493.0,32,3.0,0.0,4.0,4.0,2.3,1,1,110.62136004543527,360.0,25721.43695958701,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01586225531027062,11183.233460690004,2,1,2_1,2_0_1,2_2_1,2_0_0 -1730,2,48.0,0.0,2,111,281.0,,,0,56,0.0,124.22070057833493,,499.0,168.59204641063877,,41,0,0,0,0,0,0,0,0,0,,1,,2,115440,1,1,0,0,2,,198.0,,22,2.0,3.0,4.0,3.0,2.0,2,2,89.54908940066784,281.0,32120.501202799296,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015535249492200085,16060.250601399648,4,2,4_0,4_1_0,4_2_0,4_0_1 -1731,0,55.0,0.0,5,111,150.0,,,0,47,0.0,0.0,,250.0,172.03270041901916,,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,122267,1,2,0,0,2,,200.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,126.11806614451763,150.0,18924.167477851362,0,1,5,0,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01321062077328354,18924.167477851362,5,3,5,5_1,5_2,5_0_0 -1732,1,36.0,350.0,6,111,0.0,,,0,46,0.0,0.0,,611.0,123.8635443016938,,60,0,0,0,0,0,0,0,0,0,,1,,4,133692,2,1,0,0,2,,400.0,650.0,32,1.0,0.0,4.0,3.0,1.6,3,3,88.7487838242277,0.0,20185.47468937255,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030269290636087215,12615.921680857842,2,1,2_1,2_1_1,2_2_1,2_0_0 -1733,2,61.0,0.0,8,111,730.0,,,85,65,0.0,0.0,,1020.0,498.8948312151556,,33,0,0,0,0,0,0,0,0,2,50.0,1,1999.0,6,116464,2,2,0,0,2,,1000.0,,42,2.0,0.0,4.0,5.0,3.0,5,4,133.2429599457404,730.0,73269.60429698094,6,1,0,1,156.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01392118887206859,24423.20143232698,7,4,7,7_1,7_2,7_0_0 -1734,1,26.0,350.0,2,111,0.0,,,0,56,0.0,0.0,,802.0,75.69438818436844,,30,0,0,0,0,0,0,0,0,0,,1,,2,116679,2,1,0,0,2,,0.0,400.0,32,1.0,0.0,2.0,2.0,1.3,3,2,107.89853294098602,0.0,12012.273866831289,0,4,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06676504456117259,9240.210666793299,1,1,1_1,1_1_1,1_2_1,1_0_1 -1735,2,52.0,0.0,6,111,800.0,,,31,11,0.0,207.03450096389156,,1090.0,154.82943037711726,,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,115739,2,1,0,0,2,,700.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,221.24756787449328,800.0,19035.038296176423,1,1,0,1,150.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0572628214895133,12690.025530784282,2,1,2_0,2_1_0,2_2_0,2_0_0 -1736,2,31.0,0.0,7,111,313.0,,,0,67,0.0,0.0,,451.0,237.40512657824647,,60,0,0,0,0,0,0,0,0,0,,2,,5,112894,2,1,0,0,2,,311.0,366.0,22,2.0,1.0,3.0,2.0,1.5,1,1,115.41287432407483,313.0,27680.636847968,0,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016292977740254098,18453.757898645334,4,2,4_0,4_0_0,4_2_0,4_0_0 -1737,2,62.0,0.0,6,111,480.0,,,46,52,0.0,0.0,,572.0,158.27008438549763,,33,0,0,0,0,0,0,0,0,2,20.0,1,,4,125518,2,1,0,0,2,,252.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,72.07403757108102,480.0,39882.180104706524,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014342245045237581,26588.12006980435,7,4,7,7_1,7_2,7_0_0 -1738,2,59.0,0.0,6,111,540.0,,,78,52,0.0,0.0,,816.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,4,20.0,1,,4,131060,2,3,0,0,2,,460.0,,42,2.0,1.0,5.0,3.0,2.0,2,2,91.71182466907626,540.0,26609.470250150058,7,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030665773964267416,13304.735125075029,3,2,3_0,3_1_0,3_2_0,3_0_0 -1739,2,45.0,0.0,9,111,720.0,,,55,52,0.0,51.75862524097289,,888.0,202.9985864944426,,10,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,127888,2,1,0,0,2,,3649.0,,43,2.0,0.0,4.0,4.0,2.5,5,4,256.59495768963404,720.0,34383.463234709685,1,1,1,2,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025826368738317635,13753.385293883874,3,2,3_0,3_1_0,3_2_0,3_0_0 -1740,2,53.0,0.0,9,111,780.0,,,52,62,0.0,0.0,,780.0,0.0,,70,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,116789,2,1,0,0,2,,422.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,243.5586480817696,780.0,49825.2331926598,1,1,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015654718503453163,24912.6165963299,7,4,7,7_1,7_2,7_0_0 -1741,2,70.0,0.0,2,111,348.0,,,72,75,0.0,0.0,,609.0,449.00534809364,,43,0,0,0,0,0,0,0,0,0,,1,,2,100219,2,1,0,0,2,,780.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,161.95914736874684,348.0,84449.0,5,5,0,1,150.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007211453066347737,56299.333333333336,10,5,10,10_1,10_2,10_0_1 -1742,2,45.0,0.0,9,111,200.0,,,0,63,0.0,25.879312620486445,,272.0,80.85536919693901,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,119391,2,2,0,0,2,,100.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,227.94388427358135,200.0,28500.444372367703,0,1,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009543710843460205,28500.444372367703,8,4,8,8_1,8_2,8_0_0 -1743,2,23.0,0.0,7,111,970.0,,,0,52,0.0,0.0,,1102.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,5,119308,2,1,0,0,2,,600.0,,22,1.0,2.0,4.0,2.0,1.5,2,2,227.90980521020458,970.0,52103.419624956376,0,1,0,1,111.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02115024326488096,34735.61308330425,9,5,9,9_1,9_2,9_0_0 -1744,2,76.0,0.0,2,111,612.0,,,0,77,0.0,0.0,,750.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,2,126885,2,1,0,0,2,,640.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,76.21105549415755,612.0,24730.334912643528,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030327126690733095,16486.88994176235,4,2,4_0,4_1_0,4_2_0,4_0_1 -1745,2,69.0,0.0,9,111,660.0,,,0,77,0.0,0.0,,890.0,395.67521096374406,,60,0,0,0,0,0,0,0,0,0,,2,2009.0,6,124958,2,1,0,0,2,,840.0,650.0,21,1.0,2.0,1.0,2.0,1.5,2,2,196.55296636041243,660.0,25926.88378260422,0,5,2,3,28.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03432730317544564,17284.589188402813,4,2,4_0,4_0_0,4_2_0,4_0_0 -1746,2,57.0,0.0,7,111,380.0,,,0,42,0.0,0.0,,402.0,37.84719409218422,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,101545,2,1,0,0,2,,140.0,,12,1.0,3.0,6.0,1.0,1.0,2,2,103.5791028026827,380.0,56878.81033308242,0,1,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007067658371296573,56878.81033308242,10,5,10,10_1,10_2,10_0_0 -1747,1,35.0,157.0,9,111,834.0,,,54,21,0.0,0.0,,926.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,122776,2,1,0,0,2,,780.0,803.0,43,2.0,0.0,4.0,3.0,1.8,2,2,245.31380412116374,834.0,23758.89284447373,1,1,2,3,62.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038974880103278285,13199.384913596516,2,1,2_1,2_0_1,2_2_1,2_0_0 -1748,1,51.0,413.0,6,111,100.0,,,0,46,0.0,0.0,,163.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,2,,4,113838,2,1,0,0,2,,260.0,689.0,32,1.0,0.0,3.0,3.0,2.0,2,2,112.89788669376452,100.0,12090.681354837212,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013481456934996252,6045.340677418606,1,1,1_1,1_0_1,1_2_1,1_0_0 -1749,2,78.0,0.0,2,111,120.0,,,0,78,0.0,0.0,,215.0,163.4310653980682,,31,0,0,0,0,0,0,0,0,0,,1,,2,110560,2,3,0,0,2,,220.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,139.6068768948758,120.0,8931.949089483975,0,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024070894028396347,8931.949089483975,1,1,1_0,1_1_0,1_2_0,1_0_1 -1750,1,50.0,200.0,6,111,360.0,,,0,52,0.0,0.0,,450.0,154.82943037711726,,60,0,0,0,0,0,0,0,0,0,,2,,4,111338,1,2,0,0,2,,640.0,410.0,22,1.0,2.0,3.0,2.0,1.5,2,1,97.17301963069292,360.0,2475.301169786959,0,1,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.18179606000781312,1650.2007798579725,1,1,1_1,1_0_1,1_2_1,1_0_0 -1751,2,76.0,0.0,5,111,330.0,,,0,71,0.0,0.0,,430.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,3,122241,2,2,0,0,2,,750.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,239.8382989040056,330.0,9936.588235294117,0,5,0,1,96.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0432744106747493,9936.588235294117,2,1,2_0,2_1_0,2_2_0,2_0_0 -1752,2,71.0,0.0,5,111,700.0,,,86,72,0.0,0.0,,848.0,254.60839662014837,,31,0,0,0,0,0,0,0,0,0,,1,,3,108133,2,1,0,0,1,,600.0,,41,0.0,3.0,3.0,3.0,2.0,2,2,83.87160564859256,700.0,24242.582733599287,6,5,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034979771310616366,12121.291366799644,2,1,2_0,2_1_0,2_2_0,2_0_0 -1753,2,76.0,0.0,7,111,330.0,,,86,77,0.0,0.0,,600.0,464.48829113135173,,50,0,0,0,0,0,0,0,0,0,,1,,5,124775,2,1,0,0,2,,550.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,173.02690149369172,330.0,26375.81329062146,6,5,0,1,130.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022748113712699965,17583.875527080974,4,2,4_0,4_1_0,4_2_0,4_0_0 -1754,2,68.0,0.0,2,111,720.0,,,86,86,0.0,0.0,,720.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,2,118015,2,2,0,0,2,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,100.97540965620111,720.0,42099.720776958835,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017102251195785977,28066.480517972555,8,4,8,8_1,8_2,8_0_1 -1755,2,35.0,0.0,9,111,1075.0,,,43,52,0.0,0.0,,1098.0,39.567521096374406,,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,118894,2,1,0,0,1,,600.0,,43,2.0,0.0,2.0,3.0,1.8,3,3,251.56019146851483,1075.0,42754.51002835572,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025681501185998448,23752.50557130873,6,3,6,6_1,6_2,6_0_0 -1756,2,52.0,0.0,6,111,520.0,,,0,68,0.0,0.0,,658.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,4,110380,2,1,0,0,2,,450.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,104.38106543818337,520.0,19594.757267464447,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033580410873093956,13063.171511642964,2,1,2_0,2_1_0,2_2_0,2_0_0 -1757,2,46.0,0.0,9,111,580.0,,,85,62,0.0,0.0,,712.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105460,2,2,0,0,2,,710.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,113.45792107478779,580.0,26956.367971205997,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026413053893630536,14975.75998400333,3,2,3_0,3_1_0,3_2_0,3_0_0 -1758,2,32.0,0.0,9,111,480.0,,,46,42,0.0,0.0,,565.0,146.2277953561663,,42,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,100404,2,1,0,0,2,,258.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,253.7977098950297,480.0,65832.43752982854,1,1,1,2,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00858239526288237,31348.77977610883,8,4,8,8_1,8_2,8_0_0 -1759,1,33.0,170.0,7,111,0.0,,,0,68,0.0,0.0,,698.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,131355,2,1,0,0,2,,212.0,167.0,32,1.0,0.0,4.0,3.0,1.6,2,2,118.86838326492999,0.0,13312.633569937778,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05243139881624958,8320.39598121111,1,1,1_1,1_1_1,1_2_1,1_0_0 -1760,2,39.0,0.0,9,111,300.0,,,0,42,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,3,90.0,1,2009.0,6,127056,2,1,0,0,1,,142.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,281.0250748056108,300.0,36838.936566927674,0,1,1,2,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008143557549631506,36838.936566927674,9,5,9,9_1,9_2,9_0_0 -1762,2,88.0,0.0,2,111,480.0,,,78,78,0.0,0.0,,656.0,302.77755273747374,,60,0,0,0,0,0,0,0,0,0,,1,,2,115023,2,1,0,0,2,,520.0,,41,0.0,6.0,5.0,2.0,1.5,4,2,91.07515177947117,480.0,18310.62023393401,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03582620313342927,12207.080155956006,2,1,2_0,2_1_0,2_2_0,2_0_1 -1763,2,29.0,0.0,9,221,0.0,,,0,63,0.0,0.0,,190.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2011.0,6,133182,2,1,0,0,2,,0.0,400.0,12,1.0,3.0,4.0,1.0,1.0,2,2,300.648896471942,0.0,15503.727260924745,0,4,2,3,55.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01225511754704766,15503.727260924745,3,2,3_0,3_1_0,3_1_0,3_0_0 -1764,2,73.0,0.0,1,211,900.0,,,86,86,0.0,0.0,,900.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,1,115229,1,1,0,0,2,,500.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,81.255346956633,900.0,54996.76301709878,5,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01636459948961333,36664.50867806585,9,5,9,9_1,9_2,9_1_0 -1765,1,40.0,577.0,5,211,900.0,,,0,85,0.0,0.0,,900.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,3,130789,1,1,0,0,2,,500.0,800.0,31,0.0,1.0,4.0,6.0,2.5,2,2,68.18874504644054,900.0,23961.27333808069,0,6,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03756060820731368,9584.509335232276,1,1,1_1,1_0_1,1_2_1,1_0_0 -1766,2,42.0,0.0,9,111,360.0,,,0,34,0.0,0.0,,410.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,113611,2,1,0,0,1,,400.0,,32,1.0,0.0,4.0,3.0,1.6,4,3,282.95916876376236,360.0,34205.0,0,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01198655167373191,21378.125,6,3,6,6_1,6_2,6_0_0 -1767,1,54.0,313.0,5,211,600.0,,,0,56,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,3,124233,1,2,0,0,2,,600.0,305.0,32,1.0,0.0,3.0,2.0,1.3,4,4,86.29636176633944,600.0,9371.0,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06402731832248426,7208.461538461538,1,1,1_1,1_1_1,1_2_1,1_0_0 -1768,2,63.0,0.0,9,111,600.0,,,77,22,0.0,0.0,,715.0,197.83760548187203,,10,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,127098,1,1,0,0,2,,300.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,258.6967117823583,600.0,38205.64612451987,5,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018714511401526135,25470.430749679916,7,4,7,7_1,7_2,7_0_0 -1769,2,53.0,0.0,7,211,1000.0,,,0,34,0.0,0.0,,1000.0,0.0,,41,0,0,0,0,0,0,0,0,2,45.0,1,,5,125144,2,1,0,0,2,,600.0,,32,1.0,0.0,5.0,3.0,2.0,2,2,114.94804101866816,1000.0,44776.64284471877,0,1,0,1,200.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022333072255280657,22388.321422359386,6,3,6,6_1,6_2,6_0_0 -1770,1,38.0,60.0,9,111,300.0,,,0,55,0.0,0.0,,438.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,114602,2,2,0,0,2,,200.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,282.95916876376236,300.0,21399.0,0,1,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020468246179728023,13374.375,3,2,3_1,3_1_1,3_2_1,3_0_0 -1771,2,81.0,0.0,6,211,780.0,,,78,56,0.0,0.0,,780.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,4,104208,2,1,0,0,2,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,81.255346956633,780.0,32735.763641574056,5,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023827151507454333,21823.842427716037,6,3,6,6_1,6_2,6_0_0 -1772,2,47.0,0.0,9,211,300.0,,,0,52,0.0,0.0,,300.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,126527,2,1,0,0,2,,200.0,,32,1.0,0.0,4.0,2.0,1.5,3,3,81.37431713243606,300.0,30219.1434353096,0,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009927481916958128,20146.095623539735,5,3,5,5_1,5_2,5_0_0 -1773,2,55.0,0.0,9,111,1000.0,,,38,37,0.0,129.39656310243222,,1235.0,189.2359704609211,,31,0,0,0,0,0,0,0,0,0,,1,2009.0,6,110945,2,1,0,0,1,,410.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,297.0989030000754,1000.0,93169.3212315694,4,1,1,2,103.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013255436271027956,62112.88082104627,10,5,10,10_1,10_2,10_0_0 -1774,2,53.0,0.0,9,111,400.0,,,52,33,0.0,0.0,,540.0,240.84578058662683,,41,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,130021,2,1,0,0,1,,480.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,297.0989030000754,400.0,59396.816904410676,4,1,1,2,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009091396275814585,39597.877936273784,9,5,9,9_1,9_2,9_0_0 -1775,2,59.0,0.0,6,111,865.0,,,54,47,0.0,0.0,,1005.0,240.84578058662683,,43,0,0,0,0,0,0,0,0,2,5.0,2,,4,127367,2,2,0,0,2,,520.0,440.0,43,2.0,2.0,3.0,2.0,1.5,1,1,153.11179908916102,865.0,65168.3002645705,1,1,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015421608296056478,43445.53350971366,10,5,10,10_0,10_2,10_0_0 -1776,0,50.0,0.0,2,111,630.0,,,0,22,0.0,0.0,,860.0,395.67521096374406,,41,0,0,0,0,0,0,0,0,0,,1,,2,122283,2,3,0,0,2,,460.0,,32,1.0,0.0,4.0,4.0,2.5,1,1,121.44236848864747,630.0,24510.335730411432,0,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035087238684084886,9804.134292164574,2,1,2_0,2_1_0,2_2_0,2_0_1 -1777,2,49.0,0.0,9,111,550.0,,,0,46,0.0,0.0,,550.0,0.0,,70,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,108243,2,1,0,0,1,,180.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,281.0250748056108,550.0,32113.42942820345,0,1,1,2,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01712679118340956,32113.42942820345,8,4,8,8_1,8_2,8_0_0 -1778,1,62.0,238.0,2,111,550.0,,,85,86,0.0,0.0,,850.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,0,,2,,2,129119,2,2,0,0,2,,600.0,298.0,41,0.0,3.0,3.0,2.0,1.5,1,1,116.76851841900854,550.0,22113.331604986393,6,7,2,3,87.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03843835090902048,14742.221069990928,3,2,3_1,3_0_1,3_2_1,3_0_1 -1779,2,85.0,0.0,5,111,390.0,,,86,78,0.0,0.0,,633.0,418.03946201821657,,10,0,0,0,0,0,0,0,0,0,,1,,3,116500,2,2,0,0,2,,260.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,105.82340789989861,390.0,17091.13502432225,6,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037036744435005806,11394.090016214834,2,1,2_0,2_1_0,2_2_0,2_0_0 -1780,2,50.0,0.0,6,111,600.0,,,0,54,0.0,0.0,,646.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,20.0,2,,4,118908,2,2,0,0,2,,480.0,302.0,32,1.0,0.0,3.0,2.0,1.5,1,1,153.11179908916102,600.0,46605.71663620728,0,1,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013860960556459554,31070.477757471523,8,4,8,8_0,8_2,8_0_0 -1781,2,85.0,0.0,2,111,250.0,,,0,78,0.0,0.0,,308.0,99.77896624303112,,60,0,0,0,0,0,0,0,0,0,,1,,2,124634,1,3,0,0,2,,300.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,99.55126588929039,250.0,10749.326996197718,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028652956609185543,10749.326996197718,2,1,2_0,2_1_0,2_2_0,2_0_1 -1783,2,69.0,0.0,9,211,378.0,,,0,77,0.0,0.0,,474.0,165.1513924022584,,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,126610,1,1,0,0,1,,148.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,181.90889776174745,378.0,18970.0,0,5,0,1,79.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024986821296784395,18970.0,5,3,5,5_1,5_2,5_0_0 -1784,0,56.0,0.0,2,111,1200.0,,,0,22,0.0,0.0,,1480.0,481.69156117325366,,70,0,0,0,0,0,0,0,0,1,1.0,1,,2,118781,2,3,0,0,2,,900.0,,22,2.0,2.0,7.0,2.0,1.5,2,2,128.34169506014834,1200.0,57557.63115395845,0,1,5,0,114.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02571335842577001,38371.754102638966,9,5,9,9_1,9_2,9_0_1 -1785,2,48.0,0.0,8,111,420.0,,,67,63,0.0,0.0,,696.0,474.81025315649293,,42,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,112133,2,1,0,0,2,,800.0,,43,2.0,0.0,4.0,4.0,2.3,4,4,114.65032365260424,420.0,42637.670543515036,1,1,0,1,132.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01632359345920829,18538.117627615233,4,2,4_0,4_1_0,4_2_0,4_0_0 -1787,2,64.0,0.0,5,211,500.0,,,0,78,0.0,0.0,,640.0,240.84578058662683,,44,0,0,0,0,0,0,0,0,0,,1,,3,106560,2,1,0,0,2,,364.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,103.10975280392017,500.0,10106.95224445327,0,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06332274898708799,10106.95224445327,2,1,2_0,2_1_0,2_2_0,2_0_0 -1788,2,54.0,0.0,9,111,520.0,,,85,21,0.0,0.0,,610.0,154.82943037711726,,12,0,0,0,0,0,0,0,0,0,,1,2010.0,6,123146,2,1,0,0,2,,680.0,,42,1.0,0.0,4.0,4.0,2.5,2,2,251.3653238623986,520.0,131254.85581261577,6,1,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004647447107563459,52501.94232504631,10,5,10,10_1,10_2,10_0_0 -1789,1,28.0,413.0,5,111,500.0,,,0,54,0.0,0.0,,592.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,2,5.0,1,,3,100512,2,2,0,0,2,,300.0,650.0,32,1.0,0.0,3.0,3.0,1.6,2,2,89.21805706914041,500.0,31774.288738320356,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018631416264749855,19858.93046145022,5,3,5,5_1,5_2,5_0_0 -1790,2,83.0,0.0,5,211,430.0,,,0,71,0.0,0.0,,706.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,3,133126,2,1,0,0,2,,1200.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,118.13612714348994,430.0,9082.0,0,5,0,1,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07773618145782867,9082.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -1791,2,96.0,0.0,5,111,600.0,,,77,78,0.0,0.0,,750.0,258.04905062852873,,43,0,0,0,0,0,0,0,0,0,,1,,3,104464,2,1,0,0,2,,1000.0,,41,0.0,12.0,4.0,2.0,1.5,2,2,104.278361747097,600.0,17920.707963985886,6,5,0,1,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04185102516637332,11947.138642657257,2,1,2_0,2_1_0,2_2_0,2_0_0 -1792,2,78.0,0.0,2,211,282.0,,,0,77,0.0,0.0,,378.0,165.1513924022584,,20,0,0,0,0,0,0,0,0,0,,1,,2,133421,1,1,0,0,2,,768.0,,11,0.0,7.0,4.0,1.0,1.0,2,2,103.10975280392017,282.0,17494.68026670822,0,5,0,1,81.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021606568067398243,17494.68026670822,4,2,4_0,4_1_0,4_2_0,4_0_1 -1793,2,80.0,0.0,2,211,396.0,,,86,75,0.0,0.0,,720.0,557.385949357622,,41,0,0,0,0,0,0,0,0,0,,1,,2,103217,1,1,0,0,2,,540.0,,41,1.0,5.0,6.0,3.0,2.0,2,2,121.48225024678992,396.0,31861.12026999128,5,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022598075456817485,15930.56013499564,3,2,3_0,3_1_0,3_2_0,3_0_1 -1794,2,47.0,0.0,9,111,150.0,,,0,35,0.0,0.0,,173.0,39.567521096374406,,12,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,103770,2,1,0,0,2,,110.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,221.8656335643617,150.0,52980.206345540704,0,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003265370445552469,52980.206345540704,10,5,10,10_1,10_2,10_0_0 -1795,2,75.0,0.0,8,111,552.0,,,74,77,0.0,0.0,,726.0,299.3368987290934,,12,0,0,0,0,0,0,0,0,0,,1,2003.0,6,122161,2,1,0,0,2,,400.0,,41,0.0,6.0,5.0,2.0,1.5,1,1,87.5800333471359,552.0,44187.70435263406,5,5,0,1,102.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016429909872806566,29458.469568422704,8,4,8,8_1,8_2,8_0_0 -1796,0,27.0,0.0,5,111,0.0,,,54,53,0.0,0.0,,215.0,0.0,,12,0,0,0,0,0,0,0,0,2,5.0,1,,3,127479,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,105.93824910978,0.0,60989.46048526927,1,1,5,0,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0035251992440878985,40659.640323512845,9,5,9,9_1,9_2,9_0_0 -1797,2,60.0,0.0,7,221,960.0,,,85,11,0.0,0.0,,1092.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,5,116078,1,2,0,0,2,,420.0,300.0,42,2.0,2.0,5.0,3.0,2.0,2,2,151.7017174629056,960.0,7436.24,6,1,2,3,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1468484072595828,3718.12,1,1,1_0,1_1_0,1_1_0,1_0_0 -1798,1,25.0,414.0,9,211,500.0,,,0,54,0.0,0.0,,500.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2009.0,6,117358,2,3,0,0,2,,500.0,436.0,32,1.0,0.0,4.0,3.0,1.6,2,2,229.21479927741126,500.0,12265.80001209178,0,4,2,3,87.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04076374957255896,7666.125007557363,1,1,1_1,1_0_1,1_2_1,1_0_0 -1799,2,43.0,0.0,5,111,844.0,,,0,67,0.0,0.0,,1012.0,289.01493670395223,,31,0,0,0,0,0,0,0,0,0,,1,,3,127577,2,1,0,0,2,,700.0,,22,2.0,0.0,4.0,4.0,2.3,4,2,106.36707784077231,844.0,68766.61390759307,0,4,0,1,194.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014716443670760079,29898.52778591003,8,4,8,8_1,8_2,8_0_0 -1801,2,40.0,0.0,8,120,360.0,,,0,52,0.0,0.0,,383.0,39.567521096374406,,33,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,121898,2,1,0,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,214.56679733481457,360.0,26264.008624258542,0,1,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014582693962651425,26264.008624258542,7,4,7,7_0,7_1,7_0_0 -1802,2,47.0,0.0,8,111,240.0,,,0,45,0.0,0.0,,290.0,86.01635020950958,,12,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,132431,2,2,0,0,2,,180.0,501.0,12,1.0,0.0,2.0,1.0,1.0,2,2,156.77893372447764,240.0,31723.804410218803,0,1,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009141400452796444,31723.804410218803,8,4,8,8_0,8_2,8_0_0 -1803,2,67.0,0.0,6,211,540.0,,,0,78,0.0,0.0,,628.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,1,,4,103162,1,3,0,0,2,,348.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,87.86195309988703,540.0,9659.419894315723,0,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.065014256225631,9659.419894315723,1,1,1_0,1_1_0,1_2_0,1_0_0 -1804,1,42.0,382.0,8,111,750.0,,,85,85,0.0,0.0,,1050.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,0,,2,2000.0,6,107720,2,1,0,0,2,,900.0,418.0,41,1.0,0.0,4.0,6.0,3.5,1,1,145.64093765031532,750.0,22313.229508196717,6,7,2,3,89.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04705728498935059,6375.208430913348,1,1,1_1,1_0_1,1_2_1,1_0_0 -1805,2,63.0,0.0,5,400,624.0,,,0,78,0.0,0.0,,762.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,3,129328,1,1,0,0,2,,324.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,116.36039160400408,624.0,9362.354700854701,0,5,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08138978113384618,9362.354700854701,1,1,1_0,1_1_0,1_0_0,1_0_0 -1806,2,61.0,0.0,9,111,180.0,,,0,77,0.0,0.0,,226.0,79.13504219274881,,12,0,0,0,0,0,0,0,0,0,,1,2010.0,6,120243,2,1,0,0,1,,230.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,300.023512413001,180.0,17533.055880997406,0,5,1,2,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012889937814259877,17533.055880997406,4,2,4_0,4_1_0,4_2_0,4_0_0 -1807,2,90.0,0.0,7,400,360.0,,,0,78,0.0,0.0,,452.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,1,,5,108789,1,2,0,0,2,,380.0,,11,0.0,6.0,4.0,1.0,1.0,2,2,121.42814261197954,360.0,9439.421910828027,0,5,0,1,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04788428828268685,9439.421910828027,1,1,1_0,1_1_0,1_1_0,1_0_0 -1808,2,27.0,0.0,8,111,480.0,,,0,55,0.0,0.0,,580.0,172.03270041901916,,12,0,0,0,0,0,0,0,0,3,30.0,2,1999.0,6,130936,1,1,0,0,2,,240.0,480.0,12,1.0,0.0,2.0,1.0,1.0,2,2,174.17296272224806,480.0,18906.58231387965,0,1,2,3,55.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03067714674027637,18906.58231387965,5,3,5,5_0,5_2,5_0_0 -1809,2,52.0,0.0,5,111,480.0,,,0,47,0.0,0.0,,630.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,109554,2,2,0,0,2,,600.0,470.0,22,2.0,0.0,3.0,3.0,1.8,1,1,99.70700542881691,480.0,27423.9073638541,0,1,2,3,76.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02297265636297938,15235.504091030056,3,2,3_0,3_0_0,3_2_0,3_0_0 -1810,1,43.0,332.0,9,111,300.0,,,0,43,0.0,0.0,,356.0,96.33831223465073,,41,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,129886,2,1,0,0,2,,800.0,342.0,32,1.0,0.0,3.0,3.0,2.0,2,2,98.21185806247662,300.0,23018.463290022948,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015465845635069113,11509.231645011474,2,1,2_1,2_0_1,2_2_1,2_0_0 -1811,1,39.0,273.0,7,111,600.0,,,0,47,0.0,0.0,,675.0,129.02452531426437,,70,0,0,0,0,0,0,0,0,0,,2,,5,110413,1,1,0,0,2,,900.0,467.0,32,1.0,0.0,3.0,3.0,1.8,1,1,86.3972464263171,600.0,19733.498200792223,0,4,2,3,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03420579529953292,10963.054555995679,2,1,2_1,2_0_1,2_2_1,2_0_0 -1812,2,73.0,0.0,7,300,540.0,,,0,77,0.0,0.0,,672.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,,5,103341,2,2,0,0,2,,480.0,,11,0.0,8.0,4.0,1.0,1.0,3,3,89.76897894460375,540.0,18300.19419699734,0,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03672092179821023,18300.19419699734,4,2,4_0,4_1_0,4_1_0,4_0_0 -1813,1,30.0,120.0,7,111,300.0,,,0,43,0.0,0.0,,300.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,5,101056,2,1,0,0,2,,360.0,478.0,32,1.0,0.0,3.0,2.0,1.3,4,4,94.2700622144679,300.0,5658.941377672118,0,1,2,3,71.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053013448978934126,4353.031828978552,1,1,1_1,1_0_1,1_2_1,1_0_0 -1814,2,67.0,0.0,5,120,288.0,,,0,77,0.0,0.0,,564.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,3,110464,2,1,0,0,2,,282.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,71.43542518109531,288.0,26452.13254773533,0,5,0,1,140.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021321532355934238,26452.13254773533,7,4,7,7_1,7_0,7_0_0 -1815,2,79.0,0.0,5,111,360.0,,,78,77,0.0,0.0,,510.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,2,,3,100903,2,1,0,0,2,,400.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,77.49075027426947,360.0,18924.167477851362,5,5,0,1,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026949666377498422,12616.111651900908,2,1,2_0,2_0_0,2_2_0,2_0_0 -1816,2,39.0,0.0,5,111,600.0,,,67,42,0.0,0.0,,650.0,86.01635020950958,,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,118483,2,1,0,0,2,,450.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,84.69395428891494,600.0,55861.29410902056,1,1,1,2,76.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011635963870286297,31034.0522827892,8,4,8,8_0,8_2,8_0_0 -1817,2,63.0,0.0,9,111,650.0,,,0,75,0.0,0.0,,820.0,292.4555907123326,,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,119884,2,1,0,0,2,,150.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,111.83337685436422,650.0,31069.430569351105,0,5,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026392501728335536,31069.430569351105,8,4,8,8_1,8_2,8_0_0 -1818,2,35.0,0.0,5,111,850.0,,,0,46,0.0,0.0,,875.0,43.00817510475479,,43,0,0,0,0,0,0,0,0,2,30.0,1,,3,100043,1,2,0,0,2,,0.0,533.0,32,1.0,0.0,3.0,2.0,1.3,1,1,93.95286710133813,850.0,23729.284011754517,0,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03687426892301347,18253.29539365732,4,2,4_0,4_1_0,4_2_0,4_0_0 -1819,2,74.0,0.0,5,111,600.0,,,75,74,0.0,0.0,,750.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,0,,1,,3,116521,2,1,0,0,2,,450.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,104.278361747097,600.0,61799.97530779941,5,5,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012135927179008871,41199.98353853294,9,5,9,9_1,9_2,9_0_0 -1820,2,83.0,0.0,9,300,0.0,,,0,71,0.0,0.0,,539.0,402.55651898050485,,12,0,0,0,0,0,0,0,0,0,,1,2009.0,6,121237,2,2,0,0,2,,299.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,98.38013463330704,0.0,10741.545921192686,0,5,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05017899694834169,10741.545921192686,2,1,2_0,2_1_0,2_1_0,2_0_0 -1821,1,65.0,192.0,9,111,300.0,,,0,77,0.0,0.0,,350.0,86.01635020950958,,60,0,0,0,0,0,0,0,0,0,,2,2004.0,6,117968,2,1,0,0,2,,150.0,410.0,11,0.0,3.0,2.0,1.0,1.0,2,2,118.90590599362822,300.0,16107.719727386948,0,5,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021728711817906598,16107.719727386948,4,2,4_1,4_0_1,4_2_1,4_0_0 -1822,2,42.0,0.0,8,111,540.0,,,56,69,0.0,0.0,,690.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,129435,2,2,0,0,2,,320.0,431.0,43,3.0,0.0,3.0,3.0,2.0,2,2,89.95117004598346,540.0,40053.41423342653,1,1,2,3,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01722699583058668,20026.707116713264,5,3,5,5_0,5_2,5_0_0 -1823,1,67.0,186.0,8,111,391.0,,,0,77,0.0,0.0,,541.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,2,1999.0,6,107152,2,1,0,0,2,,672.0,335.0,11,0.0,0.0,2.0,1.0,1.0,2,2,104.60185831267769,391.0,11830.112463066784,0,5,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04573075714106556,11830.112463066784,2,1,2_1,2_0_1,2_2_1,2_0_0 -1824,2,76.0,0.0,6,111,274.0,,,77,77,0.0,0.0,,466.0,330.3027848045168,,71,0,0,0,0,0,0,0,0,0,,1,,4,106440,2,1,0,0,2,,250.0,,41,0.0,3.0,4.0,2.0,1.5,4,3,79.44928369981572,274.0,24432.103675571587,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01907326549477316,16288.069117047724,4,2,4_0,4_1_0,4_2_0,4_0_0 -1825,1,46.0,359.0,7,111,480.0,,,0,67,0.0,0.0,,710.0,395.67521096374406,,20,0,0,0,0,0,0,0,0,2,10.0,2,,5,120367,2,1,0,0,2,,600.0,428.0,32,1.0,1.0,3.0,3.0,1.8,1,1,98.21185806247662,480.0,23884.350023766376,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029726578252852055,13269.083346536874,3,2,3_1,3_0_1,3_2_1,3_0_0 -1826,1,50.0,357.0,8,111,360.0,,,0,48,0.0,0.0,,510.0,258.04905062852873,,60,0,0,0,0,0,0,0,0,0,,8,1999.0,6,112272,2,2,0,0,2,,600.0,634.0,32,1.0,0.0,4.0,2.0,1.5,3,3,109.23283071036428,360.0,8999.092132112923,0,4,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.056672383448557455,5999.394754741948,1,1,1_1,1_0_1,1_2_1,1_0_0 -1827,2,92.0,0.0,1,111,400.0,,,0,77,0.0,0.0,,500.0,172.03270041901916,,42,0,0,0,0,0,0,0,0,0,,1,,1,106331,2,2,0,0,2,,350.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,99.6964590069803,400.0,8323.518744019355,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06007074836700065,8323.518744019355,1,1,1_0,1_1_0,1_2_0,1_1_0 -1828,1,49.0,285.0,8,111,606.0,,,0,55,0.0,0.0,,781.0,301.05722573328353,,71,0,0,0,0,0,0,0,0,2,10.0,2,1999.0,6,123331,2,1,0,0,2,,460.0,690.0,32,1.0,1.0,4.0,3.0,1.8,1,1,109.23283071036428,606.0,24686.084638222877,0,1,2,3,95.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03163725683702522,13714.491465679375,3,2,3_1,3_0_1,3_2_1,3_0_0 -1829,2,41.0,0.0,8,111,500.0,,,45,46,0.0,0.0,,698.0,340.62474682965797,,70,0,0,0,0,0,0,0,0,2,5.0,2,2003.0,6,116242,2,2,0,0,2,,500.0,700.0,43,2.0,0.0,4.0,4.0,2.3,1,1,110.79232453173103,500.0,33767.18072764098,1,1,2,3,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020670958752225188,14681.382925061298,3,2,3_0,3_0_0,3_2_0,3_0_0 -1831,1,39.0,199.0,2,111,960.0,,,0,46,0.0,0.0,,1008.0,82.5756962011292,,50,0,0,0,0,0,0,0,0,2,6.0,1,,2,116175,1,1,0,0,2,,420.0,568.0,32,1.0,0.0,5.0,2.0,1.3,2,2,161.3443001833365,960.0,20626.232416246927,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04886980712997376,15866.332627882251,3,2,3_1,3_1_1,3_2_1,3_0_1 -1832,2,51.0,0.0,7,111,654.0,,,22,42,0.0,0.0,,746.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,106278,2,1,0,0,2,,969.0,,43,2.0,0.0,8.0,5.0,2.8,3,3,98.63928969696023,654.0,49380.26185072865,1,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015107250792939893,17635.807803831663,4,2,4_0,4_1_0,4_2_0,4_0_0 -1833,1,49.0,310.0,8,111,420.0,,,0,56,0.0,0.0,,696.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,0,,2,2000.0,6,112665,2,1,0,0,2,,700.0,370.0,32,1.0,0.0,3.0,3.0,1.8,1,1,109.23283071036428,420.0,23247.48441410393,0,1,2,3,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02993872315826767,12915.269118946626,2,1,2_1,2_0_1,2_2_1,2_0_0 -1834,2,42.0,0.0,8,111,330.0,,,0,43,0.0,0.0,,353.0,39.567521096374406,,60,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,103955,1,3,0,0,2,,223.0,363.0,12,1.0,0.0,2.0,1.0,1.0,3,3,204.86563260774298,330.0,30820.044921487788,0,1,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011453584863333142,30820.044921487788,8,4,8,8_0,8_2,8_0_0 -1837,2,58.0,0.0,1,111,500.0,,,0,35,0.0,0.0,,569.0,118.70256328912323,,12,0,0,0,0,0,0,0,0,0,,1,,1,101984,2,2,0,0,2,,600.0,,12,1.0,3.0,2.0,1.0,1.0,2,2,90.05777410646897,500.0,10887.722895693034,0,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05226069816904369,10887.722895693034,2,1,2_0,2_1_0,2_2_0,2_1_0 -1838,1,41.0,255.0,7,111,200.0,,,0,85,0.0,0.0,,308.0,185.7953164525407,,43,0,0,0,0,0,0,0,0,0,,2,,5,132824,2,2,0,0,2,,600.0,121.0,11,0.0,0.0,1.0,1.0,1.0,2,2,169.1844934482373,200.0,14339.81481711458,0,7,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02147865951744382,14339.81481711458,3,2,3_1,3_0_1,3_2_1,3_0_0 -1839,2,76.0,0.0,2,111,1118.0,,,86,78,0.0,0.0,,1256.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,2,126636,2,2,0,0,2,,342.0,,41,1.0,7.0,4.0,3.0,2.0,1,1,91.84536796898146,1118.0,34084.377208929975,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03684972714334745,17042.188604464987,4,2,4_0,4_1_0,4_2_0,4_0_1 -1840,2,76.0,0.0,7,111,200.0,,,77,77,0.0,0.0,,332.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,2,,5,101994,2,1,0,0,2,,640.0,492.0,41,0.0,3.0,3.0,2.0,1.5,2,2,115.70875262408745,200.0,32826.87773649364,5,5,2,3,74.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010113663646753574,21884.585157662426,6,3,6,6_0,6_2,6_0_0 -1841,2,51.0,0.0,2,111,600.0,,,46,52,0.0,0.0,,669.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,109414,2,2,0,0,2,,700.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,104.0441763855755,600.0,44854.47685810428,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014914899177541638,24919.153810057935,7,4,7,7_0,7_2,7_0_1 -1842,1,68.0,220.0,6,111,500.0,,,78,77,0.0,0.0,,800.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,0,,8,,4,112740,2,1,0,0,2,,700.0,180.0,41,0.0,1.0,4.0,3.0,2.0,2,2,128.07459509529136,500.0,27429.763950045555,5,5,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029165398632556273,13714.881975022778,3,2,3_1,3_0_1,3_2_1,3_0_0 -1843,2,55.0,0.0,2,111,396.0,,,0,52,0.0,0.0,,444.0,82.5756962011292,,71,0,0,0,0,0,0,0,0,3,6.0,2,,2,114409,2,1,0,0,2,,370.0,290.0,32,1.0,2.0,3.0,2.0,1.5,1,1,88.5742382803468,396.0,24562.783330656286,0,1,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018076127368100547,16375.18888710419,4,2,4_0,4_0_0,4_2_0,4_0_1 -1844,1,44.0,447.0,7,111,720.0,,,0,67,0.0,0.0,,795.0,129.02452531426437,,50,0,0,0,0,0,0,0,0,3,30.0,2,,5,133017,1,2,0,0,2,,600.0,100.0,32,3.0,0.0,4.0,5.0,2.8,2,2,73.87476328017958,720.0,21472.079481580244,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03702482568965844,7668.599814850088,1,1,1_1,1_0_1,1_2_1,1_0_0 -1845,0,33.0,0.0,7,111,921.0,,,52,63,0.0,0.0,,993.0,123.8635443016938,,43,0,0,0,0,0,0,0,0,0,,1,,5,103539,2,2,0,0,2,,307.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,111.50027323622255,921.0,30117.997580470037,4,1,5,0,45.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03297031940277162,12549.165658529182,2,1,2_0,2_1_0,2_2_0,2_0_0 -1846,2,70.0,0.0,5,111,680.0,,,56,78,0.0,0.0,,930.0,430.0817510475479,,10,0,0,0,0,0,0,0,0,0,,1,,3,114741,1,2,0,0,2,,230.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,78.77945560155895,680.0,23782.640452726744,4,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03910415253716595,15855.093635151163,3,2,3_0,3_1_0,3_2_0,3_0_0 -1847,2,43.0,0.0,6,111,200.0,,,21,37,0.0,41.40690019277831,,390.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,1,,4,115016,2,1,0,0,2,,384.0,780.0,43,2.0,0.0,3.0,4.0,2.3,3,3,82.25483851892324,200.0,56630.62317811652,4,1,2,3,82.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006886733327538336,24622.010077441966,7,4,7,7_1,7_2,7_0_0 -1848,2,29.0,0.0,5,111,2800.0,,,0,63,0.0,0.0,,2800.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,3,113665,2,1,0,0,2,,800.0,,22,4.0,3.0,5.0,5.0,2.8,1,1,84.77954907351213,2800.0,29697.938842001007,0,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09428263742128913,10606.406729286075,2,1,2_0,2_1_0,2_2_0,2_0_0 -1849,1,33.0,253.0,7,111,0.0,,,0,62,0.0,0.0,,364.0,0.0,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,130530,2,1,0,0,2,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,146.26050022917173,0.0,15972.941941385685,0,1,3,4,35.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.022788538350401233,15972.941941385685,3,2,3_1,3_1_1,3_2_1,3_0_0 -1850,1,29.0,210.0,9,111,200.0,,,0,54,0.0,0.0,,266.0,113.54158227655265,,41,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,129727,1,1,0,0,2,,200.0,650.0,12,1.0,0.0,2.0,1.0,1.0,2,2,131.65757733483298,200.0,21155.124026795947,0,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012573785890504518,21155.124026795947,5,3,5,5_0,5_2,5_0_0 -1851,0,48.0,0.0,6,111,420.0,,,56,63,0.0,0.0,,612.0,330.3027848045168,,41,0,0,0,0,0,0,0,0,2,40.0,1,,4,115861,2,1,0,0,2,,220.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,103.90760701546638,420.0,26287.976777688044,4,1,5,0,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023280604862654774,13143.988388844022,2,1,2_0,2_1_0,2_2_0,2_0_0 -1852,2,41.0,0.0,9,111,984.0,,,54,47,0.0,0.0,,1080.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,2,50.0,2,2008.0,6,123951,2,1,0,0,2,,680.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,164.94962248013593,984.0,51996.5823916116,1,1,0,1,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02077059588005215,24760.277329338856,7,4,7,7_0,7_2,7_0_0 -1853,2,51.0,0.0,5,111,600.0,,,0,55,0.0,0.0,,850.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,3,60.0,2,,3,132647,2,3,0,0,2,,590.0,470.0,12,1.0,1.0,3.0,1.0,1.0,2,2,104.9478707801438,600.0,14740.0,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.057666214382632294,14740.0,3,2,3_0,3_0_0,3_2_0,3_0_0 -1854,1,41.0,468.0,2,111,720.0,,,81,85,0.0,0.0,,940.0,378.4719409218422,,43,0,0,0,0,0,0,0,0,0,,1,,2,101492,2,2,0,0,2,,751.0,600.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,83.66891644325035,720.0,19162.770148712745,4,6,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.049053450660062545,7370.296211043365,1,1,1_1,1_1_1,1_2_1,1_0_1 -1855,2,41.0,0.0,7,111,450.0,,,0,46,0.0,0.0,,519.0,118.70256328912323,,33,0,0,0,0,0,0,0,0,2,25.0,2,,5,128941,2,2,0,0,2,,308.0,883.0,32,1.0,0.0,3.0,2.0,1.5,1,1,104.30700985323749,450.0,30363.80091814116,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0170927217379402,20242.53394542744,5,3,5,5_0,5_2,5_0_0 -1856,0,81.0,0.0,7,111,282.0,,,0,86,0.0,0.0,,374.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,2,,5,104899,1,2,0,0,2,,246.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,149.3531729487499,282.0,11369.269572779878,0,5,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032895692868029514,11369.269572779878,2,1,2_0,2_0_0,2_2_0,2_0_0 -1857,2,84.0,0.0,5,111,2136.0,,,77,75,0.0,0.0,,2286.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,1,,3,123503,2,2,0,0,2,,1118.0,,41,4.0,1.0,5.0,6.0,3.5,3,2,88.96695931565563,2136.0,71770.80068555352,6,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03185139329872546,20505.943053015293,5,3,5,5_1,5_2,5_0_0 -1858,1,31.0,76.0,8,111,600.0,,,55,63,0.0,0.0,,672.0,123.8635443016938,,31,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,105192,2,1,0,0,2,,700.0,550.0,43,2.0,0.0,4.0,5.0,2.4,4,2,116.53154934376302,600.0,41693.018095598345,1,1,2,3,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0161178065463902,17372.090873165977,4,2,4_1,4_0_1,4_2_1,4_0_0 -1859,2,37.0,0.0,6,111,462.0,,,47,46,0.0,0.0,,562.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,2,30.0,2,,4,120197,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,180.77145173582787,462.0,79164.62306992267,1,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007099130624339736,37697.43955710603,9,5,9,9_0,9_2,9_0_0 -1860,2,51.0,0.0,1,111,700.0,,,0,63,0.0,0.0,,750.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,2,10.0,8,,1,127042,2,1,0,0,2,,500.0,532.0,22,2.0,0.0,3.0,2.0,1.5,4,4,124.43930626799427,700.0,32497.00619648398,0,1,2,3,84.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023079049050405955,21664.67079765599,6,3,6,6_0,6_2,6_1_0 -1861,2,45.0,0.0,8,111,400.0,,,0,52,0.0,0.0,,496.0,165.1513924022584,,12,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,113068,2,1,0,0,2,,800.0,338.0,32,1.0,0.0,3.0,4.0,1.9,3,2,127.36701104635945,400.0,32097.427553808222,0,1,2,3,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015452951772178756,16893.38292305696,4,2,4_0,4_0_0,4_2_0,4_0_0 -1862,0,62.0,0.0,6,111,540.0,,,0,52,0.0,0.0,,615.0,129.02452531426437,,60,0,0,0,0,0,0,0,0,2,5.0,8,,4,109974,2,1,0,0,2,,400.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,107.55784340646555,540.0,34859.0129735813,0,1,5,0,76.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017642496087485086,34859.0129735813,9,5,9,9_0,9_2,9_0_0 -1863,2,83.0,0.0,2,111,822.0,,,77,77,0.0,0.0,,972.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,2,105089,2,1,0,0,2,,459.0,,41,0.0,4.0,5.0,2.0,1.5,3,2,94.13225704532992,822.0,41762.559239455615,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02327443570751509,27841.706159637077,7,4,7,7_1,7_2,7_0_1 -1864,0,59.0,0.0,9,111,420.0,,,0,63,0.0,0.0,,495.0,129.02452531426437,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122307,2,1,0,0,2,,300.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,98.81286394474229,420.0,6573.323218900845,0,4,5,0,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0753043755062407,6573.323218900845,1,1,1_0,1_1_0,1_2_0,1_0_0 -1865,2,39.0,0.0,9,111,700.0,,,47,34,0.0,0.0,,700.0,0.0,,50,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,111306,2,1,0,0,2,,500.0,830.0,43,2.0,2.0,3.0,2.0,1.5,1,1,173.26275690952806,700.0,38910.63628851143,1,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01798993968666297,25940.424192340954,7,4,7,7_0,7_2,7_0_0 -1866,2,52.0,0.0,9,111,0.0,,,56,53,0.0,0.0,,732.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,2010.0,6,121240,2,1,0,0,2,,403.0,386.0,43,2.0,2.0,5.0,3.0,2.0,2,2,185.21976745729918,0.0,71392.58799801905,4,1,2,3,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0102531652168193,35696.293999009526,9,5,9,9_0,9_2,9_0_0 -1867,2,50.0,0.0,8,111,233.0,,,0,42,0.0,0.0,,509.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,120467,2,1,0,0,2,,240.0,,32,1.0,0.0,5.0,5.0,2.8,3,3,137.70063690336985,233.0,41909.84475255159,0,4,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01214511776422199,14967.801697339853,3,2,3_0,3_1_0,3_2_0,3_0_0 -1868,2,53.0,0.0,7,111,0.0,,,0,43,0.0,0.0,,456.0,0.0,,12,0,0,0,0,0,0,0,0,2,8.0,2,,5,117256,2,1,0,0,2,,427.0,700.0,32,1.0,1.0,3.0,2.0,1.3,2,2,118.18100356284391,0.0,51669.80250734713,0,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008825270813356788,39746.00192872856,9,5,9,9_0,9_2,9_0_0 -1869,0,28.0,0.0,6,111,360.0,,,42,42,0.0,0.0,,416.0,96.33831223465073,,43,0,0,0,0,0,0,0,0,2,20.0,2,,4,115577,2,1,0,0,1,,200.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,149.16950105247753,360.0,54329.19649020613,1,1,5,0,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007657024710000854,36219.46432680409,9,5,9,9_0,9_2,9_0_0 -1870,2,28.0,0.0,2,111,444.0,,,55,53,0.0,0.0,,582.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,124012,2,1,0,0,2,,0.0,600.0,43,2.0,1.0,3.0,3.0,1.8,2,2,121.04817186041286,444.0,48962.44441236284,1,1,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011886661439906522,27201.358006868246,7,4,7,7_0,7_2,7_0_1 -1871,2,29.0,0.0,7,111,0.0,,,55,45,0.0,0.0,,639.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,108073,2,1,0,0,2,,144.0,150.0,43,2.0,0.0,3.0,3.0,1.8,1,1,118.18100356284391,0.0,32024.799179164766,4,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019953286714619944,17791.55509953598,4,2,4_0,4_0_0,4_2_0,4_0_0 -1872,2,71.0,0.0,5,111,450.0,,,22,75,0.0,0.0,,533.0,142.7871413477859,,20,0,0,0,0,0,0,0,0,0,,2,,3,115690,2,1,0,0,2,,247.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,183.8235001662293,450.0,61464.34404890357,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008671694268402558,40976.22936593572,9,5,9,9_0,9_2,9_0_0 -1873,2,49.0,0.0,6,111,780.0,,,37,54,0.0,0.0,,930.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,2,20.0,2,,4,127586,2,1,0,0,2,,520.0,740.0,43,4.0,0.0,3.0,5.0,2.8,2,2,84.17641364280776,780.0,80339.95463840009,1,1,2,3,84.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011575809373876443,28692.840942285748,8,4,8,8_0,8_2,8_0_0 -1874,0,78.0,0.0,2,111,400.0,,,77,78,0.0,0.0,,676.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,2,121927,2,2,0,0,2,,730.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,88.065537626031,400.0,18088.988941987085,5,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0373708006659736,12059.325961324723,2,1,2_0,2_1_0,2_2_0,2_0_1 -1875,2,74.0,0.0,7,111,280.0,,,72,77,0.0,0.0,,560.0,481.69156117325366,,50,0,0,0,0,0,0,0,0,0,,1,,5,121308,2,2,0,0,2,,310.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,84.20795418504652,280.0,13838.212964967655,5,5,0,1,106.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040467652970631166,9225.475309978438,1,1,1_0,1_1_0,1_2_0,1_0_0 -1876,2,71.0,0.0,2,111,534.0,,,77,78,0.0,0.0,,884.0,602.1144514665671,,20,0,0,0,0,0,0,0,0,0,,1,,2,109267,2,1,0,0,2,,270.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,110.82241601418218,534.0,29316.390931117498,5,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03015377991366904,19544.260620744997,5,3,5,5_1,5_2,5_0_1 -1877,0,81.0,0.0,2,111,760.0,,,0,86,0.0,0.0,,904.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,0,,1,,2,103309,2,2,0,0,2,,600.0,,21,1.0,6.0,4.0,2.0,1.5,1,1,99.55545223129934,760.0,30702.949611859436,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029443425189702867,20468.633074572957,5,3,5,5_1,5_2,5_0_1 -1878,2,66.0,0.0,2,111,300.0,,,0,77,0.0,0.0,,440.0,240.84578058662683,,44,0,0,0,0,0,0,0,0,0,,2,,2,108813,2,1,0,0,2,,0.0,830.0,11,0.0,0.0,5.0,1.0,1.0,2,2,137.24745535740155,300.0,30707.0,0,5,2,3,156.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01432898036278373,30707.0,8,4,8,8_0,8_2,8_0_1 -1879,0,54.0,0.0,2,111,273.0,,,0,78,0.0,0.0,,435.0,278.692974678811,,20,0,0,0,0,0,0,0,0,0,,1,,2,126201,2,1,0,0,2,,389.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,111.13949576540615,273.0,12696.159484784046,0,7,5,0,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034262329527392436,12696.159484784046,2,1,2_0,2_1_0,2_2_0,2_0_1 -1880,2,33.0,0.0,5,111,400.0,,,0,37,0.0,0.0,,423.0,39.567521096374406,,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,105469,2,1,0,0,2,,500.0,186.0,12,1.0,0.0,2.0,1.0,1.0,2,2,204.86563260774298,400.0,40639.0826412625,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010408699520458933,40639.0826412625,9,5,9,9_0,9_2,9_0_0 -1881,2,82.0,0.0,2,111,180.0,,,0,77,0.0,0.0,,272.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,0,,1,,2,127049,2,2,0,0,2,,230.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,93.20712841238112,180.0,12382.51193003715,0,5,0,1,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021966463794812912,12382.51193003715,2,1,2_0,2_1_0,2_2_0,2_0_1 -1882,2,91.0,0.0,2,111,320.0,,,0,71,0.0,0.0,,410.0,154.82943037711726,,44,0,0,0,0,0,0,0,0,0,,1,,2,105207,2,1,0,0,2,,320.0,,21,1.0,5.0,3.0,2.0,1.5,3,3,88.57414691219984,320.0,13725.454980158445,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02987150521368487,9150.30332010563,1,1,1_0,1_1_0,1_2_0,1_0_1 -1883,2,42.0,0.0,9,111,540.0,,,0,37,0.0,0.0,,612.0,123.8635443016938,,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,105503,2,1,0,0,2,,400.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,110.02895821129914,540.0,63420.32622906862,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009649903057728055,63420.32622906862,10,5,10,10_0,10_2,10_0_0 -1884,2,72.0,0.0,5,111,1252.0,,,78,75,0.0,0.0,,1804.0,949.6205063129859,,71,0,0,0,0,0,0,0,0,0,,1,,3,130633,2,1,0,0,2,,1252.0,,41,0.0,12.0,9.0,2.0,1.5,3,3,147.20221893520687,1252.0,41890.25437947974,5,5,0,1,186.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04306490917094319,27926.836252986493,7,4,7,7_1,7_2,7_0_0 -1885,2,64.0,0.0,2,111,290.0,,,0,75,0.0,0.0,,379.0,153.10910337292705,,20,0,0,0,0,0,0,0,0,0,,1,,2,133626,2,2,0,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,139.20949376660874,290.0,34782.63086545475,0,5,0,1,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010896243054932727,34782.63086545475,9,5,9,9_1,9_2,9_0_1 -1886,2,49.0,0.0,2,111,733.2,,,22,22,0.0,0.0,,983.0,430.0817510475479,,33,0,0,0,0,0,0,0,0,0,,1,,2,133671,2,2,0,0,2,,775.0,2392.0,43,2.0,1.0,4.0,4.0,2.5,3,3,98.54301257544587,733.2,16894.52879581152,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058184517122709264,6757.811518324607,1,1,1_0,1_1_0,1_2_0,1_0_1 -1887,2,77.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,470.0,395.67521096374406,,71,0,0,0,0,0,0,0,0,0,,1,,2,130239,2,3,0,0,2,,652.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,87.29388650547807,240.0,16428.976770509053,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028607989807598773,16428.976770509053,4,2,4_0,4_1_0,4_2_0,4_0_1 -1888,2,86.0,0.0,2,111,360.0,,,0,86,0.0,0.0,,705.0,593.5128164456162,,41,0,0,0,0,0,0,0,0,0,,1,,2,108345,2,3,0,0,2,,800.0,,21,1.0,5.0,4.0,2.0,1.5,2,2,77.01468311682488,360.0,34270.49506015279,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020571631625471386,22846.996706768525,6,3,6,6_1,6_2,6_0_1 -1889,2,45.0,0.0,2,111,840.0,,,0,55,0.0,0.0,,1075.0,404.27684598469506,,71,0,0,0,0,0,0,0,0,0,,1,,2,121003,2,2,0,0,2,,600.0,,32,2.0,9.0,7.0,4.0,2.5,1,1,66.80369810149978,840.0,19890.193843138888,0,4,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05404673320319705,7956.077537255555,1,1,1_0,1_1_0,1_2_0,1_0_1 -1890,2,63.0,0.0,5,111,240.0,,,0,77,0.0,0.0,,288.0,82.5756962011292,,42,0,0,0,0,0,0,0,0,0,,2,,3,110467,2,1,0,0,2,,240.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,122.74251460469422,240.0,22474.452380630446,0,5,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01281455027790631,22474.452380630446,6,3,6,6_0,6_2,6_0_0 -1891,1,39.0,65.0,5,111,408.0,,,0,55,0.0,0.0,,454.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,30.0,2,,3,124639,2,2,0,0,2,,504.0,178.0,12,1.0,1.0,2.0,1.0,1.0,3,2,123.45014927643113,408.0,17582.842323651454,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025820626247060444,17582.842323651454,4,2,4_1,4_0_1,4_2_1,4_0_0 -1892,2,49.0,0.0,9,111,411.0,,,0,54,0.0,0.0,,457.0,79.13504219274881,,70,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,106798,2,2,0,0,2,,630.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,140.15972277673126,411.0,53324.0,0,1,1,2,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0085702497937139,35549.333333333336,9,5,9,9_1,9_2,9_0_0 -1893,2,61.0,0.0,7,111,60.0,,,77,75,0.0,0.0,,60.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,104947,2,1,0,0,2,,420.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,117.7030889804762,60.0,82517.59160925043,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0007271176827860042,55011.72773950029,10,5,10,10_1,10_2,10_0_0 -1894,2,61.0,0.0,9,111,960.0,,,0,74,0.0,0.0,,983.0,39.567521096374406,,20,0,0,0,0,0,0,0,0,0,,2,2008.0,6,117663,2,1,0,0,1,,0.0,750.0,31,0.0,2.0,3.0,2.0,1.5,1,1,96.6034587834347,960.0,62942.11858117598,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015617523244506494,41961.412387450655,9,5,9,9_0,9_2,9_0_0 -1895,2,50.0,0.0,7,111,570.0,,,0,34,0.0,0.0,,714.0,247.7270886033876,,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,122795,2,1,0,0,2,,270.0,,32,1.0,1.0,4.0,2.0,1.3,2,2,146.35668520938,570.0,63171.0,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011302654699149926,48593.07692307692,10,5,10,10_1,10_2,10_0_0 -1896,2,56.0,0.0,7,111,500.0,,,0,43,0.0,0.0,,644.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,116637,2,1,0,0,2,,360.0,,32,2.0,2.0,5.0,2.0,1.5,3,2,133.09629105838334,500.0,49805.26752730984,0,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012930359216459865,33203.51168487323,8,4,8,8_1,8_2,8_0_0 -1897,1,46.0,229.0,6,111,820.0,,,52,21,0.0,0.0,,1108.0,495.4541772067752,,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,116130,2,1,0,0,2,,0.0,750.0,43,2.0,2.0,5.0,5.0,2.8,1,1,98.40823861532668,820.0,31822.298556378544,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0348183522330102,11365.106627278052,2,1,2_1,2_1_1,2_2_1,2_0_0 -1898,2,84.0,0.0,1,111,624.0,,,0,86,0.0,0.0,,720.0,165.1513924022584,,71,0,0,0,0,0,0,0,0,0,,1,,1,107472,2,2,0,0,2,,384.0,,11,0.0,9.0,4.0,1.0,1.0,2,2,87.29388650547807,624.0,10664.2319391635,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06751541077757886,10664.2319391635,2,1,2_0,2_1_0,2_2_0,2_1_0 -1899,2,50.0,0.0,7,111,900.0,,,0,54,0.0,0.0,,969.0,118.70256328912323,,70,0,0,0,0,0,0,0,0,2,10.0,1,,5,101850,2,2,0,0,2,,480.0,457.0,22,2.0,1.0,3.0,2.0,1.5,2,2,99.17636451446427,900.0,23255.648311702294,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04166729677935476,15503.765541134862,3,2,3_0,3_1_0,3_2_0,3_0_0 -1900,2,68.0,0.0,6,111,150.0,,,77,75,0.0,0.0,,150.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,111728,2,1,0,0,2,,560.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,78.88756553567866,150.0,44420.939442317285,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003376785855571159,29613.959628211524,8,4,8,8_1,8_2,8_0_0 -1901,2,59.0,0.0,7,111,646.0,,,77,21,0.0,0.0,,922.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,5,131382,2,2,0,0,2,,396.0,,42,1.0,6.0,6.0,2.0,1.5,2,2,83.62340541904324,646.0,16389.546232429027,6,1,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05625537076650072,10926.364154952686,2,1,2_0,2_1_0,2_2_0,2_0_0 -1902,2,54.0,0.0,8,111,900.0,,,63,46,0.0,0.0,,1068.0,289.01493670395223,,50,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,125718,2,1,0,0,2,,540.0,,43,3.0,0.0,3.0,3.0,2.0,2,2,90.86452220363346,900.0,73853.58928094075,4,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014461043943812988,36926.794640470376,9,5,9,9_1,9_2,9_0_0 -1903,2,83.0,0.0,7,111,452.0,,,0,75,0.0,0.0,,590.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,5,101404,2,2,0,0,2,,310.0,,21,1.0,0.0,4.0,2.0,1.5,1,1,87.4216980208191,452.0,16866.28334003502,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03498103216370933,11244.18889335668,2,1,2_0,2_1_0,2_2_0,2_0_0 -1904,0,51.0,0.0,6,111,756.0,,,56,65,0.0,0.0,,926.0,292.4555907123326,,50,0,0,0,0,0,0,0,0,0,,1,,4,110286,2,1,0,0,2,,180.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,120.33442976484018,756.0,22919.0,4,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04040315895108862,15279.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0 -1905,2,64.0,0.0,7,111,647.0,,,0,74,0.0,0.0,,695.0,82.5756962011292,,50,0,0,0,0,0,0,0,0,0,,1,,5,104541,2,1,0,0,2,,328.0,800.0,21,1.0,0.0,4.0,2.0,1.5,2,2,121.4197123667801,647.0,49482.794829503495,0,5,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014045285889664723,32988.529886335666,8,4,8,8_1,8_2,8_0_0 -1906,2,53.0,0.0,8,111,1800.0,,,33,34,0.0,0.0,,1944.0,247.7270886033876,,31,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,126934,2,1,0,0,2,,450.0,,43,2.0,0.0,6.0,5.0,3.0,2,2,140.513181214787,1800.0,104569.67040335036,1,1,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018590476497645298,34856.556801116785,9,5,9,9_1,9_2,9_0_0 -1907,2,53.0,0.0,8,111,720.0,,,0,52,0.0,0.0,,1008.0,495.4541772067752,,50,0,0,0,0,0,0,0,0,3,15.0,1,2000.0,6,125890,2,2,0,0,2,,452.0,,32,4.0,0.0,4.0,5.0,3.0,3,3,69.76385346174737,720.0,22397.0,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0450060275929812,7465.666666666667,1,1,1_0,1_1_0,1_2_0,1_0_0 -1908,2,64.0,0.0,8,111,732.0,,,0,77,0.0,0.0,,870.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,2002.0,6,101220,2,1,0,0,2,,558.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,96.79278250254946,732.0,15127.0,0,5,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05751305612480994,15127.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -1909,2,38.0,0.0,9,111,0.0,,,42,21,0.0,0.0,,293.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,122005,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,83.63909438090892,0.0,78333.82297222358,1,1,1,2,116.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037404021517486127,37301.82046296361,9,5,9,9_1,9_2,9_0_0 -1910,2,63.0,0.0,7,111,510.0,,,75,74,0.0,0.0,,594.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,,5,125285,2,2,0,0,2,,580.0,,41,0.0,0.0,4.0,2.0,1.5,4,3,116.88476529525157,510.0,63193.59994437965,5,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009399686052429579,42129.066629586436,9,5,9,9_1,9_2,9_0_0 -1911,2,51.0,0.0,7,111,800.0,,,0,63,0.0,0.0,,944.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,121562,2,3,0,0,2,,350.0,,12,1.0,2.0,3.0,1.0,1.0,3,3,111.84615415970612,800.0,26012.56795277286,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03629015027327867,26012.56795277286,7,4,7,7_1,7_2,7_0_0 -1912,1,40.0,270.0,7,111,0.0,,,0,85,0.0,0.0,,115.0,0.0,,43,0,0,0,0,0,0,0,0,0,,8,,5,111177,2,1,0,0,2,,0.0,450.0,11,0.0,0.0,1.0,1.0,1.0,2,2,163.37723860081482,0.0,11746.678436571015,0,7,2,3,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00979000154136932,11746.678436571015,2,1,2_1,2_0_1,2_2_1,2_0_0 -1913,2,29.0,0.0,7,111,0.0,,,0,42,0.0,0.0,,300.0,0.0,,31,0,0,0,0,0,0,0,0,2,40.0,2,,5,122463,2,1,0,0,2,,0.0,650.0,32,1.0,0.0,3.0,2.0,1.3,3,2,102.48229643237781,0.0,26039.20135693257,0,1,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011521090677388584,20030.15488994813,5,3,5,5_0,5_2,5_0_0 -1914,2,29.0,0.0,6,111,1200.0,,,47,47,0.0,0.0,,1200.0,0.0,,12,0,0,0,0,0,0,0,0,2,40.0,8,,4,103183,2,2,0,0,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,99.34133854143805,1200.0,82238.51801403542,1,1,1,2,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01459170263495263,39161.19905430258,9,5,9,9_0,9_2,9_0_0 -1915,2,75.0,0.0,6,111,246.0,,,0,77,0.0,0.0,,396.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,8,,4,110289,2,2,0,0,2,,250.0,188.0,11,0.0,3.0,3.0,1.0,1.0,3,3,109.7581262214712,246.0,14740.0,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026865671641791045,14740.0,3,2,3_0,3_0_0,3_2_0,3_0_0 -1916,1,43.0,254.0,5,111,568.0,,,0,54,0.0,0.0,,856.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,0,,2,,3,110578,2,3,0,0,2,,768.0,250.0,32,2.0,0.0,4.0,3.0,2.0,2,2,102.65701305289333,568.0,26844.336490148406,0,4,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03188754545355007,13422.168245074203,3,2,3_1,3_0_1,3_2_1,3_0_0 -1917,1,41.0,106.0,5,111,484.0,,,21,21,0.0,0.0,,760.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,121011,2,2,0,0,2,,473.0,248.0,43,2.0,2.0,4.0,4.0,2.3,3,3,110.69315581875449,484.0,20915.08413029808,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036337410610701115,9093.514839260035,1,1,1_1,1_0_1,1_2_1,1_0_0 -1918,2,63.0,0.0,6,111,226.0,,,0,77,0.0,0.0,,394.0,289.01493670395223,,70,0,0,0,0,0,0,0,0,0,,1,,4,132874,2,2,0,0,2,,496.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,120.17214816912062,226.0,34317.2393877288,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011481109991058518,34317.2393877288,9,5,9,9_1,9_2,9_0_0 -1919,2,71.0,0.0,6,111,744.0,,,77,75,0.0,0.0,,744.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,115302,2,2,0,0,2,,512.0,,41,0.0,3.0,4.0,2.0,1.5,5,4,83.40809902514498,744.0,5110.0,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14559686888454013,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0 -1920,1,58.0,245.0,6,111,550.0,,,0,46,0.0,0.0,,574.0,41.2878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,4,113260,2,1,0,0,2,,400.0,650.0,22,2.0,2.0,4.0,2.0,1.5,2,2,122.41994980932007,550.0,24888.0,0,4,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023063323690131792,16592.0,4,2,4_1,4_1_1,4_2_1,4_0_0 -1921,2,73.0,0.0,6,111,600.0,,,0,72,0.0,0.0,,876.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,4,130279,2,2,0,0,2,,670.0,,21,0.0,7.0,4.0,2.0,1.5,5,2,123.28653697966733,600.0,5448.7588235294115,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16077055864854273,3632.505882352941,1,1,1_0,1_1_0,1_2_0,1_0_0 -1922,2,66.0,0.0,7,111,576.0,,,0,77,0.0,0.0,,760.0,316.54016877099525,,31,0,0,0,0,0,0,0,0,0,,1,,5,124263,2,2,0,0,2,,252.0,,11,0.0,8.0,4.0,1.0,1.0,2,2,102.59037127442791,576.0,10119.592625174884,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07510183741085782,10119.592625174884,2,1,2_0,2_1_0,2_2_0,2_0_0 -1923,1,91.0,72.0,9,111,579.0,,,0,77,0.0,0.0,,717.0,237.40512657824647,,42,0,0,0,0,0,0,0,0,0,,2,2010.0,6,102986,2,2,0,0,2,,280.0,341.0,11,0.0,4.0,2.0,1.0,1.0,2,2,143.16250585251873,579.0,18149.760226298768,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03950465411444259,18149.760226298768,4,2,4_1,4_0_1,4_2_1,4_0_0 -1924,1,27.0,179.0,9,111,300.0,,,0,55,0.0,0.0,,348.0,82.5756962011292,,10,0,0,0,0,0,0,0,0,0,,2,2008.0,6,112040,2,1,0,0,2,,265.0,375.0,32,1.0,0.0,3.0,2.0,1.3,2,2,93.49906059890981,300.0,17841.465045922883,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01950512466909351,13724.203881479141,3,2,3_1,3_0_1,3_2_1,3_0_0 -1925,2,36.0,0.0,6,111,0.0,,,0,43,0.0,0.0,,255.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,,4,101811,2,2,0,0,2,,284.0,600.0,12,1.0,0.0,3.0,1.0,1.0,2,2,99.25148889795472,0.0,15000.830721003136,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01699905856833425,15000.830721003136,3,2,3_0,3_1_0,3_2_0,3_0_0 -1926,2,74.0,0.0,7,111,200.0,,,75,75,0.0,0.0,,355.0,266.6506856494797,,50,0,0,0,0,0,0,0,0,0,,1,,5,110570,2,1,0,0,2,,343.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,86.09716238276934,200.0,67391.70805891995,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005267710378992424,44927.8053726133,10,5,10,10_1,10_2,10_0_0 -1927,2,69.0,0.0,2,111,261.0,,,72,77,0.0,0.0,,537.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,2,113321,2,2,0,0,2,,554.0,,41,0.0,6.0,5.0,2.0,1.5,1,1,77.12744431633972,261.0,15870.83739211028,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033835643749141664,10580.558261406853,2,1,2_0,2_1_0,2_2_0,2_0_1 -1928,2,62.0,0.0,8,111,600.0,,,0,22,0.0,0.0,,738.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113150,2,3,0,0,2,,192.0,,12,1.0,6.0,4.0,1.0,1.0,2,2,104.67610165110239,600.0,8857.38206928953,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0833203303444261,8857.38206928953,1,1,1_0,1_1_0,1_2_0,1_0_0 -1929,2,57.0,0.0,7,111,300.0,,,0,55,0.0,0.0,,386.0,147.94812236035648,,50,0,0,0,0,0,0,0,0,0,,1,,5,108366,2,1,0,0,2,,70.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,102.44038298652185,300.0,39630.59491669551,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00973994967300848,39630.59491669551,9,5,9,9_1,9_2,9_0_0 -1930,2,65.0,0.0,6,111,331.0,,,78,78,0.0,0.0,,423.0,158.27008438549763,,60,0,0,0,0,0,0,0,0,0,,1,,4,133139,2,1,0,0,2,,261.0,686.0,41,0.0,3.0,5.0,2.0,1.5,3,3,104.67610165110239,331.0,22788.72660192162,5,5,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01856180941520143,15192.484401281079,3,2,3_0,3_1_0,3_2_0,3_0_0 -1931,2,64.0,0.0,9,111,0.0,,,78,77,0.0,0.0,,787.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2012.0,6,102396,2,1,0,0,2,,364.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,143.08632100489532,0.0,39781.17455029274,5,5,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019783226837735708,26520.783033528493,7,4,7,7_1,7_2,7_0_0 -1932,0,60.0,0.0,6,111,198.0,,,0,75,0.0,0.0,,482.0,488.57286919001444,,31,0,0,0,0,0,0,0,0,0,,1,,4,119535,2,3,0,0,2,,220.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,134.01828268952252,198.0,23685.420684225,0,7,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02035007131289935,23685.420684225,6,3,6,6_1,6_2,6_0_0 -1933,2,81.0,0.0,1,111,612.0,,,0,77,0.0,0.0,,658.0,79.13504219274881,,31,0,0,0,0,0,0,0,0,0,,1,,1,125487,2,2,0,0,2,,588.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,72.45661579469035,612.0,15997.894897770106,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04113041148255803,15997.894897770106,3,2,3_0,3_1_0,3_2_0,3_1_0 -1934,2,67.0,0.0,2,111,413.0,,,77,77,0.0,0.0,,597.0,316.54016877099525,,41,0,0,0,0,0,0,0,0,0,,1,,2,104470,2,2,0,0,2,,109.0,,41,1.0,2.0,4.0,3.0,2.0,2,2,87.4216980208191,413.0,43634.41510437807,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013681860947875976,21817.207552189037,6,3,6,6_1,6_2,6_0_1 -1935,2,80.0,0.0,2,111,960.0,,,72,75,0.0,0.0,,1104.0,247.7270886033876,,20,0,0,0,0,0,0,0,0,0,,1,,2,130999,2,1,0,0,2,,600.0,,41,1.0,1.0,6.0,3.0,2.0,2,2,105.18358171840448,960.0,36298.86070144273,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03041417770878193,18149.430350721366,4,2,4_0,4_1_0,4_2_0,4_0_1 -1936,2,50.0,0.0,9,111,720.0,,,0,63,0.0,0.0,,744.0,41.2878481005646,,33,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,112834,2,1,0,0,2,,120.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,111.0265873224473,720.0,37378.69797428843,0,1,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019904385126303034,37378.69797428843,9,5,9,9_1,9_2,9_0_0 -1937,2,52.0,0.0,8,111,480.0,,,42,52,0.0,0.0,,768.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,114756,2,1,0,0,2,,320.0,,43,2.0,2.0,4.0,4.0,2.3,1,1,136.99151854196398,480.0,39736.5407971127,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019327298868848788,17276.75686830987,4,2,4_0,4_1_0,4_2_0,4_0_0 -1938,2,38.0,0.0,6,111,350.0,,,21,21,0.0,0.0,,419.0,118.70256328912323,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,108060,2,1,0,0,2,,420.0,650.0,43,2.0,1.0,3.0,4.0,2.1,1,1,127.03041474588963,350.0,45035.61175070663,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009303748382932218,21445.529405098394,6,3,6,6_1,6_2,6_0_0 -1939,2,53.0,0.0,9,111,1200.0,,,11,52,0.0,0.0,,1272.0,123.8635443016938,,12,0,0,0,0,0,0,0,0,2,10.0,1,2013.0,6,127718,2,3,0,0,2,,270.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,163.28144496108484,1200.0,45687.003425403316,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027841615878285653,25381.66856966851,7,4,7,7_1,7_2,7_0_0 -1940,0,83.0,0.0,1,111,293.0,,,71,71,0.0,0.0,,431.0,237.40512657824647,,42,0,0,0,0,0,0,0,0,0,,1,,1,113085,2,3,0,0,2,,113.0,,41,0.0,11.0,2.0,2.0,1.5,2,2,84.081071519862,293.0,17793.113434901392,5,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024222854621641914,11862.075623267594,2,1,2_0,2_1_0,2_2_0,2_1_0 -1941,2,76.0,0.0,6,111,480.0,,,0,72,0.0,0.0,,816.0,578.0298734079045,,71,0,0,0,0,0,0,0,0,0,,1,,4,112595,2,2,0,0,2,,160.0,,11,0.0,4.0,8.0,1.0,1.0,2,2,116.35035977449763,480.0,5624.937522867969,0,5,0,1,260.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14506827794665864,5624.937522867969,1,1,1_0,1_1_0,1_2_0,1_0_0 -1942,2,53.0,0.0,9,111,1200.0,,,0,52,0.0,0.0,,1338.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,3,30.0,1,2005.0,6,127707,2,1,0,0,2,,800.0,,22,5.0,0.0,4.0,5.0,3.0,4,2,78.88756553567866,1200.0,80096.61459180324,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016704825875835775,26698.87153060108,7,4,7,7_1,7_2,7_0_0 -1943,0,81.0,0.0,7,111,240.0,,,77,77,0.0,310.55175144583734,,816.0,474.81025315649293,,42,0,0,0,0,0,0,0,0,0,,1,,5,111213,2,1,0,0,2,,80.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,72.88563675669825,240.0,24693.170195655122,5,5,5,0,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033045574688647265,16462.11346377008,4,2,4_0,4_1_0,4_2_0,4_0_0 -1944,2,55.0,0.0,9,111,360.0,,,52,53,0.0,25.879312620486445,,454.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,111812,2,1,0,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,72.88563675669825,360.0,84428.77538487621,1,1,1,2,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005377313575026997,56285.85025658414,10,5,10,10_1,10_2,10_0_0 -1945,2,64.0,0.0,6,111,588.0,,,77,75,0.0,0.0,,726.0,237.40512657824647,,33,0,0,0,0,0,0,0,0,0,,1,,4,109038,2,2,0,0,2,,216.0,,41,0.0,4.0,4.0,2.0,1.5,3,2,84.45406376536668,588.0,43026.0,6,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016873518337749267,28684.0,8,4,8,8_1,8_2,8_0_0 -1946,2,70.0,0.0,5,111,528.0,,,0,77,0.0,0.0,,804.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,0,,1,,3,119489,2,1,0,0,1,,546.0,,21,0.0,1.0,5.0,2.0,1.5,4,3,64.8420393998452,528.0,14415.0,0,5,0,1,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055775234131113426,9610.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -1947,2,44.0,0.0,6,111,120.0,,,63,43,0.0,77.63793786145933,,333.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,4,106558,1,1,0,0,2,,143.0,,43,2.0,4.0,3.0,4.0,2.1,5,5,70.01022994040224,120.0,23362.73892607835,4,1,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01425346578813553,11125.113774323023,2,1,2_0,2_1_0,2_2_0,2_0_0 -1948,2,80.0,0.0,2,111,420.0,,,0,75,0.0,155.27587572291867,,846.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,2,113082,2,1,0,0,2,,90.0,,21,1.0,6.0,6.0,2.0,1.5,4,3,71.58132570423342,420.0,51878.49352986238,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016307335514918607,34585.66235324159,9,5,9,9_1,9_2,9_0_1 -1949,0,72.0,0.0,6,111,600.0,,,0,75,0.0,0.0,,744.0,247.7270886033876,,60,0,0,0,0,0,0,0,0,0,,1,,4,103983,2,1,0,0,1,,200.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,84.45406376536668,600.0,28679.558889156688,0,5,0,1,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025941821590613628,28679.558889156688,8,4,8,8_1,8_2,8_0_0 -1950,2,46.0,0.0,8,111,360.0,,,0,47,0.0,0.0,,498.0,237.40512657824647,,44,0,0,0,0,0,0,0,0,0,,1,2000.0,6,120919,1,1,0,0,2,,329.0,,32,1.0,0.0,3.0,3.0,1.8,2,2,80.62760012483152,360.0,14305.224458578403,0,4,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03481245620730996,7947.346921432446,1,1,1_0,1_1_0,1_2_0,1_0_0 -1951,0,59.0,0.0,5,111,360.0,,,0,77,0.0,0.0,,538.0,306.2182067458541,,70,0,0,0,0,0,0,0,0,0,,1,,3,128430,2,1,0,0,2,,272.0,,31,0.0,0.0,5.0,2.0,1.5,1,1,89.43965419551192,360.0,13775.07372462524,0,7,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03905605231268094,9183.382483083493,1,1,1_0,1_1_0,1_2_0,1_0_0 -1952,1,49.0,28.0,9,111,240.0,,,0,68,0.0,0.0,,378.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,2,2004.0,6,115982,2,1,0,0,2,,330.0,386.0,32,1.0,1.0,3.0,2.0,1.5,2,2,85.56682902764469,240.0,16793.212522664435,0,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0225090940455761,11195.475015109623,2,1,2_1,2_0_1,2_2_1,2_0_0 -1953,2,77.0,0.0,2,111,468.0,,,0,86,0.0,0.0,,606.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,2,131034,2,1,0,0,1,,348.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,68.73468729971734,468.0,14079.26581916065,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043042017089789365,14079.26581916065,3,2,3_0,3_1_0,3_2_0,3_0_1 -1954,2,91.0,0.0,2,111,290.0,,,0,77,0.0,0.0,,359.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,0,,1,,2,129518,2,1,0,0,2,,400.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,95.21325185096661,290.0,14640.890693233589,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02452036611173628,14640.890693233589,3,2,3_0,3_1_0,3_2_0,3_0_1 -1955,2,39.0,0.0,9,111,10809.0,,,21,52,0.0,20.703450096389155,,10921.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,2,15.0,1,2013.0,6,124959,2,1,0,0,2,,424.0,,43,2.0,1.0,4.0,4.0,2.3,1,1,107.21503814815124,10809.0,43106.34475531313,1,1,1,2,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2533501752930215,18741.889024049186,5,3,5,5_1,5_2,5_0_0 -1956,2,62.0,0.0,6,111,600.0,,,72,77,0.0,77.63793786145933,,767.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,,4,119841,2,1,0,0,2,,720.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,70.01022994040224,600.0,9315.565257221942,5,5,0,1,129.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08233531501541241,6210.376838147961,1,1,1_0,1_1_0,1_2_0,1_0_0 -1957,2,64.0,0.0,8,111,274.0,,,0,77,0.0,0.0,,448.0,299.3368987290934,,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,122540,2,1,0,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,95.21325185096661,274.0,25094.107218607474,0,5,1,2,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017852796917509167,25094.107218607474,7,4,7,7_1,7_2,7_0_0 -1958,2,57.0,0.0,7,111,342.0,,,0,56,0.0,51.75862524097289,,530.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,5,111045,1,1,0,0,2,,260.0,,32,2.0,2.0,5.0,2.0,1.5,2,2,68.73468729971734,342.0,10085.634099021105,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052549992870695256,6723.75606601407,1,1,1_0,1_1_0,1_2_0,1_0_0 -1959,2,47.0,0.0,6,111,1620.0,,,0,11,0.0,0.0,,1666.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,0,,1,,4,121259,2,1,0,0,2,,0.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,54.90964253921248,1620.0,5110.0,0,1,0,1,300.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.32602739726027397,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0 -1960,2,53.0,0.0,5,111,1200.0,,,46,37,0.0,77.63793786145933,,1375.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,129697,2,1,0,0,2,,400.0,,43,2.0,1.0,6.0,3.0,1.8,4,4,71.82487211730052,1200.0,84208.60591231938,4,1,0,1,136.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016328497367973205,46782.55884017744,10,5,10,10_1,10_2,10_0_0 -1961,2,51.0,0.0,8,111,660.0,,,54,46,0.0,0.0,,732.0,123.8635443016938,,12,0,0,0,0,0,0,0,0,2,60.0,1,1999.0,6,110784,2,2,0,0,1,,504.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,73.44472475038903,660.0,70362.27880411019,1,1,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010403301491100093,46908.18586940679,10,5,10,10_1,10_2,10_0_0 -1962,1,39.0,366.0,7,111,360.0,,,0,63,0.0,0.0,,510.0,258.04905062852873,,70,0,0,0,0,0,0,0,0,0,,2,,5,104422,2,1,0,0,1,,434.0,349.0,32,1.0,0.0,2.0,3.0,1.6,2,2,100.60658344135051,360.0,19320.736743213918,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026396508931220176,12075.460464508698,2,1,2_1,2_0_1,2_2_1,2_0_0 -1963,2,63.0,0.0,7,111,0.0,,,0,11,0.0,0.0,,96.0,165.1513924022584,,42,0,0,0,0,0,0,0,0,0,,7,,5,129190,1,3,0,0,2,,80.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,112.72688372061533,0.0,9431.474323118004,0,1,0,1,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010178684340441784,9431.474323118004,1,1,1_0,1_1_0,1_2_0,1_0_0 -1964,2,46.0,0.0,8,111,744.0,,,85,69,0.0,310.55175144583734,,1320.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,121810,2,1,0,0,2,,444.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,95.21325185096661,744.0,22417.88480163671,6,1,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05888155870546841,10675.183238874622,2,1,2_0,2_1_0,2_2_0,2_0_0 -1965,2,45.0,0.0,7,111,1422.0,,,52,65,0.0,0.0,,1422.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,5,120536,2,1,0,0,2,,62.0,,43,2.0,0.0,4.0,4.0,2.1,4,3,75.93327324194897,1422.0,57420.681219854116,1,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024764596479714365,27343.18153326386,7,4,7,7_1,7_2,7_0_0 -1966,0,64.0,0.0,8,111,720.0,,,56,72,0.0,20.703450096389155,,1016.0,474.81025315649293,,42,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125069,2,1,0,0,2,,600.0,,42,2.0,1.0,4.0,3.0,2.0,1,1,89.43965419551192,720.0,16496.44139555078,1,5,5,0,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061589040668736175,8248.22069777539,1,1,1_0,1_1_0,1_2_0,1_0_0 -1967,2,77.0,0.0,8,111,900.0,,,77,77,0.0,25.879312620486445,,1118.0,332.023111808707,,42,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110643,2,1,0,0,2,,600.0,,41,0.0,3.0,6.0,2.0,1.5,4,4,94.21099156736068,900.0,47581.46313586288,5,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02349654521567972,31720.97542390859,8,4,8,8_1,8_2,8_0_0 -1968,1,71.0,249.0,7,111,294.0,,,0,77,0.0,0.0,,340.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,0,,1,,5,123442,2,1,0,0,2,,50.0,500.0,11,0.0,3.0,3.0,1.0,1.0,2,1,72.97133970666064,294.0,5886.0,0,5,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.057764186204553175,5886.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -1969,2,79.0,0.0,6,111,260.0,,,72,71,0.0,25.879312620486445,,429.0,247.7270886033876,,71,0,0,0,0,0,0,0,0,0,,1,,4,129678,2,1,0,0,2,,120.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,68.73468729971734,260.0,12816.087438614497,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03347355439441179,8544.058292409665,1,1,1_0,1_1_0,1_2_0,1_0_0 -1970,0,49.0,0.0,2,111,300.0,,,0,68,0.0,0.0,,438.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,3,60.0,3,,2,130266,1,1,0,0,2,,200.0,,32,2.0,0.0,4.0,2.0,1.5,3,2,105.42950204316338,300.0,7957.690494204764,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05504109519200026,5305.12699613651,1,1,1_0,1_0_0,1_2_0,1_0_1 -1971,0,38.0,0.0,9,111,420.0,,,0,56,0.0,31.055175144583732,,626.0,302.77755273747374,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100508,2,1,0,0,2,,200.0,,32,1.0,0.0,5.0,3.0,1.8,6,5,89.43965419551192,420.0,20896.0,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029957886676875958,11608.888888888889,2,1,2_0,2_1_0,2_2_0,2_0_0 -1972,2,40.0,0.0,6,111,700.0,,,0,34,0.0,0.0,,840.0,240.84578058662683,,50,0,0,0,0,0,0,0,0,0,,1,,4,111108,2,1,0,0,2,,312.0,,22,1.0,1.0,5.0,2.0,1.5,3,3,68.73468729971734,700.0,64648.49790967293,0,1,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012993341332905375,43098.99860644862,9,5,9,9_1,9_2,9_0_0 -1973,2,45.0,0.0,9,111,1080.0,,,85,64,0.0,25.879312620486445,,1381.0,474.81025315649293,,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126093,2,1,0,0,2,,300.0,,42,1.0,1.0,3.0,4.0,2.1,2,2,77.91173562154486,1080.0,23597.75429827771,6,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058522517971161044,11237.025856322718,2,1,2_0,2_1_0,2_2_0,2_0_0 -1974,0,54.0,0.0,5,111,684.0,,,56,67,0.0,51.75862524097289,,872.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,2,25.0,1,,3,108036,2,1,0,0,2,,258.0,,43,2.0,2.0,4.0,4.0,2.5,2,2,86.57365307306519,684.0,33169.13416901283,4,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02628950142493129,13267.653667605133,3,2,3_0,3_1_0,3_2_0,3_0_0 -1976,0,26.0,0.0,7,111,180.0,,,0,85,0.0,0.0,,318.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,5,131255,2,1,0,0,2,,180.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,77.91173562154486,180.0,6806.587070868183,0,7,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0467194493641347,6806.587070868183,1,1,1_0,1_1_0,1_2_0,1_0_0 -1977,2,60.0,0.0,6,111,540.0,,,0,43,0.0,25.879312620486445,,705.0,240.84578058662683,,41,0,0,0,0,0,0,0,0,2,60.0,1,,4,131927,2,1,0,0,2,,420.0,,12,1.0,1.0,4.0,1.0,1.0,3,3,69.81995634346106,540.0,45751.84792269407,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015409213660423587,45751.84792269407,10,5,10,10_1,10_2,10_0_0 -1978,2,42.0,0.0,8,111,300.0,,,65,52,0.0,6.211035028916747,,378.0,123.8635443016938,,12,0,0,0,0,0,0,0,0,2,40.0,2,2000.0,6,100462,2,1,0,0,2,,348.0,715.0,43,2.0,0.0,3.0,3.0,1.8,2,2,80.7755283984025,300.0,48895.1376507261,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007730830061266565,27163.9653615145,7,4,7,7_0,7_2,7_0_0 -1979,2,76.0,0.0,5,111,396.0,,,77,78,0.0,0.0,,444.0,82.5756962011292,,31,0,0,0,0,0,0,0,0,0,,1,,3,128675,2,1,0,0,2,,436.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,82.41640104595002,396.0,25444.494944056536,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01744974702685981,16962.996629371024,4,2,4_0,4_1_0,4_2_0,4_0_0 -1980,1,41.0,350.0,6,111,348.0,,,0,52,0.0,0.0,,417.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,2,25.0,2,,4,115523,2,1,0,0,2,,360.0,367.0,32,2.0,0.0,3.0,3.0,1.8,4,4,81.43412436136443,348.0,27220.246968613195,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015319478933487616,15122.35942700733,3,2,3_1,3_0_1,3_2_1,3_0_0 -1981,2,58.0,0.0,6,111,120.0,,,0,38,0.0,0.0,,142.0,37.84719409218422,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,121754,2,1,0,0,2,,166.0,850.0,12,1.0,0.0,5.0,1.0,1.0,3,3,126.53010394875763,120.0,80692.14397098077,0,1,2,3,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001759774781186472,80692.14397098077,10,5,10,10_1,10_2,10_0_0 -1982,2,74.0,0.0,5,111,480.0,,,0,77,0.0,0.0,,630.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,,3,124391,1,2,0,0,2,,300.0,700.0,11,0.0,4.0,4.0,1.0,1.0,2,2,106.39218010822455,480.0,22300.640483109375,0,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028250309692995832,22300.640483109375,6,3,6,6_1,6_2,6_0_0 -1983,0,56.0,0.0,6,111,420.0,,,43,64,0.0,124.22070057833493,,816.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,4,118368,2,1,0,0,2,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,85.78752994705232,420.0,27682.35074657806,1,1,5,0,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029477265405318566,18454.900497718707,4,2,4_0,4_1_0,4_2_0,4_0_0 -1984,2,56.0,0.0,7,111,444.0,,,55,46,0.0,0.0,,628.0,316.54016877099525,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,123450,1,1,0,0,2,,123.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,85.78752994705232,444.0,25324.34882329705,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024798268432563744,12662.174411648524,2,1,2_0,2_1_0,2_2_0,2_0_0 -1985,2,43.0,0.0,9,111,240.0,,,63,56,0.0,25.879312620486445,,403.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123809,2,1,0,0,2,,600.0,,43,2.0,0.0,3.0,3.0,1.8,5,3,77.132202546454,240.0,17615.34949982108,4,1,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022877774863569598,9786.305277678379,2,1,2_0,2_1_0,2_2_0,2_0_0 -1986,2,53.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,546.0,0.0,,41,0,0,0,0,0,0,0,0,0,,3,,5,109283,2,1,0,0,2,,0.0,550.0,12,1.0,2.0,2.0,1.0,1.0,5,5,118.74113069034955,0.0,26797.02846828496,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020375393512239853,26797.02846828496,7,4,7,7_0,7_2,7_0_0 -1988,1,51.0,577.0,7,111,1020.0,,,85,63,0.0,20.703450096389155,,1316.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,5,118432,2,1,0,0,2,,300.0,750.0,42,1.0,0.0,5.0,8.0,3.6999999999999993,1,1,107.94822977054872,1020.0,39687.89341602002,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033158726420808124,10726.457680005413,2,1,2_1,2_1_1,2_2_1,2_0_0 -1989,2,46.0,0.0,7,111,0.0,,,69,85,0.0,0.0,,144.0,247.7270886033876,,10,0,0,0,0,0,0,0,0,0,,7,,5,105105,1,3,0,0,2,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,84.13366488254478,0.0,20752.506280208818,4,6,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0069389209214373035,13835.004186805878,3,2,3_0,3_1_0,3_2_0,3_0_0 -1990,1,28.0,357.0,7,111,193.0,,,0,52,0.0,0.0,,265.0,123.8635443016938,,20,0,0,0,0,0,0,0,0,2,30.0,2,,5,132375,1,1,0,0,2,,392.0,446.0,32,1.0,0.0,3.0,2.0,1.3,2,2,78.17976829962393,193.0,14427.077961805426,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01836823788583988,11097.752278311866,2,1,2_1,2_0_1,2_2_1,2_0_0 -1991,1,47.0,357.0,7,111,1230.0,,,0,90,0.0,0.0,,1322.0,158.27008438549763,,70,0,0,0,0,0,0,0,0,0,,2,,5,126486,2,1,0,0,2,,1202.0,465.0,32,2.0,2.0,4.0,3.0,1.8,2,2,97.84821934340405,1230.0,8172.0,0,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16177190406265296,4540.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -1992,1,27.0,413.0,7,111,0.0,,,0,55,0.0,0.0,,1220.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,119876,2,1,0,0,2,,485.0,520.0,32,1.0,0.0,5.0,3.0,1.6,2,1,90.37023403020542,0.0,18212.36557453559,0,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06698745393656033,11382.728484084742,2,1,2_1,2_0_1,2_2_1,2_0_0 -1993,2,55.0,0.0,7,111,438.0,,,0,54,0.0,0.0,,530.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,3,60.0,2,,5,101977,2,1,0,0,2,,504.0,480.0,32,1.0,4.0,4.0,2.0,1.5,2,2,95.53674334268105,438.0,33452.0,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015843596795408345,22301.333333333332,6,3,6,6_0,6_2,6_0_0 -1994,1,53.0,198.0,6,111,588.0,,,85,90,0.0,0.0,,588.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,4,126750,2,1,0,0,2,,0.0,650.0,42,1.0,1.0,3.0,3.0,2.0,2,2,82.0205643185619,588.0,18868.8396272408,6,1,3,4,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03116248861170609,9434.4198136204,1,1,1_1,1_1_1,1_2_1,1_0_0 -1995,2,55.0,0.0,5,111,1080.0,,,54,55,0.0,0.0,,1218.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,2,60.0,2,,3,132906,2,1,0,0,2,,760.0,,43,3.0,1.0,3.0,4.0,2.5,2,2,82.86024430015026,1080.0,47628.26584682188,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025573049497901765,19051.30633872875,5,3,5,5_0,5_2,5_0_0 -1996,2,41.0,0.0,7,111,860.0,,,46,64,0.0,77.63793786145933,,981.0,79.13504219274881,,31,0,0,0,0,0,0,0,0,0,,1,,5,128999,2,1,0,0,2,,480.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,87.94058597659776,860.0,27899.223171511625,4,1,1,2,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0351622693567223,13285.344367386488,3,2,3_0,3_1_0,3_2_0,3_0_0 -1997,1,49.0,413.0,7,111,384.0,,,0,85,0.0,0.0,,534.0,258.04905062852873,,42,0,0,0,0,0,0,0,0,0,,2,,5,100442,2,1,0,0,2,,480.0,507.0,31,0.0,0.0,4.0,3.0,1.8,3,3,95.53674334268105,384.0,9414.126478499275,0,6,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0567232659577701,5230.07026583293,1,1,1_1,1_0_1,1_2_1,1_0_0 -1998,1,72.0,217.0,7,111,528.0,,,0,77,0.0,0.0,,576.0,82.5756962011292,,60,0,0,0,0,0,0,0,0,0,,2,,5,109916,2,1,0,0,2,,324.0,390.0,11,0.0,2.0,3.0,1.0,1.0,1,1,97.49138168729321,528.0,9385.064919623685,0,5,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06137410928246365,9385.064919623685,1,1,1_1,1_0_1,1_2_1,1_0_0 -1999,2,48.0,0.0,7,111,240.0,,,85,62,0.0,0.0,,384.0,247.7270886033876,,41,0,0,0,0,0,0,0,0,0,,2,,5,105004,1,2,0,0,2,,357.0,512.0,42,1.0,0.0,4.0,3.0,2.0,3,3,90.2381117217326,240.0,46106.14262615626,6,1,2,3,114.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008328608253212551,23053.07131307813,6,3,6,6_0,6_2,6_0_0 -2000,1,45.0,253.0,7,111,360.0,,,53,54,0.0,51.75862524097289,,510.0,172.03270041901916,,42,0,0,0,0,0,0,0,0,2,10.0,2,,5,119956,2,1,0,0,2,,480.0,424.0,43,2.0,1.0,3.0,4.0,2.3,2,2,83.53020998057588,360.0,28462.513526538904,1,1,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017918305054979343,12375.005881103873,2,1,2_1,2_0_1,2_2_1,2_0_0 -2001,2,90.0,0.0,2,111,207.0,,,0,78,0.0,0.0,,357.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,2,101339,2,1,0,0,2,,156.0,,11,0.0,1.0,4.0,1.0,1.0,5,4,82.41640104595002,207.0,11359.684210526313,0,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031426929955428715,11359.684210526313,2,1,2_0,2_1_0,2_2_0,2_0_1 -2002,2,66.0,0.0,6,111,201.0,,,0,77,0.0,41.40690019277831,,310.0,118.70256328912323,,50,0,0,0,0,0,0,0,0,0,,1,,4,120723,2,1,0,0,2,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,122.86578400138765,201.0,7409.35730197771,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041838986482303206,7409.35730197771,1,1,1_0,1_1_0,1_2_0,1_0_0 -2003,2,61.0,0.0,6,111,500.0,,,56,52,0.0,25.879312620486445,,665.0,240.84578058662683,,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,120559,2,1,0,0,2,,200.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,74.03644617204739,500.0,54831.12151485671,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012128148789001435,36554.081009904476,9,5,9,9_1,9_2,9_0_0 -2004,2,51.0,0.0,9,111,900.0,,,0,52,0.0,6.211035028916747,,1056.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,129845,2,1,0,0,2,,400.0,,32,1.0,0.0,6.0,5.0,2.8,1,1,56.86747741182683,900.0,42280.90881064918,0,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024975811298881732,15100.324575231853,3,2,3_0,3_1_0,3_2_0,3_0_0 -2005,2,66.0,0.0,7,111,750.0,,,77,77,0.0,0.0,,894.0,247.7270886033876,,31,0,0,0,0,0,0,0,0,0,,1,,5,119666,2,1,0,0,2,,1224.0,,41,1.0,2.0,3.0,3.0,2.0,2,2,77.24513581227251,750.0,42658.3523476049,5,5,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020957208865339465,21329.17617380245,6,3,6,6_1,6_2,6_0_0 -2006,2,83.0,0.0,6,111,0.0,,,78,78,0.0,0.0,,595.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,4,104415,2,1,0,0,2,,339.0,,41,0.0,12.0,4.0,2.0,1.5,1,1,82.41640104595002,0.0,19622.505454130005,5,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030322325627116523,13081.670302753337,2,1,2_0,2_1_0,2_2_0,2_0_0 -2007,0,49.0,0.0,7,111,345.0,,,56,62,0.0,0.0,,621.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,2,60.0,1,,5,121526,1,1,0,0,2,,250.0,,43,2.0,0.0,4.0,4.0,2.5,3,3,84.12622664403702,345.0,37559.14032925478,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016533924753232537,15023.656131701911,3,2,3_0,3_1_0,3_2_0,3_0_0 -2008,0,48.0,0.0,7,111,600.0,,,0,56,0.0,0.0,,669.0,118.70256328912323,,31,0,0,0,0,0,0,0,0,0,,1,,5,119941,2,1,0,0,1,,1000.0,,32,1.0,0.0,7.0,5.0,2.5999999999999996,1,1,81.75611758047265,600.0,15741.364982916553,0,4,5,0,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04249949103689787,6054.371147275599,1,1,1_0,1_1_0,1_2_0,1_0_0 -2009,0,45.0,0.0,6,111,540.0,,,52,63,0.0,77.63793786145933,,891.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,1,,4,126061,2,2,0,0,2,,600.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,96.85820532089114,540.0,8638.095336185048,1,4,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10314773863025037,5758.730224123366,1,1,1_0,1_1_0,1_2_0,1_0_0 -2010,0,38.0,0.0,8,111,420.0,,,0,64,0.0,0.0,,443.0,39.567521096374406,,71,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,103677,2,1,0,0,2,,159.0,,12,1.0,0.0,4.0,1.0,1.0,7,6,101.77845778523064,420.0,21438.340435751372,0,1,5,0,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020663912924026376,21438.340435751372,6,3,6,6_1,6_2,6_0_0 -2011,2,57.0,0.0,6,111,1200.0,,,78,21,0.0,0.0,,1287.0,149.6684493645467,,50,0,0,0,0,0,0,0,0,0,,1,,4,118282,2,1,0,0,2,,540.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,74.14484678009136,1200.0,50474.49017023167,7,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025498028720239232,33649.66011348778,9,5,9,9_1,9_2,9_0_0 -2012,2,46.0,0.0,6,120,750.0,,,67,63,0.0,0.0,,995.0,421.480116026597,,10,0,0,0,0,0,0,0,0,1,10.0,1,,4,113069,2,1,0,0,2,,600.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,3,78.99554802234451,750.0,36721.6344277365,1,1,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027095743844355112,14123.705549129425,3,2,3_0,3_1_0,3_0_0,3_0_0 -2013,2,64.0,0.0,7,120,0.0,,,74,78,0.0,0.0,,92.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,0,,2,,5,106222,2,2,0,0,2,,0.0,350.0,41,0.0,2.0,2.0,2.0,1.5,1,1,118.34835144168845,0.0,59782.817924337985,5,5,2,3,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0015389037050149853,39855.21194955866,9,5,9,9_0,9_0,9_0_0 -2015,2,69.0,0.0,2,120,500.0,,,0,78,0.0,0.0,,730.0,395.67521096374406,,31,0,0,0,0,0,0,0,0,0,,1,,2,131610,2,2,0,0,2,,400.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,100.12721177499527,500.0,24045.22515664193,0,5,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03035945786510361,24045.22515664193,6,3,6,6_1,6_0,6_0_1 -2016,2,46.0,0.0,7,120,1200.0,,,55,21,0.0,0.0,,1430.0,395.67521096374406,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,128668,2,1,0,0,1,,1100.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,76.30367445266066,1200.0,58414.18104929934,1,1,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024480356898150032,27816.276690142542,7,4,7,7_1,7_0,7_0_0 -2017,2,71.0,0.0,5,120,300.0,,,75,72,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,125297,2,2,0,0,2,,320.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,118.91767121316762,300.0,43520.45931688742,5,5,0,1,98.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006893309599873405,29013.639544591613,8,4,8,8_1,8_0,8_0_0 -2018,1,38.0,467.0,7,120,350.0,,,0,85,0.0,0.0,,603.0,435.2427320601185,,20,0,0,0,0,0,0,0,0,0,,2,,5,126124,2,2,0,0,2,,450.0,469.0,31,0.0,0.0,4.0,4.0,2.1,2,2,105.20394715602339,350.0,20518.220535850654,0,6,2,3,98.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029388513440841642,9770.58120754793,2,1,2_1,2_0_1,2_0_1,2_0_0 -2019,2,59.0,0.0,7,120,640.0,,,0,42,0.0,0.0,,716.0,130.74485231845458,,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,119172,2,1,0,0,2,,560.0,,22,3.0,0.0,4.0,3.0,2.0,2,2,105.77321518320109,640.0,85051.17720755203,0,1,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00841846078453131,42525.588603776014,9,5,9,9_1,9_0,9_0_0 -2020,0,83.0,0.0,2,120,0.0,,,0,77,0.0,0.0,,622.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,2,114379,2,2,0,0,2,,286.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,99.23011616020956,0.0,10597.574144486693,0,5,0,1,98.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05869267735424062,10597.574144486693,2,1,2_0,2_1_0,2_0_0,2_0_1 -2021,2,76.0,0.0,5,120,360.0,,,0,77,0.0,0.0,,590.0,395.67521096374406,,10,0,0,0,0,0,0,0,0,0,,1,,3,117560,2,2,0,0,2,,300.0,,11,0.0,6.0,6.0,1.0,1.0,1,1,74.85502558559627,360.0,5821.371169125993,0,5,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1013506926218864,5821.371169125993,1,1,1_0,1_1_0,1_0_0,1_0_0 -2022,2,57.0,0.0,6,120,950.0,,,46,63,0.0,0.0,,1088.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,2,60.0,1,,4,117077,2,2,0,0,2,,650.0,,43,4.0,0.0,5.0,5.0,3.0,2,2,65.7830083463128,950.0,141082.15425730776,1,1,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007711818732337254,47027.38475243592,10,5,10,10_1,10_0,10_0_0 -2023,2,60.0,0.0,7,120,1200.0,,,77,63,0.0,0.0,,1545.0,593.5128164456162,,12,0,0,0,0,0,0,0,0,0,,1,,5,113576,2,1,0,0,1,,800.0,,42,1.0,0.0,4.0,4.0,2.5,2,2,101.87662049815975,1200.0,24237.633008164943,7,4,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06374384823301579,9695.053203265978,1,1,1_0,1_1_0,1_0_0,1_0_0 -2024,2,50.0,0.0,8,120,600.0,,,85,12,0.0,51.75862524097289,,943.0,504.05581222772616,,43,0,0,0,0,0,0,0,0,0,,1,2000.0,6,133308,2,2,0,0,2,,1400.0,,42,4.0,0.0,4.0,9.0,4.8,2,2,117.29757021890502,600.0,39812.04016455646,6,1,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023686301834878742,8294.175034282596,1,1,1_0,1_1_0,1_0_0,1_0_0 -2025,2,57.0,0.0,9,120,800.0,,,22,12,0.0,0.0,,1030.0,395.67521096374406,,50,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,122158,2,1,0,0,2,,504.0,,43,2.0,3.0,4.0,3.0,2.0,1,1,91.68360165615515,800.0,23149.005330749107,1,1,0,1,88.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04449435236130161,11574.502665374554,2,1,2_0,2_1_0,2_0_0,2_0_0 -2026,2,87.0,0.0,2,120,320.0,,,0,72,0.0,62.110350289167464,,472.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,1,,2,129517,2,3,0,0,2,,280.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,125.55635453395675,320.0,9394.0,0,5,0,1,78.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050244837130083035,9394.0,1,1,1_0,1_1_0,1_0_0,1_0_1 -2027,1,54.0,110.0,9,120,470.0,,,54,47,0.0,0.0,,539.0,118.70256328912323,,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,124236,2,1,0,0,1,,540.0,,43,2.0,1.0,4.0,6.0,2.6999999999999997,2,2,163.28290523736044,470.0,29407.852116457194,4,4,1,2,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01832843819621785,10891.797080169332,2,1,2_1,2_1_1,2_0_1,2_0_0 -2028,2,55.0,0.0,6,120,400.0,,,0,52,0.0,0.0,,600.0,344.06540083803833,,31,0,0,0,0,0,0,0,0,1,5.0,1,,4,105211,2,2,0,0,1,,280.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,122.53452366134012,400.0,26489.0,0,1,0,1,78.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02265091169919589,26489.0,7,4,7,7_1,7_1,7_0_0 -2029,2,69.0,0.0,8,120,700.0,,,54,74,0.0,0.0,,750.0,86.01635020950958,,44,0,0,0,0,0,0,0,0,0,,1,2003.0,6,123124,2,1,0,0,2,,700.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,159.21747760160144,700.0,47878.80061039276,1,5,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015664552796612913,31919.200406928507,8,4,8,8_1,8_1,8_0_0 -2030,2,50.0,0.0,2,120,750.0,,,0,47,0.0,0.0,,975.0,387.0735759427931,,71,0,0,0,0,0,0,0,0,0,,1,,2,105392,2,3,0,0,2,,850.0,,22,3.0,5.0,4.0,4.0,2.5,3,2,80.35311707851864,750.0,47014.888206794836,0,1,0,1,82.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020738111632031656,18805.955282717936,5,3,5,5_1,5_1,5_0_1 -2031,2,50.0,0.0,5,120,1640.0,,,54,63,0.0,0.0,,1640.0,0.0,,50,0,0,0,0,0,0,0,0,2,45.0,2,,3,112084,2,1,0,0,1,,0.0,,43,3.0,1.0,4.0,4.0,2.5,2,2,119.17798458765243,1640.0,59316.35507436255,1,1,1,2,77.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02764836102865723,23726.542029745022,6,3,6,6_0,6_1,6_0_0 -2032,2,42.0,0.0,8,120,450.0,,,67,63,0.0,0.0,,522.0,123.8635443016938,,42,0,0,0,0,0,0,0,0,2,90.0,2,2003.0,6,107036,2,1,0,0,2,,650.0,340.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,1,1,90.76917269996541,450.0,45774.03565365026,1,1,2,3,78.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011403844833558455,17605.398328327025,4,2,4_0,4_0_0,4_1_0,4_0_0 -2033,2,92.0,0.0,5,120,850.0,,,0,75,0.0,0.0,,1025.0,301.05722573328353,,71,0,0,0,0,0,0,0,0,0,,1,,3,103667,2,2,0,0,1,,575.0,,21,0.0,0.0,5.0,2.0,1.5,4,4,101.616723640821,850.0,71248.28431220049,0,5,0,1,145.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014386311332194143,47498.85620813366,10,5,10,10_1,10_1,10_0_0 -2034,1,59.0,125.0,6,120,390.0,,,11,11,0.0,0.0,,620.0,395.67521096374406,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,124130,2,1,0,0,1,,480.0,285.0,43,2.0,2.0,4.0,2.0,1.5,2,2,94.13717422566148,390.0,5110.0,1,1,2,3,62.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12133072407045009,3406.6666666666665,1,1,1_1,1_1_1,1_1_1,1_0_0 -2035,2,42.0,0.0,9,120,450.0,,,42,42,0.0,31.055175144583732,,480.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,113790,2,1,0,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,141.9026110912535,450.0,82431.29835465917,1,1,1,2,160.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005823030930979744,39252.999216504366,9,5,9,9_1,9_1,9_0_0 -2036,2,60.0,0.0,6,120,0.0,,,22,74,0.0,0.0,,583.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,114541,2,2,0,0,2,,540.0,900.0,42,1.0,4.0,3.0,2.0,1.5,1,1,85.19291852263935,0.0,42119.51016764868,1,7,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01384156647785028,28079.67344509912,8,4,8,8_1,8_1,8_0_0 -2037,2,57.0,0.0,2,120,1000.0,,,55,31,0.0,0.0,,1050.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,1,,2,102237,2,1,0,0,2,,1820.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,85.17693809554576,1000.0,9937.298805454615,1,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10566251660095514,6624.865870303077,1,1,1_0,1_1_0,1_1_0,1_0_1 -2038,2,64.0,0.0,7,120,360.0,,,0,77,0.0,0.0,,485.0,215.04087552377396,,71,0,0,0,0,0,0,0,0,0,,1,,5,115473,2,2,0,0,2,,600.0,,21,0.0,4.0,4.0,3.0,2.0,2,2,93.048993449177,360.0,40887.8059640556,0,6,0,1,78.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011861727196278583,20443.9029820278,5,3,5,5_1,5_1,5_0_0 -2039,2,83.0,0.0,2,120,0.0,,,0,72,0.0,0.0,,544.0,172.03270041901916,,33,0,0,0,0,0,0,0,0,0,,1,,2,121245,2,3,0,0,2,,320.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,120.8367481191157,0.0,11940.785284334332,0,5,0,1,88.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045558142705547075,11940.785284334332,2,1,2_0,2_1_0,2_1_0,2_0_1 -2040,2,20.0,0.0,7,120,600.0,,,0,67,0.0,0.0,,830.0,395.67521096374406,,10,0,0,0,0,0,0,0,0,3,45.0,1,,5,111414,2,2,0,0,2,,400.0,,22,3.0,0.0,3.0,5.0,2.5999999999999996,2,2,69.27411830878252,600.0,27286.53617730429,0,1,0,1,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030417931928287643,10494.821606655498,2,1,2_0,2_1_0,2_1_0,2_0_0 -2041,2,57.0,0.0,9,120,0.0,,,75,45,0.0,0.0,,589.0,79.13504219274881,,43,0,0,0,0,0,0,0,0,2,70.0,1,2008.0,6,132291,2,1,0,0,2,,500.0,,42,1.0,3.0,2.0,2.0,1.5,3,3,97.7336656858712,0.0,47237.162967690114,7,1,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012468996082657882,31491.441978460076,8,4,8,8_1,8_1,8_0_0 -2042,0,83.0,0.0,2,120,420.0,,,0,77,0.0,0.0,,670.0,430.0817510475479,,31,0,0,0,0,0,0,0,0,0,,1,,2,117056,2,2,0,0,2,,450.0,,11,0.0,8.0,5.0,1.0,1.0,2,2,119.05621838738013,420.0,15089.391849529782,0,5,0,1,107.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04440205454806839,15089.391849529782,3,2,3_0,3_1_0,3_1_0,3_0_1 -2043,2,45.0,0.0,2,120,150.0,,,0,62,0.0,0.0,,380.0,395.67521096374406,,41,0,0,0,0,0,0,0,0,0,,1,,2,100316,2,2,0,0,2,,1380.0,,22,3.0,2.0,5.0,4.0,2.5,1,1,80.91922883855423,150.0,47474.40269898043,0,1,0,1,110.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008004313448859062,18989.761079592172,5,3,5,5_1,5_1,5_0_1 -2044,2,70.0,0.0,2,120,250.0,,,75,74,0.0,0.0,,370.0,206.439240502823,,31,0,0,0,0,0,0,0,0,0,,1,,2,111774,2,1,0,0,2,,160.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,104.65659834738923,250.0,80753.33264164731,6,5,0,1,140.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004581854245470212,53835.55509443154,10,5,10,10_1,10_1,10_0_1 -2045,2,57.0,0.0,2,120,490.0,,,81,35,0.0,0.0,,720.0,395.67521096374406,,70,0,0,0,0,0,0,0,0,0,,1,,2,119820,2,2,0,0,2,,580.0,,43,4.0,0.0,6.0,5.0,2.8,1,1,108.29172571734978,490.0,9411.944935927044,4,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07649853509572009,3361.4089056882303,1,1,1_0,1_1_0,1_1_0,1_0_1 -2046,2,48.0,0.0,9,120,1500.0,,,22,46,0.0,0.0,,1620.0,206.439240502823,,71,0,0,0,0,0,0,0,0,2,90.0,1,2010.0,6,119688,2,1,0,0,1,,1400.0,,43,2.0,1.0,6.0,3.0,1.8,1,1,158.89744796775724,1500.0,33780.72234280108,1,1,1,2,140.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04795634573945794,18767.06796822282,5,3,5,5_1,5_1,5_0_0 -2047,2,64.0,0.0,7,120,240.0,,,0,54,0.0,0.0,,470.0,395.67521096374406,,41,0,0,0,0,0,0,0,0,2,60.0,1,,5,121784,2,2,0,0,1,,180.0,,12,1.0,1.0,3.0,1.0,1.0,3,2,95.02278074238096,240.0,26824.079337228017,0,1,0,1,79.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017521570604203614,26824.079337228017,7,4,7,7_1,7_1,7_0_0 -2048,2,74.0,0.0,1,120,183.0,,,0,75,0.0,0.0,,229.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,0,,1,,1,105741,2,2,0,0,2,,450.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,151.48948824907885,183.0,18798.181236137134,0,5,0,1,94.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012182029586978147,18798.181236137134,5,3,5,5_1,5_1,5_1_0 -2049,2,65.0,0.0,7,120,320.0,,,0,78,0.0,0.0,,430.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,,5,127691,2,2,0,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,122.99218030902344,320.0,15259.249366636815,0,5,0,1,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028179629919421998,15259.249366636815,3,2,3_0,3_1_0,3_1_0,3_0_0 -2050,1,36.0,435.0,2,120,0.0,,,0,67,0.0,0.0,,46.0,79.13504219274881,,70,0,0,0,0,0,0,0,0,2,45.0,1,,2,130368,1,3,0,0,2,,0.0,600.0,32,1.0,0.0,3.0,3.0,1.6,3,3,110.93892603400073,0.0,20398.843254722673,0,1,3,4,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0022550298281913722,12749.27703420167,2,1,2_1,2_1_1,2_1_1,2_0_1 -2051,1,71.0,123.0,7,120,320.0,,,0,78,0.0,0.0,,412.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,0,,2,,5,121620,2,2,0,0,2,,210.0,312.0,11,0.0,3.0,2.0,1.0,1.0,2,2,137.9924598994505,320.0,13486.002898397102,0,5,2,3,34.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030550193641806857,13486.002898397102,3,2,3_1,3_0_1,3_1_1,3_0_0 -2052,1,45.0,300.0,7,120,0.0,,,0,85,0.0,0.0,,394.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,108576,2,3,0,0,2,,0.0,400.0,31,0.0,3.0,2.0,2.0,1.3,3,2,130.64964025829903,0.0,3405.0674808037693,0,6,3,4,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11570989480272971,2619.282677541361,1,1,1_1,1_1_1,1_1_1,1_0_0 -2053,2,68.0,0.0,2,120,1200.0,,,0,77,0.0,0.0,,1310.0,189.2359704609211,,43,0,0,0,0,0,0,0,0,0,,1,,2,112119,2,2,0,0,2,,500.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,104.90314915300236,1200.0,17014.22523782702,0,5,0,1,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07699439625893346,17014.22523782702,4,2,4_0,4_1_0,4_1_0,4_0_1 -2055,2,30.0,0.0,6,120,1000.0,,,0,52,0.0,0.0,,1230.0,395.67521096374406,,71,0,0,0,0,0,0,0,0,0,,1,,4,105937,2,2,0,0,2,,1200.0,,22,1.0,1.0,7.0,2.0,1.5,1,1,139.35567947222071,1000.0,58150.79582139529,0,1,0,1,135.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021151903127479624,38767.19721426353,9,5,9,9_1,9_1,9_0_0 -2056,2,67.0,0.0,2,120,550.0,,,0,78,0.0,0.0,,662.0,192.67662446930146,,60,0,0,0,0,0,0,0,0,0,,1,,2,113220,1,3,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,100.9092786738651,550.0,7528.066666666667,0,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08793758468309704,7528.066666666667,1,1,1_0,1_1_0,1_1_0,1_0_1 -2057,2,56.0,0.0,9,120,580.0,,,0,42,0.0,0.0,,626.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,2,90.0,2,2006.0,6,127267,2,1,0,0,1,,360.0,656.0,12,1.0,2.0,2.0,1.0,1.0,1,1,151.45324598034207,580.0,83723.80125375974,0,1,2,3,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007476965816478484,83723.80125375974,10,5,10,10_0,10_1,10_0_0 -2058,2,54.0,0.0,7,120,300.0,,,0,34,0.0,0.0,,300.0,0.0,,31,0,0,0,0,0,0,0,0,3,90.0,2,,5,127868,2,1,0,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,134.51356793841393,300.0,55076.85917212115,0,1,1,2,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0054469336942847,55076.85917212115,10,5,10,10_0,10_1,10_0_0 -2059,2,61.0,0.0,7,120,450.0,,,45,42,0.0,0.0,,450.0,0.0,,60,0,0,0,0,0,0,0,0,2,40.0,2,,5,118756,2,1,0,0,1,,520.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,106.49906995994499,450.0,50543.44495164221,1,1,1,2,41.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008903231673870679,33695.62996776147,9,5,9,9_0,9_1,9_0_0 -2060,2,29.0,0.0,7,120,480.0,,,42,37,0.0,0.0,,480.0,0.0,,30,0,0,0,0,0,0,0,0,3,30.0,2,,5,108824,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,88.03812048725118,480.0,44626.44837760729,1,1,1,2,87.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010755953418889031,24792.47132089294,7,4,7,7_0,7_1,7_0_0 -2061,2,48.0,0.0,7,120,540.0,,,0,47,0.0,0.0,,563.0,39.567521096374406,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,125652,2,2,0,0,2,,300.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,104.65659834738923,540.0,81719.07444719315,0,1,1,2,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006889456394465291,40859.53722359658,9,5,9,9_1,9_1,9_0_0 -2062,2,70.0,0.0,6,120,160.0,,,75,75,0.0,0.0,,258.0,168.59204641063877,,41,0,0,0,0,0,0,0,0,0,,1,,4,121761,2,1,0,0,1,,557.0,,41,2.0,0.0,6.0,5.0,3.0,1,1,123.25579526095046,160.0,108727.16212406648,5,5,0,1,132.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0023729121128499716,36242.38737468883,9,5,9,9_1,9_1,9_0_0 -2063,2,70.0,0.0,7,120,120.0,,,85,75,0.0,0.0,,218.0,168.59204641063877,,41,0,0,0,0,0,0,0,0,0,,1,,5,106803,2,1,0,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,131.6269275696856,120.0,55878.6011774394,6,5,0,1,132.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0039013145534504898,37252.4007849596,9,5,9,9_1,9_1,9_0_0 -2064,2,54.0,0.0,7,120,660.0,,,33,22,0.0,0.0,,752.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,103875,2,1,0,0,2,,360.0,,43,3.0,2.0,4.0,4.0,2.5,4,2,104.65659834738923,660.0,110216.16876311338,1,1,1,2,90.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0068229553652537755,44086.46750524535,10,5,10,10_1,10_1,10_0_0 -2065,2,55.0,0.0,7,120,410.0,,,0,56,0.0,0.0,,548.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,128939,2,1,0,0,2,,450.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,88.01701858430962,410.0,24136.163636760873,0,1,0,1,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02270451958509935,16090.775757840582,4,2,4_0,4_1_0,4_1_0,4_0_0 -2067,2,54.0,0.0,2,120,2500.0,,,0,31,0.0,0.0,,2500.0,0.0,,20,0,0,0,0,0,0,0,0,2,5.0,1,,2,123483,2,1,0,0,2,,2000.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,159.6050282409052,2500.0,113797.85689004144,0,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021968779275128664,113797.85689004144,10,5,10,10_1,10_1,10_0_1 -2068,0,81.0,0.0,2,120,650.0,,,0,78,0.0,0.0,,941.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,2,108627,2,2,0,0,2,,600.0,,11,0.0,5.0,4.0,1.0,1.0,4,3,103.79888837020907,650.0,16465.52214726615,0,5,0,1,67.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057149721192184526,16465.52214726615,4,2,4_0,4_1_0,4_1_0,4_0_1 -2069,2,42.0,0.0,7,120,0.0,,,22,22,0.0,0.0,,854.0,0.0,,10,0,0,0,0,0,0,0,0,4,40.0,1,,5,110956,2,2,0,0,2,,442.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,159.6050282409052,0.0,94260.39578505077,1,1,1,2,125.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009060008637640796,62840.26385670051,10,5,10,10_1,10_1,10_0_0 -2070,2,55.0,0.0,5,120,380.0,,,0,52,0.0,0.0,,447.0,115.26190928074284,,41,0,0,0,0,0,0,0,0,3,60.0,2,,3,107632,2,1,0,0,2,,350.0,280.0,12,1.0,4.0,2.0,1.0,1.0,3,3,88.19795974664626,380.0,15576.144826823444,0,1,2,3,37.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0286977300846759,15576.144826823444,3,2,3_0,3_0_0,3_1_0,3_0_0 -2071,2,45.0,0.0,6,120,720.0,,,0,55,0.0,0.0,,830.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,3,45.0,2,,4,102690,2,2,0,0,2,,580.0,499.0,32,2.0,0.0,4.0,3.0,2.0,1,1,145.40943395472115,720.0,23405.5089897198,0,1,2,3,110.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03546173682292292,11702.7544948599,2,1,2_0,2_0_0,2_1_0,2_0_0 -2072,2,27.0,0.0,8,120,430.0,,,0,47,0.0,0.0,,596.0,285.5742826955718,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,115634,2,2,0,0,2,,450.0,,22,1.0,1.0,4.0,2.0,1.5,1,1,89.39251620558926,430.0,23198.244872426516,0,1,0,1,92.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02569159879454531,15465.496581617677,3,2,3_0,3_1_0,3_1_0,3_0_0 -2073,2,58.0,0.0,7,120,900.0,,,77,63,0.0,0.0,,900.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,122680,2,1,0,0,2,,270.0,,42,1.0,4.0,5.0,2.0,1.5,6,3,99.38236747951774,900.0,27842.131467252886,6,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03232511135358132,18561.42097816859,4,2,4_0,4_1_0,4_1_0,4_0_0 -2074,2,41.0,0.0,7,120,360.0,,,46,21,0.0,0.0,,498.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,5,123321,2,1,0,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,80.35311707851864,360.0,33904.93909942919,1,1,0,1,125.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014688125483416194,13040.361192088152,2,1,2_0,2_1_0,2_1_0,2_0_0 -2075,2,59.0,0.0,2,120,350.0,,,85,63,0.0,0.0,,416.0,113.54158227655265,,12,0,0,0,0,0,0,0,0,0,,1,,2,113295,2,2,0,0,2,,450.0,500.0,42,1.0,7.0,4.0,2.0,1.5,2,2,122.77859738850725,350.0,29244.02592143783,6,1,3,4,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01422512759076185,19496.017280958553,5,3,5,5_1,5_1,5_0_1 -2076,2,24.0,0.0,9,120,720.0,,,0,53,0.0,0.0,,1000.0,481.69156117325366,,50,0,0,0,0,0,0,0,0,1,10.0,1,2009.0,6,117074,2,2,0,0,2,,987.0,,22,2.0,1.0,4.0,4.0,2.5,1,1,103.0635256104009,720.0,25003.69904917873,0,1,0,1,77.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03999408239689423,10001.479619671492,2,1,2_0,2_1_0,2_1_0,2_0_0 -2077,2,71.0,0.0,5,111,500.0,,,0,72,0.0,0.0,,638.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,3,122862,2,1,0,0,2,,450.0,,21,0.0,0.0,4.0,2.0,1.5,3,3,85.17693809554576,500.0,14337.038909699244,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0445001233531132,9558.025939799496,1,1,1_0,1_1_0,1_2_0,1_0_0 -2078,2,71.0,0.0,5,111,0.0,,,74,74,0.0,0.0,,381.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,3,105278,2,1,0,0,2,,1046.0,,41,1.0,1.0,6.0,4.0,2.3,2,2,207.75734736681758,0.0,101432.31491431395,5,5,0,1,190.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003756199395841985,44101.00648448433,10,5,10,10_1,10_2,10_0_0 -2079,1,45.0,330.0,7,111,534.0,,,0,56,0.0,0.0,,672.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,2,,5,133638,2,1,0,0,2,,540.0,580.0,32,2.0,1.0,5.0,4.0,2.3,3,2,138.86412101185445,534.0,5110.0,0,4,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13150684931506848,2221.739130434783,1,1,1_1,1_0_1,1_2_1,1_0_0 -2080,2,54.0,0.0,7,111,1080.0,,,0,63,0.0,0.0,,1103.0,39.567521096374406,,42,0,0,0,0,0,0,0,0,2,10.0,2,,5,121677,2,1,0,0,2,,600.0,482.0,12,1.0,1.0,3.0,1.0,1.0,2,2,129.969322576374,1080.0,60200.90962769197,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01832198228932787,60200.90962769197,10,5,10,10_0,10_2,10_0_0 -2081,2,58.0,0.0,8,111,450.0,,,0,37,0.0,0.0,,542.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,2,60.0,1,1999.0,6,123774,2,2,0,0,2,,300.0,,22,2.0,0.0,6.0,3.0,1.8,2,2,137.2130854592625,450.0,46804.36250494977,0,1,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01158011712995089,26002.423613860985,7,4,7,7_1,7_2,7_0_0 -2082,2,78.0,0.0,8,111,768.0,,,0,72,0.0,0.0,,1044.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,1999.0,6,116838,2,1,0,0,2,,1200.0,,21,2.0,2.0,4.0,4.0,2.3,1,1,146.41016819233565,768.0,31464.13007245237,0,5,0,1,137.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033180640862975834,13680.056553240163,3,2,3_0,3_1_0,3_2_0,3_0_0 -2083,2,65.0,0.0,7,111,700.0,,,0,77,0.0,0.0,,976.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,5,119284,2,2,0,0,2,,948.0,,21,2.0,3.0,5.0,5.0,2.5999999999999996,2,2,89.65094903956054,700.0,19931.0,0,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048968942852842305,7665.769230769231,1,1,1_0,1_1_0,1_2_0,1_0_0 -2084,2,27.0,0.0,7,111,300.0,,,0,85,0.0,0.0,,380.0,137.62616033521533,,20,0,0,0,0,0,0,0,0,0,,1,,5,109607,2,1,0,0,2,,400.0,,21,1.0,0.0,5.0,5.0,2.8,1,1,157.3203706596315,300.0,11631.933540974449,0,7,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0326686873391615,4154.261978919446,1,1,1_0,1_1_0,1_2_0,1_0_0 -2085,2,73.0,0.0,7,111,710.0,,,77,75,0.0,0.0,,802.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,1,,5,123257,2,3,0,0,2,,500.0,,41,1.0,3.0,5.0,3.0,2.0,2,2,101.616723640821,710.0,22628.9021483376,5,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03544140121083682,11314.4510741688,2,1,2_0,2_1_0,2_2_0,2_0_0 -2086,2,65.0,0.0,6,111,1200.0,,,0,43,0.0,0.0,,1340.0,240.84578058662683,,60,0,0,0,0,0,0,0,0,2,90.0,1,,4,111838,2,2,0,0,2,,700.0,,12,1.0,5.0,6.0,1.0,1.0,2,2,182.6181854206508,1200.0,47757.57034039619,0,1,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028058378817201853,47757.57034039619,10,5,10,10_1,10_2,10_0_0 -2087,2,68.0,0.0,7,111,252.0,,,78,77,0.0,0.0,,390.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,5,132553,2,1,0,0,2,,171.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,117.9950316759091,252.0,31253.03471900468,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0124787881723001,20835.356479336453,5,3,5,5_1,5_2,5_0_0 -2088,2,62.0,0.0,8,111,744.0,,,0,77,0.0,0.0,,1064.0,550.5046413408613,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,110596,2,2,0,0,2,,456.0,,21,2.0,1.0,4.0,3.0,2.0,1,1,142.82559695128026,744.0,9443.166369426752,0,5,0,1,118.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11267407121458882,4721.583184713376,1,1,1_0,1_1_0,1_2_0,1_0_0 -2089,2,81.0,0.0,8,111,700.0,,,0,78,0.0,0.0,,866.0,285.5742826955718,,12,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125252,2,2,0,0,2,,600.0,,21,1.0,5.0,7.0,2.0,1.5,4,3,91.98473499956802,700.0,14252.165145114843,0,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06076269753980751,9501.443430076562,1,1,1_0,1_1_0,1_2_0,1_0_0 -2090,2,50.0,0.0,8,111,624.0,,,43,33,0.0,0.0,,716.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,100743,2,1,0,0,2,,350.0,,43,2.0,0.0,4.0,5.0,2.8,3,2,94.53887721329991,624.0,77966.01000374819,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009183489061009773,27845.00357276721,7,4,7,7_1,7_2,7_0_0 -2091,1,56.0,64.0,6,111,0.0,,,0,55,0.0,0.0,,128.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,110295,2,1,0,0,2,,212.0,420.0,12,1.0,0.0,3.0,1.0,1.0,3,2,152.15285824132553,0.0,15371.723127047566,0,4,2,3,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008326977980417531,15371.723127047566,3,2,3_1,3_1_1,3_2_1,3_0_0 -2092,2,55.0,0.0,7,111,300.0,,,0,34,0.0,0.0,,346.0,79.13504219274881,,31,0,0,0,0,0,0,0,0,2,70.0,1,,5,119199,2,1,0,0,2,,180.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,236.5725961360591,300.0,63389.438089415584,0,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005458322560170685,63389.438089415584,10,5,10,10_1,10_2,10_0_0 -2093,0,53.0,0.0,9,111,640.0,,,0,68,0.0,496.8828023133397,,1258.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,100739,2,1,0,0,2,,936.0,,12,1.0,5.0,4.0,1.0,1.0,3,2,119.24839761771865,640.0,5754.017026106697,0,4,0,1,10.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2186298709740163,5754.017026106697,1,1,1_0,1_1_0,1_2_0,1_0_0 -2094,2,59.0,0.0,6,111,510.0,,,0,43,0.0,0.0,,602.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,2,90.0,1,,4,133493,2,1,0,0,2,,220.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,261.5638464251961,510.0,18079.0,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03329830189722883,12052.666666666666,2,1,2_0,2_1_0,2_2_0,2_0_0 -2095,2,56.0,0.0,8,111,480.0,,,77,46,0.0,0.0,,840.0,619.317721508469,,50,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,109130,2,1,0,0,2,,160.0,,42,1.0,3.0,4.0,2.0,1.5,4,4,113.72457914004546,480.0,61868.56939083741,5,1,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013577168637818899,41245.71292722494,9,5,9,9_1,9_2,9_0_0 -2096,2,73.0,0.0,2,111,1500.0,,,0,74,0.0,0.0,,1696.0,337.18409282127755,,71,0,0,0,0,0,0,0,0,0,,1,,2,129556,2,2,0,0,1,,800.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,82.83694207483325,1500.0,35845.72157189701,0,5,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04731387528629529,35845.72157189701,9,5,9,9_1,9_2,9_0_1 -2097,2,59.0,0.0,5,111,250.0,,,75,42,0.0,0.0,,422.0,295.89624472071296,,41,0,0,0,0,0,0,0,0,0,,1,,3,112432,2,1,0,0,1,,300.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,120.89241058584722,250.0,109057.8149150516,5,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0038695071997243706,72705.20994336774,10,5,10,10_1,10_2,10_0_0 -2098,1,30.0,399.0,7,111,140.0,,,0,85,0.0,0.0,,278.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,2,,5,117660,2,2,0,0,2,,500.0,440.0,31,0.0,0.0,3.0,4.0,1.9,4,4,81.43412436136443,140.0,19167.05668945787,0,6,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014504052682898548,10087.92457339888,2,1,2_1,2_0_1,2_2_1,2_0_0 -2099,1,37.0,302.0,7,111,240.0,,,0,52,0.0,0.0,,378.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,2,5.0,2,,5,121626,2,2,0,0,2,,240.0,380.0,32,1.0,0.0,3.0,4.0,2.1,5,4,83.53020998057588,240.0,10434.475285171104,0,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03622606692424607,4968.797754843383,1,1,1_1,1_0_1,1_2_1,1_0_0 -2100,2,62.0,0.0,6,111,450.0,,,77,77,0.0,0.0,,646.0,337.18409282127755,,70,0,0,0,0,0,0,0,0,0,,1,,4,126343,2,1,0,0,1,,500.0,,41,0.0,4.0,4.0,2.0,1.5,4,4,97.59096952863041,450.0,61318.93873959896,5,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010535081220882607,40879.29249306597,9,5,9,9_1,9_2,9_0_0 -2101,2,78.0,0.0,5,111,250.0,,,72,77,0.0,0.0,,488.0,409.43782699726563,,12,0,0,0,0,0,0,0,0,0,,1,,3,103614,2,1,0,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,82.41640104595002,250.0,18172.90555113837,5,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026853163277978473,12115.27036742558,2,1,2_0,2_1_0,2_2_0,2_0_0 -2102,2,60.0,0.0,9,111,850.0,,,74,33,0.0,0.0,,1000.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,2004.0,6,120013,2,1,0,0,1,,700.0,,42,1.0,1.0,5.0,2.0,1.5,5,4,111.28921648871672,850.0,91262.2185891332,5,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010957436883076961,60841.479059422134,10,5,10,10_1,10_2,10_0_0 -2104,2,23.0,0.0,2,111,160.0,,,0,85,0.0,0.0,,252.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,0,,1,,2,103970,2,2,0,0,2,,125.0,,21,0.0,4.0,4.0,2.0,1.5,4,3,82.41640104595002,160.0,21630.482804343428,0,7,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011650225391612529,14420.321869562285,3,2,3_0,3_1_0,3_2_0,3_0_1 -2105,2,46.0,0.0,9,111,700.0,,,0,85,0.0,0.0,,700.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2007.0,6,111937,2,1,0,0,2,,200.0,422.0,11,0.0,0.0,3.0,1.0,1.0,2,2,97.49138168729321,700.0,21418.245476476324,0,7,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03268241559603052,21418.245476476324,6,3,6,6_0,6_2,6_0_0 -2106,1,30.0,318.0,7,111,0.0,,,0,53,0.0,0.0,,179.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,5,124376,2,2,0,0,2,,515.0,388.0,32,1.0,0.0,3.0,3.0,1.6,2,2,86.91786493634221,0.0,8814.439340284678,0,4,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020307587708036673,5509.024587677924,1,1,1_1,1_0_1,1_2_1,1_0_0 -2107,1,60.0,253.0,7,111,460.0,,,0,56,0.0,0.0,,690.0,395.67521096374406,,31,0,0,0,0,0,0,0,0,0,,2,,5,100045,2,2,0,0,2,,460.0,383.0,22,1.0,2.0,3.0,2.0,1.5,3,3,92.08434247175958,460.0,13738.267518825893,0,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05022467345714994,9158.845012550595,1,1,1_1,1_0_1,1_2_1,1_0_0 -2108,0,85.0,0.0,5,111,0.0,,,0,72,0.0,0.0,,280.0,481.69156117325366,,12,0,0,0,0,0,0,0,0,0,,1,,3,130212,2,1,0,0,2,,160.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,96.71659752470846,0.0,9657.745882381838,0,5,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028992272462955413,9657.745882381838,1,1,1_0,1_1_0,1_2_0,1_0_0 -2109,2,49.0,0.0,6,111,1200.0,,,0,55,0.0,0.0,,1476.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,2,45.0,1,,4,100487,2,1,0,0,1,,500.0,,32,1.0,1.0,4.0,2.0,1.5,3,3,82.53707118137785,1200.0,27145.10439944637,0,1,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05437444550885954,18096.73626629758,4,2,4_0,4_1_0,4_2_0,4_0_0 -2111,1,31.0,197.0,2,111,382.0,,,0,52,0.0,0.0,,524.0,244.28643459500722,,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,120636,2,2,0,0,2,,320.0,493.0,32,1.0,0.0,4.0,3.0,1.6,2,2,93.03342987149142,382.0,28388.747174215365,0,1,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018458017776703202,17742.966983884602,4,2,4_1,4_0_1,4_2_1,4_0_1 -2112,2,67.0,0.0,2,111,270.0,,,0,77,0.0,0.0,,315.0,77.41471518855863,,50,0,0,0,0,0,0,0,0,0,,2,,2,132439,2,2,0,0,1,,120.0,611.0,11,0.0,2.0,4.0,1.0,1.0,2,2,111.69969815773413,270.0,24742.696379289562,0,5,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012731029600462834,24742.696379289562,7,4,7,7_0,7_2,7_0_1 -2113,0,66.0,0.0,2,111,124.0,,,0,22,0.0,0.0,,147.0,39.567521096374406,,12,0,0,0,0,0,0,0,0,0,,1,,2,120287,2,2,0,0,2,,120.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,80.83496927018956,124.0,15401.386536386664,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009544595199445454,15401.386536386664,3,2,3_0,3_1_0,3_2_0,3_0_1 -2114,1,49.0,229.0,2,111,300.0,,,69,64,0.0,51.75862524097289,,490.0,240.84578058662683,,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,124793,2,2,0,0,2,,250.0,550.0,43,2.0,2.0,3.0,2.0,1.5,4,4,72.67560978584741,300.0,16277.897727336818,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.030102167258189767,10851.931818224546,2,1,2_1,2_1_1,2_2_1,2_0_1 -2115,2,93.0,0.0,2,111,345.0,,,0,86,0.0,0.0,,488.0,246.0067615991974,,31,0,0,0,0,0,0,0,0,0,,1,,2,114203,2,3,0,0,2,,297.0,,21,1.0,7.0,5.0,2.0,1.5,3,2,76.40603202182514,345.0,8346.784049662487,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05846563144517114,5564.522699774991,1,1,1_0,1_1_0,1_2_0,1_0_1 -2116,1,26.0,421.0,6,111,211.0,,,0,85,0.0,20.703450096389155,,349.0,202.9985864944426,,50,0,0,0,0,0,0,0,0,0,,2,,4,129941,2,1,0,0,2,,217.0,550.0,31,0.0,2.0,3.0,3.0,1.8,2,2,86.42234690813028,211.0,23718.919172977035,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014713992549779236,13177.177318320575,2,1,2_1,2_0_1,2_2_1,2_0_0 -2117,2,47.0,0.0,6,111,1100.0,,,52,52,0.0,0.0,,1175.0,129.02452531426437,,41,0,0,0,0,0,0,0,0,2,90.0,2,,4,100186,2,1,0,0,2,,500.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,94.30146734743114,1100.0,85064.5523847921,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013813039239715877,42532.27619239605,9,5,9,9_0,9_2,9_0_0 -2118,2,57.0,0.0,8,111,900.0,,,75,43,0.0,0.0,,1389.0,0.0,,70,0,0,0,0,0,0,0,0,2,60.0,1,2002.0,6,111747,2,1,0,0,2,,352.0,,42,2.0,1.0,5.0,3.0,2.0,2,2,104.905978357108,900.0,64364.36519037978,5,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02158026410874331,32182.18259518989,8,4,8,8_1,8_2,8_0_0 -2119,1,57.0,290.0,7,111,0.0,,,0,69,0.0,0.0,,143.0,246.0067615991974,,31,0,0,0,0,0,0,0,0,0,,1,,5,101809,1,3,0,0,2,,0.0,,22,2.0,2.0,3.0,2.0,1.5,2,2,85.22558877604881,0.0,18609.507142845203,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0076842443436219215,12406.338095230136,2,1,2_1,2_1_1,2_2_1,2_0_0 -2120,1,35.0,357.0,7,111,0.0,,,52,31,0.0,0.0,,95.0,163.4310653980682,,20,0,0,0,0,0,0,0,0,0,,1,,5,131617,2,1,0,0,2,,100.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,80.93059507136977,0.0,43264.503524108455,4,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.002195795450352568,24035.835291171363,6,3,6,6_1,6_2,6_0_0 -2121,0,89.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,275.0,0.0,,71,0,0,0,0,0,0,0,0,0,,7,,2,104650,2,1,0,0,2,,0.0,,11,0.0,5.0,3.0,1.0,1.0,2,2,130.0726871335308,0.0,11608.766820531688,0,5,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0236889933488564,11608.766820531688,2,1,2_0,2_1_0,2_2_0,2_0_1 -2122,0,40.0,0.0,1,111,900.0,,,22,46,0.0,0.0,,1677.0,0.0,,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,102792,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,5,4,88.7487838242277,900.0,50218.623541141336,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03339398577155598,27899.235300634075,7,4,7,7_1,7_2,7_1_0 -2123,0,73.0,0.0,2,111,960.0,,,0,77,0.0,25.879312620486445,,1128.0,246.0067615991974,,50,0,0,0,0,0,0,0,0,0,,1,,2,116044,2,2,0,0,2,,186.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,93.426414726828,960.0,14341.531270628662,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07865268908279932,14341.531270628662,3,2,3_0,3_1_0,3_2_0,3_0_1 -2124,2,49.0,0.0,8,111,588.0,,,85,68,0.0,0.0,,1239.0,246.0067615991974,,31,0,0,0,0,0,0,0,0,2,16.0,1,2001.0,6,100524,2,1,0,0,2,,400.0,,42,1.0,0.0,6.0,4.0,2.3,3,2,85.89931143346216,588.0,25748.983823170885,6,1,1,2,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048118403759493375,11195.210357900385,2,1,2_0,2_1_0,2_2_0,2_0_0 -2125,2,83.0,0.0,9,111,0.0,,,0,78,0.0,0.0,,47.0,80.85536919693901,,12,0,0,0,0,0,0,0,0,0,,1,2008.0,6,111693,2,1,0,0,2,,0.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,86.01037157664008,0.0,13865.597534705808,0,5,0,1,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0033896844245160196,13865.597534705808,3,2,3_0,3_1_0,3_2_0,3_0_0 -2126,0,24.0,0.0,7,111,600.0,,,0,55,0.0,51.75862524097289,,696.0,79.13504219274881,,42,0,0,0,0,0,0,0,0,2,35.0,1,,5,120639,2,2,0,0,2,,150.0,,12,1.0,0.0,7.0,1.0,1.0,2,2,113.09820704828928,600.0,20324.324674025367,0,1,5,0,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03424468026184865,20324.324674025367,5,3,5,5_1,5_2,5_0_0 -2127,0,34.0,0.0,2,111,270.0,,,53,45,0.0,0.0,,342.0,123.8635443016938,,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,129260,2,2,0,0,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,68.92383720764691,270.0,68780.95319893255,1,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0049723067810771154,28658.73049955523,8,4,8,8_1,8_2,8_0_1 -2128,2,78.0,0.0,2,111,610.0,,,77,71,0.0,51.75862524097289,,826.0,285.5742826955718,,60,0,0,0,0,0,0,0,0,0,,1,,2,108936,2,1,0,0,2,,108.0,,41,2.0,5.0,5.0,4.0,2.5,3,2,76.13350630441292,610.0,21740.517731621178,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03799357541511527,8696.20709264847,1,1,1_0,1_1_0,1_2_0,1_0_1 -2129,2,63.0,0.0,7,111,210.0,,,0,74,0.0,0.0,,210.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,5,133636,2,1,0,0,2,,200.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,86.13488956330956,210.0,95677.24344812694,0,5,0,1,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0021948792882380136,95677.24344812694,10,5,10,10_1,10_2,10_0_0 -2130,2,56.0,0.0,2,111,408.0,,,78,55,0.0,103.51725048194578,,770.0,450.7256750978302,,43,0,0,0,0,0,0,0,0,0,,1,,2,119730,2,2,0,0,2,,537.0,,42,2.0,0.0,4.0,3.0,2.0,2,2,81.13518831335047,408.0,54698.65977549847,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014077127358519142,27349.329887749234,7,4,7,7_1,7_2,7_0_1 -2131,0,44.0,0.0,2,111,240.0,,,0,34,0.0,0.0,,612.0,275.25232067043066,,12,0,0,0,0,0,0,0,0,2,15.0,1,,2,128097,2,3,0,0,2,,800.0,,32,1.0,0.0,4.0,4.0,2.5,2,2,128.3426653221623,240.0,39182.0,0,1,5,0,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015619417079271093,15672.8,3,2,3_0,3_1_0,3_2_0,3_0_1 -2132,0,50.0,0.0,2,111,276.0,,,0,62,0.0,77.63793786145933,,375.0,41.2878481005646,,60,0,0,0,0,0,0,0,0,2,180.0,1,,2,110976,2,2,0,0,2,,160.0,,22,2.0,3.0,8.0,2.0,1.5,2,2,86.13488956330956,276.0,18652.891993629586,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020104121126529418,12435.26132908639,2,1,2_0,2_1_0,2_2_0,2_0_1 -2133,2,24.0,0.0,6,111,900.0,,,0,55,0.0,25.879312620486445,,1210.0,490.29319619420465,,20,0,0,0,0,0,0,0,0,0,,1,,4,115054,2,1,0,0,2,,1798.0,,22,4.0,2.0,5.0,4.0,2.5,2,2,81.13518831335047,900.0,19948.040648350827,0,2,0,1,138.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06065758644320964,7979.216259340331,1,1,1_0,1_1_0,1_2_0,1_0_0 -2134,1,24.0,357.0,6,111,600.0,,,0,90,0.0,0.0,,647.0,80.85536919693901,,20,0,0,0,0,0,0,0,0,0,,2,,4,121075,2,1,0,0,2,,483.0,409.0,22,2.0,0.0,3.0,2.0,1.5,2,2,85.92156640229788,600.0,18920.441730522158,0,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03419581895682012,12613.627820348105,2,1,2_1,2_0_1,2_2_1,2_0_0 -2135,1,41.0,300.0,6,111,289.0,,,0,85,0.0,0.0,,431.0,244.28643459500722,,70,0,0,0,0,0,0,0,0,0,,2,,4,110625,2,1,0,0,2,,340.0,490.0,31,0.0,2.0,4.0,3.0,2.0,1,1,83.32108792185984,289.0,12090.812902088244,0,7,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03564690012906912,6045.406451044122,1,1,1_1,1_0_1,1_2_1,1_0_0 -2136,2,58.0,0.0,6,111,0.0,,,0,45,0.0,0.0,,818.0,244.28643459500722,,42,0,0,0,0,0,0,0,0,1,30.0,2,,4,128303,1,3,0,0,2,,469.0,600.0,32,2.0,2.0,4.0,3.0,2.0,2,2,111.0794659937959,0.0,31403.589553978003,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026047977687199807,15701.794776989002,3,2,3_0,3_0_0,3_2_0,3_0_0 -2137,2,59.0,0.0,7,111,500.0,,,0,52,0.0,0.0,,640.0,240.84578058662683,,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,112506,2,1,0,0,1,,350.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,76.24497732716756,500.0,46405.389224838014,0,1,1,2,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013791501605538662,30936.92614989201,8,4,8,8_1,8_2,8_0_0 -2138,1,62.0,30.0,9,111,270.0,,,77,78,0.0,25.879312620486445,,390.0,163.4310653980682,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,112502,2,1,0,0,2,,245.0,,41,0.0,3.0,4.0,3.0,2.0,4,3,108.56362707426386,270.0,22212.64612875694,6,5,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017557565980178207,11106.32306437847,2,1,2_1,2_1_1,2_2_1,2_0_0 -2139,0,33.0,0.0,5,111,390.0,,,0,55,0.0,0.0,,651.0,246.0067615991974,,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,104552,2,1,0,0,2,,130.0,,32,1.0,0.0,3.0,5.0,2.2,2,2,68.19622845640006,390.0,23870.89214067688,0,1,5,0,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02727170799329582,10850.40551848949,2,1,2_0,2_1_0,2_2_0,2_0_0 -2140,1,51.0,280.0,7,111,324.0,,,0,81,0.0,0.0,,396.0,123.8635443016938,,41,0,0,0,0,0,0,0,0,0,,2,,5,100759,2,2,0,0,2,,187.0,399.0,12,1.0,5.0,4.0,1.0,1.0,1,1,88.08459419462226,324.0,9512.555921591102,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04162919022648581,9512.555921591102,1,1,1_1,1_0_1,1_2_1,1_0_0 -2141,1,44.0,336.0,7,111,390.0,,,0,85,0.0,0.0,,532.0,244.28643459500722,,31,0,0,0,0,0,0,0,0,0,,2,,5,131365,2,1,0,0,2,,240.0,425.0,31,0.0,1.0,4.0,5.0,2.8,2,2,67.8303960713787,390.0,31136.452692485524,0,6,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01708608251730593,11120.161675887688,2,1,2_1,2_0_1,2_2_1,2_0_0 -2142,0,60.0,0.0,5,111,100.0,,,0,69,0.0,0.0,,242.0,244.28643459500722,,31,0,0,0,0,0,0,0,0,0,,1,,3,103441,2,1,0,0,2,,440.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,80.95332394917754,100.0,3091.211681393622,0,4,5,0,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07828645364425457,3091.211681393622,1,1,1_0,1_1_0,1_2_0,1_0_0 -2143,2,76.0,0.0,2,111,282.0,,,0,77,0.0,0.0,,424.0,244.28643459500722,,50,0,0,0,0,0,0,0,0,0,,1,,2,108853,2,2,0,0,2,,55.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,85.52545077886504,282.0,15334.643865373693,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027649810698076323,15334.643865373693,3,2,3_0,3_1_0,3_2_0,3_0_1 -2144,2,44.0,0.0,7,111,600.0,,,90,53,0.0,62.110350289167464,,683.0,39.567521096374406,,50,0,0,0,0,0,0,0,0,0,,1,,5,120332,2,2,0,0,2,,499.0,,43,3.0,5.0,4.0,6.0,3.3,3,3,68.76531704385829,600.0,65692.0,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010397004201424831,19906.666666666668,5,3,5,5_1,5_2,5_0_0 -2145,0,106.0,0.0,2,111,480.0,,,0,86,0.0,51.75862524097289,,815.0,490.29319619420465,,10,0,0,0,0,0,0,0,0,0,,1,,2,107694,2,2,0,0,2,,410.0,,21,1.0,6.0,4.0,2.0,1.5,2,2,76.24497732716756,480.0,23171.83651593253,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035172007166528255,15447.891010621686,3,2,3_0,3_1_0,3_2_0,3_0_1 -2146,2,80.0,0.0,2,111,0.0,,,71,71,0.0,0.0,,92.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,2,106370,2,1,0,0,1,,329.0,,41,0.0,8.0,4.0,2.0,1.5,1,1,79.30827234127823,0.0,22680.260067521358,5,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004056390875858874,15120.173378347572,3,2,3_0,3_1_0,3_2_0,3_0_1 -2147,0,26.0,0.0,7,111,0.0,,,0,54,0.0,0.0,,233.0,0.0,,44,0,0,0,0,0,0,0,0,2,15.0,1,,5,105798,2,1,0,0,1,,323.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,72.78201792262433,0.0,10299.829919343058,0,1,5,0,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022621732768851505,10299.829919343058,2,1,2_0,2_1_0,2_2_0,2_0_0 -2148,2,55.0,0.0,6,111,0.0,,,0,69,0.0,0.0,,434.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,,4,123650,2,2,0,0,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,110.4224002475225,0.0,5456.656431320638,0,4,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07953588529211503,5456.656431320638,1,1,1_0,1_1_0,1_2_0,1_0_0 -2149,0,57.0,0.0,2,111,372.0,,,0,62,0.0,77.63793786145933,,520.0,125.58387130588399,,44,0,0,0,0,0,0,0,0,2,65.0,1,,2,118493,2,1,0,0,1,,102.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,96.56907169622964,372.0,25944.0,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020043169904409498,25944.0,7,4,7,7_1,7_2,7_0_1 -2150,2,91.0,0.0,7,111,0.0,,,56,72,0.0,0.0,,92.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,2,240.0,7,,5,105663,1,2,0,0,2,,0.0,,42,1.0,2.0,2.0,2.0,1.5,4,3,86.13630383107771,0.0,8866.866766850517,1,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010375705693915384,5911.244511233678,1,1,1_0,1_1_0,1_2_0,1_0_0 -2151,2,80.0,0.0,2,111,210.0,,,0,77,0.0,0.0,,599.0,197.83760548187203,,70,0,0,0,0,0,0,0,0,0,,1,,2,126161,2,1,0,0,2,,111.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,68.5400703518378,210.0,15663.80236815283,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038241034068322306,15663.80236815283,3,2,3_0,3_1_0,3_2_0,3_0_1 -2152,0,77.0,0.0,5,111,180.0,,,0,78,0.0,0.0,,420.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,3,125151,2,2,0,0,2,,112.0,,11,0.0,3.0,2.0,1.0,1.0,3,2,90.6682895346284,180.0,12647.211120218746,0,5,5,0,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03320890242185944,12647.211120218746,2,1,2_0,2_1_0,2_2_0,2_0_0 -2153,2,52.0,0.0,7,111,360.0,,,0,67,0.0,25.879312620486445,,431.0,79.13504219274881,,12,0,0,0,0,0,0,0,0,0,,1,,5,120063,2,2,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,5,4,91.40656112657526,360.0,3848.5928558719406,0,4,0,1,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11198898302334251,3848.5928558719406,1,1,1_0,1_1_0,1_2_0,1_0_0 -2154,2,79.0,0.0,7,111,0.0,,,0,78,0.0,0.0,,704.0,123.8635443016938,,12,0,0,0,0,0,0,0,0,0,,1,,5,125864,2,1,0,0,2,,137.0,,11,0.0,6.0,3.0,1.0,1.0,2,2,80.95332394917754,0.0,11486.534193130428,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06128915721341171,11486.534193130428,2,1,2_0,2_1_0,2_2_0,2_0_0 -2155,0,39.0,0.0,6,111,660.0,,,65,56,0.0,77.63793786145933,,877.0,244.28643459500722,,12,0,0,0,0,0,0,0,0,2,40.0,1,,4,130255,2,1,0,0,2,,200.0,,43,2.0,3.0,3.0,3.0,1.8,2,2,80.89275310214704,660.0,25235.321033812615,1,1,5,0,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03475287668521888,14019.622796562564,3,2,3_0,3_1_0,3_2_0,3_0_0 -2156,2,83.0,0.0,2,111,335.0,,,0,78,0.0,25.879312620486445,,478.0,202.9985864944426,,31,0,0,0,0,0,0,0,0,0,,1,,2,130986,1,2,0,0,2,,381.0,,21,4.0,2.0,4.0,5.0,3.0,2,2,55.036782436737724,335.0,20733.443550769352,0,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02305453982255943,6911.1478502564505,1,1,1_0,1_1_0,1_2_0,1_0_1 -2157,2,46.0,0.0,2,111,798.0,,,42,42,0.0,25.879312620486445,,1066.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,112374,2,1,0,0,2,,299.0,740.0,43,2.0,1.0,3.0,3.0,1.8,1,1,99.38299985455812,798.0,39625.27983042961,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026902018220736505,22014.04435023867,6,3,6,6_1,6_2,6_0_1 -2158,2,54.0,0.0,7,111,900.0,,,56,62,0.0,103.51725048194578,,1075.0,129.02452531426437,,10,0,0,0,0,0,0,0,0,0,,1,,5,108394,2,1,0,0,1,,340.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,80.6039389876922,900.0,45046.316042355495,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02386432664081153,30030.87736157033,8,4,8,8_1,8_2,8_0_0 -2160,2,74.0,0.0,7,111,324.0,,,0,77,0.0,51.75862524097289,,537.0,280.41330168300124,,50,0,0,0,0,0,0,0,0,0,,1,,5,102877,2,2,0,0,1,,243.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,76.13350630441292,324.0,23263.092405039086,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023083775391945692,23263.092405039086,6,3,6,6_1,6_2,6_0_0 -2161,2,82.0,0.0,7,111,234.0,,,0,78,0.0,0.0,,325.0,156.54975738130744,,41,0,0,0,0,0,0,0,0,0,,1,,5,121285,2,2,0,0,2,,156.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,107.07401108983797,234.0,11130.60429286462,0,5,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02919877406910821,11130.60429286462,2,1,2_0,2_1_0,2_2_0,2_0_0 -2162,2,60.0,0.0,7,111,590.0,,,52,53,0.0,0.0,,727.0,235.68479957405626,,31,0,0,0,0,0,0,0,0,0,,1,,5,126068,2,2,0,0,1,,586.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,77.390424810329,590.0,15682.113868860697,7,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04635854618066336,10454.742579240465,2,1,2_0,2_1_0,2_2_0,2_0_0 -2163,2,64.0,0.0,2,111,1080.0,,,78,75,0.0,155.27587572291867,,1349.0,204.71891349863282,,71,0,0,0,0,0,0,0,0,0,,1,,2,107411,2,1,0,0,2,,500.0,,41,1.0,0.0,5.0,3.0,2.0,2,2,97.01920730652368,1080.0,75262.14928438861,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01792401642560876,37631.074642194304,9,5,9,9_1,9_2,9_0_1 -2164,0,65.0,0.0,2,111,0.0,,,0,77,0.0,0.0,,1100.0,244.28643459500722,,12,0,0,0,0,0,0,0,0,0,,1,,2,115870,2,1,0,0,2,,540.0,,21,0.0,9.0,6.0,3.0,2.0,1,1,99.01789735019905,0.0,46387.51888341798,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023713275175689857,23193.75944170899,6,3,6,6_1,6_2,6_0_1 -2165,2,49.0,0.0,9,111,360.0,,,0,46,0.0,0.0,,881.0,163.4310653980682,,42,0,0,0,0,0,0,0,0,0,,1,2005.0,6,133677,2,1,0,0,2,,320.0,,32,1.0,1.0,3.0,3.0,2.0,1,1,84.8999903293639,360.0,15699.219179854419,0,4,0,1,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056117440613257914,7849.6095899272095,1,1,1_0,1_1_0,1_2_0,1_0_0 -2166,1,44.0,459.0,7,111,0.0,,,0,85,0.0,0.0,,611.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,108601,2,1,0,0,2,,0.0,,31,0.0,0.0,4.0,4.0,1.9,2,2,134.2241366246862,0.0,4452.20167001216,0,6,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13723547253382418,2343.2640368485054,1,1,1_1,1_1_1,1_2_1,1_0_0 -2167,2,57.0,0.0,6,111,1170.0,,,0,77,0.0,103.51725048194578,,1320.0,86.01635020950958,,42,0,0,0,0,0,0,0,0,0,,1,,4,118711,2,1,0,0,1,,260.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,87.42750313876273,1170.0,23833.104395012855,0,5,1,2,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055385147403466825,23833.104395012855,6,3,6,6_1,6_2,6_0_0 -2168,2,54.0,0.0,6,111,0.0,,,31,62,0.0,0.0,,306.0,163.4310653980682,,12,0,0,0,0,0,0,0,0,0,,1,,4,116736,2,1,0,0,2,,357.0,,43,2.0,2.0,4.0,5.0,2.5999999999999996,1,1,91.7460427960533,0.0,9053.84068274322,1,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033797811417561316,3482.2464164397006,1,1,1_0,1_1_0,1_2_0,1_0_0 -2169,2,61.0,0.0,7,111,528.0,,,77,63,0.0,51.75862524097289,,721.0,246.0067615991974,,70,0,0,0,0,0,0,0,0,0,,1,,5,110532,2,1,0,0,2,,169.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,79.30827234127823,528.0,27251.329814597862,5,4,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026457424459843355,18167.55320973191,4,2,4_0,4_1_0,4_2_0,4_0_0 -2170,2,79.0,0.0,2,111,93.0,,,0,72,0.0,0.0,,139.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,0,,1,,2,125459,2,2,0,0,2,,400.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,126.26300408212427,93.0,5650.844494892168,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024598093280684494,5650.844494892168,1,1,1_0,1_1_0,1_2_0,1_0_1 -2171,2,69.0,0.0,8,111,4800.0,,,0,75,0.0,0.0,,5112.0,536.7420253073398,,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125382,2,2,0,0,2,,480.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,101.21658591438154,4800.0,28679.863996458123,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1782435230735863,28679.863996458123,8,4,8,8_1,8_2,8_0_0 -2172,1,50.0,340.0,7,111,264.0,,,0,47,0.0,0.0,,614.0,602.1144514665671,,31,0,0,0,0,0,0,0,0,0,,2,,5,127644,1,3,0,0,2,,250.0,389.0,32,1.0,0.0,3.0,3.0,2.0,1,1,147.57715433364024,264.0,2473.1575931024972,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.24826561870234748,1236.5787965512486,1,1,1_1,1_0_1,1_2_1,1_0_0 -2173,2,75.0,0.0,5,111,540.0,,,0,77,0.0,0.0,,816.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,3,132784,2,1,0,0,2,,240.0,,21,1.0,0.0,5.0,4.0,2.5,2,2,78.45906731852261,540.0,29214.875868879724,0,5,0,1,124.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027930976111701356,11685.95034755189,2,1,2_0,2_1_0,2_2_0,2_0_0 -2174,0,59.0,0.0,1,111,0.0,,,0,63,0.0,0.0,,469.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,1,,1,119211,2,2,0,0,2,,118.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,143.51989156993287,0.0,7045.063385709991,0,4,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06657143794494545,7045.063385709991,1,1,1_0,1_1_0,1_2_0,1_1_0 -2175,2,71.0,0.0,2,111,510.0,,,0,78,0.0,0.0,,648.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,2,109866,2,1,0,0,2,,720.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,101.21658591438154,510.0,15699.457355021,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04127531196438179,15699.457355021,3,2,3_0,3_1_0,3_2_0,3_0_1 -2176,0,44.0,0.0,7,111,2100.0,,,56,63,0.0,0.0,,2238.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,5,126107,2,2,0,0,2,,1500.0,,43,2.0,0.0,4.0,5.0,2.8,3,2,82.8414841816684,2100.0,29006.122961285353,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07715612331186322,10359.329629030484,2,1,2_0,2_1_0,2_2_0,2_0_0 -2177,0,54.0,0.0,2,111,762.0,,,0,55,0.0,0.0,,834.0,123.8635443016938,,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,132398,2,2,0,0,2,,360.0,,32,1.0,0.0,3.0,2.0,1.5,5,4,128.65370689465752,762.0,19332.205390120995,0,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043140447929763084,12888.13692674733,2,1,2_0,2_1_0,2_2_0,2_0_1 -2178,2,62.0,0.0,9,111,390.0,,,55,77,0.0,0.0,,390.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,127146,2,1,0,0,1,,113.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,80.08797535958878,390.0,26677.721209835894,4,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014618939786214187,17785.14747322393,4,2,4_0,4_1_0,4_2_0,4_0_0 -2179,2,79.0,0.0,7,111,318.0,,,0,75,0.0,0.0,,387.0,118.70256328912323,,12,0,0,0,0,0,0,0,0,0,,1,,5,116519,2,1,0,0,2,,172.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,86.92400310740058,318.0,4640.096579245869,0,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08340343641357938,4640.096579245869,1,1,1_0,1_1_0,1_2_0,1_0_0 -2180,2,42.0,0.0,7,111,0.0,,,54,21,0.0,47.617935221695056,,138.0,158.27008438549763,,42,0,0,0,0,0,0,0,0,0,,1,,5,118579,2,3,0,0,2,,400.0,800.0,43,2.0,5.0,5.0,4.0,2.1,2,2,112.49099932958389,0.0,37166.247822149206,4,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037130463279577814,17698.213248642478,4,2,4_0,4_1_0,4_2_0,4_0_0 -2181,2,75.0,0.0,6,111,600.0,,,77,78,0.0,0.0,,738.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,4,104171,2,1,0,0,2,,260.0,,41,0.0,4.0,6.0,2.0,1.5,4,4,73.40102057496635,600.0,17873.699453270547,5,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04128971743815241,11915.799635513698,2,1,2_0,2_1_0,2_2_0,2_0_0 -2182,2,80.0,0.0,2,111,1680.0,,,71,77,0.0,0.0,,2116.0,750.0625738269235,,12,0,0,0,0,0,0,0,0,0,,1,,2,123653,2,1,0,0,2,,480.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,58.26754432471683,1680.0,26633.450983806928,5,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07944896068055629,17755.63398920462,4,2,4_0,4_1_0,4_2_0,4_0_1 -2183,0,82.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,144.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,3,,2,127024,2,2,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,97.15653917276066,0.0,10923.842105263146,0,5,5,0,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013182175155261563,10923.842105263146,2,1,2_0,2_0_0,2_2_0,2_0_1 -2184,2,93.0,0.0,2,111,1400.0,,,86,86,0.0,0.0,,1750.0,602.1144514665671,,50,0,0,0,0,0,0,0,0,0,,1,,2,126871,2,1,0,0,2,,650.0,,41,0.0,10.0,4.0,2.0,1.5,2,2,86.61396179678232,1400.0,17478.38174273859,6,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10012368569115611,11652.25449515906,2,1,2_0,2_1_0,2_2_0,2_0_1 -2185,0,51.0,0.0,2,111,200.0,,,0,85,0.0,0.0,,292.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,2,122958,2,1,0,0,2,,460.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,71.84386004544594,200.0,10871.078947368413,0,7,0,1,154.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026860259355460308,7247.385964912275,1,1,1_0,1_1_0,1_2_0,1_0_1 -2186,1,44.0,387.0,6,111,350.0,,,0,85,0.0,0.0,,442.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,2,,4,112117,2,1,0,0,2,,605.0,395.0,31,0.0,1.0,3.0,3.0,1.8,2,2,85.47200957932131,350.0,10056.124897504396,0,6,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043953312484184645,5586.736054169109,1,1,1_1,1_0_1,1_2_1,1_0_0 -2187,0,48.0,0.0,7,111,1000.0,,,62,43,0.0,0.0,,1092.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,0,,1,,5,125194,2,1,0,0,2,,240.0,,43,2.0,1.0,3.0,4.0,2.5,3,2,88.67249283228284,1000.0,9383.022727272728,4,4,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1163804065853948,3753.209090909091,1,1,1_0,1_1_0,1_2_0,1_0_0 -2188,2,58.0,0.0,6,111,780.0,,,52,31,0.0,0.0,,924.0,247.7270886033876,,71,0,0,0,0,0,0,0,0,0,,1,,4,100627,2,1,0,0,2,,600.0,,43,2.0,3.0,3.0,3.0,1.8,5,5,103.31329504244444,780.0,5110.0,1,1,1,2,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18082191780821918,2838.8888888888887,1,1,1_0,1_1_0,1_2_0,1_0_0 -2189,1,42.0,201.0,6,111,389.0,,,0,81,0.0,0.0,,485.0,165.1513924022584,,20,0,0,0,0,0,0,0,0,0,,2,,4,123576,2,2,0,0,2,,247.0,213.0,12,1.0,0.0,1.0,1.0,1.0,3,2,145.2377628774767,389.0,6573.323218900845,0,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07378307499096311,6573.323218900845,1,1,1_1,1_0_1,1_2_1,1_0_0 -2191,2,74.0,0.0,5,111,300.0,,,0,78,0.0,0.0,,576.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,3,117342,2,1,0,0,2,,331.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,95.10105104532023,300.0,10162.239165278224,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05668042157165961,10162.239165278224,2,1,2_0,2_1_0,2_2_0,2_0_0 -2192,1,51.0,253.0,7,111,500.0,,,0,69,0.0,0.0,,592.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,2,,5,108254,1,2,0,0,2,,130.0,374.0,12,1.0,0.0,2.0,1.0,1.0,2,2,90.06813218022374,500.0,7669.039950099854,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07719349538559803,7669.039950099854,1,1,1_1,1_0_1,1_2_1,1_0_0 -2193,2,74.0,0.0,6,111,360.0,,,77,77,0.0,0.0,,704.0,591.7924894414259,,12,0,0,0,0,0,0,0,0,0,,1,,4,110183,2,2,0,0,2,,708.0,,41,1.0,2.0,5.0,4.0,2.3,3,1,73.71854818674386,360.0,59679.306081237315,5,5,0,1,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011796383809183261,25947.52438314666,7,4,7,7_1,7_2,7_0_0 -2194,2,62.0,0.0,7,111,240.0,,,0,52,0.0,0.0,,309.0,118.70256328912323,,60,0,0,0,0,0,0,0,0,3,30.0,2,,5,130247,2,1,0,0,2,,482.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,112.40796570653936,240.0,20422.82007014915,0,1,0,1,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015130133788508832,20422.82007014915,5,3,5,5_0,5_2,5_0_0 -2195,2,46.0,0.0,2,111,210.0,,,0,42,0.0,0.0,,210.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,108801,2,2,0,0,2,,500.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,81.42426447208145,210.0,9393.964867160612,0,4,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022354778090997257,9393.964867160612,1,1,1_0,1_1_0,1_2_0,1_0_1 -2196,2,82.0,0.0,5,111,216.0,,,0,77,0.0,0.0,,504.0,495.4541772067752,,50,0,0,0,0,0,0,0,0,0,,1,,3,115853,2,2,0,0,2,,236.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,105.58182852443883,216.0,25530.27009947118,0,5,0,1,144.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019741271754521686,25530.27009947118,7,4,7,7_1,7_2,7_0_0 -2197,1,54.0,350.0,9,111,300.0,,,0,55,0.0,0.0,,346.0,79.13504219274881,,41,0,0,0,0,0,0,0,0,0,,2,2006.0,6,118952,2,1,0,0,2,,400.0,508.0,32,1.0,1.0,2.0,2.0,1.3,2,2,113.43912113302224,300.0,7499.666666666667,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.046135383794835325,5768.974358974359,1,1,1_1,1_0_1,1_2_1,1_0_0 -2198,2,43.0,0.0,7,111,677.0,,,0,46,0.0,0.0,,677.0,0.0,,60,0,0,0,0,0,0,0,0,2,5.0,2,,5,105589,2,1,0,0,2,,706.0,690.0,12,1.0,0.0,2.0,1.0,1.0,1,1,101.68920165005693,677.0,27535.97788621665,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024586016258346784,27535.97788621665,7,4,7,7_0,7_2,7_0_0 -2199,0,56.0,0.0,6,111,468.0,,,52,64,0.0,0.0,,744.0,474.81025315649293,,42,0,0,0,0,0,0,0,0,0,,1,,4,107884,2,1,0,0,2,,447.0,,43,3.0,1.0,5.0,4.0,2.5,2,2,100.111073146924,468.0,23697.897088795537,4,1,0,1,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031395190772086114,9479.158835518214,1,1,1_0,1_1_0,1_2_0,1_0_0 -2200,2,80.0,0.0,7,111,600.0,,,0,78,0.0,0.0,,600.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,5,107111,1,1,0,0,2,,500.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,80.89977687688987,600.0,12108.732730622776,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04955101523403934,12108.732730622776,2,1,2_0,2_1_0,2_2_0,2_0_0 -2201,2,94.0,0.0,1,111,420.0,,,0,86,0.0,0.0,,604.0,316.54016877099525,,20,0,0,0,0,0,0,0,0,0,,1,,1,128307,2,1,0,0,2,,360.0,,21,1.0,7.0,6.0,2.0,1.5,2,2,62.2230188396972,420.0,19030.138535916645,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03173912785028007,12686.75902394443,2,1,2_0,2_1_0,2_2_0,2_1_0 -2202,2,79.0,0.0,9,111,340.0,,,0,74,0.0,0.0,,409.0,118.70256328912323,,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,119026,2,1,0,0,2,,210.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,99.88369623185969,340.0,37858.363124659605,0,5,0,1,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010803425352893607,37858.363124659605,9,5,9,9_1,9_2,9_0_0 -2203,2,79.0,0.0,6,111,480.0,,,0,78,0.0,0.0,,618.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,4,124736,2,1,0,0,2,,110.0,,11,0.0,8.0,4.0,1.0,1.0,2,2,91.32974182738111,480.0,13914.627519236807,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04441369337020502,13914.627519236807,3,2,3_0,3_1_0,3_2_0,3_0_0 -2204,2,42.0,0.0,8,111,1172.0,,,81,63,0.0,0.0,,1310.0,237.40512657824647,,43,0,0,0,0,0,0,0,0,0,,1,2002.0,6,115042,2,1,0,0,2,,620.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,73.71854818674386,1172.0,8602.0,4,4,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15229016507788887,4096.190476190476,1,1,1_0,1_1_0,1_2_0,1_0_0 -2205,1,65.0,136.0,5,111,229.0,,,0,77,0.0,0.0,,277.0,82.5756962011292,,41,0,0,0,0,0,0,0,0,0,,1,,3,102751,2,2,0,0,2,,265.0,280.0,11,0.0,2.0,4.0,1.0,1.0,4,4,89.00765803779738,229.0,13450.995630150508,0,5,2,3,172.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02059327113147687,13450.995630150508,3,2,3_1,3_1_1,3_2_1,3_0_0 -2206,2,71.0,0.0,5,111,492.0,,,0,77,0.0,0.0,,636.0,247.7270886033876,,12,0,0,0,0,0,0,0,0,0,,1,,3,119034,1,2,0,0,2,,500.0,,11,0.0,8.0,5.0,1.0,1.0,2,2,76.46728882834721,492.0,25652.920555344455,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024792498718727664,25652.920555344455,7,4,7,7_1,7_2,7_0_0 -2207,2,51.0,0.0,8,111,250.0,,,0,54,0.0,0.0,,275.0,43.00817510475479,,71,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,103106,2,1,0,0,2,,300.0,400.0,32,1.0,0.0,3.0,2.0,1.5,2,2,91.12497232524234,250.0,33266.3932007614,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008266601021048047,22177.595467174266,6,3,6,6_0,6_2,6_0_0 -2209,0,41.0,0.0,2,111,500.0,,,56,67,0.0,0.0,,592.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,126421,2,3,0,0,2,,400.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,96.16809328482188,500.0,43764.559882161506,1,1,5,0,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01352692684660814,20840.2666105531,5,3,5,5_1,5_2,5_0_1 -2210,2,54.0,0.0,7,111,0.0,,,85,68,0.0,0.0,,556.0,237.40512657824647,,60,0,0,0,0,0,0,0,0,0,,1,,5,106169,2,1,0,0,2,,350.0,,42,1.0,0.0,4.0,3.0,2.0,2,2,98.61404838339162,0.0,21392.81238602039,6,1,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02599003768028792,10696.406193010194,2,1,2_0,2_1_0,2_2_0,2_0_0 -2211,2,55.0,0.0,6,111,409.0,,,63,63,0.0,51.75862524097289,,735.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,116603,2,2,0,0,2,,209.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,74.96975670797488,409.0,25443.693307090045,4,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028887315655356828,16962.462204726697,4,2,4_0,4_1_0,4_2_0,4_0_0 -2212,2,54.0,0.0,8,111,2000.0,,,43,31,0.0,0.0,,2000.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,131726,2,1,0,0,2,,800.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,107.67197427870458,2000.0,222569.6584157959,1,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008985950799563517,89027.86336631836,10,5,10,10_1,10_2,10_0_0 -2213,2,68.0,0.0,1,111,0.0,,,0,86,0.0,0.0,,1031.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,1,122032,2,1,0,0,2,,200.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,111.6179919376861,0.0,11413.148033642661,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09033441053782094,11413.148033642661,2,1,2_0,2_1_0,2_2_0,2_1_0 -2214,2,65.0,0.0,6,111,366.0,,,78,72,0.0,0.0,,642.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,4,100110,2,1,0,0,2,,129.0,,41,1.0,2.0,4.0,3.0,2.0,1,1,98.61404838339162,366.0,26799.69433007969,6,5,0,1,109.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023955497107272083,13399.847165039844,3,2,3_0,3_1_0,3_2_0,3_0_0 -2215,1,50.0,421.0,7,111,600.0,,,0,56,0.0,0.0,,738.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,5,122599,2,1,0,0,2,,350.0,700.0,32,1.0,1.0,4.0,3.0,1.8,6,5,88.31557384113064,600.0,24218.65906066662,0,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030472372485666695,13454.810589259234,3,2,3_1,3_1_1,3_2_1,3_0_0 -2216,2,69.0,0.0,6,111,360.0,,,46,75,0.0,0.0,,528.0,289.01493670395223,,20,0,0,0,0,0,0,0,0,0,,1,,4,132400,2,1,0,0,2,,1000.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,72.07403757108102,360.0,38862.18530331755,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013586472193444206,25908.123535545034,7,4,7,7_1,7_2,7_0_0 -2217,2,50.0,0.0,8,111,864.0,,,0,47,0.0,0.0,,1002.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130763,2,2,0,0,2,,960.0,,32,1.0,1.0,5.0,4.0,2.3,1,1,76.69673224165932,864.0,30035.963512547703,0,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03336000856378083,13059.114570672915,2,1,2_0,2_1_0,2_2_0,2_0_0 -2218,1,39.0,356.0,7,111,0.0,,,0,69,0.0,0.0,,957.0,276.9726476746209,,50,0,0,0,0,0,0,0,0,1,60.0,1,,5,126125,2,2,0,0,2,,324.0,580.0,32,1.0,1.0,3.0,2.0,1.3,2,2,77.37627796373549,0.0,13716.635494957656,0,1,2,3,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06976929585624703,10551.25807304435,2,1,2_1,2_1_1,2_2_1,2_0_0 -2219,2,75.0,0.0,2,111,290.0,,,0,78,0.0,0.0,,359.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,0,,1,,2,111703,2,1,0,0,2,,243.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,101.21658591438154,290.0,21456.123361822567,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016731820280208583,21456.123361822567,6,3,6,6_1,6_2,6_0_1 -2220,0,41.0,0.0,2,111,240.0,,,0,52,0.0,0.0,,264.0,41.2878481005646,,50,0,0,0,0,0,0,0,0,1,10.0,1,,2,111540,2,2,0,0,2,,290.0,,32,1.0,0.0,2.0,2.0,1.3,2,2,163.54083963021813,240.0,5767.643586833145,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04577259257189212,4436.648912948573,1,1,1_0,1_1_0,1_2_0,1_0_1 -2221,2,51.0,0.0,6,111,330.0,,,0,56,0.0,0.0,,514.0,316.54016877099525,,20,0,0,0,0,0,0,0,0,0,,1,,4,111742,2,2,0,0,2,,312.0,,32,1.0,3.0,3.0,3.0,1.8,2,2,76.21105549415755,330.0,25279.942052053295,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020332325087677634,14044.412251140719,3,2,3_0,3_1_0,3_2_0,3_0_0 -2222,2,48.0,0.0,2,111,480.0,,,0,46,0.0,62.110350289167464,,678.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,2,106154,2,2,0,0,2,,206.0,500.0,12,1.0,1.0,3.0,1.0,1.0,2,2,131.7257943683574,480.0,22260.488841700477,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030457552159856686,22260.488841700477,6,3,6,6_1,6_2,6_0_1 -2223,2,92.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,490.0,223.64251054472493,,10,0,0,0,0,0,0,0,0,0,,1,,2,105713,2,2,0,0,2,,320.0,,11,0.0,7.0,3.0,1.0,1.0,1,1,86.40621522662128,360.0,11374.463157894737,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04307895618439829,11374.463157894737,2,1,2_0,2_1_0,2_2_0,2_0_1 -2224,2,78.0,0.0,7,111,480.0,,,0,77,0.0,0.0,,620.0,240.84578058662683,,50,0,0,0,0,0,0,0,0,0,,1,,5,113833,2,1,0,0,2,,446.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,68.96611006404868,480.0,21008.986939154107,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02951118022947199,21008.986939154107,5,3,5,5_1,5_2,5_0_0 -2225,2,53.0,0.0,7,111,630.0,,,0,43,0.0,0.0,,725.0,163.4310653980682,,20,0,0,0,0,0,0,0,0,0,,1,,5,124159,2,1,0,0,2,,660.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,86.85788013858651,630.0,126662.33043352203,0,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00572388015851731,84441.55362234802,10,5,10,10_1,10_2,10_0_0 -2226,0,86.0,0.0,5,111,1200.0,,,86,71,0.0,0.0,,1266.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,0,,1,,3,125430,2,2,0,0,2,,600.0,,41,0.0,11.0,5.0,2.0,1.5,1,1,103.25043268729937,1200.0,9391.185314685314,6,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13480726421406178,6260.790209790209,1,1,1_0,1_1_0,1_2_0,1_0_0 -2227,2,78.0,0.0,5,111,534.0,,,75,71,0.0,0.0,,672.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,3,101874,2,1,0,0,2,,350.0,,41,0.0,6.0,7.0,2.0,1.5,5,5,83.41576659891074,534.0,44693.143578399446,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015035863360589005,29795.429052266296,8,4,8,8_1,8_2,8_0_0 -2228,0,91.0,0.0,2,111,450.0,,,0,72,0.0,0.0,,522.0,123.8635443016938,,12,0,0,0,0,0,0,0,0,0,,1,,2,109875,2,2,0,0,2,,260.0,,21,0.0,5.0,5.0,2.0,1.5,2,2,68.96611006404868,450.0,23286.41800519769,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022416500463209324,15524.278670131795,3,2,3_0,3_1_0,3_2_0,3_0_1 -2229,0,56.0,0.0,6,111,360.0,,,77,48,0.0,0.0,,636.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,0,,1,,4,116304,2,1,0,0,2,,240.0,,42,1.0,1.0,3.0,4.0,2.3,2,2,55.78096732511658,360.0,30181.205630237233,6,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021072716835500414,13122.26331749445,2,1,2_0,2_1_0,2_2_0,2_0_0 -2230,2,61.0,0.0,5,111,840.0,,,78,78,0.0,0.0,,978.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,3,119004,2,1,0,0,2,,408.0,,41,0.0,5.0,6.0,2.0,1.5,3,2,58.26754432471683,840.0,21695.465158187733,5,7,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04507854488802739,14463.643438791822,3,2,3_0,3_1_0,3_2_0,3_0_0 -2231,0,66.0,0.0,1,111,1066.0,,,86,77,0.0,51.75862524097289,,1332.0,371.5906329050814,,41,0,0,0,0,0,0,0,0,0,,1,,1,127918,2,2,0,0,2,,250.0,,41,1.0,3.0,4.0,3.0,2.0,2,2,97.61556902209338,1066.0,15400.150560997536,6,5,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08649266088173364,7700.075280498768,1,1,1_0,1_1_0,1_2_0,1_1_0 -2232,0,48.0,0.0,7,111,420.0,,,0,43,0.0,0.0,,696.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,117282,2,1,0,0,2,,170.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,86.85788013858651,420.0,9942.549019607843,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07000216932573412,7648.114630467571,1,1,1_0,1_1_0,1_2_0,1_0_0 -2233,0,44.0,0.0,7,111,590.0,,,63,31,0.0,36.23103766868102,,740.0,197.83760548187203,,44,0,0,0,0,0,0,0,0,2,90.0,1,,5,120776,2,1,0,0,2,,560.0,,43,3.0,1.0,5.0,4.0,2.5,2,2,62.52154487420725,590.0,26216.845483639197,4,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028226126612440925,10486.73819345568,2,1,2_0,2_1_0,2_2_0,2_0_0 -2234,2,93.0,0.0,7,111,320.0,,,0,72,0.0,0.0,,420.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,0,,1,,5,129011,2,1,0,0,2,,240.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,100.24550880567408,320.0,9727.960784313724,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043174516151139035,9727.960784313724,1,1,1_0,1_1_0,1_2_0,1_0_0 -2235,0,48.0,0.0,9,111,1134.0,,,43,64,0.0,0.0,,1272.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109378,2,1,0,0,2,,460.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,91.93831265441644,1134.0,13425.990438545796,4,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09474161372468351,5837.387147193825,1,1,1_0,1_1_0,1_2_0,1_0_0 -2236,2,57.0,0.0,8,111,725.0,,,54,63,0.0,0.0,,932.0,356.1076898673697,,31,0,0,0,0,0,0,0,0,2,90.0,1,1999.0,6,107613,2,1,0,0,2,,390.0,,43,2.0,1.0,6.0,4.0,2.1,1,1,59.36799866659098,725.0,56393.08640449035,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01652684858060524,26853.850668804927,7,4,7,7_1,7_2,7_0_0 -2237,0,43.0,0.0,9,111,456.0,,,0,56,0.0,0.0,,548.0,158.27008438549763,,70,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,114740,2,2,0,0,2,,220.0,,32,2.0,0.0,3.0,2.0,1.5,1,1,86.61396179678232,456.0,8187.079681126547,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06693473391535318,5458.053120751031,1,1,1_0,1_1_0,1_2_0,1_0_0 -2238,0,64.0,0.0,2,111,0.0,,,0,68,0.0,0.0,,245.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,2,133614,1,2,0,0,2,,180.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,93.5013172398827,0.0,6585.688061472378,0,4,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037201883495408795,6585.688061472378,1,1,1_0,1_1_0,1_2_0,1_0_1 -2239,1,55.0,340.0,9,111,420.0,,,0,43,0.0,0.0,,650.0,395.67521096374406,,42,0,0,0,0,0,0,0,0,0,,1,2009.0,6,123460,2,1,0,0,2,,340.0,,12,1.0,1.0,3.0,1.0,1.0,3,2,124.70060723716745,420.0,6623.256120977092,0,4,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09813904039454677,6623.256120977092,1,1,1_1,1_1_1,1_2_1,1_0_0 -2240,2,24.0,0.0,1,111,630.0,,,0,63,0.0,0.0,,870.0,412.878481005646,,33,0,0,0,0,0,0,0,0,0,,1,,1,113514,2,1,0,0,2,,110.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,84.65035547489217,630.0,15845.419165454812,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05490545822206581,10563.612776969874,2,1,2_0,2_1_0,2_2_0,2_1_0 -2241,2,61.0,0.0,6,111,540.0,,,56,78,0.0,0.0,,678.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,4,131030,2,1,0,0,2,,490.0,,42,1.0,3.0,3.0,3.0,2.0,3,3,111.52256877836521,540.0,9230.205128205129,4,7,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07345448888543188,4615.102564102564,1,1,1_0,1_1_0,1_2_0,1_0_0 -2242,2,67.0,0.0,7,111,660.0,,,0,77,0.0,0.0,,752.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,,5,113600,2,1,0,0,2,,240.0,,11,0.0,9.0,4.0,1.0,1.0,3,2,101.8652842870775,660.0,4981.723686943522,0,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1509517683549769,4981.723686943522,1,1,1_0,1_1_0,1_2_0,1_0_0 -2243,2,62.0,0.0,6,111,590.0,,,0,75,0.0,0.0,,657.0,115.26190928074284,,70,0,0,0,0,0,0,0,0,0,,1,,4,118566,2,2,0,0,2,,260.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,81.38072162442728,590.0,34526.668794810714,0,5,0,1,168.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019028768859935475,34526.668794810714,9,5,9,9_1,9_2,9_0_0 -2244,2,63.0,0.0,8,111,510.0,,,45,52,0.0,0.0,,640.0,223.64251054472493,,31,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,103402,2,1,0,0,2,,400.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,109.47377578387496,510.0,71726.30700150247,1,1,1,2,132.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0089228070809026,47817.538001001645,10,5,10,10_1,10_2,10_0_0 -2245,2,67.0,0.0,9,111,4201.6,,,77,75,0.0,0.0,,4362.0,275.25232067043066,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,104804,2,1,0,0,1,,360.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,89.04051392768038,4201.6,57775.735640200684,5,5,1,2,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0754988223285364,38517.157093467125,9,5,9,9_1,9_2,9_0_0 -2246,2,53.0,0.0,7,111,540.0,,,12,68,0.0,0.0,,780.0,412.878481005646,,33,0,0,0,0,0,0,0,0,2,5.0,2,,5,126499,2,1,0,0,2,,426.0,320.0,43,2.0,3.0,4.0,2.0,1.5,2,2,122.44166320860583,540.0,21886.0,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0356392214200859,14590.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_0 -2247,0,54.0,0.0,7,111,504.0,,,68,53,0.0,0.0,,720.0,371.5906329050814,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,127022,2,1,0,0,2,,368.0,,43,2.0,2.0,4.0,3.0,2.0,4,4,97.23150174256594,504.0,36358.545538958926,1,1,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019802772342158333,18179.272769479463,4,2,4_0,4_1_0,4_2_0,4_0_0 -2248,0,64.0,0.0,5,111,390.0,,,0,78,0.0,0.0,,620.0,395.67521096374406,,71,0,0,0,0,0,0,0,0,0,,1,,3,112771,2,1,0,0,2,,245.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,75.08088142889555,390.0,7618.0,0,7,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08138619060120766,7618.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -2249,2,70.0,0.0,7,111,540.0,,,78,77,0.0,0.0,,678.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,5,131748,2,1,0,0,2,,480.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,90.29936303597611,540.0,26717.49777477065,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02537662792060699,17811.665183180434,4,2,4_0,4_1_0,4_2_0,4_0_0 -2250,2,78.0,0.0,2,111,647.0,,,77,78,0.0,0.0,,923.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,2,129605,2,1,0,0,2,,570.0,,41,0.0,0.0,5.0,5.0,3.0,2,2,103.84955794328935,647.0,38852.355427582865,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023756603424479248,12950.785142527622,2,1,2_0,2_1_0,2_2_0,2_0_1 -2251,2,55.0,0.0,7,111,0.0,,,34,34,0.0,0.0,,1401.0,0.0,,12,0,0,0,0,0,0,0,0,2,40.0,1,,5,129031,2,1,0,0,2,,480.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,107.57126398880396,0.0,97132.29924126278,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014423626445000708,48566.14962063139,10,5,10,10_1,10_2,10_0_0 -2252,1,45.0,357.0,6,111,486.0,,,0,69,0.0,0.0,,762.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,4,100252,2,1,0,0,2,,499.0,500.0,32,2.0,0.0,4.0,3.0,2.0,3,2,120.39850496599287,486.0,7664.693277500857,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09941689411588,3832.3466387504286,1,1,1_1,1_1_1,1_2_1,1_0_0 -2254,2,58.0,0.0,5,111,650.0,,,54,77,0.0,0.0,,830.0,309.6588607542345,,31,0,0,0,0,0,0,0,0,0,,1,,3,120329,2,2,0,0,2,,250.0,650.0,42,1.0,1.0,4.0,3.0,2.0,4,3,87.59264484329276,650.0,71619.0,1,5,2,3,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011589103450201763,35809.5,9,5,9,9_1,9_2,9_0_0 -2255,0,84.0,0.0,5,111,453.0,,,86,78,0.0,0.0,,660.0,356.1076898673697,,30,0,0,0,0,0,0,0,0,0,,1,,3,126396,2,1,0,0,2,,398.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,80.51037019868075,453.0,13547.273153596849,6,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0487182913134639,9031.515435731233,1,1,1_0,1_1_0,1_2_0,1_0_0 -2256,2,55.0,0.0,7,111,900.0,,,56,64,0.0,0.0,,1176.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,129962,2,2,0,0,2,,420.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,93.15920356132074,900.0,40097.0,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029328877472130085,20048.5,5,3,5,5_1,5_2,5_0_0 -2257,1,34.0,522.0,5,111,580.0,,,21,68,0.0,0.0,,678.0,168.59204641063877,,33,0,0,0,0,0,0,0,0,0,,1,,3,113717,1,2,0,0,2,,350.0,800.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,1,1,154.8848757745128,580.0,25079.405263760258,1,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027034133898689777,8648.070780606988,1,1,1_1,1_1_1,1_2_1,1_0_0 -2258,2,60.0,0.0,9,111,238.0,,,0,69,0.0,0.0,,330.0,158.27008438549763,,43,0,0,0,0,0,0,0,0,0,,1,2008.0,6,107736,2,1,0,0,2,,120.0,,32,1.0,2.0,4.0,2.0,1.5,1,1,102.84498231934847,238.0,6838.129520010216,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048258810985420904,4558.753013340144,1,1,1_0,1_1_0,1_2_0,1_0_0 -2259,2,55.0,0.0,7,111,450.0,,,56,69,0.0,0.0,,726.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,,5,105553,2,1,0,0,2,,533.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,2,2,82.58317926381218,450.0,33207.71701261303,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021862388182971117,12772.198851005012,2,1,2_0,2_1_0,2_2_0,2_0_0 -2260,0,49.0,0.0,7,111,900.0,,,56,67,0.0,0.0,,987.0,149.6684493645467,,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,131720,2,1,0,0,1,,560.0,,43,2.0,1.0,5.0,3.0,2.0,4,4,107.13866771123372,900.0,51307.70506791732,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01923687677500841,25653.85253395866,7,4,7,7_1,7_2,7_0_0 -2261,0,47.0,0.0,7,111,1600.0,,,0,85,0.0,0.0,,1876.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,5,116818,2,2,0,0,2,,600.0,,31,0.0,0.0,3.0,3.0,1.8,2,2,107.96821398799503,1600.0,11574.115279535348,0,6,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1620858229498569,6430.064044186304,1,1,1_0,1_1_0,1_2_0,1_0_0 -2262,2,47.0,0.0,9,111,660.0,,,12,35,0.0,0.0,,752.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,2,80.0,1,2006.0,6,121477,2,1,0,0,2,,498.0,900.0,43,2.0,0.0,4.0,4.0,2.1,3,2,100.81590766645188,660.0,84076.50670930027,1,1,2,3,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008944234595760343,40036.43176633346,9,5,9,9_1,9_2,9_0_0 -2263,2,82.0,0.0,7,111,420.0,,,77,77,0.0,0.0,,696.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,5,113989,2,1,0,0,2,,340.0,,41,0.0,9.0,2.0,2.0,1.5,1,1,111.49900615184552,420.0,30171.38899014415,5,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023068212080900777,20114.259326762767,5,3,5,5_1,5_2,5_0_0 -2264,2,76.0,0.0,7,111,1080.0,,,77,72,0.0,103.51725048194578,,1456.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,,5,133034,1,1,0,0,2,,572.0,,41,0.0,5.0,4.0,4.0,2.5,1,1,101.31773022259395,1080.0,17854.89604898441,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08154626025295832,7141.958419593764,1,1,1_0,1_1_0,1_2_0,1_0_0 -2265,0,44.0,0.0,2,111,340.0,,,0,43,0.0,0.0,,415.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,100896,1,1,0,0,2,,408.0,,32,1.0,1.0,4.0,2.0,1.3,1,1,125.85018533496495,340.0,5350.233922890207,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07756670193885955,4115.56455606939,1,1,1_0,1_1_0,1_2_0,1_0_1 -2266,2,55.0,0.0,9,111,516.0,,,47,48,0.0,0.0,,660.0,247.7270886033876,,41,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,128966,2,1,0,0,2,,332.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,130.25408949654647,516.0,32253.226565860696,1,1,1,2,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020463068978611738,16126.613282930348,4,2,4_0,4_1_0,4_2_0,4_0_0 -2267,2,85.0,0.0,2,111,170.0,,,0,86,0.0,0.0,,330.0,275.25232067043066,,31,0,0,0,0,0,0,0,0,0,,1,,2,121944,2,1,0,0,2,,160.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,104.660377662021,170.0,12315.14181398427,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02679628095108686,12315.14181398427,2,1,2_0,2_1_0,2_2_0,2_0_1 -2268,2,69.0,0.0,2,111,1200.0,,,75,75,0.0,0.0,,1500.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,,2,112609,2,1,0,0,1,,600.0,,41,0.0,1.0,4.0,2.0,1.5,6,6,79.62759192636516,1200.0,54259.73656404804,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027644808010252764,36173.15770936536,9,5,9,9_1,9_2,9_0_1 -2269,2,83.0,0.0,5,111,534.0,,,0,77,0.0,0.0,,671.0,235.68479957405626,,10,0,0,0,0,0,0,0,0,0,,1,,3,111482,2,1,0,0,1,,455.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,80.51037019868075,534.0,15958.083397033999,0,5,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04204765593120746,10638.722264689333,2,1,2_0,2_1_0,2_2_0,2_0_0 -2270,1,48.0,413.0,7,111,672.0,,,0,85,0.0,0.0,,909.0,407.7174999930754,,31,0,0,0,0,0,0,0,0,0,,2,,5,115475,2,2,0,0,2,,1317.0,624.0,31,0.0,3.0,4.0,6.0,3.0999999999999996,2,2,76.17205910569969,672.0,22333.22404602498,0,6,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.040701691709477565,7204.2658212983815,1,1,1_1,1_0_1,1_2_1,1_0_0 -2271,1,40.0,467.0,2,111,0.0,,,0,56,0.0,4.140690019277831,,141.0,235.68479957405626,,12,0,0,0,0,0,0,0,0,0,,1,,2,115594,2,1,0,0,2,,0.0,700.0,32,1.0,0.0,3.0,4.0,2.1,2,2,114.8476024204095,0.0,20416.0,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.006906347962382445,9721.904761904761,1,1,1_1,1_1_1,1_2_1,1_0_1 -2272,2,69.0,0.0,7,111,540.0,,,75,75,0.0,0.0,,541.0,1.7203270041901917,,31,0,0,0,0,0,0,0,0,0,,1,,5,130760,2,1,0,0,2,,550.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,71.58085612854948,540.0,55756.373659089244,5,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009702926580337381,37170.91577272616,9,5,9,9_1,9_2,9_0_0 -2273,1,43.0,260.0,9,111,900.0,,,68,56,0.0,0.0,,1050.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,131568,1,1,0,0,2,,240.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,79.64484672048923,900.0,9599.617204571054,4,4,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10937936144995668,4571.246287890977,1,1,1_1,1_1_1,1_2_1,1_0_0 -2274,2,56.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,130367,2,1,0,0,2,,0.0,600.0,32,1.0,0.0,3.0,2.0,1.3,2,2,85.09154667760133,0.0,38922.00479453119,0,1,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007707722189124032,29940.003688100915,8,4,8,8_1,8_2,8_0_0 -2275,2,75.0,0.0,5,111,2400.0,,,0,86,0.0,0.0,,2670.0,464.48829113135173,,41,0,0,0,0,0,0,0,0,0,,1,,3,121942,1,2,0,0,2,,1200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,119.51022677350656,2400.0,5503.741114659989,0,6,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4851245624341013,5503.741114659989,1,1,1_0,1_1_0,1_2_0,1_0_0 -2276,0,31.0,0.0,5,111,300.0,,,0,46,0.0,0.0,,573.0,469.6492721439223,,43,0,0,0,0,0,0,0,0,2,25.0,1,,3,111779,2,2,0,0,2,,0.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,107.54955331500514,300.0,22976.78311567899,0,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02493821685634461,14360.48944729937,3,2,3_0,3_1_0,3_2_0,3_0_0 -2277,0,63.0,0.0,2,111,0.0,,,0,77,0.0,25.879312620486445,,117.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,2,101009,2,2,0,0,1,,120.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,95.19608418570286,0.0,13044.0,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008969641214351426,13044.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -2278,2,28.0,0.0,7,111,0.0,,,21,38,0.0,0.0,,530.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,102140,2,1,0,0,2,,494.0,850.0,43,2.0,0.0,3.0,3.0,1.8,1,1,96.38922238518789,0.0,39728.7146352609,1,1,3,4,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013340476903564427,22071.5081307005,6,3,6,6_1,6_2,6_0_0 -2279,0,54.0,0.0,5,111,420.0,,,0,63,0.0,0.0,,570.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,118787,2,1,0,0,2,,600.0,,32,3.0,1.0,3.0,3.0,2.0,1,1,79.64484672048923,420.0,28872.10956094321,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01974223597333076,14436.054780471604,3,2,3_0,3_0_0,3_2_0,3_0_0 -2280,2,64.0,0.0,6,111,480.0,,,0,77,0.0,0.0,,567.0,149.6684493645467,,60,0,0,0,0,0,0,0,0,0,,1,,4,115403,2,2,0,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,84.54482472789819,480.0,28036.208652690246,0,5,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020223847205017603,28036.208652690246,7,4,7,7_1,7_2,7_0_0 -2281,0,72.0,0.0,2,111,276.0,,,0,78,0.0,0.0,,376.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,0,,1,,2,115565,2,2,0,0,2,,1125.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,100.8693566777654,276.0,142778.53051162735,0,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0026334491513020576,142778.53051162735,10,5,10,10_1,10_2,10_0_1 -2282,2,55.0,0.0,7,111,0.0,,,78,68,0.0,0.0,,300.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,5,109592,1,1,0,0,1,,0.0,,42,2.0,0.0,3.0,3.0,2.0,2,2,108.37154518496695,0.0,10101.152546903322,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029699581172246532,5050.576273451661,1,1,1_0,1_1_0,1_2_0,1_0_0 -2283,2,60.0,0.0,8,111,300.0,,,77,54,0.0,0.0,,400.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,107629,2,2,0,0,1,,0.0,600.0,42,1.0,0.0,3.0,2.0,1.5,1,1,76.45300270928311,300.0,44100.77146228789,5,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009070136116372793,29400.514308191927,8,4,8,8_1,8_2,8_0_0 -2284,2,53.0,0.0,8,111,0.0,,,0,63,0.0,0.0,,300.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,129761,2,2,0,0,2,,600.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,143.37165962489595,0.0,17238.524142240232,0,1,0,1,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017402881912895213,11492.349428160154,2,1,2_0,2_1_0,2_2_0,2_0_0 -2285,1,65.0,230.0,6,111,650.0,,,0,46,0.0,25.879312620486445,,812.0,235.68479957405626,,10,0,0,0,0,0,0,0,0,0,,1,,4,105018,2,1,0,0,1,,600.0,900.0,22,1.0,1.0,4.0,3.0,1.8,5,5,106.96023809066517,650.0,18015.515158256036,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0450722609299286,10008.619532364464,2,1,2_1,2_1_1,2_2_1,2_0_0 -2286,2,58.0,0.0,8,111,480.0,,,0,68,0.0,0.0,,580.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105375,2,1,0,0,2,,50.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,124.58666716307083,480.0,6594.034203491006,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08795829413395172,6594.034203491006,1,1,1_0,1_1_0,1_2_0,1_0_0 -2287,1,43.0,576.0,6,111,0.0,,,81,85,0.0,0.0,,412.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,4,112043,2,1,0,0,2,,2179.0,900.0,42,1.0,2.0,4.0,6.0,2.6999999999999997,2,2,114.59428842992514,0.0,25878.9821798952,4,6,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01592025517603523,9584.808214776001,1,1,1_1,1_1_1,1_2_1,1_0_0 -2288,0,74.0,0.0,2,111,480.0,,,0,77,0.0,41.40690019277831,,790.0,464.48829113135173,,60,0,0,0,0,0,0,0,0,0,,1,,2,118473,2,2,0,0,2,,270.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,85.35187290807298,480.0,10960.322334074008,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07207817214864273,10960.322334074008,2,1,2_0,2_1_0,2_2_0,2_0_1 -2289,1,27.0,162.0,6,111,410.0,,,0,55,0.0,5.175862524097289,,461.0,79.13504219274881,,44,0,0,0,0,0,0,0,0,2,30.0,1,,4,131865,2,2,0,0,2,,0.0,654.0,32,1.0,0.0,3.0,2.0,1.3,1,1,100.35233102760473,410.0,24351.60336307047,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01893099165285817,18732.002586977283,5,3,5,5_1,5_2,5_0_0 -2290,1,37.0,467.0,2,111,246.0,,,0,85,0.0,0.0,,428.0,313.0995147626149,,12,0,0,0,0,0,0,0,0,0,,2,,2,120096,2,2,0,0,2,,700.0,535.0,31,0.0,0.0,4.0,5.0,2.5999999999999996,3,2,92.61701883815131,246.0,16991.12565445026,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025189620081933747,6535.048328634717,1,1,1_1,1_0_1,1_2_1,1_0_1 -2291,2,59.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,1072.0,86.01635020950958,,42,0,0,0,0,0,0,0,0,2,15.0,2,,5,130429,2,2,0,0,2,,300.0,917.0,12,1.0,3.0,4.0,1.0,1.0,1,1,110.44737568878192,0.0,32286.12120637217,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033203121339593564,32286.12120637217,8,4,8,8_0,8_2,8_0_0 -2292,1,41.0,350.0,5,111,4200.0,,,0,52,0.0,0.0,,4200.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,3,121621,2,1,0,0,2,,700.0,392.0,32,1.0,0.0,2.0,2.0,1.3,2,2,127.50626061675938,4200.0,21426.992993173517,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.19601443848598304,16482.302302441167,4,2,4_1,4_0_1,4_2_1,4_0_0 -2293,0,55.0,0.0,9,111,0.0,,,81,12,0.0,0.0,,158.0,271.8116666620503,,44,0,0,0,0,0,0,0,0,0,,1,2004.0,6,105056,2,1,0,0,2,,240.0,,43,2.0,1.0,4.0,5.0,2.5999999999999996,1,1,81.80140622579293,0.0,14817.007326204426,4,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010663421872011303,5698.848971617088,1,1,1_0,1_1_0,1_2_0,1_0_0 -2294,2,73.0,0.0,7,111,420.0,,,0,77,0.0,0.0,,620.0,344.06540083803833,,71,0,0,0,0,0,0,0,0,0,,1,,5,104278,2,2,0,0,2,,290.0,,11,0.0,0.0,5.0,1.0,1.0,3,3,85.35187290807298,420.0,13415.988361903914,0,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0462135165352822,13415.988361903914,3,2,3_0,3_1_0,3_2_0,3_0_0 -2295,2,49.0,0.0,2,111,650.0,,,0,52,0.0,129.39656310243222,,1060.0,490.29319619420465,,60,0,0,0,0,0,0,0,0,0,,1,,2,110531,2,3,0,0,2,,980.0,,22,2.0,2.0,4.0,4.0,2.5,2,2,79.33552879834102,650.0,48457.92062067961,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021874648899970355,19383.168248271842,5,3,5,5_1,5_2,5_0_1 -2296,2,61.0,0.0,9,111,948.0,,,0,63,0.0,0.0,,1043.0,163.4310653980682,,60,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,126432,2,2,0,0,2,,414.0,323.0,32,2.0,0.0,1.0,2.0,1.5,2,2,156.61619331720698,948.0,33849.25200195035,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030813088571053318,22566.168001300233,6,3,6,6_0,6_2,6_0_0 -2297,0,45.0,0.0,2,111,240.0,,,0,63,0.0,0.0,,263.0,39.567521096374406,,10,0,0,0,0,0,0,0,0,2,45.0,1,,2,122205,2,2,0,0,2,,360.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,157.4168360896384,240.0,20728.55946083287,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012687808841562053,20728.55946083287,5,3,5,5_1,5_2,5_0_1 -2298,2,45.0,0.0,7,111,298.0,,,0,46,0.0,0.0,,321.0,39.567521096374406,,43,0,0,0,0,0,0,0,0,2,60.0,2,,5,115019,2,2,0,0,2,,340.0,383.0,12,1.0,0.0,2.0,1.0,1.0,2,2,144.4791670445129,298.0,24150.27602112947,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013291773548225779,24150.27602112947,6,3,6,6_0,6_2,6_0_0 -2300,1,38.0,182.0,7,111,534.0,,,0,55,0.0,0.0,,648.0,196.11727847768185,,31,0,0,0,0,0,0,0,0,2,5.0,2,,5,128981,2,3,0,0,2,,390.0,434.0,32,1.0,0.0,3.0,3.0,1.8,1,1,139.24919672552699,534.0,20802.46232636716,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.031150158564578135,11556.923514648422,2,1,2_1,2_0_1,2_2_1,2_0_0 -2301,1,60.0,245.0,7,111,476.0,,,0,56,0.0,0.0,,636.0,275.25232067043066,,71,0,0,0,0,0,0,0,0,0,,2,,5,129860,2,2,0,0,2,,394.0,371.0,12,1.0,6.0,4.0,1.0,1.0,1,1,95.23073005870033,476.0,7486.520074010141,0,4,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0849526874586109,7486.520074010141,1,1,1_1,1_0_1,1_2_1,1_0_0 -2302,2,46.0,0.0,6,111,0.0,,,56,68,0.0,0.0,,160.0,275.25232067043066,,12,0,0,0,0,0,0,0,0,0,,1,,4,104611,2,1,0,0,1,,192.0,,43,2.0,1.0,4.0,3.0,1.8,5,4,95.44472572514435,0.0,25557.358720955224,1,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006260427837905305,14198.532622752902,3,2,3_0,3_1_0,3_2_0,3_0_0 -2303,2,81.0,0.0,2,111,684.0,,,86,71,0.0,0.0,,844.0,275.25232067043066,,12,0,0,0,0,0,0,0,0,0,,1,,2,126171,2,2,0,0,2,,380.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,122.22441027143252,684.0,18372.060641838816,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04593932147589112,12248.040427892543,2,1,2_0,2_1_0,2_2_0,2_0_1 -2304,2,80.0,0.0,2,111,473.0,,,78,78,0.0,25.879312620486445,,688.0,326.8621307961364,,44,0,0,0,0,0,0,0,0,0,,1,,2,100003,2,2,0,0,2,,400.0,,41,0.0,10.0,6.0,2.0,1.5,3,3,89.56091405931399,473.0,16755.0,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041062369441957625,11170.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -2305,1,41.0,302.0,7,111,0.0,,,0,69,0.0,20.703450096389155,,180.0,275.25232067043066,,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,129334,2,2,0,0,2,,0.0,800.0,32,1.0,0.0,4.0,3.0,1.8,2,2,100.35233102760473,0.0,28963.449992910955,0,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.00621472925511486,16090.805551617197,4,2,4_1,4_1_1,4_2_1,4_0_0 -2306,2,78.0,0.0,2,111,346.0,,,0,86,0.0,0.0,,483.0,235.68479957405626,,71,0,0,0,0,0,0,0,0,0,,1,,2,115489,2,2,0,0,2,,264.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,90.84048054354763,346.0,9114.728632478633,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052991155247224773,9114.728632478633,1,1,1_0,1_1_0,1_2_0,1_0_1 -2307,2,79.0,0.0,6,111,793.0,,,77,78,0.0,25.879312620486445,,1091.0,469.6492721439223,,71,0,0,0,0,0,0,0,0,0,,1,,4,107868,2,2,0,0,2,,440.0,,41,0.0,7.0,4.0,2.0,1.5,2,2,90.51646990623132,793.0,26937.02924721733,5,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040501867892974996,17958.019498144888,4,2,4_0,4_1_0,4_2_0,4_0_0 -2308,2,40.0,0.0,6,111,750.0,,,47,43,0.0,25.879312620486445,,825.0,86.01635020950958,,12,0,0,0,0,0,0,0,0,0,,1,,4,101745,2,2,0,0,1,,600.0,,43,2.0,4.0,4.0,4.0,2.5,1,1,133.6945124413707,750.0,48104.49620628074,4,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01715016401922705,19241.798482512295,5,3,5,5_1,5_2,5_0_0 -2309,2,59.0,0.0,6,111,930.0,,,0,46,0.0,37.26621017350048,,1035.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,105804,2,2,0,0,1,,630.0,,22,2.0,5.0,4.0,2.0,1.5,4,2,105.09373909514333,930.0,28959.766188867063,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035739238820162944,19306.510792578043,5,3,5,5_1,5_2,5_0_0 -2310,2,41.0,0.0,6,111,600.0,,,34,34,0.0,0.0,,665.0,111.82125527236246,,12,0,0,0,0,0,0,0,0,2,20.0,1,,4,109451,1,2,0,0,2,,500.0,,43,2.0,0.0,3.0,4.0,2.1,3,3,137.33370868416233,600.0,99746.10349392051,1,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006666927094956962,47498.14452091453,10,5,10,10_1,10_2,10_0_0 -2311,2,75.0,0.0,2,111,750.0,,,86,77,0.0,0.0,,2900.0,3698.703059008912,,50,0,0,0,0,0,0,0,0,0,,1,,2,110342,1,3,0,0,2,,800.0,,41,0.0,3.0,3.0,2.0,1.5,3,3,96.59346358223752,750.0,52773.54172923455,5,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054951778959218676,35182.36115282303,9,5,9,9_1,9_2,9_0_1 -2312,2,60.0,0.0,2,111,290.0,,,0,63,0.0,0.0,,389.0,170.31237341482898,,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,112839,2,1,0,0,1,,350.0,700.0,12,1.0,0.0,4.0,1.0,1.0,3,3,152.1358613906514,290.0,36300.534735166635,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010716095584761482,36300.534735166635,9,5,9,9_1,9_2,9_0_1 -2313,2,33.0,0.0,2,111,900.0,,,62,54,0.0,0.0,,992.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,2,40.0,1,,2,117493,2,1,0,0,2,,540.0,670.0,43,2.0,0.0,3.0,3.0,1.8,2,2,138.07295538110588,900.0,50301.338133741905,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019721145337375647,27945.187852078834,7,4,7,7_1,7_2,7_0_1 -2315,2,52.0,0.0,7,111,900.0,,,75,46,0.0,0.0,,999.0,170.31237341482898,,20,0,0,0,0,0,0,0,0,0,,1,,5,109328,2,1,0,0,2,,440.0,,42,1.0,1.0,4.0,3.0,2.0,2,2,167.04428547391032,900.0,77824.68251025936,5,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012836544496899237,38912.34125512968,9,5,9,9_1,9_2,9_0_0 -2316,2,55.0,0.0,7,111,320.0,,,53,52,0.0,0.0,,452.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,109497,2,2,0,0,2,,240.0,,43,2.0,1.0,4.0,2.0,1.5,3,2,167.04428547391032,320.0,18021.44048694733,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025081235893844176,12014.293657964887,2,1,2_0,2_1_0,2_2_0,2_0_0 -2317,2,42.0,0.0,8,111,420.0,,,0,22,0.0,0.0,,512.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,111685,1,2,0,0,2,,500.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,126.12574172060916,420.0,22598.370634625502,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022656500695475243,14123.981646640937,3,2,3_0,3_1_0,3_2_0,3_0_0 -2318,2,74.0,0.0,2,111,600.0,,,86,72,0.0,0.0,,783.0,314.8198417668051,,20,0,0,0,0,0,0,0,0,0,,1,,2,121572,2,1,0,0,2,,400.0,,41,1.0,1.0,4.0,4.0,2.3,3,2,114.65032365260424,600.0,21629.763488597295,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03620011843461808,9404.244995042303,1,1,1_0,1_1_0,1_2_0,1_0_1 -2319,2,52.0,0.0,8,111,459.0,,,0,52,0.0,0.0,,597.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,113950,2,1,0,0,1,,500.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,108.9042542472069,459.0,28167.0,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021195015443604217,28167.0,8,4,8,8_1,8_2,8_0_0 -2320,2,55.0,0.0,6,111,450.0,,,68,47,0.0,0.0,,588.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,2,25.0,1,,4,131757,1,2,0,0,2,,500.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,100.14922114187317,450.0,59722.196558531985,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009845585626170302,39814.79770568799,9,5,9,9_1,9_2,9_0_0 -2321,2,64.0,0.0,5,111,648.0,,,77,78,0.0,0.0,,780.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,3,100694,1,2,0,0,2,,800.0,,41,2.0,3.0,3.0,5.0,3.0,5,5,77.49906994076348,648.0,5508.166337233024,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14160792398869815,1836.0554457443413,1,1,1_0,1_1_0,1_2_0,1_0_0 -2322,0,31.0,0.0,7,111,360.0,,,0,64,0.0,0.0,,426.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,0,,1,,5,133044,2,2,0,0,2,,200.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,163.77540649961767,360.0,9062.113734750887,0,4,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04700890018256988,9062.113734750887,1,1,1_0,1_1_0,1_2_0,1_0_0 -2323,2,55.0,0.0,9,111,0.0,,,55,63,0.0,0.0,,84.0,144.50746835197612,,70,0,0,0,0,0,0,0,0,0,,1,2010.0,6,105841,1,2,0,0,2,,240.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,163.18606579197262,0.0,12554.0,4,4,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006691094471881472,5978.095238095238,1,1,1_0,1_1_0,1_2_0,1_0_0 -2324,2,28.0,0.0,6,111,480.0,,,0,52,0.0,0.0,,744.0,454.1663291062106,,20,0,0,0,0,0,0,0,0,0,,1,,4,117781,2,2,0,0,2,,510.0,,22,2.0,2.0,4.0,3.0,2.0,1,1,161.64347099102147,480.0,44046.68633401756,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01689116848332365,22023.34316700878,6,3,6,6_1,6_2,6_0_0 -2325,0,74.0,0.0,6,111,300.0,,,0,78,0.0,0.0,,420.0,206.439240502823,,44,0,0,0,0,0,0,0,0,0,,1,,4,115184,1,2,0,0,2,,110.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,125.73760520223787,300.0,5110.0,0,5,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0821917808219178,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -2326,2,68.0,0.0,1,111,270.0,,,0,86,0.0,0.0,,408.0,237.40512657824647,,60,0,0,0,0,0,0,0,0,0,,1,,1,121833,2,1,0,0,2,,320.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,108.46378958030444,270.0,5110.0,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07984344422700587,5110.0,1,1,1_0,1_1_0,1_2_0,1_1_0 -2327,2,58.0,0.0,8,111,1440.0,,,56,48,0.0,0.0,,1571.0,225.53487024933412,,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105732,2,1,0,0,1,,540.0,,43,3.0,0.0,4.0,3.0,2.0,4,3,140.69453881684987,1440.0,57706.45265301584,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027223991906872077,28853.22632650792,8,4,8,8_1,8_2,8_0_0 -2328,2,73.0,0.0,5,111,350.0,,,0,86,0.0,0.0,,488.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,3,124079,1,2,0,0,2,,300.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,108.46378958030444,350.0,9439.584713375796,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05169718952874155,9439.584713375796,1,1,1_0,1_1_0,1_2_0,1_0_0 -2329,2,48.0,0.0,8,111,480.0,,,0,52,0.0,0.0,,806.0,560.8266033660025,,12,0,0,0,0,0,0,0,0,0,,1,2002.0,6,100213,2,3,0,0,2,,300.0,,32,1.0,3.0,3.0,2.0,1.5,2,2,95.56094562258446,480.0,9377.674825174825,0,4,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08594881087540525,6251.783216783217,1,1,1_0,1_1_0,1_2_0,1_0_0 -2330,2,46.0,0.0,9,111,300.0,,,56,65,0.0,0.0,,484.0,316.54016877099525,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,133294,2,1,0,0,1,,400.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,137.33370868416233,300.0,29663.56991398663,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016316309918307903,16479.761063325906,4,2,4_0,4_1_0,4_2_0,4_0_0 -2331,2,45.0,0.0,7,111,350.0,,,0,45,0.0,0.0,,373.0,39.567521096374406,,12,0,0,0,0,0,0,0,0,1,10.0,2,,5,106849,2,2,0,0,2,,230.0,235.0,32,1.0,0.0,2.0,2.0,1.5,3,3,148.69293401426324,350.0,33972.71139289731,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010979400368908536,22648.47426193154,6,3,6,6_0,6_2,6_0_0 -2332,0,70.0,0.0,5,111,300.0,,,0,78,0.0,0.0,,476.0,302.77755273747374,,41,0,0,0,0,0,0,0,0,0,,1,,3,109172,1,2,0,0,2,,400.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,107.50184873907624,300.0,23126.10321834101,0,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0205828018454268,15417.402145560673,3,2,3_0,3_1_0,3_2_0,3_0_0 -2333,1,58.0,152.0,7,111,390.0,,,0,78,0.0,0.0,,528.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,5,133384,2,2,0,0,2,,560.0,575.0,31,0.0,1.0,4.0,2.0,1.5,2,2,112.2822771346709,390.0,9135.72435897436,0,7,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05779508873659549,6090.482905982906,1,1,1_1,1_1_1,1_2_1,1_0_0 -2334,2,71.0,0.0,5,111,1200.0,,,74,75,0.0,0.0,,1260.0,103.2196202514115,,70,0,0,0,0,0,0,0,0,0,,1,,3,108328,2,1,0,0,2,,960.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,162.3055710716917,1200.0,79099.00131795584,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015929404657527253,52732.6675453039,10,5,10,10_1,10_2,10_0_0 -2335,2,83.0,0.0,2,111,380.0,,,0,86,0.0,0.0,,545.0,283.85395569138166,,12,0,0,0,0,0,0,0,0,0,,1,,2,126588,1,2,0,0,2,,450.0,,11,0.0,3.0,5.0,1.0,1.0,6,5,94.38560324489669,380.0,10317.029999999999,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052825280143607226,10317.029999999999,2,1,2_0,2_1_0,2_2_0,2_0_1 -2336,2,52.0,0.0,8,111,640.0,,,0,22,0.0,0.0,,870.0,395.67521096374406,,20,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,101266,2,2,0,0,2,,380.0,,32,2.0,2.0,4.0,5.0,2.4,2,2,137.3242441387847,640.0,16755.0,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051924798567591766,6981.25,1,1,1_0,1_1_0,1_2_0,1_0_0 -2337,2,77.0,0.0,2,111,580.0,,,86,86,0.0,0.0,,810.0,395.67521096374406,,10,0,0,0,0,0,0,0,0,0,,1,,2,106461,2,2,0,0,2,,600.0,,41,2.0,6.0,5.0,4.0,2.5,4,2,162.53232454086026,580.0,19633.97497816299,7,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04125501845147945,7853.589991265197,1,1,1_0,1_1_0,1_2_0,1_0_1 -2338,2,37.0,0.0,7,111,0.0,,,0,34,0.0,0.0,,282.0,0.0,,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,100991,2,1,0,0,2,,892.0,600.0,32,1.0,0.0,3.0,2.0,1.3,2,2,153.23241450650983,0.0,44022.9776264134,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0064057457083684976,33863.82894339492,9,5,9,9_1,9_2,9_0_0 -2339,2,74.0,0.0,2,111,1050.0,,,0,78,0.0,0.0,,1204.0,264.9303586452895,,12,0,0,0,0,0,0,0,0,0,,1,,2,106392,2,1,0,0,2,,500.0,,21,1.0,8.0,4.0,2.0,1.5,2,2,92.7729901505849,1050.0,9514.388965517242,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12654517324902592,6342.925977011495,1,1,1_0,1_1_0,1_2_0,1_0_1 -2340,2,62.0,0.0,7,111,288.0,,,0,78,0.0,0.0,,288.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,5,131619,2,2,0,0,2,,253.0,473.0,11,0.0,3.0,3.0,1.0,1.0,2,2,135.28321911267307,288.0,10170.18,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028318082865789986,10170.18,2,1,2_0,2_0_0,2_2_0,2_0_0 -2341,1,31.0,300.0,7,111,420.0,,,0,54,0.0,0.0,,466.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,0,,2,,5,110879,2,2,0,0,2,,520.0,326.0,32,1.0,0.0,3.0,3.0,1.6,2,2,148.46320417341917,420.0,8818.055024875424,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05284612067915547,5511.28439054714,1,1,1_1,1_0_1,1_2_1,1_0_0 -2342,1,42.0,173.0,7,111,450.0,,,12,56,0.0,0.0,,588.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,2,,5,128895,1,1,0,0,2,,600.0,460.0,43,2.0,0.0,4.0,4.0,2.5,1,1,121.70886905721281,450.0,18538.0,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03171863199913691,7415.2,1,1,1_1,1_0_1,1_2_1,1_0_0 -2343,1,37.0,342.0,8,111,380.0,,,0,85,0.0,0.0,,512.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,2,2000.0,6,113089,1,1,0,0,2,,400.0,394.0,31,0.0,0.0,3.0,2.0,1.3,3,3,138.9925121823841,380.0,13914.340449271416,0,7,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036796569831436705,10703.338807131859,2,1,2_1,2_0_1,2_2_1,2_0_0 -2344,1,47.0,190.0,7,111,300.0,,,0,56,0.0,0.0,,346.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,30.0,2,,5,127986,2,1,0,0,2,,260.0,500.0,32,1.0,0.0,3.0,2.0,1.3,2,2,130.1017851522921,300.0,17711.184316226085,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01953567835003628,13623.987935558527,3,2,3_1,3_0_1,3_2_1,3_0_0 -2345,1,50.0,163.0,8,111,420.0,,,55,63,0.0,0.0,,900.0,825.756962011292,,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,130929,1,2,0,0,2,,500.0,520.0,43,2.0,2.0,4.0,3.0,2.0,2,2,164.34351406689976,420.0,24382.0,4,4,3,4,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03691247641702895,12191.0,2,1,2_1,2_1_1,2_2_1,2_0_0 -2346,2,55.0,0.0,7,111,600.0,,,52,52,0.0,0.0,,751.0,259.76937763271894,,41,0,0,0,0,0,0,0,0,2,25.0,2,,5,133400,2,1,0,0,2,,500.0,800.0,43,2.0,4.0,4.0,2.0,1.5,1,1,160.5080054439298,600.0,73394.80982683125,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010232331165812951,48929.8732178875,10,5,10,10_0,10_2,10_0_0 -2347,1,48.0,200.0,9,111,180.0,,,0,56,0.0,0.0,,318.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,2,30.0,2,2008.0,6,117181,2,1,0,0,2,,500.0,282.0,32,1.0,0.0,3.0,2.0,1.5,2,2,138.9925121823841,180.0,24314.35375239729,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013078694307005655,16209.56916826486,4,2,4_1,4_0_1,4_2_1,4_0_0 -2348,1,53.0,275.0,7,111,450.0,,,0,85,0.0,0.0,,588.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,5,127195,2,1,0,0,2,,480.0,380.0,11,0.0,1.0,4.0,1.0,1.0,1,1,153.83119725361982,450.0,5822.539160045403,0,7,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10098686910255403,5822.539160045403,1,1,1_1,1_1_1,1_2_1,1_0_0 -2351,2,45.0,0.0,9,111,600.0,,,37,37,0.0,0.0,,784.0,316.54016877099525,,20,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,110147,2,1,0,0,2,,350.0,,43,2.0,1.0,4.0,3.0,1.8,2,1,210.75581173906343,600.0,88620.48051596907,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008846713484686264,49233.60028664948,10,5,10,10_1,10_2,10_0_0 -2352,2,49.0,0.0,7,111,600.0,,,42,52,0.0,0.0,,692.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,2,30.0,2,,5,108369,2,2,0,0,2,,600.0,460.0,43,2.0,0.0,3.0,3.0,2.0,2,2,102.93452443917288,600.0,46359.0,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014926982894367868,23179.5,6,3,6,6_0,6_2,6_0_0 -2353,2,90.0,0.0,2,111,420.0,,,0,71,0.0,0.0,,516.0,165.1513924022584,,10,0,0,0,0,0,0,0,0,0,,1,,2,125289,2,1,0,0,2,,450.0,,11,0.0,5.0,5.0,1.0,1.0,5,4,90.65567485323704,420.0,17139.240837696336,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030106350968888942,17139.240837696336,4,2,4_0,4_1_0,4_2_0,4_0_1 -2354,2,59.0,0.0,9,111,720.0,,,0,85,0.0,0.0,,918.0,340.62474682965797,,12,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126550,1,2,0,0,2,,240.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,141.1262633088703,720.0,24356.8674824779,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037689575667330805,24356.8674824779,7,4,7,7_1,7_2,7_0_0 -2355,1,28.0,300.0,7,111,350.0,,,0,52,0.0,0.0,,442.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,0,,1,,5,133174,1,2,0,0,2,,400.0,450.0,32,1.0,0.0,3.0,3.0,1.6,1,1,109.07179789784979,350.0,14686.899761798131,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030094846915867116,9179.312351123832,1,1,1_1,1_1_1,1_2_1,1_0_0 -2356,0,43.0,0.0,2,111,450.0,,,55,21,0.0,0.0,,588.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,2,122059,2,2,0,0,2,,400.0,,43,2.0,0.0,3.0,2.0,1.5,3,2,131.04473004841282,450.0,12919.321367072895,4,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04551322653050638,8612.88091138193,1,1,1_0,1_1_0,1_2_0,1_0_1 -2357,2,50.0,0.0,9,111,720.0,,,54,21,0.0,0.0,,858.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,130923,2,2,0,0,1,,700.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,192.2483856110161,720.0,45476.155126881706,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018867030372425264,19772.241359513788,5,3,5,5_1,5_2,5_0_0 -2358,2,68.0,0.0,2,111,720.0,,,0,86,0.0,0.0,,950.0,395.67521096374406,,12,0,0,0,0,0,0,0,0,0,,1,,2,131926,1,2,0,0,2,,360.0,,21,1.0,3.0,5.0,3.0,2.0,3,3,106.95171565636808,720.0,9445.12,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10058104079143515,4722.56,1,1,1_0,1_1_0,1_2_0,1_0_1 -2359,2,71.0,0.0,2,111,530.0,,,78,78,0.0,0.0,,760.0,395.67521096374406,,50,0,0,0,0,0,0,0,0,0,,1,,2,127077,2,2,0,0,2,,600.0,,41,1.0,2.0,4.0,3.0,2.0,1,1,111.86819398274164,530.0,46899.04714254605,5,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01620502006554714,23449.523571273025,6,3,6,6_1,6_2,6_0_1 -2360,2,76.0,0.0,2,111,420.0,,,77,78,0.0,0.0,,552.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,2,105864,1,2,0,0,2,,200.0,,41,0.0,5.0,3.0,2.0,1.5,1,1,96.12972684090333,420.0,14603.456530338053,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037799270251754696,9735.637686892036,1,1,1_0,1_1_0,1_2_0,1_0_1 -2361,1,33.0,300.0,9,111,0.0,,,84,68,0.0,0.0,,785.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,106413,1,1,0,0,2,,778.0,900.0,42,1.0,0.0,4.0,5.0,2.4000000000000004,2,2,200.03017408609062,0.0,27021.0,3,4,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029051478479700972,11258.749999999998,2,1,2_1,2_1_1,2_2_1,2_0_0 -2362,2,93.0,0.0,2,111,240.0,,,0,78,0.0,0.0,,374.0,230.52381856148568,,20,0,0,0,0,0,0,0,0,0,,1,,2,110265,2,2,0,0,2,,220.0,,11,0.0,1.0,3.0,1.0,1.0,5,5,114.21997230727217,240.0,9707.050149415822,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03852869762113134,9707.050149415822,1,1,1_0,1_1_0,1_2_0,1_0_1 -2363,0,39.0,0.0,2,111,220.0,,,0,85,0.0,0.0,,358.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,2,108393,1,3,0,0,2,,280.0,,31,0.0,0.0,5.0,3.0,1.6,1,1,167.92810395327513,220.0,11606.0,0,6,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030846114078924694,7253.75,1,1,1_0,1_1_0,1_2_0,1_0_1 -2364,0,62.0,0.0,2,111,420.0,,,0,77,0.0,0.0,,696.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,2,127610,1,2,0,0,1,,320.0,,21,0.0,1.0,4.0,2.0,1.5,2,2,108.20657430846387,420.0,28495.469069271945,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024424935708481837,18996.97937951463,5,3,5,5_1,5_2,5_0_1 -2365,2,39.0,0.0,9,111,150.0,,,0,42,0.0,0.0,,196.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,1.0,1,2013.0,6,129010,2,2,0,0,1,,150.0,,12,1.0,0.0,3.0,1.0,1.0,5,5,225.93338204937805,150.0,41961.77975487969,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004670917228605095,41961.77975487969,9,5,9,9_1,9_2,9_0_0 -2366,2,55.0,0.0,9,111,420.0,,,56,21,0.0,0.0,,552.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,106621,2,1,0,0,2,,200.0,,43,2.0,2.0,3.0,2.0,1.5,3,2,97.62405209140432,420.0,22516.076024573515,1,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024515817027689915,15010.717349715676,3,2,3_0,3_1_0,3_2_0,3_0_0 -2367,2,79.0,0.0,2,111,600.0,,,86,86,0.0,0.0,,762.0,278.692974678811,,12,0,0,0,0,0,0,0,0,0,,1,,2,107607,2,1,0,0,1,,600.0,,41,0.0,0.0,5.0,3.0,2.0,2,2,131.45953755973548,600.0,80810.35630447738,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009429484472620505,40405.17815223869,9,5,9,9_1,9_2,9_0_1 -2368,2,69.0,0.0,6,211,700.0,,,75,77,0.0,0.0,,700.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,,4,108527,2,1,0,0,2,,700.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,124.6346294470269,700.0,26442.18489554643,5,5,0,1,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026472850211326473,17628.12326369762,4,2,4_0,4_1_0,4_2_0,4_0_0 -2369,1,46.0,308.0,7,211,480.0,,,0,55,0.0,0.0,,480.0,0.0,,44,0,0,0,0,0,0,0,0,0,,8,,5,129604,2,2,0,0,2,,300.0,314.0,32,1.0,0.0,2.0,2.0,1.3,2,2,95.33504594240397,480.0,9262.933760683762,0,4,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05181943565626533,7125.333662064432,1,1,1_1,1_0_1,1_2_1,1_0_0 -2370,1,56.0,299.0,6,211,650.0,,,0,46,0.0,0.0,,650.0,0.0,,10,0,0,0,0,0,0,0,0,0,,8,,4,108511,2,1,0,0,2,,660.0,348.0,32,1.0,2.0,4.0,2.0,1.5,2,2,80.88176941720845,650.0,7618.0,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08532423208191127,5078.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_0 -2371,2,57.0,0.0,5,211,450.0,,,0,63,0.0,0.0,,450.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,8,,3,101046,2,1,0,0,2,,500.0,331.0,12,1.0,3.0,3.0,1.0,1.0,2,2,95.33504594240397,450.0,29967.55534069626,0,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015016239892911624,29967.55534069626,8,4,8,8_0,8_2,8_0_0 -2372,1,33.0,468.0,2,211,600.0,,,0,85,0.0,0.0,,600.0,0.0,,60,0,0,0,0,0,0,0,0,0,,8,,2,110610,2,2,0,0,2,,560.0,60.0,31,0.0,0.0,5.0,4.0,1.9,4,3,63.87776332767218,600.0,16501.10580358227,0,6,2,3,82.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036361199494263245,8684.792528201197,1,1,1_1,1_0_1,1_2_1,1_0_1 -2373,2,75.0,0.0,5,211,300.0,,,0,86,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,3,114718,2,1,0,0,2,,300.0,552.0,11,0.0,2.0,5.0,1.0,1.0,4,4,95.53004154152597,300.0,22397.0,0,5,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013394651069339644,22397.0,6,3,6,6_0,6_2,6_0_0 -2374,2,59.0,0.0,8,211,600.0,,,0,81,0.0,0.0,,600.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,1999.0,6,102286,2,1,0,0,1,,360.0,,32,2.0,1.0,4.0,2.0,1.5,4,3,96.44495063738171,600.0,33657.906613816194,0,4,1,2,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017826420605543743,22438.604409210795,6,3,6,6_1,6_2,6_0_0 -2375,1,54.0,250.0,6,211,600.0,,,52,47,0.0,0.0,,600.0,0.0,,60,0,0,0,0,0,0,0,0,0,,8,,4,126287,2,2,0,0,2,,700.0,300.0,43,2.0,0.0,2.0,2.0,1.5,2,2,91.78897413481378,600.0,19787.36232784889,4,4,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030322384058008342,13191.574885232592,2,1,2_1,2_0_1,2_2_1,2_0_0 -2376,1,57.0,254.0,6,211,300.0,,,0,85,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,4,124355,2,1,0,0,2,,360.0,100.0,11,0.0,0.0,2.0,1.0,1.0,2,2,129.278414213353,300.0,13979.0,0,7,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021460762572430073,13979.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -2377,2,58.0,0.0,7,211,1080.0,,,54,52,0.0,0.0,,1080.0,0.0,,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,127127,2,1,0,0,2,,1000.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,79.91536132210038,1080.0,77800.28324987815,1,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013881697532273335,38900.141624939075,9,5,9,9_1,9_2,9_0_0 -2378,2,66.0,0.0,5,211,600.0,,,0,78,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,114857,2,1,0,0,2,,1000.0,,11,0.0,3.0,6.0,1.0,1.0,3,3,104.84235401678097,600.0,12290.937195776936,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04881645642174097,12290.937195776936,2,1,2_0,2_1_0,2_2_0,2_0_0 -2379,2,83.0,0.0,8,211,850.0,,,75,77,0.0,0.0,,850.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,125486,2,1,0,0,2,,350.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,110.89029367078567,850.0,51304.85110757155,5,5,0,1,144.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01656763408625422,34203.23407171437,9,5,9,9_1,9_2,9_0_0 -2380,2,57.0,0.0,7,211,500.0,,,0,56,0.0,0.0,,500.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,5,131916,2,1,0,0,2,,300.0,,32,2.0,0.0,4.0,3.0,2.0,4,3,79.91536132210038,500.0,7618.0,0,4,0,1,64.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06563402467839329,3809.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -2381,2,66.0,0.0,6,211,800.0,,,0,22,0.0,0.0,,800.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,110689,2,1,0,0,2,,400.0,,12,1.0,1.0,4.0,1.0,1.0,4,4,90.89114220444327,800.0,31392.496375667135,0,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02548379684197698,31392.496375667135,8,4,8,8_1,8_2,8_0_0 -2382,2,58.0,0.0,7,211,720.0,,,86,52,0.0,0.0,,720.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,5,127214,2,1,0,0,2,,500.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,106.88243833018346,720.0,56816.436035849605,5,1,0,1,103.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012672389368909022,37877.624023899734,9,5,9,9_1,9_2,9_0_0 -2383,2,60.0,0.0,7,211,500.0,,,37,52,0.0,0.0,,500.0,0.0,,12,0,0,0,0,0,0,0,0,2,10.0,1,,5,103843,2,1,0,0,2,,300.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,126.78592264579395,500.0,84743.8831662699,1,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005900130856866517,56495.92211084659,10,5,10,10_1,10_2,10_0_0 -2384,1,43.0,210.0,2,211,120.0,,,0,81,0.0,0.0,,120.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,2,115507,2,2,0,0,2,,200.0,40.0,12,1.0,1.0,2.0,1.0,1.0,3,3,130.04886776330287,120.0,2421.5600432213355,0,4,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04955483153759312,2421.5600432213355,1,1,1_1,1_0_1,1_2_1,1_0_1 -2385,2,83.0,0.0,2,211,500.0,,,0,86,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,118262,2,2,0,0,1,,500.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,96.19017638444517,500.0,24202.98493012453,0,5,0,1,63.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02065860890479129,24202.98493012453,7,4,7,7_1,7_2,7_0_1 -2386,0,78.0,0.0,2,211,0.0,,,0,86,0.0,0.0,,327.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,2,102022,2,1,0,0,2,,198.0,,11,0.0,0.0,6.0,1.0,1.0,3,3,132.0035385337122,0.0,51322.126964126604,0,5,5,0,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0063715208106742745,51322.126964126604,10,5,10,10_1,10_2,10_0_1 -2387,2,59.0,0.0,5,211,500.0,,,77,56,0.0,0.0,,500.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,3,117532,2,1,0,0,2,,900.0,,42,1.0,0.0,4.0,3.0,2.0,2,2,94.24237993530727,500.0,5148.205882352941,7,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09712121298682007,2574.1029411764707,1,1,1_0,1_1_0,1_2_0,1_0_0 -2388,2,42.0,0.0,9,211,500.0,,,0,38,0.0,0.0,,500.0,0.0,,12,0,0,0,0,0,0,0,0,2,50.0,1,2008.0,6,132161,2,1,0,0,2,,300.0,,12,1.0,2.0,3.0,1.0,1.0,3,2,133.71793197733894,500.0,92543.00009042336,0,1,1,2,73.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005402893784634734,92543.00009042336,10,5,10,10_1,10_2,10_0_0 -2389,2,72.0,0.0,6,211,480.0,,,0,77,0.0,0.0,,480.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,4,132470,1,1,0,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,90.89114220444327,480.0,17838.77884531058,0,5,0,1,86.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026907671436611897,17838.77884531058,4,2,4_0,4_1_0,4_2_0,4_0_0 -2390,2,65.0,0.0,2,211,600.0,,,0,75,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,2,109339,2,1,0,0,2,,400.0,,11,0.0,1.0,4.0,1.0,1.0,4,3,96.0829349628072,600.0,40686.231883591565,0,5,0,1,67.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014747003401953653,40686.231883591565,9,5,9,9_1,9_2,9_0_1 -2391,0,67.0,0.0,2,211,0.0,,,0,75,0.0,0.0,,463.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,2,101928,2,1,0,0,2,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,106.85146198490554,0.0,8452.17689760351,0,5,5,0,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05477878724134097,8452.17689760351,1,1,1_0,1_1_0,1_2_0,1_0_1 -2392,2,31.0,0.0,6,211,0.0,,,0,42,0.0,0.0,,606.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,111518,1,3,0,0,2,,314.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,129.46769745738015,0.0,14682.158669101536,0,1,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04127458459329426,14682.158669101536,3,2,3_0,3_1_0,3_2_0,3_0_0 -2393,2,51.0,0.0,2,211,0.0,,,0,43,0.0,0.0,,186.0,0.0,,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,123009,2,2,0,0,2,,247.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,96.22361498070559,0.0,44339.94288549728,0,1,1,2,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004194863319520354,44339.94288549728,10,5,10,10_1,10_2,10_0_1 -2394,1,63.0,254.0,5,211,420.0,,,0,77,0.0,0.0,,420.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,3,114278,2,2,0,0,2,,600.0,140.0,11,0.0,2.0,3.0,1.0,1.0,1,1,100.93714871283262,420.0,6573.323218900845,0,7,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06389462164165877,6573.323218900845,1,1,1_1,1_0_1,1_2_1,1_0_0 -2395,2,72.0,0.0,5,211,600.0,,,0,77,0.0,0.0,,600.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,3,113454,2,1,0,0,2,,300.0,,21,2.0,1.0,4.0,5.0,2.5999999999999996,1,1,125.02054010784843,600.0,19302.563315642998,0,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031083954508454,7424.062813708846,1,1,1_0,1_1_0,1_2_0,1_0_0 -2396,1,45.0,358.0,6,211,450.0,,,0,85,0.0,0.0,,450.0,0.0,,30,0,0,0,0,0,0,0,0,0,,1,,4,111671,2,1,0,0,2,,400.0,800.0,31,0.0,2.0,4.0,4.0,2.3,1,1,94.59122065883722,450.0,16679.98580560385,0,7,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02697844022438058,7252.167741566892,1,1,1_1,1_1_1,1_2_1,1_0_0 -2397,2,45.0,0.0,6,211,1200.0,,,43,53,0.0,0.0,,1200.0,0.0,,31,0,0,0,0,0,0,0,0,2,40.0,2,,4,102909,2,1,0,0,2,,642.0,660.0,43,2.0,2.0,3.0,2.0,1.5,1,1,106.06814110413335,1200.0,71039.5603256008,1,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016891996438321864,47359.70688373387,10,5,10,10_0,10_2,10_0_0 -2398,2,48.0,0.0,5,211,360.0,,,86,46,0.0,0.0,,360.0,0.0,,33,0,0,0,0,0,0,0,0,0,,2,,3,100881,2,1,0,0,2,,440.0,620.0,42,1.0,2.0,3.0,2.0,1.5,3,3,89.96849410436815,360.0,61508.158734787925,5,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005852882079469409,41005.43915652528,9,5,9,9_0,9_2,9_0_0 -2399,1,49.0,443.0,6,211,500.0,,,0,81,0.0,0.0,,500.0,0.0,,44,0,0,0,0,0,0,0,0,0,,2,,4,131558,2,1,0,0,2,,900.0,620.0,32,1.0,1.0,3.0,4.0,2.5,1,1,126.84033480647406,500.0,9479.75448275862,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05274398202077691,3791.901793103448,1,1,1_1,1_0_1,1_2_1,1_0_0 -2400,1,38.0,497.0,6,211,700.0,,,43,62,0.0,0.0,,700.0,0.0,,60,0,0,0,0,0,0,0,0,0,,3,,4,114911,2,1,0,0,2,,600.0,620.0,43,2.0,0.0,3.0,5.0,2.4,1,1,96.1143039264057,700.0,15292.782398191559,4,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045773226988620346,6371.99266591315,1,1,1_1,1_0_1,1_2_1,1_0_0 -2401,2,45.0,0.0,7,211,900.0,,,0,85,0.0,0.0,,900.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,5,109082,2,2,0,0,2,,450.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,106.09537709586489,900.0,14429.858163135592,0,7,0,1,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06237067543042509,14429.858163135592,3,2,3_0,3_1_0,3_2_0,3_0_0 -2403,2,52.0,0.0,6,211,1000.0,,,52,21,0.0,0.0,,1000.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,123912,2,2,0,0,2,,800.0,,43,2.0,2.0,4.0,4.0,2.3,2,2,113.04231331946309,1000.0,5429.670308430417,4,4,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18417324500298715,2360.7262210567033,1,1,1_0,1_1_0,1_2_0,1_0_0 -2404,1,75.0,253.0,2,211,360.0,,,0,77,0.0,0.0,,360.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,2,121290,2,2,0,0,2,,300.0,50.0,11,0.0,5.0,4.0,1.0,1.0,2,2,110.7371742577413,360.0,10755.0,0,5,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03347280334728033,10755.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -2405,1,73.0,95.0,5,211,720.0,,,0,78,0.0,0.0,,720.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,124199,2,1,0,0,2,,300.0,285.0,11,0.0,5.0,4.0,1.0,1.0,1,1,95.19566502253092,720.0,14465.091900766272,0,5,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04977500350079758,14465.091900766272,3,2,3_1,3_0_1,3_2_1,3_0_0 -2406,2,65.0,0.0,5,211,300.0,,,0,86,0.0,0.0,,300.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,3,112736,2,2,0,0,2,,160.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,102.34291196547768,300.0,9386.15909090909,0,5,0,1,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0319619555874099,9386.15909090909,1,1,1_0,1_1_0,1_2_0,1_0_0 -2407,1,28.0,380.0,7,211,0.0,,,0,42,0.0,0.0,,167.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,128159,2,2,0,0,2,,360.0,800.0,22,3.0,0.0,4.0,5.0,2.5999999999999996,1,1,98.3311809244543,0.0,4437.255484050388,0,4,2,3,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0376358766359696,1706.636724634765,1,1,1_1,1_1_1,1_2_1,1_0_0 -2408,2,80.0,0.0,6,211,720.0,,,0,86,0.0,0.0,,720.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,107222,2,1,0,0,2,,410.0,,21,1.0,7.0,5.0,4.0,2.5,1,1,112.87704417358611,720.0,12108.732730622776,0,6,0,1,140.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05946121828084721,4843.49309224911,1,1,1_0,1_1_0,1_2_0,1_0_0 -2409,1,47.0,353.0,7,211,760.0,,,0,68,0.0,0.0,,760.0,0.0,,20,0,0,0,0,0,0,0,0,3,120.0,2,,5,104884,2,1,0,0,2,,400.0,495.0,32,1.0,0.0,4.0,3.0,2.0,1,1,101.45016413802192,760.0,16705.50280613838,0,1,2,3,82.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045493991340430695,8352.75140306919,1,1,1_1,1_0_1,1_2_1,1_0_0 -2410,2,54.0,0.0,6,211,450.0,,,0,55,0.0,0.0,,450.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,122105,2,1,0,0,2,,260.0,479.0,12,1.0,1.0,3.0,1.0,1.0,3,3,85.6754080366374,450.0,24358.076327067334,0,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018474365297063634,24358.076327067334,7,4,7,7_0,7_2,7_0_0 -2411,0,38.0,0.0,6,211,300.0,,,21,68,0.0,0.0,,300.0,0.0,,30,0,0,0,0,0,0,0,0,0,,1,,4,130012,1,2,0,0,2,,280.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,92.29676903203098,300.0,17734.20731239098,1,1,5,0,180.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016916459513270067,8444.860624948085,1,1,1_0,1_1_0,1_2_0,1_0_0 -2412,2,42.0,0.0,5,211,300.0,,,0,52,0.0,0.0,,300.0,0.0,,70,0,0,0,0,0,0,0,0,1,30.0,1,,3,111136,2,2,0,0,2,,140.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,81.255346956633,300.0,16166.750573306,0,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01855660472026766,10777.833715537334,2,1,2_0,2_1_0,2_2_0,2_0_0 -2413,2,59.0,0.0,5,211,1600.0,,,0,71,0.0,0.0,,1600.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,,3,119147,2,1,0,0,2,,900.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,81.255346956633,1600.0,13965.073327535381,0,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11457154305414415,13965.073327535381,3,2,3_0,3_1_0,3_2_0,3_0_0 -2414,2,52.0,0.0,5,211,160.0,,,86,69,0.0,0.0,,160.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,3,127824,2,1,0,0,2,,200.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,81.37431713243606,160.0,13415.381797698636,6,1,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011926608009579532,8943.587865132424,1,1,1_0,1_1_0,1_2_0,1_0_0 -2415,1,49.0,248.0,5,211,600.0,,,0,69,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,110223,2,1,0,0,2,,500.0,535.0,32,2.0,0.0,4.0,2.0,1.5,1,1,95.85508013373173,600.0,6573.323218900845,0,4,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09127803091665539,4382.21547926723,1,1,1_1,1_1_1,1_2_1,1_0_0 -2416,0,55.0,0.0,2,211,0.0,,,0,78,0.0,0.0,,135.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,2,130521,2,3,0,0,2,,150.0,,11,0.0,0.0,1.0,1.0,1.0,2,2,102.49275754099689,0.0,9378.92132867133,0,7,5,0,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014393979357445453,9378.92132867133,1,1,1_0,1_1_0,1_2_0,1_0_1 -2417,2,75.0,0.0,6,211,360.0,,,77,78,0.0,0.0,,360.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,118383,2,1,0,0,2,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,90.43158505581748,360.0,25466.94077911831,5,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014135973500797669,16977.96051941221,4,2,4_0,4_1_0,4_2_0,4_0_0 -2418,2,45.0,0.0,9,211,600.0,,,0,34,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,125225,2,1,0,0,2,,800.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,95.7415771086969,600.0,49602.8291205341,0,1,1,2,52.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012096084248380457,38156.022400410846,9,5,9,9_1,9_2,9_0_0 -2419,2,75.0,0.0,7,211,180.0,,,0,77,0.0,0.0,,180.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,5,112057,2,2,0,0,2,,160.0,320.0,11,0.0,2.0,2.0,1.0,1.0,2,2,107.19181195259962,180.0,20099.313401127958,0,5,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008955529793863434,20099.313401127958,5,3,5,5_0,5_2,5_0_0 -2420,1,37.0,356.0,6,211,900.0,,,0,43,0.0,0.0,,900.0,0.0,,20,0,0,0,0,0,0,0,0,0,,8,,4,112000,2,1,0,0,2,,800.0,367.0,22,2.0,2.0,4.0,4.0,2.3,2,2,76.08080348430555,900.0,28682.790900064254,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03137769972021739,12470.77865220185,2,1,2_1,2_0_1,2_2_1,2_0_0 -2421,2,38.0,0.0,7,211,0.0,,,43,21,0.0,0.0,,540.0,0.0,,12,0,0,0,0,0,0,0,0,2,10.0,1,,5,130732,2,1,0,0,2,,601.0,850.0,43,2.0,0.0,4.0,5.0,2.4,2,2,103.95282136175932,0.0,122304.91361729856,1,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0044151946477776136,50960.3806738744,10,5,10,10_1,10_2,10_0_0 -2422,0,41.0,0.0,1,211,0.0,,,0,56,0.0,0.0,,924.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,1,132124,2,1,0,0,2,,404.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,94.10459650554583,0.0,22015.844262295082,0,1,5,0,90.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04196977363173244,12231.024590163934,2,1,2_0,2_1_0,2_2_0,2_1_0 -2423,2,49.0,0.0,7,111,410.0,,,13,62,0.0,0.0,,594.0,316.54016877099525,,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,105398,2,2,0,0,2,,320.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,95.73976948285781,410.0,13775.37644597265,1,4,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04312041869270738,7652.98691442925,1,1,1_0,1_1_0,1_2_0,1_0_0 -2424,2,73.0,0.0,7,111,198.0,,,0,75,0.0,0.0,,221.0,39.567521096374406,,41,0,0,0,0,0,0,0,0,0,,1,,5,125395,2,2,0,0,2,,178.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,121.4833765731022,198.0,69686.39942595757,0,5,0,1,43.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0031713505335401134,69686.39942595757,10,5,10,10_1,10_2,10_0_0 -2425,2,80.0,0.0,2,111,2.0,,,86,78,0.0,0.0,,48.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,0,,1,,2,123692,2,1,0,0,2,,240.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,72.3626708144022,2.0,13522.0,5,5,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.003549770743972785,9014.666666666666,1,1,1_0,1_1_0,1_2_0,1_0_1 -2426,2,43.0,0.0,2,111,350.0,,,0,45,0.0,0.0,,400.0,86.01635020950958,,20,0,0,0,0,0,0,0,0,0,,1,,2,105958,2,2,0,0,2,,280.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,126.1736833375359,350.0,29297.319946862186,0,1,1,2,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013653125976215479,29297.319946862186,8,4,8,8_1,8_2,8_0_1 -2427,0,66.0,0.0,2,111,260.0,,,0,86,0.0,0.0,,306.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,0,,1,,2,130008,1,3,0,0,2,,160.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,125.38511781592871,260.0,11124.342105263146,0,5,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027507244662605745,11124.342105263146,2,1,2_0,2_1_0,2_2_0,2_0_1 -2428,2,45.0,0.0,7,111,570.0,,,0,52,0.0,0.0,,846.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,133137,2,1,0,0,2,,570.0,480.0,32,1.0,0.0,3.0,2.0,1.5,2,2,96.89617504460047,570.0,23964.859683299634,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03530168802071272,15976.573122199756,3,2,3_0,3_0_0,3_2_0,3_0_0 -2429,1,50.0,80.0,7,111,360.0,,,0,69,0.0,0.0,,490.0,223.64251054472493,,41,0,0,0,0,0,0,0,0,2,35.0,8,,5,130832,2,2,0,0,2,,360.0,430.0,12,1.0,2.0,3.0,1.0,1.0,1,1,91.66243158126704,360.0,20914.83203241751,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023428349758702876,20914.83203241751,5,3,5,5_0,5_2,5_0_0 -2430,1,41.0,522.0,2,111,480.0,,,0,85,0.0,0.0,,756.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,2,100695,2,2,0,0,2,,1116.0,690.0,31,0.0,0.0,3.0,5.0,2.5999999999999996,2,2,69.08290542741514,480.0,23931.0,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03159082361790147,9204.230769230771,1,1,1_1,1_1_1,1_2_1,1_0_1 -2431,2,78.0,0.0,1,111,360.0,,,0,78,0.0,0.0,,498.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,1,104920,2,2,0,0,2,,160.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,96.09894503889518,360.0,10839.421052631573,0,5,0,1,33.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04594341317510649,10839.421052631573,2,1,2_0,2_1_0,2_2_0,2_1_0 -2432,2,70.0,0.0,7,111,456.0,,,77,90,0.0,0.0,,1008.0,949.6205063129859,,50,0,0,0,0,0,0,0,0,0,,1,,5,114660,2,3,0,0,2,,242.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,81.38787634572822,456.0,32149.005612035442,5,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031354002427454265,21432.670408023627,6,3,6,6_1,6_2,6_0_0 -2433,2,76.0,0.0,2,111,540.0,,,0,77,0.0,0.0,,701.0,276.9726476746209,,31,0,0,0,0,0,0,0,0,0,,1,,2,126054,2,1,0,0,2,,358.0,,21,1.0,5.0,4.0,3.0,1.8,2,2,106.42932043701002,540.0,20926.46174998768,0,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03349825729619164,11625.81208332649,2,1,2_0,2_1_0,2_2_0,2_0_1 -2434,2,77.0,0.0,5,111,444.0,,,78,78,0.0,0.0,,720.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,3,119638,2,3,0,0,2,,800.0,,41,1.0,6.0,4.0,3.0,2.0,3,3,94.12027693569574,444.0,42925.54516671701,5,5,0,1,106.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0167732290225696,21462.772583358506,6,3,6,6_1,6_2,6_0_0 -2435,2,62.0,0.0,9,111,430.0,,,74,74,0.0,0.0,,530.0,172.03270041901916,,43,0,0,0,0,0,0,0,0,0,,1,2008.0,6,104783,2,1,0,0,2,,360.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,144.5612067877916,430.0,99525.0,5,5,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005325295151971866,66350.0,10,5,10,10_1,10_2,10_0_0 -2436,2,74.0,0.0,7,111,180.0,,,0,78,0.0,0.0,,204.0,41.2878481005646,,70,0,0,0,0,0,0,0,0,0,,2,,5,112174,2,1,0,0,2,,160.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,119.81508630801115,180.0,9581.058936839188,0,5,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021292009718844297,9581.058936839188,1,1,1_0,1_0_0,1_2_0,1_0_0 -2437,2,43.0,0.0,2,111,960.0,,,85,47,0.0,0.0,,1512.0,949.6205063129859,,50,0,0,0,0,0,0,0,0,0,,1,,2,114797,2,1,0,0,2,,520.0,,42,1.0,0.0,5.0,6.0,2.8999999999999995,2,2,105.95791702962703,960.0,33720.49843509146,6,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044839194856815257,11627.758081066022,2,1,2_0,2_1_0,2_2_0,2_0_1 -2438,2,78.0,0.0,2,111,504.0,,,77,71,0.0,0.0,,780.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,2,110585,2,1,0,0,2,,244.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,90.44665346060819,504.0,21007.186754865128,5,5,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037130150224392,14004.791169910086,3,2,3_0,3_1_0,3_2_0,3_0_1 -2439,2,82.0,0.0,5,111,400.0,,,86,86,0.0,0.0,,660.0,447.28502108944986,,31,0,0,0,0,0,0,0,0,0,,1,,3,108301,1,2,0,0,2,,220.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,90.44665346060819,400.0,16180.478677008105,6,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040789893375517805,10786.98578467207,2,1,2_0,2_1_0,2_2_0,2_0_0 -2440,1,21.0,357.0,5,111,240.0,,,0,81,0.0,0.0,,516.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,2,,3,111939,2,2,0,0,2,,240.0,500.0,32,1.0,0.0,2.0,3.0,1.6,1,1,106.6200448504494,240.0,14735.46284246704,0,4,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035017563107207446,9209.6642765419,1,1,1_1,1_0_1,1_2_1,1_0_0 -2441,2,57.0,0.0,2,111,630.0,,,0,46,0.0,0.0,,660.0,51.60981012570575,,12,0,0,0,0,0,0,0,0,0,,1,,2,133088,2,1,0,0,2,,360.0,375.0,12,1.0,0.0,3.0,1.0,1.0,1,1,128.4485897935869,630.0,20170.86532212162,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032720460399691946,20170.86532212162,5,3,5,5_1,5_2,5_0_1 -2442,1,43.0,350.0,7,111,600.0,,,0,56,0.0,0.0,,738.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,2,,5,129380,2,3,0,0,2,,320.0,417.0,32,1.0,0.0,3.0,3.0,1.8,1,1,135.49858334062145,600.0,8767.435440604959,0,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0841751279492829,4870.797467002755,1,1,1_1,1_0_1,1_2_1,1_0_0 -2443,2,92.0,0.0,2,111,288.0,,,0,78,0.0,0.0,,428.0,240.84578058662683,,41,0,0,0,0,0,0,0,0,0,,1,,2,130527,2,3,0,0,2,,200.0,,21,0.0,0.0,4.0,2.0,1.5,1,1,91.72557913629932,288.0,5110.0,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0837573385518591,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_1 -2444,2,55.0,0.0,7,111,1200.0,,,85,21,0.0,0.0,,1450.0,430.0817510475479,,10,0,0,0,0,0,0,0,0,0,,1,,5,106103,2,1,0,0,2,,350.0,,42,2.0,3.0,4.0,4.0,2.3,1,1,96.82772243500392,1200.0,58157.585150561754,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024932259416310963,25285.906587200763,7,4,7,7_1,7_2,7_0_0 -2445,2,79.0,0.0,2,111,318.0,,,0,86,0.0,0.0,,588.0,464.48829113135173,,10,0,0,0,0,0,0,0,0,0,,1,,2,127672,2,1,0,0,2,,180.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,102.08422980318396,318.0,5281.077450980392,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11134091583732449,5281.077450980392,1,1,1_0,1_1_0,1_2_0,1_0_1 -2446,2,62.0,0.0,9,111,300.0,,,0,86,0.0,0.0,,430.0,223.64251054472493,,12,0,0,0,0,0,0,0,0,0,,1,2010.0,6,129164,2,3,0,0,2,,360.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,131.63285279187176,300.0,5331.224071775974,0,5,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0806568987179628,5331.224071775974,1,1,1_0,1_1_0,1_2_0,1_0_0 -2447,2,95.0,0.0,6,111,360.0,,,0,77,0.0,0.0,,500.0,240.84578058662683,,20,0,0,0,0,0,0,0,0,0,,1,,4,115387,1,1,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,96.23964849797791,360.0,8448.244328650486,0,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059183894374876526,8448.244328650486,1,1,1_0,1_1_0,1_2_0,1_0_0 -2448,0,52.0,0.0,2,111,360.0,,,0,67,0.0,0.0,,570.0,361.26867087994026,,71,0,0,0,0,0,0,0,0,0,,1,,2,131089,2,1,0,0,2,,210.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,111.56666178145652,360.0,7631.198229457601,0,4,5,0,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07469338141416798,7631.198229457601,1,1,1_0,1_1_0,1_2_0,1_0_1 -2449,2,82.0,0.0,2,111,0.0,,,0,90,0.0,0.0,,170.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,113927,2,1,0,0,2,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,157.51411304061747,0.0,9566.780110399437,0,5,0,1,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01776982412454571,9566.780110399437,1,1,1_0,1_1_0,1_2_0,1_0_1 -2450,2,62.0,0.0,7,111,2508.0,,,85,45,0.0,0.0,,2678.0,292.4555907123326,,10,0,0,0,0,0,0,0,0,0,,1,,5,121901,2,3,0,0,2,,480.0,,42,2.0,2.0,6.0,3.0,2.0,2,2,117.09789924010468,2508.0,76083.72890629101,6,1,1,2,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03519806453359266,38041.86445314551,9,5,9,9_1,9_2,9_0_0 -2451,0,56.0,0.0,7,111,360.0,,,56,65,0.0,0.0,,636.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,108023,2,1,0,0,2,,360.0,,43,4.0,0.0,3.0,5.0,3.0,1,1,102.345739889938,360.0,22380.24590163934,1,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028417918319360976,7460.081967213114,1,1,1_0,1_0_0,1_2_0,1_0_0 -2452,2,58.0,0.0,5,111,420.0,,,81,64,0.0,0.0,,700.0,481.69156117325366,,50,0,0,0,0,0,0,0,0,0,,1,,3,120164,2,1,0,0,2,,560.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,76.73824828618208,420.0,9315.34090998353,4,4,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0751448612309818,6210.2272733223535,1,1,1_0,1_1_0,1_2_0,1_0_0 -2453,1,22.0,413.0,2,111,570.0,,,0,85,0.0,0.0,,639.0,118.70256328912323,,31,0,0,0,0,0,0,0,0,0,,2,,2,102272,2,2,0,0,2,,576.0,480.0,31,0.0,0.0,3.0,3.0,1.6,3,2,104.2321131252605,570.0,13313.121515533105,0,6,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04799775914720269,8320.70094720819,1,1,1_1,1_0_1,1_2_1,1_0_1 -2454,2,51.0,0.0,7,111,1.0,,,0,56,0.0,0.0,,277.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,1,,5,109618,2,2,0,0,2,,440.0,,32,3.0,0.0,5.0,4.0,2.3,1,1,136.7363119012363,1.0,12446.536474385117,0,4,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022255187261939417,5411.537597558747,1,1,1_0,1_1_0,1_2_0,1_0_0 -2455,0,35.0,0.0,2,111,330.0,,,56,21,0.0,0.0,,606.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,0,,1,,2,128937,2,3,0,0,2,,168.0,,43,2.0,0.0,3.0,5.0,2.4,3,3,133.06907281453923,330.0,28253.999521766236,1,1,5,0,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021448290870577508,11772.499800735932,2,1,2_0,2_1_0,2_2_0,2_0_1 -2456,2,69.0,0.0,9,111,792.0,,,52,75,0.0,0.0,,1068.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,109320,2,1,0,0,2,,328.0,,42,1.0,2.0,4.0,2.0,1.5,3,2,121.39935959186461,792.0,69795.90340405653,1,5,1,2,118.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015301757666452498,46530.60226937102,10,5,10,10_1,10_2,10_0_0 -2457,2,52.0,0.0,2,111,1200.0,,,54,22,0.0,77.63793786145933,,1321.0,79.13504219274881,,70,0,0,0,0,0,0,0,0,0,,1,,2,129236,2,1,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,150.7798670729379,1200.0,59728.262704207315,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022116832805635037,28442.02985914634,8,4,8,8_1,8_2,8_0_1 -2458,2,84.0,0.0,2,111,360.0,,,78,78,0.0,0.0,,636.0,474.81025315649293,,42,0,0,0,0,0,0,0,0,0,,1,,2,120420,2,2,0,0,2,,240.0,,41,0.0,5.0,4.0,2.0,1.5,3,3,90.57908110587749,360.0,16094.678028869947,5,5,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039516167944408105,10729.785352579964,2,1,2_0,2_1_0,2_2_0,2_0_1 -2459,0,53.0,0.0,2,111,720.0,,,0,56,0.0,0.0,,1272.0,949.6205063129859,,50,0,0,0,0,0,0,0,0,0,,1,,2,123781,2,1,0,0,2,,1100.0,,22,5.0,0.0,7.0,5.0,3.0,2,2,125.41341269920508,720.0,3622.5771487795437,0,4,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3511312382756404,1207.525716259848,1,1,1_0,1_1_0,1_2_0,1_0_1 -2460,2,52.0,0.0,9,111,864.0,,,90,52,0.0,0.0,,1003.0,239.12545358243665,,41,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,127417,2,3,0,0,2,,696.0,,43,2.0,4.0,4.0,5.0,2.8,1,1,108.0757026115153,864.0,48660.6696930144,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020612128980707144,17378.810604648002,4,2,4_0,4_1_0,4_2_0,4_0_0 -2461,0,85.0,0.0,5,111,270.0,,,0,71,0.0,0.0,,318.0,82.5756962011292,,20,0,0,0,0,0,0,0,0,0,,1,,3,122025,2,2,0,0,2,,320.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,129.09128919148944,270.0,10710.892843866155,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029689401680655425,10710.892843866155,2,1,2_0,2_1_0,2_2_0,2_0_0 -2462,2,59.0,0.0,6,111,300.0,,,56,75,0.0,0.0,,600.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,4,119398,2,2,0,0,2,,600.0,,42,1.0,0.0,5.0,2.0,1.5,3,2,76.62605609568335,300.0,30206.702199167346,4,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019863141498992865,20137.801466111563,5,3,5,5_1,5_2,5_0_0 -2463,2,75.0,0.0,2,111,420.0,,,0,78,0.0,0.0,,492.0,123.8635443016938,,71,0,0,0,0,0,0,0,0,0,,1,,2,130627,2,2,0,0,2,,120.0,,11,0.0,5.0,4.0,1.0,1.0,3,2,106.11305552190949,420.0,10710.630180005239,0,5,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04593567247970832,10710.630180005239,2,1,2_0,2_1_0,2_2_0,2_0_1 -2464,2,35.0,0.0,6,111,120.0,,,0,63,0.0,0.0,,820.0,1204.2289029331341,,50,0,0,0,0,0,0,0,0,0,,1,,4,113933,2,2,0,0,2,,320.0,,32,3.0,2.0,6.0,6.0,2.8999999999999995,2,2,76.4996791628951,120.0,43182.00951680119,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018989389543832037,14890.348109241793,3,2,3_0,3_1_0,3_2_0,3_0_0 -2465,2,78.0,0.0,2,111,480.0,,,77,77,0.0,0.0,,630.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,2,114247,1,2,0,0,2,,240.0,,41,0.0,5.0,6.0,2.0,1.5,1,1,108.74991038189081,480.0,40790.97030564831,5,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015444594607075677,27193.980203765543,7,4,7,7_1,7_2,7_0_1 -2466,0,67.0,0.0,6,111,270.0,,,0,78,0.0,0.0,,414.0,247.7270886033876,,10,0,0,0,0,0,0,0,0,0,,1,,4,112571,2,2,0,0,2,,152.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,101.76871018127795,270.0,11810.744719344963,0,5,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03505282772913586,11810.744719344963,2,1,2_0,2_1_0,2_2_0,2_0_0 -2467,2,41.0,0.0,9,111,95.0,,,0,21,0.0,0.0,,187.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,121494,2,2,0,0,2,,324.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,115.74659449699271,95.0,5110.0,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03659491193737769,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -2468,2,72.0,0.0,5,111,600.0,,,74,78,0.0,0.0,,860.0,447.28502108944986,,50,0,0,0,0,0,0,0,0,0,,1,,3,128057,2,1,0,0,2,,400.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,111.86819398274164,600.0,35915.68256507549,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023944971627415663,23943.788376716995,6,3,6,6_1,6_2,6_0_0 -2469,2,40.0,0.0,9,111,600.0,,,90,69,0.0,0.0,,738.0,237.40512657824647,,60,0,0,0,0,0,0,0,0,0,,2,2009.0,6,110036,2,1,0,0,1,,300.0,511.0,43,2.0,0.0,2.0,3.0,1.8,1,1,193.38961028641674,600.0,29041.173513971506,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025412196227020695,16133.985285539726,4,2,4_0,4_0_0,4_2_0,4_0_0 -2470,2,56.0,0.0,8,111,450.0,,,0,69,0.0,0.0,,703.0,435.2427320601185,,10,0,0,0,0,0,0,0,0,2,25.0,2,1999.0,6,114844,2,1,0,0,2,,360.0,479.0,32,2.0,2.0,4.0,2.0,1.5,4,4,114.37261557686082,450.0,17640.0,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03985260770975057,11760.0,2,1,2_0,2_0_0,2_2_0,2_0_0 -2471,0,64.0,0.0,5,111,720.0,,,21,77,0.0,0.0,,990.0,464.48829113135173,,12,0,0,0,0,0,0,0,0,0,,1,,3,127804,2,1,0,0,2,,600.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,96.59346358223752,720.0,14838.26645768025,4,5,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06671938415606349,9892.1776384535,2,1,2_0,2_1_0,2_2_0,2_0_0 -2472,2,65.0,0.0,6,211,668.0,,,0,64,0.0,0.0,,888.0,378.4719409218422,,10,0,0,0,0,0,0,0,0,3,3.0,1,,4,113137,2,1,0,0,2,,592.0,,12,1.0,5.0,6.0,1.0,1.0,2,2,130.2435757703979,668.0,60925.0,0,1,0,1,228.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014575297496922445,60925.0,10,5,10,10_1,10_2,10_0_0 -2473,2,66.0,0.0,6,211,372.0,,,0,72,0.0,0.0,,372.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,4,130759,1,2,0,0,2,,420.0,,21,1.0,5.0,6.0,2.0,1.5,2,2,121.30464181727413,372.0,11113.789473684199,0,5,0,1,102.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03347193150282725,7409.192982456133,1,1,1_0,1_1_0,1_2_0,1_0_0 -2474,2,62.0,0.0,6,211,360.0,,,0,77,0.0,0.0,,504.0,247.7270886033876,,71,0,0,0,0,0,0,0,0,0,,1,,4,111840,1,2,0,0,2,,480.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,88.0154342563898,360.0,10538.319546662806,0,5,0,1,87.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04782546190294665,10538.319546662806,2,1,2_0,2_1_0,2_2_0,2_0_0 -2475,0,41.0,0.0,5,211,268.0,,,0,90,0.0,0.0,,316.0,82.5756962011292,,31,0,0,0,0,0,0,0,0,0,,1,,3,111673,2,1,0,0,2,,272.0,,12,1.0,1.0,3.0,1.0,1.0,2,1,98.88836485156881,268.0,16498.22064225934,0,4,5,0,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01915358067103202,16498.22064225934,4,2,4_0,4_1_0,4_2_0,4_0_0 -2476,2,74.0,0.0,1,211,128.0,,,0,78,0.0,0.0,,172.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,,1,127075,2,2,0,0,2,,120.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,122.61289018950107,128.0,8653.99464378294,0,5,0,1,20.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01987521451998649,8653.99464378294,1,1,1_0,1_1_0,1_2_0,1_1_0 -2477,2,47.0,0.0,7,211,900.0,,,0,56,0.0,0.0,,1000.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,0,,1,,5,102857,2,1,0,0,2,,160.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,79.08436685730307,900.0,9375.02097902098,0,4,0,1,48.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10666642797256211,9375.02097902098,1,1,1_0,1_1_0,1_2_0,1_0_0 -2478,2,75.0,0.0,2,211,480.0,,,77,78,0.0,0.0,,756.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,2,107351,2,1,0,0,2,,480.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,70.31460043447625,480.0,14641.434388551732,5,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05163428527133401,9760.956259034489,2,1,2_0,2_1_0,2_2_0,2_0_1 -2479,2,72.0,0.0,7,211,360.0,,,0,74,0.0,0.0,,408.0,82.5756962011292,,41,0,0,0,0,0,0,0,0,0,,1,,5,126656,2,1,0,0,2,,360.0,,11,0.0,2.0,2.0,1.0,1.0,3,3,99.60851437188781,360.0,32751.21287087538,0,5,0,1,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012457553911318548,32751.21287087538,8,4,8,8_1,8_2,8_0_0 -2480,2,61.0,0.0,7,211,0.0,,,0,34,0.0,0.0,,1354.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,126751,2,1,0,0,2,,411.0,500.0,12,1.0,0.0,3.0,1.0,1.0,2,2,84.65695643679032,0.0,6312.7157965301885,0,1,3,4,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21448771711602033,6312.7157965301885,1,1,1_0,1_1_0,1_2_0,1_0_0 -2481,2,71.0,0.0,2,211,440.0,,,0,78,0.0,0.0,,716.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,2,115782,1,1,0,0,2,,210.0,,21,1.0,9.0,5.0,2.0,1.5,5,5,118.13612714348994,440.0,21161.361915005757,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033835251382959265,14107.574610003838,3,2,3_0,3_1_0,3_2_0,3_0_1 -2482,2,54.0,0.0,2,211,432.0,,,0,55,0.0,0.0,,570.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,132139,2,1,0,0,2,,240.0,,22,3.0,2.0,4.0,5.0,2.5999999999999996,2,2,123.218046826041,432.0,35117.86961650399,0,1,0,1,98.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016231052914785094,13506.872929424613,3,2,3_0,3_1_0,3_2_0,3_0_1 -2483,2,59.0,0.0,6,211,540.0,,,78,46,0.0,0.0,,816.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,119193,2,1,0,0,2,,400.0,,42,3.0,1.0,5.0,5.0,2.8,2,2,93.86813475563595,540.0,37490.0,5,1,0,1,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021765804214457188,13389.285714285716,3,2,3_0,3_1_0,3_2_0,3_0_0 -2484,2,56.0,0.0,7,211,540.0,,,55,21,0.0,0.0,,670.0,223.64251054472493,,30,0,0,0,0,0,0,0,0,0,,1,,5,125564,2,1,0,0,2,,387.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,79.08436685730307,540.0,51253.647336359296,1,1,0,1,108.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013072240412531628,34169.09822423953,9,5,9,9_1,9_2,9_0_0 -2485,2,70.0,0.0,7,211,211.0,,,0,77,0.0,0.0,,343.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,5,122023,2,1,0,0,2,,572.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,130.2435757703979,211.0,25796.413572346526,0,5,0,1,105.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01329642196338844,25796.413572346526,7,4,7,7_1,7_2,7_0_0 -2486,2,28.0,0.0,7,211,0.0,,,0,52,0.0,0.0,,158.0,0.0,,31,0,0,0,0,0,0,0,0,2,60.0,2,,5,126989,2,1,0,0,2,,152.0,600.0,32,1.0,0.0,3.0,2.0,1.3,2,2,82.82932425759022,0.0,24660.446351664676,0,1,3,4,52.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006407021095517778,18969.574116665135,5,3,5,5_0,5_2,5_0_0 -2487,2,72.0,0.0,5,211,144.0,,,77,78,0.0,0.0,,444.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,,3,127796,2,1,0,0,2,,400.0,,41,2.0,0.0,4.0,4.0,2.5,2,1,93.86813475563595,144.0,58868.537703989496,5,5,0,1,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007542229131502791,23547.4150815958,6,3,6,6_1,6_2,6_0_0 -2488,2,86.0,0.0,7,211,540.0,,,0,72,0.0,0.0,,840.0,516.0981012570575,,10,0,0,0,0,0,0,0,0,0,,1,,5,132002,2,1,0,0,2,,1200.0,,21,3.0,4.0,5.0,4.0,2.5,1,1,93.62016756037208,540.0,39855.01403904985,0,5,0,1,92.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021076394532867807,15942.005615619939,3,2,3_0,3_1_0,3_2_0,3_0_0 -2489,2,26.0,0.0,8,211,600.0,,,0,56,0.0,0.0,,888.0,495.4541772067752,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,108310,2,1,0,0,2,,480.0,,22,1.0,1.0,4.0,4.0,2.5,2,2,93.86813475563595,600.0,26690.62655623859,0,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03327010694668168,10676.250622495436,2,1,2_0,2_1_0,2_2_0,2_0_0 -2490,2,54.0,0.0,9,211,540.0,,,0,63,0.0,0.0,,760.0,378.4719409218422,,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,132130,2,1,0,0,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,123.81451635600042,540.0,2057.0,0,4,0,1,95.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.36947010209042297,2057.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -2491,2,41.0,0.0,9,211,480.0,,,0,55,0.0,0.0,,580.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,115313,2,1,0,0,2,,480.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,74.56633655941022,480.0,18853.632032488647,0,4,0,1,92.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030763303272310707,12569.088021659098,2,1,2_0,2_1_0,2_2_0,2_0_0 -2492,2,55.0,0.0,8,211,600.0,,,85,81,0.0,0.0,,648.0,82.5756962011292,,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107909,2,1,0,0,2,,180.0,,42,1.0,1.0,5.0,5.0,3.0,1,1,79.6916524312524,600.0,14772.755485893418,6,4,0,1,66.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04386453161150461,4924.25182863114,1,1,1_0,1_1_0,1_2_0,1_0_0 -2493,1,42.0,365.0,9,211,400.0,,,0,56,0.0,0.0,,676.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,125887,2,1,0,0,2,,320.0,750.0,32,2.0,3.0,4.0,4.0,2.5,3,3,67.22594687856751,400.0,31699.585193395615,0,1,2,3,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02132520018403395,12679.834077358246,2,1,2_1,2_1_1,2_2_1,2_0_0 -2494,1,30.0,357.0,8,211,90.0,,,0,55,0.0,0.0,,182.0,158.27008438549763,,42,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,109744,2,1,0,0,2,,670.0,92.0,32,1.0,0.0,3.0,2.0,1.3,1,1,83.99069584949473,90.0,22539.63615711035,0,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008074664503516677,17338.181659315655,4,2,4_1,4_1_1,4_2_1,4_0_0 -2495,2,52.0,0.0,6,211,378.0,,,68,65,0.0,0.0,,516.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,4,45.0,1,,4,109326,2,2,0,0,2,,400.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,93.86813475563595,378.0,38881.31984514206,1,1,0,1,83.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013271154427245361,25920.879896761373,7,4,7,7_1,7_2,7_0_0 -2496,2,67.0,0.0,7,211,520.0,,,0,72,0.0,0.0,,784.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,5,129869,2,1,0,0,2,,500.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,103.10975280392017,520.0,14438.492288047504,0,5,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05429929831724966,14438.492288047504,3,2,3_0,3_1_0,3_2_0,3_0_0 -2497,1,35.0,357.0,9,211,0.0,,,0,63,0.0,0.0,,663.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2010.0,6,121180,2,1,0,0,2,,148.0,750.0,32,1.0,0.0,3.0,2.0,1.3,2,2,144.83233376785418,0.0,12055.0,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05499792617171298,9273.076923076922,1,1,1_1,1_1_1,1_2_1,1_0_0 -2498,2,81.0,0.0,5,211,480.0,,,78,78,0.0,372.6621017350048,,932.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,1,,3,117674,2,1,0,0,2,,280.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,118.13612714348994,480.0,24173.69941935248,5,5,0,1,108.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03855429753767347,16115.799612901654,4,2,4_0,4_1_0,4_2_0,4_0_0 -2499,0,37.0,0.0,1,211,0.0,,,43,47,0.0,0.0,,693.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,118799,2,1,0,0,2,,511.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,122.92287413710514,0.0,54083.76274524993,1,1,5,0,108.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012813457585490663,25754.172735833297,7,4,7,7_1,7_2,7_1_0 -2500,0,64.0,0.0,2,211,186.0,,,0,72,0.0,0.0,,232.0,79.13504219274881,,30,0,0,0,0,0,0,0,0,0,,1,,2,105091,2,1,0,0,2,,228.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,98.88836485156881,186.0,7252.839613839789,0,5,5,0,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031987471439089886,7252.839613839789,1,1,1_0,1_1_0,1_2_0,1_0_1 -2501,2,75.0,0.0,2,211,580.0,,,78,72,0.0,0.0,,920.0,584.9111814246652,,71,0,0,0,0,0,0,0,0,0,,1,,2,109440,2,1,0,0,2,,480.0,,41,0.0,6.0,4.0,2.0,1.5,4,4,118.13612714348994,580.0,36602.0,5,5,0,1,77.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025135238511556746,24401.333333333332,7,4,7,7_1,7_2,7_0_1 -2502,2,51.0,0.0,9,211,600.0,,,0,34,0.0,0.0,,646.0,79.13504219274881,,43,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,129884,2,1,0,0,2,,320.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,111.13241164634331,600.0,65989.7726161046,0,1,2,3,36.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009789395756189432,65989.7726161046,10,5,10,10_1,10_2,10_0_0 -2503,2,51.0,0.0,9,211,440.0,,,68,47,0.0,0.0,,555.0,197.83760548187203,,60,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,113198,2,1,0,0,2,,800.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,91.5903101979869,440.0,48083.634622834266,1,1,1,2,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011542388680751641,20905.928096884465,5,3,5,5_1,5_2,5_0_0 -2504,2,75.0,0.0,2,211,240.0,,,0,72,0.0,0.0,,384.0,247.7270886033876,,31,0,0,0,0,0,0,0,0,0,,1,,2,124251,2,2,0,0,2,,360.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,88.14430222728718,240.0,16531.88085769351,0,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023227847049314795,11021.253905129008,2,1,2_0,2_1_0,2_2_0,2_0_1 -2505,2,51.0,0.0,2,211,360.0,,,0,21,0.0,0.0,,452.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,2,108559,2,1,0,0,2,,600.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,74.56633655941022,360.0,44079.0,0,1,0,1,58.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010254316114249417,29386.0,8,4,8,8_1,8_2,8_0_1 -2506,0,64.0,0.0,1,211,1443.3,,,0,22,0.0,0.0,,1719.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,1,132670,2,1,0,0,2,,308.0,,12,1.0,1.0,1.0,1.0,1.0,4,2,153.4499408195908,1443.3,7691.99411082565,0,1,5,0,10.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22347911025837805,7691.99411082565,1,1,1_0,1_1_0,1_2_0,1_1_0 -2507,2,86.0,0.0,5,211,288.0,,,0,77,0.0,0.0,,426.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,3,102667,2,1,0,0,2,,176.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,93.51579141469342,288.0,14785.68015728173,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02881166070606507,14785.68015728173,3,2,3_0,3_1_0,3_2_0,3_0_0 -2508,2,54.0,0.0,8,211,780.0,,,56,34,0.0,0.0,,924.0,247.7270886033876,,10,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,113739,2,1,0,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,91.72441233051396,780.0,53950.400722314036,1,1,1,2,55.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01712684220374717,21580.160288925614,6,3,6,6_1,6_2,6_0_0 -2509,1,39.0,435.0,8,211,0.0,,,0,53,0.0,0.0,,530.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,2003.0,6,126221,2,1,0,0,2,,849.0,700.0,32,2.0,0.0,3.0,5.0,2.5999999999999996,1,1,87.56471616749575,0.0,28005.96826150046,0,4,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018924537621810632,10771.526254423256,2,1,2_1,2_0_1,2_2_1,2_0_0 -2510,2,84.0,0.0,2,211,386.0,,,0,71,0.0,0.0,,482.0,165.1513924022584,,41,0,0,0,0,0,0,0,0,0,,1,,2,109651,2,1,0,0,2,,164.0,,11,0.0,6.0,8.0,1.0,1.0,3,2,88.3333794675901,386.0,12709.681438565058,0,5,0,1,98.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0379238458752762,12709.681438565058,2,1,2_0,2_1_0,2_2_0,2_0_1 -2511,2,71.0,0.0,2,211,300.0,,,78,78,0.0,0.0,,588.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,0,,1,,2,119662,2,3,0,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,74.56633655941022,300.0,20719.58405885318,5,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028378948068156613,13813.056039235453,3,2,3_0,3_1_0,3_2_0,3_0_1 -2512,2,72.0,0.0,6,211,2040.0,,,77,78,0.0,0.0,,2316.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,4,111431,2,1,0,0,2,,720.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,74.56633655941022,2040.0,24539.343121531827,5,5,0,1,98.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09437905442415231,16359.562081021219,4,2,4_0,4_1_0,4_2_0,4_0_0 -2513,2,49.0,0.0,8,211,630.0,,,42,34,0.0,0.0,,780.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,102408,2,1,0,0,2,,720.0,,43,2.0,1.0,4.0,4.0,2.3,2,2,82.2269130519457,630.0,91544.47245959892,1,1,0,1,71.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008520448903610596,39801.94454765171,9,5,9,9_1,9_2,9_0_0 -2514,2,71.0,0.0,2,211,180.0,,,0,77,0.0,0.0,,180.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,2,111092,2,2,0,0,2,,180.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,72.94242593683786,180.0,9418.076516707726,0,5,0,1,71.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019112182798757142,6278.717677805151,1,1,1_0,1_1_0,1_2_0,1_0_1 -2515,0,52.0,0.0,1,211,240.0,,,0,68,0.0,0.0,,290.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,0,,1,,1,131195,2,1,0,0,2,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,98.88836485156881,240.0,6902.241657064706,0,4,5,0,64.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042015335655942156,6902.241657064706,1,1,1_0,1_1_0,1_2_0,1_1_0 -2516,2,83.0,0.0,2,211,240.0,,,0,86,0.0,0.0,,384.0,247.7270886033876,,12,0,0,0,0,0,0,0,0,0,,1,,2,115756,2,1,0,0,2,,54.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,103.10975280392017,240.0,16436.89777432796,0,5,0,1,48.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023362072653378183,16436.89777432796,4,2,4_0,4_1_0,4_2_0,4_0_1 -2517,2,44.0,0.0,8,211,1380.0,,,56,21,0.0,0.0,,1656.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,128419,2,1,0,0,2,,630.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,121.30464181727413,1380.0,22871.668745202976,1,1,0,1,108.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07240398671598125,11435.834372601488,2,1,2_0,2_1_0,2_2_0,2_0_0 -2518,1,24.0,450.0,7,211,160.0,,,0,85,0.0,0.0,,298.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,5,100302,2,1,0,0,2,,150.0,550.0,31,0.0,0.0,3.0,3.0,1.6,1,1,95.56404845874478,160.0,13956.91686361717,0,6,2,3,54.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02135142043991285,8723.073039760731,1,1,1_1,1_1_1,1_2_1,1_0_0 -2519,2,59.0,0.0,5,211,480.0,,,0,56,0.0,0.0,,756.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,3,124591,2,1,0,0,2,,872.0,,22,3.0,5.0,4.0,4.0,2.5,1,1,93.86813475563595,480.0,42896.83995150165,0,1,0,1,48.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017623675796509003,17158.73598060066,4,2,4_0,4_1_0,4_2_0,4_0_0 -2520,2,62.0,0.0,7,211,360.0,,,55,62,0.0,0.0,,498.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,5,111012,2,1,0,0,2,,240.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,88.0154342563898,360.0,17638.029045643154,4,4,0,1,88.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028234447211266677,11758.68603042877,2,1,2_0,2_1_0,2_2_0,2_0_0 -2521,2,80.0,0.0,7,211,1200.0,,,86,78,0.0,0.0,,1752.0,949.6205063129859,,41,0,0,0,0,0,0,0,0,0,,1,,5,123323,2,1,0,0,2,,600.0,,41,1.0,0.0,4.0,3.0,2.0,2,2,93.86813475563595,1200.0,27230.539006652063,5,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06433952701310867,13615.269503326032,3,2,3_0,3_1_0,3_2_0,3_0_0 -2522,2,71.0,0.0,5,211,470.0,,,77,78,0.0,0.0,,746.0,474.81025315649293,,33,0,0,0,0,0,0,0,0,0,,1,,3,124791,2,1,0,0,2,,436.0,,41,3.0,3.0,5.0,6.0,3.3,1,1,121.50234382300211,470.0,55516.09346620694,5,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013437544924772053,16823.058626123315,4,2,4_0,4_1_0,4_2_0,4_0_0 -2523,2,78.0,0.0,2,211,510.0,,,0,78,0.0,0.0,,648.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,2,120851,2,1,0,0,2,,400.0,,21,2.0,7.0,7.0,3.0,2.0,2,2,105.82669696866449,510.0,7519.682096810329,0,5,0,1,108.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08617385571058465,3759.8410484051647,1,1,1_0,1_1_0,1_2_0,1_0_1 -2525,2,47.0,0.0,1,211,540.0,,,81,63,0.0,0.0,,816.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,1,132071,2,1,0,0,2,,400.0,,43,5.0,0.0,5.0,6.0,3.3,2,2,133.64844735910432,540.0,64864.34723948886,4,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012580100389929249,19655.86279984511,5,3,5,5_1,5_2,5_1_0 -2526,2,80.0,0.0,8,211,1080.0,,,0,72,0.0,0.0,,1080.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106691,2,1,0,0,2,,640.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,103.26072115095879,1080.0,17701.78261408302,0,5,0,1,88.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06101080459211965,17701.78261408302,4,2,4_0,4_1_0,4_2_0,4_0_0 -2527,2,76.0,0.0,2,211,204.0,,,0,78,0.0,0.0,,336.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,1,,2,101733,2,1,0,0,2,,344.0,,11,0.0,9.0,6.0,1.0,1.0,2,2,93.65271274432489,204.0,9442.006816909856,0,5,0,1,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03558565530775213,9442.006816909856,1,1,1_0,1_1_0,1_2_0,1_0_1 -2528,2,38.0,0.0,1,211,480.0,,,0,52,0.0,0.0,,710.0,395.67521096374406,,12,0,0,0,0,0,0,0,0,0,,1,,1,104965,2,1,0,0,2,,600.0,,22,2.0,3.0,5.0,3.0,2.0,2,2,82.51179333303571,480.0,34694.68484697148,0,1,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020464229697765256,17347.34242348574,4,2,4_0,4_1_0,4_2_0,4_1_0 -2529,2,56.0,0.0,7,211,360.0,,,90,67,0.0,0.0,,452.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,122765,2,1,0,0,2,,380.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,88.0154342563898,360.0,40501.852896158074,1,1,0,1,85.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011159983252096495,27001.235264105384,7,4,7,7_1,7_2,7_0_0 -2530,2,55.0,0.0,7,211,480.0,,,68,62,0.0,0.0,,756.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,2,30.0,1,,5,109360,2,1,0,0,2,,288.0,,43,4.0,0.0,4.0,4.0,2.5,3,2,93.86813475563595,480.0,41621.74579226486,1,1,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018163582175846595,16648.698316905946,4,2,4_0,4_1_0,4_2_0,4_0_0 -2531,2,95.0,0.0,1,211,588.0,,,0,78,0.0,0.0,,726.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,1,113900,2,1,0,0,2,,588.0,,21,0.0,7.0,4.0,2.0,1.5,2,2,88.14430222728718,588.0,25204.130522361054,0,5,0,1,78.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02880480242537604,16802.753681574035,4,2,4_0,4_1_0,4_2_0,4_1_0 -2532,1,25.0,470.0,9,211,0.0,,,0,81,0.0,0.0,,939.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,104327,2,1,0,0,2,,317.0,526.0,32,1.0,0.0,3.0,4.0,1.9,1,1,89.19853208428023,0.0,20993.210544461643,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044728746849429554,11049.058181295602,2,1,2_1,2_0_1,2_2_1,2_0_0 -2533,2,67.0,0.0,2,211,294.0,,,0,71,0.0,0.0,,454.0,275.25232067043066,,10,0,0,0,0,0,0,0,0,0,,1,,2,118506,2,1,0,0,2,,288.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,104.96881751639242,294.0,14312.956232322482,0,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0317195129105996,14312.956232322482,3,2,3_0,3_1_0,3_2_0,3_0_1 -2534,2,61.0,0.0,6,211,990.0,,,68,78,0.0,0.0,,1266.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,,4,112979,2,1,0,0,2,,1134.0,,42,1.0,3.0,4.0,3.0,2.0,2,2,91.5903101979869,990.0,3514.325881430815,4,7,0,1,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3602397850152028,1757.1629407154076,1,1,1_0,1_1_0,1_2_0,1_0_0 -2535,2,61.0,0.0,5,211,450.0,,,78,56,0.0,0.0,,726.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,,3,133004,2,1,0,0,2,,540.0,,42,2.0,2.0,5.0,3.0,2.0,1,1,79.6916524312524,450.0,44377.710641474725,5,4,0,1,88.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01635956405830209,22188.855320737362,6,3,6,6_1,6_2,6_0_0 -2536,2,68.0,0.0,5,211,240.0,,,0,78,0.0,0.0,,336.0,165.1513924022584,,10,0,0,0,0,0,0,0,0,0,,1,,3,105597,2,1,0,0,2,,240.0,,11,0.0,7.0,5.0,1.0,1.0,3,3,118.42655150586528,240.0,9809.799819392025,0,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0342514634534942,9809.799819392025,2,1,2_0,2_1_0,2_2_0,2_0_0 -2537,2,50.0,0.0,7,211,400.0,,,0,52,0.0,0.0,,676.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,3,30.0,1,,5,106334,2,1,0,0,2,,460.0,,32,1.0,2.0,4.0,2.0,1.5,1,1,91.72441233051396,400.0,9599.022567516718,0,1,0,1,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07042383693185568,6399.348378344479,1,1,1_0,1_1_0,1_2_0,1_0_0 -2538,0,74.0,0.0,7,221,360.0,,,78,86,0.0,0.0,,536.0,302.77755273747374,,12,0,0,0,0,0,0,0,0,0,,1,,5,121016,1,2,0,0,2,,560.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,116.98555056010026,360.0,9921.686274509802,6,5,5,0,40.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05402307482519971,6614.457516339869,1,1,1_0,1_1_0,1_1_0,1_0_0 -2539,1,44.0,467.0,9,221,348.0,,,0,81,0.0,0.0,,486.0,237.40512657824647,,42,0,0,0,0,0,0,0,0,0,,8,2006.0,6,124061,1,2,0,0,2,,628.0,604.0,32,1.0,1.0,3.0,5.0,2.4,1,1,103.18657984364816,348.0,10342.84,0,4,2,3,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04698902815861021,4309.516666666667,1,1,1_1,1_0_1,1_1_1,1_0_0 -2540,2,58.0,0.0,2,221,810.0,,,0,22,0.0,0.0,,1074.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,2,124407,2,3,0,0,2,,672.0,800.0,32,2.0,0.0,3.0,2.0,1.5,1,1,132.2092029971902,810.0,5644.225879682179,0,1,2,3,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19028295870761217,3762.8172531214527,1,1,1_0,1_1_0,1_1_0,1_0_1 -2541,2,54.0,0.0,1,221,420.0,,,0,69,0.0,0.0,,687.0,459.32731011878116,,20,0,0,0,0,0,0,0,0,0,,1,,1,115127,1,1,0,0,1,,188.0,,22,1.0,4.0,4.0,2.0,1.5,1,1,109.77728611840861,420.0,17909.963161536667,0,1,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03835853785983196,11939.975441024444,2,1,2_0,2_1_0,2_1_0,2_1_0 -2542,2,81.0,0.0,5,221,342.0,,,0,78,0.0,0.0,,452.0,189.2359704609211,,42,0,0,0,0,0,0,0,0,0,,1,,3,127956,1,1,0,0,2,,230.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,112.16312800036636,342.0,10498.296577946769,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04305460382491891,10498.296577946769,2,1,2_0,2_1_0,2_1_0,2_0_0 -2543,1,66.0,200.0,7,221,0.0,,,0,78,0.0,0.0,,160.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,5,105097,1,1,0,0,2,,356.0,350.0,11,0.0,4.0,1.0,1.0,1.0,1,1,130.64481923315796,0.0,9583.657931034482,0,5,2,3,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.016695086693555353,9583.657931034482,1,1,1_1,1_1_1,1_1_1,1_0_0 -2544,1,62.0,200.0,2,221,0.0,,,56,86,0.0,0.0,,549.0,0.0,,44,0,0,0,0,0,0,0,0,0,,1,,2,112583,2,1,0,0,2,,0.0,500.0,42,1.0,0.0,3.0,2.0,1.5,1,1,141.90920580933525,0.0,14702.071258427237,1,5,2,3,40.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03734167726097184,9801.38083895149,2,1,2_1,2_1_1,2_1_1,2_0_1 -2546,2,69.0,0.0,5,221,1734.0,,,0,78,0.0,0.0,,1866.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,3,104456,1,2,0,0,2,,396.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,128.3702473473919,1734.0,11929.138262037686,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1564237046307197,11929.138262037686,2,1,2_0,2_1_0,2_1_0,2_0_0 -2547,1,59.0,100.0,7,221,848.0,,,0,77,0.0,0.0,,1112.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,5,107620,2,2,0,0,2,,696.0,,31,1.0,1.0,4.0,5.0,2.5999999999999996,6,4,117.01309725070021,848.0,17440.933609958505,0,7,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0637580547502953,6708.0513884455795,1,1,1_1,1_1_1,1_1_1,1_0_0 -2548,2,74.0,0.0,5,221,440.0,,,75,75,0.0,0.0,,701.0,449.00534809364,,10,0,0,0,0,0,0,0,0,0,,1,,3,127600,2,1,0,0,1,,480.0,,41,1.0,4.0,4.0,5.0,2.5999999999999996,2,2,103.84066580684228,440.0,100132.8088407924,5,5,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00700070244823118,38512.61878492016,9,5,9,9_1,9_1,9_0_0 -2549,2,49.0,0.0,9,221,900.0,,,69,11,0.0,0.0,,1038.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,127082,1,3,0,0,2,,630.0,,43,3.0,0.0,4.0,5.0,3.0,2,2,117.01309725070021,900.0,29211.65915860365,4,1,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03553375706474653,9737.219719534549,1,1,1_0,1_1_0,1_1_0,1_0_0 -2550,0,77.0,0.0,1,221,250.0,,,0,86,0.0,0.0,,342.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,0,,1,,1,127932,1,1,0,0,2,,499.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,138.79703615480094,250.0,5363.432352941177,0,5,5,0,50.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06376513722830035,5363.432352941177,1,1,1_0,1_1_0,1_1_0,1_1_0 -2551,2,67.0,0.0,2,221,200.0,,,0,86,0.0,0.0,,338.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,2,122374,1,1,0,0,2,,180.0,,11,0.0,3.0,4.0,1.0,1.0,4,3,128.3702473473919,200.0,11108.403091319648,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0304274158239829,11108.403091319648,2,1,2_0,2_1_0,2_1_0,2_0_1 -2552,2,82.0,0.0,2,221,264.0,,,0,77,0.0,0.0,,396.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,2,127246,1,1,0,0,1,,164.0,,11,0.0,8.0,6.0,1.0,1.0,2,2,107.78967236959473,264.0,13492.670949491694,0,5,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029349266834000604,13492.670949491694,3,2,3_0,3_1_0,3_1_0,3_0_1 -2553,0,66.0,0.0,1,221,600.0,,,0,78,0.0,0.0,,732.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,1,113560,2,1,0,0,2,,240.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,107.78967236959473,600.0,8378.244601286671,0,5,5,0,70.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08736913695353136,8378.244601286671,1,1,1_0,1_1_0,1_1_0,1_1_0 -2554,2,23.0,0.0,6,221,792.0,,,0,65,0.0,0.0,,1056.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,4,104800,1,2,0,0,2,,400.0,,22,2.0,1.0,4.0,3.0,2.0,2,2,123.62886201831107,792.0,18289.789441578367,0,2,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05773713269762332,9144.894720789183,1,1,1_0,1_1_0,1_1_0,1_0_0 -2555,2,25.0,0.0,2,221,450.0,,,0,63,0.0,0.0,,582.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,105041,2,2,0,0,2,,1344.0,,22,3.0,1.0,4.0,3.0,2.0,2,2,96.89953885305562,450.0,46344.08933532076,0,1,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012558235760961076,23172.04466766038,6,3,6,6_1,6_1,6_0_1 -2556,2,39.0,0.0,7,221,660.0,,,0,52,0.0,0.0,,924.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,5,112417,1,2,0,0,2,,600.0,,22,4.0,0.0,5.0,6.0,3.5,1,1,152.52228273801052,660.0,46687.061927626186,0,1,0,1,64.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01979135036238467,13339.16055075034,3,2,3_0,3_1_0,3_1_0,3_0_0 -2557,2,76.0,0.0,2,221,720.0,,,0,78,0.0,0.0,,852.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,2,109318,1,2,0,0,1,,640.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,109.77728611840861,720.0,17523.713692946058,0,5,0,1,90.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048619831100239985,17523.713692946058,4,2,4_0,4_1_0,4_1_0,4_0_1 -2558,2,49.0,0.0,8,221,516.0,,,0,68,0.0,0.0,,654.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,103268,1,1,0,0,2,,738.0,,32,1.0,2.0,4.0,3.0,1.8,1,1,94.25689816152635,516.0,14276.774111106823,0,4,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045808667624096626,7931.541172837124,1,1,1_0,1_1_0,1_1_0,1_0_0 -2559,2,62.0,0.0,8,221,720.0,,,78,56,0.0,0.0,,870.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,119175,1,2,0,0,1,,720.0,700.0,42,2.0,1.0,4.0,3.0,2.0,2,2,116.98555056010026,720.0,36052.276328317224,5,1,3,4,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02413162464631004,18026.138164158612,4,2,4_0,4_1_0,4_1_0,4_0_0 -2560,2,54.0,0.0,7,400,300.0,,,0,69,0.0,0.0,,432.0,227.0831645531053,,33,0,0,0,0,0,0,0,0,2,20.0,1,,5,113851,2,1,0,0,2,,132.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,124.78906086364515,300.0,19666.576103540003,0,1,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021966202847186988,19666.576103540003,5,3,5,5_1,5_0,5_0_0 -2561,0,75.0,0.0,1,400,1134.0,,,78,78,0.0,0.0,,1398.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,1,110624,2,1,0,0,2,,528.0,,41,0.0,4.0,5.0,2.0,1.5,3,2,112.16312800036636,1134.0,20950.581318862118,5,5,5,0,150.0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06672845868679357,13967.054212574745,3,2,3_0,3_1_0,3_0_0,3_1_0 -2563,2,40.0,0.0,7,400,360.0,,,0,67,0.0,0.0,,624.0,454.1663291062106,,12,0,0,0,0,0,0,0,0,2,6.0,1,,5,111385,1,1,0,0,2,,756.0,,32,1.0,0.0,3.0,2.0,1.3,3,2,112.16312800036636,360.0,16720.378064124852,0,1,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03731973030794387,12861.829280096039,2,1,2_0,2_1_0,2_0_0,2_0_0 -2564,2,67.0,0.0,6,400,867.0,,,69,78,0.0,0.0,,1131.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,0,,1,,4,108821,1,2,0,0,2,,1500.0,,42,3.0,5.0,6.0,4.0,2.5,4,4,149.80772596796874,867.0,23720.077363587607,4,5,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047681126105270796,9488.030945435043,1,1,1_0,1_1_0,1_0_0,1_0_0 -2565,1,66.0,200.0,6,400,564.0,,,0,90,0.0,0.0,,564.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,101295,1,1,0,0,2,,560.0,670.0,11,0.0,2.0,3.0,1.0,1.0,1,1,140.03920430815933,564.0,19488.66125962556,0,5,2,3,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02893990472133827,19488.66125962556,5,3,5,5_1,5_0,5_0_0 -2566,2,76.0,0.0,5,400,344.0,,,0,86,0.0,0.0,,620.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,0,,1,,3,111629,1,1,0,0,2,,388.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,91.52532425605514,344.0,15796.171351309842,0,5,0,1,37.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03925001737516532,15796.171351309842,3,2,3_0,3_1_0,3_0_0,3_0_0 -2567,2,48.0,0.0,5,400,612.0,,,0,42,0.0,0.0,,612.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,,3,125100,2,1,0,0,2,,280.0,,22,1.0,2.0,4.0,2.0,1.5,4,3,103.49500002007123,612.0,47281.8360186278,0,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012943659796943759,31521.224012418534,8,4,8,8_1,8_0,8_0_0 -2568,2,22.0,0.0,5,400,576.0,,,0,52,0.0,0.0,,852.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,1,,3,115135,2,1,0,0,2,,302.0,,22,3.0,7.0,4.0,4.0,2.5,2,2,109.77728611840861,576.0,23733.2469017454,0,1,0,1,65.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03589900714079462,9493.298760698159,1,1,1_0,1_1_0,1_0_0,1_0_0 -2570,0,49.0,0.0,2,211,804.0,,,0,56,0.0,0.0,,1068.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,3,80.0,1,,2,121542,2,1,0,0,2,,906.0,,32,2.0,0.0,7.0,4.0,2.3,2,2,140.75630061573582,804.0,17662.832705204593,0,1,5,0,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06046595230929744,7679.492480523737,1,1,1_0,1_1_0,1_2_0,1_0_1 -2571,0,60.0,0.0,2,211,600.0,,,0,52,0.0,0.0,,738.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,1,20.0,1,,2,127921,1,1,0,0,2,,216.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,152.29650147717697,600.0,31744.908840519092,0,1,5,0,95.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023247822310896647,31744.908840519092,8,4,8,8_1,8_2,8_0_1 -2572,2,63.0,0.0,7,211,708.0,,,0,78,0.0,0.0,,840.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,5,120194,1,1,0,0,2,,504.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,101.81147229236797,708.0,8016.091859220167,0,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10478921833135257,8016.091859220167,1,1,1_0,1_1_0,1_2_0,1_0_0 -2573,0,58.0,0.0,7,211,330.0,,,52,68,0.0,0.0,,594.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,2,6.0,1,,5,114014,1,1,0,0,1,,972.0,,43,3.0,0.0,5.0,3.0,2.0,3,2,97.20481162709775,330.0,37946.83145407743,1,1,5,0,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015653480863582724,18973.415727038715,5,3,5,5_1,5_2,5_0_0 -2574,1,74.0,156.0,8,211,96.0,,,0,77,0.0,0.0,,360.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,124503,1,1,0,0,1,,29.0,339.0,11,0.0,3.0,2.0,1.0,1.0,7,7,150.801740634028,96.0,10674.15969581749,0,5,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033726308230245104,10674.15969581749,2,1,2_1,2_0_1,2_2_1,2_0_0 -2575,2,58.0,0.0,9,211,648.0,,,0,52,0.0,0.0,,786.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,2007.0,6,117120,2,1,0,0,2,,720.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,110.52335021239303,648.0,31280.464550338387,0,1,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02512750406040556,20853.643033558925,5,3,5,5_1,5_2,5_0_0 -2576,2,72.0,0.0,8,211,1512.0,,,0,72,0.0,0.0,,1556.0,75.69438818436844,,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110775,1,1,0,0,1,,774.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,121.25061328844033,1512.0,10166.131107845067,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15305724306459667,10166.131107845067,2,1,2_0,2_1_0,2_2_0,2_0_0 -2577,2,73.0,0.0,8,211,1296.0,,,75,90,0.0,0.0,,1474.0,306.2182067458541,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126404,1,3,0,0,1,,1062.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,142.9118694623337,1296.0,91055.0,5,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016188018230739662,60703.333333333336,10,5,10,10_1,10_2,10_0_0 -2578,2,48.0,0.0,2,211,570.0,,,0,62,0.0,0.0,,636.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,0,,1,,2,127838,1,1,0,0,2,,642.0,,22,1.0,1.0,4.0,2.0,1.5,1,1,103.68884957413042,570.0,29912.856262148664,0,1,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021261760977496023,19941.904174765776,5,3,5,5_1,5_2,5_0_1 -2579,2,52.0,0.0,9,211,420.0,,,55,69,0.0,0.0,,598.0,306.2182067458541,,10,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,117361,1,2,0,0,2,,600.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,147.98398401235207,420.0,42296.28225371038,1,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014138358459331053,23497.934585394654,6,3,6,6_1,6_2,6_0_0 -2580,2,85.0,0.0,5,211,738.0,,,0,78,0.0,0.0,,870.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,3,111778,2,1,0,0,2,,604.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,128.3702473473919,738.0,9071.152946227756,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09590842588116541,9071.152946227756,1,1,1_0,1_1_0,1_2_0,1_0_0 -2581,0,80.0,0.0,2,400,594.0,,,0,78,0.0,0.0,,732.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,2,103584,2,2,0,0,2,,330.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,110.27402420870726,594.0,9893.372549019607,0,5,5,0,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07398892504786331,9893.372549019607,2,1,2_0,2_1_0,2_0_0,2_0_1 -2582,0,77.0,0.0,2,400,594.0,,,0,78,0.0,0.0,,732.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,7,,2,125045,2,3,0,0,2,,534.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,110.23443266751146,594.0,9361.119658119658,0,5,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07819577430196366,9361.119658119658,1,1,1_0,1_1_0,1_0_0,1_0_1 -2583,1,42.0,335.0,8,400,696.0,,,0,52,0.0,0.0,,834.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,1,4.0,1,2001.0,6,128002,1,3,0,0,1,,498.0,552.0,32,1.0,0.0,3.0,4.0,1.9,2,2,120.42216770262226,696.0,24005.938571761646,0,1,2,3,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03474140357007495,12634.704511453498,2,1,2_1,2_1_1,2_0_1,2_0_0 -2584,0,64.0,0.0,7,400,0.0,,,0,69,0.0,0.0,,132.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,1,5.0,1,,5,121143,2,2,0,0,2,,0.0,,32,2.0,1.0,4.0,3.0,2.0,1,1,99.3713457228019,0.0,17222.157676348546,0,1,5,0,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007664544854404488,8611.078838174273,1,1,1_0,1_1_0,1_0_0,1_0_0 -2585,2,84.0,0.0,2,400,126.0,,,0,86,0.0,0.0,,149.0,39.567521096374406,,31,0,0,0,0,0,0,0,0,0,,1,,2,125060,1,2,0,0,2,,39.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,121.42814261197954,126.0,11987.821233373037,0,5,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012429281109497791,11987.821233373037,2,1,2_0,2_1_0,2_1_0,2_0_1 -2586,2,91.0,0.0,2,400,360.0,,,0,78,0.0,0.0,,498.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,2,110252,2,3,0,0,2,,180.0,,21,0.0,8.0,4.0,2.0,1.5,3,2,91.52532425605514,360.0,15159.135360117358,0,5,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032851477882452566,10106.090240078238,2,1,2_0,2_1_0,2_1_0,2_0_1 -2587,2,58.0,0.0,2,400,800.0,,,0,54,0.0,0.0,,938.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,2,117010,1,1,0,0,2,,1200.0,,22,2.0,2.0,4.0,3.0,2.0,4,4,150.72704789582258,800.0,56707.0,0,4,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01654116775706703,28353.5,8,4,8,8_1,8_1,8_0_1 -2588,2,71.0,0.0,7,400,222.0,,,77,75,0.0,0.0,,480.0,443.84436708106944,,20,0,0,0,0,0,0,0,0,0,,1,,5,104382,1,1,0,0,1,,228.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,103.68884957413042,222.0,51255.323525922075,5,5,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009364880893927884,34170.21568394805,9,5,9,9_1,9_1,9_0_0 -2589,2,68.0,0.0,2,400,484.0,,,77,77,0.0,0.0,,622.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,2,111103,2,1,0,0,2,,424.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,103.84066580684228,484.0,36676.65092958861,5,5,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01695901845547752,24451.10061972574,7,4,7,7_1,7_1,7_0_1 -2590,2,38.0,0.0,9,400,300.0,,,0,42,0.0,0.0,,388.0,151.38877636873687,,42,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,104192,1,1,0,0,2,,320.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,132.52025891529587,300.0,20027.942135235637,0,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019372933942992693,20027.942135235637,5,3,5,5_1,5_1,5_0_0 -2591,2,75.0,0.0,6,400,318.0,,,78,72,0.0,0.0,,450.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,4,120702,2,1,0,0,2,,408.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,87.99059635104776,318.0,16299.226774031316,5,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02760867164060573,10866.151182687545,2,1,2_0,2_1_0,2_1_0,2_0_0 -2592,0,81.0,0.0,2,400,120.0,,,0,78,0.0,0.0,,846.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,0,,1,,2,116659,1,1,0,0,2,,224.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,110.27402420870726,120.0,10382.0,0,5,5,0,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08148718936621074,10382.0,2,1,2_0,2_1_0,2_1_0,2_0_1 -2593,2,65.0,0.0,1,400,420.0,,,0,78,0.0,0.0,,508.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,1,,1,127814,1,2,0,0,2,,200.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,121.42814261197954,420.0,9238.850427350428,0,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054985195830872136,9238.850427350428,1,1,1_0,1_1_0,1_1_0,1_1_0 -2594,0,52.0,0.0,5,400,504.0,,,0,11,0.0,0.0,,642.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,3,102477,2,2,0,0,2,,300.0,,22,1.0,0.0,4.0,2.0,1.5,1,1,103.84066580684228,504.0,14626.21377528171,0,4,5,0,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04389379301189891,9750.80918352114,2,1,2_0,2_1_0,2_1_0,2_0_0 -2595,1,38.0,200.0,9,400,480.0,,,0,56,0.0,0.0,,618.0,237.40512657824647,,30,0,0,0,0,0,0,0,0,0,,1,2010.0,6,133369,1,1,0,0,2,,520.0,,32,2.0,0.0,4.0,4.0,2.1,3,3,139.59987309516532,480.0,7894.862259406427,0,4,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07827875644868618,3759.4582187649653,1,1,1_1,1_1_1,1_1_1,1_0_0 -2596,0,94.0,0.0,1,400,472.0,,,0,78,0.0,0.0,,564.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,1,103706,1,2,0,0,2,,708.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,110.27402420870726,472.0,10955.5,0,5,5,0,80.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051480991282917256,10955.5,2,1,2_0,2_1_0,2_1_0,2_1_0 -2597,2,50.0,0.0,8,400,244.0,,,81,69,0.0,0.0,,382.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,2,2003.0,6,107380,1,1,0,0,2,,564.0,317.0,43,2.0,1.0,3.0,3.0,1.8,3,3,124.93831714763162,244.0,33456.09151644926,4,1,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011417950593905542,18586.717509138478,4,2,4_0,4_0_0,4_1_0,4_0_0 -2598,2,85.0,0.0,9,300,402.0,,,0,78,0.0,0.0,,494.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107446,2,2,0,0,2,,978.0,,11,0.0,11.0,4.0,1.0,1.0,2,2,126.58207613024149,402.0,9646.0,0,5,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05121293800539083,9646.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -2599,0,45.0,0.0,5,300,600.0,,,0,85,0.0,0.0,,738.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,3,127965,1,1,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,183.37095593881435,600.0,7166.355666143323,0,7,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1029812130992328,7166.355666143323,1,1,1_0,1_1_0,1_0_0,1_0_0 -2600,1,55.0,253.0,7,221,520.0,,,0,77,0.0,0.0,,754.0,402.55651898050485,,10,0,0,0,0,0,0,0,0,0,,2,,5,132129,2,1,0,0,2,,534.0,684.0,11,0.0,7.0,4.0,1.0,1.0,1,1,109.93532772903966,520.0,11893.749335295623,0,7,2,3,80.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06339464358496665,11893.749335295623,2,1,2_1,2_0_1,2_1_1,2_0_0 -2601,2,52.0,0.0,1,221,354.0,,,0,68,0.0,0.0,,486.0,227.0831645531053,,43,0,0,0,0,0,0,0,0,0,,1,,1,126521,1,2,0,0,2,,380.0,,22,1.0,9.0,5.0,2.0,1.5,2,2,115.24759647964981,354.0,35141.37473347692,0,4,0,1,60.0,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013829851668751569,23427.583155651282,6,3,6,6_1,6_1,6_1_0 -2602,2,61.0,0.0,1,221,500.0,,,0,22,0.0,0.0,,638.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,1,111570,2,2,0,0,2,,373.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,86.56838172445757,500.0,9415.489936305732,0,1,0,1,60.0,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06776067993444493,9415.489936305732,1,1,1_0,1_1_0,1_1_0,1_1_0 -2603,0,57.0,0.0,2,221,432.0,,,0,11,0.0,0.0,,696.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,2,126223,1,2,0,0,2,,560.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,117.33897367648323,432.0,12328.35780268046,0,4,5,0,60.0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05645520767159062,12328.35780268046,2,1,2_0,2_1_0,2_1_0,2_0_1 -2605,1,43.0,440.0,8,221,624.0,,,0,52,0.0,0.0,,900.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,3,20.0,2,2001.0,6,119654,2,2,0,0,2,,736.0,496.0,32,2.0,0.0,4.0,5.0,2.8,2,2,94.35996530791526,624.0,39868.38368889223,0,1,2,3,80.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022574278581821462,14238.708460318654,3,2,3_1,3_0_1,3_1_1,3_0_0 -2606,2,55.0,0.0,2,221,480.0,,,0,22,0.0,0.0,,744.0,454.1663291062106,,33,0,0,0,0,0,0,0,0,1,10.0,1,,2,112129,1,3,0,0,2,,300.0,540.0,12,1.0,3.0,2.0,1.0,1.0,2,2,191.2069807661293,480.0,15932.0,0,1,2,3,30.0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04669846849108712,15932.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -2607,1,55.0,186.0,9,221,660.0,,,0,52,0.0,0.0,,936.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,117745,1,1,0,0,2,,718.0,513.0,22,2.0,1.0,4.0,3.0,1.8,2,2,124.66809833357617,660.0,35289.50067746096,0,1,2,3,60.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026523469644834437,19605.278154144977,5,3,5,5_0,5_1,5_0_0 -2608,2,62.0,0.0,6,221,480.0,,,68,78,0.0,0.0,,756.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,1,,4,116236,1,1,0,0,2,,300.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,122.23785952741528,480.0,30569.660612564378,1,5,0,1,50.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024730402132409606,20379.773741709585,5,3,5,5_1,5_1,5_0_0 -2609,0,49.0,0.0,1,221,0.0,,,0,69,0.0,0.0,,330.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,1,125756,2,2,0,0,2,,0.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,114.89857589291218,0.0,7618.0,0,4,5,0,60.0,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043318456287739567,5078.666666666667,1,1,1_0,1_1_0,1_1_0,1_1_0 -2610,2,68.0,0.0,2,300,102.0,,,72,77,0.0,0.0,,192.0,154.82943037711726,,60,0,0,0,0,0,0,0,0,0,,1,,2,108859,1,2,0,0,2,,191.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,71.51826536523362,102.0,15002.636752756123,5,5,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012797750366429942,10001.757835170749,2,1,2_0,2_1_0,2_1_0,2_0_1 -2611,2,68.0,0.0,2,300,552.0,,,77,72,0.0,0.0,,813.0,449.00534809364,,71,0,0,0,0,0,0,0,0,0,,1,,2,132324,1,3,0,0,1,,444.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,87.88489585985123,552.0,9503.305931034483,5,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08554917687591489,6335.537287356322,1,1,1_0,1_1_0,1_1_0,1_0_1 -2612,2,49.0,0.0,9,300,326.0,,,0,56,0.0,0.0,,590.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,1,60.0,2,2005.0,6,127196,2,1,0,0,2,,738.0,476.0,12,1.0,2.0,3.0,1.0,1.0,6,5,146.14213857446032,326.0,16913.84816753927,0,1,2,3,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03488265911788877,16913.84816753927,4,2,4_0,4_0_0,4_1_0,4_0_0 -2614,1,23.0,279.0,9,300,864.0,,,0,42,0.0,0.0,,1128.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,108551,1,1,0,0,1,,360.0,428.0,22,2.0,1.0,4.0,3.0,1.8,1,1,96.13925277929084,864.0,21632.579274436885,0,1,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0521435740828627,12018.09959690938,2,1,2_1,2_1_1,2_1_1,2_0_0 -2615,0,91.0,0.0,2,300,22.0,,,0,78,0.0,0.0,,44.0,37.84719409218422,,71,0,0,0,0,0,0,0,0,0,,1,,2,130997,2,2,0,0,2,,117.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,119.09347938572552,22.0,4511.986413859249,0,5,5,0,20.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009751802413422021,4511.986413859249,1,1,1_0,1_1_0,1_1_0,1_0_1 -2616,2,67.0,0.0,6,300,65.0,,,0,77,0.0,0.0,,131.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,1,,4,130129,2,1,0,0,1,,80.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,71.51826536523362,65.0,27357.30901944785,0,5,0,1,90.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004788482664975356,27357.30901944785,7,4,7,7_1,7_1,7_0_0 -2617,1,48.0,400.0,9,300,0.0,,,81,69,0.0,0.0,,539.0,0.0,,60,0,0,0,0,0,0,0,0,2,90.0,1,2009.0,6,116672,2,1,0,0,2,,388.0,597.0,43,3.0,2.0,3.0,4.0,2.3,2,2,150.61907911320182,0.0,22348.047934080147,4,1,2,3,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024118437618797124,9716.542580034848,1,1,1_1,1_1_1,1_1_1,1_0_0 -2618,2,74.0,0.0,2,300,306.0,,,78,78,0.0,0.0,,438.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,2,119994,1,1,0,0,1,,726.0,,41,0.0,7.0,4.0,2.0,1.5,2,2,71.51826536523362,306.0,15469.365182788766,5,5,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028314025483561493,10312.910121859177,2,1,2_0,2_1_0,2_1_0,2_0_1 -2619,2,61.0,0.0,2,300,648.0,,,72,55,0.0,0.0,,786.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,2,128877,2,2,0,0,2,,420.0,,42,2.0,2.0,4.0,3.0,2.0,1,1,78.9766185543492,648.0,22544.28920232253,5,1,0,1,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03486470533384684,11272.144601161264,2,1,2_0,2_1_0,2_1_0,2_0_1 -2620,2,92.0,0.0,2,300,414.0,,,0,77,0.0,0.0,,483.0,118.70256328912323,,50,0,0,0,0,0,0,0,0,0,,1,,2,109263,1,1,0,0,2,,516.0,,11,0.0,10.0,5.0,1.0,1.0,2,2,106.37916305375356,414.0,12848.913976327936,0,5,0,1,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03759072563563349,12848.913976327936,2,1,2_0,2_1_0,2_1_0,2_0_1 -2621,2,84.0,0.0,1,300,360.0,,,0,78,0.0,0.0,,452.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,0,,1,,1,102588,2,1,0,0,2,,480.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,120.14701381488922,360.0,10509.642585551332,0,5,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043008122904332646,10509.642585551332,2,1,2_0,2_1_0,2_1_0,2_1_0 -2622,2,66.0,0.0,9,300,140.0,,,0,86,0.0,0.0,,278.0,237.40512657824647,,30,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100275,1,1,0,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,88.97799986228166,140.0,34881.14736868776,0,5,1,2,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007969921317713192,34881.14736868776,9,5,9,9_1,9_1,9_0_0 -2623,2,68.0,0.0,9,300,570.0,,,0,77,0.0,0.0,,662.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,102628,2,1,0,0,1,,480.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,99.57456555745446,570.0,29878.255699762765,0,5,1,2,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022156581249328296,29878.255699762765,8,4,8,8_1,8_1,8_0_0 -2624,0,41.0,0.0,1,300,203.0,,,0,63,0.0,0.0,,341.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,1,112541,1,2,0,0,2,,474.0,,12,1.0,0.0,5.0,1.0,1.0,2,1,108.40386073556485,203.0,7263.0,0,4,5,0,50.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04695029602092799,7263.0,1,1,1_0,1_1_0,1_1_0,1_1_0 -2625,1,80.0,35.0,8,300,246.0,,,0,78,0.0,0.0,,378.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,104518,1,1,0,0,2,,234.0,309.0,11,0.0,7.0,2.0,1.0,1.0,1,1,155.51474462041082,246.0,14732.414251685446,0,5,2,3,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02565770915359343,14732.414251685446,3,2,3_1,3_0_1,3_1_1,3_0_0 -2626,2,49.0,0.0,7,300,418.0,,,0,63,0.0,0.0,,682.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,5,101590,1,2,0,0,2,,720.0,,22,2.0,0.0,4.0,3.0,1.8,4,3,106.37916305375356,418.0,28776.0,0,4,0,1,45.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023700305810397553,15986.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0 -2627,2,77.0,0.0,1,300,546.0,,,78,78,0.0,0.0,,822.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,0,,1,,1,126923,1,2,0,0,1,,642.0,,41,2.0,4.0,5.0,4.0,2.5,1,1,76.39131143863047,546.0,33471.72414012723,5,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024558041783528974,13388.689656050894,3,2,3_0,3_1_0,3_1_0,3_1_0 -2628,2,45.0,0.0,9,300,690.0,,,0,52,0.0,0.0,,966.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,1,20.0,1,2007.0,6,114058,1,1,0,0,1,,720.0,,22,3.0,1.0,5.0,4.0,2.3,1,1,75.90035471787434,690.0,49962.34743694664,0,1,0,1,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019334559914725963,21722.759755194194,6,3,6,6_1,6_1,6_0_0 -2629,1,66.0,37.0,7,300,540.0,,,0,86,0.0,0.0,,672.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,2,,5,106268,1,3,0,0,1,,272.0,560.0,11,0.0,3.0,4.0,1.0,1.0,2,2,125.81302609498199,540.0,17141.387434554974,0,5,2,3,65.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03920336102113466,17141.387434554974,4,2,4_1,4_0_1,4_1_1,4_0_0 -2630,0,23.0,0.0,6,300,3842.6,,,0,52,0.0,0.0,,4107.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,,4,127966,1,2,0,0,2,,692.0,,22,3.0,4.0,3.0,4.0,2.3,1,1,67.51064861815469,3842.6,9383.706293706293,0,1,5,0,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.43767354512732237,4079.872301611432,1,1,1_0,1_1_0,1_1_0,1_0_0 -2631,2,88.0,0.0,2,400,594.0,,,77,78,0.0,0.0,,594.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,133591,1,1,0,0,1,,81.0,,41,0.0,9.0,7.0,3.0,2.0,2,2,101.8229604339089,594.0,19940.29489910045,5,5,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02978892754624189,9970.147449550224,2,1,2_0,2_1_0,2_0_0,2_0_1 -2632,2,64.0,0.0,7,400,630.0,,,75,78,0.0,0.0,,768.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,5,119713,1,1,0,0,1,,552.0,,41,0.0,6.0,4.0,2.0,1.5,3,2,95.63164682195476,630.0,39138.217022708224,5,5,1,2,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019622764101757673,26092.144681805483,7,4,7,7_1,7_0,7_0_0 -2633,2,64.0,0.0,1,400,660.0,,,77,75,0.0,0.0,,798.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,1,119957,1,1,0,0,2,,752.0,250.0,41,0.0,3.0,1.0,2.0,1.5,2,2,126.24640543594548,660.0,38428.834536922506,5,5,2,3,40.0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020765657080577864,25619.223024615003,7,4,7,7_1,7_0,7_1_0 -2634,2,72.0,0.0,2,400,594.0,,,0,75,0.0,0.0,,726.0,227.0831645531053,,33,0,0,0,0,0,0,0,0,0,,1,,2,102851,1,3,0,0,2,,280.0,400.0,11,0.0,2.0,3.0,1.0,1.0,1,1,126.58207613024149,594.0,38921.53586378613,0,5,2,3,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018652912427217297,38921.53586378613,9,5,9,9_1,9_0,9_0_1 -2635,1,24.0,350.0,9,400,0.0,,,0,43,0.0,0.0,,947.0,0.0,,71,0,0,0,0,0,0,0,0,1,10.0,2,2007.0,6,123879,2,2,0,0,2,,186.0,827.0,32,1.0,0.0,3.0,2.0,1.3,1,1,128.88431626553282,0.0,3210.116216939825,0,1,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.2950048957737632,2469.3201668767883,1,1,1_1,1_0_1,1_0_1,1_0_0 -2636,2,84.0,0.0,2,400,330.0,,,0,78,0.0,0.0,,462.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,2,104065,1,2,0,0,1,,214.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,122.02830407362475,330.0,9583.657931034482,0,5,0,1,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048207062827641076,9583.657931034482,1,1,1_0,1_1_0,1_0_0,1_0_1 -2637,0,55.0,0.0,2,400,240.0,,,0,68,0.0,0.0,,328.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,2,124014,2,1,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,123.53685546586802,240.0,6819.314649112526,0,4,5,0,30.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04809867514218402,6819.314649112526,1,1,1_0,1_1_0,1_0_0,1_0_1 -2638,0,41.0,0.0,5,120,480.0,,,0,63,0.0,0.0,,549.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,0,,1,,3,120388,2,3,0,0,2,,600.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,86.27834062814715,480.0,15555.492517665876,0,4,5,0,45.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03529300016547327,15555.492517665876,3,2,3_0,3_1_0,3_0_0,3_0_0 -2639,1,38.0,139.0,2,120,0.0,,,0,52,0.0,0.0,,424.0,0.0,,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,132319,2,1,0,0,1,,590.0,500.0,32,1.0,0.0,3.0,2.0,1.5,1,1,80.61029249835816,0.0,20791.960266352828,0,1,2,3,75.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02039249760813317,13861.306844235218,3,2,3_1,3_1_1,3_0_1,3_0_1 -2640,0,53.0,0.0,7,120,840.0,,,13,52,0.0,0.0,,1116.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,105320,2,2,0,0,2,,800.0,,43,3.0,1.0,5.0,5.0,3.0,1,1,56.92901322337522,840.0,50374.5779628252,1,1,5,0,142.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022154031758312133,16791.5259876084,4,2,4_0,4_1_0,4_0_0,4_0_0 -2641,1,42.0,186.0,8,120,336.0,,,0,68,0.0,0.0,,612.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,0,,2,1999.0,6,115675,2,1,0,0,2,,600.0,402.0,32,1.0,0.0,3.0,3.0,1.8,1,1,73.94546130093956,336.0,24516.48987882093,0,1,2,3,78.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024962790473879736,13620.272154900515,3,2,3_1,3_0_1,3_0_1,3_0_0 -2642,2,56.0,0.0,8,120,800.0,,,0,52,0.0,0.0,,1076.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,2,5.0,2,1999.0,6,129080,2,2,0,0,2,,200.0,465.0,12,1.0,1.0,4.0,1.0,1.0,1,1,84.15872660748799,800.0,26553.869063645274,0,1,2,3,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04052140188764975,26553.869063645274,7,4,7,7_0,7_0,7_0_0 -2643,2,39.0,0.0,7,120,0.0,,,0,46,0.0,0.0,,693.0,0.0,,70,0,0,0,0,0,0,0,0,2,40.0,2,,5,131122,2,1,0,0,2,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,89.65804545182175,0.0,22490.806423075475,0,1,3,4,47.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030812590129671153,22490.806423075475,6,3,6,6_0,6_0,6_0_0 -2645,2,67.0,0.0,2,111,304.0,,,0,77,0.0,0.0,,442.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,2,100619,2,2,0,0,2,,504.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,78.36720742758395,304.0,13719.318993574982,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03221734258143549,13719.318993574982,3,2,3_0,3_1_0,3_2_0,3_0_1 -2646,0,59.0,0.0,2,111,340.0,,,0,71,0.0,0.0,,436.0,165.1513924022584,,33,0,0,0,0,0,0,0,0,0,,1,,2,108796,2,2,0,0,2,,240.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,104.17365885741695,340.0,6523.275411699327,0,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0668375888618845,6523.275411699327,1,1,1_0,1_1_0,1_2_0,1_0_1 -2647,2,61.0,0.0,5,111,672.0,,,78,77,0.0,0.0,,808.0,233.96447256986607,,71,0,0,0,0,0,0,0,0,0,,1,,3,125752,2,2,0,0,2,,600.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,77.68559259809525,672.0,43118.57589316018,5,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018739023338852235,28745.717262106788,8,4,8,8_1,8_2,8_0_0 -2648,1,59.0,360.0,5,111,480.0,,,0,78,0.0,0.0,,756.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,3,130989,2,2,0,0,2,,660.0,500.0,31,2.0,0.0,4.0,3.0,2.0,1,1,79.52289107592193,480.0,23581.45064613717,0,7,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0320590964205096,11790.725323068586,2,1,2_1,2_1_1,2_2_1,2_0_0 -2649,2,39.0,0.0,9,111,1800.0,,,33,33,0.0,0.0,,1950.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,2,60.0,1,2009.0,6,121981,2,1,0,0,2,,1300.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,101.86126694897999,1800.0,124014.23693497584,1,1,1,2,163.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01572400111627861,51672.5987229066,10,5,10,10_1,10_2,10_0_0 -2650,2,48.0,0.0,5,111,1176.0,,,78,52,0.0,0.0,,1176.0,0.0,,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,116115,2,2,0,0,2,,840.0,352.0,42,1.0,0.0,4.0,5.0,2.8,2,2,76.2763697733195,1176.0,36384.57082683917,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03232139264736141,12994.48958101399,2,1,2_0,2_0_0,2_2_0,2_0_0 -2651,1,22.0,173.0,5,111,0.0,,,0,56,0.0,0.0,,919.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,3,107837,2,2,0,0,2,,406.0,460.0,22,2.0,3.0,4.0,2.0,1.5,2,2,69.7075136174704,0.0,22290.192622950817,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041228894498370694,14860.128415300545,3,2,3_1,3_0_1,3_2_1,3_0_0 -2652,2,45.0,0.0,7,111,320.0,,,0,63,0.0,0.0,,416.0,165.1513924022584,,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,107744,2,2,0,0,2,,350.0,350.0,12,1.0,1.0,2.0,1.0,1.0,2,2,74.54730947712595,320.0,28085.406734218963,0,1,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014811962808185006,28085.406734218963,8,4,8,8_0,8_2,8_0_0 -2653,2,53.0,0.0,5,111,528.0,,,0,52,0.0,0.0,,624.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,109145,2,2,0,0,2,,396.0,370.0,12,1.0,1.0,3.0,1.0,1.0,2,2,71.73872937782951,528.0,28405.334162550018,0,1,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02196770495390581,28405.334162550018,8,4,8,8_0,8_2,8_0_0 -2654,1,43.0,90.0,5,111,0.0,,,0,42,0.0,0.0,,270.0,39.567521096374406,,60,0,0,0,0,0,0,0,0,2,30.0,2,,3,126091,2,2,0,0,2,,0.0,419.0,12,1.0,0.0,1.0,1.0,1.0,3,3,147.10956455067156,0.0,14899.154614920704,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018121833552194263,14899.154614920704,3,2,3_1,3_0_1,3_2_1,3_0_0 -2655,2,43.0,0.0,2,111,450.0,,,55,52,0.0,0.0,,546.0,165.1513924022584,,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,105952,2,2,0,0,2,,450.0,,43,2.0,0.0,3.0,4.0,2.3,1,1,66.59780425822993,450.0,27743.194147235325,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019680502436105043,12062.258324884924,2,1,2_0,2_1_0,2_2_0,2_0_1 -2656,1,44.0,70.0,9,111,396.0,,,0,56,0.0,0.0,,419.0,39.567521096374406,,71,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,106878,2,2,0,0,2,,257.0,289.0,12,1.0,0.0,2.0,1.0,1.0,1,1,90.17623797282018,396.0,14031.193375768104,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02986203587811809,14031.193375768104,3,2,3_1,3_0_1,3_2_1,3_0_0 -2657,2,49.0,0.0,2,111,1750.0,,,54,48,0.0,0.0,,2210.0,791.3504219274881,,33,0,0,0,0,0,0,0,0,0,,1,,2,107599,2,1,0,0,2,,1400.0,,43,3.0,0.0,5.0,6.0,3.3,1,1,107.4478196351651,1750.0,102606.14722338675,1,1,0,1,123.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021538670535874875,31092.771885874776,8,4,8,8_1,8_2,8_0_1 -2658,2,62.0,0.0,5,111,0.0,,,52,72,0.0,0.0,,445.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,3,102598,2,2,0,0,2,,992.0,850.0,42,1.0,0.0,3.0,2.0,1.5,1,1,85.95751305738513,0.0,18964.270143948346,4,5,3,4,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02346517934105696,12642.84676263223,2,1,2_0,2_1_0,2_2_0,2_0_0 -2659,2,64.0,0.0,8,111,341.0,,,75,74,0.0,0.0,,510.0,290.7352637081424,,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,112475,2,2,0,0,2,,482.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,74.95249752963274,341.0,51590.64395960279,5,5,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009885513357796952,34393.76263973519,9,5,9,9_1,9_2,9_0_0 -2660,0,58.0,0.0,7,111,800.0,,,33,33,0.0,0.0,,823.0,39.567521096374406,,31,0,0,0,0,0,0,0,0,2,60.0,1,,5,123138,2,1,0,0,2,,1200.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,94.66528715806433,800.0,183716.40728281968,1,1,5,0,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004479730537801363,122477.60485521313,10,5,10,10_1,10_2,10_0_0 -2661,2,87.0,0.0,2,111,800.0,,,86,72,0.0,0.0,,976.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,0,,1,,2,115596,2,2,0,0,2,,550.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,71.17522230439882,800.0,22847.35723673433,6,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042718288591853955,15231.571491156219,3,2,3_0,3_1_0,3_2_0,3_0_1 -2662,2,43.0,0.0,7,111,360.0,,,0,52,0.0,0.0,,456.0,165.1513924022584,,70,0,0,0,0,0,0,0,0,2,5.0,2,,5,102957,2,2,0,0,2,,518.0,377.0,32,1.0,0.0,3.0,3.0,1.8,2,2,83.01720064899582,360.0,27825.461280518386,0,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016387868485014556,15458.589600287993,3,2,3_0,3_0_0,3_2_0,3_0_0 -2663,2,67.0,0.0,2,111,1320.0,,,0,77,0.0,0.0,,1484.0,282.13362868719145,,31,0,0,0,0,0,0,0,0,0,,1,,2,123400,2,2,0,0,2,,960.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,62.242423239826316,1320.0,40849.74976943468,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03632825190793175,40849.74976943468,9,5,9,9_1,9_2,9_0_1 -2664,2,36.0,0.0,6,300,1200.0,,,43,42,0.0,0.0,,1300.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,114518,2,2,0,0,2,,1250.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,88.14330007594224,1200.0,86289.9349634088,1,1,1,2,68.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015065488235114145,41090.44522067085,9,5,9,9_1,9_1,9_0_0 -2665,0,76.0,0.0,8,300,0.0,,,0,77,0.0,0.0,,92.0,158.27008438549763,,70,0,0,0,0,0,0,0,0,0,,7,2000.0,6,110303,2,1,0,0,2,,350.0,,11,0.0,10.0,1.0,1.0,1.0,1,1,119.68517168371991,0.0,15837.636500286948,0,5,5,0,25.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005808947566029384,15837.636500286948,3,2,3_0,3_1_0,3_1_0,3_0_0 -2666,2,63.0,0.0,7,300,1500.0,,,54,43,0.0,0.0,,1800.0,516.0981012570575,,44,0,0,0,0,0,0,0,0,0,,1,,5,126953,2,2,0,0,1,,1200.0,,43,3.0,2.0,6.0,3.0,2.0,1,1,92.16763524383246,1500.0,52695.122240448,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03415875935891361,26347.561120224,7,4,7,7_1,7_1,7_0_0 -2667,2,84.0,0.0,5,300,0.0,,,0,77,0.0,0.0,,499.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,3,114890,2,1,0,0,1,,140.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,112.82951040149281,0.0,35569.17170138199,0,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014029002535940754,35569.17170138199,9,5,9,9_1,9_1,9_0_0 -2668,2,36.0,0.0,7,300,540.0,,,0,43,0.0,0.0,,747.0,356.1076898673697,,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,127928,2,1,0,0,2,,900.0,,32,2.0,2.0,6.0,5.0,2.5999999999999996,1,1,76.01455925785838,540.0,72046.81894318525,0,1,0,1,119.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01036825790447556,27710.314978148177,7,4,7,7_1,7_1,7_0_0 -2669,2,54.0,0.0,8,300,1013.0,,,72,52,0.0,0.0,,1128.0,197.83760548187203,,60,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,102115,2,1,0,0,1,,462.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,63.509051162801164,1013.0,37796.07722060425,7,1,1,2,79.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029844367007089274,25197.384813736167,7,4,7,7_1,7_1,7_0_0 -2670,2,70.0,0.0,9,300,154.0,,,78,77,0.0,0.0,,269.0,197.83760548187203,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,116862,2,1,0,0,1,,396.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,95.010942328721,154.0,20658.963173377626,5,5,0,1,104.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013020982599293728,13772.642115585084,3,2,3_0,3_1_0,3_1_0,3_0_0 -2671,2,56.0,0.0,9,300,765.0,,,54,67,0.0,0.0,,895.0,223.64251054472493,,12,0,0,0,0,0,0,0,0,2,60.0,1,2004.0,6,118886,1,2,0,0,2,,920.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,66.82706975027537,765.0,9193.774933447865,1,1,0,1,135.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09734847834309074,4596.887466723932,1,1,1_0,1_1_0,1_1_0,1_0_0 -2672,1,67.0,162.0,2,300,0.0,,,0,77,0.0,0.0,,348.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,2,116194,2,2,0,0,2,,122.0,230.0,11,0.0,1.0,2.0,1.0,1.0,1,1,103.7382673213016,0.0,4813.045302517807,0,5,2,3,48.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07230349563050108,4813.045302517807,1,1,1_1,1_0_1,1_1_1,1_0_1 -2673,2,52.0,0.0,2,300,1264.0,,,0,63,0.0,0.0,,1586.0,553.9452953492417,,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,114211,2,2,0,0,2,,1364.0,,22,6.0,0.0,7.0,9.0,4.6,2,2,90.62560918026547,1264.0,46092.20882852292,0,1,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034409286087815925,10020.045397504982,2,1,2_0,2_1_0,2_1_0,2_0_1 -2674,2,77.0,0.0,6,300,325.0,,,0,75,0.0,0.0,,486.0,276.9726476746209,,50,0,0,0,0,0,0,0,0,0,,1,,4,103558,2,2,0,0,1,,647.0,,21,0.0,4.0,5.0,2.0,1.5,2,2,63.509051162801164,325.0,45195.0,0,5,0,1,174.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010753401924991702,30130.0,8,4,8,8_1,8_1,8_0_0 -2675,2,68.0,0.0,9,300,480.0,,,77,78,0.0,0.0,,618.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,2009.0,6,133304,2,1,0,0,2,,600.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,88.01360779036266,480.0,19629.2995763799,7,5,0,1,58.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03148354823335849,13086.1997175866,2,1,2_0,2_1_0,2_1_0,2_0_0 -2676,2,67.0,0.0,6,300,581.0,,,75,74,0.0,0.0,,673.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,0,,2,,4,118948,2,2,0,0,2,,860.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,74.95249752963274,581.0,68263.11522373269,5,5,0,1,184.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0098589113285299,45508.74348248846,10,5,10,10_0,10_1,10_0_0 -2677,0,47.0,0.0,9,300,300.0,,,0,47,0.0,0.0,,323.0,39.567521096374406,,12,0,0,0,0,0,0,0,0,2,60.0,1,2004.0,6,109336,1,2,0,0,2,,598.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,81.007461774289,300.0,22382.340163934423,0,1,5,0,45.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014431020064669692,22382.340163934423,6,3,6,6_1,6_1,6_0_0 -2678,2,66.0,0.0,7,300,440.0,,,0,75,0.0,0.0,,486.0,79.13504219274881,,12,0,0,0,0,0,0,0,0,0,,1,,5,104810,2,1,0,0,1,,329.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,88.14330007594224,440.0,39750.867119743794,0,5,0,1,106.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012226148389065189,39750.867119743794,9,5,9,9_1,9_1,9_0_0 -2679,2,29.0,0.0,7,300,2500.0,,,0,90,0.0,0.0,,2592.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,0,,1,,5,132703,2,1,0,0,1,,554.0,,32,4.0,0.0,5.0,7.0,3.6,1,1,81.94519813803447,2500.0,35712.32715841535,0,2,0,1,200.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07257998025449916,9920.090877337596,2,1,2_0,2_1_0,2_1_0,2_0_0 -2680,2,23.0,0.0,9,300,0.0,,,0,56,0.0,0.0,,652.0,0.0,,10,0,0,0,0,0,0,0,0,3,20.0,2,2010.0,6,124354,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,1,137.38399474356302,0.0,9829.294117647058,0,2,3,4,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06633233192497816,9829.294117647058,2,1,2_0,2_0_0,2_1_0,2_0_0 -2681,2,38.0,0.0,9,300,950.0,,,47,38,0.0,0.0,,996.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,115090,2,1,0,0,1,,330.0,900.0,43,2.0,0.0,5.0,4.0,2.1,3,2,127.65334649653435,950.0,73562.70802583965,1,4,2,3,105.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013539468933772053,35029.86096468555,9,5,9,9_1,9_1,9_0_0 -2682,2,43.0,0.0,9,300,788.0,,,52,37,0.0,0.0,,788.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,123609,2,1,0,0,1,,269.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,99.56012851584815,788.0,68338.50802361744,1,1,1,2,136.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011530834119581177,32542.146677913064,8,4,8,8_1,8_1,8_0_0 -2683,2,58.0,0.0,8,300,945.0,,,52,48,0.0,0.0,,1117.0,295.89624472071296,,41,0,0,0,0,0,0,0,0,1,25.0,1,1999.0,6,129753,2,1,0,0,1,,818.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,60.312548866890936,945.0,63248.699886757444,1,1,0,1,129.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017660442064420512,25299.479954702976,7,4,7,7_1,7_0,7_0_0 -2684,2,77.0,0.0,2,300,21.0,,,0,77,0.0,0.0,,228.0,356.1076898673697,,20,0,0,0,0,0,0,0,0,0,,1,,2,131895,2,1,0,0,2,,225.0,,21,1.0,5.0,5.0,2.0,1.5,2,2,64.08206515815695,21.0,30037.0,0,5,0,1,76.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007590638212870792,20024.666666666668,5,3,5,5_1,5_0,5_0_1 -2685,2,53.0,0.0,5,300,336.0,,,0,63,0.0,0.0,,418.0,141.06681434359572,,41,0,0,0,0,0,0,0,0,0,,2,,3,110149,2,1,0,0,2,,442.0,600.0,12,1.0,2.0,4.0,1.0,1.0,4,4,84.72860872539246,336.0,20840.1230880177,0,4,2,3,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020057463107803552,20840.1230880177,5,3,5,5_0,5_0,5_0_0 -2686,2,31.0,0.0,6,300,0.0,,,0,34,0.0,0.0,,599.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,110547,2,1,0,0,2,,857.0,800.0,12,1.0,0.0,4.0,1.0,1.0,2,2,89.65804545182175,0.0,47553.838955012965,0,1,2,3,85.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012596249076056044,47553.838955012965,10,5,10,10_1,10_0,10_0_0 -2687,0,77.0,0.0,1,300,200.0,,,0,78,0.0,0.0,,338.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,1,124570,2,1,0,0,2,,106.0,,11,0.0,0.0,4.0,1.0,1.0,3,2,82.56454739687867,200.0,4498.689720303293,0,5,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0751329878285566,4498.689720303293,1,1,1_0,1_1_0,1_0_0,1_1_0 -2688,0,67.0,0.0,9,300,174.0,,,0,77,0.0,0.0,,197.0,39.567521096374406,,10,0,0,0,0,0,0,0,0,0,,1,2004.0,6,122750,2,1,0,0,2,,96.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,82.56454739687867,174.0,11207.084904774041,0,5,5,0,52.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017578166104200845,11207.084904774041,2,1,2_0,2_1_0,2_0_0,2_0_0 -2689,2,96.0,0.0,2,300,0.0,,,0,71,0.0,0.0,,427.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,2,131232,2,1,0,0,2,,121.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,70.87449904138447,0.0,6026.133860164249,0,5,0,1,65.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0708580343398415,6026.133860164249,1,1,1_0,1_1_0,1_0_0,1_0_1 -2690,2,49.0,0.0,2,300,201.0,,,0,56,0.0,0.0,,270.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,0,,1,,2,117281,1,1,0,0,2,,145.0,,22,2.0,3.0,5.0,3.0,2.0,1,1,66.12159595861756,201.0,5431.850500123086,0,4,0,1,51.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049706817224421364,2715.925250061543,1,1,1_0,1_1_0,1_0_0,1_0_1 -2691,1,32.0,170.0,2,300,369.0,,,0,42,0.0,0.0,,484.0,197.83760548187203,,31,0,0,0,0,0,0,0,0,0,,1,,2,115442,1,1,0,0,2,,162.0,1000.0,22,2.0,0.0,4.0,2.0,1.5,3,2,66.6246878889034,369.0,36649.98767976242,0,4,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01320600716783481,24433.32511984161,7,4,7,7_1,7_0,7_0_1 -2692,2,76.0,0.0,5,300,510.0,,,0,75,0.0,0.0,,717.0,356.1076898673697,,10,0,0,0,0,0,0,0,0,0,,1,,3,103517,1,2,0,0,1,,179.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,67.04169349974141,510.0,44071.60341717383,0,5,0,1,73.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016268979215777735,44071.60341717383,10,5,10,10_1,10_0,10_0_0 -2693,1,59.0,184.0,7,300,660.0,,,0,52,0.0,0.0,,936.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,2,,5,133164,2,1,0,0,2,,0.0,334.0,12,1.0,3.0,4.0,1.0,1.0,2,2,79.62136752303144,660.0,9269.108974358975,0,4,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1009805799661268,9269.108974358975,1,1,1_1,1_0_1,1_0_1,1_0_0 -2694,2,43.0,0.0,2,111,0.0,,,0,62,0.0,0.0,,23.0,39.567521096374406,,10,0,0,0,0,0,0,0,0,0,,2,,2,120700,2,2,0,0,2,,0.0,525.0,12,1.0,1.0,2.0,1.0,1.0,2,2,175.80244780537362,0.0,23051.67135301469,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.000997758455245028,23051.67135301469,6,3,6,6_0,6_2,6_0_1 -2695,1,46.0,106.0,2,111,0.0,,,54,63,0.0,0.0,,202.0,118.70256328912323,,44,0,0,0,0,0,0,0,0,0,,2,,2,123019,2,2,0,0,2,,378.0,443.0,43,2.0,1.0,2.0,4.0,2.1,4,4,155.14968160264374,0.0,31126.346597197604,1,1,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.006489679068798477,14822.069808189335,3,2,3_1,3_0_1,3_2_1,3_0_1 -2696,2,62.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,696.0,165.1513924022584,,33,0,0,0,0,0,0,0,0,0,,2,,2,107359,2,3,0,0,2,,480.0,466.0,21,1.0,3.0,5.0,2.0,1.5,2,2,149.36172685133286,600.0,44321.264359515575,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015703523129537524,29547.509573010382,8,4,8,8_0,8_2,8_0_1 -2697,2,70.0,0.0,2,111,320.0,,,0,77,0.0,0.0,,416.0,165.1513924022584,,10,0,0,0,0,0,0,0,0,0,,2,,2,101764,2,2,0,0,2,,600.0,466.0,21,1.0,4.0,5.0,2.0,1.5,1,1,165.19763861503867,320.0,11092.684210526306,0,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03750219442876057,7395.1228070175375,1,1,1_0,1_0_0,1_2_0,1_0_1 -2698,2,64.0,0.0,5,111,690.0,,,86,55,0.0,0.0,,690.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,3,127090,2,2,0,0,2,,240.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,105.87946918255527,690.0,53628.19521266948,6,1,0,1,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012866366232607989,35752.13014177966,9,5,9,9_0,9_2,9_0_0 -2699,0,25.0,0.0,5,111,270.0,,,84,64,0.0,0.0,,345.0,129.02452531426437,,41,0,0,0,0,0,0,0,0,0,,2,,3,116443,2,1,0,0,2,,388.0,,42,1.0,0.0,1.0,2.0,1.5,1,1,237.4664490113746,270.0,4768.206744632489,3,1,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07235424520724949,3178.804496421659,1,1,1_0,1_0_0,1_2_0,1_0_0 -2700,0,44.0,0.0,2,111,870.0,,,21,46,0.0,0.0,,945.0,129.02452531426437,,70,0,0,0,0,0,0,0,0,1,5.0,1,,2,116938,2,2,0,0,2,,1400.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,125.43013794717785,870.0,37886.664205967194,1,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02494281351513553,18041.268669508187,4,2,4_0,4_1_0,4_2_0,4_0_1 -2701,2,80.0,0.0,2,111,780.0,,,0,77,0.0,0.0,,910.0,223.64251054472493,,10,0,0,0,0,0,0,0,0,0,,1,,2,122245,2,2,0,0,2,,840.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,98.23282035418544,780.0,35527.92733538208,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025613652927446055,35527.92733538208,9,5,9,9_1,9_2,9_0_1 -2702,2,46.0,0.0,9,111,630.0,,,34,33,0.0,0.0,,630.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,132110,2,1,0,0,2,,690.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,117.78577318318705,630.0,99991.56728901861,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006300531305595293,47615.032042389816,10,5,10,10_0,10_2,10_0_0 -2703,2,48.0,0.0,2,111,330.0,,,0,45,0.0,0.0,,380.0,86.01635020950958,,70,0,0,0,0,0,0,0,0,2,3.0,2,,2,126675,2,3,0,0,2,,250.0,550.0,12,1.0,3.0,2.0,1.0,1.0,2,2,128.5526269717044,330.0,38316.0,0,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009917527925670739,38316.0,9,5,9,9_0,9_2,9_0_1 -2704,2,37.0,0.0,2,111,360.0,,,0,67,0.0,0.0,,435.0,129.02452531426437,,10,0,0,0,0,0,0,0,0,0,,2,,2,125714,2,2,0,0,2,,380.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,2,146.96163511115694,360.0,21331.172964696492,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020392690112256532,21331.172964696492,6,3,6,6_0,6_2,6_0_1 -2705,2,82.0,0.0,2,111,160.0,,,0,75,0.0,0.0,,235.0,129.02452531426437,,31,0,0,0,0,0,0,0,0,0,,2,,2,124715,2,3,0,0,2,,120.0,559.0,11,0.0,4.0,2.0,1.0,1.0,1,1,151.55276213416337,160.0,31538.240745069714,0,5,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007451271676805146,31538.240745069714,8,4,8,8_0,8_2,8_0_1 -2706,1,76.0,253.0,2,111,383.0,,,0,77,0.0,0.0,,479.0,165.1513924022584,,70,0,0,0,0,0,0,0,0,0,,1,,2,108140,2,2,0,0,2,,840.0,510.0,11,0.0,4.0,3.0,1.0,1.0,1,1,122.00276354185455,383.0,10580.555133079848,0,5,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04527172666984345,10580.555133079848,2,1,2_1,2_1_1,2_2_1,2_0_1 -2707,2,72.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,332.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,2,125899,2,2,0,0,2,,240.0,,11,0.0,6.0,4.0,1.0,1.0,2,2,104.91903124477543,240.0,9361.119658119658,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035465842989415214,9361.119658119658,1,1,1_0,1_1_0,1_2_0,1_0_1 -2709,2,55.0,0.0,6,111,650.0,,,0,62,0.0,0.0,,742.0,158.27008438549763,,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,101866,2,1,0,0,2,,560.0,,12,1.0,0.0,4.0,1.0,1.0,4,3,88.95665316690146,650.0,28547.5270744323,0,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02599174345523431,28547.5270744323,8,4,8,8_1,8_2,8_0_0 -2710,2,65.0,0.0,7,111,1200.0,,,74,74,0.0,0.0,,1320.0,206.439240502823,,31,0,0,0,0,0,0,0,0,0,,1,,5,101839,2,2,0,0,2,,350.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,127.84246756819513,1200.0,67911.7133037116,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01943700041989454,45274.47553580773,10,5,10,10_1,10_2,10_0_0 -2711,1,63.0,34.0,7,111,480.0,,,0,77,0.0,0.0,,549.0,118.70256328912323,,60,0,0,0,0,0,0,0,0,0,,2,,5,110150,2,2,0,0,2,,520.0,428.0,11,0.0,2.0,3.0,1.0,1.0,4,2,143.24371574156282,480.0,15953.935618443029,0,5,2,3,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03441157173565038,15953.935618443029,3,2,3_1,3_0_1,3_2_1,3_0_0 -2712,2,56.0,0.0,7,111,540.0,,,0,55,0.0,0.0,,632.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,2,60.0,2,,5,109155,2,2,0,0,2,,1100.0,482.0,12,1.0,0.0,2.0,1.0,1.0,4,3,113.31089163581872,540.0,26292.615775126014,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024037167142491017,26292.615775126014,7,4,7,7_0,7_2,7_0_0 -2713,2,44.0,0.0,5,111,510.0,,,0,46,0.0,0.0,,510.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,118196,2,2,0,0,2,,659.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,113.1149230042783,510.0,51300.696793146344,0,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009941385436856968,39462.07445626642,9,5,9,9_0,9_2,9_0_0 -2714,2,61.0,0.0,6,111,480.0,,,45,33,0.0,0.0,,480.0,0.0,,42,0,0,0,0,0,0,0,0,2,10.0,2,,4,133281,2,2,0,0,2,,560.0,628.0,43,2.0,0.0,3.0,3.0,2.0,2,2,142.12257708112236,480.0,98050.59895225894,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004895431594800488,49025.29947612947,10,5,10,10_0,10_2,10_0_0 -2715,1,45.0,254.0,5,111,528.0,,,0,46,0.0,0.0,,578.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,0,,2,,3,123954,2,2,0,0,2,,360.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,121.03858548175273,528.0,7772.877239089576,0,4,1,2,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07436113838171207,7772.877239089576,1,1,1_1,1_0_1,1_2_1,1_0_0 -2716,2,90.0,0.0,2,111,366.0,,,0,75,0.0,0.0,,462.0,165.1513924022584,,41,0,0,0,0,0,0,0,0,0,,2,,2,119218,2,1,0,0,2,,322.0,270.0,11,0.0,5.0,4.0,1.0,1.0,4,4,99.79708847847996,366.0,35356.96072221973,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013066733977212603,35356.96072221973,9,5,9,9_0,9_2,9_0_1 -2717,2,64.0,0.0,5,111,299.0,,,77,54,0.0,0.0,,449.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,3,127856,2,2,0,0,2,,799.0,411.0,42,1.0,0.0,3.0,2.0,1.5,2,2,156.93337956946402,299.0,59338.94939044728,5,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0075666995221907755,39559.29959363152,9,5,9,9_0,9_2,9_0_0 -2718,2,76.0,0.0,2,111,312.0,,,0,77,0.0,0.0,,404.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,1,,2,130661,2,2,0,0,2,,292.0,611.0,11,0.0,3.0,3.0,1.0,1.0,2,2,105.69248090171534,312.0,9439.421910828027,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04279923111992365,9439.421910828027,1,1,1_0,1_1_0,1_2_0,1_0_1 -2719,2,70.0,0.0,2,111,660.0,,,0,75,0.0,0.0,,820.0,275.25232067043066,,71,0,0,0,0,0,0,0,0,0,,1,,2,106958,2,2,0,0,2,,730.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,99.6964590069803,660.0,29376.0,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027913943355119826,29376.0,8,4,8,8_1,8_2,8_0_1 -2720,2,82.0,0.0,2,111,240.0,,,78,77,0.0,0.0,,304.0,110.10092826817227,,50,0,0,0,0,0,0,0,0,0,,2,,2,125351,2,2,0,0,2,,360.0,335.0,41,0.0,5.0,3.0,2.0,1.5,1,1,89.64982863731417,240.0,24447.046877057848,5,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012435039762830682,16298.031251371898,4,2,4_0,4_0_0,4_2_0,4_0_1 -2721,2,56.0,0.0,2,111,890.0,,,52,52,0.0,0.0,,980.0,154.82943037711726,,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,103178,2,2,0,0,2,,550.0,400.0,43,2.0,2.0,4.0,2.0,1.5,1,1,181.70228370764477,890.0,53012.03863903211,1,1,2,3,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01848636696794449,35341.35909268807,9,5,9,9_0,9_2,9_0_1 -2722,2,70.0,0.0,2,111,336.0,,,0,78,0.0,0.0,,428.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,0,,2,,2,124131,2,1,0,0,2,,325.0,424.0,11,0.0,3.0,3.0,1.0,1.0,2,2,96.9362827321509,336.0,25932.84533288143,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016504166608255648,25932.84533288143,7,4,7,7_0,7_2,7_0_1 -2723,2,67.0,0.0,2,111,364.0,,,0,77,0.0,0.0,,502.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,2,,2,130226,2,2,0,0,2,,590.0,404.0,11,0.0,4.0,5.0,1.0,1.0,4,4,121.04989078651482,364.0,25062.209778703327,0,5,2,3,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020030157134291314,25062.209778703327,7,4,7,7_0,7_2,7_0_1 -2724,2,60.0,0.0,7,111,360.0,,,0,54,0.0,0.0,,429.0,118.70256328912323,,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,129303,2,2,0,0,2,,360.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,188.78446410211535,360.0,46178.16326788694,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00929010531474156,46178.16326788694,10,5,10,10_0,10_2,10_0_0 -2725,2,85.0,0.0,2,111,540.0,,,0,77,0.0,0.0,,678.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,2,114427,2,2,0,0,2,,640.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,110.48709333921502,540.0,9492.222896551724,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0714268941415503,9492.222896551724,1,1,1_0,1_1_0,1_2_0,1_0_1 -2726,2,51.0,0.0,5,111,800.0,,,54,46,0.0,0.0,,1030.0,395.67521096374406,,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,125679,2,1,0,0,2,,890.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,95.92052472787155,800.0,78697.99982446976,1,1,1,2,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013088007348310516,32790.83326019574,8,4,8,8_1,8_2,8_0_0 -2727,2,58.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,758.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,128128,2,2,0,0,2,,194.0,450.0,12,1.0,2.0,2.0,1.0,1.0,2,2,136.0510764596818,0.0,15907.754729642777,0,1,2,3,43.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04764971631021756,15907.754729642777,3,2,3_0,3_1_0,3_2_0,3_0_0 -2728,0,45.0,0.0,7,111,480.0,,,0,52,0.0,0.0,,710.0,395.67521096374406,,42,0,0,0,0,0,0,0,0,0,,1,,5,109090,2,2,0,0,2,,350.0,,32,2.0,2.0,4.0,3.0,1.8,1,1,116.69789537825717,480.0,33209.78551116871,0,4,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021379240759059448,18449.88083953817,4,2,4_0,4_1_0,4_2_0,4_0_0 -2729,2,54.0,0.0,5,111,375.0,,,42,69,0.0,0.0,,375.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,3,109507,2,2,0,0,2,,0.0,462.0,43,2.0,0.0,1.0,2.0,1.5,2,2,234.031931900244,375.0,8298.020194645,1,1,2,3,33.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04519150245524836,5532.013463096667,1,1,1_0,1_0_0,1_2_0,1_0_0 -2730,2,75.0,0.0,5,111,480.0,,,0,74,0.0,0.0,,480.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,3,107470,2,2,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,4,4,134.0016200104699,480.0,33685.891084515504,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014249289080574242,33685.891084515504,9,5,9,9_0,9_2,9_0_0 -2731,2,36.0,0.0,5,111,490.0,,,0,42,0.0,0.0,,565.0,129.02452531426437,,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,133263,2,2,0,0,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,113.1149230042783,490.0,38939.232850298285,0,1,1,2,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014509787652266804,29953.256038690986,8,4,8,8_0,8_2,8_0_0 -2732,1,29.0,350.0,5,111,360.0,,,0,56,0.0,0.0,,410.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,2,,3,126445,2,1,0,0,2,,0.0,600.0,32,1.0,0.0,2.0,2.0,1.3,1,1,94.19796545341046,360.0,9312.952991452992,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04402470412728159,7163.809993425379,1,1,1_1,1_0_1,1_2_1,1_0_0 -2733,0,57.0,0.0,2,111,550.0,,,0,43,0.0,0.0,,596.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,115026,2,2,0,0,2,,350.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,136.0510764596818,550.0,54972.0,0,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010841883140507895,54972.0,10,5,10,10_1,10_2,10_0_1 -2734,2,34.0,0.0,2,111,550.0,,,34,31,0.0,0.0,,596.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,129984,2,2,0,0,2,,450.0,900.0,43,2.0,1.0,3.0,2.0,1.5,2,2,120.06916558255071,550.0,37675.600385768674,1,1,3,4,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015819256863790526,25117.06692384578,7,4,7,7_0,7_2,7_0_1 -2735,0,41.0,0.0,2,111,480.0,,,21,55,0.0,0.0,,552.0,123.8635443016938,,42,0,0,0,0,0,0,0,0,2,1.0,1,,2,108810,2,2,0,0,2,,160.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,150.29876208987037,480.0,45640.08108167656,1,1,5,0,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012094632325743508,25355.600600931422,7,4,7,7_1,7_2,7_0_1 -2736,1,48.0,423.0,2,111,520.0,,,0,56,0.0,0.0,,616.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,1,10.0,1,,2,130706,2,2,0,0,2,,1200.0,668.0,32,2.0,0.0,4.0,4.0,2.1,2,2,121.37288824749191,520.0,16332.174222916368,0,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037716962334118635,7777.225820436365,1,1,1_1,1_1_1,1_2_1,1_0_1 -2737,2,59.0,0.0,2,111,240.0,,,0,85,0.0,0.0,,286.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,0,,1,,2,115539,2,2,0,0,2,,180.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,124.5686204616168,240.0,11156.0,0,5,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02563642882753675,11156.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -2738,1,31.0,430.0,5,111,580.0,,,0,54,0.0,0.0,,676.0,165.1513924022584,,10,0,0,0,0,0,0,0,0,0,,1,,3,105088,2,2,0,0,2,,670.0,600.0,32,1.0,0.0,3.0,4.0,1.9,2,2,95.05250929080366,580.0,17551.30705394191,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0385156500266557,9237.53002839048,1,1,1_1,1_1_1,1_2_1,1_0_0 -2739,2,83.0,0.0,2,111,760.0,,,0,77,0.0,0.0,,856.0,165.1513924022584,,71,0,0,0,0,0,0,0,0,0,,1,,2,108420,2,2,0,0,2,,650.0,,11,0.0,7.0,5.0,1.0,1.0,2,2,107.49900175150297,760.0,14286.902909233493,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0599150148522935,14286.902909233493,3,2,3_0,3_1_0,3_2_0,3_0_1 -2740,2,59.0,0.0,5,111,652.0,,,0,55,0.0,0.0,,782.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,1,,3,113505,2,2,0,0,2,,677.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,101.48953677927989,652.0,34684.63340095774,0,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022546007361819394,23123.088933971827,6,3,6,6_1,6_2,6_0_0 -2741,0,60.0,0.0,2,111,780.0,,,0,21,0.0,0.0,,870.0,154.82943037711726,,71,0,0,0,0,0,0,0,0,3,10.0,1,,2,126530,2,2,0,0,2,,440.0,,22,4.0,0.0,5.0,4.0,2.5,4,3,105.95626404215407,780.0,5110.0,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17025440313111545,2044.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -2742,2,53.0,0.0,9,111,890.0,,,0,46,0.0,0.0,,890.0,0.0,,44,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,109524,2,2,0,0,2,,1200.0,1289.0,32,1.0,1.0,4.0,2.0,1.5,1,1,177.20333369663055,890.0,35911.516236557654,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024783136254603103,23941.01082437177,6,3,6,6_0,6_2,6_0_0 -2743,2,57.0,0.0,6,111,780.0,,,52,38,0.0,0.0,,780.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,104102,2,2,0,0,2,,360.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,89.57505685088898,780.0,88483.91817879693,1,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008815161173399626,58989.27878586462,10,5,10,10_1,10_2,10_0_0 -2744,2,77.0,0.0,2,111,450.0,,,0,74,0.0,0.0,,624.0,299.3368987290934,,70,0,0,0,0,0,0,0,0,0,,1,,2,124200,2,1,0,0,2,,360.0,,11,0.0,2.0,4.0,1.0,1.0,6,3,182.90191770409137,450.0,56321.55612938512,0,5,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011079239333631181,56321.55612938512,10,5,10,10_1,10_2,10_0_1 -2745,2,31.0,0.0,5,111,700.0,,,0,54,0.0,0.0,,750.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,122798,2,2,0,0,2,,650.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,148.64199092873534,700.0,37216.40626950945,0,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020152402533676603,37216.40626950945,9,5,9,9_0,9_2,9_0_0 -2746,2,63.0,0.0,2,111,960.0,,,68,65,0.0,0.0,,1213.0,435.2427320601185,,71,0,0,0,0,0,0,0,0,3,90.0,1,,2,132310,2,1,0,0,2,,400.0,,43,3.0,3.0,3.0,3.0,2.0,2,2,111.28557025761023,960.0,47274.645028568884,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02565857446982337,23637.322514284442,6,3,6,6_1,6_2,6_0_1 -2747,2,81.0,0.0,9,111,0.0,,,0,77,0.0,0.0,,717.0,240.84578058662683,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,127040,2,1,0,0,2,,313.0,,11,0.0,0.0,3.0,1.0,1.0,4,4,74.51915975352809,0.0,13762.141814479523,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05209944859350489,13762.141814479523,3,2,3_0,3_1_0,3_2_0,3_0_0 -2748,0,63.0,0.0,2,111,364.0,,,0,77,0.0,0.0,,522.0,271.8116666620503,,50,0,0,0,0,0,0,0,0,0,,1,,2,130659,2,1,0,0,2,,480.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,177.90864243608564,364.0,7914.164510852761,0,5,5,0,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06595768881025621,7914.164510852761,1,1,1_0,1_1_0,1_2_0,1_0_1 -2749,1,27.0,353.0,5,111,0.0,,,0,56,0.0,0.0,,807.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,109160,2,2,0,0,2,,402.0,714.0,32,1.0,0.0,3.0,2.0,1.3,4,4,151.34856975789677,0.0,21771.49137585667,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037066822206535496,16747.301058351284,4,2,4_1,4_1_1,4_2_1,4_0_0 -2750,2,71.0,0.0,2,111,342.0,,,77,78,0.0,0.0,,522.0,309.6588607542345,,71,0,0,0,0,0,0,0,0,0,,1,,2,121803,1,3,0,0,2,,143.0,,41,0.0,3.0,3.0,2.0,1.5,4,4,117.9428548452591,342.0,14810.363636363638,6,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03524558969763188,9873.575757575758,2,1,2_0,2_1_0,2_2_0,2_0_1 -2751,2,42.0,0.0,5,111,360.0,,,0,52,0.0,0.0,,500.0,240.84578058662683,,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,130784,2,2,0,0,2,,504.0,458.0,32,1.0,0.0,3.0,3.0,1.6,2,2,162.4199888992323,360.0,37739.58871058662,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013248687044110292,23587.242944116635,6,3,6,6_0,6_2,6_0_0 -2752,2,87.0,0.0,2,111,465.0,,,0,77,0.0,0.0,,741.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,0,,1,,2,102116,2,1,0,0,1,,499.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,99.6964590069803,465.0,26593.7705246255,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027863668272005402,26593.7705246255,7,4,7,7_1,7_2,7_0_1 -2753,2,68.0,0.0,7,111,1768.0,,,0,77,0.0,0.0,,2320.0,949.6205063129859,,50,0,0,0,0,0,0,0,0,0,,2,,5,108619,2,1,0,0,2,,2148.0,,21,5.0,1.0,6.0,7.0,3.8,1,1,138.28376696881463,1768.0,81117.34006084558,0,5,1,2,136.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028600543339559498,21346.66843706463,6,3,6,6_0,6_2,6_0_0 -2754,2,69.0,0.0,2,111,369.0,,,0,74,0.0,0.0,,461.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,,2,117716,2,1,0,0,2,,304.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,121.71747711220694,369.0,102728.8341734393,0,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00448754240919043,68485.88944895954,10,5,10,10_1,10_2,10_0_1 -2755,2,68.0,0.0,2,111,369.0,,,0,74,0.0,0.0,,461.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,,2,105153,2,1,0,0,2,,304.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,142.12257708112236,369.0,50306.0,0,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009163916829006481,50306.0,10,5,10,10_1,10_2,10_0_1 -2756,0,46.0,0.0,6,111,1736.0,,,46,64,0.0,0.0,,1836.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,0,,2,,4,121461,2,1,0,0,2,,665.0,,43,2.0,0.0,3.0,4.0,2.3,3,3,168.4282101536857,1736.0,56667.5556698135,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032399491707351465,24638.06768252761,7,4,7,7_0,7_2,7_0_0 -2757,2,47.0,0.0,9,111,400.0,,,45,47,0.0,0.0,,610.0,361.26867087994026,,50,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,123162,2,1,0,0,2,,390.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,182.89398006287234,400.0,138424.0,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0044067502745188695,65916.19047619047,10,5,10,10_1,10_2,10_0_0 -2758,2,84.0,0.0,5,111,840.0,,,77,72,0.0,0.0,,1008.0,289.01493670395223,,71,0,0,0,0,0,0,0,0,0,,1,,3,113021,2,2,0,0,2,,1160.0,,41,0.0,6.0,3.0,2.0,1.5,2,2,64.00604498784894,840.0,21349.9127692306,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04721330765588538,14233.275179487066,3,2,3_0,3_1_0,3_2_0,3_0_0 -2759,2,47.0,0.0,2,111,1000.0,,,0,34,0.0,0.0,,1050.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,103368,2,3,0,0,2,,400.0,,32,1.0,2.0,4.0,2.0,1.5,3,3,142.41161699460315,1000.0,28931.798017762158,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036292248388965366,19287.86534517477,5,3,5,5_1,5_2,5_0_1 -2760,2,70.0,0.0,2,111,600.0,,,0,74,0.0,0.0,,680.0,137.62616033521533,,43,0,0,0,0,0,0,0,0,0,,1,,2,122027,1,3,0,0,2,,600.0,1259.0,11,0.0,2.0,5.0,1.0,1.0,1,1,245.6124384998736,600.0,68507.0,0,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009925992964222634,68507.0,10,5,10,10_1,10_2,10_0_1 -2761,2,80.0,0.0,8,111,280.0,,,0,75,0.0,0.0,,415.0,232.24414556567586,,50,0,0,0,0,0,0,0,0,0,,8,2001.0,6,118299,2,1,0,0,2,,182.0,400.0,11,0.0,0.0,2.0,1.0,1.0,3,3,185.4124630216456,280.0,17147.82722513089,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024201316852073208,17147.82722513089,4,2,4_0,4_0_0,4_2_0,4_0_0 -2762,2,40.0,0.0,6,111,855.0,,,54,53,0.0,0.0,,947.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,2,10.0,1,,4,114484,2,1,0,0,1,,0.0,147.0,43,2.0,0.0,4.0,4.0,2.1,1,1,159.7476791110959,855.0,58679.0,4,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01613865266960923,27942.38095238095,7,4,7,7_1,7_2,7_0_0 -2763,2,39.0,0.0,6,111,0.0,,,56,33,0.0,0.0,,1235.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,121383,1,1,0,0,2,,134.0,139.0,43,2.0,1.0,4.0,3.0,2.0,2,2,157.66281239446724,0.0,43474.28821572505,4,1,3,4,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028407595631509134,21737.144107862525,6,3,6,6_1,6_2,6_0_0 -2764,2,34.0,0.0,6,111,0.0,,,81,53,0.0,0.0,,512.0,0.0,,50,0,0,0,0,0,0,0,0,1,20.0,1,,4,124962,2,1,0,0,1,,0.0,146.0,43,2.0,0.0,4.0,4.0,2.1,1,1,227.64229373931454,0.0,42742.29985117151,4,1,3,4,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011978765807707625,20353.476119605482,5,3,5,5_1,5_2,5_0_0 -2765,2,80.0,0.0,9,111,750.0,,,74,72,0.0,0.0,,750.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,2008.0,6,107308,2,2,0,0,2,,323.0,1200.0,41,0.0,6.0,3.0,2.0,1.5,1,1,179.34754310064235,750.0,139206.17150189652,5,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005387692168445148,92804.11433459767,10,5,10,10_0,10_2,10_0_0 -2766,0,40.0,0.0,2,111,1240.0,,,0,56,0.0,0.0,,1332.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,0,,1,,2,111769,2,1,0,0,2,,1000.0,,32,1.0,2.0,4.0,2.0,1.3,4,2,137.4926129041652,1240.0,8832.517763238415,0,4,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15080637658538107,6794.244433260319,1,1,1_0,1_1_0,1_2_0,1_0_1 -2767,2,69.0,0.0,5,111,940.0,,,0,74,0.0,0.0,,1030.0,154.82943037711726,,71,0,0,0,0,0,0,0,0,0,,1,,3,109210,2,1,0,0,1,,600.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,231.40150787796225,940.0,62996.84817100332,0,5,0,1,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016350024325091497,62996.84817100332,10,5,10,10_1,10_2,10_0_0 -2768,2,81.0,0.0,1,111,1400.0,,,0,77,0.0,0.0,,1560.0,275.25232067043066,,71,0,0,0,0,0,0,0,0,0,,1,,1,117943,2,2,0,0,2,,600.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,125.5630312885297,1400.0,12119.26269983102,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12872070179828277,12119.26269983102,2,1,2_0,2_1_0,2_2_0,2_1_0 -2769,2,75.0,0.0,2,111,480.0,,,0,78,0.0,0.0,,756.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,0,,1,,2,113716,2,1,0,0,2,,678.0,,11,0.0,4.0,4.0,1.0,1.0,3,3,148.09405630664688,480.0,18399.729734566477,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04108756002974043,18399.729734566477,4,2,4_0,4_1_0,4_2_0,4_0_1 -2770,2,51.0,0.0,2,111,420.0,,,0,52,0.0,0.0,,420.0,0.0,,43,0,0,0,0,0,0,0,0,3,45.0,2,,2,124241,2,1,0,0,2,,300.0,700.0,32,1.0,1.0,3.0,2.0,1.5,1,1,318.6118531513027,420.0,33093.896166109276,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012691162076894188,22062.59744407285,6,3,6,6_0,6_2,6_0_1 -2771,2,87.0,0.0,2,111,580.0,,,0,74,0.0,0.0,,970.0,670.9275316341748,,10,0,0,0,0,0,0,0,0,0,,1,,2,110361,2,2,0,0,2,,1224.0,,21,1.0,4.0,6.0,2.0,1.5,1,1,142.4807160845778,580.0,51580.458613129755,0,5,0,1,149.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01880557145246257,34386.97240875317,9,5,9,9_1,9_2,9_0_1 -2772,2,48.0,0.0,2,111,0.0,,,0,21,0.0,0.0,,857.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,2,106264,2,1,0,0,2,,397.0,450.0,12,1.0,2.0,2.0,1.0,1.0,1,1,127.0332339516811,0.0,7481.842057929631,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11454398440444336,7481.842057929631,1,1,1_0,1_0_0,1_2_0,1_0_1 -2773,2,87.0,0.0,5,111,181.0,,,77,77,0.0,0.0,,457.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,1,,3,128913,2,1,0,0,2,,197.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,79.91271218884441,181.0,30440.575479066698,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015012856781050958,20293.716986044466,5,3,5,5_1,5_2,5_0_0 -2774,2,55.0,0.0,9,111,812.0,,,56,63,0.0,0.0,,858.0,79.13504219274881,,12,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,117961,2,1,0,0,1,,420.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,144.5131357967152,812.0,42026.0,1,1,1,2,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020415932993860943,28017.333333333332,7,4,7,7_1,7_2,7_0_0 -2775,2,42.0,0.0,9,111,900.0,,,54,46,0.0,0.0,,969.0,118.70256328912323,,12,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,111866,2,1,0,0,2,,386.0,1100.0,43,2.0,2.0,4.0,3.0,1.8,2,2,222.46627180245179,900.0,95215.473824893,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010176917270632392,52897.485458273884,10,5,10,10_0,10_2,10_0_0 -2776,2,72.0,0.0,6,111,440.0,,,77,77,0.0,0.0,,716.0,474.81025315649293,,42,0,0,0,0,0,0,0,0,0,,2,,4,121268,2,2,0,0,2,,542.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,82.88586441541561,440.0,39776.75059260255,5,5,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01800046482764124,26517.8337284017,7,4,7,7_0,7_2,7_0_0 -2777,2,46.0,0.0,9,111,0.0,,,0,21,0.0,0.0,,69.0,118.70256328912323,,20,0,0,0,0,0,0,0,0,0,,2,2006.0,6,102632,2,1,0,0,2,,0.0,650.0,12,1.0,3.0,5.0,1.0,1.0,2,1,148.64199092873534,0.0,15434.75787189315,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004470429699817299,15434.75787189315,3,2,3_0,3_0_0,3_2_0,3_0_0 -2778,1,54.0,400.0,5,111,464.0,,,0,81,0.0,0.0,,648.0,316.54016877099525,,50,0,0,0,0,0,0,0,0,0,,2,,3,131811,2,2,0,0,2,,450.0,600.0,32,1.0,2.0,3.0,3.0,1.6,3,3,85.13349351124295,464.0,5110.0,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12681017612524462,3193.75,1,1,1_1,1_0_1,1_2_1,1_0_0 -2779,2,49.0,0.0,9,111,0.0,,,0,34,0.0,0.0,,837.0,0.0,,20,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,115436,2,2,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,242.11753096194408,0.0,51763.0,0,1,1,2,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016169851051909667,51763.0,10,5,10,10_0,10_2,10_0_0 -2780,2,51.0,0.0,2,111,385.0,,,0,33,0.0,0.0,,477.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,129057,1,2,0,0,1,,207.0,,12,1.0,1.0,8.0,1.0,1.0,1,1,200.0716816796159,385.0,53745.8053655463,0,1,1,2,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00887511121576346,53745.8053655463,10,5,10,10_1,10_2,10_0_1 -2781,1,53.0,253.0,5,111,138.0,,,0,63,0.0,0.0,,184.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,0,,2,,3,124123,1,2,0,0,2,,0.0,497.0,12,1.0,2.0,1.0,1.0,1.0,1,1,185.1683170243034,138.0,6683.507417077015,0,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02753045497187031,6683.507417077015,1,1,1_1,1_0_1,1_2_1,1_0_0 -2782,1,57.0,212.0,2,111,360.0,,,0,67,0.0,0.0,,498.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,8,,2,110379,2,2,0,0,1,,320.0,223.0,12,1.0,3.0,1.0,1.0,1.0,4,4,185.26674093152425,360.0,7219.070757337875,0,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06898394776000837,7219.070757337875,1,1,1_1,1_0_1,1_2_1,1_0_1 -2783,2,43.0,0.0,2,111,228.0,,,33,52,0.0,0.0,,228.0,0.0,,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,122584,2,2,0,0,2,,220.0,560.0,43,2.0,0.0,3.0,3.0,1.8,1,1,93.07122028025206,228.0,50712.081239759886,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004495970081015739,28173.378466533268,8,4,8,8_0,8_2,8_0_1 -2785,2,63.0,0.0,1,111,284.0,,,0,77,0.0,0.0,,424.0,240.84578058662683,,12,0,0,0,0,0,0,0,0,0,,1,,1,115148,2,1,0,0,2,,463.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,135.3949421846881,284.0,19389.45623141272,0,5,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021867554971092,19389.45623141272,5,3,5,5_1,5_2,5_1_0 -2786,2,78.0,0.0,1,111,250.0,,,0,78,0.0,0.0,,391.0,242.56610759081704,,12,0,0,0,0,0,0,0,0,0,,1,,1,128014,2,2,0,0,2,,272.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,88.28248222489471,250.0,12917.63418513778,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030268700475344013,12917.63418513778,2,1,2_0,2_1_0,2_2_0,2_1_0 -2787,2,65.0,0.0,1,111,1008.0,,,47,31,0.0,0.0,,1146.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,1,3.0,1,,1,121507,2,1,0,0,2,,740.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,140.50719943700457,1008.0,169283.38953648912,1,1,0,1,122.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006769713219577159,84641.69476824456,10,5,10,10_1,10_2,10_1_0 -2789,1,46.0,355.0,7,111,564.0,,,0,55,0.0,0.0,,612.0,82.5756962011292,,41,0,0,0,0,0,0,0,0,0,,2,,5,113788,2,1,0,0,2,,500.0,344.0,32,1.0,1.0,3.0,2.0,1.5,2,2,94.39396462533622,564.0,14728.62137752817,0,4,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04155175045328709,9819.080918352114,2,1,2_1,2_0_1,2_2_1,2_0_0 -2790,1,28.0,64.0,7,111,0.0,,,0,46,0.0,0.0,,594.0,0.0,,60,0,0,0,0,0,0,0,0,2,15.0,8,,5,110119,2,1,0,0,2,,442.0,378.0,12,1.0,0.0,2.0,1.0,1.0,5,5,105.25466302618503,0.0,16286.164074662687,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03647267688553621,16286.164074662687,4,2,4_1,4_0_1,4_2_1,4_0_0 -2791,2,44.0,0.0,7,111,278.0,,,0,43,0.0,0.0,,324.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,2,10.0,2,,5,128259,1,1,0,0,2,,300.0,277.0,12,1.0,0.0,2.0,1.0,1.0,3,2,119.06218814803664,278.0,29918.77760438992,0,1,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01082931944226425,29918.77760438992,8,4,8,8_0,8_2,8_0_0 -2792,2,83.0,0.0,2,111,456.0,,,0,77,0.0,0.0,,564.0,185.7953164525407,,10,0,0,0,0,0,0,0,0,0,,2,,2,117255,1,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,91.9200906288319,456.0,27560.078438367345,0,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020464382975588197,27560.078438367345,7,4,7,7_0,7_2,7_0_1 -2793,2,84.0,0.0,2,111,0.0,,,0,74,0.0,0.0,,1128.0,79.13504219274881,,44,0,0,0,0,0,0,0,0,0,,2,,2,122014,2,2,0,0,2,,246.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,116.5634748249648,0.0,49619.78042095261,0,5,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022732869642520366,49619.78042095261,10,5,10,10_0,10_2,10_0_1 -2794,2,65.0,0.0,5,111,630.0,,,0,86,0.0,0.0,,814.0,316.54016877099525,,10,0,0,0,0,0,0,0,0,0,,1,,3,106091,2,2,0,0,2,,1100.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,118.68643521005032,630.0,15761.202506772597,0,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05164580555641131,15761.202506772597,3,2,3_0,3_1_0,3_2_0,3_0_0 -2796,1,51.0,357.0,1,111,324.0,,,0,85,0.0,0.0,,393.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,0,,8,,1,112325,2,3,0,0,2,,300.0,500.0,31,1.0,5.0,3.0,2.0,1.5,3,3,121.86764974202893,324.0,5110.0,0,6,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07690802348336595,3406.6666666666665,1,1,1_1,1_0_1,1_2_1,1_1_0 -2797,1,75.0,150.0,2,111,350.0,,,0,71,0.0,0.0,,350.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,2,131751,2,2,0,0,2,,102.0,320.0,11,0.0,5.0,2.0,1.0,1.0,2,2,90.29447291898086,350.0,5611.911464245176,0,5,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06236734172125368,5611.911464245176,1,1,1_1,1_0_1,1_2_1,1_0_1 -2798,1,91.0,390.0,1,111,360.0,,,0,86,0.0,0.0,,452.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,0,,1,,1,116677,2,3,0,0,2,,800.0,550.0,21,2.0,0.0,4.0,3.0,2.0,2,2,103.49119559611681,360.0,5110.0,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08845401174168298,2555.0,1,1,1_1,1_1_1,1_2_1,1_1_0 -2799,2,83.0,0.0,2,111,700.0,,,0,78,0.0,0.0,,976.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,2,120160,2,2,0,0,2,,800.0,,21,3.0,9.0,7.0,5.0,3.0,3,3,113.68428904216536,700.0,12102.109112361637,0,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08064709968637367,4034.0363707872125,1,1,1_0,1_1_0,1_2_0,1_0_1 -2800,1,35.0,149.0,1,111,409.0,,,0,56,0.0,0.0,,432.0,39.567521096374406,,30,0,0,0,0,0,0,0,0,0,,1,,1,125481,1,3,0,0,2,,256.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,128.834881309353,409.0,9430.994944671203,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.045806407758079974,9430.994944671203,1,1,1_1,1_1_1,1_2_1,1_1_0 -2801,1,40.0,155.0,7,111,773.0,,,0,43,0.0,0.0,,819.0,79.13504219274881,,12,0,0,0,0,0,0,0,0,0,,2,,5,124472,2,3,0,0,2,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,2,2,185.1683170243034,773.0,12742.294381625114,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0642741389793215,12742.294381625114,2,1,2_1,2_0_1,2_2_1,2_0_0 -2802,2,101.0,0.0,1,111,384.0,,,0,74,0.0,0.0,,728.0,591.7924894414259,,10,0,0,0,0,0,0,0,0,0,,2,,1,111248,2,1,0,0,2,,342.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,179.7917333356319,384.0,32871.824481364194,0,5,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022146625917059157,32871.824481364194,8,4,8,8_0,8_2,8_1_0 -2803,2,32.0,0.0,2,111,570.0,,,42,47,0.0,0.0,,708.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,2,,2,117756,2,1,0,0,2,,400.0,690.0,43,2.0,0.0,2.0,2.0,1.5,4,3,172.48074781697255,570.0,40207.843470337335,4,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01760850468198612,26805.22898022489,7,4,7,7_0,7_2,7_0_1 -2804,2,53.0,0.0,2,111,2400.0,,,63,45,0.0,0.0,,2400.0,0.0,,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,100993,2,1,0,0,2,,600.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,166.18183801207084,2400.0,98637.83973547345,1,1,1,2,260.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02433143311366419,46970.39987403497,10,5,10,10_1,10_2,10_0_1 -2806,1,30.0,356.0,6,111,413.0,,,0,63,0.0,0.0,,505.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,1,15.0,1,,4,130179,2,1,0,0,2,,500.0,500.0,32,1.0,1.0,3.0,2.0,1.3,2,2,119.76000018324545,413.0,23414.0,0,1,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021568292474587854,18010.76923076923,4,2,4_1,4_1_1,4_2_1,4_0_0 -2807,1,53.0,254.0,1,111,159.0,,,0,63,0.0,0.0,,251.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,0,,2,,1,122666,2,3,0,0,2,,455.0,356.0,12,1.0,0.0,2.0,1.0,1.0,3,3,111.03551464362843,159.0,612.4243783873345,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.409846519599604,612.4243783873345,1,1,1_1,1_0_1,1_2_1,1_1_0 -2808,2,48.0,0.0,8,111,257.0,,,0,90,0.0,0.0,,326.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,2,20.0,8,2000.0,6,130409,2,1,0,0,2,,289.0,330.0,12,1.0,0.0,2.0,1.0,1.0,2,2,147.2030123224934,257.0,25494.800272095046,0,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01278692111806102,25494.800272095046,7,4,7,7_0,7_2,7_0_0 -2809,2,42.0,0.0,7,111,500.0,,,0,21,0.0,0.0,,660.0,275.25232067043066,,12,0,0,0,0,0,0,0,0,0,,2,,5,119862,2,2,0,0,2,,260.0,509.0,32,1.0,2.0,2.0,2.0,1.5,2,2,163.37496342034376,500.0,20411.287997138614,0,1,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0323350491204927,13607.525331425742,3,2,3_0,3_0_0,3_2_0,3_0_0 -2810,2,75.0,0.0,2,111,240.0,,,0,78,0.0,0.0,,309.0,118.70256328912323,,43,0,0,0,0,0,0,0,0,0,,2,,2,119069,1,3,0,0,2,,0.0,365.0,11,0.0,3.0,2.0,1.0,1.0,2,2,131.8306194529527,240.0,18358.518625836357,0,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01683142340064069,18358.518625836357,4,2,4_0,4_0_0,4_2_0,4_0_1 -2811,1,47.0,250.0,2,111,208.0,,,0,85,0.0,0.0,,254.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,0,,2,,2,108690,2,2,0,0,2,,0.0,350.0,11,0.0,0.0,1.0,1.0,1.0,1,1,183.21354936511705,208.0,12605.80921205761,0,7,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020149440287978174,12605.80921205761,2,1,2_1,2_0_1,2_2_1,2_0_1 -2812,2,70.0,0.0,1,111,480.0,,,0,77,0.0,0.0,,526.0,79.13504219274881,,42,0,0,0,0,0,0,0,0,0,,2,,1,109454,2,1,0,0,2,,426.0,396.0,11,0.0,2.0,3.0,1.0,1.0,2,2,97.49076290778572,480.0,35789.0,0,5,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014697253346000168,35789.0,9,5,9,9_0,9_2,9_1_0 -2813,2,33.0,0.0,2,111,360.0,,,53,55,0.0,0.0,,406.0,79.13504219274881,,31,0,0,0,0,0,0,0,0,1,15.0,2,,2,112441,1,2,0,0,2,,0.0,430.0,43,2.0,0.0,2.0,2.0,1.5,2,2,121.59676621852934,360.0,17677.606808572273,4,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02296690974047015,11785.071205714848,2,1,2_0,2_0_0,2_2_0,2_0_1 -2814,2,35.0,0.0,2,111,300.0,,,0,52,0.0,0.0,,369.0,118.70256328912323,,31,0,0,0,0,0,0,0,0,3,20.0,1,,2,105913,1,3,0,0,2,,360.0,690.0,12,1.0,0.0,3.0,1.0,1.0,1,1,123.62762057921506,300.0,34963.65008225681,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010553818011903122,34963.65008225681,9,5,9,9_1,9_2,9_0_1 -2815,1,29.0,357.0,2,111,0.0,,,0,54,0.0,0.0,,709.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,2,130512,2,2,0,0,2,,340.0,600.0,32,1.0,2.0,3.0,2.0,1.3,2,2,87.14003888012536,0.0,2529.348723829295,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.28030931176884655,1945.652864484073,1,1,1_1,1_1_1,1_2_1,1_0_1 -2816,1,35.0,254.0,2,111,360.0,,,67,56,0.0,0.0,,383.0,39.567521096374406,,12,0,0,0,0,0,0,0,0,3,30.0,8,,2,129623,2,1,0,0,2,,300.0,241.0,43,2.0,0.0,1.0,2.0,1.5,2,2,203.57645825595648,360.0,15405.180663497913,4,1,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024861766204891472,10270.120442331941,2,1,2_1,2_0_1,2_2_1,2_0_1 -2818,1,26.0,200.0,2,111,0.0,,,0,55,0.0,0.0,,461.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,2,111792,2,2,0,0,2,,343.0,400.0,22,2.0,0.0,2.0,2.0,1.5,2,2,119.03500681841622,0.0,4842.937674441351,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0951901575014958,3228.625116294234,1,1,1_1,1_0_1,1_2_1,1_0_1 -2819,2,39.0,0.0,2,111,420.0,,,21,55,0.0,0.0,,581.0,276.9726476746209,,20,0,0,0,0,0,0,0,0,3,10.0,2,,2,123660,2,2,0,0,2,,0.0,619.0,43,2.0,0.0,3.0,3.0,1.8,1,1,137.17810322572993,420.0,18355.324854374627,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03165294020179273,10197.402696874793,2,1,2_0,2_0_0,2_2_0,2_0_1 -2820,2,66.0,0.0,1,111,260.0,,,78,72,0.0,0.0,,306.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,0,,1,,1,104787,1,3,0,0,2,,400.0,,41,0.0,8.0,2.0,2.0,1.5,3,2,115.28344563792879,260.0,56141.31403639235,7,5,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0054505314891924745,37427.54269092823,9,5,9,9_1,9_2,9_1_0 -2821,0,57.0,0.0,2,111,500.0,,,0,22,0.0,0.0,,608.0,185.7953164525407,,70,0,0,0,0,0,0,0,0,1,1.0,1,,2,100655,2,2,0,0,2,,490.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,78.77945560155895,500.0,8538.693414570018,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07120527350970793,8538.693414570018,1,1,1_0,1_1_0,1_2_0,1_0_1 -2822,1,26.0,215.0,2,111,576.0,,,53,90,0.0,0.0,,668.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,2,,2,129656,2,2,0,0,2,,581.0,230.0,43,2.0,2.0,3.0,3.0,1.8,1,1,97.30278481369292,576.0,30267.457738831672,1,1,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022069907745934956,16815.254299350927,4,2,4_1,4_0_1,4_2_1,4_0_1 -2823,2,97.0,0.0,1,111,349.0,,,0,77,0.0,0.0,,487.0,237.40512657824647,,60,0,0,0,0,0,0,0,0,0,,1,,1,105369,2,2,0,0,2,,300.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,93.32963377250418,349.0,10560.63829791857,0,7,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04611463684879582,10560.63829791857,2,1,2_0,2_1_0,2_2_0,2_1_0 -2824,1,34.0,337.0,6,111,390.0,,,0,43,0.0,0.0,,459.0,118.70256328912323,,60,0,0,0,0,0,0,0,0,3,20.0,1,,4,111951,2,2,0,0,2,,380.0,550.0,32,1.0,0.0,4.0,2.0,1.3,1,1,100.72061734802263,390.0,9389.22723484819,0,1,2,3,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04888581227392367,7222.482488344761,1,1,1_1,1_1_1,1_2_1,1_0_0 -2825,1,50.0,253.0,1,111,0.0,,,0,55,0.0,0.0,,1871.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,1,116249,2,1,0,0,2,,494.0,300.0,12,1.0,2.0,3.0,1.0,1.0,1,1,84.57328234324986,0.0,6573.323218900845,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.28463532640843703,6573.323218900845,1,1,1_1,1_1_1,1_2_1,1_1_0 -2826,2,66.0,0.0,1,111,256.0,,,0,75,0.0,0.0,,302.0,79.13504219274881,,31,0,0,0,0,0,0,0,0,0,,1,,1,133474,2,2,0,0,2,,360.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,106.0922323827217,256.0,39410.99759873414,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00766283571592971,39410.99759873414,9,5,9,9_1,9_2,9_1_0 -2827,2,54.0,0.0,2,111,404.0,,,52,63,0.0,0.0,,542.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,3,60.0,1,,2,118174,1,2,0,0,2,,374.0,502.0,43,2.0,0.0,3.0,2.0,1.5,2,2,83.64221708056681,404.0,34895.79028624113,1,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015531959458551143,23263.860190827418,6,3,6,6_1,6_2,6_0_1 -2828,2,66.0,0.0,6,111,608.0,,,54,74,0.0,0.0,,698.0,154.82943037711726,,50,0,0,0,0,0,0,0,0,0,,1,,4,127293,2,2,0,0,2,,402.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,178.66583018083014,608.0,76592.20473079669,1,5,0,1,144.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009113198953513655,51061.46982053112,10,5,10,10_1,10_2,10_0_0 -2829,2,50.0,0.0,9,111,480.0,,,56,52,0.0,0.0,,526.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,114738,2,1,0,0,2,,300.0,,43,2.0,1.0,4.0,2.0,1.5,3,3,219.27889552545665,480.0,35109.73323602947,4,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014981600585339136,23406.488824019645,6,3,6,6_1,6_2,6_0_0 -2830,2,46.0,0.0,5,111,600.0,,,0,46,0.0,0.0,,646.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,30.0,2,,3,100548,2,1,0,0,2,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,203.34033121222714,600.0,16855.890052356022,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03832488216246437,16855.890052356022,4,2,4_0,4_0_0,4_2_0,4_0_0 -2831,2,91.0,0.0,6,111,700.0,,,0,75,0.0,0.0,,867.0,287.294609699762,,31,0,0,0,0,0,0,0,0,0,,1,,4,111658,2,1,0,0,2,,426.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,231.40150787796225,700.0,63544.53977821994,0,5,0,1,163.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013643973235559832,63544.53977821994,10,5,10,10_1,10_2,10_0_0 -2832,2,48.0,0.0,2,111,420.0,,,0,21,0.0,0.0,,558.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,2,107795,1,2,0,0,2,,200.0,300.0,12,1.0,4.0,3.0,1.0,1.0,2,2,95.64474255907994,420.0,4447.65450943832,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12545938512442326,4447.65450943832,1,1,1_0,1_1_0,1_2_0,1_0_1 -2833,2,52.0,0.0,1,111,360.0,,,0,54,0.0,0.0,,498.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,2,,1,119059,2,3,0,0,2,,700.0,80.0,22,3.0,0.0,4.0,3.0,2.0,2,2,137.55963925121577,360.0,24409.669485757408,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020401751047492627,12204.834742878704,2,1,2_0,2_0_0,2_2_0,2_1_0 -2834,2,48.0,0.0,2,111,340.0,,,0,52,0.0,0.0,,363.0,39.567521096374406,,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,117365,1,2,0,0,2,,320.0,305.0,12,1.0,0.0,4.0,1.0,1.0,1,1,122.42681339539426,340.0,30064.508252916647,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012074037497845464,30064.508252916647,8,4,8,8_0,8_2,8_0_1 -2835,2,66.0,0.0,1,111,186.0,,,0,55,0.0,0.0,,324.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,1,129347,1,2,0,0,2,,255.0,,22,2.0,2.0,4.0,2.0,1.5,1,1,104.48993766980698,186.0,12378.423533163677,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02617457700748038,8252.282355442452,1,1,1_0,1_1_0,1_2_0,1_1_0 -2836,2,64.0,0.0,1,111,528.0,,,0,77,0.0,0.0,,666.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,2,,1,121422,1,2,0,0,2,,432.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,114.07250125807525,528.0,14883.476849225313,0,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04474760882465883,14883.476849225313,3,2,3_0,3_0_0,3_2_0,3_1_0 -2837,2,56.0,0.0,1,111,264.0,,,0,68,0.0,0.0,,540.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,3,15.0,2,,1,105610,1,1,0,0,2,,350.0,500.0,12,1.0,5.0,3.0,1.0,1.0,2,2,82.3629489047517,264.0,18721.244084340204,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028844236930370182,18721.244084340204,5,3,5,5_0,5_2,5_1_0 -2838,0,44.0,0.0,1,111,780.0,,,42,47,0.0,0.0,,780.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,109884,1,3,0,0,2,,496.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,114.07250125807525,780.0,29569.254065628815,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02637875132963428,14784.627032814407,3,2,3_0,3_0_0,3_2_0,3_1_0 -2839,2,77.0,0.0,5,111,720.0,,,0,77,0.0,0.0,,858.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,3,117821,2,3,0,0,2,,380.0,272.0,11,0.0,0.0,3.0,1.0,1.0,2,2,98.25982202264659,720.0,9996.196078431372,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08583265006688819,9996.196078431372,2,1,2_0,2_1_0,2_2_0,2_0_0 -2840,1,54.0,351.0,5,111,0.0,,,0,81,0.0,0.0,,120.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,1,,3,126456,2,3,0,0,2,,0.0,421.0,32,1.0,0.0,3.0,3.0,2.0,2,2,79.11894908604435,0.0,9136.34188034188,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013134359634483119,4568.17094017094,1,1,1_1,1_1_1,1_2_1,1_0_0 -2841,2,81.0,0.0,1,111,138.0,,,0,72,0.0,0.0,,276.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,1,105065,1,2,0,0,2,,80.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,88.28248222489471,138.0,14932.8934169279,0,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01848268733285988,14932.8934169279,3,2,3_0,3_1_0,3_2_0,3_1_0 -2842,1,69.0,309.0,1,111,180.0,,,86,78,0.0,0.0,,456.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,0,,1,,1,115591,1,2,0,0,2,,335.0,450.0,41,0.0,4.0,2.0,3.0,2.0,2,2,123.03963967490203,180.0,27422.6756780218,6,5,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.016628574299387792,13711.3378390109,3,2,3_1,3_1_1,3_2_1,3_1_0 -2843,2,64.0,0.0,9,111,600.0,,,77,43,0.0,0.0,,738.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,126199,1,1,0,0,2,,217.0,,42,2.0,3.0,5.0,3.0,2.0,1,1,124.57338059697291,600.0,75061.00649830127,5,1,1,2,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009832002452787546,37530.503249150635,9,5,9,9_1,9_2,9_0_0 -2844,1,80.0,250.0,2,111,0.0,,,0,86,0.0,0.0,,459.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,1,,2,131261,1,2,0,0,2,,540.0,400.0,11,0.0,4.0,2.0,1.0,1.0,1,1,123.03963967490203,0.0,10877.759849506474,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04219618803414059,10877.759849506474,2,1,2_1,2_1_1,2_2_1,2_0_1 -2845,1,58.0,253.0,7,111,550.0,,,0,85,0.0,0.0,,790.0,412.878481005646,,12,0,0,0,0,0,0,0,0,0,,2,,5,132517,2,2,0,0,2,,350.0,389.0,11,0.0,2.0,4.0,1.0,1.0,1,1,92.43758876705668,550.0,5110.0,0,7,2,3,103.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15459882583170254,5110.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -2846,2,49.0,0.0,7,111,540.0,,,56,63,0.0,0.0,,816.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,2,20.0,2,,5,112815,2,1,0,0,2,,700.0,330.0,43,3.0,2.0,5.0,4.0,2.3,2,2,110.93794272474715,540.0,11587.052631578947,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07042343087111749,5037.848970251716,1,1,1_0,1_0_0,1_2_0,1_0_0 -2847,2,69.0,0.0,6,111,300.0,,,78,78,0.0,0.0,,438.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,4,118963,1,2,0,0,2,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,82.9526975985794,300.0,17928.7665658228,5,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024430012984549058,11952.511043881866,2,1,2_0,2_1_0,2_2_0,2_0_0 -2848,0,43.0,0.0,5,111,1200.0,,,53,21,0.0,0.0,,1338.0,237.40512657824647,,60,0,0,0,0,0,0,0,0,2,5.0,3,,3,106968,2,1,0,0,2,,1100.0,,43,2.0,0.0,2.0,3.0,2.0,1,1,127.1371172544304,1200.0,21576.836533329635,1,1,5,0,19.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.062010943908908885,10788.418266664818,2,1,2_0,2_0_0,2_2_0,2_0_0 -2849,2,56.0,0.0,7,111,480.0,,,67,69,0.0,0.0,,756.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,5,110215,2,3,0,0,2,,400.0,316.0,43,2.0,0.0,3.0,4.0,2.5,2,2,84.57328234324986,480.0,17222.157676348546,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04389693871158934,6888.863070539419,1,1,1_0,1_1_0,1_2_0,1_0_0 -2850,1,44.0,139.0,7,111,949.0,,,56,69,0.0,0.0,,1087.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,3,30.0,1,,5,128403,1,1,0,0,2,,300.0,415.0,43,3.0,0.0,4.0,4.0,2.3,2,2,110.1462641611034,949.0,44916.0905858371,1,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024200681444496684,19528.73503732048,5,3,5,5_1,5_2,5_0_0 -2852,1,39.0,370.0,5,111,0.0,,,0,68,0.0,0.0,,295.0,481.69156117325366,,20,0,0,0,0,0,0,0,0,1,10.0,1,,3,117410,1,2,0,0,2,,298.0,400.0,32,1.0,0.0,3.0,2.0,1.3,2,2,180.86036538230962,0.0,5682.260439623695,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05191595899809482,4370.969568941304,1,1,1_1,1_1_1,1_2_1,1_0_0 -2853,1,57.0,280.0,1,111,360.0,,,78,85,0.0,0.0,,492.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,,1,130307,2,2,0,0,2,,180.0,500.0,41,0.0,2.0,3.0,2.0,1.5,2,2,94.07635261167295,360.0,22322.006107489513,5,7,3,4,69.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.022041029718871164,14881.337404993008,3,2,3_1,3_1_1,3_2_1,3_1_0 -2854,2,66.0,0.0,2,111,390.0,,,90,74,0.0,0.0,,528.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,2,131468,1,1,0,0,2,,657.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,99.43715162594381,390.0,28065.486444484188,4,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01881314264922601,18710.324296322793,5,3,5,5_1,5_2,5_0_1 -2855,2,50.0,0.0,5,111,980.0,,,0,63,0.0,0.0,,1030.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,0,,8,,3,117403,2,2,0,0,2,,600.0,419.0,12,1.0,0.0,4.0,1.0,1.0,2,2,102.76784610081405,980.0,21274.03837312866,0,4,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04841581941024408,21274.03837312866,6,3,6,6_0,6_2,6_0_0 -2856,0,51.0,0.0,2,111,720.0,,,0,56,0.0,0.0,,870.0,258.04905062852873,,60,0,0,0,0,0,0,0,0,3,30.0,1,,2,128633,2,2,0,0,2,,260.0,,32,2.0,2.0,3.0,2.0,1.5,1,1,78.77945560155895,720.0,34591.96482172812,0,1,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025150349350885386,23061.30988115208,6,3,6,6_1,6_2,6_0_1 -2857,1,30.0,281.0,5,111,390.0,,,0,56,0.0,0.0,,440.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,2,15.0,8,,3,133112,2,2,0,0,2,,340.0,350.0,32,1.0,0.0,3.0,2.0,1.3,2,2,93.39747520297047,390.0,13052.579577248787,0,1,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03370981171928184,10040.445828652913,2,1,2_1,2_0_1,2_2_1,2_0_0 -2858,2,61.0,0.0,6,111,0.0,,,0,53,0.0,0.0,,158.0,0.0,,41,0,0,0,0,0,0,0,0,1,40.0,2,,4,106974,2,1,0,0,2,,394.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,104.9478707801438,0.0,25380.704368317667,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006225201543154528,25380.704368317667,7,4,7,7_0,7_2,7_0_0 -2859,1,38.0,467.0,2,111,0.0,,,0,81,0.0,0.0,,1217.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,2,127307,2,2,0,0,2,,1246.0,650.0,32,3.0,0.0,3.0,5.0,2.5999999999999996,3,2,93.07122028025206,0.0,11893.749335295623,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10232265416830824,4574.518975113701,1,1,1_1,1_1_1,1_2_1,1_0_1 -2860,2,80.0,0.0,2,111,910.0,,,0,75,0.0,0.0,,910.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,2,108671,2,1,0,0,2,,279.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,129.29863807766313,910.0,27412.068154632194,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033197057400655296,27412.068154632194,7,4,7,7_0,7_2,7_0_1 -2861,0,28.0,0.0,5,111,0.0,,,33,38,0.0,0.0,,907.0,0.0,,60,0,0,0,0,0,0,0,0,2,60.0,2,,3,119727,2,3,0,0,2,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,109.50339051971214,0.0,64511.46007812968,1,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014059517470253104,43007.640052086455,9,5,9,9_0,9_2,9_0_0 -2862,0,29.0,0.0,2,111,390.0,,,0,67,0.0,0.0,,438.0,82.5756962011292,,31,0,0,0,0,0,0,0,0,0,,1,,2,112508,2,2,0,0,2,,220.0,,22,2.0,0.0,3.0,2.0,1.5,1,1,93.69440024727459,390.0,17500.602205451527,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025027710181513684,11667.068136967684,2,1,2_0,2_1_0,2_2_0,2_0_1 -2863,0,51.0,0.0,2,111,579.0,,,0,53,0.0,0.0,,855.0,474.81025315649293,,44,0,0,0,0,0,0,0,0,0,,1,,2,120293,2,2,0,0,2,,450.0,,32,3.0,0.0,4.0,4.0,2.3,1,1,104.5245872425849,579.0,19459.0,0,4,5,0,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0439385374376895,8460.434782608696,1,1,1_0,1_1_0,1_2_0,1_0_1 -2864,2,80.0,0.0,5,111,1400.0,,,0,72,0.0,0.0,,1561.0,276.9726476746209,,33,0,0,0,0,0,0,0,0,0,,1,,3,131141,2,1,0,0,2,,300.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,88.60697507084384,1400.0,32043.0,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048715788159660454,21362.0,6,3,6,6_1,6_2,6_0_0 -2865,2,73.0,0.0,2,111,670.0,,,0,72,0.0,0.0,,745.0,129.02452531426437,,41,0,0,0,0,0,0,0,0,0,,1,,2,103156,2,2,0,0,2,,270.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,87.69514282113784,670.0,9420.699617834394,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07908117552008931,9420.699617834394,1,1,1_0,1_1_0,1_2_0,1_0_1 -2866,1,24.0,413.0,5,111,0.0,,,0,68,0.0,0.0,,514.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,0,,2,,3,124979,2,2,0,0,2,,0.0,700.0,22,2.0,0.0,4.0,4.0,2.5,1,1,111.70702888756522,0.0,30261.319869257917,0,1,2,3,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016985379428944406,12104.527947703167,2,1,2_1,2_0_1,2_2_1,2_0_0 -2867,1,40.0,120.0,2,111,640.0,,,0,63,0.0,0.0,,690.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,1,,2,112936,2,2,0,0,2,,450.0,430.0,12,1.0,0.0,3.0,1.0,1.0,3,2,111.28557025761023,640.0,24596.478891920477,0,4,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02805279580999918,24596.478891920477,7,4,7,7_1,7_2,7_0_1 -2868,0,49.0,0.0,2,111,900.0,,,0,55,0.0,0.0,,1050.0,258.04905062852873,,44,0,0,0,0,0,0,0,0,2,15.0,1,,2,117211,2,2,0,0,2,,450.0,,32,2.0,0.0,4.0,3.0,1.8,4,4,108.98348232875537,900.0,30758.737381099498,0,1,5,0,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034136641793534726,17088.187433944164,4,2,4_0,4_1_0,4_2_0,4_0_1 -2869,1,54.0,253.0,7,111,0.0,,,0,77,0.0,0.0,,214.0,0.0,,12,0,0,0,0,0,0,0,0,0,,8,,5,116416,2,1,0,0,2,,273.0,426.0,31,1.0,0.0,4.0,3.0,2.0,2,2,122.01455412530437,0.0,6573.323218900845,0,7,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03255583102694042,3286.6616094504225,1,1,1_1,1_0_1,1_2_1,1_0_0 -2870,2,46.0,0.0,5,111,790.0,,,0,54,0.0,0.0,,940.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,109688,2,2,0,0,2,,281.0,460.0,12,1.0,0.0,3.0,1.0,1.0,2,2,88.76488019822844,790.0,28460.346225998386,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0330284105659022,28460.346225998386,8,4,8,8_0,8_2,8_0_0 -2871,1,45.0,254.0,5,111,360.0,,,0,63,0.0,0.0,,510.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,112054,2,2,0,0,2,,416.0,493.0,12,1.0,0.0,4.0,1.0,1.0,2,2,105.34715981018266,360.0,30983.598001255727,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016460322005834516,30983.598001255727,8,4,8,8_0,8_2,8_0_0 -2872,1,36.0,250.0,6,111,770.0,,,0,22,0.0,0.0,,909.0,239.12545358243665,,20,0,0,0,0,0,0,0,0,2,15.0,2,,4,117036,2,3,0,0,2,,791.0,430.0,32,1.0,0.0,5.0,5.0,2.4,3,2,80.76445626957289,770.0,16879.50261780105,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053852297699896245,7033.1260907504375,1,1,1_1,1_0_1,1_2_1,1_0_0 -2873,2,57.0,0.0,5,111,726.0,,,54,52,0.0,0.0,,876.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,2,,3,116689,2,2,0,0,2,,270.0,411.0,43,3.0,1.0,4.0,3.0,2.0,1,1,112.1215773596662,726.0,33943.0477440182,4,1,2,3,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025807935887382946,16971.5238720091,4,2,4_0,4_0_0,4_2_0,4_0_0 -2874,1,40.0,140.0,5,111,480.0,,,0,54,0.0,0.0,,630.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,2,10.0,2,,3,130580,2,1,0,0,2,,1172.0,545.0,32,1.0,0.0,4.0,4.0,2.1,2,2,125.07693038537667,480.0,19821.63949961222,0,1,2,3,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03178344556273082,9438.875952196295,1,1,1_1,1_0_1,1_2_1,1_0_0 -2875,2,53.0,0.0,2,111,612.0,,,85,63,0.0,0.0,,687.0,129.02452531426437,,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,102980,2,3,0,0,2,,540.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,91.34446282821736,612.0,27839.172469398894,6,1,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02467745766348326,18559.448312932596,4,2,4_0,4_1_0,4_2_0,4_0_1 -2876,0,51.0,0.0,2,111,650.0,,,0,53,0.0,0.0,,722.0,123.8635443016938,,31,0,0,0,0,0,0,0,0,0,,1,,2,132924,2,2,0,0,2,,700.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,112.4729138488867,650.0,9227.735042735043,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07824238522847787,9227.735042735043,1,1,1_0,1_1_0,1_2_0,1_0_1 -2877,2,70.0,0.0,2,111,480.0,,,0,86,0.0,0.0,,618.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,2,100232,2,2,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,119.99137961223458,480.0,5849.524463866788,0,6,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10564961371090247,5849.524463866788,1,1,1_0,1_1_0,1_2_0,1_0_1 -2878,2,65.0,0.0,2,111,560.0,,,0,77,0.0,0.0,,698.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,,2,118685,2,2,0,0,2,,300.0,200.0,11,0.0,6.0,4.0,1.0,1.0,2,2,93.10028634761764,560.0,15136.887803113033,0,5,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046112517254468265,15136.887803113033,3,2,3_0,3_1_0,3_2_0,3_0_1 -2879,0,85.0,0.0,2,111,550.0,,,0,77,0.0,0.0,,551.0,1.7203270041901917,,71,0,0,0,0,0,0,0,0,0,,1,,2,108532,2,2,0,0,2,,360.0,,11,0.0,4.0,3.0,1.0,1.0,3,2,122.3121400285982,550.0,38509.42348934846,0,5,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014308186154809723,38509.42348934846,9,5,9,9_1,9_2,9_0_1 -2880,0,66.0,0.0,2,111,468.0,,,0,77,0.0,0.0,,612.0,247.7270886033876,,12,0,0,0,0,0,0,0,0,0,,1,,2,120626,2,2,0,0,2,,268.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,87.69514282113784,468.0,5110.0,0,5,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11976516634050881,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -2881,2,62.0,0.0,7,111,700.0,,,71,77,0.0,0.0,,920.0,378.4719409218422,,70,0,0,0,0,0,0,0,0,0,,1,,5,128613,2,1,0,0,2,,400.0,,41,1.0,2.0,3.0,3.0,2.0,1,1,87.69514282113784,700.0,5314.475990017394,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17311208136570938,2657.237995008697,1,1,1_0,1_1_0,1_2_0,1_0_0 -2882,2,83.0,0.0,5,111,1200.0,,,0,86,0.0,0.0,,1200.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,3,111613,2,2,0,0,2,,690.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,70.29429665352166,1200.0,11184.421052631573,0,6,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10729209803109595,11184.421052631573,2,1,2_0,2_1_0,2_2_0,2_0_0 -2883,1,44.0,180.0,2,111,320.0,,,0,55,0.0,0.0,,458.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,2,,2,120080,2,2,0,0,2,,360.0,348.0,32,1.0,0.0,3.0,3.0,1.6,1,1,98.34094131227987,320.0,13738.279693162282,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03333750733200988,8586.424808226426,1,1,1_1,1_0_1,1_2_1,1_0_1 -2884,1,91.0,121.0,2,111,336.0,,,0,77,0.0,0.0,,566.0,395.67521096374406,,41,0,0,0,0,0,0,0,0,0,,2,,2,126541,2,2,0,0,2,,848.0,273.0,21,1.0,0.0,3.0,2.0,1.5,1,1,83.03863488362332,336.0,14223.491427717689,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.039793323803536805,9482.327618478459,1,1,1_1,1_0_1,1_2_1,1_0_1 -2885,2,48.0,0.0,2,111,600.0,,,0,67,0.0,0.0,,784.0,316.54016877099525,,20,0,0,0,0,0,0,0,0,0,,1,,2,112308,2,2,0,0,1,,760.0,,22,1.0,2.0,4.0,3.0,2.0,1,1,86.27834227390791,600.0,32077.265328719077,0,1,0,1,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02444098622391222,16038.632664359538,4,2,4_0,4_1_0,4_2_0,4_0_1 -2886,2,52.0,0.0,2,111,570.0,,,0,55,0.0,0.0,,726.0,268.3710126536699,,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,118836,1,2,0,0,2,,560.0,483.0,32,2.0,0.0,4.0,3.0,2.0,1,1,92.43758876705668,570.0,35911.47818654607,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020216377511076383,17955.739093273034,4,2,4_0,4_0_0,4_2_0,4_0_1 -2887,2,55.0,0.0,2,111,360.0,,,0,63,0.0,0.0,,406.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,1,10.0,1,,2,114461,2,2,0,0,2,,320.0,400.0,12,1.0,0.0,2.0,1.0,1.0,2,2,130.07387446477273,360.0,28088.93119090903,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01445409215610887,28088.93119090903,8,4,8,8_1,8_2,8_0_1 -2888,2,27.0,0.0,2,111,0.0,,,42,43,0.0,0.0,,1138.0,0.0,,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,107097,2,1,0,0,2,,263.0,250.0,43,2.0,0.0,3.0,2.0,1.5,2,2,97.49076290778572,0.0,6599.905308195379,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.17242671627226192,4399.936872130253,1,1,1_0,1_0_0,1_2_0,1_0_1 -2889,1,50.0,100.0,2,111,360.0,,,0,46,0.0,0.0,,406.0,79.13504219274881,,60,0,0,0,0,0,0,0,0,0,,2,,2,112540,2,2,0,0,2,,270.0,350.0,12,1.0,0.0,3.0,1.0,1.0,2,2,124.60286116221201,360.0,30336.153165383163,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013383371246400813,30336.153165383163,8,4,8,8_0,8_2,8_0_1 -2890,2,81.0,0.0,2,111,352.0,,,0,77,0.0,0.0,,444.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,0,,2,,2,104259,2,2,0,0,2,,294.0,140.0,11,0.0,5.0,3.0,1.0,1.0,4,3,98.25982202264659,352.0,9422.490445859872,0,5,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04712130010119439,9422.490445859872,1,1,1_0,1_0_0,1_2_0,1_0_1 -2891,1,96.0,247.0,8,111,361.0,,,0,78,0.0,0.0,,453.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,109214,2,2,0,0,2,,493.0,455.0,11,0.0,11.0,3.0,1.0,1.0,2,2,98.25982202264659,361.0,13254.288122860118,0,5,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03417761827726497,13254.288122860118,2,1,2_1,2_0_1,2_2_1,2_0_0 -2893,1,80.0,120.0,2,111,280.0,,,0,77,0.0,0.0,,523.0,418.03946201821657,,71,0,0,0,0,0,0,0,0,0,,2,,2,122336,2,2,0,0,2,,310.0,210.0,11,0.0,0.0,2.0,1.0,1.0,2,2,104.73934016133461,280.0,15631.784025695955,0,5,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033457473512957844,15631.784025695955,3,2,3_1,3_0_1,3_2_1,3_0_1 -2894,1,44.0,357.0,6,111,360.0,,,0,56,0.0,0.0,,498.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,2,20.0,2,,4,117319,2,2,0,0,2,,580.0,503.0,32,1.0,2.0,4.0,2.0,1.3,2,2,112.1215773596662,360.0,18680.149967610985,0,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026659314880419532,14369.346128931527,3,2,3_1,3_0_1,3_2_1,3_0_0 -2895,1,77.0,167.0,7,111,280.0,,,0,78,0.0,0.0,,424.0,247.7270886033876,,10,0,0,0,0,0,0,0,0,0,,2,,5,132996,2,2,0,0,2,,360.0,326.0,11,0.0,1.0,2.0,1.0,1.0,2,2,205.17559084691297,280.0,7030.428637013594,0,5,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.060309267313764806,7030.428637013594,1,1,1_1,1_0_1,1_2_1,1_0_0 -2896,1,50.0,137.0,7,111,320.0,,,0,55,0.0,0.0,,366.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,0,,2,,5,118084,2,2,0,0,2,,280.0,310.0,12,1.0,0.0,2.0,1.0,1.0,1,1,205.17559084691297,320.0,13396.97658091789,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0273195969097472,13396.97658091789,3,2,3_1,3_0_1,3_2_1,3_0_0 -2898,2,82.0,0.0,2,111,240.0,,,86,78,0.0,0.0,,764.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,2,119428,2,2,0,0,2,,436.0,262.0,41,0.0,0.0,5.0,2.0,1.5,3,2,83.63966074033759,240.0,18753.361455975064,5,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04073936300932224,12502.240970650042,2,1,2_0,2_0_0,2_2_0,2_0_1 -2899,2,62.0,0.0,2,111,480.0,,,0,86,0.0,0.0,,756.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,2,,2,132539,2,2,0,0,2,,540.0,464.0,21,0.0,1.0,4.0,2.0,1.5,1,1,88.690654472359,480.0,21616.623154679208,0,5,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03497308504618834,14411.082103119472,3,2,3_0,3_0_0,3_2_0,3_0_1 -2900,2,56.0,0.0,2,111,450.0,,,0,43,0.0,0.0,,693.0,418.03946201821657,,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,127760,2,1,0,0,1,,388.0,511.0,22,1.0,1.0,4.0,2.0,1.3,1,1,117.21971200656749,450.0,47608.0,0,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01455637707948244,36621.53846153846,9,5,9,9_0,9_2,9_0_1 -2901,1,53.0,336.0,2,111,216.0,,,0,56,0.0,0.0,,540.0,557.385949357622,,10,0,0,0,0,0,0,0,0,0,,2,,2,118921,2,3,0,0,2,,672.0,334.0,32,1.0,2.0,3.0,2.0,1.5,1,1,94.39396462533622,216.0,9136.34188034188,0,4,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.059104618355174034,6090.8945868945875,1,1,1_1,1_0_1,1_2_1,1_0_1 -2902,1,81.0,170.0,2,111,360.0,,,0,86,0.0,0.0,,567.0,356.1076898673697,,20,0,0,0,0,0,0,0,0,0,,2,,2,121342,2,1,0,0,2,,320.0,410.0,11,0.0,0.0,5.0,1.0,1.0,4,4,88.07842479519776,360.0,4037.0768025650664,0,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14044815784523623,4037.0768025650664,1,1,1_1,1_0_1,1_2_1,1_0_1 -2903,2,80.0,0.0,2,111,342.0,,,86,78,0.0,0.0,,618.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,2,103775,2,1,0,0,2,,600.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,87.69514282113784,342.0,17417.28215767635,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035481999683149634,11611.5214384509,2,1,2_0,2_1_0,2_2_0,2_0_1 -2904,2,84.0,0.0,2,111,540.0,,,86,78,0.0,0.0,,678.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,,2,100864,2,1,0,0,2,,240.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,74.37548559946772,540.0,21129.204124922813,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032088288607154375,14086.136083281875,3,2,3_0,3_1_0,3_2_0,3_0_1 -2905,1,72.0,176.0,2,111,330.0,,,0,77,0.0,0.0,,445.0,197.83760548187203,,41,0,0,0,0,0,0,0,0,0,,2,,2,113406,2,2,0,0,2,,480.0,180.0,21,0.0,0.0,3.0,2.0,1.5,1,1,93.39747520297047,330.0,12858.177448939437,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03460832623963393,8572.118299292959,1,1,1_1,1_0_1,1_2_1,1_0_1 -2906,2,74.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,522.0,278.692974678811,,12,0,0,0,0,0,0,0,0,0,,2,,2,110108,2,2,0,0,2,,300.0,185.0,21,1.0,4.0,3.0,2.0,1.5,1,1,83.03863488362332,360.0,7638.561316359615,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06833747591735961,5092.374210906411,1,1,1_0,1_0_0,1_2_0,1_0_1 -2907,2,65.0,0.0,2,111,600.0,,,72,75,0.0,0.0,,876.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,0,,1,,2,104121,1,2,0,0,2,,972.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,82.0475722530191,600.0,19882.174312581836,6,5,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04405956744105446,9941.087156290918,2,1,2_0,2_1_0,2_2_0,2_0_1 -2908,2,59.0,0.0,8,111,380.0,,,0,67,0.0,0.0,,452.0,123.8635443016938,,71,0,0,0,0,0,0,0,0,2,30.0,2,1999.0,6,108246,1,1,0,0,2,,390.0,395.0,32,1.0,4.0,3.0,2.0,1.5,1,1,88.690654472359,380.0,31365.0,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014410967639088156,20910.0,5,3,5,5_0,5_2,5_0_0 -2909,1,29.0,220.0,9,111,320.0,,,0,81,0.0,0.0,,498.0,306.2182067458541,,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,104234,2,2,0,0,2,,380.0,389.0,32,1.0,0.0,3.0,2.0,1.3,3,3,124.60286116221201,320.0,3461.783462124391,0,4,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14385648480000324,2662.9103554803005,1,1,1_1,1_0_1,1_2_1,1_0_0 -2910,2,62.0,0.0,9,111,612.0,,,0,77,0.0,0.0,,796.0,316.54016877099525,,31,0,0,0,0,0,0,0,0,0,,2,2004.0,6,125047,2,3,0,0,2,,625.0,522.0,21,0.0,4.0,4.0,2.0,1.5,2,2,83.97695604639117,612.0,30034.47736361508,0,5,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026502875024697618,20022.98490907672,5,3,5,5_0,5_2,5_0_0 -2911,2,42.0,0.0,9,111,540.0,,,0,46,0.0,0.0,,563.0,39.567521096374406,,20,0,0,0,0,0,0,0,0,0,,2,2004.0,6,132250,2,1,0,0,2,,660.0,515.0,32,1.0,0.0,3.0,3.0,1.8,2,2,98.34094131227987,540.0,37574.10070532076,0,1,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014983725210495197,20874.500391844864,5,3,5,5_0,5_2,5_0_0 -2912,1,34.0,467.0,9,111,370.0,,,0,55,0.0,0.0,,506.0,233.96447256986607,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,112507,1,1,0,0,2,,667.0,495.0,32,1.0,2.0,4.0,4.0,1.9,3,3,165.0457122368248,370.0,16190.088349599579,0,4,2,3,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.031253689854787894,8521.099131368199,1,1,1_1,1_0_1,1_2_1,1_0_0 -2913,2,49.0,0.0,9,111,250.0,,,0,54,0.0,0.0,,370.0,206.439240502823,,50,0,0,0,0,0,0,0,0,2,25.0,2,2005.0,6,121243,1,2,0,0,2,,400.0,400.0,12,1.0,1.0,3.0,1.0,1.0,2,2,124.60286116221201,250.0,14035.222000511134,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026362247778234312,14035.222000511134,3,2,3_0,3_0_0,3_2_0,3_0_0 -2914,2,46.0,0.0,5,111,1020.0,,,0,52,0.0,0.0,,1296.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,118284,2,2,0,0,2,,800.0,550.0,32,1.0,1.0,5.0,4.0,2.3,1,1,72.39894842029965,1020.0,32647.76703966451,0,1,2,3,173.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03969643615826651,14194.681321593267,3,2,3_0,3_0_0,3_2_0,3_0_0 -2915,1,60.0,301.0,9,111,420.0,,,54,55,0.0,0.0,,558.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,128479,2,2,0,0,2,,330.0,450.0,43,2.0,2.0,3.0,3.0,2.0,2,2,86.51080132246483,420.0,19412.662449418414,4,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02874412520456292,9706.331224709207,1,1,1_1,1_0_1,1_2_1,1_0_0 -2916,2,66.0,0.0,7,111,1200.0,,,0,42,0.0,0.0,,1330.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,2,,5,117950,2,1,0,0,2,,992.0,,21,2.0,1.0,4.0,5.0,2.8,5,5,186.99158048166117,1200.0,73863.8181098369,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018006109540969907,26379.935039227465,7,4,7,7_0,7_2,7_0_0 -2917,2,79.0,0.0,2,111,400.0,,,0,77,0.0,0.0,,466.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,,2,109664,2,2,0,0,2,,400.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,87.5800333471359,400.0,20818.095624845566,0,5,0,1,84.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022384372153802946,20818.095624845566,5,3,5,5_1,5_2,5_0_1 -2918,2,57.0,0.0,6,111,400.0,,,54,67,0.0,0.0,,493.0,159.99041138968784,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,119551,2,1,0,0,2,,500.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,93.54116294366494,400.0,56291.38520825837,1,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008758000858853855,37527.59013883891,9,5,9,9_1,9_2,9_0_0 -2919,2,44.0,0.0,7,111,800.0,,,64,65,0.0,0.0,,910.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,119283,2,2,0,0,2,,300.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,88.51118925386373,800.0,36197.43140552306,4,1,1,2,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025139905365250608,15738.013654575243,3,2,3_0,3_1_0,3_2_0,3_0_0 -2920,2,71.0,0.0,2,111,644.0,,,81,78,0.0,0.0,,874.0,395.67521096374406,,71,0,0,0,0,0,0,0,0,0,,1,,2,116779,2,1,0,0,2,,480.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,70.26100454636288,644.0,10179.970000000001,4,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08585486990629637,6786.646666666667,1,1,1_0,1_1_0,1_2_0,1_0_1 -2921,2,66.0,0.0,7,111,500.0,,,0,75,0.0,0.0,,566.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,8,,5,126243,2,2,0,0,2,,300.0,600.0,11,0.0,2.0,3.0,1.0,1.0,2,2,94.2700622144679,500.0,35753.44947939698,0,5,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015830640350553,35753.44947939698,9,5,9,9_0,9_2,9_0_0 -2922,1,51.0,223.0,7,111,600.0,,,0,54,0.0,0.0,,669.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,0,,2,,5,112780,2,2,0,0,2,,565.0,470.0,12,1.0,0.0,3.0,1.0,1.0,1,1,110.37239712336296,600.0,7618.0,0,4,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08781832501969021,7618.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -2923,1,36.0,330.0,7,111,480.0,,,0,54,0.0,0.0,,580.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,2,,5,123597,2,2,0,0,2,,500.0,450.0,32,2.0,0.0,4.0,5.0,2.4,2,2,128.12074049072186,480.0,13874.549956515366,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04180315771090198,5781.062481881403,1,1,1_1,1_0_1,1_2_1,1_0_0 -2924,1,33.0,150.0,7,111,0.0,,,0,85,0.0,0.0,,333.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,128868,2,1,0,0,2,,762.0,123.0,31,0.0,0.0,3.0,3.0,1.6,2,2,81.72498984088244,0.0,14001.965811922753,0,6,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023782374880279213,8751.22863245172,1,1,1_1,1_0_1,1_2_1,1_0_0 -2925,1,50.0,150.0,7,111,550.0,,,0,55,0.0,0.0,,706.0,268.3710126536699,,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,104381,1,2,0,0,2,,600.0,420.0,32,2.0,0.0,4.0,5.0,2.6,1,1,73.77779456709425,550.0,9389.697552447553,0,1,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07518879027322573,3611.422135556751,1,1,1_1,1_0_1,1_2_1,1_0_0 -2926,2,74.0,0.0,2,111,380.0,,,77,78,0.0,0.0,,495.0,197.83760548187203,,41,0,0,0,0,0,0,0,0,0,,1,,2,133481,2,2,0,0,2,,350.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,91.2245632222541,380.0,19493.557998448894,5,5,0,1,84.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025393004193456487,12995.705332299263,2,1,2_0,2_1_0,2_2_0,2_0_1 -2927,1,38.0,220.0,2,111,480.0,,,22,53,0.0,0.0,,756.0,474.81025315649293,,60,0,0,0,0,0,0,0,0,0,,1,,2,121115,2,3,0,0,2,,400.0,630.0,43,2.0,0.0,4.0,5.0,2.4,3,3,84.45061219675743,480.0,27567.198017246687,1,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02742389703614523,11486.33250718612,2,1,2_1,2_1_1,2_2_1,2_0_1 -2928,2,77.0,0.0,7,111,290.0,,,0,77,0.0,0.0,,359.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,0,,1,,5,120506,1,2,0,0,2,,220.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,74.42134519953629,290.0,5174.95,0,5,0,1,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06937265094348738,3449.9666666666667,1,1,1_0,1_1_0,1_2_0,1_0_0 -2929,2,42.0,0.0,9,111,480.0,,,55,68,0.0,0.0,,591.0,190.95629746511128,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,102175,2,2,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,140.3565358921107,480.0,33250.419097306614,1,1,0,1,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01777421205640902,14456.703955350704,3,2,3_0,3_1_0,3_2_0,3_0_0 -2930,2,46.0,0.0,7,111,510.0,,,0,46,0.0,0.0,,630.0,206.439240502823,,70,0,0,0,0,0,0,0,0,0,,1,,5,131104,2,2,0,0,2,,450.0,,22,1.0,0.0,4.0,2.0,1.5,1,1,66.40558857462858,510.0,16039.588456515294,0,1,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03927781574371339,10693.058971010196,2,1,2_0,2_1_0,2_2_0,2_0_0 -2931,2,78.0,0.0,5,111,350.0,,,0,77,0.0,0.0,,442.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,0,,1,,3,109426,2,1,0,0,2,,350.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,97.70930341866648,350.0,10642.958174904943,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04152980710214505,10642.958174904943,2,1,2_0,2_1_0,2_2_0,2_0_0 -2932,2,84.0,0.0,2,111,410.0,,,0,86,0.0,0.0,,499.0,153.10910337292705,,10,0,0,0,0,0,0,0,0,0,,1,,2,114687,2,2,0,0,2,,450.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,97.70930341866648,410.0,10026.0,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049770596449232,10026.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -2933,2,51.0,0.0,9,111,550.0,,,0,56,0.0,0.0,,711.0,276.9726476746209,,43,0,0,0,0,0,0,0,0,0,,1,2004.0,6,108488,2,2,0,0,2,,700.0,,32,1.0,1.0,5.0,2.0,1.5,1,1,82.54883912628537,550.0,20732.53669619815,0,1,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034293922177423684,13821.691130798767,3,2,3_0,3_1_0,3_2_0,3_0_0 -2934,2,59.0,0.0,7,111,0.0,,,77,42,0.0,0.0,,276.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,5,114725,2,1,0,0,2,,0.0,900.0,42,1.0,1.0,3.0,3.0,2.0,1,1,133.98489991217585,0.0,30380.489799801184,5,1,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009084777823490068,15190.244899900592,3,2,3_0,3_1_0,3_2_0,3_0_0 -2935,2,56.0,0.0,9,111,0.0,,,63,46,0.0,0.0,,150.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,127253,2,1,0,0,2,,300.0,,43,2.0,3.0,2.0,2.0,1.5,1,1,122.66212699758496,0.0,2096.471465233509,4,4,0,1,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.071548791618441,1397.6476434890062,1,1,1_0,1_1_0,1_2_0,1_0_0 -2937,2,68.0,0.0,6,111,850.0,,,0,74,0.0,0.0,,1000.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,4,106813,2,1,0,0,2,,517.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,103.29539082283674,850.0,28288.323307430313,0,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035350274709895456,28288.323307430313,8,4,8,8_1,8_2,8_0_0 -2938,2,76.0,0.0,2,111,540.0,,,0,78,0.0,0.0,,640.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,0,,1,,2,109247,2,2,0,0,2,,400.0,,21,1.0,5.0,4.0,2.0,1.5,1,1,74.27785963352962,540.0,9386.762237762237,0,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06818112399026452,6257.841491841492,1,1,1_0,1_1_0,1_2_0,1_0_1 -2939,2,74.0,0.0,2,111,444.0,,,0,75,0.0,0.0,,519.0,129.02452531426437,,31,0,0,0,0,0,0,0,0,0,,1,,2,124222,2,1,0,0,2,,210.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,155.3494835493257,444.0,46745.30284547995,0,5,0,1,105.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011102719811562519,46745.30284547995,10,5,10,10_1,10_2,10_0_1 -2940,2,45.0,0.0,6,111,0.0,,,0,62,0.0,0.0,,150.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,2,20.0,2,,4,121847,1,1,0,0,2,,0.0,500.0,12,1.0,1.0,2.0,1.0,1.0,2,2,241.11423830459515,0.0,54813.502468317936,0,1,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0027365520035268613,54813.502468317936,10,5,10,10_0,10_2,10_0_0 -2941,2,64.0,0.0,9,111,980.0,,,0,52,0.0,0.0,,1150.0,292.4555907123326,,12,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,109721,2,2,0,0,2,,960.0,,12,1.0,4.0,8.0,1.0,1.0,5,4,235.0530581017053,980.0,41829.10459411608,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02749281896322891,41829.10459411608,9,5,9,9_1,9_2,9_0_0 -2942,2,79.0,0.0,2,111,1150.0,,,77,77,0.0,0.0,,1502.0,605.5551054749475,,71,0,0,0,0,0,0,0,0,0,,1,,2,120229,2,1,0,0,2,,690.0,,41,1.0,2.0,5.0,3.0,2.0,1,1,122.8889855102636,1150.0,48916.0,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030705699566603975,24458.0,7,4,7,7_1,7_2,7_0_1 -2943,2,43.0,0.0,6,111,0.0,,,0,56,0.0,0.0,,204.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,4,128114,2,1,0,0,2,,0.0,620.0,32,1.0,2.0,2.0,2.0,1.3,1,1,172.74170827287506,0.0,9422.8593659829,0,1,3,4,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021649479428341306,7248.353358448385,1,1,1_0,1_1_0,1_2_0,1_0_0 -2944,2,67.0,0.0,6,111,312.0,,,0,77,0.0,0.0,,387.0,129.02452531426437,,20,0,0,0,0,0,0,0,0,0,,2,,4,132025,2,2,0,0,2,,300.0,506.0,11,0.0,2.0,2.0,1.0,1.0,1,1,141.99103621369815,312.0,22876.162878586572,0,5,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016917172781727947,22876.162878586572,6,3,6,6_0,6_2,6_0_0 -2945,2,38.0,0.0,7,111,350.0,,,43,23,0.0,0.0,,425.0,129.02452531426437,,10,0,0,0,0,0,0,0,0,2,20.0,2,,5,106224,1,1,0,0,2,,152.0,650.0,43,2.0,0.0,4.0,3.0,1.8,1,1,126.17777710874847,350.0,36001.84724858693,1,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011804949814531566,20001.02624921496,5,3,5,5_0,5_2,5_0_0 -2946,0,63.0,0.0,5,111,300.0,,,0,68,0.0,0.0,,375.0,129.02452531426437,,41,0,0,0,0,0,0,0,0,3,60.0,1,,3,114197,2,2,0,0,2,,200.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,105.86056164352019,300.0,3723.0413120199823,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10072410391721898,3723.0413120199823,1,1,1_0,1_1_0,1_2_0,1_0_0 -2947,2,84.0,0.0,2,111,600.0,,,75,75,0.0,0.0,,760.0,275.25232067043066,,10,0,0,0,0,0,0,0,0,0,,1,,2,128554,2,1,0,0,2,,400.0,,41,2.0,5.0,5.0,5.0,2.8,1,1,165.93702558668357,600.0,138800.54358430475,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00547548287905941,49571.62270868027,10,5,10,10_1,10_2,10_0_1 -2948,2,77.0,0.0,2,111,120.0,,,0,77,0.0,0.0,,420.0,516.0981012570575,,12,0,0,0,0,0,0,0,0,0,,1,,2,131271,2,2,0,0,2,,300.0,,11,0.0,9.0,4.0,1.0,1.0,2,2,74.51915975352809,120.0,15000.830721003136,0,5,0,1,198.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027998449406668176,15000.830721003136,3,2,3_0,3_1_0,3_2_0,3_0_1 -2949,2,90.0,0.0,6,111,300.0,,,0,78,0.0,0.0,,400.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,4,114761,2,1,0,0,2,,200.0,,11,0.0,1.0,5.0,1.0,1.0,3,3,113.81395617269902,300.0,10621.684410646389,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03765881046127389,10621.684410646389,2,1,2_0,2_1_0,2_2_0,2_0_0 -2950,1,28.0,253.0,8,111,600.0,,,0,43,0.0,0.0,,650.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,3,40.0,1,2000.0,6,113363,2,1,0,0,2,,220.0,650.0,12,1.0,0.0,3.0,1.0,1.0,2,2,166.77827460294083,600.0,5600.025424528288,0,1,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11607090159858552,5600.025424528288,1,1,1_1,1_1_1,1_2_1,1_0_0 -2951,2,27.0,0.0,2,111,698.0,,,0,46,0.0,0.0,,848.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,103942,2,3,0,0,2,,580.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,132.1518632964571,698.0,34795.15185845292,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024371211352940025,23196.76790563528,6,3,6,6_1,6_2,6_0_1 -2952,2,94.0,0.0,1,111,150.0,,,0,78,0.0,0.0,,318.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,1,119778,2,1,0,0,2,,448.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,142.97843732388225,150.0,12669.688926082668,0,5,0,1,58.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025099274485369878,12669.688926082668,2,1,2_0,2_1_0,2_2_0,2_1_0 -2953,2,80.0,0.0,2,111,544.0,,,0,77,0.0,0.0,,694.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,0,,2,,2,128242,2,1,0,0,2,,225.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,116.33733250899475,544.0,19977.47449550225,0,5,0,1,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03473912581674164,19977.47449550225,5,3,5,5_0,5_2,5_0_1 -2956,2,45.0,0.0,9,111,360.0,,,33,42,0.0,0.0,,460.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,133190,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,216.96324820325063,360.0,73706.42025193415,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006240976002194721,32046.26967475398,8,4,8,8_1,8_2,8_0_0 -2957,1,26.0,357.0,7,111,420.0,,,0,43,0.0,0.0,,570.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,2,,5,115897,2,2,0,0,2,,300.0,500.0,32,1.0,0.0,2.0,2.0,1.3,1,1,223.01815865546902,420.0,8548.191986868482,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06668076721669561,6575.5322975911395,1,1,1_1,1_0_1,1_2_1,1_0_0 -2958,0,38.0,0.0,8,111,810.0,,,0,53,0.0,0.0,,810.0,0.0,,12,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,117311,2,1,0,0,2,,108.0,,32,1.0,0.0,3.0,2.0,1.3,4,4,168.08566389565343,810.0,26078.40792466645,0,1,5,0,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031060178303057205,20060.313788204963,5,3,5,5_0,5_2,5_0_0 -2959,2,75.0,0.0,6,111,396.0,,,0,77,0.0,0.0,,546.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,1,,4,106281,2,1,0,0,2,,327.0,,21,1.0,0.0,4.0,2.0,1.5,5,4,123.41626250291719,396.0,31956.895477927403,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017085514466732905,21304.596985284934,6,3,6,6_1,6_2,6_0_0 -2960,2,83.0,0.0,7,111,300.0,,,0,77,0.0,0.0,,550.0,430.0817510475479,,50,0,0,0,0,0,0,0,0,0,,1,,5,122637,2,2,0,0,2,,540.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,91.9200906288319,300.0,16346.468186306256,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033646411795591746,16346.468186306256,4,2,4_0,4_1_0,4_2_0,4_0_0 -2961,2,53.0,0.0,8,111,900.0,,,55,43,0.0,0.0,,1155.0,438.68338606849886,,10,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,106508,2,1,0,0,2,,500.0,,43,4.0,0.0,5.0,5.0,2.8,2,2,88.86819313245049,900.0,90257.57570290541,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012796709760982648,32234.84846532336,8,4,8,8_1,8_2,8_0_0 -2962,2,67.0,0.0,6,111,240.0,,,0,74,0.0,0.0,,410.0,292.4555907123326,,31,0,0,0,0,0,0,0,0,0,,1,,4,100439,2,1,0,0,2,,200.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,116.33390647527888,240.0,32729.0,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012527116624400378,32729.0,8,4,8,8_1,8_2,8_0_0 -2963,1,39.0,357.0,6,111,251.0,,,0,33,0.0,0.0,,326.0,129.02452531426437,,31,0,0,0,0,0,0,0,0,0,,2,,4,106780,2,1,0,0,2,,300.0,444.0,32,1.0,0.0,2.0,2.0,1.3,1,1,119.06218814803664,251.0,7545.106666666667,0,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04320681130198292,5803.928205128205,1,1,1_1,1_0_1,1_2_1,1_0_0 -2964,2,50.0,0.0,6,111,576.0,,,90,56,0.0,0.0,,851.0,473.0899261523027,,12,0,0,0,0,0,0,0,0,2,30.0,2,,4,121423,2,1,0,0,2,,460.0,390.0,43,2.0,0.0,3.0,3.0,2.0,2,2,81.8324038282249,576.0,51105.20033296828,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016651925722929114,25552.60016648414,7,4,7,7_0,7_2,7_0_0 -2965,2,85.0,0.0,6,111,180.0,,,0,77,0.0,0.0,,330.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,2,,4,101423,2,1,0,0,2,,300.0,482.0,21,1.0,2.0,4.0,2.0,1.5,2,2,112.1215773596662,180.0,17165.0,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019225167491989513,11443.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_0 -2966,2,52.0,0.0,9,111,600.0,,,54,38,0.0,0.0,,600.0,0.0,,60,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,109653,2,1,0,0,2,,0.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,139.93720992416084,600.0,155879.61752622313,1,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0038491241479923694,77939.80876311156,10,5,10,10_1,10_2,10_0_0 -2967,2,66.0,0.0,9,111,0.0,,,54,34,0.0,0.0,,695.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,132173,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,84.39755238752255,0.0,142841.6874412607,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004865526391137024,79356.49302292262,10,5,10,10_1,10_2,10_0_0 -2968,2,85.0,0.0,9,111,1500.0,,,0,77,0.0,0.0,,1800.0,516.0981012570575,,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,115195,2,2,0,0,2,,800.0,,21,1.0,4.0,4.0,5.0,2.8,1,1,102.69401067857032,1500.0,24860.18244756041,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07240493925565049,8878.636588414432,1,1,1_0,1_1_0,1_2_0,1_0_0 -2969,2,54.0,0.0,5,111,500.0,,,85,11,0.0,0.0,,800.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,,3,103759,2,1,0,0,2,,700.0,,42,1.0,1.0,5.0,4.0,2.3,1,1,89.44933511336902,500.0,22599.130926591555,6,1,0,1,128.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03539959136475774,9825.709098518068,2,1,2_0,2_1_0,2_2_0,2_0_0 -2970,2,49.0,0.0,7,111,0.0,,,0,90,0.0,0.0,,472.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,5,114525,2,1,0,0,2,,0.0,600.0,12,1.0,7.0,3.0,1.0,1.0,2,2,93.62588024537467,0.0,2557.353789972104,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1845657811800645,2557.353789972104,1,1,1_0,1_1_0,1_2_0,1_0_0 -2971,2,74.0,0.0,5,111,944.0,,,0,78,0.0,0.0,,1044.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,0,,1,,3,105120,2,1,0,0,2,,600.0,,21,1.0,2.0,5.0,2.0,1.5,1,1,102.94561333819446,944.0,44649.14521619273,0,5,0,1,156.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023382306535655168,29766.096810795152,8,4,8,8_1,8_2,8_0_0 -2972,1,58.0,165.0,5,111,300.0,,,68,56,0.0,0.0,,450.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,1,,3,102780,2,3,0,0,2,,290.0,530.0,43,2.0,0.0,3.0,2.0,1.5,2,2,82.3629489047517,300.0,25674.56475343974,1,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017527074142112242,17116.37650229316,4,2,4_1,4_1_1,4_2_1,4_0_0 -2973,2,58.0,0.0,2,111,218.0,,,0,52,0.0,0.0,,218.0,0.0,,33,0,0,0,0,0,0,0,0,2,30.0,1,,2,121892,2,1,0,0,2,,180.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,97.69468627672954,218.0,48236.468058472106,0,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0045194022028259,48236.468058472106,10,5,10,10_1,10_2,10_0_1 -2974,2,25.0,0.0,6,111,564.0,,,54,62,0.0,0.0,,689.0,215.04087552377396,,70,0,0,0,0,0,0,0,0,2,15.0,1,,4,102232,2,1,0,0,2,,0.0,420.0,43,2.0,0.0,3.0,2.0,1.5,2,2,122.08439649596987,564.0,36215.407277075734,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019025051816444306,24143.60485138382,6,3,6,6_1,6_2,6_0_0 -2975,2,39.0,0.0,5,111,0.0,,,0,56,0.0,0.0,,1413.0,0.0,,31,0,0,0,0,0,0,0,0,3,40.0,1,,3,129807,2,2,0,0,2,,0.0,400.0,12,1.0,1.0,3.0,1.0,1.0,3,3,134.4322466420867,0.0,18952.306645444565,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07455556869325101,18952.306645444565,5,3,5,5_1,5_2,5_0_0 -2976,2,66.0,0.0,5,111,864.0,,,75,75,0.0,0.0,,1024.0,275.25232067043066,,71,0,0,0,0,0,0,0,0,0,,1,,3,113433,2,1,0,0,2,,372.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,171.78743645908133,864.0,71168.05704658049,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014388477675170725,47445.37136438699,10,5,10,10_1,10_2,10_0_0 -2977,2,49.0,0.0,7,111,500.0,,,0,53,0.0,0.0,,501.0,1.7203270041901917,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,133494,2,1,0,0,2,,200.0,235.0,12,1.0,2.0,4.0,1.0,1.0,2,2,179.61889290173553,500.0,48529.31002221297,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010323658007309004,48529.31002221297,10,5,10,10_1,10_2,10_0_0 -2978,2,41.0,0.0,9,111,158.0,,,43,47,0.0,0.0,,308.0,258.04905062852873,,42,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,120207,2,1,0,0,2,,450.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,297.4801500580795,158.0,75304.0,1,1,1,2,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00409008817592691,35859.04761904762,9,5,9,9_1,9_2,9_0_0 -2979,2,57.0,0.0,8,111,0.0,,,0,42,0.0,0.0,,1675.0,0.0,,50,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,116317,2,2,0,0,2,,193.0,,32,1.0,0.0,6.0,2.0,1.5,1,1,130.90614522963247,0.0,44510.81444681075,0,1,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03763130423060627,29673.876297873834,8,4,8,8_1,8_2,8_0_0 -2980,2,85.0,0.0,6,111,492.0,,,0,72,0.0,0.0,,642.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,4,132870,2,1,0,0,2,,24.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,110.97536461961039,492.0,5110.0,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12563600782778864,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -2981,2,86.0,0.0,7,111,240.0,,,0,77,0.0,0.0,,340.0,172.03270041901916,,12,0,0,0,0,0,0,0,0,0,,1,,5,129445,2,1,0,0,2,,280.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,179.92393779837042,240.0,11345.473684210527,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029967898164814162,11345.473684210527,2,1,2_0,2_1_0,2_2_0,2_0_0 -2982,2,64.0,0.0,6,111,600.0,,,0,77,0.0,0.0,,700.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,0,,1,,4,103130,2,1,0,0,2,,600.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,180.0637551890422,600.0,16333.0,0,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04285801751056144,16333.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -2983,2,51.0,0.0,2,111,360.0,,,0,21,0.0,0.0,,510.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,2,121830,2,1,0,0,2,,180.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,180.0637551890422,360.0,5371.193308218416,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0949509672682332,5371.193308218416,1,1,1_0,1_1_0,1_2_0,1_0_1 -2984,2,60.0,0.0,7,111,800.0,,,33,31,0.0,0.0,,1120.0,550.5046413408613,,71,0,0,0,0,0,0,0,0,2,8.0,1,,5,101782,2,1,0,0,2,,250.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,189.35881880387103,800.0,156555.79306184995,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0071539990829820365,104370.52870789997,10,5,10,10_1,10_2,10_0_0 -2985,2,47.0,0.0,5,111,1200.0,,,46,31,0.0,0.0,,1290.0,154.82943037711726,,50,0,0,0,0,0,0,0,0,0,,1,,3,102890,2,1,0,0,2,,384.0,,43,2.0,1.0,5.0,3.0,2.0,4,2,252.04594023221824,1200.0,52632.724649607895,1,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024509466469538173,26316.362324803948,7,4,7,7_1,7_2,7_0_0 -2986,2,63.0,0.0,6,111,960.0,,,55,33,0.0,0.0,,1110.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,107421,2,1,0,0,2,,260.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,192.2071940190395,960.0,79255.70728746118,1,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014005300539102122,39627.85364373059,9,5,9,9_1,9_2,9_0_0 -2987,2,50.0,0.0,8,111,0.0,,,43,44,0.0,0.0,,742.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,0,,1,2001.0,6,101053,2,1,0,0,2,,0.0,800.0,43,2.0,2.0,3.0,2.0,1.5,2,2,163.84809454419593,0.0,28871.76010609806,1,1,3,4,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025699853326340182,19247.84007073204,5,3,5,5_1,5_2,5_0_0 -2988,2,70.0,0.0,2,111,0.0,,,0,86,0.0,0.0,,182.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,106834,2,1,0,0,2,,0.0,,11,0.0,3.0,1.0,1.0,1.0,2,2,158.34265760135054,0.0,13068.525606156269,0,5,0,1,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013926590151398882,13068.525606156269,2,1,2_0,2_1_0,2_2_0,2_0_1 -2989,1,59.0,400.0,7,111,1080.0,,,64,56,0.0,0.0,,1380.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,0,,1,,5,124269,2,1,0,0,2,,0.0,650.0,43,3.0,0.0,4.0,5.0,3.0,4,4,91.8719386192895,1080.0,51041.48365889559,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027036831633311886,17013.827886298528,4,2,4_1,4_1_1,4_2_1,4_0_0 -2990,1,36.0,260.0,6,111,480.0,,,85,64,0.0,0.0,,630.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,2,,4,107437,2,2,0,0,2,,300.0,420.0,42,1.0,0.0,2.0,4.0,2.1,2,2,230.4325788036569,480.0,25291.262677198873,6,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024909788334450032,12043.458417713748,2,1,2_1,2_0_1,2_2_1,2_0_0 -2991,2,53.0,0.0,6,111,0.0,,,0,52,0.0,0.0,,982.0,0.0,,12,0,0,0,0,0,0,0,0,3,60.0,1,,4,126431,2,2,0,0,2,,811.0,680.0,32,1.0,1.0,3.0,2.0,1.5,1,1,222.72824333113044,0.0,30725.9483367414,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031959957402705984,20483.9655578276,5,3,5,5_1,5_2,5_0_0 -2992,2,68.0,0.0,6,111,1050.0,,,77,74,0.0,0.0,,1200.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,,4,113248,2,1,0,0,2,,452.0,,41,1.0,2.0,3.0,3.0,2.0,2,2,103.84232249398242,1050.0,49213.35933113931,5,5,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0243836229899614,24606.679665569656,7,4,7,7_1,7_2,7_0_0 -2993,0,42.0,0.0,6,111,600.0,,,62,22,0.0,0.0,,700.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,0,,1,,4,111291,2,2,0,0,2,,405.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,112.96809648509225,600.0,32285.8302611665,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021681338046367737,17936.572367314722,4,2,4_0,4_1_0,4_2_0,4_0_0 -2994,0,86.0,0.0,6,111,180.0,,,0,78,0.0,0.0,,330.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,1,,4,100062,2,2,0,0,2,,120.0,,11,0.0,5.0,3.0,1.0,1.0,2,2,130.98605482052582,180.0,9583.657931034482,0,5,5,0,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034433616305457916,9583.657931034482,1,1,1_0,1_1_0,1_2_0,1_0_0 -2995,2,60.0,0.0,6,111,300.0,,,0,45,0.0,0.0,,450.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,3,30.0,2,,4,119541,2,1,0,0,2,,266.0,,12,1.0,0.0,3.0,1.0,1.0,2,1,116.5634748249648,300.0,29436.684733108283,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015287047576178716,29436.684733108283,8,4,8,8_0,8_2,8_0_0 -2996,2,41.0,0.0,7,111,250.0,,,0,42,0.0,0.0,,250.0,0.0,,71,0,0,0,0,0,0,0,0,2,2.0,2,,5,122572,2,2,0,0,2,,200.0,500.0,12,1.0,2.0,1.0,1.0,1.0,1,1,131.8306194529527,250.0,25273.970691385606,0,1,3,4,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009891599664045276,25273.970691385606,7,4,7,7_0,7_2,7_0_0 -2997,2,35.0,0.0,7,111,390.0,,,0,46,0.0,0.0,,440.0,86.01635020950958,,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,130755,2,1,0,0,2,,350.0,,32,1.0,0.0,3.0,2.0,1.3,5,4,116.5634748249648,390.0,38206.83823673362,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011516263064577951,29389.875566718172,8,4,8,8_0,8_2,8_0_0 -2998,2,48.0,0.0,6,111,500.0,,,0,54,0.0,0.0,,650.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,2,5.0,2,,4,129872,2,1,0,0,2,,682.0,,32,1.0,0.0,3.0,3.0,1.8,5,4,102.45785839085165,500.0,31453.355729065162,0,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020665521529690176,17474.086516147312,4,2,4_0,4_0_0,4_2_0,4_0_0 -2999,2,37.0,0.0,7,111,420.0,,,0,33,0.0,0.0,,470.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,2,5.0,2,,5,103536,2,1,0,0,2,,300.0,800.0,32,1.0,0.0,4.0,2.0,1.3,2,2,136.57290930931669,420.0,40856.38209568095,0,1,2,3,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011503710703001407,31427.986227446883,8,4,8,8_0,8_2,8_0_0 -3000,2,90.0,0.0,2,111,1500.0,,,0,86,0.0,0.0,,1650.0,258.04905062852873,,33,0,0,0,0,0,0,0,0,0,,1,,2,103305,2,3,0,0,2,,560.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,79.21992593555535,1500.0,11893.749335295623,0,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13872833145251323,7929.166223530415,1,1,1_0,1_1_0,1_2_0,1_0_1 -3001,2,42.0,0.0,7,111,1860.0,,,64,54,0.0,0.0,,2060.0,344.06540083803833,,12,0,0,0,0,0,0,0,0,0,,1,,5,128841,2,1,0,0,2,,580.0,,43,3.0,2.0,6.0,6.0,3.3,3,2,136.3227399239344,1860.0,57461.29555508821,4,1,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03585021848358911,17412.513804572187,4,2,4_0,4_1_0,4_2_0,4_0_0 -3002,2,52.0,0.0,6,111,300.0,,,0,47,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,1,10.0,1,,4,118045,2,1,0,0,2,,250.0,550.0,12,1.0,2.0,2.0,1.0,1.0,2,2,206.56402847180837,300.0,40356.80681026225,0,1,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007433690217624295,40356.80681026225,9,5,9,9_1,9_2,9_0_0 -3003,1,78.0,80.0,9,111,336.0,,,0,77,0.0,0.0,,461.0,215.04087552377396,,12,0,0,0,0,0,0,0,0,0,,2,2010.0,6,103134,2,1,0,0,2,,116.0,562.0,11,0.0,3.0,3.0,1.0,1.0,2,2,144.46465337012194,336.0,9583.657931034482,0,5,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04810271853580636,9583.657931034482,1,1,1_1,1_0_1,1_2_1,1_0_0 -3004,2,55.0,0.0,6,111,540.0,,,0,54,0.0,0.0,,690.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,2,15.0,2,,4,125701,2,1,0,0,2,,400.0,536.0,32,1.0,0.0,3.0,2.0,1.5,3,3,105.30093867989119,540.0,41064.0,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016803039158386907,27376.0,7,4,7,7_0,7_2,7_0_0 -3005,2,86.0,0.0,5,111,250.0,,,0,75,0.0,0.0,,275.0,43.00817510475479,,71,0,0,0,0,0,0,0,0,0,,1,,3,123758,2,1,0,0,2,,200.0,,21,1.0,0.0,3.0,2.0,1.5,1,1,78.77945560155895,250.0,34988.0,0,5,0,1,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007859837658625815,23325.333333333332,6,3,6,6_1,6_2,6_0_0 -3006,2,45.0,0.0,6,111,900.0,,,0,63,0.0,0.0,,1050.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,3,45.0,1,,4,128684,2,2,0,0,2,,275.0,,22,2.0,1.0,3.0,2.0,1.5,1,1,113.41749915405072,900.0,21890.188524590165,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047966695162103834,14593.459016393443,3,2,3_0,3_1_0,3_2_0,3_0_0 -3007,2,81.0,0.0,9,111,720.0,,,74,74,0.0,0.0,,720.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,2006.0,6,124845,2,1,0,0,2,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,155.9892189324855,720.0,90328.27724483391,5,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007970925849149619,60218.85149655594,10,5,10,10_0,10_2,10_0_0 -3008,2,68.0,0.0,6,111,1140.0,,,46,75,0.0,0.0,,1215.0,129.02452531426437,,10,0,0,0,0,0,0,0,0,0,,2,,4,129742,2,1,0,0,2,,0.0,800.0,42,1.0,3.0,5.0,2.0,1.5,2,2,116.69911232995959,1140.0,38424.98595793806,1,5,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03162005059234116,25616.65730529204,7,4,7,7_0,7_2,7_0_0 -3009,0,52.0,0.0,9,111,500.0,,,0,47,0.0,0.0,,650.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,1,2013.0,6,120708,2,2,0,0,2,,210.0,,12,1.0,1.0,2.0,1.0,1.0,4,2,220.56267870854617,500.0,7265.84,0,4,5,0,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08945971835328055,7265.84,1,1,1_0,1_1_0,1_2_0,1_0_0 -3010,1,57.0,150.0,7,111,240.0,,,0,68,0.0,0.0,,390.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,3,45.0,1,,5,122206,1,2,0,0,2,,120.0,430.0,12,1.0,0.0,2.0,1.0,1.0,2,2,186.52322345364672,240.0,6095.568686592247,0,4,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06398090482645863,6095.568686592247,1,1,1_1,1_1_1,1_2_1,1_0_0 -3011,2,63.0,0.0,6,111,640.0,,,0,45,0.0,0.0,,740.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,1,15.0,2,,4,121181,2,1,0,0,2,,650.0,607.0,22,1.0,0.0,5.0,4.0,2.3,1,1,103.41656437340036,640.0,65351.36329700115,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011323405705202131,28413.63621608746,8,4,8,8_0,8_2,8_0_0 -3012,2,78.0,0.0,6,111,300.0,,,0,75,0.0,0.0,,468.0,289.01493670395223,,12,0,0,0,0,0,0,0,0,0,,1,,4,109574,2,1,0,0,2,,330.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,116.33390647527888,300.0,30547.569099833167,0,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015320367996239542,30547.569099833167,8,4,8,8_1,8_2,8_0_0 -3013,2,56.0,0.0,2,111,510.0,,,46,44,0.0,0.0,,660.0,258.04905062852873,,33,0,0,0,0,0,0,0,0,0,,1,,2,110935,2,2,0,0,2,,290.0,734.0,43,2.0,1.0,3.0,2.0,1.5,2,2,163.84809454419593,510.0,8052.511803644102,4,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08196200342125821,5368.341202429401,1,1,1_0,1_1_0,1_2_0,1_0_1 -3014,0,44.0,0.0,7,111,600.0,,,85,52,0.0,0.0,,750.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,5,123099,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,4.0,2.1,1,1,175.14351898455664,600.0,9385.998251748251,6,4,5,0,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07990625822461705,4469.522977022976,1,1,1_0,1_1_0,1_2_0,1_0_0 -3015,1,38.0,350.0,5,111,360.0,,,47,22,0.0,0.0,,510.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,,3,121360,1,2,0,0,2,,0.0,457.0,43,2.0,0.0,3.0,5.0,2.4,1,1,130.20410288412813,360.0,19635.56342432556,4,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02597328067338192,8181.48476013565,1,1,1_1,1_1_1,1_2_1,1_0_0 -3016,1,24.0,522.0,7,111,180.0,,,0,85,0.0,0.0,,305.0,215.04087552377396,,12,0,0,0,0,0,0,0,0,0,,1,,5,131501,1,3,0,0,2,,0.0,780.0,31,0.0,0.0,3.0,5.0,2.2,2,2,95.31289175114632,180.0,25494.19643597904,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011963507097229568,11588.2711072632,2,1,2_1,2_1_1,2_2_1,2_0_0 -3017,2,51.0,0.0,7,111,651.0,,,0,54,0.0,0.0,,676.0,43.00817510475479,,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,128053,2,1,0,0,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,199.73665290996044,651.0,50002.79151141957,0,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01351924521745183,50002.79151141957,10,5,10,10_0,10_2,10_0_0 -3018,2,88.0,0.0,7,111,925.0,,,0,78,0.0,0.0,,950.0,43.00817510475479,,12,0,0,0,0,0,0,0,0,0,,2,,5,114138,2,1,0,0,2,,0.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,121.53731050966111,925.0,24673.037551170095,0,5,0,1,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03850356884634771,24673.037551170095,7,4,7,7_0,7_2,7_0_0 -3019,2,94.0,0.0,2,111,540.0,,,0,86,0.0,0.0,,632.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,0,,2,,2,113380,2,2,0,0,2,,300.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,91.9200906288319,540.0,11374.463157894737,0,7,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055563061854162696,11374.463157894737,2,1,2_0,2_0_0,2_2_0,2_0_1 -3020,2,68.0,0.0,2,111,250.0,,,75,77,0.0,0.0,,540.0,498.8948312151556,,41,0,0,0,0,0,0,0,0,0,,1,,2,102642,2,1,0,0,1,,630.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,84.14157441377174,250.0,16327.593597430372,5,5,0,1,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033072846698302495,10885.062398286915,2,1,2_0,2_1_0,2_2_0,2_0_1 -3021,2,72.0,0.0,2,111,120.0,,,0,77,0.0,0.0,,200.0,137.62616033521533,,41,0,0,0,0,0,0,0,0,0,,1,,2,103641,2,1,0,0,2,,260.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,104.97224777582264,120.0,32330.347230342544,0,5,0,1,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0061861383230767415,32330.347230342544,8,4,8,8_1,8_2,8_0_1 -3022,2,69.0,0.0,1,111,200.0,,,74,74,0.0,0.0,,280.0,137.62616033521533,,10,0,0,0,0,0,0,0,0,0,,1,,1,125903,2,2,0,0,2,,500.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,118.69397089475153,200.0,115243.77725344464,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0024296322688575427,76829.18483562976,10,5,10,10_1,10_2,10_1_0 -3023,2,78.0,0.0,2,111,420.0,,,0,72,0.0,0.0,,690.0,464.48829113135173,,10,0,0,0,0,0,0,0,0,0,,2,,2,120693,2,1,0,0,2,,700.0,200.0,11,0.0,2.0,5.0,1.0,1.0,2,2,102.6110095692883,420.0,5543.0,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12448132780082988,5543.0,1,1,1_0,1_0_0,1_2_0,1_0_1 -3024,2,55.0,0.0,2,111,300.0,,,0,65,0.0,0.0,,576.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,122614,2,2,0,0,2,,440.0,213.0,32,1.0,0.0,3.0,3.0,2.0,2,2,97.30278481369292,300.0,29140.891532529928,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01976603905055589,14570.445766264964,3,2,3_0,3_0_0,3_2_0,3_0_1 -3025,2,69.0,0.0,2,111,260.0,,,0,77,0.0,0.0,,306.0,79.13504219274881,,41,0,0,0,0,0,0,0,0,0,,2,,2,108134,2,1,0,0,2,,400.0,103.0,11,0.0,1.0,2.0,1.0,1.0,2,2,147.2030123224934,260.0,20030.434561414222,0,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015276752936227624,20030.434561414222,5,3,5,5_0,5_2,5_0_1 -3026,0,59.0,0.0,2,111,1050.0,,,0,54,0.0,0.0,,1188.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,2,20.0,2,,2,123169,2,2,0,0,2,,600.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,131.2872066450784,1050.0,28056.837592876993,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.042342619551021914,18704.55839525133,5,3,5,5_0,5_2,5_0_1 -3027,0,68.0,0.0,5,111,304.0,,,77,78,0.0,0.0,,634.0,567.7079113827633,,33,0,0,0,0,0,0,0,0,0,,1,,3,108130,2,1,0,0,2,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,1,110.82241601418218,304.0,22361.397540983606,5,5,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02835243185664112,14907.598360655737,3,2,3_0,3_1_0,3_2_0,3_0_0 -3028,2,63.0,0.0,2,111,320.0,,,77,67,0.0,0.0,,590.0,464.48829113135173,,50,0,0,0,0,0,0,0,0,0,,1,,2,115713,2,1,0,0,2,,1042.0,,42,2.0,1.0,4.0,3.0,2.0,1,1,151.63593058539914,320.0,55781.92497488155,7,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01057690282767537,27890.962487440775,7,4,7,7_1,7_2,7_0_1 -3031,0,69.0,0.0,6,111,0.0,,,0,75,0.0,0.0,,170.0,292.4555907123326,,20,0,0,0,0,0,0,0,0,0,,2,,4,105109,2,1,0,0,2,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,212.34860726164976,0.0,43590.61754912892,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0038999218079074256,43590.61754912892,10,5,10,10_0,10_2,10_0_0 -3032,2,67.0,0.0,2,111,1700.0,,,0,31,0.0,0.0,,1775.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,1,2.0,1,,2,127330,2,1,0,0,2,,500.0,1525.0,12,1.0,0.0,7.0,1.0,1.0,1,1,245.6124384998736,1700.0,121818.91946006924,0,1,2,3,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014570807292227077,121818.91946006924,10,5,10,10_1,10_2,10_0_1 -3033,2,51.0,0.0,2,111,900.0,,,0,21,0.0,0.0,,990.0,154.82943037711726,,12,0,0,0,0,0,0,0,0,0,,1,,2,126252,2,1,0,0,2,,300.0,800.0,32,1.0,1.0,6.0,2.0,1.5,1,1,129.13870259192666,900.0,14740.0,0,1,2,3,300.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06716417910447761,9826.666666666666,2,1,2_0,2_1_0,2_2_0,2_0_1 -3034,1,47.0,330.0,5,111,800.0,,,85,22,0.0,0.0,,1080.0,481.69156117325366,,71,0,0,0,0,0,0,0,0,0,,2,,3,130043,2,2,0,0,2,,400.0,500.0,42,3.0,0.0,4.0,6.0,3.3,1,1,150.87579570654847,800.0,21445.79881374407,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0503595137387867,6498.726913255779,1,1,1_1,1_0_1,1_2_1,1_0_0 -3035,1,40.0,300.0,6,111,600.0,,,0,46,0.0,0.0,,670.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,0,,2,,4,111900,2,3,0,0,2,,400.0,450.0,32,1.0,0.0,3.0,2.0,1.5,1,1,162.4199888992323,600.0,22092.892967087333,0,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030326494633279844,14728.595311391555,3,2,3_1,3_0_1,3_2_1,3_0_0 -3036,2,58.0,0.0,5,111,1200.0,,,53,52,0.0,0.0,,1292.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,2,80.0,2,,3,100676,2,1,0,0,2,,1200.0,515.0,43,2.0,0.0,4.0,4.0,2.5,1,1,212.17697923932647,1200.0,40921.15347652082,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031572912546106655,16368.461390608329,4,2,4_0,4_0_0,4_2_0,4_0_0 -3037,1,30.0,300.0,9,111,420.0,,,0,85,0.0,0.0,,564.0,247.7270886033876,,41,0,0,0,0,0,0,0,0,0,,2,2005.0,6,124644,2,1,0,0,2,,480.0,700.0,31,0.0,0.0,4.0,3.0,1.6,1,1,91.64578032850176,420.0,11496.190104942201,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.049059731515533736,7185.118815588876,1,1,1_1,1_0_1,1_2_1,1_0_0 -3038,1,32.0,270.0,2,111,180.0,,,0,45,0.0,0.0,,295.0,197.83760548187203,,10,0,0,0,0,0,0,0,0,0,,2,,2,122882,2,1,0,0,2,,300.0,700.0,12,1.0,0.0,3.0,1.0,1.0,2,2,112.4729138488867,180.0,14781.279779273938,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01995767649386111,14781.279779273938,3,2,3_1,3_0_1,3_2_1,3_0_1 -3039,2,58.0,0.0,2,111,400.0,,,0,63,0.0,0.0,,676.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,3,45.0,2,,2,114277,2,1,0,0,2,,380.0,820.0,22,2.0,0.0,4.0,2.0,1.5,2,2,78.87095453203943,400.0,43024.616168150504,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015711935636056114,28683.077445433668,8,4,8,8_0,8_2,8_0_1 -3040,2,51.0,0.0,2,111,160.0,,,0,45,0.0,0.0,,298.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,2,110267,2,1,0,0,2,,600.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,93.69440024727459,160.0,64330.3700712485,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004632337722757585,42886.91338083233,9,5,9,9_1,9_2,9_0_1 -3041,2,65.0,0.0,2,111,1080.0,,,0,77,0.0,0.0,,1146.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,2,,2,112622,2,1,0,0,2,,600.0,271.0,11,0.0,0.0,3.0,1.0,1.0,4,2,110.51746339122846,1080.0,26203.930860884426,0,5,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04373389649377668,26203.930860884426,7,4,7,7_0,7_2,7_0_1 -3042,1,65.0,83.0,2,111,250.0,,,0,77,0.0,0.0,,346.0,165.1513924022584,,10,0,0,0,0,0,0,0,0,0,,2,,2,129857,2,2,0,0,2,,400.0,279.0,11,0.0,2.0,3.0,1.0,1.0,2,2,111.69661178915595,250.0,13214.27981629258,0,5,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02618379547051807,13214.27981629258,2,1,2_1,2_0_1,2_2_1,2_0_1 -3043,2,41.0,0.0,2,111,720.0,,,0,64,0.0,0.0,,795.0,129.02452531426437,,10,0,0,0,0,0,0,0,0,2,1.0,2,,2,112024,2,2,0,0,2,,240.0,320.0,32,1.0,0.0,3.0,3.0,1.6,1,1,92.39915370683458,720.0,26911.728992179247,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029541022809461,16819.83062011203,4,2,4_0,4_0_0,4_2_0,4_0_1 -3044,1,34.0,400.0,6,111,0.0,,,52,43,0.0,0.0,,138.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,1,20.0,2,,4,107064,2,2,0,0,2,,0.0,700.0,43,2.0,0.0,3.0,4.0,2.1,2,2,95.49395287383891,0.0,18772.97635529481,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.007350992053057047,8939.512550140385,1,1,1_1,1_0_1,1_2_1,1_0_0 -3045,0,78.0,0.0,9,111,0.0,,,0,86,0.0,0.0,,60.0,103.2196202514115,,12,0,0,0,0,0,0,0,0,0,,2,2008.0,6,122240,2,1,0,0,2,,600.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,94.07635261167295,0.0,5677.447425294951,0,7,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010568129566938776,5677.447425294951,1,1,1_0,1_0_0,1_2_0,1_0_0 -3046,0,67.0,0.0,2,111,180.0,,,0,75,0.0,0.0,,260.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,2,,2,130075,2,1,0,0,2,,0.0,,11,0.0,3.0,2.0,1.0,1.0,4,2,123.03963967490203,180.0,28249.60916635704,0,5,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009203667154080086,28249.60916635704,8,4,8,8_0,8_2,8_0_1 -3047,2,50.0,0.0,2,111,500.0,,,0,21,0.0,0.0,,523.0,39.567521096374406,,10,0,0,0,0,0,0,0,0,0,,2,,2,109428,2,1,0,0,2,,500.0,488.0,12,1.0,0.0,3.0,1.0,1.0,2,2,111.28557025761023,500.0,18149.760226298768,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028815807673435806,18149.760226298768,4,2,4_0,4_0_0,4_2_0,4_0_1 -3048,2,57.0,0.0,2,111,600.0,,,0,67,0.0,0.0,,738.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,3,90.0,2,,2,101099,2,1,0,0,2,,650.0,700.0,12,1.0,1.0,4.0,1.0,1.0,2,2,93.5920358601443,600.0,28219.019973960094,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02615257371379341,28219.019973960094,8,4,8,8_0,8_2,8_0_1 -3049,2,45.0,0.0,5,111,360.0,,,0,63,0.0,0.0,,448.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,1,,3,101752,2,1,0,0,2,,700.0,,22,1.0,6.0,4.0,2.0,1.5,1,1,119.99137961223458,360.0,61938.1844030013,0,1,0,1,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007233017956824249,41292.1229353342,9,5,9,9_1,9_2,9_0_0 -3050,2,63.0,0.0,6,111,171.0,,,75,74,0.0,0.0,,217.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,0,,2,,4,123824,2,1,0,0,2,,140.0,764.0,41,0.0,4.0,5.0,2.0,1.5,4,2,157.2657279449122,171.0,86337.69146567094,5,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00251338663700873,57558.46097711396,10,5,10,10_0,10_2,10_0_0 -3051,1,41.0,321.0,6,111,250.0,,,0,56,0.0,0.0,,388.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,2,,4,121443,2,1,0,0,2,,0.0,262.0,32,1.0,0.0,4.0,6.0,3.0999999999999996,1,1,170.9788195178932,250.0,26496.213787434135,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014643601652399465,8547.16573788198,1,1,1_1,1_0_1,1_2_1,1_0_0 -3052,1,58.0,253.0,2,111,270.0,,,0,55,0.0,0.0,,316.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,0,,2,,2,118571,2,1,0,0,2,,0.0,255.0,12,1.0,1.0,4.0,1.0,1.0,1,1,104.9478707801438,270.0,6573.323218900845,0,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.048073096282771836,6573.323218900845,1,1,1_1,1_0_1,1_2_1,1_0_1 -3053,1,26.0,98.0,2,111,120.0,,,0,46,0.0,0.0,,193.0,125.58387130588399,,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,130184,2,1,0,0,2,,0.0,312.0,32,1.0,0.0,2.0,2.0,1.3,2,2,194.92520055239098,120.0,19604.44254187485,0,2,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009844707371186626,15080.340416826808,3,2,3_1,3_0_1,3_2_1,3_0_1 -3054,2,66.0,0.0,2,111,450.0,,,0,77,0.0,0.0,,588.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,2,,2,132710,1,2,0,0,2,,0.0,375.0,21,0.0,2.0,4.0,2.0,1.5,1,1,88.690654472359,450.0,24000.04618731639,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02449995285053859,16000.03079154426,3,2,3_0,3_0_0,3_2_0,3_0_1 -3055,2,56.0,0.0,6,111,1560.0,,,55,21,0.0,0.0,,2060.0,860.1635020950959,,41,0,0,0,0,0,0,0,0,0,,2,,4,132236,2,3,0,0,2,,0.0,375.0,43,2.0,1.0,4.0,4.0,2.5,1,1,92.39915370683458,1560.0,31224.455364438152,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.065973928959099,12489.782145775262,2,1,2_0,2_0_0,2_2_0,2_0_0 -3056,1,49.0,222.0,2,111,328.0,,,0,67,0.0,0.0,,420.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,0,,2,,2,102809,2,1,0,0,2,,0.0,230.0,12,1.0,1.0,2.0,1.0,1.0,4,4,169.40685849316625,328.0,7385.12,0,4,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05687111380722317,7385.12,1,1,1_1,1_0_1,1_2_1,1_0_1 -3057,1,27.0,300.0,6,111,350.0,,,69,56,0.0,0.0,,450.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,0,,2,,4,116372,1,3,0,0,2,,0.0,403.0,43,2.0,1.0,4.0,4.0,2.1,4,4,94.80665632298394,350.0,21519.947840853278,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02091083135181787,10247.594209930132,2,1,2_1,2_0_1,2_2_1,2_0_0 -3058,1,31.0,301.0,2,111,500.0,,,0,55,0.0,0.0,,642.0,244.28643459500722,,20,0,0,0,0,0,0,0,0,0,,2,,2,125246,2,2,0,0,2,,0.0,398.0,32,1.0,0.0,4.0,4.0,2.1,1,1,97.30278481369292,500.0,37707.11749732078,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01702596333558555,17955.77023681942,4,2,4_1,4_0_1,4_2_1,4_0_1 -3059,1,63.0,265.0,2,111,320.0,,,0,72,0.0,0.0,,608.0,495.4541772067752,,41,0,0,0,0,0,0,0,0,0,,2,,2,119223,2,1,0,0,2,,0.0,390.0,11,0.0,2.0,4.0,1.0,1.0,2,2,110.51746339122846,320.0,11103.236842105252,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054758806701696805,11103.236842105252,2,1,2_1,2_0_1,2_2_1,2_0_1 -3060,2,44.0,0.0,8,111,1200.0,,,33,37,0.0,0.0,,1280.0,137.62616033521533,,12,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,120085,2,1,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,212.49486159482646,1200.0,160371.54265321567,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00798146590612929,76367.40126343603,10,5,10,10_1,10_2,10_0_0 -3061,2,83.0,0.0,6,111,528.0,,,78,75,0.0,0.0,,666.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,4,117729,2,2,0,0,2,,280.0,,41,1.0,1.0,5.0,3.0,2.0,4,4,189.07275492168367,528.0,70965.35164830885,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009384861549063728,35482.67582415442,9,5,9,9_1,9_2,9_0_0 -3062,2,79.0,0.0,7,111,380.0,,,75,75,0.0,0.0,,860.0,825.756962011292,,41,0,0,0,0,0,0,0,0,0,,1,,5,122716,2,2,0,0,2,,250.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,119.76000018324545,380.0,35741.52719572281,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024061646702744036,23827.68479714854,6,3,6,6_1,6_2,6_0_0 -3063,2,43.0,0.0,9,111,480.0,,,63,47,0.0,0.0,,641.0,276.9726476746209,,71,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,118958,2,1,0,0,2,,350.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,224.84372265757708,480.0,43932.343986514636,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01459061688574504,20920.163803102205,5,3,5,5_1,5_2,5_0_0 -3064,2,48.0,0.0,7,111,0.0,,,52,53,0.0,0.0,,92.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,0,,2,,5,118498,2,2,0,0,2,,0.0,390.0,43,2.0,1.0,2.0,3.0,1.8,2,2,168.42799274853843,0.0,38940.12165261685,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0023626017612561165,21633.40091812047,6,3,6,6_0,6_2,6_0_0 -3065,1,62.0,250.0,2,111,700.0,,,0,68,0.0,0.0,,746.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,115065,2,2,0,0,2,,0.0,750.0,12,1.0,6.0,6.0,1.0,1.0,1,1,125.6520610351923,700.0,11274.437435472712,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06616738123472694,11274.437435472712,2,1,2_1,2_0_1,2_2_1,2_0_1 -3066,2,56.0,0.0,6,111,750.0,,,0,46,0.0,0.0,,950.0,344.06540083803833,,50,0,0,0,0,0,0,0,0,2,45.0,2,,4,122916,2,2,0,0,2,,320.0,550.0,12,1.0,2.0,3.0,1.0,1.0,1,1,255.0806536334287,750.0,45275.74411133355,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0209825375296746,45275.74411133355,10,5,10,10_0,10_2,10_0_0 -3067,2,48.0,0.0,8,111,488.0,,,0,90,0.0,0.0,,534.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,105509,2,1,0,0,2,,350.0,,32,2.0,0.0,4.0,4.0,2.3,1,1,143.32040819652494,488.0,89524.79587544987,0,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005964827897992866,38923.82429367386,9,5,9,9_1,9_2,9_0_0 -3068,2,84.0,0.0,5,111,384.0,,,0,78,0.0,0.0,,660.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,3,121762,2,1,0,0,2,,300.0,,21,0.0,2.0,4.0,2.0,1.5,3,3,112.79743587130106,384.0,41254.695648220884,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015998178864966673,27503.130432147256,7,4,7,7_1,7_2,7_0_0 -3069,2,49.0,0.0,7,111,200.0,,,0,46,0.0,0.0,,223.0,39.567521096374406,,43,0,0,0,0,0,0,0,0,2,1.0,2,,5,119828,2,2,0,0,2,,400.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,192.16822679183161,200.0,36643.908450398376,0,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006085595380794475,36643.908450398376,9,5,9,9_0,9_2,9_0_0 -3070,2,55.0,0.0,6,111,480.0,,,68,68,0.0,0.0,,624.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,0,,2,,4,127881,2,1,0,0,2,,800.0,331.0,43,4.0,0.0,4.0,4.0,2.5,1,1,137.76720498696795,480.0,45206.85738539898,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01380321562014928,18082.742954159592,4,2,4_0,4_0_0,4_2_0,4_0_0 -3071,2,54.0,0.0,5,111,560.0,,,0,52,0.0,0.0,,700.0,240.84578058662683,,70,0,0,0,0,0,0,0,0,2,1.0,2,,3,109135,2,1,0,0,2,,580.0,370.0,32,2.0,0.0,5.0,4.0,2.3,1,1,222.27152003941185,560.0,35557.415428319044,0,1,3,4,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019686470221975075,15459.745838399585,3,2,3_0,3_0_0,3_2_0,3_0_0 -3072,2,74.0,0.0,5,111,480.0,,,86,77,0.0,0.0,,730.0,430.0817510475479,,31,0,0,0,0,0,0,0,0,0,,2,,3,114895,2,1,0,0,2,,420.0,395.0,41,0.0,3.0,6.0,2.0,1.5,2,2,164.18643393349575,480.0,36527.83290879347,5,5,2,3,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019984760711721953,24351.888605862314,7,4,7,7_0,7_2,7_0_0 -3073,2,61.0,0.0,5,111,700.0,,,71,43,0.0,0.0,,850.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,109061,2,1,0,0,2,,200.0,,42,3.0,0.0,5.0,4.0,2.5,4,3,125.5630312885297,700.0,41398.342012211695,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0205322232409517,16559.33680488468,4,2,4_0,4_1_0,4_2_0,4_0_0 -3074,2,70.0,0.0,2,111,840.0,,,0,72,0.0,0.0,,1024.0,316.54016877099525,,50,0,0,0,0,0,0,0,0,0,,1,,2,121199,2,1,0,0,2,,400.0,,11,0.0,4.0,4.0,1.0,1.0,3,2,104.93335641765982,840.0,5110.0,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20039138943248533,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -3075,1,75.0,170.0,7,111,240.0,,,0,77,0.0,0.0,,308.0,116.98223628493304,,43,0,0,0,0,0,0,0,0,0,,2,,5,129843,2,1,0,0,2,,240.0,424.0,11,0.0,3.0,4.0,1.0,1.0,1,1,141.1241243678004,240.0,10175.050462162268,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030270120147841303,10175.050462162268,2,1,2_1,2_0_1,2_2_1,2_0_0 -3076,1,33.0,357.0,7,111,450.0,,,0,64,0.0,0.0,,538.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,0,,2,,5,128547,2,2,0,0,2,,1319.0,451.0,32,1.0,0.0,3.0,2.0,1.5,2,2,119.26293367341867,450.0,9280.84188034188,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05796887900219043,6187.227920227921,1,1,1_1,1_0_1,1_2_1,1_0_0 -3077,1,68.0,136.0,7,111,194.0,,,0,77,0.0,0.0,,238.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,2,,5,124484,2,1,0,0,2,,323.0,297.0,11,0.0,3.0,4.0,1.0,1.0,1,1,211.4524460417737,194.0,11328.319509243789,0,5,2,3,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021009294432929308,11328.319509243789,2,1,2_1,2_0_1,2_2_1,2_0_0 -3078,2,46.0,0.0,7,111,480.0,,,90,52,0.0,0.0,,569.0,153.10910337292705,,71,0,0,0,0,0,0,0,0,2,5.0,2,,5,124118,2,1,0,0,2,,600.0,267.0,43,3.0,3.0,4.0,4.0,2.5,1,1,127.48716346850844,480.0,22491.097827262736,1,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025298898451736884,8996.439130905095,1,1,1_0,1_0_0,1_2_0,1_0_0 -3079,2,59.0,0.0,9,111,100.0,,,0,69,0.0,0.0,,284.0,316.54016877099525,,71,0,0,0,0,0,0,0,0,2,14.0,1,2008.0,6,123800,2,1,0,0,2,,266.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,97.52567223177118,100.0,25148.946246797357,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011292719671551509,25148.946246797357,7,4,7,7_1,7_2,7_0_0 -3080,2,38.0,0.0,9,111,0.0,,,0,67,0.0,0.0,,343.0,0.0,,12,0,0,0,0,0,0,0,0,2,60.0,2,2006.0,6,101293,2,2,0,0,2,,441.0,780.0,32,1.0,0.0,4.0,4.0,2.1,2,2,128.33909486341807,0.0,28616.935568926332,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011985909503617368,13627.112175679205,3,2,3_0,3_0_0,3_2_0,3_0_0 -3081,2,57.0,0.0,8,111,1300.0,,,0,43,0.0,0.0,,1300.0,0.0,,50,0,0,0,0,0,0,0,0,2,60.0,2,1999.0,6,116590,2,1,0,0,2,,0.0,,22,2.0,1.0,4.0,3.0,2.0,2,2,175.59120235794472,1300.0,114429.93424629468,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011360663698380959,57214.96712314734,10,5,10,10_0,10_2,10_0_0 -3082,1,47.0,200.0,5,111,449.0,,,0,55,0.0,0.0,,521.0,123.8635443016938,,20,0,0,0,0,0,0,0,0,2,45.0,2,,3,107483,2,2,0,0,2,,128.0,500.0,32,1.0,0.0,3.0,2.0,1.3,4,2,118.01633569028844,449.0,19186.207037206594,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027154924315663735,14758.620797851225,3,2,3_1,3_0_1,3_2_1,3_0_0 -3083,1,60.0,237.0,2,111,200.0,,,0,54,0.0,0.0,,222.0,37.84719409218422,,12,0,0,0,0,0,0,0,0,0,,2,,2,100290,2,2,0,0,2,,124.0,535.0,22,2.0,0.0,2.0,2.0,1.5,3,3,123.23671175719183,200.0,7371.866666666667,0,4,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030114489319756188,4914.577777777778,1,1,1_1,1_0_1,1_2_1,1_0_1 -3084,2,62.0,0.0,7,111,475.0,,,0,75,0.0,0.0,,562.0,149.6684493645467,,12,0,0,0,0,0,0,0,0,0,,1,,5,126245,2,3,0,0,2,,340.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,103.39283513987166,475.0,45016.08861302193,0,5,0,1,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012484425398021557,45016.08861302193,10,5,10,10_1,10_2,10_0_0 -3085,1,48.0,350.0,1,111,0.0,,,0,81,0.0,0.0,,92.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,2,,1,118577,1,3,0,0,2,,0.0,400.0,32,1.0,2.0,3.0,2.0,1.5,2,2,123.23671175719183,0.0,9386.52097902098,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0098012884865033,6257.680652680653,1,1,1_1,1_0_1,1_2_1,1_1_0 -3086,2,43.0,0.0,9,111,900.0,,,0,63,0.0,0.0,,1038.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,110892,1,1,0,0,2,,347.0,,32,1.0,0.0,3.0,3.0,1.8,1,1,106.71523384020679,900.0,20304.345113868094,0,4,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05112206250331287,11280.191729926719,2,1,2_0,2_1_0,2_2_0,2_0_0 -3087,2,85.0,0.0,2,111,546.0,,,0,78,0.0,0.0,,684.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,2,105689,2,1,0,0,2,,312.0,,21,1.0,8.0,4.0,2.0,1.5,2,2,128.11110379737067,546.0,23317.335856948626,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029334397557093394,15544.890571299084,3,2,3_0,3_1_0,3_2_0,3_0_1 -3088,2,65.0,0.0,6,111,600.0,,,56,21,0.0,0.0,,675.0,129.02452531426437,,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,126378,2,2,0,0,2,,500.0,,43,4.0,1.0,4.0,4.0,2.5,2,2,87.01171884178348,600.0,54448.91194121663,1,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012396941939422665,21779.56477648665,6,3,6,6_1,6_2,6_0_0 -3089,2,77.0,0.0,7,111,1064.0,,,86,74,0.0,0.0,,1114.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,1,,5,110639,2,2,0,0,2,,542.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,132.3596903307077,1064.0,79445.0,5,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01402227956447857,39722.5,9,5,9,9_1,9_2,9_0_0 -3090,1,41.0,413.0,7,111,0.0,,,22,85,0.0,0.0,,59.0,101.4992932472213,,71,0,0,0,0,0,0,0,0,0,,2,,5,106539,2,2,0,0,2,,490.0,650.0,42,1.0,0.0,3.0,4.0,2.1,1,1,123.23671175719183,0.0,10260.908186848144,1,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.005749978357239653,4886.146755641973,1,1,1_1,1_0_1,1_2_1,1_0_0 -3091,0,45.0,0.0,7,111,210.0,,,0,62,0.0,0.0,,233.0,39.567521096374406,,12,0,0,0,0,0,0,0,0,2,5.0,1,,5,101699,2,1,0,0,2,,160.0,,12,1.0,1.0,4.0,1.0,1.0,5,3,105.63811588638723,210.0,27416.97928553944,0,1,5,0,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008498383340242423,27416.97928553944,7,4,7,7_1,7_2,7_0_0 -3092,2,59.0,0.0,6,111,450.0,,,0,55,0.0,0.0,,542.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,2,45.0,2,,4,126471,2,1,0,0,2,,544.0,,32,2.0,0.0,3.0,3.0,2.0,1,1,116.04288549349984,450.0,34128.29433460222,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01588125075006967,17064.14716730111,4,2,4_0,4_0_0,4_2_0,4_0_0 -3093,2,59.0,0.0,5,111,340.0,,,0,31,0.0,0.0,,404.0,110.10092826817227,,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,108064,2,1,0,0,2,,140.0,960.0,12,1.0,2.0,4.0,1.0,1.0,1,1,192.19580968779528,340.0,61866.026200302425,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006530240017226532,61866.026200302425,10,5,10,10_0,10_2,10_0_0 -3094,2,53.0,0.0,9,111,600.0,,,90,67,0.0,0.0,,876.0,474.81025315649293,,20,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,116451,2,1,0,0,2,,485.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,100.03462810496016,600.0,56795.81859781076,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015423670643841484,24693.8341729612,7,4,7,7_1,7_2,7_0_0 -3095,2,71.0,0.0,7,111,390.0,,,21,75,0.0,0.0,,528.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,,5,123152,2,1,0,0,2,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,172.3357322544114,390.0,15862.318065207732,1,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03328643378789072,10574.878710138488,2,1,2_0,2_1_0,2_2_0,2_0_0 -3096,2,73.0,0.0,2,111,1200.0,,,0,86,0.0,0.0,,1384.0,316.54016877099525,,10,0,0,0,0,0,0,0,0,0,,1,,2,126788,2,2,0,0,2,,0.0,,21,3.0,2.0,5.0,7.0,3.6,2,2,155.01425347027924,1200.0,15119.80932107545,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09153554589282069,4199.947033632069,1,1,1_0,1_1_0,1_2_0,1_0_1 -3097,2,66.0,0.0,7,111,372.0,,,77,78,0.0,0.0,,602.0,395.67521096374406,,10,0,0,0,0,0,0,0,0,0,,1,,5,120744,2,1,0,0,2,,350.0,,41,1.0,2.0,4.0,4.0,2.5,3,3,124.25972947842942,372.0,53579.20866698955,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011235701589801484,21431.68346679582,6,3,6,6_1,6_2,6_0_0 -3098,2,51.0,0.0,7,111,420.0,,,46,56,0.0,0.0,,443.0,39.567521096374406,,12,0,0,0,0,0,0,0,0,0,,2,,5,124603,2,1,0,0,2,,129.0,368.0,43,2.0,1.0,2.0,2.0,1.5,3,3,160.71013636510176,420.0,13702.911890879257,4,4,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03232889502083594,9135.274593919505,1,1,1_0,1_0_0,1_2_0,1_0_0 -3099,1,48.0,413.0,6,111,0.0,,,0,85,0.0,0.0,,728.0,0.0,,30,0,0,0,0,0,0,0,0,0,,2,,4,114404,2,2,0,0,2,,603.0,500.0,31,2.0,1.0,2.0,3.0,2.0,3,3,165.57403611016036,0.0,3675.0,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1980952380952381,1837.5,1,1,1_1,1_0_1,1_2_1,1_0_0 -3100,0,30.0,0.0,5,111,0.0,,,0,62,0.0,0.0,,216.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,119552,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,149.58805141520196,0.0,23788.902957607388,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009079863850170776,23788.902957607388,6,3,6,6_0,6_2,6_0_0 -3101,2,81.0,0.0,2,111,492.0,,,0,78,0.0,0.0,,741.0,428.3614240433577,,71,0,0,0,0,0,0,0,0,0,,1,,2,130794,2,1,0,0,2,,400.0,,21,1.0,5.0,4.0,2.0,1.5,1,1,135.28029714830535,492.0,26088.49988785541,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0284033195923598,17392.333258570274,4,2,4_0,4_1_0,4_2_0,4_0_1 -3102,1,59.0,253.0,7,111,360.0,,,0,56,0.0,0.0,,444.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,2,,5,120711,2,2,0,0,2,,250.0,358.0,12,1.0,2.0,3.0,1.0,1.0,2,2,111.65522910919334,360.0,6573.323218900845,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06754574287832499,6573.323218900845,1,1,1_1,1_0_1,1_2_1,1_0_0 -3103,2,45.0,0.0,7,111,500.0,,,48,56,0.0,0.0,,569.0,118.70256328912323,,30,0,0,0,0,0,0,0,0,0,,2,,5,129949,2,1,0,0,2,,594.0,306.0,43,2.0,0.0,2.0,3.0,1.8,1,1,147.63625887472256,500.0,29932.314767318247,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019009555539662625,16629.063759621247,4,2,4_0,4_0_0,4_2_0,4_0_0 -3104,2,44.0,0.0,7,111,345.0,,,0,54,0.0,0.0,,390.0,77.41471518855863,,71,0,0,0,0,0,0,0,0,2,30.0,2,,5,100992,2,1,0,0,2,,145.0,306.0,32,1.0,0.0,2.0,2.0,1.3,4,4,136.4145735352268,345.0,30968.50955669646,0,1,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01259343783678051,23821.930428228046,6,3,6,6_0,6_2,6_0_0 -3105,2,50.0,0.0,7,111,240.0,,,0,63,0.0,0.0,,284.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,0,,1,,5,126036,2,1,0,0,2,,109.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,134.04321901454819,240.0,10309.91,0,4,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027546312237449213,10309.91,2,1,2_0,2_1_0,2_2_0,2_0_0 -3106,2,41.0,0.0,2,111,250.0,,,0,54,0.0,0.0,,370.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,2,121118,2,2,0,0,2,,180.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,88.57414691219984,250.0,10944.947368421053,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03380555315117766,7296.631578947369,1,1,1_0,1_1_0,1_2_0,1_0_1 -3107,2,60.0,0.0,7,111,2671.0,,,34,34,0.0,0.0,,2717.0,79.13504219274881,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,122814,2,1,0,0,2,,741.0,2340.0,43,2.0,5.0,6.0,3.0,2.0,2,2,174.9144932307449,2671.0,260547.7021419405,1,1,2,3,205.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010428032861789891,130273.85107097025,10,5,10,10_1,10_2,10_0_0 -3108,0,29.0,0.0,2,111,0.0,,,0,64,0.0,0.0,,316.0,0.0,,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,127763,2,1,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,5,3,131.65830230675104,0.0,25398.0,0,1,5,0,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012441924560989054,25398.0,7,4,7,7_0,7_2,7_0_1 -3109,1,33.0,354.0,5,111,0.0,,,0,55,0.0,0.0,,530.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,3,109510,2,1,0,0,2,,0.0,580.0,32,1.0,0.0,3.0,2.0,1.3,7,7,120.12981911320719,0.0,15517.0,0,1,3,4,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03415608687246246,11936.153846153846,2,1,2_1,2_0_1,2_2_1,2_0_0 -3110,2,27.0,0.0,7,111,0.0,,,0,54,0.0,0.0,,2553.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,108961,2,2,0,0,2,,0.0,560.0,12,1.0,0.0,2.0,1.0,1.0,5,3,133.93778080778014,0.0,12863.181769059129,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.19847344504926,12863.181769059129,2,1,2_0,2_0_0,2_2_0,2_0_0 -3111,2,46.0,0.0,7,111,420.0,,,52,33,0.0,0.0,,545.0,215.04087552377396,,43,0,0,0,0,0,0,0,0,2,60.0,2,,5,130480,2,2,0,0,2,,700.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,114.24847607588198,420.0,77910.67682337163,1,1,1,2,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0069951901616199415,33874.207314509404,9,5,9,9_0,9_2,9_0_0 -3112,2,69.0,0.0,7,111,555.0,,,77,75,0.0,0.0,,747.0,330.3027848045168,,12,0,0,0,0,0,0,0,0,0,,1,,5,118809,2,2,0,0,2,,529.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,116.23299832674974,555.0,36857.42673119101,5,5,0,1,152.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020267285761646592,24571.617820794007,7,4,7,7_1,7_2,7_0_0 -3113,2,72.0,0.0,6,111,360.0,,,90,77,0.0,0.0,,776.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,4,130209,2,2,0,0,2,,116.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,89.51917460487854,360.0,55211.33933420813,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014055083780936317,36807.55955613875,9,5,9,9_0,9_2,9_0_0 -3114,2,59.0,0.0,7,111,480.0,,,0,33,0.0,0.0,,480.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,112224,2,1,0,0,2,,101.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,143.2032906392241,480.0,70732.68279334411,0,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006786113307795638,70732.68279334411,10,5,10,10_1,10_2,10_0_0 -3115,2,32.0,0.0,7,111,318.0,,,0,46,0.0,0.0,,410.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,109686,2,1,0,0,2,,120.0,465.0,12,1.0,0.0,2.0,1.0,1.0,1,1,159.5135891836593,318.0,20773.11687129894,0,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019737047769007365,20773.11687129894,5,3,5,5_0,5_2,5_0_0 -3116,2,56.0,0.0,2,111,228.0,,,69,62,0.0,0.0,,274.0,79.13504219274881,,60,0,0,0,0,0,0,0,0,2,45.0,1,,2,115963,2,2,0,0,2,,248.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,106.82062173118638,228.0,42503.70103814681,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006446497441577774,17001.480415258724,4,2,4_0,4_1_0,4_2_0,4_0_1 -3117,2,78.0,0.0,8,111,331.0,,,77,78,0.0,0.0,,441.0,189.2359704609211,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,101324,2,1,0,0,2,,428.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,113.14575439979576,331.0,40505.424652693066,5,5,0,1,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010887430604203762,27003.61643512871,7,4,7,7_1,7_2,7_0_0 -3118,0,69.0,0.0,2,111,150.0,,,0,78,0.0,0.0,,196.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,0,,1,,2,107975,2,1,0,0,2,,50.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,106.17565811937334,150.0,3731.581989712424,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05252463982845647,3731.581989712424,1,1,1_0,1_1_0,1_2_0,1_0_1 -3119,2,47.0,0.0,9,111,720.0,,,85,69,0.0,0.0,,858.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,120852,2,1,0,0,2,,760.0,,42,1.0,2.0,4.0,4.0,2.3,2,2,180.65891747226078,720.0,12677.54504413738,6,4,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0676787183175322,5511.976106146687,1,1,1_0,1_1_0,1_2_0,1_0_0 -3120,2,60.0,0.0,7,111,240.0,,,0,85,0.0,0.0,,424.0,316.54016877099525,,71,0,0,0,0,0,0,0,0,0,,1,,5,112629,2,2,0,0,2,,320.0,,31,1.0,2.0,4.0,2.0,1.5,1,1,79.03402367197336,240.0,3372.9326570899325,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12570663072941834,2248.6217713932883,1,1,1_0,1_1_0,1_2_0,1_0_0 -3121,1,52.0,380.0,5,111,0.0,,,85,45,0.0,0.0,,658.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,3,121391,2,2,0,0,2,,576.0,800.0,42,1.0,2.0,4.0,6.0,2.6999999999999997,1,1,117.83953555342784,0.0,42136.10866867636,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01561605997302622,15605.966173583838,3,2,3_1,3_0_1,3_2_1,3_0_0 -3122,2,42.0,0.0,2,111,888.0,,,0,54,0.0,0.0,,1118.0,395.67521096374406,,50,0,0,0,0,0,0,0,0,0,,1,,2,116126,2,1,0,0,2,,390.0,,22,2.0,2.0,6.0,4.0,2.5,1,1,88.57414691219984,888.0,18961.786320262006,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058960689732345424,7584.714528104802,1,1,1_0,1_1_0,1_2_0,1_0_1 -3123,2,70.0,0.0,7,111,1500.0,,,0,71,0.0,0.0,,2135.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,,5,126945,2,1,0,0,2,,1500.0,,21,1.0,5.0,5.0,4.0,2.5,2,2,79.03402367197336,1500.0,11893.749335295623,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17950605312188833,4757.499734118249,1,1,1_0,1_1_0,1_2_0,1_0_0 -3124,2,90.0,0.0,2,400,270.0,,,0,86,0.0,0.0,,339.0,118.70256328912323,,31,0,0,0,0,0,0,0,0,0,,1,,2,119484,2,3,0,0,2,,120.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,21.982043102130877,270.0,10786.575900824855,0,5,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03142795295901793,10786.575900824855,2,1,2_0,2_1_0,2_1_0,2_0_1 -3125,2,35.0,0.0,8,400,120.0,,,0,42,0.0,0.0,,120.0,0.0,,70,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,107569,2,1,0,0,1,,200.0,490.0,12,1.0,0.0,3.0,1.0,1.0,1,1,35.94943019102867,120.0,55711.14054142817,0,1,2,3,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0021539677492469402,55711.14054142817,10,5,10,10_0,10_0,10_0_0 -3126,2,32.0,0.0,9,400,360.0,,,81,68,0.0,0.0,,480.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,110751,2,3,0,0,2,,0.0,,43,2.0,0.0,1.0,6.0,2.8999999999999995,2,2,128.69740850918578,360.0,19540.427320490366,4,1,0,1,25.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024564457681878087,6738.07838637599,1,1,1_0,1_1_0,1_1_0,1_0_0 -3127,1,31.0,529.0,9,400,960.0,,,52,81,0.0,0.0,,1236.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,101279,2,1,0,0,2,,836.0,548.0,43,2.0,1.0,4.0,7.0,2.9999999999999996,2,2,4.386640891614599,960.0,28269.140343090046,4,4,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04372258883712823,9423.046781030016,1,1,1_1,1_0_1,1_0_1,1_0_0 -3128,1,23.0,235.0,9,400,240.0,,,84,69,0.0,0.0,,240.0,0.0,,50,0,0,0,0,0,0,0,0,2,40.0,2,2005.0,6,105046,2,1,0,0,2,,360.0,435.0,42,1.0,0.0,3.0,3.0,1.8,1,1,88.42300065956711,240.0,15172.752066115703,3,1,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015817829155461916,8429.306703397613,1,1,1_1,1_0_1,1_0_1,1_0_0 -3129,2,82.0,0.0,9,112,250.0,,,0,78,0.0,0.0,,350.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,0,,1,2008.0,6,106703,2,1,0,0,2,,250.0,,11,0.0,1.0,1.0,1.0,1.0,2,2,110.76353033010476,250.0,13934.511495436042,0,5,0,1,30.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025117493362765905,13934.511495436042,3,2,3_0,3_1_0,3_0_0,3_0_0 -3130,2,68.0,0.0,6,400,912.0,,,77,75,0.0,0.0,,1004.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,4,101429,2,2,0,0,2,,560.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,19.311440066095045,912.0,46693.0,5,5,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02150215235688433,31128.666666666668,8,4,8,8_1,8_0,8_0_0 -3131,2,59.0,0.0,9,111,0.0,,,0,85,0.0,0.0,,1052.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,130722,2,2,0,0,2,,107.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,109.6381772248509,0.0,48674.80611594064,0,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02161282363393899,48674.80611594064,10,5,10,10_1,10_2,10_0_0 -3132,0,21.0,0.0,5,400,300.0,,,0,52,0.0,0.0,,346.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,0,,1,,3,131775,2,1,0,0,2,,400.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,63.057027149753644,300.0,16276.26060111076,0,4,5,0,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021257954052197194,10172.662875694225,2,1,2_0,2_1_0,2_0_0,2_0_0 -3133,2,59.0,0.0,2,400,960.0,,,81,52,0.0,0.0,,1080.0,206.439240502823,,20,0,0,0,0,0,0,0,0,1,10.0,1,,2,109799,2,2,0,0,2,,260.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,21.221823116462247,960.0,32875.22980983983,4,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032851481381181005,21916.819873226556,6,3,6,6_1,6_1,6_0_1 -3134,1,39.0,425.0,9,111,0.0,,,0,52,0.0,0.0,,594.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,2011.0,6,112460,2,1,0,0,2,,328.0,850.0,32,1.0,0.0,3.0,3.0,1.8,1,1,97.14855764632246,0.0,21051.79761793032,0,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028216117729256338,11695.4431210724,2,1,2_1,2_0_1,2_2_1,2_0_0 -3135,2,40.0,0.0,9,400,960.0,,,81,21,0.0,0.0,,960.0,0.0,,71,0,0,0,0,0,0,0,0,0,,7,2012.0,6,104500,2,2,0,0,2,,460.0,250.0,43,2.0,3.0,1.0,2.0,1.5,4,3,48.19226610243404,960.0,19105.925925925923,4,1,2,3,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050246190826968566,12737.283950617282,2,1,2_0,2_1_0,2_1_0,2_0_0 -3136,2,61.0,0.0,7,111,2250.0,,,22,63,0.0,0.0,,2250.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,113396,2,1,0,0,2,,0.0,,43,3.0,1.0,4.0,7.0,3.8,2,2,71.53939176208732,2250.0,26243.297527460843,1,1,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08573617692843714,6906.13092827917,1,1,1_0,1_1_0,1_2_0,1_0_0 -3137,2,25.0,0.0,8,400,0.0,,,0,43,0.0,0.0,,1186.0,0.0,,31,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,111076,2,1,0,0,2,,237.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,96.48510552582067,0.0,29474.10841444317,0,1,3,4,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040238706573353905,29474.10841444317,8,4,8,8_1,8_1,8_0_0 -3138,2,33.0,0.0,2,111,0.0,,,85,81,0.0,0.0,,875.0,0.0,,33,0,0,0,0,0,0,0,0,0,,2,,2,101628,2,1,0,0,2,,0.0,200.0,42,1.0,0.0,1.0,3.0,1.8,2,1,73.92802737868982,0.0,4871.336805555556,6,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.17962215197317072,2706.298225308642,1,1,1_0,1_0_0,1_2_0,1_0_1 -3139,1,66.0,253.0,7,400,660.0,,,0,86,0.0,0.0,,810.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,5,106035,2,2,0,0,2,,696.0,400.0,21,2.0,0.0,2.0,4.0,2.3,1,1,25.81282283022676,660.0,31697.12751073704,0,7,2,3,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025554366077040317,13781.359787276975,3,2,3_1,3_0_1,3_1_1,3_0_0 -3140,2,73.0,0.0,7,111,300.0,,,77,74,0.0,0.0,,456.0,268.3710126536699,,50,0,0,0,0,0,0,0,0,0,,1,,5,102859,2,2,0,0,2,,300.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,41.984261084156664,300.0,3169.917899314502,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14385230611133823,2113.2785995430013,1,1,1_0,1_1_0,1_2_0,1_0_0 -3141,0,64.0,0.0,6,400,390.0,,,0,86,0.0,0.0,,570.0,309.6588607542345,,31,0,0,0,0,0,0,0,0,0,,1,,4,109194,2,2,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,21.025919764600218,390.0,12649.951219512195,0,7,5,0,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0450594622942728,12649.951219512195,2,1,2_0,2_1_0,2_1_0,2_0_0 -3142,2,42.0,0.0,5,111,1200.0,,,42,38,0.0,0.0,,1292.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,2,35.0,1,,3,109539,2,2,0,0,2,,250.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,1,1,72.53217558220429,1200.0,101592.0,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012717536813922356,39073.846153846156,9,5,9,9_1,9_2,9_0_0 -3143,2,27.0,0.0,8,400,360.0,,,81,81,0.0,0.0,,720.0,619.317721508469,,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,129557,2,3,0,0,2,,200.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,117.53838667862544,360.0,9447.12,4,4,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07621370322383964,3936.3000000000006,1,1,1_0,1_1_0,1_1_0,1_0_0 -3144,2,27.0,0.0,7,111,1800.0,,,0,46,0.0,0.0,,1892.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,127011,2,3,0,0,2,,1200.0,1800.0,22,4.0,0.0,6.0,4.0,2.5,2,2,282.5207723327958,1800.0,111705.06582743625,0,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016937459245785606,44682.0263309745,10,5,10,10_1,10_2,10_0_0 -3145,0,50.0,0.0,9,400,300.0,,,65,85,0.0,0.0,,620.0,550.5046413408613,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,123639,2,3,0,0,2,,0.0,,42,1.0,0.0,1.0,3.0,1.8,2,2,4.386640891614599,300.0,19105.925925925923,4,6,5,0,20.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03245066490908386,10614.403292181069,2,1,2_0,2_1_0,2_1_0,2_0_0 -3146,2,56.0,0.0,7,400,480.0,,,11,52,0.0,0.0,,690.0,361.26867087994026,,10,0,0,0,0,0,0,0,0,1,20.0,1,,5,108287,2,2,0,0,2,,1800.0,,43,4.0,0.0,3.0,8.0,3.6999999999999993,1,1,45.737169735347145,480.0,50258.2999911939,4,1,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013729075597879349,13583.3243219443,3,2,3_0,3_1_0,3_1_0,3_0_0 -3147,2,73.0,0.0,9,111,900.0,,,56,74,0.0,0.0,,1020.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,129118,2,1,0,0,2,,800.0,,41,0.0,2.0,4.0,2.0,1.5,5,4,44.15960773739054,900.0,9848.723085649528,5,5,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10356672546578463,6565.815390433018,1,1,1_0,1_1_0,1_2_0,1_0_0 -3148,2,49.0,0.0,8,400,912.0,,,81,65,0.0,0.0,,1272.0,619.317721508469,,43,0,0,0,0,0,0,0,0,1,15.0,1,2000.0,6,110826,2,2,0,0,2,,420.0,,43,2.0,0.0,4.0,7.0,3.8,1,1,68.66664661474428,912.0,37722.35273238459,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03372006006687885,9926.934929574893,2,1,2_0,2_1_0,2_1_0,2_0_0 -3149,2,70.0,0.0,7,111,700.0,,,0,74,0.0,0.0,,776.0,130.74485231845458,,71,0,0,0,0,0,0,0,0,0,,1,,5,116080,1,2,0,0,2,,1000.0,,31,1.0,3.0,5.0,2.0,1.5,5,5,39.5165621721034,700.0,56942.37058671735,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013627813384028896,37961.5803911449,9,5,9,9_1,9_2,9_0_0 -3150,2,51.0,0.0,8,400,996.0,,,81,68,0.0,0.0,,1356.0,619.317721508469,,71,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,117251,2,2,0,0,2,,600.0,,43,4.0,0.0,2.0,5.0,3.0,3,3,39.067019409676746,996.0,38193.43279314731,4,1,0,1,50.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03550348583077074,12731.144264382436,2,1,2_0,2_1_0,2_1_0,2_0_0 -3151,0,45.0,0.0,7,111,1300.0,,,56,46,0.0,0.0,,1612.0,536.7420253073398,,60,0,0,0,0,0,0,0,0,2,12.0,1,,5,109029,2,1,0,0,2,,1000.0,,43,2.0,0.0,7.0,6.0,3.3,2,2,121.04152434874675,1300.0,98827.06278982172,1,1,5,0,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016311321560049656,29947.594784794463,8,4,8,8_1,8_2,8_0_0 -3152,2,60.0,0.0,8,400,372.0,,,85,75,0.0,0.0,,612.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125378,2,1,0,0,2,,456.0,486.0,41,0.0,0.0,3.0,2.0,1.5,2,2,29.439856664399922,372.0,33597.17816390411,6,5,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01821581553707734,22398.118775936073,6,3,6,6_1,6_1,6_0_0 -3153,2,51.0,0.0,9,111,0.0,,,0,21,0.0,0.0,,48.0,82.5756962011292,,70,0,0,0,0,0,0,0,0,0,,1,2010.0,6,126377,2,2,0,0,2,,1500.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,92.92539751451767,0.0,135538.54549662588,0,1,0,1,250.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00035414279992546414,135538.54549662588,10,5,10,10_1,10_2,10_0_0 -3154,2,49.0,0.0,5,111,500.0,,,67,21,0.0,0.0,,550.0,86.01635020950958,,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,108724,2,2,0,0,2,,450.0,1130.0,43,2.0,98.0,4.0,3.0,1.8,2,2,65.42155261885603,500.0,61457.80192179094,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008949229923645998,34143.223289883856,9,5,9,9_1,9_2,9_0_0 -3155,2,46.0,0.0,2,400,2700.0,,,81,52,0.0,0.0,,3060.0,619.317721508469,,50,0,0,0,0,0,0,0,0,1,10.0,1,,2,108827,2,2,0,0,2,,900.0,450.0,43,3.0,0.0,3.0,7.0,3.3999999999999995,4,4,19.319631689146476,2700.0,29986.49819571523,4,1,2,3,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10204592680439237,8819.558292857422,1,1,1_0,1_1_0,1_1_0,1_0_1 -3156,2,45.0,0.0,9,400,0.0,,,81,53,0.0,0.0,,89.0,153.10910337292705,,71,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,102966,2,2,0,0,2,,260.0,500.0,43,2.0,0.0,2.0,2.0,1.5,1,1,50.17968712931973,0.0,34506.07279612262,4,1,2,3,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0025792561363285815,23004.048530748416,6,3,6,6_0,6_1,6_0_0 -3158,0,70.0,0.0,7,111,780.0,,,77,78,0.0,0.0,,918.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,0,,1,,5,123664,2,2,0,0,2,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,43.39829937321188,780.0,10854.64575487579,6,5,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08457208284182322,7236.430503250526,1,1,1_0,1_1_0,1_2_0,1_0_0 -3159,0,29.0,0.0,2,400,480.0,,,0,81,0.0,0.0,,660.0,309.6588607542345,,50,0,0,0,0,0,0,0,0,0,,1,,2,132776,2,2,0,0,2,,0.0,,32,1.0,1.0,1.0,4.0,1.9,1,1,65.41546846004303,480.0,7261.2119329977795,0,4,5,0,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09089391772201312,3821.690491051463,1,1,1_0,1_1_0,1_1_0,1_0_1 -3160,1,41.0,522.0,5,111,480.0,,,0,85,0.0,0.0,,750.0,464.48829113135173,,50,0,0,0,0,0,0,0,0,0,,1,,3,124811,2,2,0,0,2,,500.0,550.0,31,1.0,0.0,3.0,7.0,3.1999999999999993,1,1,11.851637688132403,480.0,10291.053565755243,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07287883550579487,3215.954239298514,1,1,1_1,1_1_1,1_2_1,1_0_0 -3161,2,39.0,0.0,8,400,900.0,,,0,81,0.0,0.0,,1240.0,584.9111814246652,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,102500,2,2,0,0,2,,1200.0,472.0,32,4.0,0.0,5.0,6.0,3.3,3,3,49.51994767118278,900.0,16814.20933157552,0,4,2,3,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07374714894689668,5095.214948962279,1,1,1_0,1_1_0,1_1_0,1_0_0 -3162,1,25.0,400.0,6,111,600.0,,,0,85,0.0,0.0,,880.0,481.69156117325366,,31,0,0,0,0,0,0,0,0,0,,1,,4,100684,2,2,0,0,2,,600.0,700.0,31,0.0,0.0,3.0,5.0,2.2,1,1,94.19148244191749,600.0,10520.555781545343,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08364577102890838,4782.0708097933375,1,1,1_1,1_1_1,1_2_1,1_0_0 -3163,0,54.0,0.0,7,400,0.0,,,0,33,0.0,0.0,,480.0,0.0,,31,0,0,0,0,0,0,0,0,1,8.0,2,,5,100721,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,21.33867682391219,0.0,67557.19208352815,0,1,5,0,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007105091037628161,67557.19208352815,10,5,10,10_0,10_1,10_0_0 -3164,2,73.0,0.0,5,111,800.0,,,0,78,0.0,0.0,,1100.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,3,105402,2,3,0,0,2,,100.0,,11,0.0,2.0,4.0,1.0,1.0,5,5,38.5027714733164,800.0,15871.127519452604,0,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06930824534373971,15871.127519452604,3,2,3_0,3_1_0,3_2_0,3_0_0 -3165,2,54.0,0.0,7,400,0.0,,,0,52,0.0,0.0,,90.0,154.82943037711726,,70,0,0,0,0,0,0,0,0,1,20.0,3,,5,123735,2,2,0,0,2,,0.0,260.0,32,1.0,0.0,1.0,2.0,1.5,1,1,15.420096929098232,0.0,20817.64080470098,0,1,2,3,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004323256455634322,13878.427203133986,3,2,3_0,3_0_0,3_1_0,3_0_0 -3166,1,24.0,350.0,6,111,0.0,,,0,52,0.0,0.0,,760.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,106491,2,1,0,0,2,,120.0,720.0,32,1.0,0.0,3.0,2.0,1.3,1,1,58.60169497445711,0.0,12288.0,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.061848958333333336,9452.307692307691,1,1,1_1,1_0_1,1_2_1,1_0_0 -3167,2,32.0,0.0,7,111,0.0,,,81,54,0.0,0.0,,572.0,0.0,,71,0,0,0,0,0,0,0,0,1,25.0,3,,5,115643,2,1,0,0,2,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,3,3,68.61463820518577,0.0,26022.0,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021981400353547,17348.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -3168,0,38.0,0.0,5,111,1800.0,,,0,68,0.0,0.0,,2064.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,3,111962,2,3,0,0,2,,832.0,,22,1.0,0.0,2.0,2.0,1.5,2,2,68.97239423580442,1800.0,20929.065187845183,0,1,5,0,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09861883373552173,13952.710125230122,3,2,3_0,3_1_0,3_2_0,3_0_0 -3169,0,30.0,0.0,7,400,1080.0,,,0,42,0.0,0.0,,1264.0,316.54016877099525,,41,0,0,0,0,0,0,0,0,0,,1,,5,128068,2,2,0,0,2,,360.0,,32,2.0,1.0,4.0,3.0,1.8,1,1,22.67293860381903,1080.0,48041.54368358316,0,1,5,0,110.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02631056171560816,26689.74649087953,7,4,7,7_1,7_1,7_0_0 -3170,0,73.0,0.0,7,400,288.0,,,0,86,0.0,0.0,,311.0,39.567521096374406,,20,0,0,0,0,0,0,0,0,0,,1,,5,111353,2,1,0,0,2,,140.0,,11,0.0,0.0,7.0,1.0,1.0,2,2,4.571849354819069,288.0,36415.595022357404,0,5,5,0,110.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00854029708450627,36415.595022357404,9,5,9,9_1,9_1,9_0_0 -3171,2,59.0,0.0,2,111,500.0,,,0,42,0.0,0.0,,500.0,0.0,,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,118940,2,1,0,0,2,,240.0,850.0,22,2.0,0.0,4.0,3.0,1.8,2,2,30.712854944700297,500.0,73419.49327852244,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006810180480314839,40788.60737695691,9,5,9,9_1,9_2,9_0_1 -3172,2,49.0,0.0,9,400,1400.0,,,81,52,0.0,0.0,,1520.0,206.439240502823,,70,0,0,0,0,0,0,0,0,1,10.0,1,2013.0,6,101987,2,2,0,0,2,,750.0,,43,2.0,0.0,3.0,7.0,3.1999999999999993,3,3,4.386640891614599,1400.0,42833.70981445783,4,1,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0354860694201871,13385.534317018073,3,2,3_0,3_1_0,3_1_0,3_0_0 -3173,2,49.0,0.0,8,400,0.0,,,81,81,0.0,0.0,,699.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,123387,2,3,0,0,2,,0.0,,43,3.0,0.0,3.0,7.0,3.1999999999999993,1,1,73.41059475153847,0.0,21499.18435586136,4,4,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03251286134533892,6718.495111206676,1,1,1_0,1_1_0,1_1_0,1_0_0 -3174,2,58.0,0.0,2,111,1560.0,,,85,21,0.0,0.0,,1868.0,529.860717290579,,71,0,0,0,0,0,0,0,0,1,5.0,1,,2,120232,1,2,0,0,2,,600.0,,42,2.0,0.0,4.0,6.0,3.5,2,2,106.34448495289017,1560.0,16145.54826186,6,1,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11569752663108404,4613.013789102857,1,1,1_0,1_1_0,1_2_0,1_0_1 -3175,2,73.0,0.0,1,111,780.0,,,0,86,0.0,0.0,,924.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,0,,1,,1,130613,1,3,0,0,2,,700.0,,21,0.0,6.0,3.0,2.0,1.5,2,2,28.979355299167874,780.0,14901.857992252197,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06200569086622674,9934.571994834798,2,1,2_0,2_1_0,2_2_0,2_1_0 -3176,2,76.0,0.0,5,400,1800.0,,,86,71,0.0,0.0,,1920.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,1,,3,105923,2,2,0,0,2,,400.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,26.28285509793217,1800.0,4966.597222222222,6,5,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.38658258644556,3311.0648148148143,1,1,1_0,1_1_0,1_1_0,1_0_0 -3177,2,22.0,0.0,9,400,420.0,,,0,52,0.0,0.0,,696.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,0,,1,2007.0,6,129508,1,1,0,0,2,,0.0,,22,1.0,0.0,3.0,3.0,2.0,1,1,49.65716042652294,420.0,12693.532269837064,0,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05483107343208684,6346.766134918532,1,1,1_0,1_1_0,1_1_0,1_0_0 -3178,2,31.0,0.0,7,111,380.0,,,0,53,0.0,0.0,,504.0,213.32054851958378,,50,0,0,0,0,0,0,0,0,0,,1,,5,131552,2,3,0,0,2,,400.0,300.0,32,2.0,0.0,2.0,3.0,1.8,4,2,128.85032063064062,380.0,13479.0,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037391497885599825,7488.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_0 -3179,2,46.0,0.0,8,400,720.0,,,81,68,0.0,0.0,,1060.0,584.9111814246652,,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113006,2,2,0,0,2,,1600.0,,43,3.0,0.0,6.0,13.0,5.599999999999999,3,2,4.386640891614599,720.0,44111.59923678041,4,4,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024029960789001915,7877.071292282217,1,1,1_0,1_1_0,1_1_0,1_0_0 -3180,1,24.0,300.0,8,111,0.0,,,43,63,0.0,0.0,,1216.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,120082,2,2,0,0,2,,303.0,600.0,43,2.0,0.0,3.0,3.0,1.8,1,1,85.77610155947735,0.0,25346.43700428591,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04797518482753149,14081.353891269948,3,2,3_1,3_1_1,3_2_1,3_0_0 -3182,2,43.0,0.0,9,400,360.0,,,81,44,0.0,0.0,,720.0,619.317721508469,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,105717,2,2,0,0,2,,0.0,,43,2.0,3.0,4.0,6.0,3.3,2,2,141.88640587536003,360.0,27304.945255045626,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026368849791667415,8274.22583486231,1,1,1_0,1_1_0,1_1_0,1_0_0 -3183,2,56.0,0.0,7,112,960.0,,,0,64,0.0,0.0,,1220.0,447.28502108944986,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,128876,2,1,0,0,2,,600.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,63.50707503405926,960.0,23012.0,0,1,0,1,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05301581783417347,15341.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0 -3184,2,23.0,0.0,9,400,240.0,,,47,81,0.0,0.0,,420.0,309.6588607542345,,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,127975,2,2,0,0,2,,0.0,,43,2.0,0.0,2.0,4.0,2.1,1,1,72.3476207411299,240.0,16288.312209940228,4,4,0,1,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025785360360644834,7756.339147590585,1,1,1_0,1_1_0,1_1_0,1_0_0 -3185,2,49.0,0.0,1,211,1800.0,,,85,63,0.0,0.0,,1800.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,1,102564,2,1,0,0,2,,800.0,,42,3.0,0.0,5.0,8.0,4.3,2,2,7.93378069410927,1800.0,53573.15107950908,6,1,1,2,57.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03359891967766803,12458.87234407188,2,1,2_0,2_1_0,2_2_0,2_1_0 -3186,2,46.0,0.0,8,400,360.0,,,81,85,0.0,0.0,,600.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,132488,2,3,0,0,2,,0.0,,42,1.0,1.0,4.0,6.0,3.0999999999999996,1,1,4.386640891614599,360.0,4936.892361111111,4,6,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1215339440507798,1592.5459229390683,1,1,1_0,1_1_0,1_1_0,1_0_0 -3187,2,32.0,0.0,9,400,510.0,,,81,52,0.0,0.0,,630.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,121722,2,2,0,0,2,,0.0,,43,2.0,1.0,3.0,4.0,2.1,3,3,32.000205821663336,510.0,26121.90495470512,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024117689773866333,12439.00235938339,2,1,2_0,2_1_0,2_1_0,2_0_0 -3188,2,36.0,0.0,7,400,180.0,,,0,81,0.0,0.0,,300.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,1,,5,132453,2,2,0,0,2,,0.0,,32,1.0,0.0,2.0,2.0,1.3,2,2,31.89304821477367,180.0,14730.984619290954,0,4,0,1,56.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020365237474156014,11331.52663022381,2,1,2_0,2_1_0,2_1_0,2_0_0 -3189,2,83.0,0.0,7,211,600.0,,,90,74,0.0,0.0,,675.0,129.02452531426437,,44,0,0,0,0,0,0,0,0,0,,1,,5,102062,2,2,0,0,2,,200.0,,42,1.0,0.0,5.0,2.0,1.5,1,1,85.7179453280291,600.0,83057.49113044656,1,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008126900906985906,55371.66075363104,10,5,10,10_1,10_2,10_0_0 -3190,2,37.0,0.0,7,400,750.0,,,0,52,0.0,0.0,,930.0,309.6588607542345,,70,0,0,0,0,0,0,0,0,0,,1,,5,123415,2,2,0,0,2,,0.0,,22,2.0,0.0,5.0,3.0,2.0,1,1,20.104377980657862,750.0,28879.914358756803,0,1,0,1,96.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0322023115597644,14439.957179378402,3,2,3_0,3_1_0,3_1_0,3_0_0 -3191,0,58.0,0.0,7,211,800.0,,,85,21,0.0,0.0,,800.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,5,102160,2,2,0,0,2,,500.0,,42,1.0,0.0,4.0,4.0,2.1,3,3,82.01245126839247,800.0,35517.00000000001,6,1,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022524424923276172,16912.857142857145,4,2,4_0,4_1_0,4_2_0,4_0_0 -3192,2,31.0,0.0,9,400,1800.0,,,81,21,0.0,0.0,,1975.0,301.05722573328353,,41,0,0,0,0,0,0,0,0,0,,1,2008.0,6,125231,2,2,0,0,2,,0.0,,43,3.0,0.0,4.0,5.0,2.8,3,3,4.386640891614599,1800.0,30238.808329267078,4,1,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06531342037339702,10799.57440330967,2,1,2_0,2_1_0,2_1_0,2_0_0 -3193,2,38.0,0.0,6,211,600.0,,,0,52,0.0,0.0,,660.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,0,,1,,4,132330,2,1,0,0,2,,400.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,35.38671842737109,600.0,40336.24855928446,0,1,0,1,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016362453712817658,26890.83237285631,7,4,7,7_1,7_2,7_0_0 -3195,2,62.0,0.0,7,400,540.0,,,0,56,0.0,0.0,,660.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,5,112179,2,3,0,0,2,,0.0,,22,2.0,0.0,3.0,4.0,2.1,3,2,42.302074128053185,540.0,8088.560209032523,0,4,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08159672215371232,3851.6953376345346,1,1,1_0,1_1_0,1_1_0,1_0_0 -3196,2,55.0,0.0,5,400,103.0,,,0,52,0.0,0.0,,128.0,43.00817510475479,,71,0,0,0,0,0,0,0,0,0,,1,,3,104498,2,2,0,0,1,,665.0,,12,1.0,5.0,6.0,1.0,1.0,1,1,22.310719155592626,103.0,32767.60655857805,0,1,0,1,29.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003906296902435542,32767.60655857805,8,4,8,8_1,8_1,8_0_0 -3197,2,30.0,0.0,6,400,1200.0,,,0,12,0.0,0.0,,1380.0,309.6588607542345,,43,0,0,0,0,0,0,0,0,0,,1,,4,109005,2,2,0,0,2,,0.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,4.386640891614599,1200.0,14494.27293744797,0,4,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09521001887818589,14494.27293744797,3,2,3_0,3_1_0,3_1_0,3_0_0 -3198,1,41.0,286.0,7,400,489.0,,,0,46,0.0,0.0,,581.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,121875,2,2,0,0,1,,590.0,580.0,32,1.0,0.0,4.0,2.0,1.3,1,1,55.16027696370309,489.0,34284.674694955946,0,1,2,3,75.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.016946347170255588,26372.82668842765,7,4,7,7_1,7_1,7_0_0 -3199,2,27.0,0.0,9,400,420.0,,,81,85,0.0,0.0,,540.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,129148,2,3,0,0,2,,0.0,,42,1.0,0.0,3.0,7.0,3.1999999999999993,2,2,4.386640891614599,420.0,23995.19095192602,4,6,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022504509386146638,7498.497172476883,1,1,1_0,1_1_0,1_1_0,1_0_0 -3200,2,49.0,0.0,9,400,900.0,,,52,52,0.0,0.0,,1200.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,1,3.0,1,2007.0,6,104420,2,2,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,38.900373486641726,900.0,15007.0,4,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0799626840807623,6002.8,1,1,1_0,1_1_0,1_0_0,1_0_0 -3201,2,52.0,0.0,9,400,0.0,,,11,11,0.0,0.0,,120.0,206.439240502823,,71,0,0,0,0,0,0,0,0,1,30.0,1,2009.0,6,102513,2,3,0,0,2,,0.0,,43,2.0,2.0,3.0,5.0,2.8,2,2,61.85774646307551,0.0,9395.453333333333,4,4,0,1,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012772135174602184,3355.519047619048,1,1,1_0,1_1_0,1_1_0,1_0_0 -3202,2,61.0,0.0,6,400,120.0,,,0,34,0.0,0.0,,120.0,0.0,,31,0,0,0,0,0,0,0,0,2,7.0,2,,4,110525,2,3,0,0,2,,200.0,412.0,12,1.0,0.0,2.0,1.0,1.0,2,2,54.53557298422768,120.0,97345.8806518147,0,1,2,3,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0012327178016829927,97345.8806518147,10,5,10,10_0,10_1,10_0_0 -3203,0,35.0,0.0,8,400,0.0,,,81,68,0.0,0.0,,715.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,109503,2,3,0,0,2,,0.0,,43,2.0,0.0,2.0,7.0,2.9999999999999996,5,5,4.386640891614599,0.0,17280.502189083832,4,4,5,0,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04137611234768794,5760.167396361278,1,1,1_0,1_1_0,1_1_0,1_0_0 -3204,2,36.0,0.0,5,400,600.0,,,85,52,0.0,0.0,,720.0,206.439240502823,,31,0,0,0,0,0,0,0,0,0,,1,,3,103378,2,2,0,0,2,,150.0,,42,1.0,0.0,3.0,2.0,1.5,4,3,54.03672069755966,600.0,39634.55797277805,6,1,0,1,75.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018165965178532154,26423.0386485187,7,4,7,7_1,7_1,7_0_0 -3205,0,41.0,0.0,9,400,690.0,,,81,42,0.0,0.0,,1050.0,619.317721508469,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,132722,2,2,0,0,2,,0.0,,43,2.0,0.0,3.0,6.0,2.6999999999999997,2,2,114.84914083069526,690.0,39511.20535574718,4,1,5,0,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026574739761698263,14633.779761387847,3,2,3_0,3_1_0,3_1_0,3_0_0 -3207,0,44.0,0.0,7,400,480.0,,,81,55,0.0,0.0,,610.0,223.64251054472493,,43,0,0,0,0,0,0,0,0,1,30.0,1,,5,106001,2,2,0,0,2,,0.0,,43,4.0,0.0,3.0,7.0,3.3999999999999995,1,1,4.571849354787482,480.0,13259.15847899291,4,1,5,0,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04600593627163073,3899.7524938214447,1,1,1_0,1_1_0,1_1_0,1_0_0 -3208,2,31.0,0.0,9,211,495.0,,,42,42,0.0,0.0,,518.0,39.567521096374406,,71,0,0,0,0,0,0,0,0,2,9.0,2,2008.0,6,131746,2,1,0,0,2,,310.0,591.0,43,2.0,0.0,2.0,2.0,1.5,1,1,56.41559086089565,495.0,41727.49134760079,1,1,2,3,56.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012413878315495319,27818.327565067197,7,4,7,7_0,7_2,7_0_0 -3209,2,54.0,0.0,7,112,480.0,,,68,52,0.0,310.55175144583734,,1155.0,645.1226265713219,,50,0,0,0,0,0,0,0,0,1,3.0,1,,5,115899,2,2,0,0,2,,160.0,,43,2.0,0.0,4.0,2.0,1.5,4,3,48.236453446313156,480.0,43406.18980815085,4,1,0,1,100.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026609108173394964,28937.459872100564,8,4,8,8_1,8_0,8_0_0 -3210,1,28.0,262.0,7,211,480.0,,,0,42,0.0,0.0,,580.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,5,103089,2,2,0,0,2,,500.0,624.0,32,1.0,0.0,2.0,4.0,1.9,3,2,118.0018768577111,480.0,20563.52965571999,0,1,2,3,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02820527456669707,10822.910345115784,2,1,2_1,2_1_1,2_2_1,2_0_0 -3212,1,39.0,235.0,7,211,540.0,,,85,67,0.0,0.0,,632.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,,5,132104,2,1,0,0,2,,620.0,,42,2.0,1.0,4.0,6.0,2.8999999999999995,5,4,173.66116028626115,540.0,23111.15232932623,7,4,0,1,49.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027346105074909737,7969.362872181459,1,1,1_1,1_1_1,1_2_1,1_0_0 -3213,2,49.0,0.0,8,112,960.0,,,34,42,0.0,0.0,,1030.0,120.42289029331342,,70,0,0,0,0,0,0,0,0,2,5.0,1,1999.0,6,118120,2,2,0,0,2,,450.0,,43,2.0,2.0,8.0,4.0,2.3,3,3,10.71185255717699,960.0,102645.93967272494,1,1,1,2,120.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010034493359250638,44628.66942292389,10,5,10,10_1,10_0,10_0_0 -3214,2,66.0,0.0,7,211,1500.0,,,54,22,0.0,0.0,,1546.0,79.13504219274881,,31,0,0,0,0,0,0,0,0,0,,1,,5,128692,2,1,0,0,2,,200.0,3.0,43,2.0,2.0,4.0,2.0,1.5,2,2,67.23825539832274,1500.0,53667.88313379392,1,1,2,3,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028806800449830028,35778.58875586261,9,5,9,9_1,9_2,9_0_0 -3215,2,48.0,0.0,8,112,1200.0,,,52,63,0.0,51.75862524097289,,1400.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,2,70.0,1,2001.0,6,130735,2,1,0,0,2,,800.0,,43,3.0,0.0,5.0,6.0,3.3,2,2,10.711852557126207,1200.0,84124.8229833998,1,1,1,2,86.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016641936949766414,25492.370601030245,7,4,7,7_1,7_0,7_0_0 -3216,2,36.0,0.0,8,112,550.0,,,53,43,0.0,0.0,,700.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,107662,1,1,0,0,2,,1050.0,292.0,43,2.0,0.0,3.0,5.0,2.4,1,1,116.13147016960932,550.0,43240.33303272707,1,1,2,3,72.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0161885894697017,18016.805430302946,4,2,4_0,4_1_0,4_0_0,4_0_0 -3217,2,54.0,0.0,7,112,0.0,,,0,48,0.0,0.0,,976.0,86.01635020950958,,41,0,0,0,0,0,0,0,0,2,3.0,1,,5,126228,2,1,0,0,2,,0.0,800.0,12,1.0,0.0,3.0,1.0,1.0,1,1,104.33684123722037,0.0,54360.495277491995,0,1,2,3,70.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017954214637262763,54360.495277491995,10,5,10,10_1,10_0,10_0_0 -3218,2,25.0,0.0,6,112,1200.0,,,0,22,0.0,0.0,,1300.0,172.03270041901916,,44,0,0,0,0,0,0,0,0,1,3.0,1,,4,130223,2,2,0,0,2,,840.0,,22,4.0,0.0,5.0,6.0,3.0999999999999996,1,1,10.711852557034108,1200.0,29906.214715229933,0,1,0,1,120.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04346922579065035,9647.166037170948,1,1,1_0,1_1_0,1_0_0,1_0_0 -3219,0,35.0,0.0,9,112,0.0,,,11,11,0.0,0.0,,1165.0,0.0,,60,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,100629,2,2,0,0,2,,457.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,2,2,120.36390125365064,0.0,18323.644049871036,1,1,5,0,90.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06357905648184643,7047.555403796553,1,1,1_0,1_1_0,1_0_0,1_0_0 -3220,2,30.0,0.0,8,112,3000.0,,,22,22,0.0,0.0,,3375.0,645.1226265713219,,41,0,0,0,0,0,0,0,0,1,3.0,8,2000.0,6,112581,2,1,0,0,2,,1500.0,1000.0,43,5.0,0.0,5.0,6.0,3.3,1,1,10.711852557315979,3000.0,25163.36760883809,1,1,2,3,120.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.13412354230419476,7625.262911769119,1,1,1_0,1_0_0,1_0_0,1_0_0 -3221,0,48.0,0.0,7,112,0.0,,,68,62,0.0,0.0,,300.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,1,1.0,1,,5,103329,2,3,0,0,2,,0.0,,43,2.0,2.0,4.0,2.0,1.5,5,4,56.42754773759658,0.0,34822.0,1,1,5,0,70.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008615243237034059,23214.666666666668,6,3,6,6_1,6_0,6_0_0 -3222,2,28.0,0.0,6,112,418.0,,,0,52,0.0,0.0,,568.0,258.04905062852873,,70,0,0,0,0,0,0,0,0,0,,1,,4,100777,2,3,0,0,2,,380.0,,32,4.0,1.0,6.0,6.0,3.0999999999999996,1,1,17.185162873682195,418.0,47544.93272710444,0,1,0,1,100.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011946593830727922,15337.075073259499,3,2,3_0,3_1_0,3_0_0,3_0_0 -3223,2,50.0,0.0,9,112,840.0,,,0,55,0.0,0.0,,1140.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,2,60.0,1,2010.0,6,113277,2,2,0,0,2,,0.0,,32,2.0,2.0,3.0,3.0,2.0,1,1,10.711852557034108,840.0,9027.70942951203,0,4,0,1,55.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1262778791122013,4513.854714756015,1,1,1_0,1_1_0,1_0_0,1_0_0 -3224,2,66.0,0.0,7,112,0.0,,,0,77,0.0,0.0,,250.0,430.0817510475479,,71,0,0,0,0,0,0,0,0,0,,1,,5,101136,2,1,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,6,6,79.01580071304774,0.0,24905.649994318206,0,5,0,1,110.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010037882972619995,24905.649994318206,7,4,7,7_1,7_0,7_0_0 -3225,0,40.0,0.0,8,112,156.0,,,0,63,0.0,0.0,,356.0,344.06540083803833,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111267,2,2,0,0,2,,180.0,,12,1.0,2.0,2.0,1.0,1.0,5,4,183.43349969883496,156.0,9292.12,0,1,5,0,36.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03831203213045031,9292.12,1,1,1_0,1_1_0,1_0_0,1_0_0 -3226,2,43.0,0.0,9,112,600.0,,,0,52,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,2,2.0,1,2005.0,6,119270,2,1,0,0,1,,700.0,,32,1.0,0.0,6.0,8.0,3.8999999999999995,2,2,99.02842059596908,600.0,50480.0,0,1,1,2,161.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011885895404120444,12943.589743589746,2,1,2_0,2_1_0,2_0_0,2_0_0 -3227,2,47.0,0.0,7,112,1080.0,,,22,81,0.0,0.0,,1680.0,1032.196202514115,,70,0,0,0,0,0,0,0,0,0,,1,,5,101571,2,2,0,0,2,,600.0,,43,5.0,0.0,4.0,7.0,4.0,2,2,231.17647247235192,1080.0,27073.10690543078,4,4,0,1,66.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06205420034975732,6768.276726357695,1,1,1_0,1_1_0,1_0_0,1_0_0 -3228,2,42.0,0.0,9,112,720.0,,,37,65,0.0,0.0,,820.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,132826,2,2,0,0,2,,0.0,,43,3.0,0.0,3.0,3.0,2.0,2,2,138.50091322315942,720.0,47623.24538900693,1,1,0,1,27.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017218482136231814,23811.622694503465,6,3,6,6_1,6_0,6_0_0 -3230,2,55.0,0.0,8,111,1260.0,,,55,54,0.0,0.0,,1536.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,100756,2,1,0,0,2,,780.0,,43,4.0,0.0,6.0,5.0,3.0,2,2,38.454331653600065,1260.0,37468.57966359096,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04099434816560621,12489.52655453032,2,1,2_0,2_1_0,2_2_0,2_0_0 -3231,2,52.0,0.0,7,111,800.0,,,85,22,0.0,0.0,,892.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,0,,1,,5,122657,2,2,0,0,2,,300.0,200.0,42,1.0,1.0,2.0,2.0,1.5,2,2,38.96423937206759,800.0,9625.516380101755,6,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09267035292194581,6417.010920067837,1,1,1_0,1_1_0,1_2_0,1_0_0 -3232,1,77.0,230.0,7,111,700.0,,,86,78,0.0,0.0,,780.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,0,,1,,5,127839,2,1,0,0,2,,500.0,250.0,41,0.0,3.0,3.0,2.0,1.5,1,1,53.42623762445469,700.0,14994.771470474916,5,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05201813188922817,9996.514313649945,2,1,2_1,2_1_1,2_2_1,2_0_0 -3233,2,50.0,0.0,6,111,2200.0,,,52,21,0.0,0.0,,2292.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,,4,124722,2,2,0,0,2,,380.0,834.0,43,2.0,0.0,5.0,4.0,2.5,2,2,57.75404699033384,2200.0,37230.14683863586,1,1,2,3,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06156301262882638,14892.058735454344,3,2,3_0,3_1_0,3_2_0,3_0_0 -3234,1,24.0,108.0,7,111,0.0,,,85,68,0.0,0.0,,413.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,5,117025,2,2,0,0,2,,374.0,434.0,42,1.0,0.0,2.0,2.0,1.5,1,1,144.1627806676667,0.0,23166.441340782127,6,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017827511525171376,15444.294227188084,3,2,3_1,3_1_1,3_2_1,3_0_0 -3235,2,53.0,0.0,5,111,1200.0,,,85,11,0.0,0.0,,1502.0,519.5387552654379,,71,0,0,0,0,0,0,0,0,0,,5,,3,132713,2,1,0,0,2,,120.0,,42,2.0,0.0,6.0,5.0,3.0,3,3,82.84090715575663,1200.0,29424.421689542956,5,1,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05104603298061727,9808.140563180985,2,1,2_0,2_1_0,2_2_0,2_0_0 -3236,2,36.0,0.0,9,111,300.0,,,85,48,0.0,0.0,,400.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,125735,2,2,0,0,2,,450.0,,42,1.0,0.0,3.0,4.0,2.1,4,2,71.44417026349414,300.0,34039.78524433019,6,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011750955451947973,16209.421544919136,4,2,4_0,4_1_0,4_2_0,4_0_0 -3237,2,42.0,0.0,7,111,1300.0,,,0,81,0.0,0.0,,1580.0,481.69156117325366,,43,0,0,0,0,0,0,0,0,0,,7,,5,128452,2,2,0,0,2,,0.0,200.0,32,3.0,0.0,5.0,8.0,3.6999999999999993,2,2,8.321280220030792,1300.0,7467.737553159412,0,4,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21157679802653775,2018.3074467998413,1,1,1_0,1_1_0,1_2_0,1_0_0 -3238,2,55.0,0.0,9,111,600.0,,,68,64,0.0,0.0,,866.0,457.606983114591,,41,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,108482,2,1,0,0,2,,1500.0,,43,4.0,0.0,4.0,5.0,2.8,1,1,87.71274823263465,600.0,81115.86166976468,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010676087046028323,28969.95059634453,8,4,8,8_1,8_2,8_0_0 -3239,2,49.0,0.0,6,111,500.0,,,0,64,0.0,0.0,,764.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,4,120658,2,3,0,0,2,,700.0,700.0,12,1.0,2.0,5.0,1.0,1.0,5,3,45.587619722935216,500.0,27009.542028687196,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028286299678407928,27009.542028687196,7,4,7,7_1,7_2,7_0_0 -3240,1,39.0,500.0,5,111,500.0,,,0,45,0.0,0.0,,788.0,495.4541772067752,,42,0,0,0,0,0,0,0,0,0,,1,,3,100645,2,3,0,0,2,,600.0,520.0,32,3.0,0.0,3.0,6.0,3.0999999999999996,2,2,124.85480313117964,500.0,29205.00982740629,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026981672139707088,9420.970912066547,1,1,1_1,1_1_1,1_2_1,1_0_0 -3241,2,38.0,0.0,5,111,420.0,,,42,52,0.0,0.0,,468.0,82.5756962011292,,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,133300,2,2,0,0,2,,175.0,400.0,43,2.0,0.0,4.0,3.0,1.8,2,2,60.71644712901437,420.0,55680.817862960765,1,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008405048955132475,30933.78770164487,8,4,8,8_1,8_2,8_0_0 -3242,2,61.0,0.0,6,111,450.0,,,21,54,0.0,0.0,,546.0,165.1513924022584,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,129434,2,2,0,0,2,,400.0,900.0,43,2.0,2.0,3.0,2.0,1.5,2,2,55.2246739381436,450.0,47676.148906691764,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011452267276633246,31784.09927112784,8,4,8,8_1,8_2,8_0_0 -3243,2,53.0,0.0,7,111,450.0,,,52,65,0.0,0.0,,546.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,113787,1,2,0,0,2,,300.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,50.82258675844572,450.0,47379.896454674774,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011523874910159887,31586.59763644985,8,4,8,8_1,8_2,8_0_0 -3244,2,34.0,0.0,6,111,1500.0,,,42,53,0.0,0.0,,1630.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,2,12.0,1,,4,129601,2,2,0,0,2,,600.0,200.0,43,2.0,0.0,4.0,4.0,2.1,1,1,83.02754490367522,1500.0,76593.56331513436,1,1,3,4,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02128116162050817,36473.12538815922,9,5,9,9_1,9_2,9_0_0 -3245,2,46.0,0.0,7,111,620.0,,,0,52,0.0,0.0,,890.0,464.48829113135173,,70,0,0,0,0,0,0,0,0,2,45.0,2,,5,111468,2,2,0,0,2,,450.0,3.0,32,1.0,0.0,5.0,4.0,2.1,2,2,28.93240499888132,620.0,41499.51554240624,0,1,3,4,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021446033486597075,19761.674067812495,5,3,5,5_0,5_2,5_0_0 -3246,2,27.0,0.0,7,111,650.0,,,0,65,0.0,0.0,,880.0,395.67521096374406,,71,0,0,0,0,0,0,0,0,2,30.0,2,,5,117239,2,2,0,0,2,,1400.0,600.0,22,1.0,0.0,4.0,3.0,2.0,2,2,134.81066465247767,650.0,8360.181634938088,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1052608709268213,4180.090817469044,1,1,1_0,1_0_0,1_2_0,1_0_0 -3247,1,70.0,200.0,7,111,600.0,,,63,77,0.0,0.0,,738.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,2,,5,121291,2,2,0,0,2,,300.0,137.0,42,1.0,0.0,4.0,2.0,1.5,2,2,35.07887025838954,600.0,18732.96875,4,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.039395784504258034,12488.645833333334,2,1,2_1,2_0_1,2_2_1,2_0_0 -3248,2,54.0,0.0,7,111,690.0,,,0,52,0.0,0.0,,694.0,6.881308016760767,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,123219,2,1,0,0,2,,520.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,29.833541563066436,690.0,28710.882342813333,0,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024172019226490832,28710.882342813333,8,4,8,8_1,8_2,8_0_0 -3249,2,59.0,0.0,6,111,2000.0,,,0,52,0.0,0.0,,2138.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,117292,2,1,0,0,2,,2000.0,,22,2.0,0.0,5.0,3.0,1.8,2,2,28.15525860562481,2000.0,69142.43760924411,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030921675224741523,38412.46533846895,9,5,9,9_1,9_2,9_0_0 -3250,2,40.0,0.0,9,111,1200.0,,,85,21,0.0,0.0,,1520.0,550.5046413408613,,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,125585,2,2,0,0,2,,0.0,500.0,42,1.0,0.0,3.0,7.0,3.1999999999999993,1,1,180.94747326631756,1200.0,46246.026826620175,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03286768841134383,14451.883383318807,3,2,3_0,3_1_0,3_2_0,3_0_0 -3251,2,34.0,0.0,5,111,800.0,,,85,53,0.0,0.0,,803.0,5.160981012570575,,42,0,0,0,0,0,0,0,0,0,,1,,3,106369,2,2,0,0,2,,300.0,275.0,42,1.0,0.0,5.0,5.0,2.4,2,2,129.4038102691924,800.0,64198.89077680607,6,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012508004270536553,26749.537823669194,7,4,7,7_1,7_2,7_0_0 -3252,2,35.0,0.0,6,111,900.0,,,85,33,0.0,0.0,,902.0,3.4406540083803834,,60,0,0,0,0,0,0,0,0,0,,1,,4,121476,2,2,0,0,2,,450.0,300.0,42,1.0,0.0,4.0,3.0,1.8,1,1,81.90056983298894,900.0,106556.79466306508,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0084649693419565,59198.21925725838,10,5,10,10_1,10_2,10_0_0 -3253,2,47.0,0.0,7,111,1200.0,,,0,63,0.0,0.0,,1246.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,1,15.0,8,,5,128669,2,2,0,0,2,,400.0,600.0,12,1.0,2.0,3.0,1.0,1.0,2,2,74.55042104910383,1200.0,50376.25839372279,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024733873450102434,50376.25839372279,10,5,10,10_0,10_2,10_0_0 -3254,1,59.0,300.0,6,111,500.0,,,0,52,0.0,0.0,,650.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,8,,4,112577,2,2,0,0,2,,560.0,510.0,32,3.0,0.0,4.0,6.0,3.3,1,1,7.926041328368133,500.0,10265.797455986196,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06331704894693511,3110.8477139352112,1,1,1_1,1_0_1,1_2_1,1_0_0 -3255,1,41.0,230.0,7,111,3000.0,,,0,52,0.0,0.0,,3130.0,223.64251054472493,,41,0,0,0,0,0,0,0,0,2,10.0,2,,5,102404,2,1,0,0,2,,800.0,488.0,32,1.0,0.0,4.0,6.0,2.8999999999999995,1,1,95.97412065417502,3000.0,22994.930577007715,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13611695801898355,7929.286405864731,1,1,1_1,1_0_1,1_2_1,1_0_0 -3256,1,41.0,620.0,7,111,1200.0,,,0,68,0.0,0.0,,1430.0,395.67521096374406,,12,0,0,0,0,0,0,0,0,2,45.0,2,,5,127227,2,2,0,0,2,,600.0,750.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,5,5,7.552813844411952,1200.0,24906.001107160002,0,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05741588117045824,9579.23119506154,1,1,1_1,1_0_1,1_2_1,1_0_0 -3257,2,54.0,0.0,6,111,400.0,,,0,68,0.0,0.0,,500.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,2,15.0,2,,4,104747,2,2,0,0,2,,500.0,684.0,32,3.0,0.0,5.0,3.0,2.0,2,2,45.40290222786706,400.0,32383.303058813337,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01544005560803723,16191.651529406668,4,2,4_0,4_0_0,4_2_0,4_0_0 -3258,2,25.0,0.0,7,111,1056.0,,,0,53,0.0,0.0,,1248.0,330.3027848045168,,50,0,0,0,0,0,0,0,0,0,,1,,5,102805,2,2,0,0,2,,156.0,,22,1.0,3.0,5.0,3.0,2.0,1,1,111.24027902570207,1056.0,28146.25370251871,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04433982629412315,14073.126851259354,3,2,3_0,3_1_0,3_2_0,3_0_0 -3259,1,40.0,465.0,7,111,250.0,,,53,63,0.0,0.0,,442.0,330.3027848045168,,20,0,0,0,0,0,0,0,0,0,,1,,5,122297,2,2,0,0,2,,278.0,780.0,43,2.0,0.0,5.0,7.0,3.8,2,2,7.574688069164691,250.0,44642.288199704184,1,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.009900926180637148,11747.970578869523,2,1,2_1,2_1_1,2_2_1,2_0_0 -3260,1,40.0,98.0,8,111,13804.0,,,43,38,0.0,0.0,,13852.0,82.5756962011292,,31,0,0,0,0,0,0,0,0,2,90.0,1,2000.0,6,105648,1,3,0,0,2,,250.0,716.0,43,2.0,0.0,4.0,4.0,2.1,4,2,102.39124504205289,13804.0,77065.36468946663,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17974352104627495,36697.79270926982,9,5,9,9_1,9_2,9_0_0 -3261,2,44.0,0.0,9,111,300.0,,,0,52,0.0,0.0,,324.0,41.2878481005646,,30,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,122965,2,1,0,0,2,,510.0,622.0,32,1.0,0.0,4.0,2.0,1.3,2,2,87.2353225234471,300.0,38551.92241528837,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008404250156705874,29655.324934837205,8,4,8,8_1,8_2,8_0_0 -3262,2,41.0,0.0,7,111,1020.0,,,85,21,0.0,0.0,,1089.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,0,,1,,5,117257,2,1,0,0,2,,1000.0,1000.0,42,1.0,0.0,5.0,3.0,1.8,2,2,98.38188497133288,1020.0,70536.4891982891,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015438817729340778,39186.93844349394,9,5,9,9_1,9_2,9_0_0 -3263,2,66.0,0.0,6,111,900.0,,,77,77,0.0,0.0,,1020.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,4,102319,1,1,0,0,2,,800.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,43.23488993901219,900.0,58556.11525368628,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017419188338929092,39037.41016912419,9,5,9,9_1,9_2,9_0_0 -3264,2,57.0,0.0,5,111,2400.0,,,45,33,0.0,0.0,,2688.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,1,15.0,1,,3,133322,2,2,0,0,2,,400.0,,43,2.0,3.0,4.0,5.0,2.5999999999999996,3,2,88.90892625310548,2400.0,69204.58444910604,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038841357424475115,26617.147865040788,7,4,7,7_1,7_2,7_0_0 -3265,1,43.0,481.0,9,111,720.0,,,0,81,0.0,0.0,,1032.0,536.7420253073398,,43,0,0,0,0,0,0,0,0,0,,2,2007.0,6,112875,2,2,0,0,2,,2000.0,104.0,32,2.0,0.0,5.0,6.0,3.0999999999999996,1,1,138.50821095461345,720.0,30646.15283353369,0,4,2,3,107.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03367469990787108,9885.855752752805,2,1,2_1,2_0_1,2_2_1,2_0_0 -3266,1,46.0,220.0,9,111,620.0,,,0,53,0.0,0.0,,624.0,6.881308016760767,,71,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,122335,2,2,0,0,2,,900.0,450.0,32,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,83.4213339019624,620.0,36053.67722536142,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01730752722113617,13866.798932831316,3,2,3_1,3_0_1,3_2_1,3_0_0 -3267,2,45.0,0.0,9,111,420.0,,,0,52,0.0,0.0,,512.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,105249,2,2,0,0,2,,360.0,606.0,32,1.0,1.0,4.0,2.0,1.5,1,1,38.29247681406775,420.0,37584.628881043,0,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013622590278076245,25056.419254028664,7,4,7,7_0,7_2,7_0_0 -3268,2,41.0,0.0,9,111,560.0,,,52,52,0.0,0.0,,612.0,89.45700421788997,,71,0,0,0,0,0,0,0,0,2,1.0,1,2008.0,6,129274,2,1,0,0,2,,320.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,2,2,96.36120637587157,560.0,87330.33930732301,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007007873836907001,30113.910105973457,8,4,8,8_1,8_2,8_0_0 -3269,2,54.0,0.0,9,111,1680.0,,,0,45,0.0,0.0,,1732.0,89.45700421788997,,41,0,0,0,0,0,0,0,0,2,90.0,1,2008.0,6,114398,2,1,0,0,2,,130.0,,22,3.0,0.0,4.0,3.0,2.0,1,1,47.10522303541269,1680.0,96247.08710480703,0,1,1,2,138.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01799534980330325,48123.54355240351,10,5,10,10_1,10_2,10_0_0 -3270,2,72.0,0.0,9,111,420.0,,,0,77,0.0,0.0,,420.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,2007.0,6,115776,2,1,0,0,2,,450.0,,21,0.0,0.0,4.0,2.0,1.5,1,1,35.76277357096322,420.0,42116.76666632959,0,5,1,2,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009972275491313312,28077.844444219725,8,4,8,8_1,8_2,8_0_0 -3271,2,52.0,0.0,9,111,1200.0,,,0,46,0.0,0.0,,1202.0,3.4406540083803834,,20,0,0,0,0,0,0,0,0,2,75.0,1,2009.0,6,129891,2,2,0,0,2,,400.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,77.92852786946528,1200.0,9454.270110742476,0,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12713831802142184,6302.846740494984,1,1,1_0,1_1_0,1_2_0,1_0_0 -3273,2,39.0,0.0,9,111,600.0,,,85,53,0.0,0.0,,860.0,447.28502108944986,,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,111751,2,1,0,0,2,,600.0,,42,1.0,0.0,7.0,5.0,2.5999999999999996,1,1,227.73829162859377,600.0,51308.46355339681,6,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016761367237297927,19734.024443614162,5,3,5,5_1,5_2,5_0_0 -3274,2,56.0,0.0,6,111,1200.0,,,46,45,0.0,0.0,,1202.0,3.4406540083803834,,50,0,0,0,0,0,0,0,0,0,,1,,4,102295,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,34.95775924738419,1200.0,100607.37430009185,4,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011947434354212172,67071.5828667279,10,5,10,10_1,10_2,10_0_0 -3275,2,62.0,0.0,6,111,700.0,,,74,75,0.0,0.0,,703.0,5.160981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,4,120297,2,1,0,0,2,,800.0,,41,0.0,0.0,4.0,2.0,1.5,9,8,49.97923730585862,700.0,57596.521851702164,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012205598140284648,38397.68123446811,9,5,9,9_1,9_2,9_0_0 -3276,2,69.0,0.0,6,111,1500.0,,,72,75,0.0,0.0,,1820.0,550.5046413408613,,71,0,0,0,0,0,0,0,0,0,,1,,4,131957,2,2,0,0,2,,1100.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,55.84808237743788,1500.0,47979.299894758005,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03793302536702593,31986.19992983867,8,4,8,8_1,8_2,8_0_0 -3278,1,31.0,650.0,7,111,0.0,,,0,81,0.0,0.0,,439.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,126833,2,2,0,0,2,,0.0,930.0,32,1.0,0.0,4.0,7.0,2.8,1,1,92.23247871910645,0.0,28890.48731663615,0,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015195313086574642,10318.03118451291,2,1,2_1,2_0_1,2_2_1,2_0_0 -3279,2,46.0,0.0,8,111,650.0,,,85,62,0.0,0.0,,790.0,240.84578058662683,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126498,2,1,0,0,2,,120.0,,42,1.0,0.0,4.0,7.0,3.1999999999999993,2,2,7.574688069164691,650.0,52802.536935675154,6,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01496140234629995,16500.79279239849,4,2,4_0,4_1_0,4_2_0,4_0_0 -3280,2,50.0,0.0,8,111,900.0,,,75,52,0.0,0.0,,992.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,0,,1,1999.0,6,132744,2,1,0,0,2,,800.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,56.56160744096419,900.0,95280.83852351244,5,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010411327349467063,63520.55901567496,10,5,10,10_1,10_2,10_0_0 -3281,2,65.0,0.0,6,111,1500.0,,,85,78,0.0,0.0,,1776.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,4,109887,2,2,0,0,2,,800.0,,41,2.0,0.0,4.0,6.0,3.3,1,1,64.05806307407141,1500.0,24826.20710937633,6,5,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07153730701494239,7523.093063447373,1,1,1_0,1_1_0,1_2_0,1_0_0 -3282,2,53.0,0.0,6,111,1700.0,,,0,63,0.0,0.0,,1703.0,5.160981012570575,,12,0,0,0,0,0,0,0,0,2,15.0,1,,4,120969,2,1,0,0,2,,350.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,27.147425274170807,1700.0,46353.10258422362,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03673971978263262,46353.10258422362,10,5,10,10_1,10_2,10_0_0 -3283,2,33.0,0.0,6,111,450.0,,,90,47,0.0,0.0,,452.0,3.4406540083803834,,20,0,0,0,0,0,0,0,0,2,20.0,1,,4,111811,1,3,0,0,2,,230.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,7.926041328433796,450.0,66203.12068561435,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006827472713053202,31525.295564578264,8,4,8,8_1,8_2,8_0_0 -3284,2,59.0,0.0,6,111,400.0,,,77,34,0.0,0.0,,700.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,2,1.0,1,,4,131198,2,1,0,0,2,,1200.0,,42,2.0,0.0,6.0,4.0,2.5,2,2,35.5404040499605,400.0,114256.8306675932,5,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006126548372731485,45702.73226703728,10,5,10,10_1,10_2,10_0_0 -3285,2,47.0,0.0,9,111,756.0,,,37,35,0.0,0.0,,1056.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,113723,2,1,0,0,2,,178.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,44.95444387487954,756.0,91488.14636484599,1,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011542478910751703,45744.073182422995,10,5,10,10_1,10_2,10_0_0 -3286,1,46.0,400.0,7,111,0.0,,,85,53,0.0,0.0,,573.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,101251,2,1,0,0,2,,665.0,650.0,42,1.0,2.0,3.0,7.0,3.3999999999999995,2,2,76.37350497139732,0.0,22066.991496433475,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025966385136488124,6490.291616598081,1,1,1_1,1_1_1,1_2_1,1_0_0 -3287,2,48.0,0.0,8,111,600.0,,,85,68,0.0,0.0,,1224.0,1073.4840506146795,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,110600,1,1,0,0,2,,0.0,,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,8.479138180820623,600.0,26048.490999217902,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046989286252195964,8682.830333072636,1,1,1_0,1_1_0,1_2_0,1_0_0 -3288,2,61.0,0.0,9,111,600.0,,,78,77,0.0,0.0,,912.0,536.7420253073398,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,133607,2,1,0,0,2,,0.0,,41,0.0,9.0,5.0,2.0,1.5,2,2,87.95625791286635,600.0,8476.590817469045,5,6,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1075904239851354,5651.060544979363,1,1,1_0,1_1_0,1_2_0,1_0_0 -3289,2,39.0,0.0,9,111,300.0,,,0,85,0.0,0.0,,612.0,536.7420253073398,,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,126037,2,2,0,0,2,,0.0,,31,0.0,1.0,2.0,4.0,1.9,1,1,108.27538771861869,300.0,15978.231325301205,0,6,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03830211163803283,8409.595434369056,1,1,1_0,1_1_0,1_2_0,1_0_0 -3290,2,47.0,0.0,7,111,1014.0,,,53,53,0.0,0.0,,1118.0,178.91400843577995,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,126895,2,1,0,0,2,,258.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,45.09984161066763,1014.0,51915.05272998968,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021535179898876745,34610.035153326455,9,5,9,9_1,9_2,9_0_0 -3291,2,32.0,0.0,7,111,0.0,,,42,53,0.0,0.0,,291.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,102567,2,1,0,0,2,,247.0,180.0,43,2.0,0.0,5.0,4.0,2.1,3,3,77.67285636535378,0.0,77303.0,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003764407590908503,36810.95238095238,9,5,9,9_1,9_2,9_0_0 -3292,0,48.0,0.0,9,111,900.0,,,0,21,0.0,0.0,,1000.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,2,15.0,7,2007.0,6,122606,2,1,0,0,2,,300.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,38.52526551203196,900.0,15116.900826446281,0,1,5,0,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06615112525250869,15116.900826446281,3,2,3_0,3_1_0,3_2_0,3_0_0 -3293,2,61.0,0.0,9,111,492.0,,,77,47,0.0,0.0,,596.0,178.91400843577995,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,114543,2,1,0,0,2,,200.0,,42,1.0,3.0,4.0,2.0,1.5,5,4,53.79108564203882,492.0,54634.041594712566,5,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010908949486498915,36422.694396475046,9,5,9,9_1,9_2,9_0_0 -3294,2,46.0,0.0,8,111,600.0,,,85,68,0.0,0.0,,912.0,536.7420253073398,,60,0,0,0,0,0,0,0,0,0,,1,2002.0,6,116003,2,2,0,0,2,,0.0,,42,1.0,4.0,3.0,3.0,1.8,2,2,47.267806416673594,600.0,17704.649178396237,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05151189333437065,9835.916210220132,2,1,2_0,2_1_0,2_2_0,2_0_0 -3296,2,61.0,0.0,9,111,1500.0,,,71,11,0.0,0.0,,2100.0,1032.196202514115,,41,0,0,0,0,0,0,0,0,0,,1,2010.0,6,103471,2,2,0,0,2,,240.0,,42,1.0,0.0,4.0,4.0,2.5,1,1,173.54995866094117,1500.0,5807.0,5,1,0,1,111.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.361632512484932,2322.8,1,1,1_0,1_1_0,1_2_0,1_0_0 -3297,1,27.0,415.0,7,111,600.0,,,0,52,0.0,0.0,,750.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,1,,5,117540,2,1,0,0,2,,0.0,480.0,32,1.0,0.0,2.0,3.0,1.6,6,4,93.56416076777106,600.0,14531.107547922695,0,4,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05161340919999018,9081.942217451684,1,1,1_1,1_1_1,1_2_1,1_0_0 -3298,2,31.0,0.0,7,111,900.0,,,85,63,0.0,0.0,,900.0,0.0,,44,0,0,0,0,0,0,0,0,0,,1,,5,131754,2,1,0,0,2,,0.0,350.0,42,1.0,0.0,2.0,5.0,2.4,1,1,58.2455796154435,900.0,6479.200597309498,6,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13890602497686627,2699.6669155456243,1,1,1_0,1_1_0,1_2_0,1_0_0 -3299,2,23.0,0.0,7,111,0.0,,,85,63,0.0,0.0,,1071.0,0.0,,50,0,0,0,0,0,0,0,0,1,40.0,3,,5,115262,2,1,0,0,2,,0.0,700.0,42,1.0,0.0,2.0,3.0,1.8,3,3,101.17921562520054,0.0,21425.511316765722,6,1,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04998713842417985,11903.061842647623,2,1,2_0,2_0_0,2_2_0,2_0_0 -3300,2,64.0,0.0,9,111,2100.0,,,56,63,0.0,0.0,,2400.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119722,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,6.0,2.6999999999999997,1,1,70.36500856902221,2100.0,12478.024390243903,1,4,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19233813983217324,4621.49051490515,1,1,1_0,1_1_0,1_2_0,1_0_0 -3301,0,51.0,0.0,7,111,1140.0,,,0,85,0.0,0.0,,1440.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,0,,1,,5,124600,2,1,0,0,2,,0.0,,31,1.0,0.0,4.0,3.0,2.0,2,2,23.171692779368552,1140.0,29472.0,0,6,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048859934853420196,14736.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -3302,2,62.0,0.0,7,111,600.0,,,78,52,0.0,0.0,,900.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,113531,2,1,0,0,2,,200.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,50.80332894079817,600.0,15360.123966942148,5,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058593277107461365,10240.082644628099,2,1,2_0,2_1_0,2_2_0,2_0_0 -3303,2,37.0,0.0,9,111,720.0,,,0,56,0.0,0.0,,1020.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122341,2,1,0,0,2,,0.0,,32,1.0,0.0,4.0,7.0,3.3999999999999995,3,3,8.135643015159527,720.0,13832.728344438847,0,4,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07373816463402676,4068.44951307025,1,1,1_0,1_1_0,1_2_0,1_0_0 -3304,2,52.0,0.0,7,111,1440.0,,,85,68,0.0,0.0,,1740.0,516.0981012570575,,10,0,0,0,0,0,0,0,0,0,,1,,5,127864,2,2,0,0,2,,0.0,,42,1.0,5.0,2.0,3.0,1.8,1,1,39.40028061363059,1440.0,5118.658385093167,6,4,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3399328240125033,2843.6991028295374,1,1,1_0,1_1_0,1_2_0,1_0_0 -3305,2,74.0,0.0,7,111,1200.0,,,0,77,0.0,0.0,,1350.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,5,122221,2,2,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,51.855390144157745,1200.0,5110.0,0,6,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.26418786692759294,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -3306,0,53.0,0.0,7,111,336.0,,,0,56,0.0,0.0,,786.0,774.1471518855863,,71,0,0,0,0,0,0,0,0,0,,1,,5,104162,2,1,0,0,2,,0.0,,32,1.0,1.0,3.0,2.0,1.3,1,1,43.141742725867324,336.0,11737.717348695476,0,4,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0669636162338971,9029.013345150366,1,1,1_0,1_1_0,1_2_0,1_0_0 -3308,1,37.0,523.0,7,111,0.0,,,0,85,0.0,0.0,,951.0,0.0,,70,0,0,0,0,0,0,0,0,0,,8,,5,100491,2,2,0,0,2,,274.0,800.0,31,0.0,0.0,3.0,6.0,2.6999999999999997,3,3,58.187031645562136,0.0,21965.80162212485,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043294572916570184,8135.482082268464,1,1,1_1,1_0_1,1_2_1,1_0_0 -3309,2,64.0,0.0,7,111,900.0,,,46,38,0.0,0.0,,1200.0,516.0981012570575,,70,0,0,0,0,0,0,0,0,3,24.0,1,,5,106345,2,1,0,0,2,,300.0,,42,3.0,0.0,5.0,5.0,2.8,2,2,117.74745670694624,900.0,163112.9063493568,7,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007356867257516878,58254.609410484576,10,5,10,10_1,10_2,10_0_0 -3310,2,70.0,0.0,6,111,960.0,,,77,78,0.0,0.0,,1260.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,4,100697,2,1,0,0,2,,0.0,,41,0.0,0.0,6.0,2.0,1.5,3,3,26.47093681881638,960.0,26601.719386094584,5,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04736535942329483,17734.479590729723,4,2,4_0,4_1_0,4_2_0,4_0_0 -3311,2,49.0,0.0,8,111,620.0,,,52,53,0.0,0.0,,620.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,108689,2,1,0,0,2,,0.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,91.27750653918862,620.0,50351.68372652927,4,1,1,2,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012313391611040302,27973.157625849595,7,4,7,7_1,7_2,7_0_0 -3312,2,45.0,0.0,8,111,2234.0,,,22,21,0.0,0.0,,2234.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,100724,2,1,0,0,2,,500.0,,43,2.0,1.0,4.0,4.0,2.5,3,3,59.33247101134325,2234.0,21344.281006759258,1,1,1,2,132.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10466503881262348,8537.712402703703,1,1,1_0,1_1_0,1_2_0,1_0_0 -3313,1,45.0,157.0,7,111,0.0,,,0,64,0.0,0.0,,25.0,43.00817510475479,,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,109689,2,1,0,0,2,,100.0,550.0,12,1.0,0.0,3.0,1.0,1.0,1,1,74.89045884669648,0.0,14073.744467861545,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0017763573906780376,14073.744467861545,3,2,3_1,3_1_1,3_2_1,3_0_0 -3314,2,46.0,0.0,7,111,1200.0,,,22,48,0.0,0.0,,2400.0,2064.39240502823,,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,126044,2,2,0,0,2,,0.0,,43,3.0,0.0,5.0,6.0,3.3,3,3,100.0196452932877,1200.0,35901.33147669837,1,1,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06684988832678007,10879.191356575264,2,1,2_0,2_1_0,2_2_0,2_0_0 -3315,2,38.0,0.0,7,111,600.0,,,63,68,0.0,0.0,,900.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,,5,110323,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,56.36584781487021,600.0,23665.579010453766,4,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03802991676655974,9466.231604181507,1,1,1_0,1_1_0,1_2_0,1_0_0 -3316,2,66.0,0.0,7,111,480.0,,,0,22,0.0,0.0,,780.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,,5,125845,2,1,0,0,2,,0.0,,12,1.0,6.0,5.0,1.0,1.0,3,3,33.898289367571046,480.0,15245.827107438017,0,4,0,1,236.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05116154043354326,15245.827107438017,3,2,3_0,3_1_0,3_2_0,3_0_0 -3317,2,41.0,0.0,7,111,360.0,,,0,63,0.0,0.0,,510.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,1,20.0,3,,5,114927,2,2,0,0,2,,0.0,200.0,12,1.0,5.0,1.0,1.0,1.0,1,1,47.43316462840856,360.0,8719.070819672132,0,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05849247133643282,8719.070819672132,1,1,1_0,1_0_0,1_2_0,1_0_0 -3318,2,32.0,0.0,6,111,420.0,,,0,85,0.0,0.0,,570.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,3,,4,113389,2,2,0,0,2,,0.0,250.0,31,0.0,0.0,2.0,4.0,2.1,2,2,42.71736688881006,420.0,3373.23002528868,0,6,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.16897750693749963,1606.3000120422284,1,1,1_0,1_0_0,1_2_0,1_0_0 -3319,2,54.0,0.0,9,111,480.0,,,0,85,0.0,0.0,,780.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,109170,2,1,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,46.37883996853858,480.0,5616.515527950311,0,7,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13887614057476896,5616.515527950311,1,1,1_0,1_1_0,1_2_0,1_0_0 -3320,2,39.0,0.0,8,111,0.0,,,85,55,0.0,0.0,,300.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,118078,2,1,0,0,2,,0.0,,42,1.0,0.0,5.0,4.0,2.1,4,4,70.03854802864535,0.0,41677.81530391627,7,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007198074030809633,19846.578716150605,5,3,5,5_1,5_2,5_0_0 -3321,2,61.0,0.0,9,111,0.0,,,86,55,0.0,0.0,,959.0,0.0,,70,0,0,0,0,0,0,0,0,0,,3,2013.0,6,126832,2,1,0,0,2,,0.0,,42,2.0,2.0,4.0,3.0,2.0,1,1,78.20476566427337,0.0,42673.89195050134,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022472756905144047,21336.94597525067,6,3,6,6_0,6_2,6_0_0 -3322,2,56.0,0.0,8,111,0.0,,,0,56,0.0,0.0,,150.0,258.04905062852873,,70,0,0,0,0,0,0,0,0,0,,7,1999.0,6,132920,2,2,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,36.05562993719607,0.0,9456.0,0,4,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015862944162436547,9456.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -3323,2,33.0,0.0,9,111,0.0,,,90,22,0.0,0.0,,150.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,2,90.0,1,2009.0,6,129208,2,1,0,0,2,,0.0,,43,2.0,2.0,5.0,5.0,2.5999999999999996,2,2,195.08268571181418,0.0,9745.213628877453,1,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015392171553378091,3748.15908802979,1,1,1_0,1_1_0,1_2_0,1_0_0 -3324,2,46.0,0.0,9,111,720.0,,,54,68,0.0,0.0,,1032.0,536.7420253073398,,41,0,0,0,0,0,0,0,0,0,,1,2012.0,6,122079,2,1,0,0,2,,0.0,,43,2.0,6.0,4.0,5.0,2.4,2,2,139.39377572549864,720.0,27711.37656934445,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037241022560447035,11546.406903893521,2,1,2_0,2_1_0,2_2_0,2_0_0 -3326,2,63.0,0.0,8,111,990.0,,,85,21,0.0,0.0,,1302.0,536.7420253073398,,10,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107892,2,1,0,0,2,,0.0,,41,0.0,6.0,15.0,3.0,2.0,5,3,44.90543546222487,990.0,19910.87565674256,6,7,0,1,305.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06539139827128068,9955.43782837128,2,1,2_0,2_1_0,2_2_0,2_0_0 -3327,2,35.0,0.0,7,111,300.0,,,0,81,0.0,0.0,,612.0,536.7420253073398,,10,0,0,0,0,0,0,0,0,0,,1,,5,101228,2,1,0,0,2,,0.0,300.0,12,1.0,3.0,2.0,1.0,1.0,1,1,34.56898464294446,300.0,9062.900327868854,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06752805149120647,9062.900327868854,1,1,1_0,1_1_0,1_2_0,1_0_0 -3328,2,39.0,0.0,9,111,0.0,,,85,63,0.0,0.0,,1444.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,119058,2,1,0,0,2,,0.0,,42,1.0,2.0,2.0,5.0,2.4,2,2,133.71225121796186,0.0,19296.066666666666,6,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07483390397352138,8040.027777777777,1,1,1_0,1_1_0,1_2_0,1_0_0 -3329,2,58.0,0.0,9,111,120.0,,,0,67,0.0,0.0,,432.0,536.7420253073398,,50,0,0,0,0,0,0,0,0,3,30.0,1,2004.0,6,132329,2,1,0,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,33.90180321029502,120.0,17704.649178396237,0,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02440037052680715,17704.649178396237,4,2,4_0,4_1_0,4_2_0,4_0_0 -3330,1,62.0,450.0,2,111,670.0,,,85,68,0.0,0.0,,870.0,344.06540083803833,,70,0,0,0,0,0,0,0,0,0,,1,,2,102083,2,2,0,0,2,,400.0,800.0,42,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,89.68117512519449,670.0,22897.91181202307,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03799473101050143,8806.889158470412,1,1,1_1,1_1_1,1_2_1,1_0_1 -3331,2,36.0,0.0,7,111,600.0,,,0,43,0.0,0.0,,720.0,206.439240502823,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,121667,2,1,0,0,2,,300.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,7.835959960480189,600.0,25481.0,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028256347867038185,25481.0,7,4,7,7_1,7_2,7_0_0 -3332,2,58.0,0.0,2,111,800.0,,,62,52,0.0,0.0,,900.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,106821,2,2,0,0,2,,555.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,37.714514086110796,800.0,38747.64000996364,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02322722105832955,19373.82000498182,5,3,5,5_1,5_2,5_0_1 -3333,2,30.0,0.0,7,111,450.0,,,54,46,0.0,0.0,,550.0,172.03270041901916,,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,112196,2,2,0,0,2,,350.0,680.0,43,2.0,0.0,2.0,2.0,1.5,2,2,48.92748756214494,450.0,28696.585297596,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019166043426291392,19131.056865064,5,3,5,5_1,5_2,5_0_0 -3334,2,52.0,0.0,7,111,388.0,,,0,22,0.0,0.0,,568.0,309.6588607542345,,60,0,0,0,0,0,0,0,0,0,,1,,5,104821,2,1,0,0,2,,180.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,50.40714524952136,388.0,38807.99999860846,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01463615749382516,38807.99999860846,9,5,9,9_1,9_2,9_0_0 -3335,2,35.0,0.0,7,111,500.0,,,68,21,0.0,0.0,,620.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,1,,5,118452,2,1,0,0,2,,400.0,600.0,43,2.0,0.0,2.0,2.0,1.5,1,1,48.92748756214494,500.0,27440.546539566712,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02259430216180344,18293.697693044476,4,2,4_0,4_1_0,4_2_0,4_0_0 -3336,2,31.0,0.0,7,111,200.0,,,0,56,0.0,0.0,,375.0,301.05722573328353,,41,0,0,0,0,0,0,0,0,0,,1,,5,123350,2,1,0,0,2,,120.0,500.0,12,1.0,0.0,3.0,1.0,1.0,2,2,66.35294690058242,200.0,14499.959101258564,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025862141912348625,14499.959101258564,3,2,3_0,3_1_0,3_2_0,3_0_0 -3337,1,54.0,150.0,7,111,600.0,,,85,62,0.0,0.0,,740.0,240.84578058662683,,20,0,0,0,0,0,0,0,0,2,20.0,2,,5,101198,2,2,0,0,2,,400.0,670.0,42,1.0,0.0,3.0,2.0,1.5,2,2,35.91397080315094,600.0,21425.511316765722,6,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03453826557786469,14283.674211177147,3,2,3_1,3_0_1,3_2_1,3_0_0 -3338,2,84.0,0.0,2,111,400.0,,,86,86,0.0,0.0,,480.0,137.62616033521533,,33,0,0,0,0,0,0,0,0,0,,1,,2,123284,2,1,0,0,2,,500.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,41.984261084156664,400.0,30047.36899222584,5,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015974776364752283,20031.57932815056,5,3,5,5_1,5_2,5_0_1 -3339,0,52.0,0.0,2,111,700.0,,,85,67,0.0,0.0,,860.0,275.25232067043066,,20,0,0,0,0,0,0,0,0,1,10.0,1,,2,126572,2,2,0,0,2,,480.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,54.033308037715244,700.0,19584.224168126093,6,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04391289604413718,9325.821032440996,1,1,1_0,1_1_0,1_2_0,1_0_1 -3340,1,50.0,200.0,2,111,700.0,,,85,81,0.0,0.0,,700.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,132293,2,2,0,0,2,,400.0,500.0,42,1.0,0.0,3.0,2.0,1.5,1,1,39.80465158941517,700.0,13350.884690167026,7,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0524309823839279,8900.589793444684,1,1,1_1,1_0_1,1_2_1,1_0_1 -3341,2,31.0,0.0,2,111,450.0,,,0,68,0.0,0.0,,550.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,0,,2,,2,103998,2,2,0,0,2,,400.0,750.0,12,1.0,0.0,4.0,1.0,1.0,4,4,28.508289924031992,450.0,28292.124712764562,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01944003872398655,28292.124712764562,8,4,8,8_0,8_2,8_0_1 -3342,2,69.0,0.0,5,111,400.0,,,86,78,0.0,0.0,,500.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,0,,1,,3,108935,2,2,0,0,2,,400.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,36.61334004831492,400.0,36842.96857427145,6,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013571110563255887,24561.9790495143,7,4,7,7_1,7_2,7_0_0 -3343,2,41.0,0.0,6,111,700.0,,,0,43,0.0,0.0,,832.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,2,12.0,1,,4,118260,2,1,0,0,2,,704.0,850.0,12,1.0,0.0,4.0,1.0,1.0,2,2,40.60272569612563,700.0,24393.673161619005,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034107204539784865,24393.673161619005,7,4,7,7_1,7_2,7_0_0 -3344,0,75.0,0.0,7,111,250.0,,,0,77,0.0,0.0,,388.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,5,103446,1,3,0,0,2,,140.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,42.58214728273406,250.0,18470.134375,0,5,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021006885609082093,18470.134375,4,2,4_0,4_1_0,4_2_0,4_0_0 -3345,1,39.0,200.0,5,111,250.0,,,0,68,0.0,0.0,,350.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,3,132573,2,2,0,0,2,,200.0,500.0,12,1.0,0.0,3.0,1.0,1.0,2,2,95.78506435663864,250.0,17708.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0197650779308787,17708.0,4,2,4_1,4_1_1,4_2_1,4_0_0 -3346,0,70.0,0.0,5,111,200.0,,,0,78,0.0,0.0,,275.0,129.02452531426437,,50,0,0,0,0,0,0,0,0,0,,1,,3,101813,2,2,0,0,2,,140.0,,11,0.0,0.0,1.0,1.0,1.0,2,2,67.76637040380425,200.0,14564.90776474899,0,5,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01888099838610542,14564.90776474899,3,2,3_0,3_1_0,3_2_0,3_0_0 -3347,0,40.0,0.0,7,111,800.0,,,81,63,0.0,0.0,,930.0,223.64251054472493,,31,0,0,0,0,0,0,0,0,0,,1,,5,133397,2,2,0,0,2,,780.0,,43,2.0,3.0,5.0,3.0,2.0,1,1,78.93771201912278,800.0,18820.0,4,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049415515409139216,9410.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -3348,0,41.0,0.0,6,111,500.0,,,85,22,0.0,0.0,,620.0,206.439240502823,,42,0,0,0,0,0,0,0,0,0,,1,,4,128961,2,1,0,0,2,,0.0,,42,1.0,0.0,4.0,3.0,1.8,4,3,45.149309608244366,500.0,26443.048383831778,6,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023446615949887614,14690.582435462098,3,2,3_0,3_1_0,3_2_0,3_0_0 -3349,2,59.0,0.0,6,111,600.0,,,0,67,0.0,0.0,,700.0,172.03270041901916,,43,0,0,0,0,0,0,0,0,2,30.0,1,,4,118373,2,2,0,0,2,,600.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,35.48388233731924,600.0,23513.38962601634,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02977027179550015,23513.38962601634,6,3,6,6_1,6_2,6_0_0 -3350,2,44.0,0.0,5,111,500.0,,,0,47,0.0,0.0,,600.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,110109,2,2,0,0,2,,400.0,900.0,12,1.0,0.0,4.0,1.0,1.0,2,2,43.44502935016734,500.0,24393.673161619005,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02459654173542178,24393.673161619005,7,4,7,7_1,7_2,7_0_0 -3351,0,22.0,0.0,2,111,400.0,,,81,54,0.0,0.0,,520.0,206.439240502823,,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,107512,2,2,0,0,2,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,93.9703317164073,400.0,24393.673161619005,4,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021317002837365543,16262.448774412669,4,2,4_0,4_1_0,4_2_0,4_0_1 -3352,2,36.0,0.0,2,111,600.0,,,85,46,0.0,0.0,,740.0,240.84578058662683,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,118157,2,2,0,0,2,,550.0,700.0,42,1.0,0.0,4.0,3.0,1.8,1,1,34.533108368023335,600.0,35430.83833614734,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020885760392664356,19683.79907563741,5,3,5,5_1,5_2,5_0_1 -3353,2,46.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,361.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,105827,2,1,0,0,2,,197.0,600.0,12,1.0,0.0,2.0,1.0,1.0,2,2,44.51899573979832,0.0,27033.22847462923,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013353935891852488,27033.22847462923,7,4,7,7_0,7_2,7_0_0 -3354,0,28.0,0.0,5,111,500.0,,,0,67,0.0,0.0,,500.0,0.0,,70,0,0,0,0,0,0,0,0,2,20.0,2,,3,123401,2,2,0,0,2,,300.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,124.42059698332203,500.0,19990.883581192007,0,1,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025011400720196992,19990.883581192007,5,3,5,5_0,5_2,5_0_0 -3355,2,43.0,0.0,7,111,400.0,,,0,63,0.0,0.0,,400.0,0.0,,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,130875,2,2,0,0,2,,300.0,600.0,12,1.0,0.0,1.0,1.0,1.0,2,2,62.44097712331068,400.0,24487.006836411903,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016335193707922052,24487.006836411903,7,4,7,7_0,7_2,7_0_0 -3356,2,52.0,0.0,6,111,400.0,,,0,52,0.0,0.0,,500.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,2,20.0,2,,4,121216,2,2,0,0,2,,300.0,650.0,12,1.0,0.0,1.0,1.0,1.0,3,3,34.69921708314929,400.0,24393.673161619005,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020497118112851483,24393.673161619005,7,4,7,7_0,7_2,7_0_0 -3357,2,53.0,0.0,7,111,400.0,,,0,69,0.0,0.0,,500.0,172.03270041901916,,44,0,0,0,0,0,0,0,0,2,20.0,1,,5,110685,2,1,0,0,2,,450.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,58.15721003382209,400.0,10291.053565755243,0,1,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048585890337196576,10291.053565755243,2,1,2_0,2_1_0,2_2_0,2_0_0 -3358,2,36.0,0.0,7,111,260.0,,,0,68,0.0,0.0,,260.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,5,125998,2,1,0,0,2,,120.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,100.58179700620443,260.0,14557.119999999999,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01786067573805808,14557.119999999999,3,2,3_0,3_1_0,3_2_0,3_0_0 -3359,1,30.0,90.0,7,111,300.0,,,0,62,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,119827,2,2,0,0,2,,160.0,450.0,12,1.0,0.0,2.0,1.0,1.0,4,4,76.41399403560382,300.0,19598.60840964941,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01530720925330058,19598.60840964941,5,3,5,5_1,5_2,5_0_0 -3360,1,63.0,350.0,7,111,200.0,,,0,86,0.0,0.0,,375.0,301.05722573328353,,70,0,0,0,0,0,0,0,0,0,,1,,5,109771,2,2,0,0,2,,175.0,500.0,11,0.0,0.0,3.0,1.0,1.0,2,2,51.37533390178064,200.0,14546.911971698451,0,6,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025778667027722187,14546.911971698451,3,2,3_1,3_1_1,3_2_1,3_0_0 -3361,1,33.0,300.0,7,111,908.0,,,54,62,0.0,0.0,,1038.0,223.64251054472493,,60,0,0,0,0,0,0,0,0,0,,1,,5,133273,2,1,0,0,2,,650.0,800.0,43,2.0,0.0,4.0,3.0,1.8,1,1,53.13384324671726,908.0,36625.13462062899,4,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028341192756062932,20347.29701146055,5,3,5,5_1,5_2,5_0_0 -3363,0,44.0,0.0,7,111,600.0,,,0,64,0.0,0.0,,700.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,113881,2,2,0,0,2,,400.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,64.43441873862899,600.0,19920.0,0,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035140562248995984,19920.0,5,3,5,5_1,5_2,5_0_0 -3364,2,34.0,0.0,7,111,650.0,,,81,52,0.0,0.0,,770.0,206.439240502823,,70,0,0,0,0,0,0,0,0,0,,2,,5,131735,2,1,0,0,2,,700.0,650.0,43,2.0,0.0,2.0,3.0,1.8,1,1,36.38839446740466,650.0,39129.15863989033,4,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019678419540946155,21738.421466605738,6,3,6,6_0,6_2,6_0_0 -3365,1,32.0,200.0,7,111,800.0,,,56,62,0.0,0.0,,800.0,0.0,,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,116513,2,2,0,0,2,,500.0,650.0,43,2.0,0.0,2.0,3.0,1.8,1,1,37.25604582640204,800.0,35675.4818652074,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0224243642460847,19819.712147337446,5,3,5,5_1,5_2,5_0_0 -3366,1,38.0,400.0,7,111,870.0,,,85,81,0.0,0.0,,1010.0,240.84578058662683,,12,0,0,0,0,0,0,0,0,0,,1,,5,114035,2,2,0,0,2,,500.0,950.0,42,1.0,0.0,4.0,5.0,2.4,1,1,104.39323329351387,870.0,11511.635286985804,6,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08773731748970806,4796.514702910752,1,1,1_1,1_1_1,1_2_1,1_0_0 -3367,1,67.0,450.0,5,111,600.0,,,0,86,0.0,0.0,,700.0,172.03270041901916,,33,0,0,0,0,0,0,0,0,0,,1,,3,112158,2,1,0,0,2,,500.0,600.0,11,0.0,0.0,4.0,1.0,1.0,4,4,38.62819266809848,600.0,36880.65045016626,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018980142471886487,36880.65045016626,9,5,9,9_1,9_2,9_0_0 -3368,2,53.0,0.0,7,111,2400.0,,,0,31,0.0,0.0,,2400.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,121861,2,1,0,0,2,,419.0,,32,1.0,1.0,4.0,2.0,1.5,1,1,47.42011570329166,2400.0,144742.55443736174,0,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01658116377266656,96495.03629157449,10,5,10,10_1,10_2,10_0_0 -3369,2,34.0,0.0,9,111,0.0,,,33,46,0.0,0.0,,3182.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,130320,2,1,0,0,2,,1063.0,1075.0,43,2.0,0.0,3.0,4.0,2.1,1,1,66.00845876217859,0.0,49078.99999999999,1,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06483424682654497,23370.952380952378,6,3,6,6_1,6_2,6_0_0 -3370,2,46.0,0.0,9,111,1530.0,,,43,53,0.0,0.0,,1553.0,39.567521096374406,,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,130924,2,1,0,0,2,,309.0,250.0,43,2.0,1.0,5.0,4.0,2.5,2,2,94.52801062344825,1530.0,79144.05121349325,1,1,3,4,170.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019622447627942876,31657.6204853973,8,4,8,8_1,8_2,8_0_0 -3371,2,83.0,0.0,2,111,200.0,,,0,86,0.0,0.0,,325.0,215.04087552377396,,71,0,0,0,0,0,0,0,0,0,,1,,2,124133,2,1,0,0,2,,200.0,,11,0.0,0.0,2.0,1.0,1.0,4,4,59.34615594420299,200.0,14508.266430864785,0,5,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022401022310191192,14508.266430864785,3,2,3_0,3_1_0,3_2_0,3_0_1 -3372,2,56.0,0.0,5,111,450.0,,,22,63,0.0,0.0,,580.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,1,,3,108962,2,2,0,0,2,,590.0,,43,3.0,0.0,2.0,3.0,2.0,2,2,60.1734946448313,450.0,54940.10109847721,1,1,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010556951814857073,27470.050549238604,7,4,7,7_1,7_2,7_0_0 -3373,2,49.0,0.0,7,111,1200.0,,,85,63,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,106700,2,3,0,0,2,,700.0,750.0,42,1.0,0.0,3.0,4.0,2.1,1,1,98.46489329991248,1200.0,19957.74869114945,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060127022269408435,9503.689852928308,1,1,1_0,1_1_0,1_2_0,1_0_0 -3374,1,39.0,100.0,6,111,300.0,,,56,55,0.0,0.0,,475.0,301.05722573328353,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,115672,2,2,0,0,2,,250.0,650.0,43,2.0,0.0,3.0,4.0,2.1,2,2,60.92057281074341,300.0,35846.658784809624,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013250886305791097,17069.83751657601,4,2,4_1,4_1_1,4_2_1,4_0_0 -3375,2,50.0,0.0,2,111,908.0,,,67,54,0.0,0.0,,1048.0,240.84578058662683,,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,126607,2,2,0,0,2,,600.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,37.01082680477082,908.0,33603.435903322876,4,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03118728700883735,16801.717951661438,4,2,4_0,4_1_0,4_2_0,4_0_1 -3376,2,69.0,0.0,5,111,450.0,,,86,74,0.0,0.0,,625.0,301.05722573328353,,10,0,0,0,0,0,0,0,0,0,,1,,3,125533,1,1,0,0,1,,200.0,,41,0.0,0.0,4.0,2.0,1.5,3,3,56.291579145260506,450.0,7383.843484271387,6,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08464426437685697,4922.5623228475915,1,1,1_0,1_1_0,1_2_0,1_0_0 -3377,2,80.0,0.0,6,111,200.0,,,0,78,0.0,0.0,,300.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,0,,1,,4,116499,2,1,0,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,55.89020434966276,200.0,14656.925739604943,0,5,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020468139453648216,14656.925739604943,3,2,3_0,3_1_0,3_2_0,3_0_0 -3378,0,46.0,0.0,7,111,500.0,,,85,68,0.0,0.0,,680.0,309.6588607542345,,31,0,0,0,0,0,0,0,0,2,15.0,7,,5,115816,1,1,0,0,2,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,36.24370494558254,500.0,18820.0,6,1,5,0,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036131774707757705,12546.666666666666,2,1,2_0,2_1_0,2_2_0,2_0_0 -3379,0,34.0,0.0,9,111,800.0,,,81,63,0.0,0.0,,800.0,0.0,,31,0,0,0,0,0,0,0,0,0,,7,2006.0,6,118403,2,2,0,0,2,,0.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,49.52637245976868,800.0,13350.884690167026,4,4,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059921122724489025,8900.589793444684,1,1,1_0,1_1_0,1_2_0,1_0_0 -3380,2,50.0,0.0,7,111,300.0,,,84,47,0.0,0.0,,480.0,309.6588607542345,,31,0,0,0,0,0,0,0,0,0,,1,,5,104287,2,2,0,0,2,,270.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,42.60848796401718,300.0,38808.0,3,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012368583797155226,25872.0,7,4,7,7_1,7_2,7_0_0 -3381,2,64.0,0.0,5,111,450.0,,,0,75,0.0,0.0,,450.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,103526,2,2,0,0,1,,340.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,34.12707381986511,450.0,54457.633290824095,0,5,0,1,117.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00826330438557313,54457.633290824095,10,5,10,10_1,10_2,10_0_0 -3382,1,26.0,200.0,8,111,600.0,,,0,56,0.0,0.0,,692.0,158.27008438549763,,10,0,0,0,0,0,0,0,0,0,,2,2003.0,6,123224,1,1,0,0,2,,216.0,400.0,32,1.0,0.0,3.0,3.0,1.6,1,1,75.62196681117736,600.0,12907.588597595883,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05361187295114823,8067.242873497426,1,1,1_1,1_0_1,1_2_1,1_0_0 -3383,2,44.0,0.0,9,111,1300.0,,,38,33,0.0,0.0,,1392.0,158.27008438549763,,33,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,104325,2,3,0,0,2,,250.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,104.26920528983833,1300.0,180952.8994142458,1,1,1,2,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007692609538205679,86168.04734011705,10,5,10,10_1,10_2,10_0_0 -3384,0,46.0,0.0,7,111,0.0,,,0,63,0.0,0.0,,244.0,0.0,,20,0,0,0,0,0,0,0,0,0,,7,,5,124414,1,3,0,0,2,,520.0,,32,2.0,1.0,3.0,2.0,1.5,1,1,42.018564941393365,0.0,12049.780487636915,0,4,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020249331533495087,8033.186991757943,1,1,1_0,1_1_0,1_2_0,1_0_0 -3385,2,59.0,0.0,5,111,1248.0,,,75,75,0.0,0.0,,1386.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,1,,3,127601,2,1,0,0,2,,405.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,49.339014219864964,1248.0,69232.0,5,5,0,1,133.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020019644095216085,46154.666666666664,10,5,10,10_1,10_2,10_0_0 -3386,2,32.0,0.0,7,111,1000.0,,,0,42,0.0,0.0,,1023.0,39.567521096374406,,20,0,0,0,0,0,0,0,0,0,,1,,5,106123,1,3,0,0,2,,140.0,1226.0,22,3.0,0.0,4.0,3.0,2.0,2,2,174.48532681604667,1000.0,38962.6003338793,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026255947786689864,19481.30016693965,5,3,5,5_1,5_2,5_0_0 -3387,2,44.0,0.0,7,111,1200.0,,,85,31,0.0,0.0,,1200.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,117880,2,1,0,0,2,,250.0,,42,1.0,0.0,4.0,3.0,1.8,1,1,89.89486210267637,1200.0,138338.22641218576,6,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008674391967586306,76854.57022899209,10,5,10,10_1,10_2,10_0_0 -3388,2,73.0,0.0,2,111,900.0,,,0,75,0.0,0.0,,992.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,0,,1,,2,126309,2,2,0,0,1,,113.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,45.55274027190476,900.0,45649.18065754651,0,5,0,1,240.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021730948632831752,45649.18065754651,10,5,10,10_1,10_2,10_0_1 -3389,2,83.0,0.0,6,111,280.0,,,0,86,0.0,0.0,,372.0,158.27008438549763,,41,0,0,0,0,0,0,0,0,0,,1,,4,105751,1,1,0,0,2,,60.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,46.11037383939535,280.0,16679.83620179711,0,6,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022302377283532328,16679.83620179711,4,2,4_0,4_1_0,4_2_0,4_0_0 -3390,2,32.0,0.0,7,111,450.0,,,0,34,0.0,0.0,,496.0,79.13504219274881,,41,0,0,0,0,0,0,0,0,2,10.0,2,,5,118650,2,2,0,0,2,,130.0,509.0,12,1.0,0.0,1.0,1.0,1.0,2,1,74.88131121142108,450.0,34692.843689238915,0,1,3,4,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014296896629256428,34692.843689238915,9,5,9,9_0,9_2,9_0_0 -3391,2,36.0,0.0,8,111,581.0,,,43,47,0.0,0.0,,650.0,118.70256328912323,,10,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,127278,2,2,0,0,1,,208.0,1100.0,43,2.0,0.0,4.0,2.0,1.5,3,2,91.22686749750717,581.0,59748.19381799634,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01087898994871738,39832.12921199756,9,5,9,9_1,9_2,9_0_0 -3393,2,53.0,0.0,9,111,942.0,,,0,43,0.0,0.0,,988.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,122753,2,1,0,0,1,,200.0,1071.0,32,1.0,0.0,3.0,2.0,1.3,1,1,35.871988112843475,942.0,56190.54826050821,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017583028295425716,43223.498661929385,9,5,9,9_1,9_2,9_0_0 -3394,1,41.0,500.0,7,111,1000.0,,,56,68,0.0,0.0,,1130.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,1,,5,112524,2,2,0,0,2,,600.0,880.0,43,2.0,0.0,6.0,3.0,1.8,1,1,116.45532878142681,1000.0,24023.587366883723,4,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0470371049395268,13346.437426046512,3,2,3_1,3_1_1,3_2_1,3_0_0 -3395,0,36.0,0.0,5,111,300.0,,,55,21,0.0,0.0,,475.0,301.05722573328353,,70,0,0,0,0,0,0,0,0,0,,1,,3,112573,2,1,0,0,2,,250.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,74.67894457546068,300.0,56088.12,1,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008468816569355506,37392.08,9,5,9,9_1,9_2,9_0_0 -3396,2,75.0,0.0,5,111,600.0,,,77,77,0.0,0.0,,740.0,240.84578058662683,,71,0,0,0,0,0,0,0,0,0,,1,,3,112163,2,2,0,0,2,,700.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,64.90310588197241,600.0,36842.96857427145,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020085243633618716,24561.9790495143,7,4,7,7_1,7_2,7_0_0 -3397,2,47.0,0.0,2,111,800.0,,,54,37,0.0,0.0,,932.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,121651,2,2,0,0,2,,740.0,1200.0,43,2.0,0.0,4.0,3.0,1.8,4,3,52.267543902505324,800.0,67223.08387937346,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013864285096952719,37346.15771076303,9,5,9,9_1,9_2,9_0_1 -3398,2,60.0,0.0,5,111,900.0,,,38,46,0.0,0.0,,1000.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,116619,2,2,0,0,2,,100.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,45.65771954908576,900.0,64187.8440164433,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015579273853532537,42791.8960109622,9,5,9,9_1,9_2,9_0_0 -3399,2,38.0,0.0,9,111,323.0,,,33,33,0.0,0.0,,369.0,79.13504219274881,,41,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,102747,2,3,0,0,2,,187.0,972.0,43,2.0,0.0,3.0,4.0,2.1,1,1,113.6848585738539,323.0,63398.95481783234,1,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00582028522489476,30189.978484682066,8,4,8,8_0,8_2,8_0_0 -3400,2,36.0,0.0,9,111,338.0,,,34,42,0.0,0.0,,338.0,0.0,,71,0,0,0,0,0,0,0,0,1,14.0,2,2011.0,6,132451,2,1,0,0,2,,100.0,1000.0,43,2.0,0.0,3.0,2.0,1.5,3,1,112.86607930884277,338.0,84583.07826863525,1,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003996071163625831,56388.71884575683,10,5,10,10_0,10_2,10_0_0 -3402,2,59.0,0.0,9,111,0.0,,,37,33,0.0,0.0,,1215.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,105615,2,2,0,0,2,,670.0,1000.0,43,2.0,0.0,3.0,3.0,1.8,3,3,73.00530824432798,0.0,90720.11849210366,4,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013392839650068957,50400.06582894648,10,5,10,10_1,10_2,10_0_0 -3403,2,44.0,0.0,9,111,1340.0,,,46,46,0.0,0.0,,1340.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,120314,2,1,0,0,2,,320.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,183.7389867084592,1340.0,61359.713060740265,1,1,1,2,139.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021838433283961543,30679.856530370133,8,4,8,8_1,8_2,8_0_0 -3404,2,44.0,0.0,6,111,130.0,,,0,22,0.0,0.0,,130.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,4,112558,2,2,0,0,2,,140.0,550.0,12,1.0,0.0,2.0,1.0,1.0,2,2,84.62790010779054,130.0,18319.5703125,0,1,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007096236308080711,18319.5703125,4,2,4_0,4_0_0,4_2_0,4_0_0 -3405,2,54.0,0.0,7,111,600.0,,,0,54,0.0,0.0,,646.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,35.0,1,,5,131018,2,1,0,0,2,,370.0,,32,1.0,0.0,3.0,3.0,2.0,1,1,57.51026283308168,600.0,37813.20534182645,0,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017083978841789374,18906.602670913224,5,3,5,5_1,5_2,5_0_0 -3407,0,67.0,0.0,2,111,400.0,,,0,75,0.0,0.0,,400.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,116959,1,1,0,0,2,,100.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,75.12149065477017,400.0,35800.20786413075,0,5,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011173119483498067,35800.20786413075,9,5,9,9_1,9_2,9_0_1 -3408,2,38.0,0.0,2,111,1200.0,,,42,34,0.0,0.0,,1275.0,129.02452531426437,,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,104050,2,3,0,0,2,,500.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,76.8608050617295,1200.0,86722.65336794668,1,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014702040937221245,41296.501603784134,9,5,9,9_1,9_2,9_0_1 -3409,2,37.0,0.0,9,111,0.0,,,0,34,0.0,0.0,,331.0,0.0,,12,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,128971,1,1,0,0,2,,561.0,770.0,22,2.0,0.0,2.0,2.0,1.5,2,2,77.26025098680097,0.0,57473.57394485743,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005759168558363455,38315.71596323829,9,5,9,9_1,9_2,9_0_0 -3410,2,47.0,0.0,7,111,1680.0,,,0,63,0.0,0.0,,1956.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,5,123365,2,1,0,0,2,,1000.0,,22,3.0,7.0,4.0,4.0,2.5,2,2,45.412604352531325,1680.0,52064.18496046994,0,4,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03756901220071159,20825.673984187975,5,3,5,5_1,5_2,5_0_0 -3411,2,74.0,0.0,2,111,540.0,,,77,86,0.0,0.0,,632.0,158.27008438549763,,33,0,0,0,0,0,0,0,0,0,,1,,2,123039,2,2,0,0,2,,180.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,58.31136469159571,540.0,34460.53101858244,6,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018339821857626087,22973.687345721628,6,3,6,6_1,6_2,6_0_1 -3412,2,42.0,0.0,9,111,0.0,,,0,33,0.0,0.0,,1277.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,130847,2,2,0,0,2,,368.0,700.0,22,2.0,0.0,1.0,2.0,1.5,2,2,116.84854759014809,0.0,42524.30661694412,0,1,3,4,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030029884120230898,28349.537744629415,8,4,8,8_1,8_2,8_0_0 -3413,1,47.0,350.0,5,111,1600.0,,,85,67,0.0,0.0,,1780.0,309.6588607542345,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,115097,2,1,0,0,2,,600.0,800.0,42,1.0,0.0,5.0,2.0,1.5,2,1,48.38816550297917,1600.0,24393.673161619005,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07296974048175128,16262.448774412669,4,2,4_1,4_1_1,4_2_1,4_0_0 -3414,1,43.0,400.0,9,111,700.0,,,68,53,0.0,0.0,,880.0,309.6588607542345,,20,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,121345,2,2,0,0,2,,400.0,850.0,43,2.0,0.0,3.0,4.0,2.3,2,1,54.54757344588735,700.0,45541.54492711709,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.019323015971643424,19800.671707442212,5,3,5,5_1,5_2,5_0_0 -3415,2,52.0,0.0,2,111,250.0,,,0,56,0.0,0.0,,350.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,113048,2,1,0,0,2,,200.0,500.0,12,1.0,0.0,1.0,1.0,1.0,2,2,48.09791179504085,250.0,19611.500491751744,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017846671148248137,19611.500491751744,5,3,5,5_1,5_2,5_0_1 -3416,2,66.0,0.0,2,111,0.0,,,86,86,0.0,0.0,,1199.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,2,126400,2,1,0,0,2,,473.0,750.0,41,0.0,0.0,3.0,2.0,1.5,1,1,35.62863978029368,0.0,26185.91682332468,5,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04578797099561587,17457.27788221645,4,2,4_0,4_1_0,4_2_0,4_0_1 -3417,2,21.0,0.0,2,111,600.0,,,53,54,0.0,0.0,,700.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,0,,2,,2,114515,2,2,0,0,2,,0.0,780.0,43,2.0,0.0,2.0,2.0,1.5,2,2,136.24785218357002,600.0,40607.42118721596,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01723822837142818,27071.61412481064,7,4,7,7_0,7_2,7_0_1 -3418,2,32.0,0.0,9,111,600.0,,,0,46,0.0,0.0,,711.0,190.95629746511128,,71,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,132717,2,1,0,0,2,,500.0,760.0,12,1.0,0.0,2.0,1.0,1.0,1,1,51.26627671717156,600.0,25417.476513589685,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02797287919671559,25417.476513589685,7,4,7,7_1,7_2,7_0_0 -3419,1,48.0,100.0,5,111,400.0,,,0,54,0.0,0.0,,600.0,344.06540083803833,,20,0,0,0,0,0,0,0,0,2,20.0,1,,3,125649,2,2,0,0,2,,300.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,43.701699670374715,400.0,24405.35549336433,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024584767886832722,24405.35549336433,7,4,7,7_1,7_2,7_0_0 -3420,2,45.0,0.0,5,111,2500.0,,,46,37,0.0,0.0,,2550.0,86.01635020950958,,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,121267,2,1,0,0,1,,600.0,,43,2.0,2.0,7.0,2.0,1.5,3,3,62.52443385276328,2500.0,124639.0,1,1,1,2,260.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020459085839905647,83092.66666666667,10,5,10,10_1,10_2,10_0_0 -3421,2,66.0,0.0,5,111,700.0,,,74,54,0.0,0.0,,800.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,0,,1,,3,127933,2,1,0,0,2,,700.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,49.68282293338911,700.0,44638.82435022385,5,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017921618941471703,29759.216233482566,8,4,8,8_1,8_2,8_0_0 -3422,2,36.0,0.0,5,111,700.0,,,35,38,0.0,0.0,,820.0,206.439240502823,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,101208,2,1,0,0,2,,800.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,63.03606087996033,700.0,70634.00181574609,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011609139775756007,39241.11211985894,9,5,9,9_1,9_2,9_0_0 -3423,2,62.0,0.0,8,111,2161.0,,,47,75,0.0,0.0,,2305.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,117990,2,2,0,0,2,,900.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,43.54422871799204,2161.0,102655.8209230719,1,5,1,2,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022453670715149397,68437.21394871459,10,5,10,10_1,10_2,10_0_0 -3424,2,33.0,0.0,7,111,390.0,,,47,42,0.0,0.0,,390.0,0.0,,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,127488,2,2,0,0,2,,390.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,108.74909444927061,390.0,97510.06219830863,1,1,1,2,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003999587234462504,40629.192582628595,9,5,9,9_1,9_2,9_0_0 -3425,2,32.0,0.0,6,111,0.0,,,0,38,0.0,0.0,,605.0,0.0,,31,0,0,0,0,0,0,0,0,2,45.0,1,,4,108515,2,1,0,0,2,,383.0,660.0,12,1.0,0.0,2.0,1.0,1.0,3,2,42.07136074530786,0.0,45795.429392809485,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013210925370098034,45795.429392809485,10,5,10,10_1,10_2,10_0_0 -3426,2,45.0,0.0,7,111,950.0,,,0,31,0.0,0.0,,950.0,0.0,,33,0,0,0,0,0,0,0,0,1,5.0,1,,5,111321,2,1,0,0,2,,222.0,,32,1.0,0.0,4.0,2.0,1.3,5,5,50.33056854293909,950.0,77281.96247310375,0,1,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012292648499067634,59447.663440849035,10,5,10,10_1,10_2,10_0_0 -3427,2,38.0,0.0,7,111,900.0,,,42,46,0.0,0.0,,996.0,165.1513924022584,,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,130038,2,3,0,0,2,,120.0,1290.0,43,2.0,0.0,4.0,4.0,2.1,3,3,86.32259180154921,900.0,71652.0,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013900519176017418,34120.0,9,5,9,9_1,9_2,9_0_0 -3428,2,50.0,0.0,7,111,717.0,,,55,53,0.0,0.0,,717.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,129659,2,3,0,0,2,,132.0,216.0,43,2.0,4.0,4.0,3.0,2.0,1,1,50.720803920690635,717.0,57124.93757478355,4,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01255143603546803,28562.468787391776,8,4,8,8_1,8_2,8_0_0 -3429,0,33.0,0.0,5,111,0.0,,,0,53,0.0,0.0,,1511.0,0.0,,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,129254,2,2,0,0,2,,650.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,103.8371528684344,0.0,27024.31569847983,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05591260910576902,27024.31569847983,7,4,7,7_1,7_2,7_0_0 -3430,2,60.0,0.0,9,111,800.0,,,81,38,0.0,0.0,,800.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129085,2,2,0,0,2,,400.0,750.0,43,2.0,0.0,3.0,2.0,1.5,1,1,47.657003656179505,800.0,8130.292991974893,4,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09839743792624078,5420.195327983262,1,1,1_0,1_1_0,1_2_0,1_0_0 -3431,1,51.0,140.0,7,111,900.0,,,0,55,0.0,0.0,,1080.0,309.6588607542345,,44,0,0,0,0,0,0,0,0,2,10.0,1,,5,106594,2,2,0,0,2,,160.0,400.0,31,0.0,0.0,4.0,3.0,1.8,2,2,30.193781663825128,900.0,25210.29806517327,0,7,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042839636294977584,14005.721147318482,3,2,3_1,3_1_1,3_2_1,3_0_0 -3432,2,37.0,0.0,5,111,700.0,,,0,46,0.0,0.0,,800.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,2,30.0,1,,3,103151,2,1,0,0,2,,600.0,900.0,12,1.0,0.0,3.0,1.0,1.0,2,2,50.772001385726234,700.0,31811.903413963955,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02514781934264383,31811.903413963955,8,4,8,8_1,8_2,8_0_0 -3433,2,50.0,0.0,7,111,900.0,,,0,37,0.0,0.0,,900.0,0.0,,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,108700,2,2,0,0,2,,250.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,42.0977980422214,900.0,66416.0279357073,0,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013550945878173066,44277.3519571382,10,5,10,10_1,10_2,10_0_0 -3434,2,64.0,0.0,8,111,756.0,,,0,64,0.0,0.0,,1068.0,536.7420253073398,,60,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,124517,2,1,0,0,2,,454.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,70.79555340151308,756.0,32444.508043235543,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03291774369260842,32444.508043235543,8,4,8,8_1,8_2,8_0_0 -3435,2,49.0,0.0,7,111,900.0,,,34,43,0.0,0.0,,900.0,0.0,,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,130055,2,1,0,0,2,,250.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,75.85319974143896,900.0,76421.96040243401,1,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011776719613847218,36391.409715444766,9,5,9,9_1,9_2,9_0_0 -3436,2,60.0,0.0,7,111,300.0,,,0,34,0.0,0.0,,404.0,178.91400843577995,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,114285,2,1,0,0,2,,300.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,37.26136934283069,300.0,78938.7047050561,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005117894973188273,52625.80313670406,10,5,10,10_1,10_2,10_0_0 -3437,2,52.0,0.0,6,111,650.0,,,0,34,0.0,0.0,,722.0,123.8635443016938,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,116826,1,3,0,0,2,,650.0,1210.0,12,1.0,2.0,4.0,1.0,1.0,2,2,47.7181619705996,650.0,70387.60852788498,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010257487292155552,70387.60852788498,10,5,10,10_1,10_2,10_0_0 -3438,2,57.0,0.0,6,111,720.0,,,0,52,0.0,0.0,,858.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,122122,2,1,0,0,2,,200.0,,22,2.0,0.0,5.0,2.0,1.5,3,2,42.701795549438344,720.0,38381.67311798442,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02235441892703653,25587.78207865628,7,4,7,7_1,7_2,7_0_0 -3439,2,63.0,0.0,7,111,1008.0,,,0,74,0.0,0.0,,1146.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,5,126278,2,2,0,0,2,,300.0,,11,0.0,3.0,4.0,1.0,1.0,2,1,57.67233401594117,1008.0,40063.59745635416,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028604520631190653,40063.59745635416,9,5,9,9_1,9_2,9_0_0 -3440,2,51.0,0.0,9,111,900.0,,,0,46,0.0,0.0,,1038.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,111647,2,3,0,0,2,,280.0,,32,1.0,1.0,5.0,2.0,1.5,3,3,35.10308114355226,900.0,50756.513388647785,0,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020450577289498364,33837.67559243186,9,5,9,9_1,9_2,9_0_0 -3441,2,74.0,0.0,6,111,650.0,,,77,75,0.0,0.0,,742.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,4,106269,2,1,0,0,2,,300.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,42.10762638750041,650.0,44230.51134180005,5,5,0,1,172.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01677574998548056,29487.007561200033,8,4,8,8_1,8_2,8_0_0 -3442,2,57.0,0.0,9,111,360.0,,,34,34,0.0,0.0,,360.0,0.0,,60,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,104384,1,3,0,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,78.08910177264347,360.0,123467.98061124599,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0029157357091107203,82311.98707416399,10,5,10,10_0,10_2,10_0_0 -3443,2,28.0,0.0,9,111,0.0,,,43,34,0.0,0.0,,193.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2012.0,6,110781,2,1,0,0,2,,391.0,950.0,43,2.0,0.0,3.0,3.0,1.8,2,2,264.2505571988145,0.0,53116.0,4,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0036335567437307025,29508.888888888887,8,4,8,8_0,8_2,8_0_0 -3444,2,25.0,0.0,9,111,168.0,,,0,42,0.0,0.0,,168.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,122416,2,2,0,0,2,,86.0,750.0,12,1.0,0.0,2.0,1.0,1.0,2,2,218.33324070129765,168.0,28279.0,0,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005940804130273348,28279.0,8,4,8,8_0,8_2,8_0_0 -3445,2,33.0,0.0,9,111,879.0,,,46,42,0.0,0.0,,948.0,118.70256328912323,,31,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,132523,2,1,0,0,1,,176.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,110.31221349694546,879.0,80066.00193144195,1,1,1,2,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011840231523134416,44481.112184134414,10,5,10,10_0,10_2,10_0_0 -3446,2,35.0,0.0,9,111,0.0,,,37,46,0.0,0.0,,22.0,37.84719409218422,,33,0,0,0,0,0,0,0,0,0,,1,2011.0,6,102095,2,1,0,0,2,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,1,1,187.05964902125154,0.0,74286.0,1,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00029615270710497266,49524.0,10,5,10,10_1,10_2,10_0_0 -3447,2,66.0,0.0,5,111,800.0,,,86,86,0.0,0.0,,800.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,120539,2,1,0,0,2,,700.0,,41,0.0,0.0,5.0,2.0,1.5,3,2,55.58217237002254,800.0,67171.34533666866,6,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011909840364076826,44780.89689111244,10,5,10,10_1,10_2,10_0_0 -3448,2,48.0,0.0,7,111,700.0,,,85,46,0.0,0.0,,900.0,344.06540083803833,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,112226,2,1,0,0,2,,700.0,900.0,42,1.0,0.0,6.0,3.0,1.8,1,1,54.95686590118328,700.0,33015.59041597191,6,1,2,3,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027259848715733045,18341.994675539947,4,2,4_0,4_1_0,4_2_0,4_0_0 -3449,2,31.0,0.0,5,111,900.0,,,54,35,0.0,0.0,,1030.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,114869,2,2,0,0,2,,800.0,850.0,43,2.0,0.0,4.0,4.0,2.1,2,2,74.89863874749754,900.0,55593.17120564887,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01852745539897067,26472.938669356605,7,4,7,7_1,7_2,7_0_0 -3450,2,50.0,0.0,7,111,0.0,,,54,48,0.0,0.0,,788.0,474.81025315649293,,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,115800,1,1,0,0,2,,1200.0,,43,6.0,2.0,6.0,10.0,4.8999999999999995,2,2,9.207663865180178,0.0,117886.87486352929,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006684374328458714,24058.545890516183,6,3,6,6_1,6_2,6_0_0 -3452,2,41.0,0.0,6,111,1080.0,,,68,65,0.0,0.0,,1218.0,237.40512657824647,,43,0,0,0,0,0,0,0,0,2,20.0,1,,4,105551,1,1,0,0,2,,400.0,,43,2.0,0.0,3.0,3.0,2.0,1,1,66.61355351709501,1080.0,27355.099179887256,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04452551942840442,13677.549589943628,3,2,3_0,3_1_0,3_2_0,3_0_0 -3453,0,40.0,0.0,6,111,840.0,,,85,63,0.0,0.0,,978.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,4,122923,1,3,0,0,2,,200.0,,42,2.0,5.0,2.0,3.0,2.0,4,4,76.98439971065795,840.0,15070.05785123967,6,1,5,0,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06489689752050615,7535.028925619835,1,1,1_0,1_1_0,1_2_0,1_0_0 -3454,1,43.0,577.0,9,111,1663.0,,,85,62,0.0,0.0,,1939.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,112360,2,1,0,0,2,,900.0,571.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,2,2,172.8502397295234,1663.0,8873.93446338563,6,4,2,3,117.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.21850510706388768,2773.10451980801,1,1,1_1,1_1_1,1_2_1,1_0_0 -3455,2,64.0,0.0,6,111,480.0,,,0,77,0.0,0.0,,792.0,536.7420253073398,,71,0,0,0,0,0,0,0,0,0,,1,,4,101743,2,1,0,0,2,,200.0,,21,3.0,0.0,2.0,6.0,3.0999999999999996,2,2,127.0680190952968,480.0,63345.98165224613,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012502766226717983,20434.18762975682,5,3,5,5_1,5_2,5_0_0 -3456,2,68.0,0.0,6,111,240.0,,,0,77,0.0,0.0,,396.0,268.3710126536699,,41,0,0,0,0,0,0,0,0,0,,1,,4,121455,2,2,0,0,2,,130.0,,11,0.0,4.0,4.0,1.0,1.0,3,3,51.0927774587912,240.0,11309.281389060421,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03501548740161817,11309.281389060421,2,1,2_0,2_1_0,2_2_0,2_0_0 -3457,2,31.0,0.0,6,111,0.0,,,43,43,0.0,0.0,,854.0,0.0,,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,103803,2,3,0,0,2,,335.0,,43,2.0,0.0,4.0,5.0,2.4,3,2,62.56063114330151,0.0,73786.09482187836,1,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011573996456399803,30744.206175782652,8,4,8,8_1,8_2,8_0_0 -3458,2,60.0,0.0,7,111,300.0,,,47,34,0.0,0.0,,404.0,178.91400843577995,,41,0,0,0,0,0,0,0,0,2,3.0,1,,5,132339,1,2,0,0,2,,300.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,54.99307606439318,300.0,140228.8962919739,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0028810039206100717,93485.93086131594,10,5,10,10_1,10_2,10_0_0 -3459,2,60.0,0.0,7,111,2400.0,,,74,34,0.0,0.0,,2400.0,0.0,,70,0,0,0,0,0,0,0,0,2,20.0,1,,5,102110,1,3,0,0,2,,600.0,,42,1.0,3.0,4.0,2.0,1.5,3,2,46.94271116126733,2400.0,91524.52476093534,5,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026222479780898818,61016.34984062356,10,5,10,10_1,10_2,10_0_0 -3460,2,77.0,0.0,7,111,420.0,,,0,75,0.0,0.0,,576.0,268.3710126536699,,44,0,0,0,0,0,0,0,0,0,,1,,5,100196,2,1,0,0,2,,200.0,,11,0.0,2.0,5.0,1.0,1.0,4,4,34.23582825907612,420.0,16293.560644798847,0,5,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035351388966282704,16293.560644798847,4,2,4_0,4_1_0,4_2_0,4_0_0 -3461,2,59.0,0.0,2,111,0.0,,,0,54,0.0,0.0,,312.0,0.0,,60,0,0,0,0,0,0,0,0,3,20.0,8,,2,109371,2,1,0,0,2,,170.0,502.0,12,1.0,10.0,2.0,1.0,1.0,1,1,37.00745015506096,0.0,20906.944602890588,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014923270995651033,20906.944602890588,5,3,5,5_0,5_2,5_0_1 -3462,2,33.0,0.0,5,111,1100.0,,,85,65,0.0,0.0,,1100.0,0.0,,31,0,0,0,0,0,0,0,0,0,,8,,3,113500,2,2,0,0,2,,560.0,527.0,42,1.0,0.0,3.0,5.0,2.4000000000000004,1,1,97.0994492462936,1100.0,73701.95991038132,6,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01492497623316336,30709.14996265888,8,4,8,8_0,8_2,8_0_0 -3463,1,59.0,348.0,2,111,700.0,,,77,68,0.0,0.0,,950.0,430.0817510475479,,44,0,0,0,0,0,0,0,0,0,,8,,2,130926,2,2,0,0,2,,1200.0,680.0,42,3.0,1.0,4.0,8.0,4.3,2,2,7.835959960480189,700.0,36791.77759516548,6,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02582098670124686,8556.227347712902,1,1,1_1,1_0_1,1_2_1,1_0_1 -3464,1,39.0,467.0,2,111,380.0,,,85,46,0.0,0.0,,580.0,344.06540083803833,,31,0,0,0,0,0,0,0,0,0,,8,,2,106939,2,3,0,0,2,,500.0,505.0,42,1.0,0.0,4.0,5.0,2.4,2,2,63.12038170377205,380.0,23004.114425154246,6,4,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025212881021222402,9585.047677147602,1,1,1_1,1_0_1,1_2_1,1_0_1 -3465,1,69.0,45.0,5,111,480.0,,,56,56,0.0,0.0,,780.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,3,15.0,8,,3,129356,2,2,0,0,2,,950.0,496.0,43,2.0,1.0,4.0,6.0,3.5,2,2,113.83770952684453,480.0,50096.10718771667,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015570072083190774,14313.173482204762,3,2,3_1,3_0_1,3_2_1,3_0_0 -3466,1,35.0,429.0,2,111,550.0,,,0,85,0.0,0.0,,800.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,8,,2,129840,2,3,0,0,2,,450.0,496.0,31,0.0,0.0,4.0,6.0,2.8999999999999995,2,2,70.03277683597857,550.0,15574.8578313253,0,6,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05136483482956622,5370.640631491484,1,1,1_1,1_0_1,1_2_1,1_0_1 -3467,1,32.0,467.0,2,111,400.0,,,0,81,0.0,0.0,,660.0,447.28502108944986,,71,0,0,0,0,0,0,0,0,0,,8,,2,121639,2,3,0,0,2,,550.0,504.0,32,2.0,0.0,4.0,4.0,2.3,2,2,7.835959960480189,400.0,19706.490367775834,0,4,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03349150395035515,8568.03929033732,1,1,1_1,1_0_1,1_2_1,1_0_1 -3468,2,62.0,0.0,6,111,1000.0,,,34,34,0.0,0.0,,1055.0,94.61798523046055,,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,128637,2,1,0,0,2,,500.0,,43,2.0,1.0,5.0,2.0,1.5,4,2,7.835959960480189,1000.0,120592.64018058227,1,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008748460921165529,80395.0934537215,10,5,10,10_1,10_2,10_0_0 -3469,2,85.0,0.0,2,111,450.0,,,75,86,0.0,0.0,,570.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,2,124250,2,1,0,0,2,,250.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,43.2874003047518,450.0,32260.735953927553,5,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017668536787692406,21507.15730261837,6,3,6,6_1,6_2,6_0_1 -3470,1,48.0,350.0,2,111,400.0,,,0,68,0.0,0.0,,650.0,430.0817510475479,,31,0,0,0,0,0,0,0,0,0,,8,,2,110074,2,1,0,0,2,,260.0,342.0,32,1.0,4.0,4.0,2.0,1.3,3,2,29.565991604879315,400.0,11764.293499468706,0,4,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05525193672100709,9049.456538052851,1,1,1_1,1_0_1,1_2_1,1_0_1 -3472,0,49.0,0.0,2,111,1200.0,,,85,21,0.0,0.0,,1450.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,1,,2,101777,2,1,0,0,2,,450.0,,42,1.0,1.0,3.0,5.0,2.8,3,3,80.79249248053688,1200.0,20611.376132647987,6,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.070349499745591,7361.205761659996,1,1,1_0,1_1_0,1_2_0,1_0_1 -3473,2,56.0,0.0,6,111,100.0,,,0,77,0.0,0.0,,172.0,123.8635443016938,,43,0,0,0,0,0,0,0,0,0,,1,,4,125301,2,2,0,0,2,,500.0,400.0,21,1.0,4.0,4.0,2.0,1.5,4,3,97.10953187490497,100.0,66411.26577800419,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002589922025804354,44274.17718533613,10,5,10,10_1,10_2,10_0_0 -3474,2,65.0,0.0,7,111,200.0,,,0,34,0.0,0.0,,248.0,82.5756962011292,,71,0,0,0,0,0,0,0,0,0,,1,,5,125445,1,2,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,5,4,46.11037383939535,200.0,45343.49028266956,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005469362822622996,45343.49028266956,10,5,10,10_1,10_2,10_0_0 -3476,1,19.0,248.0,2,111,0.0,,,0,81,0.0,0.0,,349.0,0.0,,50,0,0,0,0,0,0,0,0,0,,8,,2,102798,2,2,0,0,2,,474.0,577.0,32,2.0,0.0,3.0,3.0,1.8,2,2,138.0538396338918,0.0,13373.556949602686,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02609627351311114,7429.753860890381,1,1,1_1,1_0_1,1_2_1,1_0_1 -3478,1,35.0,412.0,6,111,250.0,,,0,54,0.0,0.0,,400.0,258.04905062852873,,30,0,0,0,0,0,0,0,0,0,,8,,4,128499,2,1,0,0,2,,180.0,523.0,32,1.0,0.0,3.0,3.0,1.8,1,1,32.79892028094899,250.0,14181.178748412824,0,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028206399982425193,7878.432638007124,1,1,1_1,1_0_1,1_2_1,1_0_0 -3479,1,80.0,397.0,2,111,230.0,,,85,78,0.0,0.0,,380.0,258.04905062852873,,70,0,0,0,0,0,0,0,0,0,,8,,2,117679,2,1,0,0,2,,350.0,466.0,41,0.0,0.0,3.0,4.0,2.1,1,1,43.660894228597364,230.0,17192.35030647174,6,5,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022102853491587828,8186.833479272257,1,1,1_1,1_0_1,1_2_1,1_0_1 -3480,1,63.0,190.0,2,111,400.0,,,85,68,0.0,0.0,,650.0,430.0817510475479,,31,0,0,0,0,0,0,0,0,2,25.0,8,,2,114167,2,1,0,0,2,,390.0,390.0,42,1.0,0.0,3.0,4.0,2.1,2,2,50.44898156525769,400.0,30571.060582647682,6,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021261938173284832,14557.647896498896,3,2,3_1,3_0_1,3_2_1,3_0_1 -3481,2,50.0,0.0,2,111,500.0,,,0,52,0.0,0.0,,600.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,2,20.0,8,,2,121451,2,2,0,0,2,,120.0,445.0,12,1.0,0.0,2.0,1.0,1.0,1,1,51.15746165190392,500.0,29788.632139759407,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020141911759659806,29788.632139759407,8,4,8,8_0,8_2,8_0_1 -3482,2,63.0,0.0,7,111,50.0,,,0,43,0.0,0.0,,50.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,132341,2,1,0,0,2,,600.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,57.56785903031067,50.0,21488.0,0,1,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002326880119136262,14325.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0 -3483,2,83.0,0.0,2,111,500.0,,,0,86,0.0,0.0,,500.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,2,117594,2,2,0,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,26.809089413170355,500.0,19957.74869114945,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02505292594558685,19957.74869114945,5,3,5,5_1,5_2,5_0_1 -3484,0,31.0,0.0,2,111,0.0,,,0,68,0.0,0.0,,430.0,0.0,,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,106678,2,1,0,0,2,,836.0,,32,1.0,0.0,3.0,3.0,1.6,3,3,42.87560842879176,0.0,34459.49503779985,0,1,5,0,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0124784184889627,21537.184398624904,6,3,6,6_1,6_2,6_0_1 -3485,2,87.0,0.0,2,111,450.0,,,0,77,0.0,0.0,,530.0,137.62616033521533,,43,0,0,0,0,0,0,0,0,0,,1,,2,112562,2,2,0,0,2,,600.0,,11,0.0,6.0,5.0,1.0,1.0,3,3,30.10030065671223,450.0,29625.55139922779,0,5,0,1,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017889962379360635,29625.55139922779,8,4,8,8_1,8_2,8_0_1 -3486,1,60.0,100.0,5,111,1000.0,,,54,48,0.0,0.0,,1138.0,237.40512657824647,,43,0,0,0,0,0,0,0,0,0,,1,,3,117303,1,2,0,0,2,,600.0,917.0,43,2.0,2.0,4.0,3.0,2.0,2,2,56.78192706285216,1000.0,58336.634041253776,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01950746762652167,29168.317020626888,8,4,8,8_1,8_2,8_0_0 -3487,2,73.0,0.0,5,111,434.0,,,0,77,0.0,0.0,,710.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,3,128855,2,3,0,0,2,,105.0,409.0,11,0.0,3.0,4.0,1.0,1.0,2,2,59.2538106951733,434.0,23909.504036283877,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029695304382832,23909.504036283877,6,3,6,6_1,6_2,6_0_0 -3488,2,58.0,0.0,6,111,1200.0,,,52,52,0.0,0.0,,1294.0,161.71073839387802,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,114416,1,3,0,0,2,,600.0,,43,3.0,2.0,5.0,3.0,2.0,2,2,62.737665372999054,1200.0,32709.336060632275,4,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039560570645682094,16354.668030316137,4,2,4_0,4_1_0,4_2_0,4_0_0 -3489,1,45.0,70.0,5,111,900.0,,,0,52,0.0,0.0,,948.0,82.5756962011292,,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,129104,2,2,0,0,2,,600.0,384.0,32,2.0,0.0,3.0,2.0,1.5,3,1,50.20048820756423,900.0,9585.144752173197,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09890304471250308,6390.096501448798,1,1,1_1,1_0_1,1_2_1,1_0_0 -3490,1,30.0,190.0,6,111,900.0,,,0,56,0.0,0.0,,1038.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,2,,4,107553,2,1,0,0,2,,442.0,364.0,32,2.0,0.0,3.0,5.0,2.4,1,1,45.422528380469075,900.0,21551.84077630759,0,1,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04816293934117666,8979.933656794828,1,1,1_1,1_0_1,1_2_1,1_0_0 -3491,1,57.0,347.0,6,111,0.0,,,0,55,0.0,0.0,,351.0,0.0,,44,0,0,0,0,0,0,0,0,0,,2,,4,101772,2,2,0,0,2,,330.0,389.0,32,2.0,2.0,3.0,3.0,2.0,1,1,69.64432021913719,0.0,16608.158377308107,0,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021134191523581255,8304.079188654054,1,1,1_1,1_0_1,1_2_1,1_0_0 -3492,2,52.0,0.0,5,111,600.0,,,56,65,0.0,0.0,,720.0,206.439240502823,,60,0,0,0,0,0,0,0,0,2,60.0,2,,3,101712,2,2,0,0,2,,1200.0,479.0,43,3.0,0.0,5.0,6.0,3.3,2,2,86.53140569742423,600.0,55646.97110667827,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012938709613138168,16862.718517175235,4,2,4_0,4_0_0,4_2_0,4_0_0 -3493,2,82.0,0.0,6,111,360.0,,,0,77,0.0,0.0,,504.0,247.7270886033876,,41,0,0,0,0,0,0,0,0,0,,1,,4,123669,2,1,0,0,2,,320.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,63.16156321969035,360.0,80441.77369941218,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0062654013806719795,53627.849132941454,10,5,10,10_1,10_2,10_0_0 -3494,2,75.0,0.0,6,111,1200.0,,,75,74,0.0,0.0,,1344.0,247.7270886033876,,43,0,0,0,0,0,0,0,0,0,,1,,4,119860,1,1,0,0,2,,500.0,,41,0.0,2.0,6.0,2.0,1.5,4,3,57.57650385070788,1200.0,68055.85183424084,5,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01974848545388121,45370.56788949389,10,5,10,10_1,10_2,10_0_0 -3495,2,47.0,0.0,9,111,720.0,,,0,45,0.0,0.0,,743.0,39.567521096374406,,71,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,128689,2,2,0,0,1,,350.0,1150.0,12,1.0,0.0,3.0,1.0,1.0,1,1,113.93054022274364,720.0,62862.304249509245,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01181948401145032,62862.304249509245,10,5,10,10_1,10_2,10_0_0 -3496,2,51.0,0.0,6,111,500.0,,,22,22,0.0,0.0,,550.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,15.0,8,,4,131340,2,1,0,0,2,,444.0,,43,2.0,1.0,2.0,2.0,1.5,1,1,61.25823047011009,500.0,69202.23172771878,1,1,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007947720561441067,46134.821151812524,10,5,10,10_0,10_2,10_0_0 -3497,2,66.0,0.0,7,111,600.0,,,67,74,0.0,0.0,,750.0,258.04905062852873,,70,0,0,0,0,0,0,0,0,2,8.0,1,,5,102807,2,1,0,0,2,,200.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,59.137216165573115,600.0,80142.81362960718,1,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00935829385110242,53428.542419738114,10,5,10,10_1,10_2,10_0_0 -3498,2,62.0,0.0,5,111,700.0,,,0,86,0.0,0.0,,760.0,103.2196202514115,,70,0,0,0,0,0,0,0,0,0,,1,,3,129069,2,1,0,0,2,,400.0,,11,0.0,3.0,5.0,1.0,1.0,3,3,58.51785790328975,700.0,45061.28226971379,0,5,0,1,240.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01686592040259815,45061.28226971379,10,5,10,10_1,10_2,10_0_0 -3499,2,48.0,0.0,2,111,300.0,,,0,52,0.0,0.0,,360.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,2,15.0,8,,2,117378,2,1,0,0,2,,160.0,434.0,12,1.0,2.0,4.0,1.0,1.0,4,4,48.763971556311176,300.0,33190.66657701995,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010846422718405161,33190.66657701995,8,4,8,8_0,8_2,8_0_1 -3500,1,52.0,295.0,2,111,350.0,,,0,68,0.0,0.0,,350.0,0.0,,71,0,0,0,0,0,0,0,0,3,45.0,8,,2,133142,2,2,0,0,1,,250.0,484.0,12,1.0,0.0,2.0,1.0,1.0,3,3,57.863151453019796,350.0,14376.352400887476,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02434553565745884,14376.352400887476,3,2,3_1,3_0_1,3_2_1,3_0_1 -3501,2,51.0,0.0,2,111,40.0,,,0,62,0.0,0.0,,90.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,131559,2,1,0,0,2,,581.0,700.0,32,1.0,1.0,2.0,2.0,1.5,2,2,46.661536581509566,40.0,92982.44309789005,0,1,3,4,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0009679246640707193,61988.295398593364,10,5,10,10_1,10_2,10_0_1 -3502,2,52.0,0.0,6,111,450.0,,,77,53,0.0,0.0,,450.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,107469,2,1,0,0,2,,400.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,53.95227333382496,450.0,122959.41921026449,5,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0036597440268523536,81972.94614017633,10,5,10,10_1,10_2,10_0_0 -3503,1,37.0,238.0,2,111,0.0,,,0,85,0.0,0.0,,1020.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,126483,2,1,0,0,1,,450.0,,11,0.0,0.0,2.0,1.0,1.0,3,3,110.23469296894089,0.0,13992.818435628902,0,7,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0728945354856351,13992.818435628902,3,2,3_1,3_0_1,3_2_1,3_0_1 -3504,2,34.0,0.0,2,111,450.0,,,0,56,0.0,0.0,,700.0,430.0817510475479,,71,0,0,0,0,0,0,0,0,0,,2,,2,108932,1,1,0,0,2,,500.0,100.0,32,1.0,0.0,2.0,4.0,2.3,4,4,78.98433321222618,450.0,40667.95761579503,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017212568347128577,17681.72070251958,4,2,4_0,4_0_0,4_2_0,4_0_1 -3505,2,25.0,0.0,2,111,0.0,,,0,65,0.0,0.0,,1855.0,0.0,,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,115609,2,2,0,0,2,,100.0,130.0,12,1.0,0.0,4.0,1.0,1.0,2,2,178.29093675299404,0.0,25998.308739856533,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07135079510599875,25998.308739856533,7,4,7,7_1,7_2,7_0_1 -3506,2,39.0,0.0,2,111,750.0,,,0,42,0.0,0.0,,930.0,309.6588607542345,,71,0,0,0,0,0,0,0,0,0,,1,,2,126409,1,1,0,0,1,,500.0,,32,1.0,3.0,5.0,4.0,2.3,1,1,46.7213884865647,750.0,41793.50100295059,0,1,0,1,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022252263574050492,18171.087392587215,4,2,4_0,4_1_0,4_2_0,4_0_1 -3507,2,54.0,0.0,2,111,0.0,,,0,67,0.0,0.0,,681.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,112048,2,1,0,0,2,,751.0,300.0,32,1.0,7.0,4.0,2.0,1.3,1,1,62.866718318120824,0.0,17892.59080977331,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038060446764815264,13763.531392133316,3,2,3_0,3_1_0,3_2_0,3_0_1 -3508,2,57.0,0.0,2,111,700.0,,,0,46,0.0,0.0,,950.0,430.0817510475479,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,100979,2,2,0,0,1,,1000.0,210.0,32,1.0,0.0,4.0,4.0,2.3,1,1,38.52140713843477,700.0,18568.479687500003,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05116196996136008,8073.25203804348,1,1,1_0,1_1_0,1_2_0,1_0_1 -3509,1,52.0,384.0,2,111,1000.0,,,81,52,0.0,0.0,,1400.0,688.1308016760767,,71,0,0,0,0,0,0,0,0,0,,1,,2,117183,1,2,0,0,2,,800.0,697.0,43,3.0,1.0,6.0,10.0,4.499999999999999,1,1,121.71599311411467,1000.0,41187.70889891811,4,1,2,3,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.033990722898325,9152.824199759581,1,1,1_1,1_1_1,1_2_1,1_0_1 -3510,1,71.0,95.0,2,111,450.0,,,0,77,0.0,0.0,,524.0,127.30419831007418,,44,0,0,0,0,0,0,0,0,0,,1,,2,112335,2,1,0,0,1,,340.0,320.0,11,0.0,4.0,3.0,1.0,1.0,1,1,70.69883227596678,450.0,17178.0,0,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.030504133193619744,17178.0,4,2,4_1,4_1_1,4_2_1,4_0_1 -3511,2,65.0,0.0,2,111,1100.0,,,0,77,0.0,0.0,,1280.0,309.6588607542345,,71,0,0,0,0,0,0,0,0,0,,1,,2,120737,2,1,0,0,2,,260.0,160.0,31,0.0,3.0,3.0,2.0,1.3,2,2,47.03664210294669,1100.0,25023.628364301032,0,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05115165480262891,19248.94489561618,5,3,5,5_1,5_2,5_0_1 -3512,2,61.0,0.0,6,111,3000.0,,,0,52,0.0,0.0,,3250.0,430.0817510475479,,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,106043,2,1,0,0,2,,280.0,,22,2.0,2.0,5.0,2.0,1.5,4,4,53.6901958883443,3000.0,56285.506447828186,0,1,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05774132996409067,37523.67096521879,9,5,9,9_1,9_2,9_0_0 -3513,2,55.0,0.0,2,111,1200.0,,,86,34,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,131151,2,1,0,0,2,,330.0,,42,1.0,2.0,5.0,4.0,2.5,3,3,89.21137886089859,1200.0,154142.4530111775,7,1,1,2,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007785006508965983,61656.981204471005,10,5,10,10_1,10_2,10_0_1 -3514,2,61.0,0.0,6,111,850.0,,,0,42,0.0,0.0,,900.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,0,,1,,4,102438,2,1,0,0,2,,130.0,,22,2.0,2.0,5.0,2.0,1.5,3,3,44.18532180862257,850.0,57035.96664164324,0,1,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015779516908246628,38023.97776109549,9,5,9,9_1,9_2,9_0_0 -3515,2,64.0,0.0,5,111,200.0,,,0,75,0.0,0.0,,200.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,132395,1,1,0,0,1,,180.0,,21,1.0,98.0,3.0,2.0,1.5,3,3,59.137216165573115,200.0,41006.89674584086,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00487722836574521,27337.931163893907,7,4,7,7_1,7_2,7_0_0 -3516,1,70.0,250.0,5,111,696.0,,,0,77,0.0,0.0,,696.0,0.0,,10,0,0,0,0,0,0,0,0,0,,8,,3,130770,2,1,0,0,2,,120.0,500.0,11,0.0,6.0,4.0,1.0,1.0,2,2,72.13444500582017,696.0,21311.41288659031,0,5,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03265855735158419,21311.41288659031,6,3,6,6_0,6_2,6_0_0 -3517,2,54.0,0.0,6,111,650.0,,,34,34,0.0,0.0,,830.0,309.6588607542345,,60,0,0,0,0,0,0,0,0,0,,1,,4,133442,2,1,0,0,1,,420.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,175.75161819237283,650.0,151964.0,1,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0054618199047142746,54272.857142857145,10,5,10,10_1,10_2,10_0_0 -3518,2,59.0,0.0,8,111,200.0,,,0,46,0.0,0.0,,200.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,2002.0,6,123142,2,1,0,0,2,,150.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,61.33287728646172,200.0,13520.294156959382,0,4,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014792577563636276,13520.294156959382,3,2,3_0,3_1_0,3_2_0,3_0_0 -3519,2,71.0,0.0,5,111,690.0,,,54,78,0.0,0.0,,690.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,3,126776,2,1,0,0,2,,180.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,59.137216165573115,690.0,38590.539869876724,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01788002972559099,25727.026579917816,7,4,7,7_1,7_2,7_0_0 -3520,2,60.0,0.0,7,111,700.0,,,34,34,0.0,0.0,,746.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,115044,2,1,0,0,2,,120.0,1700.0,43,2.0,5.0,4.0,2.0,1.5,1,1,73.07120407667558,700.0,168267.99294487247,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0044334040416373335,112178.66196324832,10,5,10,10_1,10_2,10_0_0 -3521,2,62.0,0.0,2,111,600.0,,,0,52,0.0,0.0,,600.0,0.0,,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,117877,2,1,0,0,1,,400.0,210.0,22,3.0,0.0,3.0,6.0,3.3,1,1,100.93073256933879,600.0,37889.0,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015835730687006784,11481.515151515152,2,1,2_0,2_1_0,2_2_0,2_0_1 -3522,1,52.0,439.0,6,111,1140.0,,,0,85,0.0,0.0,,1255.0,197.83760548187203,,41,0,0,0,0,0,0,0,0,0,,2,,4,114255,1,3,0,0,2,,300.0,485.0,31,1.0,2.0,4.0,5.0,2.8,1,1,69.75499753554982,1140.0,30554.93765313043,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041073557872942416,10912.477733260868,2,1,2_1,2_0_1,2_2_1,2_0_0 -3523,0,49.0,0.0,6,111,0.0,,,85,33,0.0,0.0,,477.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,131942,2,1,0,0,2,,0.0,,42,1.0,1.0,6.0,3.0,2.0,2,1,79.6893955277597,0.0,193522.70655188255,6,1,5,0,215.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0024648270401908547,96761.35327594128,10,5,10,10_1,10_2,10_0_0 -3524,2,87.0,0.0,2,111,40.0,,,0,77,0.0,0.0,,40.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,2,115208,2,2,0,0,2,,40.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,60.49435299530996,40.0,12649.951219512195,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0031620675294226526,12649.951219512195,2,1,2_0,2_1_0,2_2_0,2_0_1 -3525,2,71.0,0.0,5,111,744.0,,,0,78,0.0,0.0,,744.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,126651,2,1,0,0,1,,116.0,166.0,11,0.0,6.0,5.0,1.0,1.0,1,1,41.7365417561847,744.0,18419.653844600383,0,5,3,4,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04039163853332126,18419.653844600383,4,2,4_0,4_1_0,4_2_0,4_0_0 -3526,2,81.0,0.0,5,111,468.0,,,86,75,0.0,0.0,,468.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,104728,2,1,0,0,2,,300.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,67.4750171756306,468.0,40123.304015260466,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011664044412244844,26748.869343506976,7,4,7,7_1,7_2,7_0_0 -3527,2,29.0,0.0,5,111,720.0,,,0,63,0.0,0.0,,720.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,126583,2,1,0,0,2,,500.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,140.89367312810032,720.0,31439.0,0,1,1,2,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022901491777728298,31439.0,8,4,8,8_1,8_2,8_0_0 -3528,2,82.0,0.0,2,111,750.0,,,0,86,0.0,0.0,,1050.0,516.0981012570575,,20,0,0,0,0,0,0,0,0,0,,1,,2,130415,2,1,0,0,2,,1000.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,45.05925157280177,750.0,19138.807407407407,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05486235258282667,19138.807407407407,5,3,5,5_1,5_2,5_0_1 -3529,2,71.0,0.0,2,111,2200.0,,,75,72,0.0,0.0,,2500.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,1,,2,118712,2,1,0,0,2,,900.0,,41,0.0,0.0,7.0,2.0,1.5,4,2,8.764192101698525,2200.0,623727.8281323307,5,5,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004008158506388779,415818.55208822043,10,5,10,10_1,10_2,10_0_1 -3531,1,49.0,100.0,9,111,1500.0,,,0,63,0.0,0.0,,1764.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,104372,2,1,0,0,2,,800.0,525.0,32,1.0,0.0,4.0,3.0,1.8,1,1,32.39294006959973,1500.0,24678.82290170531,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07147828755957836,13710.45716761406,3,2,3_1,3_0_1,3_2_1,3_0_0 -3532,2,62.0,0.0,2,111,350.0,,,0,52,0.0,0.0,,350.0,0.0,,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,125567,2,3,0,0,1,,300.0,,22,2.0,3.0,3.0,2.0,1.5,1,1,25.87410294407039,350.0,48714.107957757,0,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007184776950108715,32476.071971838,8,4,8,8_1,8_2,8_0_1 -3533,1,51.0,200.0,6,111,0.0,,,0,85,0.0,0.0,,575.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,4,114730,2,2,0,0,1,,391.0,312.0,11,0.0,0.0,1.0,1.0,1.0,2,2,58.43193642240871,0.0,10999.563972629503,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05227479938575631,10999.563972629503,2,1,2_1,2_0_1,2_2_1,2_0_0 -3534,2,56.0,0.0,7,111,300.0,,,0,55,0.0,0.0,,346.0,79.13504219274881,,12,0,0,0,0,0,0,0,0,2,10.0,2,,5,124812,2,2,0,0,2,,280.0,400.0,12,1.0,0.0,4.0,1.0,1.0,2,2,52.46449738300301,300.0,22528.81937183513,0,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015358106178993075,22528.81937183513,6,3,6,6_0,6_2,6_0_0 -3535,0,95.0,0.0,6,111,360.0,,,0,86,0.0,0.0,,360.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,123482,1,1,0,0,2,,130.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,40.31693812676762,360.0,41000.916792841635,0,5,5,0,131.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008780291470527618,41000.916792841635,9,5,9,9_1,9_2,9_0_0 -3536,2,77.0,0.0,2,111,224.0,,,0,75,0.0,0.0,,224.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,2,115490,2,1,0,0,2,,77.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,40.31693812676762,224.0,44598.34079438177,0,5,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.005022608375337097,44598.34079438177,10,5,10,10_1,10_2,10_0_1 -3537,2,45.0,0.0,5,111,0.0,,,0,22,0.0,0.0,,576.0,0.0,,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,133438,2,3,0,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,8.764192101692458,0.0,10744.347804228793,0,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053609582498185336,10744.347804228793,2,1,2_0,2_1_0,2_2_0,2_0_0 -3538,2,40.0,0.0,6,111,650.0,,,0,53,0.0,0.0,,650.0,0.0,,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,122704,2,2,0,0,2,,180.0,,12,1.0,0.0,2.0,1.0,1.0,5,4,192.49488251731924,650.0,51769.0,0,1,1,2,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012555776623075585,51769.0,10,5,10,10_1,10_2,10_0_0 -3539,2,40.0,0.0,6,111,1200.0,,,42,34,0.0,0.0,,1304.0,178.91400843577995,,43,0,0,0,0,0,0,0,0,2,15.0,2,,4,119374,2,3,0,0,2,,600.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,80.7731372512561,1200.0,84552.00000000001,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01542246191692686,46973.33333333334,10,5,10,10_0,10_2,10_0_0 -3540,2,61.0,0.0,6,111,1100.0,,,52,47,0.0,0.0,,1180.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,101309,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,51.27184356479189,1100.0,65109.0,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018123454514736827,26043.6,7,4,7,7_1,7_2,7_0_0 -3541,2,55.0,0.0,5,111,2200.0,,,72,45,0.0,0.0,,2266.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,,3,110013,2,1,0,0,2,,200.0,,42,1.0,2.0,2.0,2.0,1.5,2,2,69.91909836257922,2200.0,47555.05515535802,5,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04765003410462221,31703.370103572015,8,4,8,8_1,8_2,8_0_0 -3542,1,39.0,300.0,2,111,200.0,,,85,68,0.0,0.0,,384.0,316.54016877099525,,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,119767,1,3,0,0,2,,120.0,352.0,42,1.0,0.0,2.0,4.0,2.1,2,1,105.60436080735232,200.0,22368.43259673055,6,1,2,3,23.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017167049963801525,10651.634569871689,2,1,2_1,2_0_1,2_2_1,2_0_1 -3543,2,48.0,0.0,7,111,492.0,,,0,42,0.0,0.0,,756.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,5,116822,2,2,0,0,2,,876.0,,32,1.0,0.0,4.0,4.0,2.1,1,1,45.328662577263685,492.0,66261.50402675424,0,1,0,1,143.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011409339572110405,31553.097155597254,8,4,8,8_1,8_2,8_0_0 -3544,2,72.0,0.0,7,111,800.0,,,0,77,0.0,0.0,,870.0,120.42289029331342,,41,0,0,0,0,0,0,0,0,0,,1,,5,113563,2,1,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,46.39424709086674,800.0,9400.62,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09254708731977251,9400.62,1,1,1_0,1_1_0,1_2_0,1_0_0 -3546,2,73.0,0.0,2,111,564.0,,,0,77,0.0,0.0,,726.0,278.692974678811,,71,0,0,0,0,0,0,0,0,0,,1,,2,108947,2,2,0,0,2,,127.0,,11,0.0,9.0,4.0,1.0,1.0,2,2,73.04467586580644,564.0,15569.479518072289,0,5,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046629689782326685,15569.479518072289,3,2,3_0,3_1_0,3_2_0,3_0_1 -3547,2,78.0,0.0,2,111,2200.0,,,85,78,0.0,0.0,,2510.0,533.3013712989595,,31,0,0,0,0,0,0,0,0,0,,1,,2,118725,2,1,0,0,2,,800.0,,41,0.0,9.0,3.0,3.0,2.0,3,2,51.86893198137116,2200.0,16633.1758607101,7,5,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15090323225217459,8316.58793035505,1,1,1_0,1_1_0,1_2_0,1_0_1 -3548,0,66.0,0.0,2,111,450.0,,,0,77,0.0,0.0,,726.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,,2,109637,2,1,0,0,2,,154.0,,21,0.0,3.0,4.0,3.0,2.0,2,2,96.35416435595847,450.0,7070.108800849286,0,5,5,0,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10268583135704933,3535.054400424643,1,1,1_0,1_1_0,1_2_0,1_0_1 -3549,0,73.0,0.0,2,111,420.0,,,0,77,0.0,0.0,,708.0,495.4541772067752,,31,0,0,0,0,0,0,0,0,0,,1,,2,101616,2,2,0,0,2,,82.0,,11,0.0,3.0,3.0,1.0,1.0,3,2,55.46085073601329,420.0,6999.307864750348,0,5,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10115285877988066,6999.307864750348,1,1,1_0,1_1_0,1_2_0,1_0_1 -3550,2,72.0,0.0,6,111,2400.0,,,0,77,0.0,0.0,,2550.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,4,109488,2,1,0,0,2,,200.0,,21,3.0,4.0,5.0,6.0,3.0999999999999996,2,2,106.14541758554142,2400.0,95488.77486815864,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026704709569483797,30802.83060263182,8,4,8,8_1,8_2,8_0_0 -3551,1,32.0,643.0,5,111,780.0,,,84,53,0.0,0.0,,880.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,107698,2,2,0,0,2,,234.0,800.0,42,1.0,0.0,3.0,3.0,1.8,4,4,89.25458816119051,780.0,29266.79305560513,3,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030068207279425985,16259.329475336182,4,2,4_1,4_0_1,4_2_1,4_0_0 -3552,2,41.0,0.0,9,111,460.0,,,0,56,0.0,0.0,,750.0,498.8948312151556,,71,0,0,0,0,0,0,0,0,1,1.0,1,2012.0,6,125129,2,1,0,0,2,,250.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,122.28866990735528,460.0,7912.0,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09479271991911022,4945.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -3553,2,57.0,0.0,9,111,400.0,,,0,68,0.0,0.0,,470.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,2,12.0,2,2010.0,6,129156,2,2,0,0,2,,200.0,690.0,22,2.0,0.0,4.0,3.0,2.0,3,2,117.69401893494941,400.0,28879.0,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01627480175906368,14439.5,3,2,3_0,3_0_0,3_2_0,3_0_0 -3554,2,48.0,0.0,9,111,800.0,,,46,45,0.0,0.0,,800.0,0.0,,50,0,0,0,0,0,0,0,0,3,45.0,1,2013.0,6,124080,2,1,0,0,2,,170.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,81.56410877785608,800.0,93897.68161170148,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008519912166822918,62598.454407800986,10,5,10,10_1,10_2,10_0_0 -3555,2,36.0,0.0,9,111,0.0,,,46,53,0.0,0.0,,448.0,0.0,,50,0,0,0,0,0,0,0,0,2,6.0,2,2013.0,6,111946,2,2,0,0,2,,1019.0,400.0,43,2.0,0.0,4.0,5.0,2.4,2,2,297.6287775018126,0.0,60792.481583739434,1,1,3,4,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007369332330724092,25330.20065989143,7,4,7,7_0,7_2,7_0_0 -3556,2,32.0,0.0,5,111,800.0,,,54,22,0.0,0.0,,800.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,129693,2,2,0,0,1,,240.0,800.0,43,2.0,0.0,3.0,4.0,2.1,3,3,85.27660418104446,800.0,45053.4128714821,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01775670141309947,21454.00612927719,6,3,6,6_0,6_2,6_0_0 -3558,2,61.0,0.0,9,111,900.0,,,0,22,0.0,0.0,,1084.0,316.54016877099525,,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,111630,2,3,0,0,2,,302.0,,12,1.0,4.0,6.0,1.0,1.0,2,2,53.27083480783222,900.0,6943.6305974856705,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1561142956528423,6943.6305974856705,1,1,1_0,1_1_0,1_2_0,1_0_0 -3559,2,50.0,0.0,9,111,1000.0,,,56,21,0.0,0.0,,1276.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,110281,2,3,0,0,2,,600.0,,43,2.0,0.0,7.0,6.0,3.5,1,1,101.74888869020057,1000.0,44028.57949200393,1,1,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0289811757436266,12579.594140572552,2,1,2_0,2_1_0,2_2_0,2_0_0 -3560,2,92.0,0.0,9,111,0.0,,,0,72,0.0,0.0,,949.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,100396,2,3,0,0,2,,520.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,130.19920712402154,0.0,16651.0,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056993573959521954,16651.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -3561,1,53.0,413.0,8,111,0.0,,,0,85,0.0,0.0,,660.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,133207,2,1,0,0,2,,167.0,600.0,31,0.0,3.0,3.0,4.0,2.3,2,2,37.88795075158533,0.0,18553.351247280676,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0355730881824778,8066.674455339425,1,1,1_1,1_1_1,1_2_1,1_0_0 -3562,2,33.0,0.0,6,111,500.0,,,0,54,0.0,0.0,,500.0,0.0,,12,0,0,0,0,0,0,0,0,2,30.0,1,,4,133333,2,1,0,0,2,,300.0,1000.0,12,1.0,0.0,4.0,1.0,1.0,3,3,130.17835937642502,500.0,26053.3264879734,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019191407294220465,26053.3264879734,7,4,7,7_1,7_2,7_0_0 -3563,0,71.0,0.0,6,111,1200.0,,,0,78,0.0,0.0,,1330.0,223.64251054472493,,50,0,0,0,0,0,0,0,0,0,,1,,4,121219,2,2,0,0,2,,600.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,129.39769147612833,1200.0,15116.900826446281,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08798099658583655,15116.900826446281,3,2,3_0,3_1_0,3_2_0,3_0_0 -3564,2,41.0,0.0,5,111,1008.0,,,85,45,0.0,0.0,,1123.0,197.83760548187203,,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,101773,2,1,0,0,1,,300.0,1300.0,42,1.0,0.0,3.0,4.0,2.1,2,1,70.11426571416364,1008.0,59106.04938927243,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018999747261129265,28145.737804415443,8,4,8,8_0,8_2,8_0_0 -3565,2,27.0,0.0,5,111,1200.0,,,0,53,0.0,0.0,,1330.0,223.64251054472493,,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,105696,2,1,0,0,1,,400.0,800.0,12,1.0,0.0,2.0,1.0,1.0,2,2,142.44678130003206,1200.0,33233.20375881232,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040020216216660395,33233.20375881232,8,4,8,8_0,8_2,8_0_0 -3566,2,28.0,0.0,7,111,1100.0,,,53,43,0.0,0.0,,1100.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,130464,2,1,0,0,2,,720.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,136.45491065262237,1100.0,80745.0,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013623134559415443,53830.0,10,5,10,10_0,10_2,10_0_0 -3567,2,42.0,0.0,7,111,1100.0,,,45,53,0.0,0.0,,1100.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,104741,2,1,0,0,2,,960.0,,43,2.0,0.0,4.0,2.0,1.5,3,2,91.0176176781117,1100.0,107627.43565385528,1,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010220442337191347,71751.62376923686,10,5,10,10_1,10_2,10_0_0 -3570,1,29.0,357.0,7,111,480.0,,,0,85,0.0,0.0,,660.0,309.6588607542345,,41,0,0,0,0,0,0,0,0,0,,1,,5,125760,2,2,0,0,2,,150.0,400.0,31,0.0,0.0,1.0,2.0,1.3,4,4,106.75555722273809,480.0,9447.351210279574,0,6,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06986085150320867,7267.193238676595,1,1,1_1,1_1_1,1_2_1,1_0_0 -3571,2,48.0,0.0,7,111,450.0,,,85,48,0.0,0.0,,720.0,464.48829113135173,,12,0,0,0,0,0,0,0,0,2,45.0,1,,5,110123,2,1,0,0,1,,600.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,131.0720436775199,450.0,54098.672715345514,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013309014137712225,22541.113631393964,6,3,6,6_1,6_2,6_0_0 -3572,2,69.0,0.0,7,111,600.0,,,0,86,0.0,0.0,,730.0,223.64251054472493,,10,0,0,0,0,0,0,0,0,0,,1,,5,120758,2,1,0,0,2,,1200.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,46.96124626046994,600.0,10243.066957194054,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07126771728142382,10243.066957194054,2,1,2_0,2_1_0,2_2_0,2_0_0 -3573,2,66.0,0.0,7,111,600.0,,,86,78,0.0,0.0,,780.0,309.6588607542345,,10,0,0,0,0,0,0,0,0,0,,1,,5,105346,2,1,0,0,2,,500.0,,41,0.0,0.0,4.0,3.0,2.0,2,2,53.430961529939076,600.0,24106.100261532672,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032356954942425326,12053.050130766336,2,1,2_0,2_1_0,2_2_0,2_0_0 -3574,2,47.0,0.0,5,111,1800.0,,,85,63,0.0,0.0,,2200.0,688.1308016760767,,41,0,0,0,0,0,0,0,0,0,,1,,3,116636,2,3,0,0,2,,0.0,,42,1.0,1.0,6.0,9.0,3.7999999999999985,1,1,130.21357861144313,1800.0,48440.11189412955,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04541690582400611,12747.397866876203,2,1,2_0,2_1_0,2_2_0,2_0_0 -3575,2,44.0,0.0,6,111,525.0,,,85,85,0.0,0.0,,525.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,4,123571,2,2,0,0,1,,700.0,350.0,41,1.0,0.0,3.0,8.0,3.6999999999999993,2,2,8.660141470795049,525.0,26325.909448328122,6,7,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019942330996407083,7115.110661710305,1,1,1_0,1_1_0,1_2_0,1_0_0 -3576,1,75.0,180.0,6,111,540.0,,,0,78,0.0,0.0,,690.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,4,105026,2,3,0,0,2,,224.0,325.0,11,0.0,3.0,2.0,1.0,1.0,2,2,72.13360081400575,540.0,26337.93101630634,0,5,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026197957598598283,26337.93101630634,7,4,7,7_0,7_2,7_0_0 -3577,2,25.0,0.0,6,111,360.0,,,0,54,0.0,0.0,,385.0,43.00817510475479,,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,116889,2,1,0,0,2,,80.0,360.0,12,1.0,0.0,2.0,1.0,1.0,2,1,138.47375053990035,360.0,27961.20501777162,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013769077539945121,27961.20501777162,7,4,7,7_0,7_2,7_0_0 -3578,1,58.0,270.0,5,111,600.0,,,0,68,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,104194,1,3,0,0,2,,1000.0,400.0,31,3.0,6.0,3.0,5.0,3.0,2,2,37.506444684985446,600.0,6836.364321781199,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08776594864734644,2278.7881072603996,1,1,1_1,1_0_1,1_2_1,1_0_0 -3579,1,61.0,265.0,5,111,0.0,,,78,86,0.0,0.0,,344.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,113578,2,2,0,0,2,,119.0,383.0,41,0.0,0.0,2.0,2.0,1.5,1,1,76.3544634777219,0.0,2401.8040569918776,6,7,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14322567196877847,1601.2027046612518,1,1,1_1,1_0_1,1_2_1,1_0_0 -3580,1,37.0,310.0,5,111,900.0,,,0,85,0.0,0.0,,947.0,80.85536919693901,,10,0,0,0,0,0,0,0,0,0,,2,,3,106823,2,2,0,0,2,,700.0,423.0,31,0.0,0.0,4.0,6.0,2.5,2,2,63.266633103605685,900.0,15910.251875757123,0,6,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059521370710854005,6364.1007503028495,1,1,1_1,1_0_1,1_2_1,1_0_0 -3581,2,26.0,0.0,9,111,1200.0,,,0,43,0.0,0.0,,1250.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,102052,2,3,0,0,2,,300.0,700.0,32,2.0,0.0,3.0,3.0,1.8,2,2,103.5851666745111,1200.0,65778.17364463766,0,1,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01900326401205732,36543.42980257648,9,5,9,9_1,9_2,9_0_0 -3582,2,63.0,0.0,5,111,1200.0,,,0,90,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,121417,2,3,0,0,1,,800.0,,12,1.0,0.0,4.0,1.0,1.0,2,1,38.08521124847453,1200.0,8893.145555184132,0,1,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13493538282418838,8893.145555184132,1,1,1_0,1_1_0,1_2_0,1_0_0 -3583,2,70.0,0.0,6,111,1800.0,,,0,72,0.0,0.0,,1800.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,121591,2,1,0,0,2,,298.0,,21,1.0,0.0,5.0,2.0,1.5,3,3,30.206112371355037,1800.0,21787.553093189686,0,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08261597767776138,14525.03539545979,3,2,3_0,3_1_0,3_2_0,3_0_0 -3585,2,46.0,0.0,7,111,240.0,,,0,56,0.0,0.0,,240.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,103483,1,2,0,0,2,,0.0,,32,3.0,0.0,1.0,5.0,3.0,2,2,45.015592997435824,240.0,30160.0,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007957559681697613,10053.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0 -3586,1,23.0,400.0,6,111,300.0,,,0,81,0.0,0.0,,450.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,2,,4,121757,2,3,0,0,2,,200.0,400.0,32,1.0,0.0,2.0,4.0,2.1,3,2,75.39491680946604,300.0,11007.664463252728,0,4,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04088060655393801,5241.744982501299,1,1,1_1,1_0_1,1_2_1,1_0_0 -3588,2,38.0,0.0,9,111,480.0,,,42,33,0.0,0.0,,480.0,0.0,,31,0,0,0,0,0,0,0,0,1,10.0,1,2010.0,6,110774,2,3,0,0,2,,800.0,700.0,43,2.0,0.0,4.0,4.0,2.3,1,1,115.64680576004103,480.0,7508.703636144043,1,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06392581506206511,3264.6537548452366,1,1,1_0,1_1_0,1_2_0,1_0_0 -3589,2,42.0,0.0,6,111,3000.0,,,0,63,0.0,0.0,,3150.0,258.04905062852873,,44,0,0,0,0,0,0,0,0,1,45.0,2,,4,121190,2,3,0,0,2,,0.0,250.0,32,1.0,0.0,3.0,3.0,2.0,5,5,51.34646961575004,3000.0,23721.94630073001,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1327884297547315,11860.973150365005,2,1,2_0,2_0_0,2_2_0,2_0_0 -3590,2,80.0,0.0,6,111,3000.0,,,86,78,0.0,0.0,,3225.0,387.0735759427931,,10,0,0,0,0,0,0,0,0,0,,2,,4,107771,2,2,0,0,2,,650.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,41.16655125442322,3000.0,40566.0,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07950007395355717,27044.0,7,4,7,7_0,7_2,7_0_0 -3591,1,59.0,300.0,7,111,480.0,,,0,63,0.0,0.0,,630.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,2,,5,102626,2,3,0,0,2,,190.0,350.0,12,1.0,0.0,2.0,1.0,1.0,2,2,53.39571135190053,480.0,12267.110206439222,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.051356838684737824,12267.110206439222,2,1,2_1,2_0_1,2_2_1,2_0_0 -3592,2,57.0,0.0,6,111,630.0,,,78,22,0.0,0.0,,1005.0,645.1226265713219,,71,0,0,0,0,0,0,0,0,0,,1,,4,121849,1,3,0,0,2,,198.0,,42,2.0,6.0,4.0,4.0,2.5,6,5,55.96673692064895,630.0,9066.720655737707,5,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11084492818955488,3626.6882622950825,1,1,1_0,1_1_0,1_2_0,1_0_0 -3593,2,83.0,0.0,9,111,456.0,,,0,77,0.0,0.0,,831.0,645.1226265713219,,31,0,0,0,0,0,0,0,0,0,,2,2007.0,6,123253,2,3,0,0,2,,110.0,720.0,21,1.0,4.0,3.0,2.0,1.5,2,2,35.59913165772703,456.0,45758.46218386742,0,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018160575341471526,30505.641455911613,8,4,8,8_0,8_2,8_0_0 -3594,0,34.0,0.0,7,111,600.0,,,81,62,0.0,0.0,,1200.0,1032.196202514115,,41,0,0,0,0,0,0,0,0,0,,1,,5,124721,2,2,0,0,2,,200.0,,43,5.0,1.0,3.0,8.0,3.8999999999999995,2,2,7.857653049296154,600.0,5956.973041630805,4,4,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20144459134088732,1527.42898503354,1,1,1_0,1_1_0,1_2_0,1_0_0 -3595,2,46.0,0.0,6,111,900.0,,,21,22,0.0,0.0,,900.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,102978,2,2,0,0,2,,120.0,1200.0,43,2.0,2.0,4.0,2.0,1.5,3,3,52.916684796003125,900.0,48792.60719346703,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018445417282815405,32528.40479564469,8,4,8,8_1,8_2,8_0_0 -3596,2,58.0,0.0,2,111,0.0,,,0,62,0.0,0.0,,501.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,3,,2,130191,1,3,0,0,2,,156.0,250.0,12,1.0,1.0,1.0,1.0,1.0,1,1,37.35754739027432,0.0,7777.584329778205,0,1,2,3,15.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06441588785888319,7777.584329778205,1,1,1_0,1_0_0,1_2_0,1_0_1 -3597,2,28.0,0.0,7,111,0.0,,,0,34,0.0,0.0,,2236.0,0.0,,50,0,0,0,0,0,0,0,0,1,10.0,2,,5,117958,2,2,0,0,2,,0.0,650.0,22,2.0,0.0,2.0,2.0,1.5,2,2,80.96979275737776,0.0,49991.989541311654,0,1,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.044727165702262095,33327.9930275411,8,4,8,8_0,8_2,8_0_0 -3598,2,40.0,0.0,7,111,480.0,,,34,21,0.0,0.0,,505.0,43.00817510475479,,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,112519,2,2,0,0,2,,0.0,720.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,1,1,162.53994691289128,480.0,35308.56486171629,1,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014302478788866096,13580.217254506266,3,2,3_0,3_0_0,3_2_0,3_0_0 -3599,2,50.0,0.0,7,111,740.0,,,0,42,0.0,0.0,,740.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,2,,5,123632,2,3,0,0,2,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,2,2,58.536882308571705,740.0,50353.60702095185,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014696067348106565,50353.60702095185,10,5,10,10_0,10_2,10_0_0 -3600,0,45.0,0.0,6,111,0.0,,,0,56,0.0,0.0,,100.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,1,2.0,2,,4,109945,2,2,0,0,2,,0.0,,12,1.0,3.0,4.0,1.0,1.0,4,3,46.4573888701481,0.0,24781.11927871324,0,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0040353302397401845,24781.11927871324,7,4,7,7_0,7_2,7_0_0 -3601,2,38.0,0.0,7,111,900.0,,,0,81,0.0,0.0,,1125.0,387.0735759427931,,50,0,0,0,0,0,0,0,0,0,,2,,5,126595,2,2,0,0,2,,0.0,800.0,32,2.0,0.0,3.0,5.0,2.8,2,2,7.857653049296154,900.0,11848.392542194088,0,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09494958881499653,4231.568765069317,1,1,1_0,1_0_0,1_2_0,1_0_0 -3602,2,49.0,0.0,7,111,0.0,,,54,63,0.0,0.0,,797.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,113372,2,2,0,0,2,,541.0,609.0,43,2.0,0.0,3.0,2.0,1.5,2,2,48.444383995032595,0.0,42664.783680189204,4,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018680511917609364,28443.189120126135,8,4,8,8_0,8_2,8_0_0 -3603,1,43.0,413.0,6,111,840.0,,,65,52,0.0,0.0,,990.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,4,103339,2,2,0,0,2,,0.0,695.0,43,2.0,4.0,4.0,4.0,2.1,2,2,58.2349320378823,840.0,17540.21784832729,4,4,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05644171632078165,8352.484689679663,1,1,1_1,1_0_1,1_2_1,1_0_0 -3604,2,47.0,0.0,7,111,540.0,,,0,52,0.0,0.0,,690.0,258.04905062852873,,60,0,0,0,0,0,0,0,0,2,10.0,2,,5,111483,2,3,0,0,2,,0.0,800.0,12,1.0,1.0,3.0,1.0,1.0,2,2,54.0083547187308,540.0,30565.972027842745,0,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022574122601809438,30565.972027842745,8,4,8,8_0,8_2,8_0_0 -3605,2,47.0,0.0,8,111,0.0,,,0,63,0.0,0.0,,547.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,107420,2,2,0,0,2,,541.0,452.0,32,1.0,0.0,4.0,6.0,2.8999999999999995,2,2,51.12000367992905,0.0,26973.32289239807,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020279296035645714,9301.145824964853,1,1,1_0,1_0_0,1_2_0,1_0_0 -3606,1,52.0,309.0,8,111,300.0,,,85,47,0.0,0.0,,392.0,158.27008438549763,,42,0,0,0,0,0,0,0,0,0,,2,2000.0,6,130662,2,1,0,0,1,,355.0,439.0,42,1.0,2.0,4.0,2.0,1.5,4,3,49.43509874965174,300.0,18282.146875,6,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021441683117426547,12188.097916666666,2,1,2_1,2_0_1,2_2_1,2_0_0 -3607,1,50.0,357.0,8,111,660.0,,,0,68,0.0,0.0,,775.0,197.83760548187203,,60,0,0,0,0,0,0,0,0,2,20.0,2,2002.0,6,107726,2,1,0,0,2,,385.0,453.0,32,1.0,2.0,3.0,2.0,1.5,1,1,37.53419046701227,660.0,16850.260659077045,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04599335379316618,11233.507106051364,2,1,2_1,2_0_1,2_2_1,2_0_0 -3608,1,55.0,400.0,8,111,356.0,,,0,77,0.0,0.0,,632.0,474.81025315649293,,70,0,0,0,0,0,0,0,0,0,,2,1999.0,6,131606,1,2,0,0,2,,250.0,499.0,31,0.0,3.0,4.0,2.0,1.5,3,2,39.88412664316208,356.0,11747.09716661544,0,6,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05380052544352037,7831.39811107696,1,1,1_1,1_0_1,1_2_1,1_0_0 -3609,1,55.0,300.0,8,111,1140.0,,,85,69,0.0,0.0,,1416.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,104801,2,2,0,0,1,,470.0,449.0,42,4.0,1.0,4.0,6.0,3.5,3,3,114.68793285370165,1140.0,37066.24653945837,6,4,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038201871842961393,10590.356154130963,2,1,2_1,2_0_1,2_2_1,2_0_0 -3610,1,44.0,468.0,8,111,900.0,,,0,85,0.0,0.0,,1100.0,344.06540083803833,,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,103831,1,2,0,0,2,,800.0,541.0,31,0.0,2.0,6.0,7.0,3.3999999999999995,3,3,133.14073860571176,900.0,37934.80275863301,0,6,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02899711926799639,11157.294929009711,2,1,2_1,2_0_1,2_2_1,2_0_0 -3611,2,53.0,0.0,8,111,780.0,,,0,52,0.0,0.0,,964.0,316.54016877099525,,10,0,0,0,0,0,0,0,0,2,30.0,2,2000.0,6,100610,2,1,0,0,2,,800.0,455.0,12,1.0,2.0,4.0,1.0,1.0,1,1,31.115887270523647,780.0,21488.243439659684,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0448617404538892,21488.243439659684,6,3,6,6_0,6_2,6_0_0 -3612,1,37.0,380.0,8,111,600.0,,,0,85,0.0,0.0,,744.0,247.7270886033876,,44,0,0,0,0,0,0,0,0,0,,2,2003.0,6,102791,1,2,0,0,2,,700.0,368.0,31,0.0,0.0,4.0,4.0,2.3,1,1,96.00920688749434,600.0,14587.944480586593,0,6,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.051001016694991096,6342.58455677678,1,1,1_1,1_0_1,1_2_1,1_0_0 -3613,2,55.0,0.0,8,111,660.0,,,0,68,0.0,0.0,,936.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,3,15.0,2,2000.0,6,100691,2,1,0,0,2,,600.0,530.0,32,3.0,1.0,4.0,4.0,2.5,4,3,47.71801660348521,660.0,27173.11950906816,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034445805888707035,10869.247803627264,2,1,2_0,2_0_0,2_2_0,2_0_0 -3614,2,52.0,0.0,2,111,540.0,,,0,65,0.0,0.0,,840.0,516.0981012570575,,20,0,0,0,0,0,0,0,0,2,35.0,1,,2,123448,2,1,0,0,2,,200.0,151.0,22,1.0,0.0,4.0,2.0,1.5,1,1,73.59903547396465,540.0,59495.0,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014118833515421463,39663.333333333336,9,5,9,9_1,9_2,9_0_1 -3615,1,51.0,189.0,2,111,840.0,,,0,55,0.0,0.0,,1140.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,8,,2,118485,2,1,0,0,2,,240.0,232.0,22,2.0,0.0,4.0,2.0,1.5,2,2,30.250519008406958,840.0,10483.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10874749594581704,6988.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_1 -3616,2,67.0,0.0,2,111,400.0,,,77,53,0.0,0.0,,1000.0,1032.196202514115,,31,0,0,0,0,0,0,0,0,0,,2,,2,105500,2,1,0,0,2,,400.0,243.0,42,2.0,0.0,4.0,3.0,2.0,2,2,80.66818877960829,400.0,23834.93847928926,5,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04195521632535044,11917.46923964463,2,1,2_0,2_0_0,2_2_0,2_0_1 -3617,1,47.0,380.0,2,111,600.0,,,0,52,0.0,0.0,,600.0,0.0,,43,0,0,0,0,0,0,0,0,0,,8,,2,130414,2,2,0,0,2,,200.0,500.0,32,2.0,3.0,3.0,2.0,1.5,1,1,38.07709657056797,600.0,15552.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038580246913580245,10368.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -3618,1,28.0,400.0,2,111,800.0,,,68,42,0.0,0.0,,888.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,2,,2,109918,2,1,0,0,2,,300.0,750.0,43,3.0,0.0,6.0,5.0,2.6,1,1,105.69968931563494,800.0,16978.079002036997,4,4,2,3,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05230273695236425,6530.030385398844,1,1,1_1,1_0_1,1_2_1,1_0_1 -3619,1,34.0,500.0,8,111,0.0,,,0,85,0.0,0.0,,488.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,130228,2,3,0,0,2,,481.0,800.0,31,0.0,0.0,3.0,5.0,2.4,1,1,67.31759018148082,0.0,22320.214801667928,0,6,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021863588873863936,9300.08950069497,1,1,1_1,1_1_1,1_2_1,1_0_0 -3620,2,62.0,0.0,5,111,1650.0,,,0,77,0.0,0.0,,1719.0,118.70256328912323,,41,0,0,0,0,0,0,0,0,0,,1,,3,113726,2,2,0,0,2,,1428.0,,31,0.0,3.0,4.0,2.0,1.5,2,2,36.89677394115294,1650.0,9448.161896238462,0,5,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1819401507804788,6298.774597492308,1,1,1_0,1_1_0,1_2_0,1_0_0 -3622,1,70.0,152.0,7,111,165.0,,,0,78,0.0,0.0,,165.0,0.0,,71,0,0,0,0,0,0,0,0,0,,3,,5,110353,2,1,0,0,2,,80.0,200.0,11,0.0,2.0,1.0,1.0,1.0,4,2,42.887186109422316,165.0,8987.433281648899,0,5,2,3,18.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01835896799778278,8987.433281648899,1,1,1_1,1_0_1,1_2_1,1_0_0 -3623,2,59.0,0.0,5,111,1330.0,,,0,42,0.0,0.0,,1486.0,268.3710126536699,,50,0,0,0,0,0,0,0,0,0,,1,,3,132648,2,1,0,0,2,,228.0,,22,1.0,0.0,5.0,2.0,1.5,3,3,36.103883216401876,1330.0,63133.0,0,1,0,1,103.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023537611075032074,42088.666666666664,9,5,9,9_1,9_2,9_0_0 -3624,2,33.0,0.0,5,111,0.0,,,0,35,0.0,0.0,,572.0,0.0,,71,0,0,0,0,0,0,0,0,1,10.0,3,,3,125043,2,1,0,0,2,,241.0,500.0,22,2.0,1.0,3.0,2.0,1.5,2,1,88.33996846032882,0.0,34095.0,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016776653468250476,22730.0,6,3,6,6_0,6_2,6_0_0 -3625,1,76.0,228.0,1,111,350.0,,,0,77,0.0,0.0,,494.0,247.7270886033876,,60,0,0,0,0,0,0,0,0,0,,3,,1,119419,2,2,0,0,2,,0.0,428.0,11,0.0,0.0,2.0,1.0,1.0,1,1,42.96183206730496,350.0,13895.565257964961,0,5,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03555091072792727,13895.565257964961,3,2,3_1,3_0_1,3_2_1,3_1_0 -3626,2,31.0,0.0,5,111,1800.0,,,65,43,0.0,0.0,,1938.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,2,,3,111956,2,2,0,0,2,,3419.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,71.94351926978513,1800.0,64810.81732880763,1,1,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029902415674961443,28178.616229916362,8,4,8,8_0,8_2,8_0_0 -3627,2,38.0,0.0,2,111,0.0,,,54,42,0.0,0.0,,792.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,2,100868,2,1,0,0,2,,300.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,78.90218117588331,0.0,21985.0,4,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03602456220150102,14656.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_1 -3628,2,37.0,0.0,2,111,1800.0,,,0,42,0.0,0.0,,1875.0,129.02452531426437,,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,122236,2,1,0,0,2,,470.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,56.50394498958075,1800.0,33770.84153008237,0,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05552126968259848,21106.77595630148,5,3,5,5_1,5_2,5_0_1 -3629,1,53.0,253.0,2,111,300.0,,,0,52,0.0,0.0,,550.0,430.0817510475479,,71,0,0,0,0,0,0,0,0,0,,1,,2,130458,2,1,0,0,2,,268.0,600.0,32,3.0,0.0,4.0,4.0,2.3,2,2,46.41647806328071,300.0,9836.378794501867,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.055914886107012014,4276.686432392116,1,1,1_1,1_1_1,1_2_1,1_0_1 -3630,2,35.0,0.0,2,111,1200.0,,,90,90,0.0,0.0,,1350.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,,2,113694,2,1,0,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,60.13975398847609,1200.0,18727.746875,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07208555353779043,8917.974702380952,1,1,1_0,1_1_0,1_2_0,1_0_1 -3631,2,63.0,0.0,2,111,612.0,,,77,65,0.0,0.0,,762.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,2,105571,2,1,0,0,2,,240.0,,42,1.0,6.0,5.0,2.0,1.5,1,1,40.25831403353306,612.0,70920.75626459322,5,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010744386271870935,47280.50417639548,10,5,10,10_1,10_2,10_0_1 -3632,2,81.0,0.0,2,111,100.0,,,0,86,0.0,0.0,,150.0,86.01635020950958,,30,0,0,0,0,0,0,0,0,0,,2,,2,123643,2,1,0,0,2,,100.0,320.0,11,0.0,1.0,4.0,1.0,1.0,1,1,36.479720070082315,100.0,17067.66108855594,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00878855041834506,17067.66108855594,4,2,4_0,4_0_0,4_2_0,4_0_1 -3633,2,53.0,0.0,2,111,822.0,,,0,56,0.0,0.0,,1122.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,120902,2,1,0,0,2,,160.0,343.0,22,2.0,1.0,4.0,2.0,1.5,2,2,38.07709657056797,822.0,33431.84112350151,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03356081993376279,22287.89408233434,6,3,6,6_0,6_2,6_0_1 -3634,2,55.0,0.0,2,111,960.0,,,0,47,0.0,0.0,,1110.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,113090,2,1,0,0,2,,300.0,318.0,32,1.0,4.0,4.0,2.0,1.5,2,2,50.92348800266864,960.0,46591.18096886693,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023824251219167893,31060.787312577955,8,4,8,8_0,8_2,8_0_1 -3635,2,90.0,0.0,2,111,500.0,,,0,86,0.0,0.0,,680.0,309.6588607542345,,71,0,0,0,0,0,0,0,0,0,,1,,2,113520,2,2,0,0,2,,286.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,38.48563029243881,500.0,14513.313746943319,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046853531306261215,14513.313746943319,3,2,3_0,3_1_0,3_2_0,3_0_1 -3637,2,50.0,0.0,9,111,650.0,,,85,85,0.0,0.0,,650.0,0.0,,50,0,0,0,0,0,0,0,0,0,,7,2011.0,6,130906,2,3,0,0,2,,0.0,250.0,41,0.0,0.0,2.0,2.0,1.5,3,3,64.17872982753919,650.0,16738.829283163243,6,7,2,3,18.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038831867450479514,11159.219522108828,2,1,2_0,2_1_0,2_2_0,2_0_0 -3638,2,51.0,0.0,8,111,990.0,,,0,22,0.0,0.0,,1140.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,120019,1,2,0,0,2,,180.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,38.89973845533471,990.0,55428.32816017162,0,1,0,1,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02056710057546268,36952.21877344775,9,5,9,9_1,9_2,9_0_0 -3639,2,44.0,0.0,2,111,350.0,,,0,68,0.0,0.0,,494.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,2,15.0,3,,2,125691,2,3,0,0,2,,200.0,325.0,12,1.0,2.0,2.0,1.0,1.0,2,2,75.87772699546169,350.0,21069.933209962048,0,1,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02344573165359786,21069.933209962048,5,3,5,5_0,5_2,5_0_1 -3640,1,43.0,255.0,5,111,284.0,,,67,56,0.0,0.0,,330.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,2,120.0,1,,3,103697,2,2,0,0,2,,178.0,510.0,43,2.0,4.0,3.0,2.0,1.5,1,1,59.604375186514005,284.0,14494.27293744797,1,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.022767613210000974,9662.848624965312,1,1,1_1,1_1_1,1_2_1,1_0_0 -3641,2,39.0,0.0,5,111,282.0,,,0,81,0.0,0.0,,482.0,344.06540083803833,,42,0,0,0,0,0,0,0,0,0,,1,,3,104726,2,1,0,0,2,,240.0,,32,1.0,0.0,3.0,3.0,1.8,4,3,64.70671659150732,282.0,7773.286647401461,0,4,0,1,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062007233473260405,4318.4925818897,1,1,1_0,1_1_0,1_2_0,1_0_0 -3642,2,59.0,0.0,1,111,140.0,,,0,85,0.0,0.0,,190.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,0,,3,,1,124908,1,2,0,0,2,,500.0,0.0,11,0.0,1.0,2.0,1.0,1.0,2,2,36.612761574676135,140.0,11856.401912062705,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016025097783391937,11856.401912062705,2,1,2_0,2_0_0,2_2_0,2_1_0 -3644,2,39.0,0.0,1,111,458.0,,,81,53,0.0,0.0,,578.0,206.439240502823,,71,0,0,0,0,0,0,0,0,2,25.0,2,,1,101371,2,2,0,0,2,,422.0,450.0,43,3.0,0.0,3.0,7.0,3.1999999999999993,1,1,85.98717824719385,458.0,40130.895696308115,4,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01440286816357238,12540.90490509629,2,1,2_0,2_0_0,2_2_0,2_1_0 -3645,2,48.0,0.0,1,111,384.0,,,0,65,0.0,0.0,,432.0,82.5756962011292,,71,0,0,0,0,0,0,0,0,1,15.0,2,,1,119618,2,2,0,0,2,,114.0,492.0,12,1.0,1.0,2.0,1.0,1.0,4,4,26.708959323454874,384.0,25871.63205425856,0,1,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016697825598864426,25871.63205425856,7,4,7,7_0,7_2,7_1_0 -3646,2,54.0,0.0,1,111,471.0,,,0,63,0.0,0.0,,759.0,495.4541772067752,,20,0,0,0,0,0,0,0,0,2,10.0,2,,1,124990,1,2,0,0,2,,180.0,490.0,22,1.0,5.0,3.0,2.0,1.5,2,2,25.35016758620517,471.0,36276.0,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02092292424743632,24184.0,7,4,7,7_0,7_2,7_1_0 -3647,1,35.0,357.0,1,111,860.0,,,0,81,0.0,0.0,,1010.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,1,103522,1,2,0,0,2,,408.0,660.0,32,3.0,0.0,4.0,7.0,3.3999999999999995,1,1,8.139914230035334,860.0,25455.710219806162,0,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.039676755874371784,7486.973594060637,1,1,1_1,1_0_1,1_2_1,1_1_0 -3648,2,41.0,0.0,2,111,791.0,,,0,21,0.0,0.0,,916.0,215.04087552377396,,70,0,0,0,0,0,0,0,0,0,,2,,2,107925,2,1,0,0,2,,252.0,290.0,12,1.0,0.0,2.0,1.0,1.0,1,1,61.94181800578531,791.0,6296.860254324776,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.14546932328232595,6296.860254324776,1,1,1_0,1_0_0,1_2_0,1_0_1 -3649,1,68.0,500.0,2,111,612.0,,,0,86,0.0,0.0,,912.0,516.0981012570575,,10,0,0,0,0,0,0,0,0,0,,1,,2,109827,2,2,0,0,2,,150.0,525.0,21,0.0,0.0,4.0,2.0,1.5,1,1,49.800846083301636,612.0,9713.685243631788,0,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09388815646439642,6475.790162421192,1,1,1_1,1_1_1,1_2_1,1_0_1 -3650,2,65.0,0.0,2,111,1200.0,,,0,77,0.0,0.0,,1500.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,1,,2,106018,2,1,0,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,38.48563029243881,1200.0,19140.237037037037,0,5,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07836893540542088,19140.237037037037,5,3,5,5_1,5_2,5_0_1 -3651,2,48.0,0.0,2,111,840.0,,,0,52,0.0,0.0,,840.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,104569,2,3,0,0,2,,120.0,,32,1.0,3.0,2.0,3.0,1.8,3,2,33.04915354217791,840.0,41581.98235708637,0,1,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02020105710176292,23101.101309492424,6,3,6,6_1,6_2,6_0_1 -3652,1,54.0,250.0,2,111,750.0,,,0,81,0.0,0.0,,900.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,0,,3,,2,115630,2,1,0,0,2,,300.0,400.0,32,1.0,2.0,3.0,2.0,1.5,2,1,49.77712309892568,750.0,5030.5607708738235,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.17890649591410607,3353.707180582549,1,1,1_1,1_0_1,1_2_1,1_0_1 -3653,2,55.0,0.0,2,111,720.0,,,54,67,0.0,0.0,,1020.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,2,120684,2,2,0,0,2,,320.0,,43,2.0,1.0,5.0,4.0,2.5,1,1,44.06784588497965,720.0,20474.557355205805,4,4,0,1,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04981792682031573,8189.822942082322,1,1,1_0,1_1_0,1_2_0,1_0_1 -3655,1,42.0,413.0,9,111,750.0,,,0,81,0.0,0.0,,750.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2008.0,6,110447,2,2,0,0,2,,300.0,600.0,32,1.0,0.0,3.0,3.0,1.8,2,2,45.43546786388918,750.0,12657.500547240177,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05925340450911763,7031.944748466765,1,1,1_1,1_0_1,1_2_1,1_0_0 -3656,2,50.0,0.0,2,111,500.0,,,0,69,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,0,,3,,2,108426,1,3,0,0,2,,206.0,200.0,32,1.0,9.0,1.0,2.0,1.3,1,1,37.32473304695399,500.0,15139.15345739042,0,4,2,3,16.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03302694575408489,11645.502659531092,2,1,2_0,2_0_0,2_2_0,2_0_1 -3657,2,70.0,0.0,1,111,240.0,,,0,78,0.0,0.0,,340.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,0,,3,,1,109955,2,1,0,0,2,,634.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,34.98142783914502,240.0,20904.334418416667,0,5,0,1,32.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016264569500020094,20904.334418416667,5,3,5,5_0,5_2,5_1_0 -3659,2,81.0,0.0,2,111,3600.0,,,0,77,0.0,0.0,,4243.0,1106.1702636942932,,50,0,0,0,0,0,0,0,0,0,,1,,2,126487,2,2,0,0,2,,612.0,,21,2.0,4.0,4.0,3.0,2.0,3,3,8.139914230071247,3600.0,55885.230345739656,0,5,0,1,165.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07592345909196847,27942.615172869828,7,4,7,7_1,7_2,7_0_1 -3661,1,49.0,400.0,2,111,340.0,,,0,56,0.0,0.0,,640.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,,2,128119,2,3,0,0,2,,408.0,500.0,32,1.0,0.0,3.0,4.0,2.1,1,1,60.51067416015491,340.0,18263.0,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03504353063571155,8696.666666666666,1,1,1_1,1_1_1,1_2_1,1_0_1 -3662,1,42.0,312.0,2,111,268.0,,,0,56,0.0,0.0,,368.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,0,,2,,2,109017,2,3,0,0,2,,542.0,512.0,32,1.0,0.0,2.0,2.0,1.5,2,2,72.31907843981175,268.0,12365.560975609756,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02976007321672308,8243.707317073171,1,1,1_1,1_0_1,1_2_1,1_0_1 -3663,2,82.0,0.0,5,111,420.0,,,86,86,0.0,0.0,,720.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,,3,116913,1,1,0,0,2,,424.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,35.434032721836715,420.0,71048.52524908542,5,5,0,1,129.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010133919000792607,47365.68349939028,10,5,10,10_1,10_2,10_0_0 -3664,2,31.0,0.0,2,111,1500.0,,,0,54,0.0,0.0,,1650.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,2,127729,1,2,0,0,2,,800.0,,22,1.0,0.0,6.0,3.0,2.0,2,2,43.79069950296666,1500.0,28000.640929110068,0,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05892722256527437,14000.320464555034,3,2,3_0,3_1_0,3_2_0,3_0_1 -3665,1,37.0,300.0,2,111,900.0,,,56,21,0.0,0.0,,1050.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,0,,2,,2,114956,2,2,0,0,2,,160.0,625.0,43,2.0,0.0,3.0,3.0,1.8,2,1,44.07498172878275,900.0,38622.550077844855,4,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027186190396120788,21456.972265469365,6,3,6,6_0,6_2,6_0_1 -3666,2,61.0,0.0,2,111,1188.0,,,0,55,0.0,0.0,,1188.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,2,109569,2,1,0,0,2,,480.0,,22,3.0,0.0,5.0,4.0,2.5,7,6,35.40010539067134,1188.0,24671.31287838449,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048153092048897554,9868.525151353797,2,1,2_0,2_1_0,2_2_0,2_0_1 -3667,2,44.0,0.0,5,111,1200.0,,,85,52,0.0,0.0,,1250.0,86.01635020950958,,60,0,0,0,0,0,0,0,0,1,5.0,2,,3,121357,2,2,0,0,2,,300.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,51.9615482541174,1200.0,19455.570928196146,6,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06424894980534482,12970.380618797431,2,1,2_0,2_0_0,2_2_0,2_0_0 -3668,2,33.0,0.0,2,111,720.0,,,0,21,0.0,0.0,,745.0,43.00817510475479,,20,0,0,0,0,0,0,0,0,1,10.0,8,,2,104691,2,1,0,0,2,,192.0,460.0,12,1.0,0.0,1.0,1.0,1.0,2,2,31.827992445917324,720.0,17704.649178396237,0,1,2,3,15.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04207934269090585,17704.649178396237,4,2,4_0,4_0_0,4_2_0,4_0_1 -3670,2,29.0,0.0,2,111,840.0,,,31,38,0.0,0.0,,840.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,2,108622,2,2,0,0,2,,0.0,950.0,43,2.0,0.0,3.0,2.0,1.5,1,1,119.15336919256235,840.0,47579.177417998304,1,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01765478189377532,31719.45161199887,8,4,8,8_0,8_2,8_0_1 -3671,0,65.0,0.0,2,111,216.0,,,90,68,0.0,0.0,,496.0,481.69156117325366,,60,0,0,0,0,0,0,0,0,0,,1,,2,120933,2,2,0,0,2,,320.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,39.630945119914166,216.0,4822.170138888889,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10285825379738404,3214.7800925925926,1,1,1_0,1_1_0,1_2_0,1_0_1 -3672,2,48.0,0.0,2,111,480.0,,,0,22,0.0,0.0,,540.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,0,,1,,2,102810,2,1,0,0,2,,100.0,,32,3.0,0.0,5.0,5.0,2.5999999999999996,2,2,41.04466007431963,480.0,15685.113253012049,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03442754867557635,6032.735866543097,1,1,1_0,1_1_0,1_2_0,1_0_1 -3673,2,54.0,0.0,1,111,480.0,,,0,56,0.0,0.0,,505.0,43.00817510475479,,30,0,0,0,0,0,0,0,0,1,5.0,1,,1,103590,2,3,0,0,2,,95.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,49.26507028748989,480.0,24743.59685284735,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020409320560922716,24743.59685284735,7,4,7,7_1,7_2,7_1_0 -3674,1,53.0,260.0,2,111,420.0,,,0,81,0.0,0.0,,470.0,86.01635020950958,,31,0,0,0,0,0,0,0,0,0,,1,,2,113153,2,2,0,0,2,,200.0,680.0,12,1.0,0.0,3.0,1.0,1.0,1,1,45.491820062709905,420.0,8096.105248641012,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.058052604995333136,8096.105248641012,1,1,1_1,1_1_1,1_2_1,1_0_1 -3675,1,41.0,447.0,2,111,600.0,,,0,81,0.0,0.0,,750.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,2,107132,2,2,0,0,2,,600.0,767.0,32,1.0,0.0,5.0,6.0,2.6999999999999997,1,1,6.461381361456224,600.0,6671.145839705059,0,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11242446470532542,2470.7947554463185,1,1,1_1,1_0_1,1_2_1,1_0_1 -3676,2,68.0,0.0,2,111,330.0,,,86,86,0.0,0.0,,570.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,,2,126701,2,1,0,0,2,,220.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,31.95664138289675,330.0,85900.30540504373,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00663559922531465,57266.870270029154,10,5,10,10_1,10_2,10_0_1 -3677,2,44.0,0.0,2,111,480.0,,,85,33,0.0,0.0,,605.0,215.04087552377396,,20,0,0,0,0,0,0,0,0,0,,1,,2,106082,2,1,0,0,2,,350.0,,42,1.0,0.0,5.0,5.0,2.8,1,1,132.93274940557836,480.0,76501.73567490396,6,1,1,2,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007908317303687887,27322.048455322845,7,4,7,7_1,7_2,7_0_1 -3678,2,32.0,0.0,2,111,0.0,,,54,53,0.0,0.0,,675.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,120349,1,1,0,0,2,,177.0,2000.0,43,2.0,0.0,6.0,4.0,2.3,2,2,49.67435471069917,0.0,25197.696926153767,4,1,2,3,162.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02678816250462115,10955.520402675551,2,1,2_0,2_1_0,2_2_0,2_0_1 -3679,2,82.0,0.0,1,111,540.0,,,77,77,0.0,0.0,,690.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,1,126290,2,1,0,0,2,,150.0,,41,0.0,0.0,5.0,3.0,2.0,2,2,42.351572285765315,540.0,40345.60109108125,5,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017102236212624692,20172.800545540624,5,3,5,5_1,5_2,5_1_0 -3680,2,50.0,0.0,7,111,540.0,,,55,46,0.0,0.0,,640.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,5,123724,2,1,0,0,2,,450.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,28.39740735594959,540.0,44737.00778531428,1,1,0,1,148.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01430582937221142,29824.671856876186,8,4,8,8_1,8_2,8_0_0 -3681,1,31.0,400.0,2,111,0.0,,,0,52,0.0,0.0,,872.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,115238,1,2,0,0,2,,277.0,730.0,32,1.0,0.0,1.0,3.0,1.6,2,2,47.67863265842137,0.0,21789.821148033418,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04001868551723749,13618.638217520886,3,2,3_1,3_1_1,3_2_1,3_0_1 -3682,2,77.0,0.0,1,111,840.0,,,81,22,0.0,0.0,,990.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,1,100827,1,2,0,0,2,,150.0,716.0,43,2.0,0.0,2.0,2.0,1.5,8,7,29.87259429545926,840.0,8279.02142426722,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11957934993357328,5519.347616178146,1,1,1_0,1_0_0,1_2_0,1_1_0 -3683,2,32.0,0.0,1,111,1000.0,,,0,52,0.0,0.0,,1050.0,86.01635020950958,,70,0,0,0,0,0,0,0,0,2,5.0,2,,1,108135,2,2,0,0,2,,0.0,983.0,22,2.0,0.0,4.0,2.0,1.5,1,1,54.99392953016704,1000.0,52568.39288588035,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01997397946479786,35045.59525725357,9,5,9,9_0,9_2,9_1_0 -3684,2,35.0,0.0,2,111,1200.0,,,81,38,0.0,0.0,,1200.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,2,122378,2,2,0,0,2,,343.0,1000.0,43,2.0,2.0,2.0,2.0,1.5,4,2,44.916126302011996,1200.0,69509.30651407322,4,1,2,3,33.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01726387530218046,46339.537676048814,10,5,10,10_0,10_2,10_0_1 -3685,2,59.0,0.0,9,111,400.0,,,55,33,0.0,0.0,,400.0,0.0,,30,0,0,0,0,0,0,0,0,1,5.0,2,2011.0,6,123750,2,2,0,0,2,,160.0,1150.0,43,2.0,0.0,3.0,2.0,1.5,1,1,56.285866412826536,400.0,119306.4147531855,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003352711594154412,79537.609835457,10,5,10,10_0,10_2,10_0_0 -3686,2,69.0,0.0,2,111,400.0,,,0,77,0.0,0.0,,550.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,2,133379,1,3,0,0,2,,135.0,250.0,21,1.0,2.0,2.0,2.0,1.5,1,1,20.753901604856523,400.0,8280.832517596638,0,5,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06641844269054575,5520.555011731092,1,1,1_0,1_1_0,1_2_0,1_0_1 -3687,2,86.0,0.0,2,111,840.0,,,0,75,0.0,0.0,,940.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,0,,1,,2,115638,2,2,0,0,2,,160.0,,21,0.0,0.0,4.0,2.0,1.5,2,1,43.3648147885949,840.0,56419.944860390904,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016660774878919073,37613.296573593936,9,5,9,9_1,9_2,9_0_1 -3688,2,31.0,0.0,2,111,120.0,,,0,85,0.0,0.0,,170.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,8,,2,117375,2,3,0,0,2,,250.0,200.0,11,0.0,1.0,2.0,1.0,1.0,1,1,54.32381926174837,120.0,11493.94843888116,0,7,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014790391735613884,11493.94843888116,2,1,2_0,2_0_0,2_2_0,2_0_1 -3690,1,45.0,410.0,2,111,0.0,,,0,56,0.0,0.0,,100.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,0,,2,,2,128149,2,2,0,0,2,,0.0,430.0,32,1.0,0.0,2.0,3.0,1.6,4,3,39.384129140962436,0.0,12972.793722156643,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0077084398427770305,8107.996076347901,1,1,1_1,1_0_1,1_2_1,1_0_1 -3692,1,34.0,413.0,1,111,1680.0,,,0,56,0.0,0.0,,1830.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,2,,1,132552,2,2,0,0,2,,860.0,500.0,32,1.0,0.0,2.0,3.0,1.8,1,1,24.427522999770726,1680.0,20597.901556081713,0,4,2,3,26.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08884400165800754,11443.278642267618,2,1,2_1,2_0_1,2_2_1,2_1_0 -3693,2,74.0,0.0,1,111,360.0,,,0,72,0.0,0.0,,710.0,602.1144514665671,,71,0,0,0,0,0,0,0,0,0,,2,,1,114745,2,2,0,0,2,,200.0,200.0,11,0.0,0.0,1.0,1.0,1.0,1,1,22.831187529991155,360.0,14024.999999999998,0,7,2,3,18.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05062388591800357,14024.999999999998,3,2,3_0,3_0_0,3_2_0,3_1_0 -3694,1,43.0,250.0,2,111,960.0,,,0,38,0.0,0.0,,1035.0,129.02452531426437,,60,0,0,0,0,0,0,0,0,0,,2,,2,101863,2,2,0,0,2,,120.0,627.0,12,1.0,0.0,2.0,1.0,1.0,2,2,38.14789370126486,960.0,5715.323355479284,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1810921159881085,5715.323355479284,1,1,1_1,1_0_1,1_2_1,1_0_1 -3695,2,65.0,0.0,2,111,360.0,,,0,52,0.0,0.0,,360.0,0.0,,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,124753,2,2,0,0,2,,433.0,515.0,22,2.0,0.0,1.0,2.0,1.5,1,1,29.72920421866855,360.0,35850.17210299283,0,1,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010041792797138249,23900.114735328552,6,3,6,6_0,6_2,6_0_1 -3696,2,51.0,0.0,2,111,738.0,,,0,33,0.0,0.0,,738.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,129258,2,2,0,0,2,,240.0,,12,1.0,0.0,4.0,1.0,1.0,2,1,36.87260903297679,738.0,100088.69349627025,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0073734602203344895,100088.69349627025,10,5,10,10_0,10_2,10_0_1 -3697,1,41.0,300.0,2,111,480.0,,,0,52,0.0,0.0,,730.0,430.0817510475479,,50,0,0,0,0,0,0,0,0,2,35.0,7,,2,115499,2,3,0,0,2,,380.0,415.0,32,1.0,0.0,3.0,4.0,2.1,1,1,98.27609172976652,480.0,26610.673687451294,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.027432601240164906,12671.749374976805,2,1,2_1,2_1_1,2_2_1,2_0_1 -3698,2,66.0,0.0,2,111,300.0,,,52,77,0.0,0.0,,900.0,1032.196202514115,,71,0,0,0,0,0,0,0,0,0,,2,,2,110060,2,1,0,0,2,,952.0,259.0,42,1.0,0.0,4.0,5.0,2.8,5,4,30.064326163835688,300.0,2759.224344170143,1,5,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.32617862404033027,985.4372657750512,1,1,1_0,1_0_0,1_2_0,1_0_1 -3699,2,56.0,0.0,7,111,650.0,,,0,48,0.0,0.0,,725.0,129.02452531426437,,60,0,0,0,0,0,0,0,0,0,,2,,5,126544,2,1,0,0,2,,140.0,570.0,12,1.0,0.0,2.0,1.0,1.0,2,2,34.49347882606973,650.0,26420.304474443008,0,4,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02744101608296414,26420.304474443008,7,4,7,7_0,7_2,7_0_0 -3700,2,49.0,0.0,7,111,270.0,,,0,52,0.0,0.0,,295.0,43.00817510475479,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,100747,2,2,0,0,2,,140.0,460.0,12,1.0,0.0,2.0,1.0,1.0,1,1,66.1447819406656,270.0,48564.11774489417,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006074443718912511,48564.11774489417,10,5,10,10_1,10_2,10_0_0 -3701,1,41.0,220.0,7,111,2100.0,,,35,45,0.0,0.0,,2200.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,5,117447,2,2,0,0,2,,400.0,763.0,43,2.0,0.0,4.0,5.0,2.4,2,2,50.85567174758206,2100.0,34612.88210946495,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06356015061220247,14422.034212277062,3,2,3_1,3_1_1,3_2_1,3_0_0 -3702,2,48.0,0.0,2,111,1170.0,,,22,22,0.0,0.0,,1350.0,309.6588607542345,,71,0,0,0,0,0,0,0,0,0,,1,,2,117434,2,1,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.8,6,5,28.229484123164397,1170.0,33014.96625223069,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040890546114333404,11791.059375796676,2,1,2_0,2_1_0,2_2_0,2_0_1 -3703,1,31.0,253.0,6,111,215.0,,,85,47,0.0,0.0,,503.0,495.4541772067752,,10,0,0,0,0,0,0,0,0,0,,2,,4,114615,2,2,0,0,2,,170.0,550.0,42,1.0,0.0,3.0,4.0,2.1,3,2,71.06069711639472,215.0,24315.08595762667,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020686745704973707,11578.612360774605,2,1,2_1,2_0_1,2_2_1,2_0_0 -3704,0,41.0,0.0,7,111,0.0,,,0,68,0.0,0.0,,312.0,536.7420253073398,,71,0,0,0,0,0,0,0,0,0,,2,,5,125527,2,3,0,0,2,,0.0,,32,2.0,0.0,3.0,5.0,2.8,2,2,47.0590541849572,0.0,6732.802117269453,0,4,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04634028960983846,2404.5721847390905,1,1,1_0,1_0_0,1_2_0,1_0_0 -3705,2,62.0,0.0,7,111,1854.0,,,0,56,0.0,0.0,,2430.0,990.9083544135505,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,100113,1,3,0,0,2,,576.0,413.0,22,2.0,3.0,4.0,3.0,2.0,1,1,73.98694417366268,1854.0,44517.0,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05458588853696341,22258.5,6,3,6,6_1,6_2,6_0_0 -3706,2,56.0,0.0,7,111,1960.0,,,0,52,0.0,0.0,,2056.0,165.1513924022584,,41,0,0,0,0,0,0,0,0,2,25.0,1,,5,100557,1,3,0,0,2,,510.0,417.0,32,1.0,0.0,4.0,2.0,1.5,3,2,28.879753720852236,1960.0,34670.33636392596,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0593014148584737,23113.557575950643,6,3,6,6_1,6_2,6_0_0 -3707,2,75.0,0.0,7,111,564.0,,,0,77,0.0,0.0,,660.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,0,,1,,5,132371,1,1,0,0,2,,350.0,348.0,11,0.0,9.0,3.0,1.0,1.0,4,4,38.798418654470325,564.0,2265.0,0,5,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2913907284768212,2265.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -3708,2,58.0,0.0,8,111,1000.0,,,0,22,0.0,0.0,,1300.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,104598,2,2,0,0,2,,350.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,28.815147542524585,1000.0,19679.117338003503,0,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0660598734014098,19679.117338003503,5,3,5,5_1,5_2,5_0_0 -3709,1,43.0,150.0,6,111,500.0,,,0,56,0.0,0.0,,575.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,0,,3,,4,119289,1,3,0,0,2,,500.0,300.0,12,1.0,4.0,3.0,1.0,1.0,1,1,47.63879255069119,500.0,3023.1755325266026,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.19019735831198886,3023.1755325266026,1,1,1_1,1_0_1,1_2_1,1_0_0 -3710,2,48.0,0.0,7,111,1038.0,,,90,46,0.0,0.0,,1326.0,495.4541772067752,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,110656,2,3,0,0,2,,500.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,68.16351469782457,1038.0,42636.230147559385,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03110031059056716,21318.115073779692,6,3,6,6_1,6_2,6_0_0 -3712,1,35.0,539.0,6,111,900.0,,,0,85,0.0,0.0,,1176.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,4,119587,1,2,0,0,2,,650.0,650.0,31,0.0,0.0,3.0,5.0,2.2,1,1,57.87420575834444,900.0,6878.2244368077645,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17097435694404156,3126.465653094438,1,1,1_1,1_1_1,1_2_1,1_0_0 -3713,2,41.0,0.0,6,111,503.0,,,0,68,0.0,0.0,,647.0,247.7270886033876,,43,0,0,0,0,0,0,0,0,3,30.0,8,,4,110927,1,3,0,0,2,,466.0,430.0,32,1.0,1.0,2.0,4.0,2.1,2,2,44.82407164489791,503.0,22696.632636302733,0,1,2,3,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028506431344583628,10807.920303001301,2,1,2_0,2_0_0,2_2_0,2_0_0 -3714,2,63.0,0.0,9,111,526.0,,,0,86,0.0,0.0,,526.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,2010.0,6,109253,1,3,0,0,2,,238.0,495.0,11,0.0,2.0,1.0,1.0,1.0,3,2,100.2701961377371,526.0,25216.189099417454,0,5,2,3,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020859615143517134,25216.189099417454,7,4,7,7_0,7_2,7_0_0 -3715,1,48.0,413.0,5,111,150.0,,,0,68,0.0,0.0,,294.0,247.7270886033876,,12,0,0,0,0,0,0,0,0,1,18.0,1,,3,125385,1,2,0,0,2,,293.0,550.0,32,1.0,5.0,2.0,3.0,1.6,1,1,41.616346774976435,150.0,11060.0,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026582278481012658,6912.5,1,1,1_1,1_1_1,1_2_1,1_0_0 -3716,1,32.0,446.0,6,111,1008.0,,,85,85,0.0,0.0,,1284.0,474.81025315649293,,41,0,0,0,0,0,0,0,0,0,,2,,4,106257,2,2,0,0,2,,1487.0,603.0,41,0.0,0.0,5.0,6.0,2.8999999999999995,2,2,129.43612041270708,1008.0,17739.266733963796,7,6,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07238179679330485,6116.988528953034,1,1,1_1,1_0_1,1_2_1,1_0_0 -3717,2,58.0,0.0,6,111,0.0,,,0,56,0.0,0.0,,1057.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,4,108082,2,2,0,0,2,,361.0,102.0,12,1.0,2.0,2.0,1.0,1.0,2,2,32.790208710013424,0.0,26564.943216937223,0,4,3,4,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03978928136108644,26564.943216937223,7,4,7,7_1,7_2,7_0_0 -3718,1,22.0,141.0,7,111,0.0,,,85,55,0.0,0.0,,96.0,165.1513924022584,,60,0,0,0,0,0,0,0,0,0,,1,,5,104161,1,3,0,0,2,,0.0,600.0,42,1.0,0.0,2.0,3.0,1.8,3,3,129.8299861253447,0.0,25797.71595418707,6,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.003721259671611309,14332.064418992817,3,2,3_1,3_1_1,3_2_1,3_0_0 -3719,2,86.0,0.0,2,111,0.0,,,0,77,0.0,0.0,,233.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,106407,2,1,0,0,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,27.01024882418155,0.0,12649.951219512195,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01841904335888695,12649.951219512195,2,1,2_0,2_1_0,2_2_0,2_0_1 -3720,2,97.0,0.0,2,111,360.0,,,0,78,0.0,0.0,,430.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,0,,1,,2,101156,2,1,0,0,1,,210.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,50.747299211373786,360.0,19124.51111111111,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022484234891117044,19124.51111111111,5,3,5,5_1,5_2,5_0_1 -3721,2,26.0,0.0,2,111,480.0,,,0,43,0.0,0.0,,710.0,395.67521096374406,,50,0,0,0,0,0,0,0,0,3,45.0,1,,2,101265,1,1,0,0,1,,600.0,650.0,12,1.0,0.0,3.0,1.0,1.0,3,3,58.59270517042402,480.0,17704.649178396237,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04010246081952101,17704.649178396237,4,2,4_0,4_1_0,4_2_0,4_0_1 -3722,2,58.0,0.0,2,111,700.0,,,0,42,0.0,0.0,,704.0,6.881308016760767,,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,121332,2,1,0,0,1,,700.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,33.971009832944766,700.0,65907.2927173526,0,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010681670737396945,65907.2927173526,10,5,10,10_1,10_2,10_0_1 -3723,2,65.0,0.0,2,111,900.0,,,0,86,0.0,0.0,,1015.0,197.83760548187203,,20,0,0,0,0,0,0,0,0,0,,2,,2,118494,2,3,0,0,2,,500.0,60.0,21,0.0,0.0,3.0,2.0,1.5,2,2,9.282631727586642,900.0,9454.224,0,7,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10735941945103056,6302.816,1,1,1_0,1_0_0,1_2_0,1_0_1 -3724,2,80.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,700.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,2,,2,101338,2,3,0,0,1,,480.0,70.0,11,0.0,0.0,3.0,1.0,1.0,3,3,27.04405449348232,600.0,9450.881890909091,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0740671619939868,9450.881890909091,1,1,1_0,1_0_0,1_2_0,1_0_1 -3725,2,44.0,0.0,2,111,700.0,,,0,68,0.0,0.0,,980.0,481.69156117325366,,44,0,0,0,0,0,0,0,0,2,20.0,2,,2,101308,2,3,0,0,1,,600.0,70.0,32,1.0,0.0,4.0,3.0,2.0,2,2,70.14277981119565,700.0,38823.69591670746,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025242315984096327,19411.84795835373,5,3,5,5_0,5_2,5_0_1 -3726,2,45.0,0.0,2,111,1080.0,,,0,37,0.0,0.0,,1180.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,106571,2,3,0,0,1,,900.0,130.0,22,1.0,0.0,3.0,2.0,1.5,2,2,44.36600499334878,1080.0,33519.17249758478,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03520373303025379,22346.114998389854,6,3,6,6_0,6_2,6_0_1 -3727,2,59.0,0.0,2,111,672.0,,,0,45,0.0,0.0,,795.0,211.60022151539357,,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,123685,2,1,0,0,1,,800.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,48.342178466475964,672.0,68832.82593482666,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011549721941573835,68832.82593482666,10,5,10,10_1,10_2,10_0_1 -3728,2,50.0,0.0,2,111,300.0,,,0,62,0.0,0.0,,438.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,2,116563,1,3,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,54.7496994617999,300.0,10032.178440622512,0,4,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043659510503365945,10032.178440622512,2,1,2_0,2_1_0,2_2_0,2_0_1 -3729,2,50.0,0.0,1,111,2292.0,,,22,22,0.0,0.0,,2430.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,1,109095,2,3,0,0,2,,792.0,,43,2.0,0.0,4.0,4.0,2.3,3,1,8.250686085451376,2292.0,128991.52403794175,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018838447084982394,56083.271320844244,10,5,10,10_1,10_2,10_1_0 -3730,2,42.0,0.0,5,111,1800.0,,,22,22,0.0,0.0,,2080.0,481.69156117325366,,10,0,0,0,0,0,0,0,0,1,2.0,2,,3,104389,2,2,0,0,2,,200.0,,43,2.0,0.0,4.0,7.0,2.9999999999999996,2,2,115.88541270262212,1800.0,131722.64221095992,1,1,1,2,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015790755219355405,43907.54740365331,10,5,10,10_0,10_2,10_0_0 -3731,0,29.0,0.0,7,111,1240.0,,,22,46,0.0,0.0,,1240.0,0.0,,71,0,0,0,0,0,0,0,0,1,3.0,2,,5,105953,2,3,0,0,2,,464.0,,43,2.0,0.0,3.0,2.0,1.5,8,8,103.50988486191049,1240.0,43404.0,1,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028568795502718642,28936.0,8,4,8,8_0,8_2,8_0_0 -3732,1,84.0,240.0,7,111,1890.0,,,0,86,0.0,0.0,,2166.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,2,,5,131537,2,2,0,0,2,,1100.0,614.0,21,1.0,0.0,3.0,3.0,1.8,3,3,27.350211565739578,1890.0,13803.178397375146,0,7,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15692038004898154,7668.432442986192,1,1,1_1,1_0_1,1_2_1,1_0_0 -3733,1,32.0,400.0,2,111,573.0,,,0,85,0.0,0.0,,823.0,430.0817510475479,,50,0,0,0,0,0,0,0,0,0,,2,,2,119772,2,1,0,0,2,,600.0,430.0,31,0.0,0.0,2.0,3.0,1.6,2,2,44.36908226336902,573.0,3489.3666963713604,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.23585941851736272,2180.8541852321,1,1,1_1,1_0_1,1_2_1,1_0_1 -3734,2,55.0,0.0,7,111,720.0,,,0,46,0.0,0.0,,870.0,258.04905062852873,,60,0,0,0,0,0,0,0,0,2,20.0,2,,5,108635,2,1,0,0,2,,300.0,380.0,12,1.0,2.0,2.0,1.0,1.0,1,1,43.04926135952181,720.0,47470.88727757796,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018327022094885705,47470.88727757796,10,5,10,10_0,10_2,10_0_0 -3735,1,83.0,200.0,2,111,320.0,,,75,78,0.0,0.0,,620.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,2,,2,104852,2,1,0,0,2,,200.0,250.0,41,0.0,0.0,2.0,2.0,1.5,2,2,38.20946078435808,320.0,17704.649178396237,5,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03501905029310286,11803.099452264158,2,1,2_1,2_0_1,2_2_1,2_0_1 -3736,2,61.0,0.0,2,111,0.0,,,0,77,0.0,0.0,,164.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,108017,2,1,0,0,2,,418.0,248.0,11,0.0,1.0,2.0,1.0,1.0,3,3,27.349330012672112,0.0,27821.245302955303,0,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005894775672840897,27821.245302955303,7,4,7,7_0,7_2,7_0_1 -3737,2,59.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,660.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,0,,2,,2,106162,2,2,0,0,2,,100.0,250.0,31,0.0,1.0,2.0,3.0,2.0,2,2,65.71658195929436,360.0,25837.274049840584,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025544490441477986,12918.637024920292,2,1,2_0,2_0_0,2_2_0,2_0_1 -3738,1,42.0,195.0,2,111,180.0,,,0,52,0.0,0.0,,230.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,2,,2,123237,2,1,0,0,2,,264.0,250.0,12,1.0,0.0,2.0,1.0,1.0,1,1,46.67533451966054,180.0,9456.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024323181049069373,9456.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -3739,2,64.0,0.0,6,111,983.0,,,0,72,0.0,0.0,,983.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,123210,1,3,0,0,2,,900.0,,31,0.0,2.0,5.0,16.0,6.299999999999998,2,2,157.1281256393368,983.0,5901.05006399756,0,5,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1665805219985008,936.6746133329463,1,1,1_0,1_1_0,1_2_0,1_0_0 -3742,2,45.0,0.0,9,111,1840.0,,,0,68,0.0,0.0,,1888.0,82.5756962011292,,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,120773,1,3,0,0,2,,1100.0,,22,1.0,8.0,2.0,2.0,1.5,1,1,49.911063484619866,1840.0,17173.50922900126,0,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10993676218554652,11449.006152667507,2,1,2_0,2_1_0,2_2_0,2_0_0 -3743,2,59.0,0.0,6,111,1440.0,,,0,56,0.0,0.0,,1632.0,330.3027848045168,,10,0,0,0,0,0,0,0,0,0,,1,,4,108736,1,3,0,0,2,,580.0,,22,1.0,3.0,7.0,2.0,1.5,1,1,50.95258801056713,1440.0,4688.247173821004,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3481045131564365,3125.4981158806695,1,1,1_0,1_1_0,1_2_0,1_0_0 -3744,2,52.0,0.0,8,111,960.0,,,0,68,0.0,0.0,,1248.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,1,10.0,7,2002.0,6,100582,1,3,0,0,2,,0.0,,22,1.0,4.0,2.0,5.0,2.5999999999999996,9,9,63.44564007962137,960.0,20773.224827510217,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06007733562615947,7989.7018567347,1,1,1_0,1_1_0,1_2_0,1_0_0 -3745,2,50.0,0.0,6,111,600.0,,,56,21,0.0,0.0,,696.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,0,,1,,4,131692,2,1,0,0,2,,300.0,150.0,43,2.0,5.0,3.0,4.0,2.1,1,1,72.13486148915781,600.0,15577.791511784462,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044678990566376635,7417.995957992601,1,1,1_0,1_1_0,1_2_0,1_0_0 -3746,2,30.0,0.0,6,111,420.0,,,0,46,0.0,0.0,,420.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,132362,1,2,0,0,2,,500.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,47.685210221573804,420.0,49953.70417331453,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008407784907057316,49953.70417331453,10,5,10,10_1,10_2,10_0_0 -3747,2,27.0,0.0,6,111,1200.0,,,0,43,0.0,0.0,,1212.0,20.6439240502823,,50,0,0,0,0,0,0,0,0,0,,1,,4,101969,2,3,0,0,2,,700.0,,22,1.0,2.0,6.0,3.0,2.0,5,4,144.09422152729448,1200.0,36587.17056682083,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03312636591524531,18293.585283410415,4,2,4_0,4_1_0,4_2_0,4_0_0 -3749,2,59.0,0.0,7,111,900.0,,,0,52,0.0,0.0,,1188.0,495.4541772067752,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,120157,1,1,0,0,2,,300.0,457.0,32,1.0,4.0,4.0,2.0,1.5,1,1,47.14772668032692,900.0,36349.88705399648,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032682357395918946,24233.258035997653,7,4,7,7_1,7_2,7_0_0 -3750,2,30.0,0.0,6,111,2400.0,,,0,46,0.0,0.0,,2520.0,206.439240502823,,31,0,0,0,0,0,0,0,0,0,,1,,4,119852,1,1,0,0,2,,750.0,,22,1.0,4.0,5.0,3.0,2.0,2,2,48.80084852505189,2400.0,15208.649510882331,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1656951853744049,7604.3247554411655,1,1,1_0,1_1_0,1_2_0,1_0_0 -3751,2,82.0,0.0,5,111,331.0,,,0,78,0.0,0.0,,331.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,3,116385,1,3,0,0,2,,590.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,72.23160283879771,331.0,12095.772676024902,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027364932267293425,12095.772676024902,2,1,2_0,2_1_0,2_2_0,2_0_0 -3752,2,49.0,0.0,6,111,570.0,,,68,65,0.0,0.0,,714.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,109557,2,2,0,0,2,,160.0,412.0,43,2.0,3.0,2.0,2.0,1.5,3,3,57.935769723540716,570.0,56915.05118268337,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012545011998816183,37943.36745512224,9,5,9,9_1,9_2,9_0_0 -3753,1,41.0,390.0,7,111,0.0,,,54,62,0.0,0.0,,471.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,5,123355,2,3,0,0,2,,606.0,600.0,43,2.0,0.0,3.0,4.0,2.1,2,2,132.568266187682,0.0,22031.216079241556,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02137875632039167,10491.055275829312,2,1,2_1,2_1_1,2_2_1,2_0_0 -3756,2,52.0,0.0,6,111,430.0,,,0,48,0.0,0.0,,478.0,82.5756962011292,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,116204,1,1,0,0,2,,400.0,400.0,12,1.0,7.0,2.0,1.0,1.0,1,1,45.32436540375877,430.0,43609.86081401976,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010960823792547668,43609.86081401976,10,5,10,10_1,10_2,10_0_0 -3757,2,35.0,0.0,8,111,450.0,,,46,37,0.0,0.0,,474.0,41.2878481005646,,70,0,0,0,0,0,0,0,0,2,50.0,2,1999.0,6,110902,2,1,0,0,2,,150.0,610.0,43,2.0,0.0,3.0,2.0,1.5,1,1,42.357860808317106,450.0,68534.70963680928,1,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006916203519529023,45689.806424539514,10,5,10,10_0,10_2,10_0_0 -3758,1,29.0,404.0,6,111,566.0,,,68,21,0.0,0.0,,642.0,130.74485231845458,,43,0,0,0,0,0,0,0,0,0,,1,,4,109922,2,3,0,0,2,,0.0,660.0,43,2.0,0.0,4.0,4.0,2.1,2,2,106.57780261137003,566.0,9384.211525618382,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06841278015178742,4468.6721550563725,1,1,1_1,1_1_1,1_2_1,1_0_0 -3759,1,44.0,500.0,7,111,400.0,,,0,81,0.0,0.0,,550.0,258.04905062852873,,33,0,0,0,0,0,0,0,0,0,,1,,5,118022,2,2,0,0,2,,650.0,680.0,32,2.0,0.0,3.0,6.0,3.0999999999999996,1,1,63.59127221086396,400.0,16367.355225531046,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033603474258447584,5279.792008235822,1,1,1_1,1_1_1,1_2_1,1_0_0 -3760,1,25.0,356.0,6,111,486.0,,,0,42,0.0,0.0,,510.0,41.2878481005646,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,125036,2,2,0,0,2,,134.0,650.0,32,1.0,0.0,3.0,2.0,1.3,2,2,64.1475403291763,486.0,21210.6640058468,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02404450892529421,16315.895389112922,4,2,4_1,4_1_1,4_2_1,4_0_0 -3761,1,43.0,500.0,7,111,500.0,,,52,69,0.0,0.0,,604.0,178.91400843577995,,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,132706,2,2,0,0,2,,600.0,800.0,43,2.0,1.0,4.0,6.0,3.0999999999999996,4,4,8.732481997906685,500.0,56123.517102809965,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.010761976996088137,18104.360355745153,4,2,4_1,4_1_1,4_2_1,4_0_0 -3762,2,87.0,0.0,6,111,960.0,,,77,78,0.0,0.0,,1248.0,495.4541772067752,,20,0,0,0,0,0,0,0,0,0,,1,,4,120927,2,1,0,0,2,,3446.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,52.32125552644095,960.0,11664.0,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10699588477366255,7776.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -3763,1,32.0,400.0,7,111,800.0,,,0,53,0.0,0.0,,920.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,1,,5,105475,2,2,0,0,2,,1200.0,700.0,32,1.0,0.0,3.0,5.0,2.4,1,1,132.0833349527103,800.0,24739.091634432672,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03718810753421173,10307.954847680281,2,1,2_1,2_1_1,2_2_1,2_0_0 -3764,2,65.0,0.0,5,111,700.0,,,0,64,0.0,0.0,,772.0,123.8635443016938,,60,0,0,0,0,0,0,0,0,0,,1,,3,113623,2,1,0,0,2,,240.0,,12,1.0,3.0,5.0,1.0,1.0,3,2,10.605407626561515,700.0,20576.653185342584,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03751824910719303,20576.653185342584,5,3,5,5_1,5_2,5_0_0 -3765,2,35.0,0.0,7,111,280.0,,,37,34,0.0,0.0,,330.0,86.01635020950958,,41,0,0,0,0,0,0,0,0,2,2.0,1,,5,120670,1,1,0,0,2,,286.0,980.0,43,2.0,0.0,3.0,3.0,1.8,2,2,77.31641445877874,280.0,68095.08648065274,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004846164636177678,37830.60360036263,9,5,9,9_1,9_2,9_0_0 -3766,2,88.0,0.0,6,111,210.0,,,0,75,0.0,0.0,,258.0,82.5756962011292,,12,0,0,0,0,0,0,0,0,0,,1,,4,107577,2,1,0,0,2,,80.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,32.4196017417474,210.0,44360.98724808173,0,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005815921060484435,44360.98724808173,10,5,10,10_1,10_2,10_0_0 -3767,2,56.0,0.0,9,111,700.0,,,42,33,0.0,0.0,,806.0,182.3546624441603,,71,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,105987,2,2,0,0,2,,400.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,60.44991731047327,700.0,110296.30979587935,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007307588091493084,73530.8731972529,10,5,10,10_1,10_2,10_0_0 -3768,2,59.0,0.0,8,111,0.0,,,0,43,0.0,0.0,,2628.0,0.0,,71,0,0,0,0,0,0,0,0,2,40.0,2,2000.0,6,103603,2,3,0,0,2,,102.0,800.0,12,1.0,1.0,3.0,1.0,1.0,1,1,29.490261649088556,0.0,32213.695409000426,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08158020887183727,32213.695409000426,8,4,8,8_0,8_2,8_0_0 -3769,2,51.0,0.0,8,111,0.0,,,21,63,0.0,0.0,,288.0,495.4541772067752,,30,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,113120,2,1,0,0,2,,0.0,,42,2.0,1.0,3.0,3.0,2.0,2,2,63.087178459660024,0.0,12208.418335913128,1,7,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023590279434707713,6104.209167956564,1,1,1_0,1_1_0,1_2_0,1_0_0 -3770,2,23.0,0.0,7,111,1400.0,,,0,81,0.0,0.0,,1665.0,455.8866561104008,,50,0,0,0,0,0,0,0,0,0,,1,,5,112980,2,3,0,0,2,,1800.0,,32,1.0,3.0,3.0,4.0,2.1,2,2,114.04072891543838,1400.0,9451.125762272624,0,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17616948942171656,4500.536077272678,1,1,1_0,1_1_0,1_2_0,1_0_0 -3771,2,44.0,0.0,6,111,700.0,,,0,42,0.0,0.0,,820.0,206.439240502823,,30,0,0,0,0,0,0,0,0,0,,1,,4,114027,2,2,0,0,2,,500.0,,22,2.0,3.0,6.0,4.0,2.5,3,3,74.27489586814069,700.0,27701.232682609152,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029601570781895074,11080.49307304366,2,1,2_0,2_1_0,2_2_0,2_0_0 -3772,2,67.0,0.0,6,111,800.0,,,78,77,0.0,0.0,,811.0,18.92359704609211,,71,0,0,0,0,0,0,0,0,0,,1,,4,107370,2,3,0,0,2,,200.0,,41,0.0,5.0,3.0,2.0,1.5,3,2,50.02146066078296,800.0,5530.34591866432,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14664543808425484,3686.897279109547,1,1,1_0,1_1_0,1_2_0,1_0_0 -3773,2,43.0,0.0,6,111,360.0,,,0,56,0.0,0.0,,584.0,385.3532489386029,,20,0,0,0,0,0,0,0,0,3,60.0,1,,4,123467,1,2,0,0,2,,360.0,300.0,32,1.0,1.0,3.0,3.0,1.6,1,1,59.43046533360442,360.0,8593.0,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0679622948911905,5370.625,1,1,1_0,1_1_0,1_2_0,1_0_0 -3774,2,54.0,0.0,8,111,786.0,,,0,52,0.0,0.0,,834.0,82.5756962011292,,30,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,117380,1,2,0,0,2,,300.0,,32,2.0,0.0,4.0,3.0,2.0,2,2,34.72193268363897,786.0,27148.0,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03072049506409312,13574.0,3,2,3_0,3_1_0,3_2_0,3_0_0 -3775,0,69.0,0.0,6,111,0.0,,,75,75,0.0,0.0,,256.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,123165,2,2,0,0,1,,507.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,35.12423786898838,0.0,64222.366132129966,5,5,5,0,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003986150237338035,42814.91075475331,9,5,9,9_1,9_2,9_0_0 -3776,2,51.0,0.0,6,111,1800.0,,,31,42,0.0,0.0,,2100.0,516.0981012570575,,12,0,0,0,0,0,0,0,0,2,20.0,1,,4,125868,2,1,0,0,2,,1200.0,,43,2.0,1.0,7.0,3.0,2.0,2,2,107.6835621395406,1800.0,56768.178465674726,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03699255563166924,28384.089232837363,8,4,8,8_1,8_2,8_0_0 -3777,2,31.0,0.0,7,111,0.0,,,56,54,0.0,0.0,,644.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,114702,1,2,0,0,2,,101.0,490.0,43,2.0,0.0,1.0,2.0,1.5,2,2,84.13225416338277,0.0,47908.0,1,1,3,4,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013442431326709527,31938.666666666668,8,4,8,8_1,8_2,8_0_0 -3778,2,53.0,0.0,7,111,520.0,,,62,52,0.0,0.0,,592.0,123.8635443016938,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,118425,2,1,0,0,2,,100.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,50.770978524085685,520.0,77403.94532947827,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007648188958328777,51602.63021965218,10,5,10,10_1,10_2,10_0_0 -3779,1,48.0,300.0,7,111,1200.0,,,0,46,0.0,0.0,,1296.0,165.1513924022584,,71,0,0,0,0,0,0,0,0,0,,1,,5,115772,1,3,0,0,2,,510.0,485.0,32,1.0,2.0,4.0,2.0,1.3,1,1,35.32167603508057,1200.0,11452.330414949793,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1131647405412099,8809.484934576763,1,1,1_1,1_1_1,1_2_1,1_0_0 -3780,1,54.0,359.0,7,111,1200.0,,,0,54,0.0,0.0,,1464.0,454.1663291062106,,70,0,0,0,0,0,0,0,0,0,,1,,5,123594,2,2,0,0,2,,400.0,493.0,32,2.0,3.0,4.0,5.0,2.5999999999999996,1,1,52.584136910959735,1200.0,25684.506506137775,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05699934315071036,9878.65634851453,2,1,2_1,2_1_1,2_2_1,2_0_0 -3781,2,43.0,0.0,6,111,360.0,,,0,52,0.0,0.0,,560.0,344.06540083803833,,71,0,0,0,0,0,0,0,0,2,40.0,2,,4,125092,2,3,0,0,2,,250.0,382.0,32,1.0,0.0,3.0,2.0,1.5,2,2,64.12291209408673,360.0,42632.22378015863,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013135603783836122,28421.482520105754,8,4,8,8_0,8_2,8_0_0 -3782,2,45.0,0.0,6,111,0.0,,,52,47,0.0,0.0,,781.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,2,30.0,2,,4,130078,2,3,0,0,2,,400.0,621.0,43,3.0,1.0,4.0,5.0,2.8,1,1,109.3183334491732,0.0,89234.0,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008752269314386893,31869.285714285717,8,4,8,8_0,8_2,8_0_0 -3783,2,41.0,0.0,8,111,400.0,,,0,81,0.0,0.0,,664.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,103948,2,3,0,0,2,,300.0,600.0,32,5.0,4.0,5.0,8.0,3.8999999999999995,1,1,8.767999114141478,400.0,25214.592425712002,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02633395728906969,6465.2801091569245,1,1,1_0,1_0_0,1_2_0,1_0_0 -3784,1,50.0,400.0,7,111,1019.0,,,22,81,0.0,0.0,,1163.0,247.7270886033876,,31,0,0,0,0,0,0,0,0,0,,1,,5,131377,2,2,0,0,2,,700.0,550.0,43,2.0,4.0,5.0,4.0,2.3,1,1,71.27700981005358,1019.0,15575.619385396321,4,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07466797764013335,6772.008428433183,1,1,1_1,1_1_1,1_2_1,1_0_0 -3785,2,48.0,0.0,6,111,570.0,,,0,22,0.0,0.0,,720.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,2,,4,100008,2,2,0,0,1,,677.0,600.0,32,3.0,3.0,5.0,3.0,2.0,2,2,60.15118059037085,570.0,18024.29311272615,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0399460880655364,9012.146556363075,1,1,1_0,1_0_0,1_2_0,1_0_0 -3786,1,28.0,150.0,6,111,800.0,,,65,81,0.0,0.0,,1200.0,688.1308016760767,,31,0,0,0,0,0,0,0,0,0,,2,,4,119634,2,2,0,0,2,,400.0,200.0,43,2.0,0.0,3.0,7.0,2.9999999999999996,1,1,202.03875627882647,800.0,28824.852167805264,4,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041630742562499275,9608.28405593509,1,1,1_1,1_0_1,1_2_1,1_0_0 -3787,1,53.0,253.0,7,111,750.0,,,0,56,0.0,0.0,,838.0,151.38877636873687,,43,0,0,0,0,0,0,0,0,0,,2,,5,101060,2,2,0,0,2,,200.0,322.0,12,1.0,0.0,2.0,1.0,1.0,2,2,50.15791274255464,750.0,9801.623737094815,0,4,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08549603846029513,9801.623737094815,2,1,2_1,2_0_1,2_2_1,2_0_0 -3789,0,52.0,0.0,7,111,200.0,,,0,47,0.0,0.0,,224.0,41.2878481005646,,10,0,0,0,0,0,0,0,0,2,60.0,1,,5,119620,2,2,0,0,2,,180.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,37.082860029656906,200.0,17997.225007267,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012446363253754525,17997.225007267,4,2,4_0,4_1_0,4_2_0,4_0_0 -3790,1,26.0,280.0,5,111,170.0,,,0,52,0.0,0.0,,239.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,119645,1,3,0,0,2,,64.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,107.34299542100213,170.0,20984.0,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011389630194433854,16141.538461538461,4,2,4_1,4_0_1,4_2_1,4_0_0 -3791,2,55.0,0.0,6,112,0.0,,,63,52,0.0,0.0,,358.0,197.83760548187203,,50,0,0,0,0,0,0,0,0,2,1.0,1,,4,107084,2,2,0,0,2,,600.0,,43,3.0,0.0,5.0,3.0,2.0,1,1,146.88096156522872,0.0,52972.823517344106,1,1,0,1,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0067581823325461475,26486.411758672053,7,4,7,7_1,7_1,7_0_0 -3792,2,34.0,0.0,9,112,400.0,,,0,42,0.0,0.0,,470.0,120.42289029331342,,20,0,0,0,0,0,0,0,0,2,70.0,2,2007.0,6,107732,2,1,0,0,2,,120.0,710.0,12,1.0,2.0,3.0,1.0,1.0,2,2,86.68522270938854,400.0,40438.609183856555,0,1,2,3,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011622556004908994,40438.609183856555,9,5,9,9_0,9_1,9_0_0 -3793,1,67.0,300.0,7,112,0.0,,,0,71,0.0,0.0,,435.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,5,104687,1,1,0,0,2,,224.0,440.0,11,0.0,2.0,2.0,1.0,1.0,2,2,85.30860187512097,0.0,6706.549805302622,0,7,2,3,55.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06486196518753376,6706.549805302622,1,1,1_1,1_0_1,1_1_1,1_0_0 -3794,1,42.0,240.0,7,112,500.0,,,0,52,0.0,0.0,,600.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,128645,2,3,0,0,2,,550.0,542.0,32,1.0,0.0,4.0,5.0,2.2,1,1,124.30331717006204,500.0,37327.524508619,0,1,2,3,90.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01607392957069679,16967.056594826816,4,2,4_1,4_0_1,4_1_1,4_0_0 -3795,1,46.0,229.0,7,112,900.0,,,0,52,0.0,0.0,,992.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,2,50.0,1,,5,110091,2,2,0,0,2,,600.0,479.0,32,1.0,0.0,3.0,2.0,1.5,1,1,101.66384133568056,900.0,32650.0,0,1,2,3,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030382848392036754,21766.666666666668,6,3,6,6_1,6_1,6_0_0 -3796,2,51.0,0.0,7,112,840.0,,,0,65,0.0,0.0,,864.0,41.2878481005646,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,117234,2,1,0,0,2,,200.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,54.25396590101436,840.0,62812.35026093399,0,1,1,2,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013755256671829441,48317.192508410764,10,5,10,10_1,10_1,10_0_0 -3797,2,66.0,0.0,7,112,696.0,,,0,77,0.0,0.0,,811.0,197.83760548187203,,60,0,0,0,0,0,0,0,0,0,,1,,5,112891,2,2,0,0,2,,468.0,,11,0.0,6.0,5.0,1.0,1.0,2,2,38.27997405243374,696.0,32429.833163445903,0,5,1,2,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025007837564645228,32429.833163445903,8,4,8,8_1,8_1,8_0_0 -3798,2,68.0,0.0,7,112,2500.0,,,86,77,0.0,0.0,,2620.0,206.439240502823,,12,0,0,0,0,0,0,0,0,0,,1,,5,128849,2,1,0,0,2,,500.0,,41,2.0,0.0,4.0,4.0,2.5,1,1,15.69584203856551,2500.0,27166.485369790294,6,5,1,2,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09644236139995847,10866.594147916117,2,1,2_0,2_1_0,2_1_0,2_0_0 -3799,2,60.0,0.0,7,112,360.0,,,0,45,0.0,0.0,,439.0,135.90583333102515,,20,0,0,0,0,0,0,0,0,2,45.0,1,,5,113242,2,3,0,0,2,,310.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,69.78331949081651,360.0,46443.257765046896,0,1,1,2,92.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009452394623582813,46443.257765046896,10,5,10,10_1,10_1,10_0_0 -3800,2,52.0,0.0,7,112,2220.0,,,85,47,0.0,0.0,,2448.0,0.0,,60,0,0,0,0,0,0,0,0,0,,7,,5,126025,2,3,0,0,2,,2160.0,,42,1.0,0.0,3.0,4.0,2.3,1,1,11.322476408817927,2220.0,24823.12784512411,7,1,0,1,75.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0986177090684746,10792.664280488743,2,1,2_0,2_1_0,2_1_0,2_0_0 -3801,2,51.0,0.0,9,112,468.0,,,85,65,0.0,0.0,,606.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,133096,2,1,0,0,2,,382.0,,42,2.0,2.0,5.0,3.0,2.0,1,1,146.88096156522872,468.0,39640.0,6,1,1,2,125.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015287588294651867,19820.0,5,3,5,5_1,5_1,5_0_0 -3802,0,84.0,0.0,7,112,410.0,,,75,77,0.0,0.0,,433.0,39.567521096374406,,60,0,0,0,0,0,0,0,0,0,,1,,5,114358,2,1,0,0,2,,100.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,99.28582383637027,410.0,35076.510002807794,5,5,0,1,90.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012344443616692178,23384.340001871864,6,3,6,6_1,6_1,6_0_0 -3803,2,50.0,0.0,7,112,432.0,,,21,33,0.0,0.0,,708.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,5,130051,2,1,0,0,2,,160.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,181.0881822304678,432.0,73275.41400693203,1,1,1,2,120.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00966217672865037,29310.16560277281,8,4,8,8_1,8_1,8_0_0 -3804,1,26.0,130.0,7,112,480.0,,,52,38,0.0,0.0,,503.0,39.567521096374406,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,123282,2,2,0,0,2,,260.0,900.0,43,2.0,0.0,3.0,3.0,1.8,2,2,210.49204338286276,480.0,61200.0,1,1,2,3,75.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008218954248366012,34000.0,9,5,9,9_1,9_1,9_0_0 -3805,2,59.0,0.0,8,112,1800.0,,,42,77,0.0,0.0,,2075.0,473.0899261523027,,50,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,124206,2,1,0,0,2,,360.0,,42,1.0,0.0,4.0,4.0,2.3,1,1,218.25157183265634,1800.0,53691.33575439412,1,5,1,2,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03864683138992647,23344.059023649617,6,3,6,6_1,6_1,6_0_0 -3806,2,52.0,0.0,7,112,1900.0,,,78,81,0.0,0.0,,2038.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,5,127171,2,1,0,0,2,,0.0,,42,1.0,3.0,3.0,4.0,2.3,3,3,84.11700395971958,1900.0,6899.662344925694,5,4,0,1,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2953767732559887,2999.8531934459543,1,1,1_0,1_1_0,1_1_0,1_0_0 -3807,2,93.0,0.0,7,112,0.0,,,72,71,0.0,0.0,,448.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,7,,5,118340,2,1,0,0,2,,600.0,,41,0.0,8.0,3.0,2.0,1.5,1,1,75.18985463102507,0.0,10051.120522949297,5,5,0,1,68.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04457214486455521,6700.747015299531,1,1,1_0,1_1_0,1_1_0,1_0_0 -3808,0,39.0,0.0,9,112,0.0,,,81,85,0.0,0.0,,230.0,395.67521096374406,,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,104730,2,3,0,0,2,,546.0,,42,1.0,1.0,3.0,3.0,1.8,1,1,140.59902625022,0.0,20198.396597227184,4,7,5,0,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011387042476013872,11221.331442903991,2,1,2_0,2_1_0,2_1_0,2_0_0 -3809,2,47.0,0.0,7,112,400.0,,,52,22,0.0,0.0,,446.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,0,,1,,5,113431,2,1,0,0,2,,140.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,91.22657175427072,400.0,27257.593285906973,4,1,0,1,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016362413046591164,15143.107381059428,3,2,3_0,3_1_0,3_1_0,3_0_0 -3810,0,49.0,0.0,6,211,2400.0,,,45,34,0.0,0.0,,2475.0,129.02452531426437,,70,0,0,0,0,0,0,0,0,0,,1,,4,106270,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,68.61431506165778,2400.0,109695.27435954813,1,1,5,0,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022562503393607405,43878.10974381925,10,5,10,10_1,10_2,10_0_0 -3811,2,47.0,0.0,6,211,1000.0,,,0,65,0.0,0.0,,1000.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,4,129715,2,1,0,0,2,,300.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,60.776706753632986,1000.0,46988.810096923655,0,1,1,2,92.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021281662547685362,31325.873397949104,8,4,8,8_1,8_2,8_0_0 -3812,2,62.0,0.0,6,211,516.0,,,0,78,0.0,0.0,,516.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,4,126769,2,3,0,0,2,,600.0,300.0,31,2.0,0.0,5.0,6.0,3.3,2,2,7.560188772991673,516.0,9056.214754098362,0,5,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05697744742266472,2744.307501241928,1,1,1_0,1_1_0,1_2_0,1_0_0 -3813,2,50.0,0.0,5,211,1500.0,,,0,42,0.0,0.0,,1500.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,3,102206,2,2,0,0,2,,300.0,,32,1.0,0.0,2.0,2.0,1.3,2,2,31.05207928486083,1500.0,74667.96414931654,0,1,0,1,75.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020088936628838434,57436.89549947426,10,5,10,10_0,10_2,10_0_0 -3814,2,33.0,0.0,5,211,1000.0,,,54,48,0.0,0.0,,1000.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,3,128731,2,2,0,0,2,,240.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,46.500590506485224,1000.0,81028.81244004049,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012341289103057972,38585.148780971664,9,5,9,9_0,9_2,9_0_0 -3815,2,39.0,0.0,5,211,100.0,,,0,42,0.0,0.0,,100.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,3,106232,2,2,0,0,2,,100.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,65.81314527786792,100.0,64308.72034642032,0,1,0,1,48.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0015549990648440325,64308.72034642032,10,5,10,10_0,10_2,10_0_0 -3817,0,47.0,0.0,6,211,540.0,,,22,22,0.0,0.0,,540.0,0.0,,10,0,0,0,0,0,0,0,0,0,,7,,4,109003,2,2,0,0,2,,300.0,,43,2.0,0.0,1.0,2.0,1.5,1,1,34.73918777842146,540.0,23497.0,1,1,5,0,16.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022981657232838234,15664.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0 -3818,0,27.0,0.0,6,211,600.0,,,22,64,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,123791,2,2,0,0,2,,1000.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,7.560188772991673,600.0,13121.959520653938,6,1,5,0,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04572487813695822,6248.552152692351,1,1,1_0,1_1_0,1_2_0,1_0_0 -3819,2,39.0,0.0,5,211,1200.0,,,45,37,0.0,0.0,,1200.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,3,118107,2,2,0,0,2,,440.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,55.004935626435845,1200.0,41504.0,1,1,0,1,200.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028912875867386275,19763.809523809523,5,3,5,5_1,5_2,5_0_0 -3820,2,59.0,0.0,7,211,900.0,,,85,63,0.0,0.0,,900.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,118806,2,3,0,0,2,,800.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,40.81623983388713,900.0,24906.939860075105,6,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03613450729218913,16604.626573383404,4,2,4_0,4_1_0,4_2_0,4_0_0 -3821,2,38.0,0.0,7,211,600.0,,,0,42,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,116504,2,1,0,0,2,,240.0,700.0,12,1.0,0.0,3.0,1.0,1.0,2,2,48.03746947839463,600.0,38170.34082577996,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01571901080838043,38170.34082577996,9,5,9,9_0,9_2,9_0_0 -3822,2,39.0,0.0,5,211,240.0,,,0,38,0.0,0.0,,240.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,3,131928,2,2,0,0,2,,180.0,650.0,12,1.0,0.0,2.0,1.0,1.0,4,3,68.78668619388905,240.0,42413.0,0,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005658642397378163,42413.0,9,5,9,9_0,9_2,9_0_0 -3823,2,45.0,0.0,7,211,1200.0,,,0,52,0.0,0.0,,1200.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,121670,2,3,0,0,2,,2400.0,,32,1.0,0.0,3.0,3.0,2.0,2,2,32.43328938421035,1200.0,32878.494009982445,0,1,1,2,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036498022069856986,16439.247004991223,4,2,4_0,4_1_0,4_2_0,4_0_0 -3824,2,54.0,0.0,2,211,1800.0,,,85,38,0.0,0.0,,1800.0,0.0,,44,0,0,0,0,0,0,0,0,0,,1,,2,103885,2,1,0,0,2,,600.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,41.32870119299168,1800.0,132521.66009340968,6,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013582685266176455,88347.77339560645,10,5,10,10_1,10_2,10_0_1 -3825,2,24.0,0.0,7,211,160.0,,,0,63,0.0,0.0,,160.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,5,102824,2,2,0,0,2,,60.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,125.9936441189047,160.0,14583.09556883817,0,2,3,4,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010971607450882746,14583.09556883817,3,2,3_0,3_0_0,3_2_0,3_0_0 -3826,2,69.0,0.0,6,211,600.0,,,0,75,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,4,106447,2,1,0,0,2,,200.0,630.0,11,0.0,0.0,2.0,1.0,1.0,1,1,58.055861900660496,600.0,44061.489652657096,0,5,2,3,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013617333520266431,44061.489652657096,10,5,10,10_0,10_2,10_0_0 -3827,0,33.0,0.0,7,211,0.0,,,42,38,0.0,0.0,,393.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,5,127599,2,1,0,0,2,,245.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,87.62320392449553,0.0,94603.0,1,1,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004154202298024375,52557.22222222222,10,5,10,10_1,10_2,10_0_0 -3828,2,60.0,0.0,7,211,1400.0,,,37,21,0.0,0.0,,1400.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,123418,2,1,0,0,2,,400.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,55.93093834314648,1400.0,96207.21757373831,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01455192276948417,48103.608786869154,10,5,10,10_1,10_2,10_0_0 -3829,2,32.0,0.0,5,211,0.0,,,85,63,0.0,0.0,,550.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,3,102618,2,2,0,0,2,,558.0,600.0,42,1.0,0.0,3.0,3.0,1.8,2,2,67.4160374187625,0.0,23012.0,6,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02390057361376673,12784.444444444443,2,1,2_0,2_0_0,2_2_0,2_0_0 -3830,1,83.0,150.0,5,211,600.0,,,0,21,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,3,,3,113478,2,2,0,0,2,,180.0,350.0,11,0.0,0.0,1.0,1.0,1.0,1,1,60.85481939969568,600.0,7450.423104485695,0,5,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08053233911490966,7450.423104485695,1,1,1_1,1_0_1,1_2_1,1_0_0 -3831,2,54.0,0.0,5,211,0.0,,,34,22,0.0,0.0,,1730.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,3,118628,2,1,0,0,2,,262.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,37.64076666298087,0.0,125222.79590528943,1,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013815375926508318,50089.11836211577,10,5,10,10_1,10_2,10_0_0 -3832,2,41.0,0.0,7,211,624.0,,,85,55,0.0,0.0,,624.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,102806,1,3,0,0,2,,640.0,135.0,42,1.0,0.0,1.0,6.0,2.6999999999999997,2,2,176.0772650437513,624.0,30529.947192745974,6,1,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02043894789795983,11307.387849165178,2,1,2_0,2_1_0,2_2_0,2_0_0 -3833,1,27.0,200.0,7,211,720.0,,,67,85,0.0,0.0,,720.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,131509,2,3,0,0,2,,240.0,330.0,42,1.0,0.0,1.0,5.0,2.4000000000000004,3,3,160.63397029989346,720.0,12546.536585365855,4,6,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05738635480008086,5227.723577235772,1,1,1_1,1_0_1,1_2_1,1_0_0 -3834,1,57.0,150.0,7,211,1800.0,,,0,63,0.0,0.0,,1800.0,0.0,,10,0,0,0,0,0,0,0,0,1,30.0,2,,5,110979,1,3,0,0,2,,348.0,300.0,32,1.0,0.0,3.0,10.0,4.3,3,2,131.59765686282304,1800.0,35382.534632436065,0,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050872556720396575,8228.496426147922,1,1,1_1,1_0_1,1_2_1,1_0_0 -3835,2,44.0,0.0,7,211,200.0,,,0,69,0.0,0.0,,200.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,103124,2,3,0,0,2,,80.0,280.0,12,1.0,0.0,1.0,1.0,1.0,3,2,58.91759720654866,200.0,11493.94843888116,0,4,3,4,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017400460865428097,11493.94843888116,2,1,2_0,2_1_0,2_2_0,2_0_0 -3836,1,42.0,129.0,7,211,600.0,,,85,68,0.0,0.0,,600.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,109538,2,2,0,0,2,,140.0,280.0,42,1.0,0.0,2.0,7.0,3.1999999999999993,2,2,119.09349119056058,600.0,23005.43483731066,6,1,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026080793701273943,7189.198386659583,1,1,1_1,1_1_1,1_2_1,1_0_0 -3837,2,38.0,0.0,7,211,450.0,,,0,53,0.0,0.0,,450.0,0.0,,44,0,0,0,0,0,0,0,0,0,,1,,5,118829,2,3,0,0,2,,1200.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,50.727760929570884,450.0,31002.7604741955,0,1,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014514836521559042,31002.7604741955,8,4,8,8_1,8_2,8_0_0 -3838,2,45.0,0.0,5,211,600.0,,,0,56,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,113990,2,2,0,0,2,,160.0,,31,0.0,0.0,2.0,5.0,2.4,1,1,55.48979611291639,600.0,21067.470792041622,0,6,0,1,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02847992556499255,8778.112830017342,1,1,1_0,1_1_0,1_2_0,1_0_0 -3839,1,34.0,200.0,7,211,0.0,,,0,85,0.0,0.0,,241.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,121697,2,2,0,0,2,,704.0,400.0,31,0.0,0.0,4.0,7.0,2.8,1,1,7.93378069410927,0.0,5616.515527950311,0,6,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042909166510922206,2005.8984028393968,1,1,1_1,1_1_1,1_2_1,1_0_0 -3840,2,69.0,0.0,7,211,0.0,,,81,72,0.0,0.0,,341.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,116759,2,2,0,0,2,,0.0,,42,1.0,0.0,1.0,2.0,1.5,5,3,42.45452822950569,0.0,24886.287295942857,4,5,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013702325137731263,16590.858197295238,4,2,4_0,4_1_0,4_2_0,4_0_0 -3841,2,53.0,0.0,9,211,0.0,,,0,62,0.0,155.27587572291867,,150.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2011.0,6,113113,2,2,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,100.86414807063412,0.0,91102.2253748116,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016465020407884872,91102.2253748116,10,5,10,10_1,10_2,10_0_0 -3842,1,59.0,200.0,8,211,252.0,,,0,68,0.0,0.0,,322.0,120.42289029331342,,41,0,0,0,0,0,0,0,0,2,5.0,8,1999.0,6,115182,1,1,0,0,2,,400.0,42.0,22,2.0,0.0,3.0,3.0,1.8,2,2,30.035515030531684,252.0,6912.536514233899,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04658203241848431,3840.298063463277,1,1,1_1,1_0_1,1_2_1,1_0_0 -3844,2,48.0,0.0,7,211,900.0,,,22,43,0.0,0.0,,900.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,100914,1,1,0,0,2,,400.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,65.04077345441931,900.0,114502.8344984618,1,1,1,2,140.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007860067429266045,49783.84108628774,10,5,10,10_1,10_2,10_0_0 -3845,1,76.0,75.0,7,211,402.0,,,0,86,0.0,0.0,,427.0,43.00817510475479,,71,0,0,0,0,0,0,0,0,0,,2,,5,102651,2,2,0,0,2,,133.0,460.0,11,0.0,0.0,2.0,1.0,1.0,1,1,59.41431586668638,402.0,17209.811024198432,0,5,2,3,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024811428748380927,17209.811024198432,4,2,4_1,4_0_1,4_2_1,4_0_0 -3846,1,46.0,300.0,7,211,420.0,,,0,56,0.0,0.0,,570.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,0,,2,,5,117592,2,2,0,0,2,,250.0,520.0,32,1.0,0.0,2.0,2.0,1.5,3,2,100.97861475222147,420.0,10684.862325806218,0,4,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05334649924532285,7123.241550537478,1,1,1_1,1_0_1,1_2_1,1_0_0 -3847,1,57.0,253.0,7,211,660.0,,,0,52,0.0,0.0,,760.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,104332,2,2,0,0,2,,400.0,446.0,22,1.0,0.0,3.0,4.0,1.9,1,1,98.21118898162572,660.0,11102.67277797386,0,1,2,3,38.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06845198585945296,5843.511988407295,1,1,1_1,1_0_1,1_2_1,1_0_0 -3848,2,49.0,0.0,8,211,1200.0,,,33,46,0.0,0.0,,1200.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,117262,2,2,0,0,2,,360.0,,43,3.0,0.0,4.0,4.0,2.3,4,2,80.84448878485996,1200.0,58378.69480008348,1,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020555444141212353,25382.041217427603,7,4,7,7_1,7_2,7_0_0 -3849,2,49.0,0.0,7,211,1080.0,,,0,52,0.0,0.0,,1080.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,5,116223,2,2,0,0,2,,572.0,,32,1.0,0.0,4.0,4.0,2.3,1,1,48.21116788020237,1080.0,34388.984964096744,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03140540499021871,14951.732593085542,3,2,3_0,3_1_0,3_2_0,3_0_0 -3850,2,42.0,0.0,2,211,480.0,,,34,38,0.0,0.0,,555.0,129.02452531426437,,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,110307,2,1,0,0,2,,230.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,42.71549644761216,480.0,92950.65956376445,1,1,1,2,38.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005970909755828771,51639.25531320247,10,5,10,10_0,10_2,10_0_1 -3851,2,52.0,0.0,2,211,0.0,,,81,53,0.0,0.0,,707.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,,2,111292,2,2,0,0,2,,131.0,180.0,43,2.0,2.0,4.0,2.0,1.5,6,6,93.44721156807083,0.0,74277.13281021948,4,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009518407257404621,49518.088540146324,10,5,10,10_1,10_2,10_0_1 -3852,2,65.0,0.0,7,211,100.0,,,85,86,0.0,0.0,,125.0,43.00817510475479,,50,0,0,0,0,0,0,0,0,0,,1,,5,100704,2,1,0,0,2,,600.0,,41,3.0,4.0,1.0,8.0,4.3,3,3,7.269211664376101,100.0,491.16101350144726,6,6,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.25449902692578363,114.22349151196448,1,1,1_0,1_1_0,1_2_0,1_0_0 -3853,2,41.0,0.0,7,211,1440.0,,,90,46,0.0,0.0,,1440.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,104312,2,1,0,0,2,,450.0,,43,4.0,1.0,6.0,7.0,3.6,1,1,107.98446237448567,1440.0,129418.06158760846,4,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011126731325868331,35949.46155211346,9,5,9,9_1,9_2,9_0_0 -3854,1,42.0,435.0,7,211,700.0,,,0,81,0.0,0.0,,778.0,134.18550632683494,,41,0,0,0,0,0,0,0,0,0,,1,,5,118419,1,1,0,0,2,,610.0,700.0,32,1.0,3.0,5.0,5.0,2.5999999999999996,4,4,35.57972797589352,700.0,8069.158678610697,0,4,2,3,44.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09641649532339494,3103.5225686964222,1,1,1_1,1_1_1,1_2_1,1_0_0 -3855,2,35.0,0.0,6,211,0.0,,,21,48,0.0,0.0,,533.0,0.0,,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,131523,2,1,0,0,2,,121.0,1000.0,43,2.0,1.0,4.0,4.0,2.1,1,1,75.48465870943663,0.0,34074.708613563256,1,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01564210001161513,16226.051720744406,4,2,4_0,4_1_0,4_2_0,4_0_0 -3857,1,36.0,200.0,6,211,600.0,,,0,52,0.0,0.0,,600.0,0.0,,41,0,0,0,0,0,0,0,0,1,1.0,8,,4,112261,1,1,0,0,2,,250.0,200.0,32,1.0,0.0,4.0,4.0,1.9,4,3,63.465323898601255,600.0,24952.0,0,1,2,3,55.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02404616864379609,13132.631578947368,2,1,2_1,2_0_1,2_2_1,2_0_0 -3858,1,47.0,200.0,9,211,90.0,,,0,56,0.0,0.0,,140.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,5.0,2,2010.0,6,122681,2,1,0,0,2,,90.0,289.0,22,2.0,0.0,3.0,2.0,1.5,2,2,84.29219833632463,90.0,23095.994413407825,0,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.006061657164184555,15397.32960893855,3,2,3_1,3_0_1,3_2_1,3_0_0 -3859,2,31.0,0.0,7,211,680.0,,,55,67,0.0,0.0,,680.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,114187,1,2,0,0,2,,120.0,85.0,43,2.0,0.0,2.0,4.0,2.1,2,2,151.74835687879977,680.0,22492.0,1,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03023297172327939,10710.47619047619,2,1,2_0,2_0_0,2_2_0,2_0_0 -3860,2,64.0,0.0,6,211,140.0,,,63,21,0.0,0.0,,140.0,0.0,,71,0,0,0,0,0,0,0,0,2,4.0,2,,4,105712,2,1,0,0,2,,350.0,545.0,43,2.0,0.0,3.0,3.0,1.8,4,4,63.00632988598311,140.0,57838.0,1,1,3,4,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0024205539610636607,32132.222222222223,8,4,8,8_0,8_2,8_0_0 -3861,1,32.0,400.0,7,211,0.0,,,0,81,0.0,0.0,,231.0,120.42289029331342,,10,0,0,0,0,0,0,0,0,0,,8,,5,124943,1,1,0,0,2,,364.0,280.0,32,1.0,0.0,1.0,3.0,1.8,3,2,40.90727628878516,0.0,16897.236631276002,0,4,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013670874418153659,9387.353684042224,1,1,1_1,1_0_1,1_2_1,1_0_0 -3862,1,48.0,400.0,6,211,1800.0,,,81,68,0.0,0.0,,1800.0,0.0,,71,0,0,0,0,0,0,0,0,2,1.0,8,,4,123691,1,1,0,0,1,,800.0,440.0,43,2.0,0.0,3.0,8.0,3.2999999999999994,2,2,7.7946231555240395,1800.0,19578.74956217163,4,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09193641270522224,5932.954412779283,1,1,1_1,1_0_1,1_2_1,1_0_0 -3863,2,42.0,0.0,7,211,1392.0,,,46,37,0.0,0.0,,1392.0,0.0,,20,0,0,0,0,0,0,0,0,2,2.0,1,,5,114526,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,81.93164320017853,1392.0,105609.7733315241,1,1,1,2,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013180598311013451,70406.5155543494,10,5,10,10_1,10_2,10_0_0 -3864,2,40.0,0.0,7,211,300.0,,,0,46,0.0,0.0,,325.0,43.00817510475479,,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,100004,2,2,0,0,2,,450.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,71.36598278712341,300.0,46001.62718404424,0,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007064967478209704,35385.867064649414,9,5,9,9_1,9_2,9_0_0 -3865,2,32.0,0.0,7,211,720.0,,,0,38,0.0,0.0,,795.0,129.02452531426437,,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,115931,2,2,0,0,2,,160.0,400.0,12,1.0,0.0,3.0,1.0,1.0,2,2,138.01685113303566,720.0,67187.56842789291,0,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011832546088540329,67187.56842789291,10,5,10,10_1,10_2,10_0_0 -3867,2,34.0,0.0,7,211,900.0,,,54,48,0.0,0.0,,1025.0,215.04087552377396,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,121887,2,2,0,0,2,,500.0,1500.0,43,2.0,0.0,4.0,5.0,2.4,2,2,111.14820791810952,900.0,83148.08644886674,4,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012327403356784889,34645.03602036114,9,5,9,9_1,9_2,9_0_0 -3868,2,40.0,0.0,6,211,540.0,,,0,45,0.0,0.0,,540.0,0.0,,31,0,0,0,0,0,0,0,0,1,20.0,1,,4,107489,1,3,0,0,2,,154.0,223.0,12,1.0,0.0,4.0,1.0,1.0,2,2,75.21904210178734,540.0,36511.83161721371,0,1,3,4,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01478972640050777,36511.83161721371,9,5,9,9_1,9_2,9_0_0 -3869,1,47.0,577.0,7,211,60.0,,,0,85,0.0,0.0,,60.0,0.0,,20,0,0,0,0,0,0,0,0,0,,8,,5,129686,1,2,0,0,2,,130.0,130.0,31,0.0,0.0,4.0,5.0,2.8,2,2,99.96953098418861,60.0,16185.698579691605,0,6,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.003706976236125065,5780.606635604145,1,1,1_1,1_0_1,1_2_1,1_0_0 -3870,1,46.0,180.0,7,211,200.0,,,81,63,0.0,0.0,,200.0,0.0,,10,0,0,0,0,0,0,0,0,3,2.0,8,,5,108745,2,2,0,0,2,,200.0,100.0,43,2.0,0.0,2.0,8.0,3.8999999999999995,2,2,7.269211664376101,200.0,12055.067854987574,4,1,3,4,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016590532911621356,3091.043039740404,1,1,1_1,1_0_1,1_2_1,1_0_0 -3871,2,45.0,0.0,7,211,1200.0,,,0,21,0.0,0.0,,1200.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,112859,2,2,0,0,2,,1200.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,90.76991765010659,1200.0,19091.602438654478,0,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0628548600808059,19091.602438654478,5,3,5,5_1,5_2,5_0_0 -3872,2,57.0,0.0,6,211,1440.0,,,85,48,0.0,0.0,,1440.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,4,122116,1,2,0,0,2,,900.0,,42,3.0,0.0,5.0,7.0,3.6,3,2,7.6284247518067305,1440.0,61563.59551634804,6,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02339044670673291,17100.99875454112,4,2,4_0,4_1_0,4_2_0,4_0_0 -3873,2,70.0,0.0,6,211,600.0,,,0,77,0.0,0.0,,600.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,4,107250,2,2,0,0,2,,400.0,,11,0.0,6.0,3.0,1.0,1.0,2,2,43.66119205555409,600.0,7339.284046632265,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08175184339340545,7339.284046632265,1,1,1_0,1_1_0,1_2_0,1_0_0 -3874,2,35.0,0.0,6,211,1200.0,,,54,47,0.0,0.0,,1200.0,0.0,,20,0,0,0,0,0,0,0,0,2,5.0,8,,4,120746,1,2,0,0,2,,175.0,700.0,43,2.0,0.0,3.0,3.0,1.8,1,1,51.433462995160575,1200.0,59711.070402516605,1,1,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020096775889474332,33172.816890287,8,4,8,8_0,8_2,8_0_0 -3875,2,46.0,0.0,9,211,1200.0,,,81,68,0.0,0.0,,1200.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,119203,2,2,0,0,2,,109.0,,43,3.0,0.0,4.0,5.0,3.0,3,2,67.7368070853332,1200.0,23978.542821527655,4,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05004474245710436,7992.847607175885,1,1,1_0,1_1_0,1_2_0,1_0_0 -3876,2,44.0,0.0,7,211,3000.0,,,22,22,0.0,0.0,,3070.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,1,10.0,1,,5,125251,1,2,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,47.83832380255935,3000.0,29315.00927303279,1,1,0,1,109.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10472451062207673,12745.656205666432,2,1,2_0,2_1_0,2_2_0,2_0_0 -3877,2,44.0,0.0,9,211,1600.0,,,34,67,0.0,0.0,,1600.0,0.0,,12,0,0,0,0,0,0,0,0,1,5.0,2,2004.0,6,132520,1,2,0,0,2,,240.0,464.0,43,2.0,0.0,4.0,3.0,2.0,2,2,44.50920277086137,1600.0,31149.396428639382,1,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.051365361241122724,15574.698214319691,3,2,3_0,3_0_0,3_2_0,3_0_0 -3878,2,33.0,0.0,6,211,600.0,,,0,42,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,2,5.0,8,,4,125470,1,2,0,0,2,,300.0,,32,1.0,0.0,3.0,3.0,1.6,3,3,38.94582054059674,600.0,39121.48825579738,0,1,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015336839848138611,24450.930159873362,7,4,7,7_0,7_2,7_0_0 -3879,1,41.0,180.0,6,211,1100.0,,,0,52,0.0,0.0,,1100.0,0.0,,42,0,0,0,0,0,0,0,0,1,40.0,8,,4,108321,1,2,0,0,1,,200.0,480.0,32,1.0,0.0,3.0,3.0,1.8,3,3,47.78756352735247,1100.0,30053.606656025913,0,1,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0366012642871748,16696.44814223662,4,2,4_1,4_0_1,4_2_1,4_0_0 -3880,1,38.0,16.0,8,211,336.0,,,0,52,0.0,0.0,,338.0,3.4406540083803834,,71,0,0,0,0,0,0,0,0,2,10.0,8,2003.0,6,133168,1,1,0,0,2,,170.0,538.0,32,1.0,0.0,3.0,2.0,1.5,3,3,62.40237272555729,336.0,32924.19281197892,0,1,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010266007185968862,21949.461874652614,6,3,6,6_0,6_2,6_0_0 -3881,1,50.0,200.0,6,211,50.0,,,0,81,0.0,0.0,,50.0,0.0,,50,0,0,0,0,0,0,0,0,0,,8,,4,116751,2,1,0,0,2,,140.0,200.0,32,1.0,1.0,3.0,3.0,1.8,1,1,28.82407282394668,50.0,10166.035822398462,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.004918337971014896,5647.7976791102565,1,1,1_1,1_0_1,1_2_1,1_0_0 -3882,2,49.0,0.0,5,211,720.0,,,0,69,0.0,0.0,,820.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,2,25.0,1,,3,113841,2,2,0,0,2,,240.0,600.0,12,1.0,0.0,3.0,1.0,1.0,2,2,8.289495526241517,720.0,26174.076933668934,0,1,2,3,25.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03132870748710897,26174.076933668934,7,4,7,7_1,7_2,7_0_0 -3883,2,53.0,0.0,7,211,0.0,,,81,47,0.0,0.0,,502.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,117599,2,2,0,0,2,,591.0,1500.0,43,2.0,0.0,5.0,2.0,1.5,1,1,44.957436233579834,0.0,76954.10449453305,4,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006523368744231998,51302.7363296887,10,5,10,10_1,10_2,10_0_0 -3884,0,33.0,0.0,5,211,0.0,,,56,53,0.0,0.0,,890.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,3,117559,2,2,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,46.61523926037524,0.0,38645.947931518735,1,1,5,0,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023029581305059325,18402.832348342254,4,2,4_0,4_0_0,4_2_0,4_0_0 -3885,0,30.0,0.0,6,211,0.0,,,85,53,0.0,0.0,,907.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,2,,4,114135,2,2,0,0,2,,0.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,51.91419849447626,0.0,41454.40422696944,6,1,5,0,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021879460503980014,19740.192489033067,5,3,5,5_0,5_2,5_0_0 -3886,2,54.0,0.0,5,211,900.0,,,0,68,0.0,0.0,,1200.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,,3,113649,1,3,0,0,2,,1000.0,,22,1.0,2.0,3.0,4.0,2.3,2,2,43.59484970302702,900.0,13462.745923306193,0,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08913486199888879,5853.367792741823,1,1,1_0,1_1_0,1_2_0,1_0_0 -3887,2,42.0,0.0,6,211,480.0,,,85,63,0.0,0.0,,600.0,206.439240502823,,20,0,0,0,0,0,0,0,0,1,10.0,2,,4,120037,2,1,0,0,2,,400.0,200.0,42,1.0,1.0,3.0,3.0,1.8,2,2,57.37852854121839,480.0,23991.0,6,1,3,4,66.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025009378516943855,13328.333333333332,3,2,3_0,3_0_0,3_2_0,3_0_0 -3888,1,54.0,350.0,5,211,800.0,,,85,53,0.0,0.0,,1040.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,2,,3,108975,2,1,0,0,2,,300.0,600.0,42,1.0,0.0,3.0,3.0,2.0,2,2,59.46949127260768,800.0,35934.815826455866,6,4,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028941292061230854,17967.407913227933,4,2,4_1,4_0_1,4_2_1,4_0_0 -3889,2,49.0,0.0,5,211,1200.0,,,56,62,0.0,0.0,,1200.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,8,,3,102483,1,2,0,0,2,,500.0,500.0,43,2.0,0.0,3.0,4.0,2.1,2,2,33.834089502055924,1200.0,47035.5609130882,1,1,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025512611664551998,22397.88614908962,6,3,6,6_0,6_2,6_0_0 -3890,1,70.0,250.0,7,211,1200.0,,,85,78,0.0,0.0,,1200.0,0.0,,30,0,0,0,0,0,0,0,0,0,,3,,5,108280,1,2,0,0,2,,200.0,600.0,41,0.0,0.0,3.0,4.0,2.1,1,1,46.587856323002455,1200.0,23596.89867286149,6,5,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05085414047991423,11236.618415648329,2,1,2_1,2_0_1,2_2_1,2_0_0 -3891,2,56.0,0.0,7,211,780.0,,,85,68,0.0,0.0,,1060.0,481.69156117325366,,31,0,0,0,0,0,0,0,0,0,,1,,5,123874,2,2,0,0,2,,500.0,,42,1.0,0.0,5.0,6.0,3.3,2,2,74.09632907046011,780.0,45887.99043995585,6,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02309972587243722,13905.451648471471,3,2,3_0,3_1_0,3_2_0,3_0_0 -3892,2,33.0,0.0,5,211,200.0,,,85,65,0.0,0.0,,330.0,223.64251054472493,,50,0,0,0,0,0,0,0,0,0,,3,,3,131666,1,3,0,0,2,,0.0,300.0,42,1.0,0.0,1.0,6.0,2.6999999999999997,2,2,72.09019801624005,200.0,18572.831250000003,6,1,2,3,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01776788878109254,6878.8263888888905,1,1,1_0,1_0_0,1_2_0,1_0_0 -3893,2,49.0,0.0,7,211,700.0,,,0,53,0.0,0.0,,820.0,206.439240502823,,41,0,0,0,0,0,0,0,0,2,7.0,1,,5,101035,2,1,0,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,5,4,52.2099215827637,700.0,49242.791592491434,0,1,0,1,75.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016652183466483936,49242.791592491434,10,5,10,10_1,10_2,10_0_0 -3894,2,37.0,0.0,7,211,1200.0,,,85,53,0.0,0.0,,1202.0,3.4406540083803834,,42,0,0,0,0,0,0,0,0,0,,2,,5,104282,2,1,0,0,2,,960.0,189.0,42,1.0,1.0,5.0,5.0,2.8,4,3,52.00666966506478,1200.0,34826.12621493012,6,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03451431814672219,12437.9022196179,2,1,2_0,2_0_0,2_2_0,2_0_0 -3895,2,25.0,0.0,9,211,1500.0,,,67,55,0.0,0.0,,2100.0,1032.196202514115,,71,0,0,0,0,0,0,0,0,1,5.0,3,2011.0,6,100398,1,2,0,0,2,,0.0,600.0,43,2.0,0.0,2.0,2.0,1.5,5,4,185.25289149457043,1500.0,31771.6941291994,1,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06609656984170761,21181.129419466266,5,3,5,5_0,5_2,5_0_0 -3896,2,28.0,0.0,7,211,0.0,,,0,34,0.0,0.0,,587.0,0.0,,50,0,0,0,0,0,0,0,0,1,10.0,2,,5,130249,1,1,0,0,2,,0.0,610.0,12,1.0,0.0,1.0,1.0,1.0,3,3,114.92312290228244,0.0,31406.27166172525,0,1,2,3,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01869053437232333,31406.27166172525,8,4,8,8_0,8_2,8_0_0 -3897,2,46.0,0.0,7,211,1200.0,,,85,67,0.0,0.0,,1320.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,2,,5,130552,1,2,0,0,2,,900.0,580.0,42,1.0,1.0,2.0,3.0,2.0,3,3,63.82934250760583,1200.0,25249.66197932652,6,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.052277927565159754,12624.83098966326,2,1,2_0,2_0_0,2_2_0,2_0_0 -3898,2,54.0,0.0,7,211,220.0,,,22,21,0.0,0.0,,570.0,602.1144514665671,,71,0,0,0,0,0,0,0,0,0,,1,,5,102717,1,2,0,0,2,,1400.0,,43,2.0,2.0,4.0,4.0,2.5,2,1,36.927517815720414,220.0,29639.385469970322,1,1,0,1,52.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019231167953111097,11855.754187988128,2,1,2_0,2_1_0,2_2_0,2_0_0 -3899,1,58.0,277.0,6,211,950.0,,,0,52,0.0,0.0,,1040.0,154.82943037711726,,50,0,0,0,0,0,0,0,0,1,10.0,1,,4,124779,2,2,0,0,2,,630.0,668.0,32,1.0,2.0,6.0,2.0,1.5,4,4,42.25854000776042,950.0,30885.04740829912,0,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0336732525047231,20590.031605532746,5,3,5,5_1,5_2,5_0_0 -3900,2,37.0,0.0,7,211,500.0,,,67,68,0.0,0.0,,700.0,344.06540083803833,,71,0,0,0,0,0,0,0,0,0,,1,,5,111530,1,1,0,0,2,,1200.0,600.0,43,3.0,0.0,5.0,6.0,3.1,4,4,97.99730643201204,500.0,3176.729554377653,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22035240583680585,1024.7514691540816,1,1,1_0,1_1_0,1_2_0,1_0_0 -3901,1,29.0,388.0,7,211,450.0,,,21,56,0.0,0.0,,570.0,206.439240502823,,60,0,0,0,0,0,0,0,0,0,,1,,5,124277,2,1,0,0,2,,400.0,563.0,42,1.0,0.0,5.0,4.0,2.1,3,2,155.9978847918949,450.0,20282.109168031835,7,1,2,3,66.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028103586036230397,9658.147222872301,1,1,1_1,1_1_1,1_2_1,1_0_0 -3902,2,43.0,0.0,8,211,0.0,,,42,42,0.0,0.0,,726.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,125990,2,1,0,0,2,,439.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,67.21898805312762,0.0,81910.23256388817,1,1,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008863361478478724,39004.872649470555,9,5,9,9_1,9_2,9_0_0 -3903,2,35.0,0.0,5,211,0.0,,,0,54,0.0,0.0,,901.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,128183,2,1,0,0,2,,1181.0,1200.0,32,1.0,0.0,5.0,3.0,1.6,3,3,60.969690466659465,0.0,43315.98536454463,0,1,2,3,54.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020800634971529338,27072.49085284039,7,4,7,7_1,7_2,7_0_0 -3904,1,76.0,20.0,5,211,600.0,,,0,78,0.0,0.0,,900.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,1,,3,116079,2,1,0,0,2,,900.0,,21,0.0,3.0,5.0,3.0,2.0,1,1,51.54492009355126,600.0,32922.02499889489,0,5,1,2,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027337322052036917,16461.012499447446,4,2,4_1,4_1_1,4_2_1,4_0_0 -3905,2,42.0,0.0,7,211,800.0,,,0,52,0.0,0.0,,1040.0,412.878481005646,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,118232,2,2,0,0,2,,1800.0,,32,1.0,1.0,4.0,6.0,3.0999999999999996,1,1,7.269211664376101,800.0,47765.43645952128,0,1,1,2,83.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021773065988444296,15408.205309522997,3,2,3_0,3_1_0,3_2_0,3_0_0 -3906,1,36.0,104.0,5,211,1200.0,,,85,68,0.0,0.0,,1330.0,223.64251054472493,,30,0,0,0,0,0,0,0,0,2,5.0,1,,3,117496,1,1,0,0,2,,700.0,800.0,42,1.0,3.0,4.0,5.0,2.4,2,2,120.58895457998402,1200.0,27412.01431221649,6,1,2,3,76.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.048518871501072786,11421.672630090205,2,1,2_1,2_1_1,2_2_1,2_0_0 -3907,2,55.0,0.0,7,211,360.0,,,0,68,0.0,0.0,,400.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,115096,2,1,0,0,2,,160.0,580.0,12,1.0,2.0,3.0,1.0,1.0,1,1,38.06921608911572,360.0,12232.50274397355,0,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03269976785388939,12232.50274397355,2,1,2_0,2_0_0,2_2_0,2_0_0 -3908,1,29.0,400.0,5,211,180.0,,,0,63,0.0,0.0,,220.0,68.81308016760767,,31,0,0,0,0,0,0,0,0,2,10.0,2,,3,126000,2,1,0,0,2,,480.0,650.0,32,1.0,0.0,2.0,3.0,1.6,3,3,115.2458367081629,180.0,31421.7560253536,0,1,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.007001518305421451,19638.597515846,5,3,5,5_0,5_2,5_0_0 -3909,1,32.0,180.0,5,211,800.0,,,85,43,0.0,0.0,,1050.0,430.0817510475479,,44,0,0,0,0,0,0,0,0,0,,2,,3,124866,2,1,0,0,2,,600.0,500.0,42,1.0,0.0,2.0,6.0,3.1,1,1,7.582084356783388,800.0,32972.067747403824,6,1,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03184513655752377,10636.150886259298,2,1,2_1,2_0_1,2_2_1,2_0_0 -3910,2,33.0,0.0,7,211,0.0,,,0,68,0.0,0.0,,1396.0,0.0,,71,0,0,0,0,0,0,0,0,1,10.0,2,,5,124353,2,1,0,0,2,,374.0,560.0,22,2.0,2.0,4.0,2.0,1.5,3,3,70.26053548049039,0.0,19425.460595446584,0,1,3,4,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07186444785392779,12950.307063631057,2,1,2_0,2_0_0,2_2_0,2_0_0 -3911,2,29.0,0.0,5,211,1800.0,,,0,67,0.0,0.0,,2040.0,412.878481005646,,42,0,0,0,0,0,0,0,0,0,,1,,3,119146,2,1,0,0,2,,600.0,,32,1.0,3.0,5.0,4.0,2.1,2,2,150.78819221345245,1800.0,30910.07047620091,0,4,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06599790840239883,14719.081179143292,3,2,3_0,3_1_0,3_2_0,3_0_0 -3912,2,45.0,0.0,6,211,400.0,,,0,52,0.0,0.0,,446.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,0,,1,,4,106655,1,2,0,0,1,,400.0,,22,1.0,5.0,5.0,2.0,1.5,2,2,30.34109799076782,400.0,28269.140343090046,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0157769212146919,18846.093562060032,5,3,5,5_1,5_2,5_0_0 -3913,0,28.0,0.0,6,211,315.0,,,43,53,0.0,0.0,,369.0,92.89765822627035,,50,0,0,0,0,0,0,0,0,0,,1,,4,123267,1,1,0,0,2,,600.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,100.10047758267427,315.0,66635.84557179574,1,1,0,1,106.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005537560104980236,44423.89704786383,10,5,10,10_1,10_2,10_0_0 -3914,2,36.0,0.0,5,211,2400.0,,,84,21,0.0,62.110350289167464,,2541.0,139.3464873394055,,10,0,0,0,0,0,0,0,0,0,,1,,3,116664,1,1,0,0,2,,1200.0,760.0,42,1.0,1.0,6.0,5.0,2.4,2,2,103.93065794552652,2400.0,110902.0,3,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02291212061098988,46209.16666666667,10,5,10,10_1,10_2,10_0_0 -3915,0,55.0,0.0,6,211,700.0,,,0,81,0.0,0.0,,760.0,103.2196202514115,,20,0,0,0,0,0,0,0,0,0,,1,,4,131379,2,1,0,0,2,,900.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,57.79206803667309,700.0,2007.41141687641,0,4,5,0,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.37859702979202037,2007.41141687641,1,1,1_0,1_1_0,1_2_0,1_0_0 -3916,1,73.0,64.0,5,211,1200.0,,,0,78,0.0,0.0,,1480.0,481.69156117325366,,71,0,0,0,0,0,0,0,0,0,,1,,3,101532,1,2,0,0,2,,1200.0,,21,0.0,7.0,5.0,2.0,1.5,1,1,33.3782073906261,1200.0,10675.473380419882,0,5,1,2,118.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13863553842160295,7116.982253613255,1,1,1_1,1_1_1,1_2_1,1_0_0 -3917,1,74.0,358.0,5,211,600.0,,,22,86,0.0,0.0,,950.0,602.1144514665671,,43,0,0,0,0,0,0,0,0,1,2.0,2,,3,132685,2,2,0,0,2,,700.0,436.0,42,2.0,0.0,4.0,7.0,3.6,3,2,86.98299600443805,600.0,5239.875776397515,1,5,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.18130200801308646,1455.5210489993099,1,1,1_1,1_0_1,1_2_1,1_0_0 -3918,1,49.0,450.0,6,211,900.0,,,85,81,0.0,0.0,,1200.0,516.0981012570575,,42,0,0,0,0,0,0,0,0,0,,2,,4,127191,2,2,0,0,2,,1000.0,480.0,42,1.0,0.0,4.0,10.0,4.499999999999999,1,1,7.253920819854411,900.0,7885.321315290212,6,4,2,3,48.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15218149673534706,1752.2936256200474,1,1,1_1,1_0_1,1_2_1,1_0_0 -3919,2,58.0,0.0,6,211,500.0,,,0,52,0.0,0.0,,650.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,1,5.0,2,,4,106472,2,2,0,0,2,,300.0,496.0,32,2.0,0.0,3.0,2.0,1.5,1,1,41.48161307231833,500.0,12550.414634146342,0,1,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.051791117580412264,8366.943089430895,1,1,1_0,1_0_0,1_2_0,1_0_0 -3920,1,43.0,200.0,6,211,480.0,,,0,81,0.0,0.0,,780.0,516.0981012570575,,30,0,0,0,0,0,0,0,0,0,,2,,4,110889,2,2,0,0,2,,500.0,450.0,32,1.0,0.0,3.0,7.0,3.1999999999999993,1,1,136.47444156188607,480.0,22184.559459578042,0,4,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0351595893270371,6932.67483111814,1,1,1_1,1_0_1,1_2_1,1_0_0 -3921,1,57.0,200.0,5,211,1800.0,,,0,52,0.0,0.0,,2100.0,516.0981012570575,,10,0,0,0,0,0,0,0,0,0,,2,,3,104307,2,2,0,0,2,,600.0,500.0,22,3.0,0.0,3.0,4.0,2.3,4,4,7.253920819854411,1800.0,9456.0,0,4,2,3,42.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.22208121827411167,4111.304347826087,1,1,1_1,1_0_1,1_2_1,1_0_0 -3922,2,75.0,0.0,5,211,600.0,,,0,86,0.0,0.0,,625.0,43.00817510475479,,50,0,0,0,0,0,0,0,0,0,,1,,3,114749,2,2,0,0,2,,600.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,43.23707715105118,600.0,13900.036557195055,0,5,0,1,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04496391052126278,13900.036557195055,3,2,3_0,3_1_0,3_2_0,3_0_0 -3923,2,53.0,0.0,6,211,900.0,,,56,63,0.0,0.0,,975.0,129.02452531426437,,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,116009,2,2,0,0,2,,400.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,45.709578270432246,900.0,87767.83929412925,1,1,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011108852716911049,48759.910718960695,10,5,10,10_1,10_2,10_0_0 -3925,1,47.0,300.0,5,211,480.0,,,0,62,0.0,0.0,,1080.0,1032.196202514115,,50,0,0,0,0,0,0,0,0,2,6.0,1,,3,130261,2,2,0,0,2,,1200.0,500.0,32,2.0,0.0,5.0,6.0,2.9,2,2,72.79753428801938,480.0,30889.05269648609,0,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03496384335939379,10651.397481546928,2,1,2_1,2_1_1,2_2_1,2_0_0 -3926,2,43.0,0.0,6,400,800.0,,,0,47,0.0,0.0,,892.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,1,5.0,1,,4,118399,2,2,0,0,1,,485.0,,32,2.0,0.0,4.0,4.0,2.5,1,1,6.920226120575992,800.0,38126.84600201475,0,1,0,1,61.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023395588503514395,15250.738400805898,3,2,3_0,3_1_0,3_1_0,3_0_0 -3927,1,53.0,340.0,2,400,632.0,,,0,52,0.0,0.0,,770.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,2,127453,2,2,0,0,1,,867.0,590.0,12,1.0,2.0,3.0,1.0,1.0,2,2,26.30087391337807,632.0,12000.667692846517,0,4,2,3,54.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06416309656328453,12000.667692846517,2,1,2_1,2_1_1,2_1_1,2_0_1 -3928,2,59.0,0.0,9,400,659.0,,,52,47,0.0,0.0,,772.0,194.39695147349167,,71,0,0,0,0,0,0,0,0,2,9.0,1,2006.0,6,114801,2,1,0,0,2,,796.0,,43,2.0,1.0,4.0,3.0,2.0,4,4,32.73987088511653,659.0,67223.0,1,1,0,1,65.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011484164646028888,33611.5,9,5,9,9_1,9_1,9_0_0 -3929,2,74.0,0.0,1,400,86.0,,,0,86,0.0,0.0,,110.0,41.2878481005646,,70,0,0,0,0,0,0,0,0,0,,1,,1,121680,2,2,0,0,2,,387.0,,11,0.0,6.0,4.0,1.0,1.0,2,2,24.904969795057205,86.0,29670.92971777794,0,5,0,1,3.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0037073324309784355,29670.92971777794,8,4,8,8_1,8_1,8_1_0 -3931,2,37.0,0.0,1,400,683.0,,,67,85,0.0,0.0,,796.0,194.39695147349167,,60,0,0,0,0,0,0,0,0,0,,1,,1,111303,2,2,0,0,2,,710.0,200.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,1,1,77.0185259842283,683.0,16110.0,4,6,2,3,63.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049410304158907514,6196.153846153847,1,1,1_0,1_1_0,1_1_0,1_1_0 -3932,1,42.0,390.0,2,400,945.0,,,0,63,0.0,0.0,,1083.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,2,7.0,1,,2,104811,2,2,0,0,1,,1286.0,569.0,32,1.0,0.0,5.0,4.0,2.3,3,2,99.28075838698956,945.0,38854.667870105535,0,1,2,3,63.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.027873098893048353,16893.333856567624,4,2,4_1,4_1_1,4_1_1,4_0_1 -3933,2,68.0,0.0,1,400,676.0,,,86,86,0.0,0.0,,789.0,194.39695147349167,,71,0,0,0,0,0,0,0,0,0,,1,,1,119292,2,2,0,0,1,,776.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,6.920226120550812,676.0,26055.413058597092,5,5,0,1,79.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030281615502528607,17370.27537239806,4,2,4_0,4_1_0,4_1_0,4_1_0 -3934,1,39.0,385.0,1,400,821.0,,,85,63,0.0,0.0,,934.0,194.39695147349167,,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,128846,2,3,0,0,2,,821.0,490.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,1,1,160.76476493398545,821.0,29989.163709018623,6,1,3,4,69.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0311445830588173,11534.293734237934,2,1,2_1,2_1_1,2_1_1,2_1_0 -3935,2,47.0,0.0,2,400,480.0,,,52,47,0.0,0.0,,504.0,41.2878481005646,,71,0,0,0,0,0,0,0,0,2,2.0,1,,2,129239,2,1,0,0,2,,305.0,,43,2.0,2.0,6.0,2.0,1.5,3,3,43.469093455076255,480.0,73238.13728346316,1,1,0,1,51.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006881660548646981,48825.42485564211,10,5,10,10_1,10_1,10_0_1 -3936,2,24.0,0.0,5,400,537.0,,,85,63,0.0,0.0,,650.0,194.39695147349167,,41,0,0,0,0,0,0,0,0,0,,1,,3,123235,2,2,0,0,1,,0.0,350.0,42,1.0,0.0,4.0,4.0,2.3,1,1,6.1918988573027525,537.0,26097.934280497837,6,1,3,4,82.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024906185792862714,11346.92794804254,2,1,2_0,2_1_0,2_1_0,2_0_0 -3937,1,49.0,435.0,7,400,458.0,,,0,52,0.0,0.0,,571.0,194.39695147349167,,20,0,0,0,0,0,0,0,0,1,8.0,1,,5,122773,2,2,0,0,2,,654.0,549.0,32,1.0,0.0,4.0,2.0,1.3,2,2,43.84409040200275,458.0,26322.354178930644,0,1,2,3,78.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02169258859289451,20247.96475302357,5,3,5,5_1,5_1,5_0_0 -3938,1,42.0,480.0,5,400,1103.0,,,0,52,0.0,0.0,,1241.0,237.40512657824647,,31,0,0,0,0,0,0,0,0,1,10.0,1,,3,133295,2,2,0,0,2,,1050.0,543.0,32,2.0,1.0,4.0,5.0,2.8,1,1,148.46419134563158,1103.0,36219.36281171461,0,1,2,3,54.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03426344097910572,12935.486718469503,2,1,2_1,2_1_1,2_1_1,2_0_0 -3939,1,63.0,480.0,7,400,641.0,,,0,56,0.0,0.0,,733.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,,5,111272,2,2,0,0,1,,732.0,540.0,21,0.0,1.0,4.0,3.0,1.6,2,2,37.71523486049669,641.0,21514.140374035458,0,6,2,3,55.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03407061529098453,13446.337733772161,3,2,3_1,3_1_1,3_1_1,3_0_0 -3940,0,43.0,0.0,2,400,945.0,,,42,42,0.0,0.0,,1083.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,2,6.0,1,,2,115852,2,2,0,0,2,,1438.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,4,3,52.36920849876668,945.0,9861.559970369824,1,1,5,0,67.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10982035329643548,3652.4296186554907,1,1,1_0,1_1_0,1_1_0,1_0_1 -3941,1,40.0,280.0,2,400,420.0,,,0,52,0.0,0.0,,489.0,118.70256328912323,,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,104089,2,2,0,0,2,,645.0,332.0,12,1.0,0.0,2.0,1.0,1.0,1,1,68.7437666079308,420.0,21881.45756695687,0,1,3,4,25.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022347688608204856,21881.45756695687,6,3,6,6_0,6_1,6_0_1 -3942,1,25.0,380.0,2,400,531.0,,,0,47,0.0,0.0,,644.0,194.39695147349167,,20,0,0,0,0,0,0,0,0,0,,2,,2,127410,2,2,0,0,2,,683.0,440.0,22,3.0,0.0,3.0,3.0,2.0,2,2,84.99287574244052,531.0,23550.91987650785,0,1,2,3,55.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02734500407529274,11775.459938253925,2,1,2_1,2_0_1,2_1_1,2_0_1 -3943,2,45.0,0.0,9,400,639.0,,,56,64,0.0,0.0,,777.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,1,20.0,1,2006.0,6,112769,2,1,0,0,1,,978.0,,43,3.0,0.0,5.0,6.0,3.0999999999999996,3,2,91.0650191112085,639.0,34474.06674989694,1,1,0,1,87.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02253868119583898,11120.666693515144,2,1,2_0,2_1_0,2_1_0,2_0_0 -3944,2,35.0,0.0,1,400,691.0,,,0,67,0.0,0.0,,829.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,1,110473,2,2,0,0,1,,821.0,,32,2.0,0.0,4.0,5.0,2.8,3,2,52.830098058499786,691.0,26574.0,0,4,0,1,92.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031195905772559644,9490.714285714286,1,1,1_0,1_1_0,1_1_0,1_1_0 -3945,0,58.0,0.0,5,400,1000.0,,,0,55,0.0,0.0,,1300.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,1,6.0,1,,3,108569,2,2,0,0,2,,400.0,,32,2.0,0.0,3.0,3.0,2.0,3,3,34.9597574849246,1000.0,18077.02049026275,0,1,5,0,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07191450608247359,9038.510245131374,1,1,1_0,1_1_0,1_0_0,1_0_0 -3946,2,49.0,0.0,9,400,260.0,,,85,64,0.0,31.055175144583732,,590.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,2,150.0,1,2011.0,6,127034,2,2,0,0,2,,400.0,,42,1.0,2.0,3.0,7.0,2.9999999999999996,1,1,6.1918988573027525,260.0,47392.94520936368,6,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012449110250346512,15797.64840312123,3,2,3_0,3_1_0,3_0_0,3_0_0 -3947,2,37.0,0.0,9,400,0.0,,,0,11,0.0,0.0,,30.0,51.60981012570575,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,104169,2,3,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,97.65144072348026,0.0,31995.0,0,1,0,1,132.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0009376465072667605,31995.0,8,4,8,8_1,8_0,8_0_0 -3948,0,61.0,0.0,8,400,0.0,,,68,69,0.0,0.0,,450.0,774.1471518855863,,71,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,122811,2,2,0,0,2,,0.0,,43,4.0,1.0,3.0,7.0,3.8,2,2,5.445516010697485,0.0,18565.86875,1,1,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024238025489650192,4885.754934210527,1,1,1_0,1_1_0,1_0_0,1_0_0 -3949,2,62.0,0.0,5,400,1200.0,,,86,52,0.0,0.0,,1260.0,103.2196202514115,,10,0,0,0,0,0,0,0,0,0,,1,,3,127362,2,2,0,0,2,,300.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,44.00555365239861,1200.0,34165.94391788906,5,1,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036878828901322186,22777.295945259375,6,3,6,6_1,6_0,6_0_0 -3950,2,30.0,0.0,7,400,360.0,,,0,56,0.0,0.0,,810.0,774.1471518855863,,60,0,0,0,0,0,0,0,0,0,,1,,5,120128,2,2,0,0,2,,700.0,,32,1.0,0.0,5.0,8.0,4.1,2,2,6.73280849716986,360.0,19576.92469352014,0,4,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04137524216293817,4774.859681346376,1,1,1_0,1_1_0,1_0_0,1_0_0 -3951,2,56.0,0.0,5,400,1500.0,,,52,68,0.0,0.0,,1800.0,516.0981012570575,,20,0,0,0,0,0,0,0,0,0,,1,,3,105858,2,1,0,0,2,,1200.0,,43,3.0,0.0,4.0,7.0,3.6,2,2,6.1918988573027525,1500.0,18645.9375,4,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09653577354316456,5179.427083333333,1,1,1_0,1_1_0,1_0_0,1_0_0 -3952,1,39.0,500.0,2,400,840.0,,,0,85,0.0,0.0,,1140.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,,2,101806,2,3,0,0,2,,800.0,500.0,31,0.0,0.0,5.0,11.0,4.799999999999999,2,2,5.445516010697485,840.0,40041.780749299236,0,6,2,3,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.028470262277732264,8342.03765610401,1,1,1_1,1_1_1,1_0_1,1_0_1 -3953,2,35.0,0.0,5,400,0.0,,,0,52,0.0,0.0,,712.0,0.0,,60,0,0,0,0,0,0,0,0,2,5.0,1,,3,117055,2,3,0,0,2,,192.0,300.0,32,1.0,0.0,6.0,2.0,1.5,1,1,28.943054309658127,0.0,23071.608938547484,0,1,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03086043985473452,15381.072625698323,3,2,3_0,3_1_0,3_0_0,3_0_0 -3954,1,41.0,400.0,5,400,1440.0,,,0,90,0.0,0.0,,1890.0,774.1471518855863,,71,0,0,0,0,0,0,0,0,0,,1,,3,108681,2,2,0,0,2,,600.0,760.0,31,1.0,0.0,4.0,5.0,2.8,2,2,38.561273762807865,1440.0,18562.3875,0,6,2,3,63.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10181879890181152,6629.424107142858,1,1,1_1,1_1_1,1_0_1,1_0_0 -3955,2,55.0,0.0,5,400,480.0,,,85,62,0.0,0.0,,580.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,2,25.0,1,,3,128174,2,1,0,0,2,,300.0,350.0,42,1.0,3.0,3.0,2.0,1.5,1,1,66.27848409117118,480.0,23431.97206703911,6,1,2,3,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02475250475464097,15621.314711359408,3,2,3_0,3_1_0,3_1_0,3_0_0 -3956,0,26.0,0.0,1,400,0.0,,,0,52,0.0,0.0,,108.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,1,123914,2,2,0,0,2,,142.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,8.630211236835555,0.0,11374.57535917329,0,4,5,0,35.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009494859947707929,11374.57535917329,2,1,2_0,2_1_0,2_1_0,2_1_0 -3958,0,46.0,0.0,2,400,470.0,,,52,43,0.0,0.0,,746.0,474.81025315649293,,60,0,0,0,0,0,0,0,0,1,3.0,1,,2,123601,2,3,0,0,2,,700.0,,43,4.0,1.0,3.0,6.0,3.3,2,2,108.4997873302584,470.0,67521.71530088354,1,1,5,0,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01104829752437048,20461.125848752592,5,3,5,5_1,5_1,5_0_1 -3959,2,34.0,0.0,1,400,2160.0,,,85,22,0.0,0.0,,2385.0,387.0735759427931,,50,0,0,0,0,0,0,0,0,0,,1,,1,116184,2,2,0,0,2,,420.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,2,2,155.27140151123842,2160.0,58598.30164630908,6,1,0,1,160.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0407008383006647,22537.808325503498,6,3,6,6_1,6_1,6_1_0 -3960,0,38.0,0.0,2,400,800.0,,,85,68,0.0,0.0,,800.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,2,117726,2,2,0,0,2,,1200.0,,42,2.0,3.0,2.0,9.0,4.199999999999999,2,2,8.280596007637794,800.0,12476.731707317074,6,4,5,0,45.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06411935583505686,2970.650406504066,1,1,1_0,1_1_0,1_1_0,1_0_1 -3961,2,57.0,0.0,5,400,0.0,,,52,43,0.0,0.0,,1186.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,1,5.0,1,,3,130968,2,2,0,0,2,,324.0,,43,3.0,1.0,4.0,4.0,2.5,2,2,34.65086116441197,0.0,77713.25243928275,1,1,1,2,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015261232322332927,31085.3009757131,8,4,8,8_1,8_1,8_0_0 -3962,0,56.0,0.0,7,400,0.0,,,0,21,0.0,0.0,,30.0,51.60981012570575,,70,0,0,0,0,0,0,0,0,0,,1,,5,117550,2,2,0,0,2,,0.0,,12,1.0,6.0,2.0,1.0,1.0,4,4,57.458887657123576,0.0,9831.337762985151,0,1,5,0,30.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003051466720322597,9831.337762985151,2,1,2_0,2_1_0,2_1_0,2_0_0 -3963,0,48.0,0.0,5,400,120.0,,,81,42,0.0,31.055175144583732,,270.0,206.439240502823,,42,0,0,0,0,0,0,0,0,2,5.0,1,,3,115176,2,2,0,0,2,,160.0,,43,2.0,1.0,4.0,4.0,2.1,1,1,43.69068323183109,120.0,41179.92762839526,4,1,5,0,55.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006556592387350965,19609.489346854883,5,3,5,5_1,5_1,5_0_0 -3964,2,51.0,0.0,9,400,460.0,,,11,11,0.0,0.0,,550.0,154.82943037711726,,33,0,0,0,0,0,0,0,0,0,,1,2009.0,6,109467,2,2,0,0,2,,0.0,,43,2.0,0.0,1.0,3.0,1.8,2,2,94.5442910823637,460.0,7348.254093667066,1,1,0,1,30.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0748477111691069,4082.363385370592,1,1,1_0,1_1_0,1_1_0,1_0_0 -3965,0,44.0,0.0,9,400,0.0,,,85,21,0.0,0.0,,180.0,309.6588607542345,,20,0,0,0,0,0,0,0,0,0,,1,2011.0,6,117959,2,3,0,0,2,,0.0,,42,1.0,0.0,2.0,4.0,2.1,2,2,138.78484606993513,0.0,8519.705329517546,6,1,5,0,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021127491273244897,4057.002537865498,1,1,1_0,1_1_0,1_1_0,1_0_0 -3967,2,29.0,0.0,8,400,0.0,,,85,52,0.0,0.0,,150.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,116355,2,3,0,0,2,,0.0,,42,1.0,0.0,3.0,5.0,2.4,3,3,168.2587017445297,0.0,27696.5,6,1,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005415846767642121,11540.208333333334,2,1,2_0,2_1_0,2_1_0,2_0_0 -3968,2,25.0,0.0,8,400,0.0,,,0,52,0.0,0.0,,350.0,602.1144514665671,,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,113012,2,3,0,0,2,,0.0,,22,2.0,6.0,5.0,7.0,3.6,2,2,8.280596007637794,0.0,27589.71234228517,0,4,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012685887973669631,7663.808983968102,1,1,1_0,1_1_0,1_1_0,1_0_0 -3970,2,68.0,0.0,7,400,468.0,,,0,71,0.0,0.0,,618.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,5,121543,2,2,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,1,63.71646347283737,468.0,16677.65127285762,0,7,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03705557754440978,16677.65127285762,4,2,4_0,4_1_0,4_1_0,4_0_0 -3971,0,23.0,0.0,1,400,0.0,,,85,69,0.0,0.0,,795.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,1,106016,2,2,0,0,2,,0.0,,42,1.0,0.0,4.0,3.0,1.8,1,1,8.630211236835555,0.0,8088.560209032523,6,1,5,0,40.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09828696077606257,4493.6445605736235,1,1,1_0,1_1_0,1_1_0,1_1_0 -3972,0,41.0,0.0,1,400,0.0,,,0,62,0.0,0.0,,150.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,107438,2,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,107.79611086715775,0.0,23524.181637792797,0,1,5,0,40.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0063764173525601995,23524.181637792797,6,3,6,6_1,6_1,6_1_0 -3973,2,55.0,0.0,5,400,780.0,,,11,11,0.0,0.0,,1080.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,124426,2,2,0,0,2,,320.0,,43,4.0,5.0,5.0,5.0,3.0,2,2,56.42415996501417,780.0,11018.952299136665,1,1,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09801294811709259,3672.9840997122215,1,1,1_0,1_1_0,1_1_0,1_0_0 -3974,2,34.0,0.0,5,400,1400.0,,,0,42,0.0,0.0,,1550.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,,3,123974,2,2,0,0,2,,400.0,,22,2.0,8.0,5.0,5.0,3.0,2,1,8.280596007637794,1400.0,9584.102775834306,0,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16172614549879666,3194.700925278102,1,1,1_0,1_1_0,1_1_0,1_0_0 -3975,2,51.0,0.0,5,400,1620.0,,,12,11,0.0,0.0,,1770.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,131859,2,2,0,0,2,,1080.0,,43,6.0,0.0,8.0,12.0,5.699999999999999,1,1,8.630211236835555,1620.0,43384.04726643321,1,1,0,1,160.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04079840659240364,7611.236362532143,1,1,1_0,1_1_0,1_1_0,1_0_0 -3976,2,48.0,0.0,5,400,600.0,,,11,11,0.0,0.0,,750.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,101537,2,2,0,0,2,,200.0,,43,2.0,5.0,5.0,3.0,2.0,1,1,58.651010798553415,600.0,9932.0,1,1,0,1,90.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07551349174385824,4966.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -3977,2,67.0,0.0,5,400,600.0,,,71,71,0.0,0.0,,900.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,3,122905,2,2,0,0,2,,500.0,,41,0.0,0.0,5.0,3.0,2.0,2,2,8.280596007637794,600.0,16032.014457831325,5,5,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05613767392533554,8016.007228915662,1,1,1_0,1_1_0,1_1_0,1_0_0 -3978,2,47.0,0.0,6,400,0.0,,,0,85,0.0,0.0,,180.0,309.6588607542345,,10,0,0,0,0,0,0,0,0,0,,1,,4,113437,2,2,0,0,2,,0.0,,31,0.0,2.0,4.0,8.0,3.499999999999999,3,3,8.280596007637794,0.0,30360.50865004206,0,6,0,1,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00592875442486207,8674.431042869162,1,1,1_0,1_1_0,1_1_0,1_0_0 -3979,0,36.0,0.0,7,400,0.0,,,0,22,0.0,0.0,,60.0,103.2196202514115,,10,0,0,0,0,0,0,0,0,0,,1,,5,104251,2,3,0,0,2,,0.0,,31,0.0,0.0,2.0,7.0,2.9999999999999996,1,1,81.50543814894277,0.0,9450.99490909091,0,6,5,0,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006348537966334741,3150.3316363636372,1,1,1_0,1_1_0,1_1_0,1_0_0 -3980,2,45.0,0.0,7,400,0.0,,,0,11,0.0,0.0,,207.0,356.1076898673697,,33,0,0,0,0,0,0,0,0,0,,1,,5,124144,2,2,0,0,2,,0.0,,32,1.0,2.0,5.0,4.0,2.5,1,1,8.280596007637794,0.0,12155.11924613385,0,1,0,1,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017029861723967865,4862.04769845354,1,1,1_0,1_1_0,1_1_0,1_0_0 -3981,2,71.0,0.0,6,400,0.0,,,0,71,0.0,0.0,,90.0,154.82943037711726,,10,0,0,0,0,0,0,0,0,0,,1,,4,107633,2,3,0,0,2,,0.0,,21,0.0,10.0,4.0,3.0,1.8,2,2,8.280596007677529,0.0,5646.819875776398,0,6,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015938174402565945,3137.1221532091095,1,1,1_0,1_1_0,1_1_0,1_0_0 -3982,2,60.0,0.0,7,400,0.0,,,11,11,0.0,0.0,,150.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,1,,5,125375,2,2,0,0,2,,0.0,,43,2.0,7.0,3.0,2.0,1.5,2,2,46.791648175637185,0.0,9101.103606557379,1,1,0,1,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016481517680111284,6067.402404371586,1,1,1_0,1_1_0,1_1_0,1_0_0 -3983,0,29.0,0.0,7,400,0.0,,,0,85,0.0,0.0,,300.0,516.0981012570575,,70,0,0,0,0,0,0,0,0,0,,1,,5,108692,2,3,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,98.64714677831931,0.0,3091.0162339671165,0,6,5,0,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09705545920571555,3091.0162339671165,1,1,1_0,1_1_0,1_1_0,1_0_0 -3984,2,53.0,0.0,6,400,300.0,,,78,78,0.0,0.0,,480.0,309.6588607542345,,20,0,0,0,0,0,0,0,0,0,,1,,4,124981,2,3,0,0,2,,0.0,,41,0.0,5.0,3.0,3.0,1.8,1,1,51.09776526581672,300.0,9344.217222222222,5,6,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05136866883386166,5191.231790123456,1,1,1_0,1_1_0,1_0_0,1_0_0 -3985,2,34.0,0.0,9,400,0.0,,,0,52,0.0,0.0,,90.0,154.82943037711726,,10,0,0,0,0,0,0,0,0,1,15.0,1,2013.0,6,112278,2,3,0,0,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,4,3,86.84870127644176,0.0,15229.504132231405,0,1,0,1,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005909581770920951,11715.003178639541,2,1,2_0,2_1_0,2_0_0,2_0_0 -3986,2,42.0,0.0,6,400,600.0,,,0,81,0.0,0.0,,720.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,1,,4,107502,2,2,0,0,2,,500.0,,32,4.0,0.0,4.0,10.0,4.699999999999999,2,2,157.70387774392498,600.0,50908.70913637051,0,4,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014142963202451606,10831.640241780962,2,1,2_0,2_1_0,2_0_0,2_0_0 -3987,2,55.0,0.0,7,400,270.0,,,78,77,0.0,0.0,,630.0,619.317721508469,,41,0,0,0,0,0,0,0,0,0,,1,,5,103949,2,2,0,0,2,,700.0,,41,3.0,1.0,4.0,7.0,3.8,1,1,8.280596007637794,270.0,25604.529604212163,6,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02460502144496963,6738.034106371622,1,1,1_0,1_1_0,1_0_0,1_0_0 -3988,2,38.0,0.0,7,400,900.0,,,0,52,0.0,0.0,,990.0,154.82943037711726,,42,0,0,0,0,0,0,0,0,0,,1,,5,126536,2,2,0,0,2,,800.0,,32,3.0,5.0,7.0,8.0,3.8999999999999995,2,1,129.3178208496,900.0,20458.0,0,1,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04839182715807997,5245.641025641026,1,1,1_0,1_1_0,1_0_0,1_0_0 -3989,0,31.0,0.0,6,400,0.0,,,0,85,0.0,0.0,,120.0,206.439240502823,,31,0,0,0,0,0,0,0,0,0,,1,,4,123984,2,2,0,0,2,,0.0,,31,0.0,0.0,3.0,4.0,1.9,2,2,49.961444604623054,0.0,17421.884518854633,0,6,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006887888613320297,9169.412904660334,1,1,1_0,1_1_0,1_0_0,1_0_0 -3990,2,48.0,0.0,7,400,320.0,,,85,52,0.0,0.0,,470.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,2,5.0,1,,5,110619,2,1,0,0,2,,600.0,,42,1.0,0.0,4.0,4.0,2.5,1,1,57.80964115579707,320.0,28616.795384051657,6,1,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016423921466130843,11446.718153620663,2,1,2_0,2_1_0,2_0_0,2_0_0 -3991,2,32.0,0.0,7,400,0.0,,,85,68,0.0,0.0,,150.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,5,127874,2,2,0,0,2,,0.0,,42,1.0,0.0,4.0,5.0,2.6,1,1,148.98126038520107,0.0,17704.649178396237,6,4,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008472350877363595,6809.480453229322,1,1,1_0,1_1_0,1_0_0,1_0_0 -3992,0,63.0,0.0,7,400,0.0,,,0,78,0.0,0.0,,90.0,154.82943037711726,,71,0,0,0,0,0,0,0,0,0,,1,,5,128241,2,3,0,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,69.13634646385763,0.0,3228.3094297451744,0,5,5,0,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027878368526496583,3228.3094297451744,1,1,1_0,1_1_0,1_0_0,1_0_0 -3993,2,43.0,0.0,9,400,0.0,,,85,11,0.0,0.0,,247.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,120372,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,8.630211236835555,0.0,10291.053565755243,6,1,0,1,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024001429826575108,4287.938985731352,1,1,1_0,1_1_0,1_0_0,1_0_0 -3994,2,53.0,0.0,7,400,0.0,,,0,11,0.0,0.0,,300.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,,5,101739,2,3,0,0,2,,0.0,,32,1.0,1.0,3.0,3.0,2.0,4,4,75.51707914969296,0.0,7467.737553159412,0,1,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040172809751874254,3733.868776579706,1,1,1_0,1_1_0,1_0_0,1_0_0 -3997,2,56.0,0.0,6,211,360.0,,,0,85,0.0,0.0,,372.0,20.6439240502823,,60,0,0,0,0,0,0,0,0,0,,2,,4,107805,1,2,0,0,2,,200.0,170.0,31,0.0,0.0,3.0,3.0,1.6,1,1,62.44188813167663,360.0,6508.659587629834,0,7,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05715462530979684,4067.9122422686464,1,1,1_0,1_0_0,1_2_0,1_0_0 -3998,1,54.0,300.0,1,211,1200.0,,,0,81,0.0,0.0,,1212.0,20.6439240502823,,12,0,0,0,0,0,0,0,0,0,,1,,1,127136,2,2,0,0,2,,600.0,380.0,12,1.0,0.0,2.0,1.0,1.0,2,2,57.08692020626621,1200.0,10608.968350600004,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11424296500342127,10608.968350600004,2,1,2_1,2_1_1,2_2_1,2_1_0 -3999,2,39.0,0.0,2,211,1000.0,,,52,42,0.0,0.0,,1002.0,3.4406540083803834,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,120174,1,2,0,0,2,,200.0,569.0,43,2.0,0.0,3.0,2.0,1.5,3,3,50.377326144033994,1000.0,77945.07287990273,1,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012855206403410197,51963.38191993515,10,5,10,10_1,10_2,10_0_1 -4000,2,41.0,0.0,7,211,120.0,,,0,81,0.0,0.0,,166.0,79.13504219274881,,12,0,0,0,0,0,0,0,0,0,,1,,5,124149,1,2,0,0,2,,200.0,,12,1.0,5.0,5.0,1.0,1.0,2,2,67.50154542643133,120.0,12938.1167398835,0,4,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01283030624451567,12938.1167398835,2,1,2_0,2_1_0,2_2_0,2_0_0 -4001,0,66.0,0.0,7,211,600.0,,,0,86,0.0,0.0,,613.0,22.364251054472494,,70,0,0,0,0,0,0,0,0,0,,1,,5,112563,1,2,0,0,2,,0.0,,21,0.0,0.0,4.0,3.0,2.0,1,1,26.085281509746498,600.0,9448.669963636365,0,5,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06487685593413235,4724.334981818182,1,1,1_0,1_1_0,1_2_0,1_0_0 -4002,2,41.0,0.0,9,211,720.0,,,0,54,0.0,0.0,,726.0,10.32196202514115,,20,0,0,0,0,0,0,0,0,2,1.0,1,2007.0,6,128175,2,2,0,0,2,,520.0,,32,1.0,2.0,5.0,2.0,1.3,4,3,44.75534367382771,720.0,24470.0,0,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029668982427462198,18823.076923076922,5,3,5,5_1,5_2,5_0_0 -4003,0,46.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,12.0,20.6439240502823,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109996,1,2,0,0,2,,0.0,,32,1.0,3.0,5.0,6.0,2.6999999999999997,7,6,7.559826641115449,0.0,21050.144017492992,0,4,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0005700673586854235,7796.349636108516,1,1,1_0,1_1_0,1_2_0,1_0_0 -4004,2,42.0,0.0,6,211,300.0,,,42,43,0.0,0.0,,400.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,130130,1,3,0,0,2,,400.0,624.0,43,2.0,0.0,3.0,4.0,2.1,1,1,72.35308688138448,300.0,94304.39413834733,1,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004241583901309924,44906.85435159397,10,5,10,10_1,10_2,10_0_0 -4005,2,62.0,0.0,7,211,1200.0,,,0,81,0.0,0.0,,1500.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,5,128426,2,3,0,0,2,,1200.0,,32,1.0,2.0,3.0,2.0,1.3,1,1,7.879010250772417,1200.0,20028.527487054664,0,4,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.074893174296988,15406.559605426664,3,2,3_0,3_1_0,3_2_0,3_0_0 -4006,2,61.0,0.0,7,211,1350.0,,,0,52,0.0,0.0,,1650.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,123058,1,2,0,0,2,,1200.0,,22,3.0,0.0,4.0,4.0,2.3,1,1,42.540604930609916,1350.0,23940.300360822865,0,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0689214410484233,10408.826243836029,2,1,2_0,2_1_0,2_2_0,2_0_0 -4007,2,53.0,0.0,5,211,1600.0,,,0,52,0.0,0.0,,1624.0,41.2878481005646,,10,0,0,0,0,0,0,0,0,1,15.0,1,,3,120187,2,2,0,0,2,,1350.0,,32,1.0,0.0,6.0,13.0,5.599999999999999,2,2,74.27375035531514,1600.0,29781.617511419823,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05453028195588348,5318.145984182112,1,1,1_0,1_1_0,1_2_0,1_0_0 -4008,0,46.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,300.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,126345,2,3,0,0,2,,0.0,,32,3.0,0.0,2.0,6.0,3.1,2,2,7.559826641115449,0.0,1914.3022650703942,0,4,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1567150629626237,617.5168597001272,1,1,1_0,1_1_0,1_2_0,1_0_0 -4009,2,44.0,0.0,6,211,850.0,,,0,81,0.0,0.0,,1150.0,516.0981012570575,,33,0,0,0,0,0,0,0,0,0,,1,,4,119213,1,2,0,0,2,,1000.0,,32,2.0,0.0,4.0,9.0,4.199999999999999,2,2,7.559826641115449,850.0,12263.654445836688,0,4,0,1,55.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09377302704337094,2919.917725199212,1,1,1_0,1_1_0,1_2_0,1_0_0 -4012,0,25.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,286.0,492.0135231983948,,10,0,0,0,0,0,0,0,0,0,,7,2009.0,6,129377,1,3,0,0,2,,0.0,,32,1.0,0.0,3.0,6.0,2.5,2,2,245.85275285700672,0.0,9378.231111111112,0,4,5,0,300.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030496156109988994,3751.2924444444448,1,1,1_0,1_1_0,1_2_0,1_0_0 -4014,0,35.0,0.0,8,211,0.0,,,0,81,0.0,0.0,,100.0,172.03270041901916,,42,0,0,0,0,0,0,0,0,0,,1,2003.0,6,121997,1,2,0,0,2,,0.0,,32,1.0,0.0,4.0,8.0,3.499999999999999,4,3,7.559826641115449,0.0,6743.026618342536,0,4,5,0,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014830135732814357,1926.5790338121535,1,1,1_0,1_1_0,1_2_0,1_0_0 -4015,0,37.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,300.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,115830,1,3,0,0,2,,0.0,,32,1.0,0.0,3.0,6.0,2.6999999999999997,4,2,133.5497045146953,0.0,5055.711805555555,0,4,5,0,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059338825379710115,1872.4858539094648,1,1,1_0,1_1_0,1_2_0,1_0_0 -4016,2,67.0,0.0,6,211,840.0,,,0,86,0.0,0.0,,1540.0,1204.2289029331341,,71,0,0,0,0,0,0,0,0,0,,1,,4,123271,2,3,0,0,2,,1800.0,,21,5.0,0.0,6.0,10.0,5.1,2,2,7.879010250772417,840.0,9451.059490909092,0,5,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16294469434684178,1853.1489197860967,1,1,1_0,1_1_0,1_2_0,1_0_0 -4017,2,59.0,0.0,6,211,540.0,,,81,81,0.0,0.0,,840.0,516.0981012570575,,20,0,0,0,0,0,0,0,0,0,,7,,4,121821,2,3,0,0,2,,600.0,61.0,43,3.0,0.0,3.0,6.0,3.3,1,1,125.55254642385934,540.0,19399.0,4,4,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04330120109283984,5878.484848484849,1,1,1_0,1_1_0,1_2_0,1_0_0 -4019,2,74.0,0.0,6,211,900.0,,,86,86,0.0,0.0,,1200.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,,4,109984,1,2,0,0,2,,0.0,,41,1.0,0.0,7.0,4.0,2.3,1,1,70.78223311681153,900.0,23169.31304225041,5,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05179264477163131,10073.614366195832,2,1,2_0,2_1_0,2_2_0,2_0_0 -4021,0,44.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,350.0,602.1144514665671,,10,0,0,0,0,0,0,0,0,0,,1,2008.0,6,114294,1,2,0,0,2,,0.0,,32,2.0,2.0,4.0,4.0,2.3,2,2,126.10850979803674,0.0,3139.703681766644,0,4,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11147548796804368,1365.0885572898453,1,1,1_0,1_1_0,1_2_0,1_0_0 -4022,2,39.0,0.0,9,211,0.0,,,81,11,0.0,0.0,,276.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,125201,2,2,0,0,2,,0.0,,43,2.0,0.0,3.0,5.0,2.4,1,1,62.57638188910305,0.0,10936.799027006226,4,1,0,1,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02523590305705294,4556.999594585927,1,1,1_0,1_1_0,1_2_0,1_0_0 -4023,0,26.0,0.0,9,211,120.0,,,0,81,0.0,0.0,,270.0,258.04905062852873,,31,0,0,0,0,0,0,0,0,0,,3,2010.0,6,133605,1,3,0,0,2,,0.0,,32,1.0,0.0,2.0,3.0,1.6,2,2,117.27493490789412,120.0,4845.729166666666,0,4,5,0,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05571916851179089,3028.580729166666,1,1,1_0,1_0_0,1_2_0,1_0_0 -4024,1,21.0,357.0,8,211,0.0,,,0,81,0.0,0.0,,575.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,105730,1,2,0,0,2,,746.0,750.0,32,1.0,0.0,3.0,2.0,1.3,1,1,75.35096211348251,0.0,3824.263530972279,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1503557470198222,2941.7411776709837,1,1,1_1,1_1_1,1_2_1,1_0_0 -4025,2,56.0,0.0,9,211,750.0,,,0,45,0.0,0.0,,800.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,130421,1,2,0,0,2,,200.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,35.0929481927198,750.0,46291.579493809055,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017281760716481718,46291.579493809055,10,5,10,10_1,10_2,10_0_0 -4026,2,47.0,0.0,7,211,426.0,,,0,81,0.0,0.0,,826.0,688.1308016760767,,33,0,0,0,0,0,0,0,0,0,,1,,5,112132,1,2,0,0,2,,0.0,,32,2.0,0.0,7.0,3.0,2.0,2,2,7.559826641115449,426.0,3768.447391872127,0,4,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2191884121247216,1884.2236959360635,1,1,1_0,1_1_0,1_2_0,1_0_0 -4028,2,55.0,0.0,7,211,1200.0,,,81,85,0.0,0.0,,1500.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,,5,110579,1,2,0,0,2,,1700.0,,42,4.0,0.0,7.0,9.0,4.199999999999999,4,4,7.559826641115449,1200.0,15347.512396694216,4,7,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09773570864312142,3654.1696182605283,1,1,1_0,1_1_0,1_2_0,1_0_0 -4029,1,52.0,450.0,7,211,1500.0,,,81,81,0.0,0.0,,1800.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,,5,120120,1,2,0,0,2,,1000.0,565.0,43,2.0,3.0,4.0,4.0,2.3,3,3,89.21317059240481,1500.0,10131.940074210248,4,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17765600534706125,4405.191336613152,1,1,1_1,1_1_1,1_2_1,1_0_0 -4030,1,81.0,300.0,8,211,700.0,,,81,86,0.0,0.0,,850.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,108983,2,3,0,0,2,,600.0,400.0,42,1.0,0.0,2.0,4.0,2.3,1,1,35.355300599177795,700.0,14585.98919777924,4,5,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.058275101432915845,6341.7344338170615,1,1,1_1,1_0_1,1_2_1,1_0_0 -4031,2,35.0,0.0,7,211,1200.0,,,0,65,0.0,0.0,,1350.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,112008,2,2,0,0,2,,600.0,,32,1.0,4.0,3.0,2.0,1.5,4,4,40.83641427875183,1200.0,34691.415001940375,0,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0389145268339297,23127.610001293582,6,3,6,6_1,6_2,6_0_0 -4032,2,47.0,0.0,7,211,780.0,,,0,81,0.0,0.0,,1080.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,,5,133655,2,3,0,0,2,,700.0,,32,2.0,0.0,4.0,6.0,2.9,1,1,7.559826641115449,780.0,4520.3347626640625,0,4,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23892035804965497,1558.7361250565734,1,1,1_0,1_1_0,1_2_0,1_0_0 -4033,2,44.0,0.0,7,211,800.0,,,0,52,0.0,0.0,,1175.0,645.1226265713219,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,130477,2,2,0,0,2,,500.0,,32,1.0,0.0,3.0,3.0,1.8,2,2,50.879978608200844,800.0,33398.53582039883,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03518118298115168,18554.742122443793,4,2,4_0,4_1_0,4_2_0,4_0_0 -4034,2,45.0,0.0,7,211,0.0,,,34,31,0.0,0.0,,1735.0,0.0,,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,129436,1,2,0,0,2,,286.0,1000.0,43,2.0,0.0,3.0,4.0,2.1,2,2,49.5881505260628,0.0,34099.82880079204,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05088002083927474,16238.013714662877,4,2,4_0,4_1_0,4_2_0,4_0_0 -4035,0,28.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,406.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105178,1,2,0,0,2,,0.0,,32,1.0,0.0,2.0,4.0,1.9,1,1,121.6929495835282,0.0,5206.504775388589,0,4,5,0,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07797937724347867,2740.2656712571525,1,1,1_0,1_1_0,1_2_0,1_0_0 -4036,2,19.0,0.0,9,211,1200.0,,,0,81,0.0,0.0,,1350.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,125000,1,3,0,0,2,,0.0,,32,1.0,0.0,2.0,3.0,1.6,2,2,78.84640262696637,1200.0,4879.334335474739,0,4,0,1,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2766770848607263,3049.583959671712,1,1,1_0,1_1_0,1_2_0,1_0_0 -4037,2,50.0,0.0,9,211,100.0,,,0,81,0.0,0.0,,400.0,516.0981012570575,,33,0,0,0,0,0,0,0,0,0,,1,2010.0,6,100603,2,3,0,0,2,,0.0,150.0,32,1.0,2.0,3.0,4.0,2.3,1,1,7.559826641115449,100.0,24729.51555912082,0,4,2,3,52.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016175003470800732,10751.96328657427,2,1,2_0,2_1_0,2_2_0,2_0_0 -4038,0,32.0,0.0,9,211,900.0,,,0,81,0.0,0.0,,1050.0,258.04905062852873,,42,0,0,0,0,0,0,0,0,0,,1,2007.0,6,101441,1,3,0,0,2,,0.0,,32,1.0,0.0,3.0,11.0,4.399999999999999,3,3,7.559826641115449,900.0,9679.614001039128,0,4,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10847539993715453,2199.912272963439,1,1,1_0,1_1_0,1_2_0,1_0_0 -4039,1,36.0,300.0,7,211,425.0,,,85,53,0.0,0.0,,565.0,240.84578058662683,,42,0,0,0,0,0,0,0,0,2,10.0,2,,5,106599,2,1,0,0,2,,800.0,474.0,42,1.0,2.0,3.0,4.0,2.1,1,1,62.19344783575539,425.0,54561.99999999999,6,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010355192258348302,25981.904761904756,7,4,7,7_0,7_2,7_0_0 -4040,0,46.0,0.0,2,211,0.0,,,0,68,0.0,0.0,,104.0,178.91400843577995,,50,0,0,0,0,0,0,0,0,0,,1,,2,109985,2,1,0,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,67.58303804292669,0.0,36845.64037719709,0,1,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0028225863069640984,36845.64037719709,9,5,9,9_1,9_2,9_0_1 -4041,2,39.0,0.0,6,211,120.0,,,0,85,0.0,0.0,,270.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,1,,4,108396,2,2,0,0,2,,800.0,415.0,31,0.0,1.0,4.0,6.0,2.7,1,1,8.628927407353641,120.0,7317.0,0,6,3,4,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03690036900369004,2710.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -4042,2,43.0,0.0,7,211,1200.0,,,81,65,0.0,0.0,,1350.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,125207,1,2,0,0,2,,800.0,,43,3.0,0.0,5.0,5.0,2.8,2,2,69.60271572572825,1200.0,25988.638530668526,4,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05194577616703159,9281.656618095903,1,1,1_0,1_1_0,1_2_0,1_0_0 -4043,0,52.0,0.0,1,211,0.0,,,11,68,0.0,0.0,,100.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,1,10.0,1,,1,109915,1,3,0,0,2,,0.0,,43,2.0,0.0,3.0,6.0,3.0999999999999996,2,1,131.27119487036464,0.0,56074.36188009942,1,1,5,0,90.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0017833461968559579,18088.50383229014,4,2,4_0,4_1_0,4_2_0,4_1_0 -4044,2,61.0,0.0,6,211,1680.0,,,52,72,0.0,0.0,,1968.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,0,,1,,4,120527,2,1,0,0,2,,1200.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,44.88941064353977,1680.0,13775.752437452116,4,5,0,1,140.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14285971012731047,9183.834958301411,1,1,1_0,1_1_0,1_2_0,1_0_0 -4045,2,76.0,0.0,6,211,480.0,,,0,77,0.0,0.0,,580.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,0,,1,,4,128388,2,1,0,0,2,,400.0,,31,1.0,6.0,3.0,6.0,2.8999999999999995,1,1,108.8537094719219,480.0,10311.538862514188,0,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05624766659305232,3555.703056039376,1,1,1_0,1_1_0,1_2_0,1_0_0 -4046,2,69.0,0.0,6,211,600.0,,,0,74,0.0,0.0,,650.0,86.01635020950958,,31,0,0,0,0,0,0,0,0,0,,1,,4,103311,2,1,0,0,2,,580.0,650.0,21,0.0,1.0,5.0,2.0,1.5,1,1,92.89599843730018,600.0,31816.75413130111,0,5,2,3,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020429488102953103,21211.169420867405,5,3,5,5_1,5_2,5_0_0 -4047,2,28.0,0.0,7,211,300.0,,,81,43,0.0,0.0,,420.0,206.439240502823,,20,0,0,0,0,0,0,0,0,1,2.0,1,,5,110203,1,1,0,0,2,,460.0,354.0,43,2.0,0.0,2.0,2.0,1.5,3,3,144.13956804535616,300.0,31967.19221816231,4,1,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013138470126925162,21311.461478774872,6,3,6,6_1,6_2,6_0_0 -4048,1,35.0,210.0,6,211,1200.0,,,52,55,0.0,0.0,,1340.0,240.84578058662683,,71,0,0,0,0,0,0,0,0,2,3.0,8,,4,110915,2,1,0,0,2,,480.0,380.0,43,2.0,0.0,2.0,3.0,1.8,3,2,68.02376785841226,1200.0,22465.291866355663,1,1,2,3,41.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05964756692107806,12480.717703530923,2,1,2_1,2_0_1,2_2_1,2_0_0 -4049,0,50.0,0.0,7,211,0.0,,,0,33,0.0,0.0,,30.0,51.60981012570575,,12,0,0,0,0,0,0,0,0,1,5.0,2,,5,116546,2,1,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,51.84834526578352,0.0,71422.19095260145,0,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0004200375205502891,71422.19095260145,10,5,10,10_0,10_2,10_0_0 -4050,2,33.0,0.0,7,211,540.0,,,62,43,0.0,0.0,,632.0,158.27008438549763,,12,0,0,0,0,0,0,0,0,1,5.0,1,,5,121768,2,3,0,0,2,,900.0,580.0,43,2.0,0.0,4.0,4.0,2.3,1,1,65.81162384000251,540.0,35226.2864940702,1,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017941147446989266,15315.776736552261,3,2,3_0,3_1_0,3_2_0,3_0_0 -4051,2,41.0,0.0,7,211,1440.0,,,0,42,0.0,0.0,,1555.0,197.83760548187203,,12,0,0,0,0,0,0,0,0,0,,1,,5,125976,2,2,0,0,2,,300.0,,32,2.0,1.0,5.0,5.0,3.0,1,1,74.27866237847257,1440.0,102648.04281696555,0,1,1,2,150.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015148851915011783,34216.01427232185,9,5,9,9_1,9_2,9_0_0 -4052,1,42.0,400.0,6,211,1068.0,,,67,81,0.0,0.0,,1137.0,118.70256328912323,,20,0,0,0,0,0,0,0,0,0,,1,,4,101843,2,1,0,0,2,,520.0,600.0,43,2.0,0.0,3.0,4.0,2.3,2,2,89.5424520038517,1068.0,5956.973041630805,4,4,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.19086875029549072,2589.9882789699154,1,1,1_1,1_1_1,1_2_1,1_0_0 -4053,2,75.0,0.0,2,211,510.0,,,0,77,0.0,0.0,,614.0,178.91400843577995,,12,0,0,0,0,0,0,0,0,0,,1,,2,113708,2,1,0,0,2,,200.0,,21,0.0,7.0,3.0,2.0,1.5,1,1,51.86532049229594,510.0,44221.186454997296,0,5,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013884747317326078,29480.790969998197,8,4,8,8_1,8_2,8_0_1 -4054,1,42.0,150.0,1,211,0.0,,,35,34,0.0,0.0,,254.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,,1,110990,2,3,0,0,2,,594.0,765.0,43,2.0,1.0,2.0,4.0,2.1,2,2,82.91513154388856,0.0,45593.0,1,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.005571030640668524,21710.95238095238,6,3,6,6_1,6_2,6_1_0 -4055,2,37.0,0.0,7,211,0.0,,,81,63,0.0,0.0,,221.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,5,100259,2,2,0,0,2,,953.0,270.0,43,2.0,6.0,2.0,7.0,2.9999999999999996,4,4,104.38931657102945,0.0,5183.596273291925,4,4,2,3,25.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04263449318741994,1727.865424430642,1,1,1_0,1_0_0,1_2_0,1_0_0 -4057,0,67.0,0.0,6,211,300.0,,,0,69,0.0,0.0,,438.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,4,109641,2,3,0,0,2,,0.0,,32,2.0,2.0,2.0,2.0,1.5,1,1,47.337206864329325,300.0,14024.999999999998,0,4,5,0,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031229946524064175,9349.999999999998,1,1,1_0,1_1_0,1_2_0,1_0_0 -4058,2,49.0,0.0,2,211,500.0,,,81,52,0.0,0.0,,506.0,10.32196202514115,,71,0,0,0,0,0,0,0,0,1,1.0,1,,2,123570,2,2,0,0,2,,300.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,8.628927407381553,500.0,18581.534375000003,4,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027231335679188222,12387.689583333335,2,1,2_0,2_1_0,2_2_0,2_0_1 -4060,2,54.0,0.0,8,211,1200.0,,,0,81,0.0,0.0,,1488.0,495.4541772067752,,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,111652,2,3,0,0,2,,900.0,,32,4.0,0.0,6.0,6.0,3.5,2,2,75.15530354607722,1200.0,3503.3207311463993,0,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4247398723076886,1000.9487803275426,1,1,1_0,1_1_0,1_2_0,1_0_0 -4061,1,36.0,468.0,8,211,0.0,,,0,81,0.0,0.0,,479.0,340.62474682965797,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,133055,2,3,0,0,2,,0.0,735.0,32,1.0,0.0,3.0,4.0,1.9,2,2,39.565910434247535,0.0,12871.0,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03721544557532437,6774.21052631579,1,1,1_1,1_1_1,1_2_1,1_0_0 -4062,2,41.0,0.0,8,211,756.0,,,0,52,0.0,0.0,,888.0,227.0831645531053,,43,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,129754,2,2,0,0,2,,1200.0,,32,2.0,1.0,5.0,7.0,3.3999999999999995,2,2,8.65391823876718,756.0,38206.36429487303,0,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023242201041337035,11237.165969080304,2,1,2_0,2_1_0,2_2_0,2_0_0 -4063,1,41.0,413.0,8,211,1290.0,,,0,81,0.0,0.0,,1302.0,20.6439240502823,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,127930,2,3,0,0,2,,600.0,550.0,32,3.0,0.0,3.0,3.0,2.0,2,2,48.34080775527145,1290.0,19679.117338003503,0,4,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0661615039758735,9839.558669001752,2,1,2_1,2_1_1,2_2_1,2_0_0 -4064,2,78.0,0.0,2,211,1200.0,,,0,86,0.0,0.0,,1212.0,20.6439240502823,,70,0,0,0,0,0,0,0,0,0,,1,,2,131191,2,2,0,0,2,,400.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,42.987081828552306,1200.0,14255.921498290483,0,5,0,1,34.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08501730317084999,14255.921498290483,3,2,3_0,3_1_0,3_2_0,3_0_1 -4065,2,83.0,0.0,2,211,0.0,,,77,77,0.0,0.0,,791.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,2,105905,1,2,0,0,2,,280.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,8.628927407353641,0.0,26079.14583361146,5,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03033074798717293,17386.09722240764,4,2,4_0,4_1_0,4_2_0,4_0_1 -4066,2,27.0,0.0,9,211,0.0,,,81,81,0.0,0.0,,150.0,258.04905062852873,,33,0,0,0,0,0,0,0,0,0,,7,2011.0,6,119163,1,3,0,0,1,,0.0,,43,2.0,0.0,2.0,4.0,2.1,1,1,209.59936788769684,0.0,17771.704128444097,4,4,0,1,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008440383596073993,8462.716251640046,1,1,1_0,1_1_0,1_2_0,1_0_0 -4067,2,65.0,0.0,7,211,0.0,,,0,86,0.0,0.0,,1023.0,0.0,,44,0,0,0,0,0,0,0,0,0,,1,,5,132837,2,2,0,0,2,,383.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,43.882142390107106,0.0,25705.07520472364,0,7,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03979758829151414,25705.07520472364,7,4,7,7_1,7_2,7_0_0 -4069,1,24.0,470.0,7,211,0.0,,,0,81,0.0,0.0,,406.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,125125,2,2,0,0,2,,807.0,600.0,32,1.0,0.0,6.0,4.0,1.9,2,2,7.559826641115449,0.0,5435.925024737596,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07468830017934225,2861.0131709145244,1,1,1_1,1_1_1,1_2_1,1_0_0 -4070,2,48.0,0.0,7,211,0.0,,,0,52,0.0,0.0,,559.0,0.0,,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,116569,2,2,0,0,2,,616.0,,32,2.0,0.0,5.0,5.0,3.0,2,2,7.559826641115449,0.0,53585.13499130134,0,1,0,1,92.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010431997606999486,17861.711663767113,4,2,4_0,4_1_0,4_2_0,4_0_0 -4071,2,45.0,0.0,7,211,300.0,,,0,81,0.0,0.0,,600.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,0,,1,,5,122978,1,3,0,0,2,,800.0,300.0,32,1.0,5.0,3.0,3.0,1.6,1,1,57.89176861250884,300.0,12356.512195121952,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048557391481138606,7722.820121951219,1,1,1_0,1_1_0,1_2_0,1_0_0 -4073,2,41.0,0.0,7,211,700.0,,,34,52,0.0,0.0,,1050.0,602.1144514665671,,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,129780,1,2,0,0,2,,800.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,71.53428923101116,700.0,69947.01165754796,1,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015011363246519693,29144.588190644987,8,4,8,8_1,8_2,8_0_0 -4074,2,34.0,0.0,9,211,0.0,,,52,68,0.0,0.0,,307.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,116116,2,2,0,0,2,,400.0,426.0,43,2.0,0.0,3.0,2.0,1.5,2,1,47.64493024418526,0.0,57910.158258098774,1,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00530131516187086,38606.77217206585,9,5,9,9_1,9_2,9_0_0 -4075,1,55.0,380.0,9,211,1200.0,,,0,81,0.0,0.0,,1500.0,516.0981012570575,,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,103693,2,2,0,0,2,,600.0,600.0,22,1.0,5.0,5.0,3.0,2.0,2,2,7.559826641115449,1200.0,3949.8498439476243,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.3797612717603576,1974.9249219738122,1,1,1_1,1_1_1,1_2_1,1_0_0 -4076,1,47.0,360.0,9,211,900.0,,,52,68,0.0,0.0,,1500.0,1032.196202514115,,10,0,0,0,0,0,0,0,0,3,1.0,1,2008.0,6,123903,2,2,0,0,2,,800.0,590.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,2,2,87.09372567190887,900.0,45234.619930973386,1,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03316044220751613,15598.14480378393,3,2,3_1,3_1_1,3_2_1,3_0_0 -4077,1,35.0,360.0,7,211,1200.0,,,0,52,0.0,0.0,,1350.0,258.04905062852873,,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,117193,2,2,0,0,2,,1000.0,489.0,32,1.0,2.0,4.0,3.0,1.6,2,2,61.635805095716464,1200.0,36884.35702546351,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03660088202345545,23052.723140914695,6,3,6,6_1,6_2,6_0_0 -4078,1,50.0,400.0,9,211,900.0,,,0,81,0.0,0.0,,1500.0,1032.196202514115,,10,0,0,0,0,0,0,0,0,0,,1,2008.0,6,100245,2,2,0,0,2,,1000.0,600.0,32,1.0,3.0,5.0,4.0,2.1,2,2,48.03729357507415,900.0,25554.25680395643,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05869863528051276,12168.693716169728,2,1,2_1,2_1_1,2_2_1,2_0_0 -4079,2,57.0,0.0,7,211,900.0,,,85,68,0.0,0.0,,1836.0,1610.2260759220194,,70,0,0,0,0,0,0,0,0,0,,1,,5,104163,2,2,0,0,2,,1800.0,,42,4.0,7.0,4.0,12.0,5.499999999999999,2,2,8.86637268138834,900.0,16938.750281126246,6,4,0,1,82.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10839052288560722,3079.7727783865907,1,1,1_0,1_1_0,1_2_0,1_0_0 -4080,1,46.0,300.0,7,211,0.0,,,85,67,0.0,0.0,,449.0,0.0,,30,0,0,0,0,0,0,0,0,2,10.0,1,,5,111082,2,2,0,0,2,,1000.0,600.0,42,1.0,0.0,3.0,5.0,2.8,3,2,8.86637268138834,0.0,15035.826446280991,6,4,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029862010020144724,5369.938016528926,1,1,1_1,1_1_1,1_2_1,1_0_0 -4081,2,31.0,0.0,6,211,1600.0,,,63,46,0.0,0.0,,1604.0,6.881308016760767,,20,0,0,0,0,0,0,0,0,0,,1,,4,105861,2,2,0,0,2,,1200.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,66.34032355976173,1600.0,63016.94636651623,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025453470732632613,30008.069698341063,8,4,8,8_1,8_2,8_0_0 -4082,2,48.0,0.0,7,211,996.0,,,63,42,0.0,0.0,,1066.0,120.42289029331342,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,112555,2,2,0,0,2,,428.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,64.90511270760831,996.0,82072.64556962428,1,1,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012988493213560243,45595.91420534682,10,5,10,10_1,10_2,10_0_0 -4083,2,35.0,0.0,7,211,900.0,,,56,42,0.0,0.0,,900.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,5,131446,1,2,0,0,2,,500.0,650.0,43,2.0,1.0,3.0,3.0,1.8,2,2,75.92219370860516,900.0,61913.54129161535,1,1,2,3,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014536399973649748,34396.41182867519,9,5,9,9_1,9_2,9_0_0 -4084,2,38.0,0.0,8,211,124.0,,,0,48,0.0,0.0,,212.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,123025,2,1,0,0,2,,450.0,1050.0,12,1.0,3.0,4.0,1.0,1.0,1,1,83.63467035783613,124.0,33979.14132536946,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006239121759139829,33979.14132536946,9,5,9,9_1,9_2,9_0_0 -4085,0,20.0,0.0,7,211,600.0,,,0,56,0.0,0.0,,656.0,96.33831223465073,,20,0,0,0,0,0,0,0,0,1,25.0,1,,5,132001,2,1,0,0,1,,300.0,,32,1.0,0.0,1.0,3.0,1.6,1,1,126.09536253662671,600.0,40399.14352631413,0,1,5,0,27.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0162379680047601,25249.46470394633,7,4,7,7_1,7_2,7_0_0 -4086,2,51.0,0.0,7,211,640.0,,,0,56,0.0,0.0,,686.0,79.13504219274881,,20,0,0,0,0,0,0,0,0,0,,1,,5,100972,2,1,0,0,2,,360.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,61.30925591776677,640.0,33424.05573703862,0,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020524140020500688,33424.05573703862,8,4,8,8_1,8_2,8_0_0 -4088,2,40.0,0.0,7,211,500.0,,,0,34,0.0,0.0,,575.0,129.02452531426437,,10,0,0,0,0,0,0,0,0,2,4.0,1,,5,132716,1,3,0,0,2,,180.0,,12,1.0,2.0,3.0,1.0,1.0,4,3,89.37657352534215,500.0,45205.8314783363,0,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012719597919032936,45205.8314783363,10,5,10,10_1,10_2,10_0_0 -4089,2,41.0,0.0,9,211,900.0,,,0,81,0.0,0.0,,1000.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,123091,2,2,0,0,2,,0.0,600.0,32,2.0,0.0,4.0,7.0,3.3999999999999995,2,2,10.546682620195273,900.0,31343.65290570761,0,4,3,4,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031904385969572235,9218.721442855182,1,1,1_0,1_1_0,1_2_0,1_0_0 -4090,1,35.0,253.0,9,211,600.0,,,0,81,0.0,0.0,,750.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,120995,2,2,0,0,2,,950.0,635.0,32,1.0,0.0,6.0,5.0,2.2,3,2,10.546682620195273,600.0,9449.284910243243,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07937108544446392,4295.129504656019,1,1,1_1,1_1_1,1_2_1,1_0_0 -4092,2,44.0,0.0,9,211,0.0,,,33,53,0.0,0.0,,326.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,129221,2,2,0,0,2,,250.0,612.0,43,2.0,1.0,5.0,6.0,3.0999999999999996,1,1,311.9603870524971,0.0,41994.1117245098,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0077629931105253165,13546.48765306768,3,2,3_0,3_1_0,3_2_0,3_0_0 -4093,1,38.0,632.0,9,211,2160.0,,,0,52,0.0,0.0,,2436.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,129927,2,2,0,0,2,,1136.0,667.0,32,2.0,0.0,6.0,8.0,3.8999999999999995,2,2,8.154053824490994,2160.0,41969.341522897055,0,4,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.058042368824657416,10761.369621255657,2,1,2_1,2_1_1,2_2_1,2_0_0 -4094,1,43.0,500.0,9,211,600.0,,,85,81,0.0,0.0,,1015.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,120640,2,1,0,0,2,,500.0,550.0,42,2.0,0.0,4.0,8.0,3.8999999999999995,3,2,8.154053824490994,600.0,5148.962732919254,6,4,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1971270822200214,1320.2468545946808,1,1,1_1,1_1_1,1_2_1,1_0_0 -4095,2,50.0,0.0,9,211,600.0,,,0,47,0.0,0.0,,888.0,495.4541772067752,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,108605,2,2,0,0,2,,720.0,513.0,32,1.0,2.0,4.0,5.0,2.4,1,1,66.46290960755759,600.0,37051.0,0,1,2,3,84.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02396696445440069,15437.916666666668,3,2,3_0,3_1_0,3_2_0,3_0_0 -4096,1,23.0,271.0,9,211,700.0,,,46,53,0.0,0.0,,850.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,129607,2,1,0,0,2,,500.0,507.0,43,2.0,0.0,3.0,3.0,1.8,1,1,169.91306879937773,700.0,32323.154386971237,4,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02629693840594396,17957.3079927618,4,2,4_1,4_1_1,4_2_1,4_0_0 -4097,1,30.0,546.0,9,211,1320.0,,,0,85,0.0,0.0,,1596.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119706,2,1,0,0,2,,1000.0,555.0,31,0.0,0.0,4.0,8.0,3.0999999999999996,2,2,130.7691509029152,1320.0,6522.0,0,6,2,3,99.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.24471021159153633,2103.8709677419356,1,1,1_1,1_1_1,1_2_1,1_0_0 -4098,2,38.0,0.0,9,211,870.0,,,52,53,0.0,0.0,,974.0,178.91400843577995,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,103361,2,1,0,0,1,,500.0,548.0,43,2.0,0.0,3.0,4.0,2.3,1,1,113.89924559691823,870.0,69975.24538750696,1,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013919208065741106,30424.019733698682,8,4,8,8_1,8_2,8_0_0 -4099,1,34.0,80.0,9,211,700.0,,,81,42,0.0,0.0,,800.0,172.03270041901916,,44,0,0,0,0,0,0,0,0,0,,1,2006.0,6,133412,2,1,0,0,1,,400.0,400.0,43,2.0,1.0,4.0,6.0,2.6999999999999997,3,3,8.154053824490994,700.0,58217.35687000005,4,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013741606335485278,21561.984025925947,6,3,6,6_1,6_2,6_0_0 -4100,0,30.0,0.0,9,211,0.0,,,81,53,0.0,0.0,,880.0,0.0,,12,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,101678,2,1,0,0,2,,559.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,148.51818899862312,0.0,25055.984585459948,4,1,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512134983155546,16703.989723639967,4,2,4_0,4_1_0,4_2_0,4_0_0 -4101,0,46.0,0.0,9,211,600.0,,,0,53,0.0,0.0,,650.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,114050,2,2,0,0,2,,309.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,84.9374061127616,600.0,52575.78311421798,0,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012363106386602192,52575.78311421798,10,5,10,10_1,10_2,10_0_0 -4102,0,38.0,0.0,9,211,1500.0,,,81,53,0.0,0.0,,1550.0,86.01635020950958,,33,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,119624,2,1,0,0,2,,1273.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,131.52124747996342,1500.0,59109.54429800369,4,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026222499571060782,28147.402046668423,8,4,8,8_1,8_2,8_0_0 -4103,0,38.0,0.0,9,211,1000.0,,,0,53,0.0,0.0,,1075.0,129.02452531426437,,31,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,105295,2,3,0,0,2,,566.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,68.95598444516163,1000.0,40896.854223641334,0,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026285640311634835,25560.533889775834,7,4,7,7_1,7_2,7_0_0 -4104,2,43.0,0.0,6,211,900.0,,,42,34,0.0,0.0,,1000.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,103123,2,1,0,0,2,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,1,93.40480795196316,900.0,87386.47450638845,1,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011443418511258218,41612.606907804024,9,5,9,9_1,9_2,9_0_0 -4105,2,50.0,0.0,7,211,1200.0,,,81,81,0.0,0.0,,1350.0,258.04905062852873,,33,0,0,0,0,0,0,0,0,0,,1,,5,101562,1,2,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,8.154053824490994,1200.0,12142.70414045297,4,4,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11117787145142777,8095.136093635313,1,1,1_0,1_1_0,1_2_0,1_0_0 -4106,0,56.0,0.0,8,211,0.0,,,81,81,0.0,0.0,,493.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,122829,2,3,0,0,2,,0.0,,43,3.0,0.0,4.0,7.0,3.3999999999999995,1,1,121.53138446925401,0.0,4815.0,4,4,5,0,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1023883696780893,1416.1764705882356,1,1,1_0,1_1_0,1_2_0,1_0_0 -4107,0,23.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,534.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,130691,1,2,0,0,2,,0.0,,32,1.0,0.0,3.0,4.0,1.9,2,2,187.43808334914596,0.0,1603.9949020821587,0,4,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3329187638357268,844.2078432011361,1,1,1_0,1_1_0,1_2_0,1_0_0 -4108,0,27.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,300.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,132509,2,2,0,0,2,,0.0,,32,1.0,0.0,3.0,5.0,2.2,2,2,205.2550700183692,0.0,3466.0,0,4,5,0,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08655510675129832,1575.4545454545453,1,1,1_0,1_1_0,1_2_0,1_0_0 -4109,0,36.0,0.0,6,211,900.0,,,0,34,0.0,0.0,,1000.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,2,50.0,1,,4,116962,2,2,0,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,106.03138034311371,900.0,33348.12,0,1,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029986697900811196,33348.12,8,4,8,8_1,8_2,8_0_0 -4110,2,39.0,0.0,6,211,0.0,,,52,42,0.0,0.0,,1002.0,258.04905062852873,,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,117136,2,3,0,0,2,,300.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,113.11114746543952,0.0,87635.4279727104,1,1,1,2,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011433732032575021,36514.761655296,9,5,9,9_1,9_2,9_0_0 -4111,2,35.0,0.0,6,211,1500.0,,,37,53,0.0,0.0,,1575.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,2,3.0,1,,4,107243,2,2,0,0,2,,600.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,87.24439513105705,1500.0,83420.33974112828,1,1,1,2,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018880287528048587,55613.55982741885,10,5,10,10_1,10_2,10_0_0 -4112,2,46.0,0.0,6,211,1080.0,,,81,56,0.0,0.0,,1560.0,825.756962011292,,33,0,0,0,0,0,0,0,0,0,,1,,4,100075,2,2,0,0,2,,720.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,122.97607727549901,1080.0,10085.21627113751,4,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1546818588773851,5042.608135568755,1,1,1_0,1_1_0,1_2_0,1_0_0 -4113,2,47.0,0.0,8,211,900.0,,,0,81,0.0,0.0,,1300.0,688.1308016760767,,12,0,0,0,0,0,0,0,0,0,,1,2000.0,6,130686,1,2,0,0,2,,2000.0,,32,5.0,0.0,6.0,15.0,6.399999999999999,2,2,10.546682620195273,900.0,29866.759697007612,0,4,0,1,66.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0435266501350747,4666.681202657441,1,1,1_0,1_1_0,1_2_0,1_0_0 -4114,2,41.0,0.0,7,400,0.0,,,0,85,0.0,0.0,,180.0,309.6588607542345,,33,0,0,0,0,0,0,0,0,0,,1,,5,114450,2,3,0,0,2,,0.0,500.0,31,0.0,0.0,2.0,4.0,2.1,4,4,27.464721705171275,0.0,13154.008919842092,0,6,2,3,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013684041199674115,6263.813771353377,1,1,1_0,1_1_0,1_0_0,1_0_0 -4116,2,52.0,0.0,8,400,0.0,,,0,85,0.0,0.0,,180.0,309.6588607542345,,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,104369,2,3,0,0,2,,0.0,,31,1.0,0.0,4.0,3.0,2.0,1,1,46.597104306411616,0.0,20500.47000244864,0,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008780286499699775,10250.23500122432,2,1,2_0,2_1_0,2_0_0,2_0_0 -4117,2,36.0,0.0,8,400,0.0,,,0,52,0.0,0.0,,180.0,309.6588607542345,,71,0,0,0,0,0,0,0,0,1,10.0,1,2000.0,6,111371,2,2,0,0,2,,0.0,,32,1.0,0.0,4.0,5.0,2.8,1,1,6.69311278593562,0.0,9329.147777777778,0,1,0,1,55.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019294366890485293,3331.8384920634926,1,1,1_0,1_1_0,1_0_0,1_0_0 -4118,0,40.0,0.0,8,400,720.0,,,0,85,0.0,0.0,,1020.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,111343,2,2,0,0,1,,600.0,,31,0.0,1.0,4.0,8.0,3.499999999999999,3,3,5.5111023518125295,720.0,37638.944677863445,0,6,0,1,69.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027099590828854762,10753.984193675273,2,1,2_0,2_1_0,2_0_0,2_0_0 -4119,2,44.0,0.0,7,400,1800.0,,,0,45,0.0,0.0,,2160.0,619.317721508469,,31,0,0,0,0,0,0,0,0,1,3.0,1,,5,102489,2,1,0,0,2,,800.0,,32,1.0,0.0,4.0,10.0,3.8999999999999995,2,2,5.5111023518125295,1800.0,59412.81245234842,0,1,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036355794496892586,15234.054474961136,3,2,3_0,3_1_0,3_0_0,3_0_0 -4121,2,39.0,0.0,9,400,300.0,,,0,34,0.0,0.0,,328.0,48.169156117325365,,50,0,0,0,0,0,0,0,0,2,3.0,1,2005.0,6,123790,2,1,0,0,2,,200.0,500.0,12,1.0,0.0,4.0,1.0,1.0,3,3,81.18219967072021,300.0,48600.858105277985,0,1,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0067488520323961045,48600.858105277985,10,5,10,10_1,10_0,10_0_0 -4122,1,34.0,300.0,9,400,1000.0,,,85,69,0.0,0.0,,1300.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,0,,1,2013.0,6,121948,2,2,0,0,2,,0.0,550.0,42,1.0,0.0,3.0,2.0,1.5,2,2,85.05616335290799,1000.0,11493.94843888116,6,1,2,3,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11310299562528264,7662.63229258744,1,1,1_1,1_1_1,1_0_1,1_0_0 -4123,2,41.0,0.0,9,400,960.0,,,85,56,0.0,0.0,,1260.0,516.0981012570575,,12,0,0,0,0,0,0,0,0,0,,1,2009.0,6,122018,2,3,0,0,2,,0.0,,42,1.0,0.0,2.0,6.0,2.7,2,2,97.69445862448752,960.0,32386.70770061572,6,1,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03890484984295102,11995.07692615397,2,1,2_0,2_1_0,2_0_0,2_0_0 -4125,2,52.0,0.0,9,400,1500.0,,,0,85,0.0,0.0,,1950.0,774.1471518855863,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,100817,2,2,0,0,2,,1000.0,,31,1.0,0.0,5.0,2.0,1.5,5,4,25.338392378701943,1500.0,9456.0,0,6,0,1,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20621827411167512,6304.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -4126,2,46.0,0.0,7,400,960.0,,,85,21,0.0,0.0,,1260.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,1,,5,125258,2,3,0,0,2,,340.0,,41,0.0,0.0,4.0,5.0,2.4000000000000004,1,1,73.99062258688261,960.0,13939.436486613324,6,6,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09039102844724287,5808.098536088884,1,1,1_0,1_1_0,1_0_0,1_0_0 -4128,2,47.0,0.0,9,400,2160.0,,,85,65,0.0,0.0,,2610.0,774.1471518855863,,31,0,0,0,0,0,0,0,0,1,10.0,1,2009.0,6,101504,2,3,0,0,2,,1200.0,,42,1.0,0.0,5.0,6.0,3.0999999999999996,1,1,5.787927237187181,2160.0,39281.00852672391,6,1,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06644432253373403,12671.293073136747,2,1,2_0,2_1_0,2_0_0,2_0_0 -4129,2,38.0,0.0,9,400,2040.0,,,85,52,0.0,0.0,,2490.0,774.1471518855863,,10,0,0,0,0,0,0,0,0,1,20.0,1,2006.0,6,106746,2,1,0,0,2,,0.0,,42,1.0,0.0,5.0,10.0,4.499999999999999,2,2,6.69311278593562,2040.0,44515.76381097104,6,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055935241515194044,9892.391957993566,2,1,2_0,2_1_0,2_0_0,2_0_0 -4130,2,43.0,0.0,8,400,1116.0,,,0,85,0.0,0.0,,1466.0,602.1144514665671,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,102378,2,2,0,0,2,,360.0,,31,0.0,0.0,7.0,13.0,5.999999999999999,2,2,5.5111023518125295,1116.0,45541.54492711709,0,6,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03219038797094234,7590.257487852849,1,1,1_0,1_1_0,1_0_0,1_0_0 -4131,2,39.0,0.0,9,400,1390.0,,,0,56,0.0,0.0,,1840.0,774.1471518855863,,20,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,116754,2,1,0,0,2,,700.0,,32,1.0,1.0,5.0,7.0,2.8,2,1,6.69311278593562,1390.0,49555.46450945923,0,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03713011306046335,17698.380181949724,4,2,4_0,4_1_0,4_0_0,4_0_0 -4132,2,28.0,0.0,8,400,0.0,,,85,85,0.0,0.0,,240.0,412.878481005646,,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,125449,2,2,0,0,2,,0.0,,41,0.0,0.0,3.0,5.0,2.4,1,1,131.9698308104695,0.0,44164.991157732074,6,6,0,1,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005434168415042977,18402.07964905503,4,2,4_0,4_1_0,4_0_0,4_0_0 -4133,2,44.0,0.0,9,400,400.0,,,85,54,0.0,0.0,,680.0,481.69156117325366,,71,0,0,0,0,0,0,0,0,2,1.0,1,2008.0,6,106037,2,2,0,0,2,,0.0,,42,1.0,2.0,4.0,3.0,2.0,4,2,6.6931127859640664,400.0,26681.454336760846,6,1,0,1,180.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02548586712768194,13340.727168380423,3,2,3_0,3_1_0,3_0_0,3_0_0 -4134,2,47.0,0.0,9,400,900.0,,,0,68,0.0,0.0,,1200.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,1,5.0,1,2007.0,6,123472,2,3,0,0,2,,400.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,36.88319467298755,900.0,53250.73644518473,0,1,1,2,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022534899610923816,53250.73644518473,10,5,10,10_1,10_0,10_0_0 -4136,2,37.0,0.0,8,400,0.0,,,0,85,0.0,0.0,,264.0,454.1663291062106,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,108719,2,3,0,0,2,,0.0,,31,0.0,0.0,1.0,5.0,2.4,4,4,50.83020933240867,0.0,5104.878472222222,0,6,0,1,25.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0517152369907598,2127.032696759259,1,1,1_0,1_1_0,1_0_0,1_0_0 -4137,2,41.0,0.0,8,400,0.0,,,0,85,0.0,0.0,,320.0,550.5046413408613,,70,0,0,0,0,0,0,0,0,0,,1,2002.0,6,118461,2,3,0,0,2,,0.0,,31,0.0,0.0,5.0,10.0,4.499999999999999,2,2,144.94688489827038,0.0,30808.0,0,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01038691249026227,6846.2222222222235,1,1,1_0,1_1_0,1_0_0,1_0_0 -4138,2,34.0,0.0,6,400,0.0,,,0,85,0.0,0.0,,360.0,619.317721508469,,41,0,0,0,0,0,0,0,0,0,,1,,4,118626,2,1,0,0,2,,0.0,,31,0.0,0.0,3.0,9.0,3.999999999999999,1,1,117.37468432204405,0.0,29299.308354637404,0,6,0,1,32.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012286979461855465,7324.827088659353,1,1,1_0,1_1_0,1_0_0,1_0_0 -4139,2,52.0,0.0,9,400,1200.0,,,0,85,0.0,0.0,,1650.0,774.1471518855863,,31,0,0,0,0,0,0,0,0,0,,1,2013.0,6,115941,2,3,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,56.807603806511096,1200.0,15709.315662650602,0,6,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10503321948790725,15709.315662650602,3,2,3_0,3_1_0,3_0_0,3_0_0 -4140,2,37.0,0.0,7,400,1200.0,,,84,85,0.0,0.0,,1650.0,774.1471518855863,,41,0,0,0,0,0,0,0,0,0,,1,,5,127979,2,3,0,0,2,,0.0,,41,0.0,0.0,3.0,10.0,4.499999999999999,2,2,107.39074359915672,1200.0,11214.465823947374,3,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14713139492356286,2492.1035164327504,1,1,1_0,1_1_0,1_0_0,1_0_0 -4141,2,33.0,0.0,9,400,0.0,,,52,81,0.0,0.0,,300.0,516.0981012570575,,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,113467,2,1,0,0,2,,0.0,,43,2.0,0.0,5.0,10.0,4.499999999999999,1,1,5.787927237187181,0.0,44178.87716638009,4,4,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00679057547954837,9817.528259195577,2,1,2_0,2_1_0,2_0_0,2_0_0 -4142,2,33.0,0.0,7,400,0.0,,,0,81,0.0,0.0,,180.0,309.6588607542345,,31,0,0,0,0,0,0,0,0,0,,1,,5,104631,2,1,0,0,2,,0.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,68.54001740184702,0.0,13230.074558376726,0,4,0,1,58.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013605365503101537,7350.041421320403,1,1,1_0,1_1_0,1_0_0,1_0_0 -4144,2,28.0,0.0,8,400,0.0,,,0,85,0.0,0.0,,155.0,266.6506856494797,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,131635,2,2,0,0,2,,0.0,,31,0.0,0.0,2.0,2.0,1.3,2,2,76.75432873757798,0.0,11736.154045708816,0,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013207052275926277,9027.810804391396,1,1,1_0,1_1_0,1_0_0,1_0_0 -4145,2,23.0,0.0,9,400,0.0,,,0,85,0.0,0.0,,258.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2013.0,6,131121,2,2,0,0,2,,0.0,,31,0.0,0.0,2.0,5.0,2.2,4,4,142.690519780717,0.0,21651.283884520675,0,6,0,1,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011916152472808044,9841.492674782125,2,1,2_0,2_1_0,2_0_0,2_0_0 -4147,2,57.0,0.0,7,400,180.0,,,86,85,0.0,0.0,,180.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,101652,1,1,0,0,2,,0.0,,41,1.0,0.0,4.0,7.0,3.6,2,2,6.69311278593562,180.0,5940.904501456075,7,6,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030298416673064384,1650.2512504044653,1,1,1_0,1_1_0,1_0_0,1_0_0 -4148,2,42.0,0.0,9,120,0.0,,,0,47,0.0,0.0,,486.0,0.0,,60,0,0,0,0,0,0,0,0,2,5.0,2,2011.0,6,114631,2,1,0,0,1,,456.0,850.0,12,1.0,0.0,3.0,1.0,1.0,1,1,251.42008505724078,0.0,31545.857700578854,0,1,2,3,76.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015406143165068614,31545.857700578854,8,4,8,8_0,8_2,8_0_0 -4149,1,40.0,522.0,9,111,343.0,,,85,64,0.0,0.0,,383.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,101461,1,3,0,0,2,,200.0,520.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,1,1,132.7751633586769,343.0,39776.93675941353,6,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009628695198841825,14732.198799782791,3,2,3_1,3_0_1,3_2_1,3_0_0 -4150,2,32.0,0.0,9,120,400.0,,,46,42,0.0,0.0,,576.0,302.77755273747374,,60,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,106631,2,1,0,0,1,,250.0,820.0,43,2.0,0.0,4.0,3.0,1.8,2,2,251.4665559943311,400.0,42516.15767793324,4,1,2,3,108.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013547790568547916,23620.0875988518,6,3,6,6_1,6_2,6_0_0 -4151,2,58.0,0.0,7,400,276.0,,,0,63,0.0,0.0,,516.0,412.878481005646,,44,0,0,0,0,0,0,0,0,0,,1,,5,121251,2,2,0,0,2,,420.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,127.00798392720559,276.0,11897.693692876514,0,1,0,1,88.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04336974991287125,7931.795795251009,1,1,1_0,1_1_0,1_0_0,1_0_0 -4152,2,54.0,0.0,9,111,360.0,,,85,33,0.0,0.0,,444.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,112012,2,1,0,0,1,,280.0,2000.0,42,1.0,2.0,5.0,3.0,1.8,2,2,105.17559344351955,360.0,71617.50105647965,7,1,2,3,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006199601961116301,39787.50058693314,9,5,9,9_1,9_2,9_0_0 -4153,2,38.0,0.0,9,120,0.0,,,47,43,0.0,0.0,,431.0,0.0,,31,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,105554,2,1,0,0,1,,232.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,246.56921428710842,0.0,67488.9365518772,1,1,1,2,74.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006386231907339363,32137.588834227234,8,4,8,8_1,8_1,8_0_0 -4154,2,49.0,0.0,9,120,190.0,,,0,42,0.0,0.0,,256.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,100947,2,1,0,0,1,,150.0,,12,1.0,0.0,6.0,1.0,1.0,3,3,248.7628537336734,190.0,19322.0,0,1,0,1,143.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013249146051133424,19322.0,5,3,5,5_1,5_1,5_0_0 -4155,0,41.0,0.0,9,111,0.0,,,0,42,0.0,0.0,,874.0,0.0,,20,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,101993,2,2,0,0,1,,275.0,,32,1.0,0.0,5.0,5.0,2.6,2,2,206.03000556568716,0.0,84650.78174853773,0,1,5,0,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01032477174984976,32557.992980206818,8,4,8,8_1,8_2,8_0_0 -4156,2,36.0,0.0,9,111,2400.0,,,85,22,0.0,0.0,,2400.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,115580,2,1,0,0,2,,480.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,189.3153851872568,2400.0,104955.99843629457,6,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022866725444536974,49979.046874425985,10,5,10,10_1,10_2,10_0_0 -4157,1,38.0,250.0,2,111,300.0,,,0,68,0.0,0.0,,340.0,68.81308016760767,,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,101786,2,2,0,0,1,,200.0,700.0,32,1.0,0.0,4.0,4.0,2.1,2,2,151.98977100871716,300.0,36275.609498726175,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009372688831374126,17274.099761298177,4,2,4_1,4_0_1,4_2_1,4_0_1 -4158,2,36.0,0.0,9,120,0.0,,,85,53,0.0,0.0,,1428.0,0.0,,31,0,0,0,0,0,0,0,0,2,35.0,1,2012.0,6,111680,2,1,0,0,1,,74.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,246.7501388042551,0.0,45615.45973914372,6,1,1,2,142.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03130517609964148,16894.61471820138,4,2,4_0,4_1_0,4_2_0,4_0_0 -4159,1,90.0,200.0,9,111,270.0,,,0,86,0.0,0.0,,270.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,2005.0,6,102198,2,1,0,0,1,,210.0,375.0,11,0.0,4.0,1.0,1.0,1.0,2,2,151.44314450212406,270.0,10559.434199475661,0,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02556955182441566,10559.434199475661,2,1,2_1,2_0_1,2_2_1,2_0_0 -4160,1,76.0,183.0,8,111,648.0,,,0,77,0.0,0.0,,753.0,180.63433543997013,,10,0,0,0,0,0,0,0,0,0,,8,2001.0,6,123649,2,1,0,0,1,,720.0,560.0,11,0.0,6.0,2.0,1.0,1.0,1,1,155.92939188026895,648.0,11066.620386556438,0,5,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06804245322399717,11066.620386556438,2,1,2_1,2_0_1,2_2_1,2_0_0 -4161,2,41.0,0.0,5,111,444.0,,,0,42,0.0,0.0,,696.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,3,124025,1,3,0,0,2,,90.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,109.97100549266688,444.0,19391.209236095514,0,4,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035892552729741053,9695.604618047757,1,1,1_0,1_1_0,1_2_0,1_0_0 -4162,2,44.0,0.0,9,120,840.0,,,46,52,0.0,0.0,,1060.0,378.4719409218422,,31,0,0,0,0,0,0,0,0,1,15.0,1,2011.0,6,122096,2,1,0,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,239.05078299068865,840.0,37361.372887167374,1,1,1,2,110.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02837154842251746,16244.075168333642,4,2,4_0,4_1_0,4_2_0,4_0_0 -4163,2,25.0,0.0,9,112,300.0,,,47,54,0.0,0.0,,322.0,37.84719409218422,,71,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,122126,2,1,0,0,1,,300.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,244.8402521041849,300.0,37944.071859745876,1,1,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008486174103565398,25296.04790649725,7,4,7,7_1,7_1,7_0_0 -4164,2,34.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,403.0,0.0,,42,0,0,0,0,0,0,0,0,2,13.0,2,2005.0,6,107555,2,2,0,0,1,,197.0,525.0,12,1.0,0.0,2.0,1.0,1.0,1,1,179.08501252923145,0.0,36759.00855634976,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01096329895247911,36759.00855634976,9,5,9,9_0,9_2,9_0_0 -4165,1,59.0,250.0,6,111,720.0,,,85,68,0.0,0.0,,984.0,454.1663291062106,,12,0,0,0,0,0,0,0,0,0,,2,,4,122020,2,1,0,0,2,,600.0,367.0,42,1.0,0.0,4.0,7.0,3.6,1,1,158.89423236250315,720.0,28315.434852967348,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03475136458647325,7865.398570268708,1,1,1_1,1_0_1,1_2_1,1_0_0 -4166,2,48.0,0.0,9,112,960.0,,,85,22,0.0,0.0,,1224.0,454.1663291062106,,70,2,2,2,2,1,2,2,2,0,,1,2011.0,6,123657,2,1,0,0,1,,546.0,,42,1.0,1.0,6.0,4.0,2.5,1,1,247.21057406138866,960.0,17703.343462271983,6,4,1,2,144.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.069139482189254,7081.337384908793,1,1,1_0,1_1_0,1_1_0,1_0_0 -4167,2,37.0,0.0,8,111,280.8,,,0,45,0.0,0.0,,281.0,0.0,,70,0,0,0,0,0,0,0,0,1,15.0,2,2001.0,6,115327,2,1,0,0,1,,131.0,380.0,12,1.0,0.0,1.0,1.0,1.0,2,2,173.9325543670062,280.8,25046.084848980743,0,1,2,3,21.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011219318376278493,25046.084848980743,7,4,7,7_0,7_2,7_0_0 -4168,1,58.0,118.0,2,111,480.0,,,0,68,0.0,0.0,,524.0,75.69438818436844,,33,0,0,0,0,0,0,0,0,3,45.0,2,,2,113659,2,1,0,0,1,,180.0,338.0,12,1.0,0.0,2.0,1.0,1.0,2,2,180.49399850863307,480.0,17398.05504587156,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030118309122394785,17398.05504587156,4,2,4_1,4_0_1,4_2_1,4_0_1 -4169,2,64.0,0.0,9,112,480.0,,,0,78,0.0,0.0,,744.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,2012.0,6,109631,2,1,0,0,2,,120.0,,31,0.0,2.0,3.0,2.0,1.3,1,1,239.00614560966602,480.0,33372.60079593524,0,5,0,1,100.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0222937374449587,25671.231381488647,7,4,7,7_1,7_1,7_0_0 -4170,1,38.0,357.0,7,111,240.0,,,0,67,0.0,0.0,,324.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,2,,5,105221,2,1,0,0,1,,135.0,548.0,32,1.0,1.0,3.0,2.0,1.5,1,1,150.01652517385435,240.0,7345.079395198888,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04411116375566786,4896.719596799258,1,1,1_1,1_0_1,1_2_1,1_0_0 -4171,1,40.0,369.0,9,300,524.0,,,43,55,0.0,155.27587572291867,,850.0,302.77755273747374,,60,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,101331,2,1,0,0,1,,160.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,195.26957909985768,524.0,22479.71276648435,1,1,1,2,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03781187103365882,10704.625126897308,2,1,2_1,2_1_1,2_1_1,2_0_0 -4173,2,44.0,0.0,9,300,520.0,,,52,45,0.0,0.0,,586.0,113.54158227655265,,60,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,120713,2,1,0,0,2,,160.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,203.60798709967784,520.0,53832.810338463634,1,1,1,2,150.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01088555467038848,22430.337641026515,6,3,6,6_1,6_1,6_0_0 -4174,2,39.0,0.0,5,111,500.0,,,0,42,0.0,0.0,,500.0,0.0,,20,0,0,0,0,0,0,0,0,2,25.0,2,,3,132852,2,2,0,0,2,,600.0,450.0,12,1.0,0.0,2.0,1.0,1.0,3,2,153.93908718575142,500.0,41779.42207066302,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011967614084137695,41779.42207066302,9,5,9,9_0,9_2,9_0_0 -4175,2,24.0,0.0,7,111,0.0,,,0,63,0.0,0.0,,522.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,124153,2,1,0,0,2,,70.0,482.0,12,1.0,0.0,2.0,1.0,1.0,1,1,129.65715919551994,0.0,17101.518016978906,0,1,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030523606119745778,17101.518016978906,4,2,4_0,4_0_0,4_2_0,4_0_0 -4176,1,53.0,288.0,9,111,400.0,,,0,67,0.0,0.0,,444.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,1,30.0,1,2011.0,6,125137,2,3,0,0,1,,150.0,433.0,12,1.0,0.0,2.0,1.0,1.0,2,2,261.7014081060333,400.0,4929.211421475218,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0900752599220261,4929.211421475218,1,1,1_1,1_1_1,1_2_1,1_0_0 -4177,2,55.0,0.0,9,111,480.0,,,43,63,0.0,0.0,,546.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,0,,1,2011.0,6,102959,2,1,0,0,1,,300.0,,43,3.0,1.0,6.0,4.0,2.5,1,1,253.1090024709405,480.0,55109.04627808792,1,4,0,1,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00990762927096956,22043.618511235167,6,3,6,6_1,6_2,6_0_0 -4178,2,54.0,0.0,6,111,0.0,,,0,37,0.0,0.0,,688.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,2,2.0,1,,4,107161,2,1,0,0,2,,479.0,,32,2.0,0.0,6.0,5.0,3.0,5,5,136.02722740704942,0.0,172901.562976053,0,1,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003979142745489747,57633.85432535101,10,5,10,10_1,10_2,10_0_0 -4179,2,41.0,0.0,9,111,600.0,,,65,52,0.0,0.0,,668.0,116.98223628493304,,50,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,132254,2,2,0,0,1,,200.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,256.7578897203703,600.0,59614.58414537564,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011205311746719907,24839.410060573184,7,4,7,7_1,7_2,7_0_0 -4180,1,34.0,253.0,5,111,0.0,,,0,67,0.0,0.0,,145.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,3,109899,1,3,0,0,2,,0.0,453.0,12,1.0,0.0,1.0,1.0,1.0,1,1,173.9325543670062,0.0,4929.211421475218,0,4,3,4,10.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029416470019580594,4929.211421475218,1,1,1_1,1_0_1,1_2_1,1_0_0 -4181,2,26.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,755.0,0.0,,70,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,117602,2,1,0,0,1,,271.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,161.71911689996747,0.0,33842.962287961585,0,1,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02230892182474712,33842.962287961585,9,5,9,9_0,9_2,9_0_0 -4182,2,39.0,0.0,7,111,1200.0,,,0,43,0.0,0.0,,1200.0,0.0,,12,0,0,0,0,0,0,0,0,2,30.0,2,,5,114812,2,1,0,0,1,,600.0,990.0,32,1.0,0.0,3.0,3.0,1.8,2,2,173.9325543670062,1200.0,47892.86305334128,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02505592531946743,26607.146140745153,7,4,7,7_0,7_2,7_0_0 -4183,1,57.0,327.0,9,111,350.0,,,0,77,0.0,0.0,,434.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,122143,2,2,0,0,2,,288.0,,31,0.0,2.0,4.0,2.0,1.5,1,1,255.05989559860842,350.0,5795.0,0,6,1,2,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07489214840379638,3863.3333333333335,1,1,1_1,1_1_1,1_2_1,1_0_0 -4184,2,57.0,0.0,2,111,300.0,,,0,54,0.0,0.0,,388.0,151.38877636873687,,42,0,0,0,0,0,0,0,0,0,,1,,2,108346,2,1,0,0,1,,220.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,140.90285474916516,300.0,50021.045799188585,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007756735066228742,33347.36386612572,8,4,8,8_1,8_2,8_0_1 -4185,1,55.0,305.0,5,111,1200.0,,,52,52,0.0,0.0,,1464.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,110651,2,2,0,0,2,,603.0,,43,2.0,4.0,3.0,3.0,1.8,2,2,107.31365980181243,1200.0,18309.254434852443,4,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0799595639030071,10171.808019362468,2,1,2_1,2_1_1,2_2_1,2_0_0 -4186,2,43.0,0.0,9,111,1000.0,,,45,33,0.0,0.0,,1044.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,115626,2,3,0,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,245.00043010618128,1000.0,62269.21376646355,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016765909457528257,34594.00764803531,9,5,9,9_1,9_2,9_0_0 -4187,2,62.0,0.0,6,111,359.0,,,74,74,0.0,0.0,,401.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,0,,1,,4,129929,2,1,0,0,2,,411.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,150.37826518032273,359.0,103981.65855808022,5,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003856449354248534,69321.10570538681,10,5,10,10_1,10_2,10_0_0 -4188,1,25.0,452.0,6,111,250.0,,,67,52,0.0,0.0,,410.0,275.25232067043066,,10,0,0,0,0,0,0,0,0,1,20.0,2,,4,123629,2,1,0,0,2,,300.0,519.0,43,2.0,0.0,4.0,7.0,3.1999999999999997,2,2,142.67813066844892,250.0,44312.62029114576,4,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009252443148389565,13847.69384098305,3,2,3_1,3_0_1,3_2_1,3_0_0 -4189,2,58.0,0.0,9,111,600.0,,,85,38,0.0,0.0,,644.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,132049,2,1,0,0,1,,1400.0,,42,1.0,0.0,7.0,3.0,1.8,2,2,251.72368761809156,600.0,35538.0,6,4,1,2,175.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018121447464685688,19743.333333333332,5,3,5,5_1,5_2,5_0_0 -4190,2,68.0,0.0,2,111,800.0,,,0,75,0.0,0.0,,884.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,0,,1,,2,117603,2,1,0,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,124.36951732511449,800.0,23244.22356995677,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03803095411380283,23244.22356995677,6,3,6,6_1,6_2,6_0_1 -4191,1,38.0,253.0,2,111,500.0,,,0,52,0.0,0.0,,540.0,68.81308016760767,,20,0,0,0,0,0,0,0,0,0,,2,,2,102501,1,2,0,0,2,,600.0,359.0,12,1.0,0.0,3.0,1.0,1.0,2,2,129.65715919551994,500.0,9457.217981620985,0,4,2,3,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05709924430730347,9457.217981620985,1,1,1_1,1_0_1,1_2_1,1_0_1 -4192,2,55.0,0.0,9,111,420.0,,,21,42,0.0,0.0,,420.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,124058,2,3,0,0,2,,356.0,1070.0,43,2.0,3.0,4.0,2.0,1.5,1,1,259.7967597619863,420.0,76191.67529657032,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005512413244165873,50794.450197713544,10,5,10,10_1,10_2,10_0_0 -4193,1,31.0,58.0,2,111,500.0,,,64,55,0.0,0.0,,588.0,151.38877636873687,,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,121698,2,1,0,0,1,,600.0,227.0,43,2.0,0.0,3.0,4.0,2.1,2,2,117.85411570046277,500.0,31571.315851628962,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018624500884389376,15033.959929347124,3,2,3_1,3_0_1,3_2_1,3_0_1 -4194,1,54.0,239.0,9,111,600.0,,,52,68,0.0,103.51725048194578,,880.0,309.6588607542345,,33,0,0,0,0,0,0,0,0,0,,1,2012.0,6,132930,2,1,0,0,1,,550.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,255.05989559860842,600.0,17549.706422018346,4,1,1,2,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05014328894390665,11699.804281345563,2,1,2_1,2_1_1,2_2_1,2_0_0 -4195,2,66.0,0.0,9,111,700.0,,,77,77,0.0,0.0,,800.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,0,,8,2009.0,6,110162,2,1,0,0,1,,720.0,600.0,41,0.0,4.0,3.0,2.0,1.5,2,2,241.7059091093056,700.0,30100.35755769792,7,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0265777573726996,20066.90503846528,5,3,5,5_0,5_2,5_0_0 -4196,2,37.0,0.0,9,111,520.0,,,46,46,0.0,0.0,,520.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,101696,2,1,0,0,1,,120.0,760.0,43,2.0,0.0,3.0,2.0,1.5,4,3,143.2297354647647,520.0,85261.39718944461,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006098891375713652,56840.93145962974,10,5,10,10_0,10_2,10_0_0 -4197,2,47.0,0.0,9,111,200.0,,,56,63,0.0,0.0,,326.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,3,45.0,8,2009.0,6,120016,2,1,0,0,1,,280.0,560.0,43,3.0,0.0,2.0,3.0,2.0,4,3,217.44715233134696,200.0,20497.17261594112,4,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015904632609985554,10248.58630797056,2,1,2_0,2_0_0,2_2_0,2_0_0 -4198,2,36.0,0.0,8,111,400.0,,,0,34,0.0,0.0,,400.0,0.0,,60,0,0,0,0,0,0,0,0,2,30.0,2,2000.0,6,100184,2,1,0,0,1,,240.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,147.6259021286539,400.0,103563.64218107586,0,1,1,2,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003862359333603003,103563.64218107586,10,5,10,10_0,10_2,10_0_0 -4199,2,53.0,0.0,9,111,480.0,,,0,54,0.0,0.0,,500.0,34.40654008380383,,10,0,0,0,0,0,0,0,0,2,45.0,2,2011.0,6,130405,2,1,0,0,1,,378.0,680.0,32,1.0,1.0,3.0,2.0,1.3,3,3,256.13722546070346,480.0,30891.0,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01618594412612088,23762.30769230769,6,3,6,6_0,6_2,6_0_0 -4200,2,47.0,0.0,9,111,0.0,,,46,53,0.0,0.0,,463.0,0.0,,31,0,0,0,0,0,0,0,0,0,,8,2008.0,6,122840,2,2,0,0,1,,451.0,600.0,43,2.0,3.0,3.0,3.0,1.8,2,2,172.359126439801,0.0,36687.68747820584,4,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012620037724510251,20382.048599003243,5,3,5,5_0,5_2,5_0_0 -4201,2,50.0,0.0,8,111,0.0,,,85,33,0.0,0.0,,545.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104059,2,1,0,0,1,,925.0,,42,1.0,0.0,6.0,5.0,3.0,2,2,128.2490936392957,0.0,48065.681035136935,6,1,1,2,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011338651367523421,16021.893678378978,4,2,4_0,4_1_0,4_2_0,4_0_0 -4202,0,30.0,0.0,7,111,0.0,,,42,43,0.0,0.0,,352.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,111359,2,2,0,0,2,,253.0,,43,2.0,0.0,2.0,2.0,1.5,3,2,125.83512430532878,0.0,21292.0,4,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01653203080969378,14194.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0 -4203,2,59.0,0.0,5,111,300.0,,,0,55,0.0,0.0,,340.0,68.81308016760767,,42,0,0,0,0,0,0,0,0,2,3.0,2,,3,105027,1,3,0,0,2,,200.0,200.0,12,1.0,0.0,3.0,1.0,1.0,2,2,149.4356901279357,300.0,34188.960410552325,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009944730577273124,34188.960410552325,9,5,9,9_0,9_2,9_0_0 -4204,1,28.0,158.0,9,111,800.0,,,0,54,0.0,0.0,,888.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,124687,2,1,0,0,1,,200.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,244.68896743074967,800.0,24747.08244542667,0,1,1,2,59.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03588301780455356,15466.926528391668,3,2,3_1,3_1_1,3_2_1,3_0_0 -4205,1,84.0,253.0,2,111,180.0,,,0,77,0.0,0.0,,180.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,2,122054,2,1,0,0,1,,130.0,291.0,11,0.0,2.0,2.0,1.0,1.0,3,3,149.4769423591217,180.0,2160.9932365200493,0,5,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08329503163548194,2160.9932365200493,1,1,1_1,1_0_1,1_2_1,1_0_1 -4206,2,49.0,0.0,7,111,0.0,,,81,63,0.0,0.0,,482.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,5,114638,1,1,0,0,1,,0.0,800.0,43,2.0,0.0,5.0,4.0,2.1,1,1,166.74145248628608,0.0,13055.94836147561,4,4,2,3,93.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03691803817348458,6217.118267369337,1,1,1_0,1_1_0,1_2_0,1_0_0 -4207,2,77.0,0.0,2,111,1000.0,,,77,75,0.0,0.0,,1105.0,180.63433543997013,,12,0,0,0,0,0,0,0,0,0,,1,,2,121068,2,2,0,0,1,,1000.0,,41,0.0,7.0,6.0,2.0,1.5,3,3,113.16476192131793,1000.0,68981.0,5,5,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016018903756106755,45987.333333333336,10,5,10,10_1,10_2,10_0_1 -4208,2,65.0,0.0,6,111,850.0,,,68,75,0.0,0.0,,930.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,1,,4,118337,2,1,0,0,2,,300.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,119.67299577367855,850.0,31702.96167655174,1,5,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029334798732316862,21135.307784367826,5,3,5,5_1,5_2,5_0_0 -4209,0,38.0,0.0,1,111,360.0,,,63,52,0.0,0.0,,402.0,72.25373417598806,,60,0,0,0,0,0,0,0,0,2,3.0,1,,1,117220,2,2,0,0,2,,120.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,155.5105197183949,360.0,21640.901373758414,4,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01857593605077199,12022.72298542134,2,1,2_0,2_1_0,2_2_0,2_1_0 -4210,1,29.0,174.0,7,111,530.0,,,53,35,0.0,0.0,,570.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,2,,5,116180,2,1,0,0,1,,160.0,650.0,43,2.0,0.0,3.0,2.0,1.5,1,1,125.6663344827409,530.0,32850.52002191435,4,1,2,3,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017351323498676945,21900.346681276234,6,3,6,6_0,6_2,6_0_0 -4211,2,51.0,0.0,7,111,960.0,,,85,56,0.0,0.0,,1440.0,825.756962011292,,31,0,0,0,0,0,0,0,0,0,,1,,5,102965,2,1,0,0,2,,480.0,,42,1.0,2.0,8.0,5.0,2.8,3,2,173.08496172642987,960.0,21725.021272095157,7,1,1,2,140.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06628301910339748,7758.9361686054135,1,1,1_0,1_1_0,1_2_0,1_0_0 -4212,1,59.0,309.0,5,111,0.0,,,52,68,0.0,0.0,,365.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,108177,2,1,0,0,1,,769.0,730.0,43,2.0,5.0,3.0,2.0,1.5,2,2,158.59621499911702,0.0,27539.90923755574,4,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013253493206951286,18359.939491703826,4,2,4_1,4_1_1,4_2_1,4_0_0 -4213,2,50.0,0.0,9,111,600.0,,,22,46,0.0,0.0,,688.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,126756,2,2,0,0,2,,240.0,,43,2.0,0.0,5.0,3.0,2.0,4,4,240.56137769648114,600.0,70796.2575231749,1,1,1,2,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009718027817710358,35398.12876158745,9,5,9,9_1,9_2,9_0_0 -4214,1,39.0,253.0,7,111,0.0,,,0,63,0.0,0.0,,485.0,36.12686708799403,,41,0,0,0,0,0,0,0,0,3,10.0,1,,5,132380,2,1,0,0,2,,120.0,312.0,12,1.0,0.0,1.0,1.0,1.0,3,3,149.64606471836592,0.0,9470.115229345402,0,1,2,3,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.051213737980411504,9470.115229345402,1,1,1_1,1_1_1,1_2_1,1_0_0 -4215,1,47.0,357.0,7,111,276.0,,,0,52,0.0,0.0,,364.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,2,,5,132059,2,1,0,0,1,,344.0,473.0,32,3.0,1.0,4.0,5.0,2.5999999999999996,2,2,125.17646757192625,276.0,8756.834866366846,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041567530455330064,3368.013410141095,1,1,1_1,1_0_1,1_2_1,1_0_0 -4216,2,29.0,0.0,9,111,0.0,,,55,52,0.0,0.0,,472.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,116601,2,1,0,0,2,,293.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,251.20090548895374,0.0,33769.46164634508,1,1,1,2,83.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01397712539640339,22512.97443089672,6,3,6,6_1,6_2,6_0_0 -4217,2,29.0,0.0,5,111,360.0,,,0,68,0.0,0.0,,612.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,3,130110,2,1,0,0,2,,300.0,,22,3.0,2.0,4.0,4.0,2.5,3,2,112.81076765447892,360.0,30391.237093093678,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02013738361901284,12156.494837237471,2,1,2_0,2_1_0,2_2_0,2_0_0 -4219,2,40.0,0.0,9,111,400.0,,,43,45,0.0,0.0,,520.0,206.439240502823,,50,0,0,0,0,0,0,0,0,2,60.0,1,2005.0,6,119131,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,150.7441673867193,400.0,75726.0228924253,1,1,1,2,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006866860032233574,36060.01090115491,9,5,9,9_1,9_2,9_0_0 -4220,2,92.0,0.0,2,111,600.0,,,77,74,0.0,0.0,,705.0,180.63433543997013,,12,0,0,0,0,0,0,0,0,0,,1,,2,119929,2,1,0,0,2,,720.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,122.20239090465299,600.0,68674.25376951085,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010265855998467322,45782.83584634057,10,5,10,10_1,10_2,10_0_1 -4221,2,41.0,0.0,9,211,1200.0,,,48,11,0.0,0.0,,1344.0,247.7270886033876,,31,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,107513,2,2,0,0,1,,640.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,1,253.34303527162342,1200.0,72197.35899117094,1,1,1,2,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018615639391523428,27768.214996604213,7,4,7,7_1,7_2,7_0_0 -4222,2,70.0,0.0,6,111,1307.0,,,31,31,0.0,0.0,,1349.0,72.25373417598806,,42,0,0,0,0,0,0,0,0,0,,1,,4,132686,2,1,0,0,2,,209.0,,43,2.0,2.0,6.0,2.0,1.5,3,3,146.82434142342328,1307.0,126072.72718998749,1,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01070017306730504,84048.484793325,10,5,10,10_1,10_2,10_0_0 -4223,1,30.0,300.0,2,111,800.0,,,0,85,0.0,0.0,,1064.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,2,,2,108071,2,1,0,0,1,,883.0,280.0,31,0.0,0.0,3.0,5.0,2.4,1,1,125.17646757192625,800.0,24622.171464562016,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04321308547182301,10259.238110234173,2,1,2_1,2_0_1,2_2_1,2_0_1 -4224,0,51.0,0.0,7,111,380.0,,,0,52,0.0,0.0,,443.0,108.38060126398207,,31,0,0,0,0,0,0,0,0,0,,1,,5,116375,2,2,0,0,2,,100.0,,12,1.0,3.0,2.0,1.0,1.0,2,2,144.84163626870026,380.0,7657.144578313253,0,4,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057854464607430184,7657.144578313253,1,1,1_0,1_1_0,1_2_0,1_0_0 -4225,2,59.0,0.0,2,111,750.0,,,77,21,0.0,0.0,,835.0,146.2277953561663,,50,0,0,0,0,0,0,0,0,2,1.0,1,,2,123107,2,1,0,0,2,,400.0,,42,1.0,2.0,3.0,3.0,2.0,3,3,137.8944536392573,750.0,8260.0,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10108958837772397,4130.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -4226,1,26.0,89.0,5,111,0.0,,,54,55,0.0,0.0,,1210.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,3,132590,2,1,0,0,1,,238.0,452.0,43,2.0,0.0,3.0,3.0,1.8,1,1,124.81733629007391,0.0,33698.388979452255,4,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03590676102462355,18721.32721080681,5,3,5,5_0,5_2,5_0_0 -4227,1,37.0,110.0,9,211,600.0,,,81,33,0.0,0.0,,600.0,0.0,,70,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,130555,2,1,0,0,1,,600.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,252.3050309289285,600.0,34219.20510988312,4,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017534013372704244,14258.002129117967,3,2,3_1,3_1_1,3_2_1,3_0_0 -4228,2,67.0,0.0,2,111,0.0,,,0,74,0.0,0.0,,620.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,1,,2,127648,2,1,0,0,2,,151.0,785.0,11,0.0,0.0,2.0,1.0,1.0,3,3,158.74545539180133,0.0,37870.07346110818,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016371766498861635,37870.07346110818,9,5,9,9_1,9_2,9_0_1 -4229,1,36.0,17.0,9,211,240.0,,,11,11,0.0,0.0,,372.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,105226,1,1,0,0,1,,200.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,173.08496172642987,240.0,30262.06247240215,1,1,1,2,170.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.012292618863610166,12609.19269683423,2,1,2_1,2_1_1,2_2_1,2_0_0 -4230,2,36.0,0.0,8,111,682.0,,,52,42,0.0,0.0,,682.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,2,2002.0,6,115193,2,3,0,0,2,,210.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,122.5737317122783,682.0,75862.32676357454,1,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008989969449862217,36124.917506464066,9,5,9,9_0,9_2,9_0_0 -4231,2,42.0,0.0,6,111,0.0,,,74,42,0.0,0.0,,516.0,216.76120252796414,,44,0,0,0,0,0,0,0,0,0,,1,,4,122497,1,3,0,0,2,,0.0,1100.0,42,1.0,2.0,6.0,3.0,1.8,2,2,150.9630851333323,0.0,58335.34524578596,5,1,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008845409208189693,32408.525136547756,8,4,8,8_1,8_2,8_0_0 -4232,2,54.0,0.0,9,111,500.0,,,74,45,0.0,0.0,,500.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,119964,2,1,0,0,1,,200.0,,42,1.0,98.0,5.0,4.0,2.5,2,2,169.60663437575818,500.0,86605.2540268645,5,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005773321787670095,34642.1016107458,9,5,9,9_1,9_2,9_0_0 -4233,2,78.0,0.0,9,111,200.0,,,22,75,0.0,0.0,,325.0,215.04087552377396,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,114655,2,2,0,0,2,,150.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,161.6202332164163,200.0,14827.265686499733,1,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021919078464744408,9884.843790999823,2,1,2_0,2_1_0,2_2_0,2_0_0 -4234,0,74.0,0.0,2,111,0.0,,,86,22,0.0,0.0,,916.0,0.0,,71,0,0,0,0,0,0,0,0,1,3.0,1,,2,109436,2,1,0,0,2,,140.0,,42,1.0,0.0,6.0,4.0,2.3,2,2,157.66964890706527,0.0,107790.39167594638,6,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008497974501788614,46865.38768519408,10,5,10,10_1,10_2,10_0_1 -4235,2,47.0,0.0,7,111,700.0,,,54,21,0.0,0.0,,988.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,131994,2,2,0,0,2,,350.0,560.0,43,3.0,1.0,4.0,4.0,2.3,2,2,122.44655420254524,700.0,40806.27320811084,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02421196356161289,17741.857916569934,4,2,4_0,4_0_0,4_2_0,4_0_0 -4236,2,30.0,0.0,9,111,0.0,,,63,52,0.0,0.0,,84.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,124651,2,2,0,0,2,,800.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,250.01346798315893,0.0,61828.60202960117,1,1,1,2,164.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0013585945216711194,29442.191442667223,8,4,8,8_1,8_2,8_0_0 -4237,2,64.0,0.0,8,111,600.0,,,0,75,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,2003.0,6,110696,2,1,0,0,1,,480.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,169.88266732026634,600.0,43237.10964781397,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013876968300778529,43237.10964781397,9,5,9,9_0,9_2,9_0_0 -4239,1,49.0,340.0,6,111,330.0,,,0,55,0.0,0.0,,405.0,129.02452531426437,,10,0,0,0,0,0,0,0,0,1,10.0,2,,4,114006,2,1,0,0,1,,240.0,700.0,32,1.0,0.0,2.0,2.0,1.3,1,1,147.6259021286539,330.0,2876.4353500525085,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14079927087275118,2212.642576963468,1,1,1_1,1_0_1,1_2_1,1_0_0 -4241,2,69.0,0.0,9,111,300.0,,,75,72,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,128217,2,1,0,0,1,,150.0,,41,0.0,0.0,6.0,2.0,1.5,1,1,174.7930949392249,300.0,17107.52194276802,5,5,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017536145854649687,11405.014628512014,2,1,2_0,2_1_0,2_2_0,2_0_0 -4242,0,87.0,0.0,2,111,390.0,,,78,75,0.0,0.0,,650.0,447.28502108944986,,70,0,0,0,0,0,0,0,0,0,,1,,2,111044,2,1,0,0,2,,526.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,143.63853044500172,390.0,89641.35748914149,5,5,5,0,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007251117321362925,59760.904992760996,10,5,10,10_1,10_2,10_0_1 -4243,2,39.0,0.0,7,111,600.0,,,54,68,0.0,0.0,,888.0,495.4541772067752,,31,0,0,0,0,0,0,0,0,0,,1,,5,107877,2,1,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,108.81399145094568,600.0,20254.33114605712,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043842474658703584,8806.230933068315,1,1,1_0,1_1_0,1_2_0,1_0_0 -4244,2,44.0,0.0,5,111,0.0,,,0,22,0.0,0.0,,248.0,0.0,,70,0,0,0,0,0,0,0,0,1,3.0,2,,3,118496,2,1,0,0,1,,256.0,650.0,12,1.0,0.0,2.0,1.0,1.0,2,2,155.92939188026895,0.0,14625.423799582462,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0169567735881322,14625.423799582462,3,2,3_0,3_0_0,3_2_0,3_0_0 -4245,2,28.0,0.0,9,111,300.0,,,84,90,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,127290,2,1,0,0,2,,170.0,355.0,42,1.0,0.0,2.0,2.0,1.5,1,1,147.68899268345345,300.0,679.3030491599254,3,4,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.44162910849730674,452.86869943995026,1,1,1_0,1_0_0,1_2_0,1_0_0 -4246,2,57.0,0.0,1,111,420.0,,,0,43,0.0,0.0,,670.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,1,,1,124863,1,3,0,0,2,,520.0,,22,2.0,0.0,5.0,2.0,1.5,1,1,184.56471700762162,420.0,15130.409498379648,0,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04428168319381917,10086.939665586431,2,1,2_0,2_1_0,2_2_0,2_1_0 -4247,2,81.0,0.0,7,111,250.0,,,90,77,0.0,0.0,,370.0,206.439240502823,,60,0,0,0,0,0,0,0,0,0,,1,,5,120853,2,1,0,0,2,,400.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,107.29307575908999,250.0,52691.60477618059,5,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007021991483684317,35127.736517453726,9,5,9,9_1,9_2,9_0_0 -4248,2,25.0,0.0,8,111,210.0,,,42,56,0.0,0.0,,463.0,435.2427320601185,,60,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,119786,2,2,0,0,2,,400.0,500.0,43,2.0,0.0,5.0,3.0,1.8,3,3,120.39639531442879,210.0,32666.36743839549,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014173599218620119,18147.981910219714,4,2,4_0,4_1_0,4_2_0,4_0_0 -4249,1,34.0,413.0,9,111,340.0,,,0,85,0.0,0.0,,478.0,237.40512657824647,,12,0,0,0,0,0,0,0,0,0,,2,2012.0,6,117102,2,2,0,0,2,,400.0,459.0,31,0.0,0.0,3.0,3.0,1.6,2,2,256.79773213600237,340.0,13828.942084942082,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03456518922878994,8643.0888030888,1,1,1_1,1_0_1,1_2_1,1_0_0 -4250,1,27.0,309.0,7,111,240.0,,,55,54,0.0,0.0,,282.0,72.25373417598806,,43,0,0,0,0,0,0,0,0,0,,2,,5,110440,2,1,0,0,2,,360.0,425.0,43,2.0,0.0,2.0,2.0,1.5,2,2,189.98973135518054,240.0,8080.420912340447,4,4,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03489917209254887,5386.947274893631,1,1,1_1,1_0_1,1_2_1,1_0_0 -4251,2,77.0,0.0,7,111,800.0,,,74,75,0.0,0.0,,850.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,2,,5,102983,2,1,0,0,1,,600.0,942.0,41,0.0,2.0,5.0,2.0,1.5,3,3,136.2502823028458,800.0,70581.25294270455,5,5,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012042857905767144,47054.1686284697,10,5,10,10_0,10_2,10_0_0 -4252,2,56.0,0.0,7,111,0.0,,,0,55,0.0,0.0,,300.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,0,,2,,5,127742,2,2,0,0,1,,398.0,466.0,22,2.0,0.0,2.0,2.0,1.5,4,3,165.42413491398887,0.0,21625.103456279296,0,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013872766001167445,14416.73563751953,3,2,3_0,3_0_0,3_2_0,3_0_0 -4253,1,37.0,418.0,7,111,800.0,,,0,54,0.0,0.0,,850.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,0,,2,,5,113076,2,1,0,0,2,,300.0,456.0,32,1.0,0.0,3.0,3.0,1.6,3,2,127.74338789218304,800.0,13079.474308678902,0,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06498732135097979,8174.671442924314,1,1,1_1,1_0_1,1_2_1,1_0_0 -4254,2,66.0,0.0,2,111,450.0,,,77,77,0.0,0.0,,700.0,430.0817510475479,,42,0,0,0,0,0,0,0,0,0,,8,,2,107449,1,2,0,0,2,,500.0,558.0,41,0.0,3.0,3.0,2.0,1.5,4,3,148.80758448295117,450.0,53656.51785058402,5,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013045945358386333,35771.01190038935,9,5,9,9_0,9_2,9_0_1 -4255,2,31.0,0.0,9,111,400.0,,,55,47,0.0,0.0,,400.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,132522,2,1,0,0,1,,300.0,650.0,43,2.0,0.0,2.0,2.0,1.5,2,2,136.6347101084575,400.0,64554.44563263489,1,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006196319960306247,43036.297088423256,9,5,9,9_0,9_2,9_0_0 -4256,2,31.0,0.0,9,111,700.0,,,54,62,0.0,0.0,,750.0,86.01635020950958,,10,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,123134,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,4,3,247.05629324735045,700.0,43602.0592520031,1,1,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017201022448625397,24223.36625111283,7,4,7,7_1,7_2,7_0_0 -4257,1,25.0,265.0,9,111,0.0,,,84,53,0.0,0.0,,1492.0,0.0,,60,0,0,0,0,0,0,0,0,1,15.0,2,2005.0,6,102815,2,1,0,0,1,,87.0,540.0,42,1.0,0.0,2.0,2.0,1.5,1,1,179.08501252923145,0.0,21091.53045934414,3,1,2,3,43.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07073929522923748,14061.020306229426,3,2,3_1,3_0_1,3_2_1,3_0_0 -4258,2,62.0,0.0,1,111,500.0,,,35,35,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,114643,2,1,0,0,2,,250.0,1100.0,43,2.0,1.0,3.0,2.0,1.5,2,2,149.40687351696505,500.0,84555.0,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.005913310862752055,56370.0,10,5,10,10_1,10_2,10_1_0 -4259,2,26.0,0.0,9,111,0.0,,,42,42,0.0,0.0,,262.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,121674,2,1,0,0,1,,0.0,1100.0,43,2.0,0.0,4.0,2.0,1.5,2,2,173.92484289935388,0.0,51289.67200262692,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005108240894708413,34193.11466841795,9,5,9,9_0,9_2,9_0_0 -4260,2,48.0,0.0,5,111,620.0,,,68,43,0.0,0.0,,770.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,0,,1,,3,104610,2,2,0,0,1,,150.0,250.0,43,2.0,0.0,3.0,5.0,2.8,2,2,131.77446760108205,620.0,47942.81368336318,4,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016060801209654505,17122.433458343992,4,2,4_0,4_1_0,4_2_0,4_0_0 -4261,1,29.0,346.0,9,111,720.0,,,63,54,0.0,0.0,,720.0,0.0,,41,0,0,0,0,0,0,0,0,2,5.0,2,2012.0,6,104395,2,1,0,0,2,,720.0,516.0,43,2.0,0.0,3.0,4.0,2.1,1,1,257.7899376519725,720.0,16625.480994463218,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043307017718150924,7916.895711649151,1,1,1_1,1_0_1,1_2_1,1_0_0 -4262,2,31.0,0.0,9,111,612.0,,,38,42,0.0,0.0,,612.0,0.0,,71,0,0,0,0,0,0,0,0,2,25.0,8,2006.0,6,119108,2,1,0,0,1,,240.0,707.0,43,2.0,0.0,3.0,3.0,1.8,2,2,158.59872741559315,612.0,66532.45367582457,1,1,2,3,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009198518410006847,36962.47426434698,9,5,9,9_0,9_2,9_0_0 -4264,0,23.0,0.0,9,111,0.0,,,0,54,0.0,0.0,,75.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,2,2011.0,6,107080,2,3,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,4,3,260.5260497782397,0.0,1187.1827077433936,0,1,5,0,29.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06317477462467475,1187.1827077433936,1,1,1_0,1_0_0,1_2_0,1_0_0 -4266,2,39.0,0.0,5,111,367.0,,,42,42,0.0,0.0,,413.0,79.13504219274881,,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,108687,2,1,0,0,1,,217.0,1200.0,43,2.0,1.0,4.0,2.0,1.5,4,4,160.7115152193828,367.0,91649.97400595405,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004506275146059173,61099.98267063603,10,5,10,10_1,10_2,10_0_0 -4267,1,51.0,396.0,7,111,310.0,,,0,85,0.0,0.0,,460.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,5,129573,2,2,0,0,2,,419.0,453.0,31,1.0,0.0,4.0,3.0,1.8,2,2,117.02668356997007,310.0,11681.607843408856,0,6,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03937814093455868,6489.782135227142,1,1,1_1,1_0_1,1_2_1,1_0_0 -4268,2,34.0,0.0,9,111,420.0,,,0,52,0.0,0.0,,420.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,111381,2,1,0,0,1,,420.0,507.0,12,1.0,0.0,1.0,1.0,1.0,1,1,242.0362645329031,420.0,31638.0,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013275175421960933,31638.0,8,4,8,8_0,8_2,8_0_0 -4269,2,68.0,0.0,2,111,240.0,,,78,71,0.0,0.0,,765.0,903.1716771998506,,50,0,0,0,0,0,0,0,0,0,,1,,2,106895,2,2,0,0,2,,184.0,,41,0.0,5.0,3.0,2.0,1.5,1,1,111.71287986405915,240.0,11132.760939410735,5,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06871610772596828,7421.840626273824,1,1,1_0,1_1_0,1_2_0,1_0_1 -4270,2,47.0,0.0,9,111,0.0,,,0,33,0.0,0.0,,297.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,2,2012.0,6,100067,2,1,0,0,1,,287.0,825.0,12,1.0,0.0,3.0,1.0,1.0,4,3,257.39097153724634,0.0,57903.72982708388,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005129203263536251,57903.72982708388,10,5,10,10_0,10_2,10_0_0 -4271,0,28.0,0.0,8,111,609.0,,,56,55,0.0,0.0,,609.0,0.0,,70,0,0,0,0,0,0,0,0,2,20.0,2,2003.0,6,129088,2,1,0,0,1,,220.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,128.48784295488895,609.0,54578.94285949186,1,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011158149427111677,36385.9619063279,9,5,9,9_0,9_2,9_0_0 -4272,2,44.0,0.0,7,111,0.0,,,0,85,0.0,0.0,,365.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,5,129821,2,2,0,0,2,,0.0,550.0,31,2.0,2.0,4.0,3.0,2.0,1,1,132.7264281581501,0.0,6748.059154245988,0,6,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05408962661068792,3374.029577122994,1,1,1_0,1_1_0,1_2_0,1_0_0 -4273,2,59.0,0.0,9,111,690.0,,,43,37,0.0,207.03450096389156,,1016.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,100734,2,1,0,0,1,,350.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,150.29046987831464,690.0,167970.05579817487,1,1,1,2,101.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006048697163146621,111980.03719878325,10,5,10,10_1,10_2,10_0_0 -4274,2,46.0,0.0,7,111,300.0,,,85,63,0.0,0.0,,388.0,151.38877636873687,,41,0,0,0,0,0,0,0,0,3,45.0,1,,5,131272,2,1,0,0,2,,350.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,114.46399252258698,300.0,50534.61373865816,6,1,1,2,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007677905722334359,24064.10178031341,6,3,6,6_1,6_2,6_0_0 -4275,0,38.0,0.0,7,111,0.0,,,23,42,0.0,0.0,,1012.0,172.03270041901916,,20,0,0,0,0,0,0,0,0,1,1.0,1,,5,106411,2,1,0,0,1,,770.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,130.9284326145974,0.0,52731.620620032285,4,1,5,0,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0191915209147877,21971.508591680118,6,3,6,6_1,6_2,6_0_0 -4276,2,58.0,0.0,7,111,800.0,,,52,52,0.0,0.0,,800.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,106285,2,3,0,0,1,,720.0,,43,2.0,0.0,4.0,5.0,2.8,3,3,129.67811823807202,800.0,67863.75243762654,1,1,1,2,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011788325450103554,24237.054442009477,7,4,7,7_1,7_2,7_0_0 -4277,2,43.0,0.0,7,111,1500.0,,,46,48,0.0,0.0,,1550.0,86.01635020950958,,60,0,0,0,0,0,0,0,0,2,1.0,1,,5,107473,2,1,0,0,2,,500.0,2000.0,43,2.0,0.0,5.0,4.0,2.3,1,1,132.2110148764391,1500.0,180824.18643375303,1,1,2,3,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008571862152787066,78619.21149293611,10,5,10,10_1,10_2,10_0_0 -4279,1,61.0,176.0,7,111,0.0,,,0,75,0.0,0.0,,497.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,5,118247,2,3,0,0,1,,158.0,461.0,11,0.0,2.0,2.0,1.0,1.0,2,2,158.06414046725985,0.0,23654.376119277083,0,7,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0210109113634568,23654.376119277083,6,3,6,6_0,6_2,6_0_0 -4280,1,35.0,118.0,7,112,408.0,,,0,56,0.0,0.0,,453.0,77.41471518855863,,70,0,0,0,0,0,0,0,0,2,5.0,2,,5,105282,2,2,0,0,2,,344.0,387.0,32,1.0,0.0,2.0,2.0,1.3,2,2,151.11420210616626,408.0,29006.064685320714,0,1,2,3,24.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015617423628971379,22312.3574502467,6,3,6,6_0,6_2,6_0_0 -4281,2,48.0,0.0,5,111,840.0,,,52,21,0.0,0.0,,965.0,215.04087552377396,,41,0,0,0,0,0,0,0,0,2,30.0,1,,3,109463,2,2,0,0,1,,300.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,141.96325621834492,840.0,35747.24459704833,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026995087618016875,17873.622298524166,4,2,4_0,4_1_0,4_2_0,4_0_0 -4282,2,50.0,0.0,2,112,350.0,,,0,68,0.0,0.0,,394.0,75.69438818436844,,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,100135,2,2,0,0,2,,170.0,356.0,12,1.0,1.0,3.0,1.0,1.0,1,1,130.34544319044537,350.0,22683.78668856131,0,1,2,3,78.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01736923404409729,22683.78668856131,6,3,6,6_0,6_2,6_0_1 -4283,2,53.0,0.0,7,111,440.0,,,31,34,0.0,0.0,,515.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,117936,1,1,0,0,2,,180.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,148.02208038930846,440.0,72076.0840156866,1,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007145227255797022,34321.944769374575,9,5,9,9_1,9_2,9_0_0 -4284,0,77.0,0.0,9,211,180.0,,,0,77,0.0,0.0,,268.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,118642,2,1,0,0,2,,80.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,252.76252251361134,180.0,9900.813559322034,0,5,5,0,63.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027068482644809193,9900.813559322034,2,1,2_0,2_1_0,2_2_0,2_0_0 -4285,2,81.0,0.0,2,111,3876.0,,,74,74,0.0,0.0,,3918.0,72.25373417598806,,10,0,0,0,0,0,0,0,0,0,,1,,2,104648,2,2,0,0,2,,252.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,119.67299577367855,3876.0,68986.40012841277,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056793802730783896,45990.93341894185,10,5,10,10_1,10_2,10_0_1 -4286,2,55.0,0.0,6,112,280.0,,,0,42,0.0,0.0,,346.0,113.54158227655265,,12,0,0,0,0,0,0,0,0,2,5.0,1,,4,112534,2,1,0,0,2,,250.0,,32,2.0,0.0,4.0,2.0,1.5,1,1,113.53789289000248,280.0,73049.51203583756,0,1,0,1,85.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004736513501010862,48699.67469055837,10,5,10,10_1,10_2,10_0_0 -4287,1,25.0,358.0,9,211,390.0,,,0,52,0.0,0.0,,390.0,0.0,,43,2,2,2,2,1,2,2,2,0,,1,2012.0,6,113151,1,3,0,0,2,,160.0,513.0,32,1.0,0.0,2.0,2.0,1.3,2,2,260.7789269224602,390.0,13358.126799598906,0,4,2,3,57.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.029195710285645007,10275.48215353762,2,1,2_1,2_1_1,2_2_1,2_0_0 -4288,2,75.0,0.0,5,111,1155.0,,,75,74,0.0,0.0,,1255.0,172.03270041901916,,42,0,0,0,0,0,0,0,0,0,,1,,3,117007,1,3,0,0,2,,490.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,119.67299577367855,1155.0,256197.12936116947,5,5,0,1,250.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004898571670687166,170798.08624077964,10,5,10,10_1,10_2,10_0_0 -4289,2,77.0,0.0,2,111,244.0,,,0,77,0.0,0.0,,314.0,120.42289029331342,,33,0,0,0,0,0,0,0,0,0,,1,,2,130957,1,2,0,0,2,,527.0,40.0,11,0.0,6.0,3.0,1.0,1.0,3,3,126.1950751361264,244.0,11822.476575543957,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026559578950618706,11822.476575543957,2,1,2_0,2_1_0,2_2_0,2_0_1 -4290,2,57.0,0.0,9,211,360.0,,,52,52,0.0,0.0,,404.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,1,20.0,1,2012.0,6,129788,2,3,0,0,1,,100.0,710.0,43,2.0,2.0,4.0,2.0,1.5,2,2,256.27959975005115,360.0,53331.70106465576,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007575231840256091,35554.46737643718,9,5,9,9_1,9_2,9_0_0 -4291,2,53.0,0.0,7,111,350.0,,,0,22,0.0,0.0,,475.0,215.04087552377396,,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,119402,2,3,0,0,2,,200.0,1400.0,12,1.0,1.0,4.0,1.0,1.0,3,3,105.02866112597569,350.0,33097.94591270785,0,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01435134377380275,33097.94591270785,8,4,8,8_1,8_2,8_0_0 -4292,2,43.0,0.0,8,112,414.0,,,56,63,0.0,0.0,,546.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106758,1,3,0,0,2,,560.0,475.0,43,3.0,2.0,4.0,3.0,2.0,2,2,118.88646559537904,414.0,39401.0876409559,1,1,2,3,79.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013857485483026469,19700.54382047795,5,3,5,5_1,5_2,5_0_0 -4293,2,57.0,0.0,5,111,816.0,,,52,34,0.0,0.0,,861.0,77.41471518855863,,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,108608,2,1,0,0,2,,152.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,146.82434142342328,816.0,181721.6593280846,1,1,1,2,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004738015287685273,121147.77288538974,10,5,10,10_1,10_2,10_0_0 -4294,1,67.0,253.0,7,112,265.0,,,0,78,0.0,0.0,,331.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,2,,5,110672,2,1,0,0,2,,375.0,425.0,11,0.0,5.0,4.0,1.0,1.0,3,2,118.03174767591686,265.0,7106.363789800757,0,5,2,3,70.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.046577970082964236,7106.363789800757,1,1,1_1,1_0_1,1_2_1,1_0_0 -4295,2,26.0,0.0,9,211,240.0,,,0,43,0.0,0.0,,262.0,37.84719409218422,,20,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,130389,2,1,0,0,2,,120.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,249.15306452388316,240.0,31573.093997201864,0,1,1,2,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008298204794982066,31573.093997201864,8,4,8,8_1,8_2,8_0_0 -4296,2,81.0,0.0,6,111,800.0,,,0,77,0.0,0.0,,1052.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,,4,128887,1,2,0,0,2,,500.0,,21,1.0,11.0,4.0,4.0,2.3,1,1,110.44417441130469,800.0,26030.974839751183,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04041339237105788,11317.815147717907,2,1,2_0,2_1_0,2_2_0,2_0_0 -4297,2,62.0,0.0,6,111,560.0,,,78,75,0.0,0.0,,686.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,0,,1,,4,131459,2,2,0,0,2,,200.0,,41,0.0,4.0,4.0,2.0,1.5,3,3,121.4713798278786,560.0,49038.0,5,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01398915127044333,32692.0,8,4,8,8_1,8_2,8_0_0 -4298,2,51.0,0.0,9,120,300.0,,,52,37,0.0,0.0,,300.0,0.0,,30,2,2,2,2,1,2,2,2,2,30.0,1,2011.0,6,121778,1,1,0,0,1,,280.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,251.72368761809156,300.0,75686.36580992032,1,1,0,1,155.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.003963725788518156,42047.98100551128,9,5,9,9_1,9_2,9_0_0 -4299,2,65.0,0.0,2,111,420.0,,,75,75,0.0,0.0,,480.0,103.2196202514115,,33,0,0,0,0,0,0,0,0,0,,1,,2,122270,2,1,0,0,2,,170.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,122.20239090465299,420.0,69166.0690952635,5,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006939818993311425,46110.71273017567,10,5,10,10_1,10_2,10_0_1 -4300,2,45.0,0.0,8,111,840.0,,,46,42,0.0,0.0,,840.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,131776,1,3,0,0,2,,300.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,85.89347803306661,840.0,94984.77179154428,1,1,0,1,115.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008843522852731414,45230.84371025918,10,5,10,10_1,10_2,10_0_0 -4301,2,51.0,0.0,6,111,420.0,,,46,62,0.0,0.0,,520.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,3,60.0,1,,4,112746,1,3,0,0,2,,450.0,440.0,43,2.0,0.0,4.0,2.0,1.5,2,2,118.25634906367945,420.0,54350.94082428274,1,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009567451678180997,36233.96054952183,9,5,9,9_1,9_2,9_0_0 -4302,2,29.0,0.0,2,111,0.0,,,81,62,0.0,0.0,,405.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,2,123280,1,1,0,0,2,,351.0,700.0,43,2.0,0.0,5.0,5.0,2.4,2,2,93.65793889222485,0.0,27568.317666305302,4,4,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014690776742427098,11486.79902762721,2,1,2_0,2_1_0,2_2_0,2_0_1 -4303,1,26.0,300.0,1,111,480.0,,,85,63,0.0,0.0,,606.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,0,,1,,1,102582,1,1,0,0,2,,400.0,660.0,42,1.0,0.0,3.0,2.0,1.5,1,1,107.55238464449168,480.0,25457.68833498267,6,1,2,3,52.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.023804203744896404,16971.79222332178,4,2,4_1,4_1_1,4_2_1,4_1_0 -4304,2,40.0,0.0,9,120,0.0,,,75,22,0.0,0.0,,356.0,0.0,,12,0,0,0,0,0,0,0,0,2,8.0,1,2013.0,6,118153,1,1,0,0,2,,651.0,,42,1.0,1.0,4.0,3.0,1.8,2,2,258.18881265587896,0.0,23613.084848372186,6,1,0,1,65.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015076386769708388,13118.38047131788,2,1,2_0,2_1_0,2_2_0,2_0_0 -4305,2,32.0,0.0,7,111,300.0,,,56,53,0.0,0.0,,426.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,130338,1,1,0,0,2,,400.0,280.0,43,2.0,0.0,2.0,2.0,1.5,2,2,182.86822582045144,300.0,28850.0,1,1,2,3,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014766031195840554,19233.333333333332,5,3,5,5_0,5_2,5_0_0 -4306,1,61.0,309.0,5,111,300.0,,,71,56,0.0,0.0,,564.0,454.1663291062106,,60,0,0,0,0,0,0,0,0,0,,1,,3,132099,2,2,0,0,2,,360.0,365.0,42,1.0,3.0,5.0,2.0,1.5,1,1,117.60375452719973,300.0,13299.277408693919,5,4,2,3,94.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042408319088923244,8866.18493912928,1,1,1_1,1_1_1,1_2_1,1_0_0 -4307,1,30.0,100.0,9,120,0.0,,,52,62,0.0,0.0,,451.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2013.0,6,126792,2,1,0,0,1,,100.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,248.20016199928398,0.0,33715.76229802606,4,1,1,2,104.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013376532792390832,16055.12490382193,4,2,4_1,4_1_1,4_2_1,4_0_0 -4308,0,65.0,0.0,7,111,894.0,,,52,77,0.0,0.0,,1026.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,5,113174,2,3,0,0,2,,780.0,,42,2.0,0.0,3.0,3.0,2.0,2,2,93.59668095115595,894.0,9270.326152510363,4,5,5,0,55.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1106757176738775,4635.163076255181,1,1,1_0,1_1_0,1_2_0,1_0_0 -4309,2,51.0,0.0,7,111,850.0,,,68,68,0.0,0.0,,1102.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,2,5.0,2,,5,133097,1,1,0,0,2,,810.0,465.0,43,2.0,4.0,4.0,3.0,1.8,2,2,144.44787278375668,850.0,34981.051219787114,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03150276968739725,19433.917344326175,5,3,5,5_0,5_2,5_0_0 -4310,2,59.0,0.0,8,111,402.0,,,0,63,0.0,0.0,,444.0,72.25373417598806,,31,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,128785,2,1,0,0,1,,390.0,327.0,12,1.0,2.0,2.0,1.0,1.0,1,1,92.68435573452592,402.0,18236.16979786109,0,1,2,3,31.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024347217914809968,18236.16979786109,4,2,4_0,4_0_0,4_2_0,4_0_0 -4311,2,35.0,0.0,9,111,620.0,,,84,62,0.0,0.0,,707.0,149.6684493645467,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,123490,2,1,0,0,1,,360.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,244.87770563687934,620.0,35409.181392253144,3,4,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01996657285487764,16861.514948691973,4,2,4_0,4_1_0,4_2_0,4_0_0 -4312,1,38.0,152.0,6,111,250.0,,,0,52,0.0,0.0,,292.0,72.25373417598806,,41,0,0,0,0,0,0,0,0,0,,2,,4,114290,2,1,0,0,2,,300.0,285.0,12,1.0,0.0,2.0,1.0,1.0,1,1,130.13151324372734,250.0,12097.408107862953,0,4,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024137401780320922,12097.408107862953,2,1,2_1,2_0_1,2_2_1,2_0_0 -4313,1,33.0,413.0,2,111,500.0,,,85,48,0.0,0.0,,632.0,227.0831645531053,,42,0,0,0,0,0,0,0,0,0,,2,,2,131503,2,2,0,0,2,,240.0,422.0,42,1.0,0.0,4.0,4.0,2.1,1,1,100.76279358121737,500.0,15175.69577006324,6,4,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041645537020235504,7226.521795268209,1,1,1_1,1_0_1,1_2_1,1_0_1 -4314,2,34.0,0.0,9,111,780.0,,,53,23,0.0,0.0,,846.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,103230,2,3,0,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,89.69437739319946,780.0,150288.43004923704,1,1,1,2,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00562917584356185,71565.91907106525,10,5,10,10_1,10_2,10_0_0 -4315,1,37.0,331.0,9,111,0.0,,,0,54,0.0,0.0,,989.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,118051,2,2,0,0,1,,766.0,850.0,32,1.0,0.0,4.0,4.0,1.9,1,1,252.87098954638643,0.0,22708.019664317246,0,1,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04355289517183602,11951.589297009077,2,1,2_1,2_1_1,2_2_1,2_0_0 -4316,2,80.0,0.0,2,111,360.0,,,77,62,0.0,0.0,,635.0,0.0,,71,0,0,0,0,0,0,0,0,1,1.0,1,,2,106504,1,2,0,0,2,,400.0,,41,1.0,0.0,4.0,3.0,2.0,1,1,111.25459095233532,360.0,52814.04987763216,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012023315793264617,26407.02493881608,7,4,7,7_1,7_2,7_0_1 -4317,1,23.0,350.0,9,111,420.0,,,0,85,0.0,0.0,,506.0,147.94812236035648,,10,0,0,0,0,0,0,0,0,0,,1,2012.0,6,112992,2,2,0,0,1,,360.0,,31,0.0,0.0,3.0,3.0,1.6,1,1,236.47727434162164,420.0,12228.569620253165,0,6,1,2,78.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04137851079180628,7642.856012658228,1,1,1_1,1_1_1,1_2_1,1_0_0 -4318,2,35.0,0.0,9,111,400.0,,,46,37,0.0,0.0,,463.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,2,1.0,1,2011.0,6,130404,2,1,0,0,2,,250.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,169.94481661280582,400.0,44154.244602935694,1,1,1,2,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010485968091258352,29436.163068623795,8,4,8,8_1,8_2,8_0_0 -4319,1,40.0,162.0,9,111,306.0,,,85,52,0.0,0.0,,390.0,144.50746835197612,,12,0,0,0,0,0,0,0,0,0,,1,2005.0,6,114934,1,2,0,0,2,,618.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,1,1,99.49157842655259,306.0,41638.34911672258,6,1,1,2,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.00936636558060296,16014.749660277917,4,2,4_1,4_1_1,4_2_1,4_0_0 -4320,0,39.0,0.0,2,111,1200.0,,,46,22,0.0,0.0,,1452.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,2,130230,2,2,0,0,2,,600.0,,43,2.0,6.0,5.0,8.0,3.8999999999999995,1,1,108.62465070552018,1200.0,53992.59305537904,1,1,5,0,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026892577626540643,13844.254629584371,3,2,3_0,3_1_0,3_2_0,3_0_1 -4321,2,65.0,0.0,7,400,400.0,,,63,71,0.0,0.0,,610.0,361.26867087994026,,50,0,0,0,0,0,0,0,0,1,30.0,1,,5,119103,2,1,0,0,1,,100.0,,42,2.0,3.0,4.0,4.0,2.5,1,1,103.07330374395461,400.0,20583.755395683453,1,5,0,1,72.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029635019862698182,8233.50215827338,1,1,1_0,1_1_0,1_0_0,1_0_0 -4322,1,40.0,337.0,9,111,920.0,,,22,52,0.0,0.0,,1046.0,216.76120252796414,,42,0,0,0,0,0,0,0,0,0,,1,2011.0,6,105771,2,1,0,0,2,,650.0,850.0,43,2.0,0.0,4.0,3.0,1.8,1,1,255.08319532824632,920.0,20132.800000000003,4,4,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05195501867599141,11184.88888888889,2,1,2_1,2_1_1,2_2_1,2_0_0 -4323,2,52.0,0.0,5,111,0.0,,,0,63,0.0,0.0,,621.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,3,122352,2,2,0,0,2,,273.0,,32,2.0,4.0,4.0,4.0,2.3,4,4,150.94069850625533,0.0,18858.0,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03293032134902959,8199.13043478261,1,1,1_0,1_1_0,1_2_0,1_0_0 -4324,2,51.0,0.0,6,400,600.0,,,64,45,0.0,0.0,,621.0,36.12686708799403,,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,100613,2,1,0,0,1,,600.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,100.89965015765284,600.0,75558.34112438127,4,1,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008218814637258027,37779.17056219064,9,5,9,9_1,9_0,9_0_0 -4325,2,88.0,0.0,2,111,540.0,,,86,78,0.0,0.0,,1044.0,867.0448101118566,,10,0,0,0,0,0,0,0,0,0,,1,,2,107051,1,1,0,0,2,,780.0,,41,0.0,4.0,3.0,2.0,1.5,2,1,121.02859360856543,540.0,8992.620643170483,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11609518975904694,5995.080428780322,1,1,1_0,1_1_0,1_2_0,1_0_1 -4326,1,24.0,120.0,7,400,400.0,,,22,55,0.0,0.0,,484.0,144.50746835197612,,31,2,2,1,1,1,2,2,2,0,,1,,5,123618,2,2,0,0,1,,450.0,600.0,43,2.0,0.0,5.0,4.0,2.1,1,1,96.45843106286182,400.0,49497.285307050006,1,1,2,3,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.00977831404283222,23570.135860500002,6,3,6,6_1,6_0,6_0_0 -4327,2,61.0,0.0,9,111,230.0,,,78,63,0.0,0.0,,356.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,128006,2,2,0,0,2,,50.0,,42,1.0,4.0,2.0,2.0,1.5,1,1,253.29321598199084,230.0,9400.577983059286,7,4,0,1,43.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03787001189092257,6267.05198870619,1,1,1_0,1_1_0,1_2_0,1_0_0 -4329,2,72.0,0.0,6,111,600.0,,,77,75,0.0,0.0,,780.0,309.6588607542345,,43,0,0,0,0,0,0,0,0,0,,1,,4,113981,2,2,0,0,2,,400.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,94.0442970660874,600.0,64673.05052336285,5,5,0,1,163.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012060665048082562,43115.36701557523,9,5,9,9_1,9_2,9_0_0 -4330,2,43.0,0.0,9,111,540.0,,,0,34,0.0,0.0,,540.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,132622,2,1,0,0,2,,300.0,,32,1.0,0.0,5.0,3.0,1.6,2,2,238.5095760312618,540.0,44841.52616035064,0,1,1,2,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012042409039982093,28025.953850219146,7,4,7,7_1,7_2,7_0_0 -4331,2,65.0,0.0,7,111,700.0,,,75,74,0.0,0.0,,800.0,172.03270041901916,,10,0,0,0,0,0,0,0,0,0,,1,,5,127363,2,1,0,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,148.028490770504,700.0,67622.5238971766,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011830377718767784,45081.68259811773,10,5,10,10_1,10_2,10_0_0 -4332,1,50.0,577.0,2,111,900.0,,,0,81,0.0,0.0,,1140.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,,2,124778,1,1,0,0,1,,800.0,600.0,32,5.0,0.0,6.0,11.0,5.8,2,2,108.37784963346459,900.0,62579.74275687886,0,4,2,3,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.018216757528532496,10789.610820151529,2,1,2_1,2_1_1,2_2_1,2_0_1 -4333,2,69.0,0.0,5,111,660.0,,,78,77,0.0,0.0,,912.0,433.5224050559283,,43,0,0,0,0,0,0,0,0,0,,1,,3,105240,1,1,0,0,2,,336.0,,41,0.0,7.0,4.0,3.0,1.8,1,1,117.24452505638088,660.0,15744.841802448624,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0579237321938774,8747.13433469368,1,1,1_0,1_1_0,1_2_0,1_0_0 -4334,2,61.0,0.0,2,111,276.0,,,0,81,0.0,0.0,,436.0,275.25232067043066,,71,2,2,2,2,1,2,2,2,0,,1,,2,132953,2,3,0,0,2,,150.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,92.26699789170326,276.0,7267.873976352653,0,4,0,1,35.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0599900330438592,7267.873976352653,1,1,1_0,1_1_0,1_2_0,1_0_1 -4335,2,47.0,0.0,8,111,511.0,,,55,46,0.0,0.0,,574.0,108.38060126398207,,12,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,104571,2,1,0,0,2,,320.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,109.46713604309518,511.0,65199.493135250385,1,1,0,1,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008803749421936295,28347.60571097843,8,4,8,8_1,8_2,8_0_0 -4336,2,46.0,0.0,7,111,300.0,,,0,67,0.0,0.0,,340.0,68.81308016760767,,42,2,2,2,2,1,2,2,2,0,,1,,5,105357,2,2,0,0,2,,120.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,84.8426824595595,300.0,5214.799999999999,0,4,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.06519904886093428,5214.799999999999,1,1,1_0,1_1_0,1_2_0,1_0_0 -4337,2,51.0,0.0,9,111,225.0,,,52,52,0.0,0.0,,351.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,117942,2,1,0,0,1,,276.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,248.20016199928398,225.0,53497.51456553975,1,1,1,2,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00656105246852151,23259.788941539024,6,3,6,6_1,6_2,6_0_0 -4338,2,46.0,0.0,7,111,700.0,,,46,37,0.0,0.0,,792.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,122612,2,1,0,0,2,,600.0,,43,2.0,2.0,5.0,3.0,2.0,1,1,137.8944536392573,700.0,42517.067522261845,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018627813397180098,21258.533761130922,5,3,5,5_1,5_2,5_0_0 -4339,0,76.0,0.0,2,111,0.0,,,0,74,0.0,0.0,,641.0,172.03270041901916,,33,0,0,0,0,0,0,0,0,0,,1,,2,133519,1,2,0,0,2,,400.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,83.996750295969,0.0,49688.81872071699,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012900286553456439,49688.81872071699,10,5,10,10_1,10_2,10_0_1 -4340,2,36.0,0.0,9,111,420.0,,,65,43,0.0,0.0,,508.0,151.38877636873687,,42,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,117402,2,1,0,0,2,,120.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,246.7117112563919,420.0,33103.29319091642,1,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015345905226716108,15763.472948055436,3,2,3_0,3_1_0,3_2_0,3_0_0 -4341,2,45.0,0.0,9,111,270.0,,,0,52,0.0,0.0,,320.0,86.01635020950958,,70,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,122028,2,1,0,0,1,,90.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,246.71583997320118,270.0,20640.700302512756,0,1,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015503349949858235,20640.700302512756,5,3,5,5_1,5_2,5_0_0 -4342,0,41.0,0.0,6,111,400.0,,,0,55,0.0,0.0,,640.0,412.878481005646,,41,0,0,0,0,0,0,0,0,2,20.0,2,,4,128558,1,1,0,0,1,,500.0,,32,1.0,0.0,3.0,3.0,1.8,1,1,98.84314002448582,400.0,18158.61059125802,0,1,5,0,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.035244987317923485,10088.116995143344,2,1,2_0,2_0_0,2_2_0,2_0_0 -4343,2,36.0,0.0,7,111,0.0,,,42,33,0.0,0.0,,341.0,0.0,,20,0,0,0,0,0,0,0,0,2,40.0,1,,5,109980,2,3,0,0,1,,686.0,1175.0,43,2.0,0.0,4.0,4.0,2.1,2,2,170.34268321707867,0.0,90064.0,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003786196482501332,42887.619047619046,9,5,9,9_1,9_2,9_0_0 -4344,2,26.0,0.0,9,120,0.0,,,54,48,0.0,0.0,,611.0,0.0,,60,0,0,0,0,0,0,0,0,2,60.0,2,2007.0,6,111731,2,1,0,0,1,,328.0,610.0,43,2.0,0.0,3.0,2.0,1.5,2,2,94.31535316003368,0.0,46909.13723764556,1,1,2,3,72.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01302518093446536,31272.758158430373,8,4,8,8_0,8_1,8_0_0 -4345,2,66.0,0.0,7,120,1000.0,,,72,77,0.0,0.0,,1150.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,0,,1,,5,100338,2,1,0,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,5,5,84.56165287287618,1000.0,38300.28172372636,5,5,0,1,89.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030025888798817763,25533.521149150907,7,4,7,7_1,7_1,7_0_0 -4346,2,45.0,0.0,8,111,953.0,,,43,31,0.0,0.0,,995.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,125266,2,1,0,0,1,,147.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,139.50178247001728,953.0,365490.2434011328,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002722370892149829,158908.80147875342,10,5,10,10_1,10_2,10_0_0 -4347,2,82.0,0.0,2,211,400.0,,,0,86,0.0,0.0,,526.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,2,109218,2,1,0,0,1,,300.0,,11,0.0,0.0,5.0,1.0,1.0,4,4,99.28570908748927,400.0,1083.434971997511,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.48549291244514897,1083.434971997511,1,1,1_0,1_1_0,1_2_0,1_0_1 -4348,1,23.0,80.0,9,111,400.0,,,0,46,0.0,0.0,,400.0,0.0,,71,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,106920,2,1,0,0,2,,172.0,670.0,12,1.0,0.0,3.0,1.0,1.0,2,2,182.33635256373537,400.0,16314.0,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024518818192963098,16314.0,4,2,4_1,4_1_1,4_2_1,4_0_0 -4349,2,69.0,0.0,7,211,250.0,,,0,75,0.0,0.0,,439.0,325.14180379194624,,31,0,0,0,0,0,0,0,0,0,,1,,5,125724,2,1,0,0,1,,180.0,,21,1.0,1.0,4.0,2.0,1.5,3,2,86.60710037601925,250.0,46998.86154569003,0,5,0,1,92.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009340651785218783,31332.574363793352,8,4,8,8_1,8_2,8_0_0 -4350,2,44.0,0.0,6,111,0.0,,,0,63,0.0,0.0,,427.0,412.878481005646,,31,0,0,0,0,0,0,0,0,0,,1,,4,105058,2,2,0,0,2,,233.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,132.37868158680809,0.0,7819.897120809397,0,4,0,1,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05460429893172347,7819.897120809397,1,1,1_0,1_1_0,1_2_0,1_0_0 -4351,1,56.0,392.0,7,211,250.0,,,0,85,0.0,0.0,,502.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,2,,5,102424,2,1,0,0,1,,450.0,384.0,31,0.0,2.0,4.0,3.0,2.0,2,2,117.13323511063386,250.0,19025.31186763066,0,6,2,3,82.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026385901240026148,9512.65593381533,1,1,1_1,1_0_1,1_2_1,1_0_0 -4352,2,39.0,0.0,9,111,342.0,,,68,47,0.0,0.0,,430.0,151.38877636873687,,33,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,117905,2,1,0,0,1,,150.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,244.84157931285793,342.0,40965.0,1,1,1,2,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010496765531551324,22758.333333333332,6,3,6,6_1,6_2,6_0_0 -4353,2,45.0,0.0,9,111,750.0,,,63,47,0.0,0.0,,813.0,108.38060126398207,,41,0,0,0,0,0,0,0,0,2,60.0,1,2007.0,6,121162,1,2,0,0,2,,120.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,105.43430658946703,750.0,60470.81689965505,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013444501689948853,26291.659521589154,7,4,7,7_1,7_2,7_0_0 -4354,2,65.0,0.0,5,211,600.0,,,0,77,0.0,0.0,,621.0,36.12686708799403,,41,0,0,0,0,0,0,0,0,0,,1,,3,112684,2,1,0,0,1,,300.0,,31,0.0,3.0,6.0,2.0,1.5,1,1,93.43579584664872,600.0,57160.533789371504,0,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010864139272881834,38107.02252624767,9,5,9,9_1,9_2,9_0_0 -4355,2,43.0,0.0,9,111,0.0,,,55,55,0.0,0.0,,726.0,0.0,,12,0,0,0,0,0,0,0,0,2,50.0,1,2013.0,6,101150,2,1,0,0,2,,250.0,,43,2.0,1.0,3.0,3.0,2.0,2,2,244.84157931285793,0.0,40291.299178727626,1,1,1,2,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0180187786146966,20145.649589363813,5,3,5,5_1,5_2,5_0_0 -4356,2,40.0,0.0,9,211,620.0,,,52,33,0.0,0.0,,872.0,433.5224050559283,,41,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,112792,2,1,0,0,1,,410.0,700.0,43,2.0,0.0,4.0,4.0,2.1,2,2,99.28127693052902,620.0,68003.7842128186,1,1,2,3,92.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012822815819647128,32382.754387056477,8,4,8,8_1,8_2,8_0_0 -4357,1,46.0,360.0,9,111,360.0,,,81,63,0.0,0.0,,864.0,867.0448101118566,,20,0,0,0,0,0,0,0,0,1,90.0,1,2006.0,6,127528,1,2,0,0,2,,1200.0,,43,3.0,0.0,4.0,7.0,3.6,2,2,113.66845883391366,360.0,18295.830726017295,4,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.047223873730497655,5082.175201671471,1,1,1_1,1_1_1,1_2_1,1_0_0 -4358,1,46.0,253.0,6,120,165.0,,,0,85,0.0,0.0,,249.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,2,,4,128808,2,1,0,0,1,,240.0,315.0,11,0.0,1.0,2.0,1.0,1.0,2,2,118.2694555877726,165.0,5241.0,0,7,2,3,35.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04751001717229536,5241.0,1,1,1_1,1_0_1,1_1_1,1_0_0 -4359,1,33.0,160.0,9,111,320.0,,,85,47,0.0,0.0,,404.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,0,,1,2011.0,6,105890,2,1,0,0,1,,200.0,750.0,42,1.0,0.0,4.0,4.0,2.1,2,2,259.74758497398807,320.0,36333.67924978299,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011119160193566496,17301.752023706184,4,2,4_1,4_1_1,4_2_1,4_0_0 -4360,1,42.0,540.0,9,111,349.0,,,0,85,0.0,0.0,,475.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,0,,1,2011.0,6,129109,2,1,0,0,2,,240.0,850.0,31,0.0,0.0,4.0,6.0,2.6999999999999997,2,2,261.806234211721,349.0,21019.033001837834,0,6,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02259856578361467,7784.827037717717,1,1,1_1,1_1_1,1_2_1,1_0_0 -4361,2,67.0,0.0,9,111,560.0,,,56,74,0.0,0.0,,686.0,216.76120252796414,,50,2,2,2,2,1,2,2,2,0,,1,2011.0,6,131075,2,2,0,0,2,,160.0,850.0,42,1.0,1.0,5.0,3.0,1.8,1,1,257.08042692524094,560.0,47811.85721383528,4,5,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.014347905310013615,26562.142896575155,7,4,7,7_1,7_2,7_0_0 -4362,1,44.0,325.0,9,111,440.0,,,56,52,0.0,0.0,,566.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,107083,2,1,0,0,1,,600.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,105.02459079276078,440.0,14532.480167014613,4,4,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03894724049131612,6318.469637832442,1,1,1_1,1_1_1,1_2_1,1_0_0 -4363,1,30.0,413.0,9,120,249.0,,,0,85,0.0,0.0,,438.0,325.14180379194624,,20,0,0,0,0,0,0,0,0,0,,2,2011.0,6,101312,2,1,0,0,1,,346.0,497.0,31,0.0,0.0,4.0,4.0,2.1,2,2,147.8215687860441,249.0,23454.0,0,7,2,3,70.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018674852903555896,11168.571428571428,2,1,2_1,2_0_1,2_1_1,2_0_0 -4364,1,42.0,180.0,9,111,480.0,,,85,22,0.0,0.0,,606.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,108707,2,2,0,0,1,,960.0,,42,3.0,1.0,5.0,6.0,3.0999999999999996,1,1,180.52929943611161,480.0,17068.250613534496,6,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03550451734751681,5505.887294688548,1,1,1_1,1_1_1,1_2_1,1_0_0 -4365,1,67.0,272.0,2,211,900.0,,,77,78,0.0,0.0,,1152.0,433.5224050559283,,20,2,2,1,2,1,2,2,2,0,,1,,2,103334,2,3,0,0,1,,336.0,338.0,41,0.0,4.0,4.0,2.0,1.5,2,2,101.08081061600916,900.0,10552.254748422987,6,5,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.10917098074912986,7034.836498948658,1,1,1_1,1_1_1,1_2_1,1_0_1 -4366,2,59.0,0.0,9,111,1000.0,,,0,74,0.0,0.0,,1042.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,111276,2,1,0,0,2,,300.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,241.24968252208697,1000.0,47473.98532726187,0,5,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021948862999745525,47473.98532726187,10,5,10,10_1,10_2,10_0_0 -4367,1,58.0,31.0,9,111,400.0,,,0,63,0.0,0.0,,463.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,3,20.0,1,2007.0,6,125244,2,1,0,0,1,,600.0,288.0,12,1.0,3.0,2.0,1.0,1.0,1,1,115.69436167167784,400.0,12187.127708453218,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037990904097842074,12187.127708453218,2,1,2_1,2_1_1,2_2_1,2_0_0 -4368,2,52.0,0.0,5,300,420.0,,,0,85,0.0,0.0,,508.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,0,,1,,3,111726,2,1,0,0,1,,140.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,92.73109719272854,420.0,5034.207865156918,0,7,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10090961946883484,5034.207865156918,1,1,1_0,1_1_0,1_1_0,1_0_0 -4369,2,62.0,0.0,7,111,1080.0,,,77,75,0.0,0.0,,1220.0,240.84578058662683,,50,0,0,0,0,0,0,0,0,0,,1,,5,111853,2,1,0,0,2,,560.0,,41,2.0,2.0,5.0,4.0,2.5,2,2,126.19448556754797,1080.0,85536.81133964035,5,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014262865085720293,34214.72453585614,9,5,9,9_1,9_2,9_0_0 -4370,2,69.0,0.0,9,300,708.0,,,77,72,0.0,0.0,,862.0,264.9303586452895,,41,0,0,0,0,0,0,0,0,0,,1,2007.0,6,117985,2,1,0,0,1,,150.0,,41,0.0,7.0,6.0,2.0,1.5,2,2,98.87338828378756,708.0,70238.0466797224,5,5,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012272550857381086,46825.36445314827,10,5,10,10_1,10_1,10_0_0 -4371,2,41.0,0.0,9,111,260.0,,,0,52,0.0,0.0,,452.0,330.3027848045168,,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,133152,2,1,0,0,2,,150.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,236.47727434162164,260.0,9760.272727272726,0,4,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046310181347391566,6100.170454545453,1,1,1_0,1_1_0,1_2_0,1_0_0 -4372,1,59.0,238.0,6,111,420.0,,,0,52,0.0,0.0,,640.0,378.4719409218422,,70,0,0,0,0,0,0,0,0,0,,2,,4,112773,2,2,0,0,2,,390.0,242.0,22,2.0,0.0,3.0,2.0,1.5,2,2,195.18300597165833,420.0,29506.0,0,4,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021690503626381075,19670.666666666668,5,3,5,5_0,5_2,5_0_0 -4373,2,70.0,0.0,5,211,480.0,,,72,77,0.0,0.0,,612.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,3,104716,2,1,0,0,2,,502.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,86.60710037601925,480.0,15424.914091543278,5,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03967607186451233,10283.276061028851,2,1,2_0,2_1_0,2_2_0,2_0_0 -4374,2,31.0,0.0,8,111,400.0,,,0,52,0.0,0.0,,421.0,36.12686708799403,,31,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,121890,2,1,0,0,2,,220.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,142.73373104957608,400.0,20036.800000000003,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021011339135989775,20036.800000000003,5,3,5,5_1,5_2,5_0_0 -4375,2,42.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,258.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,5,124569,2,1,0,0,1,,275.0,400.0,12,1.0,1.0,1.0,1.0,1.0,2,2,173.9325543670062,0.0,23988.336318072208,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010755226897733183,23988.336318072208,6,3,6,6_0,6_2,6_0_0 -4376,2,51.0,0.0,6,211,420.0,,,67,85,0.0,0.0,,464.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,,4,110538,1,1,0,0,2,,120.0,,42,1.0,0.0,4.0,2.0,1.5,4,2,93.43579584664872,420.0,18159.3306201262,4,7,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025551602628223716,12106.220413417466,2,1,2_0,2_1_0,2_2_0,2_0_0 -4377,2,37.0,0.0,9,211,500.0,,,52,52,0.0,0.0,,4155.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,121905,2,1,0,0,1,,160.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,83.74926491440152,500.0,60439.86743532569,1,1,1,2,114.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06874601444892481,28780.889254916994,8,4,8,8_1,8_2,8_0_0 -4378,1,59.0,175.0,5,211,430.0,,,0,52,0.0,0.0,,518.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,2,,3,133577,2,3,0,0,1,,240.0,182.0,12,1.0,5.0,1.0,1.0,1.0,1,1,99.95265975973959,430.0,6968.5084076151325,0,4,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07433441558798058,6968.5084076151325,1,1,1_1,1_0_1,1_2_1,1_0_0 -4379,2,52.0,0.0,9,111,480.0,,,77,21,0.0,0.0,,585.0,180.63433543997013,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,132027,2,1,0,0,2,,180.0,,42,1.0,4.0,2.0,2.0,1.5,1,1,253.29321598199084,480.0,47536.8112987469,5,1,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012306252439263232,31691.207532497934,8,4,8,8_1,8_2,8_0_0 -4380,1,49.0,200.0,2,111,1172.0,,,0,56,0.0,0.0,,1304.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,2,120146,1,3,0,0,2,,0.0,800.0,32,2.0,4.0,4.0,3.0,2.0,2,2,145.9904171120024,1172.0,17567.0,0,4,2,3,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07423009051061649,8783.5,1,1,1_1,1_1_1,1_2_1,1_0_1 -4381,0,97.0,0.0,2,400,160.0,,,0,77,0.0,0.0,,226.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,1,,2,131513,1,3,0,0,2,,280.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,97.57220151034026,160.0,9303.487035683109,0,5,5,0,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024291966994008495,9303.487035683109,1,1,1_0,1_1_0,1_1_0,1_0_1 -4382,1,26.0,357.0,7,111,720.0,,,81,47,0.0,0.0,,764.0,75.69438818436844,,70,0,0,0,0,0,0,0,0,0,,2,,5,120422,1,1,0,0,1,,480.0,426.0,43,2.0,0.0,2.0,3.0,1.8,1,1,124.54931771558982,720.0,11480.071144655292,4,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06655011021910703,6377.817302586273,1,1,1_1,1_0_1,1_2_1,1_0_0 -4383,0,57.0,0.0,6,400,600.0,,,85,74,0.0,0.0,,732.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,4,109926,2,1,0,0,2,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,108.39580811790825,600.0,44878.47595058385,6,5,5,0,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01631071431226882,29918.9839670559,8,4,8,8_1,8_1,8_0_0 -4384,2,36.0,0.0,5,400,450.0,,,85,69,0.0,0.0,,582.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,3,100002,1,3,0,0,2,,164.0,,42,1.0,1.0,3.0,4.0,2.1,2,2,114.54170300922651,450.0,9636.181818181818,6,4,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060397365988037514,4588.658008658009,1,1,1_0,1_1_0,1_0_0,1_0_0 -4385,2,49.0,0.0,8,111,528.0,,,0,54,0.0,0.0,,550.0,37.84719409218422,,50,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,110394,2,1,0,0,2,,120.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,140.1241538421023,528.0,30423.564274575252,0,1,1,2,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01807809219972398,30423.564274575252,8,4,8,8_0,8_2,8_0_0 -4386,0,67.0,0.0,6,400,480.0,,,0,86,0.0,0.0,,612.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,1,,4,124480,2,2,0,0,2,,268.0,,21,0.0,0.0,4.0,2.0,1.5,1,1,109.08336080848402,480.0,14410.346820809249,0,7,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04246948443435393,9606.8978805395,1,1,1_0,1_1_0,1_0_0,1_0_0 -4387,1,31.0,413.0,9,111,0.0,,,0,35,0.0,0.0,,359.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,125387,2,1,0,0,1,,875.0,770.0,32,1.0,0.0,3.0,3.0,1.6,1,1,251.34604807656697,0.0,16623.638873891927,0,1,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021595753055236512,10389.774296182453,2,1,2_1,2_1_1,2_2_1,2_0_0 -4388,2,58.0,0.0,5,111,340.0,,,0,42,0.0,0.0,,406.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,120932,2,3,0,0,1,,160.0,386.0,12,1.0,0.0,3.0,1.0,1.0,2,2,180.49399850863307,340.0,44197.14368802313,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009186113991117958,44197.14368802313,10,5,10,10_0,10_2,10_0_0 -4389,1,46.0,180.0,9,111,0.0,,,0,54,0.0,0.0,,694.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,2012.0,6,115524,2,2,0,0,1,,308.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,238.8659852569326,0.0,5309.734491315136,0,4,1,2,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13070333387387648,5309.734491315136,1,1,1_1,1_1_1,1_2_1,1_0_0 -4390,2,50.0,0.0,5,111,900.0,,,56,46,0.0,0.0,,988.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,2,,3,128733,2,3,0,0,2,,600.0,290.0,43,3.0,0.0,3.0,3.0,2.0,1,1,144.00940549951122,900.0,7477.454388984509,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.13213052846641,3738.7271944922545,1,1,1_0,1_0_0,1_2_0,1_0_0 -4391,2,54.0,0.0,6,211,426.0,,,0,52,0.0,0.0,,470.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,132783,1,3,0,0,2,,180.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,103.93664793347278,426.0,32669.52147770756,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014386497834708419,32669.52147770756,8,4,8,8_1,8_2,8_0_0 -4392,1,25.0,360.0,5,111,240.0,,,0,54,0.0,0.0,,282.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,0,,2,,3,103883,2,3,0,0,2,,320.0,350.0,32,1.0,0.0,3.0,3.0,1.6,1,1,141.9629636809307,240.0,17098.60746423236,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01649257114007093,10686.629665145223,2,1,2_1,2_0_1,2_2_1,2_0_0 -4393,1,38.0,340.0,9,211,400.0,,,0,54,0.0,0.0,,532.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,2,2005.0,6,130100,2,1,0,0,2,,240.0,490.0,32,1.0,0.0,2.0,2.0,1.5,1,1,119.71078348656759,400.0,5960.670212765957,0,4,2,3,77.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08925170845060619,3973.7801418439717,1,1,1_1,1_0_1,1_2_1,1_0_0 -4394,2,48.0,0.0,5,111,700.0,,,56,63,0.0,0.0,,964.0,454.1663291062106,,43,0,0,0,0,0,0,0,0,1,15.0,2,,3,127356,2,1,0,0,2,,550.0,308.0,43,3.0,1.0,4.0,3.0,2.0,2,2,147.16710936923465,700.0,35535.124113475176,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02712808873050887,17767.562056737588,4,2,4_0,4_0_0,4_2_0,4_0_0 -4395,2,58.0,0.0,6,211,400.0,,,85,81,0.0,0.0,,532.0,227.0831645531053,,42,0,0,0,0,0,0,0,0,0,,1,,4,106960,1,3,0,0,2,,200.0,,42,2.0,5.0,4.0,3.0,2.0,1,1,101.2545264025056,400.0,11792.649097981048,6,4,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045112849163898266,5896.324548990524,1,1,1_0,1_1_0,1_2_0,1_0_0 -4396,1,27.0,229.0,9,400,0.0,,,81,69,0.0,0.0,,469.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,119422,2,1,0,0,2,,0.0,570.0,43,2.0,0.0,3.0,3.0,1.8,2,2,199.05257498681144,0.0,11844.5229720035,4,1,2,3,73.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03959636036913935,6580.2905400019445,1,1,1_1,1_1_1,1_0_1,1_0_0 -4397,2,55.0,0.0,6,111,560.0,,,0,68,0.0,0.0,,666.0,182.3546624441603,,20,0,0,0,0,0,0,0,0,2,15.0,2,,4,131391,2,2,0,0,1,,360.0,268.0,32,2.0,1.0,3.0,2.0,1.5,2,2,172.29408109909403,560.0,37505.771011476245,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01775726726951469,25003.847340984164,7,4,7,7_0,7_2,7_0_0 -4398,2,59.0,0.0,2,111,420.0,,,78,56,0.0,0.0,,552.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,3,5.0,2,,2,125636,2,3,0,0,1,,280.0,325.0,42,1.0,2.0,3.0,2.0,1.5,2,2,155.1897171658427,420.0,21123.300086902516,5,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026132280360030822,14082.200057935012,3,2,3_0,3_0_0,3_2_0,3_0_1 -4399,2,62.0,0.0,8,211,207.0,,,52,75,0.0,0.0,,383.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105204,2,2,0,0,2,,100.0,,42,1.0,1.0,4.0,3.0,2.0,1,1,101.2545264025056,207.0,21973.870761860482,4,5,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01742979214498539,10986.935380930241,2,1,2_0,2_1_0,2_2_0,2_0_0 -4400,1,35.0,242.0,9,111,438.0,,,63,63,0.0,0.0,,576.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,107518,2,1,0,0,2,,350.0,,43,2.0,0.0,4.0,4.0,2.1,4,3,252.90734277186476,438.0,29432.145382857332,4,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01957043880109024,14015.307325170157,3,2,3_1,3_1_1,3_2_1,3_0_0 -4401,1,41.0,180.0,2,111,0.0,,,0,52,0.0,0.0,,44.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,,2,111511,2,1,0,0,2,,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,2,2,212.33039668220053,0.0,8406.357537595064,0,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.005234133785438272,8406.357537595064,1,1,1_1,1_1_1,1_2_1,1_0_1 -4402,2,36.0,0.0,7,211,930.0,,,0,11,0.0,0.0,,1062.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,5,121231,2,1,0,0,2,,400.0,,22,2.0,2.0,5.0,5.0,3.0,1,1,98.75166161099436,930.0,28124.013942165337,0,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03776132390575234,9374.671314055113,1,1,1_0,1_1_0,1_2_0,1_0_0 -4403,2,54.0,0.0,2,111,660.0,,,56,54,0.0,0.0,,726.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,2,,2,104642,2,1,0,0,1,,250.0,497.0,43,2.0,0.0,4.0,4.0,2.5,2,2,155.24830517979467,660.0,51531.70864991036,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014088413115354033,20612.683459964144,5,3,5,5_0,5_2,5_0_1 -4404,1,49.0,253.0,2,111,360.0,,,0,52,0.0,0.0,,426.0,113.54158227655265,,41,0,0,0,0,0,0,0,0,0,,2,,2,121111,1,2,0,0,2,,120.0,378.0,22,1.0,0.0,3.0,2.0,1.5,3,2,146.85843546993544,360.0,16581.466005570062,0,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025691335124222288,11054.310670380042,2,1,2_1,2_0_1,2_2_1,2_0_1 -4405,0,46.0,0.0,2,211,540.0,,,56,65,0.0,0.0,,804.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,2,116141,1,2,0,0,2,,244.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,110.01417915961042,540.0,12903.21700872053,1,1,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06231004248449231,5161.286803488212,1,1,1_0,1_1_0,1_2_0,1_0_1 -4406,1,41.0,69.0,2,111,350.0,,,0,52,0.0,0.0,,372.0,37.84719409218422,,31,0,0,0,0,0,0,0,0,1,10.0,2,,2,125625,2,1,0,0,1,,540.0,219.0,12,1.0,0.0,1.0,1.0,1.0,2,2,138.31290864339792,350.0,20112.053931657123,0,1,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018496370448492987,20112.053931657123,5,3,5,5_0,5_2,5_0_1 -4407,2,52.0,0.0,2,112,475.0,,,52,45,0.0,0.0,,580.0,180.63433543997013,,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,112543,2,1,0,0,1,,160.0,,43,3.0,0.0,6.0,3.0,2.0,1,1,108.30620131546631,475.0,75920.69438024305,1,1,0,1,140.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007639550780385568,37960.34719012152,9,5,9,9_1,9_1,9_0_1 -4408,1,51.0,129.0,2,111,1080.0,,,0,43,0.0,0.0,,1300.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,129664,2,2,0,0,2,,900.0,416.0,32,2.0,1.0,4.0,2.0,1.5,2,2,124.54931771558982,1080.0,23957.166699518,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054263511887912654,15971.444466345332,3,2,3_1,3_0_1,3_2_1,3_0_1 -4409,0,22.0,0.0,7,211,250.0,,,54,42,0.0,0.0,,271.0,36.12686708799403,,20,0,0,0,0,0,0,0,0,2,45.0,1,,5,116842,2,1,0,0,2,,180.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,112.89845536207224,250.0,27660.10201804852,2,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009797505440260831,18440.06801203235,4,2,4_0,4_1_0,4_2_0,4_0_0 -4410,2,33.0,0.0,9,112,0.0,,,21,34,0.0,0.0,,890.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,2013.0,6,109619,2,1,0,0,2,,364.0,,43,2.0,2.0,4.0,3.0,1.8,2,2,251.50582391167939,0.0,31518.09453710467,1,1,0,1,96.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02823774765166237,17510.052520613706,4,2,4_0,4_1_0,4_2_0,4_0_0 -4411,2,49.0,0.0,2,111,385.0,,,0,68,0.0,0.0,,462.0,132.46517932264476,,71,0,0,0,0,0,0,0,0,1,7.0,2,,2,131376,2,1,0,0,1,,180.0,377.0,12,1.0,0.0,2.0,1.0,1.0,2,2,162.57559400764632,385.0,26040.17050128399,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017741819316322054,26040.17050128399,7,4,7,7_0,7_2,7_0_1 -4412,0,90.0,0.0,2,211,200.0,,,0,86,0.0,0.0,,326.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,2,110637,2,2,0,0,2,,200.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,110.13918820814193,200.0,13569.5444015444,0,7,5,0,140.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024024388023145177,13569.5444015444,3,2,3_0,3_1_0,3_2_0,3_0_1 -4413,2,38.0,0.0,9,112,700.0,,,55,53,0.0,0.0,,769.0,118.70256328912323,,43,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,104074,2,1,0,0,2,,280.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,257.8575073021121,700.0,65741.77599106994,1,1,1,2,130.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011697280586159665,27392.40666294581,7,4,7,7_1,7_2,7_0_0 -4414,2,51.0,0.0,8,211,540.0,,,62,21,0.0,0.0,,624.0,144.50746835197612,,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,117079,2,3,0,0,2,,224.0,,43,2.0,1.0,4.0,3.0,1.8,3,3,101.2545264025056,540.0,15629.458498023716,4,1,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03992460775777372,8683.032498902065,1,1,1_0,1_1_0,1_2_0,1_0_0 -4415,2,61.0,0.0,7,400,900.0,,,52,78,0.0,0.0,,1140.0,412.878481005646,,31,0,0,0,0,0,0,0,0,0,,1,,5,121222,2,2,0,0,1,,1088.0,,42,2.0,2.0,5.0,3.0,2.0,2,2,114.08880614420652,900.0,8080.420912340447,4,5,0,1,95.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1410817595230699,4040.2104561702236,1,1,1_0,1_1_0,1_0_0,1_0_0 -4416,1,45.0,310.0,5,111,1020.0,,,55,69,0.0,0.0,,1284.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,2,,3,133042,2,1,0,0,2,,678.0,386.0,43,2.0,0.0,2.0,2.0,1.5,3,3,189.98973135518054,1020.0,8324.523819609009,4,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15424305675904806,5549.682546406006,1,1,1_1,1_0_1,1_2_1,1_0_0 -4417,2,54.0,0.0,2,111,680.0,,,34,34,0.0,0.0,,890.0,361.26867087994026,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,130273,2,1,0,0,2,,210.0,,43,2.0,1.0,6.0,4.0,2.1,4,3,111.39712406786076,680.0,100751.67491829369,1,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008833600044086223,47976.98805633033,10,5,10,10_1,10_2,10_0_1 -4418,2,35.0,0.0,2,111,720.0,,,54,46,0.0,0.0,,742.0,37.84719409218422,,41,0,0,0,0,0,0,0,0,1,1.0,2,,2,105191,2,1,0,0,1,,160.0,800.0,43,2.0,0.0,3.0,3.0,1.8,1,1,126.62965452399786,720.0,61651.157041072554,1,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012035459440050297,34250.642800595866,9,5,9,9_0,9_2,9_0_1 -4419,0,70.0,0.0,6,112,600.0,,,0,77,0.0,0.0,,768.0,289.01493670395223,,50,2,2,2,2,1,2,2,2,0,,1,,4,111299,1,3,0,0,2,,900.0,,21,2.0,2.0,8.0,4.0,2.5,1,1,108.95982614006087,600.0,28521.838883252225,0,5,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.02692673509389196,11408.73555330089,2,1,2_0,2_1_0,2_1_0,2_0_0 -4420,2,42.0,0.0,9,400,600.0,,,54,64,0.0,0.0,,840.0,412.878481005646,,70,2,2,2,2,1,2,2,2,2,10.0,1,2009.0,6,116527,2,1,0,0,1,,420.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,193.7805245424729,600.0,37041.41518101075,1,1,1,2,75.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.022677319316639535,18520.707590505375,4,2,4_0,4_1_0,4_0_0,4_0_0 -4421,2,38.0,0.0,5,111,700.0,,,84,33,0.0,0.0,,788.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,3,107907,1,3,0,0,2,,500.0,1150.0,42,1.0,0.0,3.0,4.0,2.1,3,3,161.56662389895666,700.0,94801.10671452264,3,1,2,3,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00831213924931201,45143.38414977268,10,5,10,10_1,10_2,10_0_0 -4422,2,42.0,0.0,9,111,190.0,,,0,11,0.0,0.0,,256.0,113.54158227655265,,44,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,118851,2,1,0,0,2,,95.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,244.88212229625384,190.0,36684.6910622793,0,1,1,2,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0069783877848498405,36684.6910622793,9,5,9,9_1,9_2,9_0_0 -4423,2,68.0,0.0,2,111,1248.0,,,78,77,0.0,0.0,,1512.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,2,121636,2,1,0,0,2,,840.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,130.7355684923008,1248.0,18288.37310999777,5,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0826754786172549,12192.248739998513,2,1,2_0,2_1_0,2_2_0,2_0_1 -4424,1,51.0,357.0,9,111,0.0,,,21,21,0.0,0.0,,303.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108894,2,1,0,0,2,,302.0,650.0,43,2.0,0.0,4.0,3.0,2.0,1,1,112.39707083003103,0.0,10968.923453800471,4,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02762349480112542,5484.461726900236,1,1,1_1,1_1_1,1_2_1,1_0_0 -4425,2,27.0,0.0,9,111,0.0,,,54,47,0.0,0.0,,613.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,107778,2,1,0,0,1,,196.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,256.1906063716809,0.0,42707.87060768522,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014353326243563442,28471.913738456813,8,4,8,8_1,8_2,8_0_0 -4426,2,81.0,0.0,2,111,160.0,,,77,78,0.0,0.0,,270.0,189.2359704609211,,31,0,0,0,0,0,0,0,0,0,,1,,2,127241,2,2,0,0,2,,200.0,245.0,41,0.0,4.0,3.0,2.0,1.5,2,2,131.74364037218902,160.0,20331.956834532375,5,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01327958750834176,13554.63788968825,3,2,3_0,3_1_0,3_2_0,3_0_1 -4427,1,23.0,467.0,8,111,480.0,,,0,81,0.0,0.0,,606.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111251,2,1,0,0,1,,120.0,590.0,32,1.0,0.0,4.0,4.0,1.9,3,3,146.97041882198593,480.0,17873.448162820838,0,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033905041404409086,9407.077980432021,1,1,1_1,1_1_1,1_2_1,1_0_0 -4428,2,61.0,0.0,2,111,950.0,,,0,52,0.0,0.0,,1080.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,1,5.0,1,,2,106641,1,1,0,0,2,,500.0,,32,1.0,2.0,3.0,4.0,2.1,2,2,150.14988924883062,950.0,29404.713667918626,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03672880519079193,14002.244603770774,3,2,3_0,3_1_0,3_2_0,3_0_1 -4429,2,43.0,0.0,2,111,900.0,,,64,54,0.0,0.0,,1005.0,180.63433543997013,,50,2,2,2,2,1,2,2,2,2,10.0,1,,2,117011,2,2,0,0,2,,600.0,,43,2.0,0.0,4.0,2.0,1.5,4,4,140.34826083748206,900.0,37310.18083722211,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.026936347598652544,24873.453891481407,7,4,7,7_1,7_2,7_0_1 -4430,2,52.0,0.0,9,111,380.0,,,0,12,0.0,0.0,,446.0,113.54158227655265,,43,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,127835,2,1,0,0,1,,180.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,238.8659852569326,380.0,9843.0,0,1,1,2,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04531138880422635,9843.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -4431,2,57.0,0.0,7,111,800.0,,,63,64,0.0,0.0,,1052.0,433.5224050559283,,31,2,2,2,2,1,2,2,2,2,15.0,1,,5,115058,2,2,0,0,2,,1200.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,127.82702560070955,800.0,66491.7346246432,1,1,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.015821515349820747,26596.693849857278,7,4,7,7_1,7_2,7_0_0 -4432,2,39.0,0.0,9,111,637.0,,,43,43,0.0,0.0,,687.0,86.01635020950958,,44,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,112018,2,1,0,0,2,,300.0,850.0,43,2.0,0.0,4.0,4.0,2.1,3,2,252.87098954638643,637.0,81484.60343400037,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008431040602123635,38802.19211142875,9,5,9,9_1,9_2,9_0_0 -4433,2,82.0,0.0,2,111,540.0,,,75,72,0.0,0.0,,770.0,395.67521096374406,,70,0,0,0,0,0,0,0,0,0,,1,,2,103381,2,1,0,0,2,,778.0,,41,0.0,8.0,5.0,4.0,2.3,1,1,121.02859360856543,540.0,49279.45902831523,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015625171525474126,21425.851751441405,6,3,6,6_1,6_2,6_0_1 -4434,2,34.0,0.0,8,111,360.0,,,85,63,0.0,0.0,,738.0,650.2836075838925,,42,0,0,0,0,0,0,0,0,0,,1,2000.0,6,113757,2,1,0,0,2,,300.0,,42,1.0,0.0,4.0,4.0,2.1,4,3,104.63188866603866,360.0,26170.223428676498,6,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028199988510274738,12462.011156512617,2,1,2_0,2_1_0,2_2_0,2_0_0 -4435,2,61.0,0.0,9,111,330.0,,,77,75,0.0,0.0,,393.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,101025,2,1,0,0,2,,207.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,244.99911025660018,330.0,26523.888926558226,6,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01481683176581588,17682.592617705483,4,2,4_0,4_1_0,4_2_0,4_0_0 -4437,2,79.0,0.0,5,111,0.0,,,77,78,0.0,155.27587572291867,,1389.0,361.26867087994026,,20,0,0,0,0,0,0,0,0,0,,1,,3,115100,2,1,0,0,2,,250.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,104.31808684736194,0.0,32579.285175286543,6,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0426344529208285,21719.523450191027,6,3,6,6_1,6_2,6_0_0 -4438,2,46.0,0.0,9,111,600.0,,,43,34,0.0,0.0,,600.0,0.0,,20,0,0,0,0,0,0,0,0,2,3.0,1,2012.0,6,114624,2,1,0,0,2,,300.0,,43,2.0,1.0,6.0,4.0,2.3,4,2,247.21057406138866,600.0,87368.3569891364,1,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00686747491514125,37986.24216918974,9,5,9,9_1,9_2,9_0_0 -4439,2,75.0,0.0,2,111,1455.0,,,77,77,0.0,0.0,,1662.0,356.1076898673697,,71,0,0,0,0,0,0,0,0,0,,1,,2,117474,2,1,0,0,2,,1336.0,,41,1.0,2.0,4.0,3.0,2.0,2,2,119.23676500534783,1455.0,65768.29446607137,5,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025270535194696204,32884.147233035685,8,4,8,8_1,8_2,8_0_1 -4440,2,23.0,0.0,7,111,240.0,,,0,53,0.0,0.0,,366.0,216.76120252796414,,60,2,2,2,2,1,2,2,2,2,15.0,1,,5,113740,2,3,0,0,2,,300.0,,22,2.0,1.0,5.0,2.0,1.5,1,1,117.78664900813699,240.0,24727.008953864202,0,4,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.014801628481749853,16484.67263590947,4,2,4_0,4_1_0,4_2_0,4_0_0 -4441,2,24.0,0.0,9,111,0.0,,,46,52,0.0,0.0,,1202.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,1,2013.0,6,103658,2,1,0,0,2,,567.0,800.0,43,2.0,0.0,4.0,2.0,1.5,2,2,256.27959975005115,0.0,45626.658975439015,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026344247573486385,30417.772650292678,8,4,8,8_1,8_2,8_0_0 -4442,1,24.0,310.0,9,111,0.0,,,84,43,0.0,0.0,,223.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,2,2004.0,6,118440,2,2,0,0,2,,0.0,780.0,42,1.0,0.0,2.0,2.0,1.5,2,2,181.53677273196203,0.0,18046.746350965135,3,1,3,4,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012356798043436456,12031.164233976757,2,1,2_1,2_0_1,2_2_1,2_0_0 -4443,1,20.0,380.0,6,111,0.0,,,67,85,0.0,0.0,,726.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,118592,2,2,0,0,2,,321.0,389.0,42,1.0,0.0,4.0,4.0,2.1,1,1,148.24817488992647,0.0,20722.844124700237,1,6,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03503380113421096,9868.021011762017,2,1,2_1,2_0_1,2_2_1,2_0_0 -4444,1,27.0,300.0,9,111,300.0,,,55,43,0.0,0.0,,340.0,68.81308016760767,,43,0,0,0,0,0,0,0,0,0,,1,2012.0,6,129123,2,1,0,0,2,,250.0,460.0,43,2.0,0.0,2.0,2.0,1.5,2,2,264.3065374982031,300.0,9052.717904773508,4,4,2,3,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03755778138416504,6035.145269849006,1,1,1_1,1_1_1,1_2_1,1_0_0 -4445,1,50.0,336.0,7,111,360.0,,,81,63,0.0,0.0,,864.0,867.0448101118566,,42,0,0,0,0,0,0,0,0,0,,2,,5,113557,2,1,0,0,2,,480.0,587.0,43,3.0,0.0,5.0,8.0,3.499999999999999,1,1,144.60722064329886,360.0,31869.036268107033,4,1,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027110954744014294,9105.438933744868,1,1,1_1,1_0_1,1_2_1,1_0_0 -4446,1,34.0,413.0,7,111,850.0,,,0,52,0.0,0.0,,934.0,144.50746835197612,,44,0,0,0,0,0,0,0,0,2,5.0,2,,5,122368,2,1,0,0,2,,750.0,510.0,32,1.0,0.0,4.0,3.0,1.6,5,5,122.69108168441083,850.0,14535.844876132905,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06425495098214615,9084.903047583066,1,1,1_1,1_0_1,1_2_1,1_0_0 -4447,1,32.0,357.0,7,111,660.0,,,0,85,0.0,0.0,,786.0,216.76120252796414,,71,2,2,2,2,1,2,2,2,0,,2,,5,109850,1,3,0,0,2,,480.0,403.0,31,0.0,0.0,2.0,2.0,1.3,3,2,121.42569911548395,660.0,10415.273069870549,0,7,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07546609625375565,8011.748515285038,1,1,1_1,1_0_1,1_2_1,1_0_0 -4448,1,22.0,413.0,7,111,160.0,,,81,63,0.0,0.0,,265.0,180.63433543997013,,43,0,0,0,0,0,0,0,0,0,,2,,5,119042,2,1,0,0,2,,480.0,530.0,43,2.0,0.0,3.0,4.0,2.1,2,2,120.18031308729012,160.0,15714.525691699604,4,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016863378838088174,7483.107472237906,1,1,1_1,1_0_1,1_2_1,1_0_0 -4449,1,43.0,350.0,6,111,480.0,,,0,56,0.0,0.0,,543.0,108.38060126398207,,10,0,0,0,0,0,0,0,0,2,5.0,1,,4,122974,1,2,0,0,2,,240.0,400.0,32,2.0,1.0,6.0,2.0,1.5,2,2,124.38734879424355,480.0,8430.686480780108,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06440756648203043,5620.457653853406,1,1,1_1,1_1_1,1_2_1,1_0_0 -4450,1,29.0,20.0,9,111,0.0,,,0,68,0.0,0.0,,207.0,0.0,,10,0,0,0,0,0,0,0,0,4,90.0,1,2013.0,6,131912,2,1,0,0,1,,297.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,238.8659852569326,0.0,18376.41083813941,0,1,1,2,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011264441235193809,18376.41083813941,4,2,4_1,4_1_1,4_2_1,4_0_0 -4451,1,54.0,349.0,7,111,670.0,,,0,54,0.0,0.0,,712.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,0,,2,,5,118044,2,1,0,0,2,,300.0,344.0,32,1.0,0.0,2.0,2.0,1.5,1,1,142.97373819629283,670.0,10077.466101694916,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07065268122115038,6718.310734463277,1,1,1_1,1_0_1,1_2_1,1_0_0 -4452,1,34.0,522.0,2,111,1300.0,,,0,85,0.0,372.6621017350048,,1786.0,216.76120252796414,,70,2,2,2,1,1,2,2,2,0,,1,,2,110444,1,1,0,0,2,,455.0,550.0,31,0.0,1.0,5.0,5.0,2.4,1,1,135.0946640807589,1300.0,19596.982109902878,0,6,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.09113648162680552,8165.409212459533,1,1,1_1,1_1_1,1_2_1,1_0_1 -4453,2,54.0,0.0,9,111,0.0,,,68,48,0.0,0.0,,471.0,0.0,,42,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,129351,1,2,0,0,2,,153.0,,43,3.0,1.0,5.0,4.0,2.5,2,1,246.32101684774585,0.0,3595.5687819688164,1,1,1,2,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13099457375478038,1438.2275127875266,1,1,1_0,1_1_0,1_2_0,1_0_0 -4454,2,43.0,0.0,7,111,500.0,,,33,37,0.0,0.0,,500.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,104231,2,1,0,0,2,,230.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,130.5461948303413,500.0,159157.64168255782,1,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003141539386448419,66315.68403439909,10,5,10,10_1,10_2,10_0_0 -4455,2,56.0,0.0,2,111,350.0,,,68,85,0.0,0.0,,392.0,72.25373417598806,,41,0,0,0,0,0,0,0,0,0,,1,,2,101311,2,1,0,0,2,,360.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,117.78664900813699,350.0,19048.467902656615,1,7,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020579082895445324,12698.978601771078,2,1,2_0,2_1_0,2_2_0,2_0_1 -4456,2,32.0,0.0,9,111,0.0,,,52,42,0.0,0.0,,568.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,101445,2,1,0,0,2,,613.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,240.77600953800186,0.0,57727.62094782656,1,1,1,2,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00983931072637396,27489.343308488835,7,4,7,7_1,7_2,7_0_0 -4457,2,50.0,0.0,7,111,450.0,,,0,52,0.0,0.0,,470.0,34.40654008380383,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,112850,2,1,0,0,2,,180.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,126.20652910680475,450.0,36248.01500811451,0,1,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012966227251196663,36248.01500811451,9,5,9,9_1,9_2,9_0_0 -4458,1,43.0,400.0,9,111,0.0,,,0,52,0.0,0.0,,1141.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,2006.0,6,117044,1,2,0,0,2,,287.0,376.0,32,1.0,1.0,5.0,4.0,2.1,2,2,134.57106289728745,0.0,22050.33127231492,0,4,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0517452543414879,10500.15774872139,2,1,2_1,2_0_1,2_2_1,2_0_0 -4459,2,66.0,0.0,9,112,520.0,,,74,72,0.0,0.0,,520.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,101830,2,1,0,0,2,,360.0,,41,0.0,6.0,3.0,2.0,1.5,2,2,195.472300209563,520.0,23198.116915271254,6,5,1,2,133.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022415612521449337,15465.411276847502,3,2,3_0,3_1_0,3_1_0,3_0_0 -4460,2,56.0,0.0,7,111,543.0,,,0,68,0.0,31.055175144583732,,625.0,89.45700421788997,,50,0,0,0,0,0,0,0,0,1,10.0,1,,5,115341,2,1,0,0,2,,602.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,110.63461893471707,543.0,9166.799492849104,0,1,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06818083023279324,9166.799492849104,1,1,1_0,1_1_0,1_2_0,1_0_0 -4461,2,41.0,0.0,9,112,174.0,,,0,68,0.0,0.0,,237.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,123784,1,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,195.3856987707231,174.0,5214.799999999999,0,4,0,1,52.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04544757229423948,5214.799999999999,1,1,1_0,1_1_0,1_1_0,1_0_0 -4462,1,74.0,180.0,2,111,720.0,,,86,86,0.0,0.0,,984.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,2,,2,121949,2,3,0,0,2,,600.0,630.0,41,1.0,1.0,3.0,3.0,2.0,2,2,145.66457449911653,720.0,17033.846182743593,6,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05776734094246176,8516.923091371797,1,1,1_1,1_0_1,1_2_1,1_0_1 -4463,2,71.0,0.0,2,111,330.0,,,54,78,0.0,0.0,,350.0,34.40654008380383,,71,0,0,0,0,0,0,0,0,0,,1,,2,109413,2,1,0,0,2,,300.0,,41,0.0,3.0,6.0,3.0,2.0,2,2,106.38536212271978,330.0,45923.0402781771,6,5,0,1,132.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007621446617643085,22961.52013908855,6,3,6,6_1,6_2,6_0_1 -4464,2,54.0,0.0,5,111,900.0,,,85,55,0.0,0.0,,988.0,151.38877636873687,,60,0,0,0,0,0,0,0,0,0,,1,,3,106019,2,2,0,0,2,,630.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,158.44700737924902,900.0,21067.78124940054,6,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0468962530180112,14045.18749960036,3,2,3_0,3_1_0,3_2_0,3_0_0 -4465,1,20.0,414.0,8,111,1968.0,,,0,52,0.0,0.0,,2220.0,433.5224050559283,,71,2,2,1,2,1,2,2,1,0,,2,2003.0,6,124302,2,1,0,0,2,,800.0,607.0,32,2.0,1.0,4.0,3.0,1.8,1,1,120.02118584952613,1968.0,28334.180718351246,0,4,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07835059788978366,15741.211510195137,3,2,3_1,3_0_1,3_2_1,3_0_0 -4466,2,43.0,0.0,2,111,300.0,,,0,52,0.0,0.0,,366.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,0,,1,,2,131893,1,1,0,0,2,,250.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,105.87506110615159,300.0,10678.833518930274,0,4,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03427340629959209,10678.833518930274,2,1,2_0,2_1_0,2_2_0,2_0_1 -4467,1,42.0,460.0,5,111,564.0,,,0,85,0.0,0.0,,696.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,3,131634,2,1,0,0,2,,1080.0,650.0,31,1.0,0.0,3.0,6.0,2.8999999999999995,1,1,167.57642985956335,564.0,39987.70133985613,0,6,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017405351562588822,13788.862530984876,3,2,3_1,3_1_1,3_2_1,3_0_0 -4468,2,65.0,0.0,9,111,420.0,,,77,78,0.0,0.0,,462.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122430,2,2,0,0,1,,220.0,690.0,41,0.0,5.0,4.0,2.0,1.5,2,2,131.11803853439366,420.0,24904.307649007613,6,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01855100758114871,16602.871766005075,4,2,4_0,4_1_0,4_2_0,4_0_0 -4469,2,35.0,0.0,8,111,0.0,,,42,42,0.0,0.0,,551.0,0.0,,31,0,0,0,0,0,0,0,0,2,50.0,1,2001.0,6,113411,2,1,0,0,2,,921.0,,43,2.0,0.0,6.0,4.0,2.1,2,1,121.7306513600567,0.0,89486.51271610813,1,1,1,2,122.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006157352468835413,42612.625102908634,9,5,9,9_1,9_2,9_0_0 -4470,2,52.0,0.0,6,111,1200.0,,,22,52,0.0,0.0,,1280.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,2,,4,125590,2,1,0,0,2,,450.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,161.71911689996747,1200.0,61291.07673869523,1,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02088395355586714,24516.43069547809,7,4,7,7_0,7_2,7_0_0 -4471,2,37.0,0.0,9,111,310.0,,,52,68,0.0,0.0,,550.0,412.878481005646,,20,2,2,1,2,1,2,2,2,0,,1,2007.0,6,101909,2,2,0,0,2,,240.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,100.59254545713368,310.0,13905.374432133754,4,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03955305214428544,7725.2080178520855,1,1,1_0,1_1_0,1_2_0,1_0_0 -4472,2,46.0,0.0,5,111,0.0,,,54,42,0.0,0.0,,400.0,688.1308016760767,,44,0,0,0,0,0,0,0,0,0,,1,,3,103448,1,3,0,0,2,,0.0,,43,2.0,0.0,5.0,6.0,3.3,2,1,104.1051305534982,0.0,32227.243208566953,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012411859041472966,9765.83127532332,2,1,2_0,2_1_0,2_2_0,2_0_0 -4473,2,57.0,0.0,2,111,600.0,,,42,46,0.0,0.0,,720.0,206.439240502823,,30,0,0,0,0,0,0,0,0,1,10.0,1,,2,101919,2,3,0,0,2,,628.0,,43,3.0,1.0,6.0,5.0,3.0,2,2,163.2652026422209,600.0,89524.43176320865,1,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008042497291738124,29841.477254402882,8,4,8,8_1,8_2,8_0_1 -4474,2,48.0,0.0,9,111,240.0,,,0,43,0.0,0.0,,262.0,37.84719409218422,,50,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,118256,2,1,0,0,1,,130.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,127.13064906778291,240.0,47683.99220922553,0,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005494506392216679,47683.99220922553,10,5,10,10_1,10_2,10_0_0 -4475,2,47.0,0.0,6,111,800.0,,,52,64,0.0,0.0,,1592.0,1362.4989873186319,,50,0,0,0,0,0,0,0,0,0,,1,,4,107565,1,2,0,0,1,,600.0,,43,3.0,0.0,4.0,4.0,2.5,1,1,112.96461836712939,800.0,38304.206223480614,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04156201516647272,15321.682489392246,3,2,3_0,3_1_0,3_2_0,3_0_0 -4476,1,75.0,317.0,5,111,400.0,,,0,77,0.0,0.0,,821.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,3,114836,2,2,0,0,2,,120.0,387.0,11,0.0,4.0,5.0,1.0,1.0,2,2,152.3297895489136,400.0,5998.755319148937,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13686172486136305,5998.755319148937,1,1,1_1,1_0_1,1_2_1,1_0_0 -4477,1,48.0,357.0,6,111,480.0,,,0,68,0.0,0.0,,610.0,223.64251054472493,,50,0,0,0,0,0,0,0,0,1,10.0,2,,4,118229,2,1,0,0,1,,180.0,447.0,32,1.0,2.0,3.0,2.0,1.5,1,1,110.03392108172554,480.0,10521.742081449123,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05797519035136687,7014.494720966082,1,1,1_1,1_0_1,1_2_1,1_0_0 -4478,2,58.0,0.0,2,111,620.0,,,47,52,0.0,0.0,,758.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,131945,2,3,0,0,2,,450.0,190.0,43,2.0,1.0,3.0,2.0,1.5,1,1,155.1897171658427,620.0,15731.205533596836,4,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04818448264382242,10487.470355731224,2,1,2_0,2_0_0,2_2_0,2_0_1 -4479,1,49.0,358.0,2,111,566.0,,,0,68,0.0,0.0,,750.0,316.54016877099525,,71,0,0,0,0,0,0,0,0,0,,2,,2,112046,2,3,0,0,2,,862.0,398.0,22,2.0,3.0,4.0,2.0,1.5,2,2,152.24204168612908,566.0,33260.89722991198,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022549000852734508,22173.931486607984,6,3,6,6_0,6_2,6_0_1 -4480,2,45.0,0.0,5,111,240.0,,,0,42,0.0,0.0,,280.0,68.81308016760767,,42,0,0,0,0,0,0,0,0,2,15.0,1,,3,104021,2,2,0,0,2,,150.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,126.78677235281864,240.0,24560.22137181617,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011400548706833364,18892.47797832013,5,3,5,5_1,5_2,5_0_0 -4481,1,38.0,362.0,2,111,0.0,,,81,68,0.0,0.0,,422.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,120210,2,1,0,0,2,,234.0,344.0,43,2.0,0.0,3.0,4.0,2.1,2,2,139.20890507392602,0.0,10476.870512369915,4,4,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0402792035562289,4988.985958271388,1,1,1_1,1_0_1,1_2_1,1_0_1 -4482,1,29.0,463.0,9,111,0.0,,,0,85,0.0,0.0,,195.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,2009.0,6,113605,2,1,0,0,1,,484.0,730.0,31,0.0,0.0,4.0,4.0,1.9,2,2,198.86157238138708,0.0,15123.80525042579,0,6,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012893580469406668,7959.8975002241,1,1,1_1,1_0_1,1_2_1,1_0_0 -4483,2,23.0,0.0,9,111,0.0,,,0,64,0.0,0.0,,222.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,122194,2,1,0,0,1,,185.0,605.0,12,1.0,0.0,3.0,1.0,1.0,2,2,192.48817734475398,0.0,23271.055591003438,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00953974774078684,23271.055591003438,6,3,6,6_0,6_2,6_0_0 -4484,1,90.0,253.0,2,111,348.0,,,77,77,0.0,0.0,,486.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,2,,2,116795,2,1,0,0,2,,155.0,280.0,41,0.0,12.0,4.0,2.0,1.5,2,2,158.38272380763885,348.0,8275.865933238922,5,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.058724972579370247,5517.243955492614,1,1,1_1,1_0_1,1_2_1,1_0_1 -4485,2,56.0,0.0,5,111,540.0,,,0,77,0.0,0.0,,720.0,309.6588607542345,,31,2,2,2,2,1,2,2,1,0,,1,,3,109097,2,2,0,0,2,,200.0,,21,2.0,0.0,4.0,3.0,2.0,2,2,107.37008457244231,540.0,25100.390963214246,0,7,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.028684812163093095,12550.195481607123,2,1,2_0,2_1_0,2_2_0,2_0_0 -4486,1,65.0,274.0,2,111,244.0,,,81,63,0.0,0.0,,313.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,0,,2,,2,111569,2,1,0,0,2,,296.0,280.0,43,3.0,3.0,4.0,3.0,2.0,2,2,129.12089190726718,244.0,23274.972111553783,4,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013447921591477466,11637.486055776892,2,1,2_1,2_0_1,2_2_1,2_0_1 -4487,2,62.0,0.0,5,111,0.0,,,0,77,0.0,0.0,,380.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,129182,2,1,0,0,1,,0.0,550.0,11,0.0,2.0,2.0,1.0,1.0,1,1,173.64693615244644,0.0,22322.233753742406,0,5,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01702338592956861,22322.233753742406,6,3,6,6_1,6_2,6_0_0 -4488,1,85.0,190.0,2,111,220.0,,,77,75,0.0,0.0,,312.0,158.27008438549763,,43,0,0,0,0,0,0,0,0,0,,2,,2,102027,2,3,0,0,2,,235.0,221.0,41,0.0,1.0,1.0,2.0,1.5,2,2,146.03474995207657,220.0,16448.11832060195,5,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018968735141527228,10965.412213734633,2,1,2_1,2_0_1,2_2_1,2_0_1 -4489,2,75.0,0.0,6,111,300.0,,,77,78,0.0,0.0,,432.0,227.0831645531053,,33,2,2,2,2,1,1,2,2,0,,2,,4,104906,1,3,0,0,2,,200.0,,41,0.0,3.0,3.0,2.0,1.5,5,4,113.99990083916595,300.0,14422.0,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.029954236582998197,9614.666666666666,1,1,1_0,1_0_0,1_2_0,1_0_0 -4490,2,66.0,0.0,2,111,492.0,,,86,78,0.0,0.0,,768.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,2,,2,124997,2,1,0,0,2,,627.0,318.0,41,2.0,2.0,5.0,4.0,2.5,1,1,144.3421087631821,492.0,32956.64164875864,6,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02330334529182611,13182.656659503456,2,1,2_0,2_0_0,2_2_0,2_0_1 -4491,1,61.0,357.0,5,111,720.0,,,81,81,0.0,0.0,,808.0,151.38877636873687,,33,2,2,1,2,1,2,2,2,0,,1,,3,132984,2,3,0,0,2,,250.0,515.0,43,2.0,1.0,4.0,4.0,2.5,2,2,119.51100774153345,720.0,12140.204053931477,4,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.06655571820791083,4856.081621572591,1,1,1_1,1_1_1,1_2_1,1_0_0 -4492,1,55.0,245.0,2,111,480.0,,,0,77,0.0,0.0,,687.0,356.1076898673697,,50,0,0,0,0,0,0,0,0,0,,2,,2,112080,2,3,0,0,1,,480.0,251.0,21,1.0,2.0,3.0,2.0,1.5,2,2,139.20890507392602,480.0,12633.0,0,6,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05438138209451437,8422.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -4493,2,61.0,0.0,2,111,420.0,,,0,52,0.0,0.0,,442.0,37.84719409218422,,50,2,2,2,2,1,2,2,2,2,5.0,1,,2,126406,1,2,0,0,2,,400.0,655.0,12,1.0,3.0,5.0,1.0,1.0,1,1,124.82994212497871,420.0,29140.51732461288,0,1,2,3,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.01516788446396848,29140.51732461288,8,4,8,8_1,8_2,8_0_1 -4495,1,38.0,350.0,2,111,0.0,,,0,85,0.0,0.0,,504.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,115334,2,2,0,0,2,,366.0,540.0,31,0.0,0.0,3.0,3.0,1.8,2,2,121.15858690645663,0.0,15928.616458187782,0,6,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03164116615670842,8849.231365659878,1,1,1_1,1_0_1,1_2_1,1_0_1 -4496,1,42.0,350.0,8,111,600.0,,,0,52,0.0,0.0,,840.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,109943,2,1,0,0,2,,600.0,490.0,32,3.0,0.0,4.0,5.0,2.8,2,2,133.82332620963882,600.0,12403.727848101265,0,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06772157614926913,4429.902802893309,1,1,1_1,1_0_1,1_2_1,1_0_0 -4497,1,27.0,413.0,9,111,223.0,,,0,85,0.0,0.0,,283.0,103.2196202514115,,60,0,0,0,0,0,0,0,0,0,,2,2005.0,6,100349,2,2,0,0,2,,325.0,439.0,31,0.0,0.0,2.0,3.0,1.6,2,2,179.08501252923145,223.0,13209.665836179509,0,6,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021423706209501594,8256.041147612192,1,1,1_1,1_0_1,1_2_1,1_0_0 -4498,2,25.0,0.0,9,111,0.0,,,46,62,0.0,0.0,,196.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,120010,1,1,0,0,1,,131.0,525.0,43,2.0,0.0,2.0,2.0,1.5,2,2,188.92594807058103,0.0,15393.871009642935,1,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012732340025275181,10262.58067309529,2,1,2_0,2_0_0,2_2_0,2_0_0 -4499,1,53.0,220.0,6,111,200.0,,,0,78,0.0,0.0,,326.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,4,100070,2,2,0,0,2,,120.0,455.0,11,0.0,0.0,3.0,1.0,1.0,1,1,125.00864183669597,200.0,6595.9181202306645,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04942450680218564,6595.9181202306645,1,1,1_1,1_1_1,1_2_1,1_0_0 -4500,2,72.0,0.0,5,111,384.0,,,0,77,0.0,0.0,,444.0,103.2196202514115,,60,0,0,0,0,0,0,0,0,0,,2,,3,101576,2,2,0,0,2,,67.0,235.0,11,0.0,2.0,1.0,1.0,1.0,2,2,175.33322267450896,384.0,19034.117755400694,0,5,2,3,43.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0233265342636656,19034.117755400694,5,3,5,5_0,5_2,5_0_0 -4501,2,37.0,0.0,8,111,0.0,,,0,34,0.0,0.0,,360.0,0.0,,70,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,133289,2,2,0,0,1,,164.0,750.0,12,1.0,0.0,3.0,1.0,1.0,2,2,143.38112942384194,0.0,17098.60746423236,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021054346136260765,17098.60746423236,4,2,4_0,4_0_0,4_2_0,4_0_0 -4502,2,78.0,0.0,6,111,760.0,,,72,77,0.0,0.0,,880.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,2,,4,102897,2,1,0,0,2,,800.0,407.0,41,0.0,1.0,3.0,2.0,1.5,1,1,163.04456025203893,760.0,35776.7037749349,5,5,2,3,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024597011662559218,23851.135849956598,6,3,6,6_0,6_2,6_0_0 -4503,2,70.0,0.0,8,111,400.0,,,0,74,0.0,0.0,,463.0,108.38060126398207,,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118746,1,1,0,0,2,,80.0,900.0,11,0.0,2.0,5.0,1.0,1.0,2,2,134.08674915268037,400.0,79490.12580698876,0,5,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005824622810689943,79490.12580698876,10,5,10,10_1,10_2,10_0_0 -4504,1,24.0,350.0,6,111,600.0,,,0,56,0.0,0.0,,684.0,144.50746835197612,,43,0,0,0,0,0,0,0,0,0,,1,,4,126217,1,3,0,0,2,,0.0,539.0,32,2.0,0.0,2.0,3.0,1.8,2,2,148.2062002127808,600.0,10466.101335790903,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06535384839633902,5814.500742106057,1,1,1_1,1_1_1,1_2_1,1_0_0 -4505,1,36.0,253.0,2,111,0.0,,,0,54,0.0,0.0,,489.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,2,106110,2,2,0,0,2,,332.0,318.0,12,1.0,0.0,1.0,1.0,1.0,2,2,152.66270695645966,0.0,13532.0,0,4,2,3,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03613656517883535,13532.0,3,2,3_1,3_0_1,3_2_1,3_0_1 -4506,2,52.0,0.0,9,111,500.0,,,0,23,0.0,0.0,,500.0,0.0,,44,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,127883,2,1,0,0,2,,500.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,233.59196266234878,500.0,136891.8829034942,0,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0036525175152458756,136891.8829034942,10,5,10,10_0,10_2,10_0_0 -4507,1,43.0,253.0,8,111,588.0,,,0,67,0.0,0.0,,703.0,197.83760548187203,,31,0,0,0,0,0,0,0,0,0,,2,2001.0,6,110242,2,3,0,0,2,,610.0,602.0,22,1.0,98.0,5.0,2.0,1.5,1,1,140.9473281632939,588.0,3330.8108427695024,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.21105971884475722,2220.540561846335,1,1,1_1,1_0_1,1_2_1,1_0_0 -4508,1,59.0,189.0,5,111,210.0,,,0,77,0.0,0.0,,340.0,223.64251054472493,,42,0,0,0,0,0,0,0,0,0,,2,,3,124547,2,1,0,0,2,,130.0,383.0,11,0.0,0.0,2.0,1.0,1.0,2,2,155.28502690689714,210.0,6595.9181202306645,0,6,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05154703163418134,6595.9181202306645,1,1,1_1,1_0_1,1_2_1,1_0_0 -4509,2,54.0,0.0,8,111,552.0,,,56,64,0.0,0.0,,690.0,237.40512657824647,,42,0,0,0,0,0,0,0,0,0,,2,2001.0,6,111986,2,1,0,0,2,,444.0,600.0,43,2.0,2.0,4.0,2.0,1.5,5,4,142.73913582849062,552.0,42953.84849279544,4,1,2,3,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016063752706948535,28635.89899519696,8,4,8,8_0,8_2,8_0_0 -4510,2,49.0,0.0,8,111,800.0,,,43,34,0.0,0.0,,884.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,100198,2,2,0,0,2,,400.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,146.20029470695798,800.0,120210.61214487907,1,1,1,2,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007353760073483314,46234.85082495349,10,5,10,10_1,10_2,10_0_0 -4511,2,71.0,0.0,9,111,332.0,,,86,77,0.0,0.0,,472.0,240.84578058662683,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,120180,2,1,0,0,2,,159.0,680.0,41,0.0,4.0,4.0,2.0,1.5,3,2,152.16280125743873,332.0,31563.40756493152,5,5,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014954025449534003,21042.271709954348,5,3,5,5_1,5_2,5_0_0 -4513,2,50.0,0.0,6,111,450.0,,,85,63,0.0,0.0,,670.0,378.4719409218422,,71,0,0,0,0,0,0,0,0,0,,1,,4,121079,2,2,0,0,2,,320.0,,42,1.0,0.0,6.0,9.0,4.3999999999999995,1,1,111.09103592065142,450.0,35782.58671779976,6,1,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018724191330380092,8132.406072227219,1,1,1_0,1_1_0,1_2_0,1_0_0 -4514,2,72.0,0.0,6,111,1200.0,,,77,77,0.0,0.0,,1292.0,158.27008438549763,,31,0,0,0,0,0,0,0,0,0,,2,,4,122568,2,2,0,0,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,135.45316684774195,1200.0,78370.36020720676,5,5,0,1,107.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01648582444413967,52246.90680480451,10,5,10,10_0,10_2,10_0_0 -4515,2,44.0,0.0,6,111,780.0,,,52,85,0.0,0.0,,1020.0,412.878481005646,,70,0,0,0,0,0,0,0,0,0,,1,,4,118541,2,1,0,0,2,,280.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,112.11511373849733,780.0,15391.749024553712,4,6,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06626927182692775,7695.874512276856,1,1,1_0,1_1_0,1_2_0,1_0_0 -4516,2,80.0,0.0,5,111,450.0,,,86,72,0.0,0.0,,703.0,435.2427320601185,,71,0,0,0,0,0,0,0,0,0,,2,,3,103461,2,1,0,0,1,,300.0,,41,0.0,3.0,3.0,2.0,1.5,3,3,128.48784295488895,450.0,21707.739604308306,6,5,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03238476289168664,14471.826402872204,3,2,3_0,3_0_0,3_2_0,3_0_0 -4517,0,55.0,0.0,5,111,396.0,,,0,77,0.0,0.0,,546.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,3,102262,1,2,0,0,2,,240.0,,31,1.0,2.0,3.0,2.0,1.5,1,1,117.58631583285529,396.0,7366.37744177716,0,6,0,1,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07412055712804691,4910.918294518106,1,1,1_0,1_1_0,1_2_0,1_0_0 -4518,1,20.0,250.0,6,111,660.0,,,0,68,0.0,0.0,,960.0,516.0981012570575,,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,126120,2,1,0,0,1,,700.0,,22,5.0,1.0,5.0,5.0,3.0,2,2,116.27759040806794,660.0,17739.701718877845,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.054115904270160775,5913.233906292615,1,1,1_1,1_1_1,1_2_1,1_0_0 -4519,1,30.0,684.0,5,111,1400.0,,,42,53,0.0,0.0,,1484.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,1,13.0,2,,3,100327,2,3,0,0,2,,0.0,934.0,43,2.0,0.0,3.0,3.0,1.8,2,2,170.90561189411093,1400.0,41190.936714025906,4,1,2,3,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03602734286677885,22883.85373001439,6,3,6,6_0,6_2,6_0_0 -4520,1,44.0,380.0,9,111,950.0,,,85,55,0.0,51.75862524097289,,1040.0,68.81308016760767,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,131180,2,1,0,0,2,,240.0,,42,2.0,0.0,4.0,4.0,2.5,2,2,125.68633801631405,950.0,21829.0,6,4,1,2,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04764304365751981,8731.6,1,1,1_1,1_1_1,1_2_1,1_0_0 -4521,0,36.0,0.0,7,111,320.0,,,0,52,0.0,0.0,,376.0,0.0,,50,2,2,2,2,2,1,2,2,2,90.0,1,,5,122845,1,3,0,0,2,,600.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,138.08978769392073,320.0,16792.00327218399,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02239161069143223,12916.925593987684,2,1,2_0,2_1_0,2_2_0,2_0_0 -4522,2,80.0,0.0,2,111,400.0,,,77,74,0.0,0.0,,664.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,8,,2,127727,2,3,0,0,2,,480.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,112.30821996929397,400.0,90768.37411818892,5,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0073153232769754125,60512.249412125944,10,5,10,10_0,10_2,10_0_1 -4523,2,51.0,0.0,7,111,800.0,,,52,33,0.0,0.0,,926.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,2,15.0,2,,5,124034,2,1,0,0,1,,450.0,,43,2.0,1.0,5.0,3.0,1.8,1,1,105.53568121405718,800.0,81778.08206320077,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011323327432457477,45432.26781288932,10,5,10,10_0,10_2,10_0_0 -4524,1,72.0,100.0,7,111,220.0,,,0,77,0.0,0.0,,262.0,72.25373417598806,,31,0,0,0,0,0,0,0,0,0,,2,,5,103193,2,1,0,0,2,,180.0,155.0,11,0.0,0.0,3.0,1.0,1.0,2,2,120.18569888146273,220.0,2938.2144740622753,0,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08916980101788408,2938.2144740622753,1,1,1_1,1_0_1,1_2_1,1_0_0 -4525,1,34.0,250.0,9,111,480.0,,,21,48,0.0,0.0,,524.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,122044,1,1,0,0,2,,180.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,109.14118314578897,480.0,22512.451641710155,1,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023276007799574974,8658.635246811598,1,1,1_1,1_1_1,1_2_1,1_0_0 -4526,2,71.0,0.0,2,111,540.0,,,0,77,0.0,0.0,,724.0,316.54016877099525,,70,0,0,0,0,0,0,0,0,0,,1,,2,112848,2,1,0,0,2,,280.0,,21,1.0,4.0,5.0,2.0,1.5,2,2,115.5754559092696,540.0,29086.083748245976,0,6,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024891628803195634,19390.72249883065,5,3,5,5_1,5_2,5_0_1 -4527,1,65.0,100.0,9,111,0.0,,,0,78,0.0,0.0,,826.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2011.0,6,100204,2,1,0,0,1,,0.0,450.0,11,0.0,4.0,1.0,1.0,1.0,2,2,202.8417309280999,0.0,15893.0,0,5,3,4,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05197256653872774,15893.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -4528,2,56.0,0.0,8,111,400.0,,,68,54,0.0,0.0,,568.0,289.01493670395223,,43,2,2,2,2,2,2,2,1,2,15.0,1,2000.0,6,119414,2,2,0,0,2,,400.0,,43,3.0,2.0,5.0,3.0,2.0,2,2,118.30882623842575,400.0,28732.10093279476,1,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.019768829342781753,14366.05046639738,3,2,3_0,3_1_0,3_2_0,3_0_0 -4529,0,44.0,0.0,7,111,513.0,,,0,62,0.0,0.0,,546.0,56.77079113827632,,44,0,0,0,0,0,0,0,0,0,,1,,5,101196,1,3,0,0,2,,70.0,,32,2.0,2.0,3.0,3.0,1.8,2,2,165.39802243380205,513.0,8804.426203280078,0,4,5,0,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062014262757587583,4891.347890711154,1,1,1_0,1_1_0,1_2_0,1_0_0 -4530,2,57.0,0.0,9,111,500.0,,,0,52,0.0,0.0,,500.0,0.0,,60,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,107500,2,1,0,0,1,,120.0,827.0,12,1.0,2.0,3.0,1.0,1.0,3,3,140.21080615101872,500.0,40522.68199767337,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012338768693264375,40522.68199767337,9,5,9,9_0,9_2,9_0_0 -4531,2,50.0,0.0,8,111,900.0,,,56,63,0.0,0.0,,984.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,101879,2,3,0,0,2,,360.0,,43,3.0,0.0,5.0,4.0,2.3,4,3,108.47255125077358,900.0,44384.81882222544,1,1,1,2,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02216974240542056,19297.747314011063,5,3,5,5_1,5_2,5_0_0 -4532,2,39.0,0.0,6,111,330.0,,,56,54,0.0,0.0,,402.0,123.8635443016938,,71,0,0,0,0,0,0,0,0,2,30.0,2,,4,133556,2,1,0,0,2,,347.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,145.02410037888396,330.0,45498.70907861074,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008835415512678425,25277.060599228185,7,4,7,7_0,7_2,7_0_0 -4533,0,46.0,0.0,6,111,0.0,,,56,56,0.0,0.0,,230.0,395.67521096374406,,31,0,0,0,0,0,0,0,0,0,,2,,4,104113,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,5.0,2.8,4,3,164.67514259534136,0.0,36738.75928079739,4,1,5,0,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006260418274936583,13120.985457427641,2,1,2_0,2_0_0,2_2_0,2_0_0 -4534,1,45.0,413.0,7,111,480.0,,,52,68,0.0,207.03450096389156,,753.0,125.58387130588399,,31,0,0,0,0,0,0,0,0,0,,1,,5,106297,2,1,0,0,2,,240.0,417.0,43,2.0,0.0,3.0,4.0,2.3,2,2,120.66259508144574,480.0,11464.828751869929,4,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06567913191701051,4984.708152986926,1,1,1_1,1_1_1,1_2_1,1_0_0 -4535,2,91.0,0.0,6,111,240.0,,,77,72,0.0,0.0,,288.0,82.5756962011292,,50,0,0,0,0,0,0,0,0,0,,2,,4,111078,2,2,0,0,2,,160.0,,41,0.0,4.0,3.0,2.0,1.5,1,1,147.5683749417732,240.0,37623.93080650167,5,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00765470257430496,25082.62053766778,7,4,7,7_0,7_2,7_0_0 -4536,1,74.0,229.0,2,111,0.0,,,0,78,0.0,0.0,,563.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,132938,2,1,0,0,2,,102.0,386.0,11,0.0,4.0,2.0,1.0,1.0,2,2,152.66270695645966,0.0,11739.311630365262,0,5,2,3,39.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04795851901092113,11739.311630365262,2,1,2_1,2_0_1,2_2_1,2_0_1 -4537,1,50.0,260.0,8,111,400.0,,,85,47,0.0,0.0,,652.0,433.5224050559283,,41,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,108114,2,1,0,0,1,,420.0,577.0,42,1.0,2.0,4.0,4.0,2.1,3,3,163.91225788988697,400.0,21231.21572945116,6,1,2,3,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030709499084198445,10110.102728310076,2,1,2_1,2_1_1,2_2_1,2_0_0 -4538,1,47.0,438.0,5,111,320.0,,,0,43,0.0,0.0,,458.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,2,,3,113487,2,2,0,0,2,,538.0,419.0,32,1.0,3.0,4.0,4.0,2.3,3,3,135.2503144274154,320.0,18853.10588235294,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024293079498837456,8197.002557544756,1,1,1_1,1_0_1,1_2_1,1_0_0 -4539,1,84.0,304.0,6,111,591.0,,,86,78,0.0,0.0,,951.0,619.317721508469,,50,0,0,0,0,0,0,0,0,0,,2,,4,119813,2,1,0,0,2,,568.0,328.0,41,1.0,2.0,4.0,3.0,2.0,2,2,139.7361761655233,591.0,17270.670988545528,6,5,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05506445005123045,8635.335494272764,1,1,1_1,1_0_1,1_2_1,1_0_0 -4540,0,53.0,0.0,6,400,0.0,,,42,63,0.0,0.0,,270.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,4,119190,2,1,0,0,2,,339.0,,43,3.0,2.0,3.0,3.0,2.0,4,3,119.2569322365979,0.0,55876.85792470294,1,1,0,1,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004832054092301315,27938.42896235147,7,4,7,7_1,7_1,7_0_0 -4541,2,70.0,0.0,9,111,600.0,,,74,74,0.0,0.0,,646.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,107267,2,1,0,0,1,,480.0,900.0,41,0.0,3.0,4.0,2.0,1.5,1,1,158.73915608543382,600.0,109934.9863714222,5,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005876200300943766,73289.99091428147,10,5,10,10_0,10_2,10_0_0 -4542,2,44.0,0.0,5,111,450.0,,,90,46,0.0,0.0,,576.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,2,30.0,1,,3,118137,2,1,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,157.14542955789764,450.0,161376.650479642,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003569289598513904,62067.94249217001,10,5,10,10_1,10_2,10_0_0 -4543,2,43.0,0.0,8,120,0.0,,,21,43,0.0,0.0,,889.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,131510,2,2,0,0,2,,665.0,875.0,43,2.0,0.0,4.0,4.0,2.1,1,1,125.94471186440578,0.0,51240.56614116132,1,1,2,3,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01734953508419319,24400.2695910292,7,4,7,7_1,7_2,7_0_0 -4544,2,57.0,0.0,5,111,587.0,,,72,52,0.0,0.0,,656.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,124282,2,1,0,0,2,,352.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,140.03306236608412,587.0,43890.115554425676,5,1,0,1,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014946417700507785,29260.077036283783,8,4,8,8_1,8_2,8_0_0 -4545,1,45.0,250.0,7,120,620.0,,,0,52,0.0,0.0,,752.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,2,,5,104061,2,1,0,0,1,,210.0,580.0,32,1.0,0.0,2.0,3.0,1.8,2,2,156.0423606223715,620.0,22762.15013793713,0,4,2,3,58.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033037300757746066,12645.638965520628,2,1,2_1,2_0_1,2_2_1,2_0_0 -4546,2,35.0,0.0,8,120,450.0,,,56,64,0.0,0.0,,560.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,113971,2,1,0,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,106.91063453857657,450.0,32031.769104164065,4,1,0,1,58.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017482643502422134,17795.427280091146,4,2,4_0,4_1_0,4_2_0,4_0_0 -4547,2,32.0,0.0,7,120,0.0,,,55,21,0.0,0.0,,481.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,105090,2,2,0,0,2,,463.0,890.0,43,2.0,1.0,3.0,4.0,2.3,3,2,139.12736073637285,0.0,22403.610248854013,1,1,2,3,79.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021469753966310144,9740.700108197398,1,1,1_0,1_1_0,1_2_0,1_0_0 -4548,2,73.0,0.0,6,111,300.0,,,0,77,0.0,0.0,,330.0,51.60981012570575,,70,0,0,0,0,0,0,0,0,0,,2,,4,110779,1,2,0,0,2,,200.0,458.0,11,0.0,3.0,2.0,1.0,1.0,1,1,145.8404381410048,300.0,25716.09523309987,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012832430312952342,25716.09523309987,7,4,7,7_0,7_2,7_0_0 -4549,2,41.0,0.0,9,120,0.0,,,0,34,0.0,0.0,,331.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,107471,2,1,0,0,2,,288.0,800.0,32,1.0,0.0,4.0,4.0,1.9,1,1,152.134571384766,0.0,48356.76186113786,0,1,2,3,75.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006844957918201916,25450.927295335714,7,4,7,7_1,7_2,7_0_0 -4550,2,47.0,0.0,6,111,700.0,,,55,37,0.0,0.0,,850.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,1,10.0,2,,4,133230,2,1,0,0,2,,500.0,535.0,43,2.0,0.0,3.0,3.0,2.0,3,2,125.45913046688126,700.0,29573.95004271064,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02874151064610685,14786.97502135532,3,2,3_0,3_0_0,3_2_0,3_0_0 -4551,2,50.0,0.0,7,120,1200.0,,,85,42,0.0,0.0,,1376.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,0,,1,,5,119562,2,1,0,0,1,,850.0,,42,1.0,0.0,5.0,5.0,2.8,3,3,115.03255644685328,1200.0,129812.01446196952,7,1,0,1,136.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010599943354265725,46361.43373641769,10,5,10,10_1,10_2,10_0_0 -4552,1,73.0,253.0,5,111,132.0,,,0,77,0.0,0.0,,252.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,2,,3,109376,2,2,0,0,2,,200.0,292.0,11,0.0,7.0,2.0,1.0,1.0,2,2,141.6337536328851,132.0,9699.887804005686,0,5,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0259796819398193,9699.887804005686,1,1,1_1,1_0_1,1_2_1,1_0_0 -4553,2,49.0,0.0,8,111,290.0,,,0,52,0.0,0.0,,400.0,189.2359704609211,,33,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,123377,2,1,0,0,2,,190.0,,32,2.0,1.0,3.0,2.0,1.5,3,2,144.30725590884995,290.0,32181.917170763623,0,1,0,1,71.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012429340299321535,21454.61144717575,6,3,6,6_1,6_2,6_0_0 -4554,1,33.0,245.0,7,111,490.0,,,0,46,0.0,0.0,,510.0,34.40654008380383,,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,118844,2,1,0,0,2,,160.0,427.0,22,2.0,1.0,3.0,2.0,1.5,2,2,134.86744676516412,490.0,46672.89927183364,0,1,2,3,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010927112049106772,31115.266181222425,8,4,8,8_0,8_2,8_0_0 -4555,0,45.0,0.0,7,120,650.0,,,85,63,0.0,0.0,,870.0,378.4719409218422,,50,2,2,2,2,1,2,2,2,2,15.0,1,,5,118691,1,2,0,0,2,,500.0,,42,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,108.89761311094732,650.0,18579.035294117646,6,1,5,0,79.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04682697385668097,5993.237191650855,1,1,1_0,1_1_0,1_2_0,1_0_0 -4556,2,83.0,0.0,6,111,600.0,,,0,77,0.0,0.0,,720.0,206.439240502823,,31,2,2,1,2,1,2,2,2,0,,1,,4,101260,2,1,0,0,2,,350.0,,11,0.0,10.0,4.0,1.0,1.0,3,3,119.18501507518114,600.0,6956.088731368982,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.10350644274462864,6956.088731368982,1,1,1_0,1_1_0,1_2_0,1_0_0 -4557,1,38.0,220.0,9,111,400.0,,,63,55,0.0,0.0,,620.0,378.4719409218422,,10,0,0,0,0,0,0,0,0,1,5.0,1,2009.0,6,100651,2,1,0,0,1,,280.0,,43,2.0,0.0,5.0,5.0,2.8,4,4,193.5481189232246,400.0,11365.016796053444,1,1,1,2,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05455337296248414,4058.9345700190875,1,1,1_1,1_1_1,1_2_1,1_0_0 -4558,2,60.0,0.0,2,111,360.0,,,85,62,0.0,0.0,,480.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,2,128263,2,3,0,0,2,,160.0,280.0,42,1.0,1.0,3.0,2.0,1.5,2,2,156.7777159481639,360.0,32131.865947192382,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014938441508154663,21421.24396479492,6,3,6,6_1,6_2,6_0_1 -4559,2,35.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,665.0,0.0,,50,0,0,0,0,0,0,0,0,3,15.0,2,,3,110888,2,2,0,0,2,,447.0,319.0,32,1.0,2.0,3.0,3.0,1.6,4,3,120.75646635114597,0.0,14575.400095911737,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045624819601797845,9109.625059944834,1,1,1_0,1_0_0,1_2_0,1_0_0 -4560,1,52.0,36.0,5,111,300.0,,,0,54,0.0,0.0,,420.0,206.439240502823,,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,114190,1,1,0,0,2,,300.0,259.0,32,1.0,1.0,1.0,2.0,1.5,3,2,182.86822582045144,300.0,27285.999451152507,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01539250928857803,18190.66630076834,4,2,4_1,4_0_1,4_2_1,4_0_0 -4561,2,47.0,0.0,7,120,504.0,,,90,69,0.0,0.0,,630.0,216.76120252796414,,33,2,2,2,2,1,2,2,2,0,,1,,5,106005,2,1,0,0,2,,176.0,,43,2.0,1.0,3.0,3.0,2.0,2,2,104.4634562145839,504.0,12359.757655339621,4,4,0,1,65.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.0509718732007524,6179.878827669811,1,1,1_0,1_1_0,1_2_0,1_0_0 -4562,1,42.0,305.0,2,111,350.0,,,0,54,0.0,0.0,,390.0,68.81308016760767,,70,2,2,2,2,2,2,2,1,3,15.0,2,,2,117852,1,2,0,0,2,,400.0,464.0,32,1.0,0.0,3.0,3.0,1.8,2,2,123.14546858724025,350.0,17595.56720161889,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.022164673382289023,9775.315112010494,2,1,2_1,2_0_1,2_2_1,2_0_1 -4563,1,29.0,413.0,7,120,420.0,,,85,62,0.0,0.0,,546.0,216.76120252796414,,70,2,2,2,2,1,2,2,2,0,,2,,5,128152,2,1,0,0,2,,0.0,530.0,42,1.0,0.0,3.0,4.0,2.1,1,1,125.98255804856807,420.0,8524.110325358402,6,4,2,3,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.06405360549777293,4059.1001549325724,1,1,1_1,1_0_1,1_2_1,1_0_0 -4564,1,25.0,414.0,9,120,400.0,,,0,52,0.0,0.0,,442.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,124106,2,2,0,0,2,,300.0,500.0,32,1.0,0.0,4.0,3.0,1.6,4,4,176.01171236316767,400.0,15722.86561264822,0,1,2,3,39.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028111923798702077,9826.791007905136,2,1,2_1,2_0_1,2_2_1,2_0_0 -4565,1,54.0,200.0,5,111,100.0,,,0,68,0.0,0.0,,200.0,172.03270041901916,,12,0,0,0,0,0,0,0,0,0,,2,,3,120602,1,1,0,0,2,,120.0,270.0,12,1.0,3.0,1.0,1.0,1.0,2,2,128.9219421314448,100.0,6332.0,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03158559696778269,6332.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -4566,0,78.0,0.0,7,120,90.0,,,78,77,0.0,0.0,,216.0,216.76120252796414,,50,2,2,2,2,1,2,2,2,0,,1,,5,126978,1,3,0,0,2,,0.0,,41,1.0,8.0,3.0,3.0,2.0,1,1,124.86198833156229,90.0,18212.238752039408,5,5,5,0,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.011860156400366336,9106.119376019704,1,1,1_0,1_1_0,1_2_0,1_0_0 -4567,1,49.0,347.0,5,111,130.0,,,0,68,0.0,0.0,,270.0,240.84578058662683,,70,0,0,0,0,0,0,0,0,0,,2,,3,118960,2,2,0,0,2,,90.0,345.0,32,1.0,0.0,3.0,2.0,1.3,1,1,129.65715919551994,130.0,13095.0,0,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020618556701030927,10073.076923076922,2,1,2_1,2_0_1,2_2_1,2_0_0 -4568,2,64.0,0.0,2,120,384.0,,,90,78,0.0,0.0,,510.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,2,112315,1,2,0,0,2,,1500.0,,41,1.0,4.0,6.0,5.0,2.8,2,2,118.23912765143406,384.0,39626.965568473366,6,5,0,1,114.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01287002405265541,14152.487703026203,3,2,3_0,3_1_0,3_2_0,3_0_1 -4569,2,73.0,0.0,2,111,120.0,,,0,77,0.0,0.0,,190.0,120.42289029331342,,20,0,0,0,0,0,0,0,0,0,,1,,2,128590,2,2,0,0,2,,300.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,119.23676500534783,120.0,35498.696217494085,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.005352309246398921,23665.79747832939,6,3,6,6_1,6_2,6_0_1 -4570,2,68.0,0.0,6,111,200.0,,,0,78,0.0,0.0,,260.0,103.2196202514115,,50,0,0,0,0,0,0,0,0,0,,1,,4,126324,2,1,0,0,2,,250.0,,11,0.0,0.0,4.0,1.0,1.0,3,2,110.4488325676834,200.0,14890.362476736636,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01746095841563297,14890.362476736636,3,2,3_0,3_1_0,3_2_0,3_0_0 -4571,2,36.0,0.0,9,120,1152.0,,,21,56,0.0,0.0,,1278.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,121586,2,1,0,0,2,,399.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,141.80592566732275,1152.0,37306.60272141056,1,1,1,2,60.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0342566705830479,17765.04891495741,4,2,4_0,4_1_0,4_2_0,4_0_0 -4572,2,58.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,576.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,2,,5,101213,2,1,0,0,2,,129.0,500.0,12,1.0,2.0,2.0,1.0,1.0,2,2,158.06414046725985,0.0,34263.67504742086,0,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016810806173091972,34263.67504742086,9,5,9,9_0,9_2,9_0_0 -4573,1,30.0,413.0,2,111,0.0,,,56,53,0.0,0.0,,433.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,2,110097,1,1,0,0,2,,862.0,520.0,43,2.0,0.0,3.0,4.0,2.1,2,2,116.90852406659972,0.0,11080.566238202671,4,4,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03907742534917918,5276.460113429844,1,1,1_1,1_0_1,1_2_1,1_0_1 -4574,2,43.0,0.0,9,120,400.0,,,55,64,0.0,0.0,,484.0,144.50746835197612,,31,2,2,2,2,1,2,2,2,2,15.0,1,2004.0,6,109420,2,2,0,0,1,,480.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,119.01814570085892,400.0,55487.020401038644,1,1,0,1,150.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.008722760683522667,26422.390667161257,7,4,7,7_1,7_2,7_0_0 -4575,2,60.0,0.0,2,111,330.0,,,0,55,0.0,0.0,,330.0,0.0,,33,0,0,0,0,0,0,0,0,2,8.0,2,,2,115707,2,1,0,0,2,,138.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,123.67165168906719,330.0,30227.13202629045,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010917344050801053,20151.4213508603,5,3,5,5_0,5_2,5_0_1 -4576,0,93.0,0.0,9,120,250.0,,,86,78,0.0,0.0,,376.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,0,,1,2007.0,6,113591,2,1,0,0,2,,0.0,,41,0.0,6.0,3.0,2.0,1.5,2,2,121.45691924164025,250.0,7243.913052840209,6,5,5,0,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05190564785321065,4829.275368560139,1,1,1_0,1_1_0,1_2_0,1_0_0 -4577,0,36.0,0.0,5,111,250.0,,,0,42,0.0,0.0,,270.0,34.40654008380383,,31,0,0,0,0,0,0,0,0,0,,1,,3,101353,1,1,0,0,2,,160.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,153.25357916377004,250.0,7645.45427333315,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03531510232710992,7645.45427333315,1,1,1_0,1_1_0,1_2_0,1_0_0 -4578,2,55.0,0.0,7,112,398.0,,,85,63,0.0,0.0,,565.0,287.294609699762,,10,0,0,0,0,0,0,0,0,0,,1,,5,101217,2,1,0,0,2,,550.0,,42,1.0,0.0,5.0,3.0,2.0,4,2,112.96702789784507,398.0,10501.998591054271,6,4,0,1,60.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05379928354601703,5250.9992955271355,1,1,1_0,1_1_0,1_1_0,1_0_0 -4579,1,68.0,253.0,7,111,130.0,,,0,77,0.0,0.0,,193.0,108.38060126398207,,31,0,0,0,0,0,0,0,0,0,,1,,5,124534,2,1,0,0,2,,190.0,274.0,11,0.0,2.0,3.0,1.0,1.0,4,3,136.13021227105008,130.0,10637.4639507303,0,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018143422238037277,10637.4639507303,2,1,2_1,2_1_1,2_2_1,2_0_0 -4580,2,72.0,0.0,2,111,0.0,,,0,75,0.0,0.0,,690.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,126314,2,2,0,0,2,,696.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,123.83571371906841,0.0,49670.64554282363,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01389150457899959,49670.64554282363,10,5,10,10_1,10_2,10_0_1 -4581,2,27.0,0.0,9,111,0.0,,,0,42,0.0,0.0,,197.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,115841,2,1,0,0,1,,98.0,610.0,12,1.0,0.0,2.0,1.0,1.0,2,2,133.8095046954201,0.0,8742.205759555418,0,1,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02253435865252597,8742.205759555418,1,1,1_0,1_0_0,1_2_0,1_0_0 -4582,2,88.0,0.0,9,111,300.0,,,0,86,0.0,0.0,,384.0,144.50746835197612,,60,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,121911,1,1,0,0,2,,222.0,,21,1.0,1.0,6.0,2.0,1.5,1,1,123.14350941411244,300.0,10718.52720319837,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035825817551259825,7145.684802132247,1,1,1_0,1_1_0,1_2_0,1_0_0 -4583,2,28.0,0.0,8,111,241.0,,,0,35,0.0,0.0,,241.0,0.0,,71,0,0,0,0,0,0,0,0,2,25.0,2,2003.0,6,117892,2,1,0,0,2,,120.0,600.0,12,1.0,0.0,1.0,1.0,1.0,2,2,159.0714798015019,241.0,28206.0,0,1,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008544281358576189,28206.0,8,4,8,8_0,8_2,8_0_0 -4584,2,39.0,0.0,9,111,0.0,,,46,37,0.0,0.0,,321.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2004.0,6,103384,2,1,0,0,1,,329.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,164.56174998666938,0.0,41067.765213317485,1,1,0,1,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007816349351678525,22815.425118509713,6,3,6,6_0,6_2,6_0_0 -4585,2,38.0,0.0,6,111,244.0,,,67,52,0.0,0.0,,695.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,120438,2,3,0,0,2,,194.0,400.0,43,2.0,0.0,3.0,4.0,2.1,2,2,122.44689800558227,244.0,41567.088560847835,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01671995860337023,19793.851695641824,5,3,5,5_1,5_2,5_0_0 -4586,2,57.0,0.0,6,111,470.0,,,77,62,0.0,0.0,,638.0,289.01493670395223,,71,0,0,0,0,0,0,0,0,0,,1,,4,118427,2,1,0,0,1,,125.0,,42,3.0,0.0,4.0,4.0,2.5,3,3,119.32014190472087,470.0,57646.51591383199,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011067451170052676,23058.606365532796,6,3,6,6_1,6_2,6_0_0 -4587,1,78.0,146.0,6,111,100.0,,,0,86,0.0,0.0,,100.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,117651,1,1,0,0,2,,220.0,149.0,11,0.0,3.0,2.0,1.0,1.0,1,1,122.45239685319356,100.0,10675.868690731106,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.009366919254713293,10675.868690731106,2,1,2_1,2_1_1,2_2_1,2_0_0 -4588,2,52.0,0.0,9,111,450.0,,,56,63,0.0,372.6621017350048,,936.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,112354,2,1,0,0,2,,162.0,,43,3.0,1.0,6.0,4.0,2.5,4,3,131.5296296312734,450.0,28087.27699459323,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033324697163779136,11234.910797837292,2,1,2_0,2_1_0,2_2_0,2_0_0 -4590,1,28.0,293.0,9,111,0.0,,,53,63,0.0,0.0,,932.0,0.0,,71,0,0,0,0,0,0,0,0,1,10.0,2,2006.0,6,126891,2,2,0,0,2,,860.0,550.0,43,2.0,0.0,3.0,3.0,1.8,2,2,148.1688907989003,0.0,15503.231003668221,4,1,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06011650086227054,8612.90611314901,1,1,1_1,1_0_1,1_2_1,1_0_0 -4591,0,71.0,0.0,7,111,300.0,,,0,86,0.0,0.0,,388.0,151.38877636873687,,71,2,2,2,2,1,2,2,2,0,,1,,5,113772,1,1,0,0,2,,120.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,139.17425594222215,300.0,1828.1831168545323,0,6,0,1,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.21223256927761738,1828.1831168545323,1,1,1_0,1_1_0,1_2_0,1_0_0 -4592,2,43.0,0.0,7,111,600.0,,,62,67,0.0,0.0,,666.0,113.54158227655265,,41,0,0,0,0,0,0,0,0,0,,1,,5,129443,2,1,0,0,2,,220.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,130.7441991076995,600.0,25608.32220979816,4,1,0,1,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026007170424666774,10243.328883919265,2,1,2_0,2_1_0,2_2_0,2_0_0 -4593,2,24.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,351.0,0.0,,50,0,0,0,0,0,0,0,0,1,10.0,2,2007.0,6,128147,2,1,0,0,2,,246.0,540.0,12,1.0,0.0,2.0,1.0,1.0,1,1,169.82799893662957,0.0,38280.29227502812,0,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009169208988223227,38280.29227502812,9,5,9,9_0,9_2,9_0_0 -4594,0,31.0,0.0,7,111,420.0,,,47,42,0.0,0.0,,420.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,113987,2,1,0,0,2,,80.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,182.4500342002805,420.0,60918.47260188893,1,1,5,0,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006894460449538206,33843.59588993829,9,5,9,9_1,9_2,9_0_0 -4595,2,22.0,0.0,7,111,0.0,,,0,68,0.0,0.0,,444.0,0.0,,71,0,0,0,0,0,0,0,0,3,45.0,2,,5,130390,2,1,0,0,2,,0.0,50.0,12,1.0,0.0,1.0,1.0,1.0,2,2,128.9219421314448,0.0,17372.79800861202,0,1,3,4,24.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02555719578273465,17372.79800861202,4,2,4_0,4_0_0,4_2_0,4_0_0 -4596,1,22.0,98.0,9,111,185.0,,,0,62,0.0,82.81380038555662,,308.0,73.97406118017824,,41,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,106530,2,1,0,0,2,,320.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,157.05449057388637,185.0,34382.544157162905,0,1,1,2,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008958034012612021,22921.69610477527,6,3,6,6_1,6_2,6_0_0 -4597,1,42.0,253.0,6,111,360.0,,,0,63,0.0,0.0,,400.0,68.81308016760767,,50,0,0,0,0,0,0,0,0,0,,2,,4,124568,2,1,0,0,1,,350.0,358.0,12,1.0,0.0,2.0,1.0,1.0,2,2,132.71664363348384,360.0,5241.0,0,4,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0763213127265789,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -4598,2,48.0,0.0,7,111,600.0,,,65,48,0.0,0.0,,707.0,184.07498944835052,,71,0,0,0,0,0,0,0,0,0,,1,,5,127721,1,3,0,0,2,,80.0,928.0,43,2.0,0.0,4.0,3.0,1.8,1,1,192.70751847651525,600.0,47608.382974478096,4,1,2,3,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014850325842383863,26449.10165248783,7,4,7,7_1,7_2,7_0_0 -4599,2,58.0,0.0,7,111,480.0,,,75,33,0.0,0.0,,480.0,0.0,,20,0,0,0,0,0,0,0,0,2,30.0,2,,5,108863,2,1,0,0,1,,300.0,1000.0,42,1.0,2.0,4.0,2.0,1.5,2,2,180.49412838103086,480.0,118924.79391258147,6,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004036164236305808,79283.19594172099,10,5,10,10_0,10_2,10_0_0 -4600,1,70.0,516.0,2,111,500.0,,,85,77,0.0,0.0,,800.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,2,,2,124558,1,1,0,0,2,,280.0,600.0,41,0.0,1.0,4.0,2.0,1.5,1,1,171.18084639214754,500.0,13939.868725868724,7,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05738934962245453,9293.245817245815,1,1,1_1,1_0_1,1_2_1,1_0_1 -4601,2,49.0,0.0,6,111,500.0,,,42,37,0.0,0.0,,588.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,129620,2,2,0,0,2,,300.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,117.59774699076777,500.0,104951.27703563657,1,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0056025997644634905,52475.63851781828,10,5,10,10_1,10_2,10_0_0 -4603,2,58.0,0.0,5,111,420.0,,,0,63,0.0,0.0,,549.0,221.92218354053472,,71,0,0,0,0,0,0,0,0,1,20.0,1,,3,127405,1,2,0,0,2,,180.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,159.31230217206476,420.0,20510.6139088729,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026766629338310657,20510.6139088729,5,3,5,5_1,5_2,5_0_0 -4604,0,86.0,0.0,2,111,260.0,,,0,77,0.0,0.0,,340.0,137.62616033521533,,43,0,0,0,0,0,0,0,0,0,,1,,2,128378,2,3,0,0,2,,240.0,,11,0.0,7.0,5.0,1.0,1.0,2,2,117.50114624688857,260.0,9267.899746424551,0,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036685765847992484,9267.899746424551,1,1,1_0,1_1_0,1_2_0,1_0_1 -4605,2,78.0,0.0,7,111,600.0,,,0,77,0.0,0.0,,600.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,5,100081,2,2,0,0,2,,350.0,,11,0.0,4.0,1.0,1.0,1.0,1,1,127.67926421986236,600.0,30759.76696198365,0,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019505999533141683,30759.76696198365,8,4,8,8_0,8_2,8_0_0 -4606,0,71.0,0.0,8,111,540.0,,,0,86,0.0,0.0,,792.0,433.5224050559283,,50,2,2,1,2,1,2,2,2,0,,1,2000.0,6,128429,2,2,0,0,2,,73.0,,11,0.0,10.0,3.0,1.0,1.0,2,2,126.9654845237863,540.0,10367.383883816641,0,6,5,0,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.07639342855204795,10367.383883816641,2,1,2_0,2_1_0,2_2_0,2_0_0 -4607,2,29.0,0.0,8,111,600.0,,,56,48,0.0,0.0,,720.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,124523,2,2,0,0,1,,400.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,161.10132856767544,600.0,27400.700011033503,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026276700949613548,18267.133340689,4,2,4_0,4_0_0,4_2_0,4_0_0 -4608,2,64.0,0.0,2,111,600.0,,,0,86,0.0,0.0,,720.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,2,108579,1,2,0,0,2,,600.0,,11,0.0,5.0,5.0,1.0,1.0,4,2,123.15086385507271,600.0,3676.741153946433,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1958255884364303,3676.741153946433,1,1,1_0,1_1_0,1_2_0,1_0_1 -4610,0,76.0,0.0,1,111,318.0,,,0,86,0.0,0.0,,444.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,0,,1,,1,127215,2,1,0,0,2,,225.0,,11,0.0,7.0,3.0,1.0,1.0,1,1,122.56927376496536,318.0,4905.56983812967,0,7,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09050936275514984,4905.56983812967,1,1,1_0,1_1_0,1_2_0,1_1_0 -4611,2,52.0,0.0,5,111,420.0,,,52,64,0.0,0.0,,672.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,2,30.0,1,,3,113434,2,1,0,0,2,,210.0,,43,2.0,0.0,5.0,4.0,2.5,3,3,115.37591338770052,420.0,37398.3496529783,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01796870734231674,14959.33986119132,3,2,3_0,3_1_0,3_2_0,3_0_0 -4612,2,52.0,0.0,2,111,1100.0,,,85,48,0.0,0.0,,1260.0,275.25232067043066,,60,0,0,0,0,0,0,0,0,0,,1,,2,118539,2,2,0,0,1,,350.0,,42,1.0,1.0,5.0,4.0,2.5,3,3,114.02142195134742,1100.0,46775.32184211092,6,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026937281249567936,18710.128736844366,5,3,5,5_1,5_2,5_0_1 -4613,2,22.0,0.0,6,111,357.0,,,0,81,0.0,0.0,,609.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,,4,101975,1,1,0,0,2,,172.0,,32,3.0,0.0,4.0,5.0,2.8,2,2,119.8033098496317,357.0,7029.158370954522,0,4,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08663910639949077,2510.4137039123293,1,1,1_0,1_1_0,1_2_0,1_0_0 -4614,2,46.0,0.0,6,111,450.0,,,0,21,0.0,0.0,,525.0,129.02452531426437,,50,0,0,0,0,0,0,0,0,0,,3,,4,133419,2,1,0,0,2,,0.0,465.0,12,1.0,0.0,1.0,1.0,1.0,3,3,164.1752820276703,450.0,7687.691910499139,0,1,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06829097811308014,7687.691910499139,1,1,1_0,1_0_0,1_2_0,1_0_0 -4615,2,90.0,0.0,2,111,450.0,,,77,77,0.0,0.0,,670.0,378.4719409218422,,70,0,0,0,0,0,0,0,0,0,,2,,2,116460,2,1,0,0,2,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,111.21503898691138,450.0,62544.5114718132,5,5,0,1,101.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01071237082572701,41696.3409812088,9,5,9,9_0,9_2,9_0_1 -4617,2,71.0,0.0,2,111,400.0,,,0,77,0.0,0.0,,440.0,68.81308016760767,,31,0,0,0,0,0,0,0,0,0,,1,,2,123717,1,1,0,0,2,,400.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,113.08364862634069,400.0,14461.164926931106,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03042631781210002,14461.164926931106,3,2,3_0,3_1_0,3_2_0,3_0_1 -4618,2,55.0,0.0,2,111,290.0,,,85,53,0.0,0.0,,530.0,412.878481005646,,33,0,0,0,0,0,0,0,0,2,25.0,1,,2,124208,1,2,0,0,2,,240.0,,42,1.0,3.0,4.0,3.0,1.8,1,1,123.92455539768389,290.0,28043.679883556644,6,1,1,2,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01889908892843854,15579.82215753147,3,2,3_0,3_1_0,3_2_0,3_0_1 -4619,1,51.0,309.0,5,111,400.0,,,77,52,0.0,0.0,,460.0,103.2196202514115,,41,0,0,0,0,0,0,0,0,0,,2,,3,109030,1,2,0,0,2,,600.0,334.0,42,2.0,1.0,5.0,3.0,2.0,3,3,128.63511350506639,400.0,19408.07215817184,6,1,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023701478243232692,9704.03607908592,1,1,1_1,1_0_1,1_2_1,1_0_0 -4620,2,43.0,0.0,7,111,495.0,,,63,56,0.0,0.0,,575.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,0,,1,,5,122758,1,1,0,0,2,,245.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,122.06747146244699,495.0,23569.77286891565,4,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024395652991562045,9427.90914756626,1,1,1_0,1_1_0,1_2_0,1_0_0 -4621,1,54.0,199.0,2,111,220.0,,,85,67,0.0,0.0,,320.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,0,,2,,2,119905,1,1,0,0,2,,240.0,211.0,42,1.0,0.0,3.0,2.0,1.5,1,1,130.13151324372734,220.0,14472.27139874739,6,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022111249242305998,9648.18093249826,1,1,1_1,1_0_1,1_2_1,1_0_1 -4622,2,26.0,0.0,9,111,720.0,,,46,21,0.0,0.0,,764.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,106206,2,1,0,0,2,,480.0,830.0,43,2.0,0.0,4.0,2.0,1.5,3,3,199.55452427617107,720.0,15262.074247816274,1,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0500587264610716,10174.71616521085,2,1,2_0,2_0_0,2_2_0,2_0_0 -4623,2,69.0,0.0,5,111,600.0,,,85,71,0.0,0.0,,720.0,206.439240502823,,71,2,2,1,2,1,2,2,1,0,,1,,3,103531,2,3,0,0,2,,120.0,,41,1.0,5.0,4.0,3.0,2.0,2,2,122.56927376496536,600.0,16299.88184817213,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04417209932602922,8149.940924086065,1,1,1_0,1_1_0,1_2_0,1_0_0 -4624,1,76.0,92.0,2,111,600.0,,,86,78,0.0,0.0,,840.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,2,,2,116766,2,3,0,0,2,,300.0,302.0,41,1.0,2.0,4.0,3.0,2.0,2,2,136.8879462495784,600.0,25280.679609772385,6,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033226954851138316,12640.339804886193,2,1,2_1,2_0_1,2_2_1,2_0_1 -4625,2,64.0,0.0,2,111,100.0,,,0,77,0.0,0.0,,340.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,,2,127305,2,2,0,0,2,,100.0,,21,1.0,12.0,5.0,3.0,2.0,2,2,114.6827142600993,100.0,24941.30911582015,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013632002972303473,12470.654557910075,2,1,2_0,2_1_0,2_2_0,2_0_1 -4626,1,50.0,183.0,2,111,156.0,,,0,52,0.0,0.0,,216.0,103.2196202514115,,70,0,0,0,0,0,0,0,0,0,,2,,2,128151,2,1,0,0,2,,160.0,272.0,12,1.0,1.0,3.0,1.0,1.0,1,1,141.35364763976787,156.0,8685.664590980321,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02486856333645516,8685.664590980321,1,1,1_1,1_0_1,1_2_1,1_0_1 -4627,1,50.0,320.0,9,111,500.0,,,85,85,0.0,0.0,,620.0,206.439240502823,,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107673,1,2,0,0,2,,600.0,,41,0.0,2.0,5.0,4.0,2.1,2,2,135.1436563221643,500.0,24479.941141997362,7,7,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025326858279750467,11657.114829522552,2,1,2_1,2_1_1,2_2_1,2_0_0 -4628,2,61.0,0.0,9,111,540.0,,,0,78,0.0,0.0,,628.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,121984,2,2,0,0,2,,400.0,416.0,21,1.0,0.0,4.0,3.0,1.8,1,1,185.52442443245369,540.0,28493.86824363418,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022039829574220817,15829.926802018988,3,2,3_0,3_0_0,3_2_0,3_0_0 -4629,2,28.0,0.0,8,111,147.5,,,0,37,0.0,0.0,,388.0,412.878481005646,,33,0,0,0,0,0,0,0,0,0,,1,2002.0,6,101536,2,2,0,0,2,,180.0,,22,1.0,4.0,5.0,2.0,1.5,1,1,117.41463175579821,147.5,10145.522574044435,0,1,0,1,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038243471163588054,6763.681716029623,1,1,1_0,1_1_0,1_2_0,1_0_0 -4631,2,33.0,0.0,9,111,627.0,,,85,31,0.0,0.0,,627.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,110038,2,1,0,0,2,,420.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,117.9247518218415,627.0,39683.81471082076,6,1,0,1,167.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015799892338198854,16534.92279617532,4,2,4_0,4_1_0,4_2_0,4_0_0 -4632,1,51.0,214.0,7,111,0.0,,,0,63,0.0,0.0,,310.0,292.4555907123326,,71,0,0,0,0,0,0,0,0,0,,1,,5,127724,1,1,0,0,2,,0.0,355.0,12,1.0,0.0,2.0,1.0,1.0,2,2,145.97040482959744,0.0,4998.745490138595,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.062015559826272514,4998.745490138595,1,1,1_1,1_1_1,1_2_1,1_0_0 -4633,1,42.0,301.0,6,111,1146.0,,,0,68,0.0,0.0,,1650.0,867.0448101118566,,71,0,0,0,0,0,0,0,0,0,,1,,4,133255,1,3,0,0,2,,1495.0,,32,2.0,2.0,6.0,5.0,2.5999999999999996,2,2,141.2031921775923,1146.0,20799.665887805648,0,4,1,2,122.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07932819733260023,7999.871495309866,1,1,1_1,1_1_1,1_2_1,1_0_0 -4634,2,35.0,0.0,7,111,600.0,,,0,64,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,119071,2,2,0,0,2,,280.0,188.0,12,1.0,4.0,2.0,1.0,1.0,1,1,193.76819475341563,600.0,28568.2352875579,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02100234732599368,28568.2352875579,8,4,8,8_0,8_2,8_0_0 -4635,2,57.0,0.0,2,111,750.0,,,85,62,0.0,0.0,,876.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,2,129881,1,1,0,0,2,,625.0,484.0,42,1.0,4.0,6.0,3.0,2.0,2,2,153.30050348180177,750.0,68880.00404475754,6,1,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012717769288032909,34440.00202237877,9,5,9,9_1,9_2,9_0_1 -4636,2,64.0,0.0,6,111,500.0,,,46,31,0.0,0.0,,784.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,126066,2,1,0,0,2,,400.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,127.84001267352525,500.0,244284.33442901724,1,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003209374853416195,162856.22295267816,10,5,10,10_1,10_2,10_0_0 -4637,2,63.0,0.0,5,111,1700.0,,,74,74,0.0,0.0,,1763.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,0,,1,,3,102752,2,2,0,0,2,,385.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,169.94151094104396,1700.0,87025.70650000911,5,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020258381929939465,58017.13766667274,10,5,10,10_1,10_2,10_0_0 -4638,2,76.0,0.0,6,111,790.0,,,78,75,0.0,0.0,,1290.0,860.1635020950959,,70,0,0,0,0,0,0,0,0,0,,1,,4,104476,2,1,0,0,2,,483.0,,41,1.0,0.0,4.0,3.0,2.0,1,1,108.72121795106753,790.0,65439.71931658781,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019712798488012582,32719.859658293906,8,4,8,8_1,8_2,8_0_0 -4639,2,75.0,0.0,7,111,360.0,,,0,78,0.0,0.0,,486.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,,5,123095,1,1,0,0,2,,470.0,,21,1.0,5.0,4.0,2.0,1.5,1,1,144.93057417762722,360.0,25279.387575281802,0,6,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019225149286259253,16852.925050187867,4,2,4_0,4_1_0,4_2_0,4_0_0 -4640,2,80.0,0.0,2,111,1200.0,,,77,74,0.0,0.0,,1450.0,430.0817510475479,,70,0,0,0,0,0,0,0,0,0,,1,,2,106568,1,2,0,0,2,,600.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,122.64947149153235,1200.0,45671.44708544263,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03174850136207255,30447.63139029509,8,4,8,8_1,8_2,8_0_1 -4641,2,44.0,0.0,5,111,670.0,,,0,62,0.0,0.0,,750.0,137.62616033521533,,70,0,0,0,0,0,0,0,0,2,45.0,2,,3,129587,2,1,0,0,1,,320.0,250.0,12,1.0,1.0,2.0,1.0,1.0,2,2,167.89085117575388,670.0,25616.00370080748,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029278571660120354,25616.00370080748,7,4,7,7_0,7_2,7_0_0 -4642,2,43.0,0.0,2,111,1200.0,,,46,31,0.0,0.0,,1240.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,106244,1,2,0,0,2,,282.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,161.2558285822997,1200.0,195538.46093286521,1,1,3,4,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006341463434274103,93113.5528251739,10,5,10,10_1,10_2,10_0_1 -4643,2,64.0,0.0,7,111,700.0,,,77,90,0.0,0.0,,784.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,0,,1,,5,122980,1,2,0,0,2,,350.0,,41,0.0,4.0,4.0,2.0,1.5,4,2,143.31551289567722,700.0,43122.706086423634,6,5,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018180677215125597,28748.470724282422,8,4,8,8_1,8_2,8_0_0 -4644,2,39.0,0.0,2,111,800.0,,,21,21,0.0,0.0,,880.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,1,2.0,1,,2,117998,2,1,0,0,2,,140.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,138.08978769392073,800.0,24589.8097660417,1,1,1,2,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03578718210399789,11709.433221924619,2,1,2_0,2_1_0,2_2_0,2_0_1 -4645,1,23.0,357.0,5,111,200.0,,,0,54,0.0,0.0,,440.0,412.878481005646,,31,2,2,2,2,1,2,2,2,0,,1,,3,114423,1,3,0,0,2,,200.0,365.0,22,2.0,0.0,3.0,3.0,2.0,2,2,131.55436591504738,200.0,7779.849381532944,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.05655636483714319,3889.924690766472,1,1,1_1,1_1_1,1_2_1,1_0_0 -4646,1,40.0,467.0,8,111,0.0,,,52,67,0.0,0.0,,725.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,2001.0,6,110791,2,2,0,0,1,,325.0,592.0,43,2.0,2.0,4.0,5.0,2.5999999999999996,2,2,139.11036954798126,0.0,19997.2,4,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03625507571059948,7691.23076923077,1,1,1_1,1_0_1,1_2_1,1_0_0 -4647,2,24.0,0.0,9,111,0.0,,,0,46,0.0,0.0,,422.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,111782,2,1,0,0,1,,392.0,515.0,12,1.0,0.0,2.0,1.0,1.0,1,1,174.7079676438596,0.0,9676.351927058544,0,1,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.043611477050554244,9676.351927058544,1,1,1_0,1_0_0,1_2_0,1_0_0 -4648,2,40.0,0.0,9,111,350.0,,,0,43,0.0,0.0,,350.0,0.0,,60,0,0,0,0,0,0,0,0,1,15.0,2,2006.0,6,130846,2,1,0,0,1,,160.0,650.0,12,1.0,0.0,2.0,1.0,1.0,3,3,193.9635518100829,350.0,33991.43686757942,0,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010296710944097376,33991.43686757942,9,5,9,9_0,9_2,9_0_0 -4649,2,47.0,0.0,9,111,800.0,,,54,37,0.0,0.0,,800.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,121979,2,1,0,0,1,,250.0,867.0,43,2.0,2.0,3.0,2.0,1.5,2,2,155.66425693100007,800.0,101119.68222637924,4,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007911417267006629,67413.12148425283,10,5,10,10_0,10_2,10_0_0 -4650,2,66.0,0.0,5,111,400.0,,,0,77,0.0,0.0,,420.0,34.40654008380383,,50,0,0,0,0,0,0,0,0,0,,2,,3,129708,1,1,0,0,2,,202.0,431.0,11,0.0,2.0,3.0,1.0,1.0,1,1,120.18569888146273,400.0,28026.744371716683,0,5,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014985686329798794,28026.744371716683,7,4,7,7_0,7_2,7_0_0 -4651,1,54.0,263.0,7,111,1500.0,,,85,21,0.0,0.0,,1740.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,2,,5,119018,2,1,0,0,2,,360.0,496.0,42,1.0,3.0,4.0,4.0,2.3,2,2,130.1806411566635,1500.0,36304.903535155165,6,1,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.047927410089799685,15784.74066745877,3,2,3_1,3_0_1,3_2_1,3_0_0 -4652,1,45.0,361.0,7,111,500.0,,,85,81,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,106608,1,3,0,0,2,,300.0,450.0,42,1.0,0.0,3.0,4.0,2.5,5,4,123.1399501590639,500.0,15198.338905905037,6,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03289833205428352,6079.335562362015,1,1,1_1,1_0_1,1_2_1,1_0_0 -4653,1,30.0,341.0,7,111,500.0,,,0,21,0.0,0.0,,520.0,34.40654008380383,,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,116413,2,1,0,0,2,,400.0,339.0,32,1.0,0.0,3.0,2.0,1.3,2,2,164.49944850654958,500.0,9318.558392837374,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05580262290352693,7168.121840644134,1,1,1_1,1_0_1,1_2_1,1_0_0 -4654,2,79.0,0.0,6,111,650.0,,,0,75,0.0,0.0,,722.0,123.8635443016938,,31,0,0,0,0,0,0,0,0,0,,1,,4,132326,2,1,0,0,2,,450.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,123.60231691201619,650.0,15731.205533596836,0,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04589603755783613,15731.205533596836,3,2,3_0,3_1_0,3_2_0,3_0_0 -4655,2,55.0,0.0,6,111,576.0,,,0,68,0.0,0.0,,786.0,361.26867087994026,,50,0,0,0,0,0,0,0,0,3,30.0,2,,4,104712,2,3,0,0,2,,480.0,352.0,22,2.0,1.0,3.0,2.0,1.5,3,2,163.4570580721283,576.0,25477.06885234146,0,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030851272748660917,16984.712568227642,4,2,4_0,4_0_0,4_2_0,4_0_0 -4656,2,43.0,0.0,7,111,399.0,,,0,52,0.0,0.0,,494.0,163.4310653980682,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,124671,2,1,0,0,2,,197.0,,32,1.0,0.0,4.0,3.0,1.8,4,3,106.84947224486552,399.0,50204.73374365069,0,1,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009839709588390663,27891.518746472608,7,4,7,7_1,7_2,7_0_0 -4657,1,60.0,232.0,6,111,360.0,,,85,56,0.0,0.0,,682.0,553.9452953492417,,71,0,0,0,0,0,0,0,0,0,,2,,4,121322,2,3,0,0,1,,408.0,237.0,42,1.0,1.0,3.0,2.0,1.5,2,2,128.21074035890652,360.0,8324.523819609009,7,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08192660802933863,5549.682546406006,1,1,1_1,1_0_1,1_2_1,1_0_0 -4658,1,49.0,250.0,7,111,300.0,,,0,68,0.0,0.0,,645.0,593.5128164456162,,71,0,0,0,0,0,0,0,0,3,45.0,2,,5,101784,2,1,0,0,1,,516.0,237.0,32,1.0,1.0,3.0,3.0,1.8,3,3,150.89225325660124,300.0,9389.065176735587,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06869693498328182,5216.147320408659,1,1,1_1,1_0_1,1_2_1,1_0_0 -4659,1,27.0,442.0,2,111,484.0,,,67,22,0.0,0.0,,659.0,301.05722573328353,,71,0,0,0,0,0,0,0,0,0,,2,,2,130120,1,3,0,0,2,,484.0,415.0,43,2.0,1.0,4.0,5.0,2.4,1,1,134.86744676516412,484.0,13305.964839478578,4,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04952666025726732,5544.152016449408,1,1,1_1,1_0_1,1_2_1,1_0_1 -4660,1,76.0,88.0,5,111,260.0,,,0,78,0.0,0.0,,260.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,3,109911,2,2,0,0,2,,230.0,181.0,11,0.0,4.0,2.0,1.0,1.0,2,2,146.903545644942,260.0,10288.409922237232,0,5,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025271154820342014,10288.409922237232,2,1,2_1,2_0_1,2_2_1,2_0_0 -4661,1,69.0,131.0,5,111,198.0,,,0,77,0.0,0.0,,244.0,79.13504219274881,,70,0,0,0,0,0,0,0,0,0,,2,,3,100898,2,2,0,0,2,,130.0,213.0,11,0.0,0.0,3.0,1.0,1.0,1,1,118.41172864319776,198.0,9608.60606060606,0,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025393901931349425,9608.60606060606,1,1,1_1,1_0_1,1_2_1,1_0_0 -4662,2,61.0,0.0,5,111,330.0,,,0,52,0.0,0.0,,399.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,1,3.0,2,,3,111463,2,3,0,0,2,,260.0,213.0,12,1.0,2.0,3.0,1.0,1.0,2,2,124.81733629007391,330.0,19271.011002623243,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020704673976144096,19271.011002623243,5,3,5,5_0,5_2,5_0_0 -4663,2,77.0,0.0,2,111,720.0,,,86,78,0.0,0.0,,996.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,2,,2,121469,2,3,0,0,2,,480.0,273.0,41,1.0,1.0,4.0,4.0,2.5,1,1,122.7525219817204,720.0,54869.806301793156,6,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01815205970514699,21947.922520717264,6,3,6,6_0,6_2,6_0_1 -4664,1,43.0,196.0,6,111,160.0,,,0,67,0.0,0.0,,280.0,206.439240502823,,44,0,0,0,0,0,0,0,0,0,,2,,4,124538,2,3,0,0,2,,180.0,204.0,12,1.0,0.0,1.0,1.0,1.0,3,3,144.7714784643564,160.0,6354.905681268247,0,4,2,3,26.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04406044936675134,6354.905681268247,1,1,1_1,1_0_1,1_2_1,1_0_0 -4665,1,43.0,438.0,7,111,685.0,,,85,54,0.0,0.0,,925.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,2,,5,106377,2,1,0,0,2,,698.0,427.0,42,1.0,1.0,5.0,4.0,2.3,3,3,145.44927851738896,685.0,19205.343350929143,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04816367940410964,8350.149283012672,1,1,1_1,1_0_1,1_2_1,1_0_0 -4666,2,58.0,0.0,6,111,480.0,,,55,55,0.0,0.0,,720.0,412.878481005646,,20,0,0,0,0,0,0,0,0,0,,2,,4,115094,2,2,0,0,2,,600.0,307.0,43,2.0,0.0,3.0,4.0,2.5,2,2,118.11128747085166,480.0,22689.63078598808,4,4,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03173255690192341,9075.852314395232,1,1,1_0,1_0_0,1_2_0,1_0_0 -4667,1,65.0,204.0,2,111,300.0,,,68,78,0.0,0.0,,420.0,206.439240502823,,70,0,0,0,0,0,0,0,0,3,30.0,2,,2,132210,2,1,0,0,2,,500.0,208.0,42,2.0,2.0,3.0,3.0,2.0,1,1,116.11456019880646,300.0,1802.2757422697914,1,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.23303870220827072,901.1378711348957,1,1,1_1,1_0_1,1_2_1,1_0_1 -4668,1,45.0,240.0,9,111,440.0,,,0,42,0.0,0.0,,440.0,0.0,,70,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,109582,2,1,0,0,2,,380.0,522.0,32,1.0,0.0,2.0,2.0,1.5,1,1,172.1232423320242,440.0,23461.900346012168,0,1,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018753809090949747,15641.266897341446,3,2,3_1,3_0_1,3_2_1,3_0_0 -4669,2,28.0,0.0,9,111,240.0,,,0,42,0.0,0.0,,240.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,102221,2,1,0,0,2,,70.0,510.0,12,1.0,0.0,2.0,1.0,1.0,1,1,191.1006024623521,240.0,40256.57432312981,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005961759142086406,40256.57432312981,9,5,9,9_0,9_2,9_0_0 -4670,2,26.0,0.0,9,111,300.0,,,0,21,0.0,0.0,,300.0,0.0,,70,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,133315,2,2,0,0,2,,310.0,422.0,12,1.0,0.0,2.0,1.0,1.0,2,2,172.12923541637852,300.0,1341.0545813799472,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.22370454131054052,1341.0545813799472,1,1,1_0,1_0_0,1_2_0,1_0_0 -4671,2,33.0,0.0,9,111,0.0,,,0,46,0.0,0.0,,197.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,104588,2,3,0,0,2,,572.0,485.0,12,1.0,1.0,2.0,1.0,1.0,1,1,191.1006024623521,0.0,35118.97744325168,0,1,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005609502734478242,35118.97744325168,9,5,9,9_0,9_2,9_0_0 -4672,2,48.0,0.0,9,111,0.0,,,46,22,0.0,0.0,,552.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,110882,2,2,0,0,2,,269.0,425.0,43,2.0,0.0,2.0,2.0,1.5,2,2,152.96845343548583,0.0,99867.47271505861,1,1,2,3,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005527325214036043,66578.31514337241,10,5,10,10_0,10_2,10_0_0 -4673,1,38.0,394.0,9,111,400.0,,,0,54,0.0,0.0,,400.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,2007.0,6,101946,2,2,0,0,2,,1060.0,687.0,32,1.0,2.0,3.0,3.0,1.6,4,2,114.8958256065939,400.0,15551.06324110672,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025721713930316012,9719.4145256917,1,1,1_1,1_0_1,1_2_1,1_0_0 -4674,1,69.0,266.0,6,111,216.0,,,85,75,0.0,0.0,,216.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,4,109449,2,1,0,0,2,,240.0,358.0,41,0.0,2.0,1.0,2.0,1.5,3,3,134.4707223910966,216.0,10021.25847457627,6,5,2,3,21.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021554179103152327,6680.838983050847,1,1,1_1,1_0_1,1_2_1,1_0_0 -4675,1,43.0,357.0,6,111,376.0,,,81,38,0.0,0.0,,514.0,237.40512657824647,,43,0,0,0,0,0,0,0,0,0,,2,,4,107993,2,2,0,0,2,,319.0,367.0,43,2.0,0.0,1.0,3.0,1.8,2,2,154.35344336093277,376.0,9648.102160720993,4,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0532747261002872,5360.056755956107,1,1,1_1,1_0_1,1_2_1,1_0_0 -4676,2,50.0,0.0,5,111,653.0,,,46,43,0.0,0.0,,791.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,3,100766,2,1,0,0,2,,226.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,106.01649450017734,653.0,165291.16187680748,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004785494826332803,82645.58093840374,10,5,10,10_1,10_2,10_0_0 -4677,2,43.0,0.0,8,111,288.0,,,22,55,0.0,0.0,,528.0,412.878481005646,,42,0,0,0,0,0,0,0,0,1,10.0,1,2000.0,6,128639,2,2,0,0,2,,216.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,1,1,134.80699440616303,288.0,52999.85252076213,1,1,0,1,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009962291872287034,20384.55866183159,5,3,5,5_1,5_2,5_0_0 -4678,2,29.0,0.0,6,111,697.0,,,0,63,0.0,0.0,,790.0,159.99041138968784,,50,0,0,0,0,0,0,0,0,0,,1,,4,131389,2,1,0,0,2,,436.0,,22,1.0,0.0,4.0,3.0,2.0,5,5,108.61854464204947,697.0,52241.09146821335,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01512219553224082,26120.545734106676,7,4,7,7_1,7_2,7_0_0 -4679,2,35.0,0.0,5,111,760.0,,,0,46,0.0,0.0,,838.0,134.18550632683494,,50,0,0,0,0,0,0,0,0,0,,1,,3,120522,2,1,0,0,2,,450.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,111.29345422704309,760.0,25430.34133535028,0,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03295276256615206,12715.17066767514,2,1,2_0,2_1_0,2_2_0,2_0_0 -4681,2,62.0,0.0,6,111,312.0,,,68,43,0.0,0.0,,396.0,144.50746835197612,,42,0,0,0,0,0,0,0,0,3,60.0,2,,4,108644,2,2,0,0,2,,180.0,273.0,43,2.0,2.0,3.0,2.0,1.5,1,1,126.2718319085411,312.0,27918.66502068804,1,1,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014184059291751937,18612.44334712536,4,2,4_0,4_0_0,4_2_0,4_0_0 -4682,1,75.0,332.0,6,111,300.0,,,0,77,0.0,0.0,,384.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,4,114627,2,1,0,0,2,,270.0,333.0,11,0.0,4.0,3.0,1.0,1.0,1,1,128.82423517155607,300.0,7594.8519793459545,0,5,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05056056405632133,7594.8519793459545,1,1,1_1,1_1_1,1_2_1,1_0_0 -4683,2,48.0,0.0,9,111,689.0,,,34,34,0.0,0.0,,781.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,111846,2,1,0,0,2,,220.0,700.0,43,2.0,1.0,4.0,3.0,2.0,1,1,199.92013256709203,689.0,130590.64014090522,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005980520496394791,65295.32007045261,10,5,10,10_1,10_2,10_0_0 -4684,2,60.0,0.0,6,111,360.0,,,0,52,0.0,0.0,,426.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,131105,2,1,0,0,2,,320.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,111.90232763462313,360.0,42485.03713422551,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010027059612872946,42485.03713422551,9,5,9,9_1,9_2,9_0_0 -4685,2,33.0,0.0,9,111,289.0,,,47,54,0.0,0.0,,358.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,2,60.0,2,2010.0,6,114448,2,1,0,0,2,,278.0,760.0,43,2.0,0.0,3.0,3.0,2.0,1,1,177.22958056191283,289.0,80745.63829276507,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004433676017297362,40372.819146382535,9,5,9,9_0,9_2,9_0_0 -4686,0,45.0,0.0,2,111,576.0,,,0,85,0.0,0.0,,691.0,197.83760548187203,,50,0,0,0,0,0,0,0,0,0,,1,,2,128597,2,2,0,0,2,,232.0,,31,0.0,0.0,4.0,4.0,2.3,1,1,108.81399145094568,576.0,31284.43927891982,0,6,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022087658143376467,13601.930121269488,3,2,3_0,3_1_0,3_2_0,3_0_1 -4687,2,74.0,0.0,5,111,980.0,,,77,77,0.0,0.0,,1080.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,3,129982,1,1,0,0,2,,336.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,113.0988035172761,980.0,36660.44918349034,5,5,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029459540841806353,24440.299455660224,7,4,7,7_1,7_2,7_0_0 -4688,1,58.0,269.0,6,111,230.0,,,0,53,0.0,0.0,,299.0,118.70256328912323,,20,0,0,0,0,0,0,0,0,0,,2,,4,129752,2,2,0,0,2,,222.0,320.0,22,1.0,0.0,2.0,2.0,1.5,2,2,140.86341093794022,230.0,38862.16963335042,0,1,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00769385762094473,25908.11308890028,7,4,7,7_0,7_2,7_0_0 -4689,1,47.0,353.0,5,111,0.0,,,0,85,0.0,0.0,,500.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,115919,2,2,0,0,2,,181.0,494.0,31,0.0,0.0,4.0,4.0,2.3,1,1,115.01806936607005,0.0,25716.09523309987,0,6,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019443076231745973,11180.910970912988,2,1,2_1,2_0_1,2_2_1,2_0_0 -4690,1,31.0,339.0,2,111,252.0,,,85,63,0.0,0.0,,367.0,197.83760548187203,,10,0,0,0,0,0,0,0,0,0,,2,,2,116627,2,2,0,0,2,,209.0,430.0,42,1.0,0.0,3.0,3.0,1.8,2,2,116.74772296884652,252.0,5823.563829787234,6,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0630198295625805,3235.3132387706855,1,1,1_1,1_0_1,1_2_1,1_0_1 -4691,1,71.0,516.0,8,111,524.0,,,86,86,0.0,0.0,,800.0,474.81025315649293,,12,0,0,0,0,0,0,0,0,0,,1,2003.0,6,132195,2,2,0,0,1,,710.0,850.0,41,2.0,1.0,6.0,7.0,3.6,1,1,126.61493210265549,524.0,14475.194154488518,5,5,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055266961635325164,4020.887265135699,1,1,1_1,1_1_1,1_2_1,1_0_0 -4692,1,41.0,78.0,7,111,480.0,,,0,43,0.0,0.0,,526.0,79.13504219274881,,70,0,0,0,0,0,0,0,0,0,,2,,5,111400,2,2,0,0,1,,480.0,220.0,12,1.0,0.0,1.0,1.0,1.0,1,1,166.2701413892021,480.0,8258.3101856755,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06369341768154657,8258.3101856755,1,1,1_1,1_0_1,1_2_1,1_0_0 -4693,1,78.0,205.0,2,111,194.0,,,77,78,0.0,0.0,,446.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,,2,124951,2,2,0,0,2,,188.0,256.0,41,0.0,6.0,6.0,2.0,1.5,2,2,136.32624624384115,194.0,15906.185985820393,5,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.028039405574509676,10604.123990546928,2,1,2_1,2_1_1,2_2_1,2_0_1 -4694,2,49.0,0.0,6,111,520.0,,,0,52,0.0,0.0,,562.0,72.25373417598806,,31,0,0,0,0,0,0,0,0,2,60.0,2,,4,133431,2,2,0,0,2,,360.0,320.0,22,2.0,0.0,2.0,2.0,1.5,3,3,137.6368360360643,520.0,34518.570249132885,0,1,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01628109148043632,23012.38016608859,6,3,6,6_0,6_2,6_0_0 -4695,1,27.0,467.0,5,111,900.0,,,0,52,0.0,0.0,,992.0,158.27008438549763,,60,0,0,0,0,0,0,0,0,0,,2,,3,115866,2,2,0,0,2,,720.0,619.0,32,1.0,0.0,5.0,4.0,1.9,1,1,118.40642234466115,900.0,15909.011554210478,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06235459674032717,8373.163975900252,1,1,1_1,1_0_1,1_2_1,1_0_0 -4696,1,56.0,185.0,7,111,0.0,,,0,63,0.0,0.0,,66.0,113.54158227655265,,33,0,0,0,0,0,0,0,0,0,,2,,5,123407,2,2,0,0,2,,0.0,325.0,12,1.0,1.0,1.0,1.0,1.0,5,4,131.0845435045899,0.0,8726.6936863218,0,4,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.007563001793388056,8726.6936863218,1,1,1_1,1_0_1,1_2_1,1_0_0 -4697,2,58.0,0.0,5,111,620.0,,,85,34,0.0,0.0,,689.0,118.70256328912323,,50,0,0,0,0,0,0,0,0,0,,1,,3,118150,2,1,0,0,2,,243.0,800.0,42,1.0,3.0,3.0,2.0,1.5,1,1,165.10327954494664,620.0,170318.4981143681,6,1,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0040453621164351725,113545.66540957872,10,5,10,10_1,10_2,10_0_0 -4698,0,25.0,0.0,7,111,432.0,,,0,63,0.0,0.0,,498.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,1,,5,113466,2,2,0,0,2,,294.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,128.2530347879004,432.0,9388.16882919986,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053045488322608685,9388.16882919986,1,1,1_0,1_1_0,1_2_0,1_0_0 -4699,2,42.0,0.0,2,111,910.0,,,0,54,0.0,0.0,,1464.0,953.0611603213662,,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,107710,2,1,0,0,2,,752.0,,32,2.0,0.0,4.0,6.0,3.1,2,1,118.30299890384838,910.0,55542.63846275414,0,1,0,1,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02635812846704665,17916.98014927553,4,2,4_0,4_1_0,4_2_0,4_0_1 -4700,2,46.0,0.0,7,111,240.0,,,68,63,0.0,0.0,,303.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,3,30.0,2,,5,111862,2,2,0,0,2,,180.0,640.0,43,2.0,1.0,2.0,2.0,1.5,1,1,109.17484455862156,240.0,13963.760617760618,1,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021699025663230856,9309.173745173744,1,1,1_0,1_0_0,1_2_0,1_0_0 -4701,2,83.0,0.0,7,111,331.0,,,75,74,0.0,0.0,,463.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,5,117242,2,1,0,0,2,,113.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,115.76425187412767,331.0,81940.10468803711,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0056504687388762385,54626.73645869141,10,5,10,10_1,10_2,10_0_0 -4702,2,71.0,0.0,2,111,350.0,,,75,74,0.0,0.0,,438.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,1,,2,120330,2,1,0,0,2,,560.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,117.47680126261416,350.0,62111.69886572855,5,5,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0070518116232315105,41407.799243819034,9,5,9,9_1,9_2,9_0_1 -4703,2,49.0,0.0,7,111,0.0,,,81,63,0.0,0.0,,156.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,5,129074,2,2,0,0,2,,377.0,400.0,43,2.0,0.0,1.0,2.0,1.5,2,2,119.78868798862084,0.0,10222.0,4,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015261201330463705,6814.666666666667,1,1,1_0,1_0_0,1_2_0,1_0_0 -4704,2,40.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,560.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,125241,2,1,0,0,2,,260.0,850.0,32,1.0,0.0,4.0,4.0,2.1,2,2,152.9075875751568,0.0,32437.692310245835,0,1,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017263866820239775,15446.520147736112,3,2,3_0,3_0_0,3_2_0,3_0_0 -4705,1,63.0,253.0,6,111,372.0,,,0,86,0.0,0.0,,477.0,180.63433543997013,,71,0,0,0,0,0,0,0,0,0,,1,,4,108591,2,1,0,0,2,,480.0,313.0,21,1.0,0.0,4.0,2.0,1.5,1,1,147.56699563369708,372.0,13076.088759641116,0,6,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03647879796229615,8717.39250642741,1,1,1_1,1_1_1,1_2_1,1_0_0 -4707,1,61.0,300.0,6,111,600.0,,,0,78,0.0,0.0,,684.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,0,,2,,4,133348,2,2,0,0,2,,270.0,350.0,11,0.0,1.0,1.0,1.0,1.0,2,2,143.61495593758016,600.0,6332.0,0,6,2,3,22.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1080227416298168,6332.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -4708,1,59.0,219.0,5,111,207.0,,,0,67,0.0,0.0,,207.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,101533,2,1,0,0,2,,139.0,380.0,12,1.0,0.0,1.0,1.0,1.0,2,2,164.9418744813372,207.0,5062.716833308903,0,4,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0408871376408205,5062.716833308903,1,1,1_1,1_0_1,1_2_1,1_0_0 -4709,2,60.0,0.0,5,111,460.0,,,52,35,0.0,0.0,,588.0,220.20185653634454,,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,117615,2,2,0,0,2,,297.0,453.0,43,2.0,0.0,3.0,3.0,2.0,2,2,110.92272823328925,460.0,74867.19924125513,1,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007853906730305279,37433.59962062757,9,5,9,9_0,9_2,9_0_0 -4710,2,54.0,0.0,5,111,327.0,,,64,34,0.0,0.0,,442.0,197.83760548187203,,70,0,0,0,0,0,0,0,0,2,10.0,2,,3,108638,2,1,0,0,2,,520.0,324.0,43,3.0,1.0,4.0,4.0,2.3,2,2,126.20057474364394,327.0,84050.74656375882,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005258727828963539,36543.802853808185,9,5,9,9_0,9_2,9_0_0 -4711,2,47.0,0.0,7,111,480.0,,,42,43,0.0,0.0,,595.0,197.83760548187203,,71,0,0,0,0,0,0,0,0,0,,1,,5,113179,2,1,0,0,2,,340.0,,43,2.0,0.0,4.0,4.0,2.3,4,3,110.37762451211974,480.0,61866.91354900838,4,1,0,1,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009617418517713283,26898.658064786254,7,4,7,7_1,7_2,7_0_0 -4712,2,51.0,0.0,7,111,570.0,,,43,22,0.0,0.0,,842.0,467.92894513973215,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,116518,2,1,0,0,2,,790.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,3,3,118.04028825961166,570.0,182232.76518394196,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004620464377797828,58784.76296256193,10,5,10,10_1,10_2,10_0_0 -4713,2,53.0,0.0,9,111,776.0,,,52,63,0.0,0.0,,776.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,2008.0,6,117744,2,1,0,0,2,,720.0,900.0,43,3.0,0.0,4.0,4.0,2.5,2,2,124.75655275663591,776.0,32712.4109338324,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023721883464035105,13084.964373532961,2,1,2_0,2_0_0,2_2_0,2_0_0 -4714,1,25.0,200.0,9,111,367.0,,,56,53,0.0,0.0,,367.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,122190,2,1,0,0,2,,174.0,570.0,43,2.0,0.0,3.0,3.0,1.8,2,2,141.11562962427152,367.0,32979.04653378149,1,1,2,3,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011128278060557942,18321.692518767493,4,2,4_1,4_0_1,4_2_1,4_0_0 -4715,1,28.0,283.0,7,111,400.0,,,85,65,0.0,0.0,,444.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,2,10.0,2,,5,116558,2,3,0,0,2,,320.0,438.0,42,1.0,0.0,3.0,4.0,2.1,3,2,135.77648077835116,400.0,24032.778790906166,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018474767477492302,11444.180376621984,2,1,2_1,2_0_1,2_2_1,2_0_0 -4716,1,86.0,135.0,7,111,307.0,,,0,78,0.0,0.0,,351.0,75.69438818436844,,41,0,0,0,0,0,0,0,0,0,,2,,5,116794,2,2,0,0,2,,189.0,312.0,11,0.0,3.0,2.0,1.0,1.0,2,2,139.26723331329748,307.0,6042.843834285259,0,5,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05808523430781592,6042.843834285259,1,1,1_1,1_0_1,1_2_1,1_0_0 -4717,1,40.0,220.0,7,111,570.0,,,85,55,0.0,0.0,,658.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,2,,5,119622,2,3,0,0,2,,460.0,400.0,42,1.0,0.0,3.0,4.0,2.3,2,2,121.32237445116658,570.0,26807.324127536143,6,1,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024545530798581672,11655.358316320064,2,1,2_1,2_0_1,2_2_1,2_0_0 -4718,1,65.0,253.0,6,111,230.0,,,0,86,0.0,0.0,,299.0,118.70256328912323,,41,0,0,0,0,0,0,0,0,0,,2,,4,103225,1,2,0,0,2,,245.0,314.0,11,0.0,0.0,3.0,1.0,1.0,1,1,130.75771359339294,230.0,10612.0,0,6,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028175650207312476,10612.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -4719,1,79.0,245.0,6,111,350.0,,,0,78,0.0,0.0,,396.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,0,,2,,4,108833,2,1,0,0,2,,340.0,460.0,11,0.0,4.0,2.0,1.0,1.0,2,2,118.11658054313146,350.0,11996.097960445291,0,5,2,3,37.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03301073409918208,11996.097960445291,2,1,2_1,2_0_1,2_2_1,2_0_0 -4720,2,40.0,0.0,7,111,498.0,,,56,90,0.0,0.0,,586.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,0,,1,,5,103523,1,2,0,0,2,,0.0,650.0,43,2.0,0.0,3.0,3.0,1.8,1,1,115.27583455856671,498.0,37282.10458535603,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015717996784714076,20712.280325197793,5,3,5,5_1,5_2,5_0_0 -4721,2,57.0,0.0,7,111,600.0,,,0,68,0.0,0.0,,700.0,172.03270041901916,,44,0,0,0,0,0,0,0,0,0,,1,,5,106327,2,3,0,0,2,,240.0,200.0,12,1.0,3.0,4.0,1.0,1.0,2,2,113.97238333299941,600.0,14459.714367646226,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0484103615190531,14459.714367646226,3,2,3_0,3_1_0,3_2_0,3_0_0 -4722,2,48.0,0.0,7,111,600.0,,,85,68,0.0,0.0,,888.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,104791,1,2,0,0,2,,480.0,,42,2.0,0.0,5.0,5.0,3.0,4,4,139.78972457729876,600.0,25794.187597754906,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034426360459489345,8598.062532584969,1,1,1_0,1_1_0,1_2_0,1_0_0 -4723,2,53.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,328.0,0.0,,60,0,0,0,0,0,0,0,0,2,10.0,2,,5,106434,2,1,0,0,1,,710.0,419.0,12,1.0,1.0,1.0,1.0,1.0,1,1,164.9418744813372,0.0,20045.712242340924,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016362601439882607,20045.712242340924,5,3,5,5_0,5_2,5_0_0 -4724,2,63.0,0.0,7,111,0.0,,,0,77,0.0,0.0,,2048.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,117158,2,2,0,0,2,,237.0,474.0,11,0.0,3.0,2.0,1.0,1.0,2,2,148.30862431417623,0.0,25936.91389969099,0,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07896082039368607,25936.91389969099,7,4,7,7_0,7_2,7_0_0 -4725,1,41.0,450.0,7,111,200.0,,,0,85,0.0,0.0,,488.0,495.4541772067752,,31,0,0,0,0,0,0,0,0,0,,2,,5,113170,1,2,0,0,2,,600.0,521.0,31,0.0,0.0,4.0,6.0,2.6999999999999997,2,2,134.62481144875596,200.0,26224.1863885554,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018608775607733247,9712.66162539089,1,1,1_1,1_0_1,1_2_1,1_0_0 -4726,1,38.0,254.0,7,111,320.0,,,0,56,0.0,0.0,,386.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,2,,5,110452,1,1,0,0,2,,400.0,303.0,12,1.0,0.0,2.0,1.0,1.0,1,1,137.0785898057142,320.0,4881.928254784121,0,4,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0790671185349218,4881.928254784121,1,1,1_1,1_0_1,1_2_1,1_0_0 -4727,2,37.0,0.0,7,111,0.0,,,0,63,0.0,0.0,,44.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,2,,5,104698,2,1,0,0,2,,0.0,70.0,12,1.0,3.0,1.0,1.0,1.0,2,2,149.76379949160446,0.0,13430.351052073207,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003276161570862873,13430.351052073207,3,2,3_0,3_0_0,3_2_0,3_0_0 -4728,2,93.0,0.0,7,111,0.0,,,0,45,0.0,0.0,,784.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,0,,1,,5,126790,2,2,0,0,1,,518.0,584.0,11,0.0,0.0,3.0,1.0,1.0,2,2,120.64496959983937,0.0,41572.41666655786,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018858658285090122,41572.41666655786,9,5,9,9_1,9_2,9_0_0 -4729,2,43.0,0.0,7,111,500.0,,,43,34,0.0,0.0,,500.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,123776,1,1,0,0,2,,180.0,709.0,43,2.0,0.0,6.0,2.0,1.5,1,1,164.58045650046904,500.0,45366.2812836428,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011021401487017612,30244.187522428532,8,4,8,8_0,8_2,8_0_0 -4730,2,59.0,0.0,8,111,800.0,,,63,46,0.0,0.0,,800.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,1999.0,6,116400,2,3,0,0,2,,400.0,900.0,43,2.0,1.0,4.0,3.0,2.0,2,2,148.56739527134718,800.0,24857.7108368368,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032183172668276236,12428.8554184184,2,1,2_0,2_0_0,2_2_0,2_0_0 -4731,2,55.0,0.0,7,111,150.0,,,0,54,0.0,0.0,,150.0,0.0,,70,0,0,0,0,0,0,0,0,2,20.0,2,,5,127054,2,1,0,0,2,,100.0,265.0,12,1.0,2.0,1.0,1.0,1.0,2,2,148.56739527134718,150.0,26441.469066733756,0,1,2,3,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005672907190649112,26441.469066733756,7,4,7,7_0,7_2,7_0_0 -4733,2,71.0,0.0,6,111,480.0,,,0,75,0.0,0.0,,524.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,2,,4,106806,2,3,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,106.9466330681433,480.0,38207.74651893134,0,5,0,1,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013714496345403837,38207.74651893134,9,5,9,9_0,9_2,9_0_0 -4734,1,47.0,396.0,6,111,390.0,,,0,85,0.0,0.0,,456.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,2,,4,128418,2,2,0,0,2,,480.0,900.0,31,0.0,0.0,4.0,4.0,2.3,2,2,154.17207326674333,390.0,28187.344131538503,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01617747304861499,12255.367013712394,2,1,2_1,2_0_1,2_2_1,2_0_0 -4735,2,59.0,0.0,2,111,606.0,,,54,62,0.0,0.0,,858.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,2,129685,1,2,0,0,2,,800.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,104.99682968115252,606.0,30110.88877824295,4,4,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028494675342162604,12044.355511297179,2,1,2_0,2_1_0,2_2_0,2_0_1 -4736,1,44.0,315.0,8,111,500.0,,,85,85,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2003.0,6,127912,2,1,0,0,2,,0.0,460.0,41,0.0,0.0,2.0,3.0,1.8,2,2,172.12923541637852,500.0,13381.989817487942,6,7,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0373636512072806,7434.438787493301,1,1,1_1,1_0_1,1_2_1,1_0_0 -4738,1,60.0,103.0,6,111,900.0,,,0,86,0.0,0.0,,1188.0,495.4541772067752,,10,0,0,0,0,0,0,0,0,0,,1,,4,131763,2,3,0,0,2,,1200.0,300.0,31,0.0,0.0,3.0,5.0,2.5999999999999996,3,3,143.84365054151735,900.0,7665.247082935929,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15498521928206055,2948.171954975358,1,1,1_1,1_1_1,1_2_1,1_0_0 -4739,2,53.0,0.0,8,111,600.0,,,0,52,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,3,30.0,2,2000.0,6,105063,2,2,0,0,2,,400.0,254.0,32,2.0,2.0,1.0,3.0,1.8,1,1,148.56739527134718,600.0,21467.627144765043,0,1,2,3,22.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0279490600406814,11926.459524869468,2,1,2_0,2_0_0,2_2_0,2_0_0 -4743,2,42.0,0.0,5,111,1200.0,,,56,46,0.0,0.0,,1464.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,3,20.0,1,,3,107753,2,1,0,0,2,,1200.0,170.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,144.90148638016154,1200.0,40494.26910590464,1,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03615326396362906,15574.718886886403,3,2,3_0,3_1_0,3_2_0,3_0_0 -4744,0,70.0,0.0,5,111,120.0,,,0,77,0.0,0.0,,162.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,0,,1,,3,116892,2,2,0,0,2,,400.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,122.1785541504334,120.0,33928.11671236094,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004774800834759537,33928.11671236094,9,5,9,9_1,9_2,9_0_0 -4745,0,58.0,0.0,7,111,0.0,,,85,21,0.0,0.0,,348.0,495.4541772067752,,41,0,0,0,0,0,0,0,0,0,,2,,5,124957,2,1,0,0,1,,391.0,,42,3.0,0.0,4.0,4.0,2.5,2,2,135.75362418085263,0.0,22936.973837999336,6,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015172010155213836,9174.789535199734,1,1,1_0,1_0_0,1_2_0,1_0_0 -4748,2,36.0,0.0,5,111,1000.0,,,85,38,0.0,0.0,,1000.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,3,129143,1,2,0,0,2,,700.0,962.0,42,1.0,0.0,5.0,4.0,2.1,2,2,125.18357145327195,1000.0,61545.3688772735,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01624817623555205,29307.31851298738,8,4,8,8_1,8_2,8_0_0 -4749,2,48.0,0.0,8,111,600.0,,,68,21,0.0,0.0,,684.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,119641,2,1,0,0,2,,360.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,106.97592551760393,600.0,7181.654645548806,4,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09524267508796787,3989.8081364160034,1,1,1_0,1_1_0,1_2_0,1_0_0 -4750,2,67.0,0.0,2,111,1000.0,,,0,78,0.0,0.0,,1240.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,,2,108694,1,3,0,0,2,,750.0,,11,0.0,2.0,3.0,1.0,1.0,4,4,113.05002585418423,1000.0,9877.205031304322,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12554158753108857,9877.205031304322,2,1,2_0,2_1_0,2_2_0,2_0_1 -4751,2,74.0,0.0,7,111,600.0,,,77,78,0.0,0.0,,696.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,0,,1,,5,107522,2,1,0,0,2,,1000.0,,41,0.0,3.0,6.0,3.0,2.0,1,1,100.61337054621113,600.0,29497.274189652202,5,5,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02359540056227163,14748.637094826101,3,2,3_0,3_1_0,3_2_0,3_0_0 -4752,2,50.0,0.0,7,111,600.0,,,52,55,0.0,0.0,,700.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,2,30.0,1,,5,101741,2,1,0,0,2,,1000.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,106.22035706335261,600.0,55932.97000310021,1,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0125149799833837,27966.485001550103,7,4,7,7_1,7_2,7_0_0 -4753,2,35.0,0.0,9,111,600.0,,,67,52,0.0,0.0,,720.0,206.439240502823,,70,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,103025,2,1,0,0,2,,140.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,100.47800084242105,600.0,41590.28875987982,4,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01731173361543356,19804.89940946658,5,3,5,5_1,5_2,5_0_0 -4754,2,27.0,0.0,7,111,600.0,,,54,52,0.0,0.0,,744.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,0,,2,,5,104717,1,1,0,0,2,,516.0,580.0,43,2.0,0.0,3.0,2.0,1.5,1,1,125.25424297604043,600.0,39091.06191094968,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019032483734896966,26060.707940633118,7,4,7,7_0,7_2,7_0_0 -4755,2,50.0,0.0,8,111,900.0,,,21,21,0.0,0.0,,1188.0,495.4541772067752,,50,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,127590,2,1,0,0,1,,960.0,,43,2.0,0.0,7.0,4.0,2.5,1,1,103.09113960617684,900.0,52223.837902711515,1,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022748232372602355,20889.535161084605,5,3,5,5_1,5_2,5_0_0 -4756,2,73.0,0.0,7,111,300.0,,,0,86,0.0,0.0,,420.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,5,110744,2,3,0,0,2,,400.0,,31,1.0,1.0,5.0,2.0,1.5,2,2,98.8420305767972,300.0,11313.065025662745,0,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037125217529225284,7542.04335044183,1,1,1_0,1_1_0,1_2_0,1_0_0 -4757,1,35.0,362.0,5,111,0.0,,,0,85,0.0,0.0,,265.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,120334,2,3,0,0,2,,744.0,750.0,31,0.0,0.0,3.0,3.0,1.8,4,4,138.61473623688008,0.0,9179.79448453776,0,7,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028867748667615604,5099.8858247432,1,1,1_1,1_1_1,1_2_1,1_0_0 -4758,2,49.0,0.0,7,111,600.0,,,0,85,0.0,0.0,,840.0,412.878481005646,,43,0,0,0,0,0,0,0,0,0,,1,,5,133332,2,1,0,0,2,,600.0,,31,2.0,3.0,5.0,4.0,2.3,2,2,111.2568183335381,600.0,15267.5386940933,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05501869140996374,6638.060301779697,1,1,1_0,1_1_0,1_2_0,1_0_0 -4759,2,55.0,0.0,7,111,500.0,,,0,56,0.0,0.0,,650.0,258.04905062852873,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,124009,1,2,0,0,2,,500.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,117.86855676223979,500.0,20339.887772378497,0,1,1,2,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03195691182144564,13559.925181585664,3,2,3_0,3_1_0,3_2_0,3_0_0 -4760,2,70.0,0.0,6,111,700.0,,,86,55,0.0,0.0,,840.0,240.84578058662683,,50,0,0,0,0,0,0,0,0,0,,1,,4,106519,2,1,0,0,2,,600.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,113.33251371651382,700.0,17122.77290723061,6,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04905747477648813,11415.18193815374,2,1,2_0,2_1_0,2_2_0,2_0_0 -4761,2,46.0,0.0,5,111,600.0,,,43,64,0.0,0.0,,726.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,115467,2,1,0,0,2,,180.0,,43,3.0,1.0,3.0,4.0,2.3,1,1,114.85514715645435,600.0,33975.6708795693,1,1,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021368231478736392,14772.030817204044,3,2,3_0,3_1_0,3_2_0,3_0_0 -4762,2,52.0,0.0,6,111,480.0,,,0,85,0.0,0.0,,2746.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,108957,2,1,0,0,2,,600.0,,31,0.0,3.0,6.0,2.0,1.5,2,2,114.7488833325042,480.0,12788.725259893868,0,6,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21472038410361383,8525.816839929246,1,1,1_0,1_1_0,1_2_0,1_0_0 -4763,2,49.0,0.0,7,111,800.0,,,85,56,0.0,0.0,,900.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,0,,1,,5,100281,2,2,0,0,2,,800.0,,42,1.0,0.0,6.0,3.0,1.8,1,1,108.30198370270286,800.0,61060.353345331394,6,1,0,1,154.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014739515097627796,33922.418525184105,9,5,9,9_1,9_2,9_0_0 -4764,2,46.0,0.0,7,111,260.0,,,52,53,0.0,0.0,,356.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,0,,1,,5,111262,2,1,0,0,2,,320.0,,43,2.0,0.0,3.0,4.0,2.3,1,1,115.56388424132142,260.0,75508.510493486,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004714700338721575,32829.78717108087,8,4,8,8_1,8_2,8_0_0 -4765,0,79.0,0.0,2,111,500.0,,,0,86,0.0,0.0,,620.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,2,114793,1,3,0,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,115.56388424132142,500.0,11316.0,0,6,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05478967833156592,11316.0,2,1,2_0,2_1_0,2_2_0,2_0_1 -4766,2,80.0,0.0,2,111,750.0,,,71,71,0.0,0.0,,950.0,344.06540083803833,,50,0,0,0,0,0,0,0,0,0,,1,,2,109190,2,2,0,0,2,,1000.0,,41,2.0,6.0,5.0,6.0,3.3,3,3,101.46465080864196,750.0,26136.0681144118,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03634823707381435,7920.020640730849,1,1,1_0,1_1_0,1_2_0,1_0_1 -4767,2,57.0,0.0,5,111,2000.0,,,71,13,0.0,0.0,,2576.0,990.9083544135505,,70,0,0,0,0,0,0,0,0,0,,1,,3,101100,2,1,0,0,2,,1200.0,,42,4.0,0.0,7.0,8.0,4.1,2,2,116.54568263766217,2000.0,55362.0,5,1,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04653011090639789,13502.926829268294,3,2,3_0,3_1_0,3_2_0,3_0_0 -4768,1,37.0,355.0,7,111,400.0,,,0,81,0.0,0.0,,544.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,0,,2,,5,104132,2,1,0,0,2,,800.0,406.0,32,1.0,0.0,4.0,4.0,2.1,3,3,125.17646757192625,400.0,23612.31134165617,0,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023038828860446656,11243.957781741032,2,1,2_1,2_0_1,2_2_1,2_0_0 -4769,1,52.0,318.0,7,111,300.0,,,0,53,0.0,0.0,,400.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,2,,5,112128,2,1,0,0,2,,300.0,418.0,12,1.0,0.0,2.0,1.0,1.0,1,1,130.75771359339294,300.0,9401.817240375656,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042544966549894106,9401.817240375656,1,1,1_1,1_0_1,1_2_1,1_0_0 -4770,1,49.0,255.0,9,111,500.0,,,56,54,0.0,0.0,,788.0,495.4541772067752,,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,102509,2,1,0,0,2,,420.0,551.0,43,2.0,0.0,3.0,4.0,2.1,2,2,178.2170696352627,500.0,12523.299500650097,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0629227145736708,5963.475952690522,1,1,1_1,1_0_1,1_2_1,1_0_0 -4771,1,50.0,128.0,7,111,300.0,,,0,52,0.0,0.0,,588.0,495.4541772067752,,12,0,0,0,0,0,0,0,0,3,15.0,2,,5,110980,2,2,0,0,2,,1000.0,300.0,32,1.0,4.0,3.0,2.0,1.5,1,1,116.11456019880646,300.0,16583.08770831011,0,1,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0354578116176363,11055.391805540074,2,1,2_1,2_0_1,2_2_1,2_0_0 -4772,2,72.0,0.0,5,111,600.0,,,0,77,0.0,0.0,,650.0,86.01635020950958,,70,0,0,0,0,0,0,0,0,0,,2,,3,115364,2,1,0,0,2,,200.0,529.0,11,0.0,0.0,4.0,1.0,1.0,3,2,124.87001944227815,600.0,21333.432210429633,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030468608782145405,21333.432210429633,6,3,6,6_0,6_2,6_0_0 -4773,2,44.0,0.0,7,111,900.0,,,85,35,0.0,0.0,,996.0,165.1513924022584,,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,106070,1,2,0,0,2,,246.0,740.0,42,1.0,1.0,6.0,5.0,2.5999999999999996,1,1,145.2188383543105,900.0,50290.043774449856,6,1,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0198051130054101,19342.324528634563,5,3,5,5_0,5_2,5_0_0 -4774,1,35.0,235.0,5,111,200.0,,,0,67,0.0,0.0,,488.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,0,,1,,3,106379,2,3,0,0,2,,160.0,550.0,12,1.0,0.0,4.0,1.0,1.0,3,3,128.9181593112502,200.0,5250.69523920181,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0929400732224146,5250.69523920181,1,1,1_1,1_1_1,1_2_1,1_0_0 -4775,0,36.0,0.0,7,111,300.0,,,54,53,0.0,0.0,,588.0,495.4541772067752,,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,132567,1,2,0,0,2,,200.0,,43,3.0,1.0,5.0,4.0,2.3,2,2,123.74161125177001,300.0,35231.58987066474,4,1,5,0,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016689567577238197,15318.082552462933,3,2,3_0,3_1_0,3_2_0,3_0_0 -4776,2,52.0,0.0,8,111,1000.0,,,52,52,0.0,0.0,,1088.0,151.38877636873687,,41,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,102324,1,2,0,0,1,,480.0,688.0,43,3.0,0.0,4.0,5.0,2.8,2,2,114.74226270256017,1000.0,46104.67829049272,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023598472873941675,16465.95653231883,4,2,4_0,4_1_0,4_2_0,4_0_0 -4777,1,27.0,253.0,7,111,0.0,,,0,67,0.0,0.0,,277.0,0.0,,44,0,0,0,0,0,0,0,0,0,,2,,5,118775,1,3,0,0,1,,289.0,497.0,12,1.0,0.0,2.0,1.0,1.0,3,3,173.99696209970364,0.0,21684.56303124351,0,4,3,4,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012774064185701754,21684.56303124351,6,3,6,6_0,6_2,6_0_0 -4778,2,47.0,0.0,7,111,450.0,,,53,54,0.0,0.0,,500.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,0,,1,,5,100956,2,1,0,0,2,,800.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,119.49067980434202,450.0,70353.88635814466,1,1,0,1,121.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007106927930813824,27059.187060824876,7,4,7,7_1,7_2,7_0_0 -4779,2,40.0,0.0,7,111,700.0,,,46,37,0.0,0.0,,723.0,39.567521096374406,,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,132935,2,1,0,0,2,,550.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,107.8513744074277,700.0,88486.48150867845,1,1,1,2,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008170739616639527,42136.419766037354,9,5,9,9_1,9_2,9_0_0 -4780,1,42.0,320.0,8,111,0.0,,,85,67,0.0,0.0,,385.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,113307,2,3,0,0,2,,1827.0,475.0,42,1.0,0.0,4.0,5.0,2.4,2,2,136.44277929964522,0.0,40770.293827770955,6,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009443149996082558,16987.622428237897,4,2,4_1,4_0_1,4_2_1,4_0_0 -4781,1,39.0,467.0,6,111,600.0,,,85,63,0.0,0.0,,864.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,0,,2,,4,120249,2,3,0,0,2,,600.0,442.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,6,5,129.77797263475182,600.0,19544.959407967865,6,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044205771010594905,7517.292079987641,1,1,1_1,1_0_1,1_2_1,1_0_0 -4782,0,71.0,0.0,6,111,257.0,,,86,72,0.0,0.0,,383.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,0,,1,,4,129660,2,2,0,0,2,,120.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,100.19484859574862,257.0,9369.219291549023,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04087853940460798,6246.146194366015,1,1,1_0,1_1_0,1_2_0,1_0_0 -4783,0,74.0,0.0,5,111,0.0,,,0,86,0.0,0.0,,487.0,86.01635020950958,,20,0,0,0,0,0,0,0,0,0,,1,,3,120469,2,1,0,0,2,,125.0,,11,0.0,6.0,2.0,1.0,1.0,2,2,132.41005470583735,0.0,8366.958524966602,0,5,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05820514091791126,8366.958524966602,1,1,1_0,1_1_0,1_2_0,1_0_0 -4787,1,56.0,140.0,9,111,1200.0,,,64,68,0.0,0.0,,1300.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,128695,2,1,0,0,1,,960.0,766.0,43,2.0,2.0,2.0,2.0,1.5,3,3,174.68579683636602,1200.0,23729.57919502222,4,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05478394662273246,15819.719463348147,3,2,3_1,3_1_1,3_2_1,3_0_0 -4789,1,23.0,340.0,7,111,450.0,,,0,56,0.0,0.0,,580.0,223.64251054472493,,30,0,0,0,0,0,0,0,0,0,,2,,5,115987,2,1,0,0,1,,450.0,550.0,32,1.0,0.0,2.0,2.0,1.3,1,1,138.22691350816336,450.0,14614.901878914405,0,4,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03968552131279053,11242.232214549542,2,1,2_1,2_0_1,2_2_1,2_0_0 -4790,2,36.0,0.0,5,111,480.0,,,0,35,0.0,0.0,,520.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,1,,3,103793,2,1,0,0,2,,320.0,900.0,32,1.0,0.0,5.0,2.0,1.3,3,2,154.5590421912511,480.0,44101.11811604476,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011791084267562252,33923.937012342125,9,5,9,9_1,9_2,9_0_0 -4791,2,68.0,0.0,6,111,540.0,,,72,78,0.0,0.0,,584.0,75.69438818436844,,33,0,0,0,0,0,0,0,0,0,,1,,4,132219,1,1,0,0,2,,160.0,,41,0.0,6.0,7.0,2.0,1.5,3,3,115.0356162767241,540.0,13719.722007722004,5,5,0,1,220.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042566460141925735,9146.481338481337,1,1,1_0,1_1_0,1_2_0,1_0_0 -4792,1,33.0,467.0,7,111,700.0,,,0,52,0.0,0.0,,750.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,132668,1,2,0,0,2,,560.0,573.0,32,1.0,0.0,4.0,4.0,1.9,3,3,119.57945041440756,700.0,26871.529552930588,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02791058091883741,14142.9102910161,3,2,3_1,3_1_1,3_2_1,3_0_0 -4793,1,37.0,400.0,7,111,800.0,,,0,55,0.0,0.0,,1040.0,412.878481005646,,20,0,0,0,0,0,0,0,0,2,20.0,2,,5,102781,2,1,0,0,2,,800.0,500.0,32,1.0,0.0,3.0,3.0,1.6,2,2,110.92272823328925,800.0,26834.871101460503,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038755542967500875,16771.794438412813,4,2,4_1,4_0_1,4_2_1,4_0_0 -4794,1,87.0,357.0,7,111,0.0,,,0,86,0.0,0.0,,469.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,5,126641,2,2,0,0,2,,144.0,585.0,21,2.0,4.0,4.0,3.0,2.0,1,1,119.57945041440756,0.0,24015.0,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019529460753695608,12007.5,2,1,2_1,2_0_1,2_2_1,2_0_0 -4795,1,50.0,400.0,7,111,600.0,,,85,67,0.0,0.0,,720.0,206.439240502823,,70,0,0,0,0,0,0,0,0,0,,2,,5,101467,2,2,0,0,2,,480.0,500.0,42,1.0,0.0,3.0,6.0,3.0999999999999996,1,1,114.6157087712741,600.0,30262.917430385012,6,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023791493389764704,9762.231429156456,2,1,2_1,2_0_1,2_2_1,2_0_0 -4796,1,38.0,522.0,7,111,280.0,,,0,85,0.0,0.0,,410.0,223.64251054472493,,50,0,0,0,0,0,0,0,0,0,,2,,5,115340,2,1,0,0,1,,444.0,557.0,31,0.0,0.0,4.0,5.0,2.5999999999999996,1,1,134.37937917392367,280.0,20278.0,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02021895650458625,7799.23076923077,1,1,1_1,1_0_1,1_2_1,1_0_0 -4797,0,46.0,0.0,6,111,800.0,,,85,68,0.0,0.0,,1376.0,990.9083544135505,,31,0,0,0,0,0,0,0,0,0,,1,,4,110700,1,2,0,0,2,,320.0,,42,3.0,0.0,3.0,7.0,3.6,3,2,122.19783975119373,800.0,27564.506363702334,6,4,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04991926870897833,7656.807323250649,1,1,1_0,1_1_0,1_2_0,1_0_0 -4798,2,46.0,0.0,8,111,200.0,,,22,54,0.0,0.0,,284.0,144.50746835197612,,70,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125924,2,1,0,0,2,,120.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,105.49656279103328,200.0,38482.75451463895,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007379929102839184,19241.377257319476,5,3,5,5_1,5_2,5_0_0 -4799,2,56.0,0.0,7,111,500.0,,,11,11,0.0,0.0,,788.0,495.4541772067752,,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,104696,2,1,0,0,1,,240.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,126.50560781503592,500.0,33163.12332362171,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023761332499062798,22108.74888241447,6,3,6,6_1,6_2,6_0_0 -4800,2,34.0,0.0,9,111,500.0,,,85,34,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,2,60.0,1,2005.0,6,106158,2,1,0,0,2,,120.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,146.51882036500575,500.0,45279.0,7,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01104264670156143,30186.0,8,4,8,8_1,8_2,8_0_0 -4801,1,46.0,253.0,2,111,210.0,,,0,63,0.0,0.0,,282.0,123.8635443016938,,60,0,0,0,0,0,0,0,0,0,,1,,2,115492,2,2,0,0,2,,424.0,291.0,12,1.0,4.0,3.0,1.0,1.0,1,1,121.74662584829936,210.0,5241.0,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.053806525472238124,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_1 -4802,1,81.0,181.0,2,111,350.0,,,77,78,0.0,0.0,,442.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,0,,1,,2,112337,2,1,0,0,2,,136.0,295.0,41,0.0,3.0,4.0,2.0,1.5,2,2,132.4171632468658,350.0,16208.521803559408,5,5,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02726960578866213,10805.681202372938,2,1,2_1,2_1_1,2_2_1,2_0_1 -4803,2,62.0,0.0,2,111,420.0,,,85,45,0.0,0.0,,870.0,774.1471518855863,,70,0,0,0,0,0,0,0,0,0,,1,,2,111624,2,2,0,0,2,,320.0,318.0,42,2.0,2.0,5.0,4.0,2.3,1,1,122.41840826005445,420.0,28729.207418351518,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030282770677629803,12490.959747109357,2,1,2_0,2_1_0,2_2_0,2_0_1 -4804,2,51.0,0.0,2,111,720.0,,,62,52,0.0,0.0,,920.0,344.06540083803833,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,116965,2,3,0,0,2,,240.0,353.0,43,3.0,4.0,5.0,4.0,2.5,2,2,131.85456557213936,720.0,33975.683456176674,4,1,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027078189646623483,13590.27338247067,3,2,3_0,3_1_0,3_2_0,3_0_1 -4805,2,29.0,0.0,2,111,0.0,,,0,56,0.0,0.0,,291.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,2,116858,2,3,0,0,2,,327.0,370.0,32,1.0,0.0,3.0,3.0,1.6,1,1,129.78535489407943,0.0,7409.676878339171,0,4,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039272967604118476,4631.048048961981,1,1,1_0,1_0_0,1_2_0,1_0_1 -4806,1,78.0,87.0,5,111,0.0,,,0,77,0.0,0.0,,684.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,2,,3,103562,2,1,0,0,2,,80.0,272.0,21,0.0,6.0,4.0,2.0,1.5,1,1,130.10966076830368,0.0,14754.88995652211,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04635751279850455,9836.593304348075,2,1,2_1,2_0_1,2_2_1,2_0_0 -4807,1,35.0,21.0,5,111,600.0,,,0,68,0.0,0.0,,620.0,34.40654008380383,,70,0,0,0,0,0,0,0,0,3,30.0,2,,3,109188,2,1,0,0,2,,180.0,227.0,12,1.0,0.0,2.0,1.0,1.0,3,3,146.77890159253644,600.0,14233.36289234727,0,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04355962850728341,14233.36289234727,3,2,3_1,3_0_1,3_2_1,3_0_0 -4808,1,72.0,253.0,5,111,300.0,,,0,77,0.0,0.0,,340.0,68.81308016760767,,70,0,0,0,0,0,0,0,0,0,,2,,3,110339,2,2,0,0,2,,150.0,266.0,21,1.0,3.0,3.0,2.0,1.5,1,1,131.79924147916003,300.0,16881.05003423104,0,5,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02014092721190655,11254.033356154026,2,1,2_1,2_0_1,2_2_1,2_0_0 -4809,2,45.0,0.0,2,111,280.0,,,55,68,0.0,0.0,,480.0,344.06540083803833,,70,0,0,0,0,0,0,0,0,0,,2,,2,130876,2,2,0,0,2,,480.0,256.0,43,2.0,1.0,3.0,3.0,2.0,1,1,114.07353475862064,280.0,41884.68498193407,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0114600360539189,20942.342490967036,5,3,5,5_0,5_2,5_0_1 -4810,1,78.0,165.0,2,111,200.0,,,0,86,0.0,0.0,,325.0,215.04087552377396,,70,0,0,0,0,0,0,0,0,0,,2,,2,122607,2,3,0,0,2,,200.0,246.0,21,1.0,4.0,3.0,2.0,1.5,2,2,122.92974569191142,200.0,6972.684299930439,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.046610456750959206,4648.456199953626,1,1,1_1,1_0_1,1_2_1,1_0_1 -4811,2,46.0,0.0,2,111,500.0,,,0,34,0.0,0.0,,540.0,68.81308016760767,,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,119537,2,1,0,0,1,,160.0,,32,1.0,0.0,4.0,3.0,1.8,1,1,124.77022948308992,500.0,64886.59653874956,0,1,1,2,158.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00832221180960721,36048.1091881942,9,5,9,9_0,9_2,9_0_1 -4812,1,77.0,309.0,5,111,240.0,,,77,72,0.0,0.0,,340.0,172.03270041901916,,41,2,2,2,2,1,2,2,2,0,,1,,3,122710,2,1,0,0,2,,150.0,324.0,41,0.0,0.0,3.0,2.0,1.5,2,2,121.76126901004731,240.0,17695.552407285013,5,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.019213867539960308,11797.034938190009,2,1,2_1,2_1_1,2_2_1,2_0_0 -4813,2,36.0,0.0,1,111,480.0,,,0,63,0.0,0.0,,730.0,430.0817510475479,,50,0,0,0,0,0,0,0,0,0,,1,,1,119139,2,1,0,0,2,,320.0,,22,1.0,15.0,6.0,3.0,2.0,3,3,111.43912895494704,480.0,34510.08764299294,0,1,0,1,49.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021153235180155272,17255.04382149647,4,2,4_0,4_1_0,4_2_0,4_1_0 -4814,2,52.0,0.0,7,111,300.0,,,55,63,0.0,0.0,,420.0,206.439240502823,,71,2,2,2,2,2,2,2,1,3,15.0,1,,5,120499,1,1,0,0,2,,100.0,,43,2.0,1.0,3.0,3.0,2.0,3,3,103.48629399614262,300.0,44158.60731676933,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.009511169520975903,22079.303658384666,6,3,6,6_1,6_2,6_0_0 -4815,2,59.0,0.0,7,111,1200.0,,,63,63,0.0,0.0,,1320.0,206.439240502823,,50,0,0,0,0,0,0,0,0,1,15.0,1,,5,128198,2,2,0,0,2,,600.0,,43,2.0,2.0,4.0,2.0,1.5,4,4,113.9443016094277,1200.0,49987.30121111363,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026406706663862176,33324.86747407575,8,4,8,8_1,8_2,8_0_0 -4816,2,62.0,0.0,6,111,420.0,,,21,71,0.0,0.0,,670.0,430.0817510475479,,50,0,0,0,0,0,0,0,0,0,,1,,4,102210,2,1,0,0,2,,400.0,,42,2.0,3.0,6.0,3.0,2.0,3,2,157.70238488105855,420.0,71253.97120021869,1,5,0,1,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009402984685826798,35626.98560010934,9,5,9,9_1,9_2,9_0_0 -4817,2,32.0,0.0,7,111,400.0,,,21,52,0.0,0.0,,480.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,2,50.0,1,,5,110189,2,2,0,0,1,,180.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,120.30585496192515,400.0,32370.0,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014828544949026877,21580.0,6,3,6,6_1,6_2,6_0_0 -4818,2,64.0,0.0,2,111,330.0,,,0,78,0.0,0.0,,410.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,0,,1,,2,117051,1,2,0,0,2,,180.0,,11,0.0,3.0,3.0,1.0,1.0,4,3,127.01410466327413,330.0,28381.02118034759,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014446273705045684,28381.02118034759,8,4,8,8_1,8_2,8_0_1 -4819,2,49.0,0.0,7,111,300.0,,,56,67,0.0,0.0,,470.0,292.4555907123326,,50,0,0,0,0,0,0,0,0,0,,1,,5,128586,2,2,0,0,2,,300.0,,43,2.0,1.0,5.0,5.0,2.5999999999999996,3,3,122.55331957137271,300.0,27691.411416405845,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016972771554776993,10650.542852463788,2,1,2_0,2_1_0,2_2_0,2_0_0 -4820,2,69.0,0.0,8,111,380.0,,,0,86,0.0,0.0,,729.0,447.28502108944986,,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,119955,2,1,0,0,2,,340.0,,11,0.0,7.0,4.0,1.0,1.0,2,2,120.30585496192515,380.0,21974.729683965532,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033174469514950844,21974.729683965532,6,3,6,6_1,6_2,6_0_0 -4821,2,62.0,0.0,9,111,0.0,,,85,78,0.0,0.0,,113.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,117357,2,1,0,0,2,,762.0,855.0,41,2.0,1.0,3.0,4.0,2.5,2,2,120.86161667030113,0.0,30414.94369284683,6,5,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037152789477817123,12165.977477138733,2,1,2_0,2_1_0,2_2_0,2_0_0 -4822,2,48.0,0.0,2,111,400.0,,,22,68,0.0,0.0,,800.0,688.1308016760767,,50,0,0,0,0,0,0,0,0,0,,1,,2,126380,2,2,0,0,2,,500.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,107.5253431087642,400.0,15670.47261141063,4,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051051427728955094,7835.236305705315,1,1,1_0,1_1_0,1_2_0,1_0_1 -4823,2,64.0,0.0,5,111,660.0,,,74,74,0.0,0.0,,760.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,0,,1,,3,131669,2,2,0,0,2,,320.0,,41,1.0,0.0,3.0,3.0,2.0,2,2,118.9429383069899,660.0,148440.81276676847,5,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005119885736506433,74220.40638338424,10,5,10,10_1,10_2,10_0_0 -4824,0,64.0,0.0,6,111,528.0,,,56,78,0.0,0.0,,689.0,276.9726476746209,,33,0,0,0,0,0,0,0,0,0,,1,,4,115712,2,1,0,0,2,,432.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,112.25211185794632,528.0,31780.44199425804,4,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021680000552682235,21186.96132950536,5,3,5,5_1,5_2,5_0_0 -4825,2,55.0,0.0,8,111,700.0,,,11,11,0.0,0.0,,780.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,106467,2,1,0,0,1,,1500.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,145.54170689219424,700.0,141450.66634301667,1,1,0,1,170.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0055142900359939385,94300.44422867778,10,5,10,10_1,10_2,10_0_0 -4826,2,30.0,0.0,9,111,800.0,,,35,38,0.0,0.0,,800.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,132178,2,1,0,0,2,,122.0,800.0,43,2.0,0.0,4.0,2.0,1.5,1,1,211.7946678387298,800.0,34524.76249163315,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023171774177849155,23016.508327755433,6,3,6,6_1,6_2,6_0_0 -4827,2,59.0,0.0,7,111,318.0,,,52,63,0.0,0.0,,525.0,356.1076898673697,,71,0,0,0,0,0,0,0,0,0,,1,,5,129544,2,2,0,0,2,,1080.0,,43,3.0,4.0,5.0,3.0,2.0,2,2,108.36025848386342,318.0,5430.707196029777,4,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09667249237517563,2715.3535980148886,1,1,1_0,1_1_0,1_2_0,1_0_0 -4828,2,29.0,0.0,7,111,1100.0,,,0,54,0.0,0.0,,1330.0,395.67521096374406,,31,0,0,0,0,0,0,0,0,0,,1,,5,125341,2,2,0,0,2,,890.0,,32,3.0,1.0,5.0,5.0,2.5999999999999996,2,2,108.82649689007262,1100.0,7139.198278275593,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18629542816413402,2745.8454916444593,1,1,1_0,1_1_0,1_2_0,1_0_0 -4830,2,56.0,0.0,7,111,450.0,,,56,34,0.0,0.0,,570.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,1,,5,126350,2,2,0,0,2,,350.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,108.56956329955024,450.0,66477.69577035439,1,1,0,1,128.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008574304409843737,44318.46384690292,10,5,10,10_1,10_2,10_0_0 -4831,2,59.0,0.0,7,111,750.0,,,75,31,0.0,0.0,,957.0,356.1076898673697,,50,0,0,0,0,0,0,0,0,0,,1,,5,113807,2,1,0,0,2,,552.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,129.01645801912485,750.0,168241.85013337148,5,1,1,2,135.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005688239871597649,112161.23342224765,10,5,10,10_1,10_2,10_0_0 -4832,2,88.0,0.0,5,111,420.0,,,0,77,0.0,0.0,,466.0,79.13504219274881,,70,0,0,0,0,0,0,0,0,0,,1,,3,123372,2,2,0,0,2,,110.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,120.33078621742145,420.0,13004.047095273247,0,5,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03583499787303779,13004.047095273247,2,1,2_0,2_1_0,2_2_0,2_0_0 -4833,2,62.0,0.0,5,111,200.0,,,85,78,0.0,155.27587572291867,,718.0,633.0803375419905,,71,0,0,0,0,0,0,0,0,0,,1,,3,123837,2,2,0,0,2,,300.0,,41,2.0,0.0,3.0,4.0,2.5,1,1,111.43442903302564,200.0,36820.47416494388,6,5,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019500020471860058,14728.189665977552,3,2,3_0,3_1_0,3_2_0,3_0_0 -4834,1,46.0,346.0,5,111,960.0,,,0,81,0.0,0.0,,1167.0,356.1076898673697,,71,0,0,0,0,0,0,0,0,0,,1,,3,122711,2,1,0,0,2,,0.0,700.0,32,3.0,1.0,4.0,3.0,2.0,1,1,111.43442903302564,960.0,15925.964964550983,0,4,2,3,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0732765645659514,7962.982482275492,1,1,1_1,1_1_1,1_2_1,1_0_0 -4835,2,39.0,0.0,7,111,1500.0,,,52,21,0.0,0.0,,2052.0,949.6205063129859,,71,0,0,0,0,0,0,0,0,0,,1,,5,108487,1,2,0,0,2,,1200.0,,43,3.0,4.0,8.0,10.0,4.699999999999999,2,2,140.46148878559086,1500.0,72551.54944336915,4,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028283338064360838,15436.499881567906,3,2,3_0,3_1_0,3_2_0,3_0_0 -4836,0,31.0,0.0,7,111,400.0,,,67,42,0.0,0.0,,584.0,316.54016877099525,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,127982,2,1,0,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,120.35776298512468,400.0,34931.18794326241,1,1,5,0,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01671858400431649,19406.215524034673,5,3,5,5_1,5_2,5_0_0 -4837,2,56.0,0.0,6,111,900.0,,,63,56,0.0,0.0,,1038.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,4,108161,2,1,0,0,2,,600.0,,43,2.0,4.0,8.0,4.0,2.3,2,2,104.35768118362043,900.0,20569.975325815965,4,1,0,1,235.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05046189815781049,8943.467532963465,1,1,1_0,1_1_0,1_2_0,1_0_0 -4838,2,64.0,0.0,6,111,456.0,,,0,77,0.0,0.0,,525.0,118.70256328912323,,20,0,0,0,0,0,0,0,0,0,,1,,4,123076,2,1,0,0,2,,140.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,115.82242711818547,456.0,46279.025436999764,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011344231972099095,46279.025436999764,10,5,10,10_1,10_2,10_0_0 -4839,2,75.0,0.0,2,111,1020.0,,,0,78,0.0,0.0,,1158.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,0,,1,,2,108313,2,1,0,0,2,,720.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,113.0405660521195,1020.0,23366.669322709167,0,5,0,1,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0495577689745703,23366.669322709167,6,3,6,6_1,6_2,6_0_1 -4840,1,38.0,398.0,8,111,600.0,,,0,52,0.0,0.0,,800.0,344.06540083803833,,31,0,0,0,0,0,0,0,0,0,,2,2000.0,6,126532,1,2,0,0,1,,730.0,382.0,32,1.0,0.0,3.0,4.0,2.3,4,3,119.05208244304947,600.0,19193.602167235767,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041680555480389785,8345.044420537291,1,1,1_1,1_0_1,1_2_1,1_0_0 -4841,1,64.0,253.0,7,111,0.0,,,0,86,0.0,0.0,,487.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,100816,2,1,0,0,2,,78.0,323.0,11,0.0,3.0,2.0,1.0,1.0,1,1,139.26071710889988,0.0,10637.4639507303,0,6,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0457815887560837,10637.4639507303,2,1,2_1,2_0_1,2_2_1,2_0_0 -4842,1,38.0,425.0,8,111,360.0,,,0,56,0.0,0.0,,420.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,107842,2,1,0,0,2,,200.0,379.0,32,1.0,1.0,3.0,3.0,1.8,1,1,135.70819692325566,360.0,11372.814605101607,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03693017204479855,6318.230336167559,1,1,1_1,1_0_1,1_2_1,1_0_0 -4843,2,71.0,0.0,5,111,450.0,,,0,72,0.0,0.0,,510.0,103.2196202514115,,33,0,0,0,0,0,0,0,0,0,,1,,3,104756,2,1,0,0,2,,450.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,122.59751047593653,450.0,92833.7994528008,0,5,0,1,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005493688753515876,61889.19963520053,10,5,10,10_1,10_2,10_0_0 -4844,1,20.0,309.0,9,111,0.0,,,55,55,0.0,0.0,,831.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,123785,2,1,0,0,1,,247.0,414.0,43,2.0,0.0,2.0,2.0,1.5,1,1,229.69002679883184,0.0,4849.247242512332,4,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17136680363805695,3232.8314950082217,1,1,1_1,1_0_1,1_2_1,1_0_0 -4845,2,25.0,0.0,9,111,360.0,,,46,46,0.0,0.0,,360.0,0.0,,70,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,118569,2,1,0,0,2,,160.0,538.0,43,2.0,0.0,2.0,2.0,1.5,1,1,138.22691350816336,360.0,46930.12457013749,1,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007670978999043073,31286.74971342499,8,4,8,8_0,8_2,8_0_0 -4846,2,53.0,0.0,2,111,600.0,,,0,52,0.0,0.0,,720.0,206.439240502823,,43,0,0,0,0,0,0,0,0,1,5.0,1,,2,116387,2,2,0,0,2,,900.0,299.0,22,2.0,1.0,4.0,2.0,1.5,3,3,125.7407843224095,600.0,34981.995271867614,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020582016388842782,23321.330181245077,6,3,6,6_1,6_2,6_0_1 -4847,1,38.0,253.0,2,111,400.0,,,0,63,0.0,0.0,,500.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,0,,2,,2,110830,1,3,0,0,2,,160.0,267.0,22,2.0,0.0,3.0,2.0,1.5,1,1,123.2369208633883,400.0,12183.0,0,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04104079454978248,8122.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -4848,1,42.0,337.0,2,111,600.0,,,0,52,0.0,0.0,,900.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,2,127852,2,3,0,0,2,,1500.0,370.0,32,2.0,1.0,3.0,5.0,2.5999999999999996,1,1,130.04326587256045,600.0,27876.48351748893,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.032285277281668794,10721.724429803437,2,1,2_1,2_1_1,2_2_1,2_0_1 -4849,1,79.0,163.0,2,111,150.0,,,0,77,0.0,0.0,,250.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,2,109743,2,3,0,0,2,,180.0,220.0,11,0.0,0.0,3.0,1.0,1.0,2,2,115.25056937496785,150.0,20792.895297866384,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.012023337607324613,20792.895297866384,5,3,5,5_1,5_2,5_0_1 -4850,2,71.0,0.0,2,111,240.0,,,77,78,0.0,0.0,,540.0,516.0981012570575,,20,0,0,0,0,0,0,0,0,0,,1,,2,117618,1,2,0,0,2,,296.0,297.0,41,0.0,4.0,3.0,2.0,1.5,2,2,121.76126901004731,240.0,23373.21912350598,6,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023103364459409564,15582.14608233732,3,2,3_0,3_1_0,3_2_0,3_0_1 -4851,1,43.0,468.0,2,111,600.0,,,0,85,0.0,0.0,,705.0,180.63433543997013,,70,0,0,0,0,0,0,0,0,0,,2,,2,121275,2,3,0,0,2,,760.0,516.0,31,0.0,0.0,5.0,6.0,3.0999999999999996,1,1,120.9901679873741,600.0,25777.437314632447,0,6,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02734949915288165,8315.302359558855,1,1,1_1,1_0_1,1_2_1,1_0_1 -4852,1,54.0,346.0,6,111,612.0,,,0,54,0.0,0.0,,696.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,0,,2,,4,106582,2,1,0,0,2,,190.0,524.0,22,1.0,1.0,4.0,2.0,1.5,2,2,130.10966076830368,612.0,16027.685426594016,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04342486026367591,10685.123617729345,2,1,2_1,2_0_1,2_2_1,2_0_0 -4853,1,37.0,354.0,7,111,240.0,,,0,56,0.0,0.0,,240.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,127595,2,2,0,0,2,,140.0,368.0,32,1.0,0.0,1.0,2.0,1.3,4,4,154.35344336093277,240.0,3595.3795820335636,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06675233991962953,2765.6766015642797,1,1,1_1,1_0_1,1_2_1,1_0_0 -4854,0,63.0,0.0,6,111,310.0,,,0,86,0.0,0.0,,510.0,344.06540083803833,,60,0,0,0,0,0,0,0,0,0,,1,,4,131381,1,2,0,0,2,,500.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,118.67358232401638,310.0,13400.926356620714,0,6,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03805707056572511,8933.950904413809,1,1,1_0,1_1_0,1_2_0,1_0_0 -4855,2,75.0,0.0,6,111,430.0,,,77,78,0.0,0.0,,510.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,0,,1,,4,104338,2,1,0,0,2,,210.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,130.85332610005173,430.0,17773.25326044744,5,5,0,1,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028694802944993356,11848.83550696496,2,1,2_0,2_1_0,2_2_0,2_0_0 -4856,1,28.0,253.0,9,111,400.0,,,0,43,0.0,0.0,,450.0,86.01635020950958,,33,0,0,0,0,0,0,0,0,0,,2,2006.0,6,120890,2,2,0,0,2,,280.0,409.0,12,1.0,0.0,2.0,1.0,1.0,4,3,157.5256083272292,400.0,9609.33223159206,0,4,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04682947671645282,9609.33223159206,1,1,1_1,1_0_1,1_2_1,1_0_0 -4857,1,49.0,413.0,7,111,500.0,,,52,85,0.0,0.0,,620.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,2,,5,124513,2,3,0,0,2,,200.0,476.0,42,1.0,0.0,4.0,4.0,2.3,3,3,112.88330941538094,500.0,15404.957520461427,4,7,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.040246784139228775,6697.807617591925,1,1,1_1,1_0_1,1_2_1,1_0_0 -4858,0,22.0,0.0,2,111,0.0,,,0,90,0.0,0.0,,1208.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,109556,1,1,0,0,2,,0.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,150.05732349181017,0.0,22021.87754352538,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05485454169892804,14681.251695683588,3,2,3_0,3_1_0,3_2_0,3_0_1 -4859,2,49.0,0.0,8,111,800.0,,,0,85,0.0,0.0,,1040.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105395,1,3,0,0,2,,600.0,,31,1.0,3.0,4.0,4.0,2.1,1,1,124.06589004560149,800.0,11295.877322406912,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09206898856249247,5378.989201146148,1,1,1_0,1_1_0,1_2_0,1_0_0 -4860,2,54.0,0.0,7,111,320.0,,,63,56,0.0,0.0,,560.0,412.878481005646,,10,0,0,0,0,0,0,0,0,0,,1,,5,118040,2,1,0,0,1,,300.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,116.2461664436312,320.0,21755.168600652443,4,1,0,1,166.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025741009425374228,14503.445733768296,3,2,3_0,3_1_0,3_2_0,3_0_0 -4861,2,37.0,0.0,9,111,1089.0,,,0,56,0.0,0.0,,1219.0,223.64251054472493,,42,2,2,2,2,2,2,2,1,0,,1,2004.0,6,102972,2,3,0,0,1,,0.0,,32,1.0,0.0,4.0,4.0,2.3,2,2,114.46399252258698,1089.0,22888.78766803199,0,4,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.05325751707254189,9951.646812187822,2,1,2_0,2_1_0,2_2_0,2_0_0 -4862,0,65.0,0.0,5,111,600.0,,,0,86,0.0,0.0,,670.0,120.42289029331342,,50,0,0,0,0,0,0,0,0,0,,1,,3,110349,1,1,0,0,2,,160.0,,11,0.0,3.0,4.0,1.0,1.0,2,1,111.43912895494704,600.0,12615.911392405063,0,6,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05310753850120954,12615.911392405063,2,1,2_0,2_1_0,2_2_0,2_0_0 -4863,2,53.0,0.0,2,111,183.0,,,0,85,0.0,0.0,,447.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,2,130294,1,1,0,0,2,,284.0,,21,1.0,1.0,3.0,3.0,2.0,1,1,120.30585496192515,183.0,19035.09618737514,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02348293886197795,9517.54809368757,1,1,1_0,1_1_0,1_2_0,1_0_1 -4864,2,67.0,0.0,6,111,780.0,,,75,78,0.0,0.0,,1010.0,395.67521096374406,,10,0,0,0,0,0,0,0,0,0,,1,,4,107139,2,2,0,0,2,,550.0,,41,1.0,2.0,9.0,3.0,2.0,2,2,112.25211185794632,780.0,50867.931038278315,5,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0198553387052438,25433.965519139158,7,4,7,7_1,7_2,7_0_0 -4865,2,73.0,0.0,1,111,1380.0,,,0,71,0.0,0.0,,1518.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,1,128240,2,1,0,0,2,,880.0,,21,0.0,5.0,3.0,2.0,1.5,1,1,114.00600804837084,1380.0,13355.451827285042,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11366144849541837,8903.63455152336,1,1,1_0,1_1_0,1_2_0,1_1_0 -4866,2,36.0,0.0,7,111,0.0,,,46,46,0.0,0.0,,83.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,5,104445,2,1,0,0,1,,239.0,650.0,43,2.0,0.0,3.0,2.0,1.5,3,3,129.01645801912485,0.0,56050.670641335186,4,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0014808029779181755,37367.113760890126,9,5,9,9_0,9_2,9_0_0 -4867,2,37.0,0.0,7,111,0.0,,,34,34,0.0,0.0,,1042.0,0.0,,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,115581,2,3,0,0,2,,118.0,1350.0,43,2.0,0.0,6.0,3.0,1.8,1,1,123.32177005130539,0.0,329679.5725111182,1,1,2,3,109.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0031606447195476734,183155.31806173234,10,5,10,10_1,10_2,10_0_0 -4868,2,57.0,0.0,5,111,460.0,,,85,62,0.0,0.0,,644.0,316.54016877099525,,41,0,0,0,0,0,0,0,0,0,,1,,3,112901,2,2,0,0,2,,200.0,700.0,42,2.0,4.0,4.0,4.0,2.5,2,1,127.03818293611502,460.0,55620.40685339057,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011578484164948936,22248.162741356227,6,3,6,6_1,6_2,6_0_0 -4869,2,31.0,0.0,6,111,0.0,,,38,33,0.0,0.0,,290.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,101831,2,1,0,0,1,,603.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,127.84382591761137,0.0,96833.0,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0029948467980956905,64555.333333333336,10,5,10,10_1,10_2,10_0_0 -4870,0,56.0,0.0,5,111,300.0,,,0,45,0.0,0.0,,369.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,133375,2,1,0,0,2,,200.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,160.01820611569192,300.0,41626.61784977186,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008864520325232774,41626.61784977186,9,5,9,9_1,9_2,9_0_0 -4871,2,67.0,0.0,7,111,251.0,,,68,77,0.0,0.0,,320.0,118.70256328912323,,70,0,0,0,0,0,0,0,0,0,,1,,5,124252,2,2,0,0,2,,240.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,114.00600804837084,251.0,18556.19607843137,1,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01724491370146434,12370.797385620914,2,1,2_0,2_1_0,2_2_0,2_0_0 -4872,2,41.0,0.0,5,111,540.0,,,47,34,0.0,0.0,,586.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,1,15.0,1,,3,127801,2,1,0,0,2,,600.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,129.07645464223046,540.0,116858.05734543069,1,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005014630683683134,43280.761979789146,9,5,9,9_1,9_2,9_0_0 -4873,2,83.0,0.0,5,111,360.0,,,0,77,0.0,0.0,,498.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,3,114743,2,1,0,0,2,,360.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,126.96337587751336,360.0,11411.803650342421,0,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04363902633262158,11411.803650342421,2,1,2_0,2_1_0,2_2_0,2_0_0 -4874,2,48.0,0.0,7,111,1600.0,,,22,42,0.0,0.0,,1738.0,237.40512657824647,,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,122322,2,1,0,0,2,,720.0,,43,2.0,0.0,9.0,5.0,2.6,3,2,135.9976078272961,1600.0,71202.09883661685,1,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024409392818434798,27385.422629468016,7,4,7,7_1,7_2,7_0_0 -4875,1,28.0,357.0,7,111,500.0,,,85,53,0.0,0.0,,638.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,5,125406,2,2,0,0,2,,240.0,560.0,42,1.0,0.0,2.0,3.0,1.8,2,2,147.18757349212763,500.0,2475.867481473054,6,4,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2576874589509179,1375.4819341516966,1,1,1_1,1_1_1,1_2_1,1_0_0 -4876,2,41.0,0.0,7,111,601.0,,,42,31,0.0,0.0,,670.0,118.70256328912323,,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,120832,2,3,0,0,2,,267.0,1200.0,43,2.0,0.0,6.0,5.0,2.4,1,1,151.98872643452827,601.0,93747.49525995058,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007146857610885179,39061.456358312746,9,5,9,9_1,9_2,9_0_0 -4877,2,53.0,0.0,7,111,1024.0,,,42,34,0.0,0.0,,1116.0,158.27008438549763,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,123104,2,2,0,0,2,,367.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,126.77946632862815,1024.0,101472.77688838658,1,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010998023649510715,50736.38844419329,10,5,10,10_1,10_2,10_0_0 -4878,0,44.0,0.0,5,111,0.0,,,0,63,0.0,0.0,,1416.0,0.0,,71,0,0,0,0,0,0,0,0,1,1.0,1,,3,120151,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,127.67783021889832,0.0,16095.499067956038,0,1,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08797490491109186,16095.499067956038,4,2,4_0,4_1_0,4_2_0,4_0_0 -4879,2,50.0,0.0,8,111,840.0,,,34,33,0.0,0.0,,886.0,79.13504219274881,,10,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,132967,2,1,0,0,1,,900.0,,43,2.0,1.0,4.0,4.0,2.3,2,2,133.27656056628703,840.0,130270.63790482288,1,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006801225619600643,56639.4077847056,10,5,10,10_1,10_2,10_0_0 -4880,2,55.0,0.0,7,111,300.0,,,0,46,0.0,0.0,,392.0,158.27008438549763,,71,0,0,0,0,0,0,0,0,0,,1,,5,118757,2,2,0,0,2,,1530.0,,12,1.0,5.0,5.0,1.0,1.0,1,1,110.52774113196546,300.0,6312.05194786816,0,4,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06210341791188752,6312.05194786816,1,1,1_0,1_1_0,1_2_0,1_0_0 -4881,2,45.0,0.0,6,111,420.0,,,81,85,0.0,0.0,,670.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,1,,4,125199,2,2,0,0,2,,1320.0,,42,3.0,1.0,4.0,5.0,2.8,2,2,117.74934395829729,420.0,20936.332342398196,4,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03200178469861133,7477.2615508564995,1,1,1_0,1_1_0,1_2_0,1_0_0 -4882,0,37.0,0.0,5,111,880.0,,,81,21,0.0,0.0,,1110.0,395.67521096374406,,12,0,0,0,0,0,0,0,0,0,,1,,3,109542,2,1,0,0,2,,320.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,117.98356194527894,880.0,11896.396846025951,4,4,5,0,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09330556254693209,5664.950879059977,1,1,1_0,1_1_0,1_2_0,1_0_0 -4883,1,78.0,201.0,5,111,260.0,,,0,77,0.0,0.0,,392.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,2,,3,114009,2,1,0,0,2,,220.0,382.0,11,0.0,7.0,2.0,1.0,1.0,2,2,124.96996483637014,260.0,9477.377859252312,0,6,2,3,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04136165148436169,9477.377859252312,1,1,1_1,1_0_1,1_2_1,1_0_0 -4884,1,48.0,253.0,7,111,364.0,,,0,64,0.0,0.0,,814.0,774.1471518855863,,60,0,0,0,0,0,0,0,0,0,,1,,5,131688,2,2,0,0,2,,250.0,386.0,32,1.0,2.0,2.0,2.0,1.5,4,4,133.11404008306025,364.0,12052.520030725655,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06753774297199744,8035.013353817103,1,1,1_1,1_1_1,1_2_1,1_0_0 -4885,1,23.0,357.0,7,111,423.0,,,0,63,0.0,0.0,,753.0,567.7079113827633,,31,0,0,0,0,0,0,0,0,0,,1,,5,122691,1,2,0,0,2,,588.0,448.0,22,3.0,0.0,4.0,4.0,2.5,1,1,135.8678968483612,423.0,43555.57884021304,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017288256063877325,17422.231536085215,4,2,4_1,4_1_1,4_2_1,4_0_0 -4886,2,30.0,0.0,6,111,360.0,,,56,63,0.0,0.0,,498.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,120905,2,3,0,0,2,,560.0,597.0,43,2.0,0.0,3.0,4.0,2.1,1,1,111.52112906417779,360.0,6772.8985067382855,1,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07352834233445918,3225.189765113469,1,1,1_0,1_1_0,1_2_0,1_0_0 -4887,2,55.0,0.0,7,111,590.0,,,75,54,0.0,0.0,,678.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,0,,1,,5,128027,2,1,0,0,2,,460.0,1000.0,42,2.0,2.0,4.0,4.0,2.5,2,2,116.32478945267378,590.0,48136.935405574644,5,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014084818534614942,19254.774162229856,5,3,5,5_1,5_2,5_0_0 -4888,2,71.0,0.0,7,111,517.0,,,75,77,0.0,0.0,,583.0,113.54158227655265,,70,0,0,0,0,0,0,0,0,0,,1,,5,108392,2,1,0,0,2,,375.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,108.78762023721492,517.0,40287.77408218424,5,5,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014470891313347837,26858.516054789492,7,4,7,7_1,7_2,7_0_0 -4889,2,47.0,0.0,7,111,390.0,,,0,52,0.0,0.0,,550.0,275.25232067043066,,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,127552,2,1,0,0,1,,348.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,120.13360647695443,390.0,39254.4930442144,0,1,0,1,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01401113496435952,26169.66202947627,7,4,7,7_1,7_2,7_0_0 -4890,1,61.0,342.0,8,111,300.0,,,0,69,0.0,0.0,,366.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,126006,2,2,0,0,2,,166.0,378.0,12,1.0,0.0,1.0,1.0,1.0,1,1,111.25629450934932,300.0,6332.0,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05780164245104232,6332.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -4891,2,62.0,0.0,2,112,480.0,,,0,71,0.0,0.0,,570.0,154.82943037711726,,71,0,0,0,0,0,0,0,0,0,,1,,2,121116,2,1,0,0,2,,290.0,,11,0.0,9.0,5.0,1.0,1.0,4,3,118.81378842159988,480.0,13128.779333219652,0,5,0,1,100.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043416069806104005,13128.779333219652,2,1,2_0,2_1_0,2_2_0,2_0_1 -4892,2,53.0,0.0,7,112,510.0,,,52,45,0.0,0.0,,598.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,114810,2,1,0,0,2,,480.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,99.2468757756999,510.0,40801.41446321503,1,1,1,2,110.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014656354635428966,15692.851716621166,3,2,3_0,3_1_0,3_2_0,3_0_0 -4893,0,55.0,0.0,5,112,299.0,,,0,43,0.0,0.0,,342.0,73.97406118017824,,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,127015,2,2,0,0,2,,155.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,107.72831584496265,299.0,29225.459827550763,0,1,5,0,40.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011702125544577318,29225.459827550763,8,4,8,8_1,8_2,8_0_0 -4894,2,41.0,0.0,7,112,347.4,,,22,46,0.0,0.0,,485.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,5,111164,2,1,0,0,2,,538.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,111.23782651749289,347.4,32066.813979174898,1,1,0,1,90.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01512467064283258,17814.896655097164,4,2,4_0,4_1_0,4_2_0,4_0_0 -4895,2,38.0,0.0,5,112,499.0,,,55,62,0.0,0.0,,587.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,106376,2,2,0,0,2,,349.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,110.96478856993001,499.0,44422.459614252984,1,1,1,2,108.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013214036437812654,21153.552197263325,5,3,5,5_1,5_2,5_0_0 -4897,1,52.0,253.0,2,112,398.0,,,0,62,0.0,0.0,,442.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,1,,2,102952,2,1,0,0,2,,107.0,335.0,12,1.0,0.0,2.0,1.0,1.0,2,2,136.1279897311314,398.0,12444.061855357919,0,4,2,3,72.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.035518949129113526,12444.061855357919,2,1,2_1,2_1_1,2_2_1,2_0_1 -4898,1,57.0,243.0,2,112,270.0,,,0,78,0.0,0.0,,314.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,2,,2,113291,1,2,0,0,2,,226.0,249.0,11,0.0,0.0,2.0,1.0,1.0,1,1,129.33603864736227,270.0,12883.298011783503,0,7,2,3,29.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02437264120668519,12883.298011783503,2,1,2_1,2_0_1,2_2_1,2_0_1 -4899,2,57.0,0.0,2,112,599.0,,,63,77,0.0,0.0,,737.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,,2,118659,1,3,0,0,2,,220.0,,42,1.0,5.0,4.0,2.0,1.5,1,1,117.0547500142049,599.0,42174.38682603699,1,5,1,2,65.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017475061416779198,28116.25788402466,8,4,8,8_1,8_2,8_0_1 -4900,0,53.0,0.0,7,112,180.0,,,85,11,0.0,0.0,,309.0,221.92218354053472,,10,0,0,0,0,0,0,0,0,0,,1,,5,120143,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,131.27644082968118,180.0,7586.1618802736175,6,1,5,0,60.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04073205988439242,5057.441253515745,1,1,1_0,1_1_0,1_2_0,1_0_0 -4903,2,34.0,0.0,5,112,350.0,,,0,81,0.0,0.0,,626.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,0,,1,,3,107606,1,3,0,0,2,,304.0,,32,1.0,2.0,3.0,3.0,1.8,1,1,109.64160393242207,350.0,14562.58961374443,0,4,0,1,32.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04298685993383829,8090.32756319135,1,1,1_0,1_1_0,1_2_0,1_0_0 -4904,2,68.0,0.0,7,112,660.0,,,0,52,0.0,0.0,,706.0,79.13504219274881,,71,0,0,0,0,0,0,0,0,0,,1,,5,125179,2,1,0,0,2,,425.0,800.0,12,1.0,2.0,4.0,1.0,1.0,1,1,134.64279329562788,660.0,64463.10497975908,0,1,2,3,80.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010952001152002818,64463.10497975908,10,5,10,10_1,10_2,10_0_0 -4905,2,74.0,0.0,5,112,200.0,,,0,75,0.0,0.0,,244.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,,3,110081,1,3,0,0,2,,0.0,350.0,11,0.0,0.0,3.0,1.0,1.0,2,1,142.93958256665306,200.0,19378.31406039009,0,5,2,3,33.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012591394650721654,19378.31406039009,5,3,5,5_1,5_2,5_0_0 -4906,2,47.0,0.0,8,112,438.0,,,0,11,0.0,0.0,,526.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,120259,2,1,0,0,2,,221.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,131.32889291987064,438.0,42732.60080765141,0,1,0,1,81.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012309103355717539,42732.60080765141,9,5,9,9_1,9_2,9_0_0 -4907,2,64.0,0.0,7,112,263.0,,,0,75,0.0,0.0,,329.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,1,,5,119991,2,1,0,0,2,,180.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,111.66216820331185,263.0,28138.8878460103,0,5,0,1,73.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01169200438199435,28138.8878460103,8,4,8,8_1,8_2,8_0_0 -4908,1,28.0,467.0,9,112,0.0,,,0,85,0.0,0.0,,788.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,115787,2,1,0,0,2,,314.0,700.0,31,0.0,0.0,4.0,4.0,1.9,2,2,182.05486627838408,0.0,14702.0,0,6,2,3,90.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05359814991157666,7737.894736842106,1,1,1_1,1_1_1,1_2_1,1_0_0 -4909,2,73.0,0.0,7,112,180.0,,,0,78,0.0,0.0,,246.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,1,,5,120363,1,1,0,0,2,,96.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,109.99581779835898,180.0,14117.818707151957,0,5,0,1,107.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01742478814205049,14117.818707151957,3,2,3_0,3_1_0,3_2_0,3_0_0 -4910,2,51.0,0.0,6,112,754.0,,,63,56,0.0,103.51725048194578,,1084.0,395.67521096374406,,43,0,0,0,0,0,0,0,0,0,,1,,4,130336,2,1,0,0,2,,360.0,,43,4.0,0.0,7.0,7.0,4.0,2,2,112.27251972928943,754.0,18301.796818832914,4,1,0,1,99.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059229157154916195,4575.4492047082285,1,1,1_0,1_1_0,1_2_0,1_0_0 -4911,2,30.0,0.0,6,112,450.0,,,0,64,0.0,0.0,,580.0,223.64251054472493,,50,0,0,0,0,0,0,0,0,0,,1,,4,110833,2,1,0,0,2,,245.0,,22,3.0,0.0,5.0,4.0,2.5,1,1,115.62818434823947,450.0,9377.727148191152,0,1,0,1,75.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0618486751463946,3751.090859276461,1,1,1_0,1_1_0,1_2_0,1_0_0 -4912,2,40.0,0.0,8,112,236.0,,,85,11,0.0,0.0,,302.0,113.54158227655265,,43,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,126853,2,1,0,0,2,,204.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,129.9739502457755,236.0,17565.806669196212,6,1,0,1,120.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01719249253321192,8364.669842474386,1,1,1_0,1_1_0,1_2_0,1_0_0 -4913,2,66.0,0.0,8,111,480.0,,,85,55,0.0,0.0,,664.0,316.54016877099525,,44,0,0,0,0,0,0,0,0,0,,1,2001.0,6,105566,2,1,0,0,2,,240.0,,42,1.0,0.0,3.0,3.0,2.0,2,2,97.26204274813641,480.0,9406.586299854878,6,1,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07058883837702568,4703.293149927439,1,1,1_0,1_1_0,1_2_0,1_0_0 -4914,2,30.0,0.0,6,111,720.0,,,38,42,0.0,0.0,,813.0,159.99041138968784,,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,131781,2,1,0,0,2,,260.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,114.67464562361955,720.0,64011.058101044335,1,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01270093049730006,35561.69894502463,9,5,9,9_1,9_2,9_0_0 -4915,2,48.0,0.0,8,111,480.0,,,0,85,0.0,0.0,,526.0,79.13504219274881,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,132999,2,1,0,0,2,,385.0,,31,0.0,0.0,4.0,2.0,1.5,2,2,106.80587694970559,480.0,5822.169495002925,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09034432962686115,3881.44633000195,1,1,1_0,1_1_0,1_2_0,1_0_0 -4916,1,59.0,523.0,7,111,694.0,,,0,56,0.0,0.0,,838.0,247.7270886033876,,50,0,0,0,0,0,0,0,0,0,,1,,5,129902,2,2,0,0,2,,550.0,483.0,32,1.0,3.0,4.0,2.0,1.5,2,2,119.22543118545771,694.0,12492.73605397606,0,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0670789806475812,8328.490702650706,1,1,1_1,1_1_1,1_2_1,1_0_0 -4917,1,64.0,225.0,7,111,408.0,,,0,77,0.0,0.0,,500.0,158.27008438549763,,70,0,0,0,0,0,0,0,0,0,,2,,5,129173,2,2,0,0,2,,217.0,227.0,11,0.0,2.0,1.0,1.0,1.0,2,2,106.31952129769589,408.0,6082.54255319149,0,6,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08220246642379044,6082.54255319149,1,1,1_1,1_0_1,1_2_1,1_0_0 -4918,1,51.0,472.0,7,111,394.0,,,0,81,0.0,0.0,,658.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,2,,5,129039,2,2,0,0,2,,397.0,405.0,32,3.0,0.0,4.0,3.0,2.0,2,2,117.02668356997007,394.0,17820.209287076537,0,4,2,3,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03692436993302827,8910.104643538269,1,1,1_1,1_0_1,1_2_1,1_0_0 -4919,1,41.0,307.0,7,111,378.0,,,85,64,0.0,0.0,,498.0,206.439240502823,,33,0,0,0,0,0,0,0,0,0,,1,,5,129586,2,3,0,0,2,,320.0,446.0,42,1.0,0.0,3.0,3.0,2.0,1,1,112.776624561391,378.0,17002.47743702247,6,4,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029289849190778365,8501.238718511235,1,1,1_1,1_1_1,1_2_1,1_0_0 -4920,1,32.0,418.0,7,111,790.0,,,81,52,0.0,0.0,,1040.0,430.0817510475479,,41,0,0,0,0,0,0,0,0,0,,2,,5,117805,2,1,0,0,2,,472.0,469.0,43,2.0,0.0,4.0,5.0,2.4,1,1,119.33756328955812,790.0,16081.371226005616,4,4,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06467110207108384,6700.571344169007,1,1,1_1,1_0_1,1_2_1,1_0_0 -4921,1,45.0,468.0,7,111,374.0,,,0,81,0.0,0.0,,574.0,344.06540083803833,,10,0,0,0,0,0,0,0,0,0,,1,,5,119826,1,2,0,0,2,,425.0,534.0,32,1.0,0.0,4.0,4.0,2.1,2,2,121.56037229613749,374.0,17785.14953963517,0,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03227411716279415,8469.1188283977,1,1,1_1,1_1_1,1_2_1,1_0_0 -4922,2,44.0,0.0,7,111,489.6,,,46,34,0.0,0.0,,513.0,39.567521096374406,,30,0,0,0,0,0,0,0,0,2,5.0,1,,5,128454,2,1,0,0,1,,468.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,137.9070975329651,489.6,72877.72265489462,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007039188126517917,48585.14843659641,10,5,10,10_1,10_2,10_0_0 -4923,1,48.0,453.0,7,111,366.0,,,0,85,0.0,0.0,,654.0,495.4541772067752,,50,0,0,0,0,0,0,0,0,0,,2,,5,128788,2,2,0,0,2,,680.0,551.0,31,2.0,2.0,4.0,7.0,3.6,1,1,124.94541879663453,366.0,25203.157540337226,0,6,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025949129546696047,7000.877094538118,1,1,1_1,1_0_1,1_2_1,1_0_0 -4924,1,47.0,498.0,7,111,480.0,,,85,52,0.0,0.0,,1010.0,911.7733122208016,,42,0,0,0,0,0,0,0,0,0,,2,,5,113548,2,2,0,0,2,,1200.0,593.0,42,2.0,1.0,4.0,8.0,3.8999999999999995,2,2,118.55226823896649,480.0,39392.71381381638,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025639259198378922,10100.695849696509,2,1,2_1,2_0_1,2_2_1,2_0_0 -4925,2,57.0,0.0,6,111,472.0,,,78,63,0.0,0.0,,725.0,435.2427320601185,,20,0,0,0,0,0,0,0,0,1,10.0,1,,4,113616,2,1,0,0,2,,352.0,,42,2.0,2.0,4.0,3.0,2.0,1,1,102.11997764620034,472.0,42697.772628097475,5,1,0,1,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01697980843906856,21348.886314048737,6,3,6,6_1,6_2,6_0_0 -4926,2,45.0,0.0,5,111,380.0,,,52,52,0.0,0.0,,468.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,109133,2,2,0,0,2,,293.0,103.0,43,2.0,3.0,3.0,4.0,2.1,1,1,109.70512650959827,380.0,28832.409433493955,4,1,3,4,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016231733982534774,13729.718777854263,3,2,3_0,3_1_0,3_2_0,3_0_0 -4927,2,48.0,0.0,9,111,460.0,,,54,67,0.0,0.0,,690.0,395.67521096374406,,20,0,0,0,0,0,0,0,0,0,,1,2011.0,6,132082,2,1,0,0,2,,561.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,170.90861602495252,460.0,38989.0,4,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017697299238246686,16951.739130434784,4,2,4_0,4_1_0,4_2_0,4_0_0 -4928,2,34.0,0.0,2,111,435.0,,,0,47,0.0,0.0,,711.0,474.81025315649293,,10,0,0,0,0,0,0,0,0,0,,1,,2,109258,2,1,0,0,2,,380.0,,22,2.0,0.0,4.0,4.0,2.5,1,1,112.1974176562404,435.0,28576.07547738546,0,1,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02488095331924327,11430.430190954185,2,1,2_0,2_1_0,2_2_0,2_0_1 -4929,2,77.0,0.0,5,111,310.0,,,0,77,0.0,0.0,,442.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,,3,118476,2,1,0,0,2,,680.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,108.8310868183632,310.0,10599.89936544226,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041698509085945315,10599.89936544226,2,1,2_0,2_1_0,2_2_0,2_0_0 -4930,1,23.0,414.0,9,111,0.0,,,0,85,0.0,0.0,,584.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,2004.0,6,107983,2,2,0,0,2,,1059.0,600.0,31,0.0,0.0,3.0,3.0,1.6,1,1,114.90903000001705,0.0,9374.262997176547,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.062298230823681404,5858.914373235341,1,1,1_1,1_0_1,1_2_1,1_0_0 -4931,2,39.0,0.0,8,112,489.0,,,46,38,0.0,0.0,,533.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,104658,2,1,0,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,110.96946868402787,489.0,109592.69624325648,1,1,1,2,90.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004863462787857059,52186.99821107451,10,5,10,10_1,10_2,10_0_0 -4932,1,34.0,413.0,8,112,364.0,,,85,64,0.0,0.0,,484.0,206.439240502823,,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,107341,2,3,0,0,2,,390.0,437.0,42,1.0,0.0,3.0,5.0,2.4,1,1,113.74871999809903,364.0,18337.59337572664,6,1,2,3,53.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026393866964062353,7640.663906552767,1,1,1_1,1_1_1,1_2_1,1_0_0 -4933,1,35.0,310.0,8,112,550.0,,,85,63,0.0,0.0,,638.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,2,2000.0,6,115854,2,2,0,0,2,,239.0,390.0,42,1.0,0.0,3.0,5.0,2.4,1,1,110.40026801177076,550.0,25162.772784992216,6,4,2,3,50.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02535491638586512,10484.488660413424,2,1,2_1,2_0_1,2_2_1,2_0_0 -4934,2,40.0,0.0,8,112,793.0,,,42,42,0.0,0.0,,931.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,116915,2,1,0,0,2,,1140.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,2,2,128.53246185239928,793.0,112473.83819039726,1,1,1,2,156.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008277480478829133,43259.168534768185,9,5,9,9_1,9_2,9_0_0 -4935,1,38.0,46.0,8,112,240.0,,,0,54,0.0,0.0,,284.0,75.69438818436844,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,108258,2,2,0,0,2,,327.0,401.0,32,1.0,0.0,3.0,2.0,1.5,2,2,123.46024862803598,240.0,25181.04873867619,0,4,2,3,59.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011278322954190444,16787.365825784127,4,2,4_1,4_1_1,4_2_1,4_0_0 -4936,2,52.0,0.0,7,112,398.0,,,68,85,0.0,0.0,,926.0,908.3326582124212,,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,115934,2,1,0,0,2,,312.0,,42,2.0,1.0,4.0,4.0,2.5,2,2,109.1775339089816,398.0,21524.042491316704,1,7,0,1,78.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043021658239783246,8609.616996526682,1,1,1_0,1_1_0,1_2_0,1_0_0 -4937,2,57.0,0.0,9,112,960.0,,,42,33,0.0,0.0,,1032.0,123.8635443016938,,41,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,109977,2,1,0,0,2,,484.0,1000.0,43,2.0,2.0,4.0,3.0,1.8,1,1,128.66893521388297,960.0,82012.6120503995,1,1,2,3,123.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012583430452938157,45562.56225022195,10,5,10,10_1,10_2,10_0_0 -4938,2,48.0,0.0,2,112,400.0,,,0,11,0.0,0.0,,900.0,860.1635020950959,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,120260,2,2,0,0,2,,390.0,,22,5.0,0.0,4.0,5.0,3.0,1,1,118.62739206396417,400.0,30657.712356560132,0,1,0,1,90.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02935639781379246,10219.237452186711,2,1,2_0,2_1_0,2_2_0,2_0_1 -4939,2,61.0,0.0,5,112,638.0,,,0,56,0.0,0.0,,726.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,105396,2,3,0,0,2,,373.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,109.95758487134063,638.0,27559.0,0,1,0,1,65.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026343481258391088,27559.0,7,4,7,7_1,7_2,7_0_0 -4940,1,42.0,485.0,7,112,390.0,,,0,81,0.0,0.0,,478.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,2,,5,130181,2,3,0,0,2,,460.0,471.0,32,3.0,0.0,4.0,5.0,2.5999999999999996,1,1,146.44724240964234,390.0,25121.691266531267,0,4,2,3,40.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01902738135456757,9662.188948665873,1,1,1_1,1_0_1,1_2_1,1_0_0 -4941,1,55.0,357.0,7,112,429.0,,,0,63,0.0,0.0,,649.0,378.4719409218422,,33,0,0,0,0,0,0,0,0,0,,2,,5,105230,2,2,0,0,2,,326.0,425.0,32,1.0,4.0,3.0,2.0,1.3,2,2,139.86169630150505,429.0,8246.041959928256,0,4,2,3,35.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07870442609361238,6343.109199944812,1,1,1_1,1_0_1,1_2_1,1_0_0 -4942,1,31.0,357.0,7,112,0.0,,,85,62,0.0,0.0,,488.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,108564,2,1,0,0,2,,388.0,490.0,42,1.0,0.0,3.0,5.0,2.4,2,2,127.26270375977472,0.0,26388.160868485542,6,4,2,3,38.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01849314177036117,10995.067028535643,2,1,2_1,2_0_1,2_2_1,2_0_0 -4943,1,32.0,414.0,9,112,380.0,,,0,55,0.0,0.0,,425.0,77.41471518855863,,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,118919,2,2,0,0,2,,260.0,471.0,32,1.0,0.0,3.0,3.0,1.6,4,3,124.94408713017455,380.0,18247.96144561299,0,4,2,3,32.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02329027279385088,11404.975903508117,2,1,2_1,2_0_1,2_2_1,2_0_0 -4944,1,39.0,533.0,7,112,820.0,,,0,63,0.0,0.0,,1086.0,457.606983114591,,42,0,0,0,0,0,0,0,0,0,,2,,5,123006,2,2,0,0,2,,654.0,506.0,32,1.0,0.0,5.0,7.0,3.3999999999999995,1,1,125.33170360004269,820.0,32930.61706438125,0,4,2,3,80.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03297842849032581,9685.475607170958,1,1,1_1,1_0_1,1_2_1,1_0_0 -4945,1,56.0,253.0,7,112,0.0,,,0,64,0.0,0.0,,471.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,5,108711,2,2,0,0,2,,508.0,450.0,12,1.0,4.0,2.0,1.0,1.0,4,4,130.74357681086866,0.0,7329.993278872613,0,4,2,3,62.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06425653913729673,7329.993278872613,1,1,1_1,1_1_1,1_2_1,1_0_0 -4946,2,41.0,0.0,2,112,480.0,,,0,63,0.0,0.0,,600.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,1,,2,116327,2,1,0,0,2,,320.0,,12,1.0,0.0,8.0,1.0,1.0,2,2,111.19845920042377,480.0,7248.350766989237,0,4,0,1,106.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08277745093857031,7248.350766989237,1,1,1_0,1_1_0,1_2_0,1_0_1 -4947,2,51.0,0.0,7,112,248.0,,,0,52,0.0,0.0,,668.0,722.5373417598805,,50,0,0,0,0,0,0,0,0,0,,1,,5,107765,2,2,0,0,2,,226.0,,32,1.0,1.0,3.0,4.0,2.1,2,2,102.34936750818241,248.0,18889.524226198337,0,4,0,1,83.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03536351641263334,8995.011536284921,1,1,1_0,1_1_0,1_2_0,1_0_0 -4948,2,76.0,0.0,2,112,272.0,,,0,77,0.0,0.0,,516.0,419.7597890224068,,20,0,0,0,0,0,0,0,0,0,,1,,2,108609,1,1,0,0,2,,250.0,,21,1.0,8.0,4.0,2.0,1.5,1,1,104.45642282191864,272.0,10847.479873072167,0,5,0,1,85.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047568652446262724,7231.653248714778,1,1,1_0,1_1_0,1_2_0,1_0_1 -4949,2,27.0,0.0,7,112,0.0,,,63,85,0.0,0.0,,1483.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,5,129155,2,2,0,0,2,,815.0,600.0,42,1.0,0.0,4.0,3.0,1.8,2,2,124.35570745942026,0.0,23626.274857597666,4,6,2,3,64.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06276909961212533,13125.708254220925,2,1,2_0,2_1_0,2_2_0,2_0_0 -4951,1,27.0,413.0,9,112,4424.0,,,43,67,0.0,0.0,,4562.0,237.40512657824647,,10,0,0,0,0,0,0,0,0,0,,1,2004.0,6,115271,2,2,0,0,2,,320.0,433.0,43,2.0,0.0,3.0,4.0,2.1,4,3,108.26337213958669,4424.0,26968.879611328546,4,1,2,3,44.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.16915793558156145,12842.323624442164,2,1,2_1,2_1_1,2_2_1,2_0_0 -4952,1,43.0,288.0,9,112,314.0,,,22,52,0.0,0.0,,446.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,102862,2,3,0,0,2,,269.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,105.68774179308132,314.0,30734.6675792896,4,4,1,2,69.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014511300597262189,15367.3337896448,3,2,3_1,3_1_1,3_2_1,3_0_0 -4953,0,64.0,0.0,6,112,214.0,,,0,78,0.0,0.0,,368.0,264.9303586452895,,50,0,0,0,0,0,0,0,0,0,,1,,4,133675,2,2,0,0,2,,170.0,,21,3.0,0.0,5.0,6.0,3.5,1,1,116.97200302238691,214.0,21311.800647271582,0,5,5,0,68.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01726742878702334,6089.085899220452,1,1,1_0,1_1_0,1_2_0,1_0_0 -4954,2,57.0,0.0,7,112,610.0,,,45,45,0.0,0.0,,779.0,290.7352637081424,,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,113583,2,1,0,0,2,,548.0,,43,2.0,1.0,7.0,4.0,2.3,2,2,117.13631949422533,610.0,132051.58310698153,1,1,0,1,94.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005899209851720547,57413.73178564415,10,5,10,10_1,10_2,10_0_0 -4955,1,45.0,300.0,7,112,0.0,,,56,85,0.0,0.0,,1266.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,100221,2,2,0,0,2,,485.0,380.0,42,1.0,0.0,3.0,3.0,1.8,1,1,117.89822017817362,0.0,9242.82688353784,4,7,2,3,60.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13697108211069492,5134.903824187689,1,1,1_1,1_1_1,1_2_1,1_0_0 -4956,2,28.0,0.0,1,112,0.0,,,0,53,0.0,0.0,,918.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,1,114209,2,2,0,0,2,,250.0,700.0,32,1.0,0.0,4.0,2.0,1.3,1,1,139.94033316958865,0.0,18833.136101449734,0,1,2,3,70.0,7,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048743873301554615,14487.027770345949,3,2,3_0,3_1_0,3_2_0,3_1_0 -4957,2,39.0,0.0,9,112,1080.0,,,42,34,0.0,0.0,,1168.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,100528,2,2,0,0,1,,532.0,,43,2.0,0.0,5.0,4.0,2.1,2,1,110.39383663872722,1080.0,90362.7303010906,1,1,1,2,150.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012925682923791681,43029.87157194791,9,5,9,9_1,9_2,9_0_0 -4958,1,45.0,15.0,9,112,720.0,,,63,63,0.0,0.0,,858.0,237.40512657824647,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,127564,2,2,0,0,1,,680.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,1,1,111.19297240574735,720.0,43755.15993023962,1,1,1,2,104.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01960911584754665,14114.567719432138,3,2,3_1,3_1_1,3_2_1,3_0_0 -4959,2,42.0,0.0,7,112,550.0,,,56,48,0.0,0.0,,616.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,111914,2,2,0,0,2,,397.0,700.0,43,3.0,0.0,4.0,5.0,2.8,3,3,115.62818434823947,550.0,52175.697948590925,1,1,2,3,80.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011806262766373515,18634.177838782474,4,2,4_0,4_1_0,4_2_0,4_0_0 -4960,2,68.0,0.0,7,112,950.0,,,52,74,0.0,0.0,,1370.0,722.5373417598805,,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,125919,2,1,0,0,2,,430.0,800.0,42,2.0,0.0,4.0,3.0,2.0,2,2,124.62835615763215,950.0,105271.44275319081,1,5,2,3,103.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013013975720005745,52635.72137659541,10,5,10,10_1,10_2,10_0_0 -4961,2,62.0,0.0,8,112,260.0,,,77,11,0.0,0.0,,524.0,454.1663291062106,,10,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107251,2,1,0,0,2,,590.0,,42,1.0,7.0,3.0,2.0,1.5,2,2,138.5306329090352,260.0,5603.91811414392,5,1,0,1,62.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09350600585641294,3735.94540942928,1,1,1_0,1_1_0,1_2_0,1_0_0 -4962,2,36.0,0.0,9,112,0.0,,,65,54,0.0,0.0,,1417.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,117547,2,1,0,0,2,,346.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,104.56654730623431,0.0,42965.82962178597,1,1,1,2,147.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032979696015959285,20459.918867517128,5,3,5,5_1,5_2,5_0_0 -4963,0,81.0,0.0,2,112,204.0,,,86,78,0.0,0.0,,292.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,2,131739,2,2,0,0,2,,252.0,,41,0.0,4.0,4.0,2.0,1.5,3,2,119.55545417074659,204.0,25276.002548784276,6,5,5,0,88.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011552459667481897,16850.668365856185,4,2,4_0,4_1_0,4_2_0,4_0_1 -4964,0,38.0,0.0,6,112,240.0,,,69,81,0.0,0.0,,1296.0,1816.6653164248423,,50,0,0,0,0,0,0,0,0,0,,1,,4,111368,1,2,0,0,2,,232.0,,43,2.0,1.0,3.0,4.0,2.3,3,3,132.1770093197208,240.0,14102.399759674841,4,4,5,0,72.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0918992527573819,6131.478156380366,1,1,1_0,1_1_0,1_2_0,1_0_0 -4965,2,66.0,0.0,6,112,396.0,,,0,77,0.0,0.0,,462.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,1,,4,124161,2,1,0,0,2,,295.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,113.99497844659733,396.0,33010.909710183034,0,5,0,1,62.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013995373167722326,33010.909710183034,8,4,8,8_1,8_2,8_0_0 -4966,2,67.0,0.0,7,112,432.0,,,0,78,0.0,0.0,,501.0,118.70256328912323,,41,0,0,0,0,0,0,0,0,0,,1,,5,100243,2,2,0,0,2,,0.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,113.99497844659733,432.0,18516.473594765102,0,5,0,1,80.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027056987791759687,18516.473594765102,4,2,4_0,4_1_0,4_2_0,4_0_0 -4967,2,62.0,0.0,7,111,648.0,,,0,75,0.0,0.0,,648.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,5,131917,2,2,0,0,2,,558.0,566.0,11,0.0,1.0,5.0,1.0,1.0,1,1,103.36737138873625,648.0,23765.0207258027,0,5,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027266965490016958,23765.0207258027,6,3,6,6_1,6_2,6_0_0 -4968,1,43.0,298.0,9,111,0.0,,,0,22,0.0,0.0,,775.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,133667,2,3,0,0,2,,126.0,700.0,32,1.0,0.0,4.0,3.0,1.8,1,1,115.48168074557692,0.0,4890.96768371036,0,4,2,3,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15845535078491332,2717.2042687279777,1,1,1_1,1_1_1,1_2_1,1_0_0 -4969,1,34.0,273.0,6,111,600.0,,,85,52,0.0,0.0,,776.0,302.77755273747374,,50,0,0,0,0,0,0,0,0,0,,1,,4,118598,2,1,0,0,2,,160.0,500.0,42,1.0,1.0,5.0,4.0,2.1,1,1,120.02745462626801,600.0,24578.18065046651,6,1,2,3,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03157271935769872,11703.895547841195,2,1,2_1,2_1_1,2_2_1,2_0_0 -4970,2,50.0,0.0,6,111,864.0,,,0,42,0.0,0.0,,952.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,113554,2,1,0,0,1,,128.0,770.0,12,1.0,0.0,4.0,1.0,1.0,1,1,130.5947344965228,864.0,53601.0,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017760862670472565,53601.0,10,5,10,10_1,10_2,10_0_0 -4971,1,49.0,357.0,8,111,720.0,,,68,48,0.0,0.0,,852.0,227.0831645531053,,44,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107530,2,1,0,0,2,,300.0,548.0,43,4.0,0.0,5.0,6.0,3.3,1,1,118.82257641752668,720.0,28592.247734704542,1,4,2,3,89.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02979828686101737,8664.317495365014,1,1,1_1,1_1_1,1_2_1,1_0_0 -4972,2,39.0,0.0,7,111,720.0,,,42,21,0.0,0.0,,984.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,5,132117,2,2,0,0,2,,320.0,,43,2.0,5.0,4.0,5.0,2.8,1,1,96.2563870112737,720.0,54228.98493671791,4,1,0,1,55.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018145277864748365,19367.4946202564,5,3,5,5_1,5_2,5_0_0 -4973,0,36.0,0.0,6,111,400.0,,,0,55,0.0,0.0,,466.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,1,2.0,1,,4,101791,1,1,0,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,96.57811604583853,400.0,9397.613391464174,0,1,5,0,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04958705796763958,9397.613391464174,1,1,1_0,1_1_0,1_2_0,1_0_0 -4975,1,42.0,241.0,5,111,480.0,,,62,54,0.0,0.0,,546.0,113.54158227655265,,70,0,0,0,0,0,0,0,0,0,,1,,3,118138,2,1,0,0,2,,480.0,650.0,43,2.0,0.0,4.0,4.0,2.1,1,1,100.68959754565492,480.0,29166.020079877526,4,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01872041500707534,13888.58099041787,3,2,3_1,3_1_1,3_2_1,3_0_0 -4976,2,30.0,0.0,2,111,300.0,,,0,48,0.0,0.0,,435.0,232.24414556567586,,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,124443,2,2,0,0,1,,180.0,194.0,12,1.0,3.0,1.0,1.0,1.0,2,2,101.37050404648065,300.0,15046.248664380748,0,1,2,3,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028910860753603204,15046.248664380748,3,2,3_0,3_0_0,3_2_0,3_0_1 -4977,1,41.0,407.0,8,111,673.0,,,0,85,0.0,0.0,,799.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,2,2003.0,6,127078,1,1,0,0,2,,900.0,402.0,31,0.0,0.0,3.0,3.0,2.0,2,2,92.68435573452592,673.0,10748.890055538162,0,6,2,3,52.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07433325635220638,5374.445027769081,1,1,1_1,1_0_1,1_2_1,1_0_0 -4978,1,45.0,631.0,8,111,466.0,,,0,85,0.0,0.0,,718.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,110018,2,1,0,0,1,,960.0,700.0,31,0.0,2.0,3.0,7.0,3.1999999999999993,2,2,99.13770494394376,466.0,28614.708603713334,0,6,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025091990624249275,8942.09643866042,1,1,1_1,1_0_1,1_2_1,1_0_0 -4979,1,56.0,240.0,7,111,0.0,,,0,56,0.0,0.0,,88.0,151.38877636873687,,44,0,0,0,0,0,0,0,0,3,90.0,2,,5,118429,2,1,0,0,2,,180.0,540.0,12,1.0,3.0,3.0,1.0,1.0,2,2,104.75971319335117,0.0,8252.176072801878,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010663853900310829,8252.176072801878,1,1,1_1,1_0_1,1_2_1,1_0_0 -4980,2,65.0,0.0,1,111,750.0,,,86,78,0.0,0.0,,838.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,0,,1,,1,130702,2,3,0,0,2,,882.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,94.34594188731907,750.0,18654.65777720882,6,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04492175680777268,12436.438518139214,2,1,2_0,2_1_0,2_2_0,2_1_0 -4981,2,38.0,0.0,8,111,450.0,,,22,22,0.0,0.0,,538.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,121963,2,1,0,0,2,,250.0,,43,3.0,0.0,4.0,4.0,2.3,1,1,84.93960350946205,450.0,9446.855966306426,1,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056950164363556995,4107.328681002794,1,1,1_0,1_1_0,1_2_0,1_0_0 -4982,1,44.0,75.0,5,111,1200.0,,,0,45,0.0,0.0,,1200.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,125216,1,3,0,0,1,,342.0,460.0,32,1.0,0.0,4.0,2.0,1.5,2,2,82.83219067217998,1200.0,31074.872445027864,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03861640951617184,20716.581630018576,5,3,5,5_1,5_2,5_0_0 -4983,0,80.0,0.0,2,111,360.0,,,86,77,0.0,0.0,,486.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,2,120675,2,1,0,0,2,,720.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,82.83219067217998,360.0,19244.480629907077,6,5,0,1,109.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025253994085178214,12829.653753271385,2,1,2_0,2_1_0,2_2_0,2_0_1 -4984,2,46.0,0.0,8,111,600.0,,,68,56,0.0,0.0,,852.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,117422,2,1,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,84.93960350946205,600.0,19552.439704759414,4,1,0,1,104.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04357512478571193,8501.060741199746,1,1,1_0,1_1_0,1_2_0,1_0_0 -4985,2,55.0,0.0,7,111,1000.0,,,0,71,0.0,0.0,,1132.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,126859,2,2,0,0,2,,500.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,86.22031642348182,1000.0,22102.7898287267,0,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0512152542177619,14735.193219151135,3,2,3_0,3_1_0,3_2_0,3_0_0 -4986,2,99.0,0.0,9,111,324.0,,,0,77,0.0,0.0,,462.0,237.40512657824647,,70,0,0,0,0,0,0,0,0,0,,1,2009.0,6,103729,2,1,0,0,2,,200.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,145.9762827959925,324.0,22598.421747598877,0,5,0,1,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020443905559426438,15065.61449839925,3,2,3_0,3_1_0,3_2_0,3_0_0 -4987,2,82.0,0.0,2,111,160.0,,,0,72,0.0,0.0,,424.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,2,113441,1,2,0,0,2,,200.0,,21,2.0,4.0,4.0,3.0,2.0,1,1,86.22031642348182,160.0,23799.092205421635,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017815805592089316,11899.546102710818,2,1,2_0,2_1_0,2_2_0,2_0_1 -4988,1,31.0,467.0,7,111,0.0,,,0,81,0.0,0.0,,265.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,5,129597,2,1,0,0,1,,539.0,600.0,32,1.0,0.0,4.0,4.0,1.9,2,2,99.95590778672522,0.0,16261.26574684098,0,4,2,3,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01629639439669576,8558.560919389989,1,1,1_1,1_0_1,1_2_1,1_0_0 -4989,2,45.0,0.0,7,111,700.0,,,52,54,0.0,0.0,,940.0,412.878481005646,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,119784,2,3,0,0,2,,250.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,100.7411032137526,700.0,105370.34300729008,1,1,1,2,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008920916200633093,43904.309586370866,10,5,10,10_1,10_2,10_0_0 -4990,1,40.0,40.0,8,111,240.0,,,0,62,0.0,0.0,,328.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,103945,2,2,0,0,2,,169.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,87.59949796143475,240.0,27120.271321428936,0,1,1,2,55.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.012094274283341427,13560.135660714468,3,2,3_1,3_1_1,3_2_1,3_0_0 -4991,0,76.0,0.0,5,111,300.0,,,77,78,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,132688,2,2,0,0,2,,350.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,106.40880997189042,300.0,17616.34334825081,5,5,5,0,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017029640832346062,11744.228898833875,2,1,2_0,2_1_0,2_2_0,2_0_0 -4992,1,45.0,60.0,9,111,1000.0,,,0,55,0.0,0.0,,1090.0,154.82943037711726,,71,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,106332,2,1,0,0,2,,378.0,800.0,32,1.0,1.0,4.0,3.0,1.8,1,1,101.94846056438989,1000.0,30824.55063367273,0,1,2,3,103.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03536142385184634,17124.750352040406,4,2,4_1,4_1_1,4_2_1,4_0_0 -4993,2,47.0,0.0,6,111,400.0,,,0,63,0.0,0.0,,652.0,433.5224050559283,,41,0,0,0,0,0,0,0,0,0,,1,,4,104806,1,3,0,0,2,,600.0,,22,1.0,5.0,4.0,2.0,1.5,2,2,96.2563870112737,400.0,35438.302600472816,0,4,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018398172377231778,23625.535066981876,6,3,6,6_1,6_2,6_0_0 -4994,2,45.0,0.0,7,111,3500.0,,,11,21,0.0,0.0,,3600.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,112197,2,1,0,0,1,,1500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,107.9277956517961,3500.0,50849.27838522525,1,1,0,1,149.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07079746486719102,19557.414763548175,5,3,5,5_1,5_2,5_0_0 -4995,2,76.0,0.0,2,111,1600.0,,,0,86,0.0,0.0,,1864.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,1,,2,103177,2,3,0,0,2,,800.0,,11,0.0,8.0,3.0,1.0,1.0,2,2,89.6972956834616,1600.0,3927.077945321832,0,5,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.47465317112447625,3927.077945321832,1,1,1_0,1_1_0,1_2_0,1_0_1 -4996,2,84.0,0.0,6,111,720.0,,,86,78,0.0,0.0,,984.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,4,110576,1,1,0,0,2,,360.0,,41,1.0,0.0,4.0,3.0,2.0,1,1,87.58074375002425,720.0,62275.27717206595,6,5,0,1,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015800812853569775,31137.638586032976,8,4,8,8_1,8_2,8_0_0 -4997,2,80.0,0.0,6,111,450.0,,,0,78,0.0,0.0,,978.0,908.3326582124212,,71,0,0,0,0,0,0,0,0,0,,1,,4,112692,2,2,0,0,2,,200.0,,21,2.0,6.0,7.0,3.0,2.0,1,1,89.35960117878267,450.0,11985.879278714681,0,5,0,1,113.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08159601621691595,5992.939639357341,1,1,1_0,1_1_0,1_2_0,1_0_0 -4998,2,49.0,0.0,7,111,300.0,,,0,42,0.0,0.0,,564.0,454.1663291062106,,70,0,0,0,0,0,0,0,0,0,,1,,5,132494,2,2,0,0,2,,160.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,94.0005888680221,300.0,5316.9264452790285,0,4,0,1,92.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10607632168783965,5316.9264452790285,1,1,1_0,1_1_0,1_2_0,1_0_0 -4999,0,33.0,0.0,5,111,372.0,,,52,23,0.0,0.0,,624.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,1,20.0,1,,3,111127,2,2,0,0,2,,180.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,105.18358716580371,372.0,12486.322784810127,1,1,5,0,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04997468115745887,6936.845991561181,1,1,1_0,1_1_0,1_2_0,1_0_0 -5000,1,21.0,289.0,5,111,440.0,,,0,47,0.0,0.0,,692.0,433.5224050559283,,41,0,0,0,0,0,0,0,0,0,,1,,3,117396,2,2,0,0,2,,420.0,296.0,22,2.0,3.0,5.0,3.0,2.0,2,2,102.64103425670334,440.0,28698.343264290226,0,4,2,3,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024112890198127426,14349.171632145113,3,2,3_1,3_1_1,3_2_1,3_0_0 -5001,1,27.0,533.0,5,111,564.0,,,68,85,0.0,0.0,,696.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,3,111084,2,3,0,0,2,,560.0,670.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,1,1,98.0337885825485,564.0,19819.0835414623,1,6,2,3,57.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03511766820821663,7340.401311652704,1,1,1_1,1_1_1,1_2_1,1_0_0 -5002,2,40.0,0.0,9,111,1080.0,,,42,53,0.0,0.0,,1168.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,110333,2,1,0,0,2,,330.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,154.54924820679963,1080.0,91305.51408921875,1,1,0,1,158.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012792217552805128,43478.816232961304,10,5,10,10_1,10_2,10_0_0 -5003,0,49.0,0.0,7,111,360.0,,,0,52,0.0,0.0,,864.0,867.0448101118566,,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,118553,2,2,0,0,2,,240.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,103.416178851452,360.0,26770.96430442728,0,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032273772067938356,13385.48215221364,3,2,3_0,3_1_0,3_2_0,3_0_0 -5004,2,52.0,0.0,7,111,300.0,,,77,68,0.0,0.0,,420.0,206.439240502823,,60,0,0,0,0,0,0,0,0,0,,1,,5,127119,2,1,0,0,2,,600.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,93.6440359319431,300.0,56032.51371592251,6,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007495648011248341,28016.256857961256,7,4,7,7_1,7_2,7_0_0 -5005,0,38.0,0.0,1,111,1400.0,,,46,37,0.0,0.0,,1450.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,128861,2,1,0,0,2,,150.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,100.81351053654318,1400.0,60784.0300692972,4,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023854950031232197,33768.905594054,9,5,9,9_1,9_2,9_1_0 -5006,0,33.0,0.0,8,111,780.0,,,56,54,0.0,0.0,,868.0,151.38877636873687,,43,0,0,0,0,0,0,0,0,0,,1,2000.0,6,114471,2,2,0,0,2,,840.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,82.73993830067987,780.0,3940.50753034176,1,1,5,0,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22027619369241974,2189.1708501898665,1,1,1_0,1_1_0,1_2_0,1_0_0 -5007,2,52.0,0.0,5,111,1000.0,,,77,63,0.0,0.0,,1264.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,3,109508,2,1,0,0,2,,600.0,,42,2.0,2.0,5.0,6.0,3.0999999999999996,1,1,88.25294086842125,1000.0,67735.79626551928,6,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018660738777547016,21850.256859844932,6,3,6,6_1,6_2,6_0_0 -5008,2,52.0,0.0,6,111,360.0,,,56,85,0.0,0.0,,560.0,344.06540083803833,,50,2,2,2,2,2,2,2,1,0,,1,,4,101407,1,3,0,0,2,,240.0,,42,1.0,1.0,4.0,3.0,2.0,1,1,113.85571091064816,360.0,19850.800000000003,4,7,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.028210449956676806,9925.400000000001,2,1,2_0,2_1_0,2_2_0,2_0_0 -5009,0,25.0,0.0,7,111,200.0,,,85,21,0.0,0.0,,376.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,0,,1,,5,105225,1,2,0,0,2,,220.0,,42,1.0,0.0,3.0,2.0,1.5,1,1,112.72478355236407,200.0,14137.87495968963,6,1,5,0,36.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026595227434962003,9425.24997312642,1,1,1_0,1_1_0,1_2_0,1_0_0 -5010,2,44.0,0.0,8,111,900.0,,,62,43,0.0,0.0,,1032.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113877,1,2,0,0,2,,300.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,87.59949796143475,900.0,14506.175365344468,4,4,0,1,86.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0711421152721942,5802.470146137787,1,1,1_0,1_1_0,1_2_0,1_0_0 -5011,2,90.0,0.0,7,111,280.0,,,0,86,0.0,0.0,,544.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,5,119629,2,1,0,0,2,,230.0,,21,1.0,0.0,3.0,2.0,1.5,1,1,101.82769820391853,280.0,15731.205533596836,0,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03458094796601504,10487.470355731224,2,1,2_0,2_1_0,2_2_0,2_0_0 -5012,1,72.0,60.0,7,111,420.0,,,78,77,0.0,0.0,,684.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,0,,1,,5,118789,2,1,0,0,2,,240.0,600.0,41,0.0,0.0,3.0,2.0,1.5,2,2,100.65151839952688,420.0,10133.67372881356,5,5,2,3,52.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0674977326391662,6755.782485875706,1,1,1_1,1_1_1,1_2_1,1_0_0 -5013,2,56.0,0.0,2,111,900.0,,,56,63,0.0,0.0,,1100.0,344.06540083803833,,33,0,0,0,0,0,0,0,0,0,,1,,2,120947,1,3,0,0,2,,120.0,537.0,43,2.0,1.0,3.0,2.0,1.5,2,2,105.14380846687564,900.0,22224.158256528684,4,4,2,3,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04949568785926271,14816.105504352456,3,2,3_0,3_1_0,3_2_0,3_0_1 -5014,2,58.0,0.0,7,111,576.0,,,0,65,0.0,0.0,,708.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,129294,2,3,0,0,2,,300.0,,32,1.0,1.0,5.0,2.0,1.5,3,3,93.3026856592263,576.0,21438.48693959233,0,1,0,1,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033024718675107353,14292.324626394888,3,2,3_0,3_1_0,3_2_0,3_0_0 -5015,2,53.0,0.0,7,111,720.0,,,85,90,0.0,0.0,,1512.0,1362.4989873186319,,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,124074,2,1,0,0,2,,264.0,,42,2.0,0.0,5.0,4.0,2.5,2,1,93.65446986550147,720.0,53211.626647295074,6,1,1,2,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028414842681319535,21284.650658918028,6,3,6,6_1,6_2,6_0_0 -5016,2,56.0,0.0,9,111,0.0,,,55,63,0.0,0.0,,1235.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,113374,2,1,0,0,2,,223.0,850.0,43,2.0,3.0,4.0,2.0,1.5,1,1,139.94175813250192,0.0,57704.61925032518,4,1,2,3,115.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021402099451389076,38469.74616688345,9,5,9,9_1,9_2,9_0_0 -5017,1,36.0,253.0,2,111,400.0,,,0,85,0.0,0.0,,652.0,433.5224050559283,,60,0,0,0,0,0,0,0,0,0,,2,,2,131040,2,1,0,0,2,,420.0,295.0,11,0.0,2.0,2.0,1.0,1.0,3,3,105.6162475019616,400.0,11935.302251542791,0,7,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05462785828617961,11935.302251542791,2,1,2_1,2_0_1,2_2_1,2_0_1 -5018,1,32.0,240.0,2,111,0.0,,,0,63,0.0,0.0,,378.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,109425,2,1,0,0,2,,156.0,290.0,12,1.0,1.0,1.0,1.0,1.0,2,2,105.6162475019616,0.0,5871.170212765957,0,4,2,3,47.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06438239504249035,5871.170212765957,1,1,1_1,1_0_1,1_2_1,1_0_1 -5019,2,70.0,0.0,5,111,250.0,,,85,75,0.0,0.0,,338.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,2,,3,123249,2,2,0,0,2,,150.0,485.0,41,0.0,1.0,3.0,2.0,1.5,1,1,113.68933768881998,250.0,47729.10286653963,6,5,2,3,38.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007081633211190192,31819.40191102642,8,4,8,8_0,8_2,8_0_0 -5020,1,45.0,413.0,2,111,900.0,,,0,68,0.0,0.0,,1068.0,289.01493670395223,,50,0,0,0,0,0,0,0,0,0,,2,,2,103170,2,1,0,0,2,,540.0,410.0,32,1.0,1.0,4.0,3.0,1.8,2,2,99.6410430932962,900.0,17741.049154323457,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06019937100167104,9856.138419068588,2,1,2_1,2_0_1,2_2_1,2_0_1 -5021,1,68.0,127.0,5,111,540.0,,,0,77,0.0,0.0,,666.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,2,,3,128708,2,3,0,0,2,,350.0,410.0,11,0.0,2.0,3.0,1.0,1.0,1,1,94.40365587054822,540.0,8988.446039344575,0,5,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07409512134631047,8988.446039344575,1,1,1_1,1_0_1,1_2_1,1_0_0 -5022,2,69.0,0.0,9,111,900.0,,,86,78,0.0,0.0,,1404.0,867.0448101118566,,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,104158,1,2,0,0,2,,780.0,,41,1.0,4.0,4.0,4.0,2.5,1,1,95.41721266552292,900.0,26952.68158483166,6,5,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05209129175444044,10781.072633932663,2,1,2_0,2_1_0,2_2_0,2_0_0 -5023,2,37.0,0.0,7,111,1200.0,,,46,52,0.0,0.0,,1288.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,107959,1,2,0,0,2,,300.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,105.96297165708928,1200.0,45799.08460761036,1,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028122832825920173,25443.935893116868,7,4,7,7_1,7_2,7_0_0 -5024,2,48.0,0.0,7,111,720.0,,,85,22,0.0,0.0,,972.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,5,130793,2,1,0,0,1,,480.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,4,3,101.42805333745189,720.0,12814.009618086224,6,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07585447716755878,4928.4652377254715,1,1,1_0,1_1_0,1_2_0,1_0_0 -5025,2,65.0,0.0,2,111,1128.0,,,85,77,0.0,0.0,,1380.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,2,103640,1,2,0,0,2,,600.0,,41,2.0,0.0,4.0,4.0,2.5,1,1,88.98168670489518,1128.0,48650.050205259766,6,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028365849452932367,19460.020082103907,5,3,5,5_1,5_2,5_0_1 -5027,0,45.0,0.0,7,111,160.0,,,0,63,0.0,0.0,,223.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,1,,5,117860,1,3,0,0,2,,240.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,128.66615065299263,160.0,5214.799999999999,0,4,5,0,35.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042762905576436305,5214.799999999999,1,1,1_0,1_1_0,1_2_0,1_0_0 -5029,2,32.0,0.0,9,111,0.0,,,52,46,0.0,0.0,,750.0,0.0,,60,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,119262,2,1,0,0,2,,169.0,800.0,43,2.0,0.0,4.0,4.0,2.1,4,2,103.36737138873625,0.0,22465.66048862953,1,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03338428444512437,10697.933566014062,2,1,2_0,2_1_0,2_2_0,2_0_0 -5030,1,27.0,350.0,7,111,0.0,,,81,81,0.0,0.0,,442.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,125782,2,1,0,0,2,,80.0,580.0,43,2.0,0.0,5.0,3.0,1.8,2,2,102.31934104327986,0.0,9400.577983059286,4,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04701838554996566,5222.5433239218255,1,1,1_1,1_1_1,1_2_1,1_0_0 -5031,2,61.0,0.0,9,111,492.0,,,0,42,0.0,0.0,,558.0,113.54158227655265,,70,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,131186,2,1,0,0,1,,204.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,113.21938179920126,492.0,72194.64093486758,0,1,1,2,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007729105550970401,72194.64093486758,10,5,10,10_0,10_2,10_0_0 -5032,2,25.0,0.0,9,111,256.0,,,55,46,0.0,0.0,,256.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,130710,2,1,0,0,1,,240.0,497.0,43,2.0,0.0,2.0,2.0,1.5,2,2,140.41039000119193,256.0,41054.444570666536,1,1,2,3,33.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00623562205449766,27369.62971377769,7,4,7,7_0,7_2,7_0_0 -5033,1,47.0,286.0,7,111,0.0,,,0,52,0.0,0.0,,86.0,147.94812236035648,,44,0,0,0,0,0,0,0,0,2,20.0,1,,5,131266,2,3,0,0,2,,200.0,600.0,32,2.0,0.0,3.0,3.0,2.0,2,2,97.77409870758459,0.0,29421.2477087644,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.002923057541654875,14710.6238543822,3,2,3_1,3_1_1,3_2_1,3_0_0 -5034,2,67.0,0.0,9,111,600.0,,,21,47,0.0,0.0,,750.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,1,10.0,1,2005.0,6,128573,2,3,0,0,2,,160.0,840.0,43,2.0,0.0,4.0,3.0,1.8,1,1,135.0361757538305,600.0,15481.00790513834,1,1,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04844645804689923,8600.559947299078,1,1,1_0,1_1_0,1_2_0,1_0_0 -5035,2,53.0,0.0,7,111,300.0,,,0,63,0.0,0.0,,432.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,0,,1,,5,123446,2,1,0,0,2,,280.0,,32,2.0,0.0,4.0,2.0,1.5,2,1,94.0005888680221,300.0,6332.0,0,4,0,1,94.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06822488945041061,4221.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_0 -5036,2,60.0,0.0,9,111,300.0,,,86,42,0.0,0.0,,432.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,109009,2,1,0,0,2,,600.0,,42,2.0,2.0,4.0,4.0,2.5,3,3,90.12829719684957,300.0,36745.56885447627,6,1,1,2,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01175651958773186,14698.227541790508,3,2,3_0,3_1_0,3_2_0,3_0_0 -5037,0,62.0,0.0,8,111,1800.0,,,47,77,0.0,0.0,,1932.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,100030,2,3,0,0,2,,540.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,96.01646238496214,1800.0,33911.606980130724,4,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056971643989976214,22607.737986753815,6,3,6,6_1,6_2,6_0_0 -5038,2,53.0,0.0,9,111,800.0,,,77,48,0.0,0.0,,888.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,129692,2,1,0,0,1,,200.0,,42,1.0,2.0,6.0,3.0,2.0,2,2,150.33886769279067,800.0,63571.0,5,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013968633496405593,31785.5,8,4,8,8_1,8_2,8_0_0 -5039,2,46.0,0.0,6,111,600.0,,,63,56,0.0,0.0,,1104.0,867.0448101118566,,50,0,0,0,0,0,0,0,0,0,,1,,4,101842,2,1,0,0,2,,300.0,,43,2.0,3.0,6.0,4.0,2.3,3,3,94.84303866403951,600.0,19206.30797716992,4,1,0,1,135.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0574811151269832,8350.568685726053,1,1,1_0,1_1_0,1_2_0,1_0_0 -5040,2,30.0,0.0,2,111,325.0,,,85,22,0.0,0.0,,417.0,158.27008438549763,,20,0,0,0,0,0,0,0,0,1,15.0,1,,2,110304,1,3,0,0,2,,250.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,90.29357340328039,325.0,23255.322709163345,6,1,0,1,62.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017931378773586686,12919.62372731297,2,1,2_0,2_1_0,2_2_0,2_0_1 -5041,2,61.0,0.0,6,111,1080.0,,,0,22,0.0,0.0,,1168.0,151.38877636873687,,30,0,0,0,0,0,0,0,0,0,,1,,4,123068,1,1,0,0,2,,1200.0,,32,3.0,1.0,8.0,3.0,2.0,4,3,106.50431822872041,1080.0,54731.82698552292,0,4,0,1,270.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021340416798236003,27365.91349276146,7,4,7,7_1,7_2,7_0_0 -5042,2,51.0,0.0,6,111,564.0,,,85,47,0.0,0.0,,816.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,4,124818,2,1,0,0,2,,330.0,,42,1.0,1.0,4.0,4.0,2.5,3,3,102.78940670993386,564.0,9600.333333333332,6,4,0,1,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08499704871358635,3840.1333333333328,1,1,1_0,1_1_0,1_2_0,1_0_0 -5043,1,32.0,413.0,9,111,0.0,,,53,52,0.0,0.0,,875.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108651,1,3,0,0,2,,666.0,650.0,43,2.0,1.0,3.0,3.0,1.8,1,1,105.14380846687564,0.0,10287.013645085979,4,4,2,3,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0850586992676908,5715.007580603322,1,1,1_1,1_1_1,1_2_1,1_0_0 -5044,2,37.0,0.0,9,111,500.0,,,37,53,0.0,0.0,,544.0,75.69438818436844,,43,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,133271,2,1,0,0,2,,144.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,86.74538436947861,500.0,64013.436233323744,1,1,1,2,94.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008498215874822974,35563.0201296243,9,5,9,9_1,9_2,9_0_0 -5045,2,51.0,0.0,7,111,816.0,,,0,62,0.0,0.0,,904.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,1,,5,100348,2,3,0,0,2,,400.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,90.02545554431852,816.0,7181.794371432137,0,4,0,1,71.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12587383503988173,7181.794371432137,1,1,1_0,1_1_0,1_2_0,1_0_0 -5046,1,50.0,91.0,9,111,708.0,,,68,68,0.0,0.0,,892.0,316.54016877099525,,12,0,0,0,0,0,0,0,0,1,15.0,2,2005.0,6,128099,2,1,0,0,2,,660.0,434.0,43,4.0,1.0,5.0,5.0,2.8,2,2,104.1075427374189,708.0,56138.97800269782,1,1,2,3,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01588913855818918,20049.635000963506,5,3,5,5_0,5_2,5_0_0 -5047,1,56.0,246.0,9,111,180.0,,,0,56,0.0,0.0,,264.0,144.50746835197612,,60,0,0,0,0,0,0,0,0,0,,2,2005.0,6,121077,2,1,0,0,2,,200.0,252.0,12,1.0,3.0,2.0,1.0,1.0,2,2,100.92893851759035,180.0,5241.0,0,4,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05037206639954207,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5048,1,23.0,317.0,7,111,576.0,,,0,85,0.0,0.0,,622.0,79.13504219274881,,31,0,0,0,0,0,0,0,0,0,,2,,5,114495,2,1,0,0,1,,432.0,295.0,31,0.0,0.0,3.0,4.0,1.9,2,2,94.14677591012492,576.0,19642.21130350099,0,6,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03166649571115936,10338.005949211049,2,1,2_1,2_0_1,2_2_1,2_0_0 -5049,1,48.0,99.0,9,111,396.0,,,0,54,0.0,0.0,,516.0,206.439240502823,,42,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,103017,2,1,0,0,2,,600.0,375.0,32,2.0,2.0,4.0,3.0,1.8,1,1,104.34832776922721,396.0,27930.52784175685,0,1,2,3,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018474409181360577,15516.959912087139,3,2,3_1,3_0_1,3_2_1,3_0_0 -5050,1,58.0,168.0,9,111,180.0,,,0,67,0.0,0.0,,243.0,108.38060126398207,,70,0,0,0,0,0,0,0,0,0,,2,2005.0,6,103270,2,1,0,0,2,,210.0,172.0,12,1.0,3.0,1.0,1.0,1.0,1,1,95.5070182786505,180.0,6265.351063829787,0,4,2,3,36.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03878473808161401,6265.351063829787,1,1,1_1,1_0_1,1_2_1,1_0_0 -5051,2,48.0,0.0,9,111,600.0,,,55,63,0.0,0.0,,726.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,126757,2,1,0,0,1,,780.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,86.64877377207883,600.0,32498.27037861013,1,1,1,2,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022339650434991833,15475.366846957204,3,2,3_0,3_1_0,3_2_0,3_0_0 -5052,0,42.0,0.0,9,400,210.0,,,0,63,0.0,0.0,,278.0,116.98223628493304,,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123251,2,1,0,0,2,,200.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,132.53310688045607,210.0,7551.127366609294,0,4,5,0,18.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03681569473047191,7551.127366609294,1,1,1_0,1_1_0,1_0_0,1_0_0 -5053,1,43.0,323.0,8,400,400.0,,,21,55,0.0,0.0,,544.0,247.7270886033876,,31,2,2,2,1,2,2,2,2,0,,1,2001.0,6,124172,2,3,0,0,1,,300.0,,43,2.0,1.0,4.0,4.0,2.3,2,2,106.47096912787852,400.0,13929.629343629342,4,4,1,2,55.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.03905344403501994,6056.360584186671,1,1,1_1,1_1_1,1_0_1,1_0_0 -5054,2,47.0,0.0,7,400,350.0,,,56,63,0.0,0.0,,926.0,990.9083544135505,,41,0,0,0,0,0,0,0,0,0,,1,,5,112659,1,2,0,0,1,,300.0,,43,2.0,1.0,6.0,3.0,2.0,5,3,115.62490080745421,350.0,7213.6823024623045,1,1,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12836717243340767,3606.8411512311523,1,1,1_0,1_1_0,1_0_0,1_0_0 -5055,0,47.0,0.0,2,400,0.0,,,56,52,0.0,0.0,,144.0,247.7270886033876,,10,0,0,0,0,0,0,0,0,1,2.0,8,,2,113408,1,1,0,0,2,,0.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,113.86368194473147,0.0,39965.39832918942,1,1,5,0,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0036031168465754317,15371.30704968824,3,2,3_0,3_0_0,3_0_0,3_0_1 -5056,2,62.0,0.0,6,400,176.0,,,0,86,0.0,0.0,,446.0,464.48829113135173,,50,0,0,0,0,0,0,0,0,0,,1,,4,113098,2,1,0,0,1,,460.0,,21,1.0,4.0,4.0,2.0,1.5,3,3,107.28044655781919,176.0,12119.454504322495,0,6,0,1,73.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03680033617362322,8079.636336214997,1,1,1_0,1_1_0,1_0_0,1_0_0 -5057,2,39.0,0.0,9,400,550.0,,,22,22,0.0,155.27587572291867,,903.0,349.2263818506089,,20,0,0,0,0,0,0,0,0,2,2.0,1,2005.0,6,102817,2,1,0,0,1,,400.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,2,2,91.49555240575634,550.0,24104.728995592246,1,1,0,1,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037461528821382775,8311.975515721466,1,1,1_0,1_1_0,1_0_0,1_0_0 -5058,2,71.0,0.0,2,400,300.0,,,78,78,0.0,0.0,,448.0,254.60839662014837,,70,0,0,0,0,0,0,0,0,0,,1,,2,105356,1,1,0,0,1,,0.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,98.66346095792987,300.0,12677.38360233117,5,5,0,1,108.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035338522052580305,8451.589068220781,1,1,1_0,1_1_0,1_0_0,1_0_1 -5059,2,68.0,0.0,2,400,300.0,,,0,86,0.0,0.0,,396.0,165.1513924022584,,50,2,2,1,2,1,2,2,2,0,,1,,2,107078,2,3,0,0,2,,160.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,88.10438466049156,300.0,11623.223260692635,0,5,0,1,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03406972327023873,11623.223260692635,2,1,2_0,2_1_0,2_0_0,2_0_1 -5060,1,42.0,360.0,2,400,0.0,,,52,48,0.0,0.0,,590.0,0.0,,31,0,0,0,0,0,0,0,0,3,30.0,1,,2,121868,2,1,0,0,1,,260.0,500.0,43,2.0,0.0,6.0,4.0,2.1,2,2,132.53310688045607,0.0,15882.753547012016,1,1,2,3,75.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037147211171767835,7563.215974767627,1,1,1_1,1_1_1,1_0_1,1_0_1 -5061,2,82.0,0.0,6,400,400.0,,,77,71,0.0,0.0,,670.0,464.48829113135173,,20,0,0,0,0,0,0,0,0,0,,1,,4,129197,2,2,0,0,1,,300.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,92.23926097417967,400.0,18261.525692327476,5,5,0,1,88.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03668915792076992,12174.35046155165,2,1,2_0,2_1_0,2_0_0,2_0_0 -5062,0,81.0,0.0,6,400,200.0,,,86,78,0.0,0.0,,403.0,349.2263818506089,,50,0,0,0,0,0,0,0,0,0,,1,,4,118950,2,1,0,0,1,,200.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,105.35326964349225,200.0,17358.146788990824,6,5,0,1,136.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023216764145329007,11572.097859327216,2,1,2_0,2_1_0,2_0_0,2_0_0 -5063,2,46.0,0.0,9,400,480.0,,,85,52,0.0,0.0,,615.0,232.24414556567586,,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,122365,2,1,0,0,1,,320.0,,42,1.0,1.0,4.0,4.0,2.1,2,2,98.41336017128374,480.0,42093.77947065815,6,1,1,2,124.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014610234759952866,20044.656890789593,5,3,5,5_1,5_0,5_0_0 -5064,2,57.0,0.0,7,400,480.0,,,54,63,0.0,0.0,,886.0,698.4527637012178,,33,0,0,0,0,0,0,0,0,0,,1,,5,100086,2,1,0,0,1,,250.0,,43,3.0,1.0,7.0,4.0,2.3,3,3,106.53932789778032,480.0,56085.08088409687,1,1,0,1,150.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015797427516079925,24384.817775694293,7,4,7,7_1,7_0,7_0_0 -5065,2,46.0,0.0,8,400,450.0,,,0,63,0.0,0.0,,518.0,116.98223628493304,,42,0,0,0,0,0,0,0,0,1,20.0,1,1999.0,6,101938,2,3,0,0,1,,180.0,,12,1.0,4.0,6.0,1.0,1.0,2,2,92.77739106417921,450.0,19519.169056557017,0,1,1,2,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02653801493798681,19519.169056557017,5,3,5,5_1,5_0,5_0_0 -5066,1,33.0,150.0,9,400,260.0,,,42,63,0.0,0.0,,395.0,232.24414556567586,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100380,2,1,0,0,1,,160.0,,43,2.0,0.0,4.0,5.0,2.4,3,3,94.8407313738375,260.0,35873.21282702711,1,1,1,2,88.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011011001493080777,14947.172011261298,3,2,3_1,3_1_1,3_0_1,3_0_0 -5067,2,44.0,0.0,7,400,880.0,,,63,56,0.0,0.0,,1150.0,464.48829113135173,,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,131120,2,1,0,0,1,,400.0,,43,3.0,0.0,4.0,4.0,2.5,1,1,109.19486889455028,880.0,43065.0,1,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026703819807268082,17226.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -5068,2,37.0,0.0,9,400,1500.0,,,85,85,0.0,0.0,,1770.0,464.48829113135173,,31,0,0,0,0,0,0,0,0,0,,1,2004.0,6,112760,2,1,0,0,2,,408.0,,41,1.0,0.0,6.0,7.0,3.3999999999999995,3,3,92.52560164417784,1500.0,26400.907049157307,7,7,0,1,109.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0670431510820571,7764.9726615168565,1,1,1_0,1_1_0,1_0_0,1_0_0 -5069,1,48.0,425.0,6,400,600.0,,,0,85,0.0,0.0,,1140.0,928.9765822627035,,71,0,0,0,0,0,0,0,0,0,,1,,4,130723,2,1,0,0,1,,1000.0,450.0,31,1.0,0.0,5.0,5.0,2.5999999999999996,1,1,122.65762613235516,600.0,22363.0,0,6,2,3,150.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05097706032285471,8601.153846153848,1,1,1_1,1_1_1,1_0_1,1_0_0 -5070,2,49.0,0.0,8,400,500.0,,,90,22,0.0,0.0,,906.0,698.4527637012178,,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,122478,2,1,0,0,1,,0.0,,43,3.0,1.0,5.0,4.0,2.5,1,1,98.0508829100671,500.0,9450.339449501296,4,1,0,1,86.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09586957218217283,3780.1357798005183,1,1,1_0,1_1_0,1_0_0,1_0_0 -5071,2,68.0,0.0,2,400,700.0,,,68,77,0.0,0.0,,835.0,232.24414556567586,,42,0,0,0,0,0,0,0,0,0,,1,,2,123283,2,1,0,0,1,,500.0,,42,1.0,5.0,8.0,2.0,1.5,3,2,92.56589324743646,700.0,17567.0,1,5,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04753230488985029,11711.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1 -5072,2,69.0,0.0,9,400,270.0,,,0,77,0.0,0.0,,338.0,116.98223628493304,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,121037,2,1,0,0,1,,180.0,,11,0.0,0.0,3.0,1.0,1.0,4,4,87.88178120351859,270.0,10431.94696143382,0,5,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032400471479539,10431.94696143382,2,1,2_0,2_1_0,2_0_0,2_0_0 -5073,2,50.0,0.0,6,400,1350.0,,,85,11,0.0,0.0,,1959.0,1047.6791455518267,,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,123114,2,1,0,0,1,,0.0,,42,1.0,2.0,12.0,2.0,1.5,2,2,98.8695466929785,1350.0,66718.93499943377,6,1,0,1,270.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029361979474292053,44479.28999962251,10,5,10,10_1,10_0,10_0_0 -5075,2,44.0,0.0,7,111,1080.0,,,85,37,0.0,0.0,,1140.0,103.2196202514115,,50,0,0,0,0,0,0,0,0,0,,1,,5,111131,2,2,0,0,2,,200.0,740.0,42,2.0,0.0,4.0,4.0,2.3,1,1,109.22974882654225,1080.0,47710.65151739371,6,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02389403547726432,20743.761529301613,5,3,5,5_1,5_2,5_0_0 -5076,2,49.0,0.0,9,111,600.0,,,52,68,0.0,0.0,,680.0,137.62616033521533,,10,2,2,1,2,2,2,2,1,2,30.0,1,2004.0,6,104603,2,1,0,0,2,,400.0,,43,2.0,0.0,3.0,4.0,2.1,4,4,81.80510841196964,600.0,28808.36101431434,1,4,0,1,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.023604258488086866,13718.267149673495,3,2,3_0,3_1_0,3_2_0,3_0_0 -5077,2,54.0,0.0,6,111,600.0,,,43,45,0.0,0.0,,720.0,206.439240502823,,31,0,0,0,0,0,0,0,0,2,45.0,1,,4,113285,1,3,0,0,2,,600.0,900.0,43,2.0,1.0,5.0,3.0,2.0,2,2,104.36897902249007,600.0,54209.86658702154,1,1,2,3,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013281715033262528,27104.93329351077,7,4,7,7_1,7_2,7_0_0 -5078,2,57.0,0.0,7,111,480.0,,,52,64,0.0,0.0,,1200.0,1238.635443016938,,12,0,0,0,0,0,0,0,0,0,,1,,5,132746,2,1,0,0,2,,700.0,,43,3.0,2.0,5.0,4.0,2.5,3,2,88.7112231166151,480.0,29722.42367590087,4,4,0,1,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0403735581285374,11888.969470360349,2,1,2_0,2_1_0,2_2_0,2_0_0 -5079,2,46.0,0.0,5,111,300.0,,,0,56,0.0,0.0,,420.0,206.439240502823,,10,2,2,2,2,2,2,2,1,0,,1,,3,106567,2,3,0,0,2,,400.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,92.94890165121593,300.0,8056.072925119644,0,4,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.05213458268114702,5370.715283413097,1,1,1_0,1_1_0,1_2_0,1_0_0 -5080,2,28.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,440.0,0.0,,43,0,0,0,0,0,0,0,0,1,20.0,1,,5,108486,2,2,0,0,2,,330.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,87.59949796143475,0.0,16197.21952999907,0,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027165156290255284,10123.26220624942,2,1,2_0,2_1_0,2_2_0,2_0_0 -5081,1,38.0,413.0,7,111,0.0,,,0,81,0.0,0.0,,414.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,101731,1,2,0,0,2,,283.0,750.0,32,1.0,0.0,5.0,3.0,1.8,2,2,100.69409257346263,0.0,9197.62412273516,0,4,2,3,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04501162414070102,5109.791179297311,1,1,1_1,1_1_1,1_2_1,1_0_0 -5082,2,53.0,0.0,2,111,220.0,,,0,52,0.0,0.0,,260.0,68.81308016760767,,50,0,0,0,0,0,0,0,0,2,4.0,1,,2,110077,1,3,0,0,2,,210.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,89.71335019265352,220.0,19335.782607163776,0,1,0,1,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01344657236183819,19335.782607163776,5,3,5,5_1,5_2,5_0_1 -5083,2,76.0,0.0,5,111,600.0,,,0,78,0.0,0.0,,660.0,103.2196202514115,,60,0,0,0,0,0,0,0,0,0,,1,,3,117909,2,2,0,0,1,,500.0,,21,2.0,3.0,5.0,3.0,2.0,1,1,91.9141399889666,600.0,10006.805084745763,0,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06595511698395075,5003.402542372882,1,1,1_0,1_1_0,1_2_0,1_0_0 -5084,2,70.0,0.0,5,111,500.0,,,81,77,0.0,0.0,,740.0,412.878481005646,,30,0,0,0,0,0,0,0,0,0,,1,,3,124783,2,2,0,0,2,,600.0,,42,2.0,3.0,4.0,3.0,2.0,2,2,87.27045739450055,500.0,17979.688376822727,4,5,0,1,92.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041157554262949286,8989.844188411364,1,1,1_0,1_1_0,1_2_0,1_0_0 -5085,1,70.0,100.0,2,111,152.0,,,0,77,0.0,0.0,,272.0,206.439240502823,,50,2,2,2,2,1,2,2,2,0,,1,,2,129551,2,2,0,0,2,,300.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,106.40880997189042,152.0,23667.734527228888,0,5,0,1,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.011492439197637342,15778.489684819258,3,2,3_1,3_1_1,3_2_1,3_0_1 -5086,2,74.0,0.0,5,111,700.0,,,0,77,0.0,0.0,,700.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,3,113106,1,1,0,0,1,,600.0,,11,0.0,0.0,5.0,1.0,1.0,4,2,84.94014318143101,700.0,19903.600000000002,0,5,0,1,78.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03516951707228843,19903.600000000002,5,3,5,5_1,5_2,5_0_0 -5087,2,59.0,0.0,7,111,1440.0,,,45,54,0.0,0.0,,1500.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,128127,2,1,0,0,1,,480.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,95.49884625505301,1440.0,37639.681379223555,1,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039851559445664535,18819.840689611778,5,3,5,5_1,5_2,5_0_0 -5088,1,39.0,413.0,7,111,624.0,,,0,54,0.0,0.0,,744.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,1,,5,132803,2,3,0,0,2,,900.0,650.0,32,2.0,0.0,4.0,3.0,1.8,2,2,96.96122287448783,624.0,9684.439393939394,0,4,2,3,81.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07682427136315208,5380.244107744108,1,1,1_1,1_1_1,1_2_1,1_0_0 -5089,2,77.0,0.0,5,111,240.0,,,0,77,0.0,0.0,,280.0,68.81308016760767,,60,2,2,2,2,1,2,2,2,0,,1,,3,101045,2,2,0,0,2,,240.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,93.93901914592006,240.0,3324.8322178653316,0,5,0,1,115.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0842147758601096,3324.8322178653316,1,1,1_0,1_1_0,1_2_0,1_0_0 -5090,2,78.0,0.0,1,111,600.0,,,86,78,0.0,0.0,,780.0,309.6588607542345,,50,2,2,2,2,1,2,2,2,0,,1,,1,118398,2,2,0,0,2,,600.0,,41,0.0,0.0,4.0,2.0,1.5,5,2,91.9141399889666,600.0,17227.77981651376,7,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04527571215255071,11485.186544342507,2,1,2_0,2_1_0,2_2_0,2_1_0 -5091,2,55.0,0.0,6,111,215.0,,,42,52,0.0,0.0,,455.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,4,113956,1,1,0,0,1,,900.0,470.0,43,3.0,0.0,4.0,3.0,2.0,3,3,99.54768132505045,215.0,16027.685426594016,4,1,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02838837847697204,8013.842713297008,1,1,1_0,1_1_0,1_2_0,1_0_0 -5092,1,55.0,120.0,7,111,260.0,,,0,52,0.0,0.0,,380.0,206.439240502823,,12,0,0,0,0,0,0,0,0,1,20.0,1,,5,121977,2,3,0,0,2,,1200.0,434.0,32,2.0,2.0,4.0,3.0,2.0,2,2,99.54768132505045,260.0,22108.91954730256,0,1,2,3,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017187633216855347,11054.45977365128,2,1,2_1,2_1_1,2_2_1,2_0_0 -5093,1,71.0,278.0,7,111,300.0,,,77,78,0.0,0.0,,540.0,412.878481005646,,50,2,2,2,2,1,2,2,2,0,,2,,5,120119,2,2,0,0,2,,540.0,378.0,41,0.0,7.0,2.0,2.0,1.5,3,2,99.6035359234767,300.0,10149.733050847457,7,5,2,3,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.05320336971373966,6766.488700564972,1,1,1_1,1_0_1,1_2_1,1_0_0 -5094,2,33.0,0.0,2,111,780.0,,,0,56,0.0,0.0,,969.0,325.14180379194624,,50,0,0,0,0,0,0,0,0,0,,1,,2,120245,2,1,0,0,1,,420.0,,22,2.0,2.0,6.0,4.0,2.5,1,1,93.93505827890125,780.0,66254.35619016811,0,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01462545341499818,26501.742476067244,7,4,7,7_1,7_2,7_0_1 -5095,2,59.0,0.0,5,111,830.0,,,75,43,0.0,0.0,,1082.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,3,109670,2,1,0,0,2,,600.0,,42,1.0,3.0,5.0,3.0,2.0,4,3,93.93505827890125,830.0,82733.59553023695,7,1,0,1,132.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013078121325025182,41366.79776511848,9,5,9,9_1,9_2,9_0_0 -5097,0,74.0,0.0,2,111,192.0,,,0,86,0.0,0.0,,360.0,289.01493670395223,,71,0,0,0,0,0,0,0,0,0,,1,,2,120819,2,2,0,0,1,,150.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,99.06810331709369,192.0,8057.929165137164,0,5,5,0,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044676491021731636,8057.929165137164,1,1,1_0,1_1_0,1_2_0,1_0_1 -5098,2,54.0,0.0,5,111,564.0,,,63,52,0.0,207.03450096389156,,1016.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,3,117301,2,2,0,0,2,,320.0,,43,3.0,2.0,5.0,3.0,2.0,2,2,86.22031642348182,564.0,71726.44256454194,4,1,0,1,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014164929469153136,35863.22128227097,9,5,9,9_1,9_2,9_0_0 -5099,2,53.0,0.0,7,111,180.0,,,0,64,0.0,0.0,,268.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,5,116893,2,2,0,0,1,,120.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,92.26699789170326,180.0,5096.093186267324,0,4,1,2,36.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05258930521957328,5096.093186267324,1,1,1_0,1_1_0,1_2_0,1_0_0 -5100,2,73.0,0.0,2,111,378.0,,,71,77,0.0,0.0,,504.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,,2,115433,2,1,0,0,1,,360.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,91.9141399889666,378.0,22801.38191849973,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022103923428916532,15200.92127899982,3,2,3_0,3_1_0,3_2_0,3_0_1 -5101,1,43.0,339.0,9,111,840.0,,,63,56,0.0,0.0,,1092.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,121094,1,2,0,0,2,,880.0,,43,5.0,1.0,8.0,8.0,4.3,2,2,99.42252607286531,840.0,43579.351359860826,4,1,1,2,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025057738720861204,10134.73287438624,2,1,2_1,2_1_1,2_2_1,2_0_0 -5102,2,37.0,0.0,9,111,420.0,,,53,43,0.0,0.0,,483.0,108.38060126398207,,44,0,0,0,0,0,0,0,0,2,45.0,1,2010.0,6,121889,2,1,0,0,1,,160.0,,43,2.0,1.0,4.0,3.0,1.8,1,1,143.03643059415356,420.0,61970.3969399773,1,1,1,2,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007794043992776415,34427.99829998739,9,5,9,9_1,9_2,9_0_0 -5103,1,68.0,90.0,7,111,500.0,,,86,90,0.0,0.0,,740.0,412.878481005646,,31,0,0,0,0,0,0,0,0,0,,8,,5,129525,2,2,0,0,2,,450.0,525.0,41,0.0,5.0,3.0,2.0,1.5,2,2,98.80610045050496,500.0,19491.394831960723,6,5,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037965471757136444,12994.263221307148,2,1,2_1,2_0_1,2_2_1,2_0_0 -5104,1,45.0,456.0,7,111,840.0,,,0,81,0.0,0.0,,1320.0,825.756962011292,,71,0,0,0,0,0,0,0,0,0,,1,,5,125840,2,2,0,0,2,,800.0,486.0,32,2.0,0.0,5.0,7.0,3.1999999999999993,2,2,116.14255283047277,840.0,3973.656864421887,0,4,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.3321877165133739,1241.7677701318398,1,1,1_1,1_1_1,1_2_1,1_0_0 -5105,2,38.0,0.0,8,111,160.0,,,0,43,0.0,0.0,,400.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,101081,2,2,0,0,1,,1440.0,,22,3.0,4.0,5.0,4.0,2.5,3,2,108.85193125262114,160.0,22441.16284242494,0,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017824388281867526,8976.465136969975,1,1,1_0,1_1_0,1_2_0,1_0_0 -5106,1,17.0,380.0,6,111,480.0,,,63,85,0.0,0.0,,600.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,4,119194,1,3,0,0,2,,840.0,500.0,42,1.0,0.0,3.0,3.0,1.8,3,3,84.8426824595595,480.0,8953.545725608205,4,6,2,3,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06701255774948786,4974.192069782336,1,1,1_1,1_1_1,1_2_1,1_0_0 -5107,2,59.0,0.0,7,111,0.0,,,21,77,0.0,0.0,,435.0,344.06540083803833,,71,0,0,0,0,0,0,0,0,0,,1,,5,109544,2,2,0,0,2,,450.0,,42,1.0,2.0,4.0,2.0,1.5,5,5,86.22031642348182,0.0,42658.5783340457,4,5,1,2,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010197245594863805,28439.052222697133,8,4,8,8_1,8_2,8_0_0 -5108,1,36.0,300.0,2,111,546.0,,,0,85,0.0,0.0,,626.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,0,,1,,2,123838,2,2,0,0,2,,600.0,450.0,31,1.0,0.0,4.0,4.0,2.3,2,2,95.35121344623019,546.0,11736.192506745996,0,6,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0533392750366163,5102.69239423739,1,1,1_1,1_1_1,1_2_1,1_0_1 -5109,1,23.0,446.0,6,111,750.0,,,62,56,0.0,0.0,,910.0,275.25232067043066,,70,0,0,0,0,0,0,0,0,0,,1,,4,126444,2,1,0,0,2,,500.0,550.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,106.76966053912966,750.0,21790.212834646976,4,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04176186836289536,8070.4491980174,1,1,1_1,1_1_1,1_2_1,1_0_0 -5110,2,55.0,0.0,9,111,0.0,,,85,42,0.0,0.0,,380.0,0.0,,41,0,0,0,0,0,0,0,0,3,20.0,1,2006.0,6,121860,2,1,0,0,1,,453.0,980.0,42,2.0,2.0,5.0,3.0,2.0,3,3,100.68959754565492,0.0,27381.093077720514,6,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013878189556617772,13690.546538860257,3,2,3_0,3_1_0,3_2_0,3_0_0 -5111,2,72.0,0.0,5,111,500.0,,,56,78,0.0,0.0,,740.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,,3,132566,1,1,0,0,2,,324.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,91.9141399889666,500.0,38195.31410025608,5,5,0,1,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019374104322263937,25463.542733504055,7,4,7,7_1,7_2,7_0_0 -5112,1,38.0,450.0,7,111,250.0,,,0,81,0.0,0.0,,370.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,2,,5,120502,1,2,0,0,2,,636.0,700.0,32,1.0,0.0,6.0,4.0,2.1,3,2,94.13586509655032,250.0,19922.800000000003,0,4,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018571686710703313,9487.04761904762,1,1,1_1,1_0_1,1_2_1,1_0_0 -5113,1,42.0,410.0,7,111,810.0,,,68,85,0.0,0.0,,930.0,206.439240502823,,12,0,0,0,0,0,0,0,0,0,,2,,5,124228,2,2,0,0,2,,480.0,38.0,42,1.0,0.0,3.0,5.0,2.8,4,3,121.06679482385351,810.0,20041.600000000002,4,6,2,3,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.046403480760019156,7157.714285714287,1,1,1_1,1_0_1,1_2_1,1_0_0 -5114,1,49.0,200.0,7,111,270.0,,,0,22,0.0,0.0,,390.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,1,,5,119035,1,1,0,0,2,,720.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,95.57392639841225,270.0,10593.326726598541,0,1,1,2,58.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03681563026096023,10593.326726598541,2,1,2_1,2_1_1,2_2_1,2_0_0 -5115,0,70.0,0.0,5,111,600.0,,,52,74,0.0,0.0,,840.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,3,115180,2,1,0,0,1,,900.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,87.57201927583829,600.0,44238.26811819109,5,5,0,1,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018988085106672294,29492.178745460726,8,4,8,8_1,8_2,8_0_0 -5116,2,56.0,0.0,7,111,420.0,,,0,56,0.0,0.0,,540.0,206.439240502823,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,117059,1,2,0,0,2,,540.0,,32,4.0,0.0,7.0,4.0,2.5,2,2,94.34594188731907,420.0,85007.56885706856,0,1,0,1,91.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006352375526795198,34003.027542827425,9,5,9,9_1,9_2,9_0_0 -5117,1,52.0,310.0,7,111,660.0,,,81,81,0.0,0.0,,840.0,309.6588607542345,,60,2,2,2,2,1,2,2,2,0,,2,,5,119368,1,2,0,0,2,,330.0,528.0,43,5.0,1.0,4.0,5.0,3.0,2,2,112.71381058143709,660.0,17868.254126162858,4,4,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.047010748451918674,5956.084708720952,1,1,1_1,1_0_1,1_2_1,1_0_0 -5118,1,53.0,167.0,7,111,100.0,,,0,43,0.0,0.0,,210.0,189.2359704609211,,70,0,0,0,0,0,0,0,0,0,,2,,5,106967,2,3,0,0,2,,84.0,195.0,12,1.0,0.0,1.0,1.0,1.0,2,2,108.37734276344159,100.0,5243.4047260345715,0,4,2,3,30.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04005031291162921,5243.4047260345715,1,1,1_1,1_0_1,1_2_1,1_0_0 -5119,0,34.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,509.0,0.0,,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,124842,2,1,0,0,2,,225.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,101.94636763796113,0.0,44027.78819758279,0,1,5,0,111.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011560880544708923,44027.78819758279,10,5,10,10_1,10_2,10_0_0 -5120,1,39.0,114.0,6,111,0.0,,,0,69,0.0,0.0,,481.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,4,114071,2,2,0,0,2,,146.0,350.0,12,1.0,2.0,4.0,1.0,1.0,2,2,101.94199229623875,0.0,9429.130642132255,0,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05101212595896636,9429.130642132255,1,1,1_1,1_1_1,1_2_1,1_0_0 -5121,2,68.0,0.0,6,111,560.0,,,72,71,0.0,0.0,,800.0,412.878481005646,,31,0,0,0,0,0,0,0,0,0,,1,,4,131651,2,2,0,0,2,,360.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,97.59860530646782,560.0,24548.389462460716,5,5,0,1,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03258869593964021,16365.592974973812,4,2,4_0,4_1_0,4_2_0,4_0_0 -5122,0,46.0,0.0,6,111,480.0,,,90,68,0.0,0.0,,720.0,412.878481005646,,12,0,0,0,0,0,0,0,0,0,,1,,4,126291,2,2,0,0,2,,480.0,,43,3.0,1.0,4.0,5.0,2.5999999999999996,4,2,96.01646238496214,480.0,51810.516729859446,4,4,5,0,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013896792493965795,19927.12181917671,5,3,5,5_1,5_2,5_0_0 -5123,2,57.0,0.0,7,111,500.0,,,0,22,0.0,0.0,,564.0,110.10092826817227,,50,0,0,0,0,0,0,0,0,0,,1,,5,127903,2,1,0,0,1,,240.0,,12,1.0,3.0,4.0,1.0,1.0,3,3,106.28016690062749,500.0,131494.18749488273,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004289162971724121,131494.18749488273,10,5,10,10_1,10_2,10_0_0 -5124,2,38.0,0.0,9,111,750.0,,,22,62,0.0,0.0,,836.0,147.94812236035648,,10,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,105139,2,1,0,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,151.33942414822425,750.0,70803.10567997488,1,1,1,2,160.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011807391666951193,33715.76460951185,9,5,9,9_1,9_2,9_0_0 -5125,2,50.0,0.0,6,111,270.0,,,0,43,0.0,0.0,,310.0,68.81308016760767,,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,106953,2,1,0,0,2,,300.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,99.89185361374933,270.0,20638.702016234864,0,1,0,1,66.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015020324425254411,20638.702016234864,5,3,5,5_1,5_2,5_0_0 -5127,2,29.0,0.0,9,111,240.0,,,53,52,0.0,0.0,,300.0,103.2196202514115,,20,2,2,2,2,1,2,2,2,0,,1,2013.0,6,116274,2,1,0,0,2,,180.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,155.97403845732498,240.0,38063.0,4,1,0,1,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.007881669863121667,21146.11111111111,5,3,5,5_1,5_2,5_0_0 -5128,1,33.0,293.0,6,111,450.0,,,85,42,0.0,0.0,,690.0,412.878481005646,,20,0,0,0,0,0,0,0,0,0,,2,,4,123623,2,2,0,0,2,,360.0,426.0,42,1.0,0.0,3.0,4.0,2.1,1,1,108.06037156017379,450.0,21981.421400924723,6,1,2,3,79.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03139014476884433,10467.343524249867,2,1,2_1,2_0_1,2_2_1,2_0_0 -5129,2,97.0,0.0,2,111,240.0,,,0,78,0.0,0.0,,260.0,34.40654008380383,,41,0,0,0,0,0,0,0,0,0,,1,,2,113145,1,3,0,0,2,,100.0,,21,0.0,0.0,7.0,2.0,1.5,3,3,88.71460858600547,240.0,4998.050149451961,0,5,0,1,140.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052020286356772374,3332.033432967974,1,1,1_0,1_1_0,1_2_0,1_0_1 -5130,1,48.0,357.0,7,111,350.0,,,0,56,0.0,0.0,,410.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,0,,2,,5,115677,2,2,0,0,2,,600.0,419.0,32,1.0,0.0,3.0,2.0,1.5,1,1,99.6035359234767,350.0,12800.83665137921,0,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03202915646578656,8533.891100919473,1,1,1_1,1_0_1,1_2_1,1_0_0 -5131,1,41.0,432.0,7,111,0.0,,,68,52,0.0,0.0,,685.0,825.756962011292,,41,0,0,0,0,0,0,0,0,0,,2,,5,114060,2,2,0,0,2,,1602.0,447.0,43,4.0,0.0,3.0,5.0,2.8,2,2,106.71941511179833,0.0,35326.14302600473,4,4,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019390738453834294,12616.479652144546,2,1,2_1,2_0_1,2_2_1,2_0_0 -5132,1,72.0,214.0,7,111,600.0,,,0,75,0.0,0.0,,840.0,412.878481005646,,41,0,0,0,0,0,0,0,0,0,,2,,5,114557,2,2,0,0,2,,600.0,394.0,11,0.0,7.0,2.0,1.0,1.0,2,2,104.44046551977355,600.0,8080.420912340447,0,5,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1039549807012094,8080.420912340447,1,1,1_1,1_0_1,1_2_1,1_0_0 -5133,1,94.0,193.0,7,111,800.0,,,77,78,0.0,0.0,,1040.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,2,,5,121001,2,2,0,0,2,,480.0,389.0,41,0.0,1.0,2.0,2.0,1.5,1,1,110.32933009817437,800.0,18995.95890839721,5,5,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.054748486507846965,12663.97260559814,2,1,2_1,2_0_1,2_2_1,2_0_0 -5134,1,86.0,200.0,7,111,250.0,,,86,77,0.0,0.0,,490.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,2,,5,101374,2,2,0,0,2,,700.0,250.0,41,0.0,0.0,2.0,2.0,1.5,2,2,110.32933009817437,250.0,14572.229645093947,7,5,2,3,35.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033625602391255824,9714.819763395964,1,1,1_1,1_0_1,1_2_1,1_0_0 -5135,1,33.0,350.0,7,111,360.0,,,0,43,0.0,0.0,,400.0,68.81308016760767,,41,0,0,0,0,0,0,0,0,2,45.0,2,,5,130082,2,2,0,0,1,,360.0,360.0,32,1.0,0.0,2.0,2.0,1.3,4,4,111.57140842280371,360.0,16639.900724045434,0,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024038604955255612,12799.923633881102,2,1,2_1,2_0_1,2_2_1,2_0_0 -5136,1,19.0,337.0,7,111,0.0,,,68,81,0.0,0.0,,604.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,5,120714,1,2,0,0,2,,505.0,500.0,43,2.0,0.0,3.0,3.0,1.8,3,3,100.72486415883266,0.0,15731.205533596836,4,4,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03839502310932552,8739.55862977602,1,1,1_1,1_0_1,1_2_1,1_0_0 -5137,1,30.0,352.0,7,111,168.0,,,0,55,0.0,0.0,,168.0,0.0,,71,2,2,2,2,1,2,2,2,2,1.0,2,,5,133339,2,1,0,0,1,,360.0,408.0,32,1.0,0.0,3.0,2.0,1.3,2,2,94.40365587054822,168.0,21718.72259729813,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.007735261558195862,16706.70969022933,4,2,4_1,4_0_1,4_2_1,4_0_0 -5138,1,39.0,387.0,7,111,300.0,,,0,52,0.0,0.0,,420.0,206.439240502823,,41,0,0,0,0,0,0,0,0,0,,2,,5,126248,2,2,0,0,2,,420.0,387.0,32,2.0,0.0,4.0,4.0,2.3,1,1,97.73370296942049,300.0,27704.916004595918,0,4,2,3,76.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015159764423408719,12045.61565417214,2,1,2_1,2_0_1,2_2_1,2_0_0 -5139,1,57.0,230.0,9,111,208.0,,,0,77,0.0,0.0,,460.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,101357,2,1,0,0,2,,128.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,92.26699789170326,208.0,10311.743138158421,0,7,1,2,41.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04460933460394084,10311.743138158421,2,1,2_1,2_1_1,2_2_1,2_0_0 -5140,2,45.0,0.0,7,111,400.0,,,0,85,0.0,0.0,,526.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,,5,103768,2,1,0,0,2,,180.0,,31,0.0,0.0,5.0,4.0,2.3,2,2,98.1524469291907,400.0,14584.151471967552,0,6,0,1,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036066548061505915,6340.935422594588,1,1,1_0,1_1_0,1_2_0,1_0_0 -5141,2,36.0,0.0,9,111,540.0,,,46,63,0.0,0.0,,540.0,0.0,,41,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,117245,2,1,0,0,1,,140.0,800.0,43,2.0,0.0,4.0,3.0,1.8,2,2,146.8700789644294,540.0,48727.645227974775,1,1,2,3,87.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011082004834700763,27070.91401554154,7,4,7,7_1,7_2,7_0_0 -5142,2,38.0,0.0,8,111,400.0,,,21,85,0.0,0.0,,715.0,541.9030063199103,,10,0,0,0,0,0,0,0,0,0,,1,2002.0,6,127810,2,1,0,0,1,,196.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,86.22031642348182,400.0,3090.547077448574,1,7,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23135062566019024,1471.6890844993209,1,1,1_0,1_1_0,1_2_0,1_0_0 -5144,2,40.0,0.0,8,111,220.0,,,0,62,0.0,0.0,,423.0,349.2263818506089,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,122866,2,1,0,0,1,,0.0,,22,1.0,1.0,4.0,2.0,1.5,1,1,91.9141399889666,220.0,37104.61644925964,0,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011400198694371363,24736.410966173094,7,4,7,7_1,7_2,7_0_0 -5145,0,47.0,0.0,7,120,0.0,,,0,63,0.0,0.0,,142.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,121431,1,2,0,0,2,,343.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,126.40446821182822,0.0,8361.917454887756,0,4,5,0,32.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016981750987866705,8361.917454887756,1,1,1_0,1_1_0,1_1_0,1_0_0 -5146,1,25.0,259.0,9,120,780.0,,,85,63,0.0,0.0,,780.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2008.0,6,109900,2,1,0,0,1,,240.0,634.0,42,1.0,0.0,3.0,3.0,1.8,3,2,94.31931589494391,780.0,30713.89845599316,6,1,2,3,63.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025395669036204674,17063.2769199962,4,2,4_1,4_0_1,4_1_1,4_0_0 -5147,2,40.0,0.0,9,120,980.0,,,46,62,0.0,0.0,,1173.0,332.023111808707,,71,0,0,0,0,0,0,0,0,2,3.0,1,2009.0,6,119945,2,1,0,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,148.74260394133609,980.0,41586.61744428672,1,1,1,2,102.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02820618920429052,14852.363372959544,3,2,3_0,3_1_0,3_1_0,3_0_0 -5148,0,76.0,0.0,1,120,150.0,,,0,77,0.0,0.0,,192.0,72.25373417598806,,31,2,2,1,1,2,2,2,2,0,,1,,1,120169,2,2,0,0,2,,125.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,93.46712649223552,150.0,12617.335443037975,0,5,5,0,48.0,0,3,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.015217159032253695,12617.335443037975,2,1,2_0,2_1_0,2_1_0,2_1_0 -5149,2,71.0,0.0,7,120,343.0,,,77,72,0.0,0.0,,472.0,221.92218354053472,,31,0,0,0,0,0,0,0,0,0,,1,,5,112674,2,1,0,0,1,,250.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,91.50767830497422,343.0,9339.883126970271,5,5,0,1,70.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05053596427101227,6226.588751313514,1,1,1_0,1_1_0,1_1_0,1_0_0 -5150,0,23.0,0.0,5,120,750.0,,,0,53,0.0,0.0,,795.0,77.41471518855863,,12,0,0,0,0,0,0,0,0,2,50.0,1,,3,130317,1,3,0,0,2,,600.0,,12,1.0,0.0,5.0,1.0,1.0,3,2,97.7183982738739,750.0,18284.037525079308,0,1,5,0,120.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043480549572792,18284.037525079308,4,2,4_0,4_1_0,4_1_0,4_0_0 -5151,1,43.0,255.0,8,120,398.0,,,42,63,0.0,0.0,,591.0,332.023111808707,,71,0,0,0,0,0,0,0,0,1,15.0,2,2002.0,6,130953,2,1,0,0,2,,280.0,409.0,43,3.0,0.0,3.0,3.0,2.0,3,3,92.27448801106003,398.0,17144.248112863435,4,1,2,3,57.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034472202928314426,8572.124056431718,1,1,1_1,1_0_1,1_1_1,1_0_0 -5152,1,34.0,599.0,9,120,400.0,,,0,85,0.0,0.0,,658.0,443.84436708106944,,31,2,2,1,2,1,2,2,2,0,,1,2010.0,6,121854,2,3,0,0,1,,400.0,580.0,31,0.0,0.0,5.0,7.0,3.1999999999999993,3,3,151.95844342482482,400.0,34727.0,0,6,2,3,74.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.01894779278371296,10852.187500000002,2,1,2_1,2_1_1,2_1_1,2_0_0 -5153,1,36.0,300.0,9,120,370.0,,,0,54,0.0,0.0,,370.0,0.0,,42,0,0,0,0,0,0,0,0,2,30.0,8,2010.0,6,130950,2,1,0,0,2,,160.0,650.0,32,1.0,0.0,4.0,3.0,1.6,2,2,148.19881962577585,370.0,39023.34907729561,0,1,2,3,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009481502965496925,24389.593173309753,7,4,7,7_0,7_1,7_0_0 -5154,2,54.0,0.0,6,120,420.0,,,42,11,0.0,0.0,,678.0,443.84436708106944,,41,0,0,0,0,0,0,0,0,0,,1,,4,130031,2,1,0,0,1,,300.0,,43,3.0,1.0,5.0,4.0,2.3,2,2,94.57249618095067,420.0,22941.525729979665,4,1,0,1,103.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02955339622917926,9974.576404338986,2,1,2_0,2_1_0,2_1_0,2_0_0 -5155,2,50.0,0.0,7,120,900.0,,,56,63,0.0,0.0,,1158.0,443.84436708106944,,71,0,0,0,0,0,0,0,0,1,30.0,1,,5,102670,2,2,0,0,2,,800.0,,43,2.0,2.0,3.0,2.0,1.5,3,3,94.88082273911692,900.0,11355.659425195649,1,4,0,1,50.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10197558386003186,7570.439616797099,1,1,1_0,1_1_0,1_1_0,1_0_0 -5156,1,36.0,300.0,7,120,315.0,,,0,55,0.0,0.0,,401.0,147.94812236035648,,50,0,0,0,0,0,0,0,0,0,,1,,5,117351,2,1,0,0,1,,224.0,750.0,32,1.0,0.0,4.0,3.0,1.6,4,2,92.53786405574989,315.0,12184.424050632912,0,4,2,3,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03291087033196045,7615.265031645569,1,1,1_1,1_1_1,1_1_1,1_0_0 -5157,0,48.0,0.0,6,120,600.0,,,63,52,0.0,0.0,,732.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,1,5.0,1,,4,103413,2,1,0,0,1,,330.0,,43,3.0,2.0,4.0,3.0,2.0,3,2,100.24432913119949,600.0,27553.634090874835,4,1,5,0,70.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02656636861714087,13776.817045437418,3,2,3_0,3_1_0,3_1_0,3_0_0 -5158,2,71.0,0.0,2,120,648.0,,,0,86,0.0,0.0,,734.0,147.94812236035648,,71,0,0,0,0,0,0,0,0,0,,1,,2,122010,2,2,0,0,1,,240.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,94.9336267427484,648.0,13221.703211591894,0,5,0,1,80.0,0,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055514784158555194,13221.703211591894,2,1,2_0,2_1_0,2_1_0,2_0_1 -5159,1,49.0,413.0,8,120,540.0,,,56,85,0.0,0.0,,804.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,122067,2,2,0,0,1,,320.0,415.0,42,1.0,1.0,4.0,4.0,2.3,2,2,114.22824913349895,540.0,19154.464888257833,1,7,2,3,68.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.041974547693727125,8328.028212286015,1,1,1_1,1_1_1,1_1_1,1_0_0 -5160,1,29.0,189.0,8,120,398.0,,,0,69,0.0,0.0,,441.0,73.97406118017824,,50,0,0,0,0,0,0,0,0,1,15.0,8,2000.0,6,129621,1,2,0,0,2,,120.0,193.0,12,1.0,1.0,1.0,1.0,1.0,1,1,100.92222453489697,398.0,7741.72612168822,0,1,2,3,37.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05696404045663039,7741.72612168822,1,1,1_1,1_0_1,1_1_1,1_0_0 -5161,2,58.0,0.0,6,211,900.0,,,85,31,0.0,0.0,,984.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,2,6.0,1,,4,107932,2,1,0,0,1,,300.0,,42,2.0,0.0,8.0,5.0,3.0,3,3,107.92136435137674,900.0,66662.33367049161,6,1,0,1,300.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014760959387708505,22220.77789016387,6,3,6,6_1,6_2,6_0_0 -5162,2,21.0,0.0,6,211,0.0,,,0,85,0.0,0.0,,262.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,121817,2,1,0,0,1,,413.0,420.0,31,0.0,0.0,2.0,2.0,1.3,1,1,99.04834580360983,0.0,9142.933475311584,0,6,2,3,66.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028656010754914876,7033.02575023968,1,1,1_0,1_0_0,1_2_0,1_0_0 -5163,1,64.0,226.0,6,211,0.0,,,0,78,0.0,0.0,,729.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,4,110003,2,2,0,0,1,,202.0,333.0,11,0.0,3.0,1.0,1.0,1.0,2,2,116.27982775299365,0.0,9478.713394495015,0,5,2,3,38.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0769091721270298,9478.713394495015,1,1,1_1,1_0_1,1_2_1,1_0_0 -5164,2,49.0,0.0,7,211,600.0,,,0,46,0.0,0.0,,642.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,0,,1,,5,124216,1,2,0,0,1,,360.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,95.73680537237341,600.0,29387.17477854882,0,1,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02184626473411892,29387.17477854882,8,4,8,8_1,8_2,8_0_0 -5165,2,47.0,0.0,7,211,150.0,,,0,64,0.0,0.0,,171.0,36.12686708799403,,50,0,0,0,0,0,0,0,0,2,90.0,1,,5,110977,2,1,0,0,1,,120.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,93.43579584664872,150.0,31262.89940420255,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005469742194705496,31262.89940420255,8,4,8,8_1,8_2,8_0_0 -5166,2,49.0,0.0,7,211,600.0,,,85,52,0.0,0.0,,726.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,102121,2,1,0,0,1,,320.0,,42,2.0,1.0,5.0,4.0,2.5,2,2,85.0143740816544,600.0,63100.65234432083,6,1,0,1,113.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011505427805063593,25240.26093772833,7,4,7,7_1,7_2,7_0_0 -5167,1,45.0,112.0,9,211,420.0,,,68,22,0.0,0.0,,692.0,467.92894513973215,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,108889,2,1,0,0,1,,200.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,4,3,92.06386270296129,420.0,18224.056600344724,1,1,1,2,102.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03797178724669403,7009.252538594125,1,1,1_1,1_1_1,1_2_1,1_0_0 -5168,0,77.0,0.0,2,211,150.0,,,0,86,0.0,0.0,,238.0,151.38877636873687,,60,0,0,0,0,0,0,0,0,0,,1,,2,126952,1,2,0,0,1,,140.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,87.47377919369562,150.0,7545.736660929431,0,6,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03154098939502148,7545.736660929431,1,1,1_0,1_1_0,1_2_0,1_0_1 -5169,2,54.0,0.0,7,211,2400.0,,,85,11,0.0,0.0,,2668.0,461.04763712297137,,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,127663,2,1,0,0,1,,800.0,,42,1.0,0.0,5.0,4.0,2.5,2,2,90.91012241560881,2400.0,26619.208491104277,6,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10022837459241524,10647.683396441711,2,1,2_0,2_1_0,2_2_0,2_0_0 -5170,1,41.0,413.0,9,211,420.0,,,0,67,0.0,0.0,,546.0,216.76120252796414,,43,0,0,0,0,0,0,0,0,0,,2,2006.0,6,120267,2,2,0,0,1,,280.0,498.0,32,1.0,0.0,4.0,3.0,1.8,2,2,92.09064703438149,420.0,35075.94089834516,0,4,2,3,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015566225338969016,19486.633832413976,5,3,5,5_0,5_2,5_0_0 -5171,1,53.0,253.0,9,211,220.0,,,0,56,0.0,0.0,,286.0,113.54158227655265,,20,0,0,0,0,0,0,0,0,0,,2,2005.0,6,103031,2,1,0,0,1,,245.0,365.0,12,1.0,1.0,3.0,1.0,1.0,2,1,93.08325517428501,220.0,4945.899597954429,0,4,2,3,81.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05782567849098404,4945.899597954429,1,1,1_1,1_0_1,1_2_1,1_0_0 -5172,2,51.0,0.0,7,211,350.0,,,85,63,0.0,0.0,,438.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,2,5.0,2,,5,128641,2,2,0,0,1,,300.0,376.0,42,1.0,1.0,4.0,3.0,2.0,1,1,92.09064703438149,350.0,38179.35986700757,6,1,2,3,72.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011472167200437916,19089.679933503787,5,3,5,5_0,5_2,5_0_0 -5173,1,39.0,425.0,5,211,350.0,,,0,85,0.0,0.0,,614.0,454.1663291062106,,44,0,0,0,0,0,0,0,0,0,,1,,3,112218,2,2,0,0,2,,350.0,650.0,31,0.0,1.0,5.0,7.0,3.3999999999999995,2,2,113.65366687989707,350.0,40835.8593800044,0,6,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01503580454341191,12010.546876471883,2,1,2_1,2_1_1,2_2_1,2_0_0 -5174,1,47.0,251.0,6,211,200.0,,,0,46,0.0,0.0,,242.0,72.25373417598806,,30,0,0,0,0,0,0,0,0,0,,2,,4,125580,2,2,0,0,2,,240.0,257.0,12,1.0,0.0,2.0,1.0,1.0,5,3,117.13323511063386,200.0,5241.0,0,4,2,3,55.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.046174394199580235,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5175,1,50.0,357.0,6,211,225.0,,,56,63,0.0,0.0,,414.0,325.14180379194624,,71,0,0,0,0,0,0,0,0,0,,2,,4,103504,2,3,0,0,1,,240.0,381.0,43,2.0,0.0,3.0,3.0,2.0,2,2,93.85251751870277,225.0,10323.602243552185,4,4,2,3,72.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.040102281183738174,5161.801121776092,1,1,1_1,1_0_1,1_2_1,1_0_0 -5176,1,33.0,253.0,6,211,180.0,,,0,68,0.0,0.0,,262.0,141.06681434359572,,70,0,0,0,0,0,0,0,0,0,,2,,4,125456,2,2,0,0,1,,350.0,392.0,22,1.0,3.0,4.0,2.0,1.5,2,2,93.88785905833714,180.0,12157.063062988773,0,4,2,3,82.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021551257786729634,8104.708708659182,1,1,1_1,1_0_1,1_2_1,1_0_0 -5177,2,64.0,0.0,9,120,1120.0,,,71,11,0.0,0.0,,1249.0,221.92218354053472,,43,0,0,0,0,0,0,0,0,1,15.0,1,2011.0,6,108132,2,1,0,0,1,,250.0,,42,2.0,1.0,3.0,6.0,2.8999999999999995,3,3,142.89703082065301,1120.0,19806.370423726323,5,1,0,1,66.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06306051907944758,6829.782904733216,1,1,1_0,1_1_0,1_1_0,1_0_0 -5178,2,47.0,0.0,9,120,800.0,,,0,21,0.0,0.0,,865.0,111.82125527236246,,31,0,0,0,0,0,0,0,0,0,,1,2004.0,6,122234,2,1,0,0,1,,184.0,,12,1.0,4.0,7.0,1.0,1.0,2,2,104.39411504465185,800.0,17917.59747441367,0,1,1,2,180.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04827656170059742,17917.59747441367,4,2,4_0,4_1_0,4_1_0,4_0_0 -5179,1,38.0,413.0,9,120,465.0,,,63,81,0.0,0.0,,723.0,443.84436708106944,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,125370,2,1,0,0,1,,225.0,586.0,43,2.0,0.0,4.0,4.0,2.3,2,2,149.01127921690258,465.0,12881.398244041233,4,4,2,3,68.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05612744721516939,5600.6079321918405,1,1,1_1,1_1_1,1_1_1,1_0_0 -5180,2,54.0,0.0,6,120,130.0,,,46,48,0.0,0.0,,216.0,147.94812236035648,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,102565,2,1,0,0,1,,220.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,85.83903390251116,130.0,109925.46455502782,1,1,0,1,98.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0019649678159137742,73283.64303668521,10,5,10,10_1,10_1,10_0_0 -5181,2,47.0,0.0,2,120,350.0,,,0,52,0.0,0.0,,482.0,227.0831645531053,,50,2,2,1,2,1,2,2,2,1,20.0,1,,2,128927,2,2,0,0,1,,150.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,85.51654210704396,350.0,19119.123019058214,0,1,0,1,60.0,0,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.025210361349709165,12746.082012705476,2,1,2_0,2_1_0,2_1_0,2_0_1 -5182,1,66.0,253.0,7,120,300.0,,,0,78,0.0,0.0,,364.0,110.10092826817227,,31,2,2,1,2,1,2,2,2,0,,2,,5,111604,2,1,0,0,1,,140.0,421.0,11,0.0,4.0,4.0,1.0,1.0,2,2,99.20481962811965,300.0,10695.405525230388,0,5,2,3,73.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03403330515531426,10695.405525230388,2,1,2_1,2_0_1,2_1_1,2_0_0 -5183,2,56.0,0.0,7,120,550.0,,,77,63,0.0,0.0,,802.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,5,120192,2,1,0,0,1,,450.0,,42,4.0,0.0,6.0,5.0,3.0,2,2,87.21534683673043,550.0,4974.2276045163635,6,1,0,1,100.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16123106213954141,1658.075868172121,1,1,1_0,1_1_0,1_1_0,1_0_0 -5184,2,84.0,0.0,2,120,510.0,,,0,77,0.0,0.0,,639.0,221.92218354053472,,20,2,2,1,2,1,2,2,2,0,,1,,2,107352,2,1,0,0,2,,400.0,,11,0.0,10.0,7.0,1.0,1.0,2,2,88.32229583407285,510.0,11056.05560735444,0,5,0,1,115.0,0,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05779638079741024,11056.05560735444,2,1,2_0,2_1_0,2_1_0,2_0_1 -5185,2,48.0,0.0,6,120,2000.0,,,22,64,0.0,0.0,,2129.0,221.92218354053472,,41,0,0,0,0,0,0,0,0,0,,1,,4,108317,2,1,0,0,1,,800.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,2,2,93.9287263161135,2000.0,12796.877481600353,1,1,0,1,135.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1663687101061275,4128.024994064631,1,1,1_0,1_1_0,1_1_0,1_0_0 -5186,2,34.0,0.0,9,120,160.0,,,42,53,0.0,0.0,,181.0,36.12686708799403,,50,2,2,1,2,1,2,2,2,2,5.0,1,2009.0,6,132322,2,1,0,0,1,,150.0,850.0,43,2.0,0.0,4.0,3.0,1.8,2,2,146.2205917404708,160.0,53921.3500565518,1,1,2,3,100.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0033567408792652682,29956.30558697322,8,4,8,8_1,8_1,8_0_0 -5187,2,47.0,0.0,9,120,450.0,,,52,38,0.0,0.0,,579.0,221.92218354053472,,50,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,118041,2,1,0,0,1,,280.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,81.44335077458874,450.0,80841.5232606217,1,1,1,2,130.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0071621609371880016,38495.963457438906,9,5,9,9_1,9_1,9_0_0 -5188,2,36.0,0.0,9,120,450.0,,,0,33,0.0,0.0,,514.0,110.10092826817227,,70,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,123865,2,1,0,0,1,,307.0,820.0,32,1.0,0.0,4.0,5.0,2.4000000000000004,2,2,108.75070474508264,450.0,41683.614177995856,0,1,2,3,91.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012330984492014916,17368.17257416494,4,2,4_0,4_1_0,4_1_0,4_0_0 -5189,1,62.0,242.0,9,120,0.0,,,0,78,0.0,0.0,,968.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,126397,2,1,0,0,1,,124.0,400.0,11,0.0,2.0,1.0,1.0,1.0,2,2,89.31351333143698,0.0,8732.864091081241,0,5,2,3,38.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11084565039648397,8732.864091081241,1,1,1_1,1_0_1,1_1_1,1_0_0 -5190,2,53.0,0.0,7,120,400.0,,,0,56,0.0,0.0,,464.0,110.10092826817227,,50,2,2,1,2,1,2,2,2,1,20.0,1,,5,117505,2,2,0,0,1,,400.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,86.88453095184862,400.0,21415.940415585355,0,1,1,2,69.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02166610435945769,10707.970207792678,2,1,2_0,2_1_0,2_1_0,2_0_0 -5191,2,24.0,0.0,7,120,450.0,,,0,63,0.0,0.0,,708.0,443.84436708106944,,50,0,0,0,0,0,0,0,0,0,,1,,5,115104,2,1,0,0,1,,280.0,,22,3.0,1.0,5.0,3.0,2.0,1,1,88.31892533586743,450.0,26159.763602192917,0,1,0,1,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02706446475459166,13079.881801096459,2,1,2_0,2_1_0,2_1_0,2_0_0 -5192,1,44.0,357.0,9,120,270.0,,,0,85,0.0,0.0,,480.0,361.26867087994026,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,127861,2,1,0,0,1,,320.0,427.0,21,0.0,5.0,3.0,2.0,1.5,1,1,99.16307027860518,270.0,10646.378039114934,0,7,2,3,55.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04508575575998463,7097.585359409956,1,1,1_1,1_0_1,1_1_1,1_0_0 -5193,1,30.0,357.0,9,120,240.0,,,0,52,0.0,0.0,,350.0,189.2359704609211,,20,0,0,0,0,0,0,0,0,0,,2,2006.0,6,124954,2,1,0,0,1,,200.0,394.0,32,1.0,0.0,2.0,2.0,1.3,2,2,101.95196987886236,240.0,9577.47743995793,0,4,2,3,59.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036544069374653355,7367.290338429176,1,1,1_1,1_0_1,1_1_1,1_0_0 -5195,2,34.0,0.0,9,120,0.0,,,0,46,0.0,0.0,,363.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,113375,2,2,0,0,1,,171.0,395.0,12,1.0,0.0,2.0,1.0,1.0,3,3,101.95196987886236,0.0,18588.169696762663,0,1,2,3,51.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019528549928356877,18588.169696762663,4,2,4_0,4_0_0,4_1_0,4_0_0 -5196,1,41.0,468.0,9,120,0.0,,,64,68,0.0,0.0,,665.0,0.0,,33,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,131067,1,1,0,0,1,,236.0,510.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,99.20041158463694,0.0,9318.206287202393,1,1,2,3,69.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07136566625631692,3583.9254950778436,1,1,1_1,1_0_1,1_1_1,1_0_0 -5197,1,40.0,23.0,9,120,480.0,,,63,54,0.0,0.0,,566.0,147.94812236035648,,43,0,0,0,0,0,0,0,0,2,10.0,8,2007.0,6,101983,2,1,0,0,1,,320.0,509.0,43,2.0,0.0,4.0,3.0,2.0,2,2,97.30150607896893,480.0,44462.177783579544,4,1,2,3,69.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012729920759955018,22231.088891789772,6,3,6,6_0,6_1,6_0_0 -5198,2,48.0,0.0,9,120,1100.0,,,46,22,0.0,0.0,,1186.0,147.94812236035648,,41,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,125465,2,1,0,0,1,,1200.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,80.48330207986726,1100.0,51411.021455653274,1,1,0,1,135.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023068983389544863,28561.67858647404,8,4,8,8_1,8_1,8_0_0 -5199,2,63.0,0.0,7,120,900.0,,,77,74,0.0,0.0,,1260.0,619.317721508469,,41,0,0,0,0,0,0,0,0,0,,1,,5,114360,2,1,0,0,1,,960.0,,41,1.0,0.0,5.0,4.0,2.5,2,2,82.46589108309136,900.0,64427.783629025565,5,5,0,1,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019556780150238682,25771.113451610225,7,4,7,7_1,7_1,7_0_0 -5200,2,43.0,0.0,7,120,450.0,,,0,42,0.0,0.0,,576.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,0,,1,,5,130867,2,2,0,0,1,,800.0,,32,2.0,1.0,4.0,6.0,2.8999999999999995,2,2,99.17905753813372,450.0,28692.556235403736,0,4,0,1,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02007489312817914,9893.98490875991,2,1,2_0,2_1_0,2_1_0,2_0_0 -5201,2,50.0,0.0,7,211,350.0,,,0,52,0.0,0.0,,476.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,0,,1,,5,129734,2,3,0,0,1,,280.0,,32,2.0,1.0,5.0,4.0,2.3,3,2,93.86764860077558,350.0,9420.532476982644,0,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050527929409831064,4095.8836856446283,1,1,1_0,1_1_0,1_2_0,1_0_0 -5202,2,46.0,0.0,7,211,450.0,,,0,42,0.0,0.0,,538.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,113209,2,1,0,0,1,,150.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,91.2140979231603,450.0,47567.13962387979,0,1,1,2,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011310329026593638,31711.42641591986,8,4,8,8_1,8_2,8_0_0 -5203,2,47.0,0.0,5,211,450.0,,,46,34,0.0,0.0,,534.0,144.50746835197612,,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,102921,2,1,0,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,93.17216882489325,450.0,79915.78676818204,1,1,1,2,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006682033945921292,31966.314707272813,8,4,8,8_1,8_2,8_0_0 -5204,2,59.0,0.0,6,211,400.0,,,78,65,0.0,0.0,,488.0,151.38877636873687,,43,0,0,0,0,0,0,0,0,0,,1,,4,105997,2,1,0,0,1,,160.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,86.04982698941411,400.0,12349.72805223628,7,4,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03951504016411384,8233.152034824187,1,1,1_0,1_1_0,1_2_0,1_0_0 -5205,2,71.0,0.0,6,211,2230.0,,,75,31,0.0,0.0,,2419.0,325.14180379194624,,42,0,0,0,0,0,0,0,0,0,,1,,4,119829,2,1,0,0,1,,160.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,97.59848809329702,2230.0,170714.004359338,5,1,0,1,250.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01416989783045694,113809.33623955866,10,5,10,10_1,10_2,10_0_0 -5206,0,41.0,0.0,7,211,0.0,,,46,43,0.0,0.0,,1217.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,100099,1,3,0,0,2,,312.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,85.90880290533619,0.0,54897.1983994642,1,1,5,0,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022168708704302077,36598.13226630947,9,5,9,9_1,9_2,9_0_0 -5207,2,55.0,0.0,5,211,600.0,,,34,37,0.0,0.0,,663.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,2,10.0,1,,3,104999,2,1,0,0,1,,180.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,108.69105708541957,600.0,126779.71148095743,1,1,0,1,215.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005229543372951941,84519.80765397161,10,5,10,10_1,10_2,10_0_0 -5208,2,41.0,0.0,7,211,1270.0,,,43,22,0.0,0.0,,1314.0,75.69438818436844,,50,2,2,1,2,1,2,2,2,2,40.0,1,,5,118305,2,1,0,0,1,,290.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,4,4,93.17216882489325,1270.0,52529.60972141492,1,1,1,2,160.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.025014463403947914,20203.69604669805,5,3,5,5_1,5_2,5_0_0 -5209,2,61.0,0.0,6,211,850.0,,,85,43,0.0,0.0,,1114.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,4,110887,2,1,0,0,1,,400.0,,42,1.0,3.0,4.0,2.0,1.5,3,3,92.72892263296244,850.0,89069.76283915146,6,4,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012507050254660954,59379.84189276764,10,5,10,10_1,10_2,10_0_0 -5210,1,37.0,253.0,9,211,250.0,,,52,65,0.0,0.0,,376.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,133092,2,2,0,0,1,,300.0,416.0,43,2.0,0.0,2.0,2.0,1.5,2,2,149.56531312745932,250.0,7285.048696423714,4,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05161255822278597,4856.699130949143,1,1,1_1,1_0_1,1_2_1,1_0_0 -5211,2,31.0,0.0,6,211,0.0,,,0,52,0.0,0.0,,141.0,0.0,,43,0,0,0,0,0,0,0,0,2,10.0,2,,4,119385,2,3,0,0,1,,115.0,282.0,12,1.0,1.0,1.0,1.0,1.0,2,2,93.85251751870277,0.0,28133.706776738865,0,1,2,3,34.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0050117818145662815,28133.706776738865,8,4,8,8_0,8_2,8_0_0 -5212,1,32.0,413.0,5,211,0.0,,,0,56,0.0,0.0,,268.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,123175,2,1,0,0,1,,636.0,496.0,32,1.0,0.0,4.0,3.0,1.6,2,2,119.3605629397594,0.0,18255.899052308527,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014680186345909401,11409.936907692829,2,1,2_1,2_1_1,2_2_1,2_0_0 -5213,1,76.0,167.0,2,211,635.0,,,0,77,0.0,0.0,,887.0,433.5224050559283,,42,0,0,0,0,0,0,0,0,0,,1,,2,107440,2,2,0,0,1,,360.0,172.0,11,0.0,1.0,1.0,1.0,1.0,2,2,100.26478617228588,635.0,10610.22912225631,0,5,2,3,28.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08359857169713746,10610.22912225631,2,1,2_1,2_1_1,2_2_1,2_0_1 -5214,2,63.0,0.0,2,211,620.0,,,77,77,0.0,0.0,,708.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,2,108358,2,1,0,0,1,,370.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,82.23153982982286,620.0,30296.739834954926,6,5,0,1,84.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023368851033375663,20197.826556636617,5,3,5,5_1,5_2,5_0_1 -5215,0,50.0,0.0,1,211,550.0,,,0,52,0.0,0.0,,748.0,340.62474682965797,,20,0,0,0,0,0,0,0,0,0,,1,,1,118954,2,1,0,0,1,,240.0,,22,1.0,0.0,4.0,2.0,1.5,3,2,93.43579584664872,550.0,29775.908509734312,0,1,5,0,85.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02512097992763057,19850.60567315621,5,3,5,5_1,5_2,5_1_0 -5216,1,25.0,240.0,2,211,300.0,,,0,64,0.0,0.0,,564.0,454.1663291062106,,43,0,0,0,0,0,0,0,0,0,,1,,2,118052,2,3,0,0,1,,160.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,2,124.44059036806946,300.0,3960.4710805997775,0,4,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1424073016876031,3960.4710805997775,1,1,1_1,1_1_1,1_2_1,1_0_1 -5217,2,50.0,0.0,8,211,500.0,,,0,55,0.0,0.0,,698.0,340.62474682965797,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126981,2,1,0,0,2,,400.0,,32,1.0,2.0,5.0,4.0,2.1,2,2,86.37426534693522,500.0,38162.17917369558,0,1,0,1,102.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018290360118667366,18172.46627318837,4,2,4_0,4_1_0,4_2_0,4_0_0 -5218,1,58.0,253.0,6,211,330.0,,,0,52,0.0,0.0,,528.0,340.62474682965797,,20,0,0,0,0,0,0,0,0,0,,1,,4,112167,1,2,0,0,1,,350.0,297.0,12,1.0,6.0,2.0,1.0,1.0,1,1,104.92041765374766,330.0,5241.0,0,4,2,3,46.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10074413279908415,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -5219,2,64.0,0.0,5,211,252.0,,,0,78,0.0,0.0,,384.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,3,108620,2,1,0,0,1,,225.0,,11,0.0,6.0,6.0,1.0,1.0,2,2,90.93633288715688,252.0,31099.717997499592,0,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012347378842177074,31099.717997499592,8,4,8,8_1,8_2,8_0_0 -5220,2,43.0,0.0,6,211,1080.0,,,62,56,0.0,0.0,,1344.0,454.1663291062106,,60,0,0,0,0,0,0,0,0,0,,1,,4,113066,2,1,0,0,2,,480.0,264.0,43,3.0,3.0,4.0,4.0,2.5,1,1,102.44011837761575,1080.0,33138.0,4,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04055766793409379,13255.2,3,2,3_0,3_1_0,3_2_0,3_0_0 -5221,1,59.0,350.0,6,211,0.0,,,0,77,0.0,0.0,,525.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,132166,2,1,0,0,1,,429.0,437.0,31,0.0,3.0,3.0,3.0,1.8,2,2,97.69018389833997,0.0,10958.290807666926,0,7,2,3,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.047908931165860806,6087.939337592737,1,1,1_1,1_1_1,1_2_1,1_0_0 -5222,2,43.0,0.0,7,211,360.0,,,0,81,0.0,0.0,,624.0,454.1663291062106,,60,0,0,0,0,0,0,0,0,0,,1,,5,128570,2,2,0,0,2,,1500.0,,32,4.0,0.0,4.0,9.0,4.6,2,2,81.82675167143742,360.0,24400.937291115686,0,4,0,1,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02557278814970754,5304.5515850251495,1,1,1_0,1_1_0,1_2_0,1_0_0 -5223,2,51.0,0.0,9,211,738.0,,,0,52,0.0,0.0,,822.0,144.50746835197612,,70,2,2,2,2,1,2,2,2,2,20.0,1,2004.0,6,115332,2,1,0,0,1,,420.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,94.73868325501057,738.0,30184.082059314216,0,1,1,2,59.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.027232897074183075,20122.721372876145,5,3,5,5_1,5_2,5_0_0 -5224,0,61.0,0.0,9,211,0.0,,,0,86,0.0,0.0,,1044.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,2010.0,6,107697,2,1,0,0,1,,82.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,147.2095580936619,0.0,9400.577983059286,0,7,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11105700116326729,9400.577983059286,1,1,1_0,1_1_0,1_2_0,1_0_0 -5225,2,55.0,0.0,7,300,2240.0,,,54,21,0.0,103.51725048194578,,2436.0,165.1513924022584,,43,0,0,0,0,0,0,0,0,0,,1,,5,130476,2,1,0,0,1,,500.0,,43,3.0,2.0,7.0,4.0,2.5,2,2,106.27681535591307,2240.0,67334.83678053577,1,1,0,1,110.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036177410037238934,26933.934712214308,7,4,7,7_1,7_1,7_0_0 -5226,2,55.0,0.0,7,300,1200.0,,,43,43,0.0,0.0,,1310.0,189.2359704609211,,42,0,0,0,0,0,0,0,0,2,20.0,1,,5,114078,2,2,0,0,1,,150.0,,43,2.0,0.0,4.0,4.0,2.5,2,1,100.89965015765284,1200.0,133613.1622702942,1,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009804423289899547,53445.264908117686,10,5,10,10_1,10_1,10_0_0 -5227,1,26.0,142.0,7,300,0.0,,,43,63,0.0,0.0,,425.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,,5,130802,1,1,0,0,1,,321.0,700.0,43,2.0,0.0,5.0,4.0,2.1,3,2,106.91398953895978,0.0,31083.515259200765,4,1,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013672842227012899,14801.673932952745,3,2,3_1,3_1_1,3_1_1,3_0_0 -5228,1,35.0,300.0,6,300,540.0,,,81,46,0.0,0.0,,827.0,464.48829113135173,,41,2,2,2,2,1,2,2,2,0,,1,,4,118526,1,3,0,0,2,,50.0,350.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,105.73765399009407,540.0,16400.229766493172,4,4,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,1,0.05042612279064647,6074.159172775249,1,1,1_1,1_1_1,1_1_1,1_0_0 -5229,1,56.0,200.0,8,300,200.0,,,0,43,0.0,0.0,,248.0,82.5756962011292,,31,0,0,0,0,0,0,0,0,1,5.0,1,2003.0,6,105028,2,1,0,0,1,,100.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,94.81098121887305,200.0,20822.836411807675,0,1,1,2,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011910000880541451,13881.890941205116,3,2,3_1,3_1_1,3_1_1,3_0_0 -5230,2,60.0,0.0,7,300,504.0,,,77,52,0.0,0.0,,1354.0,536.7420253073398,,31,0,0,0,0,0,0,0,0,2,3.0,1,,5,133158,1,3,0,0,2,,200.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,111.50975662097113,504.0,20778.0,6,1,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06516507844835884,13852.0,3,2,3_0,3_1_0,3_1_0,3_0_0 -5231,2,42.0,0.0,9,300,700.0,,,85,64,0.0,0.0,,800.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107322,2,1,0,0,2,,300.0,,42,1.0,0.0,4.0,4.0,2.5,3,3,91.99128441199979,700.0,35133.4586288416,6,1,1,2,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02277031727651395,14053.383451536642,3,2,3_0,3_1_0,3_1_0,3_0_0 -5232,1,36.0,397.0,8,300,1140.0,,,0,52,0.0,0.0,,1228.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,116083,2,1,0,0,1,,280.0,407.0,32,1.0,1.0,4.0,3.0,1.8,3,2,103.41148591349278,1140.0,8254.220777093085,0,4,2,3,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14877237151299805,4585.678209496158,1,1,1_1,1_1_1,1_1_1,1_0_0 -5233,2,86.0,0.0,2,300,504.0,,,0,86,0.0,0.0,,744.0,412.878481005646,,10,0,0,0,0,0,0,0,0,0,,1,,2,104990,1,2,0,0,1,,108.0,,11,0.0,9.0,6.0,1.0,1.0,2,2,96.14547923647832,504.0,14824.482004577518,0,6,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050187251046631305,14824.482004577518,3,2,3_0,3_1_0,3_1_0,3_0_1 -5234,2,32.0,0.0,2,300,738.0,,,64,43,0.0,0.0,,989.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,0,,1,,2,120100,2,1,0,0,2,,216.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,90.54295783403856,738.0,65539.99048147508,4,1,1,2,97.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015090023552559739,36411.10582304171,9,5,9,9_1,9_1,9_0_1 -5235,1,80.0,250.0,7,300,0.0,,,0,72,0.0,0.0,,356.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,103192,2,1,0,0,2,,277.0,650.0,11,0.0,3.0,4.0,1.0,1.0,4,3,105.73765399009407,0.0,3445.7624479545993,0,5,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10331530550265332,3445.7624479545993,1,1,1_1,1_1_1,1_1_1,1_0_0 -5236,2,48.0,0.0,9,300,732.0,,,43,34,0.0,0.0,,868.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,2,7.0,1,2010.0,6,117957,2,1,0,0,1,,170.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,159.77651552732726,732.0,95309.97803641952,1,1,1,2,146.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009107126219967471,47654.98901820976,10,5,10,10_1,10_1,10_0_0 -5237,2,32.0,0.0,6,300,0.0,,,0,64,0.0,310.55175144583734,,841.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,0,,1,,4,112685,1,2,0,0,2,,259.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,96.82569990665701,0.0,7707.500292987849,0,4,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10911449471693531,7707.500292987849,1,1,1_0,1_1_0,1_1_0,1_0_0 -5238,2,66.0,0.0,2,300,480.0,,,0,78,0.0,0.0,,590.0,189.2359704609211,,50,0,0,0,0,0,0,0,0,0,,1,,2,126966,2,1,0,0,1,,160.0,,21,1.0,5.0,7.0,3.0,1.8,1,1,93.93656321074636,480.0,22442.351684260168,0,5,0,1,150.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026289580000379086,12467.973157922315,2,1,2_0,2_1_0,2_1_0,2_0_1 -5239,1,56.0,37.0,8,300,600.0,,,0,42,0.0,0.0,,732.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,114324,2,1,0,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,92.73109719272854,600.0,6332.0,0,4,1,2,85.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11560328490208464,6332.0,1,1,1_1,1_1_1,1_1_1,1_0_0 -5240,2,47.0,0.0,2,300,400.0,,,77,63,0.0,0.0,,466.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,50.0,1,,2,100716,1,3,0,0,2,,200.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,92.23926097417967,400.0,53964.906578240654,5,1,1,2,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00863524148465583,35976.60438549377,9,5,9,9_1,9_1,9_0_1 -5241,2,50.0,0.0,9,300,0.0,,,68,52,0.0,0.0,,703.0,0.0,,60,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,115979,2,1,0,0,1,,561.0,,43,2.0,0.0,4.0,5.0,2.8,3,2,89.19557714432115,0.0,36296.23912933617,1,1,1,2,110.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019368397852321986,12962.94254619149,2,1,2_0,2_1_0,2_1_0,2_0_0 -5242,2,65.0,0.0,8,300,360.0,,,77,75,0.0,207.03450096389156,,648.0,151.38877636873687,,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,126622,2,1,0,0,1,,140.0,,41,0.0,3.0,2.0,2.0,1.5,1,1,104.012135754505,360.0,37298.85766793076,5,5,1,2,47.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017373186218438665,24865.905111953838,7,4,7,7_1,7_1,7_0_0 -5243,2,51.0,0.0,7,300,480.0,,,52,52,0.0,0.0,,700.0,378.4719409218422,,31,0,0,0,0,0,0,0,0,0,,1,,5,104095,2,1,0,0,2,,400.0,,43,4.0,0.0,5.0,4.0,2.5,1,1,90.54295783403856,480.0,39280.754809801314,4,1,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017820431490927876,15712.301923920526,3,2,3_0,3_1_0,3_1_0,3_0_0 -5244,1,29.0,306.0,6,300,0.0,,,63,55,0.0,0.0,,1446.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,110028,2,1,0,0,2,,630.0,800.0,43,4.0,2.0,8.0,6.0,3.0999999999999996,3,2,108.5843385795152,0.0,40897.02108055375,4,1,2,3,130.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.035357098433938576,13192.587445339921,2,1,2_1,2_1_1,2_1_1,2_0_0 -5245,2,49.0,0.0,5,211,400.0,,,42,52,0.0,0.0,,610.0,361.26867087994026,,31,0,0,0,0,0,0,0,0,1,5.0,1,,3,132541,2,2,0,0,2,,400.0,700.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,3,2,106.86199532892614,400.0,38229.13478287995,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01595641657768239,12331.97896221934,2,1,2_0,2_1_0,2_2_0,2_0_0 -5246,2,30.0,0.0,2,211,500.0,,,53,34,0.0,0.0,,600.0,172.03270041901916,,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,129718,2,1,0,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,82.23153982982286,500.0,77642.88238067576,1,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007727688380478411,36972.80113365512,9,5,9,9_1,9_2,9_0_1 -5247,1,29.0,550.0,7,211,650.0,,,0,85,0.0,0.0,,770.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,1,,5,132524,2,2,0,0,1,,400.0,770.0,31,0.0,1.0,3.0,6.0,2.5,1,1,99.4848840938933,650.0,22653.965530931167,0,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03398963413044224,9061.586212372467,1,1,1_1,1_1_1,1_2_1,1_0_0 -5248,2,52.0,0.0,5,211,300.0,,,63,52,0.0,0.0,,476.0,302.77755273747374,,20,0,0,0,0,0,0,0,0,1,5.0,1,,3,129130,2,2,0,0,2,,460.0,,43,2.0,0.0,3.0,3.0,2.0,1,1,94.01755949540663,300.0,22925.649402390438,1,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020762770626264915,11462.824701195219,2,1,2_0,2_1_0,2_2_0,2_0_0 -5249,1,63.0,196.0,6,211,150.0,,,0,52,0.0,0.0,,238.0,151.38877636873687,,20,0,0,0,0,0,0,0,0,0,,2,,4,123429,2,3,0,0,2,,160.0,240.0,12,1.0,3.0,1.0,1.0,1.0,3,3,87.33284455852322,150.0,5241.0,0,4,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04541118107231444,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5250,1,35.0,357.0,6,211,0.0,,,47,85,0.0,0.0,,155.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,4,119027,1,3,0,0,2,,191.0,484.0,42,1.0,0.0,3.0,3.0,1.8,2,2,98.4435042982658,0.0,9560.348484848484,4,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016212798126098486,5311.304713804713,1,1,1_1,1_0_1,1_2_1,1_0_0 -5251,2,46.0,0.0,7,211,480.0,,,55,54,0.0,0.0,,568.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,1,20.0,2,,5,105815,1,2,0,0,2,,480.0,505.0,43,2.0,0.0,4.0,2.0,1.5,2,2,109.27338596466382,480.0,40743.74838520115,1,1,2,3,104.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013940789017004327,27162.498923467432,7,4,7,7_0,7_2,7_0_0 -5252,2,41.0,0.0,9,211,800.0,,,52,33,0.0,0.0,,888.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,121678,1,1,0,0,2,,280.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,81.5826751509264,800.0,50885.07220089451,1,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017451090498489846,24230.98676233072,7,4,7,7_1,7_2,7_0_0 -5253,1,29.0,285.0,7,211,420.0,,,55,68,0.0,0.0,,508.0,151.38877636873687,,42,0,0,0,0,0,0,0,0,0,,2,,5,116302,2,1,0,0,1,,330.0,365.0,43,2.0,0.0,2.0,2.0,1.5,2,2,111.93568453753001,420.0,11285.24467627337,4,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04501453132585092,7523.496450848914,1,1,1_1,1_0_1,1_2_1,1_0_0 -5254,1,43.0,413.0,9,211,800.0,,,0,85,0.0,0.0,,888.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,129614,2,3,0,0,2,,600.0,458.0,31,0.0,4.0,4.0,3.0,1.6,2,2,105.02347131998027,800.0,14411.076635877347,0,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06161926845835127,9006.922897423341,1,1,1_1,1_0_1,1_2_1,1_0_0 -5255,2,57.0,0.0,9,211,360.0,,,0,68,0.0,0.0,,448.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,116993,2,2,0,0,1,,270.0,228.0,12,1.0,4.0,1.0,1.0,1.0,1,1,172.93811258160036,360.0,18680.68894965863,0,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023981984883281657,18680.68894965863,4,2,4_0,4_0_0,4_2_0,4_0_0 -5256,1,27.0,406.0,9,211,548.0,,,52,63,0.0,0.0,,680.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,122569,1,1,0,0,1,,400.0,493.0,43,2.0,0.0,4.0,4.0,2.1,2,2,93.88785905833714,548.0,17905.852411977292,4,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03797641041345485,8526.596386655852,1,1,1_1,1_0_1,1_2_1,1_0_0 -5257,1,29.0,389.0,7,211,360.0,,,0,81,0.0,0.0,,426.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,2,,5,108792,1,3,0,0,2,,300.0,439.0,32,1.0,0.0,3.0,3.0,1.6,2,2,92.09064703438149,360.0,10955.255425800802,0,4,2,3,64.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038885446613752546,6847.034641125501,1,1,1_1,1_0_1,1_2_1,1_0_0 -5258,2,54.0,0.0,9,211,780.0,,,56,52,0.0,0.0,,912.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,110727,2,1,0,0,1,,1200.0,,43,4.0,1.0,5.0,4.0,2.5,2,2,93.86764860077558,780.0,45592.9009179548,4,1,1,2,130.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0200031141172868,18237.16036718192,4,2,4_0,4_1_0,4_2_0,4_0_0 -5259,2,51.0,0.0,2,211,800.0,,,55,63,0.0,0.0,,1869.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,104423,2,2,0,0,2,,300.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,88.82776250852193,800.0,52908.352219146815,1,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03532523546109671,26454.176109573407,7,4,7,7_1,7_2,7_0_1 -5260,2,40.0,0.0,2,211,900.0,,,21,11,0.0,0.0,,1164.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,2,132054,2,1,0,0,1,,780.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,2,2,106.31514999916412,900.0,51551.46762550112,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022579376565104822,16629.505685645527,4,2,4_0,4_1_0,4_2_0,4_0_1 -5261,2,54.0,0.0,6,211,252.0,,,0,11,0.0,0.0,,296.0,75.69438818436844,,33,0,0,0,0,0,0,0,0,1,6.0,1,,4,114695,2,2,0,0,2,,252.0,,12,1.0,4.0,4.0,1.0,1.0,2,2,92.49796853910831,252.0,77416.47567714937,0,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00382347552521522,77416.47567714937,10,5,10,10_1,10_2,10_0_0 -5262,2,61.0,0.0,6,211,300.0,,,77,48,0.0,0.0,,420.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,4,125769,2,3,0,0,2,,300.0,,42,1.0,5.0,5.0,2.0,1.5,2,2,91.89230228283724,300.0,45983.53229206194,6,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009133704590860757,30655.688194707956,8,4,8,8_1,8_2,8_0_0 -5263,2,70.0,0.0,9,211,350.0,,,75,77,0.0,0.0,,504.0,264.9303586452895,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,107680,2,1,0,0,1,,128.0,,41,0.0,5.0,5.0,2.0,1.5,3,1,86.60710037601925,350.0,9395.550639097464,5,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0536424121756864,6263.700426064976,1,1,1_0,1_1_0,1_2_0,1_0_0 -5264,2,62.0,0.0,7,211,292.0,,,0,77,0.0,0.0,,380.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,5,103214,2,1,0,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,90.91348978979327,292.0,5018.480249642052,0,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07572013460192534,5018.480249642052,1,1,1_0,1_1_0,1_2_0,1_0_0 -5265,2,66.0,0.0,5,211,420.0,,,77,11,0.0,0.0,,750.0,567.7079113827633,,60,0,0,0,0,0,0,0,0,0,,1,,3,106788,2,1,0,0,2,,272.0,,42,1.0,5.0,6.0,2.0,1.5,2,2,95.38782655810441,420.0,23857.933453621554,6,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03143608399520255,15905.288969081035,3,2,3_0,3_1_0,3_2_0,3_0_0 -5266,2,43.0,0.0,8,211,0.0,,,52,62,0.0,0.0,,967.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,105008,2,1,0,0,2,,339.0,650.0,43,2.0,0.0,3.0,2.0,1.5,3,2,99.28127693052902,0.0,15945.743943281574,1,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060643141106466,10630.495962187715,2,1,2_0,2_1_0,2_2_0,2_0_0 -5267,0,36.0,0.0,9,211,350.0,,,0,33,0.0,0.0,,350.0,0.0,,50,0,0,0,0,0,0,0,0,1,2.0,1,2009.0,6,115863,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,153.3962110941362,350.0,29905.727117759106,0,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011703443912994086,23004.405475199314,6,3,6,6_1,6_2,6_0_0 -5268,2,38.0,0.0,6,211,600.0,,,56,11,0.0,0.0,,688.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,2,1.0,1,,4,125888,2,2,0,0,2,,150.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,90.91012241560881,600.0,79964.12131251114,4,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00860385868946397,33318.383880212976,8,4,8,8_1,8_2,8_0_0 -5269,2,45.0,0.0,7,211,390.0,,,0,85,0.0,0.0,,654.0,454.1663291062106,,44,0,0,0,0,0,0,0,0,0,,1,,5,109661,1,1,0,0,2,,450.0,,21,1.0,3.0,5.0,3.0,2.0,1,1,85.0143740816544,390.0,10546.513647026382,0,7,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06201101348637585,5273.256823513191,1,1,1_0,1_1_0,1_2_0,1_0_0 -5270,2,60.0,0.0,5,211,390.0,,,71,52,0.0,0.0,,566.0,302.77755273747374,,42,0,0,0,0,0,0,0,0,0,,1,,3,109435,2,1,0,0,2,,780.0,,42,1.0,5.0,3.0,2.0,1.5,1,1,86.60710037601925,390.0,22929.937730229947,5,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024683887355429115,15286.625153486631,3,2,3_0,3_1_0,3_2_0,3_0_0 -5271,1,53.0,325.0,7,211,240.0,,,42,52,0.0,0.0,,416.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,0,,1,,5,132758,1,2,0,0,2,,288.0,,43,2.0,0.0,4.0,6.0,2.9000000000000004,1,1,92.48521309527291,240.0,19422.358631522737,4,4,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021418613871377428,6697.365045352667,1,1,1_1,1_1_1,1_2_1,1_0_0 -5272,2,50.0,0.0,7,211,650.0,,,0,52,0.0,0.0,,1130.0,825.756962011292,,31,0,0,0,0,0,0,0,0,0,,1,,5,102521,1,2,0,0,2,,768.0,,32,4.0,3.0,5.0,7.0,3.6,2,2,87.11237205998248,650.0,18784.588235294115,0,4,0,1,76.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06015569709837226,5217.941176470587,1,1,1_0,1_1_0,1_2_0,1_0_0 -5273,2,56.0,0.0,6,211,420.0,,,85,69,0.0,0.0,,684.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,4,113871,1,3,0,0,2,,280.0,,42,2.0,2.0,4.0,4.0,2.5,1,1,92.48521309527291,420.0,27463.407065604686,7,4,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02490586832019998,10985.362826241875,2,1,2_0,2_1_0,2_2_0,2_0_0 -5274,2,44.0,0.0,7,211,0.0,,,52,63,0.0,0.0,,325.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,111399,2,1,0,0,2,,315.0,800.0,43,2.0,0.0,4.0,3.0,1.8,1,1,97.07867320219557,0.0,33617.70028430805,1,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009667526251095241,18676.500157948914,4,2,4_0,4_1_0,4_2_0,4_0_0 -5275,1,34.0,60.0,8,211,240.0,,,64,81,0.0,0.0,,394.0,264.9303586452895,,10,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113013,2,1,0,0,1,,180.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,2,2,92.63903652719918,240.0,20627.1729850336,4,4,1,2,95.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0191010178799525,7112.818270701243,1,1,1_1,1_1_1,1_2_1,1_0_0 -5276,2,60.0,0.0,7,211,1500.0,,,77,34,0.0,0.0,,1630.0,223.64251054472493,,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,115625,2,2,0,0,2,,1000.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,82.23153982982286,1500.0,71295.86394459759,6,1,0,1,98.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022862476303907846,47530.57596306506,10,5,10,10_1,10_2,10_0_0 -5277,1,47.0,346.0,7,211,300.0,,,0,52,0.0,0.0,,780.0,825.756962011292,,50,0,0,0,0,0,0,0,0,0,,2,,5,117240,2,2,0,0,2,,330.0,385.0,32,2.0,2.0,4.0,3.0,1.8,1,1,92.09064703438149,300.0,15071.301801680695,0,4,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.051753989818783756,8372.945445378164,1,1,1_1,1_0_1,1_2_1,1_0_0 -5278,1,41.0,480.0,7,211,852.0,,,81,63,0.0,0.0,,1332.0,825.756962011292,,31,0,0,0,0,0,0,0,0,0,,2,,5,110498,2,2,0,0,2,,900.0,520.0,43,4.0,0.0,4.0,6.0,3.3,2,2,106.33969992907184,852.0,23408.15139442231,4,4,2,3,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05690325466356086,7093.379210431004,1,1,1_1,1_0_1,1_2_1,1_0_0 -5279,2,66.0,0.0,5,211,360.0,,,0,77,0.0,0.0,,492.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,3,102479,1,1,0,0,2,,240.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,87.81476709017497,360.0,24071.722928376777,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02043891920258061,24071.722928376777,6,3,6,6_1,6_2,6_0_0 -5280,0,34.0,0.0,7,211,200.0,,,0,67,0.0,0.0,,244.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,0,,2,,5,103382,2,1,0,0,2,,160.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,97.22414319230161,200.0,7461.282271944922,0,4,5,0,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03270215374607411,7461.282271944922,1,1,1_0,1_0_0,1_2_0,1_0_0 -5281,1,32.0,364.0,6,211,0.0,,,0,85,0.0,0.0,,607.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,113543,1,1,0,0,1,,598.0,436.0,31,0.0,0.0,4.0,5.0,2.4,3,3,93.88785905833714,0.0,18471.36470588235,0,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03286167587859364,7696.401960784314,1,1,1_1,1_0_1,1_2_1,1_0_0 -5282,2,58.0,0.0,2,211,600.0,,,0,68,0.0,0.0,,840.0,412.878481005646,,33,0,0,0,0,0,0,0,0,0,,1,,2,124704,2,2,0,0,2,,400.0,,22,2.0,2.0,5.0,3.0,2.0,3,2,86.60710037601925,600.0,14733.548395118452,0,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057012742448269316,7366.774197559226,1,1,1_0,1_1_0,1_2_0,1_0_1 -5283,2,66.0,0.0,5,211,480.0,,,71,77,0.0,0.0,,960.0,825.756962011292,,71,0,0,0,0,0,0,0,0,0,,1,,3,132733,2,2,0,0,2,,790.0,,41,1.0,7.0,7.0,3.0,2.0,2,2,84.28703408561307,480.0,41431.55990290252,5,5,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02317074235799523,20715.77995145126,5,3,5,5_1,5_2,5_0_0 -5284,2,31.0,0.0,9,211,900.0,,,43,43,0.0,0.0,,966.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,126187,2,1,0,0,2,,540.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,144.03006889888394,900.0,27470.275115008746,1,1,1,2,128.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035165283054344555,15261.263952782636,3,2,3_0,3_1_0,3_2_0,3_0_0 -5285,2,66.0,0.0,2,211,517.0,,,77,75,0.0,113.86897553014036,,759.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,2,131345,2,3,0,0,2,,247.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,83.67712725200394,517.0,46470.0,6,5,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016333118140735958,30980.0,8,4,8,8_1,8_2,8_0_1 -5286,2,66.0,0.0,5,211,300.0,,,0,90,0.0,0.0,,564.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,3,116707,1,2,0,0,2,,60.0,,11,0.0,6.0,4.0,1.0,1.0,3,3,95.73680537237341,300.0,9367.152225229143,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06021040188510475,9367.152225229143,1,1,1_0,1_1_0,1_2_0,1_0_0 -5287,2,71.0,0.0,2,211,700.0,,,0,86,0.0,0.0,,876.0,302.77755273747374,,41,0,0,0,0,0,0,0,0,0,,1,,2,127389,2,2,0,0,2,,200.0,,21,1.0,7.0,4.0,2.0,1.5,1,1,86.91378837175154,700.0,15373.823208678958,0,6,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05697997096164559,10249.215472452639,2,1,2_0,2_1_0,2_2_0,2_0_1 -5288,2,61.0,0.0,2,211,600.0,,,64,11,0.0,0.0,,892.0,454.1663291062106,,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,118149,1,3,0,0,2,,200.0,,43,4.0,2.0,4.0,4.0,2.5,2,2,97.48512087377257,600.0,10141.287531446933,4,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08795727339689498,4056.515012578773,1,1,1_0,1_1_0,1_2_0,1_0_1 -5289,1,47.0,200.0,9,211,50.0,,,0,63,0.0,0.0,,72.0,37.84719409218422,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,110800,2,1,0,0,1,,36.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,148.70236940105696,50.0,5201.409772576102,0,4,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013842401031276673,5201.409772576102,1,1,1_1,1_1_1,1_2_1,1_0_0 -5290,2,59.0,0.0,5,211,660.0,,,48,75,0.0,0.0,,756.0,165.1513924022584,,71,0,0,0,0,0,0,0,0,0,,1,,3,105016,2,1,0,0,2,,360.0,,42,2.0,1.0,4.0,3.0,2.0,1,1,81.67363721121518,660.0,83616.56366661987,1,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009041270854111872,41808.281833309935,9,5,9,9_1,9_2,9_0_0 -5291,2,40.0,0.0,7,211,400.0,,,62,34,0.0,0.0,,510.0,189.2359704609211,,60,0,0,0,0,0,0,0,0,2,2.0,1,,5,100235,2,2,0,0,1,,180.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,83.58911703751345,400.0,69057.18908233057,1,1,1,2,98.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007385183306432783,34528.59454116529,9,5,9,9_1,9_2,9_0_0 -5292,2,61.0,0.0,5,211,300.0,,,0,52,0.0,0.0,,410.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,,3,103925,1,1,0,0,2,,240.0,,22,2.0,4.0,5.0,2.0,1.5,3,3,94.73868325501057,300.0,8890.090609723895,0,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046118765038406465,5926.727073149264,1,1,1_0,1_1_0,1_2_0,1_0_0 -5293,2,42.0,0.0,5,211,396.0,,,0,52,0.0,0.0,,540.0,247.7270886033876,,31,2,2,2,2,2,2,2,1,0,,1,,3,104840,1,1,0,0,2,,180.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,94.68803004210261,396.0,6180.435520168099,0,4,1,2,86.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0873724834176917,6180.435520168099,1,1,1_0,1_1_0,1_2_0,1_0_0 -5294,2,52.0,0.0,2,211,340.0,,,0,11,0.0,0.0,,540.0,344.06540083803833,,50,0,0,0,0,0,0,0,0,0,,1,,2,106566,2,1,0,0,1,,150.0,,22,1.0,3.0,4.0,2.0,1.5,3,2,87.81476709017497,340.0,9401.0,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05744069779810659,6267.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_1 -5295,2,30.0,0.0,9,211,0.0,,,42,34,0.0,0.0,,1617.0,0.0,,42,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,110947,2,1,0,0,2,,699.0,850.0,43,2.0,0.0,4.0,4.0,2.1,1,1,140.92035580105693,0.0,75060.5908322816,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021542596215543917,35743.13849156266,9,5,9,9_1,9_2,9_0_0 -5296,2,68.0,0.0,1,211,420.0,,,0,77,0.0,0.0,,552.0,227.0831645531053,,30,0,0,0,0,0,0,0,0,0,,1,,1,131047,1,3,0,0,2,,150.0,,21,0.0,0.0,5.0,4.0,2.3,1,1,82.51568979988986,420.0,5580.548387096775,0,5,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09891501008688011,2426.32538569425,1,1,1_0,1_1_0,1_2_0,1_1_0 -5297,2,53.0,0.0,6,211,420.0,,,56,64,0.0,0.0,,618.0,340.62474682965797,,20,0,0,0,0,0,0,0,0,2,90.0,1,,4,128155,2,1,0,0,2,,300.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,96.75418174153984,420.0,38340.683116179964,4,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01611864864606966,19170.341558089982,5,3,5,5_1,5_2,5_0_0 -5298,1,46.0,67.0,8,211,840.0,,,0,42,0.0,0.0,,1040.0,344.06540083803833,,31,2,2,2,2,2,2,2,1,1,5.0,1,1999.0,6,120094,1,3,0,0,2,,300.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,96.92977070080465,840.0,13974.0,0,1,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.074423930156004,13974.0,3,2,3_1,3_1_1,3_2_1,3_0_0 -5299,0,20.0,0.0,2,400,0.0,,,0,63,0.0,0.0,,985.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,2,126580,2,1,0,0,2,,275.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,93.34754261361955,0.0,3773.226364051954,0,4,5,0,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2610498032623302,3773.226364051954,1,1,1_0,1_1_0,1_1_0,1_0_1 -5300,2,41.0,0.0,7,400,480.0,,,52,11,0.0,0.0,,744.0,454.1663291062106,,20,0,0,0,0,0,0,0,0,0,,1,,5,119500,2,1,0,0,1,,184.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,92.83702966725653,480.0,20507.894142389963,4,1,0,1,110.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03627871271590712,8916.475714082593,1,1,1_0,1_1_0,1_1_0,1_0_0 -5301,0,28.0,0.0,7,400,160.0,,,45,63,0.0,0.0,,400.0,412.878481005646,,41,0,0,0,0,0,0,0,0,0,,1,,5,112613,2,2,0,0,2,,160.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,114.38182526875455,160.0,39235.2796445944,4,4,5,0,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010194906309406402,21797.37758033022,6,3,6,6_1,6_1,6_0_0 -5302,2,40.0,0.0,5,400,420.0,,,85,55,0.0,0.0,,596.0,302.77755273747374,,31,0,0,0,0,0,0,0,0,1,15.0,1,,3,110076,1,1,0,0,1,,260.0,,42,1.0,0.0,5.0,4.0,2.3,1,1,98.64447700598043,420.0,22166.03012953298,6,1,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02688799015958737,9637.404404144774,1,1,1_0,1_1_0,1_1_0,1_0_0 -5303,2,41.0,0.0,9,400,550.0,,,52,45,0.0,0.0,,616.0,113.54158227655265,,43,0,0,0,0,0,0,0,0,2,60.0,1,2005.0,6,123624,2,2,0,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,87.90935708740614,550.0,39900.62812108424,4,1,0,1,89.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015438353454754113,19000.29910527821,5,3,5,5_1,5_1,5_0_0 -5304,1,43.0,130.0,9,400,300.0,,,85,62,0.0,0.0,,476.0,302.77755273747374,,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,122808,2,1,0,0,1,,505.0,,42,2.0,0.0,4.0,4.0,2.3,2,2,151.29550323398064,300.0,26238.5340572059,6,1,1,2,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01814125739502874,11408.058285741696,2,1,2_1,2_1_1,2_1_1,2_0_0 -5305,2,71.0,0.0,2,400,240.0,,,0,86,0.0,0.0,,416.0,302.77755273747374,,31,0,0,0,0,0,0,0,0,0,,1,,2,103365,2,1,0,0,2,,228.0,,21,1.0,4.0,6.0,3.0,2.0,2,2,88.28271726592978,240.0,13502.575304547508,0,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03080893760021439,6751.287652273754,1,1,1_0,1_1_0,1_1_0,1_0_1 -5306,2,55.0,0.0,7,400,570.0,,,56,78,0.0,0.0,,680.0,189.2359704609211,,20,0,0,0,0,0,0,0,0,0,,1,,5,110666,1,2,0,0,2,,600.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,86.88809152536489,570.0,17694.81824847131,1,7,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03842932944839637,11796.545498980873,2,1,2_0,2_1_0,2_1_0,2_0_0 -5307,2,45.0,0.0,7,400,1800.0,,,62,43,0.0,0.0,,1932.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,5,126623,2,1,0,0,1,,140.0,,43,3.0,1.0,6.0,4.0,2.3,4,4,99.86442065695779,1800.0,37396.213773637275,4,1,0,1,180.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051662984164508576,16259.223379842295,4,2,4_0,4_1_0,4_1_0,4_0_0 -5308,2,58.0,0.0,5,400,340.0,,,0,77,0.0,0.0,,604.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,3,103591,2,2,0,0,2,,120.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,92.73109719272854,340.0,8204.973568408144,0,7,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07361388735310487,8204.973568408144,1,1,1_0,1_1_0,1_1_0,1_0_0 -5309,2,46.0,0.0,7,400,530.0,,,0,52,0.0,0.0,,662.0,227.0831645531053,,43,0,0,0,0,0,0,0,0,0,,1,,5,125229,1,3,0,0,2,,270.0,,32,3.0,0.0,5.0,3.0,2.0,2,2,107.28044655781919,530.0,13610.50193050193,0,4,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04863891158315178,6805.250965250965,1,1,1_0,1_1_0,1_1_0,1_0_0 -5310,0,59.0,0.0,7,400,200.0,,,52,68,0.0,0.0,,464.0,454.1663291062106,,43,0,0,0,0,0,0,0,0,0,,1,,5,129063,2,1,0,0,1,,120.0,,43,2.0,4.0,2.0,2.0,1.5,2,2,118.49892352318113,200.0,8613.148078809427,4,4,5,0,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053871127693898596,5742.098719206285,1,1,1_0,1_1_0,1_1_0,1_0_0 -5311,2,64.0,0.0,2,400,240.0,,,0,77,0.0,0.0,,504.0,454.1663291062106,,43,0,0,0,0,0,0,0,0,0,,1,,2,123293,1,3,0,0,2,,280.0,,31,0.0,2.0,5.0,2.0,1.5,1,1,91.99469183317682,240.0,7696.676419965576,0,6,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06548281004676226,5131.1176133103845,1,1,1_0,1_1_0,1_1_0,1_0_1 -5312,2,72.0,0.0,2,400,720.0,,,78,77,0.0,0.0,,984.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,0,,1,,2,129500,2,3,0,0,2,,960.0,,41,2.0,5.0,7.0,5.0,2.8,2,2,105.35326964349225,720.0,33554.664253068986,5,5,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02932528224924799,11983.808661810353,2,1,2_0,2_1_0,2_1_0,2_0_1 -5313,2,47.0,0.0,7,400,500.0,,,85,63,0.0,0.0,,676.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,121775,2,1,0,0,2,,360.0,,42,1.0,0.0,5.0,6.0,2.8999999999999995,2,2,98.49963420908608,500.0,47714.0,6,1,1,2,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014167749507482081,16453.103448275866,4,2,4_0,4_1_0,4_1_0,4_0_0 -5314,1,47.0,110.0,9,400,600.0,,,0,52,0.0,0.0,,864.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,114496,2,1,0,0,1,,390.0,650.0,32,2.0,1.0,4.0,4.0,2.3,4,4,103.70180698557031,600.0,45585.53721475282,0,1,2,3,114.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018953379795212423,19819.798789022967,5,3,5,5_1,5_1,5_0_0 -5315,1,40.0,380.0,9,400,320.0,,,81,81,0.0,0.0,,584.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,113776,2,1,0,0,1,,336.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,98.49963420908608,320.0,14545.17466557007,4,4,1,2,85.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04015077257080923,5594.297948296182,1,1,1_1,1_1_1,1_1_1,1_0_0 -5316,1,59.0,235.0,7,400,180.0,,,0,63,0.0,0.0,,246.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,0,,1,,5,121532,1,3,0,0,2,,180.0,300.0,12,1.0,6.0,2.0,1.0,1.0,3,3,132.53310688045607,180.0,8753.66211057263,0,4,2,3,30.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028102524051377583,8753.66211057263,1,1,1_1,1_1_1,1_1_1,1_0_0 -5317,0,82.0,0.0,2,400,426.0,,,0,86,0.0,0.0,,954.0,908.3326582124212,,41,0,0,0,0,0,0,0,0,0,,1,,2,113912,2,2,0,0,2,,420.0,,21,1.0,5.0,5.0,3.0,2.0,1,1,109.45914643544457,426.0,5328.980148883375,0,5,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1790211209925223,2664.4900744416873,1,1,1_0,1_1_0,1_0_0,1_0_1 -5318,2,59.0,0.0,7,400,480.0,,,21,31,0.0,0.0,,612.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,1,2.0,1,,5,125598,2,1,0,0,2,,280.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,123.305972049678,480.0,113108.63254247268,1,1,0,1,150.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005410727600921104,75405.75502831512,10,5,10,10_1,10_0,10_0_0 -5319,2,58.0,0.0,9,400,200.0,,,0,56,0.0,0.0,,464.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128985,2,1,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,110.0341904839636,200.0,6332.0,0,4,0,1,66.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07327858496525584,6332.0,1,1,1_0,1_1_0,1_0_0,1_0_0 -5320,1,23.0,247.0,7,400,0.0,,,0,56,0.0,0.0,,484.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,5,100031,2,1,0,0,2,,427.0,322.0,12,1.0,0.0,2.0,1.0,1.0,1,1,126.05362448982243,0.0,7393.0,0,4,2,3,63.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06546733396456107,7393.0,1,1,1_1,1_1_1,1_0_1,1_0_0 -5321,0,79.0,0.0,6,400,356.0,,,71,71,0.0,0.0,,664.0,529.860717290579,,50,0,0,0,0,0,0,0,0,0,,1,,4,115844,2,2,0,0,2,,280.0,,41,0.0,5.0,6.0,3.0,2.0,1,1,109.45914643544457,356.0,34582.79569562101,5,5,0,1,108.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019200298490734163,17291.397847810505,4,2,4_0,4_1_0,4_0_0,4_0_0 -5322,2,75.0,0.0,6,400,618.0,,,86,71,0.0,0.0,,684.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,1,,4,116328,2,1,0,0,2,,514.0,,41,1.0,4.0,5.0,3.0,2.0,2,2,103.74854930287046,618.0,18605.137254901958,5,5,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03676403944936145,9302.568627450979,1,1,1_0,1_1_0,1_0_0,1_0_0 -5323,2,46.0,0.0,7,400,500.0,,,11,54,0.0,0.0,,566.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,75.0,1,,5,113618,2,2,0,0,2,,170.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,139.8767115904356,500.0,48799.04407997284,1,1,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01159858785496757,32532.696053315227,8,4,8,8_1,8_0,8_0_0 -5324,2,63.0,0.0,9,400,360.0,,,0,86,0.0,0.0,,420.0,103.2196202514115,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,132477,2,2,0,0,2,,240.0,,21,1.0,2.0,3.0,2.0,1.5,4,2,156.7568588850402,360.0,5738.637717121588,0,7,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0731881015501124,3825.758478081059,1,1,1_0,1_1_0,1_0_0,1_0_0 -5325,2,76.0,0.0,5,400,240.0,,,77,77,0.0,0.0,,372.0,227.0831645531053,,43,0,0,0,0,0,0,0,0,0,,1,,3,104749,2,2,0,0,2,,274.0,,41,0.0,9.0,7.0,2.0,1.5,4,4,110.56453784503786,240.0,22747.884035914365,5,5,0,1,140.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0163531693502871,15165.25602394291,3,2,3_0,3_1_0,3_0_0,3_0_0 -5326,2,31.0,0.0,9,400,1000.0,,,55,42,0.0,0.0,,1000.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,123891,2,3,0,0,2,,240.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,122.21972095590128,1000.0,57546.99965010785,4,1,0,1,107.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017377100562672443,31970.555361171027,8,4,8,8_1,8_0,8_0_0 -5327,0,81.0,0.0,6,400,200.0,,,0,77,0.0,0.0,,332.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,4,130645,2,3,0,0,2,,200.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,130.84286552957414,200.0,22029.191685933944,0,5,5,0,65.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015070911576478238,22029.191685933944,6,3,6,6_1,6_0,6_0_0 -5328,2,58.0,0.0,7,400,886.0,,,56,63,0.0,0.0,,1414.0,908.3326582124212,,71,0,0,0,0,0,0,0,0,0,,1,,5,132692,2,3,0,0,2,,640.0,,43,2.0,4.0,5.0,5.0,2.8,1,1,117.81507716845205,886.0,37765.32481703925,4,1,0,1,75.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03744175395949516,13487.616006085445,3,2,3_0,3_1_0,3_0_0,3_0_0 -5329,2,44.0,0.0,6,211,360.0,,,81,52,0.0,0.0,,404.0,75.69438818436844,,41,0,0,0,0,0,0,0,0,0,,1,,4,105371,1,1,0,0,2,,276.0,,43,2.0,1.0,5.0,5.0,2.5999999999999996,1,1,116.55599163080477,360.0,15772.482095051284,4,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025614231011031392,6066.3392673274175,1,1,1_0,1_1_0,1_2_0,1_0_0 -5330,2,34.0,0.0,9,211,0.0,,,0,52,0.0,0.0,,44.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,133076,2,1,0,0,1,,0.0,381.0,12,1.0,0.0,3.0,1.0,1.0,1,1,118.14071062494097,0.0,19531.072295669717,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0022528204972010342,19531.072295669717,5,3,5,5_1,5_2,5_0_0 -5331,2,56.0,0.0,2,211,450.0,,,0,77,0.0,0.0,,582.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,118613,2,2,0,0,2,,270.0,,21,1.0,0.0,3.0,2.0,1.5,3,3,117.21402299030916,450.0,35604.30660414858,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016346337157207434,23736.20440276572,6,3,6,6_1,6_2,6_0_1 -5332,2,60.0,0.0,8,211,432.0,,,77,68,0.0,0.0,,564.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,1,2001.0,6,120774,2,2,0,0,2,,348.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,103.93664793347278,432.0,13996.011560693642,6,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040297194493889674,9330.67437379576,1,1,1_0,1_1_0,1_2_0,1_0_0 -5333,0,36.0,0.0,2,211,516.0,,,0,85,0.0,62.110350289167464,,664.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,1,,2,125305,2,1,0,0,2,,200.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,102.43897531638086,516.0,20041.600000000002,0,7,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03313108733833626,13361.066666666668,3,2,3_0,3_1_0,3_2_0,3_0_1 -5334,0,36.0,0.0,2,211,1200.0,,,22,55,0.0,0.0,,1508.0,529.860717290579,,41,0,0,0,0,0,0,0,0,0,,1,,2,107594,2,2,0,0,2,,500.0,,43,2.0,1.0,5.0,4.0,2.5,4,2,95.28542144281795,1200.0,44143.91013187476,1,1,0,1,200.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03416099741719813,17657.564052749905,4,2,4_0,4_1_0,4_2_0,4_0_1 -5335,1,64.0,253.0,6,211,360.0,,,0,86,0.0,0.0,,448.0,151.38877636873687,,41,0,0,0,0,0,0,0,0,0,,2,,4,122959,2,2,0,0,2,,144.0,296.0,11,0.0,5.0,2.0,1.0,1.0,1,1,122.16304094970276,360.0,10968.923453800471,0,7,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04084265897988181,10968.923453800471,2,1,2_1,2_0_1,2_2_1,2_0_0 -5336,1,57.0,253.0,6,211,306.0,,,0,56,0.0,0.0,,394.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,1,20.0,1,,4,102161,2,2,0,0,2,,306.0,334.0,32,3.0,0.0,3.0,3.0,2.0,2,2,118.70244804077788,306.0,13869.899613899612,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028406838619448694,6934.949806949806,1,1,1_1,1_1_1,1_2_1,1_0_0 -5337,0,79.0,0.0,6,211,216.0,,,0,86,0.0,0.0,,348.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,4,128943,2,1,0,0,2,,180.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,102.81427528991169,216.0,9685.818181818182,0,5,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03592881814086199,9685.818181818182,1,1,1_0,1_1_0,1_2_0,1_0_0 -5338,2,39.0,0.0,7,211,500.0,,,55,52,0.0,0.0,,764.0,454.1663291062106,,33,0,0,0,0,0,0,0,0,2,60.0,1,,5,114134,1,1,0,0,2,,300.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,98.64110138218084,500.0,50532.39102306873,1,1,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015119015438062756,24063.043344318445,6,3,6,6_1,6_2,6_0_0 -5339,1,44.0,537.0,2,211,260.0,,,0,85,0.0,0.0,,788.0,908.3326582124212,,71,0,0,0,0,0,0,0,0,0,,1,,2,117875,1,2,0,0,2,,560.0,500.0,31,0.0,0.0,5.0,8.0,3.499999999999999,1,1,134.9559698031569,260.0,25953.46854968898,0,6,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.030362030357959348,7415.276728482568,1,1,1_1,1_1_1,1_2_1,1_0_1 -5340,1,30.0,357.0,7,211,0.0,,,11,85,0.0,0.0,,66.0,113.54158227655265,,41,0,0,0,0,0,0,0,0,0,,1,,5,112283,1,2,0,0,2,,0.0,540.0,42,1.0,0.0,4.0,4.0,2.1,1,1,116.852353425328,0.0,10856.721336919923,1,6,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.006079183388041564,5169.867303295201,1,1,1_1,1_1_1,1_2_1,1_0_0 -5341,1,30.0,413.0,9,211,450.0,,,0,85,0.0,0.0,,494.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,113442,2,1,0,0,2,,360.0,500.0,31,0.0,0.0,3.0,3.0,1.6,2,2,124.6063971818917,450.0,13601.969111969109,0,6,2,3,64.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03631827097484751,8501.230694980692,1,1,1_1,1_1_1,1_2_1,1_0_0 -5342,2,48.0,0.0,8,211,400.0,,,11,11,0.0,0.0,,476.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,120842,2,2,0,0,1,,1200.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,103.9680425026478,400.0,68478.04193700981,1,1,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006951133334651321,29773.061711743398,8,4,8,8_1,8_2,8_0_0 -5343,1,32.0,392.0,9,211,0.0,,,0,85,0.0,0.0,,1395.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,2013.0,6,107750,2,2,0,0,2,,462.0,690.0,31,0.0,0.0,4.0,3.0,1.6,3,3,177.38228219254026,0.0,13883.552123552123,0,6,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10047860861439886,8677.220077220076,1,1,1_1,1_1_1,1_2_1,1_0_0 -5344,2,25.0,0.0,7,211,200.0,,,0,85,0.0,0.0,,464.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,5,106102,1,2,0,0,2,,363.0,,31,1.0,1.0,5.0,4.0,2.1,2,2,102.43897531638086,200.0,18919.11447192909,0,6,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024525460781393973,9009.102129490042,1,1,1_0,1_1_0,1_2_0,1_0_0 -5345,1,37.0,220.0,9,211,0.0,,,0,52,0.0,0.0,,363.0,0.0,,71,0,0,0,0,0,0,0,0,4,15.0,1,2006.0,6,104020,2,1,0,0,2,,698.0,550.0,32,1.0,1.0,3.0,2.0,1.3,2,2,115.6152144494649,0.0,21728.588418289597,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.016706101335807536,16714.298783299688,4,2,4_1,4_1_1,4_2_1,4_0_0 -5346,2,30.0,0.0,9,211,458.0,,,0,81,0.0,0.0,,546.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,112176,1,3,0,0,2,,240.0,,22,2.0,7.0,6.0,3.0,2.0,2,2,103.23110766644673,458.0,16868.907293951896,0,4,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032367241723816956,8434.453646975948,1,1,1_0,1_1_0,1_2_0,1_0_0 -5347,2,20.0,0.0,7,211,270.0,,,0,46,0.0,0.0,,446.0,302.77755273747374,,60,0,0,0,0,0,0,0,0,0,,1,,5,119913,2,2,0,0,2,,396.0,,22,2.0,0.0,4.0,4.0,2.3,2,2,101.2545264025056,270.0,32529.922950647142,0,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013710453623780483,14143.444761150933,3,2,3_0,3_1_0,3_2_0,3_0_0 -5348,2,43.0,0.0,8,211,410.0,,,43,69,0.0,0.0,,520.0,189.2359704609211,,20,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,112324,2,2,0,0,2,,360.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,103.9680425026478,410.0,42048.00404556197,1,1,0,1,76.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012366817683820223,18281.74088937477,4,2,4_0,4_1_0,4_2_0,4_0_0 -5349,2,27.0,0.0,8,211,936.0,,,0,47,0.0,0.0,,1200.0,454.1663291062106,,70,0,0,0,0,0,0,0,0,0,,1,2002.0,6,102833,2,3,0,0,2,,528.0,,22,3.0,2.0,4.0,3.0,2.0,1,1,98.43988362717349,936.0,9394.967642074607,0,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12772795455152997,4697.483821037304,1,1,1_0,1_1_0,1_2_0,1_0_0 -5350,2,39.0,0.0,9,211,400.0,,,85,22,0.0,0.0,,796.0,681.2494936593159,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,118033,2,2,0,0,2,,224.0,,42,1.0,0.0,3.0,3.0,2.0,3,2,98.4426056056904,400.0,12433.632911392406,6,1,0,1,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06401990517756555,6216.816455696203,1,1,1_0,1_1_0,1_2_0,1_0_0 -5351,2,56.0,0.0,8,211,450.0,,,78,37,0.0,0.0,,538.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,118109,2,1,0,0,2,,240.0,,42,2.0,2.0,3.0,3.0,2.0,2,1,102.39444134990221,450.0,53171.91132482104,6,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010118124148545656,26585.95566241052,7,4,7,7_1,7_2,7_0_0 -5352,1,40.0,620.0,2,211,694.0,,,0,85,0.0,0.0,,1222.0,908.3326582124212,,60,0,0,0,0,0,0,0,0,0,,2,,2,125343,2,3,0,0,2,,440.0,750.0,31,1.0,3.0,4.0,9.0,4.199999999999999,4,3,124.8917807357633,694.0,26189.928417675364,0,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04665915769266794,6235.69724230366,1,1,1_1,1_0_1,1_2_1,1_0_1 -5353,0,33.0,0.0,7,211,328.0,,,0,52,0.0,0.0,,350.0,37.84719409218422,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,133059,2,1,0,0,2,,192.0,,32,1.0,0.0,4.0,2.0,1.3,4,3,120.0193238083737,328.0,30971.943720806,0,1,5,0,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011300550044745198,23824.57209292769,6,3,6,6_1,6_2,6_0_0 -5354,1,28.0,310.0,9,211,600.0,,,52,52,0.0,0.0,,732.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,121567,2,1,0,0,1,,248.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,165.02021616467192,600.0,9498.30303030303,4,4,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07706639782544888,4523.001443001443,1,1,1_1,1_1_1,1_2_1,1_0_0 -5355,1,60.0,180.0,9,211,400.0,,,52,52,0.0,0.0,,928.0,908.3326582124212,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,120411,1,1,0,0,2,,760.0,,43,2.0,5.0,6.0,6.0,3.3,2,2,173.8389180339911,400.0,20746.82494004796,4,4,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0447297358840034,6286.916648499383,1,1,1_1,1_1_1,1_2_1,1_0_0 -5356,2,68.0,0.0,7,211,335.0,,,77,77,0.0,72.46207533736204,,471.0,113.54158227655265,,70,0,0,0,0,0,0,0,0,0,,1,,5,111151,1,1,0,0,2,,249.0,,41,0.0,4.0,3.0,2.0,1.5,1,1,115.8699966831568,335.0,28994.049349092435,6,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016244712641862946,19329.36623272829,5,3,5,5_1,5_2,5_0_0 -5357,2,29.0,0.0,8,211,0.0,,,54,47,0.0,0.0,,375.0,0.0,,50,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,121994,2,3,0,0,2,,315.0,680.0,43,2.0,0.0,4.0,3.0,1.8,1,1,112.58096721919232,0.0,55789.204484295245,1,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006721730547449608,30994.002491275136,8,4,8,8_1,8_2,8_0_0 -5358,1,28.0,413.0,7,211,200.0,,,0,52,0.0,0.0,,244.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,,5,125117,2,1,0,0,1,,272.0,500.0,32,1.0,0.0,3.0,3.0,1.6,1,1,115.55148452510299,200.0,10084.972709557882,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024194413512765647,6303.107943473676,1,1,1_1,1_1_1,1_2_1,1_0_0 -5359,2,70.0,0.0,7,211,690.0,,,52,77,0.0,0.0,,822.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,101577,2,2,0,0,2,,200.0,,42,1.0,1.0,5.0,3.0,2.0,1,1,99.54811156278724,690.0,60735.60824567913,1,5,0,1,102.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013534070436488615,30367.804122839563,8,4,8,8_1,8_2,8_0_0 -5360,2,49.0,0.0,7,211,590.0,,,77,68,0.0,0.0,,854.0,454.1663291062106,,41,0,0,0,0,0,0,0,0,0,,1,,5,111987,2,2,0,0,2,,188.0,,42,1.0,1.0,4.0,3.0,2.0,1,1,101.2545264025056,590.0,9402.762935673445,6,4,0,1,93.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09082436788446319,4701.381467836723,1,1,1_0,1_1_0,1_2_0,1_0_0 -5361,2,37.0,0.0,8,211,660.0,,,0,11,0.0,0.0,,792.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,2001.0,6,108012,2,2,0,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,103.9680425026478,660.0,3882.3279070167264,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20400131543978514,3882.3279070167264,1,1,1_0,1_1_0,1_2_0,1_0_0 -5362,2,43.0,0.0,7,211,450.0,,,56,62,0.0,0.0,,582.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,126707,2,2,0,0,2,,200.0,,43,2.0,1.0,5.0,4.0,2.5,1,1,116.55599163080477,450.0,35863.52463600418,1,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016228187438546333,14345.40985440167,3,2,3_0,3_1_0,3_2_0,3_0_0 -5363,2,61.0,0.0,6,211,405.0,,,78,77,0.0,0.0,,537.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,4,130131,2,1,0,0,2,,220.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,101.2545264025056,405.0,44615.69895221525,6,5,1,2,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012036122096285953,29743.799301476833,8,4,8,8_1,8_2,8_0_0 -5364,2,31.0,0.0,9,211,500.0,,,0,46,0.0,0.0,,522.0,37.84719409218422,,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,113908,2,1,0,0,2,,164.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,108.14241863923492,500.0,30079.078209103573,0,1,1,2,72.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01735425521923123,30079.078209103573,8,4,8,8_1,8_2,8_0_0 -5365,2,36.0,0.0,9,211,540.0,,,63,54,0.0,0.0,,584.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,2,4.0,1,2013.0,6,114245,2,1,0,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,165.02021616467192,540.0,25537.846036924348,1,1,1,2,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022868021020865003,14187.692242735748,3,2,3_0,3_1_0,3_2_0,3_0_0 -5366,2,35.0,0.0,7,211,0.0,,,0,34,0.0,0.0,,380.0,0.0,,50,0,0,0,0,0,0,0,0,2,4.0,2,,5,105783,2,1,0,0,2,,396.0,630.0,12,1.0,0.0,3.0,1.0,1.0,1,1,116.91680081582163,0.0,35673.32159314726,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010652218045010894,35673.32159314726,9,5,9,9_0,9_2,9_0_0 -5367,1,61.0,253.0,7,211,390.0,,,0,77,0.0,0.0,,465.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,0,,2,,5,130065,1,2,0,0,2,,240.0,337.0,31,1.0,2.0,1.0,2.0,1.5,2,2,111.79518903855774,390.0,8113.136180999767,0,7,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05731445764327093,5408.757453999845,1,1,1_1,1_0_1,1_2_1,1_0_0 -5368,0,48.0,0.0,2,211,336.0,,,85,68,0.0,0.0,,468.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,2,100562,1,3,0,0,2,,144.0,,42,1.0,1.0,2.0,3.0,1.8,1,1,97.34668481046744,336.0,25160.23446112766,6,1,5,0,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018600780558029214,13977.908033959811,3,2,3_0,3_1_0,3_2_0,3_0_1 -5369,2,54.0,0.0,7,211,150.0,,,85,81,0.0,0.0,,238.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,5,107478,1,2,0,0,2,,208.0,,42,1.0,2.0,1.0,2.0,1.5,1,1,129.7820428294462,150.0,8324.523819609009,7,4,0,1,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028590223916396762,5549.682546406006,1,1,1_0,1_1_0,1_2_0,1_0_0 -5370,0,68.0,0.0,6,211,1200.0,,,22,77,0.0,0.0,,1380.0,309.6588607542345,,70,0,0,0,0,0,0,0,0,0,,1,,4,103978,1,2,0,0,2,,240.0,,42,1.0,3.0,4.0,2.0,1.5,4,4,110.13918820814193,1200.0,52335.060411843486,1,5,0,1,175.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026368556549668267,34890.04027456232,9,5,9,9_1,9_2,9_0_0 -5371,2,30.0,0.0,6,211,0.0,,,0,55,0.0,0.0,,190.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,4,104680,2,2,0,0,2,,319.0,416.0,32,1.0,0.0,3.0,2.0,1.3,2,2,116.58594229424011,0.0,9152.24105633424,0,4,2,3,59.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02075994271026128,7040.1854279494155,1,1,1_0,1_0_0,1_2_0,1_0_0 -5372,1,60.0,253.0,6,211,360.0,,,0,81,0.0,0.0,,492.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,2,,4,128890,2,2,0,0,2,,200.0,436.0,12,1.0,3.0,3.0,1.0,1.0,1,1,116.58594229424011,360.0,7000.0,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07028571428571428,7000.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5373,0,85.0,0.0,2,211,272.0,,,0,77,0.0,0.0,,404.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,1,,2,127668,1,1,0,0,2,,180.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,102.81427528991169,272.0,6453.091843399954,0,5,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06260564854864109,6453.091843399954,1,1,1_0,1_1_0,1_2_0,1_0_1 -5374,2,71.0,0.0,2,211,240.0,,,0,86,0.0,0.0,,372.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,0,,1,,2,100447,1,3,0,0,2,,240.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,102.81427528991169,240.0,11435.88694716802,0,5,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03252917781704042,11435.88694716802,2,1,2_0,2_1_0,2_2_0,2_0_1 -5375,2,44.0,0.0,7,211,1190.0,,,21,42,0.0,0.0,,1322.0,227.0831645531053,,42,0,0,0,0,0,0,0,0,2,5.0,1,,5,129580,2,2,0,0,2,,486.0,,43,2.0,1.0,5.0,4.0,2.3,2,2,111.93537851271515,1190.0,59651.446077248926,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02216207798697794,25935.411337934318,7,4,7,7_1,7_2,7_0_0 -5376,1,23.0,522.0,9,211,0.0,,,0,85,0.0,0.0,,212.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,107304,2,1,0,0,2,,519.0,680.0,31,0.0,0.0,4.0,5.0,2.2,2,2,117.6367131464758,0.0,18765.01176470588,0,6,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011297621480778371,8529.550802139036,1,1,1_1,1_0_1,1_2_1,1_0_0 -5379,1,63.0,172.0,2,211,1332.0,,,0,52,0.0,0.0,,1464.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,1,5.0,1,,2,107074,1,3,0,0,2,,702.0,514.0,32,1.0,6.0,3.0,2.0,1.5,2,2,122.16313256034915,1332.0,13774.332046332045,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10628464560572629,9182.88803088803,1,1,1_1,1_1_1,1_2_1,1_0_1 -5380,1,44.0,400.0,7,211,462.0,,,0,85,0.0,0.0,,506.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,2,,5,101299,1,2,0,0,2,,120.0,550.0,31,0.0,2.0,3.0,3.0,1.6,2,2,122.16313256034915,462.0,9710.636363636364,0,6,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05210781055449975,6069.147727272727,1,1,1_1,1_0_1,1_2_1,1_0_0 -5381,0,72.0,0.0,6,211,816.0,,,0,86,0.0,0.0,,970.0,264.9303586452895,,41,0,0,0,0,0,0,0,0,0,,1,,4,128356,2,1,0,0,2,,312.0,,21,0.0,3.0,5.0,2.0,1.5,3,2,110.13918820814193,816.0,18564.744470588234,0,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05224957453827346,12376.496313725489,2,1,2_0,2_1_0,2_2_0,2_0_0 -5382,1,61.0,18.0,7,211,0.0,,,0,77,0.0,0.0,,295.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,117491,2,1,0,0,2,,0.0,450.0,11,0.0,3.0,1.0,1.0,1.0,4,4,126.40198122072933,0.0,15137.957210326913,0,5,2,3,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01948743782937601,15137.957210326913,3,2,3_1,3_0_1,3_2_1,3_0_0 -5383,1,28.0,309.0,9,211,0.0,,,85,85,0.0,0.0,,413.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,2005.0,6,115318,2,2,0,0,2,,220.0,570.0,41,0.0,0.0,4.0,2.0,1.5,1,1,118.69614029589613,0.0,25250.96281648891,7,7,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.016355811974437286,16833.97521099261,4,2,4_1,4_1_1,4_2_1,4_0_0 -5384,0,78.0,0.0,2,211,240.0,,,0,86,0.0,0.0,,372.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,2,103997,2,2,0,0,2,,180.0,,11,0.0,7.0,3.0,1.0,1.0,2,2,104.0718849099597,240.0,10606.10063131804,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035074153351095524,10606.10063131804,2,1,2_0,2_1_0,2_2_0,2_0_1 -5385,0,85.0,0.0,5,211,256.0,,,0,86,0.0,0.0,,388.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,3,126729,1,3,0,0,2,,156.0,,11,0.0,11.0,5.0,1.0,1.0,2,2,109.16892852266155,256.0,9426.264587082384,0,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041161585951205906,9426.264587082384,1,1,1_0,1_1_0,1_2_0,1_0_0 -5386,1,43.0,253.0,7,211,0.0,,,0,62,0.0,0.0,,310.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,5,124374,1,2,0,0,2,,0.0,370.0,12,1.0,0.0,2.0,1.0,1.0,3,2,146.18924919962717,0.0,7386.788069748004,0,4,2,3,34.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04196681928233193,7386.788069748004,1,1,1_1,1_0_1,1_2_1,1_0_0 -5387,2,32.0,0.0,9,211,120.0,,,21,42,0.0,0.0,,208.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,110993,1,3,0,0,2,,360.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,119.12190446860573,120.0,14702.927893974073,4,4,0,1,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014146842145995141,7001.394235225748,1,1,1_0,1_1_0,1_2_0,1_0_0 -5388,2,56.0,0.0,6,211,318.0,,,0,64,0.0,0.0,,428.0,189.2359704609211,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,124899,1,3,0,0,2,,240.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,103.97174975917966,318.0,18839.82617363542,0,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022717831685673727,12559.884115756948,2,1,2_0,2_1_0,2_2_0,2_0_0 -5389,2,58.0,0.0,9,211,120.0,,,0,68,0.0,0.0,,252.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,121519,2,2,0,0,2,,160.0,,12,1.0,2.0,1.0,1.0,1.0,4,4,180.37571977855933,120.0,6351.245742988489,0,1,0,1,49.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03967725548616939,6351.245742988489,1,1,1_0,1_1_0,1_2_0,1_0_0 -5390,0,71.0,0.0,9,211,300.0,,,75,74,0.0,0.0,,564.0,454.1663291062106,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,123118,2,2,0,0,2,,160.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,119.71139699272685,300.0,79633.61411263577,5,5,0,1,140.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007082436308896697,53089.07607509051,10,5,10,10_1,10_2,10_0_0 -5391,2,38.0,0.0,6,211,330.0,,,63,52,0.0,0.0,,594.0,454.1663291062106,,12,0,0,0,0,0,0,0,0,0,,1,,4,132724,2,3,0,0,2,,540.0,,43,2.0,1.0,4.0,4.0,2.3,4,4,104.06805143208251,330.0,19587.61268145503,4,4,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030325288214544978,8516.353339763056,1,1,1_0,1_1_0,1_2_0,1_0_0 -5392,0,69.0,0.0,5,211,168.0,,,0,78,0.0,0.0,,300.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,,3,132927,2,3,0,0,2,,120.0,,11,0.0,3.0,1.0,1.0,1.0,1,1,117.80098349566937,168.0,20216.800000000003,0,5,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014839143682481895,20216.800000000003,5,3,5,5_1,5_2,5_0_0 -5393,2,47.0,0.0,7,211,560.0,,,21,34,0.0,0.0,,692.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,114565,2,3,0,0,2,,450.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,4,4,117.86816918759298,560.0,44126.35443307271,1,1,1,2,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015682238174684695,16971.674781951046,4,2,4_0,4_1_0,4_2_0,4_0_0 -5394,0,32.0,0.0,8,211,0.0,,,0,64,0.0,0.0,,44.0,75.69438818436844,,41,0,0,0,0,0,0,0,0,0,,1,2002.0,6,109143,2,1,0,0,2,,152.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,128.14589405139722,0.0,26887.229613314314,0,4,5,0,86.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016364646202973474,20682.484317934086,5,3,5,5_1,5_2,5_0_0 -5395,2,49.0,0.0,9,211,660.0,,,52,11,0.0,0.0,,792.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,103585,2,2,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,99.8633995169438,660.0,95104.10506972231,4,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008327716237058037,41349.61089987927,9,5,9,9_1,9_2,9_0_0 -5396,0,52.0,0.0,6,211,157.0,,,85,52,0.0,0.0,,553.0,681.2494936593159,,50,2,2,1,2,1,2,2,2,0,,1,,4,120386,1,3,0,0,2,,140.0,,42,2.0,0.0,5.0,6.0,3.3,1,1,134.9559698031569,157.0,22357.78612148238,6,4,5,0,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.024734112626144698,6775.086703479509,1,1,1_0,1_1_0,1_2_0,1_0_0 -5397,0,28.0,0.0,6,211,150.0,,,0,85,0.0,0.0,,238.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,1,,4,110175,2,3,0,0,2,,240.0,,21,0.0,0.0,6.0,2.0,1.5,4,2,103.23110766644673,150.0,8080.420912340447,0,7,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029453911198675995,5386.947274893631,1,1,1_0,1_1_0,1_2_0,1_0_0 -5398,1,47.0,346.0,9,211,470.0,,,85,43,0.0,0.0,,734.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,121569,2,3,0,0,2,,460.0,,42,1.0,2.0,6.0,5.0,2.4,2,1,116.32794735976758,470.0,17491.174311926603,6,1,1,2,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.041964020648945895,7287.989296636085,1,1,1_1,1_1_1,1_2_1,1_0_0 -5399,1,31.0,120.0,9,211,640.0,,,56,63,0.0,0.0,,728.0,151.38877636873687,,42,0,0,0,0,0,0,0,0,1,15.0,1,2006.0,6,109248,2,3,0,0,2,,168.0,559.0,43,2.0,0.0,3.0,3.0,1.8,5,4,109.62712596829566,640.0,40604.97926487671,4,1,2,3,76.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017928835654639028,22558.321813820396,6,3,6,6_1,6_2,6_0_0 -5400,1,72.0,253.0,7,211,180.0,,,0,77,0.0,0.0,,268.0,151.38877636873687,,20,0,0,0,0,0,0,0,0,0,,2,,5,125249,2,1,0,0,2,,98.0,315.0,11,0.0,4.0,2.0,1.0,1.0,2,2,110.55061945692778,180.0,12800.827177375832,0,5,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02093614703850255,12800.827177375832,2,1,2_1,2_0_1,2_2_1,2_0_0 -5401,1,71.0,253.0,7,211,190.0,,,0,86,0.0,0.0,,278.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,0,,2,,5,113255,2,2,0,0,2,,120.0,345.0,11,0.0,3.0,2.0,1.0,1.0,3,2,139.18793409949149,190.0,4836.0,0,5,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05748552522746071,4836.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5402,1,52.0,350.0,6,211,680.0,,,0,52,0.0,0.0,,944.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,4,109308,2,3,0,0,2,,240.0,620.0,32,1.0,2.0,4.0,2.0,1.5,3,3,117.26544593145779,680.0,8570.024973567175,0,4,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11015137096001609,5713.349982378117,1,1,1_1,1_1_1,1_2_1,1_0_0 -5403,2,45.0,0.0,6,211,1452.0,,,77,11,0.0,0.0,,1804.0,605.5551054749475,,71,0,0,0,0,0,0,0,0,0,,1,,4,122945,2,3,0,0,2,,100.0,,42,1.0,1.0,5.0,3.0,2.0,3,2,116.55083361517484,1452.0,42279.00563321953,5,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042668931612302584,21139.502816609765,5,3,5,5_1,5_2,5_0_0 -5404,1,37.0,80.0,9,211,360.0,,,0,68,0.0,0.0,,492.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,128503,2,2,0,0,2,,160.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,108.79950803644512,360.0,12361.006329113925,0,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03980258458740455,12361.006329113925,2,1,2_1,2_1_1,2_2_1,2_0_0 -5405,1,24.0,324.0,7,211,240.0,,,0,43,0.0,0.0,,328.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,2,15.0,2,,5,128865,1,2,0,0,2,,160.0,324.0,32,1.0,0.0,3.0,2.0,1.3,1,1,116.58594229424011,240.0,8997.40075897024,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036454972806784246,6921.077506900184,1,1,1_1,1_0_1,1_2_1,1_0_0 -5406,1,35.0,15.0,9,112,690.0,,,56,47,0.0,0.0,,732.0,72.25373417598806,,60,2,2,2,1,1,2,2,2,0,,1,2007.0,6,106738,1,3,0,0,2,,500.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,97.85894997036166,690.0,32143.22419289653,4,1,1,2,166.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.02277307327999062,15306.297234712632,3,2,3_1,3_1_1,3_1_1,3_0_0 -5407,0,51.0,0.0,7,112,504.0,,,0,48,0.0,0.0,,548.0,75.69438818436844,,50,2,2,2,2,1,2,2,2,0,,1,,5,133268,2,1,0,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,106.73278515550496,504.0,6477.575599558557,0,4,5,0,85.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08459955296196711,6477.575599558557,1,1,1_0,1_1_0,1_1_0,1_0_0 -5408,2,80.0,0.0,5,112,600.0,,,77,71,0.0,0.0,,908.0,529.860717290579,,70,0,0,0,0,0,0,0,0,0,,1,,3,126067,2,1,0,0,1,,480.0,,41,0.0,5.0,5.0,3.0,2.0,3,3,116.20537031430644,600.0,27897.246464909105,5,5,0,1,75.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032548015129096664,13948.623232454553,3,2,3_0,3_1_0,3_1_0,3_0_0 -5409,2,78.0,0.0,2,112,360.0,,,78,78,0.0,0.0,,444.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,0,,1,,2,132424,2,1,0,0,1,,210.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,101.8504404958002,360.0,21954.45063919095,5,5,0,1,62.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020223689824759923,14636.3004261273,3,2,3_0,3_1_0,3_1_0,3_0_1 -5410,0,31.0,0.0,9,112,380.0,,,45,48,0.0,0.0,,422.0,72.25373417598806,,42,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,124084,2,1,0,0,2,,360.0,,43,2.0,0.0,4.0,3.0,1.8,4,3,108.63610050214686,380.0,42824.20643167752,1,1,5,0,210.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00985423981348647,23791.225795376402,6,3,6,6_1,6_1,6_0_0 -5411,2,81.0,0.0,5,112,276.0,,,0,71,0.0,0.0,,528.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,,3,107617,1,1,0,0,2,,166.0,,21,0.0,0.0,5.0,2.0,1.5,3,2,101.8504404958002,276.0,22470.897364440123,0,5,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023497058948591547,14980.598242960083,3,2,3_0,3_1_0,3_1_0,3_0_0 -5412,2,58.0,0.0,9,112,204.0,,,42,63,0.0,0.0,,556.0,605.5551054749475,,70,2,2,2,2,1,2,2,2,0,,1,2009.0,6,119358,2,3,0,0,1,,200.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,167.89459622354929,204.0,13993.421965317919,4,4,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03973295462525332,6084.096506659966,1,1,1_0,1_1_0,1_1_0,1_0_0 -5413,2,47.0,0.0,9,112,600.0,,,85,63,0.0,0.0,,680.0,137.62616033521533,,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,125617,2,1,0,0,2,,240.0,,42,2.0,0.0,6.0,4.0,2.5,3,3,126.85497918598885,600.0,39381.812292734525,6,4,0,1,80.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01726685392092664,15752.72491709381,3,2,3_0,3_1_0,3_1_0,3_0_0 -5414,2,57.0,0.0,2,112,300.0,,,0,11,0.0,0.0,,384.0,144.50746835197612,,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,112186,2,1,0,0,1,,400.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,122.6183667056942,300.0,10829.116850999824,0,1,0,1,300.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035459955348486824,10829.116850999824,2,1,2_0,2_1_0,2_1_0,2_0_1 -5415,2,50.0,0.0,8,112,714.0,,,0,68,0.0,0.0,,1092.0,650.2836075838925,,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,110510,1,2,0,0,1,,600.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,98.85291139547901,714.0,23423.434262948205,0,1,0,1,41.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04661997842593705,15615.62284196547,3,2,3_0,3_1_0,3_1_0,3_0_0 -5416,2,46.0,0.0,7,112,450.0,,,42,34,0.0,0.0,,714.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,106882,2,2,0,0,2,,240.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,113.41849043258448,450.0,57090.54897476994,1,1,1,2,120.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012506448314510664,24821.977815117367,7,4,7,7_1,7_1,7_0_0 -5417,2,63.0,0.0,6,112,2000.0,,,72,33,0.0,0.0,,2084.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,4,126629,1,3,0,0,2,,1000.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,104.39427494322693,2000.0,157470.64956768887,7,1,0,1,180.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013234212253021736,104980.43304512592,10,5,10,10_1,10_1,10_0_0 -5418,2,70.0,0.0,2,112,600.0,,,0,74,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,122388,2,1,0,0,2,,600.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,109.39994951685948,600.0,135721.88762316765,0,5,0,1,140.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004420805004318112,90481.2584154451,10,5,10,10_1,10_1,10_0_1 -5419,2,52.0,0.0,7,112,350.0,,,0,22,0.0,0.0,,382.0,55.050464134086134,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,132392,2,1,0,0,2,,150.0,,32,1.0,0.0,6.0,2.0,1.5,2,2,114.97836723212664,350.0,87278.10511206184,0,1,0,1,137.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004376813629369316,58185.403408041224,10,5,10,10_1,10_1,10_0_0 -5420,1,91.0,250.0,7,112,300.0,,,0,77,0.0,0.0,,405.0,180.63433543997013,,50,0,0,0,0,0,0,0,0,0,,2,,5,103507,2,1,0,0,1,,200.0,472.0,21,0.0,0.0,3.0,2.0,1.5,2,2,121.05878202372348,300.0,3083.92486276172,0,5,2,3,80.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13132615677196297,2055.9499085078132,1,1,1_1,1_0_1,1_1_1,1_0_0 -5421,2,54.0,0.0,6,112,400.0,,,0,64,0.0,0.0,,532.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,4,116313,1,1,0,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,104.28827805729017,400.0,19999.600000000002,0,4,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02660053201064021,19999.600000000002,5,3,5,5_1,5_1,5_0_0 -5422,2,41.0,0.0,7,112,480.0,,,64,67,0.0,0.0,,612.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,120755,2,1,0,0,1,,260.0,,43,3.0,1.0,5.0,4.0,2.5,2,2,103.1272798094505,480.0,38630.632517063525,4,1,0,1,77.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015842349972646025,15452.25300682541,3,2,3_0,3_1_0,3_1_0,3_0_0 -5423,2,54.0,0.0,7,112,540.0,,,11,52,0.0,0.0,,606.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,119336,2,1,0,0,1,,140.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,115.49721806890106,540.0,51475.89083792694,1,1,0,1,105.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01177250145913949,34317.26055861796,9,5,9,9_1,9_1,9_0_0 -5424,2,27.0,0.0,2,211,720.0,,,56,63,0.0,0.0,,840.0,206.439240502823,,70,2,2,2,2,1,2,2,2,2,10.0,1,,2,113126,2,2,0,0,2,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,98.54700218177088,720.0,22441.16284242494,1,4,0,1,84.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.037431215391921804,14960.775228283293,3,2,3_0,3_1_0,3_2_0,3_0_1 -5425,2,63.0,0.0,5,211,240.0,,,56,78,0.0,0.0,,366.0,216.76120252796414,,70,2,2,2,2,1,2,2,2,0,,1,,3,114692,1,3,0,0,1,,179.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,105.24351744262312,240.0,18450.156862745098,4,7,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.019837229716948047,12300.1045751634,2,1,2_0,2_1_0,2_2_0,2_0_0 -5427,2,49.0,0.0,7,211,95.0,,,0,64,0.0,0.0,,95.0,0.0,,71,2,2,2,2,1,2,2,2,0,,1,,5,116220,2,3,0,0,2,,179.0,,12,1.0,3.0,4.0,1.0,1.0,2,2,107.74067059807982,95.0,5450.647251566011,0,4,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.017429122747340844,5450.647251566011,1,1,1_0,1_1_0,1_2_0,1_0_0 -5429,2,33.0,0.0,8,211,600.0,,,62,42,0.0,0.0,,710.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,116935,2,3,0,0,2,,350.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,98.64110138218084,600.0,24432.182880496188,4,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02906003133132985,10180.076200206746,2,1,2_0,2_1_0,2_2_0,2_0_0 -5430,2,56.0,0.0,5,211,200.0,,,0,71,0.0,0.0,,288.0,151.38877636873687,,42,2,2,1,2,1,2,2,2,0,,1,,3,115532,2,1,0,0,2,,100.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,105.24351744262312,200.0,1241.9663970130678,0,7,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.2318903318903319,1241.9663970130678,1,1,1_0,1_1_0,1_2_0,1_0_0 -5431,2,50.0,0.0,6,211,900.0,,,85,45,0.0,0.0,,1252.0,605.5551054749475,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,108545,2,1,0,0,2,,550.0,,42,1.0,1.0,7.0,4.0,2.3,4,3,118.99575448491504,900.0,45543.666132366314,6,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027490101397661677,19801.59397059405,5,3,5,5_1,5_2,5_0_0 -5432,2,51.0,0.0,8,211,250.0,,,46,43,0.0,0.0,,292.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,103432,2,1,0,0,2,,150.0,630.0,43,2.0,4.0,4.0,2.0,1.5,2,2,124.6063971818917,250.0,44322.57184445378,1,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00658806535470795,29548.381229635852,8,4,8,8_1,8_2,8_0_0 -5433,2,57.0,0.0,7,211,1200.0,,,78,52,0.0,0.0,,1704.0,867.0448101118566,,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,119935,2,3,0,0,2,,300.0,,42,2.0,2.0,5.0,3.0,2.0,3,2,104.06805143208251,1200.0,54221.380997530876,7,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03142671707453553,27110.690498765438,7,4,7,7_1,7_2,7_0_0 -5434,2,53.0,0.0,5,211,400.0,,,0,45,0.0,0.0,,589.0,325.14180379194624,,71,0,0,0,0,0,0,0,0,0,,1,,3,129168,2,1,0,0,2,,480.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,103.97174975917966,400.0,6505.736343625369,0,4,0,1,48.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09053548574515018,6505.736343625369,1,1,1_0,1_1_0,1_2_0,1_0_0 -5435,0,46.0,0.0,7,111,0.0,,,11,11,0.0,310.55175144583734,,568.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,1,10.0,1,,5,127456,2,1,0,0,1,,1200.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,108.76225612112184,0.0,76265.11079632032,1,1,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0074477043836853,38132.55539816016,9,5,9,9_1,9_2,9_0_0 -5436,2,42.0,0.0,6,111,600.0,,,35,42,0.0,0.0,,732.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,4,132343,2,1,0,0,2,,200.0,850.0,43,2.0,0.0,5.0,4.0,2.3,2,2,139.30525698527154,600.0,65946.34120670761,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01109993347023695,28672.32226378592,8,4,8,8_1,8_2,8_0_0 -5437,2,40.0,0.0,6,111,0.0,,,65,46,0.0,0.0,,1639.0,0.0,,50,0,0,0,0,0,0,0,0,2,120.0,1,,4,121823,1,2,0,0,1,,360.0,,43,2.0,0.0,6.0,3.0,1.8,3,3,109.51976917731828,0.0,48660.4463031497,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03368238732931454,27033.58127952761,7,4,7,7_1,7_2,7_0_0 -5438,1,46.0,356.0,9,111,800.0,,,0,56,0.0,0.0,,822.0,37.84719409218422,,31,0,0,0,0,0,0,0,0,1,5.0,1,2006.0,6,104386,1,3,0,0,2,,260.0,654.0,32,1.0,2.0,5.0,2.0,1.5,1,1,128.61527454019344,800.0,8466.074034503808,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09709341031627028,5644.049356335872,1,1,1_1,1_1_1,1_2_1,1_0_0 -5439,2,76.0,0.0,7,111,210.0,,,0,78,0.0,0.0,,273.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,1,,5,126414,1,3,0,0,2,,181.0,,11,0.0,4.0,2.0,1.0,1.0,2,2,128.78282894707004,210.0,10604.30576855487,0,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02574425954497951,10604.30576855487,2,1,2_0,2_1_0,2_2_0,2_0_0 -5440,2,54.0,0.0,9,111,480.0,,,0,54,0.0,0.0,,524.0,75.69438818436844,,60,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,105253,2,1,0,0,1,,180.0,494.0,32,1.0,0.0,3.0,2.0,1.5,4,4,126.39562721575587,480.0,48830.604754286236,0,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010730975023486772,32553.73650285749,8,4,8,8_0,8_2,8_0_0 -5441,1,48.0,253.0,9,111,180.0,,,0,85,0.0,0.0,,224.0,75.69438818436844,,41,0,0,0,0,0,0,0,0,0,,2,2008.0,6,122485,2,1,0,0,1,,80.0,407.0,11,0.0,0.0,2.0,1.0,1.0,1,1,154.7478505464349,180.0,14291.611656716002,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015673529716624824,14291.611656716002,3,2,3_1,3_0_1,3_2_1,3_0_0 -5442,2,26.0,0.0,9,111,150.0,,,0,67,0.0,0.0,,194.0,75.69438818436844,,33,0,0,0,0,0,0,0,0,0,,2,2008.0,6,120054,2,1,0,0,1,,200.0,480.0,12,1.0,0.0,3.0,1.0,1.0,4,4,122.46395276355828,150.0,14526.81505952374,0,4,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013354613465173436,14526.81505952374,3,2,3_0,3_0_0,3_2_0,3_0_0 -5443,2,27.0,0.0,7,111,300.0,,,0,63,0.0,0.0,,552.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,,5,115416,2,1,0,0,1,,180.0,,22,3.0,0.0,5.0,5.0,3.0,4,4,118.1114152408067,300.0,38965.42058368186,0,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014166406822544844,12988.473527893953,2,1,2_0,2_1_0,2_2_0,2_0_0 -5444,1,40.0,300.0,6,111,0.0,,,0,56,0.0,0.0,,795.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,102183,2,2,0,0,1,,173.0,600.0,32,1.0,0.0,3.0,2.0,1.3,2,2,122.35303684589913,0.0,8070.19739088441,0,4,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09851060159916067,6207.844146834162,1,1,1_1,1_1_1,1_2_1,1_0_0 -5445,1,40.0,467.0,2,111,990.0,,,0,55,0.0,0.0,,1254.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,2,110226,2,1,0,0,2,,400.0,665.0,32,1.0,0.0,5.0,4.0,2.3,3,3,133.44387369759,990.0,19765.169331552777,0,4,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06344494089398647,8593.551883283817,1,1,1_1,1_1_1,1_2_1,1_0_1 -5446,0,80.0,0.0,5,111,161.0,,,0,77,0.0,0.0,,281.0,206.439240502823,,10,2,2,2,1,1,2,2,2,0,,1,,3,123530,1,2,0,0,2,,153.0,,21,0.0,5.0,4.0,2.0,1.5,6,5,126.12919524271352,161.0,22715.233156313727,0,5,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.012370553190729442,15143.488770875818,3,2,3_0,3_1_0,3_2_0,3_0_0 -5447,2,64.0,0.0,8,111,320.0,,,71,56,0.0,0.0,,572.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,1999.0,6,116920,2,1,0,0,1,,275.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,104.15114332750784,320.0,33937.0,5,1,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016854760291127677,22624.666666666668,6,3,6,6_1,6_2,6_0_0 -5448,1,48.0,467.0,8,111,480.0,,,85,85,0.0,0.0,,732.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,132452,2,1,0,0,1,,300.0,680.0,41,0.0,0.0,4.0,5.0,2.5999999999999996,2,2,135.0519602828918,480.0,17147.96330275229,6,6,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04268728519395141,6595.3705010585745,1,1,1_1,1_1_1,1_2_1,1_0_0 -5449,2,45.0,0.0,6,111,480.0,,,0,63,0.0,0.0,,656.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,0,,1,,4,133424,1,1,0,0,1,,180.0,,32,1.0,3.0,7.0,3.0,1.8,2,2,116.5680148374314,480.0,12487.746835443038,0,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05253149416339257,6937.637130801688,1,1,1_0,1_1_0,1_2_0,1_0_0 -5450,2,25.0,0.0,8,111,1500.0,,,0,21,0.0,0.0,,1500.0,0.0,,44,2,2,2,2,1,2,2,2,2,20.0,1,2000.0,6,107160,2,2,0,0,1,,600.0,,32,1.0,0.0,5.0,2.0,1.3,3,3,113.88739749980964,1500.0,14041.329479768787,0,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.10682749109770907,10801.02267674522,2,1,2_0,2_1_0,2_2_0,2_0_0 -5451,0,27.0,0.0,9,112,240.0,,,0,46,0.0,0.0,,284.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,131936,2,1,0,0,1,,180.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,116.20537031430644,240.0,42502.28515857898,0,1,5,0,120.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0066819936608202655,42502.28515857898,9,5,9,9_1,9_1,9_0_0 -5452,2,52.0,0.0,6,112,250.0,,,75,42,0.0,0.0,,272.0,37.84719409218422,,10,0,0,0,0,0,0,0,0,0,,1,,4,129390,2,1,0,0,2,,220.0,,42,1.0,3.0,5.0,3.0,2.0,1,1,100.02195250951927,250.0,73315.09931419995,5,1,1,2,120.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037100133880241227,36657.549657099975,9,5,9,9_1,9_1,9_0_0 -5453,2,54.0,0.0,7,112,168.0,,,0,52,0.0,0.0,,256.0,151.38877636873687,,41,2,2,2,1,1,2,2,2,1,30.0,1,,5,116108,2,2,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,110.18648670424199,168.0,16069.127096315251,0,1,0,1,41.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0159311702786085,16069.127096315251,4,2,4_0,4_1_0,4_1_0,4_0_0 -5454,2,68.0,0.0,2,112,140.0,,,77,75,0.0,0.0,,392.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,2,120509,2,1,0,0,1,,132.0,,41,2.0,1.0,4.0,4.0,2.5,1,1,103.1272798094505,140.0,65433.32838086444,5,5,0,1,110.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.005990830815120783,26173.331352345776,7,4,7,7_1,7_1,7_0_1 -5455,2,36.0,0.0,8,112,804.0,,,85,63,0.0,0.0,,930.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,119528,2,1,0,0,1,,280.0,,42,1.0,0.0,5.0,4.0,2.1,1,1,100.02195250951927,804.0,27282.078064489906,6,1,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03408831240060409,12991.465744995192,2,1,2_0,2_1_0,2_1_0,2_0_0 -5456,2,53.0,0.0,6,112,780.0,,,56,68,0.0,0.0,,1116.0,578.0298734079045,,71,2,2,2,2,1,2,2,2,0,,1,,4,116217,1,1,0,0,2,,400.0,,43,4.0,0.0,5.0,5.0,2.8,2,1,115.50232945624626,780.0,14133.260115606936,4,4,0,1,80.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.07896267321703325,5047.5928984310485,1,1,1_0,1_1_0,1_1_0,1_0_0 -5457,2,58.0,0.0,7,112,50.0,,,85,75,0.0,0.0,,134.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,1,,5,119252,2,2,0,0,2,,148.0,,41,0.0,2.0,4.0,3.0,1.8,2,2,100.33918894983226,50.0,32795.83308679181,6,5,0,1,110.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004085884924629865,18219.907270439897,4,2,4_0,4_1_0,4_1_0,4_0_0 -5458,2,42.0,0.0,8,112,300.0,,,42,63,0.0,0.0,,510.0,361.26867087994026,,50,2,2,2,2,1,2,2,2,0,,1,2001.0,6,130080,1,2,0,0,2,,140.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,109.68862124437037,300.0,32719.577597357686,4,4,0,1,78.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.0155869982881804,11685.563427627745,2,1,2_0,2_1_0,2_1_0,2_0_0 -5459,0,72.0,0.0,6,112,130.0,,,86,78,0.0,0.0,,630.0,860.1635020950959,,70,0,0,0,0,0,0,0,0,0,,1,,4,125073,1,1,0,0,1,,140.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,106.73278515550496,130.0,11770.968986299387,5,5,0,1,81.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05352150708520916,7847.312657532925,1,1,1_0,1_1_0,1_1_0,1_0_0 -5460,1,49.0,278.0,8,112,200.0,,,0,52,0.0,0.0,,284.0,144.50746835197612,,41,2,2,2,2,1,2,2,2,0,,1,1999.0,6,120111,2,3,0,0,2,,140.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,96.46667411201828,200.0,10289.555449698728,0,4,1,2,50.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.02760080368761853,6859.703633132485,1,1,1_1,1_1_1,1_1_1,1_0_0 -5461,0,86.0,0.0,2,112,200.0,,,0,78,0.0,0.0,,326.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,0,,1,,2,119448,1,2,0,0,2,,360.0,,11,0.0,5.0,2.0,1.0,1.0,2,2,126.19667930622118,200.0,10628.549862345673,0,6,5,0,50.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030672105246919663,10628.549862345673,2,1,2_0,2_1_0,2_1_0,2_0_1 -5462,1,55.0,285.0,8,112,400.0,,,52,67,0.0,0.0,,484.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,110836,2,1,0,0,2,,120.0,,43,2.0,2.0,6.0,4.0,2.5,3,3,103.95901068511775,400.0,15534.383399209484,4,4,1,2,100.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.031156692065719832,6213.753359683794,1,1,1_1,1_1_1,1_1_1,1_0_0 -5463,2,35.0,0.0,7,112,358.0,,,81,68,0.0,0.0,,610.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,5,129477,1,2,0,0,2,,280.0,,43,2.0,0.0,2.0,4.0,2.1,3,3,103.44298477913078,358.0,13624.154440154438,4,4,0,1,26.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04477342081517723,6487.692590549732,1,1,1_0,1_1_0,1_1_0,1_0_0 -5464,1,39.0,413.0,7,112,600.0,,,0,67,0.0,0.0,,663.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,0,,1,,5,124035,2,2,0,0,2,,0.0,600.0,32,1.0,0.0,3.0,3.0,1.8,1,1,109.85911659030677,600.0,28359.802074430452,0,4,2,3,70.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02337816033623764,15755.445596905807,3,2,3_1,3_1_1,3_1_1,3_0_0 -5465,2,32.0,0.0,8,112,0.0,,,47,43,0.0,0.0,,1738.0,0.0,,41,0,0,0,0,0,0,0,0,2,7.0,1,2003.0,6,124613,2,1,0,0,1,,213.0,650.0,43,2.0,0.0,5.0,2.0,1.5,2,2,126.27186213988915,0.0,53644.81601589544,1,1,2,3,65.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03239828429060163,35763.210677263625,9,5,9,9_1,9_1,9_0_0 -5466,2,46.0,0.0,7,112,1370.0,,,47,43,0.0,0.0,,1480.0,189.2359704609211,,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,130534,2,1,0,0,1,,480.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,96.56897524902297,1370.0,102478.588476538,1,1,0,1,170.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014442041230289185,40991.4353906152,9,5,9,9_1,9_1,9_0_0 -5467,1,61.0,153.0,2,112,0.0,,,63,74,0.0,0.0,,21.0,36.12686708799403,,50,0,0,0,0,0,0,0,0,0,,1,,2,131328,1,1,0,0,2,,40.0,152.0,42,1.0,3.0,2.0,2.0,1.5,3,3,133.54309589436093,0.0,7168.483092320717,4,7,2,3,35.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0029294900649896745,4778.988728213812,1,1,1_1,1_1_1,1_1_1,1_0_1 -5468,2,30.0,0.0,9,112,100.0,,,52,55,0.0,0.0,,184.0,144.50746835197612,,41,2,2,2,2,1,2,2,2,0,,1,2011.0,6,112202,2,1,0,0,1,,160.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,177.64124235855851,100.0,52196.45194854754,4,1,1,2,57.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.003525143819763407,22694.10954284676,6,3,6,6_1,6_1,6_0_0 -5469,2,36.0,0.0,9,112,400.0,,,85,52,0.0,0.0,,442.0,72.25373417598806,,41,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,114454,2,1,0,0,1,,150.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,182.8317692770672,400.0,37092.85711209885,7,1,0,1,59.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011916040834067474,17663.26529147564,4,2,4_0,4_1_0,4_1_0,4_0_0 -5470,0,52.0,0.0,2,211,480.0,,,0,52,0.0,0.0,,678.0,340.62474682965797,,43,0,0,0,0,0,0,0,0,0,,1,,2,105223,2,1,0,0,1,,200.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,127.77705961920736,480.0,3856.5038254732644,0,4,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1758069045651204,2571.00255031551,1,1,1_0,1_1_0,1_2_0,1_0_1 -5471,2,21.0,0.0,7,211,80.0,,,84,69,0.0,0.0,,256.0,302.77755273747374,,60,2,2,2,2,1,2,2,2,0,,1,,5,127650,2,2,0,0,1,,196.0,,42,2.0,2.0,4.0,3.0,2.0,2,2,110.3979431438901,80.0,4713.273640434878,3,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.05431469070749301,2356.636820217439,1,1,1_0,1_1_0,1_2_0,1_0_0 -5472,2,51.0,0.0,9,211,640.0,,,85,67,0.0,0.0,,860.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,1,20.0,1,2005.0,6,131934,2,1,0,0,1,,420.0,,42,3.0,0.0,4.0,4.0,2.5,2,2,101.2545264025056,640.0,71409.21459073559,6,1,0,1,108.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012043263673027063,28563.685836294237,8,4,8,8_1,8_2,8_0_0 -5473,2,77.0,0.0,5,211,630.0,,,78,77,0.0,0.0,,870.0,412.878481005646,,20,2,2,2,2,1,2,2,2,0,,1,,3,120014,2,2,0,0,1,,400.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,104.1738244833093,630.0,18155.62754485021,5,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04791902664068326,12103.751696566806,2,1,2_0,2_1_0,2_2_0,2_0_0 -5474,2,59.0,0.0,7,211,500.0,,,85,75,0.0,0.0,,632.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,5,114863,2,1,0,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,110.3979431438901,500.0,35460.37512491727,6,5,0,1,55.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017822710497946953,23640.25008327818,6,3,6,6_1,6_2,6_0_0 -5475,1,55.0,357.0,9,211,270.0,,,0,22,0.0,0.0,,358.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114784,2,1,0,0,2,,360.0,530.0,32,1.0,2.0,4.0,2.0,1.5,2,2,120.9104535104114,270.0,9557.590909090908,0,4,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037457137829521515,6371.727272727272,1,1,1_1,1_1_1,1_2_1,1_0_0 -5476,2,35.0,0.0,8,211,400.0,,,11,52,0.0,0.0,,463.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,108093,2,1,0,0,1,,240.0,580.0,43,2.0,0.0,3.0,4.0,2.1,2,1,113.06504775713309,400.0,44480.37426352293,1,1,2,3,52.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010409085077768623,21181.130601677585,5,3,5,5_1,5_2,5_0_0 -5477,2,59.0,0.0,9,211,400.0,,,77,77,0.0,0.0,,526.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,2004.0,6,108647,2,1,0,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,105.34660464312107,400.0,39482.642461410534,5,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013322309936932434,26321.761640940356,7,4,7,7_1,7_2,7_0_0 -5478,2,48.0,0.0,7,211,394.0,,,55,68,0.0,0.0,,526.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,128313,2,3,0,0,2,,258.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,99.81073512767937,394.0,42000.0,1,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012523809523809524,18260.869565217392,4,2,4_0,4_1_0,4_2_0,4_0_0 -5479,2,39.0,0.0,9,211,450.0,,,31,22,0.0,0.0,,450.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,104270,2,2,0,0,2,,100.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,168.46727057479575,450.0,35513.72576329185,1,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012671157146376762,16911.297982519925,4,2,4_0,4_1_0,4_2_0,4_0_0 -5480,1,25.0,350.0,9,211,192.0,,,0,81,0.0,0.0,,444.0,433.5224050559283,,44,0,0,0,0,0,0,0,0,0,,2,2008.0,6,114830,2,3,0,0,2,,180.0,550.0,32,1.0,0.0,3.0,2.0,1.3,1,1,116.91680081582163,192.0,6764.526556813966,0,4,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06563652256679442,5203.481966779974,1,1,1_1,1_0_1,1_2_1,1_0_0 -5481,1,47.0,223.0,9,211,220.0,,,0,63,0.0,0.0,,388.0,289.01493670395223,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,117012,2,1,0,0,1,,120.0,450.0,12,1.0,0.0,2.0,1.0,1.0,2,2,128.2279687083196,220.0,9386.324032372802,0,1,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04133673615590235,9386.324032372802,1,1,1_1,1_0_1,1_2_1,1_0_0 -5482,2,51.0,0.0,9,111,280.0,,,0,45,0.0,0.0,,324.0,75.69438818436844,,10,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,101451,2,1,0,0,1,,290.0,765.0,32,1.0,2.0,4.0,3.0,2.0,2,2,195.85240910537922,280.0,41485.57775763292,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007809943057630126,20742.78887881646,5,3,5,5_1,5_2,5_0_0 -5483,2,32.0,0.0,7,111,468.0,,,0,68,0.0,0.0,,552.0,144.50746835197612,,20,0,0,0,0,0,0,0,0,0,,1,,5,110063,2,2,0,0,1,,420.0,,22,3.0,0.0,4.0,3.0,2.0,2,2,111.09008482302242,468.0,41578.87543032185,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013275972336602637,20789.437715160926,5,3,5,5_1,5_2,5_0_0 -5484,2,36.0,0.0,7,111,611.0,,,52,67,0.0,0.0,,732.0,208.1595675070132,,12,0,0,0,0,0,0,0,0,1,30.0,1,,5,127558,1,3,0,0,2,,240.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,106.55239866598608,611.0,24284.146591737874,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030143122272579523,13491.192550965485,3,2,3_0,3_1_0,3_2_0,3_0_0 -5485,2,50.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,958.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,120144,2,3,0,0,2,,312.0,560.0,12,1.0,0.0,3.0,1.0,1.0,4,3,114.30980128661957,0.0,30081.885827474853,0,1,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03184640768515332,30081.885827474853,8,4,8,8_0,8_2,8_0_0 -5486,2,53.0,0.0,5,111,420.0,,,52,52,0.0,0.0,,672.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,101724,2,1,0,0,2,,360.0,,43,2.0,3.0,5.0,3.0,2.0,2,2,126.7858435278003,420.0,32571.277610862733,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020631674570109084,16285.638805431367,4,2,4_0,4_1_0,4_2_0,4_0_0 -5487,1,63.0,226.0,9,111,480.0,,,0,77,0.0,0.0,,732.0,433.5224050559283,,71,2,2,2,2,1,2,2,2,0,,1,2006.0,6,123546,2,1,0,0,1,,480.0,,21,2.0,3.0,3.0,3.0,2.0,6,3,104.71605206756753,480.0,23281.521912350596,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.031441243521613677,11640.760956175298,2,1,2_1,2_1_1,2_2_1,2_0_0 -5488,2,54.0,0.0,6,111,600.0,,,68,67,0.0,0.0,,852.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,4,123747,2,2,0,0,1,,450.0,,43,2.0,3.0,3.0,3.0,2.0,3,2,104.18260268605812,600.0,16893.24426897933,1,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050434362188470076,8446.622134489666,1,1,1_0,1_1_0,1_2_0,1_0_0 -5489,2,61.0,0.0,5,111,330.0,,,52,65,0.0,0.0,,418.0,151.38877636873687,,20,0,0,0,0,0,0,0,0,2,45.0,1,,3,113624,2,2,0,0,1,,420.0,650.0,43,2.0,1.0,4.0,2.0,1.5,1,1,122.23675197467585,330.0,87219.31543801536,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004792516404202489,58146.21029201024,10,5,10,10_1,10_2,10_0_0 -5490,2,37.0,0.0,9,111,600.0,,,63,42,0.0,0.0,,710.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,118053,2,2,0,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,109.02015157438264,600.0,59459.77476313531,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0119408457705796,28314.178458635863,8,4,8,8_1,8_2,8_0_0 -5492,2,56.0,0.0,7,111,0.0,,,0,67,0.0,0.0,,252.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,5,108021,2,1,0,0,1,,100.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,135.54572878369456,0.0,8598.777360967684,0,4,0,1,63.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029306492007096292,8598.777360967684,1,1,1_0,1_1_0,1_2_0,1_0_0 -5493,2,28.0,0.0,6,111,600.0,,,85,56,0.0,0.0,,642.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,101845,1,2,0,0,2,,350.0,450.0,42,1.0,0.0,5.0,3.0,1.8,2,2,125.05721953789612,600.0,29430.03525093897,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02181444889637082,16350.019583854983,4,2,4_0,4_1_0,4_2_0,4_0_0 -5494,2,36.0,0.0,7,111,480.0,,,21,55,0.0,0.0,,606.0,216.76120252796414,,20,2,2,2,2,1,2,2,2,0,,1,,5,107533,1,3,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,103.33568716352492,480.0,82803.14401349533,1,4,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.007318562685267526,34501.310005623054,9,5,9,9_1,9_2,9_0_0 -5495,0,51.0,0.0,6,111,200.0,,,0,85,0.0,0.0,,360.0,275.25232067043066,,70,2,2,2,1,1,2,2,2,0,,1,,4,107262,1,3,0,0,2,,70.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,122.79007887551398,200.0,7380.6044984515775,0,6,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04877649250485196,7380.6044984515775,1,1,1_0,1_1_0,1_2_0,1_0_0 -5496,2,56.0,0.0,8,111,550.0,,,85,63,0.0,0.0,,700.0,258.04905062852873,,10,2,2,2,2,1,2,2,2,2,25.0,1,2001.0,6,102677,1,2,0,0,2,,400.0,,42,2.0,1.0,3.0,3.0,2.0,2,2,98.75037489470925,550.0,56368.3253509195,6,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.012418321737290735,28184.16267545975,8,4,8,8_1,8_2,8_0_0 -5497,2,48.0,0.0,7,111,600.0,,,0,52,0.0,0.0,,852.0,433.5224050559283,,43,0,0,0,0,0,0,0,0,2,2.0,1,,5,132928,2,1,0,0,1,,252.0,,32,2.0,1.0,7.0,3.0,1.8,1,1,116.65880173671812,600.0,23202.50244497521,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036720177145569535,12890.279136097339,2,1,2_0,2_1_0,2_2_0,2_0_0 -5498,0,25.0,0.0,7,111,980.0,,,48,55,0.0,0.0,,1060.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,124860,2,1,0,0,1,,240.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,128.7312204089902,980.0,48477.43327220438,1,1,5,0,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021865844135105537,32318.28884813625,8,4,8,8_1,8_2,8_0_0 -5499,2,71.0,0.0,2,111,492.0,,,71,71,0.0,0.0,,744.0,433.5224050559283,,50,2,2,1,2,2,2,2,1,0,,1,,2,129373,2,2,0,0,1,,240.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,109.14377542562988,492.0,9330.177502627028,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07974124820138925,6220.118335084685,1,1,1_0,1_1_0,1_2_0,1_0_1 -5500,2,72.0,0.0,7,111,260.0,,,0,67,0.0,0.0,,348.0,151.38877636873687,,42,0,0,0,0,0,0,0,0,0,,1,,5,128608,2,1,0,0,1,,350.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,108.84902679446294,260.0,3839.566036709608,0,5,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09063524280421688,3839.566036709608,1,1,1_0,1_1_0,1_2_0,1_0_0 -5501,2,56.0,0.0,9,111,350.0,,,56,77,0.0,0.0,,422.0,123.8635443016938,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,104878,2,1,0,0,2,,120.0,,42,1.0,4.0,3.0,2.0,1.5,1,1,119.34826448923036,350.0,32004.93417934001,1,5,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013185466891927296,21336.62278622667,6,3,6,6_1,6_2,6_0_0 -5502,1,27.0,357.0,9,111,0.0,,,0,90,0.0,0.0,,700.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,130103,1,2,0,0,2,,336.0,471.0,22,2.0,0.0,4.0,4.0,2.5,2,2,179.27319887896567,0.0,24802.553615273133,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028222900385908162,9921.021446109253,2,1,2_1,2_1_1,2_2_1,2_0_0 -5503,1,49.0,260.0,9,111,300.0,,,0,52,0.0,0.0,,384.0,144.50746835197612,,33,2,2,2,2,1,2,2,2,1,20.0,1,2004.0,6,127401,2,1,0,0,1,,180.0,,22,2.0,3.0,6.0,2.0,1.5,1,1,122.5692930696549,300.0,6002.563829787234,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.06397266416300837,4001.709219858156,1,1,1_1,1_1_1,1_2_1,1_0_0 -5504,1,28.0,180.0,7,111,0.0,,,85,54,0.0,0.0,,556.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,110176,2,1,0,0,2,,167.0,500.0,42,1.0,0.0,5.0,5.0,2.4,1,1,121.04860855896783,0.0,28860.89775528067,7,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01926481998981715,12025.37406470028,2,1,2_1,2_1_1,2_2_1,2_0_0 -5506,2,31.0,0.0,8,111,1800.0,,,54,54,0.0,0.0,,1860.0,103.2196202514115,,41,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,112396,2,1,0,0,2,,378.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,111.43596380664428,1800.0,33583.09331982612,1,1,1,2,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05538501121044529,18657.274066570066,4,2,4_0,4_1_0,4_2_0,4_0_0 -5507,2,57.0,0.0,6,111,600.0,,,77,65,0.0,0.0,,684.0,144.50746835197612,,50,2,2,2,2,1,2,2,2,0,,1,,4,127719,1,3,0,0,2,,312.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,113.0442494247693,600.0,17202.504587155963,7,4,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03976165194635089,11468.33639143731,2,1,2_0,2_1_0,2_2_0,2_0_0 -5508,2,43.0,0.0,2,111,708.0,,,86,52,0.0,0.0,,1148.0,756.9438818436844,,42,2,2,2,1,1,2,2,2,0,,1,,2,105228,1,2,0,0,2,,318.0,,42,1.0,1.0,4.0,3.0,1.8,2,2,109.05462404339767,708.0,14791.077821510922,6,4,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07761435737498748,8217.265456394956,1,1,1_0,1_1_0,1_2_0,1_0_1 -5510,2,50.0,0.0,7,111,636.0,,,56,21,0.0,0.0,,936.0,516.0981012570575,,71,0,0,0,0,0,0,0,0,0,,1,,5,110663,2,1,0,0,1,,696.0,,43,2.0,3.0,5.0,3.0,1.8,5,4,109.76718070971508,636.0,42444.836427811766,4,4,0,1,107.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02205215236467941,23580.464682117647,6,3,6,6_1,6_2,6_0_0 -5511,1,21.0,365.0,7,111,0.0,,,0,85,0.0,0.0,,841.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,132105,2,2,0,0,2,,641.0,450.0,31,0.0,0.0,3.0,2.0,1.3,1,1,138.18004171848443,0.0,10945.0,0,6,2,3,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07683873915029694,8419.23076923077,1,1,1_1,1_1_1,1_2_1,1_0_0 -5512,2,45.0,0.0,5,111,480.0,,,52,63,0.0,0.0,,612.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,3,114721,2,1,0,0,1,,280.0,,43,2.0,0.0,4.0,3.0,2.0,5,4,110.38843462366562,480.0,21088.093019218337,4,4,0,1,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029021116297346678,10544.046509609168,2,1,2_0,2_1_0,2_2_0,2_0_0 -5513,0,31.0,0.0,5,111,900.0,,,52,46,0.0,0.0,,1120.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,3,128779,2,2,0,0,2,,420.0,,43,5.0,0.0,8.0,8.0,4.1,2,2,128.31694691155417,900.0,34637.93440620136,1,1,5,0,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0323344916260215,8448.276684439357,1,1,1_0,1_1_0,1_2_0,1_0_0 -5514,1,33.0,410.0,5,111,320.0,,,0,56,0.0,0.0,,452.0,227.0831645531053,,42,0,0,0,0,0,0,0,0,0,,1,,3,128111,2,1,0,0,2,,210.0,635.0,32,1.0,0.0,4.0,3.0,1.6,2,2,120.69398683930261,320.0,8685.447860996997,0,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05204106998670247,5428.404913123123,1,1,1_1,1_1_1,1_2_1,1_0_0 -5515,1,51.0,220.0,6,111,260.0,,,0,63,0.0,0.0,,326.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,1,,4,122620,2,2,0,0,2,,180.0,450.0,12,1.0,0.0,2.0,1.0,1.0,3,1,152.55220713143925,260.0,5241.0,0,4,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0622018698721618,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -5516,1,35.0,215.0,7,111,400.0,,,0,43,0.0,0.0,,532.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,131437,2,2,0,0,2,,300.0,580.0,32,1.0,0.0,3.0,2.0,1.3,2,2,138.60868554532155,400.0,20600.80462440717,0,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025824234038397877,15846.772788005515,3,2,3_1,3_1_1,3_2_1,3_0_0 -5517,2,40.0,0.0,8,111,280.0,,,0,52,0.0,0.0,,530.0,430.0817510475479,,30,2,2,2,1,1,2,2,2,2,15.0,1,2000.0,6,129402,2,3,0,0,2,,140.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,121.89004159344256,280.0,14422.940769468052,0,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.036747013557870106,14422.940769468052,3,2,3_0,3_1_0,3_2_0,3_0_0 -5518,2,35.0,0.0,6,111,400.0,,,67,22,0.0,0.0,,421.0,36.12686708799403,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,106050,1,3,0,0,2,,300.0,764.0,43,2.0,0.0,5.0,3.0,1.8,2,2,112.75778517413848,400.0,33413.93203959808,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012599534813834018,18563.29557755449,4,2,4_0,4_1_0,4_2_0,4_0_0 -5519,0,87.0,0.0,8,111,0.0,,,0,77,0.0,0.0,,549.0,189.2359704609211,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,121486,1,1,0,0,2,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,111.4643558947363,0.0,9572.781097798288,0,5,5,0,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05735010488501282,9572.781097798288,1,1,1_0,1_1_0,1_2_0,1_0_0 -5520,2,47.0,0.0,6,111,457.0,,,56,22,0.0,0.0,,677.0,378.4719409218422,,41,0,0,0,0,0,0,0,0,1,2.0,1,,4,124425,1,3,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,111.46038147897032,457.0,14936.862049731051,1,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04532411143290902,5974.74481989242,1,1,1_0,1_1_0,1_2_0,1_0_0 -5521,1,57.0,223.0,6,111,310.0,,,21,77,0.0,0.0,,442.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,4,112552,2,1,0,0,1,,210.0,455.0,42,1.0,1.0,5.0,2.0,1.5,1,1,128.47570539138385,310.0,9386.10474082378,4,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04709088724288064,6257.403160549186,1,1,1_1,1_1_1,1_2_1,1_0_0 -5522,2,81.0,0.0,5,111,450.0,,,77,78,0.0,0.0,,560.0,189.2359704609211,,50,0,0,0,0,0,0,0,0,0,,1,,3,115978,2,2,0,0,2,,300.0,,41,0.0,6.0,5.0,2.0,1.5,3,3,121.1281710475451,450.0,22770.476056828644,5,5,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02459324954833614,15180.317371219096,3,2,3_0,3_1_0,3_2_0,3_0_0 -5523,2,71.0,0.0,5,111,290.0,,,77,78,0.0,0.0,,422.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,3,131458,2,2,0,0,2,,180.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,114.03886440696728,290.0,12679.994262386179,6,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03328077215711501,8453.329508257453,1,1,1_0,1_1_0,1_2_0,1_0_0 -5525,1,39.0,315.0,6,111,600.0,,,0,85,0.0,0.0,,732.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,2,,4,100885,2,2,0,0,2,,320.0,367.0,31,0.0,0.0,3.0,3.0,1.8,1,1,117.72044951068676,600.0,10979.556099934012,0,6,2,3,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0666693619794337,6099.753388852229,1,1,1_1,1_0_1,1_2_1,1_0_0 -5526,1,41.0,340.0,6,111,760.0,,,12,85,0.0,0.0,,1026.0,457.606983114591,,41,0,0,0,0,0,0,0,0,0,,2,,4,118619,2,2,0,0,2,,450.0,386.0,42,1.0,0.0,4.0,8.0,3.8999999999999995,1,1,152.7031156913382,760.0,30371.84078420473,4,6,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033781291272064896,7787.651483129419,1,1,1_1,1_0_1,1_2_1,1_0_0 -5528,1,28.0,320.0,8,111,279.0,,,0,81,0.0,0.0,,399.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,133016,2,2,0,0,2,,190.0,460.0,32,2.0,0.0,3.0,3.0,1.8,2,1,120.14608039345511,279.0,11003.479553734483,0,4,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03626125700070783,6113.044196519158,1,1,1_1,1_0_1,1_2_1,1_0_0 -5529,2,42.0,0.0,2,111,320.0,,,0,43,0.0,0.0,,452.0,227.0831645531053,,50,2,2,1,2,1,2,2,2,2,20.0,1,,2,131955,2,1,0,0,2,,260.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,114.03886440696728,320.0,58751.4407446483,0,1,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.0076934283529238034,32639.68930258239,8,4,8,8_1,8_2,8_0_1 -5530,1,24.0,357.0,5,111,0.0,,,0,81,0.0,0.0,,709.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,3,110193,1,2,0,0,2,,234.0,580.0,32,1.0,0.0,4.0,2.0,1.3,1,1,135.0946640807589,0.0,10836.577132013233,0,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06542656332925312,8335.828563087103,1,1,1_1,1_1_1,1_2_1,1_0_0 -5531,2,39.0,0.0,5,111,1400.0,,,0,54,0.0,0.0,,1526.0,216.76120252796414,,50,2,2,2,2,1,2,2,2,2,35.0,1,,3,124315,1,3,0,0,2,,810.0,,32,2.0,0.0,4.0,3.0,2.0,1,1,110.24995980809229,1400.0,33759.694368964134,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04520183101547501,16879.847184482067,4,2,4_0,4_1_0,4_2_0,4_0_0 -5532,2,60.0,0.0,2,111,600.0,,,78,78,0.0,0.0,,810.0,361.26867087994026,,71,2,2,2,2,1,2,2,2,0,,1,,2,100583,1,3,0,0,2,,400.0,,41,3.0,0.0,6.0,9.0,4.199999999999999,2,2,109.76718070971508,600.0,18002.0,6,7,0,1,101.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04499500055549383,4286.190476190477,1,1,1_0,1_1_0,1_2_0,1_0_1 -5533,2,38.0,0.0,9,111,1000.0,,,52,52,0.0,0.0,,1242.0,416.3191350140264,,12,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,117685,2,1,0,0,2,,420.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,107.40403528577478,1000.0,58532.716091543145,1,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021218902571641385,32518.175606412857,8,4,8,8_1,8_2,8_0_0 -5534,2,44.0,0.0,7,111,344.0,,,0,69,0.0,0.0,,695.0,0.0,,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,101530,1,1,0,0,2,,230.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,110.38843462366562,344.0,18894.201983054587,0,1,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03678377105438569,18894.201983054587,5,3,5,5_1,5_2,5_0_0 -5535,2,50.0,0.0,5,111,768.0,,,0,52,0.0,0.0,,831.0,108.38060126398207,,42,2,2,2,2,1,2,2,2,0,,1,,3,120423,1,3,0,0,2,,546.0,,32,1.0,4.0,4.0,2.0,1.5,1,1,126.7937184509074,768.0,8855.190295987526,0,4,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.09384326843620104,5903.460197325017,1,1,1_0,1_1_0,1_2_0,1_0_0 -5536,2,65.0,0.0,7,111,480.0,,,75,75,0.0,0.0,,520.0,68.81308016760767,,12,0,0,0,0,0,0,0,0,0,,1,,5,111139,2,1,0,0,2,,300.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,110.66075296658163,480.0,54150.02283997374,5,5,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009602950704872725,36100.01522664916,9,5,9,9_1,9_2,9_0_0 -5537,1,27.0,356.0,5,111,0.0,,,85,68,0.0,0.0,,1044.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,3,110080,1,2,0,0,2,,0.0,600.0,42,1.0,0.0,4.0,3.0,1.8,4,4,133.83096158893758,0.0,25049.23006069005,6,1,2,3,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04167792772354936,13916.238922605582,3,2,3_1,3_1_1,3_2_1,3_0_0 -5538,1,36.0,395.0,7,111,184.0,,,85,67,0.0,0.0,,672.0,839.5195780448136,,70,2,2,2,2,1,2,2,2,0,,2,,5,106183,2,2,0,0,2,,360.0,342.0,42,1.0,0.0,3.0,4.0,2.1,1,1,104.50817959823185,184.0,15602.77075098814,6,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04306927344666918,7429.890833803876,1,1,1_1,1_0_1,1_2_1,1_0_0 -5539,1,40.0,413.0,7,111,234.0,,,67,68,0.0,0.0,,990.0,1300.567215167785,,43,2,2,2,2,1,2,2,2,0,,2,,5,128334,1,2,0,0,2,,240.0,415.0,43,2.0,0.0,4.0,5.0,2.8,2,2,142.34791117699234,234.0,29719.308449901007,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.03331167687393808,10614.038732107503,2,1,2_1,2_0_1,2_2_1,2_0_0 -5540,1,32.0,373.0,7,111,457.0,,,0,52,0.0,0.0,,961.0,867.0448101118566,,31,2,2,2,1,1,2,2,2,0,,2,,5,112030,2,3,0,0,1,,900.0,385.0,32,1.0,0.0,3.0,3.0,1.6,2,2,110.06871410742137,457.0,15919.371971640787,0,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06036670301516619,9949.60748227549,2,1,2_1,2_0_1,2_2_1,2_0_0 -5541,1,40.0,413.0,7,111,900.0,,,85,62,0.0,0.0,,1050.0,258.04905062852873,,41,0,0,0,0,0,0,0,0,0,,1,,5,104157,2,1,0,0,1,,600.0,450.0,42,1.0,0.0,3.0,4.0,2.3,2,2,118.41697129490593,900.0,14100.582303573172,6,4,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07446500984104208,6130.687958075293,1,1,1_1,1_1_1,1_2_1,1_0_0 -5542,2,38.0,0.0,8,111,660.0,,,63,52,0.0,0.0,,910.0,430.0817510475479,,43,2,2,2,2,1,2,2,2,2,30.0,1,2001.0,6,114845,2,3,0,0,1,,350.0,,43,2.0,1.0,4.0,5.0,2.4,2,2,109.05462404339767,660.0,62947.679386944095,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.01445645032291281,26228.19974456004,7,4,7,7_1,7_2,7_0_0 -5543,2,53.0,0.0,5,111,1200.0,,,52,68,0.0,103.51725048194578,,1363.0,108.38060126398207,,41,2,2,2,1,1,2,2,2,3,15.0,1,,3,108209,1,2,0,0,2,,252.0,600.0,43,2.0,2.0,3.0,2.0,1.5,2,2,124.90303119713704,1200.0,10036.720951305353,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.1358013246171531,6691.147300870235,1,1,1_0,1_1_0,1_2_0,1_0_0 -5544,2,59.0,0.0,9,111,600.0,,,0,75,0.0,0.0,,600.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,2008.0,6,115480,2,2,0,0,2,,240.0,680.0,11,0.0,0.0,4.0,1.0,1.0,6,4,107.40403528577478,600.0,39326.39925725787,0,5,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015256926932848223,39326.39925725787,9,5,9,9_1,9_2,9_0_0 -5545,2,40.0,0.0,8,111,400.0,,,52,69,0.0,0.0,,900.0,860.1635020950959,,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,126915,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,114.24780230905023,400.0,35410.09990744771,4,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02541647728620798,19672.277726359836,5,3,5,5_1,5_2,5_0_0 -5546,2,40.0,0.0,9,111,1200.0,,,85,46,0.0,258.79312620486445,,1586.0,233.96447256986607,,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,105661,2,2,0,0,1,,1100.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,176.03629075822735,1200.0,51960.314978876726,6,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030523294569033153,21650.131241198636,6,3,6,6_1,6_2,6_0_0 -5547,1,83.0,204.0,7,111,280.0,,,0,77,0.0,0.0,,364.0,144.50746835197612,,50,2,2,2,1,1,2,2,2,0,,2,,5,106940,2,3,0,0,1,,180.0,369.0,11,0.0,5.0,2.0,1.0,1.0,4,2,123.83243363403734,280.0,14835.239699982916,0,5,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.02453617247589327,14835.239699982916,3,2,3_1,3_0_1,3_2_1,3_0_0 -5548,1,56.0,357.0,7,111,500.0,,,0,85,0.0,0.0,,563.0,108.38060126398207,,60,2,2,2,1,1,2,2,2,0,,2,,5,128588,2,3,0,0,1,,420.0,434.0,31,0.0,2.0,3.0,2.0,1.5,2,2,123.61509251906969,500.0,8574.448417782638,0,6,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06566020023310053,5716.298945188425,1,1,1_1,1_0_1,1_2_1,1_0_0 -5549,2,74.0,0.0,2,111,390.0,,,0,71,0.0,310.55175144583734,,732.0,72.25373417598806,,60,2,2,2,2,1,2,2,2,0,,1,,2,116848,2,2,0,0,1,,120.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,109.05851267549635,390.0,9369.219291549023,0,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07812817452786695,9369.219291549023,1,1,1_0,1_1_0,1_2_0,1_0_1 -5550,2,73.0,0.0,2,111,0.0,,,71,77,0.0,0.0,,477.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,,2,116796,2,1,0,0,2,,900.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,121.88017685543369,0.0,37894.273618867104,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012587653870808265,25262.849079244737,7,4,7,7_1,7_2,7_0_1 -5551,2,48.0,0.0,2,111,160.0,,,78,85,0.0,0.0,,223.0,108.38060126398207,,71,2,2,2,2,1,2,2,2,0,,1,,2,127470,1,2,0,0,2,,180.0,,41,0.0,0.0,6.0,3.0,1.8,3,3,102.6381982914667,160.0,9687.19696969697,7,6,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.02302007491925456,5381.776094276094,1,1,1_0,1_1_0,1_2_0,1_0_1 -5552,0,81.0,0.0,9,111,300.0,,,86,71,0.0,0.0,,542.0,416.3191350140264,,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,109871,2,1,0,0,2,,240.0,,41,0.0,4.0,2.0,2.0,1.5,1,1,99.60615190463461,300.0,5095.397845580691,6,5,5,0,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10637049675524043,3396.931897053794,1,1,1_0,1_1_0,1_2_0,1_0_0 -5553,1,57.0,279.0,9,111,690.0,,,85,63,0.0,517.5862524097289,,1400.0,361.26867087994026,,31,2,2,2,1,1,2,2,2,0,,1,2008.0,6,132123,1,1,0,0,2,,900.0,,42,2.0,2.0,5.0,4.0,2.5,2,2,113.80773669854123,690.0,21893.153453432373,6,4,1,2,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.06394693222142972,8757.26138137295,1,1,1_1,1_1_1,1_2_1,1_0_0 -5554,2,58.0,0.0,6,111,400.0,,,11,63,0.0,0.0,,1267.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,1,5.0,1,,4,115572,2,1,0,0,2,,942.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,113.0442494247693,400.0,39506.36916637713,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03207077812350095,19753.184583188566,5,3,5,5_1,5_2,5_0_0 -5555,2,87.0,0.0,9,111,240.0,,,0,86,0.0,0.0,,282.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,113582,1,2,0,0,2,,125.0,,11,0.0,5.0,3.0,1.0,1.0,3,3,104.63513589652214,240.0,11075.249915135897,0,7,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025462179378418097,11075.249915135897,2,1,2_0,2_1_0,2_2_0,2_0_0 -5556,2,71.0,0.0,2,111,600.0,,,74,74,0.0,82.81380038555662,,790.0,189.2359704609211,,60,0,0,0,0,0,0,0,0,0,,1,,2,101980,2,1,0,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,119.50547837472041,600.0,97502.90998822478,5,5,0,1,117.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00810232228038534,65001.939992149855,10,5,10,10_1,10_2,10_0_1 -5557,0,25.0,0.0,6,111,0.0,,,0,85,0.0,0.0,,334.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,103166,2,2,0,0,2,,0.0,,11,0.0,0.0,1.0,1.0,1.0,3,2,150.37081579950615,0.0,6409.6229765384305,0,7,5,0,22.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.052109149199970485,6409.6229765384305,1,1,1_0,1_0_0,1_2_0,1_0_0 -5558,1,32.0,160.0,6,111,220.0,,,0,63,0.0,0.0,,220.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,4,110346,2,1,0,0,2,,0.0,238.0,12,1.0,0.0,1.0,1.0,1.0,3,2,128.56312487605393,220.0,9383.473242235506,0,4,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023445476351951263,9383.473242235506,1,1,1_1,1_0_1,1_2_1,1_0_0 -5559,1,54.0,89.0,7,111,289.0,,,0,77,0.0,0.0,,289.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,5,107728,2,1,0,0,1,,110.0,169.0,11,0.0,1.0,1.0,1.0,1.0,3,3,146.53138760126498,289.0,9387.420490117916,0,7,2,3,22.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030785879923481498,9387.420490117916,1,1,1_1,1_0_1,1_2_1,1_0_0 -5560,1,49.0,225.0,5,111,380.0,,,0,85,0.0,0.0,,512.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,3,105828,2,1,0,0,2,,250.0,325.0,21,2.0,2.0,3.0,3.0,2.0,2,2,120.04099491999614,380.0,10410.460590132683,0,7,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04918130140037103,5205.230295066342,1,1,1_1,1_1_1,1_2_1,1_0_0 -5561,2,37.0,0.0,5,111,420.0,,,0,62,0.0,0.0,,552.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,1,,3,112162,2,1,0,0,2,,180.0,,22,2.0,0.0,4.0,3.0,2.0,2,2,106.94008005511871,420.0,17683.865824804558,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031214894156555314,8841.932912402279,1,1,1_0,1_1_0,1_2_0,1_0_0 -5562,1,54.0,219.0,6,111,0.0,,,0,63,0.0,0.0,,163.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,110750,2,2,0,0,2,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,1,1,145.35826010748525,0.0,9068.125645359467,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017975048689738194,9068.125645359467,1,1,1_1,1_0_1,1_2_1,1_0_0 -5563,0,48.0,0.0,7,111,480.0,,,56,65,0.0,0.0,,615.0,232.24414556567586,,50,0,0,0,0,0,0,0,0,0,,1,,5,104873,2,2,0,0,2,,380.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,114.18555113948862,480.0,15782.91304347826,4,4,5,0,113.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03896619073461394,6313.165217391304,1,1,1_0,1_1_0,1_2_0,1_0_0 -5564,2,31.0,0.0,7,111,350.0,,,0,43,0.0,0.0,,482.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,109867,2,1,0,0,1,,240.0,670.0,32,1.0,0.0,3.0,2.0,1.3,2,2,135.58398145783633,350.0,37438.116536605485,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012874579294840321,28798.55118200422,8,4,8,8_0,8_2,8_0_0 -5565,1,27.0,60.0,5,111,360.0,,,0,54,0.0,0.0,,402.0,72.25373417598806,,31,0,0,0,0,0,0,0,0,2,25.0,8,,3,105616,1,2,0,0,2,,240.0,400.0,12,1.0,0.0,3.0,1.0,1.0,2,2,140.2594794825154,360.0,25740.0,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015617715617715617,25740.0,7,4,7,7_0,7_2,7_0_0 -5566,2,82.0,0.0,5,111,0.0,,,0,77,0.0,0.0,,341.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,115910,1,2,0,0,2,,354.0,500.0,11,0.0,5.0,2.0,1.0,1.0,1,1,131.36868169454863,0.0,2872.4496001163952,0,5,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11871400632623189,2872.4496001163952,1,1,1_0,1_0_0,1_2_0,1_0_0 -5567,0,45.0,0.0,2,111,280.0,,,0,42,0.0,0.0,,322.0,72.25373417598806,,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,132268,2,2,0,0,2,,144.0,,32,1.0,0.0,5.0,3.0,2.0,2,2,142.3061652087307,280.0,49635.550218074786,0,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006487285797886526,24817.775109037393,7,4,7,7_1,7_2,7_0_1 -5568,2,87.0,0.0,2,111,0.0,,,0,86,0.0,0.0,,993.0,0.0,,42,2,2,2,2,1,2,2,2,0,,1,,2,107851,1,2,0,0,2,,215.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,106.94339891987676,0.0,9403.33614668342,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.10560081916780499,9403.33614668342,1,1,1_0,1_1_0,1_2_0,1_0_1 -5569,1,66.0,114.0,7,111,400.0,,,0,77,0.0,0.0,,463.0,108.38060126398207,,70,2,2,2,2,1,2,2,2,0,,2,,5,125565,1,3,0,0,2,,300.0,307.0,11,0.0,6.0,2.0,1.0,1.0,1,1,156.1566592334326,400.0,12576.457672724202,0,5,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03681481797566524,12576.457672724202,2,1,2_1,2_0_1,2_2_1,2_0_0 -5570,1,47.0,183.0,6,111,900.0,,,0,54,0.0,0.0,,1150.0,430.0817510475479,,50,2,2,2,2,1,2,2,2,2,10.0,2,,4,125017,1,1,0,0,2,,380.0,413.0,32,1.0,0.0,4.0,3.0,2.0,1,1,124.3101522118026,900.0,27341.87921109453,0,1,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04206002049534927,13670.939605547264,3,2,3_1,3_0_1,3_2_1,3_0_0 -5571,1,85.0,253.0,9,111,200.0,,,0,77,0.0,0.0,,305.0,180.63433543997013,,50,2,2,1,2,1,2,2,2,0,,2,2004.0,6,121261,2,2,0,0,2,,156.0,295.0,11,0.0,3.0,2.0,1.0,1.0,2,2,132.77193435285966,200.0,7457.089500860585,0,5,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04090067578842945,7457.089500860585,1,1,1_1,1_0_1,1_2_1,1_0_0 -5572,2,60.0,0.0,2,111,220.0,,,0,77,0.0,0.0,,286.0,113.54158227655265,,31,0,0,0,0,0,0,0,0,0,,2,,2,101650,2,2,0,0,2,,150.0,500.0,11,0.0,0.0,2.0,1.0,1.0,5,5,158.22491119208073,220.0,31171.013930679328,0,7,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009175190792190153,31171.013930679328,8,4,8,8_0,8_2,8_0_1 -5573,2,34.0,0.0,6,111,350.0,,,85,69,0.0,0.0,,482.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,2,,4,101893,2,2,0,0,2,,260.0,550.0,42,1.0,0.0,3.0,3.0,1.8,3,3,116.86843096616802,350.0,18634.60423485821,6,1,2,3,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02586585654973893,10352.557908254561,2,1,2_0,2_0_0,2_2_0,2_0_0 -5574,2,84.0,0.0,5,111,0.0,,,0,72,0.0,0.0,,1113.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,3,130343,2,1,0,0,2,,0.0,,11,0.0,0.0,6.0,1.0,1.0,4,4,127.5886434819086,0.0,46140.04003990869,0,7,0,1,143.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024122215737942883,46140.04003990869,10,5,10,10_1,10_2,10_0_0 -5575,2,54.0,0.0,6,111,850.0,,,62,56,0.0,0.0,,1100.0,430.0817510475479,,43,0,0,0,0,0,0,0,0,0,,1,,4,132476,1,2,0,0,2,,900.0,,43,2.0,2.0,8.0,5.0,2.5999999999999996,2,2,129.87276681473463,850.0,17221.12844036697,1,1,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0638750244392556,6623.510938602682,1,1,1_0,1_1_0,1_2_0,1_0_0 -5576,2,60.0,0.0,5,111,650.0,,,68,54,0.0,227.73795106028072,,891.0,36.12686708799403,,71,2,2,2,2,1,2,2,2,2,15.0,1,,3,132957,1,1,0,0,2,,600.0,,43,2.0,1.0,3.0,3.0,2.0,2,2,108.66041954295213,650.0,37580.68327463928,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0237089888304739,18790.34163731964,5,3,5,5_1,5_2,5_0_0 -5577,1,62.0,357.0,7,111,170.0,,,0,86,0.0,0.0,,926.0,1300.567215167785,,50,2,2,2,2,1,2,2,2,0,,2,,5,100757,2,3,0,0,2,,300.0,413.0,31,1.0,0.0,3.0,4.0,2.5,2,2,112.05667522453929,170.0,10466.101335790903,0,7,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.08847611639621335,4186.440534316362,1,1,1_1,1_0_1,1_2_1,1_0_0 -5578,1,35.0,465.0,9,111,780.0,,,63,90,0.0,0.0,,843.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,127326,2,1,0,0,1,,330.0,665.0,43,2.0,2.0,4.0,5.0,2.5999999999999996,1,1,124.94988069845103,780.0,33045.45147978916,1,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02551031873526028,12709.78903068814,2,1,2_1,2_1_1,2_2_1,2_0_0 -5579,2,65.0,0.0,5,111,360.0,,,77,77,0.0,0.0,,423.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,0,,1,,3,114807,2,2,0,0,2,,135.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,121.88017685543369,360.0,58913.11719757864,5,5,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007180064816149051,39275.41146505243,9,5,9,9_1,9_2,9_0_0 -5580,1,33.0,467.0,6,111,588.0,,,0,85,0.0,0.0,,735.0,252.8880696159582,,50,0,0,0,0,0,0,0,0,0,,1,,4,102133,1,2,0,0,2,,420.0,550.0,31,0.0,0.0,6.0,4.0,1.9,2,2,122.96341018622067,588.0,16568.994884296688,0,6,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.044359962999119415,8720.523623314046,1,1,1_1,1_1_1,1_2_1,1_0_0 -5581,2,47.0,0.0,7,111,240.0,,,85,11,0.0,0.0,,316.0,130.74485231845458,,41,0,0,0,0,0,0,0,0,0,,1,,5,107099,2,2,0,0,2,,360.0,,42,1.0,1.0,5.0,5.0,2.5999999999999996,4,3,111.43234814205564,240.0,20505.817745803357,6,1,0,1,220.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015410260830230551,7886.852979155138,1,1,1_0,1_1_0,1_2_0,1_0_0 -5582,0,79.0,0.0,2,111,360.0,,,0,71,0.0,0.0,,602.0,416.3191350140264,,50,2,2,2,2,1,2,2,2,0,,1,,2,122159,1,2,0,0,2,,180.0,,11,0.0,9.0,4.0,1.0,1.0,2,2,109.05851267549635,360.0,10580.97255263368,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05689458100429132,10580.97255263368,2,1,2_0,2_1_0,2_2_0,2_0_1 -5583,1,59.0,238.0,2,111,300.0,,,0,77,0.0,0.0,,740.0,756.9438818436844,,31,0,0,0,0,0,0,0,0,0,,1,,2,117069,2,3,0,0,2,,0.0,408.0,11,0.0,2.0,2.0,1.0,1.0,3,2,157.4672694060057,300.0,12402.303797468354,0,7,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05966633393959064,12402.303797468354,2,1,2_1,2_1_1,2_2_1,2_0_1 -5584,2,73.0,0.0,6,111,306.0,,,77,71,0.0,0.0,,556.0,430.0817510475479,,71,2,2,2,2,1,2,2,2,0,,1,,4,129121,2,3,0,0,2,,250.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,104.31808684736194,306.0,8199.013761230482,6,5,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.06781303412723597,5466.009174153655,1,1,1_0,1_1_0,1_2_0,1_0_0 -5585,1,26.0,295.0,9,111,888.0,,,0,54,0.0,0.0,,1392.0,867.0448101118566,,10,2,2,2,2,1,2,1,2,0,,1,2004.0,6,110247,1,1,0,0,2,,600.0,,22,2.0,1.0,6.0,4.0,2.5,2,2,125.8777170935276,888.0,13141.454042176003,0,1,1,2,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.10592435171424214,5256.581616870401,1,1,1_1,1_1_1,1_2_1,1_0_0 -5586,1,47.0,380.0,8,111,600.0,,,63,54,0.0,0.0,,700.0,172.03270041901916,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,116384,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,108.95980538704521,600.0,29504.619859898863,4,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02372509808036549,11801.847943959545,2,1,2_1,2_1_1,2_2_1,2_0_0 -5587,2,40.0,0.0,8,111,550.0,,,0,48,0.0,0.0,,800.0,430.0817510475479,,44,0,0,0,0,0,0,0,0,0,,1,2002.0,6,132490,2,1,0,0,2,,200.0,,22,1.0,0.0,7.0,2.0,1.5,2,2,106.2484995152668,550.0,51012.97132473303,0,1,1,2,154.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015682285881907246,34008.64754982202,9,5,9,9_1,9_2,9_0_0 -5588,1,35.0,256.0,9,111,215.0,,,68,90,0.0,0.0,,387.0,295.89624472071296,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,103403,1,1,0,0,2,,336.0,,43,2.0,0.0,2.0,3.0,1.8,1,1,122.88149829092666,215.0,10604.30576855487,1,4,1,2,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.036494609684641285,5891.280982530483,1,1,1_1,1_1_1,1_2_1,1_0_0 -5589,2,40.0,0.0,2,111,180.0,,,0,69,0.0,0.0,,480.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,1,,2,115444,2,1,0,0,2,,50.0,,22,1.0,5.0,5.0,2.0,1.5,3,3,104.54415980926319,180.0,15459.678432079101,0,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031048511268125193,10306.452288052735,2,1,2_0,2_1_0,2_2_0,2_0_1 -5590,2,44.0,0.0,7,111,900.0,,,56,63,0.0,207.03450096389156,,1220.0,206.439240502823,,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,103738,2,1,0,0,2,,600.0,,43,3.0,1.0,5.0,4.0,2.3,2,2,123.52731153594983,900.0,33719.689570571725,1,1,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036180641504622094,14660.73459590075,3,2,3_0,3_1_0,3_2_0,3_0_0 -5591,1,22.0,255.0,2,111,400.0,,,63,55,0.0,0.0,,425.0,43.00817510475479,,20,0,0,0,0,0,0,0,0,2,5.0,1,,2,102029,1,1,0,0,2,,200.0,429.0,43,2.0,0.0,3.0,2.0,1.5,1,1,132.33951365782366,400.0,11465.560322636145,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037067529893060176,7643.70688175743,1,1,1_1,1_1_1,1_2_1,1_0_1 -5592,2,60.0,0.0,8,111,700.0,,,77,77,0.0,0.0,,784.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,109394,2,1,0,0,1,,750.0,,41,0.0,2.0,7.0,3.0,2.0,3,3,116.59422730894032,700.0,56146.30675540553,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013963518623146478,28073.153377702765,8,4,8,8_1,8_2,8_0_0 -5593,2,35.0,0.0,9,111,390.0,,,54,63,0.0,0.0,,558.0,289.01493670395223,,42,0,0,0,0,0,0,0,0,0,,1,2005.0,6,120534,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,117.68423820352254,390.0,34238.59517566146,4,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016297397633786532,22825.73011710764,6,3,6,6_1,6_2,6_0_0 -5594,1,46.0,370.0,9,111,150.0,,,0,52,0.0,0.0,,180.0,51.60981012570575,,42,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,122640,2,1,0,0,2,,80.0,620.0,32,1.0,1.0,3.0,2.0,1.3,4,2,151.3204592231711,150.0,23565.505891082204,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.007638282871241761,18127.312223909386,4,2,4_1,4_1_1,4_2_1,4_0_0 -5595,0,79.0,0.0,2,111,216.0,,,0,86,0.0,0.0,,456.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,2,103296,2,1,0,0,2,,390.0,,21,1.0,4.0,5.0,3.0,2.0,3,2,103.74854930287046,216.0,29818.253064732602,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015292646387099446,14909.126532366301,3,2,3_0,3_1_0,3_2_0,3_0_1 -5596,2,48.0,0.0,7,111,800.0,,,55,22,0.0,0.0,,860.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,121925,2,1,0,0,2,,324.0,,43,2.0,1.0,4.0,3.0,1.8,1,1,136.67010819590652,800.0,77305.08178494127,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011124753769648358,42947.267658300705,9,5,9,9_1,9_2,9_0_0 -5597,0,28.0,0.0,7,111,400.0,,,81,56,0.0,0.0,,610.0,361.26867087994026,,70,2,2,1,1,1,2,2,2,0,,1,,5,103439,1,2,0,0,2,,240.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,127.720439137048,400.0,17182.57616004353,4,4,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03550107936774335,9545.875644468628,1,1,1_0,1_1_0,1_2_0,1_0_0 -5598,0,43.0,0.0,2,111,120.0,,,52,63,0.0,0.0,,498.0,650.2836075838925,,71,0,0,0,0,0,0,0,0,0,,1,,2,115649,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,2.0,1.5,5,5,128.65996350619938,120.0,8792.533801406244,4,4,5,0,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056638963380539045,5861.689200937496,1,1,1_0,1_1_0,1_2_0,1_0_1 -5599,2,39.0,0.0,2,111,540.0,,,52,63,0.0,0.0,,620.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,1,,2,120005,1,2,0,0,2,,250.0,,43,2.0,0.0,5.0,4.0,2.3,4,2,108.95980538704521,540.0,17303.605504587154,4,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03583068279241798,7523.30674112485,1,1,1_0,1_1_0,1_2_0,1_0_1 -5601,2,63.0,0.0,1,111,240.0,,,0,77,0.0,0.0,,290.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,0,,1,,1,132137,2,2,0,0,2,,100.0,,11,0.0,3.0,7.0,1.0,1.0,5,4,122.72211058711967,240.0,22160.681640122282,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013086240067406147,22160.681640122282,6,3,6,6_1,6_2,6_1_0 -5602,2,58.0,0.0,6,111,970.0,,,77,75,0.0,0.0,,1120.0,258.04905062852873,,60,0,0,0,0,0,0,0,0,0,,1,,4,111637,2,1,0,0,2,,320.0,,41,0.0,3.0,6.0,3.0,2.0,3,3,111.18197494652526,970.0,62773.4958554541,5,5,0,1,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01784192491969823,31386.74792772705,8,4,8,8_1,8_2,8_0_0 -5603,2,56.0,0.0,6,111,400.0,,,63,52,0.0,0.0,,640.0,412.878481005646,,31,0,0,0,0,0,0,0,0,0,,1,,4,102836,2,1,0,0,2,,500.0,,43,2.0,1.0,4.0,2.0,1.5,3,2,117.68423820352254,400.0,14194.115606936417,4,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045089107185180534,9462.743737957611,1,1,1_0,1_1_0,1_2_0,1_0_0 -5604,2,44.0,0.0,9,111,300.0,,,56,67,0.0,0.0,,426.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,132427,2,2,0,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,107.3106517506706,300.0,17939.519394904426,4,4,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02374645555560434,8542.628283287822,1,1,1_0,1_1_0,1_2_0,1_0_0 -5605,0,45.0,0.0,2,111,500.0,,,52,64,0.0,0.0,,710.0,361.26867087994026,,60,0,0,0,0,0,0,0,0,0,,1,,2,126142,2,1,0,0,2,,650.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,2,2,109.41277827998448,500.0,33210.35666678819,1,1,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021378873076362683,10713.018279609094,2,1,2_0,2_1_0,2_2_0,2_0_1 -5606,2,46.0,0.0,9,111,500.0,,,0,21,0.0,0.0,,584.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,127158,2,1,0,0,2,,319.0,,32,1.0,0.0,4.0,4.0,2.1,2,2,122.54014086578667,500.0,9400.577983059286,0,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06212383973117634,4476.465706218707,1,1,1_0,1_1_0,1_2_0,1_0_0 -5607,2,38.0,0.0,7,111,0.0,,,11,85,0.0,0.0,,889.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,105807,2,1,0,0,2,,0.0,,42,1.0,6.0,5.0,2.0,1.5,2,1,159.95181754409816,0.0,21025.524242163785,4,7,0,1,170.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042281942165191454,14017.016161442523,3,2,3_0,3_1_0,3_2_0,3_0_0 -5608,2,36.0,0.0,2,111,360.0,,,0,54,0.0,0.0,,535.0,301.05722573328353,,71,0,0,0,0,0,0,0,0,0,,1,,2,125627,1,2,0,0,2,,300.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,132.84144000712556,360.0,14409.374405069637,0,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03712860704152232,9005.859003168522,1,1,1_0,1_1_0,1_2_0,1_0_1 -5609,1,47.0,110.0,8,111,510.0,,,52,63,0.0,0.0,,710.0,344.06540083803833,,50,2,2,1,2,2,2,2,1,0,,1,1999.0,6,125798,1,1,0,0,2,,350.0,,43,3.0,0.0,5.0,5.0,2.5999999999999996,1,1,119.66721366773747,510.0,14004.532923621478,4,1,1,2,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.05069787074458166,5386.358816777492,1,1,1_1,1_1_1,1_2_1,1_0_0 -5610,2,46.0,0.0,6,111,390.0,,,0,62,0.0,0.0,,410.0,34.40654008380383,,50,0,0,0,0,0,0,0,0,0,,1,,4,108006,2,1,0,0,2,,270.0,,32,1.0,1.0,3.0,2.0,1.3,4,4,104.8412861741285,390.0,16046.522549194577,0,4,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025550707247819195,12343.478883995827,2,1,2_0,2_1_0,2_2_0,2_0_0 -5611,1,45.0,323.0,9,111,660.0,,,0,42,0.0,0.0,,900.0,412.878481005646,,20,2,2,2,1,1,2,2,2,0,,1,2009.0,6,124185,1,1,0,0,2,,330.0,,32,1.0,4.0,5.0,4.0,2.1,1,1,176.47784166927292,660.0,17818.660600102536,0,4,1,2,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.05050884688801026,8485.076476239303,1,1,1_1,1_1_1,1_2_1,1_0_0 -5612,2,28.0,0.0,8,111,420.0,,,0,52,0.0,0.0,,464.0,75.69438818436844,,20,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,127287,1,1,0,0,2,,255.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,2,150.83168186420028,420.0,32201.852533778267,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014409108901833684,32201.852533778267,8,4,8,8_1,8_2,8_0_0 -5613,2,59.0,0.0,7,111,300.0,,,0,54,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,111505,2,1,0,0,2,,160.0,,22,1.0,1.0,6.0,3.0,2.0,1,1,121.59573901171224,300.0,43955.27795878017,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006825118937510309,21977.638979390085,6,3,6,6_1,6_2,6_0_0 -5614,0,33.0,0.0,2,111,900.0,,,0,21,0.0,0.0,,942.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,0,,1,,2,100799,2,2,0,0,2,,150.0,,32,1.0,0.0,5.0,2.0,1.3,3,3,124.02173784455175,900.0,35570.51764223327,0,1,5,0,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026482605889365886,27361.93664787175,7,4,7,7_1,7_2,7_0_1 -5615,1,39.0,428.0,6,111,900.0,,,0,85,0.0,0.0,,1000.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,4,121834,1,2,0,0,2,,650.0,700.0,31,0.0,0.0,6.0,4.0,2.1,2,2,117.83381441728325,900.0,16159.545284797947,0,6,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06188292940029368,7695.021564189498,1,1,1_1,1_1_1,1_2_1,1_0_0 -5616,2,42.0,0.0,8,111,0.0,,,47,38,0.0,0.0,,731.0,206.439240502823,,41,0,0,0,0,0,0,0,0,2,70.0,1,2000.0,6,103127,2,1,0,0,1,,130.0,,43,2.0,0.0,7.0,5.0,3.0,2,2,114.67067294400556,0.0,100065.76163039247,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007305195984017545,33355.25387679749,8,4,8,8_1,8_2,8_0_0 -5617,2,52.0,0.0,6,111,360.0,,,52,53,0.0,0.0,,810.0,774.1471518855863,,50,0,0,0,0,0,0,0,0,0,,1,,4,112625,2,1,0,0,2,,360.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,106.12356483011934,360.0,27292.861877812054,4,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02967808959083532,13646.430938906027,3,2,3_0,3_1_0,3_2_0,3_0_0 -5618,2,50.0,0.0,9,111,451.0,,,0,52,0.0,0.0,,571.0,206.439240502823,,70,2,2,2,1,2,2,2,2,1,45.0,1,2004.0,6,107127,1,1,0,0,2,,400.0,,32,2.0,0.0,5.0,4.0,2.5,1,1,122.53981561749518,451.0,42223.72836338632,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.013523201814057098,16889.491345354527,4,2,4_0,4_1_0,4_2_0,4_0_0 -5619,1,36.0,357.0,9,111,477.0,,,0,56,0.0,0.0,,561.0,144.50746835197612,,20,2,2,2,2,1,2,2,2,0,,2,2006.0,6,104514,2,3,0,0,2,,207.0,436.0,32,1.0,0.0,3.0,2.0,1.3,2,2,113.56595955618391,477.0,13224.378183905756,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04242165432645782,10172.598603004428,2,1,2_1,2_0_1,2_2_1,2_0_0 -5620,1,30.0,413.0,9,111,540.0,,,81,48,0.0,0.0,,624.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,0,,2,2005.0,6,133637,2,2,0,0,2,,200.0,433.0,43,2.0,0.0,3.0,4.0,2.1,3,3,111.46101125971747,540.0,12871.550103151065,4,4,2,3,63.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04847900952094647,6129.309572929078,1,1,1_1,1_0_1,1_2_1,1_0_0 -5621,2,44.0,0.0,7,111,1000.0,,,63,85,0.0,372.6621017350048,,1360.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,112862,2,1,0,0,1,,300.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,99.26944027796048,1000.0,16952.89458088264,1,7,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08022228850131814,11301.929720588427,2,1,2_0,2_1_0,2_2_0,2_0_0 -5622,2,49.0,0.0,8,111,750.0,,,54,53,0.0,310.55175144583734,,1176.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,132831,2,1,0,0,1,,420.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,100.59894257498993,750.0,56523.70938365114,1,1,0,1,168.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020805428603738185,31402.06076869508,8,4,8,8_1,8_2,8_0_0 -5623,2,58.0,0.0,5,111,357.0,,,78,62,0.0,414.0690019277831,,820.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,0,,1,,3,109888,2,1,0,0,2,,1200.0,,42,1.0,2.0,5.0,2.0,1.5,4,3,104.93488072182454,357.0,26896.733477289054,6,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03048697347179307,17931.155651526034,4,2,4_0,4_1_0,4_2_0,4_0_0 -5624,1,22.0,357.0,9,111,420.0,,,85,52,0.0,0.0,,480.0,103.2196202514115,,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,107923,2,1,0,0,2,,240.0,650.0,42,1.0,0.0,3.0,3.0,1.8,1,1,121.48373850127916,420.0,7124.905405481876,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06736931547620123,3958.2807808232646,1,1,1_1,1_1_1,1_2_1,1_0_0 -5625,2,31.0,0.0,9,111,360.0,,,42,42,0.0,0.0,,400.0,68.81308016760767,,10,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,116318,1,1,0,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,4,4,182.60139866253553,360.0,68016.56182941861,1,1,1,2,129.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005880920605825029,37786.97879412145,9,5,9,9_1,9_2,9_0_0 -5626,2,61.0,0.0,5,111,1080.0,,,85,75,0.0,0.0,,1212.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,1,,3,119355,2,1,0,0,2,,540.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,103.25446810188541,1080.0,44330.3819741893,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027340165954483964,22165.19098709465,6,3,6,6_1,6_2,6_0_0 -5627,2,60.0,0.0,7,111,300.0,,,0,75,0.0,0.0,,380.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,1,,5,123256,2,1,0,0,2,,229.0,,31,0.0,0.0,4.0,2.0,1.5,3,3,108.19511663960547,300.0,45153.74332274398,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008415692078592156,30102.49554849599,8,4,8,8_1,8_2,8_0_0 -5628,2,51.0,0.0,9,111,310.0,,,78,52,0.0,0.0,,373.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,119375,2,1,0,0,2,,299.0,,42,1.0,3.0,3.0,2.0,1.5,1,1,100.15891250629788,310.0,36714.890020353734,5,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010159365853832572,24476.59334690249,7,4,7,7_1,7_2,7_0_0 -5629,2,48.0,0.0,8,111,800.0,,,85,37,0.0,0.0,,880.0,137.62616033521533,,60,0,0,0,0,0,0,0,0,2,90.0,1,2003.0,6,120158,1,3,0,0,1,,300.0,,42,1.0,0.0,7.0,4.0,2.3,3,3,139.1571074253744,800.0,87213.78315389856,6,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010090148233188562,37919.03615386895,9,5,9,9_1,9_2,9_0_0 -5630,2,35.0,0.0,9,111,370.0,,,54,54,0.0,0.0,,450.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,2,12.0,1,2009.0,6,111687,2,1,0,0,2,,200.0,800.0,43,2.0,0.0,5.0,7.0,2.9999999999999996,3,3,182.80426044446915,370.0,52426.55944016075,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008583435663246724,17475.51981338692,4,2,4_0,4_1_0,4_2_0,4_0_0 -5631,2,47.0,0.0,8,111,540.0,,,0,42,0.0,0.0,,620.0,137.62616033521533,,31,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,132056,2,1,0,0,1,,420.0,,32,1.0,1.0,6.0,3.0,2.0,1,1,123.712092198859,540.0,57680.75816281608,0,1,0,1,161.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010748818492467099,28840.37908140804,8,4,8,8_1,8_2,8_0_0 -5632,2,39.0,0.0,9,111,180.0,,,42,42,0.0,0.0,,230.0,86.01635020950958,,20,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,115163,2,1,0,0,2,,120.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,131.64818527238745,180.0,84516.27227084976,1,1,1,2,169.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002721369433603481,46953.48459491653,10,5,10,10_1,10_2,10_0_0 -5633,2,65.0,0.0,7,111,0.0,,,47,75,0.0,0.0,,916.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,114720,2,1,0,0,1,,423.0,,42,1.0,2.0,5.0,3.0,2.0,2,2,128.8117421933129,0.0,100706.67690337179,4,5,0,1,169.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009095722628986194,50353.33845168589,10,5,10,10_1,10_2,10_0_0 -5635,2,48.0,0.0,7,111,150.0,,,0,85,0.0,0.0,,238.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,5,100165,1,1,0,0,2,,240.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,110.35085485130972,150.0,10687.137761341284,0,7,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02226976065199799,10687.137761341284,2,1,2_0,2_1_0,2_2_0,2_0_0 -5636,2,49.0,0.0,6,111,600.0,,,85,21,0.0,0.0,,900.0,516.0981012570575,,60,0,0,0,0,0,0,0,0,0,,1,,4,128177,2,2,0,0,2,,600.0,,42,2.0,1.0,5.0,5.0,2.8,2,2,112.09983132322947,600.0,18660.603921568625,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04822995031579585,6664.501400560223,1,1,1_0,1_1_0,1_2_0,1_0_0 -5637,1,42.0,96.0,7,111,360.0,,,48,43,0.0,0.0,,486.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,0,,1,,5,133172,2,1,0,0,2,,300.0,886.0,43,2.0,2.0,5.0,5.0,2.5999999999999996,2,2,144.84862722683786,360.0,57779.83450576395,4,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008411239044852543,22223.01327144768,6,3,6,6_1,6_2,6_0_0 -5638,2,52.0,0.0,8,111,540.0,,,11,11,0.0,103.51725048194578,,1144.0,867.0448101118566,,50,2,2,2,2,1,2,2,2,0,,1,2002.0,6,127538,2,2,0,0,2,,600.0,,43,3.0,1.0,5.0,3.0,2.0,3,2,108.67677192271537,540.0,50475.0,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02266468548786528,25237.5,7,4,7,7_1,7_2,7_0_0 -5639,0,78.0,0.0,7,111,160.0,,,77,78,0.0,103.51725048194578,,410.0,258.04905062852873,,70,0,0,0,0,0,0,0,0,0,,1,,5,129646,2,1,0,0,2,,150.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,100.15891250629788,160.0,925.6719535047821,5,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4429214890303813,617.1146356698547,1,1,1_0,1_1_0,1_2_0,1_0_0 -5640,2,42.0,0.0,9,111,400.0,,,21,55,0.0,0.0,,640.0,412.878481005646,,20,2,2,1,2,1,2,2,2,2,5.0,1,2008.0,6,123064,2,1,0,0,1,,490.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,104.8412861741285,400.0,25188.113778444622,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02540881010898468,10075.245511377849,2,1,2_0,2_1_0,2_2_0,2_0_0 -5641,2,86.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,528.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,110609,1,2,0,0,2,,228.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,106.12747402542401,0.0,14912.631932114366,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03540622489736044,14912.631932114366,3,2,3_0,3_1_0,3_2_0,3_0_1 -5642,2,76.0,0.0,8,111,280.0,,,0,77,0.0,0.0,,364.0,144.50746835197612,,70,2,2,1,1,1,2,2,2,0,,1,2002.0,6,121057,1,1,0,0,2,,400.0,,21,0.0,3.0,4.0,2.0,1.5,1,1,104.96017138369197,280.0,20255.012234605518,0,5,0,1,107.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.01797086053486105,13503.341489737011,3,2,3_0,3_1_0,3_2_0,3_0_0 -5643,1,44.0,467.0,9,111,500.0,,,0,55,0.0,0.0,,750.0,430.0817510475479,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,132325,1,2,0,0,2,,600.0,750.0,32,2.0,2.0,4.0,5.0,2.5999999999999996,2,2,120.35239916026313,500.0,13590.023166023166,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055187543894339934,5226.931986931988,1,1,1_1,1_1_1,1_2_1,1_0_0 -5644,2,38.0,0.0,7,111,0.0,,,0,54,0.0,0.0,,599.0,0.0,,44,0,0,0,0,0,0,0,0,2,15.0,2,,5,106442,2,1,0,0,2,,176.0,495.0,12,1.0,1.0,2.0,1.0,1.0,2,2,148.27372761507482,0.0,31696.750922016217,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018897835979268814,31696.750922016217,8,4,8,8_0,8_2,8_0_0 -5645,1,79.0,130.0,6,111,0.0,,,0,86,0.0,0.0,,410.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,4,100964,2,2,0,0,2,,63.0,400.0,11,0.0,6.0,3.0,1.0,1.0,4,3,120.12774465382644,0.0,8331.158985932203,0,6,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04921284069747273,8331.158985932203,1,1,1_1,1_1_1,1_2_1,1_0_0 -5646,1,41.0,106.0,2,111,300.0,,,85,63,0.0,269.144851253059,,760.0,344.06540083803833,,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,104488,1,3,0,0,2,,300.0,690.0,42,1.0,4.0,5.0,3.0,1.8,3,3,117.83381441728325,300.0,31817.502981299716,6,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.023886223895277992,17676.39054516651,4,2,4_1,4_1_1,4_2_1,4_0_1 -5647,0,73.0,0.0,6,111,500.0,,,77,75,0.0,0.0,,752.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,4,101621,2,1,0,0,2,,300.0,,41,1.0,1.0,5.0,3.0,2.0,1,1,97.2657819764975,500.0,75809.0,5,5,0,1,118.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009919666530359193,37904.5,9,5,9,9_1,9_2,9_0_0 -5648,0,75.0,0.0,5,111,250.0,,,77,78,0.0,0.0,,450.0,344.06540083803833,,43,2,2,2,2,1,2,2,2,0,,1,,3,121134,1,2,0,0,2,,250.0,,41,0.0,10.0,5.0,2.0,1.5,2,2,106.38536212271978,250.0,17840.98543370846,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.025222822005659926,11893.990289138974,2,1,2_0,2_1_0,2_2_0,2_0_0 -5649,1,32.0,400.0,8,111,0.0,,,0,85,0.0,0.0,,661.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,132381,1,1,0,0,1,,190.0,575.0,31,0.0,0.0,4.0,3.0,1.8,3,2,130.85820957706443,0.0,13052.591628448026,0,6,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05064128403123832,7251.439793582236,1,1,1_1,1_1_1,1_2_1,1_0_0 -5650,1,32.0,360.0,8,111,600.0,,,0,67,0.0,0.0,,680.0,137.62616033521533,,43,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,108041,2,1,0,0,1,,350.0,640.0,32,1.0,0.0,3.0,2.0,1.3,2,2,115.2552315404132,600.0,23039.76665086391,0,1,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029514187808603626,17722.897423741466,4,2,4_1,4_1_1,4_2_1,4_0_0 -5651,1,60.0,253.0,7,111,0.0,,,0,52,0.0,0.0,,120.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,5,114528,2,1,0,0,2,,252.0,600.0,12,1.0,3.0,3.0,1.0,1.0,2,2,119.8252514693026,0.0,6332.0,0,4,2,3,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018951358180669616,6332.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -5652,1,18.0,330.0,7,111,0.0,,,84,81,0.0,0.0,,239.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,114826,2,1,0,0,2,,0.0,470.0,42,1.0,0.0,2.0,3.0,1.8,2,2,147.74503982733532,0.0,5214.799999999999,6,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0458310961110685,2897.111111111111,1,1,1_1,1_1_1,1_2_1,1_0_0 -5653,2,37.0,0.0,8,111,250.0,,,85,62,0.0,0.0,,330.0,137.62616033521533,,31,2,2,2,2,1,2,2,1,0,,1,2003.0,6,128576,1,2,0,0,2,,215.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,128.42941868664252,250.0,30752.223952971282,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.010730931216703609,12813.426647071368,2,1,2_0,2_1_0,2_2_0,2_0_0 -5654,2,51.0,0.0,6,111,200.0,,,0,63,0.0,0.0,,320.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,1,,4,118362,1,1,0,0,2,,200.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,110.35085485130972,200.0,6332.0,0,4,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05053695514845231,4221.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_0 -5655,2,64.0,0.0,9,111,480.0,,,0,77,0.0,0.0,,500.0,34.40654008380383,,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,132097,2,1,0,0,2,,300.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,100.59254545713368,480.0,45397.77222193063,0,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011013756304069507,45397.77222193063,10,5,10,10_1,10_2,10_0_0 -5656,2,82.0,0.0,2,111,362.0,,,86,71,0.0,0.0,,482.0,206.439240502823,,44,0,0,0,0,0,0,0,0,0,,1,,2,124045,1,1,0,0,2,,240.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,95.92988415949623,362.0,30285.634966920526,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01591513602163086,15142.817483460263,3,2,3_0,3_1_0,3_2_0,3_0_1 -5657,1,42.0,380.0,9,111,800.0,,,54,63,0.0,0.0,,926.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,123232,2,1,0,0,2,,550.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,167.52047836582793,800.0,20541.703655567413,4,1,1,2,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04507902633231818,8559.043189819757,1,1,1_1,1_1_1,1_2_1,1_0_0 -5658,2,48.0,0.0,6,111,327.0,,,85,63,0.0,0.0,,407.0,137.62616033521533,,30,0,0,0,0,0,0,0,0,0,,1,,4,107383,1,1,0,0,2,,300.0,,42,1.0,3.0,3.0,2.0,1.5,3,2,104.80962791711065,327.0,24416.17086059975,6,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016669280466773514,16277.447240399832,4,2,4_0,4_1_0,4_2_0,4_0_0 -5659,2,48.0,0.0,9,111,0.0,,,0,21,0.0,0.0,,1056.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,103655,2,1,0,0,2,,0.0,450.0,12,1.0,1.0,2.0,1.0,1.0,1,1,134.28787129467594,0.0,8755.248488469739,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12061336710096848,8755.248488469739,1,1,1_0,1_1_0,1_2_0,1_0_0 -5660,2,54.0,0.0,2,111,352.0,,,0,85,0.0,0.0,,478.0,216.76120252796414,,71,2,2,1,2,1,2,2,2,0,,1,,2,107094,1,2,0,0,2,,310.0,,31,0.0,1.0,4.0,2.0,1.5,1,1,108.67677192271537,352.0,4261.75681800695,0,6,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.11216031801259395,2841.1712120046336,1,1,1_0,1_1_0,1_2_0,1_0_1 -5661,2,59.0,0.0,6,111,392.0,,,0,55,0.0,0.0,,434.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,3,45.0,1,,4,125620,2,1,0,0,2,,377.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,105.87506110615159,392.0,26912.028894095176,0,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01612661764402404,26912.028894095176,7,4,7,7_1,7_2,7_0_0 -5662,0,33.0,0.0,9,111,240.0,,,0,85,0.0,0.0,,240.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,118060,1,1,0,0,1,,120.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,114.77741184666526,240.0,10646.378039114934,0,7,5,0,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022542877879992314,10646.378039114934,2,1,2_0,2_1_0,2_2_0,2_0_0 -5663,2,51.0,0.0,2,111,500.0,,,68,52,0.0,0.0,,584.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,106737,2,2,0,0,2,,330.0,,43,3.0,2.0,7.0,5.0,2.5999999999999996,2,2,113.36184180183287,500.0,57758.93892535887,1,1,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010110989067072296,22214.976509753415,6,3,6,6_1,6_2,6_0_1 -5664,2,62.0,0.0,9,111,0.0,,,77,77,0.0,0.0,,1304.0,378.4719409218422,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,126458,2,1,0,0,1,,924.0,,41,1.0,3.0,4.0,3.0,2.0,2,2,100.38423155059834,0.0,202804.2684863211,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006429844942282136,101402.13424316054,10,5,10,10_1,10_2,10_0_0 -5665,1,44.0,120.0,9,111,0.0,,,22,22,0.0,0.0,,551.0,206.439240502823,,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,105169,2,1,0,0,2,,89.0,,43,2.0,1.0,7.0,3.0,2.0,1,1,112.59737906777806,0.0,7925.023386208677,4,4,1,2,210.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06952660871119497,3962.5116931043385,1,1,1_1,1_1_1,1_2_1,1_0_0 -5666,1,81.0,250.0,2,111,0.0,,,0,77,0.0,0.0,,144.0,247.7270886033876,,41,2,2,2,2,2,2,2,1,0,,2,,2,110148,1,3,0,0,2,,0.0,426.0,21,1.0,2.0,3.0,2.0,1.5,2,2,111.89378262375052,0.0,12019.597296829275,0,5,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.011980434655492714,8013.06486455285,1,1,1_1,1_0_1,1_2_1,1_0_1 -5667,2,54.0,0.0,5,111,600.0,,,68,55,0.0,93.1655254337512,,816.0,216.76120252796414,,12,0,0,0,0,0,0,0,0,2,10.0,1,,3,118230,2,1,0,0,2,,520.0,,43,4.0,0.0,4.0,5.0,3.0,1,1,107.86691706654285,600.0,31079.19341067512,1,1,0,1,111.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02625550763874455,10359.731136891707,2,1,2_0,2_1_0,2_2_0,2_0_0 -5668,2,51.0,0.0,6,111,850.0,,,85,52,0.0,0.0,,950.0,172.03270041901916,,31,0,0,0,0,0,0,0,0,0,,1,,4,112504,1,3,0,0,2,,760.0,,42,2.0,3.0,6.0,3.0,2.0,2,2,113.56098343215909,850.0,12400.773006652827,6,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07660812753288358,6200.386503326414,1,1,1_0,1_1_0,1_2_0,1_0_0 -5669,0,42.0,0.0,7,111,1020.0,,,84,63,0.0,0.0,,1272.0,433.5224050559283,,31,2,2,2,2,1,2,2,2,0,,1,,5,102398,1,1,0,0,2,,810.0,,42,1.0,0.0,4.0,5.0,2.5999999999999996,6,5,123.60483941794953,1020.0,28751.391029083068,3,1,5,0,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04424133770478535,11058.227318878106,2,1,2_0,2_1_0,2_2_0,2_0_0 -5670,2,46.0,0.0,7,111,820.0,,,34,34,0.0,0.0,,820.0,0.0,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,133470,2,1,0,0,1,,180.0,1100.0,43,2.0,0.0,6.0,5.0,2.8,2,2,147.00064723088823,820.0,142205.4928974736,1,1,2,3,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0057663032790948405,50787.676034812,10,5,10,10_1,10_2,10_0_0 -5672,1,25.0,467.0,6,111,230.0,,,0,81,0.0,0.0,,293.0,108.38060126398207,,33,0,0,0,0,0,0,0,0,0,,2,,4,121756,2,1,0,0,2,,116.0,610.0,32,1.0,0.0,3.0,4.0,1.9,3,2,117.7697712971821,230.0,14883.81599537001,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019685811763001174,7833.587365984216,1,1,1_1,1_0_1,1_2_1,1_0_0 -5673,1,41.0,235.0,5,111,0.0,,,0,56,0.0,0.0,,973.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,133360,2,1,0,0,1,,262.0,500.0,32,1.0,0.0,3.0,2.0,1.5,2,2,134.6234279954568,0.0,23189.82470119522,0,4,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04195805757642709,15459.883134130147,3,2,3_1,3_0_1,3_2_1,3_0_0 -5674,2,37.0,0.0,7,111,670.0,,,46,63,0.0,0.0,,770.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,104150,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,110.34692013896344,670.0,97001.46437276606,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007938024492506359,42174.549727289595,9,5,9,9_1,9_2,9_0_0 -5675,2,40.0,0.0,2,111,700.0,,,0,42,0.0,0.0,,788.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,2,106784,2,1,0,0,2,,800.0,700.0,22,2.0,0.0,3.0,2.0,1.5,1,1,133.64654837990304,700.0,10685.507108547426,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0737447452886604,7123.671405698285,1,1,1_0,1_1_0,1_2_0,1_0_1 -5676,2,40.0,0.0,9,111,700.0,,,52,43,0.0,0.0,,700.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,126101,2,1,0,0,1,,248.0,,43,2.0,3.0,5.0,4.0,2.3,2,2,119.30269656091917,700.0,109726.28993449226,1,1,1,2,169.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006379510329000528,47707.08258021403,10,5,10,10_1,10_2,10_0_0 -5677,1,32.0,118.0,7,111,0.0,,,0,46,0.0,0.0,,547.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,125720,2,2,0,0,1,,195.0,600.0,22,2.0,0.0,4.0,2.0,1.5,2,2,145.66183003671972,0.0,14934.171388258237,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03662740876471194,9956.114258838825,2,1,2_1,2_1_1,2_2_1,2_0_0 -5678,2,41.0,0.0,9,111,360.0,,,43,21,0.0,0.0,,382.0,37.84719409218422,,41,2,2,2,2,2,2,2,1,0,,1,2005.0,6,125896,1,1,0,0,2,,320.0,,43,2.0,0.0,3.0,4.0,2.1,3,3,110.34692013896344,360.0,35591.08655115617,1,1,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.01073302438943356,16948.13645293151,4,2,4_0,4_1_0,4_2_0,4_0_0 -5679,2,32.0,0.0,9,111,402.0,,,43,43,0.0,0.0,,402.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,118101,2,3,0,0,2,,365.0,630.0,43,2.0,0.0,3.0,2.0,1.5,4,2,248.81176204572492,402.0,31859.99742892205,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012617703466450067,21239.998285948033,5,3,5,5_0,5_2,5_0_0 -5680,1,64.0,250.0,2,111,200.0,,,0,77,0.0,0.0,,280.0,137.62616033521533,,50,2,2,2,2,1,2,2,2,0,,1,,2,123818,1,3,0,0,2,,150.0,500.0,11,0.0,3.0,3.0,1.0,1.0,3,3,136.02122554386568,200.0,11133.729468870384,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.02514880577823205,11133.729468870384,2,1,2_1,2_1_1,2_2_1,2_0_1 -5681,2,33.0,0.0,5,111,0.0,,,0,35,0.0,0.0,,688.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,3,106615,2,1,0,0,2,,279.0,750.0,22,2.0,0.0,5.0,3.0,1.8,2,2,131.30583636489288,0.0,15404.957520461427,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04466094756095064,8558.309733589682,1,1,1_0,1_1_0,1_2_0,1_0_0 -5682,2,58.0,0.0,8,111,300.0,,,77,77,0.0,0.0,,432.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,102875,2,1,0,0,2,,120.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,120.36222283848763,300.0,27530.602462745792,5,5,0,1,135.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01569162900029446,18353.73497516386,4,2,4_0,4_1_0,4_2_0,4_0_0 -5683,2,53.0,0.0,7,111,900.0,,,21,77,0.0,0.0,,1050.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,1,,5,113125,2,3,0,0,2,,500.0,,42,1.0,0.0,3.0,2.0,1.5,3,2,122.59545600953729,900.0,13582.94723495207,4,7,0,1,113.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07730281078454805,9055.298156634713,1,1,1_0,1_1_0,1_2_0,1_0_0 -5684,2,81.0,0.0,2,111,480.0,,,0,77,0.0,0.0,,612.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,2,122915,1,3,0,0,2,,400.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,129.3239714969558,480.0,11283.473504240632,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054238617192657386,11283.473504240632,2,1,2_0,2_1_0,2_2_0,2_0_1 -5685,2,60.0,0.0,9,111,300.0,,,74,34,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,126196,2,1,0,0,1,,350.0,,42,1.0,5.0,6.0,2.0,1.5,2,2,116.64673290975851,300.0,121491.45339313979,5,1,1,2,164.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002469309499732596,80994.30226209319,10,5,10,10_1,10_2,10_0_0 -5686,2,70.0,0.0,8,111,370.0,,,74,74,0.0,0.0,,420.0,86.01635020950958,,43,0,0,0,0,0,0,0,0,0,,1,2003.0,6,122316,2,3,0,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,111.76486981288666,370.0,122319.4909364343,5,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0034336310328356512,81546.32729095621,10,5,10,10_1,10_2,10_0_0 -5687,2,63.0,0.0,7,111,300.0,,,42,75,0.0,0.0,,322.0,37.84719409218422,,70,0,0,0,0,0,0,0,0,0,,1,,5,126305,2,1,0,0,2,,90.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,125.05721953789612,300.0,81518.40538606794,4,5,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003950028198846883,54345.60359071196,10,5,10,10_1,10_2,10_0_0 -5688,2,47.0,0.0,8,111,750.0,,,56,33,0.0,0.0,,900.0,258.04905062852873,,31,2,2,2,2,1,2,2,2,2,10.0,1,2001.0,6,109624,2,1,0,0,2,,600.0,1160.0,43,2.0,0.0,4.0,4.0,2.1,2,2,121.87956886224893,750.0,109398.86050088114,4,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.008226776731305634,52094.69547661007,10,5,10,10_1,10_2,10_0_0 -5689,2,62.0,0.0,2,111,1200.0,,,0,86,0.0,0.0,,1332.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,2,118069,1,3,0,0,1,,500.0,,21,1.0,7.0,6.0,2.0,1.5,1,1,129.67012120788908,1200.0,21219.44246404008,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06277262007507023,14146.29497602672,3,2,3_0,3_1_0,3_2_0,3_0_1 -5690,2,30.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,150.0,258.04905062852873,,50,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,121454,2,1,0,0,1,,0.0,1320.0,22,3.0,0.0,6.0,4.0,2.5,1,1,141.11142241975924,0.0,63288.09383010406,0,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00237011404392543,25315.237532041625,7,4,7,7_0,7_2,7_0_0 -5691,2,49.0,0.0,7,111,400.0,,,52,45,0.0,0.0,,444.0,75.69438818436844,,31,0,0,0,0,0,0,0,0,2,7.0,1,,5,101272,2,1,0,0,2,,180.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,106.38232912705764,400.0,70398.4125490855,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006306960397585951,35199.20627454275,9,5,9,9_1,9_2,9_0_0 -5692,2,56.0,0.0,7,111,250.0,,,68,64,0.0,0.0,,550.0,516.0981012570575,,50,0,0,0,0,0,0,0,0,1,10.0,1,,5,100451,1,1,0,0,2,,200.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,106.11716500284246,250.0,59981.54286437607,1,1,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009169487374534562,29990.771432188034,8,4,8,8_1,8_2,8_0_0 -5693,2,53.0,0.0,7,111,880.0,,,74,42,0.0,0.0,,1012.0,227.0831645531053,,44,0,0,0,0,0,0,0,0,0,,1,,5,108312,1,1,0,0,2,,450.0,,42,2.0,1.0,8.0,3.0,2.0,2,2,148.65125505621324,880.0,121277.0,5,1,1,2,228.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00834453358839681,60638.5,10,5,10,10_1,10_2,10_0_0 -5694,0,65.0,0.0,5,111,200.0,,,77,11,0.0,0.0,,288.0,151.38877636873687,,12,0,0,0,0,0,0,0,0,0,,1,,3,123324,2,1,0,0,2,,250.0,,42,1.0,1.0,3.0,2.0,1.5,4,4,104.15114332750784,200.0,15861.308300395256,5,4,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018157392476434192,10574.205533596838,2,1,2_0,2_1_0,2_2_0,2_0_0 -5695,2,55.0,0.0,7,111,1200.0,,,56,63,0.0,0.0,,1500.0,516.0981012570575,,70,0,0,0,0,0,0,0,0,0,,1,,5,101676,2,1,0,0,1,,600.0,,43,3.0,1.0,6.0,4.0,2.3,2,1,111.24355185798206,1200.0,16044.638836934522,1,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0934891720059801,6975.929929101967,1,1,1_0,1_1_0,1_2_0,1_0_0 -5696,0,43.0,0.0,2,111,300.0,,,0,69,0.0,0.0,,410.0,189.2359704609211,,20,0,0,0,0,0,0,0,0,0,,1,,2,105844,2,1,0,0,2,,150.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,137.6773116384588,300.0,5225.240174563623,0,4,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07846529275264183,5225.240174563623,1,1,1_0,1_1_0,1_2_0,1_0_1 -5697,1,45.0,253.0,7,111,270.0,,,0,53,0.0,0.0,,406.0,233.96447256986607,,50,2,2,2,2,1,2,2,2,0,,2,,5,111278,1,3,0,0,1,,200.0,258.0,12,1.0,3.0,1.0,1.0,1.0,2,2,132.4409926073468,270.0,5183.360000000001,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07832757130509939,5183.360000000001,1,1,1_1,1_0_1,1_2_1,1_0_0 -5698,0,43.0,0.0,2,111,1080.0,,,42,47,0.0,0.0,,1280.0,344.06540083803833,,50,2,2,2,1,1,2,2,2,2,5.0,1,,2,130984,1,3,0,0,2,,300.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,122.08157361827739,1080.0,41005.1762347764,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.031215571240843364,20502.5881173882,5,3,5,5_1,5_2,5_0_1 -5699,2,71.0,0.0,2,111,600.0,,,77,74,0.0,0.0,,934.0,574.589219399524,,71,0,0,0,0,0,0,0,0,0,,1,,2,117884,2,1,0,0,2,,612.0,,41,0.0,0.0,7.0,4.0,2.5,2,2,114.01774462081133,600.0,63939.14034535775,6,5,0,1,124.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014607640874668286,25575.656138143102,7,4,7,7_1,7_2,7_0_1 -5700,2,66.0,0.0,9,111,370.0,,,0,77,0.0,0.0,,440.0,120.42289029331342,,60,0,0,0,0,0,0,0,0,0,,2,2006.0,6,120345,2,2,0,0,1,,200.0,500.0,11,0.0,3.0,2.0,1.0,1.0,3,2,152.55220713143925,370.0,50626.43619606098,0,5,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008691111463900246,50626.43619606098,10,5,10,10_0,10_2,10_0_0 -5701,1,41.0,270.0,7,111,560.0,,,81,62,0.0,0.0,,824.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,2,,5,129791,2,1,0,0,2,,360.0,550.0,43,2.0,0.0,4.0,3.0,1.8,2,2,124.3101522118026,560.0,10117.476380535823,4,4,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08144323436081605,5620.820211408791,1,1,1_1,1_0_1,1_2_1,1_0_0 -5702,1,30.0,413.0,7,111,0.0,,,0,52,0.0,0.0,,540.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,5,106694,1,3,0,0,1,,256.0,415.0,32,1.0,0.0,3.0,3.0,1.6,2,2,118.01460776393338,0.0,14696.458166891112,0,4,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03674354690550802,9185.286354306945,1,1,1_1,1_0_1,1_2_1,1_0_0 -5703,1,50.0,247.0,7,111,450.0,,,0,42,0.0,0.0,,585.0,232.24414556567586,,43,2,2,1,2,2,2,2,1,0,,2,,5,130186,2,2,0,0,1,,200.0,261.0,12,1.0,2.0,1.0,1.0,1.0,1,1,113.58648962442047,450.0,5214.799999999999,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.11218071642248985,5214.799999999999,1,1,1_1,1_0_1,1_2_1,1_0_0 -5704,1,47.0,253.0,8,111,480.0,,,0,85,0.0,0.0,,480.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,1999.0,6,104347,2,1,0,0,2,,200.0,302.0,11,0.0,2.0,1.0,1.0,1.0,6,5,128.56312487605393,480.0,5249.141428384951,0,7,3,4,26.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09144352586965557,5249.141428384951,1,1,1_1,1_0_1,1_2_1,1_0_0 -5706,1,30.0,457.0,2,111,0.0,,,67,81,0.0,0.0,,264.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,2,,2,104213,1,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,5.0,2.4,2,2,152.34748316911714,0.0,15636.130434782608,4,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01688397273872386,6515.054347826087,1,1,1_1,1_0_1,1_2_1,1_0_1 -5707,0,66.0,0.0,9,111,160.0,,,0,78,0.0,0.0,,229.0,118.70256328912323,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,104224,2,1,0,0,1,,234.0,,11,0.0,1.0,4.0,1.0,1.0,4,4,119.50547837472041,160.0,40820.03544447442,0,5,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005609990229222068,40820.03544447442,9,5,9,9_1,9_2,9_0_0 -5708,1,30.0,253.0,2,111,0.0,,,0,68,0.0,0.0,,44.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,2,,2,123591,2,2,0,0,2,,0.0,414.0,12,1.0,0.0,2.0,1.0,1.0,2,2,170.70205804269568,0.0,11748.0,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.003745318352059925,11748.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -5709,1,31.0,357.0,5,111,0.0,,,0,54,0.0,0.0,,22.0,37.84719409218422,,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,131907,2,2,0,0,1,,0.0,550.0,32,1.0,0.0,3.0,2.0,1.3,2,2,152.3802254355868,0.0,11594.857696767293,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0018973928421850072,8919.12130520561,1,1,1_1,1_0_1,1_2_1,1_0_0 -5710,1,30.0,350.0,5,111,800.0,,,85,53,0.0,0.0,,920.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,2,,3,124819,1,1,0,0,2,,200.0,590.0,42,1.0,0.0,4.0,3.0,1.8,2,2,128.74995298414746,800.0,19671.92729183664,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04676715129898722,10928.8484954648,2,1,2_1,2_0_1,2_2_1,2_0_0 -5711,1,21.0,288.0,5,111,0.0,,,0,85,0.0,0.0,,70.0,120.42289029331342,,60,0,0,0,0,0,0,0,0,0,,2,,3,118764,1,1,0,0,2,,0.0,275.0,31,0.0,0.0,1.0,2.0,1.3,2,2,147.02819863799058,0.0,3370.6683421306425,0,6,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02076739474040098,2592.8218016389555,1,1,1_1,1_0_1,1_2_1,1_0_0 -5712,2,61.0,0.0,2,111,500.0,,,0,63,0.0,0.0,,580.0,137.62616033521533,,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,123814,2,1,0,0,2,,300.0,,12,1.0,4.0,4.0,1.0,1.0,2,2,135.94504669963598,500.0,21469.207651257046,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027015435754381013,21469.207651257046,6,3,6,6_1,6_2,6_0_1 -5713,2,70.0,0.0,2,111,545.0,,,75,74,0.0,0.0,,805.0,447.28502108944986,,43,0,0,0,0,0,0,0,0,0,,1,,2,121363,2,1,0,0,1,,480.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,128.64398559584225,545.0,50129.56662655585,5,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0160583873783891,33419.71108437057,8,4,8,8_1,8_2,8_0_1 -5715,1,42.0,394.0,7,111,930.0,,,0,54,0.0,0.0,,974.0,75.69438818436844,,20,2,2,2,2,1,2,2,2,0,,2,,5,107340,2,3,0,0,1,,530.0,392.0,32,1.0,0.0,4.0,3.0,1.6,1,1,126.34205554870161,930.0,9438.015412786852,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.10319966194168334,5898.759632991782,1,1,1_1,1_0_1,1_2_1,1_0_0 -5716,2,68.0,0.0,8,111,392.0,,,78,71,0.0,124.22070057833493,,800.0,495.4541772067752,,43,0,0,0,0,0,0,0,0,0,,1,2003.0,6,106675,2,1,0,0,2,,130.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,124.78316944418157,392.0,13495.88787376285,5,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059277315244687816,8997.258582508566,1,1,1_0,1_1_0,1_2_0,1_0_0 -5717,1,45.0,357.0,7,111,390.0,,,0,68,0.0,0.0,,516.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,3,30.0,1,,5,127409,2,1,0,0,2,,564.0,428.0,32,1.0,1.0,4.0,2.0,1.5,2,2,126.58750255200196,390.0,10070.401461342959,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05123926806500798,6713.60097422864,1,1,1_1,1_1_1,1_2_1,1_0_0 -5718,1,23.0,324.0,7,111,0.0,,,0,52,0.0,0.0,,1037.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,127232,2,1,0,0,1,,409.0,316.0,22,1.0,1.0,3.0,3.0,2.0,2,2,129.30385064095466,0.0,18929.89896540592,0,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05478106364408498,9464.94948270296,1,1,1_1,1_0_1,1_2_1,1_0_0 -5721,2,59.0,0.0,9,111,150.0,,,0,34,0.0,0.0,,200.0,86.01635020950958,,71,0,0,0,0,0,0,0,0,2,8.0,1,2010.0,6,122500,2,1,0,0,2,,270.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,189.24737593784081,150.0,57565.00728534768,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003474332922579288,57565.00728534768,10,5,10,10_1,10_2,10_0_0 -5722,1,83.0,242.0,2,111,350.0,,,0,86,0.0,0.0,,494.0,247.7270886033876,,60,2,2,2,2,1,2,2,2,0,,1,,2,116488,2,1,0,0,2,,270.0,380.0,11,0.0,0.0,3.0,1.0,1.0,2,2,121.03435440484127,350.0,11980.691891312435,0,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.04123301095475249,11980.691891312435,2,1,2_1,2_1_1,2_2_1,2_0_1 -5723,2,55.0,0.0,6,111,600.0,,,77,21,0.0,0.0,,900.0,516.0981012570575,,70,0,0,0,0,0,0,0,0,0,,1,,4,106168,2,3,0,0,2,,270.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,132.27190115655605,600.0,34359.66782784185,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026193501186024985,22906.44521856123,6,3,6,6_1,6_2,6_0_0 -5724,2,40.0,0.0,2,111,450.0,,,0,81,0.0,0.0,,700.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,1,,2,130644,1,2,0,0,2,,300.0,,22,1.0,5.0,4.0,2.0,1.5,3,2,126.70440194030449,450.0,14164.335260115608,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04941989773223475,9442.890173410406,1,1,1_0,1_1_0,1_2_0,1_0_1 -5725,2,42.0,0.0,8,111,450.0,,,0,38,0.0,0.0,,450.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,106221,2,1,0,0,2,,80.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,144.72579257080466,450.0,74434.53554218127,0,1,1,2,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0060455808143652584,74434.53554218127,10,5,10,10_0,10_2,10_0_0 -5726,2,45.0,0.0,9,111,1000.0,,,0,54,0.0,0.0,,1120.0,206.439240502823,,20,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,116864,2,2,0,0,1,,300.0,,32,1.0,1.0,5.0,3.0,1.6,2,2,114.70066234899492,1000.0,26423.85017436649,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042385950291471935,16514.906358979053,4,2,4_0,4_1_0,4_2_0,4_0_0 -5727,2,43.0,0.0,8,111,350.0,,,42,42,0.0,0.0,,470.0,206.439240502823,,50,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,131640,2,2,0,0,1,,385.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,117.4681067557828,350.0,101389.46783150281,1,1,1,2,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004635589968586124,44082.3773180447,10,5,10,10_1,10_2,10_0_0 -5728,2,57.0,0.0,9,111,600.0,,,77,38,0.0,0.0,,700.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,0,,1,2008.0,6,109957,2,1,0,0,2,,400.0,950.0,42,1.0,2.0,4.0,2.0,1.5,1,1,132.06061494768113,600.0,103579.825063759,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00675807281552283,69053.21670917266,10,5,10,10_1,10_2,10_0_0 -5729,2,26.0,0.0,9,111,392.0,,,0,52,0.0,0.0,,436.0,75.69438818436844,,71,2,2,1,1,1,2,2,2,2,10.0,2,2011.0,6,133277,1,2,0,0,1,,200.0,395.0,12,1.0,0.0,2.0,1.0,1.0,1,1,194.64962587802543,392.0,18603.50588235294,0,1,2,3,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02343644271984155,18603.50588235294,4,2,4_0,4_0_0,4_2_0,4_0_0 -5730,2,87.0,0.0,7,111,260.0,,,72,77,0.0,0.0,,330.0,120.42289029331342,,42,0,0,0,0,0,0,0,0,0,,1,,5,115206,1,1,0,0,1,,150.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,112.31948423948131,260.0,48804.667733339986,5,5,0,1,135.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0067616483284562295,32536.44515555999,8,4,8,8_1,8_2,8_0_0 -5731,0,55.0,0.0,6,111,360.0,,,63,56,0.0,0.0,,530.0,292.4555907123326,,50,0,0,0,0,0,0,0,0,0,,1,,4,123376,2,3,0,0,2,,300.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,134.23385193165586,360.0,29236.958180408852,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018127740811119786,19491.305453605903,5,3,5,5_1,5_2,5_0_0 -5732,2,33.0,0.0,7,111,315.0,,,34,31,0.0,0.0,,315.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,129086,2,1,0,0,2,,80.0,,43,2.0,0.0,4.0,3.0,1.8,5,5,117.45591907362167,315.0,74118.74124079198,1,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004249937259142721,41177.07846710665,9,5,9,9_1,9_2,9_0_0 -5733,2,27.0,0.0,9,111,360.0,,,31,34,0.0,0.0,,360.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,118852,2,1,0,0,1,,120.0,790.0,43,2.0,0.0,3.0,2.0,1.5,2,2,190.17025320589948,360.0,70678.22694659914,1,1,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005093506381703627,47118.81796439943,10,5,10,10_0,10_2,10_0_0 -5734,2,24.0,0.0,9,111,0.0,,,46,46,0.0,0.0,,661.0,0.0,,31,0,0,0,0,0,0,0,0,2,25.0,2,2009.0,6,100632,2,1,0,0,2,,127.0,830.0,43,2.0,0.0,3.0,2.0,1.5,2,2,189.6987656487426,0.0,17088.863841683935,1,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03868016072476736,11392.575894455957,2,1,2_0,2_0_0,2_2_0,2_0_0 -5735,2,46.0,0.0,9,111,720.0,,,55,52,0.0,0.0,,858.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,114214,2,1,0,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,179.65918585201675,720.0,54030.958759551904,1,1,1,2,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01587978484369052,23491.72119980518,6,3,6,6_1,6_2,6_0_0 -5736,2,75.0,0.0,7,111,420.0,,,86,71,0.0,0.0,,720.0,516.0981012570575,,41,0,0,0,0,0,0,0,0,0,,1,,5,112101,2,3,0,0,2,,360.0,,41,0.0,3.0,2.0,2.0,1.5,1,1,109.14377542562988,420.0,13069.375293585948,6,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05509062092304856,8712.916862390632,1,1,1_0,1_1_0,1_2_0,1_0_0 -5737,2,75.0,0.0,2,111,360.0,,,0,86,0.0,0.0,,450.0,154.82943037711726,,43,0,0,0,0,0,0,0,0,0,,1,,2,103932,2,3,0,0,2,,120.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,104.60206043996341,360.0,5093.311823520789,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08835115845880691,5093.311823520789,1,1,1_0,1_1_0,1_2_0,1_0_1 -5738,2,48.0,0.0,7,111,600.0,,,0,56,0.0,0.0,,738.0,237.40512657824647,,50,0,0,0,0,0,0,0,0,0,,1,,5,113182,2,3,0,0,2,,200.0,,32,1.0,1.0,3.0,2.0,1.3,2,2,107.37008457244231,600.0,5831.541706731292,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12655315474261872,4485.801312870224,1,1,1_0,1_1_0,1_2_0,1_0_0 -5739,1,22.0,398.0,5,111,420.0,,,81,85,0.0,0.0,,696.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,0,,2,,3,127788,1,3,0,0,2,,500.0,392.0,42,1.0,0.0,3.0,4.0,2.1,2,2,116.66484125440479,420.0,15216.893060291199,4,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0457386404203777,7246.1395525196185,1,1,1_1,1_0_1,1_2_1,1_0_0 -5740,2,52.0,0.0,7,111,300.0,,,0,56,0.0,0.0,,450.0,258.04905062852873,,60,2,2,2,2,1,2,2,2,0,,1,,5,122102,1,3,0,0,1,,540.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,114.74932596945972,300.0,5309.734491315136,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08475000035049628,5309.734491315136,1,1,1_0,1_1_0,1_2_0,1_0_0 -5741,1,40.0,340.0,7,111,516.0,,,43,64,0.0,0.0,,696.0,309.6588607542345,,12,0,0,0,0,0,0,0,0,0,,2,,5,122731,2,2,0,0,1,,600.0,455.0,43,2.0,0.0,3.0,3.0,2.0,2,2,134.8511275064913,516.0,31709.836120244716,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021949025449414045,15854.918060122358,3,2,3_1,3_0_1,3_2_1,3_0_0 -5742,2,59.0,0.0,9,111,1027.0,,,42,42,0.0,0.0,,1027.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,124879,2,2,0,0,2,,438.0,,43,2.0,5.0,4.0,2.0,1.5,1,1,127.91235286980435,1027.0,109212.60281764319,1,1,1,2,143.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009403676622512371,72808.40187842879,10,5,10,10_1,10_2,10_0_0 -5743,2,76.0,0.0,2,111,400.0,,,0,71,0.0,0.0,,900.0,860.1635020950959,,71,0,0,0,0,0,0,0,0,0,,1,,2,122609,1,1,0,0,2,,150.0,,11,0.0,1.0,3.0,1.0,1.0,3,2,104.60206043996341,400.0,38729.74184711904,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023237955046347607,38729.74184711904,9,5,9,9_1,9_2,9_0_1 -5745,2,33.0,0.0,8,111,990.0,,,85,22,0.0,0.0,,1122.0,227.0831645531053,,42,2,2,2,2,2,2,2,1,0,,1,2003.0,6,129352,2,3,0,0,1,,1200.0,1150.0,42,1.0,0.0,5.0,4.0,2.3,2,2,142.3061652087307,990.0,30907.435026196665,6,1,2,3,184.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03630194479253973,13438.01522878116,3,2,3_0,3_1_0,3_2_0,3_0_0 -5746,2,51.0,0.0,7,111,600.0,,,68,85,0.0,0.0,,945.0,593.5128164456162,,43,0,0,0,0,0,0,0,0,0,,1,,5,104084,1,2,0,0,2,,500.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,114.45607852240879,600.0,8324.523819609009,4,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1135200067268695,5549.682546406006,1,1,1_0,1_1_0,1_2_0,1_0_0 -5748,2,29.0,0.0,7,111,300.0,,,35,35,0.0,0.0,,370.0,120.42289029331342,,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,110069,2,1,0,0,2,,270.0,500.0,43,2.0,0.0,4.0,3.0,1.8,1,1,133.31149198548692,300.0,50203.52378936927,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007370000591041151,27890.846549649592,7,4,7,7_1,7_2,7_0_0 -5749,2,51.0,0.0,7,111,672.0,,,63,55,0.0,0.0,,948.0,474.81025315649293,,31,0,0,0,0,0,0,0,0,0,,1,,5,119642,2,1,0,0,1,,480.0,,43,4.0,1.0,7.0,4.0,2.5,2,2,113.73354878071783,672.0,13130.75415292055,4,4,0,1,114.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0721969194579083,5252.30166116822,1,1,1_0,1_1_0,1_2_0,1_0_0 -5750,0,87.0,0.0,9,111,510.0,,,0,72,0.0,0.0,,573.0,108.38060126398207,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,123990,2,1,0,0,1,,255.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,118.42195263296934,510.0,11391.529346817199,0,5,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0503005331904883,11391.529346817199,2,1,2_0,2_1_0,2_2_0,2_0_0 -5751,2,54.0,0.0,6,111,300.0,,,0,48,0.0,0.0,,552.0,433.5224050559283,,71,2,2,2,2,1,2,2,2,2,12.0,1,,4,119048,2,1,0,0,1,,300.0,,22,2.0,1.0,3.0,2.0,1.5,2,2,145.85954785661372,300.0,25870.707595893746,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.021336872907473728,17247.138397262497,4,2,4_0,4_1_0,4_2_0,4_0_0 -5752,0,83.0,0.0,2,111,250.0,,,0,77,0.0,0.0,,450.0,344.06540083803833,,50,2,2,2,2,1,2,2,2,0,,1,,2,123698,1,3,0,0,2,,330.0,,11,0.0,6.0,1.0,1.0,1.0,1,1,129.91579109033142,250.0,7490.032702237521,0,5,5,0,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.06007984449327839,7490.032702237521,1,1,1_0,1_1_0,1_2_0,1_0_1 -5753,0,66.0,0.0,2,111,360.0,,,0,86,0.0,0.0,,636.0,474.81025315649293,,43,0,0,0,0,0,0,0,0,0,,1,,2,118529,2,3,0,0,2,,360.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,107.40403528577478,360.0,27134.163359576705,0,7,5,0,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023439086422966153,18089.442239717802,4,2,4_0,4_1_0,4_2_0,4_0_1 -5754,2,55.0,0.0,2,111,1200.0,,,85,42,0.0,0.0,,1320.0,206.439240502823,,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,124341,2,3,0,0,2,,280.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,128.3498418276666,1200.0,52209.22345125054,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02528288897521196,34806.14896750036,9,5,9,9_1,9_2,9_0_1 -5755,0,57.0,0.0,7,111,240.0,,,85,55,0.0,0.0,,366.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,0,,1,,5,128400,2,1,0,0,1,,318.0,,42,1.0,2.0,5.0,2.0,1.5,3,3,117.78664900813699,240.0,20343.947242206235,6,1,0,1,111.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017990608982738812,13562.631494804156,3,2,3_0,3_1_0,3_2_0,3_0_0 -5756,2,31.0,0.0,7,111,253.0,,,85,43,0.0,0.0,,253.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,124467,2,1,0,0,1,,220.0,878.0,42,1.0,0.0,4.0,4.0,2.1,3,3,125.28135512815366,253.0,137118.05412208528,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018451253674788687,65294.31148670727,10,5,10,10_1,10_2,10_0_0 -5757,0,63.0,0.0,2,111,200.0,,,0,77,0.0,0.0,,310.0,189.2359704609211,,41,2,2,1,2,1,2,2,2,0,,1,,2,115423,1,3,0,0,2,,480.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,112.12768674761179,200.0,14621.916492693112,0,7,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0212010511860681,14621.916492693112,3,2,3_0,3_1_0,3_2_0,3_0_1 -5758,2,44.0,0.0,7,111,504.0,,,0,42,0.0,0.0,,548.0,75.69438818436844,,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,111464,2,2,0,0,1,,192.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,115.31479906339841,504.0,48796.88471552337,0,1,1,2,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011230225109548214,37536.06516578721,9,5,9,9_1,9_2,9_0_0 -5759,0,71.0,0.0,5,111,600.0,,,78,77,0.0,0.0,,852.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,,3,120533,2,2,0,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,117.70367729144986,600.0,14998.92607170307,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05680406689965495,9999.284047802046,2,1,2_0,2_1_0,2_2_0,2_0_0 -5761,1,43.0,120.0,8,111,582.0,,,0,54,0.0,0.0,,666.0,144.50746835197612,,41,0,0,0,0,0,0,0,0,0,,1,2002.0,6,111383,2,2,0,0,1,,554.0,,32,1.0,0.0,4.0,3.0,1.8,1,1,110.65289356620644,582.0,16331.318510985988,0,4,1,2,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04078054074764297,9072.954728325549,1,1,1_1,1_1_1,1_2_1,1_0_0 -5762,1,26.0,404.0,7,111,600.0,,,0,63,0.0,0.0,,852.0,433.5224050559283,,60,0,0,0,0,0,0,0,0,0,,2,,5,126285,2,2,0,0,2,,700.0,451.0,22,2.0,2.0,4.0,5.0,2.8,2,2,125.18134164832598,600.0,35975.62358738064,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023682702759288944,12848.436995493088,2,1,2_1,2_0_1,2_2_1,2_0_0 -5763,1,23.0,357.0,6,111,0.0,,,0,85,0.0,0.0,,257.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,126951,2,1,0,0,2,,257.0,370.0,31,0.0,0.0,2.0,2.0,1.3,2,2,159.6622833255883,0.0,9104.70349752727,0,6,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02822716852556463,7003.618075020978,1,1,1_1,1_0_1,1_2_1,1_0_0 -5764,2,54.0,0.0,6,111,1000.0,,,22,52,0.0,0.0,,1250.0,430.0817510475479,,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,102156,2,2,0,0,2,,800.0,,43,3.0,1.0,4.0,5.0,2.8,2,1,115.55214021818195,1000.0,39785.41850214195,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031418545966349534,14209.078036479268,3,2,3_0,3_1_0,3_2_0,3_0_0 -5765,2,55.0,0.0,6,111,300.0,,,85,63,0.0,0.0,,550.0,430.0817510475479,,20,0,0,0,0,0,0,0,0,0,,1,,4,109207,1,2,0,0,2,,800.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,104.50132958514533,300.0,24406.209260544583,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022535248883944366,13559.00514474699,3,2,3_0,3_1_0,3_2_0,3_0_0 -5766,2,70.0,0.0,2,111,1000.0,,,77,78,0.0,0.0,,1126.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,2,108460,2,1,0,0,2,,400.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,112.63256558137451,1000.0,28918.3282607362,5,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0389372438768815,19278.88550715747,5,3,5,5_1,5_2,5_0_1 -5769,2,71.0,0.0,7,111,300.0,,,0,77,0.0,0.0,,420.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,1,,5,116533,2,1,0,0,2,,170.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,110.21735669635056,300.0,3746.408198509498,0,5,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11210737798595899,3746.408198509498,1,1,1_0,1_1_0,1_2_0,1_0_0 -5770,2,60.0,0.0,5,111,580.0,,,56,68,0.0,0.0,,790.0,361.26867087994026,,71,0,0,0,0,0,0,0,0,0,,2,,3,104940,2,2,0,0,2,,300.0,315.0,43,2.0,3.0,4.0,2.0,1.5,2,2,134.45908938491849,580.0,27692.895350826344,1,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028527172402593386,18461.930233884228,4,2,4_0,4_0_0,4_2_0,4_0_0 -5771,1,37.0,219.0,2,111,120.0,,,0,68,0.0,0.0,,204.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,1,35.0,1,,2,125637,2,2,0,0,2,,160.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,118.51594679427383,120.0,11801.727025934977,0,1,1,2,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01728560570429211,11801.727025934977,2,1,2_1,2_1_1,2_2_1,2_0_1 -5772,1,57.0,201.0,5,111,432.0,,,0,77,0.0,0.0,,726.0,505.7761392319164,,70,0,0,0,0,0,0,0,0,0,,1,,3,100577,2,2,0,0,2,,392.0,228.0,21,1.0,0.0,4.0,2.0,1.5,2,2,123.40755248089914,432.0,5474.697270471464,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13261007214330942,3649.79818031431,1,1,1_1,1_1_1,1_2_1,1_0_0 -5773,1,49.0,398.0,5,111,600.0,,,0,85,0.0,0.0,,852.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,2,,3,105834,1,2,0,0,2,,390.0,392.0,31,0.0,4.0,4.0,3.0,1.6,1,1,130.74521677528497,600.0,9479.0,0,6,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08988289903998312,5924.375,1,1,1_1,1_0_1,1_2_1,1_0_0 -5774,1,22.0,50.0,7,111,450.0,,,0,56,0.0,0.0,,450.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,5,117312,1,1,0,0,2,,120.0,490.0,12,1.0,0.0,1.0,1.0,1.0,2,2,129.49355641140806,450.0,7833.33524452798,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05744679449463752,7833.33524452798,1,1,1_1,1_1_1,1_2_1,1_0_0 -5775,2,40.0,0.0,8,111,0.0,,,0,56,0.0,0.0,,223.0,0.0,,60,0,0,0,0,0,0,0,0,1,5.0,2,2000.0,6,124417,2,1,0,0,1,,276.0,548.0,12,1.0,0.0,2.0,1.0,1.0,5,2,150.77820633363956,0.0,19215.703835653163,0,1,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011605091434966946,19215.703835653163,5,3,5,5_0,5_2,5_0_0 -5776,0,78.0,0.0,2,111,600.0,,,90,71,0.0,103.51725048194578,,1330.0,1083.8060126398207,,70,0,0,0,0,0,0,0,0,0,,1,,2,128979,2,1,0,0,2,,500.0,,41,0.0,5.0,3.0,3.0,2.0,2,2,103.18612007074564,600.0,31699.11764434632,5,5,0,1,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041957003817019854,15849.55882217316,3,2,3_0,3_1_0,3_2_0,3_0_1 -5777,2,66.0,0.0,8,111,360.0,,,0,75,0.0,0.0,,423.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,119663,2,2,0,0,1,,180.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,124.04730896282783,360.0,40654.426561460146,0,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01040477103669194,40654.426561460146,9,5,9,9_0,9_2,9_0_0 -5778,2,63.0,0.0,8,111,400.0,,,0,34,0.0,0.0,,400.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,125485,2,1,0,0,2,,70.0,900.0,12,1.0,2.0,4.0,1.0,1.0,2,2,126.08376933579424,400.0,96197.4769304234,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004158113214230217,96197.4769304234,10,5,10,10_0,10_2,10_0_0 -5779,2,80.0,0.0,2,111,900.0,,,0,75,0.0,0.0,,1100.0,344.06540083803833,,20,0,0,0,0,0,0,0,0,0,,1,,2,117643,2,3,0,0,2,,600.0,,21,0.0,3.0,5.0,3.0,2.0,2,2,109.42352573634496,900.0,101523.43875309105,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010834936380309603,50761.71937654552,10,5,10,10_1,10_2,10_0_1 -5780,2,66.0,0.0,6,111,480.0,,,0,86,0.0,0.0,,480.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,4,112342,2,2,0,0,2,,240.0,489.0,11,0.0,2.0,3.0,1.0,1.0,1,1,130.06911341313727,480.0,38264.641545326216,0,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01254421786315228,38264.641545326216,9,5,9,9_0,9_2,9_0_0 -5781,2,78.0,0.0,7,111,0.0,,,0,86,0.0,0.0,,2060.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,133612,2,2,0,0,2,,352.0,461.0,21,0.0,0.0,3.0,2.0,1.5,3,3,123.57403080351303,0.0,9424.258348547475,0,6,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2185848396566399,6282.83889903165,1,1,1_0,1_0_0,1_2_0,1_0_0 -5782,2,64.0,0.0,7,111,570.0,,,0,52,0.0,0.0,,680.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,108964,2,2,0,0,2,,540.0,542.0,22,1.0,0.0,4.0,2.0,1.5,2,2,153.02197407394368,570.0,38841.880054809706,0,1,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017506876573442205,25894.58670320647,7,4,7,7_0,7_2,7_0_0 -5783,1,47.0,321.0,6,111,670.0,,,0,52,0.0,0.0,,796.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,2,10.0,2,,4,110367,1,3,0,0,2,,200.0,431.0,32,2.0,2.0,4.0,3.0,1.8,1,1,120.98771036643832,670.0,15220.038577753425,0,1,2,3,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05229947321969894,8455.576987640792,1,1,1_1,1_0_1,1_2_1,1_0_0 -5784,1,24.0,231.0,7,111,0.0,,,0,54,0.0,0.0,,2013.0,0.0,,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,117874,2,2,0,0,2,,223.0,595.0,12,1.0,0.0,2.0,1.0,1.0,5,3,155.97766425114298,0.0,15911.837122600562,0,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1265095905953444,15911.837122600562,3,2,3_1,3_1_1,3_2_1,3_0_0 -5785,2,38.0,0.0,5,111,500.0,,,42,34,0.0,0.0,,560.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,2,40.0,1,,3,114568,2,1,0,0,2,,350.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,114.87613206506452,500.0,83776.48573936979,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006684453221661391,39893.564637795134,9,5,9,9_1,9_2,9_0_0 -5786,0,35.0,0.0,5,111,500.0,,,52,53,0.0,0.0,,580.0,137.62616033521533,,70,2,2,2,1,1,2,2,2,2,35.0,1,,3,130772,2,3,0,0,2,,300.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,119.9822397559128,500.0,52702.23021399973,1,1,5,0,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.011005226868860851,29279.016785555403,8,4,8,8_1,8_2,8_0_0 -5787,2,52.0,0.0,8,111,480.0,,,46,56,0.0,0.0,,522.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,0,,1,1999.0,6,100046,2,1,0,0,1,,56.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,138.64201627108153,480.0,44048.451019638596,4,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011850586976764997,29365.634013092396,8,4,8,8_1,8_2,8_0_0 -5788,2,46.0,0.0,7,111,720.0,,,46,68,0.0,0.0,,870.0,258.04905062852873,,10,0,0,0,0,0,0,0,0,0,,1,,5,122853,2,1,0,0,1,,480.0,,43,3.0,1.0,3.0,3.0,2.0,5,5,112.11511373849733,720.0,10244.922220439192,4,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0849201176231774,5122.461110219596,1,1,1_0,1_1_0,1_2_0,1_0_0 -5789,2,56.0,0.0,6,111,200.0,,,78,63,0.0,0.0,,364.0,282.13362868719145,,50,0,0,0,0,0,0,0,0,0,,1,,4,110564,2,2,0,0,2,,350.0,,42,1.0,2.0,3.0,5.0,2.8,1,1,110.04895058869822,200.0,8733.03919791023,6,4,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04168079310660867,3118.942570682225,1,1,1_0,1_1_0,1_2_0,1_0_0 -5790,2,59.0,0.0,6,111,150.0,,,67,75,0.0,0.0,,171.0,36.12686708799403,,71,0,0,0,0,0,0,0,0,0,,1,,4,121839,2,2,0,0,2,,300.0,,42,2.0,1.0,7.0,4.0,2.5,5,3,117.03991322613022,150.0,59913.61758086407,1,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002854109080781262,23965.447032345626,6,3,6,6_1,6_2,6_0_0 -5791,0,78.0,0.0,5,111,400.0,,,0,77,0.0,0.0,,526.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,0,,1,,3,104226,2,2,0,0,2,,360.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,114.70475230557643,400.0,26961.504704822502,0,5,5,0,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019509296894172096,26961.504704822502,7,4,7,7_1,7_2,7_0_0 -5792,1,40.0,45.0,9,111,400.0,,,85,63,0.0,0.0,,526.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,127345,1,2,0,0,2,,900.0,,42,2.0,0.0,6.0,8.0,4.1,3,3,176.59112814511923,400.0,46956.813759551704,6,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011201782188490246,11452.881404768708,2,1,2_1,2_1_1,2_2_1,2_0_0 -5793,2,24.0,0.0,6,111,960.0,,,0,81,0.0,0.0,,1212.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,125433,1,3,0,0,2,,400.0,,32,3.0,1.0,5.0,6.0,2.8999999999999995,2,2,127.78939973844598,960.0,12059.799549196676,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10049918284758999,4158.55156868851,1,1,1_0,1_1_0,1_2_0,1_0_0 -5794,1,48.0,261.0,8,111,485.0,,,0,68,0.0,0.0,,651.0,285.5742826955718,,50,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,106715,2,2,0,0,2,,317.0,,32,2.0,0.0,5.0,4.0,2.3,1,1,127.73698120397688,485.0,20193.977148099722,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032237334687746734,8779.990064391184,1,1,1_1,1_1_1,1_2_1,1_0_0 -5795,2,61.0,0.0,5,111,400.0,,,52,78,0.0,0.0,,650.0,430.0817510475479,,43,0,0,0,0,0,0,0,0,0,,1,,3,132263,2,2,0,0,2,,300.0,,42,2.0,1.0,3.0,3.0,2.0,1,1,106.38232912705764,400.0,20437.47242206235,4,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031804324261659765,10218.736211031175,2,1,2_0,2_1_0,2_2_0,2_0_0 -5796,2,62.0,0.0,6,111,200.0,,,0,78,0.0,0.0,,373.0,297.61657172490317,,10,0,0,0,0,0,0,0,0,0,,1,,4,111009,2,2,0,0,2,,200.0,,11,0.0,3.0,4.0,1.0,1.0,3,1,114.70475230557643,200.0,5241.0,0,7,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07116962411753482,5241.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -5797,1,85.0,253.0,6,111,210.0,,,0,86,0.0,0.0,,420.0,361.26867087994026,,43,0,0,0,0,0,0,0,0,0,,2,,4,120306,2,2,0,0,2,,204.0,282.0,11,0.0,6.0,2.0,1.0,1.0,1,1,129.4911093910001,210.0,8244.472413123041,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05094322340523209,8244.472413123041,1,1,1_1,1_0_1,1_2_1,1_0_0 -5798,1,48.0,253.0,6,111,180.0,,,0,85,0.0,0.0,,264.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,2,,4,110370,2,2,0,0,2,,320.0,319.0,31,1.0,1.0,4.0,2.0,1.5,2,2,136.2912038578226,180.0,8080.420912340447,0,6,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03267156536323724,5386.947274893631,1,1,1_1,1_0_1,1_2_1,1_0_0 -5799,1,33.0,537.0,6,111,254.0,,,85,63,0.0,0.0,,338.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,0,,2,,4,118167,2,1,0,0,2,,348.0,520.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,4,3,127.08018963018334,254.0,34018.09648687638,6,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009935888097983226,10630.655152148871,2,1,2_1,2_0_1,2_2_1,2_0_0 -5800,2,69.0,0.0,6,111,0.0,,,77,78,0.0,0.0,,878.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,105370,2,3,0,0,2,,221.0,650.0,41,0.0,3.0,3.0,2.0,1.5,1,1,136.5340181302932,0.0,23058.957797744624,6,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03807630889917654,15372.638531829749,3,2,3_0,3_1_0,3_2_0,3_0_0 -5801,1,47.0,248.0,5,111,160.0,,,0,81,0.0,0.0,,202.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,0,,1,,3,127568,2,3,0,0,2,,160.0,254.0,12,1.0,0.0,2.0,1.0,1.0,1,1,158.16844046787142,160.0,5241.0,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.038542262926922345,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -5803,1,65.0,228.0,7,111,180.0,,,0,78,0.0,0.0,,201.0,36.12686708799403,,20,0,0,0,0,0,0,0,0,0,,1,,5,123216,2,3,0,0,2,,0.0,334.0,11,0.0,0.0,1.0,1.0,1.0,2,2,146.15766522256433,180.0,4998.745490138595,0,6,2,3,15.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.040210088790583146,4998.745490138595,1,1,1_1,1_1_1,1_2_1,1_0_0 -5804,2,70.0,0.0,6,111,630.0,,,0,74,0.0,0.0,,651.0,36.12686708799403,,20,0,0,0,0,0,0,0,0,0,,2,,4,117595,2,1,0,0,1,,170.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,109.07302216240072,630.0,44561.60993307876,0,5,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01460898744407241,44561.60993307876,10,5,10,10_0,10_2,10_0_0 -5805,1,24.0,253.0,8,111,0.0,,,0,43,0.0,0.0,,449.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,2,1999.0,6,101048,2,1,0,0,1,,205.0,555.0,12,1.0,0.0,2.0,1.0,1.0,1,1,155.74417223054,0.0,37950.241845279255,0,1,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011831281651130043,37950.241845279255,9,5,9,9_0,9_2,9_0_0 -5806,2,25.0,0.0,9,111,0.0,,,38,38,0.0,0.0,,767.0,0.0,,60,0,0,0,0,0,0,0,0,2,5.0,2,2009.0,6,113419,2,1,0,0,1,,107.0,710.0,43,2.0,0.0,3.0,2.0,1.5,2,2,226.86808789498934,0.0,70239.76279407277,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010919740749248712,46826.50852938185,10,5,10,10_0,10_2,10_0_0 -5807,1,30.0,162.0,8,111,174.0,,,0,56,0.0,0.0,,174.0,0.0,,71,0,0,0,0,0,0,0,0,3,25.0,1,2000.0,6,131053,2,2,0,0,2,,100.0,338.0,12,1.0,0.0,1.0,1.0,1.0,1,1,151.1977877185416,174.0,22906.0,0,1,2,3,24.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0075962629878634415,22906.0,6,3,6,6_1,6_2,6_0_0 -5808,1,47.0,189.0,9,111,600.0,,,0,52,0.0,0.0,,876.0,474.81025315649293,,71,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,125698,2,2,0,0,2,,200.0,545.0,32,1.0,2.0,4.0,3.0,1.6,3,2,186.6008243762856,600.0,25811.59262889715,0,1,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033938239015103684,16132.245393060717,4,2,4_1,4_0_1,4_2_1,4_0_0 -5809,1,24.0,444.0,9,111,0.0,,,0,85,0.0,0.0,,840.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,2011.0,6,126910,2,3,0,0,2,,282.0,479.0,31,0.0,0.0,3.0,4.0,1.9,1,1,189.43424737875515,0.0,3536.2121732692094,0,6,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.23754230765611115,1861.1643017206366,1,1,1_1,1_0_1,1_2_1,1_0_0 -5810,1,45.0,261.0,9,111,1232.0,,,0,52,0.0,0.0,,1295.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,120949,2,2,0,0,2,,260.0,545.0,32,1.0,0.0,4.0,3.0,1.6,5,5,190.07517895255006,1232.0,25887.089001120014,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05002493713928095,16179.430625700008,4,2,4_1,4_0_1,4_2_1,4_0_0 -5811,2,31.0,0.0,9,111,0.0,,,85,67,0.0,0.0,,959.0,0.0,,33,0,0,0,0,0,0,0,0,0,,2,2010.0,6,118285,2,2,0,0,2,,520.0,701.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,186.6008243762856,0.0,24025.175910508806,6,4,2,3,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03991646111446475,8008.391970169603,1,1,1_0,1_0_0,1_2_0,1_0_0 -5812,1,49.0,128.0,6,111,504.0,,,0,52,0.0,0.0,,630.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,1,3.0,2,,4,109031,2,1,0,0,1,,336.0,361.0,32,1.0,0.0,4.0,3.0,1.8,4,3,121.23841982817133,504.0,24619.088008994306,0,1,2,3,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025589899990196088,13677.271116107948,3,2,3_1,3_0_1,3_2_1,3_0_0 -5813,2,29.0,0.0,6,111,0.0,,,55,63,0.0,0.0,,343.0,0.0,,50,0,0,0,0,0,0,0,0,1,10.0,2,,4,102762,2,2,0,0,2,,457.0,264.0,43,2.0,0.0,2.0,2.0,1.5,1,1,141.06891006993294,0.0,34298.022489494426,1,1,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010000576566916119,22865.34832632962,6,3,6,6_0,6_2,6_0_0 -5814,0,50.0,0.0,6,111,0.0,,,85,52,0.0,0.0,,42.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,0,,1,,4,130096,1,1,0,0,2,,0.0,,42,1.0,1.0,4.0,3.0,2.0,1,1,128.91502054184224,0.0,27801.08123475251,6,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001510732609474852,13900.540617376255,3,2,3_0,3_1_0,3_2_0,3_0_0 -5815,1,50.0,267.0,9,111,0.0,,,0,56,0.0,0.0,,185.0,0.0,,60,0,0,0,0,0,0,0,0,3,15.0,2,2005.0,6,128037,2,3,0,0,2,,266.0,377.0,32,1.0,4.0,3.0,2.0,1.3,3,2,127.03688008347902,0.0,17336.8623853211,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010670904335990874,13336.047988708537,3,2,3_1,3_0_1,3_2_1,3_0_0 -5816,2,56.0,0.0,2,111,350.0,,,0,85,0.0,0.0,,710.0,619.317721508469,,33,0,0,0,0,0,0,0,0,0,,1,,2,116745,2,1,0,0,2,,600.0,,21,1.0,0.0,5.0,6.0,3.5,2,2,110.21393622809765,350.0,43803.76846758498,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016208651100998395,12515.362419309995,2,1,2_0,2_1_0,2_2_0,2_0_1 -5818,2,69.0,0.0,2,111,800.0,,,77,78,0.0,0.0,,1052.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,2,112493,2,2,0,0,2,,800.0,,41,1.0,6.0,4.0,3.0,2.0,3,3,107.4892842788284,800.0,25488.697162756733,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04127319624390801,12744.348581378366,2,1,2_0,2_1_0,2_2_0,2_0_1 -5820,1,46.0,242.0,6,111,220.0,,,0,67,0.0,0.0,,346.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,2,,4,131091,2,2,0,0,2,,140.0,315.0,12,1.0,2.0,3.0,1.0,1.0,1,1,123.33580513288109,220.0,5241.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06601793550849075,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5821,2,70.0,0.0,5,111,60.0,,,0,77,0.0,0.0,,102.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,0,,1,,3,113290,1,2,0,0,2,,180.0,,11,0.0,6.0,3.0,1.0,1.0,2,2,110.05236593665363,60.0,9372.07008168632,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010883401330866608,9372.07008168632,1,1,1_0,1_1_0,1_2_0,1_0_0 -5822,1,26.0,170.0,5,111,0.0,,,0,43,0.0,0.0,,1170.0,0.0,,31,0,0,0,0,0,0,0,0,3,70.0,2,,3,131225,2,1,0,0,2,,186.0,600.0,22,2.0,0.0,3.0,2.0,1.5,3,2,148.59956712321278,0.0,28515.908141762313,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041029729587552695,19010.605427841543,5,3,5,5_0,5_2,5_0_0 -5823,2,63.0,0.0,7,111,520.0,,,0,75,0.0,0.0,,709.0,325.14180379194624,,50,0,0,0,0,0,0,0,0,0,,1,,5,108549,2,2,0,0,2,,400.0,,21,0.0,1.0,4.0,2.0,1.5,2,2,117.70367729144986,520.0,49479.91205799394,0,5,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014329047294364673,32986.60803866263,8,4,8,8_1,8_2,8_0_0 -5824,0,92.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,684.0,144.50746835197612,,43,0,0,0,0,0,0,0,0,0,,1,,2,108228,2,1,0,0,2,,300.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,143.70551192329438,600.0,23091.57768924303,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029621189561189414,23091.57768924303,6,3,6,6_1,6_2,6_0_1 -5825,2,72.0,0.0,2,111,420.0,,,0,77,0.0,0.0,,508.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,2,105715,2,2,0,0,2,,304.0,1000.0,11,0.0,1.0,4.0,1.0,1.0,2,2,129.03950950963977,420.0,25784.489419936705,0,5,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019701766892743344,25784.489419936705,7,4,7,7_1,7_2,7_0_1 -5826,2,46.0,0.0,7,111,960.0,,,43,43,0.0,0.0,,960.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,131464,2,1,0,0,1,,250.0,845.0,43,2.0,0.0,3.0,4.0,2.1,2,2,148.65457953328786,960.0,68435.65574601071,1,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014027775280811287,32588.40749810034,8,4,8,8_0,8_2,8_0_0 -5827,1,26.0,110.0,7,111,0.0,,,85,22,0.0,0.0,,608.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,5,119066,2,1,0,0,2,,459.0,583.0,42,1.0,0.0,2.0,2.0,1.5,2,2,159.09507710660358,0.0,47468.03673938348,6,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012808619057454129,31645.357826255655,8,4,8,8_0,8_2,8_0_0 -5828,2,77.0,0.0,6,111,90.0,,,78,77,0.0,103.51725048194578,,316.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,,4,118709,2,2,0,0,2,,500.0,,41,0.0,5.0,2.0,2.0,1.5,1,1,120.36222283848763,90.0,16836.526653207515,5,5,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018768716761411064,11224.351102138344,2,1,2_0,2_1_0,2_2_0,2_0_0 -5829,2,41.0,0.0,7,111,456.0,,,52,56,0.0,0.0,,540.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,5,109243,2,2,0,0,2,,600.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,125.52165969531784,456.0,24038.556522428386,4,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02246391123760575,10451.5463140993,2,1,2_0,2_1_0,2_2_0,2_0_0 -5830,1,42.0,275.0,7,111,1854.0,,,85,63,0.0,0.0,,2106.0,433.5224050559283,,30,0,0,0,0,0,0,0,0,0,,2,,5,109104,2,3,0,0,2,,1800.0,370.0,42,1.0,1.0,3.0,6.0,2.8999999999999995,1,1,118.44045779436705,1854.0,45229.21292957441,6,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04656282662444767,15596.280320542903,3,2,3_1,3_0_1,3_2_1,3_0_0 -5831,2,52.0,0.0,7,111,550.0,,,0,54,0.0,0.0,,613.0,108.38060126398207,,33,0,0,0,0,0,0,0,0,0,,1,,5,105539,2,1,0,0,2,,120.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,129.30405233960607,550.0,36272.898195980124,0,1,1,2,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01689966973931889,36272.898195980124,9,5,9,9_1,9_2,9_0_0 -5832,2,49.0,0.0,7,111,500.0,,,56,46,0.0,0.0,,815.0,541.9030063199103,,71,0,0,0,0,0,0,0,0,0,,1,,5,126098,2,1,0,0,1,,350.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,146.58118871240475,500.0,39964.58080464406,4,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02039305764231345,19982.29040232203,5,3,5,5_1,5_2,5_0_0 -5833,2,64.0,0.0,7,111,80.0,,,86,72,0.0,0.0,,206.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,5,117866,2,1,0,0,1,,120.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,114.0138325715255,80.0,9939.35593220339,6,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020725689008938952,6626.237288135594,1,1,1_0,1_1_0,1_2_0,1_0_0 -5834,1,70.0,215.0,9,111,0.0,,,56,72,0.0,0.0,,805.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,2009.0,6,108368,2,3,0,0,2,,0.0,892.0,42,1.0,2.0,4.0,3.0,1.8,2,2,223.95704474837223,0.0,29764.41632943388,4,5,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02704571764788613,16535.78684968549,4,2,4_1,4_1_1,4_2_1,4_0_0 -5835,1,19.0,357.0,7,111,0.0,,,0,85,0.0,0.0,,789.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,5,132131,2,1,0,0,2,,215.0,536.0,31,0.0,0.0,2.0,2.0,1.3,2,2,138.0565185312093,0.0,6057.787234042553,0,6,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13024557804970568,4659.836333878887,1,1,1_1,1_0_1,1_2_1,1_0_0 -5836,2,66.0,0.0,7,111,490.0,,,0,90,0.0,0.0,,570.0,137.62616033521533,,70,2,2,2,2,1,2,2,2,0,,1,,5,117520,2,2,0,0,2,,200.0,,21,1.0,5.0,6.0,2.0,1.5,2,2,125.64838531144218,490.0,13207.011750491081,0,6,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.043158892470797225,8804.674500327388,1,1,1_0,1_1_0,1_2_0,1_0_0 -5837,0,52.0,0.0,7,111,354.0,,,42,63,0.0,0.0,,594.0,412.878481005646,,50,0,0,0,0,0,0,0,0,2,90.0,1,,5,108675,2,1,0,0,2,,240.0,,43,3.0,1.0,4.0,4.0,2.5,3,3,162.25701305247253,354.0,57392.08880799152,1,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010349858531674298,22956.835523196605,6,3,6,6_1,6_2,6_0_0 -5838,2,68.0,0.0,7,111,324.0,,,0,77,0.0,0.0,,364.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,1,,5,104100,2,1,0,0,2,,260.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,105.48661001432112,324.0,16719.0,0,5,0,1,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021771637059632754,16719.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -5839,2,35.0,0.0,9,111,510.0,,,85,52,0.0,0.0,,630.0,206.439240502823,,44,0,0,0,0,0,0,0,0,0,,1,2004.0,6,110391,2,1,0,0,2,,225.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,117.9392775863739,510.0,35105.375685244915,6,1,0,1,77.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01794596946201588,16716.84556440234,4,2,4_0,4_1_0,4_2_0,4_0_0 -5840,2,26.0,0.0,7,111,400.0,,,0,42,0.0,0.0,,600.0,344.06540083803833,,41,0,0,0,0,0,0,0,0,0,,1,,5,110449,1,1,0,0,2,,330.0,,22,3.0,0.0,4.0,4.0,2.5,1,1,111.56480827725406,400.0,52003.0,0,1,0,1,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011537795896390594,20801.2,5,3,5,5_1,5_2,5_0_0 -5842,2,40.0,0.0,7,111,300.0,,,67,52,0.0,0.0,,430.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,1,,5,109844,1,1,0,0,2,,240.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,125.30780435050688,300.0,38415.17649361702,4,1,0,1,49.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011193492761160367,16702.250649398706,4,2,4_0,4_1_0,4_2_0,4_0_0 -5843,2,55.0,0.0,7,111,535.0,,,85,63,0.0,207.03450096389156,,795.0,103.2196202514115,,70,0,0,0,0,0,0,0,0,0,,1,,5,107944,2,1,0,0,2,,500.0,,42,2.0,0.0,5.0,4.0,2.5,3,3,124.74751195859986,535.0,17025.45974567045,6,4,0,1,62.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04669477428955581,6810.18389826818,1,1,1_0,1_1_0,1_2_0,1_0_0 -5844,2,36.0,0.0,8,111,420.0,,,11,11,0.0,0.0,,500.0,137.62616033521533,,70,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,118727,2,1,0,0,2,,190.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,138.06627229793233,420.0,19018.29370723597,1,1,0,1,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026290476301234263,7314.728348936913,1,1,1_0,1_1_0,1_2_0,1_0_0 -5845,2,61.0,0.0,9,111,240.0,,,85,78,0.0,0.0,,460.0,378.4719409218422,,20,2,2,1,2,2,2,2,1,0,,1,2004.0,6,114288,1,1,0,0,2,,190.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,112.20749131961445,240.0,8327.993579620676,7,7,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05523539320751399,5551.995719747117,1,1,1_0,1_1_0,1_2_0,1_0_0 -5846,2,76.0,0.0,5,111,558.0,,,0,72,0.0,0.0,,678.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,3,132242,2,2,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,116.28187363970636,558.0,23835.420492847043,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028445061424591453,23835.420492847043,6,3,6,6_1,6_2,6_0_0 -5847,2,47.0,0.0,6,111,700.0,,,0,56,0.0,0.0,,840.0,240.84578058662683,,50,0,0,0,0,0,0,0,0,0,,1,,4,126999,2,2,0,0,2,,350.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,115.29699735769546,700.0,5450.987024009696,0,4,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15410053194037943,5450.987024009696,1,1,1_0,1_1_0,1_2_0,1_0_0 -5848,2,34.0,0.0,6,111,0.0,,,0,46,0.0,0.0,,310.0,0.0,,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,115992,1,1,0,0,2,,425.0,670.0,31,0.0,0.0,4.0,3.0,1.6,1,1,183.3846664198044,0.0,6069.212765957447,0,7,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051077464566542684,3793.2579787234044,1,1,1_0,1_1_0,1_2_0,1_0_0 -5849,2,60.0,0.0,7,111,350.0,,,63,77,0.0,0.0,,460.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,,5,104303,2,1,0,0,2,,270.0,,42,1.0,5.0,4.0,2.0,1.5,1,1,124.47608244723021,350.0,15447.413400164794,4,6,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029778448215485233,10298.275600109862,2,1,2_0,2_1_0,2_2_0,2_0_0 -5850,1,45.0,175.0,6,111,580.0,,,63,55,0.0,0.0,,756.0,302.77755273747374,,60,0,0,0,0,0,0,0,0,0,,1,,4,121786,2,2,0,0,2,,250.0,330.0,43,2.0,2.0,4.0,3.0,2.0,3,3,141.1918312717781,580.0,36826.14880967628,4,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020528891139476327,18413.07440483814,4,2,4_1,4_1_1,4_2_1,4_0_0 -5851,1,29.0,350.0,5,111,600.0,,,46,55,0.0,0.0,,754.0,264.9303586452895,,60,0,0,0,0,0,0,0,0,0,,1,,3,113342,2,1,0,0,1,,295.0,650.0,43,2.0,0.0,4.0,5.0,2.4000000000000004,1,1,144.41785388417256,600.0,9369.0,4,4,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08047817269719287,3903.7499999999995,1,1,1_1,1_1_1,1_2_1,1_0_0 -5852,2,48.0,0.0,7,111,475.0,,,0,52,0.0,0.0,,607.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,116735,2,1,0,0,1,,300.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,127.56558934948058,475.0,31553.663464015168,0,1,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0192370689600668,31553.663464015168,8,4,8,8_1,8_2,8_0_0 -5853,2,52.0,0.0,5,111,360.0,,,0,55,0.0,0.0,,470.0,189.2359704609211,,20,0,0,0,0,0,0,0,0,2,10.0,1,,3,105846,1,2,0,0,2,,300.0,,32,1.0,3.0,4.0,2.0,1.5,1,1,114.87262184534592,360.0,19623.322398793127,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023951091993927896,13082.214932528752,2,1,2_0,2_1_0,2_2_0,2_0_0 -5854,1,54.0,300.0,9,111,150.0,,,69,52,0.0,0.0,,400.0,430.0817510475479,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,120553,2,1,0,0,1,,378.0,,43,4.0,0.0,4.0,4.0,2.5,2,2,189.30373347848936,150.0,17269.825125801977,4,4,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023161786357777308,6907.9300503207905,1,1,1_1,1_1_1,1_2_1,1_0_0 -5855,2,48.0,0.0,8,111,400.0,,,52,47,0.0,0.0,,550.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,111336,2,1,0,0,2,,360.0,,43,2.0,0.0,4.0,5.0,2.8,3,2,125.7098420557359,400.0,59436.52139406359,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009253569810277171,21227.329069308427,5,3,5,5_1,5_2,5_0_0 -5856,1,25.0,333.0,7,111,400.0,,,0,55,0.0,0.0,,492.0,158.27008438549763,,50,2,2,2,2,1,2,2,2,0,,2,,5,132829,2,2,0,0,1,,240.0,331.0,32,1.0,0.0,3.0,2.0,1.3,2,2,127.54524799245809,400.0,15867.131955687826,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03100749406849388,12205.486119759866,2,1,2_1,2_0_1,2_2_1,2_0_0 -5857,2,52.0,0.0,6,111,400.0,,,0,68,0.0,0.0,,745.0,593.5128164456162,,70,0,0,0,0,0,0,0,0,2,20.0,1,,4,130648,2,1,0,0,1,,230.0,,32,3.0,1.0,6.0,5.0,2.8,1,1,109.59491007098632,400.0,28902.46489869528,0,1,0,1,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025776348232279346,10322.308892391173,2,1,2_0,2_1_0,2_2_0,2_0_0 -5858,1,60.0,49.0,6,111,780.0,,,0,62,0.0,31.055175144583732,,890.0,137.62616033521533,,43,0,0,0,0,0,0,0,0,0,,1,,4,115726,1,2,0,0,1,,350.0,,12,1.0,1.0,3.0,1.0,1.0,2,1,110.62058972764653,780.0,6352.512675303165,0,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14010204237137172,6352.512675303165,1,1,1_1,1_1_1,1_2_1,1_0_0 -5859,1,44.0,145.0,5,111,220.0,,,0,21,0.0,0.0,,330.0,189.2359704609211,,50,0,0,0,0,0,0,0,0,0,,1,,3,114920,2,2,0,0,2,,125.0,448.0,12,1.0,0.0,2.0,1.0,1.0,1,1,123.30333995401358,220.0,5241.0,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06296508299942759,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -5860,0,26.0,0.0,6,111,480.0,,,90,62,0.0,0.0,,612.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,4,101137,2,2,0,0,2,,320.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,103.34081693887525,480.0,23614.300895421664,4,1,5,0,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025916498765316168,13119.056053012035,2,1,2_0,2_1_0,2_2_0,2_0_0 -5861,2,37.0,0.0,7,111,350.0,,,63,56,0.0,0.0,,570.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,5,127952,2,1,0,0,2,,220.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,115.29288628379754,350.0,20553.372686765386,4,1,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027732674762766855,8936.248994245821,1,1,1_0,1_1_0,1_2_0,1_0_0 -5862,2,37.0,0.0,8,111,400.0,,,56,64,0.0,207.03450096389156,,735.0,232.24414556567586,,50,0,0,0,0,0,0,0,0,1,15.0,1,2002.0,6,128440,2,1,0,0,1,,240.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,112.48787386814325,400.0,16687.485831666752,1,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044044981216118155,9270.825462037084,1,1,1_0,1_1_0,1_2_0,1_0_0 -5863,2,72.0,0.0,5,111,468.0,,,0,86,0.0,0.0,,732.0,454.1663291062106,,43,0,0,0,0,0,0,0,0,0,,1,,3,109278,1,1,0,0,2,,420.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,117.88013891469765,468.0,15341.745432903079,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047712954383280076,10227.830288602052,2,1,2_0,2_1_0,2_2_0,2_0_0 -5864,1,21.0,250.0,9,111,0.0,,,43,53,0.0,0.0,,307.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,118436,2,1,0,0,1,,538.0,520.0,43,2.0,0.0,3.0,3.0,1.8,2,2,135.11346842378856,0.0,29039.221866242257,1,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010571908621177063,16132.901036801253,4,2,4_1,4_0_1,4_2_1,4_0_0 -5865,2,55.0,0.0,7,111,500.0,,,62,56,0.0,0.0,,590.0,154.82943037711726,,50,0,0,0,0,0,0,0,0,0,,1,,5,133651,1,2,0,0,2,,200.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,117.58631583285529,500.0,20628.11990407674,4,1,0,1,63.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028601734076763738,13752.07993605116,3,2,3_0,3_1_0,3_2_0,3_0_0 -5866,2,75.0,0.0,6,111,800.0,,,0,86,0.0,0.0,,1200.0,688.1308016760767,,10,0,0,0,0,0,0,0,0,0,,1,,4,115418,1,3,0,0,2,,600.0,,21,1.0,1.0,4.0,2.0,1.5,1,1,117.88013891469765,800.0,21197.77657623443,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05660971072529191,14131.851050822954,3,2,3_0,3_1_0,3_2_0,3_0_0 -5867,2,60.0,0.0,6,111,200.0,,,86,46,0.0,0.0,,464.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,4,111433,2,3,0,0,1,,200.0,,42,2.0,2.0,5.0,3.0,2.0,2,2,108.88300138314852,200.0,24707.340719614785,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018779843823161325,12353.670359807393,2,1,2_0,2_1_0,2_2_0,2_0_0 -5868,0,45.0,0.0,2,111,755.0,,,0,64,0.0,0.0,,815.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,0,,1,,2,128016,2,1,0,0,2,,650.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,141.26210359537677,755.0,20305.57793764988,0,4,5,0,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04013675466428641,11280.87663202771,2,1,2_0,2_1_0,2_2_0,2_0_1 -5869,1,47.0,219.0,9,111,480.0,,,0,56,0.0,0.0,,540.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,114370,2,2,0,0,2,,240.0,,32,2.0,0.0,3.0,2.0,1.5,1,1,214.233867995128,480.0,4425.739660844937,0,4,1,2,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12201350313879653,2950.4931072299582,1,1,1_1,1_1_1,1_2_1,1_0_0 -5870,1,27.0,101.0,9,111,700.0,,,55,52,0.0,0.0,,840.0,240.84578058662683,,44,0,0,0,0,0,0,0,0,0,,1,2007.0,6,105900,2,1,0,0,2,,400.0,633.0,43,2.0,0.0,3.0,2.0,1.5,2,2,148.91580928699804,700.0,27578.794704770193,4,1,2,3,69.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030458183868880558,18385.86313651346,4,2,4_1,4_1_1,4_2_1,4_0_0 -5871,1,37.0,473.0,6,111,696.0,,,55,63,0.0,0.0,,766.0,120.42289029331342,,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,114885,1,3,0,0,2,,170.0,590.0,43,2.0,5.0,4.0,5.0,2.4,2,2,168.54567099912128,696.0,38259.84303942472,1,1,2,3,92.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02002099170168257,15941.601266426967,3,2,3_1,3_1_1,3_2_1,3_0_0 -5872,1,47.0,162.0,9,111,450.0,,,63,56,0.0,0.0,,520.0,120.42289029331342,,10,2,2,1,2,1,2,2,1,0,,1,2004.0,6,128908,2,1,0,0,2,,190.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,125.68633801631405,450.0,19641.61166726445,4,1,1,2,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.02647440590970721,8539.831159680196,1,1,1_1,1_1_1,1_2_1,1_0_0 -5873,1,31.0,404.0,6,111,450.0,,,56,56,0.0,0.0,,690.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,4,118014,2,1,0,0,2,,250.0,550.0,43,2.0,0.0,2.0,4.0,2.1,1,1,143.95175570050486,450.0,18409.186489514086,4,4,2,3,53.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037481286877778415,8766.279280720993,1,1,1_1,1_1_1,1_2_1,1_0_0 -5874,1,45.0,206.0,8,111,500.0,,,0,46,0.0,0.0,,540.0,68.81308016760767,,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,106937,2,1,0,0,1,,300.0,685.0,32,1.0,0.0,4.0,3.0,2.0,3,3,138.42790353688432,500.0,23168.123211486563,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023307887094293097,11584.061605743282,2,1,2_1,2_1_1,2_2_1,2_0_0 -5875,2,55.0,0.0,9,111,800.0,,,56,22,0.0,0.0,,860.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,111980,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,138.23862118583997,800.0,11271.081137735782,1,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0763014647388798,7514.054091823855,1,1,1_0,1_1_0,1_2_0,1_0_0 -5876,2,48.0,0.0,9,111,540.0,,,55,67,0.0,0.0,,540.0,0.0,,71,2,2,1,2,1,2,2,2,0,,1,2005.0,6,125858,2,2,0,0,1,,100.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,107.00080740724314,540.0,44720.892325276676,1,1,0,1,101.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.012074893230490994,19443.866228381165,5,3,5,5_1,5_2,5_0_0 -5877,1,46.0,320.0,6,111,380.0,,,54,21,0.0,0.0,,470.0,154.82943037711726,,20,0,0,0,0,0,0,0,0,0,,1,,4,115531,1,2,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,4.0,2.1,1,1,159.23569945669445,380.0,9349.29491255623,4,1,2,3,94.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05027117064932711,4452.045196455348,1,1,1_1,1_1_1,1_2_1,1_0_0 -5878,2,38.0,0.0,8,111,700.0,,,56,42,0.0,0.0,,740.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,2,3.0,1,2001.0,6,105512,1,1,0,0,2,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,105.48661001432112,700.0,59265.44513438181,1,1,1,2,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012486196607856102,28221.640540181812,8,4,8,8_1,8_2,8_0_0 -5879,2,38.0,0.0,6,111,864.0,,,85,56,0.0,0.0,,964.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,0,,1,,4,131199,1,1,0,0,2,,400.0,,42,1.0,0.0,6.0,4.0,2.5,2,2,109.94206198671988,864.0,31935.59888137053,7,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03018574987683555,12774.239552548212,2,1,2_0,2_1_0,2_2_0,2_0_0 -5880,2,60.0,0.0,7,111,400.0,,,78,56,0.0,0.0,,560.0,275.25232067043066,,50,0,0,0,0,0,0,0,0,0,,1,,5,114259,2,1,0,0,2,,300.0,,42,2.0,3.0,5.0,3.0,2.0,2,2,113.72964648244168,400.0,42083.23077169434,5,1,0,1,109.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013306963123578963,21041.61538584717,5,3,5,5_1,5_2,5_0_0 -5881,0,60.0,0.0,7,111,511.0,,,21,45,0.0,0.0,,711.0,344.06540083803833,,50,2,2,1,2,1,1,2,2,2,25.0,1,,5,125833,1,2,0,0,2,,500.0,,43,3.0,2.0,5.0,3.0,2.0,3,2,106.38896011888745,511.0,66816.48502458568,1,1,0,1,176.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.010641086548302887,33408.24251229284,8,4,8,8_1,8_2,8_0_0 -5882,2,42.0,0.0,7,111,910.0,,,0,52,0.0,0.0,,1050.0,240.84578058662683,,10,2,2,1,2,1,2,2,2,2,45.0,1,,5,102783,2,1,0,0,2,,875.0,,22,1.0,0.0,4.0,3.0,2.0,3,2,112.63256558137451,910.0,36382.249857521696,0,1,0,1,109.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.028860227284237677,18191.124928760848,4,2,4_0,4_1_0,4_2_0,4_0_0 -5883,2,23.0,0.0,9,111,80.0,,,21,55,0.0,0.0,,82.0,3.4406540083803834,,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,128257,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,210.92359333769394,80.0,45060.678168261125,1,1,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018197684396538312,30040.452112174084,8,4,8,8_1,8_2,8_0_0 -5884,2,62.0,0.0,8,111,250.0,,,0,75,0.0,0.0,,350.0,172.03270041901916,,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,103263,2,1,0,0,2,,120.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,120.78313042965884,250.0,33285.66273816161,0,5,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010515037743224178,33285.66273816161,8,4,8,8_1,8_2,8_0_0 -5885,2,58.0,0.0,8,111,0.0,,,0,75,0.0,0.0,,862.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,112124,2,1,0,0,1,,0.0,450.0,11,0.0,3.0,1.0,1.0,1.0,1,1,131.91903329155733,0.0,22313.753629092997,0,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03863088274292461,22313.753629092997,6,3,6,6_1,6_2,6_0_0 -5886,2,44.0,0.0,9,111,600.0,,,22,46,0.0,0.0,,820.0,378.4719409218422,,10,0,0,0,0,0,0,0,0,0,,1,2010.0,6,124878,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,212.73492984990358,600.0,38176.56332262047,4,1,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021479146592384115,21209.20184590026,5,3,5,5_1,5_2,5_0_0 -5887,0,90.0,0.0,2,111,150.0,,,0,71,0.0,129.39656310243222,,275.0,0.0,,42,2,2,1,2,1,2,2,2,0,,1,,2,119239,1,3,0,0,2,,250.0,,11,0.0,5.0,3.0,1.0,1.0,4,2,122.85387589256727,150.0,11935.302251542791,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.02304089114831195,11935.302251542791,2,1,2_0,2_1_0,2_2_0,2_0_1 -5888,2,37.0,0.0,5,111,560.0,,,37,55,0.0,0.0,,780.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,2,35.0,1,,3,104559,2,1,0,0,1,,280.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,115.89490504476727,560.0,89843.22728941655,4,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008681789641052701,37434.6780372569,9,5,9,9_1,9_2,9_0_0 -5889,1,58.0,45.0,9,111,0.0,,,56,77,0.0,0.0,,488.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2008.0,6,129218,2,1,0,0,1,,175.0,711.0,42,1.0,2.0,4.0,3.0,2.0,2,2,139.57991631294766,0.0,39968.0,4,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0122097678142514,19984.0,5,3,5,5_1,5_2,5_0_0 -5890,1,57.0,40.0,7,111,600.0,,,0,52,0.0,0.0,,738.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,1,5.0,1,,5,102665,1,3,0,0,2,,500.0,650.0,32,2.0,1.0,4.0,2.0,1.5,1,1,125.0545911691533,600.0,18665.498039215683,0,1,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03953818957573395,12443.665359477121,2,1,2_1,2_1_1,2_2_1,2_0_0 -5891,2,25.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,194.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,2011.0,6,129803,2,1,0,0,2,,136.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,233.8981952365452,0.0,35032.58201816202,0,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0055377020140686215,35032.58201816202,9,5,9,9_0,9_2,9_0_0 -5892,1,32.0,577.0,7,111,0.0,,,0,68,0.0,0.0,,725.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,122088,2,1,0,0,1,,225.0,700.0,32,1.0,0.0,5.0,6.0,2.6999999999999997,3,2,132.10324776920172,0.0,17062.179243394927,0,4,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04249164128788885,6319.325645701825,1,1,1_1,1_1_1,1_2_1,1_0_0 -5893,2,51.0,0.0,8,111,400.0,,,52,52,0.0,0.0,,532.0,227.0831645531053,,12,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,105809,1,2,0,0,2,,240.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,110.33746767530448,400.0,53855.386814012345,1,1,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009878306172737055,25645.42229238683,7,4,7,7_1,7_2,7_0_0 -5894,2,45.0,0.0,2,111,300.0,,,54,68,0.0,0.0,,700.0,688.1308016760767,,20,0,0,0,0,0,0,0,0,0,,1,,2,105341,2,2,0,0,2,,600.0,,43,3.0,0.0,5.0,7.0,3.3999999999999995,2,2,118.01119567809083,300.0,11573.706370647678,4,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0604819214850037,3404.031285484612,1,1,1_0,1_1_0,1_2_0,1_0_1 -5895,1,37.0,140.0,9,111,300.0,,,0,52,0.0,0.0,,350.0,86.01635020950958,,60,0,0,0,0,0,0,0,0,0,,1,2011.0,6,121753,2,1,0,0,1,,300.0,,12,1.0,0.0,2.0,1.0,1.0,2,1,200.0233614887762,300.0,6332.0,0,4,1,2,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05527479469361971,6332.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -5896,2,58.0,0.0,6,111,500.0,,,56,68,0.0,103.51725048194578,,1128.0,908.3326582124212,,70,2,2,2,2,1,2,2,2,0,,1,,4,129572,2,3,0,0,1,,500.0,,43,2.0,6.0,6.0,2.0,1.5,1,1,116.27759040806794,500.0,31219.624794210966,4,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03613111968626748,20813.083196140644,5,3,5,5_1,5_2,5_0_0 -5897,2,45.0,0.0,8,111,840.0,,,68,81,0.0,0.0,,1104.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106520,1,1,0,0,2,,440.0,,43,4.0,1.0,5.0,6.0,3.0999999999999996,2,2,118.01119567809083,840.0,14282.594390712018,4,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07729688107070604,4607.288513132909,1,1,1_0,1_1_0,1_2_0,1_0_0 -5898,1,55.0,375.0,7,111,100.0,,,64,54,0.0,0.0,,232.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,5,120497,2,1,0,0,2,,140.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,112.20749131961445,100.0,8324.523819609009,4,4,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027869461968924574,5549.682546406006,1,1,1_1,1_1_1,1_2_1,1_0_0 -5899,2,43.0,0.0,2,111,960.0,,,56,63,0.0,0.0,,1092.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,2,121851,2,1,0,0,1,,440.0,,43,3.0,0.0,5.0,4.0,2.3,3,2,115.29288628379754,960.0,37169.89411305096,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029378614764914834,16160.823527413464,4,2,4_0,4_1_0,4_2_0,4_0_1 -5900,1,60.0,253.0,9,111,0.0,,,0,81,0.0,0.0,,398.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,132145,2,1,0,0,1,,0.0,520.0,12,1.0,6.0,2.0,1.0,1.0,2,2,131.91903329155733,0.0,1320.0,0,4,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.3015151515151515,1320.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -5901,1,28.0,413.0,7,111,342.0,,,85,52,0.0,0.0,,477.0,232.24414556567586,,71,0,0,0,0,0,0,0,0,0,,2,,5,119041,2,1,0,0,2,,160.0,417.0,42,1.0,0.0,3.0,4.0,2.1,1,1,130.20988245000723,342.0,22345.526684330664,6,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021346554356872077,10640.726992538412,2,1,2_1,2_0_1,2_2_1,2_0_0 -5902,1,33.0,400.0,6,111,900.0,,,0,54,0.0,0.0,,1160.0,447.28502108944986,,71,0,0,0,0,0,0,0,0,0,,2,,4,117073,1,2,0,0,1,,900.0,580.0,32,3.0,2.0,4.0,5.0,2.8,3,3,123.75929327422465,900.0,25655.369612042326,0,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045214706221013076,9162.63200430083,1,1,1_1,1_0_1,1_2_1,1_0_0 -5903,1,43.0,507.0,9,111,360.0,,,0,85,0.0,0.0,,492.0,227.0831645531053,,70,2,2,2,2,2,1,2,2,0,,2,2004.0,6,130932,1,3,0,0,1,,280.0,495.0,31,0.0,0.0,5.0,5.0,2.5999999999999996,1,1,135.7909503441216,360.0,18784.588235294115,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.026191684046370935,7224.841628959276,1,1,1_1,1_0_1,1_2_1,1_0_0 -5904,1,57.0,351.0,9,111,668.0,,,0,85,0.0,0.0,,800.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,129893,2,2,0,0,1,,400.0,341.0,31,1.0,3.0,3.0,3.0,1.8,1,1,120.98794372567501,668.0,2117.149987222796,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.377866473716117,1176.1944373459978,1,1,1_1,1_0_1,1_2_1,1_0_0 -5905,0,35.0,0.0,8,111,300.0,,,63,22,0.0,0.0,,564.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,1,2.0,2,2003.0,6,126760,2,1,0,0,1,,280.0,,43,2.0,0.0,3.0,3.0,1.8,4,3,119.85021213744277,300.0,46380.76398441268,1,1,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012160213665077727,25767.09110245149,7,4,7,7_0,7_2,7_0_0 -5906,1,52.0,200.0,9,111,300.0,,,0,56,0.0,0.0,,560.0,447.28502108944986,,71,2,2,2,2,1,2,2,2,0,,1,2008.0,6,111968,1,3,0,0,1,,680.0,,32,1.0,1.0,4.0,2.0,1.5,1,1,117.58631583285529,300.0,11528.770786064864,0,4,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.04857412905432096,7685.847190709909,1,1,1_1,1_1_1,1_2_1,1_0_0 -5907,2,64.0,0.0,6,111,224.0,,,85,11,0.0,0.0,,350.0,216.76120252796414,,71,2,2,1,2,2,2,2,1,0,,1,,4,120503,1,2,0,0,2,,202.0,,42,3.0,1.0,4.0,4.0,2.5,1,1,112.93105255141639,224.0,19552.894900709663,6,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.017900162701089184,7821.157960283866,1,1,1_0,1_1_0,1_2_0,1_0_0 -5908,2,46.0,0.0,6,111,446.0,,,52,63,0.0,0.0,,614.0,289.01493670395223,,71,0,0,0,0,0,0,0,0,0,,1,,4,110529,2,1,0,0,2,,240.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,105.26816114498001,446.0,28995.066057066237,4,1,1,2,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021176016595084297,11598.026422826495,2,1,2_0,2_1_0,2_2_0,2_0_0 -5910,2,28.0,0.0,6,111,900.0,,,85,52,0.0,0.0,,988.0,151.38877636873687,,71,2,2,2,2,1,2,2,2,0,,1,,4,106709,2,1,0,0,1,,400.0,,42,1.0,0.0,6.0,4.0,2.1,2,1,114.42845954094602,900.0,29085.257471097742,6,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.033969099327443936,13850.122605284638,3,2,3_0,3_1_0,3_2_0,3_0_0 -5911,2,63.0,0.0,6,111,420.0,,,78,64,0.0,0.0,,696.0,474.81025315649293,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,118281,2,1,0,0,2,,330.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,112.52283575596805,420.0,26915.852748296707,6,1,0,1,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02585836705634542,17943.901832197804,4,2,4_0,4_1_0,4_2_0,4_0_0 -5912,0,44.0,0.0,8,111,700.0,,,22,21,0.0,0.0,,832.0,227.0831645531053,,33,2,2,1,2,1,2,2,2,2,15.0,1,2000.0,6,100534,2,1,0,0,1,,420.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,105.60156559278101,700.0,18383.8305950477,1,1,5,0,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04525716203151518,9191.91529752385,1,1,1_0,1_1_0,1_2_0,1_0_0 -5913,2,43.0,0.0,7,111,330.0,,,55,11,0.0,0.0,,468.0,237.40512657824647,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,122949,2,3,0,0,2,,192.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,104.20952786715924,330.0,14668.260634862363,4,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03190562341711427,5867.304253944945,1,1,1_0,1_1_0,1_2_0,1_0_0 -5914,2,58.0,0.0,8,111,520.0,,,78,52,0.0,0.0,,1020.0,860.1635020950959,,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,131408,2,1,0,0,2,,150.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,131.74452873508048,520.0,29598.599184713807,5,1,0,1,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03446109032507116,19732.399456475872,5,3,5,5_1,5_2,5_0_0 -5915,1,65.0,59.0,6,111,360.0,,,0,86,0.0,0.0,,409.0,84.29602320531939,,70,0,0,0,0,0,0,0,0,0,,2,,4,129207,2,2,0,0,2,,248.0,580.0,11,0.0,0.0,3.0,1.0,1.0,1,1,154.06108240804764,360.0,15921.255683900843,0,7,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02568892856947019,15921.255683900843,3,2,3_1,3_0_1,3_2_1,3_0_0 -5916,0,53.0,0.0,5,111,700.0,,,0,68,0.0,155.27587572291867,,1242.0,674.3681856425551,,42,0,0,0,0,0,0,0,0,3,75.0,1,,3,126472,2,3,0,0,2,,600.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,125.64838531144218,700.0,9960.233050847457,0,1,5,0,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12469587746185573,6640.155367231638,1,1,1_0,1_1_0,1_2_0,1_0_0 -5917,2,71.0,0.0,5,111,188.0,,,52,78,0.0,0.0,,518.0,567.7079113827633,,70,0,0,0,0,0,0,0,0,1,1.0,1,,3,113148,2,2,0,0,2,,432.0,,42,1.0,6.0,4.0,2.0,1.5,2,2,116.21307776434034,188.0,28853.176791232494,1,5,1,2,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01795296246746052,19235.451194154997,5,3,5,5_1,5_2,5_0_0 -5918,2,53.0,0.0,6,111,630.0,,,54,46,0.0,0.0,,716.0,147.94812236035648,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,125030,2,2,0,0,2,,510.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,153.27821850934802,630.0,76340.4067082841,1,1,0,1,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009379043561242948,38170.20335414205,9,5,9,9_1,9_2,9_0_0 -5919,1,29.0,235.0,2,111,600.0,,,0,52,0.0,103.51725048194578,,994.0,505.7761392319164,,60,0,0,0,0,0,0,0,0,0,,1,,2,110153,2,1,0,0,2,,486.0,,22,2.0,9.0,5.0,4.0,2.5,2,2,128.41625458971913,600.0,23039.922084982747,0,1,1,2,81.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04314250700734279,9215.968833993098,1,1,1_1,1_1_1,1_2_1,1_0_1 -5920,2,77.0,0.0,9,111,104.0,,,0,86,0.0,0.0,,236.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,128490,2,1,0,0,2,,60.0,,11,0.0,11.0,2.0,1.0,1.0,1,1,218.05511713319584,104.0,9468.730128478941,0,6,0,1,29.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024924144716110003,9468.730128478941,1,1,1_0,1_1_0,1_2_0,1_0_0 -5921,2,36.0,0.0,9,111,288.0,,,38,34,0.0,0.0,,332.0,75.69438818436844,,43,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,117388,2,1,0,0,2,,200.0,,43,2.0,0.0,6.0,3.0,1.8,3,2,239.3961972821138,288.0,83992.58860102082,1,1,1,2,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003952729705439331,46662.54922278934,10,5,10,10_1,10_2,10_0_0 -5922,2,63.0,0.0,6,111,432.0,,,0,52,0.0,0.0,,672.0,412.878481005646,,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,127666,2,1,0,0,2,,300.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,144.35599182871906,432.0,30949.808484952788,0,1,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021712573773330898,30949.808484952788,8,4,8,8_1,8_2,8_0_0 -5923,2,61.0,0.0,6,111,800.0,,,77,13,0.0,0.0,,1064.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,114353,2,1,0,0,1,,400.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,138.2141438670303,800.0,52931.67106772884,5,1,0,1,102.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020101386911411816,35287.78071181923,9,5,9,9_1,9_2,9_0_0 -5924,1,44.0,340.0,5,111,528.0,,,0,63,0.0,0.0,,616.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,1,,3,116269,2,2,0,0,2,,800.0,338.0,32,1.0,2.0,4.0,2.0,1.3,2,2,120.66259508144574,528.0,19067.384442531933,0,4,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03230647611142424,14667.21880194764,3,2,3_1,3_1_1,3_2_1,3_0_0 -5925,1,29.0,173.0,6,111,234.0,,,67,46,0.0,0.0,,486.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,116635,2,1,0,0,2,,380.0,448.0,43,2.0,0.0,3.0,3.0,1.8,1,1,137.53250397299726,234.0,36953.30429965908,1,1,2,3,69.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013151733226857433,20529.6134998106,5,3,5,5_1,5_2,5_0_0 -5926,1,40.0,376.0,8,111,374.0,,,0,85,0.0,0.0,,638.0,454.1663291062106,,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,103387,2,1,0,0,2,,326.0,368.0,21,0.0,0.0,3.0,3.0,1.8,2,2,132.5300047547479,374.0,11024.74484600157,0,6,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05786982001958879,6124.8582477786495,1,1,1_1,1_0_1,1_2_1,1_0_0 -5927,1,27.0,318.0,7,111,138.0,,,0,85,0.0,0.0,,432.0,505.7761392319164,,50,0,0,0,0,0,0,0,0,0,,2,,5,116170,2,1,0,0,1,,100.0,316.0,31,0.0,0.0,3.0,3.0,1.6,2,2,154.05441045086974,138.0,9438.875229301813,0,6,2,3,43.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045768165115575396,5899.297018313633,1,1,1_1,1_0_1,1_2_1,1_0_0 -5928,1,44.0,115.0,8,111,1224.0,,,54,54,0.0,0.0,,1312.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,129684,2,2,0,0,2,,900.0,455.0,43,2.0,0.0,4.0,4.0,2.3,1,1,132.80200774755394,1224.0,45606.40104049177,1,4,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0287678915693246,19828.87001760512,5,3,5,5_1,5_2,5_0_0 -5929,1,41.0,173.0,8,111,227.0,,,0,52,0.0,0.0,,271.0,75.69438818436844,,60,0,0,0,0,0,0,0,0,1,15.0,1,2002.0,6,128032,2,1,0,0,1,,148.0,425.0,22,1.0,0.0,3.0,2.0,1.5,2,2,156.94779392164276,227.0,30196.109827920212,0,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008974665993214313,20130.73988528014,5,3,5,5_1,5_2,5_0_0 -5930,1,45.0,448.0,8,111,107.0,,,56,52,0.0,0.0,,371.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,111669,2,2,0,0,2,,352.0,439.0,43,2.0,0.0,4.0,5.0,2.8,2,2,144.8078454325695,107.0,13927.922779922777,4,4,2,3,76.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02663713791799591,4974.258135686707,1,1,1_1,1_0_1,1_2_1,1_0_0 -5931,1,44.0,220.0,7,111,400.0,,,0,68,0.0,0.0,,488.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,118378,2,1,0,0,1,,225.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,138.06163987994964,400.0,11731.5138213171,0,1,1,2,57.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04159735967861752,11731.5138213171,2,1,2_1,2_1_1,2_2_1,2_0_0 -5932,2,60.0,0.0,8,111,600.0,,,21,37,0.0,0.0,,698.0,168.59204641063877,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125571,2,1,0,0,2,,480.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,128.05260754662177,600.0,73490.43775548904,1,1,0,1,76.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00949783429406591,40828.020975271684,9,5,9,9_1,9_2,9_0_0 -5933,2,56.0,0.0,7,111,480.0,,,0,11,0.0,0.0,,774.0,505.7761392319164,,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,131592,2,1,0,0,2,,450.0,,32,2.0,1.0,4.0,3.0,2.0,4,4,144.30725590884995,480.0,11637.940112739145,0,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0665066147876773,5818.970056369572,1,1,1_0,1_1_0,1_2_0,1_0_0 -5934,2,38.0,0.0,9,111,404.0,,,56,63,0.0,103.51725048194578,,546.0,72.25373417598806,,43,0,0,0,0,0,0,0,0,1,10.0,1,2004.0,6,103152,2,3,0,0,2,,474.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,128.5646787508704,404.0,45178.390181169605,1,1,1,2,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012085423978377462,18824.329242154003,5,3,5,5_1,5_2,5_0_0 -5935,2,70.0,0.0,7,111,249.0,,,0,71,0.0,0.0,,381.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,,5,108477,2,1,0,0,2,,140.0,,21,1.0,1.0,5.0,2.0,1.5,3,3,109.94598226277407,249.0,3506.322858014729,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10866084368959715,2337.548572009819,1,1,1_0,1_1_0,1_2_0,1_0_0 -5936,2,80.0,0.0,2,111,600.0,,,75,75,0.0,0.0,,680.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,1,,2,124909,2,1,0,0,1,,360.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,110.66757354029987,600.0,77898.9048335917,5,5,0,1,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008729262644354523,51932.60322239447,10,5,10,10_1,10_2,10_0_1 -5937,0,66.0,0.0,5,111,480.0,,,77,78,0.0,0.0,,884.0,695.0121096928375,,50,0,0,0,0,0,0,0,0,0,,1,,3,120417,2,1,0,0,2,,240.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,112.4854206774043,480.0,17279.660550458713,5,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05115841236687563,11519.773700305808,2,1,2_0,2_1_0,2_2_0,2_0_0 -5938,2,50.0,0.0,9,111,800.0,,,85,53,0.0,0.0,,1052.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,130767,2,1,0,0,1,,360.0,,42,1.0,1.0,4.0,4.0,2.3,1,1,106.73410169005045,800.0,54978.98327510227,6,1,1,2,97.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019134584478145627,23903.905771783597,6,3,6,6_1,6_2,6_0_0 -5939,1,38.0,178.0,9,111,400.0,,,0,42,0.0,0.0,,421.0,36.12686708799403,,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,110484,2,1,0,0,1,,225.0,650.0,32,1.0,0.0,4.0,2.0,1.3,2,2,126.92611063727897,400.0,24796.386704137713,0,1,2,3,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01697828014312056,19074.143618567472,5,3,5,5_1,5_2,5_0_0 -5940,2,50.0,0.0,7,111,540.0,,,0,55,0.0,0.0,,666.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,3,45.0,1,,5,124624,2,1,0,0,1,,300.0,,12,1.0,2.0,4.0,1.0,1.0,4,4,108.27804147317482,540.0,18307.762911648537,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03637801096802763,18307.762911648537,4,2,4_0,4_1_0,4_2_0,4_0_0 -5941,0,51.0,0.0,2,111,400.0,,,85,52,0.0,0.0,,656.0,440.4037130726891,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,128838,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,3.0,1.8,1,1,122.73973837996122,400.0,20082.4,6,1,5,0,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03266541847587937,11156.888888888889,2,1,2_0,2_1_0,2_2_0,2_0_1 -5942,2,45.0,0.0,7,111,320.0,,,67,64,0.0,0.0,,824.0,867.0448101118566,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,100641,2,1,0,0,2,,400.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,108.5486051660345,320.0,34384.134399323484,1,1,0,1,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023964541041818763,17192.067199661742,4,2,4_0,4_1_0,4_2_0,4_0_0 -5944,2,59.0,0.0,9,111,56.0,,,0,52,0.0,0.0,,224.0,289.01493670395223,,71,2,2,2,2,2,2,2,1,1,30.0,1,2005.0,6,104412,2,1,0,0,2,,498.0,,12,1.0,4.0,2.0,1.0,1.0,3,3,129.63355943121076,56.0,29550.60399149515,0,1,0,1,32.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.007580217313475846,29550.60399149515,8,4,8,8_1,8_2,8_0_0 -5945,1,40.0,102.0,9,111,760.0,,,56,63,0.0,0.0,,806.0,79.13504219274881,,70,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,118176,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,110.21678371133757,760.0,26460.814098314615,1,1,1,2,83.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030460136147184416,11504.70178187592,2,1,2_1,2_1_1,2_2_1,2_0_0 -5946,2,34.0,0.0,9,111,0.0,,,0,63,0.0,0.0,,66.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,116891,2,1,0,0,1,,0.0,450.0,12,1.0,1.0,3.0,1.0,1.0,2,2,226.70584834663646,0.0,24944.770697032734,0,1,2,3,48.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0026458451272855727,24944.770697032734,7,4,7,7_1,7_2,7_0_0 -5947,2,77.0,0.0,9,111,370.0,,,0,75,0.0,0.0,,414.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,1,5.0,1,2011.0,6,114109,2,1,0,0,2,,360.0,,21,2.0,0.0,8.0,5.0,2.5999999999999996,2,2,190.90545478193437,370.0,32062.959289754275,0,5,0,1,154.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012912095738221325,12331.907419136262,2,1,2_0,2_1_0,2_2_0,2_0_0 -5948,1,30.0,348.0,7,111,330.0,,,0,55,0.0,0.0,,462.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,0,,2,,5,100801,1,3,0,0,2,,347.0,347.0,32,1.0,0.0,3.0,2.0,1.3,1,1,142.46739593625094,330.0,18333.118806114922,0,4,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025200294880863488,14102.399081626863,3,2,3_1,3_0_1,3_2_1,3_0_0 -5949,1,42.0,500.0,7,111,0.0,,,55,85,0.0,0.0,,876.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,5,112535,2,1,0,0,2,,268.0,466.0,42,1.0,1.0,5.0,8.0,3.499999999999999,2,2,166.12787355447782,0.0,26027.033841951412,4,6,2,3,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03365731205943369,7436.295383414691,1,1,1_1,1_0_1,1_2_1,1_0_0 -5950,2,54.0,0.0,5,111,280.0,,,0,77,0.0,0.0,,676.0,681.2494936593159,,50,0,0,0,0,0,0,0,0,0,,1,,3,118857,2,2,0,0,2,,312.0,,31,3.0,4.0,6.0,4.0,2.5,1,1,126.20039876921774,280.0,9995.563559322034,0,6,0,1,77.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06763000364992434,3998.2254237288134,1,1,1_0,1_1_0,1_2_0,1_0_0 -5951,2,80.0,0.0,2,111,440.0,,,77,75,0.0,0.0,,503.0,108.38060126398207,,41,0,0,0,0,0,0,0,0,0,,1,,2,104004,2,1,0,0,1,,492.0,,41,0.0,8.0,5.0,2.0,1.5,1,1,120.59284211038856,440.0,40880.398743539365,5,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0123041852687284,27253.599162359576,7,4,7,7_1,7_2,7_0_1 -5952,1,53.0,230.0,2,111,117.0,,,0,63,0.0,0.0,,159.0,72.25373417598806,,44,0,0,0,0,0,0,0,0,0,,1,,2,116263,2,1,0,0,2,,240.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,138.50096110717487,117.0,5247.546182943535,0,4,1,2,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03029987625774667,5247.546182943535,1,1,1_1,1_1_1,1_2_1,1_0_1 -5953,2,41.0,0.0,2,111,492.0,,,0,81,0.0,0.0,,624.0,227.0831645531053,,43,0,0,0,0,0,0,0,0,0,,1,,2,108910,1,1,0,0,2,,500.0,,32,1.0,3.0,6.0,2.0,1.5,2,2,129.55053339069286,492.0,4865.935418991544,0,4,0,1,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12823844672589652,3243.9569459943627,1,1,1_0,1_1_0,1_2_0,1_0_1 -5954,2,66.0,0.0,5,111,288.0,,,0,77,0.0,0.0,,414.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,3,106153,2,1,0,0,2,,200.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,131.61560977566808,288.0,43756.890528745396,0,5,0,1,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009461366998370902,43756.890528745396,10,5,10,10_1,10_2,10_0_0 -5955,2,36.0,0.0,8,111,960.0,,,38,37,0.0,0.0,,1092.0,227.0831645531053,,31,2,2,2,1,1,2,1,2,0,,1,2003.0,6,118858,1,2,0,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,125.30780435050688,960.0,42681.524887802945,4,1,1,2,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.025584840346509263,20324.535660858546,5,3,5,5_1,5_2,5_0_0 -5956,2,60.0,0.0,7,111,200.0,,,0,71,0.0,0.0,,596.0,681.2494936593159,,71,2,2,2,2,1,2,2,2,0,,1,,5,125038,2,3,0,0,1,,180.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,143.9212301542954,200.0,7675.712564543889,0,5,0,1,56.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.07764751415433127,7675.712564543889,1,1,1_0,1_1_0,1_2_0,1_0_0 -5957,2,81.0,0.0,2,111,390.0,,,77,71,0.0,0.0,,522.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,2,122511,1,3,0,0,2,,420.0,,41,1.0,0.0,5.0,3.0,2.0,1,1,108.5486051660345,390.0,21124.65420489037,5,5,0,1,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02471046365715926,10562.327102445184,2,1,2_0,2_1_0,2_2_0,2_0_1 -5958,2,58.0,0.0,9,111,564.0,,,85,77,0.0,0.0,,804.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,116769,2,1,0,0,1,,100.0,,41,0.0,3.0,4.0,3.0,2.0,2,2,174.96318957570068,564.0,60759.63536750511,6,5,1,2,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013232469140688551,30379.817683752553,8,4,8,8_1,8_2,8_0_0 -5959,1,38.0,402.0,6,111,230.0,,,0,85,0.0,0.0,,335.0,180.63433543997013,,70,0,0,0,0,0,0,0,0,0,,1,,4,113041,2,1,0,0,2,,192.0,415.0,31,0.0,0.0,3.0,3.0,1.8,2,2,118.46744883932188,230.0,2633.3046039495566,0,6,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.127216577792615,1462.9470021941981,1,1,1_1,1_1_1,1_2_1,1_0_0 -5960,1,35.0,465.0,7,111,643.0,,,85,68,0.0,0.0,,907.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,5,123354,2,1,0,0,2,,318.0,474.0,42,2.0,1.0,4.0,6.0,2.8999999999999995,2,2,124.41994275289575,643.0,21173.402452453076,6,1,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042836761925097125,7301.173259466579,1,1,1_1,1_1_1,1_2_1,1_0_0 -5961,1,61.0,253.0,8,111,300.0,,,0,77,0.0,0.0,,426.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,124581,2,1,0,0,2,,180.0,374.0,11,0.0,0.0,2.0,1.0,1.0,2,2,195.42628901352572,300.0,5485.694789081886,0,7,2,3,49.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07765652599701005,5485.694789081886,1,1,1_1,1_0_1,1_2_1,1_0_0 -5962,1,28.0,357.0,8,111,285.0,,,0,56,0.0,0.0,,325.0,68.81308016760767,,50,0,0,0,0,0,0,0,0,1,30.0,2,2001.0,6,104215,2,2,0,0,2,,120.0,481.0,32,1.0,0.0,2.0,2.0,1.3,1,1,176.02549272331777,285.0,13110.691860566578,0,1,2,3,48.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024788928262246195,10085.147585051214,2,1,2_1,2_0_1,2_2_1,2_0_0 -5963,1,37.0,120.0,2,111,480.0,,,46,47,0.0,0.0,,616.0,233.96447256986607,,50,0,0,0,0,0,0,0,0,0,,1,,2,104671,2,1,0,0,1,,175.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,114.65759246156414,480.0,37214.777904959374,4,1,1,2,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.016552564187623693,17721.322811885417,4,2,4_1,4_1_1,4_2_1,4_0_1 -5964,2,68.0,0.0,2,111,517.0,,,75,74,0.0,0.0,,649.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,2,124688,2,1,0,0,1,,260.0,,41,0.0,2.0,5.0,2.0,1.5,4,4,136.21209811362166,517.0,58273.05345394208,6,5,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011137223150884952,38848.70230262805,9,5,9,9_1,9_2,9_0_1 -5965,2,44.0,0.0,6,111,280.0,,,54,63,0.0,0.0,,364.0,144.50746835197612,,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,111446,2,2,0,0,1,,360.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,104.41359850662407,280.0,56910.09550168545,1,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006396053227308672,28455.047750842725,8,4,8,8_1,8_2,8_0_0 -5966,1,36.0,413.0,7,111,160.0,,,0,81,0.0,0.0,,248.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,2,,5,127850,2,3,0,0,2,,138.0,409.0,32,1.0,0.0,4.0,3.0,1.8,3,3,150.56541477733427,160.0,10931.62886742306,0,4,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02268646356436922,6073.1271485683665,1,1,1_1,1_0_1,1_2_1,1_0_0 -5967,1,36.0,407.0,7,111,672.0,,,0,42,0.0,0.0,,804.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,2,,5,117819,2,3,0,0,1,,480.0,394.0,32,1.0,0.0,3.0,3.0,1.8,2,1,132.74539358565,672.0,13190.017112210684,0,4,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0609551900623158,7327.787284561491,1,1,1_1,1_0_1,1_2_1,1_0_0 -5968,2,50.0,0.0,7,111,816.0,,,52,63,0.0,0.0,,1080.0,454.1663291062106,,20,0,0,0,0,0,0,0,0,0,,1,,5,116291,2,3,0,0,1,,800.0,,43,3.0,1.0,4.0,4.0,2.5,2,2,124.74751195859986,816.0,38919.994932191476,4,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027749232801330896,15567.99797287659,3,2,3_0,3_1_0,3_2_0,3_0_0 -5969,1,39.0,213.0,7,111,480.0,,,56,42,0.0,0.0,,568.0,151.38877636873687,,41,0,0,0,0,0,0,0,0,0,,2,,5,131197,2,3,0,0,2,,400.0,458.0,43,2.0,0.0,4.0,4.0,2.3,4,2,128.44360658366045,480.0,21320.620099120224,4,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026640876173364112,9269.834825704445,1,1,1_1,1_0_1,1_2_1,1_0_0 -5970,1,30.0,96.0,9,111,280.0,,,56,56,0.0,0.0,,544.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,116367,2,1,0,0,2,,180.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,158.98043991925869,280.0,19384.26567994644,4,1,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028063998347008994,12922.84378663096,2,1,2_1,2_1_1,2_2_1,2_0_0 -5971,2,38.0,0.0,9,111,240.0,,,0,85,0.0,207.03450096389156,,566.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,0,,1,2009.0,6,116128,2,1,0,0,1,,0.0,,31,0.0,0.0,5.0,5.0,2.2,3,3,192.14480305007558,240.0,20126.800000000003,0,6,0,1,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02812170836894091,9148.545454545456,1,1,1_0,1_1_0,1_2_0,1_0_0 -5972,2,52.0,0.0,7,111,320.0,,,56,62,0.0,0.0,,421.0,173.40896202237133,,41,0,0,0,0,0,0,0,0,0,,1,,5,112239,2,1,0,0,1,,224.0,,43,2.0,4.0,4.0,5.0,3.0,1,1,121.19820627799815,320.0,49748.100658678355,1,1,1,2,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008462634641842517,16582.70021955945,4,2,4_0,4_1_0,4_2_0,4_0_0 -5973,2,50.0,0.0,6,111,500.0,,,22,22,0.0,0.0,,500.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,4,121007,2,1,0,0,2,,240.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,120.36067071405144,500.0,58529.0008984892,1,1,1,2,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008542773536612794,23411.600359395678,6,3,6,6_1,6_2,6_0_0 -5974,2,82.0,0.0,2,400,240.0,,,0,86,0.0,0.0,,436.0,337.18409282127755,,71,0,0,0,0,0,0,0,0,0,,1,,2,100872,2,1,0,0,2,,230.0,,11,0.0,9.0,3.0,1.0,1.0,1,1,103.21362816914574,240.0,8721.934552630475,0,7,0,1,45.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04998890984208376,8721.934552630475,1,1,1_0,1_1_0,1_1_0,1_0_1 -5975,2,56.0,0.0,7,400,120.0,,,0,56,0.0,0.0,,414.0,505.7761392319164,,50,2,2,2,2,1,2,2,2,0,,1,,5,113892,2,3,0,0,2,,130.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,110.0341904839636,120.0,5133.58,0,4,0,1,65.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0806454754771524,5133.58,1,1,1_0,1_1_0,1_1_0,1_0_0 -5976,2,86.0,0.0,7,400,178.0,,,0,86,0.0,0.0,,610.0,743.1812658101628,,71,0,0,0,0,0,0,0,0,0,,1,,5,121659,2,1,0,0,1,,215.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,108.963690638133,178.0,11984.273156620318,0,7,0,1,55.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050900041414946015,11984.273156620318,2,1,2_0,2_1_0,2_1_0,2_0_0 -5977,0,58.0,0.0,5,400,390.0,,,0,78,0.0,0.0,,439.0,84.29602320531939,,50,0,0,0,0,0,0,0,0,0,,1,,3,121140,2,1,0,0,2,,380.0,,11,0.0,3.0,5.0,1.0,1.0,3,2,116.08862902740339,390.0,10646.378039114934,0,7,0,1,56.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041234680788819277,10646.378039114934,2,1,2_0,2_1_0,2_1_0,2_0_0 -5978,2,44.0,0.0,7,400,400.0,,,22,42,0.0,0.0,,694.0,505.7761392319164,,50,0,0,0,0,0,0,0,0,1,1.0,1,,5,125286,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,5.0,2.4,6,6,123.92179000188538,400.0,58779.61703219988,1,1,1,2,81.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01180681390999574,24491.507096749952,7,4,7,7_1,7_1,7_0_0 -5979,1,46.0,307.0,6,400,319.0,,,63,85,0.0,0.0,,515.0,337.18409282127755,,50,2,2,2,2,1,2,2,2,0,,1,,4,102146,1,2,0,0,2,,197.0,400.0,42,1.0,1.0,2.0,2.0,1.5,3,2,121.3434191239727,319.0,10976.897938400627,4,7,3,4,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.04691671571422457,7317.931958933751,1,1,1_1,1_1_1,1_1_1,1_0_0 -5980,0,46.0,0.0,7,400,60.0,,,0,52,0.0,0.0,,305.0,421.480116026597,,50,0,0,0,0,0,0,0,0,0,,1,,5,129336,2,1,0,0,2,,120.0,,12,1.0,0.0,4.0,1.0,1.0,4,3,117.68423820352254,60.0,9466.675963285557,0,4,5,0,72.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03221827821960698,9466.675963285557,1,1,1_0,1_1_0,1_1_0,1_0_0 -5981,1,56.0,37.0,6,400,480.0,,,0,64,0.0,0.0,,603.0,211.60022151539357,,43,0,0,0,0,0,0,0,0,0,,1,,4,111784,2,1,0,0,2,,130.0,,32,1.0,2.0,6.0,2.0,1.5,2,2,128.2382467472021,480.0,10846.945027769085,0,1,1,2,133.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055591689499326274,7231.29668517939,1,1,1_1,1_1_1,1_1_1,1_0_0 -5982,2,41.0,0.0,8,400,340.0,,,85,69,0.0,0.0,,634.0,505.7761392319164,,31,2,2,2,2,1,2,2,2,0,,1,2000.0,6,122510,1,2,0,0,2,,392.0,,42,1.0,0.0,6.0,7.0,2.9999999999999996,4,2,109.6717425136937,340.0,35992.18679082682,6,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.017614934143473187,11997.395596942275,2,1,2_0,2_1_0,2_1_0,2_0_0 -5983,2,72.0,0.0,2,400,312.0,,,86,78,0.0,0.0,,386.0,127.30419831007418,,50,0,0,0,0,0,0,0,0,0,,1,,2,120935,2,1,0,0,2,,238.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,128.65996350619938,312.0,12571.76582278481,6,5,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030703721771560645,8381.177215189873,1,1,1_0,1_1_0,1_1_0,1_0_1 -5984,0,85.0,0.0,5,400,115.0,,,0,86,0.0,0.0,,403.0,495.4541772067752,,50,0,0,0,0,0,0,0,0,0,,1,,3,111516,1,1,0,0,2,,134.0,,21,1.0,2.0,5.0,2.0,1.5,4,4,109.08336080848402,115.0,7225.277883196109,0,5,5,0,64.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05577640147754879,4816.851922130739,1,1,1_0,1_1_0,1_1_0,1_0_0 -5985,2,62.0,0.0,7,120,920.0,,,77,75,0.0,414.0690019277831,,1540.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,5,111649,2,1,0,0,2,,320.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,111.44903511413065,920.0,62556.63845436299,5,5,0,1,115.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02461769107244274,41704.42563624199,9,5,9,9_1,9_2,9_0_0 -5986,2,38.0,0.0,8,120,380.0,,,42,45,0.0,0.0,,468.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,100967,2,2,0,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,108.1112360731683,380.0,58782.98205619651,1,1,0,1,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007961487893768169,32657.212253442503,8,4,8,8_1,8_2,8_0_0 -5987,2,60.0,0.0,7,120,750.0,,,71,86,0.0,0.0,,990.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,,5,116422,2,1,0,0,2,,380.0,,41,1.0,3.0,5.0,3.0,2.0,1,1,109.52555659840822,750.0,16502.91329301437,7,6,0,1,97.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05998940807736436,8251.456646507186,1,1,1_0,1_1_0,1_2_0,1_0_0 -5988,1,18.0,357.0,9,120,752.0,,,0,56,0.0,0.0,,882.0,223.64251054472493,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,122904,2,1,0,0,2,,240.0,478.0,22,2.0,0.0,3.0,2.0,1.5,3,3,116.38671713995636,752.0,15529.379446640316,0,1,2,3,76.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05679557274201418,10352.919631093544,2,1,2_1,2_0_1,2_2_1,2_0_0 -5989,1,50.0,413.0,9,120,480.0,,,63,56,0.0,0.0,,612.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,121554,2,2,0,0,2,,245.0,560.0,43,2.0,1.0,4.0,4.0,2.3,2,2,144.34655970208243,480.0,23222.573705179282,4,4,2,3,87.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026353668106283454,10096.771176164906,2,1,2_1,2_0_1,2_2_1,2_0_0 -5990,2,59.0,0.0,5,120,970.0,,,77,21,0.0,0.0,,1100.0,223.64251054472493,,50,0,0,0,0,0,0,0,0,0,,1,,3,116830,2,2,0,0,2,,220.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,150.7431009134469,970.0,5110.0,6,1,0,1,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21526418786692758,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0 -5991,1,43.0,380.0,8,120,530.0,,,85,63,0.0,0.0,,662.0,227.0831645531053,,43,2,2,2,2,2,2,2,1,0,,1,2000.0,6,116936,1,2,0,0,2,,360.0,491.0,42,3.0,1.0,4.0,5.0,2.8,2,2,118.52030602365124,530.0,31206.661897269198,6,1,2,3,103.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.021213419178868653,11145.236391881857,2,1,2_1,2_1_1,2_2_1,2_0_0 -5992,2,65.0,0.0,5,120,500.0,,,56,78,0.0,0.0,,720.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,3,113493,2,1,0,0,2,,280.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,113.99147455413852,500.0,13774.332046332045,1,5,0,1,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05227113718314408,9182.88803088803,1,1,1_0,1_1_0,1_2_0,1_0_0 -5993,1,30.0,420.0,6,120,0.0,,,0,85,0.0,0.0,,190.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,128905,1,3,0,0,2,,352.0,550.0,31,0.0,0.0,2.0,2.0,1.3,2,2,145.00009524843574,0.0,15796.014306928522,0,6,2,3,39.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012028350716082936,12150.780236098863,2,1,2_1,2_0_1,2_2_1,2_0_0 -5994,2,70.0,0.0,6,120,200.0,,,0,78,0.0,0.0,,244.0,75.69438818436844,,50,0,0,0,0,0,0,0,0,0,,1,,4,129584,1,2,0,0,2,,156.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,105.46822428093596,200.0,10704.319613615022,0,5,0,1,48.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022794536113220302,10704.319613615022,2,1,2_0,2_1_0,2_2_0,2_0_0 -5995,2,73.0,0.0,9,120,669.0,,,78,74,0.0,0.0,,712.0,73.97406118017824,,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,105613,2,1,0,0,1,,212.0,900.0,41,0.0,3.0,4.0,2.0,1.5,2,2,109.9228996926692,669.0,32491.180591061297,5,5,2,3,92.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021913638933633562,21660.78706070753,6,3,6,6_1,6_2,6_0_0 -5996,2,49.0,0.0,7,120,850.0,,,52,48,0.0,0.0,,1290.0,756.9438818436844,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,116258,2,1,0,0,1,,400.0,,43,2.0,1.0,5.0,4.0,2.3,1,1,114.29235043247014,850.0,60320.73787287368,1,1,0,1,102.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021385680041226995,26226.407770814647,7,4,7,7_1,7_2,7_0_0 -5997,2,35.0,0.0,2,120,350.0,,,0,42,0.0,0.0,,570.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,2,107005,2,2,0,0,2,,240.0,550.0,22,3.0,0.0,5.0,3.0,2.0,2,2,144.27311208347794,350.0,23582.726988468567,0,4,2,3,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0241702327419012,11791.363494234283,2,1,2_0,2_1_0,2_2_0,2_0_1 -5998,2,70.0,0.0,8,120,720.0,,,71,71,0.0,0.0,,830.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,111590,2,1,0,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,112.6104784292912,720.0,34969.150597360305,5,5,0,1,130.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023735206198078306,23312.76706490687,6,3,6,6_1,6_2,6_0_0 -5999,2,63.0,0.0,6,120,680.0,,,0,77,0.0,0.0,,768.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,4,110426,2,1,0,0,2,,240.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,114.33636673788986,680.0,15463.861375040398,0,7,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049664180334647735,15463.861375040398,3,2,3_0,3_1_0,3_2_0,3_0_0 -6000,1,39.0,290.0,9,120,250.0,,,0,56,0.0,0.0,,350.0,172.03270041901916,,70,0,0,0,0,0,0,0,0,0,,2,2006.0,6,123626,2,1,0,0,2,,140.0,590.0,32,2.0,0.0,3.0,4.0,2.1,2,2,139.85310860966337,250.0,13809.955079661006,0,1,2,3,60.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025344036094329676,6576.1690855528595,1,1,1_1,1_0_1,1_2_1,1_0_0 -6001,2,67.0,0.0,7,120,250.0,,,0,77,0.0,0.0,,338.0,151.38877636873687,,33,2,2,2,2,1,2,2,2,0,,1,,5,122420,1,3,0,0,2,,220.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,117.62964790038163,250.0,10646.378039114934,0,5,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.031747886347655845,10646.378039114934,2,1,2_0,2_1_0,2_2_0,2_0_0 -6002,0,49.0,0.0,6,120,750.0,,,0,85,0.0,0.0,,882.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,4,124111,2,1,0,0,1,,300.0,,31,0.0,1.0,4.0,2.0,1.5,2,2,113.37318005464536,750.0,20424.282973621102,0,7,5,0,122.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04318389052576012,13616.188649080736,3,2,3_0,3_1_0,3_2_0,3_0_0 -6003,2,81.0,0.0,6,120,320.0,,,77,77,0.0,0.0,,452.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,4,130572,2,1,0,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,4,2,117.85702271786442,320.0,44909.49976516896,5,5,0,1,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010064685698204179,29939.666510112642,8,4,8,8_1,8_2,8_0_0 -6004,2,40.0,0.0,9,120,300.0,,,22,31,0.0,0.0,,386.0,147.94812236035648,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,114451,2,3,0,0,2,,180.0,1500.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,168.96114905869206,300.0,79838.0,1,1,2,3,180.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004834790450662592,30706.92307692308,8,4,8,8_1,8_2,8_0_0 -6005,0,80.0,0.0,5,120,510.0,,,77,75,0.0,0.0,,642.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,0,,1,,3,131339,2,1,0,0,2,,600.0,,41,0.0,6.0,8.0,2.0,1.5,3,3,120.51903184233608,510.0,65483.746783133734,5,5,0,1,110.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009803959479077275,43655.83118875582,10,5,10,10_1,10_2,10_0_0 -6006,2,62.0,0.0,9,120,350.0,,,0,75,0.0,0.0,,350.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,113508,2,1,0,0,2,,125.0,575.0,11,0.0,2.0,2.0,1.0,1.0,5,3,139.31810250314498,350.0,28007.11036250837,0,5,2,3,56.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012496826536897087,28007.11036250837,7,4,7,7_0,7_2,7_0_0 -6007,2,44.0,0.0,9,120,0.0,,,0,42,0.0,0.0,,718.0,0.0,,70,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,128475,2,1,0,0,2,,915.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,174.20238517916823,0.0,48572.63565415551,0,1,1,2,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014781985583658015,32381.757102770338,8,4,8,8_1,8_2,8_0_0 -6008,2,87.0,0.0,1,120,800.0,,,78,71,0.0,0.0,,932.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,1,130081,2,1,0,0,2,,500.0,,41,0.0,11.0,4.0,2.0,1.5,1,1,117.85702271786442,800.0,22343.07479690032,5,5,0,1,89.0,0,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041713148636520585,14895.383197933546,3,2,3_0,3_1_0,3_2_0,3_1_0 -6009,2,41.0,0.0,8,120,450.0,,,63,52,0.0,0.0,,582.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,2,5.0,1,1999.0,6,115719,2,1,0,0,2,,280.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,131.19151533787112,450.0,22252.127301354245,4,1,0,1,79.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026154802734953794,10596.251095882973,2,1,2_0,2_1_0,2_2_0,2_0_0 -6010,2,35.0,0.0,7,120,600.0,,,63,85,0.0,0.0,,732.0,227.0831645531053,,70,2,2,2,1,1,2,2,2,0,,1,,5,130740,1,2,0,0,2,,200.0,,42,1.0,0.0,2.0,5.0,2.4,2,2,128.84413294556072,600.0,30813.333069355947,4,6,0,1,38.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.023755950008795983,12838.888778898312,2,1,2_0,2_1_0,2_2_0,2_0_0 -6011,2,36.0,0.0,7,120,300.0,,,11,56,0.0,0.0,,520.0,378.4719409218422,,70,2,2,2,2,1,2,2,2,0,,1,,5,122917,2,1,0,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,101.09308666356915,300.0,13786.277992277992,4,4,0,1,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03771866491385593,5994.0339096860835,1,1,1_0,1_1_0,1_2_0,1_0_0 -6012,1,31.0,467.0,6,120,0.0,,,0,85,0.0,0.0,,132.0,227.0831645531053,,10,2,2,2,2,1,2,2,2,0,,2,,4,113281,2,1,0,0,1,,0.0,650.0,31,0.0,0.0,3.0,4.0,1.9,2,2,118.44119896165061,0.0,14050.393063583815,0,6,2,3,63.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.009394754965405283,7394.943717675693,1,1,1_1,1_0_1,1_2_1,1_0_0 -6013,0,33.0,0.0,6,120,700.0,,,69,85,0.0,0.0,,832.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,,4,121104,2,2,0,0,2,,550.0,,42,1.0,0.0,4.0,7.0,2.9999999999999996,4,3,99.27450145681524,700.0,39088.21924986632,4,6,5,0,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02128518556144881,13029.406416622109,2,1,2_0,2_1_0,2_2_0,2_0_0 -6014,2,75.0,0.0,2,120,600.0,,,77,78,0.0,0.0,,688.0,151.38877636873687,,60,0,0,0,0,0,0,0,0,0,,1,,2,108087,2,2,0,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,113.45258125761795,600.0,16377.461645649084,5,5,0,1,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042008951990602124,10918.307763766055,2,1,2_0,2_1_0,2_2_0,2_0_1 -6015,0,42.0,0.0,7,120,550.0,,,68,63,0.0,0.0,,990.0,756.9438818436844,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,114645,2,2,0,0,2,,260.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,2,2,112.53171016923272,550.0,28345.789633681845,1,1,5,0,68.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03492582188727013,10902.226782185326,2,1,2_0,2_1_0,2_2_0,2_0_0 -6017,1,22.0,414.0,2,120,0.0,,,0,85,0.0,0.0,,181.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,2,120254,2,2,0,0,2,,397.0,650.0,31,0.0,0.0,4.0,3.0,1.6,2,2,139.18570599151215,0.0,18872.676479616726,0,6,2,3,81.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009590584578477118,11795.422799760454,2,1,2_1,2_0_1,2_2_1,2_0_1 -6018,2,50.0,0.0,6,120,480.0,,,62,42,0.0,0.0,,590.0,189.2359704609211,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,131290,2,1,0,0,1,,250.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,98.23100901303438,480.0,117123.15362571504,1,1,0,1,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00503743266583681,78082.10241714337,10,5,10,10_1,10_2,10_0_0 -6019,2,57.0,0.0,8,120,500.0,,,0,46,0.0,0.0,,632.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,1,2003.0,6,116019,2,1,0,0,1,,350.0,,22,1.0,0.0,5.0,2.0,1.5,1,1,138.62086477767136,500.0,61960.88616784348,0,1,1,2,180.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010199983232776873,41307.257445228985,9,5,9,9_1,9_2,9_0_0 -6020,2,70.0,0.0,9,120,450.0,,,0,74,0.0,0.0,,560.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,133319,2,1,0,0,2,,350.0,900.0,11,0.0,2.0,4.0,1.0,1.0,1,1,125.43822277634432,450.0,48605.665705545834,0,5,2,3,90.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011521290612343261,48605.665705545834,10,5,10,10_1,10_2,10_0_0 -6021,2,59.0,0.0,7,120,850.0,,,0,21,0.0,0.0,,986.0,233.96447256986607,,50,0,0,0,0,0,0,0,0,0,,1,,5,119516,2,2,0,0,2,,400.0,,22,2.0,1.0,4.0,2.0,1.5,3,3,139.65034641572862,850.0,3391.0,0,1,0,1,118.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2907696844588617,2260.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0 -6022,1,33.0,229.0,6,120,450.0,,,68,52,0.0,0.0,,560.0,189.2359704609211,,31,2,2,2,2,1,2,2,2,1,5.0,1,,4,127944,1,2,0,0,2,,350.0,354.0,43,2.0,0.0,3.0,3.0,1.8,3,3,111.33462749956736,450.0,29224.29738889868,1,1,2,3,64.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.019162137332092884,16235.720771610379,4,2,4_1,4_1_1,4_2_1,4_0_0 -6023,2,33.0,0.0,6,120,0.0,,,42,42,0.0,0.0,,242.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,111600,2,1,0,0,2,,439.0,853.0,43,2.0,0.0,4.0,4.0,2.1,1,1,143.97903358766285,0.0,65270.84729320533,1,1,2,3,83.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037076276781409594,31081.3558539073,8,4,8,8_1,8_2,8_0_0 -6024,2,44.0,0.0,7,120,0.0,,,54,63,0.0,0.0,,234.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,128449,2,1,0,0,2,,326.0,800.0,43,2.0,0.0,4.0,3.0,2.0,2,2,159.78786834340895,0.0,61560.661511783204,1,1,2,3,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003801128744453315,30780.330755891602,8,4,8,8_1,8_2,8_0_0 -6025,1,32.0,370.0,7,120,324.0,,,0,43,0.0,0.0,,374.0,86.01635020950958,,31,0,0,0,0,0,0,0,0,1,5.0,2,,5,132368,2,1,0,0,2,,240.0,436.0,32,1.0,0.0,3.0,3.0,1.6,2,2,109.45521072748448,324.0,17219.798165137614,0,1,2,3,63.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021719186044653106,10762.373853211007,2,1,2_1,2_0_1,2_2_1,2_0_0 -6026,2,37.0,0.0,6,120,310.0,,,52,52,0.0,0.0,,442.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,104595,2,2,0,0,2,,200.0,650.0,43,2.0,1.0,3.0,3.0,1.8,1,1,113.92875780012241,310.0,37604.71173640856,1,1,2,3,69.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011753846249326768,20891.506520226976,5,3,5,5_1,5_2,5_0_0 -6027,2,58.0,0.0,6,120,350.0,,,77,11,0.0,0.0,,570.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,4,132183,2,1,0,0,2,,300.0,,42,3.0,0.0,4.0,5.0,3.0,2,2,122.30700189541807,350.0,47491.640451660656,6,1,0,1,89.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012002112257633514,15830.546817220218,3,2,3_0,3_1_0,3_2_0,3_0_0 -6028,1,22.0,455.0,9,111,0.0,,,85,68,0.0,0.0,,1040.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,106441,2,1,0,0,1,,508.0,630.0,42,1.0,0.0,3.0,4.0,2.1,2,2,120.22964869323113,0.0,5994.946808510638,6,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17347943746950004,2854.7365754812563,1,1,1_1,1_1_1,1_2_1,1_0_0 -6029,2,59.0,0.0,5,111,640.0,,,77,11,0.0,124.22070057833493,,1044.0,488.57286919001444,,41,2,2,1,2,1,2,2,2,0,,1,,3,118341,2,1,0,0,1,,360.0,,42,3.0,3.0,5.0,5.0,2.8,2,2,125.70710051382812,640.0,60679.76597965795,6,1,0,1,97.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.017205076241559446,21671.344992734983,6,3,6,6_1,6_2,6_0_0 -6030,2,64.0,0.0,9,111,600.0,,,0,75,0.0,0.0,,864.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,103155,1,1,0,0,2,,300.0,,21,0.0,2.0,3.0,3.0,1.8,2,2,122.73973837996122,600.0,71178.19418748992,0,5,1,2,77.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01213854902983552,39543.44121527218,9,5,9,9_1,9_2,9_0_0 -6031,2,66.0,0.0,7,111,500.0,,,85,77,0.0,0.0,,720.0,378.4719409218422,,71,0,0,0,0,0,0,0,0,0,,1,,5,118147,2,2,0,0,2,,700.0,,41,1.0,4.0,4.0,5.0,2.8,3,3,108.1824199133214,500.0,28517.980863994562,6,5,0,1,71.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025247229228245873,10184.993165712343,2,1,2_0,2_1_0,2_2_0,2_0_0 -6032,0,29.0,0.0,5,111,560.0,,,63,21,0.0,0.0,,780.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,3,121976,2,1,0,0,2,,650.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,119.47815639012325,560.0,17872.149653656343,4,4,5,0,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043643322997825564,8510.547454122068,1,1,1_0,1_1_0,1_2_0,1_0_0 -6033,2,45.0,0.0,7,111,650.0,,,85,63,0.0,0.0,,870.0,378.4719409218422,,41,0,0,0,0,0,0,0,0,0,,1,,5,117714,2,1,0,0,2,,340.0,,42,2.0,0.0,4.0,4.0,2.5,2,2,127.35220788528336,650.0,15103.765033191103,6,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057601531676912454,6041.506013276441,1,1,1_0,1_1_0,1_2_0,1_0_0 -6034,2,46.0,0.0,7,111,480.0,,,55,64,0.0,0.0,,700.0,378.4719409218422,,30,0,0,0,0,0,0,0,0,2,10.0,1,,5,130676,2,1,0,0,1,,280.0,,43,4.0,0.0,5.0,5.0,2.8,2,2,125.70710051382812,480.0,73585.0314571201,1,1,0,1,105.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00951280425024902,26280.368377542894,7,4,7,7_1,7_2,7_0_0 -6035,1,60.0,310.0,7,111,750.0,,,0,77,0.0,0.0,,861.0,190.95629746511128,,12,0,0,0,0,0,0,0,0,0,,1,,5,107204,2,2,0,0,2,,450.0,521.0,31,1.0,4.0,4.0,3.0,2.0,4,3,130.45204901778786,750.0,13292.589977909262,0,7,2,3,79.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06477292998812736,6646.294988954631,1,1,1_1,1_1_1,1_2_1,1_0_0 -6036,2,49.0,0.0,5,111,720.0,,,0,85,0.0,0.0,,940.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,,3,118548,2,1,0,0,1,,320.0,,31,0.0,2.0,4.0,2.0,1.5,2,2,151.22482795678107,720.0,23165.344531788724,0,7,0,1,99.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04057785536969164,15443.563021192482,3,2,3_0,3_1_0,3_2_0,3_0_0 -6037,2,51.0,0.0,2,111,370.0,,,0,63,0.0,0.0,,480.0,189.2359704609211,,12,0,0,0,0,0,0,0,0,0,,1,,2,120271,1,2,0,0,2,,220.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,136.21209811362166,370.0,8324.523819609009,0,4,0,1,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057660955797774985,5549.682546406006,1,1,1_0,1_1_0,1_2_0,1_0_1 -6038,1,26.0,340.0,7,120,420.0,,,0,55,0.0,0.0,,552.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,100125,2,1,0,0,2,,200.0,570.0,32,1.0,0.0,3.0,2.0,1.3,2,2,129.02974322710068,420.0,14980.690735445767,0,1,2,3,69.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03684743312228684,11523.608258035205,2,1,2_1,2_1_1,2_2_1,2_0_0 -6039,1,46.0,105.0,5,120,900.0,,,85,48,0.0,0.0,,1098.0,340.62474682965797,,43,2,2,2,2,1,2,2,2,0,,1,,3,130254,1,2,0,0,2,,400.0,600.0,42,1.0,1.0,4.0,5.0,2.5999999999999996,2,2,144.48225663853898,900.0,35550.008796745766,6,1,2,3,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.030886068306697875,13673.080306440681,3,2,3_1,3_1_1,3_2_1,3_0_0 -6040,2,43.0,0.0,7,120,540.0,,,0,55,0.0,0.0,,672.0,227.0831645531053,,44,0,0,0,0,0,0,0,0,0,,1,,5,111004,2,1,0,0,2,,160.0,,32,1.0,1.0,4.0,2.0,1.3,1,1,104.96534189495993,540.0,17348.73814065658,0,4,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03873480564129187,13345.183185120446,3,2,3_0,3_1_0,3_2_0,3_0_0 -6041,2,44.0,0.0,9,120,0.0,,,85,45,0.0,0.0,,179.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,122812,2,1,0,0,1,,196.0,800.0,42,1.0,0.0,3.0,4.0,2.1,1,1,114.36934110764926,0.0,41896.26576829702,6,1,2,3,69.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0042724571442701136,19950.6027468081,5,3,5,5_0,5_2,5_0_0 -6042,2,49.0,0.0,7,120,550.0,,,68,85,0.0,0.0,,770.0,378.4719409218422,,71,0,0,0,0,0,0,0,0,0,,1,,5,113257,2,2,0,0,2,,380.0,,42,4.0,1.0,5.0,5.0,3.0,2,2,129.0534497934389,550.0,26400.907049157307,4,6,0,1,95.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029165664595019195,8800.302349719102,1,1,1_0,1_1_0,1_2_0,1_0_0 -6043,1,55.0,77.0,7,120,700.0,,,85,63,0.0,0.0,,832.0,227.0831645531053,,60,0,0,0,0,0,0,0,0,0,,1,,5,112332,2,2,0,0,2,,250.0,460.0,42,1.0,0.0,4.0,3.0,1.8,2,2,121.04301078279008,700.0,22787.115816476966,6,1,2,3,79.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03651186076819758,12659.508786931647,2,1,2_1,2_1_1,2_2_1,2_0_0 -6044,2,46.0,0.0,7,120,660.0,,,0,42,0.0,0.0,,792.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,120088,2,2,0,0,1,,240.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,103.76776414961773,660.0,44854.65417502705,0,1,0,1,122.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017657030570552214,29903.102783351365,8,4,8,8_1,8_2,8_0_0 -6045,1,44.0,253.0,7,120,360.0,,,0,52,0.0,0.0,,448.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,2,,5,107812,2,1,0,0,2,,180.0,401.0,12,1.0,1.0,2.0,1.0,1.0,2,2,129.60890237783912,360.0,3286.967593472249,0,4,2,3,59.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1362958371995225,3286.967593472249,1,1,1_1,1_0_1,1_2_1,1_0_0 -6046,1,47.0,170.0,7,120,478.0,,,85,52,0.0,0.0,,566.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,1,20.0,2,,5,120039,2,1,0,0,1,,170.0,315.0,42,1.0,0.0,1.0,3.0,1.8,2,2,126.27425174999392,478.0,23514.112835783126,6,1,2,3,40.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02407065084499709,13063.396019879514,2,1,2_1,2_0_1,2_2_1,2_0_0 -6047,1,40.0,288.0,5,120,0.0,,,0,68,0.0,0.0,,132.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,126237,2,2,0,0,2,,0.0,600.0,32,1.0,0.0,4.0,4.0,2.5,2,2,122.59437028581024,0.0,15055.527604121467,0,1,2,3,86.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008767543952685182,6022.211041648587,1,1,1_1,1_1_1,1_2_1,1_0_0 -6048,2,68.0,0.0,2,120,450.0,,,0,71,0.0,0.0,,582.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,2,130683,2,2,0,0,2,,120.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,104.65654385160293,450.0,7769.625860076905,0,5,0,1,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07490708181851105,7769.625860076905,1,1,1_0,1_1_0,1_2_0,1_0_1 -6049,2,84.0,0.0,2,120,380.0,,,0,77,0.0,0.0,,468.0,151.38877636873687,,60,2,2,2,2,1,2,2,2,0,,1,,2,120795,2,2,0,0,2,,120.0,,11,0.0,0.0,5.0,1.0,1.0,4,3,104.65654385160293,380.0,10098.343220338984,0,5,0,1,83.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04634423586013647,10098.343220338984,2,1,2_0,2_1_0,2_2_0,2_0_1 -6050,2,72.0,0.0,2,120,250.0,,,0,78,0.0,0.0,,338.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,2,110530,2,1,0,0,2,,260.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,104.77386079650054,250.0,12053.31531494387,0,5,0,1,102.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028042077318009166,12053.31531494387,2,1,2_0,2_1_0,2_2_0,2_0_1 -6051,2,60.0,0.0,6,120,650.0,,,75,77,0.0,0.0,,870.0,378.4719409218422,,12,0,0,0,0,0,0,0,0,0,,1,,4,108490,2,1,0,0,2,,800.0,,41,3.0,0.0,5.0,5.0,3.0,2,2,113.45638796147904,650.0,75988.83165338176,6,5,0,1,119.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011449050881166984,25329.61055112725,7,4,7,7_1,7_2,7_0_0 -6052,2,60.0,0.0,5,120,550.0,,,47,31,0.0,0.0,,726.0,302.77755273747374,,20,0,0,0,0,0,0,0,0,2,60.0,1,,3,115233,2,1,0,0,1,,340.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,103.76776414961773,550.0,151946.0,1,1,1,2,180.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004778013241546339,101297.33333333333,10,5,10,10_1,10_2,10_0_0 -6053,2,71.0,0.0,2,120,400.0,,,75,75,0.0,0.0,,532.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,1,,2,117083,2,2,0,0,2,,300.0,1498.0,41,0.0,2.0,3.0,2.0,1.5,1,1,122.06700929290658,400.0,73684.42119659143,5,5,2,3,54.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007219979357381582,49122.94746439429,10,5,10,10_1,10_2,10_0_1 -6054,2,54.0,0.0,2,111,470.0,,,0,85,0.0,62.110350289167464,,662.0,227.0831645531053,,71,2,2,2,2,1,2,2,2,0,,1,,2,132446,1,2,0,0,2,,185.0,,31,0.0,2.0,4.0,2.0,1.5,1,1,108.27804147317482,470.0,8570.024973567175,0,6,0,1,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07724598260119772,5713.349982378117,1,1,1_0,1_1_0,1_2_0,1_0_1 -6055,1,46.0,400.0,5,111,720.0,,,56,63,0.0,0.0,,852.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,3,103056,1,1,0,0,2,,240.0,520.0,43,2.0,0.0,3.0,4.0,2.1,1,1,129.3428032390622,720.0,15488.883291301874,4,4,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055007193480401485,7375.658710143749,1,1,1_1,1_1_1,1_2_1,1_0_0 -6056,0,26.0,0.0,9,111,600.0,,,47,46,0.0,0.0,,644.0,75.69438818436844,,20,2,2,1,1,2,2,2,2,2,45.0,1,2005.0,6,120124,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,133.10191379549013,600.0,60845.55529585702,1,1,5,0,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.010584174914151043,33803.08627547612,9,5,9,9_1,9_2,9_0_0 -6057,2,51.0,0.0,9,111,950.0,,,69,11,0.0,62.110350289167464,,1230.0,378.4719409218422,,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,121985,2,1,0,0,1,,350.0,,43,3.0,0.0,7.0,4.0,2.5,1,1,212.6028393368758,950.0,77669.18884010488,1,1,1,2,185.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01583639559481125,31067.675536041952,8,4,8,8_1,8_2,8_0_0 -6058,2,29.0,0.0,5,111,550.0,,,55,63,0.0,0.0,,770.0,378.4719409218422,,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,117822,2,1,0,0,2,,820.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,3,115.59367598771668,550.0,22195.961551079738,1,1,0,1,86.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03469099539697765,8536.908288876823,1,1,1_0,1_1_0,1_2_0,1_0_0 -6059,2,28.0,0.0,5,111,340.0,,,0,53,0.0,124.22070057833493,,680.0,378.4719409218422,,70,0,0,0,0,0,0,0,0,1,5.0,1,,3,115710,2,2,0,0,2,,700.0,,22,3.0,1.0,4.0,4.0,2.5,1,1,125.70710051382812,340.0,21756.348342692374,0,1,0,1,82.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031255245103133385,8702.539337076949,1,1,1_0,1_1_0,1_2_0,1_0_0 -6060,2,54.0,0.0,7,111,650.0,,,78,52,0.0,103.51725048194578,,970.0,378.4719409218422,,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,101164,2,2,0,0,2,,900.0,,42,1.0,8.0,6.0,3.0,2.0,2,2,109.54464962567978,650.0,25537.794473399,7,1,0,1,86.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03798291982537426,12768.8972366995,2,1,2_0,2_1_0,2_2_0,2_0_0 -6061,2,49.0,0.0,6,111,920.0,,,56,47,0.0,0.0,,1140.0,378.4719409218422,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,102253,2,1,0,0,1,,680.0,,43,2.0,1.0,5.0,5.0,2.5999999999999996,1,1,124.95234301895631,920.0,38914.861919838186,1,1,0,1,119.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02929472041679906,14967.254584553151,3,2,3_0,3_1_0,3_2_0,3_0_0 -6062,1,34.0,631.0,2,111,0.0,,,85,85,0.0,0.0,,1001.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,2,110044,2,1,0,0,2,,378.0,950.0,41,0.0,0.0,5.0,9.0,3.7999999999999985,2,2,147.98265579318223,0.0,27683.060270469417,6,6,2,3,99.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03615929706542615,7285.01586064985,1,1,1_1,1_1_1,1_2_1,1_0_1 -6063,2,40.0,0.0,5,111,0.0,,,55,47,0.0,0.0,,110.0,189.2359704609211,,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,106522,2,1,0,0,1,,0.0,600.0,43,2.0,1.0,3.0,2.0,1.5,2,2,156.2778794803794,0.0,45869.5881280795,1,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002398103067610988,30579.725418719667,8,4,8,8_1,8_2,8_0_0 -6064,1,21.0,357.0,5,111,0.0,,,64,85,0.0,0.0,,327.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,3,120762,2,1,0,0,2,,195.0,538.0,42,1.0,0.0,2.0,3.0,1.8,2,2,152.78238203729018,0.0,12710.204859634436,4,6,2,3,47.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025727358733492908,7061.224922019131,1,1,1_1,1_0_1,1_2_1,1_0_0 -6065,1,45.0,330.0,5,111,540.0,,,0,56,0.0,0.0,,672.0,227.0831645531053,,42,0,0,0,0,0,0,0,0,0,,2,,3,131333,2,1,0,0,2,,280.0,575.0,32,1.0,1.0,4.0,2.0,1.5,3,3,135.2852747323889,540.0,9468.968807325455,0,4,2,3,79.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07096865706011433,6312.645871550303,1,1,1_1,1_0_1,1_2_1,1_0_0 -6066,1,47.0,597.0,9,111,650.0,,,12,85,0.0,0.0,,870.0,378.4719409218422,,20,0,0,0,0,0,0,0,0,0,,2,2006.0,6,118213,2,1,0,0,1,,350.0,680.0,42,1.0,0.0,5.0,7.0,3.8,2,2,134.56286145709552,650.0,24130.964587481463,4,6,2,3,99.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036053262473035745,6350.2538388109115,1,1,1_1,1_0_1,1_2_1,1_0_0 -6067,1,35.0,422.0,9,111,600.0,,,63,85,0.0,0.0,,820.0,378.4719409218422,,41,0,0,0,0,0,0,0,0,0,,2,2007.0,6,132618,2,1,0,0,1,,370.0,495.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,145.3376286556428,600.0,22624.24448505041,4,6,2,3,89.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036244304226019014,8701.63249425016,1,1,1_1,1_0_1,1_2_1,1_0_0 -6068,1,59.0,254.0,9,111,420.0,,,71,90,0.0,0.0,,530.0,189.2359704609211,,10,0,0,0,0,0,0,0,0,0,,2,2007.0,6,129953,2,2,0,0,1,,270.0,320.0,41,0.0,4.0,2.0,2.0,1.5,1,1,128.4848544872949,420.0,9400.577983059286,7,7,2,3,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.056379512084800444,6267.05198870619,1,1,1_1,1_0_1,1_2_1,1_0_0 -6069,1,56.0,210.0,9,111,225.0,,,0,78,0.0,0.0,,313.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,2,2006.0,6,108372,2,1,0,0,1,,160.0,295.0,11,0.0,7.0,2.0,1.0,1.0,3,2,171.52255259671256,225.0,7150.734720172157,0,7,2,3,48.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043771725878325465,7150.734720172157,1,1,1_1,1_0_1,1_2_1,1_0_0 -6070,1,32.0,410.0,9,111,430.0,,,67,43,0.0,0.0,,540.0,189.2359704609211,,10,0,0,0,0,0,0,0,0,0,,2,2006.0,6,119748,2,2,0,0,1,,360.0,495.0,43,2.0,0.0,4.0,4.0,2.1,1,1,171.52255259671256,430.0,13741.246395887341,4,4,2,3,89.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.039297745229400605,6543.450664708257,1,1,1_1,1_0_1,1_2_1,1_0_0 -6071,2,62.0,0.0,7,111,450.0,,,0,52,0.0,0.0,,516.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,131132,2,1,0,0,2,,380.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,150.14661326352274,450.0,24162.278035865373,0,1,0,1,59.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021355602283612222,24162.278035865373,6,3,6,6_1,6_2,6_0_0 -6072,1,41.0,300.0,6,112,350.0,,,0,52,0.0,0.0,,392.0,72.25373417598806,,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,123888,2,1,0,0,2,,200.0,500.0,32,1.0,0.0,3.0,2.0,1.3,1,1,145.96129118959215,350.0,13916.591425418836,0,1,2,3,76.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028167816961559056,10705.070327245257,2,1,2_1,2_1_1,2_1_1,2_0_0 -6073,2,40.0,0.0,7,112,0.0,,,85,47,0.0,0.0,,358.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,113796,2,3,0,0,1,,210.0,650.0,42,1.0,0.0,3.0,4.0,2.1,1,1,139.6594614187944,0.0,28176.999861728287,6,1,2,3,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01270539808201005,13417.618981775375,3,2,3_0,3_1_0,3_1_0,3_0_0 -6074,2,52.0,0.0,9,112,700.0,,,0,42,0.0,0.0,,703.0,5.160981012570575,,20,0,0,0,0,0,0,0,0,2,45.0,1,2004.0,6,115850,2,1,0,0,1,,720.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,115.84088547277196,700.0,40496.686033055055,0,1,0,1,92.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017359445151294173,40496.686033055055,9,5,9,9_1,9_1,9_0_0 -6075,2,57.0,0.0,6,112,480.0,,,77,85,0.0,0.0,,732.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,4,106051,2,1,0,0,1,,516.0,,41,3.0,4.0,3.0,5.0,3.0,1,1,129.14677894131782,480.0,18442.0,6,6,0,1,52.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039692007374471316,6147.333333333333,1,1,1_0,1_1_0,1_1_0,1_0_0 -6076,2,36.0,0.0,5,112,300.0,,,0,63,0.0,0.0,,476.0,302.77755273747374,,12,0,0,0,0,0,0,0,0,0,,1,,3,121054,2,1,0,0,2,,200.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,115.84088547277196,300.0,9298.634223511488,0,4,0,1,90.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051190313389942746,9298.634223511488,1,1,1_0,1_1_0,1_1_0,1_0_0 -6077,2,35.0,0.0,2,112,400.0,,,0,85,0.0,0.0,,620.0,378.4719409218422,,10,2,2,2,2,1,2,2,1,0,,1,,2,106801,2,3,0,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,125.11844140608954,400.0,14783.654669718346,0,6,0,1,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0419382090458294,14783.654669718346,3,2,3_0,3_1_0,3_1_0,3_0_1 -6078,2,59.0,0.0,5,112,160.0,,,0,56,0.0,0.0,,337.0,304.49787974166395,,20,2,2,2,2,1,2,2,2,0,,1,,3,119613,1,2,0,0,2,,180.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,112.92782905855921,160.0,7768.5446701562505,0,4,0,1,96.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04338006850814978,7768.5446701562505,1,1,1_0,1_1_0,1_1_0,1_0_0 -6079,1,43.0,375.0,2,112,550.0,,,0,63,0.0,0.0,,638.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,2,105069,2,1,0,0,2,,240.0,350.0,32,1.0,4.0,5.0,3.0,1.6,3,2,123.72554956866654,550.0,14953.482968969314,0,4,2,3,110.0,7,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04266564527635095,9345.926855605821,1,1,1_1,1_1_1,1_1_1,1_0_1 -6080,0,34.0,0.0,6,112,0.0,,,0,47,0.0,0.0,,961.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,133583,1,1,0,0,2,,189.0,,12,1.0,1.0,6.0,1.0,1.0,2,2,128.26298173639134,0.0,30104.179292371962,0,1,5,0,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03192247796117484,30104.179292371962,8,4,8,8_1,8_1,8_0_0 -6081,2,44.0,0.0,6,120,370.0,,,0,62,0.0,0.0,,496.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,,4,121274,1,3,0,0,2,,180.0,,12,1.0,2.0,2.0,1.0,1.0,4,2,131.69408980548226,370.0,1450.6632493632314,0,4,0,1,36.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.34191257014177423,1450.6632493632314,1,1,1_0,1_1_0,1_2_0,1_0_0 -6082,2,73.0,0.0,7,120,240.0,,,86,72,0.0,0.0,,303.0,108.38060126398207,,10,0,0,0,0,0,0,0,0,0,,2,,5,131695,2,2,0,0,1,,97.0,600.0,41,0.0,2.0,2.0,2.0,1.5,3,2,165.39550573717352,240.0,30399.923301489413,6,5,2,3,60.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009967130410001884,20266.615534326276,5,3,5,5_0,5_2,5_0_0 -6083,2,59.0,0.0,6,120,420.0,,,68,67,0.0,0.0,,672.0,433.5224050559283,,44,0,0,0,0,0,0,0,0,3,15.0,1,,4,103451,1,1,0,0,2,,390.0,,43,2.0,1.0,3.0,2.0,1.5,1,1,143.99660214247191,420.0,31153.648097216974,1,1,0,1,44.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02157050750213845,20769.09873147798,5,3,5,5_1,5_2,5_0_0 -6084,2,45.0,0.0,9,120,400.0,,,0,55,0.0,0.0,,526.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,121973,1,1,0,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,110.90020902482303,400.0,18073.37509295347,0,1,1,2,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029103584543269913,18073.37509295347,4,2,4_0,4_1_0,4_2_0,4_0_0 -6085,2,50.0,0.0,6,120,150.0,,,0,63,0.0,0.0,,276.0,216.76120252796414,,41,2,2,2,2,1,2,2,2,2,20.0,1,,4,128251,2,1,0,0,2,,120.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,119.49959452885719,150.0,12587.210628972614,0,1,0,1,28.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.021927018474189743,12587.210628972614,2,1,2_0,2_1_0,2_2_0,2_0_0 -6086,2,26.0,0.0,9,120,800.0,,,52,85,0.0,0.0,,926.0,216.76120252796414,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,109682,2,3,0,0,1,,122.0,,42,1.0,0.0,6.0,4.0,2.1,1,1,115.98107787498805,800.0,12247.082278481013,4,6,0,1,96.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07560984558967544,5831.943942133816,1,1,1_0,1_1_0,1_2_0,1_0_0 -6087,2,56.0,0.0,6,120,350.0,,,77,63,0.0,0.0,,602.0,433.5224050559283,,41,2,2,2,2,1,2,2,2,0,,1,,4,106547,1,1,0,0,1,,300.0,,42,1.0,1.0,6.0,2.0,1.5,1,0,112.57587109565615,350.0,5551.679900744417,6,4,0,1,90.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.10843564664441094,3701.1199338296115,1,1,1_0,1_1_0,1_2_0,1_0_0 -6088,2,52.0,0.0,6,120,700.0,,,0,68,0.0,0.0,,1276.0,990.9083544135505,,50,0,0,0,0,0,0,0,0,0,,1,,4,110048,2,2,0,0,2,,500.0,,22,2.0,0.0,3.0,3.0,2.0,1,1,110.06868935468755,700.0,19782.0322536291,0,1,0,1,82.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06450297844226355,9891.01612681455,2,1,2_0,2_1_0,2_2_0,2_0_0 -6089,2,67.0,0.0,6,120,600.0,,,74,75,0.0,0.0,,642.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,0,,1,,4,125667,2,3,0,0,2,,447.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,138.29958241486528,600.0,52243.3219745468,5,5,0,1,155.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012288651941252615,34828.88131636453,9,5,9,9_1,9_2,9_0_0 -6090,2,51.0,0.0,6,120,336.0,,,85,63,0.0,0.0,,588.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,4,124399,2,1,0,0,1,,312.0,,42,3.0,1.0,5.0,5.0,3.0,1,1,135.46156238337718,336.0,33827.89917245696,6,1,0,1,78.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01738210218146671,11275.966390818985,2,1,2_0,2_1_0,2_2_0,2_0_0 -6091,2,59.0,0.0,6,120,480.0,,,63,55,0.0,0.0,,564.0,144.50746835197612,,70,0,0,0,0,0,0,0,0,2,30.0,1,,4,100755,2,1,0,0,2,,228.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,133.85124903793385,480.0,46681.76747562818,1,1,0,1,115.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012081804749455033,23340.88373781409,6,3,6,6_1,6_2,6_0_0 -6092,2,36.0,0.0,9,120,320.0,,,62,55,0.0,0.0,,572.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,124804,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,136.23544823239143,320.0,34545.229868429844,1,1,0,1,130.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01655800242692085,16450.109461157066,4,2,4_0,4_1_0,4_2_0,4_0_0 -6093,2,32.0,0.0,5,120,360.0,,,47,34,0.0,0.0,,381.0,36.12686708799403,,41,2,2,2,2,1,2,2,2,2,60.0,1,,3,124830,2,3,0,0,2,,216.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,133.68941683617973,360.0,72380.28587107215,1,1,1,2,108.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.005263864261031778,48253.5239140481,10,5,10,10_1,10_2,10_0_0 -6094,1,18.0,90.0,8,120,480.0,,,0,68,0.0,51.75862524097289,,782.0,433.5224050559283,,42,2,2,2,2,1,2,2,2,0,,1,2003.0,6,131593,2,1,0,0,1,,360.0,,22,3.0,0.0,6.0,5.0,2.8,1,1,144.7743511869592,480.0,16213.231084209548,0,4,1,2,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.04823221207040023,5790.439672931982,1,1,1_1,1_1_1,1_2_1,1_0_0 -6095,1,42.0,203.0,9,120,384.0,,,54,42,0.0,0.0,,636.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,114514,2,1,0,0,1,,300.0,,43,4.0,0.0,5.0,5.0,2.8,1,1,138.14023586357615,384.0,68392.50933903958,1,1,1,2,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.009299264000494287,24425.896192514138,7,4,7,7_1,7_2,7_0_0 -6096,2,42.0,0.0,9,120,0.0,,,85,37,0.0,0.0,,783.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,114780,2,1,0,0,1,,310.0,1500.0,42,1.0,1.0,4.0,3.0,1.8,2,2,223.8351403559041,0.0,84353.32998120287,6,1,2,3,147.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009282383993311018,46862.96110066826,10,5,10,10_1,10_2,10_0_0 -6097,2,59.0,0.0,9,120,600.0,,,75,45,0.0,0.0,,726.0,216.76120252796414,,10,0,0,0,0,0,0,0,0,0,,1,2004.0,6,119357,2,2,0,0,1,,480.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,144.28050449935515,600.0,88554.94913153695,5,1,1,2,88.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008198299554343605,59036.63275435797,10,5,10,10_1,10_2,10_0_0 -6098,2,62.0,0.0,9,120,700.0,,,38,45,0.0,0.0,,784.0,144.50746835197612,,33,0,0,0,0,0,0,0,0,0,,1,2011.0,6,103394,2,1,0,0,2,,500.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,240.018413185795,700.0,47730.25607664018,4,1,1,2,150.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016425639928290683,31820.17071776012,8,4,8,8_1,8_2,8_0_0 -6099,2,50.0,0.0,7,120,246.0,,,85,52,0.0,0.0,,330.0,144.50746835197612,,31,0,0,0,0,0,0,0,0,0,,1,,5,100059,2,1,0,0,2,,498.0,,42,1.0,0.0,3.0,4.0,2.1,3,2,136.23544823239143,246.0,13254.095024477865,6,4,0,1,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024897965450719265,6311.473821179936,1,1,1_0,1_1_0,1_2_0,1_0_0 -6100,2,64.0,0.0,8,120,360.0,,,0,74,0.0,0.0,,400.0,68.81308016760767,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,113837,2,1,0,0,2,,0.0,1189.0,11,0.0,2.0,5.0,1.0,1.0,2,2,174.5056895771935,360.0,35847.887969068,0,5,2,3,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011158258482205348,35847.887969068,9,5,9,9_0,9_2,9_0_0 -6101,2,57.0,0.0,7,120,700.0,,,33,42,0.0,0.0,,784.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,102526,2,1,0,0,2,,300.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,114.01407135836193,700.0,106322.0,1,1,1,2,130.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007373826677451515,53161.0,10,5,10,10_1,10_2,10_0_0 -6102,2,45.0,0.0,7,120,420.0,,,85,42,0.0,0.0,,546.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,0,,1,,5,123696,2,1,0,0,2,,200.0,,42,1.0,1.0,5.0,3.0,1.8,2,2,108.95492737270453,420.0,24086.438629687662,5,1,0,1,90.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02266835742694769,13381.354794270923,3,2,3_0,3_1_0,3_2_0,3_0_0 -6103,0,86.0,0.0,6,120,480.0,,,0,71,0.0,0.0,,564.0,144.50746835197612,,70,0,0,0,0,0,0,0,0,0,,1,,4,111860,2,1,0,0,1,,240.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,114.63683978393415,480.0,51783.651637829316,0,5,0,1,73.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010891468294753922,51783.651637829316,10,5,10,10_1,10_2,10_0_0 -6105,1,30.0,44.0,6,120,700.0,,,54,63,0.0,0.0,,784.0,144.50746835197612,,60,0,0,0,0,0,0,0,0,2,10.0,2,,4,100866,2,1,0,0,1,,600.0,468.0,43,2.0,0.0,4.0,4.0,2.1,3,2,127.54609179388825,700.0,45623.58301462974,1,1,2,3,84.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017184095333954836,21725.515721252254,6,3,6,6_0,6_2,6_0_0 -6106,1,45.0,448.0,7,120,360.0,,,0,67,0.0,0.0,,402.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,0,,2,,5,118207,2,1,0,0,2,,534.0,442.0,32,1.0,3.0,4.0,4.0,2.3,1,1,135.08200153546053,360.0,25461.56443845443,0,4,2,3,86.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015788503529377093,11070.245408023666,2,1,2_1,2_0_1,2_2_1,2_0_0 -6107,2,40.0,0.0,7,120,240.0,,,52,52,0.0,0.0,,492.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,5,115882,2,1,0,0,2,,792.0,,43,2.0,2.0,6.0,3.0,1.8,2,2,126.83935436188733,240.0,23529.69764506023,4,4,0,1,96.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020909745948362805,13072.054247255683,2,1,2_0,2_1_0,2_2_0,2_0_0 -6108,2,58.0,0.0,7,120,0.0,,,81,42,0.0,0.0,,554.0,0.0,,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,108664,2,1,0,0,2,,563.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,102.81334186161801,0.0,55807.367429933576,4,1,0,1,45.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009927004722011834,37204.91161995572,9,5,9,9_1,9_2,9_0_0 -6109,2,36.0,0.0,6,120,300.0,,,0,62,0.0,0.0,,384.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,4,105665,1,1,0,0,2,,154.0,,22,1.0,3.0,5.0,2.0,1.5,2,2,116.84529347026366,300.0,28970.02649273607,0,1,0,1,117.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01325507935231899,19313.35099515738,5,3,5,5_1,5_2,5_0_0 -6110,2,36.0,0.0,7,120,720.0,,,56,63,0.0,0.0,,976.0,440.4037130726891,,12,0,0,0,0,0,0,0,0,1,2.0,1,,5,106739,2,1,0,0,2,,600.0,,43,3.0,0.0,5.0,5.0,2.5999999999999996,2,2,110.45722232473346,720.0,51961.65787056668,1,1,0,1,148.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018783080448109574,19985.253027141036,5,3,5,5_1,5_2,5_0_0 -6112,1,32.0,205.0,8,120,0.0,,,85,67,0.0,0.0,,314.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119547,2,2,0,0,2,,115.0,600.0,42,1.0,0.0,4.0,3.0,1.8,2,2,119.75106222161709,0.0,21804.23052824479,6,1,2,3,85.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01440087507757957,12113.461404580437,2,1,2_1,2_1_1,2_2_1,2_0_0 -6113,2,55.0,0.0,8,120,800.0,,,0,62,0.0,0.0,,1052.0,433.5224050559283,,60,2,2,2,2,1,2,2,2,0,,1,1999.0,6,101055,1,3,0,0,2,,460.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,110.54880206746357,800.0,7524.173838209983,0,4,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.13981601470418353,7524.173838209983,1,1,1_0,1_1_0,1_2_0,1_0_0 -6114,2,33.0,0.0,7,120,0.0,,,0,31,0.0,0.0,,540.0,0.0,,42,0,0,0,0,0,0,0,0,2,2.0,1,,5,101218,2,1,0,0,2,,169.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,117.28678310103706,0.0,88258.12059892724,0,1,1,2,163.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006118417164738081,88258.12059892724,10,5,10,10_1,10_2,10_0_0 -6115,2,59.0,0.0,8,120,400.0,,,55,22,0.0,0.0,,484.0,144.50746835197612,,33,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,130621,2,1,0,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,118.42999213688624,400.0,56803.42119454061,1,1,1,2,145.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008520613544427097,37868.94746302708,9,5,9,9_1,9_2,9_0_0 -6116,2,55.0,0.0,2,120,400.0,,,43,52,0.0,113.86897553014036,,636.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,,2,120153,2,1,0,0,1,,300.0,,43,2.0,1.0,5.0,4.0,2.5,1,1,111.19434638494353,400.0,74286.3165896039,1,1,0,1,76.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00856146904568702,29714.52663584156,8,4,8,8_1,8_2,8_0_1 -6117,2,47.0,0.0,9,120,250.0,,,85,53,0.0,41.40690019277831,,374.0,144.50746835197612,,43,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,116821,2,1,0,0,1,,240.0,,42,1.0,0.0,6.0,4.0,2.5,4,3,113.21278155770004,250.0,50051.276831656505,6,1,0,1,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007472336844830538,20020.510732662602,5,3,5,5_1,5_2,5_0_0 -6118,1,84.0,172.0,9,120,320.0,,,0,86,0.0,0.0,,320.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,118684,2,1,0,0,1,,320.0,555.0,11,0.0,5.0,2.0,1.0,1.0,3,3,180.14237253126225,320.0,15091.0,0,5,2,3,65.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021204691538002782,15091.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -6119,2,61.0,0.0,6,120,400.0,,,77,54,0.0,0.0,,652.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,4,131211,2,2,0,0,1,,456.0,,42,2.0,0.0,4.0,4.0,2.5,1,1,118.686559497391,400.0,93458.68234387119,6,1,0,1,112.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006976344879345035,37383.472937548475,9,5,9,9_1,9_2,9_0_0 -6120,2,48.0,0.0,9,120,1000.0,,,42,43,0.0,0.0,,1000.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,123905,2,2,0,0,1,,100.0,,43,2.0,0.0,5.0,4.0,2.3,4,3,146.117611309136,1000.0,90470.52864890403,1,1,1,2,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011053323274817783,39335.01245604523,9,5,9,9_1,9_2,9_0_0 -6121,2,45.0,0.0,9,120,934.0,,,31,31,0.0,0.0,,934.0,0.0,,33,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,124256,2,1,0,0,2,,181.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,146.117611309136,934.0,174266.2472242935,1,1,1,2,140.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005359615042366025,82983.92724966357,10,5,10,10_1,10_2,10_0_0 -6122,2,52.0,0.0,9,120,400.0,,,43,34,0.0,0.0,,442.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,2,2.0,1,2007.0,6,120846,2,1,0,0,1,,180.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,1,1,144.2751258192257,400.0,83721.06949582041,1,1,1,2,65.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0052794356625134355,32200.411344546315,8,4,8,8_1,8_2,8_0_0 -6123,2,27.0,0.0,7,120,0.0,,,65,22,0.0,0.0,,619.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,114096,2,1,0,0,2,,297.0,980.0,43,2.0,0.0,4.0,2.0,1.5,2,2,168.96149606524688,0.0,14626.008350730688,1,1,2,3,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04232186835645256,9750.672233820458,2,1,2_0,2_0_0,2_2_0,2_0_0 -6124,2,56.0,0.0,7,120,625.0,,,0,37,0.0,72.46207533736204,,737.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,111921,2,1,0,0,2,,156.0,,12,1.0,3.0,9.0,1.0,1.0,1,1,136.241029703621,625.0,63649.08205258908,0,1,1,2,90.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011579114360063592,63649.08205258908,10,5,10,10_1,10_2,10_0_0 -6126,2,79.0,0.0,5,120,200.0,,,77,75,0.0,0.0,,452.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,3,104986,2,1,0,0,1,,400.0,,41,0.0,4.0,3.0,2.0,1.5,3,3,145.36588866155816,200.0,57174.0,5,5,0,1,75.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007905691398187987,38116.0,9,5,9,9_1,9_2,9_0_0 -6128,1,30.0,413.0,8,120,270.0,,,0,55,0.0,0.0,,312.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,0,,2,2001.0,6,106049,2,1,0,0,2,,300.0,580.0,32,1.0,0.0,5.0,3.0,1.6,1,1,160.12285463560724,270.0,9397.8368386965,0,4,2,3,95.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03319912926295016,5873.648024185311,1,1,1_1,1_0_1,1_2_1,1_0_0 -6129,2,30.0,0.0,7,120,492.0,,,0,68,0.0,0.0,,748.0,440.4037130726891,,71,0,0,0,0,0,0,0,0,0,,1,,5,107272,2,3,0,0,2,,460.0,,22,2.0,1.0,3.0,3.0,1.8,4,3,141.80592566732275,492.0,22347.978571761007,0,1,0,1,36.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033470588742427726,12415.543650978336,2,1,2_0,2_1_0,2_2_0,2_0_0 -6130,1,33.0,380.0,8,120,500.0,,,0,21,0.0,0.0,,584.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,2,5.0,1,1999.0,6,105824,2,1,0,0,1,,350.0,390.0,32,2.0,0.0,3.0,3.0,1.8,2,2,176.48900171261553,500.0,27218.830590676298,0,1,2,3,72.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021455734406166844,15121.57255037572,3,2,3_1,3_1_1,3_2_1,3_0_0 -6131,2,71.0,0.0,2,120,700.0,,,0,77,0.0,103.51725048194578,,1056.0,440.4037130726891,,20,0,0,0,0,0,0,0,0,0,,1,,2,102020,2,2,0,0,1,,1000.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,131.6994852204267,700.0,9411.361100823058,0,5,0,1,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1122048116831527,9411.361100823058,1,1,1_0,1_1_0,1_2_0,1_0_1 -6132,2,42.0,0.0,2,120,400.0,,,85,52,0.0,0.0,,652.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,2,126446,1,2,0,0,2,,480.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,157.19174426696068,400.0,16218.882220989715,6,4,0,1,73.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04020005763135836,7723.27724809034,1,1,1_0,1_1_0,1_2_0,1_0_1 -6133,2,89.0,0.0,5,120,500.0,,,71,71,0.0,0.0,,585.0,146.2277953561663,,42,0,0,0,0,0,0,0,0,0,,1,,3,123656,2,1,0,0,1,,400.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,138.75956714399857,500.0,19194.699259885972,5,5,0,1,144.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030477164142006737,12796.466173257315,2,1,2_0,2_1_0,2_2_0,2_0_0 -6134,2,51.0,0.0,6,120,440.0,,,90,63,0.0,124.22070057833493,,812.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,4,122400,1,2,0,0,2,,426.0,,43,3.0,3.0,5.0,3.0,2.0,2,2,123.74151864690086,440.0,45461.95501710558,4,1,0,1,56.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01786108845724905,22730.97750855279,6,3,6,6_1,6_2,6_0_0 -6135,0,79.0,0.0,2,120,300.0,,,0,86,0.0,0.0,,510.0,361.26867087994026,,71,0,0,0,0,0,0,0,0,0,,1,,2,112205,2,1,0,0,2,,174.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,126.98098632198418,300.0,22461.515814644084,0,5,5,0,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02270550234492628,22461.515814644084,6,3,6,6_1,6_2,6_0_1 -6136,2,27.0,0.0,9,120,0.0,,,56,46,0.0,0.0,,4385.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,2008.0,6,128304,2,1,0,0,1,,230.0,750.0,43,2.0,0.0,3.0,2.0,1.5,2,2,125.98255804856807,0.0,39363.02771426693,4,4,3,4,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11139895111296734,26242.018476177953,7,4,7,7_0,7_2,7_0_0 -6137,2,43.0,0.0,9,120,230.0,,,42,33,0.0,0.0,,314.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,106306,2,2,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,105.93943696522855,230.0,111239.08015098993,1,1,1,2,122.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002822748979709229,48364.81745695215,10,5,10,10_1,10_2,10_0_0 -6138,2,41.0,0.0,9,120,511.0,,,42,38,0.0,0.0,,511.0,0.0,,10,0,0,0,0,0,0,0,0,2,22.0,1,2008.0,6,104886,2,2,0,0,1,,220.0,1600.0,43,2.0,0.0,6.0,5.0,2.4,2,2,121.09920961455839,511.0,87226.29244742004,1,1,2,3,130.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005858325347349029,36344.28851975835,9,5,9,9_1,9_2,9_0_0 -6140,1,25.0,390.0,7,120,180.0,,,55,81,0.0,0.0,,432.0,433.5224050559283,,43,0,0,0,0,0,0,0,0,0,,2,,5,108903,1,3,0,0,2,,528.0,372.0,43,2.0,0.0,3.0,5.0,2.4,2,2,134.440294084995,180.0,14238.1387283237,4,4,2,3,71.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030341044447096822,5932.5578034682085,1,1,1_1,1_0_1,1_2_1,1_0_0 -6141,0,29.0,0.0,8,120,284.0,,,0,53,0.0,0.0,,347.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,122376,2,1,0,0,2,,215.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,118.57794776616512,284.0,6036.840425531915,0,4,5,0,64.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05748039960314594,6036.840425531915,1,1,1_0,1_1_0,1_2_0,1_0_0 -6142,1,41.0,247.0,6,120,320.0,,,0,64,0.0,0.0,,383.0,108.38060126398207,,43,2,2,1,2,1,2,2,2,0,,1,,4,126909,2,1,0,0,2,,150.0,330.0,12,1.0,0.0,4.0,1.0,1.0,1,1,127.1022499109794,320.0,5344.567670559723,0,4,2,3,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.07166154937278385,5344.567670559723,1,1,1_1,1_1_1,1_2_1,1_0_0 -6143,2,51.0,0.0,5,120,429.0,,,0,90,0.0,0.0,,681.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,3,107779,2,1,0,0,1,,480.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,130.34581146328833,429.0,7558.775805447241,0,4,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0900939540380648,7558.775805447241,1,1,1_0,1_1_0,1_2_0,1_0_0 -6144,2,58.0,0.0,8,120,300.0,,,54,53,0.0,124.22070057833493,,546.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,2,75.0,1,2002.0,6,121389,2,1,0,0,1,,540.0,,43,2.0,2.0,5.0,4.0,2.3,1,1,111.19434638494353,300.0,32811.93410633897,1,1,0,1,92.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016640286983098558,14266.058307103902,3,2,3_0,3_1_0,3_2_0,3_0_0 -6145,2,87.0,0.0,2,120,344.0,,,0,86,0.0,0.0,,596.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,,2,120886,2,1,0,0,1,,421.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,115.54450316559712,344.0,8798.080691691646,0,5,0,1,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06774204748574594,8798.080691691646,1,1,1_0,1_1_0,1_2_0,1_0_1 -6146,2,43.0,0.0,1,120,150.0,,,0,63,0.0,0.0,,213.0,108.38060126398207,,71,2,2,2,2,1,2,2,2,0,,1,,1,100748,1,3,0,0,2,,0.0,200.0,12,1.0,4.0,5.0,1.0,1.0,4,4,138.5569972160523,150.0,4788.08220747436,0,4,2,3,43.0,0,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04448545174673478,4788.08220747436,1,1,1_0,1_1_0,1_2_0,1_1_0 -6147,2,62.0,0.0,2,120,700.0,,,78,77,0.0,0.0,,952.0,433.5224050559283,,50,2,2,2,2,1,2,2,2,0,,1,,2,106078,2,3,0,0,2,,1000.0,,41,0.0,4.0,4.0,2.0,1.5,3,2,134.06313284439938,700.0,4821.957785001672,5,5,0,1,54.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.19743018135934798,3214.638523334448,1,1,1_0,1_1_0,1_2_0,1_0_1 -6148,2,55.0,0.0,6,120,600.0,,,56,64,0.0,0.0,,726.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,4,132410,2,1,0,0,1,,400.0,,43,4.0,2.0,5.0,5.0,2.8,1,1,116.84529347026366,600.0,59892.84047634784,1,1,0,1,110.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0121216491691808,21390.30017012423,6,3,6,6_1,6_2,6_0_0 -6149,2,33.0,0.0,7,120,300.0,,,85,67,0.0,103.51725048194578,,904.0,867.0448101118566,,70,0,0,0,0,0,0,0,0,0,,1,,5,103919,2,1,0,0,1,,192.0,,42,1.0,0.0,5.0,3.0,1.8,3,3,110.90020902482303,300.0,14616.070981210854,6,4,0,1,96.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06184972699996487,8120.03943400603,1,1,1_0,1_1_0,1_2_0,1_0_0 -6150,0,33.0,0.0,2,120,456.0,,,0,52,0.0,124.22070057833493,,1080.0,867.0448101118566,,50,0,0,0,0,0,0,0,0,0,,1,,2,133123,2,1,0,0,2,,312.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,115.90835904390366,456.0,13445.063399799454,0,4,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08032688042334625,8963.375599866302,1,1,1_0,1_1_0,1_2_0,1_0_1 -6151,2,54.0,0.0,8,120,624.0,,,85,64,0.0,0.0,,624.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,130242,2,1,0,0,1,,720.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,109.66111014622102,624.0,56979.694111798264,6,1,1,2,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01095126974138659,37986.46274119884,9,5,9,9_1,9_2,9_0_0 -6152,1,42.0,577.0,7,120,584.0,,,81,85,0.0,0.0,,668.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,,5,103914,2,1,0,0,2,,200.0,900.0,42,1.0,1.0,6.0,7.0,3.1999999999999993,4,4,132.09205099851076,584.0,11393.074679589165,4,6,2,3,84.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.058632109310819344,3560.3358373716146,1,1,1_1,1_1_1,1_2_1,1_0_0 -6153,2,34.0,0.0,7,112,1200.0,,,0,54,0.0,0.0,,1347.0,252.8880696159582,,50,0,0,0,0,0,0,0,0,0,,1,,5,101667,2,2,0,0,2,,1500.0,,22,3.0,5.0,5.0,4.0,2.5,4,3,132.24997613697744,1200.0,26679.57986298967,0,1,0,1,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05048805142050154,10671.831945195869,2,1,2_0,2_1_0,2_1_0,2_0_0 -6154,2,56.0,0.0,5,112,456.0,,,75,42,0.0,0.0,,540.0,144.50746835197612,,10,0,0,0,0,0,0,0,0,0,,1,,3,130909,1,2,0,0,2,,400.0,,42,1.0,3.0,7.0,2.0,1.5,1,1,134.53721994245188,456.0,108204.49707079669,5,1,0,1,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004990550435687397,72136.33138053112,10,5,10,10_1,10_1,10_0_0 -6155,2,74.0,0.0,7,112,0.0,,,0,75,0.0,0.0,,494.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,110115,1,2,0,0,2,,300.0,769.0,11,0.0,1.0,2.0,1.0,1.0,1,1,153.70525758140198,0.0,39898.8726935877,0,6,2,3,40.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01238130219351768,39898.8726935877,9,5,9,9_0,9_1,9_0_0 -6156,0,50.0,0.0,2,112,270.0,,,0,63,0.0,0.0,,417.0,252.8880696159582,,42,2,2,2,2,1,1,2,2,0,,1,,2,118248,1,3,0,0,2,,198.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,130.12954748580162,270.0,5241.0,0,4,5,0,40.0,7,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.0795649685174585,5241.0,1,1,1_0,1_1_0,1_1_0,1_0_1 -6158,1,36.0,120.0,7,112,0.0,,,42,63,0.0,0.0,,997.0,0.0,,44,0,0,0,0,0,0,0,0,2,35.0,1,,5,126261,1,2,0,0,2,,556.0,500.0,43,2.0,0.0,4.0,4.0,2.1,1,1,121.34160044597846,0.0,29703.04245119333,1,1,2,3,85.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033565585129477035,14144.30592913968,3,2,3_1,3_1_1,3_1_1,3_0_0 -6159,2,58.0,0.0,5,112,800.0,,,78,68,0.0,0.0,,1052.0,433.5224050559283,,41,2,2,2,2,1,2,2,2,0,,1,,3,129575,2,3,0,0,2,,796.0,,42,1.0,0.0,7.0,6.0,3.0999999999999996,1,1,137.79764312562412,800.0,38175.36739974705,5,1,0,1,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0275570366876671,12314.634645079694,2,1,2_0,2_1_0,2_1_0,2_0_0 -6160,2,81.0,0.0,5,112,825.0,,,86,77,0.0,0.0,,972.0,252.8880696159582,,50,0,0,0,0,0,0,0,0,0,,1,,3,112064,1,1,0,0,2,,650.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,113.0946872234106,825.0,24397.815650801323,6,5,0,1,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03983963211756113,16265.210433867549,4,2,4_0,4_1_0,4_1_0,4_0_0 -6161,2,41.0,0.0,7,112,542.0,,,63,56,0.0,103.51725048194578,,894.0,433.5224050559283,,60,0,0,0,0,0,0,0,0,2,45.0,1,,5,118487,2,1,0,0,2,,500.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,107.61268198692298,542.0,37324.04765158416,4,1,0,1,90.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023952386095564736,16227.846805036592,4,2,4_0,4_1_0,4_1_0,4_0_0 -6162,2,53.0,0.0,9,111,1370.0,,,78,52,0.0,0.0,,1664.0,505.7761392319164,,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,104140,2,2,0,0,1,,274.0,,42,2.0,0.0,5.0,7.0,3.3999999999999995,1,1,140.9235058552173,1370.0,35648.5464381474,5,4,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04667792003489261,10484.86659945512,2,1,2_0,2_1_0,2_2_0,2_0_0 -6163,1,41.0,394.0,7,111,336.0,,,0,52,0.0,0.0,,462.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,2,45.0,2,,5,104319,1,1,0,0,1,,390.0,388.0,32,1.0,0.0,3.0,3.0,1.8,1,1,145.4207304925513,336.0,22715.987795330308,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020338098618584953,12619.993219627948,2,1,2_1,2_0_1,2_2_1,2_0_0 -6164,1,46.0,300.0,2,111,200.0,,,63,52,0.0,0.0,,452.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,1,30.0,1,,2,128245,1,3,0,0,2,,500.0,255.0,43,2.0,0.0,3.0,4.0,2.5,2,2,172.0714311120307,200.0,17992.401607947224,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02512171581365503,7196.96064317889,1,1,1_1,1_1_1,1_2_1,1_0_1 -6165,2,62.0,0.0,5,111,557.0,,,68,69,0.0,0.0,,1061.0,867.0448101118566,,20,2,2,2,2,1,2,2,2,2,60.0,1,,3,122169,1,2,0,0,2,,292.0,,43,2.0,6.0,5.0,3.0,2.0,4,4,134.47529618068415,557.0,24582.0,1,1,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04316166300545114,12291.0,2,1,2_0,2_1_0,2_2_0,2_0_0 -6166,2,76.0,0.0,7,111,480.0,,,0,86,0.0,0.0,,606.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,5,108749,1,2,0,0,2,,240.0,,21,1.0,0.0,4.0,2.0,1.5,3,3,118.22733643922919,480.0,5481.052110779668,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11056271455769791,3654.0347405197786,1,1,1_0,1_1_0,1_2_0,1_0_0 -6167,2,71.0,0.0,2,111,400.0,,,86,71,0.0,0.0,,526.0,216.76120252796414,,60,0,0,0,0,0,0,0,0,0,,1,,2,114985,2,1,0,0,2,,200.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,134.93784313391907,400.0,12639.713466055167,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04161486741076922,8426.475644036778,1,1,1_0,1_1_0,1_2_0,1_0_1 -6168,2,27.0,0.0,5,111,480.0,,,0,81,0.0,124.22070057833493,,705.0,180.63433543997013,,71,0,0,0,0,0,0,0,0,0,,1,,3,127007,2,1,0,0,2,,180.0,,32,1.0,4.0,4.0,4.0,2.1,4,2,130.63446578750373,480.0,16999.59442599574,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04147157763492967,8095.044964759875,1,1,1_0,1_1_0,1_2_0,1_0_0 -6169,2,65.0,0.0,9,111,494.0,,,0,71,0.0,0.0,,620.0,216.76120252796414,,71,2,2,2,2,1,2,2,2,0,,1,2005.0,6,127228,1,1,0,0,2,,200.0,,11,0.0,1.0,1.0,1.0,1.0,3,3,142.4925924083059,494.0,16683.52295464844,0,5,0,1,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.037162414778064166,16683.52295464844,4,2,4_0,4_1_0,4_2_0,4_0_0 -6170,2,48.0,0.0,9,111,410.0,,,62,52,0.0,103.51725048194578,,636.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,108410,2,1,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,139.90200088536412,410.0,36337.0,4,1,1,2,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0175028208162479,12977.5,2,1,2_0,2_1_0,2_2_0,2_0_0 -6171,1,51.0,239.0,5,111,600.0,,,77,85,0.0,51.75862524097289,,797.0,252.8880696159582,,42,2,2,2,2,1,2,2,2,0,,1,,3,130013,1,2,0,0,2,,348.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,121.1427986228867,600.0,8789.938902227537,6,7,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.09067184753673602,4394.969451113769,1,1,1_1,1_1_1,1_2_1,1_0_0 -6172,0,32.0,0.0,9,111,300.0,,,85,63,0.0,0.0,,594.0,505.7761392319164,,33,2,2,2,2,1,2,2,2,0,,1,2006.0,6,133184,1,3,0,0,2,,180.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,133.05661104546553,300.0,11206.839442785302,6,4,5,0,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.05300334702148367,5336.590210850143,1,1,1_0,1_1_0,1_2_0,1_0_0 -6173,2,71.0,0.0,9,111,270.0,,,0,77,0.0,0.0,,270.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,103868,1,3,0,0,2,,120.0,700.0,11,0.0,2.0,3.0,1.0,1.0,1,1,121.14776175879558,270.0,19144.92699776397,0,5,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014102952705514867,19144.92699776397,5,3,5,5_1,5_2,5_0_0 -6174,1,46.0,369.0,9,111,380.0,,,85,69,0.0,248.44140115666985,,914.0,505.7761392319164,,33,0,0,0,0,0,0,0,0,1,5.0,1,2010.0,6,111104,1,2,0,0,2,,410.0,,42,2.0,2.0,4.0,5.0,2.8,2,2,193.00573008583893,380.0,33267.27871063277,6,1,1,2,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027474444421805702,11881.170968083132,2,1,2_1,2_1_1,2_2_1,2_0_0 -6175,1,60.0,155.0,9,111,480.0,,,78,69,0.0,0.0,,774.0,505.7761392319164,,70,0,0,0,0,0,0,0,0,0,,1,2012.0,6,130392,1,1,0,0,2,,300.0,,42,3.0,0.0,4.0,5.0,2.8,1,1,203.46818875828833,480.0,14017.34154004109,6,4,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05521731761968119,5006.193407157532,1,1,1_1,1_1_1,1_2_1,1_0_0 -6176,2,50.0,0.0,7,111,1090.0,,,34,34,0.0,0.0,,1174.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,107708,2,1,0,0,2,,951.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,150.69260664524,1090.0,108919.25768619162,1,1,0,1,146.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010778626525186422,54459.62884309581,10,5,10,10_1,10_2,10_0_0 -6177,2,38.0,0.0,2,111,708.0,,,0,52,0.0,103.51725048194578,,1060.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,2,123959,1,2,0,0,2,,450.0,,32,1.0,4.0,5.0,5.0,2.5999999999999996,1,1,123.93968804116739,708.0,30102.96582522076,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03521247727398058,11578.063778931062,2,1,2_0,2_1_0,2_2_0,2_0_1 -6178,2,59.0,0.0,8,111,1082.0,,,56,68,0.0,0.0,,1334.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,1,30.0,1,1999.0,6,105354,2,1,0,0,1,,780.0,,43,3.0,3.0,5.0,3.0,2.0,4,3,140.9235058552173,1082.0,32062.959289754275,1,1,0,1,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0416056418231576,16031.479644877138,4,2,4_0,4_1_0,4_2_0,4_0_0 -6179,2,37.0,0.0,7,111,800.0,,,0,42,0.0,0.0,,821.0,36.12686708799403,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,103766,2,1,0,0,1,,450.0,850.0,12,1.0,0.0,4.0,1.0,1.0,3,3,146.2766429612708,800.0,47832.80826859428,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017163951474265547,47832.80826859428,10,5,10,10_1,10_2,10_0_0 -6180,1,37.0,413.0,8,111,680.0,,,0,56,0.0,0.0,,932.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,133212,2,1,0,0,2,,685.0,700.0,32,1.0,0.0,3.0,3.0,1.6,1,1,153.56751230573752,680.0,14567.55323590814,0,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06397779949090394,9104.720772442588,1,1,1_1,1_0_1,1_2_1,1_0_0 -6181,2,43.0,0.0,8,111,500.0,,,0,45,0.0,0.0,,542.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,2,45.0,2,2001.0,6,133602,2,1,0,0,1,,300.0,850.0,32,1.0,0.0,3.0,4.0,1.9,1,1,153.56751230573752,500.0,67925.78063082538,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00797929732962149,35750.410858329145,9,5,9,9_0,9_2,9_0_0 -6182,1,22.0,28.0,6,111,0.0,,,0,46,0.0,0.0,,345.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,4,127533,2,1,0,0,2,,0.0,640.0,12,1.0,0.0,1.0,1.0,1.0,2,2,181.66628555321861,0.0,16673.27835013774,0,1,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02069179154543113,16673.27835013774,4,2,4_1,4_0_1,4_2_1,4_0_0 -6183,2,57.0,0.0,7,111,400.0,,,0,42,0.0,0.0,,400.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,113214,2,2,0,0,1,,200.0,,12,1.0,2.0,1.0,1.0,1.0,2,1,141.3353637544598,400.0,36908.41049739763,0,1,0,1,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010837638213333613,36908.41049739763,9,5,9,9_0,9_2,9_0_0 -6184,2,38.0,0.0,6,111,350.0,,,38,54,0.0,0.0,,392.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,2,25.0,2,,4,113668,1,2,0,0,2,,240.0,887.0,43,2.0,0.0,2.0,2.0,1.5,2,2,197.3142728541857,350.0,64148.07762652358,1,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006110861221473581,42765.38508434906,9,5,9,9_0,9_2,9_0_0 -6185,2,56.0,0.0,8,111,1000.0,,,72,22,0.0,0.0,,1252.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126784,2,2,0,0,1,,1300.0,,42,2.0,1.0,4.0,4.0,2.5,2,2,147.48783646762675,1000.0,3248.0410567491963,6,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.38546310780106485,1299.2164226996786,1,1,1_0,1_1_0,1_2_0,1_0_0 -6186,2,55.0,0.0,7,111,410.0,,,0,52,0.0,0.0,,662.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,1,30.0,1,,5,101413,2,2,0,0,2,,927.0,,32,2.0,2.0,4.0,4.0,2.3,2,2,129.99261177332258,410.0,33226.150592764374,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019924065478236986,14446.152431636685,3,2,3_0,3_1_0,3_2_0,3_0_0 -6188,2,50.0,0.0,8,111,400.0,,,0,23,0.0,0.0,,442.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,107026,1,2,0,0,1,,500.0,,32,1.0,0.0,5.0,2.0,1.3,2,2,157.28654873259975,400.0,62783.01460988405,0,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00704012068783991,48294.62662298773,10,5,10,10_1,10_2,10_0_0 -6189,2,82.0,0.0,6,111,550.0,,,74,74,0.0,0.0,,592.0,72.25373417598806,,50,0,0,0,0,0,0,0,0,0,,2,,4,119834,2,1,0,0,2,,240.0,,41,0.0,3.0,2.0,2.0,1.5,5,3,153.32718090799912,550.0,93343.43456257158,5,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006342170745851015,62228.95637504772,10,5,10,10_0,10_2,10_0_0 -6190,2,45.0,0.0,6,111,1600.0,,,0,21,0.0,0.0,,1621.0,36.12686708799403,,33,0,0,0,0,0,0,0,0,2,60.0,1,,4,107742,2,1,0,0,2,,980.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,176.60059186787524,1600.0,153990.77548554554,0,1,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010526604563739965,153990.77548554554,10,5,10,10_1,10_2,10_0_0 -6191,2,45.0,0.0,7,111,180.0,,,63,52,0.0,0.0,,432.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,1,15.0,1,,5,112938,2,2,0,0,2,,420.0,,43,4.0,0.0,3.0,5.0,2.8,3,3,132.85025257064513,180.0,26691.793947324804,4,1,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016184749547090573,9532.783552616002,1,1,1_0,1_1_0,1_2_0,1_0_0 -6192,2,70.0,0.0,2,111,600.0,,,77,71,0.0,103.51725048194578,,763.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,0,,1,,2,131598,1,2,0,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,133.8444557999974,600.0,9052.0,5,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08429076447193991,6034.666666666667,1,1,1_0,1_1_0,1_2_0,1_0_1 -6193,1,37.0,200.0,2,111,530.0,,,55,63,0.0,0.0,,782.0,433.5224050559283,,10,0,0,0,0,0,0,0,0,2,45.0,1,,2,129842,1,1,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,4.0,2.1,2,2,136.28711212125313,530.0,38261.56699971843,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.020438263806752996,18219.79380938973,4,2,4_1,4_1_1,4_2_1,4_0_1 -6194,2,72.0,0.0,2,111,220.0,,,0,71,0.0,0.0,,346.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,1,,2,126031,1,2,0,0,2,,180.0,,11,0.0,11.0,4.0,1.0,1.0,4,4,121.14776175879558,220.0,11488.222179014418,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030117801919955868,11488.222179014418,2,1,2_0,2_1_0,2_2_0,2_0_1 -6195,1,36.0,418.0,9,111,600.0,,,0,67,0.0,0.0,,852.0,433.5224050559283,,60,0,0,0,0,0,0,0,0,0,,1,2007.0,6,112576,2,1,0,0,2,,275.0,404.0,32,2.0,0.0,4.0,6.0,2.8999999999999995,1,1,154.58640831016882,600.0,20864.775850019498,0,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04083437110105373,7194.750293110173,1,1,1_1,1_1_1,1_2_1,1_0_0 -6196,2,45.0,0.0,5,111,700.0,,,0,21,0.0,0.0,,763.0,108.38060126398207,,33,0,0,0,0,0,0,0,0,0,,1,,3,117907,1,2,0,0,2,,200.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,138.07963716204168,700.0,46681.76747562818,0,4,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016344711035167003,46681.76747562818,10,5,10,10_1,10_2,10_0_0 -6197,2,56.0,0.0,7,111,700.0,,,63,64,0.0,0.0,,994.0,505.7761392319164,,71,0,0,0,0,0,0,0,0,0,,1,,5,127348,1,2,0,0,2,,350.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,117.03146048210002,700.0,46394.14653017317,4,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02142511662227769,23197.073265086587,6,3,6,6_1,6_2,6_0_0 -6198,2,61.0,0.0,5,111,744.0,,,0,86,0.0,0.0,,870.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,,3,118965,2,1,0,0,2,,1074.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,130.63446578750373,744.0,6968.5084076151325,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12484737753193649,6968.5084076151325,1,1,1_0,1_1_0,1_2_0,1_0_0 -6199,2,78.0,0.0,2,111,350.0,,,77,78,0.0,0.0,,644.0,505.7761392319164,,71,0,0,0,0,0,0,0,0,0,,1,,2,103057,1,2,0,0,2,,500.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,113.57805836800758,350.0,20840.928680269328,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030900734313710897,13893.952453512886,3,2,3_0,3_1_0,3_2_0,3_0_1 -6200,2,56.0,0.0,7,111,972.0,,,0,75,0.0,155.27587572291867,,1374.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,,5,123599,1,3,0,0,2,,150.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,131.1123953369879,972.0,51852.75888204752,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02649810790445148,34568.50592136502,9,5,9,9_1,9_2,9_0_0 -6201,2,92.0,0.0,1,111,420.0,,,0,86,0.0,0.0,,672.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,,1,124952,1,2,0,0,2,,210.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,132.57159446095875,420.0,12085.278185035664,0,5,0,1,128.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05560484332351485,8056.852123357109,1,1,1_0,1_1_0,1_2_0,1_1_0 -6202,0,34.0,0.0,2,111,720.0,,,63,85,0.0,0.0,,972.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,,2,111275,2,1,0,0,1,,480.0,,42,1.0,0.0,6.0,6.0,2.8999999999999995,2,2,139.08725320874325,720.0,25780.877774576293,1,6,5,0,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037702362522292934,8889.957853302172,1,1,1_0,1_1_0,1_2_0,1_0_1 -6203,2,58.0,0.0,2,111,552.0,,,0,63,0.0,0.0,,636.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,2,111878,1,1,0,0,2,,120.0,76.0,12,1.0,3.0,3.0,1.0,1.0,2,2,144.0287250640613,552.0,5013.587952244074,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12685525935878464,5013.587952244074,1,1,1_0,1_1_0,1_2_0,1_0_1 -6204,2,78.0,0.0,2,111,360.0,,,0,75,0.0,0.0,,570.0,361.26867087994026,,70,0,0,0,0,0,0,0,0,0,,1,,2,111219,1,2,0,0,2,,150.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,115.56004789135214,360.0,43557.56571267939,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013086130748442535,43557.56571267939,10,5,10,10_1,10_2,10_0_1 -6205,0,54.0,0.0,2,111,450.0,,,85,65,0.0,0.0,,710.0,447.28502108944986,,42,2,2,1,2,1,2,2,2,0,,7,,2,109080,2,3,0,0,2,,0.0,,42,1.0,1.0,1.0,2.0,1.5,1,1,174.65261883333764,450.0,9649.969696969696,6,4,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.0735753605757908,6433.313131313131,1,1,1_0,1_1_0,1_2_0,1_0_1 -6206,2,77.0,0.0,2,111,360.0,,,86,78,0.0,0.0,,486.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,,2,125655,1,2,0,0,2,,316.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,130.63446578750373,360.0,16872.574939829225,6,5,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028804139364214852,11248.383293219484,2,1,2_0,2_1_0,2_2_0,2_0_1 -6207,2,37.0,0.0,9,111,480.0,,,22,46,0.0,51.75862524097289,,593.0,108.38060126398207,,41,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,121080,2,1,0,0,2,,18.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,136.0653167892658,480.0,27076.204343488607,4,1,1,2,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021901149528833683,12893.43063975648,2,1,2_0,2_1_0,2_2_0,2_0_0 -6208,2,39.0,0.0,6,111,510.0,,,0,52,0.0,0.0,,762.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,4,109793,1,3,0,0,2,,502.0,,32,3.0,2.0,5.0,6.0,3.3,2,2,122.25859585211592,510.0,27330.908829991036,0,1,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027880521820183097,8282.093584845768,1,1,1_0,1_1_0,1_2_0,1_0_0 -6210,2,34.0,0.0,5,111,369.0,,,0,52,0.0,0.0,,621.0,433.5224050559283,,70,0,0,0,0,0,0,0,0,0,,1,,3,102191,1,3,0,0,2,,128.0,,22,2.0,3.0,7.0,3.0,2.0,2,2,120.63890202160825,369.0,17665.14921822038,0,4,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035153962886397896,8832.57460911019,1,1,1_0,1_1_0,1_2_0,1_0_0 -6212,2,51.0,0.0,2,111,100.0,,,0,81,0.0,0.0,,142.0,72.25373417598806,,50,2,2,2,2,1,2,2,2,0,,1,,2,102436,1,3,0,0,2,,270.0,,12,1.0,3.0,2.0,1.0,1.0,2,2,148.72067257484463,100.0,1320.0,0,4,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.10757575757575757,1320.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -6213,2,48.0,0.0,7,111,90.0,,,0,85,0.0,0.0,,174.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,,5,115977,2,2,0,0,2,,320.0,,31,0.0,0.0,3.0,2.0,1.3,1,1,124.39312457425717,90.0,8666.94856171397,0,6,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02007627006910375,6666.883509010747,1,1,1_0,1_1_0,1_2_0,1_0_0 -6214,2,42.0,0.0,8,111,400.0,,,55,37,0.0,0.0,,740.0,584.9111814246652,,70,0,0,0,0,0,0,0,0,2,25.0,1,1999.0,6,123395,2,1,0,0,2,,240.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,148.53530152192567,400.0,52870.92864489859,1,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013996349581262767,29372.73813605477,8,4,8,8_1,8_2,8_0_0 -6215,2,34.0,0.0,9,111,500.0,,,46,34,0.0,0.0,,500.0,0.0,,31,0,0,0,0,0,0,0,0,2,35.0,2,2007.0,6,105736,2,2,0,0,2,,232.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,148.79292523540948,500.0,77449.21042338942,1,1,1,2,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006455843736387551,51632.80694892628,10,5,10,10_0,10_2,10_0_0 -6216,2,29.0,0.0,9,111,458.0,,,0,43,0.0,0.0,,458.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,2010.0,6,122228,2,1,0,0,1,,348.0,854.0,22,2.0,0.0,3.0,2.0,1.5,1,1,233.43998127393962,458.0,53618.58764242843,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008541813951801749,35745.725094952286,9,5,9,9_0,9_2,9_0_0 -6217,2,27.0,0.0,9,111,150.0,,,63,56,0.0,0.0,,150.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,102535,2,3,0,0,2,,120.0,640.0,43,2.0,0.0,2.0,2.0,1.5,2,2,144.28325759747747,150.0,30112.715814794446,4,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004981284349195254,20075.14387652963,5,3,5,5_0,5_2,5_0_0 -6218,1,26.0,250.0,6,111,0.0,,,0,43,0.0,0.0,,425.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,4,121687,1,1,0,0,1,,251.0,540.0,12,1.0,0.0,1.0,1.0,1.0,1,1,181.66628555321861,0.0,2920.8202602992333,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14550707065982194,2920.8202602992333,1,1,1_1,1_0_1,1_2_1,1_0_0 -6219,2,46.0,0.0,7,111,990.0,,,0,85,0.0,0.0,,1119.0,221.92218354053472,,60,2,2,1,2,1,2,2,2,0,,1,,5,104599,2,3,0,0,2,,192.0,,31,2.0,0.0,5.0,5.0,2.8,2,2,150.8815090061402,990.0,23737.656646933865,0,6,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04714028923088912,8477.734516762095,1,1,1_0,1_1_0,1_2_0,1_0_0 -6220,2,40.0,0.0,7,111,324.0,,,0,85,0.0,0.0,,588.0,454.1663291062106,,71,2,2,2,2,1,2,2,2,0,,1,,5,103379,2,1,0,0,2,,800.0,,31,1.0,1.0,7.0,6.0,2.8999999999999995,2,2,130.28456171805274,324.0,9623.772727272726,0,6,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.061098699716138544,3318.5423197492164,1,1,1_0,1_1_0,1_2_0,1_0_0 -6221,2,72.0,0.0,1,111,120.0,,,0,78,0.0,0.0,,206.0,147.94812236035648,,50,2,2,2,2,1,2,2,2,0,,1,,1,101659,1,2,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,163.82993481077742,120.0,10568.408513291502,0,5,0,1,48.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.019492054999664454,10568.408513291502,2,1,2_0,2_1_0,2_2_0,2_1_0 -6222,2,56.0,0.0,2,111,96.0,,,0,78,0.0,0.0,,182.0,147.94812236035648,,50,2,2,2,2,1,2,2,2,0,,1,,2,113966,1,2,0,0,2,,40.0,,11,0.0,0.0,2.0,1.0,1.0,3,3,159.84172751919235,96.0,6670.436177707557,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.027284572575364676,6670.436177707557,1,1,1_0,1_1_0,1_2_0,1_0_1 -6223,2,49.0,0.0,6,111,700.0,,,11,11,0.0,103.51725048194578,,865.0,111.82125527236246,,44,0,0,0,0,0,0,0,0,0,,1,,4,119986,2,1,0,0,2,,216.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,149.79274420916462,700.0,7537.149248593651,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1147648761448368,3768.5746242968253,1,1,1_0,1_1_0,1_2_0,1_0_0 -6224,2,25.0,0.0,9,111,560.0,,,47,43,0.0,124.22070057833493,,768.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,116366,2,1,0,0,2,,60.0,,43,2.0,0.0,4.0,4.0,2.1,4,3,147.78786349432784,560.0,60697.05801138904,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012653002059109594,28903.360957804303,8,4,8,8_1,8_2,8_0_0 -6225,2,64.0,0.0,9,111,0.0,,,0,22,0.0,0.0,,43.0,73.97406118017824,,10,0,0,0,0,0,0,0,0,0,,1,2008.0,6,128925,2,1,0,0,2,,0.0,400.0,12,1.0,2.0,3.0,1.0,1.0,2,2,172.65096908607293,0.0,8636.0,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004979157017137564,8636.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -6226,2,34.0,0.0,5,111,720.0,,,47,43,0.0,124.22070057833493,,906.0,113.54158227655265,,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,111447,1,2,0,0,2,,120.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,154.87247411636457,720.0,77439.62767354219,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011699436415414759,36876.01317787723,9,5,9,9_1,9_2,9_0_0 -6227,1,32.0,522.0,7,111,384.0,,,0,54,0.0,0.0,,384.0,0.0,,43,2,2,1,2,1,2,2,2,2,20.0,1,,5,113310,1,2,0,0,2,,60.0,800.0,32,1.0,0.0,4.0,5.0,2.2,1,1,155.8333136268066,384.0,16159.545284797947,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.023763044889712773,7345.247856726339,1,1,1_1,1_1_1,1_2_1,1_0_0 -6228,2,70.0,0.0,6,111,200.0,,,0,78,0.0,0.0,,307.0,184.07498944835052,,43,0,0,0,0,0,0,0,0,0,,1,,4,116542,2,2,0,0,2,,140.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,163.28729978390894,200.0,10619.635773961047,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028908712740671635,10619.635773961047,2,1,2_0,2_1_0,2_2_0,2_0_0 -6229,2,68.0,0.0,7,111,900.0,,,75,78,0.0,0.0,,1159.0,445.56469408525965,,20,0,0,0,0,0,0,0,0,0,,1,,5,126055,2,1,0,0,2,,840.0,,41,1.0,5.0,7.0,3.0,2.0,1,1,120.58360267310597,900.0,9758.28318328598,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11877089219803942,4879.14159164299,1,1,1_0,1_1_0,1_2_0,1_0_0 -6230,1,35.0,413.0,9,111,410.0,,,0,48,0.0,0.0,,453.0,73.97406118017824,,10,0,0,0,0,0,0,0,0,0,,1,2007.0,6,113978,2,2,0,0,1,,68.0,613.0,32,1.0,0.0,3.0,3.0,1.8,1,1,182.8290104094505,410.0,11333.46106409711,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.039970137757392,6296.367257831727,1,1,1_1,1_1_1,1_2_1,1_0_0 -6231,1,48.0,253.0,7,111,0.0,,,0,56,0.0,0.0,,419.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,119882,2,2,0,0,1,,0.0,460.0,32,1.0,0.0,2.0,2.0,1.3,2,2,185.0707537464358,0.0,5614.915632754342,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07462267065168059,4319.165871349494,1,1,1_1,1_0_1,1_2_1,1_0_0 -6232,2,55.0,0.0,8,111,280.0,,,65,43,0.0,0.0,,409.0,221.92218354053472,,71,0,0,0,0,0,0,0,0,2,3.0,1,2000.0,6,125872,2,1,0,0,2,,400.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,114.43141765990208,280.0,56581.04399102793,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0072285693432036216,37720.69599401862,9,5,9,9_1,9_2,9_0_0 -6233,2,41.0,0.0,9,111,1200.0,,,54,62,0.0,0.0,,1288.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,130640,2,1,0,0,2,,156.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,117.98854686731946,1200.0,58048.987670712384,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022188156101985535,27642.37508129161,7,4,7,7_1,7_2,7_0_0 -6234,2,57.0,0.0,5,111,975.0,,,78,77,0.0,0.0,,1363.0,667.4868776257944,,20,0,0,0,0,0,0,0,0,0,,1,,3,123899,2,1,0,0,2,,420.0,,41,2.0,1.0,5.0,4.0,2.5,1,1,138.70748387057006,975.0,8596.565638859953,6,6,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15855168880915524,3438.626255543981,1,1,1_0,1_1_0,1_2_0,1_0_0 -6235,2,59.0,0.0,6,111,540.0,,,85,52,0.0,0.0,,716.0,302.77755273747374,,70,0,0,0,0,0,0,0,0,3,75.0,1,,4,103850,2,1,0,0,2,,150.0,,42,2.0,0.0,4.0,4.0,2.3,1,1,157.1090063986078,540.0,42353.11315071664,6,1,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0169054869107747,18414.397022050714,4,2,4_0,4_1_0,4_2_0,4_0_0 -6236,2,40.0,0.0,2,111,0.0,,,46,43,0.0,0.0,,615.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,103067,2,2,0,0,2,,249.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,159.31230217206476,0.0,79955.19393606059,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007691807995510706,44419.552186700326,10,5,10,10_1,10_2,10_0_1 -6237,2,35.0,0.0,2,111,600.0,,,85,34,0.0,0.0,,686.0,147.94812236035648,,20,0,0,0,0,0,0,0,0,0,,1,,2,126313,1,1,0,0,2,,80.0,950.0,42,1.0,0.0,5.0,3.0,1.8,1,1,178.3818694119297,600.0,96748.79983454358,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007090527233135432,53749.3332414131,10,5,10,10_1,10_2,10_0_1 -6238,0,74.0,0.0,5,111,180.0,,,86,78,0.0,0.0,,352.0,295.89624472071296,,20,2,2,2,2,1,2,2,2,0,,1,,3,126847,1,2,0,0,2,,120.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,136.74740762158538,180.0,17316.90825688073,6,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02032695414091229,11544.605504587154,2,1,2_0,2_1_0,2_2_0,2_0_0 -6239,0,55.0,0.0,7,111,400.0,,,0,22,0.0,0.0,,443.0,73.97406118017824,,71,0,0,0,0,0,0,0,0,0,,1,,5,112822,2,1,0,0,2,,180.0,,12,1.0,5.0,4.0,1.0,1.0,1,1,149.66800569258092,400.0,14625.423799582462,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030289720562671634,14625.423799582462,3,2,3_0,3_1_0,3_2_0,3_0_0 -6240,1,44.0,253.0,9,111,800.0,,,0,85,0.0,0.0,,800.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,2005.0,6,103757,2,2,0,0,2,,960.0,395.0,31,1.0,0.0,4.0,4.0,2.3,1,1,134.84099321191886,800.0,20917.47415274886,0,6,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03824553548664806,9094.553979456026,1,1,1_1,1_0_1,1_2_1,1_0_0 -6241,1,37.0,431.0,9,111,820.0,,,52,85,0.0,0.0,,992.0,295.89624472071296,,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,107525,2,1,0,0,2,,720.0,410.0,42,1.0,1.0,5.0,6.0,3.0999999999999996,1,1,160.997336563294,820.0,21525.2784256483,4,6,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.046085350460228616,6943.638201822033,1,1,1_1,1_1_1,1_2_1,1_0_0 -6242,1,30.0,129.0,9,111,690.0,,,85,46,0.0,0.0,,733.0,73.97406118017824,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,119124,2,2,0,0,1,,460.0,308.0,42,1.0,0.0,3.0,4.0,2.1,2,2,127.58866096835801,690.0,39233.358153498,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018683080788857904,18682.551501665712,4,2,4_1,4_0_1,4_2_1,4_0_0 -6243,2,62.0,0.0,5,111,650.0,,,0,77,0.0,0.0,,909.0,445.56469408525965,,42,0,0,0,0,0,0,0,0,0,,1,,3,101224,1,2,0,0,2,,220.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,149.66800569258092,650.0,18521.77530101778,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04907736894692001,18521.77530101778,4,2,4_0,4_1_0,4_2_0,4_0_0 -6244,2,72.0,0.0,6,111,300.0,,,0,86,0.0,0.0,,434.0,230.52381856148568,,41,0,0,0,0,0,0,0,0,0,,1,,4,122037,2,2,0,0,2,,320.0,90.0,21,1.0,5.0,5.0,2.0,1.5,2,2,147.44935533476843,300.0,9443.747522886593,0,5,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04595633237210293,6295.8316819243955,1,1,1_0,1_1_0,1_2_0,1_0_0 -6245,1,32.0,253.0,7,111,300.0,,,0,63,0.0,0.0,,432.0,227.0831645531053,,44,0,0,0,0,0,0,0,0,0,,2,,5,101998,2,2,0,0,1,,500.0,451.0,22,3.0,0.0,4.0,3.0,2.0,2,2,137.38504459894241,300.0,43672.34165699565,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009891844210987027,21836.170828497827,6,3,6,6_0,6_2,6_0_0 -6246,1,61.0,253.0,9,111,986.0,,,0,86,0.0,0.0,,1118.0,227.0831645531053,,10,0,0,0,0,0,0,0,0,0,,2,2005.0,6,111486,1,2,0,0,2,,0.0,311.0,11,0.0,7.0,3.0,1.0,1.0,4,3,159.62096447577812,986.0,6968.5084076151325,0,6,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16043605526517815,6968.5084076151325,1,1,1_1,1_0_1,1_2_1,1_0_0 -6247,2,61.0,0.0,6,111,600.0,,,85,52,0.0,0.0,,776.0,302.77755273747374,,71,0,0,0,0,0,0,0,0,0,,1,,4,110810,2,1,0,0,2,,280.0,950.0,42,1.0,2.0,4.0,2.0,1.5,3,3,164.39974873444214,600.0,44159.0,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01757286170429584,29439.333333333332,8,4,8,8_1,8_2,8_0_0 -6248,2,42.0,0.0,7,111,1360.0,,,34,38,0.0,0.0,,1425.0,111.82125527236246,,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,119728,2,3,0,0,1,,120.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,145.2814260169519,1360.0,133972.37033498962,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010636521518854043,63796.366826185535,10,5,10,10_1,10_2,10_0_0 -6249,2,73.0,0.0,1,111,1000.0,,,86,78,0.0,0.0,,1258.0,443.84436708106944,,50,2,2,1,1,1,2,2,2,0,,1,,1,122950,1,2,0,0,2,,320.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,144.6129974548365,1000.0,19003.786364192798,6,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06619733435702799,12669.190909461866,2,1,2_0,2_1_0,2_2_0,2_1_0 -6250,2,43.0,0.0,6,111,420.0,,,0,52,0.0,0.0,,549.0,221.92218354053472,,41,0,0,0,0,0,0,0,0,0,,1,,4,123223,2,2,0,0,2,,200.0,,32,1.0,1.0,2.0,2.0,1.5,1,1,128.67895172519403,420.0,24182.58946184412,0,4,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022702283428589216,16121.72630789608,4,2,4_0,4_1_0,4_2_0,4_0_0 -6251,2,42.0,0.0,8,111,1110.0,,,0,62,0.0,0.0,,1374.0,454.1663291062106,,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,123449,2,2,0,0,2,,600.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,139.49762697343928,1110.0,32823.138368601416,0,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04186071376143505,18235.07687144523,4,2,4_0,4_1_0,4_2_0,4_0_0 -6252,2,31.0,0.0,6,111,1290.0,,,0,55,0.0,0.0,,1422.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,4,115715,2,2,0,0,2,,150.0,,22,3.0,3.0,7.0,6.0,3.5,5,5,133.42066563318616,1290.0,39934.60352948791,0,1,0,1,168.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03560821629166765,11409.886722710831,2,1,2_0,2_1_0,2_2_0,2_0_0 -6253,2,66.0,0.0,7,111,250.0,,,0,74,0.0,0.0,,250.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,115014,2,2,0,0,2,,270.0,509.0,11,0.0,0.0,1.0,1.0,1.0,2,2,148.8993870908543,250.0,78332.12440810633,0,5,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0031915386169984726,78332.12440810633,10,5,10,10_0,10_2,10_0_0 -6254,2,33.0,0.0,9,111,150.0,,,0,43,0.0,0.0,,150.0,0.0,,43,0,0,0,0,0,0,0,0,2,25.0,2,2007.0,6,129191,2,1,0,0,1,,120.0,590.0,12,1.0,0.0,2.0,1.0,1.0,4,2,187.11965959825125,150.0,36443.8054536443,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004115925824233603,36443.8054536443,9,5,9,9_0,9_2,9_0_0 -6255,2,43.0,0.0,6,111,0.0,,,34,37,0.0,0.0,,244.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,116444,2,1,0,0,2,,365.0,2400.0,43,2.0,0.0,4.0,4.0,2.1,2,2,169.025263464659,0.0,198167.37729906078,1,1,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0012312823802061615,94365.41776145752,10,5,10,10_1,10_2,10_0_0 -6256,2,63.0,0.0,6,111,530.0,,,85,75,0.0,0.0,,659.0,221.92218354053472,,70,0,0,0,0,0,0,0,0,0,,1,,4,119106,2,1,0,0,2,,300.0,,41,0.0,8.0,5.0,2.0,1.5,1,1,131.1123953369879,530.0,46585.77092947448,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014145950294514832,31057.18061964965,8,4,8,8_1,8_2,8_0_0 -6257,2,57.0,0.0,7,111,480.0,,,85,68,0.0,0.0,,1170.0,1187.0256328912324,,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,124586,2,2,0,0,2,,180.0,,42,1.0,3.0,5.0,3.0,2.0,2,2,131.60779195321427,480.0,24383.16479338428,6,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04798392702154268,12191.58239669214,2,1,2_0,2_1_0,2_2_0,2_0_0 -6258,2,55.0,0.0,8,111,160.0,,,0,52,0.0,0.0,,419.0,445.56469408525965,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,100987,1,1,0,0,2,,140.0,,22,2.0,0.0,3.0,3.0,1.8,2,1,113.57805836800758,160.0,14981.2960861957,0,4,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027968207663026,8322.942270108722,1,1,1_0,1_1_0,1_2_0,1_0_0 -6260,1,35.0,350.0,7,111,420.0,,,0,55,0.0,0.0,,948.0,908.3326582124212,,50,0,0,0,0,0,0,0,0,0,,1,,5,121195,2,1,0,0,2,,120.0,700.0,32,1.0,0.0,3.0,3.0,1.6,4,3,161.20709261018825,420.0,9432.283302687112,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10050588702418739,5895.177064179445,1,1,1_1,1_1_1,1_2_1,1_0_0 -6261,2,60.0,0.0,8,111,600.0,,,77,63,0.0,0.0,,772.0,295.89624472071296,,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,102086,2,2,0,0,2,,660.0,,42,2.0,0.0,4.0,5.0,2.8,2,2,139.57535329798208,600.0,21138.1953847689,6,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03652156610096733,7549.355494560322,1,1,1_0,1_1_0,1_2_0,1_0_0 -6262,2,49.0,0.0,9,111,400.0,,,56,68,0.0,0.0,,529.0,221.92218354053472,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,108581,2,1,0,0,2,,120.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,216.39904736171135,400.0,49212.650143800645,4,1,1,2,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010749268703356723,23434.595306571733,6,3,6,6_1,6_2,6_0_0 -6263,2,78.0,0.0,7,111,120.0,,,0,86,0.0,0.0,,292.0,295.89624472071296,,50,2,2,2,2,1,2,2,2,0,,1,,5,122805,1,2,0,0,2,,120.0,,11,0.0,6.0,2.0,1.0,1.0,2,2,163.82993481077742,120.0,8432.204833234704,0,5,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.034629139800910765,8432.204833234704,1,1,1_0,1_1_0,1_2_0,1_0_0 -6264,1,34.0,457.0,2,111,660.0,,,0,85,0.0,155.27587572291867,,986.0,302.77755273747374,,31,2,2,2,2,1,1,2,2,0,,1,,2,110317,2,2,0,0,2,,100.0,650.0,31,0.0,1.0,4.0,4.0,1.9,1,1,161.31467432793028,660.0,16562.034184301465,0,6,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.05953374984182756,8716.860097000772,1,1,1_1,1_1_1,1_2_1,1_0_1 -6265,2,41.0,0.0,7,111,450.0,,,46,38,0.0,0.0,,538.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,5,118687,2,1,0,0,2,,450.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,134.92218339146368,450.0,65346.692337812085,1,1,1,2,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008233010436378165,36303.71796545116,9,5,9,9_1,9_2,9_0_0 -6266,2,38.0,0.0,8,111,280.0,,,85,55,0.0,0.0,,625.0,593.5128164456162,,70,0,0,0,0,0,0,0,0,0,,1,2002.0,6,107414,2,1,0,0,2,,144.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,1,1,150.8815090061402,280.0,18975.411836933796,6,4,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032937361537708404,7298.235321897615,1,1,1_0,1_1_0,1_2_0,1_0_0 -6267,2,58.0,0.0,7,111,0.0,,,54,45,0.0,0.0,,2096.0,0.0,,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,119404,2,1,0,0,2,,157.0,1000.0,43,4.0,1.0,6.0,5.0,2.8,2,2,159.73004499647402,0.0,74818.6241287649,1,1,2,3,148.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02801441518615374,26720.93718884461,7,4,7,7_1,7_2,7_0_0 -6268,2,48.0,0.0,7,111,1200.0,,,67,67,0.0,0.0,,1376.0,302.77755273747374,,42,2,2,2,2,2,2,2,1,0,,1,,5,117101,1,3,0,0,2,,1120.0,,43,3.0,3.0,5.0,5.0,2.5999999999999996,2,2,140.89378301893962,1200.0,28020.969155208288,4,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04910608167684455,10777.295828926266,2,1,2_0,2_1_0,2_2_0,2_0_0 -6269,2,50.0,0.0,7,111,410.0,,,0,68,0.0,0.0,,496.0,147.94812236035648,,10,0,0,0,0,0,0,0,0,0,,1,,5,118917,1,3,0,0,2,,120.0,,32,2.0,3.0,4.0,5.0,2.5999999999999996,2,2,141.69236528578543,410.0,24167.51792427882,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02052341500496895,9295.199201645702,1,1,1_0,1_1_0,1_2_0,1_0_0 -6270,2,43.0,0.0,7,111,360.0,,,52,22,0.0,0.0,,748.0,667.4868776257944,,31,0,0,0,0,0,0,0,0,0,,1,,5,114871,2,1,0,0,1,,156.0,,43,2.0,1.0,5.0,4.0,2.1,1,1,150.15980151648048,360.0,59111.0,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012654159124359257,28148.095238095237,8,4,8,8_1,8_2,8_0_0 -6271,2,59.0,0.0,7,111,270.0,,,0,56,0.0,0.0,,492.0,381.91259493022255,,50,2,2,2,1,1,2,2,2,0,,1,,5,108945,2,3,0,0,2,,372.0,,22,2.0,0.0,4.0,3.0,1.8,5,4,157.63756780768702,270.0,12675.868704217839,0,4,0,1,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.038813907865445876,7042.149280121022,1,1,1_0,1_1_0,1_2_0,1_0_0 -6272,2,39.0,0.0,9,111,360.0,,,0,42,0.0,103.51725048194578,,525.0,111.82125527236246,,30,2,2,1,2,1,2,2,2,2,25.0,1,2006.0,6,115661,2,1,0,0,2,,120.0,,32,1.0,0.0,4.0,3.0,1.6,3,3,121.5285274012221,360.0,40949.715862542624,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.012820601778099908,25593.57241408914,7,4,7,7_1,7_2,7_0_0 -6273,2,60.0,0.0,9,111,156.0,,,77,75,0.0,0.0,,244.0,151.38877636873687,,41,0,0,0,0,0,0,0,0,0,,1,2008.0,6,116188,2,1,0,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,149.59985339956526,156.0,37422.444661477835,5,5,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006520151267700861,24948.296440985225,7,4,7,7_1,7_2,7_0_0 -6274,2,44.0,0.0,9,111,780.0,,,21,21,0.0,0.0,,909.0,221.92218354053472,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109669,2,1,0,0,1,,188.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,150.15980151648048,780.0,43845.912466377165,1,1,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02073169307850665,20879.00593637008,5,3,5,5_1,5_2,5_0_0 -6275,0,61.0,0.0,6,111,370.0,,,0,86,0.0,0.0,,542.0,295.89624472071296,,70,0,0,0,0,0,0,0,0,0,,1,,4,122551,1,1,0,0,2,,200.0,,21,1.0,0.0,6.0,2.0,1.5,1,1,153.27586671188865,370.0,5241.0,0,7,5,0,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10341537874451441,3494.0,1,1,1_0,1_1_0,1_2_0,1_0_0 -6276,2,66.0,0.0,7,111,180.0,,,0,77,0.0,0.0,,268.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,0,,1,,5,106649,2,1,0,0,2,,120.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,147.8980799843133,180.0,10927.171823230747,0,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024526016826260783,10927.171823230747,2,1,2_0,2_1_0,2_2_0,2_0_0 -6277,2,40.0,0.0,7,111,1000.0,,,85,38,0.0,0.0,,1120.0,206.439240502823,,60,0,0,0,0,0,0,0,0,0,,1,,5,128024,1,1,0,0,1,,290.0,1593.0,42,1.0,0.0,6.0,4.0,2.1,1,1,162.866731336848,1000.0,72154.0,6,1,2,3,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015522354962995814,34359.04761904762,9,5,9,9_1,9_2,9_0_0 -6278,1,36.0,250.0,6,111,500.0,,,22,22,0.0,0.0,,544.0,75.69438818436844,,43,0,0,0,0,0,0,0,0,0,,1,,4,120992,1,1,0,0,2,,160.0,850.0,43,2.0,0.0,5.0,4.0,2.1,2,2,181.91466662706824,500.0,61321.0,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008871349129988096,29200.47619047619,8,4,8,8_1,8_2,8_0_0 -6279,2,45.0,0.0,8,111,420.0,,,63,63,0.0,0.0,,549.0,221.92218354053472,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113862,2,1,0,0,2,,400.0,,43,2.0,2.0,4.0,5.0,2.8,2,2,139.11305392836744,420.0,27493.832944270212,4,1,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019968114344508413,9819.226051525076,2,1,2_0,2_1_0,2_2_0,2_0_0 -6280,2,57.0,0.0,7,111,480.0,,,85,37,0.0,0.0,,502.0,37.84719409218422,,42,0,0,0,0,0,0,0,0,0,,1,,5,116357,2,1,0,0,2,,120.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,157.05449057388637,480.0,133234.61058052315,7,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037677897493204717,88823.07372034877,10,5,10,10_1,10_2,10_0_0 -6281,2,47.0,0.0,7,111,420.0,,,85,52,0.0,0.0,,596.0,302.77755273747374,,70,0,0,0,0,0,0,0,0,1,5.0,1,,5,104489,2,2,0,0,2,,100.0,,42,2.0,0.0,5.0,5.0,2.8,1,1,138.70748387057006,420.0,50687.92515820697,5,1,0,1,117.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011758224431948378,18102.830413645348,4,2,4_0,4_1_0,4_2_0,4_0_0 -6282,1,40.0,253.0,7,111,234.0,,,0,52,0.0,0.0,,234.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,128399,1,1,0,0,2,,90.0,427.0,12,1.0,0.0,2.0,1.0,1.0,2,2,148.26801036044222,234.0,17166.389225000436,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013631288265281313,17166.389225000436,4,2,4_1,4_0_1,4_2_1,4_0_0 -6283,1,51.0,406.0,7,111,500.0,,,0,85,0.0,0.0,,575.0,129.02452531426437,,50,0,0,0,0,0,0,0,0,0,,2,,5,132228,2,2,0,0,2,,100.0,469.0,31,0.0,0.0,3.0,3.0,1.6,4,4,127.58866096835801,500.0,11727.039155575087,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04903198432032543,7329.399472234429,1,1,1_1,1_0_1,1_2_1,1_0_0 -6284,1,33.0,407.0,7,111,450.0,,,0,46,0.0,0.0,,579.0,221.92218354053472,,71,0,0,0,0,0,0,0,0,2,60.0,2,,5,121996,1,3,0,0,2,,100.0,469.0,32,1.0,0.0,3.0,3.0,1.6,2,2,184.14986283611032,450.0,35154.16081706235,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01647031209230225,21971.350510663968,6,3,6,6_0,6_2,6_0_0 -6285,2,61.0,0.0,7,111,360.0,,,74,74,0.0,0.0,,446.0,147.94812236035648,,50,0,0,0,0,0,0,0,0,0,,1,,5,119145,2,2,0,0,2,,180.0,,41,1.0,2.0,5.0,3.0,2.0,4,4,151.77704892684383,360.0,91422.82361595126,5,5,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004878431690904184,45711.41180797563,10,5,10,10_1,10_2,10_0_0 -6286,2,76.0,0.0,6,111,600.0,,,77,77,0.0,72.46207533736204,,758.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,1,,4,110539,2,1,0,0,2,,800.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,118.31198408973273,600.0,21581.349200039556,5,5,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512291993304157,10790.674600019778,2,1,2_0,2_1_0,2_2_0,2_0_0 -6287,2,58.0,0.0,7,111,360.0,,,0,78,0.0,0.0,,618.0,443.84436708106944,,70,0,0,0,0,0,0,0,0,0,,1,,5,113589,2,1,0,0,2,,480.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,169.96902077193926,360.0,12837.760714682638,0,7,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048139236564301205,12837.760714682638,2,1,2_0,2_1_0,2_2_0,2_0_0 -6288,2,58.0,0.0,6,111,660.0,,,85,62,0.0,0.0,,918.0,443.84436708106944,,50,0,0,0,0,0,0,0,0,0,,1,,4,111881,2,1,0,0,2,,400.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,123.69323052664079,660.0,86833.5121647424,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010571955194652852,43416.7560823712,10,5,10,10_1,10_2,10_0_0 -6289,0,29.0,0.0,2,111,600.0,,,43,43,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,106184,2,1,0,0,1,,250.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,152.28727948139488,600.0,60179.97129559397,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009970094486301767,40119.98086372931,9,5,9,9_1,9_2,9_0_1 -6290,2,47.0,0.0,2,111,968.0,,,54,21,0.0,0.0,,1076.0,185.7953164525407,,44,0,0,0,0,0,0,0,0,0,,1,,2,123760,2,2,0,0,1,,150.0,,43,3.0,0.0,5.0,5.0,2.8,2,2,173.19071423485798,968.0,66128.0,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0162714735059279,23617.14285714286,6,3,6,6_1,6_2,6_0_1 -6291,2,82.0,0.0,5,111,600.0,,,0,86,0.0,0.0,,729.0,221.92218354053472,,50,0,0,0,0,0,0,0,0,0,,1,,3,108752,2,2,0,0,2,,440.0,,11,0.0,9.0,4.0,1.0,1.0,2,2,149.79274420916462,600.0,11072.591753602512,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06583824421800948,11072.591753602512,2,1,2_0,2_1_0,2_2_0,2_0_0 -6292,2,58.0,0.0,6,111,500.0,,,71,52,0.0,0.0,,629.0,221.92218354053472,,43,0,0,0,0,0,0,0,0,2,10.0,1,,4,125891,1,1,0,0,1,,350.0,,42,2.0,3.0,5.0,3.0,2.0,2,2,137.43662997212112,500.0,4735.01755630332,6,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13284005656170517,2367.50877815166,1,1,1_0,1_1_0,1_2_0,1_0_0 -6293,2,36.0,0.0,5,111,500.0,,,52,38,0.0,0.0,,672.0,295.89624472071296,,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,131161,2,2,0,0,2,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,143.49069321338416,500.0,56942.63615804805,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011801350364862273,27115.541027641928,7,4,7,7_1,7_2,7_0_0 -6294,2,30.0,0.0,7,111,0.0,,,31,31,0.0,0.0,,66.0,113.54158227655265,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,108458,2,1,0,0,2,,0.0,1100.0,43,2.0,0.0,4.0,3.0,1.8,4,2,181.0853418636199,0.0,113824.87205490033,1,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0005798381215677246,63236.04003050018,10,5,10,10_1,10_2,10_0_0 -6295,2,48.0,0.0,9,111,360.0,,,47,42,0.0,0.0,,360.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,109912,2,1,0,0,2,,320.0,1090.0,43,2.0,0.0,3.0,4.0,2.1,1,1,157.69760431668217,360.0,65174.66758885871,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0055236185057511555,31035.555994694623,8,4,8,8_1,8_2,8_0_0 -6296,2,74.0,0.0,5,111,540.0,,,0,77,0.0,0.0,,562.0,37.84719409218422,,71,0,0,0,0,0,0,0,0,0,,2,,3,131690,2,2,0,0,1,,240.0,560.0,11,0.0,4.0,4.0,1.0,1.0,1,1,178.55895950593666,540.0,51364.17110454127,0,5,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010941479009875656,51364.17110454127,10,5,10,10_0,10_2,10_0_0 -6297,2,54.0,0.0,9,111,900.0,,,54,21,0.0,0.0,,986.0,147.94812236035648,,31,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,119798,2,2,0,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,141.51212921344356,900.0,121902.83525084282,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008088409083932139,53001.23271775775,10,5,10,10_1,10_2,10_0_0 -6298,2,70.0,0.0,5,111,296.0,,,0,74,0.0,0.0,,296.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,128165,2,2,0,0,2,,137.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,147.41452003196324,296.0,41561.73528049755,0,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007121935549666406,41561.73528049755,9,5,9,9_1,9_2,9_0_0 -6299,2,55.0,0.0,6,111,500.0,,,0,38,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,114897,2,3,0,0,2,,150.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,154.43700735076604,500.0,36557.06488744232,0,4,1,2,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013677246834216018,36557.06488744232,9,5,9,9_1,9_2,9_0_0 -6300,2,81.0,0.0,2,111,170.0,,,0,77,0.0,207.03450096389156,,370.0,0.0,,50,2,2,2,2,1,2,2,2,0,,1,,2,130843,2,2,0,0,2,,60.0,,21,2.0,0.0,4.0,3.0,2.0,2,2,119.02272953192342,170.0,19625.306271978574,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.01885320895747211,9812.653135989287,2,1,2_0,2_1_0,2_2_0,2_0_1 -6301,2,64.0,0.0,5,111,630.0,,,77,63,0.0,103.51725048194578,,818.0,151.38877636873687,,44,0,0,0,0,0,0,0,0,0,,1,,3,109173,1,2,0,0,2,,360.0,750.0,42,1.0,1.0,4.0,2.0,1.5,5,4,177.14679774182213,630.0,50465.63539216868,6,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016209049854288334,33643.75692811245,9,5,9,9_1,9_2,9_0_0 -6302,2,51.0,0.0,7,111,300.0,,,85,65,0.0,0.0,,386.0,147.94812236035648,,31,0,0,0,0,0,0,0,0,0,,1,,5,118061,2,1,0,0,2,,120.0,,42,1.0,0.0,5.0,4.0,2.5,4,3,124.43630317902715,300.0,18611.41203627437,6,4,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020739963160649546,7444.564814509748,1,1,1_0,1_1_0,1_2_0,1_0_0 -6303,1,24.0,210.0,9,111,0.0,,,55,53,0.0,0.0,,368.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,111114,2,1,0,0,1,,0.0,690.0,43,2.0,0.0,3.0,2.0,1.5,2,2,131.23606619206214,0.0,9952.32308882625,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03697629153671306,6634.8820592175,1,1,1_1,1_1_1,1_2_1,1_0_0 -6304,0,74.0,0.0,2,111,280.0,,,71,71,0.0,0.0,,409.0,221.92218354053472,,70,2,2,1,2,1,2,2,2,0,,1,,2,124287,2,1,0,0,2,,220.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,130.63446578750373,280.0,16543.288535844582,5,5,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.02472301677588551,11028.859023896388,2,1,2_0,2_1_0,2_2_0,2_0_1 -6305,2,45.0,0.0,7,111,510.0,,,0,56,0.0,0.0,,769.0,445.56469408525965,,50,0,0,0,0,0,0,0,0,0,,1,,5,118635,1,1,0,0,2,,284.0,,32,2.0,0.0,4.0,4.0,2.5,2,2,124.43630317902715,510.0,15400.240200494387,0,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049934286088298356,6160.096080197754,1,1,1_0,1_1_0,1_2_0,1_0_0 -6306,2,56.0,0.0,2,111,660.0,,,0,56,0.0,155.27587572291867,,1069.0,445.56469408525965,,71,2,2,2,2,1,2,2,2,0,,1,,2,103568,2,2,0,0,2,,160.0,,12,1.0,6.0,4.0,1.0,1.0,2,2,140.0103290487824,660.0,7708.0567986230635,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.1386860564119042,7708.0567986230635,1,1,1_0,1_1_0,1_2_0,1_0_1 -6307,1,23.0,413.0,6,111,0.0,,,85,55,0.0,0.0,,1917.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,4,116711,2,1,0,0,2,,0.0,550.0,42,1.0,1.0,4.0,4.0,2.1,1,1,161.55657530522535,0.0,9370.754332392182,6,4,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.20457264506160894,4462.2639678058,1,1,1_1,1_1_1,1_2_1,1_0_0 -6308,2,50.0,0.0,9,111,1000.0,,,85,22,0.0,0.0,,1030.0,51.60981012570575,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,128994,2,1,0,0,2,,500.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,151.50233898439197,1000.0,195917.49194721755,5,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005257315157329055,130611.66129814503,10,5,10,10_1,10_2,10_0_0 -6309,2,53.0,0.0,5,111,550.0,,,67,85,0.0,0.0,,694.0,247.7270886033876,,33,0,0,0,0,0,0,0,0,0,,1,,3,100958,2,2,0,0,2,,150.0,,42,1.0,2.0,4.0,3.0,1.8,2,2,119.6031025551457,550.0,32976.66055981816,4,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021045187360348862,18320.366977676757,4,2,4_0,4_1_0,4_2_0,4_0_0 -6310,0,76.0,0.0,6,111,271.0,,,0,75,0.0,0.0,,311.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,1,,4,123796,2,2,0,0,2,,363.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,119.80821810762042,271.0,28799.616269803835,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010798754993346248,28799.616269803835,8,4,8,8_1,8_2,8_0_0 -6311,2,78.0,0.0,5,111,550.0,,,0,77,0.0,0.0,,670.0,206.439240502823,,44,0,0,0,0,0,0,0,0,0,,1,,3,104246,2,2,0,0,2,,360.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,119.8033098496317,550.0,13407.613787405371,0,5,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04997160647850506,13407.613787405371,3,2,3_0,3_1_0,3_2_0,3_0_0 -6312,1,53.0,200.0,5,111,0.0,,,0,78,0.0,0.0,,387.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,,3,130941,2,1,0,0,1,,235.0,400.0,11,0.0,0.0,3.0,1.0,1.0,2,2,148.5820814508783,0.0,5241.0,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07384087006296508,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -6313,0,71.0,0.0,2,111,300.0,,,77,86,0.0,103.51725048194578,,568.0,289.01493670395223,,50,0,0,0,0,0,0,0,0,0,,1,,2,123961,2,1,0,0,2,,350.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,131.10573627993912,300.0,21386.503259029945,6,5,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02655880641732189,14257.668839353297,3,2,3_0,3_1_0,3_2_0,3_0_1 -6314,2,43.0,0.0,7,111,360.0,,,85,85,0.0,51.75862524097289,,674.0,454.1663291062106,,42,0,0,0,0,0,0,0,0,0,,1,,5,103811,1,1,0,0,2,,1800.0,,41,1.0,2.0,3.0,8.0,3.6999999999999993,1,1,133.09357987720924,360.0,25162.0,6,6,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02678642397265718,6800.540540540542,1,1,1_0,1_1_0,1_2_0,1_0_0 -6315,2,42.0,0.0,7,111,0.0,,,0,54,0.0,0.0,,213.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,112828,2,1,0,0,1,,133.0,670.0,32,1.0,0.0,3.0,2.0,1.3,4,2,163.33533715133072,0.0,31531.81456222527,0,1,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0067550822227392966,24255.241970942516,7,4,7,7_0,7_2,7_0_0 -6316,2,83.0,0.0,2,111,250.0,,,0,77,0.0,0.0,,316.0,113.54158227655265,,70,2,2,2,2,1,2,2,2,0,,1,,2,104564,1,2,0,0,2,,100.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,121.483430756056,250.0,9884.754237288136,0,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.031968422523643236,9884.754237288136,2,1,2_0,2_1_0,2_2_0,2_0_1 -6317,0,74.0,0.0,1,111,392.0,,,0,75,0.0,0.0,,644.0,433.5224050559283,,50,2,2,1,2,1,2,2,2,0,,1,,1,120491,1,1,0,0,2,,300.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,121.483430756056,392.0,50530.68344029413,0,5,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.01274473163935998,50530.68344029413,10,5,10,10_1,10_2,10_1_0 -6318,2,57.0,0.0,7,111,1240.0,,,85,37,0.0,0.0,,1282.0,72.25373417598806,,70,0,0,0,0,0,0,0,0,0,,1,,5,129461,2,2,0,0,2,,330.0,,42,1.0,1.0,9.0,3.0,2.0,2,2,125.91976137746684,1240.0,82852.20603591335,6,1,1,2,210.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015473335730424616,41426.10301795667,9,5,9,9_1,9_2,9_0_0 -6319,2,59.0,0.0,5,111,420.0,,,77,63,0.0,0.0,,672.0,433.5224050559283,,60,0,0,0,0,0,0,0,0,0,,1,,3,105064,2,1,0,0,2,,320.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,126.2308387696621,420.0,11139.045791937155,6,1,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06032832726896751,7426.030527958103,1,1,1_0,1_1_0,1_2_0,1_0_0 -6320,2,61.0,0.0,5,111,224.0,,,85,78,0.0,0.0,,392.0,289.01493670395223,,50,0,0,0,0,0,0,0,0,0,,1,,3,120612,1,1,0,0,2,,137.0,,41,0.0,3.0,4.0,2.0,1.5,4,4,115.37591338770052,224.0,12376.983801603104,6,5,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031671690476740136,8251.32253440207,1,1,1_0,1_1_0,1_2_0,1_0_0 -6321,0,63.0,0.0,2,111,300.0,,,77,78,0.0,0.0,,384.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,1,,2,127993,1,2,0,0,2,,283.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,123.01769660221551,300.0,33207.197881592954,5,5,5,0,29.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011563757995156063,22138.13192106197,6,3,6,6_1,6_2,6_0_1 -6322,1,59.0,250.0,5,111,80.0,,,0,77,0.0,0.0,,130.0,86.01635020950958,,60,0,0,0,0,0,0,0,0,0,,2,,3,110629,2,2,0,0,2,,50.0,380.0,11,0.0,2.0,2.0,1.0,1.0,2,2,185.88275069902605,80.0,7002.221846819176,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018565535746208,7002.221846819176,1,1,1_1,1_0_1,1_2_1,1_0_0 -6323,1,45.0,203.0,7,111,360.0,,,63,54,0.0,0.0,,500.0,240.84578058662683,,70,0,0,0,0,0,0,0,0,0,,2,,5,123008,2,2,0,0,2,,600.0,453.0,43,2.0,1.0,2.0,3.0,1.8,2,2,144.56424567312055,360.0,14737.25997101474,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033927609405235475,8187.366650563745,1,1,1_1,1_0_1,1_2_1,1_0_0 -6324,1,36.0,393.0,7,111,0.0,,,0,85,0.0,0.0,,170.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,125234,2,2,0,0,2,,801.0,369.0,31,0.0,0.0,4.0,4.0,2.3,3,3,140.23383779791885,0.0,14904.788318963709,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011405730585499497,6480.342747375526,1,1,1_1,1_0_1,1_2_1,1_0_0 -6325,2,63.0,0.0,2,111,480.0,,,0,77,0.0,0.0,,1080.0,1032.196202514115,,71,0,0,0,0,0,0,0,0,0,,1,,2,100505,2,2,0,0,2,,400.0,416.0,21,0.0,0.0,4.0,3.0,2.0,2,2,167.7905132451771,480.0,16572.127995009014,0,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06516966320349812,8286.063997504507,1,1,1_0,1_1_0,1_2_0,1_0_1 -6326,2,81.0,0.0,2,111,600.0,,,0,75,0.0,0.0,,680.0,137.62616033521533,,33,0,0,0,0,0,0,0,0,0,,1,,2,126272,2,1,0,0,2,,480.0,,11,0.0,5.0,6.0,1.0,1.0,2,2,139.17425594222215,600.0,34528.53654724336,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019693855228112435,34528.53654724336,9,5,9,9_1,9_2,9_0_1 -6327,0,22.0,0.0,2,111,576.0,,,68,81,0.0,0.0,,1080.0,867.0448101118566,,71,0,0,0,0,0,0,0,0,0,,1,,2,129553,1,3,0,0,2,,600.0,,43,2.0,1.0,3.0,8.0,3.6999999999999993,2,2,149.55149115208908,576.0,35270.40469588152,4,4,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03062057295095653,9532.54180969771,1,1,1_0,1_1_0,1_2_0,1_0_1 -6329,0,40.0,0.0,2,111,510.0,,,0,68,0.0,0.0,,636.0,216.76120252796414,,71,2,2,2,2,1,2,2,2,0,,1,,2,128161,1,3,0,0,2,,213.0,,22,1.0,8.0,5.0,2.0,1.5,2,2,117.70668258747006,510.0,24798.753922594635,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.02564644989765102,16532.50261506309,4,2,4_0,4_1_0,4_2_0,4_0_1 -6330,2,42.0,0.0,6,111,400.0,,,68,63,0.0,0.0,,589.0,325.14180379194624,,71,2,2,2,2,1,2,2,2,2,15.0,1,,4,115766,2,2,0,0,2,,492.0,,43,2.0,0.0,4.0,5.0,2.8,2,2,117.22765215253747,400.0,36879.7507937968,1,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.015970823753480197,13171.339569213142,2,1,2_0,2_1_0,2_2_0,2_0_0 -6331,2,55.0,0.0,2,111,400.0,,,85,68,0.0,0.0,,694.0,505.7761392319164,,10,0,0,0,0,0,0,0,0,0,,1,,2,122281,2,3,0,0,2,,170.0,,42,2.0,3.0,4.0,4.0,2.3,2,2,138.35508962301813,400.0,12657.513661665147,6,4,0,1,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054829093497395565,5503.26680941963,1,1,1_0,1_1_0,1_2_0,1_0_1 -6332,2,53.0,0.0,6,111,684.0,,,56,63,0.0,0.0,,936.0,433.5224050559283,,12,0,0,0,0,0,0,0,0,2,15.0,1,,4,108883,1,2,0,0,2,,527.0,,43,3.0,0.0,5.0,4.0,2.5,3,2,118.00080644011675,684.0,50777.46390076298,1,1,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018433374337664305,20310.98556030519,5,3,5,5_1,5_2,5_0_0 -6333,2,43.0,0.0,9,111,670.0,,,74,42,0.0,0.0,,754.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,114861,2,1,0,0,1,,95.0,1176.0,42,1.0,4.0,5.0,4.0,2.1,2,2,157.30280609789128,670.0,72845.62867702493,5,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010350655402302912,34688.394608107104,9,5,9,9_1,9_2,9_0_0 -6334,0,85.0,0.0,6,111,500.0,,,0,86,0.0,0.0,,752.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,4,133472,1,2,0,0,2,,144.0,,21,0.0,11.0,4.0,2.0,1.5,2,2,131.10573627993912,500.0,7018.509347665386,0,5,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1071452587364784,4679.006231776923,1,1,1_0,1_1_0,1_2_0,1_0_0 -6335,2,38.0,0.0,7,111,600.0,,,43,43,0.0,0.0,,747.0,252.8880696159582,,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,121544,2,2,0,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,134.1576252608355,600.0,77074.49288440558,1,1,1,2,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009691922347388417,36702.13946876456,9,5,9,9_1,9_2,9_0_0 -6336,2,49.0,0.0,8,111,610.0,,,34,43,0.0,0.0,,736.0,216.76120252796414,,44,0,0,0,0,0,0,0,0,0,,1,1999.0,6,115361,2,1,0,0,2,,320.0,,43,2.0,1.0,7.0,5.0,2.4,5,3,134.1576252608355,610.0,126557.17580272409,1,1,0,1,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005815553289109964,52732.15658446837,10,5,10,10_1,10_2,10_0_0 -6337,2,39.0,0.0,8,111,372.0,,,0,63,0.0,0.0,,624.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,114400,2,1,0,0,2,,219.0,,22,1.0,3.0,3.0,3.0,2.0,2,2,112.6028829454199,372.0,32894.982726914226,0,4,0,1,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01896945820523115,16447.491363457113,4,2,4_0,4_1_0,4_2_0,4_0_0 -6338,2,68.0,0.0,5,111,340.0,,,86,77,0.0,0.0,,592.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,,3,100907,1,3,0,0,2,,234.0,,41,1.0,3.0,5.0,3.0,2.0,2,2,118.00080644011675,340.0,24995.269588255098,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02368448149397724,12497.634794127549,2,1,2_0,2_1_0,2_2_0,2_0_0 -6339,2,51.0,0.0,8,111,348.0,,,85,45,0.0,0.0,,726.0,650.2836075838925,,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,125362,1,1,0,0,2,,360.0,,42,1.0,0.0,3.0,5.0,2.5999999999999996,2,2,134.56582819492712,348.0,38160.1502158415,6,1,1,2,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01902508234096558,14676.980852246734,3,2,3_0,3_1_0,3_2_0,3_0_0 -6340,1,50.0,357.0,7,111,530.0,,,0,85,0.0,0.0,,656.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,2,,5,101502,2,2,0,0,2,,350.0,416.0,31,1.0,0.0,3.0,2.0,1.5,1,1,157.19564908829665,530.0,7741.0,0,6,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08474357318175946,5160.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_0 -6341,2,73.0,0.0,7,111,760.0,,,42,74,0.0,0.0,,865.0,180.63433543997013,,42,0,0,0,0,0,0,0,0,0,,2,,5,131164,2,3,0,0,2,,400.0,600.0,42,1.0,3.0,4.0,2.0,1.5,3,2,166.0881946568047,760.0,61346.70991409855,1,5,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014100185669471538,40897.806609399035,9,5,9,9_0,9_2,9_0_0 -6342,2,41.0,0.0,8,111,480.0,,,0,56,0.0,0.0,,528.0,82.5756962011292,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,102699,2,1,0,0,1,,78.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,122.6118192854429,480.0,20328.359712230216,0,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025973566361202162,11293.533173461232,2,1,2_0,2_1_0,2_2_0,2_0_0 -6343,2,52.0,0.0,7,111,620.0,,,56,21,0.0,0.0,,880.0,447.28502108944986,,70,2,2,1,2,1,2,2,2,0,,1,,5,132969,2,2,0,0,2,,500.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,141.2559983349785,620.0,24499.109183346314,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03591967338135686,11666.242468260149,2,1,2_0,2_1_0,2_2_0,2_0_0 -6344,2,56.0,0.0,6,111,720.0,,,52,55,0.0,144.92415067472407,,980.0,206.439240502823,,33,2,2,1,2,1,2,2,2,1,5.0,1,,4,111654,2,2,0,0,2,,420.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,110.82495320151465,720.0,45667.76523384164,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.021459337784144095,22833.88261692082,6,3,6,6_1,6_2,6_0_0 -6345,2,52.0,0.0,7,111,1200.0,,,85,47,0.0,0.0,,1326.0,216.76120252796414,,70,0,0,0,0,0,0,0,0,0,,1,,5,104850,2,1,0,0,1,,400.0,,42,1.0,0.0,5.0,5.0,3.0,1,1,136.4620594449141,1200.0,46640.64217270958,5,1,0,1,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02843014028601584,15546.880724236527,3,2,3_0,3_1_0,3_2_0,3_0_0 -6346,2,31.0,0.0,6,111,600.0,,,55,55,0.0,0.0,,640.0,68.81308016760767,,60,0,0,0,0,0,0,0,0,2,20.0,1,,4,117393,2,1,0,0,2,,300.0,1050.0,43,2.0,0.0,4.0,3.0,1.8,2,2,146.66992669453256,600.0,62920.138847723334,4,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010171624089210945,34955.63269317963,9,5,9,9_1,9_2,9_0_0 -6347,2,36.0,0.0,9,111,0.0,,,55,33,0.0,0.0,,834.0,0.0,,20,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,124053,2,1,0,0,2,,263.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,116.51482318376482,0.0,78193.09409228574,1,1,1,2,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010665903551734239,33996.99743142859,9,5,9,9_1,9_2,9_0_0 -6348,2,39.0,0.0,6,111,0.0,,,0,52,0.0,0.0,,705.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,104951,2,1,0,0,2,,402.0,800.0,12,1.0,2.0,4.0,1.0,1.0,3,3,154.7155573361336,0.0,28509.300320664825,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02472877243812905,28509.300320664825,8,4,8,8_1,8_2,8_0_0 -6349,2,65.0,0.0,7,111,780.0,,,78,77,0.0,0.0,,906.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,5,113580,2,1,0,0,1,,480.0,,41,0.0,3.0,9.0,3.0,2.0,1,1,120.66611882750112,780.0,55765.71992111626,5,5,0,1,228.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01624654001206454,27882.85996055813,7,4,7,7_1,7_2,7_0_0 -6350,2,65.0,0.0,7,111,452.0,,,77,74,0.0,0.0,,516.0,110.10092826817227,,44,0,0,0,0,0,0,0,0,0,,1,,5,116491,2,1,0,0,2,,154.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,124.92491378070531,452.0,72103.21555900054,5,5,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007156407602623049,48068.81037266703,10,5,10,10_1,10_2,10_0_0 -6351,2,63.0,0.0,6,111,1076.0,,,75,75,0.0,0.0,,1223.0,252.8880696159582,,71,2,2,1,2,1,2,2,2,0,,1,,4,107939,2,2,0,0,1,,250.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,131.10573627993912,1076.0,41716.531249284366,5,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02931691498249822,27811.020832856244,7,4,7,7_1,7_2,7_0_0 -6352,1,29.0,413.0,9,111,275.0,,,0,81,0.0,0.0,,485.0,361.26867087994026,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,123486,2,1,0,0,2,,80.0,439.0,32,1.0,0.0,3.0,3.0,1.6,2,2,127.6759707303335,275.0,9434.329133862557,0,4,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05140800083592522,5896.455708664098,1,1,1_1,1_0_1,1_2_1,1_0_0 -6353,1,34.0,631.0,9,111,588.0,,,0,85,0.0,0.0,,714.0,216.76120252796414,,50,0,0,0,0,0,0,0,0,0,,2,2011.0,6,129565,2,2,0,0,2,,224.0,703.0,31,0.0,0.0,5.0,7.0,2.9999999999999996,2,2,184.04157620427983,588.0,26534.741946210863,0,6,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02690811922902301,8844.91398207029,1,1,1_1,1_0_1,1_2_1,1_0_0 -6354,2,67.0,0.0,2,111,424.0,,,0,77,0.0,0.0,,445.0,36.12686708799403,,71,2,2,2,2,1,2,2,2,0,,1,,2,104069,1,3,0,0,2,,56.0,,11,0.0,1.0,1.0,1.0,1.0,2,2,143.00505798728162,424.0,9046.716438095336,0,5,0,1,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.049189117736256664,9046.716438095336,1,1,1_0,1_1_0,1_2_0,1_0_1 -6355,2,77.0,0.0,2,111,460.0,,,78,77,0.0,0.0,,712.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,0,,1,,2,125087,1,1,0,0,2,,268.0,,41,0.0,5.0,3.0,2.0,1.5,4,3,117.68629316850709,460.0,15459.89192482667,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046054655715711455,10306.594616551114,2,1,2_0,2_1_0,2_2_0,2_0_1 -6356,2,51.0,0.0,2,111,600.0,,,0,85,0.0,0.0,,700.0,172.03270041901916,,71,0,0,0,0,0,0,0,0,0,,1,,2,122803,2,2,0,0,2,,550.0,,21,1.0,0.0,4.0,3.0,2.0,2,2,114.1304464618988,600.0,21214.025992088667,0,7,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03299703697266377,10607.012996044334,2,1,2_0,2_1_0,2_2_0,2_0_1 -6357,2,92.0,0.0,7,111,600.0,,,86,78,0.0,207.03450096389156,,880.0,137.62616033521533,,43,0,0,0,0,0,0,0,0,0,,1,,5,107121,2,1,0,0,2,,240.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,114.1304464618988,600.0,19585.628808269583,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04493090360358715,13057.085872179721,2,1,2_0,2_1_0,2_2_0,2_0_0 -6358,0,30.0,0.0,7,111,240.0,,,62,42,0.0,0.0,,380.0,240.84578058662683,,71,2,2,2,2,1,2,2,2,0,,1,,5,112313,1,3,0,0,2,,240.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,170.30950772295748,240.0,18635.500600459607,4,4,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.020391188202941436,7764.79191685817,1,1,1_0,1_1_0,1_2_0,1_0_0 -6359,2,83.0,0.0,6,111,200.0,,,0,77,0.0,0.0,,240.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,1,,4,104960,2,1,0,0,2,,100.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,139.17425594222215,200.0,9353.63276145653,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025658480092244678,9353.63276145653,1,1,1_0,1_1_0,1_2_0,1_0_0 -6360,2,37.0,0.0,8,111,960.0,,,55,22,0.0,0.0,,1020.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,1,1.0,1,2003.0,6,101189,1,1,0,0,1,,600.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,166.71567516970885,960.0,25745.909332234263,1,1,1,2,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03961794422708328,14303.282962352368,3,2,3_0,3_1_0,3_2_0,3_0_0 -6361,2,80.0,0.0,7,111,1100.0,,,78,78,0.0,0.0,,1220.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,1,,5,122790,2,1,0,0,2,,480.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,137.20184549462962,1100.0,50258.59180877119,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024274456487797656,33505.72787251413,8,4,8,8_1,8_2,8_0_0 -6362,2,47.0,0.0,8,111,480.0,,,0,63,0.0,0.0,,564.0,144.50746835197612,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,120470,2,1,0,0,2,,270.0,,12,1.0,4.0,4.0,1.0,1.0,2,2,129.66267167545044,480.0,27777.749379640616,0,1,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02030402075746919,27777.749379640616,7,4,7,7_1,7_2,7_0_0 -6363,2,30.0,0.0,7,111,360.0,,,85,56,0.0,0.0,,486.0,216.76120252796414,,20,0,0,0,0,0,0,0,0,0,,1,,5,132150,2,1,0,0,1,,250.0,,42,1.0,0.0,3.0,4.0,2.1,3,2,109.41126485409657,360.0,14052.02722595209,7,1,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03458575707157949,6691.441536167661,1,1,1_0,1_1_0,1_2_0,1_0_0 -6364,2,56.0,0.0,6,111,652.0,,,63,56,0.0,0.0,,946.0,505.7761392319164,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,131294,2,1,0,0,2,,233.0,,43,5.0,0.0,5.0,5.0,3.0,1,1,138.35508962301813,652.0,56804.44236918421,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01665362708521534,18934.814123061402,5,3,5,5_1,5_2,5_0_0 -6365,2,64.0,0.0,5,111,480.0,,,86,71,0.0,0.0,,732.0,433.5224050559283,,71,2,2,2,2,1,2,2,2,0,,1,,3,104557,1,2,0,0,2,,450.0,,41,2.0,3.0,8.0,5.0,2.8,2,2,122.89331225709395,480.0,20263.63586569135,6,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03612382322953995,7237.012809175483,1,1,1_0,1_1_0,1_2_0,1_0_0 -6366,2,42.0,0.0,7,111,600.0,,,56,62,0.0,0.0,,852.0,433.5224050559283,,71,0,0,0,0,0,0,0,0,1,15.0,1,,5,131150,2,1,0,0,2,,360.0,,43,2.0,1.0,5.0,8.0,3.499999999999999,2,2,113.37136621145451,600.0,14182.523804150293,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06007393407305092,4052.149658328656,1,1,1_0,1_1_0,1_2_0,1_0_0 -6367,2,55.0,0.0,8,111,1440.0,,,21,34,0.0,0.0,,1464.0,41.2878481005646,,41,0,0,0,0,0,0,0,0,0,,1,2002.0,6,108911,2,3,0,0,1,,350.0,,43,2.0,3.0,6.0,3.0,1.8,2,2,160.468536908104,1440.0,91877.2029622673,1,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015934311807481172,51042.890534592945,10,5,10,10_1,10_2,10_0_0 -6368,2,46.0,0.0,7,111,960.0,,,52,42,0.0,0.0,,960.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,123030,1,1,0,0,1,,160.0,1116.0,43,2.0,1.0,4.0,4.0,2.3,2,2,146.90399231384737,960.0,56673.26027144184,1,1,2,3,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016939205463070078,24640.54794410515,7,4,7,7_1,7_2,7_0_0 -6369,2,53.0,0.0,6,111,480.0,,,85,48,0.0,0.0,,732.0,433.5224050559283,,20,0,0,0,0,0,0,0,0,0,,1,,4,115244,1,1,0,0,2,,300.0,,42,1.0,1.0,3.0,3.0,2.0,2,2,108.16130391832824,480.0,51877.11245806898,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014110268773954179,25938.55622903449,7,4,7,7_1,7_2,7_0_0 -6370,2,50.0,0.0,6,111,720.0,,,56,64,0.0,0.0,,795.0,129.02452531426437,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,122292,2,2,0,0,2,,1080.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,143.9675403182739,720.0,41386.18582644637,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01920930822989693,16554.47433057855,4,2,4_0,4_1_0,4_2_0,4_0_0 -6371,1,59.0,274.0,6,111,360.0,,,0,43,0.0,0.0,,440.0,137.62616033521533,,20,0,0,0,0,0,0,0,0,0,,1,,4,127188,2,1,0,0,2,,180.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,173.99555580993953,360.0,7037.605750068183,0,4,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06252126300137474,4691.7371667121215,1,1,1_1,1_1_1,1_2_1,1_0_0 -6372,1,52.0,329.0,5,111,1150.0,,,0,85,0.0,0.0,,1300.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,3,132661,2,2,0,0,2,,250.0,315.0,31,0.0,0.0,3.0,3.0,1.6,3,3,128.01266256899873,1150.0,10996.08503968751,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11822389471416309,6872.553149804694,1,1,1_1,1_0_1,1_2_1,1_0_0 -6373,1,38.0,320.0,5,111,500.0,,,0,81,0.0,0.0,,560.0,103.2196202514115,,71,0,0,0,0,0,0,0,0,0,,2,,3,129396,2,1,0,0,2,,450.0,385.0,22,1.0,0.0,3.0,3.0,2.0,2,2,128.01266256899873,500.0,17487.18348623853,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03202345308726759,8743.591743119265,1,1,1_1,1_0_1,1_2_1,1_0_0 -6374,1,37.0,175.0,5,111,468.0,,,55,65,0.0,0.0,,528.0,103.2196202514115,,70,0,0,0,0,0,0,0,0,3,30.0,2,,3,109257,2,1,0,0,2,,150.0,345.0,43,2.0,0.0,2.0,4.0,2.1,2,2,161.61619235116083,468.0,27321.29193111589,1,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019325586847475068,13010.13901481709,2,1,2_1,2_0_1,2_2_1,2_0_0 -6375,2,43.0,0.0,7,111,1680.0,,,42,37,0.0,0.0,,1730.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,124960,2,1,0,0,2,,840.0,1600.0,43,2.0,0.0,5.0,6.0,3.0999999999999996,1,1,151.19417261351725,1680.0,99235.93852689605,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01743320036753737,32011.593073192278,8,4,8,8_1,8_2,8_0_0 -6376,2,50.0,0.0,5,111,500.0,,,78,52,0.0,0.0,,625.0,215.04087552377396,,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,101849,2,2,0,0,2,,300.0,459.0,42,2.0,1.0,4.0,3.0,2.0,4,3,154.1973947813894,500.0,12032.565765334888,7,1,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05194237141014331,6016.282882667444,1,1,1_0,1_0_0,1_2_0,1_0_0 -6377,0,72.0,0.0,2,111,350.0,,,0,77,0.0,0.0,,580.0,395.67521096374406,,10,0,0,0,0,0,0,0,0,0,,1,,2,111002,2,2,0,0,1,,372.0,,21,0.0,4.0,4.0,3.0,1.8,1,1,133.114933548679,350.0,17132.0,0,5,5,0,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033854774690637406,9517.777777777777,1,1,1_0,1_1_0,1_2_0,1_0_1 -6378,0,87.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,335.0,3.4406540083803834,,71,0,0,0,0,0,0,0,0,0,,1,,2,111864,1,1,0,0,2,,0.0,,11,0.0,8.0,2.0,1.0,1.0,2,2,138.00249421033155,0.0,14714.062621662937,0,5,5,0,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022767335481282555,14714.062621662937,3,2,3_0,3_1_0,3_2_0,3_0_1 -6379,1,26.0,405.0,7,111,1068.0,,,0,85,0.0,0.0,,1548.0,825.756962011292,,71,0,0,0,0,0,0,0,0,0,,2,,5,130141,2,1,0,0,2,,800.0,431.0,31,0.0,0.0,3.0,7.0,3.1999999999999993,2,2,158.07632421060828,1068.0,24147.044466381307,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06410722447441554,7545.95139574416,1,1,1_1,1_0_1,1_2_1,1_0_0 -6380,1,61.0,219.0,7,111,130.0,,,0,78,0.0,0.0,,170.0,68.81308016760767,,70,0,0,0,0,0,0,0,0,0,,2,,5,133468,2,1,0,0,2,,200.0,255.0,11,0.0,4.0,1.0,1.0,1.0,1,1,160.34518219353953,130.0,7581.674698795181,0,6,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022422486687145127,7581.674698795181,1,1,1_1,1_0_1,1_2_1,1_0_0 -6381,1,51.0,358.0,7,111,620.0,,,0,52,0.0,0.0,,860.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,2,,5,119800,2,1,0,0,2,,260.0,449.0,32,2.0,0.0,3.0,3.0,1.8,4,3,128.29378420100886,620.0,10200.26844085045,0,4,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08431150660269263,5666.815800472472,1,1,1_1,1_0_1,1_2_1,1_0_0 -6382,1,33.0,458.0,7,111,912.0,,,0,85,0.0,0.0,,1032.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,2,,5,121044,1,1,0,0,1,,300.0,460.0,31,0.0,0.0,4.0,5.0,2.4,1,1,135.586196714376,912.0,16394.765321147745,0,6,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0629469211534742,6831.152217144894,1,1,1_1,1_0_1,1_2_1,1_0_0 -6383,2,51.0,0.0,5,111,292.0,,,0,64,0.0,0.0,,292.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,131010,2,2,0,0,2,,472.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,152.15161227619382,292.0,5214.799999999999,0,4,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05599447725703767,5214.799999999999,1,1,1_0,1_1_0,1_2_0,1_0_0 -6384,2,52.0,0.0,7,111,1260.0,,,85,33,0.0,0.0,,1392.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,107120,2,1,0,0,2,,756.0,,42,1.0,0.0,5.0,3.0,1.8,1,1,134.70036231125053,1260.0,149454.11608408138,6,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009313895371184523,83030.06449115633,10,5,10,10_1,10_2,10_0_0 -6385,2,50.0,0.0,1,111,1980.0,,,77,37,0.0,0.0,,2068.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,121382,2,2,0,0,2,,1500.0,,42,2.0,3.0,4.0,3.0,2.0,2,2,104.58596058339431,1980.0,80748.75243719132,5,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025610302792090187,40374.37621859566,9,5,9,9_1,9_2,9_1_0 -6386,2,38.0,0.0,2,111,300.0,,,0,65,0.0,0.0,,476.0,302.77755273747374,,50,0,0,0,0,0,0,0,0,0,,1,,2,125281,2,3,0,0,2,,300.0,,22,2.0,8.0,7.0,3.0,2.0,3,2,109.59957123954585,300.0,53471.191098826595,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008901989841973908,26735.595549413298,7,4,7,7_1,7_2,7_0_1 -6387,1,52.0,139.0,9,111,400.0,,,0,52,0.0,0.0,,488.0,151.38877636873687,,41,2,2,1,2,1,2,2,2,0,,2,2007.0,6,103165,2,2,0,0,2,,252.0,142.0,12,1.0,0.0,1.0,1.0,1.0,2,2,135.76182969215049,400.0,3384.618466907041,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.14418168687886054,3384.618466907041,1,1,1_1,1_0_1,1_2_1,1_0_0 -6388,1,30.0,116.0,9,111,350.0,,,55,64,0.0,0.0,,482.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,114713,2,3,0,0,1,,160.0,428.0,43,2.0,0.0,3.0,3.0,1.8,2,2,133.114933548679,350.0,30165.76836539975,4,1,3,4,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015978376355659345,16758.76020299986,4,2,4_1,4_0_1,4_2_1,4_0_0 -6389,2,63.0,0.0,7,111,600.0,,,77,78,0.0,0.0,,850.0,430.0817510475479,,71,0,0,0,0,0,0,0,0,0,,1,,5,121763,2,1,0,0,2,,1000.0,,41,1.0,7.0,6.0,3.0,2.0,3,3,126.59396626699667,600.0,21273.6071835542,6,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03995561226011083,10636.8035917771,2,1,2_0,2_1_0,2_2_0,2_0_0 -6391,2,56.0,0.0,6,111,600.0,,,85,85,0.0,0.0,,840.0,412.878481005646,,50,0,0,0,0,0,0,0,0,0,,1,,4,133327,2,2,0,0,2,,900.0,,41,0.0,1.0,4.0,3.0,2.0,1,1,116.2817879860915,600.0,25600.119500850713,7,7,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032812346831899986,12800.059750425356,2,1,2_0,2_1_0,2_2_0,2_0_0 -6392,2,37.0,0.0,8,111,360.0,,,54,47,0.0,0.0,,480.0,206.439240502823,,50,0,0,0,0,0,0,0,0,2,2.0,1,2000.0,6,122070,2,1,0,0,2,,300.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,122.64013516234219,360.0,56542.57587472673,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008489178156005257,26925.036130822253,7,4,7,7_1,7_2,7_0_0 -6393,2,25.0,0.0,7,111,0.0,,,56,64,0.0,0.0,,263.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,119548,2,2,0,0,2,,296.0,387.0,43,2.0,0.0,3.0,3.0,1.8,2,2,129.76466351532864,0.0,48147.7780188137,4,4,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005462349683036941,26748.76556600761,7,4,7,7_0,7_2,7_0_0 -6394,2,37.0,0.0,7,111,1200.0,,,37,23,0.0,0.0,,1288.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,126489,1,2,0,0,2,,600.0,1000.0,43,2.0,0.0,4.0,3.0,1.8,1,1,139.10269866306518,1200.0,92841.69741782866,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013873076815942204,51578.720787682585,10,5,10,10_1,10_2,10_0_0 -6395,2,59.0,0.0,6,111,1050.0,,,43,67,0.0,0.0,,1182.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,4,115173,2,1,0,0,2,,600.0,,43,2.0,2.0,4.0,3.0,2.0,1,1,119.93122006160898,1050.0,117424.99682741023,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010065999846159576,58712.498413705114,10,5,10,10_1,10_2,10_0_0 -6396,2,38.0,0.0,8,111,444.0,,,55,38,0.0,0.0,,444.0,0.0,,41,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,101584,2,3,0,0,2,,358.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,115.09834128046352,444.0,111692.50178796994,4,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003975199703583163,62051.38988220552,10,5,10,10_0,10_2,10_0_0 -6397,2,49.0,0.0,9,111,250.0,,,31,42,0.0,0.0,,290.0,68.81308016760767,,50,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,122789,2,1,0,0,2,,500.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,134.1431286359909,250.0,51005.579476655585,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005685652490875596,22176.338902893734,6,3,6,6_1,6_2,6_0_0 -6398,2,44.0,0.0,7,111,1068.0,,,38,46,0.0,0.0,,1068.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,5,113751,2,1,0,0,2,,330.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,115.58028983069161,1068.0,74332.99246385359,4,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014367778890636533,41296.10692436311,9,5,9,9_0,9_2,9_0_0 -6399,2,58.0,0.0,6,111,0.0,,,0,75,0.0,0.0,,396.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,101763,2,1,0,0,2,,417.0,700.0,11,0.0,5.0,4.0,1.0,1.0,3,3,115.58028983069161,0.0,42683.940534572685,0,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009277493948321199,42683.940534572685,9,5,9,9_0,9_2,9_0_0 -6400,1,27.0,200.0,7,111,500.0,,,55,47,0.0,0.0,,500.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,5,130115,2,1,0,0,1,,300.0,690.0,43,2.0,0.0,3.0,3.0,1.8,1,1,151.20195422384424,500.0,27194.8272112471,4,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018385849489538676,15108.237339581721,3,2,3_1,3_0_1,3_2_1,3_0_0 -6401,1,28.0,413.0,7,111,280.0,,,0,81,0.0,0.0,,400.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,2,,5,121316,2,1,0,0,2,,280.0,422.0,32,1.0,0.0,3.0,3.0,1.6,1,1,127.10914008447098,280.0,9689.954545454544,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0412798634011793,6056.22159090909,1,1,1_1,1_0_1,1_2_1,1_0_0 -6402,1,50.0,103.0,7,111,672.0,,,56,65,0.0,0.0,,752.0,137.62616033521533,,44,0,0,0,0,0,0,0,0,2,10.0,2,,5,101173,2,2,0,0,2,,400.0,422.0,43,2.0,0.0,3.0,4.0,2.1,2,2,132.2995205291022,672.0,35915.417993697214,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020938082918371386,17102.579996998673,4,2,4_1,4_0_1,4_2_1,4_0_0 -6403,1,63.0,253.0,7,111,180.0,,,0,86,0.0,0.0,,260.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,2,,5,119424,2,2,0,0,2,,200.0,330.0,11,0.0,0.0,1.0,1.0,1.0,2,2,139.0365499946248,180.0,10627.95203038527,0,5,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024463791260692664,10627.95203038527,2,1,2_1,2_0_1,2_2_1,2_0_0 -6404,1,34.0,66.0,7,111,580.0,,,85,62,0.0,0.0,,668.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,0,,2,,5,115597,2,1,0,0,2,,360.0,500.0,42,1.0,0.0,4.0,5.0,2.4,1,1,154.35983940550747,580.0,39605.74341587788,6,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016866240660747194,16502.393089949117,4,2,4_1,4_0_1,4_2_1,4_0_0 -6405,1,21.0,344.0,9,111,660.0,,,0,56,0.0,0.0,,900.0,412.878481005646,,50,0,0,0,0,0,0,0,0,1,25.0,1,2007.0,6,120885,2,1,0,0,2,,824.0,,22,3.0,0.0,5.0,4.0,2.3,2,2,117.9247518218415,660.0,9438.588623796826,0,1,1,2,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09535323933187378,4103.73418425949,1,1,1_1,1_1_1,1_2_1,1_0_0 -6406,2,38.0,0.0,9,111,540.0,,,0,34,0.0,0.0,,540.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,2,2008.0,6,114686,2,1,0,0,1,,40.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,160.32105548715063,540.0,49865.757488426236,0,1,1,2,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010829074443025019,49865.757488426236,10,5,10,10_0,10_2,10_0_0 -6407,2,26.0,0.0,9,111,300.0,,,0,34,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,121439,2,1,0,0,2,,160.0,600.0,12,1.0,0.0,2.0,1.0,1.0,3,3,167.4915292157282,300.0,30383.57605969121,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009873755459549053,30383.57605969121,8,4,8,8_0,8_2,8_0_0 -6408,1,35.0,259.0,9,111,420.0,,,85,68,0.0,0.0,,660.0,412.878481005646,,70,0,0,0,0,0,0,0,0,0,,2,2006.0,6,126994,2,1,0,0,2,,460.0,378.0,42,1.0,0.0,4.0,4.0,2.3,2,2,139.07043141196607,420.0,25063.10561074475,6,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02633352826463185,10897.00243945424,2,1,2_1,2_0_1,2_2_1,2_0_0 -6409,2,30.0,0.0,9,111,500.0,,,46,37,0.0,0.0,,719.0,0.0,,33,0,0,0,0,0,0,0,0,2,60.0,2,2006.0,6,117279,2,1,0,0,2,,220.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,120.43042584294439,500.0,95407.30399817036,1,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007536110652637123,53004.057776761314,10,5,10,10_0,10_2,10_0_0 -6410,2,40.0,0.0,6,111,600.0,,,43,69,0.0,0.0,,688.0,151.38877636873687,,70,0,0,0,0,0,0,0,0,2,15.0,1,,4,105323,2,3,0,0,2,,440.0,,43,2.0,0.0,6.0,7.0,3.1999999999999993,1,1,112.8680423333249,600.0,24140.389379343265,4,2,0,1,173.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028499954544590568,7543.871681044772,1,1,1_0,1_1_0,1_2_0,1_0_0 -6411,2,43.0,0.0,7,111,700.0,,,0,64,0.0,0.0,,760.0,103.2196202514115,,42,2,2,2,2,1,2,2,2,2,15.0,1,,5,110537,1,3,0,0,2,,280.0,300.0,12,1.0,3.0,5.0,1.0,1.0,2,2,157.4115984801818,700.0,23976.359070527753,0,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03169789031622437,23976.359070527753,6,3,6,6_1,6_2,6_0_0 -6412,2,48.0,0.0,8,111,600.0,,,85,48,0.0,0.0,,688.0,151.38877636873687,,71,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,119790,2,2,0,0,1,,400.0,,42,1.0,2.0,5.0,3.0,2.0,3,2,115.4946443788885,600.0,42292.862880582135,7,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01626752017101875,21146.431440291068,5,3,5,5_1,5_2,5_0_0 -6413,2,48.0,0.0,7,111,900.0,,,54,48,0.0,0.0,,988.0,151.38877636873687,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,102385,2,1,0,0,2,,800.0,,43,3.0,0.0,5.0,4.0,2.3,1,1,173.8725330184036,900.0,76811.63766222492,1,1,0,1,114.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012862634231868317,33396.36420096736,8,4,8,8_1,8_2,8_0_0 -6414,2,46.0,0.0,6,111,320.0,,,56,63,0.0,248.44140115666985,,956.0,681.2494936593159,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,112554,1,3,0,0,2,,360.0,,43,4.0,0.0,4.0,4.0,2.5,1,1,120.10267272587804,320.0,58231.398152597314,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016417259937581617,23292.559261038925,6,3,6,6_1,6_2,6_0_0 -6415,2,30.0,0.0,2,111,320.0,,,81,85,0.0,0.0,,360.0,68.81308016760767,,60,0,0,0,0,0,0,0,0,0,,1,,2,119242,2,1,0,0,2,,60.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,136.55287596867151,320.0,15471.0,4,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02326934264107039,7367.142857142857,1,1,1_0,1_1_0,1_2_0,1_0_1 -6416,2,44.0,0.0,8,111,480.0,,,0,64,0.0,0.0,,560.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,133435,2,1,0,0,2,,90.0,,22,1.0,4.0,3.0,2.0,1.5,2,2,128.12156640863913,480.0,27430.110411002992,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020415521177609558,18286.740274001993,4,2,4_0,4_1_0,4_2_0,4_0_0 -6417,2,44.0,0.0,7,111,324.0,,,85,63,0.0,0.0,,444.0,206.439240502823,,71,0,0,0,0,0,0,0,0,0,,1,,5,132563,2,1,0,0,2,,180.0,,42,1.0,0.0,4.0,4.0,2.3,6,6,141.2559983349785,324.0,26769.271670571383,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01658618155413277,11638.813769813645,2,1,2_0,2_1_0,2_2_0,2_0_0 -6418,2,48.0,0.0,8,111,825.0,,,85,38,0.0,0.0,,859.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,121777,2,2,0,0,2,,136.0,1668.0,42,1.0,0.0,6.0,5.0,2.8,2,1,132.84878246606274,825.0,98850.33475717169,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008689904815296325,35303.690984704175,9,5,9,9_1,9_2,9_0_0 -6419,0,61.0,0.0,2,111,750.0,,,0,86,0.0,0.0,,990.0,412.878481005646,,70,0,0,0,0,0,0,0,0,0,,1,,2,105611,1,2,0,0,2,,1080.0,,21,2.0,0.0,4.0,5.0,2.8,1,1,149.86088046158596,750.0,47026.92359663025,0,7,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021051770438816016,16795.329855939377,4,2,4_0,4_1_0,4_2_0,4_0_1 -6420,2,60.0,0.0,2,111,280.0,,,0,67,0.0,0.0,,412.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,2,104330,2,1,0,0,2,,600.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,114.68066024443374,280.0,6332.0,0,4,0,1,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06506632975363234,6332.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -6421,1,28.0,266.0,2,111,439.0,,,0,42,0.0,0.0,,559.0,206.439240502823,,71,2,2,1,2,1,2,2,2,0,,2,,2,125082,2,2,0,0,2,,380.0,327.0,22,2.0,0.0,3.0,3.0,2.0,2,1,122.25911847627391,439.0,21998.792130870705,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025410486024619525,10999.396065435352,2,1,2_1,2_0_1,2_2_1,2_0_1 -6422,2,44.0,0.0,2,111,0.0,,,56,63,0.0,0.0,,570.0,0.0,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,129425,2,1,0,0,2,,1040.0,416.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,3,144.37918671210932,0.0,19786.0,1,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02880824825634287,7610.000000000001,1,1,1_0,1_1_0,1_2_0,1_0_1 -6423,1,38.0,196.0,6,111,383.0,,,85,68,0.0,0.0,,543.0,275.25232067043066,,20,0,0,0,0,0,0,0,0,0,,2,,4,113801,2,1,0,0,2,,282.0,424.0,42,1.0,0.0,4.0,7.0,3.8,2,2,174.61961413961598,383.0,26822.805629392806,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02024396729792401,7058.633060366528,1,1,1_1,1_0_1,1_2_1,1_0_0 -6424,2,58.0,0.0,6,111,470.0,,,85,52,0.0,0.0,,710.0,412.878481005646,,44,0,0,0,0,0,0,0,0,0,,2,,4,108548,2,3,0,0,2,,200.0,402.0,42,2.0,1.0,4.0,3.0,2.0,2,2,151.96562130762777,470.0,44961.717526930945,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015791211703038873,22480.858763465472,6,3,6,6_0,6_2,6_0_0 -6425,1,40.0,283.0,6,111,350.0,,,0,81,0.0,0.0,,500.0,258.04905062852873,,71,0,0,0,0,0,0,0,0,0,,2,,4,125520,2,2,0,0,2,,265.0,339.0,32,1.0,0.0,3.0,2.0,1.3,1,1,154.92048042981588,350.0,4884.014276844022,0,4,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10237480311443574,3756.9340591107857,1,1,1_1,1_0_1,1_2_1,1_0_0 -6426,2,41.0,0.0,6,111,471.0,,,55,42,0.0,0.0,,537.0,113.54158227655265,,33,0,0,0,0,0,0,0,0,2,10.0,1,,4,128335,2,1,0,0,2,,227.0,917.0,43,2.0,0.0,4.0,4.0,2.1,1,1,179.53771165082145,471.0,53954.19883755948,1,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009952886180679877,25692.475636933086,7,4,7,7_1,7_2,7_0_0 -6427,1,27.0,310.0,7,111,540.0,,,0,55,0.0,0.0,,628.0,151.38877636873687,,10,0,0,0,0,0,0,0,0,0,,2,,5,122223,2,2,0,0,2,,90.0,445.0,22,1.0,3.0,3.0,3.0,2.0,2,2,125.2699495359496,540.0,1258.6068062429226,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.4989644080144838,629.3034031214613,1,1,1_1,1_0_1,1_2_1,1_0_0 -6428,0,42.0,0.0,1,111,468.0,,,0,63,0.0,0.0,,600.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,1,,1,112638,2,1,0,0,2,,380.0,,12,1.0,1.0,5.0,1.0,1.0,3,3,113.42517300243382,468.0,5808.329787234043,0,4,5,0,45.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10329991959456612,5808.329787234043,1,1,1_0,1_1_0,1_2_0,1_1_0 -6429,1,23.0,263.0,6,111,440.0,,,0,85,0.0,0.0,,572.0,227.0831645531053,,70,0,0,0,0,0,0,0,0,0,,2,,4,113886,1,3,0,0,2,,360.0,268.0,31,0.0,0.0,2.0,4.0,1.9,1,1,162.9735200782467,440.0,14835.616732266382,0,6,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03855586257873202,7808.2193327717805,1,1,1_1,1_0_1,1_2_1,1_0_0 -6430,1,50.0,165.0,5,111,360.0,,,0,55,0.0,0.0,,400.0,68.81308016760767,,31,0,0,0,0,0,0,0,0,2,5.0,2,,3,117751,2,1,0,0,1,,160.0,615.0,22,1.0,0.0,4.0,2.0,1.5,2,2,144.64005537120565,360.0,32168.288037552524,0,1,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01243460639040067,21445.525358368348,6,3,6,6_0,6_2,6_0_0 -6431,2,72.0,0.0,5,111,240.0,,,77,77,0.0,0.0,,744.0,867.0448101118566,,20,0,0,0,0,0,0,0,0,0,,2,,3,102502,2,1,0,0,2,,362.0,720.0,41,3.0,1.0,5.0,5.0,3.0,2,2,132.77772983406595,240.0,44798.80677360063,5,5,2,3,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01660758519216699,14932.935591200208,3,2,3_0,3_0_0,3_2_0,3_0_0 -6432,1,46.0,62.0,8,111,590.0,,,85,52,0.0,0.0,,678.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,110872,2,1,0,0,1,,70.0,440.0,42,1.0,0.0,3.0,3.0,2.0,3,3,120.78901589276724,590.0,32641.343799571077,7,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020771203666220053,16320.671899785539,4,2,4_1,4_1_1,4_2_1,4_0_0 -6433,2,23.0,0.0,2,111,0.0,,,0,68,0.0,0.0,,610.0,206.439240502823,,31,0,0,0,0,0,0,0,0,0,,1,,2,121964,1,2,0,0,2,,286.0,,22,2.0,1.0,4.0,4.0,2.5,3,3,118.57180259038873,0.0,19438.822192546308,0,1,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03138050206734751,7775.528877018523,1,1,1_0,1_1_0,1_2_0,1_0_1 -6434,2,26.0,0.0,7,111,428.0,,,0,52,0.0,0.0,,668.0,412.878481005646,,10,0,0,0,0,0,0,0,0,0,,1,,5,107342,2,2,0,0,2,,380.0,240.0,22,1.0,2.0,4.0,3.0,1.8,2,2,157.4516576507529,428.0,12168.734684643825,0,1,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0548947788994836,6760.4081581354585,1,1,1_0,1_1_0,1_2_0,1_0_0 -6435,2,71.0,0.0,5,111,420.0,,,85,78,0.0,0.0,,596.0,302.77755273747374,,43,0,0,0,0,0,0,0,0,0,,1,,3,125218,2,3,0,0,2,,510.0,,41,0.0,2.0,3.0,5.0,2.4,3,3,168.28101504241843,420.0,9707.878787878788,6,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06139343238856287,4044.949494949495,1,1,1_0,1_1_0,1_2_0,1_0_0 -6436,2,58.0,0.0,5,111,1092.0,,,0,52,0.0,51.75862524097289,,1274.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,1,5.0,1,,3,105229,2,1,0,0,2,,720.0,,22,2.0,3.0,5.0,2.0,1.5,4,4,128.1308446768315,1092.0,21467.383642152214,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059345843966678885,14311.589094768142,3,2,3_0,3_1_0,3_2_0,3_0_0 -6437,1,28.0,370.0,6,111,650.0,,,55,65,0.0,0.0,,694.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,108943,1,3,0,0,2,,350.0,612.0,43,2.0,0.0,5.0,4.0,2.1,2,2,130.57931698632413,650.0,13972.293436293436,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.049669726961023807,6653.473064901636,1,1,1_1,1_1_1,1_2_1,1_0_0 -6438,2,45.0,0.0,5,111,400.0,,,0,85,0.0,0.0,,664.0,454.1663291062106,,44,2,2,1,2,1,2,2,2,0,,1,,3,129065,1,3,0,0,2,,400.0,,31,2.0,0.0,5.0,6.0,3.0999999999999996,2,2,140.28616735770177,400.0,35833.322087067645,0,6,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.018530238373841414,11559.136157118597,2,1,2_0,2_1_0,2_2_0,2_0_0 -6439,2,44.0,0.0,6,111,200.0,,,0,52,0.0,0.0,,464.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,4,127981,2,3,0,0,2,,260.0,,32,3.0,0.0,6.0,5.0,2.5999999999999996,3,3,114.36845130277024,200.0,17098.60746423236,0,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027136712797847205,6576.387486243216,1,1,1_0,1_1_0,1_2_0,1_0_0 -6440,2,50.0,0.0,6,111,480.0,,,0,85,0.0,0.0,,612.0,227.0831645531053,,50,0,0,0,0,0,0,0,0,0,,1,,4,114300,2,3,0,0,2,,780.0,,31,0.0,4.0,6.0,11.0,4.799999999999999,2,2,114.36845130277024,480.0,44238.05024678044,0,6,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01383424442501374,9216.260468079261,1,1,1_0,1_1_0,1_2_0,1_0_0 -6441,2,66.0,0.0,6,111,400.0,,,77,77,0.0,0.0,,532.0,227.0831645531053,,31,0,0,0,0,0,0,0,0,0,,1,,4,100006,2,2,0,0,2,,480.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,106.0047670432656,400.0,34146.00763555563,5,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01558015231760324,22764.00509037042,6,3,6,6_1,6_2,6_0_0 -6442,0,31.0,0.0,2,111,300.0,,,0,68,0.0,0.0,,366.0,113.54158227655265,,10,0,0,0,0,0,0,0,0,2,75.0,1,,2,101131,2,1,0,0,2,,400.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,123.18617583026781,300.0,5862.162652029401,0,1,5,0,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06243429630416272,5862.162652029401,1,1,1_0,1_1_0,1_2_0,1_0_1 -6443,2,71.0,0.0,6,111,550.0,,,77,78,0.0,0.0,,800.0,430.0817510475479,,20,2,2,2,2,1,2,2,2,0,,1,,4,102447,2,3,0,0,2,,320.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,130.9490560230737,550.0,16475.515806808162,6,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04855690160968537,10983.677204538775,2,1,2_0,2_1_0,2_2_0,2_0_0 -6444,1,32.0,467.0,5,111,800.0,,,0,85,0.0,0.0,,860.0,103.2196202514115,,12,0,0,0,0,0,0,0,0,0,,2,,3,132820,2,2,0,0,2,,240.0,509.0,31,0.0,0.0,3.0,4.0,1.9,2,2,134.33649823346462,800.0,22051.300192689498,0,6,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03899996791504881,11605.947469836578,2,1,2_1,2_0_1,2_2_1,2_0_0 -6445,1,46.0,82.0,8,111,600.0,,,85,62,0.0,0.0,,732.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,120876,2,1,0,0,2,,280.0,392.0,42,1.0,0.0,3.0,4.0,2.1,2,2,124.33666942895438,600.0,26771.820906705736,6,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027342182011110442,12748.48614605035,2,1,2_1,2_0_1,2_2_1,2_0_0 -6446,2,79.0,0.0,7,111,324.0,,,0,74,0.0,0.0,,456.0,227.0831645531053,,41,0,0,0,0,0,0,0,0,0,,2,,5,112649,2,1,0,0,2,,150.0,500.0,21,1.0,5.0,3.0,2.0,1.5,2,2,126.23719073850454,324.0,46982.97231774989,0,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009705643928102988,31321.981545166593,8,4,8,8_0,8_2,8_0_0 -6447,2,65.0,0.0,7,111,560.0,,,72,75,0.0,0.0,,590.0,51.60981012570575,,43,0,0,0,0,0,0,0,0,0,,2,,5,105961,2,1,0,0,1,,163.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,118.71687961188347,560.0,36981.11221661648,5,5,1,2,101.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01595409019999402,24654.07481107765,7,4,7,7_0,7_2,7_0_0 -6448,2,63.0,0.0,8,111,160.0,,,0,45,0.0,0.0,,204.0,75.69438818436844,,60,0,0,0,0,0,0,0,0,2,40.0,2,2000.0,6,129408,2,1,0,0,1,,120.0,,12,1.0,4.0,3.0,1.0,1.0,2,2,110.56803382988531,160.0,65388.41564145377,0,1,1,2,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003119818671224567,65388.41564145377,10,5,10,10_0,10_2,10_0_0 -6449,1,57.0,253.0,7,111,270.0,,,0,78,0.0,0.0,,358.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,0,,2,,5,114606,2,1,0,0,2,,90.0,464.0,11,0.0,7.0,3.0,1.0,1.0,2,2,127.25711174164097,270.0,11175.70687916538,0,5,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032033767874443037,11175.70687916538,2,1,2_1,2_0_1,2_2_1,2_0_0 -6450,1,23.0,300.0,6,111,372.0,,,0,81,0.0,0.0,,460.0,151.38877636873687,,33,0,0,0,0,0,0,0,0,0,,2,,4,111323,2,2,0,0,2,,900.0,295.0,32,1.0,0.0,3.0,3.0,1.6,2,2,124.81331680956443,372.0,9212.901208479509,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.049929982921842066,5758.063255299692,1,1,1_1,1_0_1,1_2_1,1_0_0 -6451,2,81.0,0.0,6,111,0.0,,,0,90,0.0,0.0,,132.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,1,,4,132704,2,3,0,0,2,,160.0,,11,0.0,12.0,7.0,1.0,1.0,2,2,140.6607691661918,0.0,3367.9987406210075,0,5,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03919241370489979,3367.9987406210075,1,1,1_0,1_1_0,1_2_0,1_0_0 -6452,2,67.0,0.0,7,111,550.0,,,0,75,0.0,0.0,,590.0,68.81308016760767,,31,0,0,0,0,0,0,0,0,0,,1,,5,114028,2,1,0,0,1,,400.0,,11,0.0,1.0,5.0,1.0,1.0,3,3,123.77934495789398,550.0,40902.30379916947,0,5,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014424615368779791,40902.30379916947,9,5,9,9_1,9_2,9_0_0 -6453,2,74.0,0.0,7,111,324.0,,,0,75,0.0,0.0,,404.0,137.62616033521533,,31,0,0,0,0,0,0,0,0,0,,2,,5,126965,2,1,0,0,2,,420.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,114.53523976529617,324.0,40911.739453742106,0,5,0,1,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009874916231728374,40911.739453742106,9,5,9,9_0,9_2,9_0_0 -6454,2,42.0,0.0,9,111,0.0,,,42,38,0.0,0.0,,585.0,0.0,,41,0,0,0,0,0,0,0,0,2,4.0,1,2006.0,6,113108,2,1,0,0,1,,512.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,3,122.64013516234219,0.0,95621.50209882186,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006117870846615865,36777.50080723918,9,5,9,9_1,9_2,9_0_0 -6455,0,41.0,0.0,6,111,103.0,,,33,34,0.0,0.0,,123.0,34.40654008380383,,71,0,0,0,0,0,0,0,0,1,1.0,1,,4,124985,2,3,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,127.53394272621571,103.0,100588.4841897675,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001222803991836198,47899.27818560357,10,5,10,10_1,10_2,10_0_0 -6456,2,40.0,0.0,8,111,380.0,,,0,43,0.0,0.0,,420.0,68.81308016760767,,42,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118911,2,1,0,0,1,,440.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,135.86143776427488,380.0,82017.93328341936,0,1,1,2,63.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005120831300987032,63090.717910322586,10,5,10,10_1,10_2,10_0_0 -6457,2,33.0,0.0,7,111,900.0,,,0,48,0.0,0.0,,944.0,75.69438818436844,,70,0,0,0,0,0,0,0,0,1,3.0,2,,5,110432,2,1,0,0,1,,400.0,600.0,12,1.0,1.0,2.0,1.0,1.0,2,2,161.9082608556297,900.0,29931.70668009694,0,1,2,3,24.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031538462209631093,29931.70668009694,8,4,8,8_0,8_2,8_0_0 -6458,1,22.0,350.0,7,111,700.0,,,0,56,0.0,0.0,,770.0,120.42289029331342,,71,0,0,0,0,0,0,0,0,2,60.0,2,,5,126672,2,1,0,0,2,,400.0,567.0,32,1.0,0.0,2.0,2.0,1.3,1,1,149.7938034180444,700.0,14398.693641618498,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05347707362662155,11075.918185860382,2,1,2_1,2_0_1,2_2_1,2_0_0 -6459,2,42.0,0.0,6,111,600.0,,,85,63,0.0,0.0,,750.0,258.04905062852873,,42,0,0,0,0,0,0,0,0,0,,1,,4,111555,2,1,0,0,2,,270.0,,42,2.0,0.0,4.0,5.0,3.0,2,1,138.35508962301813,600.0,15919.371971640787,6,4,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04711241130215884,5306.457323880262,1,1,1_0,1_1_0,1_2_0,1_0_0 -6460,2,63.0,0.0,2,111,800.0,,,85,78,0.0,0.0,,1040.0,412.878481005646,,60,0,0,0,0,0,0,0,0,0,,1,,2,126563,1,1,0,0,2,,2000.0,,41,2.0,6.0,9.0,8.0,3.8999999999999995,2,2,119.43569709150005,800.0,53261.00720148888,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019526480152086335,13656.66851320228,3,2,3_0,3_1_0,3_2_0,3_0_1 -6461,2,54.0,0.0,8,111,480.0,,,81,64,0.0,0.0,,720.0,412.878481005646,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,114390,2,1,0,0,2,,200.0,,43,6.0,1.0,3.0,7.0,3.8,3,3,116.81614093233335,480.0,34703.97578333445,4,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02074690244412165,9132.625206140645,1,1,1_0,1_1_0,1_2_0,1_0_0 -6462,2,39.0,0.0,8,111,1740.0,,,67,33,0.0,0.0,,1800.0,103.2196202514115,,31,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,115003,2,1,0,0,2,,210.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,160.468536908104,1740.0,103298.49848916435,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017425229081996903,49189.761185316354,10,5,10,10_1,10_2,10_0_0 -6463,2,72.0,0.0,6,111,480.0,,,86,75,0.0,51.75862524097289,,610.0,137.62616033521533,,50,0,0,0,0,0,0,0,0,0,,1,,4,112907,2,1,0,0,2,,180.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,129.19002664368602,480.0,30538.864555192875,6,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019974547478592314,20359.24303679525,5,3,5,5_1,5_2,5_0_0 -6464,2,47.0,0.0,8,111,560.0,,,64,54,0.0,0.0,,626.0,113.54158227655265,,43,0,0,0,0,0,0,0,0,2,40.0,1,1999.0,6,130940,2,1,0,0,2,,162.0,,43,2.0,2.0,4.0,4.0,2.3,2,2,120.10267272587804,560.0,47353.75561598019,1,1,1,2,103.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01321964840712122,20588.589398252258,5,3,5,5_1,5_2,5_0_0 -6465,2,31.0,0.0,7,111,0.0,,,55,63,0.0,0.0,,961.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,124817,2,1,0,0,2,,254.0,970.0,43,2.0,0.0,4.0,3.0,1.8,3,3,142.49018404280378,0.0,17840.98543370846,4,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05386473766097598,9911.65857428248,2,1,2_0,2_1_0,2_2_0,2_0_0 -6466,2,52.0,0.0,7,111,900.0,,,85,63,0.0,103.51725048194578,,1120.0,206.439240502823,,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,105677,2,2,0,0,2,,450.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,143.87313610199388,900.0,37190.0,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030115622479161063,24793.333333333332,7,4,7,7_1,7_2,7_0_0 -6467,2,60.0,0.0,1,111,1200.0,,,52,77,0.0,207.03450096389156,,1640.0,412.878481005646,,71,2,2,1,2,1,2,2,2,0,,1,,1,108220,2,1,0,0,2,,324.0,,42,2.0,2.0,4.0,3.0,2.0,2,2,117.70668258747006,1200.0,26931.0,4,5,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06089636478407783,13465.5,3,2,3_0,3_1_0,3_2_0,3_1_0 -6468,2,60.0,0.0,7,111,1200.0,,,86,38,0.0,0.0,,1244.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,0,,1,,5,103063,2,2,0,0,2,,700.0,,42,1.0,3.0,6.0,2.0,1.5,5,5,141.4156258459,1200.0,109473.38469702168,6,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011363492628303143,72982.25646468112,10,5,10,10_1,10_2,10_0_0 -6469,2,56.0,0.0,6,111,400.0,,,77,48,0.0,0.0,,520.0,206.439240502823,,50,0,0,0,0,0,0,0,0,0,,1,,4,130768,2,1,0,0,2,,400.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,116.94109565800622,400.0,90452.48598293116,5,1,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00574887460913044,60301.65732195411,10,5,10,10_1,10_2,10_0_0 -6470,2,42.0,0.0,6,111,700.0,,,56,62,0.0,207.03450096389156,,980.0,137.62616033521533,,71,0,0,0,0,0,0,0,0,1,30.0,1,,4,103566,1,2,0,0,2,,540.0,375.0,43,2.0,2.0,4.0,6.0,2.8999999999999995,4,4,160.56467512459687,700.0,43424.12648099058,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0225680993359534,14973.83671758296,3,2,3_0,3_1_0,3_2_0,3_0_0 -6471,1,42.0,413.0,8,111,250.0,,,0,81,0.0,0.0,,330.0,137.62616033521533,,31,0,0,0,0,0,0,0,0,0,,2,1999.0,6,119533,1,1,0,0,2,,218.0,497.0,32,1.0,0.0,4.0,4.0,2.3,2,2,181.0045546300983,250.0,6561.764010553754,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050291354499984675,2852.9408741538064,1,1,1_1,1_0_1,1_2_1,1_0_0 -6473,1,46.0,300.0,9,111,768.0,,,0,52,0.0,0.0,,894.0,216.76120252796414,,33,0,0,0,0,0,0,0,0,2,2.0,1,2004.0,6,131983,2,1,0,0,1,,444.0,,32,2.0,0.0,3.0,3.0,1.8,4,4,128.96153655850955,768.0,15191.73465795118,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05884778928337132,8439.852587750654,1,1,1_1,1_1_1,1_2_1,1_0_0 -6474,2,72.0,0.0,5,111,1092.0,,,0,78,0.0,0.0,,1332.0,412.878481005646,,20,0,0,0,0,0,0,0,0,0,,1,,3,104974,2,3,0,0,2,,492.0,,21,1.0,2.0,5.0,3.0,2.0,2,2,107.76595311516326,1092.0,16335.644429860655,0,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08153948292148044,8167.822214930327,1,1,1_0,1_1_0,1_2_0,1_0_0 -6475,2,41.0,0.0,5,111,460.0,,,55,56,0.0,0.0,,700.0,412.878481005646,,42,0,0,0,0,0,0,0,0,0,,1,,3,115365,2,1,0,0,2,,480.0,397.0,43,2.0,2.0,4.0,4.0,2.3,3,2,123.87113919590674,460.0,23830.261823975852,4,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029374414984216553,10360.983401728632,2,1,2_0,2_1_0,2_2_0,2_0_0 -6476,1,27.0,321.0,8,111,0.0,,,0,81,0.0,0.0,,709.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,127758,2,1,0,0,2,,279.0,485.0,32,1.0,0.0,4.0,4.0,1.9,4,3,135.586196714376,0.0,10202.728813559323,0,4,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06949121288588463,5369.85727029438,1,1,1_1,1_0_1,1_2_1,1_0_0 -6477,2,43.0,0.0,8,111,402.0,,,68,52,0.0,0.0,,522.0,206.439240502823,,41,2,2,1,2,1,2,2,2,0,,2,2000.0,6,132577,2,2,0,0,2,,400.0,553.0,43,2.0,0.0,4.0,3.0,1.8,2,2,177.4847231473806,402.0,28970.02649273607,4,1,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.018018623494558628,16094.459162631149,4,2,4_0,4_0_0,4_2_0,4_0_0 -6478,1,55.0,124.0,7,111,663.0,,,81,52,0.0,0.0,,783.0,206.439240502823,,20,0,0,0,0,0,0,0,0,0,,2,,5,105488,2,1,0,0,2,,924.0,433.0,43,3.0,1.0,3.0,3.0,2.0,1,1,157.54085788662758,663.0,12990.492067437717,4,4,2,3,39.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.060274853018284565,6495.246033718859,1,1,1_1,1_0_1,1_2_1,1_0_0 -6480,1,43.0,118.0,5,111,730.0,,,0,54,0.0,0.0,,820.0,154.82943037711726,,12,0,0,0,0,0,0,0,0,2,15.0,1,,3,127759,2,2,0,0,2,,720.0,296.0,32,1.0,0.0,3.0,3.0,1.8,2,2,157.11483526449595,730.0,21972.83979491852,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03731879937474603,12207.133219399178,2,1,2_1,2_1_1,2_2_1,2_0_0 -6481,1,30.0,314.0,5,111,470.0,,,0,47,0.0,0.0,,542.0,123.8635443016938,,12,0,0,0,0,0,0,0,0,0,,1,,3,133216,2,3,0,0,2,,250.0,327.0,22,2.0,1.0,4.0,3.0,2.0,2,2,140.8748171355089,470.0,28567.170609529745,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01897282749518056,14283.585304764872,3,2,3_1,3_1_1,3_2_1,3_0_0 -6482,2,70.0,0.0,5,111,360.0,,,0,77,0.0,0.0,,486.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,,3,121169,1,1,0,0,2,,305.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,139.47988894117003,360.0,25778.750980565706,0,5,0,1,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01885273651801011,25778.750980565706,7,4,7,7_1,7_2,7_0_0 -6483,2,31.0,0.0,5,111,700.0,,,0,54,0.0,0.0,,720.0,34.40654008380383,,31,0,0,0,0,0,0,0,0,2,5.0,2,,3,127334,2,3,0,0,2,,320.0,250.0,32,1.0,0.0,3.0,3.0,1.8,3,3,149.28613144792024,700.0,30441.963441830445,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023651562468229123,16912.201912128025,4,2,4_0,4_0_0,4_2_0,4_0_0 -6484,1,73.0,149.0,6,111,324.0,,,0,77,0.0,0.0,,408.0,144.50746835197612,,50,0,0,0,0,0,0,0,0,0,,2,,4,112147,2,1,0,0,2,,187.0,468.0,11,0.0,7.0,4.0,1.0,1.0,3,2,154.7561180377142,324.0,11436.756639296544,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035674449747240176,11436.756639296544,2,1,2_1,2_0_1,2_2_1,2_0_0 -6485,1,69.0,146.0,7,111,244.0,,,0,86,0.0,0.0,,284.0,68.81308016760767,,50,0,0,0,0,0,0,0,0,0,,2,,5,107416,2,1,0,0,2,,160.0,459.0,11,0.0,3.0,4.0,1.0,1.0,2,2,134.36193546350756,244.0,9349.588751313513,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030375667588598606,9349.588751313513,1,1,1_1,1_0_1,1_2_1,1_0_0 -6486,1,42.0,400.0,7,111,450.0,,,0,68,0.0,0.0,,582.0,227.0831645531053,,20,0,0,0,0,0,0,0,0,0,,2,,5,108428,2,1,0,0,1,,600.0,465.0,32,1.0,0.0,3.0,3.0,1.8,2,2,128.29378420100886,450.0,18198.88171776346,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.031979986958864885,10110.489843201922,2,1,2_1,2_0_1,2_2_1,2_0_0 -6487,2,56.0,0.0,7,111,1000.0,,,0,54,0.0,0.0,,1170.0,292.4555907123326,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,113979,2,1,0,0,1,,800.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,147.96814139835257,1000.0,42174.958312204006,0,1,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027741580473867156,42174.958312204006,9,5,9,9_1,9_2,9_0_0 -6488,2,34.0,0.0,9,111,320.0,,,0,54,0.0,0.0,,320.0,0.0,,71,2,2,1,2,1,2,2,2,2,10.0,2,2007.0,6,114346,1,1,0,0,1,,220.0,790.0,32,2.0,0.0,3.0,3.0,1.8,5,4,180.55352340226995,320.0,49254.722929793614,0,1,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.006496838901238356,27363.73496099645,7,4,7,7_0,7_2,7_0_0 -6489,0,80.0,0.0,2,111,356.0,,,0,86,0.0,0.0,,419.0,108.38060126398207,,20,0,0,0,0,0,0,0,0,0,,1,,2,107819,2,1,0,0,2,,289.0,,11,0.0,4.0,7.0,1.0,1.0,2,2,124.90905059896846,356.0,8921.81816766605,0,6,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04696352157439345,8921.81816766605,1,1,1_0,1_1_0,1_2_0,1_0_1 -6490,2,51.0,0.0,2,111,841.0,,,0,85,0.0,0.0,,1093.0,433.5224050559283,,44,0,0,0,0,0,0,0,0,0,,1,,2,117444,2,1,0,0,2,,1200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,159.11115151539738,841.0,4929.211421475218,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2217393222855282,4929.211421475218,1,1,1_0,1_1_0,1_2_0,1_0_1 -6491,2,52.0,0.0,8,111,0.0,,,0,54,0.0,0.0,,919.0,0.0,,42,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,117748,2,1,0,0,2,,163.0,,12,1.0,1.0,4.0,1.0,1.0,5,4,136.03527700298542,0.0,45800.31189147736,0,1,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020065365541124404,45800.31189147736,10,5,10,10_1,10_2,10_0_0 -6492,2,43.0,0.0,8,111,483.0,,,54,34,0.0,0.0,,571.0,151.38877636873687,,43,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,124041,2,1,0,0,1,,540.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,167.45833515219798,483.0,67334.3239013469,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00848007326600005,29275.79300058561,8,4,8,8_1,8_2,8_0_0 -6493,2,54.0,0.0,8,111,550.0,,,75,33,0.0,0.0,,600.0,86.01635020950958,,50,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,112291,2,2,0,0,2,,230.0,,42,1.0,4.0,5.0,3.0,2.0,1,1,151.60734019818622,550.0,97355.9663745086,5,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006162950483095428,48677.9831872543,10,5,10,10_1,10_2,10_0_0 -6494,2,82.0,0.0,6,111,600.0,,,0,86,0.0,0.0,,864.0,454.1663291062106,,50,0,0,0,0,0,0,0,0,0,,1,,4,112469,2,1,0,0,1,,2500.0,,21,1.0,0.0,6.0,4.0,2.3,2,2,149.2063959311447,600.0,9913.661016949152,0,6,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08715246552437486,4310.287398673545,1,1,1_0,1_1_0,1_2_0,1_0_0 -6495,2,32.0,0.0,9,111,280.0,,,55,38,0.0,0.0,,280.0,0.0,,50,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,119527,2,1,0,0,2,,300.0,850.0,43,2.0,0.0,3.0,2.0,1.5,3,3,256.9752720275884,280.0,70209.67701645746,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003988054238368975,46806.45134430497,10,5,10,10_1,10_2,10_0_0 -6496,2,69.0,0.0,7,111,332.0,,,0,77,0.0,0.0,,374.0,72.25373417598806,,71,0,0,0,0,0,0,0,0,0,,1,,5,117553,1,1,0,0,2,,229.0,,11,0.0,4.0,4.0,1.0,1.0,4,3,122.07247248155673,332.0,8896.436121312327,0,5,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042039305953542966,8896.436121312327,1,1,1_0,1_1_0,1_2_0,1_0_0 -6497,2,52.0,0.0,7,111,480.0,,,56,63,0.0,207.03450096389156,,932.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,,5,119875,2,2,0,0,2,,572.0,,43,2.0,2.0,4.0,4.0,2.3,2,2,129.0425542335468,480.0,48976.88731636085,1,1,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01902938408437122,21294.298833200373,6,3,6,6_1,6_2,6_0_0 -6498,2,48.0,0.0,8,111,480.0,,,85,37,0.0,0.0,,480.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,2002.0,6,112334,2,2,0,0,1,,120.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,122.20541481964037,480.0,57170.564565034474,6,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00839592898289425,38113.70971002298,9,5,9,9_1,9_2,9_0_0 -6499,2,69.0,0.0,1,111,506.0,,,0,86,0.0,0.0,,636.0,223.64251054472493,,10,2,2,1,2,1,2,2,2,0,,1,,1,113741,2,1,0,0,2,,480.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,122.07247248155673,506.0,5073.842284295044,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.1253487917763225,5073.842284295044,1,1,1_0,1_1_0,1_2_0,1_1_0 -6501,1,28.0,357.0,2,111,270.0,,,0,46,0.0,0.0,,534.0,454.1663291062106,,41,2,2,1,2,1,2,2,2,0,,1,,2,123737,2,3,0,0,2,,247.0,730.0,22,4.0,0.0,4.0,5.0,3.0,2,2,155.8457237019922,270.0,26871.24111594552,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.01987254692464212,8957.08037198184,1,1,1_1,1_1_1,1_2_1,1_0_1 -6502,0,57.0,0.0,9,111,425.0,,,56,62,0.0,0.0,,677.0,433.5224050559283,,42,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,125417,1,2,0,0,2,,153.0,,43,2.0,1.0,1.0,2.0,1.5,1,1,198.82238581805834,425.0,26341.0,1,1,5,0,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025701378079799553,17560.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0 -6503,2,60.0,0.0,9,111,1000.0,,,85,55,0.0,0.0,,1088.0,151.38877636873687,,50,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,100041,2,1,0,0,2,,700.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,158.15579838890216,1000.0,112158.55175949524,6,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00970055321624542,74772.3678396635,10,5,10,10_1,10_2,10_0_0 -6504,1,55.0,90.0,9,111,367.0,,,0,46,0.0,0.0,,433.0,113.54158227655265,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,105086,1,3,0,0,2,,202.0,597.0,32,1.0,1.0,3.0,3.0,2.0,2,2,182.92002444511522,367.0,30184.0,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014345348529021999,15092.0,3,2,3_1,3_1_1,3_2_1,3_0_0 -6505,2,77.0,0.0,5,111,513.0,,,77,78,0.0,0.0,,765.0,433.5224050559283,,12,0,0,0,0,0,0,0,0,0,,1,,3,107689,2,1,0,0,2,,480.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,148.49185253407498,513.0,24927.43356576545,6,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030689079883884512,16618.289043843633,4,2,4_0,4_1_0,4_2_0,4_0_0 -6506,1,38.0,261.0,5,111,300.0,,,0,85,0.0,0.0,,420.0,206.439240502823,,42,0,0,0,0,0,0,0,0,0,,2,,3,115996,2,2,0,0,2,,300.0,352.0,31,0.0,0.0,2.0,7.0,2.8,3,2,130.7999086719983,300.0,29986.223678864626,0,6,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014006431903462095,10709.36559959451,2,1,2_1,2_0_1,2_2_1,2_0_0 -6507,2,47.0,0.0,2,111,1400.0,,,52,45,0.0,0.0,,1488.0,151.38877636873687,,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,116245,2,1,0,0,1,,204.0,,43,2.0,3.0,6.0,3.0,1.8,3,2,125.69809192701887,1400.0,76629.7442018192,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01941804733265278,42572.080112121774,9,5,9,9_1,9_2,9_0_1 -6508,2,47.0,0.0,6,111,1081.0,,,85,21,0.0,0.0,,1161.0,137.62616033521533,,70,0,0,0,0,0,0,0,0,0,,1,,4,116229,2,1,0,0,1,,400.0,,42,1.0,0.0,5.0,5.0,2.8,2,2,160.56467512459687,1081.0,7004.165149116668,6,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1657585130108504,2501.4875532559527,1,1,1_0,1_1_0,1_2_0,1_0_0 -6509,2,42.0,0.0,2,111,880.0,,,81,37,0.0,0.0,,1006.0,216.76120252796414,,31,0,0,0,0,0,0,0,0,0,,1,,2,132352,2,3,0,0,1,,284.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,129.95123866463672,880.0,59155.1168868608,4,1,1,2,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017006136627606715,28169.103279457522,8,4,8,8_1,8_2,8_0_1 -6510,1,45.0,138.0,6,111,570.0,,,0,56,0.0,0.0,,610.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,2,,4,101976,2,1,0,0,2,,142.0,301.0,32,1.0,2.0,3.0,2.0,1.5,2,2,149.08741874650553,570.0,19914.4,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030631101112762623,13276.266666666668,3,2,3_1,3_0_1,3_2_1,3_0_0 -6511,1,49.0,139.0,6,111,90.0,,,0,68,0.0,0.0,,90.0,0.0,,50,0,0,0,0,0,0,0,0,1,10.0,2,,4,102465,2,3,0,0,2,,50.0,202.0,12,1.0,1.0,1.0,1.0,1.0,1,1,165.87454911839146,90.0,7602.039586919105,0,1,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01183892808909648,7602.039586919105,1,1,1_1,1_0_1,1_2_1,1_0_0 -6512,2,70.0,0.0,5,111,490.0,,,0,77,0.0,0.0,,580.0,154.82943037711726,,31,0,0,0,0,0,0,0,0,0,,1,,3,125310,2,3,0,0,2,,250.0,331.0,11,0.0,4.0,4.0,1.0,1.0,2,2,166.45293188984496,490.0,17010.572597208567,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03409644188551172,17010.572597208567,4,2,4_0,4_1_0,4_2_0,4_0_0 -6513,1,67.0,166.0,9,111,446.0,,,0,52,0.0,0.0,,572.0,216.76120252796414,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,127225,2,1,0,0,1,,306.0,316.0,22,1.0,2.0,3.0,2.0,1.5,2,2,155.16020168312014,446.0,16964.02542613852,0,1,2,3,26.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033718412088598416,11309.350284092347,2,1,2_1,2_1_1,2_2_1,2_0_0 -6514,2,45.0,0.0,9,111,500.0,,,62,42,0.0,0.0,,524.0,41.2878481005646,,71,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,119148,2,1,0,0,1,,600.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,159.11115151539738,500.0,50121.516807871136,4,1,1,2,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010454591827470602,33414.34453858076,8,4,8,8_1,8_2,8_0_0 -6515,2,54.0,0.0,9,111,720.0,,,52,64,0.0,0.0,,972.0,433.5224050559283,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,106619,2,1,0,0,1,,480.0,,43,4.0,0.0,4.0,4.0,2.5,1,1,145.15525715894955,720.0,41362.09903930559,4,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02349977449346387,16544.839615722238,4,2,4_0,4_1_0,4_2_0,4_0_0 -6516,2,35.0,0.0,7,111,560.0,,,54,21,0.0,0.0,,826.0,457.606983114591,,12,0,0,0,0,0,0,0,0,1,1.0,1,,5,131696,1,1,0,0,1,,1000.0,,43,2.0,3.0,5.0,3.0,2.0,6,5,143.82532802107445,560.0,20270.800000000003,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04074826844525129,10135.400000000001,2,1,2_0,2_1_0,2_2_0,2_0_0 -6517,1,31.0,166.0,9,111,360.0,,,63,53,0.0,0.0,,492.0,227.0831645531053,,71,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,124915,1,1,0,0,2,,480.0,473.0,43,2.0,0.0,3.0,3.0,1.8,3,3,226.46430475299834,360.0,25586.89178404127,4,1,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019228595804155625,14214.939880022926,3,2,3_1,3_0_1,3_2_1,3_0_0 -6518,2,48.0,0.0,8,111,800.0,,,63,56,0.0,0.0,,1052.0,433.5224050559283,,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,103985,1,1,0,0,2,,700.0,,43,2.0,0.0,4.0,6.0,3.5,3,2,140.72683506455792,800.0,12428.935395149552,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08464119947156115,3551.1243986141576,1,1,1_0,1_1_0,1_2_0,1_0_0 -6519,1,33.0,413.0,8,111,600.0,,,0,85,0.0,0.0,,864.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,116053,2,1,0,0,1,,840.0,568.0,31,0.0,0.0,4.0,3.0,1.6,1,1,136.40521630303604,600.0,9397.8368386965,0,6,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09193605026663122,5873.648024185311,1,1,1_1,1_0_1,1_2_1,1_0_0 -6520,2,32.0,0.0,9,111,350.0,,,84,35,0.0,0.0,,413.0,108.38060126398207,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,122764,1,1,0,0,1,,222.0,600.0,42,1.0,0.0,2.0,2.0,1.5,4,3,199.6032172949942,350.0,40788.03534841761,3,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010125518340662675,27192.02356561174,7,4,7,7_0,7_2,7_0_0 -6521,2,57.0,0.0,6,111,468.0,,,0,56,0.0,0.0,,512.0,75.69438818436844,,71,0,0,0,0,0,0,0,0,2,8.0,1,,4,100514,2,3,0,0,1,,300.0,600.0,12,1.0,2.0,4.0,1.0,1.0,2,2,184.03319918203397,468.0,19402.120538615487,0,1,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026388868112688042,19402.120538615487,5,3,5,5_1,5_2,5_0_0 -6522,2,58.0,0.0,2,111,372.0,,,0,75,0.0,0.0,,516.0,247.7270886033876,,70,0,0,0,0,0,0,0,0,0,,1,,2,132955,2,3,0,0,2,,620.0,,11,0.0,3.0,6.0,1.0,1.0,3,3,171.37124705098583,372.0,29677.200818249945,0,5,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0173870845555854,29677.200818249945,8,4,8,8_1,8_2,8_0_1 -6523,2,48.0,0.0,5,111,900.0,,,54,54,0.0,0.0,,1060.0,275.25232067043066,,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,118573,2,1,0,0,1,,540.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,121.55972866059824,900.0,68095.34598376168,1,1,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015566408903374575,34047.67299188084,9,5,9,9_1,9_2,9_0_0 -6524,2,73.0,0.0,2,111,333.0,,,0,86,0.0,0.0,,597.0,454.1663291062106,,71,0,0,0,0,0,0,0,0,0,,1,,2,108067,2,1,0,0,2,,266.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,122.06747146244699,333.0,4618.704319837797,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12925702938718664,4618.704319837797,1,1,1_0,1_1_0,1_2_0,1_0_1 -6525,2,44.0,0.0,9,111,820.0,,,45,38,0.0,0.0,,868.0,82.5756962011292,,70,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,112388,2,1,0,0,1,,484.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,1,1,134.14468102564277,820.0,89640.78912631706,1,1,1,2,135.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009683091910055145,34477.22658704503,9,5,9,9_1,9_2,9_0_0 -6526,2,43.0,0.0,9,111,611.2,,,46,31,0.0,0.0,,651.0,68.81308016760767,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,110971,2,3,0,0,2,,672.0,1260.0,43,2.0,0.0,4.0,2.0,1.5,6,5,195.40807633106868,611.2,62877.99004060383,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010353384381078546,41918.66002706922,9,5,9,9_1,9_2,9_0_0 -6527,0,92.0,0.0,1,111,385.0,,,0,86,0.0,0.0,,649.0,454.1663291062106,,41,2,2,1,2,1,2,2,2,0,,1,,1,125882,1,3,0,0,2,,360.0,,21,2.0,3.0,4.0,4.0,2.5,4,4,118.42664379467917,385.0,32274.601166171316,0,6,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.020108691557751936,12909.840466468526,2,1,2_0,2_1_0,2_2_0,2_1_0 -6528,2,37.0,0.0,8,111,231.0,,,0,47,0.0,0.0,,275.0,75.69438818436844,,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,114236,2,1,0,0,1,,205.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,134.9220986684984,231.0,50207.937013085604,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0054772216577695125,50207.937013085604,10,5,10,10_1,10_2,10_0_0 -6529,2,45.0,0.0,2,111,600.0,,,42,52,0.0,207.03450096389156,,844.0,75.69438818436844,,60,2,2,1,1,2,2,2,2,2,20.0,1,,2,101920,1,3,0,0,2,,540.0,800.0,43,2.0,0.0,6.0,2.0,1.5,2,2,135.93444540869734,600.0,40597.63456268639,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.020789388571316594,27065.089708457595,7,4,7,7_1,7_2,7_0_1 -6530,2,75.0,0.0,7,111,802.0,,,54,74,0.0,0.0,,902.0,172.03270041901916,,41,2,2,1,1,2,2,2,2,0,,1,,5,118418,1,2,0,0,1,,812.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,121.38108860031038,802.0,60087.58612777981,1,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.015011420130638026,40058.39075185321,9,5,9,9_1,9_2,9_0_0 -6531,1,50.0,330.0,2,111,600.0,,,0,85,0.0,0.0,,750.0,258.04905062852873,,71,2,2,2,1,1,2,2,2,0,,1,,2,115693,1,3,0,0,2,,700.0,670.0,31,0.0,0.0,4.0,2.0,1.3,1,1,157.34490591646968,600.0,7871.8610746372815,0,6,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0.09527607167972771,6055.277749720985,1,1,1_1,1_1_1,1_2_1,1_0_1 -6532,2,58.0,0.0,6,111,405.0,,,37,22,0.0,0.0,,530.0,215.04087552377396,,71,0,0,0,0,0,0,0,0,0,,1,,4,116890,2,2,0,0,2,,1200.0,,43,2.0,1.0,4.0,2.0,1.5,3,3,134.38717487003203,405.0,115902.40460845134,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0045728128056573,77268.26973896756,10,5,10,10_1,10_2,10_0_0 -6533,2,80.0,0.0,1,111,580.0,1200.0,0.0,72,72,0.0,0.0,801.6610519940398,1780.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,0,,2,,1,133615,1,1,0,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,4,2,962.626860849639,580.0,79418.24234348447,5,5,0,1,167.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022412986581867266,52945.49489565631,10,5,10,10_0,10_4,10_1_0 -6534,2,22.0,0.0,1,111,0.0,0.0,0.0,54,67,0.0,0.0,0.0,267.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,2,,1,112729,2,1,0,1,1,540.0,0.0,298.0,43,2.0,0.0,2.0,2.0,1.5,2,2,325.997017498716,0.0,14893.746596119252,1,1,2,3,39.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017926986891906038,9929.164397412835,2,1,2_0,2_0_0,2_4_0,2_1_0 -6535,2,75.0,0.0,2,111,290.0,0.0,0.0,0,52,0.0,0.0,400.8305259970199,290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,2,116271,2,1,0,1,1,545.0,0.0,287.0,11,0.0,2.0,2.0,1.0,1.0,3,2,411.226022504225,290.0,25845.72123556765,0,5,2,3,39.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011220425901712343,25845.72123556765,7,4,7,7_0,7_4,7_0_1 -6536,2,50.0,0.0,9,111,1400.0,2400.0,0.0,54,37,0.0,0.0,1935.0439186063027,3800.0,0.0,4352.7669620338775,71,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,103772,2,1,1,0,1,,1300.0,1300.0,43,2.0,0.0,6.0,4.0,2.3,1,1,552.076340616822,1400.0,120899.05582913807,1,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031431180119143295,52564.80688223395,10,5,10,10_1,10_4,10_0_0 -6537,2,58.0,0.0,1,111,400.0,150.0,0.0,0,46,0.0,0.0,552.8696910303722,550.0,0.0,272.04793512711734,20,0,0,0,0,0,0,0,0,3,45.0,2,,1,128888,1,2,0,1,1,600.0,0.0,235.0,12,1.0,0.0,2.0,1.0,1.0,3,3,447.287757445734,400.0,18697.365677538415,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02941590860902549,18697.365677538415,5,3,5,5_0,5_4,5_1_0 -6538,1,24.0,189.0,1,111,700.0,240.0,0.0,0,53,0.0,0.0,967.5219593031513,940.0,0.0,435.27669620338776,41,0,0,0,0,0,0,0,0,0,,2,,1,127201,2,2,0,1,1,516.0,0.0,237.0,22,4.0,0.0,2.0,11.0,4.999999999999999,2,2,404.607870026766,700.0,25581.81501503599,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03674485174126639,5116.363003007199,1,1,1_1,1_0_1,1_4_1,1_1_0 -6539,2,34.0,0.0,1,111,720.0,0.0,0.0,0,22,0.0,0.0,995.16544385467,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,1,112285,2,1,0,0,1,,0.0,1100.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1199.74713554353,720.0,55955.09887833343,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012867460060530671,55955.09887833343,10,5,10,10_0,10_4,10_1_0 -6540,2,46.0,0.0,1,111,682.0,0.0,0.0,37,37,0.0,0.0,942.6428232067847,682.0,0.0,0.0,50,2,1,2,1,1,2,2,2,3,50.0,2,,1,112924,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,330.710374182282,682.0,163886.59531000958,1,1,1,2,114.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.004161414170023617,78041.23586190931,10,5,10,10_0,10_4,10_1_0 -6541,2,79.0,0.0,1,111,300.0,800.0,0.0,0,63,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,71,2,2,2,2,1,1,1,2,1,15.0,2,,1,114151,2,2,0,0,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1063.55621304677,300.0,73450.7338194844,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.014976024646716341,73450.7338194844,10,5,10,10_0,10_4,10_1_0 -6542,2,46.0,0.0,1,111,723.0,136.0,0.0,33,34,0.0,0.0,999.3119665373978,859.0,0.0,246.65679451525304,50,2,1,2,1,1,2,2,2,1,35.0,2,,1,119057,2,2,0,1,2,597.0,0.0,1228.0,43,2.0,0.0,3.0,3.0,1.8,4,4,381.750092468208,723.0,79918.90696933663,1,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.010748395249319188,44399.39276074257,10,5,10,10_0,10_4,10_1_0 -6543,2,30.0,0.0,9,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,1657.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,1,2012.0,6,127693,2,1,1,0,1,,142.0,,43,2.0,0.0,4.0,2.0,1.5,3,2,283.822530308958,0.0,51058.75097441419,1,1,1,2,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03245281109266326,34039.16731627613,9,5,9,9_1,9_4,9_0_0 -6544,2,66.0,0.0,5,111,249.0,79.0,0.0,0,77,0.0,0.0,344.1613826664067,328.0,0.0,143.27857916694848,33,0,0,0,0,0,0,0,0,0,,2,,3,112890,1,1,0,1,2,411.0,0.0,702.0,11,0.0,0.0,1.0,1.0,1.0,2,2,687.770214838564,249.0,21411.2477427962,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015319051180020807,21411.2477427962,6,3,6,6_0,6_4,6_0_0 -6545,2,76.0,0.0,1,111,450.0,0.0,0.0,74,74,0.0,0.0,621.9784024091688,450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,109585,2,1,0,1,1,1140.0,0.0,2150.0,41,0.0,2.0,5.0,2.0,1.5,3,3,949.769764678115,450.0,122491.11120875142,5,5,2,3,130.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003673735959771827,81660.74080583428,10,5,10,10_0,10_4,10_1_0 -6546,2,53.0,0.0,1,111,0.0,0.0,0.0,37,31,0.0,0.0,0.0,853.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,1,,1,122777,2,1,1,0,1,,523.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,1,1,226.048297130951,0.0,437805.24522931624,1,1,1,2,295.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0019483549119042889,150967.32594114356,10,5,10,10_1,10_4,10_1_0 -6547,2,88.0,0.0,1,111,720.0,2130.0,0.0,86,72,0.0,0.0,995.16544385467,2850.0,0.0,3863.0806788050663,20,0,0,0,0,0,0,0,0,0,,2,,1,127865,2,1,0,0,2,,0.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,851.565323149294,720.0,96104.04347240228,6,5,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029655359931014976,64069.36231493485,10,5,10,10_0,10_4,10_1_0 -6548,2,55.0,0.0,9,111,1324.0,0.0,0.0,22,22,0.0,51.75862524097289,1829.998677310532,2203.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,118161,2,1,1,0,1,,500.0,,43,3.0,1.0,7.0,3.0,2.0,2,2,1036.58821255983,1324.0,47670.70581448043,1,1,0,1,195.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04621286726010291,23835.352907240216,6,3,6,6_1,6_4,6_0_0 -6549,2,27.0,0.0,9,111,0.0,0.0,0.0,52,48,0.0,0.0,0.0,5990.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2012.0,6,116449,2,1,1,0,1,,515.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,227.671814764136,0.0,41004.12009951706,1,1,1,2,86.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14608288107298148,17085.05004146544,4,2,4_0,4_1_0,4_4_0,4_0_0 -6550,2,62.0,0.0,1,111,360.0,0.0,0.0,0,63,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,1,116405,2,1,0,0,2,,0.0,,12,1.0,3.0,1.0,1.0,1.0,2,2,1180.633494534,360.0,37233.82280006958,0,1,0,1,9.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009668628492246228,37233.82280006958,9,5,9,9_0,9_4,9_1_0 -6551,1,53.0,400.0,1,111,270.0,140.0,0.0,0,77,0.0,0.0,373.1870414455012,410.0,0.0,253.91140611864284,43,0,0,0,0,0,0,0,0,0,,2,,1,131477,2,1,0,0,1,,0.0,670.0,31,2.0,2.0,2.0,3.0,2.0,2,2,537.29559816584,270.0,8369.466583677488,0,6,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04898759029632791,4184.733291838744,1,1,1_1,1_0_1,1_4_1,1_1_0 -6552,2,71.0,0.0,1,111,350.0,250.0,0.0,0,75,0.0,0.0,483.76097965157567,600.0,0.0,453.4132252118622,41,0,0,0,0,0,0,0,0,0,,2,,1,107131,2,2,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,1342.3090526085,350.0,23075.658534501374,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026001424795869428,23075.658534501374,6,3,6,6_0,6_4,6_1_0 -6553,2,50.0,0.0,6,111,1100.0,0.0,0.0,38,37,0.0,155.27587572291867,1520.3916503335236,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,111525,2,1,1,0,1,,486.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,294.271085915859,1100.0,77987.27319236819,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016028256263258153,43326.26288464899,10,5,10,10_1,10_4,10_0_0 -6554,1,23.0,300.0,1,111,0.0,0.0,0.0,84,52,0.0,0.0,0.0,657.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,1,120653,2,2,0,0,1,,0.0,940.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1140.26487052038,0.0,9663.564724000951,3,1,2,3,29.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0679873337390952,6442.3764826673005,1,1,1_1,1_0_1,1_4_1,1_1_0 -6556,2,34.0,0.0,9,112,0.0,0.0,0.0,46,38,0.0,0.0,0.0,3167.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,75.0,1,2012.0,6,109126,2,1,1,0,1,,335.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1059.00294281864,0.0,63425.67495418046,1,1,1,2,135.0,10,1,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04993246035281268,35236.48608565581,9,5,9,9_1,9_1,9_0_0 -6557,2,65.0,0.0,1,111,480.0,800.0,0.0,77,74,0.0,0.0,663.4436292364467,1280.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,2,,1,125626,2,1,0,0,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,3,2,1042.66265953557,480.0,89343.68299225646,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014326698398038273,59562.455328170974,10,5,10,10_0,10_4,10_1_0 -6558,2,39.0,0.0,1,111,1200.0,0.0,0.0,22,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,40.0,2,,1,112967,1,1,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1846.91664979596,1200.0,119394.34096700134,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010050727616409062,66330.18942611186,10,5,10,10_0,10_4,10_1_0 -6559,2,36.0,0.0,9,111,1500.0,0.0,0.0,46,38,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,126034,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,840.338835698652,1500.0,79778.1637221511,1,1,1,2,134.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01880213745235041,37989.60177245291,9,5,9,9_1,9_4,9_0_0 -6560,2,51.0,0.0,1,111,700.0,1350.0,0.0,0,38,0.0,0.0,967.5219593031513,2050.0,0.0,2448.431416144056,50,0,0,0,0,0,0,0,0,2,35.0,2,,1,109766,2,1,0,0,1,,0.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,1062.00373290122,700.0,154983.50564043887,0,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013227214028543089,103322.33709362592,10,5,10,10_0,10_4,10_1_0 -6561,1,67.0,210.0,1,111,1200.0,0.0,0.0,55,21,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,1,119952,1,2,0,0,2,,0.0,542.0,42,2.0,0.0,2.0,3.0,2.0,1,1,520.803648072052,1200.0,4826.891096262556,1,5,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.2486072248303169,2413.445548131278,1,1,1_1,1_0_1,1_4_1,1_1_0 -6562,2,24.0,0.0,9,111,480.0,0.0,0.0,0,42,0.0,0.0,663.4436292364467,480.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2012.0,6,115620,2,1,0,0,1,,0.0,480.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1347.90600849373,480.0,20801.530812716286,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02307522481502029,20801.530812716286,5,3,5,5_0,5_4,5_0_0 -6563,2,74.0,0.0,1,111,1150.0,0.0,0.0,0,74,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,102244,1,2,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,968.187527759889,1150.0,41260.0588084051,0,5,0,1,93.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027871991296477095,41260.0588084051,9,5,9,9_0,9_4,9_1_0 -6564,1,31.0,142.0,1,111,600.0,0.0,0.0,0,56,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,108898,2,1,0,1,1,408.0,0.0,601.0,12,1.0,0.0,2.0,1.0,1.0,1,1,580.174858893411,600.0,11043.214029654699,0,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.0543320086334287,11043.214029654699,2,1,2_1,2_0_1,2_4_1,2_1_0 -6565,2,50.0,0.0,1,111,600.0,390.0,0.0,37,46,0.0,31.055175144583732,829.3045365455583,1020.0,0.0,707.3246313305051,31,0,0,0,0,0,0,0,0,1,10.0,2,,1,111016,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,992.77582518018,600.0,287615.76536848705,1,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00354639808667372,191743.84357899136,10,5,10,10_0,10_4,10_1_0 -6566,2,45.0,0.0,1,111,900.0,0.0,0.0,0,33,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,1,133388,1,1,0,0,1,,0.0,1538.0,12,1.0,0.0,3.0,1.0,1.0,4,4,1250.73916148531,900.0,105582.69629885853,0,1,2,3,81.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00852412404256558,105582.69629885853,10,5,10,10_0,10_4,10_1_0 -6567,2,41.0,0.0,1,111,400.0,0.0,0.0,0,34,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,129415,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,650.709177306951,400.0,25768.24436416543,0,1,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015522982254711127,25768.24436416543,7,4,7,7_0,7_4,7_1_0 -6568,2,39.0,0.0,9,112,1500.0,0.0,0.0,47,56,0.0,362.31037668681023,2073.261341363896,1850.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2012.0,6,127204,2,1,1,0,1,,912.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,1020.26990090781,1500.0,49591.88266411185,1,1,0,1,109.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037304492199462094,23615.18222100564,6,3,6,6_1,6_1,6_0_0 -6569,2,41.0,0.0,1,111,600.0,500.0,0.0,31,47,0.0,0.0,829.3045365455583,1100.0,0.0,906.8264504237244,70,1,2,2,2,1,2,2,2,3,30.0,2,,1,127683,2,2,0,0,1,,0.0,1288.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1109.94039030815,600.0,56320.09220668103,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.019531218023636533,26819.091526990967,7,4,7,7_0,7_4,7_1_0 -6570,0,24.0,0.0,1,111,720.0,0.0,0.0,0,85,0.0,0.0,995.16544385467,720.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,103988,1,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,2,2,1319.60112040367,720.0,14117.486641313712,0,7,5,0,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05100057951483919,14117.486641313712,3,2,3_0,3_0_0,3_4_0,3_1_0 -6571,2,31.0,0.0,1,111,1200.0,0.0,0.0,22,46,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,2,2,2,2,1,1,2,2,1,10.0,2,,1,119380,1,2,0,0,2,,0.0,1420.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1110.67352663337,1200.0,64564.67015751975,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.0185860161148866,43043.1134383465,9,5,9,9_0,9_4,9_1_0 -6573,2,33.0,0.0,5,111,600.0,0.0,0.0,0,46,0.0,0.0,829.3045365455583,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,131930,1,1,0,0,1,,0.0,685.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1105.26515825302,600.0,32394.50009642569,3,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018521662572783523,21596.333397617127,6,3,6,6_0,6_4,6_0_0 -6574,2,42.0,0.0,1,111,600.0,0.0,0.0,0,37,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,124030,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1610.92180335344,600.0,50702.93323371387,0,4,1,2,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011833634895131518,50702.93323371387,10,5,10,10_0,10_4,10_1_0 -6575,0,28.0,0.0,1,111,454.0,0.0,0.0,0,46,0.0,0.0,627.5070993194724,454.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,119432,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1321.7609340468,454.0,45638.227374330236,0,1,5,0,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009947800914269464,45638.227374330236,10,5,10,10_0,10_4,10_1_0 -6576,2,34.0,0.0,1,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,505.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,12.0,2,,1,128172,2,2,0,0,1,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,586.710469668805,0.0,24147.31061383573,0,1,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020913302026713036,24147.31061383573,6,3,6,6_0,6_4,6_1_0 -6577,2,40.0,0.0,9,111,450.0,2300.0,0.0,46,38,0.0,0.0,621.9784024091688,2750.0,0.0,4171.401671949133,70,1,2,2,1,1,2,2,2,0,,1,2011.0,6,107119,2,1,1,0,1,,1200.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,268.930289169303,450.0,17954.336436528367,1,4,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.15316634004947594,7480.973515220153,1,1,1_0,1_1_0,1_4_0,1_0_0 -6578,2,36.0,0.0,9,111,1300.0,0.0,0.0,38,37,0.0,331.2552015422265,1796.8264958487098,1620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,1,2011.0,6,115900,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,247.242239236202,1300.0,160455.39037761049,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010096264115450063,76407.32875124308,10,5,10,10_1,10_4,10_0_0 -6579,2,45.0,0.0,9,111,2300.0,0.0,0.0,85,23,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,121818,2,1,1,0,1,,920.0,,42,1.0,0.0,6.0,4.0,2.1,3,3,239.710595793653,2300.0,135067.81793999157,6,1,1,2,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017028482691723447,64318.008542853124,10,5,10,10_1,10_4,10_0_0 -6580,2,49.0,0.0,9,111,1100.0,0.0,0.0,34,42,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,1,2012.0,6,106344,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,260.11994364649,1100.0,63640.376431119825,1,1,1,2,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017284624348357962,30304.941157676105,8,4,8,8_1,8_4,8_0_0 -6581,2,68.0,0.0,1,111,1649.0,0.0,0.0,77,74,0.0,0.0,2279.2053012727097,1649.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,104778,2,1,0,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,3,2,1023.48525839625,1649.0,254879.2238541097,5,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006469730937912268,169919.48256940648,10,5,10,10_0,10_4,10_1_0 -6582,2,58.0,0.0,8,111,920.0,1200.0,0.0,0,74,0.0,0.0,1271.600289369856,2120.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,100323,2,1,1,0,1,,800.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,758.720196630894,920.0,37160.44054530729,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057049915686958094,37160.44054530729,9,5,9,9_1,9_4,9_0_0 -6583,2,30.0,0.0,1,111,276.0,0.0,0.0,0,37,0.0,0.0,381.48008681095683,276.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,104071,2,1,0,0,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.7609340468,276.0,34873.705494287395,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007914272260090375,34873.705494287395,9,5,9,9_0,9_4,9_1_0 -6584,2,57.0,0.0,1,111,268.0,1499.0,0.0,74,37,0.0,0.0,370.4226929903494,1767.0,0.0,2718.665698370326,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,113558,2,2,1,0,1,,1085.0,,42,1.0,0.0,9.0,4.0,2.5,6,5,172.473341316617,268.0,210831.8719143595,6,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008381085762582235,84332.7487657438,10,5,10,10_1,10_4,10_1_0 -6585,2,77.0,0.0,1,111,166.0,655.0,0.0,0,74,0.0,0.0,229.44092177760447,821.0,0.0,1187.942650055079,70,0,0,0,0,0,0,0,0,0,,2,,1,116691,1,1,0,0,2,,0.0,680.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1148.05148231809,166.0,44672.02862972878,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01837839080031465,44672.02862972878,10,5,10,10_0,10_4,10_1_0 -6586,2,91.0,0.0,1,111,300.0,650.0,0.0,0,74,0.0,0.0,414.65226827277917,950.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,0,,2,,1,133492,2,1,0,0,1,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1031.06886143321,300.0,67247.64050239774,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014126889700555775,67247.64050239774,10,5,10,10_0,10_4,10_1_0 -6587,2,45.0,0.0,2,111,270.0,90.0,0.0,0,54,0.0,0.0,373.1870414455012,360.0,0.0,163.2287610762704,31,0,0,0,0,0,0,0,0,2,50.0,2,,2,114724,2,1,0,1,1,192.0,0.0,281.0,12,1.0,3.0,2.0,1.0,1.0,2,2,282.996200683116,270.0,22701.19651980712,0,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01585819494958756,22701.19651980712,6,3,6,6_0,6_4,6_0_1 -6588,2,53.0,0.0,9,111,1359.0,0.0,0.0,52,46,0.0,0.0,1878.3747752756897,1359.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,123333,2,1,1,0,1,,649.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,197.914729130474,1359.0,48879.05245754947,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027803321293518642,24439.526228774736,7,4,7,7_1,7_4,7_0_0 -6589,1,52.0,383.0,2,111,780.0,0.0,0.0,0,56,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,102998,1,3,0,1,1,453.0,0.0,363.0,22,1.0,1.0,3.0,3.0,2.0,1,1,263.605644862453,780.0,7463.642072213501,0,4,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.1045066192152854,3731.8210361067504,1,1,1_1,1_0_1,1_4_1,1_0_1 -6590,2,57.0,0.0,1,111,384.0,544.0,0.0,0,74,0.0,0.0,530.7549033891573,928.0,0.0,986.6271780610122,50,0,0,0,0,0,0,0,0,0,,2,,1,129543,2,1,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,938.368529330551,384.0,60300.28583268785,0,7,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015389645126639609,60300.28583268785,10,5,10,10_0,10_4,10_1_0 -6591,2,53.0,0.0,6,111,700.0,0.0,0.0,0,54,0.0,0.0,967.5219593031513,700.0,0.0,0.0,31,2,2,1,1,2,2,2,2,2,20.0,2,,4,112051,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,389.262784940876,700.0,45749.86485762474,0,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.015300591644990114,45749.86485762474,10,5,10,10_0,10_4,10_0_0 -6592,2,64.0,0.0,5,111,1400.0,0.0,0.0,0,74,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,3,111125,2,2,0,0,1,,0.0,,31,0.0,3.0,5.0,2.0,1.5,2,2,431.924893482524,1400.0,49813.04941304515,0,5,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.028105085243654345,33208.69960869676,8,4,8,8_0,8_4,8_0_0 -6593,2,36.0,0.0,9,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1941.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,129237,2,1,1,0,1,,605.0,,42,1.0,0.0,2.0,4.0,2.1,3,2,227.690141948519,0.0,31180.07164115065,6,1,1,2,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06225130020029584,14847.65316245269,3,2,3_0,3_1_0,3_4_0,3_0_0 -6594,2,65.0,0.0,7,111,290.0,0.0,0.0,75,74,0.0,0.0,400.8305259970199,672.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,103039,1,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,656.257649682303,290.0,172143.5847459381,5,5,0,1,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0039037179398336915,114762.3898306254,10,5,10,10_0,10_4,10_0_0 -6595,2,80.0,0.0,1,111,184.0,493.0,0.0,77,72,0.0,0.0,254.32005787397122,677.0,0.0,894.1308801177923,31,0,0,0,0,0,0,0,0,0,,2,,1,104668,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,832.133769084649,184.0,24957.679494203716,5,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027125919305007084,16638.45299613581,4,2,4_0,4_0_0,4_4_0,4_1_0 -6596,1,23.0,244.0,9,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,347.0,0.0,0.0,31,1,2,2,2,2,2,2,1,3,60.0,2,2011.0,6,103963,2,1,0,1,1,20.0,0.0,219.0,32,1.0,0.0,1.0,2.0,1.3,1,1,4635.24398371383,0.0,17480.115247948906,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.019851127700128667,13446.242498422236,3,2,3_1,3_0_1,3_4_1,3_0_0 -6597,2,46.0,0.0,1,111,1992.0,0.0,0.0,31,37,0.0,0.0,2753.291061331254,1992.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,75.0,2,,1,104051,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,610.532335515298,1992.0,88785.47436590138,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022436102461880186,36993.94765245891,9,5,9,9_0,9_4,9_1_0 -6598,2,35.0,0.0,2,111,609.0,648.0,0.0,46,45,0.0,0.0,841.7441045937417,1257.0,0.0,1175.247079749147,70,2,2,2,2,1,2,2,2,2,10.0,2,,2,107019,1,3,0,1,1,922.0,0.0,345.0,43,3.0,0.0,4.0,5.0,2.6,1,1,226.617020659412,609.0,54023.304994557526,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.023267736028490558,20778.19422867597,5,3,5,5_0,5_4,5_0_1 -6599,0,89.0,0.0,1,111,142.0,646.0,0.0,0,77,0.0,0.0,196.26874031578214,788.0,0.0,1171.619773947452,50,0,0,0,0,0,0,0,0,0,,2,,1,115372,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1194.67052352041,142.0,16199.628750121403,0,5,5,0,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04864309004575766,16199.628750121403,4,2,4_0,4_0_0,4_4_0,4_1_0 -6600,2,54.0,0.0,2,111,1512.0,0.0,0.0,78,68,0.0,0.0,2089.847432094807,2684.0,0.0,0.0,50,2,2,2,1,1,2,2,2,1,15.0,2,,2,113350,2,1,0,1,1,348.0,0.0,297.0,42,4.0,0.0,3.0,6.0,3.5,2,2,331.990505647968,1512.0,33252.30529320911,5,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.08071620828490754,9500.658655202602,1,1,1_0,1_0_0,1_4_0,1_0_1 -6601,2,28.0,0.0,2,111,608.0,100.0,0.0,0,48,0.0,0.0,840.3619303661658,708.0,0.0,181.36529008474488,71,2,2,2,1,1,1,2,2,0,,2,,2,127050,1,2,0,1,1,324.0,0.0,331.0,22,3.0,1.0,3.0,3.0,2.0,3,2,263.605644862453,608.0,52034.77158638058,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013606286304623844,26017.38579319029,7,4,7,7_0,7_4,7_0_1 -6602,2,61.0,0.0,5,111,250.0,0.0,0.0,0,38,0.0,0.0,345.54355689398267,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,110344,2,1,0,1,1,,0.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,993.505578325819,250.0,36827.16140572534,0,1,0,1,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0067884678171566525,24551.440937150226,7,4,7,7_0,7_4,7_0_0 -6603,2,86.0,0.0,2,111,216.0,139.0,0.0,0,75,0.0,0.0,298.549633156401,355.0,0.0,252.0977532177954,71,1,2,2,1,1,2,2,2,0,,2,,2,120750,2,1,0,1,1,252.0,0.0,308.0,11,0.0,0.0,2.0,1.0,1.0,1,1,387.649259087448,216.0,20167.232161055465,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017602812183891717,20167.232161055465,5,3,5,5_0,5_4,5_0_1 -6604,2,55.0,0.0,9,111,1400.0,0.0,0.0,46,33,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,50.0,1,2013.0,6,102078,2,1,1,0,1,,300.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,185.072527033,1400.0,71763.98172148736,1,1,1,2,142.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0195083935759492,47842.65448099157,10,5,10,10_1,10_4,10_0_0 -6605,2,34.0,0.0,2,111,613.0,0.0,0.0,0,46,0.0,0.0,847.2728015040454,613.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,127686,2,1,0,0,1,154.0,0.0,170.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1472.20763040771,613.0,26735.0,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02292874509070507,26735.0,7,4,7,7_0,7_4,7_0_1 -6606,2,66.0,0.0,2,111,1200.0,804.0,0.0,78,77,0.0,0.0,1658.6090730911167,2004.0,0.0,1458.1769322813489,50,0,0,0,0,0,0,0,0,0,,2,,2,118484,2,2,0,1,1,,130.0,338.0,41,1.0,4.0,4.0,3.0,2.0,1,1,319.887098030045,1200.0,21405.024254649965,5,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09362287919690897,10702.512127324982,2,1,2_0,2_0_0,2_4_0,2_0_1 -6607,2,34.0,0.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,830.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,119630,2,1,1,0,1,,257.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,284.123979856955,0.0,4206.6406137602935,0,1,1,2,140.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1973070856790087,4206.6406137602935,1,1,1_0,1_1_0,1_4_0,1_0_0 -6608,1,90.0,101.0,5,111,495.0,0.0,0.0,0,77,0.0,0.0,684.1762426500857,495.0,0.0,0.0,60,1,2,2,2,1,2,2,2,0,,2,,3,105220,2,1,0,1,1,156.0,0.0,188.0,11,0.0,4.0,2.0,1.0,1.0,3,2,1106.92363922647,495.0,13846.175870733787,0,5,3,4,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03574994313384863,13846.175870733787,3,2,3_1,3_0_1,3_4_1,3_0_0 -6609,2,50.0,0.0,2,111,0.0,0.0,0.0,56,21,0.0,0.0,0.0,484.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113146,2,2,0,1,1,,0.0,350.0,43,2.0,1.0,3.0,2.0,1.5,2,2,282.507592260663,0.0,34078.4083700756,1,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014202541232090008,22718.938913383736,6,3,6,6_0,6_4,6_0_1 -6610,2,86.0,0.0,2,111,420.0,140.0,0.0,77,75,0.0,0.0,580.5131755818909,560.0,0.0,253.91140611864284,44,2,1,2,1,2,2,2,2,0,,2,,2,108872,2,2,0,1,1,414.0,0.0,338.0,41,0.0,1.0,4.0,2.0,1.5,1,1,282.507592260663,420.0,26788.999568573636,5,5,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020904102766754303,17859.333045715757,4,2,4_0,4_0_0,4_4_0,4_0_1 -6611,0,59.0,0.0,9,111,500.0,1200.0,0.0,0,52,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,118050,2,1,1,0,1,,280.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,276.767739950906,500.0,9149.770789120743,0,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18579700401034455,9149.770789120743,1,1,1_0,1_1_0,1_4_0,1_0_0 -6612,2,32.0,0.0,2,111,280.0,0.0,0.0,38,37,0.0,0.0,387.00878372126056,1007.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,107935,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,257.229665975754,280.0,63941.263495406434,1,1,1,2,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01574882861162641,35522.92416411469,9,5,9,9_0,9_4,9_0_1 -6613,2,53.0,0.0,9,111,1600.0,0.0,0.0,55,38,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,108475,2,1,1,0,1,,660.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,242.18622131415,1600.0,92108.03336880429,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017370906114057776,46054.016684402144,10,5,10,10_1,10_4,10_0_0 -6614,2,42.0,0.0,2,111,270.0,320.0,0.0,46,63,0.0,0.0,373.1870414455012,590.0,0.0,580.3689282711837,10,2,2,2,2,1,2,2,2,2,15.0,2,,2,110141,2,1,0,1,1,850.0,0.0,216.0,43,2.0,0.0,2.0,2.0,1.5,2,2,344.20976015293,270.0,61681.9013809297,1,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.009565204489341688,41121.26758728647,9,5,9,9_0,9_4,9_0_1 -6615,2,44.0,0.0,9,111,1400.0,2176.0,0.0,63,35,0.0,0.0,1935.0439186063027,3576.0,0.0,3946.5087122440486,50,0,0,0,0,0,0,0,0,0,,2,2011.0,6,129179,1,3,0,0,1,,700.0,,43,3.0,0.0,6.0,4.0,2.5,3,1,474.491876040041,1400.0,88414.37675744838,1,1,1,2,260.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04044591084785024,35365.75070297935,9,5,9,9_0,9_4,9_0_0 -6616,2,57.0,0.0,5,111,1760.0,0.0,0.0,37,37,0.0,0.0,2432.626640533638,1760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,3,126450,2,2,2,0,1,,800.0,,43,2.0,5.0,7.0,7.0,3.8,6,6,188.540670448533,1760.0,119621.01439295366,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014713133883135452,31479.214313935176,8,4,8,8_1,8_4,8_0_0 -6617,2,50.0,0.0,5,111,420.0,1000.0,0.0,0,35,0.0,0.0,580.5131755818909,1420.0,0.0,1813.6529008474488,50,2,2,2,1,2,2,2,2,3,20.0,2,,3,113060,1,3,0,0,2,,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1117.76714941822,420.0,47897.7674630307,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02964647571718263,47897.7674630307,10,5,10,10_0,10_4,10_0_0 -6618,2,52.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1056.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,108659,1,1,0,0,1,,0.0,223.0,12,1.0,0.0,2.0,1.0,1.0,6,6,569.151619113063,0.0,19234.825065423243,0,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05490042131437309,19234.825065423243,5,3,5,5_0,5_4,5_1_0 -6619,1,39.0,269.0,1,111,0.0,0.0,240.0,0,63,0.0,0.0,122.61920036100601,240.0,0.0,274.37898591663156,71,0,0,0,0,0,0,0,0,1,15.0,2,,1,115718,2,2,0,0,1,,0.0,180.0,32,1.0,3.0,3.0,2.0,1.3,2,2,392.729913606075,0.0,13548.69774919614,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.017713879550840188,10422.075191689339,2,1,2_1,2_0_1,2_4_1,2_1_0 -6620,2,43.0,0.0,9,111,1200.0,0.0,0.0,52,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2012.0,6,100776,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,3674.94662217433,1200.0,54366.13100343308,1,1,1,2,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022072565728913522,22652.554584763784,6,3,6,6_1,6_4,6_0_0 -6621,2,35.0,0.0,9,111,600.0,1300.0,0.0,85,21,0.0,0.0,829.3045365455583,1900.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,2,60.0,1,2010.0,6,109632,2,1,1,0,1,,600.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,233.32825814795,600.0,32319.37351130278,6,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058788268260692896,15390.177862525132,3,2,3_0,3_1_0,3_4_0,3_0_0 -6622,1,52.0,250.0,9,111,400.0,700.0,0.0,52,62,0.0,0.0,552.8696910303722,1100.0,0.0,1269.5570305932142,44,0,0,0,0,0,0,0,0,0,,1,2012.0,6,108843,2,2,1,0,1,,1400.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,202.373905817475,400.0,33918.77537297329,1,4,1,2,111.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032430416131016555,12113.84834749046,2,1,2_1,2_1_1,2_4_1,2_0_0 -6624,2,38.0,0.0,1,111,450.0,780.0,0.0,0,21,0.0,0.0,621.9784024091688,1230.0,0.0,1414.6492626610102,44,0,0,0,0,0,0,0,0,1,15.0,2,,1,106235,2,1,0,0,1,,400.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1181.91314351196,450.0,26642.529151343155,0,1,0,1,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04616678818339553,26642.529151343155,7,4,7,7_0,7_4,7_1_0 -6625,2,34.0,0.0,9,111,1200.0,0.0,0.0,48,22,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,2,2,1,2,2,2,2,1,0,,2,2011.0,6,108560,2,1,0,0,1,,0.0,1110.0,43,2.0,0.0,3.0,4.0,2.1,2,2,5818.17696947979,1200.0,55152.04522186142,1,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.021758032638186525,26262.878677076867,7,4,7,7_0,7_4,7_0_0 -6626,2,60.0,0.0,2,111,0.0,0.0,0.0,46,56,0.0,0.0,0.0,1735.0,0.0,0.0,50,2,2,1,2,2,2,2,1,3,20.0,2,,2,108443,2,2,0,0,1,,227.0,538.0,43,2.0,2.0,3.0,2.0,1.5,4,2,852.449623908867,0.0,65009.63291665174,1,1,2,3,71.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026688352512687277,43339.75527776783,10,5,10,10_0,10_4,10_0_1 -6627,2,58.0,0.0,9,111,450.0,750.0,0.0,37,37,0.0,0.0,621.9784024091688,1200.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,2,45.0,2,2012.0,6,119717,2,1,0,0,1,,240.0,1018.0,43,3.0,1.0,3.0,3.0,2.0,2,2,632.195659959826,450.0,98673.31245585765,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01216134302308773,49336.65622792883,10,5,10,10_0,10_4,10_0_0 -6629,1,35.0,263.0,1,111,218.0,400.0,0.0,85,68,0.0,0.0,301.3139816115529,618.0,0.0,725.4611603389795,71,2,1,2,1,1,2,2,2,0,,2,,1,109417,2,1,0,1,1,869.0,0.0,295.0,42,1.0,0.0,3.0,4.0,2.1,1,1,322.670242920735,218.0,30170.314900822803,6,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.020483710628527312,14366.816619439429,3,2,3_1,3_0_1,3_4_1,3_1_0 -6630,2,84.0,0.0,1,111,450.0,950.0,0.0,0,75,0.0,0.0,621.9784024091688,1400.0,0.0,1722.9702558050765,50,2,2,2,2,1,2,2,2,0,,2,,1,119369,2,2,0,0,1,,400.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,904.789248819958,450.0,33134.70007344675,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.04225177825351502,33134.70007344675,8,4,8,8_0,8_4,8_1_0 -6631,2,80.0,0.0,2,111,0.0,0.0,660.0,77,78,0.0,0.0,337.2028009927665,660.0,0.0,754.5422112707369,71,0,0,0,0,0,0,0,0,0,,2,,2,122371,2,1,0,1,1,873.0,0.0,267.0,41,0.0,8.0,2.0,2.0,1.5,1,1,358.964809958201,0.0,29639.22691173506,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022267787279521997,19759.48460782337,5,3,5,5_0,5_4,5_0_1 -6632,2,93.0,0.0,1,111,118.0,1300.0,0.0,72,86,0.0,0.0,163.0965588539598,1418.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,2,,1,105279,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,900.196029095386,118.0,204677.16512069103,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006927983388688497,136451.443413794,10,5,10,10_0,10_4,10_1_0 -6633,2,39.0,0.0,2,111,360.0,0.0,0.0,54,62,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,2,104179,1,3,0,1,1,561.0,0.0,276.0,43,2.0,0.0,2.0,4.0,2.1,4,3,317.295525270531,360.0,39093.86842479982,1,1,2,3,41.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009208605198344308,18616.127821333244,4,2,4_0,4_0_0,4_4_0,4_0_1 -6634,2,34.0,0.0,2,111,450.0,0.0,0.0,38,38,0.0,0.0,621.9784024091688,1938.0,0.0,0.0,60,2,1,2,1,1,2,2,2,2,45.0,2,,2,123319,1,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,260.546188305333,450.0,72273.57500966563,1,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026814779810474552,40151.986116480904,9,5,9,9_0,9_4,9_0_1 -6635,2,60.0,0.0,2,111,200.0,0.0,0.0,77,33,0.0,0.0,276.4348455151861,374.0,0.0,0.0,70,2,2,2,2,1,2,2,2,3,30.0,2,,2,129983,1,2,0,1,2,,0.0,420.0,42,1.0,4.0,2.0,2.0,1.5,1,1,358.964809958201,200.0,33793.576716978074,6,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.011067191943967873,22529.05114465205,6,3,6,6_0,6_4,6_0_1 -6636,1,52.0,220.0,2,111,760.0,0.0,0.0,64,63,0.0,0.0,1050.452412957707,1426.0,0.0,0.0,50,2,1,2,2,1,2,2,2,3,45.0,2,,2,115950,1,1,0,1,1,720.0,0.0,590.0,43,2.0,1.0,6.0,6.0,3.3,1,1,336.971443446921,760.0,30315.538853124694,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.047038583312300875,9186.526925189302,1,1,1_1,1_0_1,1_4_1,1_0_1 -6638,2,66.0,0.0,5,111,400.0,300.0,0.0,0,78,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,20,1,2,2,2,1,2,2,2,0,,2,,3,106314,2,1,0,1,1,,0.0,538.0,11,0.0,2.0,3.0,1.0,1.0,1,1,401.454433388512,400.0,20182.74621516683,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.034683089830162335,20182.74621516683,5,3,5,5_0,5_4,5_0_0 -6639,2,42.0,0.0,9,111,750.0,1500.0,0.0,85,21,0.0,0.0,1036.630670681948,2250.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,127422,2,1,1,0,1,,600.0,,42,1.0,0.0,6.0,5.0,3.0,2,2,331.138431915547,750.0,10073.247568665043,6,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22336391363983732,3357.7491895550143,1,1,1_0,1_1_0,1_4_0,1_0_0 -6640,1,29.0,396.0,2,111,560.0,0.0,0.0,85,56,0.0,0.0,774.0175674425211,631.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,2,,2,108876,2,1,0,1,1,,0.0,367.0,42,1.0,1.0,3.0,4.0,2.1,2,2,241.769105389889,560.0,17638.153922419755,7,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03577471898563826,8399.120915437978,1,1,1_1,1_0_1,1_4_1,1_0_1 -6641,2,30.0,0.0,9,111,0.0,0.0,0.0,43,21,0.0,0.0,0.0,590.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,130600,2,1,0,0,1,,0.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,458.352844050958,0.0,58591.23800535455,1,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010069765038009283,32550.687780752527,8,4,8,8_0,8_4,8_0_0 -6642,1,36.0,226.0,9,111,574.0,0.0,0.0,0,46,0.0,0.0,793.3680066285841,574.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,2012.0,6,112428,2,1,0,1,1,950.0,434.0,480.0,32,1.0,0.0,3.0,4.0,1.9,1,1,4705.90393916779,574.0,39201.68274563709,0,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014642228593207079,20632.46460296689,5,3,5,5_0,5_4,5_0_0 -6643,2,91.0,0.0,1,111,1050.0,0.0,0.0,0,75,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,107294,1,2,0,0,2,,0.0,700.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1168.31666134775,1050.0,45992.33110330967,0,5,3,4,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02282989304546124,45992.33110330967,10,5,10,10_0,10_4,10_1_0 -6644,2,89.0,0.0,1,111,1122.0,90.0,0.0,86,74,0.0,0.0,1550.799483340194,1212.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,0,,2,,1,100850,2,3,0,0,2,,0.0,2800.0,41,0.0,0.0,5.0,2.0,1.5,2,2,1037.31185865155,1122.0,70891.16336959605,6,5,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017096630135425384,47260.775579730696,10,5,10,10_0,10_4,10_1_0 -6645,2,48.0,0.0,8,111,1700.0,2750.0,0.0,37,21,0.0,0.0,2349.696186879082,4450.0,0.0,4987.545477330485,44,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,110454,2,1,1,0,1,,970.0,,43,2.0,0.0,9.0,5.0,2.5999999999999996,2,2,175.862304790139,1700.0,142338.43812375746,1,1,0,1,370.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03126351573515867,54745.55312452211,10,5,10,10_1,10_4,10_0_0 -6646,1,78.0,66.0,5,111,360.0,540.0,0.0,86,78,0.0,0.0,497.582721927335,900.0,0.0,979.3725664576224,43,0,0,0,0,0,0,0,0,0,,2,,3,104405,2,1,0,1,1,,0.0,551.0,41,0.0,3.0,4.0,3.0,2.0,3,2,466.078552285348,360.0,18690.122097536358,7,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.048153778520186,9345.061048768179,1,1,1_1,1_0_1,1_4_1,1_0_0 -6647,2,57.0,0.0,1,111,600.0,1300.0,0.0,0,34,0.0,0.0,829.3045365455583,1900.0,0.0,2357.7487711016834,43,0,0,0,0,0,0,0,0,2,10.0,2,,1,115468,2,3,0,0,1,,0.0,,12,1.0,1.0,6.0,1.0,1.0,2,1,959.493280716265,600.0,67799.47855605243,0,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028023814348796163,67799.47855605243,10,5,10,10_0,10_4,10_1_0 -6648,2,67.0,0.0,2,111,1800.0,0.0,0.0,0,77,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107259,2,1,1,0,1,,312.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,186.81485897198,1800.0,22062.838994811358,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0815851486938429,22062.838994811358,6,3,6,6_1,6_4,6_0_1 -6649,2,78.0,0.0,1,111,501.0,705.0,0.0,0,77,0.0,0.0,692.4692880155412,1206.0,0.0,1278.6252950974515,41,0,0,0,0,0,0,0,0,0,,2,,1,128392,2,1,0,0,1,,0.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,937.027238341824,501.0,31519.043525019908,0,5,0,1,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03826258239856402,31519.043525019908,8,4,8,8_0,8_4,8_1_0 -6651,2,45.0,0.0,1,111,0.0,0.0,0.0,46,48,0.0,0.0,0.0,946.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,2,,1,123298,1,3,0,0,1,,0.0,2600.0,43,2.0,0.0,4.0,4.0,2.1,1,1,893.276913626541,0.0,102599.53215058999,1,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.009220314948527375,48856.920071709515,10,5,10,10_0,10_4,10_1_0 -6652,2,55.0,0.0,5,111,1300.0,1600.0,0.0,52,67,0.0,0.0,1796.8264958487098,2900.0,0.0,2901.844641355918,43,0,0,0,0,0,0,0,0,2,25.0,1,,3,120983,2,1,2,0,1,,1000.0,,43,2.0,2.0,4.0,4.0,2.5,4,2,313.185954113015,1300.0,29997.18573124769,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0966757357167378,11998.874292499077,2,1,2_0,2_1_0,2_4_0,2_0_0 -6653,2,34.0,0.0,1,111,650.0,800.0,0.0,0,35,0.0,0.0,898.4132479243549,1450.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,0,,2,,1,116088,2,1,0,0,2,,540.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,436.303317218051,650.0,11175.955338748465,0,4,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12974282341417961,11175.955338748465,2,1,2_0,2_0_0,2_4_0,2_1_0 -6654,2,33.0,0.0,1,112,3000.0,0.0,0.0,63,68,0.0,0.0,4146.522682727792,3095.0,163.4310653980682,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,106549,2,1,1,0,1,,530.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,626.222949892676,3000.0,30820.548487012216,4,1,1,2,155.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1004200169021727,17122.52693722901,4,2,4_0,4_1_0,4_0_0,4_1_0 -6656,2,29.0,0.0,1,111,0.0,0.0,0.0,35,42,0.0,0.0,0.0,1563.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,17.0,2,,1,104978,2,1,0,0,1,,272.0,2200.0,43,2.0,0.0,3.0,2.0,1.5,2,2,409.197853017966,0.0,49313.99427650941,1,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03169485706706445,32875.99618433961,8,4,8,8_0,8_4,8_1_0 -6657,2,60.0,0.0,1,111,400.0,400.0,0.0,33,46,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,31,0,0,0,0,0,0,0,0,3,35.0,2,,1,123534,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,5,3,388.47720969206,400.0,98725.02936846513,1,1,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008103314884964087,42923.92581237615,9,5,9,9_0,9_4,9_1_0 -6658,2,31.0,0.0,1,111,0.0,0.0,0.0,46,52,0.0,0.0,0.0,1345.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,50.0,2,,1,130695,2,1,0,0,1,,296.0,599.0,43,2.0,0.0,2.0,2.0,1.5,4,2,431.236257105824,0.0,35842.93194582653,1,1,2,3,54.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03752483200963722,23895.287963884355,6,3,6,6_0,6_4,6_1_0 -6659,2,72.0,0.0,1,111,200.0,1135.0,0.0,0,74,0.0,0.0,276.4348455151861,1335.0,0.0,2058.4960424618544,44,0,0,0,0,0,0,0,0,0,,2,,1,116783,2,1,0,1,1,,0.0,2160.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1017.24784030315,200.0,32505.19575980294,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041070357178125586,32505.19575980294,8,4,8,8_0,8_4,8_1_0 -6660,2,45.0,0.0,1,111,1200.0,6167.0,0.0,0,37,0.0,0.0,1658.6090730911167,7367.0,0.0,11184.797439526217,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,119920,1,2,0,1,2,182.0,0.0,2954.0,32,1.0,0.0,3.0,3.0,2.0,3,2,890.072310169769,1200.0,97026.04370814071,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07592806754195101,48513.02185407036,10,5,10,10_0,10_4,10_1_0 -6662,2,73.0,0.0,1,111,300.0,400.0,0.0,0,75,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,31,0,0,0,0,0,0,0,0,0,,2,,1,119606,2,1,0,0,1,,600.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,505.901194651471,300.0,28029.982014047724,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024973258978517453,28029.982014047724,7,4,7,7_0,7_4,7_1_0 -6663,1,47.0,185.0,2,111,829.0,0.0,0.0,0,85,0.0,0.0,1145.8224346604463,829.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,2,110546,1,2,0,0,2,,0.0,213.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1383.1976257388,829.0,12813.058624019488,0,7,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.06469961812599127,12813.058624019488,2,1,2_1,2_0_1,2_4_1,2_0_1 -6664,2,61.0,0.0,2,111,0.0,0.0,120.0,0,37,0.0,0.0,61.309600180503004,120.0,0.0,137.18949295831578,20,0,0,0,0,0,0,0,0,0,,2,,2,103990,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1290.93598178025,0.0,171166.47690639703,0,1,0,1,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0007010718580462599,171166.47690639703,10,5,10,10_0,10_4,10_0_1 -6665,2,38.0,0.0,1,111,300.0,600.0,0.0,0,23,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,31,0,0,0,0,0,0,0,0,0,,2,,1,119186,2,3,0,0,1,,0.0,1289.0,12,1.0,0.0,2.0,1.0,1.0,2,2,610.091230502458,300.0,34434.068052690134,0,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02613690600317229,34434.068052690134,9,5,9,9_0,9_4,9_1_0 -6666,2,48.0,0.0,1,111,340.0,850.0,0.0,0,46,0.0,0.0,469.9392373758164,1190.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,0,,2,,1,131412,2,1,0,0,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,964.747424849552,340.0,26769.174793505426,0,1,1,2,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04445411594416091,20591.672918081098,5,3,5,5_0,5_4,5_1_0 -6667,2,65.0,0.0,7,111,550.0,0.0,0.0,0,74,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,130546,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1027.56543633138,550.0,30856.395026877814,0,5,0,1,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01782450605525747,30856.395026877814,8,4,8,8_0,8_4,8_0_0 -6668,2,49.0,0.0,2,111,900.0,0.0,0.0,43,43,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,124093,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,1269.42031899469,900.0,93540.72077068825,1,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009621478138984176,37416.288308275296,9,5,9,9_0,9_4,9_0_1 -6669,2,47.0,0.0,1,111,50.0,100.0,0.0,46,47,0.0,0.0,69.10871137879653,150.0,0.0,181.36529008474488,41,0,0,0,0,0,0,0,0,0,,2,,1,102326,2,2,0,0,2,,311.0,,43,2.0,0.0,4.0,4.0,2.3,5,4,475.909931604831,50.0,70641.36991787975,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.002123401629588643,30713.63909473033,8,4,8,8_0,8_4,8_1_0 -6670,2,49.0,0.0,1,111,328.0,0.0,0.0,46,37,0.0,0.0,453.3531466449052,328.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,103269,2,3,0,0,1,,0.0,710.0,43,2.0,0.0,1.0,3.0,2.0,1,1,1034.67174941077,328.0,77504.94651908451,1,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004231987953429973,38752.473259542254,9,5,9,9_0,9_4,9_1_0 -6671,2,26.0,0.0,1,111,733.0,0.0,0.0,34,38,0.0,0.0,1013.1337088131571,733.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,102872,2,3,0,0,1,,0.0,730.0,43,2.0,0.0,1.0,2.0,1.5,1,1,1173.49278979434,733.0,40265.0,1,1,2,3,19.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.018204395877312804,26843.333333333332,7,4,7,7_0,7_4,7_1_0 -6672,2,47.0,0.0,1,111,820.0,0.0,0.0,0,34,0.0,0.0,1133.3828666122631,820.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,113805,2,2,0,0,1,,0.0,955.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1286.10092246784,820.0,39380.365511016134,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02082255939881045,39380.365511016134,9,5,9,9_0,9_4,9_1_0 -6673,2,63.0,0.0,2,111,252.0,120.0,0.0,0,33,0.0,0.0,348.3079053491345,372.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,3,50.0,2,,2,103261,2,2,0,1,1,,0.0,750.0,12,1.0,1.0,2.0,1.0,1.0,5,5,485.65855739955,252.0,42871.811213995956,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008677030185245746,42871.811213995956,9,5,9,9_0,9_4,9_0_1 -6674,2,86.0,0.0,2,111,391.0,105.0,0.0,86,74,0.0,1067.262852468861,540.4301229821889,1527.0,0.0,190.43355458898213,50,0,0,0,0,0,0,0,0,0,,2,,2,100226,2,1,0,1,1,1031.0,0.0,723.0,41,0.0,1.0,5.0,2.0,1.5,4,2,1066.71593936986,391.0,54309.55084381376,5,5,2,3,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0281166015235778,36206.36722920917,9,5,9,9_0,9_4,9_0_1 -6675,2,35.0,0.0,1,111,450.0,1550.0,0.0,35,37,0.0,0.0,621.9784024091688,2000.0,0.0,2811.161996313546,71,0,0,0,0,0,0,0,0,3,45.0,2,,1,124813,1,3,0,0,2,,0.0,1583.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1058.67795137026,450.0,133497.29566934594,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014981576892416752,74165.16426074774,10,5,10,10_0,10_4,10_1_0 -6676,0,48.0,0.0,1,111,612.0,0.0,0.0,0,63,0.0,0.0,845.8906272764696,682.0,120.42289029331342,0.0,50,2,2,1,1,2,2,2,2,0,,1,,1,126568,1,2,3,1,2,172.0,0.0,,32,1.0,0.0,3.0,2.0,1.5,4,4,1702.31020438815,612.0,29429.685352272463,0,1,5,0,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.023173880109028697,19619.790234848308,5,3,5,5_1,5_4,5_1_0 -6677,2,67.0,0.0,1,111,400.0,0.0,0.0,0,72,0.0,0.0,552.8696910303722,400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,121284,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1152.49927450192,400.0,20758.07284033796,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01926961154229612,20758.07284033796,5,3,5,5_0,5_4,5_1_0 -6678,2,62.0,0.0,1,111,150.0,333.0,0.0,0,37,0.0,0.0,207.32613413638958,483.0,0.0,603.9464159822005,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,102343,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1086.49918666831,150.0,62120.269492524116,0,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007775239932887394,62120.269492524116,10,5,10,10_0,10_4,10_1_0 -6679,2,93.0,0.0,1,111,840.0,200.0,0.0,0,77,0.0,0.0,1161.0263511637818,1040.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,0,,2,,1,133512,1,2,0,0,2,,0.0,400.0,11,0.0,1.0,3.0,1.0,1.0,2,2,528.308131739098,840.0,19745.023035578473,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.052671500971461435,19745.023035578473,5,3,5,5_0,5_4,5_1_0 -6680,2,53.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,766.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,113895,2,1,0,1,1,,0.0,,12,1.0,2.0,1.0,1.0,1.0,2,2,1610.15123913296,0.0,10701.497739880151,0,4,0,1,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07157876575962148,10701.497739880151,2,1,2_0,2_0_0,2_4_0,2_1_0 -6681,1,70.0,39.0,1,111,450.0,350.0,0.0,0,77,0.0,0.0,621.9784024091688,800.0,0.0,634.7785152966071,10,1,2,2,2,2,2,2,1,0,,2,,1,101203,2,1,0,0,1,,0.0,198.0,11,0.0,3.0,3.0,1.0,1.0,2,2,995.995216395794,450.0,12293.68002718766,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.06507408670396397,12293.68002718766,2,1,2_1,2_0_1,2_4_1,2_1_0 -6682,2,65.0,0.0,1,111,0.0,0.0,1270.0,0,75,0.0,0.0,648.8599352436569,1270.0,0.0,1451.922133808842,71,0,0,0,0,0,0,0,0,0,,2,,1,104404,2,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,505.901194651471,0.0,36756.37708853181,0,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03455182748128479,36756.37708853181,9,5,9,9_0,9_4,9_1_0 -6683,2,49.0,0.0,1,111,400.0,500.0,0.0,0,22,0.0,0.0,552.8696910303722,997.0,0.0,906.8264504237244,43,0,0,0,0,0,0,0,0,2,30.0,2,,1,107796,1,2,0,1,1,630.0,0.0,931.0,32,1.0,0.0,2.0,2.0,1.3,1,1,993.899365322255,400.0,24670.0,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.040413457640859345,18976.923076923078,5,3,5,5_0,5_4,5_1_0 -6684,2,69.0,0.0,1,111,384.0,809.0,0.0,74,74,0.0,0.0,530.7549033891573,1193.0,0.0,1467.2451967855861,70,0,0,0,0,0,0,0,0,0,,2,,1,132694,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,449.210529337761,384.0,87039.86838654934,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013706362637197642,58026.57892436622,10,5,10,10_0,10_4,10_1_0 -6685,2,78.0,0.0,1,111,300.0,1000.0,0.0,74,74,0.0,51.75862524097289,414.65226827277917,1350.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,2,,1,126180,2,2,0,0,2,,0.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,474.433215283054,300.0,127238.53348367082,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010609993396169191,84825.68898911389,10,5,10,10_0,10_4,10_1_0 -6686,2,75.0,0.0,1,111,0.0,0.0,0.0,77,72,0.0,0.0,0.0,4026.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,125049,2,1,0,0,1,,358.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,811.101211709149,0.0,109887.12607637749,5,5,0,1,82.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03663759480980249,73258.08405091833,10,5,10,10_0,10_4,10_1_0 -6688,2,27.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,321.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,25.0,2,,1,104872,2,1,0,1,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.5883544561,0.0,13790.543320838817,0,1,3,4,10.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023276820392923794,13790.543320838817,3,2,3_0,3_0_0,3_4_0,3_1_0 -6689,2,29.0,0.0,1,111,552.0,0.0,0.0,0,37,0.0,0.0,762.9601736219137,552.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,20.0,2,,1,113237,2,2,0,0,1,,0.0,930.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1150.21584015756,552.0,46072.70729877987,0,1,3,4,29.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011981062810576761,46072.70729877987,10,5,10,10_0,10_4,10_1_0 -6690,0,72.0,0.0,1,111,432.0,0.0,0.0,0,74,0.0,0.0,597.099266312802,460.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,133331,1,1,0,1,1,936.0,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1044.67464666957,432.0,33555.06906334215,0,5,5,0,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013708808023361677,33555.06906334215,9,5,9,9_0,9_4,9_1_0 -6691,2,43.0,0.0,1,111,1275.0,250.0,0.0,0,34,0.0,0.0,1762.2721401593114,1525.0,0.0,453.4132252118622,50,2,2,2,1,1,2,1,2,0,,2,,1,107537,1,3,0,0,2,,0.0,1200.0,32,1.0,0.0,3.0,2.0,1.3,2,2,807.470434342608,1275.0,36794.8778639815,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0414459861950737,28303.75220306269,8,4,8,8_0,8_4,8_1_0 -6692,2,68.0,0.0,1,111,878.0,2213.0,0.0,31,74,0.0,0.0,1213.5489718116671,3091.0,0.0,4013.6138695754044,70,0,0,0,0,0,0,0,0,0,,2,,1,125913,1,3,0,0,2,,0.0,,41,1.0,2.0,5.0,3.0,2.0,4,4,479.163125304214,878.0,75442.93533213729,5,5,0,1,165.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0409713644676189,37721.467666068645,9,5,9,9_0,9_4,9_1_0 -6693,2,37.0,0.0,1,111,1224.0,0.0,0.0,37,33,0.0,0.0,1691.7812545529391,1224.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,2,,1,115624,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,295.108235474799,1224.0,234287.82013122857,1,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005224343285598103,97619.92505467858,10,5,10,10_0,10_4,10_1_0 -6694,1,25.0,340.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,603.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,8,,1,108650,1,3,0,1,2,,0.0,1230.0,22,2.0,0.0,2.0,2.0,1.5,3,3,993.899365322255,0.0,22166.569246550614,0,1,3,4,25.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02720312707361488,14777.712831033743,3,2,3_1,3_0_1,3_4_1,3_1_0 -6695,2,61.0,0.0,1,111,321.0,918.0,0.0,0,31,0.0,0.0,443.6779270518737,1239.0,0.0,1664.933362977958,60,0,0,0,0,0,0,0,0,1,10.0,2,,1,123727,2,2,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,534.307000211848,321.0,83104.82603874562,0,1,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014908881458007579,83104.82603874562,10,5,10,10_0,10_4,10_1_0 -6696,0,41.0,0.0,1,111,210.0,1000.0,0.0,0,37,0.0,0.0,290.25658779094545,1210.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,2,,1,109225,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1312.22812577329,210.0,67106.30934885472,0,4,5,0,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018031091438954996,67106.30934885472,10,5,10,10_0,10_4,10_1_0 -6697,2,39.0,0.0,1,111,667.0,68.0,0.0,0,38,0.0,0.0,921.9102097931457,735.0,0.0,123.32839725762652,70,0,0,0,0,0,0,0,0,3,35.0,2,,1,129055,1,3,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,536.632486208635,667.0,54435.03288658069,0,1,1,2,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013502334085687528,54435.03288658069,10,5,10,10_0,10_4,10_1_0 -6698,2,27.0,0.0,1,111,456.0,0.0,0.0,0,46,0.0,0.0,630.2714477746243,456.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,15.0,2,,1,116522,2,2,0,0,1,,0.0,820.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1029.08623358713,456.0,33704.2436737793,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013529453573074885,33704.2436737793,9,5,9,9_0,9_4,9_1_0 -6699,2,63.0,0.0,1,111,400.0,929.0,0.0,72,22,0.0,0.0,552.8696910303722,1329.0,0.0,1684.88354488728,30,2,2,2,2,1,2,2,2,0,,2,,1,106796,2,2,0,0,1,,0.0,,42,1.0,4.0,6.0,2.0,1.5,1,1,474.433215283054,400.0,304572.3275837892,5,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.0043634955629197345,203048.2183891928,10,5,10,10_0,10_4,10_1_0 -6700,2,71.0,0.0,5,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,122.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,105789,2,2,0,1,1,,297.0,700.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1171.78684668516,0.0,34819.745034864834,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0035037591423441503,34819.745034864834,9,5,9,9_0,9_4,9_0_0 -6701,2,82.0,0.0,1,111,717.0,0.0,0.0,0,74,0.0,0.0,991.0189211719422,717.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,118547,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,2,462.720592006801,717.0,26532.863473732516,0,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02702309159770217,26532.863473732516,7,4,7,7_0,7_4,7_1_0 -6702,2,29.0,0.0,8,111,1035.0,0.0,0.0,0,31,0.0,0.0,1430.5503255410881,1035.0,0.0,0.0,41,2,2,2,2,2,2,2,1,1,20.0,2,,6,100289,1,1,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,832.495074102968,1035.0,6203.970585489605,0,1,0,1,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.16682864396887206,6203.970585489605,1,1,1_0,1_0_0,1_4_0,1_0_0 -6704,2,46.0,0.0,5,111,444.0,0.0,0.0,38,37,0.0,0.0,613.6853570437131,444.0,0.0,0.0,50,1,2,2,1,2,2,2,2,3,40.0,2,,3,108349,2,2,0,1,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,500.580026400225,444.0,93690.60042975258,1,1,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0047390026103301865,62460.40028650172,10,5,10,10_0,10_4,10_0_0 -6705,2,50.0,0.0,1,111,352.0,756.0,0.0,85,34,0.0,0.0,486.52532810672756,1108.0,0.0,1371.1215930406713,70,0,0,0,0,0,0,0,0,1,5.0,2,,1,107836,1,1,0,0,2,,0.0,,42,1.0,0.0,4.0,6.0,3.0999999999999996,1,1,1038.01081698995,352.0,80721.36356807937,6,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013726229972137759,26039.14953809012,7,4,7,7_0,7_4,7_1_0 -6706,2,41.0,0.0,7,111,852.0,0.0,0.0,0,37,0.0,0.0,1177.612441894693,852.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,5,113556,1,1,0,0,1,,0.0,625.0,12,1.0,0.0,1.0,1.0,1.0,2,1,503.317143887736,852.0,57013.297685461715,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014943882122034461,57013.297685461715,10,5,10,10_0,10_4,10_0_0 -6707,1,45.0,300.0,2,111,350.0,60.0,0.0,0,37,0.0,0.0,483.76097965157567,410.0,0.0,108.81917405084694,50,2,2,2,2,2,2,2,1,0,,2,,2,107575,2,2,0,1,1,,0.0,700.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1321.5883544561,350.0,6365.540104786422,0,4,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06440930278511794,6365.540104786422,1,1,1_1,1_0_1,1_4_1,1_0_1 -6708,2,28.0,0.0,5,111,569.0,0.0,0.0,0,38,0.0,0.0,786.4571354907044,569.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,3,129939,2,2,0,0,1,,0.0,955.0,12,1.0,0.0,2.0,1.0,1.0,2,2,751.21506108756,569.0,53336.75758623615,0,1,3,4,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010668065059635978,53336.75758623615,10,5,10,10_0,10_4,10_0_0 -6709,2,92.0,0.0,1,111,613.0,583.0,0.0,74,74,0.0,0.0,847.2728015040454,1196.0,0.0,1057.3596411940628,20,0,0,0,0,0,0,0,0,0,,2,,1,116329,2,2,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,691.615717936106,613.0,26952.520927431553,5,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04437432784933833,17968.34728495437,4,2,4_0,4_0_0,4_4_0,4_1_0 -6710,1,24.0,42.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,176.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,60.0,2,,1,130952,1,3,0,0,2,,0.0,258.0,12,1.0,0.0,1.0,1.0,1.0,3,3,564.511633678504,0.0,18997.99078519501,0,1,3,4,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.009264137560123226,18997.99078519501,5,3,5,5_0,5_4,5_1_0 -6711,2,47.0,0.0,1,111,799.0,420.0,0.0,46,35,0.0,0.0,1104.3572078331686,1219.0,0.0,761.7342183559285,50,2,2,2,2,1,2,2,2,1,10.0,2,,1,124664,1,2,0,0,2,,0.0,778.0,43,2.0,0.0,2.0,3.0,1.8,3,3,488.294540146872,799.0,42481.27369367938,1,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.028694996501043474,23600.707607599656,6,3,6,6_0,6_4,6_1_0 -6712,2,39.0,0.0,1,111,338.0,84.0,0.0,0,31,0.0,0.0,467.17488892066456,422.0,0.0,152.3468436711857,70,0,0,0,0,0,0,0,0,1,10.0,2,,1,119220,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,614.015477771694,338.0,17887.046058036885,0,1,1,2,33.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023592492501599494,17887.046058036885,4,2,4_0,4_0_0,4_4_0,4_1_0 -6713,1,26.0,368.0,1,111,276.0,764.0,0.0,84,46,0.0,0.0,381.48008681095683,1040.0,0.0,1385.6308162474509,60,0,0,0,0,0,0,0,0,3,40.0,2,,1,111339,2,1,0,0,2,,0.0,1050.0,42,1.0,0.0,2.0,2.0,1.5,2,2,666.251185610064,276.0,14672.040563034214,3,1,3,4,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07088311919067687,9781.360375356142,2,1,2_1,2_0_1,2_4_1,2_1_0 -6714,1,29.0,200.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,106209,2,2,0,0,1,,0.0,426.0,12,1.0,0.0,1.0,1.0,1.0,1,1,564.511633678504,0.0,12717.755396828994,0,1,2,3,21.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03695620691975161,12717.755396828994,2,1,2_1,2_0_1,2_4_1,2_1_0 -6716,2,68.0,0.0,1,111,2200.0,0.0,0.0,74,74,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,133593,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,882.402540818201,2200.0,175704.75604127257,5,5,0,1,112.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012521004266288762,117136.50402751505,10,5,10,10_0,10_4,10_1_0 -6717,2,78.0,0.0,6,111,744.0,0.0,0.0,0,74,0.0,0.0,1028.3376253164924,744.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,104561,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,602.887760051271,744.0,56756.10725149823,0,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013108721440376095,56756.10725149823,10,5,10,10_0,10_4,10_0_0 -6718,2,84.0,0.0,1,111,500.0,1200.0,0.0,0,74,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,2,,1,110434,2,1,0,0,1,,700.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,1200.01847193003,500.0,103792.61073745361,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01637881529254716,103792.61073745361,10,5,10,10_0,10_4,10_1_0 -6719,2,80.0,0.0,5,111,0.0,0.0,672.0,78,78,0.0,0.0,343.33376101081683,672.0,0.0,768.2611605665684,70,0,0,0,0,0,0,0,0,0,,2,,3,129970,1,1,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,500.580026400225,0.0,38071.018023865865,5,5,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017651222238888865,25380.678682577243,7,4,7,7_0,7_4,7_0_0 -6720,2,72.0,0.0,1,111,175.0,585.0,0.0,0,77,0.0,0.0,241.88048982578783,760.0,0.0,1060.9869469957575,70,0,0,0,0,0,0,0,0,0,,2,,1,114996,2,1,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,505.901194651471,175.0,29100.76256983292,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026116154110265414,29100.76256983292,8,4,8,8_0,8_4,8_1_0 -6721,0,72.0,0.0,2,111,360.0,540.0,0.0,0,72,0.0,0.0,497.582721927335,900.0,0.0,979.3725664576224,71,0,0,0,0,0,0,0,0,0,,2,,2,119600,2,1,0,0,2,,0.0,,11,0.0,2.0,1.0,1.0,1.0,3,3,505.901194651471,360.0,17535.649690444206,0,5,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05132401797980954,17535.649690444206,4,2,4_0,4_0_0,4_4_0,4_0_1 -6722,2,70.0,0.0,1,111,600.0,1300.0,0.0,74,74,0.0,0.0,829.3045365455583,1900.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,2,,1,118270,2,1,0,0,1,,500.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,982.329680673735,600.0,54833.527551635285,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03465033319643388,36555.68503442352,9,5,9,9_0,9_4,9_1_0 -6723,2,65.0,0.0,1,111,380.0,1115.0,0.0,0,86,0.0,0.0,525.2262064788536,1495.0,0.0,2022.2229844449055,71,0,0,0,0,0,0,0,0,0,,2,,1,108734,2,1,0,0,1,,400.0,1500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1437.11870742802,380.0,57519.60274377211,0,6,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02599113917145177,57519.60274377211,10,5,10,10_0,10_4,10_1_0 -6724,2,40.0,0.0,8,111,1500.0,0.0,0.0,31,46,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,2000.0,6,119962,2,1,0,0,1,,0.0,1200.0,43,2.0,0.0,4.0,4.0,2.1,2,2,652.334415346335,1500.0,94670.84376907752,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015844371300406085,45081.3541757512,10,5,10,10_0,10_4,10_0_0 -6726,2,70.0,0.0,2,111,0.0,0.0,250.0,0,74,0.0,0.0,127.72833370938126,250.0,0.0,285.8114436631579,33,0,0,0,0,0,0,0,0,0,,2,,2,111666,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,4,2,1352.84647679197,0.0,38966.14331074564,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006415826118749039,38966.14331074564,9,5,9,9_0,9_4,9_0_1 -6727,2,60.0,0.0,1,111,300.0,0.0,0.0,0,54,0.0,0.0,414.65226827277917,300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,20.0,2,,1,107966,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,564.511633678504,300.0,47491.519404186336,0,1,0,1,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006316917288890851,47491.519404186336,10,5,10,10_0,10_4,10_1_0 -6728,0,45.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,318.0,0.0,0.0,71,2,2,2,2,2,2,1,2,0,,2,,1,119302,2,3,0,0,2,,0.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,1182.11205129789,0.0,11567.55646263051,0,1,5,0,18.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02749068059683242,11567.55646263051,2,1,2_0,2_0_0,2_4_0,2_1_0 -6729,2,50.0,0.0,1,111,340.0,1065.0,0.0,75,38,0.0,0.0,469.9392373758164,1405.0,0.0,1931.5403394025332,41,0,0,0,0,0,0,0,0,3,35.0,2,,1,107615,2,1,0,0,1,,0.0,828.0,42,1.0,0.0,3.0,2.0,1.5,2,2,564.351664450072,340.0,56496.31092371558,5,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02486888041056536,37664.20728247705,9,5,9,9_0,9_4,9_1_0 -6730,2,71.0,0.0,1,111,700.0,300.0,0.0,0,74,0.0,0.0,967.5219593031513,1000.0,0.0,544.0958702542347,10,0,0,0,0,0,0,0,0,0,,2,,1,101166,2,2,0,0,2,,0.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,961.049310682147,700.0,81568.5833480954,0,5,0,1,103.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012259622013201847,54379.055565396935,10,5,10,10_0,10_4,10_1_0 -6731,2,53.0,0.0,1,111,650.0,0.0,0.0,63,56,0.0,0.0,898.4132479243549,650.0,0.0,0.0,71,2,2,2,2,1,2,2,1,3,30.0,2,,1,119801,2,3,0,0,1,,0.0,625.0,43,2.0,2.0,2.0,3.0,2.0,2,2,537.29559816584,650.0,22902.054238023622,4,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.028381733500605535,11451.027119011811,2,1,2_0,2_0_0,2_4_0,2_1_0 -6732,2,72.0,0.0,7,111,1500.0,0.0,0.0,74,37,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,40.0,2,,5,108108,2,1,0,1,1,828.0,0.0,969.0,41,0.0,3.0,4.0,2.0,1.5,3,2,717.805261471254,1500.0,93775.69816674675,5,5,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015995615381426253,62517.1321111645,10,5,10,10_0,10_4,10_0_0 -6733,2,30.0,0.0,1,111,0.0,0.0,0.0,35,23,0.0,0.0,0.0,466.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,115319,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,545.209658936312,0.0,59419.68864058322,1,1,1,2,47.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0078425183749907,39613.125760388815,9,5,9,9_0,9_4,9_1_0 -6734,2,78.0,0.0,1,111,480.0,1200.0,0.0,0,74,0.0,0.0,663.4436292364467,1680.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,2,,1,121668,2,1,0,0,1,,450.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,962.844568619684,480.0,65598.00967556048,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025610533129115796,65598.00967556048,10,5,10,10_0,10_4,10_1_0 -6735,1,65.0,307.0,1,111,200.0,0.0,0.0,0,78,0.0,0.0,276.4348455151861,200.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,1,100374,2,2,0,0,2,,0.0,539.0,11,0.0,3.0,1.0,1.0,1.0,2,2,564.511633678504,200.0,530.4476362814571,0,5,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.37704004376763667,530.4476362814571,1,1,1_1,1_0_1,1_4_1,1_1_0 -6736,2,71.0,0.0,1,111,1200.0,0.0,0.0,0,23,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,2,,1,115274,1,3,0,1,2,,0.0,3800.0,11,0.0,1.0,5.0,1.0,1.0,2,2,1299.18089973199,1200.0,60858.39401385932,0,5,2,3,130.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.0197179044804686,60858.39401385932,10,5,10,10_0,10_4,10_1_0 -6737,2,26.0,0.0,2,111,360.0,0.0,0.0,0,33,0.0,0.0,497.582721927335,360.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,133479,1,2,0,0,1,,0.0,555.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1116.23246376505,360.0,13398.0,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026869682042095836,13398.0,3,2,3_0,3_0_0,3_4_0,3_0_1 -6739,2,76.0,0.0,1,111,400.0,1000.0,0.0,46,77,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,2,,1,131349,2,1,0,0,1,,0.0,1460.0,41,0.0,1.0,4.0,2.0,1.5,2,2,445.146472012111,400.0,65314.235504144846,5,5,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021434837125379136,43542.8236694299,10,5,10,10_0,10_4,10_1_0 -6740,2,33.0,0.0,1,111,1400.0,0.0,0.0,42,31,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,1,120230,1,1,0,0,1,,0.0,1300.0,43,2.0,0.0,3.0,4.0,2.1,2,2,477.365751049403,1400.0,51683.5038992534,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02708794672143395,24611.19233297781,7,4,7,7_0,7_4,7_1_0 -6741,1,66.0,200.0,1,111,400.0,800.0,0.0,85,78,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,1,129943,2,2,0,0,1,,0.0,425.0,41,0.0,2.0,3.0,3.0,2.0,1,1,415.362723082956,400.0,15678.152462460715,7,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07653963072965664,7839.076231230358,1,1,1_1,1_0_1,1_4_1,1_1_0 -6742,2,52.0,0.0,1,111,300.0,0.0,0.0,0,68,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,10.0,8,,1,100409,1,2,0,0,2,,0.0,310.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.25371214467,300.0,11205.917335663524,0,1,2,3,9.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026771569967344973,11205.917335663524,2,1,2_0,2_0_0,2_4_0,2_1_0 -6743,2,83.0,0.0,2,111,300.0,0.0,0.0,78,74,0.0,0.0,414.65226827277917,1289.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,2,107718,2,2,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,367.890800160052,300.0,100259.19295124538,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012856676401004168,66839.46196749691,10,5,10,10_0,10_4,10_0_1 -6744,2,38.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,985.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,128139,2,1,0,1,2,,0.0,,32,1.0,0.0,7.0,3.0,1.6,2,2,1213.12510381944,0.0,432593.4698027308,0,1,1,2,135.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002276964560859356,270370.9186267067,10,5,10,10_0,10_4,10_0_1 -6745,2,42.0,0.0,5,111,552.5,0.0,0.0,22,46,0.0,0.0,763.6512607357016,553.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,60.0,2,,3,103893,2,1,0,1,2,,0.0,996.0,43,2.0,0.0,2.0,3.0,1.8,2,2,637.623662849124,552.5,34185.71058556246,1,1,2,3,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01617634943161154,18992.061436423588,5,3,5,5_0,5_4,5_0_0 -6746,2,61.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,516.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,117773,1,3,0,0,2,,0.0,66.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1321.25371214467,0.0,4979.710071793115,0,1,2,3,19.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.10362049046244906,4979.710071793115,1,1,1_0,1_0_0,1_4_0,1_1_0 -6747,2,39.0,0.0,1,111,1200.0,0.0,0.0,31,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,70.0,2,,1,114716,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,548.57852627206,1200.0,107504.81567150194,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01116229066116248,51192.76936738187,10,5,10,10_0,10_4,10_1_0 -6748,1,71.0,43.0,7,111,800.0,0.0,0.0,0,78,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,127934,1,1,0,0,1,,0.0,670.0,11,0.0,4.0,1.0,1.0,1.0,3,3,421.275570198114,800.0,18619.69380625357,0,5,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042965260778419126,18619.69380625357,4,2,4_1,4_0_1,4_4_1,4_0_0 -6750,2,65.0,0.0,1,111,319.5,100.0,0.0,0,31,0.0,0.0,441.60466571050983,420.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,1,120370,2,1,0,1,2,,0.0,,32,2.0,2.0,6.0,3.0,2.0,1,1,840.239445091662,319.5,54034.256746384126,0,1,1,2,103.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00777284680663449,27017.128373192063,7,4,7,7_0,7_4,7_1_0 -6751,1,51.0,546.0,9,111,560.0,820.0,0.0,52,52,0.0,0.0,774.0175674425211,1380.0,0.0,1487.1953786949082,20,2,2,2,2,1,2,2,2,3,20.0,2,2009.0,6,115487,2,3,0,0,1,,0.0,960.0,43,3.0,1.0,4.0,6.0,3.3,2,2,794.449205196639,560.0,51112.713769263275,1,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.026999153404957055,15488.701142200993,3,2,3_1,3_0_1,3_4_1,3_0_0 -6752,2,37.0,0.0,1,111,0.0,0.0,1630.0,46,37,0.0,0.0,832.7887357851658,1630.0,0.0,1863.4906126837895,42,0,0,0,0,0,0,0,0,3,30.0,2,,1,100195,1,1,0,0,2,,0.0,1630.0,43,2.0,0.0,3.0,5.0,2.4,1,1,753.253325026459,0.0,80090.87066674176,1,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02035188263569306,33371.1961111424,8,4,8,8_0,8_4,8_1_0 -6753,0,64.0,0.0,1,111,460.0,0.0,0.0,0,56,0.0,0.0,635.800144684928,460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,117952,1,2,0,0,2,,0.0,,12,1.0,1.0,1.0,1.0,1.0,2,2,1321.25371214467,460.0,19292.03480320942,0,1,5,0,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02384403743266493,19292.03480320942,5,3,5,5_0,5_4,5_1_0 -6754,2,25.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,790.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,128921,2,3,0,0,2,,0.0,585.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1174.20936063346,0.0,22487.609085060598,0,4,2,3,18.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03513045771170169,22487.609085060598,6,3,6,6_0,6_4,6_1_0 -6755,1,43.0,450.0,1,111,1000.0,200.0,0.0,0,43,0.0,0.0,1382.1742275759307,1200.0,0.0,362.73058016948977,71,2,2,2,1,1,2,2,2,3,30.0,2,,1,114891,2,3,0,0,1,,0.0,660.0,31,0.0,0.0,2.0,4.0,1.9,2,2,511.812992348888,1000.0,9335.343548291365,0,7,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,0.12854374279772857,4913.338709627034,1,1,1_1,1_0_1,1_4_1,1_1_0 -6756,2,49.0,0.0,6,111,1688.0,0.0,0.0,37,37,0.0,0.0,2333.1100961481707,1688.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,115253,2,1,0,0,1,,0.0,1417.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,1098.24093059788,1688.0,41829.97770946129,4,1,3,4,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040353834556746626,16088.452965177421,4,2,4_0,4_0_0,4_4_0,4_0_0 -6757,2,68.0,0.0,1,111,1000.0,1000.0,0.0,0,86,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,12,0,0,0,0,0,0,0,0,0,,2,,1,131869,2,1,0,0,1,,173.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,1444.55172939841,1000.0,28608.75110977615,0,7,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.069908679072557,28608.75110977615,8,4,8,8_0,8_4,8_1_0 -6758,2,54.0,0.0,2,111,130.0,417.0,0.0,0,43,0.0,0.0,179.68264958487097,547.0,0.0,756.2932596533861,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,116749,1,2,0,0,1,,300.0,164.0,12,1.0,0.0,1.0,1.0,1.0,3,3,497.053674471306,130.0,36388.34427032388,0,1,2,3,21.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015032286051171058,36388.34427032388,9,5,9,9_0,9_4,9_0_1 -6759,1,45.0,307.0,1,111,1200.0,0.0,0.0,0,85,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,122097,2,1,0,0,1,,0.0,830.0,11,0.0,0.0,2.0,1.0,1.0,1,1,649.140672517235,1200.0,9329.973190724144,0,7,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1286177329205018,9329.973190724144,1,1,1_1,1_0_1,1_4_1,1_1_0 -6760,2,29.0,0.0,1,111,1096.0,2446.0,0.0,0,37,0.0,0.0,1514.86295342322,3542.0,0.0,4436.19499547286,43,0,0,0,0,0,0,0,0,0,,2,,1,110762,2,1,0,0,1,,0.0,,22,2.0,1.0,7.0,3.0,2.0,3,2,949.143289061915,1096.0,150288.85113201544,0,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023567949141408147,75144.42556600772,10,5,10,10_0,10_4,10_1_0 -6762,2,68.0,0.0,6,111,450.0,1000.0,0.0,45,74,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,2,,4,106208,2,2,0,0,1,,0.0,450.0,42,1.0,0.0,3.0,3.0,1.8,2,2,560.207530087406,450.0,53330.50839438881,1,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02718894013304704,29628.060219104893,8,4,8,8_0,8_4,8_0_0 -6764,0,71.0,0.0,1,111,2000.0,200.0,0.0,0,77,0.0,0.0,2764.3484551518613,2200.0,0.0,362.73058016948977,33,0,0,0,0,0,0,0,0,0,,2,,1,115358,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,575.41808475356,2000.0,18095.422606615106,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12157770767927523,18095.422606615106,4,2,4_0,4_0_0,4_4_0,4_1_0 -6765,2,40.0,0.0,1,111,0.0,0.0,0.0,33,33,0.0,0.0,0.0,1715.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,75.0,2,,1,119990,2,1,0,0,2,,0.0,600.0,43,2.0,1.0,3.0,3.0,1.8,1,1,925.397660086199,0.0,62766.55869635791,1,1,2,3,46.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027323467075780823,34870.31038686551,9,5,9,9_0,9_4,9_1_0 -6766,0,80.0,0.0,1,111,700.0,0.0,0.0,86,74,0.0,0.0,967.5219593031513,864.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,103808,2,1,0,1,2,,0.0,,41,0.0,3.0,9.0,2.0,1.5,1,1,767.466240543851,700.0,150531.4024059037,6,5,0,1,200.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005739666183872042,100354.26827060246,10,5,10,10_0,10_4,10_1_0 -6767,2,41.0,0.0,1,111,750.0,1183.0,0.0,46,46,0.0,0.0,1036.630670681948,1933.0,0.0,2145.551381702532,70,2,2,2,2,1,2,2,2,2,30.0,2,,1,113574,1,2,0,0,2,,0.0,1468.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,1269.2016962641,750.0,64338.402453693765,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03004426479801448,23829.037945812506,6,3,6,6_0,6_4,6_1_0 -6768,2,61.0,0.0,2,111,495.0,0.0,0.0,74,75,0.0,0.0,684.1762426500857,495.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,2,126944,2,1,0,1,2,,0.0,,41,0.0,2.0,3.0,3.0,2.0,2,2,330.84561136644,495.0,58107.991349544,5,5,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008518621767914276,29053.995674772,8,4,8,8_0,8_4,8_0_1 -6769,2,38.0,0.0,1,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,667.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,102558,1,1,0,1,2,72.0,0.0,2750.0,42,1.0,0.0,4.0,4.0,2.1,3,2,1567.82421607896,0.0,118834.60682710251,6,1,2,3,98.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0056128430750012615,56587.90801290596,10,5,10,10_0,10_4,10_1_0 -6770,2,36.0,0.0,1,111,330.0,400.0,0.0,0,38,0.0,0.0,456.1174951000571,730.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,,1,109861,2,2,0,0,1,,0.0,1100.0,12,1.0,1.0,1.0,1.0,1.0,2,2,1146.35346046772,330.0,42684.061782545796,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01710240238426674,42684.061782545796,9,5,9,9_0,9_4,9_1_0 -6771,2,80.0,0.0,2,111,155.0,89.0,0.0,0,77,0.0,0.0,214.23700527426922,244.0,0.0,161.41510817542294,20,2,2,2,2,1,2,2,2,0,,2,,2,115279,1,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1180.34990610876,155.0,23086.18895716532,0,5,0,1,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010569089616858096,23086.18895716532,6,3,6,6_0,6_4,6_0_1 -6772,2,70.0,0.0,1,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,993.0,0.0,0.0,31,2,2,2,2,2,2,2,1,0,,2,,1,120233,2,1,0,0,1,,460.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1019.10050212813,0.0,102168.44049448895,5,5,0,1,110.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.009719243977826628,68112.29366299264,10,5,10,10_0,10_4,10_1_0 -6773,2,60.0,0.0,7,111,649.0,0.0,0.0,0,52,0.0,0.0,897.0310736967789,649.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,40.0,2,,5,114191,2,1,0,0,1,,0.0,690.0,22,2.0,0.0,2.0,2.0,1.5,4,3,352.178701245329,649.0,28437.346031609883,0,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022822101587067795,18958.23068773992,5,3,5,5_0,5_4,5_0_0 -6774,2,30.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,462.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,1,115235,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,1,860.291119283645,0.0,74874.26704820164,1,1,1,2,44.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006170344207878246,49916.17803213443,10,5,10,10_0,10_4,10_1_0 -6775,2,36.0,0.0,1,111,300.0,200.0,0.0,37,37,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,3,45.0,2,,1,112107,1,3,0,0,2,,0.0,2000.0,43,2.0,0.0,4.0,5.0,2.4,2,2,975.670022889672,300.0,193501.2586672443,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.002583962520160286,80625.52444468513,10,5,10,10_0,10_4,10_1_0 -6776,2,59.0,0.0,5,111,205.0,0.0,0.0,0,77,0.0,0.0,283.3457166530658,205.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,112345,2,1,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,1081.76681877849,205.0,13147.162827228145,0,5,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015592717812503184,13147.162827228145,2,1,2_0,2_0_0,2_4_0,2_0_0 -6777,2,44.0,0.0,1,111,1000.0,500.0,0.0,37,46,0.0,0.0,1382.1742275759307,1500.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,114923,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,817.484293773248,1000.0,181570.70736237668,4,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008261244458371347,75654.46140099029,10,5,10,10_0,10_4,10_1_0 -6778,1,50.0,200.0,1,111,160.0,46.0,0.0,0,35,0.0,0.0,221.1478764121489,206.0,0.0,83.42803343898265,50,0,0,0,0,0,0,0,0,0,,2,,1,116973,1,1,0,1,1,,239.0,350.0,12,1.0,0.0,2.0,1.0,1.0,3,2,387.16240515295,160.0,17174.128713523856,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.011994786078305343,17174.128713523856,4,2,4_1,4_0_1,4_4_1,4_1_0 -6779,2,56.0,0.0,1,111,256.0,995.0,0.0,31,34,0.0,0.0,353.8366022594382,1251.0,0.0,1804.5846363432117,71,0,0,0,0,0,0,0,0,3,20.0,2,,1,118228,1,2,0,0,2,,0.0,2698.0,42,1.0,2.0,6.0,2.0,1.5,2,2,1246.5196262569,256.0,140275.35106872796,5,1,2,3,108.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008918174080256424,93516.90071248531,10,5,10,10_0,10_4,10_1_0 -6780,1,38.0,200.0,1,111,327.0,529.0,0.0,46,46,0.0,0.0,451.9709724173293,856.0,0.0,959.4223845483004,31,0,0,0,0,0,0,0,0,1,10.0,2,,1,123157,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,893.017494432652,327.0,25266.70504970684,1,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03387857650279302,12031.764309384209,2,1,2_1,2_0_1,2_4_1,2_1_0 -6781,0,49.0,0.0,1,111,2300.0,0.0,0.0,56,63,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,1,118082,2,1,0,0,1,,0.0,,43,2.0,2.0,1.0,2.0,1.5,2,2,1314.44820973239,2300.0,55536.396531870814,1,1,5,0,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04141428222985431,37024.26435458054,9,5,9,9_0,9_4,9_1_0 -6782,2,69.0,0.0,1,111,450.0,900.0,0.0,0,77,0.0,0.0,621.9784024091688,1350.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,0,,2,,1,116774,2,1,0,0,1,,0.0,243.0,11,0.0,2.0,3.0,1.0,1.0,1,1,531.973672370978,450.0,16415.597782063167,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08223885708719694,16415.597782063167,4,2,4_0,4_0_0,4_4_0,4_1_0 -6783,1,83.0,225.0,2,111,470.0,0.0,0.0,0,77,0.0,0.0,649.6218869606873,470.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,104087,1,2,0,1,1,516.0,0.0,231.0,11,0.0,1.0,2.0,1.0,1.0,1,1,414.197348705552,470.0,9896.008531717654,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.047493895997927346,9896.008531717654,2,1,2_1,2_0_1,2_4_1,2_0_1 -6784,2,55.0,0.0,1,111,1120.0,1800.0,0.0,31,90,0.0,0.0,1548.0351348850422,2920.0,0.0,3264.575221525408,50,1,2,2,1,1,2,2,2,3,30.0,2,,1,120957,1,3,0,0,2,,0.0,6000.0,43,2.0,3.0,7.0,3.0,2.0,1,1,1162.13040625421,1120.0,84881.74160816248,1,1,2,3,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.034400802159309185,42440.87080408124,9,5,9,9_0,9_4,9_1_0 -6785,2,66.0,0.0,1,111,300.0,300.0,0.0,0,74,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,10,0,0,0,0,0,0,0,0,0,,2,,1,118992,2,1,0,0,2,,0.0,1400.0,11,0.0,1.0,2.0,1.0,1.0,2,2,1369.90921558429,300.0,56552.377098109166,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01060963359611034,56552.377098109166,10,5,10,10_0,10_4,10_1_0 -6786,2,29.0,0.0,1,111,660.0,1300.0,0.0,0,55,0.0,0.0,912.2349902001142,1960.0,0.0,2357.7487711016834,71,2,2,2,2,1,1,2,2,0,,2,,1,131284,1,1,0,0,1,,0.0,347.0,22,2.0,2.0,4.0,4.0,2.3,1,1,426.102787478096,660.0,20690.30891572572,0,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.09473034008256383,8995.78648509814,1,1,1_0,1_0_0,1_4_0,1_1_0 -6787,2,57.0,0.0,5,111,420.0,90.0,0.0,0,54,0.0,0.0,580.5131755818909,510.0,0.0,163.2287610762704,44,0,0,0,0,0,0,0,0,1,15.0,2,,3,118297,2,1,0,1,1,671.0,0.0,515.0,22,2.0,0.0,3.0,2.0,1.5,1,1,473.527446388868,420.0,48323.26672173775,0,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010553922253161362,32215.511147825167,8,4,8,8_0,8_4,8_0_0 -6788,2,47.0,0.0,7,111,738.0,0.0,0.0,52,64,0.0,0.0,1020.0445799510368,738.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,15.0,2,,5,125660,1,3,0,0,1,,0.0,462.0,43,3.0,0.0,3.0,5.0,3.0,1,1,277.975114491458,738.0,35748.07551802304,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.020644467969413455,11916.025172674346,2,1,2_0,2_0_0,2_4_0,2_0_0 -6789,2,27.0,0.0,1,111,0.0,0.0,0.0,34,38,0.0,0.0,0.0,496.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,130780,2,2,0,0,2,,0.0,1050.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1173.73379506608,0.0,41015.28112415834,1,1,3,4,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012093053769363338,27343.520749438892,7,4,7,7_0,7_4,7_1_0 -6790,2,83.0,0.0,1,111,210.0,240.0,0.0,0,90,0.0,0.0,290.25658779094545,450.0,0.0,435.27669620338776,50,2,2,2,2,1,2,2,2,0,,2,,1,111856,2,1,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,476.880890311966,210.0,15287.856607023961,0,5,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.029435126948616774,15287.856607023961,3,2,3_0,3_0_0,3_4_0,3_1_0 -6791,2,61.0,0.0,1,111,963.0,1518.0,0.0,21,35,0.0,0.0,1331.0337811556212,2481.0,0.0,2753.1251034864276,71,2,2,2,2,1,2,2,1,0,,2,,1,120433,1,2,0,0,2,,0.0,,43,4.0,1.0,5.0,4.0,2.5,4,4,967.575058082622,963.0,75575.45129574733,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.032828120209182354,30230.180518298934,8,4,8,8_0,8_4,8_1_0 -6792,2,67.0,0.0,5,111,270.0,90.0,0.0,0,75,0.0,0.0,373.1870414455012,360.0,0.0,163.2287610762704,60,1,2,2,2,1,2,2,2,0,,2,,3,130467,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,550.072303057149,270.0,37204.80883640375,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009676168518510199,37204.80883640375,9,5,9,9_0,9_4,9_0_0 -6793,2,61.0,0.0,1,111,1000.0,0.0,0.0,0,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,104923,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,844.083354693517,1000.0,51190.50781644501,0,4,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019534871652098534,51190.50781644501,10,5,10,10_0,10_4,10_1_0 -6794,1,83.0,160.0,5,111,360.0,420.0,0.0,0,72,0.0,0.0,497.582721927335,780.0,0.0,761.7342183559285,50,2,1,2,1,2,2,2,2,0,,2,,3,108702,2,1,0,1,1,726.0,0.0,1170.0,21,0.0,3.0,3.0,2.0,1.5,2,2,612.567674863726,360.0,9253.330889331119,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.08429397039063224,6168.887259554079,1,1,1_1,1_0_1,1_4_1,1_0_0 -6795,2,47.0,0.0,1,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,1585.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,1,111548,2,2,0,0,1,,0.0,2000.0,42,1.0,0.0,2.0,3.0,1.8,2,2,1008.7041516008,0.0,111237.42790944513,6,1,3,4,55.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014248801233432855,61798.57106080285,10,5,10,10_0,10_4,10_1_0 -6796,2,49.0,0.0,1,111,430.0,1080.0,0.0,0,42,0.0,0.0,594.3349178576501,1510.0,0.0,1958.7451329152448,42,2,2,2,2,2,2,2,1,1,10.0,2,,1,132902,1,2,0,0,2,,0.0,,32,1.0,0.0,3.0,3.0,2.0,1,1,456.200032303838,430.0,40030.94744787143,0,1,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03772081592538703,20015.473723935716,5,3,5,5_0,5_4,5_1_0 -6797,0,45.0,0.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,327.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,129028,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1321.85977475221,0.0,18365.853386233608,0,1,5,0,12.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017804781140478208,18365.853386233608,4,2,4_0,4_0_0,4_4_0,4_1_0 -6798,2,43.0,0.0,6,111,602.0,119.0,0.0,85,38,0.0,0.0,832.0688850007102,721.0,0.0,215.8246952008464,71,0,0,0,0,0,0,0,0,0,,2,,4,133163,2,1,0,1,1,420.0,0.0,1468.0,42,1.0,0.0,4.0,5.0,2.4,4,4,403.580638655236,602.0,36669.33509592393,6,1,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019662205439883867,15278.889623301638,3,2,3_0,3_0_0,3_4_0,3_0_0 -6799,2,60.0,0.0,1,111,0.0,0.0,0.0,34,31,2688.452778632401,0.0,0.0,1854.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,15.0,2,,1,104600,2,2,0,1,2,,168.0,,43,2.0,2.0,8.0,3.0,2.0,1,1,756.325985841101,0.0,329136.0987804787,1,1,0,1,206.0,10,8,1,1,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005632928162147744,164568.04939023935,10,5,10,10_0,10_4,10_1_0 -6800,0,39.0,0.0,1,111,720.0,0.0,0.0,0,35,0.0,0.0,995.16544385467,927.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,104977,2,3,0,0,1,,100.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1327.42976387423,720.0,9442.935293708426,0,1,5,0,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.098168627780139,9442.935293708426,1,1,1_0,1_0_0,1_4_0,1_1_0 -6801,2,46.0,0.0,2,111,1888.0,0.0,0.0,0,63,0.0,0.0,2609.544941663357,1888.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119951,1,1,0,0,1,,0.0,1375.0,32,1.0,0.0,3.0,2.0,1.3,4,4,502.786499640919,1888.0,41827.74290625905,0,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04513750608612166,32175.1868509685,8,4,8,8_0,8_4,8_0_1 -6802,2,56.0,0.0,2,111,800.0,130.0,0.0,46,48,0.0,0.0,1105.7393820607444,930.0,0.0,235.77487711016835,43,2,1,2,2,1,2,2,2,0,,2,,2,111055,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,363.15462097667,800.0,65624.23139011709,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014171594551278152,36457.90632784282,9,5,9,9_0,9_4,9_0_1 -6803,2,38.0,0.0,5,111,360.0,922.0,0.0,0,31,0.0,0.0,497.582721927335,1282.0,0.0,1672.1879745813478,70,0,0,0,0,0,0,0,0,3,30.0,2,,3,106997,1,2,0,0,1,,0.0,700.0,32,1.0,0.0,4.0,3.0,1.6,1,1,738.084853314577,360.0,23413.284957082426,0,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05475523841912666,14633.303098176515,3,2,3_0,3_0_0,3_4_0,3_0_0 -6804,2,67.0,0.0,1,111,660.0,0.0,0.0,0,74,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,2,2,1,2,2,2,2,1,0,,2,,1,131145,1,3,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,4,4,493.367500399121,660.0,20323.753306028255,0,5,0,1,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03247431663147754,20323.753306028255,5,3,5,5_0,5_4,5_1_0 -6805,0,43.0,0.0,5,111,440.0,0.0,0.0,55,46,0.0,0.0,608.1566601334094,609.0,0.0,0.0,50,1,2,2,2,1,2,2,2,3,40.0,2,,3,110241,2,3,0,1,1,1250.0,0.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,619.950297528813,440.0,55184.617985640434,4,1,5,0,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01103568389579987,36789.74532376029,9,5,9,9_0,9_4,9_0_0 -6806,2,54.0,0.0,1,111,720.0,58.0,0.0,34,37,0.0,0.0,995.16544385467,778.0,0.0,105.19186824915204,71,1,2,2,1,1,2,2,2,2,15.0,2,,1,114457,2,3,0,1,1,,0.0,,43,3.0,1.0,6.0,5.0,3.0,1,1,999.911406399238,720.0,146259.93130793047,1,1,0,1,126.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.005319296905466381,48753.310435976826,10,5,10,10_0,10_4,10_1_0 -6807,2,62.0,0.0,1,111,734.0,410.0,0.0,34,38,0.0,0.0,1014.515883040733,1144.0,0.0,743.5976893474541,71,0,0,0,0,0,0,0,0,0,,2,,1,114858,2,2,0,0,1,,0.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,1019.10050212813,734.0,104441.41531155875,1,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010953509166716464,69627.61020770583,10,5,10,10_0,10_4,10_1_0 -6808,2,42.0,0.0,1,111,320.0,0.0,0.0,0,37,0.0,0.0,442.2957528242978,320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,1,119225,2,1,0,1,1,433.0,0.0,1140.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1095.10109867056,320.0,44717.12171350859,0,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007156095646096364,44717.12171350859,10,5,10,10_0,10_4,10_1_0 -6809,2,48.0,0.0,5,111,0.0,0.0,348.0,0,52,0.0,0.0,177.79784052345872,348.0,0.0,397.84952957911577,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,120566,1,2,0,1,2,974.0,0.0,353.0,32,1.0,0.0,3.0,2.0,1.3,1,1,479.647719272545,0.0,34687.902881021175,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01003231591121646,26683.002216170134,7,4,7,7_0,7_4,7_0_0 -6810,0,50.0,0.0,1,111,750.0,100.0,0.0,0,46,0.0,0.0,1036.630670681948,850.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,114449,1,3,0,0,1,,0.0,,32,1.0,1.0,2.0,2.0,1.5,2,2,1276.66229349088,750.0,30262.443147071008,0,1,5,0,31.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028087619888094474,20174.962098047337,5,3,5,5_0,5_4,5_1_0 -6811,2,67.0,0.0,1,111,1200.0,0.0,0.0,0,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,111298,2,1,0,0,1,,504.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1152.73596822635,1200.0,34409.821481633975,0,5,0,1,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03487376418504503,34409.821481633975,9,5,9,9_0,9_4,9_1_0 -6812,2,26.0,0.0,1,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,590.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,1,116573,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1276.66229349088,0.0,62211.623266974704,1,1,0,1,110.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009483758323875852,41474.41551131647,9,5,9,9_0,9_4,9_1_0 -6813,0,59.0,0.0,6,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,955.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,4,109288,2,1,0,1,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,436.111979755913,0.0,25962.012426232468,0,1,5,0,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03678451363173416,25962.012426232468,7,4,7,7_0,7_4,7_0_0 -6814,2,57.0,0.0,6,111,1300.0,0.0,0.0,81,81,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,4,113428,2,1,0,1,1,450.0,0.0,457.0,43,2.0,1.0,3.0,2.0,1.5,2,1,336.575572766076,1300.0,24378.64224671651,4,4,2,3,109.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.053325365163644146,16252.428164477673,4,2,4_0,4_0_0,4_4_0,4_0_0 -6815,1,54.0,67.0,2,111,450.0,280.0,0.0,54,53,0.0,0.0,621.9784024091688,730.0,0.0,507.8228122372857,71,0,0,0,0,0,0,0,0,0,,2,,2,103862,2,1,0,1,1,754.0,600.0,375.0,43,2.0,0.0,4.0,5.0,2.4,2,2,250.188041294186,450.0,29699.564945869097,4,4,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024579484626475495,12374.818727445458,2,1,2_1,2_0_1,2_4_1,2_0_1 -6816,2,23.0,0.0,2,111,0.0,0.0,0.0,47,54,0.0,0.0,0.0,850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,107746,2,2,0,1,1,744.0,0.0,333.0,43,2.0,0.0,3.0,2.0,1.5,1,1,293.163418245694,0.0,28016.114553174735,4,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03033968177088566,18677.40970211649,4,2,4_0,4_0_0,4_4_0,4_0_1 -6817,2,51.0,0.0,1,111,529.0,1317.0,0.0,85,38,0.0,0.0,731.1701663876672,1846.0,0.0,2388.5808704160904,44,0,0,0,0,0,0,0,0,2,40.0,2,,1,125702,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,749.496412690405,529.0,54439.24052260957,6,1,0,1,61.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03390936358183255,36292.827015073046,9,5,9,9_0,9_4,9_1_0 -6818,2,69.0,0.0,2,111,500.0,0.0,0.0,77,77,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,2,1,2,1,1,2,2,2,0,,2,,2,120764,2,3,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,311.891935357576,500.0,35889.735875450904,5,5,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013931559756671466,23926.490583633935,6,3,6,6_0,6_4,6_0_1 -6819,2,72.0,0.0,2,111,253.0,167.0,0.0,77,90,0.0,0.0,349.69007957671045,504.0,0.0,302.88003444152395,50,0,0,0,0,0,0,0,0,0,,2,,2,110348,2,2,0,1,1,,198.0,316.0,41,0.0,2.0,3.0,2.0,1.5,2,2,293.163418245694,253.0,35689.69986354384,5,5,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014121721446999998,23793.13324236256,6,3,6,6_0,6_4,6_0_1 -6820,2,62.0,0.0,1,111,0.0,0.0,0.0,85,22,0.0,0.0,0.0,2031.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,109968,2,1,0,0,1,,0.0,,42,1.0,3.0,5.0,4.0,2.5,2,2,1183.49593318618,0.0,105005.20166984823,6,1,2,3,160.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019341898950737336,42002.08066793929,9,5,9,9_0,9_4,9_1_0 -6821,2,42.0,0.0,2,111,405.0,0.0,0.0,0,52,0.0,0.0,559.7805621682519,405.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,110352,1,3,0,1,2,1080.0,0.0,333.0,12,1.0,0.0,3.0,1.0,1.0,1,1,367.010381569522,405.0,17936.363700851474,0,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02257982759241071,17936.363700851474,4,2,4_0,4_0_0,4_4_0,4_0_1 -6822,2,63.0,0.0,2,111,800.0,0.0,0.0,0,77,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,125688,1,2,0,1,1,,700.0,398.0,21,2.0,0.0,4.0,4.0,2.5,3,3,286.358555561316,800.0,19041.641870161475,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04201318381339854,7616.65674806459,1,1,1_0,1_0_0,1_4_0,1_0_1 -6823,2,78.0,0.0,1,111,431.0,900.0,0.0,0,75,0.0,0.0,595.7170920852261,1331.0,0.0,1632.287610762704,10,0,0,0,0,0,0,0,0,0,,2,,1,124176,2,1,0,0,2,,330.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,1147.7116581764,431.0,44481.96526924299,0,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029922239090463897,44481.96526924299,10,5,10,10_0,10_4,10_1_0 -6824,2,40.0,0.0,5,111,2000.0,0.0,0.0,52,55,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,20.0,2,,3,111011,2,2,0,1,1,577.0,0.0,367.0,43,2.0,0.0,4.0,4.0,2.3,2,2,411.519018941291,2000.0,45726.17931937315,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.043738620408914096,19880.94753016224,5,3,5,5_0,5_4,5_0_0 -6825,2,90.0,0.0,2,111,336.0,96.0,0.0,74,74,0.0,0.0,464.41054046551267,432.0,0.0,174.11067848135508,71,0,0,0,0,0,0,0,0,0,,2,,2,133485,2,1,0,1,2,,0.0,,41,0.0,8.0,9.0,2.0,1.5,4,2,1078.87907885265,336.0,139215.50854931682,5,5,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0031031025530245783,92810.33903287788,10,5,10,10_0,10_4,10_0_1 -6826,2,62.0,0.0,1,111,1220.0,1510.0,0.0,22,22,0.0,0.0,1686.2525576426353,2730.0,0.0,2738.6158802796476,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,116641,2,1,1,0,1,,760.0,,43,3.0,0.0,6.0,5.0,3.0,1,1,210.725398257245,1220.0,70279.94700030531,1,1,1,2,137.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03884465080755027,23426.64900010177,6,3,6,6_1,6_4,6_1_0 -6827,2,51.0,0.0,1,111,150.0,0.0,0.0,0,45,0.0,0.0,207.32613413638958,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,1,120792,2,1,0,0,2,,0.0,,12,1.0,5.0,1.0,1.0,1.0,2,2,1059.7987969049,150.0,56486.73662163455,0,1,1,2,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0026554906332214925,56486.73662163455,10,5,10,10_0,10_4,10_1_0 -6828,2,68.0,0.0,5,111,496.0,106.0,0.0,78,78,0.0,0.0,685.5584168776616,602.0,0.0,192.24720748982958,71,2,2,2,2,1,2,2,2,0,,2,,3,107543,2,1,0,1,1,804.0,0.0,400.0,41,1.0,4.0,4.0,3.0,2.0,4,4,427.141731513299,496.0,28658.061951912445,7,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02100630534647255,14329.030975956222,3,2,3_0,3_0_0,3_4_0,3_0_0 -6829,2,63.0,0.0,2,111,450.0,198.0,0.0,67,67,0.0,0.0,621.9784024091688,648.0,0.0,359.1032743677949,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,103264,2,1,0,1,1,61.0,0.0,477.0,43,2.0,4.0,4.0,2.0,1.5,2,2,309.624227479085,450.0,33919.192170616996,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019104228565954458,22612.794780411332,6,3,6,6_0,6_4,6_0_1 -6830,2,34.0,0.0,1,111,378.0,504.0,0.0,0,47,0.0,0.0,522.4618580237018,882.0,0.0,914.0810620271143,70,0,0,0,0,0,0,0,0,2,40.0,2,,1,110445,2,2,0,1,1,167.0,0.0,950.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1146.35346046772,378.0,43962.294719667494,0,1,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02006264699384352,43962.294719667494,10,5,10,10_0,10_4,10_1_0 -6831,1,39.0,179.0,5,111,360.0,168.0,0.0,81,65,0.0,0.0,497.582721927335,528.0,0.0,304.6936873423714,71,0,0,0,0,0,0,0,0,0,,2,,3,113009,2,1,0,1,1,1200.0,0.0,373.0,43,2.0,0.0,4.0,3.0,1.8,4,4,427.141731513299,360.0,18997.374014825375,4,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027793314991216875,10554.096674902985,2,1,2_1,2_0_1,2_4_1,2_0_0 -6832,2,39.0,0.0,9,111,537.0,1397.0,0.0,62,37,0.0,0.0,742.2275602082747,1934.0,0.0,2533.673102483886,60,0,0,0,0,0,0,0,0,3,45.0,1,2007.0,6,108674,2,1,1,0,1,,445.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,445.46693831822,537.0,65359.90038209848,1,1,1,2,136.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029590008379659437,31123.76208671356,8,4,8,8_1,8_4,8_0_0 -6833,1,42.0,256.0,2,111,500.0,300.0,0.0,63,55,0.0,0.0,691.0871137879653,800.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,125566,2,2,0,1,1,114.0,0.0,414.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,248.368970878991,500.0,32237.558181354456,1,1,2,3,93.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024815775298474795,12399.060838982485,2,1,2_1,2_0_1,2_4_1,2_0_1 -6834,2,33.0,0.0,2,111,646.0,108.0,0.0,0,55,0.0,0.0,892.8845510140511,754.0,0.0,195.8745132915245,70,2,2,2,1,1,2,2,2,0,,2,,2,118838,1,3,0,1,2,783.0,0.0,273.0,22,4.0,0.0,3.0,4.0,2.5,3,3,280.379744237525,646.0,42995.65435693932,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01753665600110369,17198.26174277573,4,2,4_0,4_0_0,4_4_0,4_0_1 -6835,1,46.0,447.0,1,111,785.0,182.0,0.0,56,54,0.0,0.0,1085.0067686471054,967.0,0.0,330.0848279542357,31,2,2,2,2,2,2,2,1,2,20.0,2,,1,124768,1,1,0,1,2,707.0,1100.0,515.0,43,3.0,0.0,4.0,7.0,3.3999999999999995,2,2,406.057004472385,785.0,44494.78739736836,1,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.02173288280633954,13086.702175696579,2,1,2_1,2_0_1,2_4_1,2_1_0 -6836,1,38.0,312.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,235.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,100.0,2,,2,104289,2,1,0,1,1,816.0,0.0,364.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,1,1,307.25970276174,0.0,28098.537992732578,6,1,2,3,78.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008363424462183069,10406.865923234289,2,1,2_1,2_0_1,2_4_1,2_0_1 -6837,2,66.0,0.0,1,111,360.0,78.0,0.0,0,37,0.0,0.0,497.582721927335,438.0,0.0,141.464926266101,50,0,0,0,0,0,0,0,0,0,,2,,1,103072,2,1,0,1,2,1096.0,286.0,3000.0,22,1.0,0.0,7.0,2.0,1.5,1,1,938.217611920233,360.0,183656.06657036013,0,1,2,3,172.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.002384892632077572,122437.37771357341,10,5,10,10_0,10_4,10_1_0 -6838,1,34.0,303.0,2,111,306.0,100.0,0.0,0,52,0.0,0.0,422.9453136382348,406.0,0.0,181.36529008474488,71,2,1,2,2,1,2,2,2,2,30.0,2,,2,130849,2,2,0,1,1,684.0,0.0,331.0,32,1.0,0.0,4.0,4.0,1.9,1,1,293.969710800118,306.0,19975.629840191814,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020324765889639725,10513.489389574639,2,1,2_1,2_0_1,2_4_1,2_0_1 -6839,2,37.0,0.0,1,111,700.0,0.0,0.0,85,56,0.0,0.0,967.5219593031513,700.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,114193,1,3,0,0,2,,0.0,,42,1.0,0.0,1.0,2.0,1.5,2,2,1078.0041680608,700.0,21414.996130041825,6,4,1,2,9.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03268737457383948,14276.66408669455,3,2,3_0,3_0_0,3_4_0,3_1_0 -6840,2,73.0,0.0,1,111,1080.0,0.0,0.0,77,78,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,102711,2,1,0,0,1,820.0,0.0,325.0,41,1.0,0.0,2.0,3.0,2.0,2,2,1002.57000067554,1080.0,40429.87083123214,5,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026712922346655094,20214.93541561607,5,3,5,5_0,5_4,5_1_0 -6841,1,51.0,137.0,2,111,420.0,250.0,0.0,85,63,0.0,0.0,580.5131755818909,670.0,0.0,453.4132252118622,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,122824,2,1,0,1,1,740.0,0.0,384.0,42,1.0,0.0,4.0,4.0,2.5,2,2,264.430042665842,420.0,22207.865386440524,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030169491229403905,8883.14615457621,1,1,1_1,1_0_1,1_4_1,1_0_1 -6842,2,38.0,0.0,2,111,650.0,400.0,0.0,0,37,0.0,0.0,898.4132479243549,1050.0,0.0,725.4611603389795,50,2,2,1,2,1,2,2,2,0,,2,,2,114550,2,1,0,1,1,1536.0,0.0,385.0,22,1.0,6.0,4.0,3.0,2.0,3,3,305.129837271362,650.0,59233.600377730414,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017726425429219057,29616.800188865207,8,4,8,8_0,8_4,8_0_1 -6843,2,34.0,0.0,2,111,370.0,211.0,0.0,0,62,2712.350136664689,0.0,511.40446420309434,2397.0,0.0,382.6807620788117,71,2,2,2,2,1,2,2,2,0,,2,,2,122268,1,2,0,1,2,,0.0,,22,1.0,1.0,5.0,2.0,1.5,3,2,303.81675668942,370.0,23257.549069009794,0,4,0,1,92.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.10306331044976502,15505.032712673195,3,2,3_0,3_0_0,3_4_0,3_0_1 -6844,2,28.0,0.0,2,111,200.0,130.0,0.0,0,46,0.0,0.0,276.4348455151861,330.0,0.0,235.77487711016835,71,2,1,2,2,1,2,2,2,3,45.0,2,,2,121129,2,1,0,1,1,43.0,0.0,384.0,22,3.0,0.0,4.0,4.0,2.5,5,5,286.358555561316,200.0,29157.502969410765,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011317841597965509,11663.001187764306,2,1,2_0,2_0_0,2_4_0,2_0_1 -6845,1,24.0,301.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,532.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,119044,1,2,0,1,1,450.0,0.0,278.0,32,1.0,0.0,3.0,3.0,1.6,2,2,288.907967026796,0.0,1510.6943191472162,0,4,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.3521559545549313,944.18394946701,1,1,1_1,1_0_1,1_4_1,1_0_1 -6846,2,37.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,582.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,117230,2,1,0,0,1,,0.0,860.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1152.10494215997,0.0,43848.869716503585,0,1,3,4,26.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013272862077467648,43848.869716503585,10,5,10,10_0,10_4,10_1_0 -6847,1,40.0,97.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,243.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129848,2,1,0,1,1,512.0,0.0,451.0,42,1.0,0.0,4.0,4.0,2.1,2,2,293.969710800118,0.0,27504.215584558286,6,1,2,3,73.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00883500928259258,13097.245516456325,2,1,2_1,2_0_1,2_4_1,2_0_1 -6849,2,51.0,0.0,2,111,750.0,500.0,0.0,85,65,0.0,0.0,1036.630670681948,1250.0,0.0,906.8264504237244,20,2,1,2,2,1,2,2,2,3,75.0,2,,2,102069,2,2,0,1,1,684.0,0.0,278.0,42,1.0,0.0,3.0,5.0,2.4,1,1,321.29669390842,750.0,22618.886605174972,6,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.05526355128877178,9424.536085489572,1,1,1_0,1_0_0,1_4_0,1_0_1 -6850,1,81.0,307.0,1,111,102.0,98.0,0.0,0,75,0.0,0.0,140.98177121274492,200.0,0.0,177.73798428305,20,0,0,0,0,0,0,0,0,0,,2,,1,120586,2,1,0,1,2,252.0,0.0,680.0,11,0.0,0.0,2.0,1.0,1.0,4,1,891.062445203731,102.0,12838.691584681055,0,5,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.015577911400148997,12838.691584681055,2,1,2_1,2_0_1,2_4_1,2_1_0 -6851,2,47.0,0.0,2,111,150.0,0.0,0.0,56,53,0.0,0.0,207.32613413638958,837.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,112884,1,2,0,1,1,69.0,150.0,383.0,43,2.0,2.0,3.0,3.0,2.0,1,1,311.864901152678,150.0,31031.25432208807,1,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026972805910853007,15515.627161044034,3,2,3_0,3_0_0,3_4_0,3_0_1 -6852,2,40.0,0.0,5,111,600.0,523.0,0.0,52,53,0.0,0.0,829.3045365455583,1123.0,0.0,948.5404671432158,71,2,2,2,1,1,2,1,2,0,,2,,3,122291,1,3,0,1,1,579.0,0.0,341.0,43,2.0,0.0,3.0,3.0,1.8,3,3,404.433241886028,600.0,39643.0060628759,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028327821513304582,22023.89225715328,6,3,6,6_0,6_4,6_0_0 -6853,2,60.0,0.0,1,111,430.0,1800.0,0.0,33,34,0.0,0.0,594.3349178576501,2230.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,123638,2,1,0,0,1,,110.0,,43,3.0,0.0,7.0,3.0,2.0,6,5,1240.17461426097,430.0,136943.32027106133,1,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016284109335059263,68471.66013553066,10,5,10,10_0,10_4,10_1_0 -6854,0,26.0,0.0,6,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,533.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,4,103749,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,432.843802032852,0.0,30384.595656160258,0,1,5,0,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017541783541619654,30384.595656160258,8,4,8,8_0,8_4,8_0_0 -6855,0,27.0,0.0,1,111,1080.0,0.0,0.0,43,46,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,116690,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1275.9634281571,1080.0,39771.79565304817,1,1,5,0,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02715492177978208,26514.530435365446,7,4,7,7_0,7_4,7_1_0 -6856,2,76.0,0.0,1,111,800.0,0.0,0.0,0,77,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,109770,2,1,0,0,1,,0.0,850.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1252.29631999744,800.0,38134.75935572829,0,5,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020978236483347065,38134.75935572829,9,5,9,9_0,9_4,9_1_0 -6857,1,45.0,360.0,5,111,360.0,1020.0,0.0,0,68,0.0,0.0,497.582721927335,1380.0,0.0,1849.925958864398,71,2,2,2,2,1,2,2,2,0,,2,,3,101687,1,3,0,0,1,,0.0,775.0,32,2.0,0.0,3.0,3.0,2.0,2,2,540.555636116143,360.0,17137.396418194512,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08052565082376661,8568.698209097256,1,1,1_1,1_0_1,1_4_1,1_0_0 -6858,1,41.0,256.0,5,111,130.0,0.0,0.0,0,90,0.0,0.0,179.68264958487097,130.0,0.0,0.0,60,2,2,2,2,1,2,2,2,3,60.0,2,,3,116321,1,1,0,1,1,,0.0,373.0,12,1.0,0.0,1.0,1.0,1.0,2,2,498.907304373625,130.0,5037.306971506099,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.025807440510446287,5037.306971506099,1,1,1_1,1_0_1,1_4_1,1_0_0 -6859,2,40.0,0.0,1,111,500.0,0.0,0.0,38,31,0.0,0.0,691.0871137879653,500.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,40.0,2,,1,103588,1,3,0,1,2,1220.0,0.0,1900.0,42,1.0,0.0,4.0,5.0,2.4,2,2,776.249654453874,500.0,162774.0341187705,1,7,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.003071743000699777,67822.51421615438,10,5,10,10_0,10_4,10_1_0 -6860,1,57.0,120.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,169.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,131184,1,3,0,1,1,,0.0,581.0,22,2.0,2.0,3.0,4.0,2.1,1,1,247.683736642291,0.0,17455.02830424175,0,4,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009682023830286844,8311.91824011512,1,1,1_1,1_0_1,1_4_1,1_0_1 -6861,2,24.0,0.0,1,111,500.0,600.0,0.0,47,46,0.0,0.0,691.0871137879653,1100.0,0.0,1088.1917405084694,71,1,2,2,1,1,1,2,2,3,15.0,2,,1,123408,1,3,0,0,2,,0.0,1550.0,43,2.0,0.0,4.0,2.0,1.5,1,1,868.657256421157,500.0,58774.03028783792,1,1,3,4,74.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01871574902406552,39182.68685855861,9,5,9,9_0,9_4,9_1_0 -6862,2,41.0,0.0,6,111,400.0,300.0,0.0,56,48,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,41,0,0,0,0,0,0,0,0,3,45.0,2,,4,119627,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,303.875184702706,400.0,41727.94906693794,1,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0167753272243765,17386.645444557475,4,2,4_0,4_0_0,4_4_0,4_0_0 -6863,0,53.0,0.0,1,111,550.0,0.0,0.0,78,56,0.0,0.0,760.1958251667618,550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,112798,2,1,0,0,1,,0.0,,42,1.0,1.0,1.0,2.0,1.5,2,2,940.52390811212,550.0,42657.83369483466,7,1,5,0,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012893294205575147,28438.55579655644,8,4,8,8_0,8_4,8_1_0 -6864,2,74.0,0.0,1,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,1093.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,103961,2,1,0,1,1,408.0,0.0,248.0,41,0.0,1.0,1.0,2.0,1.5,1,1,911.788096843235,0.0,37245.11442940745,5,5,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029346130807884032,24830.076286271633,7,4,7,7_0,7_4,7_1_0 -6865,2,38.0,0.0,5,111,408.0,0.0,0.0,47,45,0.0,0.0,563.9270848509797,408.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,127199,1,2,0,1,1,870.0,0.0,345.0,43,2.0,0.0,3.0,3.0,1.8,2,2,359.887621922406,408.0,46196.35548780587,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008831865537698031,25664.641937669927,7,4,7,7_0,7_4,7_0_0 -6866,2,41.0,0.0,6,111,380.0,75.0,0.0,0,52,0.0,0.0,525.2262064788536,455.0,0.0,136.02396756355867,60,2,1,2,2,1,2,2,2,3,45.0,2,,4,115584,1,2,0,1,1,960.0,0.0,516.0,32,1.0,0.0,4.0,3.0,1.6,2,2,400.027940392427,380.0,18191.763633764884,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.025011318812184637,11369.852271103051,2,1,2_0,2_0_0,2_4_0,2_0_0 -6867,2,59.0,0.0,1,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,893.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,133326,2,2,0,1,2,272.0,0.0,356.0,11,0.0,0.0,1.0,1.0,1.0,2,2,996.886499924022,300.0,9318.396713487793,0,5,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09583193627155182,9318.396713487793,1,1,1_0,1_0_0,1_4_0,1_1_0 -6868,2,54.0,0.0,5,111,560.0,1285.0,0.0,77,65,0.0,0.0,774.0175674425211,1845.0,0.0,2330.5439775889718,31,0,0,0,0,0,0,0,0,0,,1,,3,113135,1,3,3,0,2,,520.0,410.0,42,2.0,3.0,5.0,3.0,2.0,2,1,337.079267206864,560.0,64818.18836547759,5,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02846423274894634,32409.094182738794,8,4,8,8_1,8_4,8_0_0 -6869,2,75.0,0.0,1,111,690.0,75.0,0.0,77,74,0.0,0.0,953.7002170273921,765.0,0.0,136.02396756355867,42,2,1,2,1,1,2,2,2,0,,2,,1,131037,1,2,0,1,2,1480.0,0.0,1624.0,41,0.0,2.0,6.0,3.0,2.0,2,2,977.077815028082,690.0,74445.51158129495,5,5,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01027597210027384,37222.755790647476,9,5,9,9_0,9_4,9_1_0 -6870,2,59.0,0.0,2,111,760.0,1298.0,0.0,90,21,0.0,0.0,1050.452412957707,2058.0,0.0,2354.121465299989,71,0,0,0,0,0,0,0,0,0,,1,,2,124686,2,1,1,0,1,,184.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,277.446749225661,760.0,70746.91875339496,5,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029089606109541585,47164.612502263306,10,5,10,10_1,10_4,10_0_1 -6872,2,77.0,0.0,1,111,692.0,997.0,0.0,0,72,0.0,41.40690019277831,956.464565482544,1729.0,0.0,1808.2119421449065,10,2,2,2,2,1,2,2,2,0,,2,,1,107672,2,3,0,0,1,,0.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1058.59486186588,692.0,32411.630233141295,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.05334504890877337,32411.630233141295,8,4,8,8_0,8_4,8_1_0 -6873,2,39.0,0.0,1,111,608.0,1126.0,0.0,35,46,0.0,103.51725048194578,840.3619303661658,1834.0,0.0,2042.1731663542275,50,2,2,2,2,1,2,2,1,1,15.0,2,,1,128627,1,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,916.165799101056,608.0,64602.6710829525,1,1,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02838891905328602,30763.176706167855,8,4,8,8_0,8_4,8_1_0 -6874,2,29.0,0.0,1,111,700.0,304.0,0.0,0,37,0.0,0.0,967.5219593031513,1004.0,0.0,551.3504818576245,50,1,2,2,2,1,2,2,2,2,10.0,2,,1,129114,2,1,0,0,1,,0.0,890.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1744.03952193881,700.0,61735.659784228206,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01626288604526253,61735.659784228206,10,5,10,10_0,10_4,10_1_0 -6875,1,53.0,500.0,5,111,300.0,300.0,0.0,0,68,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,3,115032,2,3,0,1,1,82.0,0.0,503.0,32,5.0,0.0,4.0,7.0,3.8,2,2,392.921161812796,300.0,14650.394393522907,0,1,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04095452886000573,3855.366945663923,1,1,1_1,1_0_1,1_4_1,1_0_0 -6876,2,29.0,0.0,1,111,217.0,0.0,0.0,0,31,0.0,0.0,299.93180738397695,217.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,20.0,2,,1,132740,2,2,0,1,1,408.0,0.0,653.0,12,1.0,1.0,1.0,1.0,1.0,2,2,1295.00246239519,217.0,28091.076716191164,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0077248729976564165,28091.076716191164,8,4,8,8_0,8_4,8_1_0 -6877,2,41.0,0.0,1,111,300.0,240.0,0.0,38,37,0.0,0.0,414.65226827277917,540.0,0.0,435.27669620338776,42,0,0,0,0,0,0,0,0,0,,2,,1,133232,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,691.299984459188,300.0,46867.008177422395,1,4,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011521964405232472,31244.672118281596,8,4,8,8_0,8_4,8_1_0 -6878,1,29.0,304.0,2,111,1050.0,0.0,0.0,46,53,0.0,0.0,1451.2829389547271,1147.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,20.0,2,,2,132657,2,3,0,1,1,,0.0,307.0,43,2.0,4.0,3.0,4.0,2.1,2,2,247.683736642291,1050.0,17422.168556829565,4,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06583566197621082,8296.27074134741,1,1,1_1,1_0_1,1_4_1,1_0_1 -6879,2,63.0,0.0,1,111,400.0,0.0,0.0,0,78,0.0,0.0,552.8696910303722,460.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,130536,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1151.79150681127,400.0,5970.874591358297,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07704064002043559,5970.874591358297,1,1,1_0,1_0_0,1_4_0,1_1_0 -6880,1,49.0,186.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,344.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,114145,2,1,0,1,1,303.0,0.0,441.0,32,1.0,0.0,3.0,2.0,1.3,2,2,260.873426069212,0.0,17165.405486876643,0,1,2,3,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020040307248377912,13204.158066828188,2,1,2_1,2_0_1,2_4_1,2_0_1 -6881,2,42.0,0.0,1,111,350.0,0.0,0.0,0,31,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,1,2,2,2,1,2,2,2,1,20.0,2,,1,130964,2,1,0,1,1,718.0,0.0,1200.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1089.61250200052,350.0,75122.4794117013,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.004659058150648353,75122.4794117013,10,5,10,10_0,10_4,10_1_0 -6882,2,68.0,0.0,1,111,404.0,856.0,0.0,86,74,0.0,0.0,558.398387940676,1260.0,0.0,1552.4868831254162,20,0,0,0,0,0,0,0,0,0,,2,,1,122957,2,1,0,0,1,,0.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,964.9535900054,404.0,60009.93305943211,6,5,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020996524004653235,40006.622039621405,9,5,9,9_0,9_4,9_1_0 -6883,2,61.0,0.0,2,111,480.0,216.0,0.0,43,43,0.0,0.0,663.4436292364467,1111.0,0.0,391.749026583049,71,1,2,2,1,1,2,2,2,2,50.0,2,,2,127913,1,1,0,1,1,1096.0,0.0,454.0,43,2.0,5.0,6.0,2.0,1.5,1,1,253.903437750714,480.0,81654.02209739761,1,1,2,3,139.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013606188298658329,54436.01473159841,10,5,10,10_0,10_4,10_0_1 -6884,2,31.0,0.0,1,111,0.0,0.0,0.0,21,37,0.0,0.0,0.0,1759.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,2,,1,109576,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1052.47684514052,0.0,64331.38290280722,1,1,1,2,56.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027342797879186313,42887.58860187148,9,5,9,9_0,9_4,9_1_0 -6885,2,84.0,0.0,2,111,392.0,0.0,0.0,0,75,0.0,0.0,541.8122972097648,392.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123816,2,2,0,1,1,830.0,0.0,296.0,11,0.0,0.0,3.0,1.0,1.0,1,1,293.795824634387,392.0,16851.257927008442,0,5,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023262358317578176,16851.257927008442,4,2,4_0,4_0_0,4_4_0,4_0_1 -6886,2,55.0,0.0,2,111,540.0,0.0,0.0,0,46,0.0,0.0,746.3740828910024,540.0,0.0,0.0,71,1,2,2,1,1,2,2,2,3,90.0,2,,2,124445,2,3,0,1,1,,248.0,328.0,22,2.0,1.0,4.0,2.0,1.5,5,5,275.521187124405,540.0,38440.08902075771,0,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014047834272922706,25626.726013838474,7,4,7,7_0,7_4,7_0_1 -6887,2,53.0,0.0,1,111,2200.0,0.0,0.0,0,47,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,2,,1,122183,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,993.974689517265,2200.0,83804.7919774424,0,1,0,1,126.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02625148214188242,83804.7919774424,10,5,10,10_0,10_4,10_1_0 -6888,2,44.0,0.0,2,111,470.0,653.0,0.0,0,62,0.0,0.0,649.6218869606873,1123.0,0.0,1184.3153442533842,71,0,0,0,0,0,0,0,0,0,,2,,2,123831,2,2,0,0,1,,242.0,711.0,32,1.0,0.0,2.0,2.0,1.5,3,3,400.570815687886,470.0,27189.194403324334,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04130317299370571,18126.129602216224,4,2,4_0,4_0_0,4_4_0,4_0_1 -6889,2,37.0,0.0,1,111,1310.0,0.0,0.0,37,38,0.0,0.0,1810.6482381244691,1310.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,120352,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,838.965331769203,1310.0,70697.63657612205,1,1,1,2,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01852961518154129,47131.7577174147,10,5,10,10_0,10_4,10_1_0 -6890,2,43.0,0.0,9,112,1264.0,0.0,0.0,56,64,0.0,0.0,1747.0682236559762,1264.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2008.0,6,110868,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,655.122243121975,1264.0,32367.998740750092,4,1,1,2,60.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03905091600268359,17982.221522638938,4,2,4_0,4_0_0,4_1_0,4_0_0 -6891,2,61.0,0.0,1,111,1200.0,0.0,0.0,0,75,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,2,2,2,2,2,2,2,1,0,,2,,1,129139,2,3,0,0,1,,0.0,346.0,31,0.0,1.0,3.0,2.0,1.5,1,1,1052.47684514052,1200.0,21147.254010224795,0,5,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.05674495607892138,14098.169340149863,3,2,3_0,3_0_0,3_4_0,3_1_0 -6892,2,38.0,0.0,1,111,0.0,0.0,0.0,33,33,0.0,0.0,0.0,686.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,123846,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,4,4,735.728949509424,0.0,132662.73411586494,1,1,1,2,88.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0051710075521348865,55276.13921494372,10,5,10,10_0,10_4,10_1_0 -6893,2,19.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,789.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,127086,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1320.77674654956,0.0,10362.327829592296,0,1,1,2,10.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07614119269097117,10362.327829592296,2,1,2_0,2_0_0,2_4_0,2_1_0 -6894,0,38.0,0.0,1,111,350.0,400.0,0.0,31,34,0.0,0.0,483.76097965157567,750.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,110753,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1102.55843572941,350.0,36879.39515544668,1,1,5,0,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020336559123021118,24586.26343696445,7,4,7,7_0,7_4,7_1_0 -6895,2,34.0,0.0,5,111,480.0,500.0,0.0,54,37,0.0,0.0,663.4436292364467,980.0,0.0,906.8264504237244,43,2,2,2,2,1,2,2,2,3,30.0,2,,3,119054,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,397.186221560997,480.0,77144.1255010972,4,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.012703494836895413,42857.847500609554,9,5,9,9_0,9_4,9_0_0 -6896,2,26.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,2073.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,123675,2,1,0,0,2,,0.0,2100.0,22,3.0,0.0,4.0,3.0,2.0,4,3,928.705825124525,0.0,30713.989835630564,0,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06749367343982,15356.994917815282,3,2,3_0,3_0_0,3_4_0,3_1_0 -6897,2,63.0,0.0,6,111,2646.0,0.0,0.0,55,78,0.0,517.5862524097289,3657.2330061659122,3146.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,128591,1,1,1,0,1,,718.0,,42,1.0,2.0,4.0,2.0,1.5,4,3,299.382771115237,2646.0,35365.477110089196,1,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08895680921274769,23576.984740059463,6,3,6,6_1,6_4,6_0_0 -6898,2,68.0,0.0,2,111,555.0,0.0,0.0,56,78,0.0,0.0,767.1066963046414,752.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,121909,2,1,0,1,2,2100.0,0.0,529.0,42,3.0,3.0,5.0,5.0,3.0,2,2,215.290556695142,555.0,51584.34059373562,4,5,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01457806751708914,17194.780197911874,4,2,4_0,4_0_0,4_4_0,4_0_1 -6899,2,48.0,0.0,1,111,350.0,0.0,0.0,0,46,0.0,0.0,483.76097965157567,350.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,1,120413,2,2,0,0,2,,0.0,474.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1185.30011770774,350.0,26895.82116360752,0,1,3,4,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013013173974906617,26895.82116360752,7,4,7,7_0,7_4,7_1_0 -6900,2,94.0,0.0,1,111,375.0,1000.0,0.0,72,74,0.0,0.0,518.315335340974,1375.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,2,,1,104494,1,1,0,0,1,,344.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,917.181831609883,375.0,50076.033487453,5,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0274582450773486,33384.02232496867,8,4,8,8_0,8_4,8_1_0 -6901,2,49.0,0.0,2,111,600.0,0.0,0.0,64,56,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101153,1,3,0,0,1,,0.0,279.0,43,2.0,0.0,3.0,3.0,2.0,1,1,257.086684375493,600.0,21996.91593021236,1,4,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02727655103577093,10998.45796510618,2,1,2_0,2_0_0,2_4_0,2_0_1 -6902,2,73.0,0.0,1,111,391.0,1176.0,0.0,0,74,0.0,0.0,540.4301229821889,1567.0,0.0,2132.8558113966,43,0,0,0,0,0,0,0,0,0,,2,,1,109433,2,1,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1032.93078416508,391.0,45803.224626489195,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034211565076004785,45803.224626489195,10,5,10,10_0,10_4,10_1_0 -6903,2,63.0,0.0,1,111,300.0,63.0,0.0,0,35,0.0,0.0,414.65226827277917,363.0,0.0,114.26013275338929,50,1,2,2,2,1,2,2,2,3,30.0,2,,1,109120,2,1,0,1,1,240.0,0.0,991.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1031.60032103123,300.0,23542.393798436227,0,5,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.015418992779914835,23542.393798436227,6,3,6,6_0,6_4,6_1_0 -6904,2,32.0,0.0,2,111,218.0,125.0,0.0,0,42,0.0,0.0,301.3139816115529,343.0,0.0,226.7066126059311,50,0,0,0,0,0,0,0,0,0,,2,,2,121074,2,1,0,1,1,1080.0,0.0,326.0,22,1.0,0.0,3.0,3.0,2.0,2,2,300.472592207033,218.0,41553.84495002551,0,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008254350479781281,20776.922475012754,5,3,5,5_0,5_4,5_0_1 -6905,1,28.0,247.0,2,111,324.0,70.0,0.0,0,47,0.0,0.0,447.8244497346015,394.0,0.0,126.95570305932142,50,1,2,2,1,2,1,2,2,0,,2,,2,129350,1,2,0,1,2,488.0,0.0,585.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1401.68401963037,324.0,11103.90319142332,0,4,3,4,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03548301828714848,11103.90319142332,2,1,2_1,2_0_1,2_4_1,2_0_1 -6906,1,63.0,222.0,2,111,249.0,177.0,0.0,0,77,0.0,0.0,344.1613826664067,426.0,0.0,321.01656344999844,10,2,2,1,2,2,2,2,1,0,,2,,2,130550,2,1,0,1,1,511.0,0.0,355.0,11,0.0,2.0,3.0,1.0,1.0,4,3,343.376761118291,249.0,9371.240428592264,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04545822970246781,9371.240428592264,1,1,1_1,1_0_1,1_4_1,1_0_1 -6907,1,65.0,395.0,2,111,417.0,342.0,0.0,85,74,0.0,0.0,576.366652899163,759.0,0.0,620.2692920898276,31,2,2,2,2,2,2,2,1,0,,2,,2,117823,1,1,0,1,1,779.0,0.0,609.0,41,0.0,1.0,4.0,5.0,3.0,2,1,375.51867270266,417.0,19783.525671237647,6,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03836525463726999,6594.508557079215,1,1,1_1,1_0_1,1_4_1,1_0_1 -6908,2,41.0,0.0,1,111,850.0,0.0,0.0,0,34,0.0,0.0,1174.848093439541,850.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,30.0,2,,1,124801,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,894.538802151962,850.0,39838.96198426487,0,1,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021335897263983012,39838.96198426487,9,5,9,9_0,9_4,9_1_0 -6909,1,60.0,176.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,341.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,3,107228,2,1,0,1,1,514.0,0.0,328.0,32,2.0,0.0,3.0,3.0,1.8,2,2,585.899641754136,0.0,18113.96416445947,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01882525530601742,10063.313424699705,2,1,2_1,2_0_1,2_4_1,2_0_0 -6910,2,32.0,0.0,6,111,1600.0,0.0,0.0,37,37,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,45.0,2,,4,126775,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,4,3,545.152708280462,1600.0,83624.19602227137,1,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01913321832802885,55749.46401484758,10,5,10,10_0,10_4,10_0_0 -6912,1,20.0,417.0,2,111,360.0,240.0,0.0,0,43,0.0,0.0,497.582721927335,600.0,0.0,435.27669620338776,50,0,0,0,0,0,0,0,0,0,,2,,2,130912,2,1,0,1,1,1079.0,0.0,401.0,22,3.0,2.0,4.0,9.0,3.999999999999999,5,4,328.05251648345,360.0,31078.455734441224,0,1,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019305978557199625,7769.613933610308,1,1,1_1,1_0_1,1_4_1,1_0_1 -6913,2,37.0,0.0,1,111,629.0,0.0,0.0,85,34,0.0,0.0,869.3875891452603,629.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,121432,2,1,0,0,1,,0.0,,42,1.0,0.0,2.0,4.0,2.1,1,1,971.014562902265,629.0,39109.79637663883,6,4,1,2,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01608292699717854,18623.712560304204,4,2,4_0,4_0_0,4_4_0,4_1_0 -6914,2,35.0,0.0,2,111,300.0,130.0,0.0,54,47,0.0,0.0,414.65226827277917,430.0,0.0,235.77487711016835,50,2,1,2,1,2,2,2,2,0,,2,,2,120701,1,1,0,1,1,448.0,0.0,499.0,43,2.0,0.0,3.0,4.0,2.1,2,2,289.482804514817,300.0,42277.817864500474,1,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010170818214368136,20132.2942211907,5,3,5,5_0,5_4,5_0_1 -6915,2,42.0,0.0,1,111,200.0,810.0,0.0,47,34,0.0,0.0,276.4348455151861,1010.0,0.0,1469.0588496864336,42,0,0,0,0,0,0,0,0,3,50.0,2,,1,112295,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,1133.90697377487,200.0,77538.18515773249,1,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013025840080540986,43076.7695320736,9,5,9,9_0,9_4,9_1_0 -6916,2,32.0,0.0,2,111,480.0,480.0,0.0,46,54,0.0,0.0,663.4436292364467,960.0,0.0,870.5533924067755,60,2,2,2,1,2,2,2,2,3,45.0,2,,2,132543,1,2,0,1,2,552.0,0.0,510.0,43,2.0,0.0,2.0,3.0,1.8,2,2,396.458928203258,480.0,28285.946836352934,4,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03393911490939429,15714.414909084962,3,2,3_0,3_0_0,3_4_0,3_0_1 -6917,2,32.0,0.0,1,111,420.0,1200.0,0.0,47,37,0.0,0.0,580.5131755818909,1620.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,60.0,2,,1,130353,1,1,0,0,1,,0.0,640.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1086.47469257858,420.0,83326.95084481189,1,1,3,4,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019441489020966193,46292.75046933994,10,5,10,10_0,10_4,10_1_0 -6918,2,35.0,0.0,2,111,256.0,235.0,0.0,64,64,0.0,0.0,353.8366022594382,491.0,0.0,426.2084316991505,70,2,2,2,1,2,2,2,2,2,7.0,2,,2,114874,2,1,0,1,1,960.0,0.0,590.0,43,2.0,0.0,3.0,3.0,1.8,2,2,396.458928203258,256.0,26832.26605196219,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01829886447343474,14906.814473312326,3,2,3_0,3_0_0,3_4_0,3_0_1 -6919,2,59.0,0.0,2,111,618.0,69.0,0.0,78,54,0.0,0.0,854.1836726419251,687.0,0.0,125.14205015847398,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,103621,2,1,0,1,1,1674.0,0.0,505.0,42,1.0,1.0,4.0,2.0,1.5,2,2,322.018098698234,618.0,36713.52648186223,5,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018712449220572754,24475.684321241486,7,4,7,7_0,7_4,7_0_1 -6920,1,29.0,199.0,2,111,258.0,132.0,0.0,0,46,0.0,0.0,356.6009507145901,390.0,0.0,239.40218291186326,71,0,0,0,0,0,0,0,0,0,,2,,2,106581,1,2,0,1,1,861.0,0.0,331.0,22,3.0,0.0,3.0,3.0,2.0,1,1,300.472592207033,258.0,45185.27539870146,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008631130308684759,22592.63769935073,6,3,6,6_0,6_4,6_0_1 -6921,2,52.0,0.0,6,111,621.0,0.0,0.0,75,52,0.0,0.0,858.3301953246529,621.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,45.0,2,,4,131576,1,1,0,0,1,,0.0,,42,3.0,0.0,4.0,7.0,4.0,2,2,425.256828640157,621.0,48410.82732105424,5,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01282770889003011,12102.70683026356,2,1,2_0,2_0_0,2_4_0,2_0_0 -6922,1,28.0,115.0,2,111,300.0,480.0,0.0,0,54,0.0,0.0,414.65226827277917,780.0,0.0,870.5533924067755,71,2,1,2,1,2,2,2,2,3,30.0,2,,2,131708,1,2,0,1,2,376.0,0.0,500.0,22,2.0,0.0,2.0,2.0,1.5,2,2,322.044384905846,300.0,35262.3973095324,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.022119880085099727,23508.264873021602,6,3,6,6_0,6_4,6_0_1 -6923,2,68.0,0.0,2,111,732.0,750.0,0.0,0,78,0.0,0.0,1011.7515345855811,1482.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,0,,2,,2,129703,2,1,0,1,1,773.0,0.0,313.0,31,2.0,1.0,4.0,4.0,2.5,2,2,286.873541026214,732.0,36152.697310815,0,5,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04099279196954035,14461.078924325999,3,2,3_0,3_0_0,3_4_0,3_0_1 -6924,2,41.0,0.0,5,111,2000.0,0.0,0.0,48,46,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,3,105704,1,1,0,0,1,,852.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,903.676898130754,2000.0,176219.15234178436,1,1,1,2,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011349504145388902,117479.4348945229,10,5,10,10_0,10_4,10_0_0 -6925,2,34.0,0.0,2,111,145.0,120.0,0.0,0,46,0.0,0.0,200.41526299850995,265.0,0.0,217.63834810169388,41,0,0,0,0,0,0,0,0,3,45.0,2,,2,129725,2,3,0,1,1,407.0,0.0,300.0,12,1.0,0.0,2.0,1.0,1.0,2,2,488.132533588762,145.0,17893.379127667606,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014809947193833512,17893.379127667606,4,2,4_0,4_0_0,4_4_0,4_0_1 -6926,2,44.0,0.0,1,111,600.0,0.0,0.0,34,34,0.0,0.0,829.3045365455583,2810.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,20.0,2,,1,127249,2,2,0,0,1,,247.0,,43,2.0,0.0,4.0,3.0,1.8,4,4,1059.03049971858,600.0,77940.40725484143,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03605318600417566,43300.22625268968,9,5,9,9_0,9_4,9_1_0 -6927,1,49.0,429.0,2,111,900.0,0.0,0.0,85,68,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,44,2,2,2,2,2,2,1,2,2,45.0,2,,2,130490,1,3,0,1,2,1432.0,0.0,637.0,42,1.0,2.0,5.0,7.0,2.9999999999999996,2,2,316.019447185993,900.0,50290.30607747506,6,1,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.017896093108152874,16763.435359158357,4,2,4_1,4_0_1,4_4_1,4_0_1 -6928,2,50.0,0.0,1,111,2400.0,3000.0,0.0,46,22,0.0,0.0,3317.2181461822333,5400.0,0.0,5440.958702542347,50,2,2,2,1,2,2,2,2,0,,2,,1,125188,1,2,0,0,2,,320.0,1660.0,43,2.0,1.0,4.0,4.0,2.5,2,2,1073.43897173156,2400.0,50010.85654158252,1,1,2,3,128.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.1079765549608226,20004.34261663301,5,3,5,5_0,5_4,5_1_0 -6929,2,24.0,0.0,1,111,0.0,0.0,0.0,84,56,0.0,0.0,0.0,432.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,106456,2,2,0,0,1,,336.0,1100.0,42,1.0,0.0,2.0,2.0,1.5,4,4,984.020341962059,0.0,37836.3419003259,3,1,2,3,54.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011417594257342279,25224.2279335506,7,4,7,7_0,7_4,7_1_0 -6930,2,47.0,0.0,1,111,400.0,800.0,0.0,0,63,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,12,0,0,0,0,0,0,0,0,3,40.0,2,,1,106672,1,2,0,1,1,,0.0,709.0,22,2.0,3.0,3.0,2.0,1.5,2,2,649.343032265871,400.0,44260.460986107966,0,1,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02711223456024654,29506.973990738643,8,4,8,8_0,8_4,8_1_0 -6931,2,39.0,0.0,1,111,900.0,950.0,0.0,35,33,0.0,0.0,1243.9568048183376,1850.0,0.0,1722.9702558050765,31,0,0,0,0,0,0,0,0,3,60.0,2,,1,111740,2,2,0,0,1,,310.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,237.301887400096,900.0,78000.9016647637,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023717674546263907,37143.28650703033,9,5,9,9_0,9_4,9_1_0 -6932,2,53.0,0.0,6,111,280.0,0.0,0.0,54,38,0.0,0.0,387.00878372126056,280.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,4,122962,2,2,0,1,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,350.127504119214,280.0,58205.18669789278,1,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004810567852884096,38803.457798595184,9,5,9,9_0,9_4,9_0_0 -6933,0,90.0,0.0,1,111,240.0,0.0,0.0,0,74,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114641,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,3,2,306.401708431802,240.0,50008.97147691004,0,5,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004799138892724717,50008.97147691004,10,5,10,10_0,10_4,10_1_0 -6934,2,44.0,0.0,2,111,900.0,900.0,0.0,43,37,0.0,0.0,1243.9568048183376,1800.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,0,,2,,2,111682,2,1,0,0,1,,421.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,237.301887400096,900.0,94554.13081906016,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019036714571936578,45025.77658050483,10,5,10,10_0,10_4,10_0_1 -6935,2,26.0,0.0,1,111,400.0,0.0,0.0,0,56,0.0,0.0,552.8696910303722,400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,15.0,2,,1,110433,1,2,0,1,2,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,672.331625006996,400.0,6722.888357358435,0,1,3,4,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.059498236284436595,6722.888357358435,1,1,1_0,1_0_0,1_4_0,1_1_0 -6936,2,43.0,0.0,2,111,100.0,0.0,0.0,0,52,0.0,0.0,138.21742275759306,174.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,50.0,2,,2,131687,1,2,0,1,1,20.0,0.0,298.0,12,1.0,0.0,1.0,1.0,1.0,4,3,431.80761233792,100.0,21776.889114160243,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.00799012196314385,21776.889114160243,6,3,6,6_0,6_4,6_0_1 -6937,2,43.0,0.0,1,111,140.0,98.0,0.0,0,46,0.0,0.0,193.50439186063028,238.0,0.0,177.73798428305,71,0,0,0,0,0,0,0,0,3,35.0,2,,1,128261,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,312.441478905503,140.0,164328.15832763098,0,1,1,2,128.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0014483214710255866,164328.15832763098,10,5,10,10_0,10_4,10_1_0 -6938,2,42.0,0.0,5,111,270.0,1000.0,0.0,0,46,0.0,0.0,373.1870414455012,1270.0,0.0,1813.6529008474488,43,0,0,0,0,0,0,0,0,2,30.0,2,,3,129916,1,1,0,0,1,,0.0,285.0,32,1.0,0.0,1.0,2.0,1.3,4,3,674.257180353883,270.0,23819.239193083573,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.053318243698093085,18322.491686987363,4,2,4_0,4_0_0,4_4_0,4_0_0 -6939,2,32.0,0.0,1,111,40.0,60.0,0.0,35,35,0.0,0.0,55.28696910303722,100.0,0.0,108.81917405084694,31,0,0,0,0,0,0,0,0,1,5.0,2,,1,107849,1,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,263.994058275226,40.0,17311.60607643147,1,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00577647155084836,11541.070717620982,2,1,2_0,2_0_0,2_4_0,2_1_0 -6940,2,36.0,0.0,1,111,300.0,0.0,0.0,0,55,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,1,130902,1,2,0,1,2,,300.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,379.106232403536,300.0,22786.466573726073,0,1,0,1,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.013165709524526057,22786.466573726073,6,3,6,6_0,6_4,6_1_0 -6941,2,30.0,0.0,1,111,820.0,0.0,0.0,0,54,0.0,0.0,1133.3828666122631,820.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,1.0,2,,1,109217,1,2,0,0,2,,0.0,681.0,12,1.0,0.0,1.0,1.0,1.0,1,1,371.233618413462,820.0,30712.993488636304,0,1,3,4,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026698797702783255,30712.993488636304,8,4,8,8_0,8_4,8_1_0 -6942,2,47.0,0.0,2,111,900.0,150.0,0.0,0,37,0.0,0.0,1243.9568048183376,1140.0,0.0,272.04793512711734,33,2,2,2,1,2,2,2,2,2,30.0,2,,2,126785,1,3,0,1,2,,0.0,460.0,12,1.0,0.0,2.0,1.0,1.0,5,3,349.354622864139,900.0,20880.524969695925,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0545963284761514,20880.524969695925,5,3,5,5_0,5_4,5_0_1 -6943,2,45.0,0.0,1,111,1300.0,0.0,0.0,37,35,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,107102,2,1,0,1,1,,414.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,312.967449044961,1300.0,85340.00597981231,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01523318384003304,40638.09808562491,9,5,9,9_0,9_4,9_1_0 -6944,2,65.0,0.0,1,111,600.0,0.0,0.0,77,46,0.0,0.0,829.3045365455583,2027.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,101511,2,1,2,0,1,,513.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,327.315975287819,600.0,37031.60375596865,6,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05473702984503591,24687.735837312433,7,4,7,7_1,7_4,7_1_0 -6945,1,26.0,200.0,1,111,40.0,0.0,0.0,0,52,0.0,0.0,55.28696910303722,40.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,1,116719,2,1,0,0,1,,0.0,800.0,22,2.0,0.0,2.0,2.0,1.5,1,1,1032.55386687019,40.0,13984.192262569055,0,4,3,4,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.0028603725727560573,9322.794841712703,1,1,1_1,1_0_1,1_4_1,1_1_0 -6946,2,50.0,0.0,1,111,1080.0,0.0,0.0,52,33,0.0,0.0,1492.748165782005,1087.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,112071,2,1,0,1,1,,310.0,,43,2.0,1.0,3.0,2.0,1.5,3,3,267.704599761517,1080.0,48127.62561670285,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02258578074590809,32085.083744468564,8,4,8,8_0,8_4,8_1_0 -6948,2,62.0,0.0,9,111,600.0,0.0,0.0,77,72,4480.754631054002,0.0,829.3045365455583,3600.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,1,2008.0,6,108341,1,2,2,0,2,,350.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,541.091902277988,600.0,46166.257128586665,7,7,0,1,80.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.07797903109132145,30777.50475239111,8,4,8,8_1,8_4,8_0_0 -6949,2,30.0,0.0,1,111,600.0,0.0,0.0,31,37,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,126162,2,1,0,1,1,704.0,0.0,1600.0,43,2.0,0.0,3.0,2.0,1.5,2,2,209.912445068981,600.0,73793.94176670784,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008130748753018778,49195.96117780523,10,5,10,10_0,10_4,10_1_0 -6952,2,61.0,0.0,5,111,1000.0,0.0,0.0,0,54,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,128237,2,1,2,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,2,1,516.024481770749,1000.0,14424.32355925497,0,1,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06932734113263686,14424.32355925497,3,2,3_0,3_1_0,3_4_0,3_0_0 -6953,2,74.0,0.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,825.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,130736,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1226.74362062545,0.0,45086.93086563342,0,5,0,1,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01829798533989013,45086.93086563342,10,5,10,10_0,10_4,10_0_0 -6954,2,70.0,0.0,6,111,2000.0,0.0,0.0,77,72,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,133684,2,2,2,0,1,,262.0,,41,0.0,0.0,3.0,2.0,1.5,4,4,369.002560428627,2000.0,18153.522763850386,6,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.1101714541038093,12102.34850923359,2,1,2_0,2_1_0,2_4_0,2_0_0 -6955,2,23.0,0.0,7,111,157.0,0.0,0.0,0,35,0.0,0.0,217.0013537294211,157.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,5,100897,2,1,0,0,1,,0.0,1200.0,22,3.0,0.0,4.0,5.0,3.0,4,4,155.770041949363,157.0,57668.76686710486,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0027224442021068287,19222.922289034952,5,3,5,5_0,5_4,5_0_0 -6956,2,84.0,0.0,2,111,0.0,0.0,0.0,86,77,0.0,0.0,0.0,1518.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,123412,1,3,0,1,2,,250.0,300.0,41,0.0,0.0,3.0,2.0,1.5,2,1,293.690641533786,0.0,15932.961805178886,5,5,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.09527418809895005,10621.974536785923,2,1,2_0,2_0_0,2_4_0,2_0_1 -6957,1,49.0,150.0,9,111,250.0,0.0,0.0,68,53,0.0,0.0,345.54355689398267,250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,2005.0,6,133366,2,1,0,0,1,,0.0,700.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,192.704654768908,250.0,29011.58917314301,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.008617245973944554,9358.577152626778,1,1,1_1,1_0_1,1_4_1,1_0_0 -6958,2,76.0,0.0,2,111,341.0,0.0,0.0,72,74,0.0,0.0,471.32141160339233,526.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,128740,2,1,0,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,282.735923839894,341.0,53479.02130509737,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009835632499689446,35652.68087006491,9,5,9,9_0,9_4,9_0_1 -6959,1,43.0,315.0,7,111,1400.0,0.0,0.0,0,68,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,1,2,2,2,1,2,2,2,3,25.0,2,,5,129052,2,1,0,0,1,,0.0,400.0,32,1.0,0.0,4.0,5.0,2.8,2,2,148.058366604206,1400.0,18426.80212232761,0,1,2,3,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07597628664518144,6581.000757974146,1,1,1_1,1_0_1,1_4_1,1_0_0 -6960,2,67.0,0.0,1,111,0.0,0.0,300.0,0,78,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,41,2,2,2,2,1,2,2,2,0,,1,,1,109244,1,3,3,0,2,,1700.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,542.44587532076,0.0,11642.659458275139,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.025767308669908055,11642.659458275139,2,1,2_0,2_1_0,2_4_0,2_1_0 -6961,2,30.0,0.0,2,111,400.0,0.0,0.0,0,43,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,100598,2,1,0,1,2,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,2,2,466.748599330875,400.0,18735.07963097932,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021350322917153847,18735.07963097932,5,3,5,5_0,5_4,5_0_1 -6962,2,40.0,0.0,1,111,1750.0,0.0,0.0,0,47,0.0,0.0,2418.8048982578784,1750.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,121483,2,1,0,0,1,,150.0,,32,1.0,0.0,4.0,3.0,1.6,3,3,237.936772237192,1750.0,45513.365689423576,0,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.038450243648025045,28445.853555889735,8,4,8,8_0,8_4,8_1_0 -6963,2,51.0,0.0,2,111,1400.0,0.0,0.0,22,68,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,2,,2,102719,2,2,0,0,1,,300.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,381.16388684572,1400.0,19227.55404581262,1,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.07281217343944443,9613.77702290631,1,1,1_0,1_0_0,1_4_0,1_0_1 -6964,2,39.0,0.0,1,111,150.0,0.0,0.0,0,85,0.0,0.0,207.32613413638958,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,127884,1,2,0,0,1,,0.0,1300.0,31,0.0,0.0,3.0,3.0,1.6,1,1,279.039436270817,150.0,18349.316287168873,0,7,3,4,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008174691506347325,11468.322679480545,2,1,2_0,2_0_0,2_4_0,2_1_0 -6965,1,51.0,120.0,2,111,720.0,400.0,0.0,85,63,0.0,0.0,995.16544385467,1120.0,0.0,725.4611603389795,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,104948,2,1,0,1,2,,0.0,670.0,42,1.0,0.0,5.0,6.0,3.5,4,4,307.812276721197,720.0,27021.058329757485,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04144915370567027,7720.30237993071,1,1,1_1,1_0_1,1_4_1,1_0_1 -6966,2,81.0,0.0,1,111,300.0,100.0,0.0,0,78,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,1,131964,2,1,0,1,2,,0.0,550.0,11,0.0,2.0,1.0,1.0,1.0,3,3,698.754435088962,300.0,19264.028816020276,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02076408854140384,19264.028816020276,5,3,5,5_0,5_4,5_1_0 -6967,2,36.0,0.0,5,111,500.0,0.0,0.0,0,67,0.0,0.0,691.0871137879653,500.0,0.0,0.0,30,0,0,0,0,0,0,0,0,1,10.0,2,,3,102705,2,1,0,1,2,,0.0,540.0,12,1.0,0.0,2.0,1.0,1.0,2,2,489.05062794516,500.0,29835.161572138342,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016758749530853104,29835.161572138342,8,4,8,8_0,8_4,8_0_0 -6968,2,28.0,0.0,2,111,480.0,0.0,0.0,55,46,0.0,0.0,663.4436292364467,952.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,,2,103877,2,1,0,1,1,,0.0,370.0,43,2.0,0.0,2.0,2.0,1.5,1,1,310.206373739658,480.0,4690.057689810165,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.2029825778195349,3126.70512654011,1,1,1_0,1_0_0,1_4_0,1_0_1 -6969,2,82.0,0.0,1,111,120.0,60.0,0.0,86,86,0.0,0.0,165.86090730911167,180.0,0.0,108.81917405084694,60,0,0,0,0,0,0,0,0,0,,2,,1,102707,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,221.993803391632,120.0,31510.60480462289,5,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005712362587645172,21007.069869748593,5,3,5,5_0,5_4,5_1_0 -6970,2,58.0,0.0,2,111,900.0,0.0,0.0,0,67,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,60,2,2,2,1,2,2,2,2,2,15.0,2,,2,117652,1,2,0,1,2,1300.0,0.0,400.0,12,1.0,3.0,3.0,1.0,1.0,2,2,415.498655152352,900.0,19763.295724830103,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.045538963365774204,19763.295724830103,5,3,5,5_0,5_4,5_0_1 -6971,2,30.0,0.0,1,111,1500.0,0.0,0.0,0,46,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,120770,2,1,0,0,1,,0.0,800.0,12,1.0,0.0,3.0,1.0,1.0,3,3,299.514456895095,1500.0,23116.825376976478,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06488780252213809,23116.825376976478,6,3,6,6_0,6_4,6_1_0 -6973,2,46.0,0.0,1,111,720.0,0.0,0.0,0,35,0.0,0.0,995.16544385467,720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,130983,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,281.481152703603,720.0,29607.974682076943,0,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024317772753157912,29607.974682076943,8,4,8,8_0,8_4,8_1_0 -6974,1,75.0,91.0,6,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,1908.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,133210,2,2,0,1,2,526.0,0.0,390.0,11,0.0,2.0,3.0,1.0,1.0,2,2,673.958636527287,300.0,16735.481909290433,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11400926548406141,16735.481909290433,4,2,4_1,4_0_1,4_4_1,4_0_0 -6975,2,43.0,0.0,2,111,400.0,0.0,0.0,0,46,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,45.0,2,,2,114063,2,1,0,1,2,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,2,2,349.354622864139,400.0,4511.671437663694,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0886589383838497,4511.671437663694,1,1,1_0,1_0_0,1_4_0,1_0_1 -6976,2,55.0,0.0,2,111,208.0,0.0,0.0,0,34,0.0,0.0,287.49223933579356,1638.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,2,110930,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,186.843183718091,208.0,84563.24330073166,0,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019370117985834486,84563.24330073166,10,5,10,10_0,10_4,10_0_1 -6977,2,79.0,0.0,2,111,200.0,200.0,0.0,0,78,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,50,2,2,2,1,2,2,2,2,0,,2,,2,123275,1,3,0,1,2,,250.0,,11,0.0,0.0,2.0,1.0,1.0,3,2,318.443376337278,200.0,16653.415332128327,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.024019097105463204,16653.415332128327,4,2,4_0,4_0_0,4_4_0,4_0_1 -6978,2,64.0,0.0,1,111,700.0,0.0,0.0,0,72,0.0,0.0,967.5219593031513,700.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,1,115652,1,3,0,0,2,,300.0,400.0,11,0.0,1.0,1.0,1.0,1.0,2,2,556.2382377507,700.0,10522.021564554077,0,5,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.06652713983766351,10522.021564554077,2,1,2_0,2_0_0,2_4_0,2_1_0 -6979,2,51.0,0.0,6,111,1500.0,0.0,0.0,0,46,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,104437,2,1,0,0,1,,250.0,500.0,12,1.0,0.0,1.0,1.0,1.0,5,4,716.834101236189,1500.0,24143.85029104989,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06212762181332979,24143.85029104989,6,3,6,6_0,6_4,6_0_0 -6980,1,21.0,196.0,2,111,631.0,134.0,0.0,0,54,0.0,0.0,872.1519376004122,765.0,0.0,243.02948871355815,42,0,0,0,0,0,0,0,0,0,,2,,2,101169,2,3,0,1,1,1253.0,0.0,553.0,22,1.0,4.0,4.0,3.0,2.0,1,1,408.396054152477,631.0,33474.04843697413,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02285352491618584,16737.024218487066,4,2,4_1,4_0_1,4_4_1,4_0_1 -6981,2,65.0,0.0,2,111,186.0,102.0,0.0,0,63,0.0,0.0,257.0844063291231,288.0,0.0,184.9925958864398,33,0,0,0,0,0,0,0,0,3,80.0,2,,2,115610,1,1,0,1,1,1064.0,0.0,389.0,12,1.0,5.0,3.0,1.0,1.0,1,1,441.898385000707,186.0,8053.6978537295145,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03575997078989407,8053.6978537295145,1,1,1_0,1_0_0,1_4_0,1_0_1 -6982,0,52.0,0.0,2,111,840.0,0.0,0.0,52,53,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,1.0,2,,2,132712,2,1,0,1,1,,0.0,,43,3.0,0.0,3.0,5.0,2.5999999999999996,1,1,235.587644379232,840.0,62350.37236402351,1,1,5,0,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013472253142223162,23980.912447701354,6,3,6,6_0,6_4,6_0_1 -6983,2,88.0,0.0,5,111,213.0,56.0,0.0,0,78,0.0,0.0,294.4031104736732,269.0,0.0,101.56456244745713,41,0,0,0,0,0,0,0,0,0,,2,,3,107205,2,1,0,3,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,422.045172827603,213.0,19055.53385028496,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014116634155383547,19055.53385028496,5,3,5,5_0,5_4,5_0_0 -6984,2,72.0,0.0,2,111,417.0,0.0,0.0,0,74,0.0,0.0,576.366652899163,417.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121272,2,2,0,1,1,721.0,0.0,291.0,11,0.0,1.0,4.0,1.0,1.0,1,1,330.754594352314,417.0,23299.91489064409,0,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017897061081860146,23299.91489064409,6,3,6,6_0,6_4,6_0_1 -6986,1,43.0,187.0,2,111,522.0,139.0,0.0,55,64,0.0,0.0,721.4949467946358,661.0,0.0,252.0977532177954,31,2,2,2,1,2,2,2,2,0,,2,,2,110943,1,2,0,1,1,1136.0,0.0,385.0,43,2.0,1.0,3.0,5.0,2.4,1,1,235.587644379232,522.0,39282.48308219877,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.01682683853301367,16367.701284249488,4,2,4_1,4_0_1,4_4_1,4_0_1 -6987,2,43.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,528.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,121714,2,2,0,0,1,,0.0,660.0,32,1.0,0.0,2.0,3.0,1.6,2,2,1007.80403419987,0.0,19886.377025843452,0,1,3,4,40.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02655083926618884,12428.985641152158,2,1,2_0,2_0_0,2_4_0,2_1_0 -6988,2,65.0,0.0,5,111,370.0,0.0,0.0,46,74,0.0,0.0,511.40446420309434,370.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,131645,2,2,0,1,1,,0.0,,42,1.0,1.0,5.0,2.0,1.5,3,3,385.545729414566,370.0,62481.88266216025,1,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005921716571835571,41654.588441440166,9,5,9,9_0,9_4,9_0_0 -6989,2,48.0,0.0,2,111,420.0,1300.0,0.0,22,55,0.0,0.0,580.5131755818909,1720.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,3,40.0,1,,2,109156,2,2,3,0,2,,450.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,327.342693958962,420.0,47331.07082997322,1,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036339765186778325,31554.04721998215,8,4,8,8_1,8_4,8_0_1 -6990,2,46.0,0.0,1,111,1420.0,0.0,0.0,0,85,1194.8679016144006,0.0,1962.6874031578213,2360.0,240.84578058662683,0.0,43,2,2,1,2,2,2,2,1,0,,1,,1,121330,2,3,2,0,1,,440.0,,31,2.0,2.0,5.0,4.0,2.3,1,1,586.051785228854,1420.0,12270.216939390782,0,6,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.19233563771996148,5334.876930169906,1,1,1_0,1_1_0,1_4_0,1_1_0 -6991,1,69.0,65.0,7,111,420.0,150.0,0.0,56,78,0.0,0.0,580.5131755818909,570.0,0.0,272.04793512711734,41,0,0,0,0,0,0,0,0,0,,2,2001.0,5,132211,2,2,0,1,1,519.0,0.0,320.0,42,1.0,5.0,2.0,2.0,1.5,1,1,392.672713754811,420.0,20492.85300859255,4,5,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027814575147784543,13661.902005728365,3,2,3_1,3_0_1,3_4_1,3_0_0 -6992,2,69.0,0.0,9,111,660.0,572.0,0.0,55,78,0.0,517.5862524097289,912.2349902001142,1732.0,0.0,1037.4094592847407,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,120666,2,2,1,0,1,,360.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,571.473628055473,660.0,38261.64197994404,1,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04526726795749849,25507.761319962694,7,4,7,7_1,7_4,7_0_0 -6993,0,56.0,0.0,1,111,306.0,1119.0,0.0,0,35,0.0,0.0,422.9453136382348,1425.0,0.0,2029.4775960482953,43,0,0,0,0,0,0,0,0,0,,2,,1,114674,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1057.69463740253,306.0,29122.264545907856,0,1,5,0,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04893163434298365,29122.264545907856,8,4,8,8_0,8_4,8_1_0 -6995,2,69.0,0.0,1,111,220.0,190.0,0.0,35,75,0.0,0.0,304.0783300667047,410.0,0.0,344.5940511610153,31,0,0,0,0,0,0,0,0,0,,2,,1,119927,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,5,5,889.168186923913,220.0,36077.241996591765,5,5,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011364505081589467,24051.49466439451,6,3,6,6_0,6_4,6_1_0 -6996,2,52.0,0.0,2,111,351.0,0.0,0.0,0,46,0.0,0.0,485.1431538791516,351.0,0.0,0.0,71,2,2,1,2,2,2,2,1,2,15.0,2,,2,120778,2,1,0,1,1,803.0,0.0,399.0,32,2.0,0.0,3.0,2.0,1.5,1,1,392.379795774994,351.0,22180.380254916243,0,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015824796327475108,14786.920169944162,3,2,3_0,3_0_0,3_4_0,3_0_1 -6997,2,30.0,0.0,1,111,240.0,655.0,0.0,0,37,0.0,0.0,331.72181461822333,895.0,0.0,1187.942650055079,42,0,0,0,0,0,0,0,0,3,40.0,2,,1,102019,2,3,0,0,1,,0.0,1036.0,22,2.0,0.0,4.0,2.0,1.5,1,1,1425.86258072475,240.0,59063.15053000845,0,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01515327225128761,39375.433686672295,9,5,9,9_0,9_4,9_1_0 -6998,2,86.0,0.0,2,111,160.0,119.0,0.0,52,78,0.0,0.0,221.1478764121489,279.0,0.0,215.8246952008464,71,0,0,0,0,0,0,0,0,0,,2,,2,106805,2,3,0,1,1,476.0,0.0,256.0,42,1.0,0.0,2.0,2.0,1.5,3,3,310.206373739658,160.0,18648.70549231567,1,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01496082396255139,12432.470328210446,2,1,2_0,2_0_0,2_4_0,2_0_1 -6999,2,52.0,0.0,1,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,697.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,109165,2,2,0,1,2,,0.0,,42,2.0,0.0,3.0,5.0,3.0,3,2,314.752391516025,0.0,27364.26877185225,3,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025471172126366345,9121.42292395075,1,1,1_0,1_0_0,1_4_0,1_1_0 -7000,2,29.0,0.0,1,111,326.0,0.0,0.0,0,38,0.0,0.0,450.58879818975333,326.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,45.0,2,,1,112213,1,2,0,0,1,,0.0,704.0,12,1.0,0.0,2.0,1.0,1.0,4,3,1611.18366954826,326.0,32013.812825230012,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.010183104454933282,32013.812825230012,8,4,8,8_0,8_4,8_1_0 -7001,1,33.0,421.0,2,111,270.0,240.0,0.0,0,85,0.0,0.0,373.1870414455012,510.0,0.0,435.27669620338776,43,0,0,0,0,0,0,0,0,0,,2,,2,105599,2,2,0,1,1,,400.0,521.0,31,0.0,0.0,4.0,2.0,1.3,2,2,293.690641533786,270.0,10853.76338697788,0,6,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04698831012033001,8349.048759213754,1,1,1_1,1_0_1,1_4_1,1_0_1 -7002,2,79.0,0.0,2,111,300.0,240.0,0.0,75,75,0.0,0.0,414.65226827277917,540.0,0.0,435.27669620338776,31,0,0,0,0,0,0,0,0,0,,2,,2,125502,2,2,0,0,1,310.0,0.0,375.0,41,0.0,0.0,3.0,2.0,1.5,2,2,293.690641533786,300.0,49674.35194981756,5,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010870801103666602,33116.23463321171,8,4,8,8_0,8_4,8_0_1 -7003,1,25.0,290.0,1,111,1400.0,0.0,0.0,84,46,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,123752,2,2,0,0,1,,0.0,900.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1275.5230635867,1400.0,27077.06030419325,3,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.051704283414517896,18051.373536128835,4,2,4_1,4_0_1,4_4_1,4_1_0 -7004,2,68.0,0.0,1,111,744.0,0.0,0.0,0,78,0.0,0.0,1028.3376253164924,744.0,0.0,0.0,70,2,1,2,2,2,2,2,1,0,,2,,1,131516,1,2,0,0,2,,0.0,372.0,11,0.0,0.0,3.0,1.0,1.0,2,2,330.754594352314,744.0,12354.274629836382,0,5,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.06022207068338851,12354.274629836382,2,1,2_0,2_0_0,2_4_0,2_1_0 -7005,1,32.0,28.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1038.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,126494,2,2,0,0,2,,0.0,489.0,32,2.0,0.0,3.0,4.0,2.1,2,2,1073.16301118675,0.0,44471.946530926376,0,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02334055693465455,21177.117395679226,5,3,5,5_0,5_4,5_0_1 -7006,2,47.0,0.0,6,111,422.0,0.0,0.0,0,47,0.0,91.09518042411229,583.2775240370427,510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,4,110483,1,1,0,0,1,,0.0,261.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1269.95042477551,422.0,33151.115911537454,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015384097517589346,33151.115911537454,8,4,8,8_0,8_4,8_0_0 -7007,2,59.0,0.0,2,111,25.0,30.0,0.0,54,47,0.0,0.0,34.554355689398264,55.0,0.0,54.40958702542347,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,123777,1,3,0,1,1,1800.0,0.0,600.0,43,2.0,2.0,4.0,2.0,1.5,2,2,414.411497424332,25.0,64135.46226582777,1,1,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0008575598905335205,42756.97484388518,9,5,9,9_0,9_4,9_0_1 -7008,1,75.0,367.0,2,111,540.0,300.0,0.0,78,75,0.0,0.0,746.3740828910024,840.0,0.0,544.0958702542347,42,0,0,0,0,0,0,0,0,0,,2,,2,128351,2,2,0,1,1,,0.0,459.0,41,0.0,4.0,4.0,2.0,1.5,2,2,310.181053785251,540.0,14714.828338849053,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05708527348445454,9809.885559232702,2,1,2_1,2_0_1,2_4_1,2_0_1 -7009,1,51.0,325.0,2,111,350.0,0.0,0.0,0,52,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,109685,1,2,0,1,1,,0.0,414.0,32,1.0,0.0,4.0,4.0,2.5,2,2,286.873541026214,350.0,26396.720449240525,0,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013259222889943134,10558.68817969621,2,1,2_1,2_0_1,2_4_1,2_0_1 -7010,2,61.0,0.0,1,111,400.0,0.0,0.0,74,35,0.0,0.0,552.8696910303722,400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,114952,2,1,0,1,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,707.815679617938,400.0,38760.21858221978,5,1,0,1,69.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010319859243092333,25840.145721479854,7,4,7,7_0,7_4,7_1_0 -7011,2,43.0,0.0,2,111,150.0,150.0,0.0,0,37,0.0,0.0,207.32613413638958,300.0,0.0,272.04793512711734,41,0,0,0,0,0,0,0,0,0,,2,,2,105621,2,1,0,1,1,710.0,0.0,600.0,32,1.0,0.0,4.0,2.0,1.3,1,1,414.411497424332,150.0,49512.806822668615,0,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006059038443820357,38086.77447897586,9,5,9,9_0,9_4,9_0_1 -7012,2,72.0,0.0,1,111,357.0,1282.0,0.0,86,31,0.0,0.0,493.4361992446072,1639.0,0.0,2325.1030188864297,50,0,0,0,0,0,0,0,0,0,,2,,1,115891,2,2,0,0,1,,0.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,986.96847242826,357.0,83616.34349497572,5,5,0,1,127.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019601431149623077,55744.22899665048,10,5,10,10_0,10_4,10_1_0 -7013,2,65.0,0.0,2,111,272.0,240.0,0.0,0,74,0.0,0.0,375.9513899006531,512.0,0.0,435.27669620338776,71,0,0,0,0,0,0,0,0,0,,2,,2,103058,2,1,0,1,1,,0.0,586.0,11,0.0,0.0,3.0,1.0,1.0,2,2,441.898385000707,272.0,76347.14654607554,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006706210030927714,76347.14654607554,10,5,10,10_0,10_4,10_0_1 -7014,1,76.0,30.0,2,111,250.0,100.0,0.0,0,77,0.0,0.0,345.54355689398267,350.0,0.0,181.36529008474488,31,0,0,0,0,0,0,0,0,0,,2,,2,129030,1,2,0,1,1,468.0,0.0,237.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1412.03366816913,250.0,14450.52686996731,0,5,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024220570166711974,14450.52686996731,3,2,3_1,3_0_1,3_4_1,3_0_1 -7015,1,45.0,27.0,2,111,372.0,588.0,0.0,0,67,0.0,0.0,514.1688126582462,960.0,0.0,1066.4279056983,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,133066,1,2,0,1,1,852.0,0.0,352.0,32,1.0,3.0,3.0,3.0,1.8,2,2,289.427537337591,372.0,19092.26359526212,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05028214675593683,10606.813108478955,2,1,2_1,2_0_1,2_4_1,2_0_1 -7016,2,45.0,0.0,2,111,1087.0,120.0,0.0,64,46,0.0,0.0,1502.4233853750366,1207.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,131681,2,3,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,268.440872475434,1087.0,49477.2871213272,1,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024395031947491767,23560.612914917714,6,3,6,6_0,6_4,6_0_1 -7017,2,31.0,0.0,1,111,338.0,0.0,0.0,0,42,0.0,0.0,467.17488892066456,338.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,1,129855,1,3,0,0,1,,0.0,634.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1320.68021286477,338.0,26534.719092486306,0,1,2,3,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0127380281970164,26534.719092486306,7,4,7,7_0,7_4,7_1_0 -7018,2,88.0,0.0,2,111,360.0,0.0,0.0,75,74,0.0,0.0,497.582721927335,360.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,129480,2,2,0,1,2,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,246.444215720968,360.0,52749.586528902255,5,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006824698043893687,35166.39101926817,9,5,9,9_0,9_4,9_0_1 -7019,2,69.0,0.0,7,111,2000.0,0.0,0.0,33,38,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,125911,2,2,2,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,369.154281026752,2000.0,53801.20028975504,4,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03717389183194199,35867.46685983669,9,5,9,9_1,9_4,9_0_0 -7021,2,53.0,0.0,2,111,560.0,0.0,0.0,56,56,0.0,0.0,774.0175674425211,560.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,109877,1,1,0,1,1,,0.0,400.0,43,2.0,2.0,3.0,3.0,2.0,1,1,289.427537337591,560.0,43976.54605436256,1,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012734060544630856,21988.27302718128,6,3,6,6_0,6_4,6_0_1 -7022,1,79.0,80.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,153.0,0.0,0.0,71,1,2,2,2,1,1,2,2,0,,2,,1,133604,1,3,0,1,2,,0.0,512.0,11,0.0,1.0,1.0,1.0,1.0,1,1,403.917582263637,0.0,12477.444444444445,0,5,3,4,12.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.01226212632572553,12477.444444444445,2,1,2_1,2_0_1,2_4_1,2_1_0 -7023,0,38.0,0.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,211.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,108997,1,3,0,1,2,,0.0,,31,0.0,0.0,1.0,2.0,1.3,3,3,401.736254137782,0.0,52290.178761413095,0,7,5,0,12.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0040351745776724115,40223.21443185623,9,5,9,9_0,9_4,9_1_0 -7024,2,50.0,0.0,5,111,500.0,0.0,0.0,0,46,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,3,132645,2,1,0,0,1,,0.0,233.0,12,1.0,0.0,1.0,1.0,1.0,1,1,416.511784819986,500.0,35040.30186433307,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014269283464961856,35040.30186433307,9,5,9,9_0,9_4,9_0_0 -7025,2,37.0,0.0,5,111,300.0,100.0,0.0,0,47,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,3,90.0,2,,3,122033,2,1,0,1,1,,0.0,760.0,12,1.0,0.0,3.0,1.0,1.0,2,2,653.333458625689,300.0,30076.53306638959,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013299405191318359,30076.53306638959,8,4,8,8_0,8_4,8_0_0 -7026,2,43.0,0.0,1,111,1200.0,2000.0,0.0,90,90,0.0,0.0,1658.6090730911167,3200.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,2,,1,117091,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,322.651314388716,1200.0,29269.698067312227,1,4,0,1,107.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10932808369395827,16260.943370729015,4,2,4_0,4_0_0,4_4_0,4_1_0 -7027,2,67.0,0.0,2,111,1080.0,0.0,0.0,0,78,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113409,2,2,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,2,2,400.471266090872,1080.0,13419.347404923286,0,5,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08048081381392436,13419.347404923286,3,2,3_0,3_0_0,3_4_0,3_0_1 -7028,0,71.0,0.0,1,111,1850.0,0.0,0.0,0,74,0.0,0.0,2557.0223210154713,1850.0,0.0,0.0,60,2,2,2,2,2,2,2,1,0,,2,,1,112032,2,3,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,967.647128004892,1850.0,47930.42594710107,0,5,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.03859761234005666,47930.42594710107,10,5,10,10_0,10_4,10_1_0 -7029,2,53.0,0.0,1,111,400.0,850.0,0.0,0,38,0.0,0.0,552.8696910303722,1250.0,0.0,1541.6049657203316,60,0,0,0,0,0,0,0,0,3,25.0,2,,1,102474,1,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,863.095225110851,400.0,163566.6990405856,0,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00764214236352498,163566.6990405856,10,5,10,10_0,10_4,10_1_0 -7030,1,42.0,290.0,2,111,336.0,396.0,0.0,56,56,0.0,0.0,464.41054046551267,732.0,0.0,718.2065487355898,50,0,0,0,0,0,0,0,0,3,75.0,2,,2,111085,2,2,0,1,1,382.0,0.0,280.0,43,2.0,0.0,2.0,3.0,1.8,3,3,408.429391357781,336.0,14584.137098855785,1,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050191519391121875,8102.2983882532135,1,1,1_1,1_0_1,1_4_1,1_0_1 -7031,2,30.0,0.0,1,111,250.0,0.0,0.0,0,68,0.0,0.0,345.54355689398267,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,108617,2,2,0,0,2,,0.0,180.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1321.10309028357,250.0,7025.83779400829,0,1,2,3,5.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03558294502802252,7025.83779400829,1,1,1_0,1_0_0,1_4_0,1_1_0 -7032,2,42.0,0.0,1,111,0.0,0.0,756.0,0,54,0.0,0.0,386.25048113716895,756.0,0.0,864.2938056373894,30,0,0,0,0,0,0,0,0,1,15.0,2,,1,114258,1,1,0,0,2,,0.0,1345.0,32,1.0,0.0,3.0,2.0,1.5,3,3,1018.89488691601,0.0,53886.552907107085,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014029474130647005,35924.368604738054,9,5,9,9_0,9_4,9_1_0 -7033,2,86.0,0.0,2,111,243.0,1965.0,0.0,0,77,0.0,0.0,335.8683373009511,2208.0,0.0,3563.827950165237,60,0,0,0,0,0,0,0,0,0,,1,,2,104315,2,2,2,0,1,,115.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,359.079455463101,243.0,42473.08848540227,0,5,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05198585925200319,42473.08848540227,9,5,9,9_1,9_4,9_0_1 -7034,0,27.0,0.0,1,111,371.0,1567.0,0.0,0,37,0.0,0.0,512.7866384306702,1938.0,0.0,2841.9940956279524,43,2,2,2,2,1,2,2,2,0,,2,,1,124049,2,1,0,0,1,,0.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,889.452895625988,371.0,26893.150174830727,0,1,5,0,46.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.07206295980207526,17928.766783220486,4,2,4_0,4_0_0,4_4_0,4_1_0 -7035,2,27.0,0.0,1,111,200.0,0.0,0.0,0,64,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,1,104064,2,1,0,1,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,4,3,1039.02512893035,200.0,9271.2263351394,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021572119239713593,9271.2263351394,1,1,1_0,1_0_0,1_4_0,1_1_0 -7036,1,59.0,32.0,2,111,300.0,300.0,0.0,0,52,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,60,0,0,0,0,0,0,0,0,0,,2,,2,129091,2,1,0,1,1,270.0,0.0,287.0,22,2.0,4.0,3.0,2.0,1.5,1,1,293.690641533786,300.0,12654.862085578834,0,4,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04741260678642599,8436.574723719223,1,1,1_1,1_0_1,1_4_1,1_0_1 -7037,2,47.0,0.0,1,111,547.0,871.0,0.0,37,35,0.0,0.0,756.049302484034,1418.0,0.0,1579.691676638128,50,2,2,2,1,2,2,2,2,3,50.0,2,,1,113527,2,3,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,891.899173717387,547.0,77211.24003981525,4,1,1,2,96.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0183652017409484,36767.257161816786,9,5,9,9_0,9_4,9_1_0 -7038,2,26.0,0.0,1,111,324.0,0.0,0.0,0,38,0.0,0.0,447.8244497346015,324.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,70.0,2,,1,102571,2,2,0,0,1,,0.0,665.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.10309028357,324.0,28143.086332612736,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011512596599063932,28143.086332612736,8,4,8,8_0,8_4,8_1_0 -7039,2,41.0,0.0,1,111,276.0,360.0,0.0,0,37,0.0,0.0,381.48008681095683,636.0,0.0,652.9150443050816,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,112709,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,5,3,1058.03330771466,276.0,82561.58381759915,0,1,1,2,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007703340592461209,82561.58381759915,10,5,10,10_0,10_4,10_1_0 -7040,2,31.0,0.0,5,111,395.0,115.0,0.0,54,47,0.0,0.0,545.9588198924926,510.0,0.0,208.57008359745663,60,2,2,2,2,1,2,2,2,2,15.0,8,,3,132155,2,1,0,1,1,,0.0,371.0,43,2.0,0.0,3.0,3.0,1.8,1,1,405.160572140521,395.0,41867.133170995025,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.012181392929796326,23259.518428330568,6,3,6,6_0,6_4,6_0_0 -7041,1,77.0,280.0,5,111,1000.0,200.0,0.0,0,86,0.0,0.0,1382.1742275759307,1200.0,0.0,362.73058016948977,71,2,2,2,1,2,2,2,2,0,,1,,3,112878,1,3,3,0,2,,0.0,700.0,21,2.0,2.0,4.0,3.0,2.0,1,1,468.226458176647,1000.0,30866.729577983413,0,6,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,1,0.03887681061151145,15433.364788991707,3,2,3_1,3_1_1,3_4_1,3_0_0 -7042,2,58.0,0.0,2,111,407.0,97.0,0.0,0,54,0.0,0.0,562.5449106234038,504.0,0.0,175.92433138220255,71,2,2,2,2,1,2,2,2,2,15.0,8,,2,110268,2,1,0,1,1,773.0,0.0,433.0,32,1.0,3.0,4.0,2.0,1.5,2,2,302.150171467242,407.0,32607.520862063946,0,1,2,3,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.015456556851777124,21738.347241375963,6,3,6,6_0,6_4,6_0_1 -7043,2,66.0,0.0,2,111,300.0,0.0,0.0,0,43,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,2,1,2,2,1,2,2,2,3,10.0,2,,2,104930,1,3,0,1,2,894.0,0.0,997.0,22,1.0,1.0,2.0,2.0,1.5,1,1,1061.19774056556,300.0,94279.50180759338,0,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0031820278453766463,62853.00120506225,10,5,10,10_0,10_4,10_0_1 -7044,2,34.0,0.0,1,111,285.0,1200.0,0.0,46,34,0.0,33.12552015422265,393.9196548591402,1517.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,3,20.0,2,,1,125646,2,3,0,0,2,,0.0,1500.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1164.84870089771,285.0,24690.35683443809,4,1,3,4,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06144099132192733,16460.237889625394,4,2,4_0,4_0_0,4_4_0,4_1_0 -7045,2,33.0,0.0,2,111,150.0,0.0,0.0,0,63,0.0,0.0,207.32613413638958,150.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,8,,2,115011,2,1,0,1,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,448.777765322518,150.0,15218.031496387652,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009856728186927852,15218.031496387652,3,2,3_0,3_0_0,3_4_0,3_0_1 -7047,2,25.0,0.0,1,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,573.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,1,121362,1,2,0,0,1,,0.0,700.0,42,1.0,0.0,2.0,2.0,1.5,4,3,1275.93148183625,0.0,34806.67426626994,3,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016462359937538657,23204.449510846625,6,3,6,6_0,6_4,6_1_0 -7048,2,57.0,0.0,2,111,250.0,60.0,0.0,0,77,0.0,0.0,345.54355689398267,310.0,0.0,108.81917405084694,50,2,2,2,2,1,2,2,2,0,,2,,2,102506,1,1,0,1,1,700.0,0.0,317.0,11,0.0,3.0,4.0,1.0,1.0,2,2,349.326107514772,250.0,10161.477321319486,0,7,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.030507375079172637,10161.477321319486,2,1,2_0,2_0_0,2_4_0,2_0_1 -7049,2,65.0,0.0,1,111,1410.0,0.0,0.0,74,74,0.0,0.0,1948.865660882062,1410.0,0.0,0.0,44,2,2,2,2,2,2,2,1,0,,2,,1,131508,1,3,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,228.678693693876,1410.0,24044.914136301337,5,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.05864025930836161,16029.942757534225,4,2,4_0,4_0_0,4_4_0,4_1_0 -7050,2,69.0,0.0,1,111,337.0,950.0,0.0,0,74,0.0,51.75862524097289,465.7927146930886,1337.0,0.0,1722.9702558050765,50,2,2,2,2,2,2,1,2,0,,2,,1,125453,2,3,0,0,1,,0.0,,11,0.0,0.0,6.0,1.0,1.0,3,3,297.381205364134,337.0,61008.28495127151,0,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.021915056308629027,61008.28495127151,10,5,10,10_0,10_4,10_1_0 -7051,2,62.0,0.0,1,111,417.0,748.0,0.0,72,35,0.0,0.0,576.366652899163,1165.0,0.0,1356.6123698338918,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,124599,1,2,0,0,2,,0.0,,42,1.0,2.0,5.0,3.0,2.0,2,2,246.38957142757,417.0,101339.61855811407,5,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01149599748426052,50669.80927905704,10,5,10,10_0,10_4,10_1_0 -7052,2,33.0,0.0,2,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,149.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106884,1,2,0,1,1,347.0,0.0,275.0,12,1.0,0.0,2.0,1.0,1.0,2,2,356.329244338967,0.0,17708.9585191161,0,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008413820600413095,17708.9585191161,4,2,4_0,4_0_0,4_4_0,4_0_1 -7054,2,62.0,0.0,5,111,530.0,0.0,0.0,0,54,0.0,0.0,732.5523406152432,530.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,75.0,2,,3,125337,1,3,0,1,2,960.0,0.0,530.0,32,2.0,1.0,4.0,3.0,2.0,2,2,427.909900575856,530.0,24978.384207663486,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02121834605448152,12489.192103831743,2,1,2_0,2_0_0,2_4_0,2_0_0 -7055,2,45.0,0.0,1,111,390.0,0.0,0.0,0,68,0.0,0.0,539.0479487546129,390.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,40.0,2,,1,133157,2,3,0,0,2,,0.0,346.0,12,1.0,1.0,1.0,1.0,1.0,1,1,403.917582263637,390.0,5686.412397688423,0,1,2,3,16.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06858454377289598,5686.412397688423,1,1,1_0,1_0_0,1_4_0,1_1_0 -7056,2,41.0,0.0,5,111,600.0,400.0,0.0,0,52,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,3,40.0,2,,3,127522,2,1,0,1,2,,0.0,440.0,32,1.0,0.0,3.0,2.0,1.5,3,2,411.128358589294,600.0,20104.35472199813,0,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049740467367788865,13402.903147998753,3,2,3_0,3_0_0,3_4_0,3_0_0 -7057,2,75.0,0.0,5,111,324.0,480.0,0.0,0,77,0.0,0.0,447.8244497346015,804.0,0.0,870.5533924067755,70,0,0,0,0,0,0,0,0,0,,2,,3,103213,2,2,0,0,2,,0.0,214.0,11,0.0,0.0,1.0,1.0,1.0,2,2,479.901425993449,324.0,14560.197523824629,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05521903110754006,14560.197523824629,3,2,3_0,3_0_0,3_4_0,3_0_0 -7058,2,50.0,0.0,5,111,720.0,930.0,0.0,0,53,0.0,0.0,995.16544385467,1650.0,0.0,1686.6971977881274,70,0,0,0,0,0,0,0,0,3,20.0,2,,3,121704,2,1,0,1,1,,0.0,500.0,12,1.0,0.0,3.0,1.0,1.0,2,2,531.998087213729,720.0,19311.255751423752,0,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08544239801072238,19311.255751423752,5,3,5,5_0,5_4,5_0_0 -7059,2,23.0,0.0,1,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,1207.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,114418,2,2,0,0,1,,0.0,900.0,43,2.0,0.0,2.0,2.0,1.5,2,2,287.551088489209,0.0,13037.675264574178,1,1,3,4,26.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09257785421912192,8691.783509716119,1,1,1_0,1_0_0,1_4_0,1_1_0 -7060,2,35.0,0.0,1,111,650.0,1100.0,0.0,0,37,0.0,0.0,898.4132479243549,1750.0,0.0,1995.0181909321939,42,0,0,0,0,0,0,0,0,3,20.0,2,,1,102361,2,1,0,0,1,,0.0,890.0,22,1.0,1.0,2.0,2.0,1.5,2,2,1115.81004864982,650.0,32706.736626675287,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.053505796679596505,21804.49108445019,6,3,6,6_0,6_4,6_1_0 -7061,2,49.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,364.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,109679,2,2,0,0,1,,0.0,500.0,22,2.0,1.0,1.0,2.0,1.5,2,2,1320.12459512406,0.0,21953.57051868207,0,1,3,4,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016580446433086725,14635.71367912138,3,2,3_0,3_0_0,3_4_0,3_0_1 -7062,2,78.0,0.0,1,111,1200.0,0.0,0.0,0,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,122841,2,1,0,0,1,,0.0,753.0,11,0.0,2.0,2.0,1.0,1.0,4,4,1436.9548770506,1200.0,48087.79719611176,0,5,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024954355781907776,48087.79719611176,10,5,10,10_0,10_4,10_1_0 -7063,1,40.0,302.0,2,111,340.0,600.0,0.0,0,56,0.0,0.0,469.9392373758164,940.0,0.0,1088.1917405084694,50,2,2,2,2,1,2,2,2,0,,2,,2,101206,2,3,0,0,1,,0.0,264.0,32,1.0,0.0,2.0,3.0,1.8,1,1,1494.79460850272,340.0,11443.002713122196,0,4,3,4,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.08214627083169879,6357.2237295123305,1,1,1_1,1_0_1,1_4_1,1_0_1 -7064,2,37.0,0.0,7,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,436.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,2005.0,5,120552,2,1,0,1,1,,362.0,400.0,42,1.0,0.0,3.0,4.0,2.1,2,2,352.969974829462,0.0,22563.39376180364,7,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01932333427332554,10744.473219906495,2,1,2_0,2_0_0,2_4_0,2_0_0 -7065,2,28.0,0.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,245.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,129721,1,3,0,1,2,,0.0,680.0,12,1.0,0.0,2.0,1.0,1.0,2,2,409.174574894021,0.0,5669.474111666389,0,1,2,3,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043213884599252336,5669.474111666389,1,1,1_0,1_0_0,1_4_0,1_1_0 -7066,2,83.0,0.0,2,111,500.0,0.0,0.0,74,74,0.0,0.0,691.0871137879653,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,133110,1,2,0,1,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1072.82840288564,500.0,104339.49152688596,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0047920494213944025,69559.66101792398,10,5,10,10_0,10_4,10_0_1 -7067,2,64.0,0.0,1,111,1020.0,1500.0,0.0,74,31,0.0,0.0,1409.817712127449,2520.0,0.0,2720.4793512711735,42,0,0,0,0,0,0,0,0,1,1.0,2,,1,112633,2,1,0,0,2,,0.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,910.778301788739,1020.0,131209.70038894645,5,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019205897068051633,87473.13359263097,10,5,10,10_0,10_4,10_1_0 -7068,2,76.0,0.0,2,111,480.0,0.0,0.0,0,77,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102544,2,1,0,1,1,,0.0,190.0,11,0.0,0.0,3.0,1.0,1.0,1,1,330.754594352314,480.0,18424.923763469582,0,5,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026051668173068827,18424.923763469582,4,2,4_0,4_0_0,4_4_0,4_0_1 -7069,2,72.0,0.0,1,111,364.0,65.0,0.0,75,77,0.0,0.0,503.1114188376387,429.0,0.0,117.88743855508417,70,0,0,0,0,0,0,0,0,0,,2,,1,132728,2,1,0,1,1,,0.0,400.0,41,0.0,0.0,3.0,2.0,1.5,2,2,398.488281203665,364.0,24500.422303979027,5,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01750990226524902,16333.614869319352,4,2,4_0,4_0_0,4_4_0,4_1_0 -7070,2,55.0,0.0,7,111,380.0,0.0,0.0,85,81,0.0,0.0,525.2262064788536,380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,130450,2,1,0,1,1,,0.0,350.0,42,1.0,0.0,3.0,2.0,1.5,4,2,371.766381925633,380.0,7883.154611289552,6,4,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04820405265879193,5255.436407526368,1,1,1_0,1_0_0,1_4_0,1_0_0 -7071,2,63.0,0.0,1,111,420.0,350.0,0.0,77,45,0.0,0.0,580.5131755818909,770.0,0.0,634.7785152966071,70,0,0,0,0,0,0,0,0,3,30.0,2,,1,121289,2,1,0,1,1,,360.0,549.0,42,1.0,0.0,4.0,2.0,1.5,1,1,310.181053785251,420.0,58400.14494745131,5,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01318489878223503,38933.42996496754,9,5,9,9_0,9_4,9_1_0 -7072,2,40.0,0.0,2,111,605.0,96.0,0.0,62,37,0.0,0.0,836.215407683438,701.0,0.0,174.11067848135508,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,129596,2,2,0,1,1,516.0,0.0,405.0,43,2.0,0.0,4.0,4.0,2.3,2,2,294.498384119781,605.0,53330.86624584791,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013144358030272509,23187.333150368657,6,3,6,6_0,6_4,6_0_1 -7073,2,46.0,0.0,2,111,950.0,0.0,0.0,85,67,0.0,0.0,1313.065516197134,950.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,106697,2,1,0,1,1,,0.0,480.0,42,1.0,0.0,3.0,4.0,2.1,2,2,278.841722623984,950.0,19172.46121883631,6,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04955023714256657,9129.7434375411,1,1,1_0,1_0_0,1_4_0,1_0_1 -7074,1,79.0,67.0,2,111,186.0,300.0,0.0,0,77,0.0,0.0,257.0844063291231,486.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,120381,2,1,0,1,1,,0.0,326.0,11,0.0,0.0,4.0,1.0,1.0,1,1,349.326107514772,186.0,20420.711263864523,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02379936691333575,20420.711263864523,5,3,5,5_0,5_4,5_0_1 -7075,2,37.0,0.0,7,111,1200.0,0.0,0.0,31,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,128262,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,714.816623427617,1200.0,85672.37559063027,1,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014006848668863578,47595.76421701682,10,5,10,10_0,10_4,10_0_0 -7076,2,35.0,0.0,2,111,1080.0,1200.0,0.0,0,85,0.0,0.0,1492.748165782005,2280.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,2,,2,126828,2,1,0,1,1,,0.0,450.0,31,0.0,0.0,3.0,2.0,1.3,5,4,293.690641533786,1080.0,11369.149616486444,0,7,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.20054270344844122,8745.499704989572,1,1,1_0,1_0_0,1_4_0,1_0_1 -7077,2,83.0,0.0,2,111,500.0,0.0,0.0,75,74,0.0,0.0,691.0871137879653,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,117918,2,2,0,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,4,4,275.415622023511,500.0,56588.61281448314,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008835699889643368,37725.74187632209,9,5,9,9_0,9_4,9_0_1 -7078,2,44.0,0.0,6,111,1890.0,0.0,0.0,0,42,0.0,0.0,2612.3092901185087,1890.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,,4,104929,1,3,0,0,1,,0.0,509.0,32,1.0,0.0,4.0,3.0,1.6,1,1,721.900398444966,1890.0,44162.903236651175,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04279609947453528,27601.81452290698,7,4,7,7_0,7_4,7_0_0 -7079,2,83.0,0.0,2,111,260.0,130.0,0.0,77,78,0.0,0.0,359.36529916974195,390.0,0.0,235.77487711016835,70,0,0,0,0,0,0,0,0,0,,2,,2,124492,2,1,0,1,1,725.0,0.0,305.0,41,0.0,0.0,3.0,3.0,2.0,1,1,289.427537337591,260.0,40488.45231999233,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009632376088809558,20244.226159996164,5,3,5,5_0,5_4,5_0_1 -7082,2,47.0,0.0,2,111,360.0,0.0,0.0,37,38,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,121061,1,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.3,1,1,941.053234772822,360.0,89418.25771421473,1,1,0,1,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004026023422985697,38877.50335400641,9,5,9,9_0,9_4,9_0_1 -7083,2,56.0,0.0,2,111,260.0,0.0,0.0,0,37,0.0,0.0,359.36529916974195,260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,2,,2,113917,2,1,0,1,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,4,3,731.776755063349,260.0,51869.37554231612,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005012591674404997,51869.37554231612,10,5,10,10_0,10_4,10_0_1 -7084,2,60.0,0.0,1,111,1713.0,0.0,0.0,0,21,0.0,0.0,2367.6644518375692,1713.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,1,,1,113640,1,1,3,0,2,,0.0,,22,1.0,0.0,3.0,2.0,1.5,4,3,1045.89902450806,1713.0,4626.097724879991,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.3702904914410208,3084.065149919994,1,1,1_0,1_1_0,1_4_0,1_1_0 -7085,2,48.0,0.0,1,111,0.0,0.0,0.0,31,37,0.0,0.0,0.0,1418.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,45.0,2,,1,123815,1,1,0,0,1,,0.0,,43,2.0,2.0,3.0,4.0,2.1,2,2,844.482399282406,0.0,70743.0,1,1,0,1,78.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02004438601699108,33687.142857142855,9,5,9,9_0,9_4,9_1_0 -7086,2,55.0,0.0,9,111,1210.0,0.0,0.0,56,56,0.0,0.0,1672.430815366876,1210.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,126637,2,1,0,0,1,,500.0,915.0,43,2.0,1.0,3.0,2.0,1.5,1,1,441.290867299124,1210.0,29083.928766822275,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04160373275911462,19389.285844548183,5,3,5,5_0,5_4,5_0_0 -7088,1,38.0,290.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,955.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,123567,2,2,0,0,1,,0.0,700.0,32,1.0,0.0,2.0,2.0,1.5,1,1,505.658264324536,0.0,14952.592415728646,0,4,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06386852349398854,9968.394943819098,2,1,2_1,2_0_1,2_4_1,2_0_1 -7089,2,76.0,0.0,5,111,390.0,1250.0,0.0,0,75,0.0,0.0,539.0479487546129,1640.0,0.0,2267.066126059311,71,0,0,0,0,0,0,0,0,0,,2,,3,132660,2,1,0,0,1,,208.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,348.656803183695,390.0,27314.40561314481,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06004157744552072,27314.40561314481,7,4,7,7_0,7_4,7_0_0 -7090,2,51.0,0.0,1,111,900.0,0.0,0.0,35,22,5376.905557264802,0.0,1243.9568048183376,4500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,119989,2,1,0,1,2,,0.0,2017.0,43,2.0,0.0,6.0,4.0,2.3,2,2,234.296953969433,900.0,94001.78950580672,1,4,2,3,115.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04787142908297532,40870.34326339423,9,5,9,9_0,9_4,9_1_0 -7091,2,48.0,0.0,5,111,441.0,155.0,0.0,55,90,0.0,0.0,609.5388343609853,596.0,0.0,281.11619963135456,50,2,2,2,2,1,2,2,2,3,30.0,2,,3,112804,1,3,0,1,1,512.0,0.0,495.0,43,2.0,0.0,3.0,4.0,2.3,3,2,292.473802121422,441.0,31918.043240192757,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01867282387942528,13877.410104431634,3,2,3_0,3_0_0,3_4_0,3_0_0 -7092,2,72.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,105939,2,1,0,1,1,727.0,0.0,700.0,11,0.0,4.0,1.0,1.0,1.0,2,2,521.990355290602,0.0,9186.111467623545,0,5,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06531599383642364,9186.111467623545,1,1,1_0,1_0_0,1_4_0,1_0_0 -7093,2,61.0,0.0,1,111,282.0,0.0,0.0,0,35,896.1509262108004,0.0,389.77313217641245,882.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,121929,2,2,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,4,3,281.847336184144,282.0,26323.21405546271,0,5,0,1,37.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03350654666035979,26323.21405546271,7,4,7,7_0,7_4,7_1_0 -7094,2,50.0,0.0,1,111,550.0,0.0,0.0,0,37,0.0,0.0,760.1958251667618,708.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,107659,2,1,0,1,1,,0.0,775.0,12,1.0,0.0,2.0,1.0,1.0,3,3,440.286784485419,550.0,30984.156123962097,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02285038834581836,30984.156123962097,8,4,8,8_0,8_4,8_1_0 -7095,0,35.0,0.0,1,111,660.0,1100.0,0.0,56,53,0.0,0.0,912.2349902001142,1760.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,2,,1,129327,2,2,0,0,1,800.0,0.0,,43,2.0,1.0,3.0,4.0,2.1,3,2,703.549702498202,660.0,61998.233800598246,1,1,5,0,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02838790546292977,29522.968476475355,8,4,8,8_0,8_4,8_1_0 -7096,2,50.0,0.0,8,111,0.0,0.0,1905.0,68,56,0.0,0.0,973.2899028654851,1905.0,0.0,2177.883200713263,50,0,0,0,0,0,0,0,0,3,45.0,2,2001.0,6,121221,2,1,0,0,1,,0.0,,43,4.0,0.0,4.0,4.0,2.5,2,2,459.188437094671,0.0,23837.316741350372,4,1,1,2,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07991671297027379,9534.92669654015,1,1,1_0,1_0_0,1_4_0,1_0_0 -7097,2,35.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,218.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,133559,2,1,0,1,1,229.0,0.0,439.0,12,1.0,1.0,1.0,1.0,1.0,2,2,372.885205111555,0.0,19850.08321918354,0,1,2,3,21.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010982321715876747,19850.08321918354,5,3,5,5_0,5_4,5_0_1 -7099,1,51.0,160.0,1,111,120.0,0.0,0.0,0,85,0.0,0.0,165.86090730911167,120.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,115750,2,1,0,1,1,,0.0,200.0,11,0.0,0.0,1.0,1.0,1.0,1,1,928.85520917121,120.0,10830.258063813622,0,7,2,3,16.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.011080068387377354,10830.258063813622,2,1,2_1,2_0_1,2_4_1,2_1_0 -7100,1,31.0,32.0,2,111,0.0,0.0,438.0,85,63,0.0,0.0,223.78004065883596,438.0,0.0,500.7416492978526,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,102734,2,3,0,1,1,182.0,0.0,660.0,42,1.0,0.0,1.0,3.0,1.8,3,3,335.790251010544,0.0,31769.405348424603,6,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013786849177575802,17649.669638013667,4,2,4_1,4_0_1,4_4_1,4_0_1 -7101,2,59.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,619.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,1,117092,1,3,0,0,1,,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,3,3,428.441973601149,0.0,15480.0854316141,0,1,2,3,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03998685942235509,15480.0854316141,3,2,3_0,3_0_0,3_4_0,3_1_0 -7102,2,57.0,0.0,1,111,180.0,325.0,0.0,0,54,0.0,0.0,248.7913609636675,505.0,0.0,589.4371927754208,50,0,0,0,0,0,0,0,0,3,1.0,2,,1,108895,2,1,0,1,1,48.0,0.0,314.0,12,1.0,0.0,2.0,1.0,1.0,1,1,331.103904245373,180.0,23598.014457275833,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021400105543383816,23598.014457275833,6,3,6,6_0,6_4,6_1_0 -7103,1,52.0,547.0,1,111,300.0,1400.0,0.0,67,67,0.0,0.0,414.65226827277917,1700.0,0.0,2539.1140611864284,42,1,2,2,1,2,2,2,2,0,,2,,1,108473,2,3,0,0,1,,0.0,718.0,43,3.0,0.0,2.0,6.0,3.3,1,1,397.407411540943,300.0,14623.069757655885,4,4,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.11625465980629462,4431.233259895723,1,1,1_1,1_0_1,1_4_1,1_1_0 -7104,2,43.0,0.0,1,111,816.0,0.0,0.0,85,68,0.0,0.0,1127.8541697019593,1176.0,619.317721508469,0.0,10,2,2,2,1,2,2,2,2,0,,2,,1,108044,1,1,0,0,1,,0.0,555.0,42,1.0,0.0,2.0,7.0,3.3999999999999995,2,2,421.546752594052,816.0,35417.924472550025,6,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.033203526675071995,10417.036609573539,2,1,2_0,2_0_0,2_4_0,2_1_0 -7105,2,44.0,0.0,1,111,333.0,694.0,0.0,0,34,0.0,0.0,460.2640177827849,1027.0,0.0,1258.6751131881294,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,102294,2,1,0,0,1,,0.0,321.0,32,1.0,0.0,2.0,2.0,1.3,1,1,718.194855632631,333.0,35560.642185090066,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02888024335034654,27354.340142376972,7,4,7,7_0,7_4,7_1_0 -7106,2,54.0,0.0,2,111,800.0,280.0,0.0,0,46,0.0,0.0,1105.7393820607444,1080.0,0.0,507.8228122372857,44,0,0,0,0,0,0,0,0,2,30.0,2,,2,121732,1,1,0,1,1,650.0,0.0,280.0,32,1.0,0.0,3.0,2.0,1.5,1,1,1060.43510099901,800.0,53836.43768014694,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020060762683008417,35890.958453431296,9,5,9,9_0,9_4,9_0_1 -7107,2,62.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,431.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,128817,1,2,0,1,1,916.0,0.0,324.0,21,0.0,4.0,3.0,2.0,1.5,1,1,276.436720664843,0.0,9833.723544784367,0,5,2,3,52.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04382876923854492,6555.815696522911,1,1,1_0,1_0_0,1_4_0,1_1_0 -7108,1,27.0,60.0,8,111,256.0,0.0,0.0,0,56,0.0,0.0,353.8366022594382,256.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,1999.0,6,111783,2,1,0,1,1,412.0,0.0,408.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1084.59225016296,256.0,18992.78503478271,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013478802583779615,18992.78503478271,5,3,5,5_0,5_4,5_0_0 -7109,2,58.0,0.0,1,111,480.0,980.0,0.0,0,52,0.0,0.0,663.4436292364467,1460.0,0.0,1777.3798428305,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,125631,2,1,0,0,1,,360.0,351.0,12,1.0,2.0,4.0,1.0,1.0,1,1,858.87236967421,480.0,23333.019245607953,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06257227085066672,23333.019245607953,6,3,6,6_0,6_4,6_1_0 -7110,2,52.0,0.0,2,111,103.0,53.0,0.0,0,54,0.0,0.0,142.36394544032083,156.0,0.0,96.12360374491479,10,0,0,0,0,0,0,0,0,0,,2,,2,132135,2,1,0,1,1,817.0,0.0,431.0,22,1.0,1.0,4.0,3.0,2.0,1,1,229.037658913298,103.0,22236.42594562706,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007015515909861335,11118.21297281353,2,1,2_0,2_0_0,2_4_0,2_0_1 -7111,2,62.0,0.0,1,111,525.0,680.0,0.0,0,43,0.0,0.0,725.6414694773636,1205.0,0.0,1233.2839725762653,50,0,0,0,0,0,0,0,0,3,50.0,2,,1,115379,2,1,0,0,1,,0.0,500.0,22,3.0,1.0,4.0,4.0,2.5,2,2,724.069915167979,525.0,77345.62671650814,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015579419951132321,30938.250686603256,8,4,8,8_0,8_4,8_1_0 -7112,2,33.0,0.0,6,111,530.0,0.0,0.0,43,56,0.0,0.0,732.5523406152432,530.0,0.0,0.0,60,2,2,1,1,2,2,2,2,0,,2,,4,106543,1,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,857.688141874945,530.0,152131.74365539345,1,1,1,2,103.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0034838225558010303,72443.68745494926,10,5,10,10_0,10_4,10_0_0 -7113,1,33.0,299.0,7,111,740.0,515.0,0.0,0,65,0.0,0.0,1022.8089284061887,1255.0,0.0,934.0312439364362,31,0,0,0,0,0,0,0,0,0,,2,2005.0,5,117927,2,1,0,0,1,,0.0,288.0,12,1.0,0.0,1.0,1.0,1.0,1,1,425.775104898741,740.0,6114.6760672237415,0,4,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.20524390600626047,6114.6760672237415,1,1,1_1,1_0_1,1_4_1,1_0_0 -7114,2,37.0,0.0,1,111,600.0,0.0,0.0,37,37,0.0,0.0,829.3045365455583,600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,40.0,2,,1,104314,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,623.366526776459,600.0,143878.36100457262,1,1,0,1,62.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0041701892891380056,68513.50524027267,10,5,10,10_0,10_4,10_1_0 -7116,2,34.0,0.0,2,111,0.0,0.0,0.0,67,67,0.0,0.0,0.0,411.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101860,1,3,0,1,1,1620.0,0.0,603.0,43,2.0,0.0,5.0,4.0,2.1,1,1,214.947491736867,0.0,43353.17627240875,1,1,2,3,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009480274234521833,20644.369653527978,5,3,5,5_0,5_4,5_0_1 -7118,2,59.0,0.0,5,111,532.0,260.0,0.0,85,21,0.0,0.0,735.3166890703951,792.0,0.0,471.5497542203367,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,123999,2,1,0,1,1,,0.0,,42,4.0,0.0,4.0,6.0,3.5,2,2,443.926456694646,532.0,8875.659720826177,6,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08923280352238176,2535.902777378908,1,1,1_0,1_0_0,1_4_0,1_0_0 -7119,2,42.0,0.0,7,111,900.0,0.0,0.0,37,38,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,,5,122878,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,957.558912916505,900.0,188034.5134730737,4,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004786355352411827,89540.24451098747,10,5,10,10_0,10_4,10_0_0 -7120,2,45.0,0.0,2,111,450.0,0.0,0.0,64,52,0.0,0.0,621.9784024091688,450.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,15.0,2,,2,119517,2,1,0,1,1,,0.0,595.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1061.19774056556,450.0,23805.86455331412,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018902905164070317,15870.57636887608,3,2,3_0,3_0_0,3_4_0,3_0_1 -7121,2,47.0,0.0,2,111,0.0,0.0,122.0,0,55,0.0,0.0,62.331426850178055,122.0,0.0,139.47598450762104,42,0,0,0,0,0,0,0,0,3,60.0,2,,2,100257,2,1,0,0,1,,0.0,,32,2.0,0.0,3.0,2.0,1.5,3,3,370.253512914218,0.0,17575.960734489625,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0069412990756515065,11717.307156326417,2,1,2_0,2_0_0,2_4_0,2_0_1 -7122,2,52.0,0.0,2,111,360.0,120.0,0.0,0,56,0.0,0.0,497.582721927335,480.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,113088,1,1,0,1,1,36.0,0.0,366.0,32,1.0,0.0,3.0,3.0,2.0,2,2,216.86114016562,360.0,12387.973208350844,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03874725848425533,6193.986604175422,1,1,1_0,1_0_0,1_4_0,1_0_1 -7123,2,31.0,0.0,1,111,400.0,0.0,0.0,56,47,0.0,0.0,552.8696910303722,400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,40.0,2,,1,115745,1,3,0,0,1,,0.0,800.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1173.06190372782,400.0,39781.984074868335,1,1,3,4,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01005480267769485,26521.32271657889,7,4,7,7_0,7_4,7_1_0 -7124,2,62.0,0.0,2,111,150.0,0.0,0.0,0,75,0.0,0.0,207.32613413638958,150.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,118512,2,1,0,1,1,873.0,0.0,335.0,11,0.0,2.0,2.0,1.0,1.0,4,2,247.826516806506,150.0,20669.802675588635,0,5,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007256963327335116,20669.802675588635,5,3,5,5_0,5_4,5_0_1 -7125,2,44.0,0.0,1,111,459.0,0.0,0.0,0,46,0.0,0.0,634.4179704573521,459.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,117182,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,294.737537541626,459.0,32756.40635519106,0,4,0,1,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014012526130701763,25197.235657839276,7,4,7,7_0,7_4,7_1_0 -7126,1,84.0,295.0,2,111,0.0,0.0,100.0,0,86,0.0,0.0,51.09133348375251,100.0,0.0,114.32457746526315,50,0,0,0,0,0,0,0,0,0,,2,,2,102785,2,1,0,1,1,1300.0,0.0,385.0,11,0.0,6.0,5.0,1.0,1.0,1,1,254.964966388283,0.0,9991.289461172153,0,6,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010008718132791266,9991.289461172153,2,1,2_1,2_0_1,2_4_1,2_0_1 -7127,2,42.0,0.0,2,111,300.0,300.0,0.0,85,38,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,121510,2,1,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,1,1,939.471397261511,300.0,46870.72552076071,7,1,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012801167324244613,31247.150347173807,8,4,8,8_0,8_4,8_0_1 -7128,2,47.0,0.0,2,111,0.0,0.0,936.0,67,52,0.0,0.0,478.21488140792343,936.0,0.0,1070.0780450748632,20,0,0,0,0,0,0,0,0,3,60.0,1,,2,131718,1,3,4,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,260.715023520955,0.0,45107.54626183483,1,1,1,2,116.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020750408248030615,19611.976635580362,5,3,5,5_1,5_4,5_0_1 -7129,2,64.0,0.0,2,111,133.0,802.0,0.0,0,78,0.0,0.0,183.82917226759878,935.0,0.0,1454.549626479654,71,1,2,2,2,1,2,2,2,0,,2,,2,111087,1,3,0,1,1,,0.0,0.0,11,0.0,2.0,3.0,1.0,1.0,1,1,247.826516806506,133.0,10735.662323976718,0,7,3,4,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,1,0,0.08709290324005423,10735.662323976718,2,1,2_0,2_0_0,2_4_0,2_0_1 -7130,1,52.0,300.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,533.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,12.0,2,,5,118490,2,1,0,0,1,,0.0,293.0,12,1.0,4.0,1.0,1.0,1.0,1,1,950.33347361239,0.0,8888.752918617116,0,1,2,3,29.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059963417239740587,8888.752918617116,1,1,1_1,1_0_1,1_4_1,1_0_0 -7131,2,23.0,0.0,2,111,900.0,980.0,0.0,0,54,0.0,0.0,1243.9568048183376,1880.0,0.0,1777.3798428305,50,0,0,0,0,0,0,0,0,0,,2,,2,107335,2,1,0,1,1,96.0,0.0,361.0,22,3.0,0.0,3.0,5.0,3.0,2,2,176.520194446533,900.0,17407.747204735584,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10799789185177086,5802.582401578528,1,1,1_0,1_0_0,1_4_0,1_0_1 -7132,2,55.0,0.0,7,111,1000.0,0.0,0.0,54,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,115655,2,2,0,0,1,,428.0,700.0,43,2.0,2.0,4.0,3.0,2.0,4,2,647.306105686774,1000.0,49641.95266763774,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020144251913199084,24820.97633381887,7,4,7,7_0,7_4,7_0_0 -7133,2,76.0,0.0,2,111,414.0,1354.0,0.0,77,74,0.0,0.0,572.2201302164352,1768.0,0.0,2455.6860277474457,71,0,0,0,0,0,0,0,0,0,,1,,2,103295,2,2,2,0,1,,504.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,281.897244493477,414.0,34241.02139372874,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051633973755345106,22827.34759581916,6,3,6,6_1,6_4,6_0_1 -7134,1,43.0,138.0,5,111,490.0,240.0,0.0,56,63,0.0,0.0,677.265371512206,730.0,0.0,435.27669620338776,71,2,1,2,2,1,2,2,2,0,,2,,3,130113,2,2,0,1,1,61.0,0.0,521.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,331.442024517571,490.0,41579.14777206439,1,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.017556877404073735,13412.62831356916,3,2,3_1,3_0_1,3_4_1,3_0_0 -7135,2,66.0,0.0,7,111,2100.0,0.0,0.0,0,43,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,128332,2,1,0,0,1,,450.0,1385.0,12,1.0,4.0,5.0,1.0,1.0,2,2,720.581847816712,2100.0,37353.19314903437,0,1,2,3,118.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05622009319581525,37353.19314903437,9,5,9,9_0,9_4,9_0_0 -7136,2,55.0,0.0,2,111,500.0,270.0,0.0,68,68,0.0,0.0,691.0871137879653,770.0,0.0,489.6862832288112,71,2,1,2,2,1,2,2,2,3,120.0,2,,2,109780,2,2,0,1,1,840.0,0.0,866.0,43,2.0,0.0,5.0,8.0,4.1,1,1,313.232161197428,500.0,37102.65235732168,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020753233288672193,9049.4274042248,1,1,1_0,1_0_0,1_4_0,1_0_1 -7137,2,69.0,0.0,2,111,630.0,100.0,0.0,77,78,0.0,0.0,870.7697633728362,730.0,0.0,181.36529008474488,50,2,1,2,1,1,2,2,2,0,,2,,2,121246,2,2,0,1,1,620.0,0.0,427.0,41,0.0,3.0,3.0,2.0,1.5,1,1,220.055382306973,630.0,33450.4727166018,5,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.021823308931526515,22300.3151444012,6,3,6,6_0,6_4,6_0_1 -7138,2,82.0,0.0,5,111,1000.0,0.0,0.0,74,74,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,119209,1,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,901.990033802749,1000.0,92758.58309053163,5,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010780673514859623,61839.05539368775,10,5,10,10_0,10_4,10_0_0 -7139,2,55.0,0.0,2,111,0.0,0.0,120.0,0,56,0.0,0.0,61.309600180503004,120.0,0.0,137.18949295831578,43,2,2,2,2,1,2,2,2,3,60.0,2,,2,116386,2,3,0,1,1,70.0,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,2,2,247.826516806506,0.0,19297.218495714405,0,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0062185127885995605,19297.218495714405,5,3,5,5_0,5_4,5_0_1 -7140,0,73.0,0.0,5,111,500.0,0.0,0.0,75,74,0.0,0.0,691.0871137879653,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,113410,2,2,0,1,2,,272.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,901.990033802749,500.0,65774.1376031563,5,5,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011858764377969894,43849.42506877086,10,5,10,10_0,10_4,10_0_0 -7141,2,54.0,0.0,5,111,360.0,0.0,0.0,0,37,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,40.0,2,,3,112457,2,1,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,987.381030735584,360.0,141286.2207389681,0,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002548019177787438,141286.2207389681,10,5,10,10_0,10_4,10_0_0 -7142,1,57.0,223.0,2,111,1000.0,360.0,0.0,85,64,0.0,0.0,1382.1742275759307,1360.0,0.0,652.9150443050816,31,2,2,2,1,2,1,2,2,3,60.0,2,,2,116216,1,3,0,1,2,740.0,0.0,489.0,42,1.0,0.0,4.0,5.0,2.8,2,2,312.89586377444,1000.0,14036.791964297243,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.0968882351080772,5013.139987249016,1,1,1_1,1_0_1,1_4_1,1_0_1 -7143,2,34.0,0.0,5,111,300.0,0.0,0.0,0,55,0.0,0.0,414.65226827277917,624.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,15.0,2,,3,122189,2,1,0,1,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1291.27424179319,300.0,16191.966057995072,0,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.038537630190491216,16191.966057995072,4,2,4_0,4_0_0,4_4_0,4_0_0 -7144,2,51.0,0.0,2,111,360.0,180.0,0.0,56,64,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,128953,2,1,0,1,1,51.0,0.0,427.0,43,2.0,1.0,3.0,4.0,2.1,1,1,208.929442064284,360.0,25610.819527120824,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021084838750597645,12195.628346248011,2,1,2_0,2_0_0,2_4_0,2_0_1 -7145,2,44.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,471.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119168,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1058.03330771466,0.0,143651.93440721132,0,4,0,1,54.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0032787584931843134,143651.93440721132,10,5,10,10_0,10_4,10_0_1 -7146,2,53.0,0.0,5,111,340.0,300.0,0.0,85,56,0.0,0.0,469.9392373758164,640.0,0.0,544.0958702542347,70,0,0,0,0,0,0,0,0,3,30.0,2,,3,118877,1,1,0,1,1,52.0,0.0,446.0,42,1.0,1.0,3.0,2.0,1.5,1,1,430.418154738296,340.0,15389.398267883069,7,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04158707110307549,10259.59884525538,2,1,2_0,2_0_0,2_4_0,2_0_0 -7147,2,49.0,0.0,2,111,0.0,0.0,702.0,0,52,0.0,0.0,358.66116105594256,702.0,0.0,802.5585338061472,42,2,1,2,2,2,1,2,2,3,45.0,2,,2,103137,1,1,0,1,1,,0.0,780.0,22,2.0,1.0,4.0,6.0,2.8999999999999995,2,2,236.766495859907,0.0,29090.85403063542,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024131295673228696,10031.32897608118,2,1,2_0,2_0_0,2_4_0,2_0_1 -7148,1,46.0,350.0,2,111,800.0,160.0,0.0,52,68,0.0,0.0,1105.7393820607444,960.0,0.0,290.18446413559184,50,2,2,2,1,1,2,2,2,2,25.0,2,,2,113100,1,2,0,1,2,740.0,0.0,497.0,43,3.0,2.0,4.0,5.0,2.5999999999999996,2,2,186.431612671949,800.0,47956.03437532681,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.020018335804970484,18444.62860589493,4,2,4_1,4_0_1,4_4_1,4_0_1 -7149,2,79.0,0.0,2,111,420.0,180.0,0.0,86,78,0.0,0.0,580.5131755818909,600.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,0,,2,,2,130744,2,1,0,1,1,990.0,0.0,332.0,41,0.0,4.0,4.0,2.0,1.5,2,2,232.411254300184,420.0,16720.111924368393,6,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03588492724893438,11146.741282912262,2,1,2_0,2_0_0,2_4_0,2_0_1 -7151,1,50.0,149.0,2,111,720.0,215.0,0.0,78,56,0.0,0.0,995.16544385467,935.0,0.0,389.9353736822015,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,129513,2,1,0,1,1,1320.0,0.0,386.0,42,2.0,2.0,5.0,6.0,3.3,1,1,308.909511015012,720.0,28529.883120994007,7,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.032772654414135,8645.419127573941,1,1,1_1,1_0_1,1_4_1,1_0_1 -7152,2,44.0,0.0,2,111,480.0,250.0,0.0,56,68,0.0,0.0,663.4436292364467,730.0,0.0,453.4132252118622,71,2,2,2,1,1,2,2,2,0,,2,,2,116251,1,2,0,1,1,1340.0,0.0,451.0,43,2.0,0.0,4.0,6.0,3.3,4,3,252.034726389184,480.0,31643.161887322603,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02306975524757734,9588.836935552305,1,1,1_0,1_0_0,1_4_0,1_0_1 -7153,2,35.0,0.0,1,111,40.0,0.0,0.0,0,54,0.0,0.0,55.28696910303722,40.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,113084,1,3,0,0,2,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1321.10309028357,40.0,25271.346187644027,0,1,3,4,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.001582820309729178,25271.346187644027,7,4,7,7_0,7_4,7_1_0 -7154,1,50.0,544.0,5,111,800.0,140.0,0.0,0,56,0.0,0.0,1105.7393820607444,940.0,0.0,253.91140611864284,71,0,0,0,0,0,0,0,0,0,,2,,3,118651,2,1,0,1,1,62.0,0.0,514.0,32,1.0,0.0,4.0,4.0,2.3,2,2,328.815489180858,800.0,16098.620010765959,0,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05839009799419917,6999.400004680852,1,1,1_1,1_0_1,1_4_1,1_0_0 -7155,2,61.0,0.0,1,111,350.0,100.0,0.0,74,46,0.0,0.0,483.76097965157567,450.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,1,106748,2,1,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,1,1,813.534687756096,350.0,46520.74319583748,5,1,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009673104277497107,31013.828797224985,8,4,8,8_0,8_4,8_1_0 -7156,2,69.0,0.0,2,111,600.0,1227.0,0.0,0,45,0.0,51.75862524097289,829.3045365455583,1877.0,0.0,2225.35210933982,70,0,0,0,0,0,0,0,0,0,,1,,2,120946,1,2,3,0,2,,400.0,,21,1.0,1.0,6.0,2.0,1.5,2,2,259.779221396245,600.0,45761.4799346413,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04101703010219118,30507.653289760867,8,4,8,8_1,8_4,8_0_1 -7158,1,44.0,399.0,2,111,550.0,280.0,0.0,85,23,0.0,0.0,760.1958251667618,830.0,0.0,507.8228122372857,70,2,2,1,2,1,2,2,2,2,15.0,2,,2,131220,2,2,0,1,1,336.0,0.0,444.0,42,1.0,0.0,3.0,5.0,2.4,2,2,187.903354940141,550.0,13525.393456277505,6,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0613660521361598,5635.580606782294,1,1,1_1,1_0_1,1_4_1,1_0_1 -7159,2,21.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,369.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,1,115920,2,1,0,0,1,,0.0,880.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1285.62868866082,0.0,59241.59186918595,0,1,3,4,32.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006228732016769665,59241.59186918595,10,5,10,10_0,10_4,10_1_0 -7160,1,26.0,260.0,2,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,829.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113071,1,2,0,1,2,,0.0,930.0,12,1.0,0.0,4.0,1.0,1.0,2,2,327.816174189374,0.0,38493.27862594969,0,1,3,4,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021536227351679562,38493.27862594969,9,5,9,9_0,9_4,9_0_1 -7161,2,64.0,0.0,6,111,976.0,0.0,0.0,0,38,0.0,0.0,1349.0020461141082,976.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,4,106485,2,1,0,0,1,,0.0,622.0,12,1.0,3.0,5.0,1.0,1.0,2,2,1379.20586122592,976.0,43175.310368818224,0,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02260551207768225,43175.310368818224,9,5,9,9_0,9_4,9_0_0 -7162,1,69.0,294.0,1,111,216.0,0.0,0.0,0,72,0.0,0.0,298.549633156401,216.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,1,113002,1,3,0,0,2,,0.0,381.0,11,0.0,3.0,1.0,1.0,1.0,2,2,428.441973601149,216.0,8266.872143187466,0,5,2,3,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.026128382810178152,8266.872143187466,1,1,1_1,1_0_1,1_4_1,1_1_0 -7164,2,62.0,0.0,1,111,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,118774,2,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,2,2,1059.19212642778,600.0,24290.688562355368,0,5,0,1,17.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024700823052412495,24290.688562355368,7,4,7,7_0,7_4,7_1_0 -7165,1,44.0,300.0,1,111,800.0,0.0,0.0,0,56,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,2,2,2,2,1,2,2,2,3,50.0,2,,1,101583,2,2,0,0,1,,0.0,860.0,32,1.0,0.0,2.0,2.0,1.3,2,2,1141.56271989634,800.0,10189.514134275618,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,0.0785120850177684,7838.087795596629,1,1,1_1,1_0_1,1_4_1,1_1_0 -7166,2,62.0,0.0,2,111,396.0,235.0,0.0,0,77,0.0,0.0,547.3409941200684,631.0,0.0,426.2084316991505,20,1,2,2,2,1,2,2,2,0,,2,,2,127120,1,3,0,1,2,662.0,0.0,346.0,11,0.0,2.0,3.0,1.0,1.0,1,1,263.807968811051,396.0,22056.93194602491,0,5,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.028607786501953576,22056.93194602491,6,3,6,6_0,6_4,6_0_1 -7167,2,62.0,0.0,1,111,449.0,1475.0,0.0,75,38,0.0,0.0,620.5962281815928,1924.0,0.0,2675.138028749987,60,0,0,0,0,0,0,0,0,2,30.0,2,,1,100745,2,1,0,0,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,831.719613994557,449.0,32056.868095826147,5,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06001833972828143,21371.24539721743,6,3,6,6_0,6_4,6_1_0 -7168,2,54.0,0.0,2,111,205.0,126.0,0.0,0,64,0.0,0.0,283.3457166530658,331.0,0.0,228.52026550677857,50,0,0,0,0,0,0,0,0,0,,2,,2,113244,2,1,0,1,1,721.0,0.0,355.0,11,0.0,2.0,4.0,1.0,1.0,3,3,281.980134566628,205.0,40825.40024351293,0,5,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008107697610450132,40825.40024351293,9,5,9,9_0,9_4,9_0_1 -7169,1,50.0,375.0,2,111,165.0,430.0,0.0,0,68,0.0,0.0,228.05874755002856,595.0,0.0,779.870747364403,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,115659,2,2,0,1,2,660.0,0.0,341.0,32,1.0,0.0,3.0,4.0,2.3,2,2,222.402559847293,165.0,13385.13504823151,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.044452297108396634,5819.623934013701,1,1,1_1,1_0_1,1_4_1,1_0_1 -7170,2,82.0,0.0,5,111,340.0,140.0,0.0,77,78,0.0,0.0,469.9392373758164,480.0,0.0,253.91140611864284,70,2,1,2,1,1,1,2,2,0,,2,,3,116651,1,2,0,1,1,689.0,0.0,333.0,41,0.0,2.0,3.0,2.0,1.5,1,1,327.913622522608,340.0,38984.86198822263,5,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.01231247144455734,25989.90799214842,7,4,7,7_0,7_4,7_0_0 -7171,2,69.0,0.0,1,111,554.0,2212.0,0.0,72,21,0.0,0.0,765.7245220770656,2766.0,0.0,4011.800216674557,42,2,2,2,2,1,2,2,2,1,10.0,2,,1,124578,2,2,0,0,1,,0.0,,41,1.0,1.0,5.0,3.0,2.0,3,2,1060.57096466632,554.0,16548.7959482534,6,5,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.16714206934746395,8274.3979741267,1,1,1_0,1_0_0,1_4_0,1_1_0 -7172,2,28.0,0.0,1,111,250.0,0.0,0.0,0,33,0.0,0.0,345.54355689398267,250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,25.0,2,,1,106108,2,3,0,0,1,,0.0,795.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1212.00878958137,250.0,56007.36546077367,0,1,3,4,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0044636986214803215,56007.36546077367,10,5,10,10_0,10_4,10_1_0 -7173,2,37.0,0.0,1,111,475.0,0.0,0.0,0,35,0.0,0.0,656.532758098567,475.0,0.0,0.0,10,2,2,2,1,2,2,2,2,3,45.0,2,,1,101134,2,2,0,0,1,,0.0,708.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1181.97729147428,475.0,28451.05994803211,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01669533581060324,28451.05994803211,8,4,8,8_0,8_4,8_1_0 -7174,1,33.0,219.0,1,111,1272.0,0.0,0.0,0,47,0.0,0.0,1758.1256174765836,1272.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,1,118983,2,1,0,1,1,,0.0,611.0,22,1.0,1.0,3.0,3.0,2.0,2,2,648.966684167765,1272.0,19036.334940986424,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.066819584964399,9518.167470493212,1,1,1_1,1_0_1,1_4_1,1_1_0 -7175,2,44.0,0.0,6,111,740.0,0.0,0.0,0,45,0.0,0.0,1022.8089284061887,740.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,8,,4,129663,2,2,0,0,1,,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1481.7593163238,740.0,26070.465621527343,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028384610031243738,26070.465621527343,7,4,7,7_0,7_4,7_0_0 -7176,2,41.0,0.0,1,111,360.0,0.0,0.0,0,37,0.0,0.0,497.582721927335,1115.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,113412,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,3,3,865.668956898534,360.0,66042.07847835633,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016883175479787692,41276.2990489727,9,5,9,9_0,9_4,9_1_0 -7177,2,64.0,0.0,2,111,139.0,311.0,0.0,77,78,0.0,0.0,192.12221763305433,450.0,0.0,564.0460521635566,20,0,0,0,0,0,0,0,0,0,,2,,2,113815,1,1,0,1,1,768.0,0.0,318.0,41,0.0,4.0,3.0,2.0,1.5,2,2,247.398630767306,139.0,26446.053077738885,5,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01701577164188595,17630.702051825923,4,2,4_0,4_0_0,4_4_0,4_0_1 -7178,2,39.0,0.0,2,111,600.0,0.0,0.0,0,33,0.0,0.0,829.3045365455583,600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,20.0,2,,2,103020,2,2,0,0,1,,0.0,800.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1611.69956520927,600.0,36207.24997270976,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01657126681679039,36207.24997270976,9,5,9,9_0,9_4,9_0_1 -7179,2,44.0,0.0,2,111,876.0,0.0,0.0,0,45,0.0,0.0,1210.784623356515,876.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,117707,2,2,0,0,1,,0.0,,32,1.0,0.0,2.0,2.0,1.5,4,3,1431.0944952796,876.0,28537.031340336664,0,1,0,1,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030696956160320265,19024.687560224444,5,3,5,5_0,5_4,5_0_1 -7180,2,57.0,0.0,1,111,400.0,350.0,0.0,0,38,0.0,0.0,552.8696910303722,750.0,0.0,634.7785152966071,50,0,0,0,0,0,0,0,0,3,25.0,2,,1,105094,2,3,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1406.94674550144,400.0,46564.06793380731,0,1,1,2,33.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016106840172687556,46564.06793380731,10,5,10,10_0,10_4,10_1_0 -7181,2,31.0,0.0,1,111,1200.0,0.0,0.0,21,35,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,42,2,2,2,1,2,2,2,2,3,40.0,2,,1,132807,2,2,0,0,1,,0.0,650.0,43,2.0,0.0,1.0,2.0,1.5,1,1,1049.52637072574,1200.0,42916.47531461911,1,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.027961289719224236,28610.983543079405,8,4,8,8_0,8_4,8_1_0 -7182,1,38.0,101.0,1,111,500.0,900.0,0.0,85,63,0.0,0.0,691.0871137879653,1400.0,0.0,1632.287610762704,42,2,2,2,2,2,1,2,2,3,90.0,2,,1,104842,1,1,0,0,2,,0.0,273.0,42,1.0,0.0,2.0,5.0,2.4,1,1,252.327348743962,500.0,36639.962381962,6,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.03820964621648262,15266.650992484168,3,2,3_1,3_0_1,3_4_1,3_1_0 -7183,1,70.0,48.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,92.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,111545,2,2,0,1,1,,0.0,525.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1181.97729147428,0.0,14790.815918511506,0,5,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.006220076059824193,14790.815918511506,3,2,3_1,3_0_1,3_4_1,3_0_0 -7184,2,24.0,0.0,2,111,500.0,500.0,0.0,64,46,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,71,1,2,2,1,1,2,2,2,3,60.0,2,,2,100566,1,2,0,1,1,443.0,0.0,270.0,43,2.0,0.0,2.0,3.0,1.8,2,2,243.807484193997,500.0,30534.036559065407,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03275033741659371,16963.353643925228,4,2,4_0,4_0_0,4_4_0,4_0_1 -7185,1,73.0,108.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,235.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,108000,2,2,0,1,1,,0.0,,11,0.0,1.0,1.0,1.0,1.0,3,2,1181.97729147428,0.0,9885.017063435309,0,5,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023773352993923025,9885.017063435309,2,1,2_1,2_0_1,2_4_1,2_0_0 -7186,2,29.0,0.0,1,111,550.0,800.0,0.0,46,46,0.0,0.0,760.1958251667618,1350.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,1,103833,1,3,0,0,1,,0.0,850.0,43,2.0,0.0,2.0,3.0,1.8,2,2,994.058112715998,550.0,53724.79180666246,1,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0251280638714841,29847.10655925692,8,4,8,8_0,8_4,8_1_0 -7187,2,77.0,0.0,2,111,120.0,300.0,0.0,74,90,0.0,0.0,165.86090730911167,420.0,0.0,544.0958702542347,70,0,0,0,0,0,0,0,0,0,,2,,2,129698,2,1,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1029.85640632822,120.0,115511.58829146036,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0036359988310458555,77007.72552764024,10,5,10,10_0,10_4,10_0_1 -7188,2,65.0,0.0,6,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,2408.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,117099,1,2,0,0,1,,0.0,503.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1471.35480284326,0.0,19748.030440616818,0,5,2,3,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12193621066368923,19748.030440616818,5,3,5,5_0,5_4,5_0_0 -7189,2,77.0,0.0,1,111,900.0,0.0,0.0,85,78,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,103333,2,1,0,0,2,,0.0,,41,3.0,1.0,5.0,10.0,4.8999999999999995,2,2,1252.71570185354,900.0,97251.56425268474,6,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009254349859726339,19847.25801075199,5,3,5,5_0,5_4,5_1_0 -7191,2,60.0,0.0,1,111,800.0,0.0,0.0,0,74,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,132931,2,2,0,0,1,,0.0,161.0,11,0.0,0.0,1.0,1.0,1.0,1,1,301.719015424516,800.0,39198.108302982444,0,5,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.020409148161344582,39198.108302982444,9,5,9,9_0,9_4,9_1_0 -7192,2,36.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,645.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,70.0,2,,2,109570,2,1,0,1,1,382.0,0.0,325.0,12,1.0,0.0,2.0,1.0,1.0,1,1,426.451712865184,0.0,19427.519037880244,0,1,2,3,29.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033200327779494825,19427.519037880244,5,3,5,5_0,5_4,5_0_1 -7193,2,63.0,0.0,6,111,1100.0,1200.0,0.0,62,62,0.0,207.03450096389156,1520.3916503335236,2500.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,4,133093,2,3,2,0,1,,400.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,431.364171728441,1100.0,23679.696560679007,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10557567718799828,15786.464373786004,3,2,3_0,3_1_0,3_4_0,3_0_0 -7194,2,56.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,145.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118348,2,1,0,1,1,303.0,0.0,328.0,32,3.0,3.0,3.0,5.0,2.5999999999999996,1,1,228.924429946998,0.0,18606.674836170634,0,4,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00779290234696453,7156.413398527168,1,1,1_0,1_0_0,1_4_0,1_0_1 -7195,2,38.0,0.0,1,111,800.0,1000.0,0.0,54,54,0.0,0.0,1105.7393820607444,1800.0,0.0,1813.6529008474488,43,0,0,0,0,0,0,0,0,2,90.0,1,,1,131011,2,3,2,0,1,,1000.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,260.715023520955,800.0,50117.743072266814,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03591542415237068,23865.591939174672,6,3,6,6_1,6_4,6_1_0 -7196,2,32.0,0.0,2,111,1200.0,0.0,0.0,54,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,2,,2,118804,1,3,0,0,2,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1124.80697478968,1200.0,58016.31652851765,1,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020683836406783004,38677.5443523451,9,5,9,9_0,9_4,9_0_1 -7197,2,26.0,0.0,5,111,300.0,0.0,0.0,0,54,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,1,2,2,2,1,2,2,2,2,20.0,2,,3,117521,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,521.990355290602,300.0,25921.74001250167,0,1,1,2,23.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011573297157340305,25921.74001250167,7,4,7,7_0,7_4,7_0_0 -7198,1,69.0,119.0,2,111,720.0,600.0,0.0,0,86,0.0,0.0,995.16544385467,1320.0,0.0,1088.1917405084694,42,0,0,0,0,0,0,0,0,0,,2,,2,106234,2,2,0,1,1,650.0,0.0,349.0,21,2.0,2.0,4.0,3.0,2.0,1,1,243.807484193997,720.0,18018.71049592503,0,6,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07325718454150873,9009.355247962514,1,1,1_1,1_0_1,1_4_1,1_0_1 -7199,2,67.0,0.0,1,111,250.0,370.0,0.0,0,75,0.0,0.0,345.54355689398267,620.0,0.0,671.0515733135561,20,0,0,0,0,0,0,0,0,0,,2,,1,101177,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1259.5866356483,250.0,22873.74191514441,0,5,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02710531588141711,22873.74191514441,6,3,6,6_0,6_4,6_1_0 -7200,2,29.0,0.0,7,111,600.0,0.0,0.0,55,55,0.0,0.0,829.3045365455583,600.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,45.0,2,,5,121258,2,1,0,0,2,,0.0,645.0,43,2.0,0.0,1.0,3.0,1.8,1,1,395.151001152077,600.0,35417.74403646155,4,1,3,4,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016940661138166148,19676.52446470086,5,3,5,5_0,5_4,5_0_0 -7201,1,35.0,392.0,2,111,378.0,378.0,0.0,0,52,0.0,0.0,522.4618580237018,756.0,0.0,685.5607965203357,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,118728,2,1,0,1,1,408.0,0.0,361.0,32,1.0,0.0,5.0,3.0,1.8,1,1,243.807484193997,378.0,22922.115891226513,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.032981248484541544,12734.508828459173,2,1,2_1,2_0_1,2_4_1,2_0_1 -7202,2,60.0,0.0,2,111,350.0,350.0,0.0,85,68,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,116974,2,2,0,1,1,303.0,0.0,322.0,42,1.0,2.0,3.0,3.0,2.0,1,1,230.845744992689,350.0,23380.311949517956,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02993972028736906,11690.155974758978,2,1,2_0,2_0_0,2_4_0,2_0_1 -7203,2,39.0,0.0,2,111,400.0,140.0,0.0,0,65,0.0,0.0,552.8696910303722,540.0,0.0,253.91140611864284,41,2,2,2,2,1,2,2,2,0,,2,,2,125444,2,3,0,1,1,843.0,0.0,351.0,22,1.0,1.0,3.0,2.0,1.5,1,1,247.398630767306,400.0,38539.706670307176,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014011523352253268,25693.137780204783,7,4,7,7_0,7_4,7_0_1 -7204,1,34.0,117.0,2,111,500.0,200.0,0.0,85,54,0.0,0.0,691.0871137879653,700.0,0.0,362.73058016948977,41,2,1,2,2,1,2,2,2,2,15.0,2,,2,126933,2,1,0,1,1,588.0,0.0,368.0,42,1.0,0.0,3.0,7.0,2.9999999999999996,1,1,238.635595497328,500.0,47200.0902502019,6,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01483048011750371,15733.36341673397,3,2,3_1,3_0_1,3_4_1,3_0_1 -7205,2,88.0,0.0,2,111,175.0,90.0,0.0,72,77,0.0,0.0,241.88048982578783,265.0,0.0,163.2287610762704,10,0,0,0,0,0,0,0,0,0,,2,,2,109441,2,1,0,1,1,,0.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,980.209307642869,175.0,38004.435891616406,5,5,0,1,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006972870239562159,25336.290594410937,7,4,7,7_0,7_4,7_0_1 -7206,1,33.0,407.0,2,111,120.0,370.0,0.0,85,64,0.0,0.0,165.86090730911167,490.0,0.0,671.0515733135561,50,1,2,2,2,1,2,2,2,0,,2,,2,103066,2,1,0,1,1,720.0,0.0,365.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,238.635595497328,120.0,15978.875359060787,6,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03066548733807768,5918.101984837329,1,1,1_1,1_0_1,1_4_1,1_0_1 -7207,1,42.0,58.0,2,111,0.0,0.0,350.0,0,52,0.0,0.0,178.81966719313377,350.0,0.0,400.136021128421,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,119881,2,2,0,1,1,781.0,0.0,327.0,32,1.0,0.0,3.0,2.0,1.3,1,1,237.07053334728,0.0,21377.38499995929,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01637244218601417,16444.14230766099,4,2,4_1,4_0_1,4_4_1,4_0_1 -7208,2,94.0,0.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,331.72181461822333,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,102671,2,1,0,1,2,,417.0,946.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1263.95142382205,240.0,35414.89920098052,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0067768087842914205,35414.89920098052,9,5,9,9_0,9_4,9_0_1 -7209,2,36.0,0.0,1,111,360.0,900.0,0.0,0,46,0.0,0.0,497.582721927335,1260.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,2,,1,118158,2,2,0,0,2,,0.0,1582.0,12,1.0,0.0,3.0,1.0,1.0,2,1,1209.40124074787,360.0,30941.194460756928,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04072240978279208,30941.194460756928,8,4,8,8_0,8_4,8_1_0 -7210,1,63.0,308.0,2,111,235.0,157.0,0.0,0,86,0.0,0.0,324.81094348034367,392.0,0.0,284.74350543304945,60,0,0,0,0,0,0,0,0,0,,2,,2,124539,2,1,0,1,1,612.0,0.0,313.0,11,0.0,0.0,2.0,1.0,1.0,1,1,278.643244950271,235.0,6214.1172022684295,0,6,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06308217036152819,6214.1172022684295,1,1,1_1,1_0_1,1_4_1,1_0_1 -7211,2,59.0,0.0,2,111,360.0,360.0,0.0,0,52,0.0,0.0,497.582721927335,720.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,118142,2,1,0,1,1,969.0,0.0,344.0,22,2.0,1.0,4.0,2.0,1.5,4,3,247.398630767306,360.0,28514.2549950235,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025250528205126146,19009.50333001567,5,3,5,5_0,5_4,5_0_1 -7212,2,90.0,0.0,1,111,720.0,800.0,0.0,0,72,0.0,0.0,995.16544385467,1520.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,2,,1,104435,1,1,0,0,2,,222.0,600.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1277.30781391347,720.0,13801.210114051784,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11013526983785306,13801.210114051784,3,2,3_0,3_0_0,3_4_0,3_1_0 -7213,2,26.0,0.0,2,111,230.0,0.0,0.0,43,63,0.0,0.0,317.900072342464,230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,119702,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,305.36799325118,230.0,38280.655821387896,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006008256521861781,21267.031011882165,5,3,5,5_0,5_4,5_0_1 -7215,1,54.0,142.0,2,111,500.0,0.0,0.0,85,68,0.0,0.0,691.0871137879653,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,102323,2,1,0,1,1,612.0,0.0,261.0,42,1.0,0.0,2.0,2.0,1.5,1,1,234.245972466567,500.0,21118.541501963446,7,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023675877425224357,14079.02766797563,3,2,3_1,3_0_1,3_4_1,3_0_1 -7216,1,53.0,70.0,2,111,240.0,0.0,0.0,0,45,0.0,0.0,331.72181461822333,320.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,121663,2,1,0,1,2,200.0,0.0,588.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1289.61717254091,240.0,9076.790323424582,0,4,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03525475290248494,9076.790323424582,1,1,1_1,1_0_1,1_4_1,1_0_1 -7217,1,52.0,36.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,489.0,0.0,0.0,42,2,2,2,1,2,2,2,2,3,45.0,2,,1,121845,2,3,0,0,2,,180.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,831.719613994557,0.0,30806.16124193934,0,1,1,2,54.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,1,0.01587344804695361,23697.047109184106,6,3,6,6_0,6_4,6_1_0 -7218,2,44.0,0.0,2,111,600.0,270.0,0.0,68,53,0.0,0.0,829.3045365455583,870.0,0.0,489.6862832288112,20,2,2,1,2,1,2,2,2,0,,2,,2,112305,1,3,0,1,1,1136.0,0.0,279.0,43,2.0,0.0,3.0,5.0,2.4,1,1,187.903354940141,600.0,17317.316242812336,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.050238731440912454,7215.54843450514,1,1,1_0,1_0_0,1_4_0,1_0_1 -7219,2,36.0,0.0,1,111,260.0,0.0,0.0,0,46,0.0,0.0,359.36529916974195,489.0,0.0,0.0,41,1,2,2,1,1,2,2,2,3,45.0,2,,1,118718,2,2,0,1,1,,0.0,1013.0,12,1.0,0.0,3.0,1.0,1.0,1,1,727.755539414673,260.0,31482.906612322957,0,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.015532238049729401,31482.906612322957,8,4,8,8_0,8_4,8_1_0 -7220,1,37.0,420.0,2,111,600.0,420.0,0.0,85,63,0.0,0.0,829.3045365455583,1020.0,0.0,761.7342183559285,20,2,2,2,2,1,2,2,2,0,,2,,2,129618,1,3,0,1,2,,0.0,680.0,42,1.0,1.0,3.0,5.0,2.4,1,1,233.494686348704,600.0,17277.683195612277,6,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05903569294863748,7199.034664838449,1,1,1_1,1_0_1,1_4_1,1_0_1 -7221,2,39.0,0.0,1,111,400.0,70.0,0.0,0,37,0.0,0.0,552.8696910303722,470.0,0.0,126.95570305932142,20,2,2,2,2,1,2,2,2,2,20.0,2,,1,123566,2,1,0,1,1,,0.0,809.0,12,1.0,0.0,2.0,1.0,1.0,2,1,1016.82863978679,400.0,59506.0431180795,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.007898357467112474,59506.0431180795,10,5,10,10_0,10_4,10_1_0 -7222,2,61.0,0.0,2,111,300.0,771.0,0.0,0,37,0.0,0.0,414.65226827277917,1071.0,0.0,1398.3263865533831,10,0,0,0,0,0,0,0,0,3,60.0,8,,2,113239,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1043.75074494373,300.0,45363.720099540624,0,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02360917485713094,45363.720099540624,10,5,10,10_0,10_4,10_0_1 -7223,1,62.0,300.0,2,111,600.0,1000.0,0.0,77,78,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,0,,2,,2,131289,1,3,0,0,1,,1400.0,670.0,41,3.0,3.0,4.0,5.0,3.0,1,1,329.780575532519,600.0,33768.73449301011,6,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04738110634057633,11256.24483100337,2,1,2_1,2_0_1,2_4_1,2_0_1 -7224,1,67.0,180.0,7,111,600.0,0.0,0.0,0,78,0.0,0.0,829.3045365455583,600.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,5,132177,1,2,0,0,1,,0.0,526.0,11,0.0,4.0,3.0,1.0,1.0,1,1,383.806048379668,600.0,10868.171232806591,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.055207080119316104,10868.171232806591,2,1,2_1,2_0_1,2_4_1,2_0_0 -7225,2,68.0,0.0,2,111,240.0,500.0,0.0,0,77,0.0,0.0,331.72181461822333,740.0,0.0,906.8264504237244,41,0,0,0,0,0,0,0,0,0,,2,,2,123641,2,3,0,0,1,,0.0,260.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1279.78372572202,240.0,25329.72636409372,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029214685913425055,25329.72636409372,7,4,7,7_0,7_4,7_0_1 -7226,1,56.0,410.0,2,111,1100.0,190.0,0.0,52,64,0.0,0.0,1520.3916503335236,1290.0,0.0,344.5940511610153,12,1,2,2,2,1,2,2,2,0,,2,,2,101565,1,3,0,1,1,41.0,0.0,381.0,43,4.0,3.0,4.0,5.0,3.0,1,1,228.924429946998,1100.0,13150.407264052448,4,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09809582122420685,4383.469088017483,1,1,1_1,1_0_1,1_4_1,1_0_1 -7227,2,61.0,0.0,7,111,10.0,27.0,0.0,74,37,0.0,0.0,13.821742275759306,37.0,0.0,48.96862832288112,50,0,0,0,0,0,0,0,0,3,50.0,2,,5,104814,2,1,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,3,2,622.603240839078,10.0,162742.98817238395,5,1,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00022735234504117687,108495.32544825597,10,5,10,10_0,10_4,10_0_0 -7229,1,40.0,235.0,2,111,150.0,70.0,0.0,85,22,0.0,0.0,207.32613413638958,220.0,0.0,126.95570305932142,31,1,2,2,1,1,2,2,2,0,,2,,2,118502,1,3,0,1,2,1020.0,0.0,538.0,42,1.0,0.0,4.0,5.0,2.4,1,1,262.519358686096,150.0,9003.834707047266,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.02443403362656212,3751.597794603028,1,1,1_1,1_0_1,1_4_1,1_0_1 -7231,2,80.0,0.0,1,111,1800.0,0.0,0.0,86,74,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,122171,2,2,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,3,2,803.407187184639,1800.0,56294.74105240813,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.031974567541296135,37529.82736827208,9,5,9,9_0,9_4,9_1_0 -7232,2,67.0,0.0,2,111,360.0,1115.0,0.0,0,86,0.0,0.0,497.582721927335,1475.0,0.0,2022.2229844449055,71,0,0,0,0,0,0,0,0,0,,2,,2,104379,2,2,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,5,3,1311.17462385554,360.0,42674.59668650969,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03456388846121837,42674.59668650969,9,5,9,9_0,9_4,9_0_1 -7233,2,43.0,0.0,2,111,250.0,150.0,0.0,21,56,0.0,0.0,345.54355689398267,400.0,0.0,272.04793512711734,41,2,2,2,2,1,2,2,2,2,15.0,8,,2,109228,2,3,0,1,1,,0.0,650.0,43,2.0,4.0,2.0,2.0,1.5,2,2,966.992536043346,250.0,16155.248846075454,1,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.024759754789983986,10770.165897383637,2,1,2_0,2_0_0,2_4_0,2_0_1 -7234,2,45.0,0.0,2,111,720.0,400.0,0.0,77,68,0.0,0.0,995.16544385467,1120.0,0.0,725.4611603389795,70,2,2,2,1,1,2,2,2,0,,2,,2,121570,1,3,0,1,1,1030.0,0.0,284.0,42,1.0,3.0,3.0,2.0,1.5,2,2,234.245972466567,720.0,22482.55377738906,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.04981640480390603,14988.369184926041,3,2,3_0,3_0_0,3_4_0,3_0_1 -7235,2,67.0,0.0,2,111,470.0,0.0,0.0,0,74,0.0,0.0,649.6218869606873,470.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,114940,2,1,0,1,1,1068.0,0.0,652.0,21,1.0,0.0,4.0,2.0,1.5,1,1,955.393380313385,470.0,54549.34310631935,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008616052425855008,36366.22873754623,9,5,9,9_0,9_4,9_0_1 -7236,2,62.0,0.0,2,111,340.0,280.0,0.0,77,75,0.0,0.0,469.9392373758164,620.0,0.0,507.8228122372857,12,0,0,0,0,0,0,0,0,0,,2,,2,131486,2,2,0,1,1,,0.0,601.0,41,0.0,2.0,3.0,2.0,1.5,2,2,904.601010787826,340.0,34494.75190498477,5,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01797374863596004,22996.501269989847,6,3,6,6_0,6_4,6_0_1 -7237,1,39.0,320.0,2,111,290.0,720.0,0.0,55,62,0.0,0.0,400.8305259970199,1010.0,0.0,1305.830088610163,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,121043,1,2,0,0,2,,460.0,545.0,43,2.0,0.0,2.0,4.0,2.1,1,1,390.360412960583,290.0,18807.8411332808,1,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.053701006555866085,8956.11482537181,1,1,1_1,1_0_1,1_4_1,1_0_1 -7238,2,25.0,0.0,1,111,0.0,0.0,456.0,0,43,0.0,0.0,232.9764806859114,456.0,0.0,521.3200732416,20,2,2,2,1,2,2,2,2,3,20.0,2,,1,107696,1,2,0,1,2,630.0,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1566.26957115471,0.0,23581.205024576866,0,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.019337434177971246,23581.205024576866,6,3,6,6_0,6_4,6_1_0 -7239,2,40.0,0.0,5,111,560.0,980.0,0.0,85,63,0.0,0.0,774.0175674425211,1540.0,0.0,1777.3798428305,31,0,0,0,0,0,0,0,0,0,,2,,3,131231,2,1,0,0,1,,280.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,341.326344289231,560.0,12155.408389085074,6,4,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12669257590578692,6753.004660602819,1,1,1_0,1_0_0,1_4_0,1_0_0 -7240,2,55.0,0.0,1,111,300.0,600.0,0.0,0,45,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,44,0,0,0,0,0,0,0,0,3,30.0,2,,1,104082,2,1,0,0,1,,0.0,467.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1209.34690626983,300.0,29161.189846424906,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030862938197644837,29161.189846424906,8,4,8,8_0,8_4,8_1_0 -7241,0,46.0,0.0,5,111,1600.0,0.0,0.0,0,54,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,128191,1,3,3,0,1,,430.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,448.961244640731,1600.0,41781.213817555836,0,1,5,0,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03829472276671158,41781.213817555836,9,5,9,9_1,9_4,9_0_0 -7242,2,63.0,0.0,1,111,1200.0,130.0,0.0,75,74,0.0,0.0,1658.6090730911167,1330.0,0.0,235.77487711016835,71,0,0,0,0,0,0,0,0,0,,2,,1,109944,1,1,0,0,2,,150.0,348.0,41,1.0,0.0,3.0,3.0,2.0,2,2,967.916701554175,1200.0,65320.07336557165,5,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020361275354920303,32660.036682785823,8,4,8,8_0,8_4,8_1_0 -7243,2,78.0,0.0,2,111,461.0,1356.0,0.0,0,77,0.0,414.0690019277831,637.182318912504,2217.0,0.0,2459.3133335491407,71,2,2,2,1,1,2,2,2,0,,1,,2,125799,2,2,3,0,1,,156.0,,11,0.0,1.0,4.0,1.0,1.0,4,4,300.594790086785,461.0,26588.102922727245,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,1,0,0,0.08338315849172265,26588.102922727245,7,4,7,7_1,7_4,7_0_1 -7244,1,66.0,43.0,2,111,2500.0,1500.0,0.0,85,65,0.0,0.0,3455.435568939826,4000.0,0.0,2720.4793512711735,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,131441,2,1,0,1,1,,0.0,511.0,42,1.0,2.0,4.0,6.0,3.3,2,2,252.034726389184,2500.0,29272.821937428824,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1366455208367021,8870.552102251158,1,1,1_1,1_0_1,1_4_1,1_0_1 -7246,2,72.0,0.0,5,111,410.0,0.0,0.0,0,75,0.0,62.110350289167464,566.6914333061316,470.0,0.0,0.0,50,1,2,2,1,2,1,2,2,0,,2,,3,128292,2,2,0,1,1,597.0,0.0,568.0,11,0.0,2.0,4.0,1.0,1.0,2,2,390.032139800796,410.0,37436.81955149471,0,5,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012554485280286977,37436.81955149471,9,5,9,9_0,9_4,9_0_0 -7247,2,46.0,0.0,2,111,320.0,400.0,0.0,0,22,0.0,0.0,442.2957528242978,720.0,0.0,725.4611603389795,31,0,0,0,0,0,0,0,0,0,,2,,2,132125,2,2,0,0,1,,0.0,750.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1405.53906675753,320.0,33184.28347406426,0,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021697018124942437,33184.28347406426,8,4,8,8_0,8_4,8_0_1 -7248,1,60.0,367.0,2,111,360.0,660.0,0.0,77,62,0.0,0.0,497.582721927335,1020.0,0.0,1197.0109145593162,50,0,0,0,0,0,0,0,0,0,,2,,2,106137,2,2,0,0,1,,0.0,445.0,42,1.0,3.0,4.0,2.0,1.5,2,2,336.989267555022,360.0,8338.005536615057,7,4,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12233141313241258,5558.670357743372,1,1,1_1,1_0_1,1_4_1,1_0_1 -7249,2,37.0,0.0,1,111,400.0,660.0,0.0,35,37,0.0,0.0,552.8696910303722,1060.0,0.0,1197.0109145593162,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,109058,2,2,0,0,1,,0.0,1130.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1073.82898016818,400.0,61033.019786723635,1,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017367647933923452,40688.679857815754,9,5,9,9_0,9_4,9_1_0 -7250,2,81.0,0.0,1,111,200.0,100.0,0.0,77,75,0.0,0.0,276.4348455151861,300.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,1,121474,1,1,0,1,2,240.0,0.0,972.0,41,0.0,2.0,2.0,2.0,1.5,1,1,902.884073715427,200.0,33278.801086866515,5,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009014747833520813,22185.867391244345,6,3,6,6_0,6_4,6_1_0 -7251,2,45.0,0.0,2,111,1100.0,650.0,0.0,56,22,0.0,0.0,1520.3916503335236,1750.0,0.0,1178.8743855508417,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,116507,2,2,0,1,1,488.0,0.0,630.0,43,2.0,0.0,3.0,3.0,1.8,2,2,305.36799325118,1100.0,31973.74102900202,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05473241302644722,17763.189460556678,4,2,4_0,4_0_0,4_4_0,4_0_1 -7252,2,27.0,0.0,2,111,630.0,0.0,0.0,55,53,0.0,0.0,870.7697633728362,630.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,107640,2,1,0,1,1,,0.0,,43,4.0,0.0,5.0,6.0,3.0999999999999996,1,1,296.536182337112,630.0,43919.57139138856,1,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014344402279925844,14167.603674641474,3,2,3_0,3_0_0,3_4_0,3_0_1 -7253,2,41.0,0.0,1,111,1525.0,0.0,0.0,35,31,0.0,0.0,2107.815697053294,1525.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,129676,1,2,0,0,2,,0.0,1270.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1543.74912772457,1525.0,14475.24281903697,1,1,3,4,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.1053522914306081,9650.16187935798,1,1,1_0,1_0_0,1_4_0,1_1_0 -7254,1,37.0,272.0,1,111,370.0,700.0,0.0,0,68,0.0,0.0,511.40446420309434,1070.0,0.0,1269.5570305932142,50,2,2,2,2,1,1,2,2,3,45.0,2,,1,124232,1,3,0,0,2,,0.0,420.0,22,1.0,2.0,2.0,2.0,1.5,2,2,360.135386717379,370.0,14575.257126529908,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,0.07341208396607866,9716.838084353272,1,1,1_1,1_0_1,1_4_1,1_1_0 -7255,2,45.0,0.0,2,111,480.0,66.0,0.0,0,54,0.0,0.0,663.4436292364467,546.0,0.0,119.70109145593163,33,0,0,0,0,0,0,0,0,1,5.0,2,,2,109789,2,1,0,1,1,,0.0,,22,2.0,0.0,4.0,3.0,2.0,4,4,964.619243297409,480.0,61003.4486382644,0,1,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008950313665669085,30501.7243191322,8,4,8,8_0,8_4,8_0_1 -7256,2,64.0,0.0,5,111,220.0,0.0,0.0,0,77,0.0,0.0,304.0783300667047,220.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,3,128848,1,2,0,1,1,840.0,0.0,388.0,11,0.0,2.0,3.0,1.0,1.0,1,1,373.749551961444,220.0,16684.979762375053,0,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01318551194746452,16684.979762375053,4,2,4_0,4_0_0,4_4_0,4_0_0 -7258,2,34.0,0.0,1,111,1200.0,0.0,0.0,0,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,123230,2,1,0,0,1,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1285.5709295306,1200.0,28215.405286720466,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04252995793630432,28215.405286720466,8,4,8,8_0,8_4,8_1_0 -7259,1,46.0,370.0,2,111,700.0,780.0,0.0,56,38,0.0,0.0,967.5219593031513,1480.0,0.0,1414.6492626610102,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,124544,2,2,0,1,1,43.0,0.0,543.0,43,2.0,0.0,4.0,3.0,1.8,1,1,243.807484193997,700.0,11887.65297351315,4,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12449892365613165,6604.251651951749,1,1,1_1,1_0_1,1_4_1,1_0_1 -7260,0,33.0,0.0,1,111,0.0,0.0,0.0,42,37,0.0,0.0,0.0,586.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,8,,1,124840,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1022.92990819706,0.0,50177.06467774253,4,1,5,0,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011678642498590339,33451.37645182835,8,4,8,8_0,8_4,8_1_0 -7261,2,38.0,0.0,1,111,350.0,0.0,0.0,54,38,0.0,0.0,483.76097965157567,1277.0,0.0,0.0,50,1,2,2,2,1,2,2,2,4,30.0,2,,1,131494,1,1,0,1,2,516.0,0.0,700.0,43,2.0,0.0,2.0,4.0,2.1,2,2,857.234500662857,350.0,79093.37290710352,1,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.016145474052546193,37663.51090814453,9,5,9,9_0,9_4,9_1_0 -7262,1,25.0,297.0,2,111,46.0,0.0,0.0,0,56,0.0,0.0,63.580014468492806,46.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109644,2,2,0,1,1,468.0,0.0,404.0,32,1.0,0.0,3.0,2.0,1.3,1,1,350.884476513514,46.0,9986.715899245548,0,4,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.004606118814642068,7682.089153265806,1,1,1_1,1_0_1,1_4_1,1_0_1 -7263,2,29.0,0.0,1,111,350.0,0.0,0.0,0,46,0.0,0.0,483.76097965157567,350.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,2,,1,116087,2,1,0,0,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1321.04373740346,350.0,25717.002000330154,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01360967347576155,25717.002000330154,7,4,7,7_0,7_4,7_1_0 -7265,2,56.0,0.0,1,111,750.0,550.0,0.0,0,22,0.0,0.0,1036.630670681948,1300.0,0.0,997.5090954660969,42,2,2,2,1,1,1,2,2,0,,2,,1,113175,1,3,0,0,2,,0.0,203.0,22,1.0,1.0,2.0,3.0,2.0,2,2,1124.94167748584,750.0,24666.799163956955,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.052702419611035535,12333.399581978478,2,1,2_0,2_0_0,2_4_0,2_1_0 -7266,2,31.0,0.0,1,111,400.0,400.0,0.0,85,56,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,70,2,2,2,2,1,2,2,2,3,30.0,2,,1,106341,1,2,0,0,1,,0.0,736.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1141.51143318317,400.0,26845.861224439457,6,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.029799751749879054,17897.24081629297,4,2,4_0,4_0_0,4_4_0,4_1_0 -7267,0,24.0,0.0,1,111,400.0,0.0,0.0,84,37,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,110552,2,2,0,0,1,,168.0,,42,1.0,0.0,2.0,2.0,1.5,1,1,1141.51143318317,400.0,38295.82069517924,3,1,5,0,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01044500399100607,25530.547130119492,7,4,7,7_0,7_4,7_1_0 -7268,1,50.0,307.0,2,111,208.0,182.0,0.0,0,48,0.0,0.0,287.49223933579356,390.0,0.0,330.0848279542357,71,0,0,0,0,0,0,0,0,0,,2,,2,121390,2,2,0,1,1,594.0,0.0,576.0,12,1.0,1.0,2.0,1.0,1.0,2,2,278.643244950271,208.0,9048.845951796917,0,4,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04309941865266851,9048.845951796917,1,1,1_1,1_0_1,1_4_1,1_0_1 -7269,2,56.0,0.0,1,111,560.0,0.0,0.0,0,46,0.0,0.0,774.0175674425211,560.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,102652,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1436.89031932519,560.0,15730.553094335282,0,1,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035599511132361976,15730.553094335282,3,2,3_0,3_0_0,3_4_0,3_1_0 -7270,1,54.0,137.0,5,111,280.0,0.0,0.0,85,65,0.0,0.0,387.00878372126056,573.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,104734,2,2,0,1,1,516.0,0.0,388.0,42,1.0,0.0,2.0,3.0,1.8,3,2,341.326344289231,280.0,18832.210808743657,6,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030426592279540556,10462.33933819092,2,1,2_1,2_0_1,2_4_1,2_0_0 -7271,1,43.0,378.0,1,111,270.0,900.0,0.0,0,56,0.0,0.0,373.1870414455012,1170.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,2,,1,104639,2,2,0,0,1,,0.0,360.0,32,1.0,0.0,3.0,2.0,1.3,3,3,810.694404611659,270.0,9468.261831332247,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12357072721925068,7283.278331794036,1,1,1_1,1_0_1,1_4_1,1_1_0 -7272,2,36.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,334.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,2,121813,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,1,1,275.606490416,0.0,17707.390843841175,6,1,1,2,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018862180371207477,11804.927229227449,2,1,2_0,2_0_0,2_4_0,2_0_1 -7273,2,45.0,0.0,9,111,330.0,480.0,0.0,0,56,0.0,0.0,456.1174951000571,810.0,0.0,870.5533924067755,31,0,0,0,0,0,0,0,0,3,45.0,2,2006.0,6,119348,2,2,0,1,2,,430.0,,32,1.0,0.0,3.0,3.0,1.8,2,2,335.921754301917,330.0,13457.293089153545,0,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06019041085259951,7476.273938418636,1,1,1_0,1_0_0,1_4_0,1_0_0 -7274,1,52.0,89.0,2,111,660.0,360.0,0.0,78,67,0.0,0.0,912.2349902001142,1020.0,0.0,652.9150443050816,33,2,1,2,2,1,2,2,2,2,25.0,2,,2,110682,1,2,0,1,2,659.0,0.0,545.0,42,1.0,0.0,4.0,4.0,2.3,2,2,234.890223323764,660.0,25055.404237558356,7,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04070978022661505,10893.654016329721,2,1,2_1,2_0_1,2_4_1,2_0_1 -7275,2,23.0,0.0,2,111,1170.0,0.0,0.0,0,90,0.0,0.0,1617.1438462638387,1170.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,131000,2,1,0,0,1,,0.0,750.0,32,1.0,0.0,4.0,4.0,2.3,2,2,302.673333525466,1170.0,34463.05290585954,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03394940091918183,14983.936046025889,3,2,3_0,3_0_0,3_4_0,3_0_1 -7276,2,84.0,0.0,7,111,2000.0,0.0,0.0,75,75,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,120288,2,2,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,734.113313909039,2000.0,79201.0228102488,5,5,0,1,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02525219913878682,52800.681873499205,10,5,10,10_0,10_4,10_0_0 -7277,2,28.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1244.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,25.0,2,,1,129756,2,1,0,0,1,,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1253.18415378759,0.0,33732.18821984381,0,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03687872224275642,33732.18821984381,9,5,9,9_0,9_4,9_1_0 -7278,2,36.0,0.0,1,111,250.0,440.0,0.0,43,34,0.0,0.0,345.54355689398267,690.0,0.0,798.0072763728775,50,0,0,0,0,0,0,0,0,3,75.0,2,,1,111527,2,1,0,0,1,,0.0,803.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1037.4062289759,250.0,69720.6954514887,1,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009896631058135362,46480.4636343258,10,5,10,10_0,10_4,10_1_0 -7279,2,48.0,0.0,2,111,600.0,480.0,0.0,85,62,0.0,0.0,829.3045365455583,1080.0,0.0,870.5533924067755,60,2,1,2,2,1,2,2,2,3,45.0,2,,2,118653,2,2,0,1,1,471.0,0.0,456.0,42,1.0,0.0,3.0,5.0,2.4,1,1,187.903354940141,600.0,40029.172653883754,6,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026980322809525146,16678.821939118232,4,2,4_0,4_0_0,4_4_0,4_0_1 -7280,2,70.0,0.0,2,111,360.0,280.0,0.0,77,78,0.0,0.0,497.582721927335,640.0,0.0,507.8228122372857,31,0,0,0,0,0,0,0,0,0,,2,,2,124393,2,2,0,1,1,562.0,0.0,338.0,41,0.0,5.0,3.0,2.0,1.5,1,1,310.785700714575,360.0,38841.15842482272,5,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016477366431763965,25894.10561654848,7,4,7,7_0,7_4,7_0_1 -7281,1,24.0,307.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,279.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,2,,1,132067,2,2,0,1,1,,0.0,470.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1149.74184448511,0.0,10960.255070294483,0,1,3,4,15.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025455611955252037,10960.255070294483,2,1,2_1,2_0_1,2_4_1,2_1_0 -7282,2,48.0,0.0,1,111,424.0,56.0,0.0,0,45,0.0,0.0,586.0418724921946,480.0,0.0,101.56456244745713,43,0,0,0,0,0,0,0,0,1,15.0,2,,1,128777,1,2,0,1,2,382.0,0.0,633.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1118.86885338114,424.0,31229.5313190775,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015370067360145668,31229.5313190775,8,4,8,8_0,8_4,8_1_0 -7283,2,26.0,0.0,1,111,600.0,250.0,0.0,55,37,0.0,0.0,829.3045365455583,850.0,0.0,453.4132252118622,42,0,0,0,0,0,0,0,0,3,15.0,2,,1,133415,2,1,0,1,1,,0.0,1200.0,43,2.0,0.0,2.0,2.0,1.5,1,1,901.686751714145,600.0,48393.56301494135,1,1,3,4,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01756431944755887,32262.375343294232,8,4,8,8_0,8_4,8_1_0 -7284,2,57.0,0.0,2,111,800.0,160.0,0.0,63,48,0.0,0.0,1105.7393820607444,960.0,0.0,290.18446413559184,60,0,0,0,0,0,0,0,0,2,40.0,2,,2,117845,2,1,0,1,1,773.0,0.0,385.0,43,2.0,3.0,4.0,3.0,2.0,1,1,243.807484193997,800.0,59001.77861965755,1,1,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01627069594271787,29500.889309828774,8,4,8,8_0,8_4,8_0_1 -7285,1,41.0,172.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,511.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,115708,2,2,0,1,1,329.0,0.0,287.0,32,1.0,1.0,2.0,3.0,1.8,2,2,243.82738610067,0.0,12338.437706455212,0,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04141529196461036,6854.68761469734,1,1,1_1,1_0_1,1_4_1,1_0_1 -7286,0,65.0,0.0,1,111,300.0,340.0,0.0,85,56,0.0,0.0,414.65226827277917,640.0,0.0,616.6419862881327,20,0,0,0,0,0,0,0,0,1,5.0,2,,1,114022,2,2,0,1,1,,0.0,,42,1.0,3.0,3.0,3.0,1.8,1,1,305.36799325118,300.0,31187.64674551982,6,1,5,0,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020520945527637075,17326.47041417768,4,2,4_0,4_0_0,4_4_0,4_1_0 -7287,1,63.0,307.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,497.582721927335,360.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,114165,2,1,0,1,1,400.0,0.0,355.0,21,1.0,0.0,3.0,3.0,2.0,2,2,891.47015872924,360.0,27443.572579251726,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013117825638786265,13721.786289625863,3,2,3_1,3_0_1,3_4_1,3_0_1 -7288,1,50.0,300.0,2,111,300.0,0.0,0.0,0,52,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,2,1,2,1,1,1,2,2,3,90.0,2,,2,108007,1,3,0,1,1,,0.0,291.0,22,2.0,0.0,2.0,2.0,1.5,2,2,247.418825817826,300.0,5526.545713715374,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.054283455804134954,3684.363809143583,1,1,1_1,1_0_1,1_4_1,1_0_1 -7289,2,86.0,0.0,5,111,450.0,0.0,0.0,77,72,0.0,0.0,621.9784024091688,450.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,112190,2,1,0,2,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,385.812920117343,450.0,22934.639360624315,5,5,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019620975630974577,15289.759573749543,3,2,3_0,3_0_0,3_4_0,3_0_0 -7290,2,55.0,0.0,2,111,600.0,84.0,0.0,0,37,0.0,0.0,829.3045365455583,684.0,0.0,152.3468436711857,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,127289,2,1,0,1,1,516.0,0.0,400.0,32,1.0,0.0,4.0,2.0,1.5,1,1,955.393380313385,600.0,46956.978518578384,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014566524967729292,31304.65234571892,8,4,8,8_0,8_4,8_0_1 -7291,2,93.0,0.0,2,111,220.0,72.0,0.0,0,86,0.0,0.0,304.0783300667047,292.0,0.0,130.5830088610163,70,2,2,2,1,1,2,2,2,0,,2,,2,114383,2,1,0,1,1,,0.0,450.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1018.76225545103,220.0,13837.395533007195,0,6,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02110223699998127,13837.395533007195,3,2,3_0,3_0_0,3_4_0,3_0_1 -7292,2,64.0,0.0,2,111,350.0,250.0,0.0,85,78,0.0,0.0,483.76097965157567,600.0,0.0,453.4132252118622,41,0,0,0,0,0,0,0,0,0,,2,,2,133012,1,3,0,1,2,960.0,0.0,604.0,41,1.0,0.0,4.0,5.0,3.0,1,1,193.315764567535,350.0,19371.78891839513,6,5,2,3,126.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030972875170565684,6457.262972798377,1,1,1_0,1_0_0,1_4_0,1_0_1 -7293,2,39.0,0.0,1,111,860.0,0.0,0.0,22,63,0.0,0.0,1188.6698357153002,860.0,0.0,0.0,20,2,2,2,2,2,2,2,1,3,90.0,2,,1,105726,2,2,0,0,1,,0.0,760.0,43,2.0,1.0,3.0,5.0,2.4,1,1,288.887132975228,860.0,24797.85053356738,4,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03468042517781406,10332.437722319743,2,1,2_0,2_0_0,2_4_0,2_1_0 -7294,1,54.0,300.0,2,111,1400.0,2000.0,0.0,85,21,0.0,0.0,1935.0439186063027,3400.0,0.0,3627.3058016948976,43,0,0,0,0,0,0,0,0,0,,2,,2,113688,2,1,0,1,1,852.0,0.0,250.0,42,4.0,0.0,4.0,7.0,4.0,2,2,324.765287038984,1400.0,41631.6062011413,6,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08166872024041175,10407.901550285325,2,1,2_1,2_0_1,2_4_1,2_0_1 -7295,2,81.0,0.0,5,111,750.0,0.0,0.0,0,86,0.0,0.0,1036.630670681948,750.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,104997,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1068.68321333796,750.0,34101.31789518288,0,5,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021993284901928797,34101.31789518288,9,5,9,9_0,9_4,9_0_0 -7296,2,82.0,0.0,5,111,200.0,50.0,0.0,0,78,0.0,0.0,276.4348455151861,250.0,0.0,90.68264504237244,60,0,0,0,0,0,0,0,0,0,,2,,3,115534,2,1,0,1,1,,0.0,361.0,11,0.0,5.0,3.0,1.0,1.0,2,2,369.296538131556,200.0,15505.364210506128,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016123452284378136,15505.364210506128,3,2,3_0,3_0_0,3_4_0,3_0_0 -7297,2,55.0,0.0,2,111,300.0,0.0,0.0,0,43,0.0,0.0,414.65226827277917,300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,2,108262,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1101.54345860657,300.0,39184.83981367753,0,1,0,1,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007656022110246946,39184.83981367753,9,5,9,9_0,9_4,9_0_1 -7298,2,28.0,0.0,1,111,200.0,0.0,0.0,0,46,0.0,0.0,276.4348455151861,200.0,0.0,0.0,43,2,2,2,2,2,2,2,1,3,30.0,2,,1,110293,1,3,0,0,1,,0.0,664.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1181.9241890654,200.0,26145.17789240807,0,1,2,3,19.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0076495941554895735,26145.17789240807,7,4,7,7_0,7_4,7_1_0 -7299,2,64.0,0.0,1,111,585.0,745.0,0.0,67,78,0.0,0.0,808.5719231319193,1330.0,0.0,1351.1714111313495,31,0,0,0,0,0,0,0,0,0,,2,,1,126841,2,1,0,1,1,598.0,0.0,398.0,42,2.0,2.0,5.0,5.0,2.5999999999999996,2,2,193.315764567535,585.0,30787.82095708511,1,5,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043198900040827055,11841.46959887889,2,1,2_0,2_0_0,2_4_0,2_1_0 -7300,2,60.0,0.0,1,111,170.0,230.0,0.0,0,46,343.5245217141402,0.0,234.9696186879082,630.0,0.0,417.14016719491326,44,2,2,2,2,1,2,2,2,3,50.0,2,,1,102843,2,3,0,2,1,182.0,0.0,232.0,12,1.0,2.0,1.0,1.0,1.0,2,2,312.104265291725,170.0,15138.025409100937,0,1,2,3,32.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04161705261911146,15138.025409100937,3,2,3_0,3_0_0,3_4_0,3_1_0 -7301,2,53.0,0.0,1,111,600.0,1800.0,0.0,52,62,0.0,0.0,829.3045365455583,2400.0,0.0,3264.575221525408,41,2,2,2,2,1,2,2,2,3,20.0,2,,1,116246,1,3,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,1411.18172748142,600.0,53363.320885848254,1,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04497471222103928,26681.660442924127,7,4,7,7_0,7_4,7_1_0 -7302,1,68.0,367.0,9,111,324.0,0.0,0.0,86,77,0.0,0.0,447.8244497346015,324.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,131909,2,1,0,1,1,506.0,0.0,377.0,41,0.0,4.0,3.0,2.0,1.5,5,4,289.715065782966,324.0,10123.2289924641,6,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032005598237597015,6748.819328309401,1,1,1_1,1_0_1,1_4_1,1_0_0 -7303,1,47.0,307.0,5,111,720.0,0.0,0.0,0,52,0.0,0.0,995.16544385467,720.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,3,118276,1,2,0,0,1,420.0,0.0,305.0,12,1.0,0.0,3.0,1.0,1.0,1,1,390.063977967171,720.0,5992.176961156967,0,4,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.12015666504298009,5992.176961156967,1,1,1_1,1_0_1,1_4_1,1_0_0 -7304,2,30.0,0.0,8,111,300.0,642.0,0.0,0,42,0.0,0.0,414.65226827277917,942.0,0.0,1164.3651623440621,42,2,2,2,2,1,2,2,2,3,35.0,2,,6,131280,1,3,0,2,2,640.0,0.0,326.0,12,1.0,0.0,2.0,1.0,1.0,2,2,344.62554549265,300.0,15156.392050431052,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.06215199480625795,15156.392050431052,3,2,3_0,3_0_0,3_4_0,3_0_0 -7305,2,71.0,0.0,1,111,675.0,0.0,0.0,0,22,0.0,0.0,932.9676036137531,675.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,107302,2,2,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,4,3,1152.02433781891,675.0,25359.807002318277,0,1,0,1,29.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.026616921806159433,25359.807002318277,7,4,7,7_0,7_4,7_1_0 -7306,2,55.0,0.0,2,111,250.0,0.0,0.0,47,47,0.0,0.0,345.54355689398267,250.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,35.0,2,,2,105264,2,3,0,1,1,1300.0,0.0,416.0,43,3.0,0.0,5.0,5.0,3.0,2,2,193.315764567535,250.0,75571.59248150022,4,1,2,3,162.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0033081213692989137,25190.53082716674,7,4,7,7_0,7_4,7_0_1 -7307,0,76.0,0.0,7,111,1076.0,0.0,0.0,0,74,0.0,0.0,1487.2194688717013,1076.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,105880,2,1,0,0,1,,128.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,763.827267511266,1076.0,62912.19971873239,0,5,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017103201045434377,62912.19971873239,10,5,10,10_0,10_4,10_0_0 -7308,2,53.0,0.0,2,111,630.0,380.0,0.0,48,63,0.0,0.0,870.7697633728362,1010.0,0.0,689.1881023220305,31,0,0,0,0,0,0,0,0,0,,2,,2,103153,2,1,0,1,1,444.0,0.0,347.0,43,2.0,1.0,3.0,3.0,2.0,2,2,230.845744992689,630.0,56781.04269010588,1,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017787626858356248,28390.52134505294,8,4,8,8_0,8_4,8_0_1 -7309,0,72.0,0.0,7,111,930.0,0.0,0.0,0,75,0.0,0.0,1285.4220316456153,930.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,123930,2,1,0,0,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,944.330591639855,930.0,48589.974404101566,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019139750769687523,48589.974404101566,10,5,10,10_0,10_4,10_0_0 -7311,2,63.0,0.0,2,111,548.0,432.0,0.0,85,21,0.0,0.0,757.43147671161,980.0,0.0,783.498053166098,10,0,0,0,0,0,0,0,0,0,,2,,2,109196,1,1,0,1,2,1230.0,0.0,360.0,41,0.0,3.0,5.0,3.0,2.0,1,1,243.807484193997,548.0,17180.75440366923,6,5,2,3,124.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05704056859055648,8590.377201834615,1,1,1_0,1_0_0,1_4_0,1_0_1 -7312,2,70.0,0.0,7,111,1500.0,0.0,0.0,74,74,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,8,,5,129126,1,1,0,0,1,,0.0,1200.0,41,0.0,3.0,5.0,2.0,1.5,2,2,924.873271192415,1500.0,65110.0031744789,5,5,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023037934677723276,43406.66878298594,10,5,10,10_0,10_4,10_0_0 -7313,2,37.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,670.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,104223,2,2,0,1,1,660.0,0.0,502.0,12,1.0,0.0,2.0,1.0,1.0,5,4,311.604293620398,0.0,27978.697758296104,0,1,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023946790011030263,27978.697758296104,7,4,7,7_0,7_4,7_0_1 -7315,2,58.0,0.0,7,111,2250.0,0.0,0.0,0,33,0.0,0.0,3109.892012045844,2250.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,117208,2,2,0,0,1,,0.0,1700.0,32,1.0,2.0,4.0,3.0,2.0,2,2,958.921272219221,2250.0,88873.94894586063,0,1,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025316755097386675,44436.97447293031,10,5,10,10_0,10_4,10_0_0 -7316,2,59.0,0.0,9,111,1250.0,0.0,0.0,63,37,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,95.0,2,2005.0,6,101649,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,385.971278601993,1250.0,60600.67068761731,1,1,0,1,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020626834419761885,30300.335343808656,8,4,8,8_0,8_4,8_0_0 -7317,2,63.0,0.0,2,111,332.0,158.0,0.0,77,75,0.0,0.0,458.88184355520895,490.0,0.0,286.55715833389695,10,0,0,0,0,0,0,0,0,0,,2,,2,105451,2,1,0,1,1,832.0,0.0,453.0,41,0.0,4.0,5.0,2.0,1.5,2,2,240.993245057629,332.0,34697.11491105559,5,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0141222116379443,23131.40994070373,6,3,6,6_0,6_4,6_0_1 -7318,2,45.0,0.0,2,111,320.0,380.0,0.0,42,63,0.0,0.0,442.2957528242978,700.0,0.0,689.1881023220305,44,2,2,2,1,1,2,2,2,0,,2,,2,123385,2,2,0,2,1,640.0,0.0,300.0,43,2.0,3.0,3.0,3.0,1.8,2,2,230.845744992689,320.0,18396.346108301143,4,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03805103447603288,10220.192282389524,2,1,2_0,2_0_0,2_4_0,2_0_1 -7319,2,44.0,0.0,2,111,0.0,0.0,1440.0,45,46,0.0,0.0,735.7152021660361,1440.0,0.0,1646.2739154997894,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,111247,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,285.725049531032,0.0,62805.57631070142,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022927900428399362,22430.562968107653,6,3,6,6_0,6_4,6_0_1 -7320,2,62.0,0.0,6,111,1200.0,0.0,0.0,0,75,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,4,125292,1,2,0,0,1,,200.0,600.0,21,0.0,1.0,2.0,2.0,1.5,2,2,1195.0076722905,1200.0,44114.57291765645,0,5,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027201895442576327,29409.715278437634,8,4,8,8_0,8_4,8_0_0 -7321,1,33.0,30.0,2,111,0.0,0.0,0.0,52,68,0.0,0.0,0.0,374.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,2,,2,120648,2,1,0,1,1,265.0,0.0,305.0,43,2.0,1.0,3.0,4.0,2.1,2,2,222.402559847293,0.0,25932.76225245827,1,1,2,3,54.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014421911416881442,12348.934405932509,2,1,2_1,2_0_1,2_4_1,2_0_1 -7322,2,52.0,0.0,2,111,280.0,100.0,0.0,53,53,0.0,0.0,387.00878372126056,380.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,122257,2,1,0,1,1,555.0,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,3,2,301.432689568234,280.0,40247.503166651746,1,1,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009441579479515643,26831.66877776783,7,4,7,7_0,7_4,7_0_1 -7323,0,79.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,663.4436292364467,682.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132644,2,3,0,1,1,,0.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,1423.42666235089,480.0,55849.46227698072,0,5,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012211397786028418,55849.46227698072,10,5,10,10_0,10_4,10_0_1 -7324,2,33.0,0.0,5,111,360.0,0.0,0.0,0,42,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,111532,2,2,0,1,1,,0.0,686.0,22,2.0,2.0,5.0,3.0,2.0,1,1,1024.86845569569,360.0,37427.881936196114,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009618497798344495,18713.940968098057,5,3,5,5_0,5_4,5_0_0 -7325,1,66.0,140.0,5,111,240.0,240.0,0.0,0,77,0.0,0.0,331.72181461822333,480.0,0.0,435.27669620338776,70,0,0,0,0,0,0,0,0,0,,2,,3,125705,2,1,0,3,1,842.0,0.0,534.0,31,0.0,0.0,3.0,2.0,1.5,1,1,327.913622522608,240.0,12958.392208754949,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037041632346619544,8638.928139169966,1,1,1_1,1_0_1,1_4_1,1_0_0 -7326,1,40.0,140.0,5,111,1300.0,0.0,0.0,56,68,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,60.0,8,,3,100359,2,2,0,1,1,,0.0,723.0,43,2.0,0.0,4.0,6.0,3.3,2,2,1003.12791889835,1300.0,49891.47458760631,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.026056555969643295,15118.628662911004,3,2,3_1,3_0_1,3_4_1,3_0_0 -7327,2,33.0,0.0,1,111,747.0,0.0,0.0,0,52,0.0,0.0,1032.48414799922,747.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,20.0,2,,1,103695,1,3,0,0,1,,0.0,364.0,12,1.0,0.0,2.0,1.0,1.0,2,2,989.26848156503,747.0,18476.59525318809,0,1,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.040429526639715024,18476.59525318809,4,2,4_0,4_0_0,4_4_0,4_1_0 -7328,2,34.0,0.0,1,111,700.0,0.0,0.0,37,37,0.0,0.0,967.5219593031513,700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,20.0,2,,1,133353,2,2,0,1,2,,0.0,999.0,43,2.0,0.0,2.0,3.0,1.8,1,1,1245.57264056037,700.0,82207.08452986687,1,1,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00851508120015716,45670.602516592706,10,5,10,10_0,10_4,10_1_0 -7329,2,35.0,0.0,1,111,600.0,0.0,0.0,43,38,1344.2263893162005,0.0,829.3045365455583,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,125650,1,1,0,1,2,,0.0,1400.0,43,2.0,0.0,3.0,4.0,2.1,2,2,811.594382828065,600.0,122989.18692214214,1,1,2,3,55.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012196194133306772,58566.27948673435,10,5,10,10_0,10_4,10_1_0 -7330,0,59.0,0.0,1,111,938.0,120.0,0.0,0,34,1269.5471454653007,0.0,1296.479425466223,1908.0,0.0,217.63834810169388,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,130386,2,1,0,1,1,,0.0,,32,2.0,0.0,6.0,3.0,2.0,1,1,706.199093865529,938.0,99602.35054442151,0,1,0,1,160.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019156174423303935,49801.175272210756,10,5,10,10_0,10_4,10_1_0 -7331,2,61.0,0.0,2,111,620.0,84.0,0.0,0,78,0.0,0.0,856.9480210970769,704.0,0.0,152.3468436711857,50,0,0,0,0,0,0,0,0,0,,2,,2,125595,2,1,0,1,1,,0.0,397.0,11,0.0,3.0,2.0,1.0,1.0,1,1,278.643244950271,620.0,21468.081130295475,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03279287029554422,21468.081130295475,6,3,6,6_0,6_4,6_0_1 -7332,2,31.0,0.0,1,111,0.0,0.0,0.0,34,33,0.0,0.0,0.0,2141.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,1,112359,2,1,0,0,1,,0.0,1273.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1043.47461205642,0.0,65498.351994776356,1,1,2,3,44.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.032687845339539987,36387.973330431305,9,5,9,9_0,9_4,9_1_0 -7333,2,38.0,0.0,1,111,900.0,0.0,0.0,38,38,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,127223,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,1141.51143318317,900.0,132248.31000081875,1,1,1,2,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006805379970408908,88165.54000054584,10,5,10,10_0,10_4,10_1_0 -7334,1,36.0,331.0,2,111,360.0,720.0,0.0,0,56,0.0,0.0,497.582721927335,1080.0,0.0,1305.830088610163,71,1,1,2,2,1,2,2,2,3,60.0,2,,2,114872,1,3,0,1,1,528.0,0.0,272.0,32,1.0,0.0,3.0,5.0,2.5999999999999996,2,2,187.903354940141,360.0,25320.67252381981,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0426528955336402,9738.72020146916,1,1,1_1,1_0_1,1_4_1,1_0_1 -7335,2,79.0,0.0,2,111,300.0,300.0,0.0,0,75,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,70,2,1,2,2,1,2,2,2,0,,2,,2,131972,2,2,0,1,1,1170.0,0.0,312.0,11,0.0,3.0,3.0,1.0,1.0,1,1,263.807968811051,300.0,19959.698820122598,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.030060573829656347,19959.698820122598,5,3,5,5_0,5_4,5_0_1 -7336,2,36.0,0.0,1,111,600.0,0.0,0.0,33,63,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,126976,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1141.51143318317,600.0,32825.15362864804,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018278665403605364,21883.435752432026,6,3,6,6_0,6_4,6_1_0 -7337,2,61.0,0.0,2,111,600.0,128.0,0.0,47,56,0.0,0.0,829.3045365455583,728.0,0.0,232.14757130847346,41,0,0,0,0,0,0,0,0,0,,2,,2,126333,2,1,0,1,1,324.0,0.0,325.0,43,2.0,2.0,3.0,2.0,1.5,1,1,234.245972466567,600.0,25489.329222360462,4,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02856097128524526,16992.886148240308,4,2,4_0,4_0_0,4_4_0,4_0_1 -7338,2,54.0,0.0,1,111,255.0,1409.0,0.0,0,37,0.0,0.0,352.4544280318623,1664.0,0.0,2555.4369372940555,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,133138,2,1,0,0,2,,0.0,,32,1.0,0.0,4.0,2.0,1.5,3,3,878.380307272586,255.0,61637.496194198706,0,1,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026996554090343062,41091.664129465804,9,5,9,9_0,9_4,9_1_0 -7339,2,77.0,0.0,1,111,300.0,1521.0,0.0,75,75,0.0,0.0,414.65226827277917,1821.0,0.0,2758.5660621889697,31,0,0,0,0,0,0,0,0,0,,1,,1,121132,2,2,5,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,325.852490760817,300.0,57579.01218391015,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03162610699509116,38386.00812260676,9,5,9,9_1,9_4,9_1_0 -7340,1,70.0,183.0,1,111,100.0,700.0,0.0,0,77,0.0,0.0,138.21742275759306,800.0,0.0,1269.5570305932142,50,2,2,2,2,1,2,2,2,0,,2,,1,129021,2,3,0,0,1,,0.0,213.0,11,0.0,3.0,1.0,1.0,1.0,1,1,312.104265291725,100.0,10422.668785112479,0,5,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,0.07675577306483183,10422.668785112479,2,1,2_1,2_0_1,2_4_1,2_1_0 -7342,2,41.0,0.0,1,111,360.0,910.0,0.0,22,22,0.0,0.0,497.582721927335,1270.0,0.0,1650.4241397711785,43,0,0,0,0,0,0,0,0,1,20.0,2,,1,113973,2,1,0,0,1,,0.0,1860.0,43,2.0,0.0,2.0,2.0,1.5,2,2,934.47215876154,360.0,68033.06154618226,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01866739451579579,45355.374364121504,10,5,10,10_0,10_4,10_1_0 -7343,2,41.0,0.0,2,111,300.0,200.0,0.0,0,67,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,50,1,2,2,2,1,2,2,2,0,,2,,2,116289,2,1,0,1,1,600.0,0.0,348.0,12,1.0,0.0,2.0,1.0,1.0,2,2,278.643244950271,300.0,18524.355064674175,0,4,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026991492996886933,18524.355064674175,4,2,4_0,4_0_0,4_4_0,4_0_1 -7344,1,37.0,195.0,2,111,0.0,0.0,0.0,85,21,0.0,0.0,0.0,993.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,114335,2,3,0,0,1,,0.0,,42,1.0,0.0,3.0,4.0,2.1,1,1,328.715987391687,0.0,16173.353861926145,6,1,1,2,54.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06139728398187288,7701.597077107688,1,1,1_1,1_0_1,1_4_1,1_0_1 -7346,1,56.0,198.0,2,111,240.0,196.0,0.0,0,77,0.0,0.0,331.72181461822333,436.0,0.0,355.4759685661,10,2,2,2,2,1,1,2,2,0,,2,,2,102450,1,3,0,1,1,619.0,0.0,498.0,11,0.0,4.0,3.0,1.0,1.0,2,2,263.807968811051,240.0,8230.218758138712,0,7,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.052975505610813524,8230.218758138712,1,1,1_1,1_0_1,1_4_1,1_0_1 -7347,2,35.0,0.0,2,111,398.0,210.0,0.0,85,37,0.0,0.0,550.1053425752203,608.0,0.0,380.86710917796427,31,0,0,0,0,0,0,0,0,3,1.0,2,,2,120139,2,1,0,1,1,,0.0,636.0,42,1.0,0.0,3.0,3.0,1.8,1,1,243.807484193997,398.0,45545.56705500347,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013349268420914464,25303.09280833526,7,4,7,7_0,7_4,7_0_1 -7348,2,38.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,554.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,2,,1,106020,2,1,0,0,1,,0.0,610.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1141.51143318317,0.0,12710.466387184286,0,1,2,3,34.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043586126828405555,9777.281836295604,2,1,2_0,2_0_0,2_4_0,2_1_0 -7349,1,43.0,377.0,2,111,900.0,100.0,0.0,85,67,0.0,0.0,1243.9568048183376,1000.0,0.0,181.36529008474488,10,0,0,0,0,0,0,0,0,3,90.0,2,,2,110269,2,1,0,1,1,,0.0,344.0,42,3.0,0.0,4.0,5.0,3.0,2,2,198.453925330174,900.0,21176.550464657135,6,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04722204410340401,7058.850154885712,1,1,1_1,1_0_1,1_4_1,1_0_1 -7350,2,27.0,0.0,2,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,186.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,131396,2,1,0,1,1,,451.0,620.0,12,1.0,0.0,1.0,1.0,1.0,2,2,746.914377483311,0.0,10517.416711738853,0,1,3,4,15.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.017684951076664953,10517.416711738853,2,1,2_0,2_0_0,2_4_0,2_0_1 -7351,2,63.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113695,2,1,0,1,1,840.0,0.0,464.0,41,0.0,7.0,3.0,3.0,2.0,2,2,230.845744992689,0.0,27825.578720066667,6,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010422065356393248,13912.789360033334,3,2,3_0,3_0_0,3_4_0,3_0_1 -7352,2,61.0,0.0,2,111,650.0,0.0,0.0,0,22,701.9848921984603,0.0,898.4132479243549,1120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,101261,2,1,0,1,1,,0.0,,22,3.0,0.0,3.0,3.0,2.0,3,3,913.336391577256,650.0,34253.53678932647,0,1,0,1,83.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0326973534700509,17126.768394663235,4,2,4_0,4_0_0,4_4_0,4_0_1 -7353,2,37.0,0.0,2,111,373.0,121.0,0.0,31,47,0.0,0.0,515.5509868858221,494.0,0.0,219.45200100254132,12,0,0,0,0,0,0,0,0,0,,2,,2,111695,2,1,0,1,1,726.0,0.0,1495.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1196.62675769058,373.0,57792.298795724266,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00854785170851429,38528.19919714951,9,5,9,9_0,9_4,9_0_1 -7354,2,74.0,0.0,2,111,360.0,860.0,0.0,0,77,0.0,0.0,497.582721927335,1220.0,0.0,1559.741494728806,50,0,0,0,0,0,0,0,0,0,,2,,2,126507,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,987.336670909187,360.0,42031.882282804196,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029025585668313463,42031.882282804196,9,5,9,9_0,9_4,9_0_1 -7355,1,56.0,96.0,2,111,489.0,0.0,0.0,0,54,0.0,0.0,675.88319728463,489.0,0.0,0.0,10,2,1,2,2,1,2,2,2,0,,2,,2,121338,1,2,0,1,1,750.0,0.0,323.0,22,1.0,0.0,4.0,2.0,1.5,2,2,247.398630767306,489.0,58044.40273848518,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.008424584919981928,38696.268492323456,9,5,9,9_0,9_4,9_0_1 -7356,2,61.0,0.0,2,111,3000.0,40.0,0.0,54,78,0.0,0.0,4146.522682727792,3040.0,0.0,72.54611603389796,41,0,0,0,0,0,0,0,0,0,,2,,2,122703,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,876.696938577607,3000.0,43314.0760709766,1,5,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07018503626900652,28876.050713984398,8,4,8,8_0,8_4,8_0_1 -7358,2,76.0,0.0,2,111,365.0,110.0,0.0,0,75,0.0,0.0,504.49359306521467,475.0,0.0,199.50181909321938,12,0,0,0,0,0,0,0,0,0,,2,,2,102594,2,2,0,1,1,720.0,0.0,344.0,11,0.0,2.0,4.0,1.0,1.0,4,3,278.620501271045,365.0,21277.87981030866,0,5,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022323652743346783,21277.87981030866,6,3,6,6_0,6_4,6_0_1 -7359,2,67.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,509.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,122664,2,1,0,1,1,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,1348.06697123167,0.0,106651.78638204804,5,5,1,2,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004772540782173682,71101.19092136536,10,5,10,10_0,10_4,10_0_1 -7360,2,41.0,0.0,1,111,312.0,1100.0,0.0,42,38,0.0,0.0,431.23835900369033,1412.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,1,20.0,2,,1,124255,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,831.68224753061,312.0,70961.75679469423,1,1,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019898041759101072,47307.83786312948,10,5,10,10_0,10_4,10_1_0 -7361,2,54.0,0.0,2,111,1050.0,0.0,0.0,85,68,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,111194,2,1,0,1,1,624.0,0.0,424.0,42,1.0,3.0,2.0,2.0,1.5,3,3,327.291240888783,1050.0,26192.70766319843,7,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040087493568879196,17461.805108798955,4,2,4_0,4_0_0,4_4_0,4_0_1 -7362,0,42.0,0.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,620.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,1,129873,2,1,0,0,1,,0.0,,32,1.0,0.0,2.0,2.0,1.5,1,1,1141.51143318317,0.0,30707.671840390714,0,1,5,0,27.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020190394218831516,20471.78122692714,5,3,5,5_0,5_4,5_1_0 -7363,2,37.0,0.0,2,111,690.0,0.0,0.0,0,45,0.0,0.0,953.7002170273921,690.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103105,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1157.98280330207,690.0,5992.112529663397,0,4,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11515137550975871,5992.112529663397,1,1,1_0,1_0_0,1_4_0,1_0_1 -7364,1,25.0,230.0,7,111,480.0,0.0,0.0,0,43,0.0,0.0,663.4436292364467,480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,108637,2,1,0,1,1,922.0,0.0,592.0,22,2.0,0.0,5.0,4.0,2.3,2,2,297.421244350347,480.0,41336.15595064775,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011612110244916915,17972.241717672936,4,2,4_1,4_0_1,4_4_1,4_0_0 -7365,2,49.0,0.0,7,111,450.0,1550.0,0.0,0,52,0.0,0.0,621.9784024091688,2000.0,0.0,2811.161996313546,42,0,0,0,0,0,0,0,0,0,,1,,5,121398,2,1,2,0,1,,260.0,,32,2.0,0.0,6.0,3.0,2.0,1,1,883.924067710857,450.0,36806.16229324015,0,1,0,1,148.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05433872687040022,18403.081146620076,4,2,4_0,4_1_0,4_4_0,4_0_0 -7366,2,43.0,0.0,2,111,1000.0,0.0,0.0,0,45,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,1,,2,110513,2,1,1,0,1,,660.0,,32,2.0,0.0,5.0,3.0,1.8,3,2,310.468759376019,1000.0,42895.48796894189,0,1,1,2,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.02331247521240559,23830.82664941216,6,3,6,6_1,6_4,6_0_1 -7367,2,31.0,0.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,785.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,102394,1,1,0,0,1,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,689.680125244742,0.0,4825.588837168183,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1626744479251291,4825.588837168183,1,1,1_0,1_0_0,1_4_0,1_1_0 -7369,1,46.0,19.0,2,111,300.0,550.0,0.0,81,47,0.0,0.0,414.65226827277917,850.0,0.0,997.5090954660969,71,2,2,2,1,1,1,2,2,3,120.0,2,,2,124196,1,2,0,1,1,683.0,0.0,299.0,43,2.0,1.0,3.0,2.0,1.5,3,3,268.257784012262,300.0,16702.50091538651,4,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.050890582452653634,11135.000610257674,2,1,2_1,2_0_1,2_4_1,2_0_1 -7370,2,31.0,0.0,1,111,960.0,0.0,0.0,0,34,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,115292,2,2,0,0,2,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,904.770074336923,960.0,14746.270190072628,0,1,3,4,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06510120780550216,14746.270190072628,3,2,3_0,3_0_0,3_4_0,3_1_0 -7371,1,56.0,300.0,2,111,360.0,180.0,0.0,0,77,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,50,2,1,2,2,1,2,2,2,0,,2,,2,112467,2,1,0,1,1,672.0,0.0,,31,0.0,2.0,3.0,2.0,1.5,3,3,301.432689568234,360.0,16370.781516817813,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03298559689684053,10913.854344545209,2,1,2_1,2_0_1,2_4_1,2_0_1 -7372,2,51.0,0.0,5,111,400.0,120.0,0.0,38,37,0.0,360.2400316771713,552.8696910303722,868.0,0.0,217.63834810169388,42,0,0,0,0,0,0,0,0,3,20.0,2,,3,112067,2,1,0,1,1,624.0,0.0,836.0,43,2.0,0.0,3.0,3.0,2.0,1,1,1044.71273618043,400.0,82814.86376597239,1,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010481210262603251,41407.431882986195,9,5,9,9_0,9_4,9_0_0 -7373,2,78.0,0.0,2,111,276.0,0.0,0.0,0,78,0.0,0.0,381.48008681095683,276.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,110472,2,1,0,1,1,60.0,0.0,336.0,11,0.0,1.0,2.0,1.0,1.0,1,1,278.643244950271,276.0,17291.241857219302,0,5,2,3,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015961837922287038,17291.241857219302,4,2,4_0,4_0_0,4_4_0,4_0_1 -7374,2,78.0,0.0,5,111,250.0,0.0,0.0,0,75,0.0,272.2503687675174,345.54355689398267,513.0,0.0,0.0,10,2,2,2,1,1,2,2,2,0,,2,,3,128144,1,3,0,1,1,556.0,0.0,433.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1171.17259080609,250.0,24097.76358298232,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.021288282550928385,24097.76358298232,6,3,6,6_0,6_4,6_0_0 -7375,2,49.0,0.0,2,111,1284.0,334.0,0.0,0,63,0.0,0.0,1774.711708207495,1618.0,0.0,605.7600688830479,44,0,0,0,0,0,0,0,0,0,,2,,2,133218,2,1,0,0,1,,0.0,500.0,32,2.0,5.0,2.0,3.0,2.0,1,1,386.075096208076,1284.0,22924.711126054433,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07057886099864996,11462.355563027217,2,1,2_0,2_0_0,2_4_0,2_0_1 -7376,2,39.0,0.0,1,111,540.0,0.0,0.0,0,46,0.0,0.0,746.3740828910024,540.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,20.0,2,,1,123788,2,2,0,0,1,,0.0,600.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1320.8955719601,540.0,36286.610614546924,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014881522160780694,36286.610614546924,9,5,9,9_0,9_4,9_1_0 -7377,1,50.0,283.0,5,111,250.0,200.0,0.0,43,21,0.0,0.0,345.54355689398267,450.0,0.0,362.73058016948977,31,0,0,0,0,0,0,0,0,0,,2,,3,129528,2,1,0,1,1,324.0,0.0,325.0,43,2.0,0.0,1.0,4.0,2.1,3,3,368.331534108813,250.0,14496.42241912996,4,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03104214177741986,6903.05829482379,1,1,1_1,1_0_1,1_4_1,1_0_0 -7378,2,60.0,0.0,1,111,750.0,1200.0,0.0,77,52,0.0,0.0,1036.630670681948,1950.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,3,35.0,2,,1,126829,2,1,0,0,1,,600.0,,42,3.0,0.0,4.0,4.0,2.5,2,2,347.17303497559,750.0,85020.63690663179,5,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02293560799999013,34008.254762652716,9,5,9,9_0,9_4,9_1_0 -7379,1,44.0,100.0,1,111,970.0,0.0,0.0,34,34,0.0,776.3793786145933,1340.7090007486527,1720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,15.0,2,,1,122204,2,1,0,1,1,,0.0,,43,2.0,0.0,1.0,6.0,3.0999999999999996,2,2,690.554240587748,970.0,67003.68667220713,1,1,1,2,13.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025670229287748272,21614.092474905527,6,3,6,6_0,6_4,6_1_0 -7380,2,67.0,0.0,2,111,260.0,0.0,0.0,0,52,0.0,0.0,359.36529916974195,260.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,117787,2,1,0,1,1,912.0,0.0,389.0,11,0.0,2.0,3.0,1.0,1.0,3,2,263.807968811051,260.0,20769.008453778333,0,5,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01251865251914327,20769.008453778333,5,3,5,5_0,5_4,5_0_1 -7381,1,87.0,276.0,2,111,400.0,0.0,0.0,0,86,0.0,0.0,552.8696910303722,400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,108361,2,1,0,1,1,1068.0,0.0,436.0,21,1.0,1.0,4.0,2.0,1.5,2,2,247.398630767306,400.0,15598.120873182255,0,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025644114650227985,10398.74724878817,2,1,2_1,2_0_1,2_4_1,2_0_1 -7382,2,60.0,0.0,1,111,580.0,500.0,0.0,0,34,0.0,0.0,801.6610519940398,1080.0,0.0,906.8264504237244,30,2,1,2,2,1,2,2,2,0,,2,,1,117296,2,1,0,1,2,,0.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,787.382791523555,580.0,42401.0856293471,0,1,1,2,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.025471045940684563,42401.0856293471,9,5,9,9_0,9_4,9_1_0 -7383,2,28.0,0.0,6,111,420.0,0.0,0.0,52,46,0.0,0.0,580.5131755818909,480.0,103.2196202514115,0.0,31,2,2,1,2,1,2,2,2,3,30.0,2,,4,125641,2,3,0,1,1,573.0,0.0,279.0,43,2.0,0.0,2.0,2.0,1.5,2,2,387.324511746829,420.0,47141.94060024733,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010182016138671255,31427.960400164888,8,4,8,8_0,8_4,8_0_0 -7384,2,64.0,0.0,1,111,159.0,274.0,0.0,0,34,0.0,0.0,219.76570218457294,433.0,0.0,496.940894832201,42,0,0,0,0,0,0,0,0,1,10.0,2,,1,133663,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,787.447065263486,159.0,37612.09892695166,0,1,0,1,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011512253034348096,37612.09892695166,9,5,9,9_0,9_4,9_1_0 -7385,2,77.0,0.0,7,111,300.0,3800.0,0.0,74,75,0.0,0.0,414.65226827277917,4100.0,0.0,6891.881023220306,60,0,0,0,0,0,0,0,0,0,,1,,5,123529,2,1,2,0,2,,50.0,,41,1.0,0.0,5.0,3.0,2.0,1,1,441.229206122537,300.0,60115.18597984598,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06820240066086716,30057.59298992299,8,4,8,8_1,8_4,8_0_0 -7386,2,55.0,0.0,7,111,1500.0,0.0,0.0,0,34,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,5,118767,2,1,0,0,1,,0.0,609.0,32,2.0,0.0,4.0,3.0,2.0,1,1,724.188551417411,1500.0,65464.16355899012,0,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022913299711655854,32732.08177949506,8,4,8,8_0,8_4,8_0_0 -7387,1,47.0,216.0,5,111,540.0,0.0,0.0,85,63,0.0,0.0,746.3740828910024,540.0,0.0,0.0,20,2,2,2,1,2,2,2,2,3,30.0,2,,3,121673,2,2,0,1,1,,0.0,635.0,42,1.0,4.0,2.0,5.0,2.5999999999999996,2,2,404.404076947782,540.0,27935.754786482154,6,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.019330066580527865,10744.521071723906,2,1,2_1,2_0_1,2_4_1,2_0_0 -7390,1,54.0,430.0,2,111,421.0,186.0,0.0,81,63,0.0,0.0,581.8953498094668,607.0,0.0,337.3394395576255,31,1,2,2,1,2,2,2,2,0,,2,,2,126028,2,2,0,1,1,,0.0,383.0,43,3.0,0.0,4.0,5.0,3.0,4,4,198.453925330174,421.0,16108.65189912323,4,4,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03768161381853674,5369.550633041076,1,1,1_1,1_0_1,1_4_1,1_0_1 -7391,2,39.0,0.0,2,111,570.0,620.0,0.0,0,52,0.0,0.0,787.8393097182804,1190.0,0.0,1124.4647985254182,70,2,2,2,2,1,1,2,2,3,20.0,2,,2,101817,1,3,0,0,1,,216.0,200.0,32,1.0,0.0,2.0,3.0,1.6,2,2,1440.92060194874,570.0,23909.57868966424,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04977084771947151,14943.486681040149,3,2,3_0,3_0_0,3_4_0,3_0_1 -7392,2,70.0,0.0,2,111,444.0,252.0,0.0,78,78,0.0,0.0,613.6853570437131,696.0,0.0,457.04053101355714,12,0,0,0,0,0,0,0,0,0,,2,,2,105678,2,1,0,1,1,,732.0,720.0,41,1.0,0.0,3.0,3.0,2.0,4,3,222.1165076929,444.0,52621.54700862956,7,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013226521065332057,26310.77350431478,7,4,7,7_0,7_4,7_0_1 -7393,2,46.0,0.0,2,111,1200.0,0.0,0.0,0,56,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108534,2,2,0,1,2,,0.0,,32,1.0,0.0,3.0,4.0,2.5,2,2,832.590077178591,1200.0,47795.57361341791,0,4,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025106927467925973,19118.229445367164,5,3,5,5_0,5_4,5_0_1 -7394,2,60.0,0.0,2,111,890.0,0.0,0.0,0,33,693.0233829363523,0.0,1230.1350625425782,1354.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,2,130388,2,2,0,1,1,,0.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,1003.03486402724,890.0,118271.54253399535,0,1,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011448231510219911,78847.69502266357,10,5,10,10_0,10_4,10_0_1 -7395,2,67.0,0.0,6,111,360.0,463.0,0.0,52,68,0.0,0.0,497.582721927335,823.0,0.0,839.7212930923688,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,123880,2,2,0,1,1,,480.0,1600.0,43,2.0,1.0,4.0,5.0,2.8,4,4,283.432545653327,360.0,24603.39411592781,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033450669290673356,8786.926469974218,1,1,1_0,1_0_0,1_4_0,1_0_0 -7396,2,81.0,0.0,2,111,335.0,0.0,0.0,75,74,0.0,0.0,463.0283662379367,335.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118818,2,2,0,1,1,,0.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,1003.03486402724,335.0,80351.64137513415,5,5,0,1,124.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004169174322600336,53567.760916756095,10,5,10,10_0,10_4,10_0_1 -7397,2,80.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123508,2,2,0,1,2,,0.0,,11,0.0,0.0,1.0,1.0,1.0,4,3,1126.02739793172,300.0,20890.195472751773,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014360803870471506,20890.195472751773,5,3,5,5_0,5_4,5_0_1 -7398,2,72.0,0.0,5,111,1450.0,0.0,0.0,75,75,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,12,2,2,2,1,2,2,2,2,0,,2,,3,107970,1,3,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,4,4,926.165801445187,1450.0,16547.485116727716,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.08762660850102273,11031.656744485144,2,1,2_0,2_0_0,2_4_0,2_0_0 -7399,2,58.0,0.0,2,111,720.0,600.0,0.0,54,52,0.0,0.0,995.16544385467,1320.0,0.0,1088.1917405084694,44,2,1,2,2,2,2,2,1,1,30.0,2,,2,115187,2,3,0,1,1,936.0,0.0,600.0,43,2.0,2.0,4.0,2.0,1.5,2,2,327.26452641739,720.0,48868.84956175849,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02701107171209007,32579.233041172327,8,4,8,8_0,8_4,8_0_1 -7400,2,48.0,0.0,5,111,540.0,0.0,0.0,55,67,0.0,0.0,746.3740828910024,540.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,3,128451,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.5,1,1,832.590077178591,540.0,39719.63164109366,1,1,1,2,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013595292244385259,15887.852656437466,3,2,3_0,3_0_0,3_4_0,3_0_0 -7401,2,58.0,0.0,5,111,760.0,0.0,0.0,21,46,0.0,1602.4470374605207,1050.452412957707,2308.0,0.0,0.0,71,2,1,2,2,1,2,2,2,1,10.0,2,,3,113259,2,1,0,1,2,,0.0,,43,3.0,0.0,5.0,3.0,2.0,2,2,889.090684749579,760.0,56003.48116462643,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.041211723842942215,28001.740582313214,7,4,7,7_0,7_4,7_0_0 -7402,2,56.0,0.0,2,111,650.0,0.0,0.0,56,46,0.0,1066.2276799640415,898.4132479243549,1680.0,0.0,0.0,43,2,1,2,2,1,2,2,2,2,15.0,2,,2,111244,1,3,0,1,1,670.0,0.0,363.0,43,2.0,0.0,4.0,5.0,3.0,1,1,806.509902533145,650.0,38249.03565965596,1,1,2,3,101.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04392267598453517,12749.678553218653,2,1,2_0,2_0_0,2_4_0,2_0_1 -7403,1,76.0,104.0,2,111,540.0,0.0,0.0,86,77,0.0,385.0841717928383,746.3740828910024,912.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129942,2,1,0,1,1,,0.0,219.0,41,0.0,5.0,1.0,2.0,1.5,4,4,982.607921758211,540.0,12743.452990749942,6,5,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07156616033833146,8495.635327166628,1,1,1_1,1_0_1,1_4_1,1_0_1 -7404,1,37.0,440.0,5,111,420.0,0.0,0.0,68,68,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,50.0,2,,3,110995,1,3,0,2,1,,410.0,660.0,43,2.0,0.0,4.0,7.0,2.9999999999999996,1,1,425.190110574411,420.0,28520.54910337676,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.01472622418585458,9506.849701125588,1,1,1_1,1_0_1,1_4_1,1_0_0 -7405,2,72.0,0.0,7,111,1350.0,0.0,0.0,74,74,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,113517,2,2,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,677.563064435254,1350.0,84930.38726208136,5,5,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01589537082686459,56620.25817472091,10,5,10,10_0,10_4,10_0_0 -7406,1,36.0,227.0,2,111,336.0,336.0,0.0,64,23,0.0,0.0,464.41054046551267,672.0,0.0,609.3873746847428,10,0,0,0,0,0,0,0,0,3,35.0,2,,2,112696,2,1,0,1,2,,0.0,760.0,43,2.0,0.0,4.0,4.0,2.3,2,2,226.008047484402,336.0,25433.751940523845,4,1,2,3,91.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02642158347582591,11058.153017619064,2,1,2_1,2_0_1,2_4_1,2_0_1 -7407,2,77.0,0.0,7,111,1012.0,0.0,0.0,75,74,0.0,0.0,1398.7603183068418,1012.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,107043,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,715.607498539626,1012.0,78103.73499588725,5,5,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012957126826947385,52069.156663924834,10,5,10,10_0,10_4,10_0_0 -7408,1,42.0,308.0,5,111,430.0,0.0,0.0,0,35,0.0,0.0,594.3349178576501,430.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,102659,2,1,0,0,1,,0.0,309.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1271.01329607236,430.0,4666.027327851381,0,4,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09215548255222221,4666.027327851381,1,1,1_1,1_0_1,1_4_1,1_0_0 -7409,2,43.0,0.0,1,111,0.0,0.0,0.0,52,65,0.0,0.0,0.0,532.0,77.41471518855863,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,113540,2,1,2,0,1,,212.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,294.641821225888,0.0,43329.56689914714,1,1,1,2,38.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012277990251743583,28886.37793276476,8,4,8,8_1,8_4,8_1_0 -7411,2,24.0,0.0,1,111,0.0,0.0,0.0,35,46,0.0,0.0,0.0,322.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,2,,1,119984,2,1,0,0,1,,0.0,850.0,42,1.0,0.0,1.0,2.0,1.5,2,2,1147.28683246463,0.0,33851.982250426285,3,2,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009511998370374461,22567.988166950858,6,3,6,6_0,6_4,6_1_0 -7412,2,35.0,0.0,1,111,840.0,0.0,0.0,47,38,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,1,123445,1,3,0,0,1,,0.0,715.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1141.3834036995,840.0,75148.6276679578,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011177848831937657,50099.085111971865,10,5,10,10_0,10_4,10_1_0 -7413,2,71.0,0.0,5,111,330.0,89.0,0.0,0,72,0.0,0.0,456.1174951000571,419.0,0.0,161.41510817542294,50,0,0,0,0,0,0,0,0,0,,2,,3,111369,2,2,0,1,1,562.0,0.0,216.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1108.81806003541,330.0,12542.804325314593,0,5,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03340560764025877,12542.804325314593,2,1,2_0,2_0_0,2_4_0,2_0_0 -7414,2,78.0,0.0,5,111,200.0,70.0,0.0,0,77,0.0,0.0,276.4348455151861,270.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,0,,2,,3,130089,2,3,0,1,1,461.0,0.0,202.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1108.81806003541,200.0,22739.895692545997,0,5,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01187340538630986,22739.895692545997,6,3,6,6_0,6_4,6_0_0 -7415,1,25.0,420.0,2,111,500.0,130.0,0.0,0,46,2688.452778632401,0.0,691.0871137879653,2430.0,0.0,235.77487711016835,50,0,0,0,0,0,0,0,0,0,,2,,2,108840,1,2,0,1,1,,0.0,409.0,22,2.0,1.0,4.0,4.0,2.3,4,3,234.890223323764,500.0,20130.03839750965,0,1,2,3,117.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12071511996224622,8752.19060761289,1,1,1_1,1_0_1,1_4_1,1_0_1 -7416,2,26.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,699.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,1,114005,2,2,0,0,1,,0.0,850.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1405.38142449854,0.0,33445.24457422654,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02089983221526988,33445.24457422654,8,4,8,8_0,8_4,8_1_0 -7417,1,92.0,280.0,2,111,300.0,120.0,0.0,0,72,0.0,0.0,414.65226827277917,1299.0,0.0,217.63834810169388,50,2,2,1,1,2,2,2,2,0,,2,,2,109505,2,1,0,1,1,,0.0,640.0,11,0.0,6.0,4.0,1.0,1.0,2,2,278.620501271045,300.0,16527.434140749552,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07859659212298563,16527.434140749552,4,2,4_1,4_0_1,4_4_1,4_0_1 -7418,2,57.0,0.0,7,111,1400.0,0.0,0.0,37,31,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,30.0,2,,5,128821,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,771.707012636318,1400.0,120586.79045803263,1,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011609895202304408,66992.66136557369,10,5,10,10_0,10_4,10_0_0 -7419,2,37.0,0.0,7,111,266.0,0.0,0.0,0,37,0.0,0.0,367.65834453519756,266.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,5,124733,1,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,944.224677551071,266.0,47734.02226107499,0,1,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005572545270648843,47734.02226107499,10,5,10,10_0,10_4,10_0_0 -7420,2,34.0,0.0,2,111,300.0,150.0,0.0,0,64,0.0,0.0,414.65226827277917,450.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,0,,2,,2,112912,2,2,0,1,1,281.0,0.0,320.0,22,2.0,0.0,2.0,2.0,1.5,4,3,247.418825817826,300.0,42465.76548260462,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010596771184646015,28310.510321736412,8,4,8,8_0,8_4,8_0_1 -7421,1,26.0,88.0,8,111,875.0,0.0,0.0,0,54,0.0,766.0276535663987,1209.4024491289392,1615.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,2002.0,6,126545,2,1,0,1,1,841.0,0.0,709.0,22,3.0,0.0,4.0,5.0,3.0,4,4,488.064722672152,875.0,37968.06494784326,0,1,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04253574687618465,12656.021649281087,2,1,2_1,2_0_1,2_4_1,2_0_0 -7422,2,63.0,0.0,5,111,320.0,120.0,0.0,46,31,0.0,0.0,442.2957528242978,440.0,0.0,217.63834810169388,60,2,2,2,1,2,2,2,2,0,,2,,3,124145,1,2,0,1,2,,0.0,533.0,43,2.0,4.0,2.0,2.0,1.5,3,3,346.35388860653,320.0,30920.32036441207,1,1,2,3,91.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.014230124229450762,20613.546909608045,5,3,5,5_0,5_4,5_0_0 -7423,2,47.0,0.0,2,111,280.0,50.0,0.0,0,42,0.0,0.0,387.00878372126056,330.0,0.0,90.68264504237244,50,0,0,0,0,0,0,0,0,0,,2,,2,133464,1,1,0,1,2,664.0,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1423.26701385739,280.0,72964.65104102148,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0045227380010968675,72964.65104102148,10,5,10,10_0,10_4,10_0_1 -7424,2,66.0,0.0,2,111,780.0,360.0,0.0,75,78,0.0,0.0,1078.0958975092258,1140.0,0.0,652.9150443050816,10,0,0,0,0,0,0,0,0,0,,2,,2,111933,2,1,0,1,1,,0.0,680.0,41,3.0,0.0,4.0,5.0,3.0,1,1,198.453925330174,780.0,66248.68511323044,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017207888700757505,22082.89503774348,6,3,6,6_0,6_4,6_0_1 -7425,2,46.0,0.0,2,111,210.0,240.0,0.0,0,47,0.0,0.0,290.25658779094545,450.0,0.0,435.27669620338776,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,112007,2,2,0,1,1,310.0,0.0,552.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1001.92178014231,210.0,38531.53645369406,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011678745293242985,38531.53645369406,9,5,9,9_0,9_4,9_0_1 -7426,1,51.0,543.0,2,111,600.0,180.0,0.0,0,85,896.1509262108004,0.0,829.3045365455583,1380.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,0,,2,,2,109579,2,2,0,1,1,645.0,0.0,518.0,31,1.0,0.0,5.0,7.0,3.8,5,2,245.509307757122,600.0,23193.673432418596,0,6,2,3,83.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0594989838078485,6103.598271689105,1,1,1_1,1_0_1,1_4_1,1_0_1 -7427,2,58.0,0.0,2,111,480.0,516.0,0.0,0,37,0.0,0.0,663.4436292364467,996.0,0.0,935.8448968372836,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,127368,2,1,0,1,1,514.0,0.0,668.0,32,1.0,0.0,3.0,2.0,1.5,1,1,904.49955267101,480.0,49759.96119154447,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0200160927812228,33173.307461029646,8,4,8,8_0,8_4,8_0_1 -7428,2,64.0,0.0,2,111,320.0,220.0,0.0,0,75,0.0,0.0,442.2957528242978,540.0,0.0,399.00363818643876,71,0,0,0,0,0,0,0,0,0,,2,,2,125594,1,3,0,1,1,521.0,0.0,488.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1347.49069574071,320.0,23063.92630688348,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023413186151173045,23063.92630688348,6,3,6,6_0,6_4,6_0_1 -7429,1,66.0,61.0,2,111,530.0,370.0,0.0,0,75,0.0,0.0,732.5523406152432,900.0,0.0,671.0515733135561,71,0,0,0,0,0,0,0,0,0,,2,,2,131066,1,2,0,1,1,545.0,0.0,385.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1347.49069574071,530.0,18439.88742733978,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04880723939049762,18439.88742733978,4,2,4_1,4_0_1,4_4_1,4_0_1 -7430,2,56.0,0.0,2,111,286.0,234.0,0.0,0,37,0.0,0.0,395.3018290867161,520.0,0.0,424.39477879830304,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,104812,1,3,0,1,1,448.0,0.0,653.0,32,1.0,0.0,3.0,2.0,1.5,3,3,904.49955267101,286.0,38184.0,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013618269432222921,25456.0,7,4,7,7_0,7_4,7_0_1 -7431,2,57.0,0.0,6,111,300.0,0.0,0.0,0,35,0.0,968.9214645110125,414.65226827277917,1236.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,4,100164,2,1,0,1,1,894.0,0.0,786.0,32,1.0,0.0,2.0,2.0,1.5,5,5,1120.69826987643,300.0,57094.5329706344,0,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021648307389355748,38063.021980422935,9,5,9,9_0,9_4,9_0_0 -7432,2,53.0,0.0,5,111,249.9,0.0,0.0,0,31,0.0,0.0,345.40533947122503,250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,109182,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,987.596083712045,249.9,54403.59537769487,0,1,0,1,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004595284526038851,54403.59537769487,10,5,10,10_0,10_4,10_0_0 -7433,2,51.0,0.0,5,111,350.0,50.0,0.0,47,37,0.0,0.0,483.76097965157567,400.0,0.0,90.68264504237244,70,0,0,0,0,0,0,0,0,3,25.0,2,,3,124468,2,2,0,1,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,2,2,371.792321872847,350.0,79441.7178850458,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005035137842547794,39720.8589425229,9,5,9,9_0,9_4,9_0_0 -7434,2,61.0,0.0,1,111,1018.0,0.0,0.0,74,38,0.0,0.0,1407.0533636722973,1018.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,25.0,1,,1,127277,2,1,3,0,1,,697.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,778.163074441066,1018.0,92338.61394093736,5,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,0,0.011024640251272824,61559.075960624905,10,5,10,10_1,10_4,10_1_0 -7435,2,32.0,0.0,2,111,304.0,0.0,0.0,33,33,0.0,0.0,420.1809651830829,304.0,0.0,0.0,33,2,1,2,1,1,2,2,2,1,30.0,2,,2,101950,1,2,0,1,2,667.0,0.0,1620.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1007.38560702923,304.0,140783.48368893476,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.002159344207390811,67039.75413758798,10,5,10,10_0,10_4,10_0_1 -7436,2,58.0,0.0,5,111,795.0,1136.0,0.0,85,31,0.0,0.0,1098.8285109228648,1931.0,0.0,2060.309695362702,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,101215,1,2,3,0,1,,1000.0,,42,2.0,0.0,6.0,5.0,2.8,1,1,470.077961241999,795.0,70251.15672870066,6,1,0,1,152.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027487091884582482,25089.69883167881,7,4,7,7_1,7_4,7_0_0 -7437,2,45.0,0.0,5,111,642.0,0.0,0.0,34,34,0.0,0.0,887.3558541037474,642.0,0.0,0.0,20,2,1,2,1,1,2,2,2,2,45.0,2,,3,132361,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,879.009534855711,642.0,91040.12849853652,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0070518353893834875,43352.442142160246,10,5,10,10_0,10_4,10_0_0 -7438,2,29.0,0.0,2,111,429.0,48.0,0.0,46,53,0.0,0.0,592.9527436300742,477.0,0.0,87.05533924067754,31,2,1,2,1,1,2,2,2,3,10.0,2,,2,118036,1,3,0,1,1,420.0,0.0,348.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1039.93243151822,429.0,45982.275537883805,1,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01037356230026089,30654.850358589203,8,4,8,8_0,8_4,8_0_1 -7439,1,65.0,45.0,2,111,400.0,100.0,0.0,78,77,0.0,0.0,552.8696910303722,500.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,110808,1,1,0,1,1,945.0,0.0,350.0,41,1.0,1.0,4.0,3.0,2.0,2,2,285.838266020085,400.0,23372.776126364595,6,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021392409583558102,11686.388063182298,2,1,2_1,2_0_1,2_4_1,2_0_1 -7440,2,35.0,0.0,7,111,750.0,0.0,0.0,0,46,0.0,0.0,1036.630670681948,750.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,5,101563,1,3,0,0,1,,0.0,280.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1308.86817201948,750.0,5924.152180240363,0,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.12660039397731507,5924.152180240363,1,1,1_0,1_0_0,1_4_0,1_0_0 -7441,2,75.0,0.0,2,111,350.0,84.0,0.0,0,77,0.0,0.0,483.76097965157567,434.0,0.0,152.3468436711857,42,0,0,0,0,0,0,0,0,0,,2,,2,123731,2,1,0,1,1,720.0,0.0,329.0,11,0.0,0.0,3.0,1.0,1.0,3,3,309.286700597061,350.0,22875.403275087327,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0189723431224774,22875.403275087327,6,3,6,6_0,6_4,6_0_1 -7442,2,62.0,0.0,2,111,385.0,0.0,0.0,77,75,0.0,0.0,532.1370776167332,385.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,122431,2,1,0,1,1,,0.0,379.0,41,0.0,2.0,4.0,2.0,1.5,2,2,290.048502276499,385.0,34086.94292700353,5,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011294647361732302,22724.628618002356,6,3,6,6_0,6_4,6_0_1 -7443,2,58.0,0.0,2,111,780.0,553.0,0.0,77,78,0.0,0.0,1078.0958975092258,1333.0,0.0,1002.9500541686392,41,0,0,0,0,0,0,0,0,0,,2,,2,130104,2,2,0,1,1,646.0,0.0,258.0,41,0.0,4.0,4.0,2.0,1.5,3,3,364.363079705158,780.0,48547.39758769324,5,5,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027457702497690945,32364.931725128827,8,4,8,8_0,8_4,8_0_1 -7444,2,78.0,0.0,2,111,295.0,0.0,0.0,0,74,0.0,0.0,407.7413971348995,295.0,0.0,0.0,31,2,2,1,2,1,2,2,2,0,,2,,2,130638,1,1,0,1,1,780.0,0.0,287.0,11,0.0,2.0,3.0,1.0,1.0,3,2,1018.6479932529,295.0,21497.843627238573,0,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013722306530605886,21497.843627238573,6,3,6,6_0,6_4,6_0_1 -7445,1,47.0,355.0,2,111,840.0,340.0,0.0,85,63,0.0,0.0,1161.0263511637818,1180.0,0.0,616.6419862881327,10,2,2,1,2,1,2,2,2,2,60.0,2,,2,116714,1,1,0,1,1,,0.0,394.0,42,1.0,3.0,5.0,4.0,2.1,2,2,268.253782434489,840.0,14340.857857708768,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08228238587315083,6828.9799322422705,1,1,1_1,1_0_1,1_4_1,1_0_1 -7446,2,94.0,0.0,2,111,265.0,83.0,0.0,0,77,0.0,0.0,366.2761703076216,348.0,0.0,150.53319077033825,50,2,1,2,2,1,2,2,2,0,,2,,2,106583,2,1,0,1,1,842.0,0.0,682.0,11,0.0,5.0,3.0,1.0,1.0,2,2,1018.6479932529,265.0,41525.877969743655,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008380316492129504,41525.877969743655,9,5,9,9_0,9_4,9_0_1 -7447,2,79.0,0.0,2,111,265.0,0.0,0.0,0,75,0.0,0.0,366.2761703076216,265.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,123286,2,2,0,1,1,906.0,0.0,594.0,11,0.0,1.0,3.0,1.0,1.0,4,3,1018.6479932529,265.0,31341.138088319734,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008455340685243356,31341.138088319734,8,4,8,8_0,8_4,8_0_1 -7448,1,65.0,184.0,2,111,260.0,100.0,0.0,77,78,0.0,0.0,359.36529916974195,360.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,108423,2,1,0,1,1,720.0,0.0,311.0,41,0.0,2.0,3.0,2.0,1.5,1,1,274.628413534487,260.0,12864.806233451334,7,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027983320810842885,8576.537488967557,1,1,1_1,1_0_1,1_4_1,1_0_1 -7449,2,50.0,0.0,2,111,260.0,70.0,0.0,0,38,0.0,0.0,359.36529916974195,330.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,100159,2,3,0,1,1,663.0,0.0,698.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1262.13113127637,260.0,58152.32921694095,0,1,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005674751199885977,58152.32921694095,10,5,10,10_0,10_4,10_0_1 -7450,2,75.0,0.0,8,111,0.0,100.0,0.0,78,78,0.0,0.0,0.0,100.0,0.0,181.36529008474488,50,2,1,2,1,1,2,2,2,0,,2,,6,110377,2,2,0,1,1,852.0,0.0,371.0,41,0.0,2.0,4.0,4.0,2.5,1,1,275.383728936359,0.0,36652.945879916995,5,5,2,3,85.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.00272829366369682,14661.178351966799,3,2,3_0,3_0_0,3_4_0,3_0_0 -7451,2,49.0,0.0,2,111,420.0,60.0,0.0,0,33,0.0,0.0,580.5131755818909,480.0,0.0,108.81917405084694,41,0,0,0,0,0,0,0,0,3,60.0,2,,2,105876,1,1,0,1,1,1047.0,0.0,449.0,32,3.0,0.0,4.0,3.0,2.0,2,2,941.419645636767,420.0,38517.327908039166,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01246192366059268,19258.663954019583,5,3,5,5_0,5_4,5_0_1 -7452,2,34.0,0.0,2,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,1087.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,,2,126664,1,1,0,1,1,792.0,0.0,465.0,43,2.0,0.0,4.0,4.0,2.1,2,2,987.353730792034,0.0,43671.95834420441,1,1,2,3,71.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024890113501041405,20796.170640097338,5,3,5,5_0,5_4,5_0_1 -7453,1,84.0,66.0,2,111,250.0,60.0,0.0,72,78,0.0,0.0,345.54355689398267,310.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,2,,2,108188,2,1,0,1,1,696.0,0.0,352.0,41,0.0,3.0,4.0,2.0,1.5,2,2,274.628413534487,250.0,19790.121228878535,5,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01566438105228156,13193.41415258569,2,1,2_1,2_0_1,2_4_1,2_0_1 -7454,2,82.0,0.0,2,111,288.0,0.0,0.0,75,74,0.0,0.0,398.066177541868,288.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,132723,2,1,0,1,1,708.0,0.0,348.0,41,0.0,0.0,2.0,2.0,1.5,2,2,955.364205062484,288.0,52390.45334978256,5,5,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005497184727094852,34926.96889985504,9,5,9,9_0,9_4,9_0_1 -7455,2,66.0,0.0,1,111,490.0,1879.0,0.0,78,77,0.0,0.0,677.265371512206,2369.0,0.0,3407.8538006923563,31,0,0,0,0,0,0,0,0,0,,1,,1,106820,2,2,2,0,1,,0.0,353.0,41,1.0,1.0,3.0,3.0,2.0,1,1,355.311755995275,490.0,32937.51483655814,5,5,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07192406627383405,16468.75741827907,4,2,4_0,4_1_0,4_4_0,4_1_0 -7456,2,33.0,0.0,1,111,540.0,120.0,0.0,0,63,0.0,0.0,746.3740828910024,660.0,0.0,217.63834810169388,31,0,0,0,0,0,0,0,0,2,10.0,2,,1,107538,2,1,0,1,1,523.0,0.0,245.0,12,1.0,0.0,2.0,1.0,1.0,2,2,326.679479254297,540.0,19972.78869599545,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03304495982237724,19972.78869599545,5,3,5,5_0,5_4,5_1_0 -7457,2,44.0,0.0,2,111,456.0,0.0,0.0,43,52,0.0,211.1751909831694,630.2714477746243,660.0,0.0,0.0,31,2,1,2,2,1,1,2,2,0,,2,,2,121548,2,1,0,1,1,619.0,0.0,845.0,43,2.0,0.0,3.0,4.0,2.1,2,2,858.768301442089,456.0,42025.96041432433,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015704578634092144,20012.362102059204,5,3,5,5_0,5_4,5_0_1 -7458,1,27.0,84.0,2,111,0.0,0.0,480.0,0,56,0.0,0.0,245.23840072201202,480.0,0.0,548.7579718332631,50,1,2,2,2,2,2,2,1,3,35.0,2,,2,108417,2,1,0,1,2,400.0,0.0,385.0,32,2.0,2.0,3.0,4.0,2.1,4,4,260.743275684658,0.0,10331.898179398937,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.046458065271789604,4919.951513999494,1,1,1_1,1_0_1,1_4_1,1_0_1 -7459,2,55.0,0.0,6,111,190.0,0.0,0.0,0,54,0.0,475.1441797121311,262.6131032394268,649.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,4,117054,2,1,0,1,1,459.0,0.0,369.0,12,1.0,0.0,2.0,1.0,1.0,5,5,1171.17259080609,190.0,29450.989838001602,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0220366107750502,29450.989838001602,8,4,8,8_0,8_4,8_0_0 -7460,2,56.0,0.0,7,111,245.0,724.0,0.0,0,55,0.0,0.0,338.632685756103,969.0,0.0,1313.084700213553,44,0,0,0,0,0,0,0,0,3,35.0,2,,5,109268,1,3,0,0,1,,0.0,340.0,12,1.0,1.0,3.0,1.0,1.0,2,2,372.84083973263,245.0,30243.276459532324,0,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032040179287339834,30243.276459532324,8,4,8,8_0,8_4,8_0_0 -7461,2,42.0,0.0,2,111,450.0,500.0,0.0,0,21,0.0,0.0,621.9784024091688,950.0,0.0,906.8264504237244,31,1,2,2,2,2,2,2,1,0,,2,,2,125133,1,3,0,0,1,,0.0,440.0,32,1.0,0.0,3.0,2.0,1.5,2,2,274.628413534487,450.0,26711.41146475725,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.035565323878650884,17807.6076431715,4,2,4_0,4_0_0,4_4_0,4_0_1 -7462,1,58.0,255.0,1,111,355.0,1245.0,0.0,0,75,0.0,0.0,490.67185078945533,1600.0,0.0,2257.997861555074,71,2,2,2,2,1,2,2,2,0,,2,,1,102869,2,3,0,0,1,,0.0,243.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1277.21142467774,355.0,9902.114902985624,0,7,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.16158164348482545,9902.114902985624,2,1,2_1,2_0_1,2_4_1,2_1_0 -7463,2,37.0,0.0,2,111,181.0,200.0,0.0,68,46,0.0,0.0,250.17353519124345,381.0,0.0,362.73058016948977,20,0,0,0,0,0,0,0,0,0,,2,,2,116900,2,1,0,1,2,468.0,0.0,232.0,43,2.0,3.0,4.0,5.0,2.8,2,2,226.642111176387,181.0,27531.04178673204,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013838924184249878,9832.514923832872,2,1,2_0,2_0_0,2_4_0,2_0_1 -7464,2,67.0,0.0,2,111,300.0,91.0,0.0,75,75,0.0,0.0,414.65226827277917,391.0,0.0,165.04241397711786,33,0,0,0,0,0,0,0,0,0,,2,,2,118222,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,284.635135098456,300.0,62476.60701547832,5,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006258342420918142,41651.07134365221,9,5,9,9_0,9_4,9_0_1 -7465,2,81.0,0.0,1,111,440.0,0.0,0.0,0,77,0.0,0.0,608.1566601334094,440.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,109615,2,2,0,1,1,396.0,0.0,221.0,11,0.0,0.0,2.0,1.0,1.0,2,2,935.56524287509,440.0,20324.82068332154,0,5,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02164840747456444,20324.82068332154,5,3,5,5_0,5_4,5_1_0 -7466,2,61.0,0.0,2,111,743.0,799.0,0.0,0,78,0.0,0.0,1026.9554510889163,1542.0,0.0,1449.1086677771116,50,2,1,2,2,1,2,2,2,0,,2,,2,112089,1,2,0,1,1,240.0,0.0,231.0,11,0.0,3.0,2.0,1.0,1.0,2,2,397.996691370921,743.0,15388.330000532153,0,7,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.10020580530484303,15388.330000532153,3,2,3_0,3_0_0,3_4_0,3_0_1 -7467,1,79.0,77.0,1,111,360.0,220.0,0.0,0,75,0.0,0.0,497.582721927335,580.0,0.0,399.00363818643876,10,0,0,0,0,0,0,0,0,0,,2,,1,104018,2,1,0,1,1,912.0,0.0,432.0,11,0.0,3.0,3.0,1.0,1.0,5,4,727.035911191665,360.0,24984.940664348764,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023213983486765177,24984.940664348764,7,4,7,7_0,7_4,7_1_0 -7468,2,50.0,0.0,2,111,0.0,0.0,0.0,55,38,0.0,0.0,0.0,1274.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,,2,102357,2,1,0,1,1,300.0,0.0,534.0,43,2.0,0.0,5.0,5.0,2.8,2,2,226.642111176387,0.0,56543.42100788883,1,1,2,3,102.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022531356916346713,20194.078931388867,5,3,5,5_0,5_4,5_0_1 -7469,2,67.0,0.0,1,111,825.0,0.0,0.0,75,56,0.0,0.0,1140.2937377501428,825.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,128674,2,2,0,1,1,480.0,0.0,446.0,42,2.0,0.0,3.0,4.0,2.5,2,2,612.925562782173,825.0,36652.743152401345,5,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02250854722031765,14661.097260960538,3,2,3_0,3_0_0,3_4_0,3_1_0 -7470,2,86.0,0.0,2,111,212.0,126.0,0.0,75,74,0.0,0.0,293.0209362460973,338.0,0.0,228.52026550677857,50,0,0,0,0,0,0,0,0,0,,2,,2,124618,2,3,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1003.03486402724,212.0,101764.02615025146,5,5,0,1,108.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0033214094684201408,67842.68410016764,10,5,10,10_0,10_4,10_0_1 -7471,2,40.0,0.0,2,111,960.0,300.0,0.0,0,52,0.0,0.0,1326.8872584728933,1260.0,0.0,544.0958702542347,50,2,2,2,2,1,2,2,2,2,30.0,2,,2,116225,2,1,0,1,1,650.0,0.0,308.0,32,2.0,0.0,3.0,3.0,2.0,3,2,270.642009555052,960.0,41526.542348639494,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.030342039783172087,20763.271174319747,5,3,5,5_0,5_4,5_0_1 -7472,2,72.0,0.0,2,111,700.0,400.0,0.0,38,75,0.0,0.0,967.5219593031513,1100.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,0,,2,,2,104227,2,1,0,0,1,,0.0,,42,2.0,1.0,3.0,3.0,2.0,3,3,1085.21117205601,700.0,22735.15204772333,1,5,0,1,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04838322601454308,11367.576023861666,2,1,2_0,2_0_0,2_4_0,2_0_1 -7473,1,38.0,310.0,2,111,120.0,230.0,0.0,0,46,268.84527786324014,0.0,165.86090730911167,530.0,0.0,417.14016719491326,70,2,1,2,1,2,2,2,2,0,,2,,2,103680,2,2,0,1,1,740.0,0.0,304.0,32,1.0,0.0,3.0,2.0,1.3,1,1,274.628413534487,120.0,12867.89148538442,0,4,2,3,79.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04118778904857749,9898.378065680323,2,1,2_1,2_0_1,2_4_1,2_0_1 -7474,0,47.0,0.0,2,111,488.0,720.0,0.0,0,45,0.0,0.0,674.5010230570541,1208.0,0.0,1305.830088610163,20,0,0,0,0,0,0,0,0,3,35.0,2,,2,114102,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,1146.14460702568,488.0,28299.60446396903,0,1,0,1,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04268610897152368,17687.25278998064,4,2,4_0,4_0_0,4_4_0,4_0_1 -7475,2,78.0,0.0,2,111,396.0,720.0,0.0,77,74,0.0,0.0,547.3409941200684,1116.0,0.0,1305.830088610163,10,2,2,2,1,2,2,2,2,0,,2,,2,126109,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1101.19571984268,396.0,41379.00054974562,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02697020191820125,27586.000366497083,7,4,7,7_0,7_4,7_0_1 -7476,2,29.0,0.0,5,111,390.0,240.0,0.0,46,37,0.0,0.0,539.0479487546129,630.0,0.0,435.27669620338776,50,0,0,0,0,0,0,0,0,2,90.0,2,,3,128691,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,371.792321872847,390.0,60791.01401024037,1,1,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010363373769252726,33772.78556124465,9,5,9,9_0,9_4,9_0_0 -7477,2,65.0,0.0,2,111,270.0,0.0,0.0,0,74,0.0,0.0,373.1870414455012,270.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,127296,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1309.90832188634,270.0,33307.52017165379,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008106277459520455,33307.52017165379,8,4,8,8_0,8_4,8_0_1 -7478,2,46.0,0.0,2,111,456.0,534.0,0.0,52,67,0.0,0.0,630.2714477746243,990.0,0.0,968.4906490525377,20,0,0,0,0,0,0,0,0,0,,2,,2,105729,2,1,0,1,1,475.0,0.0,372.0,43,2.0,0.0,4.0,4.0,2.3,2,2,275.383728936359,456.0,34363.608962820785,1,4,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028809546781629263,14940.699549052517,3,2,3_0,3_0_0,3_4_0,3_0_1 -7479,1,48.0,301.0,6,111,720.0,420.0,0.0,68,63,0.0,0.0,995.16544385467,1140.0,0.0,761.7342183559285,71,0,0,0,0,0,0,0,0,0,,2,,4,129823,1,2,0,1,1,1200.0,0.0,486.0,43,2.0,0.0,4.0,6.0,3.3,1,1,438.596115269213,720.0,38375.785148546864,1,1,2,3,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02970623260442053,11629.025802589958,2,1,2_1,2_0_1,2_4_1,2_0_0 -7480,2,59.0,0.0,2,111,220.0,115.0,0.0,0,54,0.0,0.0,304.0783300667047,335.0,0.0,208.57008359745663,31,0,0,0,0,0,0,0,0,0,,2,,2,124585,1,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,1,1290.25926738554,220.0,21081.890813584385,0,1,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015890415284009463,21081.890813584385,5,3,5,5_0,5_4,5_0_1 -7481,2,58.0,0.0,2,111,0.0,0.0,0.0,85,90,0.0,0.0,0.0,404.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,102211,1,1,0,1,1,240.0,0.0,250.0,41,0.0,9.0,2.0,2.0,1.5,2,2,290.072178818841,0.0,8338.005536615057,7,7,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.048452834221073215,5558.670357743372,1,1,1_0,1_0_0,1_4_0,1_0_1 -7482,2,60.0,0.0,2,111,390.0,0.0,0.0,31,34,0.0,0.0,539.0479487546129,390.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,104570,2,1,0,1,2,,0.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,953.377823851537,390.0,168149.53183452046,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002319364173929472,112099.68788968031,10,5,10,10_0,10_4,10_0_1 -7483,2,63.0,0.0,2,111,380.0,0.0,0.0,0,75,0.0,0.0,525.2262064788536,380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114443,2,1,0,1,1,468.0,0.0,240.0,21,1.0,3.0,4.0,3.0,2.0,1,1,285.838266020085,380.0,46356.79843994527,0,5,2,3,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0081972874052613,23178.399219972634,6,3,6,6_0,6_4,6_0_1 -7484,2,34.0,0.0,2,111,280.0,0.0,0.0,0,31,0.0,0.0,387.00878372126056,280.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,2,,2,132235,2,1,0,1,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,4,2,1043.63368010431,280.0,49305.85423174647,0,1,1,2,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005678838838973343,49305.85423174647,10,5,10,10_0,10_4,10_0_1 -7485,2,76.0,0.0,2,111,0.0,78.0,0.0,77,78,0.0,0.0,0.0,78.0,0.0,141.464926266101,50,0,0,0,0,0,0,0,0,0,,2,,2,106045,2,2,0,1,1,720.0,0.0,312.0,41,0.0,6.0,6.0,2.0,1.5,2,2,274.628413534487,0.0,24386.283905223812,5,5,2,3,90.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003198519311230176,16257.522603482541,4,2,4_0,4_0_0,4_4_0,4_0_1 -7486,2,63.0,0.0,7,111,3510.0,0.0,0.0,0,31,0.0,0.0,4851.431538791517,3510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,125790,2,1,0,0,1,,0.0,,12,1.0,2.0,8.0,1.0,1.0,4,4,781.367284055097,3510.0,492786.19061724324,0,1,0,1,300.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007122764531212861,492786.19061724324,10,5,10,10_0,10_4,10_0_0 -7487,2,50.0,0.0,6,111,285.0,361.0,0.0,0,38,0.0,0.0,393.9196548591402,646.0,0.0,654.728697205929,12,0,0,0,0,0,0,0,0,3,60.0,2,,4,108485,2,1,0,0,1,,0.0,461.0,32,1.0,0.0,3.0,2.0,1.5,3,2,723.69170375141,285.0,40688.259557824815,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015876815745385374,27125.50637188321,7,4,7,7_0,7_4,7_0_0 -7488,1,37.0,395.0,2,111,0.0,0.0,0.0,68,53,0.0,0.0,0.0,630.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,119655,2,1,0,1,2,934.0,0.0,368.0,43,2.0,0.0,4.0,4.0,2.1,1,1,275.383728936359,0.0,22419.903244949382,1,1,2,3,78.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028100032061553277,10676.14440235685,2,1,2_1,2_0_1,2_4_1,2_0_1 -7489,2,68.0,0.0,7,111,450.0,800.0,0.0,84,74,0.0,0.0,621.9784024091688,1250.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,0,,2,,5,128585,2,1,0,0,1,,0.0,748.0,41,0.0,2.0,5.0,2.0,1.5,1,1,744.537079002408,450.0,21239.847326638916,3,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05885164713176897,14159.898217759277,3,2,3_0,3_0_0,3_4_0,3_0_0 -7490,2,47.0,0.0,7,111,280.0,1040.0,0.0,45,47,0.0,0.0,387.00878372126056,1320.0,0.0,1886.1990168813468,60,0,0,0,0,0,0,0,0,3,20.0,2,,5,110919,2,1,0,0,1,,0.0,676.0,43,2.0,0.0,5.0,4.0,2.5,2,2,725.682085893646,280.0,67122.2434716339,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019665612049421986,26848.89738865356,7,4,7,7_0,7_4,7_0_0 -7491,2,40.0,0.0,5,111,460.0,0.0,0.0,52,52,1236.6882781709046,0.0,635.800144684928,1288.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,113702,2,1,0,1,1,840.0,0.0,490.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,2,2,407.940512770509,460.0,49838.297055623814,1,1,2,3,72.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025843579658479936,19168.575790624545,5,3,5,5_0,5_4,5_0_0 -7492,2,45.0,0.0,5,111,330.0,420.0,0.0,0,68,0.0,0.0,456.1174951000571,750.0,0.0,761.7342183559285,12,0,0,0,0,0,0,0,0,3,30.0,2,,3,122566,1,3,0,0,2,,0.0,523.0,22,2.0,1.0,3.0,2.0,1.5,3,2,482.943729353094,330.0,36759.35411540283,0,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020402970020785446,24506.23607693522,7,4,7,7_0,7_4,7_0_0 -7493,2,63.0,0.0,6,111,389.0,693.0,0.0,77,38,0.0,0.0,537.665774527037,1082.0,0.0,1256.8614602872822,10,0,0,0,0,0,0,0,0,2,35.0,2,,4,107807,2,1,0,0,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,473.486979143101,389.0,83557.01332578431,5,1,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01294924216332793,55704.67555052287,10,5,10,10_0,10_4,10_0_0 -7494,2,36.0,0.0,2,111,480.0,105.0,0.0,63,45,0.0,0.0,663.4436292364467,585.0,0.0,190.43355458898213,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,131461,2,2,0,1,1,405.0,0.0,290.0,43,2.0,0.0,2.0,3.0,1.8,1,1,1024.83715885509,480.0,44149.64566272581,1,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013250389470144662,24527.58092373656,7,4,7,7_0,7_4,7_0_1 -7495,2,50.0,0.0,2,111,480.0,0.0,0.0,0,52,0.0,0.0,663.4436292364467,480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,110796,2,1,0,1,1,11.0,0.0,368.0,32,1.0,2.0,2.0,2.0,1.3,2,2,364.392822516504,480.0,19203.653981643434,0,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024995243116691584,14772.041524341103,3,2,3_0,3_0_0,3_4_0,3_0_1 -7496,2,80.0,0.0,2,111,265.0,55.0,0.0,0,77,0.0,0.0,366.2761703076216,320.0,0.0,99.75090954660969,42,0,0,0,0,0,0,0,0,0,,2,,2,132949,2,1,0,1,1,270.0,0.0,210.0,11,0.0,1.0,2.0,1.0,1.0,4,4,1075.93179835051,265.0,29281.00335930608,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010928587250692613,29281.00335930608,8,4,8,8_0,8_4,8_0_1 -7497,1,54.0,86.0,1,111,580.0,0.0,0.0,0,67,0.0,0.0,801.6610519940398,580.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,114474,2,2,0,0,1,,0.0,273.0,12,1.0,0.0,1.0,1.0,1.0,1,1,989.157527325572,580.0,11513.289130123452,0,4,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05037656862820233,11513.289130123452,2,1,2_1,2_0_1,2_4_1,2_1_0 -7498,2,92.0,0.0,1,111,1831.0,900.0,0.0,0,75,0.0,0.0,2530.761010691529,2731.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,1,115937,2,1,2,0,2,,250.0,,21,1.0,2.0,7.0,2.0,1.5,1,1,670.141092132479,1831.0,70048.61649067879,0,5,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03898720826789503,46699.07766045252,10,5,10,10_1,10_4,10_1_0 -7499,2,41.0,0.0,6,111,420.0,540.0,0.0,43,63,0.0,0.0,580.5131755818909,960.0,0.0,979.3725664576224,10,0,0,0,0,0,0,0,0,2,20.0,2,,4,102591,1,2,0,0,1,,0.0,418.0,43,2.0,1.0,3.0,4.0,2.5,1,1,499.114673139977,420.0,42725.44294401243,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022469047336922576,17090.17717760497,4,2,4_0,4_0_0,4_4_0,4_0_0 -7500,1,34.0,180.0,2,111,600.0,0.0,0.0,0,63,0.0,0.0,829.3045365455583,978.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,119758,1,2,0,1,1,31.0,0.0,334.0,32,1.0,0.0,2.0,2.0,1.3,2,2,290.072178818841,600.0,25487.857997092342,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038371211896722365,19606.044613147955,5,3,5,5_0,5_4,5_0_1 -7501,1,53.0,250.0,2,111,1200.0,960.0,0.0,0,56,0.0,0.0,1658.6090730911167,2160.0,0.0,1741.106784813551,71,0,0,0,0,0,0,0,0,0,,2,,2,109046,1,2,0,1,1,593.0,0.0,500.0,32,2.0,0.0,3.0,3.0,2.0,4,4,285.838266020085,1200.0,12258.284789564479,0,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1762073599267995,6129.1423947822395,1,1,1_1,1_0_1,1_4_1,1_0_1 -7502,2,39.0,0.0,6,111,720.0,0.0,0.0,0,46,0.0,0.0,995.16544385467,720.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,4,114478,1,2,0,1,1,782.0,0.0,762.0,22,2.0,4.0,5.0,3.0,2.0,2,2,424.278895900736,720.0,54396.05056982951,0,1,2,3,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.013236255067373299,27198.025284914755,7,4,7,7_0,7_4,7_0_0 -7503,1,45.0,170.0,2,111,2040.0,120.0,0.0,0,52,0.0,0.0,2819.635424254898,2160.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,2,103583,2,2,0,1,1,600.0,0.0,320.0,22,3.0,3.0,5.0,4.0,2.5,1,1,268.253782434489,2040.0,48101.6812040603,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04490487537923461,19240.672481624122,5,3,5,5_0,5_4,5_0_1 -7504,2,43.0,0.0,5,111,0.0,0.0,0.0,84,54,0.0,0.0,0.0,264.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,3,100443,2,1,0,1,1,,0.0,300.0,42,1.0,0.0,3.0,5.0,2.4,4,4,334.360362554979,0.0,9121.515833373956,3,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028942557884301678,3800.6315972391485,1,1,1_0,1_0_0,1_4_0,1_0_0 -7505,2,53.0,0.0,1,111,120.0,120.0,0.0,0,47,0.0,0.0,165.86090730911167,240.0,0.0,217.63834810169388,42,0,0,0,0,0,0,0,0,3,120.0,2,,1,132062,1,3,0,0,1,,0.0,459.0,12,1.0,1.0,3.0,1.0,1.0,1,1,914.11438756075,120.0,22429.037340559276,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01070041466139962,22429.037340559276,6,3,6,6_0,6_4,6_1_0 -7506,2,29.0,0.0,5,111,350.0,0.0,0.0,52,62,0.0,0.0,483.76097965157567,350.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,105.0,2,,3,123958,1,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,6,6,501.168973875997,350.0,49679.42165956024,1,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007045170581864986,27599.67869975569,7,4,7,7_0,7_4,7_0_0 -7507,2,51.0,0.0,2,111,510.0,0.0,0.0,53,53,0.0,0.0,704.9088560637246,510.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,45.0,2,,2,109526,2,1,0,1,1,714.0,0.0,532.0,43,2.0,1.0,3.0,4.0,2.3,2,2,260.743275684658,510.0,53435.04440799043,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009544298234432402,23232.6280034741,6,3,6,6_0,6_4,6_0_1 -7508,1,60.0,49.0,2,111,540.0,132.0,0.0,0,52,0.0,0.0,746.3740828910024,672.0,0.0,239.40218291186326,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,123351,2,1,0,1,1,876.0,0.0,655.0,32,2.0,1.0,4.0,3.0,2.0,2,2,278.437641615797,540.0,31560.413880423308,0,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021292496433858134,15780.206940211654,3,2,3_1,3_0_1,3_4_1,3_0_1 -7509,1,40.0,200.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,277.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,101758,2,2,0,1,1,170.0,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1149.61289189609,0.0,8188.582566469422,0,4,3,4,13.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.033827588322093566,8188.582566469422,1,1,1_1,1_0_1,1_4_1,1_1_0 -7510,2,61.0,0.0,6,111,1514.0,0.0,0.0,0,75,0.0,0.0,2092.611780549959,1514.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,132669,2,1,0,0,1,,0.0,1260.0,42,1.0,0.0,3.0,2.0,1.5,1,1,1219.1157762604,1514.0,74431.08652542079,1,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020340963308159106,49620.72435028053,10,5,10,10_0,10_4,10_0_0 -7511,2,41.0,0.0,5,111,480.0,42.0,0.0,0,54,0.0,0.0,663.4436292364467,522.0,0.0,76.17342183559285,10,0,0,0,0,0,0,0,0,0,,2,,3,121530,1,1,0,1,1,708.0,0.0,497.0,22,2.0,0.0,3.0,2.0,1.5,1,1,384.443740831376,480.0,47078.8108310818,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011087790680884647,31385.873887387865,8,4,8,8_0,8_4,8_0_0 -7512,2,76.0,0.0,5,111,370.0,0.0,0.0,75,72,0.0,0.0,511.40446420309434,370.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,107722,2,2,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,388.135541066548,370.0,67269.87630135428,5,5,0,1,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005500233096051511,44846.58420090285,10,5,10,10_0,10_4,10_0_0 -7513,1,40.0,120.0,1,111,240.0,960.0,0.0,0,46,0.0,0.0,331.72181461822333,1200.0,0.0,1741.106784813551,10,0,0,0,0,0,0,0,0,0,,2,,1,110219,1,3,0,0,2,,0.0,720.0,32,1.0,0.0,3.0,3.0,1.8,2,2,1481.23333054644,240.0,30028.436902162794,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.039962120036743244,16682.464945645996,4,2,4_1,4_0_1,4_4_1,4_1_0 -7514,1,22.0,410.0,2,111,528.0,578.0,0.0,0,62,0.0,0.0,729.7879921600913,1106.0,0.0,1048.2913766898255,10,0,0,0,0,0,0,0,0,0,,2,,2,111557,2,2,0,0,2,,0.0,504.0,22,2.0,0.0,4.0,4.0,2.3,2,2,1507.18492912952,528.0,11795.275229357798,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09376635801148804,5128.380534503391,1,1,1_1,1_0_1,1_4_1,1_0_1 -7515,1,31.0,220.0,1,111,270.0,112.0,0.0,0,52,0.0,0.0,373.1870414455012,382.0,0.0,203.12912489491427,10,1,2,2,2,1,2,2,2,2,30.0,2,,1,112658,2,1,0,1,1,571.0,0.0,161.0,32,1.0,0.0,3.0,2.0,1.3,1,1,334.582386970465,270.0,18352.380708571814,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.02081473821113464,14117.215929670627,3,2,3_1,3_0_1,3_4_1,3_1_0 -7516,2,74.0,0.0,1,111,10.0,10.0,0.0,0,74,0.0,0.0,13.821742275759306,20.0,0.0,18.13652900847449,71,0,0,0,0,0,0,0,0,0,,2,,1,131064,2,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,3,3,1102.23258381658,10.0,92047.86514052661,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0002172782602775917,92047.86514052661,10,5,10,10_0,10_4,10_1_0 -7517,2,68.0,0.0,1,111,1100.0,290.0,0.0,0,75,0.0,0.0,1520.3916503335236,1390.0,0.0,525.9593412457601,10,0,0,0,0,0,0,0,0,0,,2,,1,120788,2,1,0,0,1,,340.0,,11,0.0,5.0,2.0,1.0,1.0,3,3,468.955148794694,1100.0,15890.044315034229,0,5,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0874761562927086,15890.044315034229,3,2,3_0,3_0_0,3_4_0,3_1_0 -7518,2,44.0,0.0,2,111,696.0,0.0,0.0,37,37,0.0,0.0,961.9932623928477,917.0,0.0,0.0,43,2,2,2,2,1,2,2,2,2,60.0,2,,2,103396,1,1,0,1,2,740.0,0.0,1930.0,43,2.0,0.0,4.0,5.0,2.8,2,2,785.090766427222,696.0,98350.26600823143,1,1,2,3,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009323818198145511,35125.09500293979,9,5,9,9_0,9_4,9_0_1 -7519,2,52.0,0.0,2,111,650.0,210.0,0.0,52,68,0.0,0.0,898.4132479243549,860.0,0.0,380.86710917796427,31,2,2,2,2,1,2,2,2,3,30.0,2,,2,100230,1,3,0,1,2,1212.0,0.0,444.0,43,3.0,0.0,5.0,5.0,3.0,2,2,226.642111176387,650.0,56081.14714915549,1,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01533492169325125,18693.715716385163,5,3,5,5_0,5_4,5_0_1 -7520,2,62.0,0.0,2,111,180.0,780.0,0.0,0,37,0.0,0.0,248.7913609636675,960.0,0.0,1414.6492626610102,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,126360,1,2,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1102.23258381658,180.0,48314.88529969966,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01986965288326924,48314.88529969966,10,5,10,10_0,10_4,10_0_1 -7521,2,61.0,0.0,2,111,350.0,80.0,0.0,37,37,2138.813543889777,0.0,483.76097965157567,1862.0,0.0,145.09223206779592,12,0,0,0,0,0,0,0,0,2,25.0,2,,2,122895,2,3,0,1,2,,0.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,263.247184538553,350.0,121063.56868292394,1,1,0,1,90.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015380349516019477,48425.42747316958,10,5,10,10_0,10_4,10_0_1 -7522,2,78.0,0.0,2,111,330.0,150.0,0.0,74,72,0.0,0.0,456.1174951000571,1467.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,0,,2,,2,124784,2,1,0,1,2,552.0,0.0,1418.0,41,0.0,4.0,5.0,2.0,1.5,2,2,1230.95658146742,330.0,60623.07485704921,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02419870657269075,40415.3832380328,9,5,9,9_0,9_4,9_0_1 -7523,1,51.0,382.0,5,111,250.0,350.0,0.0,0,56,0.0,0.0,345.54355689398267,600.0,0.0,634.7785152966071,50,0,0,0,0,0,0,0,0,0,,2,,3,112215,2,2,0,1,1,674.0,0.0,338.0,32,1.0,0.0,3.0,4.0,1.9,1,1,385.532551575782,250.0,13404.290650269635,0,4,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04476178677817096,7054.889815931388,1,1,1_1,1_0_1,1_4_1,1_0_0 -7524,2,52.0,0.0,2,111,600.0,120.0,0.0,37,38,0.0,1345.724256265295,829.3045365455583,2020.0,0.0,217.63834810169388,42,0,0,0,0,0,0,0,0,2,45.0,2,,2,132883,2,1,0,1,1,1635.0,0.0,1868.0,43,2.0,0.0,6.0,4.0,2.5,2,2,1199.78328128491,600.0,132932.8661096284,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01519564016873093,53173.146443851365,10,5,10,10_0,10_4,10_0_1 -7525,2,51.0,0.0,2,111,336.0,110.0,0.0,54,35,0.0,0.0,464.41054046551267,446.0,0.0,199.50181909321938,71,1,1,2,2,1,2,1,2,2,10.0,2,,2,108379,1,3,0,1,1,774.0,0.0,695.0,43,2.0,0.0,3.0,3.0,1.8,3,3,358.011395661247,336.0,40776.79535595047,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010937593209735062,22653.77519775026,6,3,6,6_0,6_4,6_0_1 -7526,1,57.0,107.0,2,111,290.0,423.0,0.0,0,67,0.0,0.0,400.8305259970199,713.0,0.0,767.1751770584709,71,2,2,2,2,1,2,2,2,3,40.0,2,,2,107376,1,2,0,1,1,852.0,0.0,382.0,32,1.0,3.0,4.0,2.0,1.5,2,2,282.538870853588,290.0,18935.62133208099,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03765390041846821,12623.747554720661,2,1,2_1,2_0_1,2_4_1,2_0_1 -7527,2,60.0,0.0,2,111,310.0,0.0,0.0,0,90,0.0,0.0,428.47401054853844,381.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,2,128907,2,2,0,1,1,,220.0,,22,2.0,0.0,5.0,3.0,2.0,1,1,939.538945703448,310.0,52549.461848183426,0,1,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007250312117386045,26274.730924091713,7,4,7,7_0,7_4,7_0_1 -7528,2,54.0,0.0,2,111,240.0,0.0,0.0,0,31,0.0,527.9379774579235,331.72181461822333,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,123388,2,1,0,1,1,684.0,0.0,602.0,32,2.0,0.0,4.0,2.0,1.5,2,2,904.49955267101,240.0,52175.10352898247,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014374672003925905,34783.40235265498,9,5,9,9_0,9_4,9_0_1 -7529,2,70.0,0.0,1,111,167.0,711.0,0.0,0,74,0.0,0.0,230.8230960051804,878.0,0.0,1289.5072125025363,50,0,0,0,0,0,0,0,0,0,,1,,1,130466,1,3,3,0,2,,120.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,458.250769365906,167.0,29516.085187578756,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029746492274303656,29516.085187578756,8,4,8,8_1,8_4,8_1_0 -7530,2,75.0,0.0,2,111,370.0,0.0,0.0,0,74,0.0,5093.048723711732,511.40446420309434,5290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101737,2,2,0,1,1,540.0,0.0,580.0,21,1.0,0.0,4.0,2.0,1.5,2,2,904.49955267101,370.0,67759.02338961669,0,5,2,3,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07807078283260253,45172.68225974446,10,5,10,10_0,10_4,10_0_1 -7531,1,39.0,220.0,2,111,350.0,75.0,0.0,34,38,0.0,672.8621281326475,483.76097965157567,1075.0,0.0,136.02396756355867,43,0,0,0,0,0,0,0,0,0,,2,,2,124360,2,1,0,1,1,624.0,0.0,315.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1040.32234367702,350.0,36479.0,1,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02946900956714822,24319.333333333332,7,4,7,7_0,7_4,7_0_1 -7532,2,81.0,0.0,2,111,370.0,110.0,0.0,77,86,0.0,1304.3173560725168,511.40446420309434,1740.0,0.0,199.50181909321938,31,2,2,1,2,2,2,2,1,0,,2,,2,119509,2,2,0,1,1,,0.0,600.0,41,1.0,2.0,6.0,3.0,2.0,1,1,917.389233072726,370.0,43072.92645626101,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04039660508711677,21536.463228130506,6,3,6,6_0,6_4,6_0_1 -7533,2,58.0,0.0,2,111,924.0,132.0,0.0,0,52,0.0,0.0,1277.1289862801598,1056.0,0.0,239.40218291186326,31,2,1,2,1,2,2,2,2,1,10.0,8,,2,110972,1,3,0,1,1,780.0,0.0,446.0,32,1.0,1.0,4.0,2.0,1.5,1,1,290.048502276499,924.0,28509.982523225084,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03703965792121236,19006.65501548339,5,3,5,5_0,5_4,5_0_1 -7534,2,63.0,0.0,2,111,0.0,0.0,0.0,86,75,0.0,0.0,0.0,384.0,0.0,0.0,20,2,2,2,2,2,1,2,2,0,,2,,2,105634,1,3,0,1,1,840.0,0.0,220.0,41,0.0,1.0,3.0,2.0,1.5,2,2,904.838685640157,0.0,35257.47865469294,5,5,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010891306317188616,23504.985769795294,6,3,6,6_0,6_4,6_0_1 -7535,2,46.0,0.0,2,111,1080.0,0.0,0.0,63,45,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,31,2,1,2,1,2,2,2,2,2,45.0,2,,2,119623,2,1,0,1,1,840.0,0.0,420.0,43,2.0,3.0,4.0,4.0,2.3,1,1,275.383728936359,1080.0,68939.72878436503,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01566585797542237,29973.79512363697,8,4,8,8_0,8_4,8_0_1 -7536,2,56.0,0.0,1,111,1280.0,0.0,0.0,0,37,0.0,0.0,1769.1830112971911,1280.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,10.0,2,,1,132021,2,2,0,0,1,,264.0,,12,1.0,0.0,2.0,1.0,1.0,4,3,1266.55937560768,1280.0,48798.90041114184,0,1,0,1,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026230099227968432,48798.90041114184,10,5,10,10_0,10_4,10_1_0 -7537,2,41.0,0.0,8,111,239.0,0.0,0.0,0,43,0.0,0.0,330.3396403906474,239.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,2000.0,6,109179,2,1,0,1,1,433.0,0.0,340.0,12,1.0,0.0,2.0,1.0,1.0,2,2,641.679549775147,239.0,25870.824949901613,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009238205602752105,25870.824949901613,7,4,7,7_0,7_4,7_0_0 -7538,2,45.0,0.0,5,111,170.0,0.0,0.0,0,54,669.1260249040643,0.0,234.9696186879082,618.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,124013,2,2,0,1,2,448.0,0.0,595.0,12,1.0,0.0,1.0,1.0,1.0,4,2,1288.28407632813,170.0,6323.270755513287,0,1,2,3,33.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09773423025752347,6323.270755513287,1,1,1_0,1_0_0,1_4_0,1_0_0 -7539,2,73.0,0.0,2,111,336.0,0.0,0.0,0,78,0.0,0.0,464.41054046551267,640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111079,2,2,0,1,1,840.0,0.0,381.0,11,0.0,2.0,3.0,1.0,1.0,5,4,336.219011884059,336.0,19492.17575265258,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032833687122532026,19492.17575265258,5,3,5,5_0,5_4,5_0_1 -7540,2,59.0,0.0,9,111,0.0,0.0,0.0,77,52,0.0,0.0,0.0,221.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,2006.0,6,120616,1,3,0,1,1,1079.0,0.0,548.0,42,2.0,1.0,4.0,4.0,2.5,1,1,540.921969150468,0.0,38420.00967510627,7,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005752210940831543,15368.003870042507,3,2,3_0,3_0_0,3_4_0,3_0_0 -7541,2,56.0,0.0,2,111,300.0,100.0,0.0,0,63,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,42,2,2,2,2,1,2,2,2,2,3.0,2,,2,101891,1,3,0,1,1,583.0,0.0,338.0,32,3.0,1.0,3.0,3.0,2.0,1,1,294.20918795168,300.0,55211.773364325956,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.007244831593445112,27605.886682162978,7,4,7,7_0,7_4,7_0_1 -7542,2,59.0,0.0,7,111,1350.0,0.0,0.0,48,33,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,90.0,2,,5,114212,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,4,2,716.235474340901,1350.0,198723.70755599035,1,1,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006793351516047163,132482.47170399356,10,5,10,10_0,10_4,10_0_0 -7543,1,67.0,93.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,359.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,126089,1,3,0,1,1,1019.0,109.0,416.0,21,1.0,5.0,3.0,3.0,1.8,1,1,294.20918795168,0.0,20771.09653607365,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01728363254084907,11539.498075596473,2,1,2_1,2_0_1,2_4_1,2_0_1 -7546,1,55.0,434.0,6,111,495.0,0.0,0.0,0,85,0.0,0.0,684.1762426500857,495.0,0.0,0.0,42,2,1,2,2,1,2,2,2,0,,2,,4,123240,1,3,0,1,1,1685.0,0.0,431.0,31,1.0,0.0,3.0,4.0,2.5,2,2,419.625391826035,495.0,25970.49224345222,0,7,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.019060093099498385,10388.196897380887,2,1,2_1,2_0_1,2_4_1,2_0_0 -7547,1,27.0,209.0,2,111,480.0,0.0,0.0,0,54,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,2,129987,2,1,0,0,2,,0.0,793.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1849.08046620664,480.0,10126.0,0,1,3,4,21.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.047402725656725264,10126.0,2,1,2_1,2_0_1,2_4_1,2_0_1 -7548,1,56.0,321.0,2,111,271.0,80.0,0.0,0,56,0.0,0.0,374.56921567307717,351.0,0.0,145.09223206779592,50,1,2,2,2,1,2,2,2,0,,2,,2,109251,2,1,0,1,1,,0.0,297.0,32,1.0,0.0,2.0,2.0,1.5,3,3,353.397671908204,271.0,8945.361414987095,0,4,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03923821338419409,5963.574276658063,1,1,1_1,1_0_1,1_4_1,1_0_1 -7549,1,37.0,90.0,5,111,600.0,90.0,0.0,0,52,0.0,0.0,829.3045365455583,690.0,0.0,163.2287610762704,12,2,1,2,1,1,2,2,2,3,60.0,2,,3,132080,1,3,0,1,1,612.0,0.0,390.0,32,1.0,0.0,3.0,4.0,2.3,4,3,396.790682524159,600.0,26818.014793939623,0,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.025728973799952086,11660.006432147664,2,1,2_1,2_0_1,2_4_1,2_0_0 -7550,2,57.0,0.0,1,111,230.0,450.0,0.0,0,31,0.0,0.0,317.900072342464,680.0,0.0,816.143805381352,41,0,0,0,0,0,0,0,0,0,,2,,1,103112,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,936.53604448762,230.0,31345.316813205805,0,1,0,1,81.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021693830821755022,31345.316813205805,8,4,8,8_0,8_4,8_1_0 -7551,1,38.0,300.0,2,111,216.0,454.0,0.0,52,64,0.0,0.0,298.549633156401,670.0,0.0,823.3984169847419,50,2,2,2,2,1,2,2,2,2,45.0,2,,2,101209,1,3,0,1,2,684.0,0.0,268.0,43,2.0,0.0,4.0,4.0,2.1,2,2,376.065103232432,216.0,20401.865642855326,4,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.032840133923469496,9715.174115645394,1,1,1_1,1_0_1,1_4_1,1_0_1 -7552,2,64.0,0.0,1,111,1600.0,0.0,0.0,77,37,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,115511,2,3,3,0,1,,0.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,598.59026403001,1600.0,192400.2492004212,5,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008315997544957947,128266.83280028081,10,5,10,10_1,10_4,10_1_0 -7553,1,61.0,256.0,2,111,1400.0,0.0,0.0,77,78,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,20,2,1,2,1,1,2,2,2,0,,2,,2,118227,1,3,0,1,1,480.0,0.0,232.0,41,0.0,0.0,3.0,4.0,2.5,1,1,283.448484324973,1400.0,23117.825625329882,7,5,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06055932866220945,9247.130250131953,1,1,1_1,1_0_1,1_4_1,1_0_1 -7554,2,61.0,0.0,1,111,299.0,0.0,0.0,0,52,0.0,0.0,413.2700940452032,299.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,1,107700,1,3,0,1,1,809.0,0.0,348.0,12,1.0,1.0,3.0,1.0,1.0,2,2,336.219011884059,299.0,32466.143170222553,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009209594081819926,32466.143170222553,8,4,8,8_0,8_4,8_1_0 -7555,2,77.0,0.0,2,111,432.0,890.0,0.0,0,86,0.0,0.0,597.099266312802,1322.0,0.0,1614.1510817542296,50,0,0,0,0,0,0,0,0,0,,2,,2,113738,2,2,0,1,2,,104.0,,11,0.0,4.0,5.0,1.0,1.0,3,2,1068.56335212649,432.0,48917.341409007924,0,6,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027025180885168858,48917.341409007924,10,5,10,10_0,10_4,10_0_1 -7556,2,61.0,0.0,2,111,240.0,180.0,0.0,0,75,0.0,0.0,331.72181461822333,420.0,0.0,326.4575221525408,42,0,0,0,0,0,0,0,0,0,,2,,2,129464,2,2,0,1,1,720.0,0.0,324.0,31,1.0,2.0,4.0,2.0,1.5,2,2,315.305574554609,240.0,38767.8035043657,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010833732170374397,25845.2023362438,7,4,7,7_0,7_4,7_0_1 -7557,2,37.0,0.0,2,111,390.0,0.0,0.0,0,56,0.0,0.0,539.0479487546129,390.0,0.0,0.0,12,2,1,2,2,1,2,2,2,0,,2,,2,106359,1,3,0,1,1,600.0,0.0,234.0,32,1.0,1.0,3.0,4.0,1.9,3,2,283.448484324973,390.0,12952.732737397899,0,4,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03010947634810443,6817.22775652521,1,1,1_0,1_0_0,1_4_0,1_0_1 -7558,2,79.0,0.0,2,111,250.0,360.0,0.0,0,77,0.0,0.0,345.54355689398267,610.0,0.0,652.9150443050816,31,2,1,2,2,1,2,2,2,0,,2,,2,103079,2,1,0,1,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,5,4,312.256770317875,250.0,20287.09300783706,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.030068378932573157,20287.09300783706,5,3,5,5_0,5_4,5_0_1 -7559,1,25.0,250.0,1,111,390.0,0.0,0.0,0,38,0.0,0.0,539.0479487546129,390.0,0.0,0.0,50,2,2,2,2,1,1,2,2,3,25.0,2,,1,102624,2,3,0,0,1,,152.0,455.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1480.22759995487,390.0,34576.372255728915,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.011279378794152743,34576.372255728915,9,5,9,9_0,9_4,9_1_0 -7560,2,35.0,0.0,2,111,480.0,0.0,0.0,68,90,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,1,2,2,1,2,2,2,2,2,60.0,2,,2,113546,1,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,280.503477268006,480.0,55322.187995862165,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008676446420302497,30734.54888659009,8,4,8,8_0,8_4,8_0_1 -7561,2,76.0,0.0,2,111,1036.0,0.0,0.0,0,77,0.0,0.0,1431.932499768664,1208.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,123345,2,1,0,1,1,,0.0,337.0,21,1.0,0.0,3.0,2.0,1.5,2,2,298.542723161403,1036.0,30535.941722458807,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039559939266963266,20357.294481639205,5,3,5,5_0,5_4,5_0_1 -7562,2,48.0,0.0,1,111,1206.0,0.0,0.0,0,43,0.0,0.0,1666.9021184565722,1206.0,0.0,0.0,41,2,2,2,2,1,1,2,2,3,15.0,2,,1,132943,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,856.599109712656,1206.0,25532.174813998547,0,1,0,1,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.047234519142442394,25532.174813998547,7,4,7,7_0,7_4,7_1_0 -7563,2,36.0,0.0,2,111,325.0,87.0,0.0,22,38,0.0,0.0,449.20662396217745,571.0,0.0,157.78780237372806,60,0,0,0,0,0,0,0,0,0,,2,,2,120463,2,2,0,1,2,973.0,0.0,1100.0,43,2.0,0.0,2.0,3.0,1.8,3,3,1245.432939794,325.0,33083.93834538679,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0172591302171744,18379.965747437105,4,2,4_0,4_0_0,4_4_0,4_0_1 -7564,1,47.0,60.0,2,111,516.0,420.0,0.0,0,63,0.0,0.0,713.2019014291802,936.0,0.0,761.7342183559285,60,0,0,0,0,0,0,0,0,2,10.0,2,2011.0,2,125762,2,1,0,0,1,,172.0,481.0,12,1.0,2.0,3.0,1.0,1.0,2,2,446.078368399112,516.0,23320.021935162928,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0401371835156235,23320.021935162928,6,3,6,6_0,6_4,6_0_1 -7565,1,58.0,222.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,376.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112362,2,2,0,1,1,,0.0,197.0,31,0.0,2.0,3.0,2.0,1.5,1,1,396.123708156969,0.0,8554.080468196986,0,7,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04395563046173362,5702.720312131324,1,1,1_1,1_0_1,1_4_1,1_0_1 -7566,2,41.0,0.0,1,111,385.0,360.0,0.0,0,46,1947.6346796314729,0.0,532.1370776167332,2049.0,0.0,652.9150443050816,44,0,0,0,0,0,0,0,0,3,35.0,2,,1,120354,2,1,0,1,1,1304.0,0.0,271.0,32,1.0,0.0,3.0,3.0,1.8,2,2,692.200316016373,385.0,35209.270487014735,0,1,2,3,68.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05819490070820059,19560.705826119298,5,3,5,5_0,5_4,5_1_0 -7567,2,58.0,0.0,5,111,252.0,0.0,0.0,37,35,0.0,964.7807744917346,348.3079053491345,1184.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,10.0,2,,3,119033,2,1,0,1,1,,320.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,876.598610133933,252.0,155354.29883032062,1,1,1,2,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007621288943495381,103569.53255354708,10,5,10,10_0,10_4,10_0_0 -7568,2,70.0,0.0,5,111,141.0,0.0,0.0,0,75,0.0,424.4207269759777,194.88656608820622,551.0,0.0,0.0,12,2,2,2,2,2,2,2,1,0,,2,,3,121153,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1068.56335212649,141.0,28919.390375434934,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.019052960413302393,28919.390375434934,8,4,8,8_0,8_4,8_0_0 -7569,1,39.0,16.0,8,111,876.0,420.0,0.0,0,43,0.0,0.0,1210.784623356515,1296.0,0.0,761.7342183559285,20,1,2,2,1,2,2,2,2,3,15.0,2,,6,119848,2,1,0,1,1,,448.0,255.0,32,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,457.013861863775,876.0,31415.828872825135,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04125308949340016,12083.011104932746,2,1,2_1,2_0_1,2_4_1,2_0_0 -7570,2,67.0,0.0,5,111,190.0,0.0,0.0,74,74,0.0,0.0,262.6131032394268,190.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,109756,2,1,0,1,1,,74.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,925.894249318764,190.0,75890.97223596057,5,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0025035915920177056,50593.98149064038,10,5,10,10_0,10_4,10_0_0 -7571,2,73.0,0.0,5,111,530.0,0.0,0.0,0,77,0.0,1946.1243090605806,732.5523406152432,2410.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,124933,2,1,0,1,1,,0.0,,11,0.0,3.0,6.0,1.0,1.0,4,2,1042.74271473965,530.0,51738.851940333705,0,5,0,1,117.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.046580082657791885,51738.851940333705,10,5,10,10_0,10_4,10_0_0 -7572,2,59.0,0.0,2,111,238.0,96.0,0.0,0,43,0.0,1043.4538848580135,328.95746616307144,1342.0,0.0,174.11067848135508,30,0,0,0,0,0,0,0,0,3,45.0,2,,2,126420,2,1,0,1,1,,171.0,,22,1.0,0.0,2.0,2.0,1.5,2,2,978.797649210851,238.0,59200.52033755902,0,1,0,1,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022668719672529383,39467.01355837268,9,5,9,9_0,9_4,9_0_1 -7573,1,47.0,76.0,2,111,348.0,108.0,0.0,0,56,0.0,0.0,480.99663119642383,456.0,0.0,195.8745132915245,30,2,2,2,1,1,2,2,2,3,70.0,2,,2,109148,2,1,0,1,1,68.0,0.0,425.0,32,1.0,0.0,3.0,3.0,2.0,1,1,358.011395661247,348.0,26070.703703661562,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0174908972608958,13035.351851830781,2,1,2_1,2_0_1,2_4_1,2_0_1 -7574,2,37.0,0.0,2,111,400.0,410.0,0.0,0,64,0.0,0.0,552.8696910303722,810.0,0.0,743.5976893474541,70,2,2,2,1,2,2,2,2,3,90.0,2,,2,130121,1,3,0,1,2,516.0,0.0,181.0,12,1.0,1.0,2.0,1.0,1.0,1,1,397.996691370921,400.0,3904.352784209713,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.20746076104492017,3904.352784209713,1,1,1_0,1_0_0,1_4_0,1_0_1 -7576,2,89.0,0.0,1,111,256.0,0.0,0.0,0,74,0.0,0.0,353.8366022594382,256.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,110465,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,787.423092025656,256.0,17365.96591341808,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014741477743095054,17365.96591341808,4,2,4_0,4_0_0,4_4_0,4_1_0 -7577,0,52.0,0.0,5,111,492.0,0.0,0.0,53,56,0.0,0.0,680.0297199673578,492.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,3,121142,2,1,0,1,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,1,1,410.773224430284,492.0,61677.53251271472,1,1,5,0,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007976972812564688,30838.76625635736,8,4,8,8_0,8_4,8_0_0 -7578,0,93.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1759.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,114220,2,1,0,1,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,806.921445590565,0.0,69648.79723413987,0,5,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025255281783068437,69648.79723413987,10,5,10,10_0,10_4,10_1_0 -7579,2,28.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,723.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,116775,1,2,0,1,1,881.0,0.0,496.0,42,1.0,0.0,3.0,3.0,1.8,2,2,294.20918795168,0.0,19306.517576334307,6,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03744849360540528,10725.843097963503,2,1,2_0,2_0_0,2_4_0,2_0_1 -7580,2,82.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,444.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,101229,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1090.53375046394,0.0,38009.26807998978,0,5,0,1,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011681361479142678,38009.26807998978,9,5,9,9_0,9_4,9_1_0 -7581,2,74.0,0.0,2,111,450.0,330.0,0.0,0,75,0.0,0.0,621.9784024091688,780.0,0.0,598.5054572796581,71,0,0,0,0,0,0,0,0,0,,2,,2,120531,2,1,0,1,1,1200.0,0.0,356.0,21,1.0,1.0,6.0,6.0,3.0999999999999996,3,3,296.011321159513,450.0,52128.86202965327,0,5,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014962920148847687,16815.761945049442,4,2,4_0,4_0_0,4_4_0,4_0_1 -7582,0,26.0,0.0,1,111,0.0,0.0,0.0,84,38,0.0,0.0,0.0,1044.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,40.0,2,,1,104039,2,2,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,1275.69222036652,0.0,28808.398165016028,3,1,5,0,50.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.036239432474513604,19205.59877667735,5,3,5,5_0,5_4,5_1_0 -7583,1,64.0,420.0,2,111,350.0,260.0,0.0,77,77,0.0,0.0,483.76097965157567,610.0,0.0,471.5497542203367,43,0,0,0,0,0,0,0,0,0,,2,,2,110104,2,1,0,1,1,792.0,0.0,440.0,41,0.0,2.0,3.0,3.0,1.8,2,2,302.683654210383,350.0,11128.13143351103,6,7,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0548160312128466,6182.29524083946,1,1,1_1,1_0_1,1_4_1,1_0_1 -7584,2,53.0,0.0,7,111,940.0,0.0,0.0,43,37,0.0,0.0,1299.2437739213747,940.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,5,107415,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,714.724893606308,940.0,343816.0177347169,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0027340203815788755,229210.67848981125,10,5,10,10_0,10_4,10_0_0 -7585,2,53.0,0.0,9,111,650.0,0.0,0.0,0,52,0.0,0.0,898.4132479243549,955.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,110822,2,1,0,0,1,,0.0,,32,2.0,0.0,4.0,3.0,2.0,2,2,582.358515685566,650.0,33233.86572202582,0,1,1,2,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028735748287237968,16616.93286101291,4,2,4_0,4_0_0,4_4_0,4_0_0 -7586,2,75.0,0.0,1,111,842.0,2320.0,0.0,72,90,0.0,0.0,1163.7906996189336,3162.0,0.0,4207.674729966081,42,0,0,0,0,0,0,0,0,0,,2,,1,104273,2,2,0,0,2,,0.0,1831.0,41,0.0,2.0,6.0,2.0,1.5,2,2,1099.41816522563,842.0,161180.5273541112,5,5,2,3,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01961775440188959,107453.6849027408,10,5,10,10_0,10_4,10_1_0 -7587,2,49.0,0.0,2,111,472.0,140.0,0.0,63,52,0.0,0.0,652.3862354158392,612.0,0.0,253.91140611864284,31,2,1,2,1,1,2,2,2,1,15.0,2,,2,128677,2,1,0,1,1,750.0,0.0,289.0,43,4.0,0.0,3.0,5.0,2.8,1,1,239.479802723182,472.0,41030.49591161516,4,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.014915734904065621,14653.748539862558,3,2,3_0,3_0_0,3_4_0,3_0_1 -7588,2,45.0,0.0,1,111,1250.0,1950.0,0.0,85,37,0.0,0.0,1727.717784469913,3200.0,0.0,3536.6231566525253,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,114081,1,2,0,0,2,,0.0,3951.0,42,1.0,0.0,6.0,5.0,2.5999999999999996,1,1,932.221914476666,1250.0,210933.73740189502,6,1,2,3,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015170640976711065,81128.3605391904,10,5,10,10_0,10_4,10_1_0 -7589,2,62.0,0.0,2,111,600.0,1450.0,0.0,72,54,0.0,0.0,829.3045365455583,2050.0,0.0,2629.7967062288008,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,132592,2,1,2,0,1,,400.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,406.899752071372,600.0,42860.17689052774,5,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04782994725467542,28573.451260351827,8,4,8,8_1,8_4,8_0_1 -7590,2,33.0,0.0,1,111,12.0,24.0,0.0,38,37,0.0,0.0,16.586090730911167,36.0,0.0,43.52766962033877,71,0,0,0,0,0,0,0,0,1,20.0,2,,1,131429,2,1,0,0,2,,0.0,1856.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1058.09077390967,12.0,139441.64334759695,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00025817251672988407,77467.57963755386,10,5,10,10_0,10_4,10_1_0 -7591,2,68.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1239.0,0.0,0.0,71,2,2,1,2,2,2,2,1,0,,2,,1,110330,2,2,0,0,2,,0.0,1698.0,11,0.0,3.0,3.0,1.0,1.0,4,4,1209.17445496629,0.0,81927.38991218538,0,5,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.015123147476418247,81927.38991218538,10,5,10,10_0,10_4,10_1_0 -7592,2,50.0,0.0,2,111,500.0,200.0,0.0,63,43,0.0,0.0,691.0871137879653,700.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,130036,2,1,0,1,1,1350.0,0.0,403.0,43,2.0,0.0,4.0,3.0,2.0,3,2,310.728716024329,500.0,55283.261915254116,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012662060373229379,27641.630957627058,7,4,7,7_0,7_4,7_0_1 -7593,2,70.0,0.0,1,111,292.0,722.0,0.0,0,77,0.0,0.0,403.5948744521717,1014.0,0.0,1309.457394411858,50,0,0,0,0,0,0,0,0,0,,2,,1,127256,2,1,0,0,1,,0.0,1330.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1209.17445496629,292.0,18013.92552430004,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05628978529039414,18013.92552430004,4,2,4_0,4_0_0,4_4_0,4_1_0 -7594,2,79.0,0.0,2,111,300.0,200.0,0.0,0,86,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,60,0,0,0,0,0,0,0,0,0,,2,,2,124636,1,3,0,1,1,874.0,0.0,377.0,11,0.0,3.0,4.0,1.0,1.0,1,1,397.996691370921,300.0,19862.18541303552,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025173463523900586,19862.18541303552,5,3,5,5_0,5_4,5_0_1 -7595,2,26.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,533.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,1,107337,2,3,0,0,1,,0.0,1214.0,22,2.0,0.0,3.0,2.0,1.5,2,2,982.033511342562,0.0,41946.475372049164,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012706669518058293,27964.316914699444,7,4,7,7_0,7_4,7_1_0 -7596,0,74.0,0.0,2,111,550.0,0.0,0.0,0,74,0.0,0.0,760.1958251667618,550.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,121719,2,3,0,1,1,2000.0,0.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1497.7887065042,550.0,57411.00814533807,0,5,5,0,189.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009580044276659537,57411.00814533807,10,5,10,10_0,10_4,10_0_1 -7597,2,29.0,0.0,1,111,480.0,0.0,0.0,0,54,0.0,0.0,663.4436292364467,480.0,0.0,0.0,60,2,2,2,2,1,2,2,2,1,7.0,2,,1,119646,2,3,0,0,1,,0.0,590.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1168.16097783476,480.0,29535.8746651339,0,1,2,3,19.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01625142324180512,29535.8746651339,8,4,8,8_0,8_4,8_1_0 -7598,2,45.0,0.0,5,111,300.0,400.0,0.0,0,56,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,43,0,0,0,0,0,0,0,0,3,90.0,2,,3,123600,2,2,0,1,1,1000.0,0.0,500.0,32,1.0,2.0,4.0,2.0,1.5,5,4,441.386428398598,300.0,19300.000967871936,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03626942823294499,12866.667311914623,2,1,2_0,2_0_0,2_4_0,2_0_0 -7599,2,30.0,0.0,2,111,180.0,0.0,0.0,0,38,0.0,0.0,248.7913609636675,180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,116876,2,1,0,1,1,360.0,0.0,752.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1439.64049071336,180.0,42158.82014008291,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004269569200511455,42158.82014008291,9,5,9,9_0,9_4,9_0_1 -7600,2,61.0,0.0,2,111,240.0,180.0,0.0,85,68,0.0,0.0,331.72181461822333,420.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,112710,2,2,0,1,1,1100.0,0.0,380.0,42,2.0,0.0,4.0,4.0,2.5,3,3,299.363810513648,240.0,22734.466572152334,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018474152391790094,9093.786628860933,1,1,1_0,1_0_0,1_4_0,1_0_1 -7601,0,36.0,0.0,2,111,270.0,0.0,0.0,0,46,0.0,0.0,373.1870414455012,270.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,125277,1,2,0,1,2,856.0,0.0,,32,1.0,0.0,3.0,2.0,1.3,3,2,1193.96907681411,270.0,18411.942206345913,0,4,5,0,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014664395367640304,14163.032466419932,3,2,3_0,3_0_0,3_4_0,3_0_1 -7602,2,42.0,0.0,2,111,278.0,0.0,0.0,55,38,0.0,0.0,384.24443526610867,278.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101095,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,924.730942839548,278.0,73012.75555519052,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0038075538703625437,48675.170370127016,10,5,10,10_0,10_4,10_0_1 -7603,2,87.0,0.0,2,111,315.0,0.0,0.0,0,75,0.0,0.0,435.3848816864181,1009.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,105606,1,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1043.60190745632,315.0,37419.04382873194,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026964879290294605,37419.04382873194,9,5,9,9_0,9_4,9_0_1 -7604,1,49.0,376.0,2,111,150.0,80.0,0.0,0,67,0.0,0.0,207.32613413638958,230.0,0.0,145.09223206779592,31,0,0,0,0,0,0,0,0,3,90.0,2,,2,106873,2,2,0,1,1,650.0,0.0,363.0,32,1.0,0.0,3.0,2.0,1.3,2,2,298.542723161403,150.0,11872.203104490269,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019372983933623078,9132.463926530976,1,1,1_1,1_0_1,1_4_1,1_0_1 -7605,2,41.0,0.0,1,111,300.0,950.0,0.0,56,65,0.0,0.0,414.65226827277917,1250.0,0.0,1722.9702558050765,71,0,0,0,0,0,0,0,0,1,30.0,2,,1,127135,2,2,0,0,1,,0.0,531.0,43,2.0,0.0,1.0,2.0,1.5,4,3,1438.22661351949,300.0,19881.820105890678,1,1,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06287150740437714,13254.546737260453,3,2,3_0,3_0_0,3_4_0,3_1_0 -7606,2,42.0,0.0,2,111,230.0,0.0,0.0,0,46,0.0,0.0,317.900072342464,230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124090,2,2,0,1,1,840.0,0.0,398.0,22,2.0,0.0,5.0,4.0,2.5,2,2,299.363810513648,230.0,56162.12659577294,0,1,2,3,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004095286520316896,22464.850638309177,6,3,6,6_0,6_4,6_0_1 -7607,2,34.0,0.0,1,111,240.0,550.0,0.0,38,38,0.0,0.0,331.72181461822333,790.0,0.0,997.5090954660969,71,2,2,2,2,1,2,2,2,3,50.0,2,,1,102376,1,3,0,0,2,,0.0,1123.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1073.6758535455,240.0,72699.07953903734,1,1,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.010866712549995801,48466.05302602489,10,5,10,10_0,10_4,10_1_0 -7608,2,44.0,0.0,8,111,440.0,470.0,0.0,37,37,0.0,0.0,608.1566601334094,910.0,0.0,852.416863398301,50,0,0,0,0,0,0,0,0,3,30.0,2,2001.0,6,108676,2,1,0,0,1,,0.0,931.0,43,2.0,0.0,4.0,4.0,2.3,3,2,828.21194224109,440.0,60635.38783586274,1,1,2,3,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015007737766324327,26363.21210254902,7,4,7,7_0,7_4,7_0_0 -7609,2,60.0,0.0,2,111,600.0,0.0,0.0,75,22,0.0,0.0,829.3045365455583,600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,2,126628,2,2,0,1,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,269.502841679031,600.0,76583.51167711761,5,1,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007834584584337806,51055.67445141174,10,5,10,10_0,10_4,10_0_1 -7610,2,59.0,0.0,2,111,300.0,185.0,0.0,0,85,0.0,0.0,414.65226827277917,485.0,0.0,335.52578665677805,41,0,0,0,0,0,0,0,0,0,,2,,2,107834,2,2,0,1,2,,0.0,,31,0.0,3.0,3.0,3.0,2.0,1,1,265.590838595623,300.0,9319.530211584972,0,7,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05204124982578023,4659.765105792486,1,1,1_0,1_0_0,1_4_0,1_0_1 -7611,1,27.0,320.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,954.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,,4,130137,2,2,0,0,1,,0.0,291.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1511.43742645557,0.0,14455.322097511587,0,1,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06599645400943549,14455.322097511587,3,2,3_1,3_0_1,3_4_1,3_0_0 -7612,2,48.0,0.0,5,111,300.0,500.0,0.0,55,43,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,0,,2,,3,106890,2,2,0,1,1,1000.0,350.0,555.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,2,2,449.657734031569,300.0,41328.97855969728,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019356878100542627,14251.371917136996,3,2,3_0,3_0_0,3_4_0,3_0_0 -7613,2,52.0,0.0,1,111,180.0,0.0,0.0,0,34,0.0,0.0,248.7913609636675,180.0,0.0,0.0,71,2,2,1,2,1,2,2,2,3,120.0,2,,1,125708,2,3,0,0,1,,0.0,639.0,12,1.0,0.0,1.0,1.0,1.0,2,2,702.634144966712,180.0,38663.86826368746,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.004655509344600508,38663.86826368746,9,5,9,9_0,9_4,9_1_0 -7614,2,66.0,0.0,2,111,500.0,0.0,0.0,0,75,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105358,2,3,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,320.556277027559,500.0,16639.19892734345,0,5,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030049523548777483,16639.19892734345,4,2,4_0,4_0_0,4_4_0,4_0_1 -7615,2,49.0,0.0,6,111,271.0,0.0,0.0,0,42,0.0,0.0,374.56921567307717,312.0,0.0,0.0,10,2,2,1,2,1,2,2,2,0,,2,,4,128518,2,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1125.57109539071,271.0,36004.96233971351,0,4,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.008665472193977654,36004.96233971351,9,5,9,9_0,9_4,9_0_0 -7616,2,69.0,0.0,2,111,300.0,0.0,0.0,77,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,121415,2,2,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,269.502841679031,300.0,49471.089410544926,5,5,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00606414784017378,32980.726273696615,8,4,8,8_0,8_4,8_0_1 -7617,2,44.0,0.0,2,111,360.0,0.0,0.0,0,37,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,,2,113552,2,1,0,1,2,894.0,0.0,1090.0,22,1.0,1.0,2.0,2.0,1.5,3,3,1120.66415105075,360.0,61339.15101875299,0,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0058690085210005355,40892.76734583533,9,5,9,9_0,9_4,9_0_1 -7619,2,22.0,0.0,1,111,0.0,0.0,0.0,34,55,0.0,0.0,0.0,338.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,30.0,2,,1,130482,2,2,0,0,1,,0.0,400.0,43,2.0,0.0,3.0,2.0,1.5,1,1,760.586511410611,0.0,33571.563223067955,1,1,3,4,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010068044724463435,22381.04214871197,6,3,6,6_0,6_4,6_1_0 -7620,2,51.0,0.0,6,111,1450.0,0.0,0.0,74,34,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,43,2,2,2,2,1,2,2,2,3,20.0,2,,4,123941,2,2,0,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,1060.99874576475,1450.0,92871.25671520691,6,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.015613011509540328,61914.17114347127,10,5,10,10_0,10_4,10_0_0 -7621,2,29.0,0.0,5,111,820.0,0.0,0.0,56,67,0.0,0.0,1133.3828666122631,820.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,126058,2,1,0,0,1,,0.0,1000.0,43,2.0,0.0,2.0,2.0,1.5,4,2,1612.78390979125,820.0,20226.721118244273,1,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04054043140291133,13484.480745496183,3,2,3_0,3_0_0,3_4_0,3_0_0 -7622,2,37.0,0.0,6,111,360.0,0.0,0.0,85,37,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,4,129043,2,1,0,0,1,,0.0,800.0,42,1.0,0.0,2.0,4.0,2.1,2,2,956.251355533873,360.0,53902.471555044256,6,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006678729000995332,25667.84359764012,7,4,7,7_0,7_4,7_0_0 -7623,2,25.0,0.0,1,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,778.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,1,106847,2,1,0,0,1,,0.0,724.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1799.37397728742,0.0,24188.505397017983,0,1,2,3,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03216403772082229,24188.505397017983,7,4,7,7_0,7_4,7_1_0 -7624,2,35.0,0.0,9,111,372.0,0.0,0.0,0,45,0.0,0.0,514.1688126582462,372.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,2006.0,6,128742,2,1,0,1,1,,0.0,244.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1665.55767577611,372.0,17479.672607651803,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02128186313038583,17479.672607651803,4,2,4_0,4_0_0,4_4_0,4_0_0 -7625,2,88.0,0.0,1,111,162.0,84.0,0.0,0,75,0.0,0.0,223.91222486730075,246.0,0.0,152.3468436711857,42,2,2,2,2,1,2,2,2,0,,2,,1,104521,2,2,0,1,1,559.0,0.0,440.0,11,0.0,2.0,2.0,1.0,1.0,2,2,835.497618643108,162.0,23241.591685600186,0,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.010584473014058432,23241.591685600186,6,3,6,6_0,6_4,6_1_0 -7626,2,62.0,0.0,1,111,604.0,0.0,0.0,65,74,0.0,0.0,834.833233455862,816.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,103533,2,2,0,1,1,689.0,0.0,515.0,42,2.0,1.0,3.0,3.0,2.0,4,2,692.179242492341,604.0,66625.72671029516,1,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012247521194750583,33312.86335514758,8,4,8,8_0,8_4,8_1_0 -7627,1,41.0,196.0,1,111,480.0,0.0,0.0,53,56,0.0,0.0,663.4436292364467,480.0,0.0,0.0,20,2,2,1,1,2,2,2,2,3,10.0,2,,1,109907,2,2,0,1,1,742.0,0.0,527.0,43,2.0,1.0,3.0,4.0,2.1,2,2,666.862780634454,480.0,38654.67609993323,1,1,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.012417643825524878,18406.988619015825,4,2,4_1,4_0_1,4_4_1,4_1_0 -7628,1,72.0,185.0,1,111,550.0,180.0,0.0,0,77,0.0,0.0,760.1958251667618,730.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,0,,2,,1,115139,2,1,0,1,1,602.0,0.0,685.0,11,0.0,6.0,3.0,1.0,1.0,5,3,791.014796572748,550.0,13941.0,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.052363532027831575,13941.0,3,2,3_1,3_0_1,3_4_1,3_1_0 -7629,2,48.0,0.0,1,111,1800.0,0.0,0.0,34,33,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,102540,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,803.292622373364,1800.0,195039.95530282767,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00922887824294894,130026.63686855178,10,5,10,10_0,10_4,10_1_0 -7630,2,61.0,0.0,1,111,360.0,1200.0,0.0,0,34,0.0,0.0,497.582721927335,1560.0,0.0,2176.3834810169387,70,2,2,2,1,2,2,2,2,2,35.0,1,,1,109221,2,2,1,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,989.172157723885,360.0,51258.92013948817,0,1,1,2,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,0,0.030433727354280096,51258.92013948817,10,5,10,10_1,10_4,10_1_0 -7631,2,27.0,0.0,1,111,620.0,0.0,0.0,38,38,0.0,0.0,856.9480210970769,620.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,112140,2,2,0,0,1,,0.0,988.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1275.69222036652,620.0,56939.30481401869,1,1,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010888787666535638,37959.536542679125,9,5,9,9_0,9_4,9_1_0 -7632,2,74.0,0.0,2,111,0.0,0.0,420.0,0,75,0.0,0.0,214.58360063176053,420.0,0.0,480.16322535410524,71,0,0,0,0,0,0,0,0,0,,2,,2,130542,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1043.60190745632,0.0,31906.430257415122,0,5,0,1,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013163490763821537,31906.430257415122,8,4,8,8_0,8_4,8_0_1 -7633,2,33.0,0.0,2,111,600.0,0.0,0.0,34,38,0.0,0.0,829.3045365455583,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,114850,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,877.976798029557,600.0,82435.74256510244,1,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007278396255436878,39255.11550719164,9,5,9,9_0,9_4,9_0_1 -7634,2,67.0,0.0,1,111,1300.0,1000.0,0.0,86,74,0.0,0.0,1796.8264958487098,2300.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,2,,1,101999,2,2,0,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,900.07607389063,1300.0,42119.96931189543,6,5,0,1,116.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05460592772441643,28079.97954126362,8,4,8,8_0,8_4,8_1_0 -7635,2,49.0,0.0,2,111,283.0,0.0,0.0,0,34,0.0,0.0,391.15530640398833,283.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,2,,2,130684,1,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1287.53803831805,283.0,40635.97545705666,0,1,1,2,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0069642723428423444,40635.97545705666,9,5,9,9_0,9_4,9_0_1 -7636,2,89.0,0.0,2,111,453.0,72.0,0.0,0,74,0.0,0.0,626.1249250918966,525.0,0.0,130.5830088610163,42,0,0,0,0,0,0,0,0,0,,2,,2,107808,2,1,0,1,1,,0.0,,11,0.0,2.0,6.0,1.0,1.0,4,4,1066.40184982706,453.0,129414.47085969485,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004056733350702184,129414.47085969485,10,5,10,10_0,10_4,10_0_1 -7637,2,39.0,0.0,1,111,264.0,588.0,0.0,0,37,0.0,0.0,364.89399608004567,852.0,0.0,1066.4279056983,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,112330,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,3,1259.35043917434,264.0,59595.08014431692,0,1,1,2,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0142964821582046,59595.08014431692,10,5,10,10_0,10_4,10_1_0 -7639,2,52.0,0.0,1,111,300.0,800.0,0.0,35,34,0.0,0.0,414.65226827277917,1160.0,103.2196202514115,1450.922320677959,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,108628,2,2,0,0,1,,0.0,1673.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,1,1,861.262598776224,300.0,60743.9184045325,1,1,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019096561935218272,23363.04554020481,6,3,6,6_0,6_4,6_1_0 -7640,2,56.0,0.0,2,111,150.0,230.0,0.0,0,52,0.0,0.0,207.32613413638958,380.0,0.0,417.14016719491326,41,2,2,2,2,1,2,2,2,3,20.0,2,,2,120804,2,3,0,1,1,1200.0,0.0,288.0,22,2.0,1.0,4.0,2.0,1.5,2,2,1038.43977743319,150.0,34829.69164099716,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010910231532245651,23219.79442733144,6,3,6,6_0,6_4,6_0_1 -7641,2,50.0,0.0,2,111,254.0,200.0,0.0,0,34,0.0,0.0,351.07225380428633,454.0,0.0,362.73058016948977,31,0,0,0,0,0,0,0,0,3,40.0,2,,2,107393,2,1,0,1,1,376.0,0.0,305.0,12,1.0,1.0,2.0,1.0,1.0,3,3,1169.58702791518,254.0,28979.481086999986,0,1,2,3,41.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015666257053983675,28979.481086999986,8,4,8,8_0,8_4,8_0_1 -7642,2,68.0,0.0,2,111,450.0,0.0,0.0,77,74,0.0,0.0,621.9784024091688,450.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,109889,2,1,0,1,1,879.0,0.0,335.0,41,0.0,2.0,5.0,3.0,2.0,5,5,996.870248662398,450.0,48339.330195816874,5,5,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009309189808321785,24169.665097908437,7,4,7,7_0,7_4,7_0_1 -7644,2,65.0,0.0,1,111,720.0,0.0,0.0,72,37,0.0,0.0,995.16544385467,720.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,128408,2,2,0,0,2,,0.0,,42,1.0,1.0,3.0,2.0,1.5,3,3,760.586511410611,720.0,124465.2158438423,5,1,0,1,61.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005784748735769944,82976.81056256154,10,5,10,10_0,10_4,10_1_0 -7645,2,33.0,0.0,6,111,270.0,0.0,0.0,0,43,0.0,0.0,373.1870414455012,270.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,4,117179,1,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1125.57109539071,270.0,27671.848410272396,0,1,1,2,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009757208698056111,27671.848410272396,7,4,7,7_0,7_4,7_0_0 -7646,2,50.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,1280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,114728,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,699.128359765094,0.0,148695.6391427182,1,1,0,1,85.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008608187888896023,99130.42609514546,10,5,10,10_0,10_4,10_1_0 -7647,2,26.0,0.0,1,111,150.0,0.0,0.0,0,47,0.0,0.0,207.32613413638958,150.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,30.0,2,,1,101721,2,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,921.672094883988,150.0,20781.600239800835,0,1,0,1,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007217923464465485,20781.600239800835,5,3,5,5_0,5_4,5_1_0 -7648,2,57.0,0.0,1,111,180.0,0.0,0.0,0,54,0.0,0.0,248.7913609636675,180.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,125075,2,2,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,921.672094883988,180.0,39165.75100563002,0,1,0,1,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004595852125346077,39165.75100563002,9,5,9,9_0,9_4,9_1_0 -7649,2,44.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,6.0,2,,1,131078,2,2,0,1,2,167.0,0.0,700.0,12,1.0,2.0,1.0,1.0,1.0,2,2,1028.51546866227,0.0,41571.32421718285,0,1,2,3,29.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015395227649146333,41571.32421718285,9,5,9,9_0,9_4,9_1_0 -7650,1,62.0,140.0,1,111,192.0,0.0,0.0,0,56,0.0,0.0,265.37745169457867,192.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,35.0,2,,1,107652,1,3,0,1,2,229.0,0.0,620.0,12,1.0,1.0,1.0,1.0,1.0,2,2,1028.51546866227,192.0,9154.578933802082,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02097311098504653,9154.578933802082,1,1,1_1,1_0_1,1_4_1,1_1_0 -7652,2,55.0,0.0,1,111,120.0,175.0,0.0,0,78,0.0,0.0,165.86090730911167,295.0,0.0,317.38925764830356,41,0,0,0,0,0,0,0,0,0,,2,,1,104796,2,3,0,1,2,,0.0,700.0,21,0.0,0.0,2.0,2.0,1.5,2,2,993.348116186805,120.0,11194.428049816059,0,7,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026352395914041118,7462.952033210706,1,1,1_0,1_0_0,1_4_0,1_1_0 -7653,2,71.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,522.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,112719,2,1,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,787.358820242491,0.0,79810.6252211794,0,5,0,1,73.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006540482530407198,79810.6252211794,10,5,10,10_0,10_4,10_1_0 -7654,0,98.0,0.0,1,111,340.0,730.0,0.0,0,77,0.0,0.0,469.9392373758164,1070.0,0.0,1323.9666176186377,50,0,0,0,0,0,0,0,0,0,,2,,1,103527,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,936.507532347158,340.0,20197.81449759784,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05297602867514487,20197.81449759784,5,3,5,5_0,5_4,5_1_0 -7655,2,37.0,0.0,1,111,600.0,0.0,0.0,0,47,0.0,0.0,829.3045365455583,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,125504,1,2,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1058.99350773937,600.0,24170.23889336882,0,1,1,2,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024823916827922288,24170.23889336882,7,4,7,7_0,7_4,7_1_0 -7656,2,46.0,0.0,8,111,2050.0,0.0,0.0,46,31,0.0,0.0,2833.4571665306576,2050.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,2,1999.0,6,124184,2,1,0,0,1,,0.0,1941.0,43,2.0,0.0,3.0,4.0,2.1,2,2,831.309577928536,2050.0,100782.41354614646,1,1,2,3,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02034085043082781,47991.625498164976,10,5,10,10_0,10_4,10_0_0 -7657,2,39.0,0.0,2,111,604.0,0.0,0.0,38,31,0.0,0.0,834.833233455862,604.0,0.0,0.0,71,2,2,2,1,2,2,2,2,3,30.0,2,,2,118146,1,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,913.2061510056,604.0,121951.25213594623,1,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.004952798675053256,67750.69563108124,10,5,10,10_0,10_4,10_0_1 -7658,1,24.0,305.0,1,111,320.0,0.0,0.0,0,35,0.0,0.0,442.2957528242978,320.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,30.0,2,,1,101867,2,3,0,0,1,,0.0,870.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1216.95214347531,320.0,19409.05877387747,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.016487146735352565,19409.05877387747,5,3,5,5_0,5_4,5_1_0 -7659,2,44.0,0.0,1,111,1450.0,0.0,0.0,0,35,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,43,2,2,2,2,1,2,2,2,3,90.0,2,,1,113985,1,2,0,0,2,,0.0,780.0,32,1.0,0.0,2.0,2.0,1.3,2,2,673.911761384908,1450.0,44705.96197603487,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03243415275969878,34389.20152002682,9,5,9,9_0,9_4,9_1_0 -7660,2,44.0,0.0,1,111,1200.0,0.0,0.0,0,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,60.0,2,,1,132187,2,3,0,0,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1049.47839759997,1200.0,34769.52583615336,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.034512981444004616,34769.52583615336,9,5,9,9_0,9_4,9_1_0 -7661,2,59.0,0.0,1,111,1698.0,0.0,0.0,0,37,0.0,0.0,2346.93183842393,1698.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,2,,1,112796,2,1,0,0,1,,0.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,823.251137109404,1698.0,127099.59001076594,0,1,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013359602496405939,84733.0600071773,10,5,10,10_0,10_4,10_1_0 -7662,2,35.0,0.0,1,111,800.0,0.0,0.0,0,37,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,25.0,2,,1,133530,1,3,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,1151.86006065914,800.0,39490.12473835771,0,1,1,2,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.020258229248461726,39490.12473835771,9,5,9,9_0,9_4,9_1_0 -7664,2,67.0,0.0,1,111,413.0,417.0,0.0,0,75,0.0,0.0,570.8379559888593,830.0,0.0,756.2932596533861,41,0,0,0,0,0,0,0,0,0,,2,,1,111488,2,3,0,0,1,,0.0,272.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1049.56406609859,413.0,33441.40464027242,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02481953162339531,33441.40464027242,8,4,8,8_0,8_4,8_1_0 -7665,2,62.0,0.0,1,111,469.0,74.0,0.0,77,86,0.0,0.0,648.2397127331114,543.0,0.0,134.21031466271123,43,0,0,0,0,0,0,0,0,0,,2,,1,131520,2,1,0,1,1,725.0,0.0,327.0,41,0.0,6.0,3.0,2.0,1.5,1,1,700.914643243283,469.0,47683.88596138452,5,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011387494728087673,31789.25730758968,8,4,8,8_0,8_4,8_1_0 -7666,2,33.0,0.0,1,111,418.0,0.0,0.0,84,43,0.0,0.0,577.748827126739,418.0,0.0,0.0,50,2,2,2,1,1,2,2,2,1,22.0,2,,1,101378,2,2,0,1,1,552.0,0.0,325.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1036.36578982471,418.0,37618.41185595761,3,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.01111158019111861,25078.941237305073,7,4,7,7_0,7_4,7_1_0 -7667,2,39.0,0.0,1,111,495.0,1486.0,0.0,21,52,0.0,0.0,684.1762426500857,1981.0,0.0,2695.088210659309,70,0,0,0,0,0,0,0,0,3,30.0,2,,1,116658,2,1,0,0,1,,0.0,367.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,947.36453221687,495.0,33147.97645726117,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.059762320712221206,10692.895631374571,2,1,2_0,2_0_0,2_4_0,2_1_0 -7668,1,58.0,308.0,2,111,318.0,0.0,0.0,0,72,0.0,0.0,439.5314043691459,318.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,123371,1,1,0,1,1,717.0,0.0,309.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1169.49156279026,318.0,12211.906149733593,0,7,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026040160815266115,12211.906149733593,2,1,2_1,2_0_1,2_4_1,2_0_1 -7669,2,31.0,0.0,2,111,489.0,197.0,0.0,0,52,0.0,0.0,675.88319728463,686.0,0.0,357.28962146694744,50,2,1,2,2,1,2,2,2,0,,2,,2,103913,2,3,0,1,1,900.0,0.0,385.0,22,2.0,1.0,4.0,3.0,2.0,2,2,1024.72231078043,489.0,45582.06367750038,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015049779335432202,22791.03183875019,6,3,6,6_0,6_4,6_0_1 -7670,2,52.0,0.0,2,111,345.0,0.0,0.0,56,55,0.0,0.0,476.85010851369606,345.0,0.0,0.0,70,2,1,2,2,1,2,2,2,3,30.0,2,,2,111606,2,1,0,1,1,765.0,0.0,516.0,43,3.0,0.0,4.0,5.0,3.0,1,1,832.91295282858,345.0,64260.40008346562,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005368780766255601,21420.133361155207,6,3,6,6_0,6_4,6_0_1 -7671,2,61.0,0.0,2,111,241.0,98.0,0.0,0,45,0.0,0.0,333.1039888457993,339.0,0.0,177.73798428305,20,2,1,2,2,1,2,2,2,1,25.0,2,,2,104230,2,2,0,1,1,660.0,0.0,648.0,22,2.0,1.0,3.0,2.0,1.5,2,2,983.23234351929,241.0,40645.58760382459,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.008340388710928648,27097.058402549726,7,4,7,7_0,7_4,7_0_1 -7672,2,43.0,0.0,2,111,255.0,78.0,0.0,52,45,0.0,0.0,352.4544280318623,333.0,0.0,141.464926266101,33,0,0,0,0,0,0,0,0,3,35.0,2,,2,109178,1,3,0,1,1,660.0,0.0,458.0,43,2.0,0.0,3.0,3.0,1.8,2,2,968.960108259764,255.0,41837.47863172456,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007959370662157744,23243.04368429142,6,3,6,6_0,6_4,6_0_1 -7673,2,50.0,0.0,2,111,425.0,287.0,0.0,34,38,0.0,0.0,587.4240467197704,712.0,0.0,520.5183825432179,50,2,1,2,1,1,2,2,2,3,50.0,2,,2,113425,2,2,0,1,1,,0.0,,43,2.0,1.0,3.0,3.0,2.0,2,2,913.2061510056,425.0,97401.52230044996,1,1,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007309947351784982,48700.76115022498,10,5,10,10_0,10_4,10_0_1 -7674,2,42.0,0.0,2,111,410.0,0.0,0.0,46,38,0.0,0.0,566.6914333061316,410.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,75.0,2,,2,101468,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,879.805628032568,410.0,85259.34000859069,1,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004808857304767883,40599.68571837652,9,5,9,9_0,9_4,9_0_1 -7675,2,52.0,0.0,1,111,526.0,69.0,0.0,38,34,0.0,0.0,727.0236437049394,595.0,0.0,125.14205015847398,20,0,0,0,0,0,0,0,0,3,35.0,2,,1,103736,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,688.980072340517,526.0,95147.1283564785,1,1,1,2,92.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006253473018867909,52859.51575359916,10,5,10,10_0,10_4,10_1_0 -7676,2,35.0,0.0,1,111,322.0,0.0,0.0,35,56,0.0,0.0,445.06010127944967,322.0,0.0,0.0,20,2,1,2,2,1,2,2,2,0,,2,,1,110351,1,3,0,1,1,229.0,0.0,679.0,43,2.0,0.0,1.0,2.0,1.5,2,1,913.261290928859,322.0,34121.44549836824,4,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.009436880392871948,22747.63033224549,6,3,6,6_0,6_4,6_1_0 -7677,2,28.0,0.0,1,111,180.0,320.0,0.0,0,56,0.0,0.0,248.7913609636675,500.0,0.0,580.3689282711837,41,0,0,0,0,0,0,0,0,3,90.0,2,,1,104867,1,2,0,0,1,,0.0,870.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1252.99637355453,180.0,19719.455105418805,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02535567019103903,19719.455105418805,5,3,5,5_0,5_4,5_1_0 -7678,2,65.0,0.0,1,111,275.0,745.0,0.0,0,45,0.0,0.0,380.0979125833809,1020.0,0.0,1351.1714111313495,71,2,2,2,2,1,2,2,1,1,45.0,2,,1,120960,1,1,0,0,2,,0.0,830.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1405.33863870585,275.0,33008.32903766596,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0309012915751074,33008.32903766596,8,4,8,8_0,8_4,8_1_0 -7680,1,23.0,201.0,8,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,166.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,2002.0,6,124173,2,1,0,0,1,1600.0,0.0,681.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1177.55171173571,0.0,11895.526544486158,0,1,3,4,20.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013954825738835807,11895.526544486158,2,1,2_1,2_0_1,2_4_1,2_0_0 -7681,2,56.0,0.0,2,111,226.0,124.0,0.0,0,52,0.0,0.0,312.37137543216033,350.0,0.0,224.89295970508365,50,2,1,2,2,1,2,2,2,3,20.0,2,,2,119961,2,1,0,1,1,528.0,0.0,258.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1169.46826600249,226.0,22418.27433177309,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015612263228662082,22418.27433177309,6,3,6,6_0,6_4,6_0_1 -7682,2,69.0,0.0,2,111,489.0,149.0,0.0,75,75,0.0,0.0,675.88319728463,638.0,0.0,270.2342822262699,60,0,0,0,0,0,0,0,0,0,,2,,2,124917,2,2,0,1,1,568.0,0.0,167.0,41,0.0,1.0,2.0,2.0,1.5,2,2,1163.77560487345,489.0,14313.649199519488,5,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04457284030835531,9542.432799679658,1,1,1_0,1_0_0,1_4_0,1_0_1 -7683,1,53.0,138.0,2,111,220.0,0.0,0.0,0,77,0.0,0.0,304.0783300667047,220.0,0.0,0.0,44,2,1,2,2,1,2,2,2,0,,2,,2,123802,1,2,0,1,1,516.0,0.0,278.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1310.64485438415,220.0,15342.28388599365,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.014339455692176538,15342.28388599365,3,2,3_1,3_0_1,3_4_1,3_0_1 -7684,2,75.0,0.0,2,111,266.0,0.0,0.0,0,74,0.0,0.0,367.65834453519756,266.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107468,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,987.195877994745,266.0,29018.82403222957,0,5,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009166463799655314,29018.82403222957,8,4,8,8_0,8_4,8_0_1 -7685,2,52.0,0.0,1,111,921.0,0.0,0.0,0,37,0.0,0.0,1272.9824635974321,921.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,130325,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,3,3,760.586511410611,921.0,47400.45043559447,0,1,0,1,63.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019430195104399105,31600.30029039631,8,4,8,8_0,8_4,8_1_0 -7686,2,64.0,0.0,1,111,250.0,127.0,0.0,0,75,0.0,0.0,345.54355689398267,377.0,0.0,230.33391840762602,31,2,1,2,1,1,2,2,2,0,,2,,1,112242,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,787.423092025656,250.0,15470.015552399342,0,5,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.024369723399633475,15470.015552399342,3,2,3_0,3_0_0,3_4_0,3_1_0 -7687,2,53.0,0.0,1,111,1200.0,1500.0,0.0,77,56,0.0,0.0,1658.6090730911167,2700.0,0.0,2720.4793512711735,42,2,2,2,1,1,2,2,2,3,60.0,2,,1,109298,1,3,0,0,1,,0.0,292.0,42,3.0,3.0,3.0,4.0,2.5,4,4,884.669946323871,1200.0,53515.293772643934,5,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.0504528670153763,21406.117509057574,6,3,6,6_0,6_4,6_1_0 -7688,2,43.0,0.0,1,111,464.0,1357.0,0.0,56,63,0.0,0.0,641.3288415952318,1821.0,0.0,2461.126986449988,31,2,2,2,2,1,2,1,2,2,60.0,2,,1,102217,1,3,0,0,2,,0.0,289.0,43,2.0,0.0,3.0,4.0,2.3,2,2,837.63750529199,464.0,38424.345055177306,4,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.0473918292526534,16706.236980511872,4,2,4_0,4_0_0,4_4_0,4_1_0 -7689,1,62.0,125.0,1,111,826.0,540.0,0.0,77,78,0.0,0.0,1141.6759119777187,1366.0,0.0,979.3725664576224,50,2,2,2,2,1,2,2,2,0,,2,,1,125409,1,3,0,0,1,,0.0,276.0,41,0.0,2.0,3.0,5.0,2.5999999999999996,1,1,701.968253999089,826.0,27450.939188021715,6,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,0.049761503263832135,10558.053533854507,2,1,2_1,2_0_1,2_4_1,2_1_0 -7690,2,30.0,0.0,1,111,282.0,553.0,0.0,56,90,0.0,0.0,389.77313217641245,835.0,0.0,1002.9500541686392,10,0,0,0,0,0,0,0,0,0,,2,,1,104413,1,2,0,0,2,,0.0,261.0,43,3.0,1.0,3.0,5.0,3.0,3,2,990.690945550397,282.0,37760.452289895446,1,4,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022113082586763477,12586.81742996515,2,1,2_0,2_0_0,2_4_0,2_1_0 -7691,1,48.0,261.0,2,111,270.0,125.0,0.0,0,53,0.0,0.0,373.1870414455012,395.0,0.0,226.7066126059311,50,2,1,2,2,1,2,2,2,0,,2,,2,104895,1,2,0,1,1,552.0,0.0,363.0,12,1.0,2.0,2.0,1.0,1.0,3,3,1203.16844995061,270.0,11450.6,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03449600894276282,11450.6,2,1,2_1,2_0_1,2_4_1,2_0_1 -7692,2,55.0,0.0,5,111,315.0,235.0,0.0,77,21,0.0,0.0,435.3848816864181,550.0,0.0,426.2084316991505,31,0,0,0,0,0,0,0,0,0,,2,,3,120763,2,2,0,1,1,888.0,0.0,353.0,42,1.0,1.0,4.0,3.0,2.0,2,2,1024.72231078043,315.0,19347.97366313277,6,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028426749466173584,9673.986831566384,1,1,1_0,1_0_0,1_4_0,1_0_0 -7693,2,34.0,0.0,2,111,266.0,0.0,0.0,0,37,0.0,0.0,367.65834453519756,266.0,0.0,0.0,71,1,1,2,2,1,2,2,2,2,15.0,2,,2,119009,2,3,0,1,2,600.0,0.0,920.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1042.71096921642,266.0,51974.391913926425,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005117904995223732,51974.391913926425,10,5,10,10_0,10_4,10_0_1 -7694,2,38.0,0.0,1,111,922.0,0.0,0.0,0,37,0.0,0.0,1274.364637825008,922.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,1,113022,2,1,0,0,1,,0.0,940.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1285.38760878001,922.0,44100.914498057224,0,1,2,3,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02090659594010498,44100.914498057224,10,5,10,10_0,10_4,10_1_0 -7696,2,39.0,0.0,1,111,680.0,0.0,0.0,0,35,0.0,0.0,939.8784747516328,680.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,115120,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,1151.86006065914,680.0,22001.476469418045,0,1,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03090701666977655,22001.476469418045,6,3,6,6_0,6_4,6_1_0 -7697,2,74.0,0.0,7,111,336.0,0.0,0.0,0,75,0.0,0.0,464.41054046551267,336.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,2,,5,133145,2,1,0,0,1,,0.0,411.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1450.13393581924,336.0,31026.17453798871,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.010829565842498525,31026.17453798871,8,4,8,8_0,8_4,8_0_0 -7698,2,79.0,0.0,2,111,211.0,83.0,0.0,0,75,0.0,0.0,291.63876201852133,294.0,0.0,150.53319077033825,70,0,0,0,0,0,0,0,0,0,,2,,2,122521,2,1,0,1,1,476.0,0.0,310.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1171.01801603422,211.0,23909.899490220032,0,5,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01229616210307601,23909.899490220032,6,3,6,6_0,6_4,6_0_1 -7699,2,51.0,0.0,1,111,0.0,0.0,434.0,0,35,0.0,0.0,221.73638731948586,434.0,0.0,496.16866619924207,42,0,0,0,0,0,0,0,0,3,30.0,2,,1,108794,2,3,0,0,2,,0.0,609.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1405.33863870585,0.0,39647.760514998525,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010946393802893866,39647.760514998525,9,5,9,9_0,9_4,9_1_0 -7700,2,28.0,0.0,1,111,0.0,0.0,0.0,55,37,0.0,0.0,0.0,502.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,1,112695,2,2,0,0,2,,0.0,890.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1641.82479897347,0.0,51904.55871134479,1,1,3,4,27.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00967159749477415,34603.03914089653,9,5,9,9_0,9_4,9_1_0 -7701,2,65.0,0.0,2,111,264.0,0.0,0.0,0,74,0.0,0.0,364.89399608004567,264.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,113361,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1102.28899923109,264.0,38311.53937219848,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006890874246404642,38311.53937219848,9,5,9,9_0,9_4,9_0_1 -7702,2,43.0,0.0,7,111,571.0,0.0,0.0,0,38,0.0,0.0,789.2214839458563,571.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,126907,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1450.13393581924,571.0,67139.51390709644,0,1,1,2,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008504678791540179,67139.51390709644,10,5,10,10_0,10_4,10_0_0 -7703,2,46.0,0.0,7,111,2009.0,0.0,0.0,46,37,0.0,0.0,2776.7880232000443,2009.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,5,112537,2,1,0,0,1,,0.0,1321.0,43,2.0,0.0,4.0,4.0,2.3,1,1,877.986712674947,2009.0,88449.14528302352,1,1,2,3,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022713616887664795,38456.15012305371,9,5,9,9_0,9_4,9_0_0 -7704,2,75.0,0.0,5,111,347.0,0.0,0.0,74,74,0.0,0.0,479.6144569688479,347.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,124261,1,2,0,1,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,925.696482849761,347.0,87698.87000141875,5,5,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003956721449140524,58465.91333427917,10,5,10,10_0,10_4,10_0_0 -7705,0,83.0,0.0,5,111,314.0,0.0,0.0,0,77,0.0,0.0,434.0027074588422,314.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,119032,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1134.16460826343,314.0,30486.35345429704,0,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010299690334258123,30486.35345429704,8,4,8,8_0,8_4,8_0_0 -7706,1,67.0,30.0,2,111,360.0,0.0,0.0,0,75,0.0,0.0,497.582721927335,1159.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,2,,2,133154,1,2,0,1,1,,0.0,400.0,21,1.0,2.0,3.0,2.0,1.5,2,2,983.33536140788,360.0,35418.51712378998,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03272299616466779,23612.34474919332,6,3,6,6_0,6_4,6_0_1 -7707,2,57.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,429.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,107824,2,2,0,1,1,324.0,0.0,600.0,32,1.0,0.0,3.0,2.0,1.5,3,2,983.33536140788,0.0,19843.412950361344,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021619264844870752,13228.941966907563,2,1,2_0,2_0_0,2_4_0,2_0_1 -7708,2,69.0,0.0,2,111,300.0,0.0,0.0,74,74,0.0,4140.690019277831,414.65226827277917,4300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,108031,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,1263.76823598356,300.0,89578.82347498806,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04800241656668591,59719.215649992046,10,5,10,10_0,10_4,10_0_1 -7709,2,56.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,427.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,119444,1,2,0,1,2,,0.0,1430.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1423.37280140708,0.0,8827.420437362225,0,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04837200210751426,8827.420437362225,1,1,1_0,1_0_0,1_4_0,1_0_1 -7710,2,28.0,0.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,742.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,3,131901,2,3,0,1,1,750.0,0.0,337.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1171.27004475745,0.0,21415.961163145326,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03464705573322135,21415.961163145326,6,3,6,6_0,6_4,6_0_0 -7711,2,60.0,0.0,2,111,250.0,60.0,0.0,0,52,0.0,0.0,345.54355689398267,1206.0,0.0,108.81917405084694,10,0,0,0,0,0,0,0,0,3,10.0,2,,2,109088,2,2,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,3,3,1290.36663057917,250.0,37507.151519054365,0,1,0,1,23.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032153868026670286,37507.151519054365,9,5,9,9_0,9_4,9_0_1 -7712,2,47.0,0.0,1,111,0.0,0.0,0.0,56,47,0.0,0.0,0.0,275.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,60.0,2,,1,125328,2,1,0,1,1,,0.0,,43,2.0,2.0,1.0,2.0,1.5,1,1,818.483671002485,0.0,27878.744664031277,1,1,1,2,17.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009864145725140943,18585.82977602085,4,2,4_0,4_0_0,4_4_0,4_1_0 -7713,2,32.0,0.0,2,111,240.0,0.0,0.0,37,31,0.0,0.0,331.72181461822333,240.0,0.0,0.0,31,2,2,2,2,2,2,2,1,3,40.0,2,,2,114545,2,1,0,1,1,630.0,0.0,1400.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1061.11933707586,240.0,111156.2673175206,1,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0021591225199604274,74104.1782116804,10,5,10,10_0,10_4,10_0_1 -7714,2,29.0,0.0,2,111,2000.0,0.0,0.0,0,46,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,50.0,2,,2,112013,2,3,0,0,1,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1272.44245558197,2000.0,23212.65290857271,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.08615990631822079,23212.65290857271,6,3,6,6_0,6_4,6_0_1 -7715,2,32.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1292.0,0.0,0.0,31,2,2,2,1,1,2,2,2,1,20.0,2,,1,116195,2,2,0,0,1,,0.0,731.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1253.14786581567,0.0,34343.0,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.037620475788370265,34343.0,9,5,9,9_0,9_4,9_1_0 -7716,2,83.0,0.0,2,111,350.0,60.0,0.0,0,75,0.0,0.0,483.76097965157567,410.0,0.0,108.81917405084694,41,0,0,0,0,0,0,0,0,0,,2,,2,123145,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,4,4,1043.7205214452,350.0,54180.02854545563,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007567364045517634,54180.02854545563,10,5,10,10_0,10_4,10_0_1 -7717,2,54.0,0.0,1,111,0.0,0.0,0.0,90,34,0.0,0.0,0.0,695.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,1,108657,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,854.665601320449,0.0,212403.5488893052,1,1,0,1,110.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0032720733887652764,84961.41955572208,10,5,10,10_0,10_4,10_1_0 -7718,0,50.0,0.0,1,111,150.0,100.0,0.0,56,48,0.0,0.0,207.32613413638958,250.0,0.0,181.36529008474488,41,0,0,0,0,0,0,0,0,2,60.0,2,,1,113603,2,2,0,1,1,260.0,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,993.46101844253,150.0,60746.93127435328,1,1,5,0,23.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004115434224502916,40497.954182902184,9,5,9,9_0,9_4,9_1_0 -7719,2,39.0,0.0,1,111,480.0,0.0,0.0,37,37,0.0,0.0,663.4436292364467,480.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,2,,1,113614,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,652.425399263683,480.0,157726.82632918685,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003043236278641698,87626.01462732603,10,5,10,10_0,10_4,10_1_0 -7720,2,70.0,0.0,5,111,400.0,0.0,0.0,0,74,0.0,0.0,552.8696910303722,416.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,115088,2,1,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1042.82948194281,400.0,40741.15045310138,0,5,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010210806405157183,40741.15045310138,9,5,9,9_0,9_4,9_0_0 -7721,2,29.0,0.0,6,111,180.0,0.0,0.0,0,38,0.0,0.0,248.7913609636675,486.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,4,120767,2,1,0,1,1,182.0,0.0,772.0,12,1.0,0.0,1.0,1.0,1.0,4,3,1289.52189294989,180.0,33442.98297090572,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014532196497627133,33442.98297090572,8,4,8,8_0,8_4,8_0_0 -7722,2,32.0,0.0,1,111,360.0,0.0,0.0,52,38,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,105340,2,1,0,1,1,324.0,0.0,961.0,43,2.0,0.0,2.0,2.0,1.5,2,2,993.46101844253,360.0,75939.52053910754,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0047406146028352416,50626.34702607169,10,5,10,10_0,10_4,10_1_0 -7723,2,74.0,0.0,1,111,0.0,0.0,900.0,77,74,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,71,0,0,0,0,0,0,0,0,0,,2,,1,125024,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,662.03525699488,0.0,87411.43517133415,5,5,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010296135719953806,58274.290114222764,10,5,10,10_0,10_4,10_1_0 -7724,2,54.0,0.0,1,111,600.0,0.0,0.0,0,34,0.0,0.0,829.3045365455583,716.0,0.0,0.0,71,2,2,2,1,2,2,2,2,3,60.0,2,,1,107191,2,3,0,1,1,528.0,0.0,670.0,12,1.0,0.0,2.0,1.0,1.0,5,5,1118.83645472576,600.0,41632.364300786976,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.017198158500608275,41632.364300786976,9,5,9,9_0,9_4,9_1_0 -7725,1,35.0,150.0,5,111,0.0,0.0,0.0,31,53,0.0,0.0,0.0,1083.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,128052,1,1,0,1,1,,0.0,567.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1040.01896489972,0.0,56062.16121963075,1,1,2,3,47.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019317842488397973,37374.774146420496,9,5,9,9_0,9_4,9_0_0 -7726,2,59.0,0.0,2,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1375.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,102930,2,1,0,1,2,,0.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,936.613974174487,0.0,260002.19510556536,0,1,1,2,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005288416889871743,260002.19510556536,10,5,10,10_0,10_4,10_0_1 -7727,2,26.0,0.0,1,111,0.0,0.0,0.0,47,37,0.0,0.0,0.0,930.0,0.0,0.0,50,2,2,2,1,2,2,2,2,3,60.0,2,,1,116324,1,2,0,1,2,,0.0,800.0,43,2.0,0.0,2.0,2.0,1.5,2,2,993.46101844253,0.0,18634.530059833323,1,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.04990734926042553,12423.020039888883,2,1,2_0,2_0_0,2_4_0,2_1_0 -7728,2,45.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,291.0,0.0,0.0,50,2,2,2,1,1,2,2,2,3,30.0,2,,1,123024,1,3,0,0,2,,0.0,455.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1181.88996454089,0.0,18617.9887765937,0,1,2,3,15.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.01563004487175551,18617.9887765937,4,2,4_0,4_0_0,4_4_0,4_1_0 -7729,2,51.0,0.0,7,111,2500.0,0.0,0.0,85,22,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,123018,2,2,0,0,1,,0.0,,42,1.0,0.0,5.0,4.0,2.5,3,2,696.97656186923,2500.0,179336.66824594507,6,1,0,1,117.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013940261210671438,71734.66729837803,10,5,10,10_0,10_4,10_0_0 -7730,2,39.0,0.0,2,111,300.0,0.0,0.0,37,37,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,106315,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,879.905625219465,300.0,120920.96202161598,1,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002480959421629243,57581.4104864838,10,5,10,10_0,10_4,10_0_1 -7731,2,40.0,0.0,5,111,900.0,0.0,0.0,46,46,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118489,2,1,0,0,1,,0.0,800.0,43,2.0,0.0,2.0,4.0,2.1,5,4,1064.12460940207,900.0,83475.99510300462,1,4,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010781542632578998,39750.47385857363,9,5,9,9_0,9_4,9_0_0 -7732,2,39.0,0.0,5,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,1378.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,3,117318,2,2,0,1,1,704.0,0.0,1850.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1157.57392877213,0.0,102700.13735349575,4,1,2,3,82.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013417703573821901,48904.82731118845,10,5,10,10_0,10_4,10_0_0 -7733,2,67.0,0.0,1,111,0.0,400.0,0.0,74,72,0.0,0.0,0.0,972.0,0.0,725.4611603389795,20,0,0,0,0,0,0,0,0,0,,2,,1,123966,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,831.658164819956,0.0,75517.48502812115,5,5,1,2,86.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012871191349103419,50344.990018747434,10,5,10,10_0,10_4,10_1_0 -7734,2,83.0,0.0,1,111,499.0,0.0,0.0,0,72,0.0,0.0,689.7049395603893,808.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,114037,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,988.618796741059,499.0,41964.68658149993,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01925428415700847,41964.68658149993,9,5,9,9_0,9_4,9_1_0 -7735,2,88.0,0.0,7,111,240.0,0.0,0.0,0,75,0.0,0.0,331.72181461822333,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,130709,2,1,0,1,1,360.0,0.0,405.0,11,0.0,4.0,2.0,1.0,1.0,2,2,745.012229453034,240.0,15134.99433607439,0,5,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015857290374265812,15134.99433607439,3,2,3_0,3_0_0,3_4_0,3_0_0 -7736,1,33.0,300.0,2,111,0.0,0.0,0.0,68,62,0.0,0.0,0.0,309.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,130927,1,1,0,1,2,468.0,0.0,813.0,43,2.0,0.0,3.0,5.0,2.4,2,2,1115.57958746814,0.0,25241.563712627372,1,1,2,3,37.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012241713846175834,10517.318213594739,2,1,2_1,2_0_1,2_4_1,2_0_1 -7737,2,84.0,0.0,2,111,400.0,0.0,0.0,0,74,0.0,0.0,552.8696910303722,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,116911,2,1,0,1,2,,0.0,,11,0.0,4.0,8.0,1.0,1.0,2,2,1609.44110207464,400.0,119493.70050158733,0,5,0,1,145.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003347456797479349,119493.70050158733,10,5,10,10_0,10_4,10_0_1 -7738,2,43.0,0.0,1,111,264.0,0.0,0.0,0,46,0.0,0.0,364.89399608004567,264.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,100790,2,1,0,1,1,,0.0,930.0,32,1.0,0.0,2.0,2.0,1.5,1,1,741.957103653813,264.0,37070.27240242842,0,1,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007121609389163964,24713.51493495228,7,4,7,7_0,7_4,7_1_0 -7739,2,61.0,0.0,1,111,255.0,0.0,0.0,0,54,0.0,0.0,352.4544280318623,255.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,120515,2,1,0,1,1,,0.0,830.0,12,1.0,0.0,2.0,1.0,1.0,5,5,835.59257988002,255.0,33647.85660486985,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007578491640477744,33647.85660486985,9,5,9,9_0,9_4,9_1_0 -7740,2,63.0,0.0,6,111,549.0,89.0,0.0,0,46,0.0,0.0,758.8136509391859,638.0,0.0,161.41510817542294,41,0,0,0,0,0,0,0,0,3,25.0,2,,4,105561,2,2,0,1,1,,0.0,950.0,22,2.0,0.0,2.0,2.0,1.5,4,2,741.957103653813,549.0,28159.531453520874,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022656626977372127,18773.020969013916,5,3,5,5_0,5_4,5_0_0 -7741,2,68.0,0.0,1,111,550.0,0.0,0.0,63,74,0.0,0.0,760.1958251667618,550.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,127907,2,1,0,1,1,,0.0,1120.0,42,1.0,3.0,5.0,2.0,1.5,2,2,722.688136248561,550.0,71128.78989544818,1,5,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007732452651147897,47419.19326363212,10,5,10,10_0,10_4,10_1_0 -7742,2,63.0,0.0,1,111,1234.0,87.0,0.0,0,43,0.0,0.0,1705.6029968286982,1321.0,0.0,157.78780237372806,50,0,0,0,0,0,0,0,0,4,30.0,2,,1,124395,1,1,0,1,1,,0.0,754.0,11,0.0,2.0,3.0,1.0,1.0,2,2,860.96349509886,1234.0,30501.71427500926,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04330904119321336,30501.71427500926,8,4,8,8_0,8_4,8_1_0 -7743,2,32.0,0.0,2,111,648.0,0.0,0.0,0,37,0.0,0.0,895.648899469203,648.0,0.0,0.0,10,2,2,2,2,1,2,2,1,3,30.0,2,,2,110042,1,3,0,0,2,,0.0,550.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1849.23432926596,648.0,32851.758678357684,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019724971388727936,32851.758678357684,8,4,8,8_0,8_4,8_0_1 -7744,2,44.0,0.0,1,111,403.0,0.0,0.0,0,38,0.0,0.0,557.0162137131,403.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,30.0,2,,1,108874,1,3,0,1,2,260.0,0.0,850.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1250.53019928706,403.0,107631.04418074756,0,1,3,4,29.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003744272882117838,107631.04418074756,10,5,10,10_0,10_4,10_1_0 -7745,2,69.0,0.0,1,111,2458.0,135.0,0.0,86,72,0.0,0.0,3397.384251381637,2593.0,0.0,244.8431416144056,50,0,0,0,0,0,0,0,0,0,,2,,1,116801,2,2,0,0,1,,356.0,,41,0.0,2.0,6.0,2.0,1.5,4,4,778.910753607749,2458.0,72221.63646735082,6,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035903368115623016,48147.75764490055,10,5,10,10_0,10_4,10_1_0 -7746,2,60.0,0.0,1,111,353.0,1248.0,0.0,43,77,0.0,0.0,487.9075023343035,1601.0,0.0,2263.438820257616,20,2,2,2,2,2,2,2,1,0,,2,,1,110052,2,3,0,0,2,,0.0,1390.0,42,1.0,0.0,4.0,2.0,1.5,2,2,1134.09047698636,353.0,75999.04748199145,1,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.021066053497306912,50666.03165466097,10,5,10,10_0,10_4,10_1_0 -7747,2,44.0,0.0,1,111,378.0,1165.0,0.0,85,33,0.0,0.0,522.4618580237018,1543.0,0.0,2112.905629487278,71,0,0,0,0,0,0,0,0,2,40.0,2,,1,103765,1,2,0,0,2,,0.0,1840.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,2,2,1120.14787371703,378.0,129282.48432097676,6,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011935104806379717,41704.02720031509,9,5,9,9_0,9_4,9_1_0 -7748,2,50.0,0.0,1,111,1767.0,0.0,0.0,0,90,0.0,0.0,2442.3018601266695,1767.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,1,113305,1,3,0,0,2,,0.0,980.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1285.53370374727,1767.0,19348.50373122679,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.09132489129628235,19348.50373122679,5,3,5,5_0,5_4,5_1_0 -7749,1,68.0,392.0,7,111,287.0,0.0,0.0,0,77,0.0,0.0,396.68400331429206,287.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,124494,2,1,0,1,1,,0.0,520.0,11,0.0,1.0,2.0,1.0,1.0,1,1,745.012229453034,287.0,9782.639786135685,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029337684538558485,9782.639786135685,2,1,2_1,2_0_1,2_4_1,2_0_0 -7750,2,71.0,0.0,2,111,760.0,0.0,0.0,31,74,0.0,0.0,1050.452412957707,760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119579,2,2,0,1,2,,0.0,,42,1.0,2.0,2.0,2.0,1.5,1,1,978.87909550943,760.0,64709.53660622987,1,5,0,1,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011744791260440451,43139.691070819914,9,5,9,9_0,9_4,9_0_1 -7751,2,36.0,0.0,1,111,315.0,666.0,0.0,38,38,0.0,0.0,435.3848816864181,981.0,0.0,1207.892831964401,31,2,2,2,2,1,2,2,2,1,15.0,2,,1,115846,1,3,0,0,2,,0.0,625.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1019.50695684099,315.0,62660.3442252027,1,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.01565583483669135,29838.259154858428,8,4,8,8_0,8_4,8_1_0 -7753,2,47.0,0.0,1,111,355.0,970.0,0.0,52,43,0.0,0.0,490.67185078945533,1325.0,0.0,1759.2433138220254,31,0,0,0,0,0,0,0,0,3,40.0,2,,1,108266,2,2,0,0,2,,0.0,,43,3.0,0.0,3.0,3.0,2.0,3,2,819.586124002694,355.0,86889.1918596426,1,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015249307441371457,43444.5959298213,10,5,10,10_0,10_4,10_1_0 -7756,2,74.0,0.0,5,111,316.0,0.0,0.0,0,75,0.0,0.0,436.76705591399406,316.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,103266,2,1,0,1,1,,0.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,1042.82021895099,316.0,43490.28994814204,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007265989727288537,43490.28994814204,10,5,10,10_0,10_4,10_0_0 -7757,2,49.0,0.0,5,111,450.0,0.0,0.0,38,38,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,3,107338,2,2,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,560.425121657832,450.0,113570.18659017367,1,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003962307481485946,45428.07463606947,10,5,10,10_0,10_4,10_0_0 -7758,2,36.0,0.0,1,111,1380.0,0.0,0.0,55,38,0.0,0.0,1907.4004340547842,1380.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,45.0,2,,1,100249,2,2,0,0,1,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1141.47837887531,1380.0,46623.12918596179,1,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.029599042880534873,31082.086123974528,8,4,8,8_0,8_4,8_1_0 -7759,2,73.0,0.0,6,111,1232.0,0.0,0.0,0,77,0.0,0.0,1702.8386483735464,1232.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,113550,2,1,0,1,1,,0.0,450.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1108.90047545323,1232.0,16756.374505363576,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07352425786411297,16756.374505363576,4,2,4_0,4_0_0,4_4_0,4_0_0 -7760,1,77.0,165.0,5,111,760.0,233.0,0.0,86,77,0.0,0.0,1050.452412957707,993.0,0.0,422.5811258974556,12,0,0,0,0,0,0,0,0,0,,2,,3,108631,1,2,0,1,2,,0.0,480.0,41,0.0,3.0,2.0,2.0,1.5,2,2,1040.00972685543,760.0,14441.554336504998,6,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06875991163152843,9627.702891003331,1,1,1_1,1_0_1,1_4_1,1_0_0 -7761,2,82.0,0.0,2,111,786.0,110.0,0.0,0,72,0.0,0.0,1086.3889428746813,896.0,0.0,199.50181909321938,10,0,0,0,0,0,0,0,0,0,,2,,2,128325,2,1,0,1,1,,0.0,503.0,11,0.0,1.0,4.0,1.0,1.0,2,2,1169.61409593547,786.0,24416.542387155165,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03669643251664329,24416.542387155165,7,4,7,7_0,7_4,7_0_1 -7762,2,43.0,0.0,1,111,475.0,0.0,0.0,0,37,0.0,0.0,656.532758098567,475.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,1,131063,2,1,0,1,1,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1118.83645472576,475.0,48284.76153017691,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009837472215807372,48284.76153017691,10,5,10,10_0,10_4,10_1_0 -7763,0,47.0,0.0,2,111,1123.0,223.0,0.0,63,56,0.0,0.0,1552.1816575677701,1346.0,0.0,404.4445968889811,10,0,0,0,0,0,0,0,0,0,,2,,2,105222,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,4.0,2.3,4,3,1695.70476655055,1123.0,16446.61992309695,4,1,5,0,24.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08184052445388693,7150.704314389979,1,1,1_0,1_0_0,1_4_0,1_0_1 -7764,2,80.0,0.0,6,111,1523.0,0.0,0.0,75,74,0.0,0.0,2105.0513485981423,1523.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,130427,2,2,0,0,1,,0.0,,41,0.0,5.0,3.0,2.0,1.5,4,4,1063.8464095371,1523.0,146379.0,5,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010404497912951994,97586.0,10,5,10,10_0,10_4,10_0_0 -7765,2,49.0,0.0,1,111,303.0,1020.0,0.0,0,37,0.0,0.0,418.79879095550695,1323.0,0.0,1849.925958864398,71,0,0,0,0,0,0,0,0,3,50.0,2,,1,101030,1,2,0,0,2,,0.0,1509.0,12,1.0,0.0,3.0,1.0,1.0,4,2,1209.31188767624,303.0,69328.21542077401,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019083139411137456,69328.21542077401,10,5,10,10_0,10_4,10_1_0 -7766,2,51.0,0.0,7,111,309.0,760.0,0.0,85,37,0.0,0.0,427.09183632096256,1069.0,0.0,1378.376204644061,71,0,0,0,0,0,0,0,0,0,,2,,5,115749,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,3.0,2.0,1,1,614.362708254476,309.0,13132.18953358247,6,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08140302858607738,6566.094766791235,1,1,1_0,1_0_0,1_4_0,1_0_0 -7767,2,52.0,0.0,1,111,420.0,562.0,0.0,85,47,0.0,0.0,580.5131755818909,982.0,0.0,1019.2729302762663,60,0,0,0,0,0,0,0,0,2,70.0,2,,1,102049,1,2,0,0,2,,0.0,,42,1.0,0.0,3.0,5.0,2.8,3,2,670.514208202287,420.0,40655.58147087663,6,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024154125078827113,14519.850525313082,3,2,3_0,3_0_0,3_4_0,3_1_0 -7768,2,26.0,0.0,1,111,850.0,0.0,0.0,0,46,0.0,0.0,1174.848093439541,850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,1,115685,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,861.02246477213,850.0,51315.98736349494,0,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016564038687963963,51315.98736349494,10,5,10,10_0,10_4,10_1_0 -7769,2,46.0,0.0,7,111,870.0,0.0,0.0,52,22,0.0,0.0,1202.4915779910596,870.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,104961,2,1,0,1,1,,0.0,1800.0,43,2.0,3.0,3.0,3.0,1.8,5,5,862.967092113825,870.0,89928.45728260666,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009674356997651614,49960.25404589259,10,5,10,10_0,10_4,10_0_0 -7770,2,32.0,0.0,2,111,176.0,0.0,0.0,0,46,0.0,0.0,243.26266405336378,176.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,106595,2,2,0,1,1,170.0,0.0,600.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1439.93754241234,176.0,18106.55727497548,0,1,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009720235455430515,18106.55727497548,4,2,4_0,4_0_0,4_4_0,4_0_1 -7771,2,97.0,0.0,2,111,656.0,0.0,0.0,0,86,0.0,0.0,906.7062932898104,656.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,113827,2,2,0,1,1,,0.0,,11,0.0,7.0,6.0,1.0,1.0,3,2,1129.70248739525,656.0,94481.04825536824,0,5,0,1,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006943191381904755,94481.04825536824,10,5,10,10_0,10_4,10_0_1 -7772,2,82.0,0.0,2,111,670.0,0.0,0.0,86,90,0.0,0.0,926.0567324758734,670.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,109330,2,1,0,1,2,,0.0,,41,0.0,2.0,2.0,2.0,1.5,1,1,925.971293495918,670.0,102427.02247387278,6,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006541242572690273,68284.68164924852,10,5,10,10_0,10_4,10_0_1 -7773,0,46.0,0.0,1,111,267.0,549.0,0.0,0,35,0.0,0.0,369.04051876277344,816.0,0.0,995.6954425652494,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,100758,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1044.21390598729,267.0,41897.97678180925,0,1,5,0,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019475880762678758,41897.97678180925,9,5,9,9_0,9_4,9_1_0 -7774,2,71.0,0.0,2,111,420.0,63.0,0.0,0,77,0.0,0.0,580.5131755818909,483.0,0.0,114.26013275338929,10,0,0,0,0,0,0,0,0,0,,2,,2,133135,1,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1043.7205214452,420.0,38353.689934990114,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012593312424924168,38353.689934990114,9,5,9,9_0,9_4,9_0_1 -7775,2,32.0,0.0,1,111,770.0,0.0,0.0,81,38,0.0,0.0,1064.2741552334664,770.0,0.0,0.0,12,2,2,2,2,1,2,2,2,3,40.0,2,,1,113446,1,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1022.90028759969,770.0,78150.52845994094,4,1,0,1,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.009852780463214566,52100.35230662729,10,5,10,10_0,10_4,10_1_0 -7776,1,58.0,420.0,6,111,675.0,678.0,0.0,0,85,0.0,0.0,932.9676036137531,1353.0,0.0,1229.6566667745703,12,0,0,0,0,0,0,0,0,0,,2,,4,108389,2,1,0,1,1,,0.0,680.0,31,0.0,0.0,3.0,4.0,2.3,1,1,934.863704566031,675.0,9968.52881061336,0,6,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13572714948262768,4334.142961136244,1,1,1_1,1_0_1,1_4_1,1_0_0 -7777,2,74.0,0.0,1,111,1112.0,93.0,0.0,0,74,0.0,0.0,1536.9777410644347,1205.0,0.0,168.66971977881275,12,0,0,0,0,0,0,0,0,0,,2,,1,127302,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,904.845360759688,1112.0,52547.5323119592,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022931619183299997,52547.5323119592,10,5,10,10_0,10_4,10_1_0 -7778,2,55.0,0.0,7,111,478.0,567.0,0.0,34,53,0.0,0.0,660.6792807812948,1045.0,0.0,1028.3411947805034,71,0,0,0,0,0,0,0,0,3,20.0,2,,5,128069,1,2,0,0,1,,0.0,1779.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,645.676820225759,478.0,80859.98629496271,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012923573795672282,31099.994728831818,8,4,8,8_0,8_4,8_0_0 -7779,2,58.0,0.0,5,111,673.0,0.0,0.0,34,37,0.0,0.0,930.2032551586012,673.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,116391,2,1,0,1,1,,0.0,,43,2.0,1.0,6.0,4.0,2.5,2,2,852.303526620017,673.0,316381.78172082664,1,1,0,1,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002127176844189629,126552.71268833065,10,5,10,10_0,10_4,10_0_0 -7780,2,88.0,0.0,2,111,470.0,0.0,0.0,86,74,0.0,0.0,649.6218869606873,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112578,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,1,925.895713002032,470.0,138748.59556550288,6,5,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003387421675040409,92499.06371033525,10,5,10,10_0,10_4,10_0_1 -7781,2,59.0,0.0,1,111,0.0,0.0,2400.0,0,37,0.0,414.0690019277831,1226.19200361006,2800.0,0.0,2743.7898591663156,71,0,0,0,0,0,0,0,0,3,15.0,2,,1,132617,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,989.203837010967,0.0,95279.72680208743,0,1,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02938715395160701,95279.72680208743,10,5,10,10_0,10_4,10_1_0 -7782,2,43.0,0.0,8,111,262.0,0.0,0.0,0,45,0.0,0.0,362.1296476248938,262.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,2003.0,6,104674,2,1,0,1,1,894.0,0.0,521.0,12,1.0,0.0,2.0,1.0,1.0,2,2,745.012229453034,262.0,36526.70349761009,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0071728345268590255,36526.70349761009,9,5,9,9_0,9_4,9_0_0 -7783,2,80.0,0.0,5,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,527.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,131544,2,1,0,1,1,612.0,0.0,292.0,41,0.0,3.0,4.0,2.0,1.5,3,2,1045.21717294318,0.0,36808.79268363277,5,5,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014317231334629822,24539.195122421846,7,4,7,7_0,7_4,7_0_0 -7784,2,57.0,0.0,1,111,0.0,0.0,850.0,21,48,0.0,0.0,434.2763346118963,850.0,0.0,971.7589084547367,50,2,2,2,1,1,2,2,2,0,,2,,1,118323,2,3,0,1,1,1270.0,0.0,235.0,43,2.0,2.0,3.0,2.0,1.5,4,4,702.454482593954,0.0,76092.50058264719,1,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01117061462682226,50728.33372176479,10,5,10,10_0,10_4,10_1_0 -7786,2,83.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,342.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111795,1,2,0,1,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,4,2,1129.71252213059,0.0,38051.90010576295,0,5,0,1,101.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0089877246352858,38051.90010576295,9,5,9,9_0,9_4,9_0_1 -7787,2,34.0,0.0,5,111,480.0,0.0,0.0,37,37,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,2,,3,115067,2,1,0,1,2,120.0,0.0,1025.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1120.7815683178,480.0,85540.96786348196,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005611346375762898,57027.31190898797,10,5,10,10_0,10_4,10_0_0 -7788,2,43.0,0.0,1,111,500.0,0.0,0.0,0,33,0.0,0.0,691.0871137879653,500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,1,129774,1,3,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1151.99097908259,500.0,33889.63689313363,0,1,0,1,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014753772711601547,33889.63689313363,9,5,9,9_0,9_4,9_1_0 -7789,1,21.0,209.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,565.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,1,132585,2,2,0,0,1,,0.0,732.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1654.49085683228,0.0,11185.514953894684,0,2,2,3,26.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05051175581355534,11185.514953894684,2,1,2_1,2_0_1,2_4_1,2_1_0 -7790,2,69.0,0.0,2,111,534.0,117.0,0.0,0,74,0.0,0.0,738.0810375255469,651.0,0.0,212.19738939915152,42,0,0,0,0,0,0,0,0,0,,2,,2,119029,2,2,0,1,1,705.0,0.0,1963.0,21,2.0,0.0,5.0,3.0,2.0,2,2,1213.17863879461,534.0,61428.63805469182,0,5,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01059766292426009,30714.31902734591,8,4,8,8_0,8_4,8_0_1 -7791,2,57.0,0.0,2,111,960.0,180.0,0.0,37,37,0.0,0.0,1326.8872584728933,1140.0,0.0,326.4575221525408,20,2,2,2,2,1,2,2,2,3,30.0,2,,2,112152,1,2,0,1,1,1020.0,0.0,1480.0,43,2.0,0.0,4.0,4.0,2.5,2,2,1064.02830103626,960.0,112515.85367789472,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010131905529184717,45006.34147115789,10,5,10,10_0,10_4,10_0_1 -7792,2,72.0,0.0,1,111,1100.0,0.0,0.0,74,75,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,1,126639,2,2,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,968.439939091559,1100.0,56140.339215061394,5,5,0,1,41.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019593754070244215,37426.89281004093,9,5,9,9_0,9_4,9_1_0 -7793,2,81.0,0.0,2,111,440.0,70.0,0.0,74,74,0.0,0.0,608.1566601334094,510.0,0.0,126.95570305932142,20,2,1,2,2,1,2,2,2,0,,2,,2,113014,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,978.799196525506,440.0,107174.14514326607,5,5,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0047586103842326205,71449.43009551072,10,5,10,10_0,10_4,10_0_1 -7794,2,35.0,0.0,2,111,500.0,0.0,0.0,38,37,0.0,0.0,691.0871137879653,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,107394,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,723.551729673526,500.0,148964.7333451136,1,1,0,1,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0033564991442748163,62068.63889379734,10,5,10,10_0,10_4,10_0_1 -7795,2,67.0,0.0,2,111,450.0,200.0,0.0,74,31,0.0,0.0,621.9784024091688,650.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,1,20.0,2,,2,118188,2,2,0,1,2,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,930.599470090102,450.0,230451.05943500888,5,1,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0028205554862433214,153634.03962333925,10,5,10,10_0,10_4,10_0_1 -7796,2,56.0,0.0,7,111,1070.0,0.0,0.0,0,33,0.0,0.0,1478.9264235062458,1070.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,111756,2,1,0,0,1,,0.0,1387.0,32,1.0,0.0,4.0,3.0,2.0,2,2,911.421762082488,1070.0,56066.259131443934,0,1,2,3,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019084562026716462,28033.129565721967,7,4,7,7_0,7_4,7_0_0 -7797,2,46.0,0.0,7,111,600.0,0.0,0.0,0,48,0.0,0.0,829.3045365455583,600.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,5,114097,2,1,0,0,1,885.0,0.0,788.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1041.64774984053,600.0,102584.047845951,0,4,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.005848862592174286,102584.047845951,10,5,10,10_0,10_4,10_0_0 -7798,2,72.0,0.0,7,111,520.0,0.0,0.0,0,77,0.0,0.0,718.7305983394839,520.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,129763,1,1,0,0,1,,395.0,1579.0,11,0.0,2.0,3.0,1.0,1.0,2,2,986.189265600444,520.0,56253.0,0,5,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009243951433701313,56253.0,10,5,10,10_0,10_4,10_0_0 -7799,2,51.0,0.0,7,111,1761.0,0.0,0.0,37,38,0.0,0.0,2434.0088147612137,1761.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,2,,5,105948,2,1,0,0,1,,0.0,1516.0,43,2.0,0.0,4.0,5.0,2.8,2,2,741.877251695405,1761.0,106860.48960948143,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016479430390367138,38164.4605748148,9,5,9,9_0,9_4,9_0_0 -7800,2,32.0,0.0,2,111,769.0,0.0,0.0,46,38,0.0,0.0,1062.8919810058906,769.0,0.0,0.0,70,1,2,2,2,1,2,2,2,2,25.0,2,,2,106891,2,1,0,1,1,,0.0,565.0,43,2.0,0.0,3.0,2.0,1.5,2,2,926.762484208182,769.0,63005.83277522134,1,1,3,4,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012205219201585238,42003.88851681422,9,5,9,9_0,9_4,9_0_1 -7801,2,58.0,0.0,2,111,417.0,153.0,0.0,0,33,0.0,0.0,576.366652899163,570.0,0.0,277.4888938296597,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,131109,2,1,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,1102.32430120495,417.0,36877.55441726482,0,1,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015456556406927714,36877.55441726482,9,5,9,9_0,9_4,9_0_1 -7803,1,57.0,230.0,5,111,232.0,0.0,0.0,0,56,0.0,0.0,320.6644207976159,232.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,104912,2,1,0,1,1,488.0,0.0,631.0,12,1.0,3.0,1.0,1.0,1.0,2,2,1289.51043867765,232.0,9474.862624213656,0,4,3,4,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024485843141103514,9474.862624213656,1,1,1_1,1_0_1,1_4_1,1_0_0 -7805,2,81.0,0.0,5,111,192.0,0.0,0.0,0,74,0.0,0.0,265.37745169457867,192.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,118295,1,2,0,1,2,348.0,0.0,297.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1289.51043867765,192.0,34323.1668030779,0,5,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00559388943047011,34323.1668030779,9,5,9,9_0,9_4,9_0_0 -7806,2,68.0,0.0,5,111,324.0,0.0,0.0,0,74,0.0,0.0,447.8244497346015,324.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,114673,2,1,0,1,2,886.0,0.0,469.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1108.90047545323,324.0,36405.21113090828,0,5,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008899824776044814,36405.21113090828,9,5,9,9_0,9_4,9_0_0 -7807,2,39.0,0.0,1,111,370.0,800.0,0.0,90,53,0.0,0.0,511.40446420309434,1170.0,0.0,1450.922320677959,20,0,0,0,0,0,0,0,0,2,25.0,2,,1,115880,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,1071.46789894732,370.0,77283.0,1,1,1,2,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015139163852334925,51522.0,10,5,10,10_0,10_4,10_1_0 -7808,1,61.0,60.0,2,111,200.0,250.0,0.0,0,68,0.0,0.0,276.4348455151861,450.0,0.0,453.4132252118622,60,0,0,0,0,0,0,0,0,3,20.0,2,,2,114969,2,1,0,1,1,,0.0,440.0,12,1.0,1.0,1.0,1.0,1.0,2,2,739.178513106612,200.0,15018.220864507239,0,1,2,3,33.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029963602483932768,15018.220864507239,3,2,3_1,3_0_1,3_4_1,3_0_1 -7809,2,46.0,0.0,2,111,432.0,110.0,0.0,35,35,0.0,0.0,597.099266312802,1851.0,0.0,199.50181909321938,43,0,0,0,0,0,0,0,0,3,70.0,2,,2,128891,1,1,0,1,2,2457.0,0.0,1640.0,43,2.0,0.0,4.0,4.0,2.5,1,1,1030.1572861073,432.0,102378.68850432834,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018079934672358532,40951.47540173134,9,5,9,9_0,9_4,9_0_1 -7810,2,50.0,0.0,2,111,360.0,100.0,0.0,68,64,0.0,0.0,497.582721927335,460.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,124071,2,1,0,1,1,539.0,0.0,350.0,43,2.0,0.0,4.0,4.0,2.5,1,1,846.570087659758,360.0,46924.10536768308,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009803063828187651,18769.64214707323,5,3,5,5_0,5_4,5_0_1 -7811,2,81.0,0.0,1,111,250.0,0.0,0.0,0,75,0.0,0.0,345.54355689398267,489.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,130071,1,3,0,1,2,353.0,0.0,586.0,11,0.0,2.0,1.0,1.0,1.0,1,1,883.130293705478,250.0,15653.388618381348,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03123924230858107,15653.388618381348,3,2,3_0,3_0_0,3_4_0,3_1_0 -7812,2,52.0,0.0,1,111,900.0,0.0,0.0,90,37,0.0,0.0,1243.9568048183376,1139.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,125368,2,1,0,1,1,,0.0,,43,2.0,3.0,2.0,2.0,1.5,2,2,960.162577144024,900.0,127175.28630574947,1,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008956142605110117,84783.52420383297,10,5,10,10_0,10_4,10_1_0 -7813,2,51.0,0.0,1,111,360.0,800.0,0.0,0,42,0.0,0.0,497.582721927335,1160.0,0.0,1450.922320677959,44,0,0,0,0,0,0,0,0,2,15.0,2,,1,130716,2,3,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,2,1,849.348332419121,360.0,47983.268867047496,0,1,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024175093264573934,47983.268867047496,10,5,10,10_0,10_4,10_1_0 -7814,2,68.0,0.0,2,111,600.0,300.0,0.0,77,74,0.0,0.0,829.3045365455583,2742.0,0.0,544.0958702542347,20,0,0,0,0,0,0,0,0,0,,2,,2,127328,2,3,0,1,1,1500.0,0.0,1300.0,41,0.0,2.0,5.0,2.0,1.5,2,2,938.09377284678,600.0,75620.76171019867,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036259883370497674,50413.84114013245,10,5,10,10_0,10_4,10_0_1 -7815,2,65.0,0.0,7,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,1948.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,5,101444,2,2,0,0,2,,0.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,1080.99102565873,0.0,138416.18598239357,0,1,0,1,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014073498602596839,138416.18598239357,10,5,10,10_0,10_4,10_0_0 -7816,2,64.0,0.0,1,111,950.0,0.0,0.0,31,37,0.0,0.0,1313.065516197134,950.0,0.0,0.0,50,1,2,2,1,1,1,1,2,3,30.0,2,,1,104562,1,1,0,1,1,,0.0,,42,1.0,3.0,6.0,2.0,1.5,6,6,582.016687897659,950.0,142588.75987866524,5,1,0,1,180.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.006662516742612776,95059.17325244349,10,5,10,10_0,10_4,10_1_0 -7817,2,62.0,0.0,1,111,300.0,0.0,0.0,77,37,0.0,0.0,414.65226827277917,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,128934,2,2,0,1,2,708.0,120.0,1535.0,42,1.0,2.0,3.0,2.0,1.5,3,3,733.877214479382,300.0,77273.64762519758,6,1,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0038823067011809504,51515.765083465056,10,5,10,10_0,10_4,10_1_0 -7818,2,70.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,118339,2,1,0,1,2,519.0,0.0,1559.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1222.04477031148,300.0,32789.85264287861,0,5,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009149171948631943,32789.85264287861,8,4,8,8_0,8_4,8_0_1 -7819,0,49.0,0.0,1,111,12.0,8.0,0.0,56,63,0.0,0.0,16.586090730911167,20.0,0.0,14.509223206779591,20,0,0,0,0,0,0,0,0,2,45.0,2,,1,120790,2,3,0,0,1,,0.0,,43,3.0,0.0,2.0,4.0,2.3,2,2,900.507899809396,12.0,76671.92757501513,1,1,5,0,17.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0002608516654342905,33335.62068478919,8,4,8,8_0,8_4,8_1_0 -7820,0,76.0,0.0,1,111,517.0,1088.0,0.0,77,75,0.0,0.0,714.5840756567561,1605.0,0.0,1973.2543561220243,12,2,2,1,2,2,2,2,1,0,,2,,1,121556,1,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,754.109845808345,517.0,67771.9692193673,6,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.023682357447883287,45181.31281291153,10,5,10,10_0,10_4,10_1_0 -7821,1,21.0,257.0,2,111,130.0,0.0,0.0,0,43,0.0,0.0,179.68264958487097,130.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,2,103986,2,1,0,1,2,170.0,0.0,410.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1343.16798177881,130.0,10528.867151828954,0,1,2,3,14.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012347007339476013,10528.867151828954,2,1,2_1,2_0_1,2_4_1,2_0_1 -7822,2,78.0,0.0,1,111,900.0,1100.0,0.0,77,74,0.0,0.0,1243.9568048183376,2000.0,0.0,1995.0181909321939,60,0,0,0,0,0,0,0,0,0,,2,,1,113761,1,1,0,0,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,960.162577144024,900.0,90136.75965423258,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022188505640451935,60091.17310282172,10,5,10,10_0,10_4,10_1_0 -7823,1,69.0,280.0,2,111,160.0,0.0,0.0,0,77,0.0,0.0,221.1478764121489,160.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,116315,1,2,0,1,2,240.0,0.0,923.0,11,0.0,2.0,1.0,1.0,1.0,3,2,1236.26652240414,160.0,7565.581029470633,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021148408744383677,7565.581029470633,1,1,1_1,1_0_1,1_4_1,1_0_1 -7824,2,61.0,0.0,2,111,413.0,200.0,0.0,35,37,0.0,0.0,570.8379559888593,613.0,0.0,362.73058016948977,12,0,0,0,0,0,0,0,0,2,45.0,2,,2,120720,2,2,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1083.88483190662,413.0,42710.77719634055,5,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014352349459295762,28473.85146422703,8,4,8,8_0,8_4,8_0_1 -7825,1,26.0,222.0,1,111,300.0,800.0,0.0,0,34,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,0,,2,,1,103307,2,1,0,0,1,,0.0,1840.0,22,4.0,0.0,5.0,4.0,2.5,1,1,900.507899809396,300.0,101816.73910145518,0,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.01080372451237027,40726.695640582075,9,5,9,9_0,9_4,9_1_0 -7826,2,79.0,0.0,1,111,1080.0,0.0,0.0,86,77,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,1,104109,2,1,0,0,2,,0.0,264.0,41,0.0,2.0,1.0,2.0,1.5,4,2,901.002225782581,1080.0,32892.11356866082,6,5,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03283461847915453,21928.075712440546,6,3,6,6_0,6_4,6_1_0 -7827,2,63.0,0.0,2,111,200.0,60.0,0.0,75,37,0.0,0.0,276.4348455151861,546.0,0.0,108.81917405084694,33,0,0,0,0,0,0,0,0,1,30.0,2,,2,124247,2,2,0,1,1,,0.0,,42,1.0,2.0,2.0,2.0,1.5,1,1,795.713095234412,200.0,94565.64613412782,5,1,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005773766926158124,63043.764089418546,10,5,10,10_0,10_4,10_0_1 -7828,0,89.0,0.0,1,111,1200.0,1200.0,0.0,74,74,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,2,,1,112296,2,2,0,0,1,,0.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,757.611435777345,1200.0,142046.07795741712,5,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016895925846819065,94697.38530494475,10,5,10,10_0,10_4,10_1_0 -7829,2,35.0,0.0,2,111,0.0,0.0,300.0,68,56,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,129647,1,1,0,1,2,,0.0,300.0,43,2.0,0.0,1.0,4.0,2.1,1,1,755.441241635723,0.0,95801.21780057476,1,1,3,4,14.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0031314842012185795,45619.62752408322,10,5,10,10_0,10_4,10_0_1 -7830,1,26.0,320.0,2,111,480.0,0.0,0.0,47,34,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,2,1,2,1,1,2,2,2,1,10.0,2,,2,105194,1,3,0,1,2,229.0,0.0,785.0,43,2.0,0.0,1.0,2.0,1.5,1,1,1226.94164325062,480.0,20122.93703686897,1,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.023853376826680445,13415.291357912647,3,2,3_1,3_0_1,3_4_1,3_0_1 -7831,2,44.0,0.0,2,111,400.0,0.0,0.0,0,38,0.0,0.0,552.8696910303722,400.0,0.0,0.0,43,2,2,1,1,2,2,2,2,0,,2,,2,128552,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,795.713095234412,400.0,32108.005620620104,0,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01245795222307784,24698.465862015462,7,4,7,7_0,7_4,7_0_1 -7832,2,77.0,0.0,1,111,450.0,1080.0,0.0,74,86,0.0,0.0,621.9784024091688,1530.0,0.0,1958.7451329152448,50,0,0,0,0,0,0,0,0,0,,2,,1,117747,2,1,0,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,754.109845808345,450.0,88994.20723664766,5,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01719213022406641,59329.47149109844,10,5,10,10_0,10_4,10_1_0 -7833,2,39.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1043.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,118298,2,1,0,0,1,,0.0,2400.0,32,1.0,0.0,4.0,3.0,1.6,3,2,743.163467567391,0.0,84191.54551726278,0,1,2,3,78.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012388417311880104,52619.71594828924,10,5,10,10_0,10_4,10_1_0 -7834,2,87.0,0.0,1,111,300.0,1400.0,0.0,0,74,0.0,0.0,414.65226827277917,1700.0,0.0,2539.1140611864284,31,0,0,0,0,0,0,0,0,0,,2,,1,113826,2,2,0,0,2,,0.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,870.380093175172,300.0,73961.20472872735,0,5,0,1,118.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022985023110902645,73961.20472872735,10,5,10,10_0,10_4,10_1_0 -7835,2,54.0,0.0,1,111,1920.0,1440.0,0.0,85,37,0.0,310.55175144583734,2653.7745169457867,3660.0,0.0,2611.660177220326,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,113162,2,3,0,0,1,,0.0,2630.0,42,1.0,0.0,5.0,4.0,2.5,2,2,972.95507662785,1920.0,255293.6835581627,6,1,2,3,112.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014336429906876856,102117.47342326508,10,5,10,10_0,10_4,10_1_0 -7836,2,26.0,0.0,2,111,240.0,0.0,0.0,0,47,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,117414,2,1,0,1,1,,0.0,470.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1381.78248849865,240.0,21545.47927371633,0,1,3,4,13.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01113922772155641,21545.47927371633,6,3,6,6_0,6_4,6_0_1 -7837,2,77.0,0.0,2,111,420.0,360.0,0.0,74,74,0.0,0.0,580.5131755818909,780.0,0.0,652.9150443050816,12,0,0,0,0,0,0,0,0,0,,2,,2,124190,2,2,0,1,1,,0.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,884.115864296935,420.0,86177.04349829114,6,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009051134366375276,57451.36233219409,10,5,10,10_0,10_4,10_0_1 -7838,2,87.0,0.0,2,111,250.0,80.0,0.0,0,74,0.0,0.0,345.54355689398267,330.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,0,,2,,2,114411,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,648.011568884213,250.0,381342.11427966546,0,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0008653646886689976,381342.11427966546,10,5,10,10_0,10_4,10_0_1 -7839,2,47.0,0.0,1,111,100.0,0.0,0.0,0,68,0.0,0.0,138.21742275759306,100.0,0.0,0.0,50,2,2,1,2,1,2,2,2,3,20.0,2,,1,108086,2,1,0,0,1,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1420.45986672332,100.0,21180.66802397774,0,1,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.004721286405452095,21180.66802397774,5,3,5,5_0,5_4,5_1_0 -7840,2,49.0,0.0,1,111,320.0,0.0,0.0,74,37,0.0,0.0,442.2957528242978,1353.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,1,110944,2,2,0,1,1,900.0,0.0,1569.0,42,1.0,0.0,3.0,4.0,2.5,7,6,696.810228475621,320.0,79342.44181267434,6,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0170526639852401,31736.976725069737,8,4,8,8_0,8_4,8_1_0 -7841,2,68.0,0.0,1,111,0.0,0.0,0.0,71,31,0.0,0.0,0.0,1073.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,101478,2,1,0,1,2,,0.0,,42,1.0,5.0,8.0,2.0,1.5,2,2,582.016687897659,0.0,629605.6206610963,5,1,0,1,247.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0017042414565380346,419737.08044073085,10,5,10,10_0,10_4,10_1_0 -7842,2,52.0,0.0,1,111,600.0,0.0,0.0,74,31,0.0,15.527587572291866,829.3045365455583,962.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,20.0,2,,1,119736,2,1,0,1,2,,0.0,,42,1.0,1.0,8.0,4.0,2.5,3,3,584.113285347693,600.0,297905.81537866953,6,1,0,1,139.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0032292085294716288,119162.32615146782,10,5,10,10_0,10_4,10_1_0 -7843,1,51.0,307.0,1,111,160.0,0.0,0.0,0,56,0.0,0.0,221.1478764121489,160.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,1,101187,1,1,0,1,2,170.0,0.0,540.0,12,1.0,1.0,1.0,1.0,1.0,2,2,960.574834730593,160.0,7768.771939800614,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.020595275706356546,7768.771939800614,1,1,1_1,1_0_1,1_4_1,1_1_0 -7844,2,46.0,0.0,2,111,0.0,0.0,0.0,35,35,0.0,0.0,0.0,202.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,106908,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,840.414719633661,0.0,108361.75748480795,1,1,0,1,58.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0018641262811589217,72241.17165653863,10,5,10,10_0,10_4,10_0_1 -7845,2,54.0,0.0,6,111,800.0,0.0,0.0,72,90,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,45.0,2,,4,132795,2,1,0,0,1,,0.0,750.0,42,1.0,1.0,3.0,2.0,1.5,2,2,971.319494221641,800.0,48217.00717388706,5,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016591656075104905,32144.67144925804,8,4,8,8_0,8_4,8_0_0 -7846,2,77.0,0.0,1,111,430.0,800.0,0.0,72,74,0.0,0.0,594.3349178576501,1230.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,2,,1,115907,2,1,0,0,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,973.750625883834,430.0,108918.3266407986,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01129286537844465,72612.2177605324,10,5,10,10_0,10_4,10_1_0 -7847,2,55.0,0.0,2,111,500.0,0.0,0.0,85,33,0.0,0.0,691.0871137879653,500.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,120.0,2,,2,115264,2,3,0,1,1,1500.0,0.0,2267.0,42,1.0,2.0,6.0,4.0,2.5,3,2,1055.75245379907,500.0,29204.481159558953,6,1,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.017120660259918517,11681.792463823582,2,1,2_0,2_0_0,2_4_0,2_0_1 -7848,2,65.0,0.0,2,111,840.0,100.0,0.0,31,34,0.0,0.0,1161.0263511637818,940.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,104229,2,2,0,1,1,1300.0,0.0,2000.0,43,3.0,3.0,5.0,4.0,2.5,2,2,1055.75245379907,840.0,233510.74970266814,1,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004025510607956647,93404.29988106726,10,5,10,10_0,10_4,10_0_1 -7849,2,45.0,0.0,2,111,600.0,100.0,0.0,85,31,0.0,0.0,829.3045365455583,700.0,0.0,181.36529008474488,33,0,0,0,0,0,0,0,0,0,,2,,2,104827,2,2,0,1,1,1020.0,0.0,3900.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,1,1,843.845335873234,600.0,79620.18583483304,6,1,2,3,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00879174034398896,30623.148398012712,8,4,8,8_0,8_4,8_0_1 -7850,1,28.0,200.0,1,111,400.0,0.0,0.0,0,35,0.0,0.0,552.8696910303722,400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,129056,2,1,0,1,1,291.0,0.0,900.0,12,1.0,0.0,1.0,1.0,1.0,2,2,525.081051867391,400.0,10901.730089799501,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.036691423902915264,10901.730089799501,2,1,2_1,2_0_1,2_4_1,2_1_0 -7851,2,30.0,0.0,1,111,480.0,0.0,0.0,0,43,0.0,0.0,663.4436292364467,480.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,1,106109,2,1,0,0,1,,0.0,530.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1014.70930140267,480.0,26386.637917804772,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018191025377890715,26386.637917804772,7,4,7,7_0,7_4,7_1_0 -7852,1,40.0,380.0,1,111,240.0,0.0,0.0,0,56,0.0,0.0,331.72181461822333,240.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,119413,2,1,0,1,2,264.0,0.0,505.0,32,1.0,0.0,1.0,2.0,1.3,2,2,784.167799767612,240.0,17388.589245298594,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.013802154770254841,13375.837880998917,3,2,3_1,3_0_1,3_4_1,3_1_0 -7853,2,86.0,0.0,2,111,290.0,135.0,0.0,0,72,0.0,0.0,400.8305259970199,430.0,0.0,244.8431416144056,50,0,0,0,0,0,0,0,0,0,,2,,2,130319,2,2,0,1,2,1500.0,0.0,1568.0,11,0.0,1.0,4.0,1.0,1.0,3,3,1221.9450234317,290.0,97417.61526878658,0,5,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004413986103166042,97417.61526878658,10,5,10,10_0,10_4,10_0_1 -7854,2,29.0,0.0,2,111,240.0,0.0,0.0,0,37,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,115092,2,1,0,1,2,272.0,0.0,1019.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1380.23006731928,240.0,56834.93994890072,0,1,3,4,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004222754527686309,56834.93994890072,10,5,10,10_0,10_4,10_0_1 -7857,2,77.0,0.0,1,111,450.0,1200.0,0.0,75,86,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,2,,1,115299,2,1,0,0,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,4,4,754.109845808345,450.0,133624.84288520558,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012348003293201114,89083.22859013705,10,5,10,10_0,10_4,10_1_0 -7858,2,61.0,0.0,1,111,200.0,350.0,0.0,0,34,0.0,0.0,276.4348455151861,550.0,0.0,634.7785152966071,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,121540,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,804.128082948971,200.0,129311.50354395759,0,1,0,1,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004253295220660979,129311.50354395759,10,5,10,10_0,10_4,10_1_0 -7859,0,46.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,291.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,2,,2,128649,1,3,0,1,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,5,4,1381.78248849865,0.0,20846.44984255638,0,1,5,0,18.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013959211386005232,20846.44984255638,5,3,5,5_0,5_4,5_0_1 -7860,2,40.0,0.0,2,111,250.0,100.0,0.0,0,33,0.0,0.0,345.54355689398267,350.0,0.0,181.36529008474488,12,0,0,0,0,0,0,0,0,3,15.0,2,,2,102696,2,1,0,1,1,555.0,0.0,940.0,12,1.0,3.0,2.0,1.0,1.0,3,3,1234.87758720724,250.0,4867.6889246184855,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0719027048400452,4867.6889246184855,1,1,1_0,1_0_0,1_4_0,1_0_1 -7861,2,48.0,0.0,2,111,200.0,0.0,0.0,0,68,0.0,0.0,276.4348455151861,200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,2,111829,2,1,0,1,2,170.0,0.0,423.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1236.26652240414,200.0,24772.98906768237,0,1,2,3,10.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008073309177733025,24772.98906768237,7,4,7,7_0,7_4,7_0_1 -7862,0,76.0,0.0,1,111,500.0,0.0,0.0,0,86,0.0,0.0,691.0871137879653,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,117680,2,1,0,1,1,,0.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,711.275147886608,500.0,71892.81924273263,0,6,0,1,122.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006954797506435848,71892.81924273263,10,5,10,10_0,10_4,10_1_0 -7863,2,62.0,0.0,1,111,1100.0,1400.0,0.0,35,21,0.0,0.0,1520.3916503335236,2500.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,2,,1,128618,2,2,0,0,2,,0.0,,41,0.0,4.0,10.0,2.0,1.5,1,1,615.218568755953,1100.0,16313.460146898851,6,5,0,1,175.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.15324768488647358,10875.640097932568,2,1,2_0,2_0_0,2_4_0,2_1_0 -7864,2,52.0,0.0,1,111,680.0,660.0,0.0,85,85,0.0,0.0,939.8784747516328,1340.0,0.0,1197.0109145593162,60,0,0,0,0,0,0,0,0,0,,1,,1,110605,2,1,1,0,1,,640.0,,41,0.0,0.0,9.0,4.0,2.3,1,1,553.22462022945,680.0,16176.566362744288,7,7,0,1,300.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0828358731977949,7033.2897229323,1,1,1_0,1_1_0,1_4_0,1_1_0 -7865,2,40.0,0.0,8,111,300.0,0.0,0.0,0,37,0.0,0.0,414.65226827277917,300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,2001.0,6,131110,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,602.824547076767,300.0,72277.21982299785,0,1,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004150685385169494,72277.21982299785,10,5,10,10_0,10_4,10_0_0 -7866,2,30.0,0.0,5,111,240.0,130.0,0.0,37,37,0.0,0.0,331.72181461822333,370.0,0.0,235.77487711016835,71,0,0,0,0,0,0,0,0,3,40.0,2,,3,108255,2,1,0,1,1,250.0,0.0,300.0,43,2.0,0.0,1.0,2.0,1.5,1,1,559.917749965411,240.0,51483.38241102194,1,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00718678499104961,34322.2549406813,9,5,9,9_0,9_4,9_0_0 -7867,2,53.0,0.0,1,111,420.0,0.0,0.0,0,38,0.0,0.0,580.5131755818909,599.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,111235,2,1,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,640.120141389067,420.0,160741.41994191,0,1,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0037264819498077804,160741.41994191,10,5,10,10_0,10_4,10_1_0 -7868,1,24.0,407.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,590.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,121292,2,1,0,0,1,,0.0,834.0,12,1.0,0.0,1.0,1.0,1.0,3,3,640.120141389067,0.0,14262.541268249597,0,1,3,4,19.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0413671020404633,14262.541268249597,3,2,3_1,3_0_1,3_4_1,3_1_0 -7869,2,72.0,0.0,8,111,1800.0,0.0,0.0,75,74,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,122220,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,582.279366578267,1800.0,152525.78135415862,5,5,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011801283586415294,101683.85423610575,10,5,10,10_0,10_4,10_0_0 -7870,2,35.0,0.0,1,111,1600.0,0.0,0.0,46,37,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,,1,122188,1,3,0,0,2,,0.0,810.0,43,2.0,0.0,2.0,2.0,1.5,2,1,890.56458776775,1600.0,50512.162209548325,2,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03167553971185085,33674.77480636555,9,5,9,9_0,9_4,9_1_0 -7872,0,72.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,280.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,115927,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,987.080012918109,0.0,15206.422476623164,0,1,5,0,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0184132724465892,15206.422476623164,3,2,3_0,3_0_0,3_4_0,3_1_0 -7873,2,91.0,0.0,1,111,500.0,0.0,0.0,77,74,0.0,0.0,691.0871137879653,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,100785,1,2,0,1,2,,0.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,582.016687897659,500.0,331370.61850143387,5,5,0,1,145.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0015088845301407929,220913.74566762257,10,5,10,10_0,10_4,10_1_0 -7874,2,38.0,0.0,1,111,460.0,0.0,0.0,0,35,0.0,0.0,635.800144684928,460.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,45.0,2,,1,115401,1,3,0,1,2,518.0,0.0,783.0,12,1.0,0.0,2.0,1.0,1.0,1,1,960.574834730593,460.0,18957.27866803261,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.024265086147395802,18957.27866803261,5,3,5,5_0,5_4,5_1_0 -7875,2,26.0,0.0,2,111,240.0,0.0,0.0,0,43,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,113643,2,1,0,1,2,,0.0,800.0,12,1.0,0.0,1.0,1.0,1.0,4,4,735.04456884693,240.0,37589.24938936823,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006384804269804913,37589.24938936823,9,5,9,9_0,9_4,9_0_1 -7876,2,55.0,0.0,2,111,0.0,0.0,0.0,0,45,448.0754631054002,0.0,0.0,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,20.0,2,,2,111179,2,1,0,1,2,310.0,0.0,880.0,12,1.0,0.0,1.0,1.0,1.0,5,4,1107.11648156427,0.0,43176.26658080245,0,1,2,3,35.0,10,8,1,1,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006948261713146584,43176.26658080245,9,5,9,9_0,9_4,9_0_1 -7877,2,57.0,0.0,1,111,1200.0,1500.0,0.0,0,37,0.0,0.0,1658.6090730911167,2700.0,0.0,2720.4793512711735,71,2,2,2,2,1,2,2,1,2,45.0,2,,1,118129,2,1,0,0,1,,0.0,,32,1.0,0.0,6.0,3.0,2.0,4,4,1008.64012725686,1200.0,143545.28677345853,0,1,1,2,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.018809395004805055,71772.64338672927,10,5,10,10_0,10_4,10_1_0 -7878,0,77.0,0.0,5,111,1200.0,0.0,0.0,86,74,0.0,0.0,1658.6090730911167,1929.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,105442,1,2,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,4,4,790.9777969595,1200.0,66042.9719032738,6,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029208255540426064,44028.64793551587,10,5,10,10_0,10_4,10_0_0 -7879,0,42.0,0.0,1,111,93.0,0.0,0.0,56,21,0.0,0.0,128.54220316456156,742.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,110828,1,1,0,1,2,,0.0,,43,2.0,0.0,2.0,3.0,1.8,1,1,939.49125994527,93.0,58608.65888325355,1,1,5,0,14.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012660245331292065,32560.36604625197,8,4,8,8_0,8_4,8_1_0 -7880,2,72.0,0.0,1,111,0.0,0.0,1800.0,86,74,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,10,0,0,0,0,0,0,0,0,0,,2,,1,116389,2,2,0,0,2,,0.0,,41,0.0,5.0,8.0,2.0,1.5,4,4,731.137693102196,0.0,109219.55187290077,6,5,0,1,186.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016480565696649872,72813.03458193385,10,5,10,10_0,10_4,10_1_0 -7881,0,91.0,0.0,1,111,480.0,2400.0,0.0,0,71,0.0,0.0,663.4436292364467,2880.0,0.0,4352.7669620338775,50,0,0,0,0,0,0,0,0,0,,2,,1,118443,2,2,0,0,2,,0.0,,11,0.0,6.0,7.0,1.0,1.0,1,1,823.452240818552,480.0,53932.86442718279,0,5,0,1,154.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05339972261047657,53932.86442718279,10,5,10,10_0,10_4,10_1_0 -7882,0,59.0,0.0,1,111,0.0,0.0,600.0,75,56,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,20,0,0,0,0,0,0,0,0,0,,2,,1,126918,2,1,0,1,1,,0.0,,42,1.0,2.0,1.0,2.0,1.5,1,1,876.469041365168,0.0,60940.37668255886,5,1,5,0,25.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009845689059741569,40626.91778837257,9,5,9,9_0,9_4,9_1_0 -7883,0,64.0,0.0,1,111,0.0,0.0,0.0,78,56,0.0,0.0,0.0,188.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,130148,2,2,0,1,2,1250.0,0.0,,42,1.0,1.0,2.0,2.0,1.5,3,3,753.663846075724,0.0,33564.03756361367,5,1,5,0,50.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0056012331544941524,22376.02504240911,6,3,6,6_0,6_4,6_1_0 -7884,0,45.0,0.0,1,111,1000.0,400.0,0.0,56,38,0.0,0.0,1382.1742275759307,1400.0,0.0,725.4611603389795,20,2,2,2,2,1,2,2,2,2,15.0,2,,1,111752,2,2,0,0,1,,0.0,,43,2.0,1.0,2.0,4.0,2.3,2,2,1215.65439828389,1000.0,65819.37974614935,1,1,5,0,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.021270331100042075,28617.12162876059,8,4,8,8_0,8_4,8_1_0 -7885,2,74.0,0.0,1,111,1200.0,69.0,0.0,0,71,0.0,0.0,1658.6090730911167,1269.0,0.0,125.14205015847398,71,2,2,2,1,2,2,2,2,0,,2,,1,107825,2,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,5,4,711.275147886608,1200.0,10586.076156935738,0,5,0,1,145.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.11987444461832841,10586.076156935738,2,1,2_0,2_0_0,2_4_0,2_1_0 -7886,2,59.0,0.0,1,111,0.0,0.0,766.0,75,37,0.0,0.0,391.35961448554417,766.0,0.0,875.7262633839157,50,0,0,0,0,0,0,0,0,2,5.0,2,,1,123897,1,3,0,1,2,1020.0,0.0,3600.0,42,1.0,3.0,5.0,2.0,1.5,2,2,631.570530105305,0.0,316296.54106940783,6,1,2,3,135.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0024217779853365822,210864.36071293856,10,5,10,10_0,10_4,10_1_0 -7887,2,57.0,0.0,1,111,1000.0,1500.0,0.0,34,31,0.0,0.0,1382.1742275759307,2500.0,0.0,2720.4793512711735,71,2,2,2,2,1,2,2,2,2,15.0,2,,1,118076,1,3,0,0,2,,0.0,4000.0,43,2.0,2.0,10.0,2.0,1.5,1,1,944.010582965445,1000.0,70440.99517857918,1,1,2,3,260.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03549069676914843,46960.66345238612,10,5,10,10_0,10_4,10_1_0 -7888,2,49.0,0.0,1,111,0.0,0.0,1500.0,85,23,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,41,0,0,0,0,0,0,0,0,2,15.0,2,,1,128873,1,2,0,0,1,,0.0,2427.0,42,1.0,0.0,5.0,4.0,2.3,2,2,947.411190237031,0.0,158166.86969889124,6,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009483654844125142,68768.20421690925,10,5,10,10_0,10_4,10_1_0 -7889,2,76.0,0.0,1,111,0.0,0.0,0.0,72,75,0.0,0.0,0.0,1502.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,111356,2,1,0,0,2,,0.0,,41,0.0,0.0,2.0,2.0,1.5,6,6,960.162577144024,0.0,37487.89620451183,5,5,0,1,108.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04006626543687527,24991.930803007886,7,4,7,7_0,7_4,7_1_0 -7890,2,82.0,0.0,1,111,449.0,2618.0,0.0,75,74,0.0,0.0,620.5962281815928,3067.0,0.0,4748.143294418621,30,0,0,0,0,0,0,0,0,0,,2,,1,104096,2,3,0,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,731.137693102196,449.0,178199.51948053364,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017211045287554978,118799.67965368909,10,5,10,10_0,10_4,10_1_0 -7891,2,65.0,0.0,1,111,623.0,156.0,0.0,68,56,0.0,0.0,861.0945437798048,779.0,0.0,282.929852532202,60,0,0,0,0,0,0,0,0,0,,2,,1,123116,2,2,0,0,2,,0.0,92.0,42,1.0,2.0,2.0,2.0,1.5,1,1,1095.36752686412,623.0,44347.63961895037,5,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01756576013274723,29565.093079300248,8,4,8,8_0,8_4,8_1_0 -7892,2,95.0,0.0,1,111,351.0,0.0,0.0,0,86,0.0,0.0,485.1431538791516,351.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,107404,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,676.117382498129,351.0,29190.024935773767,0,6,0,1,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012024655709349285,29190.024935773767,8,4,8,8_0,8_4,8_1_0 -7894,0,95.0,0.0,1,111,560.0,1096.0,0.0,0,86,0.0,0.0,774.0175674425211,1656.0,0.0,1987.763579328804,12,0,0,0,0,0,0,0,0,0,,2,,1,114768,2,1,0,0,2,,277.0,,21,1.0,2.0,5.0,2.0,1.5,6,6,772.888127459639,560.0,47583.75338911606,0,6,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034801794353170566,31722.502259410703,8,4,8,8_0,8_4,8_1_0 -7895,2,81.0,0.0,1,111,499.0,0.0,0.0,86,74,0.0,0.0,689.7049395603893,499.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,117107,1,2,0,1,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,582.016687897659,499.0,93302.07700847731,6,5,0,1,165.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005348219632395338,62201.38467231821,10,5,10,10_0,10_4,10_1_0 -7896,2,41.0,0.0,1,111,500.0,1000.0,0.0,38,37,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,10,1,2,2,2,2,2,2,1,3,45.0,2,,1,130066,2,2,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,6,6,697.579262340995,500.0,144675.89997626145,1,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.010368001859647124,68893.28570298164,10,5,10,10_0,10_4,10_1_0 -7897,2,60.0,0.0,1,111,600.0,0.0,0.0,0,37,0.0,0.0,829.3045365455583,600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,2,,1,104063,2,1,0,0,1,,500.0,,12,1.0,2.0,4.0,1.0,1.0,5,4,640.27965243132,600.0,5428.578719626103,0,1,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11052616734299202,5428.578719626103,1,1,1_0,1_0_0,1_4_0,1_1_0 -7898,2,76.0,0.0,1,111,0.0,550.0,0.0,0,75,0.0,0.0,0.0,1505.0,0.0,997.5090954660969,10,0,0,0,0,0,0,0,0,0,,2,,1,106592,2,1,0,0,2,,1166.0,790.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1038.45251299945,0.0,13823.94558582039,0,5,2,3,60.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1088690627908519,13823.94558582039,3,2,3_0,3_0_0,3_4_0,3_1_0 -7899,1,38.0,80.0,1,111,340.0,0.0,0.0,0,85,0.0,0.0,469.9392373758164,340.0,0.0,0.0,12,2,2,2,1,2,2,2,2,0,,2,,1,102411,1,3,0,0,2,,0.0,499.0,11,0.0,0.0,1.0,1.0,1.0,2,2,849.473658374042,340.0,12659.540291272358,0,7,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.026857215363057074,12659.540291272358,2,1,2_1,2_0_1,2_4_1,2_1_0 -7900,0,34.0,0.0,1,111,1000.0,1000.0,0.0,63,37,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,107626,2,1,0,0,1,,574.0,,43,2.0,0.0,2.0,3.0,1.8,1,1,985.678974862905,1000.0,81276.18244467009,4,1,5,0,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024607454974420438,45153.43469148338,10,5,10,10_0,10_4,10_1_0 -7901,2,58.0,0.0,1,111,250.0,0.0,0.0,0,63,0.0,0.0,345.54355689398267,250.0,0.0,0.0,42,2,2,2,1,1,2,2,2,1,15.0,2,,1,109006,1,3,0,0,2,,0.0,120.0,22,3.0,0.0,1.0,3.0,2.0,4,2,703.789716105881,250.0,11987.384787165849,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.020855257792980794,5993.6923935829245,1,1,1_0,1_0_0,1_4_0,1_1_0 -7903,2,91.0,0.0,1,111,1200.0,0.0,0.0,0,75,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,123121,2,2,0,0,1,,0.0,600.0,11,0.0,0.0,1.0,1.0,1.0,2,1,883.300559902186,1200.0,30023.7129142947,0,5,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03996840775241571,30023.7129142947,8,4,8,8_0,8_4,8_1_0 -7904,2,82.0,0.0,1,111,300.0,200.0,0.0,0,74,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,20,0,0,0,0,0,0,0,0,0,,2,,1,107098,2,1,0,1,1,386.0,0.0,400.0,11,0.0,0.0,2.0,1.0,1.0,2,2,873.139254586075,300.0,27686.59260886491,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018059282594417417,27686.59260886491,7,4,7,7_0,7_4,7_1_0 -7905,2,63.0,0.0,1,111,550.0,0.0,0.0,0,75,0.0,0.0,760.1958251667618,674.0,0.0,0.0,60,2,1,2,2,1,2,2,2,0,,2,,1,127131,2,2,0,1,1,,0.0,791.0,11,0.0,0.0,3.0,1.0,1.0,2,2,679.332332854833,550.0,22471.204689686652,0,5,2,3,59.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.029993941549085613,22471.204689686652,6,3,6,6_0,6_4,6_1_0 -7906,1,47.0,150.0,1,111,900.0,0.0,0.0,0,54,0.0,0.0,1243.9568048183376,906.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,2,,1,120931,2,2,0,1,1,240.0,99.0,706.0,12,1.0,0.0,1.0,1.0,1.0,5,4,676.24773691531,900.0,17088.31497251353,0,4,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.053018685660774424,17088.31497251353,4,2,4_1,4_0_1,4_4_1,4_1_0 -7907,2,53.0,0.0,1,111,600.0,60.0,0.0,85,23,0.0,0.0,829.3045365455583,712.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,114763,2,1,0,1,2,,595.0,4942.0,42,1.0,0.0,8.0,2.0,1.5,3,2,751.617441264388,600.0,32637.542095288187,6,1,2,3,250.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02181536826275867,21758.361396858792,6,3,6,6_0,6_4,6_1_0 -7908,2,49.0,0.0,7,111,1000.0,0.0,0.0,35,90,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,5,120490,1,2,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,3,2,886.986415087604,1000.0,265526.63780517445,1,1,2,3,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003766100487190037,110636.09908548936,10,5,10,10_0,10_4,10_0_0 -7909,0,87.0,0.0,1,111,800.0,0.0,0.0,0,31,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,127553,2,1,0,1,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,918.884452134292,800.0,165159.07347458095,0,1,5,0,157.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004843815015244229,165159.07347458095,10,5,10,10_0,10_4,10_1_0 -7910,2,87.0,0.0,1,111,930.0,1910.0,0.0,0,74,0.0,0.0,1285.4220316456153,2840.0,0.0,3464.0770406186275,10,0,0,0,0,0,0,0,0,0,,2,,1,125295,2,1,0,0,2,,224.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,870.547901151581,930.0,86873.26130213958,0,5,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03269130175880774,86873.26130213958,10,5,10,10_0,10_4,10_1_0 -7911,2,51.0,0.0,1,111,300.0,870.0,0.0,0,37,0.0,0.0,414.65226827277917,1170.0,0.0,1577.8780237372805,42,0,0,0,0,0,0,0,0,2,20.0,2,,1,104107,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,3.0,1.8,4,4,743.306748369206,300.0,198914.32389713908,0,1,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005881929350673713,110507.95772063282,10,5,10,10_0,10_4,10_1_0 -7912,2,30.0,0.0,1,111,233.0,1200.0,0.0,37,38,0.0,0.0,322.04659502519183,1433.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,113547,2,1,0,0,1,,0.0,1025.0,43,2.0,0.0,3.0,2.0,1.5,2,2,922.084802306082,233.0,53191.84314452932,4,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026940220817435266,35461.22876301954,9,5,9,9_0,9_4,9_1_0 -7913,0,40.0,0.0,1,111,0.0,0.0,0.0,56,48,0.0,0.0,0.0,282.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,2,,1,116163,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.5,2,2,857.104482155343,0.0,62739.9346982772,1,1,5,0,38.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004494744875909849,25095.973879310877,7,4,7,7_0,7_4,7_1_0 -7914,2,77.0,0.0,1,111,400.0,90.0,0.0,0,90,0.0,0.0,552.8696910303722,490.0,0.0,163.2287610762704,33,0,0,0,0,0,0,0,0,0,,2,,1,125506,1,2,0,1,2,400.0,250.0,545.0,11,0.0,0.0,2.0,1.0,1.0,1,1,873.139254586075,400.0,15481.60873964231,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.031650457535805226,15481.60873964231,3,2,3_0,3_0_0,3_4_0,3_1_0 -7915,2,30.0,0.0,1,111,400.0,600.0,0.0,38,37,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,43,0,0,0,0,0,0,0,0,1,10.0,2,,1,127494,1,3,0,0,2,,470.0,1840.0,43,2.0,0.0,3.0,4.0,2.1,1,1,875.464445641332,400.0,109666.60189722134,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009118546418874107,52222.19137962921,10,5,10,10_0,10_4,10_1_0 -7916,0,45.0,0.0,1,111,460.0,140.0,0.0,56,63,0.0,0.0,635.800144684928,600.0,0.0,253.91140611864284,42,0,0,0,0,0,0,0,0,3,1.0,2,,1,119157,2,3,0,0,1,,0.0,,43,2.0,1.0,1.0,3.0,1.8,2,2,761.774861081225,460.0,38459.452393571875,1,1,5,0,20.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015600846155060808,21366.362440873265,6,3,6,6_0,6_4,6_1_0 -7917,2,70.0,0.0,1,111,500.0,1500.0,0.0,74,74,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,33,0,0,0,0,0,0,0,0,0,,2,,1,110359,2,1,0,0,1,,0.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,731.278655352732,500.0,150995.94283729693,5,5,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013245388998001525,100663.96189153129,10,5,10,10_0,10_4,10_1_0 -7918,0,30.0,0.0,2,111,480.0,180.0,0.0,0,37,0.0,0.0,663.4436292364467,660.0,0.0,326.4575221525408,20,0,0,0,0,0,0,0,0,0,,2,,2,132206,1,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1255.23522603965,480.0,11599.130009573866,0,4,5,0,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.056900819238618686,11599.130009573866,2,1,2_0,2_0_0,2_4_0,2_0_1 -7919,0,41.0,0.0,1,111,990.0,0.0,0.0,0,56,0.0,0.0,1368.3524853001713,990.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,107816,1,2,0,1,2,,0.0,,32,2.0,0.0,3.0,3.0,2.0,2,2,723.363962199251,990.0,9469.530949898559,0,1,5,0,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10454583286520704,4734.765474949279,1,1,1_0,1_0_0,1_4_0,1_1_0 -7920,1,48.0,284.0,1,111,1512.0,420.0,0.0,0,52,0.0,0.0,2089.847432094807,1932.0,0.0,761.7342183559285,12,2,2,2,2,1,2,2,2,3,45.0,2,,1,117247,2,1,0,1,1,,0.0,523.0,32,1.0,0.0,4.0,4.0,2.5,3,2,604.915574039672,1512.0,17224.0,0,1,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.1121690664189503,6889.6,1,1,1_1,1_0_1,1_4_1,1_1_0 -7921,2,68.0,0.0,1,111,700.0,0.0,0.0,37,90,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,125587,2,2,0,0,2,,324.0,844.0,42,1.0,0.0,3.0,2.0,1.5,4,4,843.381336344713,700.0,53632.60941982861,1,5,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013051761000858588,35755.072946552405,9,5,9,9_0,9_4,9_1_0 -7922,2,54.0,0.0,1,111,200.0,0.0,0.0,0,63,0.0,0.0,276.4348455151861,200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,106470,2,2,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,5,4,791.542278420991,200.0,4967.706654445654,0,4,0,1,13.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04026002618754025,4967.706654445654,1,1,1_0,1_0_0,1_4_0,1_1_0 -7923,2,38.0,0.0,1,111,450.0,0.0,0.0,0,67,0.0,0.0,621.9784024091688,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,,1,105321,1,2,0,0,2,,15.0,390.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1014.90493583481,450.0,16479.716158352658,0,1,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027306295549994645,16479.716158352658,4,2,4_0,4_0_0,4_4_0,4_1_0 -7924,0,57.0,0.0,5,111,0.0,0.0,0.0,54,52,0.0,0.0,0.0,352.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,3,117698,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,3.0,2.0,2,2,1088.2373894772,0.0,41374.289412219776,1,1,5,0,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008507698984095128,20687.144706109888,5,3,5,5_0,5_4,5_0_0 -7925,2,52.0,0.0,1,111,1200.0,1300.0,0.0,0,46,0.0,0.0,1658.6090730911167,2500.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,1,5.0,2,,1,121324,1,2,0,0,2,,0.0,,32,1.0,0.0,6.0,3.0,1.8,1,1,576.384000135332,1200.0,56056.138578331615,0,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04459814863106482,31142.29921018423,8,4,8,8_0,8_4,8_1_0 -7926,2,58.0,0.0,1,111,500.0,2200.0,0.0,75,37,0.0,0.0,691.0871137879653,2700.0,0.0,3990.0363818643877,31,2,2,1,1,2,2,2,2,3,60.0,2,,1,132901,1,3,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,2.0,5,5,703.789716105881,500.0,110701.31313227059,7,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.024389954586843305,55350.656566135294,10,5,10,10_0,10_4,10_1_0 -7927,2,78.0,0.0,1,111,90.0,1000.0,0.0,77,74,0.0,0.0,124.39568048183375,1090.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,2,,1,109932,2,2,0,0,1,,199.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,714.156141220676,90.0,32485.62636879536,5,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03355330100844288,21657.084245863574,6,3,6,6_0,6_4,6_1_0 -7928,2,49.0,0.0,1,111,350.0,0.0,0.0,74,31,0.0,0.0,483.76097965157567,1388.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,25.0,2,,1,121914,2,1,0,1,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,568.498650632327,350.0,350548.73613407364,5,1,0,1,83.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003959506502026396,233699.15742271577,10,5,10,10_0,10_4,10_1_0 -7929,1,40.0,300.0,1,111,700.0,0.0,0.0,0,46,0.0,0.0,967.5219593031513,700.0,0.0,0.0,70,1,1,1,1,2,1,2,2,3,30.0,2,,1,126236,1,3,0,1,2,,0.0,700.0,32,1.0,0.0,1.0,3.0,1.6,1,1,772.934103249644,700.0,11828.259765866002,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.059180303261521225,7392.662353666251,1,1,1_1,1_0_1,1_4_1,1_1_0 -7930,2,34.0,0.0,2,111,600.0,0.0,0.0,0,31,0.0,0.0,829.3045365455583,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,116164,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1384.79256861931,600.0,61444.87029256565,0,1,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009764850949202758,61444.87029256565,10,5,10,10_0,10_4,10_0_1 -7931,1,66.0,236.0,7,111,240.0,0.0,0.0,0,74,358.46037048432015,0.0,331.72181461822333,480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,110702,2,1,0,1,1,240.0,0.0,223.0,11,0.0,0.0,1.0,1.0,1.0,2,2,659.213919625951,240.0,13703.241874628438,0,5,2,3,27.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03502820751407157,13703.241874628438,3,2,3_1,3_0_1,3_4_1,3_0_0 -7932,2,34.0,0.0,5,111,356.0,950.0,0.0,46,54,0.0,0.0,492.0540250170313,1306.0,0.0,1722.9702558050765,12,2,2,2,2,1,2,2,2,2,20.0,2,,3,119309,1,3,0,0,1,,0.0,501.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1046.7487423004,356.0,38988.68262254492,1,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.03349689992461595,21660.379234747175,6,3,6,6_0,6_4,6_0_0 -7933,2,56.0,0.0,5,111,563.0,903.0,0.0,63,37,0.0,0.0,778.1640901252489,1466.0,0.0,1637.7285694652464,60,0,0,0,0,0,0,0,0,3,20.0,2,,3,122073,1,2,0,0,1,,0.0,648.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1062.16676021505,563.0,52783.63841904266,1,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027773758003599724,35189.09227936177,9,5,9,9_0,9_4,9_0_0 -7934,2,32.0,0.0,2,111,500.0,0.0,0.0,37,31,0.0,0.0,691.0871137879653,829.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,131549,2,2,0,1,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,783.602087178175,500.0,147532.27658583687,1,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005619109385312531,81962.37588102047,10,5,10,10_0,10_4,10_0_1 -7935,2,44.0,0.0,1,111,1300.0,0.0,0.0,33,38,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,2,,1,104950,2,1,0,1,1,,621.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,466.962023449733,1300.0,409075.09201908816,1,1,1,2,166.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0031779006479801504,170447.9550079534,10,5,10,10_0,10_4,10_1_0 -7936,2,64.0,0.0,5,111,1800.0,0.0,0.0,46,75,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,107300,2,2,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,961.121372408275,1800.0,95971.97113686723,5,5,0,1,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01875547598613964,63981.31409124482,10,5,10,10_0,10_4,10_0_0 -7937,2,58.0,0.0,1,111,566.0,0.0,0.0,0,52,0.0,0.0,782.3106128079767,566.0,0.0,0.0,50,2,2,2,2,1,1,2,2,1,15.0,2,,1,124683,2,2,0,0,2,,0.0,251.0,12,1.0,0.0,1.0,1.0,1.0,2,2,849.473658374042,566.0,19819.08263210198,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.028558334939439673,19819.08263210198,5,3,5,5_0,5_4,5_1_0 -7938,1,62.0,74.0,1,111,1215.0,0.0,0.0,0,75,0.0,0.0,1679.3416865047557,1215.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,123266,2,2,0,0,1,,0.0,367.0,11,0.0,0.0,3.0,1.0,1.0,2,2,780.547153465965,1215.0,20215.724835972058,0,5,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06010172822683148,20215.724835972058,5,3,5,5_0,5_4,5_1_0 -7939,2,48.0,0.0,1,111,150.0,150.0,0.0,0,34,0.0,0.0,207.32613413638958,300.0,0.0,272.04793512711734,71,2,2,2,2,1,2,2,2,2,30.0,2,,1,107636,2,2,0,0,1,,365.0,896.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1003.22968124085,150.0,41761.32352107422,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.0071836803699147495,41761.32352107422,9,5,9,9_0,9_4,9_1_0 -7940,2,84.0,0.0,1,111,332.0,1214.0,0.0,0,74,0.0,0.0,458.88184355520895,1546.0,0.0,2201.774621628803,43,2,2,2,2,1,2,2,2,0,,2,,1,127862,1,2,0,0,2,,253.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,932.580097362203,332.0,47973.689392979446,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0322259976158149,47973.689392979446,10,5,10,10_0,10_4,10_1_0 -7941,2,48.0,0.0,1,111,350.0,320.0,0.0,0,46,0.0,0.0,483.76097965157567,670.0,0.0,580.3689282711837,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,110354,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,668.55535134385,350.0,46768.048461105485,0,1,1,2,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014326020051001349,46768.048461105485,10,5,10,10_0,10_4,10_1_0 -7942,2,46.0,0.0,1,111,900.0,60.0,0.0,0,37,0.0,0.0,1243.9568048183376,960.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,3,75.0,2,,1,121150,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,1,900.948307309586,900.0,45131.02305306082,0,1,0,1,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021271399030137698,45131.02305306082,10,5,10,10_0,10_4,10_1_0 -7943,2,38.0,0.0,1,111,624.0,0.0,0.0,85,37,0.0,0.0,862.4767180073807,624.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,2,,1,128224,2,2,0,0,1,,0.0,1153.0,42,1.0,0.0,3.0,3.0,1.8,4,4,831.139126326762,624.0,45178.774850005146,7,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013811795518397705,25099.31936111397,7,4,7,7_0,7_4,7_1_0 -7944,2,68.0,0.0,1,111,1000.0,60.0,0.0,0,74,0.0,0.0,1382.1742275759307,1060.0,0.0,108.81917405084694,31,0,0,0,0,0,0,0,0,0,,2,,1,130221,2,2,0,0,2,,474.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,852.980817810654,1000.0,17043.338539679207,0,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06219438741606734,17043.338539679207,4,2,4_0,4_0_0,4_4_0,4_1_0 -7945,0,48.0,0.0,1,111,800.0,100.0,0.0,63,56,0.0,0.0,1105.7393820607444,900.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,1,100611,1,2,0,0,2,,427.0,,43,3.0,1.0,3.0,4.0,2.5,2,2,822.329581949123,800.0,83328.59137980155,1,1,5,0,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010800614592150128,33331.43655192062,8,4,8,8_0,8_4,8_1_0 -7946,2,32.0,0.0,1,111,320.0,61.0,0.0,0,38,0.0,0.0,442.2957528242978,381.0,0.0,110.63282695169438,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,132550,2,1,0,0,1,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1103.90521982468,320.0,27117.471254039083,0,1,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014049982626726338,27117.471254039083,7,4,7,7_0,7_4,7_1_0 -7947,2,27.0,0.0,1,111,420.0,0.0,0.0,37,55,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,124169,2,1,0,0,1,,0.0,940.0,43,2.0,0.0,2.0,2.0,1.5,2,2,960.347695048669,420.0,54155.30093134029,1,1,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0077554734767790985,36103.533954226856,9,5,9,9_0,9_4,9_1_0 -7948,2,74.0,0.0,6,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,337.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,123394,2,2,0,1,2,,271.0,575.0,11,0.0,0.0,1.0,1.0,1.0,1,1,949.987062388571,0.0,25217.997806700096,0,5,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013363471699187135,25217.997806700096,7,4,7,7_0,7_4,7_0_0 -7949,2,61.0,0.0,6,111,600.0,1500.0,0.0,55,21,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,71,2,2,2,2,2,2,2,1,0,,2,,4,102947,1,2,0,0,2,,0.0,656.0,43,2.0,0.0,3.0,3.0,2.0,1,1,1045.3634528562,600.0,28305.40369502129,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0741907807649242,14152.701847510645,3,2,3_0,3_0_0,3_4_0,3_0_0 -7950,2,72.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,123.0,0.0,0.0,60,1,2,2,2,2,2,2,1,0,,2,,2,117237,1,2,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,861.003711804502,0.0,34931.969980393915,0,5,0,1,38.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.003521129786526084,34931.969980393915,9,5,9,9_0,9_4,9_0_1 -7951,2,39.0,0.0,1,111,570.0,0.0,0.0,0,37,0.0,0.0,787.8393097182804,570.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,105492,2,1,0,0,1,,0.0,,22,2.0,0.0,2.0,2.0,1.5,2,2,1119.78842170826,570.0,58353.91236728009,0,1,1,2,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009767982588937902,38902.60824485339,9,5,9,9_0,9_4,9_1_0 -7952,2,27.0,0.0,1,111,1000.0,0.0,0.0,22,52,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,2,,1,126902,2,2,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,865.628131204918,1000.0,35792.3321133772,5,1,0,1,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02793894504645187,19884.62895187622,5,3,5,5_0,5_4,5_1_0 -7953,2,68.0,0.0,1,111,300.0,800.0,0.0,54,74,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,2,,1,101345,2,3,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,269.610939295571,300.0,73952.30955943288,1,5,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014874450934030243,49301.53970628858,10,5,10,10_0,10_4,10_1_0 -7954,2,71.0,0.0,1,111,300.0,140.0,0.0,0,72,0.0,0.0,414.65226827277917,440.0,0.0,253.91140611864284,50,0,0,0,0,0,0,0,0,0,,2,,1,123218,2,1,0,3,1,,0.0,410.0,21,0.0,0.0,2.0,2.0,1.5,2,2,233.599672676355,300.0,27609.236165389168,0,5,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015936695871057175,18406.15744359278,4,2,4_0,4_0_0,4_4_0,4_1_0 -7955,2,49.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1564.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,25.0,8,,2,117778,1,1,0,1,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,2,550.607400671665,0.0,20003.751619466075,0,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0781853339189654,20003.751619466075,5,3,5,5_0,5_4,5_0_1 -7956,2,52.0,0.0,1,111,1300.0,0.0,0.0,22,22,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,1,132127,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,881.949441273271,1300.0,66867.43846689897,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01944145057453535,44578.29231126598,10,5,10,10_0,10_4,10_1_0 -7958,2,69.0,0.0,1,111,300.0,400.0,0.0,0,77,0.0,155.27587572291867,414.65226827277917,850.0,0.0,725.4611603389795,71,2,2,2,2,1,2,2,2,0,,2,,1,120862,1,3,0,0,2,,0.0,339.0,11,0.0,1.0,2.0,1.0,1.0,3,2,1285.44053030115,300.0,20276.543184225207,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.04192036050115707,20276.543184225207,5,3,5,5_0,5_4,5_1_0 -7959,2,64.0,0.0,1,111,0.0,0.0,0.0,78,52,0.0,0.0,0.0,1611.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128472,2,1,0,0,1,,0.0,177.0,42,1.0,2.0,4.0,2.0,1.5,3,3,1065.18152665617,0.0,39754.53821806749,5,1,2,3,76.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04052367533897901,26503.02547871166,7,4,7,7_0,7_4,7_1_0 -7960,2,34.0,0.0,2,111,745.0,0.0,0.0,0,52,0.0,0.0,1029.7197995440683,745.0,0.0,0.0,71,2,2,2,1,1,2,2,2,3,30.0,2,,2,118114,2,2,0,0,1,,0.0,390.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1799.44806047238,745.0,25488.176480176284,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,0,0,0,0.029229238921012344,25488.176480176284,7,4,7,7_0,7_4,7_0_1 -7961,0,45.0,0.0,1,111,535.0,64.0,0.0,0,35,0.0,0.0,739.4632117531229,988.0,0.0,116.07378565423673,71,2,2,2,1,1,2,2,2,0,,2,,1,125788,1,2,0,1,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,6,5,927.057703309864,535.0,31252.554527864937,0,4,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03161341576475274,24040.426559896103,6,3,6,6_0,6_4,6_1_0 -7962,1,33.0,400.0,1,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,261.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,60.0,2,,1,101497,1,3,0,0,1,,144.0,592.0,42,1.0,3.0,1.0,3.0,1.8,1,1,1034.14046208606,0.0,20921.456325458705,6,1,2,3,18.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,1,0.012475230975312019,11623.031291921503,2,1,2_1,2_0_1,2_4_1,2_1_0 -7963,1,57.0,300.0,1,111,934.0,0.0,0.0,0,75,0.0,0.0,1290.950728555919,934.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,2,,1,123316,1,3,0,0,2,,0.0,494.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1181.80430302878,934.0,10450.422442243089,0,7,2,3,21.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,1,0.08937437746291961,10450.422442243089,2,1,2_1,2_0_1,2_4_1,2_1_0 -7964,2,33.0,0.0,9,111,750.0,0.0,0.0,0,42,0.0,0.0,1036.630670681948,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,110745,2,1,0,0,1,,0.0,1238.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1970.59818300085,750.0,65299.23128871925,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011485586969376254,65299.23128871925,10,5,10,10_0,10_4,10_0_0 -7965,2,27.0,0.0,1,111,1080.0,0.0,0.0,0,55,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,50,2,2,2,2,2,2,2,1,3,30.0,2,,1,104103,1,1,0,0,2,,0.0,707.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1360.25069306644,1080.0,29196.630454884522,0,1,3,4,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0.036990569910758955,29196.630454884522,8,4,8,8_0,8_4,8_1_0 -7966,2,46.0,0.0,1,111,400.0,0.0,0.0,0,53,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,102109,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1320.90974006307,400.0,9751.54506728179,0,4,0,1,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041019140786425004,9751.54506728179,2,1,2_0,2_0_0,2_4_0,2_1_0 -7967,2,70.0,0.0,1,111,1017.0,0.0,0.0,0,90,0.0,0.0,1405.6711894447214,1017.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,101214,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,4,3,993.252042912073,1017.0,88717.18647158881,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011463393288804179,88717.18647158881,10,5,10,10_0,10_4,10_1_0 -7968,2,63.0,0.0,1,111,353.0,0.0,0.0,35,33,0.0,0.0,487.9075023343035,642.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,45.0,2,,1,121343,1,2,0,1,2,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,767.585620855527,353.0,87323.8867844992,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007351940272474918,58215.92452299947,10,5,10,10_0,10_4,10_1_0 -7969,0,85.0,0.0,1,111,282.0,0.0,0.0,0,74,0.0,0.0,389.77313217641245,740.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128569,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,962.593903930928,282.0,49302.19519735991,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015009473656045772,49302.19519735991,10,5,10,10_0,10_4,10_1_0 -7970,2,85.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1894.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,1,101022,2,1,0,1,1,,0.0,,21,0.0,0.0,6.0,2.0,1.5,1,1,830.826902289088,0.0,46564.00892140848,0,5,0,1,129.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04067519193196456,31042.67261427232,8,4,8,8_0,8_4,8_1_0 -7971,2,31.0,0.0,1,111,383.0,0.0,0.0,38,37,0.0,0.0,529.3727291615814,383.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,25.0,2,,1,109211,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,3,3,1022.82614942245,383.0,114018.06537568664,1,1,1,2,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003359116809586487,76012.04358379109,10,5,10,10_0,10_4,10_1_0 -7972,2,67.0,0.0,1,111,680.0,186.0,0.0,75,37,0.0,0.0,939.8784747516328,866.0,0.0,337.3394395576255,43,0,0,0,0,0,0,0,0,1,35.0,2,,1,122729,2,2,0,1,2,,0.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,578.886724822012,680.0,128093.24938228348,5,1,0,1,107.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006760699757217464,85395.49958818899,10,5,10,10_0,10_4,10_1_0 -7973,2,55.0,0.0,1,111,1950.0,396.0,0.0,35,35,1659.3727983669987,0.0,2695.2397437730647,3457.0,0.0,718.2065487355898,71,2,2,1,1,2,2,2,2,2,25.0,2,,1,120280,2,3,0,1,1,,0.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,830.826902289088,1950.0,161273.419802186,1,1,0,1,125.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.021435646396289428,107515.61320145732,10,5,10,10_0,10_4,10_1_0 -7974,2,65.0,0.0,1,111,705.0,0.0,0.0,77,21,0.0,0.0,974.432830441031,705.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,132695,2,3,0,0,1,,0.0,331.0,42,2.0,1.0,1.0,3.0,2.0,2,2,1034.14046208606,705.0,21442.832388275616,6,1,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03287811923510048,10721.416194137808,2,1,2_0,2_0_0,2_4_0,2_1_0 -7975,2,43.0,0.0,1,111,332.0,338.0,0.0,65,37,0.0,649.0531605218,458.88184355520895,1297.0,0.0,613.0146804864378,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,125159,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,756.443633272543,332.0,72794.37453577953,1,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01781731086050482,40441.319186544184,9,5,9,9_0,9_4,9_1_0 -7976,2,55.0,0.0,1,111,275.0,1056.0,0.0,53,52,0.0,0.0,380.0979125833809,1331.0,0.0,1915.217463294906,42,2,2,2,2,1,2,2,2,1,7.0,2,,1,129977,1,3,0,0,1,,0.0,304.0,43,2.0,2.0,3.0,2.0,1.5,2,2,882.369417120557,275.0,29107.073552932707,4,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04572771623981738,19404.715701955138,5,3,5,5_0,5_4,5_1_0 -7977,2,31.0,0.0,1,111,160.0,430.0,0.0,0,35,0.0,0.0,221.1478764121489,590.0,0.0,779.870747364403,31,0,0,0,0,0,0,0,0,3,20.0,2,,1,109103,2,3,0,0,1,,0.0,347.0,12,1.0,0.0,1.0,1.0,1.0,1,1,592.192087753272,160.0,31076.441962998626,0,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01898544243586468,31076.441962998626,8,4,8,8_0,8_4,8_1_0 -7978,2,64.0,0.0,2,111,240.0,66.0,0.0,0,42,0.0,0.0,331.72181461822333,306.0,0.0,119.70109145593163,33,0,0,0,0,0,0,0,0,2,10.0,2,,2,106127,2,2,0,1,1,1116.0,0.0,970.0,22,2.0,1.0,4.0,2.0,1.5,1,1,1263.68786486366,240.0,59039.13335896302,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005183002909942691,39359.42223930868,9,5,9,9_0,9_4,9_0_1 -7979,2,55.0,0.0,5,111,334.0,0.0,0.0,33,34,1124.6694123945545,0.0,461.6461920103608,1087.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,2,,3,117926,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,3,2,875.673892016561,334.0,180200.22775373177,1,1,0,1,71.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006032178835453716,120133.48516915452,10,5,10,10_0,10_4,10_0_0 -7980,2,77.0,0.0,1,111,288.0,67.0,0.0,0,77,0.0,0.0,398.066177541868,407.0,0.0,121.51474435677908,50,0,0,0,0,0,0,0,0,0,,2,,1,124672,2,1,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,1002.53776505882,288.0,20397.283082086302,0,5,0,1,33.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01995363786255648,20397.283082086302,5,3,5,5_0,5_4,5_1_0 -7981,0,53.0,0.0,1,111,300.0,920.0,0.0,85,37,0.0,0.0,414.65226827277917,1220.0,0.0,1668.560668779653,50,0,0,0,0,0,0,0,0,3,50.0,2,,1,109039,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,2.0,2,2,1086.66351610284,300.0,59934.93253088509,6,1,5,0,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02035540791459674,29967.466265442545,8,4,8,8_0,8_4,8_1_0 -7982,1,26.0,60.0,1,111,0.0,0.0,0.0,56,52,0.0,0.0,0.0,1436.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,102992,2,2,0,0,1,,0.0,781.0,42,1.0,0.0,2.0,2.0,1.5,4,3,1247.90949662405,0.0,13392.865028990569,3,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10722127019809387,8928.576685993712,1,1,1_1,1_0_1,1_4_1,1_1_0 -7983,2,51.0,0.0,1,111,539.0,1591.0,0.0,35,46,0.0,0.0,744.9919086634266,2130.0,0.0,2885.521765248291,50,0,0,0,0,0,0,0,0,2,75.0,2,,1,130298,2,1,0,0,1,,0.0,1070.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1073.7200585456,539.0,105747.0,1,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020142415387670573,70498.0,10,5,10,10_0,10_4,10_1_0 -7984,0,32.0,0.0,5,111,360.0,0.0,0.0,0,38,0.0,0.0,497.582721927335,360.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,3,124318,2,1,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1753.23651206258,360.0,37236.69068530994,0,1,5,0,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009667883836466213,37236.69068530994,9,5,9,9_0,9_4,9_0_0 -7985,1,74.0,307.0,1,111,277.0,0.0,0.0,0,77,0.0,0.0,382.8622610385328,277.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,121131,2,2,0,1,2,252.0,0.0,416.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1016.7254998759,277.0,1584.1888702823587,0,5,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.17485288856411974,1584.1888702823587,1,1,1_1,1_0_1,1_4_1,1_1_0 -7986,2,43.0,0.0,1,111,332.0,50.0,0.0,0,54,0.0,0.0,458.88184355520895,382.0,0.0,90.68264504237244,10,2,2,1,1,1,2,2,2,3,30.0,2,,1,111552,1,1,0,1,2,518.0,0.0,595.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1118.75536323214,332.0,26600.734580162793,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01436050567884965,26600.734580162793,7,4,7,7_0,7_4,7_1_0 -7987,1,40.0,111.0,1,111,688.0,0.0,0.0,85,48,0.0,0.0,950.9358685722402,952.0,454.1663291062106,0.0,10,0,0,0,0,0,0,0,0,1,2.0,2,,1,133497,2,1,0,0,1,,0.0,512.0,42,1.0,0.0,2.0,3.0,1.8,4,3,1124.82757135248,688.0,39898.873484804804,6,1,3,4,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023860322782360315,22166.04082489156,6,3,6,6_0,6_4,6_1_0 -7988,2,70.0,0.0,5,111,960.0,0.0,0.0,0,77,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,105891,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,3,3,1198.11548563676,960.0,19099.967216719742,0,5,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.050261866374285424,19099.967216719742,5,3,5,5_0,5_4,5_0_0 -7989,1,56.0,338.0,6,111,256.0,0.0,0.0,75,77,0.0,659.4048855699946,353.8366022594382,893.0,0.0,0.0,71,2,1,2,2,2,2,2,1,0,,2,,4,107238,2,1,0,1,1,637.0,0.0,328.0,41,0.0,1.0,2.0,2.0,1.5,3,3,982.25017656244,256.0,19941.245322048006,5,7,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04478155629591779,13294.163548032004,3,2,3_1,3_0_1,3_4_1,3_0_0 -7990,2,49.0,0.0,1,111,249.6,471.2,0.0,62,35,0.0,0.0,344.99068720295224,721.0,0.0,854.5932468793179,71,0,0,0,0,0,0,0,0,0,,2,,1,105930,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,740.453401968869,249.6,19033.86653143366,4,1,1,2,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03787984952029046,10574.370295240922,2,1,2_0,2_0_0,2_4_0,2_1_0 -7991,0,25.0,0.0,1,111,477.0,0.0,0.0,0,11,0.0,0.0,659.2971065537189,477.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,126518,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,993.252042912073,477.0,5298.668252281118,0,1,5,0,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09002262026777158,5298.668252281118,1,1,1_0,1_0_0,1_4_0,1_1_0 -7992,0,28.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1047.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,1,122634,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,3,1405.3964988081,0.0,28404.76802828551,0,1,5,0,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03686000881814616,28404.76802828551,8,4,8,8_0,8_4,8_1_0 -7993,1,44.0,90.0,1,111,192.0,0.0,0.0,0,64,0.0,0.0,265.37745169457867,192.0,0.0,0.0,41,2,2,2,2,2,2,2,1,0,,2,,1,123456,1,1,0,0,2,,0.0,515.0,12,1.0,1.0,2.0,1.0,1.0,5,5,1285.44053030115,192.0,20022.251461768574,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,1,0.009589331168206223,20022.251461768574,5,3,5,5_0,5_4,5_1_0 -7994,2,78.0,0.0,1,111,512.0,1340.0,0.0,0,74,0.0,0.0,707.6732045188764,1852.0,0.0,2430.2948871355816,71,0,0,0,0,0,0,0,0,0,,2,,1,100844,2,3,0,0,1,,0.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1117.22097880814,512.0,29983.204625732233,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06176791384102331,29983.204625732233,8,4,8,8_0,8_4,8_1_0 -7995,2,43.0,0.0,1,111,1800.0,0.0,0.0,35,35,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,112934,2,2,0,0,1,,1800.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,869.147390978825,1800.0,73308.71975204792,1,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024553695741627187,40727.066528915515,9,5,9,9_0,9_4,9_1_0 -7996,2,64.0,0.0,1,111,264.0,566.0,0.0,0,38,0.0,0.0,364.89399608004567,830.0,0.0,1026.5275418796562,70,0,0,0,0,0,0,0,0,3,60.0,2,,1,109079,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1146.65646105595,264.0,43610.97095778558,0,1,1,2,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019031908296731594,43610.97095778558,10,5,10,10_0,10_4,10_1_0 -7997,2,37.0,0.0,1,111,793.0,0.0,0.0,46,21,0.0,0.0,1096.064162467713,793.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,5.0,2,,1,105737,2,2,0,0,1,,0.0,794.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1049.37276715257,793.0,5006.70674172335,4,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1583875471258464,3337.8044944822336,1,1,1_0,1_0_0,1_4_0,1_1_0 -7998,2,36.0,0.0,1,111,525.0,1585.0,0.0,35,33,0.0,0.0,725.6414694773636,2110.0,0.0,2874.6398478432066,50,1,2,2,2,2,2,2,1,3,40.0,2,,1,103559,1,1,0,0,2,,0.0,1301.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1058.13433724642,525.0,99819.47998869636,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.021138158606305486,55455.266660386864,10,5,10,10_0,10_4,10_1_0 -7999,2,72.0,0.0,2,111,250.0,100.0,0.0,0,42,0.0,0.0,345.54355689398267,350.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,2,107735,2,2,0,2,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1177.79219965032,250.0,51517.42671066307,0,5,0,1,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006793817594300707,51517.42671066307,10,5,10,10_0,10_4,10_0_1 -8000,2,36.0,0.0,1,111,438.0,1030.0,0.0,37,33,0.0,0.0,605.3923116782576,1468.0,0.0,1868.0624878728725,50,2,2,2,1,1,2,1,2,3,80.0,2,,1,116156,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,915.499721673236,438.0,114001.43854038745,1,1,1,2,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.012877030490101488,54286.399304946404,10,5,10,10_0,10_4,10_1_0 -8001,2,27.0,0.0,1,111,731.0,314.0,0.0,55,90,0.0,0.0,1010.3693603580052,1045.0,0.0,569.4870108660989,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,130518,1,1,0,0,2,,0.0,992.0,43,2.0,0.0,2.0,2.0,1.5,3,3,1134.10084854423,731.0,47907.202331472356,4,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021813004081715985,31938.134887648237,8,4,8,8_0,8_4,8_1_0 -8002,2,53.0,0.0,5,111,465.0,0.0,0.0,0,42,0.0,0.0,642.7110158228077,465.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,129946,2,1,0,0,1,,0.0,506.0,12,1.0,0.0,5.0,1.0,1.0,2,2,1100.28373836781,465.0,38464.81955516818,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012088968709006255,38464.81955516818,9,5,9,9_0,9_4,9_0_0 -8003,2,51.0,0.0,6,111,730.0,0.0,0.0,46,53,0.0,0.0,1008.9871861304293,730.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,4,106046,2,1,0,0,2,,0.0,493.0,43,2.0,0.0,2.0,2.0,1.5,3,3,1194.88645915782,730.0,62641.71733470839,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011653575780808346,41761.14488980559,9,5,9,9_0,9_4,9_0_0 -8004,2,48.0,0.0,1,111,520.0,900.0,0.0,31,35,0.0,0.0,718.7305983394839,1420.0,0.0,1632.287610762704,41,0,0,0,0,0,0,0,0,0,,2,,1,111220,2,1,0,0,1,,0.0,1538.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1073.7200585456,520.0,67009.06216075049,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021191163615952573,44672.70810716699,10,5,10,10_0,10_4,10_1_0 -8005,2,44.0,0.0,1,111,369.0,1145.0,0.0,46,37,0.0,0.0,510.0222899755184,1514.0,0.0,2076.632571470329,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,104453,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,1003.61112783376,369.0,129903.40499419757,4,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011654813821605572,72168.55833010976,10,5,10,10_0,10_4,10_1_0 -8006,2,47.0,0.0,1,111,700.0,750.0,0.0,31,46,0.0,0.0,967.5219593031513,1450.0,0.0,1360.2396756355868,44,0,0,0,0,0,0,0,0,0,,2,,1,118360,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,4,3,950.255318263281,700.0,134426.32781493347,1,1,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010786577477562538,67213.16390746673,10,5,10,10_0,10_4,10_1_0 -8007,2,62.0,0.0,1,111,895.0,0.0,0.0,52,63,0.0,0.0,1237.045933680458,895.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,2,,1,124786,2,2,0,0,2,,0.0,498.0,43,2.0,6.0,1.0,2.0,1.5,2,2,1147.29913841699,895.0,38115.51902973418,1,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023481249180991193,25410.346019822788,7,4,7,7_0,7_4,7_1_0 -8008,2,76.0,0.0,1,111,76.0,338.0,0.0,0,77,0.0,0.0,105.04524129577072,414.0,0.0,613.0146804864378,70,0,0,0,0,0,0,0,0,0,,2,,1,118759,2,1,0,0,1,,0.0,220.0,11,0.0,3.0,1.0,1.0,1.0,2,2,1081.47627519887,76.0,18711.011844950743,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022126008119209218,18711.011844950743,5,3,5,5_0,5_4,5_1_0 -8009,2,32.0,0.0,1,111,280.0,584.0,0.0,84,52,0.0,0.0,387.00878372126056,864.0,0.0,1059.1732940949103,50,0,0,0,0,0,0,0,0,1,20.0,2,,1,131599,2,1,0,0,1,,0.0,257.0,42,1.0,0.0,1.0,2.0,1.5,2,2,1044.49806872304,280.0,27006.785333569296,3,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03199196014366258,18004.523555712865,4,2,4_0,4_0_0,4_4_0,4_1_0 -8010,2,41.0,0.0,1,111,1600.0,0.0,0.0,52,48,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,2,,1,107762,2,3,0,0,1,,0.0,216.0,43,3.0,1.0,3.0,4.0,2.3,2,2,932.420551970226,1600.0,45818.96513136831,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034920037923436585,19921.289187551443,5,3,5,5_0,5_4,5_1_0 -8011,2,33.0,0.0,1,111,240.0,0.0,0.0,0,46,0.0,0.0,331.72181461822333,240.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,1,121662,1,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1059.03710823107,240.0,37031.12218843326,0,1,1,2,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006481035027206506,37031.12218843326,9,5,9,9_0,9_4,9_1_0 -8012,2,54.0,0.0,1,111,497.81,469.0,0.0,56,68,0.0,0.0,688.060152229574,967.0,0.0,850.6032104974536,71,2,2,1,1,1,2,2,2,0,,2,,1,100418,2,2,0,0,2,,0.0,44.0,43,2.0,1.0,2.0,2.0,1.5,4,4,1110.31684421102,497.81,45604.518289757296,1,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.021204039342241812,30403.01219317153,8,4,8,8_0,8_4,8_1_0 -8013,2,80.0,0.0,1,111,618.0,244.0,0.0,0,37,0.0,0.0,854.1836726419251,862.0,0.0,442.53130780677753,50,1,1,2,1,1,2,2,2,0,,2,,1,101459,1,2,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,912.993671563499,618.0,68021.27515609915,0,5,0,1,99.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.012672505742090731,68021.27515609915,10,5,10,10_0,10_4,10_1_0 -8014,2,51.0,0.0,1,111,600.0,0.0,0.0,53,43,0.0,0.0,829.3045365455583,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,100654,2,1,0,0,1,,0.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,940.36271312732,600.0,36327.3555627319,1,1,1,2,17.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016516478854726707,24218.237041821267,7,4,7,7_0,7_4,7_1_0 -8015,2,33.0,0.0,1,111,326.0,0.0,0.0,0,37,0.0,0.0,450.58879818975333,326.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,116266,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1001.46945266636,326.0,47040.28815231248,0,1,1,2,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006930229656426413,47040.28815231248,10,5,10,10_0,10_4,10_1_0 -8016,1,27.0,173.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,670.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,124594,2,2,0,0,1,,0.0,630.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1292.08904698523,0.0,23579.160540819616,0,4,3,4,21.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02841492167798399,23579.160540819616,6,3,6,6_0,6_4,6_1_0 -8017,2,36.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1980.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,20.0,2,,1,115664,1,1,0,0,1,,0.0,900.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1405.3964988081,0.0,35531.964368926594,0,1,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.055724473306394205,35531.964368926594,9,5,9,9_0,9_4,9_1_0 -8019,2,61.0,0.0,2,111,2400.0,864.0,0.0,46,90,0.0,0.0,3317.2181461822333,3264.0,0.0,1566.996106332196,12,0,0,0,0,0,0,0,0,2,120.0,2,,2,123557,1,1,0,1,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1073.37412643161,2400.0,135414.02070088973,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02410385559121467,90276.01380059315,10,5,10,10_0,10_4,10_0_1 -8020,2,44.0,0.0,1,111,792.0,0.0,0.0,35,37,0.0,0.0,1094.681988240137,792.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,118636,2,3,0,0,1,,0.0,343.0,43,2.0,0.0,2.0,2.0,1.5,2,2,268.540869421866,792.0,64225.97493852407,1,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012331459362946034,42817.31662568272,9,5,9,9_0,9_4,9_1_0 -8021,2,37.0,0.0,1,111,480.0,0.0,0.0,0,37,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,118631,2,2,0,0,1,,0.0,536.0,12,1.0,0.0,1.0,1.0,1.0,2,2,332.196608531871,480.0,27737.735916818114,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017304945199545414,27737.735916818114,7,4,7,7_0,7_4,7_1_0 -8022,2,35.0,0.0,6,111,300.0,72.0,0.0,35,34,0.0,0.0,414.65226827277917,372.0,0.0,130.5830088610163,71,0,0,0,0,0,0,0,0,3,25.0,2,,4,104024,1,3,0,1,2,,0.0,1400.0,43,2.0,0.0,3.0,3.0,1.8,3,3,293.922017195988,300.0,64221.31436785466,1,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005792469426415241,35678.50798214148,9,5,9,9_0,9_4,9_0_0 -8023,1,31.0,281.0,2,111,780.0,0.0,0.0,63,55,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,106842,1,2,0,0,2,,0.0,950.0,43,2.0,0.0,3.0,4.0,2.1,2,2,366.900911993631,780.0,24242.913279959805,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03217435095330644,11544.244419028479,2,1,2_1,2_0_1,2_4_1,2_0_1 -8024,2,63.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,493.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108169,1,2,0,1,1,,0.0,288.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1169.93712852088,0.0,17782.96816039321,0,5,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02772315597449166,17782.96816039321,4,2,4_0,4_0_0,4_4_0,4_0_0 -8025,2,42.0,0.0,6,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,181.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,25.0,2,,4,130206,2,2,0,1,1,,194.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,986.184515196853,0.0,44814.0658075313,0,1,1,2,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004038910479075116,44814.0658075313,10,5,10,10_0,10_4,10_0_0 -8026,2,44.0,0.0,1,111,1080.0,360.0,0.0,84,34,0.0,0.0,1492.748165782005,1440.0,0.0,652.9150443050816,20,0,0,0,0,0,0,0,0,3,40.0,2,,1,112077,1,2,0,0,1,,0.0,730.0,42,1.0,1.0,3.0,3.0,1.8,1,1,863.266279894461,1080.0,46824.18623086056,3,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030753337450442113,26013.436794922534,7,4,7,7_0,7_4,7_1_0 -8027,2,39.0,0.0,1,111,720.0,210.0,0.0,35,54,0.0,0.0,995.16544385467,930.0,0.0,380.86710917796427,43,0,0,0,0,0,0,0,0,2,30.0,2,,1,117366,1,1,0,0,2,,0.0,525.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1596.10149211423,720.0,16382.68838814133,1,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0567672397817921,10921.792258760886,2,1,2_0,2_0_0,2_4_0,2_1_0 -8028,0,27.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,526.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,114966,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,6,4,1151.90748461844,0.0,12777.020217364232,0,1,0,1,26.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041167658112112496,12777.020217364232,2,1,2_0,2_0_0,2_4_0,2_1_0 -8029,2,45.0,0.0,1,111,400.0,0.0,0.0,0,46,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,114664,2,1,0,0,1,,0.0,183.0,12,1.0,0.0,2.0,1.0,1.0,5,4,764.281862580634,400.0,36838.46234617666,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010858216508635428,36838.46234617666,9,5,9,9_0,9_4,9_1_0 -8030,0,60.0,0.0,5,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,789.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,1.0,2,,3,105619,2,2,0,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,877.589363126583,0.0,55730.65499305881,0,1,5,0,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01415737891647369,55730.65499305881,10,5,10,10_0,10_4,10_0_0 -8032,1,42.0,310.0,1,111,720.0,200.0,0.0,56,67,0.0,0.0,995.16544385467,920.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,0,,2,,1,130751,2,1,0,1,1,516.0,0.0,285.0,43,2.0,3.0,2.0,5.0,2.4,4,2,187.480426800741,720.0,30333.86781555245,1,4,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03032913592141084,12639.111589813521,2,1,2_1,2_0_1,2_4_1,2_1_0 -8033,2,30.0,0.0,2,111,228.0,150.0,0.0,0,21,0.0,0.0,315.13572388731217,378.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,2,,2,132698,2,1,0,1,1,330.0,0.0,230.0,22,1.0,0.0,1.0,2.0,1.5,2,2,300.797647846729,228.0,9506.230386267216,0,1,2,3,21.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039763395651136554,6337.486924178144,1,1,1_0,1_0_0,1_4_0,1_0_1 -8034,2,37.0,0.0,1,111,0.0,0.0,0.0,84,55,0.0,0.0,0.0,655.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,10.0,2,,1,122141,2,2,0,1,1,264.0,0.0,728.0,42,1.0,0.0,1.0,2.0,1.5,3,3,1278.41417522427,0.0,19634.466050836458,3,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0333597052399648,13089.644033890972,2,1,2_0,2_0_0,2_4_0,2_1_0 -8035,2,29.0,0.0,2,111,216.0,72.0,0.0,0,38,0.0,0.0,298.549633156401,288.0,0.0,130.5830088610163,31,0,0,0,0,0,0,0,0,1,15.0,2,,2,109805,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1290.18790424855,216.0,40346.183252451425,0,1,1,2,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007138221680052008,40346.183252451425,9,5,9,9_0,9_4,9_0_1 -8036,2,85.0,0.0,2,111,0.0,150.0,0.0,0,77,0.0,0.0,0.0,406.0,0.0,272.04793512711734,71,2,1,2,2,1,2,2,2,0,,2,,2,116185,2,3,0,1,1,602.0,0.0,365.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1107.38698902703,0.0,17825.985577897307,0,5,2,3,60.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.022775739283857895,17825.985577897307,4,2,4_0,4_0_0,4_4_0,4_0_1 -8037,2,60.0,0.0,1,111,518.0,0.0,0.0,0,46,0.0,0.0,715.966249884332,518.0,0.0,0.0,44,2,2,2,2,1,2,2,2,3,60.0,2,,1,126690,1,3,0,0,2,,0.0,617.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1181.72626311842,518.0,32286.710232822363,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.016043752871217152,32286.710232822363,8,4,8,8_0,8_4,8_1_0 -8038,2,30.0,0.0,7,111,420.0,0.0,0.0,0,33,0.0,0.0,580.5131755818909,420.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,,5,122362,2,1,0,0,2,,0.0,515.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1053.62414541243,420.0,32024.691338667082,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013114880501373822,32024.691338667082,8,4,8,8_0,8_4,8_0_0 -8039,2,67.0,0.0,5,111,297.0,0.0,0.0,0,75,0.0,0.0,410.5057455900514,297.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,126387,2,2,0,1,2,353.0,0.0,499.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1289.3432836254,297.0,28546.94334263595,0,5,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010403915979208153,28546.94334263595,8,4,8,8_0,8_4,8_0_0 -8040,2,59.0,0.0,1,111,240.0,0.0,0.0,0,35,0.0,0.0,331.72181461822333,240.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,30.0,8,,1,125058,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,993.186453947666,240.0,22284.97714675893,0,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010769586992145736,22284.97714675893,6,3,6,6_0,6_4,6_1_0 -8041,2,45.0,0.0,7,111,410.0,0.0,0.0,56,43,0.0,0.0,566.6914333061316,410.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,45.0,2,,5,133191,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,786.291963873548,410.0,25804.79629172657,1,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015888519148335712,17203.197527817712,4,2,4_0,4_0_0,4_4_0,4_0_0 -8042,2,67.0,0.0,1,111,899.0,0.0,0.0,56,78,0.0,0.0,1242.5746305907617,899.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,121615,2,2,0,0,1,,0.0,530.0,42,1.0,2.0,2.0,2.0,1.5,2,2,1141.32027478783,899.0,28818.827754672664,1,5,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.031194884387836935,19212.55183644844,5,3,5,5_0,5_4,5_1_0 -8043,2,64.0,0.0,1,111,540.0,0.0,0.0,0,45,0.0,0.0,746.3740828910024,540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,1,101644,2,2,0,0,1,,0.0,500.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1285.35564681959,540.0,22544.855508652214,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023952249318819542,22544.855508652214,6,3,6,6_0,6_4,6_1_0 -8044,2,69.0,0.0,2,111,15.0,0.0,0.0,77,75,0.0,0.0,20.73261341363896,15.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,116792,2,1,0,1,1,985.0,0.0,433.0,41,0.0,3.0,4.0,2.0,1.5,1,1,1039.79003612897,15.0,43638.67968374584,5,5,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00034373175606380846,29092.453122497227,8,4,8,8_0,8_4,8_0_1 -8045,2,52.0,0.0,5,111,447.0,0.0,0.0,0,37,0.0,0.0,617.831879726441,447.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,2,,3,114581,1,1,0,1,1,720.0,0.0,490.0,32,2.0,6.0,6.0,4.0,2.5,2,2,961.658508628988,447.0,70814.62150742828,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0063122557246614785,28325.848602971313,8,4,8,8_0,8_4,8_0_0 -8046,2,58.0,0.0,2,111,330.0,0.0,0.0,75,35,0.0,0.0,456.1174951000571,330.0,0.0,0.0,71,2,2,2,2,2,2,2,1,3,30.0,2,,2,114431,2,3,0,1,1,620.0,0.0,965.0,42,1.0,1.0,4.0,2.0,1.5,3,3,983.207894837016,330.0,66086.68606529245,5,1,2,3,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.004993441487956681,44057.79071019497,10,5,10,10_0,10_4,10_0_1 -8048,2,69.0,0.0,5,111,600.0,360.0,0.0,77,77,0.0,0.0,829.3045365455583,960.0,0.0,652.9150443050816,43,2,2,2,2,1,2,2,2,0,,2,,3,108618,1,3,0,1,1,,489.0,644.0,41,1.0,0.0,4.0,4.0,2.5,3,2,986.778223349256,600.0,36917.30890381167,7,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02600406228149748,14766.923561524667,3,2,3_0,3_0_0,3_4_0,3_0_0 -8049,1,68.0,80.0,2,111,227.0,62.0,0.0,0,77,0.0,0.0,313.7535496597362,289.0,0.0,112.44647985254183,43,0,0,0,0,0,0,0,0,0,,2,,2,114511,2,2,0,1,1,400.0,0.0,316.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1170.58548589017,227.0,13927.664604939711,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020750068887895292,13927.664604939711,3,2,3_1,3_0_1,3_4_1,3_0_1 -8050,2,31.0,0.0,2,111,581.0,0.0,0.0,55,43,0.0,0.0,803.0432262216157,581.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,45.0,2,,2,121179,2,2,0,1,1,1080.0,0.0,1114.0,43,2.0,0.0,3.0,3.0,1.8,2,1,1045.10534513618,581.0,37626.65762190366,1,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.015441180182365752,20903.698678835364,5,3,5,5_0,5_4,5_0_1 -8051,2,39.0,0.0,1,111,0.0,0.0,1382.0,38,31,0.0,0.0,706.0822287454596,1382.0,0.0,1579.9656605699367,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,120624,1,2,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,966.840192955568,0.0,134733.8453651581,1,1,1,2,86.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01025725938612142,64158.97398340862,10,5,10,10_0,10_4,10_1_0 -8052,2,54.0,0.0,1,111,900.0,480.0,0.0,37,34,0.0,0.0,1243.9568048183376,1380.0,0.0,870.5533924067755,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,108871,2,1,0,0,1,,0.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,1003.54485481171,900.0,94036.60734875435,1,1,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014675135980629144,47018.30367437717,10,5,10,10_0,10_4,10_1_0 -8053,2,47.0,0.0,2,111,0.0,0.0,0.0,35,54,0.0,0.0,0.0,1139.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,2,103671,2,1,0,0,1,,0.0,1089.0,43,2.0,2.0,4.0,4.0,2.3,1,1,1879.08208172187,0.0,90704.82441832723,1,1,2,3,98.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01255721520111185,39436.88018188141,9,5,9,9_0,9_4,9_0_1 -8055,2,64.0,0.0,7,111,655.0,0.0,0.0,0,74,0.0,0.0,905.3241190622346,655.0,0.0,0.0,12,2,2,2,2,1,1,2,2,0,,2,,5,113860,1,3,0,0,1,,0.0,521.0,21,1.0,1.0,3.0,2.0,1.5,2,2,1131.19467281311,655.0,41003.283575541325,0,5,2,3,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.01597433041656964,27335.522383694217,7,4,7,7_0,7_4,7_0_0 -8056,1,31.0,432.0,7,111,1436.0,0.0,0.0,0,37,0.0,0.0,1984.8021907990362,1436.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,127765,2,1,0,1,1,476.0,0.0,477.0,22,4.0,0.0,4.0,7.0,3.8,2,2,774.162210191568,1436.0,60000.465326972735,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023933147721013716,15789.596138677036,3,2,3_1,3_0_1,3_4_1,3_0_0 -8057,2,47.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,490.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,2,103617,2,2,0,1,1,660.0,0.0,865.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1261.49842914731,0.0,53565.91994601856,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009147607293850288,53565.91994601856,10,5,10,10_0,10_4,10_0_1 -8058,2,36.0,0.0,2,111,168.0,0.0,0.0,0,47,0.0,0.0,232.20527023275633,168.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,131998,1,3,0,1,2,,0.0,,22,1.0,0.0,2.0,2.0,1.5,1,1,1198.47117249865,168.0,33512.839295787046,0,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005013004076354687,22341.89286385803,6,3,6,6_0,6_4,6_0_1 -8059,2,84.0,0.0,6,111,540.0,0.0,0.0,0,75,0.0,0.0,746.3740828910024,540.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,129861,2,1,0,1,1,,123.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1042.21999129593,540.0,9685.431186597507,0,7,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05575384199179903,9685.431186597507,1,1,1_0,1_0_0,1_4_0,1_0_0 -8060,2,40.0,0.0,2,111,120.0,0.0,0.0,0,35,0.0,0.0,165.86090730911167,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113648,2,3,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1042.21999129593,120.0,8136.374297912356,0,4,0,1,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014748584026031077,8136.374297912356,1,1,1_0,1_0_0,1_4_0,1_0_1 -8061,2,53.0,0.0,2,111,470.0,0.0,0.0,34,33,0.0,0.0,649.6218869606873,470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,112722,2,2,0,1,1,,0.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,911.922462358273,470.0,92809.54210939792,1,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005064134455549777,51560.856727443286,10,5,10,10_0,10_4,10_0_1 -8062,1,29.0,200.0,5,111,180.0,0.0,0.0,0,81,0.0,0.0,248.7913609636675,180.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,115402,1,2,0,1,2,240.0,0.0,610.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1288.76822077129,180.0,12970.380169777342,0,4,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013877773638387502,12970.380169777342,2,1,2_1,2_0_1,2_4_1,2_0_0 -8063,2,36.0,0.0,6,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1083.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,128857,2,2,0,0,1,,0.0,180.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1069.40762872211,0.0,21809.19895968423,0,1,2,3,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04965794488839312,21809.19895968423,6,3,6,6_0,6_4,6_0_0 -8064,2,54.0,0.0,7,111,2053.0,0.0,0.0,55,55,0.0,0.0,2837.603689213385,2053.0,0.0,0.0,71,1,2,2,2,2,2,2,1,3,45.0,2,,5,127629,2,3,0,0,1,,0.0,492.0,43,2.0,0.0,4.0,5.0,2.8,3,2,883.158172733661,2053.0,24498.197069360387,1,1,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.08380208527947812,8749.35609620014,1,1,1_0,1_0_0,1_4_0,1_0_0 -8065,2,53.0,0.0,7,111,495.0,0.0,0.0,0,52,0.0,0.0,684.1762426500857,495.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,20.0,2,,5,105924,2,3,0,0,1,,0.0,426.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1037.4115920876,495.0,23908.14433838986,0,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020704241742641946,23908.14433838986,6,3,6,6_0,6_4,6_0_0 -8066,2,33.0,0.0,1,111,444.0,0.0,0.0,85,68,0.0,0.0,613.6853570437131,444.0,0.0,0.0,50,2,2,2,1,2,2,2,2,3,25.0,2,,1,115538,2,3,0,1,1,,0.0,500.0,42,1.0,0.0,1.0,3.0,1.8,2,2,899.982350286509,444.0,10666.7728502954,7,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04162458563910491,5925.984916830777,1,1,1_0,1_0_0,1_4_0,1_1_0 -8067,2,36.0,0.0,1,111,354.0,1376.0,0.0,0,35,0.0,0.0,489.28967656187945,1730.0,0.0,2495.58639156609,31,2,2,2,2,2,2,2,1,0,,2,,1,128028,1,1,0,0,2,,0.0,,32,1.0,0.0,4.0,2.0,1.3,3,3,964.188368565987,354.0,85181.56119037796,0,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0203095596725858,65524.27783875228,10,5,10,10_0,10_4,10_1_0 -8068,2,23.0,0.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,436.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,2,,1,128091,2,3,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1151.83141891131,0.0,31000.560764487695,0,1,1,2,23.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014064261718112349,31000.560764487695,8,4,8,8_0,8_4,8_1_0 -8069,1,24.0,96.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,441.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,1.0,2,,1,119476,2,1,0,4,1,272.0,0.0,513.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1345.48322626682,0.0,11482.168342542689,0,1,3,4,20.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03840737975997502,11482.168342542689,2,1,2_1,2_0_1,2_4_1,2_1_0 -8070,2,62.0,0.0,7,111,1050.0,0.0,0.0,43,75,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,132147,2,1,0,0,1,,0.0,1100.0,42,2.0,2.0,4.0,3.0,2.0,2,2,787.897278172754,1050.0,77648.95893992955,1,5,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013522396363514627,38824.479469964775,9,5,9,9_0,9_4,9_0_0 -8071,2,46.0,0.0,2,111,121.0,0.0,0.0,0,35,0.0,0.0,167.2430815366876,322.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,109986,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1042.21999129593,121.0,37936.679616227164,0,1,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00848782769755808,37936.679616227164,9,5,9,9_0,9_4,9_0_1 -8072,1,28.0,308.0,7,111,180.0,0.0,0.0,0,81,0.0,0.0,248.7913609636675,180.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,5,119229,2,1,0,1,2,330.0,0.0,672.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1289.3432836254,180.0,4852.694428053195,0,4,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,1,1,0.037092795078838794,4852.694428053195,1,1,1_1,1_0_1,1_4_1,1_0_0 -8073,2,36.0,0.0,2,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,602.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,40.0,2,,2,104029,1,1,0,1,2,376.0,0.0,860.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1120.63628504131,0.0,57340.7377766768,1,1,2,3,46.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010498644128797066,38227.15851778453,9,5,9,9_0,9_4,9_0_1 -8074,2,63.0,0.0,2,111,240.0,0.0,0.0,0,74,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104509,2,3,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1461.55997535111,240.0,55474.49144580426,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004326312756457943,55474.49144580426,10,5,10,10_0,10_4,10_0_1 -8075,2,69.0,0.0,6,111,290.0,0.0,0.0,90,78,0.0,0.0,400.8305259970199,290.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,1,,4,127365,1,1,2,1,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,635.514369115404,290.0,18112.931994310882,5,5,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.01601066023386421,12075.287996207255,2,1,2_0,2_1_0,2_4_0,2_0_0 -8076,2,55.0,0.0,8,111,0.0,0.0,546.0,54,21,0.0,0.0,278.9586808212887,546.0,0.0,624.2121929603368,71,1,2,2,2,1,2,2,2,0,,2,1999.0,6,117734,1,3,0,0,1,,0.0,499.0,43,2.0,0.0,3.0,4.0,2.1,2,2,746.892750043671,0.0,41323.248267248986,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.013212901281836935,19677.737270118563,5,3,5,5_0,5_4,5_0_0 -8077,2,34.0,0.0,1,111,480.0,0.0,0.0,46,46,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,,1,109186,2,2,0,0,1,,0.0,937.0,43,2.0,0.0,3.0,2.0,1.5,2,2,982.095657737482,480.0,67738.8960873212,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0070860322167228575,45159.26405821414,10,5,10,10_0,10_4,10_1_0 -8078,0,59.0,0.0,2,111,600.0,220.0,0.0,56,63,0.0,0.0,829.3045365455583,820.0,0.0,399.00363818643876,71,2,2,2,1,2,2,2,2,3,60.0,2,,2,132786,2,2,0,1,1,,0.0,,43,2.0,7.0,4.0,2.0,1.5,1,1,245.349641626297,600.0,29086.902162051898,1,1,5,0,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02819138302977515,19391.268108034597,5,3,5,5_0,5_4,5_0_1 -8079,1,46.0,213.0,6,111,587.0,180.0,0.0,85,53,0.0,0.0,811.3362715870712,767.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,3,25.0,2,,4,103086,2,1,0,1,1,718.0,0.0,448.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,1,1,297.754525520828,587.0,32137.409787008433,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02386626691706997,11081.865443796014,2,1,2_1,2_0_1,2_4_1,2_0_0 -8080,2,51.0,0.0,2,111,430.0,0.0,0.0,0,68,0.0,0.0,594.3349178576501,481.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,125757,2,1,0,1,1,476.0,0.0,437.0,32,1.0,2.0,4.0,4.0,2.1,2,2,277.499961998293,430.0,9461.902347149415,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.050835443270550215,4505.667784356864,1,1,1_0,1_0_0,1_4_0,1_0_1 -8081,2,31.0,0.0,5,111,367.0,62.0,0.0,0,38,0.0,0.0,507.2579415203665,429.0,0.0,112.44647985254183,50,0,0,0,0,0,0,0,0,0,,2,,3,114369,2,1,0,1,1,714.0,241.0,280.0,32,1.0,0.0,3.0,4.0,2.1,4,3,262.629813333006,367.0,61590.59316263612,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006965349381636618,29328.85388696958,8,4,8,8_0,8_4,8_0_0 -8082,2,68.0,0.0,1,111,770.0,340.0,0.0,77,75,0.0,0.0,1064.2741552334664,1110.0,0.0,616.6419862881327,31,2,2,2,1,2,2,2,2,0,,2,,1,104748,2,1,0,0,1,,0.0,327.0,41,0.0,7.0,4.0,2.0,1.5,1,1,248.011257910569,770.0,16648.832966757007,7,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.06667133979999408,11099.221977838004,2,1,2_0,2_0_0,2_4_0,2_1_0 -8083,1,65.0,248.0,2,111,300.0,600.0,0.0,0,77,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,70,2,2,2,2,1,2,2,2,0,,2,,2,122276,2,2,0,0,1,,0.0,163.0,11,0.0,1.0,2.0,1.0,1.0,1,1,263.196815260083,300.0,7286.938775510203,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.1235086540077298,7286.938775510203,1,1,1_1,1_0_1,1_4_1,1_0_1 -8084,2,69.0,0.0,1,111,0.0,291.0,0.0,77,78,0.0,0.0,0.0,792.0,0.0,527.7729941466076,70,2,2,2,2,1,2,2,2,0,,2,,1,106494,2,3,0,0,1,,0.0,201.0,41,0.0,2.0,3.0,2.0,1.5,4,4,261.958203915728,0.0,24033.753519580914,5,5,2,3,47.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03295365409130693,16022.502346387277,4,2,4_0,4_0_0,4_4_0,4_1_0 -8085,1,60.0,158.0,7,111,1220.0,0.0,0.0,52,78,0.0,0.0,1686.2525576426353,1220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,128096,1,1,0,0,1,,0.0,440.0,42,2.0,0.0,3.0,4.0,2.5,2,2,683.142596063427,1220.0,42780.40465444021,1,7,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02851772931683514,17112.161861776083,4,2,4_1,4_0_1,4_4_1,4_0_0 -8086,1,52.0,284.0,8,111,813.0,0.0,0.0,0,56,0.0,0.0,1123.7076470192314,813.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,2000.0,6,103246,1,3,0,0,1,,0.0,509.0,32,1.0,0.0,3.0,3.0,2.0,4,4,709.077097101681,813.0,26763.12604792639,0,4,2,3,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03037761726877908,13381.563023963196,3,2,3_1,3_0_1,3_4_1,3_0_0 -8087,1,54.0,283.0,7,111,2800.0,0.0,0.0,52,56,0.0,0.0,3870.0878372126053,2800.0,0.0,0.0,33,2,2,2,2,1,2,2,2,3,50.0,2,,5,130267,1,2,0,0,1,,0.0,680.0,43,2.0,3.0,4.0,7.0,3.6,2,2,793.396954106611,2800.0,63952.173167927125,1,1,2,3,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,1,0.04378271857388949,17764.492546646423,4,2,4_1,4_0_1,4_4_1,4_0_0 -8088,1,51.0,379.0,6,111,798.0,0.0,0.0,54,68,0.0,0.0,1102.9750336055927,798.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,110229,2,1,0,0,1,,0.0,801.0,43,2.0,3.0,4.0,5.0,2.4,3,1,1032.87263920864,798.0,28432.644657102875,4,1,2,3,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028066330431933576,11846.935273792866,2,1,2_1,2_0_1,2_4_1,2_0_0 -8089,2,54.0,0.0,8,111,924.0,0.0,0.0,34,31,0.0,0.0,1277.1289862801598,924.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,126047,2,1,0,0,1,,0.0,,43,2.0,4.0,5.0,3.0,2.0,1,1,793.456826031864,924.0,386102.11032546917,1,1,0,1,127.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002393149312810292,193051.05516273458,10,5,10,10_0,10_4,10_0_0 -8090,2,61.0,0.0,2,111,440.0,90.0,0.0,52,43,0.0,0.0,608.1566601334094,677.0,0.0,163.2287610762704,60,0,0,0,0,0,0,0,0,3,35.0,2,,2,107344,2,1,0,1,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,4,4,1134.7772923698,440.0,99808.32561394411,4,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006783001276052036,66538.8837426294,10,5,10,10_0,10_4,10_0_1 -8091,2,32.0,0.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,302.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,3,105157,2,1,0,1,2,408.0,0.0,790.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1609.21818132423,0.0,29219.195049770773,0,1,2,3,26.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010335671447676284,29219.195049770773,8,4,8,8_0,8_4,8_0_0 -8092,2,60.0,0.0,6,111,210.0,0.0,0.0,0,43,0.0,0.0,290.25658779094545,461.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,125148,2,1,0,1,2,,0.0,,32,1.0,1.0,2.0,2.0,1.5,2,2,876.550126214243,210.0,41436.89617432299,0,1,1,2,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011125350655140665,27624.59744954866,7,4,7,7_0,7_4,7_0_0 -8093,2,65.0,0.0,2,111,420.0,76.0,0.0,0,74,0.0,0.0,580.5131755818909,496.0,0.0,137.83762046440611,44,2,1,2,1,2,2,2,2,0,,2,,2,122565,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,987.17133072866,420.0,25779.29227927478,0,5,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019240248903138368,25779.29227927478,7,4,7,7_0,7_4,7_0_1 -8094,2,40.0,0.0,2,111,360.0,120.0,0.0,37,34,0.0,0.0,497.582721927335,480.0,0.0,217.63834810169388,50,2,2,2,1,2,2,2,1,2,60.0,2,,2,110073,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,3,2,876.550126214243,360.0,59925.32448364956,1,1,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.008009969143028445,39950.216322433036,9,5,9,9_0,9_4,9_0_1 -8095,2,78.0,0.0,2,111,150.0,140.0,0.0,75,75,0.0,0.0,207.32613413638958,290.0,0.0,253.91140611864284,42,0,0,0,0,0,0,0,0,0,,2,,2,115606,2,1,0,1,1,,0.0,,41,0.0,1.0,2.0,2.0,1.5,4,2,876.550126214243,150.0,48723.0862989586,5,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005952003906743453,32482.057532639068,8,4,8,8_0,8_4,8_0_1 -8096,2,31.0,0.0,5,111,270.0,0.0,0.0,46,63,0.0,0.0,373.1870414455012,289.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,3,100661,2,1,0,1,1,516.0,0.0,659.0,43,2.0,0.0,2.0,2.0,1.5,3,3,1120.63628504131,270.0,37991.10140524304,1,1,2,3,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007607044526487878,25327.400936828693,7,4,7,7_0,7_4,7_0_0 -8097,1,41.0,315.0,6,111,300.0,270.0,0.0,0,46,0.0,0.0,414.65226827277917,570.0,0.0,489.6862832288112,31,0,0,0,0,0,0,0,0,0,,2,,4,108163,1,1,0,1,1,1236.0,0.0,649.0,32,1.0,0.0,3.0,3.0,1.6,3,2,970.220024184091,300.0,11225.63304364743,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050776646429090445,7016.020652279644,1,1,1_1,1_0_1,1_4_1,1_0_0 -8098,2,62.0,0.0,1,111,600.0,45.0,0.0,0,21,0.0,0.0,829.3045365455583,645.0,0.0,81.6143805381352,41,0,0,0,0,0,0,0,0,0,,2,,1,118318,1,3,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1135.75737327452,600.0,15869.573600525971,0,4,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04064381414624918,15869.573600525971,3,2,3_0,3_0_0,3_4_0,3_1_0 -8099,1,47.0,145.0,6,111,500.0,700.0,0.0,55,62,0.0,0.0,691.0871137879653,1200.0,0.0,1269.5570305932142,42,2,2,2,2,1,2,2,2,3,30.0,2,,4,111667,1,3,0,0,1,,0.0,513.0,43,2.0,4.0,4.0,6.0,2.8999999999999995,1,1,1330.67647948142,500.0,40076.996489332494,1,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.029942363578054316,13819.653961838794,3,2,3_1,3_0_1,3_4_1,3_0_0 -8100,1,39.0,170.0,2,111,650.0,240.0,0.0,85,63,0.0,0.0,898.4132479243549,890.0,0.0,435.27669620338776,42,1,2,2,1,2,2,2,2,2,30.0,2,,2,100166,2,2,0,1,1,960.0,0.0,550.0,42,1.0,0.0,3.0,7.0,2.9999999999999996,1,1,1218.84665158328,650.0,45489.5731132917,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.019564923104102485,15163.191037763901,3,2,3_1,3_0_1,3_4_1,3_0_1 -8101,1,44.0,61.0,2,111,520.0,72.0,0.0,0,22,0.0,0.0,718.7305983394839,1313.0,0.0,130.5830088610163,70,0,0,0,0,0,0,0,0,0,,2,,2,110543,2,1,0,1,1,766.0,0.0,620.0,32,1.0,0.0,3.0,3.0,1.8,2,2,1179.05948913534,520.0,38464.65454497309,0,4,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03413523442579818,21369.25252498505,6,3,6,6_0,6_4,6_0_1 -8102,2,60.0,0.0,2,111,276.0,0.0,0.0,78,45,0.0,0.0,381.48008681095683,1779.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,121878,2,1,0,1,1,,0.0,,42,1.0,1.0,5.0,3.0,2.0,2,2,1088.86543614309,276.0,61044.92951458675,5,1,0,1,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029142469557195672,30522.464757293375,8,4,8,8_0,8_4,8_0_1 -8103,2,38.0,0.0,5,111,403.2,0.0,0.0,52,34,0.0,0.0,557.2926485586152,548.0,0.0,0.0,31,2,1,2,2,1,2,2,2,2,15.0,2,,3,113687,2,3,0,1,1,744.0,0.0,448.0,43,2.0,0.0,2.0,2.0,1.5,4,4,1039.87491377055,403.2,44404.23068063944,1,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012341166406896717,29602.82045375963,8,4,8,8_0,8_4,8_0_0 -8104,2,60.0,0.0,1,111,360.0,100.0,0.0,0,53,0.0,0.0,497.582721927335,460.0,0.0,181.36529008474488,30,1,2,2,1,2,2,2,2,3,60.0,2,,1,115876,2,3,0,1,1,564.0,0.0,376.0,12,1.0,1.0,2.0,1.0,1.0,1,1,936.334450187776,360.0,32535.381136731092,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01413845432044683,32535.381136731092,8,4,8,8_0,8_4,8_1_0 -8105,2,77.0,0.0,1,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1645.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,111981,2,2,2,0,1,,283.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,754.671597775646,0.0,28432.09434425395,0,5,0,1,149.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05785715185390309,28432.09434425395,8,4,8,8_1,8_4,8_1_0 -8106,2,40.0,0.0,7,111,80.0,0.0,0.0,34,37,0.0,0.0,110.57393820607444,80.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,102135,2,2,1,0,1,,0.0,900.0,43,2.0,0.0,4.0,5.0,2.4,2,2,398.098733728573,80.0,114304.39738309884,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.000699885584732796,47626.832242957855,10,5,10,10_1,10_4,10_0_0 -8107,1,37.0,125.0,5,111,2268.0,0.0,0.0,55,37,0.0,0.0,3134.7711481422107,2268.0,0.0,0.0,12,2,2,2,1,2,2,2,2,0,,2,,3,132679,1,2,0,0,1,,0.0,1213.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1157.41359531941,2268.0,34921.07473711762,4,4,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.064946454743254,16629.083208151245,4,2,4_1,4_0_1,4_4_1,4_0_0 -8108,2,46.0,0.0,1,111,720.0,0.0,0.0,35,35,0.0,0.0,995.16544385467,1006.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,101790,2,1,0,1,1,,0.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,788.768430795724,720.0,126086.3106075647,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00797866156248404,54820.13504676726,10,5,10,10_0,10_4,10_1_0 -8109,2,66.0,0.0,2,111,360.0,0.0,0.0,0,75,0.0,0.0,497.582721927335,368.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125130,1,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1210.04425782191,360.0,20223.530121396623,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018196625306808017,20223.530121396623,5,3,5,5_0,5_4,5_0_1 -8110,1,48.0,414.0,2,111,0.0,0.0,0.0,54,56,0.0,0.0,0.0,395.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,124795,1,3,0,1,2,192.0,0.0,1050.0,43,2.0,0.0,2.0,5.0,2.4,2,2,742.616026496269,0.0,17836.232641402185,4,4,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022145932268404597,7431.763600584244,1,1,1_1,1_0_1,1_4_1,1_0_1 -8111,1,58.0,250.0,1,111,178.0,121.0,0.0,0,77,0.0,0.0,246.02701250851564,299.0,0.0,219.45200100254132,42,0,0,0,0,0,0,0,0,0,,2,,1,102797,1,1,0,0,1,,0.0,370.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1049.53796803688,178.0,11164.441704933095,0,7,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.026781455616171523,11164.441704933095,2,1,2_1,2_0_1,2_4_1,2_1_0 -8112,2,52.0,0.0,1,111,396.0,288.0,0.0,56,52,0.0,0.0,547.3409941200684,2222.0,0.0,522.3320354440652,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,122118,1,2,0,1,2,708.0,0.0,600.0,43,2.0,2.0,3.0,3.0,1.8,3,2,692.16203102601,396.0,19085.581230442633,4,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11642296732654799,10603.10068357924,2,1,2_0,2_0_0,2_4_0,2_1_0 -8113,1,89.0,307.0,1,111,325.0,0.0,0.0,0,72,0.0,0.0,449.20662396217745,774.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114974,2,1,0,1,1,564.0,0.0,385.0,11,0.0,0.0,2.0,1.0,1.0,2,2,835.476843476431,325.0,11553.663926819529,0,5,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06699173568683378,11553.663926819529,2,1,2_1,2_0_1,2_4_1,2_1_0 -8114,2,31.0,0.0,1,111,852.0,360.0,0.0,35,38,0.0,0.0,1177.612441894693,1212.0,0.0,652.9150443050816,70,0,0,0,0,0,0,0,0,2,60.0,2,,1,128252,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,2.0,2.0,1.5,1,1,982.009092469994,852.0,65423.37893581194,1,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018525487672978725,43615.58595720796,10,5,10,10_0,10_4,10_1_0 -8115,1,44.0,344.0,5,111,660.0,2880.0,0.0,85,55,0.0,0.0,912.2349902001142,3540.0,0.0,5223.320354440652,41,2,1,2,2,1,2,2,2,3,45.0,2,,3,121842,2,1,0,0,1,,0.0,531.0,42,1.0,0.0,3.0,5.0,3.0,2,2,767.88045903482,660.0,35762.259208468226,7,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.09898703488961222,11920.753069489409,2,1,2_1,2_0_1,2_4_1,2_0_0 -8116,2,52.0,0.0,6,111,1000.0,1000.0,0.0,54,46,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,3,30.0,2,,4,112339,2,1,0,0,1,,0.0,950.0,43,2.0,1.0,4.0,3.0,2.0,2,2,996.336669660053,1000.0,48959.305603261804,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04085025257929219,24479.652801630902,7,4,7,7_0,7_4,7_0_0 -8117,2,79.0,0.0,2,111,1188.0,84.0,0.0,0,77,0.0,0.0,1642.0229823602056,1272.0,0.0,152.3468436711857,42,0,0,0,0,0,0,0,0,0,,2,,2,107887,2,1,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1390.33070462223,1188.0,22798.10167379519,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05579411909817361,22798.10167379519,6,3,6,6_0,6_4,6_0_1 -8118,2,59.0,0.0,1,111,470.0,490.0,0.0,35,54,0.0,0.0,649.6218869606873,960.0,0.0,888.68992141525,50,0,0,0,0,0,0,0,0,3,10.0,2,,1,127720,1,2,0,0,1,,0.0,,43,3.0,1.0,3.0,3.0,2.0,3,3,681.125918141452,470.0,40440.58132462053,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023738531162398123,20220.290662310264,5,3,5,5_0,5_4,5_1_0 -8119,0,37.0,0.0,1,111,1200.0,420.0,0.0,37,34,0.0,0.0,1658.6090730911167,1620.0,0.0,761.7342183559285,60,0,0,0,0,0,0,0,0,1,20.0,2,,1,100015,1,3,0,0,2,,0.0,,43,2.0,0.0,2.0,3.0,1.8,1,1,950.192568568788,1200.0,76575.0,1,1,5,0,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021155729676787464,42541.666666666664,9,5,9,9_0,9_4,9_1_0 -8120,2,80.0,0.0,1,111,336.0,100.0,0.0,0,90,0.0,0.0,464.41054046551267,436.0,0.0,181.36529008474488,12,0,0,0,0,0,0,0,0,0,,2,,1,120717,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1002.47156291581,336.0,14915.04457826003,0,5,0,1,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029232229090049636,14915.04457826003,3,2,3_0,3_0_0,3_4_0,3_1_0 -8121,2,76.0,0.0,5,111,384.0,0.0,0.0,90,72,0.0,0.0,530.7549033891573,384.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,108105,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,684.332204340703,384.0,46509.513260513166,5,5,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00825637537527227,31006.342173675443,8,4,8,8_0,8_4,8_0_0 -8122,2,72.0,0.0,7,111,1200.0,0.0,0.0,74,75,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,109114,1,3,0,0,1,,0.0,830.0,41,0.0,2.0,4.0,2.0,1.5,2,2,719.52140235296,1200.0,30797.62256691797,5,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03896404657186135,20531.748377945314,5,3,5,5_0,5_4,5_0_0 -8123,2,62.0,0.0,5,111,540.0,0.0,0.0,78,68,0.0,0.0,746.3740828910024,1203.0,0.0,0.0,50,2,2,2,1,2,2,1,2,0,,2,,3,130778,1,2,0,1,2,660.0,0.0,499.0,42,1.0,2.0,2.0,2.0,1.5,5,5,1120.63628504131,540.0,24276.237325214195,5,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.049554631711831214,16184.158216809463,4,2,4_0,4_0_0,4_4_0,4_0_0 -8124,0,60.0,0.0,2,111,286.0,0.0,0.0,0,22,0.0,0.0,395.3018290867161,570.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,112943,2,1,0,1,1,1250.0,0.0,,12,1.0,3.0,2.0,1.0,1.0,3,3,1262.06132391413,286.0,33550.33125628257,0,1,5,0,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016989400064217338,33550.33125628257,9,5,9,9_0,9_4,9_0_1 -8125,2,65.0,0.0,7,111,1750.0,0.0,0.0,75,74,0.0,0.0,2418.8048982578784,1750.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,129682,1,2,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,830.441408222788,1750.0,90510.60672375599,5,5,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01933475051538555,60340.404482504,10,5,10,10_0,10_4,10_0_0 -8126,1,33.0,70.0,2,111,632.0,0.0,0.0,46,55,0.0,0.0,873.5341118279881,1225.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,40.0,2,,2,129491,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1020.12437941502,632.0,12002.512076053104,1,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10206196771458095,5715.481940977668,1,1,1_1,1_0_1,1_4_1,1_0_1 -8127,1,55.0,421.0,2,111,200.0,0.0,0.0,0,55,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,132718,1,1,0,1,2,720.0,0.0,823.0,32,1.0,0.0,4.0,2.0,1.5,2,2,1297.67343454063,200.0,7742.051749011238,0,4,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.025832945384993408,5161.367832674158,1,1,1_1,1_0_1,1_4_1,1_0_1 -8128,0,29.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,114689,2,1,0,1,1,,186.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1566.00728243014,0.0,40494.74770045154,0,1,5,0,76.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00889004180648311,40494.74770045154,9,5,9,9_0,9_4,9_0_1 -8129,2,58.0,0.0,5,111,360.0,456.0,0.0,0,46,0.0,0.0,497.582721927335,816.0,0.0,827.0257227864367,50,2,2,2,2,2,2,2,1,3,20.0,2,,3,122429,1,1,0,0,1,,0.0,393.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1471.16239707837,360.0,30171.721434449923,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.027045192027667843,30171.721434449923,8,4,8,8_0,8_4,8_0_0 -8130,1,33.0,180.0,5,111,720.0,1080.0,0.0,85,68,0.0,0.0,995.16544385467,1800.0,0.0,1958.7451329152448,50,2,2,2,1,2,2,2,2,2,30.0,2,,3,124549,1,3,0,0,1,,0.0,575.0,42,1.0,0.0,4.0,4.0,2.1,3,2,1336.47431474248,720.0,32621.422574676908,6,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.05517846427081599,15534.010749846146,3,2,3_1,3_0_1,3_4_1,3_0_0 -8131,2,37.0,0.0,7,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,167.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,5,104885,2,1,0,1,1,600.0,0.0,925.0,43,2.0,0.0,2.0,2.0,1.5,2,2,804.874347590053,0.0,75778.46842299766,4,4,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002203792231162565,50518.978948665106,10,5,10,10_0,10_4,10_0_0 -8132,2,43.0,0.0,8,111,720.0,0.0,0.0,0,68,0.0,0.0,995.16544385467,720.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2002.0,6,108088,2,1,0,1,1,742.0,0.0,710.0,32,1.0,0.0,3.0,2.0,1.3,2,2,681.593477676809,720.0,14348.754026591383,0,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05017857290365995,11037.503097377987,2,1,2_0,2_0_0,2_4_0,2_0_0 -8133,2,33.0,0.0,1,111,720.0,0.0,0.0,0,35,0.0,0.0,995.16544385467,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114926,1,2,0,0,1,,0.0,900.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1151.95819047592,720.0,47883.0,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015036651838857214,47883.0,10,5,10,10_0,10_4,10_1_0 -8134,2,54.0,0.0,8,111,1092.0,0.0,0.0,0,35,0.0,0.0,1509.3342565129162,1092.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,2003.0,6,123833,1,2,0,0,1,,0.0,,32,1.0,1.0,4.0,2.0,1.5,3,2,786.166943051408,1092.0,36222.22235570862,0,1,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030147239152704855,24148.148237139078,6,3,6,6_0,6_4,6_0_0 -8135,1,23.0,300.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1296.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,109399,2,2,0,0,1,,0.0,750.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1181.85632493484,0.0,10324.354897040055,0,7,3,4,22.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12552842409277865,10324.354897040055,2,1,2_1,2_0_1,2_4_1,2_1_0 -8136,2,35.0,0.0,5,111,259.2,72.0,0.0,0,35,0.0,0.0,358.2595597876812,331.0,0.0,130.5830088610163,70,0,0,0,0,0,0,0,0,0,,2,,3,119609,2,1,0,1,2,639.0,0.0,799.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1289.48518986435,259.2,33427.042833863205,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009902162199782778,33427.042833863205,8,4,8,8_0,8_4,8_0_0 -8137,2,71.0,0.0,2,111,300.0,96.0,0.0,0,75,0.0,0.0,414.65226827277917,396.0,0.0,174.11067848135508,71,0,0,0,0,0,0,0,0,0,,2,,2,114865,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,5,5,1042.79980035126,300.0,35349.70732706642,0,5,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011202355831013977,35349.70732706642,9,5,9,9_0,9_4,9_0_1 -8138,2,76.0,0.0,5,111,343.0,71.0,0.0,78,74,0.0,0.0,474.08576005854417,414.0,0.0,128.76935596016887,50,0,0,0,0,0,0,0,0,0,,2,,3,131460,2,1,0,1,1,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,925.944937986995,343.0,65466.28401068995,5,5,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006323865883886096,43644.18934045997,10,5,10,10_0,10_4,10_0_0 -8139,1,57.0,419.0,8,111,850.0,1400.0,0.0,68,63,0.0,0.0,1174.848093439541,2250.0,0.0,2539.1140611864284,31,0,0,0,0,0,0,0,0,0,,2,2001.0,6,122144,2,1,0,0,1,,0.0,589.0,43,5.0,0.0,5.0,9.0,4.6,2,2,215.73043302331,850.0,32619.97096654211,1,1,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0689761496816719,7091.298036204807,1,1,1_1,1_0_1,1_4_1,1_0_0 -8140,2,38.0,0.0,1,111,350.0,650.0,0.0,34,37,0.0,103.51725048194578,483.76097965157567,1100.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,113683,1,1,0,0,2,,0.0,1200.0,43,2.0,0.0,3.0,2.0,1.5,3,2,301.828197818466,350.0,86886.46507716124,1,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012660199710313031,57924.31005144082,10,5,10,10_0,10_4,10_1_0 -8141,2,64.0,0.0,2,111,192.0,120.0,0.0,0,77,0.0,0.0,265.37745169457867,312.0,0.0,217.63834810169388,71,2,1,2,2,1,2,2,2,0,,2,,2,110729,2,2,0,1,1,,0.0,284.0,11,0.0,0.0,1.0,1.0,1.0,2,2,368.4815542875,192.0,15128.097457416014,0,5,2,3,23.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020623875598253304,15128.097457416014,3,2,3_0,3_0_0,3_4_0,3_0_1 -8142,2,69.0,0.0,1,111,804.0,0.0,0.0,0,77,0.0,0.0,1111.2680789710482,804.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,112597,2,2,0,0,1,,0.0,540.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1285.49711417577,804.0,18647.08358611664,0,5,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043116661985609595,18647.08358611664,4,2,4_0,4_0_0,4_4_0,4_1_0 -8143,1,58.0,120.0,7,111,576.0,1573.0,0.0,77,42,0.0,0.0,796.132355083736,2149.0,0.0,2852.876013033037,70,0,0,0,0,0,0,0,0,3,45.0,2,,5,117231,2,3,0,0,1,,0.0,638.0,42,1.0,0.0,6.0,7.0,4.0,3,3,872.272649090839,576.0,56991.14592000131,7,1,2,3,103.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03770761168790253,14247.786480000328,3,2,3_1,3_0_1,3_4_1,3_0_0 -8144,2,59.0,0.0,6,111,415.0,672.0,0.0,0,46,0.0,0.0,573.6023044440112,1087.0,0.0,1218.7747493694856,50,0,0,0,0,0,0,0,0,3,45.0,2,,4,126551,2,2,0,0,1,,0.0,394.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1236.89269740632,415.0,48239.17045174557,0,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022533554989038293,32159.446967830383,8,4,8,8_0,8_4,8_0_0 -8145,1,52.0,307.0,6,111,420.0,960.0,0.0,0,85,0.0,0.0,580.5131755818909,1380.0,0.0,1741.106784813551,71,2,2,2,2,1,2,2,2,0,,2,,4,122313,2,1,0,0,2,,0.0,348.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1426.38750305185,420.0,10850.007858651714,0,7,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.12718884796932184,10850.007858651714,2,1,2_1,2_0_1,2_4_1,2_0_0 -8147,1,70.0,228.0,2,111,212.0,114.0,0.0,0,78,0.0,0.0,293.0209362460973,326.0,0.0,206.7564306966092,71,2,1,2,2,1,2,2,2,0,,2,,2,115694,2,2,0,1,1,352.0,0.0,304.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1170.92160754393,212.0,9413.072500410482,0,5,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03463268767830949,9413.072500410482,1,1,1_1,1_0_1,1_4_1,1_0_1 -8148,2,44.0,0.0,9,111,480.0,850.0,0.0,22,37,0.0,0.0,663.4436292364467,1330.0,0.0,1541.6049657203316,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,124537,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,883.309753209829,480.0,46176.53313934331,1,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02880250875453476,21988.825304449194,6,3,6,6_0,6_4,6_0_0 -8149,2,57.0,0.0,1,111,300.0,420.0,0.0,0,63,0.0,0.0,414.65226827277917,720.0,0.0,761.7342183559285,71,2,2,2,2,1,2,2,2,1,30.0,2,,1,107021,1,3,0,1,1,,0.0,265.0,12,1.0,1.0,1.0,1.0,1.0,6,6,1081.52388076017,300.0,23143.488913717356,0,1,2,3,26.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.031110261840134632,23143.488913717356,6,3,6,6_0,6_4,6_1_0 -8150,1,40.0,410.0,2,111,670.0,1400.0,0.0,54,43,0.0,0.0,926.0567324758734,2070.0,0.0,2539.1140611864284,43,1,2,2,2,1,2,2,2,0,,2,,2,114963,2,3,0,0,1,,0.0,350.0,43,2.0,0.0,3.0,6.0,3.0999999999999996,1,1,1064.1181487316,670.0,29189.2745218239,4,4,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07091645934715939,9415.895007039968,1,1,1_1,1_0_1,1_4_1,1_0_1 -8151,2,34.0,0.0,2,111,360.0,0.0,0.0,0,38,0.0,0.0,497.582721927335,360.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,55.0,2,,2,115284,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,3,2,1125.10008125938,360.0,47127.98410845246,0,1,1,2,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007638773582412441,47127.98410845246,10,5,10,10_0,10_4,10_0_1 -8152,2,38.0,0.0,1,111,0.0,0.0,0.0,63,52,0.0,0.0,0.0,1386.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,20.0,2,,1,125439,1,3,0,1,1,,0.0,589.0,43,2.0,0.0,3.0,3.0,1.8,2,2,692.238210978867,0.0,32266.497468083435,1,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.042954770698956986,17925.831926713017,4,2,4_0,4_0_0,4_4_0,4_1_0 -8153,2,54.0,0.0,1,111,270.0,240.0,0.0,0,35,0.0,0.0,373.1870414455012,510.0,0.0,435.27669620338776,71,0,0,0,0,0,0,0,0,3,80.0,2,,1,109658,2,1,0,1,1,568.0,0.0,699.0,22,2.0,0.0,3.0,2.0,1.5,1,1,702.434488945838,270.0,19212.198443634257,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026545634613147705,12808.132295756172,2,1,2_0,2_0_0,2_4_0,2_1_0 -8154,2,33.0,0.0,1,111,660.0,0.0,0.0,35,46,0.0,0.0,912.2349902001142,660.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,50.0,2,,1,129100,2,1,0,0,1,,0.0,680.0,43,2.0,0.0,2.0,2.0,1.5,2,2,993.432742005391,660.0,51279.3182654143,1,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01287068592807603,34186.21217694287,9,5,9,9_0,9_4,9_1_0 -8155,2,50.0,0.0,7,111,2400.0,0.0,0.0,0,34,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,127206,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,860.8761220917,2400.0,87594.52741179684,0,1,1,2,112.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02739897195537331,48663.62633988713,10,5,10,10_0,10_4,10_0_0 -8156,1,31.0,233.0,1,111,300.0,540.0,0.0,47,54,0.0,0.0,414.65226827277917,840.0,0.0,979.3725664576224,60,2,2,2,2,1,2,2,2,3,25.0,2,,1,105136,2,3,0,0,2,,0.0,326.0,43,2.0,0.0,2.0,3.0,1.8,1,1,918.501593866169,300.0,13123.313625536653,4,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.0640082241397816,7290.729791964807,1,1,1_1,1_0_1,1_4_1,1_1_0 -8157,1,48.0,297.0,1,111,180.0,900.0,0.0,0,43,0.0,0.0,248.7913609636675,1080.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,3,25.0,2,,1,128700,2,1,0,0,1,,0.0,287.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1049.65348109501,180.0,12085.209194416768,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08936543692590344,12085.209194416768,2,1,2_1,2_0_1,2_4_1,2_1_0 -8158,1,47.0,307.0,1,111,480.0,600.0,0.0,0,68,0.0,0.0,663.4436292364467,1080.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,130537,2,1,0,0,1,,0.0,335.0,32,3.0,1.0,3.0,3.0,2.0,2,2,692.238210978867,480.0,15919.025694823351,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06784334799781128,7959.5128474116755,1,1,1_1,1_0_1,1_4_1,1_1_0 -8159,2,58.0,0.0,1,111,500.0,0.0,0.0,0,68,0.0,0.0,691.0871137879653,500.0,0.0,0.0,42,2,2,2,2,2,2,2,1,3,50.0,2,,1,113559,2,2,0,1,1,550.0,0.0,382.0,32,1.0,0.0,3.0,2.0,1.5,2,2,702.434488945838,500.0,23640.74884013173,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.021149922254206137,15760.499226754488,3,2,3_0,3_0_0,3_4_0,3_1_0 -8160,2,59.0,0.0,1,111,480.0,72.0,0.0,0,48,0.0,0.0,663.4436292364467,552.0,0.0,130.5830088610163,50,2,1,2,1,1,2,2,2,2,20.0,2,,1,129514,2,3,0,1,1,502.0,0.0,369.0,12,1.0,1.0,3.0,1.0,1.0,1,1,791.082185108129,480.0,20603.708132304677,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.026791293899883776,20603.708132304677,5,3,5,5_0,5_4,5_1_0 -8161,2,60.0,0.0,1,111,900.0,3000.0,0.0,31,31,0.0,0.0,1243.9568048183376,3900.0,0.0,5440.958702542347,50,0,0,0,0,0,0,0,0,0,,1,,1,101736,2,3,1,0,1,,520.0,,43,2.0,1.0,9.0,4.0,2.5,2,2,636.293773299751,900.0,157678.82214020274,1,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024733822507452843,63071.528856081095,10,5,10,10_1,10_4,10_1_0 -8162,1,48.0,122.0,7,111,1350.0,0.0,0.0,56,46,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,5,102051,1,1,0,0,2,,0.0,745.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,1,1,577.236672682722,1350.0,39505.15595852508,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03417275459986317,15194.29075327888,3,2,3_1,3_0_1,3_4_1,3_0_0 -8163,2,46.0,0.0,1,111,210.0,490.0,0.0,0,31,0.0,0.0,290.25658779094545,700.0,0.0,888.68992141525,42,2,2,2,1,2,2,2,2,0,,2,,1,120040,2,3,0,0,1,,0.0,766.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1405.45836303084,210.0,20594.92911146328,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.03398894923170069,20594.92911146328,5,3,5,5_0,5_4,5_1_0 -8164,2,57.0,0.0,1,111,960.0,0.0,0.0,0,45,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,117588,2,2,0,0,1,,0.0,,32,2.0,2.0,3.0,2.0,1.5,1,1,1022.87117324394,960.0,37741.227606848755,0,1,1,2,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025436374513313195,25160.818404565838,7,4,7,7_0,7_4,7_1_0 -8165,2,27.0,0.0,2,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1205.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,50.0,2,,2,116344,1,2,0,0,1,,224.0,825.0,43,2.0,0.0,2.0,2.0,1.5,3,2,1431.88541625936,0.0,43590.710095928254,4,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027643504713463187,29060.473397285503,8,4,8,8_0,8_4,8_0_1 -8166,2,61.0,0.0,2,111,262.0,0.0,0.0,0,56,0.0,0.0,362.1296476248938,262.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117349,1,1,0,1,2,,0.0,,22,2.0,0.0,2.0,2.0,1.5,4,4,1374.8351642002,262.0,18152.800260168387,0,1,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014433034917201786,12101.866840112258,2,1,2_0,2_0_0,2_4_0,2_0_1 -8167,2,42.0,0.0,1,111,360.0,550.0,0.0,0,37,0.0,0.0,497.582721927335,910.0,0.0,997.5090954660969,70,0,0,0,0,0,0,0,0,3,37.0,2,,1,124136,2,1,0,0,1,,0.0,390.0,12,1.0,0.0,3.0,1.0,1.0,2,2,993.768762822666,360.0,21451.708666434002,0,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04242086325850111,21451.708666434002,6,3,6,6_0,6_4,6_1_0 -8168,2,41.0,0.0,1,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,850.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,1,108399,2,1,0,0,1,,0.0,320.0,22,1.0,0.0,3.0,2.0,1.5,1,1,1073.76732268559,0.0,24308.114530499173,0,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034967747043215244,16205.409686999448,4,2,4_0,4_0_0,4_4_0,4_1_0 -8169,0,63.0,0.0,7,111,1000.0,0.0,0.0,78,53,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,5,124296,1,3,0,0,1,,0.0,,42,1.0,4.0,2.0,2.0,1.5,1,1,1011.20595668048,1000.0,41590.90293460958,5,1,5,0,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.024043719405953484,27727.26862307305,7,4,7,7_0,7_4,7_0_0 -8171,2,49.0,0.0,1,111,1800.0,0.0,0.0,63,46,0.0,155.27587572291867,2487.913609636675,1950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117254,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,862.133391119119,1800.0,50929.554600845084,1,4,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03828818090562377,24252.168857545275,7,4,7,7_1,7_4,7_1_0 -8172,2,39.0,0.0,1,111,250.0,140.0,0.0,0,38,0.0,0.0,345.54355689398267,390.0,0.0,253.91140611864284,71,0,0,0,0,0,0,0,0,1,10.0,2,,1,103691,1,2,0,1,2,167.0,0.0,610.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1149.09683263889,250.0,33332.364741623656,0,1,2,3,21.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011700339985569312,33332.364741623656,8,4,8,8_0,8_4,8_1_0 -8173,1,49.0,200.0,9,111,1020.0,3600.0,0.0,52,21,0.0,0.0,1409.817712127449,4620.0,0.0,6529.150443050816,60,1,2,2,1,2,2,2,2,0,,2,2005.0,6,100810,2,1,0,0,1,,0.0,589.0,43,3.0,0.0,5.0,6.0,3.3,2,2,1218.98079890182,1020.0,22955.126503613814,1,1,2,3,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.20126223217600983,6956.098940489035,1,1,1_1,1_0_1,1_4_1,1_0_0 -8174,2,45.0,0.0,5,111,230.0,0.0,0.0,0,68,0.0,0.0,317.900072342464,230.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,3,133291,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1125.10008125938,230.0,14552.432663566047,0,1,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015804917659975548,14552.432663566047,3,2,3_0,3_0_0,3_4_0,3_0_0 -8175,2,50.0,0.0,2,111,360.0,840.0,0.0,37,35,0.0,0.0,497.582721927335,1200.0,0.0,1523.468436711857,71,2,2,2,2,2,1,2,2,3,45.0,2,,2,123982,1,2,0,1,2,768.0,0.0,1460.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,4,4,723.104257875683,360.0,81880.42759769404,4,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01465551701678943,31492.47215295925,8,4,8,8_0,8_4,8_0_1 -8176,0,27.0,0.0,5,111,360.0,0.0,0.0,0,63,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,103450,2,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,4,4,1395.71223736509,360.0,28787.0,0,1,5,0,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012505644909160386,28787.0,8,4,8,8_0,8_4,8_0_0 -8177,2,69.0,0.0,2,111,250.0,66.0,0.0,0,77,0.0,0.0,345.54355689398267,316.0,0.0,119.70109145593163,70,0,0,0,0,0,0,0,0,0,,2,,2,104341,2,2,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,3,3,1278.23192509195,250.0,25233.803304947425,0,5,0,1,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01252288433024458,25233.803304947425,7,4,7,7_0,7_4,7_0_1 -8178,2,56.0,0.0,2,111,600.0,120.0,0.0,46,31,0.0,0.0,829.3045365455583,720.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,130781,1,1,0,1,2,,0.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1133.07404676444,600.0,49273.49667198799,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014612317952448469,19709.398668795195,5,3,5,5_0,5_4,5_0_1 -8179,2,81.0,0.0,2,111,258.0,108.0,0.0,0,74,0.0,0.0,356.6009507145901,366.0,0.0,195.8745132915245,41,0,0,0,0,0,0,0,0,0,,2,,2,107523,2,1,0,1,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1277.58818656435,258.0,35944.92627008373,0,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010182243726136525,35944.92627008373,9,5,9,9_0,9_4,9_0_1 -8180,0,49.0,0.0,2,111,360.0,0.0,0.0,85,63,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116737,2,1,0,1,2,,0.0,,42,1.0,4.0,1.0,3.0,2.0,2,2,1259.36129663757,360.0,16102.569776144808,7,4,5,0,15.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022356680020931993,8051.284888072404,1,1,1_0,1_0_0,1_4_0,1_0_1 -8181,0,69.0,0.0,2,111,346.0,0.0,0.0,0,77,0.0,0.0,478.232282741272,346.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,113165,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1209.56797116932,346.0,15792.15872782479,0,5,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021909607544050944,15792.15872782479,3,2,3_0,3_0_0,3_4_0,3_0_1 -8182,2,77.0,0.0,2,111,350.0,0.0,0.0,0,74,0.0,0.0,483.76097965157567,350.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,106161,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1209.56797116932,350.0,53865.832332211095,0,5,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006497625393429674,53865.832332211095,10,5,10,10_0,10_4,10_0_1 -8183,2,100.0,0.0,2,111,181.0,58.0,0.0,0,75,0.0,0.0,250.17353519124345,239.0,0.0,105.19186824915204,50,0,0,0,0,0,0,0,0,0,,2,,2,123085,2,2,0,1,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1278.23192509195,181.0,33128.08980372451,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007214421399362719,33128.08980372451,8,4,8,8_0,8_4,8_0_1 -8184,2,67.0,0.0,2,111,384.0,0.0,0.0,74,38,0.0,0.0,530.7549033891573,384.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110151,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,876.205106498856,384.0,94244.1376737496,5,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004074523991394722,62829.425115833066,10,5,10,10_0,10_4,10_0_1 -8185,2,56.0,0.0,5,111,596.0,0.0,0.0,0,37,0.0,0.0,823.7758396352547,596.0,0.0,0.0,43,2,1,2,2,1,2,2,2,3,30.0,2,,3,126920,2,2,0,1,2,,0.0,,32,1.0,1.0,4.0,3.0,2.0,5,4,888.358492427524,596.0,44515.51896027111,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01338858928123277,22257.759480135555,6,3,6,6_0,6_4,6_0_0 -8186,2,36.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,329.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,35.0,2,,1,127043,1,3,0,0,2,,0.0,756.0,22,2.0,0.0,2.0,2.0,1.5,2,1,1141.44588948617,0.0,30604.414797299374,0,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.010750083024918089,20402.943198199584,5,3,5,5_0,5_4,5_1_0 -8187,2,32.0,0.0,1,111,648.0,0.0,0.0,0,34,0.0,0.0,895.648899469203,648.0,0.0,0.0,20,2,2,2,2,1,2,2,2,1,40.0,2,,1,107009,1,2,0,0,2,,0.0,756.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1141.44588948617,648.0,26936.060401914645,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.024056970111113185,17957.37360127643,4,2,4_0,4_0_0,4_4_0,4_1_0 -8188,0,43.0,0.0,2,111,1000.0,0.0,0.0,56,56,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,132257,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1007.25959180152,1000.0,28892.142799633722,4,4,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03461148613777021,19261.428533089147,5,3,5,5_0,5_4,5_0_1 -8189,2,30.0,0.0,6,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,511.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,25.0,2,,4,109395,2,3,0,0,1,,0.0,690.0,12,1.0,0.0,1.0,1.0,1.0,4,3,1481.60766933526,0.0,28900.802375074727,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017681170002418617,28900.802375074727,8,4,8,8_0,8_4,8_0_0 -8190,2,33.0,0.0,2,111,763.0,0.0,0.0,0,35,0.0,0.0,1054.598935640435,763.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,118404,1,3,0,0,2,,0.0,795.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1799.52727047164,763.0,41535.31531888138,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01836990989817166,41535.31531888138,9,5,9,9_0,9_4,9_0_1 -8191,2,66.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,117514,1,2,0,1,1,,0.0,,31,1.0,0.0,2.0,2.0,1.5,2,2,851.292367313473,300.0,18120.437053180223,0,5,0,1,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016555892063726384,12080.291368786815,2,1,2_0,2_0_0,2_4_0,2_0_1 -8192,2,73.0,0.0,7,111,643.0,0.0,0.0,0,90,0.0,0.0,888.7380283313233,643.0,0.0,0.0,42,2,2,2,1,1,2,1,2,0,,2,,5,125373,1,3,0,0,1,,0.0,778.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1345.7411546581,643.0,28490.674537983494,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.022568788223766293,28490.674537983494,8,4,8,8_0,8_4,8_0_0 -8193,2,59.0,0.0,6,111,1500.0,0.0,0.0,0,33,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,44,2,2,2,2,1,2,2,1,3,60.0,2,,4,133035,1,3,0,0,1,,0.0,739.0,32,2.0,0.0,3.0,2.0,1.5,2,2,1131.31917307892,1500.0,46214.31696979366,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03245747418447018,30809.544646529106,8,4,8,8_0,8_4,8_0_0 -8194,2,60.0,0.0,5,111,300.0,270.0,0.0,46,21,0.0,0.0,414.65226827277917,570.0,0.0,489.6862832288112,71,2,1,2,1,2,2,2,2,1,5.0,2,,3,103705,1,2,0,1,2,,0.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,1131.31917307892,300.0,48030.33433989677,1,1,0,1,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011867500150348216,32020.222893264512,8,4,8,8_0,8_4,8_0_0 -8195,2,32.0,0.0,7,111,585.0,0.0,0.0,0,37,0.0,0.0,808.5719231319193,585.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,133220,1,2,0,0,1,,0.0,569.0,12,1.0,0.0,2.0,1.0,1.0,3,3,855.988439545687,585.0,47517.54355077206,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012311242465110447,47517.54355077206,10,5,10,10_0,10_4,10_0_0 -8196,2,53.0,0.0,6,111,980.0,0.0,0.0,0,34,0.0,0.0,1354.530743024412,980.0,0.0,0.0,31,2,2,2,1,1,2,1,2,0,,2,,4,113617,2,3,0,0,1,,0.0,898.0,32,1.0,2.0,5.0,2.0,1.5,2,2,1224.5284155034,980.0,33838.68555684336,0,1,2,3,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.028960935800941886,22559.12370456224,6,3,6,6_0,6_4,6_0_0 -8197,1,45.0,41.0,1,111,412.0,864.0,0.0,0,45,0.0,0.0,569.4557817612833,1276.0,0.0,1566.996106332196,71,0,0,0,0,0,0,0,0,3,20.0,2,,1,130510,2,1,0,0,1,,0.0,382.0,32,1.0,0.0,3.0,3.0,1.8,1,1,918.426623071083,412.0,27484.218955529286,0,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04642664221474243,15269.010530849602,3,2,3_1,3_0_1,3_4_1,3_1_0 -8198,2,32.0,0.0,1,111,540.0,133.0,0.0,0,37,0.0,0.0,746.3740828910024,673.0,0.0,241.2158358127107,43,0,0,0,0,0,0,0,0,3,50.0,2,,1,107060,1,1,0,1,2,,0.0,675.0,22,2.0,0.0,2.0,2.0,1.5,2,2,913.339093949843,540.0,33063.5859301297,0,1,3,4,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020354718977614535,22042.39062008647,6,3,6,6_0,6_4,6_1_0 -8199,2,66.0,0.0,1,111,400.0,0.0,0.0,63,63,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,109602,2,2,0,1,1,637.0,0.0,288.0,43,2.0,2.0,2.0,3.0,1.8,2,2,1146.78824927817,400.0,36960.83148994943,4,1,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0108222673537193,20533.795272194126,5,3,5,5_0,5_4,5_1_0 -8200,1,36.0,158.0,7,111,1240.0,563.0,0.0,85,63,0.0,0.0,1713.8960421941538,1803.0,0.0,1021.0865831771138,31,2,2,2,1,2,2,1,2,0,,2,,5,109729,2,1,0,1,1,552.0,0.0,513.0,42,1.0,0.0,2.0,4.0,2.1,2,2,628.062570131639,1240.0,31458.315916756394,7,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,1,0.05731393901603058,14980.150436550663,3,2,3_1,3_0_1,3_4_1,3_0_0 -8201,2,47.0,0.0,7,111,435.0,0.0,0.0,34,35,0.0,0.0,601.2457889955298,435.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,106751,2,2,2,1,1,1416.0,0.0,1532.0,43,2.0,0.0,4.0,4.0,2.3,1,1,352.787640749828,435.0,69897.43498820634,1,1,2,3,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006223404336273523,30390.189125307108,8,4,8,8_1,8_4,8_0_0 -8202,1,61.0,60.0,2,111,1200.0,0.0,0.0,85,78,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,12,2,2,2,2,1,1,2,2,0,,2,,2,114989,1,2,0,0,2,,0.0,577.0,41,1.0,2.0,4.0,6.0,3.5,3,3,1217.23210539503,1200.0,2789.0332523739194,6,7,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.430256612745153,796.8666435354055,1,1,1_1,1_0_1,1_4_1,1_0_1 -8203,2,80.0,0.0,2,111,358.0,180.0,0.0,0,74,0.0,0.0,494.8183734721831,538.0,0.0,326.4575221525408,71,2,2,2,1,2,2,2,2,0,,2,,2,117374,1,2,0,1,1,418.0,140.0,302.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1468.63713035762,358.0,27565.112913781573,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019517424132553404,27565.112913781573,7,4,7,7_0,7_4,7_0_1 -8204,1,70.0,420.0,7,111,490.0,1358.0,0.0,85,72,0.0,0.0,677.265371512206,1848.0,0.0,2462.9406393508357,20,1,2,2,2,1,2,2,2,0,,2,,5,131233,2,1,0,0,1,,0.0,814.0,41,0.0,1.0,4.0,3.0,2.0,1,1,818.866852720804,490.0,25639.24489744201,6,5,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07207700567595,12819.622448721006,2,1,2_1,2_0_1,2_4_1,2_0_0 -8205,2,75.0,0.0,7,111,236.0,839.0,0.0,0,75,0.0,0.0,326.1931177079196,1075.0,0.0,1521.6547838110096,71,1,2,2,1,1,2,2,2,0,,2,,5,121524,2,2,0,0,1,,0.0,530.0,11,0.0,1.0,2.0,1.0,1.0,2,2,935.868387218105,236.0,24960.264745979468,0,5,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.04306845343750443,24960.264745979468,7,4,7,7_0,7_4,7_0_0 -8206,1,33.0,190.0,1,111,360.0,0.0,0.0,0,48,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,1,2,2,1,1,2,2,2,3,100.0,2,,1,124400,1,2,0,1,2,150.0,0.0,614.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1289.48518986435,360.0,16691.36603604458,0,2,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.021568036985264667,16691.36603604458,4,2,4_1,4_0_1,4_4_1,4_1_0 -8207,1,35.0,288.0,2,111,259.0,0.0,0.0,56,90,0.0,0.0,357.983124942166,259.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,60.0,2,,2,118409,1,2,0,1,2,1250.0,0.0,1000.0,42,1.0,1.0,2.0,2.0,1.5,1,1,1297.26854294941,259.0,20379.76941681653,3,1,3,4,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.012708681570571848,13586.512944544353,3,2,3_1,3_0_1,3_4_1,3_0_1 -8208,2,62.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,104144,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1402.77627324047,300.0,16595.074289583034,0,5,0,1,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018077653330441208,16595.074289583034,4,2,4_0,4_0_0,4_4_0,4_0_1 -8209,2,59.0,0.0,1,111,272.0,70.0,0.0,0,33,0.0,0.0,375.9513899006531,342.0,0.0,126.95570305932142,50,2,2,2,2,1,2,2,2,1,30.0,2,,1,103430,2,2,0,0,1,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1103.0305673035,272.0,17616.792552685667,0,1,3,4,17.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.019413295523415943,17616.792552685667,4,2,4_0,4_0_0,4_4_0,4_1_0 -8210,2,33.0,0.0,1,111,780.0,0.0,0.0,0,42,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,100503,2,1,0,0,1,,0.0,619.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1181.85632493484,780.0,1722.904723816654,0,4,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.452723815320507,1722.904723816654,1,1,1_0,1_0_0,1_4_0,1_1_0 -8211,2,40.0,0.0,1,111,1270.0,0.0,0.0,0,68,0.0,0.0,1755.3612690214318,1270.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,132652,1,2,0,0,1,,0.0,860.0,22,2.0,2.0,2.0,3.0,2.0,3,3,1022.28892422152,1270.0,14796.457598037377,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08583135467292216,7398.228799018689,1,1,1_0,1_0_0,1_4_0,1_1_0 -8212,2,67.0,0.0,1,111,632.0,510.0,0.0,86,78,0.0,0.0,873.5341118279881,1142.0,0.0,924.962979432199,70,0,0,0,0,0,0,0,0,0,,2,,1,133376,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,4.0,2.5,2,2,837.395177245991,632.0,20979.00214264519,6,5,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05443538220908004,8391.600857058076,1,1,1_0,1_0_0,1_4_0,1_1_0 -8213,2,31.0,0.0,1,111,0.0,0.0,800.0,45,33,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,60,0,0,0,0,0,0,0,0,3,60.0,2,,1,106917,1,2,0,0,2,,0.0,884.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1134.1507705894,0.0,52773.587412418485,1,1,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01515909831461916,35182.39160827899,9,5,9,9_0,9_4,9_1_0 -8214,2,53.0,0.0,2,111,1200.0,90.0,0.0,0,52,0.0,0.0,1658.6090730911167,1290.0,0.0,163.2287610762704,20,0,0,0,0,0,0,0,0,0,,2,,2,132365,2,1,0,1,1,408.0,0.0,447.0,22,1.0,4.0,5.0,2.0,1.5,2,2,1011.63976131837,1200.0,40940.738293436734,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031508957917517615,27293.825528957823,7,4,7,7_0,7_4,7_0_1 -8215,1,37.0,387.0,1,111,788.0,0.0,0.0,22,53,0.0,0.0,1089.1532913298333,788.0,0.0,0.0,71,2,2,2,2,1,1,2,2,2,30.0,2,,1,113968,2,2,0,1,1,1900.0,0.0,614.0,43,3.0,1.0,3.0,5.0,2.6,2,2,563.466665867329,788.0,35891.88625049486,4,1,2,3,59.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.021954822727912087,13804.571634805716,3,2,3_1,3_0_1,3_4_1,3_1_0 -8216,1,87.0,144.0,1,111,240.0,89.0,0.0,0,74,0.0,0.0,331.72181461822333,329.0,0.0,161.41510817542294,71,0,0,0,0,0,0,0,0,0,,2,,1,102212,2,1,0,1,1,720.0,0.0,524.0,11,0.0,2.0,4.0,1.0,1.0,2,2,791.082185108129,240.0,13897.19649748652,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0236738395445084,13897.19649748652,3,2,3_1,3_0_1,3_4_1,3_1_0 -8217,2,48.0,0.0,5,111,303.0,0.0,0.0,0,37,0.0,0.0,418.79879095550695,303.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,3,130791,2,1,0,1,2,840.0,0.0,1202.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1194.99928413111,303.0,60534.56595400483,0,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005005404684494219,60534.56595400483,10,5,10,10_0,10_4,10_0_0 -8218,2,78.0,0.0,2,111,262.0,76.0,0.0,75,74,0.0,0.0,362.1296476248938,338.0,0.0,137.83762046440611,20,0,0,0,0,0,0,0,0,0,,2,,2,117895,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1134.5968622032,262.0,109871.82023412667,5,5,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003076312008663853,73247.88015608444,10,5,10,10_0,10_4,10_0_1 -8219,2,48.0,0.0,2,111,225.0,0.0,0.0,0,35,0.0,0.0,310.9892012045844,225.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131201,1,1,0,3,2,576.0,0.0,720.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1423.34493154807,225.0,26940.666020803666,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008351686622233255,26940.666020803666,7,4,7,7_0,7_4,7_0_1 -8220,2,47.0,0.0,5,111,264.0,0.0,0.0,0,31,0.0,0.0,364.89399608004567,264.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,3,111861,1,1,0,3,2,167.0,0.0,540.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1289.48518986435,264.0,30888.010336558935,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008547005686783606,30888.010336558935,8,4,8,8_0,8_4,8_0_0 -8221,1,30.0,295.0,5,111,600.0,480.0,0.0,0,46,0.0,0.0,829.3045365455583,1080.0,0.0,870.5533924067755,70,0,0,0,0,0,0,0,0,0,,2,,3,102585,2,1,0,0,1,,124.0,539.0,32,1.0,3.0,4.0,5.0,2.4,1,1,1047.8993872458,600.0,7469.1821148690715,0,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14459414476586657,3112.15921452878,1,1,1_1,1_0_1,1_4_1,1_0_0 -8222,2,51.0,0.0,5,111,270.0,500.0,0.0,0,35,0.0,0.0,373.1870414455012,770.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,3,70.0,2,,3,120652,2,1,0,0,1,,0.0,303.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1389.6990059638,270.0,19044.118788679294,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04043243000866618,19044.118788679294,5,3,5,5_0,5_4,5_0_0 -8223,1,44.0,300.0,1,111,480.0,36.0,0.0,0,52,0.0,0.0,663.4436292364467,516.0,0.0,65.29150443050816,31,0,0,0,0,0,0,0,0,3,60.0,2,,1,108582,1,2,0,1,1,305.0,0.0,285.0,12,1.0,0.0,1.0,1.0,1.0,3,2,860.938989879534,480.0,19372.274174287613,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02663600542495291,19372.274174287613,5,3,5,5_0,5_4,5_1_0 -8224,2,38.0,0.0,1,111,1040.0,0.0,0.0,0,48,0.0,0.0,1437.4611966789678,1040.0,0.0,0.0,71,2,2,2,2,1,1,2,2,0,,2,,1,106274,2,2,0,0,1,,0.0,550.0,12,1.0,3.0,1.0,1.0,1.0,1,1,1181.85632493484,1040.0,8952.564559951985,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.11616783023853199,8952.564559951985,1,1,1_0,1_0_0,1_4_0,1_1_0 -8225,2,45.0,0.0,6,111,240.0,420.0,0.0,0,53,0.0,0.0,331.72181461822333,660.0,0.0,761.7342183559285,50,1,2,2,2,2,2,2,1,3,15.0,2,,4,117146,1,1,0,0,2,,0.0,249.0,12,1.0,3.0,1.0,1.0,1.0,2,2,1105.96187260948,240.0,18384.585296434892,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03589964034315129,18384.585296434892,4,2,4_0,4_0_0,4_4_0,4_0_0 -8226,2,36.0,0.0,1,111,500.0,0.0,0.0,0,47,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,45.0,2,,1,112560,2,1,0,0,1,,0.0,777.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1285.49711417577,500.0,30191.819448605987,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01656077736060673,30191.819448605987,8,4,8,8_0,8_4,8_1_0 -8227,2,46.0,0.0,2,111,350.0,0.0,0.0,0,46,0.0,0.0,483.76097965157567,350.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,2,,2,130173,2,2,0,1,1,300.0,0.0,478.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1439.90934821315,350.0,13515.015305202098,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.025897121985890805,13515.015305202098,3,2,3_0,3_0_0,3_4_0,3_0_1 -8228,2,62.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,629.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,1,110795,2,2,0,0,1,,0.0,720.0,12,1.0,1.0,2.0,1.0,1.0,4,4,1285.15127461948,0.0,38725.56157661921,0,1,2,3,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016242501706670215,38725.56157661921,9,5,9,9_0,9_4,9_1_0 -8229,2,40.0,0.0,2,111,450.0,1100.0,0.0,34,38,0.0,0.0,621.9784024091688,1550.0,0.0,1995.0181909321939,20,2,2,1,2,1,2,2,2,2,30.0,2,,2,123499,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,1,816.733539621204,450.0,112221.63896798047,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013811952973189531,46759.01623665853,10,5,10,10_0,10_4,10_0_1 -8230,1,38.0,180.0,1,111,600.0,0.0,0.0,0,46,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,106961,2,2,0,0,1,,0.0,656.0,32,1.0,0.0,1.0,2.0,1.3,2,2,1172.94184961167,600.0,6585.774595191291,0,1,3,4,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09110545636318917,5065.980457839454,1,1,1_1,1_0_1,1_4_1,1_1_0 -8231,2,64.0,0.0,2,111,10.0,2.0,0.0,75,38,0.0,0.0,13.821742275759306,12.0,0.0,3.627305801694898,50,0,0,0,0,0,0,0,0,3,35.0,2,,2,100798,2,3,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,925.869359644323,10.0,96430.76495474097,6,1,1,2,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00012444161368658753,64287.176636493976,10,5,10,10_0,10_4,10_0_1 -8232,1,46.0,364.0,9,111,470.0,204.0,0.0,0,43,0.0,0.0,649.6218869606873,674.0,0.0,369.9851917728796,31,0,0,0,0,0,0,0,0,0,,2,2008.0,6,103160,2,1,0,0,1,,0.0,558.0,32,1.0,0.0,3.0,3.0,1.8,1,1,804.083080991584,470.0,21435.90052892905,0,4,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03144257919514023,11908.833627182807,2,1,2_1,2_0_1,2_4_1,2_0_0 -8233,2,29.0,0.0,1,111,426.0,0.0,0.0,35,38,0.0,0.0,588.8062209473464,426.0,0.0,0.0,43,2,2,2,2,1,2,1,2,1,10.0,2,,1,123721,1,2,0,0,1,,0.0,847.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1164.72948734147,426.0,54844.987290014455,1,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.007767346134066134,36563.324860009634,9,5,9,9_0,9_4,9_1_0 -8234,1,55.0,205.0,2,111,500.0,0.0,0.0,0,34,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,108691,2,3,0,1,1,192.0,0.0,326.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1310.88962153326,500.0,12314.836826493776,0,4,2,3,41.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.040601431187810365,12314.836826493776,2,1,2_1,2_0_1,2_4_1,2_0_1 -8235,1,51.0,220.0,1,111,720.0,480.0,0.0,55,46,0.0,0.0,995.16544385467,1200.0,0.0,870.5533924067755,71,0,0,0,0,0,0,0,0,1,1.0,2,,1,120856,2,1,0,1,1,512.0,0.0,500.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,696.478409853761,720.0,41999.43824785166,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.028571810720858435,13548.205886403764,3,2,3_1,3_0_1,3_4_1,3_1_0 -8236,1,56.0,307.0,1,111,300.0,60.0,0.0,0,45,0.0,0.0,414.65226827277917,360.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,2,,1,103473,2,2,0,1,1,627.0,0.0,413.0,12,1.0,2.0,3.0,1.0,1.0,2,2,860.938989879534,300.0,6073.4840223246065,0,4,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05927405072224281,6073.4840223246065,1,1,1_1,1_0_1,1_4_1,1_1_0 -8237,2,84.0,0.0,2,111,259.0,0.0,0.0,0,75,0.0,0.0,357.983124942166,259.0,0.0,0.0,71,1,2,2,2,1,2,2,2,0,,2,,2,115821,2,2,0,1,1,953.0,0.0,726.0,11,0.0,2.0,5.0,1.0,1.0,2,2,1232.14042982205,259.0,30130.56443334149,0,5,2,3,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008595922607855268,30130.56443334149,8,4,8,8_0,8_4,8_0_1 -8238,2,45.0,0.0,1,111,0.0,0.0,0.0,46,33,0.0,0.0,0.0,2272.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,112102,2,2,0,0,1,,0.0,1398.0,43,2.0,0.0,4.0,4.0,2.1,2,2,987.327189002227,0.0,84635.5619789336,1,1,2,3,86.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026844507756272912,40302.648561396956,9,5,9,9_0,9_4,9_1_0 -8239,2,40.0,0.0,2,111,355.0,900.0,0.0,46,37,0.0,0.0,490.67185078945533,1255.0,0.0,1632.287610762704,60,0,0,0,0,0,0,0,0,3,40.0,2,,2,114069,2,2,0,0,1,,0.0,487.0,43,2.0,0.0,3.0,3.0,1.8,3,2,1217.32525381561,355.0,72294.25848053952,1,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017359608167747186,40163.476933633065,9,5,9,9_0,9_4,9_0_1 -8240,2,39.0,0.0,1,111,188.0,819.0,0.0,54,45,0.0,0.0,259.84875478427494,1007.0,0.0,1485.3817257940607,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,124479,2,1,0,0,1,,0.0,287.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1044.54404653872,188.0,41262.57225081863,1,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024404683107947096,27508.381500545755,7,4,7,7_0,7_4,7_1_0 -8241,2,39.0,0.0,1,111,0.0,0.0,0.0,67,85,0.0,0.0,0.0,1062.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,132871,2,3,0,0,2,,0.0,350.0,42,1.0,3.0,2.0,3.0,1.8,1,1,941.520155281586,0.0,4964.976344483319,4,6,2,3,24.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.21389830007548952,2758.3201913796215,1,1,1_0,1_0_0,1_4_0,1_1_0 -8242,2,37.0,0.0,2,112,500.0,0.0,0.0,11,11,4480.754631054002,0.0,691.0871137879653,3500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,5,,2,107840,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,758.15429316235,500.0,83019.25122365364,1,1,1,2,170.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042158896260952886,34591.35467652235,9,5,9,9_1,9_0,9_0_1 -8243,2,65.0,0.0,2,111,304.0,108.0,0.0,77,74,0.0,0.0,420.1809651830829,412.0,0.0,195.8745132915245,50,0,0,0,0,0,0,0,0,0,,2,,2,100467,2,1,0,1,1,524.0,176.0,361.0,41,0.0,3.0,4.0,2.0,1.5,2,2,247.53722886967,304.0,57651.0,5,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0071464501916705695,38434.0,9,5,9,9_0,9_4,9_0_1 -8244,2,41.0,0.0,7,111,855.0,0.0,0.0,0,37,0.0,0.0,1181.7589645774206,855.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,1,,5,131970,2,1,2,0,1,,320.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,576.079337962065,855.0,84932.51634118112,0,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010066815830175012,65332.70487783163,10,5,10,10_1,10_4,10_0_0 -8245,2,52.0,0.0,7,111,1380.0,0.0,0.0,43,34,0.0,0.0,1907.4004340547842,1380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,113651,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,532.791792330525,1380.0,99867.0114071515,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013818376864947196,47555.71971769119,10,5,10,10_1,10_4,10_0_0 -8246,2,28.0,0.0,1,111,800.0,0.0,0.0,42,38,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,50.0,1,,1,114127,2,2,2,1,2,612.0,0.0,762.0,43,2.0,0.0,3.0,2.0,1.5,2,2,378.425445540032,800.0,36514.38921322122,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02190917107577782,24342.92614214748,7,4,7,7_1,7_4,7_1_0 -8247,2,77.0,0.0,2,111,400.0,1500.0,0.0,77,78,0.0,0.0,552.8696910303722,1900.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,2,102037,2,1,2,0,2,,180.0,,41,0.0,1.0,4.0,3.0,2.0,2,2,725.954091168991,400.0,28557.364566240874,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06653275009298608,14278.682283120437,3,2,3_0,3_1_0,3_4_0,3_0_1 -8248,2,43.0,0.0,2,111,600.0,200.0,0.0,0,68,0.0,0.0,829.3045365455583,800.0,0.0,362.73058016948977,70,2,1,2,2,1,2,2,2,1,45.0,2,,2,114913,1,2,0,1,1,,769.0,549.0,32,1.0,0.0,4.0,5.0,2.8,2,2,198.565103542325,600.0,32119.57081245125,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02490693305558982,11471.275290161162,2,1,2_0,2_0_0,2_4_0,2_0_1 -8249,2,70.0,0.0,2,111,2000.0,150.0,0.0,78,75,0.0,0.0,2764.3484551518613,2150.0,0.0,272.04793512711734,50,2,1,2,2,1,2,2,2,0,,2,,2,104118,2,3,0,1,1,860.0,200.0,347.0,41,0.0,0.0,3.0,2.0,1.5,3,1,234.687792956539,2000.0,37569.76036613104,5,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05722687552562126,25046.50691075403,7,4,7,7_0,7_4,7_0_1 -8250,1,26.0,387.0,5,111,0.0,0.0,288.0,67,63,0.0,0.0,147.14304043320723,288.0,0.0,329.2547830999579,71,2,2,2,2,1,2,2,2,0,,2,,3,101894,1,2,0,1,1,658.0,72.0,366.0,43,2.0,0.0,3.0,3.0,1.8,1,1,231.281152180641,0.0,24277.08059071194,4,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.011863040900815094,13487.266994839965,3,2,3_1,3_0_1,3_4_1,3_0_0 -8251,2,74.0,0.0,2,111,576.0,132.0,0.0,56,78,0.0,0.0,796.132355083736,708.0,0.0,239.40218291186326,60,0,0,0,0,0,0,0,0,0,,2,,2,124556,2,1,0,1,1,886.0,298.0,347.0,42,1.0,2.0,3.0,2.0,1.5,3,2,234.377202163229,576.0,26682.188235247206,1,5,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026534555327989595,17788.125490164803,4,2,4_0,4_0_0,4_4_0,4_0_1 -8252,2,84.0,0.0,1,111,405.0,1832.0,0.0,0,77,0.0,0.0,559.7805621682519,2237.0,0.0,3322.6121143525265,71,0,0,0,0,0,0,0,0,0,,1,,1,118869,2,3,4,0,2,,384.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,680.046465222097,405.0,16994.03619564033,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13163441422902716,16994.03619564033,4,2,4_0,4_1_0,4_4_0,4_1_0 -8253,2,57.0,0.0,5,111,1121.0,0.0,0.0,78,46,0.0,0.0,1549.417309112618,1121.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,,3,124718,2,1,2,0,1,,280.0,,42,1.0,2.0,5.0,2.0,1.5,3,2,656.326765687432,1121.0,50768.68799464685,5,1,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02208053909366735,33845.79199643123,9,5,9,9_1,9_4,9_0_0 -8254,2,64.0,0.0,5,111,1786.0,0.0,0.0,75,74,0.0,0.0,2468.563170450612,1786.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,123887,2,1,2,0,1,,382.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,656.326765687432,1786.0,64449.72039504741,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027711524410852898,42966.48026336494,9,5,9,9_1,9_4,9_0_0 -8255,2,42.0,0.0,6,111,500.0,1000.0,0.0,37,38,0.0,51.75862524097289,691.0871137879653,1550.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,3,30.0,1,,4,109720,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,644.526302059476,500.0,93734.41447242597,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01653608238472505,44635.435463059985,10,5,10,10_1,10_4,10_0_0 -8256,2,45.0,0.0,8,111,1056.0,1104.0,0.0,37,46,0.0,289.84830134944815,1459.5759843201827,2440.0,0.0,2002.2728025355837,50,0,0,0,0,0,0,0,0,3,40.0,1,2003.0,6,130913,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,546.420973062163,1056.0,125084.94818062914,1,1,1,2,126.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0195067435010367,54384.76007853441,10,5,10,10_1,10_4,10_0_0 -8257,2,69.0,0.0,2,111,480.0,0.0,0.0,0,74,0.0,0.0,663.4436292364467,480.0,0.0,0.0,20,2,2,1,2,1,2,2,2,0,,2,,2,109410,2,1,0,1,2,,0.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,863.537159948089,480.0,41136.45584053835,0,5,0,1,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011668482133236645,41136.45584053835,9,5,9,9_0,9_4,9_0_1 -8258,2,68.0,0.0,1,111,600.0,2000.0,0.0,75,74,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,1,123098,2,1,2,0,1,,480.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,585.446714453217,600.0,52544.36946582946,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04948199067629551,35029.57964388631,9,5,9,9_1,9_4,9_1_0 -8259,0,45.0,0.0,1,111,391.0,1211.0,0.0,0,31,0.0,0.0,540.4301229821889,1602.0,0.0,2196.333662926261,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,120336,2,1,2,0,1,,533.0,,32,1.0,0.0,4.0,2.0,1.5,1,1,682.828057910173,391.0,38952.47356834547,0,1,5,0,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041127041577710154,25968.315712230313,7,4,7,7_1,7_4,7_1_0 -8260,2,58.0,0.0,2,111,210.0,1374.0,0.0,0,54,0.0,0.0,290.25658779094545,1584.0,0.0,2491.959085764395,71,2,2,1,2,1,2,2,2,3,100.0,2,,2,103229,2,1,0,0,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,1038.97293271725,210.0,58288.486138887354,0,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.027175178237185838,58288.486138887354,10,5,10,10_0,10_4,10_0_1 -8261,2,30.0,0.0,1,111,482.0,954.0,0.0,0,47,0.0,0.0,666.2079776915986,1436.0,0.0,1730.2248674084663,50,0,0,0,0,0,0,0,0,2,75.0,2,,1,121497,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,651.083161881243,482.0,26659.44436917393,0,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05386458847808672,26659.44436917393,7,4,7,7_0,7_4,7_1_0 -8262,0,25.0,0.0,6,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1304.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,1.0,2,,4,108788,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1102.20437007807,0.0,20888.0476472491,0,1,5,0,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06242804603003351,20888.0476472491,5,3,5,5_0,5_4,5_0_0 -8263,2,57.0,0.0,5,111,2700.0,0.0,0.0,74,37,0.0,62.110350289167464,3731.8704144550125,2760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,125479,2,1,1,0,1,,560.0,,42,1.0,1.0,5.0,2.0,1.5,4,4,654.620665185097,2700.0,68422.62352150345,5,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04033753542251422,45615.08234766897,10,5,10,10_1,10_4,10_0_0 -8264,2,35.0,0.0,5,111,470.0,863.0,0.0,85,67,0.0,0.0,649.6218869606873,1333.0,0.0,1565.1824534313484,50,0,0,0,0,0,0,0,0,0,,2,,3,128806,2,1,0,1,1,,423.0,443.0,41,0.0,0.0,3.0,4.0,2.3,2,2,1135.77840779698,470.0,30491.24791869177,6,7,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04371746291114714,13257.064312474684,3,2,3_0,3_0_0,3_4_0,3_0_0 -8265,2,62.0,0.0,2,111,510.0,1290.0,0.0,78,68,0.0,0.0,704.9088560637246,1800.0,0.0,2339.6122420932093,70,1,2,2,2,1,2,2,2,0,,1,,2,101191,2,2,3,0,1,,500.0,,42,2.0,1.0,3.0,3.0,2.0,1,1,813.167599937609,510.0,56083.75237065533,5,1,1,2,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03209485677962256,28041.876185327666,8,4,8,8_1,8_4,8_0_1 -8266,2,59.0,0.0,6,111,1825.0,0.0,0.0,42,43,0.0,0.0,2522.467965326073,1825.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,90.0,1,,4,125236,2,1,3,0,1,,1110.0,542.0,43,3.0,1.0,5.0,5.0,3.0,2,2,558.624750069441,1825.0,68633.98620719864,1,1,2,3,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02659032501027291,22877.99540239955,6,3,6,6_1,6_4,6_0_0 -8267,1,44.0,50.0,6,111,1248.0,0.0,0.0,56,53,0.0,284.67243882535087,1724.9534360147613,1523.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,,4,104688,2,1,3,0,1,,840.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,3,486.541602676054,1248.0,37273.98477655726,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04085959709244343,14336.147990983565,3,2,3_1,3_1_1,3_4_1,3_0_0 -8268,2,58.0,0.0,1,111,360.0,52.0,0.0,0,56,0.0,0.0,497.582721927335,412.0,0.0,94.30995084406734,50,2,2,1,2,1,2,2,2,0,,2,,1,112626,1,3,0,1,1,1236.0,0.0,290.0,12,1.0,2.0,3.0,1.0,1.0,3,3,264.861533194612,360.0,14693.945380757314,0,4,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.028038759456635864,14693.945380757314,3,2,3_0,3_0_0,3_4_0,3_1_0 -8269,2,73.0,0.0,7,111,1478.0,0.0,0.0,0,75,0.0,186.3310508675024,2042.8535083572253,1658.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,112942,2,1,2,0,1,,152.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,741.241586719742,1478.0,25262.296060488152,0,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0656314056343128,25262.296060488152,7,4,7,7_1,7_4,7_0_0 -8270,2,29.0,0.0,1,112,1560.0,0.0,0.0,52,43,0.0,82.81380038555662,2156.1917950184516,1640.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,17.0,1,,1,121938,2,1,1,0,1,,0.0,750.0,43,2.0,0.0,2.0,2.0,1.5,1,1,658.793505908791,1560.0,51821.24649125175,1,1,2,3,70.0,10,3,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.031647251099543854,34547.4976608345,9,5,9,9_1,9_1,9_1_0 -8271,2,77.0,0.0,2,112,600.0,1600.0,0.0,72,74,0.0,0.0,829.3045365455583,2200.0,0.0,2901.844641355918,70,0,0,0,0,0,0,0,0,0,,1,,2,110005,2,1,2,0,1,,450.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,898.347190267252,600.0,48496.768657576555,5,5,0,1,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04536384713657202,32331.179105051036,8,4,8,8_1,8_1,8_0_1 -8272,2,58.0,0.0,5,112,1230.0,1600.0,0.0,46,34,0.0,310.55175144583734,1700.0742999183947,3130.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,127318,2,1,2,0,1,,560.0,,43,2.0,0.0,8.0,5.0,3.0,3,2,717.238511695155,1230.0,86548.50983921338,1,1,0,1,160.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036164689673049234,28849.503279737793,8,4,8,8_1,8_1,8_0_0 -8273,2,82.0,0.0,2,112,161.0,0.0,0.0,0,75,2240.377315527001,0.0,222.53005063972483,1683.0,37.84719409218422,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101821,1,1,1,0,2,,140.0,,11,0.0,3.0,4.0,1.0,1.0,4,4,1011.71919865279,161.0,24435.877808018984,0,5,0,1,100.0,10,3,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06887413716922824,24435.877808018984,7,4,7,7_1,7_1,7_0_1 -8274,2,38.0,0.0,2,112,314.0,1410.0,0.0,0,45,0.0,0.0,434.0027074588422,1724.0,0.0,2557.250590194903,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,123075,2,2,1,0,1,,118.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,957.119123164753,314.0,33374.43528403413,0,1,1,2,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051656304753259386,33374.43528403413,8,4,8,8_1,8_1,8_0_1 -8275,0,79.0,0.0,2,112,523.0,584.0,0.0,75,75,0.0,248.44140115666985,722.8771210222117,1347.0,0.0,1059.1732940949103,33,0,0,0,0,0,0,0,0,0,,1,,2,103937,2,2,2,0,2,,435.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,922.224458086484,523.0,55429.669490656335,5,5,0,1,100.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02430106497797287,36953.11299377089,9,5,9,9_1,9_1,9_0_1 -8276,2,79.0,0.0,2,112,298.0,1274.0,0.0,77,78,0.0,0.0,411.88791981762733,1572.0,0.0,2310.5937956796497,31,0,0,0,0,0,0,0,0,0,,1,,2,130006,2,1,2,0,1,,312.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,849.865532047883,298.0,29079.297465978627,5,5,0,1,80.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05405907765960179,19386.198310652417,5,3,5,5_1,5_1,5_0_1 -8277,2,37.0,0.0,1,112,468.0,672.0,0.0,46,37,0.0,310.55175144583734,646.8575385055356,1440.0,0.0,1218.7747493694856,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,120092,2,1,2,0,1,,1166.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,625.485085536742,468.0,76714.03785926654,1,1,1,2,90.0,10,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018771010367642352,36530.494218698346,9,5,9,9_1,9_1,9_1_0 -8278,2,81.0,0.0,2,112,1157.0,0.0,0.0,74,74,5227.547069563002,0.0,1599.1755813053517,4737.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128437,2,1,2,0,1,,542.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,894.13109582863,1157.0,139255.79910149824,5,5,0,1,181.0,10,3,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03401653669408325,92837.19940099883,10,5,10,10_1,10_1,10_0_1 -8279,2,70.0,0.0,5,112,420.0,1260.0,0.0,77,74,0.0,82.81380038555662,580.5131755818909,1760.0,0.0,2285.2026550677856,71,0,0,0,0,0,0,0,0,0,,1,,3,129773,2,2,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,970.258863566164,420.0,61783.95339188761,5,5,0,1,118.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028486360994683328,41189.30226125841,9,5,9,9_1,9_1,9_0_0 -8280,2,56.0,0.0,6,112,1800.0,0.0,0.0,52,37,0.0,207.03450096389156,2487.913609636675,2090.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,114605,2,1,2,0,1,,450.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,887.44355715246,1800.0,51674.78935737754,4,1,0,1,140.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040445254368542745,34449.859571585024,9,5,9,9_1,9_1,9_0_0 -8281,2,45.0,0.0,5,112,600.0,0.0,0.0,55,62,0.0,310.55175144583734,829.3045365455583,954.0,92.89765822627035,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,118209,2,1,2,0,1,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,778.544516382014,600.0,45609.38792658763,1,1,1,2,65.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020916746384221335,30406.25861772509,8,4,8,8_1,8_1,8_0_0 -8282,2,61.0,0.0,6,112,400.0,1200.0,0.0,33,38,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,0,,1,,4,104478,2,1,2,0,1,,300.0,,43,2.0,3.0,4.0,3.0,2.0,1,1,593.816379536229,400.0,69455.59869382337,1,4,0,1,120.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023036299882075405,34727.799346911685,9,5,9,9_1,9_1,9_0_0 -8283,1,52.0,251.0,2,112,420.0,588.0,0.0,0,56,0.0,0.0,580.5131755818909,1008.0,0.0,1066.4279056983,10,0,0,0,0,0,0,0,0,0,,2,,2,120831,2,2,0,1,1,780.0,0.0,317.0,32,1.0,2.0,4.0,2.0,1.5,2,2,912.543658544068,420.0,13800.594309027822,0,1,2,3,70.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0730403327152806,9200.396206018548,1,1,1_1,1_0_1,1_1_1,1_0_1 -8284,1,31.0,165.0,2,112,550.0,660.0,0.0,85,21,0.0,0.0,760.1958251667618,1210.0,0.0,1197.0109145593162,71,0,0,0,0,0,0,0,0,2,120.0,2,,2,108235,2,1,0,1,1,648.0,0.0,289.0,42,1.0,0.0,3.0,4.0,2.1,2,2,820.344255759053,550.0,17002.037522244584,6,1,2,3,55.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07116794080808837,8096.208343925992,1,1,1_1,1_0_1,1_1_1,1_0_1 -8285,2,30.0,0.0,6,112,0.0,0.0,0.0,43,43,0.0,0.0,0.0,1203.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,124713,2,1,2,0,1,,603.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,821.348070755958,0.0,67691.56048324096,1,1,1,2,114.0,10,3,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017771787079688288,32234.076420590933,8,4,8,8_1,8_1,8_0_0 -8286,2,43.0,0.0,6,112,2340.0,0.0,0.0,46,22,0.0,300.2000263976428,3234.2876925276773,2630.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,126496,1,1,4,0,1,,347.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,810.323344616835,2340.0,95548.55438612746,1,1,1,2,110.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027525272537057298,53082.53021451525,10,5,10,10_1,10_1,10_0_0 -8288,2,54.0,0.0,1,111,700.0,1300.0,0.0,43,34,0.0,0.0,967.5219593031513,2000.0,0.0,2357.7487711016834,70,2,2,1,1,1,2,2,2,2,25.0,1,,1,115790,2,1,1,0,1,,1500.0,,43,2.0,1.0,8.0,3.0,2.0,2,2,576.132523347999,700.0,65761.99345326559,1,1,1,2,195.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.030412703371307012,32880.996726632795,8,4,8,8_1,8_4,8_1_0 -8289,2,49.0,0.0,2,111,330.0,330.0,0.0,90,38,0.0,0.0,456.1174951000571,660.0,0.0,598.5054572796581,60,0,0,0,0,0,0,0,0,2,60.0,2,,2,123949,2,1,0,1,1,,550.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,850.517843197232,330.0,73763.80935327314,1,1,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008947477167822186,35125.623501558635,9,5,9,9_0,9_4,9_0_1 -8290,2,43.0,0.0,8,112,590.0,0.0,0.0,22,37,0.0,0.0,815.482794269799,1670.0,1857.953164525407,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,102451,2,1,2,0,1,,183.0,,43,2.0,0.0,7.0,2.0,1.5,8,6,684.512684158638,590.0,90811.5957838086,1,4,0,1,220.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018389721990743336,60541.0638558724,10,5,10,10_1,10_0,10_0_0 -8291,1,34.0,104.0,5,111,320.0,1050.0,0.0,52,52,0.0,0.0,442.2957528242978,1370.0,0.0,1904.3355458898213,71,1,2,2,2,1,2,2,2,2,20.0,2,,3,119685,1,1,0,0,1,,0.0,340.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1061.13984963194,320.0,32269.90955669888,4,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04245441089919643,17927.72753149938,4,2,4_1,4_0_1,4_4_1,4_0_0 -8292,2,32.0,0.0,2,111,500.0,400.0,0.0,46,46,0.0,0.0,691.0871137879653,900.0,0.0,725.4611603389795,44,0,0,0,0,0,0,0,0,2,3.0,2,,2,105083,1,3,0,0,1,,0.0,450.0,43,2.0,0.0,4.0,4.0,2.1,3,3,1079.73129964204,500.0,49070.36190377567,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018341010032998154,23366.83900179794,6,3,6,6_0,6_4,6_0_1 -8293,2,54.0,0.0,2,111,750.0,550.0,0.0,52,46,0.0,0.0,1036.630670681948,1300.0,0.0,997.5090954660969,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,104426,2,3,0,0,1,,1000.0,800.0,43,2.0,0.0,4.0,4.0,2.5,7,7,1079.73129964204,750.0,58433.19785576044,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022247627165793458,23373.279142304174,6,3,6,6_0,6_4,6_0_1 -8294,2,60.0,0.0,5,111,275.0,365.0,0.0,0,52,0.0,0.0,380.0979125833809,640.0,0.0,661.9833088093188,43,2,2,2,2,1,2,1,2,2,20.0,2,,3,129326,1,2,0,0,1,,0.0,320.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1315.88527298518,275.0,11355.782528261192,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.05635895178577336,11355.782528261192,2,1,2_0,2_0_0,2_4_0,2_0_0 -8295,2,55.0,0.0,2,111,1200.0,3800.0,0.0,34,46,0.0,310.55175144583734,1658.6090730911167,5300.0,0.0,6891.881023220306,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,102920,1,3,4,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,893.681849349942,1200.0,137329.15720393843,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0385934065853861,54931.66288157537,10,5,10,10_1,10_4,10_0_1 -8296,2,62.0,0.0,2,111,0.0,0.0,0.0,31,31,0.0,0.0,0.0,3402.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,103308,2,1,2,0,1,,481.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,776.015810759564,0.0,70644.61841353566,1,1,0,1,170.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04815653444520793,47096.41227569044,10,5,10,10_1,10_4,10_0_1 -8297,2,40.0,0.0,1,111,1720.0,0.0,0.0,22,45,0.0,0.0,2377.3396714306004,1720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,1,,1,116120,2,1,3,0,1,,436.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,583.913791566622,1720.0,52695.563019683424,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03264031924960222,25093.125247468295,7,4,7,7_1,7_4,7_1_0 -8298,2,59.0,0.0,7,111,756.0,2190.0,0.0,0,45,0.0,36.23103766868102,1044.9237160474036,2981.0,0.0,3971.899852855913,71,2,2,2,2,1,2,2,2,2,60.0,1,,5,124614,1,1,2,0,1,,280.0,,22,2.0,0.0,6.0,2.0,1.5,1,1,663.499089087557,756.0,22368.758485425846,0,1,0,1,245.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.1332662249423562,14912.505656950563,3,2,3_0,3_1_0,3_4_0,3_0_0 -8299,2,45.0,0.0,6,111,1472.0,0.0,0.0,38,38,0.0,207.03450096389156,2034.5604629917698,1672.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,1,,4,119461,2,1,2,0,1,,0.0,,43,2.0,0.0,7.0,5.0,2.8,1,1,601.838673231349,1472.0,154961.0837877358,1,1,1,2,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010789805795952546,55343.24420990565,10,5,10,10_1,10_4,10_0_0 -8300,2,67.0,0.0,2,111,1500.0,0.0,0.0,77,75,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130468,1,1,1,0,2,,97.0,,41,0.0,3.0,6.0,4.0,2.5,1,1,803.596352207472,1500.0,44479.027912760925,5,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03372375859791787,17791.61116510437,4,2,4_0,4_1_0,4_4_0,4_0_1 -8301,2,57.0,0.0,8,111,560.0,986.0,0.0,75,37,0.0,0.0,774.0175674425211,1546.0,0.0,1788.2617602355847,50,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,125007,2,1,1,0,1,,329.0,,42,1.0,1.0,4.0,2.0,1.5,3,3,630.43975338821,560.0,148575.24325173927,5,1,1,2,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01040550206187801,99050.16216782619,10,5,10,10_1,10_4,10_0_0 -8302,2,34.0,0.0,9,111,900.0,0.0,0.0,54,53,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,2,2007.0,6,111990,2,1,0,0,1,,380.0,880.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1397.78167398172,900.0,51229.029157667115,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017568164277134323,28460.57175425951,8,4,8,8_0,8_4,8_0_0 -8303,1,61.0,221.0,2,111,354.0,0.0,0.0,77,78,0.0,0.0,489.28967656187945,354.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,112363,2,1,0,1,1,213.0,0.0,335.0,41,0.0,1.0,3.0,2.0,1.5,2,2,234.600956910936,354.0,14332.961688826152,6,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024698314813467702,9555.307792550768,1,1,1_1,1_0_1,1_4_1,1_0_1 -8304,1,35.0,311.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,275.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,50.0,2,,2,131609,2,2,0,1,1,432.0,0.0,392.0,42,1.0,0.0,3.0,4.0,2.1,4,4,792.526194036312,0.0,32578.31857665044,6,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008441196845471892,15513.48503650021,3,2,3_1,3_0_1,3_4_1,3_0_1 -8305,2,48.0,0.0,6,111,530.0,600.0,0.0,37,47,0.0,82.81380038555662,732.5523406152432,1210.0,0.0,1088.1917405084694,60,2,2,2,2,1,2,2,2,2,30.0,1,,4,113799,2,1,2,0,1,,500.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,764.610711594428,530.0,115380.49652852747,4,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.010487041019977161,57690.24826426373,10,5,10,10_1,10_4,10_0_0 -8306,2,41.0,0.0,2,111,0.0,0.0,0.0,37,46,0.0,0.0,0.0,1606.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,30.0,1,,2,130595,2,1,2,0,1,,864.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,803.448461254728,0.0,57821.917942515836,1,1,1,2,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027774934785051907,27534.246639293255,7,4,7,7_1,7_4,7_0_1 -8307,2,76.0,0.0,1,111,1200.0,0.0,0.0,75,74,1493.5848770180007,0.0,1658.6090730911167,2200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130001,2,3,4,0,2,,271.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,538.982942741575,1200.0,47873.53471857495,5,5,0,1,100.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04595440911001709,31915.689812383298,8,4,8,8_1,8_4,8_1_0 -8308,2,28.0,0.0,1,111,450.0,0.0,0.0,0,55,0.0,0.0,621.9784024091688,450.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,80.0,2,,1,133380,2,3,0,0,1,,0.0,462.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1084.27487020083,450.0,19420.92420748266,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02317088492764006,19420.92420748266,5,3,5,5_0,5_4,5_1_0 -8309,2,39.0,0.0,7,111,700.0,0.0,0.0,0,31,0.0,0.0,967.5219593031513,700.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,5,104443,1,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,3,914.582792164431,700.0,25198.5228966777,0,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.027779406073531854,25198.5228966777,7,4,7,7_0,7_4,7_0_0 -8310,2,64.0,0.0,5,111,724.0,0.0,0.0,75,78,0.0,0.0,1000.6941407649738,724.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,1,,3,100325,2,1,2,0,1,,58.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,737.462011229043,724.0,28672.872858437524,5,5,0,1,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02525034737797296,19115.248572291683,5,3,5,5_1,5_4,5_0_0 -8312,2,29.0,0.0,8,111,600.0,0.0,0.0,45,31,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,45.0,2,2000.0,6,117612,1,2,0,0,1,,0.0,520.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1004.74434532775,600.0,21115.45809641046,1,1,3,4,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.028415201662236135,14076.972064273641,3,2,3_0,3_0_0,3_4_0,3_0_0 -8313,2,57.0,0.0,8,111,300.0,0.0,0.0,0,74,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,107234,2,1,0,0,1,,0.0,650.0,11,0.0,0.0,2.0,1.0,1.0,5,4,1046.46298982348,300.0,21110.258878960034,0,7,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014211100002141663,21110.258878960034,5,3,5,5_0,5_4,5_0_0 -8314,2,76.0,0.0,2,111,350.0,100.0,0.0,0,75,0.0,0.0,483.76097965157567,450.0,0.0,181.36529008474488,20,2,2,2,1,1,2,2,2,0,,2,,2,105986,2,3,0,1,1,646.0,0.0,365.0,11,0.0,4.0,4.0,1.0,1.0,3,2,941.243892925316,350.0,17425.337901362618,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02582446335028092,17425.337901362618,4,2,4_0,4_0_0,4_4_0,4_0_1 -8315,2,48.0,0.0,2,111,420.0,0.0,0.0,37,38,0.0,0.0,580.5131755818909,420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132128,2,1,0,1,1,,0.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,878.317516452255,420.0,93632.43089290292,4,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004485625290241555,44586.871853763296,10,5,10,10_0,10_4,10_0_1 -8316,2,59.0,0.0,2,111,600.0,500.0,0.0,0,54,0.0,0.0,829.3045365455583,1100.0,0.0,906.8264504237244,50,2,2,2,2,1,1,2,2,3,75.0,2,,2,117441,1,2,0,1,1,750.0,0.0,650.0,32,1.0,0.0,4.0,2.0,1.5,1,1,882.696801682275,600.0,29017.47287789108,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03790819430172051,19344.981918594054,5,3,5,5_0,5_4,5_0_1 -8317,2,60.0,0.0,2,111,400.0,0.0,0.0,0,75,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,110456,1,2,0,1,1,601.0,141.0,493.0,21,1.0,1.0,3.0,2.0,1.5,1,1,835.769260573116,400.0,64822.41252351107,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.006170705230307806,43214.941682340715,9,5,9,9_0,9_4,9_0_1 -8318,2,53.0,0.0,2,111,520.0,680.0,0.0,56,52,0.0,0.0,718.7305983394839,1200.0,0.0,1233.2839725762653,50,2,2,2,2,1,2,2,2,3,90.0,2,,2,103576,1,3,0,1,1,843.0,0.0,450.0,43,4.0,0.0,3.0,4.0,2.5,1,1,793.512994208128,520.0,45583.617364255406,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.026325247301259274,18233.446945702162,4,2,4_0,4_0_0,4_4_0,4_0_1 -8319,2,78.0,0.0,2,111,310.0,112.0,0.0,77,74,0.0,0.0,428.47401054853844,422.0,0.0,203.12912489491427,33,0,0,0,0,0,0,0,0,0,,2,,2,117310,2,1,0,1,1,815.0,0.0,857.0,41,0.0,3.0,5.0,2.0,1.5,1,1,904.628183389455,310.0,62173.48651176915,5,5,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006787459151420073,41448.9910078461,9,5,9,9_0,9_4,9_0_1 -8320,2,61.0,0.0,2,111,250.0,0.0,0.0,0,75,0.0,0.0,345.54355689398267,250.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,128816,1,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1012.66764731067,250.0,32229.136519472355,0,5,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.007756956189283998,32229.136519472355,8,4,8,8_0,8_4,8_0_1 -8321,2,70.0,0.0,2,111,450.0,0.0,0.0,75,74,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121642,2,1,0,1,1,,0.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,949.677867943596,450.0,68545.75512179823,6,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006564957949626491,45697.17008119882,10,5,10,10_0,10_4,10_0_1 -8322,2,43.0,0.0,2,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,1976.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,1,,2,102104,2,1,3,0,1,,753.0,2700.0,42,1.0,0.0,8.0,4.0,2.1,3,2,779.943250702828,0.0,82528.8807904329,6,1,2,3,125.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023943133374335863,39299.46704306328,9,5,9,9_1,9_4,9_0_1 -8323,2,60.0,0.0,2,111,900.0,0.0,0.0,0,37,3584.6037048432017,0.0,1243.9568048183376,3300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,1,,2,122200,1,2,2,0,2,,280.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,852.225274169585,900.0,88368.30848280509,0,1,1,2,125.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03734370450965599,88368.30848280509,10,5,10,10_1,10_4,10_0_1 -8324,2,32.0,0.0,2,111,460.0,0.0,0.0,46,64,0.0,0.0,635.800144684928,460.0,0.0,0.0,50,2,2,2,1,2,2,2,2,3,40.0,2,,2,118854,1,3,0,1,1,729.0,0.0,890.0,43,2.0,0.0,4.0,5.0,2.4,2,2,775.856288536797,460.0,48365.185579741905,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009510973533670761,20152.160658225795,5,3,5,5_0,5_4,5_0_1 -8325,2,32.0,0.0,2,111,660.0,0.0,0.0,34,37,0.0,0.0,912.2349902001142,673.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,123584,2,1,0,1,1,,649.0,,43,2.0,0.0,3.0,3.0,1.8,4,4,883.322780560488,660.0,56328.001095758285,1,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011947876489632426,31293.333942087935,8,4,8,8_0,8_4,8_0_1 -8326,2,59.0,0.0,2,111,260.0,220.0,0.0,45,52,0.0,0.0,359.36529916974195,3489.0,0.0,399.00363818643876,60,0,0,0,0,0,0,0,0,1,3.0,2,,2,125604,2,1,0,0,1,,153.0,,43,2.0,1.0,3.0,2.0,1.5,3,2,896.333626339165,260.0,60358.67366381154,1,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057804451095681615,40239.11577587436,9,5,9,9_0,9_4,9_0_1 -8327,2,69.0,0.0,2,111,0.0,1200.0,0.0,75,72,0.0,0.0,0.0,1300.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,0,,1,,2,120138,2,3,1,0,1,,340.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,587.718789249168,0.0,126409.43551301895,5,5,0,1,99.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010284042442908564,84272.9570086793,10,5,10,10_1,10_4,10_0_1 -8328,2,37.0,0.0,6,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,683.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,133074,2,1,0,1,2,,148.0,710.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1069.39962203969,0.0,42137.533541540804,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016208827204531852,42137.533541540804,9,5,9,9_0,9_4,9_0_0 -8329,2,28.0,0.0,2,111,360.0,0.0,0.0,46,46,0.0,0.0,497.582721927335,360.0,0.0,0.0,20,2,2,2,2,2,1,1,2,3,45.0,2,,2,127378,1,3,0,1,2,,300.0,900.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1015.97004743147,360.0,51084.53723546637,1,1,3,4,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.007047142236811014,34056.35815697758,9,5,9,9_0,9_4,9_0_1 -8330,2,46.0,0.0,6,111,500.0,0.0,0.0,64,56,0.0,0.0,691.0871137879653,500.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,2,,4,123670,2,1,0,3,1,,0.0,610.0,43,2.0,2.0,1.0,2.0,1.5,1,1,970.090726739419,500.0,18724.763730889565,4,1,2,3,39.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02670260662222232,12483.175820593044,2,1,2_0,2_0_0,2_4_0,2_0_0 -8331,2,60.0,0.0,6,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,2270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,118542,2,2,1,0,1,,805.0,,22,2.0,1.0,6.0,2.0,1.5,1,1,652.704020665872,0.0,131812.26951834513,0,1,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017221462070980197,87874.84634556342,10,5,10,10_1,10_4,10_0_0 -8332,2,54.0,0.0,1,111,0.0,0.0,0.0,54,23,0.0,0.0,0.0,2652.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,1,107784,2,1,1,0,1,,900.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,4,3,595.922320570644,0.0,178053.98047945957,1,1,1,2,130.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014894359524335017,57436.76789659987,10,5,10,10_1,10_4,10_1_0 -8333,2,57.0,0.0,1,111,956.0,3355.0,0.0,34,34,0.0,0.0,1321.3585615625896,4311.0,0.0,6084.805482343191,60,0,0,0,0,0,0,0,0,3,248.0,1,,1,129140,2,1,1,0,1,,259.0,,43,2.0,0.0,9.0,4.0,2.5,1,1,442.110136674449,956.0,132626.22463111038,1,1,0,1,250.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032504883645679536,53050.48985244415,10,5,10,10_1,10_4,10_1_0 -8334,2,71.0,0.0,1,111,564.0,0.0,0.0,0,75,0.0,0.0,779.5462643528249,564.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,122507,2,1,0,1,1,,285.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,974.81827461723,564.0,45072.22815494022,0,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012513248691881718,45072.22815494022,10,5,10,10_0,10_4,10_1_0 -8335,2,68.0,0.0,2,111,800.0,3500.0,0.0,74,74,0.0,0.0,1105.7393820607444,4300.0,0.0,6347.785152966071,41,0,0,0,0,0,0,0,0,0,,1,,2,118103,2,1,1,0,2,,43.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,754.32267682196,800.0,128503.090655563,5,5,0,1,145.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03346223019277902,85668.72710370868,10,5,10,10_1,10_4,10_0_1 -8336,0,21.0,0.0,6,111,480.0,0.0,0.0,0,46,0.0,0.0,663.4436292364467,480.0,0.0,0.0,60,2,2,2,1,2,2,2,2,3,45.0,2,,4,104834,2,1,0,1,1,272.0,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1281.62744216897,480.0,18718.35600401363,0,1,5,0,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0256432776413205,18718.35600401363,5,3,5,5_0,5_4,5_0_0 -8337,2,44.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,503.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,3,102120,2,1,0,1,1,704.0,529.0,1600.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1069.31233450479,0.0,61956.835279910956,0,1,2,3,82.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008118555405993986,61956.835279910956,10,5,10,10_0,10_4,10_0_0 -8338,2,42.0,0.0,1,111,0.0,0.0,0.0,90,38,0.0,31.055175144583732,0.0,1246.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,112105,1,2,2,0,2,,912.0,,43,2.0,0.0,8.0,6.0,2.6999999999999997,4,4,595.922320570644,0.0,346766.9994600524,1,1,1,2,250.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0035931908224834967,128432.22202224165,10,5,10,10_1,10_4,10_1_0 -8339,2,58.0,0.0,1,111,1200.0,1000.0,0.0,34,38,1792.3018524216009,0.0,1658.6090730911167,3400.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,119808,2,1,2,0,2,,146.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,618.33034198265,1200.0,156632.27262268768,1,1,0,1,100.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021706893113849393,104421.51508179179,10,5,10,10_1,10_4,10_1_0 -8340,2,39.0,0.0,6,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,1308.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,108786,1,1,3,0,1,,820.0,,42,1.0,0.0,6.0,5.0,2.4,3,3,469.46881863373,0.0,193789.32430890514,6,1,1,2,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006749597815383341,80745.55179537715,10,5,10,10_1,10_4,10_0_0 -8341,2,72.0,0.0,2,111,361.0,93.0,0.0,77,75,0.0,0.0,498.96489615491095,454.0,0.0,168.66971977881275,60,0,0,0,0,0,0,0,0,0,,2,,2,104660,1,1,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,752.681940583507,361.0,54742.96817577598,5,5,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008293302594448963,36495.31211718399,9,5,9,9_0,9_4,9_0_1 -8342,2,55.0,0.0,2,111,200.0,40.0,0.0,0,46,0.0,0.0,276.4348455151861,240.0,0.0,72.54611603389796,50,0,0,0,0,0,0,0,0,3,75.0,2,,2,124488,1,2,0,1,2,973.0,0.0,777.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1012.97145550668,200.0,32416.68935846596,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007403593789176422,32416.68935846596,8,4,8,8_0,8_4,8_0_1 -8343,1,38.0,52.0,2,111,420.0,0.0,0.0,81,64,0.0,0.0,580.5131755818909,420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121959,2,1,0,1,1,229.0,0.0,216.0,43,2.0,0.0,1.0,2.0,1.5,2,2,832.665929441339,420.0,14209.180068197365,4,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029558355794225846,9472.786712131578,1,1,1_1,1_0_1,1_4_1,1_0_1 -8344,2,57.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,336.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100405,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,3,2,1283.37330737854,0.0,8950.924805318708,0,7,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03753802063004107,8950.924805318708,1,1,1_0,1_0_0,1_4_0,1_0_1 -8345,2,55.0,0.0,1,111,550.0,2300.0,0.0,37,38,0.0,0.0,760.1958251667618,2850.0,0.0,4171.401671949133,31,0,0,0,0,0,0,0,0,2,90.0,1,,1,124383,1,1,1,0,1,,300.0,,43,3.0,1.0,9.0,3.0,2.0,1,1,576.758617337435,550.0,221384.37419232857,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012873537305410954,110692.18709616429,10,5,10,10_1,10_4,10_1_0 -8346,2,52.0,0.0,1,111,438.0,2608.0,0.0,31,31,0.0,0.0,605.3923116782576,3046.0,0.0,4730.006765410147,50,1,2,2,2,1,2,2,2,2,15.0,1,,1,117471,1,2,3,0,2,,300.0,,43,2.0,1.0,8.0,4.0,2.5,2,2,555.663665855713,438.0,68401.70795303017,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0445310517990518,27360.68318121207,7,4,7,7_1,7_4,7_1_0 -8347,0,75.0,0.0,2,111,720.0,3000.0,0.0,75,34,0.0,0.0,995.16544385467,3720.0,0.0,5440.958702542347,50,2,2,1,2,1,2,2,2,0,,1,,2,120318,1,2,2,0,2,,350.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,713.971631773673,720.0,70680.30159721813,5,5,0,1,250.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,1,0,0,0.052631354365166055,47120.201064812085,10,5,10,10_1,10_4,10_0_1 -8348,2,79.0,0.0,2,111,170.0,0.0,0.0,0,74,0.0,0.0,234.9696186879082,170.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,128800,1,2,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,870.272269621094,170.0,34932.72743223521,0,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004866496620676903,34932.72743223521,9,5,9,9_0,9_4,9_0_1 -8349,2,35.0,0.0,2,111,0.0,0.0,500.0,43,38,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,60,2,2,1,1,1,2,2,2,2,45.0,2,,2,121579,1,3,0,1,2,474.0,0.0,979.0,43,2.0,0.0,4.0,2.0,1.5,4,4,1014.29278239497,0.0,57939.84469689942,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.008629639976006994,38626.56313126628,9,5,9,9_0,9_4,9_0_1 -8351,2,28.0,0.0,2,111,600.0,0.0,0.0,0,62,0.0,0.0,829.3045365455583,752.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,115020,2,1,0,1,1,,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1011.9248015449,600.0,23887.094671933817,0,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03148143423584969,23887.094671933817,6,3,6,6_0,6_4,6_0_1 -8352,2,37.0,0.0,5,111,480.0,1200.0,0.0,67,38,0.0,0.0,663.4436292364467,1680.0,0.0,2176.3834810169387,60,1,2,1,2,1,2,2,2,3,40.0,2,,3,119979,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,3,3,853.100333742161,480.0,58390.91481170294,1,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028771599236244328,27805.197529382353,7,4,7,7_0,7_4,7_0_0 -8353,2,43.0,0.0,2,111,275.0,0.0,0.0,0,38,0.0,0.0,380.0979125833809,1525.0,2150.4087552377396,0.0,60,0,0,0,0,0,0,0,0,2,50.0,1,,2,104673,1,2,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,4,3,1067.56545521049,275.0,71125.71747657811,0,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02144090849420516,71125.71747657811,10,5,10,10_1,10_4,10_0_1 -8354,2,69.0,0.0,5,111,1419.0,0.0,0.0,75,75,0.0,0.0,1961.3052289302454,1419.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,119007,2,2,2,0,1,,240.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,654.303225492515,1419.0,38670.50766994832,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03669463075352216,25780.338446632213,7,4,7,7_1,7_4,7_0_0 -8355,2,39.0,0.0,7,111,80.0,0.0,0.0,47,37,0.0,0.0,110.57393820607444,80.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,5,119123,2,1,1,0,1,,480.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,547.83769131463,80.0,62167.9907009199,1,1,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0012868358635695176,29603.805095676144,8,4,8,8_1,8_4,8_0_0 -8356,2,58.0,0.0,2,111,393.0,0.0,0.0,75,37,3684.673891603408,0.0,543.1944714373407,3100.0,412.878481005646,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,2,114122,2,3,1,0,1,,510.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,819.505549094266,393.0,94146.89104674758,5,1,0,1,126.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03292726892554242,62764.594031165056,10,5,10,10_1,10_4,10_0_1 -8357,2,52.0,0.0,2,111,486.0,436.0,0.0,67,52,0.0,0.0,671.7366746019022,922.0,0.0,790.7526647694878,71,2,1,2,2,1,2,2,2,2,15.0,2,,2,111437,1,3,0,1,1,752.0,0.0,395.0,43,2.0,0.0,4.0,4.0,2.5,2,2,836.05672709926,486.0,44926.1049582722,1,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020522589279804306,17970.44198330888,4,2,4_0,4_0_0,4_4_0,4_0_1 -8358,2,30.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,2315.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,,2,109167,2,1,2,0,1,,168.0,600.0,12,1.0,0.0,3.0,1.0,1.0,2,2,901.31781246724,0.0,26359.709530626773,0,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08782342602486769,26359.709530626773,7,4,7,7_1,7_4,7_0_1 -8359,2,48.0,0.0,5,111,1588.0,0.0,0.0,46,22,0.0,0.0,2194.892673390578,1588.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,117373,2,1,0,0,1,,0.0,714.0,43,2.0,1.0,4.0,3.0,2.0,2,2,1213.3198875179,1588.0,56799.068118216,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02795820517151607,28399.534059108,8,4,8,8_0,8_4,8_0_0 -8360,2,52.0,0.0,6,111,385.0,576.0,0.0,22,46,0.0,0.0,532.1370776167332,961.0,0.0,1044.6640708881305,44,0,0,0,0,0,0,0,0,2,10.0,2,,4,106177,2,2,0,0,1,,384.0,405.0,43,2.0,0.0,2.0,2.0,1.5,2,2,880.38362998937,385.0,20312.90083120917,4,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0473098356549597,13541.933887472778,3,2,3_0,3_0_0,3_4_0,3_0_0 -8361,1,49.0,308.0,5,111,330.0,660.0,0.0,0,55,0.0,0.0,456.1174951000571,990.0,0.0,1197.0109145593162,42,0,0,0,0,0,0,0,0,2,15.0,2,,3,131744,2,3,0,0,1,,224.0,424.0,12,1.0,3.0,3.0,1.0,1.0,4,4,1181.1296915587,330.0,11900.05580435525,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08319288718273692,11900.05580435525,2,1,2_1,2_0_1,2_4_1,2_0_0 -8362,2,68.0,0.0,2,111,256.0,958.0,0.0,0,75,0.0,43.47724520241723,353.8366022594382,1256.0,0.0,1737.479479011856,20,0,0,0,0,0,0,0,0,0,,1,,2,115494,2,1,2,0,1,,86.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,952.003539276068,256.0,23192.211763251176,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05415611123343455,23192.211763251176,6,3,6,6_1,6_4,6_0_1 -8363,2,67.0,0.0,2,111,560.0,1025.0,0.0,77,77,0.0,0.0,774.0175674425211,1585.0,0.0,1858.9942233686352,71,0,0,0,0,0,0,0,0,0,,1,,2,100784,2,1,2,0,1,,460.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,845.254196435169,560.0,54222.793947231956,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029231249159578088,36148.52929815464,9,5,9,9_1,9_4,9_0_1 -8364,2,67.0,0.0,6,111,980.0,0.0,0.0,77,78,0.0,305.37588892174006,1354.530743024412,1329.0,92.89765822627035,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,102107,2,1,2,0,1,,420.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,673.080717803722,980.0,27583.4953771379,5,5,0,1,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04818098583334433,18388.996918091932,4,2,4_0,4_1_0,4_4_0,4_0_0 -8365,2,54.0,0.0,6,111,1384.0,0.0,0.0,52,53,0.0,621.1035028916747,1912.929130965088,1984.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,1,,4,125064,1,1,3,0,1,,396.0,,43,3.0,2.0,6.0,3.0,2.0,2,2,627.513238898581,1384.0,91614.67788080059,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.021655918526301787,45807.338940400296,10,5,10,10_1,10_4,10_0_0 -8366,2,66.0,0.0,5,111,323.0,2100.0,0.0,0,75,0.0,0.0,446.44227550702556,2423.0,0.0,3808.6710917796427,60,0,0,0,0,0,0,0,0,0,,2,,3,108922,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,870.442158292099,323.0,27933.60903842353,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08674138728966564,27933.60903842353,7,4,7,7_0,7_4,7_0_0 -8367,2,55.0,0.0,2,111,754.0,824.0,0.0,56,48,0.0,0.0,1042.1593675922516,1578.0,0.0,1494.449990298298,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,106831,2,2,4,0,1,,825.0,,43,3.0,0.0,3.0,3.0,2.0,1,1,788.700139847576,754.0,51781.24744503906,1,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030474352740823774,25890.62372251953,7,4,7,7_1,7_4,7_0_1 -8368,0,70.0,0.0,9,111,960.0,0.0,0.0,0,74,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2008.0,6,129992,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1252.03629359153,960.0,55034.0,0,5,5,0,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017443762038012865,55034.0,10,5,10,10_0,10_4,10_0_0 -8369,2,44.0,0.0,9,111,1563.0,0.0,0.0,54,37,0.0,0.0,2160.3383177011797,1563.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,2009.0,6,102155,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,1280.8869703542,1563.0,93133.9145993629,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016782286095496,44349.48314255376,10,5,10,10_0,10_4,10_0_0 -8370,2,49.0,0.0,1,111,492.0,1379.0,0.0,85,38,0.0,0.0,680.0297199673578,1871.0,0.0,2501.027350268632,50,2,2,2,1,1,2,1,2,3,80.0,1,,1,101452,2,3,3,0,1,,528.0,,42,1.0,0.0,6.0,3.0,1.8,3,3,548.356922815998,492.0,66150.91021703143,6,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0282838133876242,36750.505676128574,9,5,9,9_1,9_4,9_1_0 -8371,2,27.0,0.0,2,111,0.0,0.0,0.0,84,65,0.0,0.0,0.0,382.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,118610,1,3,0,1,1,564.0,0.0,314.0,42,1.0,0.0,2.0,2.0,1.5,2,2,833.76361223276,0.0,23354.517171346422,3,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016356578780771135,15569.678114230948,3,2,3_0,3_0_0,3_4_0,3_0_1 -8372,1,56.0,145.0,1,111,817.0,0.0,0.0,0,68,0.0,0.0,1129.2363439295352,840.0,39.567521096374406,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,1,132245,1,1,0,0,2,,203.0,300.0,12,1.0,3.0,1.0,1.0,1.0,1,1,910.716182192782,817.0,14507.026081166328,0,1,3,4,24.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.057902977171215377,14507.026081166328,3,2,3_1,3_0_1,3_4_1,3_1_0 -8373,2,60.0,0.0,1,111,650.0,3010.0,0.0,54,75,0.0,0.0,898.4132479243549,3660.0,0.0,5459.095231550821,20,0,0,0,0,0,0,0,0,0,,1,,1,100762,2,2,2,0,1,,355.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,585.415978795145,650.0,107450.97356826704,1,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03406204595879892,71633.9823788447,10,5,10,10_1,10_4,10_1_0 -8374,2,63.0,0.0,7,111,601.0,1328.0,0.0,56,78,0.0,0.0,830.6867107731342,1929.0,0.0,2408.531052325412,41,0,0,0,0,0,0,0,0,0,,1,,5,124135,2,1,2,0,1,,340.0,,42,2.0,3.0,5.0,3.0,2.0,3,3,636.084302955214,601.0,34041.82995845931,1,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056665578858537485,17020.914979229656,4,2,4_0,4_1_0,4_4_0,4_0_0 -8375,2,64.0,0.0,2,111,390.0,2029.0,0.0,77,74,0.0,25.879312620486445,539.0479487546129,2444.0,0.0,3679.9017358194737,41,2,2,1,1,1,2,2,2,0,,1,,2,113957,2,2,3,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,4,2,823.369761852411,390.0,49496.34713768547,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,1,1,0,0,0.04937738118737231,32997.56475845698,8,4,8,8_1,8_4,8_0_1 -8376,2,63.0,0.0,6,111,581.0,860.0,0.0,0,56,0.0,0.0,803.0432262216157,1441.0,0.0,1559.741494728806,41,2,2,1,2,1,2,2,2,3,23.0,2,,4,112827,1,2,0,1,1,,0.0,383.0,12,1.0,2.0,2.0,1.0,1.0,4,4,1864.58707814732,581.0,5555.240076302811,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.25939473005800884,5555.240076302811,1,1,1_0,1_0_0,1_4_0,1_0_0 -8377,2,38.0,0.0,2,111,495.0,0.0,0.0,55,21,0.0,0.0,684.1762426500857,495.0,0.0,0.0,31,2,2,1,2,1,2,2,2,0,,1,,2,112663,2,2,1,0,2,,430.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,566.482414910442,495.0,23144.929509646063,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,0,0.02138697375568588,11021.395004593363,2,1,2_0,2_1_0,2_4_0,2_0_1 -8378,1,30.0,331.0,7,111,533.0,1150.0,0.0,85,63,0.0,0.0,736.698863297971,1683.0,0.0,2085.7008359745664,42,0,0,0,0,0,0,0,0,2,15.0,2,,5,112615,2,3,0,0,1,,0.0,536.0,42,1.0,0.0,4.0,5.0,2.4,2,2,626.019867909212,533.0,26459.387433949436,6,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06360691471793414,11024.744764145598,2,1,2_1,2_0_1,2_4_1,2_0_0 -8379,2,31.0,0.0,6,111,580.0,0.0,0.0,37,38,0.0,0.0,801.6610519940398,580.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,4,126426,2,1,0,0,1,,0.0,850.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1172.51474346979,580.0,74936.06357565177,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007739931513942689,49957.37571710118,10,5,10,10_0,10_4,10_0_0 -8380,2,54.0,0.0,5,111,0.0,0.0,400.0,77,37,0.0,0.0,204.36533393501003,400.0,0.0,457.2983098610526,44,0,0,0,0,0,0,0,0,2,15.0,2,,3,124667,1,2,0,1,1,250.0,0.0,663.0,42,2.0,1.0,3.0,3.0,2.0,2,2,952.117583831416,0.0,77628.9778742879,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005152715016391928,38814.48893714395,9,5,9,9_0,9_4,9_0_0 -8381,2,70.0,0.0,2,111,600.0,0.0,0.0,0,75,2987.1697540360015,0.0,829.3045365455583,2600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,100079,2,1,2,0,1,,300.0,,11,0.0,3.0,8.0,1.0,1.0,2,2,921.865398415733,600.0,19333.701733856476,0,5,0,1,170.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13448019607372833,19333.701733856476,5,3,5,5_1,5_4,5_0_1 -8382,2,78.0,0.0,2,111,0.0,0.0,300.0,0,72,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,71,2,2,1,1,1,2,2,2,0,,2,,2,129160,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1049.49512042614,0.0,14971.197767385122,0,5,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02003847685811435,14971.197767385122,3,2,3_0,3_0_0,3_4_0,3_0_1 -8383,2,29.0,0.0,2,111,600.0,600.0,0.0,52,62,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,110211,2,3,0,1,1,,0.0,500.0,43,2.0,0.0,2.0,2.0,1.5,1,1,856.020195155445,600.0,43815.240837987934,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027387730320532593,29210.160558658623,8,4,8,8_0,8_4,8_0_1 -8384,2,27.0,0.0,2,111,200.0,200.0,0.0,42,65,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,12,2,1,2,2,1,2,2,2,0,,2,,2,103652,2,2,0,1,1,537.0,0.0,347.0,43,2.0,0.0,3.0,2.0,1.5,2,2,856.020195155445,200.0,47334.740130888706,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008450453068801711,31556.49342059247,8,4,8,8_0,8_4,8_0_1 -8385,2,38.0,0.0,5,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,1879.0,0.0,0.0,50,2,2,1,2,1,2,2,2,3,50.0,2,,3,117185,1,1,0,1,1,775.0,0.0,350.0,32,1.0,0.0,3.0,3.0,1.6,2,2,892.142125140733,0.0,23351.55124152054,0,1,2,3,87.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.08046574638943124,14594.719525950337,3,2,3_0,3_0_0,3_4_0,3_0_0 -8386,2,37.0,0.0,6,111,0.0,0.0,0.0,56,37,0.0,0.0,0.0,3215.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,107699,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,756.704333392678,0.0,57093.53301545337,1,1,0,1,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05631110618307337,38062.35534363558,9,5,9,9_0,9_4,9_0_0 -8387,1,41.0,27.0,2,111,1200.0,20.0,0.0,85,48,0.0,0.0,1658.6090730911167,3165.0,0.0,36.27305801694898,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,123686,2,1,0,1,1,315.0,0.0,450.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,3,882.494872890289,1200.0,40511.081420560586,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07812677146637877,15581.185161754074,3,2,3_1,3_0_1,3_4_1,3_0_1 -8388,2,44.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,941.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,119699,2,1,0,1,1,756.0,0.0,403.0,32,1.0,0.0,4.0,3.0,1.8,2,2,890.961445366544,0.0,52500.80441750575,0,1,2,3,87.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01792353489513839,29167.11356528097,8,4,8,8_0,8_4,8_0_1 -8389,2,42.0,0.0,2,111,200.0,800.0,0.0,62,38,0.0,0.0,276.4348455151861,1000.0,0.0,1450.922320677959,50,2,2,1,2,1,2,2,2,3,45.0,2,,2,105925,2,1,0,0,1,,0.0,,43,2.0,2.0,3.0,5.0,2.6,1,1,785.818959602169,200.0,91770.2527181091,1,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010896777227711275,35296.25104542657,9,5,9,9_0,9_4,9_0_1 -8390,2,47.0,0.0,6,111,0.0,0.0,0.0,43,37,0.0,0.0,0.0,931.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,40.0,1,,4,125157,1,2,3,0,1,,338.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,601.838673231349,0.0,123625.17669820583,1,1,1,2,140.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007530828467673378,47548.14488392533,10,5,10,10_1,10_4,10_0_0 -8391,2,52.0,0.0,2,111,600.0,2000.0,0.0,31,37,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,43,1,2,2,1,1,2,2,2,3,30.0,1,,2,119122,2,2,1,0,1,,520.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,714.305003615969,600.0,71171.83926212176,1,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.036531302646603675,25418.514022186348,7,4,7,7_1,7_4,7_0_1 -8392,2,55.0,0.0,1,111,0.0,0.0,0.0,43,37,0.0,144.92415067472407,0.0,878.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,40.0,1,,1,131678,2,1,1,0,1,,415.0,,42,1.0,2.0,5.0,2.0,1.5,3,2,672.400398234163,0.0,385484.6568957443,6,1,1,2,110.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.002277652260067664,256989.77126382955,10,5,10,10_1,10_4,10_1_0 -8393,2,59.0,0.0,1,111,2200.0,0.0,0.0,90,21,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,2,2,2,2,1,1,2,2,2,35.0,1,,1,105462,2,2,1,0,1,,1140.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,622.926849298847,2200.0,47816.963860602875,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04600877643368348,19126.78554424115,5,3,5,5_1,5_4,5_1_0 -8394,2,53.0,0.0,2,111,600.0,92.0,0.0,38,37,1272.5343152193366,0.0,829.3045365455583,1544.0,0.0,166.8560668779653,71,0,0,0,0,0,0,0,0,3,55.0,1,,2,125426,2,2,3,0,1,,532.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,638.404017089177,600.0,114599.3748313108,1,1,0,1,110.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013473022887539775,49825.815144048174,10,5,10,10_1,10_4,10_0_1 -8395,2,82.0,0.0,2,111,211.0,100.0,0.0,77,74,0.0,0.0,291.63876201852133,311.0,0.0,181.36529008474488,33,0,0,0,0,0,0,0,0,0,,2,,2,120909,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,779.823581933955,211.0,38651.019344402186,5,5,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008046359585728288,25767.34622960146,7,4,7,7_0,7_4,7_0_1 -8396,2,53.0,0.0,5,111,0.0,0.0,0.0,90,23,0.0,0.0,0.0,2513.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,2.0,1,,3,122107,2,2,5,0,1,,594.0,2500.0,43,2.0,0.0,5.0,4.0,2.3,1,1,901.24178585837,0.0,122027.00746730695,1,1,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02059380175059422,53055.220637959545,10,5,10,10_1,10_4,10_0_0 -8397,2,44.0,0.0,9,111,718.0,1055.0,0.0,33,33,0.0,0.0,992.4010953995181,1773.0,0.0,1913.4038103940586,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,107323,2,1,1,0,1,,440.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,665.889210414327,718.0,92704.73264960863,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01912523718396684,44145.11078552792,10,5,10,10_1,10_4,10_0_0 -8398,2,79.0,0.0,9,111,230.0,686.0,0.0,0,77,0.0,0.0,317.900072342464,916.0,0.0,1244.16588998135,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,108121,2,1,0,0,1,,0.0,331.0,11,0.0,1.0,2.0,1.0,1.0,6,5,953.110325682381,230.0,24836.758885353614,0,5,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036880818637739836,24836.758885353614,7,4,7,7_0,7_4,7_0_0 -8399,2,63.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,496.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,123817,2,2,0,1,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,602.368820530024,0.0,119702.05659512192,5,5,0,1,87.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004143621372167911,79801.37106341461,10,5,10,10_0,10_4,10_0_1 -8400,2,58.0,0.0,5,111,500.0,2500.0,0.0,90,37,0.0,0.0,691.0871137879653,3000.0,0.0,4534.132252118622,71,0,0,0,0,0,0,0,0,0,,2,,3,115758,2,3,0,1,2,,0.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,607.857735291792,500.0,248359.86435906976,1,1,0,1,144.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012079246410211868,124179.93217953488,10,5,10,10_0,10_4,10_0_0 -8401,2,78.0,0.0,2,111,420.0,0.0,0.0,86,90,0.0,0.0,580.5131755818909,998.0,0.0,0.0,31,2,1,2,2,1,2,2,2,0,,2,,2,107663,2,1,0,1,2,,0.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,616.811136498359,420.0,104622.07182521597,6,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009539096125598445,69748.04788347731,10,5,10,10_0,10_4,10_0_1 -8402,2,30.0,0.0,5,111,0.0,0.0,0.0,43,47,0.0,0.0,0.0,1086.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,127873,1,2,2,0,1,,715.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,854.215050617189,0.0,55819.126200199185,1,1,1,2,112.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019455696889718148,31010.625666777323,8,4,8,8_1,8_4,8_0_0 -8403,2,50.0,0.0,7,111,400.0,905.0,0.0,0,64,0.0,0.0,552.8696910303722,1305.0,0.0,1641.3558752669412,20,0,0,0,0,0,0,0,0,2,30.0,2,,5,105756,2,1,0,0,1,,0.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,840.160114138133,400.0,27104.460782135327,0,1,1,2,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048147056327353,18069.640521423553,4,2,4_0,4_0_0,4_4_0,4_0_0 -8404,2,31.0,0.0,2,111,1356.0,1.0,0.0,0,67,0.0,0.0,1874.2282525929618,1357.0,0.0,1.813652900847449,20,0,0,0,0,0,0,0,0,2,6.0,2,,2,133383,2,3,0,0,1,,0.0,270.0,12,1.0,3.0,1.0,1.0,1.0,1,1,1284.53163688599,1356.0,16312.366120074556,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08318842220749505,16312.366120074556,4,2,4_0,4_0_0,4_4_0,4_0_1 -8405,2,32.0,0.0,6,111,360.0,0.0,0.0,46,46,0.0,0.0,497.582721927335,955.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,4,118162,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,3,2,773.384957617554,360.0,61864.566036905104,1,1,1,2,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015436946562112759,41243.044024603405,9,5,9,9_0,9_4,9_0_0 -8406,0,31.0,0.0,2,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,283.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,125532,2,1,0,1,2,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,695.245538700306,0.0,51325.37862714699,6,1,5,0,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0055138414478313426,24440.656489117613,7,4,7,7_0,7_4,7_0_1 -8407,2,45.0,0.0,7,111,600.0,0.0,0.0,0,33,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,119153,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,914.095494676948,600.0,28713.13685791007,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02089635844976333,28713.13685791007,8,4,8,8_0,8_4,8_0_0 -8408,2,28.0,0.0,1,111,2200.0,0.0,0.0,85,63,0.0,0.0,3040.783300667047,2360.0,275.25232067043066,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,1,128486,2,2,1,0,1,,720.0,,42,1.0,0.0,3.0,4.0,2.3,2,2,695.431772625205,2200.0,16601.674654125407,6,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14215433377460843,7218.119414837134,1,1,1_0,1_1_0,1_4_0,1_1_0 -8409,2,79.0,0.0,5,111,571.0,1941.0,0.0,74,74,0.0,0.0,789.2214839458563,2512.0,0.0,3520.300280544898,71,0,0,0,0,0,0,0,0,0,,1,,3,114907,2,2,3,0,1,,274.0,,41,0.0,2.0,7.0,2.0,1.5,4,2,714.616038516742,571.0,70899.06802641437,5,5,0,1,126.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0354306490892676,47266.04535094291,10,5,10,10_1,10_4,10_0_0 -8410,2,52.0,0.0,7,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,110458,2,1,0,0,1,,150.0,545.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1066.80714620039,0.0,29474.023796853136,0,1,2,3,21.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020356908311380966,29474.023796853136,8,4,8,8_0,8_4,8_0_0 -8411,2,62.0,0.0,7,111,700.0,1300.0,0.0,90,75,0.0,0.0,967.5219593031513,2000.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,5,123474,2,1,2,0,1,,650.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,663.023528240677,700.0,71168.08181234844,1,5,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0281024856799355,47445.38787489896,10,5,10,10_1,10_4,10_0_0 -8412,2,66.0,0.0,6,112,1800.0,0.0,0.0,42,42,0.0,414.0690019277831,2487.913609636675,2280.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,126130,2,1,2,0,1,,510.0,,42,1.0,2.0,7.0,4.0,2.5,2,2,756.904036787165,1800.0,78985.97452799397,1,5,0,1,300.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028865884274073612,31594.389811197587,8,4,8,8_1,8_0,8_0_0 -8413,2,43.0,0.0,2,111,588.0,1700.0,0.0,55,46,0.0,0.0,812.7184458146471,2288.0,0.0,3083.2099314406632,43,0,0,0,0,0,0,0,0,3,37.0,1,,2,114821,2,1,1,0,1,,540.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,819.724840048335,588.0,58422.524554124175,1,1,1,2,108.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03916297724998748,27820.249787678178,7,4,7,7_1,7_4,7_0_1 -8414,2,52.0,0.0,2,111,580.0,0.0,0.0,0,42,0.0,0.0,801.6610519940398,580.0,0.0,0.0,71,2,2,1,2,1,2,2,2,1,20.0,2,,2,115409,2,2,0,1,2,,0.0,,32,1.0,1.0,3.0,2.0,1.5,2,2,944.327985574273,580.0,28811.05172978853,0,1,1,2,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02013116374367973,19207.36781985902,5,3,5,5_0,5_4,5_0_1 -8415,2,61.0,0.0,2,111,0.0,50.0,0.0,85,75,0.0,0.0,0.0,334.0,0.0,90.68264504237244,42,0,0,0,0,0,0,0,0,0,,2,,2,125484,1,1,0,1,2,,0.0,,41,1.0,2.0,5.0,3.0,2.0,1,1,906.451829629994,0.0,51614.106025236084,6,5,0,1,82.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006471099195958074,25807.053012618042,7,4,7,7_0,7_4,7_0_1 -8416,2,41.0,0.0,2,111,696.0,0.0,0.0,85,37,0.0,0.0,961.9932623928477,696.0,0.0,0.0,10,2,2,1,1,2,1,1,2,2,30.0,2,,2,100649,2,1,0,1,2,,0.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,873.298346020445,696.0,48466.29895384489,7,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014360494096378396,23079.189978021375,6,3,6,6_0,6_4,6_0_1 -8417,2,73.0,0.0,2,111,420.0,240.0,0.0,56,78,0.0,0.0,580.5131755818909,660.0,0.0,435.27669620338776,12,1,2,2,1,2,2,2,2,0,,2,,2,118480,1,1,0,1,1,708.0,0.0,472.0,42,2.0,2.0,3.0,3.0,2.0,2,2,996.524196312178,420.0,31202.57986719356,1,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021152097128158465,15601.28993359678,3,2,3_0,3_0_0,3_4_0,3_0_1 -8418,2,47.0,0.0,5,111,226.0,0.0,0.0,0,31,0.0,0.0,312.37137543216033,226.0,0.0,0.0,33,2,1,2,2,1,2,2,2,0,,2,,3,133385,1,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1063.50280067819,226.0,30034.167912381265,0,7,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007524763151731396,30034.167912381265,8,4,8,8_0,8_4,8_0_0 -8419,2,50.0,0.0,2,111,420.0,120.0,0.0,0,42,0.0,0.0,580.5131755818909,540.0,0.0,217.63834810169388,33,1,2,2,2,1,2,2,2,2,10.0,2,,2,125168,1,1,0,1,2,,0.0,,32,1.0,1.0,5.0,3.0,2.0,1,1,930.544511541616,420.0,38991.35767156967,0,1,1,2,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013849222808513232,19495.678835784835,5,3,5,5_0,5_4,5_0_1 -8420,2,83.0,0.0,1,112,1270.0,0.0,0.0,77,72,5929.531961761462,0.0,1755.3612690214318,5240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112319,2,1,3,0,1,,190.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,675.161812462935,1270.0,86542.0757788327,5,5,0,1,470.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06054858232649014,57694.71718588847,10,5,10,10_1,10_0,10_1_0 -8421,2,42.0,0.0,1,112,1010.0,0.0,0.0,42,22,0.0,0.0,1395.9959698516898,4210.0,5505.046413408613,0.0,60,2,2,2,2,2,2,2,1,2,35.0,1,,1,104374,2,2,1,0,1,,700.0,,43,2.0,0.0,8.0,5.0,2.4,1,1,512.361247361478,1010.0,88893.0603092373,1,1,1,2,180.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.04736027745421786,37038.77512884888,9,5,9,9_1,9_0,9_1_0 -8422,2,80.0,0.0,1,112,300.0,0.0,0.0,0,72,2344.928256918261,0.0,414.65226827277917,2050.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100628,1,1,2,0,2,,400.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,1011.71919865279,300.0,13584.527928628038,0,5,0,1,120.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15090697378447943,13584.527928628038,3,2,3_0,3_1_0,3_0_0,3_1_0 -8423,2,56.0,0.0,9,112,1360.0,0.0,0.0,0,54,0.0,0.0,1879.7569495032656,1360.0,0.0,0.0,41,2,2,1,2,1,2,2,2,2,20.0,1,2004.0,6,119149,2,1,2,0,1,,276.0,770.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1651.98687054863,1360.0,31793.0,0,1,2,3,75.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04277671185481081,31793.0,8,4,8,8_1,8_0,8_0_0 -8424,2,43.0,0.0,5,112,2000.0,0.0,0.0,38,38,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,31,2,2,1,2,1,2,2,1,3,100.0,1,,3,111935,2,1,3,0,1,,550.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,659.112787575956,2000.0,97690.37006457755,1,1,1,2,116.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02047284700301487,37573.21925560675,9,5,9,9_1,9_0,9_0_0 -8425,2,89.0,0.0,2,112,315.0,0.0,0.0,86,72,4480.754631054002,0.0,435.3848816864181,3465.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113087,1,1,2,0,2,,178.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,894.13109582863,315.0,17745.473182366946,5,5,0,1,166.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19526106542163377,11830.315454911297,2,1,2_0,2_1_0,2_0_0,2_0_1 -8426,2,54.0,0.0,6,111,1250.0,0.0,0.0,77,48,0.0,207.03450096389156,1727.717784469913,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,114798,2,1,2,0,1,,260.0,,42,1.0,7.0,5.0,2.0,1.5,1,1,750.270187160712,1250.0,43657.46398376048,5,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03321310648138804,29104.97598917365,8,4,8,8_1,8_4,8_0_0 -8427,0,37.0,0.0,8,111,486.0,0.0,0.0,0,42,0.0,0.0,671.7366746019022,486.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2002.0,6,100720,2,1,0,0,1,,323.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1089.40959059696,486.0,19647.04317260383,0,1,5,0,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024736546651339713,19647.04317260383,5,3,5,5_0,5_4,5_0_0 -8428,2,66.0,0.0,2,111,1544.0,0.0,0.0,75,75,0.0,0.0,2134.077007377237,1544.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,106311,2,1,1,0,1,,350.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,732.08098837134,1544.0,41958.63488961704,5,5,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0367981466523372,27972.423259744693,7,4,7,7_1,7_4,7_0_1 -8429,2,55.0,0.0,2,111,74.0,22.0,0.0,56,48,0.0,0.0,102.28089284061886,96.0,0.0,39.900363818643875,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,107194,2,1,1,0,1,,558.0,,43,2.0,2.0,5.0,3.0,2.0,2,2,881.686207069416,74.0,44119.51703788183,1,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002175907771555446,22059.758518940915,6,3,6,6_1,6_4,6_0_1 -8430,2,81.0,0.0,2,111,220.0,1360.0,0.0,0,78,0.0,0.0,304.0783300667047,1580.0,0.0,2466.5679451525307,50,0,0,0,0,0,0,0,0,0,,1,,2,112358,2,1,1,0,1,,120.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,1034.36187566014,220.0,23272.37261726261,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06789165960792554,23272.37261726261,6,3,6,6_1,6_4,6_0_1 -8431,2,77.0,0.0,2,111,213.0,1000.0,0.0,77,78,0.0,0.0,294.4031104736732,1213.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,1,,2,131684,2,1,2,0,1,,217.0,,41,0.0,0.0,4.0,2.0,1.5,2,1,918.452556753097,213.0,39365.36446553485,5,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030813889734515362,26243.576310356566,7,4,7,7_1,7_4,7_0_1 -8432,2,85.0,0.0,2,111,690.0,1660.0,0.0,72,72,0.0,0.0,953.7002170273921,2350.0,0.0,3010.663815406765,44,0,0,0,0,0,0,0,0,0,,1,,2,120765,2,1,2,0,1,,345.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,757.845799110556,690.0,38737.060695970926,5,5,0,1,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06066541853663217,25824.707130647283,7,4,7,7_1,7_4,7_0_1 -8433,2,38.0,0.0,5,111,1300.0,120.0,0.0,0,47,0.0,0.0,1796.8264958487098,1420.0,0.0,217.63834810169388,50,2,2,2,2,1,2,2,2,2,15.0,1,,3,128829,1,2,3,0,1,,437.0,,32,1.0,0.0,4.0,3.0,1.6,4,3,721.454372837454,1300.0,36144.42946327687,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.039286828457002904,22590.268414548045,6,3,6,6_1,6_4,6_0_0 -8434,2,48.0,0.0,2,111,508.0,869.0,0.0,55,48,0.0,0.0,702.1445076085727,1377.0,0.0,1576.064370836433,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,114513,2,1,2,0,1,,302.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,894.67294704468,508.0,66831.49690849788,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020604057423482747,44554.33127233192,10,5,10,10_1,10_4,10_0_1 -8435,2,26.0,0.0,2,111,1598.0,0.0,0.0,54,55,0.0,103.51725048194578,2208.714415666337,1758.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,104629,2,1,2,0,1,,350.0,460.0,43,2.0,0.0,3.0,4.0,2.1,2,2,856.62419461263,1598.0,39990.537477488564,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04396039940672495,19043.11308451836,5,3,5,5_1,5_4,5_0_1 -8436,2,92.0,0.0,2,111,1616.0,0.0,0.0,0,77,0.0,0.0,2233.593551762704,1616.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103449,2,3,3,0,2,,158.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,895.778156125515,1616.0,24916.846054765883,0,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06485572036075991,24916.846054765883,7,4,7,7_1,7_4,7_0_1 -8437,2,65.0,0.0,6,111,2700.0,0.0,0.0,77,74,0.0,0.0,3731.8704144550125,2700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,133075,2,1,2,0,1,,187.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,713.126715719561,2700.0,67461.7238202152,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04002269504994377,44974.482546810126,10,5,10,10_1,10_4,10_0_0 -8438,2,58.0,0.0,5,111,957.0,0.0,0.0,52,37,0.0,0.0,1322.7407357901654,957.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,50.0,1,,3,103049,2,1,2,0,1,,224.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,713.638020930592,957.0,49129.19130931653,1,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019479254074726057,32752.79420621102,8,4,8,8_1,8_4,8_0_0 -8439,2,59.0,0.0,7,111,1500.0,0.0,0.0,52,42,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,112447,2,1,2,0,1,,400.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,641.486396086999,1500.0,62187.42199481536,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02412063327090576,41458.28132987691,9,5,9,9_1,9_4,9_0_0 -8440,2,49.0,0.0,6,111,1765.0,0.0,0.0,54,38,0.0,0.0,2439.537511671517,1855.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,4,120951,2,1,2,0,1,,500.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,699.476991007124,1765.0,54683.47243137506,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03392249828918471,27341.73621568753,7,4,7,7_1,7_4,7_0_0 -8441,2,41.0,0.0,8,111,266.0,699.0,0.0,0,53,0.0,0.0,367.65834453519756,965.0,0.0,1267.7433776923667,41,0,0,0,0,0,0,0,0,2,25.0,2,2000.0,6,110276,2,3,0,0,1,,350.0,597.0,32,2.0,1.0,3.0,4.0,2.1,1,1,1540.73979176332,266.0,24309.882503409746,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03969579037926849,11576.134525433212,2,1,2_0,2_0_0,2_4_0,2_0_0 -8442,2,47.0,0.0,7,111,1004.0,1374.0,0.0,63,46,0.0,0.0,1387.7029244862342,2378.0,0.0,2491.959085764395,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,116033,2,1,2,0,1,,449.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,629.952755710585,1004.0,42397.7789803498,4,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056087843684032065,18433.816947978175,4,2,4_0,4_1_0,4_4_0,4_0_0 -8443,2,46.0,0.0,8,111,575.0,1982.0,0.0,67,48,0.0,0.0,794.7501808561601,2557.0,0.0,3594.660049479644,71,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,107757,2,1,1,0,1,,600.0,,43,3.0,0.0,6.0,4.0,2.5,3,2,598.765814537354,575.0,47422.47272407495,1,1,1,2,112.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053919583967663685,18968.98908962998,5,3,5,5_1,5_4,5_0_0 -8444,2,58.0,0.0,7,112,1200.0,0.0,0.0,55,47,3285.8867294396014,0.0,1658.6090730911167,3500.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,129504,2,2,3,0,1,,800.0,,43,3.0,2.0,6.0,3.0,2.0,2,2,656.553288211767,1200.0,80057.44036791271,1,1,0,1,126.0,10,1,1,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04371860983707907,40028.72018395636,9,5,9,9_1,9_1,9_0_0 -8445,1,36.0,420.0,9,111,420.0,712.0,0.0,55,55,0.0,0.0,580.5131755818909,1132.0,0.0,1291.3208654033836,10,2,2,2,1,1,2,2,2,0,,1,2006.0,6,124608,2,3,2,0,1,,0.0,479.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1068.16963807023,420.0,31509.99886064203,1,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,1,0.03592510444086176,17505.554922578904,4,2,4_1,4_1_1,4_4_1,4_0_0 -8446,1,20.0,263.0,5,111,690.0,86.0,0.0,0,52,0.0,0.0,953.7002170273921,776.0,0.0,155.9741494728806,70,2,1,2,2,1,2,2,2,0,,2,,3,123488,1,3,0,1,1,1068.0,0.0,414.0,22,2.0,0.0,5.0,4.0,2.3,2,2,815.202326690021,690.0,33049.386220404915,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.023480012452421654,14369.298356697791,3,2,3_1,3_0_1,3_4_1,3_0_0 -8447,2,34.0,0.0,8,111,0.0,0.0,0.0,54,37,0.0,0.0,0.0,1430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2003.0,6,118920,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,3,3,873.67071958141,0.0,61875.11987281294,1,1,1,2,49.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02311106633715504,34375.066596007186,9,5,9,9_0,9_4,9_0_0 -8448,1,42.0,413.0,2,111,1000.0,400.0,0.0,0,68,0.0,0.0,1382.1742275759307,1400.0,0.0,725.4611603389795,50,2,1,2,2,1,2,2,2,0,,2,,2,112882,1,3,0,1,1,614.0,0.0,382.0,32,1.0,1.0,4.0,3.0,2.0,2,2,868.640201088387,1000.0,5296.1569634557745,0,4,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.26434261855534047,2648.0784817278873,1,1,1_1,1_0_1,1_4_1,1_0_1 -8449,2,20.0,0.0,2,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,422.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,20.0,2,,2,102304,2,2,0,1,1,1340.0,0.0,415.0,43,2.0,0.0,4.0,3.0,1.8,1,1,868.640201088387,0.0,21264.557040600514,1,1,2,3,79.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019845228809340986,11813.642800333619,2,1,2_0,2_0_0,2_4_0,2_0_1 -8450,2,54.0,0.0,2,111,390.0,1200.0,0.0,0,45,0.0,0.0,539.0479487546129,1590.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,35.0,2,,2,130245,2,2,0,0,1,,0.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,956.499108754104,390.0,33723.97006981914,0,1,0,1,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04714747393940286,16861.98503490957,4,2,4_0,4_0_0,4_4_0,4_0_1 -8451,2,64.0,0.0,5,111,780.0,600.0,0.0,74,56,0.0,0.0,1078.0958975092258,1380.0,0.0,1088.1917405084694,20,0,0,0,0,0,0,0,0,0,,2,,3,112994,2,2,0,0,1,,0.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,945.458359801478,780.0,75125.21342317351,5,4,0,1,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018369332173828048,50083.47561544901,10,5,10,10_0,10_4,10_0_0 -8452,1,68.0,543.0,2,111,504.0,1580.0,0.0,65,68,0.0,0.0,696.615810698269,2084.0,0.0,2865.571583338969,60,2,2,2,1,2,2,2,2,3,60.0,2,,2,114489,1,3,0,0,2,,0.0,603.0,43,4.0,4.0,5.0,8.0,3.8999999999999995,2,2,1184.15395422793,504.0,34181.407190433805,4,1,2,3,152.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06096881817619374,8764.463382162516,1,1,1_1,1_0_1,1_4_1,1_0_1 -8453,2,50.0,0.0,5,111,968.0,1968.0,0.0,67,37,0.0,20.703450096389155,1337.944652293501,2956.0,0.0,3569.2689088677794,50,0,0,0,0,0,0,0,0,2,7.0,2,,3,105248,1,1,0,0,2,,0.0,766.0,43,2.0,3.0,5.0,2.0,1.5,3,3,895.509515265935,968.0,54112.80070938529,1,1,2,3,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.054626631060463914,36075.20047292353,9,5,9,9_0,9_4,9_0_0 -8454,2,44.0,0.0,5,111,800.0,700.0,0.0,34,33,0.0,31.055175144583732,1105.7393820607444,1530.0,0.0,1269.5570305932142,31,2,2,1,2,1,2,2,2,2,10.0,1,,3,100261,2,1,3,0,1,,560.0,2100.0,43,2.0,1.0,8.0,8.0,3.6999999999999993,2,2,856.955795828138,800.0,132820.5605203749,1,1,2,3,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.01151930088237578,35897.448789290516,9,5,9,9_1,9_4,9_0_0 -8455,2,40.0,0.0,6,111,1102.0,0.0,0.0,85,38,0.0,0.0,1523.1559987886756,1102.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,5.0,2,,4,117297,2,2,0,0,1,,0.0,766.0,42,1.0,1.0,2.0,2.0,1.5,1,1,1091.50585901793,1102.0,43013.72903268505,6,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025619727114629332,28675.819355123367,8,4,8,8_0,8_4,8_0_0 -8456,2,51.0,0.0,5,111,1560.0,0.0,0.0,56,21,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,3,121356,2,1,0,0,1,408.0,0.0,547.0,43,2.0,2.0,4.0,3.0,1.8,2,2,998.06030650175,1560.0,29426.54100453024,1,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05301336639463798,16348.078335850134,4,2,4_0,4_0_0,4_4_0,4_0_0 -8457,2,37.0,0.0,7,111,486.0,775.0,0.0,34,38,0.0,0.0,671.7366746019022,1261.0,0.0,1405.580998156773,50,0,0,0,0,0,0,0,0,2,40.0,2,,5,126552,2,1,0,0,1,,0.0,934.0,43,2.0,0.0,3.0,2.0,1.5,3,2,949.321432406438,486.0,92345.16470367933,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013655289955314332,61563.44313578622,10,5,10,10_0,10_4,10_0_0 -8458,2,53.0,0.0,7,111,382.0,691.0,0.0,0,52,0.0,0.0,527.9905549340054,1073.0,0.0,1253.2341544855872,10,0,0,0,0,0,0,0,0,3,20.0,1,,5,100228,2,1,2,0,1,,190.0,,32,2.0,1.0,5.0,2.0,1.5,1,1,736.348771511432,382.0,43390.32086797797,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024729017406088676,28926.88057865198,8,4,8,8_1,8_4,8_0_0 -8459,2,54.0,0.0,7,111,660.0,1111.0,0.0,47,47,0.0,51.75862524097289,912.2349902001142,1821.0,0.0,2014.9683728415157,10,0,0,0,0,0,0,0,0,3,105.0,1,,5,122247,2,2,2,0,1,,258.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,645.226043570412,660.0,74330.4774671389,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0244986990808051,49553.651644759266,10,5,10,10_1,10_4,10_0_0 -8460,1,37.0,167.0,7,111,341.0,913.0,0.0,0,47,0.0,0.0,471.32141160339233,1254.0,0.0,1655.8650984737208,50,0,0,0,0,0,0,0,0,3,60.0,2,,5,107223,1,2,0,0,1,,0.0,537.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1048.40422210839,341.0,16337.346109808572,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07675665261490218,12567.189315237363,2,1,2_1,2_0_1,2_4_1,2_0_0 -8461,2,55.0,0.0,7,111,1607.0,0.0,0.0,77,74,0.0,0.0,2221.1539837145206,1607.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108113,2,1,2,0,1,,833.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,590.153531985218,1607.0,126972.54562302068,6,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01265627929340848,84648.36374868045,10,5,10,10_1,10_4,10_0_0 -8462,2,36.0,0.0,7,111,590.0,622.0,0.0,43,63,0.0,0.0,815.482794269799,1212.0,0.0,1128.0921043271132,50,0,0,0,0,0,0,0,0,0,,2,,5,127016,2,1,0,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,839.339052912689,590.0,49046.09151972191,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024711449219407076,32697.394346481273,8,4,8,8_0,8_4,8_0_0 -8463,2,58.0,0.0,7,111,450.0,0.0,0.0,0,54,0.0,0.0,621.9784024091688,450.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,75.0,2,,5,123007,2,1,0,1,1,516.0,0.0,607.0,22,3.0,1.0,4.0,4.0,2.3,2,2,641.693072251061,450.0,68849.08183166655,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006536034875530124,29934.383405072418,8,4,8,8_0,8_4,8_0_0 -8464,2,27.0,0.0,7,111,167.0,603.0,0.0,0,42,0.0,0.0,230.8230960051804,770.0,0.0,1093.6326992110116,31,2,2,2,2,1,2,2,2,0,,2,,5,123543,2,2,0,0,1,,0.0,391.0,12,1.0,0.0,1.0,1.0,1.0,2,2,928.002301011805,167.0,22633.517827939337,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.034020341241408535,22633.517827939337,6,3,6,6_0,6_4,6_0_0 -8465,2,75.0,0.0,5,112,1830.0,0.0,0.0,75,74,0.0,82.81380038555662,2529.378836463953,1910.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,104252,2,1,1,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,821.669820318341,1830.0,56571.99604143185,5,5,0,1,91.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03376228759192386,37714.664027621235,9,5,9,9_1,9_0,9_0_0 -8466,1,39.0,400.0,2,112,480.0,0.0,0.0,0,46,1941.6603401234008,72.46207533736204,663.4436292364467,1910.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,2,120206,2,1,2,0,1,,300.0,,32,1.0,0.0,6.0,3.0,1.6,2,2,746.744324947219,480.0,31776.306535063406,0,1,1,2,105.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06010767796101224,19860.191584414628,5,3,5,5_1,5_0,5_0_1 -8467,2,44.0,0.0,2,111,1200.0,0.0,0.0,56,64,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102292,2,1,1,0,1,,0.0,400.0,43,2.0,2.0,2.0,2.0,1.5,2,2,722.810086502358,1200.0,29750.9026149122,4,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040334910692710134,19833.935076608133,5,3,5,5_1,5_4,5_0_1 -8468,2,39.0,0.0,8,111,1560.0,0.0,0.0,37,42,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,108653,2,1,3,0,1,,1166.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,579.978944480059,1560.0,90160.26064353963,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01730252318333089,42933.45744930459,9,5,9,9_1,9_4,9_0_0 -8469,2,36.0,0.0,1,111,1350.0,1500.0,0.0,37,43,0.0,0.0,1865.9352072275062,2850.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,128345,1,1,3,0,2,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,563.635359285116,1350.0,81024.83656637592,1,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03517439986028564,45013.79809243106,10,5,10,10_1,10_4,10_1_0 -8470,2,76.0,0.0,1,111,378.0,0.0,0.0,0,78,0.0,0.0,522.4618580237018,378.0,0.0,0.0,60,2,1,2,2,1,2,2,2,0,,2,,1,102662,2,2,0,1,1,745.0,0.0,244.0,11,0.0,3.0,3.0,1.0,1.0,2,2,684.599330498789,378.0,19997.64360880511,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.018902227052069467,19997.64360880511,5,3,5,5_0,5_4,5_1_0 -8471,2,30.0,0.0,1,111,720.0,0.0,0.0,0,47,0.0,0.0,995.16544385467,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,126799,2,1,0,0,1,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1032.36653985264,720.0,22133.653555988258,0,4,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0325296498464983,22133.653555988258,6,3,6,6_0,6_4,6_1_0 -8472,1,28.0,218.0,2,111,600.0,0.0,0.0,0,55,0.0,0.0,829.3045365455583,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,100507,2,1,0,0,1,,0.0,410.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1002.50859989083,600.0,13568.66397965617,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.044219534133912865,13568.66397965617,3,2,3_1,3_0_1,3_4_1,3_0_1 -8473,2,25.0,0.0,2,111,0.0,0.0,0.0,22,55,0.0,0.0,0.0,507.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,48.0,1,,2,130077,2,1,1,0,1,,0.0,600.0,43,2.0,0.0,1.0,2.0,1.5,1,1,652.383853604955,0.0,10528.195836522274,1,1,2,3,24.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04815639905188872,7018.797224348183,1,1,1_0,1_1_0,1_4_0,1_0_1 -8474,2,82.0,0.0,1,111,0.0,0.0,0.0,72,75,0.0,0.0,0.0,2439.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,121690,2,1,2,0,1,,221.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,652.383853604955,0.0,37138.55351857311,5,5,0,1,135.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06567299393554055,24759.035679048742,7,4,7,7_1,7_4,7_1_0 -8475,2,50.0,0.0,6,111,2172.0,0.0,0.0,35,37,0.0,0.0,3002.0824222949213,2172.0,0.0,0.0,20,2,2,2,1,2,2,2,2,2,45.0,1,,4,122659,2,3,3,0,1,,400.0,1950.0,43,2.0,0.0,5.0,5.0,2.8,2,2,652.877252450009,2172.0,82754.0096608275,1,1,2,3,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.02624646236360121,29555.00345029554,8,4,8,8_1,8_4,8_0_0 -8476,2,35.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,363.0,0.0,0.0,41,2,1,2,2,1,2,2,2,0,,2,,2,118369,2,2,0,1,2,300.0,0.0,335.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1328.51051645837,0.0,16134.475922197475,0,4,2,3,19.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02249840662630958,16134.475922197475,4,2,4_0,4_0_0,4_4_0,4_0_1 -8477,2,44.0,0.0,2,111,0.0,0.0,0.0,90,37,0.0,0.0,0.0,250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,55.0,2,,2,113133,2,1,0,0,1,,709.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,828.970774686065,0.0,51444.79984823054,1,1,1,2,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004859577658724214,28580.444360128076,8,4,8,8_0,8_4,8_0_1 -8478,2,46.0,0.0,5,111,500.0,0.0,0.0,46,43,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,122385,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,906.329462075618,500.0,57562.15480655266,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008686262730787866,28781.07740327633,8,4,8,8_0,8_4,8_0_0 -8479,2,48.0,0.0,2,111,500.0,1000.0,0.0,37,38,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,3,40.0,1,,2,129466,2,1,1,0,1,,400.0,,43,2.0,0.0,9.0,5.0,2.8,2,2,490.012298137546,500.0,129132.77879145427,1,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011615950760437494,46118.84956837653,10,5,10,10_1,10_4,10_0_1 -8480,2,50.0,0.0,1,111,690.0,1776.0,0.0,53,37,0.0,103.51725048194578,953.7002170273921,2566.0,0.0,3221.047551905069,71,0,0,0,0,0,0,0,0,3,45.0,1,,1,103722,2,1,1,0,1,,700.0,,43,5.0,0.0,5.0,6.0,3.3,1,1,622.311275944584,690.0,112656.31572630405,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022777240525369554,34138.27749281941,9,5,9,9_1,9_4,9_1_0 -8481,2,52.0,0.0,2,111,550.0,1000.0,0.0,43,47,0.0,0.0,760.1958251667618,1550.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,3,45.0,1,,2,122762,1,1,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,778.382721300532,550.0,68066.09572716066,1,1,1,2,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022771983370591622,27226.438290864266,7,4,7,7_1,7_4,7_0_1 -8482,2,78.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,1084.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104240,2,1,2,0,1,,668.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,588.411600428868,0.0,61303.6356149017,5,5,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017682474931984313,40869.09040993447,9,5,9,9_1,9_4,9_0_1 -8483,2,60.0,0.0,2,111,300.0,1500.0,0.0,46,37,0.0,0.0,414.65226827277917,1800.0,0.0,2720.4793512711735,33,0,0,0,0,0,0,0,0,3,60.0,1,,2,114818,2,1,3,0,1,,230.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,845.592212418862,300.0,83386.44272087129,1,1,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021586242814378594,55590.96181391419,10,5,10,10_1,10_4,10_0_1 -8484,2,64.0,0.0,2,111,480.0,0.0,0.0,0,77,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104553,2,2,0,2,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,969.445976221584,480.0,33374.30157976408,0,5,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014382323442868378,33374.30157976408,8,4,8,8_0,8_4,8_0_1 -8485,2,40.0,0.0,5,111,2719.8,0.0,0.0,42,21,0.0,0.0,3759.2374641610163,5330.0,0.0,0.0,50,2,2,2,2,2,2,1,2,0,,1,,3,101679,1,2,3,0,2,,414.0,950.0,43,2.0,1.0,4.0,4.0,2.1,1,1,834.445379969566,2719.8,58981.971947143014,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.09036659548745685,28086.65330816334,8,4,8,8_1,8_4,8_0_0 -8486,2,60.0,0.0,6,111,2660.0,0.0,0.0,77,21,0.0,0.0,3676.583445351975,2910.0,430.0817510475479,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,107957,2,1,1,0,1,,772.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,709.779892116448,2660.0,59202.789159492735,6,1,0,1,156.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04915308959786403,39468.52610632849,9,5,9,9_1,9_4,9_0_0 -8487,2,33.0,0.0,5,111,160.0,0.0,0.0,0,38,0.0,0.0,221.1478764121489,160.0,0.0,0.0,12,0,0,0,0,0,0,0,0,4,120.0,2,,3,102834,2,1,0,0,1,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1350.80489572336,160.0,34643.296066274896,0,1,3,4,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004618498184869866,34643.296066274896,9,5,9,9_0,9_4,9_0_0 -8488,2,77.0,0.0,5,111,385.0,210.0,0.0,0,74,2449.479198309521,0.0,532.1370776167332,2235.0,0.0,380.86710917796427,50,0,0,0,0,0,0,0,0,0,,1,,3,111964,2,1,2,0,1,,420.0,,11,0.0,2.0,4.0,1.0,1.0,4,2,923.805078094786,385.0,22238.629245496384,0,5,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10050079864758828,22238.629245496384,6,3,6,6_1,6_4,6_0_0 -8489,2,81.0,0.0,1,111,366.0,1022.0,0.0,77,86,0.0,0.0,505.87576729279056,1388.0,0.0,1853.5532646660927,42,0,0,0,0,0,0,0,0,0,,1,,1,130087,1,1,2,0,2,,0.0,669.0,41,0.0,0.0,4.0,2.0,1.5,1,1,749.710922216839,366.0,33831.80111683305,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041026488516137535,22554.5340778887,6,3,6,6_1,6_4,6_1_0 -8490,2,79.0,0.0,2,111,273.0,0.0,0.0,77,77,3547.2640829177517,0.0,377.33356412822906,2903.0,438.68338606849886,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,130391,2,1,2,0,1,,613.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,918.452556753097,273.0,43819.49133171186,5,5,0,1,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06624905748048059,29212.99422114124,8,4,8,8_1,8_4,8_0_1 -8491,2,64.0,0.0,6,111,1397.0,0.0,0.0,0,75,0.0,828.1380038555662,1930.897395923575,2197.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,112885,2,2,2,0,1,,520.0,,31,0.0,0.0,5.0,2.0,1.5,1,1,731.368987903574,1397.0,38490.211920854235,0,5,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05707944670498558,25660.14128056949,7,4,7,7_1,7_4,7_0_0 -8492,2,57.0,0.0,6,111,1205.0,0.0,0.0,52,63,0.0,0.0,1665.5199442289963,1205.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,110235,2,2,2,0,1,,760.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,731.368987903574,1205.0,53712.314562874264,1,1,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02243433391032624,35808.20970858284,9,5,9,9_1,9_4,9_0_0 -8493,2,49.0,0.0,1,111,1310.0,2131.0,0.0,22,33,0.0,0.0,1810.6482381244691,3441.0,0.0,3864.894331705914,31,0,0,0,0,0,0,0,0,1,2.0,1,,1,100680,2,1,2,0,1,,804.0,,43,2.0,0.0,9.0,4.0,2.5,2,2,603.950872806306,1310.0,88677.1193621523,1,1,1,2,220.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03880369620428413,35470.84774486092,9,5,9,9_1,9_4,9_1_0 -8494,2,66.0,0.0,7,111,610.0,0.0,0.0,74,74,3365.0467279215554,0.0,843.1262788213177,2863.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,125126,2,1,2,0,1,,520.0,,41,0.0,4.0,8.0,2.0,1.5,3,2,663.499089087557,610.0,121235.03290386908,5,5,1,2,270.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0236152862041961,80823.35526924605,10,5,10,10_1,10_4,10_0_0 -8495,2,81.0,0.0,5,111,923.0,2026.0,0.0,71,72,0.0,0.0,1275.746812052584,2949.0,0.0,3674.4607771169317,70,0,0,0,0,0,0,0,0,0,,1,,3,122229,1,1,2,0,2,,209.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,757.845799110556,923.0,72852.75055524823,5,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04047891091996055,48568.500370165486,10,5,10,10_1,10_4,10_0_0 -8496,2,48.0,0.0,1,111,1058.6,1570.0,0.0,21,37,0.0,0.0,1463.16963731188,2629.0,0.0,2847.435054330495,70,0,0,0,0,0,0,0,0,0,,1,,1,129502,2,1,3,0,1,,348.0,,43,2.0,3.0,4.0,3.0,1.8,1,1,646.575348328174,1058.6,63442.51009917892,1,4,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04143909179964846,35245.83894398829,9,5,9,9_1,9_4,9_1_0 -8497,2,25.0,0.0,9,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,424.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,108973,2,1,0,0,1,,671.0,780.0,22,2.0,0.0,3.0,2.0,1.5,1,1,1484.27636439868,0.0,20966.21384209862,0,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020223012280292548,13977.475894732414,3,2,3_0,3_0_0,3_4_0,3_0_0 -8498,2,45.0,0.0,9,111,480.0,1330.0,0.0,55,64,0.0,0.0,663.4436292364467,1810.0,0.0,2412.158358127107,42,2,2,2,2,1,2,2,2,0,,1,2006.0,6,113965,2,2,1,0,1,,610.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,936.377507608789,480.0,31700.589754969442,1,1,1,2,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05709672955583614,11321.639198203373,2,1,2_0,2_1_0,2_4_0,2_0_0 -8499,2,36.0,0.0,2,111,195.0,0.0,0.0,0,62,0.0,0.0,269.52397437730644,195.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,114656,2,2,2,0,1,,142.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,895.778156125515,195.0,26631.01471822635,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0073222895208172965,26631.01471822635,7,4,7,7_1,7_4,7_0_1 -8500,2,52.0,0.0,6,112,983.0,0.0,0.0,78,46,0.0,258.79312620486445,1358.6772657071397,1278.0,77.41471518855863,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,122254,2,1,2,0,1,,400.0,,42,3.0,1.0,4.0,4.0,2.5,2,2,800.861482847039,983.0,98487.17153890287,5,1,0,1,93.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012976309300294855,39394.86861556115,9,5,9,9_1,9_0,9_0_0 -8501,0,47.0,0.0,2,112,1200.0,0.0,0.0,0,52,0.0,1345.724256265295,1658.6090730911167,2570.0,120.42289029331342,0.0,50,2,2,2,2,1,2,2,2,2,90.0,1,,2,130002,2,2,2,0,2,,840.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,989.017985259354,1200.0,22553.245528368145,0,1,5,0,80.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.11395255715047209,15035.497018912096,3,2,3_0,3_1_0,3_0_0,3_0_1 -8502,2,56.0,0.0,7,112,1670.0,0.0,0.0,52,63,0.0,0.0,2308.2309600518042,1730.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,1,5.0,1,,5,122410,2,1,3,0,1,,1000.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,612.23249445096,1670.0,36638.93518781742,1,1,0,1,96.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04721752941595397,24425.95679187828,7,4,7,7_1,7_0,7_0_0 -8503,2,46.0,0.0,7,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,1564.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,103728,2,2,5,0,1,,0.0,554.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,2,2,588.833068243675,0.0,42029.02890135144,6,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037212375372054095,14492.768586672913,3,2,3_0,3_1_0,3_4_0,3_0_0 -8504,1,53.0,352.0,5,111,1200.0,0.0,0.0,68,62,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,30.0,2,,3,114696,2,3,0,1,1,,0.0,515.0,43,2.0,0.0,5.0,7.0,3.8,3,2,834.900281847028,1200.0,38185.38779026601,1,1,2,3,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03142563345411139,10048.786260596318,2,1,2_1,2_0_1,2_4_1,2_0_0 -8505,2,46.0,0.0,5,111,0.0,0.0,0.0,52,48,0.0,0.0,0.0,625.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,113200,2,1,0,1,1,810.0,0.0,546.0,43,3.0,0.0,5.0,4.0,2.3,1,1,757.960795008795,0.0,36465.71676041946,1,1,2,3,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01713938612824378,15854.65946105194,3,2,3_0,3_0_0,3_4_0,3_0_0 -8506,2,52.0,0.0,5,111,400.0,200.0,0.0,67,62,0.0,0.0,552.8696910303722,600.0,0.0,362.73058016948977,33,1,2,2,1,1,2,2,2,0,,2,,3,125108,1,3,0,1,1,,0.0,525.0,43,2.0,4.0,3.0,2.0,1.5,2,2,835.612443862381,400.0,21833.614029383894,4,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.027480562731965218,14555.74268625593,3,2,3_0,3_0_0,3_4_0,3_0_0 -8507,2,31.0,0.0,2,111,514.0,2395.0,0.0,46,37,0.0,0.0,710.4375529740283,2909.0,0.0,4343.69869752964,50,1,2,1,2,1,1,2,2,2,6.0,1,,2,113693,1,3,3,0,2,,696.0,950.0,43,2.0,0.0,3.0,4.0,2.1,4,3,877.505582018582,514.0,59082.094877635776,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,0,0.04923657507447553,28134.330894112274,8,4,8,8_1,8_4,8_0_1 -8508,2,42.0,0.0,1,111,1500.0,0.0,0.0,37,53,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,70,2,2,2,1,1,2,2,2,2,30.0,1,,1,107841,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,454.954892098085,1500.0,68539.2522838056,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,1,0,0,0.021885269389704427,26361.250878386774,7,4,7,7_1,7_4,7_1_0 -8509,2,59.0,0.0,2,111,300.0,250.0,0.0,0,55,0.0,0.0,414.65226827277917,550.0,0.0,453.4132252118622,43,2,2,2,1,1,2,2,2,2,5.0,2,,2,109011,1,3,0,1,2,541.0,0.0,333.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1071.21323622533,300.0,18861.336888828457,0,1,2,3,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029160181128293414,18861.336888828457,5,3,5,5_0,5_4,5_0_1 -8510,2,64.0,0.0,6,111,3200.0,0.0,0.0,42,74,0.0,51.75862524097289,4422.957528242978,3370.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,107188,2,1,2,0,1,,250.0,,42,1.0,2.0,10.0,3.0,2.0,2,2,699.476991007124,3200.0,87054.33226630106,1,5,0,1,205.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038711456538327096,43527.16613315053,10,5,10,10_1,10_4,10_0_0 -8511,2,80.0,0.0,2,111,430.0,90.0,0.0,74,74,0.0,0.0,594.3349178576501,520.0,0.0,163.2287610762704,41,0,0,0,0,0,0,0,0,0,,2,,2,116412,2,2,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,738.365175004924,430.0,68453.94894495621,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007596347734710408,45635.96596330414,10,5,10,10_0,10_4,10_0_1 -8512,2,57.0,0.0,2,111,1400.0,0.0,0.0,0,52,0.0,258.79312620486445,1935.0439186063027,1700.0,86.01635020950958,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,2,108501,2,2,5,0,1,,140.0,1583.0,32,1.0,1.0,5.0,2.0,1.5,2,2,902.241267560966,1400.0,55608.64655733193,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030570785394809383,37072.431038221286,9,5,9,9_1,9_4,9_0_1 -8513,2,67.0,0.0,1,111,906.0,0.0,0.0,68,78,0.0,1242.2070057833494,1252.2498501837931,2664.0,959.942468338127,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,105388,2,2,2,0,1,,300.0,,42,3.0,1.0,5.0,4.0,2.5,4,4,555.404026094431,906.0,26437.234276999123,1,5,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10076697025443879,10574.89371079965,2,1,2_0,2_1_0,2_4_0,2_1_0 -8514,2,60.0,0.0,2,111,400.0,90.0,0.0,75,75,0.0,0.0,552.8696910303722,490.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,0,,2,,2,126506,1,2,0,1,2,,0.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,768.503952656453,400.0,73525.07350114542,7,7,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006664393201760845,36762.53675057271,9,5,9,9_0,9_4,9_0_1 -8515,2,53.0,0.0,2,111,225.0,100.0,0.0,45,45,0.0,0.0,310.9892012045844,325.0,0.0,181.36529008474488,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,125070,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,602.368820530024,225.0,71348.60347331148,1,1,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004555099668090474,47565.73564887432,10,5,10,10_0,10_4,10_0_1 -8516,2,73.0,0.0,2,111,240.0,0.0,0.0,77,75,0.0,0.0,331.72181461822333,240.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,118989,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,602.368820530024,240.0,39650.754100668826,5,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006052848311299878,26433.836067112552,7,4,7,7_0,7_4,7_0_1 -8517,2,73.0,0.0,5,111,0.0,0.0,0.0,77,72,0.0,0.0,0.0,2972.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,100912,1,3,2,0,1,,838.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1010.94639137732,0.0,59787.95919503912,5,5,0,1,123.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049709005626112766,39858.63946335941,9,5,9,9_1,9_4,9_0_0 -8518,2,53.0,0.0,8,111,0.0,0.0,0.0,46,31,0.0,0.0,0.0,942.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,114111,2,1,1,0,1,,349.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,486.805924146662,0.0,124009.31950127617,1,1,1,2,153.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007596203283659709,44289.04267902721,10,5,10,10_1,10_4,10_0_0 -8519,2,51.0,0.0,9,111,776.0,1172.0,0.0,37,33,0.0,0.0,1072.5672005989222,1948.0,0.0,2125.60119979321,71,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,123502,2,1,1,0,1,,570.0,,43,3.0,0.0,6.0,5.0,3.0,2,2,562.596117334288,776.0,120060.63626561171,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016225134736837593,40020.212088537235,9,5,9,9_1,9_4,9_0_0 -8520,2,41.0,0.0,5,111,750.0,0.0,0.0,46,34,0.0,0.0,1036.630670681948,1376.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,125673,1,2,2,1,1,471.0,0.0,700.0,43,2.0,0.0,3.0,4.0,2.1,2,2,926.599516658582,750.0,99439.94452405338,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013837497663397844,47352.35453526351,10,5,10,10_1,10_4,10_0_0 -8521,2,42.0,0.0,5,111,2400.0,0.0,0.0,0,37,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,44,2,2,2,2,1,2,2,2,2,45.0,1,,3,122235,2,2,3,0,1,,400.0,,32,1.0,0.0,8.0,3.0,1.6,2,2,802.646199879811,2400.0,79754.29099413757,0,1,1,2,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0.03009242474710752,49846.431871335975,10,5,10,10_1,10_4,10_0_0 -8522,2,48.0,0.0,1,111,377.0,1815.0,0.0,31,34,0.0,248.44140115666985,521.0796837961258,2432.0,0.0,3291.78001503812,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,118453,2,2,1,0,1,,600.0,,43,2.0,4.0,7.0,2.0,1.5,2,2,663.499089087557,377.0,139988.74547062622,1,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01737282516407939,93325.83031375082,10,5,10,10_1,10_4,10_1_0 -8523,2,67.0,0.0,1,111,1200.0,0.0,0.0,35,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,123484,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,745.8321749242,1200.0,53499.55638341677,1,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02243009253011233,35666.37092227785,9,5,9,9_0,9_4,9_1_0 -8524,2,70.0,0.0,1,111,2000.0,100.0,0.0,71,71,5974.339508072003,186.3310508675024,2764.3484551518613,6280.0,0.0,181.36529008474488,60,0,0,0,0,0,0,0,0,0,,1,,1,131489,1,2,1,0,1,,325.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,636.112550231814,2000.0,46240.346626333885,5,5,0,1,200.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13581213070802411,30826.897750889257,8,4,8,8_1,8_4,8_1_0 -8525,1,38.0,378.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,414.65226827277917,300.0,0.0,0.0,41,2,2,2,1,1,2,2,2,1,25.0,2,,2,103425,1,3,0,1,2,170.0,0.0,408.0,32,1.0,0.0,1.0,2.0,1.5,2,2,996.76192064485,300.0,11779.75059632098,0,1,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.02546743223016073,7853.167064213987,1,1,1_1,1_0_1,1_4_1,1_0_1 -8526,2,83.0,0.0,2,111,388.0,0.0,0.0,77,75,0.0,0.0,536.2836002994611,388.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,106717,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,602.368820530024,388.0,40314.47049407071,5,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009624335759465462,26876.313662713805,7,4,7,7_0,7_4,7_0_1 -8527,2,66.0,0.0,2,111,0.0,0.0,400.0,77,74,0.0,0.0,204.36533393501003,400.0,0.0,457.2983098610526,10,0,0,0,0,0,0,0,0,0,,2,,2,116951,2,2,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,619.719584727486,0.0,90724.51331270023,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004408951730843899,60483.00887513349,10,5,10,10_0,10_4,10_0_1 -8528,2,65.0,0.0,2,111,230.0,0.0,0.0,74,74,0.0,0.0,317.900072342464,230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113330,1,2,0,1,2,,0.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,616.811136498359,230.0,102561.58414477612,5,5,0,1,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0022425550650166594,68374.38942985075,10,5,10,10_0,10_4,10_0_1 -8529,2,55.0,0.0,7,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,1468.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,90.0,1,,5,119514,2,2,2,0,1,,329.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,703.832704366453,0.0,95363.75282661841,1,1,0,1,128.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015393689494046887,47681.876413309205,10,5,10,10_1,10_4,10_0_0 -8530,2,50.0,0.0,7,111,2200.0,0.0,0.0,65,45,0.0,621.1035028916747,3040.783300667047,3040.0,412.878481005646,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,5,133357,2,1,2,0,1,,500.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,582.991262382279,2200.0,70673.48605013939,1,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043014716973820546,35336.74302506969,9,5,9,9_1,9_4,9_0_0 -8531,2,64.0,0.0,8,111,368.0,1195.0,0.0,0,74,0.0,0.0,508.64011574794245,1563.0,0.0,2167.315216512701,70,0,0,0,0,0,0,0,0,0,,1,2002.0,6,100136,2,1,2,0,1,,230.0,,11,0.0,1.0,7.0,1.0,1.0,2,2,789.859973613682,368.0,33529.5431459257,0,5,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046615606815684454,33529.5431459257,8,4,8,8_1,8_4,8_0_0 -8532,2,70.0,0.0,2,111,415.0,914.0,0.0,0,22,0.0,0.0,573.6023044440112,1329.0,0.0,1657.6787513745683,50,0,0,0,0,0,0,0,0,0,,1,,2,112960,2,1,1,0,1,,400.0,,22,2.0,1.0,6.0,3.0,2.0,2,2,1521.66048689946,415.0,52452.480786462686,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025337219137650357,26226.240393231343,7,4,7,7_1,7_4,7_0_1 -8533,2,45.0,0.0,1,111,1132.0,0.0,0.0,43,47,0.0,310.55175144583734,1564.6212256159533,1462.0,51.60981012570575,0.0,33,2,2,2,1,2,2,2,1,3,75.0,1,,1,121053,2,2,1,0,1,,260.0,,43,2.0,0.0,5.0,2.0,1.5,5,3,568.194942626783,1132.0,52954.642969983724,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.027608532850060104,35303.09531332248,9,5,9,9_1,9_4,9_1_0 -8534,2,50.0,0.0,7,111,772.0,2170.0,0.0,54,21,0.0,0.0,1067.0385036886184,2942.0,0.0,3935.626794838964,71,0,0,0,0,0,0,0,0,0,,1,,5,113602,2,1,1,0,1,,656.0,,43,4.0,0.0,8.0,5.0,3.0,4,3,532.234144845645,772.0,57477.29007151541,1,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051185433348361634,19159.096690505135,5,3,5,5_1,5_4,5_0_0 -8535,2,57.0,0.0,2,111,250.0,0.0,0.0,0,56,0.0,0.0,345.54355689398267,250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,125771,2,1,0,1,1,603.0,0.0,304.0,12,1.0,0.0,2.0,1.0,1.0,2,2,286.605921972908,250.0,12691.687004349133,0,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019697932978833394,12691.687004349133,2,1,2_0,2_0_0,2_4_0,2_0_1 -8536,2,43.0,0.0,9,111,300.0,560.0,0.0,0,46,0.0,0.0,414.65226827277917,860.0,0.0,1015.6456244745714,50,1,2,2,2,1,2,2,2,2,20.0,2,2009.0,6,132510,2,1,0,1,1,,296.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,233.74192153784,300.0,41123.1786086277,0,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.020912780312647594,41123.1786086277,9,5,9,9_0,9_4,9_0_0 -8537,2,57.0,0.0,6,111,240.0,0.0,0.0,0,54,0.0,0.0,331.72181461822333,1225.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,112969,2,1,0,1,1,620.0,0.0,467.0,12,1.0,2.0,4.0,1.0,1.0,3,3,286.582528356621,240.0,21810.58278102302,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05616539513404702,21810.58278102302,6,3,6,6_0,6_4,6_0_0 -8538,2,35.0,0.0,5,111,860.0,1500.0,0.0,62,46,0.0,0.0,1188.6698357153002,2360.0,0.0,2720.4793512711735,43,2,2,2,2,1,2,2,2,2,25.0,1,,3,116999,1,3,3,0,2,,480.0,501.0,43,2.0,0.0,4.0,5.0,2.4,2,2,200.817916311322,860.0,50809.28995600341,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04644819878497736,21170.53748166809,5,3,5,5_1,5_4,5_0_0 -8539,1,39.0,335.0,1,111,206.0,685.0,0.0,0,56,0.0,0.0,284.72789088064167,891.0,0.0,1242.3522370805024,20,2,2,2,2,1,2,2,2,0,,2,,1,124727,1,3,0,1,1,,165.0,413.0,32,1.0,0.0,4.0,3.0,1.6,2,2,250.774673557175,206.0,14824.91138518508,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.06010153968882401,9265.569615740675,1,1,1_1,1_0_1,1_4_1,1_1_0 -8540,2,49.0,0.0,5,111,930.0,0.0,0.0,37,37,3733.962192545002,0.0,1285.4220316456153,3430.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,3,123900,2,1,2,0,1,,504.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,632.174817983324,930.0,258014.99229027744,1,1,0,1,150.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01329380114524938,129007.49614513872,10,5,10,10_1,10_4,10_0_0 -8541,2,66.0,0.0,1,111,215.0,0.0,0.0,0,74,0.0,0.0,297.16745892882506,1643.0,2456.626961983594,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,104686,2,1,2,0,1,,150.0,,11,0.0,2.0,5.0,1.0,1.0,5,3,658.805402662883,215.0,25305.25477456388,0,5,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06492722616851487,25305.25477456388,7,4,7,7_1,7_4,7_1_0 -8542,2,59.0,0.0,6,111,336.0,1264.0,0.0,42,38,0.0,0.0,464.41054046551267,1600.0,0.0,2292.4572666711756,44,0,0,0,0,0,0,0,0,2,40.0,1,,4,128043,2,2,2,0,1,,450.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,842.08705207727,336.0,60683.57767461742,1,1,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02636627669810648,40455.71844974495,9,5,9,9_1,9_4,9_0_0 -8543,2,47.0,0.0,6,111,670.0,1200.0,0.0,68,68,0.0,0.0,926.0567324758734,1870.0,0.0,2176.3834810169387,50,1,2,2,1,2,2,2,2,0,,1,,4,128434,2,1,3,0,1,,864.0,782.0,43,4.0,1.0,5.0,7.0,4.0,2,1,907.305449621754,670.0,60832.13395868853,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.030740332096025568,15208.033489672132,3,2,3_0,3_1_0,3_4_0,3_0_0 -8544,2,48.0,0.0,7,111,600.0,1140.0,0.0,46,64,0.0,0.0,829.3045365455583,1740.0,0.0,2067.564306966092,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,124874,2,1,1,0,1,,552.0,702.0,43,2.0,0.0,4.0,5.0,2.4,2,2,714.41872527064,600.0,50821.91655967911,1,1,2,3,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03423719760660254,21175.798566532965,5,3,5,5_1,5_4,5_0_0 -8545,2,54.0,0.0,9,111,500.0,1600.0,0.0,45,34,0.0,0.0,691.0871137879653,2100.0,0.0,2901.844641355918,31,1,2,2,1,2,2,2,2,2,20.0,1,2008.0,6,119447,2,2,1,0,1,,250.0,800.0,43,3.0,1.0,4.0,3.0,2.0,3,3,1076.54455574011,500.0,58701.6838843824,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03577410154257441,29350.8419421912,8,4,8,8_1,8_4,8_0_0 -8546,2,24.0,0.0,7,111,360.0,260.0,0.0,0,54,0.0,0.0,497.582721927335,620.0,0.0,471.5497542203367,10,0,0,0,0,0,0,0,0,2,20.0,2,,5,114608,2,1,0,0,1,,0.0,210.0,12,1.0,0.0,2.0,1.0,1.0,2,2,982.049406580585,360.0,18382.89676649968,0,1,2,3,22.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03372700221707524,18382.89676649968,4,2,4_0,4_0_0,4_4_0,4_0_0 -8547,2,70.0,0.0,5,111,360.0,1550.0,0.0,75,78,0.0,0.0,497.582721927335,1910.0,0.0,2811.161996313546,70,0,0,0,0,0,0,0,0,0,,1,,3,114585,1,3,3,0,2,,454.0,410.0,41,0.0,2.0,4.0,2.0,1.5,2,2,250.345653008913,360.0,35873.393926605575,5,5,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05324280172396637,23915.595951070383,6,3,6,6_1,6_4,6_0_0 -8548,2,65.0,0.0,5,111,360.0,1430.0,0.0,0,74,0.0,0.0,497.582721927335,1790.0,0.0,2593.523648211852,60,2,2,2,1,2,2,2,2,0,,1,,3,107399,1,3,3,0,2,,280.0,373.0,11,0.0,2.0,4.0,1.0,1.0,2,2,281.93943966479,360.0,24264.57067972072,0,5,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.07377010801579954,24264.57067972072,7,4,7,7_1,7_4,7_0_0 -8549,2,66.0,0.0,5,111,900.0,1870.0,0.0,78,64,0.0,0.0,1243.9568048183376,2770.0,0.0,3391.5309245847293,50,0,0,0,0,0,0,0,0,0,,1,,3,122613,1,3,3,0,2,,480.0,556.0,41,0.0,2.0,4.0,2.0,1.5,2,2,243.863966092176,900.0,46281.17771193197,5,5,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05985154520572741,30854.11847462131,8,4,8,8_1,8_4,8_0_0 -8550,2,42.0,0.0,7,111,1220.0,0.0,0.0,37,37,0.0,0.0,1686.2525576426353,1220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,5,125350,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,798.332274129323,1220.0,113509.92898865168,1,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010747958446189948,63061.07166036204,10,5,10,10_0,10_4,10_0_0 -8551,2,47.0,0.0,2,111,420.0,0.0,0.0,46,46,0.0,0.0,580.5131755818909,420.0,0.0,0.0,60,2,1,2,2,1,2,1,2,3,45.0,2,,2,129026,1,1,0,1,2,,0.0,850.0,43,2.0,0.0,2.0,3.0,1.8,1,1,1049.54984620456,420.0,58360.375409802786,1,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00719666378173182,32422.43078322377,8,4,8,8_0,8_4,8_0_1 -8552,2,83.0,0.0,1,111,358.0,1860.0,0.0,77,75,0.0,0.0,494.8183734721831,2218.0,0.0,3373.3943955762547,70,0,0,0,0,0,0,0,0,0,,1,,1,119328,2,1,1,0,1,,435.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,618.050206201032,358.0,75498.04374876649,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029378244652017733,50332.029165844324,10,5,10,10_1,10_4,10_1_0 -8553,2,33.0,0.0,2,111,700.0,0.0,0.0,37,42,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,1,2,2,1,2,2,2,2,2,20.0,2,,2,117401,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,850.629687991241,700.0,122353.68190866959,4,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005721119210147776,58263.65805174742,10,5,10,10_0,10_4,10_0_1 -8554,2,46.0,0.0,2,111,700.0,60.0,0.0,0,42,0.0,0.0,967.5219593031513,760.0,0.0,108.81917405084694,70,0,0,0,0,0,0,0,0,0,,2,,2,119968,1,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1205.3831849954,700.0,39574.89789276718,0,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01920409250478192,39574.89789276718,9,5,9,9_0,9_4,9_0_1 -8555,1,40.0,99.0,1,111,600.0,300.0,0.0,54,47,0.0,0.0,829.3045365455583,900.0,0.0,544.0958702542347,50,2,2,2,2,1,1,2,2,0,,2,,1,119021,2,3,0,0,1,,0.0,813.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1254.47560599076,600.0,23889.711537002066,1,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,0.0376731212767478,13272.061965001147,3,2,3_1,3_0_1,3_4_1,3_1_0 -8556,2,66.0,0.0,5,111,0.0,0.0,2400.0,74,74,0.0,0.0,1226.19200361006,2400.0,0.0,2743.7898591663156,50,0,0,0,0,0,0,0,0,0,,2,,3,100982,2,1,0,0,2,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,969.814140115488,0.0,58368.5623157989,7,5,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.041118024922645394,38912.37487719927,9,5,9,9_0,9_4,9_0_0 -8557,2,82.0,0.0,1,111,311.0,1343.0,0.0,74,75,0.0,0.0,429.8561847761144,1654.0,0.0,2435.735845838124,42,0,0,0,0,0,0,0,0,0,,1,,1,106731,2,1,1,0,1,,201.0,,41,0.0,0.0,4.0,2.0,1.5,3,2,603.06648666268,311.0,57140.70064346715,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028946092389035144,38093.8004289781,9,5,9,9_1,9_4,9_1_0 -8558,2,55.0,0.0,2,111,120.0,2300.0,0.0,0,78,0.0,0.0,165.86090730911167,2420.0,0.0,4171.401671949133,12,0,0,0,0,0,0,0,0,0,,2,,2,125255,2,2,0,0,2,,0.0,373.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1244.36631554786,120.0,24940.614480458997,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09703048823821374,24940.614480458997,7,4,7,7_0,7_4,7_0_1 -8559,2,40.0,0.0,2,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,1634.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,114965,2,2,3,0,1,,0.0,1900.0,42,1.0,1.0,7.0,4.0,2.1,1,1,1050.44968017432,0.0,93392.89449888562,6,1,2,3,92.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01749597770545057,44472.80690423125,10,5,10,10_1,10_4,10_0_1 -8560,2,34.0,0.0,7,111,900.0,0.0,0.0,42,38,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,5,102015,1,1,0,0,1,,0.0,960.0,43,2.0,0.0,2.0,2.0,1.5,1,1,838.601556829979,900.0,79411.23707869966,1,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01133340863470071,52940.82471913311,10,5,10,10_0,10_4,10_0_0 -8561,2,56.0,0.0,7,111,900.0,0.0,0.0,47,47,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,2,,5,121616,1,1,0,0,1,,0.0,900.0,43,2.0,0.0,2.0,2.0,1.5,2,2,911.778248240408,900.0,81513.90982931045,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011041060377113473,54342.60655287363,10,5,10,10_0,10_4,10_0_0 -8562,2,77.0,0.0,7,111,416.0,0.0,0.0,0,75,0.0,0.0,574.9844786715871,416.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,106682,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,5,3,992.604014967847,416.0,16147.795241033615,0,5,0,1,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02576203090208196,16147.795241033615,4,2,4_0,4_0_0,4_4_0,4_0_0 -8563,1,69.0,550.0,2,111,120.0,200.0,0.0,56,86,0.0,0.0,165.86090730911167,320.0,0.0,362.73058016948977,20,2,1,2,1,2,2,2,2,0,,2,,2,121307,1,2,0,1,2,,1200.0,715.0,42,1.0,3.0,4.0,5.0,2.4,1,1,199.05654153658,120.0,26111.750179487884,4,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01225501920784216,10879.895908119952,2,1,2_1,2_0_1,2_4_1,2_0_1 -8564,1,46.0,368.0,2,111,0.0,0.0,0.0,85,52,0.0,0.0,0.0,893.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,100278,2,1,0,1,1,43.0,0.0,361.0,42,1.0,0.0,4.0,4.0,2.1,2,2,229.199752522908,0.0,16014.260121784711,6,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05576280097918626,7625.838153230815,1,1,1_1,1_0_1,1_4_1,1_0_1 -8565,1,32.0,391.0,2,111,240.0,120.0,0.0,0,85,0.0,0.0,331.72181461822333,360.0,0.0,217.63834810169388,70,0,0,0,0,0,0,0,0,0,,2,,2,111913,2,2,0,1,1,1020.0,0.0,348.0,31,0.0,0.0,4.0,4.0,1.9,1,1,235.603480343325,240.0,2240.052155511172,0,6,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1607105437765351,1178.9748186900904,1,1,1_1,1_0_1,1_4_1,1_0_1 -8566,2,75.0,0.0,2,111,299.0,189.0,0.0,86,78,0.0,0.0,413.2700940452032,488.0,0.0,342.78039826016783,44,2,1,2,2,1,2,2,2,0,,2,,2,131283,2,1,0,1,1,689.0,0.0,304.0,41,2.0,0.0,3.0,4.0,2.5,1,1,223.07789739321,299.0,21334.968329365332,6,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02287324698430977,8533.987331746133,1,1,1_0,1_0_0,1_4_0,1_0_1 -8567,1,28.0,546.0,7,111,540.0,0.0,0.0,81,56,0.0,0.0,746.3740828910024,540.0,0.0,0.0,33,2,1,1,1,2,2,2,2,0,,2,,5,122106,1,2,0,1,2,,1038.0,800.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,3,2,307.215150034911,540.0,21630.90182932382,4,4,3,4,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.02496428508902721,8011.445121971786,1,1,1_1,1_0_1,1_4_1,1_0_0 -8568,2,24.0,0.0,2,111,530.0,250.0,0.0,0,68,0.0,0.0,732.5523406152432,780.0,0.0,453.4132252118622,12,2,2,2,2,1,2,2,2,0,,2,,2,101610,2,1,0,1,1,400.0,0.0,330.0,22,2.0,6.0,4.0,3.0,2.0,4,3,244.547818964266,530.0,21473.23369478458,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03632429149175825,10736.61684739229,2,1,2_0,2_0_0,2_4_0,2_0_1 -8569,2,41.0,0.0,2,111,350.0,250.0,0.0,0,52,0.0,0.0,483.76097965157567,600.0,0.0,453.4132252118622,41,2,2,2,2,1,2,2,2,2,35.0,2,,2,107879,2,2,0,1,1,540.0,0.0,301.0,32,1.0,0.0,3.0,2.0,1.3,1,1,881.635948050246,350.0,34676.026728278106,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01730302046141588,26673.86671406008,7,4,7,7_0,7_4,7_0_1 -8570,2,48.0,0.0,2,111,480.0,170.0,0.0,77,56,0.0,0.0,663.4436292364467,650.0,0.0,308.32099314406634,31,2,2,2,2,1,2,2,2,0,,2,,2,128978,1,2,0,1,2,502.0,0.0,91.0,42,1.0,2.0,3.0,2.0,1.5,1,1,303.756302647223,480.0,45335.12977474208,7,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01433766712987639,30223.419849828057,8,4,8,8_0,8_4,8_0_1 -8571,2,52.0,0.0,2,111,830.0,180.0,0.0,68,62,0.0,0.0,1147.2046088880224,1010.0,0.0,326.4575221525408,71,2,2,2,1,2,2,2,2,3,150.0,2,,2,133272,1,3,0,1,2,,0.0,,43,2.0,4.0,3.0,3.0,1.8,1,1,201.455149457371,830.0,42802.457503617305,1,1,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02359677595415271,23779.14305756517,6,3,6,6_0,6_4,6_0_1 -8572,2,27.0,0.0,9,111,677.0,0.0,0.0,81,43,0.0,0.0,935.731952068905,677.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,2008.0,6,101292,2,1,0,0,1,,0.0,88.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1353.57343690657,677.0,36917.108772689666,4,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01833838083498097,24611.405848459777,7,4,7,7_0,7_4,7_0_0 -8573,1,49.0,348.0,6,111,300.0,300.0,0.0,85,34,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,50,2,1,2,2,2,2,2,1,2,5.0,2,,4,117325,2,1,0,1,1,1250.0,0.0,330.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,1,239.043451154984,300.0,37430.59635397452,7,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.016029667129155684,13863.183834805379,3,2,3_1,3_0_1,3_4_1,3_0_0 -8574,2,44.0,0.0,7,111,251.0,560.0,0.0,52,62,0.0,0.0,346.92573112155856,811.0,0.0,1015.6456244745714,10,2,2,2,2,1,2,2,2,3,90.0,2,,5,115221,1,1,0,0,1,,0.0,444.0,43,2.0,0.0,3.0,3.0,2.0,1,1,770.010503939667,251.0,38563.82576079708,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.021030071161260152,19281.91288039854,5,3,5,5_0,5_4,5_0_0 -8575,2,34.0,0.0,2,111,530.0,2500.0,0.0,54,46,0.0,0.0,732.5523406152432,3030.0,0.0,4534.132252118622,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,131264,2,2,3,0,1,,420.0,600.0,43,2.0,0.0,4.0,4.0,2.1,1,1,760.172610549635,530.0,45561.27117689995,1,1,2,3,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0665038512256489,21695.843417571403,6,3,6,6_1,6_4,6_0_1 -8576,2,64.0,0.0,6,111,238.0,0.0,0.0,0,45,0.0,0.0,328.95746616307144,238.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,4,105588,2,1,0,1,1,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,825.155789905325,238.0,25407.711363693335,0,1,0,1,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009367234875790232,25407.711363693335,7,4,7,7_0,7_4,7_0_0 -8577,1,26.0,45.0,5,111,228.0,0.0,0.0,0,52,0.0,0.0,315.13572388731217,240.0,20.6439240502823,0.0,41,0,0,0,0,0,0,0,0,1,5.0,2,,3,114090,2,1,0,1,1,330.0,0.0,470.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1375.15316550005,228.0,11448.850508487501,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020962803193392925,11448.850508487501,2,1,2_1,2_0_1,2_4_1,2_0_0 -8578,2,71.0,0.0,1,111,150.0,410.0,0.0,0,77,0.0,0.0,207.32613413638958,560.0,0.0,743.5976893474541,42,0,0,0,0,0,0,0,0,0,,2,,1,103804,2,2,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,2,2,1052.63841712481,150.0,23198.003469455994,0,5,0,1,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02414000845966475,23198.003469455994,6,3,6,6_0,6_4,6_1_0 -8579,2,75.0,0.0,7,111,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,106358,2,2,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1034.46794074629,1000.0,21692.305519492238,0,5,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04609929539768936,21692.305519492238,6,3,6,6_0,6_4,6_0_0 -8580,2,44.0,0.0,2,111,600.0,1116.0,0.0,85,37,0.0,0.0,829.3045365455583,1716.0,0.0,2024.036637345753,70,0,0,0,0,0,0,0,0,1,5.0,1,,2,113005,2,1,1,0,1,,720.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,835.865083968622,600.0,20683.853266877504,6,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08296326500961745,7660.686395139817,1,1,1_0,1_1_0,1_4_0,1_0_1 -8581,2,70.0,0.0,7,111,900.0,0.0,0.0,0,75,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,111531,2,1,0,0,1,,80.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,865.925584898937,900.0,18297.398680076552,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04918731977895749,18297.398680076552,4,2,4_0,4_0_0,4_4_0,4_0_0 -8582,2,43.0,0.0,2,111,389.0,761.0,0.0,0,54,0.0,0.0,537.665774527037,1150.0,0.0,1380.1898575449086,31,0,0,0,0,0,0,0,0,2,60.0,2,,2,131971,2,2,0,0,1,,145.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1268.85208169053,389.0,33951.024308030916,0,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03387232118731611,33951.024308030916,9,5,9,9_0,9_4,9_0_1 -8583,2,75.0,0.0,2,111,352.0,792.0,0.0,78,78,0.0,0.0,486.52532810672756,1144.0,0.0,1436.4130974711795,12,0,0,0,0,0,0,0,0,0,,2,,2,101350,2,1,0,0,1,,190.0,235.0,41,0.0,1.0,3.0,3.0,2.0,2,2,1032.00118600145,352.0,37392.163349142786,5,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030594645977503363,18696.081674571393,5,3,5,5_0,5_4,5_0_1 -8584,2,27.0,0.0,6,111,0.0,0.0,0.0,47,34,0.0,0.0,0.0,612.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,130346,2,2,3,0,1,,399.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,663.194126469912,0.0,47343.5186476533,1,1,1,2,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012926795841997168,26301.954804251833,7,4,7,7_1,7_4,7_0_0 -8585,2,49.0,0.0,5,111,785.0,1100.0,0.0,55,63,0.0,0.0,1085.0067686471054,1885.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,118292,2,1,2,0,1,,300.0,,43,2.0,1.0,5.0,4.0,2.3,3,3,716.616173343004,785.0,55198.2397143249,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03414963973046426,23999.234658402132,6,3,6,6_1,6_4,6_0_0 -8586,2,37.0,0.0,2,111,770.0,1370.0,0.0,43,47,0.0,0.0,1064.2741552334664,2140.0,0.0,2484.704474161005,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,102354,2,1,3,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,681.13880422407,770.0,59675.57476616584,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035860567885360566,28416.940364840873,8,4,8,8_1,8_4,8_0_1 -8587,1,51.0,262.0,2,111,600.0,0.0,0.0,0,52,0.0,0.0,829.3045365455583,740.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,113544,1,2,3,1,1,936.0,0.0,544.0,32,4.0,1.0,4.0,5.0,3.0,3,2,656.705829835571,600.0,35460.74155704981,0,1,2,3,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.020868147915335502,11820.24718568327,2,1,2_1,2_1_1,2_4_1,2_0_1 -8588,1,82.0,71.0,2,111,158.0,150.0,0.0,0,86,0.0,0.0,218.38352795699703,308.0,0.0,272.04793512711734,43,1,2,2,1,2,2,2,2,0,,2,,2,122827,2,2,0,1,1,575.0,0.0,278.0,11,0.0,4.0,3.0,1.0,1.0,1,1,264.24529189766,158.0,11840.784929451267,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.026011789069314135,11840.784929451267,2,1,2_1,2_0_1,2_4_1,2_0_1 -8589,2,93.0,0.0,2,111,878.0,0.0,0.0,0,77,0.0,1708.0346329521053,1213.5489718116671,2678.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,103147,2,1,2,0,1,,374.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,848.591871091453,878.0,27872.10704058902,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09608172055668907,27872.10704058902,7,4,7,7_1,7_4,7_0_1 -8590,2,76.0,0.0,2,111,332.0,144.0,0.0,0,77,0.0,0.0,458.88184355520895,476.0,0.0,261.1660177220326,31,2,2,2,1,1,2,2,2,0,,2,,2,112733,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,3,2,1011.34606518429,332.0,16489.955455859363,0,5,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02886605735680525,16489.955455859363,4,2,4_0,4_0_0,4_4_0,4_0_1 -8591,2,71.0,0.0,2,111,150.0,100.0,0.0,77,74,0.0,0.0,207.32613413638958,250.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,2,110263,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,948.438490642046,150.0,50037.36924808173,5,5,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004996265866027402,33358.24616538782,8,4,8,8_0,8_4,8_0_1 -8592,0,87.0,0.0,2,111,342.0,1527.0,0.0,0,77,0.0,0.0,472.7035858309682,1869.0,0.0,2769.4479795940547,42,0,0,0,0,0,0,0,0,0,,1,,2,109589,2,1,3,0,2,,92.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,942.831921659865,342.0,29702.371528015505,0,5,0,1,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06292426846244062,29702.371528015505,8,4,8,8_1,8_4,8_0_1 -8593,2,82.0,0.0,5,111,0.0,0.0,1420.0,72,75,0.0,0.0,725.4969354692855,1420.0,0.0,1623.4090000067367,70,2,2,2,1,1,2,2,2,0,,2,,3,128413,2,1,0,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,773.749621858202,0.0,63584.22500385872,5,5,0,1,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.022332583276965707,42389.48333590582,9,5,9,9_0,9_4,9_0_0 -8594,2,50.0,0.0,1,111,520.0,0.0,0.0,37,31,2987.1697540360015,0.0,718.7305983394839,2520.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,1.0,1,,1,108583,2,1,3,0,1,,800.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,595.697888584269,520.0,75756.24367157926,1,1,0,1,70.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03326458490899813,37878.12183578963,9,5,9,9_1,9_4,9_1_0 -8595,2,80.0,0.0,5,111,232.0,75.0,0.0,0,77,0.0,0.0,320.6644207976159,307.0,0.0,136.02396756355867,70,0,0,0,0,0,0,0,0,0,,2,,3,101057,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,825.070516670401,232.0,45738.23950860063,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006712107927596812,45738.23950860063,10,5,10,10_0,10_4,10_0_0 -8596,2,59.0,0.0,2,111,300.0,0.0,0.0,37,46,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,107671,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,2.0,1,1,749.213508180625,300.0,72837.44628683571,1,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004118760545483602,36418.723143417854,9,5,9,9_0,9_4,9_0_1 -8597,2,46.0,0.0,2,111,60.0,1.0,0.0,46,22,0.0,0.0,82.93045365455583,61.0,0.0,1.813652900847449,50,0,0,0,0,0,0,0,0,1,3.0,2,,2,114919,1,3,0,1,2,,0.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,2,2,778.586783190697,60.0,174058.2651540372,1,1,1,2,113.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0003504573594710744,60020.09143242663,10,5,10,10_0,10_4,10_0_1 -8598,2,70.0,0.0,2,111,450.0,90.0,0.0,74,74,0.0,0.0,621.9784024091688,540.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,0,,2,,2,103777,1,2,0,1,2,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,746.370065285761,450.0,118118.53119413942,5,5,0,1,114.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0045716789274365165,78745.68746275961,10,5,10,10_0,10_4,10_0_1 -8599,2,48.0,0.0,2,111,200.0,480.0,0.0,53,37,0.0,0.0,276.4348455151861,680.0,0.0,870.5533924067755,50,2,2,2,1,1,2,2,2,3,90.0,2,,2,133579,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,871.417060814034,200.0,69999.77021145767,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.009714317603412598,38888.761228587595,9,5,9,9_0,9_4,9_0_1 -8600,2,64.0,0.0,2,111,180.0,60.0,0.0,0,77,0.0,0.0,248.7913609636675,240.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,111831,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,856.19292573572,180.0,51120.9137754022,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004694751761567309,51120.9137754022,10,5,10,10_0,10_4,10_0_1 -8601,2,53.0,0.0,2,111,600.0,150.0,0.0,65,56,0.0,0.0,829.3045365455583,750.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,0,,2,,2,103538,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,861.157826539876,600.0,32058.08521259064,1,1,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023395034202025315,12823.234085036256,2,1,2_0,2_0_0,2_4_0,2_0_1 -8602,0,37.0,0.0,6,111,890.0,0.0,0.0,0,56,0.0,0.0,1230.1350625425782,890.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,111120,2,3,0,0,1,,0.0,,32,1.0,0.0,1.0,2.0,1.3,2,2,1214.64664905932,890.0,17337.0,0,4,5,0,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0513352944569418,13336.153846153846,3,2,3_0,3_0_0,3_4_0,3_0_0 -8603,0,64.0,0.0,6,111,0.0,0.0,0.0,77,53,0.0,0.0,0.0,436.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,105903,2,1,0,0,1,436.0,0.0,,42,1.0,2.0,4.0,3.0,2.0,1,1,946.370040072039,0.0,67342.79735896,5,1,5,0,51.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006474337525303141,33671.39867948,9,5,9,9_0,9_4,9_0_0 -8604,2,92.0,0.0,6,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,376.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,116470,1,2,0,0,1,,0.0,689.0,11,0.0,2.0,1.0,1.0,1.0,1,1,1078.9466304776,0.0,31932.619687967457,0,5,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011774793414198983,31932.619687967457,8,4,8,8_0,8_4,8_0_0 -8605,2,70.0,0.0,2,111,540.0,1100.0,0.0,0,75,0.0,0.0,746.3740828910024,1790.0,258.04905062852873,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,1,,2,131504,2,1,2,0,1,,183.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,976.227199823011,540.0,27675.712789481193,0,5,0,1,114.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06467764764058152,27675.712789481193,7,4,7,7_1,7_4,7_0_1 -8606,2,50.0,0.0,2,111,420.0,1920.0,0.0,33,22,0.0,310.55175144583734,580.5131755818909,2640.0,0.0,3482.213569627102,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,123771,2,2,3,0,1,,240.0,,43,3.0,1.0,8.0,6.0,3.5,1,1,728.037081172038,420.0,97750.48903457484,1,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027007537517957772,27928.71115273567,7,4,7,7_1,7_4,7_0_1 -8607,1,29.0,315.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,724.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,15.0,2,,5,114412,1,1,0,0,1,,0.0,466.0,32,1.0,0.0,3.0,3.0,1.6,1,1,707.782525474425,0.0,16753.42218090472,0,1,2,3,71.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04321505135978747,10470.88886306545,2,1,2_1,2_0_1,2_4_1,2_0_0 -8608,2,40.0,0.0,5,111,720.0,900.0,0.0,37,38,0.0,82.81380038555662,995.16544385467,1700.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,2,20.0,1,,3,108861,2,1,2,0,1,,1000.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,699.831511672812,720.0,88157.9936108425,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019283560461962668,41979.99695754405,9,5,9,9_1,9_4,9_0_0 -8609,2,52.0,0.0,2,111,190.0,590.0,0.0,0,52,0.0,0.0,262.6131032394268,780.0,0.0,1070.0552114999948,50,2,2,2,2,1,2,2,2,3,30.0,2,,2,109548,1,3,0,0,2,,90.0,662.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1517.09546462101,190.0,26348.512903202816,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,0.029603188721333357,26348.512903202816,7,4,7,7_0,7_4,7_0_1 -8610,2,53.0,0.0,9,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1011.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,80.0,1,2006.0,6,118058,2,1,1,0,1,,368.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,1139.26935592061,0.0,48865.581866257824,0,1,1,2,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02068940881062353,24432.790933128912,7,4,7,7_1,7_4,7_0_0 -8611,2,73.0,0.0,5,112,2118.0,0.0,0.0,75,74,0.0,0.0,2927.445014005821,2118.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,113530,2,1,1,0,1,,225.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,817.813585671694,2118.0,48633.36819751023,5,5,0,1,138.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0435503457502339,32422.24546500682,8,4,8,8_1,8_0,8_0_0 -8612,2,43.0,0.0,7,112,440.0,0.0,0.0,63,42,3136.5282417378016,103.51725048194578,608.1566601334094,2710.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,101023,2,1,1,0,1,,335.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,686.395311547651,440.0,62693.58489696639,1,1,0,1,125.0,10,0,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04322611323716362,27258.08038998539,7,4,7,7_1,7_0,7_0_0 -8613,2,46.0,0.0,1,112,1500.0,0.0,0.0,42,37,0.0,103.51725048194578,2073.261341363896,6600.0,8601.635020950958,0.0,50,2,2,1,1,2,2,2,2,2,45.0,1,,1,132763,2,1,3,0,1,,1500.0,,43,2.0,0.0,8.0,5.0,2.4,3,2,512.361247361478,1500.0,150974.9497133703,1,1,1,2,180.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04371586155537899,62906.229047237626,10,5,10,10_1,10_0,10_1_0 -8614,2,59.0,0.0,7,112,2000.0,0.0,0.0,46,38,0.0,0.0,2764.3484551518613,2080.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,109224,2,1,2,0,1,,246.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,817.813585671694,2000.0,87088.0,1,1,0,1,260.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023883887562006247,58058.666666666664,10,5,10,10_1,10_1,10_0_0 -8615,2,34.0,0.0,2,112,1600.0,0.0,0.0,0,37,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,,2,109673,2,2,2,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1092.70617258891,1600.0,33322.30635015929,0,1,1,2,110.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04801588411038516,33322.30635015929,8,4,8,8_1,8_1,8_0_1 -8617,2,60.0,0.0,7,112,2317.0,0.0,0.0,0,46,0.0,0.0,3202.497685293431,2317.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,60.0,1,,5,105645,2,1,2,0,1,,300.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,725.409329453428,2317.0,38940.52692572746,0,1,0,1,120.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.0595009924857794,38940.52692572746,9,5,9,9_1,9_1,9_0_0 -8618,2,55.0,0.0,6,112,2943.0,0.0,0.0,43,38,0.0,41.40690019277831,4067.7387517559637,2983.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,123458,2,1,2,0,1,,400.0,,43,2.0,3.0,7.0,2.0,1.5,1,1,817.813585671694,2943.0,178435.546119169,1,1,0,1,164.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016717521059440642,118957.03074611268,10,5,10,10_1,10_1,10_0_0 -8619,2,39.0,0.0,9,112,1100.0,0.0,0.0,46,33,0.0,341.60692659042104,1520.3916503335236,1430.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,121386,2,1,1,0,1,,425.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,992.220286681401,1100.0,49954.24594342932,1,1,1,2,134.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028626195291175115,23787.73616353777,6,3,6,6_1,6_1,6_0_0 -8620,2,66.0,0.0,5,112,360.0,2000.0,0.0,0,31,0.0,0.0,497.582721927335,2360.0,0.0,3627.3058016948976,41,0,0,0,0,0,0,0,0,2,45.0,1,,3,100809,2,2,2,0,1,,360.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1006.97103031309,360.0,66974.13001121371,0,5,0,1,140.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035237486468355124,66974.13001121371,10,5,10,10_1,10_1,10_0_0 -8621,2,73.0,0.0,2,112,246.0,0.0,0.0,0,77,2398.697312490909,450.3000395964641,340.0148599836789,2319.0,55.050464134086134,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,128343,1,2,2,0,2,,155.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,957.119123164753,246.0,13578.54799695295,0,5,0,1,100.0,10,2,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17078409271156147,13578.54799695295,3,2,3_0,3_1_0,3_1_0,3_0_1 -8622,2,47.0,0.0,9,111,0.0,0.0,0.0,90,38,0.0,0.0,0.0,3918.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,1,2004.0,6,116824,2,1,1,0,1,,995.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,557.281715701203,0.0,107958.99211368606,4,1,1,2,156.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03629155777847718,43183.59684547443,9,5,9,9_1,9_4,9_0_0 -8623,2,46.0,0.0,6,111,250.0,0.0,0.0,90,37,0.0,0.0,345.54355689398267,250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,122647,2,1,2,0,1,,595.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,621.523172096421,250.0,111506.15220082573,4,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0022420287586441233,48480.935739489454,10,5,10,10_1,10_4,10_0_0 -8624,2,46.0,0.0,9,111,900.0,0.0,0.0,46,37,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,2009.0,6,125505,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,1,1,1252.38157815483,900.0,91112.23853808228,1,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009877926549064274,45556.11926904114,10,5,10,10_0,10_4,10_0_0 -8625,2,34.0,0.0,2,111,1700.0,0.0,0.0,48,46,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,122295,1,3,0,0,1,,0.0,750.0,43,2.0,0.0,2.0,2.0,1.5,3,2,963.731273466329,1700.0,57186.43161665974,1,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029727331325648764,38124.287744439825,9,5,9,9_0,9_4,9_0_1 -8626,2,41.0,0.0,2,111,0.0,0.0,0.0,35,21,0.0,0.0,0.0,758.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,117686,2,1,0,0,1,,0.0,850.0,43,2.0,1.0,3.0,3.0,2.0,1,1,822.42860392858,0.0,68457.88826576389,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011072500470030996,34228.944132881945,9,5,9,9_0,9_4,9_0_1 -8627,2,35.0,0.0,5,111,575.0,0.0,0.0,47,37,0.0,414.0690019277831,794.7501808561601,975.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,1,,3,120517,2,1,2,0,1,,256.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,760.127799443106,575.0,77472.65142515903,4,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012585086247395058,43040.36190286613,9,5,9,9_1,9_4,9_0_0 -8628,2,50.0,0.0,1,111,720.0,1500.0,0.0,52,47,0.0,0.0,995.16544385467,2220.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,106660,2,1,2,0,1,,765.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,824.230956294362,720.0,88568.49119257803,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025065347395079415,35427.396477031216,9,5,9,9_1,9_4,9_1_0 -8629,2,82.0,0.0,6,111,1173.0,0.0,0.0,77,78,0.0,0.0,1621.2903689465666,1173.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,4,116023,2,1,0,0,1,,311.0,595.0,41,0.0,5.0,3.0,2.0,1.5,2,2,961.325156796938,1173.0,21528.623763042444,5,5,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.05448560079412297,14352.415842028297,3,2,3_0,3_0_0,3_4_0,3_0_0 -8630,2,74.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1631.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,105653,1,2,0,0,2,,274.0,,11,0.0,0.0,2.0,1.0,1.0,4,4,992.715611655904,0.0,29189.88609649414,0,5,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05587551779436,29189.88609649414,8,4,8,8_0,8_4,8_1_0 -8631,2,61.0,0.0,1,111,350.0,200.0,0.0,45,37,0.0,0.0,483.76097965157567,550.0,0.0,362.73058016948977,43,0,0,0,0,0,0,0,0,3,1.0,2,,1,122075,2,2,0,3,1,,413.0,,43,3.0,0.0,5.0,4.0,2.5,3,2,763.14617479917,350.0,114604.09546647445,1,1,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004799130412934444,45841.63818658978,10,5,10,10_0,10_4,10_1_0 -8632,2,54.0,0.0,8,111,1021.0,1277.0,0.0,90,38,0.0,0.0,1411.199886355025,2298.0,0.0,2316.034754382192,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,103197,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,5.0,3.0,3,3,490.872516318568,1021.0,127535.6688606487,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01801848863560593,42511.889620216236,9,5,9,9_1,9_4,9_0_0 -8633,2,64.0,0.0,5,112,1830.0,1370.0,0.0,52,74,0.0,0.0,2529.378836463953,3200.0,0.0,2484.704474161005,41,0,0,0,0,0,0,0,0,0,,1,,3,126772,1,1,3,0,1,,530.0,,42,3.0,0.0,7.0,4.0,2.5,3,2,848.924070955947,1830.0,119396.57675750807,1,5,0,1,200.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026801438423977034,47758.630703003226,10,5,10,10_1,10_1,10_0_0 -8634,2,49.0,0.0,8,112,715.0,1825.0,0.0,46,38,0.0,0.0,988.2545727167903,2540.0,0.0,3309.916544046594,43,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,130857,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,534.419924248028,715.0,93562.94162996711,1,1,0,1,160.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027147500449969476,35985.746780756584,9,5,9,9_1,9_1,9_0_0 -8635,2,47.0,0.0,1,112,0.0,0.0,0.0,71,11,8214.716823599003,0.0,0.0,6188.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,0,,5,,1,128187,1,2,3,0,2,,600.0,,42,2.0,2.0,13.0,5.0,3.0,1,1,512.361247361478,0.0,139133.15620056415,5,1,0,1,390.0,10,1,1,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04447538005304669,46377.71873352138,10,5,10,10_1,10_1,10_1_0 -8636,2,64.0,0.0,1,112,2000.0,3000.0,0.0,85,31,0.0,0.0,2764.3484551518613,5000.0,0.0,5440.958702542347,20,2,2,1,2,1,2,2,2,2,10.0,1,,1,130152,1,2,3,0,2,,700.0,,42,2.0,1.0,5.0,5.0,2.8,2,2,512.361247361478,2000.0,108493.71980112819,6,1,1,2,220.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.04608561683722459,38747.7570718315,9,5,9,9_1,9_1,9_1_0 -8637,2,51.0,0.0,8,111,0.0,0.0,0.0,38,34,0.0,0.0,0.0,1171.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,2,2003.0,6,128064,2,1,0,0,1,,0.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,688.889348668647,0.0,389766.8527282429,1,1,0,1,116.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003004360149672492,139202.44740294392,10,5,10,10_0,10_4,10_0_0 -8638,2,41.0,0.0,6,111,450.0,1160.0,0.0,37,45,0.0,0.0,621.9784024091688,1610.0,0.0,2103.8373649830405,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,127061,2,2,3,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.1,4,2,612.124064409163,450.0,143412.2290470959,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011226378745366852,68291.53764147423,10,5,10,10_1,10_4,10_0_0 -8639,2,47.0,0.0,5,111,600.0,0.0,0.0,65,54,0.0,0.0,829.3045365455583,600.0,0.0,0.0,20,2,2,2,2,1,2,2,2,1,15.0,2,,3,115545,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,221.927408870867,600.0,39684.09580839994,1,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.015119407101950345,22046.719893555524,6,3,6,6_0,6_4,6_0_0 -8640,2,69.0,0.0,2,111,400.0,1100.0,0.0,78,75,0.0,0.0,552.8696910303722,1500.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,1,,2,113192,2,2,2,0,1,,500.0,,41,0.0,2.0,4.0,3.0,2.0,2,2,832.039499608805,400.0,63887.01383214294,5,5,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023478949946558896,31943.50691607147,8,4,8,8_1,8_4,8_0_1 -8641,2,36.0,0.0,7,111,324.0,480.0,0.0,84,38,0.0,0.0,447.8244497346015,804.0,0.0,870.5533924067755,50,0,0,0,0,0,0,0,0,0,,2,,5,105672,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,826.50804896946,324.0,60868.587375912655,3,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013208783621585483,33815.88187550703,9,5,9,9_0,9_4,9_0_0 -8642,2,51.0,0.0,6,111,1400.0,0.0,0.0,37,37,0.0,207.03450096389156,1935.0439186063027,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,104083,2,2,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,646.031840558621,1400.0,166141.88833076507,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009630322708350502,83070.94416538253,10,5,10,10_1,10_4,10_0_0 -8643,2,59.0,0.0,6,111,1000.0,0.0,0.0,77,47,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109822,2,2,3,0,1,,321.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,672.971393844499,1000.0,40641.4358458761,5,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02460542988176611,27094.2905639174,7,4,7,7_1,7_4,7_0_0 -8644,2,42.0,0.0,6,111,1200.0,0.0,0.0,38,38,0.0,517.5862524097289,1658.6090730911167,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,,4,119818,2,2,3,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,654.821324616594,1200.0,109758.43772613473,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01548855864951156,52265.922726730816,10,5,10,10_1,10_4,10_0_0 -8645,2,39.0,0.0,5,111,1400.0,0.0,0.0,46,42,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,3,127517,2,2,5,0,1,,200.0,700.0,43,2.0,0.0,6.0,4.0,2.1,2,2,696.611876578474,1400.0,54066.99176269024,1,1,2,3,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025893802380292437,25746.186553662017,7,4,7,7_1,7_4,7_0_0 -8646,2,45.0,0.0,5,111,346.0,0.0,0.0,34,38,0.0,72.46207533736204,478.232282741272,6486.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,133644,2,1,1,0,1,,368.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,510.202309634054,346.0,81753.32268989304,1,1,0,1,113.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07933622495813063,31443.585649958866,8,4,8,8_1,8_4,8_0_0 -8647,2,57.0,0.0,6,111,1402.0,0.0,0.0,63,52,0.0,0.0,1937.8082670614547,1402.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,4,126904,2,1,3,0,1,,876.0,560.0,43,2.0,0.0,4.0,4.0,2.5,2,2,681.344460803956,1402.0,50941.16146849985,1,1,2,3,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027521948058976738,20376.46458739994,5,3,5,5_1,5_4,5_0_0 -8648,1,39.0,96.0,6,111,0.0,0.0,0.0,52,46,0.0,0.0,0.0,4763.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,90.0,1,,4,117522,2,1,2,0,1,,312.0,1011.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,484.579338608436,0.0,40985.0,1,1,2,3,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11621324874954252,15763.46153846154,3,2,3_1,3_1_1,3_4_1,3_0_0 -8649,0,62.0,0.0,2,111,243.0,270.0,0.0,56,53,0.0,0.0,335.8683373009511,513.0,0.0,489.6862832288112,71,2,2,2,2,1,2,2,2,1,15.0,2,,2,121503,1,2,0,1,2,197.0,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,253.216826838686,243.0,54495.252780823364,1,5,5,0,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009413664013327092,36330.16852054891,9,5,9,9_0,9_4,9_0_1 -8650,1,48.0,711.0,8,111,1200.0,0.0,0.0,85,64,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,2,2001.0,6,123265,2,1,0,0,1,,0.0,790.0,42,1.0,0.0,5.0,9.0,3.7999999999999985,2,2,203.728463384353,1200.0,34544.39725287339,6,4,2,3,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0382116958167566,9090.630856019316,1,1,1_1,1_0_1,1_4_1,1_0_0 -8651,2,76.0,0.0,1,111,800.0,0.0,0.0,86,72,8961.509262108004,0.0,1105.7393820607444,6840.0,68.81308016760767,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,120202,2,1,4,0,1,,800.0,,41,0.0,1.0,13.0,2.0,1.5,1,1,586.146067143437,800.0,177618.2490203134,5,5,0,1,300.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038509556522076396,118412.16601354227,10,5,10,10_1,10_4,10_1_0 -8652,2,51.0,0.0,6,111,1080.0,0.0,0.0,54,46,0.0,1552.7587572291866,1492.748165782005,2730.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,3,60.0,1,,4,114144,2,1,2,0,1,,720.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,673.920135256146,1080.0,68239.41146954626,1,1,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04000620669506123,45492.94097969751,10,5,10,10_1,10_4,10_0_0 -8653,1,40.0,395.0,6,111,1330.0,0.0,0.0,85,42,0.0,0.0,1838.2917226759876,1510.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,119077,2,1,2,0,1,,600.0,,42,1.0,0.0,4.0,5.0,2.4,1,1,541.119795404993,1330.0,19148.8137199735,6,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0788560598103771,7978.672383322291,1,1,1_1,1_1_1,1_4_1,1_0_0 -8654,1,51.0,307.0,2,111,300.0,84.0,0.0,0,85,0.0,0.0,414.65226827277917,384.0,0.0,152.3468436711857,70,0,0,0,0,0,0,0,0,0,,2,,2,114779,2,1,0,1,1,672.0,0.0,347.0,31,0.0,0.0,3.0,2.0,1.5,1,1,234.65718038306,300.0,9379.749083283317,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04093926144403678,6253.1660555222115,1,1,1_1,1_0_1,1_4_1,1_0_1 -8655,1,44.0,33.0,5,111,395.0,829.0,0.0,0,56,0.0,0.0,545.9588198924926,1224.0,0.0,1503.5182548025352,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,104085,2,2,0,1,1,1200.0,0.0,333.0,32,1.0,0.0,4.0,5.0,3.0,1,1,199.065749798909,395.0,29329.232471141397,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041733107104127566,9776.410823713799,2,1,2_1,2_0_1,2_4_1,2_0_0 -8656,2,74.0,0.0,2,112,2006.0,0.0,0.0,74,74,0.0,0.0,2772.6415005173167,2126.0,206.439240502823,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,125828,2,1,2,0,1,,133.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,843.509071969905,2006.0,65199.746862756874,5,5,0,1,98.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03260748856088588,43466.497908504585,10,5,10,10_1,10_0,10_0_1 -8657,2,35.0,0.0,1,112,1800.0,0.0,0.0,21,37,0.0,310.55175144583734,2487.913609636675,2100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,1,124281,2,1,1,0,1,,720.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,659.585365303751,1800.0,57322.61641816603,1,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03663475485278952,22047.16016083309,6,3,6,6_1,6_0,6_1_0 -8658,2,60.0,0.0,1,112,560.0,0.0,0.0,0,38,4480.754631054002,0.0,774.0175674425211,3560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,105.0,1,,1,130151,2,1,1,0,1,,200.0,,12,1.0,0.0,8.0,1.0,1.0,1,1,719.332446230066,560.0,92732.6137642385,0,1,0,1,130.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03838994562421017,92732.6137642385,10,5,10,10_1,10_0,10_1_0 -8659,2,41.0,0.0,5,112,1250.0,0.0,0.0,85,46,0.0,0.0,1727.717784469913,1370.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,,3,119840,2,1,2,0,1,,450.0,0.0,42,1.0,0.0,5.0,4.0,2.1,2,2,977.105321959105,1250.0,49421.941070189205,6,1,2,3,123.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02772048143666234,23534.25765247105,6,3,6,6_1,6_0,6_0_0 -8660,2,80.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,114179,2,1,0,1,1,,0.0,723.0,21,1.0,3.0,4.0,2.0,1.5,3,3,875.263647934485,300.0,17248.40546142045,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017392912096773856,11498.936974280301,2,1,2_0,2_0_0,2_4_0,2_0_1 -8661,0,34.0,0.0,2,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,502.0,0.0,0.0,70,2,2,1,1,2,2,2,2,0,,2,,2,125190,1,1,0,1,2,172.0,0.0,,43,2.0,0.0,3.0,4.0,2.3,1,1,963.531155602538,0.0,48144.07585965251,1,1,5,0,68.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01042703574710642,20932.206895501095,5,3,5,5_0,5_4,5_0_1 -8662,2,34.0,0.0,2,111,120.0,0.0,0.0,38,31,0.0,0.0,165.86090730911167,120.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,128286,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,3,3,899.735934042174,120.0,93246.3642144315,1,1,1,2,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0012869134470921057,44403.03057830071,10,5,10,10_0,10_4,10_0_1 -8663,2,29.0,0.0,2,111,160.0,0.0,0.0,54,53,0.0,0.0,221.1478764121489,160.0,0.0,0.0,31,2,2,1,1,1,2,2,2,2,25.0,3,,2,127426,1,2,0,1,2,,0.0,700.0,43,2.0,0.0,2.0,2.0,1.5,2,2,947.648799445188,160.0,38311.2997633864,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.004176313541648876,25540.866508924268,7,4,7,7_0,7_4,7_0_1 -8664,2,56.0,0.0,2,111,250.0,125.0,0.0,35,38,0.0,0.0,345.54355689398267,375.0,0.0,226.7066126059311,50,2,2,2,2,1,2,2,2,2,35.0,2,,2,101886,1,2,0,1,1,,0.0,991.0,43,2.0,2.0,3.0,2.0,1.5,2,2,962.881546298041,250.0,60300.3495660566,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.006218869421133332,40200.23304403773,9,5,9,9_0,9_4,9_0_1 -8665,2,72.0,0.0,2,111,420.0,110.0,0.0,75,75,0.0,0.0,580.5131755818909,530.0,0.0,199.50181909321938,70,2,2,1,1,1,2,2,2,0,,3,,2,120944,1,2,0,1,2,468.0,0.0,486.0,41,0.0,1.0,3.0,2.0,1.5,1,1,859.627951473178,420.0,32232.986965427517,5,5,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.016442782686211112,21488.65797695168,6,3,6,6_0,6_4,6_0_1 -8666,1,40.0,45.0,2,111,300.0,0.0,0.0,85,37,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,,2,125386,2,2,0,1,1,,0.0,1100.0,42,1.0,0.0,4.0,5.0,2.4,2,2,762.436657561061,300.0,47284.14822394133,6,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.006344621004468075,19701.72842664222,5,3,5,5_0,5_4,5_0_1 -8667,2,32.0,0.0,2,111,280.0,90.0,0.0,54,53,0.0,0.0,387.00878372126056,370.0,0.0,163.2287610762704,44,0,0,0,0,0,0,0,0,2,35.0,2,,2,112062,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,721.210021484657,280.0,72729.05442570217,1,1,1,2,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005087375367680339,34632.88305985818,9,5,9,9_0,9_4,9_0_1 -8668,1,62.0,93.0,2,111,210.0,278.0,0.0,0,77,0.0,0.0,290.25658779094545,488.0,0.0,504.1955064355908,71,0,0,0,0,0,0,0,0,0,,2,,2,108544,2,1,0,1,1,802.0,0.0,308.0,11,0.0,1.0,3.0,1.0,1.0,1,1,939.232844329878,210.0,20886.402075082657,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02336448366002591,20886.402075082657,5,3,5,5_0,5_4,5_0_1 -8669,2,31.0,0.0,7,111,550.0,1200.0,0.0,65,54,0.0,0.0,760.1958251667618,1750.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,112690,1,3,0,0,1,,0.0,590.0,43,2.0,0.0,3.0,4.0,2.1,2,2,741.153084069984,550.0,47006.526844556975,4,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03722887261564694,22384.060402169987,6,3,6,6_0,6_4,6_0_0 -8670,2,80.0,0.0,1,111,900.0,0.0,0.0,86,74,5669.64819316033,0.0,1243.9568048183376,4876.0,309.6588607542345,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,101627,1,2,4,0,2,,430.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,585.570417532984,900.0,78812.94603040557,6,5,0,1,170.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,0,0.061868008310701494,52541.96402027038,10,5,10,10_1,10_4,10_1_0 -8671,2,53.0,0.0,2,111,2120.0,0.0,0.0,0,37,0.0,0.0,2930.209362460973,2160.0,68.81308016760767,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,119809,2,2,2,0,2,,450.0,,32,3.0,0.0,4.0,4.0,2.5,2,2,605.82443087231,2120.0,81348.25154053043,0,1,1,2,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026552506772979816,32539.30061621217,8,4,8,8_1,8_4,8_0_1 -8672,2,72.0,0.0,2,111,400.0,300.0,0.0,77,74,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,50,2,2,2,1,2,1,2,2,0,,2,,2,100060,1,1,0,1,2,750.0,0.0,653.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1071.823493225,400.0,53039.7727993411,5,5,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013197643260053632,35359.848532894066,9,5,9,9_0,9_4,9_0_1 -8673,2,79.0,0.0,2,111,500.0,0.0,0.0,0,86,5974.339508072003,0.0,691.0871137879653,5599.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132106,2,2,2,0,1,,400.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,975.834639404146,500.0,28335.503752148863,0,6,0,1,100.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1975966282080089,28335.503752148863,8,4,8,8_1,8_4,8_0_1 -8674,2,66.0,0.0,5,112,1900.0,0.0,0.0,74,74,0.0,362.31037668681023,2626.131032394268,2250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,102563,2,1,1,0,1,,270.0,,41,0.0,4.0,9.0,2.0,1.5,2,2,817.813585671694,1900.0,61815.67689735968,5,5,0,1,180.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036398533720434015,41210.45126490645,9,5,9,9_1,9_1,9_0_0 -8675,2,58.0,0.0,6,112,1700.0,0.0,0.0,22,38,0.0,258.79312620486445,2349.696186879082,1950.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,75.0,1,,4,118216,2,1,2,0,1,,300.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,817.813585671694,1700.0,70089.91365601934,6,1,0,1,90.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027821406794278927,46726.609104012896,10,5,10,10_1,10_1,10_0_0 -8676,2,66.0,0.0,6,112,940.0,1742.0,0.0,75,78,0.0,322.9738215036708,1299.2437739213747,2994.0,0.0,3159.383353276256,10,0,0,0,0,0,0,0,0,0,,1,,4,104378,2,1,2,0,1,,600.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,894.13109582863,940.0,56699.81291274982,5,5,0,1,140.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05280440703758924,37799.875275166545,9,5,9,9_1,9_1,9_0_0 -8677,2,55.0,0.0,2,112,500.0,1000.0,0.0,42,65,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,43,0,0,0,0,0,0,0,0,3,50.0,1,,2,121521,2,2,1,0,2,,580.0,,43,3.0,1.0,6.0,3.0,2.0,3,1,881.152221164227,500.0,84345.46415086342,1,1,0,1,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017784003148255186,42172.73207543171,9,5,9,9_1,9_1,9_0_1 -8678,2,47.0,0.0,7,112,542.0,847.0,0.0,75,33,0.0,0.0,749.1384313461543,1389.0,0.0,1536.1640070177891,50,0,0,0,0,0,0,0,0,3,45.0,1,,5,102648,2,1,1,0,1,,413.0,,42,1.0,3.0,6.0,2.0,1.5,3,2,669.365391766785,542.0,58256.264766727974,5,1,0,1,99.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02384292926369187,38837.509844485314,9,5,9,9_1,9_1,9_0_0 -8679,2,61.0,0.0,1,112,555.0,0.0,0.0,0,55,0.0,0.0,767.1066963046414,555.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,,1,123861,2,1,0,0,1,,92.0,410.0,12,1.0,2.0,2.0,1.0,1.0,2,2,741.595206817627,555.0,15042.384044445462,0,1,2,3,28.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03689574726719857,15042.384044445462,3,2,3_0,3_0_0,3_1_0,3_1_0 -8680,2,71.0,0.0,2,112,2437.0,0.0,0.0,0,75,0.0,0.0,3368.3585926025426,2437.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124975,2,1,2,0,1,,112.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,875.425343869638,2437.0,22615.788959901438,0,5,0,1,100.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10775657680220149,22615.788959901438,6,3,6,6_1,6_1,6_0_1 -8681,2,79.0,0.0,1,112,1000.0,245.0,0.0,74,75,4182.037655650402,0.0,1382.1742275759307,4045.0,0.0,444.344960707625,43,0,0,0,0,0,0,0,0,0,,1,,1,132755,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,658.793505908791,1000.0,46140.593809945865,5,5,0,1,102.0,10,2,1,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08766683880709132,30760.395873297242,8,4,8,8_1,8_1,8_1_0 -8682,2,67.0,0.0,5,112,406.0,1153.0,0.0,77,78,0.0,0.0,561.1627363958278,1559.0,0.0,2091.1417946771085,50,0,0,0,0,0,0,0,0,0,,1,,3,133690,2,2,2,0,1,,325.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,894.13109582863,406.0,38949.143655749824,5,5,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04002655395402652,25966.095770499884,7,4,7,7_1,7_1,7_0_0 -8683,2,50.0,0.0,1,112,480.0,0.0,0.0,37,37,0.0,0.0,663.4436292364467,871.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,,1,124140,1,2,2,0,2,,900.0,,43,2.0,0.0,9.0,4.0,2.5,1,1,641.025814966044,480.0,203894.65196745362,1,1,1,2,210.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.004271813858752077,81557.86078698144,10,5,10,10_1,10_1,10_1_0 -8684,2,65.0,0.0,5,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,105702,2,2,0,1,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,855.572481620716,300.0,24339.70374976844,0,5,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012325540322275045,24339.70374976844,7,4,7,7_0,7_4,7_0_0 -8685,2,45.0,0.0,2,111,0.0,0.0,0.0,56,46,0.0,0.0,0.0,1032.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,2,,2,106473,2,1,0,1,1,840.0,0.0,436.0,43,2.0,0.0,5.0,3.0,2.0,2,2,823.055831979513,0.0,38447.10805811739,1,1,2,3,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026842070889701482,19223.554029058694,5,3,5,5_0,5_4,5_0_1 -8686,2,50.0,0.0,7,111,896.0,1200.0,0.0,56,31,0.0,214.28070849762776,1238.4281079080338,2303.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,5,114251,1,2,3,0,1,,1400.0,,43,3.0,0.0,6.0,5.0,3.0,2,2,573.092945224753,896.0,137860.68044411548,1,1,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016705270803690584,45953.560148038494,10,5,10,10_1,10_4,10_0_0 -8687,2,66.0,0.0,2,111,750.0,3000.0,0.0,77,31,0.0,0.0,1036.630670681948,3750.0,0.0,5440.958702542347,71,0,0,0,0,0,0,0,0,0,,1,,2,104555,2,2,3,0,2,,300.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,755.190744031193,750.0,94009.4134437172,6,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03988962235409648,62672.94229581147,10,5,10,10_1,10_4,10_0_1 -8688,2,60.0,0.0,2,111,640.0,1900.0,0.0,0,37,0.0,144.92415067472407,884.5915056485956,2680.0,0.0,3445.940511610153,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,114529,2,3,1,0,1,,600.0,,32,1.0,0.0,6.0,2.0,1.5,2,2,714.43489825217,640.0,89093.34438900229,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0300808103947529,59395.56292600153,10,5,10,10_1,10_4,10_0_1 -8689,2,33.0,0.0,1,111,1500.0,0.0,0.0,56,47,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,110988,1,2,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,1,1,766.671054517249,1500.0,22615.20433665892,4,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06632705933894754,12564.002409254956,2,1,2_0,2_0_0,2_4_0,2_1_0 -8690,2,53.0,0.0,5,111,300.0,160.0,0.0,0,56,0.0,0.0,414.65226827277917,460.0,0.0,290.18446413559184,71,2,1,2,2,1,2,2,2,0,,2,,3,103579,1,3,0,1,1,,0.0,276.0,12,1.0,3.0,2.0,1.0,1.0,2,2,993.472709688798,300.0,12339.876841118816,0,4,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03727751953465148,12339.876841118816,2,1,2_0,2_0_0,2_4_0,2_0_0 -8691,2,29.0,0.0,2,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,534.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,20.0,2,,2,113130,2,2,0,1,1,329.0,0.0,304.0,42,1.0,0.0,2.0,3.0,1.8,1,1,893.117630724955,0.0,26250.57514836582,6,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020342411432202206,14583.652860203234,3,2,3_0,3_0_0,3_4_0,3_0_1 -8692,2,58.0,0.0,7,111,48.0,36.0,0.0,54,78,0.0,0.0,66.34436292364467,84.0,0.0,65.29150443050816,33,0,0,0,0,0,0,0,0,0,,2,,5,116942,2,3,0,1,1,,0.0,540.0,42,1.0,2.0,4.0,4.0,2.3,3,3,1052.04932100987,48.0,60809.0921147829,1,5,2,3,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0013813723750626316,26438.735702079524,7,4,7,7_0,7_4,7_0_0 -8693,2,40.0,0.0,6,111,700.0,1000.0,0.0,52,64,0.0,0.0,967.5219593031513,1700.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,4,117338,2,2,2,0,1,,960.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,544.720950964076,700.0,42783.769632216725,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039734694128492086,17826.570680090303,4,2,4_0,4_1_0,4_4_0,4_0_0 -8694,2,47.0,0.0,2,111,1111.0,2649.0,0.0,0,22,0.0,0.0,1535.5955668368588,3760.0,0.0,4804.366534344892,33,0,0,0,0,0,0,0,0,0,,1,,2,111524,2,2,2,0,2,,433.0,,32,1.0,0.0,6.0,3.0,2.0,2,2,705.002324901929,1111.0,42369.13446281965,0,1,0,1,179.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0887438473235635,21184.567231409826,5,3,5,5_1,5_4,5_0_1 -8695,2,30.0,0.0,9,111,573.0,0.0,0.0,46,38,0.0,0.0,791.9858324010082,573.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,2,2004.0,6,108354,2,1,0,0,1,,0.0,710.0,43,2.0,0.0,2.0,2.0,1.5,2,2,919.008852712473,573.0,52770.708882294515,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010858296432554678,35180.472588196346,9,5,9,9_0,9_4,9_0_0 -8696,1,29.0,330.0,5,111,500.0,0.0,0.0,85,67,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,3,107880,1,2,0,1,1,864.0,0.0,530.0,42,1.0,0.0,3.0,4.0,2.1,1,1,794.008865450127,500.0,27341.66782460019,6,4,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.01828710681468135,13019.841821238186,2,1,2_1,2_0_1,2_4_1,2_0_0 -8697,2,56.0,0.0,2,111,318.0,780.0,0.0,0,38,0.0,0.0,439.5314043691459,1098.0,0.0,1414.6492626610102,31,0,0,0,0,0,0,0,0,2,70.0,2,,2,103622,2,2,0,0,1,,233.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1342.6165765908,318.0,60883.05605062802,0,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01803457433357066,60883.05605062802,10,5,10,10_0,10_4,10_0_1 -8698,2,62.0,0.0,1,111,254.0,1713.0,0.0,0,42,0.0,0.0,351.07225380428633,2047.0,137.62616033521533,3106.78741915168,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,112779,2,1,2,0,1,,229.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,681.169849460701,254.0,41408.68605398628,0,1,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04943407277717622,41408.68605398628,9,5,9,9_1,9_4,9_1_0 -8699,2,39.0,0.0,2,111,540.0,600.0,0.0,0,67,0.0,0.0,746.3740828910024,1140.0,0.0,1088.1917405084694,50,1,2,2,2,1,2,2,2,0,,2,,2,101501,2,2,0,1,1,,0.0,350.0,22,2.0,1.0,3.0,2.0,1.5,2,2,835.184772095839,540.0,32943.373140884745,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03460483524636978,21962.24876058983,6,3,6,6_0,6_4,6_0_1 -8700,2,51.0,0.0,7,111,1344.0,0.0,0.0,37,37,0.0,0.0,1857.6421618620507,1344.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,5,104260,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,3,2,829.857809473667,1344.0,76876.00557509705,1,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017482698144183635,36607.62170242717,9,5,9,9_0,9_4,9_0_0 -8701,2,35.0,0.0,7,111,520.0,0.0,0.0,0,38,0.0,0.0,718.7305983394839,520.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,40.0,2,,5,101335,2,1,0,0,1,,0.0,622.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1405.21062237712,520.0,33613.849812548666,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015469813868385718,33613.849812548666,9,5,9,9_0,9_4,9_0_0 -8702,2,69.0,0.0,7,111,1100.0,0.0,0.0,0,37,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,121262,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1039.62561859901,1100.0,49953.04368714307,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022020680198974907,49953.04368714307,10,5,10,10_0,10_4,10_0_0 -8703,2,69.0,0.0,7,111,978.0,0.0,0.0,0,75,0.0,0.0,1351.76639456926,978.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,5,119766,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,915.081166481533,978.0,48917.05670961034,0,5,0,1,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01999302627314166,48917.05670961034,10,5,10,10_0,10_4,10_0_0 -8704,2,32.0,0.0,7,111,491.0,0.0,0.0,0,68,0.0,0.0,678.6475457397819,491.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,1.0,2,,5,117678,2,1,0,0,1,,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,4,4,1047.03322830284,491.0,25783.166132161103,0,1,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019043433125443123,25783.166132161103,7,4,7,7_0,7_4,7_0_0 -8706,1,47.0,589.0,5,111,1500.0,0.0,0.0,56,67,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,3,122354,1,1,0,0,2,,0.0,589.0,43,2.0,2.0,3.0,6.0,2.6999999999999997,2,2,669.730437199325,1500.0,33849.58563771765,4,1,2,3,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04431368868304821,12536.883569525058,2,1,2_1,2_0_1,2_4_1,2_0_0 -8707,2,67.0,0.0,7,111,1152.0,53.0,0.0,0,74,0.0,0.0,1592.264710167472,1205.0,0.0,96.12360374491479,50,0,0,0,0,0,0,0,0,0,,2,,5,101183,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,915.006474871766,1152.0,45428.71214147984,0,5,0,1,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026525075072505615,45428.71214147984,10,5,10,10_0,10_4,10_0_0 -8708,2,65.0,0.0,7,111,520.0,60.0,0.0,0,74,0.0,0.0,718.7305983394839,580.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,2,,5,114318,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,915.081166481533,520.0,30203.66797257133,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01920296569697137,30203.66797257133,8,4,8,8_0,8_4,8_0_0 -8709,2,66.0,0.0,1,111,1559.0,0.0,0.0,85,74,3369.5274825526094,112.8338030253209,2154.8096207908757,3924.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126581,2,2,1,0,1,,654.0,,41,0.0,2.0,4.0,3.0,2.0,2,2,596.059179235552,1559.0,38862.39261595895,7,5,0,1,102.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10097165243471394,19431.196307979473,5,3,5,5_1,5_4,5_1_0 -8710,2,53.0,0.0,8,111,496.0,597.0,0.0,56,64,0.0,0.0,685.5584168776616,1093.0,0.0,1082.750781805927,70,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,121278,2,1,0,0,1,,0.0,593.0,43,3.0,0.0,4.0,5.0,3.0,1,1,658.311037025426,496.0,41230.14096179971,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026509732309978745,13743.380320599905,3,2,3_0,3_0_0,3_4_0,3_0_0 -8711,2,28.0,0.0,8,111,750.0,0.0,0.0,0,47,0.0,0.0,1036.630670681948,750.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,25.0,2,2000.0,6,108306,2,1,0,0,1,,0.0,620.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1047.03322830284,750.0,6572.302018195349,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11411526705918762,6572.302018195349,1,1,1_0,1_0_0,1_4_0,1_0_0 -8712,2,53.0,0.0,1,111,630.0,2466.0,0.0,85,37,0.0,0.0,870.7697633728362,3096.0,0.0,4472.468053489809,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,121466,2,2,3,0,1,,700.0,,42,1.0,0.0,7.0,4.0,2.5,2,2,556.764903695039,630.0,115627.95719233484,6,1,1,2,148.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026775531412789145,46251.18287693393,10,5,10,10_1,10_4,10_1_0 -8713,2,63.0,0.0,8,111,255.0,477.0,0.0,63,75,0.0,0.0,352.4544280318623,732.0,0.0,865.1124337042331,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,123129,2,2,0,0,1,,0.0,488.0,42,1.0,0.0,3.0,2.0,1.5,1,1,781.745418421388,255.0,46690.21472728366,1,5,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015677803245831984,31126.809818189107,8,4,8,8_0,8_4,8_0_0 -8714,2,48.0,0.0,8,111,600.0,927.0,0.0,63,55,0.0,0.0,829.3045365455583,1527.0,0.0,1681.256239085585,31,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,129269,1,1,0,0,1,,0.0,581.0,43,4.0,0.0,4.0,4.0,2.5,2,2,783.895466725847,600.0,37878.6863570524,1,1,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040312908045600615,15151.47454282096,3,2,3_0,3_0_0,3_4_0,3_0_0 -8715,2,58.0,0.0,6,111,223.0,37.0,0.0,0,33,0.0,0.0,308.2248527494325,260.0,0.0,67.10515733135561,50,0,0,0,0,0,0,0,0,3,60.0,2,,4,113205,2,2,0,1,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,904.815671471547,223.0,80112.48208222642,0,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0032454368313434524,80112.48208222642,10,5,10,10_0,10_4,10_0_0 -8716,2,30.0,0.0,2,111,418.0,686.0,0.0,55,47,0.0,0.0,577.748827126739,1104.0,0.0,1244.16588998135,20,1,2,2,2,1,2,2,2,2,5.0,2,,2,114789,1,2,0,1,1,80.0,0.0,307.0,43,2.0,0.0,2.0,2.0,1.5,3,3,936.007120354882,418.0,20909.564620338406,4,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05279880380322011,13939.709746892271,3,2,3_0,3_0_0,3_4_0,3_0_1 -8717,2,35.0,0.0,2,111,630.0,130.0,0.0,34,48,0.0,0.0,870.7697633728362,760.0,0.0,235.77487711016835,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,114575,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,213.985585602613,630.0,57912.37979227572,1,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013123273516405689,24130.158246781553,6,3,6,6_0,6_4,6_0_1 -8718,2,47.0,0.0,2,111,0.0,0.0,0.0,53,62,0.0,0.0,0.0,827.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,110.0,2,,2,109821,1,1,0,1,1,,0.0,537.0,43,2.0,2.0,3.0,2.0,1.5,1,1,234.76437518967,0.0,35380.02517786559,1,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02337477138137784,23586.68345191039,6,3,6,6_0,6_4,6_0_1 -8719,1,42.0,212.0,2,111,308.0,396.0,0.0,56,55,0.0,0.0,425.7096620933866,704.0,0.0,718.2065487355898,60,2,2,2,1,1,2,1,2,1,15.0,2,,2,102073,1,1,0,1,1,474.0,0.0,330.0,43,2.0,0.0,4.0,4.0,2.1,4,4,175.405837819609,308.0,37638.999050104525,4,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.018704004297851937,17923.332881002156,4,2,4_1,4_0_1,4_4_1,4_0_1 -8720,2,45.0,0.0,2,111,2532.0,0.0,0.0,46,38,0.0,0.0,3499.665144222256,2532.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,30.0,1,,2,104643,2,2,2,0,1,,536.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,554.817727780761,2532.0,76176.85200146836,4,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0332384436147505,29298.789231333987,8,4,8,8_1,8_4,8_0_1 -8721,2,54.0,0.0,5,111,2780.0,50.0,0.0,64,21,0.0,0.0,3842.444352661087,2830.0,0.0,90.68264504237244,33,0,0,0,0,0,0,0,0,0,,1,,3,130172,2,1,2,0,1,,862.0,,43,4.0,2.0,6.0,5.0,3.0,1,1,570.402526344957,2780.0,105856.66932003183,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026734262641914277,35285.55644001061,9,5,9,9_1,9_4,9_0_0 -8722,2,32.0,0.0,8,111,1278.0,0.0,0.0,64,54,0.0,0.0,1766.4186628420393,1278.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,2001.0,6,120938,2,1,0,0,1,,0.0,609.0,43,2.0,0.0,3.0,4.0,2.3,4,4,674.783332140351,1278.0,52109.36333037984,1,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024525342823655726,22656.244926252108,6,3,6,6_0,6_4,6_0_0 -8723,2,49.0,0.0,2,111,596.0,144.0,0.0,85,62,0.0,0.0,823.7758396352547,740.0,0.0,261.1660177220326,70,1,2,2,1,2,2,2,2,2,15.0,2,,2,113481,1,2,0,1,1,468.0,0.0,448.0,42,2.0,0.0,4.0,5.0,3.0,2,2,142.07983012619,596.0,40585.939656103,6,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018232915297027613,13528.646552034334,3,2,3_0,3_0_0,3_4_0,3_0_1 -8724,1,67.0,290.0,2,111,412.0,162.0,0.0,0,78,0.0,0.0,569.4557817612833,574.0,0.0,293.8117699372867,71,1,2,2,2,1,2,2,2,0,,2,,2,112188,1,3,0,1,1,321.0,0.0,278.0,11,0.0,1.0,3.0,1.0,1.0,1,1,188.868984739152,412.0,3832.869962269747,0,5,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.14975723300043528,3832.869962269747,1,1,1_1,1_0_1,1_4_1,1_0_1 -8725,1,44.0,91.0,2,111,500.0,824.0,0.0,67,56,0.0,0.0,691.0871137879653,1324.0,0.0,1494.449990298298,50,2,2,2,1,2,2,2,2,2,10.0,2,,2,124528,2,2,0,0,1,,0.0,371.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1033.94168657304,500.0,38315.0298190505,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03455563016009185,21286.127677250275,6,3,6,6_0,6_4,6_0_1 -8726,2,55.0,0.0,8,112,360.0,0.0,0.0,0,37,0.0,0.0,497.582721927335,2660.0,3956.7521096374408,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,106854,2,1,1,0,1,,227.0,,32,1.0,1.0,7.0,3.0,2.0,2,2,656.553288211767,360.0,74513.30697403483,0,1,1,2,135.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0356983216558475,37256.653487017415,9,5,9,9_1,9_0,9_0_0 -8727,2,73.0,0.0,5,112,0.0,0.0,0.0,0,74,0.0,0.0,0.0,2637.0,2580.4905062852877,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,111725,2,1,2,0,2,,229.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,921.022199999297,0.0,20142.133607867192,0,5,0,1,126.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13091959627206676,20142.133607867192,5,3,5,5_1,5_0,5_0_0 -8728,2,56.0,0.0,6,112,360.0,1356.0,0.0,55,22,0.0,0.0,497.582721927335,1716.0,0.0,2459.3133335491407,50,2,2,2,1,2,1,2,2,0,,2,,4,131896,1,2,0,0,1,,336.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,936.805540012842,360.0,32677.37298646725,1,1,0,1,84.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.05251340126731273,21784.9153243115,6,3,6,6_0,6_2,6_0_0 -8729,2,90.0,0.0,1,112,2235.0,0.0,0.0,0,72,0.0,0.0,3089.159398632205,2308.0,125.58387130588399,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,113360,2,2,1,0,2,,270.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,706.569203117751,2235.0,34125.07588054274,0,5,0,1,55.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06763354924335754,34125.07588054274,9,5,9,9_1,9_2,9_1_0 -8730,2,56.0,0.0,2,112,330.0,110.0,0.0,78,77,0.0,0.0,456.1174951000571,440.0,0.0,199.50181909321938,50,0,0,0,0,0,0,0,0,0,,2,,2,101683,1,3,0,1,2,,280.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1043.93399380651,330.0,38253.02350254137,5,7,0,1,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011502358760498193,25502.015668360913,7,4,7,7_0,7_2,7_0_1 -8731,2,54.0,0.0,2,112,500.0,0.0,0.0,0,45,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127569,2,1,0,1,1,,0.0,290.0,12,1.0,1.0,3.0,1.0,1.0,2,2,948.411350272112,500.0,17531.606081363047,0,4,2,3,66.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028519919833900696,17531.606081363047,4,2,4_0,4_0_0,4_2_0,4_0_1 -8732,2,56.0,0.0,5,112,580.0,0.0,0.0,77,37,3435.2452171414016,0.0,801.6610519940398,2940.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,3,133585,2,1,2,0,1,,720.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,806.668949968402,580.0,82706.89636384312,6,1,1,2,130.0,10,4,1,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035547217091382435,55137.930909228744,10,5,10,10_1,10_2,10_0_0 -8733,2,74.0,0.0,2,112,480.0,0.0,0.0,86,75,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109649,2,1,0,0,1,,0.0,308.0,41,0.0,1.0,3.0,2.0,1.5,2,2,851.456387666244,480.0,20286.431557837317,5,5,2,3,62.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023661135209093003,13524.287705224879,3,2,3_0,3_0_0,3_2_0,3_0_1 -8734,2,45.0,0.0,2,112,0.0,0.0,0.0,33,33,0.0,0.0,0.0,1632.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,1,,2,104454,1,1,2,0,2,,1072.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,660.522711528131,0.0,129853.95958987018,1,1,1,2,170.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012567964851857403,54105.81649577925,10,5,10,10_1,10_2,10_0_1 -8735,2,82.0,0.0,2,112,404.0,0.0,0.0,77,38,3435.2452171414016,0.0,558.398387940676,2904.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123411,2,1,2,0,1,,824.0,,41,1.0,1.0,5.0,3.0,2.0,1,1,815.301252633454,404.0,78654.67300013859,5,5,0,1,120.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03692088326392105,39327.336500069294,9,5,9,9_1,9_2,9_0_1 -8736,2,63.0,0.0,2,112,1800.0,0.0,0.0,78,74,4480.754631054002,0.0,2487.913609636675,4920.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,110368,2,1,2,0,1,,600.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,782.662219762617,1800.0,54594.472981220446,5,5,0,1,120.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09011901262775071,36396.31532081363,9,5,9,9_1,9_2,9_0_1 -8737,2,42.0,0.0,7,112,620.0,980.0,0.0,54,37,0.0,476.1793522169506,856.9480210970769,2060.0,0.0,1777.3798428305,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,101579,2,1,2,0,1,,950.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,838.941897274037,620.0,60613.16696013926,1,1,1,2,170.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033986014975173756,33673.98164452181,9,5,9,9_1,9_2,9_0_0 -8738,2,60.0,0.0,2,112,674.0,1232.0,0.0,56,47,0.0,0.0,931.5854293861772,1906.0,0.0,2234.420373844057,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,120442,2,1,3,0,1,,738.0,,42,1.0,0.0,5.0,4.0,2.5,2,2,781.795204922917,674.0,41093.74963922292,3,1,0,1,140.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04638174945663202,16437.49985568917,4,2,4_0,4_1_0,4_2_0,4_0_1 -8739,2,83.0,0.0,8,112,45.0,60.0,0.0,78,74,0.0,0.0,62.197840240916875,105.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,127023,2,1,1,0,1,,600.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,613.54213564515,45.0,65856.50613124327,5,5,0,1,194.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001594375501651256,43904.337420828844,10,5,10,10_1,10_2,10_0_0 -8740,1,30.0,300.0,2,112,600.0,0.0,0.0,0,52,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,40.0,2,,2,128222,2,3,0,0,2,,640.0,680.0,32,2.0,0.0,2.0,3.0,1.8,1,1,1246.28746017157,600.0,38683.335357554235,0,1,2,3,30.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.015510554983279889,21490.741865307908,6,3,6,6_0,6_2,6_0_1 -8741,2,49.0,0.0,1,112,850.0,1200.0,0.0,52,37,0.0,0.0,1174.848093439541,2050.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,60.0,1,,1,115474,2,1,2,0,1,,500.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,582.412628384069,850.0,57780.25587390159,1,1,0,1,97.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03547924752140033,28890.127936950794,8,4,8,8_1,8_2,8_1_0 -8742,2,63.0,0.0,9,112,700.0,0.0,0.0,0,75,0.0,0.0,967.5219593031513,700.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,2007.0,6,106218,1,1,0,0,1,,234.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1553.90257846892,700.0,28506.383654710364,0,5,1,2,68.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02455590328394155,28506.383654710364,8,4,8,8_0,8_2,8_0_0 -8743,2,75.0,0.0,6,112,1770.0,0.0,0.0,75,75,0.0,0.0,2446.448382809397,1770.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,103934,2,1,0,0,1,,400.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,1010.87303905311,1770.0,55226.38779147121,5,5,1,2,89.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03204989626848901,36817.59186098081,9,5,9,9_0,9_2,9_0_0 -8744,2,64.0,0.0,2,112,360.0,940.0,0.0,56,74,0.0,0.0,497.582721927335,1300.0,0.0,1704.833726796602,50,0,0,0,0,0,0,0,0,0,,1,,2,118929,2,2,1,0,1,,220.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,823.427473913118,360.0,23239.221862008693,1,5,0,1,115.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05593991088510714,15492.814574672462,3,2,3_0,3_1_0,3_2_0,3_0_1 -8745,1,56.0,66.0,2,112,880.0,460.0,0.0,0,45,0.0,0.0,1216.313320266819,1340.0,0.0,834.2803343898265,33,2,2,2,1,1,2,2,2,2,5.0,2,,2,116618,2,3,0,1,1,,340.0,530.0,32,2.0,2.0,4.0,5.0,2.8,1,1,750.618923825338,880.0,29680.097227274127,0,1,2,3,65.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.045148100079962845,10600.034724026475,2,1,2_1,2_0_1,2_2_1,2_0_1 -8746,2,30.0,0.0,2,112,336.0,180.0,0.0,45,53,0.0,0.0,464.41054046551267,516.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,128724,2,3,0,1,1,395.0,0.0,293.0,43,2.0,0.0,2.0,3.0,1.8,3,2,876.579511707944,336.0,52395.02775057356,1,1,2,3,57.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009848262748450428,29108.34875031864,8,4,8,8_0,8_2,8_0_1 -8747,1,84.0,135.0,5,112,385.0,660.0,0.0,0,78,0.0,0.0,532.1370776167332,1045.0,0.0,1197.0109145593162,70,0,0,0,0,0,0,0,0,0,,2,,3,105062,2,1,0,1,1,,240.0,345.0,11,0.0,6.0,4.0,1.0,1.0,1,1,1065.50214317205,385.0,15798.267187239686,0,5,2,3,75.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.066146494904457,15798.267187239686,3,2,3_1,3_0_1,3_2_1,3_0_0 -8748,2,60.0,0.0,1,112,1800.0,0.0,0.0,77,62,0.0,155.27587572291867,2487.913609636675,2130.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,101614,2,3,2,0,1,,349.0,,42,3.0,3.0,4.0,6.0,3.5,2,2,581.219751375392,1800.0,61233.50773225672,6,1,0,1,120.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03478487643258029,17495.28792350192,4,2,4_0,4_1_0,4_0_0,4_1_0 -8749,2,68.0,0.0,6,112,2500.0,0.0,0.0,75,74,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129196,2,1,2,0,1,,240.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,864.466799918602,2500.0,56741.490211666125,5,5,0,1,230.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04405947025138224,37827.66014111075,9,5,9,9_1,9_0,9_0_0 -8750,2,75.0,0.0,2,112,300.0,0.0,0.0,0,77,4791.420285473746,0.0,414.65226827277917,3571.0,108.38060126398207,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106766,2,1,2,0,1,,214.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1038.60979343153,300.0,15326.229397797695,0,5,0,1,100.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.23299925293517632,15326.229397797695,3,2,3_0,3_1_0,3_0_0,3_0_1 -8751,2,62.0,0.0,1,112,520.0,0.0,0.0,78,77,2688.452778632401,0.0,718.7305983394839,2320.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111589,2,1,3,0,1,,213.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,641.736715839708,520.0,36352.59944034679,5,5,0,1,110.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06381937016105355,24235.066293564527,7,4,7,7_1,7_0,7_1_0 -8752,2,27.0,0.0,7,112,0.0,0.0,0.0,67,38,0.0,0.0,0.0,943.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,132036,2,3,2,0,1,,177.0,700.0,43,2.0,0.0,3.0,3.0,1.8,1,1,892.709425523902,0.0,40110.87525130389,4,1,2,3,45.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023509833532474357,22283.819584057717,6,3,6,6_1,6_0,6_0_0 -8753,2,58.0,0.0,2,111,470.0,70.0,0.0,0,52,0.0,0.0,649.6218869606873,540.0,0.0,126.95570305932142,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,111364,1,1,0,1,1,528.0,0.0,456.0,32,2.0,0.0,3.0,2.0,1.5,2,2,1012.96575768121,470.0,23357.944666489006,0,1,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02311847243883247,15571.96311099267,3,2,3_0,3_0_0,3_4_0,3_0_1 -8754,2,35.0,0.0,9,111,1060.0,0.0,0.0,54,37,0.0,0.0,1465.1046812304864,1060.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,2006.0,6,110559,2,1,0,0,1,,0.0,900.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1421.06495473265,1060.0,54708.93399945251,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01937526327986226,30393.85222191806,8,4,8,8_0,8_4,8_0_0 -8755,2,31.0,0.0,7,111,1133.0,0.0,0.0,35,37,0.0,0.0,1566.0033998435292,1133.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,111765,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,755.621923722598,1133.0,108313.76413428022,1,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01046035108331552,60174.313407933456,10,5,10,10_0,10_4,10_0_0 -8756,2,24.0,0.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,492.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,5,121505,1,1,0,0,1,,0.0,545.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1241.03875265088,0.0,17175.81784555515,0,1,2,3,26.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02864492418492447,17175.81784555515,4,2,4_0,4_0_0,4_4_0,4_0_0 -8757,2,61.0,0.0,2,111,250.0,42.0,0.0,0,75,0.0,0.0,345.54355689398267,1111.0,0.0,76.17342183559285,12,1,2,2,1,1,2,2,2,0,,2,,2,113931,2,2,0,1,1,860.0,0.0,408.0,11,0.0,1.0,3.0,1.0,1.0,1,1,937.497078300768,250.0,51732.96605400167,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021475667929812453,51732.96605400167,10,5,10,10_0,10_4,10_0_1 -8758,2,63.0,0.0,1,111,240.0,1225.0,0.0,74,34,0.0,0.0,331.72181461822333,1465.0,0.0,2221.724803538125,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,120064,2,2,4,0,1,,414.0,,42,1.0,2.0,4.0,2.0,1.5,4,3,602.852709504742,240.0,98245.56427672177,5,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01491161469512895,65497.042851147846,10,5,10,10_1,10_4,10_1_0 -8759,2,64.0,0.0,2,111,340.0,1800.0,0.0,0,33,0.0,0.0,469.9392373758164,2140.0,0.0,3264.575221525408,70,0,0,0,0,0,0,0,0,2,60.0,2,,2,114852,1,2,0,1,2,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1008.63651575937,340.0,50975.96602301955,0,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04198056784316017,50975.96602301955,10,5,10,10_0,10_4,10_0_1 -8760,2,48.0,0.0,2,111,440.0,720.0,0.0,65,21,0.0,0.0,608.1566601334094,1160.0,0.0,1305.830088610163,31,2,1,2,2,1,2,2,2,0,,2,,2,122752,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,5.0,3.0,2,2,666.001360769639,440.0,37675.14802757347,1,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.030789527333801737,12558.382675857823,2,1,2_0,2_0_0,2_4_0,2_0_1 -8761,2,73.0,0.0,1,111,250.0,300.0,0.0,74,74,0.0,0.0,345.54355689398267,550.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,1,,1,101572,2,1,2,0,1,,250.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,754.871397241037,250.0,83323.77485564227,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0066007571182759095,55549.18323709485,10,5,10,10_1,10_4,10_1_0 -8762,2,36.0,0.0,2,111,300.0,240.0,0.0,46,38,0.0,0.0,414.65226827277917,540.0,0.0,435.27669620338776,50,1,2,2,1,1,2,2,2,3,50.0,2,,2,118431,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,892.148722451568,300.0,70980.80431850818,4,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007607690631073837,47320.53621233878,10,5,10,10_0,10_4,10_0_1 -8763,2,42.0,0.0,1,111,380.0,1210.0,0.0,37,38,0.0,0.0,525.2262064788536,1590.0,0.0,2194.5200100254133,33,0,0,0,0,0,0,0,0,3,90.0,2,,1,105947,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,763.285821975526,380.0,99952.1819888591,1,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015907606701144605,43457.470429938745,10,5,10,10_0,10_4,10_1_0 -8764,2,42.0,0.0,1,111,0.0,0.0,2500.0,54,38,0.0,0.0,1277.2833370938126,2500.0,0.0,2858.1144366315784,42,0,0,0,0,0,0,0,0,0,,2,,1,113655,1,3,0,0,1,,0.0,1473.0,43,2.0,0.0,4.0,4.0,2.1,2,2,911.776112374632,0.0,57975.07540626821,1,4,2,3,84.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04312197927266003,27607.178764889624,7,4,7,7_0,7_4,7_1_0 -8765,2,30.0,0.0,1,111,600.0,0.0,0.0,46,42,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,40.0,2,,1,109306,1,1,0,0,2,,0.0,863.0,43,2.0,0.0,2.0,2.0,1.5,2,2,971.585450698936,600.0,24279.37244567871,1,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02471233559855824,16186.24829711914,4,2,4_0,4_0_0,4_4_0,4_1_0 -8766,2,73.0,0.0,1,111,20.0,58.0,0.0,75,74,0.0,0.0,27.64348455151861,78.0,0.0,105.19186824915204,71,0,0,0,0,0,0,0,0,0,,2,,1,104649,1,1,0,0,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,849.141673397324,20.0,86630.26156079619,5,5,0,1,69.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0009003782118937784,57753.50770719746,10,5,10,10_0,10_4,10_1_0 -8767,2,87.0,0.0,2,111,0.0,0.0,684.0,77,75,0.0,0.0,349.46472102886713,684.0,0.0,781.9801098624,50,2,1,2,1,2,2,2,2,0,,2,,2,117268,2,2,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,921.670894056837,0.0,59426.8265366711,5,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011509953330217244,39617.884357780735,9,5,9,9_0,9_4,9_0_1 -8768,2,71.0,0.0,2,111,600.0,90.0,0.0,0,74,0.0,0.0,829.3045365455583,690.0,0.0,163.2287610762704,20,0,0,0,0,0,0,0,0,0,,2,,2,102963,2,2,0,1,1,822.0,0.0,900.0,11,0.0,3.0,3.0,1.0,1.0,4,3,1141.12906893684,600.0,34586.287354391185,0,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019950103141451965,34586.287354391185,9,5,9,9_0,9_4,9_0_1 -8769,2,69.0,0.0,2,111,240.0,0.0,0.0,0,90,0.0,0.0,331.72181461822333,240.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,104066,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1008.92506931162,240.0,18534.37820224247,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012948910256453191,18534.37820224247,4,2,4_0,4_0_0,4_4_0,4_0_1 -8770,2,84.0,0.0,2,111,66.0,539.0,0.0,0,77,0.0,0.0,91.22349902001142,605.0,0.0,977.558913556775,43,0,0,0,0,0,0,0,0,0,,2,,2,117057,2,1,0,0,1,,120.0,280.0,11,0.0,0.0,3.0,1.0,1.0,3,2,1241.03492761896,66.0,23775.0,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02544689800210305,23775.0,6,3,6,6_0,6_4,6_0_1 -8771,1,45.0,217.0,2,111,1200.0,0.0,0.0,56,62,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,103707,1,2,0,1,1,1056.0,0.0,389.0,43,2.0,0.0,4.0,5.0,2.4,2,2,706.384348451028,1200.0,29298.553396616408,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04095765356587824,12207.730581923504,2,1,2_1,2_0_1,2_4_1,2_0_1 -8772,1,42.0,178.0,2,111,344.0,0.0,0.0,0,54,0.0,0.0,475.4679342861201,344.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,75.0,2,,2,114176,1,3,0,1,1,1340.0,0.0,530.0,32,2.0,0.0,4.0,3.0,2.0,2,2,1054.61487267429,344.0,25193.535947796947,0,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.013654296114399977,12596.767973898473,2,1,2_1,2_0_1,2_4_1,2_0_1 -8773,2,60.0,0.0,5,111,636.0,0.0,0.0,0,52,0.0,0.0,879.0628087382918,636.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,3,133647,1,1,0,1,2,475.0,0.0,937.0,22,2.0,2.0,4.0,2.0,1.5,1,1,948.991330988508,636.0,30800.348039326414,0,4,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02064911731477658,20533.565359550943,5,3,5,5_0,5_4,5_0_0 -8774,2,86.0,0.0,2,111,570.0,64.0,0.0,0,77,0.0,0.0,787.8393097182804,634.0,0.0,116.07378565423673,71,2,2,2,1,1,2,2,2,0,,2,,2,111206,2,1,0,1,1,557.0,0.0,273.0,21,2.0,2.0,3.0,3.0,2.0,2,2,817.188479289211,570.0,32979.13595104869,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019224275643274995,16489.567975524344,4,2,4_0,4_0_0,4_4_0,4_0_1 -8775,2,64.0,0.0,2,111,487.0,480.0,0.0,56,64,0.0,0.0,673.1188488294782,967.0,0.0,870.5533924067755,50,2,1,2,1,1,2,2,2,2,15.0,2,,2,109959,1,2,0,1,1,750.0,0.0,302.0,43,2.0,2.0,4.0,3.0,2.0,2,2,863.072729601886,487.0,24596.230824748895,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.039314966869923744,12298.115412374447,2,1,2_0,2_0_0,2_4_0,2_0_1 -8776,1,62.0,235.0,2,111,400.0,0.0,0.0,0,75,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130682,2,3,0,1,2,272.0,0.0,410.0,11,0.0,2.0,1.0,1.0,1.0,3,3,1219.32750272656,400.0,9759.821440181438,0,5,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04098435636877429,9759.821440181438,2,1,2_1,2_0_1,2_4_1,2_0_1 -8777,2,68.0,0.0,2,111,250.0,0.0,0.0,77,90,0.0,0.0,345.54355689398267,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117156,2,2,0,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,921.670894056837,250.0,68068.15006457787,6,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0036727896933120563,45378.766709718584,10,5,10,10_0,10_4,10_0_1 -8778,2,84.0,0.0,1,111,600.0,950.0,0.0,0,77,0.0,0.0,829.3045365455583,1550.0,0.0,1722.9702558050765,12,0,0,0,0,0,0,0,0,0,,2,,1,132103,2,1,0,0,1,,0.0,,21,0.0,3.0,5.0,2.0,1.5,2,2,823.207405280466,600.0,44266.429347721874,0,5,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03501524796193595,29510.95289848125,8,4,8,8_0,8_4,8_1_0 -8779,2,49.0,0.0,1,111,260.0,1175.0,0.0,0,43,0.0,0.0,359.36529916974195,1435.0,0.0,2131.0421584957526,50,2,2,2,2,1,2,2,2,1,10.0,2,,1,125353,2,2,0,0,1,,126.0,,22,1.0,0.0,2.0,2.0,1.5,3,3,749.469623518885,260.0,60853.309953977194,0,1,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02358129740330111,40568.87330265146,9,5,9,9_0,9_4,9_1_0 -8780,2,53.0,0.0,2,111,1500.0,2000.0,0.0,31,31,0.0,0.0,2073.261341363896,3500.0,0.0,3627.3058016948976,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,106198,2,1,2,0,1,,2000.0,,43,2.0,1.0,12.0,4.0,2.5,2,2,777.060766531783,1500.0,709099.5630840434,1,1,0,1,260.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004935837197216232,283639.8252336174,10,5,10,10_1,10_4,10_0_1 -8781,2,79.0,0.0,2,111,500.0,200.0,0.0,74,74,5227.547069563002,0.0,691.0871137879653,4200.0,0.0,362.73058016948977,33,0,0,0,0,0,0,0,0,0,,1,,2,110716,2,2,1,0,1,,420.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,866.273821558505,500.0,72723.72294097774,5,5,0,1,110.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05775281888976864,48482.48196065182,10,5,10,10_1,10_4,10_0_1 -8782,2,69.0,0.0,1,111,400.0,700.0,0.0,0,90,0.0,0.0,552.8696910303722,1100.0,0.0,1269.5570305932142,10,0,0,0,0,0,0,0,0,0,,1,,1,117642,2,2,2,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,800.983492205788,400.0,16361.090756365149,0,5,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06723268126680698,16361.090756365149,4,2,4_0,4_1_0,4_4_0,4_1_0 -8783,2,35.0,0.0,7,111,600.0,0.0,0.0,54,54,0.0,0.0,829.3045365455583,600.0,0.0,0.0,70,1,2,2,1,1,2,2,2,2,15.0,2,,5,113003,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,839.65286201857,600.0,46715.34824986325,1,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012843744561012801,31143.565499908833,8,4,8,8_0,8_4,8_0_0 -8784,2,33.0,0.0,2,111,336.0,1000.0,0.0,37,37,0.0,0.0,464.41054046551267,1336.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,3,45.0,2,,2,104529,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1100.73079904343,336.0,73319.45861781327,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018221629362596154,34914.02791324441,9,5,9,9_0,9_4,9_0_1 -8785,2,57.0,0.0,2,111,390.0,1100.0,0.0,55,64,0.0,0.0,539.0479487546129,1490.0,0.0,1995.0181909321939,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,124743,2,2,4,0,1,,212.0,,43,2.0,4.0,4.0,3.0,2.0,1,1,811.435396901087,390.0,28997.743682580916,1,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051383308174251165,14498.871841290458,3,2,3_0,3_1_0,3_4_0,3_0_1 -8786,2,49.0,0.0,2,111,636.0,1640.0,0.0,38,34,0.0,0.0,879.0628087382918,2276.0,0.0,2974.3907573898164,70,0,0,0,0,0,0,0,0,3,60.0,1,,2,101635,2,2,2,0,1,,690.0,,43,2.0,0.0,7.0,5.0,3.0,1,1,657.390758152036,636.0,167705.97365651894,1,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013571371075078751,55901.99121883965,10,5,10,10_1,10_4,10_0_1 -8787,2,53.0,0.0,1,111,1200.0,0.0,0.0,37,38,2240.377315527001,0.0,1658.6090730911167,2700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,128790,2,3,2,0,1,,900.0,,43,2.0,1.0,4.0,5.0,2.8,2,2,496.3982774349,1200.0,89612.71027498628,1,1,1,2,90.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03012965450676314,32004.539383923675,8,4,8,8_1,8_4,8_1_0 -8788,1,35.0,300.0,2,111,634.0,0.0,0.0,0,52,0.0,0.0,876.29846028314,634.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,20.0,2,,2,120716,1,2,0,0,1,,0.0,486.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1174.18259817928,634.0,5864.279964008074,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10811216447563299,5864.279964008074,1,1,1_1,1_0_1,1_4_1,1_0_1 -8789,2,57.0,0.0,2,111,250.0,150.0,0.0,0,43,0.0,0.0,345.54355689398267,400.0,0.0,272.04793512711734,31,2,1,2,1,2,2,2,2,2,60.0,1,,2,128738,2,1,2,0,1,,500.0,,32,1.0,0.0,5.0,2.0,1.5,3,3,845.272285024066,250.0,33222.01044154847,0,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.012040210531622363,22148.00696103231,6,3,6,6_1,6_4,6_0_1 -8790,2,30.0,0.0,9,111,280.0,400.0,0.0,0,43,0.0,0.0,387.00878372126056,680.0,0.0,725.4611603389795,20,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,131987,2,1,0,1,1,,0.0,730.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1458.88863330894,280.0,26284.607189022012,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025870654832688834,26284.607189022012,7,4,7,7_0,7_4,7_0_0 -8791,2,26.0,0.0,9,111,300.0,0.0,0.0,0,55,0.0,0.0,414.65226827277917,300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,15.0,2,2004.0,6,121490,2,1,0,0,1,,0.0,627.0,12,1.0,0.0,1.0,1.0,1.0,2,2,886.733038770676,300.0,18035.08090907893,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016634247526385027,18035.08090907893,4,2,4_0,4_0_0,4_4_0,4_0_0 -8792,2,39.0,0.0,6,111,500.0,1255.0,0.0,46,54,0.0,0.0,691.0871137879653,1755.0,0.0,2276.1343905635485,42,1,2,2,2,2,2,2,1,2,60.0,2,,4,104823,2,1,0,0,1,,0.0,496.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1033.5722599875,500.0,42345.39219226953,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.041444887132734795,23525.21788459418,6,3,6,6_0,6_4,6_0_0 -8793,2,68.0,0.0,1,111,2000.0,360.0,0.0,77,78,0.0,0.0,2764.3484551518613,2360.0,0.0,652.9150443050816,31,0,0,0,0,0,0,0,0,0,,1,,1,120015,2,1,1,0,1,,0.0,,41,0.0,1.0,4.0,4.0,2.5,2,2,550.110473311757,2000.0,33789.06087862525,5,5,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06984509005673258,13515.6243514501,3,2,3_0,3_1_0,3_4_0,3_1_0 -8794,1,38.0,350.0,2,111,960.0,40.0,0.0,54,62,0.0,0.0,1326.8872584728933,1000.0,0.0,72.54611603389796,41,1,2,2,2,1,2,2,2,0,,2,,2,130143,2,2,0,1,1,1164.0,0.0,450.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,1,1,252.502245760941,960.0,20792.29940026015,1,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04809472876229784,7700.851629725983,1,1,1_1,1_0_1,1_4_1,1_0_1 -8795,2,48.0,0.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,912.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,126777,2,2,0,1,1,,0.0,611.0,32,1.0,0.0,3.0,3.0,2.0,2,2,230.967886374669,0.0,50883.95916501783,0,4,2,3,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01792313363514744,25441.979582508917,7,4,7,7_0,7_4,7_0_1 -8796,2,61.0,0.0,2,111,230.0,70.0,0.0,0,68,0.0,0.0,317.900072342464,300.0,0.0,126.95570305932142,71,2,2,1,2,1,2,2,2,3,75.0,2,,2,114570,1,3,0,1,1,612.0,0.0,370.0,12,1.0,2.0,3.0,1.0,1.0,1,1,265.077146317237,230.0,17334.017961999034,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017307008718791168,17334.017961999034,4,2,4_0,4_0_0,4_4_0,4_0_1 -8797,1,34.0,305.0,2,111,600.0,120.0,0.0,0,43,0.0,0.0,829.3045365455583,720.0,0.0,217.63834810169388,31,2,2,2,2,1,2,2,2,0,,2,,2,129372,2,3,0,1,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,2,2,279.960941723126,600.0,13377.742203869171,0,4,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05382074112564064,13377.742203869171,3,2,3_1,3_0_1,3_4_1,3_0_1 -8798,1,40.0,274.0,2,111,299.0,160.0,0.0,0,68,0.0,0.0,413.2700940452032,459.0,0.0,290.18446413559184,31,2,1,2,2,1,2,2,2,0,,2,,2,120072,1,3,0,1,2,33.0,0.0,294.0,32,1.0,0.0,2.0,2.0,1.3,2,1,248.609155320571,299.0,10173.79111111111,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04511592532096634,7825.993162393161,1,1,1_1,1_0_1,1_4_1,1_0_1 -8799,2,51.0,0.0,2,111,765.0,1530.0,0.0,56,38,0.0,0.0,1057.3632840955868,2295.0,0.0,2774.8889382965967,60,0,0,0,0,0,0,0,0,0,,1,,2,105441,2,1,1,0,1,,720.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,558.450301999033,765.0,61127.2740682649,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03754461547617877,29108.22574679281,8,4,8,8_1,8_4,8_0_1 -8800,2,54.0,0.0,2,111,0.0,0.0,450.0,56,53,0.0,0.0,229.91100067688626,450.0,0.0,514.4605985936842,10,0,0,0,0,0,0,0,0,3,45.0,2,,2,131059,2,3,0,0,1,,600.0,320.0,43,2.0,0.0,4.0,3.0,1.8,1,1,231.273959228155,0.0,33043.90898502401,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013618243537831635,18357.727213902228,4,2,4_0,4_0_0,4_4_0,4_0_1 -8801,2,53.0,0.0,6,112,1232.0,1200.0,0.0,52,38,0.0,0.0,1702.8386483735464,2432.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,2,15.0,1,,4,107193,1,1,2,0,1,,756.0,,43,6.0,0.0,7.0,6.0,3.5,1,1,865.79148062768,1232.0,115136.39330776871,1,1,0,1,120.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02112277386958849,32896.112373648204,8,4,8,8_1,8_0,8_0_0 -8802,2,29.0,0.0,1,112,326.0,1392.0,0.0,43,34,0.0,0.0,450.58879818975333,1718.0,0.0,2524.604837979649,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,113654,2,2,1,0,1,,367.0,828.0,43,2.0,0.0,5.0,3.0,1.8,1,1,1026.66071483082,326.0,52690.52063626981,1,1,2,3,80.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032605485374866565,29272.511464594336,8,4,8,8_1,8_0,8_1_0 -8803,2,60.0,0.0,1,112,1270.0,1334.0,0.0,11,33,0.0,0.0,1755.3612690214318,2604.0,0.0,2419.412969730497,41,0,0,0,0,0,0,0,0,2,45.0,1,,1,103928,2,2,2,0,1,,443.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,945.137939331057,1270.0,37044.6781191783,1,1,0,1,160.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07029349780345075,24696.4520794522,7,4,7,7_1,7_0,7_1_0 -8804,2,62.0,0.0,1,112,1300.0,3600.0,0.0,31,74,0.0,0.0,1796.8264958487098,4900.0,0.0,6529.150443050816,60,0,0,0,0,0,0,0,0,0,,1,,1,100828,2,1,2,0,1,,1250.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,638.724937511658,1300.0,54620.52134346718,1,5,0,1,167.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08970987239736514,36413.680895644786,9,5,9,9_1,9_0,9_1_0 -8805,2,37.0,0.0,1,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,299.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,128433,1,1,0,0,1,,0.0,700.0,32,1.0,0.0,2.0,3.0,1.6,1,1,767.332114210168,0.0,38906.750947703884,0,1,2,3,53.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007685041611464751,24316.719342314926,7,4,7,7_0,7_1,7_1_0 -8806,2,55.0,0.0,2,112,389.0,0.0,0.0,38,33,0.0,1095.2125100989863,537.665774527037,1447.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,101835,2,2,1,0,2,,134.0,,43,2.0,1.0,6.0,2.0,1.5,3,2,945.137939331057,389.0,62273.935448429256,1,1,0,1,110.0,10,1,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02323604553944242,41515.9569656195,9,5,9,9_1,9_1,9_0_1 -8807,2,65.0,0.0,6,112,2500.0,0.0,0.0,0,74,0.0,0.0,3455.435568939826,2602.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100894,2,1,1,0,1,,390.0,,21,1.0,1.0,7.0,2.0,1.5,2,2,817.813585671694,2500.0,92107.86921399613,0,5,0,1,180.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028249486414181606,61405.24614266409,10,5,10,10_1,10_1,10_0_0 -8808,2,61.0,0.0,9,112,2076.0,0.0,0.0,0,77,0.0,0.0,2869.393696447632,2076.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2010.0,6,131548,2,1,1,0,1,,226.0,,11,0.0,0.0,4.0,1.0,1.0,4,3,1178.09094590942,2076.0,19785.01146532721,0,5,0,1,96.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10492791493389547,19785.01146532721,5,3,5,5_1,5_1,5_0_0 -8809,2,38.0,0.0,9,112,1800.0,0.0,0.0,52,48,0.0,155.27587572291867,2487.913609636675,1950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,121375,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1017.86281959669,1800.0,70597.39514351715,1,1,1,2,115.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027621415719883902,33617.80721119864,9,5,9,9_1,9_1,9_0_0 -8810,1,29.0,215.0,2,111,240.0,120.0,0.0,0,56,0.0,0.0,331.72181461822333,360.0,0.0,217.63834810169388,20,2,2,2,2,1,1,2,2,2,20.0,2,,2,114192,1,3,0,1,1,600.0,0.0,321.0,32,1.0,0.0,2.0,2.0,1.3,2,2,247.985085400259,240.0,13833.635277976902,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.026023528361566586,10641.257906136078,2,1,2_1,2_0_1,2_4_1,2_0_1 -8811,1,37.0,296.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,495.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125282,2,1,0,1,1,,0.0,134.0,12,1.0,1.0,1.0,1.0,1.0,2,2,264.061809611785,0.0,9689.613182860292,0,4,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05108563062925905,9689.613182860292,1,1,1_1,1_0_1,1_4_1,1_0_1 -8812,1,50.0,400.0,5,111,600.0,0.0,0.0,0,85,0.0,0.0,829.3045365455583,790.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,123496,1,3,0,1,2,,0.0,300.0,11,0.0,3.0,4.0,1.0,1.0,2,2,279.25817113382,600.0,10083.008033264601,0,7,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07834963508843101,10083.008033264601,2,1,2_1,2_0_1,2_4_1,2_0_0 -8813,1,34.0,331.0,5,111,360.0,0.0,0.0,85,65,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,1,2,2,2,1,2,2,2,2,25.0,2,,3,118801,1,2,0,1,1,,0.0,425.0,42,1.0,0.0,2.0,6.0,2.6999999999999997,1,1,239.181753180412,360.0,37261.006367475755,6,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.00966157479617178,13800.372728694725,3,2,3_1,3_0_1,3_4_1,3_0_0 -8814,2,29.0,0.0,5,111,960.0,0.0,0.0,0,37,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,7.0,2,,3,102619,2,1,0,0,1,,0.0,239.0,22,2.0,0.0,1.0,2.0,1.5,2,2,299.784111825052,960.0,45079.143723060464,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0212958792185067,30052.76248204031,8,4,8,8_0,8_4,8_0_0 -8815,1,57.0,173.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,962.0,0.0,0.0,20,2,2,2,1,1,2,2,2,3,50.0,2,,2,129530,1,2,0,1,1,,0.0,549.0,22,1.0,3.0,3.0,2.0,1.5,2,2,234.471368179545,0.0,20009.687552650288,0,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.04807671271571569,13339.791701766859,3,2,3_1,3_0_1,3_4_1,3_0_1 -8816,2,75.0,0.0,1,111,292.0,1284.0,0.0,0,56,0.0,0.0,403.5948744521717,1576.0,0.0,2328.7303246881243,50,0,0,0,0,0,0,0,0,1,10.0,1,,1,124064,2,1,2,0,1,,352.0,,11,0.0,3.0,4.0,1.0,1.0,3,2,683.372028472254,292.0,39555.47652531144,0,5,0,1,103.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03984277623331176,39555.47652531144,9,5,9,9_1,9_4,9_1_0 -8817,1,29.0,103.0,5,111,1200.0,0.0,0.0,43,90,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,5.0,2,,3,105639,1,1,0,0,1,,0.0,721.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1089.58708956369,1200.0,17266.502011349206,1,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06949873223952625,11511.001340899471,2,1,2_1,2_0_1,2_4_1,2_0_0 -8818,2,61.0,0.0,7,111,2000.0,2800.0,0.0,42,22,0.0,0.0,2764.3484551518613,4800.0,0.0,5078.228122372857,71,0,0,0,0,0,0,0,0,1,1.0,1,,5,129122,1,2,2,0,2,,1250.0,,43,3.0,1.0,7.0,5.0,3.0,1,1,464.585003622126,2000.0,102579.94389113045,1,1,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046792772718752006,34193.314630376815,9,5,9,9_1,9_4,9_0_0 -8819,2,78.0,0.0,1,111,320.0,1600.0,0.0,0,77,0.0,0.0,442.2957528242978,1920.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,0,,1,,1,110134,1,2,1,0,1,,600.0,,11,0.0,2.0,4.0,1.0,1.0,4,2,642.500480398067,320.0,24344.35602856484,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07886838319925725,24344.35602856484,7,4,7,7_1,7_4,7_1_0 -8820,2,71.0,0.0,5,111,489.0,1316.0,0.0,74,74,0.0,0.0,675.88319728463,1805.0,0.0,2386.767217515243,41,0,0,0,0,0,0,0,0,0,,1,,3,108074,2,1,1,0,1,,433.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,716.023080924173,489.0,76210.4915685926,5,5,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02368440306378847,50806.99437906173,10,5,10,10_1,10_4,10_0_0 -8821,2,81.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,116552,2,1,0,1,1,831.0,0.0,540.0,11,0.0,4.0,4.0,1.0,1.0,1,1,989.615988453843,300.0,26128.493608346947,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011481718176977592,26128.493608346947,7,4,7,7_0,7_4,7_0_1 -8822,2,75.0,0.0,2,111,330.0,83.0,0.0,0,74,0.0,0.0,456.1174951000571,413.0,0.0,150.53319077033825,60,2,2,2,2,1,2,2,2,0,,2,,2,109733,1,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1064.71032886722,330.0,31864.980475539855,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012960936860357607,31864.980475539855,8,4,8,8_0,8_4,8_0_1 -8823,2,51.0,0.0,5,111,900.0,0.0,0.0,46,33,0.0,0.0,1243.9568048183376,1267.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,,3,112355,2,1,0,1,1,1200.0,0.0,1300.0,43,2.0,2.0,6.0,3.0,2.0,2,2,905.991127069838,900.0,57860.49806747728,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0218974955680889,28930.24903373864,8,4,8,8_0,8_4,8_0_0 -8824,2,60.0,0.0,2,111,400.0,250.0,0.0,0,38,0.0,0.0,552.8696910303722,650.0,0.0,453.4132252118622,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,130360,2,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1064.79724074225,400.0,66415.44186110739,0,1,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009786880607665388,66415.44186110739,10,5,10,10_0,10_4,10_0_1 -8825,2,51.0,0.0,5,111,600.0,400.0,0.0,0,46,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,42,0,0,0,0,0,0,0,0,2,15.0,2,,3,101117,2,1,0,1,2,,600.0,,32,2.0,0.0,2.0,2.0,1.5,1,1,945.477372277686,600.0,50810.47136399484,0,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019680982544645648,33873.64757599656,9,5,9,9_0,9_4,9_0_0 -8826,2,80.0,0.0,2,111,720.0,0.0,0.0,0,74,0.0,0.0,995.16544385467,1321.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,112489,2,1,0,1,2,,302.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1008.10625187041,720.0,53489.20805274526,0,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024696570543676265,53489.20805274526,10,5,10,10_0,10_4,10_0_1 -8827,1,47.0,190.0,5,111,600.0,0.0,0.0,0,56,0.0,0.0,829.3045365455583,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,123201,1,1,0,0,1,,0.0,395.0,32,1.0,0.0,3.0,3.0,2.0,2,2,934.457128368659,600.0,21317.5801508846,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02814578370308612,10658.7900754423,2,1,2_1,2_0_1,2_4_1,2_0_0 -8828,2,41.0,0.0,5,111,0.0,0.0,0.0,54,53,0.0,0.0,0.0,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,3,103661,1,1,0,1,1,48.0,0.0,750.0,43,2.0,2.0,2.0,2.0,1.5,2,2,891.307932704452,0.0,17982.547807747145,4,1,2,3,52.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03336568357357633,11988.365205164764,2,1,2_0,2_0_0,2_4_0,2_0_0 -8829,2,70.0,0.0,5,111,380.0,0.0,0.0,77,75,0.0,0.0,525.2262064788536,380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,126869,1,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,779.641796785105,380.0,37962.37142355092,5,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010009912072148828,25308.247615700613,7,4,7,7_0,7_4,7_0_0 -8830,0,58.0,0.0,5,111,100.0,100.0,0.0,74,42,0.0,0.0,138.21742275759306,200.0,0.0,181.36529008474488,30,0,0,0,0,0,0,0,0,2,15.0,2,,3,109204,2,1,0,1,1,1500.0,583.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1085.12176847343,100.0,66201.15251487435,5,1,5,0,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003021095440220065,44134.101676582904,10,5,10,10_0,10_4,10_0_0 -8831,2,43.0,0.0,2,111,340.0,0.0,0.0,54,45,0.0,0.0,469.9392373758164,341.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,6.0,2,,2,106003,1,2,0,1,1,167.0,0.0,115.0,43,2.0,0.0,1.0,2.0,1.5,3,2,1176.68010122843,340.0,51887.02406144953,1,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006571970664498999,34591.34937429969,9,5,9,9_0,9_4,9_0_1 -8832,2,51.0,0.0,7,111,520.0,0.0,0.0,0,42,0.0,0.0,718.7305983394839,520.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,5,114051,2,2,0,0,1,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,2,2,849.790190174467,520.0,27120.68334890782,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019173558177358423,27120.68334890782,7,4,7,7_0,7_4,7_0_0 -8833,2,40.0,0.0,7,111,265.0,498.0,0.0,0,37,0.0,0.0,366.2761703076216,763.0,0.0,903.1991446220295,50,1,2,2,2,1,2,2,2,3,60.0,2,,5,125952,2,1,0,1,1,,0.0,516.0,32,1.0,0.0,3.0,2.0,1.3,1,1,781.056057411998,265.0,42852.226085978655,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0178053760490556,32963.25083536819,8,4,8,8_0,8_4,8_0_0 -8835,2,51.0,0.0,7,111,1100.0,0.0,0.0,42,38,0.0,672.8621281326475,1520.3916503335236,1750.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,45.0,1,,5,128367,2,1,1,0,1,,804.0,,43,2.0,0.0,6.0,5.0,3.0,5,5,473.954827102988,1100.0,131330.14785726543,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013325196297669338,43776.71595242181,10,5,10,10_1,10_4,10_0_0 -8836,2,44.0,0.0,5,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,879.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121119,2,1,2,0,2,,333.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,573.350333945123,0.0,45279.322343022824,6,1,1,2,153.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019412834700593674,18866.384309592846,5,3,5,5_1,5_4,5_0_0 -8837,2,86.0,0.0,2,111,600.0,2448.0,0.0,0,77,0.0,64.18069529880638,829.3045365455583,3110.0,0.0,4439.822301274555,41,1,2,2,1,1,2,2,2,0,,1,,2,112918,2,1,3,0,1,,480.0,,21,2.0,1.0,6.0,3.0,2.0,1,1,669.509010734501,600.0,49986.32356055116,0,5,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06221701814562712,24993.16178027558,7,4,7,7_1,7_4,7_0_1 -8838,2,25.0,0.0,2,111,1440.0,0.0,0.0,52,46,0.0,0.0,1990.33088770934,1440.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,60.0,2,,2,125541,2,2,0,0,1,,394.0,759.0,43,2.0,0.0,3.0,2.0,1.5,1,1,891.785751875008,1440.0,45538.53657331805,1,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03162156951797448,30359.024382212036,8,4,8,8_0,8_4,8_0_1 -8839,2,74.0,0.0,1,111,524.0,1824.0,0.0,0,77,0.0,0.0,724.2592952497876,2348.0,0.0,3308.102891145747,50,0,0,0,0,0,0,0,0,0,,1,,1,116545,2,1,1,0,2,,888.0,,21,0.0,2.0,4.0,2.0,1.5,1,1,672.400398234163,524.0,25844.460850011277,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09085118910495575,17229.640566674185,4,2,4_0,4_1_0,4_4_0,4_1_0 -8840,2,43.0,0.0,2,111,542.0,498.0,0.0,55,67,0.0,0.0,749.1384313461543,1040.0,0.0,903.1991446220295,60,2,2,2,1,1,2,2,2,3,15.0,2,,2,122583,2,1,0,1,1,372.0,355.0,280.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1031.58942954225,542.0,34518.302855279166,1,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.030128943603058525,23012.201903519443,6,3,6,6_0,6_4,6_0_1 -8841,2,28.0,0.0,5,111,226.0,240.0,0.0,0,38,0.0,0.0,312.37137543216033,466.0,0.0,435.27669620338776,41,0,0,0,0,0,0,0,0,3,60.0,2,,3,110206,1,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,5,3,703.977580793623,226.0,35785.9995351951,0,1,1,2,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01302185229007491,35785.9995351951,9,5,9,9_0,9_4,9_0_0 -8842,2,43.0,0.0,2,111,1132.0,1456.0,0.0,85,63,0.0,0.0,1564.6212256159533,2588.0,0.0,2640.6786236338858,50,2,1,2,2,1,2,2,2,0,,2,,2,116565,2,1,0,1,1,359.0,482.0,432.0,42,1.0,0.0,3.0,5.0,2.8,1,1,706.446291345923,1132.0,42125.62248034016,6,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06143529395222132,15044.865171550056,3,2,3_0,3_0_0,3_4_0,3_0_1 -8843,2,69.0,0.0,5,111,732.0,0.0,0.0,74,74,2658.581081092041,0.0,1011.7515345855811,2512.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,3,131305,2,1,3,0,1,,403.0,,41,1.0,1.0,6.0,3.0,2.0,4,3,764.751453673191,732.0,176658.72737895223,5,5,0,1,175.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.014219506940132576,88329.36368947611,10,5,10,10_1,10_4,10_0_0 -8844,0,67.0,0.0,1,111,1055.6,2489.0,0.0,0,75,0.0,0.0,1459.0231146291521,3545.0,0.0,4514.1820702093,41,0,0,0,0,0,0,0,0,0,,1,,1,121571,2,1,1,0,1,,385.0,,21,2.0,1.0,7.0,5.0,2.5999999999999996,1,1,510.26568802649,1055.6,64228.23383737281,0,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05519379544167463,24703.166860528007,7,4,7,7_1,7_4,7_1_0 -8845,2,36.0,0.0,9,111,0.0,0.0,0.0,54,65,0.0,0.0,0.0,1591.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,105313,2,1,1,0,1,,777.0,680.0,43,2.0,0.0,6.0,5.0,2.5999999999999996,4,3,978.652549797442,0.0,49397.51619866635,1,1,2,3,107.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03220809713592349,18999.044691794752,5,3,5,5_1,5_4,5_0_0 -8846,2,41.0,0.0,9,111,1000.0,500.0,0.0,45,37,0.0,186.3310508675024,1382.1742275759307,1680.0,0.0,906.8264504237244,50,1,2,2,1,1,2,2,2,3,75.0,1,2006.0,6,117762,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1081.42812329001,1000.0,82319.31761777683,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.020408332437843294,39199.675056084205,9,5,9,9_1,9_4,9_0_0 -8847,2,75.0,0.0,1,111,1123.0,3220.0,0.0,86,74,0.0,0.0,1552.1816575677701,4343.0,0.0,5839.962340728785,41,0,0,0,0,0,0,0,0,0,,1,,1,125109,2,2,1,0,2,,687.0,,41,0.0,3.0,9.0,2.0,1.5,3,3,636.112550231814,1123.0,107801.85873151055,7,5,0,1,210.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04028687493057611,71867.90582100704,10,5,10,10_1,10_4,10_1_0 -8848,2,40.0,0.0,6,111,780.0,1752.0,0.0,42,38,0.0,62.110350289167464,1078.0958975092258,2592.0,0.0,3177.5198822847306,50,0,0,0,0,0,0,0,0,3,75.0,1,,4,128774,2,2,3,0,1,,684.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,736.780662555607,780.0,89913.22885337839,1,1,1,2,145.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028827793563356262,42815.823263513514,9,5,9,9_1,9_4,9_0_0 -8849,2,62.0,0.0,7,111,2995.0,0.0,0.0,23,37,0.0,0.0,4139.611811589912,2995.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,150.0,1,,5,119799,2,1,2,0,1,,470.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,598.057848739794,2995.0,85565.09114740007,1,1,0,1,155.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0350025922936331,42782.54557370004,9,5,9,9_1,9_4,9_0_0 -8850,2,32.0,0.0,6,111,575.0,2030.0,0.0,42,45,0.0,0.0,794.7501808561601,2605.0,0.0,3681.7153887203212,50,2,1,2,1,1,2,2,2,3,90.0,1,,4,126713,2,1,2,0,1,,756.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,809.606061471296,575.0,42073.36084643046,4,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06191566225261537,20034.93373639546,5,3,5,5_1,5_4,5_0_0 -8851,2,43.0,0.0,7,111,910.0,1820.0,0.0,37,23,0.0,54.86414275543126,1257.778547094097,2783.0,0.0,3300.848279542357,41,0,0,0,0,0,0,0,0,2,25.0,1,,5,106929,2,1,3,0,1,,1112.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,532.234144845645,910.0,128865.65239447894,1,1,1,2,176.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021596134798439384,49563.71245941498,10,5,10,10_1,10_4,10_0_0 -8852,2,67.0,0.0,7,111,560.0,1020.0,0.0,75,75,0.0,0.0,774.0175674425211,1580.0,0.0,1849.925958864398,60,0,0,0,0,0,0,0,0,0,,1,,5,122709,2,1,2,0,1,,320.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,701.349236967413,560.0,51573.51759547847,5,5,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030635878134062374,34382.34506365231,9,5,9,9_1,9_4,9_0_0 -8853,2,67.0,0.0,2,111,535.0,1636.0,0.0,75,74,0.0,0.0,739.4632117531229,2171.0,0.0,2967.1361457864264,50,2,2,2,1,1,2,2,2,0,,1,,2,116061,1,3,3,0,1,,488.0,,41,0.0,2.0,8.0,2.0,1.5,4,3,776.015810759564,535.0,60886.39841354141,6,5,0,1,203.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,0,0.03565656791282895,40590.93227569427,9,5,9,9_1,9_4,9_0_1 -8854,2,53.0,0.0,5,111,531.0,2658.0,0.0,42,42,0.0,72.46207533736204,733.9345148428191,3259.0,0.0,4820.689410452519,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,112426,2,2,3,0,1,,853.0,,43,2.0,0.0,7.0,5.0,3.0,2,2,622.490849225285,531.0,132789.5746013423,1,1,1,2,230.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024542589354503864,44263.191533780766,10,5,10,10_1,10_4,10_0_0 -8855,2,44.0,0.0,5,111,4440.0,0.0,0.0,37,37,0.0,273.28554127233684,6136.853570437132,4704.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,,3,109621,2,1,1,0,1,,750.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,729.264297686466,4440.0,148869.5108093005,4,1,1,2,230.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03159814238944971,99246.34053953366,10,5,10,10_1,10_4,10_0_0 -8856,2,87.0,0.0,1,111,616.0,2317.0,0.0,71,71,0.0,0.0,851.4193241867732,2933.0,0.0,4202.233771263539,50,0,0,0,0,0,0,0,0,0,,1,,1,107792,2,1,3,0,2,,555.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,656.099038112394,616.0,19279.975930905795,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1521267459311711,12853.31728727053,2,1,2_0,2_1_0,2_4_0,2_1_0 -8857,2,42.0,0.0,2,111,828.0,0.0,0.0,0,35,0.0,0.0,1144.4402604328704,6210.0,9258.799936551612,0.0,60,1,2,2,2,1,2,2,2,2,30.0,1,,2,133422,2,2,4,0,1,,610.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,820.284617872395,828.0,37238.0,0,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.16676513239164295,28644.615384615383,8,4,8,8_1,8_4,8_0_1 -8858,2,74.0,0.0,2,111,660.0,0.0,0.0,0,90,4704.792362606702,0.0,912.2349902001142,3810.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123694,2,1,2,0,2,,180.0,,11,0.0,1.0,8.0,1.0,1.0,2,2,873.949518303716,660.0,46762.74410525342,0,5,0,1,135.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08147511599029487,46762.74410525342,10,5,10,10_1,10_4,10_0_1 -8859,2,60.0,0.0,5,111,2500.0,0.0,0.0,72,54,0.0,124.22070057833493,3455.435568939826,2750.0,223.64251054472493,0.0,12,2,2,2,2,2,2,2,1,2,45.0,1,,3,131911,2,2,3,0,1,,287.0,,42,1.0,2.0,4.0,2.0,1.5,3,3,732.08098837134,2500.0,45714.502796047775,5,1,0,1,103.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.060155964339565125,30476.335197365184,8,4,8,8_1,8_4,8_0_0 -8860,2,49.0,0.0,2,111,450.0,0.0,0.0,85,37,2987.1697540360015,0.0,621.9784024091688,2450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,110138,2,1,0,1,1,,0.0,,42,1.0,0.0,6.0,5.0,2.8,2,2,736.819944051623,450.0,151268.4749718916,6,1,1,2,118.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016196368744084012,54024.45534710415,10,5,10,10_0,10_4,10_0_1 -8861,2,31.0,0.0,2,111,0.0,0.0,0.0,52,33,0.0,0.0,0.0,576.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,25.0,2,,2,129549,2,3,0,1,1,467.0,0.0,324.0,43,2.0,0.0,2.0,2.0,1.5,2,2,880.653557307583,0.0,42114.91770930537,1,1,2,3,46.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013676863955327917,28076.611806203582,8,4,8,8_0,8_4,8_0_1 -8862,2,29.0,0.0,1,111,1140.0,0.0,0.0,35,35,0.0,0.0,1575.678619436561,1140.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,1,123893,2,1,0,0,1,,0.0,910.0,43,2.0,0.0,2.0,2.0,1.5,2,2,879.579797043279,1140.0,15385.817479887171,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.0740942105604882,10257.211653258115,2,1,2_0,2_0_0,2_4_0,2_1_0 -8863,2,36.0,0.0,2,111,800.0,0.0,0.0,0,34,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,111439,2,1,0,0,1,,0.0,693.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1525.84269854508,800.0,17658.835435241384,0,4,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04530310070184221,17658.835435241384,4,2,4_0,4_0_0,4_4_0,4_0_1 -8864,2,51.0,0.0,1,111,900.0,1200.0,0.0,31,37,0.0,31.055175144583732,1243.9568048183376,2130.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,116233,2,1,1,0,1,,1000.0,,43,2.0,1.0,7.0,4.0,2.3,1,1,555.819486562985,900.0,630786.2667785455,1,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0033767380683127554,274254.8985993676,10,5,10,10_1,10_4,10_1_0 -8865,2,32.0,0.0,1,111,600.0,0.0,0.0,55,38,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,10.0,2,,1,115102,2,3,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,2.0,1.5,3,3,967.846892256479,600.0,34694.345340755564,1,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.017293884467541112,23129.56356050371,6,3,6,6_0,6_4,6_1_0 -8866,2,75.0,0.0,5,111,240.0,900.0,0.0,75,74,0.0,0.0,331.72181461822333,1140.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,0,,2,,3,123304,2,2,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1060.0368768166,240.0,121092.21330206233,5,5,0,1,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00941431301743813,80728.14220137488,10,5,10,10_0,10_4,10_0_0 -8867,1,80.0,42.0,2,111,210.0,81.0,0.0,0,77,0.0,0.0,290.25658779094545,291.0,0.0,146.90588496864336,31,0,0,0,0,0,0,0,0,0,,2,,2,122524,2,2,0,1,1,640.0,0.0,325.0,11,0.0,3.0,4.0,1.0,1.0,2,2,993.025855950211,210.0,15523.720517747475,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01874550625072866,15523.720517747475,3,2,3_1,3_0_1,3_4_1,3_0_1 -8868,2,49.0,0.0,2,111,706.0,3060.0,0.0,46,37,0.0,0.0,975.815004668607,3766.0,0.0,5549.7778765931935,31,0,0,0,0,0,0,0,0,2,240.0,1,,2,126897,2,1,1,0,1,,750.0,,43,2.0,0.0,9.0,7.0,3.8,3,2,834.865545136117,706.0,60384.976500139586,1,1,1,2,194.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06236650601315204,15890.783289510418,3,2,3_0,3_1_0,3_4_0,3_0_1 -8869,2,87.0,0.0,5,111,800.0,250.0,0.0,86,74,0.0,0.0,1105.7393820607444,1050.0,0.0,453.4132252118622,71,2,1,2,1,2,2,2,2,0,,2,,3,131521,2,2,0,1,2,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,821.986745971309,800.0,81719.42362932254,6,5,0,1,137.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012848842458345965,54479.61575288169,10,5,10,10_0,10_4,10_0_0 -8870,2,46.0,0.0,5,111,347.0,0.0,0.0,42,34,0.0,0.0,479.6144569688479,816.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,5.0,2,,3,126723,1,1,0,1,2,,0.0,1365.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,1,1,932.465329829823,347.0,57805.042449946624,1,1,2,3,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014116415548117177,19932.773258602287,5,3,5,5_0,5_4,5_0_0 -8871,2,78.0,0.0,2,111,330.0,90.0,0.0,74,74,0.0,0.0,456.1174951000571,420.0,0.0,163.2287610762704,10,2,1,2,2,2,2,2,1,0,,2,,2,125969,2,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,802.058884541439,330.0,63538.088953947736,5,5,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0066102082532638815,42358.72596929849,9,5,9,9_0,9_4,9_0_1 -8872,2,79.0,0.0,5,111,450.0,0.0,0.0,74,74,0.0,0.0,621.9784024091688,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,116528,2,1,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,821.986745971309,450.0,88398.42381584199,5,5,0,1,113.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0050905885034497065,58932.28254389466,10,5,10,10_0,10_4,10_0_0 -8873,2,30.0,0.0,2,111,0.0,0.0,0.0,84,47,0.0,0.0,0.0,426.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,40.0,2,,2,105108,2,1,0,1,1,650.0,0.0,380.0,42,1.0,0.0,3.0,2.0,1.5,3,2,612.072471509126,0.0,25503.483369097146,3,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016703600595838173,17002.322246064763,4,2,4_0,4_0_0,4_4_0,4_0_1 -8874,2,34.0,0.0,1,111,300.0,600.0,0.0,45,37,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,70,0,0,0,0,0,0,0,0,3,30.0,2,,1,109102,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,764.28143153286,300.0,68270.4431629451,1,1,1,2,53.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0131828644769731,32509.734839497665,8,4,8,8_0,8_4,8_1_0 -8875,2,62.0,0.0,1,111,600.0,250.0,0.0,0,78,0.0,0.0,829.3045365455583,850.0,0.0,453.4132252118622,50,0,0,0,0,0,0,0,0,0,,2,,1,119586,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,4,4,961.640381199187,600.0,18838.916249877526,0,5,0,1,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045119368265439684,18838.916249877526,5,3,5,5_0,5_4,5_1_0 -8876,2,68.0,0.0,1,111,1250.0,0.0,0.0,0,77,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,132972,1,1,0,0,1,,0.0,,31,2.0,2.0,3.0,3.0,2.0,3,3,766.326213803537,1250.0,27238.61677809207,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045890729701273635,13619.308389046035,3,2,3_0,3_0_0,3_4_0,3_1_0 -8877,2,44.0,0.0,5,111,1159.0,1019.0,0.0,37,37,0.0,62.110350289167464,1601.9399297605034,2238.0,0.0,1848.1123059635504,50,2,2,2,2,2,2,2,1,2,45.0,1,,3,127611,1,1,2,0,1,,750.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,572.881934252155,1159.0,151149.0588938507,1,1,1,2,108.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.014806575815809131,62978.77453910447,10,5,10,10_1,10_4,10_0_0 -8878,2,38.0,0.0,2,111,530.0,0.0,0.0,33,34,0.0,0.0,732.5523406152432,530.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,55.0,2,,2,112294,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,901.33172512438,530.0,105414.59858069065,1,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005027766619955454,50197.42789556697,10,5,10,10_0,10_4,10_0_1 -8879,1,41.0,62.0,5,111,250.0,320.0,0.0,0,53,0.0,0.0,345.54355689398267,570.0,0.0,580.3689282711837,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,114746,1,1,0,0,1,,0.0,450.0,32,1.0,0.0,4.0,2.0,1.3,2,2,1107.66521150197,250.0,22965.46008656277,0,1,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024819881589636016,17665.738528125206,4,2,4_1,4_0_1,4_4_1,4_0_0 -8880,2,34.0,0.0,5,111,200.0,85.0,0.0,90,55,0.0,0.0,276.4348455151861,285.0,0.0,154.16049657203317,60,2,2,2,2,1,2,2,2,2,23.0,2,,3,128595,2,1,0,1,1,,0.0,1100.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1007.64009628942,200.0,18390.177903544507,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.01549740309717555,12260.118602363005,2,1,2_0,2_0_0,2_4_0,2_0_0 -8881,2,73.0,0.0,2,111,405.0,940.0,0.0,0,74,0.0,0.0,559.7805621682519,1345.0,0.0,1704.833726796602,50,0,0,0,0,0,0,0,0,0,,2,,2,118661,2,2,0,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,4,3,1410.14868046213,405.0,50521.690123859385,0,5,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026622228921926148,50521.690123859385,10,5,10,10_0,10_4,10_0_1 -8882,2,37.0,0.0,2,111,1500.0,1500.0,0.0,85,38,0.0,0.0,2073.261341363896,3000.0,0.0,2720.4793512711735,33,2,2,1,2,1,2,2,2,3,75.0,1,,2,126942,2,3,3,0,1,,500.0,1000.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,1,1,916.363178183461,1500.0,88767.69107406595,6,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03379608012443245,29589.23035802199,8,4,8,8_1,8_4,8_0_1 -8883,2,62.0,0.0,2,111,150.0,850.0,0.0,42,34,0.0,0.0,207.32613413638958,1000.0,0.0,1541.6049657203316,42,0,0,0,0,0,0,0,0,0,,1,,2,122822,2,1,3,0,1,,1000.0,,43,2.0,2.0,3.0,4.0,2.1,1,1,662.18700260204,150.0,85171.88169436474,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011740964037737861,40558.03890207844,9,5,9,9_1,9_4,9_0_1 -8884,2,53.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,769.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,106881,2,1,0,0,2,,0.0,1200.0,32,1.0,2.0,3.0,2.0,1.5,1,1,850.249271024876,0.0,46026.05617648542,0,1,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016707927289083695,30684.03745099028,8,4,8,8_0,8_4,8_1_0 -8885,2,35.0,0.0,1,111,580.0,0.0,0.0,46,48,0.0,0.0,801.6610519940398,580.0,0.0,0.0,31,2,2,2,2,1,2,2,1,4,60.0,2,,1,108466,1,3,0,0,1,,0.0,800.0,43,2.0,0.0,1.0,2.0,1.5,2,2,994.552728605694,580.0,55421.071857589865,1,1,3,4,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.010465333501495056,36947.381238393245,9,5,9,9_0,9_4,9_1_0 -8886,2,53.0,0.0,1,111,1800.0,2800.0,0.0,45,34,0.0,31.055175144583732,2487.913609636675,4630.0,0.0,5078.228122372857,31,0,0,0,0,0,0,0,0,1,10.0,2,,1,115344,2,2,0,0,1,,0.0,,43,2.0,2.0,9.0,6.0,3.3,2,2,839.727688671835,1800.0,135696.92291866176,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034120154683059935,41120.27967232175,9,5,9,9_0,9_4,9_1_0 -8887,2,65.0,0.0,1,111,3293.0,0.0,0.0,75,74,0.0,51.75862524097289,4551.499731407539,3343.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111608,2,1,2,0,1,,581.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,535.45039284893,3293.0,234921.56171226018,5,5,1,2,185.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014230281697576227,156614.37447484012,10,5,10,10_1,10_4,10_1_0 -8888,2,65.0,0.0,1,111,220.0,379.0,0.0,0,55,0.0,0.0,304.0783300667047,599.0,0.0,687.3744494211832,70,2,2,2,1,1,2,2,2,2,30.0,2,,1,122927,2,3,0,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,906.570195015407,220.0,40672.17497070816,0,1,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.014727513353573935,40672.17497070816,9,5,9,9_0,9_4,9_1_0 -8889,2,58.0,0.0,2,111,564.0,0.0,0.0,0,37,3733.962192545002,0.0,779.5462643528249,3064.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,2,114967,2,2,0,1,2,,0.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,982.279617045583,564.0,62463.73000712435,0,1,1,2,102.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.049052466121548184,31231.865003562176,8,4,8,8_0,8_4,8_0_1 -8890,2,66.0,0.0,2,111,600.0,1200.0,0.0,74,90,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,1,,2,115747,2,2,2,0,1,,550.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,819.508468934301,600.0,177549.40293617727,6,5,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010138023390858918,118366.26862411818,10,5,10,10_1,10_4,10_0_1 -8891,2,46.0,0.0,1,111,595.4,1547.0,0.0,31,37,0.0,0.0,822.946535098709,2142.0,0.0,2805.7210376110033,10,0,0,0,0,0,0,0,0,2,60.0,2,,1,107731,1,3,0,0,1,,0.0,2208.0,43,2.0,0.0,5.0,4.0,2.3,2,2,797.050055545219,595.4,94713.16268652346,1,1,2,3,143.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02261565276929329,41179.63595066238,9,5,9,9_0,9_4,9_1_0 -8892,2,81.0,0.0,2,111,156.0,60.0,0.0,0,75,0.0,0.0,215.61917950184517,216.0,0.0,108.81917405084694,31,0,0,0,0,0,0,0,0,0,,2,,2,114486,2,1,0,1,2,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1067.05212556244,156.0,27153.184212493,0,5,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007954868140312613,27153.184212493,7,4,7,7_0,7_4,7_0_1 -8893,2,25.0,0.0,1,111,500.0,0.0,0.0,0,38,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,60.0,2,,1,102273,2,3,0,0,2,,0.0,750.0,12,1.0,0.0,1.0,1.0,1.0,4,3,763.4353476854,500.0,24520.66199435443,0,1,3,4,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.020390966610735008,24520.66199435443,7,4,7,7_0,7_4,7_1_0 -8894,2,69.0,0.0,2,111,190.0,100.0,0.0,77,75,0.0,0.0,262.6131032394268,290.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,119637,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,3,2,897.034711426431,190.0,41327.244207717886,5,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007017162783523861,27551.49613847859,7,4,7,7_0,7_4,7_0_1 -8895,2,53.0,0.0,1,111,1500.0,2400.0,0.0,34,37,0.0,72.46207533736204,2073.261341363896,3970.0,0.0,4352.7669620338775,10,0,0,0,0,0,0,0,0,1,30.0,1,,1,132047,2,2,3,0,1,,0.0,,43,2.0,0.0,7.0,5.0,3.0,4,3,503.725611070167,1500.0,229959.48237128922,1,1,0,1,177.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017263910837954036,76653.16079042974,10,5,10,10_1,10_4,10_1_0 -8896,2,38.0,0.0,1,111,760.0,0.0,0.0,0,38,0.0,0.0,1050.452412957707,760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,124394,2,1,0,0,2,,0.0,872.0,12,1.0,0.0,2.0,1.0,1.0,4,3,1083.02355205286,760.0,44142.2219077107,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017217076240270638,44142.2219077107,10,5,10,10_0,10_4,10_1_0 -8897,0,35.0,0.0,5,111,0.0,0.0,0.0,45,53,0.0,0.0,0.0,1118.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,10.0,2,,3,128085,2,1,0,1,2,703.0,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,1090.41044355817,0.0,55770.86313232842,1,1,5,0,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020046309797058428,26557.55387253734,7,4,7,7_0,7_4,7_0_0 -8898,2,63.0,0.0,2,111,1013.0,0.0,0.0,85,34,8438.754555151703,0.0,1400.1424925344177,6663.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,111100,2,2,2,0,2,,2000.0,,42,4.0,0.0,6.0,5.0,3.0,2,2,655.61082092159,1013.0,97187.85727119692,6,1,0,1,260.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06855794733088205,32395.952423732306,8,4,8,8_1,8_4,8_0_1 -8899,2,43.0,0.0,5,111,450.0,0.0,0.0,0,37,1493.5848770180007,0.0,621.9784024091688,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,50.0,8,,3,112050,2,1,0,1,2,,0.0,,32,1.0,0.0,3.0,3.0,2.0,2,2,881.635877929545,450.0,39406.73672515937,0,1,1,2,64.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036795739015716124,19703.368362579684,5,3,5,5_0,5_4,5_0_0 -8900,2,75.0,0.0,1,111,0.0,0.0,0.0,86,74,0.0,0.0,0.0,7385.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,128842,2,1,2,0,2,,612.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,633.55278557079,0.0,100279.73449337998,6,5,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07364399235109188,66853.15632891998,10,5,10,10_1,10_4,10_1_0 -8901,2,43.0,0.0,9,112,800.0,1500.0,0.0,37,43,0.0,0.0,1105.7393820607444,3768.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,1.0,1,2007.0,6,104582,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,938.672521030906,800.0,235832.55114338594,4,1,1,2,160.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015977438151483423,112301.21483018377,10,5,10,10_1,10_0,10_0_0 -8902,2,65.0,0.0,6,112,500.0,1750.0,0.0,74,74,0.0,56.93448776507018,691.0871137879653,2305.0,0.0,3173.8925764830356,50,0,0,0,0,0,0,0,0,0,,1,,4,101674,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,970.258863566164,500.0,74477.4829802432,5,5,0,1,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03094895138456078,49651.655320162135,10,5,10,10_1,10_0,10_0_0 -8903,2,45.0,0.0,8,112,973.0,1300.0,0.0,45,42,0.0,0.0,1344.8555234313803,2273.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,104060,2,2,3,0,1,,940.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,632.539845943788,973.0,73702.02921697982,1,1,1,2,140.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03084039916062902,35096.20438903801,9,5,9,9_1,9_0,9_0_0 -8904,2,60.0,0.0,5,112,2105.0,0.0,0.0,52,75,0.0,113.86897553014036,2909.4767490473337,2215.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,101691,2,2,2,0,1,,650.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,817.813585671694,2105.0,114956.95671680299,1,5,0,1,110.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.019268081404213433,76637.97114453533,10,5,10,10_1,10_0,10_0_0 -8905,2,49.0,0.0,1,112,662.0,1802.0,0.0,46,33,0.0,0.0,914.999338655266,2464.0,0.0,3268.202527327103,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,125324,2,1,1,0,1,,855.0,,43,2.0,0.0,5.0,4.0,2.5,2,1,641.025814966044,662.0,58417.51535243266,1,1,0,1,76.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042179130439470025,23367.006140973062,6,3,6,6_1,6_0,6_1_0 -8906,2,57.0,0.0,1,112,963.0,1603.0,0.0,38,46,0.0,67.28621281326475,1331.0337811556212,2631.0,0.0,2907.2856000584607,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,130380,2,2,2,0,1,,903.0,,43,2.0,0.0,10.0,4.0,2.5,2,2,848.924070955947,963.0,126505.53142352047,1,1,0,1,190.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020797509566532937,50602.21256940819,10,5,10,10_1,10_0,10_1_0 -8907,2,43.0,0.0,2,112,780.0,0.0,0.0,48,54,448.0754631054002,623.1738479013136,1078.0958975092258,1807.0,215.04087552377396,0.0,20,0,0,0,0,0,0,0,0,2,8.0,1,,2,111729,2,2,2,0,1,,502.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,760.473064768583,780.0,62070.13533186939,4,1,1,2,140.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02911222909920435,24828.054132747755,7,4,7,7_1,7_0,7_0_1 -8908,2,66.0,0.0,5,112,2766.0,0.0,0.0,75,75,0.0,367.4862392109075,3823.093913475024,3121.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,1,,3,117529,2,1,2,0,1,,1227.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,821.669820318341,2766.0,57622.79134844036,5,5,0,1,105.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05416259655190193,38415.19423229357,9,5,9,9_1,9_0,9_0_0 -8909,2,66.0,0.0,7,112,1000.0,0.0,0.0,78,72,0.0,0.0,1382.1742275759307,1120.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,122924,2,1,2,0,1,,600.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,594.007888874964,1000.0,20565.703676698933,6,5,0,1,153.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05445960019685428,13710.469117799288,3,2,3_0,3_1_0,3_1_0,3_0_0 -8910,2,63.0,0.0,7,112,2600.0,0.0,0.0,74,31,0.0,155.27587572291867,3593.6529916974196,2750.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,5,111492,2,2,3,0,1,,600.0,,42,2.0,2.0,8.0,3.0,2.0,1,1,600.513952956085,2600.0,66568.90337348962,5,1,0,1,200.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04131057987497446,33284.45168674481,8,4,8,8_1,8_1,8_0_0 -8911,2,56.0,0.0,2,112,1500.0,0.0,0.0,45,64,0.0,310.55175144583734,2073.261341363896,1880.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,119556,2,1,2,0,1,,700.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,830.456543857118,1500.0,65969.31520151443,1,1,0,1,120.0,10,1,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028498097854392182,32984.657600757215,8,4,8,8_1,8_1,8_0_1 -8912,2,49.0,0.0,6,112,1200.0,0.0,0.0,0,37,0.0,310.55175144583734,1658.6090730911167,1500.0,0.0,0.0,71,2,2,2,2,1,1,2,2,2,12.0,1,,4,106868,2,1,2,0,1,,350.0,,32,2.0,1.0,5.0,2.0,1.5,3,3,817.813585671694,1200.0,46604.68687337567,0,1,0,1,160.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.032185604080453976,31069.791248917114,8,4,8,8_1,8_1,8_0_0 -8913,2,43.0,0.0,7,112,710.0,1685.0,0.0,46,37,0.0,0.0,981.3437015789107,2395.0,0.0,3056.005137927951,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,100241,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,889.481425956061,710.0,88066.15932050037,4,1,1,2,180.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027195463257161514,31452.199757321563,8,4,8,8_1,8_1,8_0_0 -8914,2,49.0,0.0,1,112,800.0,850.0,0.0,37,37,0.0,62.110350289167464,1105.7393820607444,1710.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,129566,2,2,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,641.025814966044,800.0,103929.17077400815,1,1,1,2,120.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016453513361694764,41571.66830960326,9,5,9,9_1,9_1,9_1_0 -8915,2,71.0,0.0,7,112,490.0,2600.0,0.0,74,72,0.0,0.0,677.265371512206,3090.0,0.0,4715.497542203367,33,0,0,0,0,0,0,0,0,0,,1,,5,132406,2,1,2,0,1,,490.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,666.223947416306,490.0,93976.26147141383,5,5,0,1,330.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03288064402242615,62650.84098094256,10,5,10,10_1,10_1,10_0_0 -8916,2,61.0,0.0,7,112,2150.0,2865.0,0.0,77,37,0.0,0.0,2971.674589288251,5015.0,0.0,5196.115560927941,44,0,0,0,0,0,0,0,0,2,30.0,1,,5,125954,2,1,1,0,1,,1200.0,,42,1.0,3.0,8.0,2.0,1.5,3,3,666.223947416306,2150.0,5179191.751455111,6,1,0,1,300.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0009682978041102685,3452794.5009700744,10,5,10,10_1,10_1,10_0_0 -8917,2,63.0,0.0,6,112,2100.0,0.0,0.0,72,23,0.0,124.22070057833493,2902.5658779094542,2220.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,105775,2,1,2,0,1,,460.0,,42,1.0,1.0,7.0,3.0,2.0,1,1,766.042878089897,2100.0,72259.87707999967,6,1,0,1,160.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030722443625834216,36129.938539999835,9,5,9,9_1,9_1,9_0_0 -8918,2,65.0,0.0,1,111,230.0,400.0,0.0,0,75,0.0,0.0,317.900072342464,630.0,0.0,725.4611603389795,70,0,0,0,0,0,0,0,0,0,,1,,1,104309,1,1,2,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,907.814074085184,230.0,21718.13856177425,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02900801089412207,21718.13856177425,6,3,6,6_1,6_4,6_1_0 -8919,2,58.0,0.0,7,111,540.0,2775.0,0.0,33,35,0.0,0.0,746.3740828910024,3315.0,0.0,5032.886799851671,50,0,0,0,0,0,0,0,0,0,,1,,5,101885,2,1,3,0,1,,680.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,602.584147779079,540.0,159822.34688049144,1,1,0,1,156.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02074178026229849,79911.17344024572,10,5,10,10_1,10_4,10_0_0 -8920,2,38.0,0.0,1,111,312.0,500.0,0.0,33,35,0.0,181.15518834340511,431.23835900369033,987.0,0.0,906.8264504237244,60,0,0,0,0,0,0,0,0,3,50.0,1,,1,128844,2,2,3,0,2,,200.0,,43,2.0,0.0,8.0,5.0,2.4,3,3,497.070504999496,312.0,160336.3842110932,1,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006155808021094893,66806.82675462216,10,5,10,10_1,10_4,10_1_0 -8921,2,49.0,0.0,1,111,400.0,2000.0,0.0,34,33,0.0,124.22070057833493,552.8696910303722,2520.0,0.0,3627.3058016948976,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,129515,2,2,1,0,1,,500.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,2,2,470.244793742866,400.0,187225.59012273676,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01345969852918076,72009.84235489876,10,5,10,10_1,10_4,10_1_0 -8922,2,68.0,0.0,7,111,2054.0,0.0,0.0,74,74,0.0,82.81380038555662,2838.9858634409616,2134.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,118552,2,1,2,0,1,,414.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,591.173667160479,2054.0,104402.97616484159,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020440030336210273,69601.98410989439,10,5,10,10_1,10_4,10_0_0 -8923,2,52.0,0.0,2,111,1200.0,0.0,0.0,38,37,0.0,0.0,1658.6090730911167,1317.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,2,,2,112789,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.5,3,3,877.415110902977,1200.0,94104.14601221641,1,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013995132582458478,37641.65840488656,9,5,9,9_0,9_4,9_0_1 -8924,2,66.0,0.0,1,111,600.0,100.0,0.0,75,74,0.0,0.0,829.3045365455583,700.0,0.0,181.36529008474488,60,0,0,0,0,0,0,0,0,0,,2,,1,116960,2,2,0,1,1,670.0,0.0,1230.0,41,0.0,1.0,3.0,2.0,1.5,2,2,725.760373889795,600.0,41616.88871181705,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01682009447768343,27744.5924745447,7,4,7,7_0,7_4,7_1_0 -8925,2,79.0,0.0,6,111,1400.0,0.0,0.0,0,77,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,100820,2,1,2,0,1,,186.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,758.393576736872,1400.0,10562.37118808146,0,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1325459951246321,10562.37118808146,2,1,2_0,2_1_0,2_4_0,2_0_0 -8926,2,37.0,0.0,6,111,1200.0,0.0,0.0,43,52,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,105.0,2,,4,121055,2,2,0,0,1,,0.0,580.0,43,2.0,0.0,3.0,3.0,1.8,2,2,944.873795197061,1200.0,42678.04923846808,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02811749884102889,23710.027354704485,6,3,6,6_0,6_4,6_0_0 -8927,0,80.0,0.0,7,111,1366.0,0.0,0.0,0,72,0.0,0.0,1888.0499948687211,1366.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,122411,2,2,0,0,2,,166.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,936.121361532082,1366.0,49254.22705216228,0,5,0,1,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02773366027150013,49254.22705216228,10,5,10,10_0,10_4,10_0_0 -8928,2,87.0,0.0,7,111,1000.0,0.0,0.0,0,74,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,112082,2,1,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1027.67173289704,1000.0,66835.78250616467,0,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01496204521743669,66835.78250616467,10,5,10,10_0,10_4,10_0_0 -8929,2,54.0,0.0,2,111,500.0,50.0,0.0,0,75,0.0,0.0,691.0871137879653,641.0,0.0,90.68264504237244,50,0,0,0,0,0,0,0,0,0,,2,,2,114497,1,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1604.30466854199,500.0,14548.728563430503,0,5,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04405883285301022,14548.728563430503,3,2,3_0,3_0_0,3_4_0,3_0_1 -8930,2,61.0,0.0,2,111,314.0,0.0,0.0,0,52,0.0,0.0,434.0027074588422,314.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,110748,1,1,0,1,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,989.110635289331,314.0,34140.752284938506,0,1,1,2,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009197219715000945,34140.752284938506,9,5,9,9_0,9_4,9_0_1 -8931,2,55.0,0.0,2,111,45.0,125.0,0.0,0,43,0.0,0.0,62.197840240916875,170.0,0.0,226.7066126059311,60,2,2,2,2,1,2,2,2,1,5.0,2,,2,111661,1,1,0,0,1,,0.0,481.0,32,3.0,0.0,3.0,3.0,2.0,2,2,1215.08283914046,45.0,33437.016943135415,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.005084185598527228,16718.508471567708,4,2,4_0,4_0_0,4_4_0,4_0_1 -8932,2,44.0,0.0,7,111,520.0,0.0,0.0,0,43,0.0,0.0,718.7305983394839,520.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,45.0,2,,5,120696,2,1,0,1,1,720.0,0.0,266.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1036.61518905561,520.0,25985.932516448258,0,1,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02001082699921801,19989.17885880635,5,3,5,5_0,5_4,5_0_0 -8933,1,48.0,286.0,2,111,950.0,0.0,0.0,0,54,0.0,331.2552015422265,1313.065516197134,1270.0,0.0,0.0,10,2,2,2,1,2,2,2,2,0,,2,,2,114105,1,3,0,0,1,,0.0,672.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1358.67775710301,950.0,5513.862110764444,0,1,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.23032857450690342,5513.862110764444,1,1,1_1,1_0_1,1_4_1,1_0_1 -8934,0,27.0,0.0,5,111,0.0,0.0,0.0,46,47,0.0,0.0,0.0,506.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,118133,1,1,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1142.28777505385,0.0,35996.16384444102,1,1,5,0,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014057053473439584,23997.44256296068,6,3,6,6_0,6_4,6_0_0 -8935,2,42.0,0.0,5,111,650.0,650.0,0.0,85,38,0.0,0.0,898.4132479243549,1300.0,0.0,1178.8743855508417,44,2,2,2,1,2,1,2,2,3,60.0,2,,3,106458,2,3,0,0,1,,0.0,640.0,42,1.0,2.0,4.0,4.0,2.3,3,3,954.076191529999,650.0,55815.853903009425,6,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,1,0,0,0.02329087363348405,24267.76256652584,7,4,7,7_0,7_4,7_0_0 -8936,2,74.0,0.0,6,111,1200.0,0.0,0.0,54,78,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,104760,2,1,2,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,812.639342922579,1200.0,40620.60659775442,5,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031018739145802294,27080.404398502946,7,4,7,7_1,7_4,7_0_0 -8937,2,40.0,0.0,9,111,1000.0,0.0,0.0,37,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,121812,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1258.35966872869,1000.0,95490.45332569907,1,1,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01047225104890012,63660.30221713271,10,5,10,10_0,10_4,10_0_0 -8938,1,89.0,86.0,5,111,228.0,228.0,0.0,0,78,0.0,0.0,315.13572388731217,456.0,0.0,413.5128613932184,50,0,0,0,0,0,0,0,0,0,,2,,3,102391,2,1,0,1,1,,0.0,298.0,11,0.0,1.0,3.0,1.0,1.0,2,2,310.300645261259,228.0,15309.575076470901,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0297852812845747,15309.575076470901,3,2,3_1,3_0_1,3_4_1,3_0_0 -8939,2,73.0,0.0,2,111,223.0,110.0,0.0,0,77,0.0,0.0,308.2248527494325,484.0,0.0,199.50181909321938,50,2,1,2,1,1,2,2,2,0,,2,,2,103190,2,1,0,1,1,980.0,0.0,361.0,11,0.0,0.0,4.0,1.0,1.0,1,1,327.723691278423,223.0,14147.581185937372,0,5,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03421079502134921,14147.581185937372,3,2,3_0,3_0_0,3_4_0,3_0_1 -8940,2,66.0,0.0,2,111,265.0,1680.0,0.0,0,75,0.0,0.0,366.2761703076216,1945.0,0.0,3046.936873423714,10,0,0,0,0,0,0,0,0,0,,2,,2,124458,2,3,0,0,1,,0.0,1009.0,11,0.0,4.0,4.0,1.0,1.0,4,4,1782.22514501857,265.0,86078.34477351292,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022595694714130865,86078.34477351292,10,5,10,10_0,10_4,10_0_1 -8941,2,87.0,0.0,1,111,480.0,1700.0,0.0,0,33,0.0,0.0,663.4436292364467,2180.0,0.0,3083.2099314406632,20,0,0,0,0,0,0,0,0,0,,1,,1,123608,2,2,1,0,1,,360.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,757.77482715283,480.0,35765.21854204562,0,5,0,1,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06095307365274981,35765.21854204562,9,5,9,9_1,9_4,9_1_0 -8942,2,35.0,0.0,2,111,190.0,50.0,0.0,0,34,0.0,0.0,262.6131032394268,240.0,0.0,90.68264504237244,31,0,0,0,0,0,0,0,0,1,5.0,2,,2,129706,1,1,0,1,1,,0.0,838.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1305.75912063781,190.0,28433.475750454145,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008440754908276265,28433.475750454145,8,4,8,8_0,8_4,8_0_1 -8943,2,55.0,0.0,5,111,340.0,110.0,0.0,56,48,1164.9962040740406,0.0,469.9392373758164,1230.0,0.0,199.50181909321938,20,1,2,2,2,1,2,2,2,2,15.0,2,,3,128483,2,1,0,1,1,780.0,0.0,423.0,43,2.0,1.0,5.0,3.0,2.0,1,1,1250.08235289975,340.0,9063.782152045662,1,1,2,3,70.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.13570493855287483,4531.891076022831,1,1,1_0,1_0_0,1_4_0,1_0_0 -8944,2,42.0,0.0,7,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,631.0,0.0,0.0,20,2,1,2,2,2,2,2,1,1,7.0,2,,5,121960,1,2,0,1,1,,359.0,650.0,32,1.0,0.0,5.0,3.0,1.8,1,1,730.658931830626,0.0,30615.55799442681,0,1,2,3,83.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.020610436044146765,17008.643330237115,4,2,4_0,4_0_0,4_4_0,4_0_0 -8945,2,55.0,0.0,7,111,288.0,102.0,0.0,52,63,0.0,0.0,398.066177541868,390.0,0.0,184.9925958864398,50,2,2,2,1,1,2,2,2,2,10.0,2,,5,101122,1,2,0,1,1,708.0,17.0,373.0,43,2.0,0.0,3.0,2.0,1.5,4,4,627.842968760144,288.0,38504.346716857515,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.010128726579050226,25669.56447790501,7,4,7,7_0,7_4,7_0_0 -8946,2,53.0,0.0,7,111,170.0,60.0,0.0,0,52,0.0,0.0,234.9696186879082,230.0,0.0,108.81917405084694,12,2,2,2,2,1,2,2,2,3,60.0,2,,5,112623,2,3,0,1,1,744.0,0.0,405.0,12,1.0,0.0,2.0,1.0,1.0,3,3,835.057120540177,170.0,27407.635806085542,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,1,0,0.008391821958934934,27407.635806085542,7,4,7,7_0,7_4,7_0_0 -8947,0,88.0,0.0,2,111,302.0,70.0,0.0,0,74,0.0,0.0,417.416616727931,372.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,106492,1,1,0,1,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,4,4,986.218787459053,302.0,173235.7094837001,0,5,0,1,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002147363272322337,173235.7094837001,10,5,10,10_0,10_4,10_0_1 -8948,2,57.0,0.0,2,111,217.0,217.0,0.0,0,56,0.0,0.0,299.93180738397695,434.0,0.0,393.56267948389643,20,0,0,0,0,0,0,0,0,0,,2,,2,105593,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1313.12136745409,217.0,5057.19329487125,0,4,0,1,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08581835312487282,5057.19329487125,1,1,1_0,1_0_0,1_4_0,1_0_1 -8949,2,59.0,0.0,1,111,350.0,480.0,0.0,63,74,0.0,0.0,483.76097965157567,830.0,0.0,870.5533924067755,31,0,0,0,0,0,0,0,0,0,,2,,1,125525,1,3,0,0,1,,0.0,477.0,42,1.0,2.0,4.0,2.0,1.5,2,2,929.510915667836,350.0,56031.694889375365,1,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014813044681919539,37354.46325958358,9,5,9,9_0,9_4,9_1_0 -8950,2,66.0,0.0,1,111,212.0,660.0,0.0,0,75,0.0,0.0,293.0209362460973,872.0,0.0,1197.0109145593162,31,0,0,0,0,0,0,0,0,0,,2,,1,115288,1,1,0,0,1,,0.0,277.0,21,1.0,0.0,4.0,2.0,1.5,2,2,929.510915667836,212.0,61823.09595468591,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0141047611177406,41215.39730312394,9,5,9,9_0,9_4,9_1_0 -8951,0,75.0,0.0,2,111,130.0,0.0,0.0,0,77,0.0,0.0,179.68264958487097,130.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112872,2,2,0,1,2,427.0,0.0,,11,0.0,1.0,1.0,1.0,1.0,3,3,1599.61418720839,130.0,60521.0,0,5,5,0,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0021480147386857456,60521.0,10,5,10,10_0,10_4,10_0_1 -8952,2,69.0,0.0,2,111,312.0,0.0,0.0,77,78,0.0,0.0,431.23835900369033,312.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,126892,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,994.705045448431,312.0,56540.70088603467,5,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005518148786816026,37693.80059068978,9,5,9,9_0,9_4,9_0_1 -8953,2,30.0,0.0,2,111,0.0,0.0,0.0,55,35,0.0,0.0,0.0,651.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,35.0,2,,2,106865,2,1,0,1,1,696.0,0.0,740.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1050.6424156985,0.0,25581.820710401127,1,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025447758678697745,17054.54714026742,4,2,4_0,4_0_0,4_4_0,4_0_1 -8954,2,41.0,0.0,2,111,551.0,0.0,0.0,38,38,0.0,0.0,761.5779993943378,551.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,25.0,2,,2,125584,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,4,4,903.058976779595,551.0,155268.1731959803,1,1,1,2,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003548698929461384,73937.22533141918,10,5,10,10_0,10_4,10_0_1 -8955,2,26.0,0.0,1,111,120.0,0.0,0.0,43,65,0.0,0.0,165.86090730911167,120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,129113,2,1,0,1,1,305.0,0.0,500.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1141.98487560366,120.0,25981.03153289862,1,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004618754257237606,17320.687688599082,4,2,4_0,4_0_0,4_4_0,4_1_0 -8956,2,86.0,0.0,5,111,180.0,100.0,0.0,77,72,0.0,0.0,248.7913609636675,280.0,0.0,181.36529008474488,43,0,0,0,0,0,0,0,0,0,,2,,3,113919,2,1,0,1,2,,0.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,761.774293600208,180.0,36098.43610909766,5,5,0,1,118.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0077565687098958115,24065.624072731775,6,3,6,6_0,6_4,6_0_0 -8957,2,72.0,0.0,2,111,313.0,180.0,0.0,0,77,0.0,0.0,432.6205332312663,493.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,2,,2,124194,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1045.21511512505,313.0,26954.875471974614,0,5,0,1,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01828982665909844,26954.875471974614,7,4,7,7_0,7_4,7_0_1 -8958,1,67.0,307.0,1,111,600.0,0.0,0.0,0,72,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,112405,2,1,0,0,1,,0.0,391.0,11,0.0,6.0,1.0,1.0,1.0,1,1,1282.12650186356,600.0,4099.992424867429,0,5,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1463417337946425,4099.992424867429,1,1,1_1,1_0_1,1_4_1,1_1_0 -8960,2,48.0,0.0,7,111,1055.0,0.0,0.0,0,38,0.0,0.0,1458.1938100926068,1055.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,40.0,2,,5,119488,2,1,0,0,1,,0.0,,22,2.0,2.0,2.0,2.0,1.5,4,4,829.321247646695,1055.0,43746.17864205025,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.024116392168387017,29164.119094700163,8,4,8,8_0,8_4,8_0_0 -8961,2,26.0,0.0,1,111,2268.0,0.0,0.0,47,35,0.0,0.0,3134.7711481422107,2268.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,10.0,2,,1,113316,1,3,0,0,2,,0.0,700.0,43,2.0,0.0,2.0,2.0,1.5,4,2,1034.62670850373,2268.0,58206.741171083486,1,1,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03896455899040641,38804.494114055655,9,5,9,9_0,9_4,9_1_0 -8963,2,41.0,0.0,2,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,2255.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,1,,2,118864,2,3,3,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,847.92767637342,0.0,76446.27706106538,6,1,0,1,135.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029497839354540485,42470.1539228141,9,5,9,9_1,9_4,9_0_1 -8964,2,91.0,0.0,1,111,156.0,99.0,0.0,0,72,0.0,0.0,215.61917950184517,255.0,0.0,179.55163718389744,20,0,0,0,0,0,0,0,0,0,,2,,1,110964,1,2,0,0,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,1029.94744862886,156.0,20770.349732382227,0,5,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012277116335814011,20770.349732382227,5,3,5,5_0,5_4,5_1_0 -8965,2,83.0,0.0,5,111,280.0,0.0,0.0,0,78,0.0,0.0,387.00878372126056,280.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,105386,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1298.63649347841,280.0,67016.52879568817,0,5,0,1,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0041780737533218095,67016.52879568817,10,5,10,10_0,10_4,10_0_0 -8966,2,35.0,0.0,8,111,1560.0,0.0,0.0,46,53,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,2002.0,6,102060,2,1,0,0,2,,0.0,1453.0,43,2.0,0.0,3.0,4.0,2.1,2,2,866.84596782104,1560.0,102965.16792009659,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015150754682501922,49031.032342903134,10,5,10,10_0,10_4,10_0_0 -8967,2,47.0,0.0,7,111,1998.0,0.0,0.0,56,38,0.0,0.0,2761.584106696709,1998.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,129446,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,2.0,2,2,819.599661308996,1998.0,67213.23492930748,1,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02972628831362493,33606.61746465374,9,5,9,9_0,9_4,9_0_0 -8969,2,63.0,0.0,2,111,420.0,0.0,0.0,37,31,0.0,0.0,580.5131755818909,420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,108765,2,1,0,1,1,,0.0,,43,2.0,4.0,3.0,2.0,1.5,3,2,743.937739761075,420.0,100681.83154921305,1,1,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004171557008224518,67121.2210328087,10,5,10,10_0,10_4,10_0_1 -8970,2,38.0,0.0,1,111,1080.0,390.0,0.0,54,56,0.0,0.0,1492.748165782005,1470.0,0.0,707.3246313305051,50,0,0,0,0,0,0,0,0,1,8.0,2,,1,100121,2,3,0,0,1,,0.0,643.0,43,2.0,0.0,3.0,4.0,2.1,1,1,930.016653732865,1080.0,38323.959622008326,1,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.038357205635813844,18249.504581908725,4,2,4_0,4_0_0,4_4_0,4_1_0 -8971,2,39.0,0.0,2,111,290.0,910.0,0.0,55,46,0.0,0.0,400.8305259970199,1200.0,0.0,1650.4241397711785,42,0,0,0,0,0,0,0,0,0,,2,,2,100688,2,3,0,0,1,,0.0,802.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1031.47431704159,290.0,81279.31829102641,1,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014763903354889299,45155.176828348005,10,5,10,10_0,10_4,10_0_1 -8972,2,37.0,0.0,1,111,0.0,0.0,0.0,42,54,0.0,0.0,0.0,669.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,45.0,2,,1,121457,2,3,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,769.03479203627,0.0,22633.36926576376,1,1,1,2,43.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029558126858821643,15088.912843842505,3,2,3_0,3_0_0,3_4_0,3_1_0 -8973,2,58.0,0.0,1,111,1157.0,352.0,0.0,0,46,0.0,0.0,1599.1755813053517,1509.0,0.0,638.405821098302,50,0,0,0,0,0,0,0,0,3,50.0,2,,1,123297,2,2,0,0,1,,0.0,,12,1.0,3.0,4.0,1.0,1.0,3,3,857.8971282192,1157.0,26993.710358659086,0,1,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05590191122117973,26993.710358659086,7,4,7,7_0,7_4,7_1_0 -8974,2,41.0,0.0,1,111,697.0,129.0,0.0,0,38,0.0,0.0,963.3754366204236,826.0,0.0,233.9612242093209,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,121171,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,942.037493099354,697.0,52524.578930677126,0,1,1,2,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015725970903834745,52524.578930677126,10,5,10,10_0,10_4,10_1_0 -8975,2,43.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,763.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,40.0,2,,1,123272,2,3,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,4,4,1282.12650186356,0.0,20089.66226711328,0,1,0,1,40.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03797973255374377,20089.66226711328,5,3,5,5_0,5_4,5_1_0 -8977,2,60.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,909.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,2,,1,118190,1,1,0,1,2,566.0,0.0,765.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1014.10425280894,0.0,35228.29774358928,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025803120168229433,35228.29774358928,9,5,9,9_0,9_4,9_1_0 -8978,2,46.0,0.0,1,111,179.0,0.0,0.0,31,34,0.0,0.0,247.40918673609156,179.0,0.0,0.0,10,2,2,2,1,2,2,2,2,2,40.0,2,,1,116381,1,1,0,1,2,763.0,0.0,1040.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1176.09738754764,179.0,104339.04750233289,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0017155609935580233,57966.13750129605,10,5,10,10_0,10_4,10_1_0 -8979,2,25.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1314.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,125717,1,2,0,0,1,,0.0,640.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1401.773208696,0.0,30520.401717034918,0,1,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04305316857171617,30520.401717034918,8,4,8,8_0,8_4,8_1_0 -8981,2,61.0,0.0,1,111,906.0,452.0,0.0,77,56,0.0,0.0,1252.2498501837931,1358.0,0.0,819.7711111830469,20,0,0,0,0,0,0,0,0,0,,2,,1,110912,2,1,0,0,1,,0.0,675.0,42,1.0,2.0,4.0,2.0,1.5,1,1,1034.54225923607,906.0,19296.6546458438,5,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0703748926911791,12864.436430562533,2,1,2_0,2_0_0,2_4_0,2_1_0 -8982,2,29.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,2045.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,25.0,2,,1,121900,2,2,0,0,1,,0.0,745.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1282.12650186356,0.0,29317.39524308515,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06975380940373062,29317.39524308515,8,4,8,8_0,8_4,8_1_0 -8983,2,31.0,0.0,7,111,541.0,0.0,0.0,84,37,0.0,0.0,747.7562571185784,541.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,5,104377,1,2,0,0,1,,0.0,430.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1076.2745550999,541.0,32155.34248136834,3,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01682457589476678,21436.894987578893,6,3,6,6_0,6_4,6_0_0 -8984,1,35.0,420.0,2,111,228.0,312.0,0.0,0,56,0.0,0.0,315.13572388731217,540.0,0.0,565.859705064404,31,0,0,0,0,0,0,0,0,0,,2,,2,111112,1,1,0,1,1,408.0,0.0,406.0,32,1.0,0.0,2.0,2.0,1.3,2,2,299.541536554654,228.0,8178.167722223179,0,4,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0660294601849037,6290.898247863984,1,1,1_1,1_0_1,1_4_1,1_0_1 -8985,1,69.0,44.0,2,111,384.0,384.0,0.0,77,77,0.0,0.0,530.7549033891573,899.0,0.0,696.4427139254203,71,0,0,0,0,0,0,0,0,0,,2,,2,106688,2,1,0,1,1,476.0,0.0,350.0,41,0.0,3.0,2.0,2.0,1.5,3,3,291.181085649716,384.0,31869.28956805847,7,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02820897522927646,21246.193045372314,5,3,5,5_0,5_4,5_0_1 -8986,2,54.0,0.0,5,111,600.0,0.0,0.0,37,37,0.0,0.0,829.3045365455583,600.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,124799,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,706.324450096947,600.0,102151.08060896827,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00587365298950468,44413.51330824708,10,5,10,10_0,10_4,10_0_0 -8987,2,46.0,0.0,5,111,0.0,0.0,1400.0,0,37,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,50,0,0,0,0,0,0,0,0,2,45.0,2,,3,118261,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,837.823173571382,0.0,71916.2841634693,0,1,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01946707920584064,71916.2841634693,10,5,10,10_0,10_4,10_0_0 -8988,2,78.0,0.0,2,111,286.0,175.0,0.0,77,78,0.0,0.0,395.3018290867161,461.0,0.0,317.38925764830356,20,0,0,0,0,0,0,0,0,0,,2,,2,129969,1,1,0,1,1,416.0,0.0,213.0,41,1.0,1.0,3.0,3.0,2.0,1,1,967.782581204717,286.0,42659.328897250634,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010806545998657545,21329.664448625317,6,3,6,6_0,6_4,6_0_1 -8989,2,41.0,0.0,7,111,1200.0,0.0,0.0,42,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,12,2,2,1,1,2,2,2,2,3,15.0,2,,5,110654,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,1245.79005665257,1200.0,105947.91133564635,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011326320499121138,46064.30927636798,10,5,10,10_0,10_4,10_0_0 -8990,2,67.0,0.0,1,111,661.0,966.0,0.0,77,78,0.0,0.0,913.6171644276901,1627.0,0.0,1751.9887022186356,43,0,0,0,0,0,0,0,0,0,,2,,1,115502,2,1,0,0,1,,550.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,655.237563398736,661.0,39445.96888285034,5,5,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04124629324816407,26297.312588566896,7,4,7,7_0,7_4,7_1_0 -8991,2,57.0,0.0,1,111,303.0,1780.0,0.0,43,38,0.0,0.0,418.79879095550695,2083.0,0.0,3228.302163508459,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,114652,2,1,1,0,1,,463.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,700.704566772623,303.0,124459.85182884967,1,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0167363207443347,62229.925914424835,10,5,10,10_1,10_4,10_1_0 -8992,2,51.0,0.0,1,111,222.0,192.0,0.0,0,55,0.0,0.0,306.84267852185656,414.0,0.0,348.22135696271016,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,112288,2,3,0,1,1,518.0,0.0,539.0,32,2.0,1.0,2.0,2.0,1.5,1,1,990.827931310261,222.0,37779.764064590425,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010958247364705671,25186.509376393617,7,4,7,7_0,7_4,7_1_0 -8993,2,33.0,0.0,1,111,296.14,0.0,0.0,0,35,0.0,0.0,409.31707575433603,296.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,2,,1,127480,1,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,1282.12650186356,296.14,58813.14644051266,0,1,1,2,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0050328883576972565,58813.14644051266,10,5,10,10_0,10_4,10_1_0 -8994,2,29.0,0.0,1,111,420.0,360.0,0.0,0,54,0.0,103.51725048194578,580.5131755818909,880.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,3,60.0,2,,1,130145,2,1,0,0,1,,0.0,424.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1178.75746190655,420.0,22954.671376811282,0,1,2,3,26.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03833642336038722,22954.671376811282,6,3,6,6_0,6_4,6_1_0 -8995,2,51.0,0.0,1,111,600.0,180.0,0.0,63,22,0.0,0.0,829.3045365455583,780.0,0.0,326.4575221525408,12,0,0,0,0,0,0,0,0,0,,1,,1,123844,2,3,2,0,1,,0.0,200.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,2,2,595.806171292636,600.0,30517.168903375343,1,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025559382735327336,11737.372655144363,2,1,2_0,2_1_0,2_4_0,2_1_0 -8996,2,42.0,0.0,2,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,1242.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,2,113516,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.3,1,1,341.368080734818,0.0,40072.52679378371,1,1,1,2,76.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03099380297108358,17422.837736427704,4,2,4_0,4_0_0,4_4_0,4_0_1 -8997,1,37.0,315.0,2,111,450.0,477.0,0.0,85,64,0.0,0.0,621.9784024091688,927.0,0.0,865.1124337042331,33,2,1,2,1,2,2,2,2,3,60.0,2,,2,101268,2,3,0,1,1,407.0,0.0,280.0,42,1.0,0.0,2.0,4.0,2.1,2,2,234.521153368416,450.0,18524.791037021452,6,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.050041050295650175,8821.32906524831,1,1,1_1,1_0_1,1_4_1,1_0_1 -8998,1,33.0,317.0,2,111,396.0,264.0,0.0,0,52,0.0,0.0,547.3409941200684,660.0,0.0,478.8043658237265,71,2,1,2,2,1,2,1,2,3,55.0,2,,2,103708,2,1,0,1,1,480.0,0.0,304.0,32,1.0,0.0,2.0,2.0,1.3,3,2,288.050827778635,396.0,16187.478030485527,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04077225610790244,12451.906177296558,2,1,2_1,2_0_1,2_4_1,2_0_1 -8999,2,41.0,0.0,6,111,700.0,0.0,0.0,0,46,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,107366,2,2,0,1,1,429.0,0.0,520.0,12,1.0,0.0,2.0,1.0,1.0,4,4,328.362893263253,700.0,40539.174728090875,0,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017267248400963324,40539.174728090875,9,5,9,9_0,9_4,9_0_0 -9000,1,37.0,219.0,9,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,568.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,2010.0,6,124948,1,1,0,0,1,,0.0,474.0,42,1.0,0.0,3.0,3.0,1.8,2,1,421.079076568056,0.0,30938.240582311166,6,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01835915647784936,17187.911434617316,4,2,4_1,4_0_1,4_4_1,4_0_0 -9001,2,54.0,0.0,6,111,202.0,405.0,0.0,85,54,0.0,0.0,279.199193970338,607.0,0.0,734.5294248432168,60,0,0,0,0,0,0,0,0,2,15.0,2,,4,119076,2,1,0,0,1,,0.0,506.0,42,1.0,0.0,2.0,2.0,1.5,1,1,931.953523121821,202.0,29870.193773554412,7,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020321260873018096,19913.46251570294,5,3,5,5_0,5_4,5_0_0 -9002,2,76.0,0.0,2,111,125.0,125.0,0.0,0,74,0.0,0.0,172.77177844699133,762.0,0.0,226.7066126059311,42,0,0,0,0,0,0,0,0,0,,2,,2,113328,2,1,0,1,1,600.0,0.0,300.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1322.59162535718,125.0,21226.124256341885,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035899158546211354,21226.124256341885,5,3,5,5_0,5_4,5_0_1 -9003,2,52.0,0.0,2,111,645.0,2950.0,0.0,46,37,0.0,310.55175144583734,891.5023767864752,3895.0,0.0,5350.276057499974,20,0,0,0,0,0,0,0,0,2,40.0,1,,2,121517,2,1,1,0,1,,1160.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,968.485680061474,645.0,116460.72111742388,1,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0334447525537197,46584.28844696955,10,5,10,10_1,10_4,10_0_1 -9004,2,41.0,0.0,1,111,780.0,850.0,0.0,54,38,0.0,0.0,1078.0958975092258,1630.0,0.0,1541.6049657203316,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,121323,1,1,2,0,1,,330.0,,43,2.0,0.0,2.0,3.0,1.8,5,2,557.829042615483,780.0,53050.841886042246,1,1,1,2,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030725242843485493,29472.689936690134,8,4,8,8_1,8_4,8_1_0 -9005,2,31.0,0.0,1,111,435.0,1100.0,0.0,37,34,0.0,0.0,601.2457889955298,1535.0,0.0,1995.0181909321939,41,0,0,0,0,0,0,0,0,1,15.0,1,,1,119819,1,3,1,0,1,,400.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,700.695629425717,435.0,89748.98345394045,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0171032577855076,49860.54636330025,10,5,10,10_1,10_4,10_1_0 -9006,2,34.0,0.0,1,111,516.0,1798.0,0.0,46,21,0.0,0.0,713.2019014291802,2314.0,0.0,3260.9479157237133,60,2,2,2,2,1,2,2,2,0,,1,,1,110100,1,3,1,0,1,,300.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,535.908655082772,516.0,41953.07401346739,1,6,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.055156864053804044,27968.71600897826,7,4,7,7_1,7_4,7_1_0 -9007,1,28.0,420.0,7,111,266.0,885.0,0.0,56,85,0.0,0.0,367.65834453519756,1151.0,0.0,1605.0828172499923,42,1,2,2,1,2,2,2,2,0,,2,,5,105668,2,1,0,0,1,,0.0,620.0,42,1.0,0.0,3.0,3.0,1.8,1,1,1215.72682277386,266.0,12308.638026323832,4,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.09351156460515106,6838.132236846573,1,1,1_1,1_0_1,1_4_1,1_0_0 -9008,2,48.0,0.0,7,111,580.0,870.0,0.0,0,54,0.0,0.0,801.6610519940398,1450.0,0.0,1577.8780237372805,70,0,0,0,0,0,0,0,0,2,30.0,2,,5,106728,2,3,0,0,1,,0.0,547.0,32,1.0,0.0,4.0,3.0,1.8,1,1,1159.52122609029,580.0,44298.84732868549,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03273222865690819,24610.470738158605,7,4,7,7_0,7_4,7_0_0 -9009,2,68.0,0.0,2,111,384.0,2038.0,0.0,78,75,0.0,0.0,530.7549033891573,2422.0,0.0,3696.224611927101,41,0,0,0,0,0,0,0,0,0,,1,,2,122639,2,1,2,0,1,,228.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,867.393718757515,384.0,50132.18679186536,5,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048312275106918,33421.45786124357,8,4,8,8_1,8_4,8_0_1 -9010,2,65.0,0.0,6,111,360.0,756.0,0.0,77,74,0.0,0.0,497.582721927335,1116.0,0.0,1371.1215930406713,43,0,0,0,0,0,0,0,0,0,,2,,4,112694,2,2,0,0,1,,0.0,677.0,41,0.0,3.0,5.0,2.0,1.5,2,2,1233.63379239835,360.0,50214.38608611538,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022224706642556796,33476.25739074359,8,4,8,8_0,8_4,8_0_0 -9011,2,57.0,0.0,2,111,1140.0,0.0,0.0,0,52,0.0,0.0,1575.678619436561,1140.0,0.0,0.0,50,2,2,2,2,1,2,2,2,1,5.0,2,,2,115960,1,1,0,0,1,,0.0,480.0,32,3.0,1.0,4.0,3.0,2.0,4,4,337.868211571636,1140.0,63447.77472562017,0,1,2,3,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.017967533218145613,31723.887362810085,8,4,8,8_0,8_4,8_0_1 -9012,2,46.0,0.0,5,111,480.0,0.0,0.0,0,53,0.0,0.0,663.4436292364467,480.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,112365,2,2,0,1,1,,0.0,464.0,22,1.0,2.0,4.0,3.0,2.0,4,4,321.56700827981,480.0,33806.46534653565,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014198467514415506,16903.232673267827,4,2,4_0,4_0_0,4_4_0,4_0_0 -9013,1,27.0,277.0,2,111,264.0,420.0,0.0,53,56,0.0,0.0,364.89399608004567,684.0,0.0,761.7342183559285,50,1,2,2,2,1,2,2,2,3,45.0,2,,2,103965,2,1,0,1,1,,0.0,418.0,43,2.0,2.0,5.0,6.0,2.6999999999999997,1,1,296.609641418343,264.0,33316.66970455078,4,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020530263260573466,12339.507297981772,2,1,2_1,2_0_1,2_4_1,2_0_1 -9014,2,59.0,0.0,2,111,720.0,0.0,0.0,67,62,0.0,0.0,995.16544385467,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119680,2,1,0,1,1,1020.0,0.0,500.0,42,3.0,1.0,5.0,6.0,3.5,1,1,303.979169949066,720.0,40572.34197482517,6,1,2,3,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017746079347520892,11592.097707092906,2,1,2_0,2_0_0,2_4_0,2_0_1 -9015,2,65.0,0.0,2,111,330.0,330.0,0.0,0,77,0.0,0.0,456.1174951000571,660.0,0.0,598.5054572796581,71,0,0,0,0,0,0,0,0,0,,2,,2,116752,2,1,0,1,1,,0.0,607.0,21,1.0,1.0,3.0,2.0,1.5,1,1,291.153604943976,330.0,14712.402581090892,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04486011012560686,9808.268387393928,2,1,2_0,2_0_0,2_4_0,2_0_1 -9016,2,51.0,0.0,8,111,615.0,0.0,0.0,56,53,0.0,0.0,850.0371499591973,615.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,1999.0,6,124089,2,1,0,1,1,612.0,0.0,411.0,43,2.0,0.0,3.0,2.0,1.5,2,2,905.295844497602,615.0,48104.831505800474,1,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012784578611939289,32069.887670533648,8,4,8,8_0,8_4,8_0_0 -9017,2,40.0,0.0,1,111,362.0,994.0,0.0,85,42,0.0,0.0,500.3470703824869,1356.0,0.0,1802.7709834423642,43,0,0,0,0,0,0,0,0,2,30.0,2,,1,101568,2,2,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,748.661689214542,362.0,25490.18866207468,6,1,1,2,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.053196938554539254,12138.18507717842,2,1,2_0,2_0_0,2_4_0,2_1_0 -9018,2,77.0,0.0,6,111,1800.0,0.0,0.0,0,72,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,106525,2,1,0,0,1,,495.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,949.623274120683,1800.0,63534.792934402176,0,5,0,1,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02833093360134891,63534.792934402176,10,5,10,10_0,10_4,10_0_0 -9019,2,54.0,0.0,1,111,280.0,300.0,0.0,0,46,0.0,0.0,387.00878372126056,580.0,0.0,544.0958702542347,50,2,2,2,2,2,2,2,1,3,30.0,2,,1,113701,1,2,0,1,1,70.0,300.0,423.0,32,1.0,0.0,3.0,3.0,1.8,2,2,777.145449886551,280.0,18256.6727168482,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.031769206196304654,10142.595953804555,2,1,2_0,2_0_0,2_4_0,2_1_0 -9020,2,47.0,0.0,1,111,2885.0,120.0,0.0,0,22,0.0,0.0,3987.5726465565594,3005.0,0.0,217.63834810169388,33,0,0,0,0,0,0,0,0,2,20.0,2,,1,105792,2,2,0,0,1,,0.0,1230.0,32,1.0,0.0,3.0,2.0,1.5,1,1,1034.56944389934,2885.0,44633.50404544163,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0673261054507527,29755.669363627752,8,4,8,8_0,8_4,8_1_0 -9021,1,44.0,99.0,1,111,780.0,0.0,0.0,0,38,0.0,0.0,1078.0958975092258,2576.0,0.0,0.0,71,1,2,2,2,1,2,2,2,0,,2,,1,108413,1,2,0,1,2,,0.0,1128.0,12,1.0,1.0,3.0,1.0,1.0,3,3,1029.07137253581,780.0,30554.940067965013,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08430715276384321,30554.940067965013,8,4,8,8_0,8_4,8_1_0 -9022,2,73.0,0.0,2,111,500.0,130.0,0.0,74,74,1338.2520498081285,0.0,691.0871137879653,1526.0,0.0,235.77487711016835,31,2,2,1,2,1,2,2,2,0,,2,,2,113461,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,928.113982966735,500.0,73758.29252964769,5,5,1,2,79.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020689199107837442,49172.195019765124,10,5,10,10_0,10_4,10_0_1 -9023,2,58.0,0.0,2,111,280.0,0.0,0.0,0,37,0.0,0.0,387.00878372126056,384.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,35.0,2,,2,122208,1,2,0,1,2,192.0,0.0,720.0,12,1.0,0.0,2.0,1.0,1.0,4,4,1521.57523896086,280.0,55707.12474364192,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006893193676161279,55707.12474364192,10,5,10,10_0,10_4,10_0_1 -9024,2,79.0,0.0,2,111,0.0,0.0,250.0,75,74,0.0,0.0,127.72833370938126,250.0,0.0,285.8114436631579,70,0,0,0,0,0,0,0,0,0,,2,,2,128680,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,878.77189063486,0.0,58223.37098868169,5,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0042938084098325165,38815.58065912112,9,5,9,9_0,9_4,9_0_1 -9025,2,52.0,0.0,1,111,561.0,0.0,0.0,0,38,0.0,0.0,775.399741670097,561.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,2,,1,117804,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,942.062247015447,561.0,28738.669221351058,0,1,1,2,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01952073687473363,28738.669221351058,8,4,8,8_0,8_4,8_1_0 -9026,2,65.0,0.0,9,111,638.0,0.0,0.0,52,75,0.0,0.0,881.8271571934437,1785.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,113977,2,1,0,1,1,,0.0,502.0,41,1.0,0.0,3.0,3.0,2.0,1,1,1143.65177794448,638.0,61260.27764432297,5,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029137967842126116,30630.138822161483,8,4,8,8_0,8_4,8_0_0 -9027,2,56.0,0.0,9,111,300.0,0.0,0.0,0,45,0.0,0.0,414.65226827277917,752.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,2005.0,6,114304,2,1,0,1,1,324.0,0.0,425.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1058.44365851676,300.0,30654.25112704666,0,1,2,3,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024531670889082664,30654.25112704666,8,4,8,8_0,8_4,8_0_0 -9028,2,54.0,0.0,5,111,737.0,0.0,0.0,0,37,0.0,0.0,1018.6624057234608,737.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,126352,2,1,0,0,1,,0.0,1308.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1407.29533207004,737.0,90002.28944462573,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008188680582991638,90002.28944462573,10,5,10,10_0,10_4,10_0_0 -9029,2,58.0,0.0,1,111,360.0,800.0,0.0,0,37,0.0,0.0,497.582721927335,1160.0,0.0,1450.922320677959,41,0,0,0,0,0,0,0,0,0,,2,,1,111313,2,2,0,0,1,,0.0,657.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1292.73418614698,360.0,60114.91009007711,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01929637752534002,60114.91009007711,10,5,10,10_0,10_4,10_1_0 -9030,2,64.0,0.0,7,111,1460.0,0.0,0.0,75,74,0.0,0.0,2017.9743722608587,1460.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,104345,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,4,4,1014.52286200331,1460.0,89108.93664754125,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016384439708610136,59405.9577650275,10,5,10,10_0,10_4,10_0_0 -9031,2,35.0,0.0,7,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,377.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,129124,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,1083.6821122594,0.0,116406.62910511573,1,1,1,2,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003238647170682756,64670.34950284207,10,5,10,10_0,10_4,10_0_0 -9032,2,39.0,0.0,9,111,300.0,0.0,0.0,52,55,0.0,0.0,414.65226827277917,2590.0,0.0,0.0,12,1,2,2,2,1,2,2,2,3,40.0,2,2009.0,6,126222,2,1,0,1,1,859.0,0.0,472.0,43,2.0,0.0,3.0,4.0,2.1,5,4,1165.22016607389,300.0,40204.44192402469,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.06442074248647414,19144.97234477366,5,3,5,5_0,5_4,5_0_0 -9033,2,51.0,0.0,2,111,330.0,90.0,0.0,46,33,0.0,0.0,456.1174951000571,420.0,0.0,163.2287610762704,50,2,2,2,2,1,1,2,2,3,45.0,2,,2,111358,1,3,0,1,2,722.0,0.0,830.0,43,2.0,0.0,4.0,4.0,2.3,1,1,276.810084059116,330.0,82263.75610363086,1,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005105529091947973,35766.85047983951,9,5,9,9_0,9_4,9_0_1 -9034,2,54.0,0.0,5,111,300.0,0.0,0.0,56,63,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,3,107972,2,1,0,1,1,817.0,0.0,948.0,43,3.0,0.0,4.0,5.0,2.8,2,2,233.87115468313,300.0,59701.23856555024,1,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00502502137657678,21321.870916267944,6,3,6,6_0,6_4,6_0_0 -9035,1,39.0,127.0,5,111,400.0,200.0,0.0,0,54,0.0,0.0,552.8696910303722,600.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,3,80.0,2,,3,108173,1,3,0,1,2,781.0,0.0,819.0,32,1.0,0.0,3.0,2.0,1.3,3,3,276.050856487136,400.0,19820.310922895744,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03027197718209862,15246.39301761211,3,2,3_1,3_0_1,3_4_1,3_0_0 -9036,2,88.0,0.0,5,111,260.0,130.0,0.0,0,86,0.0,0.0,359.36529916974195,390.0,0.0,235.77487711016835,31,0,0,0,0,0,0,0,0,0,,2,,3,120545,2,1,0,1,1,592.0,0.0,498.0,11,0.0,3.0,3.0,1.0,1.0,2,2,310.888656789249,260.0,23402.87525213514,0,6,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016664619017888356,23402.87525213514,6,3,6,6_0,6_4,6_0_0 -9037,2,39.0,0.0,5,111,0.0,0.0,500.0,56,43,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,44,0,0,0,0,0,0,0,0,3,75.0,2,,3,110325,1,3,0,1,2,528.0,0.0,784.0,43,2.0,0.0,2.0,3.0,1.8,2,2,287.34222432668,0.0,39227.09263357742,4,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012746292585854614,21792.829240876345,6,3,6,6_0,6_4,6_0_0 -9038,2,61.0,0.0,2,111,240.0,0.0,0.0,52,78,0.0,0.0,331.72181461822333,240.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,123128,1,2,0,1,2,732.0,0.0,336.0,42,1.0,2.0,3.0,2.0,1.5,1,1,291.164969345376,240.0,40867.60520781217,1,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005872622062868565,27245.070138541447,7,4,7,7_0,7_4,7_0_1 -9039,2,46.0,0.0,5,111,800.0,0.0,0.0,54,37,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,2,,3,133102,1,1,0,1,2,494.0,0.0,980.0,43,2.0,0.0,3.0,4.0,2.5,1,1,265.474620816234,800.0,65542.27849114739,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01220586190191807,26216.911396458956,7,4,7,7_0,7_4,7_0_0 -9040,2,58.0,0.0,5,111,1200.0,0.0,0.0,77,22,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,118987,2,1,0,0,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,240.223136483334,1200.0,34473.14056569555,5,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034809709249238756,22982.093710463698,6,3,6,6_0,6_4,6_0_0 -9041,2,36.0,0.0,5,111,600.0,0.0,0.0,31,37,0.0,0.0,829.3045365455583,600.0,0.0,0.0,10,2,2,2,1,1,2,2,2,1,15.0,2,,3,119025,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,236.736146718128,600.0,80119.51429722026,1,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.007488812248339066,44510.84127623348,10,5,10,10_0,10_4,10_0_0 -9042,2,94.0,0.0,2,111,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,600.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,2,,2,114160,2,2,0,0,1,,0.0,306.0,11,0.0,1.0,2.0,1.0,1.0,2,2,1342.24784996492,600.0,21216.488356989696,0,5,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.02827989203040437,21216.488356989696,5,3,5,5_0,5_4,5_0_1 -9043,2,54.0,0.0,7,111,1100.0,0.0,0.0,38,48,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,5,102315,1,3,0,1,1,,0.0,366.0,43,2.0,1.0,3.0,3.0,2.0,5,5,711.319472697206,1100.0,48137.728732667405,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022851098898098072,24068.864366333702,6,3,6,6_0,6_4,6_0_0 -9044,1,63.0,115.0,2,111,600.0,0.0,0.0,0,56,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,125040,2,1,0,0,1,,0.0,343.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1267.78337344634,600.0,11023.782325506296,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054427780074335186,11023.782325506296,2,1,2_1,2_0_1,2_4_1,2_0_1 -9045,2,59.0,0.0,1,111,480.0,0.0,0.0,0,52,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,2,2,2,2,1,2,2,2,1,15.0,2,,1,130422,2,3,0,0,1,,0.0,281.0,12,1.0,0.0,1.0,1.0,1.0,1,1,858.704145382524,480.0,19065.534135984166,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.02517632060955749,19065.534135984166,5,3,5,5_0,5_4,5_1_0 -9046,2,35.0,0.0,1,111,500.0,0.0,0.0,37,37,0.0,0.0,691.0871137879653,500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,1,118654,2,1,0,1,1,624.0,0.0,750.0,43,2.0,0.0,2.0,2.0,1.5,2,2,990.62662573678,500.0,117703.93294468876,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00424794641513771,78469.2886297925,10,5,10,10_0,10_4,10_1_0 -9047,2,40.0,0.0,2,111,0.0,0.0,600.0,42,33,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,130160,1,3,0,1,2,1056.0,0.0,1800.0,43,2.0,0.0,4.0,4.0,2.1,2,2,873.215403377235,0.0,74901.43682506509,1,1,2,3,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008010527239968986,35667.35086907861,9,5,9,9_0,9_4,9_0_1 -9048,2,75.0,0.0,2,111,205.0,80.0,0.0,0,77,0.0,0.0,283.3457166530658,285.0,0.0,145.09223206779592,33,0,0,0,0,0,0,0,0,0,,2,,2,109481,1,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1045.24258023917,205.0,37269.380530352944,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007647028095030723,37269.380530352944,9,5,9,9_0,9_4,9_0_1 -9049,2,40.0,0.0,2,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,379.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,,2,126845,1,3,0,1,2,775.0,0.0,1600.0,42,1.0,0.0,3.0,4.0,2.1,1,1,1282.65498683527,0.0,68069.398041914,6,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005567847092854109,32413.999067578094,8,4,8,8_0,8_4,8_0_1 -9050,2,30.0,0.0,2,111,0.0,0.0,480.0,37,38,0.0,0.0,245.23840072201202,480.0,0.0,548.7579718332631,10,2,1,2,2,1,2,2,2,1,20.0,2,,2,109635,1,2,0,1,2,637.0,0.0,829.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1344.49042628465,0.0,78853.60873780953,1,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006087229331456643,52569.07249187302,10,5,10,10_0,10_4,10_0_1 -9051,2,51.0,0.0,2,111,0.0,0.0,320.0,0,38,0.0,0.0,163.492267148008,320.0,0.0,365.83864788884205,31,2,1,2,1,2,2,2,2,3,40.0,2,,2,122818,1,3,0,1,2,167.0,0.0,368.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1103.38783866365,0.0,30244.47700924957,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010580444155213378,30244.47700924957,8,4,8,8_0,8_4,8_0_1 -9052,1,83.0,106.0,1,111,312.0,100.0,0.0,0,77,0.0,0.0,431.23835900369033,412.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,1,127265,2,1,0,1,1,468.0,0.0,334.0,11,0.0,0.0,2.0,1.0,1.0,2,2,933.7923802443,312.0,15374.570310135687,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.026797496885385404,15374.570310135687,3,2,3_1,3_0_1,3_4_1,3_1_0 -9053,1,50.0,390.0,1,111,0.0,0.0,800.0,0,37,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,50,0,0,0,0,0,0,0,0,0,,2,,1,104342,2,3,0,1,1,270.0,0.0,372.0,32,1.0,0.0,3.0,2.0,1.5,2,2,700.450345718301,0.0,5916.528187062814,0,4,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.13521443229989072,3944.3521247085428,1,1,1_1,1_0_1,1_4_1,1_1_0 -9054,1,29.0,300.0,1,111,0.0,0.0,0.0,68,63,0.0,0.0,0.0,278.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,106326,1,3,0,1,1,272.0,0.0,710.0,43,2.0,0.0,1.0,3.0,1.8,4,4,1003.4149038012,0.0,28830.612336995822,1,1,3,4,24.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.009642528460738474,16017.006853886567,4,2,4_1,4_0_1,4_4_1,4_1_0 -9055,2,69.0,0.0,1,111,530.0,0.0,0.0,0,43,0.0,0.0,732.5523406152432,530.0,0.0,0.0,31,2,2,2,1,1,2,2,2,0,,2,,1,130057,2,2,0,1,1,,0.0,930.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1086.94133775081,530.0,5825.418863079035,0,5,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.09098058224775747,5825.418863079035,1,1,1_0,1_0_0,1_4_0,1_1_0 -9056,2,52.0,0.0,1,111,262.0,331.0,0.0,0,55,0.0,0.0,362.1296476248938,593.0,0.0,600.3191101805056,71,0,0,0,0,0,0,0,0,0,,2,,1,122250,2,2,0,1,1,192.0,0.0,334.0,22,2.0,0.0,2.0,2.0,1.5,2,2,739.840263874964,262.0,57010.22679651983,0,4,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010401642535409093,38006.81786434656,9,5,9,9_0,9_4,9_1_0 -9057,1,31.0,546.0,9,111,360.0,0.0,0.0,0,45,0.0,0.0,497.582721927335,360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,25.0,2,2009.0,6,128443,2,1,0,1,1,550.0,0.0,702.0,32,1.0,0.0,3.0,4.0,1.9,4,3,1165.22016607389,360.0,15033.840115751529,0,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023945977689546812,7912.547429342911,1,1,1_1,1_0_1,1_4_1,1_0_0 -9059,2,60.0,0.0,1,111,0.0,0.0,2000.0,22,37,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,114110,2,1,2,0,1,,561.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,679.37712968588,0.0,273918.00325299933,1,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0073014550933066516,136959.00162649967,10,5,10,10_1,10_4,10_1_0 -9060,2,42.0,0.0,9,111,1000.0,0.0,0.0,37,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,132894,2,1,1,0,1,,346.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1250.05535571329,1000.0,141645.93124378487,1,1,1,2,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007059856864359299,67450.44344942136,10,5,10,10_1,10_4,10_0_0 -9061,2,44.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,1559.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,130826,2,1,1,0,1,,146.0,,43,2.0,0.0,7.0,4.0,2.1,4,4,654.52890521604,0.0,525119.8803574452,1,1,1,2,250.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0029688458927489094,250057.0858844977,10,5,10,10_1,10_4,10_1_0 -9062,2,65.0,0.0,5,111,0.0,0.0,393.0,0,23,0.0,0.0,200.78894059114734,393.0,0.0,449.29558943848417,50,0,0,0,0,0,0,0,0,0,,2,,3,102036,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,5,3,837.845189048145,0.0,71997.38863023906,0,5,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00545853130893888,71997.38863023906,10,5,10,10_0,10_4,10_0_0 -9063,2,47.0,0.0,1,111,251.0,456.0,0.0,85,23,0.0,0.0,346.92573112155856,707.0,0.0,827.0257227864367,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,127826,2,2,0,0,1,,0.0,,42,1.0,0.0,6.0,5.0,2.5999999999999996,3,3,647.745927532922,251.0,112960.75539893178,6,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006258810836587994,43446.44438420454,10,5,10,10_0,10_4,10_1_0 -9064,2,31.0,0.0,1,111,0.0,0.0,0.0,42,42,0.0,0.0,0.0,895.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,126437,2,2,0,0,1,,425.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,750.72450058965,0.0,111701.22145480393,1,1,1,2,73.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008012445954873744,62056.23414155774,10,5,10,10_0,10_4,10_1_0 -9065,2,92.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,198.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,127752,2,1,0,1,2,568.0,190.0,718.0,11,0.0,2.0,2.0,1.0,1.0,2,2,857.394584464641,0.0,24698.56651826671,0,5,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008016659584416042,24698.56651826671,7,4,7,7_0,7_4,7_1_0 -9066,2,28.0,0.0,5,111,600.0,0.0,0.0,34,34,0.0,0.0,829.3045365455583,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,3,131693,1,3,0,0,1,,0.0,536.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1207.21104583735,600.0,19708.46984779318,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030443763754048305,13138.979898528787,2,1,2_0,2_0_0,2_4_0,2_0_0 -9067,2,43.0,0.0,1,111,1000.0,2500.0,0.0,37,37,0.0,0.0,1382.1742275759307,3500.0,0.0,4534.132252118622,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,121281,2,1,0,0,1,,0.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,684.697416312525,1000.0,158203.37874515625,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022123421305925556,65918.07447714845,10,5,10,10_0,10_4,10_1_0 -9068,2,39.0,0.0,2,111,286.0,491.0,0.0,0,38,0.0,0.0,395.3018290867161,777.0,0.0,890.5035743160975,71,2,2,2,2,1,2,2,2,0,,2,,2,108452,1,3,0,0,1,,0.0,1150.0,32,1.0,0.0,3.0,2.0,1.3,3,3,1147.87198407818,286.0,57519.24614252559,0,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013508521966276991,44245.57395578891,10,5,10,10_0,10_4,10_0_1 -9069,2,60.0,0.0,1,111,1500.0,3500.0,0.0,38,37,0.0,0.0,2073.261341363896,5000.0,0.0,6347.785152966071,41,0,0,0,0,0,0,0,0,3,40.0,1,,1,101816,2,2,2,0,1,,600.0,,43,2.0,1.0,9.0,3.0,2.0,1,1,718.133060549577,1500.0,192215.3173335534,1,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026012495098522475,96107.6586667767,10,5,10,10_1,10_4,10_1_0 -9070,2,31.0,0.0,1,111,360.0,0.0,0.0,0,54,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,2,,1,131142,1,2,0,0,2,,0.0,670.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1142.60626725419,360.0,24518.773062480068,0,1,2,3,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014682627025529723,24518.773062480068,7,4,7,7_0,7_4,7_1_0 -9071,2,65.0,0.0,2,111,0.0,0.0,300.0,0,23,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,115501,1,2,0,1,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,1183.26527389967,0.0,247770.33330053368,0,1,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0012107987102560587,247770.33330053368,10,5,10,10_0,10_4,10_0_1 -9072,2,34.0,0.0,2,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,209.0,0.0,0.0,33,2,2,2,2,1,2,2,2,1,10.0,2,,2,104532,1,2,0,1,2,250.0,0.0,728.0,12,1.0,0.0,1.0,1.0,1.0,2,1,1286.13791565047,0.0,29072.848262453474,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0071888381252935545,29072.848262453474,8,4,8,8_0,8_4,8_0_1 -9073,2,41.0,0.0,1,111,0.0,0.0,360.0,0,37,0.0,0.0,183.92880054150902,360.0,0.0,411.56847887494735,71,0,0,0,0,0,0,0,0,3,35.0,2,,1,124789,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,3,746.732780705686,0.0,63126.331204858536,0,1,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005702850033082431,63126.331204858536,10,5,10,10_0,10_4,10_1_0 -9074,2,37.0,0.0,1,111,0.0,0.0,550.0,0,53,0.0,0.0,281.0023341606388,550.0,0.0,628.7851760589474,71,1,2,2,2,1,2,2,2,2,55.0,2,,1,112201,1,2,0,1,2,310.0,0.0,640.0,12,1.0,0.0,1.0,1.0,1.0,3,3,994.442651698412,0.0,35779.438437604585,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.015371957303330505,35779.438437604585,9,5,9,9_0,9_4,9_1_0 -9075,2,52.0,0.0,1,111,0.0,0.0,3428.0,0,38,0.0,0.0,1751.410911823036,3428.0,0.0,3919.046515509221,41,0,0,0,0,0,0,0,0,0,,2,,1,102866,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,706.975897290289,0.0,83667.78079373816,0,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04097156596576729,83667.78079373816,10,5,10,10_0,10_4,10_1_0 -9076,2,100.0,0.0,2,111,210.0,0.0,0.0,0,72,0.0,0.0,290.25658779094545,210.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128411,2,2,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,885.258180867619,210.0,13477.584169599862,0,5,0,1,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015581427454460091,13477.584169599862,3,2,3_0,3_0_0,3_4_0,3_0_1 -9077,2,49.0,0.0,2,111,360.0,0.0,0.0,0,56,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,111345,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,3,3,961.372467938505,360.0,22680.024114267857,0,1,1,2,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01587299899621916,22680.024114267857,6,3,6,6_0,6_4,6_0_1 -9078,2,60.0,0.0,8,111,680.0,1282.0,0.0,52,46,0.0,0.0,939.8784747516328,1962.0,0.0,2325.1030188864297,50,0,0,0,0,0,0,0,0,2,50.0,1,2001.0,6,105725,1,2,2,0,1,,462.0,,43,2.0,2.0,3.0,2.0,1.5,3,2,673.468083573763,680.0,48367.22507161476,1,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04056465916940597,32244.81671440984,8,4,8,8_1,8_4,8_0_0 -9079,2,42.0,0.0,5,111,280.0,0.0,0.0,46,37,0.0,0.0,387.00878372126056,280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,3,125886,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,706.579790175262,280.0,105110.76952249874,4,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0026638564370900794,50052.74739166607,10,5,10,10_0,10_4,10_0_0 -9080,2,53.0,0.0,7,111,1800.0,0.0,0.0,42,31,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,109595,2,1,3,0,1,,230.0,,43,4.0,0.0,6.0,6.0,3.5,3,3,813.397741170424,1800.0,191818.15485318046,1,1,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009383887575072017,54805.187100908704,10,5,10,10_1,10_4,10_0_0 -9081,2,41.0,0.0,1,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,2858.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,118289,2,2,4,0,1,,618.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,682.809409559658,0.0,75726.70744996659,7,1,1,2,85.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03774097800156318,42070.393027759215,9,5,9,9_1,9_4,9_1_0 -9082,2,48.0,0.0,1,111,510.0,3000.0,0.0,43,37,0.0,0.0,704.9088560637246,3510.0,0.0,5440.958702542347,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,111372,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,5.0,2.4,4,4,553.183404542167,510.0,106230.53212903562,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033041348185439655,44262.72172043151,10,5,10,10_1,10_4,10_1_0 -9083,2,79.0,0.0,2,111,600.0,300.0,0.0,77,74,0.0,0.0,829.3045365455583,900.0,0.0,544.0958702542347,43,0,0,0,0,0,0,0,0,0,,2,,2,104146,2,2,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,879.06647216137,600.0,68660.4152526438,5,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013107989467997648,45773.6101684292,10,5,10,10_0,10_4,10_0_1 -9084,2,48.0,0.0,2,111,678.0,150.0,0.0,85,56,597.4339508072003,0.0,937.1141262964809,1228.0,0.0,272.04793512711734,60,0,0,0,0,0,0,0,0,0,,2,,2,122699,2,2,0,1,1,,0.0,,42,1.0,0.0,6.0,5.0,2.8,2,2,725.465652118374,678.0,19427.264903301675,7,1,0,1,97.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0632101330842151,6938.308894036313,1,1,1_0,1_0_0,1_4_0,1_0_1 -9085,2,48.0,0.0,2,111,570.0,1767.0,0.0,43,31,0.0,0.0,787.8393097182804,2337.0,0.0,3204.724675797442,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,103851,2,2,1,0,1,,340.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1005.62904128469,570.0,225493.3938887644,1,1,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01036393997933633,125274.10771598022,10,5,10,10_1,10_4,10_0_1 -9086,2,44.0,0.0,1,111,1192.0,0.0,0.0,0,56,0.0,0.0,1647.5516792705093,1192.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,1,112022,1,2,0,0,1,,0.0,1000.0,32,2.0,0.0,4.0,4.0,2.1,3,3,1083.55856290647,1192.0,24684.599591069884,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04828921755859586,11754.571233842802,2,1,2_0,2_0_0,2_4_0,2_1_0 -9087,2,51.0,0.0,2,111,700.0,700.0,0.0,0,62,0.0,0.0,967.5219593031513,1400.0,0.0,1269.5570305932142,60,1,2,2,2,2,2,2,1,2,10.0,2,,2,122312,2,3,0,1,1,552.0,0.0,539.0,22,1.0,0.0,3.0,2.0,1.5,3,2,275.280920364374,700.0,25207.84849704923,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.055538258259679736,16805.232331366155,4,2,4_0,4_0_0,4_4_0,4_0_1 -9088,2,26.0,0.0,9,111,680.0,0.0,0.0,47,43,0.0,0.0,939.8784747516328,680.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,8,2007.0,6,133133,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,2.0,2.0,1.5,1,1,390.668505245692,680.0,45559.48958505863,1,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014925540347208104,30372.993056705756,8,4,8,8_0,8_4,8_0_0 -9089,2,77.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,203.0,0.0,0.0,10,2,1,2,1,1,2,2,2,0,,2,,2,117837,1,1,0,1,2,,0.0,399.0,11,0.0,0.0,2.0,1.0,1.0,4,4,327.428929576254,0.0,23240.307202314754,0,5,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.008734824296116921,23240.307202314754,6,3,6,6_0,6_4,6_0_1 -9090,2,71.0,0.0,2,111,0.0,512.0,0.0,77,75,0.0,0.0,0.0,945.0,0.0,928.5902852338938,70,0,0,0,0,0,0,0,0,0,,2,,2,122700,2,1,0,1,1,612.0,0.0,331.0,41,0.0,1.0,4.0,2.0,1.5,1,1,305.880825617583,0.0,40283.32033029088,5,5,2,3,75.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023458840836647992,26855.546886860586,7,4,7,7_0,7_4,7_0_1 -9091,2,79.0,0.0,1,111,234.0,774.0,0.0,0,68,0.0,0.0,323.4287692527678,1008.0,0.0,1403.7673452559254,42,0,0,0,0,0,0,0,0,0,,2,,1,132037,2,2,0,0,1,,0.0,258.0,11,0.0,3.0,3.0,1.0,1.0,1,1,278.207157961489,234.0,20238.55349710307,0,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.049805931048594175,20238.55349710307,5,3,5,5_0,5_4,5_1_0 -9092,2,29.0,0.0,2,111,0.0,0.0,430.0,63,52,0.0,0.0,219.69273398013576,430.0,0.0,491.5956831006315,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,125230,2,1,0,1,1,600.0,572.0,340.0,43,2.0,1.0,3.0,4.0,2.1,1,1,234.54175541904,0.0,40123.00767340096,1,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01071704303675776,19106.194130190936,5,3,5,5_0,5_4,5_0_1 -9093,2,69.0,0.0,2,111,302.0,148.0,0.0,0,75,0.0,0.0,417.416616727931,450.0,0.0,268.42062932542245,42,0,0,0,0,0,0,0,0,0,,2,,2,130771,2,2,0,1,1,1140.0,0.0,331.0,11,0.0,2.0,3.0,1.0,1.0,1,1,310.021554219581,302.0,27115.799718803275,0,5,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016595490624159995,27115.799718803275,7,4,7,7_0,7_4,7_0_1 -9094,2,46.0,0.0,1,111,450.0,1500.0,0.0,56,68,0.0,0.0,621.9784024091688,1950.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,121020,2,3,0,0,2,,0.0,279.0,43,2.0,0.0,3.0,4.0,2.3,2,2,234.54175541904,450.0,32549.224052642287,1,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05990926225602919,14151.836544627082,3,2,3_0,3_0_0,3_4_0,3_1_0 -9095,2,63.0,0.0,2,111,200.0,200.0,0.0,0,78,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,20,0,0,0,0,0,0,0,0,0,,2,,2,116409,2,1,0,1,1,768.0,0.0,326.0,21,1.0,0.0,3.0,2.0,1.5,1,1,196.647661040061,200.0,50383.366758444434,0,5,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007939128044335357,33588.91117229629,9,5,9,9_0,9_4,9_0_1 -9096,2,58.0,0.0,1,111,924.0,4560.0,0.0,37,37,0.0,0.0,1277.1289862801598,5484.0,0.0,8270.257227864367,50,0,0,0,0,0,0,0,0,3,60.0,1,,1,123553,2,1,2,0,1,,1200.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,282.165571698248,924.0,223575.44844365938,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024528632451259327,111787.72422182969,10,5,10,10_1,10_4,10_1_0 -9097,2,61.0,0.0,2,111,600.0,75.0,0.0,35,46,0.0,0.0,829.3045365455583,675.0,0.0,136.02396756355867,33,0,0,0,0,0,0,0,0,0,,2,,2,130636,2,1,0,1,2,,0.0,,43,4.0,0.0,3.0,4.0,2.5,1,1,833.116917834602,600.0,76260.2043688416,1,4,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008851274469909387,30504.081747536642,8,4,8,8_0,8_4,8_0_1 -9098,2,81.0,0.0,2,111,310.0,61.0,0.0,0,74,0.0,0.0,428.47401054853844,371.0,0.0,110.63282695169438,50,0,0,0,0,0,0,0,0,0,,2,,2,127026,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1043.70855004478,310.0,49730.83847921548,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007460159758920128,49730.83847921548,10,5,10,10_0,10_4,10_0_1 -9099,2,82.0,0.0,2,111,658.0,109.0,0.0,86,74,0.0,0.0,909.4706417449623,767.0,0.0,197.68816619237194,70,0,0,0,0,0,0,0,0,0,,2,,2,104145,2,2,0,1,2,,0.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,898.520575753433,658.0,242035.29472652127,6,5,0,1,152.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0031689593076358676,161356.86315101417,10,5,10,10_0,10_4,10_0_1 -9100,2,56.0,0.0,2,111,340.0,184.0,0.0,75,54,0.0,0.0,469.9392373758164,524.0,0.0,333.7121337559306,42,0,0,0,0,0,0,0,0,1,25.0,2,,2,119290,2,3,0,1,2,,0.0,,42,1.0,0.0,4.0,4.0,2.3,2,2,746.283888272338,340.0,54589.360242482595,5,1,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009598940117129494,23734.504453253303,6,3,6,6_0,6_4,6_0_1 -9101,2,41.0,0.0,1,111,341.0,1449.0,0.0,33,33,0.0,155.27587572291867,471.32141160339233,1940.0,0.0,2627.9830533279533,31,0,0,0,0,0,0,0,0,3,35.0,1,,1,132549,2,2,2,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,4,2,798.7827744779,341.0,171778.53820914854,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011293611065882734,81799.30390911835,10,5,10,10_1,10_4,10_1_0 -9102,2,78.0,0.0,1,111,670.0,1978.0,0.0,74,74,0.0,0.0,926.0567324758734,2648.0,0.0,3587.405437876254,31,1,2,2,1,1,2,2,2,0,,1,,1,127382,2,2,2,0,2,,202.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,711.311570227518,670.0,42502.325435125036,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.062302473403293444,28334.883623416692,8,4,8,8_1,8_4,8_1_0 -9103,2,58.0,0.0,2,111,270.0,387.0,0.0,0,37,0.0,0.0,373.1870414455012,657.0,0.0,701.8836726279627,71,2,1,2,2,1,1,2,2,1,20.0,2,,2,105430,2,3,0,1,1,500.0,0.0,341.0,32,2.0,1.0,3.0,2.0,1.5,2,2,981.132339686198,270.0,39894.719590165616,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016468344852383823,26596.479726777077,7,4,7,7_0,7_4,7_0_1 -9104,2,47.0,0.0,7,111,629.0,1096.0,0.0,85,46,0.0,0.0,869.3875891452603,1725.0,0.0,1987.763579328804,41,0,0,0,0,0,0,0,0,2,45.0,1,,5,111455,2,1,1,0,1,,663.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,809.435727860214,629.0,57678.90872799599,6,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029906945849735283,27466.147013331425,7,4,7,7_1,7_4,7_0_0 -9105,2,27.0,0.0,2,111,254.0,0.0,0.0,0,34,0.0,0.0,351.07225380428633,254.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104865,2,1,0,1,2,167.0,0.0,550.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1390.86763124011,254.0,24706.368447097,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010280750104730386,24706.368447097,7,4,7,7_0,7_4,7_0_1 -9106,2,56.0,0.0,2,111,892.0,205.0,0.0,56,64,0.0,0.0,1232.89941099773,1097.0,0.0,371.79884467372705,44,2,2,2,1,1,2,2,1,2,15.0,2,,2,131236,2,1,0,1,1,612.0,0.0,327.0,43,2.0,1.0,3.0,3.0,2.0,2,1,968.171886471612,892.0,40746.89228876068,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026922298570057776,20373.44614438034,5,3,5,5_0,5_4,5_0_1 -9107,2,61.0,0.0,2,111,110.0,220.0,0.0,77,78,0.0,0.0,152.03916503335236,401.0,0.0,399.00363818643876,70,2,2,1,2,1,2,2,2,0,,2,,2,110338,2,2,0,1,1,552.0,0.0,460.0,41,3.0,0.0,5.0,8.0,4.3,2,2,1057.03891796793,110.0,84279.86990620206,5,5,2,3,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.004757957035841258,19599.969745628387,5,3,5,5_0,5_4,5_0_1 -9108,2,65.0,0.0,7,111,1278.0,0.0,0.0,74,46,0.0,0.0,1766.4186628420393,1278.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,5,109282,2,2,0,0,1,,0.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,913.374643192229,1278.0,199805.2550234866,5,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006396228166520317,133203.50334899107,10,5,10,10_0,10_4,10_0_0 -9109,1,57.0,141.0,7,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1152.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,120.0,2,,5,127137,2,1,0,0,1,,0.0,380.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1148.02912999218,0.0,21688.353262204655,0,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05311606584754132,21688.353262204655,6,3,6,6_0,6_4,6_0_0 -9110,2,44.0,0.0,7,111,540.0,0.0,0.0,52,23,0.0,0.0,746.3740828910024,566.0,0.0,0.0,60,1,1,2,1,1,2,2,2,2,60.0,2,,5,106535,1,2,0,1,1,,0.0,,43,2.0,1.0,4.0,4.0,2.1,3,1,838.640599088835,540.0,78097.41806475677,1,1,1,2,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.00724735867107264,37189.24669750322,9,5,9,9_0,9_4,9_0_0 -9111,2,24.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,287.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,131092,2,1,0,1,1,448.0,0.0,236.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1202.52507352712,0.0,31848.694528995962,0,1,2,3,27.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00901135836945238,31848.694528995962,8,4,8,8_0,8_4,8_0_1 -9112,2,79.0,0.0,7,111,430.0,0.0,0.0,74,74,0.0,0.0,594.3349178576501,846.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,103115,2,2,0,1,1,,0.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,860.430530277608,430.0,96980.32145276223,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008723419218733718,64653.54763517482,10,5,10,10_0,10_4,10_0_0 -9113,2,60.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,128.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,125185,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,1147.60227824747,0.0,69677.52944130209,0,1,0,1,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0018370341346248516,69677.52944130209,10,5,10,10_0,10_4,10_0_1 -9114,2,33.0,0.0,1,111,456.0,0.0,0.0,0,54,0.0,0.0,630.2714477746243,456.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,1,108360,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1242.63722251005,456.0,36981.31457869812,0,1,1,2,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012330551393180164,36981.31457869812,9,5,9,9_0,9_4,9_1_0 -9115,2,50.0,0.0,8,111,0.0,0.0,0.0,37,35,0.0,310.55175144583734,0.0,3608.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,119243,2,1,2,0,1,,1100.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,811.472571983901,0.0,90027.52928966818,1,4,1,2,93.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04007663020931159,42870.25204269913,9,5,9,9_1,9_4,9_0_0 -9116,2,43.0,0.0,2,111,360.0,0.0,0.0,37,37,0.0,0.0,497.582721927335,922.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,128951,1,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,881.069767349064,360.0,83263.59368016597,1,1,1,2,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011073266949557901,39649.33032388856,9,5,9,9_0,9_4,9_0_1 -9117,2,59.0,0.0,6,111,680.0,1490.0,0.0,0,38,0.0,0.0,939.8784747516328,2170.0,0.0,2702.342822262699,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,122779,2,1,2,0,1,,160.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,947.010728452114,680.0,112439.43537557207,0,1,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019299278698365303,112439.43537557207,10,5,10,10_1,10_4,10_0_0 -9118,2,69.0,0.0,2,111,200.0,80.0,0.0,75,72,0.0,0.0,276.4348455151861,795.0,0.0,145.09223206779592,41,0,0,0,0,0,0,0,0,0,,2,,2,128969,1,2,0,1,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,1,785.623555027334,200.0,70209.58584676521,5,5,0,1,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011323240130416298,46806.39056451014,10,5,10,10_0,10_4,10_0_1 -9119,2,47.0,0.0,2,111,340.0,94.0,0.0,52,38,0.0,0.0,469.9392373758164,434.0,0.0,170.4833726796602,71,2,2,2,2,2,2,1,2,3,30.0,2,,2,126515,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,890.840533924017,340.0,81031.14089270687,1,1,1,2,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.00535596556112493,40515.570446353435,9,5,9,9_0,9_4,9_0_1 -9120,2,54.0,0.0,2,111,623.0,901.0,0.0,52,64,0.0,0.0,861.0945437798048,1524.0,0.0,1634.1012636635514,50,2,2,2,2,1,2,2,2,2,10.0,2,,2,119460,1,2,0,0,2,,0.0,366.0,43,4.0,0.0,4.0,4.0,2.5,1,1,1235.21249865235,623.0,51496.30326524299,1,1,2,3,128.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029594357329890346,20598.521306097195,5,3,5,5_0,5_4,5_0_1 -9121,2,48.0,0.0,1,111,440.0,2180.0,0.0,0,42,0.0,0.0,608.1566601334094,3604.0,0.0,3953.7633238474386,71,1,2,2,2,1,2,2,2,2,10.0,1,,1,100931,2,1,3,0,1,,870.0,,32,1.0,0.0,6.0,3.0,2.0,1,1,1023.05438940015,440.0,39496.65980095086,0,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.09124822246141523,19748.32990047543,5,3,5,5_1,5_4,5_1_0 -9122,2,77.0,0.0,1,111,161.0,820.0,0.0,86,86,0.0,1201.8352780953905,222.53005063972483,2142.0,0.0,1487.1953786949082,31,0,0,0,0,0,0,0,0,0,,1,,1,108812,2,1,2,0,1,,203.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,710.97260035293,161.0,30721.385320790676,5,5,0,1,113.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06972341831702501,20480.923547193783,5,3,5,5_1,5_4,5_1_0 -9123,2,52.0,0.0,7,111,360.0,600.0,0.0,53,53,0.0,0.0,497.582721927335,960.0,0.0,1088.1917405084694,70,0,0,0,0,0,0,0,0,2,25.0,2,,5,132148,2,1,0,0,1,,0.0,820.0,43,2.0,4.0,4.0,3.0,2.0,2,2,1159.35502910624,360.0,64346.322666553984,1,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0149192674921731,32173.161333276992,8,4,8,8_0,8_4,8_0_0 -9124,2,49.0,0.0,1,111,400.0,0.0,0.0,0,46,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,125898,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,1318.52303712939,400.0,6091.90808836508,0,4,0,1,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06566087245537387,6091.90808836508,1,1,1_0,1_0_0,1_4_0,1_1_0 -9125,2,33.0,0.0,1,111,330.0,558.0,0.0,37,37,0.0,0.0,456.1174951000571,888.0,0.0,1012.0183186728765,31,0,0,0,0,0,0,0,0,2,35.0,2,,1,113724,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,5,3,914.390059760554,330.0,152204.4591829979,1,1,1,2,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005834257450580624,101469.63945533194,10,5,10,10_0,10_4,10_1_0 -9126,2,45.0,0.0,7,111,960.0,980.0,0.0,52,37,0.0,0.0,1326.8872584728933,1940.0,0.0,1777.3798428305,60,0,0,0,0,0,0,0,0,2,10.0,2,,5,108139,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,3,3,947.591200454243,960.0,94804.65900451656,4,1,1,2,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0204631293479741,45145.075716436455,10,5,10,10_0,10_4,10_0_0 -9127,2,60.0,0.0,7,111,400.0,800.0,0.0,0,47,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,42,0,0,0,0,0,0,0,0,2,15.0,2,,5,127991,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1124.00734068305,400.0,71619.57098109301,0,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01675519670896647,71619.57098109301,10,5,10,10_0,10_4,10_0_0 -9128,2,57.0,0.0,1,111,3700.0,0.0,0.0,0,54,0.0,0.0,5114.044642030943,4062.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,6.0,1,,1,111521,2,1,2,0,1,,1024.0,,22,2.0,2.0,6.0,3.0,2.0,2,2,787.621098651265,3700.0,22738.95235483211,0,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17863619821239524,11369.476177416054,2,1,2_0,2_1_0,2_4_0,2_1_0 -9129,2,77.0,0.0,1,111,220.0,1410.0,0.0,78,77,0.0,0.0,304.0783300667047,1630.0,0.0,2557.250590194903,20,0,0,0,0,0,0,0,0,0,,1,,1,117188,2,1,1,0,1,,180.0,,41,0.0,12.0,3.0,2.0,1.5,2,2,673.119628695437,220.0,40539.070680299104,5,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04020812447464752,27026.047120199404,7,4,7,7_1,7_4,7_1_0 -9130,2,74.0,0.0,7,111,400.0,0.0,0.0,77,74,0.0,0.0,552.8696910303722,400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,116879,2,1,0,0,1,,0.0,,41,0.0,2.0,2.0,3.0,2.0,1,1,889.602526993328,400.0,50593.791761471286,5,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007906108359812878,25296.895880735643,7,4,7,7_0,7_4,7_0_0 -9131,2,64.0,0.0,1,111,115.0,73.0,0.0,75,74,0.0,0.0,158.950036171232,188.0,0.0,132.39666176186378,31,0,0,0,0,0,0,0,0,0,,1,,1,104602,2,1,3,0,1,,629.0,,41,0.0,3.0,4.0,2.0,1.5,4,2,710.914568683211,115.0,107963.49618372344,5,5,0,1,93.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.001741329307084285,71975.6641224823,10,5,10,10_1,10_4,10_1_0 -9132,2,61.0,0.0,1,111,505.0,925.0,0.0,43,38,0.0,0.0,697.9979849258449,1430.0,0.0,1677.6289332838903,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,124546,2,2,1,0,1,,427.0,,43,3.0,1.0,6.0,4.0,2.5,2,2,654.409546891291,505.0,159916.9144897921,1,1,0,1,126.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008942143515977358,63966.76579591684,10,5,10,10_1,10_4,10_1_0 -9133,2,26.0,0.0,7,111,600.0,0.0,0.0,0,46,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,131366,2,2,3,0,1,,400.0,730.0,12,1.0,0.0,2.0,1.0,1.0,5,4,764.303234021039,600.0,33519.28804677294,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017900141529341485,33519.28804677294,8,4,8,8_1,8_4,8_0_0 -9134,2,35.0,0.0,2,111,0.0,0.0,0.0,46,64,0.0,0.0,0.0,2043.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,118749,2,2,1,0,1,,480.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,823.420488628891,0.0,59786.38449755848,1,1,1,2,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03417165993845021,28469.706903599275,8,4,8,8_1,8_4,8_0_1 -9135,0,21.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,135.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,116356,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,5,4,1513.88988587588,0.0,9485.0,0,1,5,0,33.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014232999472851872,9485.0,1,1,1_0,1_0_0,1_4_0,1_0_1 -9136,2,64.0,0.0,2,111,530.0,0.0,0.0,75,38,0.0,0.0,732.5523406152432,530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108054,2,1,0,1,1,1000.0,0.0,1200.0,42,1.0,3.0,5.0,2.0,1.5,4,3,1350.71275422606,530.0,132389.59924493596,5,4,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004003335632276061,88259.73282995731,10,5,10,10_0,10_4,10_0_1 -9137,2,38.0,0.0,1,111,660.0,0.0,0.0,68,21,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,117777,1,2,0,0,1,,0.0,540.0,43,2.0,0.0,2.0,4.0,2.3,1,1,904.564434216959,660.0,16064.2707972158,1,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04108496478498039,6984.46556400687,1,1,1_0,1_0_0,1_4_0,1_1_0 -9138,1,33.0,300.0,2,111,63.0,0.0,0.0,0,54,0.0,0.0,87.07697633728363,402.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,113432,2,1,0,1,1,,0.0,730.0,22,2.0,0.0,4.0,2.0,1.5,3,3,878.611639894432,63.0,16439.357525528183,0,1,3,4,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024453510386628328,10959.571683685455,2,1,2_1,2_0_1,2_4_1,2_0_1 -9139,2,35.0,0.0,2,111,400.0,0.0,0.0,37,43,0.0,0.0,552.8696910303722,493.0,0.0,0.0,71,1,2,2,2,1,2,2,2,1,15.0,2,,2,114453,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,4,4,878.611639894432,400.0,102308.71145465071,4,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0048187489900948155,68205.8076364338,10,5,10,10_0,10_4,10_0_1 -9140,2,65.0,0.0,1,111,600.0,3500.0,0.0,74,90,0.0,0.0,829.3045365455583,4100.0,0.0,6347.785152966071,50,1,2,2,1,1,2,2,2,0,,1,,1,128196,2,1,4,0,1,,300.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,689.258256776408,600.0,191988.9554432251,5,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.021355395108717336,127992.63696215006,10,5,10,10_1,10_4,10_1_0 -9141,1,36.0,400.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,231.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,118499,1,3,0,0,2,,0.0,850.0,32,2.0,2.0,2.0,3.0,1.8,6,5,999.657805982799,0.0,30103.871529698878,0,4,3,4,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0076734316306162715,16724.373072054932,4,2,4_1,4_0_1,4_4_1,4_0_1 -9142,2,43.0,0.0,2,111,700.0,2000.0,0.0,38,37,0.0,0.0,967.5219593031513,2700.0,0.0,3627.3058016948976,42,2,2,2,1,1,2,2,2,2,45.0,1,,2,121353,2,3,1,0,1,,610.0,,43,2.0,0.0,9.0,4.0,2.1,3,3,916.087490747059,700.0,176570.7961240069,1,1,1,2,195.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.015291316906697135,84081.33148762233,10,5,10,10_1,10_4,10_0_1 -9143,2,81.0,0.0,2,111,240.0,102.0,0.0,78,75,0.0,0.0,331.72181461822333,342.0,0.0,184.9925958864398,31,0,0,0,0,0,0,0,0,0,,2,,2,106287,2,3,0,1,1,,0.0,,41,0.0,0.0,2.0,2.0,1.5,1,1,1018.95518996368,240.0,44506.44553302835,5,5,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007684280240851876,29670.96368868557,8,4,8,8_0,8_4,8_0_1 -9144,1,44.0,125.0,2,111,0.0,0.0,0.0,68,64,0.0,0.0,0.0,990.0,0.0,0.0,31,2,2,2,2,2,2,2,1,2,45.0,2,,2,107783,1,3,0,1,1,840.0,0.0,480.0,43,2.0,0.0,5.0,5.0,2.4,2,2,809.245459118678,0.0,27986.825445160317,1,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03537378692484745,11661.177268816798,2,1,2_1,2_0_1,2_4_1,2_0_1 -9145,1,74.0,79.0,2,111,450.0,241.0,0.0,78,86,0.0,0.0,621.9784024091688,691.0,0.0,437.0903491042352,41,0,0,0,0,0,0,0,0,0,,2,,2,106106,2,1,0,1,1,834.0,0.0,440.0,41,1.0,1.0,5.0,6.0,3.5,1,1,1103.22618926484,450.0,47756.426222260336,7,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01446925690762659,13644.693206360096,3,2,3_1,3_0_1,3_4_1,3_0_1 -9146,2,76.0,0.0,2,111,220.0,0.0,0.0,0,78,0.0,0.0,304.0783300667047,239.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,126312,2,1,0,1,1,780.0,0.0,329.0,11,0.0,1.0,3.0,1.0,1.0,4,2,1104.33518609955,220.0,21459.065711362025,0,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011137483952689311,21459.065711362025,6,3,6,6_0,6_4,6_0_1 -9147,2,88.0,0.0,2,111,167.0,0.0,0.0,0,77,0.0,0.0,230.8230960051804,859.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,109191,2,2,4,0,1,,183.0,212.0,11,0.0,3.0,1.0,1.0,1.0,4,4,851.361608239471,167.0,20865.13507614505,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041169155956344045,20865.13507614505,5,3,5,5_1,5_4,5_0_1 -9148,2,51.0,0.0,2,111,0.0,0.0,0.0,56,54,0.0,0.0,0.0,285.0,0.0,0.0,12,2,1,2,2,1,2,2,2,0,,2,,2,104640,2,1,0,1,1,482.0,0.0,231.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1035.72805736494,0.0,19646.781830165775,4,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014506192538994322,13097.85455344385,2,1,2_0,2_0_0,2_4_0,2_0_1 -9149,2,68.0,0.0,5,111,307.0,1452.0,0.0,77,75,0.0,248.44140115666985,424.32748786581067,1999.0,0.0,2633.4240120304958,12,0,0,0,0,0,0,0,0,0,,1,,3,132865,2,1,2,0,1,,457.0,,41,0.0,4.0,5.0,2.0,1.5,3,3,867.26939312303,307.0,39885.380246805675,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05011861458084244,26590.25349787045,7,4,7,7_1,7_4,7_0_0 -9150,2,46.0,0.0,5,111,0.0,0.0,0.0,34,38,0.0,0.0,0.0,1308.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,,3,108784,2,2,0,0,1,,0.0,1100.0,43,2.0,1.0,5.0,2.0,1.5,2,2,727.893362699321,0.0,74545.10355660132,1,1,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017546424078770637,49696.735704400875,10,5,10,10_0,10_4,10_0_0 -9151,2,33.0,0.0,5,111,900.0,0.0,0.0,46,48,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,2,2,2,2,2,2,1,2,2,40.0,2,,3,100561,2,1,0,0,1,,0.0,859.0,43,2.0,0.0,3.0,4.0,2.1,1,1,931.527377489975,900.0,44558.35546368064,1,1,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.02019823197320617,21218.264506514588,5,3,5,5_0,5_4,5_0_0 -9152,2,34.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,603.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,40.0,2,,2,115722,1,2,0,0,2,,0.0,600.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1508.56172056448,0.0,12630.217672728679,0,1,3,4,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.047742645109118347,12630.217672728679,2,1,2_0,2_0_0,2_4_0,2_0_1 -9153,2,62.0,0.0,2,111,418.0,0.0,0.0,54,74,0.0,0.0,577.748827126739,418.0,0.0,0.0,20,2,2,2,2,2,1,2,2,0,,2,,2,109681,1,2,0,1,2,600.0,0.0,823.0,42,1.0,4.0,2.0,2.0,1.5,2,2,901.927698055555,418.0,67496.46382725924,1,5,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.006192917025546245,44997.642551506164,10,5,10,10_0,10_4,10_0_1 -9154,2,54.0,0.0,2,111,300.0,0.0,0.0,0,45,0.0,0.0,414.65226827277917,522.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,2,115241,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,759.678388856464,300.0,29118.18545034375,0,1,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017926941254295694,29118.18545034375,8,4,8,8_0,8_4,8_0_1 -9155,2,39.0,0.0,5,111,350.0,0.0,0.0,0,43,0.0,0.0,483.76097965157567,373.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,3,131175,2,2,0,1,1,324.0,0.0,312.0,12,1.0,0.0,1.0,1.0,1.0,2,2,947.182303863397,350.0,21882.71736364916,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01704541505524424,21882.71736364916,6,3,6,6_0,6_4,6_0_0 -9156,2,47.0,0.0,8,111,300.0,0.0,0.0,22,22,0.0,0.0,414.65226827277917,493.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,102893,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,577.912090883928,300.0,41464.556723579386,1,1,1,2,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011889672504798509,15947.90643214592,3,2,3_0,3_0_0,3_4_0,3_0_0 -9157,1,42.0,176.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,289.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,102878,2,1,0,1,1,,0.0,538.0,32,1.0,0.0,2.0,2.0,1.5,1,1,1118.58553799119,0.0,16181.435058408637,0,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017859973417488826,10787.623372272425,2,1,2_1,2_0_1,2_4_1,2_0_0 -9158,1,26.0,90.0,2,111,500.0,0.0,0.0,0,55,0.0,0.0,691.0871137879653,568.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,2,115138,2,1,0,1,1,229.0,0.0,346.0,12,1.0,0.0,1.0,1.0,1.0,2,2,947.182303863397,500.0,16676.223406688063,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034060469576834854,16676.223406688063,4,2,4_1,4_0_1,4_4_1,4_0_1 -9159,2,55.0,0.0,7,111,1200.0,0.0,0.0,68,42,0.0,0.0,1658.6090730911167,1296.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,5,127247,1,2,0,1,2,1200.0,0.0,600.0,43,2.0,0.0,4.0,5.0,2.8,1,1,196.9464771605,1200.0,49299.874544301,1,1,2,3,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02628809935074806,17607.09805153607,4,2,4_0,4_0_0,4_4_0,4_0_0 -9160,2,69.0,0.0,1,111,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,114764,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,197.611668251081,500.0,16551.940220192308,0,5,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030207938969597777,16551.940220192308,4,2,4_0,4_0_0,4_4_0,4_1_0 -9161,2,41.0,0.0,2,111,327.0,0.0,0.0,0,38,0.0,0.0,451.9709724173293,388.0,0.0,0.0,41,2,2,2,1,1,1,2,2,2,45.0,2,,2,107850,2,3,0,1,1,,447.0,640.0,12,1.0,0.0,1.0,1.0,1.0,1,1,340.922964944598,327.0,28432.215044441364,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01364649217071309,28432.215044441364,8,4,8,8_0,8_4,8_0_1 -9162,2,68.0,0.0,2,111,440.0,0.0,0.0,68,77,0.0,0.0,608.1566601334094,444.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115798,2,2,0,1,1,,658.0,,42,1.0,0.0,1.0,2.0,1.5,2,2,285.37336855934,440.0,26871.96663132855,1,5,0,1,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016522795152713713,17914.6444208857,4,2,4_0,4_0_0,4_4_0,4_0_1 -9163,2,33.0,0.0,1,111,404.0,0.0,0.0,0,34,0.0,0.0,558.398387940676,404.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,128371,1,2,0,0,2,,0.0,456.0,12,1.0,0.0,1.0,1.0,1.0,2,2,263.164382829221,404.0,22376.297854172957,0,4,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018054818658246364,22376.297854172957,6,3,6,6_0,6_4,6_1_0 -9164,2,40.0,0.0,7,111,800.0,0.0,0.0,22,56,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,5,130810,2,1,0,1,1,,0.0,700.0,43,2.0,0.0,3.0,5.0,2.4,2,2,279.442608073615,800.0,24158.54538907306,4,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0331145765242075,10066.060578780442,2,1,2_0,2_0_0,2_4_0,2_0_0 -9165,2,48.0,0.0,2,111,750.0,0.0,0.0,46,46,0.0,0.0,1036.630670681948,1051.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,2,133002,1,2,0,1,2,420.0,0.0,445.0,43,2.0,0.0,3.0,3.0,2.0,2,2,830.796380045177,750.0,46831.65189937349,1,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02244208686591429,23415.825949686747,6,3,6,6_0,6_4,6_0_1 -9166,2,70.0,0.0,1,111,0.0,0.0,0.0,74,75,0.0,0.0,0.0,1357.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,111781,1,1,0,0,2,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,569.140343973197,0.0,55949.81526949776,5,5,0,1,86.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024253878113156123,37299.87684633184,9,5,9,9_0,9_4,9_1_0 -9167,2,75.0,0.0,1,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,121869,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,933.064117964245,300.0,49895.70571218347,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006012541474621259,49895.70571218347,10,5,10,10_0,10_4,10_1_0 -9168,2,96.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1731.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,104727,2,1,2,0,1,,329.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1178.70044347919,0.0,20887.48291305207,0,5,0,1,70.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0828725992119587,20887.48291305207,5,3,5,5_1,5_4,5_1_0 -9170,2,84.0,0.0,5,111,700.0,0.0,0.0,77,74,0.0,0.0,967.5219593031513,773.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,110372,2,1,0,1,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,826.184202311306,700.0,294674.77195153036,5,5,0,1,118.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0026232310111947658,196449.84796768692,10,5,10,10_0,10_4,10_0_0 -9171,2,83.0,0.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,411.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,113267,2,1,0,1,1,750.0,878.0,456.0,11,0.0,0.0,3.0,1.0,1.0,2,2,998.218319886483,0.0,24570.0,0,5,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016727716727716727,24570.0,7,4,7,7_0,7_4,7_0_0 -9172,2,51.0,0.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1161.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,122757,2,2,0,0,2,,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1358.00898632588,0.0,24143.85029104989,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04808677928351726,24143.85029104989,6,3,6,6_0,6_4,6_0_0 -9173,2,66.0,0.0,5,111,300.0,0.0,0.0,0,31,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,3,101869,2,1,0,1,2,2000.0,0.0,650.0,12,1.0,2.0,4.0,1.0,1.0,2,2,327.723543560727,300.0,35600.061065180635,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008426951837265838,35600.061065180635,9,5,9,9_0,9_4,9_0_0 -9174,2,63.0,0.0,2,111,400.0,120.0,0.0,0,90,0.0,0.0,552.8696910303722,520.0,0.0,217.63834810169388,31,0,0,0,0,0,0,0,0,0,,2,,2,126886,2,1,0,1,2,360.0,0.0,280.0,11,0.0,2.0,2.0,1.0,1.0,3,2,327.750295501504,400.0,14037.320004750136,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03704410812206571,14037.320004750136,3,2,3_0,3_0_0,3_4_0,3_0_1 -9175,2,68.0,0.0,1,111,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130015,2,1,1,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,2,1,224.964901065733,250.0,13937.01226579808,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017937847454831395,13937.01226579808,3,2,3_0,3_1_0,3_4_0,3_1_0 -9176,2,70.0,0.0,7,111,1300.0,0.0,0.0,0,86,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,118875,2,1,0,0,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,286.936957760314,1300.0,27721.25105909523,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.046895430412888066,27721.25105909523,7,4,7,7_0,7_4,7_0_0 -9177,2,20.0,0.0,1,111,1000.0,0.0,0.0,0,68,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,2,2,2,2,1,2,2,2,1,10.0,2,,1,103836,1,2,0,0,2,,150.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,350.950486624762,1000.0,14201.375273445497,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.07041571543214228,14201.375273445497,3,2,3_0,3_0_0,3_4_0,3_1_0 -9178,2,77.0,0.0,1,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,101979,2,1,0,1,2,,94.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,198.61268235994,300.0,18545.36375506033,0,5,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016176549781512985,18545.36375506033,4,2,4_0,4_0_0,4_4_0,4_1_0 -9179,2,68.0,0.0,2,111,395.0,80.0,0.0,0,75,0.0,0.0,545.9588198924926,475.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,0,,2,,2,119349,2,1,0,1,2,840.0,0.0,354.0,11,0.0,1.0,3.0,1.0,1.0,2,2,310.968577996645,395.0,27773.09936741374,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017102880514564354,27773.09936741374,7,4,7,7_0,7_4,7_0_1 -9180,2,56.0,0.0,2,111,1000.0,0.0,0.0,86,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,45.0,1,,2,112664,2,1,1,0,1,,250.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,617.204254954674,1000.0,64740.07506346121,6,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.015446383079101372,43160.05004230748,9,5,9,9_1,9_4,9_0_1 -9182,2,52.0,0.0,2,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,1352.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,45.0,1,,2,120546,2,1,2,0,1,,271.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,941.914596959504,0.0,32825.14057023946,6,1,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.041187942428060016,21883.42704682631,6,3,6,6_1,6_4,6_0_1 -9183,2,71.0,0.0,1,111,600.0,600.0,0.0,86,78,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,42,2,2,2,2,1,2,2,2,0,,1,,1,130234,2,2,2,0,2,,300.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,672.859209226727,600.0,14353.182590140208,6,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.08360515115472225,9568.788393426805,1,1,1_0,1_1_0,1_4_0,1_1_0 -9184,2,56.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,463.0,0.0,0.0,12,2,2,2,2,1,2,2,2,2,30.0,2,,2,105760,1,3,0,1,2,,0.0,450.0,41,0.0,1.0,3.0,2.0,1.5,4,3,275.528612615951,0.0,24563.385860087175,6,6,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.018849192967013744,16375.59057339145,4,2,4_0,4_0_0,4_4_0,4_0_1 -9186,2,64.0,0.0,5,111,600.0,0.0,0.0,77,78,0.0,0.0,829.3045365455583,666.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,128651,2,2,0,1,1,1068.0,0.0,540.0,41,0.0,2.0,4.0,2.0,1.5,1,1,291.38487147115,600.0,19465.897518503094,5,5,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034213680585081736,12977.265012335396,2,1,2_0,2_0_0,2_4_0,2_0_0 -9187,2,49.0,0.0,7,111,500.0,0.0,0.0,55,55,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,128598,2,1,0,1,2,,541.0,1200.0,43,3.0,0.0,5.0,3.0,2.0,2,2,279.720514942038,500.0,42180.879725767874,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011853711995830069,21090.439862883937,5,3,5,5_0,5_4,5_0_0 -9188,2,48.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,328.0,0.0,0.0,31,2,1,2,2,1,2,2,2,0,,2,,2,113114,1,2,0,1,2,,247.0,600.0,12,1.0,1.0,2.0,1.0,1.0,2,2,328.184621977577,0.0,31176.590260047476,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010520714332905388,31176.590260047476,8,4,8,8_0,8_4,8_0_1 -9189,2,64.0,0.0,1,111,500.0,1200.0,0.0,0,72,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,0,,1,,1,127973,2,2,2,0,2,,250.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,224.983264859939,500.0,14725.446554696066,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11544641404833024,14725.446554696066,3,2,3_0,3_1_0,3_4_0,3_1_0 -9190,2,44.0,0.0,1,111,2000.0,0.0,0.0,0,43,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,1,105140,2,1,0,0,1,,200.0,900.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1358.92328049116,2000.0,21600.057058537997,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09259234800074043,21600.057058537997,6,3,6,6_0,6_4,6_1_0 -9191,2,32.0,0.0,2,111,600.0,0.0,0.0,0,52,0.0,0.0,829.3045365455583,600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,18.0,1,,2,117911,2,1,1,0,1,,200.0,752.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1142.72476253673,600.0,28348.913448733572,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02116483233422845,28348.913448733572,8,4,8,8_1,8_4,8_0_1 -9192,2,68.0,0.0,7,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,317.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,101152,2,1,0,1,2,,397.0,,41,0.0,0.0,2.0,2.0,1.5,3,2,785.875316689524,0.0,4291.7552090243225,5,5,0,1,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07386255379464339,2861.170139349548,1,1,1_0,1_0_0,1_4_0,1_0_0 -9193,2,52.0,0.0,2,111,490.0,250.0,0.0,0,45,1194.8679016144006,0.0,677.265371512206,1540.0,0.0,453.4132252118622,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,105318,2,1,0,1,2,,0.0,830.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1183.38798577074,490.0,40108.03868017161,0,1,2,3,55.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038396292879844474,40108.03868017161,9,5,9,9_0,9_4,9_0_1 -9194,2,24.0,0.0,2,111,700.0,0.0,0.0,56,56,0.0,0.0,967.5219593031513,700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,104725,2,1,0,0,1,,450.0,800.0,43,2.0,0.0,2.0,2.0,1.5,2,2,626.086512966438,700.0,44184.780971487125,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01584255901260927,29456.520647658082,8,4,8,8_0,8_4,8_0_1 -9195,2,73.0,0.0,5,111,450.0,600.0,0.0,86,74,0.0,0.0,621.9784024091688,1050.0,0.0,1088.1917405084694,70,2,2,2,2,1,2,2,2,0,,1,,3,122739,2,1,2,0,2,,300.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,841.09068606528,450.0,47995.62239296595,5,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0218769951851668,31997.081595310636,8,4,8,8_1,8_4,8_0_0 -9197,2,82.0,0.0,2,111,2000.0,0.0,0.0,86,74,0.0,0.0,2764.3484551518613,2155.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,126477,1,2,0,1,2,,200.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,785.811171240322,2000.0,40611.19667878493,6,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.053064183679319164,27074.131119189955,7,4,7,7_0,7_4,7_0_1 -9198,2,89.0,0.0,2,111,500.0,50.0,0.0,0,77,0.0,0.0,691.0871137879653,550.0,0.0,90.68264504237244,20,0,0,0,0,0,0,0,0,0,,2,,2,114531,2,1,0,1,2,,150.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,884.98105974279,500.0,19420.35005266945,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028320807735615402,19420.35005266945,5,3,5,5_0,5_4,5_0_1 -9199,2,37.0,0.0,6,111,450.0,120.0,0.0,0,45,0.0,0.0,621.9784024091688,570.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,1,20.0,2,,4,101732,2,1,0,1,2,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1399.06857054324,450.0,41889.0,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013607390961827687,41889.0,9,5,9,9_0,9_4,9_0_0 -9200,2,61.0,0.0,7,111,550.0,150.0,0.0,0,22,0.0,0.0,760.1958251667618,700.0,0.0,272.04793512711734,12,0,0,0,0,0,0,0,0,2,45.0,2,,5,131807,2,1,0,1,1,,0.0,1300.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1120.38309379183,550.0,25869.532956186667,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02705885727374896,25869.532956186667,7,4,7,7_0,7_4,7_0_0 -9201,2,66.0,0.0,1,111,480.0,100.0,0.0,0,75,1792.3018524216009,0.0,663.4436292364467,1780.0,0.0,181.36529008474488,31,0,0,0,0,0,0,0,0,0,,2,,1,129797,2,1,0,1,1,,380.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,707.049215024868,480.0,24901.502810275757,0,5,0,1,58.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07148162958524222,24901.502810275757,7,4,7,7_0,7_4,7_1_0 -9202,2,85.0,0.0,1,111,180.0,500.0,0.0,72,72,0.0,0.0,248.7913609636675,680.0,0.0,906.8264504237244,71,2,2,2,2,1,2,2,2,0,,2,,1,122673,2,1,0,0,2,,410.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,663.069460981814,180.0,3814.8935191327314,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.17824874969369775,2543.2623460884874,1,1,1_0,1_0_0,1_4_0,1_1_0 -9203,1,88.0,70.0,1,111,700.0,0.0,0.0,0,86,0.0,0.0,967.5219593031513,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,129787,2,1,0,0,1,,170.0,800.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1292.8682506161,700.0,16744.91799273323,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04180372817016949,16744.91799273323,4,2,4_1,4_0_1,4_4_1,4_1_0 -9204,2,38.0,0.0,1,111,420.0,0.0,0.0,0,37,0.0,0.0,580.5131755818909,420.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,107307,2,2,0,0,2,,0.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1242.93397898357,420.0,45179.768366268705,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009296196399129234,45179.768366268705,10,5,10,10_0,10_4,10_1_0 -9205,1,42.0,65.0,8,111,400.0,700.0,0.0,0,52,0.0,0.0,552.8696910303722,1100.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,1,20.0,2,2000.0,6,124044,2,1,0,0,1,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,2,2,765.302909700554,400.0,23193.65213445315,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.047426769774045134,23193.65213445315,6,3,6,6_0,6_4,6_0_0 -9206,1,24.0,209.0,2,111,500.0,0.0,0.0,84,38,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,2,2,2,2,1,1,2,2,3,45.0,2,,2,111347,2,1,0,1,1,,0.0,713.0,42,1.0,0.0,1.0,2.0,1.5,2,2,1637.87226168513,500.0,51136.409666590465,3,1,3,4,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.00977776897635171,34090.93977772698,9,5,9,9_0,9_4,9_0_1 -9207,2,55.0,0.0,2,111,400.0,0.0,0.0,22,37,0.0,0.0,552.8696910303722,1213.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,25.0,2,,2,125451,2,1,0,1,2,,0.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,928.286003503768,400.0,80143.00617036432,1,1,1,2,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015135444226055863,53428.67078024288,10,5,10,10_0,10_4,10_0_1 -9208,2,53.0,0.0,1,111,300.0,400.0,0.0,0,46,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,50,2,2,1,2,2,2,2,1,1,30.0,2,,1,133554,2,2,0,0,1,,400.0,,32,1.0,0.0,3.0,2.0,1.5,3,3,788.674145401195,300.0,35752.102948763575,0,1,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01957926785462583,23834.735299175718,6,3,6,6_0,6_4,6_1_0 -9209,2,40.0,0.0,8,111,700.0,0.0,0.0,47,38,0.0,0.0,967.5219593031513,700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,45.0,2,2003.0,6,130951,2,2,0,0,1,,542.0,,43,2.0,0.0,3.0,5.0,2.4,4,3,732.475553347223,700.0,74843.1989742214,1,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009352887230823797,31184.66623925892,8,4,8,8_0,8_4,8_0_0 -9210,2,34.0,0.0,8,111,800.0,0.0,0.0,0,38,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,2002.0,6,128213,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,3,1086.1932991906,800.0,56105.800602133146,0,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014258775232049428,56105.800602133146,10,5,10,10_0,10_4,10_0_0 -9211,2,35.0,0.0,8,111,400.0,0.0,0.0,37,37,0.0,0.0,552.8696910303722,400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,2003.0,6,110170,2,2,0,1,1,,352.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,794.719508062714,400.0,101069.79924322615,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003957660972862856,67379.86616215076,10,5,10,10_0,10_4,10_0_0 -9212,2,52.0,0.0,8,111,300.0,0.0,0.0,0,37,1194.8679016144006,0.0,414.65226827277917,1100.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,90.0,8,2003.0,6,117385,2,1,0,1,1,,272.0,,12,1.0,1.0,3.0,1.0,1.0,4,3,895.01363455231,300.0,34179.55385563119,0,1,0,1,72.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03218298298000667,34179.55385563119,9,5,9,9_0,9_4,9_0_0 -9213,2,49.0,0.0,8,111,420.0,0.0,0.0,0,37,0.0,0.0,580.5131755818909,420.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,1999.0,6,124868,2,1,0,1,1,630.0,0.0,548.0,32,1.0,0.0,3.0,2.0,1.5,1,1,1156.79063187781,420.0,55259.24333908358,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007600538382742272,36839.495559389055,9,5,9,9_0,9_4,9_0_0 -9214,2,50.0,0.0,5,111,500.0,0.0,0.0,43,31,0.0,0.0,691.0871137879653,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,,3,103594,1,2,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,614.028003723728,500.0,69331.29427584136,1,1,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007211750555394234,28888.039281600566,8,4,8,8_0,8_4,8_0_0 -9216,2,27.0,0.0,8,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,527.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,1999.0,6,110357,2,1,0,0,1,,0.0,312.0,43,2.0,0.0,1.0,2.0,1.5,5,5,1125.83387251967,0.0,39189.986358917304,1,1,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013447312667412711,26126.657572611537,7,4,7,7_0,7_4,7_0_0 -9217,0,39.0,0.0,6,111,1150.0,0.0,0.0,0,37,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,42,2,2,1,2,1,2,2,2,0,,2,,4,104684,2,2,0,0,2,,0.0,,22,2.0,0.0,4.0,2.0,1.5,3,2,902.890445823164,1150.0,24239.383368963834,0,4,5,0,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.047443451118169236,16159.588912642555,4,2,4_0,4_0_0,4_4_0,4_0_0 -9218,2,52.0,0.0,2,111,470.0,0.0,0.0,21,56,0.0,0.0,649.6218869606873,470.0,0.0,0.0,10,2,2,1,2,1,2,2,2,0,,2,,2,126268,1,1,0,1,2,,143.0,,43,2.0,1.0,5.0,4.0,2.5,1,1,764.617808062439,470.0,38616.33434482459,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012171015399937618,15446.533737929834,3,2,3_0,3_0_0,3_4_0,3_0_1 -9219,2,65.0,0.0,2,111,720.0,0.0,0.0,77,74,0.0,1759.7932581930781,995.16544385467,2420.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,127900,2,1,0,1,1,,610.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,805.335343881928,720.0,35381.073753038494,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06839815029051154,23587.382502025663,6,3,6,6_0,6_4,6_0_1 -9220,2,45.0,0.0,1,111,1190.0,0.0,0.0,56,38,0.0,0.0,1644.7873308153573,1190.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,,1,129381,2,1,0,0,1,,942.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,1179.48079011052,1190.0,54991.9401989852,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021639534733527366,23909.53921695009,6,3,6,6_0,6_4,6_1_0 -9221,2,65.0,0.0,2,111,420.0,0.0,0.0,0,34,0.0,0.0,580.5131755818909,645.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,2,,2,127321,2,1,0,1,1,,242.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,862.068058907536,420.0,69529.7378066894,0,1,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009276606245708367,69529.7378066894,10,5,10,10_0,10_4,10_0_1 -9222,2,25.0,0.0,6,111,700.0,0.0,0.0,0,38,0.0,0.0,967.5219593031513,893.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,109388,2,2,0,1,1,,235.0,,22,2.0,0.0,3.0,3.0,2.0,2,2,733.234313730576,700.0,75965.13633780688,0,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0117553925794189,37982.56816890344,9,5,9,9_0,9_4,9_0_0 -9223,2,53.0,0.0,5,111,200.0,0.0,0.0,0,38,1344.2263893162005,0.0,276.4348455151861,1100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,2,,3,130804,2,1,0,1,1,,244.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,837.932078730558,200.0,67155.08315693062,0,1,0,1,63.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016379996096936952,67155.08315693062,10,5,10,10_0,10_4,10_0_0 -9224,2,50.0,0.0,7,111,1300.0,0.0,0.0,37,37,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,118795,1,3,0,0,1,,504.0,1000.0,43,2.0,0.0,4.0,3.0,2.0,3,3,1174.56286932071,1300.0,41519.100574932265,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03131089021675226,20759.550287466132,5,3,5,5_0,5_4,5_0_0 -9225,2,60.0,0.0,6,111,1500.0,0.0,0.0,0,37,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,4,110421,2,1,0,0,1,,497.0,1380.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1287.31077906383,1500.0,379363.50609931257,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0039539912930036,379363.50609931257,10,5,10,10_0,10_4,10_0_0 -9226,1,32.0,160.0,6,111,840.0,0.0,0.0,52,38,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,4,103426,2,1,0,0,1,,0.0,1024.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1144.02458567553,840.0,51561.37542693322,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01629126440178754,34374.25028462215,9,5,9,9_0,9_4,9_0_0 -9227,2,52.0,0.0,2,111,360.0,0.0,0.0,34,38,0.0,0.0,497.582721927335,793.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,,2,112063,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,3,2,744.664703187183,360.0,126222.78000823516,1,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006282542659480818,84148.5200054901,10,5,10,10_0,10_4,10_0_1 -9228,2,57.0,0.0,2,111,363.0,1898.0,0.0,77,46,0.0,0.0,501.7292446100628,2261.0,0.0,3442.313205808458,60,0,0,0,0,0,0,0,0,4,40.0,1,,2,129245,2,1,2,0,1,,416.0,,42,1.0,0.0,7.0,4.0,2.5,2,2,917.125825940835,363.0,40465.84879392722,6,1,0,1,156.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055874275899022094,16186.33951757089,4,2,4_0,4_1_0,4_4_0,4_0_1 -9229,2,60.0,0.0,2,111,1200.0,1200.0,0.0,0,43,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,2,,2,129061,2,1,0,1,1,1060.0,0.0,387.0,32,2.0,0.0,4.0,2.0,1.5,4,4,291.828044047622,1200.0,37595.35391354998,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06383767540847649,25063.56927569999,7,4,7,7_0,7_4,7_0_1 -9230,2,63.0,0.0,2,111,300.0,0.0,0.0,0,74,0.0,0.0,414.65226827277917,684.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,119506,2,3,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,838.641880261714,300.0,42522.32760211341,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0160856669559642,42522.32760211341,9,5,9,9_0,9_4,9_0_1 -9231,2,83.0,0.0,2,111,200.0,60.0,0.0,0,74,0.0,0.0,276.4348455151861,260.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,128812,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,744.510994078676,200.0,49485.07885664676,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005254109036649079,49485.07885664676,10,5,10,10_0,10_4,10_0_1 -9234,2,62.0,0.0,2,111,359.0,0.0,0.0,72,34,0.0,0.0,496.20054769975906,359.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,2,,2,130060,2,2,0,1,1,,0.0,,41,1.0,1.0,4.0,3.0,2.0,2,1,915.511541032025,359.0,138971.63129688907,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0025832610342830186,69485.81564844454,10,5,10,10_0,10_4,10_0_1 -9235,2,74.0,0.0,1,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,4469.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,107681,1,2,4,0,2,,335.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,729.403672346702,0.0,275389.0772604483,5,5,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016227949359710656,183592.7181736322,10,5,10,10_1,10_4,10_1_0 -9236,2,77.0,0.0,1,111,500.0,1500.0,0.0,86,74,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,10,0,0,0,0,0,0,0,0,0,,1,,1,122983,2,1,1,0,1,,500.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,729.182277501609,500.0,89245.76188041686,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022410027746526066,59497.17458694457,10,5,10,10_1,10_4,10_1_0 -9237,2,33.0,0.0,2,111,1000.0,300.0,0.0,37,37,0.0,0.0,1382.1742275759307,1300.0,0.0,544.0958702542347,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,112727,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,810.468878364483,1000.0,95225.76796067788,1,1,1,2,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013651767035754611,39677.40331694912,9,5,9,9_0,9_4,9_0_1 -9238,2,58.0,0.0,2,111,350.0,350.0,0.0,0,38,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,33,0,0,0,0,0,0,0,0,3,90.0,2,,2,119389,2,2,0,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1313.8983152293,350.0,43455.35395964664,0,1,0,1,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01610848690014196,43455.35395964664,10,5,10,10_0,10_4,10_0_1 -9239,2,87.0,0.0,2,111,210.0,220.0,0.0,0,77,0.0,0.0,290.25658779094545,430.0,0.0,399.00363818643876,43,0,0,0,0,0,0,0,0,0,,2,,2,100393,2,1,0,1,1,321.0,0.0,320.0,11,0.0,2.0,3.0,1.0,1.0,3,2,1105.25131260495,210.0,37547.62886003171,0,5,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011452121293808825,37547.62886003171,9,5,9,9_0,9_4,9_0_1 -9240,2,58.0,0.0,2,111,580.0,0.0,0.0,0,52,0.0,0.0,801.6610519940398,580.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,15.0,2,,2,106559,1,1,0,1,1,650.0,0.0,418.0,22,2.0,1.0,3.0,2.0,1.5,1,1,981.398210629983,580.0,55230.85394253358,0,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010501376650874828,36820.56929502238,9,5,9,9_0,9_4,9_0_1 -9241,2,38.0,0.0,5,111,400.0,0.0,0.0,46,21,0.0,0.0,552.8696910303722,400.0,0.0,0.0,31,1,1,2,1,2,2,2,2,0,,2,,3,113941,2,1,0,1,2,600.0,0.0,730.0,43,2.0,0.0,3.0,5.0,2.8,4,4,788.284158084065,400.0,58151.64101227054,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.006878567707411666,20768.443218668053,5,3,5,5_0,5_4,5_0_0 -9242,2,46.0,0.0,9,111,1450.0,1450.0,0.0,63,37,0.0,0.0,2004.1526299850993,2900.0,0.0,2629.7967062288008,20,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,121968,2,1,1,0,1,,300.0,892.0,43,2.0,0.0,5.0,4.0,2.5,2,2,1114.16241831524,1450.0,65506.86665850369,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0442701681202079,26202.746663401478,7,4,7,7_1,7_4,7_0_0 -9243,2,42.0,0.0,9,111,900.0,900.0,0.0,0,54,0.0,0.0,1243.9568048183376,1800.0,0.0,1632.287610762704,70,1,2,2,2,1,2,2,2,3,45.0,2,2006.0,6,114329,2,3,0,0,1,,150.0,500.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1839.20731456335,900.0,27382.184172835136,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.06573617314960997,27382.184172835136,7,4,7,7_0,7_4,7_0_0 -9244,2,48.0,0.0,7,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,810.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,2,,5,121766,1,1,0,0,1,,0.0,1811.0,42,1.0,0.0,4.0,5.0,2.8,2,2,1160.51215619374,0.0,157322.8533432061,6,1,2,3,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005148648036741061,56186.733336859324,10,5,10,10_0,10_4,10_0_0 -9245,2,51.0,0.0,7,111,1232.0,0.0,0.0,0,37,0.0,0.0,1702.8386483735464,1232.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,102970,2,1,0,0,1,,0.0,,32,2.0,1.0,5.0,4.0,2.5,2,2,916.031059314317,1232.0,112772.96507927877,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010924604129490706,45109.186031711506,10,5,10,10_0,10_4,10_0_0 -9246,2,30.0,0.0,1,111,0.0,0.0,350.0,0,46,0.0,0.0,178.81966719313377,350.0,0.0,400.136021128421,31,0,0,0,0,0,0,0,0,0,,2,,1,100983,2,1,0,1,1,,0.0,,22,2.0,0.0,2.0,2.0,1.5,2,2,716.615514423257,0.0,54740.21686659213,0,1,1,2,39.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006393836561754736,36493.47791106142,9,5,9,9_0,9_4,9_1_0 -9247,2,29.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,763.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,90.0,2,,2,129585,2,1,0,1,1,448.0,0.0,1000.0,22,2.0,0.0,3.0,2.0,1.5,1,1,995.262011309107,0.0,36420.03592143137,0,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020950006794227587,24280.023947620914,7,4,7,7_0,7_4,7_0_1 -9248,2,40.0,0.0,2,111,440.0,80.0,0.0,0,37,0.0,0.0,608.1566601334094,520.0,0.0,145.09223206779592,30,0,0,0,0,0,0,0,0,2,40.0,2,,2,111997,2,2,0,1,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,928.609261383158,440.0,48924.60798275872,0,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010628598193024882,37634.31383289132,9,5,9,9_0,9_4,9_0_1 -9249,2,37.0,0.0,1,111,170.0,105.0,0.0,68,81,0.0,0.0,234.9696186879082,275.0,0.0,190.43355458898213,71,2,1,2,2,2,2,2,1,0,,2,,1,126386,1,3,0,1,2,705.0,0.0,647.0,43,2.0,0.0,2.0,4.0,2.5,1,1,916.831808672034,170.0,8043.805309052164,4,4,3,4,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.03418779911176199,3217.522123620866,1,1,1_0,1_0_0,1_4_0,1_1_0 -9250,1,41.0,300.0,1,111,300.0,0.0,0.0,85,68,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,112689,2,3,0,1,1,305.0,0.0,450.0,42,1.0,0.0,1.0,2.0,1.5,2,2,883.477839253476,300.0,6392.58037039185,6,1,2,3,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04692940606417604,4261.7202469279,1,1,1_1,1_0_1,1_4_1,1_1_0 -9251,2,31.0,0.0,1,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,595.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,2,,1,131371,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,900.971712167642,0.0,60781.95383135706,1,1,1,2,66.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009789089729673068,33767.7521285317,9,5,9,9_0,9_4,9_1_0 -9252,2,55.0,0.0,1,111,182.0,364.0,0.0,0,55,0.0,0.0,251.55570941881936,546.0,0.0,660.1696559084714,10,1,2,2,1,2,2,2,2,0,,2,,1,104026,2,2,0,1,1,540.0,0.0,728.0,12,1.0,2.0,3.0,1.0,1.0,3,3,1029.62052582207,182.0,25582.44267670015,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.02134276256963074,25582.44267670015,7,4,7,7_0,7_4,7_1_0 -9253,2,32.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,578.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,3.0,2,,1,131168,1,1,0,1,2,182.0,0.0,550.0,12,1.0,0.0,1.0,1.0,1.0,2,2,978.50271588457,0.0,17512.852790192817,0,1,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03300433155720235,17512.852790192817,4,2,4_0,4_0_0,4_4_0,4_1_0 -9254,0,94.0,0.0,1,111,0.0,0.0,2523.0,0,78,0.0,0.0,1289.0343437950758,2523.0,0.0,2884.409089448589,33,0,0,0,0,0,0,0,0,0,,1,,1,122769,2,2,2,0,1,,675.0,,11,0.0,2.0,6.0,1.0,1.0,3,2,821.112477776368,0.0,65742.44405644297,0,5,0,1,103.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03837703383576501,65742.44405644297,10,5,10,10_1,10_4,10_1_0 -9255,2,32.0,0.0,1,111,505.0,256.0,0.0,42,90,0.0,0.0,697.9979849258449,761.0,0.0,464.2951426169469,42,1,2,2,2,1,2,2,2,2,30.0,2,,1,110996,1,3,0,1,2,347.0,0.0,797.0,43,2.0,0.0,2.0,2.0,1.5,2,2,965.655066012387,505.0,57630.08317759963,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.013204908930199061,38420.05545173308,9,5,9,9_0,9_4,9_1_0 -9256,2,45.0,0.0,1,111,755.0,2790.0,0.0,54,22,0.0,465.827627168756,1043.5415418198277,3995.0,0.0,5060.091593364383,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,100516,2,3,4,0,1,,645.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,736.192894761208,755.0,79525.34822879803,1,1,1,2,142.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05023555493911456,28401.910081713584,8,4,8,8_1,8_4,8_1_0 -9257,2,36.0,0.0,1,111,257.0,800.0,0.0,37,38,0.0,0.0,355.21877648701417,1057.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,102213,2,3,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,777.560165508569,257.0,76572.86533099104,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013803845467073105,42540.48073943947,9,5,9,9_0,9_4,9_1_0 -9258,2,42.0,0.0,1,111,54.0,75.0,0.0,38,38,0.0,0.0,74.63740828910025,129.0,0.0,136.02396756355867,71,0,0,0,0,0,0,0,0,1,15.0,1,,1,117317,1,1,1,0,1,,278.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,692.236545404794,54.0,96375.39228878403,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0013385159524275446,45893.043947040016,10,5,10,10_1,10_4,10_1_0 -9259,2,80.0,0.0,1,111,0.0,0.0,1200.0,75,77,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,71,0,0,0,0,0,0,0,0,0,,2,,1,100510,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,854.019883620484,0.0,48390.92564272463,5,5,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024798037732522996,32260.61709514975,8,4,8,8_0,8_4,8_1_0 -9260,2,66.0,0.0,6,111,2000.0,0.0,0.0,0,21,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,3.0,2,,4,101416,2,1,0,0,1,,0.0,,32,2.0,3.0,3.0,2.0,1.5,1,1,855.256840749278,2000.0,33333.8219714462,0,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.059999120464290075,22222.547980964137,6,3,6,6_0,6_4,6_0_0 -9261,2,34.0,0.0,7,111,800.0,0.0,0.0,0,47,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,5,105439,2,2,0,0,1,,0.0,950.0,32,1.0,0.0,2.0,3.0,1.6,2,2,1383.99072810842,800.0,34768.10855081522,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023009592219569913,21730.06784425951,6,3,6,6_0,6_4,6_0_0 -9262,2,43.0,0.0,7,111,1284.0,0.0,0.0,37,37,0.0,0.0,1774.711708207495,1284.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,5,102196,2,2,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1294.84488211945,1284.0,109194.06076306183,1,1,1,2,101.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011758881307529424,51997.171791934205,10,5,10,10_0,10_4,10_0_0 -9263,2,52.0,0.0,1,111,1800.0,0.0,0.0,38,38,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,113280,2,2,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,601.80620649206,1800.0,97121.06425045867,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018533569559720915,38848.42570018347,9,5,9,9_1,9_4,9_1_0 -9265,2,41.0,0.0,1,111,170.0,0.0,0.0,0,67,0.0,0.0,234.9696186879082,170.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,40.0,2,,1,105256,2,2,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1055.78464150242,170.0,19138.56951562043,0,1,1,2,13.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008882586541342611,19138.56951562043,5,3,5,5_0,5_4,5_1_0 -9266,2,28.0,0.0,1,111,408.0,79.0,0.0,0,22,0.0,0.0,563.9270848509797,487.0,0.0,143.27857916694848,20,2,1,2,2,2,2,2,1,2,20.0,2,,1,103858,2,2,0,1,1,630.0,0.0,641.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1514.9740245583,408.0,21267.09194711784,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.022899228592746047,21267.09194711784,5,3,5,5_0,5_4,5_1_0 -9267,2,36.0,0.0,1,111,350.0,900.0,0.0,56,37,0.0,0.0,483.76097965157567,1250.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,105585,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,777.560165508569,350.0,87954.19167945196,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014211943468886743,48863.43982191776,10,5,10,10_0,10_4,10_1_0 -9268,2,52.0,0.0,9,111,1540.0,0.0,0.0,54,47,0.0,0.0,2128.548310466933,1540.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,35.0,2,2007.0,6,123690,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1307.72887896176,1540.0,78497.22510122748,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019618527890814814,37379.631000584515,9,5,9,9_0,9_4,9_0_0 -9269,2,50.0,0.0,2,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,351.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129704,2,3,0,1,1,1119.0,0.0,304.0,32,2.0,1.0,3.0,2.0,1.5,4,3,981.286968160667,0.0,52520.6486733578,0,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0066830857741871745,35013.76578223853,9,5,9,9_0,9_4,9_0_1 -9270,2,32.0,0.0,9,111,850.0,0.0,0.0,0,54,0.0,0.0,1174.848093439541,850.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,20.0,2,2005.0,6,106346,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,1,1086.66024166852,850.0,22727.76950523333,0,1,0,1,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037399182520056695,22727.76950523333,6,3,6,6_0,6_4,6_0_0 -9271,2,47.0,0.0,9,111,120.0,0.0,0.0,90,31,0.0,0.0,165.86090730911167,120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,112808,2,1,1,0,1,,0.0,2452.0,43,2.0,0.0,5.0,3.0,1.8,1,1,859.528044110562,120.0,81360.2403153726,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0014749218971680767,45200.13350854033,10,5,10,10_1,10_4,10_0_0 -9272,2,39.0,0.0,2,111,0.0,0.0,0.0,56,67,0.0,0.0,0.0,761.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,,2,110300,1,3,0,1,1,597.0,0.0,348.0,43,2.0,0.0,3.0,3.0,1.8,3,3,1144.72974271441,0.0,26502.96401912294,4,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028713769503324545,14723.868899512745,3,2,3_0,3_0_0,3_4_0,3_0_1 -9273,2,42.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,378.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,126004,2,3,0,1,1,1250.0,0.0,,22,1.0,4.0,2.0,2.0,1.5,4,3,291.687790670969,0.0,10270.5267716267,0,1,3,4,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036804343964543344,6847.017847751134,1,1,1_0,1_0_0,1_4_0,1_0_1 -9274,1,47.0,279.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,775.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,117552,2,3,0,1,1,720.0,0.0,436.0,42,1.0,1.0,4.0,7.0,3.3999999999999995,2,2,297.129582883692,0.0,36355.40783799279,6,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021317323778997616,10692.767011174352,2,1,2_1,2_0_1,2_4_1,2_0_1 -9275,2,66.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,392.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118079,1,3,0,3,1,830.0,0.0,286.0,11,0.0,2.0,3.0,1.0,1.0,2,2,311.00933136167,0.0,18453.947700046847,0,5,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02124206735445581,18453.947700046847,4,2,4_0,4_0_0,4_4_0,4_0_1 -9276,1,66.0,54.0,2,111,236.0,69.0,0.0,0,78,0.0,0.0,326.1931177079196,305.0,0.0,125.14205015847398,70,0,0,0,0,0,0,0,0,0,,2,,2,115012,2,1,0,1,1,916.0,0.0,258.0,11,0.0,3.0,3.0,1.0,1.0,1,1,310.597735028782,236.0,19241.891644972697,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015850832424767706,19241.891644972697,5,3,5,5_0,5_4,5_0_1 -9277,2,66.0,0.0,5,111,300.0,200.0,0.0,68,78,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,12,0,0,0,0,0,0,0,0,0,,2,,3,113157,2,3,0,1,1,,0.0,,42,2.0,0.0,4.0,7.0,3.8,2,2,225.089079163174,300.0,40154.82317670583,1,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01245180430255398,10567.058730712062,2,1,2_0,2_0_0,2_4_0,2_0_0 -9278,2,58.0,0.0,2,111,234.0,600.0,0.0,0,46,0.0,0.0,323.4287692527678,834.0,0.0,1088.1917405084694,50,2,2,2,2,2,2,2,1,3,45.0,2,,2,115282,2,1,0,1,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,3,3,248.832504018671,234.0,27361.485917998285,0,1,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03048080073207566,27361.485917998285,7,4,7,7_0,7_4,7_0_1 -9279,2,68.0,0.0,2,111,324.0,412.0,0.0,77,78,0.0,0.0,447.8244497346015,736.0,0.0,747.224995149149,33,0,0,0,0,0,0,0,0,0,,2,,2,107181,1,3,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,260.987367196458,324.0,20424.609412220256,5,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03603496082327252,13616.406274813504,3,2,3_0,3_0_0,3_4_0,3_0_1 -9280,1,51.0,172.0,7,111,398.0,570.0,0.0,85,64,0.0,0.0,550.1053425752203,968.0,0.0,1033.782153483046,41,0,0,0,0,0,0,0,0,0,,2,,5,106193,2,3,0,0,1,,0.0,571.0,42,2.0,0.0,4.0,5.0,2.8,1,1,944.227963180514,398.0,33029.126292806526,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02930746612606651,11796.116533145188,2,1,2_1,2_0_1,2_4_1,2_0_0 -9281,2,64.0,0.0,5,111,250.0,600.0,0.0,77,75,0.0,0.0,345.54355689398267,850.0,0.0,1088.1917405084694,41,0,0,0,0,0,0,0,0,0,,2,,3,131762,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,934.932555612889,250.0,45763.55434417933,5,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018573732136435588,30509.036229452886,8,4,8,8_0,8_4,8_0_0 -9282,2,51.0,0.0,1,111,710.0,1200.0,0.0,47,47,0.0,0.0,981.3437015789107,1910.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,3,45.0,1,,1,109949,2,1,2,0,1,,1200.0,,43,2.0,0.0,5.0,4.0,2.5,3,3,692.135892866296,710.0,40968.97474885908,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046620644321913145,16387.589899543633,4,2,4_0,4_1_0,4_4_0,4_1_0 -9283,2,28.0,0.0,1,111,300.0,0.0,0.0,0,63,0.0,0.0,414.65226827277917,650.0,602.1144514665671,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,100473,1,3,0,0,2,,0.0,,22,1.0,5.0,1.0,4.0,2.5,2,2,794.358350012615,300.0,14872.017174080998,0,1,0,1,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043706243234631424,5948.806869632399,1,1,1_0,1_0_0,1_4_0,1_1_0 -9284,2,46.0,0.0,2,111,700.0,380.0,0.0,54,65,0.0,0.0,967.5219593031513,1080.0,0.0,689.1881023220305,10,0,0,0,0,0,0,0,0,0,,2,,2,124602,1,3,0,1,1,836.0,0.0,314.0,43,2.0,1.0,3.0,3.0,1.8,2,2,1002.83690417074,700.0,40616.14803816806,1,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026590409287091814,22564.526687871145,6,3,6,6_0,6_4,6_0_1 -9285,2,72.0,0.0,2,111,290.0,150.0,0.0,0,52,0.0,0.0,400.8305259970199,440.0,0.0,272.04793512711734,12,2,2,1,1,2,2,2,2,0,,2,,2,124141,2,1,0,1,1,852.0,0.0,332.0,11,0.0,3.0,4.0,1.0,1.0,1,1,590.510426739634,290.0,18079.295236574195,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024337231857903693,18079.295236574195,4,2,4_0,4_0_0,4_4_0,4_0_1 -9286,2,50.0,0.0,2,111,255.0,288.0,0.0,0,45,0.0,0.0,352.4544280318623,543.0,0.0,522.3320354440652,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,124867,2,1,0,1,1,1167.0,0.0,292.0,12,1.0,1.0,3.0,1.0,1.0,2,2,782.689914527828,255.0,24574.711627141853,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02209588491774108,24574.711627141853,7,4,7,7_0,7_4,7_0_1 -9287,2,84.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,455.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,125001,2,1,0,1,1,,0.0,500.0,41,0.0,6.0,3.0,2.0,1.5,1,1,694.982645879289,0.0,22849.694311325773,6,5,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01991273904152288,15233.129540883849,3,2,3_0,3_0_0,3_4_0,3_0_1 -9288,1,43.0,292.0,1,111,180.0,150.0,0.0,85,62,0.0,0.0,248.7913609636675,330.0,0.0,272.04793512711734,12,2,2,2,2,2,2,2,1,0,,2,,1,130670,2,3,0,1,1,384.0,0.0,306.0,42,1.0,0.0,1.0,4.0,2.1,2,2,724.209094166883,180.0,17550.562477249165,6,1,2,3,22.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.018802816173429188,8357.410703451982,1,1,1_1,1_0_1,1_4_1,1_1_0 -9289,2,72.0,0.0,2,111,610.0,0.0,0.0,75,75,0.0,0.0,843.1262788213177,610.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,101807,2,1,0,1,1,646.0,0.0,384.0,41,1.0,3.0,4.0,3.0,2.0,5,4,1015.74285191502,610.0,79596.70523197425,5,5,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007663633792658054,39798.352615987125,9,5,9,9_0,9_4,9_0_1 -9290,2,66.0,0.0,1,111,597.0,90.0,0.0,75,74,0.0,0.0,825.1580138628306,687.0,0.0,163.2287610762704,50,2,2,2,2,2,2,2,1,0,,2,,1,117758,2,3,0,0,1,,0.0,213.0,41,0.0,0.0,2.0,2.0,1.5,3,2,1206.98720905602,597.0,44291.626403473005,5,5,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.015510832538453156,29527.75093564867,8,4,8,8_0,8_4,8_1_0 -9291,2,59.0,0.0,9,111,470.0,1138.0,0.0,42,63,0.0,0.0,649.6218869606873,1608.0,0.0,2063.937001164397,12,0,0,0,0,0,0,0,0,3,30.0,2,2008.0,6,125172,2,1,0,0,1,,0.0,292.0,43,2.0,1.0,3.0,2.0,1.5,3,2,429.797518230881,470.0,42654.74273778371,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037698035359984214,28436.495158522474,8,4,8,8_0,8_4,8_0_0 -9292,1,30.0,271.0,2,111,118.0,132.0,0.0,52,56,0.0,0.0,163.0965588539598,250.0,0.0,239.40218291186326,12,0,0,0,0,0,0,0,0,0,,2,,2,126090,1,3,0,1,2,1152.0,0.0,422.0,43,2.0,5.0,3.0,3.0,2.0,2,2,271.789233126295,118.0,32240.053650441776,4,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007754329527816227,16120.026825220888,4,2,4_1,4_0_1,4_4_1,4_0_1 -9293,2,33.0,0.0,7,111,0.0,0.0,1450.0,0,43,0.0,0.0,740.8243355144114,1450.0,0.0,1657.7063732463157,10,2,2,2,1,2,2,2,2,1,10.0,2,,5,111322,1,3,0,0,1,,0.0,343.0,12,1.0,0.0,2.0,1.0,1.0,2,2,372.662172005486,0.0,27967.544175045965,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0518458106626953,27967.544175045965,7,4,7,7_0,7_4,7_0_0 -9294,2,57.0,0.0,8,111,590.0,1115.0,0.0,54,37,0.0,0.0,815.482794269799,1705.0,0.0,2022.2229844449055,10,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,108245,2,1,1,0,1,,383.0,,43,3.0,0.0,5.0,3.0,2.0,2,2,242.969698704225,590.0,62505.739879868415,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027277494887299768,31252.869939934208,8,4,8,8_1,8_4,8_0_0 -9295,2,32.0,0.0,9,111,241.0,544.0,0.0,0,37,0.0,0.0,333.1039888457993,785.0,0.0,986.6271780610122,42,0,0,0,0,0,0,0,0,3,40.0,2,2008.0,6,103957,2,1,0,0,1,,0.0,690.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2372.15668712692,241.0,39481.16026056529,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0198829009790798,39481.16026056529,9,5,9,9_0,9_4,9_0_0 -9296,0,43.0,0.0,9,111,300.0,200.0,0.0,0,52,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,110863,2,3,0,0,1,,0.0,,32,1.0,1.0,3.0,3.0,1.8,2,1,1506.8291648438,300.0,44798.0,0,1,5,0,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011161212554131881,24887.777777777777,7,4,7,7_0,7_4,7_0_0 -9297,2,55.0,0.0,9,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,966.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,2009.0,6,105034,2,1,0,0,1,,0.0,370.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1548.77456197258,0.0,35440.03285427018,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027257311074518554,35440.03285427018,9,5,9,9_0,9_4,9_0_0 -9298,2,42.0,0.0,9,111,1296.0,0.0,0.0,0,38,0.0,0.0,1791.297798938406,1296.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,2008.0,6,127179,2,1,0,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1587.35699809822,1296.0,57956.845604522445,0,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02236146544005272,57956.845604522445,10,5,10,10_0,10_4,10_0_0 -9299,2,54.0,0.0,9,111,720.0,0.0,0.0,85,37,0.0,0.0,995.16544385467,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,126402,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,4.0,2.5,1,1,1067.05216511835,720.0,82317.98378250387,6,1,1,2,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008746569909952425,32927.19351300155,8,4,8,8_0,8_4,8_0_0 -9300,2,45.0,0.0,1,111,1200.0,0.0,0.0,56,68,0.0,0.0,1658.6090730911167,1279.0,0.0,0.0,71,2,2,2,2,1,2,2,2,4,15.0,2,,1,107917,1,3,0,1,2,,300.0,420.0,43,2.0,0.0,1.0,2.0,1.5,1,1,989.391600053168,1200.0,29750.9026149122,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.042990292313313555,19833.935076608133,5,3,5,5_0,5_4,5_1_0 -9301,2,42.0,0.0,9,111,1000.0,0.0,0.0,0,46,0.0,0.0,1382.1742275759307,1493.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,117487,2,1,0,1,1,,365.0,650.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1115.64046036377,1000.0,4554.918498361869,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.3277775443264117,4554.918498361869,1,1,1_0,1_0_0,1_4_0,1_0_0 -9302,2,45.0,0.0,9,111,600.0,0.0,0.0,90,52,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,15.0,2,2004.0,6,114694,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,760.315072639525,600.0,28615.29754367999,1,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02096780573691839,14307.648771839995,3,2,3_0,3_0_0,3_4_0,3_0_0 -9303,1,37.0,80.0,1,111,300.0,420.0,0.0,0,62,0.0,0.0,414.65226827277917,720.0,0.0,761.7342183559285,71,1,2,1,2,1,2,2,2,1,20.0,2,,1,115391,2,3,0,0,1,,0.0,400.0,32,1.0,0.0,3.0,2.0,1.3,3,3,979.753356076514,300.0,19492.145315109505,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.03693795569243401,14993.957934699618,3,2,3_1,3_0_1,3_4_1,3_1_0 -9304,2,73.0,0.0,5,111,230.0,675.0,0.0,0,74,0.0,0.0,317.900072342464,905.0,0.0,1224.215708072028,70,2,2,2,2,1,2,2,1,0,,2,,3,132858,1,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,836.982164727665,230.0,55503.5341218188,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.016305268021558985,55503.5341218188,10,5,10,10_0,10_4,10_0_0 -9305,2,31.0,0.0,1,111,334.0,84.0,0.0,0,38,0.0,0.0,461.6461920103608,852.0,0.0,152.3468436711857,41,0,0,0,0,0,0,0,0,3,45.0,2,,1,108039,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,819.53545019206,334.0,38119.9591987335,0,1,1,2,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022350496115649224,38119.9591987335,9,5,9,9_0,9_4,9_1_0 -9306,2,51.0,0.0,6,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,362.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,122682,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1015.76599927886,0.0,14104.717442269572,0,4,1,2,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025665172059040627,14104.717442269572,3,2,3_0,3_0_0,3_4_0,3_0_0 -9307,2,31.0,0.0,5,111,0.0,0.0,0.0,37,21,0.0,0.0,0.0,904.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,123746,1,3,0,0,2,,0.0,765.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1185.1942672661,0.0,53768.79211604305,1,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01681272657286033,25604.18672192526,7,4,7,7_0,7_4,7_0_0 -9308,2,29.0,0.0,6,111,737.0,0.0,0.0,34,37,0.0,31.055175144583732,1018.6624057234608,767.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,50.0,2,,4,107350,2,2,0,0,1,,0.0,977.0,43,2.0,0.0,2.0,2.0,1.5,3,2,1205.96755538651,737.0,63514.66240244487,1,1,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.012075951772208049,42343.10826829658,9,5,9,9_0,9_4,9_0_0 -9309,2,58.0,0.0,5,111,135.0,0.0,0.0,38,46,0.0,0.0,186.5935207227506,135.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,21.0,2,,3,125957,2,1,0,0,1,,0.0,1140.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1141.76050201871,135.0,55034.469122340655,4,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002453008126596032,36689.64608156044,9,5,9,9_0,9_4,9_0_0 -9310,2,48.0,0.0,7,111,1200.0,0.0,0.0,0,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,12.0,2,,5,100137,1,1,0,0,1,,0.0,1000.0,32,1.0,0.0,3.0,3.0,1.8,2,2,1308.36449432892,1200.0,65363.545110390245,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018358857341249795,36313.08061688347,9,5,9,9_0,9_4,9_0_0 -9311,2,72.0,0.0,1,111,650.0,1062.0,0.0,75,72,0.0,0.0,898.4132479243549,1792.0,137.62616033521533,1926.0993806999907,71,0,0,0,0,0,0,0,0,0,,1,,1,109430,2,1,4,0,1,,600.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,700.001197905664,650.0,67485.21455914841,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026553964623308342,33742.60727957421,9,5,9,9_1,9_4,9_1_0 -9312,2,28.0,0.0,1,111,0.0,0.0,0.0,37,47,0.0,0.0,0.0,1552.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,120692,2,2,0,0,1,,0.0,855.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1102.40118151766,0.0,64220.530807438685,1,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02416672644225842,42813.687204959126,9,5,9,9_0,9_4,9_1_0 -9313,2,39.0,0.0,1,111,876.0,60.0,0.0,0,56,0.0,0.0,1210.784623356515,936.0,0.0,108.81917405084694,71,2,2,2,1,2,2,2,2,3,25.0,2,,1,123301,2,3,0,0,1,,0.0,890.0,12,1.0,0.0,2.0,1.0,1.0,5,5,1357.38274959013,876.0,23395.92971551558,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.040006958961723536,23395.92971551558,6,3,6,6_0,6_4,6_1_0 -9314,2,37.0,0.0,8,111,420.0,300.0,0.0,0,37,0.0,0.0,580.5131755818909,720.0,0.0,544.0958702542347,60,0,0,0,0,0,0,0,0,2,35.0,2,2000.0,6,119578,2,1,0,0,1,,0.0,543.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1458.59831446971,420.0,40889.431872981295,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01760846182056537,40889.431872981295,9,5,9,9_0,9_4,9_0_0 -9315,1,27.0,272.0,5,111,0.0,0.0,633.0,0,63,0.0,0.0,323.40814095215336,633.0,0.0,723.6745753551157,71,1,2,2,2,1,2,2,2,0,,2,,3,131700,1,2,0,1,2,512.0,0.0,1265.0,32,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,1012.32799767307,0.0,30831.547840688116,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02053091863148809,9945.66059377036,2,1,2_1,2_0_1,2_4_1,2_0_0 -9316,2,53.0,0.0,2,111,1200.0,0.0,0.0,0,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,128587,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,3,1170.71803638333,1200.0,46415.620871495965,0,1,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025853365256542873,46415.620871495965,10,5,10,10_0,10_4,10_0_1 -9317,2,46.0,0.0,1,111,2580.0,1204.0,0.0,0,52,0.0,0.0,3566.009507145901,3784.0,0.0,2183.6380926203283,12,0,0,0,0,0,0,0,0,0,,1,,1,121418,1,1,2,0,1,,480.0,,32,1.0,0.0,5.0,3.0,2.0,4,3,662.786454486889,2580.0,48531.96357994364,0,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07796923348808782,24265.98178997182,7,4,7,7_1,7_4,7_1_0 -9318,2,40.0,0.0,5,111,260.0,0.0,0.0,0,37,0.0,0.0,359.36529916974195,260.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,115768,1,2,0,0,1,,0.0,481.0,12,1.0,0.0,1.0,1.0,1.0,4,2,1476.23950759535,260.0,5622.050148166681,0,4,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04624647471079292,5622.050148166681,1,1,1_0,1_0_0,1_4_0,1_0_0 -9319,2,71.0,0.0,6,111,347.0,1668.0,0.0,74,74,0.0,0.0,479.6144569688479,2015.0,0.0,3025.1730386135446,31,0,0,0,0,0,0,0,0,0,,2,,4,126301,2,2,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,743.190973333444,347.0,61642.38882645551,5,5,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03268854498278639,41094.92588430367,9,5,9,9_0,9_4,9_0_0 -9320,2,82.0,0.0,2,111,675.0,84.0,0.0,0,78,0.0,0.0,932.9676036137531,759.0,0.0,152.3468436711857,10,0,0,0,0,0,0,0,0,0,,2,,2,113164,2,2,0,1,1,,0.0,,21,0.0,0.0,2.0,2.0,1.5,1,1,904.73141959962,675.0,9979.459811580526,0,5,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0760562209107981,6652.973207720351,1,1,1_0,1_0_0,1_4_0,1_0_1 -9321,2,31.0,0.0,1,111,1003.0,0.0,0.0,0,37,0.0,0.0,1386.3207502586583,1003.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,20.0,1,,1,122476,2,2,2,0,1,,0.0,567.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1141.42932310072,1003.0,39291.81056041592,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025526947872706603,39291.81056041592,9,5,9,9_1,9_4,9_1_0 -9322,2,56.0,0.0,7,111,500.0,0.0,0.0,46,37,0.0,0.0,691.0871137879653,500.0,0.0,0.0,44,1,2,2,1,1,2,2,2,3,60.0,2,,5,100484,1,2,0,0,1,,0.0,,43,2.0,3.0,5.0,2.0,1.5,3,2,924.812274182433,500.0,93666.76570140883,1,1,1,2,103.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.005338072647815142,62444.51046760589,10,5,10,10_0,10_4,10_0_0 -9323,2,56.0,0.0,5,111,1243.0,0.0,0.0,46,46,0.0,0.0,1718.0425648768817,1243.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,3,109010,1,1,0,0,1,447.0,0.0,725.0,43,3.0,0.0,5.0,5.0,3.0,3,2,930.25902653729,1243.0,71832.73433514658,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017304088609527153,23944.244778382195,6,3,6,6_0,6_4,6_0_0 -9324,1,51.0,400.0,7,111,1046.0,0.0,0.0,85,63,0.0,0.0,1445.7542420444233,1046.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,10.0,2,,5,128001,2,1,0,1,1,,0.0,691.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,831.15008936436,1046.0,22464.805286644,6,1,2,3,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04656172117467131,8640.309725632309,1,1,1_1,1_0_1,1_4_1,1_0_0 -9325,2,65.0,0.0,7,111,1000.0,0.0,0.0,72,34,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,5,104147,2,1,0,0,1,,0.0,,42,2.0,2.0,5.0,3.0,2.0,2,1,948.373145393003,1000.0,130325.50933654542,5,1,0,1,112.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0076730948920955685,65162.75466827271,10,5,10,10_0,10_4,10_0_0 -9326,2,65.0,0.0,6,111,800.0,0.0,0.0,0,74,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,114546,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,962.244954512805,800.0,39960.41250629555,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020019813355879754,39960.41250629555,9,5,9,9_0,9_4,9_0_0 -9327,2,36.0,0.0,8,111,840.0,0.0,0.0,38,38,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,2001.0,6,133345,1,2,0,0,1,,0.0,1430.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1327.63596454642,840.0,82327.23511849073,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010203184873037667,54884.823412327154,10,5,10,10_0,10_4,10_0_0 -9328,2,74.0,0.0,1,111,37.0,180.0,0.0,0,77,0.0,0.0,51.14044642030943,217.0,0.0,326.4575221525408,10,0,0,0,0,0,0,0,0,0,,1,,1,117192,2,1,2,0,1,,259.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,1237.38214675533,37.0,26674.00758720648,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008135260488719312,26674.00758720648,7,4,7,7_1,7_4,7_1_0 -9329,2,60.0,0.0,5,111,574.0,1646.0,0.0,75,74,0.0,0.0,793.3680066285841,2220.0,0.0,2985.272674794901,60,0,0,0,0,0,0,0,0,0,,1,,3,131088,2,1,1,0,1,,548.0,,41,0.0,1.0,3.0,3.0,2.0,1,1,773.526731649471,574.0,131292.42017934003,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016908820760311766,65646.21008967001,10,5,10,10_1,10_4,10_0_0 -9330,2,61.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1112.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,3,,1,103598,2,2,0,0,1,,215.0,380.0,21,0.0,1.0,1.0,2.0,1.5,2,2,1013.52215779003,0.0,18601.57487995404,0,5,2,3,13.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05977988461602491,12401.04991996936,2,1,2_0,2_0_0,2_4_0,2_1_0 -9331,2,36.0,0.0,2,111,300.0,252.0,0.0,52,64,0.0,0.0,414.65226827277917,552.0,0.0,457.04053101355714,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,109790,2,2,0,1,1,360.0,0.0,329.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1034.84991609033,300.0,49243.15248216395,1,1,2,3,41.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011209680375356482,32828.76832144263,8,4,8,8_0,8_4,8_0_1 -9332,2,52.0,0.0,5,111,450.0,600.0,0.0,63,55,0.0,0.0,621.9784024091688,1050.0,0.0,1088.1917405084694,31,2,2,2,2,1,2,2,2,3,1.0,2,,3,120286,1,2,0,1,1,400.0,0.0,310.0,43,3.0,2.0,3.0,3.0,2.0,2,2,965.531620505668,450.0,12833.953714120471,4,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.08181422680718761,6416.9768570602355,1,1,1_0,1_0_0,1_4_0,1_0_0 -9333,2,43.0,0.0,2,111,320.0,0.0,0.0,0,54,0.0,0.0,442.2957528242978,320.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,30.0,2,,2,120479,2,1,0,0,1,,0.0,374.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1165.44865857637,320.0,19463.71779699889,0,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.016440846673667905,19463.71779699889,5,3,5,5_0,5_4,5_0_1 -9334,2,38.0,0.0,9,111,1450.0,0.0,0.0,37,37,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,2006.0,6,112858,1,3,0,0,1,,1450.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,1229.66717187893,1450.0,180329.91038504857,1,1,0,1,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008040818058989185,85871.38589764218,10,5,10,10_0,10_4,10_0_0 -9335,2,41.0,0.0,9,111,780.0,0.0,0.0,0,37,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,2009.0,6,127647,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1458.71737926226,780.0,66716.89211959968,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011691192068745306,66716.89211959968,10,5,10,10_0,10_4,10_0_0 -9336,2,47.0,0.0,8,111,1438.0,0.0,0.0,38,37,0.0,0.0,1987.5665392541882,1438.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,1999.0,6,106994,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,892.403801211003,1438.0,116810.88001404467,1,1,1,2,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012310497102899175,46724.35200561787,10,5,10,10_0,10_4,10_0_0 -9337,2,41.0,0.0,8,111,662.0,1400.0,0.0,37,37,0.0,0.0,914.999338655266,2062.0,0.0,2539.1140611864284,12,1,2,2,1,2,2,2,2,2,15.0,2,1999.0,6,106067,2,1,0,0,1,,0.0,421.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1021.42653818365,662.0,131855.49401209498,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.015638332065335516,62788.33048194998,10,5,10,10_0,10_4,10_0_0 -9338,2,46.0,0.0,9,111,0.0,0.0,0.0,54,53,0.0,0.0,0.0,484.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,115884,2,1,0,0,1,,0.0,810.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1431.29188174279,0.0,48370.84674911817,4,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010006027029262695,26872.692638398985,7,4,7,7_0,7_4,7_0_0 -9339,2,31.0,0.0,8,111,0.0,0.0,0.0,38,37,0.0,0.0,0.0,1002.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,20.0,2,1999.0,6,100742,2,1,0,0,1,,0.0,1419.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1308.36449432892,0.0,101218.54901211329,1,1,2,3,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00989937130871226,56232.527228951825,10,5,10,10_0,10_4,10_0_0 -9340,2,62.0,0.0,8,111,1581.0,0.0,0.0,46,90,0.0,0.0,2185.217453797546,1581.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,1.0,2,2000.0,6,112065,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,877.037866496931,1581.0,86645.60631388225,1,1,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018246741724821817,43322.803156941125,10,5,10,10_0,10_4,10_0_0 -9341,2,48.0,0.0,7,111,1254.0,0.0,0.0,45,34,0.0,0.0,1733.246481380217,1254.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,,5,130097,2,1,0,0,1,,0.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,940.002940636026,1254.0,114333.8945440679,1,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010967876192800104,76222.59636271193,10,5,10,10_0,10_4,10_0_0 -9342,2,38.0,0.0,8,111,1183.0,0.0,0.0,37,38,0.0,0.0,1635.112111222326,1183.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,2000.0,6,131499,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,664.4641293026,1183.0,156363.836035903,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007565688013233246,65151.598348292915,10,5,10,10_0,10_4,10_0_0 -9343,2,34.0,0.0,7,111,1200.0,0.0,0.0,84,48,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,2,2,1,2,2,2,2,1,2,60.0,2,,5,127315,2,2,0,0,2,,0.0,933.0,42,1.0,0.0,2.0,3.0,1.8,3,2,1138.64505141912,1200.0,26085.41248722858,3,1,3,4,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04600272280867784,14491.895826238098,3,2,3_0,3_0_0,3_4_0,3_0_0 -9344,0,25.0,0.0,8,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,757.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,108136,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1242.46981866439,0.0,5400.5808405429525,0,4,5,0,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1401701080589499,5400.5808405429525,1,1,1_0,1_0_0,1_4_0,1_0_0 -9345,0,42.0,0.0,1,111,311.0,270.0,0.0,85,21,0.0,0.0,429.8561847761144,581.0,0.0,489.6862832288112,31,0,0,0,0,0,0,0,0,0,,2,,1,132412,2,3,0,0,1,,0.0,,42,1.0,0.0,2.0,4.0,2.1,2,2,1037.8413628835,311.0,35363.41589212086,6,1,5,0,34.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016429408340313912,16839.721853390885,4,2,4_0,4_0_0,4_4_0,4_1_0 -9346,2,34.0,0.0,5,111,660.0,0.0,0.0,48,37,0.0,0.0,912.2349902001142,660.0,0.0,0.0,33,2,2,2,1,2,2,2,2,3,45.0,2,,3,113667,1,2,0,0,1,,0.0,522.0,43,2.0,0.0,3.0,2.0,1.5,1,1,969.316419824984,660.0,74825.24000497395,1,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.008820553064128187,49883.4933366493,10,5,10,10_0,10_4,10_0_0 -9347,2,68.0,0.0,6,111,1080.0,0.0,0.0,0,75,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,131189,2,1,0,0,1,,0.0,523.0,11,0.0,1.0,3.0,1.0,1.0,3,3,1091.64479182551,1080.0,24941.44782788876,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04330141567773693,24941.44782788876,7,4,7,7_0,7_4,7_0_0 -9348,0,43.0,0.0,1,111,0.0,0.0,0.0,81,48,0.0,0.0,0.0,2102.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,2,,1,102907,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,938.785056097337,0.0,17664.55206400503,4,1,5,0,48.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11899537516624806,9813.64003555835,2,1,2_0,2_0_0,2_4_0,2_1_0 -9349,2,85.0,0.0,1,111,550.0,1600.0,0.0,77,74,0.0,0.0,760.1958251667618,2150.0,0.0,2901.844641355918,20,0,0,0,0,0,0,0,0,0,,1,,1,112301,2,1,2,0,2,,150.0,,41,0.0,4.0,7.0,2.0,1.5,1,1,592.202751064916,550.0,287336.72754560487,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007482510218464018,191557.8183637366,10,5,10,10_1,10_4,10_1_0 -9350,0,46.0,0.0,1,111,1712.0,2748.0,0.0,0,85,0.0,0.0,2366.282277609993,4460.0,0.0,4983.91817152879,50,0,0,0,0,0,0,0,0,0,,1,,1,121042,2,1,2,0,2,,1600.0,,31,0.0,0.0,7.0,4.0,2.1,2,2,719.910516892082,1712.0,144242.59507314788,0,6,5,0,230.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030920131447567605,68686.95003483232,10,5,10,10_1,10_4,10_1_0 -9351,2,62.0,0.0,5,111,0.0,0.0,0.0,75,38,0.0,0.0,0.0,571.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,,3,105622,2,1,0,1,1,1250.0,0.0,1370.0,42,1.0,3.0,2.0,2.0,1.5,2,1,763.752589484135,0.0,134002.9476704979,6,1,3,4,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004261100296122153,89335.2984469986,10,5,10,10_0,10_4,10_0_0 -9352,2,52.0,0.0,5,111,390.0,0.0,0.0,0,54,0.0,0.0,539.0479487546129,390.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,3,127732,2,1,0,1,1,,0.0,488.0,12,1.0,1.0,2.0,1.0,1.0,2,2,950.089433785869,390.0,20704.90809446011,0,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018836113554367817,20704.90809446011,5,3,5,5_0,5_4,5_0_0 -9353,2,57.0,0.0,2,111,328.0,0.0,0.0,54,46,0.0,0.0,453.3531466449052,328.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,2,,2,120613,1,3,0,1,1,802.0,0.0,533.0,43,2.0,3.0,4.0,3.0,2.0,4,2,876.896781435573,328.0,59398.64737798913,1,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0055220112658919615,29699.323688994566,8,4,8,8_0,8_4,8_0_1 -9354,2,65.0,0.0,2,111,294.0,251.0,0.0,0,77,0.0,0.0,406.35922290732356,545.0,0.0,455.2268781127097,42,0,0,0,0,0,0,0,0,0,,2,,2,107141,2,1,0,1,1,376.0,0.0,235.0,11,0.0,1.0,2.0,1.0,1.0,2,2,1118.60948777953,294.0,22092.075481777894,0,5,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024669479354691225,22092.075481777894,6,3,6,6_0,6_4,6_0_1 -9355,2,80.0,0.0,2,111,360.0,0.0,0.0,0,86,1433.8414819372806,0.0,497.582721927335,1320.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,123955,2,2,0,1,1,,312.0,315.0,11,0.0,2.0,4.0,1.0,1.0,2,2,944.977143829707,360.0,28921.337641151084,0,5,2,3,62.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.04564104248490297,28921.337641151084,8,4,8,8_0,8_4,8_0_1 -9356,2,47.0,0.0,2,111,0.0,0.0,460.0,52,47,0.0,0.0,235.0201340252615,460.0,0.0,525.8930563402105,41,2,2,2,2,1,2,2,2,1,10.0,2,,2,133111,2,1,0,1,1,612.0,0.0,275.0,43,2.0,0.0,3.0,4.0,2.1,1,1,741.681759431803,0.0,46021.10328049887,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.009995414434032525,21914.811085951842,6,3,6,6_0,6_4,6_0_1 -9357,2,78.0,0.0,1,111,880.0,0.0,0.0,0,77,0.0,0.0,1216.313320266819,880.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,1,113141,2,1,0,0,2,,0.0,510.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1067.60909098159,880.0,19941.560677401634,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,1,0,0.044128943277606254,19941.560677401634,5,3,5,5_0,5_4,5_1_0 -9358,2,73.0,0.0,6,111,180.0,0.0,0.0,0,75,0.0,0.0,248.7913609636675,180.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,130182,2,1,0,1,1,,0.0,640.0,11,0.0,0.0,2.0,1.0,1.0,3,2,1119.99407187518,180.0,18678.284440933756,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009636859346971243,18678.284440933756,4,2,4_0,4_0_0,4_4_0,4_0_0 -9359,2,71.0,0.0,1,111,200.0,650.0,0.0,0,75,0.0,0.0,276.4348455151861,850.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,0,,2,,1,131421,2,1,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,744.402919243164,200.0,34515.101199772835,0,5,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024626901572161533,34515.101199772835,9,5,9,9_0,9_4,9_1_0 -9360,2,43.0,0.0,5,111,3300.0,0.0,0.0,37,37,0.0,0.0,4561.174951000571,3300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,126033,2,1,0,0,1,,469.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,736.320529035754,3300.0,122452.05524126007,1,1,0,1,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026949323092194773,58310.502495838125,10,5,10,10_0,10_4,10_0_0 -9361,2,42.0,0.0,9,111,1000.0,100.0,0.0,37,54,0.0,0.0,1382.1742275759307,1100.0,0.0,181.36529008474488,44,0,0,0,0,0,0,0,0,3,30.0,2,2010.0,6,128889,2,1,0,0,1,,750.0,784.0,43,2.0,0.0,4.0,5.0,2.4,1,1,789.626635095871,1000.0,50008.08189223849,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021996444542111613,20836.700788432707,5,3,5,5_0,5_4,5_0_0 -9362,2,49.0,0.0,1,111,320.0,0.0,0.0,0,37,0.0,0.0,442.2957528242978,548.0,0.0,0.0,30,2,2,1,2,1,2,2,2,3,30.0,2,,1,101018,2,2,0,1,2,,151.0,,22,1.0,0.0,3.0,3.0,2.0,2,2,547.650456014192,320.0,63697.44230029115,0,1,0,1,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.008603171182549902,31848.721150145575,8,4,8,8_0,8_4,8_1_0 -9363,2,60.0,0.0,5,111,345.0,230.0,0.0,0,37,0.0,0.0,476.85010851369606,575.0,0.0,417.14016719491326,20,0,0,0,0,0,0,0,0,3,25.0,2,,3,111309,2,1,0,0,1,,480.0,830.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1110.49977001028,345.0,55381.753947998186,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010382480853529987,55381.753947998186,10,5,10,10_0,10_4,10_0_0 -9364,2,62.0,0.0,5,111,720.0,0.0,0.0,37,21,0.0,0.0,995.16544385467,720.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,2,,3,132621,2,1,0,1,1,,340.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,710.122680866965,720.0,199288.19562509286,4,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0036128582415111345,132858.79708339524,10,5,10,10_0,10_4,10_0_0 -9365,2,65.0,0.0,5,111,576.0,0.0,0.0,72,54,970.8301700617004,0.0,796.132355083736,1226.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,,3,116781,1,1,0,1,1,,246.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,710.122680866965,576.0,71461.55486178731,5,1,0,1,104.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01715607787111808,47641.03657452488,10,5,10,10_0,10_4,10_0_0 -9366,2,48.0,0.0,7,111,1800.0,1000.0,0.0,90,23,0.0,0.0,2487.913609636675,2800.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,2,10.0,2,,5,104007,2,1,0,1,2,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,702.671519597061,1800.0,361956.35448717023,1,1,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007735739310246722,172360.1688034144,10,5,10,10_0,10_4,10_0_0 -9367,2,76.0,0.0,7,111,312.0,0.0,0.0,0,74,1344.2263893162005,0.0,431.23835900369033,1212.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,101716,2,1,0,1,1,,123.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,750.108933113861,312.0,75295.0,0,5,0,1,95.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016096686366956638,75295.0,10,5,10,10_0,10_4,10_0_0 -9368,2,30.0,0.0,7,111,340.0,0.0,0.0,0,56,0.0,0.0,469.9392373758164,340.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,30.0,2,,5,126297,2,1,0,1,1,,0.0,540.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1081.35673375664,340.0,19919.627312787816,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01706859243203461,19919.627312787816,5,3,5,5_0,5_4,5_0_0 -9369,2,83.0,0.0,6,111,380.0,0.0,0.0,0,78,0.0,0.0,525.2262064788536,380.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,127373,2,1,0,1,1,,280.0,375.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1076.96339012875,380.0,25894.804510901784,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01467475839950902,25894.804510901784,7,4,7,7_0,7_4,7_0_0 -9370,2,41.0,0.0,7,111,800.0,0.0,0.0,38,37,0.0,0.0,1105.7393820607444,1323.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,109475,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,990.451321109308,800.0,108906.13863830788,1,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012148075549660825,72604.09242553859,10,5,10,10_0,10_4,10_0_0 -9371,2,63.0,0.0,5,111,410.0,0.0,0.0,0,77,0.0,0.0,566.6914333061316,410.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108847,1,1,0,0,1,,134.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,963.921383224524,410.0,27228.898997830725,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015057531339503074,27228.898997830725,7,4,7,7_0,7_4,7_0_0 -9372,2,78.0,0.0,5,111,296.0,0.0,0.0,77,75,0.0,0.0,409.12357136247545,296.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,114326,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,786.745264041394,296.0,57176.700804543296,5,5,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005176933888016142,38117.8005363622,9,5,9,9_0,9_4,9_0_0 -9373,2,69.0,0.0,5,111,716.0,0.0,0.0,43,31,0.0,0.0,989.6367469443662,716.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,3,107992,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,4,4,786.745264041394,716.0,101372.53420637113,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007063057124944602,67581.68947091409,10,5,10,10_0,10_4,10_0_0 -9374,2,47.0,0.0,5,111,574.0,0.0,0.0,67,43,0.0,0.0,793.3680066285841,574.0,0.0,0.0,70,2,2,2,1,1,2,2,2,3,45.0,2,,3,124502,1,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,734.105908483897,574.0,73695.10148924009,1,1,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0077888487620009226,36847.55074462004,9,5,9,9_0,9_4,9_0_0 -9375,2,27.0,0.0,1,111,750.0,0.0,0.0,34,33,0.0,0.0,1036.630670681948,750.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,1,111657,2,1,0,0,1,,0.0,1223.0,43,2.0,0.0,3.0,2.0,1.5,1,1,744.918873994012,750.0,58012.558044851874,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012928235286920884,38675.03869656791,9,5,9,9_0,9_4,9_1_0 -9376,2,49.0,0.0,1,111,230.0,902.0,0.0,0,37,0.0,0.0,317.900072342464,1132.0,0.0,1635.914916564399,50,2,2,2,2,1,2,2,2,3,35.0,2,,1,132537,1,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,976.397917205913,230.0,71159.8259610489,0,1,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.015907852284793786,71159.8259610489,10,5,10,10_0,10_4,10_1_0 -9377,1,24.0,209.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,760.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,35.0,2,,1,100858,1,2,0,0,1,,0.0,530.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1244.41145312639,0.0,18524.544306264623,0,1,3,4,17.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04102665023414279,18524.544306264623,4,2,4_1,4_0_1,4_4_1,4_1_0 -9378,2,61.0,0.0,2,111,296.0,1372.0,0.0,0,33,0.0,0.0,409.12357136247545,1668.0,0.0,2488.3317799627,50,0,0,0,0,0,0,0,0,3,15.0,1,,2,100689,2,1,2,0,1,,189.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1062.76082823882,296.0,79606.56461944754,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02095304586969345,79606.56461944754,10,5,10,10_1,10_4,10_0_1 -9380,2,36.0,0.0,1,111,2040.0,0.0,0.0,55,46,0.0,0.0,2819.635424254898,2040.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,112352,2,3,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,669.059585895278,2040.0,40025.28624416366,1,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05096778040650403,19059.66011626841,5,3,5,5_0,5_4,5_1_0 -9381,2,64.0,0.0,2,111,1000.0,0.0,0.0,0,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,107688,2,1,1,0,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,5,4,1071.50253579477,1000.0,41096.96702061888,0,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02433269587749108,41096.96702061888,9,5,9,9_1,9_4,9_0_1 -9382,2,70.0,0.0,2,111,1500.0,840.0,0.0,86,75,0.0,0.0,2073.261341363896,2340.0,0.0,1523.468436711857,60,2,1,2,2,1,2,2,2,0,,2,,2,101065,1,2,0,1,1,670.0,0.0,338.0,41,0.0,2.0,3.0,2.0,1.5,2,2,982.031258446221,1500.0,23618.694903298354,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.09907406017058203,15745.796602198903,3,2,3_0,3_0_0,3_4_0,3_0_1 -9383,2,35.0,0.0,1,111,1632.0,0.0,0.0,46,46,0.0,0.0,2255.7083394039187,1632.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,55.0,2,,1,106720,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,5,4,1088.92498687235,1632.0,108022.45663257557,1,1,1,2,49.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01510796968403558,60012.47590698643,10,5,10,10_0,10_4,10_1_0 -9384,2,74.0,0.0,5,111,210.0,72.0,0.0,77,38,0.0,0.0,290.25658779094545,282.0,0.0,130.5830088610163,50,0,0,0,0,0,0,0,0,0,,2,,3,109197,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,786.745264041394,210.0,59130.34784539185,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004769124658920417,39420.2318969279,9,5,9,9_0,9_4,9_0_0 -9385,2,40.0,0.0,2,111,337.0,0.0,0.0,38,35,0.0,0.0,465.7927146930886,2177.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,35.0,2,,2,109930,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,746.967637599464,337.0,96328.44148163612,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022599763543511904,45870.68641982672,10,5,10,10_0,10_4,10_0_1 -9386,2,62.0,0.0,2,111,300.0,150.0,0.0,75,74,0.0,0.0,414.65226827277917,450.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,0,,2,,2,123830,2,2,0,1,1,720.0,0.0,291.0,41,0.0,2.0,3.0,2.0,1.5,1,1,983.332621653909,300.0,27217.663243638686,7,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016533381134590016,18145.108829092456,4,2,4_0,4_0_0,4_4_0,4_0_1 -9387,2,62.0,0.0,2,111,385.0,0.0,0.0,0,77,0.0,0.0,532.1370776167332,688.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111023,2,1,0,1,1,900.0,0.0,316.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1096.31234620081,385.0,23663.99917195663,0,5,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029073699462233097,23663.99917195663,6,3,6,6_0,6_4,6_0_1 -9388,2,43.0,0.0,1,111,1442.0,0.0,0.0,37,33,0.0,359.20485917235186,1993.0952361644918,1789.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,25.0,1,,1,127496,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,584.334837605472,1442.0,82903.44721347459,4,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021579319800699766,39477.832006416465,9,5,9,9_1,9_4,9_1_0 -9389,2,61.0,0.0,5,111,305.0,70.0,0.0,0,75,0.0,0.0,421.56313941065883,375.0,0.0,126.95570305932142,31,0,0,0,0,0,0,0,0,0,,2,,3,131814,2,1,0,1,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,886.105362191525,305.0,25645.25429638236,0,5,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014622588478403165,25645.25429638236,7,4,7,7_0,7_4,7_0_0 -9390,2,45.0,0.0,2,111,1084.0,1800.0,0.0,43,33,0.0,0.0,1498.2768626923087,2884.0,0.0,3264.575221525408,60,0,0,0,0,0,0,0,0,2,45.0,1,,2,122011,1,2,3,0,1,,672.0,,43,2.0,2.0,7.0,4.0,2.1,2,1,655.374902275631,1084.0,179758.75143997834,1,1,1,2,127.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016043725142155157,85599.40544760873,10,5,10,10_1,10_4,10_0_1 -9391,2,57.0,0.0,8,111,689.0,1837.0,0.0,37,45,0.0,72.46207533736204,952.3180427998161,2596.0,0.0,3331.6803788567636,33,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,108187,2,1,1,0,1,,674.0,,43,2.0,1.0,6.0,2.0,1.5,1,1,779.065795338777,689.0,95981.01503369608,4,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027047015486225286,63987.343355797384,10,5,10,10_1,10_4,10_0_0 -9392,2,45.0,0.0,2,111,400.0,100.0,0.0,85,37,0.0,0.0,552.8696910303722,500.0,0.0,181.36529008474488,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,126110,1,1,0,1,1,,0.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,1,1,703.485809969499,400.0,77268.08349715977,7,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006470977114611353,29718.49365275376,8,4,8,8_0,8_4,8_0_1 -9393,2,73.0,0.0,2,111,236.0,0.0,0.0,0,75,0.0,0.0,326.1931177079196,236.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,116580,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1018.69495273976,236.0,41565.085953270565,0,5,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00567784222232386,41565.085953270565,9,5,9,9_0,9_4,9_0_1 -9394,2,79.0,0.0,2,111,218.0,58.0,0.0,0,75,0.0,0.0,301.3139816115529,276.0,0.0,105.19186824915204,50,2,2,1,2,2,2,2,1,0,,2,,2,118344,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,1018.69495273976,218.0,47388.432452241985,0,5,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005824206155756524,47388.432452241985,10,5,10,10_0,10_4,10_0_1 -9395,2,62.0,0.0,2,111,168.0,0.0,0.0,0,75,0.0,0.0,232.20527023275633,168.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,110410,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,964.537229293519,168.0,32133.81963206111,0,5,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0052281366461763585,32133.81963206111,8,4,8,8_0,8_4,8_0_1 -9396,2,80.0,0.0,2,111,200.0,70.0,0.0,0,77,0.0,0.0,276.4348455151861,270.0,0.0,126.95570305932142,20,0,0,0,0,0,0,0,0,0,,2,,2,102345,2,1,0,1,1,891.0,0.0,260.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1103.25699891554,200.0,18522.14268797567,0,5,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01457714717721511,18522.14268797567,4,2,4_0,4_0_0,4_4_0,4_0_1 -9397,2,48.0,0.0,2,111,250.0,60.0,0.0,0,43,0.0,0.0,345.54355689398267,310.0,0.0,108.81917405084694,33,0,0,0,0,0,0,0,0,0,,2,,2,104299,2,1,0,1,1,684.0,0.0,260.0,22,1.0,1.0,3.0,2.0,1.5,1,1,979.627377278415,250.0,65149.403985389894,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004758293722372644,43432.93599025993,10,5,10,10_0,10_4,10_0_1 -9398,2,54.0,0.0,2,111,400.0,0.0,0.0,0,54,0.0,0.0,552.8696910303722,400.0,0.0,0.0,60,2,2,2,2,1,2,2,2,3,45.0,2,,2,126864,1,2,0,1,1,,0.0,600.0,32,2.0,1.0,3.0,2.0,1.5,1,1,979.627377278415,400.0,41596.33718335576,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009616231309906173,27730.89145557051,7,4,7,7_0,7_4,7_0_1 -9399,2,56.0,0.0,2,111,225.0,70.0,0.0,0,48,0.0,0.0,310.9892012045844,295.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,102145,1,1,0,1,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,3,2,964.537229293519,225.0,38894.5992438514,0,1,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00758460058041695,38894.5992438514,9,5,9,9_0,9_4,9_0_1 -9400,2,58.0,0.0,2,111,584.0,0.0,0.0,75,55,0.0,0.0,807.1897489043434,584.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,100476,2,2,0,1,1,,0.0,,42,1.0,1.0,4.0,3.0,2.0,2,2,787.888515524171,584.0,44653.80404511026,5,1,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01307839303925888,22326.90202255513,6,3,6,6_0,6_4,6_0_1 -9401,2,53.0,0.0,2,111,400.0,0.0,0.0,33,43,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,124095,1,3,0,1,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,858.807890504286,400.0,89324.27608641713,1,1,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00447806595838536,35729.71043456685,9,5,9,9_0,9_4,9_0_1 -9402,2,44.0,0.0,2,111,399.0,0.0,0.0,42,38,0.0,0.0,551.4875168027963,399.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,75.0,2,,2,114893,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,687.01405103775,399.0,78992.26681547835,1,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005051127358226627,32913.44450644931,8,4,8,8_0,8_4,8_0_1 -9403,2,62.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,425.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,119656,2,3,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,856.452374332536,0.0,47330.208352464004,5,5,1,2,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008979466070275065,31553.472234976,8,4,8,8_0,8_4,8_0_1 -9404,2,32.0,0.0,5,111,500.0,0.0,0.0,38,37,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,1,2,2,2,1,2,2,2,3,40.0,2,,3,123433,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,985.981862458317,500.0,95832.53168750902,1,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.005217434948190677,63888.354458339345,10,5,10,10_0,10_4,10_0_0 -9405,2,42.0,0.0,8,111,800.0,1000.0,0.0,85,37,0.0,0.0,1105.7393820607444,1800.0,0.0,1813.6529008474488,12,0,0,0,0,0,0,0,0,2,180.0,2,2002.0,6,114226,2,1,0,0,1,,0.0,,42,1.0,0.0,5.0,6.0,2.8999999999999995,1,1,1072.76957360497,800.0,81352.53984713793,6,1,0,1,119.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02212592260035414,28052.599947288945,8,4,8,8_0,8_4,8_0_0 -9406,2,31.0,0.0,1,111,400.0,0.0,0.0,0,42,0.0,0.0,552.8696910303722,400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,131434,1,1,0,0,2,,0.0,560.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1597.64581310442,400.0,23555.38679771985,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016981253733380417,23555.38679771985,6,3,6,6_0,6_4,6_1_0 -9407,2,40.0,0.0,5,111,750.0,0.0,0.0,33,37,0.0,0.0,1036.630670681948,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,102271,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,773.427269906162,750.0,90918.90862591437,1,1,1,2,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008249109138406766,50510.504792174645,10,5,10,10_0,10_4,10_0_0 -9408,2,73.0,0.0,5,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,130524,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,5,5,1110.32278911778,0.0,81593.36892882851,0,5,0,1,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004044446311413484,81593.36892882851,10,5,10,10_0,10_4,10_0_0 -9409,2,76.0,0.0,1,111,383.0,0.0,0.0,0,74,0.0,0.0,529.3727291615814,383.0,0.0,0.0,41,2,2,2,1,1,2,1,2,0,,2,,1,125096,2,2,0,1,1,,0.0,400.0,11,0.0,0.0,4.0,1.0,1.0,4,2,827.562597727939,383.0,27982.55231189794,0,5,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.013687100294891674,27982.55231189794,7,4,7,7_0,7_4,7_1_0 -9410,1,36.0,100.0,2,111,430.0,800.0,0.0,0,52,0.0,0.0,594.3349178576501,1230.0,0.0,1450.922320677959,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,122081,1,1,0,0,1,,0.0,580.0,32,1.0,0.0,3.0,2.0,1.3,3,3,1230.62193166708,430.0,20055.221085744353,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06133066271078449,15427.09314288027,3,2,3_1,3_0_1,3_4_1,3_0_1 -9411,2,83.0,0.0,2,111,240.0,0.0,0.0,77,74,0.0,0.0,331.72181461822333,240.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,131435,2,2,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,743.095412227674,240.0,55862.46772247346,5,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.004296265628513365,37241.64514831564,9,5,9,9_0,9_4,9_0_1 -9412,2,42.0,0.0,2,111,712.0,460.0,0.0,85,53,0.0,0.0,984.1080500340626,1172.0,0.0,834.2803343898265,20,2,2,2,1,1,2,2,2,2,50.0,2,,2,100711,1,3,0,1,2,444.0,0.0,480.0,42,1.0,0.0,3.0,3.0,2.0,2,2,966.109258229047,712.0,34515.986536891505,7,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0339552803668914,17257.993268445753,4,2,4_0,4_0_0,4_4_0,4_0_1 -9413,2,77.0,0.0,8,111,1562.0,0.0,0.0,0,77,0.0,0.0,2158.9561434736033,1562.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,127749,2,2,5,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,984.933519163423,1562.0,22180.222687585527,0,5,0,1,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07042309818080707,22180.222687585527,6,3,6,6_1,6_4,6_0_0 -9414,2,60.0,0.0,2,111,150.0,70.0,0.0,0,47,0.0,0.0,207.32613413638958,220.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,106349,2,1,0,1,1,310.0,0.0,165.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1201.55333193298,150.0,35934.05594934567,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006122325860184621,35934.05594934567,9,5,9,9_0,9_4,9_0_1 -9415,0,31.0,0.0,2,111,504.0,0.0,0.0,47,54,0.0,0.0,696.615810698269,2299.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,109520,1,1,0,1,2,733.0,0.0,,43,2.0,0.0,2.0,4.0,2.1,3,2,1228.56929895383,504.0,31718.259689812032,4,1,5,0,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07248190860668322,15103.933185624777,3,2,3_0,3_0_0,3_4_0,3_0_1 -9418,2,45.0,0.0,1,111,280.0,96.0,0.0,0,33,0.0,0.0,387.00878372126056,376.0,0.0,174.11067848135508,31,2,2,2,2,1,2,2,2,1,15.0,2,,1,116441,1,1,0,1,2,330.0,0.0,538.0,12,1.0,0.0,1.0,1.0,1.0,1,1,726.659930419195,280.0,31243.825637586087,0,1,2,3,22.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.01203437774750845,31243.825637586087,8,4,8,8_0,8_4,8_1_0 -9419,2,30.0,0.0,1,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,461.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,1,116802,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,726.659930419195,0.0,31462.639222528174,0,1,1,2,46.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014652299088434718,31462.639222528174,8,4,8,8_0,8_4,8_1_0 -9420,2,43.0,0.0,8,111,2160.0,0.0,0.0,54,45,0.0,0.0,2985.49633156401,2160.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,2002.0,6,106272,2,1,0,0,1,,0.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,915.123515190593,2160.0,85227.87194030978,1,1,0,1,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025343821813511646,40584.70092395703,9,5,9,9_0,9_4,9_0_0 -9422,2,62.0,0.0,6,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,1792.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,103714,2,1,0,0,1,,0.0,400.0,41,0.0,3.0,2.0,2.0,1.5,2,2,1302.4947567247,0.0,47302.123236371415,5,5,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037884134524898035,31534.74882424761,8,4,8,8_0,8_4,8_0_0 -9423,2,62.0,0.0,1,111,808.0,1200.0,0.0,35,74,0.0,0.0,1116.796775881352,2008.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,2,,1,112521,2,1,0,0,1,,0.0,,42,1.0,2.0,6.0,4.0,2.5,2,2,1047.29025371642,808.0,132937.39931649505,1,5,1,2,136.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015104853941210241,53174.95972659802,10,5,10,10_0,10_4,10_1_0 -9424,2,75.0,0.0,1,111,336.0,120.0,0.0,86,78,0.0,0.0,464.41054046551267,456.0,0.0,217.63834810169388,41,0,0,0,0,0,0,0,0,0,,2,,1,106843,2,2,0,1,1,720.0,0.0,247.0,41,0.0,1.0,4.0,2.0,1.5,3,1,704.459958399319,336.0,18647.170733093393,5,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024454111914722295,12431.447155395595,2,1,2_0,2_0_0,2_4_0,2_1_0 -9425,2,35.0,0.0,5,111,440.0,0.0,0.0,0,52,0.0,0.0,608.1566601334094,440.0,0.0,0.0,10,1,2,2,1,1,2,2,2,2,10.0,2,,3,132390,1,2,0,1,1,408.0,0.0,228.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1102.91072300115,440.0,16039.947671557858,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02743151093816914,16039.947671557858,4,2,4_0,4_0_0,4_4_0,4_0_0 -9426,1,41.0,199.0,9,111,792.0,340.0,0.0,85,52,0.0,0.0,1094.681988240137,1132.0,0.0,616.6419862881327,50,1,2,2,1,2,2,2,2,2,30.0,2,2008.0,6,107347,2,3,0,1,1,612.0,0.0,507.0,42,1.0,0.0,3.0,4.0,2.1,2,2,599.818661745679,792.0,32556.314379601015,6,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03477052060626627,15503.006847429055,3,2,3_1,3_0_1,3_4_1,3_0_0 -9427,2,36.0,0.0,8,111,1357.0,0.0,0.0,33,38,0.0,0.0,1875.6104268205377,1357.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,2003.0,6,105238,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,892.937689578059,1357.0,102331.08463543488,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01326087771701486,48729.087921635655,10,5,10,10_0,10_4,10_0_0 -9428,2,42.0,0.0,8,111,1444.0,0.0,0.0,46,37,0.0,0.0,1995.8595846196438,1444.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,70.0,2,2002.0,6,102985,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,877.562562059361,1444.0,78390.13574241717,1,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01842068503038255,43550.07541245398,10,5,10,10_0,10_4,10_0_0 -9429,2,31.0,0.0,8,111,711.0,0.0,0.0,0,37,0.0,0.0,982.7258758064867,711.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,2001.0,6,133225,2,1,0,0,1,,0.0,1072.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1580.21120830047,711.0,60744.0,0,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011704859739233504,60744.0,10,5,10,10_0,10_4,10_0_0 -9430,2,53.0,0.0,9,111,251.0,414.0,0.0,0,42,0.0,0.0,346.92573112155856,665.0,0.0,750.8523009508439,71,0,0,0,0,0,0,0,0,1,5.0,2,2004.0,6,120441,1,2,0,0,1,,0.0,454.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1264.42329374717,251.0,31356.168739584347,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02120794812411177,31356.168739584347,8,4,8,8_0,8_4,8_0_0 -9431,2,51.0,0.0,8,111,500.0,900.0,0.0,52,48,0.0,0.0,691.0871137879653,1400.0,0.0,1632.287610762704,10,0,0,0,0,0,0,0,0,3,45.0,2,2003.0,6,111102,2,1,0,0,1,,0.0,650.0,43,2.0,1.0,4.0,3.0,2.0,5,4,1168.5616002964,500.0,74260.92172355819,1,1,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01885244577506867,37130.460861779095,9,5,9,9_0,9_4,9_0_0 -9432,1,30.0,343.0,9,111,360.0,720.0,0.0,0,67,0.0,0.0,497.582721927335,1080.0,0.0,1305.830088610163,60,0,0,0,0,0,0,0,0,3,45.0,2,2004.0,6,111932,1,2,0,0,1,,0.0,440.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1106.43639214794,360.0,20460.04170182175,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05278581616497084,12787.526063638592,2,1,2_1,2_0_1,2_4_1,2_0_0 -9433,2,57.0,0.0,2,111,350.0,64.0,0.0,0,43,0.0,0.0,483.76097965157567,414.0,0.0,116.07378565423673,60,2,2,2,2,1,1,2,2,2,20.0,2,,2,118596,1,2,0,1,2,561.0,0.0,703.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1086.4713337157,350.0,37979.042914213125,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010900748629583457,37979.042914213125,9,5,9,9_0,9_4,9_0_1 -9434,2,59.0,0.0,2,111,300.0,80.0,0.0,0,43,0.0,0.0,414.65226827277917,380.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,3,25.0,2,,2,103044,2,1,0,1,2,,0.0,730.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1520.917294988,300.0,40790.367365248596,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009315924924072674,40790.367365248596,9,5,9,9_0,9_4,9_0_1 -9435,2,51.0,0.0,9,111,1200.0,0.0,0.0,74,43,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,131327,2,1,0,0,2,,0.0,,42,3.0,0.0,4.0,4.0,2.5,2,2,892.937689578059,1200.0,146120.9835429013,5,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008212372863256006,58448.393417160514,10,5,10,10_0,10_4,10_0_0 -9436,2,41.0,0.0,9,111,512.0,0.0,0.0,0,42,0.0,0.0,707.6732045188764,512.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,2008.0,6,130027,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1461.01177759059,512.0,34309.34665816885,0,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01492304721221195,34309.34665816885,9,5,9,9_0,9_4,9_0_0 -9437,2,38.0,0.0,1,111,286.0,1246.0,0.0,68,46,0.0,0.0,395.3018290867161,1532.0,0.0,2259.8115144559215,50,2,2,2,2,2,1,2,2,3,60.0,2,,1,123086,1,2,0,0,1,,0.0,609.0,43,2.0,0.0,2.0,4.0,2.1,3,2,1145.02228700078,286.0,45879.21176892456,1,1,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.033392029656395976,21847.243699487884,6,3,6,6_0,6_4,6_1_0 -9438,1,43.0,120.0,2,111,920.0,0.0,0.0,0,42,0.0,0.0,1271.600289369856,920.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,104771,2,2,0,0,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,1092.07495498049,920.0,21574.011072011228,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04264390135562461,13483.756920007017,3,2,3_1,3_0_1,3_4_1,3_0_1 -9439,2,36.0,0.0,1,111,480.0,0.0,0.0,0,38,0.0,0.0,663.4436292364467,480.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,25.0,2,,1,118237,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,728.783951684121,480.0,43029.512707578906,0,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011155134459969292,43029.512707578906,9,5,9,9_0,9_4,9_1_0 -9440,2,61.0,0.0,5,111,1350.0,0.0,0.0,78,47,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,110450,2,1,2,0,1,,450.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,793.577683064988,1350.0,40262.50380547648,5,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033529956470724355,26841.66920365099,7,4,7,7_1,7_4,7_0_0 -9441,2,30.0,0.0,9,111,300.0,0.0,0.0,0,53,0.0,0.0,414.65226827277917,300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,8,2006.0,6,103238,2,1,0,1,1,569.0,0.0,310.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1468.06067591424,300.0,16027.439015324042,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01871789995352134,16027.439015324042,4,2,4_0,4_0_0,4_4_0,4_0_0 -9442,0,58.0,0.0,2,111,800.0,1200.0,0.0,52,52,0.0,0.0,1105.7393820607444,2010.0,17.203270041901916,2176.3834810169387,41,2,2,2,1,2,2,2,2,0,,8,,2,133298,2,3,0,0,1,,0.0,,43,2.0,1.0,3.0,4.0,2.3,2,2,1166.96382084918,800.0,45374.629952728996,1,1,5,0,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.04429788192419432,19728.09997944739,5,3,5,5_0,5_4,5_0_1 -9443,2,39.0,0.0,2,111,850.0,1100.0,0.0,38,47,0.0,124.22070057833493,1174.848093439541,2070.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,2.0,1,,2,117956,2,2,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,823.766209232143,850.0,50797.01665391509,4,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04075042465787129,24189.055549483375,7,4,7,7_1,7_4,7_0_1 -9445,2,67.0,0.0,2,111,300.0,400.0,0.0,86,78,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,60,2,1,2,2,2,2,2,1,0,,8,,2,109324,2,3,0,1,1,,0.0,489.0,41,0.0,4.0,3.0,3.0,2.0,2,2,273.974785569025,300.0,40063.51770061161,6,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017472255063346917,20031.758850305803,5,3,5,5_0,5_4,5_0_1 -9446,1,47.0,138.0,2,111,400.0,76.0,0.0,0,46,0.0,0.0,552.8696910303722,615.0,0.0,137.83762046440611,41,0,0,0,0,0,0,0,0,3,10.0,2,,2,117839,2,2,0,1,1,672.0,0.0,255.0,32,1.0,0.0,2.0,2.0,1.5,2,2,291.643840133085,400.0,21166.572737961716,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02905524704512096,14111.048491974478,3,2,3_1,3_0_1,3_4_1,3_0_1 -9447,2,46.0,0.0,2,111,396.0,0.0,0.0,0,68,0.0,0.0,547.3409941200684,396.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,106129,2,1,0,1,1,560.0,0.0,306.0,12,1.0,0.0,2.0,1.0,1.0,2,2,330.70231936883,396.0,4910.892408916119,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08063707510289377,4910.892408916119,1,1,1_0,1_0_0,1_4_0,1_0_1 -9448,2,47.0,0.0,7,111,110.0,0.0,0.0,85,21,0.0,0.0,152.03916503335236,110.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,123713,2,1,0,1,1,,0.0,380.0,42,1.0,0.0,3.0,5.0,2.4,2,2,717.408155093261,110.0,8968.731441808639,6,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01226483374083697,3736.971434086933,1,1,1_0,1_0_0,1_4_0,1_0_0 -9449,2,76.0,0.0,2,111,450.0,138.0,0.0,85,78,0.0,0.0,621.9784024091688,588.0,0.0,250.28410031694796,70,0,0,0,0,0,0,0,0,0,,2,,2,104297,2,1,0,1,1,504.0,0.0,695.0,41,0.0,0.0,5.0,5.0,3.0,1,1,738.072537624559,450.0,18891.59689812618,6,5,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031124949530249746,6297.1989660420595,1,1,1_0,1_0_0,1_4_0,1_0_1 -9450,2,81.0,0.0,2,111,480.0,0.0,0.0,86,74,0.0,0.0,663.4436292364467,480.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,111714,2,1,0,1,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,3,2,790.017091278072,480.0,18344.297392821947,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026166169775890254,12229.531595214632,2,1,2_0,2_0_0,2_4_0,2_0_1 -9451,2,54.0,0.0,2,111,600.0,0.0,0.0,0,67,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,108888,2,1,0,1,1,295.0,0.0,266.0,22,3.0,0.0,2.0,3.0,2.0,2,2,374.351970617706,600.0,17890.82230110977,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033536748054491715,8945.411150554884,1,1,1_0,1_0_0,1_4_0,1_0_1 -9452,2,54.0,0.0,2,111,480.0,490.0,0.0,0,81,0.0,0.0,663.4436292364467,970.0,0.0,888.68992141525,71,0,0,0,0,0,0,0,0,0,,2,,2,115639,2,1,0,1,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,3,2,367.612301341018,480.0,12666.285122892494,0,4,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07658125413953173,12666.285122892494,2,1,2_0,2_0_0,2_4_0,2_0_1 -9453,2,77.0,0.0,2,111,500.0,300.0,0.0,0,86,0.0,0.0,691.0871137879653,800.0,0.0,544.0958702542347,43,0,0,0,0,0,0,0,0,0,,2,,2,128450,2,1,0,1,1,,0.0,380.0,21,1.0,0.0,5.0,2.0,1.5,2,2,370.000669882222,500.0,13826.19930811212,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05786116503691823,9217.46620540808,1,1,1_0,1_0_0,1_4_0,1_0_1 -9454,2,49.0,0.0,2,111,300.0,600.0,0.0,81,37,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,41,0,0,0,0,0,0,0,0,2,60.0,2,,2,126939,2,2,0,1,1,,0.0,400.0,43,2.0,0.0,3.0,5.0,2.4,2,2,156.682519439869,300.0,25279.496147524093,4,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03560197540124419,10533.123394801705,2,1,2_0,2_0_0,2_4_0,2_0_1 -9455,2,54.0,0.0,2,111,150.0,90.0,0.0,0,54,0.0,0.0,207.32613413638958,240.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,104052,2,1,0,1,1,,0.0,333.0,12,1.0,0.0,2.0,1.0,1.0,4,3,330.70231936883,150.0,18970.85962435276,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012650981808537218,18970.85962435276,5,3,5,5_0,5_4,5_0_1 -9456,2,73.0,0.0,2,111,570.0,156.0,0.0,78,86,0.0,0.0,787.8393097182804,726.0,0.0,282.929852532202,60,0,0,0,0,0,0,0,0,0,,2,,2,115515,2,1,0,1,1,,0.0,450.0,41,0.0,0.0,3.0,2.0,1.5,3,3,278.010279457254,570.0,33759.65334961726,5,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021504960151145353,22506.43556641151,6,3,6,6_0,6_4,6_0_1 -9457,2,42.0,0.0,2,111,400.0,350.0,0.0,52,52,0.0,0.0,552.8696910303722,750.0,0.0,634.7785152966071,41,0,0,0,0,0,0,0,0,2,5.0,2,,2,101061,2,1,0,1,1,,0.0,504.0,43,2.0,0.0,4.0,5.0,2.4,2,2,165.480073644075,400.0,40990.82234541516,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018296778573506412,17079.509310589652,4,2,4_0,4_0_0,4_4_0,4_0_1 -9458,2,51.0,0.0,9,111,60.0,0.0,0.0,0,56,0.0,0.0,82.93045365455583,60.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,121596,2,1,2,0,1,,62.0,62.0,12,1.0,0.0,1.0,1.0,1.0,1,1,353.92600780737,60.0,5156.287900306788,0,4,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011636278105501077,5156.287900306788,1,1,1_0,1_1_0,1_4_0,1_0_0 -9459,2,63.0,0.0,8,111,950.0,0.0,0.0,0,43,0.0,0.0,1313.065516197134,950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,113315,2,1,0,1,1,,700.0,536.0,32,2.0,4.0,2.0,3.0,2.0,2,2,338.51101432364,950.0,12440.333337868215,0,4,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0763645132488703,6220.166668934107,1,1,1_0,1_0_0,1_4_0,1_0_0 -9460,2,56.0,0.0,7,111,569.0,650.0,0.0,52,52,0.0,0.0,786.4571354907044,1219.0,0.0,1178.8743855508417,31,0,0,0,0,0,0,0,0,3,25.0,2,,5,108117,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,285.171035903734,569.0,51044.11254226262,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023881304606691193,25522.05627113131,7,4,7,7_0,7_4,7_0_0 -9461,2,45.0,0.0,7,111,720.0,840.0,0.0,0,47,0.0,0.0,995.16544385467,1560.0,0.0,1523.468436711857,31,0,0,0,0,0,0,0,0,3,60.0,2,,5,122972,2,1,0,1,1,,0.0,520.0,32,2.0,0.0,3.0,2.0,1.5,2,2,315.803742035041,720.0,30002.11035038653,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0519963423166298,20001.406900257687,5,3,5,5_0,5_4,5_0_0 -9462,2,53.0,0.0,2,111,480.0,170.0,0.0,0,52,0.0,0.0,663.4436292364467,650.0,0.0,308.32099314406634,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,127833,2,1,0,1,1,,93.0,634.0,12,1.0,3.0,3.0,1.0,1.0,3,3,310.962469518845,480.0,32542.731086606986,0,1,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019973738475425887,32542.731086606986,8,4,8,8_0,8_4,8_0_1 -9463,2,66.0,0.0,2,111,300.0,52.0,0.0,0,77,0.0,0.0,414.65226827277917,352.0,0.0,94.30995084406734,71,0,0,0,0,0,0,0,0,0,,2,,2,111280,2,1,0,1,1,,0.0,520.0,11,0.0,0.0,3.0,1.0,1.0,3,3,314.729068816318,300.0,20952.892180732797,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016799590097813854,20952.892180732797,5,3,5,5_0,5_4,5_0_1 -9464,2,36.0,0.0,2,111,384.0,240.0,0.0,0,37,0.0,0.0,530.7549033891573,624.0,0.0,435.27669620338776,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,105085,2,1,0,1,1,,0.0,460.0,12,1.0,0.0,2.0,1.0,1.0,1,1,332.427899772686,384.0,41758.91579741,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014942916694180602,41758.91579741,9,5,9,9_0,9_4,9_0_1 -9465,2,58.0,0.0,2,111,1200.0,0.0,0.0,0,35,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,121165,2,2,0,1,2,,0.0,,12,1.0,1.0,5.0,1.0,1.0,2,1,1045.07706590339,1200.0,77610.484175318,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01546182854998383,77610.484175318,10,5,10,10_0,10_4,10_0_1 -9466,2,25.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,156.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,101376,1,2,0,1,2,291.0,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1605.00388960043,0.0,21354.26608099998,0,1,2,3,23.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007305331843682581,21354.26608099998,6,3,6,6_0,6_4,6_0_1 -9467,1,53.0,307.0,2,111,140.0,0.0,0.0,0,54,0.0,0.0,193.50439186063028,166.0,0.0,0.0,10,2,2,2,2,2,2,2,1,0,,2,,2,130136,1,1,0,1,2,300.0,0.0,403.0,12,1.0,0.0,1.0,1.0,1.0,4,2,1285.96669442676,140.0,5354.5201113270605,0,4,2,3,16.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03100184452549543,5354.5201113270605,1,1,1_1,1_0_1,1_4_1,1_0_1 -9468,2,28.0,0.0,2,111,312.0,0.0,0.0,0,37,0.0,0.0,431.23835900369033,312.0,0.0,0.0,12,2,2,2,1,2,2,2,2,3,15.0,2,,2,122363,1,1,0,1,2,300.0,0.0,704.0,12,1.0,0.0,1.0,1.0,1.0,4,4,1285.96669442676,312.0,36579.325395912165,0,1,2,3,21.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.008529408255157894,36579.325395912165,9,5,9,9_0,9_4,9_0_1 -9469,1,64.0,265.0,5,111,220.0,0.0,0.0,0,68,0.0,0.0,304.0783300667047,220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,121058,2,1,0,1,2,,0.0,300.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1285.96669442676,220.0,872.4827366441649,0,1,3,4,12.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.2521539862739144,872.4827366441649,1,1,1_1,1_0_1,1_4_1,1_0_0 -9470,2,82.0,0.0,1,111,600.0,70.0,0.0,85,74,0.0,0.0,829.3045365455583,670.0,0.0,126.95570305932142,43,0,0,0,0,0,0,0,0,0,,2,,1,120071,2,2,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,680.514894951248,600.0,97905.97935455077,6,5,0,1,144.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00684330011728602,65270.65290303385,10,5,10,10_0,10_4,10_1_0 -9471,2,77.0,0.0,1,111,260.0,0.0,0.0,0,75,0.0,0.0,359.36529916974195,260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,111621,2,1,0,1,2,,0.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,766.396323882913,260.0,52938.012584287935,0,5,0,1,154.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004911404627932109,52938.012584287935,10,5,10,10_0,10_4,10_1_0 -9472,2,55.0,0.0,1,111,400.0,0.0,0.0,0,22,0.0,0.0,552.8696910303722,505.0,0.0,0.0,31,2,2,2,1,1,2,2,2,0,,2,,1,126416,2,3,0,1,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,766.396323882913,400.0,1064.8885903909718,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.4742280127300361,1064.8885903909718,1,1,1_0,1_0_0,1_4_0,1_1_0 -9473,2,25.0,0.0,1,111,500.0,0.0,0.0,38,38,0.0,0.0,691.0871137879653,500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,121783,2,1,0,0,1,,0.0,1210.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1108.79016864818,500.0,50204.46842389198,1,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009959272863489842,33469.645615927984,8,4,8,8_0,8_4,8_1_0 -9474,2,55.0,0.0,1,111,1800.0,300.0,0.0,43,37,0.0,0.0,2487.913609636675,3298.0,0.0,544.0958702542347,31,0,0,0,0,0,0,0,0,2,45.0,2,,1,131689,2,1,0,1,2,,0.0,,43,2.0,0.0,6.0,5.0,3.0,2,2,503.05285400563,1800.0,222639.90907935705,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014813157324927183,74213.30302645235,10,5,10,10_0,10_4,10_1_0 -9475,2,84.0,0.0,1,111,348.0,700.0,0.0,0,74,0.0,0.0,480.99663119642383,1048.0,0.0,1269.5570305932142,31,2,2,2,1,2,2,2,2,0,,2,,1,105391,2,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,866.445015735814,348.0,39171.41459363942,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.026754203565836306,39171.41459363942,9,5,9,9_0,9_4,9_1_0 -9476,2,85.0,0.0,5,111,440.0,0.0,0.0,0,86,0.0,0.0,608.1566601334094,440.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,108991,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,4,3,961.218261834576,440.0,96133.93407446971,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004576947820102276,96133.93407446971,10,5,10,10_0,10_4,10_0_0 -9477,2,85.0,0.0,5,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,405.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,122108,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,836.575524355202,0.0,65955.6523898176,0,5,0,1,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00614048963698106,65955.6523898176,10,5,10,10_0,10_4,10_0_0 -9478,0,27.0,0.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,640.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,120659,2,1,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,837.056433556746,0.0,7692.5410182689275,0,7,5,0,42.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08319747642294936,7692.5410182689275,1,1,1_0,1_0_0,1_4_0,1_1_0 -9479,2,51.0,0.0,2,111,300.0,0.0,0.0,45,45,0.0,0.0,414.65226827277917,300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,119715,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,857.331576673152,300.0,84033.54783148007,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0035700027874774084,56022.365220986714,10,5,10,10_0,10_4,10_0_1 -9480,2,57.0,0.0,2,111,500.0,0.0,0.0,0,47,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,2,2,2,1,2,2,2,2,3,45.0,2,,2,108717,1,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1147.60451091333,500.0,53515.09943018171,0,1,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009343157451334334,53515.09943018171,10,5,10,10_0,10_4,10_0_1 -9481,2,44.0,0.0,1,111,500.0,0.0,0.0,31,48,0.0,0.0,691.0871137879653,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,20.0,2,,1,100210,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,646.108247060559,500.0,248322.60124346946,1,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.002013509835577841,118248.85773498545,10,5,10,10_0,10_4,10_1_0 -9482,2,64.0,0.0,2,111,387.0,0.0,0.0,38,38,0.0,0.0,534.9014260718851,484.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,2,,2,109987,1,2,0,1,1,1048.0,0.0,1406.0,43,2.0,0.0,3.0,4.0,2.3,1,1,1214.30245806441,387.0,147755.21074122514,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003275688197877947,64241.39597444572,10,5,10,10_0,10_4,10_0_1 -9483,2,30.0,0.0,1,111,400.0,0.0,0.0,46,31,0.0,0.0,552.8696910303722,490.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,1,127148,2,1,0,1,2,492.0,0.0,1340.0,43,2.0,0.0,3.0,4.0,2.1,4,2,867.440205654246,400.0,89077.84966671461,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005500806337752184,42418.02365081648,9,5,9,9_0,9_4,9_1_0 -9484,2,52.0,0.0,2,111,0.0,0.0,600.0,0,52,0.0,0.0,306.548000902515,1631.0,0.0,685.9474647915789,60,2,2,1,1,2,2,2,2,0,,2,,2,133259,2,2,0,1,1,528.0,0.0,418.0,32,1.0,3.0,3.0,2.0,1.5,1,1,913.633254354607,0.0,20657.439783329708,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0789546050772563,13771.626522219805,3,2,3_0,3_0_0,3_4_0,3_0_1 -9485,2,78.0,0.0,2,111,60.0,0.0,0.0,0,75,0.0,0.0,82.93045365455583,60.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,115287,1,3,0,1,2,,0.0,495.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1285.96669442676,60.0,25203.638574192984,0,5,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0023806086499524874,25203.638574192984,7,4,7,7_0,7_4,7_0_1 -9486,2,80.0,0.0,5,111,370.0,0.0,0.0,0,74,0.0,0.0,511.40446420309434,370.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,112705,2,1,0,1,2,802.0,0.0,1141.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1183.01117919966,370.0,48274.75671301148,0,5,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007664461204840708,48274.75671301148,10,5,10,10_0,10_4,10_0_0 -9487,0,38.0,0.0,6,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,460.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,60.0,2,,4,112076,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1290.93788290367,0.0,57957.641495457414,1,1,5,0,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007936830901513715,32198.689719698563,8,4,8,8_0,8_4,8_0_0 -9488,1,29.0,60.0,5,111,480.0,0.0,0.0,46,47,1.4935848770180007,0.0,663.4436292364467,481.0,0.0,0.0,31,2,1,2,2,2,2,2,1,2,10.0,2,,3,124387,2,1,0,1,1,,143.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,774.28444111231,480.0,54368.84707970851,1,1,1,2,53.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.008846978110365677,30204.915044282505,8,4,8,8_0,8_4,8_0_0 -9489,0,60.0,0.0,2,111,0.0,0.0,0.0,56,90,0.0,0.0,0.0,315.0,0.0,0.0,20,2,2,2,2,2,1,2,2,1,20.0,2,,2,120889,1,3,0,1,2,,0.0,,43,2.0,4.0,1.0,2.0,1.5,2,2,1235.92885322071,0.0,55853.73959351941,1,1,5,0,20.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005639729806677954,37235.82639567961,9,5,9,9_0,9_4,9_0_1 -9490,2,50.0,0.0,2,111,360.0,0.0,0.0,0,37,0.0,0.0,497.582721927335,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,15.0,2,,2,129739,2,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1018.41409396746,360.0,127419.98137608316,0,1,1,2,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00282530256331973,127419.98137608316,10,5,10,10_0,10_4,10_0_1 -9491,2,58.0,0.0,6,111,1300.0,0.0,0.0,34,90,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,25.0,2,,4,111157,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.5,2,2,687.351268360292,1300.0,169080.4953923694,1,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,1,0,0.007688645558928667,67632.19815694776,10,5,10,10_0,10_4,10_0_0 -9492,2,53.0,0.0,1,111,700.0,549.0,0.0,35,34,0.0,0.0,967.5219593031513,1249.0,0.0,995.6954425652494,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,115959,2,2,2,0,2,,1380.0,,43,2.0,0.0,10.0,5.0,3.0,5,5,552.924409161768,700.0,317264.5400860564,1,1,0,1,280.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.003936777805868929,105754.84669535213,10,5,10,10_1,10_4,10_1_0 -9493,0,25.0,0.0,1,111,0.0,0.0,600.0,56,47,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,50,2,2,1,2,2,2,2,1,2,25.0,2,,1,104363,2,3,0,0,1,,0.0,,43,2.0,0.0,1.0,3.0,1.8,2,2,1152.76182413944,0.0,51642.22716481196,1,1,5,0,21.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.011618398991297353,28690.12620267331,8,4,8,8_0,8_4,8_1_0 -9494,2,79.0,0.0,2,111,620.0,1200.0,0.0,74,74,0.0,0.0,856.9480210970769,1820.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,0,,2,,2,129094,2,1,0,1,2,,430.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,825.402003823219,620.0,114600.35793649306,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015881276749664004,76400.2386243287,10,5,10,10_0,10_4,10_0_1 -9495,2,43.0,0.0,9,111,1800.0,0.0,0.0,38,38,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,2005.0,6,112601,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,1039.80215287266,1800.0,84867.73326677304,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021209474210202882,35361.5555278221,9,5,9,9_0,9_4,9_0_0 -9496,2,49.0,0.0,7,111,430.0,0.0,0.0,0,90,0.0,0.0,594.3349178576501,430.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,128728,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1003.43567703214,430.0,49382.912439695705,0,1,0,1,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008707465371247546,49382.912439695705,10,5,10,10_0,10_4,10_0_0 -9497,2,45.0,0.0,9,111,1560.0,0.0,0.0,37,37,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,2,2007.0,6,122842,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1277.43276697404,1560.0,96225.5256586821,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01621191455511936,53458.6253659345,10,5,10,10_0,10_4,10_0_0 -9498,2,49.0,0.0,2,111,360.0,360.0,0.0,85,43,0.0,0.0,497.582721927335,720.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,2,,2,103467,2,1,0,1,1,57.0,0.0,302.0,42,1.0,0.0,3.0,3.0,1.8,2,2,974.575409553666,360.0,18655.175862567856,6,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03859518694994994,10363.986590315475,2,1,2_0,2_0_0,2_4_0,2_0_1 -9499,2,75.0,0.0,7,111,430.0,0.0,0.0,0,72,0.0,0.0,594.3349178576501,430.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,129072,2,3,0,1,1,822.0,204.0,516.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1106.14695968361,430.0,19781.15598656074,0,5,2,3,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02173786002658999,19781.15598656074,5,3,5,5_0,5_4,5_0_0 -9500,2,34.0,0.0,5,111,641.0,0.0,0.0,0,62,0.0,0.0,885.9736798761714,641.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,90.0,2,,3,116442,1,1,0,0,1,,0.0,396.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1191.76611690633,641.0,27353.035486619192,0,1,2,3,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.023434327802980777,27353.035486619192,7,4,7,7_0,7_4,7_0_0 -9501,2,66.0,0.0,2,111,0.0,0.0,350.0,0,75,0.0,0.0,178.81966719313377,350.0,0.0,400.136021128421,44,0,0,0,0,0,0,0,0,0,,2,,2,111562,2,1,0,1,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,3,3,1205.49442238972,0.0,63750.207956189784,0,5,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005490178169152419,63750.207956189784,10,5,10,10_0,10_4,10_0_1 -9502,2,56.0,0.0,2,111,422.0,0.0,0.0,0,52,0.0,326.0793390181292,583.2775240370427,737.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,2,,2,124669,2,1,0,1,2,315.0,1128.0,598.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1176.26898059081,422.0,22878.949339054438,0,1,2,3,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03221301769928476,22878.949339054438,6,3,6,6_0,6_4,6_0_1 -9503,2,56.0,0.0,2,111,360.0,0.0,0.0,52,48,0.0,0.0,497.582721927335,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,129875,2,2,0,1,1,,0.0,,43,2.0,2.0,2.0,2.0,1.5,3,3,785.898016406073,360.0,55888.594038009,1,1,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006441385871241802,37259.062692006,9,5,9,9_0,9_4,9_0_1 -9504,2,57.0,0.0,2,111,300.0,0.0,0.0,0,54,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,131985,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1020.09497404801,300.0,23920.721860535832,0,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012541427543411096,23920.721860535832,6,3,6,6_0,6_4,6_0_1 -9505,2,36.0,0.0,6,111,0.0,0.0,0.0,43,42,0.0,0.0,0.0,1640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,115056,2,1,0,0,1,,102.0,410.0,43,2.0,0.0,2.0,2.0,1.5,1,1,821.834157582563,0.0,23551.98328717387,4,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06963320158659948,15701.322191449246,3,2,3_0,3_0_0,3_4_0,3_0_0 -9506,2,64.0,0.0,7,111,900.0,0.0,0.0,38,43,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,90.0,2,,5,118456,2,1,0,0,1,,0.0,600.0,43,2.0,4.0,1.0,2.0,1.5,1,1,1284.45357589157,900.0,27680.167474552807,4,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032514254143418624,18453.444983035206,4,2,4_0,4_0_0,4_4_0,4_0_0 -9507,2,58.0,0.0,7,111,0.0,0.0,0.0,38,68,0.0,434.77245202417225,0.0,1206.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,131736,2,1,1,0,1,,325.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,792.722781649,0.0,67076.79244684287,1,1,0,1,134.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01797939281243558,44717.86163122858,10,5,10,10_1,10_4,10_0_0 -9508,2,56.0,0.0,2,111,360.0,380.0,0.0,75,22,0.0,0.0,497.582721927335,740.0,0.0,689.1881023220305,42,0,0,0,0,0,0,0,0,2,50.0,2,,2,129311,2,2,0,1,1,1330.0,0.0,400.0,42,1.0,1.0,5.0,3.0,2.0,2,2,1029.5678006078,360.0,150593.19076436403,5,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004913900796204603,75296.59538218201,10,5,10,10_0,10_4,10_0_1 -9509,1,71.0,200.0,2,111,406.0,922.0,0.0,0,86,0.0,0.0,561.1627363958278,1328.0,0.0,1672.1879745813478,20,0,0,0,0,0,0,0,0,0,,2,,2,104281,2,2,0,0,1,,0.0,271.0,11,0.0,1.0,3.0,1.0,1.0,3,3,1280.00801066556,406.0,5044.798067361944,0,5,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2632414582838686,5044.798067361944,1,1,1_1,1_0_1,1_4_1,1_0_1 -9510,2,60.0,0.0,2,111,1200.0,400.0,0.0,63,52,0.0,0.0,1658.6090730911167,1600.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,124598,2,2,0,0,1,,0.0,373.0,43,2.0,3.0,3.0,2.0,1.5,2,2,1136.57188816045,1200.0,42941.54458313877,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03725995456223642,28627.69638875918,8,4,8,8_0,8_4,8_0_1 -9511,2,40.0,0.0,2,111,380.0,280.0,0.0,0,52,59.74339508072003,0.0,525.2262064788536,700.0,0.0,507.8228122372857,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,122399,2,2,0,0,1,,0.0,286.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1351.9894310306,380.0,34577.7856994755,0,1,2,3,50.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0202442113003962,34577.7856994755,9,5,9,9_0,9_4,9_0_1 -9512,1,52.0,150.0,2,111,1200.0,0.0,0.0,0,85,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114772,2,1,0,0,1,,0.0,340.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1502.88618198526,1200.0,4907.011905423151,0,7,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2445480107096906,4907.011905423151,1,1,1_1,1_0_1,1_4_1,1_0_1 -9513,2,31.0,0.0,2,111,610.0,260.0,0.0,0,81,0.0,0.0,843.1262788213177,870.0,0.0,471.5497542203367,50,0,0,0,0,0,0,0,0,0,,2,,2,132034,2,1,0,0,1,,0.0,323.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1351.9894310306,610.0,36008.83545951193,0,4,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02416073691075685,36008.83545951193,9,5,9,9_0,9_4,9_0_1 -9514,2,32.0,0.0,6,111,385.0,600.0,0.0,0,38,0.0,0.0,532.1370776167332,985.0,0.0,1088.1917405084694,60,0,0,0,0,0,0,0,0,1,15.0,2,,4,127872,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,838.176932895086,385.0,48833.90366643758,0,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020170412890357727,48833.90366643758,10,5,10,10_0,10_4,10_0_0 -9515,2,79.0,0.0,2,111,374.0,83.0,0.0,0,74,0.0,0.0,516.933161113398,457.0,0.0,150.53319077033825,70,0,0,0,0,0,0,0,0,0,,2,,2,101868,2,1,0,2,1,,0.0,450.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1114.02728726526,374.0,37880.77143810674,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01206416824817548,37880.77143810674,9,5,9,9_0,9_4,9_0_1 -9516,2,29.0,0.0,1,111,140.0,100.0,0.0,0,63,0.0,0.0,193.50439186063028,240.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,1,20.0,2,,1,131623,2,3,0,0,1,,0.0,280.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1070.51946840977,140.0,17285.99789954238,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01388406971901539,17285.99789954238,4,2,4_0,4_0_0,4_4_0,4_1_0 -9517,1,38.0,44.0,7,111,0.0,0.0,804.0,85,47,0.0,0.0,410.77432120937016,804.0,0.0,919.1696028207157,10,0,0,0,0,0,0,0,0,2,20.0,2,,5,132377,1,2,0,0,1,,0.0,892.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1071.75595171721,0.0,43615.61322922557,7,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01843376581167183,20769.33963296456,5,3,5,5_0,5_4,5_0_0 -9518,2,46.0,0.0,6,111,1000.0,0.0,0.0,54,64,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,4,112465,2,2,0,0,2,,0.0,961.0,43,2.0,0.0,3.0,5.0,2.8,3,3,905.504591057788,1000.0,77429.4172344238,1,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012914988071941951,27653.363298008502,7,4,7,7_0,7_4,7_0_0 -9519,2,84.0,0.0,6,111,1250.0,0.0,0.0,0,74,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,115357,1,2,0,0,2,,0.0,713.0,11,0.0,2.0,3.0,1.0,1.0,3,2,1198.75659626671,1250.0,32348.637056817668,0,5,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.038641504363985404,32348.637056817668,8,4,8,8_0,8_4,8_0_0 -9520,2,44.0,0.0,1,111,568.8,83.0,0.0,0,42,0.0,0.0,786.1807006451893,652.0,0.0,150.53319077033825,42,2,1,2,2,1,2,2,2,1,25.0,2,,1,111175,1,1,0,2,1,726.0,0.0,1007.0,32,1.0,1.0,3.0,2.0,1.5,1,1,965.443366367594,568.8,37505.059859776826,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01738432100729034,25003.37323985122,7,4,7,7_0,7_4,7_1_0 -9521,2,74.0,0.0,1,111,240.0,160.0,0.0,86,78,2688.452778632401,0.0,331.72181461822333,2200.0,0.0,290.18446413559184,50,0,0,0,0,0,0,0,0,0,,1,,1,105934,2,2,2,0,1,,150.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,673.508969123488,240.0,43747.989692628056,6,5,0,1,75.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05028802501456931,29165.326461752036,8,4,8,8_1,8_4,8_1_0 -9522,2,54.0,0.0,5,111,1000.0,0.0,0.0,75,53,0.0,0.0,1382.1742275759307,2000.0,1720.3270041901917,0.0,50,0,0,0,0,0,0,0,0,1,60.0,2,,3,132725,1,1,0,0,1,1096.0,650.0,834.0,42,1.0,2.0,6.0,4.0,2.5,3,2,1034.8385617906,1000.0,47490.087602069456,6,1,2,3,123.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04211405160501003,18996.03504082778,5,3,5,5_0,5_4,5_0_0 -9523,2,37.0,0.0,2,111,546.0,1581.0,0.0,48,38,0.0,0.0,754.6671282564581,2127.0,0.0,2867.3852362398165,31,1,2,2,2,2,2,2,1,2,20.0,2,,2,129617,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,3,2,706.622685891401,546.0,124876.22876444121,1,1,1,2,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01703286543039541,59464.8708402101,10,5,10,10_0,10_4,10_0_1 -9524,2,30.0,0.0,2,111,295.0,0.0,0.0,0,37,0.0,0.0,407.7413971348995,402.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,120181,2,2,0,1,2,167.0,0.0,612.0,12,1.0,0.0,1.0,1.0,1.0,5,3,1286.64716049251,295.0,43447.72109364692,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00925249909272645,43447.72109364692,10,5,10,10_0,10_4,10_0_1 -9525,2,35.0,0.0,6,111,600.0,2000.0,0.0,37,35,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,71,1,2,2,2,1,2,2,2,3,20.0,2,,4,101673,1,1,0,1,2,,590.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,706.622685891401,600.0,84172.89203271696,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.030888804426363443,40082.32953938903,9,5,9,9_0,9_4,9_0_0 -9526,2,39.0,0.0,8,111,1500.0,0.0,0.0,46,38,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,1999.0,6,117717,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,878.289813036144,1500.0,73616.94284482196,4,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020375744251725694,40898.30158045664,9,5,9,9_0,9_4,9_0_0 -9527,2,34.0,0.0,6,111,4322.4,0.0,0.0,37,31,0.0,0.0,5974.309881274202,4425.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,4,102553,1,1,0,4,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,775.659730936083,4322.4,101269.86712842123,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.043695129908570114,67513.24475228082,10,5,10,10_0,10_4,10_0_0 -9528,2,46.0,0.0,6,111,360.0,0.0,0.0,0,31,597.4339508072003,0.0,497.582721927335,760.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,119536,1,3,0,1,1,800.0,0.0,1141.0,32,1.0,0.0,2.0,2.0,1.5,2,2,818.759977926715,360.0,19550.609735138587,0,4,2,3,54.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03887346790182412,13033.739823425725,2,1,2_0,2_0_0,2_4_0,2_0_0 -9529,2,74.0,0.0,6,111,1480.0,0.0,0.0,0,75,0.0,0.0,2045.6178568123773,1480.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,118396,2,1,0,0,1,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1016.48851041825,1480.0,30930.106279303393,0,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04784981941657048,30930.106279303393,8,4,8,8_0,8_4,8_0_0 -9530,2,49.0,0.0,6,111,600.0,0.0,0.0,0,38,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,119810,2,1,1,0,1,,0.0,,32,2.0,0.0,6.0,5.0,3.0,4,3,616.893205051346,600.0,124137.0,0,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004833369583605211,41379.0,9,5,9,9_1,9_4,9_0_0 -9531,2,52.0,0.0,2,111,2185.0,0.0,0.0,37,23,0.0,0.0,3020.0506872534083,2185.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,116985,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,5.0,3.0,3,3,748.263748439641,2185.0,104009.9288857718,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021007609786943143,34669.97629525727,9,5,9,9_1,9_4,9_0_1 -9532,2,47.0,0.0,1,111,700.0,1480.0,0.0,56,37,0.0,0.0,967.5219593031513,2180.0,0.0,2684.2062932542244,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,101237,2,1,1,0,1,,700.0,,43,2.0,1.0,6.0,4.0,2.1,1,1,870.686578154515,700.0,97086.39764368649,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022454226883571727,46231.61792556499,10,5,10,10_1,10_4,10_1_0 -9533,2,32.0,0.0,2,111,600.0,600.0,0.0,85,42,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,123176,2,1,0,0,1,,396.0,,42,1.0,0.0,3.0,4.0,2.1,3,3,645.556157168846,600.0,73675.89715254254,6,1,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01628755191830858,35083.760548829785,9,5,9,9_0,9_4,9_0_1 -9534,0,45.0,0.0,5,111,400.0,2200.0,0.0,42,37,0.0,0.0,552.8696910303722,2600.0,0.0,3990.0363818643877,30,0,0,0,0,0,0,0,0,2,45.0,1,,3,122285,2,2,2,0,1,,1000.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,1057.52619836972,400.0,111601.10922547153,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023297259481060633,48522.221402378935,10,5,10,10_1,10_4,10_0_0 -9535,2,41.0,0.0,8,111,340.0,830.0,0.0,52,53,0.0,0.0,469.9392373758164,1170.0,0.0,1505.3319077033825,70,0,0,0,0,0,0,0,0,1,20.0,2,2003.0,6,107978,2,1,0,0,1,,0.0,830.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1126.04054489521,340.0,53478.8719344634,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021877798795640203,25466.12949260162,7,4,7,7_0,7_4,7_0_0 -9536,2,85.0,0.0,8,111,1700.0,0.0,0.0,86,74,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,102071,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,3,2,940.671561751662,1700.0,55042.6509662249,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030885140344042453,36695.100644149934,9,5,9,9_0,9_4,9_0_0 -9537,2,49.0,0.0,8,111,1200.0,0.0,0.0,85,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,40.0,2,2003.0,6,119793,2,1,0,0,1,,0.0,,42,1.0,0.0,5.0,3.0,2.0,2,2,950.049682218828,1200.0,101290.70037217764,5,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011847089570817244,50645.35018608882,10,5,10,10_0,10_4,10_0_0 -9538,2,45.0,0.0,2,111,156.0,800.0,0.0,0,67,0.0,0.0,215.61917950184517,956.0,0.0,1450.922320677959,42,0,0,0,0,0,0,0,0,0,,2,,2,126062,2,2,0,0,1,,0.0,445.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1385.76186470924,156.0,7230.715403187669,0,4,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13221375018833495,7230.715403187669,1,1,1_0,1_0_0,1_4_0,1_0_1 -9539,2,57.0,0.0,5,111,143.0,0.0,0.0,0,52,0.0,0.0,197.65091454335806,143.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,3,115877,2,1,0,1,1,,0.0,398.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1267.48178734874,143.0,23438.0,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006101203174332281,23438.0,6,3,6,6_0,6_4,6_0_0 -9540,2,38.0,0.0,5,111,648.0,605.0,0.0,52,42,0.0,0.0,895.648899469203,1253.0,0.0,1097.2600050127066,20,0,0,0,0,0,0,0,0,1,20.0,2,,3,100673,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,3.0,1.8,4,4,1146.13718582576,648.0,36750.70405834172,1,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03409458490947176,20417.057810189843,5,3,5,5_0,5_4,5_0_0 -9541,2,51.0,0.0,1,111,1300.0,1200.0,0.0,37,35,0.0,0.0,1796.8264958487098,2500.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,117827,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,679.343759325256,1300.0,93007.59287489028,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026879525883041506,51670.8849304946,10,5,10,10_1,10_4,10_1_0 -9542,2,48.0,0.0,7,111,1800.0,0.0,0.0,37,37,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,15.0,1,,5,127967,2,1,2,0,1,,612.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,676.623980496103,1800.0,141389.2008098203,1,1,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012730816707996978,50496.1431463644,10,5,10,10_1,10_4,10_0_0 -9543,2,44.0,0.0,2,111,504.0,90.0,0.0,47,31,0.0,0.0,696.615810698269,594.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,119107,2,3,0,1,1,937.0,0.0,643.0,43,2.0,0.0,3.0,4.0,2.1,4,4,940.85696608256,504.0,93663.95002833655,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006341820944133732,44601.880965874545,10,5,10,10_0,10_4,10_0_1 -9544,2,63.0,0.0,5,111,240.0,120.0,0.0,0,37,0.0,0.0,331.72181461822333,360.0,0.0,217.63834810169388,20,0,0,0,0,0,0,0,0,2,60.0,2,,3,120500,2,2,0,1,1,,0.0,680.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1042.65085189037,240.0,41598.65549936689,0,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008654125852829042,41598.65549936689,9,5,9,9_0,9_4,9_0_0 -9545,2,67.0,0.0,5,111,1965.0,0.0,0.0,75,74,0.0,0.0,2715.9723571867034,1965.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107885,2,1,1,0,1,,454.0,,41,0.0,0.0,4.0,2.0,1.5,3,3,834.514726015166,1965.0,119599.37076931272,5,5,0,1,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0164298523258133,79732.91384620848,10,5,10,10_1,10_4,10_0_0 -9546,2,76.0,0.0,5,111,650.0,0.0,0.0,86,74,2539.0942909306013,0.0,898.4132479243549,2350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128132,2,1,2,0,1,,400.0,,41,0.0,0.0,5.0,2.0,1.5,3,3,888.768104890183,650.0,60823.6169621601,6,5,0,1,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0386363080226221,40549.0779747734,9,5,9,9_1,9_4,9_0_0 -9547,2,84.0,0.0,2,111,400.0,650.0,0.0,0,77,0.0,0.0,552.8696910303722,1050.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,0,,2,,2,132074,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,965.426228956592,400.0,20732.46795600816,0,5,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05064520066921003,20732.46795600816,5,3,5,5_0,5_4,5_0_1 -9548,2,82.0,0.0,5,111,440.0,520.0,0.0,0,77,0.0,0.0,608.1566601334094,960.0,0.0,943.0995084406734,31,0,0,0,0,0,0,0,0,0,,1,,3,107029,2,1,1,0,1,,480.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,892.434213744117,440.0,47987.025159569894,0,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020005407645248673,47987.025159569894,10,5,10,10_1,10_4,10_0_0 -9549,2,40.0,0.0,2,111,780.0,2040.0,0.0,37,37,0.0,103.51725048194578,1078.0958975092258,2920.0,0.0,3699.851917728796,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,118668,2,1,2,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,968.293085492262,780.0,136789.20544376865,1,1,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02134671365717052,65137.71687798507,10,5,10,10_1,10_4,10_0_1 -9550,2,50.0,0.0,2,111,540.0,156.0,0.0,52,67,232.9992408148081,0.0,746.3740828910024,852.0,0.0,282.929852532202,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,113962,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,905.374952194011,540.0,54238.68982459082,1,1,0,1,65.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015708344039197623,36159.12654972722,9,5,9,9_0,9_4,9_0_1 -9551,2,34.0,0.0,7,111,300.0,480.0,0.0,37,37,0.0,0.0,414.65226827277917,780.0,0.0,870.5533924067755,41,0,0,0,0,0,0,0,0,2,45.0,2,,5,111576,2,1,0,1,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,815.849690052303,300.0,110146.99903294133,1,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007081445766549915,73431.33268862755,10,5,10,10_0,10_4,10_0_0 -9552,2,66.0,0.0,2,111,384.0,58.0,0.0,0,46,0.0,0.0,530.7549033891573,442.0,0.0,105.19186824915204,50,0,0,0,0,0,0,0,0,0,,2,,2,105087,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1019.7171010753,384.0,20142.258364591926,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02194391472889613,20142.258364591926,5,3,5,5_0,5_4,5_0_1 -9553,2,39.0,0.0,2,111,600.0,620.0,0.0,46,47,0.0,0.0,829.3045365455583,1220.0,0.0,1124.4647985254182,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,113288,2,1,0,1,1,,0.0,850.0,43,2.0,0.0,4.0,5.0,2.4,2,2,792.989075412032,600.0,21109.52440243192,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057793817460873254,8795.635167679968,1,1,1_0,1_0_0,1_4_0,1_0_1 -9554,2,64.0,0.0,1,111,1824.0,0.0,0.0,0,74,2580.9146674871054,0.0,2521.0857910984973,3552.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105998,2,1,1,0,1,,624.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,820.479307496221,1824.0,53278.895533606286,0,5,1,2,105.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06666804866027176,53278.895533606286,10,5,10,10_1,10_4,10_1_0 -9555,2,38.0,0.0,2,111,720.0,180.0,0.0,0,68,0.0,0.0,995.16544385467,900.0,0.0,326.4575221525408,60,0,0,0,0,0,0,0,0,0,,2,,2,109969,2,2,0,0,2,,150.0,540.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1599.11833954818,720.0,17536.139720080893,0,4,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05132258378218763,17536.139720080893,4,2,4_0,4_0_0,4_4_0,4_0_1 -9556,2,43.0,0.0,2,111,1400.0,2200.0,0.0,31,31,0.0,0.0,1935.0439186063027,3600.0,0.0,3990.0363818643877,71,0,0,0,0,0,0,0,0,0,,1,,2,122591,2,1,2,0,1,,720.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,928.549804287325,1400.0,50667.6393804996,1,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07105126751544553,28148.688544721997,8,4,8,8_1,8_4,8_0_1 -9557,2,82.0,0.0,2,111,292.0,0.0,0.0,77,77,2061.147130284841,0.0,403.5948744521717,1779.0,184.07498944835052,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131824,2,1,2,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,995.131836574287,292.0,59131.05077089966,5,5,0,1,55.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030085715995351543,39420.70051393311,9,5,9,9_1,9_4,9_0_1 -9558,2,46.0,0.0,1,111,473.0,1700.0,0.0,37,33,0.0,0.0,653.7684096434151,2173.0,0.0,3083.2099314406632,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,132614,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,710.87508654726,473.0,140303.97782114628,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015487800372773825,93535.98521409753,10,5,10,10_1,10_4,10_1_0 -9559,2,53.0,0.0,6,111,1200.0,0.0,0.0,38,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,,4,102721,2,1,1,0,1,,800.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,769.037619212831,1200.0,176920.5489879674,1,1,1,2,155.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006782705609180614,117947.03265864494,10,5,10,10_1,10_4,10_0_0 -9560,2,45.0,0.0,7,111,842.0,2800.0,0.0,0,33,0.0,0.0,1163.7906996189336,3642.0,0.0,5078.228122372857,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,115644,2,1,2,0,2,,513.0,,32,1.0,0.0,7.0,4.0,2.1,2,2,828.334048349359,842.0,103918.56528344454,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03504667322981425,49485.03108735454,10,5,10,10_1,10_4,10_0_0 -9561,2,94.0,0.0,7,111,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,133029,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1055.70551263121,600.0,40627.63044963234,0,5,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014768274530404706,40627.63044963234,9,5,9,9_0,9_4,9_0_0 -9562,2,88.0,0.0,7,111,600.0,0.0,0.0,0,74,0.0,0.0,829.3045365455583,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,118805,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,999.498577471613,600.0,50012.19330709803,0,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011997074319770823,50012.19330709803,10,5,10,10_0,10_4,10_0_0 -9563,2,53.0,0.0,1,111,1800.0,0.0,0.0,38,38,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,1,119094,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,705.546524523285,1800.0,111987.41268149501,1,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016073234990430625,44794.965072598,10,5,10,10_0,10_4,10_1_0 -9564,2,42.0,0.0,1,111,470.0,0.0,0.0,0,54,0.0,0.0,649.6218869606873,470.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,50.0,2,,1,127018,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,941.838144943243,470.0,15203.372104151138,0,1,0,1,29.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030914194349796312,15203.372104151138,3,2,3_0,3_0_0,3_4_0,3_1_0 -9565,2,68.0,0.0,2,111,480.0,640.0,0.0,0,77,0.0,0.0,663.4436292364467,1120.0,0.0,1160.7378565423674,50,0,0,0,0,0,0,0,0,0,,2,,2,106708,2,2,0,1,1,,0.0,402.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1385.76186470924,480.0,18641.652710825467,0,5,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060080509886851416,18641.652710825467,4,2,4_0,4_0_0,4_4_0,4_0_1 -9566,2,47.0,0.0,2,111,0.0,0.0,600.0,0,37,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,31,0,0,0,0,0,0,0,0,2,50.0,2,,2,122564,2,1,0,0,1,,153.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1018.42701651778,0.0,64829.80055348194,0,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009255003021411804,64829.80055348194,10,5,10,10_0,10_4,10_0_1 -9567,2,80.0,0.0,5,111,1200.0,0.0,0.0,0,77,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,116421,2,1,0,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1040.51104312519,1200.0,81999.4100479485,0,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014634251628131343,81999.4100479485,10,5,10,10_0,10_4,10_0_0 -9568,2,83.0,0.0,1,111,1210.0,0.0,0.0,0,75,8961.509262108004,0.0,1672.430815366876,7210.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,115164,2,1,2,0,2,,936.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,775.281272767539,1210.0,34857.21305391671,0,5,0,1,200.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20684384574428427,34857.21305391671,9,5,9,9_1,9_4,9_1_0 -9569,2,79.0,0.0,2,111,270.0,0.0,0.0,0,46,0.0,0.0,373.1870414455012,293.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128723,2,1,0,1,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,1441.65924365173,270.0,121721.92269708359,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002407125959792452,121721.92269708359,10,5,10,10_0,10_4,10_0_1 -9570,0,81.0,0.0,2,111,150.0,70.0,0.0,0,77,0.0,0.0,207.32613413638958,220.0,0.0,126.95570305932142,31,0,0,0,0,0,0,0,0,0,,2,,2,115871,2,1,0,1,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,838.481679602008,150.0,36214.63908657046,0,6,0,1,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006074891412671374,36214.63908657046,9,5,9,9_0,9_4,9_0_1 -9571,2,46.0,0.0,1,111,750.0,1200.0,0.0,0,31,0.0,0.0,1036.630670681948,1950.0,0.0,2176.3834810169387,71,2,2,2,1,1,2,2,2,2,15.0,2,,1,122482,1,3,0,0,1,,0.0,540.0,32,1.0,1.0,3.0,2.0,1.5,1,1,888.002799620312,750.0,24007.121587400194,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.08122589761129174,16004.747724933462,4,2,4_0,4_0_0,4_4_0,4_1_0 -9572,2,74.0,0.0,5,111,62.0,0.0,0.0,77,74,0.0,0.0,85.6948021097077,62.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,121630,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,855.450056445776,62.0,73766.39916994197,5,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0008404910731397542,49177.59944662798,10,5,10,10_0,10_4,10_0_0 -9573,2,67.0,0.0,2,111,180.0,40.0,0.0,74,74,0.0,0.0,248.7913609636675,220.0,0.0,72.54611603389796,70,0,0,0,0,0,0,0,0,0,,1,,2,130717,2,2,3,0,1,,532.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1155.00975311285,180.0,84710.95257317921,6,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0025970667702024564,56473.96838211947,10,5,10,10_1,10_4,10_0_1 -9574,2,51.0,0.0,2,111,498.75,1024.0,0.0,38,34,6183.441390854523,0.0,689.3593960034954,5663.0,0.0,1857.1805704677877,71,2,1,2,1,1,2,2,2,0,,2,,2,114755,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,726.982570947059,498.75,86260.83320838996,4,1,1,2,83.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06564972525038398,30807.440431567844,8,4,8,8_0,8_4,8_0_1 -9575,2,35.0,0.0,2,111,528.0,0.0,0.0,37,37,1178.4384679672025,0.0,729.7879921600913,1317.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,106152,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,1,1325.9808536265,528.0,93938.4842886108,1,1,1,2,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014019813178523624,52188.046827005994,10,5,10,10_0,10_4,10_0_1 -9577,2,50.0,0.0,2,111,300.0,240.0,0.0,0,85,1254.6112966951205,0.0,414.65226827277917,1380.0,0.0,435.27669620338776,30,1,2,2,2,1,2,2,2,0,,2,,2,108344,2,3,0,1,1,840.0,0.0,675.0,31,0.0,1.0,4.0,2.0,1.5,1,1,293.773563284645,300.0,14068.342658448428,0,7,2,3,64.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.09809257803166117,9378.895105632286,1,1,1_0,1_0_0,1_4_0,1_0_1 -9578,2,49.0,0.0,2,111,40.0,10.0,0.0,38,38,0.0,0.0,55.28696910303722,50.0,0.0,18.13652900847449,50,2,2,2,1,2,2,2,2,2,60.0,2,,2,119206,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,893.123133647272,40.0,144684.7350706936,1,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.0003455789581089517,80380.40837260755,10,5,10,10_0,10_4,10_0_1 -9579,0,52.0,0.0,2,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,572.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,8.0,1,,2,113211,2,1,2,1,1,,0.0,,43,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,683.972423984275,0.0,75814.7424384591,1,1,5,0,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007544706762860905,24456.368528535197,7,4,7,7_1,7_4,7_0_1 -9580,2,32.0,0.0,1,111,310.0,695.0,0.0,42,37,0.0,0.0,428.47401054853844,1005.0,0.0,1260.488766088977,50,0,0,0,0,0,0,0,0,3,40.0,1,,1,113318,2,3,3,0,1,,240.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,668.363098637482,310.0,67809.71110195358,1,1,1,2,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014820886030453036,37672.061723307546,9,5,9,9_1,9_4,9_1_0 -9581,2,44.0,0.0,1,111,867.24,0.0,0.0,23,23,3696.622570619552,0.0,1198.67677712295,3342.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127297,2,1,1,0,1,,416.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,965.83552285442,867.24,79530.18929816276,1,1,0,1,150.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04202177851571144,37871.518713410835,9,5,9,9_1,9_4,9_1_0 -9582,2,45.0,0.0,2,111,1200.0,0.0,0.0,0,48,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,129424,2,3,0,0,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1264.26487302807,1200.0,34086.98013781217,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03520405724263201,34086.98013781217,9,5,9,9_0,9_4,9_0_1 -9583,2,61.0,0.0,1,111,42.0,1500.0,0.0,37,23,0.0,0.0,58.05131755818908,1542.0,0.0,2720.4793512711735,44,0,0,0,0,0,0,0,0,2,45.0,1,,1,118291,2,1,2,0,1,,196.0,,43,2.0,2.0,6.0,5.0,2.8,5,4,582.922207257563,42.0,186643.2621556517,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008261750154763393,66658.30791273275,10,5,10,10_1,10_4,10_1_0 -9584,2,42.0,0.0,2,111,200.0,0.0,0.0,0,55,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,101612,2,1,0,1,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1600.76260208022,200.0,23347.064714275693,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00856638735736698,23347.064714275693,6,3,6,6_0,6_4,6_0_1 -9585,2,51.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,2160.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,130339,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,864.155399848266,0.0,83030.68171542675,0,1,0,1,47.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0260144798931439,83030.68171542675,10,5,10,10_0,10_4,10_1_0 -9586,2,41.0,0.0,1,111,150.0,0.0,0.0,38,37,0.0,155.27587572291867,207.32613413638958,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,105966,2,2,1,0,1,,500.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,506.772149720172,150.0,134373.7408166322,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.002232579060289637,55989.05867359675,10,5,10,10_1,10_4,10_1_0 -9587,2,80.0,0.0,1,111,725.0,1970.0,0.0,0,74,0.0,0.0,1002.0763149925497,2695.0,0.0,3572.8962146694744,70,0,0,0,0,0,0,0,0,0,,1,,1,126858,2,1,2,0,2,,200.0,,11,0.0,3.0,8.0,1.0,1.0,2,2,774.229969978989,725.0,54150.20835289042,0,5,0,1,145.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04976896824545915,54150.20835289042,10,5,10,10_1,10_4,10_1_0 -9588,2,83.0,0.0,6,111,360.0,0.0,0.0,0,74,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,4,131410,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,885.271009867505,360.0,43999.34471060189,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.008181940034967293,43999.34471060189,10,5,10,10_0,10_4,10_0_0 -9589,2,54.0,0.0,7,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,471.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,103518,2,1,0,1,1,,141.0,,42,1.0,0.0,6.0,5.0,2.8,2,2,663.343380858617,0.0,70591.0,6,4,1,2,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0066722386706520665,25211.07142857143,7,4,7,7_0,7_4,7_0_0 -9590,2,54.0,0.0,1,111,503.0,0.0,0.0,31,42,1493.5848770180007,0.0,695.2336364706931,1503.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,102786,1,1,3,0,1,,1305.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,657.845182671593,503.0,86339.2671299017,1,1,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017408069931131826,34535.70685196068,9,5,9,9_1,9_4,9_1_0 -9591,2,52.0,0.0,6,111,210.0,68.0,0.0,0,53,0.0,0.0,290.25658779094545,278.0,0.0,123.32839725762652,71,0,0,0,0,0,0,0,0,0,,2,,4,100436,1,3,0,4,1,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1757.99580117597,210.0,42699.773831576684,0,1,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006510573126137209,42699.773831576684,9,5,9,9_0,9_4,9_0_0 -9592,2,53.0,0.0,1,111,240.0,240.0,0.0,78,54,0.0,0.0,331.72181461822333,480.0,0.0,435.27669620338776,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,107050,2,1,0,0,1,,160.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,769.723780443649,240.0,55281.29614092625,5,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008682864431694156,36854.19742728417,9,5,9,9_0,9_4,9_1_0 -9593,2,36.0,0.0,1,111,300.0,0.0,0.0,37,38,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,131222,2,1,0,1,1,33.0,0.0,810.0,43,2.0,0.0,2.0,3.0,1.8,1,1,900.806090756656,300.0,87076.53239143001,1,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003445245139659761,48375.85132857223,10,5,10,10_0,10_4,10_1_0 -9594,2,62.0,0.0,8,111,1300.0,0.0,0.0,75,37,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,2000.0,6,102096,2,1,0,0,1,,0.0,,42,2.0,0.0,6.0,4.0,2.5,2,2,866.413886589104,1300.0,92887.86553357073,6,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013995369497753884,37155.14621342829,9,5,9,9_0,9_4,9_0_0 -9595,1,34.0,64.0,2,111,65.0,70.0,0.0,0,54,0.0,0.0,89.84132479243549,135.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,131612,1,2,0,1,1,,0.0,318.0,32,1.0,0.0,2.0,3.0,1.6,1,1,1224.5413600283,65.0,22858.30057789047,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.005905950861919184,14286.437861181543,3,2,3_1,3_0_1,3_4_1,3_0_1 -9596,1,93.0,269.0,2,111,104.0,404.0,0.0,0,77,0.0,0.0,143.74611966789678,508.0,0.0,732.7157719423693,70,0,0,0,0,0,0,0,0,0,,2,,2,118683,2,2,0,0,1,,0.0,256.0,11,0.0,2.0,2.0,1.0,1.0,5,3,1478.08736151887,104.0,8588.197562657291,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.059150944804630075,8588.197562657291,1,1,1_1,1_0_1,1_4_1,1_0_1 -9597,2,39.0,0.0,1,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,677.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,101389,2,1,0,0,1,,0.0,340.0,42,1.0,0.0,2.0,2.0,1.5,1,1,1042.19694174265,0.0,37816.028618143755,7,1,2,3,38.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017902461594689563,25210.68574542917,7,4,7,7_0,7_4,7_1_0 -9598,2,74.0,0.0,1,111,150.0,0.0,0.0,0,75,0.0,0.0,207.32613413638958,150.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,100291,2,1,2,0,1,,280.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,732.685119258771,150.0,34417.78730965935,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.004358211602926099,34417.78730965935,9,5,9,9_1,9_4,9_1_0 -9599,0,49.0,0.0,1,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,266.0,0.0,0.0,31,2,2,2,1,1,2,2,2,1,3.0,2,,1,113991,2,3,0,1,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,986.369281360874,0.0,27264.82983343045,0,1,5,0,75.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.009756158451201747,27264.82983343045,7,4,7,7_0,7_4,7_1_0 -9600,2,46.0,0.0,1,111,768.0,324.0,0.0,0,52,0.0,0.0,1061.5098067783147,1092.0,0.0,587.6235398745735,10,2,2,2,2,2,2,2,1,3,75.0,2,,1,102689,2,2,0,0,1,,0.0,360.0,12,1.0,0.0,3.0,1.0,1.0,2,2,999.65966249874,768.0,16754.435641605607,0,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.06517677010189951,16754.435641605607,4,2,4_0,4_0_0,4_4_0,4_1_0 -9601,2,45.0,0.0,1,111,650.0,1680.0,0.0,0,47,0.0,0.0,898.4132479243549,2330.0,0.0,3046.936873423714,70,0,0,0,0,0,0,0,0,3,30.0,2,,1,116172,2,1,0,1,1,,0.0,424.0,32,1.0,0.0,3.0,3.0,2.0,4,4,874.754392631505,650.0,31054.11957949968,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07503030295336871,15527.05978974984,3,2,3_0,3_0_0,3_4_0,3_1_0 -9602,1,39.0,86.0,2,111,728.0,752.0,0.0,0,52,0.0,0.0,1006.2228376752774,1480.0,0.0,1363.8669814372815,20,0,0,0,0,0,0,0,0,3,15.0,2,,2,116440,2,1,0,1,1,,0.0,372.0,32,1.0,0.0,3.0,2.0,1.3,2,2,706.598406406519,728.0,19840.10281552388,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07459638761760724,15261.617550402983,3,2,3_1,3_0_1,3_4_1,3_0_1 -9603,1,34.0,281.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1713.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,115030,2,1,0,0,1,,0.0,433.0,31,0.0,0.0,4.0,4.0,1.9,2,2,863.395605263629,0.0,31830.612206056503,0,7,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05381611854999328,16752.95379266132,4,2,4_1,4_0_1,4_4_1,4_0_1 -9604,1,96.0,240.0,5,111,360.0,120.0,0.0,0,86,0.0,0.0,497.582721927335,480.0,0.0,217.63834810169388,10,2,2,1,2,2,2,2,1,0,,2,,3,129830,2,1,0,0,1,,211.0,350.0,11,0.0,3.0,2.0,1.0,1.0,3,3,1176.62038038895,360.0,18409.093725722556,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02607407008468365,18409.093725722556,4,2,4_1,4_0_1,4_4_1,4_0_0 -9605,2,41.0,0.0,9,111,1620.0,0.0,0.0,46,37,0.0,0.0,2239.1222486730076,1620.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,2005.0,6,126241,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,1257.88646341715,1620.0,154378.19131622656,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0104937101943474,73513.42443629836,10,5,10,10_0,10_4,10_0_0 -9607,2,46.0,0.0,9,111,2400.0,0.0,0.0,42,46,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,130798,1,2,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1257.88646341715,2400.0,63369.350457962806,1,1,1,2,111.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037873198678154085,27551.89150346209,7,4,7,7_0,7_4,7_0_0 -9608,2,35.0,0.0,7,111,500.0,0.0,0.0,0,81,0.0,0.0,691.0871137879653,500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,5,126226,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1446.89408586964,500.0,18956.819504681596,0,4,2,3,19.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02637573248384411,18956.819504681596,5,3,5,5_0,5_4,5_0_0 -9609,2,32.0,0.0,9,111,400.0,0.0,0.0,55,38,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,2005.0,6,129290,1,1,0,0,1,,0.0,850.0,43,2.0,0.0,2.0,3.0,1.8,1,1,1377.13693920556,400.0,38982.11715807604,1,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010261115330857057,21656.73175448669,6,3,6,6_0,6_4,6_0_0 -9610,2,47.0,0.0,7,111,400.0,0.0,0.0,0,52,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,5,104958,1,2,0,0,1,,0.0,274.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1446.86650243412,400.0,21409.662412779555,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01868315306836588,21409.662412779555,6,3,6,6_0,6_4,6_0_0 -9611,2,58.0,0.0,7,111,408.0,0.0,0.0,0,46,0.0,0.0,563.9270848509797,408.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,25.0,2,,5,126860,2,1,0,0,1,,0.0,568.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1222.49166284879,408.0,45881.975488859156,0,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008892380845699824,45881.975488859156,10,5,10,10_0,10_4,10_0_0 -9612,1,58.0,32.0,9,111,180.0,105.0,0.0,0,68,0.0,0.0,248.7913609636675,285.0,0.0,190.43355458898213,41,0,0,0,0,0,0,0,0,1,15.0,2,2006.0,6,133153,2,2,0,1,1,,0.0,388.0,12,1.0,2.0,2.0,1.0,1.0,3,3,1843.49416965812,180.0,11452.400000000001,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024885613495861127,11452.400000000001,2,1,2_1,2_0_1,2_4_1,2_0_0 -9613,2,31.0,0.0,8,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,639.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,8,1999.0,6,110563,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1329.46968363328,0.0,104421.95396727644,1,1,1,2,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006119402824048367,69614.63597818429,10,5,10,10_0,10_4,10_0_0 -9614,1,38.0,170.0,1,111,360.0,0.0,0.0,85,63,0.0,0.0,497.582721927335,600.0,412.878481005646,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,110369,2,2,0,1,1,408.0,0.0,552.0,42,1.0,0.0,1.0,3.0,1.8,1,1,1100.01376287178,360.0,19511.093828843248,6,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0307517356670706,10839.496571579582,2,1,2_1,2_0_1,2_4_1,2_1_0 -9615,2,55.0,0.0,1,111,320.0,0.0,0.0,46,38,0.0,0.0,442.2957528242978,320.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,2,,1,119907,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.5,1,1,812.97781533402,320.0,92944.96232387872,1,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003442897732153774,37177.98492955149,9,5,9,9_0,9_4,9_1_0 -9616,2,63.0,0.0,1,111,335.0,380.0,0.0,86,21,2240.377315527001,0.0,463.0283662379367,2215.0,0.0,689.1881023220305,10,2,2,2,2,1,2,2,2,0,,2,,1,116143,2,3,0,1,1,,320.0,,42,1.0,1.0,3.0,3.0,2.0,1,1,602.800301031739,335.0,30828.84009104805,6,1,1,2,51.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.07184830806019142,15414.420045524024,3,2,3_0,3_0_0,3_4_0,3_1_0 -9617,2,36.0,0.0,6,111,24.0,30.0,0.0,35,38,0.0,0.0,33.17218146182233,54.0,0.0,54.40958702542347,41,0,0,0,0,0,0,0,0,2,15.0,2,,4,128864,2,1,0,0,1,,0.0,563.0,43,2.0,0.0,3.0,4.0,2.1,2,1,1008.82389945227,24.0,61827.640331811854,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.000873395777522754,29441.733491338975,8,4,8,8_0,8_4,8_0_0 -9618,2,32.0,0.0,7,111,0.0,0.0,162.0,55,52,0.0,0.0,82.76796024367906,162.0,0.0,185.2058154937263,70,2,2,2,1,2,2,2,2,0,,2,,5,119639,2,1,0,0,1,,0.0,2012.0,43,2.0,2.0,3.0,3.0,1.8,1,1,1105.39804155908,0.0,41629.957186486485,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0038914284555783035,23127.75399249249,6,3,6,6_0,6_4,6_0_0 -9619,0,93.0,0.0,2,111,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112207,2,1,0,1,2,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,992.109390199207,600.0,36517.447570961296,0,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016430502127348038,36517.447570961296,9,5,9,9_0,9_4,9_0_1 -9620,2,40.0,0.0,2,111,700.0,0.0,0.0,34,34,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,106957,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,706.652963237703,700.0,68008.05458765767,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010292898455105028,28336.68941152403,8,4,8,8_0,8_4,8_0_1 -9621,2,50.0,0.0,1,111,300.0,0.0,0.0,0,38,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,1,121255,2,1,0,1,1,684.0,0.0,614.0,32,1.0,0.0,3.0,2.0,1.5,1,1,987.444128875968,300.0,42742.37154682259,0,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007018796317171165,28494.914364548396,8,4,8,8_0,8_4,8_1_0 -9622,2,48.0,0.0,1,111,500.0,0.0,0.0,0,37,0.0,0.0,691.0871137879653,610.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,2,,1,115764,2,1,0,1,1,912.0,0.0,780.0,32,1.0,0.0,4.0,3.0,2.0,3,3,734.175869216244,500.0,51783.93008310696,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011779716198075803,25891.96504155348,7,4,7,7_0,7_4,7_1_0 -9623,2,72.0,0.0,1,111,668.0,0.0,0.0,0,75,0.0,0.0,923.2923840207216,668.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114183,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,940.771181012376,668.0,23191.943101544082,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028803106194043984,23191.943101544082,6,3,6,6_0,6_4,6_1_0 -9624,2,45.0,0.0,2,111,708.0,0.0,0.0,54,35,0.0,0.0,978.5793531237589,1647.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,117673,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,6.0,3.3,1,1,944.186654673735,708.0,109082.23956217097,1,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015098699903949984,33055.22410974878,8,4,8,8_0,8_4,8_0_1 -9625,2,36.0,0.0,1,111,575.0,0.0,0.0,0,46,0.0,0.0,794.7501808561601,575.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,131685,1,3,0,0,2,,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1323.76772179029,575.0,23615.530179464204,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.024348384119701597,23615.530179464204,6,3,6,6_0,6_4,6_1_0 -9626,2,81.0,0.0,2,111,309.0,0.0,0.0,0,74,0.0,0.0,427.09183632096256,496.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,110461,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1011.05904260796,309.0,51034.560884575214,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009718904040769596,51034.560884575214,10,5,10,10_0,10_4,10_0_1 -9627,2,42.0,0.0,5,111,408.0,70.0,0.0,35,34,0.0,0.0,563.9270848509797,478.0,0.0,126.95570305932142,20,1,2,2,2,1,1,2,2,0,,2,,3,110046,2,2,0,1,1,580.0,0.0,486.0,43,2.0,0.0,3.0,3.0,1.8,1,1,911.34034241874,408.0,55045.5877245439,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.008683711442813206,30580.88206919105,8,4,8,8_0,8_4,8_0_0 -9628,2,90.0,0.0,2,111,1200.0,450.0,0.0,74,74,0.0,0.0,1658.6090730911167,1650.0,0.0,816.143805381352,31,0,0,0,0,0,0,0,0,0,,2,,2,120346,2,1,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,3,1,857.186874987743,1200.0,69733.22915301559,5,5,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023661603227629193,46488.81943534373,10,5,10,10_0,10_4,10_0_1 -9629,2,41.0,0.0,2,111,250.0,75.0,0.0,35,37,0.0,0.0,345.54355689398267,325.0,0.0,136.02396756355867,50,1,2,2,2,2,2,2,1,3,45.0,2,,2,110187,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,857.186874987743,250.0,147029.64453177576,1,1,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0022104385890000682,98019.76302118384,10,5,10,10_0,10_4,10_0_1 -9630,2,70.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,464.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,126625,1,3,0,1,2,,0.0,,41,0.0,1.0,4.0,3.0,2.0,1,1,892.175747033195,0.0,117084.93662186639,5,5,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003962935057124546,58542.468310933196,10,5,10,10_0,10_4,10_0_1 -9631,2,61.0,0.0,6,111,1000.0,0.0,0.0,47,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,75.0,1,,4,104971,2,1,2,0,1,,600.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,813.986010471603,1000.0,382706.0210258965,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002612971693832675,191353.01051294824,10,5,10,10_1,10_4,10_0_0 -9632,2,55.0,0.0,2,111,600.0,0.0,0.0,0,54,0.0,0.0,829.3045365455583,773.0,0.0,0.0,42,2,1,2,2,1,2,2,2,3,30.0,2,,2,121244,2,2,0,0,1,,639.0,,32,2.0,0.0,4.0,3.0,2.0,1,1,604.184521048092,600.0,36661.34923491964,0,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02108487592878125,18330.67461745982,4,2,4_0,4_0_0,4_4_0,4_0_1 -9633,2,76.0,0.0,2,111,399.0,120.0,0.0,0,75,0.0,0.0,551.4875168027963,519.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,119520,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,5,5,1106.00180740872,399.0,29863.298199380846,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017379192229033846,29863.298199380846,8,4,8,8_0,8_4,8_0_1 -9634,2,29.0,0.0,1,111,1268.0,0.0,0.0,0,68,0.0,0.0,1752.59692056628,1268.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,113809,2,1,0,1,1,,0.0,589.0,32,1.0,0.0,4.0,5.0,2.2,2,2,471.04222370798,1268.0,16440.140621038434,0,1,3,4,88.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0771282940473965,7472.791191381106,1,1,1_0,1_0_0,1_4_0,1_1_0 -9635,2,41.0,0.0,1,111,700.0,0.0,0.0,42,34,1792.3018524216009,0.0,967.5219593031513,1900.0,0.0,0.0,50,2,2,1,2,1,2,2,2,1,10.0,1,,1,103897,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,670.830195878978,700.0,65724.68501843022,1,1,1,2,90.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.028908468704980643,31297.46905639534,8,4,8,8_1,8_4,8_1_0 -9636,2,52.0,0.0,2,111,600.0,2200.0,0.0,0,45,0.0,0.0,829.3045365455583,2800.0,0.0,3990.0363818643877,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,109857,2,2,2,0,1,,400.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1143.51135115333,600.0,29543.997228811117,0,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09477390545073089,29543.997228811117,8,4,8,8_1,8_4,8_0_1 -9637,2,35.0,0.0,2,111,462.0,1515.0,0.0,85,63,0.0,0.0,638.5644931400799,1977.0,0.0,2747.684144783885,71,0,0,0,0,0,0,0,0,0,,1,,2,127829,2,1,1,0,1,,650.0,,42,1.0,5.0,5.0,7.0,3.3999999999999995,5,3,267.948297571958,462.0,33588.14944811759,6,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05886004535777718,9878.867484740469,2,1,2_0,2_1_0,2_4_0,2_0_1 -9638,2,51.0,0.0,2,111,864.0,0.0,0.0,55,47,0.0,0.0,1194.198532625604,864.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,117399,2,1,0,1,1,750.0,0.0,440.0,43,2.0,1.0,3.0,4.0,2.1,1,1,207.676420443001,864.0,31671.47718657017,1,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0272800663799277,15081.655803128651,3,2,3_0,3_0_0,3_4_0,3_0_1 -9639,1,37.0,379.0,7,111,0.0,0.0,684.0,85,64,0.0,0.0,349.46472102886713,684.0,0.0,781.9801098624,71,0,0,0,0,0,0,0,0,0,,2,,5,107458,1,1,0,1,2,1236.0,0.0,453.0,42,1.0,5.0,3.0,6.0,2.6999999999999997,1,1,260.742167006234,0.0,29779.870575469875,6,4,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02296853501315822,11029.581694618473,2,1,2_1,2_0_1,2_4_1,2_0_0 -9640,2,60.0,0.0,2,111,485.0,0.0,0.0,67,62,0.0,0.0,670.3545003743263,811.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,2,119588,2,1,0,1,1,659.0,0.0,518.0,43,2.0,3.0,4.0,2.0,1.5,1,1,231.017404186048,485.0,42447.0473843734,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019106158142310842,28298.031589582268,8,4,8,8_0,8_4,8_0_1 -9641,1,54.0,580.0,2,111,600.0,300.0,0.0,52,63,0.0,0.0,829.3045365455583,900.0,0.0,544.0958702542347,31,2,2,2,2,1,2,2,2,3,90.0,2,,2,126896,1,3,0,1,2,1620.0,0.0,551.0,43,2.0,4.0,5.0,6.0,3.3,1,1,229.253180608383,600.0,35481.758010608544,1,1,2,3,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02536514678136615,10752.04788200259,2,1,2_1,2_0_1,2_4_1,2_0_1 -9642,1,31.0,420.0,2,111,480.0,200.0,0.0,0,46,0.0,0.0,663.4436292364467,680.0,0.0,362.73058016948977,20,2,2,2,2,1,2,2,2,0,,2,,2,130647,1,3,0,1,2,648.0,0.0,520.0,22,4.0,0.0,4.0,7.0,4.0,1,1,229.253180608383,480.0,22758.507205283626,0,1,2,3,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02987893686814972,5689.626801320906,1,1,1_1,1_0_1,1_4_1,1_0_1 -9643,2,53.0,0.0,2,111,480.0,240.0,0.0,68,67,0.0,0.0,663.4436292364467,720.0,0.0,435.27669620338776,71,1,2,2,2,1,2,2,2,3,2.0,2,,2,132240,1,3,0,1,2,802.0,0.0,562.0,43,3.0,0.0,4.0,6.0,3.3,1,1,235.346525866321,480.0,37403.54193287315,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019249513890747545,11334.406646325198,2,1,2_0,2_0_0,2_4_0,2_0_1 -9644,1,42.0,460.0,2,111,0.0,0.0,480.0,85,62,0.0,0.0,245.23840072201202,480.0,0.0,548.7579718332631,70,0,0,0,0,0,0,0,0,0,,2,,2,131044,1,2,0,1,2,665.0,0.0,546.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,1,1,235.346525866321,0.0,31234.328275338918,6,4,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015367706831044107,11568.269731607008,2,1,2_1,2_0_1,2_4_1,2_0_1 -9645,2,29.0,0.0,5,111,462.0,500.0,0.0,0,38,0.0,0.0,638.5644931400799,962.0,0.0,906.8264504237244,70,0,0,0,0,0,0,0,0,0,,1,,3,132222,2,2,2,0,1,,400.0,,22,2.0,1.0,5.0,3.0,2.0,1,1,190.071582914819,462.0,43819.06041383463,0,1,0,1,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021953916649848467,21909.530206917316,6,3,6,6_1,6_4,6_0_0 -9646,2,63.0,0.0,2,111,288.0,0.0,0.0,0,78,0.0,0.0,398.066177541868,288.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105497,2,1,0,1,1,,0.0,697.0,11,0.0,4.0,3.0,1.0,1.0,1,1,246.340216068717,288.0,25586.609365094526,0,5,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01125588763601058,25586.609365094526,7,4,7,7_0,7_4,7_0_1 -9647,2,75.0,0.0,2,111,360.0,180.0,0.0,0,77,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,60,0,0,0,0,0,0,0,0,0,,2,,2,109794,2,1,0,1,1,750.0,0.0,452.0,11,0.0,2.0,3.0,1.0,1.0,1,1,246.340216068717,360.0,16093.856663489316,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033553175680074834,16093.856663489316,4,2,4_0,4_0_0,4_4_0,4_0_1 -9648,2,81.0,0.0,1,111,360.0,840.0,0.0,0,78,0.0,0.0,497.582721927335,1200.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,0,,2,,1,125958,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1115.07660658733,360.0,9848.308550290896,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12184833505897363,9848.308550290896,2,1,2_0,2_0_0,2_4_0,2_1_0 -9649,2,56.0,0.0,1,111,945.0,0.0,0.0,0,54,0.0,103.51725048194578,1306.1546450592543,1045.0,0.0,0.0,70,1,2,2,1,2,2,2,2,2,5.0,1,,1,103845,2,1,2,0,1,,500.0,,32,2.0,0.0,4.0,2.0,1.5,1,1,1015.3708763412,945.0,33951.65194669114,0,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03077906199205849,22634.434631127428,6,3,6,6_1,6_4,6_1_0 -9650,2,46.0,0.0,1,111,188.0,178.0,0.0,0,55,0.0,0.0,259.84875478427494,366.0,0.0,322.8302163508459,71,0,0,0,0,0,0,0,0,3,45.0,2,,1,123479,1,3,0,1,2,382.0,0.0,534.0,32,2.0,0.0,2.0,2.0,1.5,2,2,755.844006996367,188.0,18627.56302069283,0,1,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019648302872115962,12418.375347128553,2,1,2_0,2_0_0,2_4_0,2_1_0 -9651,2,80.0,0.0,1,111,685.0,1760.0,0.0,77,74,0.0,0.0,946.7893458895124,2445.0,0.0,3192.02910549151,60,0,0,0,0,0,0,0,0,0,,1,,1,117252,2,2,2,0,1,,287.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,725.332898685465,685.0,62529.025063888395,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03910184106503893,41686.01670925893,9,5,9,9_1,9_4,9_1_0 -9652,2,46.0,0.0,1,111,450.0,3971.0,0.0,0,47,0.0,0.0,621.9784024091688,4421.0,0.0,7202.01566926522,71,0,0,0,0,0,0,0,0,0,,1,,1,105309,2,1,2,0,2,,180.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,706.553340489895,450.0,38228.51709985812,0,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1156466516462499,25485.678066572083,7,4,7,7_1,7_4,7_1_0 -9653,1,81.0,237.0,1,111,565.0,0.0,0.0,0,77,0.0,0.0,780.9284385804008,565.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,101121,1,3,0,0,1,,0.0,450.0,11,0.0,3.0,1.0,1.0,1.0,1,1,899.204327138944,565.0,9829.499129769372,0,5,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.057480039678609395,9829.499129769372,2,1,2_1,2_0_1,2_4_1,2_1_0 -9654,2,69.0,0.0,8,111,306.0,717.0,0.0,0,75,0.0,0.0,422.9453136382348,1023.0,0.0,1300.3891299076208,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,104394,2,2,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1187.91153856627,306.0,24677.92794813656,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04145404760683107,24677.92794813656,7,4,7,7_0,7_4,7_0_0 -9655,2,45.0,0.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,475.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,120389,1,1,0,0,2,,0.0,750.0,12,1.0,1.0,2.0,1.0,1.0,2,2,965.205179074406,0.0,4843.682406211334,0,4,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09806588462341793,4843.682406211334,1,1,1_0,1_0_0,1_4_0,1_0_0 -9656,2,39.0,0.0,2,111,560.0,1700.0,0.0,54,53,0.0,0.0,774.0175674425211,2260.0,0.0,3083.2099314406632,43,0,0,0,0,0,0,0,0,2,60.0,1,,2,120810,2,2,1,0,1,,450.0,,43,2.0,0.0,5.0,5.0,2.4,4,2,793.404541774231,560.0,56094.31431207552,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040289288276646,23372.6309633648,6,3,6,6_1,6_4,6_0_1 -9657,0,28.0,0.0,1,111,0.0,0.0,0.0,55,52,0.0,0.0,0.0,2720.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,1,128456,1,3,2,0,1,,465.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1003.32925823656,0.0,39439.74061563099,1,1,5,0,60.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06896597080869223,26293.16041042066,7,4,7,7_1,7_4,7_1_0 -9658,2,81.0,0.0,6,111,360.0,0.0,0.0,0,77,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,105428,2,1,0,1,2,44.0,0.0,302.0,11,0.0,0.0,2.0,1.0,1.0,1,1,866.891255007948,360.0,14294.499457468859,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025184512481260784,14294.499457468859,3,2,3_0,3_0_0,3_4_0,3_0_0 -9659,2,39.0,0.0,2,111,928.0,0.0,0.0,68,64,0.0,0.0,1282.6576831904636,928.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,112853,1,1,0,1,1,583.0,0.0,410.0,43,2.0,0.0,3.0,5.0,2.4,2,2,615.037533704636,928.0,36242.442924204704,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025605337971857035,15101.017885085294,3,2,3_0,3_0_0,3_4_0,3_0_1 -9660,2,60.0,0.0,1,111,448.0,1224.0,0.0,56,78,0.0,0.0,619.2140539540169,1672.0,0.0,2219.9111506372774,71,2,2,2,2,1,2,2,2,0,,1,,1,120768,1,2,5,0,2,,170.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,686.771425078654,448.0,47603.76471840651,1,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03512327249515841,31735.843145604344,8,4,8,8_1,8_4,8_1_0 -9661,2,74.0,0.0,1,111,238.0,276.0,0.0,0,77,0.0,0.0,328.95746616307144,514.0,0.0,500.5682006338959,71,0,0,0,0,0,0,0,0,0,,2,,1,128739,2,2,0,1,1,408.0,0.0,246.0,11,0.0,4.0,3.0,1.0,1.0,3,2,876.366344086448,238.0,15126.478602948948,0,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03398014921330033,15126.478602948948,3,2,3_0,3_0_0,3_4_0,3_1_0 -9662,2,62.0,0.0,2,111,300.0,300.0,0.0,0,54,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,70,2,1,2,2,1,2,2,2,0,,2,,2,128515,1,2,0,1,1,670.0,0.0,338.0,22,1.0,1.0,3.0,2.0,1.5,1,1,770.663389341848,300.0,42921.20439134936,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01397910446615818,28614.136260899573,8,4,8,8_0,8_4,8_0_1 -9663,2,52.0,0.0,2,111,194.0,0.0,0.0,0,65,0.0,0.0,268.14180014973056,194.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,2,,2,131871,2,1,0,1,1,400.0,0.0,365.0,12,1.0,1.0,3.0,1.0,1.0,1,1,840.414883702808,194.0,25469.070466714464,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007617082070330704,25469.070466714464,7,4,7,7_0,7_4,7_0_1 -9664,1,24.0,420.0,2,111,360.0,126.0,0.0,85,63,0.0,0.0,497.582721927335,486.0,0.0,228.52026550677857,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,133650,2,1,0,1,1,568.0,0.0,710.0,42,1.0,0.0,3.0,4.0,2.1,1,1,881.358335711835,360.0,5018.5103322591385,6,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09684148638211963,2389.766824885304,1,1,1_1,1_0_1,1_4_1,1_0_1 -9665,2,79.0,0.0,2,111,520.0,1985.0,0.0,77,74,0.0,0.0,718.7305983394839,3646.0,0.0,3600.101008182186,71,0,0,0,0,0,0,0,0,0,,1,,2,108516,2,2,2,0,1,,220.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,837.816333044672,520.0,50657.382084248624,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07197371537945474,33771.58805616575,9,5,9,9_1,9_4,9_0_1 -9666,2,30.0,0.0,6,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,2177.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131988,2,1,2,0,1,,736.0,,43,2.0,0.0,5.0,3.0,1.8,2,1,817.401454214809,0.0,67523.3970142264,4,1,1,2,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032240676510118874,37512.99834123689,9,5,9,9_1,9_4,9_0_0 -9667,2,65.0,0.0,1,111,450.0,1400.0,0.0,0,74,0.0,0.0,621.9784024091688,1850.0,0.0,2539.1140611864284,70,0,0,0,0,0,0,0,0,0,,1,,1,104043,2,1,1,0,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,837.166255619105,450.0,50969.31048341452,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03629635132305728,50969.31048341452,10,5,10,10_1,10_4,10_1_0 -9668,2,68.0,0.0,8,111,329.0,2000.0,0.0,86,78,0.0,0.0,454.73532087248117,2329.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,127028,2,1,1,0,1,,1000.0,,41,0.0,8.0,6.0,4.0,2.5,3,2,872.896060727803,329.0,17731.343507769772,6,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13134932493860071,7092.537403107909,1,1,1_0,1_1_0,1_4_0,1_0_0 -9669,2,50.0,0.0,5,111,1250.0,0.0,0.0,38,31,0.0,295.0241638735455,1727.717784469913,1535.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,1,,3,133292,2,1,4,0,1,,320.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,808.128504410857,1250.0,88143.92675718918,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017414699531466047,58762.61783812612,10,5,10,10_1,10_4,10_0_0 -9670,2,53.0,0.0,1,111,537.0,2983.0,0.0,0,35,0.0,0.0,742.2275602082747,3520.0,0.0,5410.12660322794,33,0,0,0,0,0,0,0,0,0,,1,,1,124240,2,2,1,0,1,,344.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,815.654948675959,537.0,24188.62406328016,0,4,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14552295288856795,24188.62406328016,7,4,7,7_1,7_4,7_1_0 -9671,2,51.0,0.0,2,111,385.0,1685.0,0.0,0,43,0.0,0.0,532.1370776167332,2070.0,0.0,3056.005137927951,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,130733,1,3,0,0,1,,0.0,428.0,32,1.0,0.0,3.0,2.0,1.5,1,1,914.124384868825,385.0,32635.876956790045,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.063427129681261,21757.251304526697,6,3,6,6_0,6_4,6_0_1 -9672,2,59.0,0.0,5,111,715.0,0.0,0.0,0,56,0.0,0.0,988.2545727167903,715.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,120221,1,3,0,1,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1130.14473849338,715.0,13162.285897813252,0,4,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05432187125784802,13162.285897813252,2,1,2_0,2_0_0,2_4_0,2_0_0 -9673,1,69.0,309.0,2,111,1449.0,0.0,0.0,67,78,0.0,0.0,2002.7704557575235,1449.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,133329,1,1,0,0,1,,0.0,487.0,42,1.0,3.0,5.0,3.0,2.0,1,1,808.719910452012,1449.0,30070.82760571119,4,5,2,3,128.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,0,0,1,0.04818623614219381,15035.413802855595,3,2,3_1,3_0_1,3_4_1,3_0_1 -9674,2,47.0,0.0,1,111,575.0,1300.0,0.0,67,37,0.0,0.0,794.7501808561601,1875.0,0.0,2357.7487711016834,30,0,0,0,0,0,0,0,0,3,45.0,1,,1,109070,2,3,3,0,1,,550.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,651.078250559797,575.0,56017.719945123354,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03347155153470735,26675.104735773024,7,4,7,7_1,7_4,7_1_0 -9675,1,36.0,64.0,1,111,480.0,0.0,0.0,0,63,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,1,121039,1,3,0,0,2,,0.0,440.0,12,1.0,0.0,1.0,1.0,1.0,4,4,1161.23337277464,480.0,7791.484101971582,0,1,2,3,17.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.061605721543927586,7791.484101971582,1,1,1_1,1_0_1,1_4_1,1_1_0 -9676,1,67.0,240.0,6,111,975.0,0.0,0.0,0,75,0.0,0.0,1347.6198718865323,975.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,120099,2,2,0,1,1,1160.0,0.0,540.0,11,0.0,1.0,3.0,1.0,1.0,2,2,730.902358843576,975.0,23142.122044417316,0,5,3,4,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042130967857167786,23142.122044417316,6,3,6,6_0,6_4,6_0_0 -9677,1,51.0,308.0,7,111,164.0,0.0,0.0,0,56,0.0,0.0,226.6765733224526,164.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,5,108447,2,2,0,1,1,570.0,0.0,514.0,22,2.0,1.0,3.0,2.0,1.5,3,3,702.818126555382,164.0,7236.452119309262,0,4,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.022663039469630903,4824.301412872842,1,1,1_1,1_0_1,1_4_1,1_0_0 -9678,2,73.0,0.0,2,111,250.0,265.0,0.0,86,78,0.0,0.0,345.54355689398267,515.0,0.0,480.618018724574,60,0,0,0,0,0,0,0,0,0,,2,,2,122813,2,3,0,1,1,750.0,0.0,348.0,41,0.0,2.0,3.0,2.0,1.5,2,2,777.003964842069,250.0,20036.31661312796,6,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025703327110661034,13357.544408751974,3,2,3_0,3_0_0,3_4_0,3_0_1 -9679,2,44.0,0.0,1,111,525.0,0.0,0.0,0,35,0.0,0.0,725.6414694773636,525.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,125132,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,254.386309884522,525.0,41802.32009462513,0,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012559111523274125,41802.32009462513,9,5,9,9_0,9_4,9_1_0 -9680,1,49.0,430.0,2,111,742.0,120.0,0.0,67,21,0.0,0.0,1025.5732768613404,862.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,2,128376,2,1,0,1,1,891.0,0.0,378.0,43,4.0,0.0,4.0,6.0,3.3,2,2,234.996348257425,742.0,20168.02154559989,1,4,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04274093014285106,6111.521680484816,1,1,1_1,1_0_1,1_4_1,1_0_1 -9681,2,47.0,0.0,2,111,260.0,20.0,0.0,0,45,0.0,0.0,359.36529916974195,280.0,0.0,36.27305801694898,60,1,2,2,1,1,2,2,2,1,15.0,2,,2,103618,2,2,0,1,1,763.0,0.0,350.0,12,1.0,2.0,3.0,1.0,1.0,1,1,245.973680690639,260.0,20578.413244747986,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01360649126197626,20578.413244747986,5,3,5,5_0,5_4,5_0_1 -9682,1,66.0,373.0,2,111,420.0,480.0,0.0,86,78,0.0,0.0,580.5131755818909,900.0,0.0,870.5533924067755,71,2,2,2,2,1,2,2,2,0,,2,,2,121919,1,2,0,1,1,1143.0,0.0,462.0,41,2.0,2.0,5.0,5.0,3.0,1,1,180.246981774303,420.0,16227.989536983241,6,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.055459735042897286,5409.32984566108,1,1,1_1,1_0_1,1_4_1,1_0_1 -9683,2,56.0,0.0,2,111,485.0,288.0,0.0,68,68,0.0,0.0,670.3545003743263,773.0,0.0,522.3320354440652,60,2,1,2,2,1,2,2,2,3,90.0,2,,2,113138,2,1,0,1,1,657.0,0.0,311.0,43,3.0,0.0,3.0,3.0,2.0,2,2,215.239811835607,485.0,42075.42124385137,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018371770909197047,21037.710621925686,5,3,5,5_0,5_4,5_0_1 -9684,1,25.0,26.0,2,111,0.0,0.0,0.0,37,52,0.0,0.0,0.0,232.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101321,1,2,0,1,1,30.0,0.0,264.0,43,2.0,0.0,2.0,2.0,1.5,1,1,216.048767754148,0.0,13982.654654655395,4,4,2,3,44.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016591985265312817,9321.769769770262,1,1,1_1,1_0_1,1_4_1,1_0_1 -9685,2,33.0,0.0,2,111,270.0,336.0,0.0,55,63,0.0,0.0,373.1870414455012,606.0,0.0,609.3873746847428,71,1,2,2,2,1,2,2,2,3,60.0,2,,2,121071,2,3,0,1,1,448.0,0.0,680.0,43,2.0,0.0,1.0,4.0,2.1,1,1,922.218965049601,270.0,24540.67241047678,4,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024693699906172477,11686.03448117942,2,1,2_0,2_0_0,2_4_0,2_0_1 -9686,1,59.0,155.0,2,111,125.0,750.0,0.0,0,56,0.0,0.0,172.77177844699133,875.0,0.0,1360.2396756355868,20,0,0,0,0,0,0,0,0,0,,2,,2,114425,1,2,0,0,1,,0.0,140.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1103.64611571034,125.0,7723.648351648351,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11328843056575211,7723.648351648351,1,1,1_1,1_0_1,1_4_1,1_0_1 -9687,2,52.0,0.0,2,111,0.0,0.0,1350.0,46,46,0.0,0.0,689.7330020306589,1350.0,0.0,1543.3817957810525,71,1,2,2,2,1,2,2,2,3,75.0,2,,2,105938,1,3,0,0,1,,0.0,168.0,43,2.0,0.0,2.0,2.0,1.5,3,2,1150.60820167976,0.0,34166.28909391932,4,1,2,3,33.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.039512631772476096,22777.526062612877,6,3,6,6_0,6_4,6_0_1 -9688,1,37.0,300.0,2,111,700.0,180.0,0.0,54,47,0.0,0.0,967.5219593031513,880.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,115191,2,2,0,1,1,101.0,0.0,376.0,43,2.0,0.0,4.0,5.0,2.8,2,2,185.585467901965,700.0,47622.00725887971,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018478851494356387,17007.859735314185,4,2,4_1,4_0_1,4_4_1,4_0_1 -9689,1,41.0,466.0,2,111,960.0,360.0,0.0,0,68,0.0,0.0,1326.8872584728933,1320.0,0.0,652.9150443050816,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,131413,2,1,0,1,2,1050.0,0.0,407.0,32,1.0,1.0,4.0,6.0,2.5,1,1,235.69189950091,960.0,27269.34153588183,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04840600930033839,10907.736614352732,2,1,2_1,2_0_1,2_4_1,2_0_1 -9690,2,42.0,0.0,5,111,400.0,400.0,0.0,54,56,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,3,30.0,2,,3,128686,2,2,0,1,1,60.0,0.0,460.0,43,2.0,0.0,3.0,2.0,1.5,3,2,223.514914245375,400.0,41434.550504881685,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019307558311891102,27623.033669921122,7,4,7,7_0,7_4,7_0_0 -9691,1,27.0,350.0,2,111,400.0,400.0,0.0,0,55,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,0,,2,,2,125046,2,1,0,1,1,48.0,0.0,390.0,22,2.0,0.0,2.0,2.0,1.5,2,1,257.199315873995,400.0,18737.61916102075,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0426948585690232,12491.746107347166,2,1,2_1,2_0_1,2_4_1,2_0_1 -9692,2,64.0,0.0,2,111,272.0,493.0,0.0,0,78,0.0,0.0,375.9513899006531,765.0,0.0,894.1308801177923,60,0,0,0,0,0,0,0,0,0,,1,,2,109878,1,1,1,0,1,,289.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1195.24442943205,272.0,18599.42322023994,0,5,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04113030769510772,18599.42322023994,4,2,4_0,4_1_0,4_4_0,4_0_1 -9693,1,32.0,208.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,696.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,2,,2,130998,2,1,0,1,1,898.0,0.0,374.0,32,1.0,0.0,3.0,2.0,1.3,1,1,219.05663156842,0.0,17865.625744005516,0,1,2,3,53.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03895749356741843,13742.789033850397,3,2,3_1,3_0_1,3_4_1,3_0_1 -9694,1,70.0,229.0,2,111,250.0,600.0,0.0,0,77,0.0,0.0,345.54355689398267,850.0,0.0,1088.1917405084694,44,0,0,0,0,0,0,0,0,0,,2,,2,112361,2,1,0,1,1,,0.0,333.0,21,0.0,0.0,3.0,3.0,2.0,2,2,215.876886921581,250.0,11309.737794122646,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07515647272050119,5654.868897061323,1,1,1_1,1_0_1,1_4_1,1_0_1 -9695,2,31.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,444.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,128752,2,2,0,1,1,412.0,0.0,380.0,32,1.0,0.0,3.0,2.0,1.3,2,1,779.303771147508,0.0,18909.64224387212,0,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02348008461894001,14545.878649132399,3,2,3_0,3_0_0,3_4_0,3_0_1 -9696,2,35.0,0.0,2,111,1000.0,1000.0,0.0,64,46,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,127001,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,948.825066405049,1000.0,63049.79569961585,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03172095924828169,35027.664277564356,9,5,9,9_1,9_4,9_0_1 -9697,1,44.0,610.0,9,111,932.0,0.0,0.0,81,56,0.0,0.0,1288.1863801007673,1112.0,309.6588607542345,0.0,60,2,2,2,1,1,2,2,2,1,15.0,2,2005.0,6,119442,2,3,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,8.0,3.8999999999999995,1,1,1142.11384002431,932.0,10491.2836649764,4,1,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.10599274936319258,2690.0727346093336,1,1,1_1,1_0_1,1_4_1,1_0_0 -9698,2,81.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1901.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100733,2,1,2,0,1,,564.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,853.826051975788,0.0,17376.965513914987,0,5,0,1,42.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1093976965355506,17376.965513914987,4,2,4_0,4_1_0,4_4_0,4_1_0 -9699,2,83.0,0.0,2,111,324.0,1188.0,0.0,0,75,0.0,0.0,447.8244497346015,1512.0,0.0,2154.619646206769,70,0,0,0,0,0,0,0,0,0,,1,,2,117369,2,1,2,0,2,,84.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1035.85046154575,324.0,27849.764109880663,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05429130365465343,27849.764109880663,7,4,7,7_1,7_4,7_0_1 -9700,2,70.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1523.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,131169,2,1,2,0,1,,299.0,,21,2.0,2.0,4.0,3.0,2.0,2,2,1512.64384333405,0.0,35495.82156944134,0,5,0,1,140.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04290645863825178,17747.91078472067,4,2,4_0,4_1_0,4_4_0,4_0_1 -9701,1,38.0,120.0,7,111,391.0,391.0,0.0,85,63,0.0,0.0,540.4301229821889,782.0,0.0,709.1382842313525,44,1,2,2,1,2,2,2,2,2,15.0,2,,5,127160,2,2,0,1,1,,0.0,327.0,42,1.0,0.0,3.0,5.0,2.4,1,1,565.443086835532,391.0,26682.242475799132,6,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.029307881476201867,11117.601031582972,2,1,2_1,2_0_1,2_4_1,2_0_0 -9702,2,86.0,0.0,2,111,259.0,0.0,0.0,0,75,1986.467886433941,124.22070057833493,357.983124942166,1709.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,115627,2,1,1,0,1,,768.0,,11,0.0,0.0,3.0,1.0,1.0,4,4,1084.30681073742,259.0,22335.35645060891,0,5,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07651545672795426,22335.35645060891,6,3,6,6_1,6_4,6_0_1 -9704,2,63.0,0.0,1,111,876.0,656.0,0.0,0,77,0.0,0.0,1210.784623356515,1532.0,0.0,1189.7563029559265,43,1,2,2,2,1,2,2,2,0,,2,,1,105860,2,2,0,1,2,708.0,1200.0,305.0,42,1.0,0.0,3.0,2.0,1.5,2,2,165.081887372656,876.0,17188.620555080983,4,5,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.08912873462362507,11459.08037005399,2,1,2_0,2_0_0,2_4_0,2_1_0 -9705,2,74.0,0.0,6,111,400.0,600.0,0.0,77,77,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,1,,4,114950,2,1,2,0,2,,600.0,,41,0.0,0.0,7.0,3.0,2.0,1,1,861.461147398774,400.0,37396.157017926824,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026740715617399508,18698.078508963412,5,3,5,5_1,5_4,5_0_0 -9706,2,77.0,0.0,2,111,660.0,0.0,0.0,0,77,1433.8414819372806,0.0,912.2349902001142,1620.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103557,2,1,2,0,2,,240.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1203.46514118926,660.0,16222.225548007256,0,5,0,1,130.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09986299322530387,16222.225548007256,4,2,4_0,4_1_0,4_4_0,4_0_1 -9707,2,46.0,0.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,324.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,111388,2,2,0,1,1,389.0,0.0,258.0,42,1.0,7.0,2.0,3.0,1.8,1,1,253.256194127123,0.0,19778.71916679918,6,1,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016381242752254187,10988.177314888433,2,1,2_0,2_0_0,2_4_0,2_0_1 -9708,0,48.0,0.0,2,111,600.0,600.0,0.0,52,47,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,124174,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,174.064926716435,600.0,61191.15613588717,1,1,5,0,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019610677028803977,25496.315056619656,7,4,7,7_0,7_4,7_0_1 -9709,2,53.0,0.0,7,111,1200.0,3500.0,0.0,42,42,0.0,0.0,1658.6090730911167,4700.0,0.0,6347.785152966071,71,1,2,2,1,1,2,2,2,2,45.0,1,,5,101027,2,1,1,0,1,,400.0,,43,2.0,1.0,7.0,4.0,2.1,1,1,839.640862373258,1200.0,26547.339646307784,4,1,0,1,220.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.17704222203122633,12641.590307765611,2,1,2_0,2_1_0,2_4_0,2_0_0 -9710,2,77.0,0.0,6,111,2000.0,0.0,0.0,0,78,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,124998,2,1,2,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,863.56515966784,2000.0,14721.999015248206,0,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13585111627357904,14721.999015248206,3,2,3_0,3_1_0,3_4_0,3_0_0 -9711,1,46.0,436.0,2,111,2400.0,1200.0,0.0,52,63,0.0,0.0,3317.2181461822333,3600.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,3,20.0,1,,2,119281,2,1,1,0,1,,800.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,2,2,1008.26052213909,2400.0,43160.27071802094,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08341004215473728,13922.667973555144,3,2,3_1,3_1_1,3_4_1,3_0_1 -9712,2,32.0,0.0,7,111,558.0,0.0,0.0,65,55,0.0,0.0,771.2532189873692,558.0,0.0,0.0,70,2,2,2,1,1,2,2,2,1,3.0,2,,5,121986,2,2,0,3,1,620.0,0.0,485.0,43,2.0,0.0,3.0,4.0,2.3,2,2,243.160606541426,558.0,35659.11301840232,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.015648173854241335,15503.962181914054,3,2,3_0,3_0_0,3_4_0,3_0_0 -9713,1,37.0,483.0,7,111,260.0,0.0,0.0,0,85,0.0,0.0,359.36529916974195,260.0,0.0,0.0,44,2,2,2,2,1,2,2,2,0,,2,,5,104076,2,2,0,1,1,405.0,0.0,518.0,31,0.0,0.0,3.0,3.0,1.6,1,1,195.104097941269,260.0,10001.646758144945,0,6,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.025995719133778274,6251.02922384059,1,1,1_1,1_0_1,1_4_1,1_0_0 -9714,2,28.0,0.0,2,111,0.0,0.0,0.0,43,54,0.0,0.0,0.0,1145.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,110459,2,3,0,1,1,750.0,0.0,356.0,43,2.0,0.0,3.0,3.0,1.8,2,2,718.646586745355,0.0,43769.66385832321,1,1,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026159670855737394,24316.479921290673,7,4,7,7_0,7_4,7_0_1 -9715,2,75.0,0.0,2,111,0.0,0.0,0.0,77,21,0.0,0.0,0.0,2472.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,105684,2,3,3,0,1,,240.0,,42,1.0,1.0,4.0,2.0,1.5,3,3,1028.04163480821,0.0,61450.11347951259,5,1,0,1,84.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04022775321357482,40966.74231967506,9,5,9,9_1,9_4,9_0_1 -9716,2,26.0,0.0,2,111,800.0,820.0,0.0,55,47,0.0,0.0,1105.7393820607444,1620.0,0.0,1487.1953786949082,60,0,0,0,0,0,0,0,0,2,40.0,2,,2,112455,2,1,0,0,1,,0.0,425.0,43,2.0,0.0,1.0,3.0,1.8,2,2,1205.04689183944,800.0,36195.267086053645,1,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.044757232931821635,20108.48171447425,5,3,5,5_0,5_4,5_0_1 -9717,2,78.0,0.0,6,111,2000.0,1700.0,0.0,0,74,0.0,0.0,2764.3484551518613,3700.0,0.0,3083.2099314406632,70,0,0,0,0,0,0,0,0,0,,2,,4,132041,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1204.22681515827,2000.0,31189.42704658574,0,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11862994451528514,31189.42704658574,8,4,8,8_0,8_4,8_0_0 -9718,2,59.0,0.0,6,111,1650.0,0.0,0.0,52,68,0.0,0.0,2280.5874755002856,1650.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,4,128229,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,978.015275534173,1650.0,60751.94473917375,1,1,0,1,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027159624388716164,40501.2964927825,9,5,9,9_0,9_4,9_0_0 -9719,1,71.0,232.0,1,111,300.0,300.0,0.0,0,78,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,71,2,2,2,2,1,2,2,2,0,,2,,1,132159,2,2,0,0,1,,0.0,304.0,11,0.0,2.0,2.0,1.0,1.0,1,1,185.988456815757,300.0,9497.073888097164,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,0.06317735410608837,9497.073888097164,1,1,1_1,1_0_1,1_4_1,1_1_0 -9720,2,66.0,0.0,7,111,420.0,1220.0,0.0,77,78,0.0,0.0,580.5131755818909,1640.0,0.0,2212.656539033888,50,0,0,0,0,0,0,0,0,0,,1,,5,131622,2,1,2,0,1,,600.0,,41,0.0,1.0,5.0,3.0,2.0,4,3,892.663427388016,420.0,22899.130749260596,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07161843905594342,11449.565374630298,2,1,2_0,2_1_0,2_4_0,2_0_0 -9721,2,58.0,0.0,1,111,700.0,2500.0,0.0,75,48,0.0,0.0,967.5219593031513,3200.0,0.0,4534.132252118622,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,127088,2,1,2,0,1,,600.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,712.013028059035,700.0,62087.53199420059,7,1,0,1,185.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05154013853053303,41391.687996133725,9,5,9,9_1,9_4,9_1_0 -9722,2,71.0,0.0,5,111,300.0,0.0,0.0,0,74,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,124773,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,907.652059726296,300.0,27824.65386066861,0,5,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010781805283265836,27824.65386066861,7,4,7,7_0,7_4,7_0_0 -9723,2,85.0,0.0,5,111,300.0,300.0,0.0,0,75,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,31,0,0,0,0,0,0,0,0,0,,2,,3,102661,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,946.232268367179,300.0,19172.954190443295,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03129408196776834,19172.954190443295,5,3,5,5_0,5_4,5_0_0 -9724,2,25.0,0.0,2,111,1200.0,1000.0,0.0,0,63,0.0,0.0,1658.6090730911167,2200.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,2,100066,2,1,3,0,1,,800.0,,22,3.0,0.0,5.0,3.0,2.0,2,2,1065.88764434033,1200.0,33005.543276052704,0,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06665547000997915,16502.771638026352,4,2,4_0,4_1_0,4_4_0,4_0_1 -9725,1,55.0,183.0,9,111,1115.0,0.0,0.0,85,68,0.0,0.0,1541.1242637471626,1115.0,0.0,0.0,50,2,2,2,1,1,2,2,2,3,60.0,1,2004.0,6,108397,2,1,1,0,1,,380.0,,42,1.0,0.0,3.0,3.0,2.0,2,2,793.611818703863,1115.0,17802.53438930023,6,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,1,0.06263153187167234,8901.267194650114,1,1,1_1,1_1_1,1_4_1,1_0_0 -9726,2,29.0,0.0,2,111,0.0,0.0,1500.0,22,48,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,50,2,2,1,1,1,2,2,2,3,30.0,1,,2,132288,2,3,2,0,1,,520.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1065.88764434033,0.0,30503.270067224577,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.049175055549592804,16946.2611484581,4,2,4_0,4_1_0,4_4_0,4_0_1 -9727,2,59.0,0.0,1,111,570.0,1200.0,0.0,34,34,0.0,0.0,787.8393097182804,1770.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,100511,2,2,2,0,1,,560.0,,43,2.0,2.0,5.0,3.0,2.0,2,2,704.98633098696,570.0,88448.14390936663,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020011725761184207,44224.07195468331,10,5,10,10_1,10_4,10_1_0 -9728,2,43.0,0.0,1,111,1000.0,2500.0,0.0,85,33,0.0,0.0,1382.1742275759307,3500.0,0.0,4534.132252118622,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,101992,1,3,3,0,2,,522.0,480.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,2,2,144.295258809278,1000.0,56682.22692678815,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061747750393093534,19545.59549199592,5,3,5,5_1,5_4,5_1_0 -9729,2,46.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,292.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,2,,2,124148,2,2,0,1,2,,0.0,566.0,12,1.0,0.0,1.0,1.0,1.0,4,4,284.692709434927,0.0,13966.786505804834,0,1,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02090674185351368,13966.786505804834,3,2,3_0,3_0_0,3_4_0,3_0_1 -9730,2,52.0,0.0,2,111,550.0,80.0,0.0,0,54,0.0,0.0,760.1958251667618,630.0,0.0,145.09223206779592,70,0,0,0,0,0,0,0,0,2,60.0,2,,2,105501,2,1,0,1,1,281.0,0.0,299.0,12,1.0,0.0,2.0,1.0,1.0,2,2,183.260520568808,550.0,4694.7159576096265,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13419342207036788,4694.7159576096265,1,1,1_0,1_0_0,1_4_0,1_0_1 -9731,2,53.0,0.0,2,111,350.0,70.0,0.0,0,52,0.0,0.0,483.76097965157567,420.0,0.0,126.95570305932142,60,0,0,0,0,0,0,0,0,1,20.0,2,,2,119898,2,2,0,1,1,288.0,0.0,302.0,12,1.0,0.0,2.0,1.0,1.0,2,2,256.540680432291,350.0,20407.230725810005,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020580940434451297,20407.230725810005,5,3,5,5_0,5_4,5_0_1 -9732,2,36.0,0.0,1,111,0.0,0.0,470.0,63,63,0.0,0.0,240.12926737363676,470.0,0.0,537.3255140867368,10,0,0,0,0,0,0,0,0,2,10.0,2,,1,125832,2,3,0,1,1,303.0,0.0,328.0,43,2.0,0.0,3.0,3.0,1.8,3,2,215.698275171558,0.0,29681.088318984504,4,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01583499887028672,16489.493510546945,4,2,4_0,4_0_0,4_4_0,4_1_0 -9733,2,45.0,0.0,2,111,600.0,700.0,0.0,0,52,0.0,0.0,829.3045365455583,1300.0,0.0,1269.5570305932142,50,1,2,2,2,1,2,2,2,3,45.0,2,,2,113376,1,3,0,1,1,303.0,0.0,325.0,32,3.0,0.0,3.0,4.0,2.5,1,1,207.809108867566,600.0,11980.40681570327,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.1085105055277447,4792.162726281308,1,1,1_0,1_0_0,1_4_0,1_0_1 -9734,2,37.0,0.0,2,111,610.0,300.0,0.0,0,68,0.0,0.0,843.1262788213177,910.0,0.0,544.0958702542347,70,0,0,0,0,0,0,0,0,0,,2,,2,103921,2,1,0,0,1,,0.0,440.0,22,2.0,2.0,1.0,2.0,1.5,1,1,1118.42618772003,610.0,23764.344917283463,0,1,2,3,18.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03829266083990265,15842.896611522308,3,2,3_0,3_0_0,3_4_0,3_0_1 -9735,2,39.0,0.0,6,111,1700.0,0.0,0.0,33,47,0.0,77.63793786145933,2349.696186879082,1925.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,,4,122576,2,2,2,0,1,,1000.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,788.008140832424,1700.0,54095.03566044442,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03558552049181116,25759.540790687817,7,4,7,7_1,7_4,7_0_0 -9736,2,68.0,0.0,1,111,1200.0,3000.0,0.0,77,74,0.0,0.0,1658.6090730911167,4200.0,0.0,5440.958702542347,50,0,0,0,0,0,0,0,0,0,,1,,1,128716,2,2,3,0,1,,250.0,,41,2.0,2.0,5.0,5.0,3.0,2,2,571.150211568641,1200.0,9720.241795391796,6,5,0,1,210.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.43208801678072967,3240.080598463932,1,1,1_0,1_1_0,1_4_0,1_1_0 -9737,2,58.0,0.0,1,111,1050.0,2600.0,0.0,77,38,0.0,0.0,1451.2829389547271,3650.0,0.0,4715.497542203367,42,0,0,0,0,0,0,0,0,3,60.0,1,,1,132232,2,2,1,0,1,,720.0,,42,1.0,0.0,7.0,4.0,2.5,2,2,676.013843130443,1050.0,92767.67591478511,6,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03934560140703353,37107.07036591404,9,5,9,9_1,9_4,9_1_0 -9738,1,42.0,600.0,1,111,500.0,0.0,0.0,85,21,2091.018827825201,0.0,691.0871137879653,2284.0,660.6055696090336,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,128201,2,3,0,2,1,,0.0,780.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,577.84624389706,500.0,11770.560009319095,6,1,2,3,55.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.19404344382864458,4359.466670118184,1,1,1_1,1_0_1,1_4_1,1_1_0 -9739,2,51.0,0.0,7,111,600.0,400.0,0.0,42,48,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,126743,2,1,2,0,1,,416.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,860.014254711258,600.0,63759.45418978103,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015683948564294233,25503.78167591241,7,4,7,7_1,7_4,7_0_0 -9740,1,57.0,221.0,2,111,138.0,0.0,0.0,0,62,0.0,0.0,190.74004340547842,138.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,100635,2,3,0,1,1,220.0,0.0,207.0,12,1.0,0.0,1.0,1.0,1.0,1,1,946.607764840063,138.0,6076.874971198873,0,4,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02270904052725224,6076.874971198873,1,1,1_1,1_0_1,1_4_1,1_0_1 -9741,1,37.0,224.0,2,111,200.0,100.0,0.0,0,22,0.0,0.0,276.4348455151861,300.0,0.0,181.36529008474488,42,2,1,2,2,1,2,2,2,0,,2,,2,116948,2,2,0,1,1,200.0,0.0,210.0,12,1.0,0.0,1.0,1.0,1.0,2,2,946.607764840063,200.0,10198.608888888888,0,4,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.029415776530742538,10198.608888888888,2,1,2_1,2_0_1,2_4_1,2_0_1 -9742,2,45.0,0.0,2,111,250.0,550.0,0.0,54,53,0.0,0.0,345.54355689398267,800.0,0.0,997.5090954660969,71,1,1,2,2,1,2,2,2,2,15.0,2,,2,110975,2,3,0,1,1,376.0,0.0,293.0,43,2.0,0.0,3.0,4.0,2.5,2,2,739.290205711227,250.0,52997.81814922982,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015094961036837058,21199.127259691926,5,3,5,5_0,5_4,5_0_1 -9743,2,48.0,0.0,2,111,420.0,420.0,0.0,52,52,0.0,0.0,580.5131755818909,840.0,0.0,761.7342183559285,44,2,2,2,2,1,2,2,2,3,20.0,2,,2,121287,2,2,0,1,1,444.0,0.0,381.0,43,2.0,2.0,3.0,3.0,2.0,1,1,992.672438365743,420.0,37486.447906932124,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.022408098043470912,18743.223953466062,5,3,5,5_0,5_4,5_0_1 -9744,2,55.0,0.0,2,111,230.0,90.0,0.0,0,48,0.0,0.0,317.900072342464,320.0,0.0,163.2287610762704,33,0,0,0,0,0,0,0,0,2,10.0,2,,2,108660,2,2,0,1,1,512.0,0.0,315.0,12,1.0,0.0,3.0,1.0,1.0,4,3,876.92627128256,230.0,25009.490618697182,0,1,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012795142647198375,25009.490618697182,7,4,7,7_0,7_4,7_0_1 -9745,1,53.0,150.0,7,111,800.0,0.0,0.0,63,56,0.0,0.0,1105.7393820607444,1220.0,722.5373417598805,0.0,33,0,0,0,0,0,0,0,0,3,120.0,1,,5,103737,2,1,1,0,1,,400.0,,43,2.0,2.0,5.0,5.0,3.0,2,2,629.841770084231,800.0,32014.02633604488,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03810829625720621,10671.34211201496,2,1,2_1,2_1_1,2_4_1,2_0_0 -9746,2,68.0,0.0,2,111,0.0,0.0,673.0,77,77,0.0,0.0,343.84467434565437,673.0,0.0,769.4044063412209,20,0,0,0,0,0,0,0,0,0,,2,,2,114201,2,2,0,1,1,422.0,0.0,346.0,41,1.0,2.0,4.0,3.0,2.0,2,2,810.442493411395,0.0,60298.416114279054,5,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011161155522302837,30149.208057139527,8,4,8,8_0,8_4,8_0_1 -9747,1,35.0,100.0,2,111,1200.0,1200.0,0.0,55,64,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,2,,2,101042,1,2,0,0,2,,0.0,,43,2.0,0.0,2.0,5.0,2.4,1,1,987.295866487045,1200.0,24442.00920752319,1,1,0,1,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09819160035588588,10184.170503134663,2,1,2_1,2_0_1,2_4_1,2_0_1 -9748,2,54.0,0.0,2,111,600.0,2000.0,0.0,0,42,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,132383,2,2,0,0,2,,964.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,1165.26394239976,600.0,39978.0,0,1,1,2,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06503576967332032,26652.0,7,4,7,7_0,7_4,7_0_1 -9749,2,66.0,0.0,5,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,102793,2,1,0,0,1,,303.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1069.14465265537,0.0,23359.495538734096,0,5,0,1,47.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019264114640396318,23359.495538734096,6,3,6,6_0,6_4,6_0_0 -9750,2,31.0,0.0,5,111,800.0,0.0,0.0,0,56,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,40.0,2,,3,128377,1,2,0,0,2,,0.0,600.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1162.09569014328,800.0,17736.157663822753,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04510559813255361,17736.157663822753,4,2,4_0,4_0_0,4_4_0,4_0_0 -9751,2,70.0,0.0,7,111,94.0,0.0,0.0,0,75,0.0,0.0,129.92437739213747,94.0,0.0,0.0,31,2,2,2,2,2,2,2,1,0,,2,,5,103219,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1137.73504975433,94.0,22173.364574532723,0,5,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0042393205453341055,22173.364574532723,6,3,6,6_0,6_4,6_0_0 -9752,2,56.0,0.0,5,111,200.0,0.0,0.0,62,37,0.0,0.0,276.4348455151861,200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,75.0,2,,3,126133,2,2,0,1,1,,0.0,,43,2.0,4.0,2.0,2.0,1.5,2,2,868.446560966096,200.0,95584.16161545287,1,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0020923968638719165,63722.774410301914,10,5,10,10_0,10_4,10_0_0 -9753,2,64.0,0.0,1,111,500.0,1800.0,0.0,0,75,0.0,0.0,691.0871137879653,2300.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,2,,1,117571,2,1,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1041.66698872093,500.0,37658.85950313905,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06107460582570972,37658.85950313905,9,5,9,9_0,9_4,9_1_0 -9754,2,52.0,0.0,7,111,1039.0,0.0,0.0,85,43,0.0,0.0,1436.079022451392,1039.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,55.0,2,,5,132020,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,6.0,3.3,1,1,1037.25467344361,1039.0,33348.34089744364,6,1,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031155972742249554,10105.557847710194,2,1,2_0,2_0_0,2_4_0,2_0_0 -9755,2,79.0,0.0,2,111,350.0,900.0,0.0,0,90,0.0,0.0,483.76097965157567,1250.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,2,,2,103578,2,2,0,0,1,,60.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1450.40156238206,350.0,27124.063079865275,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04608454110726131,27124.063079865275,7,4,7,7_0,7_4,7_0_1 -9756,1,65.0,250.0,1,111,540.0,0.0,0.0,0,78,0.0,0.0,746.3740828910024,540.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,8,,1,115760,1,3,0,0,1,,0.0,630.0,11,0.0,3.0,1.0,1.0,1.0,2,2,898.533124302546,540.0,12321.259981379524,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.04382668662264036,12321.259981379524,2,1,2_1,2_0_1,2_4_1,2_1_0 -9757,2,66.0,0.0,2,111,1100.0,400.0,0.0,77,78,0.0,0.0,1520.3916503335236,1500.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,,2,111631,1,3,0,1,1,1400.0,0.0,336.0,41,3.0,0.0,4.0,6.0,3.5,2,2,214.851744269966,1100.0,22206.939768566444,6,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06754645239877784,6344.839933876127,1,1,1_0,1_0_0,1_4_0,1_0_1 -9758,2,58.0,0.0,2,111,1200.0,1300.0,0.0,0,22,0.0,0.0,1658.6090730911167,2960.0,791.3504219274881,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,1,,2,133171,2,1,2,0,1,,1500.0,,32,1.0,0.0,6.0,5.0,3.0,3,3,799.586530957602,1200.0,6810.150118465689,0,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4346453379895363,2270.050039488563,1,1,1_0,1_1_0,1_4_0,1_0_1 -9759,2,31.0,0.0,6,111,1320.0,0.0,0.0,21,21,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,123762,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1070.37307519641,1320.0,17791.267420768036,1,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07419370238115484,8472.032105127635,1,1,1_0,1_0_0,1_4_0,1_0_0 -9760,2,62.0,0.0,2,111,830.0,1500.0,0.0,54,78,0.0,0.0,1147.2046088880224,2330.0,0.0,2720.4793512711735,12,0,0,0,0,0,0,0,0,0,,1,,2,113714,2,1,3,0,1,,300.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1081.65680760248,830.0,32369.17157064691,1,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07198207080816663,21579.447713764606,6,3,6,6_1,6_4,6_0_1 -9761,2,60.0,0.0,6,111,600.0,0.0,0.0,52,65,0.0,0.0,829.3045365455583,600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,132227,2,2,0,0,1,,0.0,580.0,43,2.0,1.0,3.0,2.0,1.5,2,2,836.454363801726,600.0,41513.67937672946,1,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014453067254171904,27675.78625115297,7,4,7,7_0,7_4,7_0_0 -9762,2,46.0,0.0,5,111,650.0,0.0,0.0,85,62,0.0,0.0,898.4132479243549,878.0,0.0,0.0,60,2,2,2,1,2,2,2,2,3,90.0,2,,3,103073,1,2,0,1,2,,0.0,,42,1.0,1.0,3.0,4.0,2.1,1,1,763.890370857378,650.0,27814.519556190568,6,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0315662471978448,13245.009312471699,2,1,2_0,2_0_0,2_4_0,2_0_0 -9763,2,25.0,0.0,2,111,335.0,335.0,0.0,0,85,0.0,0.0,463.0283662379367,670.0,0.0,607.5737217838954,50,1,2,2,1,1,2,2,2,0,,2,,2,101544,2,3,0,1,1,600.0,0.0,347.0,21,1.0,0.0,2.0,2.0,1.5,3,2,821.046357972245,335.0,4612.524970111797,0,7,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.14525666621675995,3075.016646741198,1,1,1_0,1_0_0,1_4_0,1_0_1 -9764,1,43.0,300.0,2,111,750.0,2100.0,0.0,85,63,0.0,0.0,1036.630670681948,2850.0,0.0,3808.6710917796427,50,0,0,0,0,0,0,0,0,0,,2,,2,102503,2,3,0,0,1,,700.0,700.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,1359.26278623811,750.0,24619.501148958316,6,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11576189065555406,9118.33375887345,1,1,1_1,1_0_1,1_4_1,1_0_1 -9765,1,27.0,246.0,2,111,200.0,150.0,0.0,0,54,0.0,0.0,276.4348455151861,350.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,2,40.0,2,,2,123585,2,2,0,1,1,,0.0,450.0,32,1.0,0.0,3.0,2.0,1.3,1,1,777.332937086005,200.0,18585.199663624295,0,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018832189394501594,14296.30743355715,3,2,3_1,3_0_1,3_4_1,3_0_1 -9766,2,81.0,0.0,6,111,720.0,1600.0,0.0,78,78,0.0,0.0,995.16544385467,2320.0,0.0,2901.844641355918,20,0,0,0,0,0,0,0,0,0,,1,,4,107908,2,1,2,0,2,,760.0,,41,0.0,0.0,3.0,2.0,1.5,3,3,880.515412988351,720.0,17908.658732526354,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12954627337815824,11939.105821684236,2,1,2_0,2_1_0,2_4_0,2_0_0 -9767,2,60.0,0.0,1,111,100.0,190.0,0.0,0,56,0.0,0.0,138.21742275759306,290.0,0.0,344.5940511610153,70,0,0,0,0,0,0,0,0,3,30.0,1,,1,121539,2,2,2,0,1,,100.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,781.760570186512,100.0,10213.282908138823,0,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028394396063277857,10213.282908138823,2,1,2_0,2_1_0,2_4_0,2_1_0 -9768,1,76.0,130.0,2,111,500.0,120.0,0.0,0,86,0.0,0.0,691.0871137879653,620.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,2,116503,2,1,0,1,2,,500.0,640.0,21,1.0,0.0,5.0,3.0,2.0,2,2,158.252962759247,500.0,34808.75524461561,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017811610775593723,17404.377622307806,4,2,4_1,4_0_1,4_4_1,4_0_1 -9769,1,51.0,500.0,2,111,200.0,200.0,0.0,0,85,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,0,,2,,2,115736,2,1,0,1,1,,0.0,350.0,31,1.0,2.0,6.0,4.0,2.5,1,1,201.912444052757,200.0,5043.10882746884,0,7,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07931615471418686,2017.243530987536,1,1,1_1,1_0_1,1_4_1,1_0_1 -9770,2,35.0,0.0,5,111,420.0,240.0,0.0,64,52,0.0,0.0,580.5131755818909,660.0,0.0,435.27669620338776,50,0,0,0,0,0,0,0,0,2,2.0,2,,3,100308,2,1,0,1,1,600.0,0.0,412.0,43,2.0,0.0,3.0,4.0,2.1,2,2,738.031195333431,420.0,41369.4650725633,1,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015953795845373875,19699.745272649187,5,3,5,5_0,5_4,5_0_0 -9771,1,46.0,306.0,2,111,1100.0,0.0,0.0,0,53,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,118937,2,2,0,0,2,,0.0,500.0,32,1.0,0.0,1.0,2.0,1.3,2,2,971.740346700837,1100.0,10887.846667337573,0,4,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10103007817880899,8375.266667182748,1,1,1_1,1_0_1,1_4_1,1_0_1 -9773,2,32.0,0.0,2,111,420.0,900.0,0.0,52,45,0.0,0.0,580.5131755818909,1320.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,109055,1,3,0,0,1,,0.0,458.0,43,2.0,0.0,3.0,3.0,1.8,2,2,990.981918334503,420.0,41338.419983716,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03193155424227567,22965.78887984222,6,3,6,6_0,6_4,6_0_1 -9774,2,55.0,0.0,2,111,250.0,1450.0,0.0,52,45,0.0,0.0,345.54355689398267,1700.0,0.0,2629.7967062288008,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,128141,2,2,3,0,1,,570.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,945.766768626365,250.0,55914.630815784985,1,1,0,1,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030403491451115535,37276.42054385666,9,5,9,9_1,9_4,9_0_1 -9775,1,31.0,610.0,2,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,418.0,206.439240502823,0.0,50,2,2,2,1,2,2,2,2,3,30.0,2,,2,115461,2,2,0,0,1,,356.0,620.0,42,1.0,1.0,1.0,6.0,2.6999999999999997,4,3,966.264802273155,0.0,19398.32796019564,6,1,2,3,34.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.021548248944842786,7184.56591118357,1,1,1_1,1_0_1,1_4_1,1_0_1 -9776,2,87.0,0.0,1,111,360.0,2055.0,0.0,0,77,0.0,0.0,497.582721927335,2415.0,0.0,3727.0567112415074,71,0,0,0,0,0,0,0,0,0,,1,,1,101925,2,1,2,0,1,,211.0,,11,0.0,1.0,6.0,1.0,1.0,4,4,225.015850509698,360.0,31745.66694756306,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07607337417068777,31745.66694756306,8,4,8,8_1,8_4,8_1_0 -9777,1,52.0,432.0,2,111,0.0,0.0,750.0,0,52,0.0,0.0,383.18500112814377,750.0,0.0,857.4343309894736,43,0,0,0,0,0,0,0,0,3,30.0,2,,2,133686,1,3,0,1,1,468.0,0.0,401.0,32,1.0,1.0,4.0,3.0,1.6,1,1,213.872907548178,0.0,19617.447144616912,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038231274154639554,12260.904465385569,2,1,2_1,2_0_1,2_4_1,2_0_1 -9778,2,38.0,0.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,1824.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,119760,2,2,2,0,1,,902.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,1,1,1073.70177018041,0.0,38675.54886059706,6,1,1,2,115.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047161580216339344,14324.27735577669,3,2,3_0,3_1_0,3_4_0,3_0_1 -9779,1,30.0,420.0,6,111,1650.0,0.0,0.0,85,63,0.0,0.0,2280.5874755002856,1650.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,4,116066,1,3,0,0,2,,0.0,699.0,42,1.0,0.0,2.0,3.0,1.8,2,2,1128.34194356897,1650.0,19072.48114691204,6,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08651207922505383,10595.822859395577,2,1,2_1,2_0_1,2_4_1,2_0_0 -9780,1,37.0,350.0,2,111,960.0,0.0,0.0,85,63,0.0,0.0,1326.8872584728933,1160.0,344.06540083803833,0.0,50,2,2,2,2,2,1,2,2,0,,2,,2,107956,1,2,0,0,2,,0.0,558.0,42,1.0,0.0,2.0,4.0,2.1,2,2,1025.80372788427,960.0,14322.940780911755,6,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.08098895455505457,6820.447990910359,1,1,1_1,1_0_1,1_4_1,1_0_1 -9781,2,63.0,0.0,1,111,0.0,0.0,1900.0,77,75,0.0,0.0,970.7353361912976,1900.0,0.0,2172.16697184,42,0,0,0,0,0,0,0,0,0,,1,,1,132736,2,1,2,0,1,,480.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,1028.39987712032,0.0,52003.80858838246,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036535785581374824,34669.205725588305,9,5,9,9_1,9_4,9_1_0 -9782,2,52.0,0.0,1,111,450.0,3500.0,0.0,54,46,0.0,0.0,621.9784024091688,3950.0,0.0,6347.785152966071,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,114523,2,2,3,0,1,,220.0,896.0,43,2.0,0.0,4.0,3.0,2.0,2,2,715.963207153817,450.0,55647.85753674588,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07098206786113376,27823.92876837294,7,4,7,7_1,7_4,7_1_0 -9783,2,53.0,0.0,5,111,0.0,0.0,200.0,0,56,0.0,0.0,102.18266696750501,200.0,0.0,228.6491549305263,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,111495,1,1,0,1,2,,150.0,,12,1.0,0.0,1.0,1.0,1.0,4,3,1192.78997635332,0.0,26296.39674519873,0,1,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007605604750259808,26296.39674519873,7,4,7,7_0,7_4,7_0_0 -9784,2,30.0,0.0,2,111,320.0,400.0,0.0,0,56,0.0,0.0,442.2957528242978,720.0,0.0,725.4611603389795,70,0,0,0,0,0,0,0,0,3,60.0,1,,2,119216,2,3,2,0,1,,500.0,,22,2.0,0.0,4.0,2.0,1.5,1,1,1234.96542419269,320.0,21652.72683725868,0,1,1,2,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03325216289899655,14435.151224839121,3,2,3_0,3_1_0,3_4_0,3_0_1 -9786,1,43.0,520.0,7,111,430.0,1450.0,0.0,85,55,0.0,0.0,594.3349178576501,1880.0,0.0,2629.7967062288008,71,0,0,0,0,0,0,0,0,0,,2,,5,127165,2,2,0,0,1,,0.0,882.0,42,1.0,0.0,4.0,5.0,2.4,1,1,970.015227367659,430.0,17258.49709222819,6,4,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10893184904533765,7191.04045509508,1,1,1_1,1_0_1,1_4_1,1_0_0 -9787,2,72.0,0.0,1,111,500.0,200.0,0.0,0,78,0.0,0.0,691.0871137879653,700.0,0.0,362.73058016948977,60,0,0,0,0,0,0,0,0,0,,2,,1,108226,1,2,0,0,2,,120.0,,11,0.0,0.0,1.0,1.0,1.0,3,3,938.599043651886,500.0,13070.283750191034,0,5,0,1,27.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05355660316018532,13070.283750191034,2,1,2_0,2_0_0,2_4_0,2_1_0 -9788,2,71.0,0.0,2,111,0.0,2345.0,0.0,0,77,0.0,0.0,0.0,3980.0,0.0,4253.016052487268,43,0,0,0,0,0,0,0,0,0,,1,,2,109886,1,3,4,0,2,,0.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,2496.60851137028,0.0,9228.194429585099,0,5,0,1,168.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4312869684713547,9228.194429585099,1,1,1_0,1_1_0,1_4_0,1_0_1 -9789,2,52.0,0.0,2,111,0.0,0.0,3410.0,42,46,0.0,0.0,1742.2144717959607,5269.0,0.0,3898.4680915654735,71,0,0,0,0,0,0,0,0,3,45.0,1,,2,116077,2,1,1,0,1,,840.0,,43,2.0,0.0,7.0,5.0,3.0,2,2,1778.2674169126,0.0,101576.88820097127,1,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05187203598494976,33858.96273365709,9,5,9,9_1,9_4,9_0_1 -9790,2,34.0,0.0,2,111,275.0,200.0,0.0,38,38,0.0,0.0,380.0979125833809,475.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,3,40.0,2,,2,107475,2,2,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,3,3,1109.58179433161,275.0,155932.21396087037,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003046195445664592,64971.75581702933,10,5,10,10_0,10_4,10_0_1 -9791,2,70.0,0.0,2,111,600.0,200.0,0.0,0,74,0.0,0.0,829.3045365455583,800.0,0.0,362.73058016948977,20,0,0,0,0,0,0,0,0,0,,2,,2,115261,2,1,0,1,1,,0.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,2234.902521279,600.0,32146.006624516725,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024886450418070458,32146.006624516725,8,4,8,8_0,8_4,8_0_1 -9792,2,53.0,0.0,7,111,1000.0,0.0,0.0,90,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,,5,116537,2,1,0,0,1,336.0,0.0,768.0,42,1.0,0.0,2.0,2.0,1.5,2,2,3069.59617390865,1000.0,53699.02355621853,5,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018622312544530367,35799.34903747902,9,5,9,9_0,9_4,9_0_0 -9793,2,48.0,0.0,2,111,300.0,0.0,0.0,38,56,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,120505,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.8,2,2,1553.2689071798,300.0,122359.78467048783,1,1,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0024517859426436005,43699.9230966028,10,5,10,10_0,10_4,10_0_1 -9794,2,88.0,0.0,2,111,380.0,0.0,0.0,75,75,0.0,0.0,525.2262064788536,380.0,0.0,0.0,31,1,2,2,2,2,2,2,1,0,,2,,2,129829,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1827.75217374392,380.0,67686.48882852687,5,5,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00561411895603967,45124.32588568458,10,5,10,10_0,10_4,10_0_1 -9795,2,69.0,0.0,2,111,388.0,1155.0,0.0,75,74,0.0,0.0,536.2836002994611,1543.0,0.0,2094.7691004788035,44,0,0,0,0,0,0,0,0,0,,1,,2,117377,2,2,3,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,6,4,2286.494210997,388.0,78226.97502668004,5,5,0,1,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01972465379715559,52151.31668445336,10,5,10,10_1,10_4,10_0_1 -9796,1,39.0,293.0,2,111,580.0,520.0,0.0,0,56,0.0,0.0,801.6610519940398,1100.0,0.0,943.0995084406734,50,0,0,0,0,0,0,0,0,0,,2,,2,100727,2,1,0,1,1,576.0,0.0,330.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1338.43654269737,580.0,13974.707342028549,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07871363407316447,8734.192088767843,1,1,1_1,1_0_1,1_4_1,1_0_1 -9797,1,45.0,366.0,2,111,380.0,320.0,0.0,0,56,0.0,0.0,525.2262064788536,700.0,0.0,580.3689282711837,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,117587,2,2,0,1,1,650.0,0.0,330.0,32,1.0,0.0,3.0,3.0,2.0,1,1,1338.43654269737,380.0,30173.075205441037,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023199491441753033,15086.537602720518,3,2,3_1,3_0_1,3_4_1,3_0_1 -9798,2,58.0,0.0,5,111,220.0,80.0,0.0,0,43,0.0,0.0,304.0783300667047,300.0,0.0,145.09223206779592,42,0,0,0,0,0,0,0,0,2,45.0,2,,3,106079,2,2,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1305.75750973132,220.0,27186.40091732316,0,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011034928856980115,27186.40091732316,7,4,7,7_0,7_4,7_0_0 -9799,2,37.0,0.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,603.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,126286,2,1,0,1,1,360.0,0.0,380.0,32,1.0,0.0,1.0,2.0,1.3,2,2,1938.62855660425,0.0,9229.59350317402,0,4,3,4,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06533332153714362,7099.687310133861,1,1,1_0,1_0_0,1_4_0,1_0_0 -9800,2,65.0,0.0,5,111,0.0,0.0,450.0,0,75,0.0,0.0,229.91100067688626,450.0,0.0,514.4605985936842,33,0,0,0,0,0,0,0,0,0,,2,,3,124362,2,2,0,1,1,640.0,0.0,492.0,11,0.0,1.0,4.0,1.0,1.0,2,2,1512.88982869324,0.0,21925.990095922698,0,5,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020523588582833523,21925.990095922698,6,3,6,6_0,6_4,6_0_0 -9801,2,52.0,0.0,2,111,0.0,0.0,0.0,62,52,0.0,0.0,0.0,1513.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,126453,2,1,0,1,1,400.0,0.0,770.0,43,2.0,5.0,3.0,2.0,1.5,3,2,1453.37058033744,0.0,34773.52694422471,4,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04351011050523547,23182.351296149805,6,3,6,6_0,6_4,6_0_1 -9802,1,41.0,237.0,1,111,180.0,0.0,0.0,0,43,0.0,0.0,248.7913609636675,260.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,113193,2,3,0,0,1,,0.0,308.0,12,1.0,2.0,2.0,1.0,1.0,2,2,271.074711380621,180.0,11126.246102377707,0,4,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023368169066873088,11126.246102377707,2,1,2_1,2_0_1,2_4_1,2_1_0 -9803,2,44.0,0.0,6,111,400.0,0.0,0.0,0,46,0.0,0.0,552.8696910303722,400.0,0.0,0.0,12,1,1,2,1,1,2,2,2,2,15.0,2,,4,103951,2,1,0,2,1,570.0,0.0,497.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1343.46691395431,400.0,32570.0,0,1,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012281240405280933,25053.846153846152,7,4,7,7_0,7_4,7_0_0 -9804,2,70.0,0.0,1,111,400.0,2000.0,0.0,46,74,0.0,0.0,552.8696910303722,2400.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,1,131013,2,1,2,0,1,,0.0,,42,1.0,0.0,5.0,3.0,1.8,1,1,771.290364160382,400.0,73960.00726766004,1,5,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03244996976966808,41088.8929264778,9,5,9,9_1,9_4,9_1_0 -9805,2,32.0,0.0,2,111,330.0,0.0,0.0,0,47,0.0,0.0,456.1174951000571,330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108247,1,1,0,1,1,72.0,0.0,372.0,12,1.0,3.0,4.0,1.0,1.0,2,2,1432.45881376907,330.0,25513.11289807858,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012934525132950462,25513.11289807858,7,4,7,7_0,7_4,7_0_1 -9806,1,29.0,370.0,2,111,660.0,490.0,0.0,0,53,0.0,0.0,912.2349902001142,1150.0,0.0,888.68992141525,71,2,1,2,1,2,2,2,2,0,,2,,2,123541,1,2,0,1,1,610.0,0.0,322.0,32,1.0,0.0,3.0,4.0,1.9,2,2,1289.48321442305,660.0,13676.707361087478,0,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08408456579775499,7198.267032151304,1,1,1_1,1_0_1,1_4_1,1_0_1 -9807,2,48.0,0.0,2,111,250.0,0.0,0.0,0,56,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,60.0,2,,2,129098,2,2,0,1,1,528.0,0.0,381.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1795.87963409843,250.0,4849.521935719155,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05155147317895913,4849.521935719155,1,1,1_0,1_0_0,1_4_0,1_0_1 -9808,2,57.0,0.0,6,111,450.0,1200.0,0.0,86,68,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,71,2,2,2,1,2,2,2,2,1,5.0,2,,4,129001,2,2,0,0,1,,0.0,682.0,42,5.0,0.0,5.0,9.0,5.0,1,1,338.351482396799,450.0,90229.7537606698,5,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01828665081339519,18045.950752133962,4,2,4_0,4_0_0,4_4_0,4_0_0 -9809,2,52.0,0.0,6,111,1500.0,800.0,0.0,31,56,0.0,0.0,2073.261341363896,2300.0,0.0,1450.922320677959,50,2,2,2,1,2,2,2,2,3,30.0,2,,4,104247,2,3,0,0,1,,0.0,507.0,43,2.0,4.0,4.0,2.0,1.5,2,2,257.173713014275,1500.0,15869.061972224139,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.1449361029672532,10579.374648149425,2,1,2_0,2_0_0,2_4_0,2_0_0 -9810,1,36.0,273.0,2,111,0.0,0.0,0.0,85,54,0.0,0.0,0.0,1307.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131870,2,2,0,0,1,,0.0,428.0,42,1.0,0.0,4.0,4.0,2.1,1,1,275.360131951861,0.0,26967.807400262165,6,1,2,3,84.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.048465193354476944,12841.813047743888,2,1,2_1,2_0_1,2_4_1,2_0_1 -9811,2,60.0,0.0,5,111,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,250.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,122619,1,2,0,1,2,,0.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,304.188250845083,250.0,20189.21780075605,0,5,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012382847243870832,20189.21780075605,5,3,5,5_0,5_4,5_0_0 -9812,2,39.0,0.0,2,111,0.0,0.0,0.0,56,31,0.0,0.0,0.0,563.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,127963,2,1,0,0,1,,0.0,512.0,43,2.0,0.0,1.0,2.0,1.5,2,2,972.160684229519,0.0,29294.734065928267,1,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01921847109903642,19529.822710618846,5,3,5,5_0,5_4,5_0_1 -9813,2,40.0,0.0,2,111,500.0,340.0,0.0,52,63,0.0,0.0,691.0871137879653,840.0,0.0,616.6419862881327,44,0,0,0,0,0,0,0,0,2,15.0,2,,2,103336,2,2,0,1,1,476.0,0.0,324.0,43,2.0,0.0,4.0,5.0,2.4,2,2,185.196202370839,500.0,33103.063127137764,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02537529523397402,13792.942969640735,3,2,3_0,3_0_0,3_4_0,3_0_1 -9814,2,42.0,0.0,2,111,600.0,320.0,0.0,0,63,0.0,0.0,829.3045365455583,920.0,0.0,580.3689282711837,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,123424,2,2,0,1,1,605.0,0.0,365.0,12,1.0,5.0,4.0,1.0,1.0,1,1,260.007246781384,600.0,18029.65212331258,0,1,2,3,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05102705219755337,18029.65212331258,4,2,4_0,4_0_0,4_4_0,4_0_1 -9815,2,48.0,0.0,2,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,407.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,110248,2,1,0,1,1,1900.0,0.0,469.0,42,1.0,0.0,3.0,3.0,1.8,1,1,215.42408513707,0.0,32836.61182196451,6,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012394701445042405,18242.562123313615,4,2,4_0,4_0_0,4_4_0,4_0_1 -9816,2,66.0,0.0,2,111,800.0,600.0,0.0,86,77,0.0,0.0,1105.7393820607444,1400.0,0.0,1088.1917405084694,31,0,0,0,0,0,0,0,0,0,,2,,2,113958,2,2,0,1,1,725.0,0.0,387.0,41,0.0,3.0,3.0,2.0,1.5,2,2,296.425277000893,800.0,16021.40500705982,6,5,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08738309776096984,10680.936671373214,2,1,2_0,2_0_0,2_4_0,2_0_1 -9817,1,47.0,387.0,2,111,450.0,0.0,0.0,0,81,0.0,0.0,621.9784024091688,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,128012,2,2,0,1,1,636.0,0.0,369.0,22,1.0,1.0,3.0,2.0,1.5,2,2,218.597160269302,450.0,21932.93225616497,0,4,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020517092504743078,14621.954837443314,3,2,3_1,3_0_1,3_4_1,3_0_1 -9818,1,54.0,415.0,5,111,500.0,600.0,0.0,0,62,0.0,0.0,691.0871137879653,1100.0,0.0,1088.1917405084694,31,0,0,0,0,0,0,0,0,0,,2,,3,102152,1,2,0,1,2,660.0,0.0,374.0,32,1.0,3.0,4.0,5.0,2.5999999999999996,1,1,164.219694542159,500.0,20699.04214047091,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05314255570547743,7961.170054027274,1,1,1_1,1_0_1,1_4_1,1_0_0 -9819,2,45.0,0.0,9,111,0.0,0.0,0.0,42,22,0.0,0.0,0.0,633.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,2006.0,6,122922,2,3,0,0,1,,0.0,583.0,43,2.0,1.0,2.0,2.0,1.5,2,2,1097.84942827808,0.0,37583.686424839674,1,4,2,3,53.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016842413829358686,25055.790949893115,7,4,7,7_0,7_4,7_0_0 -9820,1,54.0,91.0,2,111,580.0,460.0,0.0,52,21,0.0,0.0,801.6610519940398,1040.0,0.0,834.2803343898265,50,0,0,0,0,0,0,0,0,0,,2,,2,119102,2,2,0,1,1,519.0,0.0,303.0,43,2.0,0.0,3.0,5.0,2.4,3,3,175.350463286416,580.0,37324.8418990878,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02786348038155835,15552.01745795325,3,2,3_1,3_0_1,3_4_1,3_0_1 -9821,2,40.0,0.0,2,111,320.0,400.0,0.0,0,56,0.0,0.0,442.2957528242978,720.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,109860,1,2,0,1,2,,0.0,389.0,32,2.0,0.0,2.0,2.0,1.5,2,2,235.58911826782,320.0,17063.51556631663,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04219529071847771,11375.677044211086,2,1,2_0,2_0_0,2_4_0,2_0_1 -9822,0,31.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,302.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,112123,2,2,0,1,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,273.661112564917,0.0,681.5294250943631,0,4,5,0,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.4431209994464813,681.5294250943631,1,1,1_0,1_0_0,1_4_0,1_0_1 -9823,2,50.0,0.0,2,111,280.0,100.0,0.0,56,54,0.0,0.0,387.00878372126056,380.0,0.0,181.36529008474488,50,1,1,2,1,2,2,2,2,3,20.0,2,,2,131899,2,3,0,1,1,684.0,0.0,344.0,43,2.0,0.0,3.0,2.0,1.5,2,2,218.597160269302,280.0,29397.554698754488,4,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012926245189233368,19598.369799169657,5,3,5,5_0,5_4,5_0_1 -9824,2,44.0,0.0,2,111,800.0,600.0,0.0,85,52,0.0,0.0,1105.7393820607444,1400.0,0.0,1088.1917405084694,33,0,0,0,0,0,0,0,0,3,60.0,2,,2,117786,2,2,0,1,1,970.0,0.0,376.0,42,1.0,2.0,4.0,3.0,2.0,1,1,227.274017093612,800.0,26769.849058705924,7,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05229764265498168,13384.924529352962,3,2,3_0,3_0_0,3_4_0,3_0_1 -9825,2,47.0,0.0,2,111,450.0,280.0,0.0,55,56,0.0,0.0,621.9784024091688,730.0,0.0,507.8228122372857,71,2,1,2,1,2,1,2,2,3,45.0,2,,2,108391,2,2,0,1,1,412.0,0.0,378.0,43,2.0,0.0,3.0,2.0,1.5,2,2,218.360906050426,450.0,22808.331729416583,4,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.032005848067287505,15205.554486277722,3,2,3_0,3_0_0,3_4_0,3_0_1 -9826,2,56.0,0.0,2,111,850.0,700.0,0.0,67,63,0.0,82.81380038555662,1174.848093439541,1630.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,131905,2,2,0,3,1,750.0,0.0,473.0,43,2.0,0.0,4.0,6.0,3.3,1,1,235.197535726211,850.0,45086.05199335713,4,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03615308788270395,13662.439997987009,3,2,3_0,3_0_0,3_4_0,3_0_1 -9827,2,82.0,0.0,2,111,700.0,0.0,0.0,77,71,5974.339508072003,0.0,967.5219593031513,4700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,124723,2,2,2,0,1,,480.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,288.607701429064,700.0,20581.220053925106,5,5,0,1,100.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.22836352692821282,13720.813369283404,3,2,3_0,3_1_0,3_4_0,3_0_1 -9828,2,35.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,798.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,5.0,2,,2,103595,1,3,0,0,2,,0.0,350.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1190.85875352456,0.0,2514.4709646618685,0,1,3,4,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.3173629806090485,2514.4709646618685,1,1,1_0,1_0_0,1_4_0,1_0_1 -9829,2,61.0,0.0,1,111,460.0,800.0,0.0,0,74,0.0,0.0,635.800144684928,1260.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,0,,1,,1,105381,2,1,1,0,1,,150.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,800.850226493507,460.0,25868.863804596844,0,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04870720297255964,25868.863804596844,7,4,7,7_1,7_4,7_1_0 -9830,2,55.0,0.0,2,111,1500.0,2000.0,0.0,33,38,0.0,0.0,2073.261341363896,3500.0,0.0,3627.3058016948976,60,0,0,0,0,0,0,0,0,2,60.0,1,,2,113511,1,1,3,0,2,,1200.0,,43,2.0,0.0,7.0,7.0,3.8,1,1,1014.11205127203,1500.0,89328.6392396218,1,1,1,2,143.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03918116328416622,23507.536642005736,6,3,6,6_1,6_4,6_0_1 -9831,2,39.0,0.0,2,111,280.0,0.0,0.0,0,52,0.0,0.0,387.00878372126056,280.0,0.0,0.0,31,2,1,2,2,1,2,2,2,2,25.0,2,,2,131644,2,3,0,1,1,518.0,0.0,385.0,12,1.0,0.0,2.0,1.0,1.0,2,2,867.790626256065,280.0,19794.47684772203,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01414535994833441,19794.47684772203,5,3,5,5_0,5_4,5_0_1 -9832,2,61.0,0.0,2,111,550.0,0.0,0.0,56,64,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,30.0,2,,2,111609,2,2,0,3,1,960.0,0.0,507.0,43,3.0,3.0,5.0,3.0,2.0,1,1,578.205825069597,550.0,53484.481002416804,4,1,2,3,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010283356773624618,26742.240501208402,7,4,7,7_0,7_4,7_0_1 -9833,2,38.0,0.0,5,111,300.0,0.0,0.0,0,43,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,2,1,2,1,2,2,2,2,2,60.0,2,,3,109001,2,2,0,1,2,,0.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,849.988488350564,300.0,27082.435716264292,0,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011077290209160756,20832.64285866484,5,3,5,5_0,5_4,5_0_0 -9834,2,58.0,0.0,5,111,320.0,1200.0,0.0,86,77,0.0,0.0,442.2957528242978,1520.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,3,107535,2,2,1,0,1,,250.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,884.169718737672,320.0,29116.569412534016,5,7,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052203952274187726,19411.046275022676,5,3,5,5_1,5_4,5_0_0 -9835,2,57.0,0.0,2,111,0.0,0.0,0.0,45,48,0.0,0.0,0.0,3326.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,3.0,1,,2,114573,2,1,2,0,1,,350.0,,43,2.0,5.0,4.0,2.0,1.5,2,2,884.169718737672,0.0,90980.87053011091,1,1,1,2,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03655713536945364,60653.91368674061,10,5,10,10_1,10_4,10_0_1 -9836,2,61.0,0.0,1,111,380.0,380.0,0.0,77,78,0.0,0.0,525.2262064788536,760.0,0.0,689.1881023220305,50,0,0,0,0,0,0,0,0,0,,1,,1,128130,2,2,1,0,1,,480.0,,41,1.0,2.0,3.0,3.0,2.0,1,1,719.918289947356,380.0,42520.1491362166,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017873878983003588,21260.0745681083,5,3,5,5_1,5_4,5_1_0 -9837,2,37.0,0.0,9,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,839.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,2007.0,6,105820,2,1,0,0,1,,0.0,782.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1218.98468388564,0.0,44544.835029786445,0,1,2,3,44.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018834955824597256,44544.835029786445,10,5,10,10_0,10_4,10_0_0 -9838,2,36.0,0.0,9,111,1500.0,0.0,0.0,81,43,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,129720,1,1,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,4.0,2.1,1,1,1027.66158024963,1500.0,55448.66004737758,4,1,3,4,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027052051370012174,26404.123832084562,7,4,7,7_0,7_4,7_0_0 -9839,2,83.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,678.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,110280,2,1,0,2,1,,0.0,311.0,11,0.0,5.0,3.0,1.0,1.0,1,1,875.68386140855,0.0,19175.12491902379,0,5,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035358309417184076,19175.12491902379,5,3,5,5_0,5_4,5_1_0 -9840,2,48.0,0.0,2,111,804.0,180.0,0.0,0,52,0.0,0.0,1111.2680789710482,984.0,0.0,326.4575221525408,10,1,2,2,1,2,2,2,2,3,60.0,2,,2,109432,2,1,0,1,1,,0.0,529.0,32,1.0,0.0,2.0,2.0,1.5,2,2,1005.86683093151,804.0,25085.802487531888,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03922537461135901,16723.86832502126,4,2,4_0,4_0_0,4_4_0,4_0_1 -9841,1,70.0,33.0,2,111,700.0,0.0,0.0,0,77,0.0,0.0,967.5219593031513,1191.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122462,2,1,0,1,1,492.0,0.0,360.0,21,1.0,0.0,3.0,3.0,2.0,1,1,766.269094432539,700.0,23400.154086572984,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05089710074530647,11700.077043286492,2,1,2_1,2_0_1,2_4_1,2_0_1 -9842,2,73.0,0.0,1,111,262.0,214.0,0.0,0,77,0.0,0.0,362.1296476248938,476.0,0.0,388.12172078135404,60,2,2,2,1,2,2,2,2,0,,2,,1,127750,2,2,0,2,1,419.0,0.0,328.0,21,1.0,2.0,3.0,2.0,1.5,2,2,777.555805510342,262.0,30274.61591078467,0,5,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01572274282199681,20183.077273856445,5,3,5,5_0,5_4,5_1_0 -9843,2,45.0,0.0,7,111,670.0,870.0,0.0,63,33,0.0,0.0,926.0567324758734,1540.0,0.0,1577.8780237372805,12,0,0,0,0,0,0,0,0,3,60.0,2,,5,129981,2,1,0,0,1,,0.0,635.0,43,2.0,2.0,4.0,5.0,2.5999999999999996,1,1,878.473233690818,670.0,37038.12298591507,1,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04157878088437781,14245.431917659644,3,2,3_0,3_0_0,3_4_0,3_0_0 -9844,2,42.0,0.0,7,111,0.0,700.0,0.0,85,65,0.0,0.0,0.0,1492.0,0.0,1269.5570305932142,60,0,0,0,0,0,0,0,0,2,45.0,2,,5,127806,1,1,0,0,1,,0.0,550.0,42,1.0,0.0,3.0,4.0,2.1,1,1,767.24805370247,0.0,38726.04278568899,6,1,2,3,71.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03852704517879015,18440.97275508999,4,2,4_0,4_0_0,4_4_0,4_0_0 -9845,2,66.0,0.0,7,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,2408.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,118381,2,1,0,0,1,,0.0,,41,1.0,0.0,3.0,3.0,2.0,2,2,1042.39570922246,0.0,71884.18244481394,5,5,0,1,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03349832909136361,35942.09122240697,9,5,9,9_0,9_4,9_0_0 -9846,2,64.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,529.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115406,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1138.59008954542,0.0,16654.74988980204,0,5,0,1,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03176271054805301,16654.74988980204,4,2,4_0,4_0_0,4_4_0,4_0_1 -9847,2,54.0,0.0,1,111,540.0,120.0,0.0,52,46,0.0,0.0,746.3740828910024,660.0,0.0,217.63834810169388,20,0,0,0,0,0,0,0,0,3,60.0,2,,1,109902,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,2.0,4,3,914.105377622167,540.0,86609.60752803269,1,1,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007620401694885635,43304.803764016346,10,5,10,10_0,10_4,10_1_0 -9848,2,54.0,0.0,2,111,800.0,250.0,0.0,0,42,0.0,0.0,1105.7393820607444,1050.0,0.0,453.4132252118622,20,2,2,1,2,1,2,2,2,2,5.0,2,,2,105831,1,3,0,1,2,350.0,0.0,397.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1132.80788893958,800.0,36940.00770749609,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028424466186208395,36940.00770749609,9,5,9,9_0,9_4,9_0_1 -9849,2,47.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,748.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,105659,2,1,1,0,1,,680.0,,32,2.0,0.0,4.0,3.0,2.0,2,2,796.963626033466,0.0,20894.55608643022,0,1,1,2,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03579879835235082,10447.27804321511,2,1,2_0,2_1_0,2_4_0,2_0_1 -9850,2,61.0,0.0,1,111,0.0,1600.0,0.0,0,77,0.0,0.0,0.0,1699.0,0.0,2901.844641355918,43,0,0,0,0,0,0,0,0,0,,1,,1,122129,2,3,1,0,1,,117.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,781.984708061308,0.0,17212.106707062383,0,5,0,1,85.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09870959022714372,17212.106707062383,4,2,4_0,4_1_0,4_4_0,4_1_0 -9851,2,66.0,0.0,1,111,1547.0,0.0,0.0,0,74,0.0,0.0,2138.2235300599646,1547.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,127399,2,1,0,0,1,,0.0,,21,0.0,0.0,3.0,2.0,1.5,2,2,763.077558116346,1547.0,51109.13668248656,0,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030268560582634663,34072.75778832437,9,5,9,9_0,9_4,9_1_0 -9852,1,40.0,200.0,1,111,225.0,450.0,0.0,0,35,0.0,51.75862524097289,310.9892012045844,725.0,0.0,816.143805381352,10,2,2,2,1,1,2,2,2,0,,2,,1,131910,1,2,0,0,2,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,2,2,984.599356844257,225.0,5351.0,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.13548869370211175,5351.0,1,1,1_1,1_0_1,1_4_1,1_1_0 -9853,2,61.0,0.0,2,111,314.0,610.0,0.0,52,67,0.0,0.0,434.0027074588422,924.0,0.0,1106.328269516944,70,0,0,0,0,0,0,0,0,3,45.0,2,,2,114578,2,2,0,1,1,593.0,0.0,765.0,43,4.0,0.0,3.0,4.0,2.5,1,1,786.166635674822,314.0,31959.885469140332,4,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028911242529082008,12783.954187656132,2,1,2_0,2_0_0,2_4_0,2_0_1 -9854,1,62.0,100.0,2,111,960.0,480.0,0.0,0,78,0.0,0.0,1326.8872584728933,1440.0,0.0,870.5533924067755,71,2,2,2,1,1,2,2,2,0,,2,,2,127705,1,1,0,1,1,708.0,0.0,520.0,11,0.0,2.0,2.0,1.0,1.0,1,1,868.198244737836,960.0,11170.120054852272,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.12891535569257087,11170.120054852272,2,1,2_1,2_0_1,2_4_1,2_0_1 -9855,2,79.0,0.0,5,111,249.0,198.0,0.0,0,72,0.0,0.0,344.1613826664067,447.0,0.0,359.1032743677949,71,0,0,0,0,0,0,0,0,0,,2,,3,129968,1,1,0,1,1,1170.0,0.0,321.0,11,0.0,0.0,3.0,1.0,1.0,2,2,820.389516389268,249.0,15421.829079048002,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02898488873847599,15421.829079048002,3,2,3_0,3_0_0,3_4_0,3_0_0 -9856,2,36.0,0.0,2,111,0.0,0.0,840.0,0,37,1008.1697919871505,0.0,429.16720126352106,1515.0,0.0,960.3264507082105,20,2,1,2,2,1,2,2,2,2,35.0,2,,2,112833,2,2,0,1,1,675.0,0.0,365.0,22,2.0,0.0,3.0,2.0,1.5,4,4,779.335024638706,0.0,7876.709491252547,0,1,2,3,68.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.1923391997232446,5251.1396608350315,1,1,1_0,1_0_0,1_4_0,1_0_1 -9857,2,73.0,0.0,1,111,1311.0,0.0,0.0,75,74,0.0,0.0,1812.030412352045,1311.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115051,2,1,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,672.284951750879,1311.0,50229.114531309446,5,5,0,1,93.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026100400379998952,33486.0763542063,8,4,8,8_1,8_4,8_1_0 -9858,2,34.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,685.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,20.0,2,,1,115382,2,1,0,0,1,,0.0,900.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1116.75777899657,0.0,38908.03350764606,0,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01760561864082353,38908.03350764606,9,5,9,9_0,9_4,9_1_0 -9859,2,42.0,0.0,7,111,200.0,1600.0,0.0,34,34,0.0,0.0,276.4348455151861,1800.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,3,90.0,1,,5,106238,2,1,2,0,1,,880.0,,43,2.0,0.0,6.0,5.0,3.0,1,1,785.453896545445,200.0,148742.6573582504,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012101437690901643,49580.88578608347,10,5,10,10_1,10_4,10_0_0 -9860,2,69.0,0.0,1,111,270.0,675.0,0.0,0,74,0.0,134.5724256265295,373.1870414455012,1075.0,0.0,1224.215708072028,50,0,0,0,0,0,0,0,0,0,,2,,1,110772,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1129.78776607316,270.0,52790.41834989745,0,5,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020363543870307067,52790.41834989745,10,5,10,10_0,10_4,10_1_0 -9861,2,42.0,0.0,8,111,0.0,0.0,336.0,85,63,0.0,0.0,171.66688050540841,336.0,0.0,384.1305802832842,50,0,0,0,0,0,0,0,0,3,60.0,2,2001.0,6,114970,2,2,0,1,1,280.0,0.0,449.0,42,1.0,0.0,3.0,2.0,1.5,1,1,837.462200795314,0.0,32996.804760748244,7,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010182804136226334,21997.869840498828,6,3,6,6_0,6_4,6_0_0 -9862,2,55.0,0.0,8,111,270.0,0.0,0.0,0,46,0.0,0.0,373.1870414455012,270.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,45.0,2,2002.0,6,115575,2,1,0,1,1,516.0,0.0,432.0,12,1.0,1.0,2.0,1.0,1.0,2,2,783.481649103538,270.0,34190.5006977209,0,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00789693027274087,34190.5006977209,9,5,9,9_0,9_4,9_0_0 -9863,2,75.0,0.0,2,111,595.0,165.0,0.0,0,77,0.0,0.0,822.3936654076787,760.0,0.0,299.25272863982906,50,0,0,0,0,0,0,0,0,0,,2,,2,112357,2,3,0,0,2,,0.0,625.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1371.21772462173,595.0,19279.138484893807,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03942084863364091,19279.138484893807,5,3,5,5_0,5_4,5_0_1 -9864,2,40.0,0.0,2,111,684.0,80.0,0.0,0,34,0.0,0.0,945.4071716619364,764.0,0.0,145.09223206779592,71,2,2,2,1,1,1,2,2,3,25.0,2,,2,106768,1,3,0,0,2,,0.0,612.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1260.66587224199,684.0,19834.984392590814,0,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03851780192402801,19834.984392590814,5,3,5,5_0,5_4,5_0_1 -9865,2,81.0,0.0,5,111,867.0,0.0,0.0,0,77,0.0,0.0,1198.345055308332,867.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,130673,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1100.36194938214,867.0,35478.28632306923,0,5,0,1,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024437482467585987,35478.28632306923,9,5,9,9_0,9_4,9_0_0 -9866,2,28.0,0.0,5,111,504.0,0.0,0.0,56,63,0.0,0.0,696.615810698269,504.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,30.0,2,,3,128863,1,2,0,1,2,744.0,0.0,844.0,43,2.0,0.0,2.0,3.0,1.8,1,1,935.859853334525,504.0,32195.513537147614,4,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015654355052249068,17886.396409526453,4,2,4_0,4_0_0,4_4_0,4_0_0 -9867,2,56.0,0.0,2,111,357.0,0.0,0.0,0,45,0.0,0.0,493.4361992446072,357.0,0.0,0.0,70,2,1,2,1,2,2,2,2,3,45.0,2,,2,133050,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1203.04657790821,357.0,46994.23468180363,0,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007596676537393042,46994.23468180363,10,5,10,10_0,10_4,10_0_1 -9870,2,33.0,0.0,6,111,832.0,0.0,0.0,54,42,0.0,0.0,1149.9689573431742,832.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,1,,4,123883,2,1,3,0,1,,306.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,788.190642654201,832.0,50332.59356327062,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016530044273481235,33555.06237551374,9,5,9,9_1,9_4,9_0_0 -9871,2,54.0,0.0,6,111,1980.0,0.0,0.0,85,43,0.0,0.0,2736.7049706003427,2130.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,111692,2,1,3,0,1,,557.0,,42,1.0,2.0,5.0,4.0,2.1,2,2,748.339938262959,1980.0,73907.11003668795,6,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02881996060923847,35193.86192223236,9,5,9,9_1,9_4,9_0_0 -9872,0,62.0,0.0,7,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,907.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,103304,2,1,2,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,874.731866568804,0.0,107269.92849810586,0,1,5,0,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008455305346978166,107269.92849810586,10,5,10,10_1,10_4,10_0_0 -9873,2,51.0,0.0,1,111,388.0,2300.0,0.0,0,46,0.0,0.0,536.2836002994611,2688.0,0.0,4171.401671949133,10,0,0,0,0,0,0,0,0,0,,1,,1,102946,2,1,2,0,1,,200.0,,12,1.0,2.0,6.0,1.0,1.0,3,2,801.166756298841,388.0,44106.26502080384,0,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06094372304551602,44106.26502080384,10,5,10,10_1,10_4,10_1_0 -9874,2,59.0,0.0,2,111,610.0,0.0,0.0,43,74,2987.1697540360015,103.51725048194578,843.1262788213177,2710.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121638,2,1,1,0,1,,654.0,,42,1.0,0.0,8.0,4.0,2.5,2,2,843.012650354329,610.0,87106.65793845872,1,7,0,1,127.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031111284305209232,34842.66317538349,9,5,9,9_1,9_4,9_0_1 -9875,2,38.0,0.0,1,111,600.0,1845.0,0.0,42,31,0.0,310.55175144583734,829.3045365455583,2745.0,0.0,3346.189602063543,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,119993,2,1,2,0,1,,900.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,675.421361486751,600.0,118421.89019153018,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023179836055313437,56391.376281681034,10,5,10,10_1,10_4,10_1_0 -9876,1,36.0,42.0,2,111,1240.0,0.0,0.0,85,34,0.0,0.0,1713.8960421941538,1240.0,0.0,0.0,20,2,2,2,2,1,2,2,1,3,48.0,2,,2,112986,2,3,0,0,1,,0.0,481.0,42,1.0,0.0,4.0,4.0,2.1,1,1,839.44934692291,1240.0,32303.762616566568,6,1,2,3,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03838562135062502,15382.744103126937,3,2,3_1,3_0_1,3_4_1,3_0_1 -9877,2,59.0,0.0,2,111,439.0,3002.0,0.0,46,62,0.0,0.0,606.7744859058336,3441.0,0.0,5444.586008344041,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,116937,2,3,3,0,1,,629.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1027.14062397276,439.0,86352.71213155292,1,1,0,1,112.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03984819833750969,57568.47475436862,10,5,10,10_1,10_4,10_0_1 -9878,2,45.0,0.0,6,111,1800.0,0.0,0.0,62,56,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,2,2,1,2,1,2,2,1,3,25.0,2,,4,100502,2,1,0,0,1,,0.0,491.0,43,2.0,1.0,4.0,5.0,2.4,1,1,690.870782188499,1800.0,40961.59577924579,1,1,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.04394360048130778,17067.331574685748,4,2,4_0,4_0_0,4_4_0,4_0_0 -9879,2,39.0,0.0,1,111,947.0,4088.0,0.0,54,23,0.0,51.75862524097289,1308.9189935144063,5085.0,0.0,7414.213058664371,50,2,2,2,2,1,2,2,2,0,,1,,1,130312,2,3,2,0,1,,1183.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,696.642921807674,947.0,43582.62135017216,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.11667494617048577,20753.629214367695,5,3,5,5_1,5_4,5_1_0 -9880,2,32.0,0.0,7,111,629.0,0.0,0.0,0,47,0.0,0.0,869.3875891452603,629.0,0.0,0.0,33,2,1,2,2,1,2,2,2,0,,2,,5,104090,1,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1187.01181815436,629.0,32265.851983457163,0,1,1,2,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01949429385352945,32265.851983457163,8,4,8,8_0,8_4,8_0_0 -9881,2,47.0,0.0,6,111,580.0,2125.0,0.0,54,38,0.0,0.0,801.6610519940398,2705.0,0.0,3854.012414300829,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,124170,2,1,2,0,1,,780.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,787.882002872043,580.0,81359.66595187734,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03324743247593906,35373.76780516406,9,5,9,9_1,9_4,9_0_0 -9882,2,33.0,0.0,2,111,541.0,1379.0,0.0,54,46,0.0,0.0,747.7562571185784,1920.0,0.0,2501.027350268632,50,1,2,2,2,1,2,2,2,2,15.0,1,,2,122340,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,975.208673554858,541.0,37236.54019949853,1,1,1,2,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05156225550798774,17731.685809285013,4,2,4_0,4_1_0,4_4_0,4_0_1 -9883,2,83.0,0.0,2,111,260.0,1937.0,0.0,77,78,0.0,0.0,359.36529916974195,2197.0,0.0,3513.0456689415087,41,0,0,0,0,0,0,0,0,0,,1,,2,127792,2,1,2,0,1,,270.0,,41,0.0,2.0,3.0,2.0,1.5,3,2,972.533896312137,260.0,32339.853786001047,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06793475364910324,21559.9025240007,6,3,6,6_1,6_4,6_0_1 -9884,2,55.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,2242.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,5,101205,1,3,0,0,1,,310.0,836.0,22,2.0,3.0,3.0,2.0,1.5,4,2,1038.45685583165,0.0,75968.51894629592,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.02951222468329186,50645.679297530616,10,5,10,10_0,10_4,10_0_0 -9885,2,57.0,0.0,5,111,1100.0,0.0,0.0,0,63,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,115728,2,1,0,0,2,,0.0,400.0,12,1.0,3.0,2.0,1.0,1.0,2,2,995.813647278016,1100.0,20904.019457792918,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05262145886445419,20904.019457792918,5,3,5,5_0,5_4,5_0_0 -9886,2,46.0,0.0,2,111,450.0,0.0,0.0,52,48,0.0,0.0,621.9784024091688,450.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,103474,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,3,2,828.429507889623,450.0,53218.22413400947,1,1,1,2,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008455750024030291,35478.81608933965,9,5,9,9_0,9_4,9_0_1 -9887,0,62.0,0.0,2,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,1345.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110679,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,4,4,964.312093643701,0.0,49982.59063260397,1,1,5,0,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026909369502001117,33321.727088402644,8,4,8,8_0,8_4,8_0_1 -9888,2,26.0,0.0,2,111,240.0,210.0,0.0,43,52,0.0,0.0,331.72181461822333,450.0,0.0,380.86710917796427,31,1,2,2,1,2,2,2,2,2,25.0,2,,2,112483,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,914.600009604538,240.0,47601.62977562796,1,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00945345783581553,26445.349875348867,7,4,7,7_0,7_4,7_0_1 -9889,2,61.0,0.0,7,111,800.0,880.0,0.0,52,47,0.0,0.0,1105.7393820607444,1680.0,0.0,1596.014552745755,31,0,0,0,0,0,0,0,0,3,45.0,2,,5,110425,2,2,0,0,1,,0.0,562.0,43,2.0,4.0,4.0,3.0,2.0,1,1,841.54624129746,800.0,26769.221018591514,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06275864354936671,13384.610509295757,3,2,3_0,3_0_0,3_4_0,3_0_0 -9890,2,65.0,0.0,5,111,660.0,1600.0,0.0,74,74,0.0,155.27587572291867,912.2349902001142,2410.0,0.0,2901.844641355918,43,0,0,0,0,0,0,0,0,0,,1,,3,109928,2,1,3,0,1,,490.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,857.699462255083,660.0,74565.66533726378,5,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032320505545004714,49710.44355817585,10,5,10,10_1,10_4,10_0_0 -9891,2,82.0,0.0,2,111,180.0,200.0,0.0,0,78,0.0,0.0,248.7913609636675,380.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,2,131758,2,3,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1045.19479367481,180.0,17989.612519357765,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021123300993342694,17989.612519357765,4,2,4_0,4_0_0,4_4_0,4_0_1 -9892,2,65.0,0.0,6,111,0.0,0.0,1400.0,77,78,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,50,0,0,0,0,0,0,0,0,0,,1,,4,116140,2,1,2,0,1,,650.0,,41,2.0,1.0,6.0,4.0,2.5,2,2,818.174240162354,0.0,57223.49285806108,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02446547615456825,22889.397143224433,6,3,6,6_1,6_4,6_0_0 -9893,2,84.0,0.0,2,111,400.0,95.0,0.0,86,86,0.0,0.0,552.8696910303722,495.0,0.0,172.29702558050764,31,2,1,2,2,1,2,1,2,0,,2,,2,116713,2,2,0,1,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,980.18176632666,400.0,39966.49275609065,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012385374994521255,26644.328504060435,7,4,7,7_0,7_4,7_0_1 -9894,2,79.0,0.0,2,111,290.0,60.0,0.0,0,77,0.0,0.0,400.8305259970199,350.0,0.0,108.81917405084694,43,0,0,0,0,0,0,0,0,0,,2,,2,119420,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1103.88135222761,290.0,16198.070453052173,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021607511895594338,16198.070453052173,4,2,4_0,4_0_0,4_4_0,4_0_1 -9895,2,32.0,0.0,2,111,1500.0,0.0,0.0,43,38,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,2,106366,2,1,3,0,1,,1000.0,,43,2.0,0.0,3.0,5.0,2.4,1,1,885.559512063791,1500.0,46365.71502579703,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03235149073330213,19319.047927415428,5,3,5,5_1,5_4,5_0_1 -9896,2,72.0,0.0,1,111,607.0,975.0,0.0,75,74,0.0,0.0,838.9797561385899,1582.0,0.0,1768.3115783262626,71,0,0,0,0,0,0,0,0,0,,1,,1,122294,2,1,1,0,1,,590.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,694.732187537068,607.0,56554.3477811799,5,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027973092468877456,37702.8985207866,9,5,9,9_1,9_4,9_1_0 -9897,2,84.0,0.0,2,111,300.0,2450.0,0.0,0,72,0.0,0.0,414.65226827277917,2750.0,0.0,4443.44960707625,44,1,2,2,1,1,2,2,2,0,,1,,2,128106,1,3,3,0,1,,240.0,,11,0.0,1.0,4.0,1.0,1.0,3,3,782.407848177498,300.0,17547.98403675431,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.1567131582887308,17547.98403675431,4,2,4_0,4_1_0,4_4_0,4_0_1 -9898,0,55.0,0.0,1,111,0.0,0.0,2000.0,0,38,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,102871,1,2,3,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,973.587312887837,0.0,39591.0,0,1,5,0,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050516531534944814,39591.0,9,5,9,9_1,9_4,9_1_0 -9899,2,61.0,0.0,8,111,350.0,0.0,0.0,0,34,0.0,0.0,483.76097965157567,350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,113447,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,1236.33575838198,350.0,49662.48309650456,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00704757350372266,49662.48309650456,10,5,10,10_0,10_4,10_0_0 -9900,2,54.0,0.0,7,111,2370.0,0.0,0.0,38,43,0.0,0.0,3275.7529193549553,2370.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,5,100162,2,1,0,0,1,,0.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,1036.70618714776,2370.0,206102.9856179965,1,1,0,1,145.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011499105618938963,82441.19424719861,10,5,10,10_0,10_4,10_0_0 -9901,2,59.0,0.0,1,111,300.0,540.0,0.0,0,54,0.0,0.0,414.65226827277917,840.0,0.0,979.3725664576224,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,113015,2,1,1,0,1,,250.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,826.33920362637,300.0,20724.914908932617,0,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040530926360423936,20724.914908932617,5,3,5,5_1,5_4,5_1_0 -9902,2,65.0,0.0,1,111,1060.0,750.0,0.0,0,75,0.0,0.0,1465.1046812304864,1810.0,0.0,1360.2396756355868,10,0,0,0,0,0,0,0,0,0,,1,,1,110078,2,1,2,0,1,,220.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,755.807990854506,1060.0,33532.10741339445,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05397811648655858,33532.10741339445,8,4,8,8_1,8_4,8_1_0 -9903,2,62.0,0.0,1,111,795.0,1504.0,0.0,37,74,0.0,0.0,1098.8285109228648,2299.0,0.0,2727.733962874563,31,0,0,0,0,0,0,0,0,0,,1,,1,107984,2,3,2,0,1,,346.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,751.971083888481,795.0,92306.56449569944,1,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024906137635607818,61537.70966379962,10,5,10,10_1,10_4,10_1_0 -9904,1,65.0,291.0,2,111,319.0,289.0,0.0,85,78,0.0,0.0,440.91357859672183,608.0,0.0,524.1456883449127,50,0,0,0,0,0,0,0,0,0,,2,,2,114520,2,1,0,1,1,1116.0,0.0,379.0,41,1.0,3.0,4.0,4.0,2.5,2,2,219.397303320245,319.0,32671.456979122602,6,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018609515957262582,13068.582791649042,2,1,2_1,2_0_1,2_4_1,2_0_1 -9905,2,74.0,0.0,9,111,1400.0,0.0,0.0,77,72,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,127096,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,944.991490061128,1400.0,23125.099094520072,5,5,0,1,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06054028111523883,15416.732729680049,3,2,3_0,3_0_0,3_4_0,3_0_0 -9906,0,34.0,0.0,1,111,1152.0,0.0,0.0,0,85,0.0,0.0,1592.264710167472,1152.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,111236,2,2,1,0,1,,144.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,672.028204081292,1152.0,10297.722550398594,0,7,5,0,56.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1118693958165934,10297.722550398594,2,1,2_0,2_1_0,2_4_0,2_1_0 -9907,2,38.0,0.0,1,111,960.0,1440.0,0.0,54,63,0.0,0.0,1326.8872584728933,2400.0,0.0,2611.660177220326,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,119224,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,680.668674629235,960.0,36099.85318062992,1,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06648226484443895,17190.406276490437,4,2,4_0,4_1_0,4_4_0,4_1_0 -9908,2,51.0,0.0,5,111,2440.0,0.0,0.0,75,56,0.0,0.0,3372.5051152852707,2440.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,20.0,1,,3,116952,2,1,2,0,1,,400.0,,42,1.0,2.0,5.0,3.0,2.0,2,2,773.500047348037,2440.0,25919.627747261424,5,1,0,1,200.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.09413715442953464,12959.813873630712,2,1,2_0,2_1_0,2_4_0,2_0_0 -9909,2,64.0,0.0,5,111,1200.0,0.0,0.0,74,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,113510,2,1,2,0,1,,0.0,,41,1.0,0.0,5.0,3.0,2.0,3,2,777.147330462461,1200.0,150978.83429595927,5,5,0,1,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007948133959278531,75489.41714797964,10,5,10,10_1,10_4,10_0_0 -9910,2,49.0,0.0,5,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1886.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,,3,108422,2,1,2,0,1,,0.0,,32,2.0,0.0,4.0,3.0,2.0,2,2,817.62533954318,0.0,34040.17145373771,0,1,1,2,103.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05540512633913046,17020.085726868856,4,2,4_0,4_1_0,4_4_0,4_0_0 -9911,2,36.0,0.0,9,111,420.0,988.0,0.0,46,38,0.0,0.0,580.5131755818909,1408.0,0.0,1791.8890660372795,41,0,0,0,0,0,0,0,0,2,50.0,2,2010.0,6,104220,2,1,0,1,1,,462.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,824.714911331207,420.0,80899.60308760068,1,1,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017404288108501254,38523.62051790509,9,5,9,9_0,9_4,9_0_0 -9912,2,33.0,0.0,9,111,240.0,0.0,0.0,0,37,0.0,0.0,331.72181461822333,686.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,75.0,2,2010.0,6,117217,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,926.247003931647,240.0,31454.121978598734,0,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.021809542179137976,31454.121978598734,8,4,8,8_0,8_4,8_0_0 -9913,2,60.0,0.0,2,111,830.0,0.0,0.0,0,52,0.0,621.1035028916747,1147.2046088880224,1480.0,86.01635020950958,0.0,41,2,2,2,1,1,2,2,2,2,60.0,1,,2,112816,2,1,3,0,1,,30.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,910.833992337001,830.0,28422.626172579297,0,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,1,0,0,0.05207119113531559,28422.626172579297,8,4,8,8_1,8_4,8_0_1 -9914,2,76.0,0.0,5,111,451.0,2130.0,0.0,75,72,0.0,0.0,623.3605766367447,2581.0,0.0,3863.0806788050663,50,0,0,0,0,0,0,0,0,0,,1,,3,102776,2,1,4,0,1,,260.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,885.101176884442,451.0,32152.99274607024,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08027246547105484,21435.32849738016,6,3,6,6_1,6_4,6_0_0 -9915,2,33.0,0.0,2,111,700.0,0.0,0.0,0,37,0.0,0.0,967.5219593031513,700.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,12.0,2,,2,123130,2,2,0,0,1,,0.0,753.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1128.74128511224,700.0,30885.778059516157,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022664153017324568,30885.778059516157,8,4,8,8_0,8_4,8_0_1 -9916,2,64.0,0.0,1,111,800.0,0.0,0.0,0,75,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,122756,2,2,0,0,1,,0.0,500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,978.875749815251,800.0,20441.0407928448,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.03913695041790791,20441.0407928448,5,3,5,5_0,5_4,5_1_0 -9917,2,39.0,0.0,1,111,1000.0,80.0,0.0,0,37,0.0,0.0,1382.1742275759307,1080.0,0.0,145.09223206779592,43,2,2,2,1,1,2,2,2,3,30.0,2,,1,132079,2,3,0,0,1,,0.0,900.0,12,1.0,0.0,2.0,1.0,1.0,2,2,983.665659832822,1000.0,30597.095395516968,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.03529746814327479,30597.095395516968,8,4,8,8_0,8_4,8_1_0 -9918,2,40.0,0.0,1,111,405.0,1350.0,0.0,43,31,0.0,0.0,559.7805621682519,1755.0,0.0,2448.431416144056,50,0,0,0,0,0,0,0,0,3,30.0,1,,1,114803,2,1,4,0,1,,420.0,1356.0,43,2.0,0.0,4.0,4.0,2.1,1,1,568.888794655999,405.0,93873.27183896137,1,1,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018695417402843743,44701.558018553034,10,5,10,10_1,10_4,10_1_0 -9919,1,33.0,137.0,1,111,570.0,1495.0,0.0,22,43,0.0,0.0,787.8393097182804,2065.0,0.0,2711.411086766936,50,0,0,0,0,0,0,0,0,0,,2,,1,129890,1,1,0,0,2,,0.0,784.0,43,2.0,0.0,2.0,4.0,2.1,3,2,906.663765982496,570.0,24239.21060826487,1,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0851925433287788,11542.48124203089,2,1,2_1,2_0_1,2_4_1,2_1_0 -9920,2,66.0,0.0,2,111,312.0,0.0,0.0,0,75,896.1509262108004,0.0,431.23835900369033,912.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,106271,2,2,0,2,1,411.0,0.0,487.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1013.00616176925,312.0,22785.205022536724,0,5,2,3,33.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040025972954728546,22785.205022536724,6,3,6,6_0,6_4,6_0_1 -9921,2,35.0,0.0,1,111,0.0,0.0,1500.0,47,46,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,20,0,0,0,0,0,0,0,0,2,15.0,2,,1,131316,2,1,0,0,1,,0.0,960.0,43,2.0,0.0,2.0,2.0,1.5,2,2,955.829353488631,0.0,49815.0740493444,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0301113674650804,33210.0493662296,8,4,8,8_0,8_4,8_1_0 -9922,2,62.0,0.0,1,111,192.0,450.0,0.0,0,35,0.0,0.0,265.37745169457867,642.0,0.0,816.143805381352,31,0,0,0,0,0,0,0,0,3,40.0,2,,1,130067,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,1116.00840133267,192.0,21421.639093702586,0,1,0,1,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02996969546502777,21421.639093702586,6,3,6,6_0,6_4,6_1_0 -9923,1,42.0,160.0,5,111,800.0,900.0,0.0,0,52,0.0,0.0,1105.7393820607444,1700.0,0.0,1632.287610762704,12,2,2,1,2,1,2,2,2,1,15.0,2,,3,132394,2,1,0,0,1,,0.0,510.0,32,1.0,1.0,4.0,2.0,1.5,1,1,885.10136939915,800.0,17110.539509931245,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.09935396829616573,11407.026339954164,2,1,2_1,2_0_1,2_4_1,2_0_0 -9924,2,55.0,0.0,1,111,500.0,850.0,0.0,31,31,0.0,0.0,691.0871137879653,1350.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,3,30.0,1,,1,100342,2,1,3,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,714.718388663985,500.0,225805.32011523825,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.005978601386854111,98176.22613706012,10,5,10,10_1,10_4,10_1_0 -9925,2,58.0,0.0,8,111,420.0,900.0,0.0,78,21,0.0,0.0,580.5131755818909,1320.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,112020,2,1,1,0,1,,300.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1120.4184786873,420.0,53644.33330321302,6,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024606513283313352,35762.88886880868,9,5,9,9_1,9_4,9_0_0 -9926,0,39.0,0.0,8,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1283.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,103666,2,1,1,0,1,1500.0,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1261.81603025448,0.0,37045.0,0,1,5,0,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03463355378593602,37045.0,9,5,9,9_1,9_4,9_0_0 -9927,1,39.0,157.0,1,111,464.0,0.0,0.0,0,55,0.0,0.0,641.3288415952318,464.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,115226,2,2,0,0,1,,0.0,530.0,12,1.0,2.0,1.0,1.0,1.0,2,2,899.955731900854,464.0,13146.711595990357,0,4,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.035293997028239085,13146.711595990357,2,1,2_1,2_0_1,2_4_1,2_1_0 -9928,2,68.0,0.0,9,111,0.0,0.0,632.0,0,77,0.0,0.0,322.8972276173158,632.0,0.0,722.5313295804631,50,1,2,2,2,1,2,2,2,0,,2,2008.0,6,104740,2,2,0,0,1,,62.0,293.0,11,0.0,1.0,2.0,1.0,1.0,2,2,1153.25684121819,0.0,22470.191749284768,0,5,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.028126150726778588,22470.191749284768,6,3,6,6_0,6_4,6_0_0 -9929,2,54.0,0.0,6,111,1600.0,0.0,0.0,77,63,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,1,,4,104994,2,1,2,0,1,,1200.0,,42,1.0,3.0,5.0,2.0,1.5,3,2,852.198657853697,1600.0,34987.19818308442,7,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04573101257286634,23324.79878872295,6,3,6,6_1,6_4,6_0_0 -9930,2,47.0,0.0,5,111,550.0,950.0,0.0,90,46,0.0,0.0,760.1958251667618,1500.0,0.0,1722.9702558050765,50,0,0,0,0,0,0,0,0,3,30.0,2,,3,117320,1,3,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,931.623499433212,550.0,47036.946921480136,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031889824875410915,18814.778768592056,5,3,5,5_0,5_4,5_0_0 -9931,1,31.0,474.0,5,111,120.0,0.0,0.0,0,81,0.0,0.0,165.86090730911167,120.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,110597,1,2,0,1,2,200.0,0.0,459.0,32,1.0,0.0,1.0,3.0,1.6,4,2,886.433276256706,120.0,10222.321513255769,0,4,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011739016410742932,6388.950945784855,1,1,1_1,1_0_1,1_4_1,1_0_0 -9932,2,44.0,0.0,2,111,499.0,425.0,0.0,0,67,0.0,0.0,689.7049395603893,924.0,0.0,770.8024828601658,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,119847,2,2,0,1,2,,398.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1084.92625762965,499.0,26262.741552779276,0,1,0,1,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035182922473766524,26262.741552779276,7,4,7,7_0,7_4,7_0_1 -9933,1,38.0,511.0,2,111,360.0,345.0,0.0,0,56,0.0,0.0,497.582721927335,705.0,0.0,625.7102507923698,50,2,2,1,2,1,2,2,2,3,15.0,2,,2,124113,1,2,0,1,2,853.0,0.0,700.0,32,1.0,0.0,4.0,6.0,2.8999999999999995,2,2,235.543189168278,360.0,15514.709814194941,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.045440746777936594,5349.899935929291,1,1,1_1,1_0_1,1_4_1,1_0_1 -9934,2,30.0,0.0,2,111,661.0,120.0,0.0,0,53,0.0,0.0,913.6171644276901,781.0,0.0,217.63834810169388,43,0,0,0,0,0,0,0,0,0,,2,,2,102188,1,2,0,1,1,1230.0,0.0,357.0,22,1.0,1.0,4.0,3.0,2.0,1,1,213.39071695245,661.0,46558.74232058398,0,1,2,3,119.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01677450809608132,23279.37116029199,6,3,6,6_0,6_4,6_0_1 -9935,2,74.0,0.0,2,111,225.0,469.0,0.0,86,78,0.0,0.0,310.9892012045844,694.0,0.0,850.6032104974536,50,0,0,0,0,0,0,0,0,0,,2,,2,120102,2,1,0,1,1,994.0,0.0,328.0,41,0.0,6.0,4.0,3.0,2.0,1,1,215.740678915579,225.0,22920.61559066799,6,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030278418886906272,11460.307795333994,2,1,2_0,2_0_0,2_4_0,2_0_1 -9937,2,32.0,0.0,2,111,0.0,0.0,0.0,43,31,0.0,0.0,0.0,747.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,116036,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,223.299812089675,0.0,47392.51972558462,1,1,1,2,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01576198109586344,26329.177625324788,7,4,7,7_0,7_4,7_0_1 -9938,2,29.0,0.0,5,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,317.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,3,114091,2,2,0,0,1,,0.0,326.0,12,1.0,0.0,1.0,1.0,1.0,2,2,899.955731900854,0.0,23634.5845709749,0,1,2,3,20.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013412547999227392,23634.5845709749,6,3,6,6_0,6_4,6_0_0 -9939,1,34.0,210.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1401.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,4,115981,1,2,0,0,1,,0.0,620.0,32,1.0,0.0,5.0,4.0,2.1,2,2,853.911852096691,0.0,24978.988455054332,0,1,2,3,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.056087139097761064,11894.756407168728,2,1,2_1,2_0_1,2_4_1,2_0_0 -9940,2,55.0,0.0,2,111,0.0,0.0,0.0,46,35,0.0,0.0,0.0,1296.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131135,2,2,2,0,1,,0.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,1013.51955972739,0.0,45469.84490992159,1,1,0,1,56.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028502406431503154,21652.307099962658,6,3,6,6_1,6_4,6_0_1 -9941,2,79.0,0.0,2,111,270.0,100.0,0.0,0,77,0.0,0.0,373.1870414455012,370.0,0.0,181.36529008474488,71,2,1,2,2,1,2,2,2,0,,2,,2,126331,1,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,3,2,905.81799986508,270.0,18722.08589859323,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.019762755176110033,18722.08589859323,5,3,5,5_0,5_4,5_0_1 -9942,2,57.0,0.0,2,111,360.0,1100.0,0.0,0,47,0.0,0.0,497.582721927335,1460.0,0.0,1995.0181909321939,71,2,2,2,1,1,2,2,2,3,45.0,2,,2,121450,1,2,0,0,1,,0.0,857.0,32,1.0,2.0,5.0,2.0,1.5,1,1,1012.57395443141,360.0,53531.59446857377,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,0,0.02727361317169633,35687.729645715845,9,5,9,9_0,9_4,9_0_1 -9943,2,58.0,0.0,6,111,498.0,875.0,0.0,77,46,0.0,0.0,688.3227653328134,1373.0,0.0,1586.9462882415178,31,2,2,2,2,1,2,2,2,3,40.0,2,,4,112343,1,3,0,0,1,,0.0,567.0,42,1.0,0.0,3.0,2.0,1.5,1,1,916.251569486059,498.0,36125.23470324491,5,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.0380066734867932,24083.489802163273,6,3,6,6_0,6_4,6_0_0 -9944,1,48.0,420.0,6,111,400.0,0.0,0.0,0,43,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,2,2,2,2,1,1,2,2,0,,2,,4,102176,2,3,0,0,1,631.0,0.0,474.0,32,1.0,0.0,3.0,2.0,1.3,1,1,838.045992265018,400.0,8944.260692320788,0,4,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.044721415638457995,6880.2005325544515,1,1,1_1,1_0_1,1_4_1,1_0_0 -9945,1,62.0,198.0,2,111,347.0,264.0,0.0,0,78,0.0,0.0,479.6144569688479,611.0,0.0,478.8043658237265,71,2,1,2,2,1,2,2,2,0,,2,,2,104258,1,2,0,1,1,1056.0,0.0,364.0,21,1.0,1.0,4.0,2.0,1.5,1,1,885.10136939915,347.0,11436.477969051455,0,5,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.053425539021142936,7624.318646034303,1,1,1_1,1_0_1,1_4_1,1_0_1 -9946,1,39.0,656.0,2,111,1300.0,0.0,0.0,0,52,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,30,2,2,2,2,1,2,2,2,2,10.0,2,,2,129558,2,3,0,0,1,,0.0,524.0,32,1.0,0.0,6.0,7.0,2.9999999999999996,2,2,874.219859063689,1300.0,17899.347288060817,0,1,2,3,144.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.07262834666977623,5966.449096020273,1,1,1_1,1_0_1,1_4_1,1_0_1 -9947,2,45.0,0.0,9,111,450.0,0.0,0.0,0,42,0.0,0.0,621.9784024091688,450.0,0.0,0.0,70,1,2,2,2,1,2,2,2,0,,2,2005.0,6,131674,2,1,0,1,1,420.0,0.0,550.0,32,1.0,0.0,3.0,3.0,1.8,1,1,692.689034852312,450.0,42840.67229483804,0,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01050403683917494,23800.373497132245,6,3,6,6_0,6_4,6_0_0 -9948,2,56.0,0.0,5,111,450.0,565.0,0.0,0,90,0.0,0.0,621.9784024091688,1015.0,0.0,1024.7138889788087,42,0,0,0,0,0,0,0,0,0,,2,,3,104286,2,2,0,1,2,,0.0,,31,1.0,3.0,2.0,2.0,1.5,5,4,851.431273089527,450.0,49584.697037517835,0,5,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02047002524250595,33056.46469167856,8,4,8,8_0,8_4,8_0_0 -9949,2,82.0,0.0,2,111,278.0,62.0,0.0,0,77,0.0,0.0,384.24443526610867,340.0,0.0,112.44647985254183,12,0,0,0,0,0,0,0,0,0,,2,,2,120090,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1105.06688075385,278.0,23069.45242347011,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014738104475080435,23069.45242347011,6,3,6,6_0,6_4,6_0_1 -9950,2,31.0,0.0,2,111,240.0,1660.0,0.0,37,46,0.0,0.0,331.72181461822333,1900.0,0.0,3010.663815406765,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,115516,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,929.068266483956,240.0,63244.61553468947,1,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03004208317082513,42163.07702312631,9,5,9,9_0,9_4,9_0_1 -9951,2,87.0,0.0,2,111,412.0,590.0,0.0,0,78,0.0,0.0,569.4557817612833,1002.0,0.0,1070.0552114999948,31,0,0,0,0,0,0,0,0,0,,2,,2,107926,2,1,0,1,1,,0.0,,11,0.0,4.0,2.0,1.0,1.0,2,2,1105.15708691795,412.0,17890.737952068608,0,5,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05600663330291215,17890.737952068608,4,2,4_0,4_0_0,4_4_0,4_0_1 -9952,2,46.0,0.0,2,111,600.0,0.0,0.0,0,22,0.0,0.0,829.3045365455583,681.0,139.3464873394055,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118918,2,1,0,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,1388.31414948502,600.0,13195.357736889651,0,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05160905930546769,13195.357736889651,2,1,2_0,2_0_0,2_4_0,2_0_1 -9953,2,42.0,0.0,2,111,200.0,220.0,0.0,0,47,657.1773458879203,0.0,276.4348455151861,860.0,0.0,399.00363818643876,70,0,0,0,0,0,0,0,0,0,,2,,2,105368,2,1,0,1,1,434.0,0.0,280.0,22,3.0,0.0,4.0,3.0,2.0,1,1,227.854284974489,200.0,33961.70047853787,0,1,2,3,60.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025322642502647295,16980.850239268933,4,2,4_0,4_0_0,4_4_0,4_0_1 -9954,2,28.0,0.0,6,111,0.0,0.0,0.0,55,54,0.0,0.0,0.0,1306.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,45.0,2,,4,111417,2,1,0,0,1,,0.0,366.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1039.57212078381,0.0,40823.828180958604,1,1,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03199112033812536,27215.8854539724,7,4,7,7_0,7_4,7_0_0 -9955,1,24.0,41.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,708.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,65.0,2,,4,114646,2,2,0,0,1,,134.0,259.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1272.55283845832,0.0,13583.512909664156,0,2,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05212201031562938,13583.512909664156,3,2,3_1,3_0_1,3_4_1,3_0_0 -9956,2,72.0,0.0,9,111,1600.0,0.0,0.0,75,75,0.0,186.3310508675024,2211.478764121489,1850.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,115525,2,1,3,0,1,,290.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,671.833828573766,1600.0,57948.384800929,5,5,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03192496229800596,38632.25653395267,9,5,9,9_1,9_4,9_0_0 -9957,1,31.0,360.0,2,111,1020.0,0.0,0.0,0,52,0.0,0.0,1409.817712127449,1020.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,20.0,1,,2,127911,2,1,1,0,1,,0.0,1115.0,32,1.0,0.0,3.0,3.0,1.6,6,3,647.507018418992,1020.0,25455.52577748515,0,1,3,4,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,1,0.040069885372478437,15909.703610928218,3,2,3_1,3_1_1,3_4_1,3_0_1 -9958,2,47.0,0.0,8,111,675.0,856.0,0.0,67,37,0.0,0.0,932.9676036137531,1531.0,0.0,1552.4868831254162,50,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,125942,2,2,2,0,1,,895.0,567.0,43,2.0,0.0,4.0,4.0,2.3,2,2,604.5917899625,675.0,40554.0480965569,4,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037752088185001295,17632.19482458996,4,2,4_0,4_1_0,4_4_0,4_0_0 -9959,2,55.0,0.0,8,111,700.0,1200.0,0.0,0,43,0.0,0.0,967.5219593031513,1900.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,125831,2,1,0,0,1,,0.0,582.0,32,2.0,3.0,4.0,5.0,3.0,2,2,749.727928464354,700.0,30679.97101517952,0,1,2,3,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06192965433572078,10226.65700505984,2,1,2_0,2_0_0,2_4_0,2_0_0 -9960,2,59.0,0.0,8,111,920.0,1840.0,0.0,0,77,0.0,0.0,1271.600289369856,2760.0,0.0,3337.121337559306,50,2,2,2,2,1,2,2,2,0,,2,2001.0,6,123820,1,3,0,0,1,,995.0,492.0,31,0.0,2.0,4.0,3.0,2.0,2,2,921.066588956399,920.0,17785.952240589817,0,7,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.15517864675816048,8892.976120294908,1,1,1_0,1_0_0,1_4_0,1_0_0 -9961,2,71.0,0.0,2,111,338.0,0.0,0.0,0,74,4480.754631054002,0.0,467.17488892066456,3428.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,114000,2,1,2,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1049.30925037832,338.0,39641.85995855806,0,5,0,1,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08647424726245591,39641.85995855806,9,5,9,9_1,9_4,9_0_1 -9962,2,82.0,0.0,1,111,400.0,2240.0,0.0,75,74,0.0,0.0,552.8696910303722,2708.0,116.98223628493304,4062.5824978982855,71,0,0,0,0,0,0,0,0,0,,1,,1,113197,2,1,3,0,2,,180.0,,41,0.0,4.0,10.0,2.0,1.5,1,1,712.153001454425,400.0,50713.55207020379,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05339795556523552,33809.03471346919,9,5,9,9_1,9_4,9_1_0 -9963,1,34.0,268.0,7,111,3300.0,0.0,0.0,0,45,0.0,0.0,4561.174951000571,3300.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,2,,5,125961,2,1,0,0,1,,0.0,571.0,32,1.0,0.0,4.0,3.0,1.6,4,4,917.685219827951,3300.0,22457.632682432617,0,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.14694335982177723,14036.020426520385,3,2,3_1,3_0_1,3_4_1,3_0_0 -9964,2,81.0,0.0,2,111,425.0,1662.0,0.0,77,74,0.0,0.0,587.4240467197704,2087.0,0.0,3014.29112120846,31,0,0,0,0,0,0,0,0,0,,2,,2,111088,2,2,0,0,1,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,328.065824278131,425.0,18478.890986904054,5,5,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11293967811591354,12319.260657936036,2,1,2_0,2_0_0,2_4_0,2_0_1 -9965,1,38.0,308.0,2,111,310.0,360.0,0.0,0,52,0.0,0.0,428.47401054853844,670.0,0.0,652.9150443050816,42,0,0,0,0,0,0,0,0,0,,2,,2,113270,1,3,0,1,1,727.0,0.0,347.0,22,1.0,0.0,3.0,2.0,1.5,1,1,205.022073760832,310.0,18523.46686249856,0,1,2,3,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03617033490401517,12348.977908332374,2,1,2_1,2_0_1,2_4_1,2_0_1 -9966,2,78.0,0.0,2,111,150.0,585.0,0.0,75,74,0.0,0.0,207.32613413638958,735.0,0.0,1060.9869469957575,43,0,0,0,0,0,0,0,0,0,,2,,2,100988,2,1,0,1,1,492.0,0.0,294.0,41,0.0,1.0,3.0,2.0,1.5,2,2,778.812067665821,150.0,48456.27120717589,5,5,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015168315301387736,32304.180804783926,8,4,8,8_0,8_4,8_0_1 -9967,2,53.0,0.0,2,111,520.0,2350.0,0.0,52,37,0.0,0.0,718.7305983394839,2870.0,0.0,4262.084316991505,60,2,2,2,1,1,2,2,2,3,50.0,1,,2,118620,1,3,3,0,2,,1230.0,670.0,43,2.0,1.0,2.0,3.0,2.0,2,2,1219.74850248254,520.0,47056.39745018573,1,1,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.060990644322872455,23528.198725092865,6,3,6,6_1,6_4,6_0_1 -9968,2,71.0,0.0,2,111,250.0,0.0,0.0,0,78,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,126921,2,1,0,1,1,,0.0,290.0,11,0.0,4.0,1.0,1.0,1.0,1,1,1099.37975606284,250.0,23365.379876251805,0,5,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010699590647533019,23365.379876251805,6,3,6,6_0,6_4,6_0_1 -9969,0,59.0,0.0,5,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,964.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,8,,3,110707,1,2,0,0,2,,0.0,,43,2.0,4.0,3.0,2.0,1.5,1,1,929.929521540251,0.0,53866.5186926289,1,1,5,0,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017896088765281835,35911.0124617526,9,5,9,9_0,9_4,9_0_0 -9970,2,56.0,0.0,2,111,300.0,400.0,0.0,67,47,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,100191,2,1,0,1,1,560.0,0.0,303.0,43,2.0,1.0,3.0,3.0,1.8,2,2,767.507121153485,300.0,56269.87440598319,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012440049091802644,31261.041336657327,8,4,8,8_0,8_4,8_0_1 -9971,2,62.0,0.0,6,111,895.0,650.0,0.0,77,38,0.0,2329.1381358437798,1237.045933680458,3795.0,0.0,1178.8743855508417,43,0,0,0,0,0,0,0,0,0,,1,,4,116254,2,1,2,0,1,,800.0,,42,1.0,2.0,7.0,3.0,2.0,4,3,754.437068464142,895.0,75086.7733717757,7,1,0,1,171.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05054152455333098,37543.38668588785,9,5,9,9_1,9_4,9_0_0 -9972,2,43.0,0.0,5,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,386.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,115566,2,1,0,1,1,,0.0,,32,2.0,0.0,4.0,3.0,1.8,2,2,932.236615690105,0.0,22383.44702876444,0,1,0,1,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01724488634408992,12435.248349313577,2,1,2_0,2_0_0,2_4_0,2_0_0 -9973,2,60.0,0.0,2,111,360.0,2540.0,0.0,0,46,0.0,0.0,497.582721927335,2900.0,0.0,4606.67836815252,50,0,0,0,0,0,0,0,0,0,,1,,2,133484,1,3,3,0,1,,384.0,,32,2.0,2.0,7.0,3.0,2.0,3,3,843.880964021163,360.0,54147.449071088995,0,4,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05355746299687458,27073.724535544497,7,4,7,7_1,7_4,7_0_1 -9974,2,64.0,0.0,6,111,1500.0,0.0,0.0,0,75,0.0,155.27587572291867,2073.261341363896,1650.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112911,2,1,2,0,1,,566.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,786.914568700957,1500.0,50921.54222101479,0,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03240278923286542,33947.69481400986,9,5,9,9_1,9_4,9_0_0 -9975,2,49.0,0.0,2,111,162.0,57.0,0.0,0,52,0.0,0.0,223.91222486730075,219.0,0.0,103.3782153483046,50,2,1,2,1,1,2,2,2,2,30.0,2,,2,133606,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,3,1102.18414121524,162.0,16616.124521101243,0,1,0,1,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.013179968633593608,16616.124521101243,4,2,4_0,4_0_0,4_4_0,4_0_1 -9976,1,48.0,326.0,2,111,1200.0,0.0,0.0,85,55,0.0,0.0,1658.6090730911167,1680.0,825.756962011292,0.0,71,2,2,1,1,1,2,2,2,3,90.0,2,,2,111160,1,3,0,0,2,,0.0,530.0,42,1.0,0.0,2.0,4.0,2.1,2,2,1259.63230617833,1200.0,27874.07412272184,6,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06027106021902018,13273.368629867542,3,2,3_1,3_0_1,3_4_1,3_0_1 -9977,2,81.0,0.0,2,111,225.0,1850.0,0.0,77,72,0.0,0.0,310.9892012045844,2075.0,0.0,3355.2578665677806,71,0,0,0,0,0,0,0,0,0,,1,,2,123263,2,2,3,0,1,,226.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1050.95659107364,225.0,37016.68642543769,5,5,0,1,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0560558007854012,24677.790950291794,7,4,7,7_1,7_4,7_0_1 -9978,2,59.0,0.0,2,111,478.0,0.0,0.0,0,75,0.0,0.0,660.6792807812948,478.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,126702,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,907.208132751665,478.0,12206.112509409815,0,5,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03916070736129173,12206.112509409815,2,1,2_0,2_0_0,2_4_0,2_0_1 -9979,2,65.0,0.0,7,111,867.0,189.0,0.0,0,75,0.0,0.0,1198.345055308332,1056.0,0.0,342.78039826016783,44,0,0,0,0,0,0,0,0,0,,2,,5,117124,2,2,0,3,1,620.0,382.0,611.0,11,0.0,2.0,2.0,1.0,1.0,2,2,881.755595237942,867.0,30201.39757362406,0,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03496526931992849,30201.39757362406,8,4,8,8_0,8_4,8_0_0 -9980,2,52.0,0.0,1,111,0.0,0.0,600.0,52,64,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,50,0,0,0,0,0,0,0,0,2,1.0,2,,1,102633,1,3,0,3,1,,0.0,435.0,43,2.0,2.0,4.0,4.0,2.3,2,2,839.77478479383,0.0,32610.83600524297,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018398792349375394,14178.62435010564,3,2,3_0,3_0_0,3_4_0,3_1_0 -9981,2,63.0,0.0,7,111,540.0,800.0,0.0,0,77,0.0,0.0,746.3740828910024,1340.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,2,,5,120936,2,1,0,0,1,,0.0,453.0,11,0.0,1.0,2.0,1.0,1.0,4,3,1051.94899575678,540.0,19301.17023640832,0,5,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06942584224620338,19301.17023640832,5,3,5,5_0,5_4,5_0_0 -9982,2,40.0,0.0,2,111,300.0,900.0,0.0,65,52,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,44,2,2,2,1,2,2,2,2,2,20.0,8,,2,115131,2,2,0,0,1,,0.0,411.0,43,2.0,0.0,2.0,2.0,1.5,2,2,934.068885814309,300.0,36170.32431317829,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03317636827388889,24113.549542118857,6,3,6,6_0,6_4,6_0_1 -9983,2,40.0,0.0,1,111,497.0,1900.0,0.0,34,43,0.0,31.055175144583732,686.9405911052374,2427.0,0.0,3445.940511610153,50,1,2,2,1,2,2,2,2,2,20.0,1,,1,122174,2,2,1,0,1,,398.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,696.912996462936,497.0,113737.1320791224,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.021338677665194095,54160.539085296376,10,5,10,10_1,10_4,10_1_0 -9984,2,28.0,0.0,6,111,180.0,200.0,0.0,0,63,0.0,0.0,248.7913609636675,380.0,0.0,362.73058016948977,60,0,0,0,0,0,0,0,0,0,,2,,4,121792,1,2,0,3,1,,180.0,780.0,22,3.0,0.0,5.0,3.0,2.0,2,2,758.626595131378,180.0,29557.565116117556,0,4,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012856268725355472,14778.782558058778,3,2,3_0,3_0_0,3_4_0,3_0_0 -9986,2,60.0,0.0,2,111,0.0,0.0,0.0,78,56,0.0,0.0,0.0,345.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,106474,1,1,0,3,1,756.0,0.0,350.0,42,2.0,0.0,4.0,4.0,2.5,1,1,200.125844113545,0.0,32763.679958769477,5,1,2,3,82.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010529952692559427,13105.47198350779,2,1,2_0,2_0_0,2_4_0,2_0_1 -9987,2,65.0,0.0,2,111,450.0,0.0,0.0,72,78,0.0,0.0,621.9784024091688,959.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,114544,2,2,0,3,1,,1954.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,239.147554321824,450.0,47633.95630866324,5,5,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020132696805316288,31755.97087244216,8,4,8,8_0,8_4,8_0_1 -9988,2,48.0,0.0,1,111,350.0,350.0,0.0,37,64,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,71,2,2,2,2,1,2,2,2,2,60.0,2,,1,119863,2,2,0,3,1,,264.0,400.0,43,2.0,2.0,4.0,3.0,1.8,2,2,227.698080089436,350.0,45366.60661816371,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.015429851429966479,25203.67034342428,7,4,7,7_0,7_4,7_1_0 -9989,2,51.0,0.0,5,111,144.0,0.0,0.0,0,42,0.0,0.0,199.033088770934,1058.0,0.0,0.0,50,2,1,2,1,2,2,2,2,2,20.0,2,,3,124333,2,2,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,2.0,1,1,838.018924947963,144.0,48168.95993794609,0,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02196435217540453,24084.479968973046,6,3,6,6_0,6_4,6_0_0 -9990,2,59.0,0.0,2,111,274.0,1300.0,0.0,0,74,0.0,0.0,378.715738355805,1574.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,2,100358,1,1,2,0,1,,351.0,,31,1.0,1.0,6.0,4.0,2.3,2,2,814.252105410722,274.0,83771.7289891736,0,7,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018789154992890487,36422.49086485809,9,5,9,9_1,9_4,9_0_1 -9991,2,39.0,0.0,7,111,577.0,1200.0,0.0,37,42,0.0,0.0,797.5145293113119,1777.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,109137,2,1,1,0,2,,1200.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,700.111855140219,577.0,101917.46666332663,1,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017435676711530988,56620.81481295924,10,5,10,10_1,10_4,10_0_0 -9992,2,55.0,0.0,5,111,420.0,100.0,0.0,0,68,0.0,0.0,580.5131755818909,520.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,1,10.0,2,,3,131529,2,1,0,1,2,,0.0,,32,2.0,0.0,3.0,3.0,2.0,1,1,793.466630801434,420.0,41293.778389849176,0,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012592696049529492,20646.889194924588,5,3,5,5_0,5_4,5_0_0 -9993,2,74.0,0.0,5,111,775.0,3000.0,0.0,75,72,0.0,0.0,1071.185026371346,3775.0,0.0,5440.958702542347,50,0,0,0,0,0,0,0,0,0,,1,,3,100819,2,1,1,0,1,,480.0,,41,2.0,0.0,3.0,4.0,2.5,1,1,795.18681056053,775.0,120390.6036933322,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031356267716839074,48156.24147733288,10,5,10,10_1,10_4,10_0_0 -9994,2,60.0,0.0,2,111,350.0,250.0,0.0,0,77,0.0,0.0,483.76097965157567,600.0,0.0,453.4132252118622,71,2,2,2,1,2,2,2,2,0,,2,,2,117223,1,1,0,1,2,770.0,0.0,411.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1122.94488570777,350.0,45948.75768530193,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013058024421668485,45948.75768530193,10,5,10,10_0,10_4,10_0_1 -9995,2,55.0,0.0,7,111,900.0,0.0,0.0,0,54,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,25.0,2,,5,108022,2,2,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,1312.45665829284,900.0,25419.966966177613,0,1,0,1,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03540523877145433,25419.966966177613,7,4,7,7_0,7_4,7_0_0 -9996,2,53.0,0.0,1,111,0.0,0.0,0.0,22,56,0.0,51.75862524097289,0.0,3632.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,125780,2,1,2,0,1,,493.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,694.661970381912,0.0,40840.23512285177,1,1,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08893190720069455,27226.823415234514,7,4,7,7_1,7_4,7_1_0 -9997,2,37.0,0.0,9,111,600.0,1000.0,0.0,38,35,0.0,258.79312620486445,829.3045365455583,1850.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,3,60.0,1,2011.0,6,129276,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,745.965243820699,600.0,89969.03099552103,1,1,1,2,118.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020562631157960337,37487.09624813376,9,5,9,9_1,9_4,9_0_0 -9998,2,58.0,0.0,7,111,800.0,0.0,0.0,77,35,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,127143,2,1,0,0,1,,0.0,,42,1.0,3.0,3.0,2.0,1.5,1,1,964.43761741775,800.0,78214.21394521637,5,4,0,1,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010228319887742457,52142.80929681091,10,5,10,10_0,10_4,10_0_0 -9999,2,69.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,607.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,101585,1,2,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,977.059347352577,0.0,47753.820623543514,7,5,0,1,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012711024836842852,31835.880415695676,8,4,8,8_0,8_4,8_0_1 -10000,2,74.0,0.0,1,111,0.0,400.0,0.0,86,78,0.0,0.0,0.0,2555.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,1,,1,132715,2,1,2,0,1,,152.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,730.843698662977,0.0,18632.05339525699,5,5,0,1,94.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1371292764033408,12421.368930171326,2,1,2_0,2_1_0,2_4_0,2_1_0 -10001,2,43.0,0.0,1,111,600.0,180.0,0.0,54,33,0.0,0.0,829.3045365455583,780.0,0.0,326.4575221525408,50,2,1,2,2,1,2,2,2,3,30.0,2,,1,127704,2,2,0,1,1,990.0,0.0,398.0,43,2.0,0.0,4.0,5.0,2.8,2,2,659.037565435603,600.0,75003.41294892716,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.010399526759284053,26786.933196045415,7,4,7,7_0,7_4,7_1_0 -10002,2,46.0,0.0,1,111,600.0,2000.0,0.0,52,63,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,123161,2,1,1,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,923.269522139376,600.0,41249.02760276137,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06303178889545376,19642.394096553035,5,3,5,5_1,5_4,5_1_0 -10003,2,44.0,0.0,1,111,400.0,2000.0,0.0,0,56,0.0,0.0,552.8696910303722,2400.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,1,116273,2,1,2,0,2,,350.0,,22,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,570.591959967391,400.0,63285.25141916663,0,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03792352793392133,24340.48131506409,7,4,7,7_1,7_4,7_1_0 -10004,2,61.0,0.0,2,111,1900.0,0.0,0.0,78,77,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121950,2,2,2,0,1,,460.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,788.110979575908,1900.0,24474.16487888805,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07763288387580414,16316.109919258699,4,2,4_0,4_1_0,4_4_0,4_0_1 -10005,2,62.0,0.0,2,111,1100.0,0.0,0.0,74,33,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,2,,2,105850,2,2,0,0,2,,0.0,,42,2.0,2.0,3.0,3.0,2.0,2,2,911.686504659034,1100.0,221680.03104147338,5,1,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004962106847568082,110840.01552073669,10,5,10,10_0,10_4,10_0_1 -10006,1,42.0,540.0,2,111,0.0,0.0,0.0,21,56,0.0,0.0,0.0,2700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123062,1,3,0,0,2,,0.0,580.0,42,1.0,0.0,4.0,5.0,2.8,2,2,644.889173565977,0.0,22214.166466199844,7,1,2,3,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12154406081849653,7933.630880785659,1,1,1_1,1_0_1,1_4_1,1_0_1 -10007,2,38.0,0.0,5,111,839.0,0.0,0.0,0,46,0.0,0.0,1159.6441769362057,839.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,2,,3,127895,2,2,0,1,2,,0.0,,32,3.0,0.0,4.0,5.0,3.0,2,2,191.741497199954,839.0,29911.204234422923,0,1,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028049689789301353,9970.401411474308,2,1,2_0,2_0_0,2_4_0,2_0_0 -10008,2,80.0,0.0,2,111,500.0,0.0,0.0,77,75,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,127341,2,1,0,1,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,239.030716019449,500.0,49303.24084279998,5,5,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010141321167795356,32868.82722853332,8,4,8,8_0,8_4,8_0_1 -10009,2,32.0,0.0,5,111,1400.0,0.0,0.0,56,63,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,3,109532,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,911.686504659034,1400.0,20787.871671761055,1,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06734696182975802,11548.817595422808,2,1,2_0,2_0_0,2_4_0,2_0_0 -10010,2,80.0,0.0,2,111,600.0,1400.0,0.0,0,77,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,50,2,2,2,1,2,2,2,2,0,,2,,2,107839,2,2,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1314.25612345459,600.0,23101.55294636275,0,5,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.08657426644189703,23101.55294636275,6,3,6,6_0,6_4,6_0_1 -10011,2,45.0,0.0,2,111,600.0,300.0,0.0,0,55,0.0,0.0,829.3045365455583,900.0,0.0,544.0958702542347,50,2,2,2,1,2,1,2,2,3,45.0,2,,2,107324,1,3,0,0,2,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1272.41474229518,600.0,22974.244160759015,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03917430291514174,22974.244160759015,6,3,6,6_0,6_4,6_0_1 -10012,2,83.0,0.0,1,111,1200.0,0.0,0.0,0,74,3733.962192545002,0.0,1658.6090730911167,3700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,108037,1,1,2,0,2,,170.0,227.0,11,0.0,7.0,4.0,1.0,1.0,2,2,944.529883016688,1200.0,28690.652770629644,0,5,2,3,65.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12896186188512435,28690.652770629644,8,4,8,8_1,8_4,8_1_0 -10013,2,44.0,0.0,2,111,0.0,0.0,1000.0,46,53,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,101333,1,1,2,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,748.438251200918,0.0,29438.887643743063,1,1,1,2,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033968674771328866,14018.517925591934,3,2,3_0,3_1_0,3_4_0,3_0_1 -10014,2,59.0,0.0,2,111,770.0,66.0,0.0,0,52,0.0,0.0,1064.2741552334664,836.0,0.0,119.70109145593163,50,2,2,1,2,1,2,2,2,3,35.0,2,,2,123741,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1269.67842563531,770.0,23522.4869963188,0,1,0,1,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03554045965168698,23522.4869963188,6,3,6,6_0,6_4,6_0_1 -10015,2,58.0,0.0,2,111,0.0,2000.0,0.0,52,37,0.0,0.0,0.0,3208.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,109385,2,1,1,0,1,,784.0,,43,2.0,3.0,6.0,4.0,2.1,1,1,676.073364732498,0.0,156644.3040960481,1,1,0,1,150.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02047951898738036,74592.5257600229,10,5,10,10_1,10_4,10_0_1 -10016,1,38.0,137.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,670.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,121682,2,2,0,1,1,516.0,0.0,430.0,12,1.0,2.0,2.0,1.0,1.0,2,2,877.003482806131,0.0,15510.00392100756,0,1,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04319792589430084,15510.00392100756,3,2,3_1,3_0_1,3_4_1,3_0_0 -10017,2,31.0,0.0,2,111,300.0,350.0,0.0,81,65,0.0,0.0,414.65226827277917,650.0,0.0,634.7785152966071,50,2,2,2,2,1,2,2,2,0,,2,,2,131570,2,3,0,1,1,876.0,0.0,650.0,43,2.0,0.0,4.0,4.0,2.3,1,1,780.869299970219,300.0,46990.40094407762,4,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01383261234083856,20430.609106120708,5,3,5,5_0,5_4,5_0_1 -10018,2,45.0,0.0,2,111,660.0,204.0,0.0,47,46,0.0,0.0,912.2349902001142,864.0,0.0,369.9851917728796,60,0,0,0,0,0,0,0,0,1,30.0,2,,2,124455,1,1,0,1,1,775.0,0.0,338.0,43,2.0,0.0,3.0,3.0,2.0,2,2,767.423832047197,660.0,33894.61937614487,4,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02549077157090266,16947.309688072433,4,2,4_0,4_0_0,4_4_0,4_0_1 -10019,2,41.0,0.0,2,111,650.0,300.0,0.0,54,63,0.0,0.0,898.4132479243549,950.0,0.0,544.0958702542347,20,2,1,2,2,1,2,2,2,3,60.0,2,,2,124709,2,1,0,1,2,625.0,0.0,364.0,43,2.0,0.0,3.0,4.0,2.1,1,1,739.355298667173,650.0,36791.905076842755,1,1,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02582089723312373,17519.95479849655,4,2,4_0,4_0_0,4_4_0,4_0_1 -10020,2,35.0,0.0,2,111,600.0,220.0,0.0,81,62,0.0,0.0,829.3045365455583,820.0,0.0,399.00363818643876,60,2,2,2,2,1,2,2,2,0,,2,,2,104201,1,3,0,1,2,500.0,0.0,276.0,43,2.0,0.0,2.0,2.0,1.5,1,1,770.308112820674,600.0,12335.94256472097,4,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06647242362696164,8223.96170981398,1,1,1_0,1_0_0,1_4_0,1_0_1 -10022,2,46.0,0.0,2,111,300.0,200.0,0.0,0,63,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,10,0,0,0,0,0,0,0,0,2,25.0,2,,2,123184,2,1,0,1,1,744.0,0.0,281.0,32,1.0,0.0,2.0,3.0,2.0,2,2,759.126606556196,300.0,19811.790365573735,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025237497004250195,9905.895182786868,2,1,2_0,2_0_0,2_4_0,2_0_1 -10023,2,80.0,0.0,2,111,0.0,0.0,800.0,0,78,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,70,0,0,0,0,0,0,0,0,0,,2,,2,116969,2,2,0,1,1,1116.0,0.0,315.0,11,0.0,2.0,4.0,1.0,1.0,1,1,926.246280948813,0.0,20024.05139247391,0,5,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039951954992518746,20024.05139247391,5,3,5,5_0,5_4,5_0_1 -10024,2,51.0,0.0,1,111,400.0,1400.0,0.0,0,52,0.0,0.0,552.8696910303722,1800.0,0.0,2539.1140611864284,50,2,2,1,1,1,2,2,2,3,60.0,1,,1,118338,1,2,3,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,245.536955056929,400.0,28893.349433864838,0,1,1,2,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.062298073268386316,28893.349433864838,8,4,8,8_1,8_4,8_1_0 -10025,2,59.0,0.0,2,111,360.0,300.0,0.0,77,67,0.0,0.0,497.582721927335,660.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,3,75.0,2,,2,120281,2,3,0,1,1,588.0,0.0,337.0,42,1.0,0.0,3.0,2.0,1.5,2,2,778.727551758028,360.0,36944.931434322796,5,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017864426170969772,24629.954289548532,7,4,7,7_0,7_4,7_0_1 -10026,2,43.0,0.0,7,111,820.0,0.0,0.0,46,42,0.0,0.0,1133.3828666122631,820.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,5,115161,2,1,0,1,1,768.0,0.0,505.0,43,2.0,0.0,4.0,4.0,2.1,1,1,706.314411923536,820.0,41996.0,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019525669111343937,19998.095238095237,5,3,5,5_0,5_4,5_0_0 -10027,2,43.0,0.0,2,111,800.0,615.0,0.0,63,52,0.0,0.0,1105.7393820607444,1415.0,0.0,1115.396534021181,70,1,2,2,2,1,2,2,2,1,5.0,2,,2,133177,1,3,0,1,1,468.0,0.0,325.0,43,3.0,0.0,4.0,4.0,2.5,1,1,780.869299970219,800.0,33061.08932539812,4,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04279955769373188,13224.435730159248,2,1,2_0,2_0_0,2_4_0,2_0_1 -10028,1,52.0,308.0,2,111,204.0,60.0,0.0,0,85,0.0,0.0,281.96354242548983,264.0,0.0,108.81917405084694,71,2,1,2,2,1,2,2,2,0,,2,,2,106574,1,3,0,1,1,600.0,0.0,294.0,11,0.0,1.0,2.0,1.0,1.0,1,1,259.322052618395,204.0,6060.0,0,7,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0.04356435643564356,6060.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -10029,1,85.0,283.0,2,111,276.0,115.0,0.0,0,77,0.0,0.0,381.48008681095683,391.0,0.0,208.57008359745663,50,0,0,0,0,0,0,0,0,0,,2,,2,128366,2,3,0,1,1,768.0,0.0,488.0,11,0.0,1.0,3.0,1.0,1.0,2,2,246.153491310745,276.0,11312.604745316388,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034563215881990454,11312.604745316388,2,1,2_1,2_0_1,2_4_1,2_0_1 -10030,2,82.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,647.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128494,1,2,0,1,1,531.0,0.0,376.0,11,0.0,0.0,3.0,1.0,1.0,4,4,246.153491310745,0.0,18851.595673380827,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034320702141601135,18851.595673380827,5,3,5,5_0,5_4,5_0_1 -10031,2,83.0,0.0,2,111,280.0,170.0,0.0,0,77,0.0,0.0,387.00878372126056,450.0,0.0,308.32099314406634,71,2,2,2,2,1,2,2,2,0,,2,,2,130214,1,3,0,1,1,770.0,0.0,299.0,21,0.0,0.0,3.0,3.0,2.0,2,2,215.397155515342,280.0,46338.40008451503,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.009711168257412002,23169.200042257515,6,3,6,6_0,6_4,6_0_1 -10032,2,53.0,0.0,8,111,1456.0,0.0,0.0,55,55,0.0,0.0,2012.445675350555,1456.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,101529,2,1,0,0,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,3,2,271.728106729391,1456.0,38677.261579005826,1,1,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03764485748366225,15470.90463160233,3,2,3_0,3_0_0,3_4_0,3_0_0 -10033,2,59.0,0.0,1,111,780.0,325.0,0.0,85,63,0.0,0.0,1078.0958975092258,1105.0,0.0,589.4371927754208,71,2,2,2,2,1,2,2,2,0,,2,,1,132747,1,3,0,0,1,,560.0,700.0,42,1.0,0.0,3.0,3.0,2.0,1,1,228.706451294553,780.0,18951.077393707987,6,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.058308030569643225,9475.538696853993,1,1,1_0,1_0_0,1_4_0,1_1_0 -10034,2,40.0,0.0,1,111,475.0,299.0,0.0,85,56,0.0,0.0,656.532758098567,774.0,0.0,542.2822173533872,71,2,2,2,2,1,2,2,2,3,45.0,2,,1,119165,1,3,0,0,2,,0.0,550.0,42,1.0,0.0,1.0,2.0,1.5,2,1,359.570167990734,475.0,13669.02403428258,6,1,2,3,20.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.05662437918455408,9112.68268952172,1,1,1_0,1_0_0,1_4_0,1_1_0 -10035,1,67.0,170.0,6,111,370.0,0.0,0.0,0,77,0.0,0.0,511.40446420309434,370.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,101160,2,2,0,1,1,416.0,0.0,376.0,11,0.0,0.0,3.0,1.0,1.0,3,3,820.114885992737,370.0,12146.950090047638,0,5,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030460321089419158,12146.950090047638,2,1,2_1,2_0_1,2_4_1,2_0_0 -10036,2,67.0,0.0,5,111,530.0,0.0,0.0,56,78,0.0,0.0,732.5523406152432,530.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,109383,2,1,0,1,1,720.0,0.0,410.0,42,1.0,4.0,3.0,4.0,2.3,1,1,691.39552848115,530.0,23548.166578132772,1,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02250706008221324,10238.333294840337,2,1,2_0,2_0_0,2_4_0,2_0_0 -10037,0,48.0,0.0,2,111,1200.0,80.0,0.0,56,63,0.0,0.0,1658.6090730911167,1280.0,0.0,145.09223206779592,43,2,2,2,2,1,2,2,2,0,,2,,2,126905,1,3,0,1,2,733.0,0.0,,43,3.0,0.0,2.0,4.0,2.5,3,3,888.614791761435,1200.0,53052.0,1,1,5,0,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.024127271356405036,21220.8,5,3,5,5_0,5_4,5_0_1 -10038,2,73.0,0.0,1,111,315.0,1900.0,0.0,75,72,0.0,0.0,435.3848816864181,2215.0,0.0,3445.940511610153,41,0,0,0,0,0,0,0,0,0,,1,,1,118354,2,1,2,0,1,,432.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,694.370896142759,315.0,93741.87677796296,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02362871404043307,62494.58451864197,10,5,10,10_1,10_4,10_1_0 -10039,2,70.0,0.0,1,111,215.0,170.0,0.0,0,78,0.0,0.0,297.16745892882506,385.0,0.0,308.32099314406634,71,0,0,0,0,0,0,0,0,0,,2,,1,105710,2,1,0,0,1,,0.0,500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,977.317088174413,215.0,13639.415464192874,0,5,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028227016107158574,13639.415464192874,3,2,3_0,3_0_0,3_4_0,3_1_0 -10040,2,80.0,0.0,5,111,550.0,1100.0,0.0,0,75,0.0,0.0,760.1958251667618,1650.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,2,,3,124346,2,2,0,0,1,,0.0,400.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1030.24005718705,550.0,20048.51639145424,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08230035418996486,20048.51639145424,5,3,5,5_0,5_4,5_0_0 -10041,2,68.0,0.0,5,111,320.0,60.0,0.0,0,75,0.0,0.0,442.2957528242978,380.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,2,,3,132700,1,1,0,1,1,,0.0,544.0,11,0.0,2.0,3.0,1.0,1.0,2,2,822.065008179328,320.0,16844.0047926769,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022559955585218595,16844.0047926769,4,2,4_0,4_0_0,4_4_0,4_0_0 -10042,2,80.0,0.0,5,111,225.0,110.0,0.0,0,86,0.0,0.0,310.9892012045844,335.0,0.0,199.50181909321938,71,2,1,2,2,1,2,2,2,0,,2,,3,132143,2,2,0,1,1,,0.0,545.0,11,0.0,1.0,3.0,1.0,1.0,2,2,883.050307400739,225.0,12518.426387527024,0,6,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.026760551975908386,12518.426387527024,2,1,2_0,2_0_0,2_4_0,2_0_0 -10043,2,84.0,0.0,5,111,217.0,59.0,0.0,0,75,0.0,0.0,299.93180738397695,276.0,0.0,107.00552114999948,60,0,0,0,0,0,0,0,0,0,,2,,3,107941,2,2,0,1,1,1450.0,0.0,458.0,11,0.0,2.0,4.0,1.0,1.0,1,1,868.223070321124,217.0,22324.100260452924,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01236332021357802,22324.100260452924,6,3,6,6_0,6_4,6_0_0 -10044,1,38.0,210.0,5,111,750.0,130.0,0.0,85,63,0.0,0.0,1036.630670681948,880.0,0.0,235.77487711016835,71,0,0,0,0,0,0,0,0,3,40.0,2,,3,122669,2,2,0,1,1,1330.0,0.0,750.0,42,1.0,0.0,5.0,5.0,2.4,1,1,832.101146685358,750.0,21863.89506541764,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.040249004002580746,9109.95627725735,1,1,1_1,1_0_1,1_4_1,1_0_0 -10045,2,42.0,0.0,5,111,700.0,600.0,0.0,85,37,0.0,0.0,967.5219593031513,1300.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,3,116515,1,3,0,1,1,276.0,0.0,593.0,42,2.0,0.0,3.0,6.0,3.0999999999999996,3,3,798.790259863621,700.0,43056.31465059164,6,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030193016066277206,13889.133758255368,3,2,3_0,3_0_0,3_4_0,3_0_0 -10046,2,58.0,0.0,5,111,315.0,0.0,0.0,56,63,0.0,0.0,435.3848816864181,315.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,3,106255,2,2,0,1,1,412.0,0.0,690.0,43,2.0,0.0,2.0,3.0,2.0,2,2,962.632224789863,315.0,23412.0,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013454638646847771,11706.0,2,1,2_0,2_0_0,2_4_0,2_0_0 -10047,2,58.0,0.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,669.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,125062,2,1,0,1,1,303.0,0.0,595.0,22,2.0,0.0,3.0,3.0,2.0,1,1,962.632224789863,0.0,31554.12234904559,0,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021201667173615275,15777.061174522794,3,2,3_0,3_0_0,3_4_0,3_0_0 -10048,2,42.0,0.0,5,111,310.0,240.0,0.0,63,64,0.0,0.0,428.47401054853844,550.0,0.0,435.27669620338776,70,0,0,0,0,0,0,0,0,2,1.0,2,,3,124082,2,1,0,1,1,,353.0,,43,3.0,0.0,3.0,4.0,2.3,2,2,880.690270148002,310.0,57950.66572895261,1,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009490831435353394,25195.941621283746,7,4,7,7_0,7_4,7_0_0 -10049,2,53.0,0.0,2,111,597.0,476.0,0.0,54,67,0.0,0.0,825.1580138628306,1073.0,0.0,863.2987808033856,50,2,2,2,2,1,2,2,2,2,45.0,2,,2,109401,1,3,0,1,2,648.0,0.0,470.0,43,2.0,0.0,3.0,4.0,2.1,2,2,208.012454761199,597.0,54354.217262581216,1,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019740878519442496,25882.960601229148,7,4,7,7_0,7_4,7_0_1 -10050,1,48.0,123.0,1,111,190.0,0.0,0.0,0,62,0.0,0.0,262.6131032394268,190.0,0.0,0.0,50,2,1,2,2,1,2,2,2,3,60.0,2,,1,109600,1,2,0,1,2,550.0,0.0,470.0,12,1.0,2.0,2.0,1.0,1.0,2,2,239.093770489541,190.0,13192.193516463567,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.01440245701087421,13192.193516463567,2,1,2_1,2_0_1,2_4_1,2_1_0 -10051,2,70.0,0.0,2,111,270.0,0.0,0.0,0,75,4182.037655650402,0.0,373.1870414455012,3070.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,118797,1,3,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,293.643880162353,270.0,25607.68629209685,0,5,0,1,73.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.11988587976991409,25607.68629209685,7,4,7,7_0,7_4,7_0_1 -10052,2,32.0,0.0,2,111,0.0,0.0,0.0,42,42,0.0,0.0,0.0,1253.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,2,116348,2,1,0,1,2,973.0,0.0,700.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1062.45396826922,0.0,42292.76520789403,1,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029626816639696216,28195.176805262687,8,4,8,8_0,8_4,8_0_1 -10053,1,29.0,110.0,2,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,181.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,,2,103839,1,2,0,1,2,305.0,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,2,1,1141.54373234464,0.0,27929.0860769644,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.006480698992484641,27929.0860769644,7,4,7,7_0,7_4,7_0_1 -10056,2,48.0,0.0,2,111,210.0,200.0,0.0,0,54,0.0,0.0,290.25658779094545,410.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,2,127490,2,2,0,1,1,864.0,0.0,259.0,32,1.0,0.0,3.0,2.0,1.5,2,2,777.571966973244,210.0,11201.04891178921,0,4,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036603714815357256,7467.3659411928065,1,1,1_0,1_0_0,1_4_0,1_0_1 -10057,1,37.0,304.0,7,111,540.0,1080.0,0.0,43,43,0.0,0.0,746.3740828910024,1620.0,0.0,1958.7451329152448,71,2,2,2,2,1,2,2,1,3,50.0,2,,5,128801,1,3,0,0,1,,0.0,613.0,43,2.0,0.0,3.0,4.0,2.1,3,2,838.864276592191,540.0,41230.53477725957,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.03929126820090387,19633.587989171225,5,3,5,5_0,5_4,5_0_0 -10058,2,46.0,0.0,2,111,350.0,987.0,0.0,0,68,0.0,0.0,483.76097965157567,1337.0,0.0,1790.075413136432,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,126823,2,2,0,0,1,,0.0,305.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1161.93201612327,350.0,27942.803501612056,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04784774011393906,27942.803501612056,7,4,7,7_0,7_4,7_0_1 -10059,1,60.0,343.0,2,111,240.0,345.0,0.0,0,68,0.0,0.0,331.72181461822333,585.0,0.0,625.7102507923698,70,2,2,2,2,1,2,2,2,3,35.0,2,,2,126112,1,2,0,0,1,,0.0,399.0,32,1.0,0.0,3.0,2.0,1.5,2,2,976.79703344472,240.0,11646.761467889908,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0.050228555089141605,7764.507645259939,1,1,1_1,1_0_1,1_4_1,1_0_1 -10060,2,68.0,0.0,5,111,550.0,0.0,0.0,77,78,0.0,0.0,760.1958251667618,550.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,116052,2,1,0,1,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,804.816574114043,550.0,34107.083721982664,5,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016125682409062564,22738.05581465511,6,3,6,6_0,6_4,6_0_0 -10061,1,54.0,200.0,9,111,1128.0,0.0,0.0,0,22,0.0,0.0,1559.0925287056498,1128.0,0.0,0.0,42,2,2,1,2,1,2,2,2,0,,2,2009.0,6,127974,1,3,0,0,1,,0.0,1300.0,22,1.0,0.0,3.0,2.0,1.5,2,1,1014.24893416948,1128.0,4123.590675768573,0,4,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.27354800432265464,2749.0604505123824,1,1,1_1,1_0_1,1_4_1,1_0_0 -10062,1,46.0,218.0,2,111,781.0,490.0,0.0,0,52,0.0,0.0,1079.4780717368017,1271.0,0.0,888.68992141525,50,2,2,2,2,1,2,2,2,3,45.0,2,,2,111277,1,3,0,1,1,720.0,0.0,592.0,32,1.0,0.0,4.0,4.0,2.1,2,2,705.266283876892,781.0,34277.92047669279,0,1,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.037079262170067004,16322.819274615613,4,2,4_1,4_0_1,4_4_1,4_0_1 -10063,2,63.0,0.0,1,111,320.0,640.0,0.0,0,90,0.0,0.0,442.2957528242978,960.0,0.0,1160.7378565423674,50,0,0,0,0,0,0,0,0,0,,2,,1,110460,2,2,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,937.449188069898,320.0,26616.66057217555,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03606763505875572,26616.66057217555,7,4,7,7_0,7_4,7_1_0 -10064,0,67.0,0.0,6,111,248.0,0.0,0.0,0,77,0.0,0.0,342.7792084388308,248.0,0.0,0.0,20,2,1,2,1,2,2,2,2,0,,2,,4,122449,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,930.420214884535,248.0,9721.259529602197,0,5,5,0,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.025511097532661838,9721.259529602197,1,1,1_0,1_0_0,1_4_0,1_0_0 -10065,2,65.0,0.0,2,111,524.0,0.0,0.0,0,77,0.0,0.0,724.2592952497876,524.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,116282,1,2,0,1,2,495.0,0.0,510.0,11,0.0,1.0,2.0,1.0,1.0,1,1,930.496164711685,524.0,29437.420503084497,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01780047269919912,29437.420503084497,8,4,8,8_0,8_4,8_0_1 -10066,2,34.0,0.0,5,111,450.0,215.0,0.0,38,38,0.0,0.0,621.9784024091688,665.0,0.0,389.9353736822015,50,0,0,0,0,0,0,0,0,3,45.0,2,,3,131358,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,914.124377254117,450.0,88378.63182639274,1,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007524443253503833,49099.23990355152,10,5,10,10_0,10_4,10_0_0 -10067,2,82.0,0.0,5,111,360.0,0.0,0.0,74,74,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,127894,2,1,0,1,1,,383.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,924.72749434287,360.0,58325.85584829029,5,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006172219760244679,38883.90389886019,9,5,9,9_0,9_4,9_0_0 -10068,2,62.0,0.0,2,111,740.0,0.0,0.0,0,77,0.0,0.0,1022.8089284061887,740.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,132475,2,1,0,0,1,,278.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,982.099371229104,740.0,12714.478243108842,0,5,0,1,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05820136586423236,12714.478243108842,2,1,2_0,2_0_0,2_4_0,2_0_1 -10069,1,39.0,420.0,2,111,1100.0,1800.0,0.0,0,85,0.0,0.0,1520.3916503335236,2900.0,0.0,3264.575221525408,71,2,2,2,2,1,2,2,2,0,,2,,2,118943,2,1,0,0,1,,0.0,476.0,31,0.0,0.0,3.0,2.0,1.3,2,2,723.210175170999,1100.0,8230.218758138712,0,6,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0.3523600143838514,6330.937506260547,1,1,1_1,1_0_1,1_4_1,1_0_1 -10071,1,48.0,100.0,2,111,0.0,0.0,2500.0,55,22,0.0,0.0,1277.2833370938126,2500.0,0.0,2858.1144366315784,71,2,2,2,1,2,2,2,2,0,,1,,2,129759,1,3,4,0,2,,500.0,1000.0,43,2.0,0.0,5.0,5.0,3.0,4,4,646.343116512966,0.0,8450.783465922963,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,1,0.29583055938908254,2816.927821974321,1,1,1_1,1_1_1,1_4_1,1_0_1 -10072,2,31.0,0.0,2,111,300.0,0.0,0.0,65,47,2240.377315527001,0.0,414.65226827277917,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,113551,2,2,2,0,1,,280.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,853.098808374654,300.0,45729.62170817243,1,1,1,2,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03936179510705024,25405.34539342913,7,4,7,7_1,7_4,7_0_1 -10073,2,43.0,0.0,8,111,800.0,900.0,0.0,85,35,0.0,0.0,1105.7393820607444,1700.0,0.0,1632.287610762704,42,0,0,0,0,0,0,0,0,0,,1,1999.0,6,111544,2,1,1,0,1,,1000.0,,42,1.0,0.0,4.0,4.0,2.1,5,4,902.503113371002,800.0,27162.2503945028,6,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06258686137228352,12934.404949763237,2,1,2_0,2_1_0,2_4_0,2_0_0 -10074,2,50.0,0.0,1,111,600.0,1200.0,0.0,85,35,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,125736,2,2,4,0,1,,400.0,,42,1.0,0.0,6.0,3.0,1.8,4,3,739.816061320225,600.0,137056.38016605342,6,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013133281338812346,76142.43342558523,10,5,10,10_1,10_4,10_1_0 -10075,2,40.0,0.0,1,111,800.0,3000.0,0.0,0,52,0.0,0.0,1105.7393820607444,3800.0,0.0,5440.958702542347,71,0,0,0,0,0,0,0,0,3,90.0,1,,1,124894,2,2,5,0,1,,600.0,,32,1.0,0.0,4.0,4.0,2.1,1,1,692.801670468585,800.0,25372.533096523573,0,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14976825473214805,12082.158617392177,2,1,2_0,2_1_0,2_4_0,2_1_0 -10076,0,64.0,0.0,1,111,320.0,1480.0,0.0,0,78,0.0,0.0,442.2957528242978,1840.0,68.81308016760767,2684.2062932542244,33,0,0,0,0,0,0,0,0,0,,1,,1,122635,2,1,2,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,733.136612048101,320.0,18335.710328494602,0,5,5,0,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10035062547538989,18335.710328494602,4,2,4_0,4_1_0,4_4_0,4_1_0 -10077,2,64.0,0.0,1,111,0.0,0.0,1900.0,0,74,0.0,0.0,970.7353361912976,1900.0,0.0,2172.16697184,50,0,0,0,0,0,0,0,0,0,,1,,1,114517,2,1,3,0,1,,260.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,845.453627212671,0.0,47579.53689125421,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03993313353054613,47579.53689125421,10,5,10,10_1,10_4,10_1_0 -10078,1,31.0,106.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,387.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100788,2,1,0,0,1,,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1424.99919704734,0.0,10383.925375619236,0,4,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037269143026456085,10383.925375619236,2,1,2_1,2_0_1,2_4_1,2_0_1 -10079,2,37.0,0.0,2,111,0.0,0.0,0.0,67,54,0.0,0.0,0.0,926.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,45.0,2,,2,114993,2,3,0,0,1,,0.0,620.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1115.5766191552,0.0,23736.88246920678,1,1,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039011020137175764,15824.588312804519,3,2,3_0,3_0_0,3_4_0,3_0_1 -10080,1,44.0,181.0,9,111,1000.0,0.0,0.0,85,63,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,127955,2,1,0,0,1,,0.0,550.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,862.391431151299,1000.0,33531.60625207245,6,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02982260952495212,12896.771635412484,2,1,2_1,2_0_1,2_4_1,2_0_0 -10081,2,37.0,0.0,9,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1180.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,110620,2,1,0,0,1,,0.0,707.0,22,2.0,0.0,2.0,2.0,1.5,3,3,985.623442899827,0.0,32054.283064814976,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03681255318092734,21369.522043209985,6,3,6,6_0,6_4,6_0_0 -10082,2,47.0,0.0,8,111,300.0,0.0,0.0,43,38,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,2000.0,6,104705,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,965.569902374897,300.0,58457.68057063161,4,1,0,1,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005131917603838633,25416.382856796354,7,4,7,7_0,7_4,7_0_0 -10083,2,36.0,0.0,1,111,400.0,1200.0,0.0,22,21,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,2,,1,114840,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,865.448231209735,400.0,5948.309961638484,1,1,1,2,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.26898396524704205,3304.6166453547135,1,1,1_0,1_0_0,1_4_0,1_1_0 -10084,2,51.0,0.0,2,111,0.0,0.0,0.0,54,22,0.0,0.0,0.0,828.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,121063,2,1,0,0,1,,0.0,900.0,43,2.0,0.0,3.0,4.0,2.5,2,2,1109.17520874569,0.0,10803.606317336871,1,1,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0766410748114066,4321.4425269347485,1,1,1_0,1_0_0,1_4_0,1_0_1 -10085,0,71.0,0.0,1,111,1050.0,0.0,0.0,77,72,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119997,2,1,1,0,1,,200.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,563.76368014592,1050.0,34295.41138961429,5,5,5,0,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03061634071308946,22863.60759307619,6,3,6,6_1,6_4,6_1_0 -10086,2,43.0,0.0,2,111,1500.0,0.0,0.0,21,63,0.0,0.0,2073.261341363896,1660.0,275.25232067043066,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,114494,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,890.478730751643,1500.0,29554.03122043915,1,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056168310428391495,12849.578791495283,2,1,2_0,2_1_0,2_4_0,2_0_1 -10087,2,34.0,0.0,2,111,2500.0,0.0,0.0,54,64,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,2,2,2,1,1,1,2,2,2,20.0,2,,2,117204,1,3,0,0,1,,0.0,676.0,43,2.0,0.0,2.0,5.0,2.4,6,4,884.724160288151,2500.0,51202.78653585232,4,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.048825467696948364,21334.494389938467,6,3,6,6_0,6_4,6_0_1 -10088,2,63.0,0.0,2,111,600.0,100.0,0.0,74,78,0.0,0.0,829.3045365455583,700.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,130954,2,3,0,1,1,408.0,0.0,500.0,41,0.0,2.0,3.0,2.0,1.5,1,1,1004.72752123239,600.0,43973.728527455474,5,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015918595566963293,29315.81901830365,8,4,8,8_0,8_4,8_0_1 -10089,2,60.0,0.0,1,111,0.0,0.0,1200.0,85,22,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,70,0,0,0,0,0,0,0,0,0,,8,,1,129868,2,3,0,0,1,,300.0,1470.0,42,1.0,2.0,4.0,3.0,2.0,1,1,557.559243299468,0.0,11497.905928263188,6,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1043668305765366,5748.952964131594,1,1,1_0,1_0_0,1_4_0,1_1_0 -10090,2,63.0,0.0,2,111,480.0,250.0,0.0,74,43,0.0,0.0,663.4436292364467,730.0,0.0,453.4132252118622,50,2,2,2,1,2,2,2,2,3,30.0,2,,2,108104,2,2,0,1,1,78.0,480.0,297.0,42,1.0,4.0,4.0,2.0,1.5,2,2,1062.51513389641,480.0,59143.28051986034,5,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01234290681178677,39428.85367990689,9,5,9,9_0,9_4,9_0_1 -10091,1,63.0,370.0,2,111,850.0,0.0,0.0,21,46,0.0,0.0,1174.848093439541,850.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,125421,2,1,0,0,1,,720.0,360.0,43,2.0,0.0,3.0,3.0,1.8,2,2,796.502908324141,850.0,10228.08,1,4,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08310455139185458,5682.266666666666,1,1,1_1,1_0_1,1_4_1,1_0_1 -10092,2,75.0,0.0,2,111,800.0,0.0,0.0,0,78,0.0,0.0,1105.7393820607444,1400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,124648,2,1,0,1,1,526.0,0.0,311.0,11,0.0,3.0,3.0,1.0,1.0,2,2,820.229049625915,800.0,18428.485781858388,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07596934531529478,18428.485781858388,4,2,4_0,4_0_0,4_4_0,4_0_1 -10093,1,28.0,111.0,2,111,900.0,0.0,0.0,85,64,0.0,0.0,1243.9568048183376,1068.0,0.0,0.0,31,2,2,1,2,1,2,2,2,2,45.0,2,,2,101901,2,2,0,1,1,,248.0,476.0,42,1.0,0.0,3.0,4.0,2.1,2,2,742.790433056956,900.0,35424.99370739401,7,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030148205778709393,16869.044622568574,4,2,4_1,4_0_1,4_4_1,4_0_1 -10094,1,26.0,400.0,2,111,0.0,0.0,0.0,42,85,0.0,0.0,0.0,1916.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107989,2,2,2,0,1,,0.0,1300.0,42,1.0,0.0,5.0,5.0,2.4,2,2,709.361341869618,0.0,18107.798968314386,1,6,2,3,130.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10581076161452195,7544.916236797661,1,1,1_1,1_1_1,1_4_1,1_0_1 -10095,2,69.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,901.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,103574,2,1,2,0,1,,1246.0,,41,0.0,1.0,7.0,3.0,2.0,2,2,844.92744992452,0.0,121545.04964456832,5,5,0,1,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007412889316634249,60772.52482228416,10,5,10,10_1,10_4,10_0_1 -10096,1,40.0,250.0,2,111,420.0,420.0,0.0,85,64,0.0,0.0,580.5131755818909,840.0,0.0,761.7342183559285,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,125039,2,3,0,1,1,100.0,536.0,500.0,42,1.0,0.0,3.0,5.0,2.4,3,3,617.614269625852,420.0,16502.119656901144,6,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050902551760901464,6875.883190375477,1,1,1_1,1_0_1,1_4_1,1_0_1 -10097,1,49.0,400.0,2,111,2000.0,1000.0,0.0,0,56,0.0,0.0,2764.3484551518613,3000.0,0.0,1813.6529008474488,31,2,1,2,2,1,2,2,2,0,,2,,2,127229,2,2,0,1,1,1200.0,1364.0,165.0,32,1.0,0.0,4.0,3.0,1.8,2,2,1020.12021198997,2000.0,11550.2,0,1,2,3,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.2597357621513047,6416.777777777778,1,1,1_1,1_0_1,1_4_1,1_0_1 -10098,2,45.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,958.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104295,1,3,0,0,1,,0.0,347.0,43,2.0,0.0,4.0,4.0,2.1,2,2,851.063123853527,0.0,9412.372085425348,4,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10178093166157569,4482.081945440642,1,1,1_0,1_0_0,1_4_0,1_0_1 -10099,2,56.0,0.0,2,111,1200.0,1200.0,0.0,56,63,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,2,,2,109527,2,2,0,1,1,,0.0,630.0,43,3.0,3.0,5.0,3.0,2.0,2,2,728.626760338835,1200.0,20393.09211623885,1,4,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11768691017135649,10196.546058119426,2,1,2_0,2_0_0,2_4_0,2_0_1 -10100,2,37.0,0.0,2,111,2000.0,0.0,0.0,56,47,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,128489,2,1,1,0,1,,1092.0,,43,2.0,0.0,5.0,4.0,2.3,4,2,713.679677726248,2000.0,22495.484972020677,1,1,1,2,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08890672961652306,9780.64564000899,2,1,2_0,2_1_0,2_4_0,2_0_1 -10101,2,67.0,0.0,6,111,390.0,0.0,0.0,77,77,0.0,0.0,539.0479487546129,390.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,122072,1,2,0,1,1,888.0,0.0,459.0,41,0.0,2.0,4.0,2.0,1.5,3,2,704.449396523499,390.0,28958.636585787775,5,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013467484867412678,19305.757723858518,5,3,5,5_0,5_4,5_0_0 -10102,1,34.0,200.0,7,111,360.0,0.0,0.0,0,54,0.0,0.0,497.582721927335,389.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,40.0,2,,5,106399,1,1,0,1,1,528.0,0.0,433.0,32,1.0,0.0,2.0,2.0,1.3,1,1,744.064201832955,360.0,22794.51368651756,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.017065509944618154,17534.241297321198,4,2,4_1,4_0_1,4_4_1,4_0_0 -10103,2,51.0,0.0,5,111,1668.0,0.0,0.0,52,38,0.0,0.0,2305.466611596652,1668.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,113899,2,1,0,0,1,,0.0,579.0,43,2.0,0.0,3.0,4.0,2.5,1,1,795.669869951605,1668.0,64401.65690592541,1,4,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02589995475483694,25760.662762370164,7,4,7,7_0,7_4,7_0_0 -10104,2,35.0,0.0,1,111,720.0,960.0,0.0,46,38,0.0,0.0,995.16544385467,1680.0,0.0,1741.106784813551,10,0,0,0,0,0,0,0,0,0,,1,,1,121546,1,1,1,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,3,2,736.484568958145,720.0,98003.16573386012,1,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017142303388058406,46668.17415898101,10,5,10,10_1,10_4,10_1_0 -10105,2,53.0,0.0,1,111,734.0,1987.0,0.0,33,33,0.0,0.0,1014.515883040733,2721.0,0.0,3603.728313983881,50,0,0,0,0,0,0,0,0,3,60.0,1,,1,115985,2,1,2,0,1,,1865.0,,43,2.0,0.0,7.0,5.0,2.8,1,1,689.768087238061,734.0,148897.06195581594,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018274369985939922,53177.52212707712,10,5,10,10_1,10_4,10_1_0 -10106,2,30.0,0.0,5,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,458.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,2,,3,122019,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,806.095318339108,0.0,70806.4852677339,1,1,1,2,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0064683340553934815,47204.32351182259,10,5,10,10_0,10_4,10_0_0 -10107,2,76.0,0.0,2,111,96.0,62.0,0.0,0,75,0.0,0.0,132.68872584728933,158.0,0.0,112.44647985254183,41,0,0,0,0,0,0,0,0,0,,2,,2,130044,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,958.876743433822,96.0,45441.57748436696,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0034769919696198037,45441.57748436696,10,5,10,10_0,10_4,10_0_1 -10109,1,24.0,160.0,6,111,360.0,0.0,0.0,85,81,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,132611,2,1,0,1,2,885.0,0.0,760.0,42,1.0,0.0,2.0,3.0,1.8,1,1,825.339293123666,360.0,13673.683803971517,6,4,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.02632794535554772,7596.491002206398,1,1,1_1,1_0_1,1_4_1,1_0_0 -10110,1,44.0,156.0,6,111,687.0,998.0,0.0,0,52,0.0,0.0,949.5536943446643,1685.0,0.0,1810.025595045754,41,0,0,0,0,0,0,0,0,2,15.0,2,,4,114161,2,2,0,0,1,,0.0,434.0,32,1.0,0.0,3.0,3.0,1.8,1,1,902.946217486496,687.0,21018.552634260337,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08016727075933108,11676.973685700186,2,1,2_1,2_0_1,2_4_1,2_0_0 -10111,2,69.0,0.0,1,111,240.0,976.0,0.0,77,78,0.0,0.0,331.72181461822333,1216.0,0.0,1770.1252312271101,20,0,0,0,0,0,0,0,0,0,,1,,1,107821,2,1,1,0,1,,0.0,250.0,41,0.0,2.0,4.0,2.0,1.5,2,2,476.167556630962,240.0,30884.444829778146,5,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03937257110179808,20589.629886518764,5,3,5,5_1,5_4,5_1_0 -10112,1,47.0,122.0,2,111,199.0,279.0,0.0,0,48,0.0,0.0,275.05267128761017,478.0,0.0,506.00915933643824,31,2,2,2,2,1,2,2,2,0,,2,,2,108256,1,2,0,1,1,390.0,0.0,385.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1029.81511945314,199.0,7282.641833554727,0,4,2,3,33.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.06563552223557363,7282.641833554727,1,1,1_1,1_0_1,1_4_1,1_0_1 -10113,2,58.0,0.0,1,111,612.0,1966.0,0.0,74,34,0.0,0.0,845.8906272764696,2578.0,0.0,3565.6416030660844,70,0,0,0,0,0,0,0,0,3,240.0,1,,1,115157,2,1,2,0,2,,980.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,686.133158544448,612.0,101465.67700173832,5,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0254076065540452,67643.78466782554,10,5,10,10_1,10_4,10_1_0 -10114,2,32.0,0.0,2,111,720.0,0.0,0.0,52,68,0.0,0.0,995.16544385467,720.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,2,,2,121485,2,1,0,1,1,1056.0,0.0,422.0,43,2.0,0.0,4.0,5.0,2.4,1,1,659.808100797898,720.0,48982.52069726524,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014699121028293642,20409.383623860518,5,3,5,5_0,5_4,5_0_1 -10115,1,48.0,50.0,1,111,450.0,0.0,0.0,0,37,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,2,2,2,1,2,2,2,2,3,60.0,2,,1,102685,2,3,0,0,1,,0.0,,32,1.0,1.0,2.0,2.0,1.5,1,1,874.042647580305,450.0,33328.41947857301,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,1,0.013501990404594705,22218.94631904867,6,3,6,6_0,6_4,6_1_0 -10116,2,77.0,0.0,1,111,1013.0,700.0,0.0,75,74,2987.1697540360015,0.0,1400.1424925344177,3713.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,1,,1,121800,2,1,1,0,1,,320.0,,41,0.0,2.0,6.0,3.0,2.0,1,1,702.302058867002,1013.0,42735.09855424672,5,5,0,1,100.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08688408651466718,21367.54927712336,6,3,6,6_1,6_4,6_1_0 -10117,2,71.0,0.0,2,111,700.0,0.0,0.0,74,72,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115422,2,2,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1006.31104103815,700.0,90934.9348959287,5,5,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007697811636431271,60623.28993061913,10,5,10,10_0,10_4,10_0_1 -10118,2,58.0,0.0,7,111,1911.0,0.0,0.0,77,31,0.0,0.0,2641.334948897603,7257.0,9196.868164400765,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,101717,2,1,2,0,1,,3000.0,,42,1.0,1.0,8.0,2.0,1.5,1,1,902.362929870678,1911.0,156690.07084836476,6,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04631435776822699,104460.04723224317,10,5,10,10_1,10_4,10_0_0 -10119,2,46.0,0.0,1,111,0.0,0.0,0.0,85,31,0.0,0.0,0.0,3915.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,,1,120836,2,1,1,0,1,,401.0,,42,1.0,0.0,7.0,5.0,2.5999999999999996,1,1,707.026268170253,0.0,136483.47758101032,5,1,0,1,150.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02868479078484966,52493.645223465515,10,5,10,10_1,10_4,10_1_0 -10120,2,78.0,0.0,2,111,240.0,300.0,0.0,77,75,0.0,0.0,331.72181461822333,2425.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,111258,2,1,0,1,2,980.0,0.0,500.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1064.79901704792,240.0,33646.62188422575,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07207261425364343,22431.0812561505,6,3,6,6_0,6_4,6_0_1 -10121,2,74.0,0.0,1,111,480.0,0.0,0.0,0,75,0.0,0.0,663.4436292364467,480.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,113397,2,2,0,0,1,,178.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,992.352264045864,480.0,20598.999537589138,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023302102566879233,20598.999537589138,5,3,5,5_0,5_4,5_1_0 -10122,2,55.0,0.0,1,111,1000.0,2000.0,0.0,22,54,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,2,60.0,2,,1,128950,1,3,0,0,2,,700.0,,43,2.0,0.0,6.0,5.0,3.0,1,1,785.534049960497,1000.0,123237.99906760157,4,1,0,1,143.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02434314109850457,41079.33302253386,9,5,9,9_0,9_4,9_1_0 -10123,2,37.0,0.0,1,111,150.0,1400.0,0.0,22,46,0.0,0.0,207.32613413638958,1550.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,3,60.0,2,,1,118269,2,1,0,0,1,,450.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,792.122915532895,150.0,42664.00592786841,1,1,1,2,61.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.036330390601871015,20316.19329898496,5,3,5,5_0,5_4,5_1_0 -10124,2,34.0,0.0,1,111,221.0,682.0,0.0,85,38,0.0,0.0,305.46050429428067,903.0,0.0,1236.9112783779601,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,108697,1,3,0,0,1,,0.0,792.0,42,1.0,0.0,3.0,5.0,2.4,2,2,725.740391627669,221.0,48256.52901584459,6,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018712493799616384,20106.887089935248,5,3,5,5_0,5_4,5_1_0 -10125,1,50.0,170.0,1,111,1300.0,0.0,0.0,85,63,0.0,0.0,1796.8264958487098,1660.0,619.317721508469,0.0,70,2,2,2,2,1,2,2,2,3,75.0,2,,1,131822,1,3,0,0,2,,0.0,550.0,42,2.0,1.0,2.0,8.0,4.1,1,1,884.542723481872,1300.0,24460.445242037087,6,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.0678646681846644,5965.962254155387,1,1,1_1,1_0_1,1_4_1,1_1_0 -10126,2,47.0,0.0,2,111,300.0,0.0,0.0,35,35,0.0,724.6207533736205,414.65226827277917,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,132464,2,1,1,0,2,,200.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,938.578359781629,300.0,62285.78942546992,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016055026503221614,41523.85961697995,9,5,9,9_1,9_4,9_0_1 -10127,2,62.0,0.0,1,111,283.0,0.0,0.0,43,90,0.0,0.0,391.15530640398833,1974.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123654,2,1,2,0,1,,215.0,,42,1.0,2.0,5.0,2.0,1.5,4,2,714.760022642555,283.0,160708.33312212623,1,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012283121613238988,107138.88874808415,10,5,10,10_1,10_4,10_1_0 -10128,0,53.0,0.0,2,111,360.0,120.0,0.0,56,68,0.0,0.0,497.582721927335,480.0,0.0,217.63834810169388,60,0,0,0,0,0,0,0,0,0,,2,,2,114589,1,2,0,1,2,,0.0,,43,3.0,0.0,2.0,3.0,2.0,2,2,1118.45194007442,360.0,53160.03845214084,1,1,5,0,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009029338841282753,26580.01922607042,7,4,7,7_0,7_4,7_0_1 -10129,2,78.0,0.0,2,111,240.0,188.0,0.0,0,77,0.0,0.0,331.72181461822333,428.0,0.0,340.9667453593204,50,0,0,0,0,0,0,0,0,0,,2,,2,131094,2,1,0,1,1,588.0,0.0,321.0,11,0.0,1.0,3.0,1.0,1.0,3,3,876.178071766901,240.0,21766.192169386286,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0196635220652868,21766.192169386286,6,3,6,6_0,6_4,6_0_1 -10130,2,62.0,0.0,1,111,2000.0,0.0,0.0,75,47,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,125628,1,1,1,0,1,,1200.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,733.757707136942,2000.0,64940.726836401554,5,1,0,1,86.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03079731468109978,43293.81789093437,9,5,9,9_1,9_4,9_1_0 -10131,2,35.0,0.0,2,111,504.0,0.0,0.0,0,35,0.0,310.55175144583734,696.615810698269,804.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115060,1,1,1,0,1,,420.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,889.545086543507,504.0,22871.726108061543,0,1,1,2,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03515257205343221,17593.63546773965,4,2,4_0,4_1_0,4_4_0,4_0_1 -10132,2,46.0,0.0,2,111,624.0,1560.0,0.0,0,54,0.0,0.0,862.4767180073807,2184.0,0.0,2829.2985253220204,71,2,2,2,2,1,1,2,2,1,15.0,1,,2,102222,1,1,1,0,1,,600.0,,32,1.0,0.0,3.0,2.0,1.5,3,2,694.748338461077,624.0,38227.39846509381,0,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05713179781235319,25484.932310062537,7,4,7,7_1,7_4,7_0_1 -10133,2,44.0,0.0,2,111,840.0,0.0,0.0,64,38,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,108367,2,1,0,1,1,780.0,0.0,378.0,43,2.0,0.0,4.0,5.0,2.8,2,2,624.078188206298,840.0,64225.91909175385,1,1,2,3,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013078831908967574,22937.82824705495,6,3,6,6_0,6_4,6_0_1 -10134,2,44.0,0.0,5,111,500.0,0.0,0.0,45,65,0.0,0.0,691.0871137879653,692.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,8.0,2,,3,129357,2,1,0,1,1,412.0,0.0,344.0,43,2.0,2.0,3.0,3.0,1.8,2,2,755.432472163559,500.0,49303.86285919968,1,1,2,3,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014035411423567163,27391.034921777602,7,4,7,7_0,7_4,7_0_0 -10138,2,76.0,0.0,2,111,0.0,60.0,0.0,78,78,0.0,0.0,0.0,182.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,2,,2,122990,2,2,0,1,1,240.0,0.0,247.0,41,0.0,0.0,2.0,2.0,1.5,1,1,769.583120466144,0.0,24741.47101859277,5,5,2,3,50.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007356070294415004,16494.314012395178,4,2,4_0,4_0_0,4_4_0,4_0_1 -10139,2,49.0,0.0,2,111,0.0,0.0,1300.0,56,52,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,121873,2,1,0,1,1,530.0,0.0,1080.0,43,2.0,0.0,4.0,5.0,2.8,2,2,852.809968647156,0.0,54215.67286893916,1,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023978306109796274,19362.740310335415,5,3,5,5_0,5_4,5_0_1 -10140,2,74.0,0.0,2,111,0.0,0.0,500.0,0,77,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,12,1,2,2,1,1,1,2,2,0,,2,,2,133633,2,1,0,1,1,,425.0,,11,0.0,3.0,3.0,1.0,1.0,3,2,1045.40968706972,0.0,30970.939023664774,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01614416662077801,30970.939023664774,8,4,8,8_0,8_4,8_0_1 -10141,1,45.0,508.0,2,111,1000.0,1000.0,0.0,55,68,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,71,2,2,1,2,1,2,2,2,0,,2,,2,130434,1,3,0,1,1,270.0,0.0,455.0,43,2.0,0.0,3.0,7.0,3.1999999999999993,1,1,1025.4814278709,1000.0,17982.547807747145,4,4,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.11121894524525444,5619.546189920984,1,1,1_1,1_0_1,1_4_1,1_0_1 -10142,2,49.0,0.0,2,111,1200.0,1200.0,0.0,37,47,0.0,144.92415067472407,1658.6090730911167,2540.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,119490,2,1,1,0,1,,1200.0,,43,3.0,0.0,4.0,4.0,2.3,1,1,914.976192555486,1200.0,54198.82875402793,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04686448136226991,23564.70815392519,6,3,6,6_1,6_4,6_0_1 -10143,0,53.0,0.0,2,111,1700.0,0.0,0.0,65,45,0.0,155.27587572291867,2349.696186879082,2150.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,100321,1,1,2,0,1,,0.0,,43,3.0,1.0,3.0,3.0,2.0,1,1,876.792634085239,1700.0,69338.5596175023,1,1,5,0,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031007278083943664,34669.27980875115,9,5,9,9_1,9_4,9_0_1 -10144,2,59.0,0.0,1,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1829.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,102254,1,1,1,0,2,,438.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,826.509100013328,0.0,183829.26571014326,0,1,0,1,100.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009949449522819261,183829.26571014326,10,5,10,10_1,10_4,10_1_0 -10145,2,49.0,0.0,1,111,200.0,200.0,0.0,0,63,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,31,0,0,0,0,0,0,0,0,0,,2,,1,111972,1,3,0,1,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1045.40968706972,200.0,8122.7595693082285,0,4,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04924434812910089,8122.7595693082285,1,1,1_0,1_0_0,1_4_0,1_1_0 -10146,1,42.0,200.0,2,111,350.0,1930.0,0.0,35,43,0.0,0.0,483.76097965157567,2280.0,0.0,3500.350098635576,50,2,2,2,1,1,2,2,2,2,20.0,1,,2,121166,2,3,4,0,2,,400.0,1402.0,43,2.0,0.0,4.0,4.0,2.5,1,1,795.678864475055,350.0,39295.11218080908,1,1,2,3,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,1,0.058022483547292295,15718.044872323633,3,2,3_1,3_1_1,3_4_1,3_0_1 -10148,1,59.0,130.0,2,111,400.0,400.0,0.0,21,52,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,50,2,2,2,2,2,2,2,1,0,,2,,2,113099,2,2,0,1,1,945.0,0.0,388.0,43,2.0,0.0,5.0,5.0,2.4,2,2,642.171351978595,400.0,13623.4115755627,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05872244228714472,5676.4214898177925,1,1,1_1,1_0_1,1_4_1,1_0_1 -10149,2,29.0,0.0,2,111,450.0,1270.0,0.0,90,46,0.0,0.0,621.9784024091688,1720.0,0.0,2303.33918407626,50,0,0,0,0,0,0,0,0,0,,1,,2,102828,1,1,3,0,2,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1000.75269061888,450.0,69880.77764020993,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02461334945148491,46587.18509347329,10,5,10,10_1,10_4,10_0_1 -10150,2,26.0,0.0,1,111,0.0,0.0,650.0,0,46,0.0,0.0,332.0936676443913,650.0,0.0,743.1097535242104,50,2,1,2,1,2,2,2,2,3,45.0,2,,1,120375,1,3,0,1,1,,0.0,359.0,12,1.0,0.0,2.0,1.0,1.0,1,1,809.828689783509,0.0,16417.794461639707,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03959118878718634,16417.794461639707,4,2,4_0,4_0_0,4_4_0,4_1_0 -10151,2,24.0,0.0,1,111,400.0,0.0,0.0,0,63,0.0,0.0,552.8696910303722,400.0,0.0,0.0,31,2,2,2,1,1,2,2,2,0,,2,,1,111035,2,3,0,1,1,220.0,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,626.014279272795,400.0,16132.52758297568,0,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.024794626752853762,16132.52758297568,4,2,4_0,4_0_0,4_4_0,4_1_0 -10152,1,66.0,108.0,1,111,140.0,150.0,0.0,0,75,0.0,0.0,193.50439186063028,290.0,0.0,272.04793512711734,44,1,2,2,2,2,2,2,1,0,,2,,1,109213,2,1,0,1,1,727.0,0.0,225.0,11,0.0,0.0,1.0,1.0,1.0,2,2,735.0174391138,140.0,10632.148406117965,0,5,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.027275766752195427,10632.148406117965,2,1,2_1,2_0_1,2_4_1,2_1_0 -10153,1,24.0,166.0,1,111,430.0,0.0,0.0,55,53,0.0,0.0,594.3349178576501,430.0,0.0,0.0,10,2,1,2,2,1,2,2,1,0,,2,,1,116629,2,2,0,1,1,220.0,0.0,209.0,43,2.0,0.0,1.0,2.0,1.5,2,2,694.882904013752,430.0,9368.769229299596,1,4,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.04589717063957893,6245.8461528663975,1,1,1_1,1_0_1,1_4_1,1_1_0 -10154,2,62.0,0.0,2,111,500.0,1000.0,0.0,0,86,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,2,,2,121099,2,2,0,0,1,,0.0,356.0,31,1.0,3.0,3.0,4.0,2.5,2,2,869.171538727953,500.0,31320.28709950718,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04789228129468846,12528.11483980287,2,1,2_0,2_0_0,2_4_0,2_0_1 -10155,2,49.0,0.0,2,111,800.0,0.0,0.0,85,22,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,45.0,2,,2,111186,2,2,0,1,1,,0.0,,42,1.0,0.0,5.0,5.0,2.8,2,2,628.801032148454,800.0,3895.1792363100835,6,1,1,2,99.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.20538207652745724,1391.1354415393157,1,1,1_0,1_0_0,1_4_0,1_0_1 -10156,2,50.0,0.0,1,111,500.0,500.0,0.0,85,48,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,71,2,2,1,2,1,2,2,2,3,60.0,2,,1,119090,2,3,0,1,1,1167.0,0.0,367.0,42,2.0,2.0,4.0,4.0,2.3,1,1,780.276624701654,500.0,27676.50470992451,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03613173016177185,12033.262917358483,2,1,2_0,2_0_0,2_4_0,2_1_0 -10157,1,46.0,190.0,2,111,350.0,75.0,0.0,0,56,0.0,0.0,483.76097965157567,425.0,0.0,136.02396756355867,70,2,2,1,1,2,2,2,2,0,,2,,2,120956,1,2,0,1,1,800.0,0.0,507.0,32,1.0,2.0,5.0,3.0,1.8,3,3,738.850530039252,350.0,13892.692426120968,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030591622341031407,7718.162458956093,1,1,1_1,1_0_1,1_4_1,1_0_1 -10158,1,57.0,307.0,5,111,400.0,120.0,0.0,0,78,0.0,0.0,552.8696910303722,520.0,0.0,217.63834810169388,71,2,2,2,1,2,2,2,2,0,,2,,3,123973,1,2,0,1,1,528.0,0.0,315.0,11,0.0,3.0,2.0,1.0,1.0,2,2,866.863061327875,400.0,9852.042658588276,0,7,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.05278093264717067,9852.042658588276,2,1,2_1,2_0_1,2_4_1,2_0_0 -10159,1,48.0,42.0,2,111,300.0,120.0,0.0,0,63,0.0,0.0,414.65226827277917,420.0,0.0,217.63834810169388,33,0,0,0,0,0,0,0,0,3,90.0,2,,2,131162,2,1,0,1,1,192.0,0.0,328.0,12,1.0,4.0,2.0,1.0,1.0,4,4,866.863061327875,300.0,13951.7117643968,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030103832926923906,13951.7117643968,3,2,3_1,3_0_1,3_4_1,3_0_1 -10160,2,32.0,0.0,5,111,440.0,92.0,0.0,54,64,0.0,0.0,608.1566601334094,532.0,0.0,166.8560668779653,71,2,2,1,1,1,2,2,2,2,30.0,2,,3,123318,2,2,0,1,1,347.0,0.0,341.0,43,2.0,0.0,2.0,3.0,1.8,1,1,758.550433865794,440.0,30797.44395963368,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.017274160826375534,17109.691088685377,4,2,4_0,4_0_0,4_4_0,4_0_0 -10161,2,39.0,0.0,2,111,500.0,80.0,0.0,56,38,0.0,0.0,691.0871137879653,580.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,100986,2,1,0,1,1,321.0,0.0,446.0,43,2.0,1.0,4.0,3.0,1.8,2,2,758.488518753704,500.0,43066.205717230514,1,1,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013467636406332998,23925.66984290584,6,3,6,6_0,6_4,6_0_1 -10162,2,57.0,0.0,2,111,1200.0,0.0,0.0,77,45,0.0,0.0,1658.6090730911167,1265.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,2,118306,2,1,2,0,1,,286.0,,42,1.0,2.0,6.0,2.0,1.5,2,1,768.492101904803,1200.0,35700.283258459574,5,1,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03543389252241421,23800.18883897305,6,3,6,6_1,6_4,6_0_1 -10163,2,75.0,0.0,7,111,470.0,0.0,0.0,0,90,0.0,0.0,649.6218869606873,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,111672,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1086.48340697177,470.0,21820.998723561544,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021538885820680177,21820.998723561544,6,3,6,6_0,6_4,6_0_0 -10164,2,58.0,0.0,5,111,800.0,0.0,0.0,0,46,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,2,2,1,1,1,2,2,2,0,,2,,3,131531,1,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1154.52585677925,800.0,18398.266973563204,0,4,0,1,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.043482356308316115,18398.266973563204,4,2,4_0,4_0_0,4_4_0,4_0_0 -10165,2,57.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,102459,1,2,0,0,1,,0.0,432.0,11,0.0,1.0,1.0,1.0,1.0,2,2,1463.41775998354,300.0,18349.877550023455,0,7,3,4,17.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,0.01634888293843773,18349.877550023455,4,2,4_0,4_0_0,4_4_0,4_0_1 -10166,2,36.0,0.0,1,111,1600.0,0.0,0.0,37,46,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,15.0,1,,1,106096,2,1,1,0,1,,240.0,,43,2.0,0.0,3.0,4.0,2.1,4,4,733.078519573863,1600.0,74196.05849376871,1,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021564487824301,35331.45642560415,9,5,9,9_1,9_4,9_1_0 -10167,2,81.0,0.0,1,111,420.0,1700.0,0.0,74,77,0.0,0.0,580.5131755818909,2176.0,96.33831223465073,3083.2099314406632,50,0,0,0,0,0,0,0,0,0,,1,,1,111068,2,1,2,0,2,,260.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,733.891507362907,420.0,57618.78435478458,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03776546180845116,38412.52290318972,9,5,9,9_1,9_4,9_1_0 -10168,2,35.0,0.0,5,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,599.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,120893,2,2,0,1,1,780.0,0.0,530.0,32,1.0,0.0,3.0,3.0,1.6,3,3,567.82938424322,0.0,19304.723859353726,0,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03102867486549238,12065.452412096078,2,1,2_0,2_0_0,2_4_0,2_0_0 -10169,2,29.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,459.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,15.0,2,,2,105387,1,2,0,1,1,768.0,0.0,409.0,22,2.0,1.0,4.0,3.0,2.0,1,1,809.995910329252,0.0,86523.58834229413,0,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.005304911744808362,43261.79417114706,9,5,9,9_0,9_4,9_0_1 -10170,2,48.0,0.0,2,111,318.0,102.0,0.0,63,52,0.0,0.0,439.5314043691459,420.0,0.0,184.9925958864398,50,1,1,2,2,1,1,2,2,3,60.0,2,,2,118405,1,1,0,1,1,775.0,0.0,375.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,2,2,624.266927415378,318.0,37884.72000250232,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.011086263801666177,14571.046154808586,3,2,3_0,3_0_0,3_4_0,3_0_1 -10171,2,59.0,0.0,7,111,407.0,120.0,0.0,0,45,0.0,0.0,562.5449106234038,527.0,0.0,217.63834810169388,31,2,1,2,1,1,2,2,2,3,60.0,2,,5,119865,1,3,0,1,1,775.0,0.0,378.0,22,2.0,1.0,3.0,2.0,1.5,2,2,728.830012093427,407.0,23413.383401556028,0,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.022508494007960258,15608.922267704018,3,2,3_0,3_0_0,3_4_0,3_0_0 -10172,1,48.0,80.0,2,111,365.0,120.0,0.0,0,55,0.0,0.0,504.49359306521467,485.0,0.0,217.63834810169388,50,2,1,2,1,1,1,2,2,3,40.0,2,,2,122512,2,3,0,1,1,816.0,0.0,372.0,32,2.0,0.0,3.0,4.0,2.1,2,2,738.882830109196,365.0,34799.496792886086,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.013936983137616706,16571.188948993375,4,2,4_1,4_0_1,4_4_1,4_0_1 -10173,1,27.0,483.0,2,111,900.0,0.0,0.0,0,56,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,109427,2,1,0,1,1,828.0,0.0,516.0,32,1.0,0.0,3.0,3.0,1.6,1,1,215.38102331822,900.0,11173.13338735451,0,4,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08055036745722546,6983.2083670965685,1,1,1_1,1_0_1,1_4_1,1_0_1 -10174,2,46.0,0.0,5,111,540.0,0.0,0.0,56,52,0.0,0.0,746.3740828910024,540.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,2,,3,121087,1,2,0,1,2,624.0,0.0,477.0,43,2.0,0.0,4.0,4.0,2.3,3,3,205.432278753443,540.0,40861.29583292878,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01321543991673489,17765.78079692556,4,2,4_0,4_0_0,4_4_0,4_0_0 -10175,1,45.0,229.0,2,111,0.0,0.0,300.0,0,52,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,31,0,0,0,0,0,0,0,0,0,,2,,2,128719,2,1,0,1,1,240.0,0.0,216.0,22,2.0,0.0,1.0,2.0,1.5,2,2,236.137268099213,0.0,10761.373573671466,0,4,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027877482176993953,7174.249049114311,1,1,1_1,1_0_1,1_4_1,1_0_1 -10176,2,25.0,0.0,7,111,1320.0,1800.0,0.0,0,65,0.0,0.0,1824.4699804002285,3120.0,0.0,3264.575221525408,20,0,0,0,0,0,0,0,0,0,,1,,5,104351,2,1,2,0,2,,0.0,608.0,22,3.0,0.0,4.0,6.0,3.5,2,2,648.235694946863,1320.0,53335.691739108246,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058497413238052534,15238.769068316642,3,2,3_0,3_1_0,3_4_0,3_0_0 -10177,1,35.0,257.0,5,111,240.0,0.0,0.0,0,56,0.0,0.0,331.72181461822333,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,104038,1,1,0,1,2,516.0,0.0,289.0,32,1.0,0.0,2.0,2.0,1.3,2,2,235.542025595117,240.0,12270.951366776937,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019558385721402945,9439.193359059182,1,1,1_1,1_0_1,1_4_1,1_0_0 -10178,1,58.0,367.0,7,111,600.0,0.0,0.0,86,63,0.0,0.0,829.3045365455583,600.0,0.0,0.0,70,2,1,1,2,1,1,2,2,0,,2,,5,105411,2,2,0,1,1,804.0,0.0,377.0,42,3.0,0.0,3.0,4.0,2.5,1,1,194.331707265998,600.0,24216.937639684886,6,4,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.02477604761292218,9686.775055873954,1,1,1_1,1_0_1,1_4_1,1_0_0 -10182,2,60.0,0.0,5,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,3047.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,123535,2,2,2,0,1,,230.0,,12,1.0,2.0,5.0,1.0,1.0,3,3,883.782620226125,0.0,74120.02542594587,0,1,1,2,135.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041108998310372825,74120.02542594587,10,5,10,10_1,10_4,10_0_0 -10183,2,69.0,0.0,2,111,19.0,6.0,0.0,0,75,0.0,0.0,26.26131032394268,25.0,0.0,10.881917405084693,44,0,0,0,0,0,0,0,0,0,,2,,2,119381,2,1,0,1,1,1068.0,0.0,370.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1197.4510833029,19.0,30025.882368561033,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0008326149983914063,30025.882368561033,8,4,8,8_0,8_4,8_0_1 -10184,2,48.0,0.0,8,111,1200.0,0.0,0.0,0,47,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,110054,1,2,0,0,1,,396.0,650.0,32,1.0,0.0,2.0,3.0,2.0,2,2,1089.09000630415,1200.0,27714.79025034082,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04329818083271415,13857.39512517041,3,2,3_0,3_0_0,3_4_0,3_0_0 -10185,2,44.0,0.0,1,111,0.0,0.0,2200.0,0,46,0.0,0.0,1124.0093366425551,2200.0,0.0,2515.1407042357896,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,123620,2,1,1,0,1,,200.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,752.21598847728,0.0,9351.494308675796,0,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23525651915961307,6234.329539117197,1,1,1_0,1_1_0,1_4_0,1_1_0 -10186,1,61.0,307.0,2,111,1100.0,300.0,0.0,0,55,0.0,0.0,1520.3916503335236,1400.0,0.0,544.0958702542347,42,2,2,2,2,1,2,2,2,0,,2,,2,116684,1,3,0,1,1,640.0,0.0,329.0,11,0.0,8.0,4.0,1.0,1.0,2,2,925.654383865666,1100.0,9129.748065977616,0,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.1533448666800739,9129.748065977616,1,1,1_1,1_0_1,1_4_1,1_0_1 -10187,2,44.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,825.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,90.0,2,,2,103014,2,1,0,1,1,696.0,0.0,348.0,32,3.0,0.0,4.0,4.0,2.5,1,1,780.370302813115,0.0,18469.104346381064,0,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.044669193726313804,7387.6417385524255,1,1,1_0,1_0_0,1_4_0,1_0_1 -10188,2,42.0,0.0,2,111,1200.0,0.0,0.0,85,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,1,2,2,2,1,1,2,2,3,50.0,2,,2,105420,2,3,0,1,1,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,764.771845264958,1200.0,50898.703457820324,6,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023576239048887327,24237.477837057297,7,4,7,7_0,7_4,7_0_1 -10189,2,38.0,0.0,5,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,217.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,3,112297,1,1,0,1,1,718.0,0.0,351.0,12,1.0,0.0,2.0,1.0,1.0,3,2,243.698166570718,0.0,17095.399154893756,0,1,2,3,46.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012693473725524639,17095.399154893756,4,2,4_0,4_0_0,4_4_0,4_0_0 -10190,1,84.0,115.0,5,111,320.0,0.0,0.0,0,77,0.0,0.0,442.2957528242978,320.0,0.0,0.0,10,2,1,2,2,1,2,2,2,0,,2,,3,124223,2,1,0,1,1,720.0,0.0,337.0,11,0.0,1.0,2.0,1.0,1.0,2,2,243.698166570718,320.0,14970.652655985752,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02137515359906862,14970.652655985752,3,2,3_1,3_0_1,3_4_1,3_0_0 -10191,1,49.0,83.0,6,111,960.0,0.0,0.0,56,63,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,4,102804,2,1,0,1,1,912.0,0.0,382.0,43,2.0,0.0,3.0,4.0,2.1,3,3,194.510712380961,960.0,26365.432754854646,4,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03641131207388341,12554.967978502213,2,1,2_1,2_0_1,2_4_1,2_0_0 -10192,2,55.0,0.0,5,111,600.0,100.0,0.0,0,56,0.0,0.0,829.3045365455583,700.0,0.0,181.36529008474488,10,2,2,2,2,1,2,2,2,3,45.0,2,,3,107317,1,1,0,1,1,660.0,0.0,376.0,32,3.0,0.0,4.0,3.0,2.0,2,2,201.8950246772,600.0,26531.038668842935,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.02638419131407976,13265.519334421468,3,2,3_0,3_0_0,3_4_0,3_0_0 -10193,2,83.0,0.0,5,111,238.0,83.0,0.0,0,74,0.0,0.0,328.95746616307144,321.0,0.0,150.53319077033825,44,2,1,2,1,1,2,2,2,0,,2,,3,111551,2,2,0,1,1,768.0,0.0,383.0,11,0.0,3.0,3.0,1.0,1.0,2,2,230.72340525417,238.0,27946.233636082194,0,5,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01148634210176886,27946.233636082194,7,4,7,7_0,7_4,7_0_0 -10194,2,35.0,0.0,1,111,1200.0,0.0,0.0,0,63,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,40.0,2,,1,114342,2,2,0,0,1,,0.0,619.0,32,1.0,0.0,3.0,2.0,1.3,2,2,232.27154268777,1200.0,22693.19802906563,0,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05287928120413132,17456.30617620433,4,2,4_0,4_0_0,4_4_0,4_1_0 -10195,2,41.0,0.0,1,111,1440.0,0.0,0.0,68,63,0.0,0.0,1990.33088770934,1440.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,1,109761,2,2,0,0,1,,0.0,536.0,43,2.0,0.0,3.0,4.0,2.1,1,1,220.527956700783,1440.0,13902.012518729383,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10358212511030117,6620.0059612997065,1,1,1_0,1_0_0,1_4_0,1_1_0 -10196,2,53.0,0.0,9,111,589.0,0.0,0.0,0,46,0.0,0.0,814.1006200422231,589.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,125348,2,1,0,0,1,,0.0,,32,1.0,2.0,3.0,2.0,1.5,1,1,942.420084638796,589.0,30480.442632484457,0,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01932386635921995,20320.29508832297,5,3,5,5_0,5_4,5_0_0 -10197,1,72.0,288.0,1,111,250.0,600.0,0.0,86,78,0.0,0.0,345.54355689398267,850.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,1,115676,2,2,0,0,1,,0.0,389.0,41,0.0,7.0,2.0,2.0,1.5,1,1,755.910166716827,250.0,11035.927719052133,6,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07702116411405835,7357.285146034756,1,1,1_1,1_0_1,1_4_1,1_1_0 -10198,2,46.0,0.0,7,111,480.0,0.0,0.0,0,55,1642.9433647198007,0.0,663.4436292364467,1580.0,0.0,0.0,44,1,1,2,1,1,2,2,2,3,45.0,2,,5,104013,2,1,0,1,1,670.0,0.0,512.0,32,1.0,0.0,3.0,3.0,1.8,3,3,693.709091186263,480.0,28860.780676800558,0,1,2,3,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05474557385310325,16033.767042666976,4,2,4_0,4_0_0,4_4_0,4_0_0 -10199,1,55.0,243.0,9,111,636.0,1452.0,0.0,85,21,0.0,0.0,879.0628087382918,2088.0,0.0,2633.4240120304958,60,2,1,2,2,1,2,2,2,0,,2,2005.0,6,126193,2,1,0,1,1,1452.0,0.0,671.0,42,3.0,0.0,4.0,7.0,4.0,2,2,847.696388257178,636.0,28380.397834104042,6,1,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07357190734975888,7095.0994585260105,1,1,1_1,1_0_1,1_4_1,1_0_0 -10201,2,40.0,0.0,7,111,2040.0,0.0,0.0,0,42,0.0,0.0,2819.635424254898,2040.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,25.0,2,,5,117364,2,1,0,0,1,,0.0,1200.0,22,2.0,0.0,4.0,2.0,1.5,2,1,950.052378349954,2040.0,25787.402209374686,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07910839499988036,17191.601472916456,4,2,4_0,4_0_0,4_4_0,4_0_0 -10202,2,61.0,0.0,2,111,205.0,0.0,0.0,0,45,0.0,0.0,283.3457166530658,205.0,0.0,0.0,50,2,2,1,1,1,2,2,2,3,30.0,2,,2,107331,2,3,0,1,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,1045.53519640763,205.0,38550.32470202191,0,1,1,2,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005317724340444998,38550.32470202191,9,5,9,9_0,9_4,9_0_1 -10203,2,37.0,0.0,2,111,400.0,100.0,0.0,0,35,0.0,0.0,552.8696910303722,500.0,0.0,181.36529008474488,50,2,2,2,1,1,2,2,2,3,60.0,2,,2,112903,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1045.53519640763,400.0,22327.612793791624,0,1,1,2,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.02239379572808738,22327.612793791624,6,3,6,6_0,6_4,6_0_1 -10204,2,54.0,0.0,1,111,708.0,66.0,0.0,0,46,0.0,0.0,978.5793531237589,774.0,0.0,119.70109145593163,60,0,0,0,0,0,0,0,0,3,50.0,2,,1,107224,2,3,0,0,1,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,2,2,978.144062303652,708.0,25866.07601426286,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029923363697423887,25866.07601426286,7,4,7,7_0,7_4,7_1_0 -10205,1,34.0,322.0,1,111,540.0,0.0,0.0,85,63,0.0,0.0,746.3740828910024,540.0,0.0,0.0,31,2,2,2,2,1,1,2,2,2,20.0,2,,1,112249,1,3,0,0,1,,0.0,790.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,841.801061649444,540.0,30120.580084614965,6,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.017927941576258752,11155.770401709247,2,1,2_1,2_0_1,2_4_1,2_1_0 -10206,1,47.0,189.0,1,111,650.0,0.0,0.0,81,21,0.0,0.0,898.4132479243549,650.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,1,115815,2,1,0,0,1,,0.0,659.0,43,2.0,0.0,2.0,4.0,2.3,2,2,824.62157733974,650.0,8352.039131568334,4,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,1,0.07782530586371235,3631.3213615514496,1,1,1_1,1_0_1,1_4_1,1_1_0 -10207,2,33.0,0.0,1,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,608.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,30.0,2,,1,106712,2,1,0,0,1,,0.0,675.0,12,1.0,0.0,2.0,1.0,1.0,2,2,930.598085142805,0.0,26386.257194365997,0,1,2,3,38.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02304229794780521,26386.257194365997,7,4,7,7_0,7_4,7_1_0 -10208,1,82.0,100.0,2,111,190.0,0.0,0.0,0,78,0.0,0.0,262.6131032394268,508.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,118658,2,2,0,1,2,727.0,0.0,290.0,11,0.0,1.0,1.0,1.0,1.0,2,2,1012.24896254567,190.0,12241.161294349695,0,5,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041499330642304655,12241.161294349695,2,1,2_1,2_0_1,2_4_1,2_0_1 -10209,1,65.0,132.0,2,111,130.0,86.0,0.0,0,77,0.0,0.0,179.68264958487097,216.0,0.0,155.9741494728806,50,0,0,0,0,0,0,0,0,0,,2,,2,129475,2,1,0,1,1,,0.0,315.0,11,0.0,0.0,3.0,1.0,1.0,4,3,925.654383865666,130.0,11624.449541284404,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018581525020421208,11624.449541284404,2,1,2_1,2_0_1,2_4_1,2_0_1 -10210,2,46.0,0.0,2,111,180.0,0.0,0.0,0,42,0.0,0.0,248.7913609636675,180.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,50.0,2,,2,105078,2,1,0,1,1,48.0,0.0,278.0,12,1.0,0.0,2.0,1.0,1.0,2,2,925.72994465995,180.0,16039.069556041615,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011222596134462014,16039.069556041615,4,2,4_0,4_0_0,4_4_0,4_0_1 -10211,2,26.0,0.0,1,111,0.0,0.0,0.0,54,37,0.0,0.0,0.0,1556.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,106230,2,2,0,0,1,,0.0,538.0,43,2.0,0.0,3.0,3.0,1.8,2,2,549.209615667569,0.0,15450.023303887718,1,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10071182220213615,8583.346279937621,1,1,1_0,1_0_0,1_4_0,1_1_0 -10212,2,55.0,0.0,5,111,880.0,0.0,0.0,0,54,0.0,0.0,1216.313320266819,880.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,2,,3,114576,2,1,0,1,1,1080.0,0.0,453.0,32,2.0,1.0,4.0,2.0,1.5,3,2,769.044638409571,880.0,38404.95703303629,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022913708749706867,25603.30468869086,7,4,7,7_0,7_4,7_0_0 -10213,2,24.0,0.0,5,111,480.0,0.0,0.0,0,85,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,3,107144,2,1,0,1,1,420.0,0.0,263.0,11,0.0,0.0,1.0,1.0,1.0,2,2,867.617160711923,480.0,11066.462705556876,0,7,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.043374293373705984,11066.462705556876,2,1,2_0,2_0_0,2_4_0,2_0_0 -10214,2,29.0,0.0,5,111,400.0,0.0,0.0,48,55,0.0,0.0,552.8696910303722,400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,40.0,2,,3,111406,1,3,0,1,2,780.0,0.0,437.0,43,2.0,0.0,3.0,4.0,2.1,2,2,691.980565028698,400.0,51913.25934881647,1,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007705160589365293,24720.599689912604,7,4,7,7_0,7_4,7_0_0 -10215,1,60.0,710.0,7,111,1056.0,0.0,0.0,85,86,0.0,0.0,1459.5759843201827,1056.0,0.0,0.0,31,2,1,2,2,1,2,2,2,0,,2,,5,107635,1,1,0,1,2,,0.0,1050.0,41,4.0,0.0,6.0,11.0,5.3999999999999995,2,2,760.289621732614,1056.0,34679.75876119967,6,7,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.030450038804233883,6422.17754837031,1,1,1_1,1_0_1,1_4_1,1_0_0 -10216,2,77.0,0.0,6,111,311.0,0.0,0.0,0,75,0.0,0.0,429.8561847761144,311.0,0.0,0.0,10,2,1,2,2,1,2,2,2,0,,2,,4,129329,1,1,0,1,1,768.0,0.0,430.0,11,0.0,1.0,3.0,1.0,1.0,2,2,866.896370394739,311.0,20838.556116170123,0,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014924258584243892,20838.556116170123,5,3,5,5_0,5_4,5_0_0 -10217,2,47.0,0.0,1,111,560.0,1250.0,0.0,35,34,0.0,0.0,774.0175674425211,1810.0,0.0,2267.066126059311,71,1,2,2,1,1,2,2,2,3,30.0,1,,1,117941,2,1,1,0,1,,633.0,,43,2.0,0.0,7.0,5.0,2.8,1,1,603.399522246511,560.0,89133.196502979,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02030668786729203,31833.284465349647,8,4,8,8_1,8_4,8_1_0 -10218,2,58.0,0.0,9,111,780.0,0.0,0.0,0,35,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2006.0,6,132403,2,1,0,0,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,924.05855385142,780.0,11328.86426322445,0,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06885067928053668,11328.86426322445,2,1,2_0,2_0_0,2_4_0,2_0_0 -10219,1,74.0,66.0,1,111,1040.0,300.0,0.0,0,77,0.0,0.0,1437.4611966789678,1340.0,0.0,544.0958702542347,60,2,2,2,2,1,2,1,2,0,,2,,1,111233,1,3,0,0,2,,0.0,177.0,11,0.0,2.0,2.0,1.0,1.0,2,2,978.144062303652,1040.0,10478.39357805673,0,5,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.12788219778327028,10478.39357805673,2,1,2_1,2_0_1,2_4_1,2_1_0 -10220,1,35.0,500.0,7,111,1200.0,0.0,0.0,0,85,1045.5094139126004,0.0,1658.6090730911167,1900.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,5,122890,1,3,0,0,2,,0.0,664.0,31,0.0,0.0,3.0,4.0,2.1,1,1,959.964820132976,1200.0,14644.130397640958,0,6,2,3,41.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.12974481573218397,6973.395427448075,1,1,1_1,1_0_1,1_4_1,1_0_0 -10221,1,34.0,546.0,9,111,744.0,0.0,0.0,0,42,0.0,0.0,1028.3376253164924,744.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,2008.0,6,116392,2,1,0,0,1,,0.0,543.0,32,1.0,0.0,5.0,4.0,1.9,3,2,792.177288673341,744.0,17967.998750895724,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041406948559750474,9456.841447839855,1,1,1_1,1_0_1,1_4_1,1_0_0 -10222,2,58.0,0.0,9,111,1000.0,0.0,0.0,0,56,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,2011.0,6,115394,2,1,0,0,1,,0.0,742.0,22,2.0,1.0,2.0,2.0,1.5,2,1,1180.17384328863,1000.0,38133.19880194881,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026223868739511425,25422.132534632543,7,4,7,7_0,7_4,7_0_0 -10223,1,39.0,367.0,9,111,612.0,305.0,0.0,62,55,0.0,0.0,845.8906272764696,917.0,0.0,553.164134758472,31,0,0,0,0,0,0,0,0,3,30.0,2,2007.0,6,101619,2,1,0,0,1,,720.0,592.0,43,2.0,0.0,4.0,5.0,2.8,2,2,731.752168246548,612.0,48701.62730949788,4,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018828939619871077,17393.438324820672,4,2,4_1,4_0_1,4_4_1,4_0_0 -10224,2,63.0,0.0,6,111,150.0,0.0,0.0,38,74,0.0,0.0,207.32613413638958,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,121501,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,806.28938089265,150.0,89064.75942839099,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016841678006282788,59376.50628559399,10,5,10,10_1,10_4,10_0_0 -10227,2,60.0,0.0,5,111,373.0,66.0,0.0,75,77,0.0,0.0,515.5509868858221,439.0,0.0,119.70109145593163,50,0,0,0,0,0,0,0,0,0,,2,,3,101808,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,4,2,805.586636245555,373.0,33495.39690743523,5,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013106278489942355,22330.264604956817,6,3,6,6_0,6_4,6_0_0 -10229,2,46.0,0.0,6,111,430.0,0.0,0.0,0,56,0.0,0.0,594.3349178576501,430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,106030,2,1,0,1,1,,430.0,380.0,32,1.0,0.0,1.0,4.0,2.1,2,2,659.90196931037,430.0,12750.958554814846,0,4,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03372295487837102,6071.885026102307,1,1,1_0,1_0_0,1_4_0,1_0_0 -10230,2,56.0,0.0,2,111,560.0,0.0,0.0,0,75,0.0,0.0,774.0175674425211,560.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,115158,2,3,0,0,1,,60.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1118.2839806498,560.0,1151.8017549714405,0,7,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.4861947792516478,1151.8017549714405,1,1,1_0,1_0_0,1_4_0,1_0_1 -10231,1,58.0,225.0,2,111,400.0,400.0,0.0,85,54,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,131959,2,3,0,1,1,1176.0,360.0,326.0,42,1.0,0.0,4.0,5.0,3.0,2,2,853.006649257679,400.0,16647.515236533924,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04805521957080744,5549.171745511308,1,1,1_1,1_0_1,1_4_1,1_0_1 -10232,2,62.0,0.0,1,111,500.0,620.0,0.0,0,77,0.0,0.0,691.0871137879653,1120.0,0.0,1124.4647985254182,50,0,0,0,0,0,0,0,0,0,,2,,1,120338,2,1,0,0,1,,0.0,448.0,21,1.0,2.0,3.0,2.0,1.5,2,1,913.064854667698,500.0,23665.737165769326,0,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.047325802367990215,15777.158110512884,3,2,3_0,3_0_0,3_4_0,3_1_0 -10233,2,61.0,0.0,2,111,140.0,840.0,0.0,0,78,0.0,0.0,193.50439186063028,980.0,0.0,1523.468436711857,43,0,0,0,0,0,0,0,0,0,,2,,2,129460,2,1,0,0,1,,0.0,306.0,11,0.0,0.0,1.0,1.0,1.0,3,3,1383.26538948598,140.0,33731.74224623068,0,5,2,3,25.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02905275371922152,33731.74224623068,9,5,9,9_0,9_4,9_0_1 -10234,2,64.0,0.0,7,111,420.0,0.0,0.0,77,90,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,121442,2,1,0,1,1,575.0,375.0,574.0,41,0.0,1.0,3.0,2.0,1.5,2,2,908.130381270436,420.0,32963.76787845526,7,5,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01274126190757784,21975.84525230351,6,3,6,6_0,6_4,6_0_0 -10235,2,51.0,0.0,7,111,960.0,0.0,0.0,22,22,0.0,269.144851253059,1326.8872584728933,1220.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,5,106469,2,1,0,1,1,420.0,0.0,650.0,43,4.0,0.0,4.0,7.0,3.8,1,1,755.314005014067,960.0,35187.47819401081,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034671424683331065,9259.862682634424,1,1,1_0,1_0_0,1_4_0,1_0_0 -10236,2,49.0,0.0,7,111,420.0,0.0,0.0,85,34,0.0,0.0,580.5131755818909,421.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,113855,2,1,0,1,1,1100.0,0.0,680.0,42,1.0,0.0,3.0,4.0,2.3,2,2,666.510407554886,420.0,40729.50909191631,6,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010336485987344171,17708.482213876658,4,2,4_0,4_0_0,4_4_0,4_0_0 -10237,2,57.0,0.0,2,111,540.0,420.0,0.0,56,56,0.0,0.0,746.3740828910024,960.0,0.0,761.7342183559285,50,0,0,0,0,0,0,0,0,0,,2,,2,104731,2,1,0,1,1,775.0,0.0,404.0,43,2.0,1.0,3.0,2.0,1.5,2,2,764.696094989801,540.0,26542.991201718272,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03616773982646892,17695.32746781218,4,2,4_0,4_0_0,4_4_0,4_0_1 -10238,2,29.0,0.0,2,111,150.0,240.0,0.0,0,55,0.0,0.0,207.32613413638958,390.0,0.0,435.27669620338776,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,117278,2,1,0,1,1,305.0,0.0,257.0,12,1.0,0.0,1.0,1.0,1.0,2,2,794.891501346816,150.0,19177.012738151825,0,1,2,3,25.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020336848357205922,19177.012738151825,5,3,5,5_0,5_4,5_0_1 -10239,1,44.0,417.0,7,111,240.0,120.0,0.0,52,22,0.0,0.0,331.72181461822333,360.0,0.0,217.63834810169388,70,0,0,0,0,0,0,0,0,2,30.0,2,,5,123631,2,2,0,1,1,52.0,0.0,379.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,2,2,615.779817241287,240.0,17805.846108567184,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020218078815518237,6848.402349448918,1,1,1_1,1_0_1,1_4_1,1_0_0 -10240,2,56.0,0.0,9,111,1474.0,0.0,0.0,56,21,0.0,0.0,2037.3248114469216,1474.0,0.0,0.0,60,2,2,2,1,2,2,2,2,0,,2,2006.0,6,112525,2,1,0,1,1,744.0,0.0,500.0,43,3.0,1.0,3.0,6.0,3.1,3,3,739.870665974659,1474.0,15322.301280175168,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.09619964867204,4942.67783231457,1,1,1_0,1_0_0,1_4_0,1_0_0 -10241,2,56.0,0.0,7,111,470.0,0.0,0.0,0,52,0.0,0.0,649.6218869606873,470.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,5,105658,2,1,0,0,1,,92.0,376.0,12,1.0,0.0,2.0,1.0,1.0,1,1,867.062982954509,470.0,23814.834274556528,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019735598181430225,23814.834274556528,6,3,6,6_0,6_4,6_0_0 -10242,1,34.0,210.0,1,111,800.0,0.0,0.0,0,56,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,119477,2,1,0,0,1,,0.0,560.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1101.13805931158,800.0,13677.411619722665,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05849059911645925,13677.411619722665,3,2,3_1,3_0_1,3_4_1,3_1_0 -10243,2,48.0,0.0,5,111,252.0,120.0,0.0,0,42,1218.7652596466885,0.0,348.3079053491345,1188.0,0.0,217.63834810169388,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,122747,2,1,0,1,1,645.0,0.0,334.0,12,1.0,0.0,3.0,1.0,1.0,1,1,820.89958579582,252.0,19132.25376579908,0,1,2,3,55.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.062094095893902225,19132.25376579908,5,3,5,5_0,5_4,5_0_0 -10244,1,29.0,52.0,2,111,300.0,300.0,0.0,0,56,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,124293,2,1,0,1,1,636.0,0.0,282.0,12,1.0,0.0,2.0,1.0,1.0,2,2,925.832289381971,300.0,13715.509138673118,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04374609749689875,13715.509138673118,3,2,3_1,3_0_1,3_4_1,3_0_1 -10245,2,47.0,0.0,6,111,300.0,60.0,0.0,0,42,0.0,0.0,414.65226827277917,360.0,0.0,108.81917405084694,70,2,2,2,1,1,2,2,2,2,15.0,2,,4,103673,2,1,0,1,2,480.0,0.0,273.0,12,1.0,0.0,2.0,1.0,1.0,2,2,867.062982954509,300.0,23346.266790162896,0,1,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.015420024247803438,23346.266790162896,6,3,6,6_0,6_4,6_0_0 -10246,2,41.0,0.0,1,111,250.0,823.0,0.0,52,90,0.0,0.0,345.54355689398267,1073.0,0.0,1492.6363373974505,20,0,0,0,0,0,0,0,0,2,5.0,2,,1,126884,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,835.487794301913,250.0,44895.32232995982,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02390004001116079,21378.724919028482,6,3,6,6_0,6_4,6_1_0 -10247,2,53.0,0.0,1,111,300.0,1800.0,0.0,22,22,0.0,0.0,414.65226827277917,2100.0,0.0,3264.575221525408,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,125583,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,784.624811308774,300.0,15303.440146906072,1,1,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1372240476547073,6653.669629089597,1,1,1_0,1_0_0,1_4_0,1_1_0 -10248,2,41.0,0.0,1,111,720.0,0.0,0.0,0,21,0.0,0.0,995.16544385467,2141.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,2,,1,117404,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,858.25472067172,720.0,30944.151163621016,0,1,1,2,54.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06918916562549085,30944.151163621016,8,4,8,8_0,8_4,8_1_0 -10249,2,28.0,0.0,2,111,0.0,0.0,0.0,68,56,0.0,0.0,0.0,399.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,111662,2,1,0,0,1,,0.0,648.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1215.9686632954,0.0,14169.455560556573,4,1,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02815916238240613,9446.303707037716,1,1,1_0,1_0_0,1_4_0,1_0_1 -10250,2,46.0,0.0,9,111,0.0,0.0,0.0,46,35,0.0,0.0,0.0,1293.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,125450,2,1,0,0,1,,0.0,1145.0,43,2.0,0.0,4.0,4.0,2.1,2,1,1022.26264240966,0.0,54891.258504529134,4,1,2,3,81.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023555663237222246,26138.694525966253,7,4,7,7_0,7_4,7_0_0 -10251,2,62.0,0.0,2,111,450.0,450.0,0.0,78,56,0.0,0.0,621.9784024091688,900.0,0.0,816.143805381352,31,0,0,0,0,0,0,0,0,0,,2,,2,132495,2,2,0,1,1,,0.0,846.0,42,2.0,1.0,4.0,3.0,2.0,3,3,200.579549430615,450.0,37506.56985738109,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023995796027796047,18753.284928690544,5,3,5,5_0,5_4,5_0_1 -10252,2,46.0,0.0,2,111,240.0,180.0,0.0,78,52,0.0,0.0,331.72181461822333,420.0,0.0,326.4575221525408,43,0,0,0,0,0,0,0,0,0,,2,,2,106479,2,2,0,1,1,,0.0,485.0,42,1.0,0.0,2.0,2.0,1.5,3,2,281.166099697159,240.0,12871.273511014764,5,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03263080375384607,8580.849007343177,1,1,1_0,1_0_0,1_4_0,1_0_1 -10253,2,65.0,0.0,6,111,1608.0,0.0,0.0,75,75,0.0,0.0,2222.5361579420965,1608.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,100802,2,1,2,0,1,,482.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,676.263911304877,1608.0,51072.05510167494,5,5,0,1,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03148492843686771,34048.03673444996,9,5,9,9_1,9_4,9_0_0 -10254,2,57.0,0.0,2,111,948.0,396.0,0.0,0,65,0.0,0.0,1310.3011677419822,1344.0,0.0,718.2065487355898,50,0,0,0,0,0,0,0,0,0,,2,,2,121852,2,1,0,1,1,,828.0,500.0,22,3.0,0.0,5.0,3.0,2.0,3,3,200.579549430615,948.0,35337.63088025249,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03803310993185622,17668.815440126244,4,2,4_0,4_0_0,4_4_0,4_0_1 -10255,2,77.0,0.0,2,111,490.0,1100.0,0.0,75,75,0.0,0.0,677.265371512206,1590.0,0.0,1995.0181909321939,42,0,0,0,0,0,0,0,0,0,,1,,2,101940,2,1,2,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,927.183781970521,490.0,85723.61990788848,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01854798014489452,57149.079938592324,10,5,10,10_1,10_4,10_0_1 -10256,2,84.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,511.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121176,2,1,2,0,1,,496.0,,41,0.0,1.0,3.0,2.0,1.5,4,3,834.429566915275,0.0,46132.06938696734,5,5,0,1,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011076893076562512,30754.712924644893,8,4,8,8_1,8_4,8_0_1 -10257,2,62.0,0.0,5,111,420.0,0.0,0.0,78,77,149.35848770180007,0.0,580.5131755818909,520.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,3,132653,2,2,0,1,1,,400.0,,41,0.0,2.0,4.0,3.0,2.0,2,2,221.825930488704,420.0,35847.65183540126,5,5,0,1,83.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.014505831578247903,17923.82591770063,4,2,4_0,4_0_0,4_4_0,4_0_0 -10258,2,75.0,0.0,5,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,591.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,115435,2,1,0,1,1,,491.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,219.120233540021,0.0,41841.4462603332,5,5,0,1,86.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014124750763223108,27894.2975068888,7,4,7,7_0,7_4,7_0_0 -10259,1,51.0,610.0,2,111,600.0,0.0,0.0,85,63,0.0,0.0,829.3045365455583,600.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,112075,2,3,0,1,1,,0.0,850.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,207.348072300298,600.0,16544.01176590089,6,4,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03626689877219919,6127.4117651484785,1,1,1_1,1_0_1,1_4_1,1_0_1 -10260,2,56.0,0.0,2,111,240.0,480.0,0.0,78,65,0.0,0.0,331.72181461822333,720.0,0.0,870.5533924067755,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,123549,2,1,0,1,1,,1884.0,1294.0,42,1.0,5.0,4.0,2.0,1.5,2,2,203.533972934039,240.0,34136.11263372756,5,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02109203258512269,22757.408422485038,6,3,6,6_0,6_4,6_0_1 -10261,2,75.0,0.0,2,111,312.0,65.0,0.0,0,77,0.0,0.0,431.23835900369033,377.0,0.0,117.88743855508417,12,2,1,2,2,1,2,2,2,0,,2,,2,126825,2,2,0,1,1,,360.0,492.0,11,0.0,3.0,3.0,1.0,1.0,2,2,751.739240681463,312.0,25029.560433607625,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015062190205058319,25029.560433607625,7,4,7,7_0,7_4,7_0_1 -10262,2,43.0,0.0,1,111,413.0,1822.0,0.0,0,54,0.0,0.0,570.8379559888593,2235.0,0.0,3304.475585344052,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,108517,2,1,2,0,1,,113.0,,32,1.0,0.0,5.0,3.0,1.8,1,1,635.822393247676,413.0,32037.0,0,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06976308643131379,17798.333333333332,4,2,4_0,4_1_0,4_4_0,4_1_0 -10263,2,37.0,0.0,2,111,200.0,350.0,0.0,0,38,0.0,0.0,276.4348455151861,550.0,0.0,634.7785152966071,60,0,0,0,0,0,0,0,0,0,,1,,2,105630,2,2,2,0,2,,300.0,,22,1.0,0.0,3.0,2.0,1.5,1,1,718.671384727673,200.0,5350.1024582791015,0,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.102801769552823,3566.734972186068,1,1,1_0,1_1_0,1_4_0,1_0_1 -10264,1,57.0,100.0,7,111,1000.0,2000.0,0.0,56,63,0.0,320.9034764940319,1382.1742275759307,3310.0,0.0,3627.3058016948976,50,2,2,2,2,1,2,2,1,3,60.0,1,,5,128089,1,1,2,0,2,,800.0,,43,4.0,1.0,7.0,11.0,5.3999999999999995,2,2,864.605485009197,1000.0,74593.31993004048,4,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,1,0.04437394666311112,13813.577764822312,3,2,3_1,3_1_1,3_4_1,3_0_0 -10265,2,49.0,0.0,2,111,140.0,140.0,0.0,63,56,0.0,0.0,193.50439186063028,280.0,0.0,253.91140611864284,12,0,0,0,0,0,0,0,0,0,,2,,2,105315,2,1,0,1,1,,0.0,790.0,43,3.0,2.0,5.0,3.0,2.0,2,2,207.582944974679,140.0,32101.135764412124,4,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008722432815302843,16050.567882206062,4,2,4_0,4_0_0,4_4_0,4_0_1 -10266,2,29.0,0.0,1,111,320.0,130.0,0.0,85,48,0.0,0.0,442.2957528242978,450.0,0.0,235.77487711016835,43,2,1,1,1,2,2,2,2,1,10.0,2,,1,130244,2,2,0,1,1,107.0,200.0,250.0,42,1.0,0.0,2.0,3.0,1.8,2,2,732.270114774174,320.0,21651.593375954475,6,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.020783689781452976,12028.662986641375,2,1,2_0,2_0_0,2_4_0,2_1_0 -10267,0,71.0,0.0,6,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,5978.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129163,2,2,2,0,2,,555.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,965.663130189262,0.0,37971.724531556116,0,5,0,1,140.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1574329339462059,37971.724531556116,9,5,9,9_1,9_4,9_0_0 -10268,2,41.0,0.0,2,111,660.0,0.0,0.0,46,33,0.0,0.0,912.2349902001142,660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,2,107400,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,715.396142394339,660.0,50672.25592036974,1,1,1,2,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013024878960138948,21113.439966820726,5,3,5,5_1,5_4,5_0_1 -10269,2,34.0,0.0,2,111,900.0,1500.0,0.0,0,56,0.0,0.0,1243.9568048183376,2400.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,2,,2,131179,1,3,0,0,2,,0.0,800.0,22,1.0,0.0,3.0,4.0,2.3,2,2,1200.00082810314,900.0,17982.547807747145,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13346273429430533,7818.499046846586,1,1,1_0,1_0_0,1_4_0,1_0_1 -10270,1,32.0,295.0,5,111,0.0,0.0,0.0,85,55,0.0,0.0,0.0,877.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,50.0,2,,3,105752,2,2,0,1,1,,647.0,310.0,42,1.0,0.0,3.0,4.0,2.1,3,2,689.978492037896,0.0,14356.072644210699,6,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06108913083228674,6836.225068671761,1,1,1_1,1_0_1,1_4_1,1_0_0 -10271,2,62.0,0.0,5,111,200.0,200.0,0.0,0,77,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,3,125511,2,1,0,1,1,758.0,250.0,410.0,11,0.0,1.0,2.0,1.0,1.0,2,2,864.45878185639,200.0,27879.310708531284,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01434755701752687,27879.310708531284,7,4,7,7_0,7_4,7_0_0 -10272,2,83.0,0.0,5,111,300.0,400.0,0.0,75,78,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,43,0,0,0,0,0,0,0,0,0,,2,,3,115901,2,1,0,1,1,45.0,0.0,474.0,41,0.0,2.0,4.0,2.0,1.5,2,2,764.572876143366,300.0,26028.605882965163,5,5,2,3,118.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026893488001142857,17352.403921976776,4,2,4_0,4_0_0,4_4_0,4_0_0 -10273,2,46.0,0.0,5,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,892.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,3,112866,2,1,0,1,1,750.0,0.0,380.0,12,1.0,1.0,2.0,1.0,1.0,2,2,660.89170479737,0.0,21888.281750059163,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040752399397343694,21888.281750059163,6,3,6,6_0,6_4,6_0_0 -10274,1,40.0,260.0,2,111,360.0,240.0,0.0,0,52,0.0,0.0,497.582721927335,600.0,0.0,435.27669620338776,10,2,1,2,2,1,2,2,1,3,90.0,2,,2,126849,2,2,0,1,1,516.0,0.0,460.0,32,2.0,0.0,4.0,5.0,2.4,2,2,608.45635808841,360.0,29180.3781046323,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020561762354434736,12158.490876930126,2,1,2_1,2_0_1,2_4_1,2_0_1 -10275,2,88.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,798.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110448,2,2,2,0,1,,358.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,996.004010024471,0.0,17079.55270490882,0,5,0,1,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04672253505623994,17079.55270490882,4,2,4_0,4_1_0,4_4_0,4_0_0 -10276,1,61.0,307.0,2,111,480.0,0.0,0.0,0,46,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,50.0,2,,2,114604,2,1,0,0,1,,320.0,580.0,12,1.0,2.0,2.0,1.0,1.0,4,4,868.701339268387,480.0,10084.9356065978,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04759574267246414,10084.9356065978,2,1,2_1,2_0_1,2_4_1,2_0_1 -10277,2,55.0,0.0,2,111,1800.0,1800.0,0.0,46,90,0.0,0.0,2487.913609636675,3600.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,133566,2,1,1,0,1,,1200.0,,43,5.0,0.0,8.0,9.0,5.0,2,2,873.520224431046,1800.0,85425.73947233372,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04214186522981061,17085.147894466743,4,2,4_0,4_1_0,4_4_0,4_0_1 -10278,2,47.0,0.0,2,111,200.0,500.0,0.0,0,63,0.0,0.0,276.4348455151861,700.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,0,,2,,2,125770,2,2,0,0,1,,0.0,289.0,12,1.0,2.0,2.0,1.0,1.0,2,2,922.97851993949,200.0,20681.980570355798,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033845888096584634,20681.980570355798,5,3,5,5_0,5_4,5_0_1 -10279,2,45.0,0.0,2,111,500.0,0.0,0.0,0,53,0.0,0.0,691.0871137879653,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,127193,1,1,0,1,2,170.0,0.0,260.0,12,1.0,2.0,1.0,1.0,1.0,4,4,1095.07772403162,500.0,21019.79998408285,0,1,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023787095994187518,21019.79998408285,5,3,5,5_0,5_4,5_0_1 -10280,2,44.0,0.0,1,111,800.0,1000.0,0.0,85,21,0.0,258.79312620486445,1105.7393820607444,2050.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,110500,2,1,2,0,1,,350.0,,42,4.0,0.0,5.0,5.0,3.0,2,2,619.64976358864,800.0,65854.52390149485,6,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031129220569058987,21951.507967164947,6,3,6,6_1,6_4,6_1_0 -10281,2,67.0,0.0,6,111,153.0,0.0,0.0,0,78,0.0,0.0,211.4726568191174,153.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,117289,2,1,0,1,2,353.0,0.0,569.0,11,0.0,1.0,1.0,1.0,1.0,2,2,1012.59608668446,153.0,24614.503834083705,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006215847413838214,24614.503834083705,7,4,7,7_0,7_4,7_0_0 -10282,2,49.0,0.0,6,111,550.0,0.0,0.0,0,56,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,4,124139,2,1,0,1,2,291.0,0.0,500.0,12,1.0,2.0,1.0,1.0,1.0,4,3,856.49414807137,550.0,15474.338385683717,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03554271506100962,15474.338385683717,3,2,3_0,3_0_0,3_4_0,3_0_0 -10283,2,43.0,0.0,1,111,0.0,0.0,2600.0,46,38,0.0,0.0,1328.3746705775652,2600.0,0.0,2972.4390140968417,50,0,0,0,0,0,0,0,0,0,,1,,1,108633,2,1,4,0,1,,240.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,885.239733135057,0.0,46938.66830720292,1,4,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05539143085576247,31292.44553813528,8,4,8,8_1,8_4,8_1_0 -10284,2,45.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1832.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,2,,2,100966,1,2,0,0,2,,0.0,400.0,12,1.0,2.0,1.0,1.0,1.0,2,2,1158.70740960077,0.0,7497.562003288447,0,1,2,3,20.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.24434609533025278,7497.562003288447,1,1,1_0,1_0_0,1_4_0,1_0_1 -10285,2,48.0,0.0,1,111,0.0,0.0,2000.0,48,46,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,60,0,0,0,0,0,0,0,0,3,45.0,1,,1,125852,2,2,2,0,1,,800.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,675.873028487906,0.0,40013.75910246198,4,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049982807035916385,17397.28656628782,4,2,4_0,4_1_0,4_4_0,4_1_0 -10286,2,57.0,0.0,1,111,450.0,90.0,0.0,0,52,1493.5848770180007,0.0,621.9784024091688,1540.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,101495,2,1,3,0,1,,650.0,650.0,22,2.0,0.0,3.0,2.0,1.5,2,2,567.098800838857,450.0,57351.06582031651,0,1,2,3,50.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02685216007710981,38234.04388021101,9,5,9,9_1,9_4,9_1_0 -10287,2,57.0,0.0,6,111,200.0,0.0,0.0,0,35,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,108469,1,3,0,1,2,300.0,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1012.59608668446,200.0,18302.099035814124,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.010927708325074283,18302.099035814124,4,2,4_0,4_0_0,4_4_0,4_0_0 -10288,2,37.0,0.0,2,111,350.0,0.0,0.0,0,35,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,,2,120219,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1147.84784648955,350.0,12489.553306622161,0,1,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028023420166229995,12489.553306622161,2,1,2_0,2_0_0,2_4_0,2_0_1 -10289,2,54.0,0.0,1,111,780.0,0.0,0.0,0,63,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,116420,2,2,0,0,1,,0.0,534.0,12,1.0,3.0,1.0,1.0,1.0,2,2,1259.30994017913,780.0,24332.642290751588,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03205570487083782,24332.642290751588,7,4,7,7_0,7_4,7_1_0 -10290,2,70.0,0.0,2,111,310.0,70.0,0.0,0,77,0.0,0.0,428.47401054853844,380.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,116402,2,3,0,1,1,529.0,0.0,277.0,11,0.0,0.0,2.0,1.0,1.0,1,1,867.264438355924,310.0,19150.673758200257,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019842643908926975,19150.673758200257,5,3,5,5_0,5_4,5_0_1 -10291,2,31.0,0.0,2,111,1500.0,0.0,0.0,55,47,2987.1697540360015,0.0,2073.261341363896,3500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133427,1,3,2,0,2,,1000.0,1326.0,43,2.0,0.0,3.0,4.0,2.1,2,1,815.825779462125,1500.0,33655.481716273614,4,1,2,3,100.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10399494589042314,16026.419864892197,4,2,4_0,4_1_0,4_4_0,4_0_1 -10292,2,63.0,0.0,1,111,0.0,0.0,1200.0,0,75,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,50,0,0,0,0,0,0,0,0,0,,2,,1,104938,1,1,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,5,5,938.564172818117,0.0,29896.003635128396,0,5,1,2,53.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.040139144169422575,29896.003635128396,8,4,8,8_0,8_4,8_1_0 -10293,2,67.0,0.0,1,111,250.0,1800.0,0.0,77,78,0.0,0.0,345.54355689398267,2050.0,0.0,3264.575221525408,70,2,2,1,2,1,2,2,2,0,,1,,1,114712,2,2,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,734.231315564705,250.0,26306.62122517896,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0779271493078661,17537.74748345264,4,2,4_0,4_1_0,4_4_0,4_1_0 -10294,2,54.0,0.0,7,111,1000.0,1500.0,0.0,46,23,0.0,0.0,1382.1742275759307,2500.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,117329,2,1,1,0,1,,500.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,855.799761740759,1000.0,155327.6262591664,1,1,0,1,165.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016095011944808283,62131.050503666556,10,5,10,10_1,10_4,10_0_0 -10295,2,29.0,0.0,2,111,0.0,0.0,0.0,52,42,0.0,0.0,0.0,1554.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,127425,2,2,5,0,1,,419.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,973.184248068117,0.0,50356.0261094816,1,1,1,2,58.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03086025884213678,33570.68407298774,9,5,9,9_1,9_4,9_0_1 -10296,2,33.0,0.0,2,111,450.0,1200.0,0.0,0,42,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,132643,2,3,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1213.05637464516,450.0,42537.54700969917,0,1,1,2,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038789260688299125,26585.96688106198,7,4,7,7_0,7_4,7_0_1 -10297,2,41.0,0.0,2,111,900.0,0.0,0.0,0,56,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,30,2,2,2,1,1,2,2,2,0,,2,,2,101589,2,3,0,1,1,,436.0,,32,2.0,0.0,5.0,7.0,3.1999999999999993,1,1,998.229955149882,900.0,38237.67693077482,0,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.023536994719353707,11949.274040867132,2,1,2_0,2_0_0,2_4_0,2_0_1 -10298,2,70.0,0.0,2,111,1050.0,0.0,0.0,90,74,0.0,0.0,1451.2829389547271,1170.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132163,2,2,1,0,1,,360.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1026.81166269133,1050.0,43301.683936738584,5,5,0,1,113.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02701973442209099,28867.789291159057,8,4,8,8_1,8_4,8_0_1 -10299,2,45.0,0.0,6,111,930.0,200.0,0.0,0,38,0.0,310.55175144583734,1285.4220316456153,1430.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,0,,1,,4,116397,2,1,2,0,1,,270.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,906.337652137124,930.0,75169.36693169526,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019023706841902892,50112.91128779684,10,5,10,10_1,10_4,10_0_0 -10300,1,36.0,260.0,5,111,0.0,0.0,3300.0,81,63,0.0,0.0,1686.0140049638328,3300.0,0.0,3772.7110563536835,60,2,2,2,2,1,2,2,2,0,,1,,3,107381,2,3,1,0,1,,250.0,805.0,43,2.0,0.0,2.0,4.0,2.1,1,1,839.651581898794,0.0,13597.263581072964,4,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,1,0.2426958910021803,6474.887419558554,1,1,1_1,1_1_1,1_4_1,1_0_0 -10301,2,78.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,686.0,0.0,0.0,44,2,2,2,2,1,2,2,2,0,,2,,3,129775,2,1,0,1,1,414.0,0.0,394.0,11,0.0,3.0,4.0,1.0,1.0,1,1,866.336578847959,0.0,17750.162960266567,0,5,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03864753250635496,17750.162960266567,4,2,4_0,4_0_0,4_4_0,4_0_0 -10302,2,34.0,0.0,9,111,800.0,0.0,0.0,0,52,0.0,0.0,1105.7393820607444,832.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2010.0,6,100706,2,1,0,0,1,,0.0,,32,2.0,0.0,3.0,5.0,2.4000000000000004,4,3,751.719843559183,800.0,39252.39296118864,0,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021196159959538052,16355.163733828598,4,2,4_0,4_0_0,4_4_0,4_0_0 -10303,2,35.0,0.0,2,111,1500.0,0.0,0.0,53,52,0.0,0.0,2073.261341363896,2628.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,110290,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,812.344641836409,1500.0,34501.0015305697,4,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07617170178875687,16429.048347890333,4,2,4_0,4_0_0,4_4_0,4_0_1 -10304,2,45.0,0.0,2,111,420.0,780.0,0.0,56,46,0.0,0.0,580.5131755818909,1200.0,0.0,1414.6492626610102,70,2,1,2,2,1,2,2,2,0,,2,,2,119926,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.6,3,3,791.031377056996,420.0,32397.474201839017,1,4,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03703992454855888,12460.567000707313,2,1,2_0,2_0_0,2_4_0,2_0_1 -10305,2,47.0,0.0,8,111,1400.0,0.0,0.0,22,55,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2001.0,6,113619,2,2,2,0,1,,512.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,811.699139752858,1400.0,27375.495270317013,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05114062727179247,11902.38924796392,2,1,2_0,2_1_0,2_4_0,2_0_0 -10306,2,54.0,0.0,1,111,868.0,0.0,0.0,0,34,0.0,0.0,1199.7272295359078,868.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,50.0,2,,1,100949,2,3,0,0,1,,0.0,800.0,32,1.0,0.0,3.0,2.0,1.3,1,1,937.072649234068,868.0,19533.321508432684,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04443688696903278,15025.631929563602,3,2,3_0,3_0_0,3_4_0,3_1_0 -10307,2,41.0,0.0,7,111,678.0,980.0,0.0,46,37,0.0,0.0,937.1141262964809,1658.0,0.0,1777.3798428305,60,0,0,0,0,0,0,0,0,0,,1,,5,123260,2,3,4,0,1,,313.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,774.293815009236,678.0,81986.83216429487,1,1,1,2,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020222759633858084,39041.34864966422,9,5,9,9_1,9_4,9_0_0 -10308,2,48.0,0.0,2,111,232.0,350.0,0.0,0,46,0.0,0.0,320.6644207976159,834.0,0.0,634.7785152966071,20,0,0,0,0,0,0,0,0,3,50.0,2,,2,133238,1,1,0,1,2,650.0,0.0,770.0,22,1.0,0.0,3.0,2.0,1.5,1,1,1141.67825574008,232.0,45885.277283168,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018175764632590213,30590.18485544533,8,4,8,8_0,8_4,8_0_1 -10309,2,25.0,0.0,7,111,630.0,0.0,0.0,38,38,0.0,0.0,870.7697633728362,630.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,50.0,2,,5,130506,2,1,0,0,1,,0.0,791.0,43,2.0,0.0,2.0,2.0,1.5,2,2,947.751413324006,630.0,53108.658379931934,1,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011862472508589237,35405.772253287956,9,5,9,9_0,9_4,9_0_0 -10310,2,30.0,0.0,8,111,700.0,0.0,0.0,47,35,0.0,0.0,967.5219593031513,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,2000.0,6,128145,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,713.248981509553,700.0,32361.88051645841,1,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021630387011780675,21574.58701097227,6,3,6,6_0,6_4,6_0_0 -10311,2,72.0,0.0,2,111,500.0,0.0,0.0,0,72,0.0,0.0,691.0871137879653,500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,132806,2,3,0,0,1,,0.0,105.0,11,0.0,1.0,2.0,1.0,1.0,1,1,957.841224166702,500.0,17721.60116710966,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028214154877154844,17721.60116710966,4,2,4_0,4_0_0,4_4_0,4_0_1 -10312,1,44.0,318.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,265.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,8,,1,117372,2,3,0,1,1,840.0,272.0,279.0,31,0.0,1.0,3.0,3.0,1.6,1,1,780.47853352415,0.0,20452.03177525153,0,6,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.012957147872255392,12782.519859532205,2,1,2_1,2_0_1,2_4_1,2_1_0 -10313,2,69.0,0.0,1,111,645.0,138.0,0.0,0,78,0.0,0.0,891.5023767864752,783.0,0.0,250.28410031694796,70,2,2,2,2,1,2,2,2,0,,2,,1,116788,1,2,0,0,1,,0.0,191.0,11,0.0,0.0,2.0,1.0,1.0,1,1,815.793274683993,645.0,18011.74764213295,0,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.04347162838149098,18011.74764213295,4,2,4_0,4_0_0,4_4_0,4_1_0 -10314,2,57.0,0.0,1,111,780.0,0.0,0.0,85,48,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,108959,2,1,0,1,1,583.0,0.0,407.0,42,1.0,3.0,3.0,2.0,1.5,1,1,930.159646585154,780.0,26714.744896077955,7,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0291973591001617,17809.829930718635,4,2,4_0,4_0_0,4_4_0,4_1_0 -10315,2,48.0,0.0,2,111,130.0,60.0,0.0,0,67,0.0,0.0,179.68264958487097,190.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,116294,1,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1077.18307085734,130.0,22940.0,0,1,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008282476024411508,22940.0,6,3,6,6_0,6_4,6_0_1 -10316,2,67.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115219,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1077.18307085734,300.0,29643.946042487936,0,5,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010120110175953545,29643.946042487936,8,4,8,8_0,8_4,8_0_1 -10317,2,60.0,0.0,5,111,420.0,120.0,0.0,0,74,0.0,0.0,580.5131755818909,540.0,0.0,217.63834810169388,31,0,0,0,0,0,0,0,0,0,,2,,3,133222,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1077.18307085734,420.0,30673.904031260696,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0176045409625612,30673.904031260696,8,4,8,8_0,8_4,8_0_0 -10318,2,27.0,0.0,9,111,0.0,0.0,0.0,45,37,0.0,0.0,0.0,418.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,2008.0,6,111090,2,1,0,0,1,,0.0,1070.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1665.0236264172,0.0,44896.0,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009310406272273699,24942.222222222223,7,4,7,7_0,7_4,7_0_0 -10319,2,55.0,0.0,6,111,95.0,285.0,0.0,0,48,0.0,0.0,131.3065516197134,380.0,0.0,516.891076741523,71,0,0,0,0,0,0,0,0,2,35.0,2,,4,119854,1,1,0,1,1,720.0,0.0,625.0,12,1.0,0.0,2.0,1.0,1.0,1,1,719.651716566771,95.0,51084.18654570143,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007438701204726843,51084.18654570143,10,5,10,10_0,10_4,10_0_0 -10320,2,34.0,0.0,2,111,347.0,540.0,0.0,65,64,0.0,0.0,479.6144569688479,887.0,0.0,979.3725664576224,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,112248,1,2,0,1,1,107.0,0.0,575.0,43,2.0,0.0,2.0,3.0,1.8,1,1,629.732821926661,347.0,43311.752119496756,1,1,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02047943009908199,24062.08451083153,6,3,6,6_0,6_4,6_0_1 -10321,2,30.0,0.0,2,111,200.0,0.0,0.0,0,48,74.67924385090004,0.0,276.4348455151861,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,114924,2,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,972.20825497298,200.0,34397.75761597562,0,1,1,2,27.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007267915623775735,34397.75761597562,9,5,9,9_0,9_4,9_0_1 -10323,2,70.0,0.0,2,111,263.0,73.0,0.0,0,78,0.0,0.0,363.5118218524697,336.0,0.0,132.39666176186378,42,0,0,0,0,0,0,0,0,0,,2,,2,119844,2,1,0,1,1,758.0,0.0,268.0,11,0.0,1.0,2.0,1.0,1.0,4,2,279.383153842752,263.0,18395.998158614988,0,5,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018264842010904888,18395.998158614988,4,2,4_0,4_0_0,4_4_0,4_0_1 -10324,2,58.0,0.0,1,111,574.0,812.0,0.0,0,45,0.0,0.0,793.3680066285841,1386.0,0.0,1472.6861554881284,71,0,0,0,0,0,0,0,0,3,15.0,2,,1,121070,2,2,0,0,1,,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,3,3,453.775892801968,574.0,36804.941741775445,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03765798652051175,36804.941741775445,9,5,9,9_0,9_4,9_1_0 -10325,2,43.0,0.0,2,111,345.0,233.0,0.0,46,53,0.0,0.0,476.85010851369606,578.0,0.0,422.5811258974556,70,0,0,0,0,0,0,0,0,3,40.0,2,,2,100049,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,254.4083191538,345.0,56540.1258359696,1,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010222828326856835,37693.41722397973,9,5,9,9_0,9_4,9_0_1 -10326,2,55.0,0.0,9,111,680.0,0.0,0.0,38,54,0.0,0.0,939.8784747516328,680.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2007.0,6,100128,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1292.74842463239,680.0,40771.33769646721,1,4,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01667838335505291,27180.89179764481,7,4,7,7_0,7_4,7_0_0 -10327,2,44.0,0.0,2,111,0.0,0.0,240.0,0,63,0.0,0.0,122.61920036100601,240.0,0.0,274.37898591663156,60,0,0,0,0,0,0,0,0,1,20.0,2,,2,100486,2,3,0,1,1,600.0,0.0,236.0,12,1.0,1.0,3.0,1.0,1.0,4,4,808.305283225287,0.0,19656.41623314465,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0122097536577045,19656.41623314465,5,3,5,5_0,5_4,5_0_1 -10328,2,36.0,0.0,1,111,660.0,0.0,0.0,0,21,0.0,0.0,912.2349902001142,660.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,113131,1,2,0,0,2,,0.0,700.0,12,1.0,1.0,3.0,1.0,1.0,2,2,793.969634420849,660.0,30930.062878954446,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021338462924660906,30930.062878954446,8,4,8,8_0,8_4,8_1_0 -10329,2,37.0,0.0,1,111,714.0,244.0,0.0,0,52,0.0,0.0,986.8723984892144,958.0,0.0,442.53130780677753,71,2,2,2,1,1,2,2,2,3,20.0,2,,1,106308,2,3,0,1,1,382.0,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,966.44967748379,714.0,18435.088739758034,0,1,2,3,33.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.051966118174084475,18435.088739758034,4,2,4_0,4_0_0,4_4_0,4_1_0 -10330,2,85.0,0.0,1,111,828.0,0.0,0.0,86,86,3542.7833282866977,0.0,1144.4402604328704,3200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120035,2,1,1,0,2,,432.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,922.842714223719,828.0,37806.171160794736,5,5,0,1,108.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08464226611020643,25204.114107196492,7,4,7,7_1,7_4,7_1_0 -10331,0,33.0,0.0,2,111,255.0,1100.0,0.0,0,43,0.0,0.0,352.4544280318623,1355.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,2,,2,128870,1,2,0,0,2,,480.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1108.09105534616,255.0,6138.99164147091,0,4,5,0,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.22072028748932135,6138.99164147091,1,1,1_0,1_0_0,1_4_0,1_0_1 -10332,1,59.0,176.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,572.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,113128,2,1,0,0,1,300.0,0.0,160.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1074.04868103923,0.0,2238.4609335190303,0,4,2,3,16.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2555327151056296,2238.4609335190303,1,1,1_1,1_0_1,1_4_1,1_0_1 -10333,0,58.0,0.0,2,111,0.0,0.0,210.0,0,56,0.0,0.0,107.29180031588027,210.0,0.0,240.08161267705262,71,0,0,0,0,0,0,0,0,0,,2,,2,101424,2,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1560.03166079623,0.0,9365.789901289372,0,1,5,0,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022422027636034167,9365.789901289372,1,1,1_0,1_0_0,1_4_0,1_0_1 -10334,2,69.0,0.0,5,111,345.0,0.0,0.0,0,74,0.0,0.0,476.85010851369606,345.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,114225,1,1,0,1,2,,480.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,889.739691440195,345.0,52498.586307042315,0,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006571605528237256,52498.586307042315,10,5,10,10_0,10_4,10_0_0 -10335,1,37.0,209.0,2,111,415.0,240.0,0.0,0,67,0.0,0.0,573.6023044440112,655.0,0.0,435.27669620338776,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,127454,2,1,0,1,2,,185.0,371.0,12,1.0,0.0,3.0,1.0,1.0,2,2,929.057172050617,415.0,13287.017993928597,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04929623789922594,13287.017993928597,3,2,3_1,3_0_1,3_4_1,3_0_1 -10336,1,68.0,209.0,2,111,1230.0,0.0,0.0,0,77,0.0,0.0,1700.0742999183947,1230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109139,2,1,0,0,1,,0.0,421.0,11,0.0,3.0,2.0,1.0,1.0,2,2,827.437991796368,1230.0,9819.068253741241,0,5,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12526646808177017,9819.068253741241,2,1,2_1,2_0_1,2_4_1,2_0_1 -10337,2,36.0,0.0,2,111,600.0,1500.0,0.0,54,46,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,60,0,0,0,0,0,0,0,0,2,60.0,2,,2,117045,2,1,0,0,1,,0.0,260.0,43,2.0,0.0,3.0,4.0,2.1,1,1,240.641552757443,600.0,40602.669249447164,1,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05172073754802692,19334.60440449865,5,3,5,5_0,5_4,5_0_1 -10338,1,25.0,99.0,2,111,360.0,700.0,0.0,0,52,0.0,0.0,497.582721927335,1060.0,0.0,1269.5570305932142,50,1,2,2,2,2,2,2,1,3,15.0,2,,2,131802,1,2,0,0,1,,0.0,191.0,32,1.0,0.0,3.0,3.0,1.6,1,1,249.777154366533,360.0,18351.324174522888,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.057761499383875314,11469.577609076805,2,1,2_1,2_0_1,2_4_1,2_0_1 -10339,2,55.0,0.0,2,111,650.0,350.0,0.0,52,52,0.0,0.0,898.4132479243549,1000.0,0.0,634.7785152966071,50,0,0,0,0,0,0,0,0,2,12.0,2,,2,129511,2,1,0,1,1,,0.0,350.0,43,3.0,0.0,3.0,3.0,2.0,2,2,244.754420148842,650.0,56444.28249196063,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01771658626615424,28222.141245980314,8,4,8,8_0,8_4,8_0_1 -10340,2,72.0,0.0,2,111,200.0,100.0,0.0,0,75,0.0,0.0,276.4348455151861,300.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,102386,2,1,0,1,1,,0.0,240.0,11,0.0,1.0,2.0,1.0,1.0,1,1,295.431764827872,200.0,18856.782862037988,0,5,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015909394629767554,18856.782862037988,5,3,5,5_0,5_4,5_0_1 -10341,1,36.0,300.0,5,111,320.0,150.0,0.0,0,54,0.0,0.0,442.2957528242978,470.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,1,10.0,2,,3,115976,2,1,0,1,1,436.0,0.0,490.0,32,1.0,0.0,3.0,3.0,1.6,4,2,235.154446854671,320.0,20467.904479830708,0,1,2,3,121.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022962780604294058,12792.440299894191,2,1,2_1,2_0_1,2_4_1,2_0_0 -10342,2,39.0,0.0,7,111,236.0,620.0,0.0,0,52,0.0,0.0,326.1931177079196,856.0,0.0,1124.4647985254182,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,100638,1,3,0,1,1,,0.0,401.0,12,1.0,0.0,2.0,1.0,1.0,2,2,720.474691731409,236.0,21249.26510353736,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04028374608858835,21249.26510353736,5,3,5,5_0,5_4,5_0_0 -10343,2,83.0,0.0,7,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,735.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,128602,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,639.68696699846,0.0,41094.70858904605,5,5,0,1,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017885514345657556,27396.472392697367,7,4,7,7_0,7_4,7_0_0 -10344,2,36.0,0.0,1,111,726.0,0.0,0.0,38,37,0.0,0.0,1003.4584892201256,726.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,113439,1,1,2,0,1,,560.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,723.852470455413,726.0,113105.46651686732,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006418787900863591,47127.277715361386,10,5,10,10_1,10_4,10_1_0 -10346,2,67.0,0.0,8,111,2200.0,0.0,0.0,77,74,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2000.0,6,100018,2,1,0,0,1,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,774.479289789991,2200.0,42365.57957219291,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05192894850526235,28243.719714795272,8,4,8,8_0,8_4,8_0_0 -10347,2,43.0,0.0,9,111,0.0,0.0,850.0,46,37,0.0,310.55175144583734,434.2763346118963,1150.0,0.0,971.7589084547367,71,2,2,2,2,1,2,1,2,2,20.0,1,2007.0,6,129249,2,1,1,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1511.14902258275,0.0,65793.77306644285,1,1,1,2,109.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.017478857745985395,31330.368126877547,8,4,8,8_1,8_4,8_0_0 -10348,2,40.0,0.0,2,111,0.0,0.0,900.0,54,63,1454.7516702155326,0.0,459.8220013537725,1874.0,0.0,1028.9211971873683,43,1,2,2,1,1,2,2,2,0,,2,,2,131444,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,888.976699005713,0.0,51312.56529264962,1,1,1,2,57.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.036521268997409595,28506.980718138675,8,4,8,8_0,8_4,8_0_1 -10349,2,74.0,0.0,2,111,20.0,0.0,0.0,0,77,0.0,0.0,27.64348455151861,20.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,106536,2,1,0,1,1,,0.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,902.070823810534,20.0,42180.71077177656,0,5,0,1,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0004741503790254325,28120.47384785104,8,4,8,8_0,8_4,8_0_1 -10350,2,57.0,0.0,7,111,0.0,0.0,180.0,0,33,0.0,0.0,91.96440027075451,180.0,0.0,205.78423943747367,50,0,0,0,0,0,0,0,0,3,55.0,2,,5,121380,1,2,0,1,1,555.0,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,721.068430772021,0.0,35522.05888569399,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005067273847476574,35522.05888569399,9,5,9,9_0,9_4,9_0_0 -10351,2,71.0,0.0,8,111,170.0,0.0,0.0,78,77,0.0,0.0,234.9696186879082,170.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2003.0,6,111767,2,1,0,1,1,,0.0,,41,0.0,1.0,1.0,2.0,1.5,1,1,784.401445878721,170.0,19313.07353488909,5,5,0,1,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008802327588764928,12875.382356592725,2,1,2_0,2_0_0,2_4_0,2_0_0 -10352,2,55.0,0.0,5,111,500.0,0.0,0.0,0,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,60.0,2,,3,105137,2,1,0,0,1,,0.0,525.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.55487399961,500.0,34656.71786018426,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014427217315186973,34656.71786018426,9,5,9,9_0,9_4,9_0_0 -10353,2,53.0,0.0,5,111,1388.0,0.0,0.0,75,34,0.0,590.048327747091,1918.4578278753916,2008.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,128510,2,1,2,0,1,,290.0,,42,1.0,5.0,8.0,2.0,1.5,2,2,939.336890033444,1388.0,77284.1883942571,5,1,0,1,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025982028688150294,51522.79226283807,10,5,10,10_1,10_4,10_0_0 -10354,1,42.0,236.0,2,111,900.0,0.0,0.0,0,43,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,2,1,2,1,2,2,2,2,1,10.0,2,,2,116725,2,3,0,1,1,560.0,0.0,328.0,32,1.0,0.0,3.0,3.0,1.8,1,1,871.442363449634,900.0,16781.861431967827,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05362933090876241,9323.256351093238,1,1,1_1,1_0_1,1_4_1,1_0_1 -10355,2,61.0,0.0,2,111,2100.0,0.0,0.0,54,22,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129110,2,2,1,0,1,,665.0,,43,2.0,0.0,3.0,4.0,2.5,2,2,1037.38457303893,2100.0,65696.59255867088,4,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031965128147621626,26278.63702346835,7,4,7,7_1,7_4,7_0_1 -10356,2,38.0,0.0,1,111,250.0,0.0,0.0,85,47,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,1,124463,2,2,0,1,1,637.0,0.0,218.0,42,1.0,0.0,2.0,3.0,1.8,2,2,717.056369011182,250.0,39109.342569573855,6,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006392334505630225,21727.41253865214,6,3,6,6_0,6_4,6_1_0 -10357,2,57.0,0.0,1,111,570.0,0.0,0.0,0,55,0.0,0.0,787.8393097182804,570.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,2,,1,115321,1,2,0,1,1,598.0,0.0,258.0,22,2.0,1.0,3.0,2.0,1.5,4,2,797.772626856537,570.0,25509.466272750393,0,4,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.022344646254276315,17006.310848500263,4,2,4_0,4_0_0,4_4_0,4_1_0 -10358,1,77.0,81.0,1,111,890.0,0.0,0.0,0,77,0.0,0.0,1230.1350625425782,890.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,110009,2,1,0,0,1,,0.0,218.0,11,0.0,0.0,2.0,1.0,1.0,2,2,906.175929776559,890.0,11191.21338236794,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07952667593687554,11191.21338236794,2,1,2_1,2_0_1,2_4_1,2_1_0 -10359,2,43.0,0.0,2,111,352.0,76.0,0.0,0,54,0.0,0.0,486.52532810672756,428.0,0.0,137.83762046440611,50,2,2,1,2,1,2,2,2,2,60.0,2,,2,109630,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1019.0805596309,352.0,23737.992159588208,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018030168563650948,23737.992159588208,6,3,6,6_0,6_4,6_0_1 -10360,2,33.0,0.0,2,111,665.0,0.0,0.0,46,54,0.0,0.0,919.1458613379938,665.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,130243,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,891.74869150392,665.0,13794.637240340024,4,4,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04820713936973441,7663.687355744458,1,1,1_0,1_0_0,1_4_0,1_0_1 -10361,2,60.0,0.0,1,111,200.0,0.0,0.0,52,37,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,109004,2,1,1,0,1,,850.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,767.114234048934,200.0,81810.2107484558,1,1,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0024446826156571794,45450.11708247544,10,5,10,10_1,10_4,10_1_0 -10362,2,31.0,0.0,2,111,1000.0,0.0,0.0,22,63,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,133041,1,2,0,0,1,,0.0,340.0,43,2.0,0.0,1.0,2.0,1.5,1,1,779.069645931536,1000.0,16107.26023783884,1,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.06208380477089585,10738.17349189256,2,1,2_0,2_0_0,2_4_0,2_0_1 -10363,2,76.0,0.0,2,111,268.0,0.0,0.0,0,77,0.0,0.0,370.4226929903494,268.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,103619,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,865.26440846214,268.0,12715.97472280377,0,5,0,1,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02107585189827337,12715.97472280377,2,1,2_0,2_0_0,2_4_0,2_0_1 -10364,2,28.0,0.0,2,111,1313.0,0.0,0.0,46,56,0.0,0.0,1814.7947608071968,1313.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,80.0,1,,2,128982,2,2,5,0,1,,0.0,720.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1197.92123832555,1313.0,36750.92641095851,1,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03572699053399876,24500.617607305674,7,4,7,7_1,7_4,7_0_1 -10365,1,28.0,245.0,1,111,650.0,800.0,0.0,45,52,0.0,0.0,898.4132479243549,1450.0,0.0,1450.922320677959,50,2,2,2,2,1,2,2,2,3,35.0,2,,1,102516,1,2,0,0,2,,0.0,835.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1433.13490312046,650.0,30045.30311420952,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.048260455036456,20030.20207613968,5,3,5,5_0,5_4,5_1_0 -10366,2,81.0,0.0,2,111,0.0,0.0,1920.0,74,78,0.0,0.0,980.9536028880481,1920.0,0.0,2195.0318873330525,50,0,0,0,0,0,0,0,0,0,,1,,2,130047,2,1,2,0,2,,300.0,,41,1.0,0.0,3.0,3.0,2.0,3,2,885.864969456856,0.0,49915.119823823734,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03846529882682187,24957.559911911867,7,4,7,7_1,7_4,7_0_1 -10367,2,37.0,0.0,6,111,400.0,380.0,0.0,63,35,0.0,0.0,552.8696910303722,780.0,0.0,689.1881023220305,31,0,0,0,0,0,0,0,0,3,60.0,2,,4,123386,2,1,0,0,1,,0.0,661.0,43,2.0,0.0,5.0,5.0,2.6,1,1,878.990208815992,400.0,40917.99639075868,1,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019062516955892856,15737.690919522569,3,2,3_0,3_0_0,3_4_0,3_0_0 -10368,2,49.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,452.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,108677,2,1,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,941.819417185902,0.0,40967.02461340843,0,1,1,2,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011033264052377903,20483.512306704215,5,3,5,5_0,5_4,5_0_1 -10369,2,59.0,0.0,1,111,1157.0,1840.0,0.0,0,33,0.0,0.0,1599.1755813053517,2997.0,0.0,3337.121337559306,33,2,2,2,1,1,1,2,2,0,,1,,1,127694,2,3,4,0,2,,191.0,,32,1.0,0.0,6.0,2.0,1.5,1,1,871.458881031953,1157.0,41976.44802920032,0,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07139717962594594,27984.29868613355,7,4,7,7_1,7_4,7_1_0 -10370,2,65.0,0.0,6,111,1573.0,0.0,0.0,90,56,0.0,0.0,2174.1600599769386,1573.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,125659,2,1,0,0,1,,0.0,484.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1002.24698300591,1573.0,35048.0,5,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0448813056379822,23365.333333333332,6,3,6,6_0,6_4,6_0_0 -10371,2,52.0,0.0,1,111,460.0,0.0,0.0,0,52,0.0,0.0,635.800144684928,460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,103260,2,1,0,1,1,,0.0,560.0,12,1.0,1.0,1.0,1.0,1.0,2,1,1644.96650513427,460.0,30260.350919193235,0,1,3,4,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015201409964754763,30260.350919193235,8,4,8,8_0,8_4,8_1_0 -10372,1,34.0,113.0,8,111,400.0,1080.0,0.0,0,54,0.0,0.0,552.8696910303722,1480.0,0.0,1958.7451329152448,50,0,0,0,0,0,0,0,0,3,45.0,2,2001.0,6,110908,2,1,0,1,1,150.0,0.0,384.0,32,1.0,0.0,3.0,3.0,1.6,2,2,629.268418423149,400.0,28571.003166953225,0,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05180077126979736,17856.876979345765,4,2,4_1,4_0_1,4_4_1,4_0_0 -10373,2,52.0,0.0,2,111,1200.0,150.0,0.0,63,68,0.0,0.0,1658.6090730911167,1350.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,0,,2,,2,118905,2,1,0,1,1,,0.0,,43,3.0,1.0,3.0,5.0,3.0,2,2,786.333428436753,1200.0,54164.60474422072,4,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024924025687532464,18054.868248073573,4,2,4_0,4_0_0,4_4_0,4_0_1 -10374,2,56.0,0.0,2,111,192.0,0.0,0.0,0,46,0.0,0.0,265.37745169457867,192.0,0.0,0.0,70,2,1,2,2,2,2,2,1,2,8.0,2,,2,118599,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1076.38869015619,192.0,41437.15781255392,0,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.004633522426140702,41437.15781255392,9,5,9,9_0,9_4,9_0_1 -10375,2,39.0,0.0,1,111,1278.0,0.0,0.0,34,21,0.0,0.0,1766.4186628420393,1278.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,112549,2,1,1,0,1,,489.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,838.700533633912,1278.0,42019.35396432882,1,1,0,1,77.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03041455613727244,23344.08553573823,6,3,6,6_1,6_4,6_1_0 -10376,2,36.0,0.0,2,111,550.0,300.0,0.0,68,62,0.0,0.0,760.1958251667618,850.0,0.0,544.0958702542347,12,0,0,0,0,0,0,0,0,3,60.0,2,,2,127919,2,1,0,1,1,519.0,0.0,337.0,43,2.0,0.0,3.0,5.0,2.4,1,1,196.68440570637,550.0,47580.611746529394,1,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01786441932541988,19825.25489438725,5,3,5,5_0,5_4,5_0_1 -10377,1,38.0,344.0,2,111,0.0,0.0,684.0,0,42,0.0,0.0,349.46472102886713,684.0,0.0,781.9801098624,50,2,1,2,2,1,1,2,2,3,45.0,2,,2,118893,2,2,0,1,1,756.0,0.0,320.0,32,1.0,0.0,3.0,4.0,2.3,1,1,220.419501596471,0.0,10794.33944202256,0,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06336654537073158,4693.191061748939,1,1,1_1,1_0_1,1_4_1,1_0_1 -10378,1,79.0,27.0,1,111,274.0,86.0,0.0,0,77,0.0,0.0,378.715738355805,360.0,0.0,155.9741494728806,50,2,2,1,2,1,2,2,2,0,,2,,1,119036,1,1,0,1,2,876.0,0.0,293.0,11,0.0,2.0,3.0,1.0,1.0,2,2,279.17711961225,274.0,15202.07808441512,0,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.02368097295652396,15202.07808441512,3,2,3_1,3_0_1,3_4_1,3_1_0 -10379,2,42.0,0.0,7,111,1700.0,0.0,0.0,37,56,0.0,258.79312620486445,2349.696186879082,1950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,117967,2,2,3,0,1,,600.0,,43,2.0,1.0,6.0,4.0,2.3,2,2,726.198611024646,1700.0,36545.80643734608,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05335769518024096,15889.481059715688,3,2,3_0,3_1_0,3_4_0,3_0_0 -10380,1,57.0,307.0,7,111,0.0,0.0,900.0,0,77,0.0,0.0,459.8220013537725,922.0,37.84719409218422,1028.9211971873683,50,2,2,2,1,1,1,2,2,0,,2,,5,103226,2,1,0,0,1,,0.0,443.0,11,0.0,2.0,2.0,1.0,1.0,4,3,930.140419312903,0.0,9655.07794172415,0,7,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.09549379151209154,9655.07794172415,1,1,1_1,1_0_1,1_4_1,1_0_0 -10381,1,48.0,386.0,2,111,436.0,1445.0,0.0,56,42,0.0,0.0,602.6279632231058,1881.0,0.0,2620.7284417245637,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,118996,1,2,0,0,1,,0.0,625.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,924.77274226836,436.0,34367.69738067134,1,1,2,3,108.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05473162717784779,13218.345146412057,2,1,2_1,2_0_1,2_4_1,2_0_1 -10382,2,79.0,0.0,6,111,290.0,558.0,0.0,0,74,0.0,0.0,400.8305259970199,848.0,0.0,1012.0183186728765,71,0,0,0,0,0,0,0,0,0,,2,,4,122148,2,2,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,999.298380135256,290.0,23113.138625686064,0,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03668908899536481,23113.138625686064,6,3,6,6_0,6_4,6_0_0 -10383,0,65.0,0.0,2,111,180.0,0.0,0.0,0,74,0.0,0.0,248.7913609636675,232.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128626,2,1,0,1,2,1160.0,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,1209.60561172457,180.0,39981.94445818234,0,5,5,0,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005802619235856624,39981.94445818234,9,5,9,9_0,9_4,9_0_1 -10384,2,57.0,0.0,2,111,1250.0,540.0,0.0,38,37,0.0,0.0,1727.717784469913,1790.0,0.0,979.3725664576224,43,0,0,0,0,0,0,0,0,3,60.0,2,,2,122714,2,2,0,1,1,,0.0,,43,3.0,0.0,7.0,6.0,3.5,2,2,819.005684358764,1250.0,120192.02206568982,1,1,0,1,131.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014892835391534492,34340.57773305423,9,5,9,9_0,9_4,9_0_1 -10385,2,53.0,0.0,2,111,480.0,0.0,0.0,52,47,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,1,2,2,1,1,2,2,2,2,30.0,2,,2,115307,1,3,0,1,1,588.0,0.0,324.0,43,3.0,2.0,4.0,4.0,2.3,1,1,261.521763326198,480.0,58485.07509742267,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.008207222085300062,25428.293520618554,7,4,7,7_0,7_4,7_0_1 -10386,1,57.0,122.0,2,111,600.0,70.0,0.0,0,52,0.0,0.0,829.3045365455583,670.0,0.0,126.95570305932142,71,1,2,2,2,1,2,2,2,3,20.0,2,,2,101113,1,2,0,1,1,768.0,0.0,379.0,12,1.0,1.0,4.0,1.0,1.0,2,2,294.852613286613,600.0,11833.170664759971,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05662049665144338,11833.170664759971,2,1,2_1,2_0_1,2_4_1,2_0_1 -10387,1,60.0,344.0,2,111,518.0,600.0,0.0,85,21,0.0,0.0,715.966249884332,1118.0,0.0,1088.1917405084694,50,2,1,2,2,1,1,2,2,0,,2,,2,116029,2,1,0,1,1,400.0,0.0,323.0,42,2.0,2.0,4.0,4.0,2.5,3,2,248.785308451644,518.0,32895.24326515411,6,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03398667676625137,13158.097306061643,2,1,2_1,2_0_1,2_4_1,2_0_1 -10388,2,66.0,0.0,2,111,234.0,72.0,0.0,0,78,0.0,0.0,323.4287692527678,306.0,0.0,130.5830088610163,50,0,0,0,0,0,0,0,0,0,,2,,2,117455,2,1,0,1,1,240.0,0.0,303.0,11,0.0,0.0,2.0,1.0,1.0,1,1,294.8766819866,234.0,17291.224740592454,0,5,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017696837823271243,17291.224740592454,4,2,4_0,4_0_0,4_4_0,4_0_1 -10389,1,28.0,243.0,2,111,260.0,0.0,0.0,0,56,0.0,0.0,359.36529916974195,260.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,129222,1,1,0,1,1,200.0,0.0,409.0,32,1.0,0.0,1.0,2.0,1.3,2,2,247.892875142167,260.0,9411.566655270733,0,4,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027625581321723193,7239.666657900564,1,1,1_1,1_0_1,1_4_1,1_0_1 -10390,1,49.0,147.0,2,111,620.0,0.0,0.0,42,62,0.0,0.0,856.9480210970769,620.0,0.0,0.0,44,2,2,1,1,1,2,2,2,0,,2,,2,117908,2,2,0,1,1,640.0,0.0,495.0,43,3.0,0.0,3.0,5.0,2.8,2,2,199.018901069572,620.0,9491.019533392371,1,4,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06532491033430564,3389.6498333544187,1,1,1_1,1_0_1,1_4_1,1_0_1 -10391,2,82.0,0.0,2,111,435.0,700.0,0.0,77,72,0.0,0.0,601.2457889955298,1135.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,1,,2,133276,2,1,2,0,1,,238.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1191.3640868895,435.0,20815.989417946035,5,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054525392822379386,13877.32627863069,3,2,3_0,3_1_0,3_4_0,3_0_1 -10392,2,67.0,0.0,2,111,344.0,2836.0,0.0,75,75,0.0,72.46207533736204,475.4679342861201,3250.0,0.0,5143.519626803365,71,0,0,0,0,0,0,0,0,0,,1,,2,129485,1,3,2,0,2,,388.0,,41,0.0,1.0,8.0,2.0,1.5,1,1,1159.53334853558,344.0,57239.69567083442,5,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056778778466776265,38159.79711388962,9,5,9,9_1,9_4,9_0_1 -10393,2,54.0,0.0,1,111,1114.0,2780.0,0.0,0,48,0.0,0.0,1539.7420895195867,3894.0,0.0,5041.955064355908,71,0,0,0,0,0,0,0,0,0,,1,,1,106654,2,1,2,0,1,,1200.0,,32,3.0,1.0,9.0,4.0,2.5,1,1,793.986364449385,1114.0,64149.33731392574,0,4,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060702107972589736,25659.734925570294,7,4,7,7_1,7_4,7_1_0 -10394,2,42.0,0.0,2,111,700.0,800.0,0.0,42,38,0.0,0.0,967.5219593031513,1500.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,2,60.0,1,,2,115333,2,1,1,0,1,,800.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,1070.38000379841,700.0,85942.57386090995,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017453514976495936,31830.58291144813,8,4,8,8_1,8_4,8_0_1 -10395,2,29.0,0.0,2,111,0.0,0.0,1100.0,85,63,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,70,0,0,0,0,0,0,0,0,3,50.0,2,,2,117291,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,820.115462751974,0.0,27601.90510716906,6,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03985232163247661,18401.27007144604,4,2,4_0,4_0_0,4_4_0,4_0_1 -10396,2,54.0,0.0,5,111,470.0,275.0,0.0,0,34,0.0,0.0,649.6218869606873,745.0,0.0,498.75454773304847,71,0,0,0,0,0,0,0,0,3,1.0,2,,3,117048,2,1,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,817.163579706593,470.0,53189.44493701963,0,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014006538343878883,26594.722468509815,7,4,7,7_0,7_4,7_0_0 -10397,2,67.0,0.0,2,111,184.0,140.0,0.0,56,90,0.0,0.0,254.32005787397122,324.0,0.0,253.91140611864284,12,2,1,2,2,1,2,2,2,0,,2,,2,125344,2,3,0,1,1,770.0,0.0,349.0,42,1.0,3.0,4.0,2.0,1.5,2,2,872.283984431712,184.0,25070.195181765434,1,5,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01292371270550212,16713.46345451029,4,2,4_0,4_0_0,4_4_0,4_0_1 -10398,2,30.0,0.0,5,111,0.0,0.0,0.0,52,68,0.0,0.0,0.0,455.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,2,,3,104462,2,2,0,1,1,675.0,0.0,695.0,43,2.0,1.0,3.0,2.0,1.5,1,1,785.116494784553,0.0,39637.70894306294,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011478968187933836,26425.139295375295,7,4,7,7_0,7_4,7_0_0 -10399,2,41.0,0.0,5,111,1050.0,0.0,0.0,65,37,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,3,130815,2,2,0,0,2,,0.0,1267.0,43,2.0,0.0,4.0,4.0,2.1,3,3,1022.0692239295,1050.0,84558.9695964987,1,1,2,3,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012417369854557415,40266.175998332714,9,5,9,9_0,9_4,9_0_0 -10400,2,35.0,0.0,5,111,1200.0,0.0,0.0,34,46,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,103860,2,3,0,0,1,1200.0,0.0,1100.0,43,2.0,0.0,3.0,5.0,2.4,3,2,720.72964574849,1200.0,82374.10268013357,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014567685242772398,34322.54278338899,9,5,9,9_0,9_4,9_0_0 -10401,2,30.0,0.0,2,111,85.0,364.0,0.0,56,62,0.0,0.0,117.4848093439541,449.0,0.0,660.1696559084714,71,0,0,0,0,0,0,0,0,0,,2,,2,111022,2,1,0,1,2,192.0,0.0,149.0,43,2.0,0.0,2.0,4.0,2.1,3,3,1051.74570403514,85.0,45433.4515430585,1,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009882586172755786,21634.976925265953,6,3,6,6_0,6_4,6_0_1 -10402,2,29.0,0.0,1,111,1100.0,0.0,0.0,37,37,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,50.0,2,,1,114108,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,784.407074384391,1100.0,45322.2185037177,1,1,1,2,43.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02427065656350801,30214.8123358118,8,4,8,8_0,8_4,8_1_0 -10403,2,88.0,0.0,2,111,270.0,130.0,0.0,75,31,0.0,0.0,373.1870414455012,400.0,0.0,235.77487711016835,41,0,0,0,0,0,0,0,0,0,,2,,2,114516,2,1,0,1,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,951.773459169417,270.0,122557.87986468148,5,4,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0032637640308534033,81705.25324312098,10,5,10,10_0,10_4,10_0_1 -10404,2,59.0,0.0,1,111,1200.0,0.0,0.0,74,75,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,127384,2,1,0,0,2,,0.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,938.18433361335,1200.0,20452.263081996403,5,5,0,1,57.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05867321357978858,13634.842054664268,3,2,3_0,3_0_0,3_4_0,3_1_0 -10405,2,45.0,0.0,7,111,4000.0,0.0,0.0,37,37,0.0,0.0,5528.696910303723,4000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,45.0,2,,5,127782,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,714.615111894314,4000.0,97680.63088345408,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04094977646870984,42469.83951454526,9,5,9,9_0,9_4,9_0_0 -10406,2,44.0,0.0,7,111,1260.0,0.0,0.0,42,38,0.0,0.0,1741.5395267456724,1260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,5,128233,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,888.913133761936,1260.0,39125.11984884397,1,1,1,2,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03220437419406983,21736.177693802205,6,3,6,6_0,6_4,6_0_0 -10407,2,75.0,0.0,5,111,585.0,810.0,0.0,0,74,0.0,0.0,808.5719231319193,1395.0,0.0,1469.0588496864336,60,0,0,0,0,0,0,0,0,0,,2,,3,112755,2,1,0,0,2,,0.0,595.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1229.19803686189,585.0,25879.127210040057,0,5,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05390444541185285,25879.127210040057,7,4,7,7_0,7_4,7_0_0 -10408,2,44.0,0.0,2,111,530.0,0.0,0.0,56,46,0.0,869.5449040483445,732.5523406152432,1370.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,131183,2,2,0,1,1,800.0,0.0,419.0,43,2.0,1.0,5.0,3.0,2.0,2,2,914.123785200159,530.0,45692.62579857457,1,1,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029982956244172305,22846.312899287284,6,3,6,6_0,6_4,6_0_1 -10409,2,91.0,0.0,2,111,560.0,620.0,0.0,78,78,0.0,0.0,774.0175674425211,1180.0,0.0,1124.4647985254182,50,0,0,0,0,0,0,0,0,0,,2,,2,111906,2,1,0,1,1,720.0,0.0,385.0,41,0.0,0.0,3.0,2.0,1.5,2,2,927.588312385016,560.0,34332.47040293479,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034369795885679455,22888.313601956528,6,3,6,6_0,6_4,6_0_1 -10410,2,45.0,0.0,1,111,1200.0,0.0,0.0,85,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,1,105906,2,2,0,0,1,,0.0,,42,1.0,4.0,2.0,3.0,1.8,2,2,1484.34927213521,1200.0,92475.23073664524,6,1,1,2,43.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.012976447751911094,51375.12818702513,10,5,10,10_0,10_4,10_1_0 -10411,2,55.0,0.0,5,111,650.0,0.0,0.0,55,90,0.0,0.0,898.4132479243549,1158.0,206.439240502823,0.0,70,2,1,2,1,2,2,2,2,2,75.0,2,,3,108311,2,2,0,1,2,850.0,0.0,650.0,43,3.0,0.0,3.0,4.0,2.3,1,1,1082.54324500464,650.0,49822.61586058452,1,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.023242456864175063,21662.006895906314,6,3,6,6_0,6_4,6_0_0 -10412,2,57.0,0.0,5,111,535.0,2400.0,0.0,46,46,0.0,0.0,739.4632117531229,2935.0,0.0,4352.7669620338775,60,0,0,0,0,0,0,0,0,2,60.0,2,,3,119873,1,2,0,1,2,,600.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,816.70134607432,535.0,65211.24460065564,1,1,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04500757527284629,32605.62230032782,8,4,8,8_0,8_4,8_0_0 -10413,2,69.0,0.0,6,111,13400.0,0.0,0.0,86,78,1344.2263893162005,72.46207533736204,18521.13464951747,18336.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,118466,2,2,2,0,1,,720.0,,41,1.0,1.0,6.0,3.0,2.0,2,2,862.370567205774,13400.0,36741.94987125017,5,5,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4990480925550319,18370.974935625087,4,2,4_0,4_1_0,4_4_0,4_0_0 -10414,2,75.0,0.0,2,111,600.0,2000.0,0.0,0,72,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,20,0,0,0,0,0,0,0,0,0,,1,,2,132899,2,1,1,0,1,,1200.0,,11,0.0,2.0,7.0,1.0,1.0,4,3,1250.08326049966,600.0,11759.838709020796,0,5,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.22109146769211885,11759.838709020796,2,1,2_0,2_1_0,2_4_0,2_0_1 -10415,2,66.0,0.0,2,111,766.0,1347.0,0.0,52,52,0.0,0.0,1058.745458323163,2113.0,0.0,2442.9904574415136,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,106747,1,2,4,0,1,,836.0,756.0,43,2.0,2.0,6.0,2.0,1.5,2,2,299.389091796611,766.0,62167.17455035797,1,1,2,3,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03398899845912062,41444.783033571985,9,5,9,9_1,9_4,9_0_1 -10416,2,39.0,0.0,2,111,540.0,0.0,0.0,0,54,0.0,0.0,746.3740828910024,1071.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,108259,2,1,0,1,1,699.0,0.0,383.0,12,1.0,0.0,3.0,1.0,1.0,2,2,279.019201344443,540.0,26781.438193831014,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03999038409545534,26781.438193831014,7,4,7,7_0,7_4,7_0_1 -10417,1,39.0,230.0,2,111,480.0,360.0,0.0,85,64,0.0,0.0,663.4436292364467,840.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,102485,2,1,0,1,1,68.0,0.0,300.0,42,1.0,0.0,3.0,3.0,1.8,1,1,244.156367572642,480.0,10153.626666666665,6,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08272906101202593,5640.903703703702,1,1,1_1,1_0_1,1_4_1,1_0_1 -10418,2,68.0,0.0,5,111,480.0,1728.0,0.0,0,74,0.0,0.0,663.4436292364467,2208.0,0.0,3133.992212664392,70,0,0,0,0,0,0,0,0,0,,1,,3,121000,2,1,2,0,1,,534.0,,11,0.0,1.0,7.0,1.0,1.0,2,2,1182.6192443176,480.0,35366.35900940645,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062432211339955426,35366.35900940645,9,5,9,9_1,9_4,9_0_0 -10419,2,45.0,0.0,2,111,240.0,90.0,0.0,54,54,0.0,0.0,331.72181461822333,330.0,0.0,163.2287610762704,71,2,2,2,2,1,2,2,2,3,45.0,2,,2,122004,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,904.371793162651,240.0,57688.3304803442,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005720394354494952,38458.886986896134,9,5,9,9_0,9_4,9_0_1 -10420,2,33.0,0.0,2,111,1530.0,0.0,0.0,34,47,0.0,0.0,2114.7265681911736,1530.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,1,,2,103080,2,2,1,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1437.67640040797,1530.0,47484.39492591562,1,4,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.032221111849210275,26380.219403286457,7,4,7,7_1,7_4,7_0_1 -10421,2,34.0,0.0,2,111,0.0,0.0,0.0,33,47,0.0,0.0,0.0,1125.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,120042,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,744.681919133713,0.0,76110.12084987902,1,1,1,2,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014781214212219822,36242.91469041858,9,5,9,9_0,9_4,9_0_1 -10422,2,58.0,0.0,2,111,300.0,0.0,0.0,75,37,0.0,0.0,414.65226827277917,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,116886,2,2,0,1,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,903.986194034176,300.0,31444.357847112282,5,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009540662317184218,20962.90523140819,5,3,5,5_0,5_4,5_0_1 -10423,2,32.0,0.0,2,111,200.0,0.0,0.0,0,54,0.0,0.0,276.4348455151861,200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,107806,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1112.49688227812,200.0,22051.18865572053,0,1,1,2,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00906980585593584,22051.18865572053,6,3,6,6_0,6_4,6_0_1 -10424,2,42.0,0.0,9,111,800.0,1000.0,0.0,46,46,0.0,0.0,1105.7393820607444,1800.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,130314,2,1,1,0,1,,600.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,1264.01465028921,800.0,63950.22262798114,1,1,1,2,142.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028146891848542493,26645.92609499214,7,4,7,7_1,7_4,7_0_0 -10425,2,43.0,0.0,7,111,440.0,1200.0,0.0,52,52,0.0,0.0,608.1566601334094,1640.0,0.0,2176.3834810169387,12,0,0,0,0,0,0,0,0,3,15.0,2,,5,113954,2,2,0,0,1,,0.0,579.0,43,2.0,0.0,4.0,4.0,2.1,2,2,695.831862288537,440.0,40130.55878411169,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04086661261864367,19109.789897196042,5,3,5,5_0,5_4,5_0_0 -10426,1,55.0,25.0,2,111,210.0,160.0,0.0,85,64,0.0,0.0,290.25658779094545,370.0,0.0,290.18446413559184,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,117028,2,3,0,1,1,480.0,0.0,361.0,42,2.0,0.0,3.0,5.0,3.0,1,1,706.717551855923,210.0,41063.255685113036,6,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009010488667466735,13687.751895037678,3,2,3_1,3_0_1,3_4_1,3_0_1 -10427,2,46.0,0.0,2,111,680.0,0.0,0.0,48,46,0.0,0.0,939.8784747516328,680.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,45.0,2,,2,109754,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,821.555423670641,680.0,36989.70042842554,4,1,1,2,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018383495733245766,14795.880171370216,3,2,3_0,3_0_0,3_4_0,3_0_1 -10428,2,54.0,0.0,2,111,600.0,200.0,0.0,62,56,0.0,0.0,829.3045365455583,800.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,2,110587,2,2,0,1,1,,0.0,,43,4.0,0.0,5.0,6.0,3.3,2,1,858.696886125706,600.0,87598.7856708795,1,4,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00913254668855466,26545.086566933183,7,4,7,7_0,7_4,7_0_1 -10429,2,49.0,0.0,2,111,800.0,0.0,0.0,52,65,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,30.0,2,,2,114889,2,2,0,1,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,2,2,807.409398085604,800.0,41240.15643053754,1,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019398568512887973,20620.07821526877,5,3,5,5_0,5_4,5_0_1 -10430,2,56.0,0.0,7,111,500.0,0.0,0.0,52,37,0.0,0.0,691.0871137879653,564.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,1.0,2,,5,110365,2,1,0,1,1,645.0,0.0,758.0,43,3.0,2.0,4.0,3.0,2.0,1,1,859.895171716485,500.0,84762.50735970211,1,1,2,3,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0066538852798039986,42381.253679851055,9,5,9,9_0,9_4,9_0_0 -10431,1,39.0,427.0,1,111,180.0,85.0,0.0,0,67,0.0,0.0,248.7913609636675,265.0,0.0,154.16049657203317,50,1,2,2,1,2,2,2,2,0,,2,,1,117788,2,1,0,1,1,601.0,0.0,401.0,32,1.0,0.0,2.0,3.0,1.8,2,2,621.275626050999,180.0,11828.045871559632,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.022404377094714243,6571.136595310907,1,1,1_1,1_0_1,1_4_1,1_1_0 -10432,2,50.0,0.0,9,111,780.0,0.0,0.0,55,53,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,70.0,2,2006.0,6,119296,2,1,0,1,1,530.0,0.0,552.0,43,3.0,0.0,4.0,5.0,2.8,2,2,965.066982170637,780.0,41565.093953863914,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018765746105753496,14844.676412094255,3,2,3_0,3_0_0,3_4_0,3_0_0 -10433,1,52.0,420.0,7,111,1700.0,0.0,0.0,21,56,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,5,122953,1,2,0,0,1,,0.0,638.0,43,4.0,0.0,3.0,4.0,2.5,3,2,609.184151124811,1700.0,17462.626267774533,4,4,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09735076350669968,6985.050507109813,1,1,1_1,1_0_1,1_4_1,1_0_0 -10434,2,35.0,0.0,2,111,1320.0,0.0,0.0,0,53,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,45.0,2,,2,105166,2,1,0,0,1,,1700.0,1210.0,32,2.0,0.0,4.0,3.0,2.0,1,1,1329.934208445,1320.0,47909.86411268911,0,1,2,3,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027551737506397833,23954.932056344554,6,3,6,6_0,6_4,6_0_1 -10435,2,38.0,0.0,2,111,288.0,0.0,0.0,0,47,0.0,0.0,398.066177541868,288.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104596,2,3,0,0,2,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,1116.58975840219,288.0,6218.402878493576,0,4,1,2,21.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04631414297649507,6218.402878493576,1,1,1_0,1_0_0,1_4_0,1_0_1 -10436,2,54.0,0.0,7,111,552.0,130.0,0.0,56,46,0.0,0.0,762.9601736219137,682.0,0.0,235.77487711016835,50,0,0,0,0,0,0,0,0,0,,2,,5,127939,1,1,0,1,1,,0.0,477.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,2,2,512.373272099793,552.0,40328.742786005125,1,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01691101564010737,15511.05491769428,3,2,3_0,3_0_0,3_4_0,3_0_0 -10437,2,61.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,114420,2,1,0,0,1,850.0,0.0,512.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1055.88217424808,300.0,28399.571870523137,0,5,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010563539526853924,28399.571870523137,8,4,8,8_0,8_4,8_0_0 -10438,1,26.0,100.0,1,111,1500.0,350.0,0.0,0,37,0.0,0.0,2073.261341363896,1850.0,0.0,634.7785152966071,70,0,0,0,0,0,0,0,0,3,80.0,2,,1,117300,1,3,0,0,1,,0.0,750.0,12,1.0,0.0,3.0,1.0,1.0,1,1,999.665833427593,1500.0,20180.81103706117,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0916712413887904,20180.81103706117,5,3,5,5_0,5_4,5_1_0 -10439,2,41.0,0.0,7,111,446.0,0.0,0.0,38,46,0.0,0.0,616.449705498865,446.0,0.0,0.0,71,2,2,1,2,1,2,2,2,1,5.0,2,,5,115420,1,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,589.248662424249,446.0,67721.85737947572,4,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.006585761484669024,32248.50351403606,8,4,8,8_0,8_4,8_0_0 -10440,2,66.0,0.0,1,111,324.0,867.0,0.0,0,77,0.0,0.0,447.8244497346015,1191.0,0.0,1572.4370650347382,71,2,2,2,2,1,2,1,2,0,,2,,1,120048,1,1,0,0,2,,0.0,523.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1218.43728903185,324.0,17326.944006424485,0,5,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.06873687590601095,17326.944006424485,4,2,4_0,4_0_0,4_4_0,4_1_0 -10441,2,37.0,0.0,2,111,0.0,0.0,0.0,56,37,0.0,0.0,0.0,679.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113480,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,814.347053574613,0.0,55753.70482366117,1,4,1,2,68.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012178562880216723,27876.852411830587,7,4,7,7_0,7_4,7_0_1 -10442,2,77.0,0.0,2,111,470.0,88.0,0.0,0,74,0.0,0.0,649.6218869606873,558.0,0.0,159.6014552745755,10,2,1,2,1,1,2,2,2,0,,2,,2,106897,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1076.86366760334,470.0,29961.023323452457,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018624196976717307,29961.023323452457,8,4,8,8_0,8_4,8_0_1 -10443,2,66.0,0.0,5,111,660.0,0.0,0.0,0,74,0.0,0.0,912.2349902001142,2597.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,107354,2,1,0,1,1,920.0,0.0,440.0,31,1.0,0.0,3.0,3.0,2.0,1,1,856.762624132944,660.0,44468.071163175686,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.058401453718788535,22234.035581587843,6,3,6,6_0,6_4,6_0_0 -10444,2,59.0,0.0,5,111,600.0,0.0,0.0,54,47,0.0,0.0,829.3045365455583,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,2,,3,102122,2,1,0,1,1,740.0,0.0,590.0,43,2.0,3.0,4.0,2.0,1.5,2,2,872.740132291067,600.0,59855.494227043695,1,1,2,3,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010024142440860678,39903.66281802913,9,5,9,9_0,9_4,9_0_0 -10445,1,41.0,424.0,2,111,1080.0,0.0,0.0,78,56,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,44,2,2,2,1,1,2,2,2,3,50.0,2,,2,105119,1,2,0,1,2,950.0,0.0,392.0,42,1.0,0.0,3.0,4.0,2.1,2,2,784.562302956159,1080.0,23008.10750335669,7,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04693997539095456,10956.24166826509,2,1,2_1,2_0_1,2_4_1,2_0_1 -10446,2,51.0,0.0,2,111,640.0,0.0,0.0,0,63,0.0,0.0,884.5915056485956,640.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,2,125686,1,3,0,1,2,347.0,0.0,780.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1067.26840791382,640.0,56837.5271859126,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011260166155832101,37891.6847906084,9,5,9,9_0,9_4,9_0_1 -10447,2,33.0,0.0,2,111,210.0,0.0,0.0,42,38,0.0,0.0,290.25658779094545,210.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,2,132172,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1017.48942623299,210.0,61515.5516372579,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003413770898752862,41010.36775817193,9,5,9,9_0,9_4,9_0_1 -10448,2,71.0,0.0,2,111,1200.0,0.0,0.0,75,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123707,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,233.203968530282,1200.0,90981.44050899819,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013189503191931967,60654.29367266546,10,5,10,10_0,10_4,10_0_1 -10449,1,31.0,509.0,5,111,330.0,0.0,0.0,0,67,0.0,0.0,456.1174951000571,330.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,3,102663,2,2,0,1,1,1046.0,0.0,420.0,32,1.0,0.0,4.0,4.0,1.9,2,2,226.887098692695,330.0,35685.7007902587,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009247401415473441,18781.947784346685,5,3,5,5_0,5_4,5_0_0 -10450,2,34.0,0.0,2,111,350.0,0.0,0.0,54,45,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,131553,2,1,0,1,1,1032.0,0.0,517.0,43,2.0,0.0,4.0,4.0,2.3,3,3,232.917555601679,350.0,51269.617541428204,1,1,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006826655176765927,22291.138061490525,6,3,6,6_0,6_4,6_0_1 -10451,2,50.0,0.0,5,111,180.0,0.0,0.0,0,45,0.0,0.0,248.7913609636675,180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,120837,2,1,0,1,2,170.0,0.0,258.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1147.68017680797,180.0,31635.178345564156,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005689868349524869,31635.178345564156,8,4,8,8_0,8_4,8_0_0 -10453,1,28.0,64.0,5,111,276.0,0.0,0.0,0,52,0.0,0.0,381.48008681095683,276.0,0.0,0.0,20,2,2,2,2,1,2,1,2,3,75.0,2,,3,112754,1,3,0,1,2,291.0,0.0,629.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1253.01429676311,276.0,24060.735659402846,0,1,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.011470970958950718,24060.735659402846,6,3,6,6_0,6_4,6_0_0 -10454,2,52.0,0.0,2,111,850.0,0.0,0.0,37,31,0.0,0.0,1174.848093439541,3008.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,20.0,1,,2,130865,2,1,2,0,1,,362.0,,43,2.0,1.0,6.0,4.0,2.5,2,2,1257.52128301651,850.0,127642.29262521697,1,1,1,2,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023565856881246117,51056.91705008679,10,5,10,10_1,10_4,10_0_1 -10455,2,30.0,0.0,7,111,308.0,0.0,0.0,46,52,0.0,0.0,425.7096620933866,308.0,0.0,0.0,42,2,1,2,2,1,2,2,2,2,10.0,2,,5,105790,1,1,0,1,1,624.0,0.0,546.0,43,2.0,0.0,3.0,3.0,1.8,3,3,748.800477091824,308.0,43085.91394840878,1,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007148507987292559,23936.6188602271,6,3,6,6_0,6_4,6_0_0 -10456,2,44.0,0.0,5,111,600.0,0.0,0.0,47,38,0.0,0.0,829.3045365455583,1156.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,3,102527,2,1,0,1,1,800.0,0.0,700.0,43,2.0,0.0,3.0,5.0,2.4,1,1,662.86057582363,600.0,100892.18348185265,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011457775618543614,42038.40978410527,9,5,9,9_0,9_4,9_0_0 -10457,2,42.0,0.0,7,111,1200.0,0.0,0.0,54,46,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,5,125377,2,1,0,0,1,,0.0,1000.0,43,2.0,0.0,3.0,4.0,2.1,2,2,853.583597456691,1200.0,44413.5875241124,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027018758602837766,21149.327392434476,5,3,5,5_0,5_4,5_0_0 -10458,1,31.0,100.0,7,111,1200.0,0.0,0.0,52,55,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,107612,2,3,0,0,1,,0.0,690.0,43,2.0,0.0,2.0,3.0,1.8,1,1,931.255437811884,1200.0,4308.286531407348,4,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.2785330063940773,2393.4925174485265,1,1,1_1,1_0_1,1_4_1,1_0_0 -10459,2,48.0,0.0,2,111,274.0,0.0,0.0,0,38,1182.9192225982565,0.0,378.715738355805,1066.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,118035,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,887.109918950019,274.0,61494.818830046665,0,1,1,2,80.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017334793731909447,61494.818830046665,10,5,10,10_0,10_4,10_0_1 -10460,2,50.0,0.0,7,111,444.0,1320.0,0.0,43,21,0.0,0.0,613.6853570437131,1764.0,0.0,2394.0218291186325,60,0,0,0,0,0,0,0,0,2,40.0,2,,5,120439,1,2,0,0,1,,0.0,717.0,43,2.0,1.0,3.0,3.0,1.8,2,2,748.800477091824,444.0,42731.61837267318,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04128090784242508,23739.787984818435,6,3,6,6_0,6_4,6_0_0 -10461,2,54.0,0.0,2,111,960.0,0.0,0.0,56,55,0.0,0.0,1326.8872584728933,1212.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,75.0,2,,2,122198,2,1,0,1,1,71.0,0.0,410.0,43,2.0,0.0,4.0,4.0,2.5,2,2,884.777915559321,960.0,20041.354351240207,4,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060474954873745775,8016.541740496083,1,1,1_0,1_0_0,1_4_0,1_0_1 -10462,2,76.0,0.0,5,111,400.0,300.0,0.0,52,90,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,0,,2,,3,132478,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,829.633555541268,400.0,27141.866723111027,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02579041475448544,18094.577815407352,4,2,4_0,4_0_0,4_4_0,4_0_0 -10463,2,49.0,0.0,6,111,350.0,796.0,0.0,0,37,0.0,0.0,483.76097965157567,1146.0,0.0,1443.6677090745693,71,0,0,0,0,0,0,0,0,1,5.0,2,,4,115705,2,1,0,0,1,,0.0,673.0,12,1.0,1.0,4.0,1.0,1.0,2,2,372.814995674695,350.0,32814.62951082041,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034923447775697544,32814.62951082041,8,4,8,8_0,8_4,8_0_0 -10464,1,94.0,102.0,7,111,250.0,0.0,0.0,0,78,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,130260,1,1,0,1,1,873.0,0.0,400.0,11,0.0,3.0,2.0,1.0,1.0,2,2,756.910541576033,250.0,15800.464463515902,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01582231969049157,15800.464463515902,3,2,3_1,3_0_1,3_4_1,3_0_0 -10465,1,43.0,183.0,6,111,600.0,0.0,0.0,0,45,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,1,2,2,1,1,2,2,2,3,20.0,2,,4,111445,2,2,0,1,1,672.0,0.0,572.0,32,2.0,0.0,4.0,3.0,2.0,3,3,241.759927051488,600.0,22943.665006454212,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.026151009432504174,11471.832503227106,2,1,2_1,2_0_1,2_4_1,2_0_0 -10466,2,70.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,309.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105330,2,1,0,1,1,360.0,0.0,371.0,11,0.0,5.0,1.0,1.0,1.0,1,1,279.323111130356,0.0,20101.26451073465,0,5,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015372167250223744,20101.26451073465,5,3,5,5_0,5_4,5_0_1 -10467,2,83.0,0.0,2,111,300.0,480.0,0.0,0,78,0.0,0.0,414.65226827277917,780.0,0.0,870.5533924067755,42,2,1,2,1,1,2,2,2,0,,2,,2,112131,1,2,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1019.61347259401,300.0,20551.215211355484,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03795395999595267,20551.215211355484,5,3,5,5_0,5_4,5_0_1 -10468,0,56.0,0.0,2,111,623.0,562.0,0.0,77,56,0.0,0.0,861.0945437798048,1185.0,0.0,1019.2729302762663,31,1,2,2,1,1,2,2,2,0,,2,,2,124649,1,2,0,2,2,172.0,0.0,,42,2.0,3.0,3.0,4.0,2.3,2,2,1096.69378228108,623.0,48202.87081539001,7,1,5,0,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024583598029635577,20957.769919734787,5,3,5,5_0,5_4,5_0_1 -10469,2,65.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,663.4436292364467,769.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,111214,1,1,0,1,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1076.86366760334,480.0,10192.977800484065,0,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07544409642131078,10192.977800484065,2,1,2_0,2_0_0,2_4_0,2_0_1 -10470,2,40.0,0.0,1,111,720.0,1390.0,0.0,33,38,0.0,103.51725048194578,995.16544385467,2210.0,0.0,2520.977532177954,70,0,0,0,0,0,0,0,0,0,,1,,1,105694,2,1,1,0,1,,465.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,818.927173268976,720.0,98429.58381570518,1,1,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022452599252455418,46871.23038843103,10,5,10,10_1,10_4,10_1_0 -10471,2,53.0,0.0,1,111,315.0,0.0,0.0,0,37,0.0,0.0,435.3848816864181,365.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,123763,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,994.174225681717,315.0,49734.93812190639,0,1,1,2,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007338905280335135,49734.93812190639,10,5,10,10_0,10_4,10_1_0 -10472,2,52.0,0.0,1,111,430.0,635.0,0.0,68,63,0.0,0.0,594.3349178576501,1065.0,0.0,1151.66959203813,71,0,0,0,0,0,0,0,0,0,,2,,1,114232,2,1,0,0,1,,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,1,1081.32727231477,430.0,42813.55125848964,1,4,1,2,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024875301597150682,28542.36750565976,8,4,8,8_0,8_4,8_1_0 -10473,2,51.0,0.0,2,111,700.0,1280.0,0.0,90,46,0.0,0.0,967.5219593031513,1980.0,0.0,2321.4757130847347,12,0,0,0,0,0,0,0,0,2,45.0,1,,2,105956,2,1,2,0,1,,740.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,897.837560791862,700.0,74085.36619312885,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026725925803463706,29634.14647725154,8,4,8,8_1,8_4,8_0_1 -10474,0,37.0,0.0,5,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1050.0,0.0,0.0,42,2,2,2,1,1,2,2,2,1,2.0,2,,3,107580,2,3,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1145.28991020866,0.0,37474.62199220353,0,1,5,0,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028018961744789555,37474.62199220353,9,5,9,9_0,9_4,9_0_0 -10475,1,66.0,134.0,6,111,398.0,0.0,0.0,0,75,0.0,0.0,550.1053425752203,398.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,112143,2,2,0,1,1,526.0,0.0,488.0,21,0.0,0.0,3.0,2.0,1.5,3,2,884.954710274301,398.0,29522.30307987398,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013481333042452423,19681.53538658265,5,3,5,5_0,5_4,5_0_0 -10476,2,40.0,0.0,5,111,1020.0,0.0,0.0,46,54,0.0,0.0,1409.817712127449,1020.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,2,,3,128100,2,3,0,1,1,840.0,0.0,489.0,43,2.0,2.0,4.0,3.0,2.0,2,2,859.615902092843,1020.0,61837.72574426444,1,1,2,3,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016494785144885553,30918.86287213222,8,4,8,8_0,8_4,8_0_0 -10477,2,52.0,0.0,2,111,600.0,320.0,0.0,52,63,0.0,0.0,829.3045365455583,920.0,0.0,580.3689282711837,50,0,0,0,0,0,0,0,0,0,,2,,2,107641,2,3,0,1,1,960.0,0.0,493.0,43,2.0,1.0,3.0,3.0,2.0,2,2,813.915429963944,600.0,38230.66874320971,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02406444957004328,19115.334371604855,5,3,5,5_0,5_4,5_0_1 -10478,2,57.0,0.0,2,111,390.0,129.0,0.0,74,56,0.0,0.0,539.0479487546129,519.0,0.0,233.9612242093209,60,0,0,0,0,0,0,0,0,0,,2,,2,104034,2,1,0,1,2,1620.0,0.0,327.0,42,1.0,1.0,5.0,3.0,2.0,1,1,917.95537350199,390.0,35467.59742808942,5,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014633074626841382,17733.79871404471,4,2,4_0,4_0_0,4_4_0,4_0_1 -10479,2,56.0,0.0,9,111,360.0,750.0,0.0,0,33,0.0,0.0,497.582721927335,1110.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,130922,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1512.33909895874,360.0,39315.565303437004,0,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02823309270598133,30242.74254110539,8,4,8,8_0,8_4,8_0_0 -10480,2,51.0,0.0,6,111,640.0,0.0,0.0,52,54,0.0,0.0,884.5915056485956,640.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,90.0,2,,4,120872,1,1,0,1,1,1432.0,0.0,648.0,43,3.0,0.0,5.0,5.0,2.8,1,1,681.592305900101,640.0,54931.97742939481,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011650773009630048,19618.563367641003,5,3,5,5_0,5_4,5_0_0 -10481,2,55.0,0.0,2,111,700.0,117.0,0.0,0,52,0.0,0.0,967.5219593031513,817.0,0.0,212.19738939915152,60,0,0,0,0,0,0,0,0,3,20.0,2,,2,129696,2,2,0,1,1,800.0,0.0,415.0,22,2.0,1.0,4.0,2.0,1.5,1,1,1081.23901121006,700.0,23874.298479568908,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03422090080255846,15916.198986379271,3,2,3_0,3_0_0,3_4_0,3_0_1 -10482,2,45.0,0.0,6,111,380.0,365.0,0.0,55,37,0.0,20.703450096389155,525.2262064788536,765.0,0.0,661.9833088093188,71,0,0,0,0,0,0,0,0,2,20.0,2,,4,113059,2,2,0,0,1,,0.0,630.0,43,2.0,0.0,3.0,4.0,2.1,3,3,1058.13288073719,380.0,78179.35371315484,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00978519217243513,37228.26367293087,9,5,9,9_0,9_4,9_0_0 -10483,2,80.0,0.0,2,111,525.0,0.0,0.0,75,38,0.0,1319.8449436448086,725.6414694773636,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118902,2,3,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,849.795882820142,525.0,43398.06347309223,5,5,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04147650507760652,28932.04231539482,8,4,8,8_0,8_4,8_0_1 -10484,2,30.0,0.0,2,111,208.0,60.0,0.0,46,38,0.0,0.0,287.49223933579356,268.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,126449,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,904.876980582418,208.0,73189.76889467314,1,1,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0036617139806203905,48793.179263115424,10,5,10,10_0,10_4,10_0_1 -10485,2,32.0,0.0,1,111,0.0,0.0,816.0,52,54,0.0,0.0,416.90528122742046,816.0,0.0,932.8885521165474,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,115462,2,3,0,1,1,960.0,0.0,465.0,43,2.0,0.0,3.0,2.0,1.5,1,1,628.39990818006,0.0,46690.353118215906,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01747684361979356,31126.902078810603,8,4,8,8_0,8_4,8_1_0 -10486,0,76.0,0.0,1,111,875.0,0.0,0.0,0,77,0.0,0.0,1209.4024491289392,875.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,107180,2,3,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,847.731857783078,875.0,12735.579995649729,0,5,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.068705155187191,12735.579995649729,2,1,2_0,2_0_0,2_4_0,2_1_0 -10487,2,61.0,0.0,1,111,565.0,0.0,0.0,0,52,0.0,0.0,780.9284385804008,765.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,1,106729,2,1,0,0,1,,180.0,,22,2.0,3.0,2.0,2.0,1.5,3,3,1178.66420178229,565.0,25443.402010995127,0,1,0,1,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030066733987436603,16962.268007330083,4,2,4_0,4_0_0,4_4_0,4_1_0 -10488,2,55.0,0.0,2,111,600.0,0.0,0.0,0,46,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,60.0,2,,2,132358,2,2,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,3,3,1391.71345542955,600.0,28497.692742343024,0,1,1,2,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.021054336062389212,28497.692742343024,8,4,8,8_0,8_4,8_0_1 -10489,2,60.0,0.0,1,111,663.0,0.0,0.0,0,37,0.0,0.0,916.381512882842,663.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,121002,2,1,0,0,1,,0.0,225.0,12,1.0,0.0,2.0,1.0,1.0,1,1,957.127802927614,663.0,27618.473292839684,0,4,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024005671601401955,27618.473292839684,7,4,7,7_0,7_4,7_1_0 -10490,2,58.0,0.0,2,111,600.0,0.0,0.0,46,33,3435.2452171414016,0.0,829.3045365455583,2900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,25.0,2,,2,120825,2,1,0,1,1,,0.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,979.42967963895,600.0,172474.35128053886,1,1,0,1,155.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016814094260792396,114982.90085369257,10,5,10,10_0,10_4,10_0_1 -10491,2,67.0,0.0,2,111,420.0,100.0,0.0,75,74,0.0,0.0,580.5131755818909,520.0,0.0,181.36529008474488,44,0,0,0,0,0,0,0,0,0,,2,,2,100361,1,3,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,955.684845513817,420.0,102230.91564623216,5,5,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005086523941538865,68153.94376415477,10,5,10,10_0,10_4,10_0_1 -10492,2,75.0,0.0,6,111,419.0,0.0,0.0,75,77,0.0,0.0,579.1310013543149,419.0,0.0,0.0,20,2,2,1,2,1,2,2,2,0,,2,,4,109781,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,620.692146326166,419.0,45206.1176630005,5,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009268657023890722,30137.411775333665,8,4,8,8_0,8_4,8_0_0 -10493,2,78.0,0.0,2,111,650.0,0.0,0.0,74,74,2688.452778632401,0.0,898.4132479243549,2450.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,101555,2,1,2,0,1,,252.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,1220.69332292309,650.0,95891.97778584584,5,5,0,1,102.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025549582525782807,63927.98519056389,10,5,10,10_1,10_4,10_0_1 -10494,2,45.0,0.0,2,111,540.0,0.0,0.0,31,46,0.0,0.0,746.3740828910024,540.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,,2,105808,2,1,0,3,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,905.451269175804,540.0,92664.91859079289,1,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0058274480592232876,61776.61239386193,10,5,10,10_0,10_4,10_0_1 -10495,2,59.0,0.0,5,111,480.0,143.0,0.0,78,65,0.0,0.0,663.4436292364467,623.0,0.0,259.3523648211852,60,2,2,2,1,1,2,2,2,2,15.0,2,,3,106404,1,2,0,1,1,576.0,0.0,424.0,42,2.0,0.0,4.0,4.0,2.5,3,2,828.701052210175,480.0,41538.92956759077,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.014997979160398802,16615.571827036307,4,2,4_0,4_0_0,4_4_0,4_0_0 -10496,2,36.0,0.0,5,111,719.0,77.0,0.0,0,53,0.0,0.0,993.7832696270941,796.0,0.0,139.65127336525356,50,2,1,2,2,1,2,2,2,2,15.0,2,,3,131212,2,3,0,1,1,550.0,0.0,675.0,32,1.0,0.0,3.0,2.0,1.3,1,1,887.737090557916,719.0,29422.909218154924,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.027053748971527302,22633.0070908884,6,3,6,6_0,6_4,6_0_0 -10497,2,50.0,0.0,7,111,383.0,1728.0,0.0,0,43,0.0,0.0,529.3727291615814,2111.0,0.0,3133.992212664392,42,0,0,0,0,0,0,0,0,2,25.0,2,,5,124665,1,2,0,0,1,,0.0,739.0,32,1.0,0.0,4.0,2.0,1.5,2,2,781.797724739965,383.0,35683.71805871474,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05915863354055528,23789.14537247649,6,3,6,6_0,6_4,6_0_0 -10498,1,58.0,300.0,7,111,1170.0,1170.0,0.0,0,52,0.0,0.0,1617.1438462638387,2340.0,0.0,2121.973893991515,71,2,2,2,1,1,2,2,2,3,60.0,2,,5,120934,2,3,0,0,1,,0.0,450.0,32,2.0,1.0,3.0,2.0,1.5,2,2,759.909134631843,1170.0,20054.967583524052,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.11667932098391436,13369.978389016034,3,2,3_1,3_0_1,3_4_1,3_0_0 -10499,2,65.0,0.0,2,111,285.0,353.0,0.0,0,75,0.0,0.0,393.9196548591402,638.0,0.0,640.2194739991495,50,0,0,0,0,0,0,0,0,0,,2,,2,109981,2,1,0,1,1,557.0,0.0,335.0,21,1.0,0.0,3.0,2.0,1.5,3,3,827.39468158592,285.0,49047.132922209945,0,5,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01300789591538174,32698.08861480663,8,4,8,8_0,8_4,8_0_1 -10500,2,50.0,0.0,5,111,504.0,574.0,0.0,46,46,0.0,0.0,696.615810698269,1078.0,0.0,1041.0367650864357,31,2,1,2,2,1,2,2,2,2,30.0,2,,3,120130,2,1,0,1,1,1176.0,0.0,382.0,43,2.0,0.0,4.0,4.0,2.3,2,2,829.67027986938,504.0,56685.57105199814,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.019017185149482606,24645.900457390497,7,4,7,7_0,7_4,7_0_0 -10501,2,76.0,0.0,6,111,800.0,0.0,0.0,72,74,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,42,2,2,1,1,2,2,2,2,0,,2,,4,132860,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,830.690504798243,800.0,74818.69445985707,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010692514829020826,49879.12963990471,10,5,10,10_0,10_4,10_0_0 -10502,2,49.0,0.0,5,111,20.0,0.0,0.0,0,38,0.0,0.0,27.64348455151861,20.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,1.0,2,,3,102816,2,3,0,1,1,612.0,0.0,410.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1057.22736319258,20.0,69795.59838039704,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00028655102132654325,69795.59838039704,10,5,10,10_0,10_4,10_0_0 -10503,1,36.0,285.0,2,111,470.0,131.0,0.0,0,54,0.0,0.0,649.6218869606873,601.0,0.0,237.58853001101582,20,0,0,0,0,0,0,0,0,0,,2,,2,104618,1,2,0,1,1,552.0,0.0,382.0,32,1.0,0.0,2.0,3.0,1.8,2,2,861.237785052995,470.0,22391.289531497816,0,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026840794459585437,12439.605295276564,2,1,2_1,2_0_1,2_4_1,2_0_1 -10504,2,59.0,0.0,5,111,360.0,180.0,0.0,0,31,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,2,,3,123381,1,1,0,1,1,60.0,0.0,600.0,12,1.0,1.0,3.0,1.0,1.0,3,3,931.812436542112,360.0,21051.086995203706,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025651882020298236,21051.086995203706,5,3,5,5_0,5_4,5_0_0 -10505,1,41.0,300.0,2,111,180.0,420.0,0.0,85,47,0.0,0.0,248.7913609636675,600.0,0.0,761.7342183559285,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,102888,1,3,0,1,1,45.0,0.0,452.0,42,1.0,0.0,3.0,5.0,2.4,3,3,663.705057092557,180.0,24114.51008645533,7,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02488128507893713,10047.712536023055,2,1,2_1,2_0_1,2_4_1,2_0_1 -10506,2,32.0,0.0,1,111,850.0,150.0,0.0,52,52,0.0,0.0,1174.848093439541,1000.0,0.0,272.04793512711734,71,2,2,2,2,1,2,2,2,2,20.0,2,,1,109775,2,3,0,0,1,,0.0,664.0,43,2.0,0.0,2.0,3.0,1.8,1,1,1568.47438592509,850.0,35012.17516828148,1,1,3,4,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.028561493114713087,19451.208426823043,5,3,5,5_0,5_4,5_1_0 -10507,1,53.0,319.0,2,111,400.0,380.0,0.0,0,85,0.0,0.0,552.8696910303722,780.0,0.0,689.1881023220305,50,2,1,2,2,1,2,2,2,0,,2,,2,101957,1,3,0,1,1,490.0,0.0,323.0,31,0.0,0.0,3.0,2.0,1.5,1,1,883.475280728654,400.0,12328.711613011379,0,7,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.06326695152612781,8219.14107534092,1,1,1_1,1_0_1,1_4_1,1_0_1 -10508,2,65.0,0.0,1,111,192.0,363.0,0.0,0,72,0.0,0.0,265.37745169457867,555.0,0.0,658.3560030076239,31,0,0,0,0,0,0,0,0,0,,2,,1,130004,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1088.91144464861,192.0,16875.76032672629,0,7,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.032887407100765806,16875.76032672629,4,2,4_0,4_0_0,4_4_0,4_1_0 -10509,2,63.0,0.0,2,111,0.0,0.0,240.0,0,77,0.0,0.0,122.61920036100601,240.0,0.0,274.37898591663156,50,2,2,2,1,2,2,2,2,0,,2,,2,105968,2,2,0,1,1,528.0,0.0,309.0,11,0.0,4.0,3.0,1.0,1.0,2,2,931.812436542112,0.0,23289.539096021334,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010305055802542712,23289.539096021334,6,3,6,6_0,6_4,6_0_1 -10510,1,49.0,205.0,8,111,552.0,624.0,0.0,0,52,0.0,0.0,762.9601736219137,1176.0,0.0,1131.719410128808,71,2,2,2,2,1,2,2,2,3,15.0,2,2001.0,6,114592,2,1,0,0,1,,0.0,543.0,32,1.0,1.0,3.0,2.0,1.5,4,2,760.797905015087,552.0,13371.0,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08795153690823423,8914.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -10511,2,25.0,0.0,2,111,210.0,700.0,0.0,84,46,0.0,0.0,290.25658779094545,910.0,0.0,1269.5570305932142,31,0,0,0,0,0,0,0,0,3,10.0,2,,2,125313,2,1,0,0,1,,0.0,710.0,42,2.0,0.0,2.0,3.0,2.0,3,2,1373.97218379911,210.0,30326.949977419863,3,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030006314537978487,15163.474988709931,3,2,3_0,3_0_0,3_4_0,3_0_1 -10512,2,32.0,0.0,1,111,600.0,0.0,0.0,0,37,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,40.0,2,,1,133657,2,2,0,0,1,,150.0,650.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1018.20844913584,600.0,29259.440798150816,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.020506201883322382,29259.440798150816,8,4,8,8_0,8_4,8_1_0 -10513,2,68.0,0.0,7,111,1600.0,0.0,0.0,0,75,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,112652,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,801.992576762291,1600.0,19162.757307557677,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08349529111705493,19162.757307557677,5,3,5,5_0,5_4,5_0_0 -10514,2,63.0,0.0,2,111,367.0,86.0,0.0,74,38,0.0,0.0,507.2579415203665,453.0,0.0,155.9741494728806,42,0,0,0,0,0,0,0,0,0,,2,,2,123303,2,2,0,1,2,,0.0,,42,1.0,0.0,5.0,2.0,1.5,4,2,954.88638857895,367.0,81427.23012023895,5,4,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005563249533738047,54284.8200801593,10,5,10,10_0,10_4,10_0_1 -10515,2,50.0,0.0,1,111,300.0,2000.0,0.0,0,38,0.0,0.0,414.65226827277917,2300.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,124324,2,2,1,0,1,,240.0,,32,1.0,0.0,6.0,3.0,1.8,2,2,858.085267809584,300.0,106849.98665004391,0,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021525505731067443,59361.10369446884,10,5,10,10_1,10_4,10_1_0 -10516,2,83.0,0.0,2,111,150.0,100.0,0.0,0,78,2240.377315527001,0.0,207.32613413638958,1750.0,0.0,181.36529008474488,31,0,0,0,0,0,0,0,0,0,,1,,2,125553,1,2,2,0,2,,200.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,980.610370681522,150.0,19470.3848222552,0,5,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08988009307344047,19470.3848222552,5,3,5,5_1,5_4,5_0_1 -10517,2,65.0,0.0,2,111,400.0,200.0,0.0,0,74,0.0,0.0,552.8696910303722,600.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,2,122309,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1075.39368111137,400.0,18641.420617959917,0,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03218638816732321,18641.420617959917,4,2,4_0,4_0_0,4_4_0,4_0_1 -10518,2,47.0,0.0,5,111,330.0,90.0,0.0,37,34,0.0,0.0,456.1174951000571,420.0,0.0,163.2287610762704,43,0,0,0,0,0,0,0,0,2,15.0,2,,3,121458,2,2,0,1,2,787.0,0.0,1680.0,43,2.0,1.0,5.0,4.0,2.5,2,2,910.955571721406,330.0,118087.06623526332,1,1,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003556697726432118,47234.82649410533,10,5,10,10_0,10_4,10_0_0 -10519,2,52.0,0.0,2,111,600.0,0.0,0.0,34,34,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,2,,2,133683,2,2,0,1,2,,0.0,,43,2.0,0.0,5.0,5.0,2.4,4,3,742.640564536081,600.0,116824.25289718877,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0051359198549981765,48676.77204049532,10,5,10,10_0,10_4,10_0_1 -10520,2,75.0,0.0,6,111,400.0,0.0,0.0,0,74,0.0,0.0,552.8696910303722,400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,112287,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,933.134598696034,400.0,21827.186689735212,0,5,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018325769861496175,21827.186689735212,6,3,6,6_0,6_4,6_0_0 -10521,2,45.0,0.0,2,111,360.0,200.0,0.0,0,46,0.0,0.0,497.582721927335,560.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,2,35.0,2,,2,132631,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,904.120972674854,360.0,28236.932740153454,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01983218238161078,18824.62182676897,5,3,5,5_0,5_4,5_0_1 -10522,2,63.0,0.0,6,111,710.0,0.0,0.0,46,33,0.0,0.0,981.3437015789107,710.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,4,109938,2,1,0,0,1,,0.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,952.018469270462,710.0,62578.30018627894,4,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011345785965526692,41718.866790852626,9,5,9,9_0,9_4,9_0_0 -10523,2,51.0,0.0,6,111,1485.0,0.0,0.0,0,38,0.0,0.0,2052.528727950257,1485.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,111422,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1072.16382849311,1485.0,7158.203264597558,0,4,0,1,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2074542933621889,7158.203264597558,1,1,1_0,1_0_0,1_4_0,1_0_0 -10524,2,60.0,0.0,2,111,300.0,90.0,0.0,0,53,0.0,0.0,414.65226827277917,390.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,132122,2,2,0,1,1,600.0,0.0,299.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1048.28032532785,300.0,15012.0,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02597921662669864,15012.0,3,2,3_0,3_0_0,3_4_0,3_0_1 -10525,2,39.0,0.0,2,111,240.0,80.0,0.0,0,53,0.0,0.0,331.72181461822333,320.0,0.0,145.09223206779592,44,0,0,0,0,0,0,0,0,2,30.0,2,,2,103497,2,2,0,1,1,600.0,0.0,345.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1048.28032532785,240.0,17480.115247948906,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01830651545833191,17480.115247948906,4,2,4_0,4_0_0,4_4_0,4_0_1 -10526,2,47.0,0.0,2,111,200.0,100.0,0.0,85,62,0.0,0.0,276.4348455151861,300.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,101304,2,2,0,1,1,732.0,0.0,400.0,42,1.0,0.0,3.0,3.0,1.8,2,2,773.067912171653,200.0,23098.62873629562,6,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01298778396869076,12832.571520164234,2,1,2_0,2_0_0,2_4_0,2_0_1 -10527,2,58.0,0.0,2,111,585.0,1100.0,0.0,52,21,0.0,0.0,808.5719231319193,1685.0,0.0,1995.0181909321939,41,2,2,2,1,1,2,2,2,0,,1,,2,100637,2,2,3,0,1,,595.0,,43,3.0,0.0,4.0,5.0,2.8,2,2,1009.92974794527,585.0,26017.881921981963,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.06476315039989396,9292.10068642213,1,1,1_0,1_1_0,1_4_0,1_0_1 -10528,2,29.0,0.0,2,111,242.0,217.0,0.0,0,38,0.0,0.0,334.4861630733752,459.0,0.0,393.56267948389643,50,2,2,2,2,1,1,2,2,3,50.0,2,,2,102968,2,3,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1049.66303460666,242.0,20738.275031310324,0,1,1,2,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.022132988366053055,20738.275031310324,5,3,5,5_0,5_4,5_0_1 -10529,1,23.0,380.0,2,111,480.0,360.0,0.0,0,55,0.0,0.0,663.4436292364467,840.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,2,,2,110429,2,3,0,1,1,804.0,0.0,735.0,22,2.0,1.0,3.0,3.0,2.0,5,3,1124.94729815231,480.0,13370.815604823785,0,4,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06282339274030176,6685.407802411893,1,1,1_1,1_0_1,1_4_1,1_0_1 -10530,2,74.0,0.0,2,111,140.0,240.0,0.0,0,77,0.0,0.0,193.50439186063028,380.0,0.0,435.27669620338776,20,0,0,0,0,0,0,0,0,0,,2,,2,105290,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1019.68872296547,140.0,30809.285994112422,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012333943736074151,30809.285994112422,8,4,8,8_0,8_4,8_0_1 -10531,2,86.0,0.0,2,111,520.0,460.0,0.0,77,77,0.0,0.0,718.7305983394839,980.0,0.0,834.2803343898265,50,0,0,0,0,0,0,0,0,0,,2,,2,106372,2,2,0,3,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,905.423659492701,520.0,26208.076233984288,5,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03739305362402845,17472.05082265619,4,2,4_0,4_0_0,4_4_0,4_0_1 -10532,2,61.0,0.0,1,111,360.0,500.0,0.0,68,78,0.0,0.0,497.582721927335,860.0,0.0,906.8264504237244,20,0,0,0,0,0,0,0,0,0,,1,,1,126830,2,2,3,0,1,,128.0,,42,1.0,1.0,5.0,3.0,2.0,2,2,723.079421503785,360.0,39605.05709532353,1,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021714398692321207,19802.528547661765,5,3,5,5_1,5_4,5_1_0 -10533,2,60.0,0.0,1,111,410.0,90.0,0.0,52,34,3733.962192545002,0.0,566.6914333061316,3000.0,0.0,163.2287610762704,31,0,0,0,0,0,0,0,0,1,30.0,1,,1,120276,1,1,1,0,2,,230.0,,43,2.0,2.0,6.0,2.0,1.5,3,2,232.972491385309,410.0,58764.5359900975,1,1,0,1,100.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051051198643098865,39176.35732673167,9,5,9,9_1,9_4,9_1_0 -10534,1,59.0,229.0,1,111,250.0,0.0,0.0,0,46,0.0,0.0,345.54355689398267,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,132438,2,1,0,1,1,681.0,0.0,216.0,11,0.0,0.0,2.0,1.0,1.0,2,2,234.402156023275,250.0,11126.246102377707,0,7,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.022469393333531817,11126.246102377707,2,1,2_1,2_0_1,2_4_1,2_1_0 -10535,2,51.0,0.0,1,111,270.0,90.0,0.0,90,52,0.0,0.0,373.1870414455012,360.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,102640,1,3,0,1,1,612.0,0.0,201.0,43,2.0,0.0,3.0,4.0,2.5,1,1,168.306182595765,270.0,49777.37237224978,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00723220175841775,19910.948948899913,5,3,5,5_0,5_4,5_1_0 -10536,1,62.0,149.0,2,111,1320.0,0.0,0.0,85,78,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102429,2,2,0,1,1,1480.0,0.0,571.0,41,1.0,0.0,8.0,8.0,4.3,2,2,920.92218223856,1320.0,41570.35209911392,6,5,2,3,126.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031753399558723874,9667.523743979982,1,1,1_1,1_0_1,1_4_1,1_0_1 -10537,2,93.0,0.0,1,111,150.0,240.0,0.0,0,75,861.7984740393864,0.0,207.32613413638958,967.0,0.0,435.27669620338776,70,0,0,0,0,0,0,0,0,0,,2,,1,101972,2,1,0,1,2,561.0,0.0,261.0,11,0.0,6.0,2.0,1.0,1.0,2,2,1049.66303460666,150.0,21296.309009117085,0,5,2,3,48.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04540692941607962,21296.309009117085,6,3,6,6_0,6_4,6_1_0 -10538,1,69.0,48.0,1,111,550.0,115.0,0.0,0,77,0.0,0.0,760.1958251667618,665.0,0.0,208.57008359745663,43,0,0,0,0,0,0,0,0,0,,2,,1,132516,2,1,0,1,2,665.0,0.0,309.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1049.66303460666,550.0,15604.630699454261,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0426155551392355,15604.630699454261,3,2,3_1,3_0_1,3_4_1,3_1_0 -10539,2,85.0,0.0,2,111,327.0,786.0,0.0,0,75,0.0,0.0,451.9709724173293,1113.0,0.0,1425.5311800660947,41,0,0,0,0,0,0,0,0,0,,2,,2,119732,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1019.68872296547,327.0,64619.88924784665,0,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01722379925058582,64619.88924784665,10,5,10,10_0,10_4,10_0_1 -10540,2,80.0,0.0,2,111,350.0,0.0,0.0,90,74,0.0,297.0945088831844,483.76097965157567,637.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114157,2,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,956.262219854342,350.0,111518.06590455826,5,5,0,1,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005712078978711582,74345.37726970551,10,5,10,10_0,10_4,10_0_1 -10541,2,53.0,0.0,2,111,828.0,0.0,0.0,52,67,1224.7395991547605,0.0,1144.4402604328704,1648.0,0.0,0.0,70,2,2,2,1,1,2,2,2,2,45.0,2,,2,102904,1,2,0,1,1,820.0,0.0,349.0,43,2.0,1.0,4.0,2.0,1.5,1,1,261.968035419234,828.0,82120.76454369327,1,1,2,3,62.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02006800605373277,54747.176362462174,10,5,10,10_0,10_4,10_0_1 -10542,2,57.0,0.0,1,111,1030.0,0.0,0.0,85,43,0.0,0.0,1423.6394544032084,1030.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,1,111056,2,1,0,0,1,,430.0,,42,1.0,2.0,2.0,5.0,2.4,2,2,199.168682226987,1030.0,63561.8676293002,6,1,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016204684324366826,26484.111512208416,7,4,7,7_0,7_4,7_1_0 -10543,2,55.0,0.0,2,111,1080.0,0.0,0.0,85,21,1254.6112966951205,0.0,1492.748165782005,1920.0,0.0,0.0,70,2,1,2,1,1,2,2,2,0,,2,,2,116323,2,3,0,1,1,948.0,0.0,362.0,42,1.0,0.0,4.0,2.0,1.5,1,1,248.040811792738,1080.0,5163.044859879203,6,1,2,3,72.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.37187358469802667,3442.029906586135,1,1,1_0,1_0_0,1_4_0,1_0_1 -10544,2,74.0,0.0,2,111,240.0,265.0,0.0,0,77,0.0,0.0,331.72181461822333,505.0,0.0,480.618018724574,50,2,1,2,1,1,2,2,2,0,,2,,2,114198,1,2,0,1,1,683.0,0.0,311.0,11,0.0,1.0,3.0,1.0,1.0,4,4,279.343725965772,240.0,23603.8736867539,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021394793358998423,23603.8736867539,6,3,6,6_0,6_4,6_0_1 -10545,2,25.0,0.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1059.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,132900,2,1,0,0,1,,0.0,840.0,22,2.0,0.0,3.0,2.0,1.5,1,1,932.37802129525,0.0,39955.811727025364,0,1,2,3,47.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026504279458392586,26637.20781801691,7,4,7,7_0,7_4,7_1_0 -10546,2,61.0,0.0,5,111,204.0,396.0,0.0,0,21,0.0,0.0,281.96354242548983,600.0,0.0,718.2065487355898,50,0,0,0,0,0,0,0,0,0,,2,,3,117081,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1221.12956808348,204.0,45170.48412109425,0,1,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013283010170789932,45170.48412109425,10,5,10,10_0,10_4,10_0_0 -10547,2,46.0,0.0,9,111,306.0,430.0,0.0,0,53,0.0,0.0,422.9453136382348,736.0,0.0,779.870747364403,20,0,0,0,0,0,0,0,0,3,50.0,2,2007.0,6,124507,2,1,0,0,1,,0.0,447.0,32,3.0,0.0,3.0,5.0,2.8,2,2,1147.75092414895,306.0,41618.90345144889,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01768427178430088,14863.894089803176,3,2,3_0,3_0_0,3_4_0,3_0_0 -10548,2,45.0,0.0,2,111,0.0,0.0,0.0,55,47,0.0,0.0,0.0,1851.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,124166,2,1,2,0,1,1305.0,0.0,700.0,43,2.0,0.0,6.0,6.0,3.0999999999999996,2,2,1319.8965799632,0.0,47176.83933966789,1,1,2,3,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039235354167603514,15218.33527086061,3,2,3_0,3_1_0,3_4_0,3_0_1 -10549,2,40.0,0.0,2,111,550.0,360.0,0.0,85,67,0.0,0.0,760.1958251667618,910.0,0.0,652.9150443050816,71,2,2,2,1,1,2,2,2,3,35.0,2,,2,126070,2,3,0,0,2,,0.0,423.0,42,1.0,0.0,1.0,2.0,1.5,3,1,1267.45789389478,550.0,15937.924386888697,7,1,3,4,18.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.05709651883833818,10625.282924592464,2,1,2_0,2_0_0,2_4_0,2_0_1 -10550,2,61.0,0.0,1,111,483.0,0.0,0.0,0,74,0.0,0.0,667.5901519191744,861.0,0.0,0.0,50,1,2,2,1,2,2,2,2,0,,2,,1,123177,2,3,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,727.644906334002,483.0,59931.519162357916,0,5,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.014366397048396215,59931.519162357916,10,5,10,10_0,10_4,10_1_0 -10551,2,73.0,0.0,5,111,300.0,1000.0,0.0,77,72,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,0,,2,,3,104813,2,1,0,0,1,,200.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,916.651733815657,300.0,36233.26801070466,5,5,0,1,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.035878629540562874,24155.51200713644,6,3,6,6_0,6_4,6_0_0 -10552,2,69.0,0.0,1,111,292.0,1463.0,0.0,0,75,0.0,0.0,403.5948744521717,1755.0,0.0,2653.374193939818,42,0,0,0,0,0,0,0,0,0,,1,,1,116512,2,1,1,0,1,,176.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,836.401820208227,292.0,32201.7633011758,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054500121114048394,32201.7633011758,8,4,8,8_1,8_4,8_1_0 -10553,2,37.0,0.0,1,111,1150.0,0.0,0.0,55,55,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,109848,2,1,3,0,1,,480.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1528.66177355631,1150.0,56127.17242372471,1,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02048918465584238,31181.762457624838,8,4,8,8_1,8_4,8_1_0 -10554,2,41.0,0.0,7,111,627.48,1058.4,0.0,35,35,0.0,0.0,867.2866843193449,1686.0,0.0,1919.57023025694,70,0,0,0,0,0,0,0,0,2,45.0,1,,5,115389,2,1,1,0,1,,633.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,824.331026533281,627.48,134204.25233248016,1,1,0,1,176.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012562940225046459,55918.438471866735,10,5,10,10_1,10_4,10_0_0 -10555,2,55.0,0.0,1,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1537.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,1,,1,128081,2,3,2,0,1,,240.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,985.607491018309,0.0,20518.801900880615,0,1,1,2,75.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.07490690769493885,20518.801900880615,5,3,5,5_1,5_4,5_1_0 -10556,2,38.0,0.0,8,111,2000.0,0.0,0.0,46,33,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,121006,1,2,1,0,1,,0.0,1520.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1035.81985998659,2000.0,89892.58417045673,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022248776341856482,49940.324539142624,10,5,10,10_1,10_4,10_0_0 -10557,2,29.0,0.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,323.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,130133,1,2,0,0,2,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1214.23376107196,0.0,11526.498865602383,0,4,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02802238596178613,11526.498865602383,2,1,2_0,2_0_0,2_4_0,2_1_0 -10558,2,61.0,0.0,7,111,150.0,400.0,0.0,0,53,0.0,0.0,207.32613413638958,550.0,0.0,725.4611603389795,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,100707,2,1,0,0,1,,0.0,438.0,12,1.0,0.0,1.0,1.0,1.0,1,1,904.612833426347,150.0,23817.40794715316,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023092353341738862,23817.40794715316,6,3,6,6_0,6_4,6_0_0 -10559,2,27.0,0.0,9,111,770.0,0.0,0.0,0,43,0.0,0.0,1064.2741552334664,770.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,2006.0,6,100917,2,1,0,0,1,,0.0,1003.0,22,2.0,0.0,3.0,2.0,1.5,1,1,1693.49934798246,770.0,41835.08504177766,0,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018405603794782704,27890.05669451844,7,4,7,7_0,7_4,7_0_0 -10560,2,60.0,0.0,6,111,600.0,1400.0,0.0,75,22,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,42,0,0,0,0,0,0,0,0,2,20.0,2,,4,127631,2,2,0,0,1,,0.0,,42,2.0,0.0,3.0,3.0,2.0,2,2,856.82519624682,600.0,116154.24485462223,5,1,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017218483943511362,58077.122427311115,10,5,10,10_0,10_4,10_0_0 -10561,2,51.0,0.0,1,111,600.0,180.0,0.0,56,21,0.0,0.0,829.3045365455583,780.0,0.0,326.4575221525408,70,0,0,0,0,0,0,0,0,0,,2,,1,110371,1,2,0,1,2,563.0,0.0,920.0,43,4.0,0.0,3.0,5.0,2.8,2,2,822.354709661823,600.0,40480.85155507733,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019268369365667854,14457.44698395619,3,2,3_0,3_0_0,3_4_0,3_1_0 -10562,2,55.0,0.0,2,111,780.0,0.0,0.0,33,48,1493.5848770180007,51.75862524097289,1078.0958975092258,1830.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,,2,108234,2,1,2,0,1,,342.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,1206.756619116,780.0,104063.26125257942,1,1,0,1,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017585456941987196,52031.63062628971,10,5,10,10_1,10_4,10_0_1 -10563,2,62.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,585.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,116363,1,3,0,1,1,468.0,0.0,480.0,12,1.0,1.0,3.0,1.0,1.0,3,3,1076.15021790382,0.0,12219.551688953386,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.047874096766483396,12219.551688953386,2,1,2_0,2_0_0,2_4_0,2_0_1 -10564,2,56.0,0.0,5,111,1200.0,1900.0,0.0,56,21,0.0,51.75862524097289,1658.6090730911167,3150.0,0.0,3445.940511610153,70,0,0,0,0,0,0,0,0,2,60.0,1,,3,100873,2,2,2,0,1,,800.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,1010.60105948277,1200.0,71128.9874325508,1,1,0,1,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044285742194587516,28451.59497302032,8,4,8,8_1,8_4,8_0_0 -10565,2,66.0,0.0,5,111,312.0,32.0,0.0,0,46,0.0,0.0,431.23835900369033,344.0,0.0,58.036892827118365,71,2,2,2,1,1,2,2,2,2,1.0,2,,3,115293,1,3,0,1,1,756.0,0.0,389.0,12,1.0,2.0,4.0,1.0,1.0,5,4,986.073750388706,312.0,23348.518244256742,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.014733268998113702,23348.518244256742,6,3,6,6_0,6_4,6_0_0 -10566,2,39.0,0.0,5,111,1600.0,0.0,0.0,42,34,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,50.0,1,,3,108829,1,1,3,0,1,,592.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,959.433687827371,1600.0,55877.816515387414,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028633903394550114,31043.231397437452,8,4,8,8_1,8_4,8_0_0 -10567,2,29.0,0.0,1,111,240.0,0.0,0.0,0,38,0.0,0.0,331.72181461822333,240.0,0.0,0.0,42,2,2,2,1,1,2,2,2,3,45.0,2,,1,115114,1,1,0,1,1,564.0,0.0,792.0,22,2.0,0.0,3.0,2.0,1.5,2,1,1205.53190254246,240.0,40153.57264290471,0,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.005977052207393279,26769.048428603142,7,4,7,7_0,7_4,7_1_0 -10568,2,47.0,0.0,5,111,250.0,0.0,0.0,0,42,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,1,2,2,2,2,2,2,1,0,,2,,3,102732,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,928.947427962521,250.0,36354.41273968425,0,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0068767442838404465,36354.41273968425,9,5,9,9_0,9_4,9_0_0 -10569,2,74.0,0.0,2,111,1316.0,0.0,0.0,74,74,0.0,0.0,1818.9412834899247,1316.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,107444,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,971.214883243586,1316.0,88758.49823489657,5,5,0,1,109.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014826749282274329,59172.33215659772,10,5,10,10_0,10_4,10_0_1 -10570,2,29.0,0.0,6,111,593.0,0.0,0.0,0,43,0.0,0.0,819.6293169525268,593.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,,4,103485,2,1,0,0,1,,0.0,200.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1382.53695928334,593.0,29482.52054453184,0,1,3,4,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020113612711786424,29482.52054453184,8,4,8,8_0,8_4,8_0_0 -10571,2,26.0,0.0,2,111,0.0,0.0,0.0,53,52,0.0,0.0,0.0,1139.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,131405,2,2,0,0,1,,0.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,1147.60043078194,0.0,28732.23491473231,3,1,0,1,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03964188666075479,14366.117457366156,3,2,3_0,3_0_0,3_4_0,3_0_1 -10572,2,38.0,0.0,2,111,264.0,336.0,0.0,0,65,0.0,0.0,364.89399608004567,600.0,0.0,609.3873746847428,33,1,2,2,2,1,2,2,2,3,16.0,2,,2,101249,2,1,0,1,1,576.0,0.0,293.0,12,1.0,0.0,2.0,1.0,1.0,2,2,917.541231833613,264.0,28293.764635007847,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021206085783919353,28293.764635007847,8,4,8,8_0,8_4,8_0_1 -10573,2,42.0,0.0,2,111,188.0,0.0,0.0,0,62,0.0,0.0,259.84875478427494,370.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115804,2,1,0,1,1,564.0,0.0,293.0,22,1.0,1.0,2.0,2.0,1.5,1,1,931.901023798289,188.0,25151.916924001514,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014710608384958648,16767.94461600101,4,2,4_0,4_0_0,4_4_0,4_0_1 -10574,2,42.0,0.0,2,111,15.0,20.0,0.0,0,43,0.0,0.0,20.73261341363896,35.0,0.0,36.27305801694898,31,1,2,2,2,1,1,2,2,3,30.0,2,,2,129635,2,2,0,1,1,389.0,0.0,281.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1049.50754812339,15.0,19641.70210637212,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0017819229621981374,19641.70210637212,5,3,5,5_0,5_4,5_0_1 -10575,2,31.0,0.0,1,111,0.0,0.0,0.0,35,35,0.0,0.0,0.0,678.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,124096,1,2,0,1,2,,0.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,1102.94116180371,0.0,17885.89962344946,4,1,1,2,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0379069554382997,11923.93308229964,2,1,2_0,2_0_0,2_4_0,2_1_0 -10576,1,46.0,420.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,192.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120958,2,1,0,1,1,523.0,366.0,690.0,32,1.0,2.0,2.0,2.0,1.5,5,4,1141.34804381641,0.0,15003.892635225162,0,1,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01279667914639931,10002.595090150107,2,1,2_1,2_0_1,2_4_1,2_0_1 -10577,2,62.0,0.0,2,111,400.0,0.0,0.0,0,35,1732.5584573408808,0.0,552.8696910303722,1560.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,113775,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1242.1330644439,400.0,30270.263476547225,0,1,0,1,48.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05153572585216035,30270.263476547225,8,4,8,8_0,8_4,8_0_1 -10578,2,61.0,0.0,2,111,280.0,0.0,0.0,0,55,0.0,0.0,387.00878372126056,1290.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,35.0,2,,2,132258,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1076.87151312662,280.0,11272.735685995505,0,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11443539846344573,11272.735685995505,2,1,2_0,2_0_0,2_4_0,2_0_1 -10579,2,69.0,0.0,2,111,2200.0,0.0,0.0,0,75,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,116772,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,884.595329241254,2200.0,31213.651252923344,0,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07048198181537499,31213.651252923344,8,4,8,8_0,8_4,8_0_1 -10580,2,61.0,0.0,2,111,435.0,0.0,0.0,74,33,0.0,0.0,601.2457889955298,435.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,60.0,2,,2,125367,2,1,0,1,2,,0.0,,42,1.0,2.0,4.0,3.0,2.0,3,3,860.111487158347,435.0,169648.61608332256,5,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0025641234808915308,84824.30804166128,10,5,10,10_0,10_4,10_0_1 -10581,2,53.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,885.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,107832,2,3,0,1,2,,0.0,420.0,32,1.0,1.0,1.0,3.0,2.0,2,2,874.69476463484,0.0,17531.640596829522,0,1,3,4,26.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05048015872285485,8765.820298414761,1,1,1_0,1_0_0,1_4_0,1_0_1 -10582,2,25.0,0.0,7,111,300.0,0.0,0.0,0,38,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,2,1,2,2,1,2,2,2,2,20.0,2,,5,117197,1,2,0,1,1,182.0,0.0,613.0,12,1.0,0.0,1.0,1.0,1.0,1,1,851.489488213073,300.0,33092.66504109121,0,1,2,3,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009065453012850114,33092.66504109121,8,4,8,8_0,8_4,8_0_0 -10583,2,35.0,0.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,899.0,0.0,0.0,33,2,2,2,1,1,2,2,2,2,25.0,2,,2,127220,1,3,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1434.20712534423,0.0,36360.63806362971,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.024724538618568374,36360.63806362971,9,5,9,9_0,9_4,9_0_1 -10584,2,37.0,0.0,7,111,210.0,300.0,0.0,0,37,0.0,0.0,290.25658779094545,510.0,0.0,544.0958702542347,43,1,2,2,2,1,2,2,2,3,45.0,2,,5,126210,2,1,0,1,1,250.0,0.0,543.0,12,1.0,0.0,1.0,1.0,1.0,2,2,851.489488213073,210.0,34706.97117914084,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014694454245737064,34706.97117914084,9,5,9,9_0,9_4,9_0_0 -10585,2,38.0,0.0,7,111,1000.0,1500.0,0.0,22,38,0.0,0.0,1382.1742275759307,2500.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,3,90.0,2,,5,111797,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,771.043727758353,1000.0,87281.01249719904,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028643114103198884,48489.4513873328,10,5,10,10_0,10_4,10_0_0 -10586,2,26.0,0.0,7,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,236.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,5,120538,2,1,0,1,1,382.0,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,926.159345053431,0.0,17070.025661892563,0,1,2,3,37.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013825403937549474,17070.025661892563,4,2,4_0,4_0_0,4_4_0,4_0_0 -10587,2,30.0,0.0,2,111,408.0,84.0,0.0,46,46,0.0,0.0,563.9270848509797,492.0,0.0,152.3468436711857,31,2,1,2,2,1,2,2,2,0,,2,,2,110878,2,1,0,1,1,,147.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,747.475118680537,408.0,91961.05038732111,1,1,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005350091130188235,38317.10432805047,9,5,9,9_0,9_4,9_0_1 -10589,2,36.0,0.0,1,111,700.0,1200.0,0.0,33,53,0.0,0.0,967.5219593031513,1900.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,3,40.0,1,,1,128088,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,699.365274606927,700.0,103890.55112794126,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018288477434874217,43287.729636642194,9,5,9,9_1,9_4,9_1_0 -10590,2,44.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,2878.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,15.0,1,,1,103884,2,3,1,0,1,,382.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1342.31685827342,0.0,22356.804699110085,0,1,0,1,100.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12873038158778383,22356.804699110085,6,3,6,6_1,6_4,6_1_0 -10591,2,61.0,0.0,6,111,360.0,325.0,0.0,0,52,0.0,0.0,497.582721927335,685.0,0.0,589.4371927754208,31,0,0,0,0,0,0,0,0,0,,2,,4,126720,2,1,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,2,1,934.340664986427,360.0,16642.973509341853,0,1,0,1,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0411585105038774,16642.973509341853,4,2,4_0,4_0_0,4_4_0,4_0_0 -10592,2,61.0,0.0,2,111,300.0,120.0,0.0,53,67,0.0,0.0,414.65226827277917,420.0,0.0,217.63834810169388,50,1,2,2,2,1,2,2,2,2,15.0,2,,2,109584,2,1,0,1,1,,0.0,,43,2.0,5.0,2.0,2.0,1.5,6,4,1141.34804381641,300.0,40381.45101038811,1,1,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010400814965563153,26920.96734025874,7,4,7,7_0,7_4,7_0_1 -10593,2,39.0,0.0,1,111,2029.0,0.0,0.0,85,53,0.0,0.0,2804.431507751563,2029.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,131731,2,1,1,0,1,,619.0,,42,1.0,0.0,3.0,3.0,1.8,3,2,810.550285524323,2029.0,41932.1258595254,6,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04838772083240535,23295.62547751411,6,3,6,6_1,6_4,6_1_0 -10594,1,46.0,437.0,2,111,1008.0,0.0,0.0,85,63,0.0,0.0,1393.231621396538,1008.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,128306,1,3,0,0,1,,0.0,751.0,42,1.0,3.0,3.0,4.0,2.1,2,2,1245.09533754967,1008.0,20966.66699128331,6,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.048076310861381366,9984.127138706337,2,1,2_1,2_0_1,2_4_1,2_0_1 -10595,2,35.0,0.0,2,111,2080.0,0.0,0.0,63,52,0.0,0.0,2874.9223933579356,2080.0,0.0,0.0,31,2,2,2,2,1,2,2,2,1,8.0,1,,2,110664,2,2,5,0,1,,0.0,1023.0,43,2.0,0.0,3.0,3.0,1.8,3,3,1074.34095143804,2080.0,44316.273206228325,1,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04693535465675555,24620.151781237957,7,4,7,7_1,7_4,7_0_1 -10596,2,49.0,0.0,2,111,600.0,900.0,0.0,56,21,0.0,0.0,829.3045365455583,1500.0,0.0,1632.287610762704,10,0,0,0,0,0,0,0,0,0,,1,,2,118892,2,2,1,0,1,,600.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,884.370313006666,600.0,42067.903483382106,4,1,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03565663785913501,28045.268988921405,8,4,8,8_1,8_4,8_0_1 -10597,2,49.0,0.0,2,111,177.0,60.0,0.0,0,56,896.1509262108004,0.0,244.64483828093972,837.0,0.0,108.81917405084694,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,129765,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1076.87151312662,177.0,26283.008830395338,0,1,0,1,45.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031845669017621765,26283.008830395338,7,4,7,7_0,7_4,7_0_1 -10598,2,67.0,0.0,2,111,247.0,0.0,0.0,0,75,627.3056483475602,0.0,341.39703421125483,667.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119365,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1019.53767656962,247.0,29420.41856962496,0,5,0,1,51.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022671329383758074,29420.41856962496,8,4,8,8_0,8_4,8_0_1 -10599,2,23.0,0.0,8,111,408.0,799.0,0.0,0,43,0.0,0.0,563.9270848509797,1207.0,0.0,1449.1086677771116,43,0,0,0,0,0,0,0,0,3,45.0,2,1999.0,6,119859,1,3,0,0,2,,0.0,1121.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1601.24317698173,408.0,33923.00716603124,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03558057203161599,26094.620896947104,7,4,7,7_0,7_4,7_0_0 -10600,2,76.0,0.0,1,111,600.0,1200.0,0.0,0,77,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,41,0,0,0,0,0,0,0,0,0,,2,,1,121377,2,1,0,0,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1212.41403536008,600.0,23007.889223126753,0,5,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07823403453241164,23007.889223126753,6,3,6,6_0,6_4,6_1_0 -10601,1,63.0,400.0,1,111,720.0,588.0,0.0,85,75,0.0,0.0,995.16544385467,1308.0,0.0,1066.4279056983,60,0,0,0,0,0,0,0,0,0,,2,,1,131265,2,2,0,1,1,770.0,0.0,650.0,41,0.0,4.0,4.0,4.0,2.1,2,2,816.963436796419,720.0,14774.277740240716,6,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08853224658403429,7035.370352495578,1,1,1_1,1_0_1,1_4_1,1_1_0 -10602,2,82.0,0.0,2,111,530.0,89.0,0.0,77,90,0.0,0.0,732.5523406152432,619.0,0.0,161.41510817542294,43,0,0,0,0,0,0,0,0,0,,2,,2,116467,2,1,0,1,1,818.0,0.0,304.0,41,0.0,0.0,3.0,2.0,1.5,4,3,1141.34804381641,530.0,30438.355917622317,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020336183783225603,20292.23727841488,5,3,5,5_0,5_4,5_0_1 -10603,2,41.0,0.0,2,111,600.0,617.0,0.0,84,54,0.0,0.0,829.3045365455583,1217.0,0.0,1119.023839822876,43,1,2,2,1,1,1,2,2,2,40.0,2,,2,128772,1,3,0,0,1,,0.0,453.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1022.80105660862,600.0,19389.807602196244,3,1,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06276493428754563,10772.11533455347,2,1,2_0,2_0_0,2_4_0,2_0_1 -10604,2,74.0,0.0,5,111,358.0,1008.0,0.0,0,33,0.0,0.0,494.8183734721831,1366.0,0.0,1828.1621240542286,71,2,2,2,2,1,2,2,2,2,5.0,2,,3,103292,1,3,0,0,1,,0.0,415.0,11,0.0,0.0,3.0,1.0,1.0,3,2,1248.06982093616,358.0,23810.032204837855,0,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.057370774984607055,23810.032204837855,6,3,6,6_0,6_4,6_0_0 -10605,1,56.0,200.0,2,111,0.0,0.0,1560.0,0,54,0.0,0.0,797.0248023465391,1560.0,0.0,1783.463408458105,60,2,1,2,1,1,1,2,2,3,75.0,2,,2,125165,2,2,0,0,1,,0.0,330.0,32,1.0,0.0,2.0,2.0,1.5,4,4,1096.23088993627,0.0,12871.11985477403,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.12120157512334719,8580.746569849352,1,1,1_1,1_0_1,1_4_1,1_0_1 -10606,2,85.0,0.0,2,111,465.0,108.0,0.0,0,77,0.0,0.0,642.7110158228077,573.0,0.0,195.8745132915245,50,0,0,0,0,0,0,0,0,0,,2,,2,127889,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1076.6601182332,465.0,23143.2869463165,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024758799444916317,23143.2869463165,6,3,6,6_0,6_4,6_0_1 -10607,1,37.0,250.0,1,111,331.0,450.0,0.0,0,34,0.0,0.0,457.499669327633,781.0,0.0,816.143805381352,50,1,2,2,1,1,2,2,2,1,10.0,1,,1,118962,2,1,2,0,1,,212.0,,32,1.0,0.0,3.0,3.0,1.8,4,3,725.514509662628,331.0,27325.280527813862,0,1,1,2,66.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,1,0.028581591292540825,15180.711404341035,3,2,3_1,3_1_1,3_4_1,3_1_0 -10608,2,31.0,0.0,7,111,376.0,806.0,0.0,47,46,0.0,0.0,519.6975095685499,1182.0,0.0,1461.8042380830439,30,1,2,2,1,1,1,1,2,3,45.0,2,,5,106554,2,2,0,0,1,,0.0,724.0,43,2.0,0.0,3.0,3.0,1.8,4,4,1022.80105660862,376.0,48616.854792155646,1,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02431255590377509,27009.363773419802,7,4,7,7_0,7_4,7_0_0 -10609,2,38.0,0.0,1,111,1000.0,0.0,0.0,33,54,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,124837,2,3,0,0,1,,0.0,874.0,43,2.0,0.0,3.0,4.0,2.1,1,1,939.347052266033,1000.0,40027.986066864614,1,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024982520937464937,19060.945746126006,5,3,5,5_0,5_4,5_1_0 -10610,2,42.0,0.0,1,111,2250.0,0.0,0.0,37,21,0.0,414.0690019277831,3109.892012045844,4047.0,0.0,0.0,50,2,2,1,2,1,1,2,2,2,15.0,1,,1,131095,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,894.807899096945,2250.0,225735.74512291714,4,1,0,1,144.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.01792804235676692,94056.56046788214,10,5,10,10_1,10_4,10_1_0 -10611,2,42.0,0.0,2,111,870.0,0.0,0.0,90,37,0.0,0.0,1202.4915779910596,870.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,30.0,2,,2,129044,2,1,0,1,2,,0.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,787.538619621345,870.0,93841.9076419508,1,1,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009270911278993202,44686.62268664324,10,5,10,10_0,10_4,10_0_1 -10612,2,66.0,0.0,2,111,120.0,84.0,0.0,0,72,0.0,0.0,165.86090730911167,204.0,0.0,152.3468436711857,31,2,2,2,2,1,1,2,2,0,,2,,2,111089,1,1,0,1,2,852.0,0.0,389.0,21,1.0,1.0,6.0,2.0,1.5,2,2,1174.08901132086,120.0,28629.1714442953,0,5,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.007125599160175814,19086.11429619687,5,3,5,5_0,5_4,5_0_1 -10613,2,48.0,0.0,8,111,1280.0,0.0,0.0,46,37,0.0,0.0,1769.1830112971911,1280.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,2001.0,6,122517,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,714.921775211029,1280.0,82507.489426442,1,1,0,1,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015513743163172599,35872.82148975739,9,5,9,9_0,9_4,9_0_0 -10614,2,32.0,0.0,8,111,1050.0,0.0,0.0,0,37,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,80.0,2,1999.0,6,124780,2,1,0,0,1,,0.0,790.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1064.0272721317,1050.0,38939.7175044521,0,1,2,3,39.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02696475648237433,38939.7175044521,9,5,9,9_0,9_4,9_0_0 -10615,2,34.0,0.0,8,111,942.0,0.0,0.0,46,48,0.0,0.0,1302.0081223765267,942.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,2,2001.0,6,102606,1,2,0,0,1,,0.0,910.0,43,2.0,0.0,2.0,2.0,1.5,4,3,847.409573853731,942.0,69405.24166331219,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013572461926862563,46270.161108874796,10,5,10,10_0,10_4,10_0_0 -10616,2,61.0,0.0,8,111,650.0,0.0,0.0,85,37,0.0,0.0,898.4132479243549,650.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,109880,2,1,0,0,1,,0.0,750.0,42,1.0,2.0,2.0,2.0,1.5,2,2,949.416822443866,650.0,88674.54944890892,6,4,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007330175388988095,59116.36629927261,10,5,10,10_0,10_4,10_0_0 -10617,2,68.0,0.0,8,111,1000.0,0.0,0.0,0,75,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2001.0,6,129411,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,6,6,802.937043136318,1000.0,49808.961909636775,0,5,0,1,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020076708320366045,49808.961909636775,10,5,10,10_0,10_4,10_0_0 -10618,2,39.0,0.0,2,111,425.0,0.0,0.0,0,46,1493.5848770180007,0.0,587.4240467197704,1425.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,15.0,2,,2,121410,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,884.493874043445,425.0,32142.872373225662,0,1,1,2,54.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04433331232671649,32142.872373225662,8,4,8,8_0,8_4,8_0_1 -10619,2,75.0,0.0,2,111,2400.0,0.0,0.0,86,74,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,104675,2,1,0,0,1,,0.0,1800.0,41,0.0,3.0,3.0,2.0,1.5,1,1,1019.70331713262,2400.0,84945.7682040612,6,5,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028253320332975194,56630.5121360408,10,5,10,10_0,10_4,10_0_1 -10620,2,77.0,0.0,2,111,220.0,0.0,0.0,0,72,0.0,0.0,304.0783300667047,220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130918,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,881.450191194227,220.0,2284.7374986876744,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0962911494761938,2284.7374986876744,1,1,1_0,1_0_0,1_4_0,1_0_1 -10621,2,52.0,0.0,1,111,1210.0,1175.0,0.0,34,38,0.0,0.0,1672.430815366876,2385.0,0.0,2131.0421584957526,20,2,2,2,2,1,2,2,2,3,35.0,1,,1,103099,1,2,1,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,853.67966471405,1210.0,86683.70755365634,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,0,0.02751382084717257,34673.48302146253,9,5,9,9_1,9_4,9_1_0 -10622,2,59.0,0.0,1,111,2160.0,0.0,0.0,75,46,0.0,0.0,2985.49633156401,2160.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,1,106800,2,1,0,0,1,,450.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,742.963061222672,2160.0,74134.02952888931,5,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02913641702368639,49422.68635259287,10,5,10,10_0,10_4,10_1_0 -10623,2,47.0,0.0,1,111,0.0,0.0,2496.0,55,43,0.0,0.0,1275.2396837544625,2496.0,0.0,2853.541453532968,10,2,2,2,2,1,2,2,2,2,30.0,1,,1,116872,2,2,3,0,1,,428.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,808.403474636392,0.0,52845.08672047072,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04723239481473154,22976.124661074227,6,3,6,6_1,6_4,6_1_0 -10624,2,85.0,0.0,1,111,245.0,1400.0,0.0,77,74,0.0,0.0,338.632685756103,1645.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,1,112972,2,1,2,0,1,,160.0,,41,0.0,2.0,3.0,2.0,1.5,4,3,927.515133794785,245.0,64273.897919917355,5,5,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025593593250709683,42849.265279944906,9,5,9,9_1,9_4,9_1_0 -10625,2,35.0,0.0,2,111,240.0,120.0,0.0,0,46,0.0,0.0,331.72181461822333,360.0,0.0,217.63834810169388,42,0,0,0,0,0,0,0,0,0,,2,,2,114481,2,1,0,1,1,400.0,0.0,305.0,12,1.0,0.0,2.0,1.0,1.0,1,1,295.014780867044,240.0,22792.307832926526,0,4,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01579480246752073,22792.307832926526,6,3,6,6_0,6_4,6_0_1 -10626,2,43.0,0.0,2,111,456.0,186.0,0.0,84,63,0.0,0.0,630.2714477746243,642.0,0.0,337.3394395576255,12,2,2,2,1,2,2,2,2,2,60.0,2,,2,133199,1,3,0,1,1,,0.0,,42,1.0,2.0,4.0,3.0,1.8,1,1,244.516979787768,456.0,35982.28436066468,3,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0178421134568606,19990.157978147043,5,3,5,5_0,5_4,5_0_1 -10627,2,47.0,0.0,2,111,0.0,0.0,1200.0,45,52,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,43,2,1,2,1,1,1,2,2,2,60.0,2,,2,130746,1,3,0,1,2,45.0,900.0,200.0,43,2.0,0.0,3.0,4.0,2.3,2,2,229.64702799312,0.0,43033.223223966066,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02788543153634134,18710.09705389829,5,3,5,5_0,5_4,5_0_1 -10628,1,32.0,180.0,5,111,360.0,0.0,0.0,0,56,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,3,112533,2,1,0,1,1,240.0,0.0,288.0,32,1.0,0.0,1.0,2.0,1.3,2,2,1019.01692858861,360.0,12856.929206842067,0,4,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.028000465290609126,9889.945543724667,2,1,2_1,2_0_1,2_4_1,2_0_0 -10629,1,74.0,109.0,2,111,351.0,936.0,0.0,0,78,0.0,0.0,485.1431538791516,1287.0,0.0,1697.5791151932121,43,0,0,0,0,0,0,0,0,0,,2,,2,110952,1,2,0,1,1,561.0,0.0,311.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1049.52828689735,351.0,12497.42403783955,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10298122205850077,12497.42403783955,2,1,2_1,2_0_1,2_4_1,2_0_1 -10630,2,59.0,0.0,5,111,3200.0,0.0,0.0,77,77,0.0,0.0,4422.957528242978,3200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,109235,2,1,2,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,534.254964445508,3200.0,53070.73756088126,7,5,0,1,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06029688199318975,35380.49170725417,9,5,9,9_1,9_4,9_0_0 -10631,2,70.0,0.0,2,111,1600.0,280.0,0.0,0,75,0.0,0.0,2211.478764121489,1880.0,0.0,507.8228122372857,31,0,0,0,0,0,0,0,0,0,,1,,2,133325,2,1,2,0,1,,250.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,734.932881653065,1600.0,28033.222872567683,0,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06706328446593636,28033.222872567683,7,4,7,7_1,7_4,7_0_1 -10632,2,77.0,0.0,2,111,1630.0,0.0,0.0,77,75,0.0,766.0276535663987,2252.943990948767,2370.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,120044,2,2,3,0,1,,319.0,,41,1.0,0.0,4.0,3.0,2.0,4,3,611.704862837311,1630.0,47125.426287438706,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05029132225869592,23562.713143719353,6,3,6,6_1,6_4,6_0_1 -10633,2,67.0,0.0,2,111,1600.0,0.0,0.0,75,74,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126741,2,2,1,0,1,,450.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,620.27020210439,1600.0,85079.7614303641,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0188058825401099,56719.840953576066,10,5,10,10_1,10_4,10_0_1 -10634,2,69.0,0.0,5,111,820.0,1000.0,0.0,77,75,0.0,0.0,1133.3828666122631,1820.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,3,132043,2,2,3,0,1,,480.0,,41,0.0,0.0,6.0,2.0,1.5,2,1,674.970483037302,820.0,45729.728291071915,5,5,0,1,113.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039799055625601196,30486.485527381275,8,4,8,8_1,8_4,8_0_0 -10635,2,34.0,0.0,5,111,1200.0,0.0,0.0,47,43,0.0,434.77245202417225,1658.6090730911167,1620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109106,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,545.114332736856,1200.0,66524.24513222935,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024352023788920082,36957.91396234964,9,5,9,9_1,9_4,9_0_0 -10636,2,78.0,0.0,2,111,192.0,1500.0,0.0,74,77,0.0,0.0,265.37745169457867,1692.0,0.0,2720.4793512711735,50,2,2,1,2,2,2,1,2,0,,1,,2,130461,2,2,5,0,1,,350.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,826.063633469024,192.0,27932.38343603102,5,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06057485226332051,18621.588957354015,4,2,4_0,4_1_0,4_4_0,4_0_1 -10637,2,45.0,0.0,2,111,226.0,104.0,0.0,0,42,0.0,0.0,312.37137543216033,330.0,0.0,188.6199016881347,31,1,2,2,1,2,2,2,2,3,60.0,2,,2,120494,1,2,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,1202.63820855859,226.0,28971.336847616443,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011390568607024776,19314.224565077628,5,3,5,5_0,5_4,5_0_1 -10638,2,58.0,0.0,7,111,2000.0,0.0,0.0,75,75,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,109713,2,2,2,0,1,,203.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,617.359169735316,2000.0,43626.84552593469,5,5,0,1,112.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04584333283530819,29084.563683956458,8,4,8,8_1,8_4,8_0_0 -10639,2,46.0,0.0,7,111,420.0,0.0,0.0,0,37,0.0,0.0,580.5131755818909,420.0,0.0,0.0,31,2,2,2,1,2,2,2,2,2,15.0,2,,5,105895,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,2,1778.28472091376,420.0,44750.61970940869,0,1,0,1,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.009385344889686438,44750.61970940869,10,5,10,10_0,10_4,10_0_0 -10640,2,61.0,0.0,6,111,1594.0,0.0,0.0,22,22,0.0,0.0,2203.185718756033,1594.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,75.0,1,,4,129340,2,2,2,0,1,,430.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,652.577207338957,1594.0,422464.00225545885,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003773102540074237,281642.6681703059,10,5,10,10_1,10_4,10_0_0 -10641,1,43.0,200.0,5,111,0.0,900.0,0.0,85,54,0.0,0.0,0.0,2219.0,0.0,1632.287610762704,31,2,2,2,1,2,2,2,2,2,30.0,2,,3,120979,1,2,0,0,1,,570.0,500.0,42,1.0,0.0,4.0,5.0,2.4,1,1,1462.37106187823,0.0,38056.308417817105,7,1,2,3,80.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.058308335523187906,15856.795174090461,3,2,3_1,3_0_1,3_4_1,3_0_0 -10642,2,62.0,0.0,5,111,1460.0,60.0,0.0,77,74,0.0,0.0,2017.9743722608587,1520.0,0.0,108.81917405084694,20,0,0,0,0,0,0,0,0,0,,1,,3,131087,2,1,2,0,1,,348.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,669.922128012359,1460.0,62070.212964341525,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024488396726997198,41380.141976227686,9,5,9,9_1,9_4,9_0_0 -10643,2,62.0,0.0,7,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,100254,2,1,2,0,1,,400.0,,11,0.0,3.0,8.0,1.0,1.0,2,2,565.5332373532,0.0,48403.669338786545,0,5,0,1,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04131918152736763,48403.669338786545,10,5,10,10_1,10_4,10_0_0 -10644,2,77.0,0.0,7,111,1500.0,0.0,0.0,78,77,0.0,0.0,2073.261341363896,1828.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,115792,2,1,1,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,530.80664933234,1500.0,57537.8472819407,5,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031770392643343665,38358.56485462713,9,5,9,9_1,9_4,9_0_0 -10645,2,60.0,0.0,7,111,500.0,100.0,0.0,77,43,2240.377315527001,0.0,691.0871137879653,2100.0,0.0,181.36529008474488,41,0,0,0,0,0,0,0,0,1,10.0,1,,5,132363,2,1,2,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,549.021351757336,500.0,65910.69543539571,5,1,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03186129331708199,43940.46362359714,10,5,10,10_1,10_4,10_0_0 -10646,2,47.0,0.0,7,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,1561.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,50.0,1,,5,127548,2,1,1,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,476.77119168513,0.0,72898.38009149546,1,1,1,2,136.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021413370201652956,34713.51432928355,9,5,9,9_1,9_4,9_0_0 -10647,2,57.0,0.0,6,111,1300.0,670.0,0.0,62,33,0.0,0.0,1796.8264958487098,1970.0,0.0,1215.1474435677908,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,120002,2,2,3,0,2,,610.0,,43,4.0,1.0,4.0,4.0,2.5,2,2,660.979312882483,1300.0,27911.889710577765,4,1,0,1,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07057924133504402,11164.755884231106,2,1,2_0,2_1_0,2_4_0,2_0_0 -10648,2,54.0,0.0,7,111,1080.0,0.0,0.0,43,48,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,35.0,2,,5,131219,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1000.51506861151,1080.0,61214.20286025874,1,1,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017642964369975544,40809.46857350582,9,5,9,9_0,9_4,9_0_0 -10649,2,49.0,0.0,2,111,1250.0,0.0,0.0,0,37,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127393,2,2,0,0,2,,601.0,950.0,12,1.0,1.0,1.0,1.0,1.0,5,2,1634.91385688133,1250.0,72462.37667205384,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01725033123957802,72462.37667205384,10,5,10,10_0,10_4,10_0_1 -10650,2,45.0,0.0,2,111,350.0,353.0,0.0,0,54,0.0,0.0,483.76097965157567,703.0,0.0,640.2194739991495,50,2,2,2,1,1,2,2,2,0,,2,,2,112227,1,3,0,0,2,,222.0,971.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1270.16504477278,350.0,14036.527387724907,0,4,3,4,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0500836126045521,10797.32875978839,2,1,2_0,2_0_0,2_4_0,2_0_1 -10651,2,34.0,0.0,2,111,180.0,880.0,0.0,46,46,0.0,0.0,248.7913609636675,1060.0,0.0,1596.014552745755,41,0,0,0,0,0,0,0,0,0,,2,,2,121641,2,1,0,1,1,,0.0,317.0,43,2.0,0.0,3.0,4.0,2.3,1,1,1304.58967085804,180.0,68824.98868516379,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015401382844375217,29923.908123984256,8,4,8,8_0,8_4,8_0_1 -10652,2,76.0,0.0,7,111,2500.0,0.0,0.0,86,86,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,106435,2,1,3,0,1,,380.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,669.922128012359,2500.0,47033.78391313026,5,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053153282428167206,31355.85594208684,8,4,8,8_1,8_4,8_0_0 -10653,2,80.0,0.0,6,111,960.0,0.0,0.0,0,74,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130598,2,1,2,0,1,,327.0,1046.0,21,0.0,2.0,3.0,2.0,1.5,1,1,923.761706383467,960.0,42140.15364082134,0,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022781122446360613,28093.435760547563,8,4,8,8_1,8_4,8_0_0 -10654,2,50.0,0.0,9,111,960.0,960.0,0.0,65,54,0.0,0.0,1326.8872584728933,1920.0,0.0,1741.106784813551,43,0,0,0,0,0,0,0,0,3,60.0,1,2004.0,6,114152,2,2,4,0,1,,1200.0,552.0,43,3.0,1.0,5.0,3.0,2.0,2,2,579.103485922567,960.0,46649.52331530502,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04115797683553341,23324.76165765251,6,3,6,6_1,6_4,6_0_0 -10655,2,48.0,0.0,1,111,700.0,0.0,0.0,35,54,3733.962192545002,0.0,967.5219593031513,3200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,1,105128,2,1,2,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,4,2,827.96281194763,700.0,82903.52427010347,1,1,1,2,170.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038599082827579845,39477.86870004927,9,5,9,9_1,9_4,9_1_0 -10656,2,58.0,0.0,1,111,600.0,0.0,0.0,0,37,2240.377315527001,0.0,829.3045365455583,2100.0,0.0,0.0,71,2,2,2,2,1,2,2,2,4,50.0,1,,1,121320,2,3,2,0,1,,375.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,899.453298225286,600.0,92676.04582858371,0,1,1,2,80.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.02265957703767617,61784.03055238914,10,5,10,10_1,10_4,10_1_0 -10657,2,63.0,0.0,2,111,600.0,0.0,0.0,0,33,0.0,0.0,829.3045365455583,600.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,119141,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1016.63023048198,600.0,62531.43982577402,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00959517327078552,62531.43982577402,10,5,10,10_0,10_4,10_0_1 -10658,2,50.0,0.0,1,111,960.0,2000.0,0.0,75,31,0.0,0.0,1326.8872584728933,2960.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,125738,2,1,2,0,1,,725.0,,42,1.0,1.0,7.0,5.0,3.0,1,1,699.528774477488,960.0,166765.5306040053,5,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017749471304287074,55588.5102013351,10,5,10,10_1,10_4,10_1_0 -10659,2,52.0,0.0,7,111,1360.0,0.0,0.0,0,45,0.0,0.0,1879.7569495032656,1360.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,5,107427,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,783.152603567455,1360.0,27602.41217856737,0,1,0,1,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049271056138202596,27602.41217856737,7,4,7,7_0,7_4,7_0_0 -10660,2,80.0,0.0,6,111,1245.0,0.0,0.0,75,75,0.0,0.0,1720.8069133320334,1245.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,130264,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1003.05185241207,1245.0,67958.53589473726,5,5,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018319994443794563,45305.690596491506,10,5,10,10_0,10_4,10_0_0 -10661,2,43.0,0.0,7,111,550.0,0.0,0.0,0,52,0.0,0.0,760.1958251667618,550.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,7.0,2,,5,132487,2,1,0,0,1,,0.0,820.0,12,1.0,0.0,2.0,1.0,1.0,1,1,823.87614686384,550.0,32497.072107450473,0,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01692460164354018,32497.072107450473,8,4,8,8_0,8_4,8_0_0 -10662,2,42.0,0.0,9,111,0.0,0.0,0.0,47,38,0.0,0.0,0.0,1983.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,106246,2,1,0,0,1,,0.0,1220.0,43,2.0,0.0,3.0,3.0,1.8,3,2,1659.30392904802,0.0,72653.56910071315,1,1,2,3,61.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02729391032739416,40363.09394484064,9,5,9,9_0,9_4,9_0_0 -10663,2,68.0,0.0,7,111,1500.0,1000.0,0.0,75,78,0.0,144.92415067472407,2073.261341363896,2653.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,5,115888,2,1,1,0,1,,400.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,817.244401881381,1500.0,40482.1877581912,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0655349956837051,26988.125172127464,7,4,7,7_1,7_4,7_0_0 -10664,2,48.0,0.0,6,111,1245.0,0.0,0.0,0,46,0.0,0.0,1720.8069133320334,1245.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,125912,2,1,0,0,1,,0.0,484.0,32,1.0,1.0,3.0,2.0,1.5,1,1,949.61131332872,1245.0,33454.72580777944,0,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03721447329006332,22303.150538519625,6,3,6,6_0,6_4,6_0_0 -10665,2,45.0,0.0,2,111,860.0,0.0,0.0,0,37,0.0,0.0,1188.6698357153002,860.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,35.0,1,,2,127645,2,1,2,0,1,,200.0,780.0,12,1.0,2.0,2.0,1.0,1.0,3,3,1804.34105208074,860.0,99560.84451510335,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008637933960770474,99560.84451510335,10,5,10,10_1,10_4,10_0_1 -10666,2,38.0,0.0,9,111,1150.0,0.0,0.0,68,63,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2007.0,6,111140,2,1,1,0,1,,0.0,583.0,43,2.0,2.0,1.0,6.0,3.0999999999999996,1,1,916.308490531942,1150.0,22170.844369371767,1,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05186992343821979,7151.885280442506,1,1,1_0,1_1_0,1_4_0,1_0_0 -10667,2,39.0,0.0,8,111,725.0,645.0,0.0,21,56,0.0,0.0,1002.0763149925497,1370.0,0.0,1169.8061210466046,71,2,2,2,2,1,2,2,2,0,,1,2003.0,6,133411,2,2,4,0,2,,780.0,784.0,43,2.0,5.0,2.0,4.0,2.1,3,2,888.897627476458,725.0,30115.203567885095,4,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04549197208352828,14340.57312756433,3,2,3_0,3_1_0,3_4_0,3_0_0 -10668,2,49.0,0.0,6,111,1781.25,0.0,0.0,43,31,0.0,207.03450096389156,2461.9978428696263,1981.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,100736,2,1,2,0,1,,380.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,920.599730597748,1781.25,184542.9072434397,1,1,0,1,155.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010734630929959094,73817.16289737588,10,5,10,10_1,10_4,10_0_0 -10669,2,53.0,0.0,7,111,1539.0,2446.0,0.0,54,35,0.0,0.0,2127.166136239357,3985.0,0.0,4436.19499547286,42,0,0,0,0,0,0,0,0,2,60.0,1,,5,120127,2,1,2,0,1,,876.0,,43,3.0,2.0,7.0,4.0,2.5,2,2,793.691901037069,1539.0,115774.58820674894,1,1,0,1,121.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03442033404501195,46309.835282699576,10,5,10,10_1,10_4,10_0_0 -10670,2,73.0,0.0,7,111,960.0,0.0,0.0,77,74,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,100208,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,681.972859570227,960.0,64642.86630342582,5,5,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014850826624764375,43095.24420228388,9,5,9,9_0,9_4,9_0_0 -10671,2,84.0,0.0,7,111,500.0,1028.0,0.0,0,77,0.0,0.0,691.0871137879653,1528.0,0.0,1864.4351820711775,71,0,0,0,0,0,0,0,0,0,,2,,5,109874,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,855.264502854561,500.0,31185.584384431713,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048996997496150795,31185.584384431713,8,4,8,8_0,8_4,8_0_0 -10672,2,43.0,0.0,7,111,597.0,0.0,0.0,0,38,0.0,0.0,825.1580138628306,597.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,50.0,2,,5,110752,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1213.67134040007,597.0,43753.91590425077,0,1,1,2,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01364449301649822,43753.91590425077,10,5,10,10_0,10_4,10_0_0 -10673,2,57.0,0.0,9,111,1500.0,0.0,0.0,56,37,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,2004.0,6,106305,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,694.604818531606,1500.0,59329.82819989536,1,1,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025282392440884323,39553.21879993024,9,5,9,9_0,9_4,9_0_0 -10674,2,25.0,0.0,9,111,672.0,0.0,0.0,0,31,0.0,0.0,928.8210809310253,672.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2005.0,6,125390,2,1,0,0,1,,0.0,690.0,12,1.0,0.0,2.0,1.0,1.0,2,1,1068.48063289093,672.0,27655.81093355419,0,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02429869084708983,27655.81093355419,7,4,7,7_0,7_4,7_0_0 -10675,2,41.0,0.0,9,111,1340.0,0.0,0.0,46,38,0.0,0.0,1852.113464951747,1340.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2004.0,6,124490,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,684.522193150304,1340.0,61450.32762015438,4,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021806230363538518,34139.07090008577,9,5,9,9_0,9_4,9_0_0 -10676,2,35.0,0.0,9,111,1420.0,0.0,0.0,54,47,0.0,0.0,1962.6874031578213,1420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,2006.0,6,114316,2,1,0,0,1,,0.0,1021.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,1454.458281817,1420.0,56052.6181670394,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025333339394929495,21558.699295015158,6,3,6,6_0,6_4,6_0_0 -10677,2,73.0,0.0,5,111,1388.0,0.0,0.0,75,74,0.0,0.0,1918.4578278753916,1388.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114430,2,1,3,0,1,,283.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,944.443502068435,1388.0,47293.295991190564,5,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029348768592033555,31528.86399412704,8,4,8,8_1,8_4,8_0_0 -10678,2,69.0,0.0,2,111,971.5,0.0,0.0,37,75,3076.7848466570813,155.27587572291867,1342.7822620900165,3182.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114310,1,1,2,0,2,,813.0,,42,3.0,0.0,8.0,4.0,2.5,2,2,1157.81928832547,971.5,87770.01084906141,1,5,0,1,350.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03625384079617016,35108.00433962456,9,5,9,9_1,9_4,9_0_1 -10679,2,46.0,0.0,9,111,700.0,0.0,0.0,0,54,0.0,0.0,967.5219593031513,700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,123029,2,1,0,0,1,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2042.16154765403,700.0,26452.302922261515,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026462724325257127,26452.302922261515,7,4,7,7_0,7_4,7_0_0 -10680,2,44.0,0.0,5,111,150.0,0.0,0.0,38,54,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,55.0,1,,3,131874,1,1,2,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,892.48436601144,150.0,92633.48258359519,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016192849045120977,44111.18218266438,10,5,10,10_1,10_4,10_0_0 -10681,2,57.0,0.0,7,111,560.0,0.0,0.0,0,62,0.0,0.0,774.0175674425211,560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,103664,2,1,0,0,1,,0.0,,12,1.0,2.0,1.0,1.0,1.0,2,2,879.21279018773,560.0,26150.65306776623,0,1,1,2,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021414379157141058,26150.65306776623,7,4,7,7_0,7_4,7_0_0 -10682,2,90.0,0.0,6,111,310.0,0.0,0.0,0,75,0.0,0.0,428.47401054853844,1995.0,2898.751002060473,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,123832,2,1,2,0,1,,77.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1133.45223371041,310.0,59804.72506567277,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033358568203586764,59804.72506567277,10,5,10,10_1,10_4,10_0_0 -10683,2,57.0,0.0,7,111,1600.0,0.0,0.0,54,37,0.0,155.27587572291867,2211.478764121489,1790.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,125119,2,1,2,0,1,,480.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,947.050863065833,1600.0,69037.70780522667,1,1,1,2,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02592785967126915,46025.13853681778,10,5,10,10_1,10_4,10_0_0 -10684,2,56.0,0.0,7,111,2577.0,0.0,0.0,46,46,0.0,207.03450096389156,3561.8629844631732,2777.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,70.0,1,,5,101702,2,1,2,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,766.716382220197,2577.0,84625.87021364307,1,1,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03281502444807123,56417.24680909538,10,5,10,10_1,10_4,10_0_0 -10685,2,64.0,0.0,1,111,600.0,500.0,0.0,74,74,0.0,0.0,829.3045365455583,1100.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,0,,2,,1,111170,2,1,0,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,790.69116181697,600.0,231457.36540811765,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004752495121770797,154304.91027207844,10,5,10,10_0,10_4,10_1_0 -10686,2,36.0,0.0,1,111,836.0,1297.0,0.0,0,43,0.0,0.0,1155.497654253478,2133.0,0.0,2352.3078123991413,42,0,0,0,0,0,0,0,0,2,10.0,2,,1,126569,1,2,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,779.21378278905,836.0,46674.25185184738,0,1,1,2,81.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045699714840004985,25930.139917692988,7,4,7,7_0,7_4,7_1_0 -10687,2,57.0,0.0,6,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,693.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,119794,2,1,0,0,1,,0.0,183.0,43,3.0,0.0,3.0,3.0,2.0,6,3,1003.3171536664,0.0,62490.7998371218,1,1,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011089632422792785,31245.3999185609,8,4,8,8_0,8_4,8_0_0 -10688,2,40.0,0.0,2,111,210.0,0.0,0.0,56,55,0.0,0.0,290.25658779094545,210.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,121128,2,1,0,1,1,518.0,0.0,100.0,43,2.0,0.0,2.0,2.0,1.5,3,2,1269.65005801058,210.0,43735.64574837634,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0048015753833426855,29157.097165584226,8,4,8,8_0,8_4,8_0_1 -10689,2,81.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123207,2,1,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,992.388450345932,480.0,45790.208956967916,0,5,0,1,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01048259029459961,45790.208956967916,10,5,10,10_0,10_4,10_0_1 -10690,1,36.0,300.0,1,111,850.0,0.0,0.0,0,56,0.0,0.0,1174.848093439541,906.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,106892,2,2,0,1,2,600.0,0.0,931.0,32,1.0,0.0,2.0,3.0,1.8,2,2,1136.4111572555,850.0,21469.88519382877,0,4,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0421986420430612,11927.713996571538,2,1,2_1,2_0_1,2_4_1,2_1_0 -10691,2,28.0,0.0,1,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,219.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,35.0,2,,1,107031,2,1,0,1,1,,0.0,17.0,43,2.0,0.0,2.0,2.0,1.5,1,1,809.982588210848,0.0,48754.631645906804,1,1,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0044918809271403065,32503.08776393787,8,4,8,8_0,8_4,8_1_0 -10692,2,76.0,0.0,1,111,600.0,2408.0,0.0,72,74,0.0,0.0,829.3045365455583,3008.0,0.0,4367.276185240657,50,0,0,0,0,0,0,0,0,0,,2,,1,105675,2,1,0,0,1,,0.0,,41,0.0,4.0,7.0,2.0,1.5,1,1,766.604646817034,600.0,89634.16402780768,5,5,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03355863283409228,59756.10935187179,10,5,10,10_0,10_4,10_1_0 -10693,2,37.0,0.0,1,111,0.0,0.0,960.0,0,37,0.0,0.0,490.47680144402403,960.0,0.0,1097.5159436665263,10,0,0,0,0,0,0,0,0,2,45.0,2,,1,131055,2,1,0,0,2,,0.0,1300.0,32,1.0,0.0,3.0,3.0,1.6,2,2,1007.64859144358,0.0,129766.53199439117,0,1,3,4,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007397901332845155,81104.08249649448,10,5,10,10_0,10_4,10_1_0 -10694,2,37.0,0.0,7,111,840.0,0.0,0.0,42,37,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,5,105830,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,867.251827436239,840.0,87119.98798012726,1,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009641874608518203,58079.991986751505,10,5,10,10_0,10_4,10_0_0 -10695,2,49.0,0.0,1,111,242.0,52.0,0.0,0,33,379.37055876257216,0.0,334.4861630733752,548.0,0.0,94.30995084406734,71,0,0,0,0,0,0,0,0,3,45.0,2,,1,115767,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,887.854043700428,242.0,45696.55465704203,0,1,0,1,47.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011992151358298321,45696.55465704203,10,5,10,10_0,10_4,10_1_0 -10696,0,23.0,0.0,1,111,1000.0,0.0,0.0,0,67,0.0,0.0,1382.1742275759307,1140.0,240.84578058662683,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,131561,2,1,0,0,1,,369.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,994.552992327355,1000.0,25869.627109095098,0,1,5,0,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.044067121462265116,25869.627109095098,7,4,7,7_0,7_4,7_1_0 -10697,2,67.0,0.0,2,111,250.0,76.0,0.0,0,74,0.0,0.0,345.54355689398267,326.0,0.0,137.83762046440611,31,0,0,0,0,0,0,0,0,0,,2,,2,132199,1,3,0,1,2,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,993.995267538458,250.0,45429.138280203275,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007176011087625263,45429.138280203275,10,5,10,10_0,10_4,10_0_1 -10698,2,83.0,0.0,2,111,250.0,0.0,0.0,0,74,1941.6603401234008,0.0,345.54355689398267,1550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105219,2,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,884.529066433598,250.0,29240.146205650057,0,5,0,1,69.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05300931086659527,29240.146205650057,8,4,8,8_0,8_4,8_0_1 -10699,1,80.0,22.0,5,111,228.0,1160.0,0.0,0,86,0.0,0.0,315.13572388731217,1388.0,0.0,2103.8373649830405,50,0,0,0,0,0,0,0,0,0,,2,,3,107232,2,3,0,0,1,,0.0,509.0,11,0.0,4.0,4.0,1.0,1.0,2,2,1234.52429961284,228.0,16332.509360330852,0,5,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08498387904624369,16332.509360330852,4,2,4_1,4_0_1,4_4_1,4_0_0 -10700,2,85.0,0.0,2,111,183.0,156.0,0.0,77,75,0.0,0.0,252.93788364639528,339.0,0.0,282.929852532202,31,0,0,0,0,0,0,0,0,0,,2,,2,132480,2,2,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,871.883799235595,183.0,29605.756945660756,5,5,0,1,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011450475683570941,19737.171297107172,5,3,5,5_0,5_4,5_0_1 -10701,2,67.0,0.0,1,111,655.0,1425.0,0.0,75,75,0.0,0.0,905.3241190622346,2080.0,0.0,2584.4553837076146,71,0,0,0,0,0,0,0,0,0,,1,,1,104438,2,2,1,0,1,,312.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,921.51652500269,655.0,61768.432856525906,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033674158527404595,41178.955237683935,9,5,9,9_1,9_4,9_1_0 -10702,2,76.0,0.0,2,111,138.0,0.0,0.0,0,75,1651.9048739819088,0.0,190.74004340547842,1244.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,102395,2,3,0,1,1,,561.0,,11,0.0,2.0,2.0,1.0,1.0,4,4,993.995267538458,138.0,82370.8850648443,0,5,0,1,47.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015102423617528133,82370.8850648443,10,5,10,10_0,10_4,10_0_1 -10703,2,37.0,0.0,2,111,370.0,1400.0,0.0,0,42,0.0,0.0,511.40446420309434,1770.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,108699,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1111.15807254622,370.0,17871.718165566763,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09903916252496858,17871.718165566763,4,2,4_0,4_0_0,4_4_0,4_0_1 -10704,2,70.0,0.0,2,111,305.0,55.0,0.0,75,74,0.0,0.0,421.56313941065883,360.0,0.0,99.75090954660969,20,0,0,0,0,0,0,0,0,0,,2,,2,132188,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,785.409827745139,305.0,62044.391557165894,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005802297209544016,41362.92770477726,9,5,9,9_0,9_4,9_0_1 -10705,2,75.0,0.0,1,111,968.0,896.0,0.0,72,37,0.0,0.0,1337.944652293501,1864.0,0.0,1625.0329991593142,50,0,0,0,0,0,0,0,0,0,,2,,1,108926,2,1,0,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,791.971402585938,968.0,39873.28222435227,5,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04674809536651532,26582.188149568177,7,4,7,7_0,7_4,7_1_0 -10706,2,62.0,0.0,6,111,5000.0,0.0,0.0,0,77,0.0,0.0,6910.871137879652,5000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,127437,2,1,2,0,1,,516.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1059.42952133686,5000.0,55449.2921742403,0,5,0,1,250.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09017247658073471,55449.2921742403,10,5,10,10_1,10_4,10_0_0 -10707,2,29.0,0.0,1,111,2000.0,1000.0,0.0,0,46,0.0,0.0,2764.3484551518613,3000.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,112512,2,2,3,0,1,,180.0,,22,2.0,2.0,11.0,3.0,2.0,5,3,742.938909540133,2000.0,33501.91714888098,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08954711417463478,16750.95857444049,4,2,4_0,4_1_0,4_4_0,4_1_0 -10708,2,89.0,0.0,1,111,1447.0,140.0,0.0,0,77,0.0,0.0,2000.0061073023714,1587.0,0.0,253.91140611864284,31,0,0,0,0,0,0,0,0,0,,1,,1,120662,2,2,2,0,1,,115.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1012.65227841154,1447.0,34253.16571150101,0,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046331484025931687,34253.16571150101,9,5,9,9_1,9_4,9_1_0 -10709,2,78.0,0.0,1,111,500.0,0.0,0.0,74,74,5974.339508072003,0.0,691.0871137879653,4500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112353,2,2,2,0,2,,500.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,871.784472971237,500.0,73407.80485687804,5,5,0,1,160.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061301383535082875,48938.53657125202,10,5,10,10_1,10_4,10_1_0 -10710,2,33.0,0.0,1,111,554.0,0.0,0.0,0,34,0.0,0.0,765.7245220770656,554.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,2,,1,126138,2,1,0,0,1,,0.0,620.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1167.12175681293,554.0,28539.702010658522,0,1,3,4,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01941155516596149,28539.702010658522,8,4,8,8_0,8_4,8_1_0 -10711,2,51.0,0.0,1,111,1160.0,1560.0,0.0,90,68,0.0,0.0,1603.3221039880796,2720.0,0.0,2829.2985253220204,71,0,0,0,0,0,0,0,0,1,30.0,1,,1,106188,2,2,3,0,1,,876.0,980.0,43,3.0,3.0,5.0,5.0,3.0,3,3,731.281481588377,1160.0,50873.58604172587,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05346585942986387,16957.862013908623,4,2,4_0,4_1_0,4_4_0,4_1_0 -10712,2,68.0,0.0,9,111,735.0,0.0,0.0,0,74,0.0,0.0,1015.898057268309,735.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,101302,2,2,1,0,1,,285.0,400.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1759.20352953912,735.0,24178.412623189324,0,5,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030399017977510538,24178.412623189324,7,4,7,7_1,7_4,7_0_0 -10713,2,52.0,0.0,2,111,200.0,0.0,0.0,0,54,0.0,0.0,276.4348455151861,200.0,0.0,0.0,31,2,1,2,2,1,2,2,2,3,45.0,2,,2,105135,2,1,0,1,1,,0.0,620.0,12,1.0,2.0,1.0,1.0,1.0,2,2,1211.7091737225,200.0,27331.21121223832,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007317641301986806,27331.21121223832,7,4,7,7_0,7_4,7_0_1 -10714,2,66.0,0.0,2,111,250.0,80.0,0.0,0,56,0.0,0.0,345.54355689398267,1024.0,0.0,145.09223206779592,43,0,0,0,0,0,0,0,0,1,10.0,2,,2,113934,2,1,0,1,1,,0.0,400.0,11,0.0,0.0,1.0,1.0,1.0,4,2,1242.04001938831,250.0,20171.432597638654,0,5,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0507648623885977,20171.432597638654,5,3,5,5_0,5_4,5_0_1 -10715,2,58.0,0.0,1,111,564.0,1162.0,0.0,34,74,0.0,0.0,779.5462643528249,1726.0,0.0,2107.4646707847355,43,0,0,0,0,0,0,0,0,0,,1,,1,112367,2,1,2,0,1,,412.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,884.304067065041,564.0,67470.25275699933,1,5,0,1,149.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025581644198315913,44980.16850466622,10,5,10,10_1,10_4,10_1_0 -10716,1,37.0,226.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,327.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,75.0,2,,1,123823,2,1,0,0,1,,0.0,550.0,32,1.0,0.0,1.0,2.0,1.3,2,2,908.44643700996,0.0,13315.597161071662,0,1,3,4,17.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.024557666925820582,10242.7670469782,2,1,2_1,2_0_1,2_4_1,2_1_0 -10717,2,49.0,0.0,2,111,430.0,1630.0,0.0,46,48,0.0,0.0,594.3349178576501,2060.0,0.0,2956.254228381342,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,114470,2,2,1,0,1,,350.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1258.72800001555,430.0,69130.0,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02979892955301606,46086.666666666664,10,5,10,10_1,10_4,10_0_1 -10718,2,40.0,0.0,1,111,748.0,508.0,0.0,33,38,0.0,0.0,1033.866322226796,1256.0,0.0,921.3356736305041,50,0,0,0,0,0,0,0,0,0,,1,,1,127291,2,3,2,0,1,,430.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,839.013886494463,748.0,79937.39072650087,1,1,1,2,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015712296693512293,44409.661514722706,10,5,10,10_1,10_4,10_1_0 -10719,2,54.0,0.0,8,111,607.0,0.0,0.0,0,52,0.0,0.0,838.9797561385899,607.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,1.0,2,2001.0,6,123294,2,1,0,0,1,,0.0,304.0,12,1.0,1.0,2.0,1.0,1.0,1,1,726.652286170572,607.0,18934.960321941016,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032057104407904914,18934.960321941016,5,3,5,5_0,5_4,5_0_0 -10720,2,56.0,0.0,2,111,2000.0,2000.0,0.0,34,34,0.0,0.0,2764.3484551518613,4000.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,119891,1,1,2,0,1,,426.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,1240.45677220009,2000.0,172253.4094894268,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023221601313183453,86126.7047447134,10,5,10,10_1,10_4,10_0_1 -10721,2,54.0,0.0,1,111,800.0,0.0,0.0,85,38,2987.1697540360015,0.0,1105.7393820607444,2800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,75.0,1,,1,119781,2,3,2,0,1,,425.0,1500.0,42,1.0,0.0,6.0,3.0,1.8,2,2,894.188130099482,800.0,57107.63159220654,6,1,2,3,120.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049030224541514955,31726.4619956703,8,4,8,8_1,8_4,8_1_0 -10722,2,64.0,0.0,1,111,504.0,544.0,0.0,31,74,0.0,0.0,696.615810698269,1048.0,0.0,986.6271780610122,71,0,0,0,0,0,0,0,0,0,,1,,1,120543,2,1,1,0,1,,270.0,,42,1.0,0.0,2.0,2.0,1.5,3,3,871.784472971237,504.0,79397.68360070842,1,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013199377519253588,52931.78906713895,10,5,10,10_1,10_4,10_1_0 -10723,2,61.0,0.0,1,111,1000.0,0.0,0.0,0,37,2539.0942909306013,0.0,1382.1742275759307,2700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,101435,2,2,3,0,1,,300.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,1059.52847842908,1000.0,54033.66937913999,0,1,0,1,130.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049968844074882515,54033.66937913999,10,5,10,10_1,10_4,10_1_0 -10724,0,32.0,0.0,7,111,0.0,0.0,0.0,53,34,0.0,0.0,0.0,297.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,2,,5,120178,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,850.802097161936,0.0,62077.02222214135,1,1,5,0,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004784378975801893,34487.23456785631,9,5,9,9_0,9_4,9_0_0 -10725,2,35.0,0.0,7,111,500.0,0.0,0.0,0,37,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,116399,2,1,0,0,1,,0.0,626.0,12,1.0,0.0,1.0,1.0,1.0,2,2,980.588161134706,500.0,29181.327775491918,0,1,2,3,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01713424433071642,29181.327775491918,8,4,8,8_0,8_4,8_0_0 -10726,2,60.0,0.0,7,111,1600.0,0.0,0.0,37,22,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,126697,2,1,0,0,1,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,714.07315513629,1600.0,165935.13650099467,1,1,0,1,116.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00964232189600428,110623.42433399645,10,5,10,10_0,10_4,10_0_0 -10727,2,67.0,0.0,2,111,300.0,100.0,0.0,0,33,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,2,120462,2,1,0,1,2,,0.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,996.25816967265,300.0,42894.73917609803,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009325152866831965,42894.73917609803,9,5,9,9_0,9_4,9_0_1 -10728,2,42.0,0.0,7,111,900.0,0.0,0.0,46,38,0.0,207.03450096389156,1243.9568048183376,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,127317,2,1,2,0,1,,590.0,,43,2.0,0.0,6.0,5.0,2.4,3,2,977.552766570064,900.0,86500.13605247372,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012716743004111637,36041.723355197384,9,5,9,9_1,9_4,9_0_0 -10729,2,53.0,0.0,6,111,600.0,0.0,0.0,52,52,0.0,0.0,829.3045365455583,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,35.0,2,,4,127202,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,836.723737085619,600.0,49084.938654560494,1,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01222370886969121,19633.975461824197,5,3,5,5_0,5_4,5_0_0 -10730,1,44.0,46.0,6,111,1260.0,252.0,0.0,45,47,0.0,0.0,1741.5395267456724,1512.0,0.0,457.04053101355714,70,0,0,0,0,0,0,0,0,2,60.0,2,,4,103388,2,1,0,1,1,960.0,0.0,440.0,43,2.0,0.0,4.0,5.0,2.8,2,2,664.149154223838,1260.0,43381.0,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03485396832714783,15493.214285714286,3,2,3_1,3_0_1,3_4_1,3_0_0 -10731,1,57.0,143.0,2,111,700.0,180.0,0.0,0,52,0.0,0.0,967.5219593031513,880.0,0.0,326.4575221525408,31,2,1,2,2,1,2,2,2,3,45.0,2,,2,105877,1,2,0,1,1,600.0,0.0,350.0,32,2.0,0.0,3.0,3.0,2.0,2,2,772.552148001052,700.0,35090.838280472984,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.025077770812038252,17545.419140236492,4,2,4_1,4_0_1,4_4_1,4_0_1 -10732,2,59.0,0.0,2,111,650.0,150.0,0.0,0,74,0.0,0.0,898.4132479243549,800.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,0,,2,,2,108832,2,2,0,1,1,700.0,0.0,470.0,31,1.0,0.0,4.0,3.0,2.0,2,2,815.930116532017,650.0,53470.351927946,0,7,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0149615622705839,26735.175963973,7,4,7,7_0,7_4,7_0_1 -10733,2,35.0,0.0,5,111,500.0,0.0,0.0,37,37,0.0,0.0,691.0871137879653,2621.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,80.0,1,,3,107419,2,1,1,0,1,,620.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,1030.73297295809,500.0,77703.4738453561,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03373079568123636,37001.65421207433,9,5,9,9_1,9_4,9_0_0 -10734,2,58.0,0.0,7,111,2000.0,0.0,0.0,34,33,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,111642,2,1,2,0,1,,330.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,939.372071948076,2000.0,66974.56785498906,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02986208144456159,44649.71190332604,10,5,10,10_1,10_4,10_0_0 -10735,2,46.0,0.0,2,111,375.0,1855.0,0.0,0,42,0.0,0.0,518.315335340974,2230.0,0.0,3364.3261310720177,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,116445,2,2,1,0,1,,468.0,,32,1.0,0.0,3.0,3.0,2.0,1,1,988.426866464877,375.0,42351.32133574754,0,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05265479162553827,21175.66066787377,5,3,5,5_1,5_4,5_0_1 -10736,2,54.0,0.0,7,111,600.0,1700.0,0.0,21,54,0.0,0.0,829.3045365455583,2300.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,3,60.0,1,,5,103909,2,1,2,0,1,,460.0,,43,2.0,2.0,7.0,2.0,1.5,3,3,835.389429730405,600.0,80373.09585592836,1,1,0,1,220.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028616541088859287,53582.06390395224,10,5,10,10_1,10_4,10_0_0 -10737,2,55.0,0.0,2,111,300.0,780.0,0.0,52,68,0.0,0.0,414.65226827277917,1080.0,0.0,1414.6492626610102,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,110965,2,2,2,0,2,,0.0,400.0,43,2.0,0.0,3.0,2.0,1.5,3,2,765.182486064033,300.0,52335.79250092996,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020635972981221398,34890.528333953305,9,5,9,9_1,9_4,9_0_1 -10738,2,53.0,0.0,1,111,1350.0,140.0,0.0,31,37,4331.396143352202,0.0,1865.9352072275062,5654.0,0.0,253.91140611864284,43,0,0,0,0,0,0,0,0,3,70.0,1,,1,120734,2,1,2,0,2,,1180.0,,43,2.0,1.0,9.0,4.0,2.3,2,2,826.52906474896,1350.0,198028.30473997266,1,1,1,2,180.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028551474030059306,86099.2629304229,10,5,10,10_1,10_4,10_1_0 -10739,2,50.0,0.0,8,111,500.0,0.0,0.0,0,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,2,2,2,2,2,2,2,1,3,90.0,2,2000.0,6,121726,1,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,976.888434412474,500.0,20903.569149959276,0,1,1,2,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02391936020174689,20903.569149959276,5,3,5,5_0,5_4,5_0_0 -10740,2,55.0,0.0,2,111,400.0,1600.0,0.0,38,38,0.0,0.0,552.8696910303722,2000.0,0.0,2901.844641355918,70,0,0,0,0,0,0,0,0,2,45.0,2,,2,118083,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,795.170319105009,400.0,129879.96929170316,1,1,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015398833329780912,64939.98464585158,10,5,10,10_0,10_4,10_0_1 -10741,2,63.0,0.0,2,111,530.0,60.0,0.0,0,75,0.0,0.0,732.5523406152432,590.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,113664,2,1,0,0,1,,0.0,600.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1550.03042109418,530.0,27993.588379716348,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021076254747944476,27993.588379716348,7,4,7,7_0,7_4,7_0_1 -10742,2,56.0,0.0,5,111,1200.0,0.0,0.0,37,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,2,,3,105523,2,1,0,0,1,,600.0,500.0,43,3.0,1.0,3.0,3.0,2.0,2,2,936.094641230401,1200.0,67128.24254691163,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01787623144105697,33564.121273455814,9,5,9,9_0,9_4,9_0_0 -10743,2,41.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1215.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,113278,2,1,1,0,1,,284.0,1200.0,32,1.0,0.0,3.0,2.0,1.3,1,1,886.640625511136,0.0,46942.28261311288,0,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025882848731787093,36109.44816393298,9,5,9,9_1,9_4,9_1_0 -10744,2,43.0,0.0,1,111,520.0,1400.0,0.0,47,47,0.0,0.0,718.7305983394839,1920.0,0.0,2539.1140611864284,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,117492,2,1,2,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.3,4,3,854.221317902361,520.0,87027.87910957247,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02206189579298633,37838.20830850978,9,5,9,9_1,9_4,9_1_0 -10745,2,49.0,0.0,7,111,700.0,0.0,0.0,55,47,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,5,116459,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,625.261655757816,700.0,54230.040546196884,1,1,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012907974859500461,25823.828831522325,7,4,7,7_0,7_4,7_0_0 -10746,2,47.0,0.0,7,111,500.0,1500.0,0.0,54,54,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,50.0,1,,5,103291,2,1,1,0,1,,100.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,840.093184211187,500.0,99477.93039960925,1,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020104961894219866,39791.1721598437,9,5,9,9_1,9_4,9_0_0 -10747,2,55.0,0.0,6,111,1630.0,0.0,0.0,74,33,0.0,0.0,2252.943990948767,1630.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,4,131658,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,939.823457138788,1630.0,63594.62407912185,5,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025631097338857135,31797.312039560926,8,4,8,8_0,8_4,8_0_0 -10748,2,54.0,0.0,6,111,1500.0,0.0,0.0,37,37,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,111638,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,902.965962641217,1500.0,56307.75306179588,1,1,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02663931551937084,37538.50204119725,9,5,9,9_0,9_4,9_0_0 -10749,2,33.0,0.0,2,111,300.0,380.0,0.0,0,43,0.0,0.0,414.65226827277917,680.0,0.0,689.1881023220305,50,0,0,0,0,0,0,0,0,3,55.0,2,,2,128910,2,2,0,1,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,1201.68620022946,300.0,23436.659462338466,0,1,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02901437387408926,23436.659462338466,6,3,6,6_0,6_4,6_0_1 -10750,2,47.0,0.0,2,111,380.0,420.0,0.0,52,64,0.0,0.0,525.2262064788536,800.0,0.0,761.7342183559285,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,128162,2,2,0,1,1,,0.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,719.772745051191,380.0,55197.65850288405,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014493368409063954,23998.981957775675,6,3,6,6_0,6_4,6_0_1 -10751,2,55.0,0.0,7,111,550.0,1100.0,0.0,42,38,0.0,155.27587572291867,760.1958251667618,1800.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,3,60.0,1,,5,119253,2,1,2,0,1,,550.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,824.927070793026,550.0,90931.75222614004,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019795065595167933,45465.87611307002,10,5,10,10_1,10_4,10_0_0 -10752,1,52.0,334.0,2,111,800.0,200.0,0.0,0,22,0.0,0.0,1105.7393820607444,1000.0,0.0,362.73058016948977,43,0,0,0,0,0,0,0,0,0,,2,,2,113825,2,2,0,1,2,600.0,0.0,335.0,32,1.0,2.0,3.0,2.0,1.5,2,2,785.515757472328,800.0,9133.547122134933,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1094864882863005,6089.031414756621,1,1,1_1,1_0_1,1_4_1,1_0_1 -10753,2,66.0,0.0,2,111,380.0,950.0,0.0,74,72,0.0,0.0,525.2262064788536,1330.0,0.0,1722.9702558050765,20,2,2,2,2,2,2,2,1,0,,1,,2,116922,2,1,2,0,1,,200.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1033.96151834932,380.0,81616.39819241958,5,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.016295744843632765,54410.932128279725,10,5,10,10_1,10_4,10_0_1 -10754,2,44.0,0.0,1,111,330.0,1090.0,0.0,0,54,0.0,0.0,456.1174951000571,1420.0,0.0,1976.8816619237193,10,0,0,0,0,0,0,0,0,0,,1,,1,121564,2,2,3,0,1,,100.0,,32,1.0,0.0,3.0,3.0,1.8,1,1,855.06285175006,330.0,18951.545526740032,0,4,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07492792595709014,10528.636403744462,2,1,2_0,2_1_0,2_4_0,2_1_0 -10755,2,52.0,0.0,2,111,720.0,0.0,0.0,54,47,0.0,0.0,995.16544385467,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,127779,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,823.978464779219,720.0,57427.86620654601,1,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012537467392753828,28713.933103273004,8,4,8,8_0,8_4,8_0_1 -10756,2,52.0,0.0,2,111,220.0,150.0,0.0,0,85,0.0,0.0,304.0783300667047,370.0,0.0,272.04793512711734,31,0,0,0,0,0,0,0,0,0,,2,,2,108042,2,2,0,1,1,,140.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,941.633492721896,220.0,11593.548480808524,0,7,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03191430135583446,11593.548480808524,2,1,2_0,2_0_0,2_4_0,2_0_1 -10757,2,59.0,0.0,6,111,1200.0,0.0,0.0,74,37,0.0,62.110350289167464,1658.6090730911167,1260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,127322,2,1,2,0,1,,520.0,,42,1.0,2.0,5.0,2.0,1.5,4,4,945.708946610523,1200.0,83582.43125741952,5,4,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015074938369756397,55721.62083827968,10,5,10,10_1,10_4,10_0_0 -10758,2,42.0,0.0,2,111,480.0,150.0,0.0,85,48,0.0,0.0,663.4436292364467,630.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,0,,2,,2,122149,2,3,0,1,1,650.0,0.0,559.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,1,1,665.491422702426,480.0,40496.795498741136,6,1,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015556786462760588,15575.690576438901,3,2,3_0,3_0_0,3_4_0,3_0_1 -10759,2,31.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,290.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,30.0,2,,2,107265,1,2,0,1,1,272.0,0.0,447.0,12,1.0,0.0,1.0,1.0,1.0,5,3,1429.83678358872,0.0,30098.157031429655,0,1,3,4,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009635141437303648,30098.157031429655,8,4,8,8_0,8_4,8_0_1 -10760,1,61.0,320.0,5,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1327.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,8,,3,112641,1,3,0,0,1,,0.0,327.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1232.49077763884,0.0,20170.68336253688,0,7,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.06578854945810335,20170.68336253688,5,3,5,5_0,5_4,5_0_0 -10761,2,44.0,0.0,5,111,0.0,0.0,0.0,54,52,0.0,0.0,0.0,661.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,8,,3,112801,2,2,0,1,1,3600.0,0.0,800.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,3,2,887.497740126589,0.0,60962.418029672364,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010842745766387909,21021.523458507716,5,3,5,5_0,5_4,5_0_0 -10762,1,61.0,307.0,5,111,420.0,0.0,0.0,0,54,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,3,128963,2,1,0,1,1,856.0,0.0,452.0,32,1.0,1.0,3.0,2.0,1.5,1,1,871.172512066254,420.0,25091.923230023145,0,4,3,4,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016738453890113095,16727.94882001543,4,2,4_1,4_0_1,4_4_1,4_0_0 -10763,2,56.0,0.0,5,111,550.0,136.0,0.0,67,46,0.0,0.0,760.1958251667618,686.0,0.0,246.65679451525304,70,2,2,2,2,2,1,2,2,3,15.0,8,,3,133176,2,1,0,1,1,673.0,0.0,459.0,43,2.0,1.0,3.0,2.0,1.5,2,2,824.857646310261,550.0,48465.26300214499,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.01415446770544996,32310.175334763324,8,4,8,8_0,8_4,8_0_0 -10764,2,70.0,0.0,1,111,1237.0,0.0,0.0,77,74,0.0,0.0,1709.7495195114261,1237.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129920,2,1,2,0,1,,272.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,992.737269118832,1237.0,37925.982652096944,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032616162153193566,25283.988434731295,7,4,7,7_1,7_4,7_1_0 -10765,2,76.0,0.0,1,111,600.0,1800.0,0.0,77,78,0.0,0.0,829.3045365455583,2400.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,1,107384,2,2,2,0,1,,228.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,919.998592858779,600.0,27026.601970959447,5,5,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08880139658617986,18017.734647306297,4,2,4_0,4_1_0,4_4_0,4_1_0 -10766,2,78.0,0.0,2,111,900.0,900.0,0.0,78,77,0.0,0.0,1243.9568048183376,1800.0,0.0,1632.287610762704,42,0,0,0,0,0,0,0,0,0,,1,,2,122931,2,1,2,0,1,,360.0,,41,0.0,2.0,3.0,2.0,1.5,4,4,1224.11862710301,900.0,34978.08356250293,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05146079535156778,23318.72237500195,6,3,6,6_1,6_4,6_0_1 -10767,1,35.0,170.0,5,111,216.0,330.0,0.0,85,90,0.0,0.0,298.549633156401,546.0,0.0,598.5054572796581,50,0,0,0,0,0,0,0,0,0,,2,,3,103906,2,3,0,1,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,1,176.804126087419,216.0,14907.44364304253,6,4,1,2,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03662599792921734,6211.434851267722,1,1,1_1,1_0_1,1_4_1,1_0_0 -10768,1,34.0,280.0,2,111,240.0,200.0,0.0,85,68,0.0,0.0,331.72181461822333,440.0,0.0,362.73058016948977,12,0,0,0,0,0,0,0,0,0,,2,,2,103704,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,188.106583187413,240.0,14523.788077628726,6,4,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030295126701672313,6051.578365678636,1,1,1_1,1_0_1,1_4_1,1_0_1 -10769,2,61.0,0.0,2,111,311.0,0.0,0.0,0,77,0.0,0.0,429.8561847761144,311.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,113132,1,3,0,1,1,540.0,0.0,361.0,11,0.0,2.0,4.0,1.0,1.0,2,2,932.227014481305,311.0,15177.76411509349,0,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.020490501607593626,15177.76411509349,3,2,3_0,3_0_0,3_4_0,3_0_1 -10770,2,61.0,0.0,2,111,944.0,0.0,0.0,0,52,0.0,0.0,1304.7724708316784,944.0,0.0,0.0,70,2,2,2,2,2,2,2,1,3,60.0,2,,2,109407,1,2,0,1,1,852.0,0.0,444.0,12,1.0,2.0,4.0,1.0,1.0,2,2,932.227014481305,944.0,35039.11415413265,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02694132037264021,35039.11415413265,9,5,9,9_0,9_4,9_0_1 -10771,2,45.0,0.0,2,111,255.0,0.0,0.0,0,52,0.0,0.0,352.4544280318623,293.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,100506,1,3,0,1,1,610.0,0.0,332.0,32,1.0,0.0,3.0,2.0,1.5,4,3,827.762802431425,255.0,21045.290022882116,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013922355058135433,14030.193348588078,3,2,3_0,3_0_0,3_4_0,3_0_1 -10772,2,28.0,0.0,7,111,240.0,0.0,0.0,0,46,0.0,0.0,331.72181461822333,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,5,126174,2,1,0,1,1,448.0,0.0,394.0,12,1.0,0.0,1.0,1.0,1.0,3,3,669.353476474619,240.0,21319.868561798623,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011257105047544097,21319.868561798623,6,3,6,6_0,6_4,6_0_0 -10773,1,25.0,178.0,8,111,300.0,0.0,0.0,0,42,0.0,0.0,414.65226827277917,300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,2000.0,6,118066,2,1,0,1,1,,0.0,386.0,12,1.0,0.0,1.0,1.0,1.0,3,1,981.613021049411,300.0,9386.710170811926,0,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03196007914816132,9386.710170811926,1,1,1_1,1_0_1,1_4_1,1_0_0 -10774,2,31.0,0.0,8,111,240.0,0.0,0.0,0,56,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,2000.0,6,133052,2,1,0,1,1,,0.0,260.0,12,1.0,0.0,1.0,1.0,1.0,2,2,981.613021049411,240.0,13150.407264052448,0,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018250385344038483,13150.407264052448,2,1,2_0,2_0_0,2_4_0,2_0_0 -10775,0,94.0,0.0,2,111,200.0,150.0,0.0,0,77,0.0,0.0,276.4348455151861,350.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,0,,2,,2,104896,2,2,0,1,1,936.0,0.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,1285.31559992954,200.0,18579.176881426083,0,5,5,0,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01883829419536346,18579.176881426083,4,2,4_0,4_0_0,4_4_0,4_0_1 -10777,2,71.0,0.0,2,111,450.0,108.0,0.0,72,77,0.0,0.0,621.9784024091688,558.0,0.0,195.8745132915245,31,0,0,0,0,0,0,0,0,0,,2,,2,133250,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,835.634506919399,450.0,49743.36141457273,5,5,0,1,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011217577263215052,33162.24094304849,8,4,8,8_0,8_4,8_0_1 -10778,2,65.0,0.0,7,111,260.0,280.0,0.0,0,77,0.0,0.0,359.36529916974195,540.0,0.0,507.8228122372857,71,0,0,0,0,0,0,0,0,0,,2,,5,127575,2,1,0,1,1,,0.0,506.0,11,0.0,4.0,4.0,1.0,1.0,2,2,982.75291609658,260.0,17153.09518795336,0,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03148119882056287,17153.09518795336,4,2,4_0,4_0_0,4_4_0,4_0_0 -10779,2,52.0,0.0,7,111,330.0,780.0,0.0,0,54,0.0,0.0,456.1174951000571,1110.0,0.0,1414.6492626610102,43,2,2,2,2,2,2,2,1,2,20.0,2,,5,121444,1,2,0,0,1,,0.0,468.0,32,1.0,0.0,3.0,3.0,1.6,2,2,856.063569978659,330.0,46575.82753681584,0,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.023832104735500428,29109.8922105099,8,4,8,8_0,8_4,8_0_0 -10780,2,79.0,0.0,7,111,240.0,105.0,0.0,0,77,0.0,0.0,331.72181461822333,1109.0,0.0,190.43355458898213,50,2,2,2,1,1,2,2,2,0,,2,,5,100781,1,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,934.212563183608,240.0,39074.97434493676,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028381336612283703,39074.97434493676,9,5,9,9_0,9_4,9_0_0 -10781,2,57.0,0.0,7,111,400.0,400.0,0.0,74,56,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,30,0,0,0,0,0,0,0,0,2,60.0,2,,5,115126,2,2,0,1,1,,0.0,516.0,42,2.0,0.0,4.0,3.0,2.0,2,2,859.96010690087,400.0,34384.65519622482,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023266192301030667,17192.32759811241,4,2,4_0,4_0_0,4_4_0,4_0_0 -10782,1,38.0,500.0,2,111,1500.0,0.0,0.0,85,47,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,43,2,2,2,2,1,1,2,2,3,30.0,1,,2,113484,1,3,3,0,2,,0.0,780.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1077.38019631141,1500.0,20873.79162869013,6,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,1,0.0718604471426415,8697.413178620889,1,1,1_1,1_1_1,1_4_1,1_0_1 -10783,2,45.0,0.0,2,111,540.0,210.0,0.0,0,46,0.0,0.0,746.3740828910024,750.0,0.0,380.86710917796427,10,0,0,0,0,0,0,0,0,3,45.0,2,,2,111529,2,2,0,1,1,,0.0,646.0,32,2.0,0.0,3.0,2.0,1.5,2,2,785.064152503383,540.0,29628.40743913571,0,1,3,4,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025313544156589953,19752.271626090474,5,3,5,5_0,5_4,5_0_1 -10784,2,50.0,0.0,2,111,600.0,0.0,0.0,0,47,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,101455,2,2,0,1,1,564.0,0.0,373.0,32,2.0,1.0,4.0,3.0,2.0,3,3,773.668453051264,600.0,18824.145670039637,0,1,2,3,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03187395648743599,9412.072835019819,1,1,1_0,1_0_0,1_4_0,1_0_1 -10785,2,57.0,0.0,7,111,816.0,1236.0,0.0,0,47,0.0,0.0,1127.8541697019593,2052.0,0.0,2241.674985447447,50,0,0,0,0,0,0,0,0,3,90.0,1,,5,119761,2,1,3,0,1,,0.0,686.0,32,3.0,6.0,5.0,4.0,2.5,1,1,697.147338492299,816.0,40173.33283752,0,1,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051078659774115846,16069.333135008,4,2,4_0,4_1_0,4_4_0,4_0_0 -10786,2,58.0,0.0,2,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,1556.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,,2,128488,2,1,0,1,1,,0.0,,43,2.0,1.0,5.0,4.0,2.3,2,2,858.751947075515,0.0,171781.27984724529,1,1,1,2,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00905803007978318,74687.51297706318,10,5,10,10_0,10_4,10_0_1 -10787,2,53.0,0.0,7,111,1200.0,0.0,0.0,33,52,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,1,,5,119280,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,749.328529428993,1200.0,84812.27179671249,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014148895844651984,33924.908718684994,9,5,9,9_1,9_4,9_0_0 -10788,2,75.0,0.0,2,111,0.0,300.0,0.0,77,78,3584.6037048432017,0.0,0.0,5633.0,0.0,544.0958702542347,31,0,0,0,0,0,0,0,0,0,,1,,2,105774,2,1,2,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1288.06828059169,0.0,28288.87481003999,5,5,0,1,100.0,10,8,1,1,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19912421536118485,18859.249873359993,5,3,5,5_1,5_4,5_0_1 -10789,2,49.0,0.0,1,111,1700.0,2000.0,0.0,54,38,0.0,269.144851253059,2349.696186879082,3960.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,3,2.0,1,,1,100330,2,2,5,0,1,,1620.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,826.466416040488,1700.0,67693.26696965419,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05849917099990469,27077.306787861675,7,4,7,7_1,7_4,7_1_0 -10790,2,78.0,0.0,8,111,480.0,0.0,0.0,0,77,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,129522,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,781.737194179039,480.0,26974.107047687947,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01779484300078592,26974.107047687947,7,4,7,7_0,7_4,7_0_0 -10791,2,53.0,0.0,2,111,900.0,1262.0,0.0,21,90,0.0,0.0,1243.9568048183376,2162.0,0.0,2288.8299608694806,44,0,0,0,0,0,0,0,0,2,15.0,1,,2,130395,2,1,2,0,1,,840.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1288.06828059169,900.0,54639.113955306486,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03956872363941453,36426.07597020432,9,5,9,9_1,9_4,9_0_1 -10792,0,62.0,0.0,9,111,300.0,0.0,0.0,52,52,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,2,2007.0,6,128852,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1710.27599259496,300.0,53447.96247625114,1,1,5,0,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005612936136401848,35631.97498416743,9,5,9,9_0,9_4,9_0_0 -10793,2,49.0,0.0,2,111,847.0,792.0,0.0,62,45,0.0,0.0,1170.7015707568132,1639.0,0.0,1436.4130974711795,71,2,1,2,1,1,2,2,2,2,25.0,2,,2,103107,1,3,0,1,1,2000.0,0.0,589.0,43,2.0,0.0,4.0,4.0,2.1,1,1,987.419474965817,847.0,22256.10553321773,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0736427133468502,10598.145492008443,2,1,2_0,2_0_0,2_4_0,2_0_1 -10794,1,52.0,302.0,2,111,348.0,516.0,0.0,0,54,0.0,0.0,480.99663119642383,864.0,0.0,935.8448968372836,20,0,0,0,0,0,0,0,0,3,40.0,2,,2,103345,2,2,0,1,1,681.0,0.0,288.0,12,1.0,5.0,2.0,1.0,1.0,2,2,932.441361638951,348.0,16962.984080739876,0,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050934434406561965,16962.984080739876,4,2,4_1,4_0_1,4_4_1,4_0_1 -10795,2,74.0,0.0,7,111,360.0,420.0,0.0,0,77,0.0,0.0,497.582721927335,780.0,0.0,761.7342183559285,71,0,0,0,0,0,0,0,0,0,,2,,5,102469,2,1,0,0,1,,0.0,460.0,21,1.0,1.0,3.0,2.0,1.5,1,1,675.025297248671,360.0,30363.205516497306,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025688987270339456,20242.137010998205,5,3,5,5_0,5_4,5_0_0 -10796,1,57.0,307.0,2,111,1300.0,0.0,0.0,0,56,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118556,2,1,0,0,1,330.0,0.0,526.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1434.91502630351,1300.0,5025.310221269552,0,4,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.25869049725482995,5025.310221269552,1,1,1_1,1_0_1,1_4_1,1_0_1 -10797,1,49.0,125.0,5,111,2184.0,0.0,0.0,52,21,0.0,0.0,3018.6685130258325,2184.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,3,105329,2,2,3,0,1,,936.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,1,1,989.012231800895,2184.0,35281.77825045995,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.061901641819074926,11381.218790470954,2,1,2_1,2_1_1,2_4_1,2_0_0 -10798,2,45.0,0.0,1,111,1800.0,0.0,0.0,0,85,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,1,118848,1,3,0,0,2,420.0,352.0,285.0,11,0.0,2.0,1.0,1.0,1.0,2,2,965.609491485794,1800.0,9232.04136116639,0,7,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.1949731299484327,9232.04136116639,1,1,1_0,1_0_0,1_4_0,1_1_0 -10800,1,34.0,250.0,2,111,900.0,264.0,0.0,85,52,0.0,0.0,1243.9568048183376,1164.0,0.0,478.8043658237265,50,2,2,2,1,2,2,2,2,3,15.0,2,,2,123634,1,2,0,0,1,570.0,0.0,213.0,42,1.0,0.0,3.0,4.0,2.1,1,1,240.867213233681,900.0,24500.406403378383,7,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04750941600052377,11666.860192084943,2,1,2_1,2_0_1,2_4_1,2_0_1 -10801,2,52.0,0.0,5,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1164.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,126703,2,3,0,0,1,,0.0,444.0,12,1.0,3.0,3.0,1.0,1.0,2,2,300.693523252475,0.0,30721.859336988004,0,1,2,3,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037888331797632645,30721.859336988004,8,4,8,8_0,8_4,8_0_0 -10802,2,39.0,0.0,2,111,0.0,0.0,660.0,0,52,0.0,0.0,337.2028009927665,660.0,0.0,754.5422112707369,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,100370,1,3,0,1,1,756.0,0.0,347.0,32,1.0,0.0,3.0,2.0,1.3,2,2,826.688335660027,0.0,20626.143915921664,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031998225295545184,15866.264550708973,3,2,3_0,3_0_0,3_4_0,3_0_1 -10803,1,41.0,260.0,2,111,1452.0,0.0,0.0,85,67,0.0,0.0,2006.9169784402511,1452.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,113092,2,2,5,0,1,,497.0,900.0,42,2.0,0.0,4.0,5.0,2.8,3,2,1051.5045713678,1452.0,38361.21625048828,7,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03785072898937396,13700.434375174387,3,2,3_1,3_1_1,3_4_1,3_0_1 -10804,2,73.0,0.0,8,111,504.0,0.0,0.0,0,77,0.0,0.0,696.615810698269,504.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,1999.0,6,100740,2,1,0,0,1,,0.0,267.0,11,0.0,0.0,1.0,1.0,1.0,2,2,859.114940546971,504.0,16285.172745728556,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030948397531257034,16285.172745728556,4,2,4_0,4_0_0,4_4_0,4_0_0 -10805,2,66.0,0.0,1,111,700.0,0.0,0.0,0,75,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,131496,1,2,0,1,2,,0.0,400.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1698.05827050132,700.0,21048.562757166193,0,5,2,3,16.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03325642743762531,21048.562757166193,5,3,5,5_0,5_4,5_1_0 -10806,2,82.0,0.0,2,111,409.0,1272.0,0.0,0,75,0.0,0.0,565.3092590785556,1681.0,0.0,2306.966489877955,42,0,0,0,0,0,0,0,0,0,,1,,2,127606,2,2,2,0,1,,56.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,1290.73561853229,409.0,58307.0,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02883015761400861,38871.333333333336,9,5,9,9_1,9_4,9_0_1 -10807,1,38.0,250.0,7,111,960.0,0.0,0.0,85,56,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,1.0,2,,5,117763,1,3,0,0,1,,732.0,750.0,42,1.0,0.0,3.0,2.0,1.5,1,1,1035.0140859178,960.0,8364.226878563704,6,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.11477450503648344,5576.151252375803,1,1,1_1,1_0_1,1_4_1,1_0_0 -10808,1,46.0,85.0,7,111,2400.0,0.0,0.0,56,67,0.0,0.0,3317.2181461822333,2580.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,115828,2,2,2,0,1,,900.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,649.178289072713,2400.0,34843.308290916924,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07404578171678845,13401.272419583434,3,2,3_1,3_1_1,3_4_1,3_0_0 -10809,2,42.0,0.0,2,111,430.0,425.0,0.0,85,63,0.0,0.0,594.3349178576501,855.0,0.0,770.8024828601658,10,2,1,2,1,2,2,2,2,2,15.0,8,,2,104707,1,3,0,1,1,700.0,0.0,255.0,42,1.0,1.0,4.0,5.0,2.5999999999999996,2,2,187.059918550647,430.0,55451.613407894416,5,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015418848027211364,21327.543618420932,6,3,6,6_0,6_4,6_0_1 -10810,2,66.0,0.0,2,111,265.0,0.0,0.0,0,77,0.0,0.0,366.2761703076216,265.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,117224,2,1,0,1,1,1063.0,0.0,310.0,11,0.0,2.0,2.0,1.0,1.0,1,1,262.645259439273,265.0,19790.81923726747,0,5,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013390047012353426,19790.81923726747,5,3,5,5_0,5_4,5_0_1 -10811,2,67.0,0.0,1,111,804.0,1524.0,0.0,77,75,0.0,0.0,1111.2680789710482,2328.0,0.0,2764.007020891512,41,0,0,0,0,0,0,0,0,0,,1,,1,111094,2,1,2,0,1,,576.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,922.040438071418,804.0,52639.20361979828,5,5,0,1,113.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04422559309245342,35092.80241319886,9,5,9,9_1,9_4,9_1_0 -10812,2,68.0,0.0,6,111,3000.0,0.0,0.0,34,74,0.0,20.703450096389155,4146.522682727792,3020.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132562,2,1,1,0,1,,616.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,993.120963315982,3000.0,46461.905782452566,5,5,0,1,225.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06499948611967127,30974.603854968376,8,4,8,8_1,8_4,8_0_0 -10813,2,84.0,0.0,2,111,0.0,0.0,200.0,72,75,0.0,0.0,102.18266696750501,200.0,0.0,228.6491549305263,41,2,2,2,1,2,2,2,2,0,,2,,2,110741,2,2,0,1,1,936.0,0.0,383.0,41,0.0,5.0,4.0,2.0,1.5,1,1,828.082733792378,0.0,31150.8916044807,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.006420361976773477,20767.2610696538,5,3,5,5_0,5_4,5_0_1 -10816,2,40.0,0.0,2,111,960.0,0.0,0.0,85,48,0.0,0.0,1326.8872584728933,1041.0,139.3464873394055,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105251,2,1,0,0,1,,0.0,800.0,42,1.0,0.0,3.0,4.0,2.5,2,2,882.329017387171,960.0,26309.413839771245,7,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03956758620088859,10523.765535908498,2,1,2_0,2_0_0,2_4_0,2_0_1 -10817,1,66.0,140.0,1,111,330.0,126.0,0.0,0,77,0.0,0.0,456.1174951000571,456.0,0.0,228.52026550677857,50,0,0,0,0,0,0,0,0,0,,2,,1,118881,2,2,0,1,1,,0.0,198.0,11,0.0,4.0,1.0,1.0,1.0,2,2,798.672728052877,330.0,11454.298329523346,0,5,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.039810382694910634,11454.298329523346,2,1,2_1,2_0_1,2_4_1,2_1_0 -10818,2,38.0,0.0,7,111,0.0,0.0,0.0,47,90,0.0,0.0,0.0,2295.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,70.0,2,,5,117163,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,693.86478185704,0.0,69672.62477668497,1,1,1,2,103.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0329397666207631,33177.44036984998,8,4,8,8_0,8_4,8_0_0 -10819,2,66.0,0.0,1,111,332.0,2463.0,0.0,0,86,0.0,0.0,458.88184355520895,2795.0,0.0,4467.027094787267,71,0,0,0,0,0,0,0,0,0,,1,,1,109610,2,1,2,0,2,,317.0,,11,0.0,1.0,7.0,1.0,1.0,2,2,980.565853662018,332.0,39754.98861276411,0,5,0,1,109.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07030564207236652,39754.98861276411,9,5,9,9_1,9_4,9_1_0 -10820,2,27.0,0.0,9,111,1020.0,0.0,0.0,81,47,0.0,0.0,1409.817712127449,1020.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,2006.0,6,100455,2,2,0,0,1,,0.0,678.0,43,2.0,0.0,2.0,3.0,1.8,2,2,934.492460603095,1020.0,25156.42034695338,4,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04054630928933135,13975.789081640765,3,2,3_0,3_0_0,3_4_0,3_0_0 -10821,2,47.0,0.0,5,111,600.0,1900.0,0.0,37,45,0.0,103.51725048194578,829.3045365455583,2600.0,0.0,3445.940511610153,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,129478,2,1,2,0,2,,900.0,,43,2.0,0.0,6.0,3.0,2.0,4,3,1012.289590292,600.0,68505.83835764896,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037952969591090326,34252.91917882448,9,5,9,9_1,9_4,9_0_0 -10822,2,60.0,0.0,2,111,827.0,1069.0,0.0,46,42,0.0,1242.2070057833494,1143.0580862052946,3096.0,0.0,1938.794951005923,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,122181,2,1,2,0,1,,480.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,1201.15224119299,827.0,74619.72008155202,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041490372740830124,37309.86004077601,9,5,9,9_1,9_4,9_0_1 -10823,2,69.0,0.0,1,111,0.0,1798.0,0.0,78,78,0.0,0.0,0.0,1798.0,0.0,3260.9479157237133,71,0,0,0,0,0,0,0,0,0,,1,,1,108273,2,1,2,0,1,,425.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1257.14030800487,0.0,29763.900834859975,5,5,0,1,120.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06040874850295673,19842.600556573318,5,3,5,5_1,5_4,5_1_0 -10824,2,57.0,0.0,1,111,480.0,1500.0,0.0,38,46,0.0,0.0,663.4436292364467,1980.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,133202,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,906.99465435347,480.0,104632.72374546574,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018923334202946267,52316.36187273287,10,5,10,10_1,10_4,10_1_0 -10825,2,24.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,616.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,10.0,2,,2,101036,2,2,0,1,1,1092.0,0.0,304.0,42,1.0,0.0,3.0,2.0,1.5,2,2,231.951109875939,0.0,20954.428893567016,3,1,2,3,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029397126647012137,13969.61926237801,3,2,3_0,3_0_0,3_4_0,3_0_1 -10826,2,26.0,0.0,2,111,350.0,350.0,0.0,46,46,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,50,0,0,0,0,0,0,0,0,3,35.0,2,,2,120208,2,2,0,1,1,650.0,0.0,395.0,43,2.0,0.0,3.0,3.0,1.8,1,1,834.137354012351,350.0,54812.96811892394,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012770700511624511,30451.648954957745,8,4,8,8_0,8_4,8_0_1 -10827,1,50.0,170.0,2,111,400.0,260.0,0.0,0,54,0.0,0.0,552.8696910303722,660.0,0.0,471.5497542203367,70,2,1,2,1,2,2,2,2,1,10.0,2,,2,112600,2,3,0,1,1,540.0,0.0,340.0,32,2.0,0.0,3.0,3.0,2.0,1,1,789.791419036153,400.0,17477.4296599541,0,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03776298991563118,8738.71482997705,1,1,1_1,1_0_1,1_4_1,1_0_1 -10828,2,36.0,0.0,2,111,120.0,0.0,0.0,0,42,0.0,0.0,165.86090730911167,406.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,2,,2,129859,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,992.741495196589,120.0,38836.9684138641,0,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010453957056418061,38836.9684138641,9,5,9,9_0,9_4,9_0_1 -10829,2,66.0,0.0,2,111,330.0,96.0,0.0,0,75,0.0,0.0,456.1174951000571,426.0,0.0,174.11067848135508,71,0,0,0,0,0,0,0,0,0,,2,,2,104279,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,939.886834324651,330.0,26242.435993264557,0,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016233249082110292,26242.435993264557,7,4,7,7_0,7_4,7_0_1 -10830,2,55.0,0.0,1,111,320.0,1869.0,0.0,31,38,0.0,0.0,442.2957528242978,2189.0,0.0,3389.717271683882,10,0,0,0,0,0,0,0,0,3,75.0,1,,1,100394,2,1,1,0,1,,272.0,,43,2.0,3.0,8.0,3.0,2.0,1,1,858.046313093475,320.0,112106.85419036838,1,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019526013960599272,56053.42709518419,10,5,10,10_1,10_4,10_1_0 -10831,2,51.0,0.0,1,111,869.0,0.0,0.0,0,35,0.0,0.0,1201.1094037634837,869.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,20.0,2,,1,129300,2,2,0,0,1,,0.0,,32,1.0,1.0,3.0,2.0,1.5,1,1,685.718369527369,869.0,51199.622453059776,0,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01697278140667358,34133.081635373186,9,5,9,9_0,9_4,9_1_0 -10832,2,59.0,0.0,1,111,532.0,874.0,0.0,0,37,0.0,0.0,735.3166890703951,1406.0,0.0,1585.1326353406703,12,2,2,2,2,1,2,2,2,2,30.0,2,,1,117122,1,2,0,0,2,,766.0,900.0,12,1.0,2.0,4.0,1.0,1.0,2,2,1217.89888841667,532.0,43201.17945911427,0,1,2,3,93.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0325454077319959,43201.17945911427,9,5,9,9_0,9_4,9_1_0 -10833,2,63.0,0.0,5,111,650.0,850.0,0.0,72,74,0.0,0.0,898.4132479243549,1500.0,0.0,1541.6049657203316,50,2,2,1,2,1,2,2,2,0,,2,,3,108822,2,1,0,0,1,,0.0,,41,1.0,1.0,3.0,3.0,2.0,2,2,972.11608852287,650.0,46759.724268724094,5,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03207888890404122,23379.862134362047,6,3,6,6_0,6_4,6_0_0 -10834,2,70.0,0.0,5,111,1000.0,850.0,0.0,74,75,0.0,0.0,1382.1742275759307,1850.0,0.0,1541.6049657203316,20,2,2,2,1,2,2,2,2,0,,2,,3,120849,2,2,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,986.434809589609,1000.0,66295.01427036032,5,5,0,1,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.027905567565842008,44196.67618024021,10,5,10,10_0,10_4,10_0_0 -10835,2,64.0,0.0,5,111,258.0,1445.0,0.0,77,72,0.0,0.0,356.6009507145901,1703.0,0.0,2620.7284417245637,10,0,0,0,0,0,0,0,0,0,,2,,3,120212,2,2,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1041.82205851377,258.0,80742.2471729419,5,5,0,1,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021091808311358273,53828.16478196127,10,5,10,10_0,10_4,10_0_0 -10836,2,75.0,0.0,1,111,875.0,2295.0,0.0,0,74,0.0,0.0,1209.4024491289392,3170.0,0.0,4162.333407444895,31,0,0,0,0,0,0,0,0,0,,1,,1,108791,2,1,2,0,1,,237.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,981.597013533759,875.0,65619.51173871738,0,5,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048308802001182975,65619.51173871738,10,5,10,10_1,10_4,10_1_0 -10837,2,28.0,0.0,1,111,430.0,1080.0,0.0,46,38,0.0,0.0,594.3349178576501,1510.0,0.0,1958.7451329152448,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,123378,2,3,0,0,1,,0.0,1420.0,43,2.0,0.0,3.0,3.0,1.8,3,3,1009.0670820695,430.0,76069.44981603259,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019850281599930127,42260.80545335144,9,5,9,9_0,9_4,9_1_0 -10838,2,37.0,0.0,1,111,600.0,950.0,0.0,37,47,0.0,0.0,829.3045365455583,1550.0,0.0,1722.9702558050765,50,2,2,1,1,1,2,2,2,0,,2,,1,119052,2,3,0,0,2,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,601.388423252824,600.0,155291.71902734286,1,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.00998121477248304,64704.882928059524,10,5,10,10_0,10_4,10_1_0 -10841,2,79.0,0.0,1,111,295.0,783.0,0.0,48,74,0.0,0.0,407.7413971348995,1078.0,0.0,1420.0902213635525,42,0,0,0,0,0,0,0,0,0,,2,,1,118666,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,749.7088919986,295.0,54212.28065299998,1,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019884793390265644,36141.52043533332,9,5,9,9_0,9_4,9_1_0 -10842,2,39.0,0.0,2,111,1100.0,1020.0,0.0,37,37,0.0,0.0,1520.3916503335236,2120.0,0.0,1849.925958864398,70,0,0,0,0,0,0,0,0,3,60.0,2,,2,129200,2,1,0,0,1,,0.0,1300.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1117.73569139954,1100.0,83164.18429542538,1,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025491742845322598,39601.99252163113,9,5,9,9_0,9_4,9_0_1 -10843,2,74.0,0.0,6,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,181.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,103118,1,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,934.073473707384,0.0,55137.44929784772,0,5,0,1,54.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0032827053537107546,55137.44929784772,10,5,10,10_0,10_4,10_0_0 -10844,2,54.0,0.0,1,111,1200.0,150.0,0.0,0,67,0.0,0.0,1658.6090730911167,1350.0,0.0,272.04793512711734,60,2,2,2,2,1,2,2,2,2,10.0,2,,1,102531,2,2,0,0,1,,0.0,570.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1108.61274034313,1200.0,20134.60097937242,0,1,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.06704875857152837,20134.60097937242,5,3,5,5_0,5_4,5_1_0 -10847,2,45.0,0.0,1,111,1000.0,0.0,0.0,84,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,65.0,2,,1,127235,2,3,0,0,1,,0.0,730.0,42,1.0,0.0,2.0,2.0,1.5,2,2,882.918205656466,1000.0,64658.24827099926,3,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015465930901943772,43105.49884733284,9,5,9,9_0,9_4,9_1_0 -10848,1,30.0,300.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,252.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,1,119272,2,1,0,1,1,,0.0,900.0,32,1.0,0.0,2.0,2.0,1.3,2,2,856.736419176899,0.0,9237.308568148876,0,1,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02728067360106602,7105.621975499135,1,1,1_1,1_0_1,1_4_1,1_1_0 -10849,2,79.0,0.0,2,111,300.0,0.0,0.0,0,78,0.0,0.0,414.65226827277917,300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,104634,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,950.373995054701,300.0,41647.308163499845,0,5,0,1,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007203346704239657,41647.308163499845,9,5,9,9_0,9_4,9_0_1 -10850,2,35.0,0.0,1,111,360.0,0.0,0.0,0,38,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,2,,1,113783,1,3,0,0,1,,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1019.2329213574,360.0,26718.777382254444,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013473670402265403,26718.777382254444,7,4,7,7_0,7_4,7_1_0 -10851,2,42.0,0.0,5,111,800.0,0.0,0.0,0,22,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,60,2,2,2,1,2,2,2,2,0,,2,,3,120918,1,2,0,0,1,,0.0,907.0,12,1.0,0.0,2.0,1.0,1.0,3,1,1129.00674278664,800.0,9731.663329580924,0,4,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.08220588535654269,9731.663329580924,1,1,1_0,1_0_0,1_4_0,1_0_0 -10852,2,39.0,0.0,1,111,500.0,0.0,0.0,0,33,0.0,0.0,691.0871137879653,500.0,0.0,0.0,60,2,2,1,2,1,2,2,2,3,60.0,2,,1,120857,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1108.61274034313,500.0,63933.656816994255,0,1,0,1,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.00782060693683166,63933.656816994255,10,5,10,10_0,10_4,10_1_0 -10853,2,42.0,0.0,7,111,580.0,0.0,0.0,0,54,0.0,0.0,801.6610519940398,580.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,8,,5,110865,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,782.745654398385,580.0,60310.134072061206,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009616957563168247,60310.134072061206,10,5,10,10_0,10_4,10_0_0 -10854,2,67.0,0.0,6,111,500.0,0.0,0.0,0,74,0.0,0.0,691.0871137879653,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,130341,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,4,2,1073.2425880076,500.0,31119.197093648552,0,5,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016067252586733683,31119.197093648552,8,4,8,8_0,8_4,8_0_0 -10855,2,63.0,0.0,1,111,550.0,900.0,0.0,0,74,0.0,0.0,760.1958251667618,1450.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,8,,1,121957,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,891.803245259116,550.0,33224.94317555962,0,5,0,1,46.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0436419106072881,33224.94317555962,8,4,8,8_0,8_4,8_1_0 -10856,2,59.0,0.0,1,111,650.0,1800.0,0.0,34,35,0.0,0.0,898.4132479243549,2450.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,106477,2,1,1,0,1,,0.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,874.740224587985,650.0,63059.886348400294,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0388519571136549,25223.95453936012,7,4,7,7_1,7_4,7_1_0 -10858,2,44.0,0.0,2,111,800.0,0.0,0.0,0,54,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,2,2,1,2,1,2,2,2,3,60.0,8,,2,110650,2,2,0,0,1,,0.0,,32,1.0,0.0,2.0,2.0,1.5,2,2,1351.30902241376,800.0,29878.80786618814,0,1,1,2,20.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026774829959173397,19919.205244125427,5,3,5,5_0,5_4,5_0_1 -10859,2,28.0,0.0,1,111,550.0,0.0,0.0,0,54,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,120.0,2,,1,100051,2,1,0,0,1,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,2,2,673.684582358172,550.0,13738.363164314196,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.040033881287156625,13738.363164314196,3,2,3_0,3_0_0,3_4_0,3_1_0 -10860,2,65.0,0.0,5,111,720.0,0.0,0.0,0,35,0.0,0.0,995.16544385467,720.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,30.0,2,,3,117854,1,2,0,1,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,933.997231889776,720.0,37830.747804917766,0,1,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01903213765989591,37830.747804917766,9,5,9,9_0,9_4,9_0_0 -10861,2,48.0,0.0,2,111,200.0,150.0,0.0,65,54,0.0,0.0,276.4348455151861,350.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,105127,1,2,0,1,1,1200.0,0.0,408.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,1,1,176.924036898572,200.0,53945.500455981084,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0064880295305740285,20748.269406146574,5,3,5,5_0,5_4,5_0_1 -10862,2,33.0,0.0,2,111,400.0,0.0,0.0,52,54,0.0,0.0,552.8696910303722,400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,75.0,2,,2,116898,2,2,0,1,1,574.0,0.0,430.0,43,2.0,0.0,3.0,2.0,1.5,2,2,232.125416352434,400.0,41053.48052964342,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009743388254527472,27368.98701976228,7,4,7,7_0,7_4,7_0_1 -10863,1,42.0,456.0,2,111,240.0,0.0,0.0,85,55,0.0,0.0,331.72181461822333,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,103941,2,2,0,1,1,280.0,0.0,231.0,42,1.0,0.0,3.0,5.0,2.4,2,2,176.924036898572,240.0,12343.312295921103,6,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019443727440916242,5143.046789967127,1,1,1_1,1_0_1,1_4_1,1_0_1 -10864,2,41.0,0.0,1,111,400.0,0.0,0.0,0,47,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,102832,1,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,913.901952875965,400.0,9177.602983234992,0,1,0,1,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04358436519107355,9177.602983234992,1,1,1_0,1_0_0,1_4_0,1_1_0 -10865,2,44.0,0.0,2,111,200.0,150.0,0.0,37,22,0.0,0.0,276.4348455151861,350.0,0.0,272.04793512711734,31,0,0,0,0,0,0,0,0,0,,2,,2,131833,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,3,2,792.964378707837,200.0,34973.298604377625,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01000763479473996,16653.9517163703,4,2,4_0,4_0_0,4_4_0,4_0_1 -10866,2,28.0,0.0,5,111,600.0,200.0,0.0,0,67,0.0,0.0,829.3045365455583,800.0,0.0,362.73058016948977,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,128536,2,2,0,0,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1069.02680258318,600.0,17264.99554891338,0,1,2,3,26.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04633653091502536,17264.99554891338,4,2,4_0,4_0_0,4_4_0,4_0_0 -10867,2,73.0,0.0,2,111,600.0,0.0,0.0,0,78,0.0,0.0,829.3045365455583,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,120772,2,2,0,0,1,,0.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,1231.67000173587,600.0,13713.261944060765,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04375326617748018,13713.261944060765,3,2,3_0,3_0_0,3_4_0,3_0_1 -10868,2,50.0,0.0,7,111,2000.0,0.0,0.0,74,38,0.0,51.75862524097289,2764.3484551518613,2050.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,124936,2,2,1,0,1,,400.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,874.377086353767,2000.0,113081.24155292584,5,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018128559360046738,75387.49436861723,10,5,10,10_1,10_4,10_0_0 -10869,2,57.0,0.0,5,111,280.0,580.0,0.0,0,54,0.0,0.0,387.00878372126056,860.0,0.0,1051.9186824915203,10,0,0,0,0,0,0,0,0,3,45.0,2,,3,120299,2,1,0,0,1,,0.0,534.0,12,1.0,2.0,3.0,1.0,1.0,3,2,1254.96572959384,280.0,40204.760254192326,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021390501884918565,40204.760254192326,9,5,9,9_0,9_4,9_0_0 -10870,2,50.0,0.0,7,111,200.0,600.0,0.0,0,46,0.0,0.0,276.4348455151861,800.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,3,60.0,2,,5,111377,2,1,0,0,1,,0.0,539.0,32,2.0,0.0,3.0,3.0,2.0,2,2,665.885346266093,200.0,30681.005628795945,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026074764617531068,15340.502814397973,3,2,3_0,3_0_0,3_4_0,3_0_0 -10871,2,65.0,0.0,2,111,100.0,100.0,0.0,0,77,0.0,0.0,138.21742275759306,200.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,2,108398,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,993.487519949589,100.0,19197.21385707607,0,5,0,1,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01041817846532351,19197.21385707607,5,3,5,5_0,5_4,5_0_1 -10872,2,86.0,0.0,1,111,296.0,737.0,0.0,75,75,0.0,0.0,409.12357136247545,1033.0,0.0,1336.66218792457,71,0,0,0,0,0,0,0,0,0,,2,,1,105578,2,2,0,0,1,,0.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1081.18667454371,296.0,54972.12953618134,5,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018791340424971242,36648.08635745422,9,5,9,9_0,9_4,9_1_0 -10873,2,47.0,0.0,9,111,1500.0,0.0,0.0,45,33,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,116704,2,1,1,0,1,,600.0,,43,2.0,2.0,3.0,3.0,1.8,2,2,1539.96848896853,1500.0,53695.99647087419,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02793504355233692,29831.10915048566,8,4,8,8_1,8_4,8_0_0 -10874,2,71.0,0.0,5,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,119002,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,264.393902008212,300.0,17522.420460611545,0,5,0,1,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017120922344853365,17522.420460611545,4,2,4_0,4_0_0,4_4_0,4_0_0 -10875,2,65.0,0.0,2,111,160.0,0.0,0.0,0,75,0.0,0.0,221.1478764121489,160.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,110422,2,2,0,1,1,720.0,0.0,258.0,11,0.0,0.0,2.0,1.0,1.0,1,1,326.238951844348,160.0,36788.68254967112,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0043491636261769415,36788.68254967112,9,5,9,9_0,9_4,9_0_1 -10876,2,53.0,0.0,2,111,360.0,0.0,0.0,75,45,0.0,0.0,497.582721927335,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,5.0,2,,2,129776,2,2,0,1,2,468.0,0.0,421.0,42,1.0,1.0,2.0,2.0,1.5,1,1,231.892821998394,360.0,50554.888827345625,5,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0071209730324888485,33703.259218230414,9,5,9,9_0,9_4,9_0_1 -10877,2,68.0,0.0,2,111,300.0,1200.0,0.0,75,75,0.0,0.0,414.65226827277917,1560.0,103.2196202514115,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,2,115872,2,2,1,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1258.08502299082,300.0,49297.51850393633,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03164459484660342,32865.01233595755,8,4,8,8_1,8_4,8_0_1 -10878,1,52.0,347.0,2,111,200.0,180.0,0.0,86,42,0.0,0.0,276.4348455151861,380.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,116638,2,2,0,1,1,600.0,0.0,337.0,42,4.0,0.0,3.0,5.0,3.0,1,1,629.415179832279,200.0,19763.36828261771,7,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01922749171932488,6587.789427539236,1,1,1_1,1_0_1,1_4_1,1_0_1 -10879,2,80.0,0.0,5,111,200.0,0.0,0.0,0,77,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,109110,2,2,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,884.077235810824,200.0,23261.08463144783,0,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008598051344932125,23261.08463144783,6,3,6,6_0,6_4,6_0_0 -10880,2,63.0,0.0,2,111,300.0,1500.0,0.0,85,64,0.0,0.0,414.65226827277917,1800.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,3,20.0,2,,2,103116,2,2,0,0,1,,600.0,675.0,42,2.0,3.0,5.0,4.0,2.5,3,3,1047.24786034996,300.0,34383.485806095196,6,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.052350713076360404,13753.394322438078,3,2,3_0,3_0_0,3_4_0,3_0_1 -10881,1,48.0,54.0,7,111,300.0,0.0,0.0,78,67,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,100985,2,2,0,1,1,600.0,0.0,454.0,42,1.0,2.0,3.0,2.0,1.5,2,2,537.880722274098,300.0,2768.525654929994,7,4,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10836092469137186,1845.6837699533291,1,1,1_1,1_0_1,1_4_1,1_0_0 -10882,1,64.0,400.0,2,111,900.0,0.0,0.0,68,64,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,126649,2,2,0,1,2,432.0,0.0,700.0,43,2.0,0.0,3.0,4.0,2.3,2,2,1083.00712553722,900.0,5970.709305658183,1,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1507358596653012,2595.9605676774713,1,1,1_1,1_0_1,1_4_1,1_0_1 -10883,2,54.0,0.0,2,111,2000.0,0.0,0.0,46,37,0.0,0.0,2764.3484551518613,2080.0,137.62616033521533,0.0,31,0,0,0,0,0,0,0,0,3,40.0,1,,2,129451,2,2,3,0,2,,200.0,,43,2.0,0.0,5.0,2.0,1.5,4,2,1179.29287638607,2000.0,94762.51107557728,4,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021949608303869328,63175.007383718184,10,5,10,10_1,10_4,10_0_1 -10884,2,39.0,0.0,2,111,280.0,400.0,0.0,68,63,0.0,0.0,387.00878372126056,680.0,0.0,725.4611603389795,33,0,0,0,0,0,0,0,0,0,,2,,2,132204,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,846.775936648773,280.0,56049.96739831404,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012132032034338956,31138.870776841133,8,4,8,8_0,8_4,8_0_1 -10885,2,65.0,0.0,2,111,200.0,100.0,0.0,0,75,0.0,0.0,276.4348455151861,300.0,0.0,181.36529008474488,70,0,0,0,0,0,0,0,0,0,,2,,2,114837,2,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,933.793436503174,200.0,39676.98244457998,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007561058868804703,39676.98244457998,9,5,9,9_0,9_4,9_0_1 -10886,2,59.0,0.0,2,111,200.0,1100.0,0.0,43,37,0.0,0.0,276.4348455151861,1300.0,0.0,1995.0181909321939,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,120185,2,1,1,0,1,,350.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1115.49515971746,200.0,110248.18163276793,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01179157769994108,73498.78775517862,10,5,10,10_1,10_4,10_0_1 -10887,2,60.0,0.0,5,111,220.0,80.0,0.0,0,46,0.0,0.0,304.0783300667047,300.0,0.0,145.09223206779592,60,0,0,0,0,0,0,0,0,2,40.0,2,,3,117683,2,2,0,1,1,650.0,0.0,431.0,12,1.0,3.0,3.0,1.0,1.0,4,3,999.006075400334,220.0,29345.271650416544,0,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010223112042506569,29345.271650416544,8,4,8,8_0,8_4,8_0_0 -10888,1,34.0,170.0,5,111,350.0,0.0,0.0,35,52,0.0,0.0,483.76097965157567,350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,3,124612,2,2,0,1,1,750.0,0.0,490.0,43,2.0,0.0,4.0,4.0,2.1,2,2,828.067760815651,350.0,37720.17362882919,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00927885442532794,17961.98744229961,4,2,4_1,4_0_1,4_4_1,4_0_0 -10890,2,29.0,0.0,1,111,250.0,900.0,0.0,42,43,0.0,0.0,345.54355689398267,1150.0,0.0,1632.287610762704,44,0,0,0,0,0,0,0,0,4,50.0,2,,1,118012,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,4,4,749.48412768616,250.0,56646.17882684947,1,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020301457641391983,37764.11921789965,9,5,9,9_0,9_4,9_1_0 -10891,1,74.0,183.0,2,111,400.0,1200.0,0.0,86,78,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,0,,2,,2,100884,2,3,0,0,1,,0.0,351.0,41,0.0,0.0,3.0,2.0,1.5,1,1,1037.3774547276,400.0,14535.342280269271,6,5,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11007652720857425,9690.228186846181,1,1,1_1,1_0_1,1_4_1,1_0_1 -10892,2,55.0,0.0,1,111,1200.0,0.0,0.0,37,42,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,1,107638,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,724.003592299485,1200.0,89706.24599705027,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013376994953500324,59804.16399803351,10,5,10,10_0,10_4,10_1_0 -10893,1,31.0,300.0,1,111,150.0,700.0,0.0,85,46,0.0,0.0,207.32613413638958,850.0,0.0,1269.5570305932142,33,0,0,0,0,0,0,0,0,0,,2,,1,110946,2,2,0,0,1,,0.0,550.0,42,1.0,0.0,3.0,3.0,1.8,1,1,1124.12189364498,150.0,10722.673457463661,6,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07927127533743425,5957.040809702034,1,1,1_1,1_0_1,1_4_1,1_1_0 -10894,1,45.0,102.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,446.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,106430,2,1,1,0,1,,0.0,350.0,12,1.0,4.0,2.0,1.0,1.0,1,1,1417.64827551312,0.0,17847.3423555738,0,1,2,3,42.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.02498971505753137,17847.3423555738,4,2,4_1,4_1_1,4_2_1,4_1_0 -10895,2,78.0,0.0,1,221,880.0,800.0,0.0,86,78,0.0,0.0,1216.313320266819,1800.0,206.439240502823,1450.922320677959,20,2,2,2,1,2,2,2,2,0,,1,,1,129674,1,2,2,0,1,,120.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,260.140317768899,880.0,14942.32260133809,6,5,0,1,80.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.12046320026839799,9961.54840089206,2,1,2_0,2_1_0,2_1_0,2_1_0 -10896,2,65.0,0.0,5,111,2400.0,0.0,0.0,75,75,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,117953,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1123.86764392545,2400.0,46628.01095992745,5,5,0,1,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05147120691171198,31085.340639951635,8,4,8,8_1,8_2,8_0_0 -10897,2,63.0,0.0,2,211,450.0,0.0,0.0,0,75,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104277,2,1,0,0,1,,100.0,347.0,11,0.0,3.0,1.0,1.0,1.0,5,5,582.315123751508,450.0,17263.155341420403,0,5,2,3,30.0,1,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02606707702619643,17263.155341420403,4,2,4_0,4_0_0,4_1_0,4_0_1 -10898,2,34.0,0.0,9,212,1500.0,0.0,0.0,55,33,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,2,2,2,1,2,2,2,2,2,10.0,1,2011.0,6,119582,2,1,1,0,1,,100.0,726.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1418.45329956065,1500.0,53232.5179769767,1,1,2,3,124.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.02817826503433027,35488.345317984466,9,5,9,9_1,9_0,9_0_0 -10899,1,64.0,254.0,5,111,310.0,20.0,0.0,0,78,1039.5350744045286,0.0,428.47401054853844,1026.0,0.0,36.27305801694898,41,2,2,1,1,1,1,2,2,0,,2,,3,116750,1,3,0,1,2,687.0,0.0,264.0,11,0.0,5.0,3.0,1.0,1.0,1,1,435.596392482786,310.0,6060.0,0,7,2,3,70.0,7,5,2,1,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.16930693069306932,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -10900,2,58.0,0.0,2,211,300.0,0.0,0.0,0,77,0.0,103.51725048194578,414.65226827277917,460.0,103.2196202514115,0.0,31,2,2,2,1,2,2,2,2,0,,2,,2,103332,1,3,0,1,1,,0.0,430.0,11,0.0,0.0,3.0,1.0,1.0,2,2,366.069403384888,300.0,18421.96322222554,0,5,2,3,90.0,1,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02497019424319684,18421.96322222554,4,2,4_0,4_0_0,4_1_0,4_0_1 -10901,1,77.0,40.0,2,111,0.0,0.0,40.0,0,77,684.0618736742443,0.0,20.436533393501,498.0,0.0,45.729830986105256,10,0,0,0,0,0,0,0,0,0,,2,,2,129885,2,2,0,1,1,456.0,0.0,250.0,11,0.0,2.0,2.0,1.0,1.0,2,2,471.351629124627,0.0,15745.418127690657,0,5,2,3,45.0,7,5,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03162824867281187,15745.418127690657,3,2,3_1,3_0_1,3_2_1,3_0_1 -10902,2,55.0,0.0,2,111,168.0,1466.0,0.0,64,55,0.0,0.0,232.20527023275633,1634.0,0.0,2658.81515264236,33,0,0,0,0,0,0,0,0,4,20.0,1,,2,101442,2,1,1,0,1,,249.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,315.280498850065,168.0,16288.768704021742,1,1,0,1,91.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10031451914450482,10859.179136014494,2,1,2_0,2_1_0,2_2_0,2_0_1 -10903,2,57.0,0.0,6,111,600.0,0.0,0.0,0,46,0.0,0.0,829.3045365455583,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,15.0,2,,4,116136,2,1,0,1,1,600.0,0.0,547.0,22,2.0,2.0,5.0,2.0,1.5,1,1,326.394182211997,600.0,30187.262796012776,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019875932576412653,20124.84186400852,5,3,5,5_0,5_4,5_0_0 -10904,2,41.0,0.0,9,112,3000.0,0.0,0.0,52,37,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,102801,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1265.54111295737,3000.0,57048.660739818646,1,1,1,2,164.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052586685841444644,27166.028923723163,7,4,7,7_1,7_0,7_0_0 -10905,2,82.0,0.0,7,111,296.0,1499.0,0.0,77,77,0.0,0.0,409.12357136247545,1795.0,0.0,2718.665698370326,50,1,2,2,1,1,2,2,2,0,,1,,5,131082,2,1,1,0,1,,192.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1127.23169464089,296.0,25141.22698997089,5,5,0,1,113.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07139667450264241,16760.81799331393,4,2,4_0,4_1_0,4_2_0,4_0_0 -10906,1,51.0,234.0,2,112,350.0,220.0,0.0,0,85,0.0,0.0,483.76097965157567,570.0,0.0,399.00363818643876,31,2,1,2,2,1,1,2,2,0,,2,,2,104765,1,2,0,1,1,592.0,0.0,209.0,31,0.0,0.0,3.0,2.0,1.3,2,2,257.465416049333,350.0,12316.687521203372,0,7,2,3,65.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04627867671553216,9474.375016310285,1,1,1_1,1_0_1,1_2_1,1_0_1 -10907,2,33.0,0.0,9,120,0.0,0.0,0.0,43,37,0.0,0.0,0.0,2853.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2013.0,6,123325,2,1,1,0,1,,116.0,,43,2.0,0.0,5.0,2.0,1.5,4,3,973.414545411024,0.0,47201.14507293371,1,1,1,2,120.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060443448894971406,31467.43004862247,8,4,8,8_1,8_0,8_0_0 -10908,2,60.0,0.0,2,111,432.0,612.0,0.0,85,65,0.0,0.0,597.099266312802,1044.0,0.0,1109.9555753186387,31,0,0,0,0,0,0,0,0,0,,2,,2,115843,2,2,0,1,1,,104.0,,42,1.0,5.0,3.0,2.0,1.5,2,2,1410.62558859744,432.0,29713.953553531795,6,4,0,1,51.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035135008140844,19809.302369021196,5,3,5,5_0,5_2,5_0_1 -10909,1,53.0,300.0,2,112,500.0,250.0,0.0,85,63,0.0,0.0,691.0871137879653,750.0,0.0,453.4132252118622,70,2,1,2,2,1,1,2,2,0,,2,,2,122559,1,3,0,1,2,1000.0,0.0,338.0,42,1.0,4.0,5.0,4.0,2.5,3,3,251.489169719978,500.0,18022.38535819998,6,4,2,3,100.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04161491307024786,7208.9541432799915,1,1,1_1,1_0_1,1_2_1,1_0_1 -10911,2,83.0,0.0,2,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,288.0,0.0,0.0,43,2,1,2,2,1,2,2,2,0,,2,,2,117629,2,1,0,1,1,416.0,0.0,400.0,11,0.0,1.0,3.0,1.0,1.0,2,2,289.957721500466,0.0,14906.150799323526,0,5,2,3,60.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019320883296918615,14906.150799323526,3,2,3_0,3_0_0,3_2_0,3_0_1 -10912,2,62.0,0.0,5,112,250.0,0.0,0.0,0,52,0.0,0.0,345.54355689398267,250.0,0.0,0.0,41,2,2,2,2,1,2,2,2,2,15.0,2,,3,117323,1,1,0,1,1,973.0,0.0,340.0,12,1.0,0.0,2.0,1.0,1.0,1,1,428.728755998182,250.0,22693.774523814714,0,1,2,3,59.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.011016237062620476,22693.774523814714,6,3,6,6_0,6_2,6_0_0 -10913,1,33.0,491.0,9,111,540.0,990.0,0.0,67,81,0.0,0.0,746.3740828910024,1530.0,0.0,1795.5163718389745,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,129471,2,1,1,0,1,,250.0,768.0,43,2.0,0.0,4.0,5.0,2.4,1,1,3655.44953536723,540.0,15415.199327564815,4,4,2,3,100.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09925268999046402,6422.999719818673,1,1,1_1,1_1_1,1_2_1,1_0_0 -10914,2,62.0,0.0,2,111,423.0,203.4,0.0,78,56,0.0,0.0,584.6596982646187,626.0,0.0,368.8970000323711,50,0,0,0,0,0,0,0,0,0,,2,,2,109956,1,2,0,1,1,,0.0,313.0,42,1.0,2.0,4.0,2.0,1.5,1,1,1324.94789029531,423.0,26586.148380517487,5,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023546095923346954,17724.09892034499,4,2,4_0,4_0_0,4_2_0,4_0_1 -10915,2,72.0,0.0,5,112,723.0,1585.0,0.0,0,77,0.0,0.0,999.3119665373978,2308.0,0.0,2874.6398478432066,70,0,0,0,0,0,0,0,0,0,,1,,3,106860,2,1,2,0,1,,201.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,444.618591974379,723.0,10860.904713305506,0,5,0,1,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21250531709135695,10860.904713305506,2,1,2_0,2_1_0,2_2_0,2_0_0 -10916,2,37.0,0.0,9,400,0.0,0.0,0.0,56,62,0.0,0.0,0.0,1329.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2011.0,6,124776,2,1,1,0,1,,1142.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,1193.45600883837,0.0,29916.978805442366,1,1,1,2,129.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044422934837198,12465.407835600987,2,1,2_0,2_1_0,2_0_0,2_0_0 -10917,2,58.0,0.0,2,112,309.0,117.0,0.0,78,47,0.0,0.0,427.09183632096256,426.0,0.0,212.19738939915152,50,2,1,2,1,1,2,2,2,2,5.0,2,,2,123341,1,3,0,1,2,1200.0,0.0,250.0,42,1.0,2.0,4.0,2.0,1.5,1,1,271.921821023544,309.0,39107.344098386115,5,1,2,3,82.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010893094630212442,26071.56273225741,7,4,7,7_0,7_2,7_0_1 -10918,2,37.0,0.0,9,112,1000.0,0.0,0.0,68,64,0.0,621.1035028916747,1382.1742275759307,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,126078,2,1,1,0,1,,130.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1074.56789399393,1000.0,41687.75609023707,1,1,1,2,94.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03838057381972418,19851.312423922413,5,3,5,5_1,5_0,5_0_0 -10919,2,63.0,0.0,2,111,260.0,72.0,0.0,0,77,2253.819579420163,0.0,359.36529916974195,1841.0,0.0,130.5830088610163,33,0,0,0,0,0,0,0,0,0,,2,,2,120321,2,1,0,1,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1559.50645638222,260.0,14263.456535154904,0,5,0,1,65.0,7,5,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12907109826166735,14263.456535154904,3,2,3_0,3_0_0,3_2_0,3_0_1 -10920,2,61.0,0.0,1,111,300.0,760.0,0.0,0,75,0.0,0.0,414.65226827277917,1060.0,0.0,1378.376204644061,20,0,0,0,0,0,0,0,0,0,,2,,1,117049,2,1,0,0,2,,0.0,340.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1741.12761478638,300.0,16507.23371353462,0,5,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06421427226361279,16507.23371353462,4,2,4_0,4_0_0,4_2_0,4_1_0 -10921,1,57.0,258.0,2,112,350.0,71.0,0.0,0,77,0.0,0.0,483.76097965157567,421.0,0.0,128.76935596016887,50,2,2,2,2,1,1,2,2,0,,2,,2,132256,1,3,0,1,2,60.0,0.0,251.0,21,1.0,2.0,4.0,2.0,1.5,4,4,271.921821023544,350.0,35506.28545088965,0,7,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.01185705557913976,23670.856967259766,6,3,6,6_0,6_2,6_0_1 -10922,2,58.0,0.0,1,111,400.0,500.0,0.0,72,22,0.0,0.0,552.8696910303722,900.0,0.0,906.8264504237244,20,0,0,0,0,0,0,0,0,0,,1,,1,129702,2,1,2,0,1,,220.0,,42,1.0,4.0,2.0,2.0,1.5,1,1,1027.78798597897,400.0,46862.449683425344,5,1,0,1,50.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01920514198638486,31241.63312228356,8,4,8,8_1,8_2,8_1_0 -10923,1,54.0,154.0,2,112,150.0,75.0,0.0,0,68,0.0,0.0,207.32613413638958,225.0,0.0,136.02396756355867,41,0,0,0,0,0,0,0,0,3,35.0,2,,2,102287,1,1,0,1,1,,0.0,255.0,12,1.0,0.0,3.0,1.0,1.0,2,2,289.957721500466,150.0,11027.475932053461,0,1,2,3,60.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020403581144620285,11027.475932053461,2,1,2_1,2_0_1,2_2_1,2_0_1 -10924,1,28.0,237.0,1,111,162.0,540.0,0.0,0,85,0.0,0.0,223.91222486730075,702.0,0.0,979.3725664576224,30,0,0,0,0,0,0,0,0,0,,2,,1,114868,1,2,0,1,1,,0.0,225.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1636.04404528918,162.0,6060.0,0,7,2,3,35.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11584158415841585,6060.0,1,1,1_1,1_0_1,1_2_1,1_1_0 -10925,2,59.0,0.0,2,111,170.0,61.0,0.0,0,67,0.0,0.0,234.9696186879082,231.0,0.0,110.63282695169438,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,118543,2,2,0,1,2,,60.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1729.53590056735,170.0,7961.553522819775,0,1,0,1,20.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029014437865411198,7961.553522819775,1,1,1_0,1_0_0,1_2_0,1_0_1 -10926,2,78.0,0.0,2,221,0.0,0.0,0.0,0,77,0.0,0.0,0.0,361.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,118731,2,1,0,1,1,,138.0,413.0,11,0.0,0.0,3.0,1.0,1.0,1,1,385.299321395868,0.0,18292.608035749647,0,5,2,3,75.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019734747461624375,18292.608035749647,4,2,4_0,4_0_0,4_1_0,4_0_1 -10927,2,30.0,0.0,9,112,1700.0,0.0,0.0,54,55,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,11.0,1,2012.0,6,113457,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,189.638446340646,1700.0,49519.57130582696,1,1,1,2,108.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03432986100588398,33013.04753721797,8,4,8,8_1,8_1,8_0_0 -10929,1,77.0,200.0,2,221,0.0,0.0,0.0,77,78,0.0,0.0,0.0,1714.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124286,1,2,5,0,2,,765.0,350.0,41,0.0,5.0,3.0,2.0,1.5,1,1,235.561003978792,0.0,16314.380444100185,5,5,2,3,80.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10506068593121712,10876.253629400124,2,1,2_1,2_1_1,2_1_1,2_0_1 -10930,2,42.0,0.0,9,111,1400.0,0.0,0.0,52,47,0.0,0.0,1935.0439186063027,1458.0,99.77896624303112,0.0,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,132484,2,1,1,0,1,,650.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,522.053363535437,1400.0,41522.620870252664,1,1,1,2,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03511339047108488,19772.67660488222,5,3,5,5_1,5_4,5_0_0 -10931,2,73.0,0.0,2,211,630.0,850.0,0.0,77,78,0.0,0.0,870.7697633728362,1480.0,0.0,1541.6049657203316,71,0,0,0,0,0,0,0,0,0,,2,,2,121513,2,1,0,0,1,,750.0,500.0,41,0.0,3.0,4.0,2.0,1.5,3,3,383.391556272705,630.0,29335.03751684427,5,5,2,3,80.0,2,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05045161435877419,19556.69167789618,5,3,5,5_0,5_1,5_0_1 -10932,2,80.0,0.0,2,111,300.0,90.0,0.0,0,77,0.0,0.0,414.65226827277917,390.0,0.0,163.2287610762704,71,0,0,0,0,0,0,0,0,0,,2,,2,123074,2,1,0,1,1,,641.0,641.0,11,0.0,5.0,5.0,1.0,1.0,1,1,240.066502568931,300.0,13119.828336544857,0,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02972599869418014,13119.828336544857,2,1,2_0,2_0_0,2_4_0,2_0_1 -10933,2,59.0,0.0,1,111,817.0,1807.0,0.0,43,43,0.0,139.7482881506268,1129.2363439295352,2759.0,0.0,3277.2707918313404,71,0,0,0,0,0,0,0,0,1,1.0,1,,1,126476,2,1,2,0,1,,434.0,,43,2.0,2.0,7.0,4.0,2.5,1,1,985.42320156924,817.0,66723.57255061972,1,1,0,1,180.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04134970437781774,26689.429020247888,7,4,7,7_1,7_2,7_1_0 -10934,2,41.0,0.0,9,112,840.0,0.0,0.0,68,21,0.0,414.0690019277831,1161.0263511637818,1340.0,172.03270041901916,0.0,50,2,2,2,1,1,2,2,2,2,120.0,1,2011.0,6,117121,2,1,1,0,1,,271.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,736.8119501923,840.0,22684.802562039666,1,1,1,2,85.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.059070384074769576,12602.668090022036,2,1,2_0,2_1_0,2_0_0,2_0_0 -10935,1,56.0,200.0,2,111,209.0,216.6,0.0,0,56,985.7660188318805,0.0,288.8744135633695,1086.0,0.0,392.8372183235574,71,2,1,2,1,1,1,2,2,0,,2,,2,110711,1,2,0,1,1,670.0,211.0,327.0,12,1.0,3.0,4.0,1.0,1.0,2,2,1393.15029168408,209.0,15082.210009184724,0,1,2,3,70.0,7,5,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07200536256547618,15082.210009184724,3,2,3_1,3_0_1,3_2_1,3_0_1 -10936,2,52.0,0.0,2,211,850.0,700.0,0.0,52,62,0.0,0.0,1174.848093439541,1550.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,107039,1,3,0,0,1,,288.0,311.0,43,2.0,1.0,4.0,2.0,1.5,3,2,341.59208328793,850.0,31758.597118821337,1,1,2,3,75.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04880568225985687,21172.398079214225,5,3,5,5_0,5_1,5_0_1 -10937,2,47.0,0.0,1,111,600.0,2500.0,0.0,33,37,0.0,0.0,829.3045365455583,3100.0,0.0,4534.132252118622,50,0,0,0,0,0,0,0,0,0,,1,,1,123050,1,1,2,0,1,,258.0,,43,2.0,0.0,8.0,4.0,2.3,1,1,1091.39995818425,600.0,105450.50385615927,1,1,0,1,130.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029397678404918613,45848.04515485186,10,5,10,10_1,10_2,10_1_0 -10938,2,52.0,0.0,2,211,480.0,60.0,0.0,0,55,0.0,0.0,663.4436292364467,540.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,8,,2,130256,2,1,0,1,1,564.0,80.0,245.0,12,1.0,4.0,2.0,1.0,1.0,2,2,306.263532452823,480.0,13480.041800643086,0,4,2,3,49.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040059222959845604,13480.041800643086,3,2,3_0,3_0_0,3_1_0,3_0_1 -10939,2,41.0,0.0,9,112,1656.0,0.0,0.0,63,33,0.0,0.0,2288.880520865741,1656.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,50.0,1,2011.0,6,120317,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,192.757625131642,1656.0,50909.152411176394,1,1,1,2,91.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03252853213161035,28282.862450653553,8,4,8,8_1,8_1,8_0_0 -10940,2,58.0,0.0,1,111,500.0,0.0,0.0,0,43,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,4,15.0,1,,1,130554,2,2,5,0,1,,0.0,380.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1569.61809517547,500.0,36360.33468390062,0,1,2,3,40.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.013751248561014664,36360.33468390062,9,5,9,9_1,9_2,9_1_0 -10941,2,74.0,0.0,5,211,400.0,120.0,0.0,86,77,0.0,0.0,552.8696910303722,826.0,0.0,217.63834810169388,50,2,2,2,1,2,2,2,2,0,,8,,3,131512,2,1,0,1,1,,240.0,414.0,41,0.0,3.0,3.0,2.0,1.5,2,2,350.788192395446,400.0,22841.108034781486,5,5,2,3,60.0,1,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.036162869101717905,15227.40535652099,3,2,3_0,3_0_0,3_1_0,3_0_0 -10942,2,30.0,0.0,2,111,0.0,0.0,450.0,0,43,0.0,0.0,229.91100067688626,450.0,0.0,514.4605985936842,33,0,0,0,0,0,0,0,0,1,8.0,2,,2,131023,2,2,0,1,1,550.0,0.0,550.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1664.81341296051,0.0,20145.275861245616,0,1,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02233774325551359,20145.275861245616,5,3,5,5_0,5_2,5_0_1 -10943,2,62.0,0.0,5,112,540.0,0.0,0.0,0,43,0.0,0.0,746.3740828910024,540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,3,127972,2,1,0,1,1,1250.0,0.0,475.0,22,2.0,2.0,3.0,2.0,1.5,1,1,360.417796566714,540.0,27859.856904943917,0,1,2,3,55.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01938272697675534,18573.237936629277,4,2,4_0,4_0_0,4_2_0,4_0_0 -10944,2,77.0,0.0,5,111,314.0,128.0,0.0,77,78,0.0,0.0,434.0027074588422,442.0,0.0,232.14757130847346,12,2,1,2,2,1,2,2,2,0,,2,,3,107685,1,2,0,1,1,339.0,0.0,246.0,41,0.0,3.0,2.0,2.0,1.5,4,4,378.196028744584,314.0,36902.741321246045,5,5,2,3,52.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011977429973353415,24601.827547497363,7,4,7,7_0,7_2,7_0_0 -10945,1,25.0,56.0,2,112,420.0,0.0,0.0,0,65,0.0,0.0,580.5131755818909,420.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,102954,2,1,0,1,1,781.0,0.0,311.0,22,2.0,3.0,3.0,2.0,1.5,1,1,257.465416049333,420.0,28462.930202971424,0,1,2,3,60.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014756035201047346,18975.28680198095,5,3,5,5_0,5_2,5_0_1 -10946,2,31.0,0.0,9,112,1700.0,0.0,0.0,43,43,0.0,0.0,2349.696186879082,1820.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,113429,2,1,1,0,2,,306.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,755.118693906883,1700.0,54812.60950483223,1,1,1,2,109.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03320403856779616,30451.449724906794,8,4,8,8_1,8_1,8_0_0 -10947,1,66.0,161.0,2,112,336.0,0.0,0.0,85,78,0.0,0.0,464.41054046551267,336.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115202,2,2,0,1,1,1200.0,0.0,376.0,41,0.0,3.0,4.0,3.0,2.0,1,1,261.036585107038,336.0,16301.287337933594,6,5,2,3,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020611869052704672,8150.643668966797,1,1,1_1,1_0_1,1_2_1,1_0_1 -10948,2,39.0,0.0,9,112,2700.0,0.0,0.0,46,37,0.0,0.0,3731.8704144550125,2700.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,60.0,1,2012.0,6,120569,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,3,3,714.366736501463,2700.0,61791.16544443707,1,1,1,2,140.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.043695566843254534,34328.425246909486,9,5,9,9_1,9_1,9_0_0 -10949,2,52.0,0.0,2,112,586.0,0.0,0.0,33,56,0.0,0.0,809.9540973594953,586.0,0.0,0.0,70,2,1,2,2,1,2,2,2,3,60.0,2,,2,108078,2,1,0,1,1,590.0,0.0,506.0,43,3.0,1.0,3.0,3.0,2.0,2,2,267.974704935035,586.0,52230.99229132418,1,1,2,3,77.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011219392439100518,26115.49614566209,7,4,7,7_0,7_2,7_0_1 -10950,2,54.0,0.0,9,112,2199.0,0.0,0.0,42,43,0.0,0.0,3039.401126439471,2199.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2012.0,6,113797,2,1,1,0,1,,202.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,727.500221062137,2199.0,14167.04129957377,1,1,1,2,162.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15521942468440175,5666.816519829508,1,1,1_0,1_1_0,1_0_0,1_0_0 -10951,2,83.0,0.0,5,111,198.0,1200.0,0.0,0,75,0.0,0.0,273.6704970600342,1398.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,0,,1,,3,113782,2,2,3,0,1,,97.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1122.49749482425,198.0,29881.03900368041,0,5,0,1,120.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0467855217426613,29881.03900368041,8,4,8,8_1,8_2,8_0_0 -10952,1,43.0,215.0,2,112,105.0,0.0,0.0,0,64,0.0,0.0,145.12829389547272,105.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,130344,2,1,0,1,1,200.0,0.0,202.0,12,1.0,2.0,1.0,1.0,1.0,1,1,327.481911648136,105.0,6046.957107914801,0,4,2,3,31.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017364105305553858,6046.957107914801,1,1,1_1,1_0_1,1_2_1,1_0_1 -10953,1,77.0,254.0,5,111,330.0,940.0,0.0,0,77,0.0,0.0,456.1174951000571,1270.0,0.0,1704.833726796602,41,0,0,0,0,0,0,0,0,0,,2,,3,110911,2,2,0,1,1,,100.0,378.0,11,0.0,4.0,3.0,1.0,1.0,1,1,420.488437439564,330.0,9397.943207917484,0,5,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1351359517612389,9397.943207917484,1,1,1_1,1_0_1,1_2_1,1_0_0 -10954,1,51.0,217.0,2,112,420.0,0.0,0.0,62,63,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,2,1,2,1,2,2,2,2,3,150.0,2,,2,132111,2,1,0,1,1,405.0,0.0,334.0,43,2.0,0.0,3.0,6.0,2.8999999999999995,2,2,262.290156931808,420.0,41643.122175341996,1,1,2,3,60.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01008569910372122,14359.69730184207,3,2,3_1,3_0_1,3_2_1,3_0_1 -10955,2,75.0,0.0,2,111,380.0,1400.0,0.0,86,74,0.0,0.0,525.2262064788536,1780.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,2,120261,2,2,1,0,1,,100.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,305.144549523676,380.0,42663.793465016366,5,5,0,1,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04172155955751032,28442.52897667758,8,4,8,8_1,8_2,8_0_1 -10956,2,71.0,0.0,2,112,267.0,68.0,0.0,0,74,0.0,0.0,369.04051876277344,335.0,0.0,123.32839725762652,20,2,1,2,2,1,2,2,2,0,,2,,2,120427,1,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,296.647560011017,267.0,22894.392075176394,0,5,0,1,66.0,10,5,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014632404254281512,22894.392075176394,6,3,6,6_0,6_2,6_0_1 -10958,1,55.0,300.0,5,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1105.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,103103,2,1,0,1,2,,0.0,750.0,31,0.0,1.0,3.0,2.0,1.5,1,1,374.646109167517,0.0,11172.18541828562,0,7,2,3,76.0,10,5,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0989063427278459,7448.123612190414,1,1,1_1,1_0_1,1_2_1,1_0_0 -10959,2,42.0,0.0,9,111,0.0,0.0,0.0,22,37,0.0,0.0,0.0,3005.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,60.0,2,2011.0,6,132941,2,1,0,0,1,,459.0,1190.0,43,2.0,2.0,5.0,4.0,2.1,1,1,648.84126574241,0.0,88983.2714526601,4,1,2,3,99.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03377039246751775,42372.98640602862,9,5,9,9_0,9_4,9_0_0 -10960,1,53.0,341.0,2,112,1000.0,0.0,0.0,62,63,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,102172,2,1,0,1,1,871.0,0.0,430.0,43,2.0,0.0,5.0,8.0,3.499999999999999,2,2,272.832544089268,1000.0,42364.35331200309,1,1,2,3,75.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023604750735488508,12104.1009462866,2,1,2_1,2_0_1,2_2_1,2_0_1 -10961,2,40.0,0.0,2,112,432.0,0.0,0.0,68,56,0.0,0.0,597.099266312802,432.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,75.0,2,,2,111586,2,1,0,1,1,824.0,0.0,350.0,43,2.0,0.0,3.0,4.0,2.1,1,1,244.448034681546,432.0,32027.27424161568,1,1,2,3,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013488503478034567,15251.082972197943,3,2,3_0,3_0_0,3_2_0,3_0_1 -10962,2,52.0,0.0,5,111,393.0,43.0,0.0,55,62,0.0,0.0,543.1944714373407,760.0,0.0,77.9870747364403,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,122706,2,2,0,1,1,1078.0,0.0,291.0,43,4.0,0.0,4.0,4.0,2.5,2,2,353.800507952393,393.0,44686.289173560275,1,1,2,3,73.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017007453831043826,17874.51566942411,4,2,4_0,4_0_0,4_2_0,4_0_0 -10963,2,44.0,0.0,2,112,960.0,204.0,0.0,0,62,0.0,0.0,1326.8872584728933,1164.0,0.0,369.9851917728796,10,0,0,0,0,0,0,0,0,2,45.0,2,,2,120337,2,1,0,1,1,990.0,0.0,439.0,32,2.0,0.0,4.0,3.0,2.0,1,1,267.974704935035,960.0,41789.38927902073,0,1,2,3,70.0,10,5,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027853960540752763,20894.694639510366,5,3,5,5_0,5_2,5_0_1 -10964,2,33.0,0.0,9,112,300.0,720.0,0.0,46,37,0.0,0.0,414.65226827277917,1020.0,0.0,1305.830088610163,71,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,118095,2,1,1,0,1,,160.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,233.288436039796,300.0,36875.83935829576,1,1,1,2,90.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027660387336255605,17559.923503950362,4,2,4_0,4_1_0,4_2_0,4_0_0 -10965,1,39.0,97.0,2,111,0.0,0.0,570.0,56,43,0.0,0.0,291.2206008573893,570.0,0.0,651.6500915519999,33,2,2,2,2,1,2,2,2,0,,2,,2,105180,2,3,0,1,1,,0.0,483.0,43,2.0,0.0,4.0,4.0,2.3,4,4,395.629889770425,0.0,19696.17018360831,1,4,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02893963621792675,8563.552253742744,1,1,1_1,1_0_1,1_2_1,1_0_1 -10966,1,90.0,160.0,2,112,160.0,0.0,0.0,0,77,0.0,0.0,221.1478764121489,160.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,131445,2,1,0,1,1,693.0,0.0,221.0,11,0.0,1.0,2.0,1.0,1.0,2,2,306.263532452823,160.0,10935.69634243473,0,5,2,3,55.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01463098416322499,10935.69634243473,2,1,2_1,2_0_1,2_2_1,2_0_1 -10967,2,47.0,0.0,9,112,2000.0,0.0,0.0,56,67,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,5.0,1,2011.0,6,104313,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,185.707513303829,2000.0,30984.541510173185,1,1,1,2,91.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.06454831675799812,12393.816604069274,2,1,2_0,2_1_0,2_2_0,2_0_0 -10968,1,46.0,167.0,2,111,1400.0,840.0,0.0,0,62,0.0,0.0,1935.0439186063027,2240.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,0,,2,,2,125336,1,2,0,0,1,,0.0,215.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1413.35083014865,1400.0,6579.69754253308,0,4,2,3,45.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.34044118069561524,6579.69754253308,1,1,1_1,1_0_1,1_2_1,1_0_1 -10969,0,25.0,0.0,2,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,337.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,80.0,2,,2,133619,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,2,1,256.537043234406,0.0,22460.67189853903,0,1,5,0,55.0,10,5,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015004003509882553,14037.919936586892,3,2,3_0,3_0_0,3_2_0,3_0_1 -10970,2,51.0,0.0,2,112,700.0,0.0,0.0,0,34,0.0,0.0,967.5219593031513,700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,117920,2,1,0,1,1,936.0,0.0,480.0,32,1.0,0.0,4.0,3.0,2.0,2,2,267.974704935035,700.0,54411.531224996135,0,1,2,3,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01286492006823779,27205.765612498068,7,4,7,7_0,7_2,7_0_1 -10971,2,40.0,0.0,9,112,2069.0,0.0,0.0,56,53,0.0,0.0,2859.7184768546003,2069.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,90.0,1,2012.0,6,104123,2,1,1,0,1,,221.0,,43,2.0,1.0,5.0,5.0,2.8,4,4,201.997746857481,2069.0,44277.05398282934,1,1,1,2,110.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046728492839707876,15813.233565296194,3,2,3_0,3_1_0,3_2_0,3_0_0 -10972,1,73.0,62.0,2,112,590.0,0.0,0.0,0,86,0.0,0.0,815.482794269799,590.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,119539,2,1,0,1,1,792.0,0.0,339.0,21,0.0,6.0,3.0,2.0,1.5,2,2,257.465416049333,590.0,24080.425012250493,0,6,2,3,60.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024501228682626983,16053.616674833662,4,2,4_1,4_0_1,4_2_1,4_0_1 -10973,0,64.0,0.0,7,111,1200.0,0.0,0.0,0,53,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,125875,2,1,2,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1507.51244614029,1200.0,27002.0,0,1,5,0,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044441152507221686,27002.0,7,4,7,7_1,7_2,7_0_0 -10974,2,33.0,0.0,9,111,1512.0,0.0,0.0,54,38,0.0,0.0,2089.847432094807,1642.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,100826,2,1,1,0,1,,680.0,,43,2.0,0.0,5.0,5.0,2.4,5,3,121.399120335502,1512.0,51260.66169840597,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032032360597699046,21358.609041002488,6,3,6,6_1,6_4,6_0_0 -10975,2,57.0,0.0,6,111,540.0,1200.0,0.0,85,62,0.0,0.0,746.3740828910024,1740.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,2,30.0,1,,4,126113,1,1,3,0,1,,200.0,,42,1.0,3.0,5.0,2.0,1.5,4,2,1021.06881867199,540.0,24170.381791224278,7,1,0,1,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07198893319226571,16113.587860816186,4,2,4_0,4_1_0,4_2_0,4_0_0 -10976,2,71.0,0.0,2,112,148.0,0.0,0.0,0,78,0.0,0.0,204.56178568123772,148.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,106034,2,1,0,1,1,380.0,0.0,256.0,11,0.0,2.0,2.0,1.0,1.0,2,2,306.263532452823,148.0,19958.044820216423,0,5,2,3,45.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00741555604936231,19958.044820216423,5,3,5,5_0,5_2,5_0_1 -10977,1,35.0,118.0,9,111,2900.0,0.0,0.0,85,21,0.0,0.0,4008.3052599701987,2900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,107042,2,1,1,0,1,,950.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,1,1,193.677855223453,2900.0,29687.901932212342,6,1,1,2,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09768288802023445,10995.51923415272,2,1,2_1,2_1_1,2_4_1,2_0_0 -10978,2,71.0,0.0,2,111,674.0,1500.0,0.0,0,74,0.0,0.0,931.5854293861772,2174.0,0.0,2720.4793512711735,42,0,0,0,0,0,0,0,0,0,,1,,2,122066,2,1,1,0,1,,66.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1212.47386471645,674.0,28787.427254316128,0,5,0,1,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07551907924227755,28787.427254316128,8,4,8,8_1,8_2,8_0_1 -10979,2,50.0,0.0,9,112,1440.0,0.0,0.0,56,63,0.0,660.440058074814,1990.33088770934,2078.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,2011.0,6,106401,2,1,1,0,1,,1200.0,,43,2.0,0.0,4.0,6.0,3.3,2,2,199.262198492751,1440.0,34067.394607488226,1,1,1,2,99.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060996739666826255,10323.45291136007,2,1,2_0,2_1_0,2_2_0,2_0_0 -10980,1,33.0,276.0,7,111,1100.0,1000.0,0.0,85,68,0.0,0.0,1520.3916503335236,2100.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,109598,2,1,1,0,1,,0.0,721.0,42,1.0,0.0,5.0,5.0,2.4,5,5,941.909910130471,1100.0,27998.23526813815,6,1,2,3,120.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07500472725828508,11665.93136172423,2,1,2_1,2_1_1,2_2_1,2_0_0 -10981,1,34.0,381.0,2,112,250.0,0.0,0.0,42,64,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,102264,2,1,0,1,1,303.0,0.0,330.0,43,2.0,0.0,3.0,5.0,2.4,2,2,206.529123840684,250.0,21013.305156688824,1,1,2,3,74.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.011897224074739216,8755.54381528701,1,1,1_1,1_0_1,1_2_1,1_0_1 -10982,2,60.0,0.0,9,112,300.0,0.0,0.0,34,34,0.0,103.51725048194578,414.65226827277917,2000.0,2752.5232067043066,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,103276,2,1,1,0,1,,194.0,,43,2.0,0.0,3.0,2.0,1.5,4,3,935.613501550212,300.0,4090.0079852026615,1,1,1,2,100.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.48899660030881315,2726.6719901351075,1,1,1_0,1_1_0,1_0_0,1_0_0 -10983,2,34.0,0.0,2,111,315.0,1260.0,0.0,42,42,0.0,186.3310508675024,435.3848816864181,1755.0,0.0,2285.2026550677856,10,0,0,0,0,0,0,0,0,2,25.0,1,,2,131069,2,3,3,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1090.15184410341,315.0,65340.23471575123,1,1,1,2,130.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026859407647290428,43560.15647716748,10,5,10,10_1,10_2,10_0_1 -10984,2,58.0,0.0,5,112,700.0,0.0,0.0,0,54,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,40.0,2,,3,125091,1,3,0,1,2,750.0,0.0,364.0,12,1.0,1.0,2.0,1.0,1.0,3,2,428.728755998182,700.0,16199.563974639303,0,1,2,3,40.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04321103957463683,16199.563974639303,4,2,4_0,4_0_0,4_2_0,4_0_0 -10985,1,67.0,83.0,2,111,254.0,1800.0,0.0,0,77,0.0,0.0,351.07225380428633,2054.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,2,118865,2,3,2,0,2,,220.0,274.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1351.57200192639,254.0,11209.100526903298,0,5,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.18324396280237948,11209.100526903298,2,1,2_1,2_1_1,2_2_1,2_0_1 -10986,1,51.0,389.0,2,112,324.0,0.0,0.0,0,85,0.0,0.0,447.8244497346015,324.0,0.0,0.0,50,1,1,2,2,1,2,2,2,0,,2,,2,132597,2,2,0,1,1,717.0,0.0,759.0,31,0.0,1.0,4.0,4.0,1.9,2,2,258.173527754485,324.0,14517.847842030505,0,7,2,3,75.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02231735747098755,7640.972548437108,1,1,1_1,1_0_1,1_2_1,1_0_1 -10987,2,36.0,0.0,9,112,1250.0,0.0,0.0,45,33,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,120.0,1,2012.0,6,113831,2,1,1,0,1,,286.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,755.118693906883,1250.0,52133.80877338674,1,1,1,2,113.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023976763436438193,28963.22709632597,8,4,8,8_1,8_2,8_0_0 -10988,2,40.0,0.0,1,212,1500.0,0.0,0.0,11,54,4480.754631054002,0.0,2073.261341363896,4502.0,3.4406540083803834,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,119861,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,813.848484207616,1500.0,57190.0,1,1,0,1,120.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07872005595383809,27233.333333333332,7,4,7,7_1,7_0,7_1_0 -10989,1,66.0,220.0,2,112,770.0,118.0,0.0,86,78,0.0,0.0,1064.2741552334664,888.0,0.0,214.01104229999896,50,2,1,2,2,1,2,2,2,0,,2,,2,118430,2,2,0,1,1,889.0,0.0,359.0,41,0.0,4.0,4.0,3.0,2.0,2,2,261.036585107038,770.0,16006.73975199872,6,5,2,3,83.0,10,5,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.055476631328944905,8003.36987599936,1,1,1_1,1_0_1,1_2_1,1_0_1 -10990,2,30.0,0.0,9,111,840.0,0.0,0.0,48,34,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,2012.0,6,109791,2,1,0,0,2,,0.0,850.0,43,2.0,0.0,3.0,2.0,1.5,1,1,996.389943694948,840.0,47503.662163307745,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017682847211068782,31669.10810887183,8,4,8,8_0,8_4,8_0_0 -10991,2,76.0,0.0,1,212,750.0,0.0,0.0,71,71,1493.5848770180007,0.0,1036.630670681948,1840.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127411,2,2,3,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,830.427872375448,750.0,28466.861374182277,5,5,0,1,130.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06463656023803062,18977.907582788186,5,3,5,5_1,5_0,5_1_0 -10992,1,44.0,284.0,2,111,420.0,300.0,0.0,68,56,0.0,0.0,580.5131755818909,720.0,0.0,544.0958702542347,42,2,1,2,2,1,2,2,2,0,,2,,2,131900,1,3,0,1,1,,0.0,270.0,43,2.0,2.0,3.0,2.0,1.5,2,2,337.448392209972,420.0,11393.0,4,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0631966997279031,7595.333333333333,1,1,1_1,1_0_1,1_2_1,1_0_1 -10993,2,58.0,0.0,7,212,1000.0,0.0,0.0,54,78,2240.377315527001,0.0,1382.1742275759307,2560.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,132654,2,1,2,0,1,,120.0,,42,1.0,1.0,7.0,2.0,1.5,1,1,802.040576393594,1000.0,51932.22686661552,1,7,0,1,170.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049295016879888284,34621.48457774368,9,5,9,9_1,9_0,9_0_0 -10994,2,36.0,0.0,8,111,0.0,0.0,0.0,54,53,0.0,0.0,0.0,1273.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,20.0,1,,6,107712,1,2,2,0,1,,272.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,232.199215219992,0.0,40658.53603539162,4,1,2,3,80.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03130953851589503,27105.69069026108,7,4,7,7_1,7_2,7_0_0 -10995,2,70.0,0.0,1,111,203.0,976.0,0.0,77,75,0.0,0.0,280.5813681979139,1179.0,0.0,1770.1252312271101,41,0,0,0,0,0,0,0,0,0,,1,,1,126254,2,2,1,0,1,,200.0,,41,0.0,2.0,3.0,2.0,1.5,5,3,291.72190674207,203.0,25262.87689333727,5,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04666926910097657,16841.917928891515,4,2,4_0,4_1_0,4_2_0,4_1_0 -10996,1,32.0,100.0,9,111,1888.0,0.0,0.0,52,64,0.0,0.0,2609.544941663357,1888.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,132511,2,1,1,0,1,,588.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,118.455976958056,1888.0,48312.695053920645,1,1,1,2,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03907875555054108,20130.28960580027,5,3,5,5_1,5_4,5_0_0 -10997,2,61.0,0.0,5,212,500.0,0.0,0.0,0,75,2240.377315527001,414.0690019277831,691.0871137879653,2400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,125369,2,1,1,0,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,807.991958018278,500.0,17992.659688333835,0,5,0,1,100.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13338772819429934,17992.659688333835,4,2,4_0,4_1_0,4_0_0,4_0_0 -10998,2,56.0,0.0,2,111,480.0,0.0,0.0,0,52,0.0,0.0,663.4436292364467,480.0,0.0,0.0,42,2,1,2,1,1,2,2,2,1,3.0,2,,2,102835,1,3,0,1,1,1110.0,130.0,252.0,12,1.0,1.0,3.0,1.0,1.0,1,1,450.177219601767,480.0,13803.305812347387,0,1,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03477427846093423,13803.305812347387,3,2,3_0,3_0_0,3_2_0,3_0_1 -10999,2,41.0,0.0,9,111,2030.0,0.0,0.0,47,37,0.0,0.0,2805.813681979139,2030.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,70.0,1,2011.0,6,126077,2,1,1,0,1,,216.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,152.503312417637,2030.0,84797.64067935855,1,1,1,2,181.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023939345289993932,35332.350283066065,9,5,9,9_1,9_4,9_0_0 -11000,1,33.0,328.0,5,111,256.0,274.0,0.0,0,55,0.0,0.0,353.8366022594382,530.0,0.0,496.940894832201,71,2,1,2,1,1,2,2,2,0,,2,,3,100493,2,3,0,1,1,787.0,0.0,291.0,32,1.0,0.0,4.0,3.0,1.6,1,1,410.223956832522,256.0,9267.40949570738,0,4,2,3,66.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0571896602006735,5792.130934817112,1,1,1_1,1_0_1,1_2_1,1_0_0 -11001,2,56.0,0.0,1,212,500.0,0.0,0.0,77,22,0.0,0.0,691.0871137879653,620.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,118870,2,1,3,0,1,,200.0,,42,1.0,4.0,4.0,2.0,1.5,3,3,928.307914032012,500.0,22331.300652270947,6,1,0,1,120.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02776372096073813,14887.533768180632,3,2,3_0,3_1_0,3_0_0,3_1_0 -11002,2,44.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1434.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,2011.0,6,130654,2,2,0,0,1,,511.0,790.0,32,1.0,0.0,3.0,3.0,1.8,1,1,2502.26275702148,0.0,24176.893963854924,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0593128299335666,13431.60775769718,3,2,3_0,3_0_0,3_4_0,3_0_0 -11003,2,61.0,0.0,7,212,500.0,0.0,0.0,78,78,2987.1697540360015,0.0,691.0871137879653,2620.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,105857,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,841.581493732802,500.0,24684.70948257497,5,5,0,1,120.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1061385795060488,16456.472988383313,4,2,4_0,4_1_0,4_0_0,4_0_0 -11004,1,60.0,218.0,2,111,0.0,0.0,540.0,0,42,0.0,0.0,275.89320081226356,540.0,0.0,617.352718312421,60,0,0,0,0,0,0,0,0,0,,2,,2,114095,2,1,0,0,1,,0.0,332.0,12,1.0,1.0,2.0,1.0,1.0,2,2,441.835099310238,0.0,6060.0,0,4,2,3,57.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0891089108910891,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -11005,2,45.0,0.0,7,212,1160.0,0.0,0.0,0,21,0.0,0.0,1603.3221039880796,1220.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,121796,2,1,1,0,1,,84.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,812.095836584586,1160.0,16911.6756726058,0,1,0,1,77.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0721395102187422,11274.450448403868,2,1,2_0,2_1_0,2_0_0,2_0_0 -11006,2,39.0,0.0,9,111,800.0,0.0,0.0,38,54,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,129669,2,1,1,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,652.733075975909,800.0,53336.27403945121,1,1,1,2,184.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014999172972005216,25398.225733072002,7,4,7,7_1,7_4,7_0_0 -11007,2,47.0,0.0,5,212,2000.0,0.0,0.0,0,48,0.0,0.0,2764.3484551518613,2060.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,128465,2,2,0,0,1,,120.0,540.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1111.27851686636,2000.0,31987.818711808242,0,1,2,3,90.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06439951465773297,31987.818711808242,8,4,8,8_0,8_0,8_0_0 -11008,1,49.0,230.0,2,111,360.0,600.0,0.0,0,85,0.0,0.0,497.582721927335,960.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,,2,119697,2,1,0,0,1,,0.0,230.0,11,0.0,1.0,3.0,1.0,1.0,6,4,401.084044031682,360.0,11437.432544803803,0,7,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08393492125434587,11437.432544803803,2,1,2_1,2_0_1,2_2_1,2_0_1 -11009,2,33.0,0.0,9,112,1620.0,0.0,0.0,52,46,0.0,0.0,2239.1222486730076,1620.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,75.0,1,2012.0,6,105580,2,1,1,0,1,,204.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,736.8119501923,1620.0,49337.57025359113,1,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03283501785096693,27409.761251995074,7,4,7,7_1,7_0,7_0_0 -11010,1,25.0,195.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,636.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,126556,2,2,0,0,1,,0.0,235.0,12,1.0,0.0,2.0,1.0,1.0,2,2,429.971692472372,0.0,7942.973958824841,0,4,2,3,44.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08007076484159793,7942.973958824841,1,1,1_1,1_0_1,1_2_1,1_0_1 -11012,2,39.0,0.0,9,111,774.0,0.0,0.0,34,54,0.0,0.0,1069.8028521437702,774.0,0.0,0.0,70,0,0,0,0,0,0,0,0,4,60.0,1,2012.0,6,108260,2,1,1,0,1,,70.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,180.503041458087,774.0,55389.51448112232,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013973763938006574,26375.959276724912,7,4,7,7_1,7_4,7_0_0 -11013,2,26.0,0.0,1,112,400.0,0.0,0.0,0,69,0.0,0.0,552.8696910303722,900.0,860.1635020950959,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,1,110040,2,1,0,0,1,,100.0,360.0,12,1.0,0.0,2.0,1.0,1.0,4,4,1362.39204451651,400.0,19164.223761219026,0,1,2,3,35.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04696250738948539,19164.223761219026,5,3,5,5_0,5_0,5_1_0 -11014,1,21.0,301.0,2,111,0.0,0.0,0.0,85,81,0.0,0.0,0.0,395.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,105214,2,1,0,1,1,,207.0,273.0,42,1.0,0.0,4.0,4.0,2.1,1,1,350.669465274402,0.0,9809.36471270754,6,4,2,3,80.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.040267643376364355,4671.126053670257,1,1,1_1,1_0_1,1_2_1,1_0_1 -11015,2,77.0,0.0,1,112,500.0,0.0,0.0,71,71,3360.5659732905015,0.0,691.0871137879653,2870.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108981,2,1,4,0,1,,221.0,,41,0.0,4.0,6.0,2.0,1.5,3,3,814.921228593623,500.0,28060.973508834424,5,5,0,1,110.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10227727840933384,18707.315672556284,5,3,5,5_1,5_0,5_1_0 -11016,2,42.0,0.0,5,111,320.0,1212.0,0.0,0,62,0.0,0.0,442.2957528242978,1532.0,0.0,2198.1473158271083,31,2,2,2,1,1,2,2,2,0,,1,,3,120605,2,1,2,0,1,,180.0,318.0,22,2.0,3.0,4.0,2.0,1.5,2,2,347.108659400464,320.0,48452.2530178681,0,1,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.031618756705390626,32301.502011912064,8,4,8,8_1,8_2,8_0_0 -11017,2,80.0,0.0,2,112,330.0,0.0,0.0,77,75,2240.377315527001,0.0,456.1174951000571,1980.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118708,2,1,4,0,1,,133.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,790.629273553771,330.0,35084.29299202215,5,5,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056435510912254495,23389.5286613481,6,3,6,6_1,6_0,6_0_1 -11018,2,47.0,0.0,1,112,1200.0,0.0,0.0,56,53,1792.3018524216009,414.0690019277831,1658.6090730911167,2860.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,131116,2,1,1,0,1,,200.0,,43,2.0,2.0,6.0,4.0,2.1,3,3,783.424611839359,1200.0,64766.65243567283,1,1,1,2,120.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044158527458873886,30841.263064606108,8,4,8,8_1,8_0,8_1_0 -11019,2,70.0,0.0,2,111,0.0,0.0,0.0,72,77,0.0,0.0,0.0,541.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,123452,2,2,0,1,1,546.0,389.0,293.0,41,0.0,4.0,3.0,2.0,1.5,3,3,373.87616770029,0.0,26625.48970776225,5,5,2,3,77.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020318875105695418,17750.3264718415,4,2,4_0,4_0_0,4_2_0,4_0_1 -11020,2,89.0,0.0,1,112,2500.0,0.0,0.0,0,72,0.0,0.0,3455.435568939826,2620.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111491,2,1,2,0,1,,80.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,909.755285220157,2500.0,12423.430055658619,0,5,0,1,70.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2108918381044568,12423.430055658619,2,1,2_0,2_1_0,2_0_0,2_1_0 -11021,2,43.0,0.0,2,111,600.0,1540.0,0.0,67,52,0.0,0.0,829.3045365455583,2140.0,0.0,2793.0254673050713,71,2,2,1,2,1,2,2,2,2,10.0,1,,2,100466,2,2,3,0,1,,360.0,520.0,43,2.0,0.0,5.0,3.0,1.8,1,1,367.421753460942,600.0,38374.758034364386,1,1,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05576582393258719,21319.310019091325,6,3,6,6_1,6_2,6_0_1 -11022,2,49.0,0.0,1,112,2359.0,0.0,0.0,31,43,0.0,0.0,3260.54900285162,2439.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,107497,2,1,2,0,1,,299.0,,43,3.0,0.0,7.0,5.0,3.0,2,2,810.218843994523,2359.0,25369.85421369579,1,1,0,1,180.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09613772233201552,8456.618071231931,1,1,1_0,1_1_0,1_0_0,1_1_0 -11023,1,48.0,232.0,2,111,0.0,0.0,300.0,0,68,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,71,2,1,2,1,2,2,2,2,0,,2,,2,113369,2,1,0,1,1,900.0,0.0,217.0,12,1.0,4.0,2.0,1.0,1.0,2,2,433.64513751037,0.0,6060.0,0,4,2,3,45.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04950495049504951,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -11024,2,32.0,0.0,1,112,1200.0,0.0,0.0,63,43,0.0,310.55175144583734,1658.6090730911167,1560.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,2,40.0,1,,1,102768,2,3,1,0,1,,120.0,,43,2.0,0.0,4.0,5.0,2.4,3,3,780.941247058226,1200.0,44235.83252907729,4,1,1,2,85.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035265528211197876,18431.59688711554,4,2,4_0,4_1_0,4_0_0,4_1_0 -11025,2,62.0,0.0,1,112,420.0,0.0,0.0,85,77,2240.377315527001,0.0,580.5131755818909,2040.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122168,2,1,4,0,1,,140.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,808.023241481224,420.0,29763.407136183898,6,5,0,1,178.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06854054008890455,19842.2714241226,5,3,5,5_1,5_0,5_1_0 -11026,1,37.0,200.0,2,111,120.0,0.0,0.0,0,42,0.0,0.0,165.86090730911167,120.0,0.0,0.0,71,1,2,2,2,1,2,2,2,1,5.0,2,,2,133223,1,3,0,1,1,1020.0,0.0,306.0,32,1.0,0.0,5.0,3.0,1.6,3,2,377.998021523632,120.0,14360.472094359524,0,1,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.008356271243139238,8975.295058974702,1,1,1_1,1_0_1,1_2_1,1_0_1 -11027,2,61.0,0.0,1,112,480.0,0.0,0.0,0,78,0.0,0.0,663.4436292364467,1480.0,1720.3270041901917,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,100535,2,1,0,0,1,,120.0,337.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1051.32117327034,480.0,18272.20528961007,0,5,2,3,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0809973386650574,18272.20528961007,4,2,4_0,4_0_0,4_0_0,4_1_0 -11028,2,71.0,0.0,2,112,1800.0,0.0,0.0,77,75,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122187,2,1,2,0,1,,121.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,801.859213375517,1800.0,31711.8611638859,5,5,0,1,130.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05676109613048747,21141.240775923932,5,3,5,5_1,5_0,5_0_1 -11029,1,46.0,255.0,2,111,250.0,0.0,0.0,0,56,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,132651,2,2,0,1,1,1080.0,0.0,321.0,32,2.0,1.0,5.0,2.0,1.5,1,1,422.032100526522,250.0,22376.93025762757,0,4,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.011172220546863577,14917.953505085046,3,2,3_1,3_0_1,3_2_1,3_0_1 -11030,2,53.0,0.0,1,112,1100.0,0.0,0.0,56,62,0.0,476.1793522169506,1520.3916503335236,1620.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,130363,2,1,2,0,1,,210.0,,43,2.0,4.0,5.0,2.0,1.5,1,1,809.145389662175,1100.0,21244.937103377488,1,1,0,1,160.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0762534618067876,14163.291402251658,3,2,3_0,3_1_0,3_0_0,3_1_0 -11031,1,48.0,359.0,5,111,507.0,99.0,0.0,85,64,0.0,0.0,700.7623333809968,606.0,0.0,179.55163718389744,50,2,1,2,2,1,2,2,2,0,,2,,3,123357,1,2,0,1,1,640.0,0.0,313.0,42,1.0,0.0,4.0,5.0,2.4,2,2,333.440226361801,507.0,16482.436425724383,6,4,2,3,114.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.036766409064026895,6867.681844051826,1,1,1_1,1_0_1,1_2_1,1_0_0 -11032,2,57.0,0.0,1,112,500.0,0.0,0.0,0,63,0.0,1055.875954915847,691.0871137879653,1600.0,137.62616033521533,0.0,70,2,2,1,1,2,2,2,2,2,7.0,1,,1,110598,2,2,4,0,1,,234.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,844.948074465186,500.0,26174.98514750357,0,1,1,2,95.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06112706429377285,26174.98514750357,7,4,7,7_1,7_0,7_1_0 -11033,2,33.0,0.0,1,112,2200.0,0.0,0.0,55,64,0.0,0.0,3040.783300667047,2300.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,126986,2,1,1,0,1,,180.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,809.095207113467,2200.0,32589.939940201373,1,1,0,1,228.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07057392570284646,13579.141641750573,3,2,3_0,3_1_0,3_0_0,3_1_0 -11034,2,77.0,0.0,5,112,900.0,0.0,0.0,0,77,0.0,0.0,1243.9568048183376,975.0,129.02452531426437,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,108815,2,1,4,0,1,,170.0,,21,0.0,1.0,4.0,2.0,1.5,4,4,743.5475073479,900.0,24187.898968936057,0,5,0,1,76.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040309412622078884,16125.265979290705,4,2,4_0,4_1_0,4_0_0,4_0_0 -11035,1,43.0,252.0,2,111,116.0,0.0,0.0,0,85,0.0,0.0,160.33221039880794,116.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,116050,2,2,0,1,1,619.0,0.0,228.0,11,0.0,2.0,3.0,1.0,1.0,3,3,401.084044031682,116.0,11348.911116651743,0,6,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010221244911311224,11348.911116651743,2,1,2_1,2_0_1,2_2_1,2_0_1 -11036,2,34.0,0.0,9,112,2200.0,0.0,0.0,52,46,0.0,357.13451416271295,3040.783300667047,2545.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,45.0,1,2006.0,6,129532,2,1,1,0,1,,236.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,796.974708057168,2200.0,40450.84731384797,1,1,1,2,136.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06291586379523732,19262.308244689506,5,3,5,5_1,5_0,5_0_0 -11037,2,28.0,0.0,5,111,420.0,72.0,0.0,90,65,0.0,0.0,580.5131755818909,492.0,0.0,130.5830088610163,31,0,0,0,0,0,0,0,0,3,3.0,2,,3,118454,1,2,0,1,1,42.0,0.0,292.0,43,2.0,0.0,3.0,2.0,1.5,2,2,348.345378007982,420.0,38725.46600620972,1,1,2,3,70.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012704818062644015,25816.977337473145,7,4,7,7_0,7_2,7_0_0 -11038,1,29.0,585.0,1,112,0.0,0.0,0.0,22,67,0.0,0.0,0.0,5622.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,122854,2,1,2,0,1,,251.0,650.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,901.048210359705,0.0,22907.50093603876,1,1,2,3,100.0,8,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.24542179505732564,8484.259605940282,1,1,1_1,1_1_1,1_0_1,1_1_0 -11039,2,42.0,0.0,2,112,230.0,0.0,0.0,0,11,2688.452778632401,0.0,317.900072342464,2060.0,51.60981012570575,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,116002,2,2,2,0,2,,140.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,849.628472973266,230.0,58745.02320751741,0,1,1,2,89.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03506680034363129,58745.02320751741,10,5,10,10_1,10_0,10_0_1 -11040,2,61.0,0.0,2,111,300.0,0.0,0.0,0,46,0.0,0.0,414.65226827277917,738.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,120614,2,3,0,1,1,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,222.418539192585,300.0,25380.461616040837,0,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029077485317823094,25380.461616040837,7,4,7,7_0,7_4,7_0_1 -11041,2,52.0,0.0,6,112,1350.0,0.0,0.0,74,52,0.0,388.18968930729665,1865.9352072275062,1815.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,101964,2,1,2,0,1,,100.0,,42,1.0,0.0,7.0,2.0,1.5,7,6,856.994426721394,1350.0,56305.7275196697,5,1,1,2,120.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03223473134888369,37537.1516797798,9,5,9,9_1,9_0,9_0_0 -11042,1,36.0,450.0,7,112,830.0,0.0,0.0,85,53,3733.962192545002,0.0,1147.2046088880224,6957.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,128498,2,2,4,0,1,,250.0,840.0,42,2.0,0.0,7.0,6.0,3.3,2,2,895.682243961738,830.0,28380.38867129712,6,1,2,3,240.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2451340635456502,8600.117779180946,1,1,1_1,1_1_1,1_0_1,1_0_0 -11043,1,24.0,173.0,7,112,0.0,0.0,0.0,69,56,0.0,0.0,0.0,1411.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,130870,2,1,1,0,1,,249.0,462.0,43,2.0,0.0,3.0,3.0,1.8,2,2,948.18965579913,0.0,24796.727092645415,1,1,2,3,62.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.056902670853626304,13775.95949591412,3,2,3_1,3_1_1,3_0_1,3_0_0 -11044,2,51.0,0.0,7,300,2300.0,0.0,0.0,42,34,0.0,248.44140115666985,3179.0007234246405,2600.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,129231,2,1,1,0,1,,150.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,785.321890357355,2300.0,55241.53410563117,1,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047066035404236956,24018.058306796163,6,3,6,6_1,6_0,6_0_0 -11045,2,64.0,0.0,2,300,1000.0,0.0,0.0,71,11,2987.1697540360015,0.0,1382.1742275759307,3000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114153,2,2,2,0,1,,600.0,,42,1.0,3.0,8.0,2.0,1.5,1,1,830.427872375448,1000.0,174079.56618259387,5,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017233498829226566,116053.04412172925,10,5,10,10_1,10_0,10_0_1 -11046,1,28.0,363.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,248.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,125299,2,2,0,1,1,924.0,0.0,314.0,31,0.0,0.0,5.0,4.0,1.9,2,2,313.995748570441,0.0,830.9921079985489,0,6,2,3,87.0,4,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2984384540032636,437.36426736765736,1,1,1_1,1_0_1,1_2_1,1_0_1 -11047,2,55.0,0.0,1,300,850.0,0.0,0.0,55,54,2987.1697540360015,0.0,1174.848093439541,2852.0,3.4406540083803834,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,107609,2,1,2,0,1,,200.0,,43,2.0,2.0,7.0,2.0,1.5,4,3,830.427872375448,850.0,22439.188293507268,4,1,0,1,131.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1270990716195033,14959.458862338179,3,2,3_0,3_1_0,3_0_0,3_1_0 -11048,1,56.0,200.0,1,300,300.0,0.0,0.0,85,45,0.0,0.0,414.65226827277917,480.0,309.6588607542345,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,1,119379,1,1,2,0,1,,250.0,400.0,42,2.0,0.0,3.0,3.0,2.0,1,1,929.643504701308,300.0,21361.72425329148,6,1,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.02247009624824832,10680.86212664574,2,1,2_1,2_1_1,2_0_1,2_1_0 -11049,2,57.0,0.0,2,111,360.0,300.0,0.0,56,68,0.0,0.0,497.582721927335,660.0,0.0,544.0958702542347,71,2,1,2,1,1,2,2,2,0,,2,,2,121608,2,3,0,1,1,853.0,0.0,350.0,43,3.0,1.0,4.0,3.0,2.0,2,2,218.326557360805,360.0,48578.06094638686,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013586380088913151,24289.03047319343,7,4,7,7_0,7_4,7_0_1 -11050,1,61.0,60.0,9,112,825.0,0.0,0.0,0,77,0.0,0.0,1140.2937377501428,825.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2006.0,6,133547,2,2,0,0,1,,0.0,436.0,11,0.0,2.0,2.0,1.0,1.0,3,3,1041.84229848154,825.0,14321.0,0,5,2,3,45.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05760770895887159,14321.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -11051,2,43.0,0.0,8,300,2100.0,0.0,0.0,55,62,0.0,103.51725048194578,2902.5658779094542,2260.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,115285,1,1,2,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,4,2,726.830973361767,2100.0,48304.51063038304,1,1,1,2,106.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04678652097923301,23002.147919230018,6,3,6,6_1,6_0,6_0_0 -11052,2,35.0,0.0,9,112,450.0,1600.0,0.0,54,37,0.0,0.0,621.9784024091688,2050.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,113246,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,4,4,739.420636630305,450.0,62389.676068101035,1,1,1,2,110.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03285800038074146,29709.369556238587,8,4,8,8_1,8_1,8_0_0 -11053,1,40.0,600.0,5,111,680.0,0.0,0.0,85,85,0.0,0.0,939.8784747516328,680.0,0.0,0.0,50,2,2,2,2,1,1,1,2,0,,2,,3,119872,1,1,0,1,2,,0.0,,41,0.0,0.0,5.0,5.0,2.4,1,1,234.223299110435,680.0,17101.550534062255,6,7,1,2,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.03976247642841509,7125.6460558592735,1,1,1_1,1_0_1,1_4_1,1_0_0 -11054,2,56.0,0.0,2,112,450.0,1200.0,0.0,0,53,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,129431,2,2,3,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1061.24424393306,450.0,32506.88374428058,0,1,1,2,70.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050758479741704214,32506.88374428058,8,4,8,8_1,8_1,8_0_1 -11055,2,27.0,0.0,2,300,900.0,0.0,0.0,55,63,0.0,362.31037668681023,1243.9568048183376,1282.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,132287,2,1,2,0,1,,85.0,460.0,43,2.0,0.0,3.0,2.0,1.5,4,3,799.527536623201,900.0,28669.745313447467,1,1,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044716127959416554,19113.163542298313,5,3,5,5_1,5_0,5_0_1 -11056,2,47.0,0.0,5,112,0.0,0.0,1300.0,0,46,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,125028,2,2,1,0,1,,600.0,,12,1.0,2.0,4.0,1.0,1.0,5,3,1061.24424393306,0.0,31355.726801590077,0,1,1,2,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041459731047729244,31355.726801590077,8,4,8,8_1,8_1,8_0_0 -11057,2,64.0,0.0,2,300,1300.0,0.0,0.0,85,11,4480.754631054002,0.0,1796.8264958487098,4300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,106956,2,2,3,0,1,,350.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,835.232630225214,1300.0,236517.6818476601,6,1,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018180458925559778,157678.45456510675,10,5,10,10_1,10_0,10_0_1 -11058,1,54.0,51.0,8,111,420.0,0.0,0.0,78,63,0.0,0.0,580.5131755818909,420.0,0.0,0.0,41,2,1,1,2,1,2,2,2,2,45.0,2,,6,122443,2,1,0,1,1,592.0,0.0,353.0,41,0.0,1.0,3.0,2.0,1.5,2,2,217.676844503428,420.0,9509.245899132373,7,7,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04416754014514663,6339.497266088249,1,1,1_1,1_0_1,1_4_1,1_0_0 -11059,2,89.0,0.0,6,300,670.0,0.0,0.0,71,71,0.0,0.0,926.0567324758734,1270.0,1032.196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,111165,1,1,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,781.45625413685,670.0,32616.880772044744,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0389368931037848,21744.587181363164,6,3,6,6_1,6_0,6_0_0 -11060,2,56.0,0.0,5,111,800.0,0.0,0.0,0,68,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,118330,2,1,0,1,1,1119.0,0.0,361.0,22,2.0,0.0,3.0,2.0,1.5,1,1,293.642553893488,800.0,19938.28070472417,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0401238206968592,13292.18713648278,3,2,3_0,3_0_0,3_4_0,3_0_0 -11061,1,23.0,420.0,6,111,0.0,0.0,0.0,54,67,0.0,0.0,0.0,583.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,110037,2,1,0,1,1,563.0,319.0,406.0,43,2.0,0.0,3.0,4.0,2.1,2,2,309.891781185577,0.0,17198.384433683557,4,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03389853286789989,8189.706873182646,1,1,1_1,1_0_1,1_4_1,1_0_0 -11062,2,66.0,0.0,5,300,1800.0,0.0,0.0,71,71,5974.339508072003,0.0,2487.913609636675,5800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,120601,1,1,2,0,1,,250.0,,41,0.0,2.0,8.0,2.0,1.5,4,3,835.14657941356,1800.0,27268.625738911658,5,5,0,1,220.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21269865432651938,18179.083825941107,4,2,4_0,4_1_0,4_0_0,4_0_0 -11063,2,45.0,0.0,2,111,312.0,0.0,0.0,0,65,0.0,0.0,431.23835900369033,312.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,130785,2,1,0,1,1,30.0,0.0,356.0,22,3.0,1.0,3.0,3.0,2.0,2,2,206.719481775798,312.0,60640.35912127861,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005145088263346377,30320.179560639306,8,4,8,8_0,8_4,8_0_1 -11064,2,51.0,0.0,1,300,1200.0,0.0,0.0,81,62,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,118075,2,1,1,0,1,,120.0,,43,2.0,1.0,5.0,4.0,2.5,2,2,737.327774380625,1200.0,28629.207744120995,4,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04610675963504655,11451.683097648398,2,1,2_0,2_1_0,2_0_0,2_1_0 -11065,0,51.0,0.0,6,111,660.0,0.0,0.0,85,56,0.0,0.0,912.2349902001142,660.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,5.0,2,,4,107382,1,1,0,1,1,789.0,590.0,,42,2.0,1.0,4.0,4.0,2.3,1,1,309.891781185577,660.0,26554.108308542505,6,1,5,0,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024854911049213307,11545.264481975004,2,1,2_0,2_0_0,2_4_0,2_0_0 -11066,2,46.0,0.0,8,300,910.0,0.0,0.0,64,54,2128.358449750651,155.27587572291867,1257.778547094097,2605.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,2,12.0,1,2000.0,6,120309,2,1,1,0,1,,241.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,785.209118528695,910.0,53710.0234782918,1,1,1,2,142.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04850118900158131,21484.00939131672,6,3,6,6_1,6_0,6_0_0 -11067,2,60.0,0.0,5,111,600.0,0.0,0.0,67,65,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,124202,2,1,0,1,1,40.0,0.0,429.0,43,2.0,3.0,3.0,2.0,1.5,1,1,293.642553893488,600.0,32187.825591211247,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018640588140996624,21458.55039414083,6,3,6,6_0,6_4,6_0_0 -11068,0,75.0,0.0,1,300,572.0,0.0,0.0,0,77,0.0,289.84830134944815,790.6036581734322,912.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129255,2,1,1,0,1,,46.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,814.308780620359,572.0,14953.529729669466,0,5,0,1,72.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06098894485029114,14953.529729669466,3,2,3_0,3_1_0,3_0_0,3_1_0 -11069,1,51.0,255.0,6,111,300.0,0.0,0.0,52,63,0.0,0.0,414.65226827277917,300.0,0.0,0.0,20,2,2,1,2,1,2,2,2,3,30.0,2,,4,111650,1,3,0,1,1,300.0,0.0,257.0,43,2.0,0.0,1.0,3.0,1.8,2,2,347.983152027051,300.0,14395.253687789005,1,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.020840202368540374,7997.363159882781,1,1,1_1,1_0_1,1_4_1,1_0_0 -11070,1,49.0,318.0,5,111,0.0,0.0,2000.0,0,52,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,71,0,0,0,0,0,0,0,0,0,,1,,3,118370,2,3,1,0,1,,250.0,998.0,22,2.0,0.0,4.0,4.0,2.3,2,1,866.738277298059,0.0,13608.44702832641,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14696754125117562,5916.716099272353,1,1,1_1,1_1_1,1_4_1,1_0_0 -11071,2,68.0,0.0,6,300,1102.0,0.0,0.0,75,75,0.0,0.0,1523.1559987886756,1432.0,567.7079113827633,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,113038,2,1,2,0,1,,162.0,,41,1.0,2.0,6.0,3.0,2.0,2,2,865.009394534303,1102.0,55326.13469105557,5,5,0,1,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025882885330709857,27663.067345527787,7,4,7,7_1,7_0,7_0_0 -11072,2,31.0,0.0,5,111,0.0,0.0,0.0,63,62,0.0,0.0,0.0,644.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,155.0,2,,3,129412,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,276.466511726434,0.0,23932.42478925512,1,1,1,2,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026909099502911007,15954.949859503415,3,2,3_0,3_0_0,3_4_0,3_0_0 -11073,2,49.0,0.0,1,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,3466.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,120003,2,1,1,0,1,,764.0,,43,2.0,0.0,7.0,5.0,2.8,3,1,463.346073624054,0.0,81939.52945127037,1,1,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04229948625786579,29264.11766116799,8,4,8,8_1,8_4,8_1_0 -11074,1,67.0,161.0,5,111,625.0,0.0,0.0,0,77,0.0,0.0,863.8588922349566,625.0,0.0,0.0,20,2,2,1,2,1,2,2,2,0,,2,,3,103660,2,1,0,1,1,760.0,0.0,412.0,11,0.0,3.0,5.0,1.0,1.0,3,3,349.268910362976,625.0,25508.066130885032,0,5,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.024502053459993713,25508.066130885032,7,4,7,7_0,7_4,7_0_0 -11075,0,85.0,0.0,5,111,210.0,0.0,0.0,0,77,0.0,0.0,290.25658779094545,210.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,3,115818,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,669.296609449097,210.0,33044.808448404554,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006355007332782377,33044.808448404554,8,4,8,8_0,8_4,8_0_0 -11076,2,29.0,0.0,5,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,287.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,3,100545,1,3,0,1,1,170.0,0.0,235.0,12,1.0,0.0,1.0,1.0,1.0,2,2,842.152819871557,0.0,18137.103238298383,0,1,2,3,19.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015823916103315197,18137.103238298383,4,2,4_0,4_0_0,4_4_0,4_0_0 -11077,1,46.0,344.0,2,112,0.0,0.0,1296.0,85,62,0.0,0.0,662.1436819494324,1296.0,0.0,1481.6465239498104,10,2,1,2,1,1,2,2,2,2,5.0,2,,2,111188,1,1,0,1,1,,0.0,366.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,3,3,2731.97962037061,0.0,27822.79188624738,6,1,2,3,92.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04658051590576013,9274.263962082461,1,1,1_1,1_0_1,1_1_1,1_0_1 -11078,1,42.0,120.0,2,111,0.0,0.0,840.0,85,63,0.0,0.0,429.16720126352106,840.0,0.0,960.3264507082105,71,2,1,2,2,1,2,2,2,0,,2,,2,105521,2,3,0,1,1,912.0,0.0,360.0,42,1.0,0.0,3.0,5.0,2.4,2,2,168.265107760119,0.0,31217.254800223564,6,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.026908195655755876,13007.189500093153,2,1,2_1,2_0_1,2_4_1,2_0_1 -11079,1,46.0,326.0,2,111,274.0,200.0,0.0,68,22,1093.3041299771764,0.0,378.715738355805,1206.0,0.0,362.73058016948977,31,1,2,2,2,1,2,2,2,0,,2,,2,124626,2,3,0,1,1,601.0,0.0,291.0,43,2.0,0.0,3.0,4.0,2.1,3,2,199.158714918914,274.0,12415.0,1,1,2,3,57.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.09714055577929924,5911.9047619047615,1,1,1_1,1_0_1,1_4_1,1_0_1 -11080,1,40.0,300.0,2,112,750.0,500.0,0.0,85,42,0.0,0.0,1036.630670681948,1250.0,0.0,906.8264504237244,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,127019,2,1,0,1,1,1032.0,0.0,357.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,2,2,2566.27317844626,750.0,23590.34887439134,6,1,2,3,100.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0529877708318653,9073.211105535132,1,1,1_1,1_0_1,1_1_1,1_0_1 -11081,2,63.0,0.0,2,112,1155.0,0.0,0.0,0,78,0.0,0.0,1596.4112328502,1155.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,130449,2,2,5,0,1,,0.0,419.0,11,0.0,3.0,2.0,1.0,1.0,2,2,2682.72982166786,1155.0,20772.037100868944,0,5,2,3,25.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055603597971220824,20772.037100868944,5,3,5,5_1,5_1,5_0_1 -11082,1,31.0,272.0,2,111,160.0,0.0,0.0,0,34,0.0,0.0,221.1478764121489,160.0,0.0,0.0,60,2,1,2,2,2,2,1,2,0,,2,,2,101653,1,2,0,1,1,330.0,0.0,260.0,12,1.0,0.0,1.0,1.0,1.0,2,2,249.521546079486,160.0,10022.396871478119,0,4,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.01596424508545758,10022.396871478119,2,1,2_1,2_0_1,2_4_1,2_0_1 -11083,1,54.0,183.0,1,112,432.0,1560.0,0.0,0,52,0.0,0.0,597.099266312802,1992.0,0.0,2829.2985253220204,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,118408,1,1,1,0,1,,175.0,417.0,32,1.0,0.0,6.0,3.0,2.0,2,2,2508.71386690847,432.0,21512.10309589663,0,1,2,3,80.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09259903558104313,10756.051547948315,2,1,2_1,2_1_1,2_1_1,2_1_0 -11084,2,46.0,0.0,2,111,11308.0,552.0,0.0,62,56,1478.6490282478208,0.0,15629.626165428623,12850.0,0.0,1001.1364012677918,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,107604,1,1,0,1,2,840.0,0.0,462.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,5,5,177.713011785969,11308.0,37150.992264674955,1,1,2,3,80.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.3458857816892937,14288.843178721138,3,2,3_0,3_0_0,3_4_0,3_0_1 -11085,2,60.0,0.0,1,112,1000.0,1000.0,0.0,75,38,0.0,51.75862524097289,1382.1742275759307,2050.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,2,45.0,1,,1,100668,2,1,2,0,2,,150.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,313.450575904918,1000.0,77451.88855576365,5,1,0,1,150.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026468044075181527,51634.592370509105,10,5,10,10_1,10_0,10_1_0 -11086,2,39.0,0.0,1,112,650.0,0.0,0.0,46,42,3248.5471075141513,124.22070057833493,898.4132479243549,2997.0,89.45700421788997,0.0,42,0,0,0,0,0,0,0,0,2,2.0,1,,1,120550,2,2,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,2263.68585475833,650.0,55837.727346752166,1,1,1,2,170.0,7,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05367338791187966,24277.272759457464,7,4,7,7_1,7_1,7_1_0 -11087,1,43.0,130.0,2,111,300.0,516.0,0.0,85,63,0.0,0.0,414.65226827277917,816.0,0.0,935.8448968372836,20,2,1,2,2,1,2,2,2,3,20.0,2,,2,107876,2,1,0,1,1,500.0,0.0,310.0,42,1.0,0.0,3.0,3.0,1.8,3,2,214.517128332798,300.0,28986.988239941107,6,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.028150561667377207,16103.882355522837,4,2,4_1,4_0_1,4_4_1,4_0_1 -11088,2,67.0,0.0,5,112,1600.0,0.0,0.0,86,86,0.0,0.0,2211.478764121489,1615.0,25.804905062852875,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,100815,2,1,2,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,412.897504047144,1600.0,32741.52025408562,5,5,0,1,91.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04932574869667128,21827.680169390413,6,3,6,6_1,6_0,6_0_0 -11089,2,51.0,0.0,2,111,600.0,900.0,0.0,0,65,0.0,0.0,829.3045365455583,1500.0,0.0,1632.287610762704,50,2,1,2,2,1,2,2,2,2,20.0,2,,2,110271,2,2,0,1,1,,0.0,510.0,22,3.0,3.0,4.0,3.0,2.0,3,3,218.326557360805,600.0,19879.65068507743,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.07545404211382689,9939.825342538716,2,1,2_0,2_0_0,2_4_0,2_0_1 -11090,2,47.0,0.0,1,112,710.0,500.0,0.0,52,43,0.0,0.0,981.3437015789107,1210.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,114864,1,2,2,0,1,,450.0,,43,4.0,0.0,7.0,5.0,2.8,3,3,339.68353295875,710.0,81622.34675145369,1,1,1,2,160.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014824371610933251,29150.838125519178,8,4,8,8_1,8_0,8_1_0 -11091,2,62.0,0.0,2,112,328.0,763.0,0.0,77,78,0.0,310.55175144583734,453.3531466449052,1391.0,0.0,1383.8171633466036,50,2,2,2,1,1,2,2,2,0,,1,,2,106200,1,3,1,0,1,,162.0,361.0,41,0.0,3.0,4.0,2.0,1.5,3,2,2226.4572817006,328.0,35364.36962496959,5,5,2,3,80.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.03933337465791732,23576.246416646394,6,3,6,6_1,6_1,6_0_1 -11092,0,50.0,0.0,2,111,1100.0,250.0,0.0,55,45,0.0,0.0,1520.3916503335236,1350.0,0.0,453.4132252118622,20,0,0,0,0,0,0,0,0,0,,2,,2,101365,2,2,0,1,1,703.0,0.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,227.78586261863,1100.0,48197.36517177179,1,1,5,0,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028009829898142803,19278.946068708716,5,3,5,5_0,5_4,5_0_1 -11093,2,42.0,0.0,2,111,0.0,1200.0,0.0,43,38,0.0,0.0,0.0,2064.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,124369,2,3,1,0,1,,607.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,4,4,549.915135954238,0.0,75151.11419583972,1,1,0,1,80.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027464662661172635,28904.27469070759,8,4,8,8_1,8_4,8_0_1 -11094,2,54.0,0.0,2,112,553.0,0.0,0.0,74,43,5227.547069563002,0.0,764.3423478494896,4113.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,132799,2,1,1,0,1,,140.0,,42,1.0,2.0,5.0,2.0,1.5,5,3,2261.04415640579,553.0,68767.62051757122,5,1,0,1,130.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059810125303798506,45845.080345047485,10,5,10,10_1,10_1,10_0_1 -11095,2,70.0,0.0,2,112,1360.0,0.0,0.0,78,78,1493.5848770180007,310.55175144583734,1879.7569495032656,2960.0,516.0981012570575,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,103186,1,2,2,0,2,,240.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,2116.25030385766,1360.0,27884.9377354197,5,5,0,1,100.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10615049702048218,18589.958490279798,4,2,4_0,4_1_0,4_1_0,4_0_1 -11096,2,34.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,775.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129593,1,3,0,1,2,439.0,0.0,511.0,12,1.0,1.0,2.0,1.0,1.0,2,2,362.741217798715,0.0,14766.510332483875,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05248362561973281,14766.510332483875,3,2,3_0,3_0_0,3_4_0,3_0_1 -11097,1,53.0,75.0,2,112,0.0,0.0,1600.0,85,62,0.0,0.0,817.4613357400401,1600.0,0.0,1829.1932394442103,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,120176,2,1,2,0,1,,460.0,,42,2.0,3.0,8.0,5.0,2.8,1,1,2323.00349882446,0.0,40595.31551151901,6,1,1,2,120.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03941341457356075,14498.326968399648,3,2,3_1,3_1_1,3_1_1,3_0_1 -11098,2,78.0,0.0,2,111,540.0,1560.0,0.0,75,74,0.0,0.0,746.3740828910024,2100.0,0.0,2829.2985253220204,71,0,0,0,0,0,0,0,0,0,,1,,2,130253,2,1,2,0,2,,780.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,260.499328976778,540.0,68859.02571958155,5,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030497091384242742,45906.0171463877,10,5,10,10_1,10_4,10_0_1 -11099,1,38.0,366.0,5,111,450.0,0.0,0.0,0,85,0.0,0.0,621.9784024091688,450.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,108540,1,1,0,1,1,417.0,0.0,308.0,31,0.0,0.0,3.0,5.0,2.2,2,2,618.495401117128,450.0,12223.184073806962,0,6,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036815284567652394,5555.992760821346,1,1,1_1,1_0_1,1_4_1,1_0_0 -11100,2,79.0,0.0,1,112,0.0,0.0,2300.0,0,77,0.0,0.0,1175.1006701263077,2300.0,0.0,2629.4652817010524,31,2,2,1,2,1,2,2,2,0,,1,,1,131028,1,2,1,0,2,,112.0,,11,0.0,4.0,10.0,1.0,1.0,3,3,2501.80095060013,0.0,17090.033459966045,0,5,0,1,110.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.13458136318971078,17090.033459966045,4,2,4_0,4_1_0,4_1_0,4_1_0 -11101,2,64.0,0.0,5,111,0.0,0.0,380.0,77,78,0.0,0.0,194.14706723825952,380.0,0.0,434.43339436799994,71,0,0,0,0,0,0,0,0,0,,2,,3,132007,2,1,0,1,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,4,4,595.053449906814,0.0,45372.321994247686,5,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008375149943795613,30248.21466283179,8,4,8,8_0,8_4,8_0_0 -11102,2,39.0,0.0,2,111,1000.0,0.0,0.0,38,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,75.0,8,,2,131386,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,454.874902876328,1000.0,80263.75882680473,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012458923113205135,33443.232844501974,8,4,8,8_0,8_4,8_0_1 -11103,2,42.0,0.0,8,111,494.0,1074.0,0.0,52,48,0.0,0.0,682.7940684225097,1568.0,0.0,1947.8632155101602,50,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,102167,2,2,1,0,1,,528.0,553.0,43,2.0,0.0,4.0,4.0,2.3,1,1,292.154946339101,494.0,52861.0622877318,1,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02966266533701324,22983.070559883396,6,3,6,6_1,6_4,6_0_0 -11104,1,66.0,56.0,2,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,423.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,102440,2,2,0,1,1,,0.0,242.0,11,0.0,0.0,3.0,1.0,1.0,2,2,3078.04171005927,0.0,11253.072932124296,0,5,2,3,70.0,7,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037589732382561594,11253.072932124296,2,1,2_1,2_0_1,2_1_1,2_0_1 -11105,2,48.0,0.0,5,111,290.0,90.0,0.0,35,37,0.0,0.0,400.8305259970199,380.0,0.0,163.2287610762704,71,0,0,0,0,0,0,0,0,0,,2,,3,101857,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,277.226882482399,290.0,40605.60943677257,1,4,0,1,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009358312934366916,19336.00449370122,5,3,5,5_0,5_4,5_0_0 -11106,2,76.0,0.0,5,112,1200.0,0.0,0.0,77,78,0.0,161.4869107518354,1658.6090730911167,1476.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125680,2,2,3,0,1,,208.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,2062.51202154033,1200.0,18720.553999779062,5,5,0,1,90.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07884382054171152,12480.369333186041,2,1,2_0,2_1_0,2_1_0,2_0_0 -11107,2,56.0,0.0,7,112,900.0,0.0,0.0,0,42,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,5,102011,2,2,0,0,1,,0.0,540.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1020.57368493675,900.0,28249.102645124032,0,1,2,3,40.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03398338035936522,28249.102645124032,8,4,8,8_0,8_2,8_0_0 -11108,2,50.0,0.0,5,112,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1036.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,103045,1,2,2,0,1,,135.0,600.0,32,2.0,1.0,6.0,2.0,1.5,2,2,2550.64767222547,0.0,29980.481109911132,0,1,2,3,100.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034555816372723674,19986.987406607423,5,3,5,5_1,5_1,5_0_0 -11109,2,71.0,0.0,2,112,4000.0,0.0,0.0,86,86,0.0,310.55175144583734,5528.696910303723,4440.0,240.84578058662683,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,112509,2,1,2,0,2,,1000.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,946.846445114874,4000.0,69735.23804880962,5,5,0,1,200.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0636693890238436,46490.15869920642,10,5,10,10_1,10_2,10_0_1 -11110,2,74.0,0.0,2,112,1805.0,0.0,0.0,75,75,0.0,103.51725048194578,2494.8244807745546,1935.0,51.60981012570575,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,113928,2,1,3,0,1,,306.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,2178.41084871294,1805.0,31048.84698052094,5,5,0,1,108.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062321154831094294,20699.23132034729,5,3,5,5_1,5_1,5_0_1 -11111,2,45.0,0.0,7,112,0.0,0.0,2380.0,42,37,0.0,0.0,1215.9737369133097,2380.0,0.0,2720.924943673263,70,0,0,0,0,0,0,0,0,2,50.0,1,,5,122264,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,611.967981541074,0.0,81332.9342179078,1,1,1,2,130.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02926243867734424,29047.476506395644,8,4,8,8_1,8_2,8_0_0 -11112,2,39.0,0.0,9,112,522.0,1222.0,0.0,54,56,0.0,0.0,721.4949467946358,1744.0,0.0,2216.2838448355824,50,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,116608,2,1,1,0,1,,328.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,2034.49164495041,522.0,55423.91801255774,1,1,1,2,150.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031466559249832375,19794.256433056336,5,3,5,5_1,5_1,5_0_0 -11113,1,66.0,51.0,2,111,77.0,55.0,0.0,0,78,0.0,0.0,106.42741552334665,132.0,0.0,99.75090954660969,70,0,0,0,0,0,0,0,0,0,,2,,2,100879,1,1,0,1,1,353.0,0.0,229.0,11,0.0,0.0,1.0,1.0,1.0,2,2,286.572399637886,77.0,13413.72628649024,0,5,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00984066598503244,13413.72628649024,3,2,3_1,3_0_1,3_4_1,3_0_1 -11114,2,83.0,0.0,1,112,1220.0,0.0,0.0,86,86,2987.1697540360015,465.827627168756,1686.2525576426353,3710.0,68.81308016760767,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,119047,2,1,2,0,1,,400.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,702.387619766359,1220.0,67625.70340002989,5,5,0,1,121.0,10,4,1,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054860797203898075,45083.802266686595,10,5,10,10_1,10_2,10_1_0 -11115,0,36.0,0.0,2,112,0.0,0.0,0.0,0,67,0.0,0.0,0.0,293.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127459,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,3495.43379307584,0.0,1006.0,0,4,5,0,25.0,7,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.2912524850894632,1006.0,1,1,1_0,1_0_0,1_1_0,1_0_1 -11116,1,49.0,170.0,2,111,287.0,476.0,0.0,56,63,0.0,0.0,396.68400331429206,763.0,0.0,863.2987808033856,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,123695,2,2,0,1,1,906.0,0.0,353.0,43,2.0,0.0,3.0,5.0,2.4,4,3,177.713011785969,287.0,28607.464863165376,1,1,3,4,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02667136020788859,11919.777026318907,2,1,2_1,2_0_1,2_4_1,2_0_1 -11117,2,83.0,0.0,6,111,1200.0,0.0,0.0,44,90,0.0,31.055175144583732,1658.6090730911167,1230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,133600,2,1,1,0,1,,479.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,648.7647111339,1200.0,79788.89527567815,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01541567903340727,53192.5968504521,10,5,10,10_1,10_4,10_0_0 -11118,1,67.0,66.0,7,111,100.0,0.0,0.0,85,78,0.0,0.0,138.21742275759306,130.0,51.60981012570575,0.0,71,2,2,2,2,1,2,2,2,0,,2,,5,107549,2,1,0,0,1,,60.0,400.0,41,0.0,1.0,2.0,2.0,1.5,2,2,928.467159163349,100.0,15855.513651975412,6,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.008199040589505185,10570.342434650274,2,1,2_1,2_0_1,2_4_1,2_0_0 -11119,2,44.0,0.0,2,112,340.0,776.0,0.0,52,62,0.0,0.0,469.9392373758164,1266.0,258.04905062852873,1407.3946510576204,50,2,2,2,2,1,2,2,2,2,10.0,1,,2,105478,1,2,4,0,2,,220.0,,43,3.0,0.0,6.0,4.0,2.3,3,3,2126.5236970903,340.0,37454.2177018013,4,1,1,2,84.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.033801266657856634,16284.442479044046,4,2,4_0,4_1_0,4_1_0,4_0_1 -11120,1,23.0,377.0,6,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,1017.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,129161,2,1,0,1,1,600.0,0.0,370.0,32,1.0,0.0,4.0,2.0,1.3,2,2,361.930216218026,0.0,9175.049958677871,0,4,2,3,60.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11084408309276936,7057.730737444516,1,1,1_1,1_0_1,1_2_1,1_0_0 -11121,2,51.0,0.0,1,111,881.0,0.0,0.0,42,37,4182.037655650402,0.0,1217.6954944943948,3781.0,172.03270041901916,0.0,71,2,2,2,2,1,2,2,2,2,60.0,1,,1,111991,1,3,1,0,1,,556.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,553.980981439111,881.0,78729.9022779008,1,1,1,2,168.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04802495482153435,31491.960911160317,8,4,8,8_1,8_4,8_1_0 -11122,2,87.0,0.0,2,112,430.0,620.0,0.0,0,86,0.0,0.0,594.3349178576501,1050.0,0.0,1124.4647985254182,60,0,0,0,0,0,0,0,0,0,,2,,2,123079,2,2,0,0,1,,55.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,3321.18811115888,430.0,25895.07277863285,0,5,0,1,60.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04054825444886954,25895.07277863285,7,4,7,7_0,7_1,7_0_1 -11123,2,38.0,0.0,7,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,1083.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,2,,5,107711,2,1,0,0,1,,0.0,690.0,43,2.0,0.0,2.0,2.0,1.5,3,3,736.606001704834,0.0,10625.142259911445,1,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10192804703294639,7083.428173274297,1,1,1_0,1_0_0,1_4_0,1_0_0 -11124,2,65.0,0.0,1,112,492.0,1556.0,0.0,0,86,0.0,0.0,680.0297199673578,2048.0,0.0,2822.0439137186304,70,2,2,2,2,1,2,2,2,0,,1,,1,124619,2,1,1,0,1,,86.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,2600.02586521007,492.0,17971.867470571447,0,5,0,1,80.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.11395588151056403,17971.867470571447,4,2,4_0,4_1_0,4_1_0,4_1_0 -11125,2,40.0,0.0,8,112,400.0,300.0,0.0,0,53,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,31,0,0,0,0,0,0,0,0,4,120.0,1,2002.0,6,129600,2,1,2,0,1,,400.0,,12,1.0,2.0,7.0,1.0,1.0,3,3,882.066352694187,400.0,38550.728386212904,0,1,1,2,142.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018157892971234872,38550.728386212904,9,5,9,9_1,9_1,9_0_0 -11126,1,42.0,254.0,2,112,860.0,770.0,0.0,0,54,0.0,0.0,1188.6698357153002,1630.0,0.0,1396.5127336525356,43,2,2,2,2,1,2,2,2,0,,1,,2,120928,1,2,5,0,1,,0.0,414.0,12,1.0,0.0,5.0,1.0,1.0,2,2,2254.859520048,860.0,7204.897959183673,0,4,2,3,90.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.22623498753682303,7204.897959183673,1,1,1_1,1_1_1,1_1_1,1_0_1 -11127,2,34.0,0.0,8,112,1440.0,0.0,0.0,42,37,0.0,0.0,1990.33088770934,1440.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,15.0,2,2001.0,6,116896,2,3,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,869.302783646631,1440.0,68514.28187907574,1,1,1,2,78.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.021017515771989372,32625.84851384559,8,4,8,8_0,8_1,8_0_0 -11128,1,32.0,213.0,2,111,0.0,0.0,0.0,67,68,0.0,0.0,0.0,1193.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,122907,2,1,0,1,1,,0.0,286.0,43,2.0,0.0,3.0,4.0,2.1,4,3,351.106884009283,0.0,25785.86349322168,4,1,2,3,60.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04626566026433838,12278.982615819848,2,1,2_1,2_0_1,2_2_1,2_0_1 -11129,2,42.0,0.0,7,112,1200.0,0.0,0.0,56,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,116068,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,701.522631657544,1200.0,57945.48283518021,1,1,1,2,90.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020709120733591484,27593.087064371528,7,4,7,7_1,7_1,7_0_0 -11130,2,53.0,0.0,1,112,450.0,1600.0,0.0,54,47,0.0,0.0,621.9784024091688,2050.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,0,,1,,1,105773,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,2292.46600240499,450.0,111364.00682340258,1,4,1,2,85.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01840810202932823,61868.8926796681,10,5,10,10_1,10_1,10_1_0 -11131,2,28.0,0.0,6,111,350.0,130.0,0.0,0,64,0.0,0.0,483.76097965157567,480.0,0.0,235.77487711016835,12,1,2,2,2,1,2,2,2,0,,2,,4,119011,1,2,0,1,1,,0.0,284.0,12,1.0,1.0,3.0,1.0,1.0,2,2,412.615716142827,350.0,17846.62853792079,0,1,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02689583631889287,17846.62853792079,4,2,4_0,4_0_0,4_2_0,4_0_0 -11132,2,25.0,0.0,9,112,0.0,0.0,0.0,63,37,0.0,0.0,0.0,635.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,113107,2,1,0,0,1,,315.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,960.043440009996,0.0,43554.489737120704,1,1,1,2,52.0,10,3,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014579438396193653,29036.3264914138,8,4,8,8_0,8_1,8_0_0 -11133,1,90.0,100.0,1,112,260.0,0.0,0.0,0,72,0.0,0.0,359.36529916974195,320.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,130086,1,2,2,0,2,,227.0,200.0,11,0.0,7.0,3.0,1.0,1.0,3,3,3281.99990784321,260.0,9514.506507633992,0,5,2,3,90.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03363285313255575,9514.506507633992,1,1,1_1,1_1_1,1_1_1,1_1_0 -11134,1,28.0,491.0,2,112,0.0,0.0,0.0,0,85,0.0,0.0,0.0,339.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116307,1,2,0,1,2,1220.0,210.0,525.0,31,0.0,0.0,4.0,4.0,1.9,4,4,253.161170235157,0.0,13942.043245480561,0,6,2,3,83.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024314943945528925,7337.917497621348,1,1,1_1,1_0_1,1_2_1,1_0_1 -11135,1,46.0,66.0,7,112,264.0,758.0,0.0,81,56,0.0,0.0,364.89399608004567,1022.0,0.0,1374.7488988423663,50,0,0,0,0,0,0,0,0,3,15.0,2,,5,132990,2,1,0,0,1,,0.0,433.0,43,2.0,0.0,2.0,2.0,1.5,2,2,905.971136760726,264.0,19465.69417704837,4,1,2,3,30.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052502622855598986,12977.129451365581,2,1,2_1,2_0_1,2_1_1,2_0_0 -11136,1,57.0,204.0,2,112,0.0,0.0,1030.0,85,78,0.0,0.0,526.2407348826508,1030.0,0.0,1177.5431478922103,31,0,0,0,0,0,0,0,0,0,,2,,2,105052,1,1,0,0,1,,0.0,189.0,41,0.0,8.0,2.0,2.0,1.5,3,2,2778.06632122323,0.0,9811.27216301612,6,7,2,3,55.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10498128916274645,6540.848108677413,1,1,1_1,1_0_1,1_1_1,1_0_1 -11137,2,39.0,0.0,9,112,2300.0,0.0,0.0,46,42,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,25.0,1,2006.0,6,123427,1,2,1,0,1,,0.0,789.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1418.67002146493,2300.0,38882.31737527008,1,1,2,3,65.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.059152852897158985,21601.2874307056,6,3,6,6_1,6_1,6_0_0 -11138,2,86.0,0.0,2,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,488.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,114734,2,1,0,1,1,564.0,0.0,297.0,11,0.0,3.0,3.0,1.0,1.0,2,2,3078.04171005927,0.0,16478.902192202062,0,5,2,3,84.0,7,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029613623183644185,16478.902192202062,4,2,4_0,4_0_0,4_1_0,4_0_1 -11139,1,40.0,200.0,2,112,396.0,1024.0,0.0,53,52,0.0,0.0,547.3409941200684,1420.0,0.0,1857.1805704677877,71,2,2,2,2,2,2,1,2,1,2.0,2,,2,116035,1,3,0,0,2,,152.0,400.0,43,2.0,2.0,5.0,2.0,1.5,4,4,2704.07894198895,396.0,19882.052580803665,4,1,2,3,90.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.07142119729484195,13254.701720535777,3,2,3_1,3_0_1,3_1_1,3_0_1 -11140,2,43.0,0.0,2,111,120.0,180.0,0.0,52,64,0.0,0.0,165.86090730911167,300.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,131657,2,1,0,1,1,670.0,0.0,190.0,43,2.0,0.0,3.0,4.0,2.1,3,3,340.101108199867,120.0,32442.40128639516,1,1,2,3,64.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009247157673430484,15448.762517331028,3,2,3_0,3_0_0,3_2_0,3_0_1 -11141,1,51.0,411.0,2,111,400.0,240.0,0.0,0,85,0.0,0.0,552.8696910303722,640.0,0.0,435.27669620338776,50,2,2,1,2,1,2,2,2,0,,2,,2,117219,1,2,0,1,1,650.0,0.0,370.0,31,0.0,0.0,4.0,4.0,2.5,2,2,343.729050814499,400.0,1322.7400351332192,0,7,2,3,75.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.4838441288544976,529.0960140532877,1,1,1_1,1_0_1,1_2_1,1_0_1 -11142,2,52.0,0.0,6,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,282.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,105419,2,1,0,1,1,240.0,0.0,181.0,42,1.0,3.0,3.0,3.0,1.8,2,2,354.276581469413,0.0,22461.21898453831,7,4,2,3,50.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012554973093585041,12478.454991410172,2,1,2_0,2_0_0,2_2_0,2_0_0 -11143,2,87.0,0.0,5,112,290.0,0.0,0.0,0,86,2882.6188126447414,0.0,400.8305259970199,2280.0,103.2196202514115,0.0,50,2,2,1,2,1,2,2,2,0,,1,,3,114930,2,1,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,3,1,2348.90558797758,290.0,12468.502133496877,0,5,0,1,80.0,7,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.1828607779498016,12468.502133496877,2,1,2_0,2_1_0,2_1_0,2_0_0 -11144,0,60.0,0.0,2,112,0.0,0.0,0.0,53,52,0.0,0.0,0.0,232.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,124527,2,1,0,1,1,,0.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,267.974704935035,0.0,57882.302134386206,1,1,5,0,76.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00400813359947851,28941.151067193103,8,4,8,8_0,8_2,8_0_1 -11145,1,48.0,412.0,2,111,420.0,240.0,0.0,56,68,0.0,0.0,580.5131755818909,660.0,0.0,435.27669620338776,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,129710,2,1,0,1,1,1040.0,0.0,372.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,306.275144035823,420.0,25643.36680778224,4,1,2,3,65.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02573765001090666,9862.833387608556,2,1,2_1,2_0_1,2_2_1,2_0_1 -11146,1,39.0,319.0,5,111,500.0,0.0,0.0,53,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,3,131314,1,1,0,1,1,44.0,0.0,405.0,43,2.0,1.0,3.0,3.0,1.8,3,2,835.082166510188,500.0,28253.17327116642,1,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017697127158111885,15696.207372870233,3,2,3_1,3_0_1,3_4_1,3_0_0 -11147,2,54.0,0.0,6,111,400.0,0.0,0.0,0,52,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,4,127794,2,1,0,1,1,1080.0,0.0,609.0,32,3.0,0.0,4.0,3.0,2.0,2,2,653.28283895785,400.0,48016.5592896751,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008330459448101506,24008.27964483755,6,3,6,6_0,6_4,6_0_0 -11148,2,69.0,0.0,1,112,550.0,1211.0,0.0,78,78,0.0,333.3255465518654,760.1958251667618,2083.0,0.0,2196.333662926261,41,0,0,0,0,0,0,0,0,0,,1,,1,104077,2,2,2,0,2,,152.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2247.63836724195,550.0,15513.307509407201,6,5,0,1,120.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13427181784006267,10342.205006271468,2,1,2_0,2_1_0,2_1_0,2_1_0 -11149,1,21.0,337.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,977.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,129862,2,2,0,1,1,850.0,0.0,315.0,32,1.0,0.0,3.0,2.0,1.3,2,2,400.341653526369,0.0,9397.727892833056,0,4,2,3,68.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10396129906517987,7229.021456025427,1,1,1_1,1_0_1,1_2_1,1_0_1 -11150,2,35.0,0.0,5,111,300.0,1500.0,0.0,37,38,0.0,51.75862524097289,414.65226827277917,1850.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,3,80.0,1,,3,130454,1,2,3,0,2,,700.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,779.359969548541,300.0,87056.29555022702,1,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021250617066891443,41455.378833441435,9,5,9,9_1,9_4,9_0_0 -11151,2,82.0,0.0,5,111,712.0,379.0,0.0,0,75,0.0,0.0,984.1080500340626,2299.0,0.0,687.3744494211832,43,0,0,0,0,0,0,0,0,0,,2,,3,100029,2,1,0,1,1,710.0,0.0,279.0,11,0.0,3.0,3.0,1.0,1.0,2,2,390.687994417354,712.0,17789.13920583514,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12923615771390945,17789.13920583514,4,2,4_0,4_0_0,4_2_0,4_0_0 -11152,2,58.0,0.0,5,111,750.0,950.0,0.0,68,21,0.0,0.0,1036.630670681948,1700.0,0.0,1722.9702558050765,71,0,0,0,0,0,0,0,0,0,,8,,3,133009,2,1,0,0,1,,950.0,,43,2.0,1.0,3.0,3.0,2.0,2,2,882.077268502033,750.0,43081.493110085714,1,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03946009939014896,21540.746555042857,6,3,6,6_0,6_4,6_0_0 -11153,1,39.0,394.0,5,111,310.0,300.0,0.0,56,62,0.0,0.0,428.47401054853844,610.0,0.0,544.0958702542347,30,0,0,0,0,0,0,0,0,0,,2,,3,126418,2,1,0,1,1,817.0,0.0,427.0,43,2.0,0.0,4.0,5.0,2.4,2,2,353.884692454483,310.0,24100.106628242076,1,1,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02531109133289735,10041.711095100865,2,1,2_1,2_0_1,2_2_1,2_0_0 -11154,1,61.0,254.0,2,112,450.0,0.0,0.0,0,78,0.0,98.34138795784848,621.9784024091688,605.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132399,1,1,1,0,1,,170.0,313.0,11,0.0,1.0,3.0,1.0,1.0,3,1,2090.18094601008,450.0,11785.49570240212,0,5,2,3,70.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05133428540275051,11785.49570240212,2,1,2_1,2_1_1,2_1_1,2_0_1 -11155,1,44.0,153.0,5,111,350.0,130.0,0.0,85,62,0.0,0.0,483.76097965157567,480.0,0.0,235.77487711016835,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,128310,2,2,0,1,1,960.0,0.0,325.0,42,1.0,0.0,4.0,3.0,2.0,2,2,377.917945887513,350.0,30987.97941009544,6,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015489877337520849,15493.98970504772,3,2,3_1,3_0_1,3_2_1,3_0_0 -11156,2,50.0,0.0,5,111,230.0,70.0,0.0,0,65,0.0,0.0,317.900072342464,300.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,127929,2,2,0,1,1,750.0,0.0,306.0,32,2.0,1.0,3.0,2.0,1.5,2,2,431.003749440114,230.0,33015.35743707965,0,1,2,3,74.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009086680359942706,22010.23829138643,6,3,6,6_0,6_2,6_0_0 -11157,1,34.0,211.0,7,112,900.0,0.0,0.0,55,64,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,108109,2,1,2,0,1,,204.0,504.0,43,2.0,0.0,4.0,5.0,2.4,2,2,2065.36412084137,900.0,24182.757785057627,1,1,2,3,105.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03721659903305587,10076.149077107346,2,1,2_1,2_1_1,2_1_1,2_0_0 -11158,2,35.0,0.0,2,112,360.0,180.0,0.0,55,67,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,71,2,2,2,1,2,2,2,2,2,15.0,2,,2,124026,2,1,0,1,1,1116.0,346.0,388.0,43,2.0,0.0,4.0,3.0,1.8,1,1,267.974704935035,360.0,32789.083706839025,1,1,2,3,76.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,1,0,0.01646889571017103,18216.157614910568,4,2,4_0,4_0_0,4_2_0,4_0_1 -11159,2,85.0,0.0,1,112,0.0,0.0,0.0,0,86,0.0,0.0,0.0,2092.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132378,2,1,3,0,1,,144.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,2346.06194687463,0.0,22378.86414298054,0,5,0,1,70.0,7,2,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0934810626059494,22378.86414298054,6,3,6,6_1,6_1,6_1_0 -11160,2,78.0,0.0,5,112,839.0,0.0,0.0,86,86,0.0,0.0,1159.6441769362057,959.0,206.439240502823,0.0,71,2,2,2,2,1,2,2,2,0,,1,,3,109169,2,2,3,0,1,,160.0,413.0,41,0.0,2.0,3.0,2.0,1.5,2,1,1853.35680559054,839.0,20895.049820904576,5,5,2,3,70.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.045896037971661724,13930.033213936384,3,2,3_0,3_1_0,3_1_0,3_0_0 -11161,1,71.0,128.0,5,111,320.0,0.0,0.0,0,77,0.0,0.0,442.2957528242978,894.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,119811,1,2,0,1,1,390.0,0.0,348.0,11,0.0,7.0,3.0,1.0,1.0,2,2,388.801101163518,320.0,11803.642201834864,0,5,2,3,60.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0757393340727516,11803.642201834864,2,1,2_1,2_0_1,2_2_1,2_0_0 -11162,2,64.0,0.0,6,112,2653.0,0.0,0.0,0,75,0.0,0.0,3666.908225758944,2713.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116469,2,1,3,0,1,,458.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,2327.36983497193,2653.0,35245.994921638994,0,5,0,1,110.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07697328465352458,35245.994921638994,9,5,9,9_1,9_1,9_0_0 -11163,2,82.0,0.0,2,112,960.0,0.0,0.0,0,86,4032.679167948602,0.0,1326.8872584728933,3810.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131241,2,1,1,0,2,,392.0,,21,1.0,16.0,7.0,2.0,1.5,2,2,2215.98374025048,960.0,44523.0,0,5,0,1,100.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08557374839970353,29682.0,8,4,8,8_1,8_1,8_0_1 -11164,2,64.0,0.0,2,112,400.0,50.0,0.0,85,75,0.0,621.1035028916747,552.8696910303722,1050.0,0.0,90.68264504237244,50,0,0,0,0,0,0,0,0,0,,1,,2,132298,2,1,2,0,1,,258.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2408.23477140831,400.0,24487.678224215764,6,5,0,1,110.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04287870782954259,16325.118816143842,4,2,4_0,4_1_0,4_1_0,4_0_1 -11165,2,40.0,0.0,2,111,0.0,0.0,660.0,54,63,0.0,0.0,337.2028009927665,660.0,0.0,754.5422112707369,42,0,0,0,0,0,0,0,0,2,30.0,2,,2,117755,2,1,0,1,1,588.0,0.0,476.0,43,2.0,1.0,3.0,2.0,1.5,2,2,418.118663654065,0.0,29089.133589851328,1,1,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022688884767274816,19392.755726567553,5,3,5,5_0,5_2,5_0_1 -11166,2,57.0,0.0,1,112,492.0,0.0,0.0,0,62,0.0,310.55175144583734,680.0297199673578,1040.0,426.64109703916756,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,109285,2,2,2,0,1,,184.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,2073.73426336958,492.0,22185.33925391675,0,1,0,1,60.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04687780466626812,14790.226169277834,3,2,3_0,3_1_0,3_1_0,3_1_0 -11167,1,31.0,510.0,5,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,653.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,112642,2,1,0,1,1,720.0,0.0,448.0,32,1.0,0.0,4.0,6.0,2.5,1,1,348.644131060999,0.0,18620.290656179695,0,4,2,3,80.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035069269973145266,7448.116262471878,1,1,1_1,1_0_1,1_2_1,1_0_0 -11168,1,24.0,286.0,2,112,240.0,1760.0,0.0,85,85,0.0,0.0,331.72181461822333,2000.0,0.0,3192.02910549151,71,0,0,0,0,0,0,0,0,0,,2,,2,127786,2,3,0,0,1,,0.0,260.0,41,0.0,0.0,3.0,3.0,1.8,2,2,3029.84396859676,240.0,8914.0,6,6,2,3,62.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2243661655822302,4952.222222222222,1,1,1_1,1_0_1,1_1_1,1_0_1 -11169,1,24.0,350.0,5,111,900.0,0.0,0.0,0,52,0.0,0.0,1243.9568048183376,1550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,112263,2,1,0,1,1,300.0,0.0,350.0,32,1.0,0.0,3.0,2.0,1.3,1,1,363.490705597985,900.0,11753.078844521242,0,1,2,3,61.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13188033710184294,9040.829880400956,1,1,1_1,1_0_1,1_2_1,1_0_0 -11170,2,40.0,0.0,2,111,240.0,0.0,0.0,0,42,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,120183,1,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,418.269460204023,240.0,27233.498176014335,0,1,1,2,50.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008812676155257127,27233.498176014335,7,4,7,7_0,7_2,7_0_1 -11171,2,60.0,0.0,2,112,800.0,0.0,0.0,0,78,2915.4776799391375,0.0,1105.7393820607444,2914.0,278.692974678811,0.0,71,2,2,2,1,1,2,2,1,0,,1,,2,110412,1,1,2,0,2,,193.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2383.18729561707,800.0,20668.696817145454,0,5,0,1,62.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.14098615049511629,20668.696817145454,5,3,5,5_1,5_1,5_0_1 -11173,1,72.0,147.0,2,111,200.0,240.0,0.0,0,78,0.0,0.0,276.4348455151861,440.0,0.0,435.27669620338776,70,0,0,0,0,0,0,0,0,0,,2,,2,127430,1,2,0,1,1,860.0,0.0,248.0,11,0.0,3.0,3.0,1.0,1.0,2,2,375.950436314356,200.0,10677.51448683819,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04120809206509371,10677.51448683819,2,1,2_1,2_0_1,2_2_1,2_0_1 -11174,2,70.0,0.0,2,400,0.0,0.0,0.0,77,72,0.0,0.0,0.0,1135.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123300,2,2,1,0,1,,480.0,,41,0.0,2.0,5.0,2.0,1.5,4,3,958.691960015961,0.0,65162.967908948856,5,5,0,1,98.0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017417868406268983,43441.9786059659,10,5,10,10_1,10_0,10_0_1 -11175,1,24.0,268.0,2,111,0.0,0.0,0.0,68,56,0.0,0.0,0.0,419.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115513,2,1,0,1,1,70.0,0.0,415.0,43,2.0,0.0,4.0,4.0,2.1,2,2,332.291836918064,0.0,15870.27625485709,4,4,2,3,80.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026401556801619333,7557.274407074804,1,1,1_1,1_0_1,1_2_1,1_0_1 -11176,2,42.0,0.0,6,400,1450.0,500.0,0.0,47,43,0.0,51.75862524097289,2004.1526299850993,2000.0,0.0,906.8264504237244,70,0,0,0,0,0,0,0,0,2,25.0,1,,4,131424,2,1,2,0,1,,1400.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,869.669313528494,1450.0,61313.15297787356,1,1,0,1,125.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03261942834226372,24525.261191149424,7,4,7,7_1,7_0,7_0_0 -11177,1,83.0,263.0,2,111,380.0,0.0,0.0,0,78,0.0,0.0,525.2262064788536,380.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,119344,2,1,0,1,1,830.0,0.0,288.0,11,0.0,5.0,3.0,1.0,1.0,2,2,386.24183447912,380.0,9478.789219194292,0,5,2,3,50.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04008950839739218,9478.789219194292,1,1,1_1,1_0_1,1_2_1,1_0_1 -11178,2,27.0,0.0,5,400,0.0,0.0,0.0,47,54,0.0,0.0,0.0,1858.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,112199,1,2,3,0,2,,362.0,450.0,43,2.0,0.0,3.0,2.0,1.5,1,1,895.190577625399,0.0,34682.64343741193,4,1,2,3,90.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05357146445174903,23121.762291607953,6,3,6,6_1,6_0,6_0_0 -11179,2,93.0,0.0,1,112,480.0,0.0,0.0,35,86,6721.131946581003,0.0,663.4436292364467,5060.0,137.62616033521533,0.0,41,2,2,2,1,1,1,2,2,0,,1,,1,114359,1,2,3,0,2,,483.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,561.609579676293,480.0,26564.891275071164,1,5,0,1,360.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.19047697005815978,17709.92751671411,4,2,4_0,4_1_0,4_0_0,4_1_0 -11180,1,88.0,162.0,2,111,250.0,370.0,0.0,0,78,0.0,0.0,345.54355689398267,620.0,0.0,671.0515733135561,50,0,0,0,0,0,0,0,0,0,,2,,2,126502,2,1,0,1,1,,137.0,299.0,11,0.0,3.0,3.0,1.0,1.0,4,4,388.116307338501,250.0,12638.857777747004,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04905506580599571,12638.857777747004,2,1,2_1,2_0_1,2_2_1,2_0_1 -11181,2,42.0,0.0,7,112,1300.0,0.0,0.0,47,46,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,5,125235,2,1,3,0,1,,980.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,5,5,331.306995987882,1300.0,46180.91570397577,1,1,1,2,100.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028150156405150742,17761.8906553753,4,2,4_0,4_1_0,4_0_0,4_0_0 -11182,2,56.0,0.0,2,400,950.0,0.0,0.0,67,63,0.0,362.31037668681023,1313.065516197134,1365.0,111.82125527236246,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,123206,2,1,1,0,1,,800.0,,43,2.0,1.0,3.0,2.0,1.5,4,3,813.244293431497,950.0,39290.44851237381,1,1,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03474126795905926,26193.632341582543,7,4,7,7_1,7_0,7_0_1 -11183,1,31.0,331.0,2,111,350.0,350.0,0.0,0,55,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,44,0,0,0,0,0,0,0,0,3,15.0,2,,2,100575,2,3,0,1,1,700.0,0.0,248.0,32,1.0,0.0,4.0,3.0,1.6,1,1,411.321906774222,350.0,5160.004228071616,0,1,2,3,53.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13565880357070992,3225.00264254476,1,1,1_1,1_0_1,1_2_1,1_0_1 -11184,2,33.0,0.0,2,111,380.0,900.0,0.0,85,62,0.0,0.0,525.2262064788536,1280.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,118059,1,2,0,1,1,,0.0,298.0,42,1.0,0.0,3.0,2.0,1.5,1,1,327.594223671334,380.0,19916.796418696646,6,1,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0642673637412097,13277.864279131098,3,2,3_0,3_0_0,3_2_0,3_0_1 -11185,2,45.0,0.0,2,400,750.0,0.0,0.0,62,67,0.0,0.0,1036.630670681948,875.0,215.04087552377396,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,106104,2,1,1,0,1,,1180.0,417.0,43,3.0,0.0,5.0,5.0,3.0,1,1,680.893344331272,750.0,52874.79007448895,1,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016548529058315265,17624.93002482965,4,2,4_0,4_1_0,4_0_0,4_0_1 -11186,2,88.0,0.0,2,111,310.0,218.0,0.0,78,78,0.0,0.0,428.47401054853844,528.0,0.0,395.3763323847439,44,0,0,0,0,0,0,0,0,0,,2,,2,130337,2,1,0,1,1,1050.0,0.0,258.0,41,0.0,3.0,3.0,2.0,1.5,2,2,348.399590271687,310.0,22716.708694121866,5,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023242803660929293,15144.47246274791,3,2,3_0,3_0_0,3_2_0,3_0_1 -11187,2,68.0,0.0,5,400,1800.0,0.0,0.0,86,74,0.0,41.40690019277831,2487.913609636675,1840.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,101418,2,2,1,0,1,,780.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,829.967712071925,1800.0,62734.12284584009,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029330130342645106,41822.748563893394,9,5,9,9_1,9_0,9_0_0 -11189,1,55.0,294.0,1,400,900.0,0.0,0.0,68,78,0.0,1449.241506747241,1243.9568048183376,2460.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120150,1,3,4,0,2,,800.0,300.0,42,1.0,3.0,7.0,5.0,2.8,2,2,975.760679732763,900.0,9229.0,1,7,2,3,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2665510889587171,3296.071428571429,1,1,1_1,1_1_1,1_0_1,1_1_0 -11190,1,83.0,356.0,5,111,370.0,120.0,0.0,0,77,0.0,0.0,511.40446420309434,490.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,3,130903,2,1,0,1,2,680.0,0.0,335.0,21,0.0,3.0,4.0,2.0,1.5,2,2,342.676535658545,370.0,20828.59394617163,0,5,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023525351796013276,13885.729297447753,3,2,3_1,3_0_1,3_2_1,3_0_0 -11191,0,48.0,0.0,9,400,600.0,2500.0,0.0,85,56,0.0,0.0,829.3045365455583,3100.0,0.0,4534.132252118622,70,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,131540,1,1,1,0,1,,1500.0,,42,1.0,2.0,6.0,5.0,2.5999999999999996,1,1,857.186218102002,600.0,27111.012458987145,6,1,5,0,120.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11434467837339538,10427.312484225826,2,1,2_0,2_1_0,2_0_0,2_0_0 -11192,1,60.0,251.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1375.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108924,2,1,0,1,1,410.0,0.0,234.0,11,0.0,3.0,3.0,1.0,1.0,5,4,388.116307338501,0.0,11793.183486238533,0,7,2,3,55.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1165927759543882,11793.183486238533,2,1,2_1,2_0_1,2_2_1,2_0_1 -11193,1,36.0,269.0,1,400,840.0,3400.0,0.0,85,63,0.0,0.0,1161.0263511637818,4240.0,0.0,6166.4198628813265,71,0,0,0,0,0,0,0,0,0,,1,,1,105510,2,1,4,0,1,,405.0,510.0,42,1.0,0.0,7.0,5.0,2.4,3,3,1038.13185473335,840.0,24822.317466214125,6,4,2,3,180.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17081402676325858,10342.632277589219,2,1,2_1,2_1_1,2_0_1,2_1_0 -11194,1,61.0,151.0,1,111,280.0,500.0,0.0,0,78,0.0,0.0,387.00878372126056,780.0,0.0,906.8264504237244,60,0,0,0,0,0,0,0,0,0,,2,,1,129858,1,2,0,0,2,,0.0,305.0,11,0.0,2.0,1.0,1.0,1.0,1,1,501.369596219109,280.0,15347.034973280606,0,5,2,3,32.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05082414950887845,15347.034973280606,3,2,3_1,3_0_1,3_2_1,3_1_0 -11195,2,70.0,0.0,2,400,246.0,730.0,0.0,85,78,0.0,0.0,340.0148599836789,976.0,0.0,1323.9666176186377,71,2,2,2,1,1,2,2,2,0,,1,,2,112456,1,3,4,0,1,,480.0,393.0,41,0.0,5.0,5.0,2.0,1.5,3,2,844.380353543672,246.0,15403.563651946943,6,5,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.06336196104053089,10269.042434631296,2,1,2_0,2_1_0,2_0_0,2_0_1 -11196,1,63.0,81.0,2,111,219.0,450.0,0.0,0,78,0.0,0.0,302.6961558391288,669.0,0.0,816.143805381352,31,0,0,0,0,0,0,0,0,0,,2,,2,118063,1,3,0,0,2,,0.0,228.0,11,0.0,4.0,2.0,1.0,1.0,2,2,438.673565736164,219.0,11478.2,0,5,2,3,45.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05828439999303026,11478.2,2,1,2_1,2_0_1,2_2_1,2_0_1 -11197,2,56.0,0.0,1,400,700.0,0.0,0.0,62,38,0.0,41.40690019277831,967.5219593031513,810.0,120.42289029331342,0.0,33,0,0,0,0,0,0,0,0,2,3.0,1,,1,128851,2,1,1,0,1,,750.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,990.132958993471,700.0,78608.13168372792,1,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010304277466597926,39304.06584186396,9,5,9,9_1,9_0,9_1_0 -11198,2,69.0,0.0,2,111,180.0,250.0,0.0,86,22,0.0,0.0,248.7913609636675,430.0,0.0,453.4132252118622,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,114884,2,2,0,1,1,624.0,0.0,240.0,42,2.0,0.0,4.0,3.0,2.0,3,2,417.858394537324,180.0,50872.600052683425,6,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008452487184745698,25436.300026341713,7,4,7,7_0,7_2,7_0_1 -11199,2,60.0,0.0,6,111,2000.0,0.0,0.0,45,33,0.0,165.62760077111324,2764.3484551518613,2160.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,75.0,1,,4,127728,2,2,3,0,1,,600.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,646.32157367391,2000.0,67523.826293181,1,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03198870855779882,45015.884195454004,10,5,10,10_1,10_4,10_0_0 -11200,0,83.0,0.0,1,400,400.0,900.0,0.0,0,78,0.0,41.40690019277831,552.8696910303722,1340.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,1,120705,2,2,1,0,1,,51.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1013.41692703977,400.0,15929.97805687879,0,5,0,1,120.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08411813219173701,15929.97805687879,3,2,3_0,3_1_0,3_0_0,3_1_0 -11201,2,54.0,0.0,2,111,154.0,150.0,0.0,0,67,0.0,0.0,212.8548310466933,304.0,0.0,272.04793512711734,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,100646,1,2,0,1,1,620.0,0.0,225.0,12,1.0,1.0,4.0,1.0,1.0,2,2,390.607007054434,154.0,19700.021673445073,0,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015431455103919056,19700.021673445073,5,3,5,5_0,5_2,5_0_1 -11202,1,78.0,170.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,577.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,113630,2,1,0,1,1,,0.0,282.0,11,0.0,4.0,3.0,1.0,1.0,1,1,932.040590853324,0.0,11706.02752293578,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04929084600813351,11706.02752293578,2,1,2_1,2_0_1,2_4_1,2_0_1 -11203,2,74.0,0.0,6,111,400.0,500.0,0.0,77,75,0.0,0.0,552.8696910303722,900.0,0.0,906.8264504237244,71,2,2,2,2,1,2,2,2,0,,8,,4,100085,2,2,0,1,1,700.0,0.0,358.0,41,0.0,5.0,4.0,2.0,1.5,3,2,335.1009372928,400.0,22544.04271658736,5,5,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03992185480281236,15029.36181105824,3,2,3_0,3_0_0,3_2_0,3_0_0 -11204,2,84.0,0.0,2,111,280.0,1370.0,0.0,0,77,0.0,0.0,387.00878372126056,1650.0,0.0,2484.704474161005,70,0,0,0,0,0,0,0,0,0,,1,,2,122631,2,1,3,0,2,,230.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,921.395384224285,280.0,21055.060186232666,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07836595979330852,21055.060186232666,5,3,5,5_1,5_4,5_0_1 -11205,2,72.0,0.0,2,400,2550.0,0.0,0.0,78,72,0.0,0.0,3524.544280318623,2550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,110819,2,2,1,0,1,,450.0,,41,0.0,0.0,7.0,2.0,1.5,1,1,888.441954968808,2550.0,48205.18608810705,5,5,0,1,108.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05289887265115492,32136.790725404702,8,4,8,8_1,8_0,8_0_1 -11206,2,45.0,0.0,7,111,1400.0,0.0,0.0,34,37,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,5,130436,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,536.983235959191,1400.0,161561.81739849228,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008665413787385787,64624.72695939691,10,5,10,10_1,10_4,10_0_0 -11207,2,58.0,0.0,5,111,2000.0,0.0,0.0,42,37,0.0,103.51725048194578,2764.3484551518613,4491.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117955,2,1,2,0,1,,700.0,,43,2.0,2.0,8.0,3.0,2.0,2,2,610.781246841932,2000.0,92137.52547436759,1,1,0,1,230.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048742355265981,46068.762737183795,10,5,10,10_1,10_4,10_0_0 -11208,2,37.0,0.0,2,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,627.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113016,2,1,3,0,1,,290.0,,43,2.0,0.0,3.0,4.0,2.1,3,3,814.618729170649,0.0,70200.84976879886,1,1,1,2,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00893151581590503,33428.97608038041,8,4,8,8_1,8_4,8_0_1 -11209,2,65.0,0.0,2,400,450.0,0.0,0.0,77,78,0.0,41.40690019277831,621.9784024091688,565.0,129.02452531426437,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,106858,1,3,4,0,2,,300.0,275.0,41,0.0,4.0,4.0,2.0,1.5,2,2,979.012895574268,450.0,18902.753934639386,5,5,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02988982462310081,12601.835956426257,2,1,2_0,2_1_0,2_0_0,2_0_1 -11211,1,24.0,389.0,5,111,300.0,150.0,0.0,0,52,0.0,0.0,414.65226827277917,450.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,2,,3,116280,2,1,0,1,1,380.0,0.0,375.0,22,3.0,0.0,3.0,5.0,3.0,1,1,578.333590858039,300.0,31265.760494233647,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014392741225117285,10421.92016474455,2,1,2_1,2_0_1,2_4_1,2_0_0 -11212,2,27.0,0.0,2,400,276.0,893.0,0.0,52,63,0.0,0.0,381.48008681095683,1169.0,0.0,1619.5920404567719,70,0,0,0,0,0,0,0,0,1,5.0,2,,2,128441,2,1,0,0,1,,290.0,350.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1141.51419252032,276.0,33901.70719597224,1,1,2,3,75.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03448203930387569,22601.13813064816,6,3,6,6_0,6_0,6_0_1 -11213,2,53.0,0.0,6,111,1550.0,0.0,0.0,46,47,0.0,310.55175144583734,2142.370052742692,2150.0,516.0981012570575,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,128628,2,1,2,0,1,,940.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,622.01033361973,1550.0,93151.58957404886,1,1,1,2,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023080658202734194,37260.63582961955,9,5,9,9_1,9_4,9_0_0 -11214,1,28.0,313.0,2,111,352.0,123.0,0.0,0,52,0.0,0.0,486.52532810672756,475.0,0.0,223.0793068042362,50,2,1,2,2,1,1,2,2,0,,2,,2,130478,2,1,0,1,1,912.0,0.0,290.0,32,1.0,0.0,3.0,2.0,1.3,2,2,376.164325748182,352.0,8084.645219323521,0,4,2,3,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.058753351212577444,6218.957861018092,1,1,1_1,1_0_1,1_2_1,1_0_1 -11215,0,65.0,0.0,1,400,0.0,0.0,0.0,0,78,0.0,227.73795106028072,0.0,366.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,115701,1,3,4,0,2,,164.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1117.36628362157,0.0,16591.721985126576,0,5,5,0,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.022059193152350054,16591.721985126576,4,2,4_0,4_1_0,4_0_0,4_1_0 -11216,2,48.0,0.0,2,111,550.0,0.0,0.0,0,47,0.0,0.0,760.1958251667618,550.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,118054,2,2,0,0,1,,0.0,340.0,12,1.0,1.0,2.0,1.0,1.0,1,1,497.89137491779,550.0,29389.150097196525,0,1,2,3,50.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018714389432189307,29389.150097196525,8,4,8,8_0,8_2,8_0_1 -11217,2,71.0,0.0,5,400,700.0,0.0,0.0,77,78,0.0,1552.7587572291866,967.5219593031513,2200.0,0.0,0.0,71,2,2,1,1,1,1,2,2,0,,1,,3,115212,1,2,2,0,2,,281.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,910.19516427056,700.0,17127.645792217496,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.1284473083276653,11418.430528144998,2,1,2_0,2_1_0,2_0_0,2_0_0 -11218,1,80.0,60.0,2,111,232.0,0.0,0.0,0,86,0.0,0.0,320.6644207976159,232.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,121495,2,1,0,1,1,881.0,0.0,210.0,11,0.0,4.0,3.0,1.0,1.0,1,1,450.177219601767,232.0,13713.613562751716,0,6,2,3,67.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0169174958108888,13713.613562751716,3,2,3_1,3_0_1,3_2_1,3_0_1 -11219,2,37.0,0.0,1,400,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1192.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,121144,2,1,2,0,1,,294.0,400.0,12,1.0,0.0,4.0,1.0,1.0,2,2,989.003945050717,0.0,18096.01711556013,0,1,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06587084839652593,18096.01711556013,4,2,4_0,4_1_0,4_0_0,4_1_0 -11220,2,86.0,0.0,2,111,1037.0,2000.0,0.0,78,72,0.0,0.0,1433.31467399624,3037.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,2,113742,1,3,2,0,1,,360.0,,41,0.0,7.0,8.0,2.0,1.5,1,1,309.043455401385,1037.0,39511.522515242475,5,5,0,1,180.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07686365411073207,26341.01501016165,7,4,7,7_1,7_2,7_0_1 -11221,2,42.0,0.0,2,400,919.0,1177.0,0.0,42,48,0.0,672.8621281326475,1270.21811514228,2746.0,0.0,2134.6694642974476,10,0,0,0,0,0,0,0,0,1,4.0,1,,2,103469,2,1,2,0,1,,583.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,869.669313528494,919.0,85175.77244815996,1,1,1,2,130.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03223921452160921,40559.89164198093,9,5,9,9_1,9_0,9_0_1 -11222,1,76.0,31.0,7,111,990.0,0.0,0.0,0,78,0.0,0.0,1368.3524853001713,990.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,132989,2,1,0,0,1,,0.0,523.0,11,0.0,0.0,2.0,1.0,1.0,3,2,476.166819843282,990.0,19718.798065847135,0,5,2,3,60.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05020589980657469,19718.798065847135,5,3,5,5_0,5_2,5_0_0 -11223,2,37.0,0.0,1,400,1200.0,0.0,0.0,45,33,0.0,1449.241506747241,1658.6090730911167,2840.0,412.878481005646,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,114217,2,1,1,0,1,,160.0,,43,2.0,0.0,9.0,4.0,2.1,1,1,1017.69703344065,1200.0,66545.5585979403,1,1,0,1,160.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042677528896540105,31688.361237114426,8,4,8,8_1,8_0,8_1_0 -11224,2,74.0,0.0,5,111,170.0,850.0,0.0,0,74,0.0,0.0,234.9696186879082,1020.0,0.0,1541.6049657203316,70,0,0,0,0,0,0,0,0,0,,2,,3,128273,2,2,0,0,1,,350.0,235.0,11,0.0,0.0,3.0,1.0,1.0,3,3,466.320365136122,170.0,14424.20630702526,0,5,2,3,48.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07071446277797708,14424.20630702526,3,2,3_0,3_0_0,3_2_0,3_0_0 -11225,2,88.0,0.0,2,400,1322.0,0.0,0.0,0,71,1194.8679016144006,0.0,1827.2343288553802,2122.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,112937,2,1,2,0,1,,100.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1046.32414967309,1322.0,19912.99797258793,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1065635622984107,19912.99797258793,5,3,5,5_1,5_0,5_0_1 -11226,2,57.0,0.0,2,111,110.0,0.0,0.0,77,52,0.0,0.0,152.03916503335236,110.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,118874,1,3,0,1,1,,0.0,386.0,42,1.0,2.0,1.0,2.0,1.5,3,2,465.378606354284,110.0,37901.57968007031,5,1,2,3,30.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002902253703632332,25267.71978671354,7,4,7,7_0,7_2,7_0_1 -11227,2,34.0,0.0,1,400,0.0,0.0,0.0,46,11,6721.131946581003,0.0,0.0,6339.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,1,113848,2,3,1,0,1,,287.0,,43,2.0,0.0,11.0,3.0,2.0,1,1,1159.20978791965,0.0,80154.4712238305,1,1,0,1,350.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07908479593481954,40077.23561191525,9,5,9,9_1,9_0,9_1_0 -11228,0,72.0,0.0,1,111,0.0,0.0,0.0,0,44,0.0,0.0,0.0,100.0,172.03270041901916,0.0,12,2,1,2,1,1,2,2,2,0,,8,,1,127700,1,2,0,1,2,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,485.985889305289,0.0,20314.02495307867,0,1,5,0,70.0,6,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.004922707352726994,20314.02495307867,5,3,5,5_0,5_2,5_1_0 -11229,2,46.0,0.0,1,400,0.0,0.0,0.0,11,43,6721.131946581003,0.0,0.0,5111.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,118516,2,1,4,0,1,,160.0,,43,3.0,0.0,8.0,5.0,3.0,2,2,1013.15825976348,0.0,193018.67270381836,1,1,0,1,240.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026479303418704383,64339.55756793945,10,5,10,10_1,10_0,10_1_0 -11230,2,43.0,0.0,1,111,450.0,0.0,0.0,0,45,0.0,0.0,621.9784024091688,480.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,115614,1,2,0,0,1,,85.0,412.0,12,1.0,0.0,2.0,1.0,1.0,3,3,492.232671221302,450.0,24821.741136673925,0,1,2,3,50.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019337885982978198,24821.741136673925,7,4,7,7_0,7_2,7_1_0 -11231,2,74.0,0.0,7,400,870.0,0.0,0.0,0,71,5109.5538642785805,0.0,1202.4915779910596,4351.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,101965,1,1,1,0,1,,159.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1125.42018266378,870.0,27216.280579173486,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1598675464614913,27216.280579173486,7,4,7,7_1,7_0,7_0_0 -11232,1,38.0,359.0,2,111,0.0,0.0,1010.0,0,52,0.0,0.0,516.0224681859004,1010.0,0.0,1154.6782323991579,71,2,2,2,1,2,2,2,2,0,,2,,2,103113,1,3,0,1,1,696.0,0.0,324.0,32,1.0,0.0,3.0,3.0,1.8,1,1,406.115718050208,0.0,11074.478248520367,0,4,2,3,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09120068479388124,6152.487915844648,1,1,1_1,1_0_1,1_2_1,1_0_1 -11233,2,36.0,0.0,2,300,800.0,0.0,0.0,0,45,0.0,724.6207533736205,1105.7393820607444,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,132231,1,1,1,0,1,,303.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1024.71349934535,800.0,29386.232995568596,0,1,0,1,60.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05104431045061808,29386.232995568596,8,4,8,8_1,8_0,8_0_1 -11234,2,79.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1103.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,114269,2,1,0,1,1,881.0,0.0,278.0,21,0.0,9.0,3.0,2.0,1.5,2,2,349.644914343021,0.0,10698.362954781742,0,7,2,3,64.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1030998859042264,7132.2419698544945,1,1,1_0,1_0_0,1_2_0,1_0_1 -11235,2,58.0,0.0,1,300,600.0,0.0,0.0,0,62,2240.377315527001,155.27587572291867,829.3045365455583,2285.0,60.21144514665671,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,101675,2,1,1,0,1,,190.0,,32,1.0,1.0,7.0,2.0,1.5,1,1,1039.87126686441,600.0,22695.277354407714,0,1,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1006817393908704,15130.184902938476,3,2,3_0,3_1_0,3_0_0,3_1_0 -11236,2,71.0,0.0,2,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,1930.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,129448,2,2,1,0,1,,334.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,287.238570766894,0.0,26919.13133691976,5,5,0,1,90.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07169622139154962,17946.087557946506,4,2,4_0,4_1_0,4_2_0,4_0_1 -11237,2,46.0,0.0,1,300,500.0,0.0,0.0,0,52,2539.0942909306013,0.0,691.0871137879653,2230.0,51.60981012570575,0.0,71,2,2,2,1,1,2,2,2,2,35.0,1,,1,121656,1,2,3,0,2,,90.0,453.0,32,2.0,2.0,5.0,2.0,1.5,3,3,1199.54271818624,500.0,20890.415788856673,0,1,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.1067475163031232,13926.943859237783,3,2,3_0,3_1_0,3_0_0,3_1_0 -11238,2,60.0,0.0,2,111,0.0,0.0,867.0,0,77,0.0,0.0,442.96186130413423,867.0,0.0,991.1940866238315,50,0,0,0,0,0,0,0,0,0,,2,,2,126012,2,2,0,0,1,,240.0,220.0,11,0.0,1.0,3.0,1.0,1.0,1,1,394.858113494259,0.0,21962.209278215014,0,5,2,3,55.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039476902756773374,21962.209278215014,6,3,6,6_0,6_2,6_0_1 -11239,1,55.0,240.0,1,300,0.0,0.0,0.0,0,90,0.0,0.0,0.0,2878.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132489,2,2,5,0,1,,370.0,400.0,12,1.0,1.0,4.0,1.0,1.0,3,3,1145.0847147562,0.0,7735.371701313894,0,4,2,3,90.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.3720571048332631,7735.371701313894,1,1,1_1,1_1_1,1_0_1,1_1_0 -11240,2,25.0,0.0,5,111,0.0,0.0,0.0,53,53,0.0,0.0,0.0,268.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,2.0,2,,3,111899,2,1,0,1,1,,0.0,398.0,43,2.0,0.0,3.0,2.0,1.5,2,2,356.527784975409,0.0,32797.66084453823,1,1,2,3,63.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00817131445045203,21865.107229692152,6,3,6,6_0,6_2,6_0_0 -11241,2,66.0,0.0,1,300,0.0,0.0,0.0,71,71,0.0,372.6621017350048,0.0,450.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,108764,2,1,3,0,2,,256.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1120.44963445489,0.0,21951.646428718635,5,5,0,1,150.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020499601315155998,14634.43095247909,3,2,3_0,3_1_0,3_0_0,3_1_0 -11242,2,72.0,0.0,1,300,500.0,0.0,0.0,77,77,2539.0942909306013,517.5862524097289,691.0871137879653,2700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108956,2,1,1,0,1,,148.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1071.70647504515,500.0,71948.96370071964,5,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03752660026113752,47965.97580047976,10,5,10,10_1,10_0,10_1_0 -11243,1,44.0,179.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,460.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,108028,2,3,0,1,1,720.0,0.0,314.0,42,1.0,6.0,4.0,4.0,2.1,2,2,352.637640824097,0.0,21509.301646208307,6,1,2,3,72.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02138609646962153,10242.524593432527,2,1,2_1,2_0_1,2_2_1,2_0_1 -11244,2,45.0,0.0,1,300,1500.0,0.0,0.0,0,65,0.0,1035.1725048194578,2073.261341363896,2650.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,106219,2,2,3,0,1,,380.0,,32,3.0,0.0,7.0,5.0,2.8,2,2,986.193072069079,1500.0,29039.464015302932,0,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09125512780137846,10371.237148322476,2,1,2_0,2_1_0,2_0_0,2_1_0 -11245,2,56.0,0.0,2,111,574.0,480.0,0.0,68,68,0.0,0.0,793.3680066285841,1054.0,0.0,870.5533924067755,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,122981,2,1,0,1,1,800.0,0.0,273.0,43,3.0,1.0,4.0,3.0,2.0,2,2,443.522636676157,574.0,41880.086569375075,1,1,2,3,87.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025167092199153675,20940.043284687537,5,3,5,5_0,5_2,5_0_1 -11246,2,59.0,0.0,1,300,500.0,0.0,0.0,74,34,0.0,931.655254337512,691.0871137879653,1520.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,1,109572,2,3,3,0,1,,150.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,1038.42914080716,500.0,84250.189560535,5,1,0,1,200.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018041502433746547,56166.793040356664,10,5,10,10_1,10_0,10_1_0 -11247,1,33.0,346.0,2,111,324.0,1112.0,0.0,85,67,0.0,0.0,447.8244497346015,1436.0,0.0,2016.7820257423632,70,2,2,2,2,1,2,1,2,0,,2,,2,122921,1,3,0,0,1,,420.0,299.0,42,1.0,0.0,4.0,5.0,2.4,2,2,388.698157051656,324.0,17174.91756969969,6,4,2,3,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08361029938993232,7156.215654041538,1,1,1_1,1_0_1,1_2_1,1_0_1 -11248,2,45.0,0.0,9,300,1893.0,0.0,0.0,42,46,0.0,621.1035028916747,2616.4558128012363,2553.0,103.2196202514115,0.0,33,2,2,2,2,1,2,1,2,2,10.0,1,2006.0,6,105265,1,3,3,0,2,,220.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,1024.18604801518,1893.0,58373.51887632004,1,1,1,2,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04373558505885546,22451.35341396925,6,3,6,6_1,6_0,6_0_0 -11249,2,27.0,0.0,2,111,0.0,0.0,300.0,43,53,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,70,0,0,0,0,0,0,0,0,2,50.0,2,,2,125981,2,1,0,1,1,1131.0,200.0,262.0,43,2.0,0.0,3.0,2.0,1.5,2,2,385.092924079008,0.0,33646.26570060039,1,1,2,3,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008916294089499708,22430.843800400256,6,3,6,6_0,6_2,6_0_1 -11250,1,46.0,287.0,2,111,145.0,530.0,0.0,0,52,0.0,0.0,200.41526299850995,675.0,0.0,961.236037449148,44,1,2,2,2,1,2,2,2,3,15.0,2,,2,101873,1,2,0,1,1,42.0,0.0,263.0,32,1.0,0.0,3.0,2.0,1.5,2,2,385.092924079008,145.0,15793.84021107643,0,1,2,3,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04273818089704451,10529.226807384286,2,1,2_1,2_0_1,2_2_1,2_0_1 -11251,1,22.0,300.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,463.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,132428,2,2,0,1,1,819.0,0.0,209.0,32,1.0,0.0,3.0,2.0,1.3,2,2,366.669464697279,0.0,13282.625831975916,0,4,2,3,66.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034857565503757355,10217.40448613532,2,1,2_1,2_0_1,2_2_1,2_0_1 -11252,2,56.0,0.0,2,111,0.0,0.0,600.0,65,78,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,70,2,2,2,1,2,2,2,2,0,,2,,2,117277,1,2,0,1,1,881.0,0.0,284.0,42,1.0,0.0,3.0,2.0,1.5,1,1,354.20012235617,0.0,23966.036325424924,4,7,2,3,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02503542896509241,15977.357550283283,3,2,3_0,3_0_0,3_2_0,3_0_1 -11253,2,89.0,0.0,1,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,715.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,118479,2,2,2,0,1,,231.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1123.85158256536,0.0,35209.93141306823,0,5,0,1,150.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020306770598667694,35209.93141306823,9,5,9,9_1,9_0,9_1_0 -11254,1,54.0,68.0,9,400,972.0,0.0,0.0,11,11,0.0,0.0,1343.4733492038044,972.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,116011,2,1,1,0,1,,148.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,945.921228364934,972.0,21601.310750155688,1,1,1,2,113.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04499726943620745,14400.873833437125,3,2,3_1,3_1_1,3_0_1,3_0_0 -11255,1,74.0,170.0,2,111,636.0,1400.0,0.0,77,78,0.0,0.0,879.0628087382918,2036.0,0.0,2539.1140611864284,10,0,0,0,0,0,0,0,0,0,,1,,2,100527,2,1,1,0,2,,400.0,,41,1.0,0.0,4.0,5.0,2.8,2,2,274.432246627283,636.0,20160.545881159505,6,5,1,2,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10098932895972271,7200.194957556967,1,1,1_1,1_1_1,1_2_1,1_0_1 -11256,2,92.0,0.0,1,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1760.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,104761,2,1,1,0,1,,129.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,980.915025941898,0.0,25222.29875506024,0,5,0,1,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06977952394790736,25222.29875506024,7,4,7,7_1,7_0,7_1_0 -11257,1,19.0,218.0,2,111,0.0,0.0,0.0,56,69,0.0,0.0,0.0,592.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,104228,2,1,0,0,1,,212.0,201.0,43,2.0,0.0,2.0,2.0,1.5,1,1,480.748594227008,0.0,12157.230078181052,1,1,2,3,42.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04869530281099806,8104.820052120701,1,1,1_1,1_0_1,1_2_1,1_0_1 -11258,2,53.0,0.0,2,111,500.0,0.0,0.0,37,38,0.0,0.0,691.0871137879653,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,2,,2,114566,1,1,0,1,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,367.417715500235,500.0,73660.75298042371,1,1,0,1,100.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0067878752221400915,49107.16865361581,10,5,10,10_0,10_2,10_0_1 -11259,1,47.0,310.0,1,400,300.0,0.0,0.0,0,63,0.0,0.0,414.65226827277917,390.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117727,1,1,1,0,1,,330.0,422.0,12,1.0,2.0,5.0,1.0,1.0,3,3,1192.94518072408,300.0,5351.0,0,4,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0728835731638946,5351.0,1,1,1_1,1_1_1,1_0_1,1_1_0 -11260,2,70.0,0.0,2,300,600.0,0.0,0.0,78,78,0.0,77.63793786145933,829.3045365455583,675.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106025,2,1,1,0,1,,93.0,421.0,41,0.0,7.0,4.0,2.0,1.5,2,2,1138.05769030445,600.0,30988.107306111477,5,5,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02178255010324159,20658.738204074318,5,3,5,5_1,5_0,5_0_1 -11261,2,78.0,0.0,2,300,300.0,0.0,0.0,72,72,0.0,633.5255729495082,414.65226827277917,1032.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,117960,2,1,2,0,2,,84.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,1128.74933793506,300.0,15628.04717388277,5,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06603512188807918,10418.698115921847,2,1,2_0,2_1_0,2_0_0,2_0_1 -11262,2,35.0,0.0,1,300,0.0,0.0,0.0,0,47,3733.962192545002,0.0,0.0,3849.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,124542,1,2,2,0,1,,250.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,1016.11700377925,0.0,21784.64130416515,0,1,0,1,100.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17668411181340332,21784.64130416515,6,3,6,6_1,6_0,6_1_0 -11263,2,66.0,0.0,1,300,1700.0,0.0,0.0,77,75,0.0,103.51725048194578,2349.696186879082,1863.0,108.38060126398207,0.0,71,1,2,2,2,2,2,2,1,0,,1,,1,114331,1,1,2,0,1,,140.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1144.06040202679,1700.0,15994.97659218753,5,5,0,1,96.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.11647406854661796,10663.31772812502,2,1,2_0,2_1_0,2_0_0,2_1_0 -11264,0,63.0,0.0,2,300,1500.0,0.0,0.0,77,78,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109894,2,3,3,0,1,,330.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1150.83825497047,1500.0,22020.61421599257,6,5,0,1,62.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06811799095552104,14680.40947732838,3,2,3_0,3_1_0,3_0_0,3_0_1 -11265,1,84.0,132.0,5,111,400.0,800.0,0.0,0,77,0.0,36.23103766868102,552.8696910303722,1235.0,0.0,1450.922320677959,10,2,2,2,1,1,2,2,2,0,,2,,3,115666,2,1,0,1,1,,0.0,304.0,11,0.0,1.0,3.0,1.0,1.0,3,1,377.410089077794,400.0,13217.654697136913,0,5,2,3,65.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.09343563803853298,13217.654697136913,2,1,2_1,2_0_1,2_2_1,2_0_0 -11266,2,48.0,0.0,1,300,1100.0,0.0,0.0,54,62,1493.5848770180007,828.1380038555662,1520.3916503335236,2900.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,15.0,1,,1,120437,2,2,4,0,1,,200.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,1137.77864973863,1100.0,45840.33066589567,1,1,1,2,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06326306895856544,22920.165332947836,6,3,6,6_1,6_0,6_1_0 -11268,2,39.0,0.0,2,111,0.0,0.0,1100.0,56,62,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,33,0,0,0,0,0,0,0,0,0,,1,,2,132545,2,1,3,0,1,,310.0,700.0,43,2.0,0.0,4.0,2.0,1.5,2,2,274.911548934773,0.0,22348.88892462372,1,4,2,3,90.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04921944906120295,14899.25928308248,3,2,3_0,3_1_0,3_2_0,3_0_1 -11269,2,73.0,0.0,2,300,456.0,0.0,0.0,78,90,2240.377315527001,155.27587572291867,630.2714477746243,2256.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125391,2,2,2,0,2,,112.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,838.676531108873,456.0,36924.37146243144,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061097857882167574,24616.247641620957,7,4,7,7_1,7_0,7_0_1 -11270,2,30.0,0.0,2,111,500.0,850.0,0.0,0,64,0.0,0.0,691.0871137879653,1350.0,0.0,1541.6049657203316,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,123419,2,2,0,1,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,2,2,331.052108796341,500.0,20363.527374641093,0,1,2,3,60.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06629499767712978,20363.527374641093,5,3,5,5_0,5_2,5_0_1 -11271,2,52.0,0.0,1,111,400.0,900.0,0.0,0,34,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,3,50.0,1,,1,123907,2,1,2,0,1,,356.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,1087.82000006605,400.0,38326.42339901929,0,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033919157717003795,19163.211699509644,5,3,5,5_1,5_4,5_1_0 -11272,1,59.0,85.0,2,111,600.0,450.0,0.0,0,63,0.0,0.0,829.3045365455583,1050.0,0.0,816.143805381352,60,0,0,0,0,0,0,0,0,0,,2,,2,130495,1,2,0,1,1,,0.0,456.0,12,1.0,1.0,2.0,1.0,1.0,2,2,373.295214684476,600.0,12240.20932411863,0,4,2,3,55.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0857828466978122,12240.20932411863,2,1,2_1,2_0_1,2_2_1,2_0_1 -11273,1,28.0,159.0,1,111,360.0,300.0,0.0,56,37,0.0,0.0,497.582721927335,660.0,0.0,544.0958702542347,31,0,0,0,0,0,0,0,0,2,45.0,2,,1,110910,2,1,0,1,1,600.0,0.0,460.0,43,2.0,0.0,5.0,5.0,2.4,2,2,701.873530825458,360.0,40404.711324192336,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.016334728757357184,16835.296385080142,4,2,4_1,4_0_1,4_4_1,4_1_0 -11274,2,48.0,0.0,1,111,200.0,500.0,0.0,0,52,0.0,414.0690019277831,276.4348455151861,1100.0,0.0,906.8264504237244,43,2,2,1,1,2,2,2,2,1,15.0,1,,1,112966,2,1,2,0,1,,240.0,150.0,32,1.0,0.0,5.0,2.0,1.5,2,2,2006.35475223375,200.0,8913.152648173724,0,1,2,3,120.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.12341312254148216,5942.101765449149,1,1,1_0,1_1_0,1_2_0,1_1_0 -11275,1,81.0,88.0,7,111,300.0,500.0,0.0,0,77,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,2,,5,114706,2,1,0,1,1,,180.0,313.0,11,0.0,2.0,1.0,1.0,1.0,1,1,905.756706915715,300.0,18270.88181688244,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04378551664982002,18270.88181688244,4,2,4_1,4_0_1,4_4_1,4_0_0 -11276,2,52.0,0.0,1,111,350.0,570.0,0.0,0,56,0.0,0.0,483.76097965157567,920.0,0.0,1033.782153483046,70,0,0,0,0,0,0,0,0,0,,1,,1,110793,2,2,4,0,1,,48.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2152.53248274782,350.0,16936.207083326382,0,1,1,2,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05432148978065672,16936.207083326382,4,2,4_0,4_1_0,4_2_0,4_1_0 -11277,2,70.0,0.0,2,111,173.0,191.0,0.0,0,77,0.0,0.0,239.116141370636,364.0,0.0,346.4077040618627,50,2,1,2,2,1,2,2,2,0,,2,,2,108416,2,2,0,1,1,578.0,332.0,359.0,11,0.0,5.0,3.0,1.0,1.0,1,1,443.749552106918,173.0,16824.980609251023,0,5,2,3,73.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021634497444820756,16824.980609251023,4,2,4_0,4_0_0,4_3_0,4_0_1 -11278,1,22.0,300.0,2,111,0.0,0.0,1056.0,52,64,0.0,0.0,539.5244815884265,1056.0,0.0,1207.2675380331789,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,122937,2,1,0,1,1,360.0,456.0,300.0,43,2.0,0.0,4.0,3.0,1.8,2,2,422.336275771634,0.0,12150.037134829181,4,2,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08691331460814061,6750.020630460656,1,1,1_1,1_0_1,1_3_1,1_0_1 -11279,2,65.0,0.0,2,111,900.0,1200.0,0.0,75,72,0.0,0.0,1243.9568048183376,2100.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,1,,2,120191,2,1,1,0,1,,700.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,867.067606289143,900.0,81812.83134301669,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025668345240312355,54541.88756201113,10,5,10,10_1,10_4,10_0_1 -11280,2,30.0,0.0,1,111,350.0,780.0,0.0,0,65,0.0,0.0,483.76097965157567,1130.0,0.0,1414.6492626610102,43,0,0,0,0,0,0,0,0,2,20.0,2,,1,126597,1,2,0,0,1,,0.0,375.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2600.37877125374,350.0,15355.574898152287,0,1,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07358890875104723,15355.574898152287,3,2,3_0,3_0_0,3_2_0,3_1_0 -11281,2,59.0,0.0,2,111,470.0,1110.0,0.0,68,63,0.0,0.0,649.6218869606873,1580.0,0.0,2013.1547199406682,70,0,0,0,0,0,0,0,0,0,,1,,2,129131,2,3,3,0,1,,600.0,609.0,43,2.0,2.0,5.0,2.0,1.5,1,1,238.930066326014,470.0,33629.20714583061,1,1,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046982969094348404,22419.471430553738,6,3,6,6_1,6_3,6_0_1 -11282,2,57.0,0.0,1,111,1500.0,400.0,0.0,37,38,0.0,0.0,2073.261341363896,1900.0,0.0,725.4611603389795,44,1,2,2,1,2,2,2,2,3,75.0,1,,1,132266,1,1,3,0,1,,1000.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,793.783971085933,1500.0,95340.92229468256,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.01992848353330822,63560.61486312171,10,5,10,10_1,10_4,10_1_0 -11283,1,68.0,150.0,2,111,780.0,0.0,0.0,86,78,0.0,0.0,1078.0958975092258,1556.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,131808,2,3,0,1,1,931.0,816.0,457.0,41,0.0,5.0,5.0,7.0,3.3999999999999995,2,2,357.984465600845,780.0,19562.63760056509,6,5,2,3,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.07953937663063662,5753.7169413426745,1,1,1_1,1_0_1,1_3_1,1_0_1 -11284,2,59.0,0.0,2,111,318.0,1162.0,0.0,0,52,0.0,124.22070057833493,439.5314043691459,1600.0,0.0,2107.4646707847355,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,109750,2,3,3,0,1,,96.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,1720.16431559649,318.0,24149.87354139836,0,1,0,1,150.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06625293491732936,24149.87354139836,6,3,6,6_1,6_2,6_0_1 -11285,1,53.0,96.0,2,111,244.0,323.0,0.0,0,68,0.0,0.0,337.25051152852706,567.0,0.0,585.809886973726,31,0,0,0,0,0,0,0,0,0,,2,,2,104127,2,3,0,1,1,380.0,128.0,243.0,12,1.0,1.0,2.0,1.0,1.0,2,2,398.984152823703,244.0,13488.296369820697,0,1,2,3,42.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.042036442887526594,13488.296369820697,3,2,3_1,3_0_1,3_3_1,3_0_1 -11286,0,65.0,0.0,7,111,1370.0,0.0,0.0,0,77,0.0,0.0,1893.578691779025,1370.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,130146,2,1,2,0,1,,185.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,803.02219219891,1370.0,64065.97160992806,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021384207022432735,64065.97160992806,10,5,10,10_1,10_4,10_0_0 -11287,2,86.0,0.0,2,111,198.0,196.0,0.0,0,77,0.0,0.0,273.6704970600342,394.0,0.0,355.4759685661,50,2,1,2,2,1,1,2,1,0,,2,,2,120805,1,3,0,1,1,561.0,147.0,292.0,11,0.0,1.0,3.0,1.0,1.0,1,1,399.092651452545,198.0,19883.235762791246,0,5,2,3,62.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019815688185789007,19883.235762791246,5,3,5,5_0,5_3,5_0_1 -11288,2,57.0,0.0,5,111,500.0,0.0,0.0,0,48,0.0,0.0,691.0871137879653,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,45.0,2,,3,116485,2,1,0,1,1,40.0,0.0,432.0,12,1.0,2.0,3.0,1.0,1.0,2,2,848.712129628758,500.0,30302.34745999468,0,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01650037181641134,30302.34745999468,8,4,8,8_0,8_4,8_0_0 -11289,2,65.0,0.0,5,111,501.0,1257.0,0.0,74,72,0.0,0.0,692.4692880155412,1758.0,0.0,2279.761696365243,71,0,0,0,0,0,0,0,0,0,,2,,3,128828,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,3,3,840.71193277778,501.0,34111.66545150052,5,5,0,1,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05153662176065544,22741.110301000346,6,3,6,6_0,6_4,6_0_0 -11290,2,29.0,0.0,1,111,800.0,500.0,0.0,0,67,0.0,1159.3932053977926,1105.7393820607444,2420.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,0,,1,,1,110309,2,2,3,0,1,,0.0,739.0,22,2.0,3.0,5.0,4.0,2.5,3,3,1861.55422737957,800.0,57955.70664486971,0,1,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04175602611195529,23182.282657947882,6,3,6,6_1,6_2,6_1_0 -11291,1,25.0,134.0,2,111,390.0,0.0,0.0,22,64,0.0,0.0,539.0479487546129,390.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,8.0,2,,2,101032,2,1,0,1,1,423.0,300.0,384.0,43,2.0,0.0,3.0,3.0,1.8,4,3,400.809816936459,390.0,35831.75923119893,1,1,2,3,66.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01088419905602694,19906.532906221626,5,3,5,5_0,5_3,5_0_1 -11292,2,65.0,0.0,7,111,850.0,1000.0,0.0,56,74,0.0,0.0,1174.848093439541,1850.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,2,,5,116058,2,2,0,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,660.20497139148,850.0,48929.275843222036,4,5,0,1,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03780967463993794,32619.51722881469,8,4,8,8_0,8_4,8_0_0 -11293,2,58.0,0.0,6,111,800.0,0.0,0.0,67,53,0.0,269.144851253059,1105.7393820607444,1285.0,387.0735759427931,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,129917,2,1,2,0,2,,400.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1688.1508924486,800.0,66653.29870530468,1,1,0,1,140.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019278865786994153,44435.53247020312,10,5,10,10_1,10_2,10_0_0 -11294,2,49.0,0.0,2,111,365.0,186.0,0.0,0,67,0.0,0.0,504.49359306521467,551.0,0.0,337.3394395576255,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,116654,2,2,0,1,1,596.0,0.0,342.0,12,1.0,2.0,4.0,1.0,1.0,1,1,414.434627996205,365.0,17239.138543260073,0,1,2,3,83.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03196215394506604,17239.138543260073,4,2,4_0,4_0_0,4_3_0,4_0_1 -11295,2,67.0,0.0,6,111,600.0,0.0,0.0,52,78,0.0,0.0,829.3045365455583,600.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,4,100097,1,2,0,1,2,,0.0,812.0,42,1.0,2.0,4.0,2.0,1.5,2,2,589.544608685053,600.0,19308.502172539156,1,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.031074393789764235,12872.33478169277,2,1,2_0,2_0_0,2_4_0,2_0_0 -11296,2,67.0,0.0,5,111,400.0,1200.0,0.0,0,78,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,12,0,0,0,0,0,0,0,0,0,,1,,3,126357,2,1,2,0,1,,75.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1681.96131339598,400.0,24075.76573574647,0,5,0,1,88.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0664568686022892,24075.76573574647,6,3,6,6_1,6_2,6_0_0 -11297,2,54.0,0.0,2,111,338.0,179.0,0.0,0,65,0.0,0.0,467.17488892066456,517.0,0.0,324.64386925169333,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,124551,2,1,0,1,1,517.0,95.0,262.0,12,1.0,1.0,2.0,1.0,1.0,1,1,388.472447560674,338.0,22125.176853088124,0,1,2,3,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02336704485721838,22125.176853088124,6,3,6,6_0,6_3,6_0_1 -11298,2,72.0,0.0,1,112,1500.0,570.0,0.0,0,72,0.0,0.0,2073.261341363896,2070.0,0.0,1033.782153483046,44,2,2,2,2,1,2,2,2,0,,1,,1,127815,1,3,3,0,2,,400.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,277.262666584919,1500.0,14464.3509013347,0,5,0,1,150.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.14311046614673809,14464.3509013347,3,2,3_0,3_1_0,3_0_0,3_1_0 -11299,2,64.0,0.0,1,111,990.0,1500.0,0.0,54,78,0.0,103.51725048194578,1368.3524853001713,2590.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,1,103542,2,1,2,0,1,,324.0,,42,2.0,2.0,6.0,3.0,2.0,2,2,1992.5438654023,990.0,63040.768976835156,1,5,0,1,125.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041084524221963674,31520.384488417578,8,4,8,8_1,8_2,8_1_0 -11300,1,88.0,132.0,2,111,219.0,0.0,0.0,0,77,0.0,0.0,302.6961558391288,219.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,116031,2,1,0,1,1,648.0,240.0,288.0,21,1.0,6.0,3.0,2.0,1.5,2,2,411.722013334667,219.0,20393.196274728823,0,5,2,3,71.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010738875703922098,13595.46418315255,3,2,3_1,3_0_1,3_3_1,3_0_1 -11301,2,48.0,0.0,2,112,1300.0,0.0,0.0,52,38,3435.2452171414016,0.0,1796.8264958487098,3720.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,119712,2,1,2,0,1,,1000.0,,43,3.0,4.0,7.0,4.0,2.3,4,3,347.187933154462,1300.0,69452.48484312507,1,1,1,2,160.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05356179852171601,30196.732540489164,8,4,8,8_1,8_0,8_0_1 -11302,2,66.0,0.0,2,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2788.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119603,2,1,2,0,1,,125.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,413.766919245689,0.0,10022.3599722059,0,5,0,1,80.0,10,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2781779947768496,10022.3599722059,2,1,2_0,2_1_0,2_0_0,2_0_1 -11303,2,76.0,0.0,1,111,540.0,1300.0,0.0,85,78,0.0,0.0,746.3740828910024,1840.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,1,,1,130177,2,1,2,0,1,,400.0,,41,0.0,5.0,3.0,2.0,1.5,1,1,1660.12315751709,540.0,17738.886770893918,6,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10372691498426406,11825.924513929278,2,1,2_0,2_1_0,2_2_0,2_1_0 -11304,2,58.0,0.0,2,111,324.0,168.0,0.0,0,74,0.0,0.0,447.8244497346015,492.0,0.0,304.6936873423714,71,2,1,2,1,1,2,2,2,0,,2,,2,133296,2,1,0,1,1,545.0,0.0,287.0,11,0.0,1.0,3.0,1.0,1.0,2,2,362.308089747963,324.0,18922.833375883056,0,7,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026000334634191127,18922.833375883056,5,3,5,5_0,5_3,5_0_1 -11305,1,45.0,86.0,1,111,650.0,1670.0,0.0,85,62,0.0,62.110350289167464,898.4132479243549,2380.0,0.0,3028.8003444152396,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,100932,2,1,1,0,1,,344.0,,42,1.0,1.0,7.0,5.0,2.5999999999999996,4,4,1565.03087119873,650.0,31062.0,6,1,1,2,96.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0766209516450969,11946.923076923078,2,1,2_1,2_1_1,2_2_1,2_1_0 -11306,2,35.0,0.0,2,111,300.0,90.0,0.0,0,55,0.0,0.0,414.65226827277917,390.0,0.0,163.2287610762704,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,101127,2,1,0,1,1,660.0,600.0,285.0,32,1.0,0.0,3.0,2.0,1.3,1,1,369.735742350203,300.0,18718.220296008574,0,1,2,3,63.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02083531413951585,14398.630996929673,3,2,3_0,3_0_0,3_3_0,3_0_1 -11307,2,55.0,0.0,1,111,1350.0,0.0,0.0,54,65,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,1,111691,2,1,0,0,1,,450.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,561.082081217285,1350.0,71547.09407016085,1,1,0,1,64.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01886869086082178,35773.547035080424,9,5,9,9_0,9_4,9_1_0 -11308,2,36.0,0.0,1,111,500.0,1000.0,0.0,43,68,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,5.0,2,,1,101073,2,1,0,0,1,,500.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2674.29014385111,500.0,50176.08798185684,1,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02989471798882337,27875.604434364912,7,4,7,7_0,7_2,7_1_0 -11309,2,59.0,0.0,6,111,0.0,0.0,1550.0,46,46,0.0,0.0,791.9156689981638,1550.0,0.0,1772.0309507115787,10,0,0,0,0,0,0,0,0,3,90.0,1,,4,118657,2,1,2,0,1,,300.0,,43,2.0,2.0,6.0,2.0,1.5,4,2,707.855558252361,0.0,60760.45906391347,1,1,0,1,126.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025510011344212633,40506.972709275644,9,5,9,9_1,9_4,9_0_0 -11310,2,52.0,0.0,1,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,2130.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,127676,1,2,1,0,1,,364.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,1888.24710232261,0.0,42883.31990313379,1,1,0,1,200.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04966966188278593,21441.659951566897,6,3,6,6_1,6_2,6_1_0 -11311,1,62.0,270.0,2,111,247.0,158.0,0.0,0,78,0.0,0.0,341.39703421125483,405.0,0.0,286.55715833389695,42,2,1,2,1,1,2,1,1,0,,2,,2,132834,2,2,0,1,1,573.0,0.0,336.0,31,0.0,0.0,3.0,2.0,1.5,5,5,358.255966297828,247.0,10367.990150230047,0,6,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.03906253711005057,6911.993433486698,1,1,1_1,1_0_1,1_3_1,1_0_1 -11312,1,29.0,235.0,7,111,700.0,0.0,0.0,42,53,0.0,0.0,967.5219593031513,835.0,0.0,0.0,31,2,2,2,1,1,2,2,2,0,,2,,5,131654,1,3,0,1,1,1236.0,0.0,565.0,43,2.0,0.0,3.0,4.0,2.1,1,1,516.310805069091,700.0,28348.53219685253,4,4,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.029454787789425937,13499.301046120252,3,2,3_1,3_0_1,3_4_1,3_0_0 -11313,2,58.0,0.0,8,111,400.0,600.0,0.0,77,78,0.0,310.55175144583734,552.8696910303722,1300.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,108081,2,1,2,0,1,,280.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1652.02999385891,400.0,15229.237902014418,6,7,1,2,88.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08536211781339663,10152.825268009612,2,1,2_0,2_1_0,2_2_0,2_0_0 -11314,1,49.0,319.0,5,111,480.0,420.0,0.0,0,56,0.0,0.0,663.4436292364467,900.0,0.0,761.7342183559285,50,2,2,2,1,1,1,2,2,0,,2,,3,122763,1,2,0,1,1,744.0,0.0,327.0,32,1.0,1.0,4.0,6.0,3.5,1,1,375.104013919689,480.0,23032.160577482853,0,4,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.03907579564549734,6580.617307852243,1,1,1_1,1_0_1,1_3_1,1_0_0 -11315,2,63.0,0.0,6,111,2400.0,0.0,0.0,0,75,0.0,0.0,3317.2181461822333,2475.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112650,2,1,2,0,1,,120.0,,21,1.0,0.0,6.0,2.0,1.5,3,3,1698.79170146449,2400.0,24153.91237451438,0,5,0,1,180.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10246787193827271,16102.608249676254,4,2,4_0,4_1_0,4_2_0,4_0_0 -11316,2,59.0,0.0,6,111,555.0,1426.0,0.0,45,33,0.0,103.51725048194578,767.1066963046414,2081.0,0.0,2586.269036608462,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,126826,2,1,2,0,1,,450.0,,43,2.0,3.0,7.0,2.0,1.5,1,1,1740.3860580067,555.0,104636.98657037117,1,1,0,1,197.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01988780514622783,69757.99104691412,10,5,10,10_1,10_2,10_0_0 -11317,1,39.0,250.0,5,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,399.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,119152,1,2,0,1,1,780.0,0.0,360.0,12,1.0,2.0,3.0,1.0,1.0,2,2,403.442628753116,0.0,8070.897326466821,0,4,2,3,70.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04943688215330938,8070.897326466821,1,1,1_1,1_0_1,1_3_1,1_0_0 -11318,2,65.0,0.0,6,111,1445.0,75.0,0.0,55,74,0.0,207.03450096389156,1997.2417588472197,1720.0,0.0,136.02396756355867,71,0,0,0,0,0,0,0,0,0,,1,,4,105970,2,1,2,0,1,,418.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1562.84319022065,1445.0,44376.723706407705,4,5,0,1,86.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03875905782002657,29584.48247093847,8,4,8,8_1,8_2,8_0_0 -11319,1,54.0,118.0,5,111,0.0,0.0,470.0,0,68,0.0,0.0,240.12926737363676,470.0,0.0,537.3255140867368,41,2,2,2,2,1,2,2,2,0,,2,,3,116508,1,2,0,1,1,573.0,0.0,333.0,32,2.0,4.0,3.0,2.0,1.5,2,2,360.633543854104,0.0,12119.983509432705,0,1,2,3,85.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03877893065070673,8079.98900628847,1,1,1_1,1_0_1,1_3_1,1_0_0 -11320,1,50.0,184.0,5,111,528.0,276.0,0.0,0,69,0.0,0.0,729.7879921600913,804.0,0.0,500.5682006338959,71,2,1,2,2,1,2,2,1,0,,2,,3,104864,2,1,0,1,1,913.0,0.0,366.0,22,2.0,3.0,4.0,3.0,2.0,1,1,392.232022743925,528.0,36165.91756258746,0,4,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.022230875204773275,18082.95878129373,4,2,4_1,4_0_1,4_3_1,4_0_0 -11321,1,34.0,331.0,5,111,288.0,0.0,0.0,63,85,0.0,0.0,398.066177541868,288.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,100591,2,1,0,1,1,463.0,0.0,297.0,42,1.0,0.0,4.0,4.0,2.1,2,2,313.86416975512,288.0,9412.046345947518,4,7,2,3,73.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030599084345138423,4481.92683140358,1,1,1_1,1_0_1,1_3_1,1_0_0 -11322,2,63.0,0.0,1,111,200.0,1600.0,0.0,0,75,0.0,0.0,276.4348455151861,1800.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,0,,1,,1,116463,2,2,1,0,1,,130.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1741.99033626562,200.0,24113.33121803988,0,5,0,1,70.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07464750447475993,24113.33121803988,6,3,6,6_1,6_2,6_1_0 -11323,2,37.0,0.0,2,111,363.0,0.0,0.0,52,63,0.0,0.0,501.7292446100628,427.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,130127,2,2,0,1,1,586.0,0.0,312.0,43,2.0,0.0,4.0,4.0,2.3,2,2,375.076724621882,363.0,47804.389838061354,1,1,2,3,79.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008932234078219048,20784.51732089624,5,3,5,5_0,5_3,5_0_1 -11324,2,51.0,0.0,2,111,517.0,1215.0,0.0,77,43,0.0,465.827627168756,714.5840756567561,2182.0,0.0,2203.5882745296503,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,131299,2,1,2,0,1,,400.0,,42,2.0,3.0,4.0,3.0,2.0,2,2,1728.87055811335,517.0,62044.07856983055,5,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03516854549695925,31022.039284915274,8,4,8,8_1,8_2,8_0_1 -11325,1,40.0,434.0,2,111,780.0,144.0,0.0,43,63,89.61509262108004,0.0,1078.0958975092258,984.0,0.0,261.1660177220326,43,2,1,2,1,1,2,2,2,0,,2,,2,131398,1,3,0,1,1,1010.0,0.0,383.0,43,3.0,0.0,5.0,6.0,2.8999999999999995,2,2,404.97421138487,780.0,20197.395653624993,4,4,2,3,110.0,8,7,2,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04871915255189811,6964.619190905171,1,1,1_1,1_0_1,1_3_1,1_0_1 -11326,2,80.0,0.0,2,111,0.0,0.0,1700.0,77,75,0.0,0.0,868.5526692237926,1700.0,0.0,1943.5178169094734,70,0,0,0,0,0,0,0,0,0,,1,,2,122217,2,3,1,0,1,,200.0,,41,0.0,3.0,4.0,2.0,1.5,4,3,1585.46297962814,0.0,49102.742785713446,5,5,0,1,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03462128393558127,32735.1618571423,8,4,8,8_1,8_2,8_0_1 -11327,2,57.0,0.0,2,111,280.0,0.0,0.0,0,46,0.0,0.0,387.00878372126056,280.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,106391,2,1,0,1,1,800.0,0.0,305.0,12,1.0,2.0,4.0,1.0,1.0,2,2,401.443784435119,280.0,26791.575071037514,0,1,2,3,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010451046616616739,26791.575071037514,7,4,7,7_0,7_3,7_0_1 -11329,1,41.0,267.0,2,111,536.0,83.0,0.0,0,56,0.0,0.0,740.8453859806988,619.0,0.0,150.53319077033825,60,0,0,0,0,0,0,0,0,3,15.0,2,,2,103438,2,3,0,1,1,789.0,0.0,295.0,32,1.0,0.0,4.0,3.0,1.6,1,1,390.958075567034,536.0,15756.905584084729,0,1,2,3,81.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03928436308111291,9848.065990052955,2,1,2_1,2_0_1,2_3_1,2_0_1 -11330,2,43.0,0.0,1,111,0.0,0.0,0.0,64,37,0.0,0.0,0.0,1227.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,126901,2,2,1,0,1,,356.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,1786.33713977214,0.0,50313.826063432105,1,4,1,2,80.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024386934884520317,25156.913031716053,7,4,7,7_1,7_2,7_1_0 -11331,2,57.0,0.0,1,111,350.0,0.0,0.0,0,56,2240.377315527001,0.0,483.76097965157567,1974.0,213.32054851958378,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,108802,2,2,2,0,1,,190.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1847.15730563878,350.0,27780.431841416554,0,1,0,1,90.0,7,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0710572107470646,27780.431841416554,7,4,7,7_1,7_2,7_1_0 -11332,1,25.0,243.0,5,111,500.0,0.0,0.0,63,54,0.0,0.0,691.0871137879653,620.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,3,100948,1,1,0,1,1,737.0,0.0,371.0,43,2.0,1.0,4.0,2.0,1.5,3,2,374.696022186602,500.0,23109.4763641861,4,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026828820793224236,15406.317576124065,3,2,3_1,3_0_1,3_3_1,3_0_0 -11333,2,56.0,0.0,1,111,420.0,0.0,0.0,33,47,4480.754631054002,0.0,580.5131755818909,3420.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,111753,2,3,3,0,1,,200.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1755.19984667785,420.0,40750.496059996556,1,1,0,1,110.0,7,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08392535872360345,27166.997373331036,7,4,7,7_1,7_2,7_1_0 -11335,2,55.0,0.0,1,111,2000.0,0.0,0.0,90,47,0.0,0.0,2764.3484551518613,2050.0,86.01635020950958,0.0,50,2,2,2,2,1,2,2,2,2,10.0,8,,1,116432,2,3,0,0,1,,412.0,375.0,43,2.0,0.0,5.0,3.0,1.8,2,2,2653.4643710304,2000.0,45887.811477045885,1,1,2,3,90.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04467417237855102,25493.228598358823,7,4,7,7_0,7_2,7_1_0 -11336,1,59.0,221.0,2,111,501.0,78.0,0.0,0,77,0.0,0.0,692.4692880155412,579.0,0.0,141.464926266101,31,2,1,2,2,2,2,2,1,0,,2,,2,128044,2,2,0,1,1,673.0,0.0,299.0,11,0.0,3.0,4.0,1.0,1.0,1,1,392.460625348819,501.0,9373.00183866891,0,7,2,3,76.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06177316616020483,9373.00183866891,1,1,1_1,1_0_1,1_3_1,1_0_1 -11337,2,60.0,0.0,2,111,522.6,0.0,0.0,54,21,2987.1697540360015,0.0,722.3242513311814,2693.0,292.4555907123326,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109270,2,2,2,0,1,,208.0,,43,2.0,3.0,5.0,2.0,1.5,3,3,1668.6807356452,522.6,57708.97106671719,1,1,0,1,120.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046665188275261914,38472.64737781146,9,5,9,9_1,9_2,9_0_1 -11338,2,58.0,0.0,2,111,768.0,1306.0,0.0,0,37,0.0,0.0,1061.5098067783147,2074.0,0.0,2368.6306885067684,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,116262,2,2,2,0,1,,380.0,,12,1.0,2.0,6.0,1.0,1.0,3,3,1893.55884124246,768.0,45613.40565307413,0,1,0,1,135.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04546908897297438,45613.40565307413,10,5,10,10_1,10_2,10_0_1 -11339,2,38.0,0.0,6,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,435.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,103110,2,2,0,1,1,808.0,0.0,400.0,32,1.0,0.0,3.0,3.0,1.6,1,1,372.557236095914,0.0,17475.796677995244,0,1,2,3,45.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024891569066360957,10922.372923747027,2,1,2_0,2_0_0,2_3_0,2_0_0 -11340,2,62.0,0.0,6,111,415.0,1315.0,0.0,78,77,0.0,0.0,573.6023044440112,1730.0,0.0,2384.9535646143954,71,0,0,0,0,0,0,0,0,0,,1,,4,108294,2,1,2,0,1,,360.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,1957.15718870533,415.0,84903.74275262143,5,5,0,1,144.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02037601575516629,42451.871376310715,9,5,9,9_1,9_2,9_0_0 -11341,2,89.0,0.0,2,111,337.0,1522.0,0.0,0,86,0.0,0.0,465.7927146930886,1859.0,0.0,2760.379715089817,50,0,0,0,0,0,0,0,0,0,,1,,2,125973,2,1,3,0,1,,176.0,,11,0.0,3.0,4.0,1.0,1.0,3,2,1921.7876741656,337.0,19385.034870242514,0,7,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09589871838991142,19385.034870242514,5,3,5,5_1,5_2,5_0_1 -11342,2,85.0,0.0,1,400,340.0,0.0,0.0,0,77,0.0,828.1380038555662,469.9392373758164,1210.0,120.42289029331342,0.0,44,2,2,2,1,2,2,2,2,0,,1,,1,112698,2,3,4,0,2,,97.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1583.548079916,340.0,10993.658441245621,0,5,0,1,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.11006345216805759,10993.658441245621,2,1,2_0,2_1_0,2_0_0,2_1_0 -11344,2,88.0,0.0,1,400,790.0,0.0,0.0,0,71,0.0,103.51725048194578,1091.917639784985,890.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,104078,2,1,2,0,1,,117.0,,11,0.0,3.0,7.0,1.0,1.0,2,2,1857.4442882605,790.0,17147.403243901696,0,5,0,1,134.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05190290257602239,17147.403243901696,4,2,4_0,4_1_0,4_0_0,4_1_0 -11345,2,40.0,0.0,2,111,470.0,1200.0,0.0,54,48,0.0,124.22070057833493,649.6218869606873,1790.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,129022,2,2,2,0,1,,260.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,268.114620803825,470.0,40484.33081926103,1,1,1,2,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044214637213377886,19278.252771076677,5,3,5,5_1,5_3,5_0_1 -11346,2,52.0,0.0,6,400,1000.0,0.0,0.0,56,13,1045.5094139126004,51.75862524097289,1382.1742275759307,1950.0,344.06540083803833,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,108197,2,1,2,0,1,,250.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,1747.62201497818,1000.0,104876.01520820336,1,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018593383779206284,52438.00760410168,10,5,10,10_1,10_0,10_0_0 -11348,2,56.0,0.0,1,400,1830.0,0.0,0.0,0,13,746.7924385090004,207.03450096389156,2529.378836463953,2605.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104512,2,2,4,0,2,,810.0,,22,3.0,0.0,8.0,4.0,2.5,3,2,1546.45230198253,1830.0,63446.42248205261,0,1,0,1,182.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04105826456545897,25378.56899282104,7,4,7,7_1,7_0,7_1_0 -11349,2,48.0,0.0,1,400,1200.0,0.0,0.0,69,69,2688.452778632401,0.0,1658.6090730911167,3000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110043,2,1,2,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,1693.52655798127,1200.0,49525.279570675506,1,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0605751249868024,21532.730248119788,6,3,6,6_1,6_0,6_1_0 -11350,1,32.0,358.0,2,111,360.0,456.0,0.0,56,67,0.0,0.0,497.582721927335,816.0,0.0,827.0257227864367,71,2,1,2,2,1,2,2,1,2,45.0,2,,2,120424,1,1,0,1,1,,480.0,337.0,43,2.0,0.0,4.0,3.0,1.8,1,1,408.66456017221,360.0,26570.363283386498,1,1,2,3,72.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030710908665302884,14761.31293521472,3,2,3_1,3_0_1,3_3_1,3_0_1 -11351,1,46.0,377.0,2,111,450.0,600.0,0.0,85,67,0.0,0.0,621.9784024091688,1050.0,0.0,1088.1917405084694,60,1,2,2,2,1,1,2,2,0,,2,,2,115528,1,1,0,1,1,,600.0,497.0,42,2.0,1.0,4.0,4.0,2.5,2,2,338.097358318028,450.0,11118.535996484059,6,4,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0944368935201572,4447.414398593623,1,1,1_1,1_0_1,1_3_1,1_0_1 -11352,2,60.0,0.0,1,400,0.0,0.0,0.0,13,48,3733.962192545002,103.51725048194578,0.0,3419.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110096,2,1,2,0,1,,1339.0,,43,2.0,3.0,7.0,3.0,2.0,2,2,1822.16292936428,0.0,60858.208460476555,1,1,0,1,110.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05617976747081568,30429.104230238278,8,4,8,8_1,8_0,8_1_0 -11353,2,28.0,0.0,1,400,1300.0,0.0,0.0,67,11,0.0,103.51725048194578,1796.8264958487098,1500.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114339,2,1,1,0,1,,150.0,300.0,43,2.0,0.0,4.0,2.0,1.5,3,2,1880.649541421,1300.0,39878.82044429721,4,1,2,3,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03761395104690225,26585.880296198142,7,4,7,7_1,7_0,7_1_0 -11354,1,89.0,270.0,2,111,1200.0,600.0,0.0,0,77,0.0,0.0,1658.6090730911167,1800.0,0.0,1088.1917405084694,50,2,1,2,1,1,2,1,2,0,,2,,2,114194,2,1,0,1,1,461.0,0.0,336.0,21,1.0,1.0,4.0,2.0,1.5,1,1,336.058695542213,1200.0,10382.124829385295,0,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.17337491405471517,6921.41655292353,1,1,1_1,1_0_1,1_3_1,1_0_1 -11355,2,32.0,0.0,1,400,500.0,0.0,0.0,0,11,0.0,207.03450096389156,691.0871137879653,820.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,113974,2,1,1,0,1,,300.0,,32,1.0,0.0,7.0,3.0,1.6,1,1,1863.64868014354,500.0,17471.815236553757,0,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0469327307379277,10919.884522846098,2,1,2_0,2_1_0,2_0_0,2_1_0 -11356,2,72.0,0.0,1,400,450.0,0.0,0.0,77,78,0.0,621.1035028916747,621.9784024091688,1170.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109107,2,1,2,0,1,,420.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1546.39110618232,450.0,22140.7897817606,5,5,0,1,92.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05284364340805207,14760.526521173733,3,2,3_0,3_1_0,3_0_0,3_1_0 -11357,2,63.0,0.0,5,111,212.0,75.0,0.0,0,75,0.0,0.0,293.0209362460973,287.0,0.0,136.02396756355867,71,2,1,2,1,1,2,2,2,0,,2,,3,119502,2,2,0,1,2,,0.0,550.0,11,0.0,0.0,2.0,1.0,1.0,2,2,451.426788883097,212.0,40616.327452201374,0,5,2,3,47.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007066123847306259,40616.327452201374,9,5,9,9_0,9_3,9_0_0 -11359,2,78.0,0.0,1,300,270.0,0.0,0.0,0,71,0.0,496.8828023133397,373.1870414455012,800.0,86.01635020950958,0.0,10,2,2,2,2,1,2,2,2,0,,1,,1,126982,2,2,3,0,1,,103.0,,11,0.0,2.0,5.0,1.0,1.0,3,2,1650.25103348793,270.0,18822.72817744041,0,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.04250180911387879,18822.72817744041,5,3,5,5_1,5_0,5_1_0 -11360,2,76.0,0.0,1,300,1870.0,0.0,0.0,86,71,1493.5848770180007,0.0,2584.66580556699,2940.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,132095,2,1,3,0,1,,187.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1724.83866137741,1870.0,22015.243100818356,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13354383535699924,14676.828733878903,3,2,3_0,3_1_0,3_0_0,3_1_0 -11361,2,33.0,0.0,1,300,650.0,0.0,0.0,42,48,3733.962192545002,414.0690019277831,898.4132479243549,3650.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,133254,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1723.06480937594,650.0,52437.267000611835,1,1,1,2,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06960698390244885,29131.815000339906,8,4,8,8_1,8_0,8_1_0 -11363,2,75.0,0.0,1,300,689.0,0.0,0.0,71,71,2091.018827825201,0.0,952.3180427998161,2229.0,240.84578058662683,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,119023,2,1,2,0,1,,209.0,,41,0.0,4.0,4.0,2.0,1.5,3,2,1689.77249539166,689.0,28693.456523002813,5,5,0,1,114.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07768321666694522,19128.97101533521,5,3,5,5_1,5_0,5_1_0 -11364,2,67.0,0.0,1,300,870.0,0.0,0.0,77,78,0.0,621.1035028916747,1202.4915779910596,1470.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123172,2,1,1,0,1,,139.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1609.46034253839,870.0,27633.916984187483,5,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05319549888063841,18422.611322791654,4,2,4_0,4_1_0,4_0_0,4_1_0 -11365,2,82.0,0.0,1,300,798.0,0.0,0.0,0,71,0.0,600.4000527952855,1102.9750336055927,1448.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107462,2,2,4,0,1,,271.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1636.416119642,798.0,18161.665841077884,0,5,0,1,74.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07972836922948595,18161.665841077884,4,2,4_0,4_1_0,4_0_0,4_1_0 -11366,1,57.0,52.0,2,211,321.0,0.0,0.0,0,56,0.0,0.0,443.6779270518737,321.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,2,121916,1,2,0,1,2,591.0,150.0,185.0,12,1.0,1.0,1.0,1.0,1.0,3,3,488.348569761295,321.0,23350.54874393542,0,4,2,3,40.0,4,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01374700027481666,23350.54874393542,6,3,6,6_0,6_1,6_0_1 -11367,2,85.0,0.0,1,300,625.0,0.0,0.0,0,71,2539.0942909306013,0.0,863.8588922349566,2325.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,111428,2,2,4,0,2,,314.0,,11,0.0,0.0,5.0,1.0,1.0,3,3,1813.84462486931,625.0,10971.150502906852,0,5,0,1,112.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.21191943355293336,10971.150502906852,2,1,2_0,2_1_0,2_0_0,2_1_0 -11368,1,67.0,227.0,2,300,650.0,0.0,0.0,0,77,0.0,393.36555183139393,898.4132479243549,1102.0,123.8635443016938,0.0,71,2,2,2,2,1,1,2,2,0,,1,,2,106740,1,3,4,0,2,,155.0,230.0,21,1.0,4.0,4.0,2.0,1.5,2,2,1803.90784707333,650.0,15061.683328697101,0,5,2,3,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,1,0,0,1,0.07316579269067182,10041.122219131401,2,1,2_1,2_1_1,2_0_1,2_0_1 -11369,2,52.0,0.0,7,300,373.0,0.0,0.0,56,11,1288.9637488665346,51.75862524097289,515.5509868858221,1406.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,132467,2,1,1,0,1,,253.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1526.42467377475,373.0,85446.05477298227,1,1,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01645482642511158,47470.03042943459,10,5,10,10_1,10_0,10_0_0 -11370,2,72.0,0.0,2,211,215.0,204.0,0.0,77,78,0.0,0.0,297.16745892882506,419.0,0.0,369.9851917728796,71,0,0,0,0,0,0,0,0,0,,8,,2,111456,2,2,0,1,1,1122.0,113.0,258.0,41,0.0,2.0,4.0,2.0,1.5,3,3,346.140477593262,215.0,18854.36759158926,6,5,2,3,79.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022222967594357903,12569.57839439284,2,1,2_0,2_0_0,2_1_0,2_0_1 -11371,2,74.0,0.0,2,300,1750.0,0.0,0.0,0,74,0.0,155.27587572291867,2418.8048982578784,1970.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113482,2,1,2,0,1,,180.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1566.06620980485,1750.0,39548.30712854835,0,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049812498765034,39548.30712854835,9,5,9,9_1,9_0,9_0_1 -11372,1,63.0,244.0,2,111,350.0,0.0,0.0,0,77,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104199,2,1,0,1,1,650.0,300.0,237.0,11,0.0,4.0,2.0,1.0,1.0,4,4,359.925975606271,350.0,9386.028525189551,0,5,2,3,50.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037289466898667,9386.028525189551,1,1,1_1,1_0_1,1_2_1,1_0_1 -11373,2,47.0,0.0,1,300,720.0,0.0,0.0,56,47,1642.9433647198007,207.03450096389156,995.16544385467,2120.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,128017,2,1,1,0,1,,252.0,,43,3.0,1.0,6.0,4.0,2.5,1,1,1590.89849412421,720.0,74885.25221673252,1,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028309980099476818,29954.10088669301,8,4,8,8_1,8_0,8_1_0 -11374,2,79.0,0.0,2,111,360.0,0.0,0.0,0,78,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,107134,2,1,0,1,1,840.0,300.0,311.0,11,0.0,10.0,4.0,1.0,1.0,2,1,317.743508624165,360.0,11229.696309844023,0,5,2,3,70.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03205785713763441,11229.696309844023,2,1,2_0,2_0_0,2_2_0,2_0_1 -11375,2,66.0,0.0,1,300,650.0,0.0,0.0,0,78,0.0,786.7311036627879,898.4132479243549,1485.0,129.02452531426437,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,132373,1,3,4,0,2,,113.0,,21,0.0,6.0,7.0,2.0,1.3,2,2,1342.16084289558,650.0,13849.25823627988,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0.10722595930154981,10653.275566369139,2,1,2_0,2_1_0,2_0_0,2_1_0 -11376,2,55.0,0.0,1,300,800.0,0.0,0.0,72,43,5227.547069563002,0.0,1105.7393820607444,4410.0,189.2359704609211,0.0,30,0,0,0,0,0,0,0,0,2,25.0,1,,1,133432,2,2,2,0,1,,320.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1748.47751789844,800.0,46047.81164734551,7,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09577002342204075,30698.54109823034,8,4,8,8_1,8_0,8_1_0 -11377,1,51.0,193.0,2,111,250.0,200.0,0.0,0,68,0.0,0.0,345.54355689398267,450.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,0,,8,,2,106918,1,3,0,1,1,40.0,120.0,180.0,12,1.0,2.0,2.0,1.0,1.0,4,3,326.46074688963,250.0,6060.0,0,4,2,3,42.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07425742574257425,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -11378,2,88.0,0.0,1,300,947.0,0.0,0.0,0,71,7841.320604344503,0.0,1308.9189935144063,6267.0,120.42289029331342,0.0,50,1,2,2,1,2,2,2,2,0,,1,,1,132120,2,1,2,0,1,,87.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1910.93106281824,947.0,34784.441586364184,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.18016675600325638,34784.441586364184,9,5,9,9_1,9_0,9_1_0 -11379,0,58.0,0.0,1,112,927.0,0.0,0.0,52,52,0.0,155.27587572291867,1281.2755089628877,1197.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,130486,2,2,3,0,1,,377.0,,43,3.0,3.0,6.0,3.0,2.0,5,4,1930.38517698235,927.0,64528.39128848311,1,1,0,1,180.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018549974299663628,32264.195644241554,8,4,8,8_1,8_0,8_1_0 -11380,2,89.0,0.0,1,112,2200.0,0.0,0.0,0,71,0.0,0.0,3040.783300667047,2270.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,129117,2,2,3,0,1,,195.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1809.55358679938,2200.0,13353.213549313949,0,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16999653241647036,13353.213549313949,3,2,3_0,3_1_0,3_0_0,3_1_0 -11381,1,58.0,83.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,2,1,2,2,2,2,2,1,0,,2,,2,125700,2,2,0,1,1,1100.0,180.0,325.0,11,0.0,0.0,4.0,1.0,1.0,5,3,339.642033947603,300.0,11692.779816513761,0,7,2,3,80.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025656858737415782,11692.779816513761,2,1,2_1,2_0_1,2_2_1,2_0_1 -11382,1,63.0,305.0,2,111,600.0,0.0,0.0,85,78,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,122435,1,1,0,1,1,1100.0,600.0,443.0,41,0.0,5.0,4.0,2.0,1.5,1,1,301.345298387996,600.0,7959.10075367433,6,5,2,3,75.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07538540075937714,5306.06716911622,1,1,1_1,1_0_1,1_2_1,1_0_1 -11383,2,40.0,0.0,1,112,1500.0,0.0,0.0,42,34,2240.377315527001,207.03450096389156,2073.261341363896,3200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,18.0,1,,1,105404,2,1,1,0,1,,252.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1738.94467738681,1500.0,60865.91555034819,1,1,1,2,160.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05257458088103456,33814.39752797122,9,5,9,9_1,9_0,9_1_0 -11384,2,88.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,601.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,111171,2,1,0,1,1,,100.0,,11,0.0,3.0,1.0,1.0,1.0,1,1,451.592898171345,0.0,15210.81321975771,0,5,2,3,40.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03951136545542127,15210.81321975771,3,2,3_0,3_0_0,3_2_0,3_0_0 -11385,2,55.0,0.0,2,112,900.0,0.0,0.0,11,11,1314.3546917758406,496.8828023133397,1243.9568048183376,2365.0,180.63433543997013,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,129313,2,1,2,0,1,,150.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1567.2369652196,900.0,58515.22038043721,1,1,0,1,100.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040416834878582567,39010.146920291474,9,5,9,9_1,9_0,9_0_1 -11386,1,51.0,201.0,2,111,320.0,0.0,0.0,85,67,0.0,0.0,442.2957528242978,320.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,30.0,2,,2,108025,2,2,0,1,1,876.0,380.0,278.0,42,3.0,2.0,5.0,4.0,2.5,2,2,290.947303155297,320.0,19557.23384270082,6,1,2,3,73.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016362232132302843,7822.893537080328,1,1,1_1,1_0_1,1_2_1,1_0_1 -11387,2,65.0,0.0,1,112,1300.0,0.0,0.0,77,74,0.0,103.51725048194578,1796.8264958487098,1400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,133115,2,1,2,0,1,,157.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1619.17698452536,1300.0,44905.22944339385,7,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031176769773881167,29936.819628929235,8,4,8,8_1,8_0,8_1_0 -11388,2,34.0,0.0,9,112,1480.0,0.0,0.0,46,48,0.0,724.6207533736205,2045.6178568123773,2180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,118439,2,1,1,0,1,,337.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,1497.13305318589,1480.0,30102.967558952412,1,1,1,2,130.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07241810946813725,14334.746456644005,3,2,3_0,3_1_0,3_0_0,3_0_0 -11389,2,62.0,0.0,1,112,1450.0,0.0,0.0,46,43,3853.4489827064417,0.0,2004.1526299850993,4130.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,126941,2,2,1,0,1,,225.0,,43,2.0,2.0,8.0,4.0,2.5,2,2,1590.89849412421,1450.0,108240.75603105692,1,1,0,1,250.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0381556832328019,43296.30241242277,9,5,9,9_1,9_0,9_1_0 -11390,2,48.0,0.0,2,111,600.0,170.0,0.0,85,52,0.0,0.0,829.3045365455583,770.0,0.0,308.32099314406634,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,115696,2,1,0,1,1,914.0,0.0,290.0,42,1.0,0.0,3.0,3.0,2.0,1,1,320.396749336773,600.0,22869.19766314488,6,1,2,3,55.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033669742653057846,11434.59883157244,2,1,2_0,2_0_0,2_2_0,2_0_1 -11391,2,62.0,0.0,1,112,1800.0,0.0,0.0,78,75,0.0,0.0,2487.913609636675,1960.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113043,2,1,2,0,1,,240.0,,41,0.0,1.0,4.0,2.0,1.5,4,3,1489.57492427919,1800.0,40752.48932344695,5,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04809522148312824,27168.3262156313,7,4,7,7_1,7_0,7_1_0 -11392,1,43.0,190.0,2,111,240.0,300.0,0.0,0,67,0.0,0.0,331.72181461822333,540.0,0.0,544.0958702542347,50,2,2,2,1,2,2,2,2,0,,2,,2,129391,2,3,0,1,1,,120.0,255.0,12,1.0,0.0,2.0,1.0,1.0,3,2,382.70056962537,240.0,6060.0,0,4,2,3,35.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.0891089108910891,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -11393,2,83.0,0.0,6,112,1900.0,0.0,0.0,77,31,0.0,1242.2070057833494,2626.131032394268,3200.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,112430,2,1,1,0,1,,160.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1588.81495332329,1900.0,24435.511847202346,5,1,0,1,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1309569457767005,16290.34123146823,4,2,4_0,4_1_0,4_0_0,4_0_0 -11395,1,50.0,377.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,805.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,120920,1,1,0,0,2,,0.0,355.0,32,1.0,1.0,2.0,2.0,1.5,2,2,2597.4106091734,0.0,23239.242389556017,0,1,2,3,45.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034639683450342434,15492.82825970401,3,2,3_1,3_0_1,3_2_1,3_0_1 -11396,1,25.0,250.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,329.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,117693,2,3,0,0,1,,424.0,349.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3135.03682062591,0.0,14211.764620132988,0,1,2,3,30.0,7,6,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023149834576764988,14211.764620132988,3,2,3_1,3_0_1,3_2_1,3_1_0 -11397,2,50.0,0.0,1,111,550.0,3164.0,0.0,31,31,0.0,0.0,760.1958251667618,3714.0,0.0,5738.397778281328,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,115958,2,1,1,0,1,,260.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1696.5954682079,550.0,305713.0491676189,1,1,1,2,210.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012148647269432248,145577.6424607709,10,5,10,10_1,10_2,10_1_0 -11398,1,64.0,203.0,2,111,700.0,0.0,0.0,0,72,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108492,2,2,1,0,1,,0.0,357.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1924.19660506766,700.0,7578.518211431794,0,6,2,3,55.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10028345631651055,7578.518211431794,1,1,1_1,1_1_1,1_2_1,1_0_1 -11399,2,49.0,0.0,1,111,568.0,1060.0,0.0,52,37,0.0,0.0,785.0749612631286,1628.0,0.0,1922.472074898296,50,0,0,0,0,0,0,0,0,1,15.0,1,,1,129900,2,1,1,0,1,,360.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,1990.7605927621,568.0,76645.16167115298,1,1,0,1,80.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02124074063520088,38322.58083557649,9,5,9,9_1,9_2,9_1_0 -11400,2,52.0,0.0,6,111,430.0,1128.0,0.0,0,52,0.0,0.0,594.3349178576501,1558.0,0.0,2045.8004721559223,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,107542,2,1,2,0,1,,140.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1728.06359761906,430.0,43978.52998384329,0,1,0,1,74.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0354263773839729,43978.52998384329,10,5,10,10_1,10_2,10_0_0 -11401,1,40.0,284.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1470.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,2.0,1,,2,119770,2,1,1,0,1,,387.0,520.0,32,1.0,0.0,6.0,5.0,2.4,2,2,1817.34713969234,0.0,31161.440757848908,0,1,2,3,110.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04717368530624625,12983.933649103712,2,1,2_1,2_1_1,2_2_1,2_0_1 -11402,2,62.0,0.0,2,111,203.0,1517.0,0.0,46,37,0.0,0.0,280.5813681979139,1720.0,0.0,2751.31145058558,42,0,0,0,0,0,0,0,0,2,15.0,8,,2,129488,2,2,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2167.07913819158,203.0,57397.37608705493,1,1,0,1,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029966526647337784,38264.917391369956,9,5,9,9_0,9_2,9_0_1 -11403,2,23.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,854.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,119197,2,2,0,0,1,,0.0,222.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2617.25751262741,0.0,7395.62800207153,0,1,2,3,40.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11547362844112669,7395.62800207153,1,1,1_0,1_0_0,1_2_0,1_0_1 -11404,2,81.0,0.0,2,111,504.0,1877.0,0.0,77,72,0.0,0.0,696.615810698269,2381.0,0.0,3404.226494890662,71,0,0,0,0,0,0,0,0,0,,1,,2,118608,2,2,3,0,1,,232.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1693.4970241515,504.0,36684.45439660101,5,5,0,1,110.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06490487698845566,24456.30293106734,7,4,7,7_1,7_2,7_0_1 -11405,2,72.0,0.0,1,111,360.0,930.0,0.0,0,74,0.0,0.0,497.582721927335,1290.0,0.0,1686.6971977881274,60,0,0,0,0,0,0,0,0,0,,1,,1,109697,2,1,2,0,1,,90.0,,21,0.0,0.0,6.0,2.0,1.5,1,1,1664.35561484833,360.0,67061.73155473243,0,5,0,1,85.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019236007930203334,44707.82103648828,10,5,10,10_1,10_2,10_1_0 -11406,2,83.0,0.0,2,111,240.0,1500.0,0.0,0,75,0.0,0.0,331.72181461822333,1740.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,2,126598,2,2,2,0,1,,70.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1995.33487447114,240.0,23319.398140284717,0,5,0,1,120.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07461599092448772,23319.398140284717,6,3,6,6_1,6_2,6_0_1 -11407,2,41.0,0.0,8,111,800.0,1300.0,0.0,34,47,0.0,0.0,1105.7393820607444,2100.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,1,25.0,1,2000.0,6,100969,2,1,1,0,1,,270.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1538.90408565136,800.0,72260.97251061808,1,1,1,2,120.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02906133043935195,31417.814135051343,8,4,8,8_1,8_2,8_0_0 -11408,2,59.0,0.0,6,111,800.0,0.0,0.0,62,77,0.0,445.1241770723668,1105.7393820607444,1270.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,117906,2,1,2,0,1,,340.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1721.50168505714,800.0,40128.710709027924,1,5,0,1,93.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03164816356071671,26752.473806018617,7,4,7,7_1,7_2,7_0_0 -11409,2,36.0,0.0,2,111,312.0,1100.0,0.0,0,38,0.0,0.0,431.23835900369033,1412.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,125842,2,1,0,0,1,,0.0,361.0,12,1.0,0.0,2.0,1.0,1.0,4,4,2224.89927807273,312.0,33591.031266330334,0,1,2,3,48.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0420350297912796,33591.031266330334,9,5,9,9_0,9_2,9_0_1 -11410,1,32.0,250.0,6,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,707.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,112377,2,1,0,0,1,,0.0,564.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1984.51703023357,0.0,22624.937133726795,6,4,2,3,80.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.031248705612802845,10773.779587488949,2,1,2_1,2_0_1,2_2_1,2_0_0 -11411,1,25.0,435.0,2,111,350.0,900.0,0.0,0,85,0.0,0.0,483.76097965157567,1250.0,0.0,1632.287610762704,50,2,2,2,1,1,2,2,2,0,,2,,2,107704,1,3,0,0,1,,0.0,458.0,31,0.0,0.0,3.0,3.0,1.6,2,2,2931.53864928819,350.0,11101.788373323037,0,6,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.11259447198648449,6938.617733326898,1,1,1_1,1_0_1,1_2_1,1_0_1 -11412,2,38.0,0.0,9,111,660.0,979.0,0.0,31,38,0.0,0.0,912.2349902001142,1639.0,0.0,1775.5661899296524,71,0,0,0,0,0,0,0,0,1,7.0,1,2006.0,6,102575,2,1,1,0,1,,580.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1794.26332646562,660.0,53457.69783307938,1,1,1,2,170.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03065975652594965,25456.046587180655,7,4,7,7_1,7_2,7_0_0 -11413,2,77.0,0.0,5,111,212.0,980.0,0.0,0,77,0.0,0.0,293.0209362460973,1192.0,0.0,1777.3798428305,71,0,0,0,0,0,0,0,0,0,,2,,3,119341,1,1,0,0,1,,180.0,296.0,11,0.0,0.0,1.0,1.0,1.0,2,1,2564.7065524482,212.0,17212.477647574404,0,5,2,3,32.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06925208702699333,17212.477647574404,4,2,4_0,4_0_0,4_2_0,4_0_0 -11414,2,31.0,0.0,1,111,483.0,860.0,0.0,37,37,0.0,0.0,667.5901519191744,1343.0,0.0,1559.741494728806,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,100434,2,1,1,0,1,,315.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2317.35702310604,483.0,67766.73916657665,1,1,1,2,115.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01981798174911127,37648.18842587592,9,5,9,9_1,9_2,9_1_0 -11415,2,50.0,0.0,7,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,1327.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,5,118930,2,1,0,0,1,,315.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2758.40080985455,0.0,24200.680683547565,4,1,2,3,85.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05483316842828058,13444.822601970869,3,2,3_0,3_0_0,3_2_0,3_0_0 -11416,2,35.0,0.0,1,111,313.0,1200.0,0.0,43,31,0.0,0.0,432.6205332312663,1513.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,2,6.0,1,,1,121825,2,1,1,0,1,,852.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,1515.19552191947,313.0,54679.27280851914,1,1,1,2,100.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027670448458566033,26037.748956437685,7,4,7,7_1,7_2,7_1_0 -11417,2,56.0,0.0,1,111,790.0,1160.0,0.0,21,54,0.0,0.0,1091.917639784985,1950.0,0.0,2103.8373649830405,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,105590,2,2,2,0,1,,98.0,,43,4.0,1.0,4.0,4.0,2.5,1,1,1744.20745658639,790.0,96397.79484875445,1,1,0,1,110.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020228678498916887,38559.11793950178,9,5,9,9_1,9_2,9_1_0 -11418,2,35.0,0.0,2,111,332.0,1084.0,0.0,0,46,0.0,0.0,458.88184355520895,1416.0,0.0,1965.9997445186345,71,2,2,2,2,1,2,2,2,2,10.0,2,,2,106825,1,3,0,0,1,,0.0,350.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2598.0773585244,332.0,15339.110280132385,0,1,2,3,65.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.09231304646359052,15339.110280132385,3,2,3_0,3_0_0,3_2_0,3_0_1 -11419,0,40.0,0.0,1,111,700.0,0.0,0.0,0,52,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,109571,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2622.37057299303,700.0,11283.0,0,4,5,0,51.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06204023752548081,11283.0,2,1,2_0,2_0_0,2_2_0,2_1_0 -11420,2,42.0,0.0,1,111,690.0,2300.0,0.0,33,31,0.0,0.0,953.7002170273921,2990.0,0.0,4171.401671949133,70,0,0,0,0,0,0,0,0,1,12.0,1,,1,129590,2,3,3,0,2,,238.0,,43,2.0,0.0,9.0,4.0,2.1,3,2,1590.70499404833,690.0,105781.40105560335,1,1,1,2,120.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028265838513788683,50372.0957407635,10,5,10,10_1,10_2,10_1_0 -11421,2,74.0,0.0,2,111,450.0,650.0,0.0,0,78,0.0,0.0,621.9784024091688,1100.0,0.0,1178.8743855508417,42,2,2,2,1,2,2,2,2,0,,8,,2,118148,2,2,0,0,1,,0.0,310.0,11,0.0,1.0,3.0,1.0,1.0,2,2,2199.45132922826,450.0,17844.77713296283,0,5,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06164268636160676,17844.77713296283,4,2,4_0,4_0_0,4_2_0,4_0_1 -11422,2,66.0,0.0,6,111,325.0,776.0,0.0,78,78,0.0,0.0,449.20662396217745,1101.0,0.0,1407.3946510576204,70,0,0,0,0,0,0,0,0,0,,1,,4,103092,2,1,1,0,1,,267.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1586.90705074828,325.0,32866.10731452823,5,5,0,1,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03349955592438873,21910.738209685485,6,3,6,6_1,6_2,6_0_0 -11423,2,55.0,0.0,2,111,250.0,560.0,0.0,0,52,0.0,0.0,345.54355689398267,810.0,0.0,1015.6456244745714,71,2,2,2,2,1,2,2,2,3,15.0,2,,2,126861,2,1,0,1,1,699.0,0.0,353.0,12,1.0,1.0,3.0,1.0,1.0,2,2,2249.17413821187,250.0,18208.659787179942,0,1,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0444843283068143,18208.659787179942,4,2,4_0,4_0_0,4_2_0,4_0_1 -11424,1,52.0,147.0,7,111,540.0,354.0,0.0,0,52,0.0,0.0,746.3740828910024,894.0,0.0,642.0331268999969,71,2,1,2,1,1,2,2,2,3,10.0,8,,5,132309,2,2,0,0,1,,0.0,365.0,32,2.0,1.0,4.0,5.0,2.8,2,2,2155.7922586109,540.0,47835.980701448054,0,1,2,3,100.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.018688861122751844,17084.278821945736,4,2,4_1,4_0_1,4_2_1,4_0_0 -11425,2,84.0,0.0,1,111,270.0,117.0,0.0,0,78,0.0,0.0,373.1870414455012,387.0,0.0,212.19738939915152,50,0,0,0,0,0,0,0,0,0,,2,,1,107008,2,2,0,1,1,378.0,0.0,369.0,11,0.0,6.0,4.0,1.0,1.0,2,2,2428.35508460272,270.0,16527.423039835823,0,5,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023415628623241456,16527.423039835823,4,2,4_0,4_0_0,4_2_0,4_1_0 -11426,1,69.0,93.0,5,111,264.0,600.0,0.0,85,78,0.0,0.0,364.89399608004567,864.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,,3,113232,1,2,0,1,1,430.0,0.0,218.0,41,0.0,7.0,3.0,2.0,1.5,2,2,695.792652098109,264.0,12515.513943126107,6,5,2,3,54.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06903432043831764,8343.675962084071,1,1,1_1,1_0_1,1_2_1,1_0_0 -11427,2,50.0,0.0,1,111,70.0,80.0,0.0,0,33,0.0,0.0,96.75219593031514,150.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,124289,2,1,2,0,1,,890.0,,32,1.0,0.0,6.0,3.0,2.0,3,2,1691.39108002593,70.0,38175.2272851801,0,1,0,1,95.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.003929249690629375,19087.61364259005,5,3,5,5_1,5_2,5_1_0 -11428,1,83.0,120.0,1,111,500.0,800.0,0.0,0,78,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,20,0,0,0,0,0,0,0,0,0,,2,,1,100233,2,1,0,0,1,,200.0,450.0,11,0.0,3.0,2.0,1.0,1.0,3,2,3068.42018648266,500.0,14070.36675198839,0,5,2,3,40.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09239275869026564,14070.36675198839,3,2,3_1,3_0_1,3_2_1,3_1_0 -11429,2,79.0,0.0,2,111,365.0,215.0,0.0,0,75,0.0,0.0,504.49359306521467,580.0,0.0,389.9353736822015,50,0,0,0,0,0,0,0,0,0,,2,,2,114786,2,1,0,1,2,,125.0,,11,0.0,4.0,5.0,1.0,1.0,3,3,2268.8525655533,365.0,18208.1784386984,0,5,0,1,97.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03185381788478677,18208.1784386984,4,2,4_0,4_0_0,4_2_0,4_0_1 -11430,1,46.0,25.0,2,111,320.0,480.0,0.0,63,68,0.0,0.0,442.2957528242978,800.0,0.0,870.5533924067755,71,2,2,2,1,1,2,2,2,3,15.0,2,,2,129322,1,3,0,1,1,21.0,0.0,134.0,43,2.0,0.0,2.0,2.0,1.5,2,2,803.034051819857,320.0,22631.831561476436,4,1,2,3,25.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03534844264932353,15087.887707650958,3,2,3_1,3_0_1,3_2_1,3_0_1 -11431,2,50.0,0.0,2,111,120.0,240.0,0.0,0,62,0.0,0.0,165.86090730911167,360.0,0.0,435.27669620338776,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,108218,1,2,0,1,1,,0.0,198.0,12,1.0,2.0,2.0,1.0,1.0,2,1,747.29247978647,120.0,12840.124217986644,0,1,2,3,45.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028037111938193436,12840.124217986644,2,1,2_0,2_0_0,2_2_0,2_0_1 -11432,2,64.0,0.0,2,111,140.0,84.0,0.0,0,78,0.0,0.0,193.50439186063028,224.0,0.0,152.3468436711857,20,1,2,2,2,1,2,2,2,0,,2,,2,124589,2,1,0,1,1,900.0,0.0,311.0,11,0.0,1.0,3.0,1.0,1.0,1,1,682.592982096931,140.0,16378.782228237113,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013676230435118841,16378.782228237113,4,2,4_0,4_0_0,4_2_0,4_0_1 -11433,2,76.0,0.0,2,111,611.0,1906.0,0.0,75,74,0.0,0.0,844.5084530488936,2517.0,0.0,3456.8224290152375,60,0,0,0,0,0,0,0,0,0,,1,,2,106925,2,1,2,0,1,,204.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,510.372548602044,611.0,78600.71889913967,5,5,0,1,90.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032022607874996806,52400.47926609311,10,5,10,10_1,10_2,10_0_1 -11434,2,79.0,0.0,2,111,500.0,540.0,0.0,78,78,0.0,0.0,691.0871137879653,1040.0,0.0,979.3725664576224,71,0,0,0,0,0,0,0,0,0,,2,,2,117298,2,1,0,0,1,,0.0,314.0,41,0.0,4.0,4.0,2.0,1.5,1,1,1862.38902237,500.0,26770.48119358471,5,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038848760038322584,17846.987462389807,4,2,4_0,4_0_0,4_2_0,4_0_1 -11435,2,68.0,0.0,1,400,0.0,0.0,0.0,77,90,7467.924385090004,0.0,0.0,7230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115079,2,1,1,0,1,,729.0,,41,0.0,2.0,9.0,5.0,2.8,2,2,1377.33903488427,0.0,60743.67929381391,7,5,0,1,120.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11902472955299397,21694.171176362113,6,3,6,6_1,6_0,6_1_0 -11436,2,90.0,0.0,1,400,563.0,0.0,0.0,0,71,5227.547069563002,0.0,778.1640901252489,4128.0,111.82125527236246,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119718,2,1,2,0,1,,291.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1439.38466983271,563.0,17325.849472466227,0,5,0,1,125.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23825671616044605,17325.849472466227,4,2,4_0,4_1_0,4_0_0,4_1_0 -11437,2,67.0,0.0,1,400,500.0,0.0,0.0,0,71,5675.6225326684025,0.0,691.0871137879653,4300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105448,2,3,2,0,2,,130.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1416.74045332056,500.0,13398.42495968756,0,5,0,1,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.32093324498495923,13398.42495968756,3,2,3_0,3_1_0,3_0_0,3_1_0 -11438,1,42.0,150.0,8,400,900.0,0.0,0.0,0,52,0.0,621.1035028916747,1243.9568048183376,1562.0,106.66027425979189,0.0,50,2,2,2,2,1,2,2,2,0,,1,2000.0,6,121232,1,1,2,0,1,,240.0,475.0,32,1.0,0.0,5.0,3.0,1.8,1,1,1237.97518405987,900.0,24055.22965477659,0,4,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.06493390511820939,13364.016474875883,3,2,3_1,3_1_1,3_0_1,3_0_0 -11439,2,88.0,0.0,1,400,300.0,600.0,0.0,0,72,0.0,0.0,414.65226827277917,960.0,103.2196202514115,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,1,,1,119031,1,1,2,0,2,,150.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1520.78248004017,300.0,43287.717172824785,0,5,0,1,120.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02217719165386411,43287.717172824785,9,5,9,9_1,9_0,9_1_0 -11441,2,68.0,0.0,2,400,300.0,0.0,0.0,71,71,4480.754631054002,0.0,414.65226827277917,3420.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106097,2,1,4,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1366.21900710245,300.0,22882.03580568966,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14946222569713885,15254.690537126438,3,2,3_0,3_1_0,3_0_0,3_0_1 -11442,2,87.0,0.0,1,400,400.0,0.0,0.0,90,71,0.0,828.1380038555662,552.8696910303722,1290.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112770,2,1,1,0,1,,120.0,,41,0.0,4.0,6.0,2.0,1.5,4,4,1469.05028166222,400.0,23803.051712125358,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05419473165043243,15868.701141416905,3,2,3_0,3_1_0,3_0_0,3_1_0 -11443,2,33.0,0.0,7,400,1600.0,0.0,0.0,69,63,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,103840,2,1,1,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1198.65988171427,1600.0,59160.30196413923,1,1,1,2,82.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02704516283520426,28171.572363875825,8,4,8,8_1,8_0,8_0_0 -11444,2,57.0,0.0,9,400,520.0,0.0,0.0,0,52,0.0,445.1241770723668,718.7305983394839,980.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,105866,2,1,1,0,1,,150.0,,12,1.0,2.0,3.0,1.0,1.0,4,4,1339.67060110628,520.0,19343.115341111188,0,1,1,2,72.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05066402090448904,19343.115341111188,5,3,5,5_1,5_0,5_0_0 -11445,2,31.0,0.0,9,400,800.0,0.0,0.0,54,63,0.0,310.55175144583734,1105.7393820607444,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,103364,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,4,4,1482.89989067081,800.0,58819.76988486384,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018701195229991273,32677.649936035465,8,4,8,8_1,8_0,8_0_0 -11446,2,22.0,0.0,1,400,0.0,0.0,0.0,63,56,0.0,0.0,0.0,894.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,114004,2,1,2,0,1,,168.0,350.0,43,2.0,0.0,2.0,2.0,1.5,3,2,1584.51169366414,0.0,20167.084139519517,1,1,2,3,70.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04432966083818301,13444.722759679678,3,2,3_0,3_1_0,3_0_0,3_1_0 -11447,2,58.0,0.0,1,400,960.0,100.0,0.0,0,72,0.0,672.8621281326475,1326.8872584728933,1710.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,1,,1,125991,1,2,2,0,2,,120.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1552.43684149406,960.0,15188.88169410171,0,6,0,1,100.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11258235032958637,15188.88169410171,3,2,3_0,3_1_0,3_0_0,3_1_0 -11448,2,61.0,0.0,7,400,3400.0,0.0,0.0,75,78,0.0,0.0,4699.392373758164,3520.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,113001,2,1,1,0,1,,600.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1359.03969063015,3400.0,41421.97806423319,5,5,1,2,250.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08497904167062048,27614.652042822127,7,4,7,7_1,7_0,7_0_0 -11449,2,55.0,0.0,1,400,561.0,0.0,0.0,69,55,0.0,414.0690019277831,775.399741670097,1061.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,1,5.0,1,,1,128206,2,1,1,0,1,,162.0,,43,2.0,2.0,3.0,2.0,1.5,1,1,1404.8248219228,561.0,41510.24097512883,1,1,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025559957617102395,27673.49398341922,7,4,7,7_1,7_0,7_1_0 -11450,2,58.0,0.0,5,400,600.0,0.0,0.0,78,69,0.0,621.1035028916747,829.3045365455583,1290.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,3,108333,2,1,1,0,1,,300.0,,42,1.0,2.0,4.0,2.0,1.5,4,3,1269.227983291,600.0,52204.90994445583,7,1,0,1,85.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024710319419619996,34803.27329630389,9,5,9,9_1,9_0,9_0_0 -11451,2,58.0,0.0,6,400,1147.0,0.0,0.0,77,11,4189.505580035492,0.0,1585.3538390295923,3982.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,117480,2,1,2,0,1,,329.0,,42,1.0,3.0,10.0,2.0,1.5,1,1,1450.14385429389,1147.0,144992.9597347391,5,1,0,1,261.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027463402411296155,96661.97315649274,10,5,10,10_1,10_0,10_0_0 -11452,2,89.0,0.0,5,111,354.0,0.0,0.0,0,77,0.0,0.0,489.28967656187945,616.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,109633,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,4,2,2075.74215224859,354.0,35502.333754203515,0,5,0,1,82.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017350972030875714,35502.333754203515,9,5,9,9_0,9_3,9_0_0 -11454,2,35.0,0.0,6,111,324.0,0.0,0.0,47,34,0.0,0.0,447.8244497346015,484.0,275.25232067043066,0.0,50,2,1,2,2,1,2,2,2,3,10.0,2,,4,102697,1,3,0,1,1,840.0,0.0,570.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1873.88728719649,324.0,38485.85795038029,1,1,2,3,118.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012576048080414886,25657.23863358686,7,4,7,7_0,7_3,7_0_0 -11456,2,62.0,0.0,1,111,339.0,1069.0,0.0,0,77,0.0,0.0,468.55706314824045,1408.0,0.0,1938.794951005923,50,0,0,0,0,0,0,0,0,0,,2,,1,106523,2,2,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,3,2,2051.00558248904,339.0,26353.95909336781,0,5,0,1,93.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.053426507759676035,26353.95909336781,7,4,7,7_0,7_3,7_1_0 -11459,2,31.0,0.0,1,111,800.0,800.0,0.0,0,62,0.0,0.0,1105.7393820607444,1600.0,0.0,1450.922320677959,50,1,2,2,1,1,2,2,2,0,,2,,1,101587,1,2,0,1,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2134.64101209609,800.0,17744.17454220569,0,4,2,3,37.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.09017043853994416,17744.17454220569,4,2,4_0,4_0_0,4_3_0,4_1_0 -11460,2,60.0,0.0,1,111,1269.0,4331.0,0.0,75,22,0.0,0.0,1753.979094793856,6015.0,0.0,7854.930713570301,50,0,0,0,0,0,0,0,0,0,,1,,1,119694,1,1,1,0,2,,476.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,1453.51986236744,1269.0,51246.860827230965,6,1,0,1,270.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11737304300995972,34164.573884820646,9,5,9,9_1,9_3,9_1_0 -11461,2,62.0,0.0,7,111,332.0,1257.0,0.0,0,34,0.0,0.0,458.88184355520895,1589.0,0.0,2279.761696365243,43,0,0,0,0,0,0,0,0,2,10.0,2,,5,108045,2,1,0,0,1,,178.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,2084.1004165987,332.0,95176.56694018006,0,1,1,2,94.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016695285941535496,95176.56694018006,10,5,10,10_0,10_3,10_0_0 -11462,2,46.0,0.0,2,111,600.0,800.0,0.0,0,46,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,2,105898,2,1,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1884.09062350082,600.0,55917.5875842211,0,1,1,2,67.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025036845480706213,55917.5875842211,10,5,10,10_0,10_3,10_0_1 -11463,1,64.0,50.0,2,111,690.0,700.0,0.0,0,78,0.0,0.0,953.7002170273921,1390.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,100547,2,2,0,0,1,,350.0,480.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1858.67087326327,690.0,12775.333927391834,0,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10880341820417506,12775.333927391834,2,1,2_1,2_0_1,2_3_1,2_0_1 -11464,2,30.0,0.0,2,111,1000.0,0.0,0.0,84,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,,2,125928,2,1,0,0,1,,0.0,418.0,42,1.0,0.0,2.0,2.0,1.5,1,1,2008.10978091936,1000.0,28000.571681280453,3,1,2,3,45.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035713556543866626,18667.047787520303,4,2,4_0,4_0_0,4_3_0,4_0_1 -11466,2,65.0,0.0,1,111,540.0,1390.0,0.0,0,74,0.0,0.0,746.3740828910024,1930.0,0.0,2520.977532177954,71,0,0,0,0,0,0,0,0,0,,1,,1,104302,2,1,2,0,1,,250.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1413.86009604607,540.0,40869.14860755173,0,5,0,1,145.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047223885638845386,40869.14860755173,9,5,9,9_1,9_3,9_1_0 -11467,1,25.0,327.0,1,111,760.0,0.0,0.0,43,62,0.0,0.0,1050.452412957707,760.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,123965,2,2,0,0,1,,88.0,612.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2041.1624592308,760.0,22354.514904373453,1,2,2,3,66.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03399760644554685,14903.00993624897,3,2,3_1,3_0_1,3_3_1,3_1_0 -11468,2,35.0,0.0,7,111,0.0,0.0,1500.0,43,54,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,71,0,0,0,0,0,0,0,0,0,,1,,5,121646,2,1,2,0,1,,600.0,730.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1747.50290218518,0.0,52740.18165583066,1,1,2,3,95.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028441312731697206,29300.100919905923,8,4,8,8_1,8_3,8_0_0 -11469,2,64.0,0.0,2,111,300.0,650.0,0.0,78,77,0.0,0.0,414.65226827277917,950.0,0.0,1178.8743855508417,31,0,0,0,0,0,0,0,0,0,,2,,2,104181,1,2,0,0,1,,250.0,330.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1722.56715538865,300.0,20993.28848438098,5,5,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.045252557773728525,13995.525656253987,3,2,3_0,3_0_0,3_3_0,3_0_1 -11470,2,63.0,0.0,1,111,350.0,950.0,0.0,0,43,0.0,0.0,483.76097965157567,1300.0,0.0,1722.9702558050765,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,131143,2,1,0,0,1,,250.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,2033.51820423457,350.0,24680.581175349067,0,5,1,2,56.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05267298977944808,24680.581175349067,7,4,7,7_0,7_3,7_1_0 -11471,1,81.0,80.0,7,111,800.0,1100.0,0.0,0,77,0.0,0.0,1105.7393820607444,1900.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,0,,2,,5,105517,2,1,0,0,1,,300.0,495.0,11,0.0,1.0,3.0,1.0,1.0,2,2,2242.94847488576,800.0,11189.784679526265,0,5,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16979772662439105,11189.784679526265,2,1,2_1,2_0_1,2_3_1,2_0_0 -11472,1,30.0,24.0,2,111,1000.0,0.0,0.0,55,54,0.0,0.0,1382.1742275759307,1030.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,108115,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1927.49976375283,1000.0,47497.03169078859,1,1,1,2,58.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021685565672933504,26387.239828215883,7,4,7,7_0,7_3,7_0_1 -11473,2,86.0,0.0,2,111,670.0,1000.0,0.0,0,75,0.0,0.0,926.0567324758734,1670.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,0,,2,,2,110261,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2089.43793877896,670.0,30386.4111291772,0,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.054958777227773925,30386.4111291772,8,4,8,8_0,8_3,8_0_1 -11474,1,43.0,210.0,7,111,750.0,1300.0,0.0,85,43,0.0,0.0,1036.630670681948,2050.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,117437,2,1,0,0,1,,700.0,355.0,42,1.0,0.0,3.0,2.0,1.5,3,3,1732.08162600159,750.0,14964.864027823758,7,1,2,3,95.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13698754604041116,9976.576018549173,2,1,2_1,2_0_1,2_3_1,2_0_0 -11475,2,61.0,0.0,2,111,450.0,450.0,0.0,75,75,0.0,0.0,621.9784024091688,900.0,0.0,816.143805381352,31,2,1,2,2,1,2,2,2,0,,2,,2,106527,2,1,0,1,1,,200.0,624.0,41,0.0,2.0,4.0,2.0,1.5,3,3,1635.30139243972,450.0,45643.8580523675,5,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019717877462668124,30429.23870157833,8,4,8,8_0,8_3,8_0_1 -11476,1,54.0,15.0,2,111,350.0,850.0,0.0,68,68,0.0,0.0,483.76097965157567,1200.0,0.0,1541.6049657203316,60,0,0,0,0,0,0,0,0,3,10.0,2,,2,108191,2,1,0,0,1,,0.0,330.0,43,2.0,0.0,4.0,4.0,2.5,1,1,526.930362164115,350.0,18167.593775870937,1,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0660516750211448,7267.037510348375,1,1,1_1,1_0_1,1_3_1,1_0_1 -11477,2,57.0,0.0,7,111,800.0,0.0,0.0,0,43,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,5,109710,2,1,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,3,3,531.363475798783,800.0,33478.05962392987,0,1,1,2,40.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023896247542022,33478.05962392987,8,4,8,8_0,8_3,8_0_0 -11478,2,58.0,0.0,5,111,1150.0,800.0,0.0,64,56,0.0,0.0,1589.5003617123202,1950.0,0.0,1450.922320677959,71,2,2,2,2,2,2,2,1,0,,2,,3,114603,1,3,0,0,1,,600.0,389.0,43,4.0,0.0,4.0,4.0,2.5,4,4,1376.02303686136,1150.0,57478.83808879265,1,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.033925529200636635,22991.535235517058,6,3,6,6_0,6_3,6_0_0 -11479,2,30.0,0.0,1,111,0.0,0.0,1200.0,42,46,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,42,0,0,0,0,0,0,0,0,0,,1,,1,127463,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1430.05491596587,0.0,65056.957446581306,1,1,1,2,99.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0184453753618178,36142.75413698961,9,5,9,9_1,9_3,9_1_0 -11480,2,73.0,0.0,2,111,560.0,0.0,0.0,77,78,2240.377315527001,0.0,774.0175674425211,2210.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123391,2,2,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1282.45623553546,560.0,22650.539466852093,5,5,0,1,80.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09756942006764219,15100.359644568061,3,2,3_0,3_1_0,3_3_0,3_0_1 -11481,1,25.0,200.0,9,111,300.0,0.0,0.0,0,43,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,104092,2,1,0,1,1,,0.0,368.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2451.96147051082,300.0,23175.92920117919,0,1,2,3,20.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012944464810702648,23175.92920117919,6,3,6,6_0,6_3,6_0_0 -11482,2,24.0,0.0,2,111,250.0,600.0,0.0,62,55,0.0,0.0,345.54355689398267,850.0,0.0,1088.1917405084694,70,2,2,2,1,2,2,2,2,1,5.0,2,,2,133658,2,1,0,0,1,,200.0,540.0,43,2.0,0.0,1.0,2.0,1.5,1,1,2201.71827621865,250.0,35640.132175365325,1,1,2,3,40.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.023849518734038958,23760.088116910218,6,3,6,6_0,6_3,6_0_1 -11483,1,31.0,258.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1444.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,1,,3,112761,2,3,3,0,1,,648.0,634.0,32,1.0,0.0,4.0,3.0,1.6,4,3,1531.21436772182,0.0,24602.062820463718,0,1,2,3,95.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05869426521417127,15376.289262789824,3,2,3_1,3_1_1,3_3_1,3_0_0 -11484,2,46.0,0.0,7,111,2500.0,0.0,0.0,54,34,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,113443,2,1,1,0,1,,650.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,1,1,1316.05495451033,2500.0,91872.81445761354,1,1,1,2,200.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027211531667546775,29636.3917605205,8,4,8,8_1,8_3,8_0_0 -11485,1,79.0,162.0,2,111,550.0,610.0,0.0,0,86,0.0,0.0,760.1958251667618,1190.0,51.60981012570575,1106.328269516944,12,0,0,0,0,0,0,0,0,0,,2,,2,119084,2,1,0,1,1,,0.0,321.0,11,0.0,1.0,4.0,1.0,1.0,2,2,1789.71573146995,550.0,10203.262222222222,0,5,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11662936559723383,10203.262222222222,2,1,2_1,2_0_1,2_3_1,2_0_1 -11486,2,46.0,0.0,2,111,450.0,500.0,0.0,0,52,0.0,0.0,621.9784024091688,950.0,0.0,906.8264504237244,20,0,0,0,0,0,0,0,0,2,2.0,2,,2,129337,2,1,0,1,1,,150.0,399.0,12,1.0,0.0,2.0,1.0,1.0,1,1,551.112289941133,450.0,16762.096451036457,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05667548822279079,16762.096451036457,4,2,4_0,4_0_0,4_3_0,4_0_1 -11487,2,35.0,0.0,2,111,350.0,730.0,0.0,46,65,0.0,0.0,483.76097965157567,1080.0,0.0,1323.9666176186377,70,0,0,0,0,0,0,0,0,1,15.0,2,,2,127420,2,1,0,1,1,,0.0,397.0,43,2.0,1.0,4.0,3.0,1.8,3,3,1728.38827054622,350.0,40743.52259158046,1,1,2,3,102.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026507280944411495,22635.29032865581,6,3,6,6_0,6_3,6_0_1 -11488,1,40.0,189.0,9,111,700.0,700.0,0.0,0,43,0.0,0.0,967.5219593031513,1400.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,126258,2,1,1,0,1,,0.0,613.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1232.83939368163,700.0,20863.918955192326,0,1,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06710148764509015,13039.949346995203,2,1,2_1,2_1_1,2_3_1,2_0_0 -11489,2,54.0,0.0,2,111,300.0,0.0,0.0,0,68,0.0,0.0,414.65226827277917,360.0,103.2196202514115,0.0,20,1,2,2,1,2,2,2,2,2,30.0,2,,2,100395,1,2,0,2,1,,0.0,270.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1836.05286146324,300.0,18212.241281160015,0,1,2,3,67.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019766924588925174,18212.241281160015,4,2,4_0,4_0_0,4_3_0,4_0_1 -11490,1,48.0,291.0,2,111,150.0,0.0,0.0,0,56,0.0,0.0,207.32613413638958,180.0,51.60981012570575,0.0,42,2,2,2,2,1,2,2,2,0,,2,,2,111342,2,1,0,1,1,,0.0,404.0,32,1.0,2.0,4.0,2.0,1.5,1,1,1781.47916505664,150.0,9408.185851207672,0,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.019132275110923164,6272.123900805115,1,1,1_1,1_0_1,1_3_1,1_0_1 -11491,2,68.0,0.0,2,111,400.0,600.0,0.0,0,75,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,133058,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1789.5028782803,400.0,27532.050440058323,0,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03632130495246476,27532.050440058323,7,4,7,7_0,7_3,7_0_1 -11492,1,53.0,26.0,5,111,600.0,600.0,0.0,56,63,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,70,0,0,0,0,0,0,0,0,0,,2,,3,130448,2,1,0,1,1,,0.0,517.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,454.988004162316,600.0,22988.877322034874,2,1,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05219915627849291,8841.875893090337,1,1,1_1,1_0_1,1_3_1,1_0_0 -11493,2,85.0,0.0,2,111,1000.0,850.0,0.0,86,77,0.0,0.0,1382.1742275759307,1850.0,0.0,1541.6049657203316,71,0,0,0,0,0,0,0,0,0,,1,,2,108242,2,1,2,0,2,,350.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1333.62167559332,1000.0,39090.880893863134,6,5,0,1,82.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04732561553225144,26060.587262575424,7,4,7,7_1,7_3,7_0_1 -11494,2,61.0,0.0,2,111,720.0,0.0,0.0,47,31,0.0,0.0,995.16544385467,720.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,2,,2,102374,2,1,0,1,1,,0.0,450.0,43,2.0,1.0,5.0,2.0,1.5,1,1,1631.84096265063,720.0,37238.52193844679,1,1,2,3,95.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01933481681120749,24825.68129229786,7,4,7,7_0,7_3,7_0_1 -11495,2,63.0,0.0,1,111,500.0,1200.0,0.0,0,75,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,44,0,0,0,0,0,0,0,0,0,,1,,1,128390,2,1,1,0,1,,500.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1322.17850868297,500.0,15761.535154594862,0,5,0,1,55.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10785751408893757,15761.535154594862,3,2,3_0,3_1_0,3_3_0,3_1_0 -11496,2,48.0,0.0,2,111,0.0,0.0,580.0,0,62,0.0,0.0,296.32973420576457,580.0,0.0,663.0825492985263,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,112028,2,2,0,1,1,,180.0,419.0,32,2.0,0.0,3.0,3.0,2.0,1,1,553.68162054903,0.0,29635.855857655668,0,1,2,3,62.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01957088746772845,14817.927928827834,3,2,3_0,3_0_0,3_3_0,3_0_1 -11497,2,54.0,0.0,2,111,1200.0,600.0,0.0,47,55,0.0,0.0,1658.6090730911167,1800.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,1,,2,125034,2,1,2,0,1,,500.0,,43,3.0,2.0,4.0,3.0,2.0,1,1,1506.92003558368,1200.0,28749.86838866545,1,1,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06260898226266819,14374.934194332725,3,2,3_0,3_1_0,3_3_0,3_0_1 -11498,1,52.0,130.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,334.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,110376,2,1,0,1,1,,0.0,628.0,21,0.0,0.0,3.0,2.0,1.5,2,2,454.665553086312,0.0,32161.437298191096,0,7,2,3,78.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01038510800693555,21440.958198794066,6,3,6,6_0,6_3,6_0_1 -11499,2,62.0,0.0,2,111,1200.0,1200.0,0.0,75,74,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,2,131286,2,1,2,0,1,,600.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1289.71688539764,1200.0,61768.871501047404,5,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03885452237797972,41179.247667364936,9,5,9,9_1,9_3,9_0_1 -11500,2,90.0,0.0,1,300,430.0,0.0,0.0,0,86,0.0,517.5862524097289,594.3349178576501,1050.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130489,2,2,4,0,1,,170.0,,11,0.0,4.0,4.0,1.0,1.0,3,3,1200.45778498099,430.0,12230.794856379769,0,6,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0858488767352928,12230.794856379769,2,1,2_0,2_1_0,2_0_0,2_1_0 -11501,2,75.0,0.0,1,300,470.0,0.0,0.0,0,78,4182.037655650402,0.0,649.6218869606873,3270.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118688,1,1,1,0,1,,288.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1264.14094016345,470.0,26084.62068837203,0,5,0,1,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1253612248790605,26084.62068837203,7,4,7,7_1,7_0,7_1_0 -11502,2,64.0,0.0,5,300,390.0,0.0,0.0,0,78,2240.377315527001,465.827627168756,539.0479487546129,2446.0,182.3546624441603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,114661,2,2,2,0,1,,230.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1140.10974598873,390.0,12625.36066532888,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19373703966470282,12625.36066532888,2,1,2_0,2_1_0,2_0_0,2_0_0 -11503,2,78.0,0.0,1,300,490.0,0.0,0.0,0,71,3563.6935165649497,0.0,677.265371512206,2876.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,128092,2,1,1,0,1,,250.0,,11,0.0,8.0,6.0,1.0,1.0,1,1,1294.5548965159,490.0,27073.682622769993,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10622862209299798,27073.682622769993,7,4,7,7_1,7_0,7_1_0 -11504,2,27.0,0.0,1,300,211.0,0.0,0.0,0,21,0.0,0.0,291.63876201852133,241.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,112390,2,2,1,0,2,,20.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1172.63356450151,211.0,14596.769477045442,0,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016510502572435037,14596.769477045442,3,2,3_0,3_1_0,3_0_0,3_1_0 -11505,2,49.0,0.0,1,222,180.0,0.0,0.0,0,52,0.0,0.0,248.7913609636675,195.0,25.804905062852875,0.0,71,0,0,0,0,0,0,0,0,1,1.0,8,,1,119479,1,3,0,1,2,,200.0,380.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1638.62320329623,180.0,15991.302110105331,0,1,2,3,65.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012194128949435223,15991.302110105331,3,2,3_0,3_0_0,3_0_0,3_1_0 -11506,1,42.0,24.0,9,222,1300.0,0.0,0.0,56,11,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,100921,2,1,1,0,1,,210.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,977.711446155565,1300.0,50073.08642166781,1,1,1,2,95.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025962050532548343,23844.32686746086,6,3,6,6_1,6_0,6_0_0 -11507,2,64.0,0.0,5,222,1900.0,0.0,0.0,72,77,0.0,0.0,2626.131032394268,2160.0,447.28502108944986,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,114925,2,1,1,0,1,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1139.27050562355,1900.0,26758.492769978846,5,5,0,1,86.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08072203537649807,17838.995179985897,4,2,4_0,4_1_0,4_0_0,4_0_0 -11508,2,72.0,0.0,1,222,280.0,0.0,0.0,0,77,0.0,0.0,387.00878372126056,2230.0,3354.6376581708737,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,102349,2,1,2,0,1,,125.0,,11,0.0,4.0,5.0,1.0,1.0,2,1,1234.10323942528,280.0,17163.837410466705,0,5,0,1,100.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12992432558468076,17163.837410466705,4,2,4_0,4_1_0,4_0_0,4_1_0 -11509,2,38.0,0.0,9,222,628.0,0.0,0.0,62,48,0.0,517.5862524097289,868.0054149176844,1362.0,402.55651898050485,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,128935,2,1,1,0,1,,224.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1066.69039859589,628.0,58007.31472866467,1,1,1,2,100.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02347979744228635,27622.530823173653,7,4,7,7_1,7_0,7_0_0 -11510,2,66.0,0.0,1,222,450.0,0.0,0.0,54,72,0.0,0.0,621.9784024091688,570.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119159,2,1,3,0,1,,160.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1207.41707682488,450.0,33923.19517263564,4,5,0,1,116.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01680266251746811,22615.46344842376,6,3,6,6_1,6_0,6_1_0 -11511,2,81.0,0.0,2,222,1484.0,0.0,0.0,78,75,0.0,0.0,2051.146553722681,1484.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123425,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1049.12064790294,1484.0,49037.5064306547,5,5,0,1,70.0,1,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030262550199173885,32691.6709537698,8,4,8,8_1,8_0,8_0_1 -11512,2,41.0,0.0,1,300,540.0,0.0,0.0,62,63,0.0,0.0,746.3740828910024,2794.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,122837,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,5,4,1008.34008915744,540.0,38267.45890166264,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07301242570560666,18222.59947698221,4,2,4_0,4_1_0,4_0_0,4_1_0 -11513,2,65.0,0.0,1,300,264.0,0.0,0.0,11,11,0.0,0.0,364.89399608004567,334.0,120.42289029331342,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,122761,1,2,1,0,2,,97.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1075.38860370188,264.0,20656.153976884623,1,1,0,1,91.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.016169515408036,13770.769317923083,3,2,3_0,3_1_0,3_0_0,3_1_0 -11514,2,67.0,0.0,1,300,2096.0,0.0,0.0,0,78,0.0,0.0,2897.03718099915,2228.0,227.0831645531053,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118531,2,1,1,0,2,,180.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1379.58383557583,2096.0,8044.624051420978,0,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2769551424353327,8044.624051420978,1,1,1_0,1_1_0,1_0_0,1_1_0 -11515,2,42.0,0.0,1,300,855.0,0.0,0.0,54,64,2240.377315527001,207.03450096389156,1181.7589645774206,2555.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,112442,2,1,2,0,1,,366.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1115.72207665526,855.0,43210.616805172394,1,1,1,2,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059128987015389274,20576.484192939235,5,3,5,5_1,5_0,5_1_0 -11516,0,59.0,0.0,1,300,680.0,0.0,0.0,0,64,0.0,103.51725048194578,939.8784747516328,815.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,2,2.0,1,,1,120580,1,3,3,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1536.97909877193,680.0,18424.44187385952,0,1,5,0,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04423471851032387,18424.44187385952,4,2,4_0,4_1_0,4_0_0,4_1_0 -11517,2,33.0,0.0,9,300,1026.0,0.0,0.0,84,53,0.0,579.6966026988963,1418.1107574929047,1586.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,105.0,1,2010.0,6,109307,2,1,1,0,1,,320.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,972.909376449287,1026.0,45190.922593164134,3,1,1,2,82.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03509554372850773,18829.551080485056,5,3,5,5_1,5_0,5_0_0 -11518,2,52.0,0.0,8,300,1100.0,0.0,0.0,65,54,0.0,103.51725048194578,1520.3916503335236,1265.0,111.82125527236246,0.0,20,0,0,0,0,0,0,0,0,3,135.0,1,2003.0,6,121595,2,1,2,0,1,,340.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,1145.90048672987,1100.0,63742.63095492105,1,1,1,2,92.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019845431245136574,42495.0873032807,9,5,9,9_1,9_0,9_0_0 -11519,2,74.0,0.0,2,400,1300.0,0.0,0.0,78,78,448.0754631054002,0.0,1796.8264958487098,1700.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124138,2,1,2,0,1,,158.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1082.48779614898,1300.0,35509.61048974598,5,5,0,1,85.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04787436349072048,23673.073659830654,6,3,6,6_1,6_0,6_0_1 -11520,2,82.0,0.0,2,211,0.0,0.0,0.0,0,86,0.0,0.0,0.0,157.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,124260,1,2,0,1,2,,0.0,468.0,11,0.0,3.0,1.0,1.0,1.0,2,2,305.599522161091,0.0,14900.148961244418,0,6,2,3,36.0,4,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01053680741101046,14900.148961244418,3,2,3_0,3_0_0,3_1_0,3_0_1 -11521,2,56.0,0.0,6,211,450.0,580.0,0.0,78,43,0.0,248.44140115666985,621.9784024091688,1270.0,0.0,1051.9186824915203,70,0,0,0,0,0,0,0,0,0,,1,,4,126330,2,2,2,0,1,,390.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,682.611360552562,450.0,56691.215107375174,5,1,0,1,100.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022402059959282492,37794.14340491678,9,5,9,9_1,9_1,9_0_0 -11522,2,55.0,0.0,5,211,320.0,320.0,0.0,85,62,0.0,0.0,442.2957528242978,640.0,0.0,580.3689282711837,70,2,2,2,2,1,2,2,2,2,10.0,2,,3,128819,2,2,0,1,1,,350.0,265.0,42,1.0,1.0,3.0,2.0,1.5,2,2,262.790106460624,320.0,21838.027500830984,6,1,2,3,63.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02930667616274623,14558.685000553989,3,2,3_0,3_0_0,3_1_0,3_0_0 -11523,1,60.0,291.0,2,211,264.0,420.0,0.0,78,78,0.0,0.0,364.89399608004567,754.0,120.42289029331342,761.7342183559285,60,2,2,2,2,1,2,2,2,0,,2,,2,106008,1,2,0,1,2,,420.0,280.0,41,0.0,3.0,3.0,2.0,1.5,2,1,262.790106460624,264.0,23164.032655618168,6,7,2,3,65.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03255046352290157,15442.68843707878,3,2,3_1,3_0_1,3_1_1,3_0_1 -11524,2,77.0,0.0,5,211,300.0,300.0,0.0,78,78,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,43,0,0,0,0,0,0,0,0,0,,2,,3,130412,1,3,0,1,2,802.0,300.0,288.0,41,0.0,3.0,3.0,2.0,1.5,2,2,262.790106460624,300.0,25109.768332858534,5,5,2,3,80.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02389508306274744,16739.845555239022,4,2,4_0,4_0_0,4_1_0,4_0_0 -11525,1,52.0,246.0,2,211,240.0,245.0,0.0,0,67,0.0,0.0,331.72181461822333,485.0,0.0,444.344960707625,70,2,2,2,2,1,2,2,2,0,,2,,2,132351,1,2,0,1,2,,250.0,234.0,12,1.0,0.0,2.0,1.0,1.0,1,1,335.798213173326,240.0,7204.897959183673,0,4,2,3,35.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06731531837752096,7204.897959183673,1,1,1_1,1_0_1,1_1_1,1_0_1 -11526,2,61.0,0.0,6,211,0.0,0.0,0.0,55,74,0.0,0.0,0.0,1412.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119143,1,2,3,0,1,,389.0,582.0,42,1.0,2.0,4.0,2.0,1.5,2,2,705.315057240198,0.0,59041.49194575658,1,5,2,3,86.0,4,3,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023915384816109532,39360.994630504385,9,5,9,9_1,9_1,9_0_0 -11527,1,45.0,247.0,2,211,0.0,0.0,0.0,0,63,0.0,0.0,0.0,917.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,119559,1,2,0,1,2,870.0,298.0,273.0,32,1.0,2.0,3.0,2.0,1.5,1,1,265.761189781524,0.0,16579.732057003326,0,1,2,3,65.0,4,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05530849333675791,11053.154704668885,2,1,2_1,2_0_1,2_1_1,2_0_1 -11528,0,28.0,0.0,7,211,370.0,1110.0,0.0,55,53,0.0,0.0,511.40446420309434,1480.0,0.0,2013.1547199406682,50,0,0,0,0,0,0,0,0,2,5.0,2,,5,115670,1,3,0,0,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,897.841890567174,370.0,45533.06318596827,1,1,5,0,101.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03250385316611173,30355.37545731218,8,4,8,8_0,8_1,8_0_0 -11529,2,86.0,0.0,6,211,380.0,1340.0,0.0,0,78,0.0,0.0,525.2262064788536,1720.0,0.0,2430.2948871355816,42,0,0,0,0,0,0,0,0,0,,1,,4,108032,2,1,1,0,1,,340.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,867.425335175586,380.0,29271.196824557126,0,5,0,1,80.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058760836132159884,29271.196824557126,8,4,8,8_1,8_1,8_0_0 -11530,1,45.0,254.0,2,211,163.0,459.0,0.0,0,81,0.0,0.0,225.29439909487667,712.0,154.82943037711726,832.466681488979,70,0,0,0,0,0,0,0,0,0,,2,,2,133620,2,1,0,0,1,,236.0,328.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1001.21588824153,163.0,6060.0,0,4,2,3,78.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11749174917491749,6060.0,1,1,1_1,1_0_1,1_1_1,1_0_1 -11531,2,88.0,0.0,2,211,210.0,1072.0,0.0,78,75,0.0,0.0,290.25658779094545,1342.0,103.2196202514115,1944.2359097084652,50,0,0,0,0,0,0,0,0,0,,1,,2,106767,2,1,2,0,1,,145.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,692.80721482962,210.0,40493.77552298447,5,5,0,1,80.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0331408959196278,26995.850348656313,7,4,7,7_1,7_1,7_0_1 -11532,1,31.0,350.0,2,211,0.0,0.0,0.0,85,67,0.0,0.0,0.0,1101.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,102568,1,2,0,0,1,,0.0,400.0,42,1.0,1.0,3.0,3.0,1.8,1,1,1195.7934815409,0.0,22016.695600146722,6,4,2,3,51.0,4,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05000750430471786,12231.497555637068,2,1,2_1,2_0_1,2_1_1,2_0_1 -11534,2,37.0,0.0,2,211,0.0,0.0,0.0,0,68,0.0,0.0,0.0,3165.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,30.0,1,,2,115847,1,2,1,0,2,,329.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,852.895105574607,0.0,20634.027059889762,0,1,1,2,80.0,4,3,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15338741152241706,20634.027059889762,5,3,5,5_1,5_1,5_0_1 -11535,2,86.0,0.0,2,211,320.0,1120.0,0.0,77,75,0.0,0.0,442.2957528242978,1440.0,0.0,2031.2912489491428,10,0,0,0,0,0,0,0,0,0,,1,,2,109495,2,3,2,0,1,,230.0,,41,0.0,0.0,6.0,3.0,2.0,2,2,782.148980897751,320.0,57131.894404351486,5,5,0,1,114.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02520483549536074,28565.947202175743,8,4,8,8_1,8_1,8_0_1 -11536,2,64.0,0.0,5,211,830.0,1640.0,0.0,77,77,0.0,0.0,1147.2046088880224,2470.0,0.0,2974.3907573898164,10,0,0,0,0,0,0,0,0,0,,1,,3,111944,2,1,2,0,1,,154.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,688.313975173889,830.0,73620.76832725276,5,5,0,1,106.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03355031543572822,49080.51221816851,10,5,10,10_1,10_1,10_0_0 -11537,2,53.0,0.0,2,211,450.0,850.0,0.0,78,48,0.0,0.0,621.9784024091688,1300.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,2,2.0,1,,2,112809,2,2,2,0,2,,435.0,,42,1.0,0.0,5.0,3.0,2.0,2,2,758.843990372462,450.0,45470.873826298855,5,1,1,2,100.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028589729877768984,22735.436913149428,6,3,6,6_1,6_1,6_0_1 -11538,2,54.0,0.0,2,211,240.0,240.0,0.0,78,52,0.0,0.0,331.72181461822333,480.0,0.0,435.27669620338776,50,2,2,2,1,2,2,2,2,1,1.0,2,,2,122248,2,3,0,1,1,760.0,380.0,285.0,42,1.0,3.0,3.0,2.0,1.5,1,1,938.394045488128,240.0,28168.225977592916,7,1,2,3,62.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.017040476754973045,18778.81731839528,5,3,5,5_0,5_1,5_0_1 -11539,1,40.0,254.0,2,211,237.0,200.0,0.0,0,54,0.0,0.0,327.57529193549556,437.0,0.0,362.73058016948977,42,0,0,0,0,0,0,0,0,0,,8,,2,127469,2,3,0,1,1,819.0,197.0,285.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1005.62127940239,237.0,9444.486236558128,0,4,2,3,65.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04627038348665716,9444.486236558128,1,1,1_1,1_0_1,1_1_1,1_0_1 -11540,1,79.0,73.0,2,211,180.0,150.0,0.0,0,78,0.0,0.0,248.7913609636675,330.0,0.0,272.04793512711734,31,2,2,2,2,1,2,2,2,0,,2,,2,123461,1,3,0,1,2,717.0,165.0,223.0,11,0.0,0.0,3.0,1.0,1.0,3,3,1005.62127940239,180.0,11291.870251846776,0,5,2,3,65.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.029224565341248832,11291.870251846776,2,1,2_1,2_0_1,2_1_1,2_0_1 -11541,0,78.0,0.0,2,211,650.0,1410.0,0.0,0,77,0.0,0.0,898.4132479243549,2060.0,0.0,2557.250590194903,42,2,2,1,1,2,2,2,2,0,,1,,2,125291,2,2,3,0,1,,250.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,235.219241606221,650.0,24368.36083700786,0,5,0,1,90.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08453584604145838,24368.36083700786,7,4,7,7_1,7_1,7_0_1 -11542,2,69.0,0.0,2,211,90.0,84.0,0.0,0,78,0.0,0.0,124.39568048183375,174.0,0.0,152.3468436711857,10,0,0,0,0,0,0,0,0,0,,2,,2,120895,2,1,0,1,1,738.0,320.0,276.0,11,0.0,0.0,2.0,1.0,1.0,1,1,273.161379112995,90.0,15316.354244478154,0,5,2,3,53.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011360405826519088,15316.354244478154,3,2,3_0,3_0_0,3_1_0,3_0_1 -11543,2,66.0,0.0,2,211,300.0,300.0,0.0,0,78,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,60,0,0,0,0,0,0,0,0,0,,2,,2,102080,2,3,0,1,1,,300.0,357.0,11,0.0,1.0,4.0,1.0,1.0,2,2,278.480791627608,300.0,13988.837537704323,0,5,2,3,65.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0428913409268505,13988.837537704323,3,2,3_0,3_0_0,3_1_0,3_0_1 -11544,2,77.0,0.0,1,211,215.0,1075.0,0.0,0,78,0.0,745.3242034700096,297.16745892882506,2086.0,130.74485231845458,1949.6768684110075,71,0,0,0,0,0,0,0,0,0,,1,,1,120989,1,1,2,0,2,,200.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,273.976563656798,215.0,15651.29615180412,0,5,0,1,95.0,4,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13327969643968096,15651.29615180412,3,2,3_0,3_1_0,3_1_0,3_1_0 -11545,1,31.0,221.0,9,211,500.0,1021.0,0.0,85,62,0.0,0.0,691.0871137879653,1521.0,0.0,1851.7396117652454,71,2,2,2,2,2,2,2,1,2,5.0,1,2005.0,6,116473,1,1,2,0,1,,460.0,430.0,42,1.0,0.0,4.0,4.0,2.1,1,1,197.682439694309,500.0,20069.698352708685,6,1,2,3,102.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.07578589240703361,9556.999215575564,1,1,1_1,1_1_1,1_1_1,1_0_0 -11546,2,53.0,0.0,6,211,500.0,0.0,0.0,67,43,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,123261,2,1,2,0,1,,308.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,732.609812694562,500.0,74571.94348760044,1,1,0,1,135.0,4,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006704934545297699,49714.628991733625,10,5,10,10_1,10_1,10_0_0 -11547,2,80.0,0.0,1,211,1800.0,3413.0,0.0,74,11,0.0,0.0,2487.913609636675,5213.0,0.0,6189.9973505923435,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,108461,1,3,4,0,2,,746.0,,42,2.0,0.0,9.0,3.0,2.0,2,2,845.773391433699,1800.0,296772.0599742232,5,1,0,1,120.0,4,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017565669761677654,148386.0299871116,10,5,10,10_1,10_1,10_1_0 -11548,2,46.0,0.0,2,211,600.0,1559.0,0.0,0,34,0.0,0.0,829.3045365455583,2159.0,0.0,2827.484872421173,12,2,2,2,2,1,2,2,2,2,5.0,1,,2,112086,2,3,1,0,1,,798.0,,32,1.0,0.0,7.0,3.0,1.8,2,2,762.247539959454,600.0,43219.304935828906,0,1,1,2,100.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.049954528496134694,24010.724964349392,6,3,6,6_1,6_1,6_0_1 -11549,2,74.0,0.0,5,112,400.0,0.0,0.0,0,75,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,110029,1,3,0,1,2,360.0,0.0,541.0,11,0.0,1.0,1.0,1.0,1.0,5,4,938.141080953721,400.0,13380.780114094461,0,5,2,3,42.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.029893623285735447,13380.780114094461,3,2,3_0,3_0_0,3_2_0,3_0_0 -11550,2,80.0,0.0,2,112,34.0,4.0,0.0,78,75,1523.4565745583607,0.0,46.99392373758164,1424.0,0.0,7.254611603389796,50,0,0,0,0,0,0,0,0,0,,2,,2,125719,2,2,0,1,1,,0.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,828.977451723663,34.0,61435.1662451435,5,5,0,1,67.0,10,4,1,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023178906919822464,30717.58312257175,8,4,8,8_0,8_2,8_0_1 -11551,2,64.0,0.0,2,112,150.0,280.0,0.0,77,78,0.0,0.0,207.32613413638958,430.0,0.0,507.8228122372857,70,0,0,0,0,0,0,0,0,0,,2,,2,119555,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,841.187821495327,150.0,33339.44699651661,5,5,0,1,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012897634446214043,22226.297997677742,6,3,6,6_0,6_2,6_0_1 -11552,2,58.0,0.0,1,112,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1534.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,6.0,1,,1,133570,2,1,1,0,1,,116.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,648.488635174102,0.0,41432.31987915728,0,1,0,1,120.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03702423625985968,41432.31987915728,9,5,9,9_1,9_2,9_1_0 -11553,2,54.0,0.0,1,111,474.0,861.0,0.0,62,46,0.0,414.0690019277831,655.1505838709911,1735.0,0.0,1561.5551476296534,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,116647,2,1,1,0,1,,650.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,558.489408420518,474.0,54088.334139022634,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032077157257987446,36058.88942601509,9,5,9,9_1,9_4,9_1_0 -11554,2,75.0,0.0,5,111,149.0,0.0,0.0,0,75,0.0,0.0,205.94395990881367,149.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,132917,1,1,0,1,2,,0.0,743.0,11,0.0,2.0,1.0,1.0,1.0,3,3,801.316203360451,149.0,27503.294303706178,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005417532836418133,27503.294303706178,7,4,7,7_0,7_4,7_0_0 -11556,2,68.0,0.0,6,111,360.0,1114.0,0.0,77,78,0.0,0.0,497.582721927335,1474.0,0.0,2020.409331544058,60,0,0,0,0,0,0,0,0,0,,1,,4,110312,2,1,2,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,623.855234545718,360.0,26923.482281938093,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05474774713629257,17948.98818795873,4,2,4_0,4_1_0,4_4_0,4_0_0 -11557,2,42.0,0.0,2,111,0.0,0.0,0.0,46,37,0.0,103.51725048194578,0.0,1773.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,122461,2,1,2,0,1,,563.0,,43,3.0,0.0,6.0,6.0,3.0999999999999996,3,3,650.783656570764,0.0,85627.36476886319,1,1,1,2,220.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02070599749024063,27621.730570601034,7,4,7,7_1,7_4,7_0_1 -11558,2,52.0,0.0,7,111,0.0,0.0,0.0,0,67,0.0,546.5710825446737,0.0,1034.0,371.5906329050814,0.0,31,0,0,0,0,0,0,0,0,3,75.0,7,,5,116178,2,2,0,0,2,,82.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,748.703345620224,0.0,9643.443172598796,0,1,0,1,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10722311331061113,9643.443172598796,1,1,1_0,1_1_0,1_4_0,1_0_0 -11559,2,36.0,0.0,2,111,600.0,0.0,0.0,0,52,0.0,362.31037668681023,829.3045365455583,1070.0,206.439240502823,0.0,10,2,2,1,2,1,2,1,2,0,,7,,2,104820,1,1,0,0,1,,240.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,577.932326263809,600.0,22159.597736336433,0,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.048286075078224744,17045.844412566486,4,2,4_0,4_1_0,4_4_0,4_0_1 -11560,2,55.0,0.0,5,111,800.0,0.0,0.0,0,46,0.0,0.0,1105.7393820607444,1025.0,387.0735759427931,0.0,70,2,2,2,2,2,2,2,1,2,15.0,7,,3,126179,2,3,0,0,2,,120.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,748.703345620224,800.0,23236.62233823964,0,1,0,1,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04411140246976412,23236.62233823964,6,3,6,6_1,6_4,6_0_0 -11561,2,46.0,0.0,5,111,1800.0,0.0,0.0,43,46,0.0,517.5862524097289,2487.913609636675,2360.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,111999,1,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,540.770719361141,1800.0,62209.77131206217,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0379361626031634,27047.726657418338,7,4,7,7_1,7_4,7_0_0 -11562,2,48.0,0.0,7,111,2412.0,0.0,0.0,46,22,0.0,0.0,3333.8042369131445,2412.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,5,102918,2,1,1,0,1,,736.0,,43,2.0,0.0,8.0,5.0,2.8,1,1,433.538322950429,2412.0,117972.62277261904,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020445421516557274,42133.07956164966,9,5,9,9_1,9_4,9_0_0 -11563,2,40.0,0.0,5,112,500.0,0.0,0.0,53,45,4480.754631054002,698.741440753134,691.0871137879653,4245.0,120.42289029331342,0.0,50,2,2,2,1,2,2,2,2,4,75.0,1,,3,122867,2,3,1,0,1,,331.0,,43,2.0,0.0,13.0,5.0,2.4,3,2,470.24026365626,500.0,132909.80715406485,1,1,1,2,300.0,10,0,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03193895236849851,55379.08631419369,10,5,10,10_1,10_0,10_0_0 -11564,1,66.0,210.0,2,112,0.0,0.0,0.0,72,78,0.0,0.0,0.0,393.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112575,2,1,0,0,1,,0.0,420.0,41,0.0,1.0,1.0,2.0,1.5,1,1,1043.05295058404,0.0,14043.426747231366,6,5,2,3,10.0,10,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027984622775739487,9362.284498154244,1,1,1_1,1_0_1,1_0_1,1_0_1 -11565,1,41.0,181.0,9,112,1700.0,0.0,0.0,56,62,0.0,0.0,2349.696186879082,1820.0,206.439240502823,0.0,60,1,2,2,1,1,2,2,2,2,25.0,1,2006.0,6,121592,1,3,1,0,1,,246.0,410.0,43,2.0,0.0,3.0,4.0,2.1,2,2,635.521780525168,1700.0,22022.186340608754,4,1,2,3,60.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.08264392880210686,10486.755400289883,2,1,2_1,2_1_1,2_0_1,2_0_0 -11566,2,42.0,0.0,1,112,1200.0,0.0,0.0,85,67,0.0,0.0,1658.6090730911167,2600.0,2408.4578058662682,0.0,44,0,0,0,0,0,0,0,0,4,90.0,1,,1,131346,2,2,1,0,1,,185.0,,42,1.0,0.0,5.0,5.0,2.4,1,1,443.185745616653,1200.0,48589.36102465418,6,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053509656129883315,20245.56709360591,5,3,5,5_1,5_0,5_1_0 -11567,1,72.0,160.0,9,112,612.0,0.0,0.0,0,77,0.0,0.0,845.8906272764696,612.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,2006.0,6,102127,2,1,0,0,1,,0.0,500.0,11,0.0,2.0,2.0,1.0,1.0,1,1,785.325037652899,612.0,12096.52835861576,0,5,2,3,35.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.050593028169450174,12096.52835861576,2,1,2_1,2_0_1,2_1_1,2_0_0 -11568,1,50.0,323.0,7,112,1130.0,0.0,0.0,0,67,0.0,0.0,1561.8568771608016,1130.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,15.0,2,,5,114436,2,3,0,0,1,,0.0,288.0,32,1.0,0.0,3.0,3.0,1.8,1,1,581.15099717648,1130.0,11128.025446034313,0,1,2,3,45.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10154541841047797,6182.236358907951,1,1,1_1,1_0_1,1_1_1,1_0_0 -11569,2,51.0,0.0,2,112,1300.0,1300.0,0.0,52,85,0.0,0.0,1796.8264958487098,2600.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,2,129940,2,2,2,0,1,,600.0,,42,1.0,0.0,5.0,4.0,2.3,2,2,660.882453622593,1300.0,22698.149889177144,1,6,0,1,120.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11454678080347523,9868.760821381367,2,1,2_0,2_1_0,2_1_0,2_0_1 -11570,2,32.0,0.0,7,112,520.0,0.0,0.0,0,34,0.0,0.0,718.7305983394839,520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,125503,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,4,1006.61016736885,520.0,27617.38599373983,0,1,1,2,37.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018828718985854455,27617.38599373983,7,4,7,7_0,7_1,7_0_0 -11571,2,63.0,0.0,9,112,400.0,300.0,0.0,78,77,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,117390,2,1,0,0,1,,0.0,413.0,41,0.0,0.0,3.0,2.0,1.5,2,2,721.805081758087,400.0,26351.939766161584,5,5,2,3,70.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02656350941189032,17567.95984410772,4,2,4_0,4_0_0,4_1_0,4_0_0 -11572,2,57.0,0.0,2,112,0.0,0.0,0.0,54,46,0.0,0.0,0.0,1140.0,0.0,0.0,50,2,1,2,1,1,2,2,2,3,90.0,2,,2,105991,1,3,0,1,1,,0.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,694.048683906086,0.0,76806.18548973814,1,1,0,1,98.0,10,3,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014842554577226235,38403.09274486907,9,5,9,9_0,9_1,9_0_1 -11573,2,38.0,0.0,1,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,3061.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118984,2,1,1,0,1,,755.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,486.688065699742,0.0,115240.60976929008,1,4,1,2,160.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026561817107077744,54876.480842519086,10,5,10,10_1,10_4,10_1_0 -11574,2,48.0,0.0,1,111,560.0,1880.0,0.0,52,37,0.0,385.0841717928383,774.0175674425211,2812.0,0.0,3409.667453593204,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,100994,2,1,2,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.5,3,2,433.932991403406,560.0,78725.24683592231,1,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035719163966049135,31490.098734368927,8,4,8,8_1,8_4,8_1_0 -11575,0,65.0,0.0,1,111,800.0,0.0,0.0,74,38,3733.962192545002,0.0,1105.7393820607444,3366.0,113.54158227655265,0.0,31,2,2,2,2,2,1,2,2,2,90.0,1,,1,109972,2,1,2,0,2,,960.0,,42,2.0,1.0,5.0,3.0,2.0,3,2,480.155387495992,800.0,59701.08283521513,5,1,0,1,103.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.056380886914408526,29850.541417607565,8,4,8,8_1,8_4,8_1_0 -11576,2,55.0,0.0,1,111,700.0,0.0,0.0,0,75,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,118505,1,3,0,0,1,,119.0,705.0,11,0.0,1.0,2.0,1.0,1.0,2,2,974.358353962101,700.0,25554.31937323872,0,7,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.027392629393724405,25554.31937323872,7,4,7,7_0,7_4,7_1_0 -11577,1,36.0,119.0,1,111,61.0,0.0,0.0,0,54,0.0,0.0,84.31262788213176,121.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,1,103901,2,1,0,0,1,,60.0,438.0,12,1.0,0.0,2.0,1.0,1.0,1,1,803.244279068108,61.0,14185.155034346444,0,1,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.008530044240406489,14185.155034346444,3,2,3_1,3_0_1,3_4_1,3_1_0 -11578,2,36.0,0.0,9,111,0.0,0.0,0.0,33,46,0.0,0.0,0.0,4666.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,122202,2,1,1,0,1,,321.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,880.864556658955,0.0,71284.03834643967,1,1,1,2,115.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0654564487118882,47522.69223095978,10,5,10,10_1,10_4,10_0_0 -11579,2,68.0,0.0,1,111,2500.0,0.0,0.0,77,74,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,111598,2,1,2,0,1,,490.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,577.89006068084,2500.0,49991.05343779977,5,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05000894816330622,33327.36895853318,8,4,8,8_1,8_4,8_1_0 -11580,2,37.0,0.0,2,111,750.0,0.0,0.0,46,65,0.0,0.0,1036.630670681948,750.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,110294,2,2,0,1,1,,0.0,330.0,43,2.0,0.0,4.0,4.0,2.1,5,4,529.507808361704,750.0,49003.04476724507,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015305171414599932,23334.783222497652,6,3,6,6_0,6_4,6_0_1 -11581,2,38.0,0.0,5,111,100.0,200.0,0.0,38,33,0.0,0.0,138.21742275759306,300.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,4,60.0,1,,3,112620,1,1,2,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,474.32051908532,100.0,79328.45194596032,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037817452961815554,33053.52164415013,8,4,8,8_1,8_4,8_0_0 -11582,2,56.0,0.0,1,112,400.0,0.0,0.0,0,37,2688.452778632401,0.0,552.8696910303722,2233.0,56.77079113827632,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130284,2,1,2,0,1,,120.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,683.930954366802,400.0,5291.712672688995,0,4,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.4219805832475966,5291.712672688995,1,1,1_0,1_1_0,1_0_0,1_1_0 -11583,2,84.0,0.0,1,112,300.0,0.0,0.0,0,71,4182.037655650402,0.0,414.65226827277917,3130.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,116097,2,1,1,0,2,,80.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,702.109229697546,300.0,7821.298135360035,0,5,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.40018932226215637,7821.298135360035,1,1,1_0,1_1_0,1_0_0,1_1_0 -11584,2,51.0,0.0,1,112,0.0,0.0,0.0,46,54,0.0,0.0,0.0,1495.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,5,,1,109398,2,1,2,0,2,,0.0,200.0,43,2.0,0.0,4.0,2.0,1.5,4,4,623.906278089035,0.0,41785.307649419665,1,1,2,3,50.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035778125951425495,27856.871766279775,7,4,7,7_1,7_0,7_1_0 -11585,2,76.0,0.0,1,112,3400.0,0.0,0.0,77,75,0.0,0.0,4699.392373758164,3400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,120911,2,2,1,0,1,,600.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,552.849077972803,3400.0,59148.427482957544,5,5,0,1,107.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05748250874428814,39432.28498863836,9,5,9,9_1,9_0,9_1_0 -11586,2,30.0,0.0,6,112,1550.0,0.0,0.0,53,46,0.0,0.0,2142.370052742692,1550.0,0.0,0.0,42,2,2,2,2,1,1,2,2,4,90.0,2,,4,132591,1,3,0,0,1,,0.0,703.0,43,2.0,0.0,2.0,2.0,1.5,2,2,920.62257904806,1550.0,46497.73707449327,1,1,2,3,55.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03333495558110215,30998.491382995515,8,4,8,8_0,8_0,8_0_0 -11587,2,45.0,0.0,2,112,2540.0,0.0,0.0,54,37,0.0,295.0241638735455,3510.7225380428636,2825.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,7.0,1,,2,105872,2,2,3,0,1,,200.0,,43,2.0,0.0,8.0,5.0,3.0,2,2,602.088400753742,2540.0,107096.89005046352,1,1,1,2,160.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026377983512582616,35698.96335015451,9,5,9,9_1,9_0,9_0_1 -11588,2,37.0,0.0,8,111,1265.0,0.0,0.0,0,37,0.0,0.0,1748.4503978835521,1265.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,133394,2,1,1,0,1,,174.0,1095.0,32,1.0,0.0,4.0,3.0,1.6,2,2,621.190062382869,1265.0,58566.878978543114,0,1,2,3,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02159923871756001,36604.299361589445,9,5,9,9_1,9_4,9_0_0 -11589,2,56.0,0.0,1,111,928.0,3882.0,0.0,56,42,0.0,0.0,1282.6576831904636,4810.0,0.0,7040.600561089796,41,0,0,0,0,0,0,0,0,0,,1,,1,109934,2,1,2,0,1,,643.0,,43,3.0,3.0,9.0,3.0,2.0,3,2,505.164460259135,928.0,21420.5995511304,4,4,0,1,195.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2245502040462807,10710.2997755652,2,1,2_0,2_1_0,2_4_0,2_1_0 -11590,2,59.0,0.0,2,111,438.0,2771.0,0.0,0,37,0.0,113.86897553014036,605.3923116782576,3319.0,0.0,5025.632188248281,70,0,0,0,0,0,0,0,0,0,,1,,2,108162,2,1,2,0,2,,250.0,,22,1.0,1.0,5.0,2.0,1.5,1,1,631.818157924884,438.0,208954.78649609457,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01588381896225207,139303.1909973964,10,5,10,10_1,10_4,10_0_1 -11591,2,68.0,0.0,6,111,2172.0,0.0,0.0,77,75,0.0,0.0,3002.0824222949213,2172.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,124477,2,1,2,0,1,,335.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,596.047213357512,2172.0,46770.716261554946,5,5,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04643931446021839,31180.477507703297,8,4,8,8_1,8_4,8_0_0 -11592,2,66.0,0.0,5,111,1082.0,0.0,0.0,0,78,0.0,569.3448776507017,1495.512514237157,1757.0,215.04087552377396,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114354,2,2,2,0,1,,244.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,581.031279978943,1082.0,23825.178314549186,0,5,0,1,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07374551312075858,15883.452209699457,3,2,3_0,3_1_0,3_4_0,3_0_0 -11593,2,31.0,0.0,9,111,1540.0,0.0,0.0,56,37,0.0,0.0,2128.548310466933,1668.0,220.20185653634454,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,113769,2,1,1,0,1,,515.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,493.20796208845,1540.0,63865.49678171165,1,1,1,2,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02611738863789194,26610.62365904652,7,4,7,7_1,7_4,7_0_0 -11594,2,27.0,0.0,5,111,0.0,0.0,0.0,48,38,0.0,0.0,0.0,1951.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,127711,2,2,3,0,1,,262.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,610.856532850605,0.0,60870.33887016121,1,1,1,2,180.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032051735479271086,40580.22591344081,9,5,9,9_1,9_4,9_0_0 -11595,2,30.0,0.0,7,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,933.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,130010,2,1,0,0,1,,0.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,511.785592511685,0.0,21220.70289394714,1,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.043966498407841295,11789.279385526188,2,1,2_0,2_0_0,2_4_0,2_0_0 -11596,2,44.0,0.0,2,111,792.0,1700.0,0.0,77,68,0.0,90.06000791929283,1094.681988240137,2579.0,0.0,3083.2099314406632,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,112135,2,2,2,0,1,,0.0,955.0,42,1.0,3.0,4.0,2.0,1.5,2,2,861.160448331475,792.0,13504.328947234944,5,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19097579821084398,9002.885964823296,1,1,1_0,1_1_0,1_4_0,1_0_1 -11597,2,56.0,0.0,5,111,2400.0,0.0,0.0,0,43,0.0,0.0,3317.2181461822333,2487.0,149.6684493645467,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,3,118724,2,1,2,0,1,,880.0,,32,3.0,1.0,7.0,3.0,2.0,2,2,569.501623345005,2400.0,61651.91303857672,0,1,1,2,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04033938084684962,30825.95651928836,8,4,8,8_1,8_4,8_0_0 -11598,2,51.0,0.0,7,111,2500.0,0.0,0.0,63,46,0.0,51.75862524097289,3455.435568939826,2610.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,4,135.0,1,,5,116880,2,2,2,0,1,,500.0,,43,2.0,3.0,5.0,3.0,1.8,2,2,504.218035846761,2500.0,46288.09132269161,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0563859931446452,25715.606290384225,7,4,7,7_1,7_4,7_0_0 -11599,2,51.0,0.0,6,111,1800.0,0.0,0.0,54,48,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,4,111706,2,1,2,0,1,,710.0,,43,2.0,1.0,7.0,3.0,2.0,2,2,569.501623345005,1800.0,60572.70981886283,1,1,0,1,138.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029716352551879155,30286.354909431415,8,4,8,8_1,8_4,8_0_0 -11600,2,32.0,0.0,2,111,1115.0,0.0,0.0,0,43,0.0,0.0,1541.1242637471626,1115.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,116767,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,600.873309492037,1115.0,30053.669984856566,0,1,1,2,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.037100294258964904,30053.669984856566,8,4,8,8_0,8_4,8_0_1 -11601,2,54.0,0.0,6,111,66.0,76.0,0.0,54,46,0.0,0.0,91.22349902001142,142.0,0.0,137.83762046440611,33,0,0,0,0,0,0,0,0,2,20.0,1,,4,113241,2,2,3,0,1,,615.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,622.646920372965,66.0,83550.74827329464,1,1,0,1,205.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016995658678665303,41775.37413664732,9,5,9,9_1,9_4,9_0_0 -11602,0,83.0,0.0,1,112,150.0,0.0,0.0,0,77,7467.924385090004,0.0,207.32613413638958,5150.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119231,1,1,3,0,2,,150.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,683.930954366802,150.0,18388.820189111608,0,5,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2800614692534445,18388.820189111608,4,2,4_0,4_1_0,4_0_0,4_1_0 -11603,2,53.0,0.0,1,112,343.0,0.0,0.0,0,47,0.0,0.0,474.08576005854417,413.0,120.42289029331342,0.0,70,2,2,2,2,1,2,2,2,2,60.0,1,,1,129616,2,3,4,0,1,,90.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,592.7226131222,343.0,41458.56092313716,0,1,0,1,70.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.009961754359146443,41458.56092313716,9,5,9,9_1,9_0,9_1_0 -11604,2,54.0,0.0,5,112,2007.0,0.0,0.0,46,48,0.0,0.0,2774.0236747448926,2007.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,3,128578,2,2,3,0,1,,220.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,762.927091859437,2007.0,71102.8747062881,4,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028226706842592788,35551.43735314405,9,5,9,9_1,9_0,9_0_0 -11605,2,54.0,0.0,7,112,1694.0,0.0,0.0,52,63,0.0,0.0,2341.4031415136265,1819.0,215.04087552377396,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,113393,2,1,2,0,1,,1338.0,,43,4.0,1.0,4.0,4.0,2.5,3,3,590.802250437505,1694.0,79102.90540704854,1,1,1,2,86.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022995362694199044,31641.16216281942,8,4,8,8_1,8_0,8_0_0 -11606,2,55.0,0.0,2,112,1000.0,1650.0,0.0,37,38,0.0,0.0,1382.1742275759307,2650.0,0.0,2992.5272863982905,42,0,0,0,0,0,0,0,0,2,40.0,1,,2,100882,2,1,3,0,1,,850.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,846.137209892864,1000.0,93835.74774278776,1,1,0,1,140.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028240836394930094,62557.16516185851,10,5,10,10_1,10_2,10_0_1 -11607,2,51.0,0.0,6,112,1034.0,0.0,0.0,37,38,0.0,0.0,1429.1681513135122,1124.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,128945,2,1,2,0,1,,452.0,,43,2.0,0.0,6.0,4.0,2.5,3,3,694.679302258338,1034.0,144086.41979253877,1,1,0,1,148.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007800873958964203,57634.567917015505,10,5,10,10_1,10_2,10_0_0 -11608,2,74.0,0.0,6,112,1100.0,0.0,0.0,0,75,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126711,2,1,1,0,1,,125.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,871.016707805032,1100.0,31892.585189717094,0,5,0,1,100.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034490775628771085,31892.585189717094,8,4,8,8_1,8_2,8_0_0 -11609,2,50.0,0.0,1,112,0.0,0.0,0.0,34,31,0.0,0.0,0.0,1948.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,122696,2,1,2,0,2,,584.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,606.617751105062,0.0,7040.940996277746,1,1,1,2,110.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2766675648936452,2816.3763985110986,1,1,1_0,1_1_0,1_2_0,1_1_0 -11610,2,63.0,0.0,5,112,1200.0,0.0,0.0,43,62,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,90.0,1,,3,116190,2,2,2,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,774.164577126442,1200.0,71645.42761144612,1,1,0,1,95.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016749149806292555,47763.61840763075,10,5,10,10_1,10_2,10_0_0 -11611,2,43.0,0.0,9,112,1000.0,500.0,0.0,45,38,0.0,0.0,1382.1742275759307,1500.0,0.0,906.8264504237244,70,0,0,0,0,0,0,0,0,4,90.0,1,2007.0,6,123451,2,2,3,0,1,,1200.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,618.355428598578,1000.0,79407.35716426678,1,1,1,2,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01888993732529104,34524.9378975073,9,5,9,9_1,9_2,9_0_0 -11612,2,39.0,0.0,1,111,700.0,1200.0,0.0,42,37,0.0,0.0,967.5219593031513,1900.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,4,60.0,1,,1,103789,2,1,2,0,1,,192.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,367.576504862254,700.0,171330.0790550412,1,1,0,1,109.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011089704799526822,71387.5329396005,10,5,10,10_1,10_4,10_1_0 -11613,2,40.0,0.0,2,111,1200.0,1000.0,0.0,85,21,0.0,0.0,1658.6090730911167,2200.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,2,111757,2,1,1,0,1,,372.0,,42,1.0,0.0,6.0,4.0,2.1,3,3,576.164266224258,1200.0,43852.96367798566,6,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05016764696121115,20882.363656183647,5,3,5,5_1,5_4,5_0_1 -11614,2,30.0,0.0,1,111,270.0,248.0,0.0,42,42,0.0,0.0,373.1870414455012,518.0,0.0,449.7859194101673,60,0,0,0,0,0,0,0,0,2,50.0,1,,1,116575,2,1,2,0,1,,15.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,417.206785703008,270.0,48011.62656448323,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010789053341158667,26673.12586915735,7,4,7,7_1,7_4,7_1_0 -11615,1,47.0,240.0,5,111,500.0,500.0,0.0,0,52,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,60,0,0,0,0,0,0,0,0,2,15.0,2,,3,107396,2,1,0,1,1,,0.0,400.0,32,1.0,0.0,4.0,2.0,1.5,4,2,557.583683297727,500.0,17204.631327856037,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05812388425789159,11469.754218570692,2,1,2_1,2_0_1,2_4_1,2_0_0 -11616,2,56.0,0.0,7,111,1100.0,0.0,0.0,0,46,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,75.0,2,,5,104431,2,1,0,1,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,524.445964007541,1100.0,30564.724755441315,0,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03598920025622581,30564.724755441315,8,4,8,8_0,8_4,8_0_0 -11617,2,66.0,0.0,7,111,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,112398,2,1,0,1,1,,0.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,433.443813660759,600.0,37259.96902500388,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016103072968132657,24839.979350002584,7,4,7,7_0,7_4,7_0_0 -11618,1,53.0,105.0,7,111,0.0,0.0,420.0,0,55,0.0,0.0,214.58360063176053,420.0,0.0,480.16322535410524,50,0,0,0,0,0,0,0,0,1,5.0,2,,5,113436,2,1,0,1,1,,0.0,458.0,32,1.0,1.0,3.0,2.0,1.5,2,2,557.583683297727,0.0,18696.830452676477,0,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02246370052202492,12464.55363511765,2,1,2_1,2_0_1,2_4_1,2_0_0 -11619,2,44.0,0.0,6,111,1200.0,360.0,0.0,33,38,0.0,0.0,1658.6090730911167,1560.0,0.0,652.9150443050816,42,0,0,0,0,0,0,0,0,3,65.0,1,,4,127031,2,1,2,0,1,,450.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,2,2,497.870751668496,1200.0,137455.4939605389,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011349128034473828,44340.481922754494,10,5,10,10_1,10_4,10_0_0 -11620,2,59.0,0.0,1,112,1140.0,0.0,0.0,0,75,0.0,13.45724256265295,1575.678619436561,1153.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,121907,2,2,2,0,1,,545.0,,31,0.0,3.0,3.0,2.0,1.5,2,2,750.581504999361,1140.0,16821.637605396827,0,5,1,2,60.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06854267266048385,11214.425070264551,2,1,2_0,2_1_0,2_0_0,2_1_0 -11621,2,40.0,0.0,1,112,0.0,1072.0,0.0,47,38,0.0,103.51725048194578,0.0,2418.0,0.0,1944.2359097084652,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,101498,2,2,1,0,1,,588.0,,43,2.0,0.0,6.0,5.0,2.4,4,4,500.093611232417,0.0,99590.26116370647,1,1,1,2,125.0,10,0,1,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02427948246892627,41495.94215154436,9,5,9,9_1,9_0,9_1_0 -11622,2,44.0,0.0,9,112,600.0,0.0,0.0,52,52,0.0,238.0896761084753,829.3045365455583,830.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,7.0,1,2010.0,6,107291,2,1,1,0,1,,397.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,652.472113912191,600.0,37148.23349090701,1,1,1,2,76.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022342919756955976,24765.48899393801,7,4,7,7_1,7_0,7_0_0 -11623,2,45.0,0.0,7,112,1500.0,0.0,0.0,52,64,0.0,0.0,2073.261341363896,3500.0,3440.6540083803834,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,117806,2,1,2,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,559.296797477177,1500.0,68589.12186873215,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051028499923040295,24496.114953118627,7,4,7,7_1,7_0,7_0_0 -11624,2,62.0,0.0,5,112,900.0,0.0,0.0,78,46,0.0,0.0,1243.9568048183376,1080.0,309.6588607542345,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,105036,2,1,2,0,1,,200.0,,42,2.0,1.0,5.0,3.0,2.0,2,2,762.927091859437,900.0,56924.42606730067,5,1,0,1,170.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018972523301739336,28462.213033650336,8,4,8,8_1,8_0,8_0_0 -11625,2,64.0,0.0,6,112,1952.0,0.0,0.0,75,74,0.0,517.5862524097289,2698.0040922282165,2502.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106987,2,2,3,0,1,,742.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,750.581504999361,1952.0,108208.31690237246,5,5,0,1,200.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023122067430892124,72138.87793491497,10,5,10,10_1,10_0,10_0_0 -11626,2,50.0,0.0,5,112,2100.0,0.0,0.0,46,21,0.0,51.75862524097289,2902.5658779094542,2150.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,3,107271,2,1,2,0,1,,700.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,739.686342842208,2100.0,172627.82945633517,1,1,0,1,130.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012454538800441938,86313.91472816758,10,5,10,10_1,10_0,10_0_0 -11627,2,78.0,0.0,1,112,523.0,0.0,0.0,0,71,0.0,0.0,722.8771210222117,523.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,122216,1,2,4,0,1,,362.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,641.556953643999,523.0,24114.462434305067,0,5,0,1,119.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021688229684771403,24114.462434305067,6,3,6,6_1,6_0,6_1_0 -11628,2,52.0,0.0,1,112,1581.0,0.0,0.0,56,69,0.0,0.0,2185.217453797546,1701.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,121863,2,2,2,0,1,,444.0,,43,3.0,1.0,5.0,4.0,2.5,4,3,606.617751105062,1581.0,33585.609958019384,1,1,0,1,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050646690714451194,13434.243983207754,3,2,3_0,3_1_0,3_0_0,3_1_0 -11629,2,68.0,0.0,1,112,440.0,1045.0,0.0,0,74,0.0,0.0,608.1566601334094,1485.0,0.0,1895.267281385584,31,0,0,0,0,0,0,0,0,0,,1,,1,100719,2,1,1,0,1,,441.0,,11,0.0,2.0,6.0,1.0,1.0,4,3,647.020829712887,440.0,38795.65234180049,0,5,0,1,150.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038277484985088976,38795.65234180049,9,5,9,9_1,9_0,9_1_0 -11630,0,22.0,0.0,1,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1978.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,103633,2,1,1,0,1,,223.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,609.795525836602,0.0,18996.32112132032,0,1,5,0,90.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10412542446337214,18996.32112132032,5,3,5,5_1,5_0,5_1_0 -11631,2,28.0,0.0,6,112,0.0,0.0,0.0,54,67,0.0,0.0,0.0,590.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,111333,1,2,2,0,1,,509.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,762.185091377381,0.0,47568.644459319665,1,1,1,2,107.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012403128293987091,26427.024699622034,7,4,7,7_1,7_0,7_0_0 -11632,1,73.0,140.0,1,112,500.0,0.0,0.0,0,90,0.0,1242.2070057833494,691.0871137879653,1718.0,30.96588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128566,2,2,4,0,2,,100.0,483.0,11,0.0,5.0,3.0,1.0,1.0,1,1,845.759175869849,500.0,12840.73772607746,0,5,2,3,50.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.13379293593942193,12840.73772607746,2,1,2_1,2_1_1,2_0_1,2_1_0 -11633,2,48.0,0.0,1,112,0.0,0.0,0.0,0,11,0.0,0.0,0.0,3430.0,344.06540083803833,0.0,70,0,0,0,0,0,0,0,0,1,2.0,5,,1,111048,1,3,4,0,2,,133.0,,12,1.0,0.0,7.0,1.0,1.0,2,2,584.508838733494,0.0,266212.8054175279,0,1,0,1,120.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012884429036463484,266212.8054175279,10,5,10,10_1,10_0,10_1_0 -11634,2,72.0,0.0,5,112,2017.0,0.0,0.0,75,75,0.0,258.79312620486445,2787.845417020652,2387.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114677,2,2,1,0,1,,403.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,644.495213600472,2017.0,70992.74408843879,5,5,0,1,140.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03362315445965026,47328.496058959194,10,5,10,10_1,10_0,10_0_0 -11636,2,34.0,0.0,2,111,600.0,0.0,0.0,46,48,0.0,0.0,829.3045365455583,600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,,2,119434,2,1,2,0,1,,0.0,650.0,43,2.0,0.0,2.0,2.0,1.5,1,1,688.421603513325,600.0,52832.78343404788,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011356585078448325,35221.85562269859,9,5,9,9_1,9_4,9_0_1 -11637,1,61.0,310.0,2,111,360.0,360.0,0.0,0,77,0.0,0.0,497.582721927335,720.0,0.0,652.9150443050816,20,0,0,0,0,0,0,0,0,0,,2,,2,106851,2,1,0,1,1,,0.0,270.0,21,1.0,6.0,5.0,2.0,1.5,2,2,545.672228537292,360.0,14099.301109834742,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.051066360977125,9399.534073223162,1,1,1_1,1_0_1,1_4_1,1_0_1 -11638,1,40.0,199.0,2,111,420.0,336.0,0.0,0,68,0.0,0.0,580.5131755818909,756.0,0.0,609.3873746847428,71,2,2,2,2,1,2,2,2,3,50.0,2,,2,110071,1,2,0,1,1,,0.0,359.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,1,1,426.384914644795,420.0,28551.824222258172,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.026478168053817183,10981.470854714684,2,1,2_1,2_0_1,2_4_1,2_0_1 -11639,2,54.0,0.0,2,111,296.0,471.0,0.0,0,52,0.0,0.0,409.12357136247545,767.0,0.0,854.2305162991485,20,2,2,2,2,1,2,2,2,0,,2,,2,113115,1,3,0,1,1,,0.0,600.0,22,2.0,0.0,5.0,3.0,2.0,2,2,551.112363120802,296.0,34565.6078046825,0,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.022189686474892445,17282.80390234125,4,2,4_0,4_0_0,4_4_0,4_0_1 -11640,1,51.0,115.0,2,111,700.0,0.0,0.0,85,68,2613.773534781501,0.0,967.5219593031513,2450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,,2,132165,2,1,1,0,1,,800.0,,42,2.0,0.0,6.0,7.0,3.6,2,2,574.38052555557,700.0,64198.66606870268,7,1,1,2,250.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03816278670616169,17832.962796861855,4,2,4_1,4_1_1,4_4_1,4_0_1 -11641,1,35.0,415.0,9,111,900.0,720.0,0.0,56,56,0.0,0.0,1243.9568048183376,1620.0,0.0,1305.830088610163,60,2,1,2,1,2,2,2,2,3,120.0,2,2007.0,6,105600,1,3,0,0,1,,700.0,390.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,584.635044357091,900.0,18410.925135389545,1,7,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08799123281893262,6818.861161255388,1,1,1_1,1_0_1,1_4_1,1_0_0 -11642,2,75.0,0.0,2,111,0.0,0.0,0.0,78,74,2240.377315527001,0.0,0.0,2254.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,1,,2,129394,1,2,3,0,2,,900.0,,41,0.0,3.0,3.0,2.0,1.5,3,2,591.604087025609,0.0,35214.03027484107,5,5,0,1,75.0,10,8,1,1,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06400857789942856,23476.020183227378,6,3,6,6_1,6_4,6_0_1 -11643,2,55.0,0.0,2,111,2000.0,0.0,0.0,46,42,0.0,41.40690019277831,2764.3484551518613,2040.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,131352,1,1,1,0,1,,2000.0,,43,2.0,1.0,9.0,3.0,2.0,2,2,480.778989183655,2000.0,93812.7137816453,1,1,1,2,143.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021745453444063263,46906.35689082265,10,5,10,10_1,10_4,10_0_1 -11644,2,74.0,0.0,2,111,700.0,200.0,0.0,77,77,0.0,0.0,967.5219593031513,900.0,0.0,362.73058016948977,42,2,2,2,1,2,2,2,2,0,,2,,2,108773,2,2,0,1,1,,463.0,495.0,41,0.0,2.0,5.0,2.0,1.5,3,3,545.672228537292,700.0,37417.207480607685,5,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02405310445645751,24944.80498707179,7,4,7,7_0,7_4,7_0_1 -11645,2,40.0,0.0,9,111,2040.0,0.0,0.0,37,37,0.0,0.0,2819.635424254898,2040.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,180.0,1,2008.0,6,127274,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,3,3,474.848171457273,2040.0,137951.06194764984,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014787852816777492,47569.33170608616,10,5,10,10_1,10_4,10_0_0 -11646,2,42.0,0.0,1,111,0.0,0.0,0.0,42,33,0.0,0.0,0.0,4377.0,0.0,0.0,71,1,2,2,2,1,2,2,2,3,80.0,1,,1,129608,2,1,1,0,1,,999.0,,43,2.0,0.0,8.0,5.0,2.8,1,1,347.13304923923,0.0,73724.86273285376,1,1,1,2,160.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.059369388259972886,26330.308118876343,7,4,7,7_1,7_4,7_1_0 -11647,2,62.0,0.0,5,111,1200.0,0.0,0.0,0,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100522,2,1,1,0,1,,150.0,,11,0.0,1.0,6.0,1.0,1.0,4,3,566.691832181386,1200.0,18209.142423463658,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06590096184066979,18209.142423463658,4,2,4_0,4_1_0,4_4_0,4_0_0 -11648,2,46.0,0.0,6,111,2700.0,0.0,0.0,46,48,0.0,181.15518834340511,3731.8704144550125,2875.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,75.0,1,,4,117676,2,1,3,0,1,,510.0,,43,3.0,0.0,7.0,4.0,2.5,3,3,463.194493442473,2700.0,83533.3309012215,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03441739924629247,33413.3323604886,8,4,8,8_1,8_4,8_0_0 -11649,2,61.0,0.0,1,111,800.0,1500.0,0.0,54,34,0.0,155.27587572291867,1105.7393820607444,2450.0,0.0,2720.4793512711735,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,107830,2,2,3,0,1,,500.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,387.657820506714,800.0,132016.86799893732,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018558234543329125,88011.24533262488,10,5,10,10_1,10_4,10_1_0 -11650,2,68.0,0.0,6,111,292.0,900.0,0.0,77,78,0.0,0.0,403.5948744521717,1192.0,0.0,1632.287610762704,60,0,0,0,0,0,0,0,0,0,,1,,4,114981,2,2,2,0,1,,320.0,504.0,41,0.0,1.0,3.0,2.0,1.5,2,2,576.79795479045,292.0,34874.0360747922,5,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03418015618965327,23249.3573831948,6,3,6,6_1,6_4,6_0_0 -11651,2,86.0,0.0,2,111,400.0,700.0,0.0,0,78,0.0,0.0,552.8696910303722,1100.0,0.0,1269.5570305932142,60,0,0,0,0,0,0,0,0,0,,1,,2,128402,2,1,2,0,1,,160.0,,21,1.0,2.0,3.0,2.0,1.5,2,2,591.604087025609,400.0,83971.88838173187,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013099622042551393,55981.25892115458,10,5,10,10_1,10_4,10_0_1 -11652,2,53.0,0.0,9,111,500.0,0.0,0.0,0,45,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,2004.0,6,115517,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,557.110254989139,500.0,23164.001949918496,0,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021585216625392284,23164.001949918496,6,3,6,6_0,6_4,6_0_0 -11653,2,70.0,0.0,1,111,1000.0,2000.0,0.0,74,74,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,10,2,2,2,1,2,2,2,2,0,,1,,1,115869,2,1,2,0,1,,600.0,,41,0.0,1.0,11.0,2.0,1.5,1,1,605.788309152949,1000.0,73372.2837179875,5,5,0,1,320.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04088737392352063,48914.85581199167,10,5,10,10_1,10_4,10_1_0 -11654,2,57.0,0.0,2,111,310.0,84.0,0.0,0,37,0.0,1552.7587572291866,428.47401054853844,1894.0,0.0,152.3468436711857,71,0,0,0,0,0,0,0,0,0,,2,,2,110593,2,3,0,1,1,,400.0,597.0,22,2.0,2.0,4.0,2.0,1.5,2,2,545.672228537292,310.0,39910.77362594509,0,4,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04745585785309743,26607.182417296728,7,4,7,7_0,7_4,7_0_1 -11655,2,49.0,0.0,7,111,1140.0,0.0,0.0,21,38,0.0,600.4000527952855,1575.678619436561,1720.0,0.0,0.0,10,2,2,2,2,2,2,2,1,2,60.0,1,,5,129358,1,2,3,0,1,,808.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,399.76581081466,1140.0,113234.29037173296,1,1,0,1,138.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.015189745035302214,45293.71614869319,10,5,10,10_1,10_4,10_0_0 -11656,2,45.0,0.0,5,111,259.0,259.0,0.0,54,64,0.0,0.0,357.983124942166,518.0,0.0,469.73610131948925,10,0,0,0,0,0,0,0,0,3,30.0,2,,3,119605,2,2,0,1,1,,0.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,466.143889318432,259.0,57889.03836821717,1,1,1,2,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008948153477781688,25169.14711661616,7,4,7,7_0,7_4,7_0_0 -11657,2,34.0,0.0,2,111,0.0,0.0,0.0,34,38,0.0,0.0,0.0,1381.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,1,,2,121951,2,1,1,0,1,,451.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,593.231186250301,0.0,74219.40746209111,1,1,1,2,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018606993065868525,35342.57498194815,9,5,9,9_1,9_4,9_0_1 -11658,2,30.0,0.0,9,111,1500.0,0.0,0.0,46,46,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,2,2006.0,6,105671,2,2,0,0,1,,0.0,900.0,43,2.0,0.0,4.0,2.0,1.5,1,1,857.500353612262,1500.0,25716.27646626615,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05832881762519763,17144.1843108441,4,2,4_0,4_0_0,4_4_0,4_0_0 -11659,2,38.0,0.0,2,111,240.0,0.0,0.0,0,46,0.0,0.0,331.72181461822333,240.0,0.0,0.0,20,2,1,2,2,1,2,2,2,3,30.0,2,,2,128301,2,1,0,1,1,272.0,0.0,500.0,12,1.0,1.0,1.0,1.0,1.0,3,2,730.591806021251,240.0,22944.073777723617,0,1,3,4,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01046021741060717,22944.073777723617,6,3,6,6_0,6_4,6_0_1 -11660,2,34.0,0.0,5,111,300.0,550.0,0.0,34,34,0.0,0.0,414.65226827277917,850.0,0.0,997.5090954660969,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,124165,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,527.585603485482,300.0,54520.36462594818,1,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015590504682638435,36346.90975063212,9,5,9,9_0,9_4,9_0_0 -11661,2,81.0,0.0,1,111,375.0,2600.0,0.0,0,74,0.0,0.0,518.315335340974,2975.0,0.0,4715.497542203367,50,0,0,0,0,0,0,0,0,0,,1,,1,120495,2,1,2,0,1,,800.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,502.672093989354,375.0,38347.597843945405,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07757982682791993,38347.597843945405,9,5,9,9_1,9_4,9_1_0 -11662,2,49.0,0.0,7,112,411.0,739.0,0.0,0,52,0.0,144.92415067472407,568.0736075337074,1290.0,0.0,1340.2894937262647,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,107137,2,2,3,0,1,,135.0,,32,1.0,0.0,6.0,3.0,2.0,2,2,569.640922679201,411.0,37807.66976001537,0,1,1,2,120.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034120061040214596,18903.834880007686,5,3,5,5_1,5_1,5_0_0 -11663,2,39.0,0.0,7,112,0.0,0.0,0.0,0,54,0.0,0.0,0.0,241.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,123096,2,2,0,1,1,600.0,0.0,772.0,12,1.0,0.0,2.0,1.0,1.0,2,2,972.999293629549,0.0,33576.16797367121,0,1,2,3,50.0,10,3,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007177710100479019,33576.16797367121,9,5,9,9_0,9_1,9_0_0 -11664,2,73.0,0.0,6,112,682.0,2300.0,0.0,74,72,0.0,0.0,942.6428232067847,2982.0,0.0,4171.401671949133,70,0,0,0,0,0,0,0,0,0,,1,,4,115684,2,1,2,0,1,,962.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,806.562953352685,682.0,129282.67214637093,5,5,0,1,178.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023065736115230096,86188.44809758062,10,5,10,10_1,10_1,10_0_0 -11665,2,56.0,0.0,7,112,3000.0,0.0,0.0,37,23,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,110405,2,1,2,0,1,,800.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,737.719719209647,3000.0,68874.26507400408,1,1,0,1,100.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04355763356279094,45916.17671600272,10,5,10,10_1,10_1,10_0_0 -11666,2,72.0,0.0,9,112,1300.0,0.0,0.0,0,77,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,2005.0,6,102673,2,2,0,0,1,,300.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,827.070787676459,1300.0,22391.283997944898,0,5,0,1,60.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.05805830519229338,22391.283997944898,6,3,6,6_0,6_1,6_0_0 -11667,2,80.0,0.0,9,112,1000.0,0.0,0.0,77,74,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2005.0,6,116733,2,1,0,0,1,,400.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,713.828966211403,1000.0,41505.383650842545,5,5,0,1,89.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024093260007240058,27670.255767228362,7,4,7,7_0,7_1,7_0_0 -11668,2,43.0,0.0,1,111,1400.0,0.0,0.0,34,35,7467.924385090004,0.0,1935.0439186063027,6400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,120.0,1,,1,102649,2,1,1,0,1,,2000.0,,43,2.0,0.0,12.0,6.0,3.0999999999999996,3,3,513.607265192031,1400.0,152806.3347928511,1,1,1,2,360.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041883080362316354,49292.366062210036,10,5,10,10_1,10_4,10_1_0 -11669,2,55.0,0.0,2,111,590.0,1800.0,0.0,85,53,0.0,0.0,815.482794269799,2390.0,0.0,3264.575221525408,31,0,0,0,0,0,0,0,0,1,10.0,1,,2,113890,2,1,1,0,1,,708.0,,42,2.0,1.0,5.0,3.0,2.0,2,2,717.365639670733,590.0,57665.20568147424,6,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041446136743215005,28832.60284073712,8,4,8,8_1,8_4,8_0_1 -11670,2,24.0,0.0,9,111,0.0,0.0,0.0,55,47,0.0,0.0,0.0,640.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,2006.0,6,115921,2,1,0,0,1,,553.0,698.0,43,2.0,0.0,2.0,2.0,1.5,2,2,962.265698023308,0.0,32477.11109927691,1,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01970618624432545,21651.40739951794,6,3,6,6_0,6_4,6_0_0 -11671,1,30.0,420.0,7,111,180.0,696.0,0.0,0,85,0.0,0.0,248.7913609636675,876.0,0.0,1262.3024189898244,70,0,0,0,0,0,0,0,0,0,,2,,5,129779,2,2,0,1,1,624.0,0.0,464.0,31,0.0,0.0,3.0,2.0,1.3,2,2,589.454208624199,180.0,9344.68982089145,0,6,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09374307941624463,7188.222939147269,1,1,1_1,1_0_1,1_4_1,1_0_0 -11672,2,47.0,0.0,7,111,450.0,2200.0,0.0,77,46,0.0,0.0,621.9784024091688,2650.0,0.0,3990.0363818643877,71,2,1,2,2,1,1,2,2,2,90.0,2,,5,133521,1,1,0,1,1,1020.0,0.0,654.0,42,1.0,0.0,4.0,4.0,2.1,1,1,591.075395000152,450.0,48306.38189565672,7,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.05485817600092845,23003.03899793177,6,3,6,6_0,6_4,6_0_0 -11673,0,41.0,0.0,2,111,0.0,0.0,0.0,34,37,0.0,0.0,0.0,2939.0,0.0,0.0,60,1,2,2,2,1,2,2,2,2,30.0,2,,2,115658,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,835.17447436668,0.0,86580.0,1,1,5,0,98.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03394548394548395,57720.0,10,5,10,10_0,10_4,10_0_1 -11674,2,74.0,0.0,7,111,200.0,0.0,0.0,0,75,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,101754,1,3,0,1,1,48.0,0.0,448.0,21,1.0,2.0,2.0,2.0,1.5,2,2,495.617856269783,200.0,34913.83395501997,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0057283883591147024,23275.889303346645,6,3,6,6_0,6_4,6_0_0 -11675,2,42.0,0.0,5,111,310.0,1120.0,0.0,22,34,0.0,0.0,428.47401054853844,1430.0,0.0,2031.2912489491428,43,0,0,0,0,0,0,0,0,2,25.0,1,,3,119339,2,1,1,0,1,,336.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,608.527497746567,310.0,32138.638442839234,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04449472875284847,15304.113544209158,3,2,3_0,3_1_0,3_4_0,3_0_0 -11676,2,70.0,0.0,6,111,1200.0,0.0,0.0,78,75,0.0,0.0,1658.6090730911167,1550.0,602.1144514665671,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,114628,2,2,2,0,1,,600.0,,41,0.0,6.0,8.0,2.0,1.5,3,3,562.18669483539,1200.0,27548.72190738366,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056263953195758463,18365.81460492244,4,2,4_0,4_1_0,4_4_0,4_0_0 -11677,2,56.0,0.0,6,111,240.0,1400.0,0.0,0,54,0.0,41.40690019277831,331.72181461822333,1680.0,0.0,2539.1140611864284,50,2,2,2,2,1,2,2,2,2,15.0,1,,4,110314,2,1,2,0,1,,240.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,721.819044063253,240.0,27435.81648586221,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06123382553115235,27435.81648586221,7,4,7,7_1,7_4,7_0_0 -11678,2,33.0,0.0,6,111,2000.0,0.0,0.0,68,37,0.0,0.0,2764.3484551518613,2090.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,131653,2,1,2,0,1,,2000.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,547.003698411194,2000.0,37154.21063871849,1,4,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05625203615070229,20641.22813262138,5,3,5,5_1,5_4,5_0_0 -11679,2,62.0,0.0,2,111,595.0,1429.0,0.0,35,33,0.0,0.0,822.3936654076787,2024.0,0.0,2591.7099953110046,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,114273,2,3,4,0,1,,470.0,827.0,43,2.0,2.0,4.0,3.0,2.0,2,2,774.662004599128,595.0,87639.41225956619,1,1,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02309463228718849,43819.706129783095,10,5,10,10_1,10_4,10_0_1 -11680,2,69.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,521.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102227,2,1,2,0,1,,123.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1017.76587312142,0.0,68767.86182860665,0,5,0,1,94.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007576213454164281,68767.86182860665,10,5,10,10_1,10_4,10_1_0 -11681,2,66.0,0.0,2,111,800.0,750.0,0.0,75,74,0.0,0.0,1105.7393820607444,1550.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,0,,1,,2,130955,2,1,2,0,1,,1200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,656.857434033848,800.0,53903.38297928656,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028755152540159087,35935.5886528577,9,5,9,9_1,9_4,9_0_1 -11682,2,46.0,0.0,2,111,246.0,1050.0,0.0,0,38,0.0,0.0,340.0148599836789,1296.0,0.0,1904.3355458898213,70,0,0,0,0,0,0,0,0,4,80.0,1,,2,120481,2,2,2,0,1,,380.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,640.932890251651,246.0,25621.13075628986,0,1,1,2,113.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05058324756731662,19708.562120222967,5,3,5,5_1,5_4,5_0_1 -11683,2,42.0,0.0,2,111,450.0,1200.0,0.0,37,33,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,4,60.0,1,,2,126300,2,1,1,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.3,4,4,589.990163057427,450.0,76374.50061888943,4,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021604069246011035,33206.30461690845,8,4,8,8_1,8_4,8_0_1 -11684,2,71.0,0.0,2,111,439.0,1592.0,0.0,77,78,0.0,51.75862524097289,606.7744859058336,2081.0,0.0,2887.3354181491386,33,0,0,0,0,0,0,0,0,0,,1,,2,119901,2,1,2,0,2,,579.0,,41,0.0,1.0,5.0,3.0,2.0,2,2,647.322735656306,439.0,63307.10008862456,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03287151041647425,31653.55004431228,8,4,8,8_1,8_4,8_0_1 -11685,2,59.0,0.0,7,111,1529.0,0.0,0.0,48,37,0.0,414.0690019277831,2113.3443939635977,1989.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,80.0,1,,5,129230,2,1,1,0,1,,360.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,495.910603997957,1529.0,31555.300610116916,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06303219939417432,15777.650305058458,3,2,3_0,3_1_0,3_4_0,3_0_0 -11686,2,48.0,0.0,5,111,0.0,0.0,0.0,48,33,0.0,0.0,0.0,2644.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,80.0,1,,3,123871,2,1,2,0,1,,531.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,640.932890251651,0.0,67628.45471089908,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03909596945993636,45085.63647393272,10,5,10,10_1,10_4,10_0_0 -11687,2,44.0,0.0,5,111,300.0,850.0,0.0,52,48,0.0,621.1035028916747,414.65226827277917,1750.0,0.0,1541.6049657203316,71,0,0,0,0,0,0,0,0,4,75.0,1,,3,131393,1,2,1,0,1,,240.0,,43,2.0,0.0,7.0,3.0,1.8,4,3,548.582376177842,300.0,56421.159256782965,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031016732428971044,31345.088475990535,8,4,8,8_1,8_4,8_0_0 -11688,1,43.0,80.0,5,112,1950.0,0.0,0.0,62,52,0.0,0.0,2695.2397437730647,2090.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,124974,2,3,3,0,1,,520.0,800.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,560.060316109541,1950.0,14760.93629482402,1,1,2,3,90.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1415899342870863,5677.283190316932,1,1,1_1,1_1_1,1_2_1,1_0_0 -11689,2,39.0,0.0,2,112,0.0,0.0,0.0,52,48,0.0,0.0,0.0,6068.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,47.0,1,,2,103078,2,2,2,0,1,,278.0,,43,2.0,0.0,5.0,4.0,2.5,3,2,809.954511185678,0.0,56775.52519164136,1,1,1,2,120.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10687703864504888,22710.210076656545,6,3,6,6_1,6_2,6_0_1 -11690,2,46.0,0.0,5,112,306.0,100.0,0.0,0,52,0.0,0.0,422.9453136382348,406.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,1,5.0,2,,3,120964,2,1,0,1,1,740.0,0.0,314.0,32,2.0,0.0,3.0,3.0,2.0,2,2,798.247510699096,306.0,33479.33452491688,0,1,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012126883815382768,16739.66726245844,4,2,4_0,4_0_0,4_2_0,4_0_0 -11691,2,50.0,0.0,2,112,0.0,0.0,0.0,85,64,0.0,0.0,0.0,264.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,2,,2,121720,2,2,0,1,1,,0.0,400.0,42,1.0,0.0,4.0,5.0,2.4,1,1,649.755902313585,0.0,13323.970076600015,6,1,2,3,65.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019813914207421204,5551.65419858334,1,1,1_0,1_0_0,1_2_0,1_0_1 -11692,1,49.0,162.0,2,112,350.0,450.0,0.0,0,68,0.0,0.0,483.76097965157567,800.0,0.0,816.143805381352,71,2,2,2,2,2,2,2,1,0,,2,,2,113067,2,1,0,1,1,750.0,120.0,273.0,22,1.0,0.0,3.0,2.0,1.5,3,2,766.942266070639,350.0,20353.595457069307,0,1,2,3,50.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.039305094851049535,13569.063638046204,3,2,3_1,3_0_1,3_2_1,3_0_1 -11693,2,40.0,0.0,2,112,400.0,0.0,0.0,0,64,0.0,0.0,552.8696910303722,400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,101462,2,1,0,1,1,,0.0,284.0,12,1.0,1.0,3.0,1.0,1.0,2,2,863.730886285856,400.0,19085.294974461092,0,1,2,3,55.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020958544289478277,19085.294974461092,5,3,5,5_0,5_2,5_0_1 -11694,2,53.0,0.0,2,112,1200.0,2000.0,0.0,52,47,0.0,207.03450096389156,1658.6090730911167,3400.0,0.0,3627.3058016948976,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,125334,2,1,1,0,1,,700.0,,43,3.0,0.0,5.0,3.0,2.0,3,1,772.877655315007,1200.0,19035.0,1,1,1,2,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17861833464670343,9517.5,1,1,1_0,1_1_0,1_2_0,1_0_1 -11695,2,52.0,0.0,7,112,300.0,780.0,0.0,0,56,0.0,0.0,414.65226827277917,1080.0,0.0,1414.6492626610102,12,0,0,0,0,0,0,0,0,0,,2,,5,105532,2,2,0,0,1,,180.0,331.0,12,1.0,0.0,3.0,1.0,1.0,2,2,845.838259730347,300.0,16577.339709490483,0,1,2,3,71.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06514917465205246,16577.339709490483,4,2,4_0,4_0_0,4_2_0,4_0_0 -11696,2,66.0,0.0,2,112,1000.0,2500.0,0.0,74,74,0.0,0.0,1382.1742275759307,3500.0,0.0,4534.132252118622,43,0,0,0,0,0,0,0,0,0,,1,,2,107965,2,1,2,0,1,,200.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,832.137394786026,1000.0,56172.35300458799,5,5,0,1,110.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062308231946668326,37448.23533639199,9,5,9,9_1,9_2,9_0_1 -11697,2,76.0,0.0,2,112,900.0,1500.0,0.0,77,78,0.0,0.0,1243.9568048183376,2400.0,0.0,2720.4793512711735,42,0,0,0,0,0,0,0,0,0,,1,,2,108836,2,2,2,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,628.350131544466,900.0,28949.80042964539,5,5,0,1,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08290212590005747,19299.866953096927,5,3,5,5_1,5_2,5_0_1 -11698,2,44.0,0.0,1,112,700.0,0.0,0.0,0,52,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,101231,2,2,0,0,1,,0.0,468.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1087.56406735685,700.0,21022.31088768282,0,1,2,3,35.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03329795681073944,21022.31088768282,5,3,5,5_0,5_2,5_1_0 -11699,2,89.0,0.0,2,112,1200.0,0.0,0.0,0,75,2987.1697540360015,0.0,1658.6090730911167,3390.0,326.8621307961364,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116435,2,1,2,0,1,,600.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,836.061170459072,1200.0,27261.07835517875,0,5,0,1,90.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12435311456987931,18174.052236785832,4,2,4_0,4_1_0,4_2_0,4_0_1 -11700,2,52.0,0.0,9,112,1200.0,0.0,0.0,56,56,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,103756,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.8,6,3,550.075608973817,1200.0,43226.09450855044,1,1,0,1,80.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027761009030381662,15437.890895910874,3,2,3_0,3_1_0,3_2_0,3_0_0 -11701,2,25.0,0.0,2,112,0.0,0.0,0.0,55,53,0.0,0.0,0.0,1599.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,55.0,1,,2,113804,2,1,2,0,1,,165.0,950.0,43,2.0,0.0,6.0,2.0,1.5,3,2,749.373047014414,0.0,39916.58117901211,1,1,2,3,110.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040058540906322514,26611.054119341406,7,4,7,7_1,7_2,7_0_1 -11702,2,59.0,0.0,6,112,900.0,0.0,0.0,77,69,0.0,155.27587572291867,1243.9568048183376,1110.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,109349,2,1,2,0,1,,1400.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,631.221179991323,900.0,35487.50146918036,5,1,0,1,92.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03127861793719109,23658.334312786905,6,3,6,6_1,6_2,6_0_0 -11703,2,38.0,0.0,1,112,650.0,1490.0,0.0,85,54,0.0,414.0690019277831,898.4132479243549,2820.0,481.69156117325366,2702.342822262699,70,0,0,0,0,0,0,0,0,0,,1,,1,110508,2,1,1,0,1,,500.0,,42,1.0,0.0,7.0,5.0,2.4,2,2,371.201464070078,650.0,30461.415288552587,6,4,0,1,130.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09257613191268094,12692.256370230245,2,1,2_0,2_1_0,2_2_0,2_1_0 -11704,2,50.0,0.0,7,112,1000.0,0.0,0.0,0,54,0.0,326.0793390181292,1382.1742275759307,1519.0,350.9467088547991,0.0,50,2,2,2,1,2,2,2,2,2,45.0,1,,5,109603,2,1,2,0,1,,270.0,,32,1.0,0.0,4.0,3.0,1.8,4,4,526.557824657026,1000.0,30167.038713618418,0,1,0,1,90.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05035297015461687,16759.465952010232,4,2,4_0,4_1_0,4_2_0,4_0_0 -11705,2,94.0,0.0,2,112,1769.0,0.0,0.0,0,74,0.0,0.0,2445.0662085818212,1769.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106100,2,1,2,0,2,,310.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,748.636350740996,1769.0,23133.16056785014,0,5,0,1,90.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07647031173330071,23133.16056785014,6,3,6,6_1,6_2,6_0_1 -11706,2,55.0,0.0,1,112,242.8,0.0,0.0,69,13,5376.905557264802,0.0,335.59190245543596,3843.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,125208,2,1,2,0,1,,139.0,,43,2.0,3.0,10.0,2.0,1.5,5,5,552.849077972803,242.8,266556.0126685506,1,1,0,1,120.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014417232466553223,177704.0084457004,10,5,10,10_1,10_0,10_1_0 -11707,2,67.0,0.0,1,112,1300.0,0.0,0.0,85,74,4480.754631054002,1708.0346329521053,1796.8264958487098,6030.0,137.62616033521533,0.0,10,2,2,1,2,1,2,2,2,0,,1,,1,120341,2,2,2,0,1,,368.0,,41,1.0,4.0,6.0,5.0,3.0,2,2,678.739612059935,1300.0,74109.53323992071,6,5,0,1,200.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08136605017438983,24703.17774664024,7,4,7,7_1,7_0,7_1_0 -11708,2,76.0,0.0,1,112,0.0,0.0,0.0,71,71,0.0,0.0,0.0,96.0,165.1513924022584,0.0,60,0,0,0,0,0,0,0,0,0,,5,,1,108106,2,2,4,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,512.241143289204,0.0,44874.44454355436,5,5,0,1,100.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00213930224599937,29916.296362369572,8,4,8,8_1,8_0,8_1_0 -11709,2,34.0,0.0,1,112,1000.0,1675.0,0.0,52,65,0.0,0.0,1382.1742275759307,2705.0,51.60981012570575,3037.868608919477,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,112707,2,2,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,4,2,576.586051192881,1000.0,43013.559794780434,1,1,1,2,90.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06288714565605992,20482.647521324016,5,3,5,5_1,5_0,5_1_0 -11710,2,44.0,0.0,1,112,2233.0,0.0,0.0,21,37,0.0,517.5862524097289,3086.395050177053,2733.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,1,114186,2,1,1,0,1,,630.0,,43,2.0,1.0,6.0,4.0,2.3,4,3,527.372225587722,2233.0,74810.02801193575,1,1,1,2,200.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03653253544516728,32526.09913562424,8,4,8,8_1,8_0,8_1_0 -11711,2,31.0,0.0,1,112,2000.0,0.0,0.0,47,54,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,109783,2,1,4,0,1,,500.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,561.942356007454,2000.0,49779.4623375463,1,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040177211767341535,27655.256854192387,7,4,7,7_1,7_0,7_1_0 -11712,2,33.0,0.0,1,112,700.0,2300.0,0.0,56,63,0.0,0.0,967.5219593031513,3180.0,309.6588607542345,4171.401671949133,50,0,0,0,0,0,0,0,0,0,,1,,1,124432,1,2,1,0,2,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,591.911194650024,700.0,40344.461542970595,1,1,1,2,85.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07882122795499463,19211.64835379552,5,3,5,5_1,5_0,5_1_0 -11713,1,41.0,236.0,5,111,260.0,785.0,0.0,85,63,0.0,0.0,359.36529916974195,1045.0,0.0,1423.7175271652475,31,2,2,2,2,1,2,2,2,0,,2,,3,107464,2,1,0,1,1,,0.0,199.0,42,1.0,0.0,3.0,4.0,2.1,2,2,615.317934516408,260.0,6010.437010076244,6,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.17386422954738592,2862.112861941069,1,1,1_1,1_0_1,1_4_1,1_0_0 -11714,2,27.0,0.0,5,111,250.0,800.0,0.0,55,65,0.0,0.0,345.54355689398267,1050.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,107810,2,1,0,0,1,,0.0,168.0,43,2.0,0.0,2.0,4.0,2.1,2,2,772.97119570881,250.0,35961.3726208968,4,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029197995612377025,17124.463152808,4,2,4_0,4_0_0,4_4_0,4_0_0 -11715,2,60.0,0.0,6,111,608.0,1785.0,0.0,78,37,0.0,362.31037668681023,840.3619303661658,2743.0,0.0,3237.3704280126963,50,0,0,0,0,0,0,0,0,3,75.0,1,,4,118401,2,1,3,0,1,,641.0,,42,1.0,1.0,7.0,2.0,1.5,1,1,621.043852978147,608.0,64045.78794071459,5,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04282873375746613,42697.19196047639,9,5,9,9_1,9_4,9_0_0 -11716,2,51.0,0.0,1,111,2280.0,2800.0,0.0,55,21,0.0,0.0,3151.357238873122,5080.0,0.0,5078.228122372857,71,0,0,0,0,0,0,0,0,0,,1,,1,132426,1,2,1,0,2,,78.0,1600.0,43,2.0,2.0,3.0,2.0,1.5,2,2,565.336171206868,2280.0,33538.64278698839,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1514670713500318,22359.095191325596,6,3,6,6_1,6_4,6_1_0 -11717,2,30.0,0.0,5,111,3000.0,0.0,0.0,54,43,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,50,2,2,2,2,1,2,1,2,0,,2,,3,104645,1,3,0,0,1,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,733.835174547312,3000.0,74604.46543131258,1,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.040212070184485985,41446.9252396181,9,5,9,9_0,9_4,9_0_0 -11718,1,39.0,455.0,5,111,1400.0,0.0,0.0,52,64,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,105267,2,1,0,0,1,,0.0,552.0,43,2.0,0.0,4.0,5.0,2.4,3,3,630.864870127365,1400.0,28204.98268283214,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.049636619732872755,11752.076117846726,2,1,2_1,2_0_1,2_4_1,2_0_0 -11719,2,76.0,0.0,2,111,262.0,0.0,0.0,77,78,4382.178029170814,0.0,362.1296476248938,3336.0,240.84578058662683,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,103720,2,1,2,0,2,,123.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,688.828038262431,262.0,33221.61190579292,5,5,0,1,66.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10041656044444656,22147.74127052861,6,3,6,6_1,6_4,6_0_1 -11720,1,76.0,213.0,5,111,130.0,480.0,0.0,0,77,0.0,0.0,179.68264958487097,610.0,0.0,870.5533924067755,20,0,0,0,0,0,0,0,0,0,,2,,3,129201,2,2,0,1,1,396.0,0.0,227.0,11,0.0,0.0,1.0,1.0,1.0,3,3,783.161552456164,130.0,10040.395555555555,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0607545785048752,10040.395555555555,2,1,2_1,2_0_1,2_4_1,2_0_0 -11721,1,78.0,197.0,2,111,660.0,110.0,0.0,78,78,0.0,0.0,912.2349902001142,1040.0,0.0,199.50181909321938,10,2,1,2,1,2,2,2,2,0,,2,,2,103495,2,1,0,1,1,744.0,0.0,435.0,41,0.0,5.0,3.0,2.0,1.5,3,2,169.097026371064,660.0,25514.863095736964,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.040760555763035375,17009.90873049131,4,2,4_1,4_0_1,4_4_1,4_0_1 -11722,1,53.0,420.0,2,111,300.0,180.0,0.0,68,56,0.0,0.0,414.65226827277917,480.0,0.0,326.4575221525408,20,2,1,2,1,1,2,2,2,3,90.0,2,,2,110140,2,1,0,1,1,,0.0,400.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,181.938337406158,300.0,30317.512330926416,1,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.015832433570427202,11228.708270713489,2,1,2_1,2_0_1,2_4_1,2_0_1 -11723,2,51.0,0.0,2,111,270.0,68.0,0.0,0,65,0.0,0.0,373.1870414455012,338.0,0.0,123.32839725762652,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,123061,2,2,0,1,2,780.0,0.0,351.0,22,2.0,0.0,3.0,3.0,2.0,2,2,166.642476784732,270.0,44917.52770188495,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007524902132710566,22458.763850942476,6,3,6,6_0,6_4,6_0_1 -11724,2,61.0,0.0,2,111,180.0,75.0,0.0,0,77,0.0,0.0,248.7913609636675,255.0,0.0,136.02396756355867,71,2,1,2,1,2,2,2,2,0,,2,,2,126620,2,1,0,1,1,749.0,0.0,340.0,11,0.0,1.0,3.0,1.0,1.0,1,1,201.130024797645,180.0,16771.55487137285,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015204314802991595,16771.55487137285,4,2,4_0,4_0_0,4_4_0,4_0_1 -11725,1,63.0,115.0,2,111,432.0,1080.0,0.0,0,86,0.0,0.0,597.099266312802,1512.0,0.0,1958.7451329152448,50,2,1,2,1,1,2,2,2,0,,2,,2,125983,1,2,0,1,1,1450.0,0.0,393.0,11,0.0,4.0,4.0,1.0,1.0,2,1,201.130024797645,432.0,9392.14209472983,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.16098563935147678,9392.14209472983,1,1,1_1,1_0_1,1_4_1,1_0_1 -11726,2,66.0,0.0,2,111,686.0,68.0,0.0,37,74,0.0,0.0,948.1715201170883,3434.0,0.0,123.32839725762652,60,0,0,0,0,0,0,0,0,0,,2,,2,118730,2,1,0,1,1,1450.0,0.0,393.0,42,1.0,1.0,4.0,2.0,1.5,2,2,178.591641728206,686.0,79436.52373026677,1,5,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04322948486089886,52957.68248684451,10,5,10,10_0,10_4,10_0_1 -11727,2,26.0,0.0,7,111,360.0,0.0,0.0,0,37,0.0,0.0,497.582721927335,360.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,15.0,2,,5,101176,1,2,0,1,1,,0.0,660.0,12,1.0,0.0,2.0,1.0,1.0,2,2,167.734749890078,360.0,32405.43706255696,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01110924686203242,32405.43706255696,8,4,8,8_0,8_4,8_0_0 -11728,2,47.0,0.0,7,111,710.0,0.0,0.0,77,52,0.0,0.0,981.3437015789107,710.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,2,,5,108866,2,1,0,0,1,,0.0,867.0,42,1.0,2.0,3.0,3.0,2.0,1,1,709.438267838236,710.0,43525.79033130601,5,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01631216790311401,21762.895165653004,6,3,6,6_0,6_4,6_0_0 -11729,2,32.0,0.0,7,111,700.0,0.0,0.0,47,43,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,5,116297,1,2,0,0,2,,0.0,400.0,43,2.0,0.0,3.0,2.0,1.5,2,2,719.887892930525,700.0,50662.86476023137,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01381682625553927,33775.24317348758,9,5,9,9_0,9_4,9_0_0 -11730,2,44.0,0.0,7,111,360.0,0.0,0.0,45,62,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,127584,2,2,0,1,1,1152.0,0.0,393.0,43,2.0,3.0,3.0,2.0,1.5,1,1,640.457375668601,360.0,44071.16454147144,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008168606474222757,29380.77636098096,8,4,8,8_0,8_4,8_0_0 -11731,2,47.0,0.0,6,112,1705.0,0.0,0.0,47,45,0.0,517.5862524097289,2356.6070580169617,2255.0,86.01635020950958,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,4,104904,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,694.679302258338,1705.0,60722.63216844681,1,1,0,1,106.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03713607133736474,26401.144421063833,7,4,7,7_1,7_1,7_0_0 -11732,2,35.0,0.0,9,112,2200.0,0.0,0.0,52,37,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,109300,2,1,1,0,1,,650.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,594.550565139264,2200.0,42640.29776461806,1,1,0,1,150.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0515943864216049,23689.054313676697,6,3,6,6_1,6_1,6_0_0 -11733,2,55.0,0.0,7,112,1470.0,0.0,0.0,54,62,0.0,258.79312620486445,2031.796114536618,2233.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,131246,2,1,4,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,603.307959243539,1470.0,51322.84341806902,1,1,0,1,100.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04350889099830812,34215.22894537934,9,5,9,9_1,9_1,9_0_0 -11734,2,55.0,0.0,8,112,1000.0,1200.0,0.0,85,43,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,108934,2,1,2,0,1,,513.0,,42,1.0,0.0,5.0,4.0,2.3,1,1,626.258425849573,1000.0,73938.51134029204,5,1,1,2,105.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02975445353335282,32147.178843605237,8,4,8,8_1,8_1,8_0_0 -11735,2,38.0,0.0,6,112,2400.0,0.0,0.0,54,37,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,131374,1,2,3,0,1,,550.0,,43,2.0,1.0,4.0,3.0,1.8,1,1,762.927091859437,2400.0,62409.3381171529,1,1,1,2,90.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03845578357993147,34671.85450952939,9,5,9,9_1,9_1,9_0_0 -11736,1,35.0,446.0,9,112,1611.0,0.0,0.0,64,85,0.0,0.0,2226.682680624824,1611.0,0.0,0.0,50,1,2,2,1,1,1,2,2,0,,1,2005.0,6,104573,1,3,2,0,1,,627.0,889.0,42,1.0,0.0,4.0,5.0,2.4,2,2,562.124130144843,1611.0,29128.1902364076,4,7,2,3,75.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.05530724658569401,12136.745931836502,2,1,2_1,2_1_1,2_1_1,2_0_0 -11737,2,32.0,0.0,6,112,1400.0,1400.0,0.0,85,46,0.0,0.0,1935.0439186063027,2800.0,0.0,2539.1140611864284,12,0,0,0,0,0,0,0,0,4,60.0,1,,4,114549,2,1,2,0,1,,700.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,4,4,839.944989719497,1400.0,54574.62184744085,7,1,1,2,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051305898331777434,20212.822906459576,5,3,5,5_1,5_1,5_0_0 -11738,2,46.0,0.0,6,112,670.0,2050.0,0.0,43,46,0.0,0.0,926.0567324758734,2720.0,0.0,3717.9884467372704,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,124869,2,1,2,0,2,,470.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,808.713100249817,670.0,86724.31199882542,1,1,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031363754145859804,48180.17333268079,10,5,10,10_1,10_1,10_0_0 -11739,2,36.0,0.0,7,112,1500.0,1500.0,0.0,63,54,0.0,0.0,2073.261341363896,3000.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,132859,2,3,3,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,779.134411523574,1500.0,42344.70419243144,1,1,1,2,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07084711198752949,20164.14485353878,5,3,5,5_1,5_1,5_0_0 -11740,2,64.0,0.0,5,112,870.0,1390.0,0.0,74,43,0.0,0.0,1202.4915779910596,2260.0,0.0,2520.977532177954,70,0,0,0,0,0,0,0,0,2,30.0,1,,3,122503,1,2,2,0,1,,680.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,846.408807368057,870.0,77209.04294525788,5,1,0,1,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02927118267224691,51472.69529683859,10,5,10,10_1,10_1,10_0_0 -11741,2,53.0,0.0,2,112,800.0,1200.0,0.0,85,37,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,4,50.0,1,,2,106022,2,1,2,0,1,,400.0,,42,3.0,0.0,5.0,4.0,2.5,1,1,807.144809158455,800.0,90378.08981291314,5,1,1,2,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022129257258480382,36151.23592516525,9,5,9,9_1,9_1,9_0_1 -11742,2,54.0,0.0,5,112,1200.0,2200.0,0.0,54,38,0.0,0.0,1658.6090730911167,3400.0,0.0,3990.0363818643877,41,0,0,0,0,0,0,0,0,2,30.0,1,,3,105591,2,1,2,0,2,,400.0,,43,3.0,1.0,5.0,3.0,2.0,3,2,808.713100249817,1200.0,78664.24999318515,4,1,0,1,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04322166677104974,39332.124996592574,9,5,9,9_1,9_1,9_0_0 -11743,2,51.0,0.0,2,112,640.0,1300.0,0.0,56,47,0.0,0.0,884.5915056485956,1940.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,2,40.0,1,,2,122131,2,2,2,0,2,,545.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,820.624987566784,640.0,30898.06986705619,1,1,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0627870934445794,20598.713244704126,5,3,5,5_1,5_1,5_0_1 -11744,2,39.0,0.0,5,112,517.0,1572.0,0.0,54,54,0.0,0.0,714.5840756567561,2089.0,0.0,2851.0623601321895,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,113752,2,2,2,0,2,,600.0,1100.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1190.8432409893,517.0,9750.390479685579,1,1,3,4,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21424782980254184,5416.883599825322,1,1,1_0,1_1_0,1_1_0,1_0_0 -11745,2,40.0,0.0,2,112,620.0,1100.0,0.0,68,65,0.0,0.0,856.9480210970769,1720.0,0.0,1995.0181909321939,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,115939,2,1,3,0,1,,370.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,803.614608412606,620.0,55401.763475415064,1,1,1,2,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031045943163221918,26381.79213115003,7,4,7,7_1,7_1,7_0_1 -11746,2,63.0,0.0,7,112,2100.0,0.0,0.0,0,46,0.0,0.0,2902.5658779094542,2175.0,129.02452531426437,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,5,112648,2,1,3,0,1,,180.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,603.307959243539,2100.0,60898.0,0,1,0,1,95.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03571545863575158,40598.666666666664,9,5,9,9_1,9_1,9_0_0 -11747,2,75.0,0.0,6,112,1100.0,300.0,0.0,86,86,0.0,0.0,1520.3916503335236,1400.0,0.0,544.0958702542347,42,0,0,0,0,0,0,0,0,0,,1,,4,130154,1,1,2,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,867.438581804002,1100.0,42963.616699700004,6,5,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03258571106304874,28642.411133133337,8,4,8,8_1,8_1,8_0_0 -11748,2,45.0,0.0,6,112,1200.0,2000.0,0.0,22,52,0.0,0.0,1658.6090730911167,3200.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,123143,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.3,4,4,779.134411523574,1200.0,27329.589370501915,1,1,0,1,150.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11708920893827653,11882.43016108779,2,1,2_0,2_1_0,2_1_0,2_0_0 -11749,2,39.0,0.0,5,112,2000.0,0.0,0.0,54,52,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,,3,127757,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,653.351181059539,2000.0,59027.593484052035,1,1,0,1,110.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033882458727380715,24594.830618355016,7,4,7,7_1,7_1,7_0_0 -11750,2,65.0,0.0,5,112,1200.0,900.0,0.0,77,77,0.0,186.3310508675024,1658.6090730911167,2280.0,0.0,1632.287610762704,10,0,0,0,0,0,0,0,0,0,,1,,3,128798,2,1,2,0,1,,750.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,820.624987566784,1200.0,50210.506145696854,5,5,0,1,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04540882327264492,33473.670763797905,8,4,8,8_1,8_1,8_0_0 -11751,2,45.0,0.0,5,112,650.0,850.0,0.0,0,37,0.0,155.27587572291867,898.4132479243549,1650.0,0.0,1541.6049657203316,20,0,0,0,0,0,0,0,0,2,25.0,1,,3,120991,2,2,3,0,1,,537.0,,12,1.0,0.0,5.0,1.0,1.0,3,3,976.909903399571,650.0,77005.64094735627,0,1,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02142700170664117,77005.64094735627,10,5,10,10_1,10_1,10_0_0 -11752,2,40.0,0.0,2,112,1200.0,1600.0,0.0,54,47,0.0,0.0,1658.6090730911167,2800.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,114293,2,1,1,0,1,,570.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,849.185248125321,1200.0,48492.46507477382,1,1,1,2,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057740929352271333,23091.65003560658,6,3,6,6_1,6_1,6_0_1 -11753,2,61.0,0.0,5,112,700.0,1400.0,0.0,0,77,0.0,0.0,967.5219593031513,2100.0,0.0,2539.1140611864284,31,0,0,0,0,0,0,0,0,0,,1,,3,108210,2,1,2,0,1,,350.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,928.546226262382,700.0,19967.54978922647,0,5,0,1,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10517064047252604,19967.54978922647,5,3,5,5_1,5_1,5_0_0 -11754,2,72.0,0.0,6,112,300.0,1330.0,0.0,86,86,0.0,0.0,414.65226827277917,1630.0,0.0,2412.158358127107,12,0,0,0,0,0,0,0,0,0,,1,,4,113054,2,1,1,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,824.494478810758,300.0,45773.23800225233,5,5,0,1,89.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03561032758748232,30515.492001501552,8,4,8,8_1,8_1,8_0_0 -11755,2,69.0,0.0,5,112,550.0,150.0,0.0,74,74,0.0,207.03450096389156,760.1958251667618,900.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,0,,1,,3,125314,2,1,1,0,1,,440.0,,41,0.0,2.0,7.0,2.0,1.5,2,1,820.624987566784,550.0,58250.39952902657,5,5,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015450537803633844,38833.59968601771,9,5,9,9_1,9_1,9_0_0 -11756,2,68.0,0.0,5,112,480.0,1300.0,0.0,75,75,0.0,0.0,663.4436292364467,1780.0,0.0,2357.7487711016834,20,0,0,0,0,0,0,0,0,0,,1,,3,129220,2,1,1,0,1,,1200.0,,41,0.0,2.0,3.0,2.0,1.5,3,3,801.410474954006,480.0,36255.792530546634,5,5,0,1,80.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049095603095706555,24170.528353697755,7,4,7,7_1,7_1,7_0_0 -11757,1,39.0,264.0,5,112,1100.0,0.0,0.0,55,54,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,43,2,2,2,1,2,2,2,2,0,,2,,3,130589,2,2,0,0,1,,0.0,424.0,43,2.0,0.0,3.0,3.0,1.8,1,1,770.335394004335,1100.0,20249.606389450702,1,4,2,3,68.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.05432204354219247,11249.781327472612,2,1,2_1,2_0_1,2_1_1,2_0_0 -11758,2,26.0,0.0,7,112,1300.0,0.0,0.0,43,69,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,111362,2,1,2,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,613.231186454184,1300.0,26621.248744263674,4,1,1,2,88.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04883317129442032,14789.582635702041,3,2,3_0,3_1_0,3_1_0,3_0_0 -11759,2,44.0,0.0,1,112,1068.0,1068.0,0.0,0,37,0.0,0.0,1476.1620750510938,2186.0,86.01635020950958,1936.9812981050754,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,114942,2,1,3,0,1,,250.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,621.033072100395,1068.0,41960.40674206645,0,1,0,1,140.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052096730459203947,27973.604494710966,7,4,7,7_1,7_0,7_1_0 -11760,2,45.0,0.0,8,112,1000.0,0.0,0.0,56,38,0.0,621.1035028916747,1382.1742275759307,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,105297,1,1,1,0,1,,330.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,471.759123774436,1000.0,60749.53489530946,1,1,1,2,103.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026337650201887188,23365.20572896518,6,3,6,6_1,6_0,6_0_0 -11761,2,73.0,0.0,1,112,1500.0,0.0,0.0,77,74,0.0,0.0,2073.261341363896,1576.0,130.74485231845458,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,103481,1,3,4,0,2,,320.0,630.0,41,0.0,2.0,4.0,2.0,1.5,2,2,642.151293211517,1500.0,38719.999252146416,5,5,2,3,87.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04070248012498697,25813.33283476428,7,4,7,7_1,7_0,7_1_0 -11762,2,74.0,0.0,1,112,473.0,1862.0,0.0,0,75,0.0,0.0,653.7684096434151,2335.0,0.0,3377.0217013779497,60,0,0,0,0,0,0,0,0,0,,1,,1,126082,2,1,3,0,1,,340.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,719.553753669181,473.0,35560.155954846756,0,5,0,1,140.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06566337906292972,35560.155954846756,9,5,9,9_1,9_0,9_1_0 -11763,2,53.0,0.0,1,112,1200.0,0.0,0.0,42,47,0.0,517.5862524097289,1658.6090730911167,1725.0,43.00817510475479,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,104253,2,1,2,0,1,,137.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,539.904400754079,1200.0,77894.13661347894,1,1,0,1,90.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022145440915016225,51929.424408985964,10,5,10,10_1,10_0,10_1_0 -11764,2,56.0,0.0,1,112,4275.0,0.0,0.0,31,31,0.0,0.0,5908.794822887103,4275.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,12.0,1,,1,120787,2,1,1,0,1,,1085.0,,43,2.0,2.0,7.0,4.0,2.3,2,2,712.632308372846,4275.0,176137.36329860092,1,1,0,1,250.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02427082999279777,76581.46230373954,10,5,10,10_1,10_0,10_1_0 -11765,2,47.0,0.0,6,112,2237.0,0.0,0.0,52,53,0.0,0.0,3091.923747087357,2267.0,51.60981012570575,0.0,33,0,0,0,0,0,0,0,0,2,60.0,1,,4,109921,1,1,2,0,1,,187.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,739.686342842208,2237.0,62205.43216477072,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0364437625639371,31102.71608238536,8,4,8,8_1,8_0,8_0_0 -11766,2,61.0,0.0,5,112,707.0,0.0,0.0,54,74,0.0,0.0,977.1971788961829,777.0,120.42289029331342,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,111628,2,2,1,0,1,,124.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,731.672462860284,707.0,58429.24457748512,1,5,0,1,150.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013298135302255917,38952.82971832342,9,5,9,9_1,9_0,9_0_0 -11767,0,53.0,0.0,2,112,811.0,0.0,0.0,0,52,0.0,155.27587572291867,1120.9432985640797,1578.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,119644,2,2,3,0,1,,104.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,934.402857298091,811.0,13511.109519846159,0,1,5,0,70.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1167927769131108,13511.109519846159,3,2,3_0,3_1_0,3_0_0,3_0_1 -11768,2,50.0,0.0,8,112,120.0,0.0,0.0,52,48,0.0,0.0,165.86090730911167,120.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,127902,2,1,1,0,1,,227.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,605.481254194074,120.0,59829.08810605561,1,1,1,2,116.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0020057133377544187,23931.635242422246,6,3,6,6_1,6_0,6_0_0 -11769,2,86.0,0.0,1,112,0.0,0.0,1725.0,77,75,0.0,0.0,881.3255025947307,1725.0,0.0,1972.0989612757892,33,0,0,0,0,0,0,0,0,0,,1,,1,112593,2,1,1,0,1,,268.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,623.431733428988,0.0,33881.78182625615,5,5,0,1,80.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050912316502293234,22587.854550837434,6,3,6,6_1,6_1,6_1_0 -11770,1,29.0,400.0,1,112,1200.0,0.0,0.0,21,56,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,2,2,2,1,1,2,2,2,3,10.0,1,,1,123873,1,2,3,0,2,,0.0,600.0,43,2.0,0.0,3.0,4.0,2.1,3,3,624.742672212122,1200.0,24277.16299313793,1,1,2,3,60.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.04942916931188321,11560.553806256155,2,1,2_1,2_1_1,2_1_1,2_1_0 -11771,2,41.0,0.0,1,112,0.0,0.0,0.0,0,54,0.0,0.0,0.0,790.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,80.0,2,,1,108624,2,1,0,0,1,,337.0,670.0,12,1.0,0.0,2.0,1.0,1.0,1,1,782.726267016067,0.0,27677.790648745926,0,1,2,3,50.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0285427406408898,27677.790648745926,7,4,7,7_0,7_1,7_1_0 -11772,2,65.0,0.0,1,112,324.0,204.0,0.0,0,78,0.0,0.0,447.8244497346015,528.0,0.0,369.9851917728796,12,0,0,0,0,0,0,0,0,0,,1,,1,117440,2,1,1,0,1,,390.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,655.903408203872,324.0,35773.98545063828,0,5,0,1,100.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014759328415575776,23849.323633758857,6,3,6,6_1,6_1,6_1_0 -11773,0,63.0,0.0,2,112,64.0,0.0,0.0,0,47,0.0,0.0,88.45915056485956,64.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,2.0,1,,2,112778,2,1,2,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,5,3,997.078808578663,64.0,44801.84830688044,0,1,5,0,80.0,10,1,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0014285124926457823,44801.84830688044,10,5,10,10_1,10_1,10_0_1 -11774,2,52.0,0.0,7,112,1418.0,0.0,0.0,0,54,0.0,366.45106670608806,1959.9230547026696,1772.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,45.0,1,,5,100225,2,1,2,0,1,,380.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,628.467456937142,1418.0,47251.741190633235,0,1,0,1,85.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03750126355875465,23625.870595316617,6,3,6,6_1,6_1,6_0_0 -11775,2,33.0,0.0,2,112,0.0,0.0,1318.0,0,43,0.0,0.0,673.3837753158581,1318.0,0.0,1506.7979309921684,33,1,2,2,2,1,2,2,2,2,45.0,1,,2,117732,2,1,1,0,1,,430.0,,32,1.0,0.0,4.0,2.0,1.3,5,3,872.722616963782,0.0,32415.18753571387,0,1,1,2,80.0,10,1,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04065995294791602,24934.75964285682,7,4,7,7_1,7_1,7_0_1 -11776,2,41.0,0.0,2,112,530.0,400.0,0.0,0,33,0.0,0.0,732.5523406152432,930.0,0.0,725.4611603389795,41,0,0,0,0,0,0,0,0,2,60.0,1,,2,132156,2,1,1,0,1,,516.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,982.86078728436,530.0,32273.387399778374,0,1,1,2,88.0,10,1,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02881631198113361,32273.387399778374,8,4,8,8_1,8_1,8_0_1 -11777,2,55.0,0.0,8,112,613.0,1200.0,0.0,38,38,0.0,0.0,847.2728015040454,1813.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,110861,2,1,2,0,1,,535.0,,43,2.0,2.0,7.0,3.0,2.0,2,2,650.033403268641,613.0,101820.73551107876,1,1,1,2,159.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0178058034142047,50910.36775553938,10,5,10,10_1,10_1,10_0_0 -11778,2,46.0,0.0,7,112,1600.0,0.0,0.0,46,23,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,1,,5,131885,2,2,1,0,1,,400.0,,43,2.0,0.0,8.0,4.0,2.3,1,1,626.258425849573,1600.0,135643.348494151,1,1,0,1,176.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011795639209459597,58975.36891050044,10,5,10,10_1,10_1,10_0_0 -11779,2,48.0,0.0,7,112,4500.0,0.0,0.0,37,46,0.0,0.0,6219.784024091688,4500.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,5,124340,2,1,2,0,2,,700.0,,43,2.0,1.0,7.0,4.0,2.3,2,1,626.258425849573,4500.0,232836.22152591118,1,1,0,1,130.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01932688982199111,101233.13979387443,10,5,10,10_1,10_1,10_0_0 -11780,2,69.0,0.0,7,111,1400.0,0.0,0.0,0,77,0.0,828.1380038555662,1935.0439186063027,2600.0,688.1308016760767,0.0,43,0,0,0,0,0,0,0,0,0,,7,,5,120425,2,1,0,0,2,,0.0,,11,0.0,8.0,1.0,1.0,1.0,2,2,605.320473361318,1400.0,15700.465524642437,0,5,0,1,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1656001852887233,15700.465524642437,3,2,3_0,3_1_0,3_4_0,3_0_0 -11781,2,56.0,0.0,6,111,1370.0,1600.0,0.0,0,74,0.0,0.0,1893.578691779025,2970.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,4,117735,1,1,3,0,1,,242.0,,11,0.0,1.0,8.0,1.0,1.0,2,2,711.554026500468,1370.0,46550.58491317102,0,7,0,1,167.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0638015613668405,46550.58491317102,10,5,10,10_1,10_4,10_0_0 -11782,2,54.0,0.0,1,111,4200.0,0.0,0.0,52,33,0.0,0.0,5805.1317558189085,4200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,60.0,1,,1,132382,1,1,2,0,1,,397.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,462.046740713747,4200.0,95640.00022569133,1,1,1,2,200.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043914679946558316,47820.000112845664,10,5,10,10_1,10_4,10_1_0 -11783,2,66.0,0.0,2,111,0.0,0.0,0.0,75,74,2240.377315527001,93.1655254337512,0.0,3251.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,120179,2,1,1,0,1,,445.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,651.66971713637,0.0,60136.584824405494,5,5,0,1,100.0,10,8,1,1,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05406026979238489,40091.056549603665,9,5,9,9_1,9_4,9_0_1 -11784,2,76.0,0.0,6,111,1200.0,0.0,0.0,77,75,0.0,258.79312620486445,1658.6090730911167,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,112708,1,1,2,0,1,,300.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,596.095868451312,1200.0,38788.82570227678,5,5,0,1,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03738189990925375,25859.217134851187,7,4,7,7_1,7_4,7_0_0 -11785,2,67.0,0.0,5,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,1102.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,,3,114039,2,1,1,0,1,,446.0,,43,2.0,2.0,7.0,2.0,1.5,3,3,577.89006068084,0.0,866332.0825616318,1,1,0,1,184.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0012720295394596593,577554.7217077545,10,5,10,10_1,10_4,10_0_0 -11786,2,29.0,0.0,7,112,1032.0,0.0,0.0,53,53,0.0,434.77245202417225,1426.4038028583605,1512.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,102088,2,1,1,0,1,,155.0,,43,2.0,0.0,4.0,3.0,1.8,4,3,613.231186454184,1032.0,55473.0,1,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02725650316370126,30818.333333333332,8,4,8,8_1,8_0,8_0_0 -11787,2,54.0,0.0,6,112,1800.0,0.0,0.0,78,63,0.0,0.0,2487.913609636675,1930.0,223.64251054472493,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,4,110287,2,2,2,0,1,,197.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,824.494478810758,1800.0,31874.438775235896,5,1,1,2,98.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060550085716316,21249.625850157263,5,3,5,5_1,5_0,5_0_0 -11788,1,66.0,59.0,1,112,1450.0,0.0,0.0,0,77,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130531,2,1,2,0,2,,97.0,415.0,11,0.0,3.0,3.0,1.0,1.0,2,2,684.743597028456,1450.0,17609.126399874844,0,5,2,3,61.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08234366470390637,17609.126399874844,4,2,4_1,4_1_1,4_0_1,4_1_0 -11789,2,83.0,0.0,2,112,343.0,0.0,0.0,77,78,2948.3365472335336,0.0,474.08576005854417,2737.0,722.5373417598805,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104704,2,1,2,0,1,,253.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,846.408807368057,343.0,22673.348970585877,5,5,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12071441248272183,15115.565980390586,3,2,3_0,3_1_0,3_0_0,3_0_1 -11790,1,31.0,314.0,1,112,1526.0,0.0,0.0,52,21,0.0,0.0,2109.19787128087,1701.0,301.05722573328353,0.0,43,2,2,2,2,1,2,2,1,2,120.0,2,,1,102879,1,3,0,0,1,,515.0,670.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,3,3,662.583314919712,1526.0,35176.10041236355,6,1,2,3,70.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.048356696167553,13028.185337912428,2,1,2_1,2_0_1,2_1_1,2_1_0 -11791,1,52.0,259.0,2,112,570.0,0.0,0.0,0,67,0.0,0.0,787.8393097182804,570.0,0.0,0.0,20,2,1,2,2,1,2,2,2,2,20.0,2,,2,110893,2,1,0,1,1,,0.0,329.0,32,2.0,2.0,4.0,2.0,1.5,1,1,672.870997617082,570.0,16462.43151457105,0,1,2,3,70.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03462428982592807,10974.954343047366,2,1,2_1,2_0_1,2_1_1,2_0_1 -11792,2,50.0,0.0,8,112,1600.0,0.0,0.0,52,45,0.0,517.5862524097289,2211.478764121489,2100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,127627,1,1,1,0,1,,310.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,628.467456937142,1600.0,58930.77147317979,1,1,0,1,120.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03563503323481416,32739.317485099884,8,4,8,8_1,8_1,8_0_0 -11793,1,31.0,235.0,2,112,340.0,0.0,0.0,55,47,2240.377315527001,136.64277063616842,469.9392373758164,1972.0,0.0,0.0,44,2,2,2,2,1,2,2,2,2,45.0,1,,2,124439,1,2,1,0,2,,124.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,807.144809158455,340.0,29692.966082033243,1,1,1,2,76.0,10,2,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.06641303514616638,14139.507658111068,3,2,3_1,3_1_1,3_1_1,3_0_1 -11794,2,59.0,0.0,1,112,0.0,0.0,2000.0,0,43,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,71,0,0,0,0,0,0,0,0,2,55.0,1,,1,127670,2,2,4,0,1,,560.0,,32,1.0,3.0,6.0,2.0,1.5,1,1,604.440376849048,0.0,38627.565494993236,0,1,0,1,160.0,10,2,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05177649625004798,25751.71032999549,7,4,7,7_1,7_1,7_1_0 -11795,2,66.0,0.0,1,112,780.0,0.0,0.0,78,78,0.0,0.0,1078.0958975092258,930.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,7,,1,127830,2,1,0,0,1,,0.0,177.0,41,0.0,2.0,3.0,2.0,1.5,2,2,559.761920350495,780.0,34634.97856060947,5,5,2,3,57.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026851467465832175,23089.985707072978,6,3,6,6_1,6_1,6_1_0 -11796,1,33.0,491.0,9,112,1447.0,0.0,0.0,0,52,0.0,0.0,2000.0061073023714,1447.0,0.0,0.0,70,1,2,2,1,1,2,2,2,3,180.0,2,2007.0,6,125403,2,2,0,0,1,,760.0,708.0,32,1.0,0.0,4.0,4.0,2.3,1,1,797.391161732166,1447.0,28623.670512190427,0,1,2,3,53.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.050552566253993965,12445.074135734969,2,1,2_1,2_0_1,2_1_1,2_0_0 -11797,2,46.0,0.0,7,112,2340.0,0.0,0.0,46,47,0.0,414.0690019277831,3234.2876925276773,2740.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,5,120444,2,1,1,0,1,,561.0,,43,2.0,1.0,5.0,4.0,2.3,1,1,590.227653520837,2340.0,66247.87550784931,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04135981688462378,28803.42413384753,8,4,8,8_1,8_0,8_0_0 -11798,2,51.0,0.0,8,112,1350.0,0.0,0.0,75,54,0.0,217.38622601208613,1865.9352072275062,1660.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,131668,2,1,1,0,1,,170.0,,42,1.0,2.0,5.0,3.0,1.8,4,4,612.634775813094,1350.0,63634.453865740856,5,1,1,2,150.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026086497159264553,35352.47436985603,9,5,9,9_1,9_0,9_0_0 -11799,1,30.0,247.0,1,112,1551.0,0.0,0.0,46,62,0.0,0.0,2143.752226970268,1608.0,98.05863923884093,0.0,71,2,2,1,2,2,1,2,2,2,10.0,2,,1,103255,2,1,0,0,1,,495.0,459.0,43,2.0,1.0,3.0,6.0,2.8999999999999995,1,1,708.039069792325,1551.0,19965.55743084924,1,1,3,4,62.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08053869798373084,6884.674976154912,1,1,1_1,1_0_1,1_0_1,1_1_0 -11800,2,58.0,0.0,1,112,754.0,2055.0,0.0,55,75,0.0,0.0,1042.1593675922516,2809.0,0.0,3727.0567112415074,71,0,0,0,0,0,0,0,0,0,,1,,1,119003,2,1,2,0,1,,350.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,638.921445511485,754.0,45528.81675890629,1,5,0,1,128.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06169718872499596,30352.544505937523,8,4,8,8_1,8_0,8_1_0 -11801,0,75.0,0.0,2,112,1278.0,2172.0,0.0,0,75,0.0,0.0,1766.4186628420393,3450.0,0.0,3939.254100640659,60,0,0,0,0,0,0,0,0,0,,1,,2,128664,2,1,2,0,1,,120.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,957.413587265719,1278.0,19991.32013551214,0,5,0,1,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17257489633571005,19991.32013551214,5,3,5,5_1,5_0,5_0_1 -11802,2,64.0,0.0,1,112,139.2,871.2,0.0,0,31,0.0,0.0,192.39865247856952,1010.0,0.0,1580.0544072182975,20,0,0,0,0,0,0,0,0,0,,1,,1,103247,2,1,3,0,1,,345.0,1000.0,12,1.0,1.0,4.0,1.0,1.0,2,2,810.323768813713,139.2,11969.822295287546,0,1,2,3,92.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08437886336855907,11969.822295287546,2,1,2_0,2_1_0,2_0_0,2_1_0 -11803,1,21.0,55.0,7,112,300.0,0.0,0.0,0,54,0.0,0.0,414.65226827277917,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,109990,1,2,0,4,2,,0.0,343.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1097.69258797389,300.0,756.1456582750606,0,1,3,4,21.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.39674895533271715,756.1456582750606,1,1,1_1,1_0_1,1_2_1,1_0_0 -11804,2,78.0,0.0,1,112,0.0,0.0,0.0,0,86,0.0,0.0,0.0,765.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,122809,2,1,0,0,1,,244.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,697.72458254786,0.0,32613.581875761956,0,6,0,1,75.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023456485181976877,32613.581875761956,8,4,8,8_0,8_2,8_1_0 -11805,2,82.0,0.0,8,112,1569.0,0.0,0.0,75,74,0.0,0.0,2168.631363066635,1569.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,117202,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,3,3,631.490399184219,1569.0,54725.156027271114,5,5,0,1,108.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02867054411353569,36483.437351514076,9,5,9,9_0,9_2,9_0_0 -11806,2,79.0,0.0,2,112,400.0,2000.0,0.0,0,74,0.0,0.0,552.8696910303722,2400.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,2,133275,2,2,2,0,1,,206.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,934.966116670914,400.0,38286.810494606325,0,5,0,1,116.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06268477235360467,38286.810494606325,9,5,9,9_1,9_2,9_0_1 -11807,2,39.0,0.0,1,112,300.0,900.0,0.0,0,37,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,102454,2,1,2,0,1,,297.0,,32,1.0,0.0,5.0,2.0,1.3,4,4,595.848407820874,300.0,73571.59206925488,0,1,1,2,100.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016310643364498736,56593.53236096529,10,5,10,10_1,10_2,10_1_0 -11808,2,85.0,0.0,1,112,1136.0,1834.0,0.0,72,74,0.0,0.0,1570.1499225262571,2970.0,0.0,3326.239420154221,50,0,0,0,0,0,0,0,0,0,,2,,1,101670,2,1,0,0,1,,505.0,,41,0.0,3.0,5.0,2.0,1.5,3,2,600.665668209129,1136.0,134875.3285008253,5,5,0,1,88.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022020335616693802,89916.88566721686,10,5,10,10_0,10_2,10_1_0 -11809,0,46.0,0.0,1,112,360.0,0.0,0.0,0,53,0.0,76.18869635471209,497.582721927335,584.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114537,1,1,3,0,2,,0.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,835.627060634355,360.0,30534.604082015394,0,1,5,0,100.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01912584156753389,30534.604082015394,8,4,8,8_1,8_2,8_1_0 -11810,2,42.0,0.0,2,112,1380.0,0.0,0.0,0,54,0.0,320.9034764940319,1907.4004340547842,1768.0,134.18550632683494,0.0,10,2,2,2,1,1,1,2,2,0,,2,,2,113975,1,3,0,0,1,,800.0,541.0,32,1.0,0.0,2.0,2.0,1.3,3,2,847.24343032548,1380.0,25126.76472700738,0,4,2,3,37.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.07036321704002242,19328.280559236446,5,3,5,5_0,5_0,5_0_1 -11811,2,44.0,0.0,1,112,850.0,0.0,0.0,85,46,5376.905557264802,0.0,1174.848093439541,4450.0,0.0,0.0,50,2,2,1,2,1,2,2,2,4,90.0,1,,1,104003,1,1,3,0,1,,400.0,,42,1.0,0.0,6.0,5.0,2.4,1,1,484.859455534203,850.0,30588.13248793886,7,1,1,2,250.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.14548125818909244,12745.055203307858,2,1,2_0,2_1_0,2_0_0,2_1_0 -11812,2,30.0,0.0,9,112,0.0,0.0,0.0,42,46,0.0,0.0,0.0,1486.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,60.0,1,2004.0,6,111007,2,2,1,0,1,,324.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,603.307959243539,0.0,69397.18000349558,1,1,1,2,143.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021412973840221596,46264.786668997054,10,5,10,10_1,10_0,10_0_0 -11813,2,57.0,0.0,1,112,1407.0,0.0,0.0,75,37,0.0,263.96898872896173,1944.7191381993343,1662.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,1,114437,2,1,1,0,1,,560.0,,42,1.0,3.0,7.0,2.0,1.5,1,1,538.921414631369,1407.0,50036.38509262279,5,1,0,1,160.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033215828779866036,33357.590061748524,8,4,8,8_1,8_0,8_1_0 -11814,2,53.0,0.0,1,112,1000.0,0.0,0.0,22,11,4779.471606457602,0.0,1382.1742275759307,4200.0,0.0,0.0,42,2,1,2,2,1,2,2,2,0,,1,,1,117062,2,1,4,0,1,,450.0,,43,3.0,2.0,5.0,3.0,2.0,2,2,629.647099277046,1000.0,76609.38775861842,1,1,0,1,110.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05482356827120717,38304.69387930921,9,5,9,9_1,9_0,9_1_0 -11815,2,47.0,0.0,9,112,2400.0,0.0,0.0,0,43,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,30.0,1,2007.0,6,105897,2,1,1,0,1,,300.0,,32,1.0,0.0,7.0,3.0,2.0,1,1,641.83038038377,2400.0,44292.83496944074,0,1,1,2,167.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.054184836027223106,22146.41748472037,6,3,6,6_1,6_0,6_0_0 -11816,2,29.0,0.0,1,111,240.0,120.0,0.0,0,62,0.0,0.0,331.72181461822333,360.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,1,114118,2,1,0,1,2,,0.0,612.0,22,2.0,3.0,3.0,2.0,1.5,1,1,620.085066713525,240.0,42618.33766691422,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008447068086362218,28412.225111276148,8,4,8,8_0,8_4,8_1_0 -11817,2,59.0,0.0,5,111,2500.0,0.0,0.0,75,34,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,131891,2,1,2,0,1,,230.0,,42,1.0,2.0,7.0,3.0,2.0,1,1,526.191706802604,2500.0,74933.32258401783,5,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03336299410982228,37466.66129200892,9,5,9,9_1,9_4,9_0_0 -11818,2,53.0,0.0,1,111,960.0,0.0,0.0,0,68,0.0,0.0,1326.8872584728933,1060.0,172.03270041901916,0.0,44,0,0,0,0,0,0,0,0,2,15.0,2,,1,125644,2,2,0,0,1,,180.0,440.0,12,1.0,1.0,2.0,1.0,1.0,1,1,956.118889632415,960.0,9615.882002480048,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11023429777181268,9615.882002480048,1,1,1_0,1_0_0,1_4_0,1_1_0 -11819,0,45.0,0.0,2,111,0.0,0.0,0.0,52,48,0.0,0.0,0.0,2121.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,5.0,8,,2,131779,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,2,2,679.134624604223,0.0,51781.78154063907,1,1,5,0,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04096035201754133,25890.890770319536,7,4,7,7_0,7_4,7_0_1 -11820,2,59.0,0.0,5,111,268.0,560.0,0.0,0,74,0.0,0.0,370.4226929903494,828.0,0.0,1015.6456244745714,44,0,0,0,0,0,0,0,0,0,,2,,3,106572,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,658.352277868748,268.0,55144.57580226379,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015015076060590696,55144.57580226379,10,5,10,10_0,10_4,10_0_0 -11821,2,31.0,0.0,5,111,220.0,0.0,0.0,85,37,0.0,0.0,304.0783300667047,220.0,0.0,0.0,50,1,2,2,2,1,2,2,2,0,,2,,3,122444,1,3,0,1,2,200.0,0.0,390.0,42,1.0,1.0,1.0,2.0,1.5,3,2,696.894311735552,220.0,23230.211177092875,7,4,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009470426175761167,15486.80745139525,3,2,3_0,3_0_0,3_4_0,3_0_0 -11822,2,55.0,0.0,2,111,660.0,0.0,0.0,54,48,0.0,0.0,912.2349902001142,660.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,108521,2,1,2,0,1,,293.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,563.781510677374,660.0,67917.30839154271,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.009717699591319278,33958.654195771356,9,5,9,9_1,9_4,9_0_1 -11823,1,68.0,219.0,1,111,0.0,0.0,2400.0,0,86,0.0,0.0,1226.19200361006,2400.0,0.0,2743.7898591663156,42,0,0,0,0,0,0,0,0,0,,1,,1,114093,2,1,1,0,1,,400.0,645.0,11,0.0,2.0,3.0,1.0,1.0,2,2,560.511158802559,0.0,9572.335324966947,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0.25072251634773224,9572.335324966947,1,1,1_1,1_1_1,1_4_1,1_1_0 -11824,2,62.0,0.0,5,111,0.0,0.0,850.0,74,75,0.0,517.5862524097289,434.2763346118963,1350.0,0.0,971.7589084547367,33,0,0,0,0,0,0,0,0,0,,1,,3,110171,2,1,1,0,1,,870.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,533.942213523243,0.0,62982.399490338634,5,5,0,1,138.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021434559669437286,41988.26632689242,9,5,9,9_1,9_4,9_0_0 -11825,2,55.0,0.0,1,111,2000.0,0.0,0.0,67,37,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,131400,2,1,2,0,2,,600.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,616.393012762014,2000.0,134059.02535791928,1,4,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.014918801585050117,67029.51267895964,10,5,10,10_1,10_4,10_1_0 -11826,2,78.0,0.0,1,111,950.0,0.0,0.0,0,74,4032.679167948602,0.0,1313.065516197134,3730.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131447,2,2,2,0,2,,800.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,704.407129926614,950.0,47949.38233836461,0,5,0,1,88.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07779036596714621,47949.38233836461,10,5,10,10_1,10_4,10_1_0 -11827,1,39.0,200.0,2,111,1100.0,960.0,0.0,68,52,0.0,0.0,1520.3916503335236,2060.0,0.0,1741.106784813551,31,0,0,0,0,0,0,0,0,2,40.0,2,,2,127107,1,1,0,1,1,,1500.0,700.0,43,2.0,2.0,5.0,6.0,2.8999999999999995,2,2,542.068489352022,1100.0,35428.30878416387,4,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05814559234396199,12216.65820143582,2,1,2_1,2_0_1,2_4_1,2_0_1 -11828,2,44.0,0.0,7,112,203.0,0.0,0.0,0,47,0.0,0.0,280.5813681979139,203.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,5,112016,1,3,0,0,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,2,2,542.763727863987,203.0,36640.36762375667,0,1,1,2,28.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005540337424681843,36640.36762375667,9,5,9,9_0,9_1,9_0_0 -11829,2,45.0,0.0,7,112,1000.0,0.0,0.0,0,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,2,,5,112331,1,2,0,0,1,,0.0,746.0,12,1.0,0.0,3.0,1.0,1.0,2,2,694.390230584305,1000.0,33823.910066121316,0,1,2,3,57.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.029564884664284256,33823.910066121316,9,5,9,9_0,9_1,9_0_0 -11830,2,37.0,0.0,7,112,1020.0,0.0,0.0,0,46,0.0,0.0,1409.817712127449,1020.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,5,124420,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,733.379491889751,1020.0,26769.000000000004,0,1,1,2,83.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03810377675669617,26769.000000000004,7,4,7,7_0,7_1,7_0_0 -11831,2,53.0,0.0,7,112,1000.0,0.0,0.0,0,52,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,75.0,2,,5,131260,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,590.36042802149,1000.0,28796.427757734826,0,1,1,2,37.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034726529568633605,28796.427757734826,8,4,8,8_0,8_1,8_0_0 -11832,2,66.0,0.0,7,112,1000.0,0.0,0.0,0,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,5,101290,2,2,0,0,1,,0.0,900.0,12,1.0,2.0,4.0,1.0,1.0,1,1,884.243800264231,1000.0,57717.99043736558,0,1,2,3,77.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017325620528753166,57717.99043736558,10,5,10,10_0,10_1,10_0_0 -11833,2,40.0,0.0,8,112,0.0,1500.0,0.0,46,37,0.0,0.0,0.0,2589.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,3,90.0,1,2001.0,6,132055,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,560.790343593071,0.0,88214.04422535645,1,1,1,2,96.0,10,3,1,0,1,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029349068198097777,49007.80234742025,10,5,10,10_1,10_1,10_0_0 -11834,2,35.0,0.0,7,112,660.0,0.0,0.0,0,54,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,104002,2,2,0,0,1,,0.0,409.0,12,1.0,0.0,1.0,1.0,1.0,2,2,658.23968305526,660.0,18727.347768519518,0,1,2,3,33.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03524257722759083,18727.347768519518,5,3,5,5_0,5_1,5_0_0 -11835,2,40.0,0.0,8,112,500.0,0.0,0.0,0,46,0.0,0.0,691.0871137879653,500.0,0.0,0.0,30,2,2,2,2,1,2,2,2,0,,2,2000.0,6,108950,1,2,0,0,2,,0.0,313.0,12,1.0,0.0,1.0,1.0,1.0,2,2,658.23968305526,500.0,17330.99598139026,0,4,2,3,33.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02885004419462631,17330.99598139026,4,2,4_0,4_0_0,4_1_0,4_0_0 -11836,1,29.0,257.0,1,112,0.0,0.0,0.0,52,56,0.0,0.0,0.0,757.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,1,123158,2,1,0,1,1,,0.0,600.0,43,2.0,0.0,4.0,4.0,2.1,4,3,557.546770023439,0.0,29528.34130530066,4,1,2,3,85.0,10,3,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02563638750220319,14061.114907286028,3,2,3_1,3_0_1,3_1_1,3_1_0 -11837,2,32.0,0.0,7,112,807.0,0.0,0.0,43,42,0.0,0.0,1115.414601653776,807.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,5,101367,2,2,2,0,1,,500.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,516.901026981624,807.0,53420.62871705543,1,1,1,2,65.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015106523816376421,29678.127065030792,8,4,8,8_1,8_1,8_0_0 -11838,2,34.0,0.0,8,112,0.0,0.0,1000.0,46,46,0.0,51.75862524097289,510.91333483752504,1050.0,0.0,1143.2457746526316,42,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,112551,2,1,1,0,1,,1000.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,540.279431863437,0.0,45608.78352097733,4,1,1,2,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023021881289972627,21718.46834332254,6,3,6,6_1,6_1,6_0_0 -11839,2,30.0,0.0,9,112,1012.0,0.0,0.0,42,34,0.0,0.0,1398.7603183068418,1012.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,125950,1,2,0,0,1,,274.0,,43,2.0,0.0,1.0,2.0,1.5,4,2,533.712852754345,1012.0,42927.02034617053,1,1,1,2,45.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023574895062342227,28618.013564113688,8,4,8,8_0,8_1,8_0_0 -11840,2,53.0,0.0,6,112,2400.0,0.0,0.0,43,63,0.0,0.0,3317.2181461822333,2500.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,4,107367,2,1,2,0,1,,700.0,,43,4.0,1.0,6.0,4.0,2.5,2,2,614.795047544306,2400.0,93831.10703462719,1,1,0,1,150.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026643616163213407,37532.442813850874,9,5,9,9_1,9_1,9_0_0 -11841,2,66.0,0.0,6,112,1308.0,0.0,0.0,78,77,0.0,517.5862524097289,1807.883889669317,1938.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,127501,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,647.998476487727,1308.0,45833.31223954868,5,5,0,1,96.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04228365582375993,30555.54149303245,8,4,8,8_1,8_1,8_0_0 -11842,1,34.0,100.0,5,112,0.0,0.0,3500.0,84,64,0.0,0.0,1788.1966719313377,3500.0,0.0,4001.36021128421,70,2,2,2,1,2,1,2,2,2,40.0,2,,3,129973,1,1,0,0,1,,0.0,600.0,42,1.0,0.0,5.0,4.0,2.1,1,1,567.355580829028,0.0,16879.773757620096,3,1,2,3,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.20734875065609115,8037.987503628617,1,1,1_1,1_0_1,1_1_1,1_0_0 -11843,2,37.0,0.0,7,112,0.0,0.0,1000.0,52,46,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,50,0,0,0,0,0,0,0,0,3,30.0,2,,5,100823,1,2,0,0,1,,0.0,490.0,43,2.0,0.0,3.0,3.0,1.8,1,1,661.457111585197,0.0,34468.989369477786,1,1,2,3,66.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0290115845660824,19149.43853859877,5,3,5,5_0,5_1,5_0_0 -11844,1,22.0,365.0,9,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,267.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,105007,2,1,0,1,1,170.0,0.0,405.0,12,1.0,0.0,1.0,1.0,1.0,4,4,786.775399014524,0.0,15852.651123453179,0,4,3,4,18.0,10,3,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016842608717035808,15852.651123453179,3,2,3_1,3_0_1,3_1_1,3_0_0 -11845,2,41.0,0.0,5,112,3000.0,0.0,0.0,46,21,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,124143,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,753.285323123732,3000.0,48132.32465626415,1,1,1,2,160.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06232817594879176,22920.154598221023,6,3,6,6_1,6_0,6_0_0 -11846,2,70.0,0.0,6,112,2500.0,0.0,0.0,77,78,0.0,362.31037668681023,3455.435568939826,2850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,120736,2,2,3,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,774.164577126442,2500.0,42635.10170409128,5,5,0,1,80.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06684632816828752,28423.401136060853,8,4,8,8_1,8_0,8_0_0 -11847,2,40.0,0.0,5,112,3000.0,0.0,0.0,21,46,0.0,569.3448776507017,4146.522682727792,3670.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,3,113229,2,1,3,0,1,,800.0,,43,3.0,0.0,5.0,5.0,2.8,2,2,656.691793747011,3000.0,32585.673376756193,1,1,1,2,150.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11262618260385134,11637.740491698642,2,1,2_0,2_1_0,2_0_0,2_0_0 -11848,1,48.0,61.0,5,111,450.0,0.0,0.0,85,63,0.0,0.0,621.9784024091688,700.0,430.0817510475479,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,133425,1,3,0,1,1,192.0,0.0,389.0,42,1.0,0.0,2.0,4.0,2.1,2,2,559.520904350666,450.0,17670.32360375273,6,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03961444146112512,8414.439811310824,1,1,1_1,1_0_1,1_4_1,1_0_0 -11849,2,48.0,0.0,5,111,460.0,1500.0,0.0,38,38,0.0,0.0,635.800144684928,1960.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,2,,3,133596,2,1,0,0,1,,550.0,,43,2.0,1.0,3.0,3.0,2.0,2,1,576.868003044204,460.0,96615.26255459532,1,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020286649833326738,48307.63127729766,10,5,10,10_0,10_4,10_0_0 -11850,2,32.0,0.0,6,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,443.0,0.0,0.0,20,2,2,1,2,1,2,2,2,3,60.0,2,,4,106745,2,1,0,1,1,272.0,0.0,325.0,12,1.0,0.0,1.0,1.0,1.0,2,2,708.398386256723,0.0,23504.66781315644,0,1,3,4,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.018847320180038298,23504.66781315644,6,3,6,6_0,6_4,6_0_0 -11851,2,27.0,0.0,6,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,784.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,131667,2,1,0,1,1,300.0,0.0,272.0,12,1.0,0.0,1.0,1.0,1.0,2,2,616.539213793139,0.0,11087.01600048549,0,4,2,3,18.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07071334613079565,11087.01600048549,2,1,2_0,2_0_0,2_4_0,2_0_0 -11852,2,55.0,0.0,5,111,500.0,800.0,0.0,56,52,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,3,50.0,2,,3,112893,2,1,0,0,1,,0.0,450.0,43,2.0,1.0,3.0,2.0,1.5,5,5,700.893118087362,500.0,38664.51010815079,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03362256488867163,25776.340072100527,7,4,7,7_0,7_4,7_0_0 -11853,2,39.0,0.0,5,111,200.0,800.0,0.0,0,52,0.0,0.0,276.4348455151861,1000.0,0.0,1450.922320677959,50,2,2,2,2,1,2,2,2,1,5.0,2,,3,118065,2,3,0,0,1,,0.0,378.0,32,1.0,0.0,2.0,2.0,1.3,1,1,740.307935606965,200.0,19042.351972579883,0,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.05251452139105266,14647.963055830678,3,2,3_0,3_0_0,3_4_0,3_0_0 -11854,2,27.0,0.0,5,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,,3,116622,2,1,0,1,1,,0.0,303.0,12,1.0,0.0,1.0,1.0,1.0,3,2,846.97624507377,0.0,15039.58751463351,0,1,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026596474112790678,15039.58751463351,3,2,3_0,3_0_0,3_4_0,3_0_0 -11855,2,61.0,0.0,6,112,1400.0,0.0,0.0,56,78,0.0,414.0690019277831,1935.0439186063027,1920.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,113055,2,1,2,0,1,,250.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,735.122516455276,1400.0,39213.25323548153,1,5,0,1,90.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04896303778903804,26142.168823654352,7,4,7,7_1,7_1,7_0_0 -11856,2,62.0,0.0,1,112,1320.0,0.0,0.0,75,52,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,116853,1,2,2,0,2,,320.0,,42,1.0,1.0,5.0,2.0,1.5,5,3,555.455926044537,1320.0,31840.09335519934,5,1,0,1,70.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04145716487933758,21226.728903466228,5,3,5,5_1,5_1,5_1_0 -11857,1,48.0,410.0,1,112,200.0,0.0,0.0,85,62,2987.1697540360015,0.0,276.4348455151861,2280.0,137.62616033521533,0.0,60,2,2,1,2,2,2,1,2,0,,1,,1,112686,2,1,1,0,1,,180.0,,42,1.0,0.0,5.0,8.0,3.6999999999999993,1,1,580.340034337408,200.0,21757.65966458289,6,4,1,2,120.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.10479068223092868,5880.448557995377,1,1,1_1,1_1_1,1_1_1,1_1_0 -11858,2,42.0,0.0,1,112,1400.0,0.0,0.0,53,53,0.0,0.0,1935.0439186063027,1553.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,1,,1,129125,1,1,2,0,2,,160.0,,43,3.0,3.0,4.0,4.0,2.5,1,1,541.389309413672,1400.0,49491.81401564421,1,1,1,2,100.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031378926614189194,19796.725606257685,5,3,5,5_1,5_1,5_1_0 -11859,2,48.0,0.0,1,112,338.0,571.0,0.0,0,37,0.0,0.0,467.17488892066456,909.0,0.0,1035.5958063838934,60,0,0,0,0,0,0,0,0,2,45.0,2,,1,105992,2,1,0,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,2,1,805.673271208953,338.0,43083.03063969016,0,1,1,2,69.0,10,5,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0210987942701177,43083.03063969016,9,5,9,9_0,9_2,9_1_0 -11860,2,54.0,0.0,2,112,1200.0,0.0,0.0,77,38,0.0,0.0,1658.6090730911167,1323.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,2,132770,2,1,0,1,1,750.0,0.0,282.0,42,1.0,0.0,3.0,2.0,1.5,3,3,217.905217718517,1200.0,49418.17242277629,5,1,2,3,65.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02677152826862217,32945.44828185086,8,4,8,8_0,8_2,8_0_1 -11861,1,67.0,206.0,5,112,360.0,0.0,0.0,0,77,0.0,0.0,497.582721927335,360.0,0.0,0.0,31,2,1,2,2,1,2,2,2,0,,2,,3,117830,2,1,0,1,1,670.0,0.0,367.0,11,0.0,4.0,4.0,1.0,1.0,1,1,259.18422567105,360.0,10156.728888888889,0,5,2,3,75.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03544448256306493,10156.728888888889,2,1,2_1,2_0_1,2_2_1,2_0_0 -11862,1,32.0,342.0,5,112,600.0,0.0,0.0,0,68,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,3,101787,2,1,0,1,1,600.0,0.0,283.0,32,1.0,1.0,3.0,5.0,2.2,2,2,174.795412860792,600.0,13548.08046604486,0,1,2,3,74.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044286716594558295,6158.2183936567535,1,1,1_1,1_0_1,1_2_1,1_0_0 -11863,1,47.0,348.0,2,112,220.0,0.0,0.0,0,47,0.0,0.0,304.0783300667047,220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,2,,2,112492,2,1,0,1,1,530.0,0.0,314.0,32,1.0,0.0,3.0,3.0,1.6,2,2,212.390911262603,220.0,23382.198723904075,0,1,2,3,65.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009408867087212364,14613.874202440047,3,2,3_1,3_0_1,3_2_1,3_0_1 -11864,2,76.0,0.0,2,112,720.0,0.0,0.0,77,78,0.0,0.0,995.16544385467,720.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,113959,2,2,0,1,1,1450.0,0.0,393.0,41,1.0,1.0,4.0,3.0,2.0,1,1,216.46503443044,720.0,24546.244700083713,5,5,2,3,87.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029332389080173413,12273.122350041856,2,1,2_0,2_0_0,2_2_0,2_0_1 -11865,1,67.0,215.0,2,112,224.0,0.0,0.0,78,77,0.0,0.0,309.60702697700845,224.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,127008,2,1,0,1,1,348.0,0.0,202.0,41,0.0,4.0,1.0,2.0,1.5,1,1,241.133702614432,224.0,10401.983616883506,5,5,2,3,30.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021534354239553365,6934.655744589004,1,1,1_1,1_0_1,1_2_1,1_0_1 -11866,1,47.0,215.0,2,112,250.0,0.0,0.0,62,46,0.0,0.0,345.54355689398267,250.0,0.0,0.0,31,2,1,2,2,1,2,2,2,0,,2,,2,123495,2,3,0,1,1,220.0,0.0,202.0,43,2.0,0.0,1.0,2.0,1.5,2,2,241.133702614432,250.0,41410.52996908028,4,4,2,3,20.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.00603711182123643,27607.019979386852,7,4,7,7_0,7_2,7_0_1 -11867,2,40.0,0.0,2,112,0.0,0.0,0.0,85,42,0.0,0.0,0.0,369.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,116924,2,2,0,1,2,,530.0,,42,1.0,0.0,5.0,7.0,3.3999999999999995,1,1,835.531056157738,0.0,12652.850686666821,6,1,1,2,80.0,10,5,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02916338848358028,3721.4266725490656,1,1,1_0,1_0_0,1_2_0,1_0_1 -11868,2,51.0,0.0,6,112,150.0,450.0,0.0,0,47,0.0,0.0,207.32613413638958,600.0,0.0,816.143805381352,70,0,0,0,0,0,0,0,0,2,15.0,2,,4,113057,2,1,0,0,1,,0.0,271.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1084.71606928514,150.0,22372.390907394212,0,1,2,3,34.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0268187697275438,22372.390907394212,6,3,6,6_0,6_2,6_0_0 -11869,1,29.0,245.0,2,112,390.0,1360.0,0.0,85,56,0.0,0.0,539.0479487546129,1750.0,0.0,2466.5679451525307,41,2,2,2,2,1,2,2,2,3,60.0,1,,2,120224,2,2,5,0,1,,360.0,550.0,42,1.0,0.0,3.0,4.0,2.1,2,2,819.294746987009,390.0,18290.42866212325,6,1,2,3,68.0,10,5,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.09567845742314335,8709.727934344404,1,1,1_1,1_1_1,1_2_1,1_0_1 -11870,2,24.0,0.0,9,112,0.0,0.0,0.0,55,63,0.0,0.0,0.0,538.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,30.0,2,2008.0,6,127037,2,1,0,1,1,516.0,0.0,620.0,43,2.0,0.0,2.0,2.0,1.5,1,1,833.345543321101,0.0,30705.959733256284,1,1,2,3,42.0,10,5,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017521028643091578,20470.639822170855,5,3,5,5_0,5_2,5_0_0 -11871,2,36.0,0.0,1,112,900.0,4500.0,0.0,37,43,0.0,0.0,1243.9568048183376,5400.0,0.0,8161.43805381352,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,112556,2,1,1,0,2,,900.0,,43,2.0,0.0,10.0,6.0,2.6999999999999997,2,2,605.403171411673,900.0,95947.84135815922,1,1,1,2,200.0,10,5,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056280578317990416,35536.23754005897,9,5,9,9_1,9_2,9_1_0 -11872,1,95.0,280.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,454.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,102472,2,1,0,1,1,568.0,0.0,350.0,11,0.0,3.0,2.0,1.0,1.0,1,1,891.896907693098,0.0,10737.223298920999,0,5,2,3,55.0,10,5,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.042282812544805995,10737.223298920999,2,1,2_1,2_0_1,2_2_1,2_1_0 -11873,2,49.0,0.0,1,112,1560.0,0.0,0.0,0,68,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,1,133450,1,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,778.34598013983,1560.0,10443.60263269131,0,1,0,1,65.0,10,5,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1493737415014984,10443.60263269131,2,1,2_0,2_0_0,2_2_0,2_1_0 -11874,2,35.0,0.0,6,111,189.0,0.0,0.0,55,46,0.0,248.44140115666985,261.2309290118509,487.0,99.77896624303112,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,4,120290,2,1,1,0,1,,502.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,525.856013554263,189.0,73847.06798331506,1,1,1,2,116.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006594710031142093,35165.27046824527,9,5,9,9_1,9_4,9_0_0 -11875,2,41.0,0.0,6,111,1462.0,0.0,0.0,54,37,0.0,41.40690019277831,2020.7387207160104,1502.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,1.0,1,,4,109502,2,2,4,0,1,,490.0,,43,2.0,0.0,4.0,4.0,2.1,5,5,556.395271145212,1462.0,59754.7737831407,1,1,1,2,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025136067043797873,28454.65418244795,8,4,8,8_1,8_4,8_0_0 -11876,2,41.0,0.0,6,111,4000.0,0.0,0.0,54,37,0.0,414.0690019277831,5528.696910303723,4535.0,232.24414556567586,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,129374,2,1,4,0,1,,330.0,,43,2.0,0.0,4.0,5.0,2.6,5,4,132.138024688729,4000.0,70333.91870566685,1,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06447813634525404,27051.507194487247,7,4,7,7_1,7_4,7_0_0 -11877,1,48.0,280.0,5,111,500.0,0.0,0.0,53,31,0.0,0.0,691.0871137879653,640.0,240.84578058662683,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,104133,2,1,0,1,1,,0.0,444.0,43,2.0,2.0,3.0,3.0,1.8,2,2,179.571019319297,500.0,33844.43596597805,4,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018910050699126935,18802.464425543363,5,3,5,5_0,5_4,5_0_0 -11878,2,61.0,0.0,5,111,500.0,0.0,0.0,77,78,0.0,0.0,691.0871137879653,790.0,0.0,0.0,70,2,1,2,1,2,2,2,2,0,,2,,3,115392,1,1,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,181.703846113599,500.0,32556.309557058994,5,5,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02426564960059206,21704.206371372664,6,3,6,6_0,6_4,6_0_0 -11880,2,31.0,0.0,2,111,603.0,360.0,0.0,55,65,0.0,0.0,833.4510592282861,963.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,114705,2,1,0,1,1,1046.0,0.0,409.0,43,2.0,0.0,4.0,3.0,1.8,2,2,610.061721951599,603.0,31448.385539267176,4,1,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030621603732171754,17471.325299592874,4,2,4_0,4_0_0,4_4_0,4_0_1 -11881,2,61.0,0.0,2,111,380.0,0.0,0.0,86,42,0.0,0.0,525.2262064788536,1221.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,13.0,8,,2,115469,2,3,0,0,2,672.0,0.0,600.0,42,1.0,4.0,4.0,2.0,1.5,2,2,846.767644948879,380.0,28958.11395257613,7,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0421643482030493,19305.40930171742,5,3,5,5_0,5_4,5_0_1 -11882,2,53.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1308.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113830,2,1,0,1,2,708.0,0.0,595.0,12,1.0,3.0,3.0,1.0,1.0,1,1,905.364797395799,0.0,31893.68759300456,0,1,2,3,68.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04101125014740822,31893.68759300456,8,4,8,8_0,8_4,8_0_1 -11883,2,47.0,0.0,2,111,550.0,1500.0,0.0,43,21,0.0,0.0,760.1958251667618,2050.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,2,105548,2,1,1,0,1,,660.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,623.431682596642,550.0,66550.21105998014,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030803809144232214,28934.87437390441,8,4,8,8_1,8_4,8_0_1 -11885,1,46.0,220.0,2,111,1500.0,0.0,0.0,0,52,0.0,0.0,2073.261341363896,3933.0,0.0,0.0,43,2,2,2,2,1,2,2,2,2,10.0,2,,2,124604,1,2,0,0,1,,0.0,558.0,32,1.0,1.0,5.0,6.0,3.1,1,1,233.174248886543,1500.0,26615.165819632806,0,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,1,0.14777289108974115,8585.537361171873,1,1,1_1,1_0_1,1_4_1,1_0_1 -11886,2,47.0,0.0,1,111,460.0,675.0,0.0,45,48,0.0,0.0,635.800144684928,1135.0,0.0,1224.215708072028,70,0,0,0,0,0,0,0,0,3,100.0,1,,1,102112,2,3,3,0,1,,428.0,,43,2.0,0.0,4.0,4.0,2.5,5,4,189.161624779252,460.0,48739.272708204386,1,1,1,2,92.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02328717555543136,19495.709083281756,5,3,5,5_1,5_4,5_1_0 -11887,2,82.0,0.0,2,111,816.0,360.0,0.0,0,72,0.0,0.0,1127.8541697019593,1176.0,0.0,652.9150443050816,33,1,1,2,2,2,2,2,1,0,,2,,2,107621,2,1,0,1,1,1120.0,0.0,421.0,11,0.0,3.0,5.0,1.0,1.0,3,2,195.955153969612,816.0,18599.809402719307,0,5,2,3,91.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06322645434356268,18599.809402719307,4,2,4_0,4_0_0,4_4_0,4_0_1 -11888,1,38.0,280.0,2,111,450.0,1600.0,0.0,85,63,0.0,0.0,621.9784024091688,2050.0,0.0,2901.844641355918,70,1,2,2,1,1,2,2,2,0,,2,,2,104183,1,1,0,0,1,,0.0,350.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,186.489759214449,450.0,19005.72832939728,6,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.10786221735207822,7039.158640517511,1,1,1_1,1_0_1,1_4_1,1_0_1 -11889,1,91.0,199.0,2,111,284.0,180.0,0.0,0,77,0.0,0.0,392.5374806315643,464.0,0.0,326.4575221525408,10,1,1,2,1,1,2,2,2,0,,2,,2,104073,2,2,0,1,1,752.0,0.0,304.0,11,0.0,2.0,3.0,1.0,1.0,2,2,190.468847334169,284.0,12718.450036768347,0,5,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03648243289540795,12718.450036768347,2,1,2_1,2_0_1,2_4_1,2_0_1 -11890,1,27.0,401.0,2,111,279.0,391.0,0.0,0,56,0.0,62.110350289167464,385.6266094936846,730.0,0.0,709.1382842313525,50,1,1,2,1,1,2,2,2,0,,2,,2,108782,1,3,0,1,1,906.0,0.0,358.0,32,1.0,0.0,4.0,4.0,1.9,2,2,169.590290574531,279.0,15356.033544298652,0,4,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04753831761920268,8082.122918051923,1,1,1_1,1_0_1,1_4_1,1_0_1 -11891,2,43.0,0.0,2,111,754.0,0.0,0.0,0,52,0.0,0.0,1042.1593675922516,754.0,0.0,0.0,10,2,1,2,2,1,2,2,2,2,20.0,2,,2,122898,2,2,0,1,1,624.0,0.0,262.0,12,1.0,0.0,2.0,1.0,1.0,1,1,201.179888243419,754.0,17805.008220472937,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04234763560137083,17805.008220472937,4,2,4_0,4_0_0,4_4_0,4_0_1 -11892,1,26.0,329.0,2,111,362.0,0.0,0.0,0,54,0.0,0.0,500.3470703824869,362.0,0.0,0.0,31,1,1,2,2,1,2,2,2,2,12.0,2,,2,121971,2,2,0,1,2,752.0,0.0,294.0,32,1.0,0.0,3.0,3.0,1.6,2,2,166.670184979314,362.0,27112.647471219716,0,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.013351702388498423,16945.40466951232,4,2,4_1,4_0_1,4_4_1,4_0_1 -11895,2,83.0,0.0,1,111,0.0,1500.0,0.0,0,78,0.0,0.0,0.0,1525.0,0.0,2720.4793512711735,60,0,0,0,0,0,0,0,0,0,,2,,1,101115,1,2,0,0,1,,87.0,,11,0.0,2.0,4.0,1.0,1.0,4,3,653.241747158274,0.0,25982.765303087283,0,5,0,1,76.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.058692751991982886,25982.765303087283,7,4,7,7_0,7_4,7_1_0 -11896,2,61.0,0.0,1,111,561.0,1765.0,0.0,35,45,0.0,0.0,775.399741670097,2326.0,0.0,3201.097369995747,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,122327,2,1,0,0,1,,199.0,770.0,43,2.0,1.0,4.0,3.0,2.0,2,2,750.803673054516,561.0,42805.93234487548,1,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05433826277302094,21402.96617243774,6,3,6,6_0,6_4,6_1_0 -11897,2,50.0,0.0,5,111,500.0,200.0,0.0,0,85,0.0,0.0,691.0871137879653,700.0,0.0,362.73058016948977,70,2,1,2,1,1,2,2,2,0,,2,,3,127561,1,3,0,1,1,592.0,0.0,327.0,31,1.0,0.0,3.0,2.0,1.5,2,2,182.202259085973,500.0,9302.213166257538,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.07525090937919494,6201.475444171691,1,1,1_0,1_0_0,1_4_0,1_0_0 -11898,2,43.0,0.0,5,111,156.0,50.0,0.0,0,42,0.0,0.0,215.61917950184517,206.0,0.0,90.68264504237244,50,2,1,2,2,1,2,2,2,1,20.0,2,,3,131322,2,3,0,1,1,443.0,0.0,235.0,12,1.0,0.0,2.0,1.0,1.0,1,1,216.735545864002,156.0,21375.82913318757,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009637053080676512,21375.82913318757,6,3,6,6_0,6_4,6_0_0 -11899,1,32.0,387.0,5,111,400.0,144.0,0.0,0,85,0.0,0.0,552.8696910303722,544.0,0.0,261.1660177220326,70,2,2,2,1,1,2,2,2,0,,2,,3,113039,1,3,0,1,1,592.0,0.0,356.0,31,0.0,0.0,3.0,3.0,1.6,1,1,179.557478812386,400.0,18619.447880847532,0,6,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.02921676321882633,11637.154925529707,2,1,2_1,2_0_1,2_4_1,2_0_0 -11900,2,39.0,0.0,5,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,110113,1,1,0,1,1,624.0,0.0,436.0,42,1.0,1.0,4.0,4.0,2.1,2,2,196.506661985738,0.0,27242.218606205322,6,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04588466226151165,12972.485050573963,2,1,2_0,2_0_0,2_4_0,2_0_0 -11901,1,60.0,307.0,2,111,495.0,144.0,0.0,0,78,0.0,0.0,684.1762426500857,639.0,0.0,261.1660177220326,50,0,0,0,0,0,0,0,0,0,,2,,2,112407,2,2,0,1,1,514.0,0.0,355.0,11,0.0,4.0,3.0,1.0,1.0,2,2,220.698940222995,495.0,7204.897959183673,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08868966689326989,7204.897959183673,1,1,1_1,1_0_1,1_4_1,1_0_1 -11903,2,66.0,0.0,2,111,1392.0,201.0,0.0,22,78,0.0,0.0,1923.9865247856953,1593.0,0.0,364.5442330703372,33,0,0,0,0,0,0,0,0,0,,2,,2,107554,2,2,0,0,1,,0.0,700.0,42,3.0,0.0,4.0,4.0,2.5,3,2,926.157279701057,1392.0,46299.0,1,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03440679064342642,18519.6,4,2,4_0,4_0_0,4_4_0,4_0_1 -11904,2,30.0,0.0,1,111,300.0,1237.0,0.0,45,45,0.0,0.0,414.65226827277917,1537.0,0.0,2243.4886383482944,71,2,2,2,2,1,2,2,2,2,5.0,2,,1,103272,2,1,0,0,1,,540.0,510.0,43,2.0,0.0,3.0,3.0,1.8,2,2,564.376292136383,300.0,44409.74398179684,1,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.03460952174437219,24672.079989887134,7,4,7,7_0,7_4,7_1_0 -11906,2,35.0,0.0,9,111,1000.0,0.0,0.0,43,38,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,110.0,2,2007.0,6,123968,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,605.194820651159,1000.0,77213.20239832673,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012951153027447425,36768.19161825082,9,5,9,9_0,9_4,9_0_0 -11907,2,26.0,0.0,7,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,812.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,126726,2,2,0,0,1,,0.0,675.0,12,1.0,0.0,3.0,1.0,1.0,2,2,674.964975921434,0.0,41452.836250972156,0,1,2,3,53.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019588526948646535,41452.836250972156,9,5,9,9_0,9_4,9_0_0 -11908,2,47.0,0.0,7,111,300.0,380.0,0.0,52,42,0.0,0.0,414.65226827277917,680.0,0.0,689.1881023220305,60,0,0,0,0,0,0,0,0,2,15.0,2,,5,131304,2,2,0,0,1,,0.0,380.0,43,2.0,0.0,2.0,2.0,1.5,2,2,622.243292893248,300.0,45103.772008379434,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015076344388085076,30069.18133891962,8,4,8,8_0,8_4,8_0_0 -11909,2,43.0,0.0,9,111,1500.0,0.0,0.0,52,62,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,15.0,1,2005.0,6,113512,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,3.0,1.8,4,3,516.416009124108,1500.0,61308.55892968164,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024466404465980637,34060.3105164898,9,5,9,9_1,9_4,9_0_0 -11910,2,28.0,0.0,6,111,1320.0,0.0,0.0,0,55,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,127346,2,2,0,0,1,,280.0,605.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1048.89487248978,1320.0,10773.3333827099,0,4,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12252475191368953,10773.3333827099,2,1,2_0,2_0_0,2_4_0,2_0_0 -11911,2,83.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,2710.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104949,2,2,2,0,1,,179.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,775.766444242023,0.0,18518.866400392424,0,5,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14633725096383726,18518.866400392424,4,2,4_0,4_1_0,4_4_0,4_0_1 -11912,2,60.0,0.0,1,111,730.0,1100.0,0.0,75,37,0.0,0.0,1008.9871861304293,1830.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,105829,2,1,2,0,1,,540.0,,42,1.0,1.0,3.0,2.0,1.5,4,4,492.071130852758,730.0,102121.02424379585,5,1,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017919914273785576,68080.68282919723,10,5,10,10_1,10_4,10_1_0 -11913,2,62.0,0.0,7,111,615.0,0.0,0.0,77,78,0.0,0.0,850.0371499591973,885.0,464.48829113135173,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,117021,1,1,2,0,1,,350.0,,41,0.0,3.0,4.0,2.0,1.5,4,3,518.726735823067,615.0,28935.954004139538,5,5,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030584787350484217,19290.636002759693,5,3,5,5_1,5_4,5_0_0 -11914,2,38.0,0.0,6,111,950.0,1200.0,0.0,53,53,0.0,82.81380038555662,1313.065516197134,2230.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,114064,1,1,2,0,1,,700.0,,43,3.0,0.0,7.0,4.0,2.3,1,1,589.650013653212,950.0,79477.65002010453,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028058202519021424,34555.5000087411,9,5,9,9_1,9_4,9_0_0 -11915,2,48.0,0.0,1,111,600.0,529.0,0.0,54,45,4480.754631054002,0.0,829.3045365455583,4129.0,0.0,959.4223845483004,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,118283,2,2,1,0,1,,1004.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,505.684049929037,600.0,54883.510066139585,1,1,0,1,124.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07523206870377244,21953.404026455835,6,3,6,6_1,6_4,6_1_0 -11916,2,31.0,0.0,9,111,1480.0,0.0,0.0,0,22,0.0,0.0,2045.6178568123773,1480.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,122370,2,1,1,0,1,,600.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,733.5296206145,1480.0,78634.98149549196,0,1,1,2,190.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018821140055648725,78634.98149549196,10,5,10,10_1,10_4,10_0_0 -11917,2,20.0,0.0,6,111,770.0,1080.0,0.0,0,53,0.0,0.0,1064.2741552334664,1850.0,0.0,1958.7451329152448,70,0,0,0,0,0,0,0,0,0,,1,,4,132781,2,2,2,0,1,,417.0,,22,1.0,1.0,5.0,2.0,1.5,1,1,590.303938503157,770.0,22605.353381804267,0,1,0,1,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08183902143680359,15070.23558786951,3,2,3_0,3_1_0,3_4_0,3_0_0 -11918,2,42.0,0.0,9,111,1400.0,1400.0,0.0,43,64,0.0,0.0,1935.0439186063027,2800.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,109806,2,1,1,0,1,,650.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,602.389100575307,1400.0,42642.77474978857,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06566176841045933,20306.083214185033,5,3,5,5_1,5_4,5_0_0 -11919,2,44.0,0.0,1,111,480.0,1500.0,0.0,54,46,0.0,0.0,663.4436292364467,1980.0,0.0,2720.4793512711735,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,115414,2,2,2,0,1,,460.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,394.721050623909,480.0,63917.43316724173,4,1,1,2,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030977464236075863,24583.628141246823,7,4,7,7_1,7_4,7_1_0 -11920,2,31.0,0.0,6,111,0.0,0.0,1288.0,46,46,0.0,0.0,658.0563752707322,1288.0,0.0,1472.5005577525894,50,0,0,0,0,0,0,0,0,2,5.0,2,,4,100020,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,4,3,672.383997903037,0.0,20704.122314570963,1,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06220983340566641,11502.290174761645,2,1,2_0,2_0_0,2_4_0,2_0_0 -11921,2,72.0,0.0,6,111,0.0,0.0,0.0,86,77,0.0,0.0,0.0,948.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,123574,2,1,2,0,1,,327.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,642.768754517235,0.0,27468.116129041606,5,5,0,1,93.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034512741811139155,18312.07741936107,4,2,4_0,4_1_0,4_4_0,4_0_0 -11922,2,55.0,0.0,5,111,840.0,1092.0,0.0,78,62,0.0,0.0,1161.0263511637818,1932.0,0.0,1980.508967725414,44,2,2,2,2,1,2,2,2,2,10.0,1,,3,132691,1,2,3,0,2,,576.0,490.0,42,3.0,1.0,4.0,5.0,2.8,2,2,570.936720802786,840.0,64093.750721665805,5,1,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.030143344370497576,22890.62525773779,6,3,6,6_1,6_4,6_0_0 -11923,2,27.0,0.0,1,111,2600.0,0.0,0.0,55,43,0.0,341.60692659042104,3593.6529916974196,2930.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,117730,1,2,3,0,1,,350.0,,43,2.0,0.0,6.0,2.0,1.5,3,2,658.738911968695,2600.0,91712.8074578116,1,1,1,2,148.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03194755543109741,61141.87163854107,10,5,10,10_1,10_4,10_1_0 -11924,2,53.0,0.0,1,111,2500.0,0.0,0.0,35,38,4875.061038586754,0.0,3455.435568939826,5834.0,120.42289029331342,0.0,12,0,0,0,0,0,0,0,0,3,70.0,1,,1,114796,2,1,1,0,2,,690.0,,43,2.0,1.0,7.0,4.0,2.5,1,1,480.04053833111,2500.0,176316.88424227855,1,1,0,1,200.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03308815276013754,70526.75369691142,10,5,10,10_1,10_4,10_1_0 -11925,2,51.0,0.0,7,111,559.0,0.0,0.0,0,31,0.0,0.0,772.6353932149452,559.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,102346,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,619.382893952985,559.0,8988.345298929888,0,1,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06219164722861193,8988.345298929888,1,1,1_0,1_0_0,1_4_0,1_0_0 -11926,2,49.0,0.0,2,111,759.0,832.0,0.0,56,47,0.0,0.0,1049.0702387301312,1591.0,0.0,1508.9592135050775,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,104388,2,1,2,0,1,,756.0,,43,4.0,0.0,4.0,4.0,2.5,2,2,594.47005682375,759.0,67040.28929052473,1,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023731997830517524,26816.11571620989,7,4,7,7_1,7_4,7_0_1 -11927,2,56.0,0.0,6,111,0.0,0.0,1620.0,21,63,0.0,0.0,827.6796024367906,1620.0,0.0,1852.058154937263,50,1,2,2,2,1,2,2,2,3,75.0,1,,4,129033,2,1,3,0,1,,540.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,626.12686049364,0.0,42779.00766533609,1,1,1,2,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03786904111178552,28519.338443557393,8,4,8,8_1,8_4,8_0_0 -11928,1,46.0,68.0,9,111,1300.0,0.0,0.0,52,38,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,104472,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,4.0,2.3,3,2,593.921293598476,1300.0,70188.4197039091,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01852157386480661,30516.704219090912,8,4,8,8_0,8_4,8_0_0 -11929,2,64.0,0.0,7,111,312.0,672.0,0.0,0,77,0.0,0.0,431.23835900369033,984.0,0.0,1218.7747493694856,50,0,0,0,0,0,0,0,0,0,,2,,5,124514,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,5,4,768.393009598126,312.0,27032.53019795494,0,5,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036400588209624614,27032.53019795494,7,4,7,7_0,7_4,7_0_0 -11930,2,44.0,0.0,8,111,930.0,780.0,0.0,85,38,0.0,0.0,1285.4220316456153,1710.0,0.0,1414.6492626610102,70,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,112818,2,1,2,0,1,,780.0,,42,1.0,2.0,5.0,6.0,3.0999999999999996,2,2,534.262681240805,930.0,56701.411519846726,6,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03015797939000977,18290.777909627977,4,2,4_0,4_1_0,4_4_0,4_0_0 -11931,2,42.0,0.0,9,111,670.0,1070.0,0.0,0,38,0.0,0.0,926.0567324758734,1740.0,0.0,1940.6086039067702,20,0,0,0,0,0,0,0,0,3,75.0,1,2004.0,6,106942,2,1,1,0,1,,360.0,,32,1.0,0.0,5.0,3.0,1.8,2,2,590.325664661622,670.0,53474.975885435626,0,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03253858409824742,29708.319936353124,8,4,8,8_1,8_4,8_0_0 -11932,2,45.0,0.0,8,111,500.0,984.0,0.0,62,55,0.0,434.77245202417225,691.0871137879653,1904.0,0.0,1784.6344544338897,50,0,0,0,0,0,0,0,0,3,60.0,1,2000.0,6,127178,2,1,2,0,1,,585.0,,43,2.0,0.0,6.0,5.0,3.0,2,2,456.499776196013,500.0,62111.546368373434,1,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03065452578990204,20703.84878945781,5,3,5,5_1,5_4,5_0_0 -11933,2,72.0,0.0,7,111,838.0,1989.0,0.0,74,23,0.0,0.0,1158.2620027086298,2827.0,0.0,3607.355619785576,20,1,2,2,1,1,2,2,2,0,,1,,5,123783,2,1,2,0,1,,660.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,583.225800793674,838.0,85167.7181365229,5,1,0,1,104.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03319332796339982,56778.478757681936,10,5,10,10_1,10_4,10_0_0 -11934,1,50.0,117.0,1,111,1200.0,0.0,0.0,0,68,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,41,2,2,2,1,1,2,2,2,0,,2,,1,133053,2,2,0,0,2,,0.0,418.0,32,2.0,4.0,2.0,3.0,2.0,4,4,762.687295067343,1200.0,6162.764278952409,0,1,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.19471781585064693,3081.3821394762044,1,1,1_1,1_0_1,1_4_1,1_1_0 -11935,1,64.0,327.0,2,112,480.0,240.0,0.0,85,78,0.0,0.0,663.4436292364467,720.0,0.0,435.27669620338776,50,0,0,0,0,0,0,0,0,0,,2,,2,106948,1,1,0,1,2,1200.0,742.0,348.0,41,0.0,5.0,4.0,3.0,2.0,1,1,226.38188263588,480.0,9383.668553240219,6,6,2,3,73.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07672905281286614,4691.834276620109,1,1,1_1,1_0_1,1_2_1,1_0_1 -11936,2,75.0,0.0,2,112,432.0,174.0,0.0,77,78,0.0,1954.4056890991362,597.099266312802,2494.0,0.0,315.5756047474561,31,0,0,0,0,0,0,0,0,0,,2,,2,110736,2,1,0,1,1,,260.0,,41,0.0,1.0,4.0,3.0,2.0,3,2,232.803997275782,432.0,18865.47379773869,7,5,0,1,82.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13219917118110988,9432.736898869345,1,1,1_0,1_0_0,1_2_0,1_0_1 -11937,1,79.0,178.0,2,112,480.0,120.0,0.0,0,78,0.0,0.0,663.4436292364467,600.0,0.0,217.63834810169388,42,2,1,2,2,1,2,2,2,0,,2,,2,115024,2,2,0,1,1,744.0,0.0,164.0,11,0.0,1.0,3.0,1.0,1.0,3,3,861.889270364735,480.0,5173.8559951950665,0,5,2,3,52.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.11596766523019135,5173.8559951950665,1,1,1_1,1_0_1,1_2_1,1_0_1 -11938,2,77.0,0.0,2,112,202.0,0.0,0.0,0,77,0.0,0.0,279.199193970338,202.0,0.0,0.0,50,2,2,2,1,1,1,2,2,0,,2,,2,111907,1,2,0,1,1,67.0,0.0,263.0,11,0.0,3.0,3.0,1.0,1.0,5,2,861.889270364735,202.0,19000.480570653042,0,5,2,3,66.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010631310047599355,19000.480570653042,5,3,5,5_0,5_2,5_0_1 -11939,2,56.0,0.0,6,112,902.0,1150.0,0.0,0,52,0.0,0.0,1246.7211532734893,2052.0,0.0,2085.7008359745664,70,1,2,2,1,1,1,1,2,3,60.0,2,,4,124609,1,2,0,1,1,809.0,0.0,682.0,12,1.0,4.0,3.0,1.0,1.0,2,2,808.906885580311,902.0,21867.094072537624,0,1,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.0938396292252229,21867.094072537624,6,3,6,6_0,6_2,6_0_0 -11940,2,23.0,0.0,7,112,0.0,0.0,0.0,0,54,0.0,0.0,0.0,391.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,2.0,2,,5,104835,2,1,0,0,1,,404.0,540.0,32,1.0,0.0,2.0,3.0,1.6,2,2,1024.99910634796,0.0,10021.967775287834,0,1,2,3,54.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.039014294275035256,6263.729859554896,1,1,1_0,1_0_0,1_2_0,1_0_0 -11941,2,55.0,0.0,7,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1279.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,124273,2,1,2,0,1,,417.0,700.0,43,2.0,1.0,3.0,3.0,2.0,2,2,609.525029355044,0.0,47357.62055559052,1,1,2,3,60.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027007269051844612,23678.81027779526,6,3,6,6_1,6_2,6_0_0 -11942,2,31.0,0.0,2,112,888.0,0.0,0.0,0,46,0.0,0.0,1227.3707140874262,888.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,2,,2,101050,1,2,0,0,2,,240.0,600.0,12,1.0,0.0,2.0,1.0,1.0,2,2,940.847146919866,888.0,29197.61411620509,0,1,2,3,48.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030413443936405316,29197.61411620509,8,4,8,8_0,8_0,8_0_1 -11943,2,43.0,0.0,8,112,1500.0,0.0,0.0,43,45,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,107128,2,1,2,0,1,,1000.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,2,2,527.744826430632,1500.0,74074.78600474156,1,1,1,2,148.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020249805377824302,23895.092259594054,6,3,6,6_1,6_0,6_0_0 -11944,2,42.0,0.0,1,112,1500.0,0.0,0.0,33,37,0.0,517.5862524097289,2073.261341363896,2060.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,1,109982,2,2,3,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,450.708840110865,1500.0,87995.41068386749,1,1,1,2,166.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02341031178774494,38258.87421037717,9,5,9,9_1,9_0,9_1_0 -11945,2,74.0,0.0,2,112,600.0,0.0,0.0,77,72,3733.962192545002,0.0,829.3045365455583,3100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118700,2,1,2,0,1,,200.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,709.533507092162,600.0,36263.64307784359,5,5,0,1,80.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08548506815339914,24175.762051895726,7,4,7,7_1,7_0,7_0_1 -11946,2,40.0,0.0,1,112,382.85,1400.0,0.0,21,52,0.0,517.5862524097289,529.165403027445,2283.0,0.0,2539.1140611864284,50,2,2,2,2,1,2,2,2,2,20.0,1,,1,106663,1,1,1,0,2,,358.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,614.382230098061,382.85,40041.303939312,1,1,1,2,100.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0570161252355866,20020.651969656,5,3,5,5_1,5_2,5_1_0 -11947,2,34.0,0.0,9,112,0.0,0.0,2684.0,43,43,0.0,0.0,1371.2913907039174,2684.0,0.0,3068.471659167663,50,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,103763,2,1,1,0,1,,493.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,693.53152081447,0.0,83767.93799016511,1,1,1,2,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03204089851555279,39889.494281031,9,5,9,9_1,9_2,9_0_0 -11948,2,81.0,0.0,2,112,500.0,0.0,0.0,0,78,2389.735803228801,0.0,691.0871137879653,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116738,2,1,2,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,982.86078728436,500.0,20887.822577488078,0,5,0,1,80.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10053704699039728,20887.822577488078,5,3,5,5_1,5_2,5_0_1 -11949,2,55.0,0.0,1,112,1450.0,0.0,0.0,52,90,0.0,0.0,2004.1526299850993,1650.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,126626,2,1,2,0,1,,500.0,,42,1.0,3.0,4.0,2.0,1.5,3,2,570.219449603841,1450.0,51214.69090745033,7,1,0,1,80.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03221731832730773,34143.12727163355,9,5,9,9_1,9_2,9_1_0 -11950,2,65.0,0.0,5,112,0.0,0.0,0.0,0,77,0.0,807.4345537591771,0.0,2409.0,602.1144514665671,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,122178,2,1,2,0,1,,224.0,,21,0.0,2.0,7.0,2.0,1.5,1,1,695.449705121003,0.0,18032.984146951985,0,5,0,1,90.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13358853866719447,12021.989431301323,2,1,2_0,2_1_0,2_2_0,2_0_0 -11951,1,32.0,122.0,7,112,450.0,1000.0,0.0,62,62,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,119288,2,2,4,0,1,,580.0,495.0,43,2.0,0.0,4.0,4.0,2.1,1,1,713.295919058958,450.0,38201.85528703872,4,1,2,3,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037956271733534414,18191.35966049463,4,2,4_1,4_1_1,4_2_1,4_0_0 -11952,1,27.0,94.0,7,112,0.0,0.0,1150.0,46,46,0.0,0.0,587.5503350631539,1150.0,0.0,1314.7326408505262,20,0,0,0,0,0,0,0,0,0,,2,,5,112393,2,1,0,0,1,,0.0,323.0,43,2.0,0.0,2.0,2.0,1.5,1,1,695.987267008638,0.0,37950.75841412976,1,1,2,3,52.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0303024247223432,25300.50560941984,7,4,7,7_0,7_2,7_0_0 -11953,2,62.0,0.0,7,112,1350.0,0.0,0.0,77,77,0.0,0.0,1865.9352072275062,1950.0,1032.196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,129533,2,1,1,0,1,,355.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,793.399379850071,1350.0,34556.79241478423,5,5,0,1,110.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05642884838946288,23037.86160985615,6,3,6,6_1,6_2,6_0_0 -11954,2,45.0,0.0,1,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1786.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,102457,2,1,1,0,1,,190.0,460.0,12,1.0,0.0,2.0,1.0,1.0,2,2,821.006348592309,0.0,34042.740700573355,0,1,2,3,40.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052463461027094094,34042.740700573355,9,5,9,9_1,9_1,9_1_0 -11955,2,47.0,0.0,1,112,1000.0,0.0,0.0,55,37,1120.1886577635005,0.0,1382.1742275759307,1750.0,0.0,0.0,71,2,2,2,2,2,2,2,1,2,60.0,1,,1,104772,2,2,2,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,860.054499821669,1000.0,116596.94881936812,4,1,1,2,120.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.015008969082982595,64776.08267742673,10,5,10,10_1,10_1,10_1_0 -11956,2,36.0,0.0,7,112,1220.0,0.0,0.0,43,48,0.0,0.0,1686.2525576426353,1292.0,123.8635443016938,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,5,109284,1,2,3,0,2,,300.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,559.392941100538,1220.0,64577.82303579021,1,1,1,2,50.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020006868291053262,30751.34430275724,8,4,8,8_1,8_1,8_0_0 -11957,2,70.0,0.0,6,112,851.0,0.0,0.0,77,72,6261.107804459459,0.0,1176.230267667117,5043.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,111392,2,1,2,0,1,,272.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,890.494326352284,851.0,26454.976743246294,5,5,0,1,100.0,10,1,1,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19062575820587066,17636.651162164195,4,2,4_0,4_1_0,4_1_0,4_0_0 -11958,2,65.0,0.0,5,112,300.0,2120.0,0.0,77,75,0.0,0.0,414.65226827277917,2420.0,0.0,3844.944149796592,71,0,0,0,0,0,0,0,0,0,,1,,3,111261,2,1,2,0,1,,422.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,824.494478810758,300.0,69457.25763008096,5,5,0,1,180.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034841571386082654,46304.83842005397,10,5,10,10_1,10_1,10_0_0 -11959,2,64.0,0.0,5,112,1800.0,0.0,0.0,85,21,0.0,517.5862524097289,2487.913609636675,6300.0,6881.308016760767,0.0,30,0,0,0,0,0,0,0,0,2,60.0,1,,3,115225,2,3,3,0,1,,600.0,,42,1.0,2.0,10.0,5.0,2.4,2,2,658.274661834447,1800.0,27315.823822734965,6,1,0,1,300.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23063554813076914,11381.593259472902,2,1,2_0,2_1_0,2_1_0,2_0_0 -11960,2,26.0,0.0,2,112,620.0,0.0,0.0,54,62,3136.5282417378016,0.0,856.9480210970769,2792.0,123.8635443016938,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131136,2,2,5,0,1,,800.0,562.0,43,2.0,0.0,2.0,3.0,1.8,1,1,764.789536959706,620.0,32989.0,1,1,2,3,48.0,10,1,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08463427203007062,18327.222222222223,4,2,4_0,4_1_0,4_1_0,4_0_1 -11961,2,49.0,0.0,2,112,479.0,0.0,0.0,67,53,0.0,155.27587572291867,662.0614550088708,2393.0,3034.656835391498,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,124934,2,1,2,0,1,,20.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,754.661417890621,479.0,44679.390124280595,1,1,1,2,92.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05355937029005117,29786.26008285373,8,4,8,8_1,8_0,8_0_1 -11962,1,40.0,352.0,9,112,240.0,530.0,0.0,0,63,0.0,0.0,331.72181461822333,770.0,0.0,961.236037449148,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,107070,2,2,0,1,1,720.0,0.0,319.0,32,1.0,0.0,3.0,3.0,2.0,4,3,649.367317248254,240.0,10659.38180919742,0,4,2,3,60.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07223683453533933,5329.69090459871,1,1,1_1,1_0_1,1_2_1,1_0_0 -11963,2,46.0,0.0,8,112,1500.0,0.0,0.0,52,52,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,133318,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,544.447140281841,1500.0,43715.06587438013,1,1,1,2,90.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03431311311094461,19006.550380165278,5,3,5,5_1,5_2,5_0_0 -11964,2,47.0,0.0,7,112,1630.0,0.0,0.0,65,67,0.0,621.1035028916747,2252.943990948767,2310.0,137.62616033521533,0.0,43,0,0,0,0,0,0,0,0,3,90.0,1,,5,111300,2,1,1,0,1,,600.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,530.731142952413,1630.0,37118.39321612547,4,1,1,2,97.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062233297291447914,14847.357286450188,3,2,3_0,3_1_0,3_2_0,3_0_0 -11965,2,38.0,0.0,7,112,1100.0,0.0,0.0,43,38,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,1,,5,126227,2,1,2,0,1,,271.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,621.658540129125,1100.0,73980.85434953282,1,1,0,1,105.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014868711772412052,49320.56956635521,10,5,10,10_1,10_2,10_0_0 -11966,2,42.0,0.0,7,112,2100.0,0.0,0.0,38,45,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,,5,129834,2,2,2,0,2,,600.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,499.156687043609,2100.0,64849.73162162867,1,1,1,2,87.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032382554985001796,24942.204469857184,7,4,7,7_1,7_2,7_0_0 -11967,2,58.0,0.0,8,112,464.0,1047.0,0.0,77,55,0.0,0.0,641.3288415952318,1511.0,0.0,1898.894587187279,70,0,0,0,0,0,0,0,0,3,60.0,1,2000.0,6,116425,2,1,2,0,1,,320.0,,42,1.0,0.0,4.0,3.0,2.0,4,4,670.457280665285,464.0,24498.536105876872,6,1,1,2,87.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061677154645886426,12249.268052938436,2,1,2_0,2_1_0,2_2_0,2_0_0 -11968,2,54.0,0.0,2,112,900.0,0.0,0.0,75,52,0.0,258.79312620486445,1243.9568048183376,1150.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,115445,2,2,2,0,1,,450.0,,42,1.0,0.0,5.0,3.0,2.0,3,1,746.974065834194,900.0,50329.55418787296,5,1,0,1,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022849397705912836,25164.77709393648,7,4,7,7_1,7_2,7_0_1 -11969,2,32.0,0.0,2,112,550.0,0.0,0.0,53,54,0.0,0.0,760.1958251667618,550.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,75.0,1,,2,125483,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,834.122651705954,550.0,51376.48111534381,1,1,1,2,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010705287479016154,28542.48950852434,8,4,8,8_1,8_2,8_0_1 -11970,2,47.0,0.0,7,112,540.0,1450.0,0.0,54,21,0.0,51.75862524097289,746.3740828910024,2040.0,0.0,2629.7967062288008,60,2,2,2,2,1,2,2,2,2,15.0,1,,5,125455,2,1,3,0,1,,580.0,,43,3.0,0.0,6.0,3.0,2.0,5,4,612.634775813094,540.0,82042.99585431044,1,1,1,2,140.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.024865011068374104,41021.49792715522,9,5,9,9_1,9_2,9_0_0 -11971,2,47.0,0.0,7,112,1500.0,0.0,0.0,0,47,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,123527,2,1,1,0,1,,600.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,700.793829728993,1500.0,38902.941038282595,0,1,0,1,90.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038557496167806925,38902.941038282595,9,5,9,9_1,9_2,9_0_0 -11972,2,36.0,0.0,2,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1083.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,118760,2,2,4,0,1,,396.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,860.054499821669,0.0,44131.624725637026,1,1,1,2,86.0,10,5,1,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024540224991328307,24517.56929202057,7,4,7,7_1,7_2,7_0_1 -11973,2,53.0,0.0,1,112,600.0,1400.0,0.0,0,37,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,131276,2,1,1,0,1,,350.0,,32,3.0,0.0,4.0,4.0,2.5,1,1,560.442929593469,600.0,54291.87452310222,0,1,0,1,110.0,10,5,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036837924967003347,21716.749809240886,6,3,6,6_1,6_2,6_1_0 -11974,2,63.0,0.0,6,112,260.0,1600.0,0.0,0,75,0.0,0.0,359.36529916974195,1860.0,0.0,2901.844641355918,70,0,0,0,0,0,0,0,0,0,,1,,4,123940,2,2,1,0,1,,260.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,254.818256885142,260.0,28737.189694874884,0,5,1,2,105.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06472449184311577,28737.189694874884,8,4,8,8_1,8_2,8_0_0 -11975,2,58.0,0.0,6,112,2000.0,0.0,0.0,64,75,0.0,0.0,2764.3484551518613,2635.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,119607,2,1,1,0,1,,600.0,,42,3.0,2.0,4.0,4.0,2.5,1,1,702.310112056389,2000.0,61031.50708022124,1,5,0,1,87.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04317442131220017,24412.602832088498,7,4,7,7_1,7_2,7_0_0 -11977,2,30.0,0.0,2,112,0.0,0.0,356.0,46,55,0.0,0.0,181.88514720215892,356.0,0.0,406.99549577633684,50,2,1,2,1,1,1,2,2,2,5.0,2,,2,113019,2,1,0,1,1,590.0,0.0,168.0,43,2.0,0.0,2.0,2.0,1.5,2,2,227.111467046908,0.0,31879.18480356088,1,1,2,3,50.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011167161337206938,21252.789869040585,5,3,5,5_0,5_2,5_0_1 -11978,2,55.0,0.0,5,112,1000.0,400.0,0.0,85,68,0.0,0.0,1382.1742275759307,1400.0,0.0,725.4611603389795,33,2,2,2,2,1,2,1,2,0,,2,,3,100384,2,2,0,1,1,,0.0,477.0,42,2.0,4.0,4.0,3.0,2.0,3,3,226.274074313476,1000.0,20644.16686578971,6,1,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.06781576651174996,10322.083432894855,2,1,2_0,2_0_0,2_2_0,2_0_0 -11979,1,58.0,250.0,2,112,600.0,200.0,0.0,56,43,0.0,0.0,829.3045365455583,800.0,0.0,362.73058016948977,31,2,2,2,1,1,2,2,2,0,,2,,2,123680,2,1,0,1,1,1367.0,0.0,231.0,43,3.0,0.0,4.0,6.0,3.3,1,1,231.348509022347,600.0,30528.729140727988,1,4,2,3,86.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02620482484915267,9251.130042644845,1,1,1_1,1_0_1,1_2_1,1_0_1 -11980,2,58.0,0.0,2,112,500.0,0.0,0.0,0,56,0.0,0.0,691.0871137879653,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,105307,2,2,0,0,1,,140.0,,12,1.0,3.0,1.0,1.0,1.0,2,2,1507.96572697574,500.0,13946.476264927976,0,1,1,2,17.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03585134986802217,13946.476264927976,3,2,3_0,3_0_0,3_2_0,3_0_1 -11981,1,41.0,196.0,5,111,500.0,0.0,0.0,85,63,0.0,0.0,691.0871137879653,500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,45.0,2,,3,106335,2,1,0,1,1,600.0,0.0,332.0,42,1.0,0.0,3.0,4.0,2.1,2,2,663.315194283623,500.0,22071.820597329446,6,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022653319321583147,10510.390760633069,2,1,2_1,2_0_1,2_4_1,2_0_0 -11982,2,57.0,0.0,5,111,400.0,1200.0,0.0,78,56,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,2,,3,102297,2,1,0,0,1,,0.0,,42,1.0,3.0,4.0,2.0,1.5,3,2,719.756164893238,400.0,19419.411072258492,5,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0823917879922565,12946.274048172329,2,1,2_0,2_0_0,2_4_0,2_0_0 -11983,2,61.0,0.0,7,111,800.0,1000.0,0.0,74,37,0.0,0.0,1105.7393820607444,1800.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,3,40.0,2,,5,116259,1,1,0,0,1,,800.0,,42,1.0,3.0,4.0,3.0,2.0,4,3,625.111969141616,800.0,36142.95335016009,6,1,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04980223897480772,18071.476675080045,4,2,4_0,4_0_0,4_4_0,4_0_0 -11984,2,44.0,0.0,5,111,800.0,0.0,0.0,46,38,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,3,128231,1,3,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,554.964380721911,800.0,56611.28140807401,1,1,1,2,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01413145896192172,31450.71189337445,8,4,8,8_0,8_4,8_0_0 -11985,2,33.0,0.0,5,111,500.0,0.0,0.0,0,35,0.0,0.0,691.0871137879653,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,2,,3,113523,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,767.495807518468,500.0,55390.69398404337,0,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009026787065423609,55390.69398404337,10,5,10,10_0,10_4,10_0_0 -11988,2,24.0,0.0,5,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,291.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,60.0,2,,3,117984,2,1,0,1,1,564.0,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,2,2,689.981409480945,0.0,19836.90810260795,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014669624847520584,19836.90810260795,5,3,5,5_0,5_4,5_0_0 -11989,1,56.0,361.0,5,111,600.0,400.0,0.0,0,68,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,60,2,2,2,2,1,2,2,2,1,10.0,2,,3,120086,1,2,0,1,1,1080.0,0.0,508.0,32,1.0,3.0,5.0,2.0,1.5,1,1,902.918955612104,600.0,14311.619109970325,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06987329611807098,9541.079406646882,1,1,1_1,1_0_1,1_4_1,1_0_0 -11990,2,32.0,0.0,5,111,0.0,0.0,0.0,43,34,0.0,0.0,0.0,1270.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,103972,1,2,3,0,2,,237.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,648.418901496618,0.0,55007.941639884724,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023087575396188945,30559.967577713734,8,4,8,8_1,8_4,8_0_0 -11991,2,53.0,0.0,5,111,0.0,0.0,0.0,52,64,0.0,0.0,0.0,709.0,0.0,0.0,50,2,2,2,2,1,2,1,2,2,15.0,1,,3,116556,2,2,2,0,1,,209.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,609.557968359103,0.0,42680.567624866046,1,1,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.016611775322006982,17072.227049946418,4,2,4_0,4_1_0,4_4_0,4_0_0 -11992,2,61.0,0.0,5,111,0.0,0.0,540.0,0,52,0.0,0.0,275.89320081226356,540.0,0.0,617.352718312421,31,0,0,0,0,0,0,0,0,0,,2,,3,112536,2,1,0,1,1,492.0,0.0,305.0,22,2.0,0.0,3.0,2.0,1.5,4,3,698.63814896512,0.0,39835.42384209985,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013555773929768106,26556.94922806657,7,4,7,7_0,7_4,7_0_0 -11993,2,42.0,0.0,7,111,890.0,0.0,0.0,43,43,1642.9433647198007,0.0,1230.1350625425782,1990.0,0.0,0.0,31,2,1,2,1,2,2,2,2,2,60.0,2,,5,102552,1,3,0,1,1,,240.0,485.0,43,2.0,0.0,4.0,3.0,1.8,4,4,419.211757832146,890.0,44133.060372409134,1,1,2,3,86.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.04509091332456286,24518.36687356063,7,4,7,7_0,7_4,7_0_0 -11994,2,46.0,0.0,5,111,1100.0,0.0,0.0,35,38,0.0,558.9931526025072,1520.3916503335236,1640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,1,,3,113829,2,1,2,0,1,,1200.0,,43,2.0,0.0,6.0,3.0,1.8,4,4,470.884147358253,1100.0,98140.25835746368,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01671077728394095,54522.365754146485,10,5,10,10_1,10_4,10_0_0 -11995,2,43.0,0.0,2,111,1280.0,0.0,0.0,0,62,1326.3033707919847,0.0,1769.1830112971911,2168.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129097,2,1,2,0,1,,677.0,,22,1.0,0.0,5.0,3.0,2.0,2,2,599.819205938477,1280.0,58839.34971746041,0,1,0,1,89.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03684609042095943,29419.674858730206,8,4,8,8_1,8_4,8_0_1 -11996,2,52.0,0.0,7,111,525.0,1407.0,0.0,46,37,0.0,0.0,725.6414694773636,1932.0,0.0,2551.8096314923605,70,0,0,0,0,0,0,0,0,2,90.0,1,,5,125765,2,1,1,0,1,,715.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,491.94493030776,525.0,110881.51757192025,1,1,1,2,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017424003948600914,55440.758785960126,10,5,10,10_1,10_4,10_0_0 -11997,2,59.0,0.0,6,111,750.0,0.0,0.0,0,81,0.0,0.0,1036.630670681948,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,105813,1,1,2,0,1,,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,953.350433062144,750.0,26239.92298729312,0,4,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02858240096067329,26239.92298729312,7,4,7,7_1,7_4,7_0_0 -11998,2,38.0,0.0,6,111,691.0,1570.0,0.0,47,37,0.0,0.0,955.082391254968,2261.0,0.0,2847.435054330495,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,108685,2,2,3,0,1,,650.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,522.338967425285,691.0,52260.876718567044,1,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0432637211996239,24886.13177074621,7,4,7,7_1,7_4,7_0_0 -11999,2,71.0,0.0,6,111,1900.0,0.0,0.0,64,74,0.0,0.0,2626.131032394268,1990.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,105432,2,1,3,0,2,,405.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,490.168588603746,1900.0,29990.223314233623,1,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.066354957719022,19993.48220948908,5,3,5,5_1,5_4,5_0_0 -12000,2,54.0,0.0,6,111,900.0,0.0,0.0,78,54,0.0,921.3035292893175,1243.9568048183376,2110.0,550.5046413408613,0.0,41,0,0,0,0,0,0,0,0,3,75.0,1,,4,125634,2,1,2,0,2,,712.0,,42,1.0,2.0,4.0,3.0,2.0,2,2,483.399828400189,900.0,56463.34588000099,7,1,0,1,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03736937595735627,28231.672940000495,8,4,8,8_1,8_4,8_0_0 -12001,2,53.0,0.0,5,111,95.0,0.0,0.0,75,46,0.0,0.0,131.3065516197134,95.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,112864,2,1,2,0,2,,615.0,,42,1.0,0.0,4.0,3.0,2.0,1,1,495.410324114713,95.0,65265.87824043007,5,1,0,1,106.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0014555844885750823,32632.939120215036,8,4,8,8_1,8_4,8_0_0 -12002,2,35.0,0.0,7,111,1150.0,0.0,0.0,67,46,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,5,127147,1,3,0,0,1,,0.0,590.0,43,2.0,3.0,1.0,3.0,1.8,1,1,827.979476312843,1150.0,102488.06919806494,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011220818276686912,56937.816221147186,10,5,10,10_0,10_4,10_0_0 -12003,2,23.0,0.0,7,111,0.0,0.0,0.0,52,47,0.0,0.0,0.0,592.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,131694,2,1,0,0,1,,0.0,715.0,43,2.0,0.0,2.0,2.0,1.5,2,2,653.108260768726,0.0,41505.32897859337,1,1,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01426322871227759,27670.219319062246,7,4,7,7_0,7_4,7_0_0 -12004,2,52.0,0.0,7,111,348.0,456.0,0.0,0,52,0.0,0.0,480.99663119642383,804.0,0.0,827.0257227864367,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,120189,2,1,0,0,2,,0.0,430.0,32,2.0,0.0,3.0,2.0,1.5,1,1,506.554598698976,348.0,24718.20900161973,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032526628444128604,16478.806001079818,4,2,4_0,4_0_0,4_4_0,4_0_0 -12005,2,69.0,0.0,2,111,500.0,2300.0,0.0,77,78,0.0,0.0,691.0871137879653,2800.0,0.0,4171.401671949133,71,0,0,0,0,0,0,0,0,0,,1,,2,118914,2,1,1,0,1,,400.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,624.87863180451,500.0,59798.75976758647,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046823713583399804,39865.83984505764,9,5,9,9_1,9_4,9_0_1 -12006,2,29.0,0.0,2,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,361.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,121862,2,2,0,1,1,,931.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,718.517699536183,0.0,28039.047319909554,1,1,2,3,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012874902484424513,15577.248511060863,3,2,3_0,3_0_0,3_4_0,3_0_1 -12007,2,68.0,0.0,6,111,1200.0,1300.0,0.0,90,75,0.0,0.0,1658.6090730911167,2500.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,1,,4,120353,1,1,2,0,1,,475.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,533.435563035237,1200.0,92302.0801529838,5,5,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027084980055232088,61534.7201019892,10,5,10,10_1,10_4,10_0_0 -12008,2,53.0,0.0,6,111,262.0,626.0,0.0,62,46,0.0,0.0,362.1296476248938,888.0,0.0,1135.346715930503,50,0,0,0,0,0,0,0,0,3,60.0,1,,4,114867,1,1,2,0,1,,270.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,535.950870601619,262.0,72022.24259827276,1,2,1,2,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012329524435292939,48014.828398848505,10,5,10,10_1,10_4,10_0_0 -12009,2,44.0,0.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,451.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,2,,4,121276,1,1,0,1,1,,0.0,450.0,32,1.0,0.0,3.0,2.0,1.5,2,2,649.544573131125,0.0,20680.093458154097,0,1,2,3,71.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021808412080563982,13786.728972102732,3,2,3_0,3_0_0,3_4_0,3_0_0 -12010,2,55.0,0.0,7,111,827.0,1271.0,0.0,56,47,0.0,0.0,1143.0580862052946,2098.0,0.0,2305.1528369771077,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,118890,2,1,3,0,1,,807.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,428.018487053065,827.0,77686.27171521835,1,1,0,1,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027006058518174614,38843.13585760917,9,5,9,9_1,9_4,9_0_0 -12011,2,25.0,0.0,2,211,0.0,0.0,0.0,53,38,0.0,0.0,0.0,1701.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,90.0,1,,2,130630,1,1,4,0,2,,427.0,610.0,43,2.0,0.0,4.0,3.0,1.8,2,2,868.166033797827,0.0,35567.165125391206,1,1,2,3,80.0,1,3,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04782500921856337,19759.53618077289,5,3,5,5_1,5_1,5_0_1 -12012,2,51.0,0.0,1,211,457.0,1635.0,0.0,85,62,0.0,0.0,631.6536220022002,2092.0,0.0,2965.322492885579,43,2,2,2,2,1,2,2,2,0,,1,,1,114325,1,1,2,0,1,,450.0,650.0,42,2.0,1.0,3.0,4.0,2.3,3,2,628.614442454667,457.0,15994.500428150113,6,1,2,3,110.0,1,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.13079495726656815,6954.130620934832,1,1,1_0,1_1_0,1_1_0,1_1_0 -12013,2,61.0,0.0,2,211,451.0,671.0,0.0,0,56,0.0,0.0,623.3605766367447,1122.0,0.0,1216.9610964686383,70,0,0,0,0,0,0,0,0,0,,1,,2,100373,2,1,2,0,1,,319.0,574.0,12,1.0,1.0,3.0,1.0,1.0,1,1,713.659916043454,451.0,17178.78594789403,0,4,2,3,57.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06531311370915285,17178.78594789403,4,2,4_0,4_1_0,4_1_0,4_0_1 -12014,2,60.0,0.0,1,211,1600.0,0.0,0.0,78,63,0.0,0.0,2211.478764121489,1700.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,1,124120,2,2,0,0,1,,230.0,252.0,42,1.0,1.0,2.0,2.0,1.5,1,1,966.448848803098,1600.0,17888.647046572292,6,1,2,3,77.0,1,3,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09503234065573132,11925.764697714862,2,1,2_0,2_0_0,2_1_0,2_1_0 -12015,2,32.0,0.0,2,211,0.0,0.0,0.0,42,34,0.0,0.0,0.0,824.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,132587,1,1,2,0,2,,490.0,950.0,43,2.0,0.0,6.0,4.0,2.1,2,2,646.721191327481,0.0,90869.52242663228,1,1,2,3,121.0,1,3,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009067946853856248,43271.20115553918,9,5,9,9_1,9_1,9_0_1 -12016,2,42.0,0.0,1,211,500.0,780.0,0.0,46,38,0.0,0.0,691.0871137879653,1280.0,0.0,1414.6492626610102,70,0,0,0,0,0,0,0,0,2,90.0,1,,1,130821,2,1,1,0,2,,409.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,536.229097133456,500.0,113354.37144263885,1,1,1,2,126.0,1,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011292021504858534,62974.65080146602,10,5,10,10_1,10_1,10_1_0 -12017,2,71.0,0.0,1,211,1000.0,3200.0,0.0,75,72,0.0,0.0,1382.1742275759307,4200.0,0.0,5803.689282711836,50,0,0,0,0,0,0,0,0,0,,1,,1,130713,1,2,1,0,2,,700.0,,41,0.0,1.0,9.0,2.0,1.5,2,2,594.904854505285,1000.0,38849.04125468084,5,5,0,1,210.0,1,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1081107760798074,25899.360836453892,7,4,7,7_1,7_1,7_1_0 -12018,1,39.0,52.0,2,211,400.0,600.0,0.0,55,63,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,2,2,2,1,2,2,2,2,2,19.0,2,,2,107123,2,3,0,1,1,,600.0,351.0,43,4.0,0.0,4.0,8.0,3.6999999999999993,3,3,983.927057618256,400.0,50969.88728954745,1,1,2,3,80.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.019619427335972803,13775.645213391204,3,2,3_1,3_0_1,3_1_1,3_0_1 -12019,1,30.0,340.0,1,211,520.0,0.0,0.0,68,85,0.0,0.0,718.7305983394839,520.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,101730,1,3,0,1,1,,160.0,34.0,42,1.0,0.0,4.0,5.0,2.4,2,2,654.702223385555,520.0,9380.359680495067,4,6,2,3,80.0,1,3,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.055434974533146684,3908.483200206278,1,1,1_1,1_0_1,1_1_1,1_1_0 -12020,1,50.0,422.0,2,211,1500.0,600.0,0.0,85,68,0.0,0.0,2073.261341363896,2160.0,103.2196202514115,1088.1917405084694,70,2,2,2,1,2,2,2,2,2,30.0,2,,2,116912,2,2,0,1,1,,700.0,565.0,42,1.0,0.0,4.0,6.0,3.5,1,1,228.627976176816,1500.0,27993.23243753847,6,1,2,3,70.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.07716150697564583,7998.066410725277,1,1,1_1,1_0_1,1_1_1,1_0_1 -12021,1,49.0,340.0,2,211,0.0,0.0,528.0,0,56,0.0,0.0,269.76224079421326,528.0,0.0,603.6337690165894,50,2,2,2,2,1,2,2,2,0,,2,,2,108683,1,3,0,1,1,864.0,576.0,306.0,32,2.0,0.0,3.0,3.0,2.0,2,2,326.146903452625,0.0,9381.256288874314,0,4,2,3,40.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05628244061791391,4690.628144437157,1,1,1_1,1_0_1,1_1_1,1_0_1 -12022,2,81.0,0.0,1,112,1200.0,0.0,0.0,0,75,4480.754631054002,0.0,1658.6090730911167,4260.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112320,1,1,4,1,2,,150.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,603.602684634555,1200.0,28679.40480133614,0,5,0,1,60.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14853864748969728,28679.40480133614,8,4,8,8_1,8_0,8_1_0 -12023,2,79.0,0.0,2,112,700.0,0.0,0.0,0,78,4480.754631054002,0.0,967.5219593031513,3750.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106302,2,1,2,0,2,,150.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,982.86078728436,700.0,16000.38494592808,0,5,0,1,80.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2343693612792943,16000.38494592808,4,2,4_0,4_1_0,4_0_0,4_0_1 -12024,2,40.0,0.0,1,112,1550.0,0.0,0.0,31,37,6099.800637741515,103.51725048194578,2142.370052742692,5814.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,4,100.0,1,,1,132664,1,3,2,0,1,,198.0,,43,2.0,0.0,7.0,2.0,1.5,3,3,604.440376849048,1550.0,101183.82979618598,1,1,1,2,167.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05745977407369446,67455.88653079065,10,5,10,10_1,10_0,10_1_0 -12025,2,83.0,0.0,2,111,192.0,432.0,0.0,0,75,0.0,0.0,265.37745169457867,624.0,0.0,783.498053166098,50,2,1,2,1,2,2,2,2,0,,2,,2,100703,2,1,0,1,1,,575.0,477.0,11,0.0,1.0,4.0,1.0,1.0,2,2,594.696439114672,192.0,24708.51438963108,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.025254452378644886,24708.51438963108,7,4,7,7_0,7_4,7_0_1 -12026,2,92.0,0.0,2,111,200.0,0.0,0.0,77,72,0.0,0.0,276.4348455151861,4067.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129997,2,1,1,0,2,,360.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,778.676008558789,200.0,92002.95490627772,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044205101935508515,61335.303270851815,10,5,10,10_1,10_4,10_0_1 -12027,2,61.0,0.0,2,111,120.0,54.0,0.0,0,45,0.0,0.0,165.86090730911167,1999.0,0.0,97.93725664576225,71,2,1,2,1,2,2,2,2,3,60.0,2,,2,126085,2,3,0,1,2,624.0,0.0,358.0,12,1.0,0.0,2.0,1.0,1.0,2,2,839.213527864605,120.0,28759.655076921335,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06950709230181731,28759.655076921335,8,4,8,8_0,8_4,8_0_1 -12028,2,83.0,0.0,2,111,210.0,210.0,0.0,77,78,0.0,0.0,290.25658779094545,420.0,0.0,380.86710917796427,20,0,0,0,0,0,0,0,0,0,,2,,2,132846,2,1,0,1,2,,400.0,700.0,41,0.0,3.0,3.0,2.0,1.5,3,3,705.498491366,210.0,27085.949619387862,5,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015506194388671832,18057.299746258574,4,2,4_0,4_0_0,4_4_0,4_0_1 -12029,2,32.0,0.0,2,111,335.0,240.0,0.0,45,37,0.0,0.0,463.0283662379367,575.0,0.0,435.27669620338776,71,2,1,2,2,1,2,2,2,2,23.0,2,,2,129250,2,1,0,1,1,,382.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,518.000077559968,335.0,87508.58693443617,1,1,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006570783738409646,41670.75568306484,9,5,9,9_0,9_4,9_0_1 -12030,0,31.0,0.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,238.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,121832,2,3,0,1,1,1662.0,528.0,,31,0.0,0.0,4.0,2.0,1.3,2,2,745.172292663161,0.0,9375.745125983178,0,6,5,0,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02538464909209468,7212.111635371675,1,1,1_0,1_0_0,1_4_0,1_0_1 -12031,2,63.0,0.0,2,111,300.0,1200.0,0.0,0,77,0.0,5.175862524097289,414.65226827277917,1505.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,0,,2,,2,108164,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,597.234952080013,300.0,20173.82264465021,0,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07460162739157931,20173.82264465021,5,3,5,5_0,5_4,5_0_1 -12032,1,32.0,124.0,2,111,540.0,180.0,0.0,0,52,0.0,0.0,746.3740828910024,720.0,0.0,326.4575221525408,50,2,2,2,2,1,2,2,2,2,5.0,2,,2,131173,2,3,0,1,1,840.0,0.0,699.0,32,1.0,0.0,4.0,3.0,1.6,2,2,686.300530031008,540.0,21181.900225183414,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03399128465084466,13238.687640739632,2,1,2_1,2_0_1,2_4_1,2_0_1 -12035,2,36.0,0.0,9,111,400.0,900.0,0.0,33,38,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,2,45.0,2,2006.0,6,100544,2,1,0,0,1,,0.0,771.0,43,2.0,0.0,3.0,3.0,1.8,2,2,753.99302609857,400.0,42514.37471036003,4,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030577892979882216,23619.097061311128,6,3,6,6_0,6_4,6_0_0 -12036,2,69.0,0.0,2,111,842.0,0.0,0.0,0,75,3733.962192545002,0.0,1163.7906996189336,3342.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,105853,2,2,2,0,1,,250.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,808.139159622383,842.0,34562.04718313204,0,5,0,1,145.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09669566106116129,34562.04718313204,9,5,9,9_1,9_4,9_0_1 -12037,2,44.0,0.0,2,111,1200.0,0.0,0.0,0,45,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,70.0,2,,2,124920,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,686.217951436816,1200.0,35436.46899349014,0,1,0,1,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03386341907317137,35436.46899349014,9,5,9,9_0,9_4,9_0_1 -12038,2,64.0,0.0,6,112,800.0,1700.0,0.0,74,72,0.0,0.0,1105.7393820607444,2500.0,0.0,3083.2099314406632,33,0,0,0,0,0,0,0,0,0,,1,,4,122976,2,1,1,0,1,,240.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,824.494478810758,800.0,94062.10701551595,5,5,0,1,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02657818413091272,62708.0713436773,10,5,10,10_1,10_0,10_0_0 -12039,2,64.0,0.0,5,111,607.0,0.0,0.0,75,77,0.0,0.0,838.9797561385899,607.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,113056,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,3,2,656.406585462195,607.0,51806.69984362446,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011716631281903587,34537.79989574964,9,5,9,9_0,9_4,9_0_0 -12040,2,56.0,0.0,6,111,455.0,563.0,0.0,0,47,0.0,0.0,628.8892735470484,1018.0,0.0,1021.0865831771138,43,0,0,0,0,0,0,0,0,2,90.0,1,,4,116946,2,1,2,0,1,,414.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,658.761318072579,455.0,19960.816397261904,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050999918026381055,19960.816397261904,5,3,5,5_1,5_4,5_0_0 -12041,2,65.0,0.0,2,111,805.0,600.0,0.0,78,77,0.0,207.03450096389156,1112.6502531986241,1605.0,0.0,1088.1917405084694,41,0,0,0,0,0,0,0,0,0,,1,,2,132737,2,1,1,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,656.055134621047,805.0,47422.23550715865,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033844882739821835,31614.8236714391,8,4,8,8_1,8_4,8_0_1 -12042,2,44.0,0.0,5,111,1380.0,0.0,0.0,67,63,0.0,0.0,1907.4004340547842,1380.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,3,120757,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,995.999650032782,1380.0,41542.500551439465,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03321899215698951,27695.00036762631,7,4,7,7_0,7_4,7_0_0 -12043,2,57.0,0.0,1,111,850.0,1250.0,0.0,78,56,0.0,0.0,1174.848093439541,2100.0,0.0,2267.066126059311,42,0,0,0,0,0,0,0,0,0,,2,,1,132840,2,2,0,0,1,,750.0,,42,2.0,0.0,5.0,5.0,3.0,2,1,666.988446454902,850.0,59168.53608598147,5,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035491836352827114,19722.845361993823,5,3,5,5_0,5_4,5_1_0 -12044,2,46.0,0.0,9,112,700.0,0.0,0.0,0,11,0.0,0.0,967.5219593031513,700.0,0.0,0.0,44,2,2,2,2,1,2,2,2,0,,1,2006.0,6,104336,2,1,1,0,1,,75.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,652.472113912191,700.0,28323.152148303932,0,1,1,2,70.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.024714763255682257,21787.040114079948,6,3,6,6_1,6_0,6_0_0 -12045,2,47.0,0.0,6,112,4000.0,0.0,0.0,54,48,0.0,258.79312620486445,5528.696910303723,4400.0,258.04905062852873,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,110168,2,1,2,0,1,,1200.0,,43,3.0,0.0,6.0,5.0,2.8,2,2,471.759123774436,4000.0,87879.00175406631,1,1,1,2,150.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05006884366203448,31385.357769309398,8,4,8,8_1,8_0,8_0_0 -12046,2,32.0,0.0,7,112,1279.0,0.0,0.0,54,48,0.0,1014.4690547230687,1767.8008370696152,2347.0,151.38877636873687,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,125202,2,1,4,0,1,,938.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,561.007374789927,1279.0,53327.30348207424,1,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044011225896485366,25393.95403908297,7,4,7,7_1,7_0,7_0_0 -12047,2,57.0,0.0,1,112,720.0,0.0,0.0,68,46,0.0,331.2552015422265,995.16544385467,4488.0,5931.687510447781,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,119998,2,3,3,0,1,,330.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,846.137209892864,720.0,58193.829529792594,1,1,1,2,140.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07712157863235909,38795.88635319506,9,5,9,9_1,9_0,9_1_0 -12048,2,45.0,0.0,1,112,600.0,0.0,0.0,0,53,3620.4497418916335,0.0,829.3045365455583,3024.0,0.0,0.0,10,2,2,2,1,1,2,2,2,2,30.0,1,,1,119664,2,1,2,0,1,,540.0,,32,1.0,0.0,7.0,3.0,2.0,2,2,719.860422057448,600.0,35600.139223562684,0,1,1,2,160.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.08494348802991487,17800.069611781342,4,2,4_0,4_1_0,4_0_0,4_1_0 -12049,2,62.0,0.0,6,112,480.0,0.0,0.0,77,74,2389.735803228801,0.0,663.4436292364467,2140.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,104724,2,1,2,0,1,,600.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,890.494326352284,480.0,40448.45147335488,5,5,0,1,110.0,10,0,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05290684617208917,26965.634315569918,7,4,7,7_1,7_0,7_0_0 -12050,2,49.0,0.0,2,111,900.0,0.0,0.0,0,54,2987.1697540360015,0.0,1243.9568048183376,2900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,90.0,1,,2,104654,2,2,2,0,1,,500.0,,32,1.0,1.0,5.0,2.0,1.5,1,1,743.303063725117,900.0,73093.86112915608,0,1,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03967501449780756,48729.24075277072,10,5,10,10_1,10_4,10_0_1 -12051,2,57.0,0.0,6,111,2849.0,0.0,0.0,0,46,0.0,0.0,3937.814374363826,2939.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,117501,2,1,2,0,1,,407.0,,32,2.0,0.0,4.0,2.0,1.5,1,1,568.970553790996,2849.0,57053.96952924945,0,1,0,1,119.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051512629607538246,38035.9796861663,9,5,9,9_1,9_4,9_0_0 -12052,2,36.0,0.0,7,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,602.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,8,,5,131506,2,2,0,0,1,,0.0,640.0,32,1.0,0.0,3.0,2.0,1.3,1,1,920.642706946365,0.0,28455.41353838025,0,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02115590410197452,21888.779644907885,6,3,6,6_0,6_4,6_0_0 -12053,2,37.0,0.0,6,111,483.0,0.0,0.0,0,55,0.0,0.0,667.5901519191744,483.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,3.0,1,,4,106011,2,2,2,0,1,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,1,1,824.486468858469,483.0,16584.002920989573,0,1,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029124452178471955,16584.002920989573,4,2,4_0,4_1_0,4_4_0,4_0_0 -12054,2,37.0,0.0,7,111,800.0,0.0,0.0,0,42,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,117814,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,781.517772730334,800.0,25413.20057144619,0,1,1,2,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031479702753334636,25413.20057144619,7,4,7,7_0,7_4,7_0_0 -12055,2,49.0,0.0,6,111,1019.0,0.0,0.0,56,62,0.0,124.22070057833493,1408.4355378998732,1277.0,237.40512657824647,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,129910,2,1,2,0,1,,539.0,,43,3.0,2.0,5.0,3.0,2.0,1,1,560.71158870205,1019.0,51079.246840701104,1,1,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02500036862294644,25539.623420350552,7,4,7,7_1,7_4,7_0_0 -12056,2,47.0,0.0,7,111,324.0,1866.0,0.0,0,34,0.0,0.0,447.8244497346015,2190.0,0.0,3384.2763129813397,44,0,0,0,0,0,0,0,0,1,15.0,1,,5,121025,2,2,2,0,1,,102.0,,32,2.0,0.0,5.0,3.0,2.0,2,2,542.762482417999,324.0,34491.762775530435,0,1,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0634934205668855,17245.881387765217,4,2,4_0,4_1_0,4_4_0,4_0_0 -12057,2,72.0,0.0,8,111,397.0,812.0,0.0,75,72,0.0,0.0,548.7231683476444,1209.0,0.0,1472.6861554881284,10,0,0,0,0,0,0,0,0,0,,2,2000.0,6,112660,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,500.324634737756,397.0,54450.458590421724,5,5,0,1,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022203669744898583,36300.305726947816,9,5,9,9_0,9_4,9_0_0 -12058,2,45.0,0.0,8,111,194.0,447.0,0.0,0,46,0.0,0.0,268.14180014973056,641.0,0.0,810.7028466788097,30,0,0,0,0,0,0,0,0,0,,2,2001.0,6,132294,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,565.688422612894,194.0,27699.223489505122,0,1,1,2,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023141442944884957,27699.223489505122,7,4,7,7_0,7_4,7_0_0 -12059,2,69.0,0.0,8,111,90.0,329.0,0.0,0,75,0.0,0.0,124.39568048183375,419.0,0.0,596.6918043788107,31,0,0,0,0,0,0,0,0,0,,2,2000.0,6,121012,2,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,535.570542096107,90.0,29628.654757670167,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014141715289707195,29628.654757670167,8,4,8,8_0,8_4,8_0_0 -12060,2,50.0,0.0,8,111,213.0,690.0,0.0,0,47,0.0,0.0,294.4031104736732,903.0,0.0,1251.4205015847397,71,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,127604,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,565.688422612894,213.0,38720.708480038506,0,1,1,2,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02332085427789936,38720.708480038506,9,5,9,9_0,9_4,9_0_0 -12061,1,45.0,116.0,2,111,420.0,0.0,0.0,0,68,0.0,0.0,580.5131755818909,420.0,0.0,0.0,41,2,1,2,2,1,2,2,1,2,25.0,2,,2,128743,2,3,0,1,1,859.0,0.0,312.0,32,1.0,0.0,3.0,2.0,1.5,1,1,599.732700394405,420.0,20011.39927149299,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020988037583074274,13340.932847661992,3,2,3_1,3_0_1,3_4_1,3_0_1 -12062,2,43.0,0.0,5,111,320.0,0.0,0.0,43,62,0.0,0.0,442.2957528242978,320.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,40.0,2,,3,117721,1,1,0,1,1,,0.0,800.0,43,2.0,0.0,3.0,2.0,1.5,2,1,748.889260486572,320.0,45570.387847767386,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.007022103938833991,30380.258565178257,8,4,8,8_0,8_4,8_0_0 -12063,2,67.0,0.0,2,111,420.0,500.0,0.0,0,78,0.0,0.0,580.5131755818909,920.0,0.0,906.8264504237244,10,0,0,0,0,0,0,0,0,0,,2,,2,126116,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,725.599044070444,420.0,19333.503457700048,0,5,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04758578816368573,19333.503457700048,5,3,5,5_0,5_4,5_0_1 -12064,0,77.0,0.0,2,111,316.0,1380.0,0.0,0,78,0.0,0.0,436.76705591399406,1696.0,0.0,2502.8410031694793,12,0,0,0,0,0,0,0,0,0,,1,,2,119359,2,1,2,0,1,,267.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,816.813937253397,316.0,28301.418597317912,0,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05992632468821643,28301.418597317912,8,4,8,8_1,8_4,8_0_1 -12065,2,82.0,0.0,1,111,535.0,1300.0,0.0,78,78,0.0,0.0,739.4632117531229,1835.0,0.0,2357.7487711016834,41,1,2,2,1,1,2,2,2,0,,2,,1,113823,2,2,0,1,1,,306.0,302.0,41,0.0,3.0,4.0,2.0,1.5,2,2,595.255365525783,535.0,17982.81919488305,5,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.1020418422781086,11988.546129922033,2,1,2_0,2_0_0,2_4_0,2_1_0 -12066,2,40.0,0.0,6,111,730.0,1530.0,0.0,46,38,0.0,0.0,1008.9871861304293,2260.0,0.0,2774.8889382965967,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,120682,2,2,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,587.842935001771,730.0,113197.22324396917,4,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0199651540491335,53903.43963998532,10,5,10,10_1,10_4,10_0_0 -12067,1,30.0,223.0,9,111,403.0,915.0,0.0,46,52,0.0,0.0,557.0162137131,1318.0,0.0,1659.4924042754158,10,2,2,2,2,1,2,2,2,2,20.0,1,2007.0,6,129781,2,1,1,0,1,,600.0,649.0,43,2.0,0.0,4.0,5.0,2.4,2,2,503.819976754695,403.0,42471.087872422715,4,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,1,0.031032875916884684,17696.286613509466,4,2,4_1,4_1_1,4_4_1,4_0_0 -12068,2,55.0,0.0,2,111,350.0,0.0,0.0,0,54,0.0,0.0,483.76097965157567,350.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,5.0,2,,2,119301,1,2,0,0,1,,0.0,210.0,12,1.0,0.0,2.0,1.0,1.0,2,2,949.789291927411,350.0,25640.711253122092,0,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013650167366452555,25640.711253122092,7,4,7,7_0,7_4,7_0_1 -12069,2,29.0,0.0,5,112,386.0,0.0,0.0,56,45,2822.8754175640215,0.0,533.5192518443092,2296.0,34.40654008380383,0.0,41,2,2,2,2,1,2,2,2,3,80.0,1,,3,119561,1,2,3,0,2,,180.0,817.0,43,2.0,0.0,4.0,2.0,1.5,2,2,754.723020598009,386.0,35017.118416734826,4,1,2,3,77.0,10,1,1,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06556793088099254,23344.74561115655,6,3,6,6_1,6_1,6_0_0 -12070,2,51.0,0.0,5,112,1370.0,0.0,0.0,55,63,0.0,517.5862524097289,1893.578691779025,2110.0,412.878481005646,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,,3,103752,1,1,2,0,2,,400.0,,43,3.0,2.0,5.0,5.0,2.8,2,2,605.361154227617,1370.0,43810.883961480846,1,1,0,1,118.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04816154820923363,15646.744271957446,3,2,3_0,3_1_0,3_1_0,3_0_0 -12071,2,86.0,0.0,9,112,1130.0,0.0,0.0,0,75,0.0,569.3448776507017,1561.8568771608016,1880.0,344.06540083803833,0.0,30,0,0,0,0,0,0,0,0,0,,1,2007.0,6,112975,2,1,1,0,1,,681.0,,11,0.0,5.0,8.0,1.0,1.0,1,1,752.432342211849,1130.0,45808.26359795736,0,5,0,1,150.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04104063005967839,45808.26359795736,10,5,10,10_1,10_1,10_0_0 -12072,2,32.0,0.0,6,112,1761.0,0.0,0.0,52,65,0.0,274.3207137771563,2434.0088147612137,2582.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,4,131817,2,2,3,0,1,,527.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,862.926447440037,1761.0,48747.02839978374,1,1,1,2,95.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05296733123554778,23212.870666563686,6,3,6,6_1,6_0,6_0_0 -12073,2,33.0,0.0,6,112,846.0,0.0,0.0,54,55,0.0,103.51725048194578,1169.3193965292373,974.0,48.169156117325365,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,4,132866,1,2,3,0,2,,228.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,774.164577126442,846.0,53628.59255489954,1,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018161953420704025,35752.39503659969,9,5,9,9_1,9_0,9_0_0 -12074,2,32.0,0.0,7,112,0.0,0.0,1800.0,37,65,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,123786,2,3,3,0,1,,260.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,834.122651705954,0.0,76171.97393307395,1,1,1,2,89.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02363073853884254,42317.763296152196,9,5,9,9_1,9_1,9_0_0 -12075,2,33.0,0.0,7,112,1400.0,0.0,0.0,42,63,0.0,538.289702506118,1935.0439186063027,1920.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,5,103128,2,2,3,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,743.707033234324,1400.0,60398.88623256696,1,1,1,2,97.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031788665648684426,33554.93679587053,9,5,9,9_1,9_1,9_0_0 -12076,2,29.0,0.0,5,112,600.0,1400.0,0.0,67,46,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,111690,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,907.568360660573,600.0,73032.85391344142,1,1,1,2,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02738493558488624,34777.54948259115,9,5,9,9_1,9_1,9_0_0 -12077,1,42.0,24.0,5,112,720.0,800.0,0.0,37,55,0.0,0.0,995.16544385467,1520.0,0.0,1450.922320677959,41,2,2,2,2,1,2,2,2,2,25.0,1,,3,118478,2,1,1,0,1,,1800.0,,43,2.0,0.0,7.0,8.0,4.1,3,3,794.615159164189,720.0,54248.19433097198,1,1,1,2,190.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.028019365782506512,13231.266909993166,2,1,2_1,2_1_1,2_1_1,2_0_0 -12078,2,59.0,0.0,5,112,510.0,1948.0,0.0,77,37,0.0,0.0,704.9088560637246,2458.0,0.0,3532.9958508508303,10,0,0,0,0,0,0,0,0,3,120.0,1,,3,111512,2,1,2,0,1,,135.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,820.624987566784,510.0,44439.001880226766,5,1,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05531177335226543,29626.001253484512,8,4,8,8_1,8_1,8_0_0 -12079,2,40.0,0.0,5,112,1000.0,2000.0,0.0,52,37,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,41,0,0,0,0,0,0,0,0,0,,1,,3,106755,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,658.274661834447,1000.0,68508.42591022802,1,4,1,2,140.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04379023397692915,28545.17746259501,8,4,8,8_1,8_1,8_0_0 -12080,2,47.0,0.0,9,112,2150.0,0.0,0.0,45,54,0.0,310.55175144583734,2971.674589288251,2450.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,111892,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,511.558675828864,2150.0,73207.41562673802,1,1,1,2,115.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03346655497978228,26145.505580977864,7,4,7,7_1,7_1,7_0_0 -12081,2,33.0,0.0,7,112,0.0,0.0,0.0,55,64,0.0,0.0,0.0,1471.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,120056,2,1,1,0,1,,167.0,890.0,43,2.0,0.0,4.0,2.0,1.5,2,2,758.387464950474,0.0,39703.22571436808,1,1,2,3,70.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037049886338773326,26468.817142912056,7,4,7,7_1,7_1,7_0_0 -12082,2,38.0,0.0,7,112,1800.0,0.0,0.0,54,53,0.0,207.03450096389156,2487.913609636675,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,123432,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,743.707033234324,1800.0,52617.06072750437,1,1,1,2,122.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038010485047001975,29231.700404169096,8,4,8,8_1,8_1,8_0_0 -12083,2,36.0,0.0,6,112,410.0,0.0,0.0,0,48,0.0,0.0,566.6914333061316,410.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,2,,4,131505,2,1,0,0,1,,0.0,700.0,12,1.0,1.0,3.0,1.0,1.0,1,1,848.610044342947,410.0,29521.122587347378,0,1,2,3,60.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013888360741936156,29521.122587347378,8,4,8,8_0,8_1,8_0_0 -12084,2,54.0,0.0,6,112,0.0,0.0,0.0,38,21,0.0,0.0,0.0,1746.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,115537,2,1,1,0,1,,398.0,,43,3.0,1.0,6.0,4.0,2.3,1,1,823.581123176196,0.0,45248.628702616326,1,1,0,1,120.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03858680472893634,19673.31682722449,5,3,5,5_1,5_1,5_0_0 -12085,2,56.0,0.0,2,112,900.0,0.0,0.0,0,55,0.0,0.0,1243.9568048183376,940.0,68.81308016760767,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,126383,2,1,0,0,1,,250.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,944.076322207083,900.0,17974.2699354563,0,1,1,2,42.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.052296978034459284,17974.2699354563,4,2,4_0,4_0_0,4_1_0,4_0_1 -12086,2,40.0,0.0,8,112,570.0,900.0,0.0,52,38,0.0,0.0,787.8393097182804,1470.0,0.0,1632.287610762704,10,0,0,0,0,0,0,0,0,2,90.0,1,2002.0,6,100223,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,645.935299751515,570.0,73080.4461198287,1,1,1,2,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02011481973700143,34800.21243801367,9,5,9,9_1,9_1,9_0_0 -12087,2,39.0,0.0,7,112,600.0,1200.0,0.0,53,53,0.0,258.79312620486445,829.3045365455583,2050.0,0.0,2176.3834810169387,20,2,2,2,2,1,2,2,2,2,30.0,1,,5,123946,2,2,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,629.211420861918,600.0,61837.88824375644,1,1,1,2,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03315119675366633,29446.613449407825,8,4,8,8_1,8_1,8_0_0 -12088,2,50.0,0.0,7,112,600.0,1300.0,0.0,67,47,0.0,0.0,829.3045365455583,1900.0,0.0,2357.7487711016834,10,0,0,0,0,0,0,0,0,2,25.0,1,,5,113459,2,1,2,0,1,,350.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,834.122651705954,600.0,95095.93890128053,1,1,0,1,85.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019979822713274826,47547.96945064027,10,5,10,10_1,10_1,10_0_0 -12089,2,48.0,0.0,8,112,500.0,900.0,0.0,56,37,0.0,0.0,691.0871137879653,1400.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,127540,2,1,2,0,1,,700.0,,43,3.0,0.0,4.0,5.0,2.8,1,1,678.957477392878,500.0,38291.72037160722,1,1,1,2,80.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03656142859118131,13675.61441843115,3,2,3_0,3_1_0,3_1_0,3_0_0 -12090,2,49.0,0.0,7,112,1100.0,0.0,0.0,78,37,0.0,0.0,1520.3916503335236,1220.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,3,120.0,1,,5,129135,2,1,2,0,1,,140.0,,42,1.0,1.0,4.0,3.0,2.0,1,1,597.354048144002,1100.0,49635.09294840839,5,1,0,1,105.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02457938380951739,24817.546474204195,7,4,7,7_1,7_1,7_0_0 -12091,2,41.0,0.0,6,112,750.0,1600.0,0.0,52,48,0.0,0.0,1036.630670681948,2350.0,0.0,2901.844641355918,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,126808,2,1,3,0,1,,650.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,1,1,658.274661834447,750.0,84785.17481676668,1,1,1,2,130.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02771710980225845,32609.682621833344,8,4,8,8_1,8_1,8_0_0 -12092,2,49.0,0.0,9,112,700.0,1300.0,0.0,42,43,0.0,0.0,967.5219593031513,2000.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,90.0,1,2008.0,6,121793,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,781.150502750867,700.0,77243.00629132144,1,1,1,2,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02589231175774043,38621.50314566072,9,5,9,9_1,9_1,9_0_0 -12093,2,63.0,0.0,1,112,344.0,1650.0,0.0,74,74,0.0,0.0,475.4679342861201,1994.0,0.0,2992.5272863982905,71,0,0,0,0,0,0,0,0,0,,1,,1,122887,2,2,1,0,1,,754.0,,41,0.0,1.0,6.0,2.0,1.5,5,4,604.440376849048,344.0,71719.6159075635,5,5,0,1,120.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027802714428504273,47813.07727170899,10,5,10,10_1,10_2,10_1_0 -12094,0,77.0,0.0,2,112,350.0,0.0,0.0,77,74,0.0,0.0,483.76097965157567,700.0,602.1144514665671,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,111269,2,1,2,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,754.419260514728,350.0,29728.36779385352,5,5,0,1,115.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023546533225572118,19818.911862569013,5,3,5,5_1,5_2,5_0_1 -12095,2,70.0,0.0,2,112,390.0,2094.0,0.0,0,77,0.0,0.0,539.0479487546129,2484.0,0.0,3797.789174374558,41,0,0,0,0,0,0,0,0,0,,1,,2,101947,2,2,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,2,1,976.909903399571,390.0,32375.580923844034,0,5,0,1,110.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07672449201276196,32375.580923844034,8,4,8,8_1,8_2,8_0_1 -12096,2,59.0,0.0,2,112,600.0,2666.0,0.0,46,37,0.0,0.0,829.3045365455583,3266.0,0.0,4835.198633659299,10,0,0,0,0,0,0,0,0,3,105.0,1,,2,115278,2,3,1,0,1,,383.0,,43,2.0,1.0,8.0,2.0,1.5,1,1,846.137209892864,600.0,43904.798640606336,4,1,1,2,160.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07438822409219221,29269.865760404224,8,4,8,8_1,8_2,8_0_1 -12097,2,83.0,0.0,5,112,1250.0,0.0,0.0,77,77,0.0,0.0,1727.717784469913,1290.0,68.81308016760767,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,129817,2,1,2,0,1,,316.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,774.164577126442,1250.0,40583.48696440097,5,5,0,1,89.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03178632730922216,27055.65797626731,7,4,7,7_1,7_2,7_0_0 -12098,2,45.0,0.0,6,112,1220.0,0.0,0.0,46,47,0.0,0.0,1686.2525576426353,1220.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,111963,2,2,2,0,1,,463.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,735.023026791173,1220.0,53797.616047763666,1,1,1,2,96.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022677584800724914,25617.912403696984,7,4,7,7_1,7_2,7_0_0 -12099,2,78.0,0.0,7,112,300.0,400.0,0.0,0,74,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,1,,5,105353,2,1,2,0,1,,50.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,766.19117841003,300.0,19975.49550602648,0,5,0,1,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035042935470052015,19975.49550602648,5,3,5,5_1,5_2,5_0_0 -12100,2,32.0,0.0,5,112,390.0,963.0,0.0,46,63,0.0,0.0,539.0479487546129,1353.0,0.0,1746.5477435160933,20,0,0,0,0,0,0,0,0,0,,1,,3,119452,2,1,2,0,1,,619.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,743.707033234324,390.0,48399.14924807812,1,1,1,2,75.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02795503683473788,26888.41624893229,7,4,7,7_1,7_2,7_0_0 -12101,2,48.0,0.0,2,112,793.0,596.0,0.0,54,37,0.0,310.55175144583734,1096.064162467713,1689.0,0.0,1080.9371289050796,33,0,0,0,0,0,0,0,0,2,45.0,1,,2,117791,2,2,3,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,697.954922082479,793.0,69294.27168117043,1,1,1,2,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02437430914594572,32997.27222912877,8,4,8,8_1,8_2,8_0_1 -12102,2,80.0,0.0,2,112,422.0,1718.0,0.0,0,78,0.0,0.0,583.2775240370427,2140.0,0.0,3115.8556836559173,10,0,0,0,0,0,0,0,0,0,,1,,2,126474,2,1,2,0,2,,260.0,,11,0.0,1.0,3.0,1.0,1.0,5,4,902.549005881803,422.0,20884.146768144565,0,5,0,1,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10247007089914867,20884.146768144565,5,3,5,5_1,5_2,5_0_1 -12103,2,63.0,0.0,2,112,586.0,1400.0,0.0,0,75,0.0,0.0,809.9540973594953,1986.0,0.0,2539.1140611864284,41,0,0,0,0,0,0,0,0,0,,1,,2,129667,2,1,2,0,1,,100.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,976.909903399571,586.0,20897.518239729383,0,5,0,1,114.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09503520835427767,20897.518239729383,5,3,5,5_1,5_2,5_0_1 -12104,1,37.0,100.0,9,112,800.0,1600.0,0.0,56,63,0.0,0.0,1105.7393820607444,2400.0,0.0,2901.844641355918,41,1,2,2,2,1,2,2,2,2,20.0,1,2006.0,6,106646,2,1,1,0,1,,720.0,,43,2.0,0.0,8.0,5.0,2.4,1,1,635.839314191017,800.0,34179.401186126386,1,1,1,2,120.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.07021773105182937,14241.417160885994,3,2,3_1,3_1_1,3_0_1,3_0_0 -12105,2,50.0,0.0,2,112,841.0,998.0,0.0,85,37,0.0,0.0,1162.4085253913577,1839.0,0.0,1810.025595045754,10,0,0,0,0,0,0,0,0,3,180.0,1,,2,102026,2,1,2,0,1,,536.0,,42,1.0,0.0,7.0,6.0,3.3,2,2,861.993292047103,841.0,49569.93785576925,6,1,1,2,150.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0370990983557581,15021.193289627045,3,2,3_0,3_1_0,3_2_0,3_0_1 -12106,2,60.0,0.0,6,112,2095.0,0.0,0.0,52,78,0.0,0.0,2895.6550067715743,2311.0,371.5906329050814,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,115111,2,1,3,0,1,,300.0,434.0,42,2.0,1.0,5.0,3.0,2.0,3,2,890.263105602486,2095.0,41399.848473991515,1,5,2,3,100.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055821460347900344,20699.924236995757,5,3,5,5_1,5_2,5_0_0 -12107,2,55.0,0.0,1,112,1000.0,2000.0,0.0,42,37,0.0,258.79312620486445,1382.1742275759307,3250.0,0.0,3627.3058016948976,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,102589,2,1,4,0,1,,1032.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,573.880035890381,1000.0,98288.52145119311,1,1,0,1,200.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0330659160603392,39315.40858047725,9,5,9,9_1,9_2,9_1_0 -12108,2,41.0,0.0,9,112,1503.0,0.0,0.0,46,62,0.0,258.79312620486445,2077.4078640466237,2112.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,126315,2,1,1,0,1,,764.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,558.374472835645,1503.0,64110.05073169675,1,1,1,2,140.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03294335249926425,30528.59558652226,8,4,8,8_1,8_2,8_0_0 -12109,2,76.0,0.0,5,112,673.0,0.0,0.0,77,78,0.0,465.827627168756,930.2032551586012,1267.0,247.7270886033876,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,131240,2,1,2,0,1,,368.0,,41,0.0,5.0,5.0,2.0,1.5,5,5,735.122516455276,673.0,27311.390285869176,5,5,0,1,99.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0463909008929341,18207.593523912783,4,2,4_0,4_1_0,4_2_0,4_0_0 -12110,2,55.0,0.0,5,112,1400.0,0.0,0.0,54,42,0.0,310.55175144583734,1935.0439186063027,1700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,,3,131711,2,2,2,0,1,,370.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,774.164577126442,1400.0,77357.76917597065,1,1,0,1,88.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02197581468685972,51571.84611731377,10,5,10,10_1,10_2,10_0_0 -12111,0,86.0,0.0,5,112,1517.0,0.0,0.0,0,77,0.0,0.0,2096.7583032326866,1667.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,131563,2,1,2,0,1,,180.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1012.37279361788,1517.0,18676.806740839427,0,5,5,0,100.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08925508643588807,18676.806740839427,4,2,4_0,4_1_0,4_2_0,4_0_0 -12112,2,59.0,0.0,7,112,1400.0,0.0,0.0,0,78,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,115369,2,1,4,0,1,,210.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,754.661417890621,1400.0,36627.814827465154,0,5,0,1,108.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03822231838275589,24418.543218310104,7,4,7,7_1,7_2,7_0_0 -12113,2,32.0,0.0,7,112,1600.0,0.0,0.0,46,48,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,41,2,2,2,2,1,2,2,2,2,45.0,1,,5,118868,1,2,2,0,1,,516.0,934.0,43,2.0,0.0,4.0,5.0,2.4,2,2,710.192546934925,1600.0,44582.84276503784,1,1,2,3,90.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.03588824536004533,18576.184485432437,4,2,4_0,4_1_0,4_2_0,4_0_0 -12114,2,48.0,0.0,8,112,1400.0,0.0,0.0,45,53,0.0,621.1035028916747,1935.0439186063027,2000.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,45.0,1,2001.0,6,119295,2,1,2,0,1,,1514.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,471.759123774436,1400.0,88830.32483573965,1,1,1,2,150.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02251483379913666,31725.116012764163,8,4,8,8_1,8_2,8_0_0 -12115,2,54.0,0.0,2,112,1130.0,900.0,0.0,0,52,0.0,0.0,1561.8568771608016,2030.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,3,15.0,1,,2,109199,1,3,4,0,1,,600.0,417.0,32,2.0,1.0,5.0,3.0,1.8,2,1,973.341529334417,1130.0,21331.147698224486,0,1,2,3,139.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0951659999133084,11850.637610124713,2,1,2_0,2_1_0,2_2_0,2_0_1 -12116,2,39.0,0.0,2,112,850.0,850.0,0.0,62,46,0.0,0.0,1174.848093439541,1700.0,0.0,1541.6049657203316,41,0,0,0,0,0,0,0,0,2,35.0,1,,2,103525,2,1,2,0,1,,500.0,324.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,556.448926780478,850.0,60841.029798944415,1,1,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027941670376353405,23400.396076517085,6,3,6,6_1,6_2,6_0_1 -12117,1,39.0,125.0,7,112,479.0,1059.0,0.0,85,64,0.0,0.0,662.0614550088708,1538.0,0.0,1920.6584219974484,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,121024,2,3,3,0,1,,448.0,620.0,42,1.0,0.0,4.0,4.0,2.3,1,1,713.295919058958,479.0,23605.393784434167,6,1,2,3,78.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06515460042925382,10263.214688884422,2,1,2_1,2_1_1,2_2_1,2_0_0 -12118,2,41.0,0.0,5,112,3400.0,0.0,0.0,42,34,0.0,0.0,4699.392373758164,3400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,129167,1,2,3,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,4,4,734.308164983248,3400.0,63268.879581619505,1,1,1,2,160.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053738900111449855,30128.037896009286,8,4,8,8_1,8_0,8_0_0 -12119,2,73.0,0.0,1,112,900.0,0.0,0.0,77,75,3136.5282417378016,0.0,1243.9568048183376,3150.0,258.04905062852873,0.0,71,1,2,2,2,1,2,2,2,0,,1,,1,120749,2,2,2,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,638.921445511485,900.0,38534.39324848745,5,5,0,1,110.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08174515632534693,25689.595498991635,7,4,7,7_1,7_0,7_1_0 -12120,2,67.0,0.0,5,112,495.0,1542.0,0.0,77,75,0.0,0.0,684.1762426500857,2037.0,0.0,2796.6527731067663,50,0,0,0,0,0,0,0,0,0,,1,,3,110128,2,2,1,0,1,,432.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,824.494478810758,495.0,37399.165808227874,5,5,0,1,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054466455493824326,24932.77720548525,7,4,7,7_1,7_0,7_0_0 -12121,2,57.0,0.0,1,112,760.0,0.0,0.0,0,62,0.0,0.0,1050.452412957707,760.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,105272,2,2,2,0,1,,66.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,642.233941548429,760.0,23702.51702828496,0,1,1,2,50.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0320641052211066,23702.51702828496,6,3,6,6_1,6_0,6_1_0 -12122,2,51.0,0.0,2,111,660.0,950.0,0.0,46,45,0.0,0.0,912.2349902001142,1610.0,0.0,1722.9702558050765,41,0,0,0,0,0,0,0,0,2,18.0,1,,2,100422,2,1,1,0,1,,530.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,734.801803531098,660.0,62466.67543219357,1,1,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02577374238120973,31233.337716096787,8,4,8,8_1,8_4,8_0_1 -12123,2,69.0,0.0,5,111,2097.0,0.0,0.0,55,74,0.0,0.0,2898.4193552267266,2337.0,412.878481005646,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,111410,2,2,1,0,1,,469.0,,42,1.0,4.0,5.0,2.0,1.5,1,1,570.747923408899,2097.0,75420.03547878239,1,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030986461159348815,50280.023652521595,10,5,10,10_1,10_4,10_0_0 -12124,2,59.0,0.0,7,111,195.0,244.0,0.0,0,34,0.0,0.0,269.52397437730644,439.0,0.0,442.53130780677753,12,0,0,0,0,0,0,0,0,2,40.0,2,,5,103597,1,1,0,0,1,,0.0,495.0,12,1.0,2.0,3.0,1.0,1.0,1,1,663.493896332576,195.0,39800.145935168206,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011030110309522528,39800.145935168206,9,5,9,9_0,9_4,9_0_0 -12125,2,55.0,0.0,5,111,1070.0,0.0,0.0,52,21,0.0,0.0,1478.9264235062458,1070.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,115314,2,1,2,0,1,,850.0,,43,3.0,4.0,4.0,3.0,2.0,1,1,591.759262462107,1070.0,60427.35203376836,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0177072131077671,30213.67601688418,8,4,8,8_1,8_4,8_0_0 -12126,2,42.0,0.0,5,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,557.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,7.0,2,,3,122975,1,1,0,0,1,,0.0,,43,2.0,2.0,4.0,3.0,1.8,1,1,761.648568946859,0.0,36044.0,1,1,1,2,81.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015453334813006326,20024.444444444445,5,3,5,5_0,5_4,5_0_0 -12127,2,41.0,0.0,1,111,700.0,1300.0,0.0,46,64,0.0,0.0,967.5219593031513,2000.0,0.0,2357.7487711016834,20,0,0,0,0,0,0,0,0,2,45.0,2,,1,115136,1,1,0,0,1,,0.0,582.0,43,2.0,0.0,4.0,4.0,2.5,1,1,430.940945867461,700.0,54820.26133719499,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03648286146791899,21928.104534877995,6,3,6,6_0,6_4,6_1_0 -12128,2,47.0,0.0,7,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1190.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,117470,2,2,2,0,1,,178.0,,22,3.0,0.0,4.0,3.0,2.0,2,2,558.929190385285,0.0,10789.630711848773,0,1,1,2,96.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11029107777462542,5394.8153559243865,1,1,1_0,1_1_0,1_4_0,1_0_0 -12129,1,33.0,200.0,6,111,0.0,0.0,816.0,0,53,0.0,0.0,416.90528122742046,816.0,0.0,932.8885521165474,41,0,0,0,0,0,0,0,0,3,75.0,2,,4,129158,1,3,0,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,873.135983710248,0.0,18795.24253630156,0,1,1,2,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04341524183175391,18795.24253630156,5,3,5,5_0,5_4,5_0_0 -12130,2,58.0,0.0,5,111,0.0,0.0,941.0,85,64,0.0,0.0,480.76944808211107,941.0,0.0,1075.7942739481261,12,0,0,0,0,0,0,0,0,2,15.0,2,,3,109559,2,2,0,0,2,,0.0,503.0,42,2.0,5.0,4.0,3.0,2.0,1,1,911.438165742338,0.0,27423.92828919842,6,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03431310022680579,13711.96414459921,3,2,3_0,3_0_0,3_4_0,3_0_0 -12131,2,59.0,0.0,6,111,869.0,1078.0,0.0,78,78,0.0,0.0,1201.1094037634837,1947.0,0.0,1955.11782711355,10,0,0,0,0,0,0,0,0,0,,1,,4,130757,2,1,2,0,2,,840.0,,41,3.0,0.0,4.0,5.0,3.0,1,1,513.861454595541,869.0,65947.90239387729,5,7,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02952330444676528,21982.63413129243,6,3,6,6_1,6_4,6_0_0 -12132,2,41.0,0.0,5,111,1000.0,2000.0,0.0,47,46,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,41,0,0,0,0,0,0,0,0,3,90.0,1,,3,131686,2,1,1,0,1,,1330.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,1,1,635.703072090542,1000.0,54424.93083754533,1,1,1,2,122.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055121797195384466,18767.21753018805,5,3,5,5_1,5_4,5_0_0 -12133,2,62.0,0.0,6,111,417.0,710.0,0.0,77,77,0.0,0.0,576.366652899163,2145.0,0.0,1287.6935596016888,20,0,0,0,0,0,0,0,0,0,,1,,4,114704,2,1,1,0,1,,617.0,,41,2.0,0.0,4.0,4.0,2.5,1,1,608.206824967592,417.0,81893.48208892735,5,5,0,1,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026192560693301146,32757.392835570943,8,4,8,8_1,8_4,8_0_0 -12134,2,46.0,0.0,8,111,1200.0,1200.0,0.0,52,65,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,20,2,2,2,1,1,2,2,2,3,75.0,1,2000.0,6,107413,1,2,5,0,1,,600.0,,43,3.0,0.0,5.0,5.0,3.0,2,2,443.176812785901,1200.0,63202.99103037633,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0.03797288642315239,21067.66367679211,5,3,5,5_1,5_4,5_0_0 -12135,2,65.0,0.0,9,111,840.0,1800.0,0.0,77,78,0.0,0.0,1161.0263511637818,2640.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,120091,2,1,1,0,1,,600.0,,41,0.0,2.0,8.0,3.0,2.0,1,1,544.532572204641,840.0,34981.44644029876,5,5,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0754685774502083,17490.72322014938,4,2,4_0,4_1_0,4_4_0,4_0_0 -12136,2,57.0,0.0,1,111,912.0,1372.0,0.0,52,47,0.0,0.0,1260.5428955492487,2284.0,0.0,2488.3317799627,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,103761,2,2,1,0,1,,254.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,498.921137929233,912.0,64162.28758352048,1,1,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0355972345441534,32081.14379176024,8,4,8,8_1,8_4,8_1_0 -12137,2,54.0,0.0,1,112,2580.0,0.0,0.0,72,52,0.0,0.0,3566.009507145901,2580.0,0.0,0.0,31,0,0,0,0,0,0,0,0,4,50.0,1,,1,126843,2,2,1,0,1,,655.0,,42,2.0,1.0,6.0,3.0,2.0,1,1,544.824126234948,2580.0,89352.16364125586,5,1,0,1,100.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028874510642613666,44676.08182062793,10,5,10,10_1,10_1,10_1_0 -12138,2,68.0,0.0,1,112,500.0,1000.0,0.0,77,78,0.0,103.51725048194578,691.0871137879653,1600.0,0.0,1813.6529008474488,12,0,0,0,0,0,0,0,0,0,,1,,1,129359,2,1,2,0,1,,800.0,,41,0.0,3.0,5.0,2.0,1.5,2,1,574.51647175516,500.0,40049.90903520318,5,5,0,1,140.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03995015315998914,26699.93935680212,7,4,7,7_1,7_1,7_1_0 -12139,2,25.0,0.0,7,112,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1591.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,105437,2,3,2,0,1,,543.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,680.332737827606,0.0,39387.30425567481,1,1,1,2,93.0,10,1,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0403937266097812,26258.20283711654,7,4,7,7_1,7_1,7_0_0 -12140,1,51.0,34.0,9,112,1200.0,360.0,0.0,0,56,0.0,0.0,1658.6090730911167,1560.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,103203,2,1,1,0,1,,676.0,514.0,32,1.0,1.0,4.0,2.0,1.5,1,1,831.983498464797,1200.0,22631.64734605282,0,1,2,3,78.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06893002423317095,15087.764897368548,3,2,3_1,3_1_1,3_1_1,3_0_0 -12141,2,82.0,0.0,7,112,0.0,0.0,0.0,0,75,2987.1697540360015,0.0,0.0,2198.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,106004,2,1,2,0,1,,347.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,664.782415238767,0.0,23663.679031131902,0,5,0,1,99.0,10,1,1,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09288496506009544,23663.679031131902,6,3,6,6_1,6_1,6_0_0 -12142,2,64.0,0.0,1,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1541.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,100271,2,2,4,0,1,,247.0,550.0,11,0.0,0.0,3.0,1.0,1.0,1,1,748.643154747585,0.0,24681.027896534433,0,5,2,3,80.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06243662162127284,24681.027896534433,7,4,7,7_1,7_1,7_1_0 -12143,2,43.0,0.0,2,112,1238.0,0.0,0.0,65,52,0.0,258.79312620486445,1711.131693739002,1588.0,172.03270041901916,0.0,20,2,2,2,1,2,2,2,2,2,40.0,1,,2,112438,2,2,1,0,1,,50.0,,43,3.0,0.0,5.0,5.0,2.8,2,2,604.927426898588,1238.0,72465.35590389877,1,1,1,2,120.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.021913919833719642,25880.48425139242,7,4,7,7_1,7_1,7_0_1 -12144,2,47.0,0.0,6,112,400.0,500.0,0.0,0,42,0.0,0.0,552.8696910303722,900.0,0.0,906.8264504237244,60,1,2,2,2,1,2,2,2,1,5.0,2,,4,113302,2,1,0,1,1,,0.0,445.0,12,1.0,0.0,3.0,1.0,1.0,2,2,962.482333483268,400.0,15245.525047729992,0,1,2,3,66.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.059033716266400874,15245.525047729992,3,2,3_0,3_0_0,3_1_0,3_0_0 -12145,2,49.0,0.0,5,112,0.0,0.0,0.0,56,47,0.0,0.0,0.0,1426.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,80.0,1,,3,125274,2,2,5,0,1,,0.0,820.0,43,2.0,1.0,4.0,4.0,2.1,1,1,919.026925999341,0.0,46948.32071264337,1,1,2,3,89.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030373823352024015,22356.34319649684,6,3,6,6_1,6_1,6_0_0 -12146,2,51.0,0.0,2,112,224.0,1361.0,0.0,0,52,0.0,0.0,309.60702697700845,1585.0,0.0,2468.3815980533777,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,104606,2,1,2,0,1,,110.0,,12,1.0,0.0,4.0,1.0,1.0,5,3,953.226157548646,224.0,19905.019685467374,0,1,0,1,70.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07962815536209723,19905.019685467374,5,3,5,5_1,5_1,5_0_1 -12147,2,60.0,0.0,9,112,2500.0,0.0,0.0,43,43,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,120.0,1,2009.0,6,108905,2,1,1,0,1,,400.0,,43,3.0,2.0,6.0,3.0,2.0,2,2,658.417580702029,2500.0,71481.65385515918,1,1,1,2,167.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034974008926341636,35740.82692757959,9,5,9,9_1,9_1,9_0_0 -12149,2,40.0,0.0,6,112,1200.0,0.0,0.0,21,54,0.0,310.55175144583734,1658.6090730911167,1620.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,3,90.0,1,,4,107571,2,1,1,0,1,,700.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,511.925458633286,1200.0,36872.70825694461,1,1,0,1,85.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04393493390046523,15363.628440393586,3,2,3_0,3_1_0,3_1_0,3_0_0 -12150,1,37.0,481.0,2,112,0.0,0.0,0.0,55,53,0.0,0.0,0.0,771.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,90.0,2,,2,104678,1,1,0,0,1,,467.0,675.0,43,2.0,1.0,4.0,5.0,2.4,3,3,658.274661834447,0.0,10701.166442743413,4,1,2,3,60.0,10,2,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07204822054915556,4458.819351143089,1,1,1_1,1_0_1,1_1_1,1_0_1 -12151,1,79.0,91.0,1,112,1160.0,0.0,0.0,0,77,0.0,0.0,1603.3221039880796,1160.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,126781,1,2,0,0,1,,158.0,636.0,11,0.0,3.0,3.0,1.0,1.0,2,2,621.981001920062,1160.0,16743.07594596096,0,5,2,3,65.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.0692823710376727,16743.07594596096,4,2,4_1,4_0_1,4_1_1,4_1_0 -12152,2,67.0,0.0,1,112,730.0,0.0,0.0,75,74,3435.2452171414016,0.0,1008.9871861304293,3030.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,109273,2,1,2,0,1,,274.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,638.921445511485,730.0,48421.060325624385,5,5,0,1,200.0,10,2,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06257607701326041,32280.70688374959,8,4,8,8_1,8_1,8_1_0 -12153,2,42.0,0.0,6,112,670.0,1300.0,0.0,0,22,0.0,0.0,926.0567324758734,3167.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,4,132069,2,1,2,0,1,,500.0,800.0,32,1.0,0.0,4.0,3.0,2.0,1,1,755.033891112279,670.0,22746.405441156254,0,4,2,3,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1392307900337423,11373.202720578127,2,1,2_0,2_1_0,2_1_0,2_0_0 -12154,2,50.0,0.0,5,112,1700.0,0.0,0.0,46,38,0.0,0.0,2349.696186879082,1800.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,3,111450,2,2,1,0,1,,420.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,712.632308372846,1700.0,94713.48933363843,1,1,0,1,172.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01900468468286821,45101.66158744687,10,5,10,10_1,10_1,10_0_0 -12155,2,29.0,0.0,6,211,120.0,0.0,0.0,56,38,0.0,0.0,165.86090730911167,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,124385,2,1,3,0,1,,600.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,762.927091859437,120.0,50120.07005928934,1,1,1,2,78.0,1,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002394250444144361,27844.483366271856,7,4,7,7_1,7_1,7_0_0 -12156,2,52.0,0.0,1,211,0.0,0.0,0.0,34,38,0.0,0.0,0.0,3427.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,1,118549,2,1,2,0,1,,416.0,,43,2.0,0.0,7.0,4.0,2.5,1,1,486.342370487855,0.0,105808.66472531235,1,1,0,1,200.0,1,3,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03238865180745606,42323.46589012494,9,5,9,9_1,9_1,9_1_0 -12157,2,83.0,0.0,1,112,468.0,0.0,0.0,0,71,0.0,0.0,646.8575385055356,588.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,102950,2,3,1,0,1,,100.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,592.7226131222,468.0,15631.357742407243,0,5,0,1,70.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03761669393598355,15631.357742407243,3,2,3_0,3_1_0,3_0_0,3_1_0 -12158,2,62.0,0.0,1,112,2125.0,0.0,0.0,43,31,0.0,621.1035028916747,2937.1202335988523,2845.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107777,2,1,2,0,1,,210.0,,43,3.0,2.0,8.0,4.0,2.5,4,4,524.897179045057,2125.0,136115.4207967398,1,1,0,1,310.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020901379016036826,54446.16831869593,10,5,10,10_1,10_0,10_1_0 -12159,2,63.0,0.0,7,112,876.0,0.0,0.0,77,74,0.0,931.655254337512,1210.784623356515,1846.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,103931,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,3.0,2.0,2,2,597.782345431025,876.0,41260.601364362,5,5,0,1,80.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0447400168431487,20630.300682181,5,3,5,5_1,5_0,5_0_0 -12160,2,45.0,0.0,7,112,1585.0,0.0,0.0,52,62,0.0,414.0690019277831,2190.74615070785,2085.0,172.03270041901916,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,112168,2,1,2,0,1,,444.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,753.285323123732,1585.0,49729.83705874184,1,1,1,2,200.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041926539946977065,21621.6682864095,6,3,6,6_1,6_0,6_0_0 -12161,2,57.0,0.0,1,112,1900.0,0.0,0.0,0,63,0.0,465.827627168756,2626.131032394268,2378.0,48.169156117325365,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,108852,2,1,1,0,1,,160.0,,12,1.0,2.0,4.0,1.0,1.0,4,3,625.554830552252,1900.0,27002.93820934038,0,1,0,1,85.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08806449067003547,27002.93820934038,7,4,7,7_1,7_0,7_1_0 -12162,1,43.0,420.0,2,111,350.0,350.0,0.0,0,68,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,129449,2,1,0,1,1,,0.0,620.0,32,2.0,0.0,3.0,5.0,2.5999999999999996,5,4,384.13949317092,350.0,30738.743644087386,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022772563775053486,11822.593709264382,2,1,2_1,2_0_1,2_4_1,2_0_1 -12163,1,65.0,170.0,2,111,360.0,70.0,0.0,85,52,0.0,0.0,497.582721927335,430.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,101175,2,1,0,1,1,,0.0,600.0,42,2.0,1.0,5.0,4.0,2.3,3,2,454.667808602301,360.0,22007.25036501506,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01953901522761659,9568.369723919592,1,1,1_1,1_0_1,1_4_1,1_0_1 -12164,2,61.0,0.0,2,111,390.0,2000.0,0.0,0,37,0.0,0.0,539.0479487546129,2390.0,0.0,3627.3058016948976,20,0,0,0,0,0,0,0,0,2,120.0,1,,2,123580,2,2,2,0,1,,500.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,715.72044980101,390.0,47095.57530691157,0,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050747867170639546,47095.57530691157,10,5,10,10_1,10_4,10_0_1 -12165,1,33.0,207.0,5,111,220.0,400.0,0.0,0,42,0.0,0.0,304.0783300667047,620.0,0.0,725.4611603389795,10,2,1,2,2,1,2,2,2,3,30.0,2,,3,116206,1,3,0,1,1,,0.0,297.0,12,1.0,0.0,1.0,1.0,1.0,2,2,540.116892913016,220.0,11932.268944494124,0,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.051959941808559805,11932.268944494124,2,1,2_1,2_0_1,2_4_1,2_0_0 -12166,2,29.0,0.0,7,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,739.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,110486,2,1,2,0,2,,1168.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,457.65078512,0.0,83193.530747215,1,1,1,2,115.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008882902232451997,46218.628192897224,10,5,10,10_1,10_4,10_0_0 -12167,1,55.0,78.0,2,111,700.0,1350.0,0.0,52,46,0.0,0.0,967.5219593031513,2050.0,0.0,2448.431416144056,71,0,0,0,0,0,0,0,0,3,70.0,1,,2,109656,2,1,2,0,1,,600.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,473.355134106607,700.0,27754.110844752253,4,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07386293192626685,13877.055422376126,3,2,3_1,3_1_1,3_4_1,3_0_1 -12168,2,53.0,0.0,2,111,1020.0,0.0,0.0,56,35,0.0,310.55175144583734,1409.817712127449,1358.0,65.80250791027483,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,2,115113,2,1,2,0,1,,500.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,464.391722766722,1020.0,59280.9815221591,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022907852824474283,39520.654348106065,9,5,9,9_1,9_4,9_0_1 -12169,2,57.0,0.0,7,111,1800.0,0.0,0.0,75,37,0.0,310.55175144583734,2487.913609636675,2100.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,,5,114904,1,1,3,0,1,,580.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,464.391722766722,1800.0,76218.30746498302,5,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02755243549543268,50812.20497665535,10,5,10,10_1,10_4,10_0_0 -12170,2,53.0,0.0,7,111,1000.0,1000.0,0.0,53,77,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,1,,5,114019,2,1,2,0,1,,500.0,,42,1.0,3.0,8.0,3.0,1.8,1,1,534.642750015259,1000.0,56422.860956195036,1,5,1,2,127.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035446625110923356,31346.033864552795,8,4,8,8_1,8_4,8_0_0 -12171,2,39.0,0.0,2,111,1181.0,1487.0,0.0,85,47,0.0,0.0,1632.347762767174,2668.0,0.0,2696.9018635601565,31,2,2,2,2,2,2,1,2,2,15.0,1,,2,130715,2,2,2,0,1,,537.0,,42,1.0,0.0,4.0,4.0,2.3,2,2,531.272121177993,1181.0,48109.72602264783,6,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05545656191731437,20917.272183759927,5,3,5,5_1,5_4,5_0_1 -12172,2,76.0,0.0,2,111,240.0,800.0,0.0,0,75,0.0,0.0,331.72181461822333,1040.0,0.0,1450.922320677959,10,0,0,0,0,0,0,0,0,0,,1,,2,130009,2,1,2,0,1,,250.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,630.180782407082,240.0,26007.20406093896,0,5,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03998891989939083,26007.20406093896,7,4,7,7_1,7_4,7_0_1 -12173,2,41.0,0.0,1,111,922.0,2616.0,0.0,45,38,0.0,0.0,1274.364637825008,3538.0,0.0,4744.515988616927,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,100148,2,2,1,0,2,,698.0,,43,2.0,0.0,9.0,5.0,2.4,1,1,373.216886012223,922.0,74331.86738907786,4,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04759735123403969,30971.611412115777,8,4,8,8_1,8_4,8_1_0 -12174,2,40.0,0.0,2,111,660.0,120.0,0.0,0,55,0.0,0.0,912.2349902001142,780.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,127474,2,1,0,0,1,,60.0,450.0,12,1.0,1.0,2.0,1.0,1.0,2,2,646.37178786671,660.0,18035.9451290709,0,1,2,3,25.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04324697122430094,18035.9451290709,4,2,4_0,4_0_0,4_4_0,4_0_1 -12175,2,81.0,0.0,1,111,350.0,1880.0,0.0,0,77,0.0,0.0,483.76097965157567,2230.0,0.0,3409.667453593204,50,0,0,0,0,0,0,0,0,0,,1,,1,113063,2,2,2,0,1,,100.0,,11,0.0,1.0,5.0,1.0,1.0,3,3,511.276815790985,350.0,17870.142293396162,0,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12478915743295942,17870.142293396162,4,2,4_0,4_1_0,4_4_0,4_1_0 -12176,2,42.0,0.0,2,111,500.0,100.0,0.0,0,52,0.0,0.0,691.0871137879653,600.0,0.0,181.36529008474488,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,126390,2,1,0,1,1,720.0,900.0,200.0,32,2.0,0.0,4.0,3.0,1.8,1,1,446.839070250792,500.0,43259.183734062724,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013869887228767884,24032.87985225707,6,3,6,6_0,6_4,6_0_1 -12177,2,57.0,0.0,5,111,624.0,85.0,0.0,78,67,0.0,0.0,862.4767180073807,709.0,0.0,154.16049657203317,33,1,2,2,2,1,2,2,2,2,10.0,2,,3,103349,2,2,0,1,1,,0.0,411.0,42,1.0,1.0,3.0,2.0,1.5,3,3,525.385027752546,624.0,16815.84980179645,5,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04216260304158147,11210.566534530966,2,1,2_0,2_0_0,2_4_0,2_0_0 -12178,2,47.0,0.0,6,111,721.0,1430.0,0.0,67,63,0.0,0.0,996.5476180822459,2151.0,0.0,2593.523648211852,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,125123,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,517.516980972127,721.0,50335.89614669652,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042732923513097466,20134.35845867861,5,3,5,5_1,5_4,5_0_0 -12179,2,57.0,0.0,2,111,600.0,1810.0,0.0,37,37,0.0,0.0,829.3045365455583,2410.0,0.0,3282.7117505338824,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,113173,2,1,1,0,1,,550.0,,43,2.0,1.0,8.0,3.0,2.0,2,2,473.355134106607,600.0,145734.2581059863,1,1,0,1,175.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016536949042189587,72867.12905299314,10,5,10,10_1,10_4,10_0_1 -12180,2,61.0,0.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,250.0,0.0,0.0,41,2,1,2,2,1,2,2,2,0,,2,,2,132417,2,3,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,479.126422620266,250.0,18111.76727419997,0,5,1,2,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013803180894231258,18111.76727419997,4,2,4_0,4_0_0,4_4_0,4_0_1 -12181,2,32.0,0.0,8,111,0.0,0.0,0.0,53,53,0.0,0.0,0.0,2149.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,101499,2,1,2,0,1,,1011.0,775.0,43,2.0,0.0,2.0,2.0,1.5,2,2,591.805399778429,0.0,44482.50970076033,1,1,2,3,47.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04831112305615408,29655.006467173556,8,4,8,8_1,8_4,8_0_0 -12182,2,46.0,0.0,2,111,0.0,797.0,0.0,68,46,0.0,0.0,0.0,1918.0,0.0,1445.4813619754168,12,0,0,0,0,0,0,0,0,2,45.0,1,,2,123967,2,1,1,0,1,,390.0,,43,2.0,0.0,1.0,4.0,2.3,3,2,603.386095151696,0.0,26519.545590466794,4,1,0,1,100.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07232401450685036,11530.237213246433,2,1,2_0,2_1_0,2_4_0,2_0_1 -12183,2,31.0,0.0,2,111,298.0,1020.0,0.0,53,53,0.0,207.03450096389156,411.88791981762733,1518.0,0.0,1849.925958864398,71,1,2,2,1,1,2,2,2,2,30.0,1,,2,127876,2,2,1,0,1,,636.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,635.517696957542,298.0,58478.83239748595,1,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.02595811061482924,38985.88826499064,9,5,9,9_1,9_4,9_0_1 -12184,2,60.0,0.0,7,111,582.0,700.0,0.0,52,62,0.0,24.84414011566699,804.4254004491916,1306.0,0.0,1269.5570305932142,70,0,0,0,0,0,0,0,0,2,60.0,1,,5,129087,2,1,2,0,1,,300.0,,43,2.0,1.0,6.0,2.0,1.5,1,1,507.728273589532,582.0,59795.84259684096,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021840983307240772,39863.89506456064,9,5,9,9_1,9_4,9_0_0 -12185,2,65.0,0.0,2,111,1476.0,0.0,0.0,78,74,2688.452778632401,155.27587572291867,2040.0891599020736,3426.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,112847,2,1,2,0,1,,684.0,,41,0.0,1.0,9.0,2.0,1.5,4,4,542.517735830436,1476.0,63818.265635678465,5,5,0,1,125.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053683690176698384,42545.51042378564,9,5,9,9_1,9_4,9_0_1 -12186,1,37.0,280.0,8,111,1200.0,0.0,0.0,22,23,0.0,776.3793786145933,1658.6090730911167,1950.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,90.0,1,2002.0,6,102554,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,469.81473518561,1200.0,27547.725378911062,4,1,1,2,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07078624362550118,15304.291877172811,3,2,3_1,3_1_1,3_4_1,3_0_0 -12187,2,39.0,0.0,2,111,1800.0,0.0,0.0,38,38,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,60.0,1,,2,109040,2,1,1,0,1,,690.0,,43,2.0,0.0,7.0,3.0,1.8,4,4,422.045297214588,1800.0,79690.23185793888,4,1,1,2,127.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02258746094764538,44272.351032188264,10,5,10,10_1,10_4,10_0_1 -12188,2,57.0,0.0,2,111,360.0,900.0,0.0,0,75,0.0,0.0,497.582721927335,1260.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,0,,2,,2,106146,2,1,0,0,1,,300.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,675.695812226007,360.0,42044.159272770485,0,5,1,2,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029968490791443356,42044.159272770485,9,5,9,9_0,9_4,9_0_1 -12189,2,58.0,0.0,6,111,2000.0,0.0,0.0,37,37,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,,4,133586,2,1,2,0,1,,600.0,,43,2.0,2.0,7.0,3.0,2.0,1,1,480.128259549128,2000.0,94374.84447599151,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02119208790334791,47187.42223799576,10,5,10,10_1,10_4,10_0_0 -12190,2,50.0,0.0,5,111,250.0,0.0,0.0,0,43,0.0,0.0,345.54355689398267,250.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,2,,3,103324,1,3,0,1,2,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,3,3,711.166288301776,250.0,22975.362826858112,0,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010881220979359287,22975.362826858112,6,3,6,6_0,6_4,6_0_0 -12191,1,50.0,250.0,2,111,1080.0,1200.0,0.0,56,53,0.0,0.0,1492.748165782005,2280.0,0.0,2176.3834810169387,70,2,2,2,1,2,2,2,2,3,180.0,2,,2,104601,1,2,0,0,1,,0.0,1000.0,43,2.0,1.0,4.0,6.0,2.9,1,1,931.723389288459,1080.0,34144.253748217016,4,1,2,3,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06677551124159684,11773.880602833455,2,1,2_1,2_0_1,2_4_1,2_0_1 -12192,2,71.0,0.0,5,111,600.0,2000.0,0.0,0,74,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,31,0,0,0,0,0,0,0,0,0,,2,,3,124623,1,3,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,656.77783868431,600.0,32309.45539019556,0,5,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0804717990012602,32309.45539019556,8,4,8,8_0,8_4,8_0_0 -12193,2,84.0,0.0,6,111,300.0,300.0,0.0,0,86,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,20,0,0,0,0,0,0,0,0,0,,2,,4,130573,2,1,0,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,637.782615070725,300.0,13762.858558864791,0,5,0,1,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04359559443510623,13762.858558864791,3,2,3_0,3_0_0,3_4_0,3_0_0 -12194,2,76.0,0.0,7,111,260.0,0.0,0.0,0,77,0.0,0.0,359.36529916974195,260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,106402,2,1,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,522.823082385105,260.0,20926.279996878402,0,5,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01242456853481768,20926.279996878402,5,3,5,5_0,5_4,5_0_0 -12195,2,44.0,0.0,7,111,408.0,0.0,0.0,43,47,0.0,0.0,563.9270848509797,408.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,130779,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,465.512968140149,408.0,55782.083532504716,1,1,1,2,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00731417641942784,26562.89692024034,7,4,7,7_0,7_4,7_0_0 -12196,2,36.0,0.0,7,111,800.0,800.0,0.0,85,38,0.0,0.0,1105.7393820607444,1600.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,3,45.0,2,,5,123106,2,1,0,0,1,,0.0,600.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,1,777.551868705443,800.0,39692.645017677736,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04030973494679972,14700.97963617694,3,2,3_0,3_0_0,3_4_0,3_0_0 -12197,0,55.0,0.0,6,111,550.0,0.0,0.0,56,52,0.0,0.0,760.1958251667618,650.0,172.03270041901916,0.0,33,2,1,2,1,1,2,2,2,2,5.0,2,,4,113621,1,2,0,1,1,,0.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,709.198399325006,550.0,26753.839423700414,1,1,5,0,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.024295578279661226,17835.89294913361,4,2,4_0,4_0_0,4_4_0,4_0_0 -12199,1,28.0,300.0,6,111,0.0,0.0,0.0,42,52,0.0,0.0,0.0,771.0,0.0,0.0,10,2,2,2,1,1,2,2,2,2,30.0,2,,4,101949,2,2,0,1,1,,0.0,674.0,43,2.0,0.0,4.0,5.0,2.4,2,2,506.503365983862,0.0,39197.52428992231,1,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.019669609598232312,16332.30178746763,4,2,4_1,4_0_1,4_4_1,4_0_0 -12200,2,69.0,0.0,5,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,716.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118099,2,1,0,1,1,,0.0,617.0,11,0.0,3.0,2.0,1.0,1.0,2,2,766.398666623637,0.0,33719.181849357425,0,5,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021234204412158494,33719.181849357425,9,5,9,9_0,9_4,9_0_0 -12201,2,37.0,0.0,9,111,206.0,0.0,0.0,68,65,0.0,0.0,284.72789088064167,206.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,2005.0,6,110623,2,1,0,1,1,500.0,0.0,392.0,43,2.0,0.0,2.0,2.0,1.5,2,2,424.838853876382,206.0,20480.36807273855,4,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010058412977167482,13653.578715159034,3,2,3_0,3_0_0,3_4_0,3_0_0 -12202,2,52.0,0.0,7,112,1650.0,0.0,0.0,54,21,0.0,465.827627168756,2280.5874755002856,2100.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,5,118377,2,2,3,0,1,,650.0,,43,4.0,0.0,6.0,6.0,3.5,1,1,557.850700050894,1650.0,120172.1250651299,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.01747493438151201,34334.8928757514,9,5,9,9_1,9_0,9_0_0 -12203,2,61.0,0.0,1,112,800.0,2500.0,0.0,74,75,0.0,0.0,1105.7393820607444,3360.0,103.2196202514115,4534.132252118622,71,0,0,0,0,0,0,0,0,0,,1,,1,119313,2,1,3,0,1,,280.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,519.009497558041,800.0,69694.84202732024,5,5,0,1,170.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04821016738488175,46463.22801821349,10,5,10,10_1,10_0,10_1_0 -12204,2,52.0,0.0,1,112,733.0,2558.0,0.0,85,38,0.0,56.93448776507018,1013.1337088131571,3346.0,0.0,4639.324120367774,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,126332,2,1,2,0,1,,472.0,,42,1.0,2.0,7.0,3.0,2.0,1,1,511.475748592295,733.0,89055.96435208549,6,1,0,1,200.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03757187993351559,44527.982176042744,10,5,10,10_1,10_0,10_1_0 -12205,2,41.0,0.0,8,112,1268.0,0.0,0.0,37,43,0.0,0.0,1752.59692056628,1278.0,17.203270041901916,0.0,71,2,2,2,2,1,2,2,2,0,,1,2000.0,6,126422,2,1,1,0,1,,260.0,1083.0,43,2.0,0.0,4.0,5.0,2.6,2,2,520.684040672851,1268.0,120945.04237099836,1,1,2,3,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.010566782853982066,46517.32398884552,10,5,10,10_1,10_0,10_0_0 -12206,2,68.0,0.0,7,112,1480.0,0.0,0.0,78,78,0.0,310.55175144583734,2045.6178568123773,1780.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,110232,2,1,0,0,1,,400.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,785.156528151665,1480.0,35738.041617929965,5,5,0,1,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049806870198141034,23825.361078619975,6,3,6,6_0,6_0,6_0_0 -12207,2,65.0,0.0,6,112,1368.0,0.0,0.0,77,77,0.0,465.827627168756,1890.814343323873,1878.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,118293,2,1,2,0,1,,271.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,647.998476487727,1368.0,52378.77896046037,5,5,0,1,102.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03585421495635976,34919.18597364025,9,5,9,9_1,9_0,9_0_0 -12208,2,55.0,0.0,1,112,900.0,0.0,0.0,0,46,0.0,0.0,1243.9568048183376,2242.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,1,,1,109711,2,1,2,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,4,4,626.003347537518,900.0,58875.21913992564,0,1,0,1,80.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03808053766511775,58875.21913992564,10,5,10,10_1,10_0,10_1_0 -12209,2,37.0,0.0,2,112,800.0,0.0,0.0,54,33,1045.5094139126004,0.0,1105.7393820607444,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,90.0,1,,2,114759,2,1,1,0,2,,720.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,828.597998956316,800.0,49657.62891165505,4,1,1,2,75.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03020683896664945,23646.489957930975,6,3,6,6_1,6_0,6_0_1 -12210,2,28.0,0.0,2,112,650.0,1200.0,0.0,46,37,0.0,0.0,898.4132479243549,1850.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,35.0,1,,2,104706,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,2.0,1.5,3,3,894.406181241622,650.0,76346.5222447698,1,1,1,2,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02423162110867121,50897.6814965132,10,5,10,10_1,10_0,10_0_1 -12211,2,50.0,0.0,2,111,500.0,0.0,0.0,45,33,0.0,0.0,691.0871137879653,842.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,117420,2,1,0,1,1,,0.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,530.28676718418,500.0,87563.30558717363,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009615900111968102,43781.652793586814,10,5,10,10_0,10_4,10_0_1 -12212,2,43.0,0.0,1,111,2000.0,1500.0,0.0,54,38,0.0,0.0,2764.3484551518613,3500.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,120942,2,1,1,0,1,,1000.0,,43,3.0,0.0,7.0,6.0,3.0999999999999996,3,2,440.821990970477,2000.0,90457.57039732118,1,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03869217340933191,29179.861418490706,8,4,8,8_1,8_4,8_1_0 -12213,2,51.0,0.0,2,111,340.0,1300.0,0.0,0,38,0.0,207.03450096389156,469.9392373758164,1840.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,2,180.0,1,,2,104108,2,1,2,0,1,,350.0,,32,1.0,0.0,3.0,3.0,2.0,1,1,615.704977255779,340.0,71992.5930026712,0,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025558184852874085,35996.2965013356,9,5,9,9_1,9_4,9_0_1 -12214,2,65.0,0.0,7,111,300.0,0.0,0.0,52,75,0.0,621.1035028916747,414.65226827277917,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119682,2,1,2,0,1,,560.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,490.123303160416,300.0,58686.36802545126,1,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015335759057532502,39124.24535030084,9,5,9,9_1,9_4,9_0_0 -12215,2,51.0,0.0,2,111,268.0,600.0,0.0,0,67,0.0,0.0,370.4226929903494,868.0,0.0,1088.1917405084694,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,111296,2,2,0,1,1,,0.0,515.0,12,1.0,0.0,3.0,1.0,1.0,1,1,479.065411282952,268.0,20196.683874323186,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.04297735239117752,20196.683874323186,5,3,5,5_0,5_4,5_0_1 -12216,2,49.0,0.0,2,112,800.0,0.0,0.0,54,62,0.0,0.0,1105.7393820607444,950.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113147,2,2,1,0,1,,250.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,786.645557517935,800.0,31905.93975304637,4,1,1,2,80.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02977502017972357,15952.969876523184,3,2,3_0,3_1_0,3_2_0,3_0_1 -12217,2,26.0,0.0,1,112,0.0,0.0,0.0,0,34,0.0,0.0,0.0,1104.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,12.0,2,,1,116150,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,1,674.348396645845,0.0,25385.68221171518,0,1,1,2,53.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04348908139606812,25385.68221171518,7,4,7,7_0,7_2,7_1_0 -12218,2,74.0,0.0,2,112,1583.0,0.0,0.0,77,78,0.0,0.0,2187.981802252698,1763.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104941,2,1,1,0,1,,141.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,777.565406751701,1583.0,37211.2011487737,5,5,0,1,85.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04737820724870903,24807.4674325158,7,4,7,7_1,7_2,7_0_1 -12219,1,27.0,144.0,7,112,0.0,0.0,1400.0,63,54,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,70,2,2,2,1,1,2,2,2,0,,1,,5,114066,1,3,3,0,1,,400.0,470.0,43,2.0,0.0,4.0,3.0,1.8,2,2,740.375146529206,0.0,37166.49306340653,1,1,2,3,75.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.03766833738151139,20648.051701892517,5,3,5,5_1,5_2,5_0_0 -12220,2,81.0,0.0,2,112,180.0,250.0,0.0,0,78,0.0,0.0,248.7913609636675,430.0,0.0,453.4132252118622,71,0,0,0,0,0,0,0,0,0,,2,,2,113390,2,1,0,0,1,,70.0,608.0,11,0.0,1.0,4.0,1.0,1.0,5,3,1005.39444934934,180.0,18373.61207912307,0,5,2,3,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023403128255253928,18373.61207912307,4,2,4_0,4_0_0,4_2_0,4_0_1 -12221,2,67.0,0.0,5,112,1575.0,90.0,0.0,77,75,0.0,0.0,2176.924408432091,1868.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,0,,1,,3,106859,2,1,2,0,1,,552.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,754.1207203602,1575.0,61935.44928645422,5,5,0,1,165.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0301604335081258,41290.29952430281,9,5,9,9_1,9_2,9_0_0 -12222,2,65.0,0.0,1,112,137.0,0.0,0.0,0,78,0.0,2277.379510602807,189.3578691779025,2457.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107197,2,2,1,0,1,,153.0,,11,0.0,2.0,2.0,1.0,1.0,3,3,626.054447938478,137.0,14530.762626442145,0,5,0,1,40.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16908954217784206,14530.762626442145,3,2,3_0,3_1_0,3_2_0,3_1_0 -12223,2,50.0,0.0,1,112,300.0,800.0,0.0,0,64,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,125938,2,1,1,0,1,,200.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,664.782415238767,300.0,30199.833869538215,0,1,1,2,60.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03642404142857029,30199.833869538215,8,4,8,8_1,8_2,8_1_0 -12224,2,41.0,0.0,5,111,400.0,1000.0,0.0,0,38,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,2,60.0,2,,3,133440,2,3,0,0,1,,0.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,717.955910892717,400.0,70802.31265148392,0,1,1,2,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019773365410976556,47201.54176765595,10,5,10,10_0,10_4,10_0_0 -12225,2,56.0,0.0,6,111,1073.0,0.0,0.0,77,47,0.0,776.3793786145933,1483.0729461889734,2003.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,4,133387,2,1,2,0,1,,672.0,,42,2.0,4.0,5.0,3.0,2.0,2,2,518.555256127544,1073.0,46290.06363513678,6,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04327062532875003,23145.03181756839,6,3,6,6_1,6_4,6_0_0 -12226,2,66.0,0.0,6,111,1600.0,0.0,0.0,77,75,0.0,388.18968930729665,2211.478764121489,2065.0,154.82943037711726,0.0,50,2,2,2,1,2,2,2,2,0,,1,,4,118124,2,1,1,0,1,,460.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,570.994229398645,1600.0,34549.821888997576,5,5,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.059768759637444074,23033.214592665052,6,3,6,6_1,6_4,6_0_0 -12227,2,47.0,0.0,7,111,1203.0,1295.0,0.0,54,37,0.0,124.22070057833493,1662.7555957738446,2618.0,0.0,2348.6805065974463,50,1,2,2,1,1,2,2,2,2,55.0,1,,5,129737,2,1,2,0,1,,580.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,521.933734576659,1203.0,92711.11662322779,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.028238253354658526,37084.446649291116,9,5,9,9_1,9_4,9_0_0 -12228,2,63.0,0.0,2,111,2160.0,0.0,0.0,0,78,0.0,0.0,2985.49633156401,2216.0,96.33831223465073,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105985,2,2,1,0,1,,250.0,410.0,31,0.0,1.0,4.0,2.0,1.3,1,1,686.181305945287,2160.0,22398.119941047167,0,5,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09893687531956294,17229.323031574742,4,2,4_0,4_1_0,4_4_0,4_0_1 -12229,2,32.0,0.0,1,112,1200.0,0.0,0.0,42,46,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103431,2,2,3,0,1,,200.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,986.605571212801,1200.0,45180.28857831659,1,1,1,2,60.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027888268084341382,25100.160321286996,7,4,7,7_1,7_0,7_1_0 -12230,2,49.0,0.0,1,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1882.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106650,2,2,4,0,1,,239.0,750.0,32,1.0,0.0,3.0,2.0,1.5,2,2,539.904400754079,0.0,29022.310592921425,0,1,2,3,60.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06484666318949195,19348.207061947618,5,3,5,5_1,5_0,5_1_0 -12231,2,50.0,0.0,7,112,1100.0,1100.0,0.0,52,21,0.0,517.5862524097289,1520.3916503335236,2700.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,0,,1,,5,131137,2,1,3,0,1,,1000.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,590.227653520837,1100.0,38560.568739362105,4,1,1,2,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07001971413465893,18362.175590172432,4,2,4_0,4_1_0,4_0_0,4_0_0 -12232,2,64.0,0.0,6,112,2000.0,0.0,0.0,77,77,0.0,155.27587572291867,2764.3484551518613,2150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,123038,2,1,1,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,793.399379850071,2000.0,63667.03757629085,5,5,0,1,110.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03376943677367902,42444.69171752723,9,5,9,9_1,9_0,9_0_0 -12233,2,50.0,0.0,7,112,1200.0,0.0,0.0,85,65,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,20.0,1,,5,128274,2,1,1,0,1,,700.0,,42,1.0,0.0,7.0,3.0,2.0,1,1,594.550565139264,1200.0,34583.73122991837,7,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03469839596029131,17291.865614959184,4,2,4_0,4_1_0,4_0_0,4_0_0 -12234,2,66.0,0.0,1,111,430.0,1500.0,0.0,77,77,0.0,0.0,594.3349178576501,1930.0,0.0,2720.4793512711735,60,0,0,0,0,0,0,0,0,0,,1,,1,133555,1,1,2,0,2,,200.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,688.77673991653,430.0,31655.976941323002,5,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06096794938843354,21103.984627548667,5,3,5,5_1,5_4,5_1_0 -12235,2,34.0,0.0,2,111,1500.0,0.0,0.0,34,64,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,109381,2,1,2,0,1,,320.0,1062.0,43,2.0,0.0,4.0,3.0,1.8,1,1,966.825985148826,1500.0,55474.03939783924,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027039675067513223,30818.910776577355,8,4,8,8_1,8_4,8_0_1 -12236,2,33.0,0.0,7,111,1200.0,0.0,0.0,0,47,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,2,,5,127828,2,1,0,0,1,,300.0,675.0,32,1.0,0.0,2.0,3.0,1.6,1,1,982.172928773205,1200.0,26710.453555501885,0,1,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04492623075480577,16694.033472188676,4,2,4_0,4_0_0,4_4_0,4_0_0 -12237,2,53.0,0.0,9,111,2000.0,0.0,0.0,56,64,0.0,0.0,2764.3484551518613,2200.0,344.06540083803833,0.0,41,0,0,0,0,0,0,0,0,3,180.0,1,2005.0,6,133194,2,1,1,0,1,,840.0,,43,3.0,0.0,6.0,6.0,3.5,2,2,513.476901548294,2000.0,41480.23197503123,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05303731187724014,11851.494850008923,2,1,2_0,2_1_0,2_4_0,2_0_0 -12238,2,77.0,0.0,7,111,400.0,1200.0,0.0,0,77,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,2,,5,120408,2,1,0,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,808.750603125749,400.0,32819.21826784694,0,5,1,2,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04875192294167237,32819.21826784694,8,4,8,8_0,8_4,8_0_0 -12239,2,36.0,0.0,9,111,600.0,1500.0,0.0,85,64,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,116695,2,1,0,0,1,,150.0,700.0,42,1.0,0.0,2.0,3.0,1.8,3,3,1061.87646053096,600.0,35999.59703762473,6,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.058333986288935394,19999.776132013736,5,3,5,5_0,5_4,5_0_0 -12240,2,66.0,0.0,6,111,0.0,0.0,0.0,85,78,0.0,0.0,0.0,2666.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112093,2,1,1,0,1,,433.0,,41,0.0,5.0,7.0,4.0,2.5,2,2,589.600132861362,0.0,20459.12852385178,6,5,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1303085806852383,8183.651409540713,1,1,1_0,1_1_0,1_4_0,1_0_0 -12241,2,64.0,0.0,5,111,850.0,1350.0,0.0,77,75,0.0,0.0,1174.848093439541,2200.0,0.0,2448.431416144056,71,0,0,0,0,0,0,0,0,0,,1,,3,107059,2,2,3,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,590.254002393256,850.0,49275.158317156034,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04464724366464451,32850.10554477069,8,4,8,8_1,8_4,8_0_0 -12242,2,39.0,0.0,9,111,400.0,450.0,0.0,37,54,0.0,0.0,552.8696910303722,850.0,0.0,816.143805381352,70,0,0,0,0,0,0,0,0,3,60.0,2,2006.0,6,120296,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,666.895375183939,400.0,72180.65318946987,1,1,1,2,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011776008700957599,34371.73961403327,9,5,9,9_0,9_4,9_0_0 -12243,2,52.0,0.0,2,112,130.0,1300.0,0.0,90,21,0.0,310.55175144583734,179.68264958487097,1730.0,0.0,2357.7487711016834,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,103750,2,2,2,0,1,,290.0,,42,1.0,4.0,3.0,2.0,1.5,1,1,801.410474954006,130.0,51579.65449911854,5,1,0,1,85.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03354035649908366,34386.43633274569,9,5,9,9_1,9_0,9_0_1 -12244,2,68.0,0.0,2,112,413.0,0.0,0.0,78,75,2501.7546690051513,0.0,570.8379559888593,2208.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113163,2,1,2,0,1,,390.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,846.408807368057,413.0,47019.534529500575,5,5,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04695920582996577,31346.356353000385,8,4,8,8_1,8_0,8_0_1 -12245,2,39.0,0.0,1,112,1800.0,0.0,0.0,53,33,0.0,113.86897553014036,2487.913609636675,1910.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,128783,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,527.750346559988,1800.0,67213.05822331818,1,1,1,2,87.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02841709707143433,32006.218201580083,8,4,8,8_1,8_0,8_1_0 -12246,2,24.0,0.0,1,112,0.0,0.0,0.0,53,46,0.0,0.0,0.0,1443.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,103215,1,3,3,0,2,,549.0,560.0,43,2.0,0.0,2.0,2.0,1.5,5,3,786.93266725637,0.0,34719.771860665096,1,1,2,3,40.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04156133300042824,23146.51457377673,6,3,6,6_1,6_0,6_1_0 -12247,2,39.0,0.0,6,112,0.0,0.0,0.0,52,45,0.0,0.0,0.0,4238.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,120.0,1,,4,122026,2,2,3,0,1,,267.0,,43,2.0,0.0,6.0,5.0,2.4,5,5,445.885428465993,0.0,46424.50738487688,1,1,1,2,120.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09128799073440592,19343.5447436987,5,3,5,5_1,5_0,5_0_0 -12248,2,33.0,0.0,9,111,780.0,0.0,0.0,0,53,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,106330,2,1,0,0,1,,0.0,380.0,32,1.0,0.0,2.0,2.0,1.3,2,2,553.241550293957,780.0,31229.394845177914,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024976468608082513,24022.611419367626,6,3,6,6_0,6_4,6_0_0 -12249,2,31.0,0.0,7,111,900.0,0.0,0.0,85,53,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,5,118258,2,1,0,0,1,,0.0,570.0,42,1.0,0.0,3.0,4.0,2.1,1,1,490.971276804892,900.0,35845.983986173465,7,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025107415110913082,17069.516183892127,4,2,4_0,4_0_0,4_4_0,4_0_0 -12250,2,84.0,0.0,7,111,1500.0,0.0,0.0,75,77,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124069,2,2,3,0,1,,270.0,500.0,41,0.0,3.0,3.0,2.0,1.5,1,1,529.057138090358,1500.0,30122.122665153438,5,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049797287418102985,20081.41511010229,5,3,5,5_1,5_4,5_0_0 -12251,1,47.0,300.0,1,221,0.0,0.0,0.0,85,85,0.0,0.0,0.0,845.0,0.0,0.0,10,2,2,2,1,2,2,2,2,0,,1,,1,132436,1,1,3,0,2,,0.0,480.0,41,0.0,1.0,4.0,2.0,1.5,2,2,612.354352321435,0.0,22276.806606748796,7,7,2,3,50.0,1,3,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.037931828152784064,14851.204404499198,3,2,3_1,3_1_1,3_1_1,3_1_0 -12252,1,44.0,130.0,9,221,630.0,350.0,0.0,0,21,0.0,0.0,870.7697633728362,980.0,0.0,634.7785152966071,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,101052,2,1,1,0,1,,500.0,,32,1.0,0.0,4.0,3.0,2.0,5,4,1177.86304910408,630.0,10390.632115017765,0,1,1,2,100.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09431572489065305,5195.316057508882,1,1,1_1,1_1_1,1_1_1,1_0_0 -12253,1,48.0,400.0,1,221,800.0,1200.0,0.0,0,22,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,70,1,2,2,2,1,2,2,2,0,,1,,1,120937,2,1,2,0,1,,720.0,450.0,32,2.0,0.0,6.0,4.0,2.3,1,1,549.382967297697,800.0,10734.637362420654,0,1,2,3,140.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.18631276795632726,4667.233635835067,1,1,1_1,1_1_1,1_1_1,1_1_0 -12254,1,25.0,325.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2572.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,116276,2,2,0,0,1,,286.0,288.0,32,1.0,0.0,4.0,3.0,1.6,1,1,321.472243141536,0.0,10155.43050138626,0,4,2,3,65.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.25326351252651585,6347.1440633664115,1,1,1_1,1_0_1,1_2_1,1_0_1 -12255,2,55.0,0.0,9,211,0.0,0.0,0.0,68,54,0.0,0.0,0.0,2726.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,102864,2,1,1,0,1,,203.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,302.296228540872,0.0,36997.79451476169,1,1,1,2,88.0,3,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0736800675757134,24665.196343174463,7,4,7,7_1,7_2,7_0_0 -12256,1,79.0,30.0,1,221,250.0,1300.0,0.0,0,77,0.0,0.0,345.54355689398267,1550.0,0.0,2357.7487711016834,20,0,0,0,0,0,0,0,0,0,,1,,1,121604,2,1,3,0,2,,250.0,365.0,11,0.0,2.0,3.0,1.0,1.0,1,1,620.102935953984,250.0,13117.438468754024,0,5,2,3,60.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11816331394975689,13117.438468754024,2,1,2_1,2_1_1,2_1_1,2_1_0 -12257,2,51.0,0.0,8,111,432.0,1262.0,0.0,85,38,0.0,0.0,597.099266312802,1694.0,0.0,2288.8299608694806,10,0,0,0,0,0,0,0,0,0,,1,,6,130007,2,1,2,0,1,,278.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,227.063889740871,432.0,92462.8926695798,6,1,1,2,126.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018320863116986653,38526.20527899158,9,5,9,9_1,9_2,9_0_0 -12258,2,70.0,0.0,2,111,360.0,480.0,0.0,77,78,0.0,0.0,497.582721927335,1056.0,0.0,870.5533924067755,70,0,0,0,0,0,0,0,0,0,,2,,2,115381,2,1,0,1,1,760.0,480.0,359.0,41,1.0,3.0,5.0,4.0,2.3,2,2,261.514864575074,360.0,38383.2314553737,5,5,2,3,80.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027512013969635655,16688.361502336393,4,2,4_0,4_0_0,4_2_0,4_0_1 -12259,2,42.0,0.0,9,112,0.0,0.0,0.0,47,43,0.0,0.0,0.0,763.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,60.0,1,2012.0,6,129649,2,1,1,0,1,,362.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1234.76255076705,0.0,40034.267083516155,1,1,1,2,91.0,10,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019058672871625024,26689.51138901077,7,4,7,7_1,7_0,7_0_0 -12260,2,78.0,0.0,1,221,0.0,0.0,1220.0,78,78,0.0,0.0,623.3142685017806,1220.0,0.0,1394.7598450762105,50,0,0,0,0,0,0,0,0,0,,1,,1,126621,1,3,1,0,1,,402.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,510.01666459184,0.0,18461.061169434135,5,5,0,1,70.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06608504185122069,12307.37411295609,2,1,2_0,2_1_0,2_1_0,2_1_0 -12261,2,53.0,0.0,2,111,240.0,500.0,0.0,0,63,0.0,0.0,331.72181461822333,740.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,1,2.0,2,,2,117463,2,3,0,0,1,,180.0,302.0,12,1.0,0.0,4.0,1.0,1.0,4,2,319.668842278676,240.0,26964.99075129124,0,1,2,3,75.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027442991055525005,26964.99075129124,7,4,7,7_0,7_2,7_0_1 -12262,1,86.0,50.0,2,221,180.0,1000.0,0.0,0,86,0.0,0.0,248.7913609636675,1180.0,0.0,1813.6529008474488,71,2,2,2,1,1,2,2,2,0,,2,,2,114663,2,3,0,0,2,,200.0,231.0,11,0.0,2.0,3.0,1.0,1.0,1,1,716.063974931698,180.0,16481.319409449028,0,5,2,3,55.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07159620966531875,16481.319409449028,4,2,4_1,4_0_1,4_1_1,4_0_1 -12263,1,25.0,169.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,803.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,121234,1,1,0,0,1,,197.0,675.0,22,2.0,0.0,3.0,2.0,1.5,2,2,352.649288960382,0.0,18626.81510033033,0,1,2,3,53.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043109892682928905,12417.876733553552,2,1,2_1,2_0_1,2_2_1,2_0_0 -12264,2,49.0,0.0,1,221,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1562.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,55.0,1,,1,103121,2,1,1,0,1,,287.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,555.460652099708,0.0,17781.12397379251,0,1,0,1,200.0,1,3,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08784596532267715,17781.12397379251,4,2,4_0,4_1_0,4_1_0,4_1_0 -12265,1,62.0,304.0,2,111,360.0,1020.0,0.0,77,78,0.0,0.0,497.582721927335,1380.0,0.0,1849.925958864398,70,2,2,2,1,1,2,2,2,0,,2,,2,109032,2,3,0,0,1,,600.0,299.0,41,2.0,1.0,5.0,6.0,3.3,1,1,281.033397742639,360.0,18802.134540552375,7,6,2,3,62.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07339592199085807,5697.616527440114,1,1,1_1,1_0_1,1_2_1,1_0_1 -12266,2,54.0,0.0,1,221,1336.0,570.0,0.0,22,22,0.0,0.0,1846.584768041443,1906.0,0.0,1033.782153483046,71,0,0,0,0,0,0,0,0,0,,1,,1,116829,2,1,1,0,1,,360.0,,43,2.0,2.0,5.0,2.0,1.5,2,1,526.935234718618,1336.0,81358.71187041866,1,1,0,1,67.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023427116238464017,54239.14124694577,10,5,10,10_1,10_1,10_1_0 -12267,2,32.0,0.0,9,112,862.0,0.0,0.0,85,47,0.0,0.0,1191.4341841704522,862.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,123204,2,1,1,0,1,,426.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,859.613760884529,862.0,54286.226219944605,7,1,1,2,66.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015878797625525565,30159.01456663589,8,4,8,8_1,8_0,8_0_0 -12268,1,44.0,255.0,1,221,360.0,0.0,0.0,0,85,0.0,0.0,497.582721927335,397.0,0.0,0.0,44,2,1,2,2,1,2,2,2,0,,2,,1,130345,2,2,0,1,1,721.0,200.0,271.0,11,0.0,2.0,3.0,1.0,1.0,1,1,716.166816126463,360.0,4908.649881760955,0,7,2,3,52.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08087763632829688,4908.649881760955,1,1,1_1,1_0_1,1_1_1,1_1_0 -12269,2,59.0,0.0,2,111,324.0,2484.0,0.0,0,42,0.0,0.0,447.8244497346015,2808.0,0.0,4505.113805705063,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,132639,2,3,3,0,1,,800.0,,32,1.0,2.0,4.0,2.0,1.3,2,2,261.591770300672,324.0,36552.46534789948,0,1,1,2,78.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07682108370185116,28117.281036845754,8,4,8,8_1,8_2,8_0_1 -12270,1,43.0,330.0,9,111,360.0,900.0,0.0,85,47,0.0,0.0,497.582721927335,1260.0,0.0,1632.287610762704,41,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,103406,2,1,1,0,1,,250.0,460.0,42,1.0,0.0,4.0,4.0,2.1,2,2,2161.70206341885,360.0,22327.735051209875,6,1,2,3,94.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05643205623454961,10632.254786290416,2,1,2_1,2_1_1,2_2_1,2_0_0 -12271,2,30.0,0.0,6,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,743.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,90.0,2,,4,110668,2,1,0,1,1,714.0,440.0,456.0,43,2.0,0.0,3.0,2.0,1.5,2,2,276.934703677895,0.0,35636.11030156277,1,1,2,3,60.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020849638013591423,23757.406867708512,6,3,6,6_0,6_2,6_0_0 -12272,2,33.0,0.0,9,300,2200.0,0.0,0.0,54,62,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,113777,2,1,1,0,1,,114.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1315.6639603373,2200.0,51054.419787796396,1,1,1,2,127.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04309127415695103,28363.566548775776,8,4,8,8_1,8_0,8_0_0 -12273,2,57.0,0.0,1,221,800.0,0.0,0.0,68,78,0.0,0.0,1105.7393820607444,890.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118023,1,2,3,0,2,,0.0,400.0,42,1.0,3.0,4.0,2.0,1.5,1,1,552.80708781033,800.0,34483.747044881595,1,5,2,3,80.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02580926019558255,22989.16469658773,6,3,6,6_1,6_1,6_1_0 -12274,2,60.0,0.0,9,221,2000.0,0.0,0.0,75,74,0.0,103.51725048194578,2764.3484551518613,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,129598,2,1,1,0,1,,350.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,803.705956397008,2000.0,21864.274661720152,5,5,1,2,165.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09604709200240098,14576.183107813435,3,2,3_0,3_1_0,3_1_0,3_0_0 -12275,2,68.0,0.0,1,221,337.0,645.0,0.0,0,75,0.0,0.0,465.7927146930886,982.0,0.0,1169.8061210466046,44,0,0,0,0,0,0,0,0,0,,1,,1,115911,2,1,3,0,1,,222.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,538.577296494726,337.0,23634.27425182436,0,5,0,1,91.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04154982672777431,23634.27425182436,6,3,6,6_1,6_1,6_1_0 -12276,1,55.0,390.0,2,111,445.0,336.0,0.0,85,62,0.0,0.0,615.0675312712891,781.0,0.0,609.3873746847428,31,2,1,2,1,1,2,2,2,0,,2,,2,111549,1,1,0,1,1,652.0,0.0,359.0,42,1.0,0.0,4.0,4.0,2.3,1,1,289.15113211165,445.0,23685.448526773307,6,4,2,3,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.032973831976083605,10298.021098597092,2,1,2_1,2_0_1,2_2_1,2_0_1 -12277,2,60.0,0.0,2,221,600.0,3500.0,0.0,74,22,0.0,0.0,829.3045365455583,4100.0,0.0,6347.785152966071,43,0,0,0,0,0,0,0,0,2,5.0,1,,2,111281,2,1,2,0,1,,600.0,,42,2.0,2.0,6.0,3.0,2.0,2,2,634.120345667899,600.0,86509.27306159741,5,1,0,1,161.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04739376317589291,43254.63653079871,9,5,9,9_1,9_1,9_0_1 -12278,2,66.0,0.0,5,111,444.0,1740.0,0.0,78,74,0.0,0.0,613.6853570437131,2184.0,0.0,3155.756047474561,50,0,0,0,0,0,0,0,0,0,,1,,3,131202,1,2,3,0,1,,180.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,232.0863482647,444.0,56544.734671987244,5,5,0,1,89.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03862428593341641,37696.48978132483,9,5,9,9_1,9_2,9_0_0 -12279,1,34.0,58.0,9,300,1100.0,0.0,0.0,85,35,0.0,232.913813584378,1520.3916503335236,1430.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,110024,2,1,1,0,1,,100.0,,42,1.0,0.0,5.0,3.0,1.8,1,1,867.554895573581,1100.0,29052.967142685415,7,1,1,2,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.049220445986702846,16140.537301491897,4,2,4_1,4_1_1,4_0_1,4_0_0 -12280,2,82.0,0.0,2,221,261.0,237.0,0.0,77,77,0.0,0.0,360.7474733973179,498.0,0.0,429.83573750084537,31,1,2,2,1,2,2,2,2,0,,2,,2,128297,2,1,0,1,1,,276.0,363.0,41,0.0,2.0,4.0,2.0,1.5,4,4,644.364833064123,261.0,26985.666694734537,5,5,2,3,80.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01845424112116415,17990.444463156357,4,2,4_0,4_0_0,4_1_0,4_0_1 -12281,2,67.0,0.0,2,111,204.0,640.0,0.0,0,77,0.0,0.0,281.96354242548983,844.0,0.0,1160.7378565423674,60,0,0,0,0,0,0,0,0,0,,2,,2,105022,1,1,0,0,1,,130.0,263.0,11,0.0,2.0,2.0,1.0,1.0,2,2,316.693079463433,204.0,26026.952084913974,0,5,2,3,48.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03242792307168416,26026.952084913974,7,4,7,7_0,7_2,7_0_1 -12282,2,31.0,0.0,9,112,1600.0,0.0,0.0,68,47,0.0,0.0,2211.478764121489,1640.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,121298,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,952.269069932457,1600.0,3813.550967966411,1,1,1,2,100.0,8,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4300453865113898,2118.639426648006,1,1,1_0,1_1_0,1_1_0,1_0_0 -12283,1,80.0,154.0,1,221,268.0,315.0,0.0,0,78,0.0,0.0,370.4226929903494,583.0,0.0,571.3006637669464,60,0,0,0,0,0,0,0,0,0,,2,,1,122013,1,1,0,1,1,,260.0,363.0,11,0.0,4.0,4.0,1.0,1.0,1,1,744.315410000209,268.0,10222.643684970422,0,5,2,3,80.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.057030257335207786,10222.643684970422,2,1,2_1,2_0_1,2_1_1,2_1_0 -12284,2,51.0,0.0,2,112,235.0,127.0,0.0,0,54,0.0,0.0,324.81094348034367,362.0,0.0,230.33391840762602,33,0,0,0,0,0,0,0,0,0,,2,,2,118847,1,1,0,1,1,,250.0,373.0,32,2.0,3.0,4.0,2.0,1.5,1,1,273.904499842186,235.0,9523.648906294486,0,4,2,3,70.0,10,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038010641043344486,6349.09927086299,1,1,1_0,1_0_0,1_1_0,1_0_1 -12285,1,51.0,247.0,1,221,180.0,180.0,0.0,0,85,0.0,0.0,248.7913609636675,396.0,0.0,326.4575221525408,50,2,1,2,1,2,2,2,2,0,,2,,1,124887,1,3,0,1,1,,152.0,362.0,11,0.0,0.0,4.0,1.0,1.0,2,2,717.378450397234,180.0,11235.491122629617,0,7,2,3,80.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.03524545528787868,11235.491122629617,2,1,2_1,2_0_1,2_1_1,2_1_0 -12286,2,38.0,0.0,5,112,0.0,0.0,0.0,85,67,0.0,0.0,0.0,628.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,1.0,2,,3,132787,1,2,0,0,1,,258.0,380.0,42,1.0,0.0,2.0,3.0,1.8,2,2,297.997345062232,0.0,16787.017531996455,6,1,2,3,52.0,10,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03740986144817071,9326.12085110914,1,1,1_0,1_0_0,1_1_0,1_0_0 -12287,2,37.0,0.0,1,221,240.75,625.0,0.0,52,43,0.0,0.0,332.7584452889053,866.0,0.0,1133.5330630296555,44,0,0,0,0,0,0,0,0,0,,1,,1,112368,1,3,3,0,1,,522.0,555.0,43,2.0,0.0,4.0,4.0,2.1,2,2,550.729520466326,240.75,88420.52175348213,1,1,2,3,100.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009794106422651772,42105.01035880101,9,5,9,9_1,9_1,9_1_0 -12288,2,49.0,0.0,9,112,0.0,0.0,0.0,85,53,0.0,0.0,0.0,2392.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,132773,2,1,1,0,1,,280.0,,42,2.0,1.0,6.0,3.0,2.0,2,2,1463.37536619963,0.0,49367.98002955304,6,1,1,2,124.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048452458426860544,24683.99001477652,7,4,7,7_1,7_0,7_0_0 -12290,2,63.0,0.0,5,221,400.0,1900.0,0.0,0,75,0.0,0.0,552.8696910303722,2300.0,0.0,3445.940511610153,50,0,0,0,0,0,0,0,0,0,,1,,3,125945,2,1,2,0,1,,460.0,,11,0.0,2.0,5.0,1.0,1.0,4,4,513.922079086023,400.0,32049.702513819073,0,5,0,1,93.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07176353661967048,32049.702513819073,8,4,8,8_1,8_1,8_0_0 -12291,2,71.0,0.0,2,111,210.0,0.0,0.0,0,77,0.0,0.0,290.25658779094545,210.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107320,1,1,0,1,2,744.0,0.0,400.0,11,0.0,2.0,4.0,1.0,1.0,3,3,386.343150519931,210.0,17683.17247964213,0,5,2,3,78.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011875697092349459,17683.17247964213,4,2,4_0,4_0_0,4_2_0,4_0_1 -12292,2,79.0,0.0,1,221,0.0,0.0,1800.0,77,78,0.0,0.0,919.644002707545,1890.0,154.82943037711726,2057.8423943747366,44,0,0,0,0,0,0,0,0,0,,1,,1,119515,2,1,3,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,525.469212872718,0.0,23297.345406615743,5,5,0,1,100.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08112512249843268,15531.563604410496,3,2,3_0,3_1_0,3_1_0,3_1_0 -12293,2,85.0,0.0,2,111,260.0,0.0,0.0,0,77,0.0,0.0,359.36529916974195,260.0,0.0,0.0,50,2,2,1,1,2,2,2,2,0,,2,,2,128195,2,1,0,1,1,507.0,0.0,198.0,11,0.0,0.0,2.0,1.0,1.0,2,2,298.350381662059,260.0,14482.430538079083,0,5,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017952787642680164,14482.430538079083,3,2,3_0,3_0_0,3_2_0,3_0_1 -12294,1,38.0,271.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,907.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,128542,2,1,0,1,1,783.0,0.0,380.0,32,1.0,0.0,4.0,3.0,1.6,2,2,356.812187322244,0.0,21411.152467402997,0,1,2,3,78.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04236110136438685,13381.970292126873,3,2,3_1,3_0_1,3_2_1,3_0_1 -12295,2,57.0,0.0,1,221,0.0,0.0,2080.0,45,48,0.0,0.0,1062.6997364620522,2080.0,0.0,2377.9512112774732,31,0,0,0,0,0,0,0,0,1,4.0,1,,1,111876,2,1,2,0,1,,440.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,522.311631446232,0.0,46488.70797113342,1,1,0,1,81.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044742047924660536,30992.471980755614,8,4,8,8_1,8_1,8_1_0 -12296,2,61.0,0.0,5,111,400.0,90.0,0.0,77,56,0.0,0.0,552.8696910303722,490.0,0.0,163.2287610762704,50,1,2,2,1,2,2,2,2,0,,2,,3,113203,2,2,0,1,1,122.0,0.0,324.0,41,0.0,1.0,5.0,2.0,1.5,2,2,287.405020097616,400.0,29657.72133147611,5,5,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01652183573118805,19771.814220984073,5,3,5,5_0,5_2,5_0_0 -12297,1,37.0,140.0,2,111,656.0,74.0,0.0,0,65,0.0,0.0,906.7062932898104,730.0,0.0,134.21031466271123,70,1,2,2,1,1,1,2,2,2,15.0,2,,2,130973,1,1,0,1,1,72.0,0.0,297.0,32,1.0,0.0,3.0,2.0,1.5,2,2,285.05444808838,656.0,18910.0786007202,0,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.038603752814237245,12606.7190671468,2,1,2_1,2_0_1,2_2_1,2_0_1 -12298,2,42.0,0.0,8,221,800.0,1340.0,0.0,90,34,0.0,0.0,1105.7393820607444,2140.0,0.0,2430.2948871355816,12,0,0,0,0,0,0,0,0,0,,1,2003.0,6,112993,2,1,1,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,495.523391349911,800.0,33175.45832609651,4,1,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06450551425589895,15797.837298141194,3,2,3_0,3_1_0,3_1_0,3_0_0 -12299,2,63.0,0.0,2,111,350.0,0.0,0.0,0,56,0.0,0.0,483.76097965157567,574.0,113.54158227655265,0.0,33,2,1,2,2,1,2,2,2,0,,2,,2,111832,1,1,0,1,2,,0.0,,12,1.0,4.0,4.0,1.0,1.0,2,2,357.120331472385,350.0,15499.557554421946,0,1,0,1,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.03703331517590582,15499.557554421946,3,2,3_0,3_0_0,3_2_0,3_0_1 -12300,0,79.0,0.0,2,221,219.0,0.0,0.0,0,77,3786.2376632406317,0.0,302.6961558391288,2794.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115946,2,1,1,0,1,,272.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,554.895178350077,219.0,31394.114773402936,0,5,0,1,71.0,1,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08899757232100948,31394.114773402936,8,4,8,8_1,8_1,8_0_1 -12301,2,62.0,0.0,5,221,0.0,0.0,1900.0,0,77,0.0,0.0,970.7353361912976,1900.0,0.0,2172.16697184,70,0,0,0,0,0,0,0,0,0,,1,,3,125551,2,1,2,0,1,,217.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,562.724426718804,0.0,20326.03135923355,0,5,0,1,84.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09347619151128007,20326.03135923355,5,3,5,5_1,5_1,5_0_0 -12302,2,29.0,0.0,2,111,390.0,197.0,0.0,0,52,0.0,0.0,539.0479487546129,587.0,0.0,357.28962146694744,20,2,2,2,2,1,2,2,2,0,,2,,2,125083,2,1,0,1,1,45.0,0.0,308.0,22,1.0,0.0,3.0,2.0,1.5,2,2,336.248560863002,390.0,30618.0,0,1,2,3,113.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01917172904827226,20412.0,5,3,5,5_0,5_2,5_0_1 -12303,2,85.0,0.0,1,221,380.0,1153.0,0.0,77,78,0.0,0.0,525.2262064788536,1533.0,0.0,2091.1417946771085,10,0,0,0,0,0,0,0,0,0,,1,,1,112299,2,1,2,0,1,,285.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,525.469212872718,380.0,27260.67436147672,5,5,0,1,60.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056234852435138254,18173.782907651144,4,2,4_0,4_1_0,4_1_0,4_1_0 -12304,2,64.0,0.0,5,111,266.0,98.0,0.0,77,78,0.0,0.0,367.65834453519756,364.0,0.0,177.73798428305,31,0,0,0,0,0,0,0,0,0,,2,,3,130474,2,1,0,1,1,98.0,0.0,249.0,41,0.0,0.0,3.0,2.0,1.5,4,2,276.550984438838,266.0,18075.206336683783,5,5,2,3,103.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0201380826984674,12050.137557789189,2,1,2_0,2_0_0,2_2_0,2_0_0 -12305,2,59.0,0.0,1,221,2594.0,102.0,0.0,78,35,0.0,0.0,3585.359946331964,2696.0,0.0,184.9925958864398,70,2,2,2,1,1,2,2,2,2,15.0,1,,1,123160,2,2,3,0,1,,858.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,510.01666459184,2594.0,54223.86825436632,5,1,0,1,206.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.04971980212390892,36149.24550291088,9,5,9,9_1,9_1,9_1_0 -12306,1,51.0,43.0,2,111,380.0,180.0,0.0,0,68,0.0,0.0,525.2262064788536,560.0,0.0,326.4575221525408,70,0,0,0,0,0,0,0,0,2,5.0,2,,2,112031,2,2,0,1,1,478.0,0.0,243.0,12,1.0,1.0,2.0,1.0,1.0,2,2,297.936988974529,380.0,15372.786030082465,0,1,2,3,46.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036428009789777574,15372.786030082465,3,2,3_1,3_0_1,3_2_1,3_0_1 -12307,1,59.0,182.0,2,221,250.0,160.0,0.0,77,78,0.0,0.0,345.54355689398267,410.0,0.0,290.18446413559184,50,2,2,2,2,1,2,2,2,0,,2,,2,107934,1,3,0,1,2,689.0,260.0,283.0,41,0.0,5.0,3.0,2.0,1.5,2,2,663.979634154904,250.0,25185.06017606209,5,7,2,3,60.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.016279492569555066,16790.040117374727,4,2,4_1,4_0_1,4_1_1,4_0_1 -12308,2,55.0,0.0,2,111,600.0,773.0,0.0,68,54,0.0,0.0,829.3045365455583,1373.0,0.0,1401.953692355078,50,2,2,2,1,1,2,2,2,2,15.0,1,,2,113323,2,2,1,0,1,,310.0,374.0,43,2.0,2.0,4.0,6.0,3.3,2,2,227.091451319988,600.0,37754.21218176834,1,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,1,0,0,0,0.036366803083843116,11440.670358111618,2,1,2_0,2_1_0,2_2_0,2_0_1 -12309,1,48.0,377.0,2,111,0.0,0.0,0.0,68,67,0.0,0.0,0.0,119.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,30.0,2,,2,110001,2,1,0,1,1,586.0,0.0,337.0,43,2.0,1.0,4.0,4.0,2.1,2,2,261.514864575074,0.0,26985.05234542977,4,1,2,3,75.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.004409848773932581,12850.024926395128,2,1,2_1,2_0_1,2_2_1,2_0_1 -12310,1,46.0,421.0,2,111,764.0,0.0,0.0,85,85,0.0,0.0,1055.981109868011,764.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,132629,1,2,0,1,1,1133.0,0.0,346.0,41,0.0,4.0,4.0,8.0,3.2999999999999994,1,1,277.798245508215,764.0,30783.97175606568,6,7,2,3,60.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024818110088392388,9328.476289716875,1,1,1_1,1_0_1,1_2_1,1_0_1 -12311,2,65.0,0.0,2,221,280.0,280.0,0.0,0,77,0.0,0.0,387.00878372126056,560.0,0.0,507.8228122372857,70,2,2,2,2,1,2,2,2,0,,2,,2,130890,1,2,0,1,1,796.0,430.0,286.0,21,1.0,1.0,3.0,2.0,1.5,1,1,705.856501936359,280.0,32569.403443564508,0,5,2,3,80.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0171940514959187,21712.935629043004,6,3,6,6_0,6_1,6_0_1 -12312,1,44.0,270.0,2,111,0.0,0.0,995.0,85,55,0.0,0.0,508.35876816333746,995.0,0.0,1137.5295457793684,20,0,0,0,0,0,0,0,0,2,18.0,2,,2,101661,2,1,0,1,1,1000.0,0.0,362.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,267.949037882081,0.0,28580.03136328334,6,1,2,3,120.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03481451742835639,10585.196801216052,2,1,2_1,2_0_1,2_2_1,2_0_1 -12313,1,39.0,248.0,1,221,0.0,0.0,300.0,0,55,0.0,0.0,153.2740004512575,348.0,82.5756962011292,342.97373239578945,60,0,0,0,0,0,0,0,0,0,,2,,1,101942,1,1,0,1,1,,250.0,234.0,12,1.0,2.0,3.0,1.0,1.0,1,1,741.190540307202,0.0,7359.057636238965,0,4,2,3,50.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04728866346776628,7359.057636238965,1,1,1_1,1_0_1,1_1_1,1_1_0 -12314,2,57.0,0.0,1,111,600.0,1500.0,0.0,62,56,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,44,0,0,0,0,0,0,0,0,0,,1,,1,115266,2,2,2,0,1,,300.0,,43,3.0,3.0,4.0,3.0,2.0,2,2,254.393486507568,600.0,37846.63111725232,1,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055487105140058786,18923.31555862616,5,3,5,5_1,5_2,5_1_0 -12315,2,81.0,0.0,1,221,240.0,1930.0,0.0,0,77,0.0,0.0,331.72181461822333,2170.0,0.0,3500.350098635576,50,0,0,0,0,0,0,0,0,0,,1,,1,120148,2,1,2,0,1,,156.0,,21,0.0,3.0,6.0,2.0,1.5,2,2,538.708215498075,240.0,26879.193997967723,0,5,0,1,80.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08073158741903008,17919.462665311814,4,2,4_0,4_1_0,4_1_0,4_1_0 -12316,0,76.0,0.0,1,111,385.0,922.0,0.0,0,78,0.0,0.0,532.1370776167332,1307.0,0.0,1672.1879745813478,71,0,0,0,0,0,0,0,0,0,,1,,1,110849,2,2,1,0,1,,150.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,273.865876794323,385.0,15357.103382403551,0,5,5,0,70.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0851071955078185,15357.103382403551,3,2,3_0,3_1_0,3_2_0,3_1_0 -12317,1,46.0,162.0,1,221,784.0,1386.0,0.0,85,62,0.0,0.0,1083.6245944195296,2290.0,206.439240502823,2513.7229205745643,70,0,0,0,0,0,0,0,0,2,5.0,1,,1,108478,2,2,5,0,1,,680.0,468.0,42,1.0,2.0,6.0,6.0,3.3,1,1,515.587498329636,784.0,39492.936967842645,6,1,2,3,127.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05798505190598121,11967.556656922014,2,1,2_1,2_1_1,2_1_1,2_1_0 -12318,1,34.0,280.0,2,111,0.0,0.0,2400.0,85,68,0.0,0.0,1226.19200361006,2400.0,0.0,2743.7898591663156,42,2,2,2,1,2,2,2,2,0,,2,,2,130557,2,2,0,0,1,,785.0,550.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,1,1,355.473893043061,0.0,25345.320486819113,7,4,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0946920360012068,8739.76568511004,1,1,1_1,1_0_1,1_2_1,1_0_1 -12319,2,76.0,0.0,1,221,370.0,1400.0,0.0,78,77,0.0,0.0,511.40446420309434,2130.0,619.317721508469,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,1,121767,2,1,2,0,1,,350.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,510.01666459184,370.0,30395.80615213501,5,5,0,1,40.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0700754567698935,20263.870768090008,5,3,5,5_1,5_1,5_1_0 -12320,2,60.0,0.0,1,111,880.0,1112.0,0.0,78,62,0.0,0.0,1216.313320266819,1992.0,0.0,2016.7820257423632,70,0,0,0,0,0,0,0,0,0,,1,,1,110780,2,1,2,0,1,,378.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,212.980888663128,880.0,16878.670846146928,6,4,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11801877162944586,11252.44723076462,2,1,2_0,2_1_0,2_2_0,2_1_0 -12321,2,61.0,0.0,5,221,2406.0,0.0,0.0,72,31,0.0,0.0,3325.511191547689,3535.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,15.0,1,,3,113672,2,2,2,0,1,,860.0,,42,4.0,0.0,6.0,5.0,3.0,1,1,545.737708863238,2406.0,114196.99287093114,6,1,0,1,180.0,1,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.030955280967821658,38065.66429031038,9,5,9,9_1,9_1,9_0_0 -12322,1,21.0,28.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1135.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,30.0,1,,1,131752,2,1,2,0,2,,0.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,314.934150381815,0.0,16643.589301594933,0,1,2,3,28.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06819442485829871,16643.589301594933,4,2,4_1,4_1_1,4_2_1,4_1_0 -12323,1,51.0,404.0,7,221,698.0,1314.0,0.0,0,52,0.0,0.0,964.7576108479996,2012.0,0.0,2383.139911713548,50,1,2,2,2,1,2,2,2,0,,1,,5,108290,2,1,2,0,1,,578.0,369.0,32,2.0,2.0,5.0,5.0,3.0,4,4,483.543503082803,698.0,21567.26799671072,0,4,2,3,89.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.093289516331269,7189.0893322369075,1,1,1_1,1_1_1,1_1_1,1_0_0 -12324,2,25.0,0.0,2,111,390.0,1300.0,0.0,56,63,0.0,0.0,539.0479487546129,1690.0,0.0,2357.7487711016834,43,0,0,0,0,0,0,0,0,2,12.0,1,,2,125358,2,3,3,0,1,,440.0,450.0,43,2.0,0.0,4.0,3.0,1.8,1,1,274.971669369368,390.0,23676.224448232504,1,1,2,3,73.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07137962404838426,13153.458026795835,2,1,2_0,2_1_0,2_2_0,2_0_1 -12325,2,41.0,0.0,1,221,1800.0,0.0,0.0,85,63,0.0,0.0,2487.913609636675,1920.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,105577,2,1,1,0,1,,498.0,,42,1.0,0.0,4.0,5.0,2.6,1,1,511.935342436006,1800.0,48483.91621210188,6,1,0,1,98.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03960076144840701,18647.660081577647,4,2,4_0,4_1_0,4_1_0,4_1_0 -12326,2,60.0,0.0,5,111,1500.0,0.0,0.0,56,77,0.0,0.0,2073.261341363896,1600.0,172.03270041901916,0.0,50,2,2,2,2,2,2,2,1,0,,1,,3,127879,1,2,2,0,1,,800.0,345.0,42,1.0,2.0,4.0,2.0,1.5,3,3,219.032284663066,1500.0,22597.143820541485,1,5,2,3,122.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.07080540853776182,15064.762547027656,3,2,3_0,3_1_0,3_2_0,3_0_0 -12327,1,65.0,145.0,2,111,540.0,0.0,0.0,0,77,0.0,0.0,746.3740828910024,540.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,2,115232,1,3,0,1,1,564.0,0.0,313.0,11,0.0,4.0,3.0,1.0,1.0,2,2,296.567554934968,540.0,10671.72783562055,0,5,2,3,92.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05060099060974596,10671.72783562055,2,1,2_1,2_0_1,2_2_1,2_0_1 -12328,2,40.0,0.0,5,111,954.0,0.0,0.0,0,33,0.0,0.0,1318.5942131074378,954.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,120.0,1,,3,127743,2,1,2,0,1,,164.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,238.610940327275,954.0,24707.95238844272,0,1,1,2,85.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03861105060434869,24707.95238844272,7,4,7,7_1,7_2,7_0_0 -12329,2,44.0,0.0,1,111,620.0,2274.0,0.0,0,35,0.0,113.86897553014036,856.9480210970769,3004.0,0.0,4124.246696527099,10,0,0,0,0,0,0,0,0,1,5.0,1,,1,101989,2,1,2,0,1,,450.0,,32,1.0,0.0,7.0,4.0,2.3,2,2,1461.50409151144,620.0,53235.24133869767,0,1,1,2,280.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056428785226833145,23145.757103781598,6,3,6,6_1,6_2,6_1_0 -12330,1,47.0,47.0,5,111,240.0,0.0,0.0,0,43,0.0,0.0,331.72181461822333,240.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,131937,2,1,0,1,1,540.0,0.0,294.0,12,1.0,0.0,2.0,1.0,1.0,2,2,318.785001714238,240.0,9350.90568282931,0,1,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02566596307785483,9350.90568282931,1,1,1_1,1_0_1,1_2_1,1_0_0 -12331,1,29.0,200.0,2,111,0.0,0.0,1200.0,85,55,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,41,0,0,0,0,0,0,0,0,2,5.0,2,,2,127817,2,2,0,1,1,,0.0,550.0,42,1.0,0.0,4.0,4.0,2.1,2,2,252.436550920696,0.0,21500.284658352375,6,1,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.055813214525688944,10238.230789691606,2,1,2_1,2_0_1,2_2_1,2_0_1 -12332,1,49.0,352.0,6,111,428.0,744.0,0.0,84,37,0.0,0.0,591.5705694024982,1172.0,0.0,1349.357758230502,60,0,0,0,0,0,0,0,0,0,,2,,4,101534,2,2,0,0,1,,0.0,440.0,42,1.0,2.0,4.0,4.0,2.5,2,2,1737.37088996343,428.0,13265.742552390508,3,4,2,3,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08834786257696549,5306.297020956203,1,1,1_1,1_0_1,1_2_1,1_0_0 -12333,1,65.0,67.0,1,111,800.0,0.0,0.0,0,78,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,114083,1,1,1,0,1,,400.0,370.0,11,0.0,4.0,3.0,1.0,1.0,1,1,267.769485541676,800.0,2216.3182453019217,0,5,2,3,69.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.3609589921013436,2216.3182453019217,1,1,1_1,1_1_1,1_2_1,1_1_0 -12334,2,39.0,0.0,2,111,500.0,800.0,0.0,0,46,0.0,155.27587572291867,691.0871137879653,1450.0,0.0,1450.922320677959,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,128135,2,1,2,0,1,,200.0,,32,1.0,0.0,5.0,2.0,1.3,2,2,1554.3757099911,500.0,30305.678722044333,0,1,1,2,115.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04784581837942045,23312.060555418717,6,3,6,6_1,6_2,6_0_1 -12335,2,83.0,0.0,2,111,585.0,1582.0,0.0,78,75,0.0,258.79312620486445,808.5719231319193,2417.0,0.0,2869.198889140664,60,0,0,0,0,0,0,0,0,0,,1,,2,108166,2,2,2,0,1,,260.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,217.188765128699,585.0,39979.910827733176,5,5,0,1,120.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06045536245477018,26653.27388515545,7,4,7,7_1,7_2,7_0_1 -12336,2,68.0,0.0,2,111,549.0,0.0,0.0,75,74,4480.754631054002,0.0,758.8136509391859,3549.0,0.0,0.0,70,1,2,2,1,1,2,2,2,0,,1,,2,125846,2,2,5,0,1,,361.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,455.799649096995,549.0,70245.9192347474,5,5,0,1,200.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05052250776504145,46830.612823164935,10,5,10,10_1,10_2,10_0_1 -12337,2,39.0,0.0,2,111,402.0,1200.0,0.0,52,48,0.0,0.0,555.6340394855241,1602.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,130863,2,1,1,0,1,,430.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,225.080733807245,402.0,54654.868754957286,1,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02931120385966888,26026.12797855109,7,4,7,7_1,7_2,7_0_1 -12338,2,79.0,0.0,5,111,340.0,0.0,0.0,0,77,0.0,0.0,469.9392373758164,340.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,118125,2,1,0,1,1,214.0,0.0,194.0,11,0.0,4.0,1.0,1.0,1.0,2,2,546.08224275944,340.0,18820.350647714247,0,5,2,3,31.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01806555076280119,18820.350647714247,5,3,5,5_0,5_2,5_0_0 -12339,2,60.0,0.0,6,111,800.0,800.0,0.0,78,54,0.0,1035.1725048194578,1105.7393820607444,2600.0,0.0,1450.922320677959,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,100549,2,1,2,0,1,,1200.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,232.0863482647,800.0,27019.23238588233,5,1,0,1,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09622775224948699,18012.82159058822,4,2,4_0,4_1_0,4_2_0,4_0_0 -12340,1,47.0,189.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,887.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,106822,2,1,0,1,1,478.0,0.0,390.0,12,1.0,2.0,2.0,1.0,1.0,2,2,655.305397773808,0.0,5325.551191496054,0,1,2,3,42.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16655552976683036,5325.551191496054,1,1,1_1,1_0_1,1_2_1,1_0_1 -12341,2,40.0,0.0,1,111,1800.0,0.0,0.0,56,21,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,102710,2,1,2,0,1,,780.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,227.65330705047,1800.0,25735.63324385191,1,1,1,2,160.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06994193548472367,11189.405758196483,2,1,2_0,2_1_0,2_2_0,2_1_0 -12342,2,62.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1562.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,133610,2,1,2,0,1,,161.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1464.39328745534,0.0,18956.233462599255,0,5,0,1,60.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08240033565116371,18956.233462599255,5,3,5,5_1,5_2,5_1_0 -12343,1,44.0,406.0,7,111,2900.0,2300.0,0.0,55,67,0.0,0.0,4008.3052599701987,5200.0,0.0,4171.401671949133,30,0,0,0,0,0,0,0,0,0,,1,,5,103516,2,1,2,0,1,,960.0,465.0,43,4.0,1.0,6.0,7.0,3.6,2,1,217.527593481712,2900.0,14513.662120865427,4,4,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.35828310985166656,4031.5728113515074,1,1,1_1,1_1_1,1_2_1,1_0_0 -12344,2,59.0,0.0,1,111,0.0,0.0,2400.0,75,43,0.0,0.0,1226.19200361006,3120.0,0.0,2743.7898591663156,20,0,0,0,0,0,0,0,0,0,,1,,1,111379,2,1,1,0,1,,240.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,1400.94887088933,0.0,141806.21231730166,5,1,0,1,108.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02200185696391618,94537.4748782011,10,5,10,10_1,10_2,10_1_0 -12345,2,54.0,0.0,1,111,726.0,1470.0,0.0,56,65,0.0,0.0,1003.4584892201256,2196.0,0.0,2666.06976424575,12,0,0,0,0,0,0,0,0,2,40.0,1,,1,109814,2,1,3,0,1,,300.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,246.60742327852,726.0,27417.480166068217,1,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0800948878853485,10966.992066427287,2,1,2_0,2_1_0,2_2_0,2_1_0 -12346,2,66.0,0.0,1,111,500.0,2000.0,0.0,0,78,0.0,0.0,691.0871137879653,2500.0,0.0,3627.3058016948976,70,2,2,2,2,2,2,2,1,0,,1,,1,109471,1,3,4,0,2,,350.0,620.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1580.92173325139,500.0,19871.17376131182,0,5,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.12581038392746455,19871.17376131182,5,3,5,5_1,5_2,5_1_0 -12347,1,73.0,207.0,2,111,240.0,145.0,0.0,0,77,0.0,0.0,331.72181461822333,385.0,0.0,262.97967062288006,31,2,1,2,2,1,2,2,2,0,,2,,2,121904,1,2,0,1,1,456.0,0.0,231.0,11,0.0,6.0,2.0,1.0,1.0,2,2,308.651241462924,240.0,9867.919223884996,0,5,2,3,45.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.039015317339456866,9867.919223884996,2,1,2_1,2_0_1,2_2_1,2_0_1 -12348,1,32.0,100.0,1,111,429.0,1560.0,0.0,63,52,0.0,0.0,592.9527436300742,1989.0,0.0,2829.2985253220204,41,0,0,0,0,0,0,0,0,1,15.0,1,,1,122831,2,2,4,0,1,,410.0,428.0,43,2.0,0.0,6.0,6.0,2.8999999999999995,4,4,1457.07912145295,429.0,43604.20484325816,1,1,2,3,181.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04561486689528586,15035.932704571782,3,2,3_1,3_1_1,3_2_1,3_1_0 -12349,2,84.0,0.0,1,111,440.0,170.0,0.0,75,75,4032.679167948602,0.0,608.1566601334094,3310.0,0.0,308.32099314406634,10,0,0,0,0,0,0,0,0,0,,1,,1,115025,2,1,1,0,2,,332.0,,41,0.0,2.0,9.0,2.0,1.5,3,2,245.238571206593,440.0,48533.98595578605,5,5,0,1,110.0,7,5,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06819963237751327,32355.990637190698,8,4,8,8_1,8_2,8_1_0 -12350,2,91.0,0.0,1,111,337.0,1500.0,0.0,77,78,0.0,0.0,465.7927146930886,1837.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,1,,1,131889,2,2,2,0,2,,242.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,387.57822891854,337.0,20389.481791650942,5,5,0,1,60.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09009547269377942,13592.987861100628,3,2,3_0,3_1_0,3_2_0,3_1_0 -12351,2,60.0,0.0,6,111,0.0,0.0,2139.0,86,63,0.0,0.0,1092.843623217466,2139.0,0.0,2445.402711981979,71,0,0,0,0,0,0,0,0,0,,1,,4,109952,2,1,2,0,1,,487.0,,42,1.0,5.0,4.0,3.0,2.0,2,2,256.184439250632,0.0,36648.49445948611,6,1,0,1,95.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058365289803776386,18324.247229743054,4,2,4_0,4_1_0,4_2_0,4_0_0 -12352,2,78.0,0.0,2,111,0.0,1.0,0.0,0,78,0.0,0.0,0.0,383.0,0.0,1.813652900847449,50,2,1,2,2,2,2,2,1,0,,2,,2,112410,2,2,0,1,1,,0.0,315.0,11,0.0,0.0,3.0,1.0,1.0,1,1,541.760791895877,0.0,9473.964398610042,0,5,2,3,70.0,7,5,2,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04042658214508293,9473.964398610042,1,1,1_0,1_0_0,1_2_0,1_0_1 -12353,1,41.0,83.56333333333333,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,136.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121062,1,2,0,1,1,1400.0,0.0,320.0,12,1.0,3.0,2.0,1.0,1.0,1,1,308.394680104166,0.0,7358.882260596546,0,1,2,3,65.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018481067529537452,7358.882260596546,1,1,1_1,1_0_1,1_2_1,1_0_1 -12354,2,61.0,0.0,1,111,500.0,1300.0,0.0,67,78,0.0,0.0,691.0871137879653,1800.0,0.0,2357.7487711016834,10,0,0,0,0,0,0,0,0,0,,1,,1,132302,2,1,2,0,1,,450.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1363.4193572475,500.0,42746.50082054438,1,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04210870984637186,28497.667213696255,8,4,8,8_1,8_2,8_1_0 -12355,1,55.0,48.0,1,111,300.0,1000.0,0.0,85,43,0.0,0.0,414.65226827277917,1415.0,197.83760548187203,1813.6529008474488,50,2,2,2,2,1,2,2,2,1,8.0,1,,1,118352,2,3,4,0,1,,330.0,,42,1.0,1.0,3.0,4.0,2.3,1,1,224.357684653003,300.0,32160.366624079383,6,1,1,2,65.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.04399825463869399,13982.76809742582,3,2,3_1,3_1_1,3_2_1,3_1_0 -12356,1,35.0,440.0,9,111,0.0,0.0,1560.0,64,85,0.0,0.0,797.0248023465391,1560.0,0.0,1783.463408458105,30,0,0,0,0,0,0,0,0,0,,2,2009.0,6,121327,2,1,0,0,1,,1348.0,403.0,42,1.0,0.0,4.0,5.0,2.4,1,1,1565.82376592178,0.0,15801.74454731898,1,6,2,3,92.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09872327674507807,6584.060228049575,1,1,1_1,1_0_1,1_2_1,1_0_0 -12357,2,29.0,0.0,2,111,0.0,0.0,1200.0,54,62,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,10,0,0,0,0,0,0,0,0,1,15.0,2,,2,130178,1,2,0,0,1,,140.0,373.0,43,2.0,0.0,3.0,2.0,1.5,2,2,301.232409455095,0.0,34831.322594201956,1,1,2,3,58.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034451749477918264,23220.881729467972,6,3,6,6_0,6_2,6_0_1 -12358,1,54.0,179.0,2,111,360.0,950.0,0.0,78,68,0.0,0.0,497.582721927335,1310.0,0.0,1722.9702558050765,44,0,0,0,0,0,0,0,0,1,5.0,2,,2,109443,2,2,0,0,1,,0.0,364.0,42,1.0,4.0,2.0,2.0,1.5,1,1,1634.43153368374,360.0,12936.795445223346,6,1,2,3,63.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10126155318345792,8624.530296815565,1,1,1_1,1_0_1,1_2_1,1_0_1 -12359,1,52.0,308.0,2,111,280.0,120.0,0.0,0,56,0.0,0.0,387.00878372126056,400.0,0.0,217.63834810169388,10,0,0,0,0,0,0,0,0,0,,2,,2,114875,2,1,0,1,1,1270.0,0.0,291.0,32,1.0,0.0,3.0,2.0,1.5,2,2,301.232409455095,280.0,6423.788279773156,0,4,2,3,68.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.062268552850581374,4282.525519848771,1,1,1_1,1_0_1,1_2_1,1_0_1 -12360,1,48.0,295.0,2,111,350.0,205.0,0.0,85,65,0.0,0.0,483.76097965157567,555.0,0.0,371.79884467372705,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,113736,2,1,0,1,1,,0.0,237.0,42,1.0,1.0,3.0,5.0,2.4,1,1,1677.90723046525,350.0,27868.990261342642,6,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019914607411157127,11612.079275559434,2,1,2_1,2_0_1,2_2_1,2_0_1 -12361,1,22.0,254.0,2,111,182.0,0.0,0.0,0,38,0.0,0.0,251.55570941881936,182.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,102350,2,1,0,1,1,650.0,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,2,2,430.151735357585,182.0,12168.462248539892,0,2,2,3,43.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014956696769292965,12168.462248539892,2,1,2_1,2_0_1,2_2_1,2_0_1 -12362,1,50.0,310.0,1,111,430.0,1400.0,0.0,0,85,0.0,0.0,594.3349178576501,1830.0,0.0,2539.1140611864284,10,0,0,0,0,0,0,0,0,0,,1,,1,133491,1,2,4,0,1,,750.0,590.0,31,0.0,2.0,4.0,3.0,2.0,1,1,1480.29105390886,430.0,17698.556364437125,0,6,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10339826380851827,8849.278182218563,1,1,1_1,1_1_1,1_2_1,1_1_0 -12363,2,40.0,0.0,2,111,200.0,800.0,0.0,0,65,0.0,0.0,276.4348455151861,1000.0,0.0,1450.922320677959,10,2,2,2,2,1,2,2,1,2,10.0,2,,2,128753,1,3,0,0,1,,120.0,278.0,12,1.0,0.0,3.0,1.0,1.0,1,1,332.933723361733,200.0,18561.735873961432,0,1,2,3,57.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05387427160855192,18561.735873961432,4,2,4_0,4_0_0,4_2_0,4_0_1 -12364,2,55.0,0.0,1,111,1100.0,0.0,0.0,0,43,0.0,41.40690019277831,1520.3916503335236,1140.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,,1,113768,2,2,1,0,1,,135.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1616.43127011496,1100.0,32849.90785392163,0,1,1,2,98.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03470329369170229,32849.90785392163,8,4,8,8_1,8_2,8_1_0 -12365,2,68.0,0.0,5,111,0.0,0.0,165.0,0,78,0.0,0.0,84.30070024819163,165.0,0.0,188.63555281768421,12,2,1,2,1,2,2,2,2,0,,2,,3,112640,2,2,0,1,1,,36.0,,11,0.0,3.0,1.0,1.0,1.0,2,2,427.274418894081,0.0,9444.535996188883,0,5,0,1,28.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01747041888204797,9444.535996188883,1,1,1_0,1_0_0,1_2_0,1_0_0 -12367,1,64.0,129.0,2,111,430.0,550.0,0.0,0,77,0.0,0.0,594.3349178576501,980.0,0.0,997.5090954660969,50,0,0,0,0,0,0,0,0,0,,2,,2,130272,2,1,0,0,1,,250.0,350.0,21,1.0,1.0,5.0,2.0,1.5,2,2,258.240000802299,430.0,36700.5520390853,0,5,2,3,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026702595616445255,24467.034692723533,7,4,7,7_0,7_2,7_0_1 -12368,1,34.0,324.0,2,111,0.0,0.0,670.0,85,63,0.0,0.0,342.3119343411418,670.0,0.0,765.9746690172631,70,2,2,2,2,2,1,2,2,0,,2,,2,101204,2,3,0,1,1,522.0,0.0,278.0,42,1.0,0.0,3.0,4.0,2.1,2,2,494.695132243915,0.0,18526.430263752576,6,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03616454926618388,8822.109649405988,1,1,1_1,1_0_1,1_2_1,1_0_1 -12369,2,60.0,0.0,5,111,315.0,0.0,0.0,77,78,0.0,0.0,435.3848816864181,315.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,120073,2,1,0,1,1,608.0,0.0,394.0,41,0.0,2.0,5.0,2.0,1.5,2,2,286.935242136943,315.0,20243.844619555795,6,5,2,3,92.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015560285406246708,13495.896413037197,3,2,3_0,3_0_0,3_2_0,3_0_0 -12370,2,53.0,0.0,2,111,621.0,1320.0,0.0,75,43,0.0,103.51725048194578,858.3301953246529,2041.0,0.0,2394.0218291186325,33,2,2,1,2,1,2,2,1,2,10.0,1,,2,119681,2,2,2,0,1,,400.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,1464.78945841597,621.0,44626.752118910554,7,1,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04573489898080949,22313.376059455277,6,3,6,6_1,6_2,6_0_1 -12371,1,55.0,254.0,2,111,550.0,550.0,0.0,0,78,0.0,0.0,760.1958251667618,1100.0,0.0,997.5090954660969,31,1,2,2,2,1,2,2,2,0,,2,,2,126870,1,3,0,0,1,,300.0,376.0,31,1.0,5.0,5.0,2.0,1.5,1,1,274.116696748036,550.0,13369.880239919048,0,7,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.0822744841584804,8913.253493279366,1,1,1_1,1_0_1,1_2_1,1_0_1 -12372,2,79.0,0.0,1,111,600.0,2950.0,0.0,75,74,0.0,0.0,829.3045365455583,3550.0,0.0,5350.276057499974,33,0,0,0,0,0,0,0,0,0,,1,,1,131587,2,1,2,0,1,,342.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,379.814301187121,600.0,57478.25929442581,5,5,0,1,70.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06176248278180331,38318.8395296172,9,5,9,9_1,9_2,9_1_0 -12373,1,38.0,300.0,2,111,300.0,200.0,0.0,0,56,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,10,2,2,2,1,1,2,2,2,0,,2,,2,125850,1,2,0,1,1,1236.0,300.0,289.0,32,1.0,0.0,3.0,2.0,1.3,2,2,274.73825679415,300.0,8121.1378915679,0,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.061567726921512474,6247.029147359923,1,1,1_1,1_0_1,1_2_1,1_0_1 -12374,2,57.0,0.0,1,111,600.0,1200.0,0.0,78,52,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,31,2,2,2,2,1,2,2,2,2,5.0,1,,1,112312,2,1,3,0,1,,440.0,,42,2.0,1.0,4.0,3.0,2.0,1,1,1377.09676599103,600.0,47355.61451730748,7,1,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03801027646557385,23677.80725865374,6,3,6,6_1,6_2,6_1_0 -12375,1,64.0,50.0,5,111,360.0,200.0,0.0,0,77,0.0,0.0,497.582721927335,560.0,0.0,362.73058016948977,10,0,0,0,0,0,0,0,0,0,,2,,3,126257,2,1,0,1,1,960.0,0.0,291.0,21,0.0,2.0,3.0,2.0,1.5,3,3,286.49616473817,360.0,14195.718818940142,0,5,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03944851311459054,9463.812545960094,1,1,1_1,1_0_1,1_2_1,1_0_0 -12376,1,43.0,450.0,1,111,1000.0,0.0,0.0,0,85,0.0,0.0,1382.1742275759307,1213.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,100609,2,3,0,0,1,,620.0,550.0,31,2.0,1.0,4.0,6.0,2.8999999999999995,1,1,1851.21273381703,1000.0,18766.759690689378,0,6,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06463555882808034,6471.2964450653035,1,1,1_1,1_0_1,1_2_1,1_1_0 -12377,1,56.0,398.0,2,111,600.0,50.0,0.0,0,85,0.0,0.0,829.3045365455583,650.0,0.0,90.68264504237244,12,2,1,2,2,1,2,2,2,0,,2,,2,112216,2,2,0,1,1,645.0,200.0,485.0,31,1.0,3.0,5.0,3.0,2.0,4,4,338.80071167749,600.0,5237.550299714563,0,7,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.12410382006936026,2618.7751498572816,1,1,1_1,1_0_1,1_2_1,1_0_1 -12378,2,38.0,0.0,2,211,400.0,0.0,0.0,54,54,0.0,0.0,552.8696910303722,520.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,100044,2,2,1,0,1,,650.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,1301.217501694,400.0,43932.031489609246,1,1,1,2,108.0,3,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011836466067429406,24406.684160894027,7,4,7,7_1,7_2,7_0_1 -12379,1,51.0,183.0,2,111,0.0,0.0,1196.0,0,68,0.0,0.0,611.05234846568,1196.0,0.0,1367.3219464845472,20,0,0,0,0,0,0,0,0,0,,2,,2,126218,2,1,0,0,1,,600.0,223.0,12,1.0,3.0,1.0,1.0,1.0,2,2,291.89347358701,0.0,7451.0204081632655,0,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16051492741714599,7451.0204081632655,1,1,1_1,1_0_1,1_2_1,1_0_1 -12380,1,21.0,213.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,103.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,2.0,2,,4,131158,2,1,0,1,1,200.0,103.0,196.0,12,1.0,0.0,1.0,1.0,1.0,1,1,336.586300810632,0.0,8465.446018140685,0,4,2,3,35.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012167108475948027,8465.446018140685,1,1,1_1,1_0_1,1_2_1,1_0_0 -12381,2,25.0,0.0,2,211,250.0,1250.0,0.0,0,56,0.0,0.0,345.54355689398267,1500.0,0.0,2267.066126059311,20,1,2,2,2,1,2,2,2,2,7.0,1,,2,133368,2,2,5,0,1,,250.0,371.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1173.43060504042,250.0,17304.031089739437,0,1,2,3,70.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08668500375553745,17304.031089739437,4,2,4_0,4_1_0,4_2_0,4_0_1 -12382,1,51.0,231.0,7,111,240.0,0.0,0.0,0,63,0.0,0.0,331.72181461822333,240.0,0.0,0.0,71,2,2,2,1,2,2,2,2,1,20.0,2,,5,124941,1,3,0,0,1,,180.0,307.0,12,1.0,0.0,2.0,1.0,1.0,2,2,296.949305706245,240.0,14613.449621427802,0,1,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.016423226973601518,14613.449621427802,3,2,3_1,3_0_1,3_2_1,3_0_0 -12383,2,43.0,0.0,2,211,0.0,0.0,1530.0,56,65,0.0,0.0,781.6974023014134,1530.0,0.0,1749.1660352185263,10,0,0,0,0,0,0,0,0,2,3.0,1,,2,122668,2,2,3,0,1,,600.0,370.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,1,1097.76153146188,0.0,17874.969098439535,1,1,2,3,94.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08559455356672853,6874.988114784437,1,1,1_0,1_1_0,1_2_0,1_0_1 -12384,2,65.0,0.0,2,111,292.0,70.0,0.0,0,77,0.0,0.0,403.5948744521717,498.0,0.0,126.95570305932142,50,2,1,2,2,1,2,2,2,0,,2,,2,118900,2,1,0,1,1,732.0,90.0,328.0,11,0.0,1.0,3.0,1.0,1.0,4,4,308.099947459223,292.0,18997.374014825375,0,5,2,3,72.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026214149366715917,18997.374014825375,5,3,5,5_0,5_2,5_0_1 -12385,2,58.0,0.0,1,211,480.0,800.0,0.0,85,78,0.0,0.0,663.4436292364467,1280.0,0.0,1450.922320677959,71,2,2,2,2,1,2,2,2,0,,1,,1,119259,1,3,4,0,1,,500.0,405.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1114.50410577563,480.0,23677.901717639186,6,5,2,3,60.0,3,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05405884420267046,15785.267811759457,3,2,3_0,3_1_0,3_2_0,3_1_0 -12386,2,34.0,0.0,6,111,240.0,1171.0,0.0,0,35,0.0,0.0,331.72181461822333,1411.0,0.0,2123.7875468923626,12,0,0,0,0,0,0,0,0,2,45.0,2,,4,127673,2,2,0,0,1,,244.0,387.0,32,1.0,0.0,3.0,2.0,1.3,2,2,276.934703677895,240.0,27869.036946795102,0,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05062966483893025,21437.720728303924,6,3,6,6_0,6_2,6_0_0 -12387,2,78.0,0.0,1,211,400.0,0.0,0.0,77,78,2238.883730649983,0.0,552.8696910303722,2022.0,211.60022151539357,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108760,2,2,4,0,1,,250.0,,41,0.0,2.0,3.0,2.0,1.5,3,1,1165.99265334907,400.0,25297.419041732523,5,5,0,1,60.0,3,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07992910251691514,16864.946027821683,4,2,4_0,4_1_0,4_2_0,4_1_0 -12388,1,41.0,398.0,2,111,588.0,696.0,0.0,81,68,0.0,0.0,812.7184458146471,1356.0,123.8635443016938,1262.3024189898244,12,2,2,2,1,1,2,2,2,0,,1,,2,130856,1,3,4,0,1,,608.0,341.0,43,2.0,1.0,3.0,6.0,2.8999999999999995,3,2,218.209987355211,588.0,18989.355177041987,4,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0.07140842789856264,6548.0535093248245,1,1,1_1,1_1_1,1_2_1,1_0_1 -12389,2,34.0,0.0,2,111,900.0,0.0,0.0,68,67,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,20,2,1,2,1,1,2,2,2,2,15.0,2,,2,118001,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,340.209890627103,900.0,36530.87814930734,1,1,1,2,67.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024636692179190466,20294.932305170743,5,3,5,5_0,5_2,5_0_1 -12390,1,65.0,160.0,2,211,262.0,868.0,0.0,0,72,0.0,0.0,362.1296476248938,1130.0,0.0,1574.2507179355857,70,0,0,0,0,0,0,0,0,0,,2,,2,100299,1,1,0,0,2,,0.0,283.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1522.11098579753,262.0,11811.257188895295,0,5,2,3,68.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09567144139934597,11811.257188895295,2,1,2_1,2_0_1,2_2_1,2_0_1 -12391,1,40.0,360.0,2,111,250.0,71.0,0.0,0,21,0.0,0.0,345.54355689398267,321.0,0.0,128.76935596016887,20,2,2,1,2,1,2,2,2,2,10.0,2,,2,118018,2,1,0,1,1,,343.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,369.142992749159,250.0,12985.0,0,1,1,2,67.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.024720831728917984,7213.888888888889,1,1,1_1,1_0_1,1_2_1,1_0_1 -12392,2,43.0,0.0,2,211,203.0,697.0,0.0,0,62,0.0,0.0,280.5813681979139,900.0,0.0,1264.116071890672,70,0,0,0,0,0,0,0,0,2,35.0,2,,2,133068,1,1,0,0,2,,0.0,282.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1467.02541107368,203.0,21094.2986983931,0,1,2,3,68.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04266555683449003,21094.2986983931,5,3,5,5_0,5_2,5_0_1 -12393,2,46.0,0.0,2,211,1400.0,0.0,0.0,52,64,2240.377315527001,0.0,1935.0439186063027,3080.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,131883,2,1,1,0,1,,720.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,1174.83200704829,1400.0,50953.854700344404,1,1,1,2,70.0,3,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0604468497646201,25476.927350172202,7,4,7,7_1,7_2,7_0_1 -12394,2,57.0,0.0,2,111,325.0,404.0,0.0,77,64,0.0,0.0,449.20662396217745,729.0,0.0,732.7157719423693,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,126021,2,2,0,1,1,1848.0,0.0,441.0,42,1.0,2.0,4.0,2.0,1.5,2,2,359.035134214686,325.0,31134.406916328593,5,1,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023414610143663035,20756.271277552394,5,3,5,5_0,5_2,5_0_1 -12395,1,44.0,414.0,2,111,784.0,0.0,0.0,85,67,0.0,0.0,1083.6245944195296,784.0,0.0,0.0,42,1,1,2,2,1,2,2,2,2,40.0,2,,2,121773,1,3,0,1,1,671.0,296.0,378.0,42,1.0,0.0,3.0,5.0,2.4,5,4,282.034169287842,784.0,28933.955818851067,6,1,2,3,65.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027096191233181046,12055.814924521279,2,1,2_1,2_0_1,2_2_1,2_0_1 -12396,1,39.0,25.0,2,211,460.0,1000.0,0.0,54,63,0.0,0.0,635.800144684928,1460.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,3,105.0,1,,2,111284,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1095.91824377159,460.0,38740.225959439136,4,1,1,2,78.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037686925252542774,16141.760816432974,4,2,4_1,4_1_1,4_2_1,4_0_1 -12397,2,83.0,0.0,1,211,2000.0,0.0,0.0,77,74,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108250,2,2,1,0,1,,300.0,,41,0.0,1.0,7.0,2.0,1.5,1,1,1205.33786376493,2000.0,50103.89818063481,5,5,0,1,162.0,3,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03991705381464713,33402.598787089875,8,4,8,8_1,8_2,8_1_0 -12398,1,72.0,123.0,2,211,219.0,753.0,0.0,0,78,0.0,0.0,302.6961558391288,972.0,0.0,1365.680634338129,50,0,0,0,0,0,0,0,0,0,,2,,2,133629,2,1,0,0,1,,0.0,282.0,11,0.0,2.0,3.0,1.0,1.0,3,3,1546.63031572707,219.0,11283.09713977278,0,5,2,3,50.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08614655958014504,11283.09713977278,2,1,2_1,2_0_1,2_2_1,2_0_1 -12399,1,26.0,154.0,2,211,0.0,0.0,577.0,0,45,0.0,20.703450096389155,294.79699420125195,597.0,0.0,659.6528119745684,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,116820,2,1,0,0,1,,0.0,282.0,12,1.0,0.0,3.0,1.0,1.0,4,2,1546.40822039125,0.0,18911.660030447187,0,1,2,3,69.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03156782635891553,18911.660030447187,5,3,5,5_0,5_2,5_0_1 -12400,1,31.0,251.0,2,211,420.0,1000.0,0.0,54,65,0.0,0.0,580.5131755818909,1420.0,0.0,1813.6529008474488,71,2,2,2,2,2,2,2,1,0,,2,,2,103407,2,2,0,0,1,,0.0,310.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1664.69530943805,420.0,19667.74219509399,4,4,2,3,80.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.07219944139567841,10926.523441718882,2,1,2_1,2_0_1,2_2_1,2_0_1 -12401,1,56.0,310.0,5,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,533.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,123101,1,1,0,1,1,856.0,0.0,,42,1.0,5.0,3.0,3.0,1.8,2,2,290.070434773993,0.0,7637.549494049233,6,4,3,4,60.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06978678179634513,4243.0830522495735,1,1,1_1,1_0_1,1_2_1,1_0_0 -12402,1,44.0,491.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,897.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109241,1,2,0,0,1,,0.0,730.0,31,0.0,0.0,3.0,4.0,1.9,2,2,303.358598085967,0.0,10849.323270579256,0,6,2,3,60.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08267796779845682,5710.170142410135,1,1,1_1,1_0_1,1_2_1,1_0_1 -12403,2,69.0,0.0,2,211,0.0,0.0,0.0,77,74,0.0,0.0,0.0,2573.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116495,2,3,3,0,2,,142.0,550.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1399.210819407,0.0,35202.72713743179,5,5,2,3,70.0,3,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07309092815323605,23468.48475828786,6,3,6,6_1,6_2,6_0_1 -12404,1,47.0,200.0,7,211,1340.0,0.0,0.0,0,85,0.0,0.0,1852.113464951747,1440.0,172.03270041901916,0.0,50,2,2,2,2,2,2,2,1,0,,1,,5,115955,2,1,2,0,1,,840.0,,31,1.0,0.0,4.0,2.0,1.5,2,2,1145.91163667914,1340.0,13422.356375175514,0,7,1,2,90.0,3,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.10728369592862716,8948.237583450342,1,1,1_1,1_1_1,1_2_1,1_0_0 -12405,2,46.0,0.0,7,111,232.0,431.0,0.0,55,37,0.0,0.0,320.6644207976159,663.0,0.0,781.6844002652505,20,2,2,1,2,1,2,2,2,2,7.0,2,,5,102546,1,2,0,0,1,,194.0,328.0,43,2.0,0.0,3.0,2.0,1.5,1,1,256.150718661193,232.0,46472.07951492218,4,1,2,3,55.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.014266630779608448,30981.386343281454,8,4,8,8_0,8_2,8_0_0 -12406,1,46.0,22.0,2,211,180.0,1500.0,0.0,0,56,0.0,0.0,248.7913609636675,1680.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,2,,2,105584,2,2,0,0,1,,0.0,285.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1547.36564933066,180.0,14460.347532050677,0,1,2,3,80.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11617978034596745,14460.347532050677,3,2,3_1,3_0_1,3_2_1,3_0_1 -12407,2,54.0,0.0,1,211,900.0,1000.0,0.0,75,65,0.0,0.0,1243.9568048183376,1900.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,123229,1,2,1,0,1,,700.0,,42,2.0,2.0,5.0,3.0,2.0,4,4,1420.34634843264,900.0,106297.35789374865,5,1,0,1,120.0,3,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01787438594568999,53148.67894687432,10,5,10,10_1,10_2,10_1_0 -12408,1,64.0,327.0,2,111,350.0,100.0,0.0,78,78,0.0,0.0,483.76097965157567,450.0,0.0,181.36529008474488,20,0,0,0,0,0,0,0,0,0,,2,,2,104888,2,1,0,1,1,598.0,229.0,335.0,41,0.0,3.0,5.0,2.0,1.5,1,1,244.107774623135,350.0,5078.920713202639,7,5,2,3,72.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08860150126585485,3385.9471421350922,1,1,1_1,1_0_1,1_2_1,1_0_1 -12409,2,70.0,0.0,2,211,1160.0,1750.0,0.0,78,78,0.0,414.0690019277831,1603.3221039880796,3310.0,0.0,3173.8925764830356,70,0,0,0,0,0,0,0,0,0,,1,,2,102202,2,2,1,0,1,,389.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1230.57782261118,1160.0,24043.429457643007,5,5,0,1,75.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13766754887572022,16028.952971762004,4,2,4_0,4_1_0,4_2_0,4_0_1 -12411,2,72.0,0.0,5,211,0.0,0.0,1000.0,86,78,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,50,2,2,2,2,2,2,2,1,0,,8,,3,123684,2,1,0,0,1,,0.0,453.0,41,0.0,5.0,4.0,2.0,1.5,2,2,1398.17285205336,0.0,17674.216010672357,5,5,2,3,65.0,3,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.05657959591509815,11782.81067378157,2,1,2_0,2_0_0,2_2_0,2_0_0 -12412,2,50.0,0.0,2,111,250.0,250.0,0.0,0,68,0.0,0.0,345.54355689398267,500.0,0.0,453.4132252118622,50,2,1,2,1,1,2,2,2,0,,2,,2,101306,2,3,0,1,1,707.0,300.0,400.0,22,2.0,1.0,4.0,2.0,1.5,1,1,254.477860263678,250.0,16483.811351402815,0,1,2,3,68.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.030332790720602895,10989.207567601878,2,1,2_0,2_0_0,2_2_0,2_0_1 -12413,2,67.0,0.0,1,211,610.0,1200.0,0.0,77,75,0.0,0.0,843.1262788213177,1810.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,0,,1,,1,108118,2,1,1,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1227.24841906774,610.0,50448.32228500078,5,5,0,1,90.0,3,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03587829917860611,33632.21485666719,9,5,9,9_1,9_2,9_1_0 -12414,1,20.0,351.0,1,211,540.0,1332.0,0.0,0,81,0.0,0.0,746.3740828910024,1872.0,0.0,2415.785663928802,71,0,0,0,0,0,0,0,0,0,,1,,1,110479,1,2,2,0,1,,687.0,390.0,22,2.0,1.0,5.0,3.0,2.0,1,1,1268.00344935399,540.0,18585.458028413275,0,4,2,3,80.0,3,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10072390990515831,9292.729014206638,1,1,1_1,1_1_1,1_2_1,1_1_0 -12415,1,45.0,491.0,5,111,350.0,220.0,0.0,85,67,0.0,0.0,483.76097965157567,570.0,0.0,399.00363818643876,70,2,2,1,1,1,2,2,2,0,,2,,3,118172,1,2,0,1,2,,300.0,550.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,2,2,335.83643239734,350.0,14592.555516544006,6,4,2,3,49.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.039061012949635474,5612.521352516926,1,1,1_1,1_0_1,1_2_1,1_0_0 -12416,2,47.0,0.0,5,211,700.0,700.0,0.0,0,62,0.0,0.0,967.5219593031513,1400.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,120821,2,2,0,0,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1451.68997706818,700.0,25176.51490111556,0,1,2,3,50.0,3,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05560737876146498,25176.51490111556,7,4,7,7_0,7_2,7_0_0 -12417,2,27.0,0.0,2,111,252.0,140.0,0.0,56,55,0.0,0.0,348.3079053491345,392.0,0.0,253.91140611864284,41,2,1,2,2,1,2,2,2,1,15.0,2,,2,126104,2,1,0,1,1,620.0,264.0,287.0,43,2.0,0.0,3.0,2.0,1.5,4,4,258.397683594857,252.0,16179.863794340854,4,1,2,3,62.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024227645237477696,10786.575862893902,2,1,2_0,2_0_0,2_2_0,2_0_1 -12418,1,81.0,250.0,2,111,175.0,80.0,0.0,0,86,0.0,0.0,241.88048982578783,255.0,0.0,145.09223206779592,10,0,0,0,0,0,0,0,0,0,,2,,2,116988,2,1,0,3,1,670.0,222.0,237.0,11,0.0,9.0,3.0,1.0,1.0,1,1,307.232424436158,175.0,10032.955381791042,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025416239811332487,10032.955381791042,2,1,2_1,2_0_1,2_2_1,2_0_1 -12419,2,27.0,0.0,2,111,576.0,0.0,0.0,0,35,0.0,0.0,796.132355083736,576.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,111020,1,3,0,0,1,,180.0,439.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1157.94638080065,576.0,20739.23926291116,0,1,2,3,43.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.027773439165152247,20739.23926291116,5,3,5,5_0,5_2,5_0_1 -12420,1,35.0,299.0,5,111,1120.0,0.0,0.0,56,64,0.0,0.0,1548.0351348850422,1495.0,645.1226265713219,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,3,115070,2,2,0,1,1,1200.0,1100.0,339.0,43,2.0,0.0,6.0,7.0,3.3999999999999995,4,3,298.953018585681,1120.0,17990.48614913296,1,1,2,3,107.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08309947755758954,5291.319455627342,1,1,1_1,1_0_1,1_2_1,1_0_0 -12421,1,28.0,397.0,2,111,1560.0,60.0,0.0,0,85,0.0,0.0,2156.1917950184516,1620.0,0.0,108.81917405084694,20,2,2,2,2,1,2,2,2,0,,2,,2,112645,1,2,0,0,1,,371.0,646.0,31,0.0,0.0,3.0,3.0,1.6,1,1,1279.60025912461,1560.0,10231.231616219025,0,6,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.15833870845342807,6394.519760136891,1,1,1_1,1_0_1,1_2_1,1_0_1 -12422,2,58.0,0.0,2,111,656.0,1225.0,0.0,33,33,0.0,0.0,906.7062932898104,1881.0,0.0,2221.724803538125,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,126653,2,1,1,0,1,,462.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,773.750079514389,656.0,96490.88955616573,1,1,1,2,170.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019494068389794474,64327.25970411048,10,5,10,10_1,10_2,10_0_1 -12423,2,63.0,0.0,2,111,690.0,282.0,0.0,0,77,0.0,0.0,953.7002170273921,972.0,0.0,511.4501180389806,70,0,0,0,0,0,0,0,0,0,,2,,2,122741,2,1,0,1,1,,230.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1067.71018673183,690.0,10729.32854694949,0,5,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09059280790468051,10729.32854694949,2,1,2_0,2_0_0,2_2_0,2_0_1 -12425,1,67.0,140.0,2,111,1200.0,220.0,0.0,52,78,0.0,0.0,1658.6090730911167,1420.0,0.0,399.00363818643876,31,2,1,2,2,1,2,2,2,0,,2,,2,126365,2,3,0,1,1,1500.0,740.0,386.0,42,1.0,4.0,4.0,3.0,2.0,3,3,314.280095581521,1200.0,33367.81107479606,1,5,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04255598297463924,16683.90553739803,4,2,4_1,4_0_1,4_2_1,4_0_1 -12426,2,75.0,0.0,1,111,470.0,0.0,0.0,74,74,4630.113118755802,0.0,649.6218869606873,3570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114268,2,2,1,0,1,,400.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,790.087375621406,470.0,122402.3448330134,5,5,0,1,120.0,7,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029166107927673685,81601.56322200893,10,5,10,10_1,10_2,10_1_0 -12427,1,36.0,133.0,2,111,150.0,80.0,0.0,81,42,0.0,0.0,207.32613413638958,230.0,0.0,145.09223206779592,33,2,1,2,2,1,2,2,2,2,30.0,2,,2,117026,1,2,0,1,1,,120.0,258.0,43,2.0,0.0,2.0,2.0,1.5,1,1,266.271585052901,150.0,16502.75978279781,4,1,2,3,57.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.013937062832348078,11001.83985519854,2,1,2_1,2_0_1,2_2_1,2_0_1 -12428,1,39.0,366.0,2,111,105.0,90.0,0.0,0,56,0.0,0.0,145.12829389547272,195.0,0.0,163.2287610762704,20,1,2,2,2,1,2,2,2,0,,2,,2,126591,1,2,0,1,1,1119.0,197.0,342.0,32,1.0,0.0,3.0,2.0,1.5,2,1,271.166477841089,105.0,12103.496295253595,0,1,2,3,63.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01611104719191508,8068.997530169064,1,1,1_1,1_0_1,1_2_1,1_0_1 -12429,0,83.0,0.0,1,111,200.0,3326.0,0.0,0,75,0.0,0.0,276.4348455151861,3526.0,0.0,6032.209548218615,43,0,0,0,0,0,0,0,0,0,,1,,1,105433,1,2,2,0,2,,280.0,,11,0.0,1.0,9.0,1.0,1.0,2,2,823.401126507929,200.0,20239.524937799775,0,5,0,1,300.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17421357521167732,20239.524937799775,5,3,5,5_1,5_2,5_1_0 -12430,2,72.0,0.0,2,111,300.0,170.0,0.0,86,78,0.0,0.0,414.65226827277917,470.0,0.0,308.32099314406634,71,0,0,0,0,0,0,0,0,0,,2,,2,116335,1,1,0,1,1,,175.0,354.0,41,0.0,3.0,4.0,2.0,1.5,1,1,283.065325837259,300.0,23220.231325244793,6,5,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020240969756792255,15480.154216829862,3,2,3_0,3_0_0,3_2_0,3_0_1 -12431,2,53.0,0.0,2,111,198.0,517.0,0.0,0,52,0.0,0.0,273.6704970600342,715.0,0.0,937.6585497381311,70,0,0,0,0,0,0,0,0,1,5.0,2,,2,103371,2,3,0,0,2,,200.0,450.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1159.75959865075,198.0,27424.99468945105,0,1,2,3,52.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02607110805658689,27424.99468945105,7,4,7,7_0,7_2,7_0_1 -12432,2,44.0,0.0,2,111,700.0,0.0,0.0,56,63,0.0,0.0,967.5219593031513,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,2.0,2,,2,103581,2,1,0,1,1,,240.0,330.0,43,2.0,2.0,3.0,4.0,2.3,4,2,256.789066322965,700.0,52980.15411725557,1,1,2,3,67.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013212494596575943,23034.849616198077,6,3,6,6_0,6_2,6_0_1 -12433,1,31.0,351.0,7,111,350.0,0.0,0.0,63,63,0.0,807.4345537591771,483.76097965157567,1130.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,3.0,8,,5,114307,2,1,0,1,1,,200.0,495.0,43,2.0,0.0,3.0,3.0,1.8,2,2,281.035651165709,350.0,28016.640376610347,1,1,2,3,80.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0403331728861887,15564.80020922797,3,2,3_1,3_0_1,3_2_1,3_0_0 -12434,0,86.0,0.0,5,111,230.0,1550.0,0.0,0,77,0.0,0.0,317.900072342464,1780.0,0.0,2811.161996313546,43,0,0,0,0,0,0,0,0,0,,1,,3,115472,2,1,2,0,1,,90.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,883.65001575685,230.0,17256.84918323862,0,5,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10314745067882343,17256.84918323862,4,2,4_0,4_1_0,4_2_0,4_0_0 -12435,1,45.0,194.0,2,111,400.0,0.0,0.0,85,67,0.0,828.1380038555662,552.8696910303722,1240.0,68.81308016760767,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,130593,2,1,0,1,1,660.0,300.0,510.0,42,1.0,1.0,4.0,4.0,2.3,1,1,209.107861207059,400.0,16714.86878810048,6,1,2,3,80.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07418544624668374,7267.334255695861,1,1,1_1,1_0_1,1_2_1,1_0_1 -12436,1,65.0,28.0,2,111,190.0,140.0,0.0,0,77,0.0,0.0,262.6131032394268,330.0,0.0,253.91140611864284,70,1,2,2,1,2,2,2,2,0,,2,,2,118166,1,3,0,0,1,564.0,130.0,290.0,11,0.0,1.0,4.0,1.0,1.0,2,2,1111.75503876885,190.0,14558.733364109032,0,5,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.022666807046108396,14558.733364109032,3,2,3_1,3_0_1,3_2_1,3_0_1 -12437,1,51.0,254.0,2,111,0.0,0.0,983.0,0,67,0.0,0.0,502.22780814528716,983.0,0.0,1123.8105964835368,10,0,0,0,0,0,0,0,0,0,,8,,2,130574,2,1,0,1,1,,0.0,287.0,12,1.0,2.0,3.0,1.0,1.0,2,2,266.472808355249,0.0,6156.526418743337,0,4,2,3,60.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15966795773137427,6156.526418743337,1,1,1_1,1_0_1,1_2_1,1_0_1 -12438,1,48.0,310.0,2,111,300.0,300.0,0.0,68,85,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,71,1,2,2,2,1,2,2,2,0,,2,,2,123375,1,3,0,1,1,,500.0,400.0,42,2.0,0.0,4.0,5.0,2.8,3,3,1009.78233051025,300.0,19926.422235428814,4,7,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030110774172656594,7116.579369796005,1,1,1_1,1_0_1,1_2_1,1_0_1 -12439,1,75.0,108.0,5,111,150.0,0.0,0.0,0,78,0.0,0.0,207.32613413638958,170.0,34.40654008380383,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,107333,2,1,0,1,1,,100.0,310.0,11,0.0,0.0,3.0,1.0,1.0,1,1,268.156031165787,150.0,17220.83883230495,0,5,2,3,60.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009871760699664249,17220.83883230495,4,2,4_1,4_0_1,4_2_1,4_0_0 -12440,2,47.0,0.0,2,111,250.0,240.0,0.0,0,68,0.0,0.0,345.54355689398267,490.0,0.0,435.27669620338776,31,0,0,0,0,0,0,0,0,0,,2,,2,128469,2,1,0,1,1,837.0,600.0,397.0,12,1.0,1.0,4.0,1.0,1.0,2,2,1039.42542018876,250.0,19950.13917401952,0,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024561232166145114,19950.13917401952,5,3,5,5_0,5_2,5_0_1 -12441,2,60.0,0.0,2,111,400.0,2400.0,0.0,85,64,0.0,0.0,552.8696910303722,2800.0,0.0,4352.7669620338775,71,0,0,0,0,0,0,0,0,0,,1,,2,111970,2,1,2,0,1,,250.0,,42,3.0,1.0,5.0,4.0,2.5,1,1,190.648021828599,400.0,30152.830048310036,6,1,0,1,80.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09286027200478088,12061.132019324014,2,1,2_0,2_1_0,2_2_0,2_0_1 -12442,2,56.0,0.0,6,111,2300.0,0.0,0.0,56,45,0.0,0.0,3179.0007234246405,2376.0,130.74485231845458,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,4,114276,2,1,2,0,1,,405.0,,43,4.0,1.0,7.0,4.0,2.5,2,2,753.283416274487,2300.0,63731.4498913113,1,1,1,2,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03728143646585902,25492.579956524518,7,4,7,7_1,7_2,7_0_0 -12443,1,40.0,190.0,5,111,250.0,0.0,0.0,0,46,0.0,62.110350289167464,345.54355689398267,370.0,103.2196202514115,0.0,10,2,2,2,1,2,2,2,2,2,30.0,2,,3,123392,1,1,0,1,1,,180.0,396.0,32,1.0,0.0,3.0,2.0,1.5,3,2,256.527036626846,250.0,16845.990689473445,0,1,2,3,60.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.02196368304009582,11230.660459648963,2,1,2_1,2_0_1,2_2_1,2_0_0 -12444,2,27.0,0.0,6,111,0.0,0.0,0.0,81,68,0.0,0.0,0.0,268.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,111869,2,1,0,1,1,,428.0,110.0,43,2.0,0.0,3.0,2.0,1.5,2,2,256.527036626846,0.0,1456.4144473218569,4,4,2,3,60.0,5,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.18401355499652908,970.9429648812379,1,1,1_0,1_0_0,1_2_0,1_0_0 -12445,2,61.0,0.0,1,111,451.0,1485.0,0.0,0,43,0.0,0.0,623.3605766367447,1936.0,0.0,2693.2745577584615,42,0,0,0,0,0,0,0,0,0,,1,,1,111612,2,1,1,0,1,,242.0,,32,1.0,3.0,5.0,2.0,1.5,2,2,764.647978991196,451.0,51537.838620440554,0,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03756463312825381,34358.5590802937,9,5,9,9_1,9_2,9_1_0 -12446,1,40.0,190.0,2,111,100.0,20.0,0.0,0,85,0.0,0.0,138.21742275759306,120.0,0.0,36.27305801694898,70,0,0,0,0,0,0,0,0,0,,2,,2,108976,2,1,0,1,1,,60.0,190.0,11,0.0,0.0,1.0,1.0,1.0,1,1,298.48564238445,100.0,1640.6077955140704,0,7,2,3,40.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.073143624166676,1640.6077955140704,1,1,1_1,1_0_1,1_2_1,1_0_1 -12447,2,39.0,0.0,6,111,290.0,0.0,0.0,0,54,0.0,0.0,400.8305259970199,290.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,2,,4,117712,1,3,0,0,1,,55.0,405.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1173.36239576539,290.0,31945.457562796415,0,1,2,3,30.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.009077972961568505,31945.457562796415,8,4,8,8_0,8_2,8_0_0 -12448,1,61.0,270.0,2,111,120.0,170.0,0.0,0,77,0.0,0.0,165.86090730911167,290.0,0.0,308.32099314406634,42,1,1,1,1,1,2,2,2,0,,2,,2,125423,1,3,0,1,1,820.0,0.0,282.0,11,0.0,4.0,4.0,1.0,1.0,4,3,285.172553322895,120.0,6060.0,0,7,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04785478547854786,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -12449,2,39.0,0.0,2,111,480.0,1000.0,0.0,47,43,0.0,0.0,663.4436292364467,1480.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,100910,2,2,4,0,1,,300.0,,43,2.0,0.0,3.0,4.0,2.1,3,3,707.522054456478,480.0,54308.731322118576,1,1,1,2,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02725160326839072,25861.300629580273,7,4,7,7_1,7_2,7_0_1 -12450,2,53.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,221.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118449,1,3,0,1,1,610.0,0.0,292.0,32,2.0,3.0,4.0,2.0,1.5,2,2,309.002587636243,0.0,11033.72483165395,0,4,2,3,68.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02002950076895041,7355.816554435966,1,1,1_0,1_0_0,1_2_0,1_0_1 -12451,1,40.0,180.0,1,111,440.0,0.0,0.0,56,52,0.0,0.0,608.1566601334094,505.0,111.82125527236246,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,1,110708,1,3,0,1,1,744.0,200.0,345.0,43,2.0,0.0,4.0,5.0,2.4,1,1,230.134192580005,440.0,27396.91739037512,4,1,2,3,80.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.01843273069025688,11415.382245989635,2,1,2_1,2_0_1,2_2_1,2_1_0 -12452,2,36.0,0.0,2,111,568.0,628.0,0.0,52,64,0.0,0.0,785.0749612631286,1196.0,0.0,1138.9740217321978,70,2,2,1,2,2,2,2,1,2,40.0,1,,2,128903,2,2,5,0,1,,399.0,435.0,43,2.0,0.0,5.0,4.0,2.1,2,2,636.793715581616,568.0,40304.62903410403,1,1,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.029674010868280084,19192.68049243049,5,3,5,5_1,5_2,5_0_1 -12453,1,67.0,75.0,2,111,200.0,130.0,0.0,0,78,0.0,0.0,276.4348455151861,330.0,0.0,235.77487711016835,71,0,0,0,0,0,0,0,0,0,,2,,2,109140,2,1,0,1,1,850.0,0.0,314.0,11,0.0,1.0,3.0,1.0,1.0,2,2,307.232424436158,200.0,12525.864474702686,0,5,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02634548702538416,12525.864474702686,2,1,2_1,2_0_1,2_2_1,2_0_1 -12454,2,42.0,0.0,1,111,0.0,0.0,0.0,56,64,0.0,0.0,0.0,966.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,103462,2,1,1,0,1,,1704.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,730.745343810143,0.0,41080.06863729807,1,1,1,2,70.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023515053213005926,17860.8994075209,4,2,4_0,4_1_0,4_2_0,4_1_0 -12455,1,69.0,256.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1788.0,56.77079113827632,0.0,10,2,2,2,1,1,2,2,2,0,,2,,2,123410,2,1,0,1,2,552.0,120.0,355.0,21,1.0,2.0,3.0,2.0,1.5,2,2,285.709197691267,0.0,17935.10731423056,0,5,2,3,70.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0996927405380684,11956.73820948704,2,1,2_1,2_0_1,2_2_1,2_0_1 -12456,2,59.0,0.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1460.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,1,103503,2,1,0,0,1,,214.0,500.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1193.07777287309,0.0,43223.13712424747,0,1,3,4,50.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03377820531173254,43223.13712424747,9,5,9,9_0,9_2,9_1_0 -12457,1,28.0,66.0,2,111,460.0,0.0,0.0,85,47,0.0,0.0,635.800144684928,460.0,0.0,0.0,31,2,1,2,1,1,2,2,2,2,7.0,2,,2,129429,1,3,0,1,1,994.0,180.0,343.0,42,1.0,0.0,5.0,5.0,2.4,3,2,251.600219304419,460.0,33290.80138579902,6,1,2,3,75.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.013817630722347941,13871.167244082926,3,2,3_1,3_0_1,3_2_1,3_0_1 -12459,1,23.0,319.0,2,111,250.0,390.0,0.0,67,67,0.0,0.0,345.54355689398267,640.0,0.0,707.3246313305051,31,0,0,0,0,0,0,0,0,0,,2,,2,125904,1,3,0,1,1,75.0,0.0,279.0,43,2.0,0.0,3.0,4.0,2.1,3,3,259.425767248222,250.0,15939.107958409852,4,4,2,3,52.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0401528116673757,7590.051408766596,1,1,1_1,1_0_1,1_2_1,1_0_1 -12460,1,32.0,313.0,2,111,638.0,1550.0,0.0,56,53,0.0,0.0,881.8271571934437,2188.0,0.0,2811.161996313546,20,2,2,2,2,1,2,2,2,0,,2,,2,106381,1,3,0,0,1,,209.0,532.0,43,2.0,1.0,4.0,2.0,1.5,1,1,270.789574213324,638.0,14620.77235839935,4,4,2,3,64.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.14965009688718917,9747.181572266234,2,1,2_1,2_0_1,2_2_1,2_0_1 -12461,2,76.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,295.0,120.42289029331342,0.0,12,2,1,1,1,1,2,2,2,0,,2,,1,100927,2,1,0,1,1,600.0,90.0,268.0,11,0.0,2.0,3.0,1.0,1.0,2,2,307.232424436158,0.0,16865.96018321964,0,5,2,3,80.0,8,6,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.017490851205346897,16865.96018321964,4,2,4_0,4_0_0,4_2_0,4_1_0 -12462,2,62.0,0.0,6,111,11980.0,0.0,0.0,0,77,0.0,0.0,16558.447246359647,11980.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,127213,2,1,2,0,1,,220.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,802.145035637989,11980.0,46517.99759986429,0,5,0,1,140.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.25753473103139224,31011.998399909528,8,4,8,8_1,8_2,8_0_0 -12463,2,80.0,0.0,5,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,766.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,104656,1,3,0,1,1,1000.0,215.0,378.0,41,0.0,4.0,5.0,2.0,1.5,2,2,329.150020574467,0.0,18558.218263862662,5,5,2,3,100.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.041275514120425405,12372.145509241775,2,1,2_0,2_0_0,2_2_0,2_0_0 -12464,2,68.0,0.0,2,111,308.0,950.0,0.0,0,90,0.0,0.0,425.7096620933866,1258.0,0.0,1722.9702558050765,10,0,0,0,0,0,0,0,0,0,,1,,2,104261,2,3,1,0,1,,131.0,335.0,11,0.0,2.0,3.0,1.0,1.0,2,2,261.378849362795,308.0,17085.77629523065,0,5,2,3,64.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07362849532047075,17085.77629523065,4,2,4_0,4_1_0,4_2_0,4_0_1 -12465,2,68.0,0.0,5,111,350.0,0.0,0.0,77,78,0.0,0.0,483.76097965157567,3483.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,112203,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,247.448424880857,350.0,19787.62655282015,5,5,0,1,90.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17601908903539518,13191.751035213434,2,1,2_0,2_1_0,2_2_0,2_0_0 -12466,1,58.0,161.0,2,111,600.0,300.0,0.0,68,85,0.0,0.0,829.3045365455583,900.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,0,,2,,2,130908,2,1,0,0,1,,462.0,369.0,42,3.0,5.0,4.0,4.0,2.5,4,4,254.749544452665,600.0,38097.55653567727,4,6,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023623562292168943,15239.022614270909,3,2,3_1,3_0_1,3_2_1,3_0_1 -12467,1,37.0,342.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,2689.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,,2,129546,2,3,0,0,1,,300.0,382.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,284.168970414011,0.0,27952.959914018647,6,1,2,3,120.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09619732608894287,9317.653304672884,1,1,1_1,1_0_1,1_2_1,1_0_1 -12468,1,34.0,374.0,2,111,0.0,0.0,450.0,55,43,0.0,0.0,229.91100067688626,450.0,0.0,514.4605985936842,60,2,2,2,1,1,2,2,2,0,,2,,2,118744,2,3,0,1,1,1416.0,0.0,341.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,303.505040986352,0.0,9983.004444444443,4,4,2,3,125.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04507661020329663,3442.415325670498,1,1,1_1,1_0_1,1_2_1,1_0_1 -12469,2,33.0,0.0,5,111,430.0,0.0,0.0,52,63,0.0,0.0,594.3349178576501,430.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,114714,1,2,0,1,1,593.0,180.0,275.0,43,2.0,1.0,3.0,4.0,2.1,2,2,259.445531401354,430.0,41598.5826133224,1,4,2,3,75.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010336890657959287,19808.84886348686,5,3,5,5_0,5_2,5_0_0 -12470,2,54.0,0.0,2,111,360.0,0.0,0.0,0,90,0.0,0.0,497.582721927335,390.0,51.60981012570575,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,107247,2,1,0,1,1,,0.0,430.0,12,1.0,2.0,2.0,1.0,1.0,2,2,286.455214416499,360.0,29320.04445910523,0,1,2,3,55.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013301480512553827,29320.04445910523,8,4,8,8_0,8_2,8_0_1 -12471,1,63.0,20.0,2,111,480.0,0.0,0.0,0,72,0.0,0.0,663.4436292364467,643.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,109363,2,2,0,1,1,,100.0,400.0,11,0.0,3.0,3.0,1.0,1.0,2,2,280.84039170313,480.0,4578.567856865321,0,5,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14043692702639657,4578.567856865321,1,1,1_1,1_0_1,1_2_1,1_0_1 -12472,0,38.0,0.0,5,111,400.0,2500.0,0.0,85,42,0.0,0.0,552.8696910303722,2900.0,0.0,4534.132252118622,50,1,2,2,2,1,2,2,2,0,,8,,3,114244,2,2,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,324.375049283885,400.0,11428.360450747296,7,1,5,0,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.2537546844534791,6349.089139304053,1,1,1_0,1_0_0,1_2_0,1_0_0 -12473,1,47.0,240.0,5,111,480.0,200.0,0.0,42,56,0.0,0.0,663.4436292364467,680.0,0.0,362.73058016948977,10,0,0,0,0,0,0,0,0,0,,2,,3,109023,2,3,0,1,1,1428.0,0.0,360.0,43,2.0,0.0,4.0,5.0,2.8,3,2,275.214867960954,480.0,24895.734920624505,4,1,2,3,86.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027313915502717858,8891.333900223039,1,1,1_1,1_0_1,1_2_1,1_0_0 -12474,1,52.0,254.0,2,111,80.0,856.0,0.0,0,85,0.0,0.0,110.57393820607444,936.0,0.0,1552.4868831254162,60,2,2,2,2,1,2,2,2,0,,2,,2,100588,1,3,0,0,1,,480.0,332.0,11,0.0,4.0,4.0,1.0,1.0,3,3,295.71827790707,80.0,4306.595463224435,0,7,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.2173410546666944,4306.595463224435,1,1,1_1,1_0_1,1_2_1,1_0_1 -12475,2,58.0,0.0,6,111,630.0,0.0,0.0,0,52,0.0,207.03450096389156,870.7697633728362,905.0,129.02452531426437,0.0,20,2,2,1,1,1,1,1,2,2,10.0,2,,4,120950,1,3,0,0,1,,0.0,385.0,32,1.0,1.0,3.0,2.0,1.5,1,1,266.747471288332,630.0,34161.776150719495,0,1,2,3,65.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.0264915968071215,22774.517433813,6,3,6,6_0,6_2,6_0_0 -12476,1,71.0,254.0,2,111,200.0,800.0,0.0,0,78,0.0,0.0,276.4348455151861,1000.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,2,,2,132098,1,2,0,0,1,,130.0,264.0,11,0.0,4.0,2.0,1.0,1.0,4,3,272.340755224762,200.0,9916.306666666665,0,5,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10084399702577439,9916.306666666665,2,1,2_1,2_0_1,2_2_1,2_0_1 -12477,1,63.0,316.0,2,111,180.0,160.0,0.0,75,78,0.0,0.0,248.7913609636675,340.0,0.0,290.18446413559184,20,2,2,1,2,2,2,2,1,0,,2,,2,130545,1,1,0,1,1,1000.0,0.0,415.0,41,1.0,5.0,5.0,3.0,2.0,2,2,307.300272157551,180.0,11664.88990825688,6,5,2,3,110.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.029147296088867007,5832.44495412844,1,1,1_1,1_0_1,1_2_1,1_0_1 -12478,2,60.0,0.0,2,111,1000.0,800.0,0.0,68,78,0.0,0.0,1382.1742275759307,1800.0,0.0,1450.922320677959,41,0,0,0,0,0,0,0,0,0,,1,,2,119563,2,1,1,0,1,,150.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,691.841768208827,1000.0,40428.05886846598,1,5,1,2,95.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04452353267458028,26952.039245643988,7,4,7,7_1,7_2,7_0_1 -12479,2,77.0,0.0,7,111,0.0,0.0,1260.0,72,74,0.0,0.0,643.7508018952816,1260.0,0.0,1440.4896760623158,31,0,0,0,0,0,0,0,0,0,,1,,5,127844,2,1,2,0,1,,160.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,702.830328719876,0.0,64418.17282952836,5,5,0,1,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019559697902863122,42945.448553018905,9,5,9,9_1,9_2,9_0_0 -12480,1,41.0,101.0,5,111,350.0,80.0,0.0,85,52,0.0,0.0,483.76097965157567,430.0,0.0,145.09223206779592,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,115779,1,1,0,1,1,602.0,0.0,285.0,42,1.0,2.0,3.0,3.0,1.8,3,2,290.514990016392,350.0,18734.288992069633,6,1,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022952565756940244,10407.938328927574,2,1,2_1,2_0_1,2_2_1,2_0_0 -12481,1,36.0,25.0,5,111,300.0,0.0,0.0,0,56,0.0,0.0,414.65226827277917,368.0,116.98223628493304,0.0,42,0,0,0,0,0,0,0,0,3,75.0,2,,3,110313,2,1,0,1,1,1020.0,0.0,600.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1082.6987287343,300.0,23602.74320660058,0,1,2,3,62.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015591408031634547,18155.956312769675,4,2,4_1,4_0_1,4_2_1,4_0_0 -12482,2,50.0,0.0,9,111,682.0,0.0,0.0,85,47,0.0,0.0,942.6428232067847,682.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,2.0,2,2006.0,6,120591,2,1,0,0,1,,234.0,790.0,42,1.0,3.0,3.0,4.0,2.1,1,1,1094.33987803704,682.0,41408.02014217047,6,1,2,3,76.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01647023928355952,19718.104829604985,5,3,5,5_0,5_2,5_0_0 -12483,2,61.0,0.0,8,111,660.0,0.0,0.0,0,45,0.0,0.0,912.2349902001142,660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,119785,1,1,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,1057.2811097462,660.0,32237.04791919035,0,1,0,1,38.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020473338677115947,32237.04791919035,8,4,8,8_0,8_2,8_0_0 -12484,2,74.0,0.0,1,111,620.0,1600.0,0.0,0,74,0.0,0.0,856.9480210970769,2220.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,1,117515,2,2,2,0,1,,300.0,,11,0.0,0.0,7.0,1.0,1.0,4,3,884.909238016416,620.0,38821.904230014065,0,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05718421195536486,38821.904230014065,9,5,9,9_1,9_2,9_1_0 -12485,2,62.0,0.0,2,111,240.0,110.0,0.0,0,75,0.0,0.0,331.72181461822333,350.0,0.0,199.50181909321938,60,0,0,0,0,0,0,0,0,0,,2,,2,108176,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,297.069416146712,240.0,34478.949260153335,0,5,1,2,63.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010151121409157568,34478.949260153335,9,5,9,9_0,9_2,9_0_1 -12486,1,21.0,305.0,1,111,0.0,0.0,0.0,67,62,0.0,0.0,0.0,1557.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,123125,2,2,3,0,1,,160.0,470.0,43,2.0,0.0,2.0,2.0,1.5,3,3,823.462183487856,0.0,28957.123801301586,4,1,2,3,45.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05376915230545151,19304.749200867725,5,3,5,5_1,5_2,5_1_0 -12487,1,48.0,212.0,2,111,200.0,0.0,0.0,0,62,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,110534,1,3,0,1,1,250.0,0.0,199.0,12,1.0,0.0,1.0,1.0,1.0,4,3,326.27046944464,200.0,6060.0,0,4,2,3,32.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.033003300330033,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -12488,2,40.0,0.0,2,111,600.0,600.0,0.0,62,54,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,127058,2,1,0,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1111.85718138894,600.0,66943.0759293787,1,1,1,2,81.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01792567764985784,37190.59773854372,9,5,9,9_0,9_2,9_0_1 -12489,1,25.0,331.0,1,111,0.0,0.0,850.0,68,85,0.0,0.0,434.2763346118963,850.0,0.0,971.7589084547367,42,2,2,2,1,2,2,2,2,0,,2,,1,112621,1,2,0,1,1,564.0,0.0,296.0,42,1.0,0.0,4.0,5.0,2.4,2,2,261.047596682078,0.0,10615.89067695287,4,6,2,3,67.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.08006864669823255,4423.287782063696,1,1,1_1,1_0_1,1_2_1,1_1_0 -12490,2,61.0,0.0,8,111,220.0,480.0,0.0,0,78,0.0,0.0,304.0783300667047,700.0,0.0,870.5533924067755,31,0,0,0,0,0,0,0,0,0,,2,2000.0,6,117888,2,1,0,0,1,,150.0,300.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1035.15087071125,220.0,15455.040053854624,0,5,2,3,56.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045292668123847,15455.040053854624,3,2,3_0,3_0_0,3_2_0,3_0_0 -12491,2,62.0,0.0,5,111,2300.0,0.0,0.0,78,75,0.0,0.0,3179.0007234246405,2351.0,87.73667721369978,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,107443,2,1,2,0,1,,530.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,744.508063055246,2300.0,32944.51443182359,5,5,0,1,100.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07136241163503056,21963.009621215726,6,3,6,6_1,6_2,6_0_0 -12492,2,62.0,0.0,6,111,0.0,0.0,0.0,56,64,0.0,0.0,0.0,1777.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,122239,2,1,2,0,1,,299.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,701.754331197393,0.0,30033.166359758292,1,5,0,1,98.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05916792051540121,20022.110906505528,5,3,5,5_1,5_2,5_0_0 -12493,2,57.0,0.0,9,111,637.0,717.0,0.0,56,64,0.0,0.0,880.4449829658678,1354.0,0.0,1300.3891299076208,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123439,2,1,1,0,1,,260.0,649.0,43,2.0,3.0,4.0,2.0,1.5,2,2,198.141828074288,637.0,31689.820873983197,1,1,2,3,97.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042726653627493706,21126.54724932213,5,3,5,5_1,5_2,5_0_0 -12494,1,60.0,95.0,5,111,300.0,120.0,0.0,77,68,0.0,0.0,414.65226827277917,420.0,0.0,217.63834810169388,70,0,0,0,0,0,0,0,0,0,,2,,3,108365,2,3,0,1,1,910.0,0.0,338.0,42,1.0,3.0,3.0,2.0,1.5,1,1,269.578807151329,300.0,12946.051201022605,6,1,2,3,78.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032442324959044214,8630.700800681736,1,1,1_1,1_0_1,1_2_1,1_0_0 -12495,2,27.0,0.0,7,111,0.0,0.0,1536.0,0,62,0.0,0.0,784.7628823104385,1536.0,0.0,1756.025509866442,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,121078,2,1,0,0,1,,180.0,413.0,12,1.0,0.0,3.0,1.0,1.0,1,1,358.799513702639,0.0,21163.322322882297,0,1,2,3,59.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07257839655634973,21163.322322882297,5,3,5,5_0,5_2,5_0_0 -12496,2,60.0,0.0,7,111,0.0,0.0,1200.0,75,52,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,31,0,0,0,0,0,0,0,0,1,20.0,1,,5,103696,2,2,2,0,1,,120.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,216.345580459698,0.0,40479.88608512949,5,1,0,1,72.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029644352196950146,26986.59072341966,7,4,7,7_1,7_2,7_0_0 -12497,1,33.0,188.0,2,111,520.0,885.0,0.0,0,55,0.0,0.0,718.7305983394839,1405.0,0.0,1605.0828172499923,71,0,0,0,0,0,0,0,0,0,,2,,2,123255,1,2,0,0,1,,354.0,270.0,22,4.0,6.0,6.0,5.0,2.8,1,1,884.313176709316,520.0,31785.8604214581,0,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04420204397083139,11352.093007663607,2,1,2_1,2_0_1,2_2_1,2_0_1 -12498,2,54.0,0.0,2,111,550.0,2000.0,0.0,56,47,0.0,41.40690019277831,760.1958251667618,2590.0,0.0,3627.3058016948976,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,127145,2,1,2,0,1,,600.0,,43,3.0,2.0,4.0,3.0,2.0,1,1,238.864751562156,550.0,73426.24488438733,1,1,0,1,137.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03527349116215956,36713.122442193664,9,5,9,9_1,9_2,9_0_1 -12499,1,36.0,181.0,6,111,300.0,180.0,0.0,0,45,0.0,0.0,414.65226827277917,480.0,0.0,326.4575221525408,30,2,2,2,2,2,2,2,1,0,,2,,4,133528,1,3,0,1,1,840.0,0.0,454.0,22,1.0,1.0,4.0,3.0,2.0,2,2,309.342651904959,300.0,31187.04256140293,0,1,2,3,78.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.01539100730872275,15593.521280701465,3,2,3_1,3_0_1,3_2_1,3_0_0 -12500,1,41.0,350.0,1,111,360.0,0.0,0.0,0,85,0.0,0.0,497.582721927335,419.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,1,124760,1,3,0,1,2,840.0,110.0,486.0,31,0.0,0.0,3.0,2.0,1.5,5,5,311.748751041786,360.0,5114.523676677758,0,7,2,3,56.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08192356248356834,3409.6824511185055,1,1,1_1,1_0_1,1_2_1,1_1_0 -12501,1,25.0,160.0,1,111,1000.0,0.0,0.0,42,31,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,12.0,1,,1,107109,1,3,3,0,1,,180.0,580.0,43,2.0,0.0,3.0,2.0,1.5,2,2,234.703473502148,1000.0,17235.651162497692,1,1,2,3,55.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05801927589343748,11490.434108331794,2,1,2_1,2_1_1,2_2_1,2_1_0 -12502,2,41.0,0.0,2,111,0.0,0.0,0.0,21,46,0.0,0.0,0.0,566.0,0.0,0.0,31,2,1,2,2,1,2,2,2,3,120.0,2,,2,108376,1,3,0,1,2,,311.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,303.326626870007,0.0,29402.11805204304,1,1,1,2,77.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019250313837872332,12783.5295878448,2,1,2_0,2_0_0,2_2_0,2_0_1 -12503,1,72.0,91.0,2,111,188.0,593.0,0.0,77,78,0.0,0.0,259.84875478427494,781.0,0.0,1075.496170202537,12,0,0,0,0,0,0,0,0,0,,2,,2,123292,1,2,0,0,1,,184.0,207.0,41,0.0,6.0,3.0,2.0,1.5,2,2,275.363434049772,188.0,14238.13185114944,5,5,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05485270175644217,9492.087900766293,1,1,1_1,1_0_1,1_2_1,1_0_1 -12504,2,50.0,0.0,6,111,775.0,0.0,0.0,67,37,0.0,442.01865955790845,1071.185026371346,1202.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,105594,2,2,2,0,1,,377.0,,43,2.0,1.0,4.0,3.0,2.0,4,3,887.318979529124,775.0,70297.34146209506,1,1,0,1,78.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017098797408265132,35148.67073104753,9,5,9,9_1,9_2,9_0_0 -12505,2,59.0,0.0,6,112,1800.0,0.0,0.0,0,48,0.0,51.75862524097289,2487.913609636675,1916.0,113.54158227655265,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,126259,2,2,1,0,1,,500.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,921.338661469342,1800.0,25104.471842085804,0,1,1,2,110.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07632106391451608,25104.471842085804,7,4,7,7_1,7_0,7_0_0 -12506,2,35.0,0.0,7,112,1650.0,0.0,0.0,62,46,0.0,569.3448776507017,2280.5874755002856,2268.0,116.98223628493304,0.0,70,2,2,1,2,1,2,2,2,3,130.0,1,,5,119137,2,3,3,0,1,,1500.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,921.42289851245,1650.0,54082.19612595753,1,1,1,2,75.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.041936166843480685,25753.426726646445,7,4,7,7_1,7_0,7_0_0 -12507,2,79.0,0.0,2,112,0.0,0.0,0.0,0,75,2240.377315527001,0.0,0.0,1651.0,129.02452531426437,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,109119,2,1,3,0,1,,145.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,1053.07857154878,0.0,20250.40272987393,0,5,0,1,72.0,10,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08152924275251085,20250.40272987393,5,3,5,5_1,5_0,5_0_1 -12508,2,55.0,0.0,2,112,0.0,0.0,0.0,47,46,0.0,0.0,0.0,1261.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,101561,2,1,2,0,1,,198.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,954.298399314872,0.0,44907.69837472082,1,1,0,1,110.0,10,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028079818063217302,29938.465583147216,8,4,8,8_1,8_0,8_0_1 -12509,2,77.0,0.0,2,112,400.0,0.0,0.0,78,78,3733.962192545002,155.27587572291867,552.8696910303722,3350.0,516.0981012570575,0.0,71,1,2,1,1,1,2,2,2,0,,1,,2,116614,2,1,2,0,2,,275.0,,41,0.0,5.0,6.0,2.0,1.5,3,3,1055.3699719532,400.0,29478.055827186658,5,5,0,1,100.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.11364385832088707,19652.03721812444,5,3,5,5_1,5_0,5_0_1 -12510,2,34.0,0.0,7,112,0.0,0.0,0.0,67,62,0.0,0.0,0.0,5475.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,7.0,1,,5,109131,2,2,5,0,2,,291.0,850.0,43,2.0,0.0,4.0,3.0,2.0,2,2,1235.28553332433,0.0,41481.945390228146,1,1,2,3,98.0,10,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1319851310852393,20740.972695114073,5,3,5,5_1,5_0,5_0_0 -12511,2,53.0,0.0,2,112,610.0,0.0,0.0,85,64,2285.184861837541,0.0,843.1262788213177,2215.0,129.02452531426437,0.0,71,2,2,1,1,1,2,2,2,2,10.0,1,,2,105361,2,2,3,0,1,,780.0,,42,4.0,0.0,7.0,6.0,3.5,2,2,1140.35945902695,610.0,68414.67149358522,6,1,1,2,170.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.032376096408029756,19547.048998167207,5,3,5,5_1,5_0,5_0_1 -12512,2,40.0,0.0,9,112,1900.0,0.0,0.0,54,64,0.0,621.1035028916747,2626.131032394268,2500.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,45.0,1,2010.0,6,128374,2,1,1,0,1,,323.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,1005.55562605205,1900.0,57231.145856045376,1,1,1,2,113.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.0436825082322884,22011.97917540207,6,3,6,6_1,6_0,6_0_0 -12513,2,58.0,0.0,2,112,950.0,0.0,0.0,85,72,4331.396143352202,0.0,1313.065516197134,4350.0,860.1635020950959,0.0,70,2,2,1,2,1,2,2,2,0,,1,,2,119604,2,1,2,0,1,,680.0,,41,0.0,2.0,5.0,5.0,2.8,2,2,927.371468383703,950.0,11061.188743169421,6,7,0,1,100.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.3932669535800337,3950.4245511319364,1,1,1_0,1_1_0,1_0_0,1_0_1 -12514,2,33.0,0.0,1,112,1744.0,0.0,0.0,67,67,0.0,0.0,2410.511852892423,1744.0,0.0,0.0,71,2,2,1,2,1,1,2,2,2,25.0,1,,1,126928,1,3,1,0,2,,300.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,1086.50144037881,1744.0,36462.58093786141,1,1,1,2,70.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04782985611940307,20256.989409923004,5,3,5,5_1,5_0,5_1_0 -12515,2,44.0,0.0,8,112,960.0,0.0,0.0,43,34,2240.377315527001,51.75862524097289,1326.8872584728933,2540.0,51.60981012570575,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,101671,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,1101.91867684294,960.0,86010.70356863223,1,1,0,1,140.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02953120826378553,34404.281427452894,9,5,9,9_1,9_0,9_0_0 -12516,1,35.0,105.0,6,112,1360.0,0.0,0.0,67,67,0.0,714.2690283254259,1879.7569495032656,2050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,4,114341,2,1,4,0,1,,400.0,512.0,43,2.0,0.0,5.0,4.0,2.1,5,4,1019.43146429989,1360.0,47611.726599125905,1,1,2,3,96.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04305661958576473,22672.250761488525,6,3,6,6_1,6_0,6_0_0 -12517,2,49.0,0.0,5,112,800.0,0.0,0.0,56,48,448.0754631054002,517.5862524097289,1105.7393820607444,1600.0,0.0,0.0,31,2,2,1,1,1,2,2,2,2,45.0,1,,3,109367,2,1,1,0,1,,400.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,967.392971987198,800.0,65281.621048354034,1,1,1,2,103.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.024509195303451206,26112.648419341614,7,4,7,7_1,7_0,7_0_0 -12518,2,43.0,0.0,2,112,1500.0,0.0,0.0,21,21,0.0,517.5862524097289,2073.261341363896,2030.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,115035,2,2,1,0,1,,380.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1027.89720793902,1500.0,51439.88124397898,1,1,1,2,180.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03946354367288923,18371.386158563924,4,2,4_0,4_1_0,4_0_0,4_0_1 -12519,2,59.0,0.0,5,112,450.0,0.0,0.0,55,47,1493.5848770180007,207.03450096389156,621.9784024091688,1740.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,4,90.0,1,,3,119111,2,1,2,0,1,,260.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,954.298399314872,450.0,55462.56781144826,1,1,0,1,98.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03137251066188175,36975.045207632174,9,5,9,9_1,9_0,9_0_0 -12520,2,56.0,0.0,9,112,927.0,0.0,0.0,0,52,0.0,0.0,1281.2755089628877,927.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,132133,2,1,0,0,1,,200.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1391.64290654928,927.0,22588.490988218728,0,1,0,1,54.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04103859795165099,22588.490988218728,6,3,6,6_0,6_0,6_0_0 -12521,2,62.0,0.0,1,112,600.0,0.0,0.0,68,78,2987.1697540360015,0.0,829.3045365455583,2715.0,197.83760548187203,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124560,2,1,4,0,2,,338.0,,42,2.0,0.0,6.0,3.0,2.0,2,2,1096.05716673893,600.0,38153.30416486949,1,5,0,1,130.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0711602850507479,19076.652082434746,5,3,5,5_1,5_0,5_1_0 -12522,2,54.0,0.0,2,112,550.0,0.0,0.0,56,63,0.0,310.55175144583734,760.1958251667618,3850.0,5160.981012570575,0.0,70,2,2,1,2,2,2,2,1,3,90.0,1,,2,124906,2,1,2,0,1,,583.0,,43,2.0,3.0,4.0,3.0,1.8,1,1,1216.52387231095,550.0,37787.48088842622,1,1,1,2,80.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.1018855956915403,20993.044938014566,5,3,5,5_1,5_0,5_0_1 -12523,2,28.0,0.0,7,112,1061.0,0.0,0.0,67,68,0.0,0.0,1466.4868554580623,1091.0,51.60981012570575,0.0,70,2,2,1,1,1,2,2,2,1,1.0,1,,5,127513,2,2,4,0,1,,838.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1146.4269294176,1061.0,38822.28869717791,4,1,2,3,60.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.02810241324281604,21567.938165098836,6,3,6,6_1,6_0,6_0_0 -12524,2,39.0,0.0,1,112,640.0,0.0,0.0,64,54,0.0,0.0,884.5915056485956,790.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,1,106966,1,1,1,0,2,,80.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,928.108251038694,640.0,60361.698756164755,1,1,1,2,110.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013087769500842901,28743.666074364166,8,4,8,8_1,8_0,8_1_0 -12525,0,47.0,0.0,1,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,60.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,1,1.0,8,,1,104942,2,1,0,1,1,,0.0,,22,2.0,1.0,6.0,2.0,1.5,2,2,1485.70334875235,0.0,37558.83514766051,0,1,5,0,170.0,10,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0015974936326995572,25039.223431773673,7,4,7,7_0,7_0,7_1_0 -12526,2,28.0,0.0,1,112,810.0,0.0,0.0,67,65,0.0,108.69311300604306,1119.5611243365038,940.0,43.00817510475479,0.0,10,2,2,1,1,1,2,2,2,2,30.0,1,,1,127594,2,3,4,0,2,,200.0,450.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1230.60910198453,810.0,32211.543254782497,1,1,2,3,40.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.02918208520979313,17895.301808212498,4,2,4_0,4_1_0,4_0_0,4_1_0 -12527,0,72.0,0.0,1,112,397.0,0.0,0.0,0,77,4182.037655650402,0.0,548.7231683476444,3281.0,144.50746835197612,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,102184,2,2,1,0,1,,58.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1097.49969846361,397.0,31723.760897728072,0,5,0,1,170.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10342405525553472,31723.760897728072,8,4,8,8_1,8_0,8_1_0 -12528,2,26.0,0.0,9,112,1800.0,0.0,0.0,55,64,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,43,2,2,1,2,1,2,1,2,2,10.0,2,2006.0,6,102756,1,3,0,0,2,,0.0,325.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1463.52940302992,1800.0,34512.81855984332,1,1,3,4,29.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.05215453489777717,23008.545706562214,6,3,6,6_0,6_0,6_0_0 -12529,2,86.0,0.0,2,112,0.0,0.0,0.0,0,78,0.0,417.1745194422415,0.0,2508.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132276,2,3,1,0,1,,138.0,,11,0.0,7.0,4.0,1.0,1.0,2,2,1053.07857154878,0.0,20638.451684038242,0,5,0,1,60.0,10,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12152074382303032,20638.451684038242,5,3,5,5_1,5_0,5_0_1 -12530,2,32.0,0.0,1,112,0.0,0.0,0.0,56,53,0.0,0.0,0.0,968.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,100729,2,1,1,0,1,,265.0,,43,2.0,1.0,4.0,2.0,1.5,4,4,986.918251146334,0.0,48174.493884908254,1,1,1,2,120.0,10,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02009362054353098,32116.329256605502,8,4,8,8_1,8_0,8_1_0 -12531,2,59.0,0.0,6,112,944.0,0.0,0.0,56,78,0.0,608.6814328338412,1304.7724708316784,1612.0,137.62616033521533,0.0,10,2,2,1,2,1,2,2,2,0,,1,,4,115814,2,1,1,0,1,,226.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,977.040888953002,944.0,40317.27512818149,1,5,0,1,75.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03998286081772484,26878.183418787663,7,4,7,7_1,7_0,7_0_0 -12532,1,43.0,64.0,2,112,940.0,0.0,0.0,0,85,0.0,0.0,1299.2437739213747,1036.0,165.1513924022584,0.0,31,2,2,1,2,1,1,2,2,0,,1,,2,114707,1,3,4,0,1,,250.0,450.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1192.29886307475,940.0,12525.247101052802,0,7,2,3,40.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,1,0.08271293904556339,12525.247101052802,2,1,2_1,2_1_1,2_0_1,2_0_1 -12533,2,62.0,0.0,6,112,350.0,0.0,0.0,72,78,0.0,1863.310508675024,483.76097965157567,2150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,118532,2,2,2,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1016.82002295868,350.0,37102.54998559974,6,5,0,1,120.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057947499587884366,24735.03332373316,7,4,7,7_1,7_0,7_0_0 -12534,2,48.0,0.0,2,112,400.0,0.0,0.0,0,43,1941.6603401234008,0.0,552.8696910303722,1900.0,344.06540083803833,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,2,122755,1,3,1,0,2,,300.0,,32,1.0,0.0,3.0,2.0,1.3,4,3,992.131625534859,400.0,34658.650786560334,0,1,1,2,65.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05482036827402316,26660.50060504641,7,4,7,7_1,7_0,7_0_1 -12535,2,83.0,0.0,2,112,0.0,0.0,0.0,77,78,3374.0082371836634,0.0,0.0,2770.0,165.1513924022584,0.0,20,2,2,1,2,2,2,2,1,0,,1,,2,127853,2,3,4,0,2,,260.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,884.543922553052,0.0,21284.85585380113,5,5,0,1,80.0,10,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.13013947658495995,14189.903902534088,3,2,3_0,3_1_0,3_0_0,3_0_1 -12536,2,40.0,0.0,8,112,640.0,0.0,0.0,21,21,3733.962192545002,0.0,884.5915056485956,3215.0,129.02452531426437,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,117435,2,1,2,0,1,,365.0,,43,2.0,0.0,4.0,5.0,2.8,3,3,992.152582913218,640.0,41024.31021462704,1,1,0,1,153.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07836816714723714,14651.5393623668,3,2,3_0,3_1_0,3_0_0,3_0_0 -12537,2,38.0,0.0,1,112,1280.0,0.0,0.0,0,65,0.0,0.0,1769.1830112971911,1280.0,0.0,0.0,71,2,2,1,2,1,1,2,2,2,30.0,2,,1,100142,1,3,0,0,2,,135.0,519.0,12,1.0,2.0,1.0,1.0,1.0,2,2,1458.2519389473,1280.0,25204.208969833933,0,1,2,3,43.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.05078516852213012,25204.208969833933,7,4,7,7_0,7_0,7_1_0 -12538,2,73.0,0.0,6,112,660.0,0.0,0.0,78,78,4839.215001538322,0.0,912.2349902001142,4020.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124859,2,1,2,0,2,,216.0,,41,0.0,3.0,4.0,3.0,2.0,2,2,1084.99598981448,660.0,66411.84042988687,5,5,0,1,70.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060531374736468024,33205.920214943435,8,4,8,8_1,8_0,8_0_0 -12539,0,44.0,0.0,5,112,0.0,0.0,0.0,67,52,0.0,207.03450096389156,0.0,380.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,3,107764,2,1,2,0,2,,0.0,,43,3.0,0.0,3.0,5.0,3.0,2,2,969.867090732704,0.0,57380.0,1,1,5,0,50.0,10,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006622516556291391,19126.666666666668,5,3,5,5_1,5_0,5_0_0 -12540,2,67.0,0.0,5,112,1200.0,0.0,0.0,77,77,0.0,621.1035028916747,1658.6090730911167,1800.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,1,,3,102163,2,1,2,0,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,4,3,991.043600369808,1200.0,36378.39951057673,5,5,1,2,112.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04947991182175742,24252.26634038449,7,4,7,7_1,7_0,7_0_0 -12541,2,64.0,0.0,1,112,870.0,0.0,0.0,0,74,0.0,0.0,1202.4915779910596,870.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,2,,1,105186,1,2,0,0,2,,65.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1443.15493972828,870.0,25903.193251991088,0,5,1,2,71.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03358659264656979,25903.193251991088,7,4,7,7_0,7_1,7_1_0 -12542,2,87.0,0.0,1,112,400.0,829.0,0.0,77,71,0.0,0.0,552.8696910303722,1229.0,0.0,1503.5182548025352,60,0,0,0,0,0,0,0,0,0,,1,,1,132950,2,1,4,0,1,,412.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1175.65023569523,400.0,21460.555674817104,5,5,0,1,100.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05726785543778675,14307.037116544736,3,2,3_0,3_1_0,3_1_0,3_1_0 -12543,2,74.0,0.0,2,112,397.0,1686.0,0.0,77,75,0.0,0.0,548.7231683476444,2083.0,0.0,3057.8187908287987,50,2,2,1,2,1,2,2,2,0,,1,,2,116040,2,2,2,0,1,,595.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1214.8378655301,397.0,47901.43302486495,5,5,0,1,110.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04348512911750979,31934.2886832433,8,4,8,8_1,8_1,8_0_1 -12544,2,77.0,0.0,2,112,420.0,0.0,0.0,77,75,3285.8867294396014,0.0,580.5131755818909,2620.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,120798,2,1,2,0,1,,420.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1069.80791537233,420.0,24167.847420797163,5,5,0,1,80.0,10,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1084084963953145,16111.898280531443,4,2,4_0,4_1_0,4_1_0,4_0_1 -12545,2,43.0,0.0,5,112,2640.0,0.0,0.0,42,42,0.0,0.0,3648.939960800457,2640.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,40.0,1,,3,114402,2,1,1,0,1,,1350.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,1223.62017238941,2640.0,60772.720597326435,1,1,1,2,81.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.0434405432906708,33762.62255407024,9,5,9,9_1,9_1,9_0_0 -12546,2,25.0,0.0,8,112,900.0,2039.0,0.0,0,37,0.0,0.0,1243.9568048183376,2939.0,0.0,3698.0382648279483,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125549,1,3,3,0,1,,928.0,,22,1.0,0.0,4.0,4.0,2.5,2,2,1110.58367448067,900.0,18302.791459798704,0,1,1,2,88.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16057659873661279,7321.116583919482,1,1,1_0,1_1_0,1_1_0,1_0_0 -12547,2,57.0,0.0,2,112,500.0,1600.0,0.0,0,37,0.0,0.0,691.0871137879653,2100.0,0.0,2901.844641355918,71,2,2,1,1,1,2,2,2,4,120.0,1,,2,109700,2,1,2,0,1,,750.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1163.64091603747,500.0,32461.95099697206,0,7,1,2,65.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06469112100489219,32461.95099697206,8,4,8,8_1,8_1,8_0_1 -12548,2,49.0,0.0,5,112,1200.0,0.0,0.0,54,22,0.0,0.0,1658.6090730911167,1264.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,126879,2,1,2,0,1,,960.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1310.13175609401,1200.0,70888.33692693913,4,1,1,2,150.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017830859839507,39382.40940385507,9,5,9,9_1,9_1,9_0_0 -12549,2,49.0,0.0,5,112,2900.0,0.0,0.0,64,54,0.0,0.0,4008.3052599701987,2900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,3,129524,2,3,3,0,1,,800.0,1056.0,43,3.0,2.0,5.0,4.0,2.5,2,2,1179.66074049928,2900.0,80041.60489286258,1,1,2,3,140.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03623115758213135,32016.64195714503,8,4,8,8_1,8_1,8_0_0 -12550,2,64.0,0.0,2,112,1960.0,0.0,0.0,75,75,0.0,0.0,2709.061486048824,4038.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117555,2,1,2,0,1,,552.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1107.08544304775,1960.0,48026.40034222203,5,5,0,1,80.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08407875608470336,32017.600228148018,8,4,8,8_1,8_1,8_0_1 -12551,2,55.0,0.0,1,112,200.0,700.0,0.0,0,62,0.0,0.0,276.4348455151861,900.0,0.0,1269.5570305932142,70,0,0,0,0,0,0,0,0,0,,1,,1,123709,1,1,2,0,2,,226.0,,22,1.0,0.0,4.0,2.0,1.5,1,1,1175.65023569523,200.0,42201.33340919379,0,1,0,1,66.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02132634036165147,28134.222272795858,8,4,8,8_1,8_1,8_1_0 -12552,2,32.0,0.0,7,112,220.0,0.0,0.0,0,46,0.0,0.0,304.0783300667047,220.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,50.0,2,,5,103189,2,1,0,0,1,,0.0,485.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1570.98411180028,220.0,22912.10029916137,0,1,2,3,25.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009601913274098772,22912.10029916137,6,3,6,6_0,6_1,6_0_0 -12553,2,60.0,0.0,6,112,863.0,0.0,0.0,0,90,0.0,77.63793786145933,1192.8163583980281,1002.0,110.10092826817227,0.0,20,2,2,1,1,2,2,2,2,0,,1,,4,116041,2,1,4,0,1,,124.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1144.19728474719,863.0,3226.1492120991848,0,4,0,1,87.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.3105869983453185,3226.1492120991848,1,1,1_0,1_1_0,1_1_0,1_0_0 -12554,2,55.0,0.0,6,112,1750.0,0.0,0.0,56,45,0.0,0.0,2418.8048982578784,1840.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,4,133344,2,1,2,0,1,,950.0,,42,1.0,2.0,6.0,3.0,2.0,2,2,1216.91136948936,1750.0,70308.91331858729,6,1,0,1,120.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026170223847188468,35154.456659293646,9,5,9,9_1,9_1,9_0_0 -12555,2,44.0,0.0,5,112,900.0,1500.0,0.0,21,47,0.0,672.8621281326475,1243.9568048183376,3050.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,116990,2,2,2,0,1,,1200.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1310.22160701482,900.0,57152.40744271901,1,1,0,1,150.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053366080913684374,28576.203721359507,8,4,8,8_1,8_1,8_0_0 -12556,2,86.0,0.0,6,112,252.0,154.0,0.0,0,77,0.0,0.0,348.3079053491345,406.0,0.0,279.3025467305071,42,0,0,0,0,0,0,0,0,0,,1,,4,116551,2,1,2,0,1,,101.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1252.49903007383,252.0,15029.153145039832,0,5,0,1,80.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027014163478265893,15029.153145039832,3,2,3_0,3_1_0,3_1_0,3_0_0 -12557,2,65.0,0.0,2,112,369.0,1050.0,0.0,77,75,0.0,0.0,510.0222899755184,1419.0,0.0,1904.3355458898213,44,0,0,0,0,0,0,0,0,0,,1,,2,121522,2,2,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1114.48199103196,369.0,30562.16959573463,5,5,0,1,125.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04642994979643202,20374.779730489754,5,3,5,5_1,5_1,5_0_1 -12558,2,36.0,0.0,2,112,558.0,1249.0,0.0,47,37,0.0,0.0,771.2532189873692,1807.0,0.0,2265.2524731584635,71,0,0,0,0,0,0,0,0,3,120.0,1,,2,117981,2,3,3,0,1,,519.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1280.30097854449,558.0,78178.86606191238,1,1,1,2,100.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023113663462053517,43432.703367729104,10,5,10,10_1,10_1,10_0_1 -12559,2,70.0,0.0,1,112,1500.0,1500.0,0.0,0,77,0.0,0.0,2073.261341363896,3000.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,1,109657,2,1,2,0,1,,450.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1246.69596273125,1500.0,22997.26043312723,0,5,0,1,90.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1304503207555341,22997.26043312723,6,3,6,6_1,6_1,6_1_0 -12560,2,67.0,0.0,5,112,2282.0,0.0,0.0,75,74,0.0,0.0,3154.1215873282736,2282.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,3,122474,2,2,2,0,1,,568.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1144.97574584045,2282.0,53461.704211049306,5,5,0,1,100.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.042684759748612036,35641.136140699535,9,5,9,9_1,9_1,9_0_0 -12561,2,37.0,0.0,9,112,760.0,0.0,0.0,62,64,0.0,517.5862524097289,1050.452412957707,1260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,112688,2,1,1,0,1,,348.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1024.43618195016,760.0,47758.79824551991,1,1,1,2,86.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02638257339564017,22742.284878819002,6,3,6,6_1,6_1,6_0_0 -12562,2,44.0,0.0,8,112,616.0,898.0,0.0,42,46,0.0,103.51725048194578,851.4193241867732,1614.0,0.0,1628.6603049610092,50,1,2,2,1,1,2,2,2,2,10.0,1,2001.0,6,107561,2,1,2,0,1,,1200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1044.1751159484,616.0,74472.70553689143,1,1,1,2,116.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.021672369606613465,35463.19311280544,9,5,9,9_1,9_1,9_0_0 -12563,2,30.0,0.0,1,112,360.0,1400.0,0.0,52,54,0.0,0.0,497.582721927335,1760.0,0.0,2539.1140611864284,50,2,2,2,2,1,1,2,2,3,60.0,1,,1,107928,2,1,3,0,1,,590.0,,43,2.0,0.0,5.0,3.0,1.8,4,4,1220.5650290938,360.0,54072.16966209261,1,1,1,2,110.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03254909153819014,30040.094256718116,8,4,8,8_1,8_1,8_1_0 -12564,2,74.0,0.0,2,112,1133.0,0.0,0.0,77,78,2016.339583974301,517.5862524097289,1566.0033998435292,3099.0,199.55793248606224,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,130765,2,1,1,0,1,,525.0,,41,1.0,5.0,4.0,3.0,2.0,2,2,1182.77466974788,1133.0,45752.063261535266,5,5,0,1,77.0,10,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0677346501792717,22876.031630767633,6,3,6,6_1,6_1,6_0_1 -12565,2,54.0,0.0,6,112,145.0,0.0,0.0,0,48,0.0,0.0,200.41526299850995,145.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,1,,4,111873,2,2,2,0,1,,996.0,,32,2.0,1.0,4.0,3.0,2.0,3,3,1188.33632128909,145.0,38011.42631713142,0,1,1,2,88.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003814642439098628,19005.71315856571,5,3,5,5_1,5_1,5_0_0 -12566,2,44.0,0.0,6,112,1150.0,0.0,0.0,43,37,0.0,517.5862524097289,1589.5003617123202,1650.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,4,113249,1,1,2,0,1,,880.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1051.63658783394,1150.0,77075.0877028256,1,1,1,2,85.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02140769539389717,36702.42271563124,9,5,9,9_1,9_1,9_0_0 -12567,2,42.0,0.0,6,112,1000.0,0.0,0.0,54,53,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,4,114555,2,1,1,0,1,,692.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1090.0687525642,1000.0,58970.93251931442,1,1,1,2,110.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016957506983164554,28081.39643776877,8,4,8,8_1,8_1,8_0_0 -12568,2,43.0,0.0,8,112,728.0,0.0,0.0,52,38,0.0,0.0,1006.2228376752774,3428.0,4644.882911313518,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,112516,1,1,2,0,1,,821.0,,43,3.0,0.0,5.0,5.0,2.8,2,2,1143.66104785812,728.0,111532.12363724367,1,1,1,2,142.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030735539575571173,39832.9012990156,9,5,9,9_1,9_1,9_0_0 -12569,2,59.0,0.0,6,112,750.0,0.0,0.0,77,77,0.0,0.0,1036.630670681948,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104294,2,1,2,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1214.94714661644,750.0,44601.556933266416,5,5,0,1,149.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016815556486563066,29734.37128884428,8,4,8,8_1,8_1,8_0_0 -12570,2,35.0,0.0,5,112,1560.0,0.0,0.0,37,37,0.0,82.81380038555662,2156.1917950184516,1690.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,3,128124,2,1,2,0,1,,1536.0,,43,2.0,2.0,6.0,3.0,1.8,4,3,1310.22160701482,1560.0,101344.81169037646,1,1,1,2,168.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016675742663208083,56302.67316132026,10,5,10,10_1,10_1,10_0_0 -12571,2,48.0,0.0,9,112,780.0,0.0,0.0,54,46,0.0,0.0,1078.0958975092258,810.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,2004.0,6,111595,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1248.3597233888,780.0,72897.41051231656,1,1,1,2,122.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011111505803942712,40498.56139573143,9,5,9,9_1,9_1,9_0_0 -12572,2,40.0,0.0,8,112,534.0,664.0,0.0,84,64,0.0,0.0,738.0810375255469,1198.0,0.0,1204.265526162706,71,0,0,0,0,0,0,0,0,2,50.0,1,2001.0,6,115970,2,1,2,0,1,,688.0,,42,1.0,0.0,5.0,4.0,2.1,1,1,1075.15204381131,534.0,48739.44271446685,3,1,1,2,100.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024579681942986382,23209.258435460404,6,3,6,6_1,6_1,6_0_0 -12573,2,82.0,0.0,6,112,523.0,1116.0,0.0,0,77,0.0,0.0,722.8771210222117,1639.0,0.0,2024.036637345753,41,2,2,1,1,2,2,2,2,0,,2,,4,128214,2,2,0,0,1,,713.0,418.0,11,0.0,1.0,3.0,1.0,1.0,3,2,1362.35258616624,523.0,20949.295432725023,0,5,2,3,66.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.07823652137912515,20949.295432725023,5,3,5,5_0,5_1,5_0_0 -12574,2,37.0,0.0,9,112,570.0,0.0,0.0,0,47,0.0,0.0,787.8393097182804,570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,8,2007.0,6,107484,2,1,0,0,1,,187.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1353.73196246509,570.0,30299.53990133019,0,1,1,2,55.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018812166846631763,30299.53990133019,8,4,8,8_0,8_1,8_0_0 -12575,1,30.0,157.0,7,112,800.0,1500.0,0.0,46,47,0.0,0.0,1105.7393820607444,2300.0,0.0,2720.4793512711735,71,2,2,1,2,1,1,2,2,0,,2,,5,110771,1,3,0,0,1,,1280.0,480.0,43,2.0,0.0,4.0,4.0,2.1,4,4,1273.60839134899,800.0,33180.54241168397,4,1,2,3,80.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.0693177336121574,15800.258291278082,3,2,3_1,3_0_1,3_1_1,3_0_0 -12576,2,37.0,0.0,9,112,700.0,0.0,0.0,52,53,0.0,854.0173164760527,967.5219593031513,1525.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,2005.0,6,120030,2,1,1,0,1,,1330.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,1173.69887743868,700.0,72255.67023665679,1,1,1,2,90.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02110561005115881,26761.359346909925,7,4,7,7_1,7_1,7_0_0 -12577,2,23.0,0.0,9,112,0.0,0.0,0.0,56,55,0.0,0.0,0.0,791.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,112304,2,1,0,0,1,,276.0,630.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1400.9491702375,0.0,32195.74928712589,1,1,2,3,60.0,10,1,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02456846066683396,21463.832858083926,6,3,6,6_0,6_1,6_0_0 -12578,2,59.0,0.0,5,112,1445.0,0.0,0.0,75,37,0.0,51.75862524097289,1997.2417588472197,1495.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,100953,2,1,2,0,1,,700.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1114.48199103196,1445.0,102723.34993000833,5,1,0,1,120.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014553653098527594,68482.23328667223,10,5,10,10_1,10_1,10_0_0 -12579,2,66.0,0.0,1,112,922.0,284.0,0.0,75,75,0.0,0.0,1274.364637825008,1206.0,0.0,515.0774238406755,50,0,0,0,0,0,0,0,0,0,,2,,1,110709,1,1,0,0,2,,0.0,630.0,41,0.0,1.0,2.0,2.0,1.5,4,4,1121.95368643037,922.0,43758.48266404666,5,5,2,3,28.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02756037062022919,29172.32177603111,8,4,8,8_0,8_2,8_1_0 -12580,2,84.0,0.0,1,112,445.0,4000.0,0.0,74,74,0.0,0.0,615.0675312712891,5383.0,0.0,7254.611603389795,42,0,0,0,0,0,0,0,0,0,,1,,1,127892,1,1,2,0,2,,327.0,,41,0.0,5.0,13.0,2.0,1.5,2,2,802.407059810266,445.0,121329.57949110167,5,5,0,1,300.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04436675724566234,80886.38632740111,10,5,10,10_1,10_2,10_1_0 -12581,2,69.0,0.0,1,112,1000.0,3500.0,0.0,77,74,0.0,0.0,1382.1742275759307,4500.0,0.0,6347.785152966071,50,0,0,0,0,0,0,0,0,0,,1,,1,111197,2,1,4,0,1,,500.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,820.050399812959,1000.0,84037.48267728095,5,5,0,1,220.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053547534464838856,56024.98845152063,10,5,10,10_1,10_2,10_1_0 -12582,2,50.0,0.0,2,112,0.0,0.0,0.0,42,64,0.0,0.0,0.0,981.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,103322,2,1,0,0,1,,251.0,665.0,43,2.0,0.0,3.0,4.0,2.5,2,2,1163.27573917962,0.0,39563.65128580105,1,1,2,3,50.0,10,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02479548697144821,15825.460514320419,3,2,3_0,3_0_0,3_2_0,3_0_1 -12583,2,78.0,0.0,2,112,0.0,0.0,0.0,75,77,0.0,0.0,0.0,1035.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,101622,2,1,0,1,1,768.0,0.0,1100.0,41,0.0,1.0,3.0,2.0,1.5,1,1,1153.64017500373,0.0,52037.17718848344,5,5,2,3,75.0,10,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019889626146536252,34691.45145898896,9,5,9,9_0,9_2,9_0_1 -12584,2,78.0,0.0,5,112,430.0,0.0,0.0,86,74,0.0,0.0,594.3349178576501,430.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,111162,2,2,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1094.36398241147,430.0,91455.04656250287,5,5,1,2,155.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004701763501985932,60970.03104166858,10,5,10,10_0,10_2,10_0_0 -12585,0,85.0,0.0,5,112,218.0,0.0,0.0,74,74,0.0,0.0,301.3139816115529,218.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,113707,2,1,0,1,2,,0.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1119.17584287255,218.0,66338.47329284565,5,5,0,1,90.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0032861775253352184,44225.6488618971,10,5,10,10_0,10_2,10_0_0 -12586,2,75.0,0.0,5,112,180.0,0.0,0.0,0,77,0.0,0.0,248.7913609636675,180.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,117232,1,2,0,1,2,272.0,0.0,470.0,11,0.0,3.0,1.0,1.0,1.0,2,2,1395.2492202773,180.0,22207.090125762796,0,5,2,3,17.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.008105519407568809,22207.090125762796,6,3,6,6_0,6_2,6_0_0 -12587,1,84.0,67.0,2,112,289.0,0.0,0.0,0,77,0.0,0.0,399.44835176944395,613.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,131949,2,2,5,0,1,,180.0,210.0,11,0.0,4.0,3.0,1.0,1.0,4,4,749.880369753876,289.0,15457.989530075767,0,5,2,3,40.0,10,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.0396558684948854,15457.989530075767,3,2,3_1,3_1_1,3_2_1,3_0_1 -12588,2,32.0,0.0,7,112,237.0,500.0,0.0,0,43,0.0,0.0,327.57529193549556,737.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,131989,1,1,0,0,1,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1442.96582190141,237.0,24791.535716046776,0,1,2,3,27.0,10,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02972788811638495,24791.535716046776,7,4,7,7_0,7_2,7_0_0 -12589,0,61.0,0.0,2,112,0.0,0.0,0.0,31,33,0.0,0.0,0.0,1802.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,2.0,1,,2,110480,1,2,4,0,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,909.944082384169,0.0,106661.79480759105,1,1,5,0,160.0,10,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.016894521634955206,71107.8632050607,10,5,10,10_1,10_2,10_0_1 -12590,2,52.0,0.0,5,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,316.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,102700,2,1,0,1,2,11.0,0.0,625.0,32,1.0,2.0,2.0,2.0,1.3,1,1,1096.4974987235,0.0,29242.20013594053,0,1,2,3,42.0,10,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010806300433311645,22494.000104569637,6,3,6,6_0,6_2,6_0_0 -12591,2,62.0,0.0,2,112,498.0,407.0,0.0,54,77,0.0,0.0,688.3227653328134,905.0,0.0,738.1567306449117,50,0,0,0,0,0,0,0,0,0,,2,,2,118446,1,2,0,1,2,640.0,0.0,691.0,42,2.0,3.0,4.0,4.0,2.3,2,2,1068.6177259042,498.0,42095.9378768119,4,5,2,3,75.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021498511391962825,18302.581685570392,4,2,4_0,4_0_0,4_2_0,4_0_1 -12592,2,83.0,0.0,2,112,360.0,0.0,0.0,0,77,0.0,0.0,497.582721927335,360.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,128061,2,1,0,1,1,,0.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,1078.3141935728,360.0,32943.07585775168,0,5,0,1,80.0,10,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010927941323830272,32943.07585775168,8,4,8,8_0,8_2,8_0_1 -12593,2,65.0,0.0,2,112,270.0,270.0,0.0,77,74,0.0,0.0,373.1870414455012,540.0,0.0,489.6862832288112,71,0,0,0,0,0,0,0,0,0,,2,,2,105637,1,3,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1119.17584287255,270.0,78507.54704220242,5,5,0,1,90.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006878319605498797,52338.36469480162,10,5,10,10_0,10_2,10_0_1 -12594,2,80.0,0.0,2,112,236.0,1020.0,0.0,0,77,0.0,0.0,326.1931177079196,1256.0,0.0,1849.925958864398,70,0,0,0,0,0,0,0,0,0,,2,,2,123723,1,1,0,0,1,,204.0,329.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1020.75892022803,236.0,19865.362455342227,0,5,2,3,55.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0632256271600136,19865.362455342227,5,3,5,5_0,5_2,5_0_1 -12595,2,66.0,0.0,2,112,537.0,1430.0,0.0,56,63,0.0,0.0,742.2275602082747,1967.0,0.0,2593.523648211852,42,0,0,0,0,0,0,0,0,3,120.0,2,,2,116868,1,3,0,0,1,,550.0,407.0,42,1.0,1.0,3.0,4.0,2.1,2,2,905.433083221169,537.0,37892.573319659175,6,1,2,3,76.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.051909908134412555,18044.082533171037,4,2,4_0,4_0_0,4_2_0,4_0_1 -12596,2,61.0,0.0,5,112,1000.0,0.0,0.0,90,78,0.0,621.1035028916747,1382.1742275759307,1600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,8,,3,123347,1,3,0,0,1,,290.0,365.0,42,1.0,8.0,4.0,2.0,1.5,3,3,939.114379556587,1000.0,23245.60812854549,1,5,2,3,80.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.06883020616850234,15497.072085696993,3,2,3_0,3_0_0,3_2_0,3_0_0 -12597,2,69.0,0.0,5,112,1000.0,0.0,0.0,78,77,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,3,106063,1,1,0,0,1,,410.0,312.0,41,0.0,3.0,4.0,2.0,1.5,1,1,911.497708711057,1000.0,35657.95657564613,5,5,2,3,50.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028044231807803185,23771.971050430755,6,3,6,6_0,6_2,6_0_0 -12598,2,43.0,0.0,2,112,420.0,359.0,0.0,0,54,0.0,0.0,580.5131755818909,779.0,0.0,651.1013914042342,50,2,2,2,2,1,2,2,2,4,75.0,2,,2,101307,1,1,0,1,2,,0.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,1079.9376920221,420.0,34017.66746784739,0,1,1,2,67.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02289986521669337,17008.833733923693,4,2,4_0,4_0_0,4_2_0,4_0_1 -12599,2,64.0,0.0,2,112,375.0,276.0,0.0,77,74,0.0,0.0,518.315335340974,651.0,0.0,500.5682006338959,42,0,0,0,0,0,0,0,0,0,,2,,2,126546,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1117.62511883149,375.0,61947.16249133759,5,5,0,1,82.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010508955920152644,41298.108327558395,9,5,9,9_0,9_2,9_0_1 -12600,2,26.0,0.0,6,112,97.0,254.0,0.0,0,63,0.0,0.0,134.07090007486528,351.0,0.0,460.66783681525203,70,0,0,0,0,0,0,0,0,2,15.0,2,,4,120808,1,3,0,1,2,500.0,0.0,690.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1051.94590592605,97.0,24259.402903704064,0,1,2,3,58.0,10,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014468616618194149,16172.935269136042,4,2,4_0,4_0_0,4_2_0,4_0_0 -12601,2,63.0,0.0,1,112,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1419.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127523,1,3,4,0,2,,203.0,,11,0.0,0.0,5.0,1.0,1.0,4,3,847.082323695146,0.0,17526.10040965364,0,5,0,1,120.0,10,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08096495893737966,17526.10040965364,4,2,4_0,4_1_0,4_2_0,4_1_0 -12602,2,51.0,0.0,5,112,540.0,1653.0,0.0,38,34,0.0,0.0,746.3740828910024,2193.0,0.0,2997.968245100833,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,114815,1,2,2,0,1,,605.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,767.616785396229,540.0,130229.52892267663,1,1,1,2,110.0,10,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01683949883057695,50088.280354875635,10,5,10,10_1,10_2,10_0_0 -12603,0,37.0,0.0,6,112,768.0,0.0,0.0,0,35,0.0,0.0,1061.5098067783147,768.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,4,102402,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,1200.15105006119,768.0,13904.472586422122,0,1,5,0,79.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0552340259744883,13904.472586422122,3,2,3_0,3_0_0,3_2_0,3_0_0 -12604,2,39.0,0.0,7,112,0.0,0.0,0.0,38,38,0.0,0.0,0.0,2566.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,150.0,1,,5,133525,2,1,3,0,1,,469.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,763.252587540287,0.0,103463.09959777087,4,1,1,2,120.0,10,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024801112763639693,49268.14266560517,10,5,10,10_1,10_2,10_0_0 -12605,2,43.0,0.0,5,112,431.0,0.0,0.0,0,46,0.0,0.0,595.7170920852261,431.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,40.0,2,,3,133169,1,3,0,0,1,,0.0,473.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1137.06568863447,431.0,22421.305391542563,0,1,2,3,60.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.019222787989970267,22421.305391542563,6,3,6,6_0,6_2,6_0_0 -12606,2,58.0,0.0,6,112,840.0,0.0,0.0,0,34,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,4,127784,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1098.20774506828,840.0,59266.74983278575,0,1,0,1,63.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01417320845786149,59266.74983278575,10,5,10,10_0,10_2,10_0_0 -12607,2,72.0,0.0,6,112,657.0,0.0,0.0,0,74,0.0,0.0,908.0884675173863,657.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,118819,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1098.20774506828,657.0,27376.0,0,5,0,1,61.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023999123319696083,27376.0,7,4,7,7_0,7_2,7_0_0 -12608,0,77.0,0.0,1,112,0.0,0.0,2800.0,0,78,0.0,0.0,1430.5573375450701,2800.0,0.0,3201.088169027368,12,2,2,2,1,1,2,2,2,0,,1,,1,127047,1,3,4,0,2,,318.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,819.406407789727,0.0,27951.306051185078,0,5,0,1,60.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1001742099232349,27951.306051185078,7,4,7,7_1,7_2,7_1_0 -12609,2,40.0,0.0,1,112,492.0,636.0,0.0,85,38,0.0,0.0,680.0297199673578,1128.0,0.0,1153.4832449389776,12,0,0,0,0,0,0,0,0,4,25.0,2,,1,102134,2,2,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,1070.58631769877,492.0,54738.94930530564,6,1,1,2,55.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020606899005470445,30410.52739183647,8,4,8,8_0,8_2,8_1_0 -12610,2,51.0,0.0,5,112,297.0,0.0,0.0,38,38,0.0,0.0,410.5057455900514,297.0,0.0,0.0,30,2,2,1,1,2,2,2,2,3,90.0,2,,3,101141,2,1,0,1,2,1048.0,0.0,1000.0,43,2.0,0.0,3.0,2.0,1.5,4,2,1265.97985378425,297.0,111701.46301277404,1,1,2,3,95.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.002658872963606891,74467.64200851602,10,5,10,10_0,10_2,10_0_0 -12611,2,65.0,0.0,2,112,306.0,0.0,0.0,0,74,0.0,0.0,422.9453136382348,306.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,100107,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1089.41565125105,306.0,115067.35541428899,0,5,0,1,92.0,10,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0026593120081562344,115067.35541428899,10,5,10,10_0,10_2,10_0_1 -12612,2,40.0,0.0,2,112,600.0,840.0,0.0,54,65,0.0,0.0,829.3045365455583,1440.0,0.0,1523.468436711857,71,0,0,0,0,0,0,0,0,3,65.0,8,,2,114434,1,3,0,1,1,934.0,864.0,496.0,43,2.0,0.0,5.0,4.0,2.3,1,1,898.880255414313,600.0,55672.8389060831,1,1,2,3,99.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02586539555543768,24205.582133079613,7,4,7,7_0,7_2,7_0_1 -12613,2,52.0,0.0,2,112,290.0,185.0,0.0,56,62,0.0,0.0,400.8305259970199,475.0,0.0,335.52578665677805,31,2,2,1,2,1,2,2,2,3,70.0,8,,2,110769,2,1,0,1,1,720.0,180.0,386.0,43,2.0,1.0,4.0,2.0,1.5,2,2,911.497708711057,290.0,29764.47321605077,1,1,2,3,66.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015958622769908518,19842.982144033846,5,3,5,5_0,5_2,5_0_1 -12614,2,47.0,0.0,9,111,4250.0,200.0,0.0,31,31,0.0,155.27587572291867,5874.240467197705,4600.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,129362,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,1491.60630151615,4250.0,178378.0,1,1,1,2,250.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025787933489555888,71351.2,10,5,10,10_1,10_2,10_0_0 -12615,2,55.0,0.0,5,111,485.0,700.0,0.0,35,34,0.0,0.0,670.3545003743263,1185.0,0.0,1269.5570305932142,12,0,0,0,0,0,0,0,0,2,25.0,2,,3,108535,2,1,0,1,2,,0.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,2123.75765587566,485.0,75011.62352666745,1,1,0,1,98.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01579755168982204,37505.811763333724,9,5,9,9_0,9_2,9_0_0 -12616,2,71.0,0.0,5,111,480.0,0.0,0.0,0,74,0.0,0.0,663.4436292364467,549.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,102100,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1983.83886092567,480.0,43331.58079202559,0,5,0,1,67.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012669743174960137,43331.58079202559,10,5,10,10_0,10_2,10_0_0 -12617,2,29.0,0.0,2,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,306.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,124332,2,1,0,1,1,,240.0,304.0,41,0.0,0.0,1.0,2.0,1.5,3,3,1826.92395331452,0.0,10659.38180919742,6,7,2,3,35.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028707105672485498,7106.254539464947,1,1,1_0,1_0_0,1_2_0,1_0_1 -12621,2,78.0,0.0,1,111,701.0,0.0,0.0,0,72,0.0,0.0,968.9041335307273,1474.0,225.3628375489151,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,127678,2,1,2,0,1,,250.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1521.30561188649,701.0,27897.07247793134,0,5,0,1,90.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0528370853667905,27897.07247793134,7,4,7,7_1,7_2,7_1_0 -12622,1,47.0,193.0,2,111,112.0,654.0,0.0,85,63,0.0,0.0,154.80351348850422,766.0,0.0,1186.1289971542317,71,2,2,2,1,2,2,2,2,2,20.0,2,,2,109566,1,2,0,0,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,4,4,547.769910950379,112.0,27890.347179084507,6,1,1,2,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.027464699348541552,11620.977991285212,2,1,2_1,2_0_1,2_2_1,2_0_1 -12623,2,56.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,929.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,126668,2,1,0,0,1,,480.0,352.0,12,1.0,2.0,5.0,1.0,1.0,2,2,486.563159876261,0.0,19564.468753504032,0,1,2,3,70.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04748403913771563,19564.468753504032,5,3,5,5_0,5_2,5_0_1 -12624,1,74.0,81.0,2,111,360.0,477.0,0.0,0,77,0.0,0.0,497.582721927335,837.0,0.0,865.1124337042331,31,0,0,0,0,0,0,0,0,0,,2,,2,117657,2,2,0,0,1,,260.0,215.0,11,0.0,5.0,3.0,1.0,1.0,3,2,554.447603982834,360.0,11988.215694824681,0,5,2,3,82.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06981856360503534,11988.215694824681,2,1,2_1,2_0_1,2_2_1,2_0_1 -12625,2,44.0,0.0,2,111,696.0,1590.0,0.0,52,54,0.0,0.0,961.9932623928477,2286.0,0.0,2883.7081123474436,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,107898,2,1,2,0,2,,744.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,403.903071828452,696.0,48773.549935711766,1,1,0,1,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04686966610003102,24386.774967855883,7,4,7,7_1,7_2,7_0_1 -12626,2,85.0,0.0,2,111,282.0,0.0,0.0,75,74,0.0,0.0,389.77313217641245,411.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,107263,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1903.61358964545,282.0,52846.88358153394,5,5,0,1,80.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007777185183794148,35231.25572102263,9,5,9,9_0,9_2,9_0_1 -12628,1,87.0,170.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,736.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,131637,2,1,0,1,1,,157.0,278.0,11,0.0,9.0,3.0,1.0,1.0,2,2,1982.32568287266,0.0,12213.342264282197,0,5,2,3,45.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0602619646673151,12213.342264282197,2,1,2_1,2_0_1,2_2_1,2_0_1 -12629,2,77.0,0.0,1,111,570.0,1975.0,0.0,72,72,0.0,0.0,787.8393097182804,2545.0,0.0,3581.9644791737114,50,0,0,0,0,0,0,0,0,0,,1,,1,109659,2,2,1,0,2,,587.0,,41,0.0,3.0,9.0,2.0,1.5,3,3,1619.40563469722,570.0,78345.39935550198,5,5,0,1,150.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03248435799595259,52230.26623700132,10,5,10,10_1,10_2,10_1_0 -12630,2,73.0,0.0,7,111,180.0,0.0,0.0,78,86,0.0,0.0,248.7913609636675,531.0,0.0,0.0,71,1,2,2,2,1,2,2,2,0,,2,,5,115555,1,1,0,1,1,,0.0,828.0,41,0.0,4.0,3.0,2.0,1.5,3,3,2144.45975637375,180.0,55539.43754723242,5,5,2,3,72.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009560773811373612,37026.29169815494,9,5,9,9_0,9_2,9_0_0 -12631,2,65.0,0.0,2,111,593.0,1366.0,0.0,56,43,0.0,0.0,819.6293169525268,1959.0,0.0,2477.4498625576152,50,0,0,0,0,0,0,0,0,2,90.0,1,,2,121185,1,1,1,0,1,,281.0,790.0,43,2.0,3.0,3.0,2.0,1.5,4,2,1518.29143122359,593.0,66683.97544048555,1,1,2,3,76.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02937737270550671,44455.98362699037,10,5,10,10_1,10_2,10_0_1 -12632,2,47.0,0.0,1,111,1200.0,1680.0,0.0,46,38,0.0,0.0,1658.6090730911167,2880.0,0.0,3046.936873423714,71,0,0,0,0,0,0,0,0,0,,1,,1,100918,2,2,2,0,1,,1200.0,,43,2.0,0.0,7.0,4.0,2.3,4,3,1489.46715740918,1200.0,163602.68672043915,1,1,1,2,150.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01760362288500362,71131.60292193007,10,5,10,10_1,10_2,10_1_0 -12633,2,48.0,0.0,6,111,0.0,0.0,0.0,56,65,0.0,0.0,0.0,1897.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,126164,2,1,1,0,1,,669.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,179.665655223227,0.0,41803.91734675581,1,1,1,2,73.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045378522406518365,19906.627307978953,5,3,5,5_1,5_2,5_0_0 -12634,1,33.0,491.0,5,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,1203.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,131039,1,2,3,0,2,,0.0,650.0,42,1.0,0.0,3.0,5.0,2.4,2,2,222.654663021549,0.0,18749.078462408077,6,4,2,3,75.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06416315353375987,7812.116026003366,1,1,1_1,1_1_1,1_2_1,1_0_0 -12635,2,59.0,0.0,6,111,512.0,1393.0,0.0,78,63,0.0,0.0,707.6732045188764,1905.0,0.0,2526.4184908804964,70,0,0,0,0,0,0,0,0,2,20.0,1,,4,124210,2,2,2,0,1,,361.0,732.0,42,1.0,2.0,5.0,2.0,1.5,1,1,193.715475734594,512.0,38603.08551219219,5,1,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04934838691581622,25735.39034146146,7,4,7,7_1,7_2,7_0_0 -12636,1,64.0,128.0,5,111,1068.0,0.0,0.0,0,77,0.0,0.0,1476.1620750510938,1068.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,3,115893,2,3,0,0,1,490.0,672.0,422.0,31,1.0,3.0,4.0,2.0,1.5,2,2,239.282551049163,1068.0,19341.878941625382,0,5,2,3,70.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.05521697262314947,12894.585961083589,2,1,2_1,2_0_1,2_2_1,2_0_0 -12637,1,24.0,231.0,5,111,1000.0,0.0,0.0,37,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,,3,112420,1,3,0,0,1,42.0,370.0,416.0,42,1.0,0.0,4.0,4.0,2.1,1,1,221.259732588247,1000.0,27789.882861024777,1,7,2,3,62.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035984318645779424,13233.27755286894,2,1,2_1,2_0_1,2_2_1,2_0_0 -12638,1,53.0,184.0,2,111,180.0,300.0,0.0,85,78,0.0,0.0,248.7913609636675,480.0,0.0,544.0958702542347,50,1,2,2,2,1,2,2,2,0,,2,,2,100845,1,3,0,1,1,467.0,240.0,247.0,41,0.0,0.0,3.0,4.0,2.3,3,3,256.014541286115,180.0,30062.933694504303,6,7,2,3,51.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01596650562708546,13070.840736741002,2,1,2_1,2_0_1,2_2_1,2_0_1 -12639,1,63.0,137.0,2,111,350.0,300.0,0.0,0,77,0.0,0.0,483.76097965157567,650.0,0.0,544.0958702542347,50,2,2,2,1,2,2,2,2,0,,2,,2,116644,1,1,0,2,1,768.0,480.0,212.0,11,0.0,3.0,2.0,1.0,1.0,2,2,271.329226452421,350.0,9518.895540300873,0,5,2,3,46.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.0682852330134358,9518.895540300873,1,1,1_1,1_0_1,1_2_1,1_0_1 -12640,2,36.0,0.0,1,111,222.0,186.0,0.0,85,67,0.0,0.0,306.84267852185656,408.0,0.0,337.3394395576255,60,2,2,1,2,1,2,2,2,3,2.0,2,,1,117359,2,2,0,1,1,34.0,124.0,201.0,42,1.0,1.0,2.0,2.0,1.5,2,2,223.844313070986,222.0,19002.719906680966,6,1,2,3,42.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.021470610628563522,12668.479937787311,2,1,2_0,2_0_0,2_2_0,2_1_0 -12641,2,21.0,0.0,2,111,0.0,0.0,0.0,54,55,0.0,0.0,0.0,432.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,2,,2,132844,2,1,0,1,1,70.0,339.0,219.0,43,2.0,0.0,2.0,2.0,1.5,1,1,249.686080549858,0.0,24682.215176783033,4,1,2,3,42.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017502480912100406,16454.810117855355,4,2,4_0,4_0_0,4_2_0,4_0_1 -12642,2,54.0,0.0,2,111,600.0,0.0,0.0,67,63,0.0,558.9931526025072,829.3045365455583,1190.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,2,45.0,2,,2,126505,2,3,0,1,1,528.0,456.0,256.0,43,2.0,2.0,3.0,2.0,1.5,3,3,237.647764152239,600.0,36166.42901699054,1,1,2,3,54.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032903442013613025,24110.952677993697,6,3,6,6_0,6_2,6_0_1 -12643,0,45.0,0.0,6,111,150.0,1400.0,0.0,35,38,0.0,41.40690019277831,207.32613413638958,1590.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,2.0,1,,4,108768,2,3,3,0,1,,524.0,,43,2.0,0.0,7.0,5.0,2.4,3,3,213.011247140765,150.0,84318.61044819337,1,1,5,0,135.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01885704699767224,35132.754353413904,9,5,9,9_1,9_2,9_0_0 -12644,2,73.0,0.0,1,111,204.0,314.0,0.0,0,77,0.0,0.0,281.96354242548983,518.0,0.0,569.4870108660989,31,0,0,0,0,0,0,0,0,0,,2,,1,126957,1,1,0,1,2,636.0,240.0,219.0,11,0.0,6.0,3.0,1.0,1.0,2,2,257.986998381197,204.0,14915.24721500666,0,5,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03472956180564176,14915.24721500666,3,2,3_0,3_0_0,3_2_0,3_1_0 -12645,1,80.0,61.0,2,111,250.0,250.0,0.0,86,86,0.0,0.0,345.54355689398267,500.0,0.0,453.4132252118622,60,0,0,0,0,0,0,0,0,0,,2,,2,133641,2,2,0,1,1,500.0,250.0,248.0,41,0.0,7.0,3.0,2.0,1.5,3,2,236.01080605819,250.0,22551.856781020408,5,5,2,3,75.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022171123418130205,15034.571187346939,3,2,3_1,3_0_1,3_2_1,3_0_1 -12646,1,31.0,163.0,2,111,240.0,760.0,0.0,0,52,0.0,0.0,331.72181461822333,1000.0,0.0,1378.376204644061,60,2,2,2,2,1,2,2,2,3,30.0,2,,2,120200,2,3,0,1,1,264.0,216.0,148.0,12,1.0,0.0,1.0,1.0,1.0,1,1,329.247194571156,240.0,15827.929394229719,0,1,2,3,26.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06317945797537884,15827.929394229719,3,2,3_1,3_0_1,3_2_1,3_0_1 -12647,2,48.0,0.0,2,111,160.0,184.0,0.0,0,48,0.0,0.0,221.1478764121489,344.0,0.0,333.7121337559306,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,127197,1,2,0,1,1,612.0,118.0,238.0,12,1.0,0.0,3.0,1.0,1.0,1,1,251.807955827203,160.0,26242.476162231836,0,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013108519099850977,26242.476162231836,7,4,7,7_0,7_2,7_0_1 -12648,2,73.0,0.0,1,111,1437.0,0.0,0.0,86,75,0.0,0.0,1986.184365026612,1437.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,109374,2,1,2,0,1,,408.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,191.47081652669,1437.0,48547.75419320907,5,5,0,1,45.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029599721426475576,32365.16946213938,8,4,8,8_1,8_2,8_1_0 -12649,1,24.0,265.0,2,111,252.0,360.0,0.0,0,54,0.0,0.0,348.3079053491345,612.0,0.0,652.9150443050816,50,2,2,2,1,1,2,2,2,0,,2,,2,133039,2,2,0,1,1,564.0,180.0,236.0,32,1.0,0.0,3.0,2.0,1.3,3,2,230.757087594156,252.0,10136.564444444444,0,4,2,3,57.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06037548553597165,7797.357264957264,1,1,1_1,1_0_1,1_2_1,1_0_1 -12650,1,25.0,281.0,2,111,400.0,480.0,0.0,0,67,0.0,0.0,552.8696910303722,880.0,0.0,870.5533924067755,50,0,0,0,0,0,0,0,0,0,,2,,2,100106,2,2,0,1,1,624.0,600.0,257.0,22,1.0,3.0,4.0,4.0,2.5,2,2,260.990649149222,400.0,28045.17743062158,0,1,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03137794375439243,11218.070972248632,2,1,2_1,2_0_1,2_2_1,2_0_1 -12651,2,50.0,0.0,5,111,328.0,60.0,0.0,52,62,0.0,0.0,453.3531466449052,388.0,0.0,108.81917405084694,50,2,1,2,2,1,2,2,2,2,5.0,2,,3,115611,2,1,0,1,1,792.0,610.0,268.0,43,3.0,0.0,5.0,3.0,2.0,2,2,260.059536220813,328.0,33320.692321174145,1,1,2,3,50.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01164441591609546,16660.346160587073,4,2,4_0,4_0_0,4_2_0,4_0_0 -12652,2,63.0,0.0,2,111,288.0,142.0,0.0,0,86,0.0,0.0,398.066177541868,430.0,0.0,257.53871192033773,70,2,2,2,1,2,2,2,2,0,,2,,2,103878,2,2,0,1,1,80.0,500.0,317.0,11,0.0,7.0,5.0,1.0,1.0,1,1,280.412160299734,288.0,16202.120582594462,0,5,2,3,92.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026539735820873867,16202.120582594462,4,2,4_0,4_0_0,4_2_0,4_0_1 -12653,2,48.0,0.0,2,111,492.0,131.0,0.0,63,52,0.0,0.0,680.0297199673578,623.0,0.0,237.58853001101582,50,2,1,2,2,1,2,2,2,2,10.0,2,,2,132948,2,1,0,1,1,792.0,312.0,268.0,43,3.0,1.0,4.0,4.0,2.5,2,2,233.855369046761,492.0,45688.47682138038,4,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013635823370422821,18275.390728552153,4,2,4_0,4_0_0,4_2_0,4_0_1 -12654,2,36.0,0.0,2,111,1243.0,0.0,0.0,63,43,0.0,326.0793390181292,1718.0425648768817,1558.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,2,,2,103326,2,1,0,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,778.369176723276,1243.0,48992.10404632046,1,1,1,2,90.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0318010428481896,23329.573355390694,6,3,6,6_0,6_2,6_0_1 -12655,2,88.0,0.0,2,111,260.0,1599.0,0.0,0,75,0.0,0.0,359.36529916974195,1859.0,0.0,2900.0309884550707,10,0,0,0,0,0,0,0,0,0,,1,,2,127370,2,1,2,0,1,,119.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,743.940446695773,260.0,44945.309846954435,0,5,0,1,84.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04136137911453221,44945.309846954435,10,5,10,10_1,10_2,10_0_1 -12656,2,57.0,0.0,7,111,670.0,291.0,0.0,77,64,0.0,0.0,926.0567324758734,961.0,0.0,527.7729941466076,50,1,2,2,2,1,1,2,2,2,15.0,1,,5,118867,2,2,2,0,1,,235.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,691.265950901428,670.0,35562.02819117037,7,1,1,2,100.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02702320561791256,23708.01879411358,6,3,6,6_1,6_2,6_0_0 -12657,1,38.0,356.0,8,111,135.0,0.0,0.0,0,55,0.0,0.0,186.5935207227506,1517.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,2001.0,6,123110,2,1,0,1,1,,220.0,407.0,32,1.0,0.0,3.0,3.0,1.6,2,2,903.16765199291,135.0,10859.386351824507,0,4,2,3,67.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13969481799909678,6787.116469890317,1,1,1_1,1_0_1,1_2_1,1_0_0 -12658,1,55.0,263.0,6,111,670.0,0.0,0.0,56,67,0.0,0.0,926.0567324758734,670.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,102868,1,3,0,0,1,,305.0,238.0,43,2.0,3.0,2.0,3.0,1.8,2,2,879.821820498887,670.0,10664.39997884374,1,4,2,3,40.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.06282585061786505,5924.666654913189,1,1,1_1,1_0_1,1_2_1,1_0_0 -12659,2,72.0,0.0,1,111,550.0,2000.0,0.0,86,78,0.0,0.0,760.1958251667618,2550.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,1,109901,2,1,2,0,1,,277.0,,41,0.0,6.0,6.0,3.0,2.0,1,1,717.622322173017,550.0,23561.970856224252,6,5,0,1,120.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10822524208862515,11780.985428112126,2,1,2_0,2_1_0,2_2_0,2_1_0 -12660,2,64.0,0.0,2,111,507.0,1896.0,0.0,77,78,0.0,155.27587572291867,700.7623333809968,2553.0,0.0,3438.685900006763,60,0,0,0,0,0,0,0,0,0,,1,,2,126249,2,1,2,0,1,,232.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,229.910705875348,507.0,35392.929871760156,5,5,0,1,68.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07213305056264997,23595.286581173437,6,3,6,6_1,6_2,6_0_1 -12661,2,67.0,0.0,1,111,200.0,167.0,0.0,0,77,0.0,772.2386885953155,276.4348455151861,1225.0,192.67662446930146,302.88003444152395,42,2,2,2,1,1,2,2,2,0,,1,,1,129073,1,3,4,0,2,,100.0,339.0,11,0.0,2.0,4.0,1.0,1.0,4,3,710.737261967321,200.0,21997.451264999014,0,5,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.055688269756466936,21997.451264999014,6,3,6,6_1,6_2,6_1_0 -12662,2,49.0,0.0,1,111,650.0,1700.0,0.0,85,37,0.0,310.55175144583734,898.4132479243549,2650.0,0.0,3083.2099314406632,71,0,0,0,0,0,0,0,0,4,75.0,1,,1,112949,2,1,2,0,1,,250.0,,42,1.0,0.0,6.0,4.0,2.5,2,2,682.146252508897,650.0,52487.42263270254,6,1,0,1,200.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05048828589935191,20994.969053081015,5,3,5,5_1,5_2,5_1_0 -12663,1,20.0,244.0,7,111,0.0,0.0,0.0,84,54,0.0,0.0,0.0,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,10.0,2,,5,103409,1,1,0,1,1,,0.0,,42,1.0,0.0,1.0,2.0,1.5,2,2,799.102937265593,0.0,4896.820652726059,3,1,2,3,45.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05105353406415345,3264.5471018173725,1,1,1_1,1_0_1,1_2_1,1_0_0 -12664,0,23.0,0.0,1,111,430.0,980.0,0.0,0,43,0.0,0.0,594.3349178576501,1410.0,0.0,1777.3798428305,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,129019,2,1,0,0,1,,160.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1044.14022637083,430.0,26742.54721422659,0,1,5,0,86.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.052724970015193745,26742.54721422659,7,4,7,7_0,7_2,7_1_0 -12665,2,50.0,0.0,8,111,570.0,708.0,0.0,68,62,0.0,0.0,787.8393097182804,1278.0,0.0,1284.0662537999938,31,2,2,2,2,1,2,2,2,1,10.0,1,2000.0,6,114230,2,1,4,0,1,,528.0,687.0,43,2.0,5.0,5.0,3.0,1.8,1,1,644.787814495892,570.0,36150.51715937616,1,1,2,3,94.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03535219134945438,20083.620644097868,5,3,5,5_1,5_2,5_0_0 -12666,2,74.0,0.0,1,111,670.0,0.0,0.0,77,75,0.0,1656.2760077111325,926.0567324758734,2351.0,139.3464873394055,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,100363,1,3,4,0,2,,397.0,352.0,41,0.0,5.0,3.0,2.0,1.5,3,3,720.288799502712,670.0,17630.953779196134,5,5,2,3,32.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.13334502656198283,11753.969186130756,2,1,2_0,2_1_0,2_2_0,2_1_0 -12667,0,35.0,0.0,2,111,210.0,0.0,0.0,55,52,0.0,0.0,290.25658779094545,210.0,0.0,0.0,70,1,2,1,2,1,2,2,2,2,15.0,2,,2,129959,1,1,0,1,2,468.0,0.0,,43,2.0,0.0,3.0,4.0,2.1,3,2,926.358436448897,210.0,38208.94729853624,4,1,5,0,38.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005496094890006169,18194.73680882678,4,2,4_0,4_0_0,4_2_0,4_0_1 -12668,2,68.0,0.0,1,111,300.0,0.0,0.0,0,78,1045.5094139126004,0.0,414.65226827277917,1120.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,8,,1,110825,2,2,0,0,1,,200.0,328.0,11,0.0,5.0,2.0,1.0,1.0,2,2,1272.15725610913,300.0,16582.817191221013,0,5,2,3,25.0,7,6,2,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.067539790560613,16582.817191221013,4,2,4_0,4_0_0,4_2_0,4_1_0 -12669,1,40.0,120.0,1,111,1300.0,0.0,0.0,56,68,0.0,0.0,1796.8264958487098,1504.0,350.9467088547991,0.0,71,2,2,2,1,1,2,2,2,3,60.0,8,,1,131761,1,3,0,0,2,,300.0,460.0,43,2.0,3.0,4.0,3.0,1.8,2,2,1062.38763705383,1300.0,27018.90771132695,4,1,2,3,45.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,0.05566472249984734,15010.504284070526,3,2,3_1,3_0_1,3_2_1,3_1_0 -12670,2,82.0,0.0,1,111,0.0,0.0,0.0,0,75,2987.1697540360015,0.0,0.0,2963.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104041,2,1,2,0,2,,400.0,,11,0.0,5.0,6.0,1.0,1.0,2,2,717.403863255139,0.0,33442.11584688196,0,5,0,1,120.0,7,6,2,1,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08860085329428284,33442.11584688196,8,4,8,8_1,8_2,8_1_0 -12671,2,68.0,0.0,2,111,572.0,1674.0,0.0,74,74,0.0,0.0,790.6036581734322,2246.0,0.0,3036.0549560186296,60,1,2,2,1,1,2,2,2,0,,1,,2,132756,2,3,3,0,1,,303.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,663.982783346761,572.0,75378.42311184846,5,5,0,1,89.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.029796325092491346,50252.28207456564,10,5,10,10_1,10_2,10_0_1 -12672,2,47.0,0.0,1,111,700.0,250.0,0.0,85,47,0.0,517.5862524097289,967.5219593031513,1450.0,0.0,453.4132252118622,71,2,2,2,2,1,2,2,2,0,,8,,1,111268,2,1,0,4,1,,300.0,,42,1.0,0.0,5.0,6.0,3.1,2,2,900.247931916137,700.0,17694.16711983142,6,1,0,1,140.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0.08194790917142726,5707.79584510691,1,1,1_0,1_0_0,1_2_0,1_1_0 -12673,2,28.0,0.0,1,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,2642.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,45.0,1,,1,128705,2,1,2,0,1,,539.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,635.323694542819,0.0,46347.73179463924,1,1,1,2,95.0,7,6,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057003868316714126,22070.348473637732,6,3,6,6_1,6_2,6_1_0 -12674,1,34.0,155.0,1,111,480.0,0.0,0.0,45,53,0.0,0.0,663.4436292364467,480.0,0.0,0.0,60,2,2,2,1,1,2,2,2,2,26.0,1,,1,107835,2,2,5,0,2,,350.0,520.0,43,2.0,0.0,2.0,3.0,1.8,2,2,810.53900603199,480.0,18419.16815367874,4,1,2,3,43.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.026059808781545474,10232.87119648819,2,1,2_1,2_1_1,2_2_1,2_1_0 -12675,2,21.0,0.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,383.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,1,120590,2,1,0,0,1,,256.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,972.11408283081,0.0,18802.305351011822,0,1,1,2,52.0,7,6,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02036984257249015,18802.305351011822,5,3,5,5_0,5_2,5_1_0 -12676,2,67.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,508.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,1,,1,114467,1,3,4,0,2,,223.0,,21,0.0,5.0,3.0,2.0,1.5,1,1,697.944349560828,0.0,19627.84668054209,0,5,0,1,55.0,7,6,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.025881596094980797,13085.231120361394,2,1,2_0,2_1_0,2_2_0,2_1_0 -12677,2,59.0,0.0,2,111,265.0,830.0,0.0,0,63,0.0,0.0,366.2761703076216,1125.0,51.60981012570575,1505.3319077033825,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,110509,2,3,4,0,1,,130.0,636.0,12,1.0,2.0,4.0,1.0,1.0,2,2,861.993607843248,265.0,19136.434935870842,0,1,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.05878837953725703,19136.434935870842,5,3,5,5_1,5_2,5_0_1 -12678,2,88.0,0.0,2,111,419.0,0.0,0.0,0,78,4480.754631054002,0.0,579.1310013543149,3479.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112130,2,3,3,0,2,,164.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,792.209654156528,419.0,24164.0127109049,0,5,0,1,100.0,7,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14397443179749583,24164.0127109049,6,3,6,6_1,6_2,6_0_1 -12679,2,47.0,0.0,2,111,650.0,1152.0,0.0,55,53,0.0,0.0,898.4132479243549,1802.0,0.0,2089.328141776261,50,2,2,2,2,1,2,2,2,2,45.0,1,,2,110301,2,1,1,0,1,,672.0,,43,3.0,0.0,5.0,5.0,2.8,1,1,734.535350872996,650.0,52006.549596589975,1,1,1,2,62.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.034649481920603235,18573.76771306785,4,2,4_0,4_1_0,4_2_0,4_0_1 -12680,2,60.0,0.0,2,111,1100.0,0.0,0.0,46,78,2987.1697540360015,0.0,1520.3916503335236,3100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,107860,2,1,1,0,1,,250.0,,42,1.0,2.0,4.0,3.0,2.0,2,2,820.393906224664,1100.0,47223.028687270096,4,5,0,1,100.0,7,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0656459377167324,23611.514343635048,6,3,6,6_1,6_2,6_0_1 -12681,1,33.0,362.0,2,111,528.0,756.0,0.0,0,85,0.0,0.0,729.7879921600913,1284.0,0.0,1371.1215930406713,60,0,0,0,0,0,0,0,0,0,,1,,2,127416,2,1,2,0,1,,252.0,303.0,31,0.0,0.0,5.0,5.0,2.2,1,1,187.537353226204,528.0,20601.29284710621,0,6,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06232618552288376,9364.224021411914,1,1,1_1,1_1_1,1_2_1,1_0_1 -12682,2,56.0,0.0,7,111,1000.0,0.0,0.0,77,38,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,5,133067,2,1,2,0,1,,560.0,,42,2.0,1.0,6.0,3.0,2.0,2,2,712.953908357572,1000.0,56651.93052372077,6,1,1,2,150.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017651649127496002,28325.965261860387,8,4,8,8_1,8_2,8_0_0 -12683,2,61.0,0.0,1,112,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1328.0,220.20185653634454,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,124163,2,1,3,0,1,,350.0,,31,1.0,1.0,5.0,2.0,1.5,1,1,651.681222054407,1200.0,46230.97537755483,0,5,0,1,110.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028725329482119144,30820.65025170322,8,4,8,8_1,8_0,8_1_0 -12684,2,53.0,0.0,1,112,1824.0,0.0,0.0,0,52,1792.3018524216009,0.0,2521.0857910984973,3156.0,227.0831645531053,0.0,60,0,0,0,0,0,0,0,0,4,90.0,1,,1,105983,2,2,2,0,1,,215.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,827.769948010576,1824.0,15734.652720718557,0,1,0,1,130.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20057640012889172,15734.652720718557,3,2,3_0,3_1_0,3_0_0,3_1_0 -12685,2,49.0,0.0,7,112,1710.0,0.0,0.0,68,64,0.0,517.5862524097289,2363.517929154841,2338.0,220.20185653634454,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,108518,2,2,2,0,1,,245.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,678.739996758967,1710.0,33839.23518696105,1,1,1,2,110.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06909139604020599,13535.69407478442,3,2,3_0,3_1_0,3_0_0,3_0_0 -12686,2,55.0,0.0,2,112,2810.0,0.0,0.0,85,78,0.0,0.0,3883.9095794883647,2938.0,220.20185653634454,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,121523,2,1,2,0,1,,580.0,,41,1.0,2.0,6.0,4.0,2.5,2,2,635.692352358449,2810.0,44421.46029313535,7,7,0,1,98.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06613920345284152,17768.58411725414,4,2,4_0,4_1_0,4_0_0,4_0_1 -12687,2,47.0,0.0,1,112,280.0,0.0,0.0,0,47,0.0,155.27587572291867,387.00878372126056,3430.0,5160.981012570575,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,1,121742,2,1,2,0,1,,322.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,705.112952926268,280.0,44294.402449729416,0,1,1,2,120.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0774364210893865,44294.402449729416,10,5,10,10_1,10_0,10_1_0 -12688,1,28.0,202.0,2,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,3005.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,117080,2,2,5,0,1,,0.0,628.0,32,1.0,0.0,2.0,2.0,1.3,2,2,684.118222117111,0.0,16992.349757823846,0,1,2,3,52.0,10,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.17684428833136498,13071.038275249111,2,1,2_1,2_1_1,2_0_1,2_0_1 -12689,2,40.0,0.0,2,112,4046.3,0.0,0.0,0,65,1478.6490282478208,0.0,5592.6915770404885,5071.0,60.21144514665671,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,,2,116894,2,1,2,0,1,,241.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,755.909621996973,4046.3,39690.4324285235,0,1,1,2,89.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1277637881404318,39690.4324285235,9,5,9,9_1,9_0,9_0_1 -12690,1,64.0,232.0,9,112,510.0,0.0,0.0,0,56,0.0,0.0,704.9088560637246,580.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,1,7.0,2,2006.0,6,104590,2,2,0,0,1,,122.0,265.0,12,1.0,1.0,2.0,1.0,1.0,2,2,854.736501297624,510.0,7956.837665156263,0,1,2,3,47.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07289328052272252,7956.837665156263,1,1,1_1,1_0_1,1_0_1,1_0_0 -12691,2,87.0,0.0,1,112,1920.0,0.0,0.0,0,75,0.0,0.0,2653.7745169457867,1920.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104528,2,2,3,0,1,,170.0,,11,0.0,0.0,8.0,1.0,1.0,2,2,756.507992637827,1920.0,37581.0,0,5,0,1,150.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051089646363854074,37581.0,9,5,9,9_1,9_0,9_1_0 -12692,2,30.0,0.0,7,112,1110.0,0.0,0.0,0,54,0.0,0.0,1534.213392609283,1110.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,103529,2,1,2,0,1,,231.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,731.329313304211,1110.0,30630.82388890518,0,1,2,3,52.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03623800665714559,30630.82388890518,8,4,8,8_1,8_0,8_0_0 -12693,2,59.0,0.0,5,112,466.0,0.0,0.0,54,48,4361.267840892562,0.0,644.0931900503837,3456.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,3,118037,2,1,2,0,1,,365.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,726.960448108196,466.0,85912.67396445322,1,1,0,1,90.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040226893664489324,57275.11597630215,10,5,10,10_1,10_0,10_0_0 -12694,2,53.0,0.0,1,112,920.0,0.0,0.0,78,54,3733.962192545002,134.5724256265295,1271.600289369856,3550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,120.0,1,,1,116676,2,1,2,0,1,,410.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,695.377960730128,920.0,66085.90180684044,7,1,0,1,130.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05371796257507597,44057.26787122696,10,5,10,10_1,10_0,10_1_0 -12695,2,52.0,0.0,5,112,650.0,0.0,0.0,0,62,0.0,828.1380038555662,898.4132479243549,1522.0,123.8635443016938,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,123305,2,1,2,0,1,,320.0,,12,1.0,2.0,7.0,1.0,1.0,2,2,780.679991575923,650.0,13461.987425241643,0,1,0,1,160.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11305908644263052,13461.987425241643,3,2,3_0,3_1_0,3_0_0,3_0_0 -12696,2,67.0,0.0,2,112,1236.0,0.0,0.0,0,75,0.0,372.6621017350048,1708.3673452838502,1656.0,103.2196202514115,0.0,20,2,2,2,2,1,2,2,2,0,,1,,2,125823,1,2,2,0,1,,430.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,681.855986646023,1236.0,27063.527147745503,0,5,0,1,81.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.061189363491297596,27063.527147745503,7,4,7,7_1,7_0,7_0_1 -12697,2,66.0,0.0,5,112,472.0,0.0,0.0,74,75,3435.2452171414016,103.51725048194578,652.3862354158392,2942.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,102924,1,1,1,0,2,,326.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,676.387932488558,472.0,69034.47525063451,5,5,0,1,110.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04261638825121597,46022.983500423004,10,5,10,10_1,10_0,10_0_0 -12698,2,51.0,0.0,5,112,787.0,0.0,0.0,85,47,0.0,734.972478421815,1087.7711171022574,1587.0,154.82943037711726,0.0,50,2,2,2,2,1,2,2,2,2,30.0,1,,3,107048,2,1,2,0,1,,250.0,,42,1.0,0.0,6.0,4.0,2.5,2,2,709.934273724348,787.0,78979.02020468783,6,1,0,1,109.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02009394388392024,31591.60808187513,8,4,8,8_1,8_0,8_0_0 -12699,2,62.0,0.0,6,112,1570.0,0.0,0.0,0,54,0.0,0.0,2170.013537294211,1640.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,102290,2,1,2,0,1,,258.0,,22,2.0,0.0,5.0,3.0,2.0,2,2,724.981780082319,1570.0,5471.987891506012,0,1,0,1,120.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.29970826553650065,2735.993945753006,1,1,1_0,1_1_0,1_0_0,1_0_0 -12700,2,53.0,0.0,6,112,2900.0,0.0,0.0,75,38,0.0,322.9738215036708,4008.3052599701987,3412.0,344.06540083803833,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,115683,2,1,2,0,1,,621.0,,42,2.0,0.0,7.0,3.0,2.0,1,1,805.82573887507,2900.0,64919.25317164262,5,1,0,1,150.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0525575978358666,32459.62658582131,8,4,8,8_1,8_0,8_0_0 -12701,2,49.0,0.0,2,112,864.0,0.0,0.0,52,38,2688.452778632401,0.0,1194.198532625604,2732.0,116.98223628493304,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,2,108844,2,1,2,0,1,,600.0,,43,2.0,1.0,6.0,4.0,2.5,1,1,618.330325328379,864.0,69706.37167854347,1,1,1,2,100.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03919297381592084,27882.548671417386,7,4,7,7_1,7_0,7_0_1 -12702,2,83.0,0.0,1,112,352.0,0.0,0.0,77,78,0.0,207.03450096389156,486.52532810672756,2832.0,3922.3455695536372,0.0,30,0,0,0,0,0,0,0,0,0,,1,,1,116547,1,3,1,0,1,,342.0,,41,0.0,3.0,4.0,3.0,2.0,2,2,691.121494540929,352.0,43069.99128247855,5,5,0,1,86.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06575343796626436,21534.995641239275,6,3,6,6_1,6_0,6_1_0 -12703,2,33.0,0.0,6,112,868.0,0.0,0.0,43,21,0.0,186.3310508675024,1199.7272295359078,4148.0,5333.013712989594,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109908,1,3,2,0,1,,557.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,710.017114693342,868.0,32198.152356094914,4,1,1,2,169.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1288272679166576,15332.45350290234,3,2,3_0,3_1_0,3_0_0,3_0_0 -12704,2,70.0,0.0,9,111,1572.0,0.0,0.0,72,38,0.0,310.55175144583734,2172.7778857493627,1872.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,119043,2,1,1,0,1,,462.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,1043.90187134065,1572.0,74842.75985796549,5,5,0,1,136.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0250124394604452,49895.173238643656,10,5,10,10_1,10_2,10_0_0 -12705,2,60.0,0.0,1,111,2500.0,0.0,0.0,0,75,0.0,0.0,3455.435568939826,2600.0,172.03270041901916,0.0,33,1,2,2,2,2,2,2,1,0,,1,,1,110545,2,1,1,0,1,,300.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1070.30227285365,2500.0,35983.81864701996,0,5,0,1,125.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07225469941098989,35983.81864701996,9,5,9,9_1,9_2,9_1_0 -12706,2,68.0,0.0,5,111,499.0,0.0,0.0,0,78,2957.2980564956415,0.0,689.7049395603893,2578.0,170.31237341482898,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107751,2,1,2,0,1,,328.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,999.542939519729,499.0,25783.474567483478,0,5,0,1,160.0,6,5,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09998652405255008,25783.474567483478,7,4,7,7_1,7_2,7_0_0 -12707,2,29.0,0.0,9,111,1500.0,0.0,0.0,54,43,0.0,0.0,2073.261341363896,1585.0,146.2277953561663,0.0,50,2,2,2,2,1,2,1,2,2,15.0,1,2009.0,6,121765,1,3,1,0,1,,360.0,895.0,43,2.0,0.0,5.0,3.0,1.8,1,1,1183.99754502062,1500.0,36327.69600496857,4,1,2,3,117.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04363062275634596,20182.05333609365,5,3,5,5_1,5_2,5_0_0 -12708,2,79.0,0.0,1,111,297.0,1466.0,0.0,0,77,0.0,0.0,410.5057455900514,1763.0,0.0,2658.81515264236,33,0,0,0,0,0,0,0,0,0,,1,,1,110420,2,2,2,0,1,,130.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,1071.08765168042,297.0,12215.000803398925,0,5,0,1,100.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14433073139949615,12215.000803398925,2,1,2_0,2_1_0,2_2_0,2_1_0 -12709,1,28.0,406.0,1,111,1650.0,0.0,0.0,0,85,0.0,0.0,2280.5874755002856,1719.0,118.70256328912323,0.0,41,2,2,2,1,1,2,2,2,0,,1,,1,132264,1,3,1,0,1,,432.0,506.0,31,0.0,0.0,4.0,3.0,1.6,1,1,1085.16291201385,1650.0,10393.035088529716,0,6,2,3,65.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.16539922990322395,6495.646930331072,1,1,1_1,1_1_1,1_2_1,1_1_0 -12710,2,46.0,0.0,1,111,510.0,1578.0,0.0,0,37,0.0,0.0,704.9088560637246,2088.0,0.0,2861.9442775372745,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,128291,2,1,1,0,1,,186.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1034.41441955684,510.0,46135.256005189935,0,1,0,1,110.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04525822940627256,46135.256005189935,10,5,10,10_1,10_2,10_1_0 -12711,2,41.0,0.0,5,111,1500.0,0.0,0.0,52,62,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,10,1,1,2,2,1,2,2,2,0,,2,,3,131507,1,2,0,1,1,656.0,1548.0,479.0,43,2.0,0.0,4.0,5.0,2.8,2,2,1136.58491005792,1500.0,49340.0558211864,4,1,2,3,75.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.030401262727309416,17621.448507566573,4,2,4_0,4_0_0,4_2_0,4_0_0 -12712,2,71.0,0.0,2,111,619.0,0.0,0.0,77,78,3659.282948694102,0.0,855.565846869501,3670.0,1033.9165295183052,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117658,2,1,2,0,2,,671.0,,41,1.0,2.0,4.0,3.0,2.0,3,2,1050.18469599771,619.0,29786.48547060677,5,5,0,1,86.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.123210239208031,14893.242735303385,3,2,3_0,3_1_0,3_2_0,3_0_1 -12713,1,71.0,209.0,2,111,210.0,0.0,0.0,0,78,0.0,0.0,290.25658779094545,270.0,103.2196202514115,0.0,20,1,1,2,1,1,2,2,2,0,,2,,2,119572,2,1,0,1,1,336.0,145.0,214.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1233.87823609666,210.0,8181.233091981586,0,5,2,3,50.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.033002360031109075,8181.233091981586,1,1,1_1,1_0_1,1_2_1,1_0_1 -12714,1,29.0,354.0,1,111,940.0,515.0,0.0,0,85,0.0,0.0,1299.2437739213747,1515.0,103.2196202514115,934.0312439364362,70,2,1,2,1,2,2,2,2,0,,2,,1,113847,1,2,0,1,1,515.0,420.0,293.0,31,0.0,0.0,4.0,5.0,2.2,2,2,1208.28619100272,940.0,11382.007438037537,0,6,2,3,62.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.13310481549476244,5173.639744562516,1,1,1_1,1_0_1,1_2_1,1_1_0 -12715,2,33.0,0.0,5,111,0.0,0.0,0.0,43,42,0.0,0.0,0.0,437.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,,3,127014,1,1,0,1,1,894.0,267.0,262.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1168.28953516536,0.0,38567.02952872017,1,1,2,3,67.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011330921912836817,25711.353019146783,7,4,7,7_0,7_2,7_0_0 -12716,1,48.0,444.0,2,111,750.0,0.0,0.0,0,85,0.0,0.0,1036.630670681948,750.0,0.0,0.0,44,1,2,2,1,2,2,2,1,0,,2,,2,127535,1,2,0,0,1,,483.0,404.0,31,0.0,5.0,5.0,3.0,1.8,1,1,1218.07274376883,750.0,12161.356299028173,0,6,2,3,97.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.061670752961981164,6756.309055015652,1,1,1_1,1_0_1,1_2_1,1_0_1 -12717,1,38.0,354.0,5,111,610.0,0.0,0.0,85,64,0.0,0.0,843.1262788213177,672.0,106.66027425979189,0.0,50,2,2,2,1,2,2,2,2,2,40.0,2,,3,126467,1,2,0,1,1,,550.0,317.0,42,1.0,1.0,3.0,4.0,2.1,2,2,1116.78422959453,610.0,16107.847692087795,6,1,2,3,50.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.041718795263385046,7670.40366289895,1,1,1_1,1_0_1,1_2_1,1_0_0 -12718,0,54.0,0.0,1,111,500.0,0.0,0.0,0,72,1493.5848770180007,0.0,691.0871137879653,1627.0,218.48152953215435,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,107634,2,1,2,0,1,,260.0,,21,0.0,1.0,3.0,2.0,1.5,2,2,1119.09585863085,500.0,22534.0,0,7,5,0,50.0,6,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07220200585781486,15022.666666666666,3,2,3_0,3_1_0,3_2_0,3_1_0 -12719,1,24.0,150.0,7,111,0.0,0.0,0.0,55,68,0.0,0.0,0.0,819.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,110302,2,1,2,0,1,,345.0,,43,2.0,0.0,3.0,3.0,1.8,2,1,1078.95971026702,0.0,25665.165500155148,1,1,1,2,42.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0319109572854712,14258.425277863971,3,2,3_1,3_1_1,3_2_1,3_0_0 -12720,2,83.0,0.0,2,111,408.0,0.0,0.0,0,78,2703.3886274025813,0.0,563.9270848509797,2308.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129419,2,1,3,0,1,,204.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1030.92093080796,408.0,16706.380533930616,0,6,0,1,72.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13815080982457317,16706.380533930616,4,2,4_0,4_1_0,4_2_0,4_0_1 -12721,2,68.0,0.0,6,111,444.0,0.0,0.0,77,75,0.0,0.0,613.6853570437131,1703.0,2165.8916982754513,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,113095,2,1,1,0,1,,229.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,945.934260372309,444.0,20829.653807618546,5,5,0,1,95.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08175843994954538,13886.435871745698,3,2,3_0,3_1_0,3_2_0,3_0_0 -12722,2,46.0,0.0,2,111,460.0,0.0,0.0,67,52,2987.1697540360015,0.0,635.800144684928,2520.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,124326,2,1,2,0,1,,620.0,,43,3.0,0.0,5.0,5.0,3.0,2,2,855.561896639015,460.0,55517.058812340096,4,1,0,1,80.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04539145361641286,18505.686270780032,4,2,4_0,4_1_0,4_2_0,4_0_1 -12723,2,32.0,0.0,9,111,2051.0,0.0,0.0,54,42,0.0,0.0,2834.8393407582334,2051.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,2008.0,6,126554,2,1,1,0,1,,423.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1001.16527975525,2051.0,52810.46822340437,1,1,1,2,167.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03883699707648198,25147.842011144938,7,4,7,7_1,7_2,7_0_0 -12724,2,58.0,0.0,5,111,680.0,1490.0,0.0,78,78,0.0,0.0,939.8784747516328,2170.0,0.0,2702.342822262699,10,0,0,0,0,0,0,0,0,0,,1,,3,126834,2,1,2,0,1,,510.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,1113.81810797879,680.0,71045.70522853402,5,5,0,1,130.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030543718202524998,35522.85261426701,9,5,9,9_1,9_2,9_0_0 -12725,2,68.0,0.0,1,111,630.0,1570.0,0.0,78,75,0.0,0.0,870.7697633728362,2200.0,0.0,2847.435054330495,42,0,0,0,0,0,0,0,0,0,,1,,1,104797,2,1,3,0,1,,570.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1040.12306065569,630.0,39448.21287241248,5,5,0,1,138.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05576931981977154,26298.80858160832,7,4,7,7_1,7_2,7_1_0 -12726,2,27.0,0.0,9,111,900.0,0.0,0.0,42,34,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,60.0,1,2008.0,6,110245,2,2,1,0,1,,284.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,972.765334204096,900.0,40072.33359080685,4,1,2,3,60.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.022459385799445244,26714.8890605379,7,4,7,7_1,7_2,7_0_0 -12727,2,56.0,0.0,6,111,1200.0,1310.0,0.0,33,47,0.0,310.55175144583734,1658.6090730911167,2810.0,0.0,2375.885300110158,50,1,2,2,2,2,2,2,1,2,3.0,1,,4,108159,2,1,2,0,1,,600.0,,43,4.0,1.0,5.0,4.0,2.5,3,3,925.875875995599,1200.0,100392.93771359239,1,1,0,1,85.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02799001666846879,40157.17508543695,9,5,9,9_1,9_2,9_0_0 -12728,2,59.0,0.0,6,111,330.0,1100.0,0.0,0,77,0.0,0.0,456.1174951000571,1430.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,0,,1,,4,133407,2,1,2,0,1,,336.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1098.87763153424,330.0,19861.686139457608,0,6,0,1,90.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07199791548206648,19861.686139457608,5,3,5,5_1,5_2,5_0_0 -12729,2,63.0,0.0,5,111,649.0,1243.0,0.0,75,75,0.0,0.0,897.0310736967789,1892.0,0.0,2254.370555753379,41,0,0,0,0,0,0,0,0,0,,1,,3,110446,2,1,3,0,1,,780.0,,41,0.0,2.0,4.0,2.0,1.5,5,5,872.848479278497,649.0,42530.586823709564,5,5,0,1,90.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04448563119625862,28353.724549139708,8,4,8,8_1,8_2,8_0_0 -12730,2,43.0,0.0,1,111,215.0,0.0,0.0,78,68,2389.735803228801,0.0,297.16745892882506,1955.0,240.84578058662683,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,100017,2,1,1,0,1,,130.0,,42,1.0,7.0,5.0,2.0,1.5,1,1,922.954977665988,215.0,28393.552622443884,5,1,1,2,125.0,6,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06885365934992779,18929.035081629256,5,3,5,5_1,5_2,5_1_0 -12732,2,66.0,0.0,1,111,1356.0,0.0,0.0,0,77,0.0,0.0,1874.2282525929618,1356.0,0.0,0.0,70,1,2,2,1,2,2,2,2,0,,1,,1,113116,2,1,3,0,1,,323.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1024.86022222913,1356.0,11571.9176607133,0,5,0,1,80.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.11718023233120857,11571.9176607133,2,1,2_0,2_1_0,2_2_0,2_1_0 -12733,2,87.0,0.0,2,111,699.0,0.0,0.0,77,78,2240.377315527001,0.0,966.1397850755754,3164.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119830,2,1,2,0,1,,173.0,,41,0.0,6.0,5.0,2.0,1.5,1,1,966.411797585854,699.0,26242.35749088599,5,5,0,1,120.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12056843601413715,17494.904993923992,4,2,4_0,4_1_0,4_2_0,4_0_1 -12734,2,58.0,0.0,1,111,2896.0,0.0,0.0,52,34,0.0,103.51725048194578,4002.776563059895,3056.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,122397,2,2,3,0,1,,540.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1098.92300300431,2896.0,62672.173584504235,1,1,0,1,90.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04876167244908831,41781.449056336154,9,5,9,9_1,9_2,9_1_0 -12735,2,58.0,0.0,1,111,2672.0,0.0,0.0,72,68,0.0,0.0,3693.169536082886,2765.0,159.99041138968784,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,124392,2,2,3,0,1,,410.0,,42,1.0,2.0,5.0,2.0,1.5,3,3,947.010943756916,2672.0,14691.932676399663,6,1,0,1,100.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1881985209775395,9794.621784266443,2,1,2_0,2_1_0,2_2_0,2_1_0 -12736,1,69.0,191.0,1,111,1136.0,0.0,0.0,72,72,0.0,0.0,1570.1499225262571,1136.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118160,2,1,2,0,1,,264.0,480.0,41,0.0,2.0,3.0,2.0,1.5,1,1,1039.07251867221,1136.0,14034.07737154396,5,5,2,3,49.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08094582706971515,9356.051581029307,1,1,1_1,1_1_1,1_2_1,1_1_0 -12738,2,49.0,0.0,1,111,150.0,0.0,0.0,0,45,1792.3018524216009,0.0,207.32613413638958,1412.0,106.66027425979189,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,108525,2,2,1,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,1080.92855633116,150.0,27549.412554390216,0,1,1,2,60.0,6,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05125336147231156,27549.412554390216,7,4,7,7_1,7_2,7_1_0 -12739,2,44.0,0.0,1,111,1370.0,0.0,0.0,54,63,0.0,0.0,1893.578691779025,1405.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,110684,2,1,1,0,1,,402.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,975.703599010906,1370.0,34266.85208576468,1,1,1,2,72.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04100172366237495,22844.568057176453,6,3,6,6_1,6_2,6_1_0 -12740,2,40.0,0.0,1,111,1560.6,1664.0,0.0,31,22,0.0,0.0,2157.021099554997,3225.0,0.0,3017.918427010155,44,0,0,0,0,0,0,0,0,0,,1,,1,105978,2,2,2,0,1,,540.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,945.28074657834,1560.6,44205.42891559038,1,1,1,2,100.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07295484014323422,18418.928714829326,4,2,4_0,4_1_0,4_2_0,4_1_0 -12741,2,69.0,0.0,2,111,354.0,1472.0,0.0,72,72,0.0,0.0,489.28967656187945,1826.0,0.0,2669.697070047445,71,0,0,0,0,0,0,0,0,0,,1,,2,122338,1,1,3,0,2,,402.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,938.514157597428,354.0,11455.217304052992,5,5,0,1,39.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15940334884384424,7636.811536035329,1,1,1_0,1_1_0,1_2_0,1_0_1 -12742,2,28.0,0.0,5,111,840.0,865.0,0.0,65,56,0.0,0.0,1161.0263511637818,1705.0,0.0,1568.8097592330432,33,0,0,0,0,0,0,0,0,2,20.0,1,,3,126682,1,3,3,0,2,,0.0,445.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1074.238109515,840.0,32816.50311223049,4,1,2,3,52.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051955566203047324,21877.668741486996,6,3,6,6_1,6_2,6_0_0 -12743,2,81.0,0.0,6,111,550.0,782.0,0.0,90,72,0.0,595.2241902711883,760.1958251667618,1907.0,0.0,1418.276568462705,30,0,0,0,0,0,0,0,0,0,,1,,4,122071,2,2,2,0,1,,400.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,912.179047957898,550.0,17920.928992411482,5,5,0,1,56.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10641189420523392,11947.285994940989,2,1,2_0,2_1_0,2_2_0,2_0_0 -12744,2,78.0,0.0,2,111,221.0,1189.0,0.0,75,75,0.0,0.0,305.46050429428067,1410.0,0.0,2156.4332991076167,50,0,0,0,0,0,0,0,0,0,,1,,2,125817,2,2,2,0,1,,118.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,939.29386820745,221.0,25297.021650717877,6,5,0,1,78.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05573778682203037,16864.681100478585,4,2,4_0,4_1_0,4_2_0,4_0_1 -12745,1,23.0,264.0,2,111,300.0,0.0,0.0,63,63,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,2,1,2,1,1,2,2,2,2,20.0,2,,2,106144,2,3,0,1,1,436.0,221.0,253.0,43,2.0,0.0,4.0,2.0,1.5,2,2,369.968272760587,300.0,12280.192767859451,4,1,2,3,56.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.024429583938224506,8186.795178572967,1,1,1_1,1_0_1,1_2_1,1_0_1 -12746,1,49.0,82.0,2,111,280.0,0.0,0.0,0,68,0.0,0.0,387.00878372126056,280.0,0.0,0.0,50,1,1,2,2,1,2,2,2,0,,2,,2,132512,1,3,0,1,1,350.0,0.0,226.0,12,1.0,4.0,2.0,1.0,1.0,1,1,378.971006088064,280.0,12376.80798024341,0,1,2,3,60.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.022622957425448672,12376.80798024341,2,1,2_1,2_0_1,2_2_1,2_0_1 -12747,1,63.0,47.0,2,111,200.0,0.0,0.0,0,78,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125399,2,1,0,1,1,677.0,120.0,265.0,11,0.0,5.0,2.0,1.0,1.0,2,2,388.326229382325,200.0,14429.098587772056,0,5,2,3,60.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013860879720476098,14429.098587772056,3,2,3_1,3_0_1,3_2_1,3_0_1 -12748,2,71.0,0.0,2,111,270.0,1200.0,0.0,86,74,0.0,0.0,373.1870414455012,1470.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,2,123092,2,1,2,0,1,,122.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1032.25119539732,270.0,37746.16080817749,5,5,0,1,140.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0389443580095577,25164.10720545166,7,4,7,7_1,7_2,7_0_1 -12749,1,25.0,270.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,307.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,114846,2,3,0,0,1,,0.0,545.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1602.56340479537,0.0,12763.22161667225,0,4,2,3,45.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02405348815685957,12763.22161667225,2,1,2_1,2_0_1,2_2_1,2_0_0 -12750,2,65.0,0.0,1,111,826.0,2192.0,0.0,75,75,0.0,0.0,1141.6759119777187,3018.0,0.0,3975.527158657608,31,0,0,0,0,0,0,0,0,0,,1,,1,118421,2,2,1,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1002.95361092498,826.0,55468.32596086415,5,5,0,1,103.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05440943002551328,36978.88397390943,9,5,9,9_1,9_2,9_1_0 -12751,2,59.0,0.0,7,111,0.0,0.0,1800.0,0,34,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,102342,2,1,2,0,1,,180.0,,12,1.0,0.0,5.0,1.0,1.0,4,3,1225.11102559626,0.0,152700.29723851968,0,1,0,1,140.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011787796307877374,152700.29723851968,10,5,10,10_1,10_2,10_0_0 -12752,2,41.0,0.0,6,111,500.0,0.0,0.0,55,67,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,126746,2,1,0,1,1,1140.0,0.0,439.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1184.27778491566,500.0,34319.41509560054,1,4,2,3,90.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014569012863628198,16342.578616952636,4,2,4_0,4_0_0,4_2_0,4_0_0 -12753,2,39.0,0.0,2,111,15.0,10.0,0.0,0,54,0.0,0.0,20.73261341363896,25.0,0.0,18.13652900847449,71,1,1,2,1,1,2,2,2,3,20.0,2,,2,116218,1,3,0,1,1,864.0,0.0,437.0,32,1.0,0.0,4.0,3.0,1.8,1,1,1512.44024964444,15.0,29902.466373015937,0,1,2,3,89.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0008360514376352603,16612.481318342187,4,2,4_0,4_0_0,4_2_0,4_0_1 -12754,2,65.0,0.0,2,111,370.0,1300.0,0.0,0,72,0.0,0.0,511.40446420309434,1670.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,2,106179,2,1,1,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1190.32175024028,370.0,18781.451739754328,0,5,0,1,85.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08891751410595934,18781.451739754328,5,3,5,5_1,5_2,5_0_1 -12755,2,43.0,0.0,2,111,545.0,1162.0,0.0,53,52,0.0,0.0,753.2849540288821,1707.0,0.0,2107.4646707847355,71,2,2,2,2,1,2,2,2,1,30.0,2,,2,129170,1,3,0,0,1,,0.0,305.0,43,3.0,0.0,3.0,3.0,2.0,3,2,1471.20405591024,545.0,26380.81161386103,4,1,2,3,63.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.06470612144105174,13190.405806930516,2,1,2_0,2_0_0,2_2_0,2_0_1 -12756,2,87.0,0.0,2,111,450.0,920.0,0.0,0,77,0.0,0.0,621.9784024091688,1370.0,0.0,1668.560668779653,50,0,0,0,0,0,0,0,0,0,,1,,2,109910,1,1,2,0,2,,140.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1188.67244681182,450.0,17367.101558830444,0,5,0,1,100.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0788847808230506,17367.101558830444,4,2,4_0,4_1_0,4_2_0,4_0_1 -12757,2,51.0,0.0,8,111,0.0,0.0,0.0,77,31,0.0,0.0,0.0,2659.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,122128,2,1,1,0,1,,0.0,1050.0,42,1.0,2.0,5.0,4.0,2.5,2,2,1016.32401940442,0.0,58564.34534112544,6,1,2,3,100.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04540305171195655,23425.738136450174,6,3,6,6_1,6_2,6_0_0 -12758,2,31.0,0.0,1,111,0.0,0.0,0.0,34,37,0.0,0.0,0.0,1572.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,111148,2,1,2,0,1,,193.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1027.8908221959,0.0,47859.82910967991,1,1,1,2,86.0,8,6,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03284591753132805,31906.552739786606,8,4,8,8_1,8_2,8_1_0 -12759,2,22.0,0.0,2,111,0.0,0.0,0.0,35,34,0.0,0.0,0.0,745.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,1,,2,131925,2,2,5,0,1,,0.0,500.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1260.76484485395,0.0,46370.294627601324,1,1,2,3,55.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016066320172927008,30913.529751734215,8,4,8,8_1,8_2,8_0_1 -12761,2,26.0,0.0,2,111,0.0,0.0,1200.0,84,63,0.0,0.0,613.09600180503,1270.0,120.42289029331342,1371.8949295831578,71,2,2,2,2,2,2,2,1,0,,1,,2,127483,2,1,1,0,1,,0.0,561.0,42,1.0,0.0,4.0,2.0,1.5,1,1,1171.93674116142,0.0,29566.66169846914,3,1,2,3,75.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04295378399333315,19711.107798979425,5,3,5,5_1,5_2,5_0_1 -12762,2,49.0,0.0,1,111,320.0,1300.0,0.0,0,37,0.0,0.0,442.2957528242978,1620.0,0.0,2357.7487711016834,10,2,1,2,2,2,2,2,1,2,15.0,1,,1,100480,2,1,1,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,1131.70977083599,320.0,32829.65347042568,0,1,0,1,60.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04934563203535985,32829.65347042568,8,4,8,8_1,8_2,8_1_0 -12763,2,53.0,0.0,2,111,650.0,600.0,0.0,0,37,0.0,0.0,898.4132479243549,1250.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,1,,2,108016,2,1,1,0,1,,200.0,814.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1387.09458354905,650.0,43813.26093383346,0,1,2,3,180.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028530174959762594,43813.26093383346,10,5,10,10_1,10_2,10_0_1 -12764,2,60.0,0.0,2,111,1300.0,400.0,0.0,78,78,0.0,0.0,1796.8264958487098,1770.0,120.42289029331342,725.4611603389795,50,0,0,0,0,0,0,0,0,0,,1,,2,104750,1,1,2,0,2,,185.0,,41,0.0,1.0,3.0,2.0,1.5,4,3,1062.14599082466,1300.0,16367.053426411618,6,5,0,1,45.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10814408396466403,10911.368950941078,2,1,2_0,2_1_0,2_2_0,2_0_1 -12765,2,48.0,0.0,2,111,410.0,1250.0,0.0,37,85,0.0,0.0,566.6914333061316,1660.0,0.0,2267.066126059311,43,0,0,0,0,0,0,0,0,0,,1,,2,103994,2,1,1,0,1,,250.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1148.71575744277,410.0,65463.84319570773,1,6,0,1,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025357509106780356,43642.562130471815,10,5,10,10_1,10_2,10_0_1 -12766,1,37.0,78.0,2,111,200.0,300.0,0.0,53,52,0.0,0.0,276.4348455151861,500.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,113094,1,1,0,0,1,,0.0,415.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1396.19022720762,200.0,21947.148938313974,4,1,2,3,47.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022782002409758608,12192.860521285542,2,1,2_1,2_0_1,2_2_1,2_0_1 -12767,2,54.0,0.0,2,111,348.0,0.0,0.0,0,37,0.0,0.0,480.99663119642383,1003.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,103401,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1516.36265810089,348.0,90463.79170954388,0,1,0,1,73.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011087308867401632,90463.79170954388,10,5,10,10_0,10_2,10_0_1 -12768,2,84.0,0.0,1,111,490.0,844.0,0.0,0,78,0.0,0.0,677.265371512206,1334.0,0.0,1530.7230483152468,31,0,0,0,0,0,0,0,0,0,,1,,1,127503,1,1,1,0,2,,180.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1117.36917298016,490.0,19315.49231575253,0,5,0,1,80.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06906373278987414,19315.49231575253,5,3,5,5_1,5_2,5_1_0 -12769,1,36.0,210.0,7,111,0.0,0.0,1540.0,85,48,0.0,0.0,786.8065356497885,1540.0,0.0,1760.5984929650526,31,2,2,2,2,1,2,2,2,2,180.0,1,,5,101390,2,2,2,0,1,,0.0,441.0,42,1.0,0.0,4.0,4.0,2.1,1,1,955.400514632608,0.0,27828.497730456736,6,1,2,3,76.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.055338955588484964,13251.665585931778,2,1,2_1,2_1_1,2_2_1,2_0_0 -12770,1,22.0,178.0,1,111,610.0,0.0,0.0,0,67,0.0,0.0,843.1262788213177,610.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,2,,1,101657,2,3,0,0,1,,0.0,320.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2144.52224388602,610.0,6625.684021058067,0,1,2,3,25.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09206596602875548,6625.684021058067,1,1,1_1,1_0_1,1_2_1,1_1_0 -12771,2,23.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1680.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,2,,2,119944,2,3,0,0,1,,0.0,530.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1614.58722568908,0.0,24100.937408279537,0,1,2,3,49.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06970683220906004,24100.937408279537,6,3,6,6_0,6_2,6_0_1 -12772,1,57.0,108.0,2,111,0.0,0.0,500.0,0,78,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,20,0,0,0,0,0,0,0,0,0,,2,,2,112290,2,1,0,0,1,,0.0,231.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1834.68985565297,0.0,12027.584358494623,0,7,2,3,29.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04157110730608753,12027.584358494623,2,1,2_1,2_0_1,2_2_1,2_0_1 -12773,2,21.0,0.0,7,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,161.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,103015,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,5,3,2078.98281120218,0.0,5227.064945939244,0,4,3,4,25.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030801224332419334,5227.064945939244,1,1,1_0,1_0_0,1_2_0,1_0_0 -12774,2,60.0,0.0,7,111,700.0,0.0,0.0,0,34,0.0,0.0,967.5219593031513,700.0,0.0,0.0,10,2,2,2,1,2,2,2,2,2,15.0,2,,5,115272,1,2,0,0,1,845.0,80.0,700.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1658.48232151182,700.0,57675.855998756364,0,1,2,3,67.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.012136794294220684,57675.855998756364,10,5,10,10_0,10_2,10_0_0 -12775,2,83.0,0.0,5,111,0.0,0.0,0.0,72,72,0.0,0.0,0.0,580.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,3,116016,2,1,0,1,2,,206.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1393.92129271581,0.0,61567.42739356264,5,5,0,1,105.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.00942056578541795,41044.95159570843,9,5,9,9_0,9_2,9_0_0 -12776,2,36.0,0.0,5,111,250.0,0.0,0.0,0,42,0.0,0.0,345.54355689398267,250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,3,119250,1,2,0,1,2,603.0,0.0,474.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1661.19987501226,250.0,18985.68277116298,0,1,2,3,52.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013167817192211839,18985.68277116298,5,3,5,5_0,5_2,5_0_0 -12777,2,26.0,0.0,1,111,0.0,0.0,400.0,46,52,0.0,0.0,204.36533393501003,400.0,0.0,457.2983098610526,50,1,2,2,2,1,2,2,2,2,20.0,2,,1,125572,2,2,0,1,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,6,3,1395.66478678508,0.0,31132.608150091583,1,1,0,1,79.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.012848265011128639,20755.072100061054,5,3,5,5_0,5_2,5_1_0 -12778,2,74.0,0.0,1,111,350.0,480.0,0.0,78,78,0.0,0.0,483.76097965157567,830.0,0.0,870.5533924067755,70,0,0,0,0,0,0,0,0,0,,1,,1,106888,2,1,1,0,1,,190.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1027.86784327315,350.0,38956.86497085784,5,5,0,1,65.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021305615855405503,25971.243313905226,7,4,7,7_1,7_2,7_1_0 -12779,2,49.0,0.0,1,111,808.0,0.0,0.0,31,37,4480.754631054002,0.0,1116.796775881352,3808.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,133572,2,1,2,0,1,,500.0,,43,2.0,0.0,9.0,5.0,2.8,2,2,1083.73413879552,808.0,204150.10825535227,1,1,1,2,300.0,8,6,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018652941370165373,72910.7529483401,10,5,10,10_1,10_2,10_1_0 -12780,2,51.0,0.0,2,111,890.0,0.0,0.0,85,62,0.0,0.0,1230.1350625425782,890.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,2,,2,112033,2,2,0,0,1,635.0,0.0,318.0,42,2.0,1.0,3.0,3.0,2.0,1,1,1477.78912864282,890.0,39092.21949382474,6,1,2,3,78.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.022766678677341154,19546.10974691237,5,3,5,5_0,5_2,5_0_1 -12781,1,50.0,450.0,2,111,0.0,0.0,0.0,21,68,0.0,0.0,0.0,781.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,114248,2,2,0,1,1,813.0,0.0,491.0,43,2.0,1.0,5.0,6.0,2.6999999999999997,4,2,405.60371761583,0.0,22988.877322034874,4,1,2,3,106.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033972950877919135,8514.399008161065,1,1,1_1,1_0_1,1_2_1,1_0_1 -12782,2,49.0,0.0,9,111,280.0,280.0,0.0,0,42,0.0,0.0,387.00878372126056,560.0,0.0,507.8228122372857,50,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,131139,2,1,0,0,1,,403.0,650.0,32,2.0,0.0,3.0,2.0,1.5,1,1,402.282320776759,280.0,37168.939520806045,0,1,2,3,92.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015066343221509695,24779.293013870698,7,4,7,7_0,7_2,7_0_0 -12783,1,35.0,270.0,2,111,350.0,170.0,0.0,0,68,0.0,0.0,483.76097965157567,520.0,0.0,308.32099314406634,71,2,2,2,1,1,2,2,2,0,,2,,2,121414,1,1,0,1,1,856.0,0.0,296.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1417.05212653734,350.0,7279.365777080063,0,4,2,3,62.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.07143479472308989,7279.365777080063,1,1,1_1,1_0_1,1_2_1,1_0_1 -12784,1,38.0,253.0,5,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,123.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,122339,2,1,0,1,1,481.0,0.0,359.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1251.92580080562,0.0,12349.00270603293,6,4,2,3,65.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009960318491136948,5880.4774790633,1,1,1_1,1_0_1,1_2_1,1_0_0 -12785,2,51.0,0.0,6,111,0.0,0.0,1280.0,77,55,0.0,0.0,653.969068592032,1280.0,0.0,1463.3545915553682,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,131395,2,1,1,0,1,,230.0,,42,1.0,0.0,5.0,5.0,3.0,1,1,1057.26776041005,0.0,73533.26970598653,5,1,1,2,95.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01740708668495115,24511.08990199551,7,4,7,7_1,7_2,7_0_0 -12786,2,47.0,0.0,9,300,2000.0,0.0,0.0,85,64,0.0,0.0,2764.3484551518613,2090.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,121202,2,1,2,0,1,,700.0,649.0,42,1.0,2.0,4.0,3.0,1.8,1,1,2042.8522173971,2000.0,17342.345577688,6,1,2,3,115.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12051426323143476,9634.636432048888,1,1,1_0,1_1_0,1_0_0,1_0_0 -12787,2,41.0,0.0,5,300,1200.0,0.0,0.0,85,62,0.0,0.0,1658.6090730911167,1380.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,108985,2,1,2,0,1,,350.0,,42,1.0,0.0,4.0,5.0,2.8,2,2,1445.09379916009,1200.0,36964.22499348881,6,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03733339466046116,13201.508926246004,2,1,2_0,2_1_0,2_0_0,2_0_0 -12788,2,42.0,0.0,1,300,1400.0,0.0,0.0,56,62,0.0,414.0690019277831,1935.0439186063027,1920.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,112671,2,1,2,0,1,,230.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1467.80601423273,1400.0,48738.45514325281,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03939394456300896,32492.303428835206,8,4,8,8_1,8_0,8_1_0 -12789,2,85.0,0.0,1,300,0.0,0.0,0.0,0,71,4480.754631054002,0.0,0.0,3060.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,125228,1,2,3,0,2,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1716.12304085801,0.0,14602.52046624667,0,5,0,1,90.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2095528650052645,14602.52046624667,3,2,3_0,3_1_0,3_0_0,3_1_0 -12790,2,52.0,0.0,1,300,700.0,0.0,0.0,53,56,1792.3018524216009,0.0,967.5219593031513,2070.0,292.4555907123326,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,118355,1,3,3,0,1,,400.0,495.0,43,2.0,5.0,4.0,2.0,1.5,2,2,1620.28428439109,700.0,21830.806864617873,1,1,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0948201325235916,14553.871243078582,3,2,3_0,3_1_0,3_0_0,3_1_0 -12791,1,52.0,331.0,2,300,750.0,0.0,0.0,0,43,2240.377315527001,0.0,1036.630670681948,2326.0,130.74485231845458,0.0,71,2,2,2,2,1,2,2,1,1,5.0,2,,2,113568,2,3,0,1,1,1428.0,350.0,407.0,32,1.0,3.0,4.0,3.0,1.8,2,2,2119.94533831866,750.0,23677.04021758629,0,1,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09823863027745955,13153.911231992384,2,1,2_1,2_0_1,2_0_1,2_0_1 -12792,2,62.0,0.0,6,300,500.0,0.0,0.0,0,78,1493.5848770180007,0.0,691.0871137879653,1560.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,2,,4,123590,2,1,0,1,1,677.0,310.0,318.0,11,0.0,2.0,2.0,1.0,1.0,3,3,2048.8654144616,500.0,18439.381780295058,0,5,2,3,63.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0846015348338342,18439.381780295058,4,2,4_0,4_0_0,4_0_0,4_0_0 -12793,2,52.0,0.0,7,300,660.0,0.0,0.0,77,21,4480.754631054002,0.0,912.2349902001142,3750.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,130753,2,1,2,0,1,,800.0,,42,2.0,0.0,7.0,4.0,2.5,1,1,1554.48767024763,660.0,51040.56090376953,6,1,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07347097942497433,20416.22436150781,5,3,5,5_1,5_0,5_0_0 -12794,1,40.0,80.0,6,300,2100.0,0.0,0.0,52,46,0.0,0.0,2902.5658779094542,2220.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,4,100170,2,1,1,0,1,,553.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,1500.75853759745,2100.0,40756.322955201336,4,1,1,2,122.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05447007578284691,16981.80123133389,4,2,4_1,4_1_1,4_0_1,4_0_0 -12795,2,63.0,0.0,2,300,582.0,0.0,0.0,78,78,0.0,724.6207533736205,804.4254004491916,1427.0,249.4474156075778,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,103540,2,1,1,0,1,,266.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1339.39261280412,582.0,37205.74418751607,5,5,0,1,85.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038354292627717744,24803.829458344047,7,4,7,7_1,7_0,7_0_1 -12796,2,43.0,0.0,6,300,3200.0,0.0,0.0,52,47,0.0,0.0,4422.957528242978,3260.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,107600,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1462.81448108433,3200.0,60839.25222958486,1,1,0,1,95.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053583827554256655,28971.072490278504,8,4,8,8_1,8_0,8_0_0 -12797,0,61.0,0.0,2,300,500.0,0.0,0.0,0,75,2389.735803228801,0.0,691.0871137879653,2160.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132482,2,1,2,0,1,,200.0,,11,0.0,2.0,7.0,1.0,1.0,2,1,1783.37296824359,500.0,43064.60530496603,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050157199507664306,43064.60530496603,9,5,9,9_1,9_0,9_0_1 -12798,2,64.0,0.0,5,300,700.0,0.0,0.0,77,78,2688.452778632401,0.0,967.5219593031513,2500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,130614,2,1,3,0,1,,215.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1443.01391287331,700.0,25970.926990152373,5,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09626148504240711,17313.95132676825,4,2,4_0,4_1_0,4_0_0,4_0_0 -12799,2,80.0,0.0,2,300,0.0,0.0,0.0,0,72,1642.9433647198007,0.0,0.0,2795.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114482,2,1,1,0,1,,168.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,1523.96346612236,0.0,15874.25876665876,0,5,0,1,80.0,0,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17607121321912886,15874.25876665876,3,2,3_0,3_1_0,3_0_0,3_0_1 -12800,2,31.0,0.0,2,300,730.0,0.0,0.0,42,47,2837.8112663342013,0.0,1008.9871861304293,2630.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,105758,2,1,2,0,1,,384.0,,43,2.0,0.0,4.0,3.0,1.8,2,1,1845.14283234859,730.0,46115.29320982869,1,1,1,2,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0570309720906092,25619.607338793718,7,4,7,7_1,7_0,7_0_1 -12801,2,55.0,0.0,1,300,450.0,0.0,0.0,0,47,3733.962192545002,258.79312620486445,621.9784024091688,3310.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,123296,2,1,2,0,1,,380.0,,32,2.0,1.0,5.0,2.0,1.5,1,1,1488.69022885768,450.0,45542.633193138725,0,1,1,2,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07267915287117548,30361.755462092482,8,4,8,8_1,8_0,8_1_0 -12802,2,64.0,0.0,5,300,850.0,0.0,0.0,74,74,4480.754631054002,517.5862524097289,1174.848093439541,4470.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107817,2,1,2,0,1,,260.0,,41,0.0,2.0,8.0,2.0,1.5,3,2,1660.65689671556,850.0,70141.50831260822,5,5,0,1,150.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06372831305648584,46761.005541738814,10,5,10,10_1,10_0,10_0_0 -12803,2,47.0,0.0,1,300,1200.0,0.0,0.0,0,11,0.0,258.79312620486445,1658.6090730911167,1510.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,123329,1,2,2,0,2,,89.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1610.74882586488,1200.0,27869.0,0,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054182066094944206,27869.0,7,4,7,7_1,7_0,7_1_0 -12804,2,52.0,0.0,2,300,200.0,0.0,0.0,52,47,0.0,0.0,276.4348455151861,200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,2,110622,2,1,2,0,2,,395.0,,43,4.0,0.0,5.0,5.0,3.0,2,1,1402.29715594219,200.0,69221.10544457288,1,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0028892921994744095,23073.701814857628,6,3,6,6_1,6_0,6_0_1 -12805,2,57.0,0.0,1,300,1000.0,0.0,0.0,56,22,0.0,310.55175144583734,1382.1742275759307,1360.0,103.2196202514115,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,110982,2,2,3,0,1,,400.0,,43,3.0,4.0,9.0,3.0,2.0,3,3,1788.47904565251,1000.0,13063.047693986595,4,4,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.10411046731660166,6531.523846993297,1,1,1_0,1_1_0,1_0_0,1_1_0 -12806,1,65.0,243.0,5,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1742.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,109609,2,1,2,0,1,,269.0,460.0,12,1.0,1.0,3.0,1.0,1.0,5,4,1625.3354492902,0.0,11084.189112082391,0,4,2,3,50.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15716079745527994,11084.189112082391,2,1,2_1,2_1_1,2_0_1,2_0_0 -12807,2,22.0,0.0,1,300,0.0,0.0,0.0,54,53,0.0,0.0,0.0,878.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,240.0,1,,1,128446,2,1,2,1,1,350.0,263.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1638.53389187787,0.0,16049.72717974948,4,1,2,3,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054704979727493705,10699.818119832986,2,1,2_0,2_1_0,2_0_0,2_1_0 -12808,2,61.0,0.0,1,300,260.0,0.0,0.0,0,78,2240.377315527001,0.0,359.36529916974195,1820.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100356,2,1,2,0,1,,88.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1584.06818334857,260.0,14212.237592146777,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12805865284757645,14212.237592146777,3,2,3_0,3_1_0,3_0_0,3_1_0 -12809,2,81.0,0.0,1,300,470.0,0.0,0.0,77,78,1792.3018524216009,0.0,649.6218869606873,2532.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,120994,2,1,2,0,1,,260.0,,41,0.0,5.0,3.0,2.0,1.5,1,1,1490.40127777633,470.0,24050.54383827723,5,5,0,1,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10527828464195636,16033.69589218482,4,2,4_0,4_1_0,4_0_0,4_1_0 -12810,2,83.0,0.0,5,300,1300.0,0.0,0.0,0,72,0.0,0.0,1796.8264958487098,1430.0,223.64251054472493,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,133328,2,1,2,0,1,,114.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1594.59086595008,1300.0,14539.204813604285,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09835475999773756,14539.204813604285,3,2,3_0,3_1_0,3_0_0,3_0_0 -12811,2,32.0,0.0,2,300,950.0,0.0,0.0,65,54,2031.275432744481,0.0,1313.065516197134,2370.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,129497,1,3,3,0,1,,430.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2013.80309681611,950.0,35101.72189455743,1,1,1,2,135.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06751805529994447,19500.95660808746,5,3,5,5_1,5_0,5_0_1 -12812,2,64.0,0.0,2,300,970.0,0.0,0.0,77,75,0.0,434.77245202417225,1340.7090007486527,1450.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,108043,2,1,2,0,1,,445.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1454.56025033854,970.0,24757.510200838944,5,5,0,1,75.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05856808654170986,16505.006800559295,4,2,4_0,4_1_0,4_0_0,4_0_1 -12813,2,74.0,0.0,2,300,640.0,0.0,0.0,86,75,1493.5848770180007,103.51725048194578,884.5915056485956,1810.0,120.42289029331342,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,131107,2,1,2,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1359.01300203899,640.0,40118.49209504487,5,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04511635172408579,26745.66139669658,7,4,7,7_1,7_0,7_0_1 -12814,2,61.0,0.0,2,300,318.0,0.0,0.0,0,77,0.0,0.0,439.5314043691459,607.0,497.1745042109654,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,112898,2,1,2,0,1,,186.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1482.64682680645,318.0,18717.42471844222,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03242967497563513,18717.42471844222,5,3,5,5_1,5_0,5_0_1 -12815,2,27.0,0.0,1,300,1680.0,0.0,0.0,46,62,0.0,517.5862524097289,2322.0527023275636,2300.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,120807,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1774.8798107821,1680.0,50082.45280386738,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045924268306251834,27823.584891037433,7,4,7,7_1,7_0,7_1_0 -12816,2,55.0,0.0,1,300,1200.0,0.0,0.0,21,52,2632.443345744226,0.0,1658.6090730911167,2963.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128225,2,1,3,0,2,,836.0,,43,3.0,1.0,5.0,4.0,2.5,1,1,1399.97986969909,1200.0,66647.18344425221,1,4,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04445799277441986,26658.873377700882,7,4,7,7_1,7_0,7_1_0 -12817,2,87.0,0.0,1,300,500.0,0.0,0.0,78,78,2240.377315527001,0.0,691.0871137879653,2180.0,309.6588607542345,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,113065,2,2,4,0,2,,280.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1490.40127777633,500.0,30616.21188415068,5,5,0,1,65.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0712041061202786,20410.807922767122,5,3,5,5_1,5_0,5_1_0 -12818,2,58.0,0.0,1,300,1100.0,0.0,0.0,68,67,0.0,1138.6897553014035,1520.3916503335236,2380.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,105081,2,1,2,0,1,,480.0,,43,4.0,0.0,7.0,4.0,2.5,1,1,1442.665286283,1100.0,81217.31565427719,1,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029304095817831437,32486.926261710876,8,4,8,8_1,8_0,8_1_0 -12819,2,46.0,0.0,8,300,1200.0,0.0,0.0,52,62,0.0,621.1035028916747,1658.6090730911167,1800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,113748,2,2,2,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1167.66129511155,1200.0,48042.44179892295,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03746687163682746,20888.01817344476,5,3,5,5_1,5_0,5_0_0 -12820,2,73.0,0.0,1,300,420.0,0.0,0.0,0,71,0.0,0.0,580.5131755818909,525.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114128,2,1,3,0,1,,50.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1367.7550947086,420.0,10718.168309080254,0,5,1,2,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0489822500319601,10718.168309080254,2,1,2_0,2_1_0,2_0_0,2_1_0 -12821,2,69.0,0.0,2,300,700.0,0.0,0.0,75,75,0.0,1035.1725048194578,967.5219593031513,1820.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109991,2,2,2,0,1,,100.0,,41,1.0,1.0,4.0,3.0,2.0,4,3,1537.85487589014,700.0,58284.22108306267,5,5,0,1,84.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031226290172193617,29142.110541531336,8,4,8,8_1,8_0,8_0_1 -12822,2,59.0,0.0,2,300,210.0,0.0,0.0,0,11,3733.962192545002,0.0,290.25658779094545,2780.0,120.42289029331342,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,128019,2,2,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1530.98252692601,210.0,14277.890510215286,0,1,0,1,110.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.19470663386940923,14277.890510215286,3,2,3_0,3_1_0,3_0_0,3_0_1 -12823,2,36.0,0.0,1,300,765.0,0.0,0.0,34,37,4182.037655650402,0.0,1057.3632840955868,3665.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,107573,2,1,1,0,1,,80.0,,43,2.0,0.0,9.0,5.0,2.4,1,1,1384.63176732003,765.0,113160.0,1,1,1,2,220.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032387769529869215,47150.0,10,5,10,10_1,10_0,10_1_0 -12824,2,62.0,0.0,5,300,940.0,0.0,0.0,78,77,0.0,207.03450096389156,1299.2437739213747,1280.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127156,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1238.1424768297,940.0,32598.264059422552,5,5,0,1,77.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03926589457851867,21732.176039615035,6,3,6,6_1,6_0,6_0_0 -12825,1,34.0,130.0,9,300,1800.0,0.0,0.0,63,53,0.0,0.0,2487.913609636675,1880.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,117293,2,1,2,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1360.26888249251,1800.0,36696.642233597384,1,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0512308452646051,17474.591539808276,4,2,4_1,4_1_1,4_0_1,4_0_0 -12826,2,50.0,0.0,8,112,960.0,0.0,0.0,56,56,0.0,0.0,1326.8872584728933,1140.0,309.6588607542345,0.0,43,0,0,0,0,0,0,0,0,0,,1,2001.0,6,116747,2,1,2,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1346.29291852909,960.0,40610.17320232658,1,1,1,2,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028071783745425856,27073.448801551054,7,4,7,7_1,7_0,7_0_0 -12827,1,44.0,331.0,7,112,1900.0,0.0,0.0,85,65,0.0,0.0,2626.131032394268,1980.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,109623,2,1,2,0,1,,623.0,456.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,4,4,1443.40332867108,1900.0,35934.14706193775,6,1,2,3,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05510079303085115,11591.660342560566,2,1,2_1,2_1_1,2_0_1,2_0_0 -12828,2,47.0,0.0,5,112,150.0,0.0,0.0,0,55,1045.5094139126004,0.0,207.32613413638958,851.0,1.7203270041901917,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,3,110152,2,1,1,0,1,,194.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1606.69199636573,150.0,15422.065165490916,0,1,0,1,26.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055180677222414716,15422.065165490916,3,2,3_0,3_1_0,3_0_0,3_0_0 -12829,2,77.0,0.0,2,112,200.0,0.0,0.0,0,77,1792.3018524216009,0.0,276.4348455151861,1540.0,240.84578058662683,0.0,31,2,2,1,2,1,2,2,2,0,,1,,2,114034,2,2,2,0,1,,300.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1485.91876926817,200.0,17204.643771259784,0,5,0,1,90.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08951071701772503,17204.643771259784,4,2,4_0,4_1_0,4_0_0,4_0_1 -12830,2,30.0,0.0,9,112,1600.0,0.0,0.0,56,47,0.0,0.0,2211.478764121489,1660.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,100269,1,2,1,0,1,,182.0,490.0,43,2.0,0.0,3.0,3.0,1.8,3,3,1569.42369492481,1600.0,49115.0,1,1,2,3,65.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033798228647052835,27286.11111111111,7,4,7,7_1,7_0,7_0_0 -12831,2,62.0,0.0,5,112,780.0,0.0,0.0,75,78,0.0,621.1035028916747,1078.0958975092258,2130.0,1290.2452531426438,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,120257,2,1,2,0,1,,240.0,,41,0.0,6.0,5.0,3.0,2.0,2,2,1398.06082810953,780.0,42143.7429629451,5,5,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05054131053031533,21071.87148147255,5,3,5,5_1,5_0,5_0_0 -12832,2,55.0,0.0,1,112,707.0,0.0,0.0,77,63,0.0,93.1655254337512,977.1971788961829,1007.0,361.26867087994026,0.0,70,2,2,1,2,1,2,2,2,2,10.0,1,,1,131160,1,2,2,0,2,,313.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1424.71867468882,707.0,44088.54242319556,5,1,0,1,120.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.022840401261943376,29392.36161546371,8,4,8,8_1,8_0,8_1_0 -12833,2,52.0,0.0,1,112,800.0,0.0,0.0,52,62,2240.377315527001,310.55175144583734,1105.7393820607444,2700.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,120294,2,1,2,0,1,,400.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,1323.75953543196,800.0,40534.18719927932,1,1,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06661043890496478,27022.791466186212,7,4,7,7_1,7_0,7_1_0 -12835,2,46.0,0.0,1,112,960.0,0.0,0.0,52,37,2240.377315527001,0.0,1326.8872584728933,2520.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,116517,2,1,1,0,1,,800.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,1239.61234007425,960.0,59746.72252245176,1,1,1,2,120.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042178045817543024,21338.115186589916,6,3,6,6_1,6_0,6_1_0 -12836,2,66.0,0.0,1,112,480.0,0.0,0.0,77,78,0.0,1066.2276799640415,663.4436292364467,1690.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132992,2,1,1,0,1,,160.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1235.11517465425,480.0,14155.19165786331,5,5,0,1,85.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1193908242889239,9436.79443857554,1,1,1_0,1_1_0,1_0_0,1_1_0 -12837,2,74.0,0.0,7,112,290.0,960.0,0.0,77,78,0.0,0.0,400.8305259970199,1250.0,0.0,1741.106784813551,50,0,0,0,0,0,0,0,0,0,,1,,5,105719,2,1,2,0,1,,120.0,380.0,41,0.0,5.0,3.0,2.0,1.5,3,2,1077.39909550956,290.0,22071.583452073315,5,5,2,3,50.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05663390679306156,14714.388968048877,3,2,3_0,3_1_0,3_0_0,3_0_0 -12838,2,81.0,0.0,1,112,400.0,0.0,0.0,77,78,2987.1697540360015,0.0,552.8696910303722,2430.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,113152,2,1,2,0,1,,280.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,1382.64333399062,400.0,29382.67574058059,5,5,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0827017941270717,19588.450493720393,5,3,5,5_1,5_0,5_1_0 -12839,2,62.0,0.0,2,112,0.0,0.0,0.0,78,77,0.0,0.0,0.0,948.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,108122,2,1,1,0,1,,386.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1301.32772188166,0.0,40911.29798700649,5,5,0,1,70.0,8,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023172083181058855,27274.198658004327,7,4,7,7_1,7_0,7_0_1 -12840,2,35.0,0.0,9,112,1500.0,0.0,0.0,0,42,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,124611,2,1,1,0,1,,200.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,1228.51212501165,1500.0,26026.13380281039,0,1,1,2,108.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05763437671399449,20020.10292523876,5,3,5,5_1,5_0,5_0_0 -12841,2,82.0,0.0,1,120,50.0,0.0,0.0,0,71,4480.754631054002,0.0,69.10871137879653,3120.0,120.42289029331342,0.0,44,2,2,2,2,1,1,2,2,0,,1,,1,117630,2,1,2,0,2,,80.0,,11,0.0,4.0,8.0,1.0,1.0,3,3,1534.51007557832,50.0,23421.122106544888,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1332130879898421,23421.122106544888,6,3,6,6_1,6_0,6_1_0 -12842,1,29.0,40.0,5,120,660.0,0.0,0.0,63,52,0.0,621.1035028916747,912.2349902001142,1345.0,146.2277953561663,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,3,104153,2,1,2,0,1,,172.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,1289.64684651124,660.0,62098.67357305322,1,1,1,2,59.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021659077764643955,25874.44732210551,7,4,7,7_1,7_0,7_0_0 -12843,2,82.0,0.0,2,120,420.0,0.0,0.0,86,72,4480.754631054002,0.0,580.5131755818909,3570.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,118906,2,1,1,0,1,,156.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1249.0164381135,420.0,15029.11154743314,5,5,0,1,97.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.23753899149213045,10019.40769828876,2,1,2_0,2_1_0,2_0_0,2_0_1 -12844,2,39.0,0.0,9,120,1170.0,0.0,0.0,43,63,0.0,0.0,1617.1438462638387,1275.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,102482,2,1,1,0,1,,320.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,1332.36223079022,1170.0,46015.15692527097,1,1,1,2,130.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02770826147720438,19172.982052196236,5,3,5,5_1,5_0,5_0_0 -12845,2,31.0,0.0,1,120,2400.0,0.0,0.0,48,43,0.0,0.0,3317.2181461822333,2470.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,127637,2,1,1,0,1,,200.0,470.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1703.40808983861,2400.0,84756.7113922944,1,1,2,3,92.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0291422349855891,47087.061884607996,10,5,10,10_1,10_0,10_1_0 -12846,1,24.0,350.0,7,120,0.0,0.0,0.0,62,64,0.0,0.0,0.0,3220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,126731,2,2,1,0,1,,281.0,550.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1394.83533280934,0.0,15339.217860371076,1,1,2,3,50.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.20991943848185907,8521.787700206154,1,1,1_1,1_1_1,1_0_1,1_0_0 -12847,2,52.0,0.0,1,400,600.0,0.0,0.0,0,37,1374.0980868565607,0.0,829.3045365455583,1555.0,60.21144514665671,0.0,70,2,2,2,2,1,2,2,2,2,50.0,1,,1,115384,2,2,3,0,1,,60.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1371.55188486807,600.0,32502.755911940905,0,1,1,2,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0478420969659598,32502.755911940905,8,4,8,8_1,8_0,8_1_0 -12848,2,47.0,0.0,8,112,673.0,0.0,0.0,69,11,1374.0980868565607,0.0,930.2032551586012,1733.0,240.84578058662683,0.0,10,0,0,0,0,0,0,0,0,1,3.0,1,2001.0,6,114337,2,1,1,0,1,,327.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1252.03872940509,673.0,44428.395464890826,1,1,1,2,180.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039006585357544345,17771.35818595633,4,2,4_0,4_1_0,4_0_0,4_0_0 -12849,2,74.0,0.0,2,112,653.0,0.0,0.0,77,78,0.0,103.51725048194578,902.5597706070827,828.0,129.02452531426437,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,126246,2,2,1,0,1,,134.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1193.75122638448,653.0,21387.275093153195,5,5,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03871460933632781,14258.183395435464,3,2,3_0,3_1_0,3_0_0,3_0_1 -12850,2,62.0,0.0,6,112,560.0,0.0,0.0,78,72,0.0,517.5862524097289,774.0175674425211,1270.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128189,2,1,1,0,1,,260.0,,41,0.0,2.0,5.0,2.0,1.5,4,4,1082.23772301175,560.0,30918.53257832532,5,5,0,1,104.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04107568807745754,20612.35505221688,5,3,5,5_1,5_0,5_0_0 -12851,2,84.0,0.0,1,112,300.0,0.0,0.0,71,71,4032.679167948602,0.0,414.65226827277917,3000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130109,1,2,4,0,2,,100.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1280.94564267986,300.0,27954.732544652412,5,5,0,1,210.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1073163549394746,18636.48836310161,4,2,4_0,4_1_0,4_0_0,4_1_0 -12852,2,64.0,0.0,9,112,1404.0,0.0,0.0,0,75,0.0,0.0,1940.5726155166064,1404.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2008.0,6,101551,2,1,1,0,1,,100.0,700.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1408.02688701208,1404.0,25212.012369999677,0,5,2,3,83.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05568774040705494,25212.012369999677,7,4,7,7_1,7_0,7_0_0 -12853,2,51.0,0.0,7,112,570.0,0.0,0.0,55,69,1792.3018524216009,0.0,787.8393097182804,1770.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,5,122290,2,1,1,0,1,,130.0,,43,2.0,0.0,4.0,4.0,2.5,5,5,1125.79701377359,570.0,31697.77235726588,1,1,1,2,83.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055839886161409516,12679.108942906352,2,1,2_0,2_1_0,2_0_0,2_0_0 -12854,2,42.0,0.0,1,112,600.0,0.0,0.0,85,63,0.0,828.1380038555662,829.3045365455583,1540.0,240.84578058662683,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,107105,2,1,3,0,1,,160.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,1240.74030941232,600.0,18137.52706854479,6,1,1,2,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08490683400113361,12091.684712363194,2,1,2_0,2_1_0,2_0_0,2_1_0 -12855,2,56.0,0.0,5,400,550.0,0.0,0.0,78,56,2240.377315527001,351.95865163861566,760.1958251667618,2450.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,103182,2,1,3,0,1,,180.0,,42,1.0,3.0,5.0,2.0,1.5,4,3,1196.37850697345,550.0,35160.98626582723,5,1,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06967950163505912,23440.65751055149,6,3,6,6_1,6_0,6_0_0 -12856,2,65.0,0.0,1,400,490.0,0.0,0.0,75,90,0.0,931.655254337512,677.265371512206,1490.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119950,2,2,3,0,1,,120.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1075.86667213184,490.0,21300.518588108353,5,5,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06995134854753428,14200.345725405568,3,2,3_0,3_1_0,3_0_0,3_1_0 -12857,2,30.0,0.0,5,400,400.0,0.0,0.0,0,67,2240.377315527001,331.2552015422265,552.8696910303722,2340.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119120,2,1,2,0,2,,140.0,,22,1.0,0.0,5.0,3.0,2.0,1,1,1492.57437281636,400.0,48309.1381082559,0,1,0,1,150.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048438040744098895,24154.56905412795,6,3,6,6_1,6_0,6_0_0 -12858,0,73.0,0.0,1,400,400.0,0.0,0.0,0,71,0.0,1035.1725048194578,552.8696910303722,1460.0,103.2196202514115,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,128593,2,3,4,0,1,,150.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,1390.34544820941,400.0,18114.6706381768,0,5,5,0,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.08059765640579958,12076.447092117867,2,1,2_0,2_1_0,2_0_0,2_1_0 -12859,2,30.0,0.0,9,400,650.0,0.0,0.0,54,43,0.0,74.53242034700096,898.4132479243549,722.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,132785,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1272.0657189032,650.0,46655.18685526954,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015475235416798093,22216.755645366447,6,3,6,6_1,6_0,6_0_0 -12860,2,62.0,0.0,5,400,280.0,0.0,0.0,56,78,0.0,931.655254337512,387.00878372126056,1570.0,670.9275316341748,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,116925,2,1,2,0,1,,100.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1466.09638631823,280.0,20916.76726236872,1,6,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07505939996877917,13944.511508245814,3,2,3_0,3_1_0,3_0_0,3_0_0 -12861,2,61.0,0.0,7,400,1000.0,0.0,0.0,0,77,0.0,931.655254337512,1382.1742275759307,2020.0,206.439240502823,0.0,20,2,2,2,2,2,2,2,1,0,,1,,5,117600,2,2,3,0,1,,240.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1327.47683050623,1000.0,9554.693238992686,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.21141442738908495,9554.693238992686,1,1,1_0,1_1_0,1_0_0,1_0_0 -12862,2,72.0,0.0,1,400,250.0,0.0,0.0,77,78,0.0,1821.9036084822458,345.54355689398267,2470.0,791.3504219274881,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,116455,2,2,3,0,2,,80.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1326.49115808739,250.0,23316.0,5,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10593583805112369,15544.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -12863,2,71.0,0.0,2,400,1700.0,0.0,0.0,78,78,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,118585,2,2,4,0,1,,110.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1250.604329284,1700.0,28865.887820040112,5,5,0,1,82.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05889304394856606,19243.925213360075,5,3,5,5_1,5_0,5_0_1 -12864,2,26.0,0.0,1,400,880.0,0.0,0.0,64,34,0.0,496.8828023133397,1216.313320266819,1720.0,619.317721508469,0.0,20,2,2,2,1,2,2,2,2,2,60.0,1,,1,122153,1,2,4,0,1,,120.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,1336.33867470348,880.0,51098.18550935232,1,1,1,2,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.033660686438370585,34065.45700623488,9,5,9,9_1,9_0,9_1_0 -12865,2,46.0,0.0,2,400,900.0,0.0,0.0,62,38,3285.8867294396014,82.81380038555662,1243.9568048183376,3180.0,0.0,0.0,43,2,2,2,2,1,2,2,2,2,25.0,1,,2,127685,2,3,3,0,1,,142.0,492.0,43,2.0,0.0,5.0,3.0,2.0,1,1,1518.90053006509,900.0,71354.18220532009,1,1,2,3,150.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.04456641365252593,35677.091102660044,9,5,9,9_1,9_0,9_0_1 -12866,2,77.0,0.0,7,400,600.0,0.0,0.0,71,71,2240.377315527001,465.827627168756,829.3045365455583,2655.0,180.63433543997013,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,102311,2,1,1,0,1,,90.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1267.91807587371,600.0,39061.00689266174,5,5,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06797059807740866,26040.671261774492,7,4,7,7_1,7_0,7_0_0 -12867,1,29.0,459.0,1,400,700.0,0.0,0.0,85,63,0.0,207.03450096389156,967.5219593031513,1020.0,206.439240502823,0.0,30,0,0,0,0,0,0,0,0,0,,1,,1,116588,2,1,2,0,1,,220.0,459.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1318.93311846967,700.0,13684.867251224963,6,4,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07453488450234674,5702.0280213437345,1,1,1_1,1_1_1,1_0_1,1_1_0 -12868,2,66.0,0.0,5,400,1500.0,0.0,0.0,77,72,4480.754631054002,0.0,2073.261341363896,4500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,120327,2,1,1,0,1,,180.0,,41,0.0,3.0,9.0,2.0,1.5,3,2,1382.47596978227,1500.0,50624.28061445134,6,5,0,1,320.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.088890152025497,33749.52040963423,9,5,9,9_1,9_0,9_0_0 -12869,2,42.0,0.0,1,400,690.0,0.0,0.0,56,68,2987.1697540360015,0.0,953.7002170273921,2780.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,113913,1,1,2,0,1,,120.0,,43,3.0,0.0,5.0,6.0,3.0999999999999996,1,1,1241.43502158677,690.0,42432.829282931256,1,1,0,1,88.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.065515310833121,13688.009446106858,3,2,3_0,3_1_0,3_0_0,3_1_0 -12870,2,65.0,0.0,6,400,780.0,0.0,0.0,72,71,0.0,0.0,1078.0958975092258,1020.0,412.878481005646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,108546,2,1,1,0,1,,120.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1382.47596978227,780.0,60431.44983857512,5,5,0,1,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016878628639965292,40287.633225716745,9,5,9,9_1,9_0,9_0_0 -12871,2,38.0,0.0,9,400,400.0,0.0,0.0,46,11,0.0,0.0,552.8696910303722,540.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,127619,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,1272.0657189032,400.0,73492.79197412144,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007347659348554166,34996.56760672449,9,5,9,9_1,9_0,9_0_0 -12872,2,63.0,0.0,7,400,2000.0,0.0,0.0,37,75,0.0,621.1035028916747,2764.3484551518613,2690.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,121103,2,1,4,0,1,,300.0,,42,1.0,3.0,5.0,2.0,1.5,3,2,1185.99656551823,2000.0,70062.87502504753,1,5,0,1,170.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03839408529893076,46708.58335003169,10,5,10,10_1,10_0,10_0_0 -12873,2,83.0,0.0,1,400,400.0,0.0,0.0,0,78,1792.3018524216009,0.0,552.8696910303722,1600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,129292,2,1,2,0,2,,80.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1245.97773837251,400.0,18037.83041190063,0,5,0,1,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08870246384755812,18037.83041190063,4,2,4_0,4_1_0,4_0_0,4_1_0 -12874,2,57.0,0.0,1,400,2000.0,0.0,0.0,34,37,0.0,0.0,2764.3484551518613,2200.0,344.06540083803833,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,103748,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1158.33437013364,2000.0,211474.608985326,1,1,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01040314017155911,91945.48216753305,10,5,10,10_1,10_0,10_1_0 -12875,2,39.0,0.0,1,400,900.0,0.0,0.0,55,63,0.0,414.0690019277831,1243.9568048183376,1400.0,172.03270041901916,0.0,44,0,0,0,0,0,0,0,0,2,40.0,1,,1,132175,2,2,1,0,1,,160.0,,43,2.0,1.0,5.0,3.0,1.8,1,1,1339.16563961229,900.0,47278.691093997266,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02961164887616254,26265.939496665145,7,4,7,7_1,7_0,7_1_0 -12876,2,77.0,0.0,1,400,250.0,0.0,0.0,78,78,0.0,1345.724256265295,345.54355689398267,1850.0,516.0981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,111701,2,1,4,0,2,,50.0,110.0,41,0.0,1.0,3.0,2.0,1.5,1,1,1263.18353483411,250.0,15730.42020204735,5,5,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11760652139217606,10486.9468013649,2,1,2_0,2_1_0,2_0_0,2_1_0 -12877,2,58.0,0.0,1,400,740.0,0.0,0.0,75,75,0.0,931.655254337512,1022.8089284061887,1710.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106397,2,1,1,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1336.33867470348,740.0,34666.631680549566,7,7,1,2,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049326972858439865,23111.087787033044,6,3,6,6_1,6_0,6_1_0 -12878,2,76.0,0.0,1,400,400.0,0.0,0.0,0,78,0.0,931.655254337512,552.8696910303722,1420.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132731,1,2,4,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1484.6355551422,400.0,23855.849744959327,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059524184431956444,23855.849744959327,6,3,6,6_1,6_0,6_1_0 -12879,2,77.0,0.0,2,400,595.0,0.0,0.0,78,75,149.35848770180007,310.55175144583734,822.3936654076787,1175.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,109200,2,1,3,0,1,,110.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1228.21547931765,595.0,31700.936937674436,5,5,0,1,75.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037065150544607135,21133.957958449624,5,3,5,5_1,5_0,5_0_1 -12880,2,67.0,0.0,5,400,600.0,0.0,0.0,74,74,0.0,207.03450096389156,829.3045365455583,870.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,126728,2,1,2,0,1,,90.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,1242.35348094793,600.0,67035.0,5,5,0,1,130.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012978294920563885,44690.0,10,5,10,10_1,10_0,10_0_0 -12881,2,45.0,0.0,9,400,1400.0,0.0,0.0,56,68,0.0,207.03450096389156,1935.0439186063027,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,5.0,1,2011.0,6,112103,2,1,1,0,1,,290.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,1311.49902137752,1400.0,20878.441569555016,1,1,1,2,127.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07663407226395302,9077.583291110877,1,1,1_0,1_1_0,1_0_0,1_0_0 -12882,2,81.0,0.0,1,400,400.0,0.0,0.0,0,78,0.0,207.03450096389156,552.8696910303722,4100.0,6021.144514665671,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,123806,2,1,1,0,1,,88.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1493.17437548873,400.0,16770.548969133135,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24447619499792247,16770.548969133135,4,2,4_0,4_1_0,4_0_0,4_1_0 -12883,2,36.0,0.0,9,112,2500.0,0.0,0.0,11,11,0.0,207.03450096389156,3455.435568939826,2700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,3.0,1,2009.0,6,127591,2,1,1,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1716.35513511122,2500.0,48426.40266319612,1,1,1,2,120.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0557547092394701,23060.191744379103,6,3,6,6_1,6_0,6_0_0 -12884,2,78.0,0.0,8,112,560.0,1700.0,0.0,72,72,0.0,0.0,774.0175674425211,2260.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,122466,2,1,1,0,1,,350.0,,41,0.0,2.0,8.0,2.0,1.5,3,2,1730.84529478485,560.0,22052.47799771769,5,5,0,1,120.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10248281396013172,14701.65199847846,3,2,3_0,3_1_0,3_0_0,3_0_0 -12885,2,36.0,0.0,1,112,530.0,0.0,0.0,46,63,1941.6603401234008,0.0,732.5523406152432,1986.0,268.3710126536699,0.0,42,2,2,2,1,2,2,2,2,2,25.0,1,,1,124469,2,3,3,0,1,,450.0,600.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2169.17754425613,530.0,26107.359164719077,4,1,2,3,80.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.07607050515794174,14504.08842484393,3,2,3_0,3_1_0,3_0_0,3_1_0 -12886,2,48.0,0.0,1,112,1500.0,0.0,0.0,77,21,0.0,0.0,2073.261341363896,1620.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113706,2,1,2,0,1,,260.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1491.65956190867,1500.0,47159.553075112926,5,1,0,1,60.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03435147057945525,31439.702050075284,8,4,8,8_1,8_0,8_1_0 -12887,2,81.0,0.0,1,112,300.0,0.0,0.0,77,78,2688.452778632401,0.0,414.65226827277917,2140.0,68.81308016760767,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,104328,2,1,2,0,1,,100.0,,41,0.0,7.0,6.0,2.0,1.5,2,2,1723.14159331787,300.0,30379.89335950182,5,5,0,1,110.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07044132692225791,20253.26223966788,5,3,5,5_1,5_0,5_1_0 -12888,2,48.0,0.0,1,112,2000.0,0.0,0.0,63,63,0.0,0.0,2764.3484551518613,2174.0,299.3368987290934,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,131575,2,1,2,0,1,,250.0,,43,3.0,1.0,5.0,4.0,2.5,1,1,1583.43098989123,2000.0,32452.947822327973,1,1,0,1,120.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0669892920637633,12981.17912893119,2,1,2_0,2_1_0,2_0_0,2_1_0 -12889,2,67.0,0.0,5,112,0.0,0.0,0.0,78,78,0.0,0.0,0.0,2418.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,104006,2,1,2,0,1,,154.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1572.31195805807,0.0,30419.735383742962,5,5,0,1,100.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07948787093303374,20279.823589161973,5,3,5,5_1,5_0,5_0_0 -12890,2,24.0,0.0,1,112,0.0,0.0,0.0,52,53,0.0,0.0,0.0,1506.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,119015,2,1,1,0,1,,602.0,,43,2.0,0.0,6.0,3.0,1.8,4,3,1989.67316566119,0.0,43551.33840142732,1,1,1,2,120.0,8,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03457987871965477,24195.188000792954,7,4,7,7_1,7_0,7_1_0 -12891,2,59.0,0.0,6,112,650.0,0.0,0.0,56,78,0.0,263.96898872896173,898.4132479243549,905.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,109203,2,1,2,0,1,,190.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1558.62337972055,650.0,21008.934839494897,1,5,0,1,80.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04307691022481929,14005.956559663266,3,2,3_0,3_1_0,3_0_0,3_0_0 -12892,2,67.0,0.0,2,112,380.0,700.0,0.0,78,77,0.0,0.0,525.2262064788536,1080.0,0.0,1269.5570305932142,70,0,0,0,0,0,0,0,0,0,,1,,2,103472,2,1,1,0,1,,160.0,470.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1810.28984886204,380.0,29020.729010907537,5,5,2,3,71.0,8,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037214778429379855,19347.15267393836,5,3,5,5_1,5_0,5_0_1 -12893,2,77.0,0.0,1,112,200.0,0.0,0.0,0,78,0.0,828.1380038555662,276.4348455151861,1040.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119300,2,1,2,0,1,,80.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1756.73677325854,200.0,17352.309294110823,0,5,0,1,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05993438581416735,17352.309294110823,4,2,4_0,4_1_0,4_0_0,4_1_0 -12894,2,52.0,0.0,1,112,400.0,1460.0,0.0,85,46,0.0,0.0,552.8696910303722,1860.0,0.0,2647.9332352372753,50,0,0,0,0,0,0,0,0,0,,1,,1,121204,2,1,2,0,1,,190.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,1814.47379311269,400.0,28905.24196717697,6,4,0,1,110.0,8,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06434818992735306,16058.467759542762,4,2,4_0,4_1_0,4_0_0,4_1_0 -12895,2,77.0,0.0,5,112,400.0,0.0,0.0,78,75,2389.735803228801,0.0,552.8696910303722,2030.0,51.60981012570575,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,123558,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1554.81249039527,400.0,34498.571920100534,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058843015435581666,22999.047946733688,6,3,6,6_1,6_0,6_0_0 -12896,2,55.0,0.0,7,112,1666.8,0.0,0.0,34,34,0.0,0.0,2303.808002523561,1667.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,35.0,1,,5,100375,2,1,2,0,1,,250.0,,43,2.0,1.0,5.0,3.0,2.0,5,4,1682.49278098315,1666.8,64587.45605171953,1,1,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0258099653075842,32293.728025859764,8,4,8,8_1,8_0,8_0_0 -12897,0,45.0,0.0,2,112,200.0,0.0,0.0,0,68,0.0,310.55175144583734,276.4348455151861,530.0,51.60981012570575,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,124914,2,1,2,0,1,,200.0,,12,1.0,1.0,7.0,1.0,1.0,2,2,2029.82778157737,200.0,21288.867822372384,0,1,5,0,120.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024895640501982223,21288.867822372384,6,3,6,6_1,6_0,6_0_1 -12898,2,83.0,0.0,9,112,900.0,0.0,0.0,0,71,0.0,0.0,1243.9568048183376,952.0,89.45700421788997,0.0,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,131415,2,1,1,0,1,,200.0,,21,0.0,3.0,4.0,2.0,1.5,3,2,1792.91693527014,900.0,22341.443335109972,0,5,0,1,90.0,8,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0426113920090344,14894.295556739982,3,2,3_0,3_1_0,3_1_0,3_0_0 -12899,2,74.0,0.0,2,112,350.0,0.0,0.0,86,75,3584.6037048432017,0.0,483.76097965157567,2810.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,114751,2,1,1,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2037.93364689967,350.0,28941.43040813624,5,5,0,1,100.0,8,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0970926440183838,19294.286938757494,5,3,5,5_1,5_1,5_0_1 -12900,2,66.0,0.0,1,112,400.0,0.0,0.0,77,77,4182.037655650402,0.0,552.8696910303722,3200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110906,2,1,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,2034.35583755457,400.0,43401.549228752236,5,5,0,1,160.0,8,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07373008698685105,28934.36615250149,8,4,8,8_1,8_1,8_1_0 -12901,2,43.0,0.0,1,112,300.0,0.0,0.0,52,67,2240.377315527001,0.0,414.65226827277917,1908.0,185.7953164525407,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,108896,2,1,2,0,1,,100.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,2152.33081059867,300.0,31649.475247744645,1,1,1,2,97.0,8,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060285359711800116,21099.650165163097,5,3,5,5_1,5_1,5_1_0 -12902,2,64.0,0.0,1,112,400.0,0.0,0.0,74,45,4480.754631054002,0.0,552.8696910303722,3440.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,1,104818,2,1,1,0,1,,250.0,420.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1943.99675734344,400.0,56323.2619180578,5,1,2,3,100.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06107600808001324,37548.8412787052,9,5,9,9_1,9_0,9_1_0 -12903,2,76.0,0.0,5,112,1800.0,0.0,0.0,0,86,0.0,0.0,2487.913609636675,1825.0,43.00817510475479,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,103265,2,1,2,0,1,,200.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1697.18813775459,1800.0,16662.204030941033,0,6,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10952932736935939,16662.204030941033,4,2,4_0,4_1_0,4_0_0,4_0_0 -12904,2,57.0,0.0,1,112,1300.0,0.0,0.0,35,75,0.0,103.51725048194578,1796.8264958487098,1440.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125971,2,1,2,0,1,,300.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,1797.88887827087,1300.0,33679.556219908685,4,5,0,1,130.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04275590778564909,22453.037479939125,6,3,6,6_1,6_0,6_1_0 -12905,2,74.0,0.0,5,112,500.0,0.0,0.0,86,77,2240.377315527001,310.55175144583734,691.0871137879653,2340.0,68.81308016760767,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,120465,1,2,2,0,2,,300.0,,41,1.0,0.0,5.0,3.0,2.0,2,2,1621.16882861625,500.0,11579.485876820649,6,5,0,1,80.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20208151077623562,5789.742938410324,1,1,1_0,1_1_0,1_0_0,1_0_0 -12906,2,84.0,0.0,1,300,230.0,0.0,0.0,71,78,0.0,910.9518042411229,317.900072342464,1170.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,131913,2,1,2,0,1,,120.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,2859.41357289009,230.0,31312.407557049693,5,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03736537977376273,20874.93837136646,5,3,5,5_1,5_0,5_1_0 -12907,2,65.0,0.0,6,300,1416.0,0.0,0.0,0,77,0.0,0.0,1957.1587062475178,1456.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124797,2,1,2,0,1,,160.0,,21,0.0,0.0,4.0,2.0,1.5,3,3,3101.69872227203,1416.0,50074.37122282947,0,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029076750530143317,33382.914148552976,8,4,8,8_1,8_0,8_0_0 -12908,2,63.0,0.0,1,300,612.0,0.0,0.0,0,75,3642.853515046904,517.5862524097289,845.8906272764696,3631.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127937,2,3,4,0,1,,205.0,410.0,11,0.0,0.0,3.0,1.0,1.0,1,1,3397.99980155175,612.0,20099.282547996772,0,5,2,3,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1806532144283871,20099.282547996772,5,3,5,5_1,5_0,5_1_0 -12909,2,47.0,0.0,2,211,0.0,0.0,3000.0,46,34,0.0,0.0,1532.740004512575,3000.0,0.0,3429.737323957894,60,0,0,0,0,0,0,0,0,2,2.0,1,,2,127818,2,1,2,0,1,,975.0,,43,2.0,2.0,8.0,5.0,2.8,2,2,2330.32731139073,0.0,62354.885985933666,1,1,1,2,175.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04811170692665135,22269.602137833455,6,3,6,6_1,6_1,6_0_1 -12910,2,65.0,0.0,1,211,0.0,0.0,2260.0,0,34,0.0,0.0,1154.6641367328066,2260.0,0.0,2583.735450714947,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,129216,2,1,1,0,1,,114.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,2398.29316141082,0.0,65965.73589169225,0,1,0,1,120.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03426021053885681,65965.73589169225,10,5,10,10_1,10_1,10_1_0 -12911,1,19.0,352.0,1,211,0.0,0.0,0.0,81,85,0.0,0.0,0.0,215.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,107540,2,1,0,0,2,,217.0,390.0,42,1.0,0.0,2.0,3.0,1.8,1,1,3674.67410834498,0.0,8882.208942963309,4,6,2,3,30.0,1,2,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.024205690429105246,4934.560523868505,1,1,1_1,1_0_1,1_1_1,1_1_0 -12912,1,31.0,349.0,2,211,0.0,0.0,0.0,68,63,0.0,0.0,0.0,141.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,121280,1,2,0,1,1,,302.0,230.0,43,2.0,0.0,3.0,3.0,1.8,2,2,3082.10275363111,0.0,26569.668482981142,1,1,2,3,50.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.005306803134947496,14760.926934989522,3,2,3_1,3_0_1,3_1_1,3_0_1 -12913,1,66.0,209.0,9,211,0.0,0.0,1400.0,0,78,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,130287,2,1,1,0,1,,800.0,430.0,11,0.0,8.0,3.0,1.0,1.0,2,2,2147.68691619758,0.0,9460.394590716838,0,5,2,3,70.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14798537064973719,9460.394590716838,1,1,1_1,1_1_1,1_1_1,1_0_0 -12914,1,48.0,150.0,2,211,0.0,0.0,120.0,0,56,0.0,0.0,61.309600180503004,120.0,0.0,137.18949295831578,70,0,0,0,0,0,0,0,0,1,5.0,2,,2,128544,2,3,0,0,1,,480.0,313.0,32,2.0,0.0,4.0,4.0,2.5,2,2,2319.81322880968,0.0,19026.77642003113,0,1,2,3,71.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.006306901250685095,7610.710568012451,1,1,1_1,1_0_1,1_1_1,1_0_1 -12915,2,48.0,0.0,1,211,0.0,0.0,1000.0,0,42,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,104196,2,1,1,0,1,,200.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,2268.71061957179,0.0,39884.553162986784,0,1,0,1,100.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025072363125482094,39884.553162986784,9,5,9,9_1,9_1,9_1_0 -12916,2,74.0,0.0,1,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1256.0,412.878481005646,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,111401,1,2,3,0,1,,211.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,2256.17121723627,0.0,14276.63800554196,0,5,0,1,60.0,1,2,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08797589457072745,14276.63800554196,3,2,3_0,3_1_0,3_1_0,3_1_0 -12917,1,51.0,222.0,5,211,185.0,0.0,0.0,0,85,0.0,0.0,255.70223210154717,275.0,154.82943037711726,0.0,43,1,2,2,2,1,2,2,2,0,,2,,3,110566,2,1,0,1,1,461.0,0.0,233.0,11,0.0,5.0,2.0,1.0,1.0,3,2,2831.00755048641,185.0,7288.200941915227,0,7,2,3,87.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.037732219815516534,7288.200941915227,1,1,1_1,1_0_1,1_1_1,1_0_0 -12918,2,49.0,0.0,5,211,350.0,0.0,0.0,68,69,896.1509262108004,0.0,483.76097965157567,1070.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,2,20.0,2,,3,130195,2,3,0,1,1,463.0,0.0,284.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2572.77435968964,350.0,27191.88011294372,1,1,2,3,60.0,1,2,2,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03934998225777941,18127.920075295813,4,2,4_0,4_0_0,4_1_0,4_0_0 -12919,2,50.0,0.0,2,211,462.0,0.0,0.0,65,48,1792.3018524216009,0.0,638.5644931400799,1662.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,129839,2,2,2,0,1,,318.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,2016.99344062583,462.0,41658.316173839296,1,1,0,1,150.0,1,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03989599562940826,18112.311379930128,4,2,4_0,4_1_0,4_1_0,4_0_1 -12920,2,83.0,0.0,7,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,507.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,104722,2,2,0,0,1,,200.0,100.0,21,1.0,1.0,3.0,2.0,1.5,3,3,2689.89921329643,0.0,30276.06929709026,0,5,2,3,70.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01674589904736168,20184.046198060172,5,3,5,5_0,5_1,5_0_0 -12921,2,27.0,0.0,5,211,0.0,0.0,0.0,85,52,0.0,0.0,0.0,4621.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,110728,2,2,5,0,1,,129.0,650.0,42,1.0,0.0,5.0,3.0,1.8,3,3,2593.29156807647,0.0,11940.289830595098,6,1,2,3,100.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3870090312346875,6633.49435033061,1,1,1_0,1_1_0,1_1_0,1_0_0 -12922,2,54.0,0.0,5,211,0.0,600.0,0.0,85,64,0.0,0.0,0.0,4157.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,113570,2,1,2,0,1,,800.0,,42,2.0,0.0,4.0,4.0,2.3,3,2,2285.66988921038,0.0,42209.274543664156,6,1,0,1,100.0,1,2,2,0,1,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09848546427159546,18351.858497245288,4,2,4_0,4_1_0,4_1_0,4_0_0 -12923,1,37.0,245.0,8,211,0.0,0.0,1014.0,0,52,0.0,0.0,518.0661215252504,1014.0,0.0,1159.2512154977683,20,0,0,0,0,0,0,0,0,2,40.0,2,2001.0,6,124476,2,2,0,0,1,,422.0,556.0,32,1.0,0.0,4.0,4.0,2.1,2,2,2693.77342602359,0.0,29208.102108439096,0,1,2,3,100.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034716394657735225,13908.620051637665,3,2,3_1,3_0_1,3_1_1,3_0_0 -12924,1,47.0,240.0,2,211,0.0,0.0,0.0,0,54,0.0,0.0,0.0,441.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,114054,1,2,0,1,1,,0.0,150.0,12,1.0,2.0,1.0,1.0,1.0,2,2,2896.18297570097,0.0,6764.279773156899,0,4,2,3,37.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06519541101035575,6764.279773156899,1,1,1_1,1_0_1,1_1_1,1_0_1 -12925,2,37.0,0.0,5,211,400.0,1120.0,0.0,0,64,0.0,0.0,552.8696910303722,1571.0,87.73667721369978,2031.2912489491428,12,2,1,1,1,2,2,2,2,2,15.0,2,,3,110856,1,3,0,1,1,750.0,0.0,311.0,12,1.0,2.0,2.0,1.0,1.0,2,2,2693.10461816865,400.0,21844.330816203717,0,1,2,3,52.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.07191797328186687,21844.330816203717,6,3,6,6_0,6_1,6_0_0 -12926,2,55.0,0.0,6,211,1400.0,0.0,0.0,42,56,0.0,0.0,1935.0439186063027,1520.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,133286,2,1,4,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2204.12196179443,1400.0,12514.257060496438,1,1,1,2,100.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.121461465323272,8342.838040330958,1,1,1_0,1_1_0,1_1_0,1_0_0 -12927,1,21.0,351.0,2,211,1000.0,0.0,0.0,0,68,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,1,45.0,2,,2,110277,2,3,0,0,1,,400.0,560.0,32,1.0,1.0,3.0,2.0,1.3,2,2,3203.14719392042,1000.0,8114.557463007737,0,1,2,3,85.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13062942801653424,6241.967279236721,1,1,1_1,1_0_1,1_1_1,1_0_1 -12928,2,81.0,0.0,1,211,200.0,0.0,0.0,0,77,1344.2263893162005,0.0,276.4348455151861,1150.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,122121,2,1,4,0,2,,143.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2453.08905987674,200.0,13576.352139428174,0,5,0,1,80.0,1,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.084706111641005,13576.352139428174,3,2,3_0,3_1_0,3_1_0,3_1_0 -12929,1,45.0,132.0,2,211,0.0,0.0,1800.0,0,46,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,114237,2,1,2,0,1,,300.0,,32,1.0,1.0,5.0,2.0,1.3,3,3,2255.73329309303,0.0,19345.7126919198,0,1,1,2,100.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09304387120107563,14881.317455322924,3,2,3_1,3_1_1,3_1_1,3_0_1 -12930,1,35.0,265.0,2,211,400.0,0.0,0.0,0,55,0.0,0.0,552.8696910303722,400.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,3.0,2,,2,124977,2,2,0,0,1,,0.0,417.0,12,1.0,0.0,3.0,1.0,1.0,2,2,3345.39830216936,400.0,16946.262219008295,0,1,2,3,54.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.023604025172661837,16946.262219008295,4,2,4_1,4_0_1,4_1_1,4_0_1 -12931,2,30.0,0.0,1,211,0.0,0.0,0.0,55,63,0.0,0.0,0.0,890.0,34.40654008380383,0.0,60,1,2,2,2,1,2,2,2,4,150.0,2,,1,111895,1,1,0,0,1,,253.0,437.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2976.71954073065,0.0,31961.010918051696,4,1,2,3,60.0,1,2,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.027846428333633363,21307.340612034463,6,3,6,6_0,6_1,6_1_0 -12932,1,43.0,700.0,1,211,1200.0,0.0,0.0,0,85,0.0,0.0,1658.6090730911167,1380.0,309.6588607542345,0.0,44,2,2,2,1,2,2,2,2,0,,1,,1,106054,1,3,4,0,2,,1200.0,700.0,31,0.0,6.0,6.0,3.0,2.0,2,2,2671.40101036691,1200.0,5325.215977207855,0,6,2,3,100.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.2591444189130464,2662.6079886039274,1,1,1_1,1_1_1,1_1_1,1_1_0 -12933,2,26.0,0.0,1,211,500.0,0.0,0.0,0,52,0.0,0.0,691.0871137879653,540.0,68.81308016760767,0.0,41,0,0,0,0,0,0,0,0,2,2.0,2,,1,100153,2,1,0,0,1,,110.0,570.0,12,1.0,0.0,3.0,1.0,1.0,3,2,3507.23636478134,500.0,19046.103626336913,0,1,2,3,80.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028352255694612995,19046.103626336913,5,3,5,5_0,5_1,5_1_0 -12934,2,69.0,0.0,1,211,0.0,0.0,1200.0,0,77,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,42,0,0,0,0,0,0,0,0,0,,1,,1,114292,2,2,5,0,1,,0.0,430.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2761.99338129872,0.0,16895.001258032928,0,5,2,3,45.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0710269257558916,16895.001258032928,4,2,4_0,4_1_0,4_1_0,4_1_0 -12935,2,58.0,0.0,1,211,970.83,0.0,0.0,0,22,2201.544108724533,0.0,1341.8562053575408,2445.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,105244,2,1,2,0,1,,369.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,2321.59878537255,970.83,17843.202279631143,0,1,0,1,135.0,1,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13702697316787596,11895.468186420761,2,1,2_0,2_1_0,2_1_0,2_1_0 -12936,0,76.0,0.0,2,211,512.0,0.0,0.0,78,77,1493.5848770180007,0.0,707.6732045188764,1572.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120777,1,2,1,0,1,,380.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,2235.96277026288,512.0,35094.58286720005,5,5,0,1,71.0,1,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044793237917901456,23396.388578133367,6,3,6,6_1,6_1,6_0_1 -12937,2,52.0,0.0,1,211,800.0,0.0,0.0,0,21,2688.452778632401,0.0,1105.7393820607444,2600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,116153,1,1,2,0,1,,400.0,700.0,12,1.0,1.0,3.0,1.0,1.0,2,2,2479.91257956457,800.0,38463.78929686509,0,1,2,3,48.0,1,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06759604416333227,38463.78929686509,9,5,9,9_1,9_1,9_1_0 -12938,2,78.0,0.0,2,211,0.0,0.0,1500.0,86,86,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,31,0,0,0,0,0,0,0,0,0,,1,,2,117789,2,2,2,0,1,,480.0,,41,0.0,2.0,3.0,2.0,1.5,3,2,2151.49510992778,0.0,30553.024600446966,5,5,0,1,65.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04909497568951181,20368.683066964644,5,3,5,5_1,5_1,5_0_1 -12939,2,74.0,0.0,6,211,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131450,2,1,2,0,1,,53.0,265.0,11,0.0,7.0,1.0,1.0,1.0,2,2,2476.94526615147,1200.0,20626.03496119218,0,5,2,3,30.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05817889876836707,20626.03496119218,5,3,5,5_1,5_1,5_0_0 -12940,1,19.0,304.0,9,211,0.0,0.0,1320.0,0,68,0.0,0.0,674.405601985533,1320.0,0.0,1509.0844225414737,42,0,0,0,0,0,0,0,0,0,,2,2009.0,6,115995,2,1,0,0,1,,0.0,367.0,22,3.0,1.0,3.0,3.0,2.0,2,2,3352.61727203879,0.0,18851.013970116328,0,1,2,3,96.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07002275856845351,9425.506985058164,1,1,1_1,1_0_1,1_1_1,1_0_0 -12941,0,72.0,0.0,9,211,0.0,0.0,1438.0,72,21,0.0,0.0,734.6933754963611,1438.0,0.0,1643.987423950484,10,0,0,0,0,0,0,0,0,0,,1,2007.0,6,113498,2,1,1,0,1,,235.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2452.44975804714,0.0,47840.0,5,5,5,0,190.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030058528428093645,31893.333333333332,8,4,8,8_1,8_1,8_0_0 -12942,2,77.0,0.0,1,211,605.0,965.0,0.0,0,75,0.0,0.0,836.215407683438,1570.0,0.0,1750.175049317788,50,0,0,0,0,0,0,0,0,0,,1,,1,131362,2,1,1,0,2,,125.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,2471.71607953041,605.0,21922.9285411527,0,5,0,1,62.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07161451979615173,21922.9285411527,6,3,6,6_1,6_1,6_1_0 -12943,2,77.0,0.0,2,211,0.0,0.0,0.0,0,77,5227.547069563002,0.0,0.0,6426.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,117394,2,1,2,0,1,,240.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,2274.27129337373,0.0,26692.999607964535,0,5,0,1,129.0,1,2,2,1,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.24073727547962198,26692.999607964535,7,4,7,7_1,7_1,7_0_1 -12944,2,37.0,0.0,1,211,0.0,0.0,1500.0,43,67,0.0,517.5862524097289,766.3700022562875,2000.0,0.0,1714.868661978947,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,105011,2,2,2,0,1,,500.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2551.97396728034,0.0,40440.49798608982,1,1,1,2,85.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049455375170897584,22466.943325605454,6,3,6,6_1,6_1,6_1_0 -12945,1,39.0,314.0,2,211,0.0,0.0,1300.0,85,63,0.0,0.0,664.1873352887826,1360.0,103.2196202514115,1486.2195070484208,10,0,0,0,0,0,0,0,0,0,,1,,2,128493,2,3,2,0,1,,300.0,260.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,2,2,2314.7416236037,0.0,20930.498458623624,6,4,2,3,90.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06497695230185324,8050.191714855241,1,1,1_1,1_1_1,1_1_1,1_0_1 -12946,1,25.0,123.0,2,211,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1010.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,75.0,2,,2,112088,1,3,0,0,2,,0.0,340.0,12,1.0,0.0,1.0,1.0,1.0,2,2,3708.1508107688,0.0,12121.919184812748,0,2,2,3,30.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08332013970736614,12121.919184812748,2,1,2_1,2_0_1,2_1_1,2_0_1 -12947,2,32.0,0.0,5,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,596.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,128647,2,2,0,1,2,,0.0,385.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2952.22820608596,0.0,9275.836961962403,0,6,2,3,30.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06425296201777028,9275.836961962403,1,1,1_0,1_0_0,1_1_0,1_0_0 -12948,2,76.0,0.0,2,211,700.0,500.0,0.0,78,77,0.0,207.03450096389156,967.5219593031513,1425.0,43.00817510475479,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,1,,2,116763,2,1,2,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2209.2685553384,700.0,27360.955096074318,5,5,0,1,80.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05208151524668287,18240.63673071621,4,2,4_0,4_1_0,4_1_0,4_0_1 -12949,0,71.0,0.0,2,211,300.0,0.0,0.0,72,77,3584.6037048432017,0.0,414.65226827277917,2760.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110095,2,2,2,0,1,,400.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2088.17281846575,300.0,29618.602516828178,5,5,0,1,70.0,1,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09318468008177873,19745.735011218785,5,3,5,5_1,5_1,5_0_1 -12950,1,63.0,247.0,5,211,3000.0,0.0,0.0,85,78,0.0,0.0,4146.522682727792,3360.0,619.317721508469,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,111326,2,1,2,0,1,,760.0,,41,2.0,1.0,5.0,6.0,3.5,2,2,2258.45928923165,3000.0,36232.77517028168,6,5,1,2,120.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09273371924201627,10352.221477223338,2,1,2_1,2_1_1,2_1_1,2_0_0 -12951,1,38.0,487.0,2,211,360.0,0.0,0.0,0,52,0.0,0.0,497.582721927335,540.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,5.0,8,,2,119659,2,1,0,1,1,886.0,416.0,443.0,32,1.0,1.0,5.0,5.0,2.4,3,3,2615.32296803464,360.0,27878.899354306057,0,1,2,3,88.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019369487766976494,11616.208064294191,2,1,2_1,2_0_1,2_1_1,2_0_1 -12952,2,82.0,0.0,2,211,250.0,0.0,0.0,0,78,2851.253530227363,0.0,345.54355689398267,2199.0,68.81308016760767,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,127303,2,1,2,0,2,,150.0,,11,0.0,3.0,4.0,1.0,1.0,4,3,2183.39379350531,250.0,17850.0,0,5,0,1,75.0,1,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12319327731092437,17850.0,4,2,4_0,4_1_0,4_1_0,4_0_1 -12953,1,47.0,285.0,2,211,595.0,0.0,0.0,85,67,0.0,0.0,822.3936654076787,1019.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,133098,2,1,0,3,1,,638.0,162.0,42,1.0,1.0,4.0,4.0,2.1,3,3,2404.55460981785,595.0,21310.60329015714,7,4,2,3,60.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04781657216014395,10147.906328646257,2,1,2_1,2_0_1,2_1_1,2_0_1 -12954,1,49.0,352.0,2,211,0.0,0.0,871.0,0,52,0.0,0.0,445.00551464348433,871.0,0.0,995.7670697224421,71,0,0,0,0,0,0,0,0,0,,2,,2,100623,2,1,0,3,1,1204.0,446.0,356.0,32,1.0,1.0,4.0,2.0,1.5,2,2,2591.55123618703,0.0,7246.759630891218,0,4,2,3,55.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12019165038773102,4831.173087260812,1,1,1_1,1_0_1,1_1_1,1_0_1 -12955,2,54.0,0.0,2,211,420.0,0.0,0.0,85,64,0.0,828.1380038555662,580.5131755818909,1370.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,102001,2,1,2,0,1,,290.0,,42,2.0,2.0,5.0,3.0,2.0,2,2,2229.26804314958,420.0,45152.36995006527,6,1,0,1,80.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030341707456665173,22576.184975032636,6,3,6,6_1,6_1,6_0_1 -12956,2,68.0,0.0,1,211,1995.0,0.0,0.0,75,74,0.0,0.0,2757.4375840139814,1995.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,1,,1,129364,2,2,3,0,1,,500.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,2377.9951374419,1995.0,94661.6335570543,5,5,0,1,120.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.02107506415254895,63107.75570470287,10,5,10,10_1,10_1,10_1_0 -12957,2,66.0,0.0,2,112,720.0,0.0,0.0,77,74,3090.2271105502437,134.5724256265295,995.16544385467,2919.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119372,2,1,1,0,1,,223.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1688.41577521945,720.0,37338.58832355147,5,5,0,1,95.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07817649598066964,24892.39221570098,7,4,7,7_1,7_0,7_0_1 -12958,2,90.0,0.0,8,112,719.0,1953.0,0.0,0,74,0.0,0.0,993.7832696270941,2672.0,0.0,3542.0641153550678,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107511,2,1,1,0,1,,238.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,1805.48776802939,719.0,71322.55954058908,0,5,0,1,165.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037463602220828694,71322.55954058908,10,5,10,10_1,10_0,10_0_0 -12959,2,74.0,0.0,2,112,1512.0,0.0,0.0,0,75,0.0,1743.2304981159668,2089.847432094807,3266.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108281,2,2,3,0,1,,189.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,1758.33974654315,1512.0,26643.04397106084,0,5,0,1,110.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12258359080694631,26643.04397106084,7,4,7,7_1,7_0,7_0_1 -12960,2,34.0,0.0,6,112,549.0,1082.0,0.0,34,34,0.0,0.0,758.8136509391859,1631.0,0.0,1962.3724387169398,43,2,2,1,2,1,2,2,2,2,20.0,1,,4,116211,2,2,1,0,1,,358.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1707.43056701613,549.0,66156.14435475123,1,1,1,2,180.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02465379468389264,31502.92588321487,8,4,8,8_1,8_0,8_0_0 -12961,2,81.0,0.0,1,112,624.0,0.0,0.0,77,78,3535.3154039016076,0.0,862.4767180073807,3363.0,639.9616455587513,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,126491,2,3,3,0,1,,458.0,,41,1.0,2.0,5.0,3.0,2.0,2,1,1757.31967148698,624.0,45903.58335954281,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07326225435733597,22951.791679771406,6,3,6,6_1,6_0,6_1_0 -12962,2,74.0,0.0,2,112,419.0,0.0,0.0,0,77,1523.4565745583607,0.0,579.1310013543149,1529.0,154.82943037711726,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,112171,1,2,2,0,2,,204.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1707.15303427513,419.0,31351.922271127638,0,5,0,1,60.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0487689394856683,31351.922271127638,8,4,8,8_1,8_0,8_0_1 -12963,2,56.0,0.0,6,112,2208.0,0.0,0.0,75,42,0.0,465.827627168756,3051.8406944876547,2658.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,108125,1,1,2,0,1,,464.0,,42,1.0,2.0,5.0,2.0,1.5,3,3,1630.54673463742,2208.0,76920.06849387055,5,1,0,1,118.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03455535144527082,51280.04566258037,10,5,10,10_1,10_0,10_0_0 -12964,2,39.0,0.0,8,112,2366.0,0.0,0.0,37,34,0.0,0.0,3270.224222444652,2426.0,103.2196202514115,0.0,71,2,2,2,2,2,2,2,1,2,25.0,1,1999.0,6,109494,1,1,2,0,1,,372.0,,43,2.0,0.0,7.0,4.0,2.1,4,3,1632.40990031427,2366.0,58826.413572370526,1,1,1,2,148.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.041239977973762436,28012.57789160501,7,4,7,7_1,7_0,7_0_0 -12965,2,65.0,0.0,5,112,1997.0,0.0,0.0,75,74,0.0,0.0,2760.201932469133,1997.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110777,2,2,1,0,1,,281.0,,41,0.0,3.0,7.0,3.0,2.0,1,1,1937.8286378884,1997.0,62002.228975064216,5,5,0,1,160.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032208519484084104,31001.114487532108,8,4,8,8_1,8_0,8_0_0 -12966,2,51.0,0.0,2,112,600.0,0.0,0.0,52,37,3285.8867294396014,0.0,829.3045365455583,2922.0,209.8798945112034,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,115053,2,2,3,0,1,,240.0,,43,3.0,0.0,5.0,3.0,2.0,1,1,1820.41318542242,600.0,78457.96377767327,1,1,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037242873244583384,39228.981888836635,9,5,9,9_1,9_0,9_0_1 -12967,2,65.0,0.0,2,112,2170.0,0.0,0.0,75,72,0.0,0.0,2999.318073839769,2210.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129270,2,2,2,0,1,,67.0,,41,0.0,4.0,6.0,2.0,1.5,3,3,1748.17545158439,2170.0,57949.68375987057,5,5,0,1,118.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03813653253325253,38633.12250658038,9,5,9,9_1,9_0,9_0_1 -12968,2,44.0,0.0,5,112,1650.0,0.0,0.0,0,55,0.0,0.0,2280.5874755002856,1854.0,350.9467088547991,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,130046,2,2,3,0,1,,360.0,,32,3.0,0.0,4.0,3.0,2.0,2,2,1874.93401401039,1650.0,70852.11193655005,0,1,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02616718047389055,35426.055968275024,9,5,9,9_1,9_0,9_0_0 -12969,2,45.0,0.0,9,112,2409.0,0.0,0.0,21,33,0.0,258.79312620486445,3329.657714230417,2759.0,172.03270041901916,0.0,41,2,2,1,2,1,2,2,2,2,15.0,1,2006.0,6,128930,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1608.55892702342,2409.0,60721.064921640194,1,1,1,2,126.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04543727952664296,24288.425968656076,7,4,7,7_1,7_0,7_0_0 -12970,2,71.0,0.0,1,112,632.0,0.0,0.0,90,71,3043.925979362685,424.4207269759777,873.5341118279881,3165.0,146.2277953561663,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106981,1,3,4,0,2,,184.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1499.72232922711,632.0,27649.420261610067,5,5,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11446894618598767,18432.94684107338,4,2,4_0,4_1_0,4_0_0,4_1_0 -12971,2,71.0,0.0,2,112,500.0,0.0,0.0,77,75,3733.962192545002,207.03450096389156,691.0871137879653,3332.0,227.0831645531053,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,110362,1,1,2,0,1,,120.0,,41,0.0,3.0,6.0,2.0,1.5,3,2,1752.46027898854,500.0,36421.6351101642,5,5,0,1,107.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09148408603627292,24281.0900734428,7,4,7,7_1,7_0,7_0_1 -12972,2,68.0,0.0,2,112,507.0,0.0,0.0,0,77,0.0,414.0690019277831,700.7623333809968,1069.0,278.692974678811,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107886,2,2,3,0,1,,412.0,,21,1.0,2.0,4.0,3.0,2.0,1,1,1700.33124643338,507.0,53349.22752528434,0,5,0,1,92.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020037778419441182,26674.61376264217,7,4,7,7_1,7_0,7_0_1 -12973,2,45.0,0.0,2,112,1243.0,0.0,0.0,85,62,0.0,0.0,1718.0425648768817,1323.0,137.62616033521533,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,2,103084,2,2,4,0,1,,90.0,,42,1.0,0.0,3.0,2.0,1.5,6,4,1677.38125652725,1243.0,21393.0,6,1,1,2,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06184265881363063,14262.0,3,2,3_0,3_1_0,3_0_0,3_0_1 -12974,2,52.0,0.0,6,112,1654.0,0.0,0.0,43,33,0.0,0.0,2286.116172410589,1726.0,123.8635443016938,0.0,44,0,0,0,0,0,0,0,0,2,40.0,1,,4,111123,2,1,2,0,1,,176.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1577.55383391269,1654.0,93302.31489215282,1,1,0,1,110.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018499005110377654,62201.54326143521,10,5,10,10_1,10_0,10_0_0 -12975,2,50.0,0.0,7,112,1260.0,0.0,0.0,38,34,0.0,155.27587572291867,1741.5395267456724,1488.0,134.18550632683494,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,107356,1,1,2,0,1,,145.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,1629.49593010346,1260.0,98257.49301575078,4,1,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015143883222844613,49128.74650787539,10,5,10,10_1,10_0,10_0_0 -12976,2,40.0,0.0,1,112,1021.0,0.0,0.0,34,43,3285.8867294396014,0.0,1411.199886355025,3287.0,113.54158227655265,0.0,60,2,2,2,1,1,2,2,2,2,30.0,1,,1,125392,1,2,1,0,2,,342.0,,43,2.0,0.0,6.0,4.0,2.1,2,1,1707.43056701613,1021.0,76667.70130325758,1,1,1,2,130.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.042873334456687784,36508.42919202742,9,5,9,9_1,9_0,9_1_0 -12977,2,38.0,0.0,8,112,655.0,0.0,0.0,43,38,2987.1697540360015,724.6207533736205,905.3241190622346,3355.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,102905,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,2.0,1.5,2,1,1676.32538776336,655.0,86806.94849755873,1,1,1,2,136.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03864897981172962,57871.298998372484,10,5,10,10_1,10_0,10_0_0 -12978,2,62.0,0.0,6,112,420.0,0.0,0.0,72,75,0.0,0.0,580.5131755818909,1298.0,1510.4471096789882,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129854,2,1,2,0,1,,190.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1748.17545158439,420.0,79444.55992992276,6,5,0,1,140.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01633843778787311,52963.03995328184,10,5,10,10_1,10_0,10_0_0 -12979,2,71.0,0.0,1,112,540.0,0.0,0.0,77,72,2688.452778632401,0.0,746.3740828910024,2440.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,107045,2,1,2,0,1,,253.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1570.98705876648,540.0,35221.47431446519,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06927591895260077,23480.982876310125,6,3,6,6_1,6_0,6_1_0 -12980,2,29.0,0.0,1,112,1490.0,0.0,0.0,43,62,0.0,0.0,2059.4395990881367,1586.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,106807,2,3,4,0,1,,110.0,500.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1924.87961920128,1490.0,41580.334219514654,4,1,2,3,70.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03814303155013246,23100.18567750814,6,3,6,6_1,6_0,6_1_0 -12981,2,58.0,0.0,1,112,940.0,0.0,0.0,74,45,0.0,1242.2070057833494,1299.2437739213747,2280.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,125460,2,1,2,0,1,,240.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1741.25716498394,940.0,45320.59212991593,5,1,0,1,200.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0503082570824352,30213.72808661062,8,4,8,8_1,8_0,8_1_0 -12982,2,41.0,0.0,1,112,1261.0,0.0,0.0,11,11,0.0,155.27587572291867,1742.9217009732483,1513.0,175.47335442739956,0.0,71,0,0,0,0,0,0,0,0,1,3.0,5,,1,117876,2,1,1,0,1,,214.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1464.74279109025,1261.0,22661.210840198433,1,1,0,1,83.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0667660704747563,10791.052781046872,2,1,2_0,2_1_0,2_0_0,2_1_0 -12983,2,55.0,0.0,6,112,2000.0,0.0,0.0,78,43,0.0,62.110350289167464,2764.3484551518613,2060.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,4,102529,2,1,2,0,1,,160.0,,42,1.0,2.0,6.0,2.0,1.5,3,2,1752.46027898854,2000.0,57400.012522434256,5,1,0,1,130.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035888493912695024,38266.67501495617,9,5,9,9_1,9_0,9_0_0 -12984,2,35.0,0.0,9,112,1905.0,0.0,0.0,54,37,0.0,103.51725048194578,2633.041903532148,2090.0,146.2277953561663,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,124987,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1499.35712153097,1905.0,77422.63829058214,1,1,1,2,129.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026994688454762102,36867.9229955153,9,5,9,9_1,9_0,9_0_0 -12985,2,68.0,0.0,1,112,447.0,0.0,0.0,75,75,1847.5644928712668,0.0,617.831879726441,2216.0,915.213966229182,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,130233,2,2,3,0,1,,325.0,,41,0.0,2.0,6.0,3.0,2.0,2,2,990.953323439923,447.0,56941.56934335937,5,5,0,1,120.0,9,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038917086858591014,28470.784671679685,8,4,8,8_1,8_0,8_1_0 -12986,2,34.0,0.0,9,112,1056.0,0.0,0.0,33,48,0.0,258.79312620486445,1459.5759843201827,1306.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,105457,2,1,1,0,1,,239.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,2138.07878786448,1056.0,35505.710918144636,1,1,1,2,108.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03678281510855735,19725.394954524796,5,3,5,5_1,5_0,5_0_0 -12987,2,49.0,0.0,6,112,1887.0,0.0,0.0,47,37,0.0,690.4600607145784,2608.162767435781,2554.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,120587,2,1,2,0,1,,278.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,1021.71347485186,1887.0,102455.5559404464,1,1,0,1,132.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02492788191481334,51227.7779702232,10,5,10,10_1,10_0,10_0_0 -12988,2,61.0,0.0,5,111,560.0,950.0,0.0,78,68,0.0,0.0,774.0175674425211,1510.0,0.0,1722.9702558050765,31,2,2,2,1,2,2,2,2,2,20.0,1,,3,105252,2,1,3,0,1,,280.0,393.0,42,1.0,4.0,4.0,2.0,1.5,2,2,214.088210397254,560.0,23822.325648414986,5,1,2,3,100.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.06338591883452267,15881.550432276657,3,2,3_0,3_1_0,3_2_0,3_0_0 -12989,2,32.0,0.0,9,112,0.0,0.0,0.0,55,46,0.0,0.0,0.0,3290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,114699,2,1,1,0,1,,654.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2479.68501000505,0.0,48809.08499003085,1,1,1,2,120.0,9,1,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0674054840542898,27116.158327794918,7,4,7,7_1,7_1,7_0_0 -12990,2,64.0,0.0,5,112,437.0,0.0,0.0,0,56,3136.5282417378016,0.0,604.0101374506817,2597.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100936,2,1,2,0,1,,308.0,,22,1.0,1.0,5.0,2.0,1.5,4,3,721.583327371046,437.0,35939.45532688879,0,1,0,1,77.0,9,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07226041620216223,23959.636884592528,6,3,6,6_1,6_0,6_0_0 -12991,1,59.0,230.0,5,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,204.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,125441,2,1,0,1,1,312.0,118.0,213.0,12,1.0,2.0,1.0,1.0,1.0,2,2,321.988375701305,0.0,6060.0,0,4,2,3,30.0,4,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033663366336633666,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -12993,2,60.0,0.0,5,112,1036.0,0.0,0.0,85,38,448.0754631054002,0.0,1431.932499768664,1336.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115407,2,1,1,0,1,,265.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,937.1604796914,1036.0,44704.869950428525,6,4,0,1,150.0,9,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029884887294861565,29803.246633619015,8,4,8,8_1,8_0,8_0_0 -12994,1,72.0,310.0,2,111,240.0,300.0,0.0,85,77,0.0,517.5862524097289,331.72181461822333,1040.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,122778,2,1,0,1,1,720.0,0.0,299.0,41,1.0,1.0,3.0,3.0,2.0,2,2,206.61996600047,240.0,23575.312751233596,6,5,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0441139428763498,11787.656375616798,2,1,2_1,2_0_1,2_4_1,2_0_1 -12995,2,29.0,0.0,9,112,1000.0,0.0,0.0,47,48,0.0,77.63793786145933,1382.1742275759307,1076.0,1.7203270041901917,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,124059,2,1,1,0,1,,133.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1911.39742182844,1000.0,32400.767216907476,1,1,1,2,107.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03320909016742413,21600.51147793832,6,3,6,6_1,6_0,6_0_0 -12996,2,66.0,0.0,9,112,900.0,0.0,0.0,0,72,0.0,0.0,1243.9568048183376,1020.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,110632,2,1,1,0,1,,200.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,948.260666360365,900.0,9162.768218303254,0,5,0,1,40.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11132007005944781,9162.768218303254,1,1,1_0,1_1_0,1_0_0,1_0_0 -12997,2,24.0,0.0,9,112,1817.0,0.0,0.0,54,62,0.0,414.0690019277831,2511.4105715054657,2217.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,120038,2,1,1,0,1,,296.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1759.69921374187,1817.0,10063.254105825146,1,1,1,2,100.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2203064711162051,6708.836070550097,1,1,1_0,1_1_0,1_0_0,1_0_0 -12998,2,61.0,0.0,1,112,870.0,0.0,0.0,77,78,0.0,414.0690019277831,1202.4915779910596,1270.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105394,2,1,2,0,1,,204.0,,41,1.0,1.0,5.0,3.0,2.0,1,1,1010.21385241737,870.0,46092.61684954378,5,5,0,1,77.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027553219730299828,23046.30842477189,6,3,6,6_1,6_0,6_1_0 -12999,2,37.0,0.0,9,112,1698.0,0.0,0.0,84,53,0.0,372.6621017350048,2346.93183842393,2058.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,103338,2,1,1,0,1,,246.0,,42,1.0,1.0,4.0,3.0,1.8,4,4,1777.64420663855,1698.0,34256.972742410966,3,1,1,2,93.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06007536087542686,19031.651523561646,5,3,5,5_1,5_1,5_0_0 -13000,2,45.0,0.0,1,112,1500.0,0.0,0.0,46,46,0.0,0.0,2073.261341363896,1700.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133449,2,1,1,0,1,,240.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,930.972512450156,1500.0,56778.07743445288,1,1,1,2,192.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029941133564491594,37852.05162296859,9,5,9,9_1,9_0,9_1_0 -13001,1,59.0,398.0,2,111,500.0,0.0,0.0,77,85,0.0,0.0,691.0871137879653,1825.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,119592,2,3,0,1,1,600.0,0.0,380.0,41,0.0,3.0,4.0,5.0,3.0,2,2,177.627459867969,500.0,25380.002925963814,5,7,2,3,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07190700510648956,8460.00097532127,1,1,1_1,1_0_1,1_4_1,1_0_1 -13002,2,67.0,0.0,6,112,1000.0,0.0,0.0,77,75,0.0,931.655254337512,1382.1742275759307,1900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,128707,2,1,2,0,1,,165.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,936.999670260542,1000.0,56997.52694491753,5,5,0,1,85.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033334779627125964,37998.35129661169,9,5,9,9_1,9_0,9_0_0 -13003,2,67.0,0.0,2,111,420.0,0.0,0.0,21,72,0.0,983.4138795784849,580.5131755818909,1370.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,132893,2,1,0,1,1,690.0,0.0,410.0,42,3.0,2.0,4.0,6.0,3.0999999999999996,3,2,225.585299824869,420.0,52262.04175165692,1,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02621405429412955,16858.72314569578,4,2,4_0,4_0_0,4_4_0,4_0_1 -13004,1,26.0,24.0,9,120,987.0,0.0,0.0,63,54,0.0,476.1793522169506,1364.2059626174434,1447.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2012.0,6,131584,2,1,1,0,1,,138.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1991.37184786666,987.0,28573.965662484457,1,4,1,2,98.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.050640503215127954,15874.425368046921,3,2,3_1,3_1_1,3_0_1,3_0_0 -13005,2,41.0,0.0,2,112,1410.0,0.0,0.0,52,47,0.0,0.0,1948.865660882062,1530.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,2,115632,2,1,1,0,1,,210.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,861.712430216037,1410.0,53415.19786110046,1,1,1,2,126.0,9,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028643533325076763,25435.80850528593,7,4,7,7_1,7_0,7_0_1 -13006,2,63.0,0.0,2,111,361.0,143.0,0.0,0,75,0.0,0.0,498.96489615491095,504.0,0.0,259.3523648211852,50,0,0,0,0,0,0,0,0,0,,2,,2,118660,2,1,0,1,1,794.0,0.0,405.0,31,0.0,2.0,4.0,4.0,2.5,2,2,210.240002294762,361.0,42925.85869263687,0,5,2,3,127.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011741174558878463,17170.34347705475,4,2,4_0,4_0_0,4_4_0,4_0_1 -13007,2,32.0,0.0,9,111,1750.0,0.0,0.0,54,37,0.0,0.0,2418.8048982578784,1750.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,118236,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,259.456432152017,1750.0,53140.824989549954,1,1,1,2,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0329313668040369,25305.154756928547,7,4,7,7_1,7_2,7_0_0 -13008,2,38.0,0.0,8,112,2110.0,0.0,0.0,55,63,0.0,0.0,2916.3876201852136,2110.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,123361,2,1,2,0,1,,320.0,,43,3.0,0.0,6.0,4.0,2.3,1,1,853.370143348999,2110.0,48191.48196746301,1,1,1,2,150.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043783671177088694,20952.81824672305,5,3,5,5_1,5_0,5_0_0 -13009,1,44.0,258.0,6,111,698.0,0.0,0.0,68,68,0.0,0.0,964.7576108479996,698.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,25.0,2,,4,111116,2,2,0,1,1,710.0,0.0,523.0,43,2.0,1.0,4.0,4.0,2.5,3,2,341.019311453887,698.0,26688.991686652484,4,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026153104927867283,10675.596674660994,2,1,2_1,2_0_1,2_4_1,2_0_0 -13010,2,37.0,0.0,9,111,1440.0,0.0,0.0,56,62,0.0,0.0,1990.33088770934,1440.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,130547,2,1,1,0,1,,160.0,,43,2.0,2.0,5.0,3.0,1.8,1,1,1408.17084823282,1440.0,40334.48584286141,1,1,1,2,100.0,4,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035701459183341944,22408.04769047856,6,3,6,6_1,6_1,6_0_0 -13012,2,37.0,0.0,9,111,1300.0,0.0,0.0,56,21,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,2012.0,6,101011,2,1,1,0,1,,207.0,,43,2.0,1.0,4.0,3.0,1.8,1,1,1532.54400090545,1300.0,60692.17486612984,1,1,1,2,128.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021419565254786808,33717.874925627686,9,5,9,9_1,9_2,9_0_0 -13013,2,60.0,0.0,5,112,499.0,0.0,0.0,33,42,0.0,103.51725048194578,689.7049395603893,1844.0,2141.8071202167885,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,132765,2,2,1,0,1,,192.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,796.187874330091,499.0,100971.33077279771,1,1,0,1,96.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01826260965252906,67314.22051519847,10,5,10,10_1,10_0,10_0_0 -13014,2,40.0,0.0,9,120,780.0,0.0,0.0,47,48,0.0,62.110350289167464,1078.0958975092258,840.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,133592,2,1,1,0,2,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1766.01727666995,780.0,74318.88869109399,1,1,1,2,154.0,0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011302644789152525,35389.94699575904,9,5,9,9_1,9_1,9_0_0 -13015,2,78.0,0.0,2,112,300.0,0.0,0.0,0,71,2987.1697540360015,0.0,414.65226827277917,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114323,2,1,2,0,1,,200.0,,21,0.0,4.0,4.0,2.0,1.5,1,1,982.950004839413,300.0,16484.369078493884,0,5,0,1,80.0,9,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13952611647118873,10989.57938566259,2,1,2_0,2_1_0,2_0_0,2_0_1 -13016,1,63.0,308.0,6,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,491.0,0.0,0.0,43,2,1,2,1,1,2,2,2,0,,2,,4,104628,1,2,0,1,2,720.0,0.0,478.0,22,2.0,3.0,4.0,3.0,2.0,1,1,353.965606616756,0.0,18003.86276364356,0,4,2,3,84.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02727192527769708,9001.93138182178,1,1,1_1,1_0_1,1_4_1,1_0_0 -13017,1,36.0,187.0,9,111,1200.0,0.0,0.0,85,65,0.0,248.44140115666985,1658.6090730911167,1440.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,125316,2,1,1,0,1,,820.0,,42,1.0,3.0,5.0,7.0,3.1999999999999993,2,2,592.985545255285,1200.0,36138.97941352166,6,1,1,2,100.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03984617228734505,11293.431066725521,2,1,2_1,2_1_1,2_3_1,2_0_0 -13018,2,44.0,0.0,6,112,1280.0,0.0,0.0,85,52,0.0,0.0,1769.1830112971911,1330.0,86.01635020950958,0.0,71,2,2,2,2,1,2,2,2,2,10.0,1,,4,112865,1,2,3,0,1,,300.0,,42,1.0,0.0,6.0,3.0,1.8,1,1,985.258728304985,1280.0,37859.27363336584,7,1,1,2,90.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03513009818624346,21032.929796314354,5,3,5,5_1,5_0,5_0_0 -13019,2,30.0,0.0,6,111,1650.0,0.0,0.0,85,38,0.0,0.0,2280.5874755002856,1650.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,4,115731,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,262.645926801151,1650.0,40045.61188612284,6,1,1,2,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04120301631779488,16685.67161921785,4,2,4_0,4_0_0,4_4_0,4_0_0 -13020,2,33.0,0.0,9,120,1570.0,0.0,0.0,52,65,0.0,0.0,2170.013537294211,1570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,121610,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,3.0,1.8,4,4,1911.79456669016,1570.0,74839.93037643745,1,1,1,2,115.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020978106100621088,41577.73909802081,9,5,9,9_1,9_0,9_0_0 -13021,1,54.0,255.0,5,111,690.0,0.0,0.0,85,65,0.0,1119.0214777098338,953.7002170273921,1771.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,3,108356,1,2,0,1,2,,0.0,594.0,42,2.0,1.0,4.0,7.0,3.6,1,1,307.61371878387,690.0,55114.88981548068,6,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03213287744798432,15309.6916154113,3,2,3_1,3_0_1,3_4_1,3_0_0 -13022,2,42.0,0.0,9,111,2165.0,0.0,0.0,46,37,0.0,0.0,2992.4072027018897,2165.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,124299,2,1,1,0,1,,388.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,276.207421505703,2165.0,54005.405717925205,1,1,1,2,135.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040088579489764006,30003.003176625112,8,4,8,8_1,8_3,8_0_0 -13023,2,47.0,0.0,1,112,1160.0,0.0,0.0,0,67,0.0,1035.1725048194578,1603.3221039880796,2162.0,3.4406540083803834,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,124121,1,2,2,0,2,,279.0,,12,1.0,3.0,7.0,1.0,1.0,2,2,980.180263255792,1160.0,30338.52942276458,0,1,0,1,128.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07126251803021602,30338.52942276458,8,4,8,8_1,8_0,8_1_0 -13024,2,54.0,0.0,2,111,637.0,1583.0,0.0,68,38,0.0,0.0,880.4449829658678,2220.0,0.0,2871.0125420415116,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,132032,2,1,2,0,1,,555.0,,43,2.0,0.0,5.0,5.0,3.0,2,2,203.221869378854,637.0,73607.25768792325,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03016006939712734,24535.752562641082,7,4,7,7_1,7_4,7_0_1 -13025,2,33.0,0.0,1,112,1340.0,0.0,0.0,0,62,0.0,0.0,1852.113464951747,1373.0,56.77079113827632,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,,1,128670,2,3,3,0,1,,220.0,640.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1004.03520794601,1340.0,23821.511146436587,0,1,2,3,118.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05763698161547507,23821.511146436587,6,3,6,6_1,6_0,6_1_0 -13026,2,68.0,0.0,6,111,498.0,0.0,0.0,0,77,0.0,1.0351725048194578,688.3227653328134,499.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,113994,2,1,0,1,1,,0.0,,11,0.0,6.0,4.0,1.0,1.0,2,2,312.618564700809,498.0,20550.87681370488,0,5,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02428120242865886,20550.87681370488,5,3,5,5_0,5_4,5_0_0 -13027,2,33.0,0.0,9,221,1090.0,0.0,0.0,67,63,0.0,0.0,1506.5699080577642,1190.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,2011.0,6,133652,2,1,1,0,1,,575.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,2263.86562507335,1090.0,10407.001619656987,1,1,1,2,90.0,1,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11434609539718917,4336.250674857078,1,1,1_0,1_1_0,1_1_0,1_0_0 -13028,2,52.0,0.0,7,112,530.0,0.0,0.0,21,45,0.0,0.0,732.5523406152432,2255.0,2967.5640822280807,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,100922,2,2,2,0,1,,235.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,1079.74974693727,530.0,40283.88029386469,1,1,0,1,100.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055977725669675384,20141.940146932346,5,3,5,5_1,5_0,5_0_0 -13029,1,46.0,483.0,6,111,600.0,0.0,0.0,0,56,0.0,0.0,829.3045365455583,600.0,0.0,0.0,33,2,2,2,2,1,2,2,2,3,45.0,2,,4,112159,2,1,0,1,1,490.0,0.0,586.0,32,2.0,0.0,4.0,4.0,2.3,2,2,322.889419370025,600.0,19021.44544986621,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03154334414707796,8270.193673854874,1,1,1_1,1_0_1,1_4_1,1_0_0 -13031,2,38.0,0.0,1,112,1300.0,0.0,0.0,46,52,0.0,0.0,1796.8264958487098,1360.0,103.2196202514115,0.0,71,2,2,2,2,1,2,2,2,2,25.0,1,,1,112061,2,2,1,0,1,,320.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1004.03837690408,1300.0,33170.99028090282,1,1,1,2,75.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.040999680397934286,18428.3279338349,4,2,4_0,4_1_0,4_0_0,4_1_0 -13032,2,58.0,0.0,6,111,1385.0,0.0,0.0,0,46,0.0,0.0,1914.311305192664,1385.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,4,129204,1,3,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,454.930031093984,1385.0,8497.65259187295,0,4,0,1,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.16298618765900091,8497.65259187295,1,1,1_0,1_0_0,1_4_0,1_0_0 -13033,2,41.0,0.0,9,112,1030.0,0.0,0.0,55,62,0.0,207.03450096389156,1423.6394544032084,1338.0,185.7953164525407,0.0,44,0,0,0,0,0,0,0,0,0,,1,2007.0,6,117095,2,2,1,0,1,,400.0,,43,3.0,0.0,6.0,4.0,2.5,3,3,1754.00494894948,1030.0,22150.789261229125,1,1,1,2,89.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060404168186545044,8860.31570449165,1,1,1_0,1_1_0,1_0_0,1_0_0 -13034,2,63.0,0.0,5,112,2680.0,0.0,0.0,45,74,0.0,0.0,3704.226929903494,2710.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,112517,2,1,2,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,1,824.22307549681,2680.0,63626.91737193911,7,5,0,1,120.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04259203670293118,42417.944914626074,9,5,9,9_1,9_0,9_0_0 -13036,1,47.0,255.0,7,111,210.0,270.0,0.0,0,67,0.0,0.0,290.25658779094545,480.0,0.0,489.6862832288112,70,0,0,0,0,0,0,0,0,0,,2,,5,106443,2,1,0,0,1,,0.0,260.0,12,1.0,1.0,1.0,1.0,1.0,3,2,357.253200636657,210.0,10015.242189913559,0,1,2,3,34.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04792694883438888,10015.242189913559,2,1,2_1,2_0_1,2_2_1,2_0_0 -13037,1,34.0,351.0,2,111,0.0,0.0,0.0,67,63,0.0,0.0,0.0,278.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,121511,2,3,0,1,2,250.0,0.0,320.0,43,2.0,0.0,1.0,3.0,1.8,1,1,506.999255665869,0.0,12323.859445998212,4,4,2,3,27.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02255786843546579,6846.588581110118,1,1,1_1,1_0_1,1_2_1,1_0_1 -13038,2,46.0,0.0,9,111,2000.0,0.0,0.0,54,38,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,50.0,3,2012.0,6,124643,2,1,0,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,353.200106148359,2000.0,61423.21454426879,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.032560979018096896,29249.149782985136,8,4,8,8_0,8_4,8_0_0 -13039,2,48.0,0.0,8,111,385.0,955.0,0.0,0,46,0.0,0.0,532.1370776167332,1340.0,0.0,1732.0385203093138,71,2,2,1,2,1,2,2,2,2,25.0,2,2001.0,6,109796,2,2,0,0,1,,468.0,354.0,32,1.0,0.0,3.0,3.0,2.0,2,2,317.772317642162,385.0,39840.02012217843,0,1,2,3,66.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03363452116466274,19920.010061089215,5,3,5,5_0,5_2,5_0_0 -13040,2,42.0,0.0,9,111,3300.0,0.0,0.0,55,37,0.0,0.0,4561.174951000571,3300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,120.0,1,2011.0,6,106811,2,2,1,0,1,,450.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,1,1,1054.2364132777,3300.0,87966.99999591855,1,1,1,2,132.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03751406777715634,30333.448274454677,8,4,8,8_1,8_4,8_0_0 -13041,2,77.0,0.0,1,112,372.0,0.0,0.0,86,75,2240.377315527001,0.0,514.1688126582462,2022.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111365,2,2,1,0,1,,180.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,922.951588197044,372.0,20726.232624778757,5,5,0,1,79.0,9,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09755752705306635,13817.48841651917,3,2,3_0,3_1_0,3_0_0,3_1_0 -13042,2,43.0,0.0,5,111,1500.0,0.0,0.0,0,47,0.0,0.0,2073.261341363896,1602.0,175.47335442739956,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,115859,2,2,1,0,1,,368.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,260.449029253674,1500.0,36127.22892809251,0,1,1,2,100.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044343284761436154,24084.819285395006,6,3,6,6_1,6_2,6_0_0 -13043,2,63.0,0.0,6,112,606.0,0.0,0.0,56,78,3530.8346492705537,0.0,837.5975819110139,3030.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,127435,2,1,2,0,1,,288.0,,42,1.0,4.0,8.0,2.0,1.5,1,1,914.714563733348,606.0,22013.8898196267,4,5,0,1,216.0,9,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1376403727295198,14675.9265464178,3,2,3_0,3_1_0,3_0_0,3_0_0 -13044,2,47.0,0.0,9,111,0.0,0.0,912.0,0,53,0.0,0.0,465.9529613718228,912.0,0.0,1042.6401464832,71,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,123454,2,1,0,0,1,,0.0,405.0,12,1.0,0.0,2.0,1.0,1.0,1,1,280.855979724519,0.0,39870.33789458586,0,1,2,3,51.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02287414775393323,39870.33789458586,9,5,9,9_0,9_2,9_0_0 -13045,2,35.0,0.0,1,112,320.0,0.0,0.0,48,47,0.0,0.0,442.2957528242978,3620.0,5677.079113827633,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,106396,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,853.492704472295,320.0,96083.98287584432,1,1,1,2,145.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03767537410140056,45754.27755992586,10,5,10,10_1,10_0,10_1_0 -13046,1,55.0,357.0,2,111,360.0,146.0,0.0,85,90,0.0,0.0,497.582721927335,942.0,0.0,264.79332352372757,71,1,2,2,1,2,2,2,2,1,5.0,2,,2,100130,2,3,0,1,1,938.0,0.0,402.0,42,1.0,0.0,5.0,5.0,2.4,2,1,287.791097440086,360.0,23232.50462255504,6,1,2,3,98.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.040546639947096744,9680.210259397934,1,1,1_1,1_0_1,1_2_1,1_0_1 -13047,0,53.0,0.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2474.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,120815,2,1,2,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1130.94629450095,0.0,5268.288571029421,0,7,5,0,35.0,9,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.46960221837593485,5268.288571029421,1,1,1_0,1_1_0,1_0_0,1_1_0 -13048,1,34.0,100.0,2,111,400.0,300.0,0.0,0,52,0.0,0.0,552.8696910303722,887.0,0.0,544.0958702542347,71,2,1,2,2,1,2,2,2,2,40.0,2,,2,122685,1,3,0,1,1,548.0,0.0,296.0,32,1.0,0.0,3.0,2.0,1.3,1,1,324.320752145178,400.0,18520.56858998417,0,1,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.047892698093496174,14246.591223064746,3,2,3_1,3_0_1,3_2_1,3_0_1 -13049,2,52.0,0.0,9,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,1946.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,104560,2,1,1,0,1,,689.0,,43,3.0,0.0,7.0,6.0,3.5,4,2,275.799146984077,0.0,89609.94607562183,1,1,1,2,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02171633937105342,25602.84173589195,7,4,7,7_1,7_4,7_0_0 -13050,1,45.0,323.0,2,111,350.0,400.0,0.0,0,52,0.0,0.0,483.76097965157567,750.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,130992,2,2,0,1,1,576.0,0.0,298.0,22,3.0,0.0,3.0,3.0,2.0,1,1,326.92000073826,350.0,12459.448563752972,0,1,2,3,62.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06019528040606067,6229.724281876486,1,1,1_1,1_0_1,1_2_1,1_0_1 -13051,2,44.0,0.0,9,111,2200.0,0.0,0.0,46,46,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,75.0,1,2011.0,6,120980,2,1,1,0,1,,239.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,282.015881386717,2200.0,4940.996799394919,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.44525428558654695,2470.4983996974597,1,1,1_0,1_1_0,1_4_0,1_0_0 -13052,2,67.0,0.0,2,112,165.0,0.0,0.0,0,78,2955.804471618623,621.1035028916747,228.05874755002856,2762.0,30.96588607542345,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,107496,1,1,2,0,2,,100.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,923.562952002717,165.0,14115.38898374474,0,5,0,1,84.0,9,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19567296396724984,14115.38898374474,3,2,3_0,3_1_0,3_0_0,3_0_1 -13053,2,46.0,0.0,9,111,1620.0,0.0,0.0,21,21,0.0,0.0,2239.1222486730076,1620.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,116232,2,1,1,0,1,,460.0,,43,2.0,0.0,6.0,4.0,2.5,5,4,257.038084218435,1620.0,35973.4219756471,1,1,1,2,144.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04503324707604103,14389.368790258839,3,2,3_0,3_1_0,3_4_0,3_0_0 -13054,2,36.0,0.0,8,112,1766.0,0.0,0.0,43,48,0.0,310.55175144583734,2440.9196858990936,2066.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,103097,2,1,1,0,1,,263.0,,43,2.0,0.0,6.0,4.0,2.1,4,3,853.492704472295,1766.0,42722.81638116308,4,1,1,2,130.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048358235130559424,20344.198276744322,5,3,5,5_1,5_0,5_0_0 -13055,2,56.0,0.0,2,111,500.0,66.0,0.0,56,77,0.0,0.0,691.0871137879653,850.0,0.0,119.70109145593163,71,2,1,2,1,2,2,2,2,0,,2,,2,128540,2,1,0,1,1,800.0,0.0,316.0,42,2.0,3.0,5.0,3.0,2.0,1,1,376.451044634182,500.0,38821.076872551006,1,7,2,3,79.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021895322553532888,19410.538436275503,5,3,5,5_0,5_2,5_0_1 -13056,2,51.0,0.0,7,112,1300.0,0.0,0.0,56,65,0.0,517.5862524097289,1796.8264958487098,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,6.0,1,,5,109667,2,2,2,0,2,,140.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,894.177685289301,1300.0,54015.80792349606,4,1,1,2,80.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033323578211574376,36010.53861566404,9,5,9,9_1,9_0,9_0_0 -13057,1,37.0,420.0,9,111,400.0,720.0,0.0,85,56,0.0,0.0,552.8696910303722,1120.0,0.0,1305.830088610163,70,0,0,0,0,0,0,0,0,3,15.0,3,2012.0,6,102491,2,1,0,0,1,,0.0,700.0,42,1.0,0.0,2.0,3.0,1.8,1,1,1603.87828183704,400.0,9042.076859568968,6,1,2,3,31.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12386534834801105,5023.376033093871,1,1,1_1,1_0_1,1_4_1,1_0_0 -13059,1,65.0,121.0,5,111,330.0,240.0,0.0,0,78,0.0,0.0,456.1174951000571,570.0,0.0,435.27669620338776,41,0,0,0,0,0,0,0,0,0,,2,,3,122154,2,1,0,1,1,937.0,0.0,372.0,31,3.0,3.0,5.0,6.0,3.5,1,1,282.889552965489,330.0,41150.66475502394,0,5,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01385153808312199,11757.332787149699,2,1,2_1,2_0_1,2_2_1,2_0_0 -13060,2,54.0,0.0,9,112,1600.0,0.0,0.0,52,62,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,1,2011.0,6,132035,2,1,1,0,1,,530.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1050.62119807309,1600.0,42049.54076379625,1,1,1,2,120.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038050356102285084,15017.693129927233,3,2,3_0,3_1_0,3_1_0,3_0_0 -13061,2,60.0,0.0,6,112,780.0,0.0,0.0,68,75,0.0,698.741440753134,1078.0958975092258,1511.0,96.33831223465073,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,132771,2,2,1,0,1,,120.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,913.206287823731,780.0,40023.64618241898,1,5,0,1,96.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03775268232967067,26682.430788279322,7,4,7,7_1,7_0,7_0_0 -13062,1,35.0,84.0,2,111,280.0,0.0,0.0,85,62,1862.5003416414468,0.0,387.00878372126056,1527.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,80.0,2,,2,120582,2,2,0,1,2,,0.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,286.786253709177,280.0,25489.048415264468,6,1,1,2,90.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05990808189942215,12137.642102506888,2,1,2_1,2_0_1,2_2_1,2_0_1 -13063,2,31.0,0.0,2,111,318.0,0.0,0.0,0,63,0.0,0.0,439.5314043691459,362.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,2,,2,108577,1,2,0,1,1,398.0,0.0,252.0,12,1.0,2.0,2.0,1.0,1.0,2,2,366.985351263384,318.0,13374.028938906753,0,1,2,3,45.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02706738572599435,13374.028938906753,3,2,3_0,3_0_0,3_2_0,3_0_1 -13064,2,92.0,0.0,5,112,0.0,0.0,0.0,0,71,0.0,0.0,0.0,870.0,44.72850210894499,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,117951,2,1,2,0,1,,120.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1010.74045447562,0.0,14877.56414571321,0,5,0,1,110.0,9,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05847731466516177,14877.56414571321,3,2,3_0,3_1_0,3_0_0,3_0_0 -13065,2,55.0,0.0,5,111,2800.0,0.0,0.0,65,52,0.0,0.0,3870.0878372126053,2800.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,1,,3,123440,1,2,3,0,1,,600.0,650.0,43,2.0,5.0,5.0,4.0,2.3,1,1,230.985141269099,2800.0,32534.429625691548,4,1,2,3,102.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.08606267367259811,14145.404185083282,3,2,3_0,3_1_0,3_2_0,3_0_0 -13067,2,36.0,0.0,9,111,631.0,0.0,0.0,85,38,0.0,0.0,872.1519376004122,631.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,109192,1,1,1,0,1,,900.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,265.114152758833,631.0,30204.655568223952,6,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020890819250520692,14383.16931820188,3,2,3_0,3_1_0,3_4_0,3_0_0 -13068,1,48.0,85.0,9,112,1350.0,0.0,0.0,0,63,0.0,0.0,1865.9352072275062,1378.0,48.169156117325365,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,111708,2,1,1,0,1,,200.0,,32,1.0,0.0,4.0,4.0,2.3,2,2,875.055419413304,1350.0,24701.249113741,0,1,1,2,98.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055786652474729935,10739.67352771348,2,1,2_1,2_1_1,2_0_1,2_0_0 -13069,2,72.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,10,1,2,2,2,1,2,2,2,0,,2,,3,112520,1,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,404.813468301625,300.0,23666.91834101437,0,5,0,1,85.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012675921540664001,23666.91834101437,6,3,6,6_0,6_2,6_0_0 -13070,0,53.0,0.0,9,112,0.0,0.0,0.0,90,53,0.0,0.0,0.0,942.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,7.0,2,2012.0,6,102039,2,1,0,0,1,,391.0,,43,3.0,5.0,3.0,3.0,2.0,1,1,1473.05182514383,0.0,65604.60240082414,1,1,5,0,64.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014358748708583995,32802.30120041207,8,4,8,8_0,8_1,8_0_0 -13071,2,50.0,0.0,6,112,850.0,0.0,0.0,45,48,0.0,0.0,1174.848093439541,850.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,116427,2,1,2,0,1,,200.0,,43,2.0,5.0,6.0,2.0,1.5,2,2,914.58321118184,850.0,59710.676126684746,1,1,1,2,125.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014235310251664263,39807.11741778983,9,5,9,9_1,9_0,9_0_0 -13072,1,52.0,249.0,2,111,180.0,50.0,0.0,0,63,0.0,0.0,248.7913609636675,867.0,0.0,90.68264504237244,20,0,0,0,0,0,0,0,0,0,,2,,2,128071,1,3,0,1,1,856.0,0.0,318.0,12,1.0,4.0,3.0,1.0,1.0,2,2,332.434790364702,180.0,6247.507976667966,0,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13877533301884698,6247.507976667966,1,1,1_1,1_0_1,1_2_1,1_0_1 -13074,2,55.0,0.0,2,111,0.0,0.0,421.0,0,63,0.0,0.0,215.09451396659804,421.0,0.0,481.30647112875783,20,0,0,0,0,0,0,0,0,1,15.0,2,,2,108371,2,1,0,1,1,,0.0,373.0,12,1.0,0.0,2.0,1.0,1.0,1,1,371.17428444559,0.0,21189.022337171984,0,1,2,3,40.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019868778903566402,21189.022337171984,5,3,5,5_0,5_2,5_0_1 -13075,2,19.0,0.0,9,112,800.0,0.0,0.0,0,64,0.0,207.03450096389156,1105.7393820607444,1093.0,159.99041138968784,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,113610,2,1,1,0,1,,150.0,,22,4.0,0.0,4.0,4.0,2.5,2,2,907.768858861962,800.0,62806.910166271,0,1,1,2,90.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01740254371862048,25122.7640665084,7,4,7,7_1,7_0,7_0_0 -13076,1,48.0,392.0,2,111,300.0,650.0,0.0,67,67,0.0,0.0,414.65226827277917,950.0,0.0,1178.8743855508417,70,2,2,2,2,1,2,2,2,0,,1,,2,131734,1,3,3,0,2,,600.0,349.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,239.1185649081,300.0,14191.516933900819,4,4,2,3,67.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.06694139917704159,5458.275743808008,1,1,1_1,1_1_1,1_2_1,1_0_1 -13077,2,64.0,0.0,1,111,382.0,1649.0,0.0,0,43,0.0,0.0,527.9905549340054,2031.0,0.0,2990.7136334974434,71,0,0,0,0,0,0,0,0,0,,1,,1,128702,1,2,1,0,2,,198.0,,22,2.0,0.0,6.0,2.0,1.5,3,3,202.057471553118,382.0,53129.84939348845,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038227098762469255,35419.899595658964,9,5,9,9_1,9_4,9_1_0 -13078,2,58.0,0.0,7,112,500.0,0.0,0.0,42,13,0.0,0.0,691.0871137879653,3000.0,4300.817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,116098,1,2,2,0,2,,200.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,1021.71347485186,500.0,208003.00476759765,1,1,0,1,195.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014422868570345455,104001.50238379883,10,5,10,10_1,10_0,10_0_0 -13079,2,62.0,0.0,2,111,210.0,81.0,0.0,0,52,0.0,0.0,290.25658779094545,291.0,0.0,146.90588496864336,50,2,1,2,2,2,2,2,1,2,10.0,2,,2,123139,2,2,0,1,1,780.0,0.0,247.0,12,1.0,1.0,3.0,1.0,1.0,3,3,328.389418954751,210.0,20687.820199278613,0,1,2,3,48.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014066247540673581,20687.820199278613,5,3,5,5_0,5_2,5_0_1 -13080,2,40.0,0.0,9,111,2000.0,0.0,0.0,37,31,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2007.0,6,117339,2,1,1,0,1,,380.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,217.166198110279,2000.0,43082.20616103854,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04642287798642733,17950.91923376606,4,2,4_0,4_1_0,4_4_0,4_0_0 -13081,2,71.0,0.0,1,112,2360.0,0.0,0.0,71,71,0.0,0.0,3261.931177079196,2360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130435,2,2,1,0,1,,600.0,,41,0.0,2.0,3.0,2.0,1.5,3,2,930.972512450156,2360.0,59599.091741192664,5,5,0,1,150.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.039597918878499554,39732.72782746178,9,5,9,9_1,9_0,9_1_0 -13082,2,35.0,0.0,7,112,2500.0,0.0,0.0,54,47,0.0,0.0,3455.435568939826,2570.0,120.42289029331342,0.0,71,2,2,1,1,1,2,2,2,2,25.0,1,,5,124164,1,2,1,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,794.345615193656,2500.0,50104.76191310852,1,1,1,2,120.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.051292529928729805,23859.41043481358,6,3,6,6_1,6_0,6_0_0 -13083,2,71.0,0.0,5,111,500.0,988.0,0.0,78,78,0.0,0.0,691.0871137879653,1488.0,0.0,1791.8890660372795,50,2,1,2,2,1,2,2,2,0,,2,,3,109033,2,2,0,1,1,657.0,0.0,324.0,41,0.0,5.0,4.0,2.0,1.5,4,4,311.372332622733,500.0,35725.73352195237,5,5,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.041650649358554656,23817.155681301578,6,3,6,6_0,6_2,6_0_0 -13084,2,45.0,0.0,9,111,0.0,0.0,0.0,46,53,0.0,0.0,0.0,2423.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,103101,2,1,1,0,1,,442.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,1066.17621456101,0.0,42804.529425821405,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05660615903274828,20383.109250391146,5,3,5,5_1,5_4,5_0_0 -13085,2,44.0,0.0,9,112,1860.0,0.0,0.0,53,45,0.0,0.0,2570.8440632912307,1908.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,2006.0,6,128696,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,924.346013357751,1860.0,61446.9575862853,1,1,1,2,120.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03105117120437965,30723.47879314265,8,4,8,8_1,8_0,8_0_0 -13086,1,62.0,167.0,2,111,0.0,0.0,2000.0,0,77,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,42,2,2,2,2,1,2,2,2,0,,2,,2,112753,2,3,0,0,1,,0.0,302.0,31,1.0,6.0,4.0,2.0,1.5,1,1,344.161139194706,0.0,15811.123073460829,0,5,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.12649322826137666,10540.748715640553,2,1,2_1,2_0_1,2_2_1,2_0_1 -13087,2,46.0,0.0,9,112,560.0,0.0,0.0,56,63,0.0,207.03450096389156,774.0175674425211,808.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,111764,2,1,1,0,1,,240.0,,43,2.0,8.0,5.0,2.0,1.5,3,3,872.96118135589,560.0,24635.24966459537,4,1,1,2,127.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03279853100742956,16423.49977639691,4,2,4_0,4_1_0,4_0_0,4_0_0 -13088,2,39.0,0.0,2,111,600.0,900.0,0.0,52,43,0.0,0.0,829.3045365455583,1871.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,122593,2,2,1,0,1,,378.0,,43,2.0,1.0,5.0,4.0,2.3,1,1,244.620628914493,600.0,53095.71021948503,1,1,1,2,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03523825168296518,23085.0913997761,6,3,6,6_1,6_2,6_0_1 -13089,2,41.0,0.0,9,111,2500.0,0.0,0.0,37,37,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,2011.0,6,112372,2,1,1,0,1,,750.0,1700.0,43,2.0,2.0,5.0,3.0,1.8,2,2,318.480026537885,2500.0,96162.3535055346,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02599769981561561,53423.529725297,10,5,10,10_1,10_4,10_0_0 -13090,2,54.0,0.0,1,111,695.0,0.0,0.0,56,47,0.0,414.0690019277831,960.6110881652718,1185.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,117563,1,2,2,0,2,,220.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,1640.09649356959,695.0,48082.92819758661,1,1,1,2,130.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024644921688847514,24041.464098793305,6,3,6,6_1,6_3,6_1_0 -13091,2,55.0,0.0,2,111,328.0,0.0,0.0,52,37,0.0,0.0,453.3531466449052,328.0,0.0,0.0,70,1,2,2,2,1,2,2,2,2,30.0,2,,2,121882,2,1,0,1,1,663.0,193.0,343.0,43,2.0,5.0,4.0,2.0,1.5,3,3,289.013948562316,328.0,59291.10726830265,1,1,2,3,70.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0055320268942818445,39527.4048455351,9,5,9,9_0,9_3,9_0_1 -13092,2,32.0,0.0,9,111,1512.0,0.0,0.0,54,38,0.0,0.0,2089.847432094807,1512.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,110210,2,1,1,0,1,,560.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,217.166198110279,1512.0,52675.96244021513,4,1,1,2,142.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02870379448151617,21948.31768342297,6,3,6,6_1,6_4,6_0_0 -13093,2,65.0,0.0,6,111,2476.0,0.0,0.0,72,46,0.0,0.0,3422.263387478004,2536.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104830,2,1,2,0,1,,419.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1514.50273974472,2476.0,36022.18911673906,5,5,0,1,94.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07040105174567397,24014.792744492705,6,3,6,6_1,6_3,6_0_0 -13094,1,35.0,370.0,5,111,386.0,0.0,0.0,0,43,0.0,0.0,533.5192518443092,386.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,123978,1,1,0,1,1,508.0,0.0,337.0,32,1.0,0.0,4.0,3.0,1.6,1,1,287.904709855885,386.0,10996.789509905251,0,1,2,3,80.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03510115380969275,6872.9934436907815,1,1,1_1,1_0_1,1_3_1,1_0_0 -13095,2,39.0,0.0,9,111,1471.0,0.0,0.0,35,42,0.0,0.0,2033.178288764194,1471.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,1,2012.0,6,105569,1,1,1,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1158.0464488468,1471.0,74834.91105981686,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019656601166054756,41574.95058878714,9,5,9,9_1,9_4,9_0_0 -13096,2,47.0,0.0,7,111,711.0,0.0,0.0,54,21,2080.563733686075,103.51725048194578,982.7258758064867,2264.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,130995,2,1,2,0,1,,229.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,1445.48706654905,711.0,27277.048477991157,1,1,1,2,100.0,9,7,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0830001824364076,11859.586294778765,2,1,2_0,2_1_0,2_3_0,2_0_0 -13097,1,22.0,321.0,2,111,131.0,0.0,0.0,0,56,0.0,0.0,181.0648238124469,221.0,154.82943037711726,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,110675,2,1,0,1,1,856.0,198.0,299.0,32,1.0,0.0,3.0,2.0,1.3,4,3,313.63072437102,131.0,9721.366313453731,0,4,2,3,63.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02273342993917949,7477.9740872721,1,1,1_1,1_0_1,1_3_1,1_0_1 -13098,2,42.0,0.0,9,111,0.0,0.0,0.0,65,53,0.0,0.0,0.0,766.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,111993,2,2,1,0,1,,406.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,271.701148054441,0.0,5406.405317976716,1,1,1,2,106.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.141683790790341,2574.478722846055,1,1,1_0,1_1_0,1_4_0,1_0_0 -13099,2,54.0,0.0,1,111,1673.0,0.0,0.0,42,37,0.0,0.0,2312.377482734532,1673.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,121568,2,1,1,0,1,,328.0,,43,3.0,2.0,4.0,4.0,2.5,2,2,1467.95811494302,1673.0,68618.3454326221,1,1,1,2,98.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02438123492270382,27447.33817304884,7,4,7,7_1,7_3,7_1_0 -13100,1,42.0,886.0,9,111,1200.0,0.0,0.0,85,21,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,109358,2,1,1,0,1,,950.0,,42,1.0,0.0,6.0,6.0,2.8999999999999995,4,3,275.799146984077,1200.0,3172.383233227343,6,1,1,2,138.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.37826451338894845,1093.925252837015,1,1,1_1,1_1_1,1_4_1,1_0_0 -13101,2,56.0,0.0,5,111,975.0,0.0,0.0,52,47,0.0,621.1035028916747,1347.6198718865323,1635.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,35.0,1,,3,106354,2,1,2,0,1,,250.0,,43,3.0,0.0,5.0,3.0,2.0,2,2,1581.98404980036,975.0,82778.51969210959,1,1,0,1,100.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019751500825108948,41389.259846054796,9,5,9,9_1,9_3,9_0_0 -13102,2,79.0,0.0,5,111,204.0,0.0,0.0,0,75,0.0,0.0,281.96354242548983,204.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,123582,2,1,0,1,2,,92.0,,11,0.0,3.0,2.0,1.0,1.0,3,2,382.966598879354,204.0,22815.9770757726,0,5,0,1,71.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008941102952659418,22815.9770757726,6,3,6,6_0,6_3,6_0_0 -13103,2,40.0,0.0,9,111,0.0,0.0,1177.0,42,34,0.0,0.0,601.344995103767,1177.0,0.0,1345.6002767661473,20,0,0,0,0,0,0,0,0,3,70.0,1,2012.0,6,113070,2,1,1,0,1,,645.0,,43,2.0,0.0,5.0,5.0,2.4,4,4,288.369924105865,0.0,38547.822920208084,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030533501267667608,16061.592883420035,4,2,4_0,4_1_0,4_4_0,4_0_0 -13104,2,51.0,0.0,2,111,0.0,0.0,278.0,0,85,0.0,0.0,142.03390708483198,278.0,0.0,317.82232535343155,50,0,0,0,0,0,0,0,0,0,,2,,2,115240,2,3,0,1,1,327.0,160.0,331.0,11,0.0,2.0,4.0,1.0,1.0,2,2,367.21854751173,0.0,22185.96047052302,0,7,2,3,71.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012530446917966872,22185.96047052302,6,3,6,6_0,6_3,6_0_1 -13105,1,49.0,150.0,9,111,1380.0,0.0,0.0,85,53,0.0,0.0,1907.4004340547842,1764.0,660.6055696090336,0.0,41,0,0,0,0,0,0,0,0,0,,1,2011.0,6,128308,2,1,1,0,1,,488.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,275.799146984077,1380.0,17799.101183905535,6,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09910612798780312,6592.259697742791,1,1,1_1,1_1_1,1_4_1,1_0_0 -13106,2,28.0,0.0,2,111,226.0,346.0,0.0,43,68,0.0,0.0,312.37137543216033,572.0,0.0,627.5239036932173,50,2,1,2,2,1,2,2,2,3,30.0,2,,2,114508,2,1,0,1,1,436.0,200.0,305.0,43,2.0,0.0,4.0,3.0,1.8,1,1,336.995770630194,226.0,34591.64938779183,4,1,2,3,50.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016535782771950492,19217.582993217686,5,3,5,5_0,5_3,5_0_1 -13107,1,40.0,306.0,9,112,1500.0,120.0,0.0,54,65,0.0,0.0,2073.261341363896,1620.0,0.0,217.63834810169388,41,2,2,2,2,1,2,2,2,2,30.0,1,2012.0,6,101200,2,2,1,0,1,,620.0,,43,2.0,0.0,5.0,5.0,2.4,6,5,290.532728694647,1500.0,21398.65433396499,4,1,1,2,105.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.07570569507394943,8916.105972485413,1,1,1_1,1_1_1,1_2_1,1_0_0 -13108,2,34.0,0.0,9,111,752.0,0.0,0.0,46,47,0.0,0.0,1039.3950191370998,812.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,130274,2,1,1,0,1,,584.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1497.59937605599,752.0,52576.23916745017,1,1,1,2,135.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015444238934889571,25036.304365452463,7,4,7,7_1,7_3,7_0_0 -13109,1,49.0,53.0,2,111,200.0,240.0,0.0,0,56,0.0,0.0,276.4348455151861,440.0,0.0,435.27669620338776,70,0,0,0,0,0,0,0,0,2,40.0,2,,2,109706,2,1,0,1,1,433.0,200.0,237.0,12,1.0,0.0,2.0,1.0,1.0,1,1,326.931150720836,200.0,15251.7753827267,0,1,2,3,40.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028849100446254876,15251.7753827267,3,2,3_1,3_0_1,3_3_1,3_0_1 -13110,2,68.0,0.0,1,111,577.0,0.0,0.0,77,75,2539.0942909306013,258.79312620486445,797.5145293113119,2557.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110017,2,1,2,0,1,,379.0,,41,0.0,2.0,7.0,2.0,1.5,2,1,1485.31613377968,577.0,43185.94847884412,5,5,0,1,180.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0592090735543905,28790.63231922941,8,4,8,8_1,8_3,8_1_0 -13111,2,41.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,677.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,125232,2,1,0,0,1,,79.0,273.0,12,1.0,0.0,2.0,1.0,1.0,2,2,337.73884496327,0.0,8362.60189294767,0,4,2,3,43.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08095566531403654,8362.60189294767,1,1,1_0,1_0_0,1_3_0,1_0_1 -13112,2,58.0,0.0,1,111,1342.0,0.0,0.0,52,38,0.0,822.962141331469,1854.877813406899,2137.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,1.0,1,,1,117453,2,1,1,0,1,,420.0,,42,1.0,0.0,4.0,3.0,2.0,4,4,1819.63018573905,1342.0,63856.425707032555,1,5,0,1,100.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03346570022262694,31928.212853516277,8,4,8,8_1,8_3,8_1_0 -13113,2,66.0,0.0,2,111,210.0,340.0,0.0,0,77,0.0,0.0,290.25658779094545,550.0,0.0,616.6419862881327,42,0,0,0,0,0,0,0,0,0,,2,,2,107155,2,2,0,1,1,500.0,160.0,305.0,11,0.0,5.0,4.0,1.0,1.0,2,2,334.317644127366,210.0,19564.42265301419,0,5,2,3,90.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028112253029621823,19564.42265301419,5,3,5,5_0,5_3,5_0_1 -13114,2,43.0,0.0,5,111,1170.0,0.0,0.0,56,48,0.0,1055.875954915847,1617.1438462638387,2190.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,130773,2,1,2,0,1,,530.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,1455.42177508883,1170.0,30261.263004065204,1,1,1,2,97.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07236974873473728,15130.631502032602,3,2,3_0,3_1_0,3_3_0,3_0_0 -13115,2,61.0,0.0,6,111,352.0,450.0,0.0,0,43,0.0,82.81380038555662,486.52532810672756,882.0,0.0,816.143805381352,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,102839,2,1,2,0,1,,247.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1452.95508669889,352.0,31860.1111799885,0,5,0,1,117.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027683519213642566,31860.1111799885,8,4,8,8_1,8_3,8_0_0 -13116,2,57.0,0.0,2,111,245.0,0.0,0.0,0,54,0.0,0.0,338.632685756103,245.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,112453,1,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,359.989787562309,245.0,7160.344969892183,0,4,0,1,55.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.034216228551861114,7160.344969892183,1,1,1_0,1_0_0,1_3_0,1_0_1 -13117,1,63.0,434.0,2,111,504.0,1460.0,0.0,85,65,0.0,0.0,696.615810698269,1964.0,0.0,2647.9332352372753,71,0,0,0,0,0,0,0,0,0,,1,,2,123436,2,1,2,0,1,,840.0,438.0,42,3.0,5.0,7.0,6.0,3.5,2,2,238.616421773584,504.0,32425.041115691383,6,4,2,3,100.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.060570470612281366,9264.297461626109,1,1,1_1,1_1_1,1_3_1,1_0_1 -13118,2,54.0,0.0,6,111,1568.0,0.0,0.0,78,55,0.0,0.0,2167.249188839059,1598.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,4,128140,2,1,1,0,1,,152.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1582.87459088755,1568.0,30014.824818869183,5,1,0,1,87.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05324035737817793,20009.883212579454,5,3,5,5_1,5_3,5_0_0 -13119,1,36.0,31.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1449.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,105345,2,1,0,0,1,,177.0,353.0,12,1.0,1.0,3.0,1.0,1.0,2,2,325.409763928784,0.0,11212.602935247633,0,4,2,3,55.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1292295828513612,11212.602935247633,2,1,2_1,2_0_1,2_3_1,2_0_1 -13120,2,67.0,0.0,5,111,1202.0,0.0,0.0,77,75,0.0,186.3310508675024,1661.3734215462684,1412.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,100391,2,2,3,0,1,,140.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1489.78543348941,1202.0,40266.54769154005,6,5,0,1,105.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03506632877535363,26844.365127693367,7,4,7,7_1,7_3,7_0_0 -13121,1,57.0,255.0,1,111,400.0,663.0,0.0,0,77,0.0,0.0,552.8696910303722,1063.0,0.0,1202.4518732618585,50,0,0,0,0,0,0,0,0,0,,2,,1,126253,2,2,0,0,1,,300.0,389.0,11,0.0,2.0,3.0,1.0,1.0,1,1,353.72681777036,400.0,10623.397581743393,0,7,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10006214978029207,10623.397581743393,2,1,2_1,2_0_1,2_2_1,2_1_0 -13122,2,72.0,0.0,9,111,600.0,360.0,0.0,0,78,0.0,0.0,829.3045365455583,960.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,106229,2,1,1,0,1,,700.0,453.0,11,0.0,3.0,3.0,1.0,1.0,2,2,225.527798308669,600.0,17827.72936334229,0,5,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0538486971859675,17827.72936334229,4,2,4_0,4_1_0,4_2_0,4_0_0 -13123,1,50.0,351.0,2,111,345.0,300.0,0.0,22,62,1308.3803522677686,0.0,476.85010851369606,1521.0,0.0,544.0958702542347,31,0,0,0,0,0,0,0,0,0,,2,,2,127776,2,1,0,1,1,876.0,0.0,348.0,43,2.0,2.0,4.0,3.0,1.8,1,1,295.51382040272,345.0,10924.842663388044,4,4,2,3,60.0,6,4,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13922397300029427,6069.35703521558,1,1,1_1,1_0_1,1_2_1,1_0_1 -13124,2,48.0,0.0,7,111,597.0,0.0,0.0,63,54,0.0,0.0,825.1580138628306,677.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,126003,2,1,2,0,1,,364.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1457.28524157327,597.0,54665.534507257595,1,1,0,1,96.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012384402825332642,36443.68967150506,9,5,9,9_1,9_3,9_0_0 -13125,2,56.0,0.0,1,111,737.0,0.0,0.0,54,48,4480.754631054002,0.0,1018.6624057234608,3797.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,112010,2,1,2,0,2,,483.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,1457.89127620254,737.0,62953.96152390551,1,1,1,2,125.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06031391683838935,41969.30768260368,9,5,9,9_1,9_3,9_1_0 -13126,1,39.0,385.0,2,111,240.0,200.0,0.0,85,85,0.0,0.0,331.72181461822333,440.0,0.0,362.73058016948977,44,0,0,0,0,0,0,0,0,0,,2,,2,107670,2,2,0,1,1,70.0,200.0,341.0,41,0.0,0.0,4.0,5.0,2.5999999999999996,2,2,275.14400401001,240.0,24740.625205690052,6,7,2,3,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01778451418838054,9515.62507911156,1,1,1_1,1_0_1,1_2_1,1_0_1 -13127,1,66.0,233.0,2,111,70.0,1500.0,0.0,0,77,0.0,0.0,96.75219593031514,1570.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,2,,2,107592,2,1,0,1,1,,0.0,220.0,11,0.0,0.0,2.0,1.0,1.0,3,3,281.731664555571,70.0,10385.994557467018,0,5,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15116510906230424,10385.994557467018,2,1,2_1,2_0_1,2_2_1,2_0_1 -13128,2,29.0,0.0,1,111,1800.0,0.0,0.0,21,46,0.0,517.5862524097289,2487.913609636675,2300.0,0.0,0.0,50,1,2,2,1,1,2,2,2,2,15.0,1,,1,127391,2,2,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1403.16943663094,1800.0,37795.463973129445,1,1,1,2,82.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.06085386335342191,17997.839987204497,4,2,4_0,4_1_0,4_3_0,4_1_0 -13129,1,33.0,230.0,2,111,200.0,600.0,0.0,0,52,0.0,0.0,276.4348455151861,800.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,119589,2,2,0,1,1,556.0,156.0,369.0,12,1.0,0.0,3.0,1.0,1.0,2,2,305.182291255254,200.0,10702.128772337494,0,1,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07475148328132748,10702.128772337494,2,1,2_1,2_0_1,2_2_1,2_0_1 -13130,2,77.0,0.0,2,111,385.0,320.0,0.0,86,75,0.0,0.0,532.1370776167332,705.0,0.0,580.3689282711837,50,0,0,0,0,0,0,0,0,0,,2,,2,109277,2,1,0,1,1,320.0,350.0,431.0,41,0.0,7.0,5.0,2.0,1.5,2,2,271.898206016784,385.0,26514.91636682912,5,5,2,3,85.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026588807230105926,17676.610911219414,4,2,4_0,4_0_0,4_2_0,4_0_1 -13131,2,65.0,0.0,6,111,370.0,780.0,0.0,0,77,0.0,0.0,511.40446420309434,1150.0,0.0,1414.6492626610102,50,0,0,0,0,0,0,0,0,0,,1,,4,109707,2,1,2,0,1,,260.0,320.0,11,0.0,5.0,2.0,1.0,1.0,1,1,229.821933064646,370.0,18631.571989245815,0,5,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06172318689286028,18631.571989245815,4,2,4_0,4_1_0,4_2_0,4_0_0 -13132,1,44.0,403.0,9,111,1474.0,0.0,0.0,85,63,0.0,0.0,2037.3248114469216,1594.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,106880,2,1,1,0,1,,260.0,800.0,42,1.0,0.0,4.0,5.0,2.4,1,1,1594.81864304672,1474.0,28361.187570171845,7,1,2,3,90.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05620357032145046,11817.161487571602,2,1,2_1,2_1_1,2_3_1,2_0_0 -13133,2,74.0,0.0,5,111,483.0,0.0,0.0,77,72,2474.870141218827,405.78762188922747,667.5901519191744,2628.0,165.1513924022584,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,129440,2,1,2,0,1,,147.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1514.50273974472,483.0,31506.0,5,5,0,1,90.0,9,7,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08341268329841935,21004.0,5,3,5,5_1,5_3,5_0_0 -13134,1,68.0,92.0,5,111,984.0,0.0,0.0,0,78,0.0,0.0,1360.0594399347156,984.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,3,125482,2,2,0,0,1,,744.0,263.0,21,1.0,3.0,3.0,3.0,2.0,2,1,327.228701295221,984.0,12013.178149514088,0,5,2,3,60.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08191004809495821,6006.589074757044,1,1,1_1,1_0_1,1_2_1,1_0_0 -13135,2,65.0,0.0,5,111,309.0,0.0,0.0,77,78,1438.3222365683346,72.46207533736204,427.09183632096256,1432.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,120589,2,1,1,0,1,,125.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,1423.29074362679,309.0,30737.251319763258,5,5,0,1,66.0,9,7,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04658842084162747,20491.500879842173,5,3,5,5_1,5_3,5_0_0 -13136,1,44.0,321.0,2,211,400.0,190.0,0.0,0,56,0.0,0.0,552.8696910303722,590.0,0.0,344.5940511610153,41,0,0,0,0,0,0,0,0,0,,2,,2,101443,1,2,0,1,1,1140.0,500.0,298.0,32,1.0,3.0,4.0,2.0,1.3,1,1,309.4069718779,400.0,8954.651746581832,0,4,2,3,80.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06588754277632457,6888.193651216794,1,1,1_1,1_0_1,1_2_1,1_0_1 -13137,2,45.0,0.0,2,211,300.0,100.0,0.0,0,62,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,31,2,1,2,2,1,2,2,2,0,,2,,2,113298,2,1,0,1,1,541.0,300.0,310.0,12,1.0,5.0,4.0,1.0,1.0,2,2,301.493143733993,300.0,23026.110993689537,0,1,2,3,78.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017371583074085883,23026.110993689537,6,3,6,6_0,6_2,6_0_1 -13138,2,31.0,0.0,9,111,2020.0,0.0,0.0,48,54,0.0,0.0,2791.9919397033796,2020.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,112436,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,1445.45432462028,2020.0,44939.06242462982,1,1,1,2,140.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04494975842871381,18724.60934359576,5,3,5,5_1,5_3,5_0_0 -13139,2,66.0,0.0,2,211,150.0,0.0,0.0,0,75,0.0,0.0,207.32613413638958,185.0,60.21144514665671,0.0,50,2,1,2,2,2,2,2,1,0,,2,,2,121263,2,1,0,1,1,265.0,192.0,168.0,11,0.0,3.0,1.0,1.0,1.0,2,2,318.74596605344,150.0,21219.358753399418,0,5,2,3,62.0,4,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008718453849146705,21219.358753399418,5,3,5,5_0,5_2,5_0_1 -13140,2,51.0,0.0,7,111,300.0,350.0,0.0,0,63,0.0,0.0,414.65226827277917,650.0,0.0,634.7785152966071,70,0,0,0,0,0,0,0,0,1,10.0,1,,5,115933,2,1,1,0,1,,599.0,520.0,12,1.0,3.0,5.0,1.0,1.0,2,2,1556.04544719407,300.0,16940.35938908643,0,1,2,3,88.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03836990615551832,16940.35938908643,4,2,4_0,4_1_0,4_3_0,4_0_0 -13141,2,44.0,0.0,8,211,1500.0,0.0,0.0,52,62,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,1,2003.0,6,116343,2,1,1,0,1,,450.0,457.0,43,2.0,0.0,5.0,4.0,2.3,2,2,204.713225705995,1500.0,38826.46556921795,1,1,2,3,98.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038633441854908794,16881.0719866165,4,2,4_0,4_1_0,4_2_0,4_0_0 -13142,1,48.0,130.0,2,211,450.0,0.0,0.0,63,67,0.0,0.0,621.9784024091688,1041.0,0.0,0.0,71,2,2,2,2,1,2,2,2,4,60.0,2,,2,101051,2,1,0,1,1,,250.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,266.890440627513,450.0,16120.022401314072,4,1,2,3,70.0,4,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06457807403016634,10746.681600876049,2,1,2_1,2_0_1,2_2_1,2_0_1 -13143,2,76.0,0.0,1,111,454.0,0.0,0.0,0,77,2987.1697540360015,0.0,627.5070993194724,2454.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,122360,2,1,1,0,2,,232.0,,11,0.0,1.0,5.0,1.0,1.0,3,1,1608.30592998764,454.0,25855.55934174285,0,5,0,1,150.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09491188984019028,25855.55934174285,7,4,7,7_1,7_3,7_1_0 -13144,2,73.0,0.0,5,111,280.0,0.0,0.0,78,78,0.0,0.0,387.00878372126056,392.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,131190,2,1,0,1,1,420.0,280.0,259.0,41,0.0,2.0,3.0,2.0,1.5,3,3,301.955622079019,280.0,29288.591924642533,5,5,2,3,68.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013384050725572201,19525.727949761687,5,3,5,5_0,5_3,5_0_0 -13145,2,77.0,0.0,8,111,1246.0,0.0,0.0,75,78,0.0,258.79312620486445,1722.1890875596096,1556.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,0,,1,1999.0,6,112715,2,1,1,0,1,,223.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,1619.95895929385,1246.0,45760.19183469936,5,5,0,1,90.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034003353954912954,30506.79455646624,8,4,8,8_1,8_3,8_0_0 -13146,1,35.0,427.0,2,111,516.0,0.0,0.0,0,85,0.0,0.0,713.2019014291802,516.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129680,2,1,0,1,1,980.0,451.0,385.0,31,1.0,0.0,5.0,4.0,2.3,2,2,257.193661179859,516.0,13105.156151135761,0,6,2,3,85.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03937381546997292,5697.89397875468,1,1,1_1,1_0_1,1_3_1,1_0_1 -13147,2,32.0,0.0,1,111,578.0,2331.0,0.0,43,38,0.0,0.0,798.8967035388879,2969.0,103.2196202514115,4227.624911875403,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,123524,1,1,2,0,2,,428.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1670.27898250353,578.0,55233.73903898004,1,1,1,2,146.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0537533770419687,30685.410577211132,8,4,8,8_1,8_3,8_1_0 -13148,1,37.0,491.0,6,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,597.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,122623,1,2,0,0,1,,197.0,488.0,32,1.0,0.0,5.0,4.0,2.1,2,2,271.007358248225,0.0,17231.841158811112,0,1,2,3,85.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03464516614898911,8205.63864705291,1,1,1_1,1_0_1,1_3_1,1_0_0 -13149,2,48.0,0.0,5,111,906.0,902.0,0.0,52,62,0.0,0.0,1252.2498501837931,1808.0,0.0,1635.914916564399,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,116395,2,1,1,0,1,,812.0,,43,6.0,0.0,4.0,6.0,3.5,3,3,290.459163871829,906.0,119837.29413093993,1,1,1,2,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0150871230288669,34239.22689455427,9,5,9,9_1,9_3,9_0_0 -13150,2,54.0,0.0,8,111,920.0,0.0,0.0,78,52,0.0,12.422070057833494,1271.600289369856,932.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,104849,2,1,1,0,1,,241.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1546.29106814829,920.0,46777.24784651764,5,1,1,2,92.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019924216214216275,31184.831897678425,8,4,8,8_1,8_3,8_0_0 -13151,2,60.0,0.0,2,111,760.0,0.0,0.0,43,62,0.0,0.0,1050.452412957707,760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127774,1,2,0,1,2,457.0,300.0,350.0,43,5.0,2.0,4.0,6.0,3.5,4,2,297.546326035464,760.0,53540.375854807564,4,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014194894747489098,15297.250244230732,3,2,3_0,3_0_0,3_3_0,3_0_1 -13152,2,69.0,0.0,1,111,760.0,0.0,0.0,75,75,3556.2255921798596,0.0,1050.452412957707,3261.0,206.439240502823,0.0,50,2,2,1,1,2,2,2,2,0,,1,,1,123811,1,2,3,0,2,,237.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,1567.51050404531,760.0,37819.18480385358,5,5,0,1,160.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0862260785607341,25212.789869235723,7,4,7,7_1,7_3,7_1_0 -13153,1,74.0,95.0,2,111,191.0,94.0,0.0,0,77,0.0,0.0,263.9952774670027,285.0,0.0,170.4833726796602,42,2,2,2,2,1,2,2,2,0,,2,,2,129971,1,3,0,1,1,38.0,90.0,248.0,11,0.0,1.0,3.0,1.0,1.0,2,2,325.409763928784,191.0,11538.653352076,0,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.024699589397815098,11538.653352076,2,1,2_1,2_0_1,2_3_1,2_0_1 -13154,2,72.0,0.0,2,111,470.0,990.0,0.0,77,75,0.0,0.0,649.6218869606873,1460.0,0.0,1795.5163718389745,70,0,0,0,0,0,0,0,0,0,,1,,2,116901,2,1,1,0,1,,352.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1456.73020851628,470.0,34282.43863618328,5,5,0,1,88.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042587402124277356,22854.959090788852,6,3,6,6_1,6_3,6_0_1 -13155,2,67.0,0.0,2,111,391.0,0.0,0.0,0,75,0.0,0.0,540.4301229821889,391.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,2,127669,2,1,0,1,1,,121.0,,11,0.0,1.0,5.0,1.0,1.0,2,1,326.140787185336,391.0,33019.86275818392,0,5,0,1,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011841357514518782,33019.86275818392,8,4,8,8_0,8_3,8_0_1 -13156,0,89.0,0.0,2,111,2130.0,0.0,0.0,0,77,0.0,0.0,2944.0311047367322,2220.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100268,2,1,2,0,1,,217.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1925.06899353497,2130.0,15026.683830235743,0,5,5,0,80.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1477371870653894,15026.683830235743,3,2,3_0,3_1_0,3_3_0,3_0_1 -13157,2,54.0,0.0,2,111,250.0,345.0,0.0,0,54,0.0,0.0,345.54355689398267,595.0,0.0,625.7102507923698,71,0,0,0,0,0,0,0,0,2,17.0,2,,2,104366,2,1,0,0,1,,113.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,374.06453192408,250.0,18966.37366207247,0,1,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0313713106470024,18966.37366207247,5,3,5,5_0,5_3,5_0_1 -13158,2,67.0,0.0,2,111,1005.0,0.0,0.0,77,74,0.0,388.18968930729665,1389.08509871381,1440.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,129766,2,1,1,0,1,,351.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,1416.80812293239,1005.0,37592.45296674793,5,5,0,1,91.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03830556099315305,25061.635311165286,7,4,7,7_1,7_3,7_0_1 -13159,1,39.0,431.0,5,111,400.0,492.0,0.0,62,56,0.0,0.0,552.8696910303722,892.0,0.0,892.3172272169448,50,0,0,0,0,0,0,0,0,0,,2,,3,117898,2,1,0,1,1,1423.0,600.0,388.0,43,2.0,3.0,5.0,5.0,2.8,1,1,283.700966594731,400.0,20707.835996089823,4,1,2,3,93.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0430754811931306,7395.655712889223,1,1,1_1,1_0_1,1_3_1,1_0_0 -13160,2,86.0,0.0,2,111,200.0,0.0,0.0,86,78,1530.9244989434508,0.0,276.4348455151861,1225.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117367,2,1,1,0,1,,135.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1555.95297109003,200.0,35431.0791291467,5,5,0,1,90.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03457416567908814,23620.719419431134,6,3,6,6_1,6_3,6_0_1 -13161,1,24.0,347.0,2,111,420.0,432.0,0.0,0,81,0.0,0.0,580.5131755818909,852.0,0.0,783.498053166098,50,1,2,1,1,1,2,2,2,0,,2,,2,122464,1,2,0,1,1,616.0,320.0,312.0,32,1.0,0.0,4.0,3.0,1.6,4,3,402.174553114714,420.0,11041.434937547596,0,4,2,3,79.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07716388357302018,6900.896835967247,1,1,1_1,1_0_1,1_3_1,1_0_1 -13162,2,82.0,0.0,2,111,210.0,109.0,0.0,0,77,0.0,0.0,290.25658779094545,319.0,0.0,197.68816619237194,50,0,0,0,0,0,0,0,0,0,,2,,2,123992,2,1,0,1,2,805.0,100.0,330.0,11,0.0,2.0,4.0,1.0,1.0,1,1,346.877745846518,210.0,16254.76292916555,0,5,2,3,75.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019625017072849804,16254.76292916555,4,2,4_0,4_0_0,4_3_0,4_0_1 -13163,2,58.0,0.0,5,111,860.0,0.0,0.0,78,78,0.0,0.0,1188.6698357153002,980.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,119135,2,1,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1416.80812293239,860.0,42524.93942445188,7,7,0,1,83.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023045300317029945,28349.95961630125,8,4,8,8_1,8_3,8_0_0 -13164,1,23.0,270.0,5,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1064.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,2,,3,123382,1,1,0,1,2,350.0,251.0,335.0,12,1.0,0.0,2.0,1.0,1.0,1,1,396.661077532751,0.0,9023.80577170755,0,1,2,3,63.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11791033926461188,9023.80577170755,1,1,1_1,1_0_1,1_3_1,1_0_0 -13165,2,51.0,0.0,6,111,557.0,0.0,0.0,33,62,0.0,448.2296945868252,769.8710447597933,990.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,4,127451,2,3,3,0,1,,390.0,472.0,43,2.0,2.0,5.0,2.0,1.5,2,2,1447.66457582923,557.0,41682.51739494207,1,1,2,3,90.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023750964717887475,27788.344929961382,7,4,7,7_1,7_3,7_0_0 -13166,2,45.0,0.0,2,111,480.0,480.0,0.0,56,63,0.0,0.0,663.4436292364467,960.0,0.0,870.5533924067755,71,0,0,0,0,0,0,0,0,0,,2,,2,124757,2,1,0,1,1,930.0,900.0,411.0,43,2.0,1.0,5.0,4.0,2.5,1,1,320.717026576107,480.0,35169.19758023543,4,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027296613686162288,14067.67903209417,3,2,3_0,3_0_0,3_3_0,3_0_1 -13167,2,79.0,0.0,2,111,366.0,1466.0,0.0,74,75,0.0,0.0,505.87576729279056,1832.0,0.0,2658.81515264236,50,0,0,0,0,0,0,0,0,0,,1,,2,121751,2,1,2,0,2,,379.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1522.81162672276,366.0,70767.4574455222,5,5,0,1,175.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025887605209079324,47178.30496368147,10,5,10,10_1,10_3,10_0_1 -13168,1,59.0,179.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,988.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,114233,2,1,0,1,1,,165.0,249.0,11,0.0,0.0,1.0,1.0,1.0,2,2,338.712130908715,0.0,11126.246102377707,0,7,2,3,38.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.08879904245411774,11126.246102377707,2,1,2_1,2_0_1,2_3_1,2_0_1 -13169,2,38.0,0.0,2,111,240.0,196.0,0.0,0,56,0.0,0.0,331.72181461822333,436.0,0.0,355.4759685661,31,2,1,1,2,1,2,2,2,3,31.0,2,,2,116096,1,3,0,1,1,916.0,160.0,253.0,12,1.0,0.0,2.0,1.0,1.0,1,1,325.509653848991,240.0,15221.838557600218,0,1,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02864305769307391,15221.838557600218,3,2,3_0,3_0_0,3_3_0,3_0_1 -13170,2,74.0,0.0,2,111,646.0,997.0,0.0,77,74,0.0,0.0,892.8845510140511,1643.0,0.0,1808.2119421449065,70,0,0,0,0,0,0,0,0,0,,1,,2,124965,2,2,3,0,1,,237.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,251.691129411864,646.0,62365.72435429738,5,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02634459900868268,41577.14956953159,9,5,9,9_1,9_3,9_0_1 -13171,2,55.0,0.0,2,111,2160.0,0.0,0.0,0,42,0.0,0.0,2985.49633156401,3160.0,1720.3270041901917,0.0,10,2,2,2,2,1,2,2,2,2,15.0,1,,2,112347,1,2,1,0,2,,195.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,1767.13976832566,2160.0,19058.46602075006,0,1,0,1,150.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.16580557934513324,19058.46602075006,5,3,5,5_1,5_3,5_0_1 -13172,2,58.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,616.0,0.0,0.0,50,1,1,1,2,1,2,2,2,0,,2,,2,113073,1,3,0,1,1,508.0,228.0,321.0,22,2.0,4.0,4.0,2.0,1.5,2,2,295.378249366649,0.0,25340.24954856284,0,1,2,3,85.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.024309152868422963,16893.49969904189,4,2,4_0,4_0_0,4_3_0,4_0_1 -13173,2,58.0,0.0,6,111,840.0,1347.0,0.0,68,78,0.0,1.0351725048194578,1161.0263511637818,2188.0,0.0,2442.9904574415136,42,0,0,0,0,0,0,0,0,0,,1,,4,123338,2,1,1,0,1,,406.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,1456.73020851628,840.0,52768.69533152604,1,7,1,2,100.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041463977577114834,35179.13022101736,9,5,9,9_1,9_3,9_0_0 -13174,2,65.0,0.0,2,111,1325.0,190.0,0.0,77,74,0.0,0.0,1831.380851538108,1515.0,0.0,344.5940511610153,12,0,0,0,0,0,0,0,0,0,,1,,2,128427,2,1,2,0,1,,264.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1526.37423825274,1325.0,54284.34379277726,5,5,0,1,100.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027908599315178174,36189.562528518174,9,5,9,9_1,9_3,9_0_1 -13175,2,80.0,0.0,2,111,0.0,0.0,2000.0,0,78,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,41,2,2,1,2,1,2,2,2,0,,1,,2,107147,2,2,2,0,1,,166.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,290.558513793988,0.0,23344.708652029152,0,6,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08567251919103122,23344.708652029152,6,3,6,6_1,6_3,6_0_1 -13176,1,30.0,456.0,2,111,462.0,288.0,0.0,0,85,0.0,0.0,638.5644931400799,750.0,0.0,522.3320354440652,10,0,0,0,0,0,0,0,0,0,,2,,2,105546,2,1,0,1,1,980.0,790.0,406.0,31,0.0,0.0,5.0,5.0,2.2,2,2,288.757045237734,462.0,14081.037177528879,0,6,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05326312192378002,6400.471444331308,1,1,1_1,1_0_1,1_3_1,1_0_1 -13177,2,87.0,0.0,2,111,718.0,0.0,0.0,75,72,3733.962192545002,0.0,992.4010953995181,3218.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111807,2,1,2,0,1,,99.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1641.99441144223,718.0,76170.99391932579,5,5,0,1,130.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04224705277455415,50780.66261288386,10,5,10,10_1,10_3,10_0_1 -13178,2,78.0,0.0,2,111,300.0,207.0,0.0,78,75,0.0,0.0,414.65226827277917,507.0,0.0,375.42615047542193,20,0,0,0,0,0,0,0,0,0,,2,,2,124854,2,2,0,1,1,,350.0,430.0,41,0.0,3.0,3.0,2.0,1.5,2,2,285.745366518178,300.0,27042.552686576742,5,5,2,3,61.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01874823009041089,18028.36845771783,4,2,4_0,4_0_0,4_3_0,4_0_1 -13179,1,43.0,285.0,2,111,0.0,0.0,800.0,0,42,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,127733,2,1,0,1,1,864.0,345.0,365.0,32,2.0,0.0,4.0,4.0,2.3,1,1,323.825899172311,0.0,25427.418709964582,0,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03146210038561615,11055.399439115037,2,1,2_1,2_0_1,2_3_1,2_0_1 -13180,1,41.0,106.0,9,111,1056.0,0.0,0.0,0,52,0.0,0.0,1459.5759843201827,1116.0,103.2196202514115,0.0,60,2,2,2,1,2,2,2,2,2,35.0,1,2010.0,6,106977,2,1,1,0,1,,389.0,791.0,32,2.0,0.0,4.0,3.0,1.8,1,1,1727.00147803549,1056.0,33117.12126196845,0,1,2,3,92.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.033698581201307774,18398.400701093586,4,2,4_1,4_1_1,4_3_1,4_0_0 -13181,1,37.0,23.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,909.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,101713,2,2,0,1,1,576.0,450.0,354.0,42,1.0,0.0,3.0,4.0,2.1,1,1,293.619701059567,0.0,26072.21405985314,6,1,2,3,70.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03486470300961928,12415.340028501494,2,1,2_1,2_0_1,2_3_1,2_0_1 -13183,1,61.0,236.0,1,111,72.0,53.0,0.0,0,81,0.0,0.0,99.516544385467,125.0,0.0,96.12360374491479,71,0,0,0,0,0,0,0,0,0,,2,,1,118185,2,1,0,0,1,,189.0,223.0,12,1.0,0.0,1.0,1.0,1.0,1,1,502.257794656919,72.0,4839.267902296582,0,4,2,3,32.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025830353376525915,4839.267902296582,1,1,1_1,1_0_1,1_3_1,1_1_0 -13184,1,53.0,113.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,513.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,121487,2,1,0,1,1,603.0,191.0,275.0,12,1.0,5.0,2.0,1.0,1.0,2,2,337.407169958156,0.0,9406.628148862505,0,1,2,3,50.0,8,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05453601353020789,9406.628148862505,1,1,1_1,1_0_1,1_3_1,1_1_0 -13185,1,41.0,289.0,5,111,782.0,0.0,0.0,0,54,0.0,25.879312620486445,1080.8602459643778,807.0,0.0,0.0,70,2,1,2,1,1,2,2,2,2,5.0,2,,3,115464,2,1,0,1,1,813.0,404.0,531.0,32,2.0,0.0,5.0,4.0,2.5,1,1,311.87450786203,782.0,46217.28409244437,0,1,2,3,118.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.01746100005326641,18486.913636977748,4,2,4_1,4_0_1,4_3_1,4_0_0 -13186,2,40.0,0.0,2,111,370.0,120.0,0.0,0,85,0.0,0.0,511.40446420309434,490.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,2,129695,2,2,0,1,1,,100.0,150.0,11,0.0,2.0,2.0,1.0,1.0,4,3,309.901252789814,370.0,9408.816619681096,0,7,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05207881286314284,9408.816619681096,1,1,1_0,1_0_0,1_3_0,1_0_1 -13187,1,47.0,270.0,1,111,800.0,0.0,0.0,0,68,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,113112,1,2,5,0,1,,115.0,380.0,12,1.0,1.0,2.0,1.0,1.0,1,1,326.404162921538,800.0,13742.648395367769,0,1,2,3,56.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0582129424390757,13742.648395367769,3,2,3_1,3_1_1,3_3_1,3_1_0 -13188,2,37.0,0.0,1,112,2600.0,0.0,0.0,55,64,0.0,0.0,3593.6529916974196,2620.0,34.40654008380383,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,106533,1,3,4,0,1,,480.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,2765.57699485419,2600.0,37988.02550134914,1,1,1,2,40.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06896910185308133,21104.458611860635,5,3,5,5_1,5_1,5_1_0 -13189,2,66.0,0.0,2,111,180.0,180.0,0.0,78,77,0.0,0.0,248.7913609636675,360.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,0,,2,,2,112266,2,1,0,1,1,,400.0,404.0,41,0.0,7.0,3.0,2.0,1.5,1,1,353.802629770399,180.0,21874.45919357144,5,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01645754973022594,14582.972795714295,3,2,3_0,3_0_0,3_3_0,3_0_1 -13190,2,48.0,0.0,1,112,1023.0,0.0,0.0,43,33,0.0,181.15518834340511,1413.964234810177,1318.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,2,3.0,1,,1,112344,2,1,3,0,1,,244.0,,43,2.0,0.0,8.0,6.0,3.3,2,2,2444.92002850395,1023.0,83933.47986293824,1,1,1,2,220.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0157029114264328,25434.387837254013,7,4,7,7_1,7_1,7_1_0 -13191,1,54.0,195.0,2,111,320.0,170.0,0.0,0,77,0.0,0.0,442.2957528242978,490.0,0.0,308.32099314406634,10,2,1,1,2,1,2,2,2,0,,2,,2,123109,2,3,0,1,1,831.0,476.0,298.0,31,0.0,2.0,5.0,4.0,2.5,2,2,269.716670255451,320.0,16819.995706169237,0,7,2,3,68.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.029131993168124166,6727.9982824676945,1,1,1_1,1_0_1,1_3_1,1_0_1 -13192,2,69.0,0.0,8,112,729.0,1008.0,0.0,77,74,0.0,0.0,1007.6050119028533,1737.0,0.0,1828.1621240542286,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,113542,2,1,1,0,1,,270.0,,41,0.0,1.0,6.0,2.0,1.5,3,2,2398.67754585832,729.0,38284.910843896534,5,5,0,1,106.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04537035510105978,25523.273895931023,7,4,7,7_1,7_1,7_0_0 -13193,1,45.0,134.0,5,111,520.0,200.0,0.0,0,52,0.0,0.0,718.7305983394839,720.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,3,75.0,2,,3,130058,1,2,0,1,1,625.0,1000.0,319.0,32,2.0,0.0,3.0,5.0,2.5999999999999996,2,2,294.064498087905,520.0,35806.4359628106,0,1,2,3,69.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020108116896856442,13771.70613954254,3,2,3_1,3_0_1,3_3_1,3_0_0 -13194,1,71.0,31.0,1,112,866.0,0.0,0.0,0,78,0.0,0.0,1196.9628810807558,936.0,120.42289029331342,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,104219,2,2,0,0,1,,0.0,331.0,11,0.0,0.0,2.0,1.0,1.0,1,1,4282.6977070183,866.0,13154.206720247654,0,5,2,3,40.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.07115594424704146,13154.206720247654,2,1,2_1,2_0_1,2_1_1,2_1_0 -13195,2,56.0,0.0,5,111,350.0,0.0,0.0,77,37,0.0,0.0,483.76097965157567,350.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,104638,2,1,0,1,1,,139.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,342.388138317985,350.0,60304.301306817084,6,1,0,1,100.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005803897772055512,40202.86753787805,9,5,9,9_0,9_3,9_0_0 -13196,1,33.0,495.0,2,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,776.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,100253,2,1,0,1,1,,540.0,695.0,42,1.0,0.0,5.0,5.0,2.4000000000000004,3,3,277.924972622097,0.0,30334.330320312925,6,1,2,3,95.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025581576774759498,12639.304300130383,2,1,2_1,2_0_1,2_3_1,2_0_1 -13197,2,52.0,0.0,8,112,0.0,0.0,0.0,33,34,0.0,0.0,0.0,978.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,120732,2,1,2,0,1,,277.0,780.0,43,2.0,5.0,5.0,2.0,1.5,4,4,2445.59234260318,0.0,77797.72535962677,1,1,2,3,100.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012571061627818934,51865.15023975118,10,5,10,10_1,10_1,10_0_0 -13198,2,44.0,0.0,2,111,1300.0,0.0,0.0,54,54,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,70,1,2,2,1,1,2,2,2,0,,1,,2,124278,2,2,1,0,1,,175.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,258.910482077022,1300.0,26852.07235561603,4,1,1,2,37.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.048413395539212783,17901.381570410686,4,2,4_0,4_1_0,4_3_0,4_0_1 -13199,2,40.0,0.0,5,111,500.0,0.0,0.0,0,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,113346,2,1,0,1,1,,160.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,306.064099671046,500.0,16861.764983239817,0,1,1,2,105.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02965288630798661,12970.588448646013,2,1,2_0,2_0_0,2_3_0,2_0_0 -13200,1,67.0,44.0,2,111,600.0,0.0,0.0,0,72,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,2,1,1,1,2,2,2,0,,2,,2,109364,1,3,0,1,1,600.0,125.0,288.0,11,0.0,4.0,3.0,1.0,1.0,2,2,335.940123347345,600.0,17331.909033963457,0,5,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.034618229233966395,17331.909033963457,4,2,4_1,4_0_1,4_3_1,4_0_1 -13201,2,43.0,0.0,2,112,364.0,0.0,0.0,56,63,3733.962192545002,0.0,503.1114188376387,2961.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,131117,2,2,2,0,1,,184.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,2311.63571881746,364.0,53587.68764671134,1,1,1,2,90.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05525522988640686,23298.994629004934,6,3,6,6_1,6_1,6_0_1 -13202,1,53.0,260.0,2,111,160.0,300.0,0.0,85,63,0.0,0.0,221.1478764121489,460.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,103620,2,1,0,1,1,600.0,800.0,312.0,42,3.0,0.0,5.0,7.0,3.6,2,2,273.592675770034,160.0,42645.42098777476,6,4,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0107866211505303,11845.95027438188,2,1,2_1,2_0_1,2_3_1,2_0_1 -13203,2,82.0,0.0,2,112,0.0,681.0,0.0,0,78,0.0,0.0,0.0,2724.0,0.0,1235.0976254771126,42,0,0,0,0,0,0,0,0,0,,1,,2,122111,2,1,1,0,1,,140.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2434.23871634399,0.0,17581.538470465035,0,5,0,1,90.0,7,2,2,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15493524668367373,17581.538470465035,4,2,4_0,4_1_0,4_1_0,4_0_1 -13204,1,52.0,215.0,5,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,717.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108587,2,1,0,1,1,440.0,215.0,198.0,12,1.0,3.0,1.0,1.0,1.0,2,2,374.156645374643,0.0,14778.209505289946,0,1,2,3,37.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04851737957452462,14778.209505289946,3,2,3_1,3_0_1,3_3_1,3_0_0 -13205,2,41.0,0.0,2,112,550.0,1267.0,0.0,55,45,0.0,207.03450096389156,760.1958251667618,2017.0,0.0,2297.8982253737177,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,120551,2,1,3,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,2311.63571881746,550.0,37744.524134593,1,1,1,2,90.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05343821511188194,16410.662667214347,4,2,4_0,4_1_0,4_1_0,4_0_1 -13206,1,49.0,438.0,2,111,1200.0,0.0,0.0,85,53,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,1,,2,126415,2,1,3,0,1,,350.0,400.0,42,2.0,0.0,5.0,6.0,3.3,1,1,212.31669142092,1200.0,25492.333938933603,6,4,2,3,116.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.047072975070645826,7724.949678464729,1,1,1_1,1_1_1,1_3_1,1_0_1 -13207,1,38.0,49.0,9,112,980.0,0.0,0.0,85,62,298.71697540360015,1138.6897553014035,1354.530743024412,2346.0,113.54158227655265,0.0,50,2,2,2,1,2,2,2,2,2,45.0,1,2008.0,6,108449,2,3,1,0,1,,600.0,,42,1.0,0.0,5.0,6.0,2.8999999999999995,1,1,2337.56034783613,980.0,47510.13892933669,6,1,1,2,107.0,7,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.049378933694327415,16382.806527357481,4,2,4_1,4_1_1,4_1_1,4_0_0 -13208,2,51.0,0.0,2,111,480.0,0.0,0.0,85,48,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,2,2,1,1,1,2,2,2,0,,2,,2,100126,1,1,0,1,1,660.0,300.0,311.0,42,1.0,2.0,4.0,3.0,1.8,1,1,380.662803742205,480.0,29274.874631902385,6,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01639631274379288,16263.81923994577,4,2,4_0,4_0_0,4_3_0,4_0_1 -13209,1,44.0,135.0,9,112,0.0,0.0,1660.0,63,47,0.0,0.0,848.1161358302916,1660.0,0.0,1897.7879859233683,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,131361,2,2,1,0,1,,267.0,596.0,43,4.0,1.0,5.0,5.0,2.8,3,2,2194.33780343255,0.0,24369.620245676953,1,1,2,3,96.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06811759819254777,8703.435802027483,1,1,1_1,1_1_1,1_1_1,1_0_0 -13210,1,34.0,62.0,9,112,0.0,0.0,0.0,53,46,0.0,0.0,0.0,1765.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2005.0,6,116554,2,2,1,0,1,,919.0,621.0,43,2.0,0.0,5.0,4.0,2.1,2,2,2371.46329592963,0.0,26779.938209851633,4,4,2,3,95.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.065907545647387,12752.351528500776,2,1,2_1,2_1_1,2_1_1,2_0_0 -13211,2,82.0,0.0,2,111,409.0,0.0,0.0,0,78,0.0,0.0,565.3092590785556,409.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,132606,2,1,0,1,1,,203.0,387.0,11,0.0,7.0,3.0,1.0,1.0,3,2,334.317644127366,409.0,16910.640681927467,0,5,2,3,55.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02418595532202996,16910.640681927467,4,2,4_0,4_0_0,4_3_0,4_0_1 -13212,2,76.0,0.0,8,112,1016.0,0.0,0.0,77,78,0.0,0.0,1404.2890152171453,1064.0,82.5756962011292,0.0,44,2,2,2,2,1,2,2,2,0,,1,2003.0,6,122787,2,2,1,0,1,,207.0,538.0,41,0.0,1.0,3.0,2.0,1.5,1,1,2589.76119819484,1016.0,26322.0,5,5,2,3,60.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04042246029936935,17548.0,4,2,4_0,4_1_0,4_1_0,4_0_0 -13213,2,63.0,0.0,5,111,0.0,0.0,350.0,78,56,0.0,0.0,178.81966719313377,350.0,0.0,400.136021128421,71,0,0,0,0,0,0,0,0,0,,2,,3,104276,1,1,0,1,2,,192.0,,42,1.0,3.0,4.0,2.0,1.5,4,2,336.79548339268,0.0,20973.71420136999,5,1,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016687554557081655,13982.476134246659,3,2,3_0,3_0_0,3_3_0,3_0_0 -13214,2,36.0,0.0,8,112,1000.0,0.0,0.0,54,38,0.0,258.79312620486445,1382.1742275759307,1280.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,124700,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2431.31647821917,1000.0,67705.0,1,1,1,2,89.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01890554611919356,32240.47619047619,8,4,8,8_1,8_1,8_0_0 -13215,1,66.0,124.0,2,111,0.0,0.0,380.0,85,77,0.0,0.0,194.14706723825952,380.0,0.0,434.43339436799994,50,2,2,2,1,2,2,2,2,0,,2,,2,120752,2,2,0,2,1,1545.0,0.0,295.0,41,1.0,5.0,3.0,3.0,2.0,2,2,346.220810210935,0.0,26896.57017984595,7,5,2,3,59.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01412819543380815,13448.285089922974,3,2,3_1,3_0_1,3_3_1,3_0_1 -13216,2,58.0,0.0,2,112,0.0,0.0,1544.0,0,54,0.0,0.0,788.8501889891387,1544.0,0.0,1765.171476063663,12,0,0,0,0,0,0,0,0,2,5.0,1,,2,119804,2,2,1,0,1,,203.0,,12,1.0,3.0,3.0,1.0,1.0,4,2,2441.97158398846,0.0,21179.67207955066,0,1,1,2,60.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07290008996365713,21179.67207955066,5,3,5,5_1,5_1,5_0_1 -13217,1,66.0,150.0,5,111,155.0,55.0,0.0,0,77,0.0,0.0,214.23700527426922,210.0,0.0,99.75090954660969,50,0,0,0,0,0,0,0,0,0,,2,,3,122633,2,2,0,1,1,504.0,118.0,291.0,11,0.0,3.0,2.0,1.0,1.0,1,1,339.53016591034,155.0,12196.692108451522,0,5,2,3,50.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017217783160606598,12196.692108451522,2,1,2_1,2_0_1,2_3_1,2_0_0 -13218,2,75.0,0.0,1,112,150.0,0.0,0.0,0,72,2240.377315527001,0.0,207.32613413638958,1682.0,55.050464134086134,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109142,2,1,2,0,1,,100.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2899.05431632815,150.0,13796.002261963324,0,5,0,1,80.0,7,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1219193769369992,13796.002261963324,3,2,3_0,3_1_0,3_1_0,3_1_0 -13219,1,67.0,172.0,2,111,0.0,0.0,240.0,0,78,0.0,0.0,122.61920036100601,240.0,0.0,274.37898591663156,71,0,0,0,0,0,0,0,0,0,,2,,2,129338,2,1,0,1,1,860.0,80.0,234.0,11,0.0,1.0,2.0,1.0,1.0,1,1,337.407169958156,0.0,9972.3328,0,5,2,3,37.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02406658550344409,9972.3328,2,1,2_1,2_0_1,2_3_1,2_0_1 -13220,2,86.0,0.0,6,112,1643.0,0.0,0.0,78,78,0.0,0.0,2270.912255907254,1769.0,216.76120252796414,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109715,2,1,2,0,1,,217.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,2411.74529893702,1643.0,26603.241762019046,5,5,0,1,75.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06649565552291331,17735.494508012696,4,2,4_0,4_1_0,4_1_0,4_0_0 -13221,2,63.0,0.0,1,112,273.0,0.0,0.0,0,72,0.0,207.03450096389156,377.33356412822906,2465.0,3426.8913923468617,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130786,2,3,1,0,1,,118.0,,11,0.0,0.0,5.0,1.0,1.0,2,1,2910.82490875271,273.0,11070.029184553037,0,5,0,1,108.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22267330635764052,11070.029184553037,2,1,2_0,2_1_0,2_1_0,2_1_0 -13222,2,23.0,0.0,8,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,373.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,2003.0,6,118669,2,1,0,0,1,,118.0,515.0,12,1.0,0.0,3.0,1.0,1.0,4,4,3720.62740958592,0.0,19526.842310488,0,1,2,3,60.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01910191079894465,19526.842310488,5,3,5,5_0,5_1,5_0_0 -13223,1,30.0,184.0,2,111,390.0,0.0,0.0,0,65,0.0,0.0,539.0479487546129,510.0,206.439240502823,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,122225,1,3,0,1,1,57.0,0.0,680.0,22,2.0,1.0,5.0,2.0,1.5,3,2,288.440171544005,390.0,32587.571232868388,0,1,2,3,85.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.015650138402631405,21725.047488578926,6,3,6,6_0,6_3,6_0_1 -13224,2,78.0,0.0,2,112,350.0,0.0,0.0,77,78,746.7924385090004,698.741440753134,483.76097965157567,1637.0,192.67662446930146,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124022,2,1,2,0,2,,234.0,,41,0.0,2.0,5.0,2.0,1.5,4,4,2392.00143786118,350.0,25031.085239756983,5,5,0,1,90.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06539868265080036,16687.39015983799,4,2,4_0,4_1_0,4_1_0,4_0_1 -13225,1,54.0,56.0,8,112,619.0,1186.0,0.0,0,67,0.0,0.0,855.565846869501,1805.0,0.0,2150.992340405074,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128461,2,2,1,0,1,,448.0,493.0,32,3.0,2.0,4.0,4.0,2.5,1,1,2158.95128515879,619.0,28831.54067127537,0,4,2,3,88.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06260504842872677,11532.616268510148,2,1,2_1,2_1_1,2_1_1,2_0_0 -13226,2,51.0,0.0,5,111,470.0,0.0,0.0,46,33,2053.6792058997507,0.0,649.6218869606873,1845.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,10.0,2,,3,108011,2,2,0,1,1,,411.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,287.875221089785,470.0,72153.73185611624,1,1,0,1,85.0,9,7,2,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025570402979005518,48102.48790407749,10,5,10,10_0,10_3,10_0_0 -13227,2,53.0,0.0,7,112,0.0,0.0,0.0,37,22,0.0,0.0,0.0,943.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,,5,103573,2,1,2,0,1,,417.0,875.0,43,2.0,3.0,7.0,3.0,2.0,1,1,3080.05858682733,0.0,46176.621152366126,4,1,2,3,180.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020421589463820698,23088.310576183063,6,3,6,6_1,6_1,6_0_0 -13228,1,32.0,305.0,2,112,420.0,0.0,0.0,0,63,0.0,0.0,580.5131755818909,450.0,51.60981012570575,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,120217,2,3,0,1,1,874.0,0.0,293.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2770.49334438193,420.0,17612.62313163273,0,4,2,3,72.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025549856863273723,13548.171639717482,3,2,3_1,3_0_1,3_1_1,3_0_1 -13229,2,60.0,0.0,5,111,220.0,0.0,0.0,0,54,0.0,0.0,304.0783300667047,220.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,20.0,2,,3,107683,1,3,0,1,1,,0.0,350.0,12,1.0,2.0,3.0,1.0,1.0,1,1,416.874284962139,220.0,26720.065248056497,0,1,2,3,80.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.008233512828566235,26720.065248056497,7,4,7,7_0,7_3,7_0_0 -13230,2,74.0,0.0,2,112,258.0,0.0,0.0,77,78,0.0,0.0,356.6009507145901,303.0,77.41471518855863,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,108454,1,3,0,1,1,756.0,0.0,338.0,41,0.0,2.0,4.0,2.0,1.5,2,2,3126.00010971144,258.0,27483.688944431415,5,5,2,3,79.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01102472090310104,18322.45929628761,4,2,4_0,4_0_0,4_1_0,4_0_1 -13231,2,79.0,0.0,5,111,243.0,0.0,0.0,0,72,0.0,0.0,335.8683373009511,243.0,0.0,0.0,42,2,2,1,2,1,2,2,2,0,,2,,3,116228,2,1,0,1,1,,124.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,376.54963312057,243.0,14037.71994455539,0,5,0,1,73.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017310503483455583,14037.71994455539,3,2,3_0,3_0_0,3_3_0,3_0_0 -13232,2,32.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,592.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,31.0,2,,2,116408,2,2,0,1,1,583.0,0.0,306.0,12,1.0,0.0,3.0,1.0,1.0,2,2,320.330990218549,0.0,23089.82889564943,0,1,2,3,75.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025638994670573078,23089.82889564943,6,3,6,6_0,6_3,6_0_1 -13233,2,55.0,0.0,6,112,967.0,0.0,0.0,68,62,0.0,0.0,1336.5624780659248,992.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,115198,1,1,3,0,1,,221.0,286.0,43,2.0,0.0,3.0,2.0,1.5,4,3,2183.02799327659,967.0,19643.191477802866,1,1,2,3,50.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05050095862075043,13095.460985201911,2,1,2_0,2_1_0,2_1_0,2_0_0 -13234,2,39.0,0.0,2,112,2140.0,0.0,0.0,67,64,0.0,0.0,2957.8528470124916,2236.0,165.1513924022584,0.0,50,2,2,2,2,2,2,2,1,2,25.0,1,,2,115699,2,2,3,0,1,,153.0,,43,2.0,1.0,5.0,4.0,2.3,3,3,2352.74824879888,2140.0,44000.26975379934,1,1,1,2,100.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.050817870265600494,19130.552066869277,5,3,5,5_1,5_1,5_0_1 -13235,1,41.0,216.0,2,111,250.0,250.0,0.0,0,85,0.0,0.0,345.54355689398267,500.0,0.0,453.4132252118622,43,0,0,0,0,0,0,0,0,0,,2,,2,101192,2,1,0,1,1,792.0,200.0,204.0,11,0.0,0.0,2.0,1.0,1.0,2,2,337.407169958156,250.0,9891.123434703279,0,7,2,3,43.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050550375121771934,9891.123434703279,2,1,2_1,2_0_1,2_3_1,2_0_1 -13236,2,53.0,0.0,2,112,53.0,60.0,0.0,75,43,0.0,0.0,73.25523406152432,113.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,124201,1,1,4,0,2,,200.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2321.56599463464,53.0,64474.00528596091,5,1,1,2,138.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0017526443331512013,42982.67019064061,9,5,9,9_1,9_1,9_0_1 -13237,2,31.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,727.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,127299,2,2,0,1,1,603.0,204.0,285.0,12,1.0,0.0,2.0,1.0,1.0,2,2,343.357691664784,0.0,9531.046026987548,0,1,2,3,45.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07627704219888035,9531.046026987548,1,1,1_0,1_0_0,1_3_0,1_0_1 -13238,1,78.0,102.0,5,112,450.0,0.0,0.0,0,77,0.0,0.0,621.9784024091688,643.0,37.84719409218422,0.0,44,2,2,2,1,2,2,2,2,0,,1,,3,123072,1,3,3,0,1,,173.0,202.0,11,0.0,3.0,3.0,1.0,1.0,2,2,2416.47952651192,450.0,11996.713910679187,0,5,2,3,50.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.0535980106542023,11996.713910679187,2,1,2_1,2_1_1,2_1_1,2_0_0 -13239,2,41.0,0.0,2,111,450.0,50.0,0.0,0,45,0.0,0.0,621.9784024091688,500.0,0.0,90.68264504237244,70,2,2,2,1,1,2,2,2,3,30.0,2,,2,125727,1,2,0,1,2,,200.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,343.204172627788,450.0,29462.91724133311,0,1,1,2,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.016970485166301084,19641.944827555406,5,3,5,5_0,5_3,5_0_1 -13240,2,60.0,0.0,6,112,750.0,0.0,0.0,85,37,0.0,362.31037668681023,1036.630670681948,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,100501,2,1,2,0,1,,250.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,2382.05386938885,750.0,25266.006259403388,6,4,0,1,120.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043536757994374634,16844.00417293559,4,2,4_0,4_1_0,4_1_0,4_0_0 -13241,2,78.0,0.0,2,111,600.0,0.0,0.0,90,75,2987.1697540360015,0.0,829.3045365455583,2740.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120560,2,1,2,0,1,,207.0,,41,0.0,3.0,5.0,2.0,1.5,3,2,242.858365864681,600.0,34672.95561577526,5,5,0,1,96.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0790241256142979,23115.303743850174,6,3,6,6_1,6_3,6_0_1 -13242,2,61.0,0.0,1,112,1050.0,0.0,0.0,77,34,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,20.0,1,,1,131438,2,2,3,0,1,,220.0,563.0,42,1.0,4.0,2.0,2.0,1.5,1,1,2814.91501838911,1050.0,47281.59420028476,7,1,2,3,72.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02220737303298619,31521.06280018984,8,4,8,8_1,8_1,8_1_0 -13243,1,67.0,241.0,2,111,550.0,660.0,0.0,0,77,0.0,0.0,760.1958251667618,1210.0,0.0,1197.0109145593162,31,0,0,0,0,0,0,0,0,0,,2,,2,111073,2,3,0,1,1,320.0,600.0,323.0,21,2.0,4.0,5.0,3.0,2.0,2,2,327.221827201441,550.0,19436.020242547467,0,5,2,3,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06225554331082576,9718.010121273734,1,1,1_1,1_0_1,1_3_1,1_0_1 -13244,2,71.0,0.0,1,112,1260.0,0.0,0.0,78,78,0.0,0.0,1741.5395267456724,1449.0,325.14180379194624,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,122034,2,2,4,0,1,,142.0,,41,1.0,0.0,5.0,3.0,2.0,2,2,2622.63638088994,1260.0,36104.233478223294,5,5,0,1,100.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04013379762996442,18052.116739111647,4,2,4_0,4_1_0,4_1_0,4_1_0 -13245,2,75.0,0.0,2,111,460.0,1300.0,0.0,0,78,0.0,0.0,635.800144684928,1760.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,2,127292,2,1,2,0,1,,170.0,,11,0.0,1.0,5.0,1.0,1.0,5,5,260.377935856349,460.0,26535.74444247226,0,5,0,1,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06632563121850844,26535.74444247226,7,4,7,7_1,7_3,7_0_1 -13246,2,52.0,0.0,2,111,300.0,1500.0,0.0,90,63,0.0,0.0,414.65226827277917,1800.0,0.0,2720.4793512711735,70,2,2,2,2,1,2,2,2,2,15.0,1,,2,116450,1,1,2,0,1,,200.0,600.0,43,2.0,3.0,4.0,2.0,1.5,1,1,253.404485367822,300.0,30954.711381517085,1,1,2,3,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05814946803460657,20636.474254344725,5,3,5,5_1,5_3,5_0_1 -13247,2,55.0,0.0,7,112,313.0,730.0,0.0,0,33,0.0,0.0,432.6205332312663,1043.0,0.0,1323.9666176186377,70,2,2,2,2,1,2,2,2,2,30.0,1,,5,106782,2,2,3,0,1,,217.0,505.0,12,1.0,2.0,4.0,1.0,1.0,4,4,2291.6089852974,313.0,24325.148785550136,0,1,2,3,65.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.04287743557891712,24325.148785550136,7,4,7,7_1,7_1,7_0_0 -13248,1,40.0,335.0,2,111,450.0,450.0,0.0,0,22,0.0,0.0,621.9784024091688,900.0,0.0,816.143805381352,50,2,1,2,1,1,2,2,2,3,15.0,2,,2,130635,2,3,0,1,1,1243.0,200.0,337.0,32,1.0,0.0,4.0,3.0,1.6,1,1,304.252597858137,450.0,9374.68917879926,0,1,2,3,73.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.09600318291462276,5859.180736749538,1,1,1_1,1_0_1,1_3_1,1_0_1 -13249,2,49.0,0.0,5,111,434.0,0.0,0.0,0,47,0.0,0.0,599.8636147679539,434.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,106156,1,2,0,1,1,,292.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,349.59812932668,434.0,31476.122241142817,0,1,1,2,49.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013788229587973622,31476.122241142817,8,4,8,8_0,8_3,8_0_0 -13250,1,43.0,254.0,7,112,0.0,0.0,951.0,0,62,0.0,0.0,485.87858143048635,951.0,0.0,1087.2267316946525,31,2,2,2,2,1,2,2,2,0,,2,,5,116305,1,2,0,0,1,,335.0,400.0,32,1.0,0.0,3.0,2.0,1.3,2,2,2715.98248252821,0.0,21542.79331538748,0,4,2,3,59.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.04414469312671372,16571.379473374986,4,2,4_1,4_0_1,4_1_1,4_0_0 -13251,1,31.0,420.0,2,111,350.0,200.0,0.0,56,56,0.0,0.0,483.76097965157567,550.0,0.0,362.73058016948977,50,2,1,2,2,1,2,2,2,0,,2,,2,129626,2,3,0,1,1,660.0,180.0,393.0,43,2.0,0.0,4.0,4.0,2.1,2,2,276.27235353228,350.0,7008.0,1,1,2,3,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07848173515981735,3337.142857142857,1,1,1_1,1_0_1,1_3_1,1_0_1 -13252,2,64.0,0.0,2,112,700.0,0.0,0.0,0,77,2091.018827825201,139.7482881506268,967.5219593031513,2305.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128250,2,2,3,0,1,,300.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,2652.19247153263,700.0,16001.982958457953,0,5,0,1,78.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14404464784045262,16001.982958457953,4,2,4_0,4_1_0,4_1_0,4_0_1 -13253,2,53.0,0.0,2,111,240.0,125.0,0.0,0,56,0.0,0.0,331.72181461822333,365.0,0.0,226.7066126059311,71,2,1,2,1,2,2,2,2,1,10.0,2,,2,114723,2,1,0,1,1,662.0,124.0,213.0,12,1.0,3.0,1.0,1.0,1.0,2,2,358.574103488138,240.0,15551.036986917201,0,1,2,3,33.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02347110358666549,15551.036986917201,3,2,3_0,3_0_0,3_3_0,3_0_1 -13254,1,52.0,368.0,7,112,0.0,0.0,1465.0,0,65,0.0,0.0,748.4880355369742,1465.0,0.0,1674.8550598661052,31,0,0,0,0,0,0,0,0,0,,1,,5,100669,2,3,1,0,1,,368.0,494.0,32,1.0,0.0,4.0,3.0,2.0,2,2,2417.19874641679,0.0,13798.047776243058,0,4,2,3,79.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10617444030903996,6899.023888121529,1,1,1_1,1_1_1,1_1_1,1_0_0 -13255,1,43.0,255.0,5,111,126.0,300.0,0.0,0,85,0.0,0.0,174.15395267456725,426.0,0.0,544.0958702542347,60,0,0,0,0,0,0,0,0,0,,2,,3,125861,2,1,0,1,1,624.0,140.0,261.0,11,0.0,3.0,2.0,1.0,1.0,1,1,337.890347977144,126.0,9902.114902985624,0,7,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04302111257783477,9902.114902985624,2,1,2_1,2_0_1,2_3_1,2_0_0 -13256,1,89.0,77.0,5,112,1281.0,0.0,0.0,0,77,0.0,0.0,1770.565185524767,1281.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,114691,1,3,0,0,1,,148.0,334.0,11,0.0,3.0,2.0,1.0,1.0,1,1,3071.3974414447,1281.0,14875.553764752984,0,5,2,3,49.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08611444120052035,14875.553764752984,3,2,3_1,3_0_1,3_1_1,3_0_0 -13257,2,79.0,0.0,2,111,330.0,1318.0,0.0,77,75,0.0,0.0,456.1174951000571,1648.0,0.0,2390.3945233169375,10,0,0,0,0,0,0,0,0,0,,1,,2,109594,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,231.500043909803,330.0,29016.668210219115,5,5,0,1,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05679494241243059,19344.44547347941,5,3,5,5_1,5_3,5_0_1 -13258,1,51.0,197.0,2,111,350.0,450.0,0.0,0,85,0.0,0.0,483.76097965157567,800.0,0.0,816.143805381352,70,0,0,0,0,0,0,0,0,0,,2,,2,101951,2,2,0,1,1,620.0,90.0,172.0,31,0.0,0.0,3.0,2.0,1.3,1,1,303.892930410291,350.0,8918.339233376417,0,6,2,3,55.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08970279993454858,6860.26094875109,1,1,1_1,1_0_1,1_3_1,1_0_1 -13259,2,55.0,0.0,2,112,961.0,3004.0,0.0,42,90,0.0,0.0,1328.2694327004692,4461.0,0.0,5448.213314145736,50,2,2,2,2,2,2,1,2,2,5.0,1,,2,104300,1,2,2,0,2,,1243.0,,43,2.0,2.0,7.0,5.0,2.8,2,2,2488.74983309071,961.0,115489.85714404924,1,1,1,2,150.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03862676870779954,41246.37755144616,9,5,9,9_1,9_1,9_0_1 -13260,2,53.0,0.0,5,111,1500.0,0.0,0.0,56,62,0.0,0.0,2073.261341363896,1528.0,48.169156117325365,0.0,42,2,2,2,2,1,2,2,2,0,,1,,3,124403,2,2,2,0,1,,300.0,276.0,43,3.0,1.0,2.0,3.0,2.0,4,3,250.287711268984,1500.0,40884.375933713745,1,1,2,3,45.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03737369019591645,20442.187966856873,5,3,5,5_1,5_3,5_0_0 -13261,1,37.0,458.0,2,111,0.0,0.0,0.0,81,68,0.0,0.0,0.0,283.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124564,2,1,0,1,1,1103.0,152.0,417.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,1,1,318.318778672382,0.0,23319.462729215877,4,1,2,3,68.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01213578560047365,8636.838047857733,1,1,1_1,1_0_1,1_3_1,1_0_1 -13262,2,64.0,0.0,1,112,478.0,0.0,0.0,72,72,4376.203689662742,232.913813584378,660.6792807812948,3777.0,247.7270886033876,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,122964,1,1,1,0,2,,110.0,,41,0.0,1.0,6.0,2.0,1.5,3,2,3332.39128864154,478.0,31650.806662677383,7,5,0,1,200.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11933345144260847,21100.537775118257,5,3,5,5_1,5_0,5_1_0 -13263,2,42.0,0.0,7,112,1700.0,0.0,0.0,77,37,0.0,698.741440753134,2349.696186879082,2426.0,87.73667721369978,0.0,71,0,0,0,0,0,0,0,0,4,120.0,1,,5,122115,2,1,2,0,1,,142.0,,42,1.0,3.0,7.0,2.0,1.5,3,3,2537.80242973823,1700.0,64448.340120388224,5,1,1,2,180.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0376425520885143,42965.560080258816,9,5,9,9_1,9_1,9_0_0 -13264,2,50.0,0.0,5,112,450.0,0.0,0.0,65,63,1941.6603401234008,0.0,621.9784024091688,1876.0,216.76120252796414,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,3,114593,2,1,2,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,2530.9223715331,450.0,33869.22469546312,4,1,0,1,87.0,7,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055389517087212674,22579.483130308745,6,3,6,6_1,6_1,6_0_0 -13265,1,54.0,445.0,5,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,621.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,116699,2,2,0,0,1,,795.0,407.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,1,1,281.374589345747,0.0,30067.11980483763,6,4,2,3,99.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020653790719924046,9395.974939011761,1,1,1_1,1_0_1,1_3_1,1_0_0 -13266,2,58.0,0.0,2,112,500.0,0.0,0.0,0,54,2479.350895849881,0.0,691.0871137879653,2198.0,65.37242615922729,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,100741,2,2,3,0,2,,120.0,,22,2.0,0.0,4.0,2.0,1.5,1,1,2473.15582839584,500.0,37058.07960962669,0,1,0,1,90.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05931230174779534,24705.386406417794,7,4,7,7_1,7_1,7_0_1 -13267,2,81.0,0.0,2,111,439.0,0.0,0.0,0,86,5974.339508072003,0.0,606.7744859058336,4439.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,109864,2,1,2,0,1,,243.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,231.500043909803,439.0,66381.63066434694,0,5,0,1,100.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06687090924966012,44254.420442897965,10,5,10,10_1,10_3,10_0_1 -13268,2,50.0,0.0,6,112,450.0,0.0,0.0,85,48,0.0,698.741440753134,621.9784024091688,1197.0,123.8635443016938,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,110347,1,1,2,0,1,,200.0,,42,1.0,4.0,5.0,2.0,1.5,3,2,2277.83541948814,450.0,29177.380267805933,6,1,1,2,110.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041024930580239906,19451.586845203954,5,3,5,5_1,5_1,5_0_0 -13269,2,61.0,0.0,5,112,768.0,0.0,0.0,78,75,0.0,0.0,1061.5098067783147,1268.0,860.1635020950959,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122452,2,1,2,0,1,,106.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,951.93738934295,768.0,46954.44381021632,5,5,0,1,85.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027004898729608835,31302.962540144214,8,4,8,8_1,8_0,8_0_0 -13270,2,35.0,0.0,2,111,158.0,180.0,0.0,85,46,0.0,0.0,218.38352795699703,338.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,105881,2,1,0,1,1,398.0,94.0,248.0,42,1.0,0.0,2.0,2.0,1.5,1,1,329.406161836837,158.0,24919.27166191476,6,1,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013563799319086061,16612.84777460984,4,2,4_0,4_0_0,4_3_0,4_0_1 -13271,2,56.0,0.0,2,112,1600.0,0.0,0.0,0,68,0.0,0.0,2211.478764121489,1663.0,108.38060126398207,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,118085,2,1,1,0,1,,70.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1055.84005171394,1600.0,4154.65747318049,0,1,0,1,85.0,4,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4002736713520052,4154.65747318049,1,1,1_0,1_1_0,1_0_0,1_0_1 -13272,2,63.0,0.0,1,111,424.0,1503.0,0.0,77,78,0.0,0.0,586.0418724921946,1927.0,0.0,2725.9203099737156,50,2,2,2,2,1,2,2,2,0,,1,,1,118335,2,3,4,0,1,,310.0,306.0,41,0.0,3.0,4.0,2.0,1.5,3,3,263.80494003699,424.0,18667.495020720762,6,5,2,3,80.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.10322756201949143,12444.996680480508,2,1,2_0,2_1_0,2_3_0,2_1_0 -13273,2,31.0,0.0,9,112,1200.0,0.0,0.0,52,62,0.0,0.0,1658.6090730911167,3203.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,114586,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1031.85870804781,1200.0,44416.48169768191,1,1,1,2,150.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07211287066366547,21150.70557032472,5,3,5,5_1,5_0,5_0_0 -13274,2,67.0,0.0,2,111,218.0,550.0,0.0,0,77,0.0,0.0,301.3139816115529,768.0,0.0,997.5090954660969,33,1,2,2,2,1,2,2,2,0,,2,,2,128508,2,1,0,1,1,,71.0,275.0,11,0.0,2.0,3.0,1.0,1.0,2,2,352.648633344787,218.0,18206.07241192119,0,5,2,3,65.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.042183727638978284,18206.07241192119,4,2,4_0,4_0_0,4_3_0,4_0_1 -13275,1,58.0,247.0,5,111,0.0,0.0,210.0,0,85,0.0,0.0,107.29180031588027,210.0,0.0,240.08161267705262,71,0,0,0,0,0,0,0,0,0,,2,,3,115441,2,1,0,1,1,792.0,0.0,252.0,11,0.0,4.0,2.0,1.0,1.0,1,1,339.53016591034,0.0,7910.670659387704,0,7,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026546421794312727,7910.670659387704,1,1,1_1,1_0_1,1_3_1,1_0_0 -13276,1,79.0,164.0,2,111,228.0,0.0,0.0,0,77,0.0,0.0,315.13572388731217,228.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,133189,1,2,0,1,1,380.0,0.0,240.0,11,0.0,1.0,2.0,1.0,1.0,4,3,353.921925387268,228.0,9907.0,0,5,2,3,40.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02301403048349652,9907.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -13277,2,59.0,0.0,6,112,480.0,0.0,0.0,11,11,0.0,0.0,663.4436292364467,536.0,96.33831223465073,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,129308,2,1,2,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1012.53688116386,480.0,31804.424086643194,1,1,0,1,100.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016853001284972247,21202.949391095462,5,3,5,5_1,5_0,5_0_0 -13278,2,37.0,0.0,5,111,300.0,0.0,0.0,52,48,0.0,0.0,414.65226827277917,300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,,3,109083,1,1,0,1,2,576.0,0.0,297.0,43,2.0,0.0,3.0,4.0,2.1,2,2,281.569285294504,300.0,33386.2736482201,1,1,2,3,70.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008985728780665935,15898.225546771475,3,2,3_0,3_0_0,3_3_0,3_0_0 -13279,2,61.0,0.0,9,112,451.0,0.0,0.0,0,71,0.0,0.0,623.3605766367447,451.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,2008.0,6,119526,1,1,1,0,1,,100.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1210.83643229761,451.0,20249.82716320513,0,5,0,1,91.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022271795031391074,20249.82716320513,5,3,5,5_1,5_0,5_0_0 -13280,1,48.0,127.0,2,111,300.0,1140.0,0.0,0,46,0.0,0.0,414.65226827277917,1440.0,0.0,2067.564306966092,71,1,2,2,2,1,2,2,2,0,,2,,2,110601,1,2,0,1,1,481.0,294.0,254.0,32,2.0,0.0,3.0,2.0,1.5,1,1,303.799674065322,300.0,30040.00204525273,0,4,2,3,60.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0479360819560119,20026.668030168486,5,3,5,5_0,5_3,5_0_1 -13281,2,52.0,0.0,2,111,600.0,1870.0,0.0,45,85,0.0,0.0,829.3045365455583,2470.0,0.0,3391.5309245847293,71,0,0,0,0,0,0,0,0,0,,1,,2,127142,2,3,3,0,1,,370.0,,42,1.0,2.0,4.0,3.0,2.0,2,2,285.324623365587,600.0,57420.49718461438,1,5,0,1,105.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04301599813841089,28710.24859230719,8,4,8,8_1,8_3,8_0_1 -13282,2,40.0,0.0,2,111,774.0,1606.0,0.0,65,46,0.0,0.0,1069.8028521437702,2380.0,0.0,2912.726558761003,10,0,0,0,0,0,0,0,0,2,7.0,1,,2,102742,1,3,4,0,1,,332.0,,43,2.0,1.0,4.0,5.0,2.5999999999999996,1,1,247.658680421569,774.0,62027.57510306062,1,1,1,2,90.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03837003132954272,23856.759655023317,6,3,6,6_1,6_3,6_0_1 -13283,1,62.0,47.0,2,111,109.0,770.0,0.0,0,78,0.0,0.0,150.65699080577645,879.0,0.0,1396.5127336525356,60,2,2,2,2,1,2,2,2,0,,2,,2,106681,2,1,0,0,1,,181.0,240.0,11,0.0,0.0,2.0,1.0,1.0,1,1,381.617560909912,109.0,16503.1769365923,0,5,2,3,35.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.05326247203052181,16503.1769365923,4,2,4_1,4_0_1,4_3_1,4_0_1 -13284,2,75.0,0.0,7,120,0.0,0.0,0.0,74,74,3435.2452171414016,0.0,0.0,2381.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,115034,2,1,2,0,1,,105.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1040.39116046124,0.0,61398.736164177055,5,5,0,1,187.0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03877929984801851,40932.49077611804,9,5,9,9_1,9_0,9_0_0 -13285,2,30.0,0.0,2,111,250.0,950.0,0.0,0,52,0.0,0.0,345.54355689398267,1200.0,0.0,1722.9702558050765,50,2,2,2,2,1,2,2,2,2,2.0,2,,2,130738,1,2,0,0,1,,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,2,2,379.206872270753,250.0,20835.325181138298,0,1,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.057594493465661395,20835.325181138298,5,3,5,5_0,5_3,5_0_1 -13286,2,66.0,0.0,2,120,430.0,0.0,0.0,77,78,3285.8867294396014,569.3448776507017,594.3349178576501,3300.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,129563,2,1,2,0,2,,360.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1080.15254646598,430.0,44566.82768497761,5,5,0,1,130.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07404610494886872,29711.21845665174,8,4,8,8_1,8_0,8_0_1 -13287,2,78.0,0.0,2,120,0.0,0.0,0.0,0,72,0.0,0.0,0.0,960.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,125345,2,1,2,0,1,,231.0,600.0,11,0.0,2.0,4.0,1.0,1.0,3,3,1361.75300006581,0.0,22059.362471599194,0,5,2,3,100.0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043518936743343006,22059.362471599194,6,3,6,6_1,6_0,6_0_1 -13288,2,84.0,0.0,5,120,190.0,0.0,0.0,71,71,2389.735803228801,155.27587572291867,262.6131032394268,1992.0,89.45700421788997,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,114021,2,1,2,0,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,1093.36314389922,190.0,14848.019728316951,5,5,0,1,110.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13415930450314648,9898.679818877967,2,1,2_0,2_1_0,2_0_0,2_0_0 -13289,2,66.0,0.0,1,120,1700.0,0.0,0.0,74,74,0.0,51.75862524097289,2349.696186879082,1862.0,192.67662446930146,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,118488,2,1,2,0,1,,235.0,,41,0.0,4.0,6.0,2.0,1.5,4,3,1198.31927014923,1700.0,39351.72132970811,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04731686282282919,26234.480886472073,7,4,7,7_1,7_0,7_1_0 -13290,2,33.0,0.0,9,120,2220.0,0.0,0.0,65,46,0.0,885.0724916206364,3068.426785218566,3187.0,192.67662446930146,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,101294,2,1,1,0,1,,600.0,600.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1050.75940240727,2220.0,56281.10097090875,1,1,2,3,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05662646865503457,31267.278317171527,8,4,8,8_1,8_0,8_0_0 -13291,2,53.0,0.0,2,120,1200.0,0.0,0.0,75,56,0.0,310.55175144583734,1658.6090730911167,1750.0,430.0817510475479,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119171,2,1,2,0,1,,200.0,,42,2.0,4.0,4.0,3.0,2.0,1,1,1273.65469264393,1200.0,26188.24848264231,7,1,1,2,81.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0668238657182403,13094.124241321155,2,1,2_0,2_1_0,2_0_0,2_0_1 -13292,1,41.0,327.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1395.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,128134,2,2,0,1,1,534.0,234.0,298.0,31,0.0,0.0,3.0,2.0,1.3,2,2,275.834751495496,0.0,12486.187436992468,0,7,2,3,71.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11172345498090744,9604.759566917282,1,1,1_1,1_0_1,1_3_1,1_0_1 -13293,1,40.0,27.0,9,120,2500.0,0.0,0.0,56,48,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,41,1,2,2,1,1,2,2,2,2,1.0,1,2005.0,6,107242,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,7.0,3.1999999999999993,2,2,1037.39608279739,2500.0,55156.92882816504,1,1,1,2,188.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.04532522120273334,17236.54025880158,4,2,4_1,4_1_1,4_0_1,4_0_0 -13294,1,58.0,341.0,2,111,464.0,138.0,0.0,0,78,0.0,0.0,641.3288415952318,602.0,0.0,250.28410031694796,71,0,0,0,0,0,0,0,0,0,,2,,2,130159,2,1,0,1,1,645.0,0.0,431.0,11,0.0,3.0,5.0,1.0,1.0,1,1,242.924355401916,464.0,8365.842322010925,0,7,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07195928118512461,8365.842322010925,1,1,1_1,1_0_1,1_4_1,1_0_1 -13295,2,50.0,0.0,1,120,828.0,0.0,0.0,85,11,1344.2263893162005,0.0,1144.4402604328704,1858.0,223.64251054472493,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,106251,2,1,2,0,1,,300.0,,42,1.0,0.0,8.0,3.0,1.8,2,2,1171.89216291677,828.0,9313.750549043963,6,4,0,1,108.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1994899895822011,5174.30586057998,1,1,1_0,1_1_0,1_0_0,1_1_0 -13296,2,66.0,0.0,2,111,500.0,500.0,0.0,85,78,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,41,0,0,0,0,0,0,0,0,0,,2,,2,126111,2,1,0,1,1,,500.0,,41,1.0,0.0,4.0,5.0,2.8,2,2,184.605240549706,500.0,17774.54276627942,6,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05626023764150647,6348.050987956936,1,1,1_0,1_0_0,1_4_0,1_0_1 -13297,2,43.0,0.0,2,111,500.0,0.0,0.0,56,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,109321,2,1,0,1,1,321.0,0.0,366.0,43,2.0,0.0,4.0,4.0,2.1,1,1,210.240002294762,500.0,27056.632806344398,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018479757018499254,12884.110860163999,2,1,2_0,2_0_0,2_4_0,2_0_1 -13298,2,53.0,0.0,6,120,1200.0,0.0,0.0,0,46,0.0,0.0,1658.6090730911167,1228.0,48.169156117325365,0.0,30,0,0,0,0,0,0,0,0,0,,1,,4,119889,2,1,3,0,1,,400.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,1165.9498241974,1200.0,15118.266925091855,0,1,0,1,95.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08122624147890145,15118.266925091855,3,2,3_0,3_1_0,3_0_0,3_0_0 -13299,2,56.0,0.0,2,120,910.0,0.0,0.0,0,62,0.0,23.808967610847528,1257.778547094097,989.0,96.33831223465073,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,121489,2,2,1,0,1,,214.0,,12,1.0,2.0,4.0,1.0,1.0,4,2,1191.07424159652,910.0,29199.79730440412,0,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033870098127387754,29199.79730440412,8,4,8,8_1,8_0,8_0_1 -13300,2,68.0,0.0,1,120,800.0,0.0,0.0,72,75,0.0,621.1035028916747,1105.7393820607444,2800.0,2408.4578058662682,0.0,43,2,2,2,2,1,2,2,2,0,,1,,1,132244,2,2,1,0,1,,600.0,810.0,41,0.0,3.0,5.0,2.0,1.5,3,2,1228.62137822239,800.0,38246.08870303991,5,5,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07321010056062145,25497.392468693273,7,4,7,7_1,7_0,7_1_0 -13301,1,45.0,250.0,2,111,0.0,0.0,0.0,54,45,0.0,0.0,0.0,1034.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,25.0,2,,2,104463,2,2,0,2,1,,200.0,450.0,43,2.0,0.0,5.0,2.0,1.5,2,2,215.702551076812,0.0,14914.420268126376,4,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06932887644381072,9942.946845417584,2,1,2_1,2_0_1,2_4_1,2_0_1 -13302,2,43.0,0.0,8,120,1200.0,0.0,0.0,55,63,0.0,258.79312620486445,1658.6090730911167,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,129876,2,1,1,0,1,,225.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,895.989112416608,1200.0,39476.867650244814,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03673037113396731,17163.85550010644,4,2,4_0,4_1_0,4_0_0,4_0_0 -13303,1,43.0,230.0,2,111,220.0,450.0,0.0,85,65,0.0,0.0,304.0783300667047,670.0,0.0,816.143805381352,71,2,2,1,2,2,2,2,1,2,18.0,2,,2,128094,1,2,0,2,1,,0.0,520.0,42,1.0,0.0,3.0,5.0,2.4,1,1,168.184104109589,220.0,16751.972406242396,6,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.039995290330727476,6979.988502600999,1,1,1_1,1_0_1,1_4_1,1_0_1 -13304,2,48.0,0.0,6,120,2000.0,0.0,0.0,34,34,0.0,0.0,2764.3484551518613,3467.0,192.67662446930146,0.0,50,2,2,2,1,1,2,2,2,2,15.0,1,,4,114805,2,1,3,0,1,,150.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1064.29449576065,2000.0,61494.15995279157,1,1,0,1,95.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.05637933752833733,34163.422195995314,9,5,9,9_1,9_0,9_0_0 -13305,1,41.0,120.0,2,111,195.0,600.0,0.0,0,42,0.0,0.0,269.52397437730644,795.0,0.0,1088.1917405084694,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,102229,2,1,0,2,1,518.0,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,348.473847449392,195.0,18247.843386989363,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04356679214853585,18247.843386989363,4,2,4_1,4_0_1,4_4_1,4_0_1 -13306,0,61.0,0.0,9,120,3500.0,0.0,0.0,0,56,0.0,0.0,4837.609796515757,3500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2007.0,6,107207,2,1,1,0,1,,400.0,,32,2.0,2.0,7.0,5.0,2.8,3,3,1089.53689053355,3500.0,42590.643212329494,0,1,5,0,170.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08217767415606418,15210.944004403393,3,2,3_0,3_1_0,3_0_0,3_0_0 -13307,1,43.0,436.0,2,111,646.0,0.0,0.0,0,56,1194.8679016144006,0.0,892.8845510140511,1526.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107755,1,3,0,1,2,,0.0,576.0,32,1.0,1.0,4.0,4.0,2.1,2,2,2286.46873659872,646.0,20828.400641094886,0,1,2,3,68.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07326534697960288,9918.286019568994,2,1,2_1,2_0_1,2_2_1,2_0_1 -13308,1,44.0,170.0,2,111,0.0,800.0,0.0,56,47,0.0,0.0,0.0,1229.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,2,17.0,2,,2,111952,2,2,0,2,1,,120.0,560.0,43,2.0,0.0,6.0,2.0,1.5,2,1,214.690222729994,0.0,22702.96089157912,1,1,2,3,110.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054133908165954474,15135.307261052747,3,2,3_1,3_0_1,3_4_1,3_0_1 -13309,2,42.0,0.0,2,111,300.0,1200.0,0.0,56,38,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,108750,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,2204.23904470038,300.0,53756.9311082451,1,1,1,2,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027903378579770412,29864.961726802834,8,4,8,8_0,8_2,8_0_1 -13310,1,69.0,160.0,2,111,160.0,0.0,0.0,0,77,0.0,155.27587572291867,221.1478764121489,310.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118707,2,2,0,2,1,840.0,180.0,550.0,11,0.0,0.0,4.0,1.0,1.0,4,3,249.381068303773,160.0,17953.807863742055,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017266532111332715,17953.807863742055,4,2,4_1,4_0_1,4_4_1,4_0_1 -13311,2,42.0,0.0,2,111,0.0,0.0,3800.0,55,47,0.0,0.0,1941.4706723825952,3800.0,0.0,4344.33394368,42,0,0,0,0,0,0,0,0,2,30.0,1,,2,100981,1,2,1,0,2,,800.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,1680.27260187127,0.0,50032.38560231506,4,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07595080574819062,21753.21113144133,6,3,6,6_1,6_2,6_0_1 -13312,1,65.0,125.0,2,111,79.0,400.0,0.0,86,78,0.0,0.0,109.19176397849851,479.0,0.0,725.4611603389795,50,2,2,1,2,2,2,2,1,0,,2,,2,118387,2,1,0,1,1,,130.0,400.0,41,0.0,0.0,4.0,2.0,1.5,3,3,221.435732676478,79.0,17379.15763314264,5,5,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027561750121106607,11586.10508876176,2,1,2_1,2_0_1,2_4_1,2_0_1 -13313,2,42.0,0.0,7,111,1639.0,0.0,0.0,34,38,0.0,0.0,2265.3835589969503,1639.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,120415,2,1,1,0,1,,385.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1422.06796602923,1639.0,86551.09618073788,1,1,1,2,115.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01893679077821735,41214.80770511327,9,5,9,9_1,9_2,9_0_0 -13314,2,45.0,0.0,8,111,0.0,0.0,1220.0,62,62,0.0,0.0,623.3142685017806,1220.0,0.0,1394.7598450762105,43,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,133185,2,2,5,0,1,,500.0,411.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1443.09650645266,0.0,36271.56400347919,1,1,3,4,73.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03363516389541341,24181.042668986123,7,4,7,7_1,7_2,7_0_0 -13315,0,62.0,0.0,1,111,560.0,0.0,0.0,0,75,0.0,0.0,774.0175674425211,600.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103288,2,1,1,0,1,,96.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1770.45742235114,560.0,17460.898736234558,0,5,5,0,45.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03436249239306854,17460.898736234558,4,2,4_0,4_1_0,4_2_0,4_1_0 -13316,0,61.0,0.0,2,111,245.0,1600.0,0.0,0,77,0.0,362.31037668681023,338.632685756103,2195.0,0.0,2901.844641355918,30,0,0,0,0,0,0,0,0,0,,1,,2,108854,2,1,2,0,1,,420.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,348.365434045248,245.0,13506.687198312557,0,6,5,0,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1625120925488102,13506.687198312557,3,2,3_0,3_1_0,3_4_0,3_0_1 -13317,2,50.0,0.0,2,111,450.0,0.0,0.0,0,56,0.0,0.0,621.9784024091688,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,2,100630,2,1,0,1,1,579.0,0.0,436.0,12,1.0,3.0,3.0,1.0,1.0,4,3,236.123016034446,450.0,16101.448629678047,0,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027947795900212607,16101.448629678047,4,2,4_0,4_0_0,4_4_0,4_0_1 -13318,2,66.0,0.0,1,111,568.0,3444.0,0.0,74,31,0.0,0.0,785.0749612631286,5668.0,0.0,6246.220590518614,30,0,0,0,0,0,0,0,0,2,5.0,1,,1,110676,2,1,2,0,1,,272.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,1622.63372197861,568.0,308581.59175375284,5,5,0,1,160.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0183679135485277,205721.06116916856,10,5,10,10_1,10_2,10_1_0 -13319,2,54.0,0.0,2,111,400.0,100.0,0.0,0,62,0.0,0.0,552.8696910303722,500.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,128501,2,1,0,1,1,167.0,0.0,317.0,12,1.0,1.0,1.0,1.0,1.0,2,2,320.378798319209,400.0,59184.35187931235,0,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008448179022380627,59184.35187931235,10,5,10,10_0,10_4,10_0_1 -13320,2,44.0,0.0,1,111,310.0,1545.0,0.0,0,56,0.0,0.0,428.47401054853844,1855.0,0.0,2802.0937318093083,71,0,0,0,0,0,0,0,0,2,5.0,2,,1,128381,1,2,0,0,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1966.15731296552,310.0,21179.420349685268,0,1,0,1,55.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08758502212868946,16291.861807450205,4,2,4_0,4_0_0,4_2_0,4_1_0 -13321,1,53.0,235.0,2,111,280.0,72.0,0.0,0,77,0.0,0.0,387.00878372126056,352.0,0.0,130.5830088610163,31,0,0,0,0,0,0,0,0,0,,2,,2,122541,2,1,0,1,1,377.0,0.0,341.0,11,0.0,1.0,3.0,1.0,1.0,2,2,236.123016034446,280.0,8419.498633876947,0,7,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04180771507981274,8419.498633876947,1,1,1_1,1_0_1,1_4_1,1_0_1 -13323,2,46.0,0.0,2,111,300.0,0.0,0.0,56,55,0.0,0.0,414.65226827277917,300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,2,,2,128575,2,1,0,1,1,630.0,0.0,400.0,43,2.0,0.0,3.0,3.0,1.8,2,2,206.61996600047,300.0,24084.779914754345,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01245599922697321,13380.433285974636,3,2,3_0,3_0_0,3_4_0,3_0_1 -13324,1,76.0,200.0,2,111,0.0,600.0,0.0,78,77,0.0,0.0,0.0,798.0,0.0,1088.1917405084694,44,0,0,0,0,0,0,0,0,0,,2,,2,105133,1,3,0,1,2,600.0,0.0,400.0,41,2.0,0.0,6.0,6.0,3.0999999999999996,1,1,219.744681987454,0.0,12797.959108234465,5,5,2,3,100.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06235369196378747,4128.373905882086,1,1,1_1,1_0_1,1_4_1,1_0_1 -13325,1,28.0,434.0,2,111,501.0,100.0,0.0,85,42,0.0,0.0,692.4692880155412,601.0,0.0,181.36529008474488,41,1,1,2,1,1,2,2,2,0,,2,,2,132168,2,2,0,1,1,500.0,0.0,425.0,42,2.0,0.0,6.0,7.0,3.1999999999999997,3,3,577.544349698096,501.0,24707.190151474606,6,4,2,3,96.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02432490284469399,7720.996922335815,1,1,1_1,1_0_1,1_2_1,1_0_1 -13326,2,46.0,0.0,5,111,0.0,0.0,475.0,62,46,0.0,0.0,242.6838340478244,475.0,0.0,543.04174296,60,0,0,0,0,0,0,0,0,2,75.0,2,,3,115335,1,2,0,1,1,336.0,0.0,267.0,43,4.0,2.0,3.0,4.0,2.5,2,2,278.661852484057,0.0,57592.4851533284,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008247603810382692,23036.99406133136,6,3,6,6_0,6_4,6_0_0 -13327,1,39.0,320.0,2,111,263.0,220.0,0.0,85,68,0.0,0.0,363.5118218524697,1405.0,0.0,399.00363818643876,50,0,0,0,0,0,0,0,0,0,,2,,2,131281,2,1,0,1,1,616.0,0.0,285.0,42,1.0,0.0,4.0,4.0,2.1,3,3,482.690207069639,263.0,16444.110817677712,6,4,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08544092262438416,7830.528960798911,1,1,1_1,1_0_1,1_2_1,1_0_1 -13328,2,59.0,0.0,1,111,1129.0,1640.0,0.0,77,37,0.0,0.0,1560.4747029332257,2769.0,0.0,2974.3907573898164,50,0,0,0,0,0,0,0,0,0,,1,,1,104130,2,1,2,0,1,,600.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,481.078908717799,1129.0,68807.35150427133,7,1,1,2,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040242792949647395,45871.56766951422,10,5,10,10_1,10_2,10_1_0 -13329,2,63.0,0.0,7,111,270.0,350.0,0.0,0,75,0.0,0.0,373.1870414455012,620.0,0.0,634.7785152966071,71,2,2,2,2,1,2,2,2,0,,2,,5,115301,1,1,0,0,1,,0.0,491.0,11,0.0,1.0,3.0,1.0,1.0,2,2,650.812852600995,270.0,32432.793769129603,0,5,2,3,81.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.019116453686149372,32432.793769129603,8,4,8,8_0,8_2,8_0_0 -13330,2,68.0,0.0,2,111,952.0,786.0,0.0,77,42,0.0,310.55175144583734,1315.8298646522858,2038.0,0.0,1425.5311800660947,44,0,0,0,0,0,0,0,0,0,,1,,2,127646,2,2,2,0,1,,245.0,,41,0.0,3.0,4.0,2.0,1.5,2,1,459.360287996568,952.0,61905.07254791302,5,5,0,1,125.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032921373259398694,41270.04836527535,9,5,9,9_1,9_2,9_0_1 -13331,2,42.0,0.0,5,111,444.0,468.0,0.0,68,63,0.0,0.0,613.6853570437131,912.0,0.0,848.7895575966061,50,0,0,0,0,0,0,0,0,3,40.0,2,,3,106537,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.8,2,2,258.423111944652,444.0,31435.64004077095,1,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029011656795190653,11227.014300275341,2,1,2_0,2_0_0,2_4_0,2_0_0 -13332,1,22.0,200.0,9,111,662.0,0.0,0.0,0,38,0.0,0.0,914.999338655266,662.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,115430,2,1,0,0,1,,0.0,486.0,12,1.0,0.0,2.0,1.0,1.0,2,2,728.087165722878,662.0,13499.169708619624,0,1,2,3,46.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04904005315062401,13499.169708619624,3,2,3_1,3_0_1,3_2_1,3_0_0 -13333,2,48.0,0.0,2,111,250.0,200.0,0.0,42,67,0.0,0.0,345.54355689398267,450.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,2,100822,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,184.605240549706,250.0,40015.296560923656,4,1,0,1,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011245699486816769,16673.04023371819,4,2,4_0,4_0_0,4_4_0,4_0_1 -13334,2,57.0,0.0,2,111,500.0,947.0,0.0,78,62,0.0,0.0,691.0871137879653,1447.0,0.0,1717.5292971025342,60,2,2,2,2,1,1,2,2,0,,2,,2,100765,1,3,0,1,1,610.0,0.0,306.0,42,2.0,2.0,4.0,4.0,2.5,2,2,550.020169187392,500.0,48315.5407217804,5,4,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029948955933917547,19326.21628871216,5,3,5,5_0,5_2,5_0_1 -13335,2,86.0,0.0,2,111,0.0,80.0,0.0,77,75,0.0,0.0,0.0,257.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,0,,2,,2,101336,1,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,217.899615858167,0.0,32961.18688166537,5,5,0,1,68.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007797049327218129,21974.124587776914,6,3,6,6_0,6_4,6_0_1 -13336,2,61.0,0.0,5,111,300.0,448.0,0.0,0,78,0.0,0.0,414.65226827277917,1160.0,86.01635020950958,812.5164995796571,41,0,0,0,0,0,0,0,0,0,,2,,3,110917,2,1,0,1,1,598.0,0.0,257.0,11,0.0,2.0,4.0,1.0,1.0,3,3,579.783900808317,300.0,25808.777778154476,0,7,2,3,118.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04494594862147513,25808.777778154476,7,4,7,7_0,7_2,7_0_0 -13337,1,65.0,125.0,2,111,600.0,1500.0,0.0,85,78,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,41,2,2,2,1,1,2,1,2,0,,1,,2,108566,2,2,3,0,1,,600.0,,41,0.0,0.0,3.0,5.0,2.8,4,2,197.532110942527,600.0,12678.971360396035,6,5,1,2,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,1,0.16562857824251803,4528.204057284299,1,1,1_1,1_1_1,1_4_1,1_0_1 -13338,1,29.0,171.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1247.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,,1,119390,2,1,2,0,1,,288.0,730.0,32,1.0,0.0,4.0,2.0,1.3,4,4,1704.20150495183,0.0,13610.310936201986,0,1,2,3,80.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0916217128209108,10469.469950924604,2,1,2_1,2_1_1,2_2_1,2_1_0 -13339,1,27.0,253.0,9,111,331.0,807.0,0.0,0,43,0.0,0.0,457.499669327633,1138.0,0.0,1463.6178909838914,50,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,100199,2,1,0,0,1,,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,3,3,2093.26843650126,331.0,10840.607564650993,0,1,2,3,52.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10497566609742295,10840.607564650993,2,1,2_1,2_0_1,2_2_1,2_0_0 -13340,2,62.0,0.0,1,111,1600.0,0.0,0.0,77,72,0.0,0.0,2211.478764121489,1720.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125993,2,1,2,0,1,,250.0,,41,0.0,0.0,5.0,2.0,1.5,3,2,219.213433442941,1600.0,26255.553736856837,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0655099495230036,17503.70249123789,4,2,4_0,4_1_0,4_4_0,4_1_0 -13342,1,40.0,221.0,2,111,350.0,61.0,0.0,0,67,0.0,0.0,483.76097965157567,411.0,0.0,110.63282695169438,43,2,2,2,2,1,2,2,2,0,,2,,2,103390,2,3,0,1,1,450.0,0.0,208.0,12,1.0,1.0,2.0,1.0,1.0,3,3,1905.90753488983,350.0,6060.0,0,4,2,3,40.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06782178217821783,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -13343,2,88.0,0.0,2,111,600.0,300.0,0.0,72,77,3733.962192545002,0.0,829.3045365455583,3400.0,0.0,544.0958702542347,60,0,0,0,0,0,0,0,0,0,,1,,2,131706,2,2,3,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,253.342493189054,600.0,17457.867662152974,5,5,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1947545980870781,11638.578441435317,2,1,2_0,2_1_0,2_4_0,2_0_1 -13344,0,53.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1713.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120242,2,1,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,322.373192236053,0.0,36740.09893414675,0,1,5,0,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0466248064021383,36740.09893414675,9,5,9,9_0,9_4,9_0_1 -13345,2,31.0,0.0,7,111,540.0,400.0,0.0,65,54,0.0,0.0,746.3740828910024,940.0,0.0,725.4611603389795,60,2,2,2,2,2,1,2,2,2,10.0,2,,5,108409,1,2,0,0,1,,0.0,394.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1943.72365656495,540.0,34707.84368397909,1,1,2,3,86.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.027083215210914925,23138.56245598606,6,3,6,6_0,6_2,6_0_0 -13346,2,51.0,0.0,2,111,1300.0,400.0,0.0,68,65,0.0,0.0,1796.8264958487098,1700.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,3,180.0,2,,2,125467,1,2,0,1,2,840.0,600.0,678.0,43,2.0,0.0,5.0,4.0,2.3,3,2,204.796688796523,1300.0,30244.146060720803,4,1,2,3,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05620922464092492,13149.628722052525,2,1,2_0,2_0_0,2_4_0,2_0_1 -13347,2,64.0,0.0,8,111,1300.0,1500.0,0.0,0,43,0.0,310.55175144583734,1796.8264958487098,3100.0,0.0,2720.4793512711735,60,0,0,0,0,0,0,0,0,3,60.0,1,2001.0,6,110258,2,1,1,0,1,,600.0,,32,1.0,0.0,5.0,3.0,1.8,1,1,538.428640089357,1300.0,54121.35615584033,0,1,1,2,109.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05727868294862514,30067.42008657796,8,4,8,8_1,8_4,8_0_0 -13348,2,67.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1764.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,131844,2,1,0,1,1,852.0,0.0,410.0,21,1.0,5.0,4.0,2.0,1.5,1,1,278.170736554453,0.0,30301.72450851264,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05821450853414104,20201.149672341762,5,3,5,5_0,5_4,5_0_1 -13349,2,60.0,0.0,1,112,145.0,0.0,0.0,0,74,0.0,155.27587572291867,200.41526299850995,1495.0,2064.39240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122345,1,2,4,0,2,,150.0,,11,0.0,2.0,8.0,1.0,1.0,2,2,512.060629242675,145.0,49632.49327305335,0,5,0,1,96.0,4,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030121396315418852,49632.49327305335,10,5,10,10_1,10_0,10_1_0 -13350,2,76.0,0.0,6,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,4140.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,116836,2,2,0,0,1,,343.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,439.524045021533,0.0,41012.47017771957,5,5,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10094490729429645,27341.646785146382,7,4,7,7_0,7_4,7_0_0 -13351,2,63.0,0.0,2,112,500.0,0.0,0.0,77,75,0.0,0.0,691.0871137879653,2000.0,2580.4905062852877,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131903,2,1,2,0,2,,279.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,483.491398131023,500.0,26255.94329008955,5,5,0,1,100.0,4,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07617322972947276,17503.962193393036,4,2,4_0,4_1_0,4_0_0,4_0_1 -13352,2,40.0,0.0,9,112,0.0,0.0,0.0,54,48,0.0,0.0,0.0,1090.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,114355,2,1,1,0,1,,292.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,534.396213194395,0.0,41215.049202256494,1,1,1,2,90.0,4,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02644665046136408,22897.24955680916,6,3,6,6_1,6_0,6_0_0 -13353,2,58.0,0.0,6,112,1500.0,0.0,0.0,62,21,0.0,517.5862524097289,2073.261341363896,2120.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,100147,2,1,2,0,1,,160.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,433.654386801619,1500.0,29090.248871923817,1,1,0,1,77.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07287665393767388,19393.49924794921,5,3,5,5_1,5_0,5_0_0 -13354,2,22.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,8,,2,118179,2,1,0,1,1,,156.0,524.0,32,1.0,0.0,3.0,2.0,1.3,1,1,209.663361429173,0.0,12914.170264380713,0,1,2,3,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03639413066252758,9933.977126446702,2,1,2_0,2_0_0,2_4_0,2_0_1 -13355,1,59.0,130.0,9,112,1620.0,0.0,0.0,56,64,0.0,335.3958915615043,2239.1222486730076,2124.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,130295,2,1,1,0,1,,396.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,1,1,461.637915707674,1620.0,32667.689609288813,1,1,1,2,89.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06501837214089534,12564.496003572622,2,1,2_1,2_1_1,2_0_1,2_0_0 -13356,1,32.0,420.0,2,111,644.0,0.0,0.0,0,37,0.0,0.0,890.1202025588993,644.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,113604,2,3,0,1,1,,378.0,676.0,32,1.0,0.0,3.0,2.0,1.3,2,2,280.11674634724,644.0,20598.53831169012,0,4,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03126435430782561,15845.029470530862,3,2,3_1,3_0_1,3_4_1,3_0_1 -13357,2,36.0,0.0,1,112,1420.0,0.0,0.0,67,47,0.0,0.0,1962.6874031578213,1520.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,105955,2,1,1,0,1,,155.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,595.319776626598,1420.0,47991.48652133326,1,1,1,2,90.0,4,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03167228419407944,26661.936956296253,7,4,7,7_1,7_0,7_1_0 -13358,2,50.0,0.0,7,112,1600.0,0.0,0.0,65,63,0.0,0.0,2211.478764121489,1680.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,128539,2,1,1,0,1,,250.0,,43,2.0,2.0,8.0,5.0,2.5999999999999996,2,2,467.211491143134,1600.0,43525.387377601146,1,1,0,1,150.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03859816307722409,16740.533606769673,4,2,4_0,4_1_0,4_0_0,4_0_0 -13359,2,64.0,0.0,5,112,1300.0,0.0,0.0,0,74,0.0,0.0,1796.8264958487098,2050.0,1290.2452531426438,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,128112,2,1,1,0,1,,110.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,541.737437846236,1300.0,37718.315910837286,0,5,0,1,130.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05435025266891597,37718.315910837286,9,5,9,9_1,9_0,9_0_0 -13360,2,66.0,0.0,1,112,900.0,0.0,0.0,90,75,1344.2263893162005,0.0,1243.9568048183376,3601.0,144.50746835197612,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128271,2,1,2,0,1,,70.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,486.931891810834,900.0,24686.09835739869,5,5,0,1,200.0,4,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1458715730556401,16457.39890493246,4,2,4_0,4_1_0,4_0_0,4_1_0 -13361,2,41.0,0.0,2,111,1400.0,240.0,0.0,85,46,0.0,0.0,1935.0439186063027,1640.0,0.0,435.27669620338776,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,112034,2,1,0,1,1,528.0,0.0,340.0,42,3.0,0.0,3.0,4.0,2.5,2,2,210.240002294762,1400.0,41476.94147445174,7,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03954004180877655,16590.776589780697,4,2,4_0,4_0_0,4_4_0,4_0_1 -13362,2,54.0,0.0,1,112,2300.0,0.0,0.0,43,33,0.0,207.03450096389156,3179.0007234246405,3851.0,0.0,0.0,71,2,2,2,1,2,2,2,2,4,90.0,1,,1,125290,2,3,3,0,1,,180.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,477.60241368459,2300.0,130428.5666624116,1,1,0,1,110.0,4,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02952574039985847,86952.37777494107,10,5,10,10_1,10_0,10_1_0 -13363,2,66.0,0.0,2,111,210.0,210.0,0.0,0,77,0.0,0.0,290.25658779094545,420.0,0.0,380.86710917796427,10,0,0,0,0,0,0,0,0,0,,2,,2,108174,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,308.575581008909,210.0,16665.146781131087,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02520229827651683,16665.146781131087,4,2,4_0,4_0_0,4_4_0,4_0_1 -13364,2,69.0,0.0,2,111,800.0,1200.0,0.0,85,77,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,2,,2,112243,2,2,0,0,1,,0.0,,41,2.0,5.0,4.0,6.0,3.0999999999999996,1,1,294.5157012165,800.0,37626.517308804396,6,5,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05315400263026765,12137.58622864658,2,1,2_0,2_0_0,2_4_0,2_0_1 -13365,2,33.0,0.0,9,112,1500.0,0.0,0.0,54,64,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,116248,2,1,1,0,1,,200.0,,43,2.0,0.0,3.0,4.0,2.1,4,3,494.041069901417,1500.0,50487.53298755198,1,1,1,2,100.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02971030492557112,24041.682375024753,6,3,6,6_1,6_0,6_0_0 -13366,2,65.0,0.0,8,112,869.0,0.0,0.0,0,77,0.0,0.0,1201.1094037634837,921.0,89.45700421788997,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,103815,2,1,1,0,1,,84.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,510.202518020827,869.0,20016.724096362315,0,5,0,1,100.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04601152494115535,20016.724096362315,5,3,5,5_1,5_0,5_0_0 -13367,0,61.0,0.0,5,111,320.0,480.0,0.0,77,77,0.0,0.0,442.2957528242978,800.0,0.0,870.5533924067755,43,0,0,0,0,0,0,0,0,0,,2,,3,129778,2,1,0,0,1,,0.0,,41,1.0,0.0,2.0,3.0,2.0,2,2,554.983427613618,320.0,59672.36254843524,5,5,5,0,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013406541417740097,29836.18127421762,8,4,8,8_0,8_4,8_0_0 -13368,2,30.0,0.0,9,112,0.0,0.0,0.0,64,52,0.0,0.0,0.0,788.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,100560,2,1,1,0,1,,150.0,450.0,43,2.0,0.0,2.0,2.0,1.5,3,3,490.904820825695,0.0,21985.378168242216,1,1,2,3,65.0,4,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03584200344291837,14656.918778828143,3,2,3_0,3_1_0,3_0_0,3_0_0 -13369,2,24.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,1554.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,1,,1,102536,2,1,2,0,1,,537.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,542.579568849151,0.0,32573.948150330758,0,1,1,2,36.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047706835929995195,32573.948150330758,8,4,8,8_1,8_4,8_1_0 -13370,1,40.0,300.0,2,111,360.0,200.0,0.0,0,53,0.0,0.0,497.582721927335,560.0,0.0,362.73058016948977,50,2,2,2,2,1,2,2,2,0,,2,,2,117033,2,1,0,1,1,,0.0,290.0,12,1.0,2.0,4.0,1.0,1.0,4,4,249.381068303773,360.0,6144.381846971475,0,4,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.09114016901082088,6144.381846971475,1,1,1_1,1_0_1,1_4_1,1_0_1 -13371,1,53.0,220.0,2,111,400.0,150.0,0.0,0,64,0.0,0.0,552.8696910303722,550.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,130811,2,1,0,1,1,60.0,0.0,300.0,12,1.0,0.0,3.0,1.0,1.0,2,2,236.123016034446,400.0,10768.31542151525,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05107576983685787,10768.31542151525,2,1,2_1,2_0_1,2_4_1,2_0_1 -13372,2,53.0,0.0,1,112,780.0,0.0,0.0,0,54,0.0,0.0,1078.0958975092258,850.0,120.42289029331342,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,103275,2,2,3,0,1,,150.0,390.0,32,2.0,0.0,4.0,2.0,1.5,1,1,485.196609974588,780.0,33237.282424058445,0,1,2,3,60.0,4,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02557369128905487,22158.18828270563,6,3,6,6_1,6_0,6_1_0 -13373,2,40.0,0.0,5,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,727.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,3,119608,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,4.0,3.0,1.8,1,1,383.750105847982,0.0,32277.32422155184,1,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02252355229355028,17931.846789751024,4,2,4_0,4_0_0,4_4_0,4_0_0 -13374,2,31.0,0.0,9,112,370.0,0.0,0.0,37,46,2389.735803228801,0.0,511.40446420309434,1970.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2007.0,6,113906,2,1,1,0,1,,210.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,472.41845985542,370.0,59288.74404639406,1,1,1,2,105.0,4,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0332272176057306,28232.735260187645,8,4,8,8_1,8_0,8_0_0 -13375,2,46.0,0.0,6,111,600.0,0.0,0.0,54,63,0.0,0.0,829.3045365455583,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,126725,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,1,1,342.698579027219,600.0,53237.33885681094,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011270285346414133,20475.8995603119,5,3,5,5_0,5_4,5_0_0 -13376,2,56.0,0.0,6,112,700.0,0.0,0.0,85,63,0.0,0.0,967.5219593031513,804.0,178.91400843577995,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,119425,2,1,2,0,1,,260.0,,42,1.0,3.0,4.0,3.0,2.0,2,2,553.148406818729,700.0,14391.125545048073,6,1,0,1,111.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05586776360773623,7195.5627725240365,1,1,1_0,1_1_0,1_0_0,1_0_0 -13377,2,61.0,0.0,1,111,650.0,480.0,0.0,78,77,0.0,0.0,898.4132479243549,1130.0,0.0,870.5533924067755,20,0,0,0,0,0,0,0,0,0,,1,,1,102769,2,2,3,0,2,,400.0,90.0,41,2.0,2.0,3.0,5.0,3.0,2,2,251.67332415515,650.0,54976.43669544734,5,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020554260478172763,18325.478898482444,4,2,4_0,4_1_0,4_4_0,4_1_0 -13378,2,41.0,0.0,7,112,1000.0,0.0,0.0,37,38,0.0,310.55175144583734,1382.1742275759307,1390.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,5,118132,2,1,1,0,1,,120.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,460.718164956339,1000.0,96723.01604298572,1,1,1,2,95.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01437093317460505,46058.57906808844,10,5,10,10_1,10_0,10_0_0 -13379,2,58.0,0.0,1,112,500.0,0.0,0.0,46,11,5227.547069563002,0.0,691.0871137879653,4000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101898,2,1,2,0,1,,150.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,447.523622626641,500.0,91224.57135188692,1,1,0,1,44.0,4,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043847835519780304,60816.380901257944,10,5,10,10_1,10_0,10_1_0 -13380,2,64.0,0.0,1,111,550.0,0.0,0.0,22,77,0.0,0.0,760.1958251667618,550.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,1,107691,2,1,0,1,2,,303.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,224.176044392675,550.0,23219.986898497147,4,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.02368649053956173,15479.991265664765,3,2,3_0,3_0_0,3_4_0,3_1_0 -13381,2,58.0,0.0,6,112,0.0,0.0,0.0,63,62,0.0,0.0,0.0,1443.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,104292,1,3,3,0,1,,196.0,490.0,43,3.0,1.0,3.0,3.0,2.0,1,1,599.719619405099,0.0,26951.822136761162,4,4,2,3,50.0,4,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05353997932599177,13475.911068380581,3,2,3_0,3_1_0,3_0_0,3_0_0 -13382,2,62.0,0.0,2,111,441.0,95.0,0.0,0,74,0.0,0.0,609.5388343609853,536.0,0.0,172.29702558050764,20,0,0,0,0,0,0,0,0,0,,2,,2,101235,1,3,0,1,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,259.177562618866,441.0,33804.88241465656,0,5,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015855697807947707,33804.88241465656,9,5,9,9_0,9_4,9_0_1 -13383,1,43.0,546.0,5,111,900.0,300.0,0.0,0,68,0.0,0.0,1243.9568048183376,1200.0,0.0,544.0958702542347,42,0,0,0,0,0,0,0,0,1,10.0,2,,3,101558,2,1,0,1,1,648.0,0.0,607.0,32,1.0,0.0,3.0,4.0,2.5,2,2,278.661852484057,900.0,18717.577194138124,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06411086154760509,7487.03087765525,1,1,1_1,1_0_1,1_4_1,1_0_0 -13384,2,57.0,0.0,7,112,1500.0,0.0,0.0,0,64,0.0,0.0,2073.261341363896,1528.0,48.169156117325365,0.0,71,2,2,2,2,2,2,2,1,3,5.0,1,,5,116160,2,1,2,0,1,,150.0,,12,1.0,2.0,4.0,1.0,1.0,3,2,521.92298929535,1500.0,18823.647930083745,0,1,0,1,90.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.08117448890222641,18823.647930083745,5,3,5,5_1,5_0,5_0_0 -13385,2,46.0,0.0,8,112,512.0,0.0,0.0,52,68,0.0,496.8828023133397,707.6732045188764,1076.0,144.50746835197612,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,102579,1,1,2,0,1,,230.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,465.181226628614,512.0,44694.926086471656,1,1,0,1,126.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02407432105197475,19432.576559335503,5,3,5,5_1,5_0,5_0_0 -13386,2,58.0,0.0,6,111,940.0,840.0,0.0,56,67,0.0,0.0,1299.2437739213747,1780.0,0.0,1523.468436711857,60,0,0,0,0,0,0,0,0,3,80.0,1,,4,132350,2,1,2,0,1,,850.0,495.0,43,5.0,0.0,4.0,6.0,3.3,1,1,372.874502800182,940.0,86629.66653063524,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020547233658928268,26251.414100192498,7,4,7,7_1,7_4,7_0_0 -13387,2,88.0,0.0,5,111,650.0,0.0,0.0,77,75,0.0,0.0,898.4132479243549,650.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,123213,2,1,1,0,1,,350.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1290.48593853482,650.0,46480.42416546442,5,5,0,1,90.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013984381848282674,30986.94944364295,8,4,8,8_1,8_2,8_0_0 -13388,2,53.0,0.0,2,111,460.0,136.0,0.0,52,52,0.0,0.0,635.800144684928,596.0,0.0,246.65679451525304,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,108721,2,2,0,1,1,432.0,0.0,370.0,43,2.0,1.0,3.0,3.0,1.8,2,2,206.61996600047,460.0,42641.22586871472,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013977084097792719,23689.56992706373,6,3,6,6_0,6_4,6_0_1 -13389,2,56.0,0.0,1,111,860.0,2500.0,0.0,72,43,0.0,207.03450096389156,1188.6698357153002,3560.0,0.0,4534.132252118622,50,1,2,2,1,1,2,2,2,2,55.0,1,,1,116415,2,2,1,0,1,,360.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,1374.66315540769,860.0,95692.8238502924,5,1,0,1,119.0,4,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.037202371680132226,63795.21590019494,10,5,10,10_1,10_2,10_1_0 -13390,1,38.0,333.0,5,111,0.0,0.0,1260.0,0,56,0.0,0.0,643.7508018952816,1260.0,0.0,1440.4896760623158,50,2,1,2,1,2,2,2,2,3,80.0,2,,3,133672,1,2,0,1,1,652.0,0.0,379.0,32,2.0,2.0,3.0,3.0,1.8,2,2,289.240838693107,0.0,28374.76737895138,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04440565038551392,15763.759654972988,3,2,3_1,3_0_1,3_4_1,3_0_0 -13391,2,33.0,0.0,2,111,600.0,0.0,0.0,47,48,0.0,0.0,829.3045365455583,1702.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,105421,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,218.498909040549,600.0,58957.695766900084,1,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02886815669881613,28075.093222333373,8,4,8,8_0,8_4,8_0_1 -13392,2,35.0,0.0,1,111,550.0,1200.0,0.0,34,22,0.0,0.0,760.1958251667618,1750.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,2,45.0,8,,1,120769,1,2,0,0,2,,300.0,610.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2088.23355013839,550.0,42103.657303051856,1,1,2,3,57.0,4,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04156408521482889,23390.920723917698,6,3,6,6_0,6_2,6_1_0 -13393,1,42.0,400.0,6,111,672.0,130.0,0.0,0,85,0.0,0.0,928.8210809310253,802.0,0.0,235.77487711016835,43,0,0,0,0,0,0,0,0,0,,2,,4,126695,1,1,0,1,1,477.0,0.0,771.0,31,0.0,0.0,3.0,3.0,1.6,2,2,353.965606616756,672.0,3125.357850454304,0,6,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.25661061496795345,1953.34865653394,1,1,1_1,1_0_1,1_4_1,1_0_0 -13394,2,73.0,0.0,9,111,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2007.0,6,119577,1,1,0,0,1,,55.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2194.23117366494,500.0,14820.289198404627,0,5,0,1,77.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033737533276599216,14820.289198404627,3,2,3_0,3_0_0,3_2_0,3_0_0 -13395,2,81.0,0.0,2,111,186.0,37.0,0.0,0,74,0.0,0.0,257.0844063291231,223.0,0.0,67.10515733135561,10,0,0,0,0,0,0,0,0,0,,2,,2,118397,2,1,0,1,1,,0.0,525.0,11,0.0,4.0,3.0,1.0,1.0,2,2,236.123016034446,186.0,24934.448210234204,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008943450367129877,24934.448210234204,7,4,7,7_0,7_4,7_0_1 -13396,2,32.0,0.0,5,111,350.0,95.0,0.0,0,63,0.0,0.0,483.76097965157567,445.0,0.0,172.29702558050764,70,0,0,0,0,0,0,0,0,2,6.0,2,,3,115286,2,2,0,1,2,916.0,240.0,550.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1864.19763122077,350.0,36318.65918254077,0,1,2,3,50.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012252654971743064,24212.43945502718,7,4,7,7_0,7_2,7_0_0 -13397,2,39.0,0.0,9,111,600.0,0.0,0.0,0,67,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,120.0,8,2007.0,6,105150,2,1,0,0,1,,130.0,457.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2477.58736679617,600.0,19252.517962296788,0,1,2,3,33.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031164754718058768,19252.517962296788,5,3,5,5_0,5_2,5_0_0 -13398,2,78.0,0.0,1,111,587.0,2162.0,0.0,77,74,0.0,0.0,811.3362715870712,2749.0,0.0,3921.1175716321845,71,0,0,0,0,0,0,0,0,0,,1,,1,116526,2,2,2,0,1,,490.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,1427.49281438738,587.0,71341.92699088625,5,5,0,1,230.0,4,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03853274106755173,47561.284660590834,10,5,10,10_1,10_2,10_1_0 -13399,2,54.0,0.0,2,111,500.0,500.0,0.0,52,52,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,43,0,0,0,0,0,0,0,0,0,,2,,2,104586,2,1,0,1,1,,0.0,260.0,43,2.0,0.0,3.0,2.0,1.5,2,2,263.382115308578,500.0,40784.15460060595,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024519326434319238,27189.436400403967,7,4,7,7_0,7_4,7_0_1 -13400,2,78.0,0.0,2,111,285.0,2267.0,0.0,77,74,0.0,0.0,393.9196548591402,2552.0,0.0,4111.551126221167,20,0,0,0,0,0,0,0,0,0,,1,,2,116806,2,1,2,0,2,,367.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1405.59201429734,285.0,49335.36473888597,5,5,0,1,130.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05172759973513528,32890.24315925731,8,4,8,8_1,8_2,8_0_1 -13401,1,54.0,311.0,2,111,650.0,430.0,0.0,0,42,0.0,0.0,898.4132479243549,1080.0,0.0,779.870747364403,60,2,1,2,1,1,2,2,2,2,5.0,2,,2,111954,1,3,0,1,1,541.0,530.0,406.0,32,1.0,0.0,4.0,2.0,1.5,2,2,1703.822668909,650.0,12277.179790977061,0,1,2,3,75.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08796808537362388,8184.7865273180405,1,1,1_1,1_0_1,1_2_1,1_0_1 -13402,2,72.0,0.0,2,111,500.0,600.0,0.0,72,74,0.0,0.0,691.0871137879653,1100.0,0.0,1088.1917405084694,71,2,1,2,1,2,2,2,2,0,,2,,2,124734,1,3,0,1,1,,0.0,635.0,41,0.0,3.0,4.0,2.0,1.5,3,3,221.435732676478,500.0,30127.183066301463,5,5,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.036511876917905306,20084.78871086764,5,3,5,5_0,5_4,5_0_1 -13403,1,68.0,210.0,2,111,310.0,1080.0,0.0,0,78,0.0,0.0,428.47401054853844,1390.0,0.0,1958.7451329152448,60,2,2,2,2,1,2,2,1,0,,2,,2,108080,2,2,0,0,1,,300.0,257.0,21,1.0,2.0,3.0,2.0,1.5,1,1,1520.73643685515,310.0,12972.790051109352,0,5,2,3,50.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10714734413520674,8648.526700739569,1,1,1_1,1_0_1,1_2_1,1_0_1 -13404,2,71.0,0.0,2,111,765.0,0.0,0.0,0,86,0.0,0.0,1057.3632840955868,765.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,133024,2,1,0,1,1,521.0,0.0,412.0,21,1.0,0.0,3.0,2.0,1.5,1,1,209.663361429173,765.0,35776.87504113584,0,5,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021382527096634678,23851.250027423896,6,3,6,6_0,6_4,6_0_1 -13405,2,53.0,0.0,9,111,450.0,900.0,0.0,46,37,0.0,0.0,621.9784024091688,1350.0,0.0,1632.287610762704,60,0,0,0,0,0,0,0,0,2,50.0,1,2005.0,6,109276,2,1,1,0,1,,650.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,1262.29676944783,450.0,63822.28443944198,1,1,1,2,120.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021152486343245087,26592.61851643416,7,4,7,7_1,7_2,7_0_0 -13406,1,56.0,180.0,2,111,430.0,0.0,0.0,0,67,0.0,0.0,594.3349178576501,430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104339,2,1,0,0,1,,0.0,315.0,12,1.0,0.0,2.0,1.0,1.0,2,2,408.920694925379,430.0,9025.924364066592,0,4,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.047640549893359106,9025.924364066592,1,1,1_1,1_0_1,1_4_1,1_0_1 -13407,1,28.0,183.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,482.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,121049,2,1,0,1,1,508.0,434.0,500.0,32,1.0,0.0,4.0,3.0,1.6,3,2,694.206810082732,0.0,23473.5852848809,0,1,2,3,80.0,4,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020533718822682418,14670.990803050563,3,2,3_1,3_0_1,3_2_1,3_0_1 -13408,2,54.0,0.0,5,111,1300.0,0.0,0.0,0,52,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,60.0,2,,3,113850,2,2,0,1,1,40.0,0.0,400.0,32,2.0,0.0,3.0,2.0,1.5,3,3,293.50119292369,1300.0,41947.59744053721,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03099104786258174,27965.06496035814,7,4,7,7_0,7_4,7_0_0 -13409,2,32.0,0.0,1,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,2314.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,103774,1,3,3,0,1,,774.0,1200.0,42,1.0,0.0,6.0,4.0,2.1,1,1,1465.85936538509,0.0,84329.33200396199,6,1,2,3,135.0,4,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027440037114147695,40156.82476379142,9,5,9,9_1,9_2,9_1_0 -13410,2,82.0,0.0,2,111,375.0,260.0,0.0,0,75,0.0,0.0,518.315335340974,635.0,0.0,471.5497542203367,31,0,0,0,0,0,0,0,0,0,,2,,2,115454,2,1,0,0,1,,90.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,292.146674021035,375.0,23101.823033977573,0,5,0,1,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027487008235932645,23101.823033977573,6,3,6,6_0,6_4,6_0_1 -13411,2,31.0,0.0,9,111,700.0,0.0,0.0,54,55,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,104177,2,2,0,0,1,,275.0,510.0,43,2.0,0.0,2.0,2.0,1.5,3,3,1822.42843715651,700.0,39871.2635584638,1,1,2,3,49.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017556504046418796,26580.8423723092,7,4,7,7_0,7_2,7_0_0 -13412,1,49.0,185.0,2,111,320.0,0.0,0.0,85,67,0.0,0.0,442.2957528242978,320.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,115075,2,2,0,1,1,200.0,0.0,190.0,42,1.0,0.0,1.0,2.0,1.5,2,2,284.477544435759,320.0,16445.760596284028,7,4,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019457902121736165,10963.840397522685,2,1,2_1,2_0_1,2_4_1,2_0_1 -13413,2,59.0,0.0,6,111,2358.0,0.0,0.0,43,38,0.0,20.703450096389155,3259.1668286240442,2438.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,122203,2,1,2,0,1,,300.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1335.94243498711,2358.0,69482.84460730116,1,1,0,1,119.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03508779776905994,46321.89640486744,10,5,10,10_1,10_2,10_0_0 -13414,1,60.0,28.0,1,111,0.0,300.0,0.0,0,63,0.0,0.0,0.0,633.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,0,,2,,1,120459,1,1,0,0,1,,0.0,420.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1801.6876858836,0.0,13200.79646769529,0,4,2,3,65.0,4,4,2,0,1,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04795165212561713,13200.79646769529,2,1,2_1,2_0_1,2_2_1,2_1_0 -13415,2,48.0,0.0,2,111,480.0,0.0,0.0,0,34,0.0,0.0,663.4436292364467,480.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,15.0,2,,2,114432,2,1,0,1,1,518.0,0.0,275.0,12,1.0,0.0,2.0,1.0,1.0,1,1,348.473847449392,480.0,24086.65125199908,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019928050395140017,24086.65125199908,6,3,6,6_0,6_4,6_0_1 -13416,1,61.0,40.0,7,111,210.0,490.0,0.0,0,77,0.0,0.0,290.25658779094545,700.0,0.0,888.68992141525,33,0,0,0,0,0,0,0,0,0,,2,,5,117417,2,2,0,0,1,,0.0,409.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1643.85382989727,210.0,13400.279742765273,0,5,2,3,65.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05223771543858445,13400.279742765273,3,2,3_1,3_0_1,3_2_1,3_0_0 -13417,2,64.0,0.0,9,111,510.0,480.0,0.0,77,22,0.0,0.0,704.9088560637246,990.0,0.0,870.5533924067755,70,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,118986,1,2,0,1,1,,0.0,,42,1.0,3.0,3.0,2.0,1.5,1,1,513.40777388561,510.0,29922.87387271105,5,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03308505741164309,19948.582581807368,5,3,5,5_0,5_4,5_0_0 -13418,2,71.0,0.0,2,111,173.0,845.0,0.0,0,77,0.0,0.0,239.116141370636,1018.0,0.0,1532.5367012160943,71,0,0,0,0,0,0,0,0,0,,1,,2,122533,2,2,2,0,1,,80.0,292.0,11,0.0,6.0,4.0,1.0,1.0,1,1,1323.59649560439,173.0,22823.520617904825,0,5,2,3,60.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044603109968993526,22823.520617904825,6,3,6,6_1,6_2,6_0_1 -13419,2,62.0,0.0,2,111,720.0,620.0,0.0,86,63,0.0,0.0,995.16544385467,1340.0,0.0,1124.4647985254182,43,0,0,0,0,0,0,0,0,0,,2,,2,110114,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,5.0,3.0,2,2,174.79091925801,720.0,23151.054307902246,6,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05788073329958939,7717.018102634082,1,1,1_0,1_0_0,1_4_0,1_0_1 -13420,2,82.0,0.0,2,111,400.0,800.0,0.0,78,78,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,1,,2,123413,2,1,2,0,1,,300.0,,41,0.0,2.0,3.0,2.0,1.5,2,1,1396.2136194831,400.0,31222.7278271963,5,5,0,1,50.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03843354131776884,20815.151884797535,5,3,5,5_1,5_2,5_0_1 -13421,1,73.0,112.0,2,111,730.0,0.0,0.0,86,78,0.0,0.0,1008.9871861304293,730.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,126480,2,2,0,1,1,612.0,0.0,432.0,41,1.0,0.0,4.0,3.0,2.0,2,1,250.734620472352,730.0,16409.053673304774,5,5,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.044487635578132546,8204.526836652387,1,1,1_1,1_0_1,1_4_1,1_0_1 -13422,2,44.0,0.0,2,111,0.0,0.0,2250.0,0,68,0.0,0.0,1149.5550033844313,2250.0,0.0,2572.302992968421,70,2,1,1,2,2,2,2,1,2,10.0,2,,2,117353,2,3,0,0,1,,120.0,350.0,12,1.0,2.0,1.0,1.0,1.0,2,2,1767.5585278961,0.0,16906.152452488135,0,1,2,3,35.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.1330876440587675,16906.152452488135,4,2,4_0,4_0_0,4_2_0,4_0_1 -13423,1,80.0,190.0,2,111,425.0,0.0,0.0,0,77,0.0,0.0,587.4240467197704,425.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,112211,2,1,0,0,2,,0.0,380.0,11,0.0,6.0,3.0,1.0,1.0,1,1,333.208030623651,425.0,9016.095949203287,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0471379189390232,9016.095949203287,1,1,1_1,1_0_1,1_4_1,1_0_1 -13424,2,27.0,0.0,2,111,250.0,720.0,0.0,0,52,0.0,0.0,345.54355689398267,970.0,0.0,1305.830088610163,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,109331,2,1,0,0,1,,110.0,230.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1785.84392590105,250.0,20798.318300609073,0,1,2,3,49.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.046638386141613856,20798.318300609073,5,3,5,5_0,5_2,5_0_1 -13425,1,63.0,103.0,2,111,625.0,0.0,0.0,56,78,0.0,0.0,863.8588922349566,625.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,107332,2,2,0,1,2,597.0,0.0,374.0,42,1.0,0.0,4.0,4.0,2.5,2,2,210.240002294762,625.0,25777.328893839724,4,5,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024246111867291368,10310.931557535889,2,1,2_1,2_0_1,2_4_1,2_0_1 -13426,2,48.0,0.0,2,111,450.0,550.0,0.0,85,63,0.0,0.0,621.9784024091688,1000.0,0.0,997.5090954660969,70,0,0,0,0,0,0,0,0,3,45.0,2,,2,113880,2,2,0,1,1,,0.0,850.0,42,1.0,0.0,3.0,5.0,2.4,2,2,224.69917351973,450.0,48406.35536987378,6,1,3,4,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02065844437902798,20169.31473744741,5,3,5,5_0,5_4,5_0_1 -13427,1,65.0,139.0,2,111,370.0,390.0,0.0,85,78,0.0,0.0,511.40446420309434,760.0,0.0,707.3246313305051,43,2,2,2,1,2,2,1,2,0,,2,,2,110039,1,3,0,0,1,,130.0,380.0,41,0.0,0.0,2.0,2.0,1.5,2,2,1832.79536181445,370.0,18425.477947804717,7,5,2,3,40.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04124723397422368,12283.651965203144,2,1,2_1,2_0_1,2_2_1,2_0_1 -13428,1,27.0,193.0,2,111,380.0,0.0,0.0,0,42,0.0,0.0,525.2262064788536,380.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,113532,1,2,0,1,1,330.0,0.0,243.0,12,1.0,0.0,1.0,1.0,1.0,1,1,320.378798319209,380.0,4391.6660807759945,0,4,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08652752577510518,4391.6660807759945,1,1,1_1,1_0_1,1_4_1,1_0_1 -13429,2,48.0,0.0,1,111,800.0,0.0,0.0,48,65,2987.1697540360015,0.0,1105.7393820607444,2900.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,127419,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.5,3,3,1463.67910251803,800.0,44994.129600859545,1,1,0,1,210.0,8,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06445285253266905,17997.651840343817,4,2,4_0,4_1_0,4_3_0,4_1_0 -13430,2,46.0,0.0,2,111,550.0,420.0,0.0,0,21,0.0,0.0,760.1958251667618,970.0,0.0,761.7342183559285,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,103395,2,2,0,1,1,1340.0,0.0,485.0,32,1.0,0.0,4.0,5.0,2.8,2,2,211.448766784377,550.0,27557.497420177882,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035199132388914096,9841.963364349243,2,1,2_0,2_0_0,2_4_0,2_0_1 -13431,2,30.0,0.0,1,111,600.0,0.0,0.0,43,38,1642.9433647198007,0.0,829.3045365455583,1820.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,1,117381,2,1,3,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1713.33583944086,600.0,57341.96189477356,1,1,1,2,99.0,8,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03173940932366118,31856.64549709642,8,4,8,8_1,8_3,8_1_0 -13432,2,36.0,0.0,9,111,840.0,1308.0,0.0,56,48,0.0,0.0,1161.0263511637818,2148.0,0.0,2372.2579943084634,50,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,116804,1,2,1,0,1,,636.0,704.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1486.22221800728,840.0,36698.14755582305,1,1,2,3,83.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058531564753577535,17475.30835991574,4,2,4_0,4_1_0,4_3_0,4_0_0 -13433,1,51.0,153.0,2,111,250.0,200.0,0.0,0,22,0.0,0.0,345.54355689398267,450.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,3,20.0,2,,2,106147,1,2,0,1,1,60.0,0.0,387.0,32,2.0,1.0,3.0,3.0,2.0,1,1,235.094801669081,250.0,17958.312353968413,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025058033913780288,8979.156176984206,1,1,1_1,1_0_1,1_4_1,1_0_1 -13434,1,33.0,290.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1343.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117567,2,2,5,0,1,,221.0,265.0,32,1.0,0.0,3.0,2.0,1.3,3,3,1410.63905812803,0.0,11053.55081823761,0,4,2,3,60.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12149941879166475,8502.731398644315,1,1,1_1,1_1_1,1_3_1,1_0_0 -13435,1,34.0,380.0,2,111,400.0,350.0,0.0,21,52,0.0,0.0,552.8696910303722,750.0,0.0,634.7785152966071,70,0,0,0,0,0,0,0,0,2,45.0,2,,2,102597,2,2,0,1,1,96.0,0.0,360.0,43,2.0,0.0,3.0,3.0,1.8,1,1,206.61996600047,400.0,40146.39712399113,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01868162658989408,22303.553957772852,6,3,6,6_0,6_4,6_0_1 -13436,2,65.0,0.0,2,111,1100.0,0.0,0.0,77,78,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103148,2,2,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1475.7796742779,1100.0,18860.986730848257,6,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058321444985743244,12573.991153898838,2,1,2_0,2_1_0,2_3_0,2_0_1 -13437,2,64.0,0.0,2,111,512.0,275.0,0.0,77,72,0.0,0.0,707.6732045188764,787.0,0.0,498.75454773304847,10,0,0,0,0,0,0,0,0,0,,2,,2,125730,2,2,0,1,1,646.0,0.0,563.0,41,0.0,2.0,4.0,2.0,1.5,2,2,221.435732676478,512.0,23339.00672667534,5,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03372037247414208,15559.33781778356,3,2,3_0,3_0_0,3_4_0,3_0_1 -13438,2,58.0,0.0,5,111,1050.0,0.0,0.0,56,67,0.0,72.46207533736204,1451.2829389547271,1120.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,3,113440,2,2,2,0,1,,380.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1406.28757789617,1050.0,51453.29060055988,1,1,1,2,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02176731530534634,34302.19373370658,9,5,9,9_1,9_3,9_0_0 -13439,2,43.0,0.0,5,111,2140.0,0.0,0.0,42,38,0.0,372.6621017350048,2957.8528470124916,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,121995,2,1,2,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,1346.64478349935,2140.0,94245.77546980478,1,1,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02652638792070813,33659.20552493028,9,5,9,9_1,9_3,9_0_0 -13440,2,57.0,0.0,2,111,400.0,260.0,0.0,0,47,0.0,0.0,552.8696910303722,660.0,0.0,471.5497542203367,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,131590,2,1,0,1,1,45.0,0.0,400.0,32,1.0,0.0,3.0,2.0,1.5,1,1,221.435732676478,400.0,23358.485598757426,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028255256412475182,15572.32373250495,3,2,3_0,3_0_0,3_4_0,3_0_1 -13441,2,66.0,0.0,5,111,800.0,0.0,0.0,77,77,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,132237,1,2,1,0,1,,500.0,,41,0.0,4.0,4.0,2.0,1.5,3,3,1419.48428102368,800.0,40968.25763195752,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019527313247902335,27312.171754638344,7,4,7,7_1,7_3,7_0_0 -13442,2,55.0,0.0,5,111,1800.0,0.0,0.0,56,62,0.0,0.0,2487.913609636675,1980.0,309.6588607542345,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,100401,2,2,2,0,1,,700.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1449.21406283759,1800.0,47625.72784649771,1,1,0,1,110.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0415741677771672,31750.485230998474,8,4,8,8_1,8_3,8_0_0 -13443,2,53.0,0.0,7,111,1450.0,0.0,0.0,52,52,0.0,62.110350289167464,2004.1526299850993,1510.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,126685,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1357.34876068443,1450.0,52974.97506082551,1,1,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028504024745008905,21189.990024330204,5,3,5,5_1,5_3,5_0_0 -13444,2,53.0,0.0,2,111,500.0,200.0,0.0,74,47,0.0,0.0,691.0871137879653,700.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,104098,2,2,0,1,2,,0.0,,42,1.0,3.0,4.0,3.0,2.0,1,1,208.999354727231,500.0,1757.9231898980624,5,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.3981971476470432,878.9615949490312,1,1,1_0,1_0_0,1_4_0,1_0_1 -13445,2,50.0,0.0,7,111,2136.0,0.0,0.0,85,48,0.0,0.0,2952.3241501021876,2136.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,104086,2,1,3,0,1,,1224.0,640.0,42,2.0,2.0,6.0,5.0,3.0,3,3,1300.91451548067,2136.0,55471.23810104261,6,1,2,3,110.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03850644177274732,18490.412700347537,4,2,4_0,4_1_0,4_3_0,4_0_0 -13446,2,65.0,0.0,1,111,265.0,0.0,0.0,0,77,0.0,0.0,366.2761703076216,265.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,128854,2,2,0,1,1,556.0,0.0,320.0,11,0.0,0.0,2.0,1.0,1.0,2,2,249.40142517987,265.0,22674.722622885816,0,5,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011687022787768656,22674.722622885816,6,3,6,6_0,6_4,6_1_0 -13447,2,42.0,0.0,2,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,1410.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,2,110320,2,2,5,0,1,,224.0,,43,2.0,2.0,4.0,4.0,2.1,1,1,1382.42070907474,0.0,49696.84131201412,4,1,1,2,88.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028372024514546665,23665.16252953053,6,3,6,6_1,6_3,6_0_1 -13448,2,60.0,0.0,6,111,1700.0,0.0,0.0,77,75,0.0,362.31037668681023,2349.696186879082,2110.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129092,2,1,2,0,1,,597.0,,41,1.0,2.0,5.0,3.0,2.0,1,1,1416.24248474684,1700.0,108381.57631554856,6,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019468253477480532,54190.78815777428,10,5,10,10_1,10_3,10_0_0 -13449,2,57.0,0.0,6,111,340.0,320.0,0.0,74,54,0.0,0.0,469.9392373758164,660.0,0.0,580.3689282711837,60,0,0,0,0,0,0,0,0,3,45.0,2,,4,109415,2,2,0,0,1,,0.0,478.0,42,1.0,1.0,4.0,2.0,1.5,1,1,451.206202487678,340.0,42570.85039327158,5,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015503566264307336,28380.566928847722,8,4,8,8_0,8_4,8_0_0 -13450,2,39.0,0.0,9,111,1900.0,0.0,0.0,43,65,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,133340,2,1,1,0,1,,340.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1439.43235997321,1900.0,42662.4463666728,1,1,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04453565516777887,20315.45065079657,5,3,5,5_1,5_3,5_0_0 -13451,2,61.0,0.0,5,111,1750.0,0.0,0.0,77,77,0.0,310.55175144583734,2418.8048982578784,2160.0,189.2359704609211,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,101411,2,3,3,0,1,,450.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1480.63024446019,1750.0,53618.70268243503,7,5,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04028445098332443,35745.801788290024,9,5,9,9_1,9_3,9_0_0 -13452,2,38.0,0.0,1,111,640.0,1400.0,0.0,46,46,0.0,0.0,884.5915056485956,2040.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,133107,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.4,4,2,1295.06898344824,640.0,55384.05862340944,1,1,1,2,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036833703609033513,23076.691093087265,6,3,6,6_1,6_3,6_1_0 -13453,1,70.0,100.0,5,111,500.0,100.0,0.0,0,77,0.0,0.0,691.0871137879653,600.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,3,108785,2,2,0,1,1,,0.0,400.0,11,0.0,4.0,5.0,1.0,1.0,4,4,349.100770591561,500.0,13827.624229329906,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043391401881411724,13827.624229329906,3,2,3_1,3_0_1,3_4_1,3_0_0 -13454,2,62.0,0.0,5,111,760.0,0.0,0.0,77,78,1493.5848770180007,0.0,1050.452412957707,1900.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114126,1,1,2,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1419.48428102368,760.0,36305.548826010054,6,5,0,1,100.0,8,7,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05233359807079408,24203.699217340036,7,4,7,7_1,7_3,7_0_0 -13455,2,43.0,0.0,2,111,794.0,396.0,0.0,52,52,0.0,0.0,1097.446336695289,1190.0,0.0,718.2065487355898,50,1,2,2,1,1,2,2,2,3,30.0,2,,2,117771,1,3,0,1,1,1050.0,0.0,434.0,43,2.0,0.0,4.0,5.0,2.4,2,2,168.184104109589,794.0,24584.258329185304,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04840495833007444,10243.440970493877,2,1,2_0,2_0_0,2_4_0,2_0_1 -13456,2,53.0,0.0,2,111,620.0,1481.0,0.0,52,42,0.0,0.0,856.9480210970769,2101.0,0.0,2686.019946155072,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,112886,2,2,1,0,1,,436.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1454.34650484161,620.0,59436.99404903942,1,1,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03534835557576376,39624.662699359615,9,5,9,9_1,9_3,9_0_1 -13457,2,63.0,0.0,5,111,0.0,0.0,787.0,0,77,0.0,0.0,402.0887945171322,787.0,0.0,899.734424651621,50,1,2,2,1,1,2,2,2,0,,2,,3,126381,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,2,343.525965246221,0.0,13888.077395988326,0,5,0,1,1.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.056667310928676905,13888.077395988326,3,2,3_0,3_0_0,3_4_0,3_0_0 -13458,2,45.0,0.0,1,111,1500.0,1000.0,0.0,42,38,0.0,0.0,2073.261341363896,2650.0,258.04905062852873,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,1,113587,2,2,1,0,1,,900.0,,43,2.0,2.0,6.0,3.0,1.8,2,2,1676.0858273802,1500.0,100646.79658706093,1,1,1,2,170.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026329700396452375,55914.886992811626,10,5,10,10_1,10_3,10_1_0 -13459,2,50.0,0.0,2,111,660.0,900.0,0.0,85,63,0.0,0.0,912.2349902001142,1560.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,0,,2,,2,123020,2,1,0,1,1,,0.0,,42,2.0,0.0,3.0,6.0,3.0999999999999996,2,2,221.982918388807,660.0,37316.169191682406,6,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041804934262858806,12037.473932800778,2,1,2_0,2_0_0,2_4_0,2_0_1 -13460,2,60.0,0.0,1,111,2000.0,0.0,0.0,77,75,0.0,0.0,2764.3484551518613,2187.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,108186,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,1419.48428102368,2000.0,32873.143657979104,6,5,0,1,100.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06652847147063656,21915.429105319403,6,3,6,6_1,6_3,6_1_0 -13461,2,49.0,0.0,1,111,748.0,0.0,0.0,67,56,7467.924385090004,0.0,1033.866322226796,5838.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,122553,1,3,2,0,2,,148.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1591.76450601236,748.0,17885.279583120122,4,1,1,2,150.0,8,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.3264136841064438,11923.519722080082,2,1,2_0,2_1_0,2_3_0,2_1_0 -13462,2,31.0,0.0,2,111,1200.0,600.0,0.0,0,53,0.0,0.0,1658.6090730911167,1800.0,0.0,1088.1917405084694,50,2,2,2,1,1,2,2,2,2,30.0,2,,2,128136,2,1,0,1,1,,0.0,,22,3.0,0.0,4.0,4.0,2.5,2,2,218.498909040549,1200.0,34895.94932730177,0,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05158191809362017,13958.37973092071,3,2,3_0,3_0_0,3_4_0,3_0_1 -13463,2,61.0,0.0,5,111,2489.0,0.0,0.0,77,23,0.0,0.0,3440.231652436491,2489.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,125623,2,1,1,0,1,,414.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1480.65911276077,2489.0,128652.72766437879,5,1,0,1,175.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019346655490221302,85768.48510958586,10,5,10,10_1,10_3,10_0_0 -13464,2,44.0,0.0,8,111,600.0,0.0,0.0,34,38,0.0,103.51725048194578,829.3045365455583,2000.0,2236.4251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,114364,2,2,3,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,1415.08196187341,600.0,87313.37045820603,1,1,1,2,200.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022905999270264484,41577.795456288586,9,5,9,9_1,9_3,9_0_0 -13465,1,28.0,367.0,2,111,360.0,600.0,0.0,85,68,0.0,0.0,497.582721927335,960.0,0.0,1088.1917405084694,50,2,1,2,2,1,2,2,2,0,,2,,2,110719,2,3,0,1,1,468.0,0.0,474.0,42,1.0,0.0,2.0,2.0,1.5,3,2,221.453808386091,360.0,18034.75109252647,6,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05323056553842988,12023.167395017646,2,1,2_1,2_0_1,2_4_1,2_0_1 -13466,2,50.0,0.0,1,111,1380.0,0.0,0.0,55,62,2793.003720023661,0.0,1907.4004340547842,3365.0,197.83760548187203,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,119825,2,1,3,0,1,,324.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1451.58189986608,1380.0,47310.77376332514,1,1,0,1,200.0,8,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07112544844084787,20569.901636228322,5,3,5,5_1,5_3,5_1_0 -13467,2,37.0,0.0,8,111,1500.0,0.0,0.0,54,37,0.0,310.55175144583734,2073.261341363896,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,126740,2,1,1,0,1,,390.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1415.08196187341,1500.0,56276.03668677018,1,1,1,2,130.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03198519487110858,26798.112707985798,7,4,7,7_1,7_3,7_0_0 -13468,2,37.0,0.0,2,111,750.0,200.0,0.0,0,46,0.0,0.0,1036.630670681948,950.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,105784,2,1,0,1,1,,240.0,520.0,12,1.0,1.0,2.0,1.0,1.0,1,1,236.123016034446,750.0,18217.76235950589,0,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0521469092225971,18217.76235950589,4,2,4_0,4_0_0,4_4_0,4_0_1 -13469,2,47.0,0.0,7,111,2000.0,0.0,0.0,56,90,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,119441,2,1,2,0,1,,850.0,564.0,43,2.0,0.0,5.0,4.0,2.5,1,1,1365.75592511221,2000.0,41795.38537000598,1,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04785217272898455,16718.15414800239,4,2,4_0,4_1_0,4_3_0,4_0_0 -13470,2,75.0,0.0,2,111,400.0,400.0,0.0,78,78,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,,2,101178,1,2,0,1,2,583.0,300.0,380.0,41,0.0,1.0,3.0,2.0,1.5,3,2,209.663361429173,400.0,30650.072203884796,5,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026101080437213542,20433.381469256532,5,3,5,5_0,5_4,5_0_1 -13471,1,46.0,200.0,8,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,126438,2,1,3,0,1,,525.0,575.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,2,2,1301.06508643603,0.0,37444.94597059826,6,1,2,3,110.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037388223262473895,12079.014829225247,2,1,2_1,2_1_1,2_3_1,2_0_0 -13472,2,54.0,0.0,2,111,900.0,0.0,0.0,0,45,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,2,108319,2,1,0,0,1,,300.0,515.0,12,1.0,1.0,1.0,1.0,1.0,1,1,348.473847449392,900.0,27014.76241451301,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03331511808952639,27014.76241451301,7,4,7,7_0,7_4,7_0_1 -13473,2,67.0,0.0,8,111,731.0,931.0,0.0,0,71,0.0,0.0,1010.3693603580052,1662.0,0.0,1688.5108506889749,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,102515,2,1,2,0,1,,260.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1424.32499813107,731.0,20298.567736941422,0,5,0,1,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0818776980493713,20298.567736941422,5,3,5,5_1,5_3,5_0_0 -13474,1,39.0,28.0,2,111,260.0,120.0,0.0,0,62,0.0,0.0,359.36529916974195,380.0,0.0,217.63834810169388,50,2,1,2,2,1,2,2,2,2,20.0,2,,2,100211,2,1,0,1,1,512.0,0.0,406.0,32,1.0,0.0,3.0,2.0,1.3,2,2,209.663361429173,260.0,23155.228942684924,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.016410980039998593,17811.714571296096,4,2,4_1,4_0_1,4_4_1,4_0_1 -13475,2,47.0,0.0,8,111,1780.0,0.0,0.0,42,43,0.0,517.5862524097289,2460.2701250851565,2280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,118974,1,1,2,0,1,,520.0,,43,2.0,0.0,6.0,5.0,3.0,3,3,1406.84570917359,1780.0,77554.80026314071,1,1,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02939856710692362,25851.60008771357,7,4,7,7_1,7_3,7_0_0 -13476,1,51.0,110.0,2,111,600.0,250.0,0.0,22,47,0.0,0.0,829.3045365455583,850.0,0.0,453.4132252118622,41,0,0,0,0,0,0,0,0,3,120.0,2,,2,128704,2,1,0,1,1,,0.0,680.0,43,2.0,0.0,4.0,3.0,1.8,2,2,206.61996600047,600.0,22582.825655478035,1,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03763922252102279,12546.014253043351,2,1,2_1,2_0_1,2_4_1,2_0_1 -13477,2,66.0,0.0,2,111,450.0,300.0,0.0,86,78,0.0,0.0,621.9784024091688,750.0,0.0,544.0958702542347,31,0,0,0,0,0,0,0,0,0,,2,,2,117462,2,1,0,1,1,,272.0,450.0,41,0.0,0.0,4.0,2.0,1.5,3,2,221.435732676478,450.0,14531.665183694382,6,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0516114285953654,9687.776789129588,1,1,1_0,1_0_0,1_4_0,1_0_1 -13478,1,26.0,270.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131239,1,3,0,0,1,,165.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1764.45558530805,0.0,12161.476884757723,0,4,2,3,26.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021378982377203246,12161.476884757723,2,1,2_1,2_0_1,2_3_1,2_0_1 -13479,2,56.0,0.0,2,111,765.0,658.0,0.0,55,62,0.0,0.0,1057.3632840955868,1423.0,0.0,1193.3836087576215,43,0,0,0,0,0,0,0,0,3,75.0,2,,2,128621,2,1,0,1,1,625.0,0.0,485.0,43,3.0,0.0,3.0,3.0,2.0,2,2,206.61996600047,765.0,44297.77192370471,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03212351182020785,22148.885961852357,6,3,6,6_0,6_4,6_0_1 -13480,2,65.0,0.0,2,111,265.0,194.0,0.0,77,52,0.0,0.0,366.2761703076216,733.0,0.0,351.8486627644051,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,107168,2,1,0,1,1,,0.0,,42,1.0,1.0,2.0,2.0,1.5,2,2,1057.05633012598,265.0,28585.709477919063,5,1,0,1,49.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025642183223271175,19057.139651946043,5,3,5,5_0,5_3,5_0_1 -13481,2,40.0,0.0,2,111,341.0,83.0,0.0,0,47,0.0,0.0,471.32141160339233,424.0,0.0,150.53319077033825,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,124592,2,1,0,1,1,922.0,0.0,370.0,22,2.0,0.0,4.0,2.0,1.5,2,1,209.663361429173,341.0,23370.390880990442,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018142614822282802,15580.260587326962,3,2,3_0,3_0_0,3_4_0,3_0_1 -13482,1,39.0,453.0,5,111,433.0,151.0,0.0,85,63,0.0,0.0,598.4814405403779,584.0,0.0,273.8615880279648,71,2,2,1,2,1,2,2,2,2,20.0,2,,3,129038,2,1,0,1,1,572.0,0.0,112.0,42,1.0,0.0,4.0,5.0,2.4,2,2,248.655134649576,433.0,18387.799756203487,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0317601892419443,7661.583231751453,1,1,1_1,1_0_1,1_4_1,1_0_0 -13483,2,82.0,0.0,2,111,360.0,2000.0,0.0,77,75,0.0,0.0,497.582721927335,2360.0,0.0,3627.3058016948976,70,0,0,0,0,0,0,0,0,0,,2,,2,116272,1,3,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1163.59355032768,360.0,36064.14206250104,5,5,0,1,65.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06543896139023622,24042.761375000697,6,3,6,6_0,6_3,6_0_1 -13484,1,36.0,260.0,5,111,672.0,0.0,0.0,0,54,0.0,0.0,928.8210809310253,672.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,111256,2,2,0,1,1,,0.0,400.0,22,2.0,0.0,5.0,3.0,2.0,2,2,289.240838693107,672.0,35139.86412317825,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01912357992177747,17569.932061589127,4,2,4_1,4_0_1,4_4_1,4_0_0 -13485,1,39.0,98.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,204.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,123500,2,2,0,1,1,,0.0,370.0,32,1.0,0.0,4.0,3.0,1.8,1,1,218.221453882199,0.0,35771.07270964987,0,1,2,3,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00570293213334269,19872.818172027703,5,3,5,5_0,5_4,5_0_1 -13486,1,76.0,98.0,5,111,450.0,0.0,0.0,0,78,0.0,0.0,621.9784024091688,450.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,3,127350,2,1,0,1,1,49.0,0.0,377.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1401.47153105291,450.0,11509.8394866102,0,5,2,3,35.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.039096983109408324,11509.8394866102,2,1,2_1,2_0_1,2_3_1,2_0_0 -13487,2,47.0,0.0,6,111,530.0,900.0,0.0,67,56,0.0,0.0,732.5523406152432,1430.0,0.0,1632.287610762704,50,2,2,2,2,1,2,2,2,3,40.0,1,,4,126191,1,2,5,0,2,,530.0,,43,3.0,1.0,5.0,4.0,2.5,1,1,296.472724624304,530.0,12621.974189651784,4,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.11329447981064608,5048.789675860714,1,1,1_0,1_1_0,1_4_0,1_0_0 -13488,2,55.0,0.0,6,111,40.0,30.0,0.0,77,48,0.0,0.0,55.28696910303722,70.0,0.0,54.40958702542347,71,0,0,0,0,0,0,0,0,3,45.0,1,,4,102749,1,3,3,0,1,,380.0,620.0,42,3.0,2.0,4.0,4.0,2.5,1,1,317.848646372872,40.0,64446.5220685156,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0010861718794627937,25778.608827406242,7,4,7,7_1,7_4,7_0_0 -13489,2,44.0,0.0,2,111,600.0,0.0,0.0,0,48,0.0,0.0,829.3045365455583,632.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,129850,1,1,0,1,1,1088.0,0.0,581.0,32,1.0,0.0,4.0,3.0,1.8,1,1,1345.55955097061,600.0,30967.3391859893,0,1,2,3,100.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020408598756393597,17204.077325549613,4,2,4_0,4_0_0,4_3_0,4_0_1 -13490,2,37.0,0.0,1,111,1220.0,0.0,0.0,21,55,0.0,0.0,1686.2525576426353,1295.0,129.02452531426437,0.0,20,2,1,2,2,1,2,2,2,2,2.0,1,,1,102694,2,2,4,1,1,612.0,0.0,611.0,43,2.0,0.0,4.0,5.0,2.4,1,1,895.644248318208,1220.0,25644.874833754075,1,1,2,3,114.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05049741940231685,10685.364514064198,2,1,2_0,2_1_0,2_3_0,2_1_0 -13491,2,59.0,0.0,2,111,240.0,750.0,0.0,52,78,0.0,0.0,331.72181461822333,990.0,0.0,1360.2396756355868,50,2,1,2,2,1,1,2,2,0,,2,,2,126147,1,2,0,1,1,480.0,0.0,316.0,42,1.0,0.0,3.0,4.0,2.3,2,2,199.06283893394,240.0,18169.4243820611,1,7,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05448714164976186,7899.749731330914,1,1,1_0,1_0_0,1_4_0,1_0_1 -13492,2,40.0,0.0,1,111,1570.0,0.0,0.0,56,64,0.0,0.0,2170.013537294211,1570.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,131997,2,1,3,0,1,,396.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,788.928137823429,1570.0,49596.149906364466,1,1,1,2,100.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03165568301096147,20665.062460985195,5,3,5,5_1,5_3,5_1_0 -13493,1,50.0,307.0,2,111,480.0,0.0,0.0,0,55,0.0,0.0,663.4436292364467,480.0,0.0,0.0,10,2,1,2,1,2,2,2,2,0,,2,,2,102066,2,1,0,1,1,627.0,450.0,454.0,12,1.0,1.0,3.0,1.0,1.0,3,2,236.123016034446,480.0,4704.247304912236,0,4,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.1020354519837377,4704.247304912236,1,1,1_1,1_0_1,1_4_1,1_0_1 -13494,2,71.0,0.0,1,111,550.0,0.0,0.0,77,75,2539.0942909306013,0.0,760.1958251667618,2350.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,121710,2,1,2,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,864.301334526689,550.0,51276.40528699677,5,5,0,1,80.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0458300457461268,34184.27019133118,9,5,9,9_1,9_3,9_1_0 -13495,1,64.0,268.0,2,111,700.0,0.0,0.0,0,86,0.0,62.110350289167464,967.5219593031513,1566.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,2,108429,2,3,0,1,1,,0.0,518.0,31,1.0,12.0,5.0,3.0,2.0,1,1,218.221453882199,700.0,12806.186446722695,0,6,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.12228464785476897,6403.093223361348,1,1,1_1,1_0_1,1_4_1,1_0_1 -13497,1,22.0,134.0,5,111,320.0,770.0,0.0,0,55,0.0,0.0,442.2957528242978,1090.0,0.0,1396.5127336525356,50,2,2,2,2,1,2,2,2,0,,2,,3,108040,1,1,0,0,1,,0.0,264.0,12,1.0,0.0,2.0,1.0,1.0,2,2,359.47136154502,320.0,12526.987285883084,0,4,2,3,70.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.08701214227528938,12526.987285883084,2,1,2_1,2_0_1,2_3_1,2_0_0 -13498,2,58.0,0.0,2,111,600.0,340.0,0.0,56,75,0.0,0.0,829.3045365455583,940.0,0.0,616.6419862881327,50,0,0,0,0,0,0,0,0,0,,2,,2,115215,2,1,0,1,1,2100.0,550.0,512.0,42,3.0,2.0,5.0,4.0,2.5,2,2,215.463600852791,600.0,25357.430841044705,4,5,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03707000152706609,10142.972336417883,2,1,2_0,2_0_0,2_4_0,2_0_1 -13499,2,40.0,0.0,2,111,450.0,342.0,0.0,56,47,0.0,0.0,621.9784024091688,792.0,0.0,620.2692920898276,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,105263,2,1,0,1,2,650.0,0.0,355.0,43,3.0,0.0,3.0,5.0,2.6,1,1,168.184104109589,450.0,24309.046706642013,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03258046313200756,9349.633348708467,1,1,1_0,1_0_0,1_4_0,1_0_1 -13500,2,55.0,0.0,2,111,313.0,350.0,0.0,0,45,0.0,0.0,432.6205332312663,663.0,0.0,634.7785152966071,33,2,1,2,2,1,2,2,2,2,40.0,2,,2,125865,2,1,0,1,1,990.0,0.0,400.0,32,1.0,0.0,4.0,2.0,1.5,1,1,295.844999047704,313.0,35625.520383609546,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018610254470978353,23750.346922406363,6,3,6,6_0,6_4,6_0_1 -13501,1,70.0,115.0,1,111,450.0,0.0,0.0,0,77,0.0,0.0,621.9784024091688,726.0,474.81025315649293,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,107568,2,1,0,1,1,65.0,0.0,395.0,11,0.0,9.0,3.0,1.0,1.0,2,2,1383.45526496694,450.0,10371.306702108694,0,5,2,3,65.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07000082254364243,10371.306702108694,2,1,2_1,2_0_1,2_3_1,2_1_0 -13502,2,32.0,0.0,2,111,450.0,400.0,0.0,0,54,0.0,0.0,621.9784024091688,850.0,0.0,725.4611603389795,20,0,0,0,0,0,0,0,0,0,,2,,2,123021,2,2,0,1,1,,0.0,550.0,32,1.0,0.0,3.0,2.0,1.3,2,2,221.435732676478,450.0,10399.521357576372,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08173453092442075,7999.6318135202855,1,1,1_0,1_0_0,1_4_0,1_0_1 -13503,2,60.0,0.0,2,111,341.0,290.0,0.0,77,42,0.0,0.0,471.32141160339233,631.0,0.0,525.9593412457601,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,131302,2,1,0,1,1,1008.0,0.0,380.0,42,1.0,3.0,4.0,2.0,1.5,2,2,221.435732676478,341.0,54622.57591105244,5,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011552000056304966,36415.05060736829,9,5,9,9_0,9_4,9_0_1 -13504,2,49.0,0.0,2,111,0.0,0.0,1100.0,77,67,0.0,0.0,562.0046683212776,1646.0,0.0,1257.5703521178948,43,1,2,2,2,1,1,2,2,2,13.0,2,,2,104416,2,2,0,1,1,1130.0,0.0,382.0,42,1.0,2.0,4.0,3.0,2.0,3,2,218.221453882199,0.0,37211.132009139095,7,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.044234074889088044,18605.566004569548,4,2,4_0,4_0_0,4_4_0,4_0_1 -13505,2,67.0,0.0,2,111,170.0,80.0,0.0,0,77,0.0,0.0,234.9696186879082,250.0,0.0,145.09223206779592,50,2,1,2,1,1,2,2,2,0,,2,,2,129071,2,1,0,1,1,1000.0,100.0,408.0,11,0.0,3.0,4.0,1.0,1.0,1,1,249.381068303773,170.0,18678.18420051347,0,5,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013384598701683613,18678.18420051347,4,2,4_0,4_0_0,4_4_0,4_0_1 -13506,2,40.0,0.0,2,111,220.0,420.0,0.0,0,37,0.0,0.0,304.0783300667047,640.0,0.0,761.7342183559285,71,2,1,2,1,2,1,2,2,3,90.0,2,,2,113660,2,1,0,1,1,324.0,0.0,440.0,32,1.0,0.0,3.0,2.0,1.3,2,2,209.663361429173,220.0,29721.32298429877,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02153336176650347,22862.556141768284,6,3,6,6_0,6_4,6_0_1 -13507,2,25.0,0.0,7,111,500.0,650.0,0.0,55,62,0.0,0.0,691.0871137879653,1150.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,106991,2,1,0,0,1,,0.0,430.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1138.24979579913,500.0,34133.85625751067,4,1,2,3,85.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033690890104072516,18963.253476394817,5,3,5,5_0,5_3,5_0_0 -13508,2,59.0,0.0,2,111,250.0,730.0,0.0,90,63,0.0,0.0,345.54355689398267,980.0,0.0,1323.9666176186377,50,2,2,2,2,1,2,2,2,2,30.0,2,,2,112303,2,3,0,0,1,,250.0,570.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1333.04017410621,250.0,23857.728088363394,4,1,2,3,75.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04107683666987533,15905.152058908929,3,2,3_0,3_0_0,3_3_0,3_0_1 -13509,2,63.0,0.0,2,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,656.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,131996,2,1,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,217.899615858167,0.0,44801.056777118916,6,5,0,1,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014642511743942535,29867.371184745945,8,4,8,8_0,8_4,8_0_1 -13510,1,40.0,101.0,2,111,383.0,376.0,0.0,63,52,0.0,0.0,529.3727291615814,759.0,0.0,681.9334907186408,41,0,0,0,0,0,0,0,0,3,60.0,2,,2,107018,2,1,0,1,1,1900.0,0.0,334.0,43,2.0,0.0,3.0,3.0,2.0,2,1,218.221453882199,383.0,25799.99940071099,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029418605334505694,12899.999700355494,2,1,2_1,2_0_1,2_4_1,2_0_1 -13511,2,28.0,0.0,2,111,200.0,227.0,0.0,65,46,0.0,0.0,276.4348455151861,427.0,0.0,411.69920849237093,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,107081,2,1,0,1,1,265.0,0.0,325.0,43,2.0,0.0,3.0,2.0,1.5,3,3,280.11674634724,200.0,48832.84300295649,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008744115102496655,32555.22866863766,8,4,8,8_0,8_4,8_0_1 -13512,1,41.0,540.0,2,111,2000.0,240.0,0.0,48,43,0.0,0.0,2764.3484551518613,2240.0,0.0,435.27669620338776,50,2,1,2,1,2,1,2,2,1,15.0,2,,2,123335,1,3,0,1,2,960.0,0.0,536.0,43,2.0,0.0,5.0,8.0,3.8999999999999995,3,3,293.585702937555,2000.0,59418.11666837109,1,1,2,3,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03769893974428806,15235.414530351563,3,2,3_1,3_0_1,3_4_1,3_0_1 -13513,1,37.0,33.0,1,111,191.0,550.0,0.0,0,54,0.0,0.0,263.9952774670027,741.0,0.0,997.5090954660969,71,0,0,0,0,0,0,0,0,2,40.0,2,,1,104597,2,2,0,0,1,,0.0,223.0,12,1.0,0.0,3.0,1.0,1.0,1,1,325.592774960001,191.0,18366.55218153612,0,1,2,3,70.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0403450790695995,18366.55218153612,4,2,4_1,4_0_1,4_3_1,4_1_0 -13514,2,82.0,0.0,2,111,516.0,372.0,0.0,0,77,0.0,0.0,713.2019014291802,888.0,0.0,674.678879115251,33,0,0,0,0,0,0,0,0,0,,2,,2,128361,2,2,0,1,1,213.0,0.0,352.0,11,0.0,3.0,3.0,1.0,1.0,3,2,236.123016034446,516.0,34918.92171451735,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02543033852133008,34918.92171451735,9,5,9,9_0,9_4,9_0_1 -13515,2,54.0,0.0,2,111,290.0,180.0,0.0,0,56,0.0,0.0,400.8305259970199,470.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,2,,2,131845,2,1,0,1,1,1092.0,0.0,400.0,12,1.0,1.0,3.0,1.0,1.0,2,2,271.303365260063,290.0,19347.22988268983,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024292883417926094,19347.22988268983,5,3,5,5_0,5_4,5_0_1 -13516,2,32.0,0.0,5,111,1900.0,0.0,0.0,52,67,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,124711,2,1,3,0,1,,368.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,944.176048080102,1900.0,39956.76938975655,1,1,2,3,100.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04755139189223567,22198.205216531416,6,3,6,6_1,6_3,6_0_0 -13517,2,64.0,0.0,5,111,330.0,1100.0,0.0,0,56,0.0,258.79312620486445,456.1174951000571,1680.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,129206,2,1,1,0,1,,260.0,,12,1.0,2.0,5.0,1.0,1.0,3,2,831.009543972454,330.0,17143.351923132854,0,1,0,1,85.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09799717158772467,17143.351923132854,4,2,4_0,4_1_0,4_3_0,4_0_0 -13518,2,33.0,0.0,8,111,1600.0,0.0,0.0,54,62,0.0,0.0,2211.478764121489,1660.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,130674,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,823.907218751692,1600.0,63989.824993646296,1,1,1,2,135.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025941624315503682,30471.345235069664,8,4,8,8_1,8_3,8_0_0 -13519,1,33.0,69.0,9,111,280.0,984.0,0.0,0,46,0.0,0.0,387.00878372126056,1264.0,0.0,1784.6344544338897,70,0,0,0,0,0,0,0,0,3,45.0,1,2007.0,6,101257,2,1,1,0,1,,130.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,832.145390885818,280.0,27354.572432844696,0,1,1,2,90.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04620799696661727,21041.97879449592,5,3,5,5_1,5_3,5_0_0 -13520,2,41.0,0.0,8,111,1500.0,0.0,0.0,46,34,0.0,362.31037668681023,2073.261341363896,1850.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,118467,2,2,3,0,1,,270.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,804.129518519565,1500.0,53608.47947730813,4,1,1,2,92.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034509466003099086,25527.847370146726,7,4,7,7_1,7_3,7_0_0 -13521,1,58.0,420.0,2,111,690.0,130.0,0.0,0,85,0.0,0.0,953.7002170273921,820.0,0.0,235.77487711016835,43,2,1,2,2,2,2,2,1,0,,2,,2,118508,1,2,0,1,1,1044.0,0.0,560.0,31,2.0,4.0,5.0,3.0,2.0,4,3,212.571493015775,690.0,7812.905235407226,0,6,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.1049545559933135,3906.452617703613,1,1,1_1,1_0_1,1_4_1,1_0_1 -13522,2,88.0,0.0,2,111,150.0,233.0,0.0,0,77,0.0,0.0,207.32613413638958,383.0,0.0,422.5811258974556,50,0,0,0,0,0,0,0,0,0,,2,,2,117891,2,1,0,1,1,49.0,0.0,330.0,11,0.0,4.0,2.0,1.0,1.0,5,5,369.085836991667,150.0,19700.04744339924,0,5,2,3,38.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01944157754444034,19700.04744339924,5,3,5,5_0,5_3,5_0_1 -13523,2,33.0,0.0,2,111,0.0,0.0,250.0,0,62,0.0,0.0,127.72833370938126,250.0,0.0,285.8114436631579,50,2,2,2,2,1,2,2,2,2,25.0,2,,2,127723,2,2,0,1,1,334.0,0.0,330.0,12,1.0,0.0,2.0,1.0,1.0,2,2,324.848135531767,0.0,24103.718497537866,0,1,2,3,42.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010371843664932316,24103.718497537866,6,3,6,6_0,6_3,6_0_1 -13524,1,27.0,63.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,922.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,45.0,2,,1,115588,2,2,0,0,1,,120.0,238.0,12,1.0,0.0,3.0,1.0,1.0,2,2,315.386762917581,0.0,12468.074006733455,0,1,2,3,40.0,9,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07394887129335842,12468.074006733455,2,1,2_1,2_0_1,2_3_1,2_1_0 -13525,2,82.0,0.0,1,111,245.0,804.0,0.0,0,77,0.0,0.0,338.632685756103,1049.0,0.0,1458.1769322813489,50,2,2,2,1,1,2,2,2,0,,2,,1,117427,2,2,0,0,1,,396.0,419.0,11,0.0,1.0,3.0,1.0,1.0,2,2,332.781873504903,245.0,19789.439426574456,0,5,2,3,75.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.053008070485884476,19789.439426574456,5,3,5,5_0,5_3,5_1_0 -13526,2,27.0,0.0,5,111,450.0,0.0,0.0,0,67,0.0,0.0,621.9784024091688,450.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,3,125152,2,1,0,0,1,,0.0,273.0,12,1.0,0.0,2.0,1.0,1.0,1,1,318.75716086647,450.0,24089.814041721733,0,1,2,3,48.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01868009438431671,24089.814041721733,6,3,6,6_0,6_3,6_0_0 -13527,2,74.0,0.0,6,111,660.0,0.0,0.0,0,78,0.0,0.0,912.2349902001142,660.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,125339,2,1,0,0,1,,0.0,302.0,11,0.0,3.0,2.0,1.0,1.0,2,2,346.686426193191,660.0,21949.773589315584,0,5,2,3,45.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030068647283052884,21949.773589315584,6,3,6,6_0,6_3,6_0_0 -13528,2,25.0,0.0,2,111,980.0,600.0,0.0,0,55,0.0,0.0,1354.530743024412,1580.0,0.0,1088.1917405084694,71,1,2,2,2,1,2,2,2,0,,2,,2,109677,2,1,0,1,1,,0.0,485.0,22,2.0,0.0,5.0,5.0,3.0,3,3,173.028516092267,980.0,61713.63975639676,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.025602119826941973,20571.213252132253,5,3,5,5_0,5_4,5_0_1 -13529,2,66.0,0.0,6,111,380.0,0.0,0.0,0,78,0.0,0.0,525.2262064788536,380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,119632,2,1,0,0,1,,0.0,303.0,11,0.0,0.0,2.0,1.0,1.0,3,2,369.897529802,380.0,15879.666698927555,0,5,2,3,40.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023929973292554283,15879.666698927555,3,2,3_0,3_0_0,3_3_0,3_0_0 -13530,2,56.0,0.0,6,111,700.0,0.0,0.0,0,47,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,13.0,2,,4,111224,2,1,0,0,1,,0.0,361.0,12,1.0,2.0,3.0,1.0,1.0,2,2,386.655464609854,700.0,35851.38365736182,0,1,2,3,70.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01952504836884476,35851.38365736182,9,5,9,9_0,9_3,9_0_0 -13531,2,41.0,0.0,2,111,0.0,0.0,0.0,68,68,0.0,0.0,0.0,675.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,90.0,2,,2,105763,2,2,0,1,1,,0.0,563.0,43,2.0,0.0,4.0,5.0,2.6,2,2,177.627459867969,0.0,10904.855918860145,4,1,2,3,68.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0618990296637093,4194.175353407748,1,1,1_0,1_0_0,1_4_0,1_0_1 -13532,1,38.0,384.0,2,111,850.0,1000.0,0.0,85,55,0.0,0.0,1174.848093439541,2402.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,125610,2,2,0,1,1,600.0,0.0,404.0,42,1.0,0.0,2.0,6.0,2.8999999999999995,1,1,289.808475711292,850.0,11574.247706422018,6,4,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.20752968667391147,3991.119898766214,1,1,1_1,1_0_1,1_4_1,1_0_1 -13533,2,49.0,0.0,6,120,450.0,1170.0,0.0,47,46,0.0,0.0,621.9784024091688,1620.0,0.0,2121.973893991515,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,124949,2,1,3,0,1,,577.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1279.23547648984,450.0,78087.7522947381,1,1,0,1,140.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020745891031482066,31235.100917895237,8,4,8,8_1,8_0,8_0_0 -13534,2,33.0,0.0,2,111,0.0,0.0,740.0,54,64,0.0,0.0,378.07586777976854,1433.0,0.0,846.0018732429473,33,0,0,0,0,0,0,0,0,2,45.0,2,,2,114910,2,2,0,1,1,,320.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,214.73666602135,0.0,47483.22492579409,1,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030179079079811152,26379.56940321894,7,4,7,7_0,7_4,7_0_1 -13535,2,45.0,0.0,5,120,1600.0,0.0,0.0,43,48,0.0,0.0,2211.478764121489,1650.0,86.01635020950958,0.0,71,2,2,2,1,2,2,2,2,2,25.0,1,,3,127521,2,1,1,0,1,,424.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1174.03894159968,1600.0,96480.79527834014,1,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.017101849080325974,53600.441821300075,10,5,10,10_1,10_0,10_0_0 -13536,2,64.0,0.0,5,120,360.0,1230.0,0.0,77,78,0.0,0.0,497.582721927335,1590.0,0.0,2230.793068042362,71,0,0,0,0,0,0,0,0,0,,1,,3,127866,2,2,2,0,1,,580.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1086.86502320756,360.0,48122.912480223466,5,5,0,1,88.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03304039423327556,32081.94165348231,8,4,8,8_1,8_0,8_0_0 -13537,1,61.0,87.0,2,111,340.0,124.0,0.0,0,56,0.0,0.0,469.9392373758164,464.0,0.0,224.89295970508365,50,2,1,2,2,1,2,2,2,0,,2,,2,131200,2,2,0,1,1,1064.0,0.0,382.0,32,1.0,0.0,3.0,2.0,1.5,3,3,209.663361429173,340.0,16792.1679925628,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027631929373592747,11194.778661708535,2,1,2_1,2_0_1,2_4_1,2_0_1 -13538,2,64.0,0.0,5,120,530.0,800.0,0.0,75,78,0.0,0.0,732.5523406152432,1330.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,0,,1,,3,118218,2,2,1,0,1,,286.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1201.87380364355,530.0,33248.83732847824,5,5,0,1,110.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0400013987514935,22165.89155231883,6,3,6,6_1,6_0,6_0_0 -13539,2,34.0,0.0,1,120,1200.0,0.0,0.0,52,62,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,35.0,1,,1,102641,2,1,1,0,1,,690.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1450.74654960034,1200.0,48545.48093802189,1,1,1,2,134.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024719087684640356,32363.653958681258,8,4,8,8_1,8_0,8_1_0 -13540,1,29.0,200.0,2,111,0.0,0.0,0.0,37,48,0.0,0.0,0.0,385.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,2,,2,123619,2,1,0,1,1,1048.0,0.0,900.0,43,2.0,0.0,3.0,3.0,1.8,1,1,226.793897840872,0.0,40586.974509356005,4,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009485801902067147,22548.31917186445,6,3,6,6_0,6_4,6_0_1 -13541,2,67.0,0.0,1,120,590.0,0.0,0.0,74,74,4480.754631054002,0.0,815.482794269799,3590.0,0.0,0.0,70,2,2,2,2,2,2,2,1,0,,1,,1,108955,2,2,4,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1333.42694295121,590.0,53098.92956240829,5,5,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06760964918851325,35399.286374938856,9,5,9,9_1,9_0,9_1_0 -13542,1,39.0,426.0,2,111,420.0,240.0,0.0,85,54,0.0,0.0,580.5131755818909,660.0,0.0,435.27669620338776,71,2,2,2,1,2,2,2,2,0,,2,,2,108602,2,2,0,1,1,720.0,0.0,399.0,42,1.0,0.0,4.0,4.0,2.1,2,1,210.240002294762,420.0,11647.55233513966,6,4,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05666426567656081,5546.453492923648,1,1,1_1,1_0_1,1_4_1,1_0_1 -13543,2,37.0,0.0,1,120,1700.0,0.0,0.0,56,47,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,126555,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1066.32761945905,1700.0,42219.09795622968,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04026613741872131,20104.33236010937,5,3,5,5_1,5_0,5_1_0 -13544,2,80.0,0.0,2,111,350.0,900.0,0.0,0,75,0.0,0.0,483.76097965157567,1250.0,0.0,1632.287610762704,50,2,2,2,2,1,2,2,2,0,,2,,2,111265,2,2,0,0,2,,280.0,400.0,11,0.0,1.0,5.0,1.0,1.0,2,2,242.924355401916,350.0,24656.28787545856,0,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.0506970070399031,24656.28787545856,7,4,7,7_0,7_4,7_0_1 -13545,2,65.0,0.0,2,111,357.0,0.0,0.0,0,75,0.0,0.0,493.4361992446072,357.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112723,2,1,0,1,1,564.0,0.0,338.0,11,0.0,2.0,3.0,1.0,1.0,2,2,236.123016034446,357.0,22864.97144639143,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015613402397506254,22864.97144639143,6,3,6,6_0,6_4,6_0_1 -13546,2,78.0,0.0,2,120,380.0,0.0,0.0,77,78,1866.981096272501,0.0,525.2262064788536,1740.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113639,1,3,4,0,2,,190.0,,41,0.0,3.0,3.0,2.0,1.5,3,3,1218.99121530812,380.0,26650.372450254436,5,5,0,1,59.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06528989428751447,17766.91496683629,4,2,4_0,4_1_0,4_0_0,4_0_1 -13547,1,65.0,340.0,2,111,370.0,110.0,0.0,74,75,0.0,0.0,511.40446420309434,480.0,0.0,199.50181909321938,43,2,1,2,1,2,2,2,2,0,,2,,2,108531,2,1,0,1,1,564.0,0.0,333.0,41,0.0,2.0,3.0,2.0,1.5,2,2,209.663361429173,370.0,4670.1531626510705,6,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.10278035500821177,3113.4354417673803,1,1,1_1,1_0_1,1_4_1,1_0_1 -13548,2,75.0,0.0,2,120,300.0,950.0,0.0,78,78,0.0,0.0,414.65226827277917,1250.0,0.0,1722.9702558050765,50,0,0,0,0,0,0,0,0,0,,1,,2,110631,1,2,2,0,2,,350.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,986.443379324209,300.0,24103.828651216325,5,5,0,1,80.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05185898132979479,16069.219100810884,4,2,4_0,4_1_0,4_0_0,4_0_1 -13549,2,72.0,0.0,2,111,672.0,206.0,0.0,86,78,0.0,0.0,928.8210809310253,878.0,0.0,373.6124975745745,12,2,1,2,2,1,2,2,2,0,,2,,2,118521,2,1,0,1,1,889.0,0.0,736.0,41,1.0,5.0,4.0,3.0,2.0,2,2,212.571493015775,672.0,35361.8447581448,6,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024829021393115318,17680.9223790724,4,2,4_0,4_0_0,4_4_0,4_0_1 -13550,2,33.0,0.0,1,120,1000.0,0.0,0.0,85,47,2389.735803228801,0.0,1382.1742275759307,2660.0,103.2196202514115,0.0,60,1,2,2,1,1,2,2,2,2,30.0,1,,1,113276,2,3,2,0,1,,800.0,,42,1.0,0.0,6.0,2.0,1.5,1,1,1083.46481597675,1000.0,47089.2532871275,6,1,1,2,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0564884727260508,31392.83552475167,8,4,8,8_1,8_0,8_1_0 -13551,2,48.0,0.0,2,111,365.0,484.0,0.0,0,52,0.0,0.0,504.49359306521467,849.0,0.0,877.8080040101653,43,2,1,2,2,1,2,2,2,3,45.0,2,,2,103187,2,1,0,1,1,,0.0,,32,2.0,3.0,6.0,3.0,1.8,2,2,208.999354727231,365.0,24207.00176680511,0,1,0,1,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03507249713032316,13448.334314891728,3,2,3_0,3_0_0,3_4_0,3_0_1 -13552,1,47.0,400.0,1,120,1280.0,0.0,0.0,0,22,0.0,0.0,1769.1830112971911,1358.0,134.18550632683494,0.0,10,0,0,0,0,0,0,0,0,1,2.0,1,,1,105493,2,1,1,0,1,,120.0,650.0,32,1.0,0.0,4.0,3.0,2.0,2,2,1584.56667603506,1280.0,9795.445360115205,0,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.13863586085931967,4897.722680057603,1,1,1_1,1_1_1,1_0_1,1_1_0 -13553,0,34.0,0.0,6,111,844.0,0.0,0.0,56,55,0.0,0.0,1166.5550480740853,844.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,107785,2,1,0,0,1,,89.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,483.223723098726,844.0,7786.995491116123,1,4,5,0,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10838583391538963,3708.0930910076777,1,1,1_0,1_0_0,1_4_0,1_0_0 -13554,2,35.0,0.0,1,120,450.0,0.0,0.0,0,62,0.0,0.0,621.9784024091688,500.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,110949,2,3,3,0,1,,300.0,500.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1285.22406308226,450.0,24932.893999833665,0,1,2,3,50.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02005382929086915,24932.893999833665,7,4,7,7_1,7_0,7_1_0 -13555,2,35.0,0.0,2,111,180.0,200.0,0.0,0,67,0.0,0.0,248.7913609636675,380.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,3,40.0,2,,2,107727,2,1,0,1,1,229.0,100.0,340.0,12,1.0,0.0,1.0,1.0,1.0,1,1,320.378798319209,180.0,22809.801091695776,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01665950520446863,22809.801091695776,6,3,6,6_0,6_4,6_0_1 -13556,0,52.0,0.0,1,120,630.0,0.0,0.0,0,68,1493.5848770180007,0.0,870.7697633728362,1760.0,223.64251054472493,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,126633,2,1,2,0,1,,380.0,,22,1.0,0.0,4.0,3.0,2.0,1,1,1369.72229854425,630.0,45061.52324004859,0,1,5,0,50.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0390577120667726,22530.761620024296,6,3,6,6_1,6_0,6_1_0 -13557,1,33.0,490.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,398.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,104164,2,1,0,1,1,,440.0,1150.0,32,1.0,0.0,4.0,3.0,1.6,2,2,212.571493015775,0.0,10678.333992653977,0,4,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03727173173959524,6673.958745408736,1,1,1_1,1_0_1,1_4_1,1_0_1 -13558,2,84.0,0.0,1,120,1386.0,0.0,0.0,78,74,0.0,0.0,1915.6934794202398,1506.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,125994,2,1,2,0,1,,286.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1185.80513178769,1386.0,40381.10688277139,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037294668627385626,26920.737921847594,7,4,7,7_1,7_0,7_1_0 -13559,1,39.0,442.0,2,111,0.0,0.0,996.0,85,47,0.0,0.0,508.86968149817494,996.0,0.0,1138.672791554021,50,2,1,2,2,1,2,2,2,2,12.0,2,,2,100567,2,1,0,1,1,948.0,0.0,408.0,42,1.0,3.0,4.0,4.0,2.1,1,1,199.06283893394,0.0,9891.120526256771,6,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.100696376851949,4710.057393455605,1,1,1_1,1_0_1,1_4_1,1_0_1 -13560,2,33.0,0.0,9,120,1700.0,0.0,0.0,54,46,0.0,465.827627168756,2349.696186879082,2150.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,103040,2,1,1,0,1,,500.0,,43,2.0,0.0,8.0,4.0,2.1,3,2,1154.90568999803,1700.0,32946.30284761744,4,1,1,2,165.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06525770159838984,15688.715641722589,3,2,3_0,3_1_0,3_0_0,3_0_0 -13561,1,49.0,189.0,9,120,553.0,540.0,0.0,75,67,0.0,0.0,764.3423478494896,1093.0,0.0,979.3725664576224,70,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,115482,2,1,1,0,1,,400.0,457.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1069.80152428575,553.0,67970.70124108963,7,1,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01608045790381312,32367.00059099506,8,4,8,8_1,8_0,8_0_0 -13562,2,32.0,0.0,2,111,180.0,510.0,0.0,52,65,0.0,0.0,248.7913609636675,690.0,0.0,924.962979432199,70,2,1,2,2,1,2,2,2,2,40.0,2,,2,128931,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,214.73666602135,180.0,58467.813272257044,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011801364911442734,32482.118484587245,8,4,8,8_0,8_4,8_0_1 -13563,2,61.0,0.0,2,111,336.0,690.0,0.0,77,78,0.0,0.0,464.41054046551267,1026.0,0.0,1251.4205015847397,44,2,1,2,2,1,2,2,2,0,,2,,2,118812,2,2,0,1,1,984.0,0.0,573.0,41,1.0,3.0,4.0,3.0,2.0,1,1,218.221453882199,336.0,36475.56061225857,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028128423053083544,18237.780306129283,4,2,4_0,4_0_0,4_4_0,4_0_1 -13564,2,36.0,0.0,1,120,1500.0,0.0,0.0,64,64,0.0,879.8966290965391,2073.261341363896,2450.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,124010,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,997.009772644702,1500.0,27779.4690856619,1,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08819463008616472,13228.318612219953,2,1,2_0,2_1_0,2_0_0,2_1_0 -13565,2,31.0,0.0,5,111,640.0,0.0,0.0,0,67,0.0,0.0,884.5915056485956,824.0,316.54016877099525,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,3,120028,2,2,0,0,1,,0.0,650.0,22,3.0,0.0,3.0,3.0,2.0,2,2,386.434721322685,640.0,52047.40149141055,0,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015831722168415763,26023.700745705275,7,4,7,7_0,7_4,7_0_0 -13566,2,62.0,0.0,2,120,29.0,101.0,0.0,0,77,0.0,0.0,40.083052599701986,130.0,0.0,183.17894298559233,41,0,0,0,0,0,0,0,0,0,,1,,2,100157,2,1,2,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1364.26445522015,29.0,10672.696495436989,0,5,0,1,85.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012180614341987545,10672.696495436989,2,1,2_0,2_1_0,2_0_0,2_0_1 -13567,2,33.0,0.0,5,111,400.0,400.0,0.0,46,47,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,50,2,1,2,2,1,2,2,2,3,15.0,2,,3,127439,2,2,0,1,1,,480.0,440.0,43,2.0,0.0,2.0,2.0,1.5,2,2,322.158022056581,400.0,36179.780818507556,1,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.022111797857845637,24119.853879005037,6,3,6,6_0,6_4,6_0_0 -13568,2,54.0,0.0,6,120,700.0,0.0,0.0,86,54,0.0,414.0690019277831,967.5219593031513,1160.0,103.2196202514115,0.0,50,2,2,2,2,1,2,2,2,2,10.0,1,,4,105999,2,2,2,0,1,,400.0,,42,1.0,0.0,4.0,4.0,2.5,5,5,1218.47029698815,700.0,38617.457353525155,5,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.030038228290918553,15446.982941410062,3,2,3_0,3_1_0,3_0_0,3_0_0 -13569,2,85.0,0.0,5,120,1900.0,0.0,0.0,0,78,0.0,0.0,2626.131032394268,1950.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,113420,2,1,2,0,1,,350.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1346.57909652988,1900.0,25157.288507811965,0,5,0,1,105.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07751232806327583,25157.288507811965,7,4,7,7_1,7_0,7_0_0 -13570,1,45.0,80.0,9,120,490.0,0.0,0.0,85,64,2240.377315527001,0.0,677.265371512206,2050.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,130291,2,1,1,0,1,,450.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1010.66876227435,490.0,32858.15038982089,6,1,1,2,125.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0623893912371607,15646.73828086709,3,2,3_1,3_1_1,3_0_1,3_0_0 -13571,2,63.0,0.0,5,111,350.0,1200.0,0.0,0,75,0.0,0.0,483.76097965157567,1550.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,2,,3,108430,2,1,0,0,1,,180.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,362.844193495307,350.0,16009.959791944999,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09681473408695522,16009.959791944999,4,2,4_0,4_0_0,4_4_0,4_0_0 -13572,2,43.0,0.0,9,120,1321.0,0.0,0.0,56,64,0.0,0.0,1825.8521546278043,1321.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,122211,2,1,1,0,1,,800.0,,43,3.0,0.0,6.0,5.0,2.8,2,2,1080.90814745686,1321.0,64268.392021162814,1,1,1,2,104.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02055442743246183,22952.997150415293,6,3,6,6_1,6_0,6_0_0 -13573,2,49.0,0.0,2,111,480.0,81.0,0.0,0,52,0.0,0.0,663.4436292364467,561.0,0.0,146.90588496864336,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,128605,2,1,0,1,1,729.0,0.0,406.0,12,1.0,0.0,4.0,1.0,1.0,1,1,249.381068303773,480.0,28188.712030504983,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019901583278899106,28188.712030504983,8,4,8,8_0,8_4,8_0_1 -13574,2,81.0,0.0,1,120,600.0,0.0,0.0,0,78,2688.452778632401,0.0,829.3045365455583,2460.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,123751,2,3,4,0,1,,260.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1338.85605105383,600.0,16915.320562289264,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.145430291488787,16915.320562289264,4,2,4_0,4_1_0,4_0_0,4_1_0 -13575,2,71.0,0.0,2,111,300.0,1400.0,0.0,77,78,0.0,0.0,414.65226827277917,1700.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,2,,2,107023,2,1,0,0,1,,380.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,217.899615858167,300.0,22817.565549726143,5,5,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07450400421969658,15211.710366484096,3,2,3_0,3_0_0,3_4_0,3_0_1 -13576,2,66.0,0.0,1,120,1851.0,1433.0,0.0,0,75,0.0,0.0,2558.4044952430477,3284.0,0.0,2598.964606914394,50,0,0,0,0,0,0,0,0,0,,1,,1,128118,1,2,3,0,1,,415.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1298.4992856376,1851.0,52545.52200843049,0,5,0,1,150.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06249818965492644,52545.52200843049,10,5,10,10_1,10_0,10_1_0 -13577,2,58.0,0.0,5,120,800.0,0.0,0.0,0,72,4480.754631054002,0.0,1105.7393820607444,3860.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,114727,2,1,2,0,1,,400.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1297.339486585,800.0,20782.981024935612,0,6,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18572889016107633,20782.981024935612,5,3,5,5_1,5_0,5_0_0 -13578,1,26.0,365.0,1,120,280.0,1010.0,0.0,0,56,0.0,0.0,387.00878372126056,1290.0,0.0,1831.7894298559233,50,1,2,2,1,1,2,2,2,0,,1,,1,113525,2,1,1,0,1,,260.0,507.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1223.31812177154,280.0,14588.0,0,4,3,4,75.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08842884562654237,11221.538461538461,2,1,2_1,2_1_1,2_0_1,2_1_0 -13579,2,70.0,0.0,6,120,2500.0,0.0,0.0,75,74,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129299,2,1,2,0,1,,400.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1210.87152533761,2500.0,83336.58485615648,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02999882949745466,55557.723237437654,10,5,10,10_1,10_0,10_0_0 -13580,2,43.0,0.0,2,112,550.0,700.0,0.0,84,65,0.0,0.0,760.1958251667618,1250.0,0.0,1269.5570305932142,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,119704,1,1,0,1,1,848.0,0.0,326.0,42,1.0,0.0,4.0,5.0,2.8,2,2,204.775871822057,550.0,41715.62867670299,3,1,2,3,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0299647887291242,14898.43881310821,3,2,3_0,3_0_0,3_2_0,3_0_1 -13581,2,32.0,0.0,1,120,1300.0,0.0,0.0,52,21,0.0,0.0,1796.8264958487098,1365.0,111.82125527236246,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122838,2,1,4,0,1,,600.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1256.31394392708,1300.0,43941.76223649955,1,1,1,2,85.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03106384292585753,29294.508157666365,8,4,8,8_1,8_0,8_1_0 -13582,2,25.0,0.0,1,120,1500.0,0.0,0.0,52,47,0.0,372.6621017350048,2073.261341363896,1920.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,125517,2,2,2,0,1,,238.0,655.0,43,2.0,0.0,6.0,2.0,1.5,2,2,1425.9745697321,1500.0,39268.78929395854,4,1,2,3,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04889379159686468,26179.19286263903,7,4,7,7_1,7_0,7_1_0 -13583,2,55.0,0.0,2,112,360.0,270.0,0.0,0,52,0.0,0.0,497.582721927335,630.0,0.0,489.6862832288112,31,0,0,0,0,0,0,0,0,1,5.0,2,,2,119504,2,2,0,1,1,837.0,420.0,355.0,32,3.0,0.0,4.0,3.0,2.0,2,2,265.699833557909,360.0,30342.922097521092,0,1,2,3,73.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020762667417963305,15171.461048760546,3,2,3_0,3_0_0,3_2_0,3_0_1 -13584,2,57.0,0.0,2,120,1375.0,0.0,0.0,55,62,0.0,0.0,1900.4895629169046,1435.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,109764,2,1,2,0,1,,407.0,,43,2.0,7.0,3.0,2.0,1.5,2,2,1068.74047402793,1375.0,60682.35726841143,1,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023647729992634908,40454.90484560762,9,5,9,9_1,9_0,9_0_1 -13585,2,55.0,0.0,5,112,900.0,0.0,0.0,85,52,0.0,186.3310508675024,1243.9568048183376,1170.0,154.82943037711726,0.0,50,2,2,2,1,1,2,2,2,0,,1,,3,125161,1,3,3,0,1,,450.0,486.0,42,1.0,2.0,5.0,2.0,1.5,2,2,400.288464400834,900.0,24083.64553314121,7,1,2,3,86.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04858068511222594,16055.763688760808,4,2,4_0,4_1_0,4_2_0,4_0_0 -13586,2,25.0,0.0,1,120,430.0,0.0,0.0,55,62,1493.5848770180007,155.27587572291867,594.3349178576501,1580.0,0.0,0.0,71,2,2,2,2,2,2,2,1,2,35.0,1,,1,106829,2,1,2,0,1,,460.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1376.03933964815,430.0,42722.21127751982,1,1,1,2,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.036983104402917154,23734.561820844345,6,3,6,6_1,6_0,6_1_0 -13587,2,61.0,0.0,2,111,1993.0,0.0,0.0,77,72,0.0,46.5827627168756,2754.6732355588297,2038.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,119803,2,1,2,0,1,,462.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1554.59459035292,1993.0,38714.35145654163,5,5,0,1,128.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0526419770272462,25809.56763769442,7,4,7,7_1,7_3,7_0_1 -13588,2,80.0,0.0,2,111,1525.0,0.0,0.0,0,77,0.0,0.0,2107.815697053294,1688.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106159,2,1,2,0,1,,333.0,,11,0.0,2.0,7.0,1.0,1.0,3,3,1725.91377132924,1525.0,32105.51456909212,0,5,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05257663746106198,32105.51456909212,8,4,8,8_1,8_3,8_0_1 -13589,0,39.0,0.0,2,111,0.0,0.0,0.0,54,53,0.0,0.0,0.0,2113.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,2,126389,2,1,2,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,4,2,1588.41765966544,0.0,57200.93921356033,1,1,5,0,100.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03693995289327491,22000.361235984743,6,3,6,6_1,6_3,6_0_1 -13590,2,60.0,0.0,2,111,400.0,126.0,0.0,56,78,0.0,0.0,552.8696910303722,526.0,0.0,228.52026550677857,50,2,1,2,2,1,2,2,2,0,,2,,2,132904,1,3,0,1,1,580.0,284.0,340.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1971.50058856151,400.0,38815.0,1,5,2,3,71.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013551462063635193,25876.666666666668,7,4,7,7_0,7_3,7_0_1 -13591,2,67.0,0.0,2,111,377.0,1334.0,0.0,72,72,0.0,0.0,521.0796837961258,1711.0,0.0,2419.412969730497,70,0,0,0,0,0,0,0,0,0,,1,,2,121644,1,3,3,0,1,,296.0,628.0,41,0.0,2.0,6.0,2.0,1.5,2,2,1745.53045393174,377.0,40111.687268700865,5,5,2,3,72.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04265589698429596,26741.124845800576,7,4,7,7_1,7_3,7_0_1 -13592,2,66.0,0.0,1,111,0.0,0.0,1481.0,78,78,0.0,0.0,756.6626488943746,1481.0,0.0,1693.1469922605472,71,0,0,0,0,0,0,0,0,0,,1,,1,123756,2,1,2,0,1,,220.0,,41,0.0,0.0,2.0,2.0,1.5,3,3,1546.78669210697,0.0,23887.98782913633,5,5,0,1,43.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06199768731435868,15925.325219424221,3,2,3_0,3_1_0,3_3_0,3_1_0 -13593,2,47.0,0.0,1,111,1080.0,770.0,0.0,0,46,0.0,0.0,1492.748165782005,1850.0,0.0,1396.5127336525356,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,114683,2,1,1,0,1,,549.0,,32,1.0,1.0,5.0,2.0,1.5,1,1,1439.86668255117,1080.0,34906.47948766756,0,1,0,1,95.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05299875630980214,23270.986325111706,6,3,6,6_1,6_3,6_1_0 -13594,2,30.0,0.0,2,111,320.0,50.0,0.0,52,62,0.0,0.0,442.2957528242978,370.0,0.0,90.68264504237244,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,131119,2,1,0,1,1,439.0,162.0,330.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2232.37555072386,320.0,33117.05217235922,1,1,2,3,59.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011172491986132039,18398.362317977342,4,2,4_0,4_0_0,4_3_0,4_0_1 -13595,2,53.0,0.0,2,111,540.0,540.0,0.0,54,22,0.0,0.0,746.3740828910024,1080.0,0.0,979.3725664576224,43,0,0,0,0,0,0,0,0,0,,2,,2,110328,1,1,0,0,1,,360.0,298.0,43,4.0,2.0,4.0,4.0,2.5,1,1,1621.53912486585,540.0,96695.8506235028,4,1,2,3,76.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011169041825849518,38678.340249401124,9,5,9,9_0,9_3,9_0_1 -13596,2,66.0,0.0,2,111,410.0,1240.0,0.0,0,75,0.0,0.0,566.6914333061316,1650.0,0.0,2248.9295970508365,71,0,0,0,0,0,0,0,0,0,,2,,2,101477,2,2,0,0,1,,133.0,380.0,11,0.0,1.0,5.0,1.0,1.0,1,1,1773.30034590263,410.0,28328.070876819886,0,5,2,3,118.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05824611238706521,28328.070876819886,8,4,8,8_0,8_3,8_0_1 -13597,2,67.0,0.0,2,111,266.0,655.0,0.0,77,75,0.0,0.0,367.65834453519756,921.0,0.0,1187.942650055079,42,0,0,0,0,0,0,0,0,0,,2,,2,113627,1,1,0,0,1,,264.0,314.0,41,0.0,2.0,5.0,2.0,1.5,2,2,2085.94224708664,266.0,28958.22596625118,6,5,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03180443446616385,19305.483977500786,5,3,5,5_0,5_3,5_0_1 -13598,2,70.0,0.0,5,111,1896.0,0.0,0.0,75,47,0.0,517.5862524097289,2620.6023354839645,2396.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,129536,2,1,2,0,1,,311.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1597.52897662599,1896.0,55853.44619608004,5,5,0,1,161.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04289797968040437,37235.63079738669,9,5,9,9_1,9_3,9_0_0 -13599,2,34.0,0.0,2,111,1800.0,0.0,0.0,46,46,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,106946,2,1,1,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1589.89221202889,1800.0,57145.3689362959,1,1,1,2,68.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03149861543472737,31747.427186831053,8,4,8,8_1,8_3,8_0_1 -13600,2,35.0,0.0,1,111,439.0,803.0,0.0,54,37,0.0,0.0,606.7744859058336,1242.0,0.0,1456.3632793805016,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,101892,2,1,1,0,1,,330.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1822.50106444024,439.0,73682.25186983217,1,1,1,2,88.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01685616235228709,40934.58437212898,9,5,9,9_1,9_3,9_1_0 -13601,2,86.0,0.0,1,111,214.0,1052.0,0.0,0,78,0.0,0.0,295.7852847012491,1266.0,0.0,1907.9628516915163,50,0,0,0,0,0,0,0,0,0,,1,,1,131017,2,3,4,0,1,,129.0,352.0,11,0.0,2.0,3.0,1.0,1.0,2,2,2201.0488099347,214.0,19840.685287211625,0,5,2,3,56.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06380827988920343,19840.685287211625,5,3,5,5_1,5_3,5_1_0 -13602,2,75.0,0.0,1,111,804.0,1378.0,0.0,77,77,0.0,0.0,1111.2680789710482,2182.0,0.0,2499.213697367785,31,0,0,0,0,0,0,0,0,0,,1,,1,123573,2,1,2,0,1,,357.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1583.44976747591,804.0,50428.417652600314,5,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04326925375750881,33618.945101733545,9,5,9,9_1,9_3,9_1_0 -13603,1,41.0,605.0,6,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,691.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,109587,1,1,0,0,2,,261.0,700.0,31,1.0,0.0,4.0,6.0,3.0999999999999996,3,3,2567.24311713109,0.0,32548.947847644944,0,6,2,3,97.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021229564876702973,10499.660596014499,2,1,2_1,2_0_1,2_3_1,2_0_0 -13604,2,56.0,0.0,1,111,527.0,2064.0,0.0,0,78,0.0,0.0,728.4058179325154,2591.0,0.0,3743.3795873491345,10,0,0,0,0,0,0,0,0,0,,1,,1,100763,1,1,2,0,2,,216.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1791.58779973856,527.0,37036.16059359489,0,5,1,2,190.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06995865549973052,37036.16059359489,9,5,9,9_1,9_3,9_1_0 -13605,2,34.0,0.0,1,111,516.0,641.0,0.0,52,62,0.0,0.0,713.2019014291802,1157.0,0.0,1162.5515094432149,50,0,0,0,0,0,0,0,0,1,15.0,1,,1,133371,2,1,4,0,1,,225.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1495.14414899433,516.0,43898.29811592915,1,1,1,2,80.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026356374840421554,20903.951483775785,5,3,5,5_1,5_3,5_1_0 -13606,2,88.0,0.0,8,111,204.0,312.0,0.0,77,75,0.0,0.0,281.96354242548983,516.0,0.0,565.859705064404,12,0,0,0,0,0,0,0,0,0,,2,2001.0,6,105364,2,1,0,0,1,,103.0,,41,0.0,7.0,3.0,2.0,1.5,2,2,1984.91105196683,204.0,35626.07753900633,5,5,0,1,74.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014483772439866309,23750.718359337552,6,3,6,6_0,6_3,6_0_0 -13607,1,21.0,377.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,439.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128642,2,2,0,0,1,,341.0,550.0,31,0.0,0.0,3.0,2.0,1.3,3,3,2513.26648491792,0.0,6422.7254128420445,0,6,2,3,65.0,8,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0683510459784304,4940.558009878496,1,1,1_1,1_0_1,1_3_1,1_1_0 -13608,1,37.0,270.0,2,111,216.0,95.0,0.0,0,56,0.0,0.0,298.549633156401,311.0,0.0,172.29702558050764,70,0,0,0,0,0,0,0,0,0,,2,,2,112610,2,1,0,1,1,946.0,192.0,264.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2015.42607492616,216.0,7369.512489788544,0,4,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04220089190851261,7369.512489788544,1,1,1_1,1_0_1,1_3_1,1_0_1 -13609,1,58.0,235.0,5,111,440.0,160.0,0.0,56,68,0.0,0.0,608.1566601334094,600.0,0.0,290.18446413559184,70,0,0,0,0,0,0,0,0,0,,2,,3,131359,2,1,0,1,1,835.0,476.0,477.0,43,2.0,0.0,5.0,6.0,3.3,1,1,1679.5126956166,440.0,25903.712808110628,1,1,2,3,99.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02316270275402899,7849.609941851706,1,1,1_1,1_0_1,1_3_1,1_0_0 -13610,2,49.0,0.0,5,111,410.0,572.0,0.0,54,46,0.0,0.0,566.6914333061316,982.0,0.0,1037.4094592847407,20,0,0,0,0,0,0,0,0,2,10.0,2,,3,119022,2,1,0,0,1,,505.0,300.0,43,3.0,0.0,3.0,4.0,2.5,2,2,1962.66411968677,410.0,63641.28698413789,1,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015430234782096031,25456.51479365516,7,4,7,7_0,7_3,7_0_0 -13613,1,61.0,270.0,2,111,240.0,358.0,0.0,0,86,0.0,0.0,331.72181461822333,598.0,0.0,649.2877385033867,70,0,0,0,0,0,0,0,0,0,,2,,2,133279,2,1,0,0,1,,212.0,316.0,11,0.0,2.0,4.0,1.0,1.0,2,2,2287.26796804246,240.0,9157.679755692832,0,6,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06530038349815147,9157.679755692832,1,1,1_1,1_0_1,1_3_1,1_0_1 -13614,2,58.0,0.0,1,111,1355.0,0.0,0.0,77,64,0.0,0.0,1872.846078365386,1623.0,461.04763712297137,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,127589,2,1,2,0,1,,392.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,1797.89216430984,1355.0,31731.482160981297,6,1,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05114794171183489,21154.3214406542,5,3,5,5_1,5_3,5_1_0 -13615,2,48.0,0.0,5,111,424.0,0.0,0.0,0,63,0.0,0.0,586.0418724921946,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,129651,2,1,0,0,1,,300.0,307.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2257.85244636805,424.0,20373.281575541663,0,1,2,3,65.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07117164677784359,20373.281575541663,5,3,5,5_0,5_3,5_0_0 -13616,2,44.0,0.0,5,111,1576.0,0.0,0.0,52,64,0.0,0.0,2178.3065826596667,1576.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,107814,1,2,0,0,1,,553.0,485.0,43,2.0,0.0,4.0,4.0,2.5,2,2,2042.17538171815,1576.0,51179.60697092147,1,1,2,3,87.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03079351509861008,20471.842788368587,5,3,5,5_0,5_3,5_0_0 -13617,2,52.0,0.0,6,111,530.0,912.0,0.0,85,47,0.0,144.92415067472407,732.5523406152432,1582.0,0.0,1654.0514455728735,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,124765,2,1,3,0,1,,310.0,,42,1.0,0.0,4.0,4.0,2.5,2,2,1489.19229979975,530.0,45011.470317578714,6,1,0,1,94.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035146596830500955,18004.588127031486,4,2,4_0,4_1_0,4_3_0,4_0_0 -13618,1,21.0,113.0,2,111,0.0,0.0,700.0,67,56,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,106066,2,2,0,1,1,239.0,224.0,304.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2115.13737472668,0.0,30275.191999004735,1,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023121240652181883,20183.461332669824,5,3,5,5_0,5_3,5_0_1 -13619,2,59.0,0.0,2,111,298.0,396.0,0.0,0,75,0.0,0.0,411.88791981762733,694.0,0.0,718.2065487355898,41,0,0,0,0,0,0,0,0,0,,2,,2,103257,2,2,0,1,1,625.0,473.0,319.0,11,0.0,2.0,3.0,1.0,1.0,4,4,2029.80596208132,298.0,65860.28935797999,0,5,2,3,67.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010537457499280046,65860.28935797999,10,5,10,10_0,10_3,10_0_1 -13620,2,67.0,0.0,2,111,372.0,173.0,0.0,77,78,0.0,0.0,514.1688126582462,545.0,0.0,313.76195184660867,50,0,0,0,0,0,0,0,0,0,,2,,2,107790,2,3,0,1,1,625.0,308.0,349.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1907.41626446434,372.0,22190.55207747156,5,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02456000184661014,14793.70138498104,3,2,3_0,3_0_0,3_3_0,3_0_1 -13621,1,55.0,149.0,2,111,410.0,220.0,0.0,0,56,0.0,0.0,566.6914333061316,630.0,0.0,399.00363818643876,70,1,2,2,2,2,2,2,1,2,7.0,2,,2,122233,2,1,0,1,1,625.0,146.0,319.0,32,1.0,2.0,3.0,2.0,1.3,1,1,1896.67818559253,410.0,17811.814268960396,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03536978268956375,13701.395591507997,3,2,3_1,3_0_1,3_3_1,3_0_1 -13622,2,49.0,0.0,2,111,319.0,308.0,0.0,52,64,0.0,0.0,440.91357859672183,627.0,0.0,558.6050934610142,33,0,0,0,0,0,0,0,0,2,25.0,2,,2,109823,2,2,0,1,1,1243.0,560.0,358.0,43,2.0,2.0,4.0,3.0,1.8,2,2,1919.35218184323,319.0,33701.420142238254,1,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018604557236867773,18723.01119013236,5,3,5,5_0,5_3,5_0_1 -13623,2,35.0,0.0,2,111,663.0,1403.0,0.0,46,38,0.0,0.0,916.381512882842,2066.0,0.0,2544.555019888971,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,105766,2,1,3,0,1,,715.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1576.8450320831,663.0,80785.07340950222,1,1,1,2,88.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025574031350165116,38469.082575953435,9,5,9,9_1,9_3,9_0_1 -13624,2,47.0,0.0,2,111,230.0,211.0,0.0,0,67,0.0,0.0,317.900072342464,441.0,0.0,382.6807620788117,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,117542,2,1,0,1,1,625.0,212.0,316.0,32,1.0,0.0,3.0,3.0,2.0,2,2,1992.65881062112,230.0,19736.19165683507,0,1,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022344736394332293,9868.095828417536,2,1,2_0,2_0_0,2_3_0,2_0_1 -13625,1,56.0,75.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,391.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,8.0,2,,2,104815,2,2,0,1,1,436.0,189.0,313.0,22,2.0,2.0,4.0,2.0,1.5,1,1,1702.61568718459,0.0,19289.867440524056,0,1,2,3,54.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020269709017211243,12859.911627016038,2,1,2_1,2_0_1,2_3_1,2_0_1 -13626,2,67.0,0.0,2,111,432.0,601.0,0.0,0,56,0.0,0.0,597.099266312802,1033.0,0.0,1090.0053934093169,71,0,0,0,0,0,0,0,0,0,,1,,2,121013,2,1,2,0,1,,690.0,,22,2.0,1.0,5.0,5.0,2.8,3,3,1520.22642327173,432.0,47904.78311016782,0,1,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021563608744963613,17108.85111077422,4,2,4_0,4_1_0,4_3_0,4_0_1 -13627,2,73.0,0.0,7,111,639.0,825.0,0.0,0,78,0.0,0.0,883.2093314210197,1464.0,0.0,1496.2636431991452,50,0,0,0,0,0,0,0,0,0,,1,,5,110858,2,1,2,0,1,,660.0,,21,1.0,3.0,2.0,3.0,2.0,4,4,1608.43423827605,639.0,38760.687009577734,0,5,0,1,57.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03777022836665013,19380.343504788867,5,3,5,5_1,5_3,5_0_0 -13628,2,43.0,0.0,2,111,453.0,1236.0,0.0,21,65,0.0,0.0,626.1249250918966,1689.0,0.0,2241.674985447447,44,0,0,0,0,0,0,0,0,2,25.0,1,,2,105071,1,1,2,0,2,,345.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,1563.06257616669,453.0,29809.04320496493,1,1,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056660657921374806,11465.016617294206,2,1,2_0,2_1_0,2_3_0,2_0_1 -13629,2,43.0,0.0,2,111,891.0,586.0,0.0,52,38,0.0,0.0,1231.517236770154,1477.0,0.0,1062.800599896605,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,129990,2,1,1,0,1,,429.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,1496.64291612244,891.0,83449.30488690753,1,1,1,2,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017699368520824293,55632.86992460502,10,5,10,10_1,10_3,10_0_1 -13630,2,60.0,0.0,1,111,1400.0,0.0,0.0,78,78,0.0,0.0,1935.0439186063027,1470.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,104624,2,1,1,0,1,,277.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1581.02916230568,1400.0,53320.0,6,5,1,2,55.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027569392348087023,35546.666666666664,9,5,9,9_1,9_3,9_1_0 -13631,2,51.0,0.0,2,111,497.0,0.0,0.0,54,64,4241.781050731122,0.0,686.9405911052374,3457.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,103779,2,2,1,0,2,,380.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,1673.30299846741,497.0,73265.64402072798,1,1,0,1,80.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04718446205184467,36632.82201036399,9,5,9,9_1,9_3,9_0_1 -13632,2,57.0,0.0,5,111,454.0,0.0,0.0,0,43,0.0,0.0,627.5070993194724,454.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,3,112569,2,1,0,0,1,408.0,280.0,536.0,12,1.0,3.0,4.0,1.0,1.0,2,2,2367.78947416067,454.0,27776.096528202394,0,1,2,3,93.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016344989280226332,27776.096528202394,7,4,7,7_0,7_3,7_0_0 -13633,2,40.0,0.0,1,111,301.0,1399.0,0.0,85,21,0.0,0.0,416.0344425003551,1700.0,0.0,2537.300408285581,50,0,0,0,0,0,0,0,0,0,,1,,1,105068,2,1,1,0,1,,49.0,,42,2.0,1.0,4.0,3.0,2.0,6,6,1572.7126411082,301.0,40203.884049929824,6,1,0,1,72.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0422844717661792,20101.942024964912,5,3,5,5_1,5_3,5_1_0 -13634,2,54.0,0.0,2,111,550.0,1100.0,0.0,52,47,0.0,0.0,760.1958251667618,1650.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,109434,2,2,0,0,1,,680.0,371.0,43,2.0,1.0,5.0,3.0,2.0,3,3,1982.21123480116,550.0,41252.83529347458,1,1,2,3,82.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03999725081347315,20626.41764673729,5,3,5,5_0,5_3,5_0_1 -13635,2,59.0,0.0,5,111,283.0,0.0,0.0,0,54,0.0,0.0,391.15530640398833,283.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,3,106774,2,3,0,0,1,,167.0,,12,1.0,0.0,1.0,1.0,1.0,4,3,1594.35617393812,283.0,7750.592685859881,0,4,0,1,39.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,0,0,0,0.03651333665311853,7750.592685859881,1,1,1_0,1_0_0,1_3_0,1_0_0 -13636,2,42.0,0.0,7,111,233.0,0.0,0.0,0,46,0.0,0.0,322.04659502519183,233.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,5,125097,2,1,0,1,1,308.0,113.0,346.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1304.7650222874,233.0,32526.21890658224,0,1,2,3,45.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007163451757770973,32526.21890658224,8,4,8,8_0,8_3,8_0_0 -13637,2,55.0,0.0,2,111,665.0,0.0,0.0,48,38,1060.4452626827806,0.0,919.1458613379938,1375.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,7.0,2,,2,105560,2,1,0,1,1,864.0,212.0,819.0,43,2.0,3.0,4.0,2.0,1.5,3,3,1909.48279387383,665.0,48425.937196699364,4,1,2,3,93.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02839387484469207,32283.95813113291,8,4,8,8_0,8_3,8_0_1 -13638,2,84.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,339.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,107154,2,1,0,1,1,,243.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1892.72444400061,0.0,16158.87563921823,0,5,0,1,80.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020979182436260208,16158.87563921823,4,2,4_0,4_0_0,4_3_0,4_0_1 -13639,2,74.0,0.0,2,111,300.0,1000.0,0.0,0,78,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,0,,2,,2,115789,2,2,0,1,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1855.0442371451,300.0,19055.627482188404,0,5,0,1,85.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06822131683751326,19055.627482188404,5,3,5,5_0,5_3,5_0_1 -13640,2,62.0,0.0,2,111,367.2,267.2,0.0,0,43,0.0,0.0,507.5343763658817,634.0,0.0,484.6080551064383,44,0,0,0,0,0,0,0,0,0,,2,,2,111653,2,1,0,1,1,,300.0,,12,1.0,2.0,5.0,1.0,1.0,3,3,1659.62773729441,367.2,37604.45982311299,0,1,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01685970235930159,37604.45982311299,9,5,9,9_0,9_3,9_0_1 -13641,2,40.0,0.0,2,111,384.0,221.0,0.0,0,46,0.0,0.0,530.7549033891573,605.0,0.0,400.8172910872862,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,112480,2,2,0,0,1,,170.0,491.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1792.05131977891,384.0,18015.276057044564,0,1,2,3,43.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033582610562518975,18015.276057044564,4,2,4_0,4_0_0,4_3_0,4_0_1 -13643,0,78.0,0.0,2,111,270.0,1530.0,0.0,0,74,0.0,0.0,373.1870414455012,1800.0,0.0,2774.8889382965967,50,0,0,0,0,0,0,0,0,0,,1,,2,124865,2,2,1,0,2,,178.0,,11,0.0,3.0,9.0,1.0,1.0,4,4,1268.63356509287,270.0,74979.9562899722,0,5,0,1,150.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024006415701801787,74979.9562899722,10,5,10,10_1,10_3,10_0_1 -13644,2,88.0,0.0,2,111,370.0,116.0,0.0,77,78,0.0,0.0,511.40446420309434,486.0,0.0,210.38373649830407,71,2,2,1,1,2,2,2,2,0,,2,,2,130513,2,2,0,1,1,,234.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1367.43029423092,370.0,26773.55288473885,5,5,0,1,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01815224158303712,17849.035256492567,4,2,4_0,4_0_0,4_3_0,4_0_1 -13645,1,70.0,50.0,2,111,264.0,0.0,0.0,0,77,0.0,0.0,364.89399608004567,264.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102945,1,1,0,1,2,490.0,102.0,575.0,11,0.0,2.0,5.0,1.0,1.0,2,2,1852.84505803967,264.0,12458.128634455687,0,5,2,3,77.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02119098363375781,12458.128634455687,2,1,2_1,2_0_1,2_3_1,2_0_1 -13646,2,93.0,0.0,2,111,276.0,2400.0,0.0,0,75,0.0,0.0,381.48008681095683,2676.0,0.0,4352.7669620338775,33,0,0,0,0,0,0,0,0,0,,1,,2,119949,2,1,2,0,2,,394.0,,11,0.0,5.0,4.0,1.0,1.0,3,3,1227.74617691062,276.0,31635.023022442056,0,5,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08458979145049558,31635.023022442056,8,4,8,8_1,8_3,8_0_1 -13647,2,72.0,0.0,2,111,260.0,90.0,0.0,0,75,0.0,0.0,359.36529916974195,350.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,0,,2,,2,118646,2,1,0,1,1,504.0,110.0,507.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1828.45136383893,260.0,21520.898492160763,0,5,2,3,45.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016263261504973484,21520.898492160763,6,3,6,6_0,6_3,6_0_1 -13648,2,42.0,0.0,1,111,0.0,0.0,1000.0,0,55,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,41,0,0,0,0,0,0,0,0,2,20.0,2,,1,126131,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1814.1726487861,0.0,26828.689194207833,0,1,1,2,40.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03727353180623877,26828.689194207833,7,4,7,7_0,7_3,7_1_0 -13649,1,27.0,160.0,1,111,1200.0,0.0,0.0,0,67,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,107804,2,3,0,0,1,,250.0,360.0,32,1.0,0.0,3.0,2.0,1.3,2,2,2182.45675464829,1200.0,12869.735579864482,0,4,2,3,60.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09324200894053147,9899.796599895755,2,1,2_1,2_0_1,2_3_1,2_1_0 -13650,2,67.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,121213,2,2,0,1,1,,100.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,1657.48383753296,300.0,33507.105496015305,0,5,0,1,92.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008953324841373608,33507.105496015305,8,4,8,8_0,8_3,8_0_1 -13651,2,40.0,0.0,1,111,436.0,2270.0,0.0,85,68,0.0,0.0,602.6279632231058,2706.0,0.0,4116.992084923709,20,2,2,2,2,1,2,2,2,0,,1,,1,113781,2,3,1,0,1,,300.0,,42,1.0,0.0,5.0,4.0,2.1,4,4,1018.68052637315,436.0,56252.24160970633,6,1,0,1,105.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04810474965202239,26786.781718907776,7,4,7,7_1,7_3,7_1_0 -13652,2,55.0,0.0,6,111,1661.0,0.0,0.0,0,34,0.0,0.0,2295.791392003621,1754.0,159.99041138968784,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,109144,2,2,5,0,1,,450.0,,32,1.0,0.0,4.0,3.0,2.0,1,1,1260.21309162079,1661.0,42785.01095532052,0,1,0,1,95.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04099566555753988,21392.50547766026,6,3,6,6_1,6_3,6_0_0 -13653,2,63.0,0.0,1,111,542.0,1400.0,0.0,78,77,0.0,0.0,749.1384313461543,1942.0,0.0,2539.1140611864284,50,2,2,1,2,1,2,2,2,0,,1,,1,123753,1,2,3,0,2,,270.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1080.40883607514,542.0,39865.64975561569,5,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04871361715925474,26577.099837077127,7,4,7,7_1,7_3,7_1_0 -13654,2,60.0,0.0,7,111,509.0,878.0,0.0,0,38,0.0,62.110350289167464,703.5266818361487,1447.0,0.0,1592.38724694406,20,0,0,0,0,0,0,0,0,0,,1,,5,103849,2,1,2,0,1,,400.0,,32,3.0,2.0,5.0,3.0,2.0,2,2,1121.3529662591,509.0,94434.42709220145,0,1,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015322801700138609,47217.21354610073,10,5,10,10_1,10_3,10_0_0 -13655,2,28.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,674.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,129244,2,1,0,1,1,780.0,89.0,283.0,43,2.0,1.0,3.0,2.0,1.5,4,4,1240.83982446165,0.0,25111.558243733543,1,1,2,3,54.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026840230042999947,16741.038829155696,4,2,4_0,4_0_0,4_3_0,4_0_1 -13656,2,33.0,0.0,2,111,560.0,200.0,0.0,63,56,0.0,0.0,774.0175674425211,760.0,0.0,362.73058016948977,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,116506,2,1,0,1,1,981.0,300.0,256.0,43,2.0,0.0,3.0,3.0,1.8,4,3,1446.99486334778,560.0,35344.22226110238,1,1,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021502807287300474,19635.67903394577,5,3,5,5_0,5_3,5_0_1 -13657,2,43.0,0.0,1,111,1056.0,924.0,0.0,56,53,0.0,0.0,1459.5759843201827,1980.0,0.0,1675.8152803830428,10,2,2,1,2,1,2,2,1,1,25.0,1,,1,119845,2,1,1,0,1,,445.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,1017.66588914094,1056.0,50470.856176410685,1,1,1,2,97.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03923056096134589,18025.30577728953,4,2,4_0,4_1_0,4_3_0,4_1_0 -13658,1,37.0,181.0,5,111,230.0,118.0,0.0,0,68,0.0,0.0,317.900072342464,348.0,0.0,214.01104229999896,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,127085,1,1,0,1,2,35.0,150.0,262.0,32,1.0,0.0,2.0,2.0,1.3,2,2,1424.51844008057,230.0,13551.938734184998,0,1,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025678982677376193,10424.568257065383,2,1,2_1,2_0_1,2_3_1,2_0_0 -13659,2,68.0,0.0,2,111,238.0,0.0,0.0,0,77,0.0,0.0,328.95746616307144,238.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112589,2,2,0,1,1,,102.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1500.14543191641,238.0,15815.344114267311,0,5,0,1,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015048676669974942,15815.344114267311,3,2,3_0,3_0_0,3_3_0,3_0_1 -13661,1,36.0,264.0,9,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2013.0,6,109896,2,1,0,0,1,,164.0,115.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2302.02408675821,0.0,5826.765561406882,0,4,2,3,18.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0909595545615243,5826.765561406882,1,1,1_1,1_0_1,1_3_1,1_0_0 -13662,2,80.0,0.0,2,111,250.0,65.0,0.0,0,77,0.0,0.0,345.54355689398267,315.0,0.0,117.88743855508417,60,0,0,0,0,0,0,0,0,0,,2,,2,124903,2,1,0,1,1,,127.0,318.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1606.89730934532,250.0,14599.281729317137,0,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021576403951945225,14599.281729317137,3,2,3_0,3_0_0,3_3_0,3_0_1 -13663,1,28.0,420.0,5,111,900.0,0.0,0.0,0,52,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,102908,2,1,0,1,1,,600.0,525.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1509.00206759896,900.0,13297.350177268827,0,4,2,3,78.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06768265767254188,8310.843860793017,1,1,1_1,1_0_1,1_3_1,1_0_0 -13664,2,79.0,0.0,2,111,435.0,1093.0,0.0,77,78,0.0,0.0,601.2457889955298,1648.0,206.439240502823,1982.3226206262616,60,0,0,0,0,0,0,0,0,0,,1,,2,110194,2,1,1,0,1,,344.0,,41,0.0,3.0,3.0,2.0,1.5,3,2,1051.42351983304,435.0,26595.631802244094,5,5,0,1,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061965062994327684,17730.42120149606,4,2,4_0,4_1_0,4_3_0,4_0_1 -13665,1,42.0,360.0,2,111,324.0,450.0,0.0,0,68,0.0,0.0,447.8244497346015,774.0,0.0,816.143805381352,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,120447,2,3,0,1,1,1428.0,800.0,340.0,32,4.0,1.0,4.0,4.0,2.5,2,2,346.368694710339,324.0,15663.370816683455,0,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049414650847414844,6265.348326673382,1,1,1_1,1_0_1,1_3_1,1_0_1 -13667,2,80.0,0.0,2,111,440.0,801.0,0.0,77,78,0.0,0.0,608.1566601334094,1241.0,0.0,1452.7359735788066,71,0,0,0,0,0,0,0,0,0,,1,,2,107138,2,1,2,0,1,,173.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1080.40883607514,440.0,22337.321372844413,5,5,0,1,85.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055557243381414996,14891.547581896275,3,2,3_0,3_1_0,3_3_0,3_0_1 -13669,2,83.0,0.0,2,111,300.0,0.0,0.0,0,77,2091.018827825201,0.0,414.65226827277917,1740.0,68.81308016760767,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,127184,1,2,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1248.88315513251,300.0,15133.771532814586,0,5,0,1,80.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1149746443724986,15133.771532814586,3,2,3_0,3_1_0,3_3_0,3_0_1 -13670,2,76.0,0.0,1,111,350.0,1700.0,0.0,0,75,0.0,0.0,483.76097965157567,2050.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,0,,1,,1,118762,2,1,2,0,1,,160.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1135.40866314392,350.0,22677.3371414409,0,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09039862075577647,22677.3371414409,6,3,6,6_1,6_3,6_1_0 -13671,1,43.0,490.0,2,111,270.0,50.0,0.0,0,85,0.0,0.0,373.1870414455012,320.0,0.0,90.68264504237244,70,2,2,1,2,2,2,2,1,0,,2,,2,105917,2,2,0,1,1,,100.0,700.0,11,0.0,3.0,5.0,1.0,1.0,2,2,1384.36780702087,270.0,25575.637697190996,0,7,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.012511906986981835,25575.637697190996,7,4,7,7_0,7_3,7_0_1 -13672,1,42.0,166.0,5,111,326.0,786.0,0.0,0,46,0.0,0.0,450.58879818975333,1112.0,0.0,1425.5311800660947,71,2,2,2,2,1,2,2,2,0,,2,,3,102706,1,3,0,0,1,,300.0,341.0,22,1.0,1.0,3.0,2.0,1.5,1,1,1269.17043303667,326.0,26186.37795515081,0,4,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.0424648266325535,17457.585303433872,4,2,4_1,4_0_1,4_3_1,4_0_0 -13673,1,39.0,300.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,604.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,107591,2,2,0,0,1,,119.0,370.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1316.39656900829,0.0,5916.528187062814,0,4,2,3,30.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10208689638641749,5916.528187062814,1,1,1_1,1_0_1,1_3_1,1_0_1 -13674,2,83.0,0.0,2,111,1240.0,0.0,0.0,0,77,0.0,0.0,1713.8960421941538,1240.0,0.0,0.0,43,2,2,2,2,2,2,2,1,0,,1,,2,115455,2,1,1,0,1,,278.0,,11,0.0,7.0,4.0,1.0,1.0,2,2,1256.38139162647,1240.0,15301.756212106939,0,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.08103644985657898,15301.756212106939,3,2,3_0,3_1_0,3_3_0,3_0_1 -13675,2,42.0,0.0,2,111,350.0,0.0,0.0,54,47,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,104641,1,1,0,1,1,,120.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1785.46641008755,350.0,45582.41617663813,4,1,1,2,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007678399465348697,30388.277451092086,8,4,8,8_0,8_3,8_0_1 -13676,2,87.0,0.0,2,111,160.0,800.0,0.0,0,75,0.0,0.0,221.1478764121489,960.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,2,104887,2,1,0,0,1,,133.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1834.67232321615,160.0,23592.672307336532,0,5,0,1,45.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0406906003480357,23592.672307336532,6,3,6,6_0,6_3,6_0_1 -13677,1,61.0,32.0,5,111,280.0,0.0,0.0,0,75,0.0,0.0,387.00878372126056,280.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,111465,2,1,0,0,1,1014.0,100.0,364.0,11,0.0,2.0,3.0,1.0,1.0,2,2,380.835640174342,280.0,13899.06193496356,0,6,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020145244428017874,13899.06193496356,3,2,3_1,3_0_1,3_3_1,3_0_0 -13678,2,71.0,0.0,5,111,440.0,0.0,0.0,0,77,0.0,0.0,608.1566601334094,440.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,127347,1,3,0,1,1,677.0,106.0,225.0,11,0.0,2.0,2.0,1.0,1.0,3,3,449.124217363201,440.0,16417.141550641314,0,5,2,3,72.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02680125517848215,16417.141550641314,4,2,4_0,4_0_0,4_3_0,4_0_0 -13679,2,80.0,0.0,2,111,310.0,850.0,0.0,0,71,0.0,0.0,428.47401054853844,1160.0,0.0,1541.6049657203316,60,0,0,0,0,0,0,0,0,0,,2,,2,106062,2,1,0,0,1,,117.0,,11,0.0,6.0,2.0,1.0,1.0,2,2,1652.73409461104,310.0,13036.1558308763,0,5,0,1,48.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08898328733172438,13036.1558308763,2,1,2_0,2_0_0,2_3_0,2_0_1 -13680,2,54.0,0.0,2,111,421.0,1629.0,0.0,52,48,0.0,0.0,581.8953498094668,2050.0,0.0,2954.4405754804943,44,0,0,0,0,0,0,0,0,2,35.0,1,,2,130070,2,2,1,0,1,,237.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1054.51029364889,421.0,70952.63856183119,1,1,1,2,125.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028892512548543796,47301.759041220794,10,5,10,10_1,10_3,10_0_1 -13681,2,68.0,0.0,2,111,340.0,0.0,0.0,78,77,0.0,0.0,469.9392373758164,340.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116909,2,2,0,1,1,,242.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,437.807277736555,340.0,27221.182245531763,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012490273087084948,18147.45483035451,4,2,4_0,4_0_0,4_3_0,4_0_1 -13682,2,57.0,0.0,2,111,300.0,1200.0,0.0,63,48,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,41,0,0,0,0,0,0,0,0,0,,1,,2,115087,2,1,1,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,4,4,326.811057097068,300.0,46979.18278733619,1,1,0,1,77.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03192903560690168,31319.45519155746,8,4,8,8_1,8_3,8_0_1 -13683,2,77.0,0.0,5,111,835.0,0.0,0.0,86,77,0.0,0.0,1154.1154800259021,899.0,110.10092826817227,0.0,70,2,2,1,2,2,2,2,1,0,,1,,3,124999,1,2,3,0,1,,516.0,502.0,41,1.0,5.0,5.0,3.0,2.0,2,2,318.370349747567,835.0,46657.157892273994,6,5,2,3,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.019268211794547956,23328.578946136997,6,3,6,6_1,6_3,6_0_0 -13684,1,35.0,298.0,2,111,350.0,110.0,0.0,0,67,0.0,0.0,483.76097965157567,460.0,0.0,199.50181909321938,10,0,0,0,0,0,0,0,0,0,,2,,2,115637,2,3,0,1,1,44.0,500.0,350.0,32,1.0,0.0,3.0,3.0,1.6,2,2,406.739749513613,350.0,11435.6,0,4,2,3,75.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04022526146419952,7147.25,1,1,1_1,1_0_1,1_3_1,1_0_1 -13685,0,42.0,0.0,2,111,0.0,0.0,0.0,56,52,0.0,0.0,0.0,3091.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126026,1,3,4,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.8,2,2,306.507730446197,0.0,35172.68779818964,1,1,5,0,100.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08788068792852094,12561.674213639159,2,1,2_0,2_1_0,2_3_0,2_0_1 -13686,1,50.0,172.0,2,111,525.0,470.0,0.0,0,52,0.0,0.0,725.6414694773636,995.0,0.0,852.416863398301,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,102693,2,1,0,1,1,744.0,660.0,338.0,32,2.0,2.0,4.0,3.0,2.0,1,1,512.330929433256,525.0,17405.219432193517,0,1,2,3,92.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05716675988350948,8702.609716096758,1,1,1_1,1_0_1,1_3_1,1_0_1 -13687,1,29.0,181.0,2,111,0.0,0.0,640.0,0,68,0.0,0.0,326.984534296016,640.0,0.0,731.6772957776841,50,2,2,2,2,2,1,2,2,3,35.0,2,,2,116476,2,2,0,1,1,1341.0,750.0,261.0,22,1.0,1.0,3.0,2.0,1.5,2,2,355.335562473061,0.0,47666.30476664588,0,1,2,3,53.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.013426675366029945,31777.536511097253,8,4,8,8_0,8_3,8_0_1 -13688,2,83.0,0.0,2,111,279.0,189.0,0.0,0,78,0.0,0.0,385.6266094936846,468.0,0.0,342.78039826016783,71,2,1,2,1,2,2,2,2,0,,2,,2,110649,2,2,0,1,1,,160.0,394.0,11,0.0,2.0,3.0,1.0,1.0,2,2,415.871427000257,279.0,28094.414330339197,0,5,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.016658115542013848,28094.414330339197,8,4,8,8_0,8_3,8_0_1 -13689,2,61.0,0.0,6,300,1700.0,0.0,0.0,90,75,0.0,310.55175144583734,2349.696186879082,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,124630,2,2,2,0,1,,400.0,,42,1.0,0.0,5.0,2.0,1.5,1,1,904.721616635091,1700.0,55239.07756742848,1,5,0,1,103.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036206252676081845,36826.05171161899,9,5,9,9_1,9_0,9_0_0 -13690,2,56.0,0.0,2,300,150.0,0.0,0.0,38,43,0.0,155.27587572291867,207.32613413638958,330.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117868,1,3,3,0,2,,250.0,,43,2.0,2.0,2.0,2.0,1.5,1,1,777.153972365093,150.0,170602.88530158944,4,1,1,2,60.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0019343166407568696,113735.25686772629,10,5,10,10_1,10_0,10_0_1 -13691,2,75.0,0.0,5,300,1296.0,0.0,0.0,0,77,0.0,310.55175144583734,1791.297798938406,5596.0,6881.308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,120126,2,1,3,0,2,,525.0,,21,1.0,2.0,6.0,2.0,1.5,2,1,972.640748713769,1296.0,40492.59735267897,0,5,0,1,155.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13819809955040516,26995.06490178598,7,4,7,7_1,7_0,7_0_0 -13692,0,67.0,0.0,1,300,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,3600.0,5160.981012570575,0.0,43,2,2,1,2,1,2,2,2,0,,1,,1,116907,2,2,2,0,1,,220.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,977.239014748885,600.0,13366.386029972049,0,5,5,0,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.26933233799529344,13366.386029972049,3,2,3_0,3_1_0,3_0_0,3_1_0 -13693,2,54.0,0.0,1,300,389.0,0.0,0.0,90,48,3435.2452171414016,0.0,537.665774527037,2759.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,117570,2,1,3,0,1,,247.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,958.868751129499,389.0,25632.94776204337,5,1,1,2,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10763490900900045,17088.631841362247,4,2,4_0,4_1_0,4_0_0,4_1_0 -13694,2,75.0,0.0,1,300,960.0,0.0,0.0,72,72,0.0,0.0,1326.8872584728933,3660.0,4644.882911313518,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,116452,2,2,2,0,1,,500.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,910.714206475434,960.0,43997.21949874504,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08318707504014876,29331.47966583003,8,4,8,8_1,8_0,8_1_0 -13695,2,35.0,0.0,1,300,364.0,902.0,0.0,52,64,0.0,0.0,503.1114188376387,1379.0,0.0,1635.914916564399,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,114787,1,2,4,0,2,,530.0,421.0,43,2.0,0.0,4.0,3.0,1.8,1,1,982.604251674198,364.0,44196.54616739642,1,1,2,3,50.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031201533141910574,24553.636759664674,7,4,7,7_1,7_0,7_1_0 -13696,2,38.0,0.0,2,300,2120.0,0.0,0.0,52,62,0.0,0.0,2930.209362460973,2120.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,,2,106006,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,757.377661246994,2120.0,42896.922910714646,1,1,1,2,130.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049420794223691826,18650.836048136804,4,2,4_0,4_1_0,4_0_0,4_0_1 -13697,2,71.0,0.0,1,300,643.0,0.0,0.0,72,78,3733.962192545002,31.055175144583732,888.7380283313233,3273.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124347,2,1,2,0,2,,342.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,877.246504238923,643.0,46219.25342267311,5,5,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07081464449606216,30812.835615115404,8,4,8,8_1,8_0,8_1_0 -13698,2,57.0,0.0,9,300,1497.0,0.0,0.0,56,64,0.0,207.03450096389156,2069.114818681168,1697.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,131049,2,1,2,0,1,,450.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,898.902084215819,1497.0,56431.478979408916,1,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030071868231899654,37620.98598627261,9,5,9,9_1,9_0,9_0_0 -13699,2,68.0,0.0,2,300,450.0,0.0,0.0,0,74,5227.547069563002,0.0,621.9784024091688,3980.0,51.60981012570575,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,107709,2,1,1,0,1,,200.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,991.804684513439,450.0,118714.34021068562,0,5,0,1,250.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033525857052623835,118714.34021068562,10,5,10,10_1,10_0,10_0_1 -13700,2,87.0,0.0,5,300,511.0,2056.0,0.0,0,77,0.0,0.0,706.2910302913006,2567.0,0.0,3728.870364142355,71,2,2,2,2,2,2,2,1,0,,1,,3,106503,1,1,2,0,2,,142.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,848.047176076275,511.0,20601.816352136695,0,5,0,1,90.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.12460066414162392,20601.816352136695,5,3,5,5_1,5_0,5_0_0 -13701,2,45.0,0.0,6,300,1800.0,0.0,0.0,55,21,0.0,0.0,2487.913609636675,1920.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,105735,2,3,1,0,2,,630.0,374.0,43,2.0,0.0,4.0,3.0,2.0,2,2,803.378142768964,1800.0,32543.137070521592,1,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05899861454165663,16271.568535260796,4,2,4_0,4_1_0,4_0_0,4_0_0 -13702,2,58.0,0.0,5,300,1300.0,0.0,0.0,78,56,0.0,0.0,1796.8264958487098,1370.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,3,127508,2,1,1,0,1,,350.0,325.0,42,1.0,3.0,4.0,2.0,1.5,1,1,718.783477071028,1300.0,34084.97316220849,5,1,2,3,82.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04019366521077328,22723.315441472325,6,3,6,6_1,6_0,6_0_0 -13703,2,72.0,0.0,8,300,850.0,0.0,0.0,0,77,0.0,0.0,1174.848093439541,910.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,107947,2,1,0,0,1,,120.0,489.0,11,0.0,5.0,3.0,1.0,1.0,2,2,1309.38887773582,850.0,18429.90836865771,0,5,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049376262854760856,18429.90836865771,4,2,4_0,4_0_0,4_0_0,4_0_0 -13704,2,49.0,0.0,8,300,1535.0,0.0,0.0,0,45,0.0,0.0,2121.6374393290534,1535.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,119585,2,1,2,0,1,,419.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,819.401643064951,1535.0,47683.54866171778,0,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03219139604918621,23841.77433085889,6,3,6,6_1,6_0,6_0_0 -13705,1,24.0,350.0,8,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,634.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,3,2000.0,6,106995,1,3,0,0,1,,0.0,400.0,32,1.0,0.0,3.0,2.0,1.3,2,2,878.428604590312,0.0,6664.347018205155,0,4,2,3,40.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09513310130281138,5126.420783234735,1,1,1_1,1_0_1,1_0_1,1_0_0 -13706,2,62.0,0.0,6,300,850.0,2700.0,0.0,75,31,0.0,310.55175144583734,1174.848093439541,3850.0,0.0,4896.862832288112,60,2,2,2,2,1,2,2,2,2,3.0,1,,4,132303,2,2,1,0,1,,320.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,854.858374565496,850.0,157811.97163503332,6,1,0,1,130.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02439612128352196,105207.98109002221,10,5,10,10_1,10_0,10_0_0 -13707,2,58.0,0.0,6,300,400.0,0.0,0.0,86,63,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,127953,2,1,2,0,1,,450.0,496.0,42,1.0,10.0,3.0,2.0,1.5,3,3,809.088684113999,400.0,22396.86081893479,5,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017859645743828142,14931.240545956527,3,2,3_0,3_1_0,3_0_0,3_0_0 -13708,2,73.0,0.0,1,300,400.0,0.0,0.0,0,46,2091.018827825201,414.0690019277831,552.8696910303722,2270.0,120.42289029331342,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,101207,1,2,2,0,2,,150.0,,11,0.0,2.0,8.0,1.0,1.0,2,2,945.102193667862,400.0,21967.435129580597,0,5,0,1,312.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.10333477652761089,21967.435129580597,6,3,6,6_1,6_0,6_1_0 -13709,1,64.0,280.0,2,300,2400.0,0.0,0.0,77,78,0.0,0.0,3317.2181461822333,2550.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133244,2,2,4,0,1,,560.0,515.0,41,1.0,3.0,4.0,3.0,2.0,2,2,1042.45675085692,2400.0,22587.71796483396,6,5,2,3,87.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11289321054787417,11293.85898241698,2,1,2_1,2_1_1,2_0_1,2_0_1 -13710,0,29.0,0.0,2,300,350.0,0.0,0.0,48,38,3733.962192545002,0.0,483.76097965157567,2850.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,,2,129643,2,2,4,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,875.748637102432,350.0,57519.53085200836,1,1,5,0,108.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04954838743961155,27390.252786670648,7,4,7,7_1,7_0,7_0_1 -13711,2,60.0,0.0,5,300,1400.0,950.0,0.0,78,43,0.0,0.0,1935.0439186063027,2350.0,0.0,1722.9702558050765,10,0,0,0,0,0,0,0,0,0,,1,,3,113972,2,1,3,0,1,,420.0,,42,1.0,8.0,5.0,2.0,1.5,2,2,811.218050316985,1400.0,107806.4257448038,5,1,1,2,100.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02179832958716998,71870.95049653586,10,5,10,10_1,10_0,10_0_0 -13712,1,48.0,392.0,6,300,671.0,1015.0,0.0,54,68,0.0,0.0,927.4389067034494,1866.0,309.6588607542345,1840.8576943601606,43,0,0,0,0,0,0,0,0,0,,1,,4,117495,2,2,2,0,1,,800.0,362.0,43,3.0,2.0,5.0,5.0,2.8,3,2,748.461632871619,671.0,23789.403458213255,4,1,2,3,100.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07843828464541705,8496.215520790449,1,1,1_1,1_1_1,1_0_1,1_0_0 -13713,2,52.0,0.0,5,300,2098.0,0.0,0.0,0,52,0.0,0.0,2899.8015294543025,2098.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,3,112669,2,1,2,0,1,,321.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,858.257221837224,2098.0,27443.333778273925,0,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07644843796860148,27443.333778273925,7,4,7,7_1,7_0,7_0_0 -13714,1,30.0,180.0,6,300,1440.0,0.0,0.0,0,52,0.0,207.03450096389156,1990.33088770934,1640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,120850,2,2,3,0,1,,600.0,680.0,32,1.0,0.0,5.0,3.0,1.6,2,2,1141.99213040725,1440.0,14577.91841730131,0,1,2,3,87.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11249891466353808,9111.199010813318,1,1,1_1,1_1_1,1_0_1,1_0_0 -13715,2,45.0,0.0,6,300,1570.0,0.0,0.0,0,65,0.0,62.110350289167464,2170.013537294211,1660.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,113083,2,1,2,0,1,,200.0,475.0,12,1.0,0.0,4.0,1.0,1.0,2,2,857.02381855635,1570.0,17989.293077199127,0,1,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09227711132818213,17989.293077199127,4,2,4_0,4_1_0,4_0_0,4_0_0 -13716,1,62.0,198.0,6,300,2500.0,0.0,0.0,78,64,0.0,0.0,3455.435568939826,2650.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128653,2,3,4,0,1,,520.0,480.0,41,0.0,2.0,5.0,2.0,1.5,2,2,741.946339258278,2500.0,29512.34680530669,5,5,2,3,94.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08979292692248712,19674.89787020446,5,3,5,5_1,5_0,5_0_0 -13717,1,61.0,259.0,6,300,0.0,0.0,0.0,78,78,0.0,0.0,0.0,232.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,127922,2,2,3,0,1,,115.0,437.0,41,0.0,3.0,4.0,2.0,1.5,2,2,767.139043369337,0.0,16212.657080805895,6,5,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014309807383434018,10808.438053870597,2,1,2_1,2_1_1,2_0_1,2_0_0 -13718,1,44.0,40.0,9,300,1700.0,0.0,0.0,0,67,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,127351,2,1,1,0,1,,570.0,,32,1.0,1.0,5.0,3.0,2.0,2,2,872.992361691192,1700.0,50311.85066668818,0,4,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03378925596003928,25155.92533334409,7,4,7,7_1,7_0,7_0_0 -13719,2,78.0,0.0,5,300,2000.0,0.0,0.0,86,86,0.0,0.0,2764.3484551518613,2100.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102085,2,1,2,0,1,,250.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,897.05869901067,2000.0,21825.10968555601,5,5,0,1,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09621944770292691,14550.073123704007,3,2,3_0,3_1_0,3_0_0,3_0_0 -13720,2,68.0,0.0,6,300,0.0,2500.0,0.0,75,64,0.0,0.0,0.0,6888.0,172.03270041901916,4534.132252118622,50,0,0,0,0,0,0,0,0,0,,1,,4,129018,2,1,2,0,1,,600.0,650.0,41,0.0,5.0,5.0,2.0,1.5,2,2,863.799818276948,0.0,58044.94129559854,5,5,2,3,110.0,0,0,2,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11866667182799454,38696.627530399026,9,5,9,9_1,9_0,9_0_0 -13721,2,59.0,0.0,5,300,1692.0,0.0,0.0,56,78,0.0,291.9186463590871,2338.6387930584747,2087.0,194.05288607265362,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,106087,2,1,2,0,1,,470.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,767.694407660962,1692.0,26561.062376304602,1,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07857366435244074,17707.374917536403,4,2,4_0,4_1_0,4_0_0,4_0_0 -13722,2,66.0,0.0,5,300,1550.0,0.0,0.0,77,78,0.0,0.0,2142.370052742692,1700.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,133051,2,1,2,0,1,,450.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,841.284912341543,1550.0,29943.75508799727,5,5,0,1,101.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05677310661285205,19962.50339199818,5,3,5,5_1,5_0,5_0_0 -13730,2,29.0,0.0,2,111,155.0,1192.0,0.0,0,52,0.0,0.0,214.23700527426922,1347.0,0.0,2161.874257810159,20,0,0,0,0,0,0,0,0,3,15.0,2,,2,102032,2,2,0,0,1,,240.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1721.9306718881,155.0,20249.296615986485,0,1,1,2,47.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06652082912038365,20249.296615986485,5,3,5,5_0,5_3,5_0_1 -13731,2,22.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,589.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,1.0,2,,1,105666,2,1,0,0,2,,137.0,270.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2512.18339445184,0.0,14078.458436662984,0,1,3,4,19.0,9,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041836966927155314,14078.458436662984,3,2,3_0,3_0_0,3_3_0,3_1_0 -13732,0,29.0,0.0,1,111,520.0,0.0,0.0,0,43,0.0,0.0,718.7305983394839,520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,130349,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2096.73400057606,520.0,17511.0,0,2,5,0,40.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02969561989606533,17511.0,4,2,4_0,4_0_0,4_3_0,4_1_0 -13733,2,35.0,0.0,1,111,700.0,0.0,0.0,0,52,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,100.0,2,,1,107028,1,3,0,0,2,,0.0,540.0,12,1.0,0.0,2.0,1.0,1.0,4,4,1940.97847930806,700.0,21335.076524527864,0,1,2,3,50.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03280981904120406,21335.076524527864,6,3,6,6_0,6_3,6_1_0 -13734,1,24.0,34.0,1,111,200.0,600.0,0.0,0,52,0.0,0.0,276.4348455151861,800.0,0.0,1088.1917405084694,71,2,2,2,2,1,2,2,2,1,20.0,2,,1,109346,1,3,0,0,2,,0.0,445.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2174.0563490213,200.0,13246.918119552403,0,1,2,3,38.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.060391405214410054,13246.918119552403,2,1,2_1,2_0_1,2_3_1,2_1_0 -13735,2,87.0,0.0,5,111,240.0,0.0,0.0,0,77,0.0,0.0,331.72181461822333,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,115408,2,2,0,1,1,1032.0,46.0,317.0,11,0.0,7.0,3.0,1.0,1.0,1,1,1613.39099109985,240.0,20881.4203243688,0,5,2,3,65.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01149347105090921,20881.4203243688,5,3,5,5_0,5_3,5_0_0 -13736,2,25.0,0.0,7,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1053.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,5,105185,2,1,0,0,1,,0.0,421.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2423.86917442406,0.0,17831.0,0,2,3,4,22.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05905445572317873,17831.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -13738,0,34.0,0.0,9,111,1576.0,0.0,0.0,43,46,0.0,0.0,2178.3065826596667,1576.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,12.0,2,2008.0,6,127149,2,1,0,0,1,,288.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1773.89761913021,1576.0,55518.90719633588,1,1,5,0,60.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028386725884691266,30843.83733129771,8,4,8,8_0,8_3,8_0_0 -13739,2,82.0,0.0,7,111,330.0,930.0,0.0,77,77,0.0,0.0,456.1174951000571,1260.0,0.0,1686.6971977881274,60,0,0,0,0,0,0,0,0,0,,2,,5,116191,2,1,0,0,1,,140.0,495.0,41,0.0,2.0,3.0,2.0,1.5,1,1,1679.27423536856,330.0,26123.31529547832,5,5,2,3,65.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048232775424874696,17415.543530318882,4,2,4_0,4_0_0,4_3_0,4_0_0 -13740,2,56.0,0.0,6,111,136.0,75.0,0.0,0,52,0.0,0.0,187.97569495032656,211.0,0.0,136.02396756355867,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,110763,2,1,0,1,1,576.0,0.0,539.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1948.33913851769,136.0,27309.382197349878,0,1,2,3,67.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007726282435655963,27309.382197349878,7,4,7,7_0,7_3,7_0_0 -13741,2,35.0,0.0,5,111,200.0,0.0,0.0,0,38,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,124370,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1563.42603208521,200.0,28548.04788852562,0,1,1,2,45.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007005732958728378,28548.04788852562,8,4,8,8_0,8_3,8_0_0 -13742,1,45.0,162.0,2,111,147.0,640.0,0.0,0,85,0.0,0.0,203.17961145366178,787.0,0.0,1160.7378565423674,71,0,0,0,0,0,0,0,0,0,,2,,2,127316,2,2,0,1,1,469.0,0.0,124.0,31,0.0,1.0,2.0,3.0,1.8,4,3,1767.7330717394,147.0,11554.62424538888,0,6,2,3,36.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06811125859969606,6419.235691882712,1,1,1_1,1_0_1,1_3_1,1_0_1 -13743,2,89.0,0.0,8,111,150.0,480.0,0.0,0,74,0.0,0.0,207.32613413638958,630.0,0.0,870.5533924067755,70,0,0,0,0,0,0,0,0,0,,2,2003.0,6,117736,2,1,0,0,1,,106.0,460.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1867.43948610403,150.0,23329.670821345193,0,5,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027004238714915314,23329.670821345193,6,3,6,6_0,6_3,6_0_0 -13744,1,66.0,265.0,7,111,990.0,520.0,0.0,85,78,0.0,0.0,1368.3524853001713,1510.0,0.0,943.0995084406734,71,0,0,0,0,0,0,0,0,0,,2,,5,103228,2,1,0,0,1,,300.0,434.0,41,1.0,5.0,4.0,4.0,2.5,1,1,1352.74528303004,990.0,11180.28502982649,6,5,2,3,85.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13505916852492214,4472.114011930596,1,1,1_1,1_0_1,1_3_1,1_0_0 -13745,2,29.0,0.0,2,111,0.0,0.0,1000.0,56,63,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,60,2,2,2,1,2,2,2,2,0,,2,,2,124520,1,3,0,1,1,,0.0,560.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1829.07032412618,0.0,27618.93886854432,1,1,2,3,78.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03620703911760046,15343.854926969067,3,2,3_0,3_0_0,3_3_0,3_0_1 -13746,1,59.0,270.0,2,111,570.0,0.0,0.0,0,77,0.0,0.0,787.8393097182804,570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133008,2,2,0,1,1,750.0,180.0,355.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1532.9183360219,570.0,10886.794761852056,0,7,2,3,65.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05235700795952471,10886.794761852056,2,1,2_1,2_0_1,2_3_1,2_0_1 -13747,2,90.0,0.0,1,111,390.0,0.0,0.0,0,72,6721.131946581003,0.0,539.0479487546129,4890.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,130483,2,2,2,0,1,,150.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,1294.03310715583,390.0,35898.68000839989,0,5,0,1,120.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.13621670765765745,35898.68000839989,9,5,9,9_1,9_3,9_1_0 -13748,2,26.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,129883,1,3,0,0,1,,0.0,710.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1983.51995204898,0.0,34544.3906665523,0,1,2,3,60.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027500846929682278,34544.3906665523,9,5,9,9_0,9_3,9_0_0 -13750,1,34.0,370.0,1,111,400.0,600.0,0.0,0,85,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,12,2,2,2,1,1,2,2,2,0,,2,,1,117431,1,3,0,0,2,,0.0,470.0,31,0.0,0.0,2.0,2.0,1.3,2,2,2335.63025798123,400.0,2941.2288152137626,0,6,2,3,47.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.3399939490689785,2262.4837040105867,1,1,1_1,1_0_1,1_3_1,1_1_0 -13751,2,65.0,0.0,1,111,470.0,1500.0,0.0,0,75,0.0,0.0,649.6218869606873,1970.0,0.0,2720.4793512711735,43,0,0,0,0,0,0,0,0,0,,1,,1,111958,2,1,2,0,2,,120.0,,11,0.0,3.0,7.0,1.0,1.0,2,2,1294.03310715583,470.0,59184.953308712094,0,5,0,1,130.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033285487102175576,59184.953308712094,10,5,10,10_1,10_3,10_1_0 -13753,2,22.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,417.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,100862,2,2,0,0,1,,0.0,580.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2178.31239846246,0.0,32704.0,0,1,3,4,37.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01275073385518591,32704.0,8,4,8,8_0,8_3,8_0_1 -13754,2,45.0,0.0,2,111,500.0,2200.0,0.0,0,38,0.0,51.75862524097289,691.0871137879653,2750.0,0.0,3990.0363818643877,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,105799,2,2,2,0,2,,250.0,,32,1.0,0.0,5.0,3.0,1.8,1,1,1299.72942407682,500.0,55526.05490016163,0,1,1,2,110.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04952629904906129,30847.80827786757,8,4,8,8_1,8_3,8_0_1 -13755,1,40.0,218.0,1,111,355.0,0.0,0.0,0,52,0.0,0.0,490.67185078945533,355.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,102498,2,1,0,0,1,,105.0,330.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2496.31386278236,355.0,5207.346158729479,0,4,2,3,27.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06817292132670803,5207.346158729479,1,1,1_1,1_0_1,1_3_1,1_1_0 -13756,2,44.0,0.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1558.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,1,,2,107896,2,1,1,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1249.54003387014,0.0,33042.20018301198,0,1,1,2,57.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04715182376992608,33042.20018301198,8,4,8,8_1,8_3,8_0_1 -13757,2,50.0,0.0,2,111,250.0,1300.0,0.0,0,34,0.0,0.0,345.54355689398267,1550.0,0.0,2357.7487711016834,71,2,2,1,2,1,2,2,2,1,20.0,1,,2,128202,2,1,3,0,2,,140.0,,12,1.0,0.0,4.0,1.0,1.0,5,4,1396.09812595653,250.0,41610.89549078003,0,1,1,2,90.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03724985924283804,41610.89549078003,9,5,9,9_1,9_3,9_0_1 -13758,2,33.0,0.0,7,111,1070.0,0.0,0.0,65,37,0.0,0.0,1478.9264235062458,1070.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,121191,2,1,0,0,1,,0.0,475.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1994.35939009924,1070.0,37978.929196476034,1,1,2,3,72.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028173516806242197,21099.40510915335,5,3,5,5_0,5_3,5_0_0 -13760,2,41.0,0.0,1,111,0.0,0.0,1300.0,55,47,0.0,51.75862524097289,664.1873352887826,1350.0,0.0,1486.2195070484208,71,2,2,2,1,1,2,2,2,0,,1,,1,125055,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,1211.21757870668,0.0,39772.622285242396,1,1,1,2,70.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03394294674155585,17292.444471844523,4,2,4_0,4_1_0,4_3_0,4_1_0 -13761,2,49.0,0.0,1,111,345.0,1161.0,0.0,0,34,0.0,0.0,476.85010851369606,1506.0,0.0,2105.651017883888,71,2,2,2,1,1,2,2,2,0,,1,,1,127781,1,3,1,0,2,,160.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1371.09509093856,345.0,40220.11601073155,0,1,1,2,65.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.037443949679264184,40220.11601073155,9,5,9,9_1,9_3,9_1_0 -13762,2,63.0,0.0,2,111,210.0,194.0,0.0,0,77,0.0,0.0,290.25658779094545,404.0,0.0,351.8486627644051,71,0,0,0,0,0,0,0,0,0,,2,,2,104970,2,1,0,1,1,860.0,150.0,217.0,11,0.0,2.0,2.0,1.0,1.0,2,1,468.075162979469,210.0,20674.189978100425,0,5,2,3,30.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019541273463576835,20674.189978100425,5,3,5,5_0,5_3,5_0_1 -13763,1,76.0,162.0,2,111,190.0,0.0,0.0,0,77,0.0,0.0,262.6131032394268,190.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,116657,2,1,0,1,1,1036.0,60.0,336.0,11,0.0,4.0,3.0,1.0,1.0,3,2,489.33780227144,190.0,12876.531352709982,0,5,2,3,65.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.014755526530831828,12876.531352709982,2,1,2_1,2_0_1,2_3_1,2_0_1 -13764,1,31.0,276.0,5,111,400.0,650.0,0.0,85,67,0.0,0.0,552.8696910303722,1050.0,0.0,1178.8743855508417,71,2,2,2,1,1,2,2,2,0,,2,,3,124179,2,3,0,1,1,835.0,500.0,216.0,42,1.0,1.0,5.0,6.0,2.6999999999999997,2,2,421.622619833874,400.0,21140.11852387841,6,1,2,3,82.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.04966859569940409,7829.673527362374,1,1,1_1,1_0_1,1_3_1,1_0_0 -13765,1,47.0,416.0,2,111,520.0,900.0,0.0,85,68,0.0,0.0,718.7305983394839,1420.0,0.0,1632.287610762704,50,2,1,2,1,2,2,2,2,0,,2,,2,129996,2,1,0,1,1,938.0,800.0,401.0,42,1.0,0.0,5.0,8.0,3.8999999999999995,2,2,455.852262148425,520.0,42311.87548646344,6,1,2,3,95.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.033560318082669044,10849.198842682934,2,1,2_1,2_0_1,2_3_1,2_0_1 -13766,2,25.0,0.0,6,111,330.0,0.0,0.0,21,46,0.0,10.351725048194577,456.1174951000571,340.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,130446,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,466.85810179773,330.0,32636.02653105648,1,1,1,2,92.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010417934906274684,21757.35102070432,6,3,6,6_0,6_3,6_0_0 -13767,2,82.0,0.0,2,111,250.0,0.0,0.0,77,75,4480.754631054002,103.51725048194578,345.54355689398267,3542.0,330.3027848045168,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105143,2,2,2,0,1,,200.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,403.846171131972,250.0,37513.35220348177,5,5,0,1,80.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09441971436696217,25008.90146898785,7,4,7,7_1,7_3,7_0_1 -13768,2,71.0,0.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,528.0,0.0,0.0,50,2,2,1,1,1,2,2,2,0,,2,,5,114992,2,1,0,0,1,,98.0,464.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1491.40626670963,0.0,27615.9753841567,0,5,2,3,70.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.01911936814308264,27615.9753841567,7,4,7,7_0,7_3,7_0_0 -13769,2,36.0,0.0,1,111,680.0,2000.0,0.0,42,38,0.0,0.0,939.8784747516328,2680.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,116186,2,2,1,0,1,,268.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,1191.82630880741,680.0,60694.37232290533,1,1,1,2,200.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04415565887627773,25289.321801210554,7,4,7,7_1,7_3,7_1_0 -13770,2,61.0,0.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,877.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,1,,1,132087,2,1,2,0,1,,167.0,500.0,12,1.0,2.0,4.0,1.0,1.0,2,2,1422.83310882177,0.0,25722.01146266961,0,1,2,3,95.0,9,7,2,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0340953117633429,25722.01146266961,7,4,7,7_1,7_3,7_1_0 -13771,2,23.0,0.0,6,111,0.0,0.0,0.0,38,38,0.0,0.0,0.0,991.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,120.0,2,,4,115246,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1491.63526551043,0.0,18306.177106718926,2,2,2,3,66.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05413473245794573,12204.118071145951,2,1,2_0,2_0_0,2_3_0,2_0_0 -13772,2,27.0,0.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1732.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119470,2,3,3,0,1,,355.0,785.0,22,2.0,0.0,6.0,2.0,1.5,2,2,1310.69385410301,0.0,42232.67514096908,0,1,2,3,90.0,9,7,2,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04101089959891793,28155.11676064605,8,4,8,8_1,8_3,8_1_0 -13773,2,57.0,0.0,1,120,2310.0,0.0,0.0,46,46,298.71697540360015,0.0,3192.8224657004,2510.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113426,2,2,2,0,1,,459.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,858.286522385753,2310.0,10709.679446592469,1,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23436742551604703,7139.786297728312,1,1,1_0,1_1_0,1_0_0,1_1_0 -13774,2,51.0,0.0,1,120,300.0,0.0,0.0,0,63,2987.1697540360015,0.0,414.65226827277917,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121597,2,1,3,0,1,,240.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,976.394799477934,300.0,40411.43709118622,0,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056914580761138846,40411.43709118622,9,5,9,9_1,9_0,9_1_0 -13775,2,67.0,0.0,8,120,338.0,0.0,0.0,77,78,1493.5848770180007,0.0,467.17488892066456,1406.0,116.98223628493304,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119640,2,1,2,0,1,,360.0,600.0,41,0.0,6.0,6.0,2.0,1.5,3,3,881.959398444071,338.0,37535.59595762147,5,5,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03745777745443034,25023.730638414312,7,4,7,7_1,7_0,7_0_0 -13776,2,62.0,0.0,1,120,720.0,0.0,0.0,86,78,0.0,0.0,995.16544385467,816.0,165.1513924022584,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,107237,2,1,1,0,1,,640.0,,41,1.0,0.0,5.0,4.0,2.5,2,2,803.937891069555,720.0,54919.269996355404,6,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01485817273343495,21967.707998542162,6,3,6,6_1,6_0,6_1_0 -13777,2,62.0,0.0,1,120,442.0,0.0,0.0,77,74,0.0,0.0,610.9210085885613,570.0,220.20185653634454,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118780,2,1,2,0,1,,496.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,816.858161890522,442.0,37481.754617706276,5,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015207399061588585,24987.836411804183,7,4,7,7_1,7_0,7_1_0 -13778,2,47.0,0.0,2,120,407.0,0.0,0.0,63,43,2987.1697540360015,0.0,562.5449106234038,2407.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,123617,2,1,1,0,1,,280.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,945.051116324858,407.0,53877.00294388291,1,1,1,2,190.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0446758332587111,29931.66830215717,8,4,8,8_1,8_0,8_0_1 -13779,2,58.0,0.0,2,120,3200.0,0.0,0.0,86,22,0.0,0.0,4422.957528242978,3200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,108274,2,1,2,0,1,,124.0,,42,1.0,1.0,7.0,2.0,1.5,2,2,863.616534559204,3200.0,91805.4012493547,6,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03485633695242406,61203.60083290314,10,5,10,10_1,10_0,10_0_1 -13780,2,23.0,0.0,8,120,0.0,0.0,0.0,42,47,0.0,0.0,0.0,1056.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,131325,2,1,1,0,1,,391.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,770.171656992941,0.0,37149.59340024252,1,1,1,2,110.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028425613939373727,24766.39560016168,7,4,7,7_1,7_0,7_0_0 -13781,2,70.0,0.0,2,120,1940.0,0.0,0.0,77,75,0.0,0.0,2681.4180014973053,1940.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121126,2,2,2,0,1,,789.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,828.257372112126,1940.0,40096.70545156616,5,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048383027437088964,26731.136967710772,7,4,7,7_1,7_0,7_0_1 -13782,2,33.0,0.0,9,120,1224.0,0.0,0.0,46,64,0.0,0.0,1691.7812545529391,1320.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,102284,2,1,1,0,1,,130.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,886.30771078139,1224.0,34157.09085612409,1,1,1,2,127.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03864497727748775,16265.281360059089,4,2,4_0,4_1_0,4_0_0,4_0_0 -13783,0,41.0,0.0,1,120,300.0,0.0,0.0,0,63,0.0,0.0,414.65226827277917,396.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113533,2,1,3,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,870.474528499833,300.0,5294.127593480081,0,4,5,0,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07479985946838325,5294.127593480081,1,1,1_0,1_1_0,1_0_0,1_1_0 -13784,2,50.0,0.0,6,120,498.0,0.0,0.0,67,67,0.0,372.6621017350048,688.3227653328134,863.0,8.601635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,101740,2,1,2,0,1,,500.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,883.120902952934,498.0,39627.7310745175,1,1,0,1,83.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021777678827414618,26418.487383011667,7,4,7,7_1,7_0,7_0_0 -13785,2,65.0,0.0,1,120,140.0,0.0,0.0,0,78,0.0,289.84830134944815,193.50439186063028,612.0,330.3027848045168,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108337,2,2,2,0,2,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,905.102474237639,140.0,6166.376836223049,0,6,0,1,64.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09924790784840429,6166.376836223049,1,1,1_0,1_1_0,1_0_0,1_1_0 -13786,2,81.0,0.0,7,120,582.0,0.0,0.0,71,71,2987.1697540360015,0.0,804.4254004491916,2710.0,220.20185653634454,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,106659,2,1,2,0,1,,201.0,,41,0.0,5.0,3.0,2.0,1.5,4,4,816.728979318108,582.0,26112.675903566196,5,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1037810146309018,17408.450602377463,4,2,4_0,4_1_0,4_0_0,4_0_0 -13787,2,63.0,0.0,9,120,291.0,0.0,0.0,77,78,0.0,0.0,402.2127002245958,483.0,330.3027848045168,0.0,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,130201,2,1,2,0,1,,260.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,744.302217104506,291.0,22256.432086510427,6,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02170159161731701,14837.621391006951,3,2,3_0,3_1_0,3_0_0,3_0_0 -13788,2,51.0,0.0,6,112,746.0,0.0,0.0,21,43,0.0,931.655254337512,1031.1019737716442,1646.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,106816,2,1,2,0,1,,319.0,,43,2.0,0.0,4.0,4.0,2.5,3,3,869.355804532091,746.0,60143.477807385236,1,1,0,1,100.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027367888589207617,24057.391122954094,6,3,6,6_1,6_0,6_0_0 -13789,0,75.0,0.0,2,112,1045.0,0.0,0.0,0,77,2389.735803228801,0.0,1444.3720678168474,2705.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129081,2,1,2,0,2,,0.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1057.66603207099,1045.0,16945.26204328386,0,5,0,1,81.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15963164175865363,16945.26204328386,4,2,4_0,4_1_0,4_0_0,4_0_1 -13790,2,38.0,0.0,1,112,624.0,0.0,0.0,67,62,1792.3018524216009,0.0,862.4767180073807,1878.0,92.89765822627035,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,101143,2,2,2,0,1,,294.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,761.468876273281,624.0,39197.22950256598,1,1,1,2,80.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04791154945981731,26131.486335043985,7,4,7,7_1,7_0,7_1_0 -13791,1,49.0,100.0,1,112,936.0,120.0,0.0,85,63,0.0,238.0896761084753,1293.7150770110711,1286.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,1,,1,106163,2,1,1,0,1,,762.0,,42,1.0,1.0,8.0,4.0,2.3,3,3,760.283915206023,936.0,14152.509675339636,6,4,1,2,150.0,6,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09086727580485743,6153.265076234625,1,1,1_1,1_1_1,1_0_1,1_1_0 -13792,2,87.0,0.0,1,112,90.0,0.0,0.0,0,78,1344.2263893162005,0.0,124.39568048183375,1054.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124311,1,3,2,0,2,,82.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,955.248792107312,90.0,19219.323475228288,0,5,0,1,60.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05484064001308353,19219.323475228288,5,3,5,5_1,5_0,5_1_0 -13793,2,68.0,0.0,6,112,684.0,0.0,0.0,77,78,0.0,372.6621017350048,945.4071716619364,1140.0,165.1513924022584,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,121110,2,1,2,0,1,,336.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,756.816149076514,684.0,28855.837740110543,5,5,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03950673725945455,19237.225160073696,5,3,5,5_1,5_0,5_0_0 -13794,2,60.0,0.0,5,112,450.0,0.0,0.0,77,77,0.0,0.0,621.9784024091688,2570.0,3647.0932488832063,0.0,60,1,2,2,1,1,2,2,2,0,,1,,3,119282,2,1,2,0,1,,260.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,857.51451643531,450.0,29609.267687600015,7,5,0,1,96.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.08679714834947719,19739.511791733345,5,3,5,5_1,5_0,5_0_0 -13795,2,52.0,0.0,7,112,1152.0,0.0,0.0,0,46,0.0,517.5862524097289,1592.264710167472,1652.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,129013,2,2,5,0,1,,132.0,700.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1059.21032282166,1152.0,32585.45966223918,0,1,2,3,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05069745883972837,32585.45966223918,8,4,8,8_1,8_0,8_0_0 -13796,2,27.0,0.0,1,112,0.0,0.0,0.0,43,53,0.0,0.0,0.0,1055.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,104808,2,1,2,0,1,,137.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,871.268290498384,0.0,43655.067480143065,1,1,1,2,94.0,6,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02416672475606359,29103.378320095377,8,4,8,8_1,8_0,8_1_0 -13797,2,56.0,0.0,5,112,740.0,0.0,0.0,0,78,0.0,698.741440753134,1022.8089284061887,1575.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123787,2,1,2,0,1,,529.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,836.900152573723,740.0,52511.15466973333,0,7,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029993627257025583,35007.436446488886,9,5,9,9_1,9_0,9_0_0 -13798,2,55.0,0.0,8,112,1121.0,0.0,0.0,72,22,0.0,621.1035028916747,1549.417309112618,1721.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,125574,2,1,1,0,1,,494.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,825.992203309802,1121.0,26468.42952285911,6,1,1,2,145.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06502085809487416,17645.619681906075,4,2,4_0,4_1_0,4_0_0,4_0_0 -13799,2,70.0,0.0,5,112,1200.0,0.0,0.0,77,75,0.0,621.1035028916747,1658.6090730911167,1928.0,220.20185653634454,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,110489,2,1,1,0,1,,240.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,783.465001275417,1200.0,37526.16946846814,5,5,0,1,108.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051377479431254695,25017.446312312095,7,4,7,7_1,7_0,7_0_0 -13800,2,30.0,0.0,2,112,1500.0,0.0,0.0,0,63,0.0,517.5862524097289,2073.261341363896,2060.0,103.2196202514115,0.0,60,2,2,2,2,1,2,1,2,2,10.0,1,,2,115593,1,2,2,0,1,,200.0,450.0,12,1.0,0.0,5.0,1.0,1.0,3,3,814.766447076278,1500.0,19765.14602388984,0,1,2,3,60.0,6,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.10422386950797674,19765.14602388984,5,3,5,5_1,5_0,5_0_1 -13801,2,56.0,0.0,6,112,486.0,0.0,0.0,77,78,0.0,1552.7587572291866,671.7366746019022,2116.0,223.64251054472493,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131607,2,1,2,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,4,4,685.900818972235,486.0,12295.021639213528,7,5,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1721021777831823,8196.681092809018,1,1,1_0,1_1_0,1_0_0,1_0_0 -13802,2,42.0,0.0,7,112,2860.0,0.0,0.0,52,37,0.0,0.0,3953.0182908671613,2924.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,103303,2,2,2,0,1,,636.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,740.179657203071,2860.0,73770.05762399749,1,1,1,2,92.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039636677727750876,35128.59886857023,9,5,9,9_1,9_0,9_0_0 -13803,2,48.0,0.0,8,112,1200.0,0.0,0.0,68,62,0.0,1511.3518570364083,1658.6090730911167,2660.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,2003.0,6,128513,2,1,1,0,1,,420.0,,43,3.0,1.0,5.0,4.0,2.3,2,2,819.218078887717,1200.0,25138.509450427617,1,1,1,2,120.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.10581375181553385,10929.786717577226,2,1,2_0,2_1_0,2_0_0,2_0_0 -13804,2,60.0,0.0,6,112,1044.0,0.0,0.0,22,62,0.0,652.1586780362584,1442.9898935892716,1770.0,165.1513924022584,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,108092,2,1,3,0,2,,688.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,893.377540745,1044.0,37123.87523995774,1,1,0,1,100.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04767821216290713,18561.93761997887,4,2,4_0,4_1_0,4_0_0,4_0_0 -13805,2,38.0,0.0,2,112,746.0,0.0,0.0,0,37,0.0,310.55175144583734,1031.1019737716442,1046.0,0.0,0.0,50,2,2,1,2,2,2,2,1,0,,1,,2,123867,2,2,3,0,1,,228.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,893.915578201177,746.0,49577.02799104592,0,4,1,2,86.0,6,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.021098481340771726,49577.02799104592,10,5,10,10_1,10_0,10_0_1 -13806,1,45.0,50.0,8,112,1290.0,0.0,0.0,56,67,0.0,0.0,1783.0047535729504,3002.0,165.1513924022584,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,104398,2,1,1,0,1,,684.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,729.461508766125,1290.0,30093.617824841545,1,1,1,2,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09975537063948231,14330.294202305497,3,2,3_1,3_1_1,3_0_1,3_0_0 -13807,2,41.0,0.0,8,112,1200.0,0.0,0.0,52,43,2987.1697540360015,0.0,1658.6090730911167,3200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,123519,2,1,1,0,1,,670.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,864.814444433606,1200.0,55083.51176228442,1,1,1,2,120.0,6,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058093609096851996,30601.9509790469,8,4,8,8_1,8_0,8_0_0 -13808,2,77.0,0.0,2,112,450.0,0.0,0.0,77,78,1493.5848770180007,517.5862524097289,621.9784024091688,2100.0,258.04905062852873,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,100852,2,1,3,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,934.342837139073,450.0,24985.343966443266,5,5,0,1,100.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08404927315871333,16656.895977628843,4,2,4_0,4_1_0,4_0_0,4_0_1 -13809,2,50.0,0.0,1,112,0.0,0.0,0.0,64,46,0.0,0.0,0.0,1509.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,113304,2,3,3,0,1,,452.0,520.0,43,2.0,1.0,4.0,3.0,2.0,2,2,1117.69301266307,0.0,50236.429526584994,1,1,2,3,80.0,6,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030037962773637027,25118.214763292497,7,4,7,7_1,7_0,7_1_0 -13810,2,71.0,0.0,2,112,474.0,0.0,0.0,78,78,1642.9433647198007,258.79312620486445,655.1505838709911,1984.0,275.25232067043066,0.0,70,2,2,2,2,1,1,2,2,0,,1,,2,120170,2,1,2,0,1,,391.0,,41,0.0,3.0,4.0,2.0,1.5,4,4,749.593700180298,474.0,30396.655810839835,5,5,0,1,80.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06527033803805747,20264.437207226558,5,3,5,5_1,5_0,5_0_1 -13811,2,86.0,0.0,2,112,300.0,0.0,0.0,78,78,2987.1697540360015,0.0,414.65226827277917,2428.0,220.20185653634454,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,119851,2,1,2,0,1,,214.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,872.151860065948,300.0,35622.86312534224,5,5,0,1,90.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0681584742769514,23748.57541689483,6,3,6,6_1,6_0,6_0_1 -13812,2,65.0,0.0,2,111,1000.0,0.0,0.0,0,75,0.0,0.0,1382.1742275759307,1747.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111360,2,2,3,0,1,,120.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1555.28861545361,1000.0,21014.17989865429,0,5,0,1,78.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0831343411175363,21014.17989865429,5,3,5,5_1,5_3,5_0_1 -13813,2,46.0,0.0,1,111,304.0,840.0,0.0,0,47,0.0,0.0,420.1809651830829,1144.0,0.0,1523.468436711857,71,2,1,2,2,1,2,2,2,2,20.0,1,,1,120067,2,2,1,0,1,,140.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1552.44160827135,304.0,23428.490188120868,0,1,1,2,59.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.048829437612674303,23428.490188120868,6,3,6,6_1,6_3,6_1_0 -13814,2,65.0,0.0,1,111,269.0,1260.0,0.0,78,77,0.0,0.0,371.80486721792533,1529.0,0.0,2285.2026550677856,41,0,0,0,0,0,0,0,0,0,,1,,1,114507,2,2,1,0,1,,212.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,1724.72690927638,269.0,36456.92088812464,5,5,0,1,100.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041939910523218424,24304.613925416426,7,4,7,7_1,7_3,7_1_0 -13815,2,22.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,3041.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,123248,1,1,0,0,1,,93.0,450.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2472.09296562224,0.0,14135.069086405929,0,1,2,3,25.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2151386725746258,14135.069086405929,3,2,3_0,3_0_0,3_3_0,3_0_0 -13816,2,50.0,0.0,2,111,350.0,0.0,0.0,0,47,0.0,0.0,483.76097965157567,350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,108594,1,1,0,1,1,,166.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,2305.14107579271,350.0,36757.303767634985,0,4,0,1,110.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009521917119181548,36757.303767634985,9,5,9,9_0,9_3,9_0_1 -13817,2,74.0,0.0,2,111,384.0,0.0,0.0,0,74,0.0,0.0,530.7549033891573,832.0,0.0,0.0,43,2,2,1,2,1,2,2,2,0,,2,,2,110758,2,1,0,1,1,,0.0,500.0,11,0.0,1.0,3.0,1.0,1.0,2,2,2709.89836486871,384.0,37851.36780172633,0,5,2,3,75.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021980711618089902,37851.36780172633,9,5,9,9_0,9_3,9_0_1 -13818,2,63.0,0.0,1,111,1450.0,0.0,0.0,78,64,0.0,0.0,2004.1526299850993,1510.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,117538,2,3,3,0,1,,0.0,455.0,42,1.0,8.0,4.0,2.0,1.5,2,2,1596.48348883525,1450.0,31104.349426066434,6,1,2,3,60.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04854626532502146,20736.232950710957,5,3,5,5_1,5_3,5_1_0 -13819,2,44.0,0.0,1,111,122.0,984.0,0.0,0,38,0.0,0.0,168.62525576426353,1106.0,0.0,1784.6344544338897,50,2,2,2,2,1,2,2,2,2,50.0,1,,1,117502,2,3,3,0,1,,125.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1576.62247231041,122.0,46691.40959154202,0,1,1,2,60.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02368744078783066,46691.40959154202,10,5,10,10_1,10_3,10_1_0 -13820,2,51.0,0.0,2,111,399.0,1190.0,0.0,64,45,0.0,0.0,551.4875168027963,1589.0,0.0,2158.246952008464,31,0,0,0,0,0,0,0,0,3,30.0,1,,2,126863,2,1,1,0,1,,311.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1572.12732868239,399.0,48559.83914424984,1,1,0,1,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03272251366566068,32373.22609616656,8,4,8,8_1,8_3,8_0_1 -13821,2,29.0,0.0,2,111,0.0,0.0,0.0,56,47,0.0,0.0,0.0,2083.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,150.0,1,,2,107281,2,2,2,0,1,,575.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,455.295929190201,0.0,47529.11182822199,1,1,1,2,85.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04382577161400162,22632.910394391423,6,3,6,6_1,6_3,6_0_1 -13822,1,29.0,70.0,2,111,312.0,920.0,0.0,67,67,0.0,0.0,431.23835900369033,1232.0,0.0,1668.560668779653,50,2,2,2,2,1,2,2,2,0,,2,,2,102681,1,3,0,0,1,,249.0,279.0,43,2.0,0.0,3.0,2.0,1.5,1,1,565.706792255394,312.0,15896.0,4,4,2,3,56.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07750377453447409,10597.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_1 -13823,2,51.0,0.0,8,111,150.0,1500.0,0.0,0,47,0.0,0.0,207.32613413638958,1650.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,123668,2,1,1,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,5,4,1755.68524595591,150.0,48298.29196276371,0,1,1,2,105.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034162698781813904,48298.29196276371,10,5,10,10_1,10_3,10_0_0 -13824,2,82.0,0.0,1,111,329.0,1694.0,0.0,0,78,0.0,0.0,454.73532087248117,2023.0,0.0,3072.3280140355782,31,2,2,2,2,1,2,2,2,0,,1,,1,101567,2,2,1,0,1,,150.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1766.7323439642,329.0,22371.97791126593,0,5,0,1,100.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.09042562119557927,22371.97791126593,6,3,6,6_1,6_3,6_1_0 -13825,2,51.0,0.0,7,111,430.0,400.0,0.0,0,53,0.0,0.0,594.3349178576501,830.0,0.0,725.4611603389795,43,2,2,2,2,1,2,2,2,1,40.0,2,,5,113086,1,1,0,0,1,,150.0,459.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1937.03981664781,430.0,32955.17777185338,0,1,2,3,70.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.025185723643976,32955.17777185338,8,4,8,8_0,8_3,8_0_0 -13826,2,38.0,0.0,2,111,1014.0,0.0,0.0,0,47,0.0,0.0,1401.5246667619936,1014.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,117322,2,1,2,0,1,,41.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1632.02096398543,1014.0,23695.743113220065,0,1,0,1,80.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04279249632117595,23695.743113220065,6,3,6,6_1,6_3,6_0_1 -13827,2,39.0,0.0,1,111,350.0,1300.0,0.0,52,54,0.0,0.0,483.76097965157567,1650.0,0.0,2357.7487711016834,30,0,0,0,0,0,0,0,0,1,15.0,1,,1,104397,1,2,3,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1478.86971817654,350.0,46599.39018559206,1,1,1,2,74.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03540818867861835,22190.185802662887,6,3,6,6_1,6_3,6_1_0 -13828,2,81.0,0.0,2,111,447.0,296.0,0.0,0,74,4951.233867314672,0.0,617.831879726441,4058.0,0.0,536.8412586508449,70,2,2,2,2,1,2,2,2,0,,1,,2,124342,1,3,3,0,2,,110.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1787.82310893273,447.0,34824.044142236475,0,5,0,1,132.0,9,7,2,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.11652868298194692,34824.044142236475,9,5,9,9_1,9_3,9_0_1 -13829,2,48.0,0.0,7,111,617.0,0.0,0.0,0,52,0.0,0.0,852.8014984143491,617.0,0.0,0.0,42,1,2,2,2,1,2,2,2,2,10.0,1,,5,107741,2,1,2,0,1,,212.0,690.0,32,1.0,1.0,4.0,2.0,1.5,1,1,1720.16294354544,617.0,23662.325214716155,0,1,2,3,90.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.026075205813512917,15774.883476477436,3,2,3_0,3_1_0,3_3_0,3_0_0 -13830,2,36.0,0.0,1,112,70.0,0.0,0.0,43,38,0.0,0.0,96.75219593031514,95.0,43.00817510475479,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,1,101074,2,1,2,0,1,,270.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,521.60143836002,70.0,80412.71791980231,1,1,1,2,64.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0011814051614913198,38291.7704380011,9,5,9,9_1,9_0,9_1_0 -13831,2,40.0,0.0,1,112,2500.0,0.0,0.0,54,22,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,1,103306,2,1,3,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,534.107286148929,2500.0,39470.75776912976,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06333802899409395,17161.19903005642,4,2,4_0,4_1_0,4_0_0,4_1_0 -13832,1,37.0,150.0,1,112,1300.0,0.0,0.0,56,38,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,2,2,2,1,2,2,2,2,2,45.0,1,,1,117430,1,1,2,0,1,,240.0,1050.0,43,2.0,0.0,5.0,5.0,2.4,1,1,498.935568736849,1300.0,58666.05662584221,1,1,2,3,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.022159321331090696,24444.190260767587,7,4,7,7_1,7_0,7_1_0 -13833,2,38.0,0.0,1,112,2400.0,0.0,0.0,43,43,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,43,2,2,2,1,1,2,2,2,2,20.0,1,,1,103498,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,733.794090713616,2400.0,66142.4869466405,1,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03628530027811269,31496.422355543098,8,4,8,8_1,8_0,8_1_0 -13834,2,60.0,0.0,6,112,1735.0,0.0,0.0,74,75,0.0,0.0,2398.0722848442397,1765.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,123279,1,1,3,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,763.751581591896,1735.0,56939.2874296682,5,5,0,1,180.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03099792919221443,37959.52495311213,9,5,9,9_1,9_0,9_0_0 -13835,1,39.0,150.0,1,111,1100.0,0.0,0.0,62,56,2987.1697540360015,0.0,1520.3916503335236,3100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133621,2,2,2,0,1,,1200.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,394.51215281938,1100.0,17535.91619605319,4,1,1,2,96.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17678004190609198,5845.305398684396,1,1,1_1,1_1_1,1_4_1,1_1_0 -13836,2,85.0,0.0,7,111,300.0,803.0,0.0,0,77,0.0,0.0,414.65226827277917,1103.0,0.0,1456.3632793805016,50,0,0,0,0,0,0,0,0,0,,1,,5,116539,2,2,2,0,1,,0.0,528.0,11,0.0,1.0,3.0,1.0,1.0,1,1,747.404940458542,300.0,31941.944331658346,0,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03453139823134665,31941.944331658346,8,4,8,8_1,8_4,8_0_0 -13837,2,63.0,0.0,6,111,1950.0,0.0,0.0,75,75,0.0,0.0,2695.2397437730647,1950.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,132044,2,1,3,0,1,,360.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,601.653685565636,1950.0,45652.29779570996,5,5,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04271416980424687,30434.86519713997,8,4,8,8_1,8_4,8_0_0 -13838,2,46.0,0.0,7,111,430.0,533.0,0.0,52,45,0.0,0.0,594.3349178576501,963.0,0.0,966.6769961516902,12,0,0,0,0,0,0,0,0,2,20.0,2,,5,116316,2,2,0,0,1,,0.0,479.0,43,2.0,0.0,3.0,5.0,2.8,1,1,721.636995836065,430.0,49937.18411549866,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019284227115663903,17834.708612678096,4,2,4_0,4_0_0,4_4_0,4_0_0 -13839,2,32.0,0.0,7,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,882.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,5,107630,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,768.477398367274,0.0,75054.04810314883,1,1,1,2,77.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01175153136027844,41696.69339063824,9,5,9,9_0,9_4,9_0_0 -13840,2,71.0,0.0,7,111,300.0,270.0,0.0,0,78,0.0,0.0,414.65226827277917,570.0,0.0,489.6862832288112,41,0,0,0,0,0,0,0,0,0,,2,,5,103138,2,1,0,1,1,,270.0,485.0,11,0.0,2.0,1.0,1.0,1.0,1,1,1113.80723250537,300.0,25590.77889411545,0,5,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022273647955712298,25590.77889411545,7,4,7,7_0,7_4,7_0_0 -13841,2,49.0,0.0,7,111,0.0,0.0,600.0,34,38,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,71,0,0,0,0,0,0,0,0,2,60.0,8,,5,107240,1,1,0,1,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,678.679136659291,0.0,80236.47340936263,1,1,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007477895955606484,53490.98227290842,10,5,10,10_0,10_4,10_0_0 -13842,2,36.0,0.0,7,111,122.0,480.0,0.0,0,64,0.0,0.0,168.62525576426353,602.0,0.0,870.5533924067755,50,0,0,0,0,0,0,0,0,0,,2,,5,107387,1,1,0,1,1,,0.0,480.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1113.80723250537,122.0,22193.02422320049,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02712564064931141,22193.02422320049,6,3,6,6_0,6_4,6_0_0 -13843,1,57.0,405.0,6,111,600.0,1200.0,0.0,0,75,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,2,,4,110389,2,2,0,0,1,,0.0,707.0,31,0.0,0.0,3.0,3.0,2.0,2,2,886.555910463284,600.0,19042.697998379714,0,7,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09452442086479325,9521.348999189857,1,1,1_1,1_0_1,1_4_1,1_0_0 -13844,2,70.0,0.0,9,111,500.0,0.0,0.0,0,75,0.0,0.0,691.0871137879653,545.0,77.41471518855863,0.0,71,2,2,2,2,1,2,2,1,0,,2,2005.0,6,116902,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,878.038331713482,500.0,35256.44836021965,0,5,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.015458165111575198,35256.44836021965,9,5,9,9_0,9_4,9_0_0 -13845,2,39.0,0.0,7,111,780.0,0.0,0.0,42,34,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,5,106687,2,1,0,0,1,,0.0,926.0,43,2.0,0.0,3.0,2.0,1.5,1,1,902.76079206102,780.0,48250.55693461909,1,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016165616514166307,32167.037956412725,8,4,8,8_0,8_4,8_0_0 -13846,2,53.0,0.0,2,111,385.0,85.0,0.0,34,47,0.0,0.0,532.1370776167332,470.0,0.0,154.16049657203317,50,0,0,0,0,0,0,0,0,3,75.0,2,,2,122718,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,586.357544257489,385.0,96643.47576299007,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0048632356844515315,32214.49192099669,8,4,8,8_0,8_4,8_0_1 -13847,2,84.0,0.0,1,111,231.0,100.0,0.0,77,75,0.0,0.0,319.28224657003994,331.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,1,133533,2,1,0,1,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,536.049889872446,231.0,47399.199798236164,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006983240253189196,31599.466532157443,8,4,8,8_0,8_4,8_1_0 -13848,2,64.0,0.0,1,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,1053.0,0.0,0.0,60,2,2,2,2,1,2,1,2,0,,2,,1,105893,2,2,0,0,2,,0.0,500.0,41,0.0,1.0,4.0,2.0,1.5,2,2,782.590290853646,0.0,42622.77897915998,5,5,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.024705099602136567,28415.18598610665,8,4,8,8_0,8_4,8_1_0 -13849,2,42.0,0.0,1,111,0.0,0.0,0.0,52,31,0.0,0.0,0.0,4680.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118856,2,2,2,0,1,,601.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,793.710111674034,0.0,82060.88081535859,4,1,0,1,190.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05703082825213944,34192.03367306608,9,5,9,9_1,9_4,9_1_0 -13850,2,36.0,0.0,9,111,300.0,1200.0,0.0,54,38,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,3,30.0,1,2006.0,6,121537,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1223.20002385413,300.0,50383.96311673346,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029771377779963124,23992.363388920694,6,3,6,6_1,6_4,6_0_0 -13851,2,66.0,0.0,2,111,256.0,149.0,0.0,77,77,0.0,0.0,353.8366022594382,790.0,0.0,270.2342822262699,71,2,2,1,2,1,2,2,2,0,,2,,2,119501,2,1,0,2,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,694.782918366886,256.0,33623.88217063359,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023495204866318793,22415.92144708906,6,3,6,6_0,6_4,6_0_1 -13852,1,71.0,335.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,1434.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,124203,2,2,0,0,2,,0.0,440.0,41,0.0,0.0,1.0,2.0,1.5,2,2,665.28883401586,0.0,14675.45614443185,6,5,2,3,18.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09771416887400036,9783.637429621233,2,1,2_1,2_0_1,2_4_1,2_0_1 -13853,1,39.0,120.0,5,111,150.0,380.0,0.0,55,68,0.0,0.0,207.32613413638958,530.0,0.0,689.1881023220305,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,107257,2,1,0,1,1,,0.0,350.0,43,2.0,0.0,4.0,4.0,2.1,2,2,902.088603817751,150.0,22090.001542464346,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023992755228249455,10519.04835355445,2,1,2_1,2_0_1,2_4_1,2_0_0 -13854,2,33.0,0.0,7,111,0.0,101.0,0.0,85,47,0.0,0.0,0.0,1565.0,0.0,183.17894298559233,70,0,0,0,0,0,0,0,0,3,60.0,2,,5,102168,2,1,0,0,1,,0.0,379.0,42,1.0,0.0,1.0,3.0,1.8,1,1,936.41149975369,0.0,23408.298183732586,6,1,2,3,47.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06685663296478274,13004.610102073659,2,1,2_0,2_0_0,2_4_0,2_0_0 -13855,2,42.0,0.0,2,111,370.0,1200.0,0.0,85,68,0.0,331.2552015422265,511.40446420309434,1890.0,0.0,2176.3834810169387,50,2,2,1,2,1,2,2,2,0,,1,,2,108194,2,1,2,0,1,,320.0,,42,1.0,0.0,6.0,6.0,2.8999999999999995,2,2,625.345999959921,370.0,22330.287805639484,6,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.0846384075498876,7700.099243323962,1,1,1_0,1_1_0,1_4_0,1_0_1 -13856,2,68.0,0.0,1,111,290.0,900.0,0.0,0,78,0.0,310.55175144583734,400.8305259970199,1490.0,0.0,1632.287610762704,43,2,2,1,2,2,2,2,1,0,,1,,1,128163,2,1,1,0,1,,180.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,615.968839399841,290.0,18221.901898695327,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08176973009094526,18221.901898695327,4,2,4_0,4_1_0,4_4_0,4_1_0 -13857,1,48.0,115.0,2,111,160.0,0.0,0.0,0,85,0.0,0.0,221.1478764121489,675.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,2,,2,122215,2,2,0,2,1,,90.0,400.0,11,0.0,1.0,3.0,1.0,1.0,2,2,226.703411760616,160.0,7836.369568295788,0,7,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08613682574784377,7836.369568295788,1,1,1_1,1_0_1,1_4_1,1_0_1 -13858,0,84.0,0.0,2,111,200.0,1150.0,0.0,0,77,0.0,0.0,276.4348455151861,1350.0,0.0,2085.7008359745664,50,0,0,0,0,0,0,0,0,0,,2,,2,100732,2,3,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,283.642102855147,200.0,23069.542317324755,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05851871621164229,23069.542317324755,6,3,6,6_0,6_4,6_0_1 -13859,1,61.0,171.0,2,111,539.0,330.0,0.0,0,77,0.0,0.0,744.9919086634266,869.0,0.0,598.5054572796581,42,2,1,2,2,1,2,2,2,0,,2,,2,102902,1,1,0,1,1,436.0,0.0,300.0,31,0.0,3.0,3.0,3.0,1.8,2,2,197.841766420506,539.0,12352.559735197534,0,5,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07034979134922625,6862.533186220852,1,1,1_1,1_0_1,1_4_1,1_0_1 -13860,2,41.0,0.0,2,111,250.0,150.0,0.0,64,21,0.0,0.0,345.54355689398267,400.0,0.0,272.04793512711734,44,0,0,0,0,0,0,0,0,0,,2,,2,132774,2,2,0,1,2,1000.0,0.0,444.0,43,2.0,0.0,3.0,4.0,2.1,2,2,190.605702080514,250.0,32214.721916405448,1,1,2,3,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012416683311374441,15340.34376971688,3,2,3_0,3_0_0,3_4_0,3_0_1 -13861,2,25.0,0.0,5,111,216.0,60.0,0.0,0,43,0.0,0.0,298.549633156401,276.0,0.0,108.81917405084694,44,0,0,0,0,0,0,0,0,3,45.0,2,,3,122830,2,2,0,1,1,360.0,0.0,291.0,12,1.0,0.0,1.0,1.0,1.0,4,4,219.552407545747,216.0,20693.20847822125,0,1,2,3,41.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013337709340263914,20693.20847822125,5,3,5,5_0,5_4,5_0_0 -13862,2,64.0,0.0,2,111,300.0,1400.0,0.0,52,78,0.0,0.0,414.65226827277917,1700.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,2,,2,126192,2,1,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,177.342832662525,300.0,47262.15124985808,1,5,0,1,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03596958570532916,31508.100833238717,8,4,8,8_0,8_4,8_0_1 -13863,2,65.0,0.0,2,111,341.0,51.0,0.0,0,74,0.0,0.0,471.32141160339233,392.0,0.0,92.4962979432199,31,0,0,0,0,0,0,0,0,0,,2,,2,108570,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,2,189.105543239253,341.0,41621.37424123728,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009418237795993229,41621.37424123728,9,5,9,9_0,9_4,9_0_1 -13864,2,72.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,334.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,128818,2,1,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,199.723615203571,300.0,27363.329039110584,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012206117154919698,27363.329039110584,7,4,7,7_0,7_4,7_0_0 -13865,1,40.0,8.0,2,111,800.0,0.0,0.0,56,47,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114332,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,134.694816735745,800.0,41380.99383796925,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019332546799926246,17242.08076582052,4,2,4_1,4_0_1,4_4_1,4_0_1 -13866,2,62.0,0.0,5,111,220.0,150.0,0.0,0,77,0.0,0.0,304.0783300667047,370.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,0,,2,,3,112675,2,2,0,1,1,240.0,0.0,232.0,11,0.0,3.0,2.0,1.0,1.0,4,4,246.00131135933,220.0,23436.433750475102,0,5,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015787384887109773,23436.433750475102,6,3,6,6_0,6_4,6_0_0 -13867,1,49.0,384.0,9,111,320.0,0.0,0.0,85,53,0.0,0.0,442.2957528242978,320.0,0.0,0.0,50,2,1,2,2,1,1,2,2,3,75.0,8,2006.0,6,110522,1,3,0,1,1,500.0,0.0,502.0,42,1.0,1.0,4.0,5.0,2.4,2,2,881.055888567145,320.0,22649.399716456996,6,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.014128409759464345,9437.249881857082,1,1,1_1,1_0_1,1_4_1,1_0_0 -13868,2,68.0,0.0,5,111,312.0,0.0,0.0,0,75,0.0,0.0,431.23835900369033,312.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,102714,1,3,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,189.105543239253,312.0,18769.100671925986,0,5,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016623066041021144,18769.100671925986,5,3,5,5_0,5_4,5_0_0 -13869,1,30.0,200.0,9,111,250.0,0.0,0.0,0,21,0.0,0.0,345.54355689398267,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,115686,1,2,0,1,1,300.0,120.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,561.292959064531,250.0,697.402903793272,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.3584728406495227,697.402903793272,1,1,1_1,1_0_1,1_4_1,1_0_0 -13870,1,47.0,183.0,2,111,288.0,70.0,0.0,0,55,0.0,0.0,398.066177541868,358.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,109719,2,1,0,2,1,588.0,0.0,358.0,32,1.0,0.0,3.0,2.0,1.3,4,1,173.72646567297,288.0,18244.624938835444,0,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01962221756819799,14034.326876027264,3,2,3_1,3_0_1,3_4_1,3_0_1 -13871,1,46.0,330.0,2,111,840.0,560.0,0.0,0,54,0.0,0.0,1161.0263511637818,1400.0,0.0,1015.6456244745714,31,2,1,2,2,2,2,2,1,0,,2,,2,120159,1,2,0,0,1,,0.0,430.0,32,3.0,0.0,4.0,3.0,2.0,1,1,220.428711510995,840.0,8049.171676693381,0,4,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.17393094050332436,4024.5858383466907,1,1,1_1,1_0_1,1_4_1,1_0_1 -13872,1,46.0,170.0,2,111,0.0,0.0,0.0,54,62,0.0,0.0,0.0,1341.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,123127,2,1,0,1,1,,125.0,450.0,43,2.0,1.0,4.0,2.0,1.5,1,1,212.602045012613,0.0,23830.276382069744,1,1,2,3,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05627295204217558,15886.85092137983,3,2,3_1,3_0_1,3_4_1,3_0_1 -13873,2,62.0,0.0,2,111,220.0,950.0,0.0,0,77,0.0,258.79312620486445,304.0783300667047,1420.0,0.0,1722.9702558050765,43,0,0,0,0,0,0,0,0,0,,1,,2,110874,2,1,2,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,841.140218690829,220.0,26738.987352322038,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05310597522971213,26738.987352322038,7,4,7,7_1,7_4,7_0_1 -13874,2,39.0,0.0,1,111,1053.0,0.0,0.0,55,46,0.0,0.0,1455.4294616374548,1113.0,103.2196202514115,0.0,71,1,1,2,1,1,2,2,2,2,5.0,2,,1,102048,1,3,0,1,1,21.0,0.0,540.0,43,2.0,0.0,2.0,4.0,2.1,2,2,814.213700788634,1053.0,49107.4604048978,1,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02266458071387038,23384.504954713237,6,3,6,6_0,6_4,6_1_0 -13875,2,37.0,0.0,2,111,484.0,248.0,0.0,56,38,0.0,0.0,668.9723261467504,732.0,0.0,449.7859194101673,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,101038,2,1,0,1,1,612.0,0.0,344.0,43,2.0,0.0,3.0,4.0,2.1,1,1,586.791759252481,484.0,39101.19905051435,4,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01872065352917537,18619.61859548302,4,2,4_0,4_0_0,4_4_0,4_0_1 -13876,1,28.0,403.0,2,111,588.0,132.0,0.0,55,21,0.0,0.0,812.7184458146471,720.0,0.0,239.40218291186326,50,0,0,0,0,0,0,0,0,0,,2,,2,110561,1,1,0,1,1,574.0,0.0,363.0,43,2.0,0.0,3.0,5.0,2.4,3,3,495.768305411935,588.0,48453.2104757397,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014859696456244126,20188.837698224877,5,3,5,5_0,5_4,5_0_1 -13877,1,63.0,218.0,2,111,268.0,229.0,0.0,0,75,0.0,0.0,370.4226929903494,497.0,0.0,415.3265142940658,70,0,0,0,0,0,0,0,0,0,,2,,2,104759,2,1,0,1,1,531.0,0.0,388.0,11,0.0,2.0,3.0,1.0,1.0,2,2,806.507533936262,268.0,11976.562062047606,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04149771841244306,11976.562062047606,2,1,2_1,2_0_1,2_4_1,2_0_1 -13878,1,38.0,228.0,2,111,0.0,0.0,0.0,90,48,0.0,0.0,0.0,353.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,2,,2,114115,2,2,0,1,1,489.0,0.0,344.0,43,2.0,0.0,3.0,4.0,2.3,2,2,586.791759252481,0.0,21817.5715191072,4,1,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01617961924363822,9485.900660481393,1,1,1_1,1_0_1,1_4_1,1_0_1 -13879,2,41.0,0.0,2,111,480.0,480.0,0.0,46,43,0.0,0.0,663.4436292364467,960.0,0.0,870.5533924067755,70,2,2,2,2,1,2,2,2,3,90.0,2,,2,113172,1,2,0,1,1,671.0,0.0,350.0,43,2.0,0.0,3.0,3.0,1.8,2,2,609.068442886713,480.0,29171.498727765545,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03290883368588355,16206.388182091969,4,2,4_0,4_0_0,4_4_0,4_0_1 -13880,2,32.0,0.0,2,111,2803.3,332.0,0.0,0,46,0.0,0.0,3874.6490121636066,3135.0,0.0,602.132763081353,41,2,1,1,2,1,2,2,2,3,120.0,2,,2,124054,2,1,0,1,1,625.0,0.0,375.0,12,1.0,0.0,3.0,1.0,1.0,1,1,696.036692337309,2803.3,25378.209701771408,0,1,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.12353117248381693,25378.209701771408,7,4,7,7_0,7_4,7_0_1 -13881,2,74.0,0.0,2,111,603.0,645.0,0.0,0,75,0.0,0.0,833.4510592282861,1248.0,0.0,1169.8061210466046,71,0,0,0,0,0,0,0,0,0,,1,,2,131052,2,1,4,0,1,,108.0,,11,0.0,3.0,7.0,1.0,1.0,2,2,815.740587222719,603.0,81907.3139072999,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015236734553552162,81907.3139072999,10,5,10,10_1,10_4,10_0_1 -13882,2,51.0,0.0,2,111,600.0,3000.0,0.0,43,38,0.0,0.0,829.3045365455583,3600.0,0.0,5440.958702542347,42,2,2,1,2,2,2,2,1,2,90.0,1,,2,125107,2,2,3,0,1,,800.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,713.815600138588,600.0,93043.37183573656,1,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03869163304136936,51690.76213096475,10,5,10,10_1,10_4,10_0_1 -13883,2,39.0,0.0,2,111,2001.0,0.0,0.0,54,37,0.0,621.1035028916747,2765.7306293794372,2781.0,309.6588607542345,0.0,10,2,2,1,2,2,2,2,1,2,15.0,1,,2,121658,2,2,3,0,1,,617.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,632.428383833971,2001.0,90688.85360576883,1,1,1,2,121.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.030665290048644933,43185.16838369944,9,5,9,9_1,9_4,9_0_1 -13884,1,46.0,367.0,2,111,0.0,0.0,0.0,84,64,0.0,0.0,0.0,650.0,0.0,0.0,33,2,2,2,1,1,1,2,2,0,,1,,2,124379,1,3,3,0,2,,109.0,800.0,42,1.0,2.0,3.0,3.0,1.8,3,2,662.555385137709,0.0,9275.836961962403,3,4,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,1,1,0,1,0.07007453911334008,5153.242756645779,1,1,1_1,1_1_1,1_4_1,1_0_1 -13885,2,54.0,0.0,1,111,1566.0,0.0,0.0,78,47,0.0,0.0,2164.4848403839073,1566.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,1,113010,2,3,0,0,1,,0.0,189.0,42,1.0,1.0,4.0,3.0,2.0,2,2,962.594767952957,1566.0,47114.634101277814,6,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03323808047906559,23557.317050638907,6,3,6,6_0,6_4,6_1_0 -13886,2,39.0,0.0,7,111,1077.0,1500.0,0.0,37,37,0.0,0.0,1488.6016430992772,2577.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,2,45.0,1,,5,101170,2,2,1,0,1,,600.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,552.868236622854,1077.0,227711.87276448563,1,1,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011316932967589706,94879.94698520235,10,5,10,10_1,10_4,10_0_0 -13887,1,26.0,302.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,977.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,1,120255,1,3,0,1,2,300.0,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1113.80723250537,0.0,13315.748358121384,0,4,2,3,19.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07337176805418673,13315.748358121384,3,2,3_1,3_0_1,3_4_1,3_1_0 -13888,2,37.0,0.0,1,111,788.0,1541.0,0.0,33,45,0.0,0.0,1089.1532913298333,2329.0,0.0,2794.839120205919,60,0,0,0,0,0,0,0,0,3,60.0,1,,1,105023,1,3,4,0,2,,365.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,581.502563459449,788.0,54321.76019999684,1,1,1,2,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04287416297677584,36214.50679999789,9,5,9,9_1,9_4,9_1_0 -13889,1,62.0,326.0,2,111,441.0,0.0,0.0,78,63,3285.8867294396014,31.055175144583732,609.5388343609853,2776.0,180.63433543997013,0.0,50,1,2,2,1,1,1,2,2,0,,1,,2,127340,1,2,1,0,2,,737.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,637.761094765474,441.0,11305.49513705455,7,4,1,2,117.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,1,0.24554430976680236,7536.996758036366,1,1,1_1,1_1_1,1_4_1,1_0_1 -13890,2,51.0,0.0,7,111,90.0,0.0,0.0,46,46,0.0,0.0,124.39568048183375,90.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,60.0,1,,5,110811,1,2,5,0,1,,0.0,700.0,43,2.0,2.0,4.0,2.0,1.5,2,2,603.337013646099,90.0,67124.5127635392,1,1,2,3,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0013407918552354296,44749.6751756928,10,5,10,10_1,10_4,10_0_0 -13891,2,48.0,0.0,7,111,65.0,0.0,0.0,33,38,0.0,0.0,89.84132479243549,65.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,5,116532,2,2,1,0,1,,0.0,700.0,43,2.0,0.0,4.0,4.0,2.5,2,2,572.8324584307,65.0,94601.19445602287,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0006870949185553514,37840.47778240915,9,5,9,9_1,9_4,9_0_0 -13892,2,33.0,0.0,2,111,648.0,0.0,0.0,85,48,0.0,0.0,895.648899469203,648.0,0.0,0.0,30,2,1,2,2,1,1,2,2,0,,2,,2,104495,2,1,0,1,1,300.0,0.0,264.0,42,1.0,0.0,2.0,3.0,1.8,2,2,215.263990113191,648.0,29372.24955013409,6,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.022061640150985364,16317.91641674116,4,2,4_0,4_0_0,4_4_0,4_0_1 -13893,2,89.0,0.0,2,111,1748.0,75.0,0.0,0,78,0.0,0.0,2416.0405498027267,1823.0,0.0,136.02396756355867,50,0,0,0,0,0,0,0,0,0,,2,,2,111024,2,2,0,1,1,468.0,0.0,341.0,11,0.0,5.0,4.0,1.0,1.0,2,2,206.636444760041,1748.0,20495.390833696638,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08894682784008154,20495.390833696638,5,3,5,5_0,5_4,5_0_1 -13894,1,51.0,296.0,2,111,471.0,187.0,0.0,0,38,0.0,0.0,651.0040611882633,658.0,0.0,339.15309245847294,10,0,0,0,0,0,0,0,0,0,,2,,2,129024,2,2,0,1,2,453.0,0.0,540.0,32,1.0,0.0,3.0,3.0,2.0,2,2,758.493620890337,471.0,21941.84325061638,0,4,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029988364809848678,10970.92162530819,2,1,2_1,2_0_1,2_4_1,2_0_1 -13895,2,44.0,0.0,1,111,120.0,500.0,0.0,0,54,0.0,0.0,165.86090730911167,620.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,3,70.0,8,,1,100411,2,1,0,0,1,,75.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,812.52603908803,120.0,20031.98841449979,0,1,1,2,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030950497133436058,20031.98841449979,5,3,5,5_0,5_4,5_1_0 -13896,2,71.0,0.0,1,111,480.0,0.0,0.0,75,78,1941.6603401234008,0.0,663.4436292364467,2196.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,133131,2,1,2,0,1,,250.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,533.740610877781,480.0,22892.282900659568,5,5,0,1,85.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09592752324132467,15261.521933773045,3,2,3_0,3_1_0,3_4_0,3_1_0 -13897,2,71.0,0.0,2,111,350.0,300.0,0.0,86,74,2539.0942909306013,0.0,483.76097965157567,2350.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,1,,2,119684,2,1,1,0,1,,400.0,,41,0.0,2.0,7.0,2.0,1.5,5,4,724.406165227841,350.0,62797.20278826938,6,5,0,1,135.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037422049003096425,41864.80185884625,9,5,9,9_1,9_4,9_0_1 -13898,2,52.0,0.0,2,111,500.0,450.0,0.0,0,48,0.0,0.0,691.0871137879653,950.0,0.0,816.143805381352,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,129863,2,1,2,0,1,,160.0,,12,1.0,1.0,3.0,1.0,1.0,4,3,796.724538232304,500.0,34148.3892757354,0,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027819760174604646,34148.3892757354,9,5,9,9_1,9_4,9_0_1 -13899,2,50.0,0.0,2,111,400.0,1300.0,0.0,0,37,0.0,0.0,552.8696910303722,1700.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,3,50.0,1,,2,114623,2,2,1,0,2,,1200.0,600.0,32,1.0,0.0,4.0,3.0,2.0,1,1,814.05110191924,400.0,42848.93038224393,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039674269225270065,21424.465191121966,6,3,6,6_1,6_4,6_0_1 -13900,2,32.0,0.0,1,111,350.0,980.0,0.0,0,63,0.0,0.0,483.76097965157567,1330.0,0.0,1777.3798428305,42,0,0,0,0,0,0,0,0,2,30.0,2,,1,124033,2,1,0,0,1,,200.0,400.0,12,1.0,0.0,3.0,1.0,1.0,3,2,806.21189075147,350.0,24270.00501330993,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.054800153492783124,24270.00501330993,7,4,7,7_0,7_4,7_1_0 -13901,2,54.0,0.0,7,111,1300.0,0.0,0.0,0,47,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,5,114540,2,1,0,0,1,,280.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,831.606394674639,1300.0,20926.033090208508,0,1,0,1,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0621235756627128,20926.033090208508,5,3,5,5_0,5_4,5_0_0 -13902,2,68.0,0.0,6,111,1200.0,0.0,0.0,37,77,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,131881,1,1,2,0,1,,175.0,,42,2.0,0.0,5.0,3.0,2.0,3,2,592.982896323633,1200.0,58219.92915341171,4,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020611498802033144,29109.964576705854,8,4,8,8_1,8_4,8_0_0 -13903,2,91.0,0.0,2,111,221.0,145.0,0.0,0,77,0.0,0.0,305.46050429428067,366.0,0.0,262.97967062288006,50,0,0,0,0,0,0,0,0,0,,2,,2,119759,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,794.298673295498,221.0,23508.205866889424,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015569031599961425,23508.205866889424,6,3,6,6_0,6_4,6_0_1 -13904,2,57.0,0.0,2,111,517.0,105.0,0.0,74,90,0.0,0.0,714.5840756567561,622.0,0.0,190.43355458898213,60,2,2,2,2,1,2,2,2,3,45.0,2,,2,125090,1,3,0,1,1,,0.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,734.07927026461,517.0,147720.69855286437,5,1,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.00421064892119642,73860.34927643219,10,5,10,10_0,10_4,10_0_1 -13905,2,60.0,0.0,2,111,240.0,240.0,0.0,0,54,0.0,0.0,331.72181461822333,480.0,0.0,435.27669620338776,31,2,1,2,2,1,2,2,2,3,60.0,2,,2,128901,2,1,0,1,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,838.897685729223,240.0,41437.3018138661,0,1,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011583765809755942,41437.3018138661,9,5,9,9_0,9_4,9_0_1 -13906,2,31.0,0.0,2,111,420.0,0.0,0.0,0,37,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,115855,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,614.809061939963,420.0,40568.895692665246,0,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010352758999943272,25355.55980791578,7,4,7,7_0,7_4,7_0_1 -13907,2,30.0,0.0,1,111,0.0,0.0,900.0,34,37,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,31,0,0,0,0,0,0,0,0,2,45.0,2,,1,126977,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,877.464674216533,0.0,87991.82512295792,1,1,1,2,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010228222891642024,48884.347290532176,10,5,10,10_0,10_4,10_1_0 -13908,1,68.0,91.0,7,111,336.0,1316.0,0.0,0,77,0.0,0.0,464.41054046551267,1652.0,0.0,2386.767217515243,71,0,0,0,0,0,0,0,0,0,,2,,5,105376,2,1,0,0,1,,0.0,437.0,11,0.0,1.0,3.0,1.0,1.0,2,2,635.303905232573,336.0,13035.055968093102,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12673516738583449,13035.055968093102,2,1,2_1,2_0_1,2_4_1,2_0_0 -13909,2,83.0,0.0,2,111,349.0,1011.0,0.0,0,86,0.0,0.0,482.3788054239998,1360.0,0.0,1833.6030827567708,71,0,0,0,0,0,0,0,0,0,,1,,2,108377,2,1,2,0,1,,156.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,864.652978720658,349.0,17969.908576862217,0,6,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07568207674418086,17969.908576862217,4,2,4_0,4_1_0,4_4_0,4_0_1 -13910,2,55.0,0.0,7,111,2130.0,0.0,0.0,42,43,0.0,0.0,2944.0311047367322,2130.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,110705,2,1,1,0,1,,575.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,655.403651986651,2130.0,105132.49841493799,1,1,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020260148214049808,52566.249207468994,10,5,10,10_1,10_4,10_0_0 -13911,2,79.0,0.0,2,111,291.0,0.0,0.0,78,74,0.0,0.0,402.2127002245958,291.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129636,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,658.894189763367,291.0,56464.373675479575,5,5,0,1,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005153692161228572,37642.91578365305,9,5,9,9_0,9_4,9_0_1 -13912,2,28.0,0.0,2,111,500.0,0.0,0.0,55,46,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,113119,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,658.894189763367,500.0,48323.15984823255,1,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010347005484954598,32215.4398988217,8,4,8,8_0,8_4,8_0_1 -13913,2,44.0,0.0,9,111,0.0,0.0,0.0,65,46,0.0,0.0,0.0,1908.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,132281,2,1,1,0,1,,540.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,518.278713672799,0.0,57717.06242759003,1,1,1,2,92.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03305781548383054,25094.374968517408,7,4,7,7_1,7_4,7_0_0 -13914,2,32.0,0.0,5,111,495.0,1109.0,0.0,54,85,0.0,0.0,684.1762426500857,1604.0,0.0,2011.341067039821,71,0,0,0,0,0,0,0,0,0,,1,,3,107027,2,1,1,0,1,,388.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,675.25284923782,495.0,62618.71514989463,1,7,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025615345127417533,29818.43578566411,8,4,8,8_1,8_4,8_0_0 -13915,2,62.0,0.0,6,111,1800.0,0.0,0.0,74,75,0.0,0.0,2487.913609636675,1860.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,113725,2,1,2,0,1,,626.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,615.400578732787,1800.0,69096.75032224155,5,5,0,1,103.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026918776806805697,46064.500214827705,10,5,10,10_1,10_4,10_0_0 -13916,2,59.0,0.0,6,111,1553.0,0.0,0.0,72,77,0.0,0.0,2146.5165754254203,1733.0,309.6588607542345,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,100209,2,2,2,0,1,,540.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,634.736301953565,1553.0,25925.958021980066,5,7,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0668442029617868,17283.972014653376,4,2,4_0,4_1_0,4_4_0,4_0_0 -13917,2,55.0,0.0,8,111,704.0,1200.0,0.0,0,37,0.0,0.0,973.0506562134551,1904.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,90.0,1,1999.0,6,114906,2,1,2,0,1,,361.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,865.597052785643,704.0,19502.92287974916,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.097626392297178,19502.92287974916,5,3,5,5_1,5_4,5_0_0 -13918,2,88.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,3471.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103447,2,1,2,0,2,,269.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,869.710512949429,0.0,49084.57671700208,0,5,0,1,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07071467723990178,49084.57671700208,10,5,10,10_1,10_4,10_0_1 -13919,1,20.0,200.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1244.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,132873,2,1,0,0,1,,0.0,476.0,12,1.0,0.0,1.0,1.0,1.0,1,1,822.849272260443,0.0,5433.465706993348,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.22895147721257586,5433.465706993348,1,1,1_1,1_0_1,1_4_1,1_1_0 -13920,2,42.0,0.0,1,111,1800.0,1500.0,0.0,85,47,0.0,0.0,2487.913609636675,3300.0,0.0,2720.4793512711735,10,2,2,1,2,2,2,1,2,2,30.0,1,,1,113629,2,2,3,0,1,,1440.0,,42,1.0,1.0,4.0,5.0,2.4,1,1,451.641209548942,1800.0,71580.00946521337,6,1,1,2,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04610225710578793,29825.003943838907,8,4,8,8_1,8_4,8_1_0 -13921,2,32.0,0.0,7,111,1920.0,0.0,0.0,42,34,0.0,0.0,2653.7745169457867,2070.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,122578,2,2,1,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,634.409648844126,1920.0,51454.62212344037,1,1,1,2,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04022962203539345,24502.20101116208,7,4,7,7_1,7_4,7_0_0 -13922,2,52.0,0.0,7,111,1999.0,0.0,0.0,85,38,0.0,51.75862524097289,2762.966280924285,2049.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,,5,109280,2,1,2,0,1,,513.0,,42,1.0,0.0,6.0,3.0,2.0,2,2,655.403651986651,1999.0,93562.01579615238,6,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02189991293544001,46781.00789807619,10,5,10,10_1,10_4,10_0_0 -13923,2,57.0,0.0,6,111,1985.0,0.0,0.0,52,33,0.0,0.0,2743.615841738222,1985.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,80.0,1,,4,104191,2,1,2,0,1,,577.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,602.058093210392,1985.0,126248.60727718717,1,1,0,1,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015722945724397586,50499.442910874866,10,5,10,10_1,10_4,10_0_0 -13924,2,70.0,0.0,1,111,492.0,1950.0,0.0,78,78,0.0,0.0,680.0297199673578,2442.0,0.0,3536.6231566525253,71,0,0,0,0,0,0,0,0,0,,1,,1,118128,2,2,3,0,1,,540.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,563.029512541011,492.0,42683.683100254544,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05721155773423491,28455.78873350303,8,4,8,8_1,8_4,8_1_0 -13925,2,51.0,0.0,1,111,0.0,0.0,0.0,35,35,0.0,0.0,0.0,806.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,1,,1,110588,2,1,1,0,2,,450.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,691.621478134645,0.0,111784.65715989802,1,1,1,2,90.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007210291827858707,44713.862863959206,10,5,10,10_1,10_4,10_1_0 -13926,2,46.0,0.0,5,111,0.0,0.0,0.0,55,48,0.0,0.0,0.0,1316.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,124125,2,1,0,1,2,,150.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,166.115622969674,0.0,18919.31383193242,1,1,0,1,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06955854803670666,12612.875887954948,2,1,2_0,2_0_0,2_4_0,2_0_0 -13927,2,37.0,0.0,2,111,0.0,0.0,660.0,38,37,0.0,0.0,337.2028009927665,660.0,0.0,754.5422112707369,44,0,0,0,0,0,0,0,0,2,75.0,2,,2,132926,2,1,0,1,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,4,2,190.537448453092,0.0,91034.88680724816,1,1,1,2,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00724996782164891,43349.946098689594,10,5,10,10_0,10_4,10_0_1 -13928,2,52.0,0.0,6,111,0.0,0.0,0.0,46,53,0.0,0.0,0.0,1597.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,80.0,1,,4,103788,2,1,2,0,1,,600.0,711.0,43,3.0,0.0,4.0,4.0,2.5,1,1,188.745814328831,0.0,74344.7046690554,1,1,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021481018817803194,29737.88186762216,8,4,8,8_1,8_4,8_0_0 -13929,1,58.0,103.0,5,111,300.0,300.0,0.0,0,77,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,70,2,1,2,2,2,2,2,1,0,,8,,3,127870,2,1,0,0,1,,173.0,440.0,11,0.0,5.0,3.0,1.0,1.0,2,2,195.840845744911,300.0,2050.759744392588,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.29257449666670404,2050.759744392588,1,1,1_1,1_0_1,1_4_1,1_0_0 -13930,1,51.0,22.0,5,111,300.0,300.0,0.0,56,47,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,43,0,0,0,0,0,0,0,0,1,35.0,8,,3,104871,2,2,0,0,1,,280.0,540.0,43,2.0,0.0,4.0,4.0,2.5,2,2,174.373428521731,300.0,32232.652741912872,1,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01861466398078387,12893.061096765148,2,1,2_1,2_0_1,2_4_1,2_0_0 -13931,2,51.0,0.0,6,111,450.0,300.0,0.0,56,37,0.0,310.55175144583734,621.9784024091688,1050.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,118514,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.5,3,2,189.903717002407,450.0,81716.73766603737,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01284926478943854,32686.695066414948,8,4,8,8_1,8_4,8_0_0 -13932,2,56.0,0.0,2,111,200.0,100.0,0.0,55,47,0.0,0.0,276.4348455151861,300.0,0.0,181.36529008474488,10,0,0,0,0,0,0,0,0,2,180.0,2,,2,117977,2,2,0,1,1,1092.0,0.0,590.0,43,2.0,1.0,3.0,2.0,1.5,1,1,232.329323220034,200.0,32882.68350476802,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009123342988612827,21921.78900317868,6,3,6,6_0,6_4,6_0_1 -13933,2,36.0,0.0,5,111,600.0,80.0,0.0,0,33,0.0,0.0,829.3045365455583,680.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,3,60.0,2,,3,124497,2,1,0,1,1,330.0,0.0,365.0,12,1.0,0.0,3.0,1.0,1.0,2,2,226.923550560717,600.0,15853.845156926876,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.042891802794156456,15853.845156926876,3,2,3_0,3_0_0,3_4_0,3_0_0 -13934,2,40.0,0.0,1,111,400.0,0.0,0.0,54,46,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,102215,2,1,0,1,1,488.0,0.0,350.0,43,2.0,0.0,3.0,3.0,1.8,1,1,198.569953446306,400.0,51388.951138777324,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007783774354915099,28549.417299320736,8,4,8,8_0,8_4,8_1_0 -13935,1,36.0,138.0,6,111,264.0,0.0,0.0,0,52,0.0,0.0,364.89399608004567,264.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,,4,112257,2,1,0,1,1,453.0,0.0,249.0,32,1.0,0.0,1.0,2.0,1.3,1,1,195.667177027434,264.0,15596.853410685784,0,1,2,3,41.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01692649107153416,11997.579546681372,2,1,2_1,2_0_1,2_4_1,2_0_0 -13936,2,49.0,0.0,1,111,1200.0,500.0,0.0,85,47,0.0,0.0,1658.6090730911167,1700.0,0.0,906.8264504237244,60,0,0,0,0,0,0,0,0,0,,1,,1,102708,2,1,1,0,1,,1080.0,,42,3.0,0.0,4.0,5.0,2.8,2,2,417.422541500116,1200.0,97028.7694801576,6,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01752057672284147,34653.13195719915,9,5,9,9_1,9_4,9_1_0 -13937,2,80.0,0.0,2,111,0.0,1600.0,0.0,0,77,0.0,0.0,0.0,1672.0,0.0,2901.844641355918,33,0,0,0,0,0,0,0,0,0,,1,,2,100112,2,1,2,0,1,,312.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,236.732917067063,0.0,14373.373594779085,0,5,0,1,80.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1163262047684706,14373.373594779085,3,2,3_0,3_1_0,3_4_0,3_0_1 -13938,2,76.0,0.0,6,111,224.0,0.0,0.0,0,77,0.0,0.0,309.60702697700845,2780.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,116105,2,2,3,0,1,,345.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,184.840895326382,224.0,11752.029592807867,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23655488424751195,11752.029592807867,2,1,2_0,2_1_0,2_4_0,2_0_0 -13939,2,47.0,0.0,5,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,5160.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,115211,2,2,2,0,1,,946.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,628.312694758578,0.0,94520.34661557742,1,1,1,2,130.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05459142062804927,52511.303675320785,10,5,10,10_1,10_4,10_0_0 -13940,1,41.0,721.0,5,111,390.0,0.0,0.0,68,68,0.0,0.0,539.0479487546129,390.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,10.0,2,,3,119880,2,2,0,1,1,,0.0,833.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,1,1,828.555088362892,390.0,42970.96139705462,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.009075896543164892,15915.170887798009,3,2,3_1,3_0_1,3_4_1,3_0_0 -13941,2,56.0,0.0,2,111,850.0,700.0,0.0,56,47,0.0,0.0,1174.848093439541,1550.0,0.0,1269.5570305932142,31,2,1,2,2,1,2,2,2,0,,1,,2,117328,2,2,2,1,1,,550.0,,43,3.0,4.0,6.0,3.0,2.0,1,1,502.522038063284,850.0,34141.84499582937,1,4,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.045398835364326144,17070.922497914686,4,2,4_0,4_1_0,4_4_0,4_0_1 -13942,2,81.0,0.0,5,111,274.0,0.0,0.0,0,77,0.0,0.0,378.715738355805,274.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,3,101315,1,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,672.547097399483,274.0,27321.779085846705,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01002862950977955,27321.779085846705,7,4,7,7_0,7_4,7_0_0 -13943,1,26.0,300.0,5,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,495.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,30.0,2,,3,127035,2,2,0,1,1,272.0,0.0,680.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1170.18670640568,0.0,16654.851735765158,0,1,3,4,39.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029721069142694394,16654.851735765158,4,2,4_1,4_0_1,4_4_1,4_0_0 -13944,2,41.0,0.0,7,111,740.0,0.0,0.0,54,33,0.0,0.0,1022.8089284061887,740.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,5,103794,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,738.115404333428,740.0,74794.63319926032,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009893757992349084,49863.088799506884,10,5,10,10_0,10_4,10_0_0 -13945,2,72.0,0.0,6,111,469.0,626.0,0.0,78,78,0.0,372.6621017350048,648.2397127331114,1455.0,0.0,1135.346715930503,50,0,0,0,0,0,0,0,0,0,,1,,4,126022,2,1,2,0,1,,190.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,637.567385967948,469.0,39973.83041574584,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036398813545445725,26649.220277163895,7,4,7,7_1,7_4,7_0_0 -13946,2,56.0,0.0,2,111,316.0,2200.0,0.0,0,52,0.0,0.0,436.76705591399406,2516.0,0.0,3990.0363818643877,70,0,0,0,0,0,0,0,0,2,35.0,1,,2,114894,1,3,3,0,1,,200.0,,22,2.0,1.0,3.0,2.0,1.5,1,1,621.600010194482,316.0,37801.54541300441,0,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06655812540231361,25201.030275336274,7,4,7,7_1,7_4,7_0_1 -13947,1,28.0,61.0,6,111,164.0,0.0,0.0,0,52,0.0,0.0,226.6765733224526,164.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,4,128298,1,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,4,2,597.182297297265,164.0,19900.553247033098,0,1,1,2,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.008240976919797452,15308.117882333152,3,2,3_1,3_0_1,3_4_1,3_0_0 -13948,1,41.0,282.0,5,111,550.0,0.0,0.0,55,55,0.0,0.0,760.1958251667618,550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,101646,2,2,0,1,1,880.0,0.0,450.0,43,3.0,2.0,3.0,5.0,2.8,2,2,574.279248668479,550.0,40390.370329147656,1,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013617107135140409,14425.132260409879,3,2,3_1,3_0_1,3_4_1,3_0_0 -13949,2,44.0,0.0,6,111,2866.0,0.0,0.0,37,35,0.0,0.0,3961.311336232617,2916.0,86.01635020950958,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,4,119450,2,1,3,0,1,,371.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,600.804648366929,2866.0,74793.91692140517,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03898712783105325,35616.15091495484,9,5,9,9_1,9_4,9_0_0 -13950,2,27.0,0.0,5,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,618.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,3,129017,2,1,0,1,1,470.0,0.0,343.0,43,2.0,0.0,2.0,2.0,1.5,1,1,212.554820206039,0.0,18323.937539678922,1,1,2,3,49.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033726375603593595,12215.958359785947,2,1,2_0,2_0_0,2_4_0,2_0_0 -13951,2,46.0,0.0,7,111,858.0,0.0,0.0,0,45,0.0,0.0,1185.9054872601484,858.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,45.0,2,,5,121961,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,816.206728460418,858.0,31438.02962976408,0,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027291786734232385,31438.02962976408,8,4,8,8_0,8_4,8_0_0 -13952,2,28.0,0.0,7,111,1365.0,0.0,0.0,43,42,0.0,0.0,1886.6678206411452,1365.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,45.0,2,,5,123132,2,2,0,0,1,,760.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,686.157451533009,1365.0,43430.1778136936,1,1,1,2,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03142975849317415,28953.45187579573,8,4,8,8_0,8_4,8_0_0 -13953,2,53.0,0.0,1,111,1400.0,1200.0,0.0,54,65,0.0,0.0,1935.0439186063027,2600.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,2,90.0,1,,1,109447,2,1,2,0,1,,580.0,,43,2.0,4.0,4.0,4.0,2.5,2,2,170.956801773879,1400.0,56460.70640770137,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046049724940128524,22584.28256308055,6,3,6,6_1,6_4,6_1_0 -13954,2,55.0,0.0,6,111,2350.0,650.0,0.0,53,43,0.0,0.0,3248.1094348034367,3000.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,2,150.0,1,,4,118882,1,1,1,0,1,,360.0,,43,2.0,1.0,5.0,4.0,2.5,1,1,175.500681229059,2350.0,61601.125744820114,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048700408697519015,24640.450297928044,7,4,7,7_1,7_4,7_0_0 -13955,2,47.0,0.0,5,111,300.0,0.0,0.0,0,52,0.0,626.279365415772,414.65226827277917,905.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,3,109239,1,1,0,1,1,605.0,0.0,486.0,32,3.0,0.0,3.0,3.0,2.0,4,3,213.719263849683,300.0,46480.92290628101,0,1,2,3,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019470353500182037,23240.461453140506,6,3,6,6_0,6_4,6_0_0 -13956,1,24.0,207.0,7,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,189.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,90.0,2,,5,132656,1,1,0,1,1,,0.0,632.0,12,1.0,0.0,1.0,1.0,1.0,1,1,228.05554055686,0.0,5345.145771963342,0,1,3,4,19.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03535918533622664,5345.145771963342,1,1,1_1,1_0_1,1_4_1,1_0_0 -13957,2,25.0,0.0,7,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,297.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,102400,2,2,0,1,1,,0.0,790.0,31,0.0,0.0,1.0,2.0,1.3,2,2,277.91497847939,0.0,18903.483038782757,0,6,3,4,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015711390297262623,14541.140799063658,3,2,3_0,3_0_0,3_4_0,3_0_0 -13958,1,36.0,316.0,5,111,150.0,250.0,0.0,81,67,0.0,0.0,207.32613413638958,400.0,0.0,453.4132252118622,41,0,0,0,0,0,0,0,0,1,10.0,2,,3,121283,1,1,0,1,1,291.0,0.0,322.0,43,2.0,0.0,1.0,2.0,1.5,2,2,200.762822611439,150.0,9343.54120872093,4,1,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04281032116887912,6229.0274724806195,1,1,1_1,1_0_1,1_4_1,1_0_0 -13959,1,46.0,411.0,6,111,625.0,231.0,0.0,0,52,0.0,0.0,863.8588922349566,856.0,0.0,418.9538200957607,71,0,0,0,0,0,0,0,0,1,10.0,8,,4,113747,2,3,0,1,1,405.0,0.0,421.0,32,1.0,1.0,3.0,5.0,2.8,1,1,161.425726976899,625.0,22798.06778671902,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037547041618091054,8142.167066685365,1,1,1_1,1_0_1,1_4_1,1_0_0 -13960,2,51.0,0.0,6,111,310.0,1225.0,0.0,0,21,0.0,0.0,428.47401054853844,1535.0,0.0,2221.724803538125,50,0,0,0,0,0,0,0,0,0,,2,,4,111132,2,1,0,0,1,,0.0,385.0,12,1.0,0.0,2.0,1.0,1.0,1,1,300.711801644519,310.0,25540.599465802927,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.060100390441315106,25540.599465802927,7,4,7,7_0,7_4,7_0_0 -13961,2,35.0,0.0,6,111,414.0,1463.0,0.0,0,63,0.0,0.0,572.2201302164352,1877.0,0.0,2653.374193939818,71,0,0,0,0,0,0,0,0,0,,2,,4,114238,2,1,0,0,1,,0.0,449.0,22,2.0,4.0,3.0,2.0,1.5,1,1,252.798263316827,414.0,35297.19757462495,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05317702619398231,23531.465049749968,6,3,6,6_0,6_4,6_0_0 -13962,2,44.0,0.0,2,111,150.0,0.0,0.0,0,85,0.0,0.0,207.32613413638958,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132386,2,2,2,0,1,,162.0,,31,0.0,0.0,5.0,2.0,1.3,1,1,600.885970788783,150.0,14071.000271176039,0,6,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01066022294856108,10823.846362443106,2,1,2_0,2_1_0,2_4_0,2_0_1 -13963,2,58.0,0.0,6,111,1660.0,0.0,0.0,52,48,0.0,434.77245202417225,2294.409217776045,2080.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,30.0,1,,4,104585,1,3,3,0,1,,480.0,554.0,43,3.0,2.0,4.0,3.0,2.0,2,2,186.782803759834,1660.0,56233.19069857328,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,1,0,0,0.03698883122512863,28116.59534928664,8,4,8,8_1,8_4,8_0_0 -13964,2,73.0,0.0,5,111,2500.0,0.0,0.0,56,86,0.0,0.0,3455.435568939826,2900.0,688.1308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102370,2,1,1,0,1,,800.0,,42,2.0,2.0,8.0,5.0,3.0,5,5,131.489551566418,2500.0,27156.475677599097,1,5,1,2,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1067885256698519,9052.158559199699,1,1,1_0,1_1_0,1_4_0,1_0_0 -13965,2,29.0,0.0,6,111,1433.0,0.0,0.0,54,47,0.0,0.0,1980.6556681163086,1433.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,4,119985,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,714.165201039281,1433.0,56201.071627525846,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025497734447080422,31222.817570847692,8,4,8,8_0,8_4,8_0_0 -13966,2,59.0,0.0,2,111,1100.0,0.0,0.0,46,65,0.0,258.79312620486445,1520.3916503335236,1350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,1,,2,122417,2,1,3,0,1,,328.0,,43,2.0,2.0,5.0,2.0,1.5,4,4,586.318372929427,1100.0,59252.573536467884,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022783820506448085,39501.71569097859,9,5,9,9_1,9_4,9_0_1 -13967,2,40.0,0.0,5,111,820.0,0.0,0.0,63,56,0.0,0.0,1133.3828666122631,820.0,0.0,0.0,70,2,2,2,2,1,2,2,2,1,10.0,2,,3,122038,2,2,0,0,1,,0.0,386.0,43,2.0,0.0,2.0,5.0,2.4,1,1,751.076494280639,820.0,40723.35078831231,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.020135867607322278,16968.062828463462,4,2,4_0,4_0_0,4_4_0,4_0_0 -13968,2,57.0,0.0,8,111,838.0,0.0,0.0,0,43,0.0,0.0,1158.2620027086298,838.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2003.0,6,132003,2,1,0,0,1,,0.0,896.0,32,1.0,2.0,3.0,2.0,1.5,2,2,902.486594240985,838.0,47093.732158274826,0,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017794300039410984,31395.821438849885,8,4,8,8_0,8_4,8_0_0 -13969,2,42.0,0.0,7,111,440.0,100.0,0.0,0,52,0.0,0.0,608.1566601334094,540.0,0.0,181.36529008474488,70,0,0,0,0,0,0,0,0,2,15.0,2,,5,123489,2,2,0,1,1,228.0,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,2,2,699.332575080967,440.0,20219.319393169186,0,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026707130418169835,20219.319393169186,5,3,5,5_0,5_4,5_0_0 -13970,2,51.0,0.0,6,111,1920.0,0.0,0.0,38,43,0.0,300.2000263976428,2653.7745169457867,2210.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,90.0,1,,4,110033,2,2,1,0,1,,508.0,,43,2.0,0.0,9.0,4.0,2.5,4,3,553.664737108195,1920.0,70264.38879664546,1,1,0,1,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03145263251909919,28105.755518658185,8,4,8,8_1,8_4,8_0_0 -13971,2,36.0,0.0,1,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,2867.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,75.0,1,,1,125473,2,2,5,0,1,,439.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,703.24104415216,0.0,78841.81622228489,1,1,1,2,105.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03636395173744911,43801.00901238049,10,5,10,10_1,10_4,10_1_0 -13972,2,39.0,0.0,6,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,2119.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,120137,2,1,1,0,1,,1182.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,570.091657418249,0.0,55333.750427164865,1,1,1,2,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038294892062109794,26349.4049653166,7,4,7,7_1,7_4,7_0_0 -13973,2,68.0,0.0,1,111,331.0,1000.0,0.0,86,78,0.0,0.0,457.499669327633,1331.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,122868,2,2,2,0,1,,532.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,420.129811761356,331.0,19954.583694694622,6,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06670146670881821,13303.05579646308,3,2,3_0,3_1_0,3_4_0,3_1_0 -13974,2,49.0,0.0,2,112,1205.0,0.0,0.0,54,53,0.0,0.0,1665.5199442289963,1885.0,1169.8223628493304,0.0,71,0,0,0,0,0,0,0,0,3,80.0,1,,2,120986,2,1,2,0,1,,435.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,757.893529011957,1205.0,78822.37779551822,1,1,0,1,60.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023914528497098696,39411.18889775911,9,5,9,9_1,9_0,9_0_1 -13975,2,39.0,0.0,1,112,0.0,0.0,0.0,42,46,0.0,0.0,0.0,753.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,30.0,1,,1,126652,1,2,5,0,2,,0.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,651.397288002607,0.0,22494.3287484027,1,1,3,4,50.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03347510425504339,12496.849304668165,2,1,2_0,2_1_0,2_0_0,2_1_0 -13976,2,46.0,0.0,9,112,2073.0,0.0,0.0,43,38,0.0,0.0,2865.247173764904,2073.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,1,2006.0,6,119842,1,1,1,0,1,,366.0,,43,2.0,2.0,8.0,4.0,2.3,3,3,1258.44569169087,2073.0,79981.465015165,1,1,1,2,157.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.025918504988711396,34774.55000659348,9,5,9,9_1,9_0,9_0_0 -13977,2,42.0,0.0,6,112,2260.0,0.0,0.0,56,46,0.0,258.79312620486445,3123.713754321603,2510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,116333,2,1,2,0,1,,540.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,2,2,612.652943445759,2260.0,96479.04312701333,1,1,0,1,156.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02601601258312253,37107.324279620516,9,5,9,9_1,9_0,9_0_0 -13978,2,38.0,0.0,1,112,900.0,1500.0,0.0,43,37,0.0,0.0,1243.9568048183376,2400.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,1,10.0,1,,1,100849,2,2,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,617.261768032247,900.0,49297.776153947576,4,1,1,2,100.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04868373762956886,23475.131501879798,6,3,6,6_1,6_0,6_1_0 -13979,2,53.0,0.0,1,112,660.0,0.0,0.0,77,74,4182.037655650402,0.0,912.2349902001142,3460.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,111408,2,1,2,0,1,,559.0,,41,0.0,2.0,7.0,2.0,1.5,3,2,615.046188484028,660.0,40597.437572213916,6,7,0,1,120.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08522705389583815,27064.958381475943,7,4,7,7_1,7_0,7_1_0 -13980,2,48.0,0.0,5,112,780.0,1500.0,0.0,48,37,0.0,310.55175144583734,1078.0958975092258,2580.0,0.0,2720.4793512711735,43,0,0,0,0,0,0,0,0,3,55.0,1,,3,125169,2,1,2,0,1,,670.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,669.825076622902,780.0,71781.33642844591,1,1,1,2,115.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0359424904629887,25636.191581587827,7,4,7,7_1,7_1,7_0_0 -13981,2,89.0,0.0,2,112,593.0,2014.0,0.0,0,78,0.0,0.0,819.6293169525268,2607.0,0.0,3652.696942306762,71,0,0,0,0,0,0,0,0,0,,1,,2,114196,2,1,2,0,2,,235.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,944.838960413347,593.0,23167.79963505478,0,5,0,1,95.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11252687096168577,23167.79963505478,6,3,6,6_1,6_1,6_0_1 -13982,2,67.0,0.0,5,112,625.0,1440.0,0.0,0,74,0.0,103.51725048194578,863.8588922349566,2165.0,0.0,2611.660177220326,50,0,0,0,0,0,0,0,0,0,,1,,3,111436,2,2,3,0,1,,178.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,940.404672278926,625.0,34056.3789976955,0,5,0,1,140.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06357105669238938,34056.3789976955,9,5,9,9_1,9_1,9_0_0 -13983,0,47.0,0.0,2,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,3682.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,,2,131826,2,1,2,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1232.49466652421,0.0,21058.014038426998,0,1,5,0,80.0,10,2,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17485029657977377,21058.014038426998,5,3,5,5_1,5_1,5_0_1 -13984,2,61.0,0.0,5,112,490.0,1595.0,0.0,77,74,0.0,20.703450096389155,677.265371512206,2105.0,0.0,2892.776376851681,71,0,0,0,0,0,0,0,0,0,,1,,3,100771,2,3,3,0,1,,341.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,861.260317493722,490.0,75852.49658773256,5,5,0,1,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027751228960081937,50568.33105848837,10,5,10,10_1,10_1,10_0_0 -13985,2,44.0,0.0,5,112,700.0,545.0,0.0,85,37,0.0,621.1035028916747,967.5219593031513,1845.0,0.0,988.4408309618597,71,2,2,2,2,1,2,2,2,3,70.0,1,,3,122438,2,1,3,0,1,,414.0,,42,1.0,0.0,6.0,3.0,1.8,1,1,869.846739513332,700.0,45967.94667036752,7,1,0,1,132.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.04013666334131363,25537.748150204177,7,4,7,7_1,7_1,7_0_0 -13986,2,73.0,0.0,2,112,2995.0,0.0,0.0,86,86,0.0,155.27587572291867,4139.611811589912,3145.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,111689,2,1,2,0,1,,1468.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,763.751581591896,2995.0,54041.51744762558,5,5,0,1,121.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058195997235791566,36027.67829841705,9,5,9,9_1,9_1,9_0_1 -13987,2,60.0,0.0,2,112,1070.0,811.0,0.0,46,62,0.0,0.0,1478.9264235062458,1881.0,0.0,1470.8725025872811,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,129921,2,1,2,0,1,,496.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,861.260317493722,1070.0,47144.24843736838,4,1,0,1,112.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03989882249366915,31429.498958245586,8,4,8,8_1,8_1,8_0_1 -13988,2,64.0,0.0,5,112,830.0,1013.0,0.0,0,74,0.0,155.27587572291867,1147.2046088880224,1993.0,0.0,1837.2303885584658,50,0,0,0,0,0,0,0,0,0,,1,,3,128678,2,1,2,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,994.051250696411,830.0,69058.15213365646,0,5,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02885973543199809,69058.15213365646,10,5,10,10_1,10_1,10_0_0 -13989,1,35.0,120.0,2,112,521.0,989.0,0.0,22,37,0.0,0.0,720.1127725670598,1510.0,0.0,1793.702718938127,60,1,2,2,2,2,2,2,1,0,,1,,2,103030,2,2,2,0,1,,573.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,817.715230228066,521.0,19988.538228983078,4,4,1,2,95.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.0755432929963094,9518.351537610988,1,1,1_1,1_1_1,1_1_1,1_0_1 -13990,2,35.0,0.0,2,112,490.0,1006.0,0.0,46,38,0.0,0.0,677.265371512206,1496.0,0.0,1824.5348182525336,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,111894,2,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,781.499430809689,490.0,65640.31214619828,1,1,1,2,92.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022790872728758717,31257.291498189657,8,4,8,8_1,8_1,8_0_1 -13991,2,62.0,0.0,2,112,820.0,918.0,0.0,77,75,0.0,0.0,1133.3828666122631,1738.0,0.0,1664.933362977958,50,0,0,0,0,0,0,0,0,0,,1,,2,112209,2,1,2,0,1,,605.0,,41,2.0,0.0,6.0,4.0,2.5,1,1,796.543805656945,820.0,111705.28105510556,5,5,0,1,80.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01555879886415239,44682.11242204222,10,5,10,10_1,10_1,10_0_1 -13992,2,51.0,0.0,2,112,790.0,1256.0,0.0,54,48,0.0,0.0,1091.917639784985,2046.0,0.0,2277.9480434643956,60,2,2,2,2,1,2,2,2,0,,1,,2,112252,1,2,2,0,2,,1009.0,,43,4.0,0.0,6.0,5.0,3.0,1,1,708.036098492846,790.0,110833.40650821509,4,1,1,2,72.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.018460138188104398,36944.4688360717,9,5,9,9_1,9_1,9_0_1 -13993,2,64.0,0.0,2,112,255.0,851.0,0.0,75,77,0.0,155.27587572291867,352.4544280318623,1256.0,0.0,1543.4186186211791,33,0,0,0,0,0,0,0,0,0,,1,,2,115895,2,1,1,0,2,,200.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,815.472421946975,255.0,42117.811766238585,5,5,0,1,83.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029821112430318684,28078.54117749239,8,4,8,8_1,8_1,8_0_1 -13994,2,38.0,0.0,2,112,520.0,730.0,0.0,55,38,0.0,0.0,718.7305983394839,1250.0,0.0,1323.9666176186377,43,0,0,0,0,0,0,0,0,3,90.0,1,,2,122615,2,1,3,0,1,,537.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,817.715230228066,520.0,59451.170410331455,1,1,1,2,75.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02102565839112184,28310.081147776884,8,4,8,8_1,8_1,8_0_1 -13995,2,73.0,0.0,2,112,272.0,1200.0,0.0,0,75,0.0,0.0,375.9513899006531,1472.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,1,,2,117408,2,1,2,0,1,,256.0,,11,0.0,2.0,4.0,1.0,1.0,4,2,944.838960413347,272.0,20332.2690703223,0,5,0,1,95.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07239723195226563,20332.2690703223,5,3,5,5_1,5_1,5_0_1 -13996,0,35.0,0.0,2,112,1750.0,1450.0,0.0,22,37,0.0,414.0690019277831,2418.8048982578784,3600.0,0.0,2629.7967062288008,42,0,0,0,0,0,0,0,0,2,30.0,1,,2,110584,2,1,2,0,1,,490.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,690.870803155343,1750.0,53786.92417121011,1,1,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06693076533881685,22411.21840467088,6,3,6,6_1,6_1,6_0_1 -13997,2,45.0,0.0,7,112,710.0,944.0,0.0,43,43,0.0,207.03450096389156,981.3437015789107,1854.0,0.0,1712.0883383999917,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,104677,2,2,2,0,1,,515.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,694.66337448763,710.0,77820.82162630405,1,1,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023823958180535752,27793.150580822876,7,4,7,7_1,7_1,7_0_0 -13998,2,38.0,0.0,7,112,404.0,580.0,0.0,52,34,0.0,0.0,558.398387940676,984.0,0.0,1051.9186824915203,70,0,0,0,0,0,0,0,0,2,20.0,1,,5,116253,2,2,5,0,1,,535.0,403.0,43,2.0,0.0,4.0,4.0,2.1,1,1,865.734388791511,404.0,45185.61700851378,1,1,2,3,73.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021776841064593558,21516.960480244656,6,3,6,6_1,6_1,6_0_0 -13999,2,45.0,0.0,9,112,1602.0,0.0,0.0,0,38,0.0,0.0,2214.2431125766407,1602.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,131809,2,1,1,0,1,,207.0,,32,1.0,0.0,6.0,4.0,2.1,4,3,817.715230228066,1602.0,67834.62239707238,0,1,1,2,120.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023616258827573858,32302.201141463036,8,4,8,8_1,8_1,8_0_0 -14000,2,48.0,0.0,2,112,1000.0,2000.0,0.0,52,38,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,102928,2,1,2,0,1,,741.0,,43,2.0,0.0,6.0,5.0,3.0,3,3,690.649115048854,1000.0,98110.34395393489,1,1,1,2,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030577815540108293,32703.447984644965,8,4,8,8_1,8_1,8_0_1 -14001,2,29.0,0.0,1,112,399.0,1276.0,0.0,34,34,0.0,0.0,551.4875168027963,1675.0,0.0,2314.2211014813447,60,0,0,0,0,0,0,0,0,2,45.0,1,,1,106438,2,1,1,0,1,,310.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,602.297163019343,399.0,72908.40026763489,1,1,1,2,120.0,10,2,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022974033086055203,34718.285841730896,9,5,9,9_1,9_1,9_1_0 -14002,2,41.0,0.0,1,112,2200.0,0.0,0.0,46,48,0.0,103.51725048194578,3040.783300667047,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,126166,2,1,2,0,1,,180.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,571.8024762208,2200.0,66164.20017492646,1,1,1,2,90.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03476200111116293,36757.888986070255,9,5,9,9_1,9_1,9_1_0 -14003,2,24.0,0.0,5,112,1050.0,0.0,0.0,54,56,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,1,,3,108817,2,1,3,0,1,,0.0,610.0,43,2.0,1.0,2.0,2.0,1.5,2,1,862.899907381632,1050.0,18197.152956533424,4,1,2,3,24.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05770133396735629,12131.435304355617,2,1,2_0,2_1_0,2_1_0,2_0_0 -14004,2,43.0,0.0,1,112,800.0,986.0,0.0,56,67,0.0,0.0,1105.7393820607444,1786.0,0.0,1788.2617602355847,50,2,2,2,2,1,2,2,2,2,90.0,1,,1,121932,2,2,3,0,1,,600.0,914.0,43,2.0,0.0,4.0,4.0,2.1,1,1,932.438690406043,800.0,32535.566002431133,1,1,2,3,110.0,10,2,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05489377378179147,15493.126667824348,3,2,3_0,3_1_0,3_1_0,3_1_0 -14005,2,47.0,0.0,7,112,690.0,0.0,0.0,46,52,0.0,0.0,953.7002170273921,690.0,0.0,0.0,70,2,2,2,2,1,2,2,2,3,90.0,2,,5,120087,1,3,0,0,1,,0.0,570.0,43,2.0,0.0,3.0,3.0,2.0,4,3,657.84101408657,690.0,43640.83304372154,4,1,2,3,72.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.0158108805876534,21820.41652186077,6,3,6,6_0,6_1,6_0_0 -14006,2,57.0,0.0,7,112,1017.0,0.0,0.0,0,52,0.0,0.0,1405.6711894447214,1017.0,0.0,0.0,44,2,2,2,2,1,2,2,2,2,30.0,2,,5,124359,1,1,0,0,1,,0.0,358.0,12,1.0,3.0,2.0,1.0,1.0,2,2,747.289866920178,1017.0,19973.0,0,1,2,3,49.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.05091874029940419,19973.0,5,3,5,5_0,5_1,5_0_0 -14007,2,34.0,0.0,2,112,0.0,0.0,0.0,62,34,0.0,0.0,0.0,1297.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,117321,2,1,2,0,1,,456.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,848.758582830511,0.0,60537.13080676675,1,1,1,2,82.0,10,2,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02142486739485551,33631.73933709264,9,5,9,9_1,9_1,9_0_1 -14008,2,51.0,0.0,2,112,530.0,1000.0,0.0,52,38,0.0,0.0,732.5523406152432,1530.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,131589,2,3,2,0,1,,377.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,861.260317493722,530.0,83082.27634741983,1,1,0,1,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018415480018892323,55388.18423161322,10,5,10,10_1,10_1,10_0_1 -14009,2,82.0,0.0,2,112,845.0,550.0,0.0,77,72,0.0,0.0,1167.9372223016612,1525.0,223.64251054472493,997.5090954660969,50,2,2,2,1,1,2,2,2,0,,1,,2,110603,1,1,2,0,2,,134.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,865.043750227966,845.0,38777.495421503394,5,5,0,1,150.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03932693391936647,25851.663614335597,7,4,7,7_1,7_1,7_0_1 -14010,2,58.0,0.0,6,111,2000.0,0.0,0.0,75,34,0.0,310.55175144583734,2764.3484551518613,2300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,45.0,1,,4,126925,2,1,2,0,1,,600.0,,42,1.0,0.0,5.0,2.0,1.5,3,3,526.938198876418,2000.0,78436.82038734604,5,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02932296322877274,52291.21359156403,10,5,10,10_1,10_4,10_0_0 -14011,2,43.0,0.0,8,111,2600.0,0.0,0.0,43,38,0.0,0.0,3593.6529916974196,2600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,1,2001.0,6,119116,2,1,2,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,526.354469105778,2600.0,88010.28645820575,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029542001334522252,41909.66021819321,9,5,9,9_1,9_4,9_0_0 -14012,2,61.0,0.0,2,111,200.0,0.0,0.0,0,68,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,3.0,2,,2,117609,2,1,0,1,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,929.56927310928,200.0,27095.254004405462,0,1,0,1,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007381366491987182,27095.254004405462,7,4,7,7_0,7_4,7_0_1 -14013,2,48.0,0.0,6,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,651.0,0.0,0.0,60,1,2,2,1,2,2,2,2,2,45.0,2,,4,115395,1,3,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,630.662648007482,0.0,37853.166494321114,0,1,1,2,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017198032827654343,25235.44432954741,7,4,7,7_0,7_4,7_0_0 -14014,2,44.0,0.0,5,111,720.0,0.0,0.0,56,63,0.0,0.0,995.16544385467,720.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,40.0,2,,3,120572,2,2,0,0,1,412.0,0.0,500.0,43,2.0,0.0,3.0,4.0,2.1,1,1,219.512816890755,720.0,35602.38259301549,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020223365616582365,16953.51552048357,4,2,4_0,4_0_0,4_4_0,4_0_0 -14015,2,56.0,0.0,5,111,890.0,0.0,0.0,90,46,0.0,0.0,1230.1350625425782,890.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,131961,2,1,0,0,1,400.0,0.0,490.0,42,1.0,1.0,3.0,2.0,1.5,2,2,201.221959953648,890.0,53381.47065486792,5,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016672451865445935,35587.647103245276,9,5,9,9_0,9_4,9_0_0 -14016,2,44.0,0.0,1,111,395.0,0.0,0.0,0,68,0.0,0.0,545.9588198924926,395.0,0.0,0.0,70,2,2,2,1,2,2,2,2,1,7.0,2,,1,108526,1,3,0,0,1,,0.0,279.0,12,1.0,0.0,3.0,1.0,1.0,1,1,842.804084718167,395.0,23410.944659040666,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.016872450289931458,23410.944659040666,6,3,6,6_0,6_4,6_1_0 -14017,2,43.0,0.0,7,111,1300.0,0.0,0.0,47,42,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,5,118181,2,1,2,0,1,,480.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,512.579405586125,1300.0,65579.32560761571,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019823320657158926,26231.730243046284,7,4,7,7_1,7_4,7_0_0 -14018,2,58.0,0.0,2,111,1050.0,0.0,0.0,48,52,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,60.0,1,,2,116308,2,1,2,0,1,,280.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,567.421790309548,1050.0,15290.989409986672,4,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06866789138669054,10193.992939991114,2,1,2_0,2_1_0,2_4_0,2_0_1 -14019,1,65.0,216.0,6,111,840.0,700.0,0.0,63,47,0.0,0.0,1161.0263511637818,1540.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,2,,4,102299,2,2,0,0,1,,0.0,492.0,43,3.0,4.0,4.0,7.0,3.4,2,2,965.648643910243,840.0,43534.201558352564,1,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03537448591852105,12804.176928927225,2,1,2_1,2_0_1,2_4_1,2_0_0 -14020,2,41.0,0.0,8,111,1700.0,2210.0,0.0,37,38,0.0,0.0,2349.696186879082,3910.0,0.0,4008.172910872862,12,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,122784,2,1,1,0,1,,150.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,543.341145751496,1700.0,182245.87400495724,1,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021454532352779877,79237.33652389445,10,5,10,10_1,10_4,10_0_0 -14022,1,43.0,24.0,2,111,610.0,0.0,0.0,0,55,0.0,0.0,843.1262788213177,981.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,2,,2,119162,1,3,0,1,2,,0.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,663.958037206861,610.0,24251.547916718595,0,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04045102619300089,15157.21744794912,3,2,3_1,3_0_1,3_4_1,3_0_1 -14023,2,47.0,0.0,2,111,83.0,81.0,0.0,55,47,0.0,0.0,114.72046088880224,164.0,0.0,146.90588496864336,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,105363,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,663.958037206861,83.0,49679.26436665171,1,1,1,2,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0033011760961196633,27599.591314806505,7,4,7,7_0,7_4,7_0_1 -14024,2,42.0,0.0,2,111,0.0,0.0,903.0,52,62,0.0,0.0,461.35474135828514,903.0,0.0,1032.3509345113262,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,119687,2,1,0,1,1,,0.0,381.0,43,2.0,0.0,4.0,4.0,2.1,4,3,618.277811267757,0.0,40812.06754469863,1,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02212580872093791,19434.31787842792,5,3,5,5_0,5_4,5_0_1 -14025,2,51.0,0.0,5,111,2200.0,0.0,0.0,42,37,0.0,155.27587572291867,3040.783300667047,2350.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,1,,3,107890,2,2,1,0,1,,0.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,364.293208018753,2200.0,92035.12840300341,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02553372870530283,35398.12630884747,9,5,9,9_1,9_4,9_0_0 -14026,2,68.0,0.0,6,111,2749.0,0.0,0.0,74,74,0.0,0.0,3799.5969516062332,2749.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,122258,2,1,1,0,1,,190.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,615.148030576496,2749.0,97442.67354041943,5,5,0,1,128.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028211459108413203,64961.78236027962,10,5,10,10_1,10_4,10_0_0 -14027,2,74.0,0.0,2,111,214.0,108.0,0.0,0,74,0.0,0.0,295.7852847012491,322.0,0.0,195.8745132915245,70,0,0,0,0,0,0,0,0,0,,2,,2,124430,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,758.763914738222,214.0,23301.06503792122,0,5,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01381911082072697,23301.06503792122,6,3,6,6_0,6_4,6_0_1 -14028,2,62.0,0.0,2,111,318.0,180.0,0.0,0,86,0.0,0.0,439.5314043691459,498.0,0.0,326.4575221525408,41,0,0,0,0,0,0,0,0,0,,2,,2,124094,2,1,0,1,1,,0.0,,31,0.0,0.0,4.0,2.0,1.5,2,2,711.567411810548,318.0,25100.11466988753,0,5,0,1,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019840546808236215,16733.40977992502,4,2,4_0,4_0_0,4_4_0,4_0_1 -14029,2,49.0,0.0,2,111,441.0,658.0,0.0,0,54,0.0,0.0,609.5388343609853,1265.0,0.0,1193.3836087576215,44,2,1,2,1,2,2,2,2,2,25.0,2,,2,117109,1,3,0,1,2,,0.0,,32,3.0,0.0,5.0,4.0,2.5,1,1,776.689435245317,441.0,54592.689574885975,0,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023171600627310586,21837.07582995439,6,3,6,6_0,6_4,6_0_1 -14030,2,79.0,0.0,7,111,820.0,0.0,0.0,0,74,0.0,0.0,1133.3828666122631,820.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,113970,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,876.985527087438,820.0,35625.053416849405,0,5,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023017509346727565,35625.053416849405,9,5,9,9_0,9_4,9_0_0 -14031,2,87.0,0.0,1,111,305.0,79.0,0.0,0,78,2804.952399039805,0.0,421.56313941065883,2262.0,0.0,143.27857916694848,70,0,0,0,0,0,0,0,0,0,,1,,1,116594,2,1,2,0,1,,159.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,499.535876460533,305.0,26724.771123051254,0,6,0,1,85.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08464057520211758,26724.771123051254,7,4,7,7_1,7_4,7_1_0 -14032,2,44.0,0.0,7,111,1100.0,0.0,0.0,0,23,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,1.0,2,,5,129594,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,877.057115062561,1100.0,97253.75357577438,0,1,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011310617426636855,97253.75357577438,10,5,10,10_0,10_4,10_0_0 -14033,2,47.0,0.0,7,111,860.0,0.0,0.0,54,47,0.0,0.0,1188.6698357153002,860.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,45.0,2,,5,127825,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,767.470763071483,860.0,51217.06585010494,1,1,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016791278175070194,28453.92547228052,8,4,8,8_0,8_4,8_0_0 -14034,2,43.0,0.0,2,111,491.0,230.0,0.0,56,38,0.0,0.0,678.6475457397819,721.0,0.0,417.14016719491326,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,108613,2,1,0,1,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,676.24566601357,491.0,47729.18314072863,1,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015106062005589843,19091.67325629145,5,3,5,5_0,5_4,5_0_1 -14035,2,31.0,0.0,2,111,400.0,300.0,0.0,52,62,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,70,0,0,0,0,0,0,0,0,2,25.0,2,,2,116173,2,2,0,1,2,756.0,0.0,632.0,43,2.0,0.0,3.0,3.0,1.8,1,1,812.602058832131,400.0,39853.77455811521,1,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01756420835319506,22140.98586561956,6,3,6,6_0,6_4,6_0_1 -14036,2,53.0,0.0,2,111,185.0,248.0,0.0,0,54,0.0,0.0,255.70223210154717,433.0,0.0,449.7859194101673,60,0,0,0,0,0,0,0,0,3,60.0,2,,2,124279,2,1,0,1,1,490.0,0.0,395.0,12,1.0,0.0,2.0,1.0,1.0,2,2,734.155462625096,185.0,27775.83690436365,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015589089232158283,27775.83690436365,7,4,7,7_0,7_4,7_0_1 -14037,2,75.0,0.0,2,111,418.0,107.0,0.0,77,77,0.0,0.0,577.748827126739,525.0,0.0,194.06086039067702,50,0,0,0,0,0,0,0,0,0,,2,,2,129762,2,1,0,1,1,784.0,0.0,405.0,41,1.0,2.0,4.0,4.0,2.5,1,1,717.101697384864,418.0,66071.63262677305,5,5,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00794592140572085,26428.653050709217,7,4,7,7_0,7_4,7_0_1 -14038,2,33.0,0.0,2,111,360.0,0.0,0.0,0,53,0.0,0.0,497.582721927335,360.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,2,,2,100607,2,1,0,1,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,787.973211597283,360.0,31253.463080226633,0,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011518723511563874,31253.463080226633,8,4,8,8_0,8_4,8_0_1 -14039,2,56.0,0.0,6,111,1180.0,943.0,0.0,85,23,0.0,0.0,1630.965588539598,2123.0,0.0,1710.2746854991444,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,116275,2,2,2,0,1,,311.0,,42,1.0,0.0,7.0,6.0,3.5,2,2,648.808312968044,1180.0,79809.06296323499,6,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026600988925004492,22802.58941806714,6,3,6,6_1,6_4,6_0_0 -14040,2,39.0,0.0,2,111,0.0,0.0,0.0,37,47,0.0,0.0,0.0,1549.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,55.0,1,,2,114769,2,1,1,0,1,,0.0,1590.0,43,2.0,0.0,5.0,3.0,1.8,1,1,611.910597667713,0.0,57908.23725470413,1,1,2,3,99.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026749216923783466,32171.24291928007,8,4,8,8_1,8_4,8_0_1 -14041,2,59.0,0.0,1,111,420.0,1800.0,0.0,21,21,0.0,0.0,580.5131755818909,2220.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,1,101140,2,2,1,0,1,,420.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,432.074349668257,420.0,90415.14271271636,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024553409234267236,60276.761808477575,10,5,10,10_1,10_4,10_1_0 -14042,2,32.0,0.0,1,111,0.0,0.0,400.0,0,46,0.0,0.0,204.36533393501003,400.0,0.0,457.2983098610526,20,1,2,2,1,2,2,2,2,2,25.0,2,,1,117214,1,3,0,0,2,,0.0,830.0,12,1.0,0.0,3.0,1.0,1.0,1,1,703.043951255096,0.0,38190.15256133295,0,1,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.010473904218046904,38190.15256133295,9,5,9,9_0,9_4,9_1_0 -14043,2,42.0,0.0,8,111,1200.0,0.0,0.0,0,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,1999.0,6,106098,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,880.021160550916,1200.0,61020.95974973422,0,1,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019665374076736422,61020.95974973422,10,5,10,10_0,10_4,10_0_0 -14044,2,25.0,0.0,7,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,514.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,5,127139,2,1,0,0,1,,0.0,795.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1357.13259691055,0.0,35064.77411910515,0,1,3,4,39.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014658585800498444,35064.77411910515,9,5,9,9_0,9_4,9_0_0 -14045,0,76.0,0.0,2,111,800.0,3500.0,0.0,75,74,0.0,0.0,1105.7393820607444,4300.0,0.0,6347.785152966071,44,0,0,0,0,0,0,0,0,0,,1,,2,130183,2,2,2,0,2,,900.0,,41,0.0,3.0,8.0,2.0,1.5,3,3,431.499909588677,800.0,85578.40461807504,5,5,0,1,173.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05024632112727882,57052.26974538336,10,5,10,10_1,10_4,10_0_1 -14046,2,63.0,0.0,1,111,900.0,2000.0,0.0,75,33,0.0,0.0,1243.9568048183376,2900.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,2,2.0,1,,1,106983,2,1,2,0,1,,900.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,433.534560186973,900.0,121016.31050028015,6,1,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023963711899754922,80677.5403335201,10,5,10,10_1,10_4,10_1_0 -14047,2,82.0,0.0,6,111,1500.0,0.0,0.0,75,74,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,3,,4,101256,1,2,0,0,1,,0.0,1200.0,41,0.0,0.0,5.0,2.0,1.5,1,1,914.084524385702,1500.0,51219.01592646378,5,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029285998039352838,34146.01061764252,9,5,9,9_0,9_4,9_0_0 -14048,2,44.0,0.0,1,111,260.0,1500.0,0.0,0,42,0.0,0.0,359.36529916974195,1760.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,116219,1,3,3,0,2,,219.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,487.488207828182,260.0,23429.088256832536,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0751202940851417,23429.088256832536,6,3,6,6_1,6_4,6_1_0 -14049,2,46.0,0.0,8,111,2700.0,0.0,0.0,46,47,0.0,0.0,3731.8704144550125,2700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,113366,2,1,2,0,1,,1200.0,,43,2.0,0.0,6.0,3.0,2.0,1,1,546.779790245145,2700.0,54484.149062757075,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04955569732565759,27242.074531378537,7,4,7,7_1,7_4,7_0_0 -14050,2,27.0,0.0,2,111,340.0,500.0,0.0,0,37,0.0,0.0,469.9392373758164,840.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,0,,2,,2,118652,2,1,0,1,1,,0.0,,22,2.0,1.0,3.0,3.0,2.0,1,1,588.943644145527,340.0,58769.322111676986,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014293171502025864,29384.661055838493,8,4,8,8_0,8_4,8_0_1 -14051,2,56.0,0.0,5,111,260.0,0.0,0.0,54,62,0.0,0.0,359.36529916974195,588.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,114938,2,1,0,1,1,833.0,0.0,382.0,43,2.0,3.0,3.0,2.0,1.5,2,2,716.436649918058,260.0,41572.3373455009,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014144020700910516,27714.891563667265,7,4,7,7_0,7_4,7_0_0 -14052,2,54.0,0.0,5,111,1238.0,0.0,0.0,85,38,0.0,0.0,1711.131693739002,1238.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,90.0,1,,3,111453,1,2,3,0,1,,203.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,586.326202177825,1238.0,63307.64867075999,5,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01955529901984493,42205.09911383999,9,5,9,9_1,9_4,9_0_0 -14053,1,68.0,48.0,5,111,315.0,75.0,0.0,0,75,0.0,835.3842113893024,435.3848816864181,1197.0,0.0,136.02396756355867,50,2,1,1,1,2,2,2,2,0,,2,,3,110540,1,1,0,1,1,,0.0,390.0,11,0.0,1.0,3.0,1.0,1.0,3,2,806.851428037477,315.0,15038.030862808078,0,5,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07959818748346963,15038.030862808078,3,2,3_1,3_0_1,3_4_1,3_0_0 -14054,1,30.0,400.0,5,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,3,127977,2,1,0,1,1,806.0,0.0,398.0,43,2.0,0.0,3.0,4.0,2.1,1,1,680.213807872137,0.0,15262.261377402348,1,1,2,3,79.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052416871931213166,7267.743513048737,1,1,1_1,1_0_1,1_4_1,1_0_0 -14055,2,49.0,0.0,2,111,690.0,0.0,0.0,46,47,1941.6603401234008,0.0,953.7002170273921,2082.0,158.27008438549763,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,107995,2,1,1,0,1,,155.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,580.433764461112,690.0,54071.34233719617,1,1,1,2,75.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03850468492193827,30039.634631775647,8,4,8,8_1,8_4,8_0_1 -14056,2,73.0,0.0,5,111,200.0,0.0,0.0,0,75,0.0,0.0,276.4348455151861,843.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,126134,1,2,0,1,2,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,672.309968903739,200.0,31105.041916793598,0,5,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02710171560787593,31105.041916793598,8,4,8,8_0,8_4,8_0_0 -14057,2,35.0,0.0,5,111,384.0,0.0,0.0,22,46,0.0,0.0,530.7549033891573,945.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,126423,1,1,0,1,2,,0.0,,43,2.0,1.0,3.0,4.0,2.1,3,3,599.26209210759,384.0,59457.90655118447,4,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015893596912741868,28313.288833897364,8,4,8,8_0,8_4,8_0_0 -14058,2,64.0,0.0,5,111,1100.0,1520.0,0.0,75,74,0.0,0.0,1520.3916503335236,2620.0,0.0,2756.752409288122,71,0,0,0,0,0,0,0,0,0,,1,,3,112293,2,1,2,0,1,,600.0,,41,1.0,2.0,5.0,3.0,2.0,1,1,664.64065845936,1100.0,63494.82285954365,5,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04126320669947658,31747.411429771826,8,4,8,8_1,8_4,8_0_0 -14059,2,66.0,0.0,6,111,1804.0,0.0,0.0,77,78,0.0,0.0,2493.4423065469787,1924.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,112712,2,1,2,0,1,,500.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,633.260949405186,1804.0,30162.206526483522,7,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06378843664208245,20108.137684322348,5,3,5,5_1,5_4,5_0_0 -14060,2,39.0,0.0,2,111,110.0,55.0,0.0,0,65,0.0,0.0,152.03916503335236,165.0,0.0,99.75090954660969,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,118611,2,1,0,1,1,456.0,0.0,317.0,12,1.0,1.0,3.0,1.0,1.0,1,1,696.380566458436,110.0,27449.345905379596,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006011072197085136,27449.345905379596,7,4,7,7_0,7_4,7_0_1 -14061,2,32.0,0.0,5,111,0.0,0.0,850.0,43,64,0.0,0.0,434.2763346118963,850.0,0.0,971.7589084547367,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,117519,1,2,0,1,1,728.0,0.0,521.0,43,2.0,0.0,3.0,3.0,1.8,3,3,696.792629468358,0.0,38663.547361242716,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021984532150096003,21479.74853402373,6,3,6,6_0,6_4,6_0_0 -14062,2,44.0,0.0,2,111,289.0,420.0,0.0,90,56,0.0,0.0,399.44835176944395,709.0,0.0,761.7342183559285,10,0,0,0,0,0,0,0,0,1,2.0,2,,2,132636,2,1,0,1,1,114.0,0.0,97.0,43,2.0,1.0,5.0,4.0,2.1,2,1,603.992090852039,289.0,34960.43628906816,4,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02028006727769866,16647.82680431817,4,2,4_0,4_0_0,4_4_0,4_0_1 -14063,2,60.0,0.0,2,111,853.0,156.0,0.0,78,45,0.0,0.0,1178.9946161222688,1009.0,0.0,282.929852532202,31,0,0,0,0,0,0,0,0,3,90.0,2,,2,102076,2,1,0,1,1,650.0,0.0,393.0,42,1.0,3.0,4.0,2.0,1.5,2,2,687.079526288281,853.0,48179.97290951446,6,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02094231148479424,32119.981939676305,8,4,8,8_0,8_4,8_0_1 -14064,2,36.0,0.0,6,111,1300.0,0.0,0.0,52,47,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,1,,4,102420,2,1,2,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,541.039447141286,1300.0,47556.73750311789,1,1,1,2,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0273357691938975,19815.307292965786,5,3,5,5_1,5_4,5_0_0 -14065,2,54.0,0.0,5,111,480.0,0.0,0.0,0,37,0.0,0.0,663.4436292364467,658.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,2,,3,122774,2,2,0,1,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,4,3,673.083804035015,480.0,51382.76335954801,0,1,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012805850775204165,51382.76335954801,10,5,10,10_0,10_4,10_0_0 -14066,2,42.0,0.0,2,111,156.0,0.0,0.0,0,47,0.0,0.0,215.61917950184517,156.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,107980,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,710.934761087975,156.0,23890.908533316066,0,1,0,1,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006529680517693864,23890.908533316066,6,3,6,6_0,6_4,6_0_1 -14067,2,27.0,0.0,1,111,328.0,1347.0,0.0,52,38,0.0,0.0,453.3531466449052,1675.0,0.0,2442.9904574415136,71,2,2,2,2,1,2,2,2,3,60.0,2,,1,110192,2,2,0,0,1,,0.0,707.0,43,2.0,0.0,3.0,2.0,1.5,2,2,741.350875636996,328.0,51087.58003302991,1,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.03278683388246329,34058.38668868661,9,5,9,9_0,9_4,9_1_0 -14068,2,83.0,0.0,1,111,238.0,1987.0,0.0,0,72,0.0,0.0,328.95746616307144,2225.0,0.0,3603.728313983881,70,0,0,0,0,0,0,0,0,0,,1,,1,125692,2,3,3,0,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,500.479049108782,238.0,35419.747793708295,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06281806445824645,35419.747793708295,9,5,9,9_1,9_4,9_1_0 -14069,2,46.0,0.0,1,111,60.0,80.0,0.0,38,38,0.0,0.0,82.93045365455583,140.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,103289,2,1,2,0,1,,1200.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,486.63277731173,60.0,102465.7093833038,4,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0013663107476891406,36594.89620832279,9,5,9,9_1,9_4,9_1_0 -14070,2,32.0,0.0,2,111,0.0,0.0,0.0,38,38,0.0,0.0,0.0,314.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,114771,2,2,3,0,1,,926.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,483.820666739494,0.0,29584.14737959789,1,1,1,2,165.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010613792446712315,12326.728074832454,2,1,2_0,2_1_0,2_4_0,2_0_1 -14071,2,47.0,0.0,2,111,744.0,1868.0,0.0,34,34,0.0,0.0,1028.3376253164924,2612.0,0.0,3387.9036187830347,60,0,0,0,0,0,0,0,0,0,,1,,2,120727,2,1,2,0,1,,543.0,,43,2.0,1.0,9.0,5.0,2.8,2,2,483.820666739494,744.0,96696.42013614395,1,1,1,2,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02701237539427446,34534.43576290856,9,5,9,9_1,9_4,9_0_1 -14072,2,51.0,0.0,2,111,480.0,190.0,0.0,56,67,0.0,0.0,663.4436292364467,670.0,0.0,344.5940511610153,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,117348,2,1,0,1,1,,0.0,,43,3.0,0.0,4.0,7.0,3.6,2,2,708.152402836853,480.0,63120.38486795815,1,1,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010614637432924028,17533.440241099484,4,2,4_0,4_0_0,4_4_0,4_0_1 -14073,1,54.0,301.0,6,111,147.6,0.0,0.0,0,35,0.0,598.1226732846826,204.00891599020736,779.0,92.89765822627035,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,133564,1,3,3,0,1,,0.0,285.0,12,1.0,1.0,1.0,1.0,1.0,3,2,473.871666928893,147.6,7941.324790283512,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,1,0.09809446415705522,7941.324790283512,1,1,1_1,1_1_1,1_4_1,1_0_0 -14074,2,54.0,0.0,2,111,250.0,200.0,0.0,0,55,0.0,0.0,345.54355689398267,450.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,120535,2,1,0,1,1,444.0,0.0,256.0,12,1.0,1.0,3.0,1.0,1.0,3,2,696.380566458436,250.0,18147.79208318765,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024796404870479304,18147.79208318765,4,2,4_0,4_0_0,4_4_0,4_0_1 -14075,2,50.0,0.0,1,111,813.0,1842.0,0.0,46,38,0.0,0.0,1123.7076470192314,2655.0,0.0,3340.748643361001,70,0,0,0,0,0,0,0,0,0,,1,,1,119626,2,2,2,0,1,,665.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,345.618586101899,813.0,80132.88909784284,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033132463210682764,28618.888963515303,8,4,8,8_1,8_4,8_1_0 -14076,2,81.0,0.0,7,111,490.0,391.0,0.0,0,77,0.0,0.0,677.265371512206,881.0,0.0,709.1382842313525,71,0,0,0,0,0,0,0,0,0,,2,,5,127030,2,2,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,915.201235192223,490.0,36498.959350723104,0,5,0,1,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02413767448913707,36498.959350723104,9,5,9,9_0,9_4,9_0_0 -14077,2,75.0,0.0,2,111,204.0,360.0,0.0,0,75,0.0,0.0,281.96354242548983,564.0,0.0,652.9150443050816,70,2,1,2,1,2,2,2,2,0,,2,,2,128036,2,1,0,1,1,396.0,0.0,255.0,11,0.0,1.0,2.0,1.0,1.0,4,4,735.541620038271,204.0,20726.372021665928,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.027211708803182393,20726.372021665928,5,3,5,5_0,5_4,5_0_1 -14078,1,67.0,296.0,2,111,0.0,0.0,1020.0,86,77,0.0,0.0,521.1316015342755,1020.0,0.0,1166.110690145684,50,1,2,2,2,2,2,2,1,0,,2,,2,103374,2,2,0,1,1,492.0,0.0,458.0,41,2.0,3.0,4.0,4.0,2.5,2,2,431.463364026594,0.0,18133.511041743957,6,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.056249448749992506,7253.404416697583,1,1,1_1,1_0_1,1_4_1,1_0_1 -14079,2,28.0,0.0,2,111,250.0,270.0,0.0,85,47,0.0,0.0,345.54355689398267,520.0,0.0,489.6862832288112,50,1,2,2,2,2,2,2,1,3,30.0,2,,2,119019,2,3,0,1,1,552.0,0.0,301.0,42,1.0,0.0,3.0,3.0,1.8,2,2,814.136331101637,250.0,25144.815551702606,6,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020680207374390136,13969.341973168113,3,2,3_0,3_0_0,3_4_0,3_0_1 -14080,1,35.0,307.0,6,111,630.0,0.0,0.0,0,46,0.0,0.0,870.7697633728362,630.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,130286,2,2,0,0,1,,0.0,601.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1280.38742747287,630.0,7477.6957488855005,0,4,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.0842505527312872,7477.6957488855005,1,1,1_1,1_0_1,1_4_1,1_0_0 -14081,2,53.0,0.0,1,111,1000.0,1000.0,0.0,75,37,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,103119,1,1,1,0,1,,400.0,,42,1.0,2.0,5.0,3.0,2.0,2,2,426.606475847547,1000.0,97969.62283624936,5,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020414491166745492,48984.81141812468,10,5,10,10_1,10_4,10_1_0 -14082,2,52.0,0.0,2,111,483.0,0.0,0.0,38,38,3783.2504934865956,0.0,667.5901519191744,3016.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,1,,2,104575,2,2,1,0,1,,502.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,605.815220143561,483.0,126656.82286311459,1,1,1,2,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02381237687652695,50662.72914524584,10,5,10,10_1,10_4,10_0_1 -14083,2,96.0,0.0,2,111,240.0,0.0,0.0,0,72,2240.377315527001,0.0,331.72181461822333,1740.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104318,2,2,2,0,2,,155.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,741.180091574561,240.0,16346.676076187443,0,5,0,1,77.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10644365814128388,16346.676076187443,4,2,4_0,4_1_0,4_4_0,4_0_1 -14084,2,36.0,0.0,2,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1060.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,108565,2,1,0,1,1,1163.0,0.0,477.0,43,2.0,0.0,6.0,4.0,2.1,2,2,460.977207323711,0.0,41312.6502775635,1,1,2,3,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025658000464222838,19672.690608363573,5,3,5,5_0,5_4,5_0_1 -14085,2,65.0,0.0,6,111,697.0,2642.0,0.0,75,74,0.0,186.3310508675024,963.3754366204236,3519.0,0.0,4791.67096403896,43,0,0,0,0,0,0,0,0,0,,1,,4,105746,2,2,3,0,1,,198.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,672.829118366853,697.0,77894.93064580493,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04517623895194414,51929.95376386995,10,5,10,10_1,10_4,10_0_0 -14088,2,49.0,0.0,7,111,0.0,0.0,1400.0,34,48,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,42,0,0,0,0,0,0,0,0,2,30.0,1,,5,123069,2,1,2,0,1,,450.0,1250.0,43,2.0,2.0,5.0,3.0,2.0,2,2,836.39086667275,0.0,66135.13376394245,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021168778534523723,33067.56688197122,8,4,8,8_1,8_4,8_0_0 -14089,2,41.0,0.0,6,111,1800.0,0.0,0.0,54,48,0.0,207.03450096389156,2487.913609636675,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,110660,2,1,2,0,1,,550.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,602.644207266468,1800.0,89303.44153551865,1,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022395553470406178,42525.448350246974,9,5,9,9_1,9_4,9_0_0 -14090,2,41.0,0.0,6,111,0.0,0.0,0.0,42,38,0.0,0.0,0.0,5082.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,50.0,1,,4,126150,2,1,2,0,1,,733.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,675.25284923782,0.0,81602.17359351466,1,1,1,2,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06227775286127786,35479.20591022377,9,5,9,9_1,9_4,9_0_0 -14091,2,45.0,0.0,6,111,796.0,1553.0,0.0,37,43,0.0,0.0,1100.2106851504407,2349.0,0.0,2816.6029550160883,50,0,0,0,0,0,0,0,0,2,3.0,1,,4,122628,2,1,2,0,1,,584.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,539.718345256047,796.0,53230.135379916166,4,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044129138189009424,17743.378459972057,4,2,4_0,4_1_0,4_4_0,4_0_0 -14092,2,43.0,0.0,1,111,2300.0,0.0,0.0,46,46,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,50.0,1,,1,127775,2,3,2,0,1,,144.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,396.39733021339,2300.0,45765.127035135665,1,1,1,2,82.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050256606918936346,21792.917635778886,6,3,6,6_1,6_4,6_1_0 -14093,0,59.0,0.0,1,111,230.0,1432.0,0.0,21,21,0.0,0.0,317.900072342464,1662.0,0.0,2597.1509540135467,30,0,0,0,0,0,0,0,0,1,4.0,1,,1,112219,2,2,2,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,604.413580527338,230.0,54282.22560322807,1,1,5,0,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03061775713008281,36188.150402152045,9,5,9,9_1,9_4,9_1_0 -14094,2,42.0,0.0,2,111,0.0,0.0,3200.0,54,64,0.0,0.0,1634.9226714800802,3200.0,0.0,3658.3864788884207,30,1,2,2,1,2,2,2,2,2,30.0,1,,2,118265,2,2,1,0,1,,1120.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1102.87674553118,0.0,23563.113523655793,4,1,1,2,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.13580548244557808,11220.530249359901,2,1,2_0,2_1_0,2_4_0,2_0_1 -14095,2,53.0,0.0,1,112,340.0,950.0,0.0,46,65,0.0,0.0,469.9392373758164,1290.0,0.0,1722.9702558050765,71,0,0,0,0,0,0,0,0,3,75.0,5,,1,102727,2,1,2,0,1,,430.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,625.162486437432,340.0,50685.92155273241,1,1,0,1,98.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025450854211221455,25342.960776366206,7,4,7,7_1,7_0,7_1_0 -14096,2,76.0,0.0,2,112,350.0,2000.0,0.0,77,75,0.0,0.0,483.76097965157567,2350.0,0.0,3627.3058016948976,70,0,0,0,0,0,0,0,0,0,,1,,2,131432,2,1,2,0,1,,238.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,869.846739513332,350.0,73230.37867470557,5,5,0,1,180.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03209050728030321,36615.189337352786,9,5,9,9_1,9_0,9_0_1 -14097,2,77.0,0.0,5,111,14.0,0.0,0.0,77,75,0.0,0.0,19.350439186063028,14.0,0.0,0.0,41,1,2,2,2,1,2,2,2,0,,2,,3,131638,1,1,0,1,2,,0.0,950.0,41,0.0,2.0,3.0,2.0,1.5,1,1,771.852137207371,14.0,30469.95897072157,5,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.00045946894820083375,20313.305980481047,5,3,5,5_0,5_4,5_0_0 -14098,0,94.0,0.0,2,111,2770.0,180.0,0.0,0,77,0.0,0.0,3828.622610385328,2950.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,1,,2,119795,1,1,1,0,2,,360.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,685.519714055992,2770.0,9514.695122960773,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3100467184577557,9514.695122960773,1,1,1_0,1_1_0,1_4_0,1_0_1 -14099,2,74.0,0.0,1,111,615.0,3121.0,0.0,0,77,0.0,0.0,850.0371499591973,3736.0,0.0,5660.410703544888,43,2,2,1,2,1,2,2,2,0,,1,,1,122222,2,1,2,0,1,,76.0,,21,1.0,2.0,5.0,2.0,1.5,1,1,430.703161654251,615.0,52221.01395279863,0,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07154208080633755,34814.00930186576,9,5,9,9_1,9_4,9_1_0 -14100,2,66.0,0.0,9,111,1100.0,0.0,0.0,77,74,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2005.0,6,104718,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,779.900571267769,1100.0,83768.0,5,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013131506064368255,55845.333333333336,10,5,10,10_0,10_4,10_0_0 -14101,2,60.0,0.0,5,111,421.0,2040.0,0.0,31,33,0.0,0.0,581.8953498094668,2461.0,0.0,3699.851917728796,70,0,0,0,0,0,0,0,0,3,60.0,1,,3,118533,2,2,3,0,1,,666.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,657.887053887187,421.0,124643.08383109764,1,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0197443766983082,83095.38922073175,10,5,10,10_1,10_4,10_0_0 -14102,2,38.0,0.0,7,111,0.0,0.0,1076.0,37,46,0.0,1035.1725048194578,549.742748285177,2076.0,0.0,1230.1324535262315,43,0,0,0,0,0,0,0,0,3,35.0,1,,5,125243,2,1,3,0,1,,570.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,597.629558860446,0.0,73462.00788285953,1,1,1,2,133.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02825950528483147,40812.22660158863,9,5,9,9_1,9_4,9_0_0 -14103,2,52.0,0.0,2,111,750.0,2050.0,0.0,0,46,0.0,0.0,1036.630670681948,2800.0,0.0,3717.9884467372704,50,0,0,0,0,0,0,0,0,2,90.0,1,,2,103218,2,1,1,0,1,,600.0,,32,1.0,1.0,4.0,2.0,1.5,5,3,621.871742475181,750.0,40513.14962600356,0,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06911336259580289,27008.766417335704,7,4,7,7_1,7_4,7_0_1 -14104,2,49.0,0.0,1,111,780.0,1340.0,0.0,54,22,0.0,0.0,1078.0958975092258,2120.0,0.0,2430.2948871355816,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,104617,1,2,1,0,1,,513.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,408.926927014293,780.0,50214.264776866716,1,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042219078770155884,21832.28903342031,6,3,6,6_1,6_4,6_1_0 -14105,2,38.0,0.0,2,111,600.0,600.0,0.0,55,64,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,60,2,1,2,2,1,2,2,2,2,25.0,2,,2,121888,1,2,0,1,1,,0.0,580.0,43,2.0,0.0,4.0,5.0,2.4,2,2,523.674948593233,600.0,47889.89246984411,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.025057479524633105,19954.121862435048,5,3,5,5_0,5_4,5_0_1 -14106,1,39.0,85.0,2,111,325.0,563.0,0.0,0,54,0.0,0.0,449.20662396217745,888.0,0.0,1021.0865831771138,50,2,1,2,2,1,2,2,2,3,90.0,2,,2,118414,2,1,0,0,1,400.0,0.0,360.0,32,1.0,0.0,3.0,3.0,1.6,3,3,705.830260127953,325.0,24430.0657267269,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.036348653742200664,15268.791079204313,3,2,3_1,3_0_1,3_4_1,3_0_1 -14107,2,75.0,0.0,1,111,1200.0,0.0,0.0,0,77,0.0,103.51725048194578,1658.6090730911167,1300.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,128794,2,2,1,0,1,,280.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,433.268621202239,1200.0,25767.419498798117,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0504513073208839,25767.419498798117,7,4,7,7_1,7_4,7_1_0 -14108,2,45.0,0.0,5,111,450.0,0.0,0.0,68,65,0.0,0.0,621.9784024091688,450.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,3,114620,2,1,0,1,1,912.0,0.0,446.0,43,2.0,0.0,4.0,4.0,2.1,2,2,699.601799984152,450.0,37458.18332495597,1,1,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012013396274351459,17837.230154740937,4,2,4_0,4_0_0,4_4_0,4_0_0 -14109,2,60.0,0.0,5,111,328.0,0.0,0.0,75,77,0.0,0.0,453.3531466449052,328.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,113171,2,1,0,1,1,1220.0,0.0,400.0,41,0.0,2.0,4.0,2.0,1.5,1,1,756.442099096595,328.0,20280.7594013154,5,7,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016172964409741288,13520.5062675436,3,2,3_0,3_0_0,3_4_0,3_0_0 -14110,1,74.0,230.0,2,111,44.0,213.0,0.0,0,78,0.0,0.0,60.815666013340945,257.0,0.0,386.3080678805066,70,2,1,2,1,1,2,2,2,0,,2,,2,119750,2,2,0,1,1,272.0,0.0,225.0,11,0.0,7.0,1.0,1.0,1.0,2,1,804.709731508628,44.0,9097.162494035325,0,5,2,3,15.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.028250567159650655,9097.162494035325,1,1,1_1,1_0_1,1_4_1,1_0_1 -14111,2,76.0,0.0,2,111,840.0,0.0,0.0,77,75,5526.264044966602,0.0,1161.0263511637818,4540.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101415,2,1,2,0,1,,780.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,637.846098382761,840.0,43628.92021417977,5,5,0,1,200.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10405941695812268,29085.94680945318,8,4,8,8_1,8_4,8_0_1 -14112,2,63.0,0.0,5,111,658.0,0.0,0.0,56,46,0.0,0.0,909.4706417449623,658.0,0.0,0.0,70,1,2,2,2,1,2,2,2,2,10.0,2,,3,115349,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,630.989154377201,658.0,38213.1568020448,1,1,1,2,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01721920027200658,25475.43786802987,7,4,7,7_0,7_4,7_0_0 -14113,2,38.0,0.0,2,111,240.0,0.0,0.0,0,54,0.0,0.0,331.72181461822333,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102953,1,1,0,1,2,,0.0,,32,1.0,0.0,5.0,2.0,1.3,3,2,630.989154377201,240.0,26092.56726908093,0,1,1,2,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009198021701927133,20071.205591600716,5,3,5,5_0,5_4,5_0_1 -14114,1,65.0,359.0,2,111,275.0,230.0,0.0,85,72,0.0,0.0,380.0979125833809,505.0,0.0,417.14016719491326,50,2,1,2,1,1,2,2,2,0,,2,,2,108049,2,1,0,1,1,436.0,0.0,350.0,41,1.0,4.0,3.0,3.0,2.0,2,2,609.14962221527,275.0,9435.365833936039,6,5,2,3,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05352203707710771,4717.6829169680195,1,1,1_1,1_0_1,1_4_1,1_0_1 -14115,2,78.0,0.0,2,111,320.0,0.0,0.0,86,75,0.0,0.0,442.2957528242978,320.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115002,2,1,0,1,1,670.0,0.0,385.0,41,0.0,2.0,4.0,2.0,1.5,1,1,652.828937666806,320.0,43992.50935720991,5,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007273965606318735,29328.339571473272,8,4,8,8_0,8_4,8_0_1 -14116,2,43.0,0.0,2,111,0.0,0.0,420.0,0,37,0.0,0.0,214.58360063176053,420.0,0.0,480.16322535410524,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,126481,2,1,0,1,1,707.0,0.0,324.0,32,1.0,1.0,4.0,2.0,1.5,1,1,635.926575938992,0.0,53265.27796297411,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007885061639816306,35510.18530864941,9,5,9,9_0,9_4,9_0_1 -14117,2,32.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,20.0,2,,1,100129,2,2,0,1,1,,0.0,369.0,32,2.0,0.0,4.0,4.0,2.1,1,1,619.82208424185,0.0,21280.715635972116,0,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.057328899124884605,10133.674112367673,2,1,2_0,2_0_0,2_4_0,2_1_0 -14118,2,81.0,0.0,2,111,258.0,169.0,0.0,86,78,0.0,0.0,356.6009507145901,427.0,0.0,306.5073402432189,70,2,1,1,1,1,2,2,2,0,,2,,2,108593,1,3,0,1,2,,0.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,675.420559534608,258.0,23132.827717669228,6,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01845861669880723,15421.88514511282,3,2,3_0,3_0_0,3_4_0,3_0_1 -14119,1,42.0,300.0,2,111,1272.0,0.0,0.0,0,52,0.0,0.0,1758.1256174765836,1272.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,109614,1,2,0,1,2,620.0,0.0,721.0,32,2.0,0.0,3.0,4.0,2.1,2,2,732.827503205094,1272.0,26587.82578600002,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.047841444811549026,12660.86942190477,2,1,2_1,2_0_1,2_4_1,2_0_1 -14120,2,48.0,0.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,406.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,104879,2,1,0,1,1,,0.0,370.0,11,0.0,0.0,1.0,1.0,1.0,2,2,804.709731508628,0.0,4779.249556166041,0,7,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08495057544676471,4779.249556166041,1,1,1_0,1_0_0,1_4_0,1_1_0 -14121,1,32.0,333.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,355.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128056,2,1,0,1,1,,0.0,330.0,32,1.0,0.0,2.0,2.0,1.3,1,1,777.194821300025,0.0,8947.454664286313,0,4,2,3,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03967608815241941,6882.657434066395,1,1,1_1,1_0_1,1_4_1,1_0_1 -14122,2,43.0,0.0,5,111,166.0,0.0,0.0,0,55,0.0,0.0,229.44092177760447,166.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,120416,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,710.67840981489,166.0,24695.724896623495,0,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0067218111918106215,24695.724896623495,7,4,7,7_0,7_4,7_0_0 -14123,2,82.0,0.0,2,111,192.0,0.0,0.0,0,75,0.0,0.0,265.37745169457867,192.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,121669,2,1,0,1,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,710.67840981489,192.0,32805.08478228035,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0058527512205580005,32805.08478228035,8,4,8,8_0,8_4,8_0_1 -14124,2,53.0,0.0,2,111,845.0,0.0,0.0,56,64,0.0,0.0,1167.9372223016612,845.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,116139,2,1,0,1,1,,0.0,719.0,43,2.0,1.0,4.0,6.0,3.0999999999999996,3,3,216.614941934021,845.0,45285.82657903651,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018659259725009925,14608.331154527908,3,2,3_0,3_0_0,3_4_0,3_0_1 -14125,1,48.0,65.0,2,111,528.0,0.0,0.0,0,54,0.0,0.0,729.7879921600913,528.0,0.0,0.0,50,2,2,1,1,1,2,2,2,4,70.0,2,,2,118604,2,2,0,1,2,,0.0,,32,1.0,0.0,4.0,3.0,2.0,4,4,702.990047850398,528.0,33766.43903838348,0,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01563682801730452,16883.21951919174,4,2,4_1,4_0_1,4_4_1,4_0_1 -14126,2,44.0,0.0,2,111,302.0,284.0,0.0,0,55,0.0,0.0,417.416616727931,586.0,0.0,515.0774238406755,71,2,1,2,2,1,2,2,2,0,,2,,2,101682,2,2,0,1,1,840.0,0.0,493.0,22,1.0,0.0,5.0,2.0,1.5,2,2,652.828937666806,302.0,38628.4416127012,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015170169324338486,25752.294408467467,7,4,7,7_0,7_4,7_0_1 -14127,2,75.0,0.0,1,111,304.0,1706.0,0.0,0,74,0.0,0.0,420.1809651830829,2010.0,0.0,3094.091848845748,71,2,2,2,2,1,2,2,2,0,,1,,1,116715,2,1,3,0,1,,176.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,473.700796674263,304.0,33021.482207298184,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,1,0,0,0.06086946634865965,33021.482207298184,8,4,8,8_1,8_4,8_1_0 -14128,2,41.0,0.0,2,111,300.0,0.0,0.0,0,46,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,125761,1,2,0,1,1,336.0,0.0,650.0,22,2.0,0.0,2.0,2.0,1.5,1,1,866.648655561795,300.0,43635.40164552019,0,4,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0068751515670029215,29090.267763680127,8,4,8,8_0,8_4,8_0_1 -14129,2,41.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,102496,2,1,0,1,2,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,803.434844292625,0.0,51006.6982525134,0,1,1,2,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010782897518227388,51006.6982525134,10,5,10,10_0,10_4,10_0_1 -14130,2,56.0,0.0,6,111,100.0,0.0,0.0,78,75,0.0,0.0,138.21742275759306,100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,107057,2,1,2,0,1,,600.0,,41,1.0,0.0,4.0,3.0,2.0,2,2,609.327328280442,100.0,77691.09362666044,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0012871488266151018,38845.54681333022,9,5,9,9_1,9_4,9_0_0 -14131,2,48.0,0.0,1,111,1500.0,240.0,0.0,54,48,0.0,0.0,2073.261341363896,1740.0,0.0,435.27669620338776,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,112092,2,3,1,0,1,,1200.0,,43,3.0,0.0,7.0,5.0,3.0,1,1,316.833777699968,1500.0,57088.784971876725,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030478840999281467,19029.594990625574,5,3,5,5_1,5_4,5_1_0 -14132,2,40.0,0.0,1,111,651.0,2550.0,0.0,37,22,0.0,0.0,899.7954221519308,3201.0,0.0,4624.814897160994,41,0,0,0,0,0,0,0,0,0,,1,,1,117218,2,3,2,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,364.442768081472,651.0,219678.41135539734,4,1,1,2,185.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014571299838933188,91532.67139808222,10,5,10,10_1,10_4,10_1_0 -14133,2,45.0,0.0,2,111,600.0,1060.0,0.0,46,62,0.0,0.0,829.3045365455583,1660.0,0.0,1922.472074898296,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,117513,2,1,3,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,622.812538601934,600.0,55031.65115742579,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03016445927183497,23926.804851054694,6,3,6,6_1,6_4,6_0_1 -14134,2,57.0,0.0,2,111,515.0,2240.0,0.0,55,46,0.0,0.0,711.8197272016042,2755.0,0.0,4062.5824978982855,71,0,0,0,0,0,0,0,0,3,75.0,1,,2,117766,2,2,1,0,1,,217.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,700.887827675056,515.0,80556.38533929113,1,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03419964771751318,40278.19266964556,9,5,9,9_1,9_4,9_0_1 -14135,2,69.0,0.0,2,111,800.0,0.0,0.0,77,75,3733.962192545002,0.0,1105.7393820607444,3350.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103237,2,1,1,0,1,,650.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,655.978640126057,800.0,45850.14800240682,5,5,0,1,75.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07306410439120388,30566.76533493788,8,4,8,8_1,8_4,8_0_1 -14136,2,42.0,0.0,2,111,292.0,901.0,0.0,78,55,0.0,0.0,403.5948744521717,1193.0,0.0,1634.1012636635514,50,0,0,0,0,0,0,0,0,0,,1,,2,119142,2,1,1,0,1,,160.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,657.075170123773,292.0,26474.767668818342,7,4,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045061774098403166,17649.84511254556,4,2,4_0,4_1_0,4_4_0,4_0_1 -14137,2,59.0,0.0,6,111,1300.0,0.0,0.0,54,47,0.0,0.0,1796.8264958487098,1350.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,2,50.0,1,,4,111798,2,1,2,0,1,,413.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,634.736301953565,1300.0,66747.6455844518,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020225432495471703,44498.43038963454,10,5,10,10_1,10_4,10_0_0 -14138,2,48.0,0.0,5,111,1900.0,0.0,0.0,46,37,0.0,517.5862524097289,2626.131032394268,2640.0,412.878481005646,0.0,50,0,0,0,0,0,0,0,0,2,180.0,1,,3,113058,2,2,1,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,602.644207266468,1900.0,52249.93033924408,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05052638315226879,20899.97213569763,5,3,5,5_1,5_4,5_0_0 -14139,2,53.0,0.0,2,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,744.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124826,2,1,0,0,1,,304.0,,31,1.0,2.0,2.0,2.0,1.5,2,2,855.944345989408,0.0,6422.728776632899,0,7,0,1,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11583861406491468,4281.819184421933,1,1,1_0,1_0_0,1_4_0,1_0_1 -14140,2,70.0,0.0,2,111,563.0,1030.0,0.0,0,78,0.0,0.0,778.1640901252489,1593.0,0.0,1868.0624878728725,50,0,0,0,0,0,0,0,0,0,,2,,2,121502,2,1,0,0,1,,536.0,600.0,31,1.0,1.0,3.0,2.0,1.5,2,2,792.062281044715,563.0,23007.054213680407,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06923963342741957,15338.036142453604,3,2,3_0,3_0_0,3_4_0,3_0_1 -14141,0,39.0,0.0,7,111,900.0,1400.0,0.0,54,47,0.0,0.0,1243.9568048183376,2300.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,114222,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.3,4,4,927.948513158322,900.0,30463.79131800944,1,1,5,0,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0754994667600778,13245.126660004105,2,1,2_0,2_1_0,2_4_0,2_0_0 -14142,2,45.0,0.0,5,111,1216.0,0.0,0.0,34,37,0.0,0.0,1680.7238607323316,1242.0,44.72850210894499,0.0,12,0,0,0,0,0,0,0,0,3,75.0,1,,3,128549,2,1,2,0,1,,380.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,587.041175910667,1216.0,156452.90386570137,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00793849119646976,74501.38279319112,10,5,10,10_1,10_4,10_0_0 -14143,2,53.0,0.0,2,111,922.0,2304.0,0.0,0,35,0.0,10.351725048194577,1274.364637825008,3236.0,0.0,4178.656283552522,31,0,0,0,0,0,0,0,0,0,,1,,2,101212,2,1,3,0,1,,389.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,777.242354469198,922.0,9633.557603158184,0,4,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.33590913484953233,9633.557603158184,1,1,1_0,1_1_0,1_4_0,1_0_1 -14144,2,90.0,0.0,2,111,0.0,300.0,0.0,0,86,0.0,0.0,0.0,2323.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,0,,1,,2,109315,2,1,1,0,2,,600.0,,11,0.0,6.0,6.0,1.0,1.0,2,2,622.690410743409,0.0,11391.703974091368,0,6,0,1,180.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2039203270453039,11391.703974091368,2,1,2_0,2_1_0,2_4_0,2_0_1 -14145,2,71.0,0.0,2,111,1000.0,0.0,0.0,72,72,4480.754631054002,0.0,1382.1742275759307,4000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,117145,2,1,2,0,1,,600.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,711.211509611851,1000.0,50222.97321643248,5,5,0,1,140.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0796448267362084,33481.98214428832,8,4,8,8_1,8_4,8_0_1 -14147,1,35.0,180.0,2,111,240.0,0.0,0.0,0,52,0.0,0.0,331.72181461822333,240.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,124836,2,1,0,1,1,516.0,561.0,700.0,32,1.0,1.0,2.0,2.0,1.3,3,3,665.972358870388,240.0,21234.288720651046,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.011302474180196679,16334.06824665465,4,2,4_1,4_0_1,4_4_1,4_0_1 -14148,2,34.0,0.0,2,111,1000.0,0.0,0.0,43,37,0.0,0.0,1382.1742275759307,1302.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,50.0,2,,2,123186,2,2,0,1,1,,182.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,695.052806061872,1000.0,65181.86051533891,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01997488242443781,36212.144730743836,9,5,9,9_0,9_4,9_0_1 -14149,1,67.0,40.0,2,111,320.0,0.0,0.0,0,54,0.0,0.0,442.2957528242978,634.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,108414,1,2,0,1,2,1020.0,0.0,833.0,11,0.0,3.0,3.0,1.0,1.0,1,1,710.086690845671,320.0,20072.946207999386,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031584800428914664,20072.946207999386,5,3,5,5_0,5_4,5_0_1 -14150,2,55.0,0.0,5,111,450.0,250.0,0.0,75,47,0.0,0.0,621.9784024091688,700.0,0.0,453.4132252118622,50,0,0,0,0,0,0,0,0,3,70.0,2,,3,101540,2,2,0,1,1,765.0,0.0,391.0,42,2.0,7.0,4.0,3.0,2.0,3,2,209.584864147873,450.0,28310.88053039266,5,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024725476102678157,14155.44026519633,3,2,3_0,3_0_0,3_4_0,3_0_0 -14151,2,47.0,0.0,5,111,0.0,0.0,0.0,52,67,0.0,0.0,0.0,2697.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,3,102035,2,1,1,0,1,,0.0,0.0,43,2.0,0.0,4.0,2.0,1.5,3,3,263.336228942941,0.0,51937.239451897,1,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05192805833467324,34624.82630126467,9,5,9,9_1,9_4,9_0_0 -14152,1,51.0,115.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,103300,2,1,0,1,1,,0.0,218.0,12,1.0,0.0,1.0,1.0,1.0,2,2,220.219097845774,300.0,11511.8,0,4,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02606021647353151,11511.8,2,1,2_1,2_0_1,2_4_1,2_0_1 -14153,2,31.0,0.0,2,111,700.0,0.0,0.0,0,45,0.0,0.0,967.5219593031513,700.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,5.0,2,,2,105863,2,1,0,1,1,,0.0,400.0,32,1.0,0.0,3.0,2.0,1.3,4,2,201.365476859305,700.0,20790.27392664068,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03366959004340098,15992.518405108214,3,2,3_0,3_0_0,3_4_0,3_0_1 -14154,1,40.0,345.0,5,111,1300.0,0.0,0.0,0,52,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,4,45.0,2,,3,129383,2,1,0,1,1,528.0,0.0,641.0,32,1.0,0.0,4.0,6.0,3.0999999999999996,4,3,216.65726983505,1300.0,39443.84064340538,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03295825099165,12723.819562388835,2,1,2_1,2_0_1,2_4_1,2_0_0 -14155,1,52.0,160.0,5,111,660.0,0.0,0.0,85,68,0.0,0.0,912.2349902001142,660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,100025,2,1,0,1,1,,0.0,360.0,42,1.0,3.0,3.0,2.0,1.5,1,1,167.18361870894,660.0,12736.761673411824,6,4,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.051818509046750845,8491.174448941216,1,1,1_1,1_0_1,1_4_1,1_0_0 -14156,2,40.0,0.0,7,111,785.0,0.0,0.0,0,37,0.0,0.0,1085.0067686471054,785.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,5,102476,2,2,0,1,1,550.0,0.0,318.0,32,1.0,0.0,3.0,3.0,2.0,2,2,162.960146450885,785.0,19571.757052216915,0,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04010881587716633,9785.878526108458,2,1,2_0,2_0_0,2_4_0,2_0_0 -14157,2,65.0,0.0,2,111,300.0,180.0,0.0,0,77,0.0,0.0,414.65226827277917,480.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,0,,2,,2,118584,2,1,0,1,1,1884.0,0.0,179.0,11,0.0,2.0,3.0,1.0,1.0,2,2,195.715174015135,300.0,16567.124361655075,0,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028973042606655935,16567.124361655075,4,2,4_0,4_0_0,4_4_0,4_0_1 -14158,2,51.0,0.0,2,111,450.0,120.0,0.0,63,56,0.0,0.0,621.9784024091688,570.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,133077,1,3,0,1,2,439.0,0.0,550.0,43,2.0,3.0,2.0,2.0,1.5,2,2,247.254915693315,450.0,47274.46742582116,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012057248469152883,31516.311617214105,8,4,8,8_0,8_4,8_0_1 -14159,2,57.0,0.0,7,111,560.0,0.0,0.0,42,42,0.0,0.0,774.0175674425211,879.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,5,107480,2,1,1,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,410.935422906868,560.0,73105.99058225518,1,1,1,2,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012023638459709994,29242.396232902072,8,4,8,8_1,8_4,8_0_0 -14160,2,51.0,0.0,2,111,350.0,1300.0,0.0,56,21,0.0,0.0,483.76097965157567,1650.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,0,,2,,2,119953,1,2,0,0,2,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,883.27872362749,350.0,21033.338842357916,1,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07844688912048302,11685.188245754398,2,1,2_0,2_0_0,2_4_0,2_0_1 -14161,2,49.0,0.0,2,111,1100.0,0.0,0.0,53,56,0.0,0.0,1520.3916503335236,1250.0,258.04905062852873,0.0,42,0,0,0,0,0,0,0,0,3,10.0,1,,2,117335,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,6.0,3.3,2,2,617.243249210922,1100.0,69470.4717925343,1,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017993256238895045,21051.65811894979,5,3,5,5_1,5_4,5_0_1 -14162,2,64.0,0.0,5,111,1260.0,0.0,0.0,0,78,0.0,0.0,1741.5395267456724,1260.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,130692,2,1,2,0,1,,680.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,586.268952788774,1260.0,22798.37909125187,0,5,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05526708696950669,15198.919394167913,3,2,3_0,3_1_0,3_4_0,3_0_0 -14163,2,87.0,0.0,1,111,240.0,160.0,0.0,0,72,0.0,0.0,331.72181461822333,400.0,0.0,290.18446413559184,44,0,0,0,0,0,0,0,0,0,,2,,1,111934,2,2,0,0,2,,70.0,263.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1104.4525029298,240.0,15057.561382611388,0,5,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02656472650756873,15057.561382611388,3,2,3_0,3_0_0,3_4_0,3_1_0 -14164,2,83.0,0.0,1,111,360.0,185.0,0.0,0,77,0.0,0.0,497.582721927335,545.0,0.0,335.52578665677805,31,0,0,0,0,0,0,0,0,0,,1,,1,115082,1,2,4,0,2,,90.0,263.0,11,0.0,0.0,2.0,1.0,1.0,4,2,786.140902057118,360.0,12713.077494060748,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0428692423415661,12713.077494060748,2,1,2_0,2_1_0,2_4_0,2_1_0 -14165,2,47.0,0.0,1,111,700.0,0.0,0.0,52,53,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,1,121081,1,2,0,0,1,,300.0,475.0,43,2.0,0.0,1.0,2.0,1.5,2,2,853.382201576516,700.0,29605.30628884497,1,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02364440999766836,19736.87085922998,5,3,5,5_0,5_4,5_1_0 -14166,2,43.0,0.0,2,111,360.0,1200.0,0.0,0,52,0.0,0.0,497.582721927335,1560.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,1,15.0,1,,2,113884,2,2,2,0,1,,400.0,,32,1.0,1.0,3.0,2.0,1.5,3,2,588.9257172395,360.0,29428.67041029753,0,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0530095304426031,19619.11360686502,5,3,5,5_1,5_4,5_0_1 -14167,2,34.0,0.0,5,111,295.0,320.0,0.0,0,62,0.0,0.0,407.7413971348995,615.0,0.0,580.3689282711837,20,0,0,0,0,0,0,0,0,3,45.0,2,,3,126838,1,2,0,1,1,1284.0,0.0,412.0,12,1.0,0.0,4.0,1.0,1.0,3,2,258.112793237196,295.0,18150.405162625404,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03388354113804488,18150.405162625404,4,2,4_0,4_0_0,4_4_0,4_0_0 -14168,2,61.0,0.0,5,111,395.0,0.0,0.0,0,63,0.0,0.0,545.9588198924926,395.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,121755,2,2,0,1,1,300.0,0.0,295.0,12,1.0,3.0,1.0,1.0,1.0,1,1,226.242263062594,395.0,15896.078305759496,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024848896212148305,15896.078305759496,3,2,3_0,3_0_0,3_4_0,3_0_0 -14169,2,51.0,0.0,5,111,600.0,450.0,0.0,48,67,0.0,0.0,829.3045365455583,1050.0,0.0,816.143805381352,44,0,0,0,0,0,0,0,0,2,20.0,2,,3,100730,2,1,0,1,2,,0.0,,43,3.0,0.0,4.0,5.0,2.8,1,1,122.222201761882,600.0,40594.179245879444,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025865777298763378,14497.92115924266,3,2,3_0,3_0_0,3_4_0,3_0_0 -14170,2,53.0,0.0,2,111,900.0,700.0,0.0,68,68,0.0,0.0,1243.9568048183376,1600.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,127079,2,1,0,1,1,684.0,0.0,387.0,43,2.0,1.0,4.0,5.0,2.8,3,3,147.229989696788,900.0,42066.385997498306,1,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03803511906383287,15023.709284820825,3,2,3_0,3_0_0,3_4_0,3_0_1 -14171,2,27.0,0.0,5,111,580.0,400.0,0.0,0,47,0.0,0.0,801.6610519940398,980.0,0.0,725.4611603389795,20,2,1,2,2,1,2,2,2,2,20.0,2,,3,107506,2,2,0,1,1,,380.0,680.0,12,1.0,0.0,2.0,1.0,1.0,4,2,206.651689653947,580.0,19759.20261169098,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.049597143126623985,19759.20261169098,5,3,5,5_0,5_4,5_0_0 -14172,2,65.0,0.0,2,111,600.0,480.0,0.0,0,54,0.0,0.0,829.3045365455583,1080.0,0.0,870.5533924067755,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,111789,2,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,225.789399831632,600.0,15979.767790523892,0,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06758546270243346,15979.767790523892,3,2,3_0,3_0_0,3_4_0,3_0_1 -14173,1,28.0,420.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,546.0,0.0,0.0,43,2,1,2,2,1,2,2,2,2,40.0,2,,2,118901,2,1,0,1,1,519.0,0.0,449.0,22,2.0,1.0,3.0,2.0,1.5,2,2,173.725101476934,0.0,19905.669914161947,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027429370744842238,13270.446609441298,3,2,3_1,3_0_1,3_4_1,3_0_1 -14174,2,51.0,0.0,2,111,439.0,965.0,0.0,42,38,0.0,0.0,606.7744859058336,1404.0,0.0,1750.175049317788,70,0,0,0,0,0,0,0,0,3,90.0,1,,2,120348,2,2,2,0,1,,797.0,,43,3.0,2.0,4.0,6.0,2.8999999999999995,5,5,633.435828063613,439.0,57697.98642722544,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024333604809084062,19895.85738869843,5,3,5,5_1,5_4,5_0_1 -14175,2,26.0,0.0,2,111,1956.0,1800.0,0.0,0,35,0.0,0.0,2703.53278913852,3756.0,0.0,3264.575221525408,33,0,0,0,0,0,0,0,0,0,,1,,2,107749,2,2,2,0,1,,2100.0,,22,3.0,0.0,6.0,5.0,3.0,2,2,483.577957744598,1956.0,51625.43312606856,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07275483753962708,17208.47770868952,4,2,4_0,4_1_0,4_4_0,4_0_1 -14176,1,42.0,321.0,7,111,847.0,1907.0,0.0,85,64,0.0,0.0,1170.7015707568132,2754.0,0.0,3458.636081916085,50,1,2,2,1,1,2,2,2,0,,1,,5,113230,2,2,1,0,1,,503.0,1000.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,622.735286911416,847.0,27040.586444543413,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0.10184690356653624,10400.22555559362,2,1,2_1,2_1_1,2_4_1,2_0_0 -14177,2,29.0,0.0,7,111,841.0,0.0,0.0,0,54,0.0,0.0,1162.4085253913577,841.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,124028,2,1,0,0,1,,0.0,,22,3.0,1.0,2.0,3.0,2.0,2,2,768.534093830041,841.0,49696.933722762216,0,1,0,1,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01692257322537396,24848.466861381108,7,4,7,7_0,7_4,7_0_0 -14178,2,43.0,0.0,2,111,717.0,1157.0,0.0,56,63,0.0,0.0,991.0189211719422,1874.0,0.0,2098.3964062804985,10,0,0,0,0,0,0,0,0,2,45.0,1,,2,109522,2,2,1,0,1,,404.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,590.346755967992,717.0,47227.55290248322,4,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039680226580222945,22489.31090594439,6,3,6,6_1,6_4,6_0_1 -14179,2,67.0,0.0,2,111,440.0,79.0,0.0,77,75,4032.679167948602,0.0,608.1566601334094,3219.0,0.0,143.27857916694848,20,0,0,0,0,0,0,0,0,0,,1,,2,123187,2,1,1,0,1,,231.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,621.783985036665,440.0,37572.59490149629,5,5,0,1,80.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08567414650064019,25048.396600997527,7,4,7,7_1,7_4,7_0_1 -14180,2,56.0,0.0,2,111,600.0,90.0,0.0,0,62,0.0,0.0,829.3045365455583,690.0,0.0,163.2287610762704,31,0,0,0,0,0,0,0,0,1,15.0,2,,2,102231,1,2,0,1,1,,500.0,418.0,12,1.0,0.0,2.0,1.0,1.0,2,2,851.85490282288,600.0,17303.913251756436,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03987537327315031,17303.913251756436,4,2,4_0,4_0_0,4_4_0,4_0_1 -14181,2,60.0,0.0,5,111,700.0,1680.0,0.0,0,37,0.0,62.110350289167464,967.5219593031513,2440.0,0.0,3046.936873423714,60,0,0,0,0,0,0,0,0,2,75.0,1,,3,116267,2,1,2,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,5,3,736.370421709411,700.0,88264.2238948441,0,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027644269584321708,88264.2238948441,10,5,10,10_1,10_4,10_0_0 -14182,2,57.0,0.0,2,111,1200.0,0.0,0.0,77,46,0.0,103.51725048194578,1658.6090730911167,1400.0,172.03270041901916,0.0,33,0,0,0,0,0,0,0,0,2,75.0,1,,2,128624,2,2,2,0,1,,400.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,583.039229753706,1200.0,46753.568374384624,5,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02994423845447127,31169.04558292308,8,4,8,8_1,8_4,8_0_1 -14183,1,34.0,306.0,2,111,1450.0,0.0,0.0,68,63,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,,2,103370,2,1,0,0,1,,0.0,902.0,43,2.0,0.0,3.0,5.0,2.4,3,2,760.674362687954,1450.0,23235.308484998393,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06240502470350999,9681.378535415997,1,1,1_1,1_0_1,1_4_1,1_0_1 -14184,2,78.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,663.4436292364467,480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,127780,2,1,0,1,1,,0.0,570.0,11,0.0,1.0,2.0,1.0,1.0,2,2,911.182917426586,480.0,10705.987012517717,0,5,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04483472653560775,10705.987012517717,2,1,2_0,2_0_0,2_4_0,2_0_1 -14185,2,33.0,0.0,1,111,400.0,910.0,0.0,46,46,0.0,0.0,552.8696910303722,1310.0,0.0,1650.4241397711785,70,1,2,2,2,2,2,2,1,2,3.0,1,,1,101700,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,388.439581777065,400.0,55102.84927469988,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.023773725265446084,26239.452035571372,7,4,7,7_1,7_4,7_1_0 -14186,2,24.0,0.0,7,111,600.0,0.0,0.0,0,45,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,30.0,2,,5,109157,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,960.818816682996,600.0,21536.66757195008,0,1,1,2,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02785946330812366,21536.66757195008,6,3,6,6_0,6_4,6_0_0 -14187,2,28.0,0.0,2,111,840.0,1280.0,0.0,63,68,0.0,0.0,1161.0263511637818,2120.0,0.0,2321.4757130847347,71,0,0,0,0,0,0,0,0,0,,1,,2,121824,2,2,1,0,1,,210.0,,43,2.0,0.0,1.0,3.0,1.8,2,2,759.127501362213,840.0,39563.98070630957,1,1,1,2,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053584092453616713,21979.989281283095,6,3,6,6_1,6_4,6_0_1 -14188,2,68.0,0.0,7,111,400.0,1500.0,0.0,86,74,0.0,0.0,552.8696910303722,1900.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,5,118315,2,1,2,0,1,,800.0,,41,0.0,2.0,5.0,2.0,1.5,7,6,606.05366254538,400.0,53029.16694837151,6,5,0,1,114.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03582933900979087,35352.77796558101,9,5,9,9_1,9_4,9_0_0 -14189,2,52.0,0.0,7,111,600.0,1500.0,0.0,46,46,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,3,70.0,1,,5,101082,2,1,2,0,1,,450.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,581.216943592294,600.0,63050.434758285315,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03330666962171968,42033.62317219021,9,5,9,9_1,9_4,9_0_0 -14190,2,39.0,0.0,2,111,350.0,700.0,0.0,68,63,0.0,0.0,483.76097965157567,1050.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,1,,2,124321,2,1,1,0,1,,700.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,485.623343589847,350.0,40647.04514653374,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025832136043707987,15633.47890251298,3,2,3_0,3_1_0,3_4_0,3_0_1 -14191,2,29.0,0.0,5,111,450.0,500.0,0.0,0,52,0.0,0.0,621.9784024091688,950.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,3,90.0,2,,3,104035,2,1,0,1,1,,0.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,195.554761387803,450.0,19129.433479669842,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04966169024344762,19129.433479669842,5,3,5,5_0,5_4,5_0_0 -14192,1,37.0,150.0,2,111,700.0,1050.0,0.0,84,85,0.0,0.0,967.5219593031513,1750.0,0.0,1904.3355458898213,50,2,2,2,2,1,1,2,2,0,,2,,2,130694,1,3,0,0,1,,1300.0,380.0,41,0.0,0.0,4.0,6.0,2.6999999999999997,2,2,834.939443181024,700.0,14929.708290358152,3,6,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.11721595398686914,5529.521589021539,1,1,1_1,1_0_1,1_4_1,1_0_1 -14193,2,40.0,0.0,2,111,1300.0,0.0,0.0,0,63,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,116006,2,1,1,0,1,,240.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,660.188330077076,1300.0,22802.506612817408,0,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05701127608792198,22802.506612817408,6,3,6,6_1,6_4,6_0_1 -14194,2,55.0,0.0,7,111,450.0,1000.0,0.0,0,68,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,101953,2,1,2,0,1,,450.0,,22,2.0,0.0,5.0,2.0,1.5,3,2,512.130312419598,450.0,14067.81939127277,0,1,1,2,104.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10307212224373126,9378.546260848512,1,1,1_0,1_1_0,1_4_0,1_0_0 -14195,2,52.0,0.0,5,111,2200.0,0.0,0.0,46,46,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,128909,2,1,2,0,1,,450.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,533.034577865919,2200.0,114063.61923049117,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019287481975777093,57031.809615245584,10,5,10,10_1,10_4,10_0_0 -14196,2,40.0,0.0,7,111,800.0,0.0,0.0,56,65,0.0,0.0,1105.7393820607444,1000.0,344.06540083803833,0.0,60,2,2,1,2,1,2,2,2,2,15.0,1,,5,124085,2,2,3,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,456.47713223223,800.0,43317.36998598331,1,1,1,2,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.023085427400684328,15470.489280708325,3,2,3_0,3_1_0,3_4_0,3_0_0 -14197,1,31.0,218.0,2,111,546.0,0.0,0.0,53,67,0.0,0.0,754.6671282564581,546.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,125972,2,1,0,1,1,492.0,0.0,363.0,43,2.0,1.0,3.0,5.0,2.4,1,1,139.288422199275,546.0,10796.912367601757,1,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05057001311211709,4498.713486500732,1,1,1_1,1_0_1,1_4_1,1_0_1 -14198,2,32.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,183.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,117526,2,1,0,1,1,,0.0,340.0,12,1.0,0.0,2.0,1.0,1.0,3,3,288.602615841204,0.0,21981.76462061667,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008325082319749913,21981.76462061667,6,3,6,6_0,6_4,6_0_1 -14199,2,64.0,0.0,2,111,400.0,1300.0,0.0,78,75,0.0,0.0,552.8696910303722,1700.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,0,,2,,2,113093,2,2,0,0,2,,350.0,430.0,41,0.0,0.0,4.0,2.0,1.5,1,1,160.44346824548,400.0,4639.6270287030375,5,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.36640876292058727,3093.084685802025,1,1,1_0,1_0_0,1_4_0,1_0_1 -14200,2,73.0,0.0,7,111,2091.0,0.0,0.0,72,72,0.0,0.0,2890.126309861271,2091.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,105650,2,1,2,0,1,,229.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,553.516188829348,2091.0,107131.93775376458,5,5,0,1,190.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019517989162167685,71421.29183584305,10,5,10,10_1,10_4,10_0_0 -14201,2,62.0,0.0,7,111,1200.0,4000.0,0.0,85,22,0.0,0.0,1658.6090730911167,5200.0,0.0,7254.611603389795,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,111230,2,1,2,0,1,,300.0,,42,1.0,3.0,6.0,3.0,1.8,2,2,609.327328280442,1200.0,618863.0232450675,6,1,1,2,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008402505570187895,343812.79069170414,10,5,10,10_1,10_4,10_0_0 -14202,2,41.0,0.0,8,111,700.0,1299.0,0.0,37,63,0.0,0.0,967.5219593031513,1999.0,0.0,2355.9351182008363,43,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,131072,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,592.625440905999,700.0,69992.82042211368,1,1,1,2,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028560072132318755,33329.9144867208,8,4,8,8_1,8_4,8_0_0 -14203,0,85.0,0.0,6,111,1596.0,0.0,0.0,0,77,0.0,0.0,2205.9500672111853,1596.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101111,2,3,3,0,1,,378.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,897.254765128495,1596.0,16894.30826536132,0,5,5,0,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09446968617663414,16894.30826536132,4,2,4_0,4_1_0,4_4_0,4_0_0 -14204,2,58.0,0.0,7,111,3468.0,0.0,0.0,52,22,0.0,0.0,4793.380221233328,3522.0,92.89765822627035,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,121299,2,1,2,0,1,,605.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,641.06436984319,3468.0,155742.7867810945,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022614209446183694,86523.77043394139,10,5,10,10_1,10_4,10_0_0 -14205,2,46.0,0.0,9,111,576.0,980.0,0.0,56,43,0.0,0.0,796.132355083736,1556.0,0.0,1777.3798428305,50,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,123307,2,1,1,0,1,,420.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1074.3222182751,576.0,130476.18366022033,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011925548068236414,62131.51602867634,10,5,10,10_1,10_4,10_0_0 -14206,2,65.0,0.0,1,111,403.0,2289.0,0.0,74,75,0.0,72.46207533736204,557.0162137131,2762.0,0.0,4151.451490039811,50,0,0,0,0,0,0,0,0,0,,1,,1,110180,2,1,1,0,1,,297.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,624.184014827757,403.0,55095.26447816593,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050131350237815286,36730.17631877729,9,5,9,9_1,9_4,9_1_0 -14207,2,35.0,0.0,6,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,1390.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,121809,2,1,0,0,1,,0.0,550.0,12,1.0,2.0,1.0,1.0,1.0,3,3,822.849272260443,0.0,14176.702287570188,0,1,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09804819003772976,14176.702287570188,3,2,3_0,3_0_0,3_4_0,3_0_0 -14208,2,44.0,0.0,2,111,400.0,1700.0,0.0,37,37,0.0,0.0,552.8696910303722,2100.0,0.0,3083.2099314406632,71,0,0,0,0,0,0,0,0,3,60.0,1,,2,102911,2,2,3,0,1,,450.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,485.850994610183,400.0,83051.58236465331,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025285490537429643,46139.76798036295,10,5,10,10_1,10_4,10_0_1 -14209,2,51.0,0.0,7,111,1850.0,0.0,0.0,0,46,0.0,62.110350289167464,2557.0223210154713,1910.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,1,,5,118208,2,1,2,0,1,,0.0,,32,1.0,1.0,5.0,2.0,1.3,2,2,605.466250721905,1850.0,30349.085995832655,0,4,0,1,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0629343499920317,23345.45076602512,6,3,6,6_1,6_4,6_0_0 -14210,1,23.0,300.0,7,111,600.0,0.0,0.0,0,42,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,121611,2,2,2,0,1,,0.0,738.0,12,1.0,0.0,2.0,1.0,1.0,2,2,901.777357641988,600.0,11904.237094790786,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.050402221933445526,11904.237094790786,2,1,2_1,2_1_1,2_4_1,2_0_0 -14211,2,84.0,0.0,2,111,180.0,125.0,0.0,86,78,0.0,0.0,248.7913609636675,305.0,0.0,226.7066126059311,31,0,0,0,0,0,0,0,0,0,,2,,2,128197,2,2,0,1,1,630.0,0.0,419.0,41,0.0,5.0,5.0,2.0,1.5,3,2,498.430058858529,180.0,19021.33795850204,6,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0160346238874155,12680.891972334693,2,1,2_0,2_0_0,2_4_0,2_0_1 -14212,2,75.0,0.0,2,111,170.0,0.0,0.0,0,75,0.0,0.0,234.9696186879082,334.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,106606,2,1,0,1,1,,0.0,421.0,11,0.0,1.0,2.0,1.0,1.0,2,2,604.785032109567,170.0,25540.656374632657,0,5,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01307718936823149,25540.656374632657,7,4,7,7_0,7_4,7_0_1 -14213,2,70.0,0.0,2,111,312.0,132.0,0.0,56,78,0.0,0.0,431.23835900369033,444.0,0.0,239.40218291186326,31,0,0,0,0,0,0,0,0,0,,2,,2,123898,2,1,0,1,1,528.0,0.0,339.0,42,1.0,2.0,3.0,2.0,1.5,2,2,471.931608844269,312.0,24020.422414399163,1,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018484271106483204,16013.614942932776,4,2,4_0,4_0_0,4_4_0,4_0_1 -14214,2,83.0,0.0,2,111,360.0,1431.0,0.0,0,77,0.0,0.0,497.582721927335,1791.0,0.0,2595.337301112699,71,0,0,0,0,0,0,0,0,0,,1,,2,130679,2,2,2,0,2,,210.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,738.763577503087,360.0,14842.23390834901,0,5,0,1,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12066916685584182,14842.23390834901,3,2,3_0,3_1_0,3_4_0,3_0_1 -14215,2,83.0,0.0,1,111,328.0,0.0,0.0,77,75,2972.2339052658212,0.0,453.3531466449052,2378.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114988,2,1,1,0,1,,177.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,456.467592552199,328.0,42464.79293506427,5,5,0,1,84.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05599933110792174,28309.861956709516,8,4,8,8_1,8_4,8_1_0 -14216,2,85.0,0.0,2,111,250.0,2400.0,0.0,0,77,0.0,0.0,345.54355689398267,2650.0,0.0,4352.7669620338775,20,0,0,0,0,0,0,0,0,0,,1,,2,114625,2,2,2,0,1,,180.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,738.763577503087,250.0,16611.649735056646,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1595265998420092,16611.649735056646,4,2,4_0,4_1_0,4_4_0,4_0_1 -14217,2,61.0,0.0,1,111,421.0,1603.0,0.0,75,52,0.0,0.0,581.8953498094668,2024.0,0.0,2907.2856000584607,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,126956,2,2,2,0,1,,220.0,,42,1.0,1.0,5.0,2.0,1.5,6,4,638.994729607695,421.0,67405.46724245354,5,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030027237890359694,44936.97816163569,10,5,10,10_1,10_4,10_1_0 -14218,2,49.0,0.0,1,111,2200.0,0.0,0.0,21,21,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116286,2,2,2,0,1,,550.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,964.885486453812,2200.0,126796.17115392664,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017350681648969257,63398.08557696332,10,5,10,10_1,10_4,10_1_0 -14219,2,58.0,0.0,6,111,1980.0,0.0,0.0,0,38,0.0,0.0,2736.7049706003427,1980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,4,115077,2,1,2,0,1,,680.0,,12,1.0,3.0,6.0,1.0,1.0,4,4,732.60128442404,1980.0,64227.31884643198,0,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030828003341291505,64227.31884643198,10,5,10,10_1,10_4,10_0_0 -14220,2,55.0,0.0,8,111,650.0,1200.0,0.0,37,37,0.0,0.0,898.4132479243549,1850.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,4,70.0,1,2000.0,6,116407,2,1,1,0,1,,480.0,,43,3.0,0.0,7.0,4.0,2.5,2,2,574.572524342566,650.0,108407.05766234473,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01706530958309183,43362.82306493789,10,5,10,10_1,10_4,10_0_0 -14221,2,40.0,0.0,6,111,2600.0,0.0,0.0,37,38,0.0,258.79312620486445,3593.6529916974196,2850.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,,4,122766,2,1,2,0,1,,341.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,602.058093210392,2600.0,93807.93304787052,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03038122584521327,44670.444308509774,10,5,10,10_1,10_4,10_0_0 -14222,2,69.0,0.0,1,111,500.0,1500.0,0.0,0,77,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,1,107623,2,2,4,0,1,,240.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,499.681177331216,500.0,23235.04901806367,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0860768573565365,23235.04901806367,6,3,6,6_1,6_4,6_1_0 -14223,2,43.0,0.0,1,111,261.0,1700.0,0.0,34,31,0.0,0.0,360.7474733973179,1961.0,0.0,3083.2099314406632,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,104296,2,2,1,0,1,,538.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,444.907801166824,261.0,114573.20197577422,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017115695172896024,49814.43564164097,10,5,10,10_1,10_4,10_1_0 -14224,2,58.0,0.0,6,111,500.0,70.0,0.0,90,38,0.0,0.0,691.0871137879653,640.0,120.42289029331342,126.95570305932142,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,112897,2,1,2,0,1,,200.0,920.0,42,2.0,2.0,4.0,3.0,2.0,3,2,691.082390224393,500.0,53562.90513863966,5,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01194856773252785,26781.45256931983,7,4,7,7_1,7_4,7_0_0 -14225,1,34.0,200.0,9,111,540.0,520.0,0.0,55,21,0.0,0.0,746.3740828910024,1060.0,0.0,943.0995084406734,41,0,0,0,0,0,0,0,0,0,,2,2007.0,6,124663,2,1,0,0,1,,440.0,582.0,43,2.0,0.0,3.0,5.0,2.4,1,1,543.927980021267,540.0,43099.93232422833,1,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024594006134996373,17958.30513509514,4,2,4_1,4_0_1,4_4_1,4_0_0 -14226,2,34.0,0.0,7,111,1200.0,1400.0,0.0,0,63,0.0,0.0,1658.6090730911167,2600.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,5,125158,2,1,2,0,1,,1200.0,,22,1.0,1.0,4.0,3.0,2.0,1,1,613.897260822533,1200.0,44994.54701861788,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057784779985098414,22497.27350930894,6,3,6,6_1,6_4,6_0_0 -14227,2,60.0,0.0,7,111,360.0,480.0,0.0,0,77,0.0,0.0,497.582721927335,840.0,0.0,870.5533924067755,50,0,0,0,0,0,0,0,0,0,,2,,5,118680,2,1,0,0,1,,467.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,893.322068366508,360.0,50942.52797728179,0,7,1,2,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01648916992055448,50942.52797728179,10,5,10,10_0,10_4,10_0_0 -14228,2,66.0,0.0,9,111,1200.0,0.0,0.0,74,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,108710,2,1,0,0,1,,0.0,1414.0,41,0.0,0.0,5.0,2.0,1.5,1,1,1692.45212006553,1200.0,59658.970458128395,5,5,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020114326324860383,39772.6469720856,9,5,9,9_0,9_4,9_0_0 -14229,2,52.0,0.0,7,111,800.0,0.0,0.0,56,85,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,116520,2,1,2,0,1,,600.0,1069.0,42,2.0,1.0,4.0,4.0,2.3,2,2,746.75091075284,800.0,32448.502761931442,1,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02465445034149802,14108.044679100629,3,2,3_0,3_1_0,3_4_0,3_0_0 -14230,2,51.0,0.0,1,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,941.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,,1,124956,2,1,0,0,1,,248.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,552.749971078746,0.0,4975.796501842842,0,1,0,1,58.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.18911545109441072,3827.53577064834,1,1,1_0,1_0_0,1_4_0,1_1_0 -14231,2,79.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,542.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,108971,2,1,0,1,1,701.0,0.0,740.0,11,0.0,5.0,3.0,1.0,1.0,4,4,664.743817023981,0.0,27045.757192543526,0,5,2,3,58.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02004011187933864,27045.757192543526,7,4,7,7_0,7_4,7_0_1 -14232,2,46.0,0.0,2,111,200.0,200.0,0.0,0,52,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,44,2,1,2,2,1,2,2,2,2,25.0,2,,2,128326,2,1,0,1,1,,160.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,803.804256517284,200.0,22469.757015672432,0,1,1,2,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01780170563130718,22469.757015672432,6,3,6,6_0,6_4,6_0_1 -14233,2,58.0,0.0,1,111,1500.0,0.0,0.0,67,23,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112056,2,2,3,0,1,,470.0,1004.0,43,2.0,3.0,3.0,2.0,1.5,3,2,696.195210635044,1500.0,41024.040188489846,1,4,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036563926739250234,27349.360125659896,7,4,7,7_1,7_4,7_1_0 -14234,2,26.0,0.0,8,111,250.0,700.0,0.0,54,34,0.0,0.0,345.54355689398267,950.0,0.0,1269.5570305932142,33,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,132812,2,1,1,0,1,,412.0,990.0,43,2.0,0.0,3.0,3.0,1.8,4,3,733.831886552625,250.0,48498.78913610404,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01958811790813948,26943.77174228002,7,4,7,7_1,7_4,7_0_0 -14235,2,37.0,0.0,7,111,720.0,2568.0,0.0,46,46,0.0,0.0,995.16544385467,3538.0,0.0,4657.4606493762485,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,128420,2,1,3,0,1,,1296.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,605.924678610784,720.0,98834.50116594158,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0357972161366986,47064.04817425789,10,5,10,10_1,10_4,10_0_0 -14236,0,83.0,0.0,7,111,1103.0,0.0,0.0,0,72,0.0,0.0,1524.5381730162514,1103.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,125621,2,1,2,0,1,,500.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,779.496071900189,1103.0,57916.29586827612,0,5,5,0,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019044726246109478,57916.29586827612,10,5,10,10_1,10_4,10_0_0 -14237,2,60.0,0.0,6,111,250.0,75.0,0.0,77,38,0.0,0.0,345.54355689398267,325.0,0.0,136.02396756355867,70,0,0,0,0,0,0,0,0,2,35.0,2,,4,107644,1,3,0,1,2,,0.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,631.330808674148,250.0,70857.9067367528,5,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004586644101799694,47238.60449116854,10,5,10,10_0,10_4,10_0_0 -14238,2,62.0,0.0,1,111,500.0,2000.0,0.0,75,75,0.0,0.0,691.0871137879653,2500.0,0.0,3627.3058016948976,70,0,0,0,0,0,0,0,0,0,,2,,1,123651,2,2,0,0,1,,500.0,770.0,41,0.0,2.0,3.0,2.0,1.5,1,1,741.484822642334,500.0,38145.00841087333,5,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06553937472163118,25430.005607248884,7,4,7,7_0,7_4,7_1_0 -14239,2,71.0,0.0,1,111,500.0,1260.0,0.0,86,74,0.0,0.0,691.0871137879653,1760.0,0.0,2285.2026550677856,50,0,0,0,0,0,0,0,0,0,,1,,1,123234,2,2,3,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,432.968362778208,500.0,43479.98814121687,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04047839190488664,28986.658760811246,8,4,8,8_1,8_4,8_1_0 -14240,1,36.0,546.0,5,111,800.0,1400.0,0.0,85,67,0.0,0.0,1105.7393820607444,2200.0,0.0,2539.1140611864284,70,2,2,2,2,2,2,2,1,0,,2,,3,121447,2,3,0,1,1,,0.0,662.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,1,1,764.099527234693,800.0,17326.707142354782,6,4,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.1269716156638987,6664.118131674917,1,1,1_1,1_0_1,1_4_1,1_0_0 -14241,2,47.0,0.0,5,111,1200.0,0.0,0.0,0,31,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,2,2,2,2,2,1,2,2,2,10.0,2,,3,122863,2,2,0,0,1,,0.0,453.0,32,2.0,0.0,3.0,4.0,2.3,1,1,783.218867792398,1200.0,46620.351604695075,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.02573983161206252,20269.71808899786,5,3,5,5_0,5_4,5_0_0 -14242,2,31.0,0.0,1,111,300.0,1500.0,0.0,55,67,0.0,0.0,414.65226827277917,1800.0,0.0,2720.4793512711735,71,2,2,2,1,1,2,2,2,2,20.0,2,,1,125412,1,2,0,0,1,,450.0,850.0,43,2.0,0.0,3.0,3.0,1.8,1,1,735.206928690068,300.0,55577.0,4,1,3,4,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.032387498425607716,30876.11111111111,8,4,8,8_0,8_4,8_1_0 -14243,2,41.0,0.0,5,111,4645.0,0.0,0.0,63,33,0.0,124.22070057833493,6420.199287090198,5765.0,1720.3270041901917,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,108362,1,2,2,0,2,,742.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,469.115225125368,4645.0,49250.76539675568,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11705401842099616,18942.602075675266,5,3,5,5_1,5_4,5_0_0 -14244,2,61.0,0.0,5,111,800.0,410.0,0.0,52,74,0.0,0.0,1105.7393820607444,1210.0,0.0,743.5976893474541,50,0,0,0,0,0,0,0,0,0,,2,,3,128609,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,2.0,2,2,772.331942695345,800.0,79593.67308941904,1,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015202213354830763,39796.83654470952,9,5,9,9_0,9_4,9_0_0 -14245,2,47.0,0.0,6,111,750.0,0.0,0.0,0,43,0.0,0.0,1036.630670681948,750.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,4,132588,2,1,0,1,1,250.0,90.0,280.0,12,1.0,0.0,1.0,1.0,1.0,1,1,899.636707433443,750.0,20611.508635065897,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03638743836169478,20611.508635065897,5,3,5,5_0,5_4,5_0_0 -14246,2,27.0,0.0,7,111,550.0,300.0,0.0,0,45,0.0,0.0,760.1958251667618,850.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,1,10.0,2,,5,107687,2,1,0,1,1,,240.0,450.0,12,1.0,0.0,2.0,1.0,1.0,4,2,896.517275889696,550.0,71462.4861056918,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01189435249625747,71462.4861056918,10,5,10,10_0,10_4,10_0_0 -14247,0,77.0,0.0,2,111,250.0,450.0,0.0,0,78,0.0,0.0,345.54355689398267,700.0,0.0,816.143805381352,70,0,0,0,0,0,0,0,0,0,,1,,2,122176,2,1,1,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,700.76971553124,250.0,26267.855093912513,0,5,5,0,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026648540487884093,26267.855093912513,7,4,7,7_1,7_4,7_0_1 -14248,2,38.0,0.0,6,111,1369.0,0.0,0.0,0,54,0.0,0.0,1892.196517551449,1369.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,100587,2,1,2,0,1,,357.0,750.0,12,1.0,0.0,2.0,1.0,1.0,2,2,895.007576281109,1369.0,32076.82528230464,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042678787191424976,32076.82528230464,8,4,8,8_1,8_4,8_0_0 -14249,2,50.0,0.0,8,111,1109.0,0.0,0.0,56,53,0.0,0.0,1532.831218381707,1189.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,90.0,2,1999.0,6,109124,2,1,0,0,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,1,1,753.196423083915,1109.0,97339.33668710402,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012215000024317245,38935.73467484161,9,5,9,9_0,9_4,9_0_0 -14250,2,44.0,0.0,7,111,1000.0,0.0,0.0,0,45,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,5,133307,2,1,0,0,1,,350.0,430.0,12,1.0,0.0,2.0,1.0,1.0,2,2,819.996096134536,1000.0,20362.499051547096,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049109885651487474,20362.499051547096,5,3,5,5_0,5_4,5_0_0 -14251,2,44.0,0.0,6,111,700.0,0.0,0.0,0,85,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,103416,2,2,3,0,1,,100.0,,31,0.0,0.0,5.0,2.0,1.5,1,1,711.211509611851,700.0,22211.15454837078,0,7,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031515696245125895,14807.436365580521,3,2,3_0,3_1_0,3_4_0,3_0_0 -14252,2,45.0,0.0,5,111,980.0,0.0,0.0,0,54,0.0,0.0,1354.530743024412,980.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,3,101332,2,1,0,1,1,,250.0,680.0,12,1.0,0.0,3.0,1.0,1.0,2,2,762.555707524237,980.0,26775.706342265603,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036600341648244945,26775.706342265603,7,4,7,7_0,7_4,7_0_0 -14253,2,78.0,0.0,2,112,632.0,0.0,0.0,78,78,1866.981096272501,310.55175144583734,873.5341118279881,2182.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117308,2,1,1,0,1,,334.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,865.043750227966,632.0,24250.564224341197,5,5,0,1,97.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08997728794325723,16167.042816227464,4,2,4_0,4_1_0,4_0_0,4_0_1 -14254,2,45.0,0.0,6,112,3590.0,0.0,0.0,85,62,0.0,0.0,4962.00547699759,3590.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,125276,1,1,1,0,1,,0.0,661.0,42,2.0,0.0,5.0,7.0,3.3999999999999995,4,4,865.714821246006,3590.0,47461.99250832482,6,1,2,3,106.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07563947087493882,13959.409561272008,3,2,3_0,3_1_0,3_0_0,3_0_0 -14255,2,58.0,0.0,1,112,461.0,0.0,0.0,52,63,0.0,269.144851253059,637.182318912504,721.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,1,126747,2,1,0,0,1,,0.0,400.0,43,2.0,2.0,2.0,2.0,1.5,1,1,723.517940005703,461.0,37196.50830233675,1,1,2,3,35.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019383539824212627,24797.67220155783,7,4,7,7_0,7_0,7_1_0 -14256,2,45.0,0.0,1,112,2500.0,0.0,0.0,67,62,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127773,2,1,4,0,1,,690.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,579.582044399214,2500.0,46393.56448369072,1,1,1,2,100.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05388678425170057,18557.42579347629,4,2,4_0,4_1_0,4_0_0,4_1_0 -14257,2,60.0,0.0,2,112,520.0,2200.0,0.0,0,77,0.0,0.0,718.7305983394839,2720.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,0,,1,,2,120236,2,2,5,0,1,,1000.0,,31,3.0,6.0,6.0,5.0,3.0,3,3,669.825076622902,520.0,29242.57037469611,0,6,0,1,120.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09301507922004158,9747.523458232037,2,1,2_0,2_1_0,2_0_0,2_0_1 -14258,2,66.0,0.0,2,112,1786.0,0.0,0.0,67,78,0.0,0.0,2468.563170450612,1786.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,118049,2,1,2,0,1,,500.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,787.748454037973,1786.0,32975.919932838355,1,5,0,1,98.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05416073315429938,21983.946621892235,6,3,6,6_1,6_0,6_0_1 -14259,2,80.0,0.0,1,112,442.0,0.0,0.0,0,71,8603.048891623685,0.0,610.9210085885613,6262.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,114272,1,1,4,0,2,,344.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,692.66542344547,442.0,36237.21465081231,0,5,0,1,137.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17280577606037467,36237.21465081231,9,5,9,9_1,9_0,9_1_0 -14260,2,76.0,0.0,2,112,439.0,0.0,0.0,77,75,2882.6188126447414,0.0,606.7744859058336,2424.0,94.61798523046055,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124925,2,2,4,0,1,,297.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,888.035842286942,439.0,42054.425182384744,5,5,0,1,109.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057639594156558255,28036.283454923163,7,4,7,7_1,7_0,7_0_1 -14261,2,30.0,0.0,2,112,0.0,0.0,0.0,52,37,0.0,0.0,0.0,2544.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,120.0,1,,2,125279,2,1,2,0,1,,366.0,900.0,43,2.0,0.0,5.0,5.0,2.4,2,2,763.622418608926,0.0,64701.854054140145,1,1,2,3,90.0,10,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039318811449688504,26959.10585589173,7,4,7,7_1,7_0,7_0_1 -14262,2,43.0,0.0,1,112,840.0,2800.0,0.0,42,46,0.0,455.47590212056144,1161.0263511637818,4080.0,0.0,5078.228122372857,50,0,0,0,0,0,0,0,0,3,105.0,1,,1,103726,2,2,2,0,1,,410.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,617.261768032247,840.0,71961.00848325212,1,1,0,1,160.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056697371062407506,31287.394992718317,8,4,8,8_1,8_0,8_1_0 -14263,2,85.0,0.0,1,112,0.0,0.0,0.0,77,78,2613.773534781501,0.0,0.0,2288.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,128209,2,1,2,0,1,,120.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,600.645197866976,0.0,34320.0991272433,5,5,0,1,70.0,10,0,1,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06666647411236015,22880.066084828868,6,3,6,6_1,6_0,6_1_0 -14264,0,57.0,0.0,1,112,1104.0,0.0,0.0,56,63,2091.018827825201,0.0,1525.9203472438273,2504.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108018,2,1,2,0,1,,0.0,,43,4.0,1.0,5.0,5.0,3.0,1,1,763.622418608926,1104.0,63996.80133773059,1,1,5,0,80.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03912695552994329,21332.267112576865,6,3,6,6_1,6_0,6_1_0 -14265,2,60.0,0.0,1,111,400.0,1000.0,0.0,0,33,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,121866,2,1,3,0,1,,350.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,499.681177331216,400.0,39043.43828446365,0,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0358574977387966,39043.43828446365,9,5,9,9_1,9_4,9_1_0 -14266,2,80.0,0.0,7,111,360.0,1300.0,0.0,77,74,0.0,0.0,497.582721927335,1660.0,0.0,2357.7487711016834,41,0,0,0,0,0,0,0,0,0,,1,,5,111489,2,1,2,0,2,,300.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,672.829118366853,360.0,76245.27717516034,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021771840322469246,50830.18478344023,10,5,10,10_1,10_4,10_0_0 -14267,2,58.0,0.0,1,111,390.0,1800.0,0.0,74,38,0.0,0.0,539.0479487546129,2190.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,17.0,1,,1,125582,2,1,3,0,1,,600.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,456.467592552199,390.0,63334.91208229999,5,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03457808541921119,42223.27472153333,9,5,9,9_1,9_4,9_1_0 -14268,2,35.0,0.0,1,112,2500.0,0.0,0.0,42,38,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103154,2,1,2,0,1,,530.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,713.126907981755,2500.0,64101.00586988502,1,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03900094805180761,26708.752445785427,7,4,7,7_1,7_0,7_1_0 -14269,2,62.0,0.0,1,112,1254.0,0.0,0.0,21,21,4480.754631054002,207.03450096389156,1733.246481380217,6514.0,77.41471518855863,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,1,109476,1,1,2,0,1,,606.0,,43,2.0,3.0,9.0,2.0,1.5,4,3,615.046188484028,1254.0,112724.0,1,1,0,1,180.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05778716156275505,75149.33333333333,10,5,10,10_1,10_0,10_1_0 -14270,2,38.0,0.0,9,111,250.0,832.0,0.0,54,37,0.0,0.0,345.54355689398267,1082.0,0.0,1508.9592135050775,50,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,127531,2,2,1,0,1,,364.0,975.0,43,2.0,0.0,4.0,3.0,1.8,5,3,1429.53836588864,250.0,67105.66273944876,1,1,2,3,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016123825558523767,37280.9237441382,9,5,9,9_1,9_4,9_0_0 -14271,2,34.0,0.0,1,111,520.0,0.0,0.0,0,68,0.0,0.0,718.7305983394839,520.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,90.0,2,,1,100131,2,2,0,0,2,,0.0,493.0,12,1.0,0.0,1.0,1.0,1.0,3,3,805.958481331177,520.0,12687.520825526972,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04098515440099008,12687.520825526972,2,1,2_0,2_0_0,2_4_0,2_1_0 -14272,2,52.0,0.0,6,111,666.0,238.0,0.0,85,68,0.0,0.0,920.5280355655698,904.0,0.0,431.6493904016928,50,0,0,0,0,0,0,0,0,0,,1,,4,121021,2,1,1,0,1,,0.0,,42,1.0,2.0,7.0,5.0,3.0,3,3,511.439526416162,666.0,30141.26704889897,6,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029992103468424767,10047.089016299657,2,1,2_0,2_1_0,2_4_0,2_0_0 -14273,1,55.0,342.0,7,111,558.0,420.0,0.0,0,55,0.0,0.0,771.2532189873692,978.0,0.0,761.7342183559285,50,2,1,2,1,2,2,2,2,1,5.0,2,,5,112434,1,2,0,1,1,516.0,0.0,436.0,32,1.0,1.0,4.0,4.0,2.5,2,2,201.794326496415,558.0,18335.82792757656,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.053338196882242554,7334.331171030624,1,1,1_1,1_0_1,1_4_1,1_0_0 -14274,2,31.0,0.0,2,111,0.0,0.0,0.0,85,55,0.0,0.0,0.0,869.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,5.0,2,,2,104173,1,1,0,1,1,,0.0,635.0,42,1.0,0.0,4.0,5.0,2.4,2,2,170.491881849732,0.0,26288.931513082538,6,1,2,3,76.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03305573676767909,10953.721463784392,2,1,2_0,2_0_0,2_4_0,2_0_1 -14275,2,33.0,0.0,6,111,2200.0,0.0,0.0,52,21,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,100160,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,541.91386377048,2200.0,50968.67289641983,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0431637685460422,28315.9293868999,8,4,8,8_1,8_4,8_0_0 -14276,2,57.0,0.0,2,111,1000.0,1800.0,0.0,75,74,0.0,414.0690019277831,1382.1742275759307,3200.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,2,101514,2,1,1,0,1,,600.0,,41,1.0,3.0,6.0,5.0,2.5999999999999996,4,3,511.439526416162,1000.0,109840.02357845301,6,7,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029133278524056457,42246.162914789624,9,5,9,9_1,9_4,9_0_1 -14277,2,88.0,0.0,2,111,600.0,860.0,0.0,0,77,0.0,0.0,829.3045365455583,1460.0,0.0,1559.741494728806,50,0,0,0,0,0,0,0,0,0,,1,,2,106722,2,1,1,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,661.059431442304,600.0,26388.046335554933,0,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05532808232312423,26388.046335554933,7,4,7,7_1,7_4,7_0_1 -14278,2,51.0,0.0,2,111,1500.0,1600.0,0.0,68,62,0.0,0.0,2073.261341363896,3100.0,0.0,2901.844641355918,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,121187,2,1,2,0,1,,820.0,,43,3.0,0.0,3.0,4.0,2.5,2,2,420.465348165405,1500.0,64174.73731988913,1,1,0,1,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048305612604965714,25669.89492795565,7,4,7,7_1,7_4,7_0_1 -14279,2,51.0,0.0,6,111,2000.0,0.0,0.0,21,38,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,113828,2,1,1,0,1,,700.0,,43,2.0,1.0,7.0,3.0,1.8,2,2,573.149385237436,2000.0,71579.94567033429,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027940786784207958,39766.63648351905,9,5,9,9_1,9_4,9_0_0 -14280,2,63.0,0.0,5,111,2000.0,2100.0,0.0,85,75,0.0,0.0,2764.3484551518613,4100.0,0.0,3808.6710917796427,50,0,0,0,0,0,0,0,0,0,,1,,3,130456,2,1,2,0,1,,780.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,638.863361795034,2000.0,28148.03263062719,6,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14565849250646704,18765.355087084794,5,3,5,5_1,5_4,5_0_0 -14281,2,39.0,0.0,5,111,580.0,0.0,0.0,0,34,0.0,0.0,801.6610519940398,580.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,112232,2,1,0,0,1,,0.0,560.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1142.1201466052,580.0,28771.371745373337,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0201589276011238,28771.371745373337,8,4,8,8_0,8_4,8_0_0 -14282,2,62.0,0.0,2,111,180.0,0.0,0.0,0,90,0.0,0.0,248.7913609636675,180.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,122713,2,2,0,1,2,,0.0,376.0,12,1.0,0.0,4.0,1.0,1.0,1,1,206.022126785387,180.0,18194.864547315192,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009892901347625615,18194.864547315192,4,2,4_0,4_0_0,4_4_0,4_0_1 -14283,2,71.0,0.0,2,111,185.0,115.0,0.0,0,77,0.0,0.0,255.70223210154717,300.0,0.0,208.57008359745663,50,0,0,0,0,0,0,0,0,0,,2,,2,111329,2,2,0,1,1,240.0,0.0,196.0,11,0.0,1.0,1.0,1.0,1.0,2,2,206.022126785387,185.0,16288.14707006461,0,5,2,3,31.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018418301278195052,16288.14707006461,4,2,4_0,4_0_0,4_4_0,4_0_1 -14284,1,38.0,112.0,2,111,490.0,620.0,0.0,85,47,0.0,0.0,677.265371512206,1110.0,0.0,1124.4647985254182,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,124969,2,2,0,0,1,,720.0,,42,1.0,0.0,3.0,5.0,2.4,1,1,190.72125973355,490.0,27473.71784312544,6,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04040224939114848,11447.3824346356,2,1,2_1,2_0_1,2_4_1,2_0_1 -14285,2,42.0,0.0,5,111,460.0,180.0,0.0,21,54,0.0,0.0,635.800144684928,640.0,0.0,326.4575221525408,43,0,0,0,0,0,0,0,0,2,30.0,2,,3,104331,2,2,0,1,1,100.0,0.0,545.0,43,2.0,0.0,4.0,6.0,3.3,2,2,768.22395871626,460.0,19802.093677770434,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032319814783951635,6000.634447809222,1,1,1_0,1_0_0,1_4_0,1_0_0 -14286,2,44.0,0.0,5,111,1900.0,0.0,0.0,63,52,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,3,105070,2,1,0,0,1,,720.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,737.325540678747,1900.0,43275.550614318316,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.043904698450476995,21637.775307159158,6,3,6,6_0,6_4,6_0_0 -14287,2,39.0,0.0,2,111,476.0,1800.0,0.0,38,52,0.0,0.0,657.9149323261429,2276.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,,2,103686,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,610.941502673482,476.0,60918.28750683932,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03736152300316178,33843.493059355176,9,5,9,9_1,9_4,9_0_1 -14288,2,59.0,0.0,6,111,500.0,1700.0,0.0,75,38,0.0,0.0,691.0871137879653,2200.0,0.0,3083.2099314406632,60,0,0,0,0,0,0,0,0,2,90.0,1,,4,102605,2,2,2,0,1,,300.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,690.003649040082,500.0,89792.29998577671,5,1,0,1,118.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024500987282300202,59861.533323851145,10,5,10,10_1,10_4,10_0_0 -14291,2,72.0,0.0,1,111,0.0,0.0,0.0,74,74,5376.905557264802,0.0,0.0,4167.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,128389,2,2,2,0,1,,316.0,,41,0.0,2.0,4.0,2.0,1.5,5,3,691.06626619335,0.0,95440.20103089306,5,5,0,1,100.0,10,8,1,1,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043660846844310215,63626.80068726204,10,5,10,10_1,10_4,10_1_0 -14292,1,39.0,83.0,9,111,1500.0,1000.0,0.0,64,54,0.0,0.0,2073.261341363896,2500.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,3,60.0,1,2007.0,6,106754,2,2,1,0,1,,0.0,572.0,43,2.0,0.0,4.0,5.0,2.4,1,1,524.794902525643,1500.0,49338.280003807275,4,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05067059491751806,20557.61666825303,5,3,5,5_1,5_4,5_0_0 -14293,2,40.0,0.0,9,111,480.0,1200.0,0.0,46,38,0.0,0.0,663.4436292364467,1680.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,128831,2,1,1,0,1,,299.0,700.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1255.87465329549,480.0,88412.54469922082,1,1,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019001828368534743,42101.21176153372,9,5,9,9_1,9_4,9_0_0 -14294,2,40.0,0.0,2,111,0.0,0.0,0.0,22,33,0.0,0.0,0.0,707.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,20.0,2,,2,128199,2,1,0,1,1,,643.0,800.0,43,2.0,0.0,5.0,4.0,2.1,1,1,676.214462584742,0.0,35731.38112981953,1,1,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019786528749933346,17014.943395152157,4,2,4_0,4_0_0,4_4_0,4_0_1 -14295,2,32.0,0.0,5,111,300.0,0.0,0.0,0,67,0.0,0.0,414.65226827277917,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,2,,3,128650,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,802.172987324386,300.0,31735.40395274959,0,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009453164687825177,31735.40395274959,8,4,8,8_0,8_4,8_0_0 -14296,2,56.0,0.0,1,111,704.0,0.0,0.0,85,37,4480.754631054002,0.0,973.0506562134551,3704.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,1,,1,108251,2,2,1,0,1,,400.0,,42,1.0,0.0,6.0,4.0,2.5,2,2,408.284675444452,704.0,131179.3544742644,6,1,1,2,135.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02823615053485169,52471.74178970576,10,5,10,10_1,10_4,10_1_0 -14297,2,54.0,0.0,2,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,639.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,60.0,2,,2,106841,2,3,0,0,1,,0.0,680.0,43,3.0,1.0,4.0,4.0,2.5,4,4,618.848605417534,0.0,67653.73903974865,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009445154237884293,27061.495615899457,7,4,7,7_0,7_4,7_0_1 -14298,1,38.0,400.0,2,111,1200.0,0.0,0.0,0,56,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,117094,2,2,0,1,1,,0.0,750.0,32,1.0,0.0,4.0,5.0,2.8,5,4,522.852476328625,1200.0,14040.573397959946,0,1,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08546659498780558,5014.49049927141,1,1,1_1,1_0_1,1_4_1,1_0_1 -14299,2,73.0,0.0,1,111,240.0,192.0,0.0,0,77,0.0,0.0,331.72181461822333,432.0,0.0,348.22135696271016,50,0,0,0,0,0,0,0,0,0,,2,,1,117428,2,2,0,1,1,,0.0,400.0,11,0.0,2.0,4.0,1.0,1.0,2,2,850.567607273499,240.0,20066.174274459336,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021528767471628064,20066.174274459336,5,3,5,5_0,5_4,5_1_0 -14300,1,39.0,129.0,5,111,0.0,0.0,600.0,47,85,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,50,2,1,2,2,1,2,2,2,0,,2,,3,119740,2,2,0,0,1,,0.0,551.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,2,2,495.055637107983,0.0,21011.20616566022,1,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.028556190219132364,8081.233140638547,1,1,1_1,1_0_1,1_4_1,1_0_0 -14301,2,51.0,0.0,1,111,2500.0,0.0,0.0,85,21,0.0,465.827627168756,3455.435568939826,2950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102936,2,1,2,0,1,,2500.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,399.402834811384,2500.0,82184.95073178048,6,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03589464949157962,41092.47536589024,9,5,9,9_1,9_4,9_1_0 -14302,2,52.0,0.0,8,111,1142.0,1272.0,0.0,64,54,0.0,517.5862524097289,1578.4429678917127,2914.0,0.0,2306.966489877955,20,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,106241,2,1,2,0,1,,225.0,,43,4.0,0.0,5.0,5.0,3.0,2,2,460.597409669825,1142.0,46425.75212623752,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06276688834413417,15475.250708745842,3,2,3_0,3_1_0,3_4_0,3_0_0 -14303,2,55.0,0.0,7,111,1800.0,0.0,0.0,43,47,0.0,113.86897553014036,2487.913609636675,1910.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,116471,2,1,1,0,1,,400.0,,43,2.0,2.0,5.0,3.0,1.8,1,1,520.001944558439,1800.0,75360.31078729568,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025344906092425377,41866.839326275374,9,5,9,9_1,9_4,9_0_0 -14304,2,57.0,0.0,6,111,1900.0,0.0,0.0,56,37,0.0,258.79312620486445,2626.131032394268,2350.0,344.06540083803833,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,4,110922,2,2,5,0,1,,350.0,,43,2.0,3.0,6.0,3.0,2.0,2,2,575.426059188697,1900.0,49360.6409536897,1,1,0,1,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047608782110523586,24680.32047684485,7,4,7,7_1,7_4,7_0_0 -14305,2,63.0,0.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,1450.0,2064.39240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109215,2,1,1,0,1,,120.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,663.685303207265,250.0,28389.73242581483,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05107480332155271,28389.73242581483,8,4,8,8_1,8_4,8_0_1 -14306,2,29.0,0.0,5,111,0.0,0.0,0.0,52,53,0.0,0.0,0.0,655.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,90.0,2,,3,131416,2,1,0,1,1,840.0,0.0,514.0,43,2.0,0.0,5.0,4.0,2.1,2,2,700.199308098865,0.0,37713.64633472149,1,1,2,3,91.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017367718681631877,17958.87920701023,4,2,4_0,4_0_0,4_4_0,4_0_0 -14307,2,26.0,0.0,5,111,360.0,0.0,0.0,42,42,0.0,0.0,497.582721927335,435.0,129.02452531426437,0.0,44,2,1,2,1,1,2,2,2,2,35.0,2,,3,115218,2,1,0,1,1,432.0,200.0,402.0,43,2.0,0.0,3.0,2.0,1.5,2,2,887.609065148618,360.0,44322.081077450144,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009814521101567048,29548.05405163343,8,4,8,8_0,8_4,8_0_0 -14308,2,46.0,0.0,2,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1080.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,125538,2,3,3,0,1,,1536.0,,43,2.0,1.0,3.0,4.0,2.1,1,1,590.934344362853,0.0,55873.19157625513,1,1,1,2,62.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019329484669334266,26606.28170297863,7,4,7,7_1,7_4,7_0_1 -14309,2,60.0,0.0,5,111,375.0,1000.0,0.0,0,37,0.0,0.0,518.315335340974,1375.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,1,10.0,1,,3,112759,2,1,2,0,1,,227.0,,12,1.0,3.0,7.0,1.0,1.0,3,2,718.956211158982,375.0,92851.78685652763,0,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01480854646475051,92851.78685652763,10,5,10,10_1,10_4,10_0_0 -14310,2,70.0,0.0,5,111,1035.0,0.0,0.0,77,74,224.0377315527001,56.93448776507018,1430.5503255410881,1280.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117216,1,2,1,0,2,,280.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,711.211509611851,1035.0,61604.908346842574,5,5,0,1,110.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020777565202977917,41069.93889789505,9,5,9,9_1,9_4,9_0_0 -14311,2,55.0,0.0,8,111,500.0,60.0,0.0,42,11,0.0,621.1035028916747,691.0871137879653,1160.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,7,2002.0,6,105683,2,1,0,0,1,,0.0,,43,2.0,1.0,2.0,2.0,1.5,1,1,744.752046576301,500.0,21352.559514180804,1,1,1,2,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054326039893700474,14235.039676120536,3,2,3_0,3_1_0,3_4_0,3_0_0 -14312,2,48.0,0.0,1,111,432.0,650.0,0.0,0,47,0.0,0.0,597.099266312802,1082.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,2,75.0,1,,1,123417,2,1,2,0,1,,240.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,443.687519504098,432.0,25683.81356044325,0,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042127700290833556,17122.542373628832,4,2,4_0,4_1_0,4_4_0,4_1_0 -14313,2,46.0,0.0,7,111,352.0,650.0,0.0,0,52,0.0,0.0,486.52532810672756,1002.0,0.0,1178.8743855508417,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,121022,2,2,0,1,1,1167.0,0.0,480.0,32,1.0,0.0,3.0,2.0,1.5,5,4,686.940461358224,352.0,29668.26137697135,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03377346543056134,19778.8409179809,5,3,5,5_0,5_4,5_0_0 -14314,2,58.0,0.0,2,111,0.0,0.0,0.0,78,63,0.0,0.0,0.0,1140.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,2,,2,115714,2,1,0,0,1,,0.0,402.0,42,1.0,3.0,3.0,2.0,1.5,2,2,686.940461358224,0.0,24069.562934973263,7,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04736272125421817,16046.375289982176,4,2,4_0,4_0_0,4_4_0,4_0_1 -14315,2,38.0,0.0,5,111,700.0,200.0,0.0,42,45,0.0,0.0,967.5219593031513,900.0,0.0,362.73058016948977,50,2,1,2,2,1,2,2,2,3,90.0,2,,3,114984,1,3,0,1,1,756.0,0.0,807.0,43,2.0,0.0,4.0,4.0,2.1,1,1,615.879830293456,700.0,49485.01184720217,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0181873251395591,23564.291355810557,6,3,6,6_0,6_4,6_0_0 -14316,2,51.0,0.0,2,111,50.0,20.0,0.0,0,46,0.0,0.0,69.10871137879653,70.0,0.0,36.27305801694898,42,0,0,0,0,0,0,0,0,3,90.0,2,,2,125653,2,1,0,1,1,912.0,0.0,302.0,32,1.0,0.0,3.0,3.0,2.0,1,1,491.195033376163,50.0,29272.440089504802,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002391327808203371,14636.220044752401,3,2,3_0,3_0_0,3_4_0,3_0_1 -14317,2,55.0,0.0,1,111,700.0,1600.0,0.0,77,46,0.0,0.0,967.5219593031513,2300.0,0.0,2901.844641355918,31,0,0,0,0,0,0,0,0,3,90.0,1,,1,116015,2,1,1,0,1,,480.0,,42,3.0,0.0,5.0,4.0,2.5,2,2,409.999758557084,700.0,103929.49991036777,5,1,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022130386482986986,41571.79996414711,9,5,9,9_1,9_4,9_1_0 -14318,2,74.0,0.0,1,111,550.0,2046.0,0.0,78,74,0.0,0.0,760.1958251667618,2596.0,0.0,3710.7338351338803,31,0,0,0,0,0,0,0,0,0,,1,,1,101414,2,1,2,0,1,,416.0,,41,0.0,3.0,7.0,2.0,1.5,3,2,454.325313376374,550.0,71774.90848546218,6,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0361686284911922,47849.93899030812,10,5,10,10_1,10_4,10_1_0 -14319,2,44.0,0.0,9,111,0.0,0.0,0.0,43,52,0.0,0.0,0.0,652.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,107614,2,1,1,0,1,,185.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,500.697063224352,0.0,74319.29380859701,1,1,1,2,123.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008772957419094566,26542.604931641792,7,4,7,7_1,7_4,7_0_0 -14320,2,85.0,0.0,1,111,501.0,0.0,0.0,77,90,0.0,0.0,692.4692880155412,621.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,115276,1,1,1,0,2,,400.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,454.325313376374,501.0,28576.246971238954,5,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021731335140860727,19050.831314159303,5,3,5,5_1,5_4,5_1_0 -14321,2,27.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,3785.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,125063,2,1,2,0,1,,882.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,444.907801166824,0.0,47355.290529081045,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07992771151252084,22550.138347181448,6,3,6,6_1,6_4,6_1_0 -14324,2,60.0,0.0,7,111,500.0,2200.0,0.0,54,31,0.0,124.22070057833493,691.0871137879653,2820.0,0.0,3990.0363818643877,60,1,2,2,2,1,2,2,2,0,,1,,5,110088,2,1,2,0,2,,420.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,695.216666101179,500.0,14757.021290461695,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.19109547546853015,9838.01419364113,2,1,2_0,2_1_0,2_4_0,2_0_0 -14325,2,61.0,0.0,2,111,1200.0,0.0,0.0,0,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111412,2,1,2,0,1,,250.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,699.357685700662,1200.0,37525.95446032844,0,5,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03197786751216713,37525.95446032844,9,5,9,9_1,9_4,9_0_1 -14326,2,40.0,0.0,5,111,700.0,0.0,0.0,53,54,0.0,465.827627168756,967.5219593031513,1150.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,3,112925,2,2,2,0,1,,755.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,497.226824397017,700.0,65661.79566643192,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017513989502238224,27359.08152767997,7,4,7,7_1,7_4,7_0_0 -14327,2,65.0,0.0,7,112,900.0,0.0,0.0,37,72,3584.6037048432017,0.0,1243.9568048183376,3340.0,68.81308016760767,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,104919,2,1,2,0,1,,711.0,,42,1.0,2.0,7.0,2.0,1.5,1,1,819.252927622257,900.0,127555.09512259858,1,5,0,1,230.0,10,4,1,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026184763507798612,85036.73008173238,10,5,10,10_1,10_2,10_0_0 -14328,2,55.0,0.0,1,112,1870.0,0.0,0.0,0,52,0.0,0.0,2584.66580556699,1870.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,126827,2,1,2,0,1,,300.0,,22,2.0,2.0,5.0,6.0,2.6999999999999997,2,2,605.784202064372,1870.0,42754.20776867893,0,1,0,1,120.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04373838500569605,15834.891766177381,3,2,3_0,3_1_0,3_2_0,3_1_0 -14329,2,52.0,0.0,2,112,1550.0,0.0,0.0,52,64,0.0,0.0,2142.370052742692,1550.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,129724,2,1,1,0,1,,500.0,695.0,43,2.0,3.0,3.0,2.0,1.5,3,3,660.754456248952,1550.0,33162.89038735847,1,1,2,3,95.0,10,3,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04673898993408766,22108.593591572313,6,3,6,6_1,6_1,6_0_1 -14331,2,64.0,0.0,6,112,2250.0,0.0,0.0,77,74,0.0,56.93448776507018,3109.892012045844,2305.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106242,2,1,2,0,1,,320.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,763.751581591896,2250.0,59331.86758162001,6,5,0,1,140.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03884927432680459,39554.578387746675,9,5,9,9_1,9_1,9_0_0 -14332,2,70.0,0.0,7,112,400.0,1600.0,0.0,46,74,0.0,0.0,552.8696910303722,2000.0,0.0,2901.844641355918,41,2,2,2,2,1,2,2,2,0,,1,,5,121105,2,3,2,0,1,,330.0,,42,1.0,5.0,5.0,2.0,1.5,2,2,838.961469222506,400.0,97337.0376280807,1,5,0,1,200.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.020547163225183476,64891.35841872046,10,5,10,10_1,10_1,10_0_0 -14333,2,80.0,0.0,7,112,1855.0,0.0,0.0,75,75,0.0,310.55175144583734,2563.9331921533512,2155.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,104094,2,1,2,0,1,,397.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,763.751581591896,1855.0,56258.86436603139,5,5,0,1,150.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03830507466306359,37505.90957735426,9,5,9,9_1,9_1,9_0_0 -14334,2,45.0,0.0,7,112,2400.0,0.0,0.0,0,52,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,116093,2,1,2,0,1,,700.0,,22,2.0,2.0,5.0,3.0,2.0,2,2,756.214288325235,2400.0,59287.08928435002,0,1,0,1,100.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04048098884546735,29643.54464217501,8,4,8,8_1,8_1,8_0_0 -14335,0,78.0,0.0,7,112,430.0,0.0,0.0,0,75,4480.754631054002,0.0,594.3349178576501,3430.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,108338,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,969.951938055235,430.0,28028.022112350423,0,5,0,1,100.0,10,3,1,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12237752582935868,28028.022112350423,7,4,7,7_1,7_1,7_0_0 -14336,1,34.0,491.0,9,112,418.0,757.0,0.0,52,65,0.0,0.0,577.748827126739,1175.0,0.0,1372.9352459415188,20,0,0,0,0,0,0,0,0,3,60.0,2,2005.0,6,101475,2,1,0,1,1,,0.0,461.0,43,2.0,0.0,4.0,5.0,2.4,2,2,463.215847328255,418.0,34399.47996153551,4,1,2,3,75.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034157493116577654,14333.116650639795,3,2,3_1,3_0_1,3_1_1,3_0_0 -14337,2,70.0,0.0,7,112,1220.0,0.0,0.0,77,78,0.0,258.79312620486445,1686.2525576426353,1470.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,120841,2,1,1,0,1,,340.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,744.510751989893,1220.0,29362.809811228075,5,5,0,1,150.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050063328729455764,19575.206540818715,5,3,5,5_1,5_1,5_0_0 -14338,2,52.0,0.0,6,112,794.0,1025.0,0.0,0,46,0.0,0.0,1097.446336695289,1819.0,0.0,1858.9942233686352,31,0,0,0,0,0,0,0,0,2,25.0,1,,4,120025,2,1,3,0,1,,537.0,,22,2.0,0.0,3.0,2.0,1.5,1,1,861.260317493722,794.0,34280.1174680543,0,1,1,2,60.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053062828670150546,22853.41164536953,6,3,6,6_1,6_1,6_0_0 -14339,2,92.0,0.0,1,111,770.0,0.0,0.0,0,77,2987.1697540360015,0.0,1064.2741552334664,2815.0,77.41471518855863,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113254,1,1,2,0,2,,310.0,,21,0.0,0.0,7.0,2.0,1.5,2,2,658.243925721935,770.0,66535.08660266873,0,5,0,1,120.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042308504335622076,44356.72440177915,10,5,10,10_1,10_4,10_1_0 -14340,2,42.0,0.0,1,111,783.0,0.0,0.0,0,22,0.0,0.0,1082.2424201919537,783.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,132642,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1200.04812975858,783.0,22258.071470903356,0,1,1,2,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03517824987773847,22258.071470903356,6,3,6,6_0,6_4,6_1_0 -14342,1,27.0,464.0,6,111,400.0,0.0,0.0,0,54,0.0,372.6621017350048,552.8696910303722,760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,4,112844,1,3,0,1,1,1045.0,0.0,441.0,32,1.0,0.0,3.0,3.0,1.6,5,3,704.945972749783,400.0,10114.845389068469,0,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07513708522142745,6321.778368167793,1,1,1_1,1_0_1,1_4_1,1_0_0 -14343,2,34.0,0.0,1,111,530.0,0.0,0.0,0,46,0.0,144.92415067472407,732.5523406152432,670.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,109123,2,1,0,0,1,,0.0,440.0,12,1.0,0.0,1.0,1.0,1.0,2,2,858.622940480475,530.0,9417.0,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07114792396729319,9417.0,1,1,1_0,1_0_0,1_4_0,1_1_0 -14344,2,41.0,0.0,2,111,400.0,0.0,0.0,0,53,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,2,1,2,2,2,2,2,1,0,,2,,2,122903,1,3,0,1,2,408.0,0.0,550.0,12,1.0,0.0,1.0,1.0,1.0,2,2,936.81570430178,400.0,14791.199145114555,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.027043108275106798,14791.199145114555,3,2,3_0,3_0_0,3_4_0,3_0_1 -14345,2,72.0,0.0,2,111,600.0,1400.0,0.0,0,77,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,44,0,0,0,0,0,0,0,0,0,,2,,2,119574,2,1,0,1,1,945.0,0.0,326.0,21,1.0,1.0,4.0,2.0,1.5,3,3,755.494403540972,600.0,22435.99421862653,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08914247260500652,14957.329479084352,3,2,3_0,3_0_0,3_4_0,3_0_1 -14346,1,42.0,120.0,5,111,667.0,109.0,0.0,0,22,0.0,0.0,921.9102097931457,1003.0,0.0,197.68816619237194,50,2,1,2,2,2,2,2,1,0,,2,,3,130382,2,2,0,1,1,1000.0,0.0,326.0,32,1.0,0.0,4.0,3.0,1.8,2,2,744.527927574572,667.0,21499.724519270563,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.046651760542373195,11944.291399594757,2,1,2_1,2_0_1,2_4_1,2_0_0 -14347,2,24.0,0.0,5,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,912.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,45.0,2,,3,115255,1,2,0,1,2,,0.0,,43,2.0,0.0,5.0,2.0,1.5,3,3,645.856471999062,0.0,43377.60097280141,1,1,1,2,102.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021024675859133878,28918.400648534272,8,4,8,8_0,8_4,8_0_0 -14348,0,77.0,0.0,2,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,219.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,102882,1,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,868.171348382199,0.0,38985.40317380028,0,5,5,0,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005617487114951182,38985.40317380028,9,5,9,9_0,9_4,9_0_1 -14349,2,57.0,0.0,5,111,400.0,350.0,0.0,85,62,0.0,0.0,552.8696910303722,750.0,0.0,634.7785152966071,70,0,0,0,0,0,0,0,0,2,60.0,2,,3,102256,2,1,0,1,1,871.0,0.0,386.0,42,5.0,2.0,5.0,6.0,3.5,2,2,749.724877023188,400.0,83543.88895856614,6,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00897731730410545,23869.682559590325,6,3,6,6_0,6_4,6_0_0 -14350,2,52.0,0.0,6,111,2015.0,0.0,0.0,52,33,0.0,362.31037668681023,2785.0810685655,2480.0,197.83760548187203,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,101997,2,1,2,0,1,,422.0,,43,2.0,1.0,4.0,3.0,2.0,5,4,611.96299356447,2015.0,65606.4205768559,1,1,0,1,99.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037801178271793634,32803.21028842795,8,4,8,8_1,8_4,8_0_0 -14351,2,58.0,0.0,2,111,250.0,150.0,0.0,0,52,0.0,0.0,345.54355689398267,400.0,0.0,272.04793512711734,31,2,1,2,2,2,2,2,1,1,5.0,2,,2,130324,1,1,0,1,1,671.0,0.0,325.0,12,1.0,0.0,3.0,1.0,1.0,2,2,695.257329277249,250.0,22155.392781648537,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018054295129956925,22155.392781648537,6,3,6,6_0,6_4,6_0_1 -14352,2,31.0,0.0,2,111,259.0,120.0,0.0,42,47,0.0,0.0,357.983124942166,379.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,127487,1,2,0,1,1,720.0,0.0,628.0,43,2.0,0.0,2.0,2.0,1.5,1,1,871.178073337167,259.0,33475.75382160358,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011321627050423949,22317.169214402387,6,3,6,6_0,6_4,6_0_1 -14353,2,73.0,0.0,5,111,1930.0,2900.0,0.0,0,72,0.0,517.5862524097289,2667.596259221546,5330.0,0.0,5259.5934124576015,50,0,0,0,0,0,0,0,0,0,,1,,3,100120,2,1,2,0,2,,700.0,,11,0.0,3.0,7.0,1.0,1.0,2,2,741.314743636416,1930.0,162163.27171183107,0,5,0,1,220.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03286810844240715,162163.27171183107,10,5,10,10_1,10_4,10_0_0 -14354,2,36.0,0.0,2,111,277.0,114.0,0.0,34,34,0.0,0.0,382.8622610385328,391.0,0.0,206.7564306966092,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,123556,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,585.200033574663,277.0,58454.0,1,1,1,2,91.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0066890204263181305,27835.238095238095,7,4,7,7_0,7_4,7_0_1 -14355,2,54.0,0.0,5,111,350.0,1400.0,0.0,85,37,0.0,0.0,483.76097965157567,1750.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,3,60.0,1,,3,109870,2,2,1,0,1,,550.0,,42,2.0,1.0,5.0,4.0,2.5,1,1,596.424103703575,350.0,62890.9759366778,5,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027825931684730083,25156.390374671122,7,4,7,7_1,7_4,7_0_0 -14356,2,45.0,0.0,2,111,780.0,2330.0,0.0,38,38,0.0,0.0,1078.0958975092258,3110.0,0.0,4225.811258974556,44,0,0,0,0,0,0,0,0,2,30.0,1,,2,117209,2,1,2,0,1,,320.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,530.152632453265,780.0,116449.19961927169,1,1,1,2,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026706924651848894,48520.499841363206,10,5,10,10_1,10_4,10_0_1 -14357,2,66.0,0.0,2,111,5200.0,0.0,0.0,74,21,0.0,0.0,7187.305983394839,5200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109355,2,1,2,0,1,,517.0,,42,1.0,2.0,9.0,2.0,1.5,1,1,604.493509802176,5200.0,103720.93846723638,5,1,0,1,180.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05013452516766987,69147.29231149092,10,5,10,10_1,10_4,10_0_1 -14358,2,45.0,0.0,5,111,270.0,789.0,0.0,0,37,0.0,0.0,373.1870414455012,1059.0,0.0,1430.9721387686373,50,0,0,0,0,0,0,0,0,3,60.0,2,,3,117901,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,895.249484550856,270.0,40036.55523771925,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02645082709319344,40036.55523771925,9,5,9,9_0,9_4,9_0_0 -14359,2,51.0,0.0,7,111,1080.0,0.0,0.0,85,46,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,5,105465,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,5.0,2.8,2,2,593.996248138497,1080.0,53125.02473497433,6,1,0,1,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020329402299345996,18973.22311963369,5,3,5,5_0,5_4,5_0_0 -14360,2,60.0,0.0,6,111,1060.0,0.0,0.0,0,46,0.0,0.0,1465.1046812304864,1060.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,80.0,1,,4,114052,2,1,2,0,1,,540.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,549.075820352834,1060.0,20942.36717806132,0,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050615099572431745,20942.36717806132,5,3,5,5_1,5_4,5_0_0 -14361,2,73.0,0.0,6,111,782.0,0.0,0.0,0,75,0.0,0.0,1080.8602459643778,782.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,130848,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,818.769679798324,782.0,22811.393359168753,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0342811150413872,22811.393359168753,6,3,6,6_0,6_4,6_0_0 -14362,1,41.0,291.0,6,111,0.0,0.0,203.0,0,46,0.0,0.0,103.71540697201759,203.0,0.0,232.07889225448417,71,0,0,0,0,0,0,0,0,0,,2,,4,108831,2,1,0,1,1,336.0,0.0,279.0,12,1.0,0.0,2.0,1.0,1.0,2,2,926.235840819836,0.0,8843.684135607287,0,4,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022954234557367555,8843.684135607287,1,1,1_1,1_0_1,1_4_1,1_0_0 -14363,2,30.0,0.0,2,111,240.0,60.0,0.0,0,52,0.0,0.0,331.72181461822333,300.0,0.0,108.81917405084694,71,2,1,2,2,1,2,2,2,3,60.0,2,,2,109250,1,2,0,1,1,336.0,0.0,320.0,12,1.0,0.0,2.0,1.0,1.0,1,1,698.067206061977,240.0,18781.413442004698,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01597323869826799,18781.413442004698,5,3,5,5_0,5_4,5_0_1 -14364,2,36.0,0.0,2,111,0.0,0.0,540.0,63,64,0.0,0.0,275.89320081226356,540.0,0.0,617.352718312421,31,0,0,0,0,0,0,0,0,2,45.0,2,,2,132230,2,1,0,1,1,528.0,0.0,414.0,43,2.0,1.0,4.0,3.0,1.8,2,2,645.143549208715,0.0,42467.53005374206,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012715597053010562,23593.072252078924,6,3,6,6_0,6_4,6_0_1 -14365,2,60.0,0.0,5,111,300.0,0.0,0.0,0,90,0.0,0.0,414.65226827277917,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,100874,2,2,0,0,1,,0.0,625.0,11,0.0,2.0,1.0,1.0,1.0,3,2,939.444804121057,300.0,25314.82602787371,0,7,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011850762856109509,25314.82602787371,7,4,7,7_0,7_4,7_0_0 -14366,2,53.0,0.0,5,111,0.0,0.0,0.0,43,38,0.0,51.75862524097289,0.0,2302.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,116091,2,1,2,0,1,,303.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,626.717202464089,0.0,167511.6577320251,1,1,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013742327138106403,79767.4560628691,10,5,10,10_1,10_4,10_0_0 -14367,2,62.0,0.0,2,111,340.0,792.0,0.0,74,74,0.0,0.0,469.9392373758164,1132.0,0.0,1436.4130974711795,50,0,0,0,0,0,0,0,0,0,,2,,2,127262,2,1,0,0,2,,0.0,827.0,41,0.0,2.0,3.0,2.0,1.5,1,1,821.364258579326,340.0,58592.1440782801,5,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019319996183918935,39061.42938552007,9,5,9,9_0,9_4,9_0_1 -14368,2,53.0,0.0,2,111,406.0,1900.0,0.0,37,52,0.0,20.703450096389155,561.1627363958278,2326.0,0.0,3445.940511610153,60,0,0,0,0,0,0,0,0,1,1.0,1,,2,109406,2,2,1,0,1,,80.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,606.709880876131,406.0,67104.18235164821,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03466251906343165,44736.121567765476,10,5,10,10_1,10_4,10_0_1 -14369,2,74.0,0.0,2,111,950.0,132.0,0.0,54,78,0.0,0.0,1313.065516197134,1082.0,0.0,239.40218291186326,50,2,1,2,1,2,2,2,2,0,,2,,2,119315,2,1,0,0,1,,0.0,500.0,42,1.0,1.0,4.0,3.0,2.0,2,2,181.122094855178,950.0,24530.055826747106,4,5,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04410915358864401,12265.027913373553,2,1,2_0,2_0_0,2_4_0,2_0_1 -14370,2,27.0,0.0,7,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1311.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,65.0,2,,5,128974,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,1047.34999960667,0.0,30239.540946449943,0,1,1,2,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04335383272919388,30239.540946449943,8,4,8,8_0,8_4,8_0_0 -14371,2,76.0,0.0,8,111,1200.0,0.0,0.0,75,77,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,110070,2,2,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,739.58270397539,1200.0,58590.729480603084,5,5,0,1,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020481055802475872,39060.48632040206,9,5,9,9_0,9_4,9_0_0 -14372,2,56.0,0.0,2,111,700.0,650.0,0.0,56,63,0.0,0.0,967.5219593031513,1350.0,0.0,1178.8743855508417,50,1,2,2,2,1,2,2,2,2,40.0,2,,2,108625,2,1,0,1,1,,0.0,607.0,43,2.0,2.0,4.0,3.0,2.0,1,1,181.122094855178,700.0,44476.7619662035,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03035292904249241,22238.38098310175,6,3,6,6_0,6_4,6_0_1 -14373,1,58.0,350.0,5,111,1500.0,0.0,0.0,85,68,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,40.0,2,,3,126247,1,1,0,1,2,,0.0,360.0,42,5.0,0.0,5.0,10.0,4.8999999999999995,3,3,180.985061911216,1500.0,30888.990825973106,6,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04856099082197014,6303.875678770022,1,1,1_1,1_0_1,1_4_1,1_0_0 -14374,2,78.0,0.0,2,111,2199.0,0.0,0.0,75,74,2240.377315527001,0.0,3039.401126439471,3699.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,133546,1,1,1,0,2,,279.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,696.480665432648,2199.0,69263.5167616761,5,5,0,1,180.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0534047384964241,46175.6778411174,10,5,10,10_1,10_4,10_0_1 -14375,2,58.0,0.0,6,111,1680.0,0.0,0.0,31,37,0.0,0.0,2322.0527023275636,1680.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,4,128757,2,1,0,0,1,,0.0,549.0,43,3.0,1.0,5.0,3.0,2.0,2,2,853.005600206365,1680.0,27833.190498701915,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.060359591189459647,13916.595249350958,3,2,3_0,3_0_0,3_4_0,3_0_0 -14376,2,28.0,0.0,2,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,854.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117847,2,3,0,0,1,,0.0,264.0,43,2.0,0.0,3.0,3.0,1.8,1,1,934.848281859705,0.0,32977.62276515177,4,4,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02589634814133546,18320.901536195426,4,2,4_0,4_0_0,4_4_0,4_0_1 -14377,2,26.0,0.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,844.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,40.0,2,,4,101097,2,1,0,0,1,,0.0,620.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1077.45521632661,0.0,23999.14592005174,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03516791817557233,23999.14592005174,6,3,6,6_0,6_4,6_0_0 -14378,2,29.0,0.0,1,111,0.0,0.0,0.0,55,62,0.0,0.0,0.0,865.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,1,,1,109305,2,1,2,0,1,,150.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,444.116863409955,0.0,45796.46074222229,1,1,1,2,78.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01888792247219464,30530.973828148195,8,4,8,8_1,8_4,8_1_0 -14379,2,31.0,0.0,7,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,356.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,5,127324,2,2,0,1,1,44.0,0.0,360.0,12,1.0,0.0,3.0,1.0,1.0,3,2,806.399178546304,0.0,20265.27592783147,0,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01756699495569585,20265.27592783147,5,3,5,5_0,5_4,5_0_0 -14380,2,53.0,0.0,6,111,1949.0,0.0,0.0,34,37,0.0,51.75862524097289,2693.857569545489,1999.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,131581,2,1,2,0,1,,498.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,557.769406213127,1949.0,78331.00377697409,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025519907873153277,34056.95816390178,9,5,9,9_1,9_4,9_0_0 -14381,2,34.0,0.0,6,111,1380.0,0.0,0.0,56,47,0.0,31.055175144583732,1907.4004340547842,1410.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,,4,123720,2,1,1,0,1,,324.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,557.769406213127,1380.0,40045.3495929224,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03521008092907754,19069.21409186781,5,3,5,5_1,5_4,5_0_0 -14382,2,32.0,0.0,5,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1637.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,,3,119897,2,1,0,0,1,,0.0,350.0,12,1.0,0.0,3.0,1.0,1.0,3,3,844.767498421927,0.0,11352.490539005645,0,1,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1441974335389654,11352.490539005645,2,1,2_0,2_0_0,2_4_0,2_0_0 -14383,2,73.0,0.0,1,111,281.0,0.0,0.0,77,75,0.0,0.0,388.3909579488365,281.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,1,129806,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,630.641927752964,281.0,45808.61573522532,5,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.006134217231627024,30539.077156816882,8,4,8,8_0,8_4,8_1_0 -14384,1,30.0,274.0,5,111,360.0,0.0,0.0,0,46,0.0,0.0,497.582721927335,720.0,0.0,0.0,20,2,2,2,1,2,2,2,2,2,7.0,2,,3,112964,1,2,0,1,1,68.0,0.0,580.0,32,1.0,0.0,3.0,2.0,1.3,2,2,771.427395193639,360.0,21461.999244662555,0,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.033547666822281656,16509.230188201964,4,2,4_1,4_0_1,4_4_1,4_0_0 -14385,2,60.0,0.0,1,111,220.0,820.0,0.0,56,75,0.0,0.0,304.0783300667047,1040.0,0.0,1487.1953786949082,50,0,0,0,0,0,0,0,0,0,,2,,1,130934,2,1,0,0,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,435.025684586817,220.0,34009.30740972683,4,5,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030579864137502393,22672.871606484554,6,3,6,6_0,6_4,6_1_0 -14386,2,52.0,0.0,2,111,0.0,1600.0,0.0,62,56,0.0,0.0,0.0,1774.0,0.0,2901.844641355918,31,0,0,0,0,0,0,0,0,3,15.0,1,,2,126208,2,1,2,0,1,,800.0,,43,3.0,1.0,5.0,5.0,2.5999999999999996,1,1,528.390070850551,0.0,29731.781101986664,4,1,1,2,100.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05966679204030135,11435.300423841027,2,1,2_0,2_1_0,2_4_0,2_0_1 -14387,2,35.0,0.0,7,111,450.0,800.0,0.0,52,68,0.0,0.0,621.9784024091688,1250.0,0.0,1450.922320677959,42,0,0,0,0,0,0,0,0,2,20.0,2,,5,119421,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,766.107216102927,450.0,53339.92882944011,1,1,1,2,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023434601947014272,25399.966109257195,7,4,7,7_0,7_4,7_0_0 -14388,2,36.0,0.0,9,111,749.0,0.0,0.0,46,48,0.0,0.0,1035.248496454372,749.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,2006.0,6,128915,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1300.6152146335,749.0,74708.4529788854,1,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010025639270186567,41504.69609938077,9,5,9,9_0,9_4,9_0_0 -14389,1,56.0,130.0,8,111,720.0,1300.0,0.0,68,67,0.0,0.0,995.16544385467,2020.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,1,10.0,1,2001.0,6,120710,1,1,3,0,1,,990.0,,43,3.0,0.0,5.0,7.0,3.8,2,2,617.456500118097,720.0,56392.573277663854,1,1,1,2,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.035820319637729456,14840.15086254312,3,2,3_1,3_1_1,3_4_1,3_0_0 -14390,2,58.0,0.0,1,111,650.0,0.0,0.0,78,67,0.0,0.0,898.4132479243549,650.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,1,123805,2,2,0,3,1,768.0,0.0,370.0,42,2.0,0.0,3.0,5.0,2.8,2,2,380.873350164395,650.0,40901.61458384249,6,4,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.015891793187469225,14607.719494229463,3,2,3_0,3_0_0,3_4_0,3_1_0 -14391,2,49.0,0.0,7,111,2034.0,0.0,0.0,37,31,0.0,155.27587572291867,2811.342378889443,2184.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,101922,1,1,2,0,2,,850.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,1,1,420.13566064381,2034.0,165952.6180096462,4,1,1,2,168.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013160382922510162,63827.930003710084,10,5,10,10_1,10_4,10_0_0 -14392,2,48.0,0.0,5,111,1200.0,2000.0,0.0,21,37,0.0,0.0,1658.6090730911167,3200.0,0.0,3627.3058016948976,33,0,0,0,0,0,0,0,0,0,,1,,3,115574,1,1,1,0,2,,480.0,,43,2.0,1.0,8.0,5.0,3.0,6,6,527.690642473796,1200.0,155345.19247408962,1,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020599285687799673,51781.73082469654,10,5,10,10_1,10_4,10_0_0 -14393,2,63.0,0.0,5,111,2480.0,0.0,0.0,90,74,0.0,0.0,3427.7920843883076,2480.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,109687,2,1,1,0,1,,414.0,,42,2.0,0.0,4.0,3.0,2.0,1,1,611.582840120346,2480.0,173399.1198095057,1,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014302264064111166,86699.55990475285,10,5,10,10_1,10_4,10_0_0 -14394,2,60.0,0.0,1,111,240.0,1032.0,0.0,0,47,0.0,0.0,331.72181461822333,1272.0,0.0,1871.6897936745672,50,0,0,0,0,0,0,0,0,3,75.0,2,,1,113595,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1007.39569633197,240.0,28705.66231060856,0,1,1,2,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.044311815078027846,28705.66231060856,8,4,8,8_0,8_4,8_1_0 -14395,2,56.0,0.0,6,111,111.0,0.0,0.0,75,46,0.0,0.0,153.42133926092828,111.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,60.0,1,,4,100217,2,1,2,0,1,,331.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,571.898727337638,111.0,69220.25930879336,5,1,0,1,112.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016035767722976323,46146.83953919558,10,5,10,10_1,10_4,10_0_0 -14396,2,51.0,0.0,2,111,459.0,1750.0,0.0,0,52,0.0,0.0,634.4179704573521,2209.0,0.0,3173.8925764830356,50,0,0,0,0,0,0,0,0,3,60.0,1,,2,131242,2,1,1,0,1,,1400.0,,32,1.0,0.0,6.0,5.0,2.2,1,1,458.84129463935,459.0,26438.09704436026,0,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.083553668643153,12017.316838345572,2,1,2_0,2_1_0,2_4_0,2_0_1 -14397,0,29.0,0.0,2,111,400.0,0.0,0.0,0,46,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130841,2,1,0,1,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,671.580696200696,400.0,7548.161110116377,0,4,5,0,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05299303951844674,7548.161110116377,1,1,1_0,1_0_0,1_4_0,1_0_1 -14398,2,66.0,0.0,5,111,870.0,0.0,0.0,77,74,0.0,0.0,1202.4915779910596,870.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,122263,2,2,0,0,1,,300.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,685.171493246545,870.0,60013.5894877493,5,5,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014496716617452035,40009.05965849953,9,5,9,9_0,9_4,9_0_0 -14399,2,37.0,0.0,7,111,624.0,0.0,0.0,0,46,0.0,0.0,862.4767180073807,624.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,106095,2,1,0,0,2,,0.0,744.0,32,1.0,0.0,2.0,2.0,1.3,1,1,951.868313989854,624.0,16715.90765954498,0,4,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03732971087834938,12858.390507342292,2,1,2_0,2_0_0,2_4_0,2_0_0 -14400,1,67.0,94.0,6,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,963.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,108351,2,1,0,0,1,,197.0,627.0,11,0.0,0.0,1.0,1.0,1.0,1,1,905.521684791139,0.0,16225.671796667351,0,5,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059350393134279596,16225.671796667351,4,2,4_1,4_0_1,4_4_1,4_0_0 -14401,2,58.0,0.0,6,111,2400.0,0.0,0.0,74,43,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,31,2,2,2,1,1,2,2,2,3,60.0,2,,4,120269,1,3,0,0,1,,0.0,571.0,42,1.0,1.0,4.0,3.0,2.0,2,2,854.924932705306,2400.0,44438.40262590982,5,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.05400734180757163,22219.20131295491,6,3,6,6_0,6_4,6_0_0 -14402,2,21.0,0.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,198.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,119176,2,1,0,1,1,701.0,0.0,770.0,42,1.0,0.0,3.0,2.0,1.5,2,2,231.935107497739,0.0,17244.350016245604,6,1,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011482021636853093,11496.233344163737,2,1,2_0,2_0_0,2_4_0,2_0_1 -14403,2,45.0,0.0,2,111,172.0,273.0,0.0,0,68,1308.3803522677686,0.0,237.73396714306006,1321.0,0.0,495.1272419313535,12,0,0,0,0,0,0,0,0,2,45.0,2,,2,125603,2,1,0,1,1,792.0,0.0,486.0,32,1.0,0.0,4.0,2.0,1.5,2,2,183.347554660277,172.0,27036.603113537305,0,1,2,3,67.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04885968826973576,18024.402075691538,4,2,4_0,4_0_0,4_4_0,4_0_1 -14404,1,56.0,211.0,2,111,340.0,617.0,0.0,0,77,0.0,0.0,469.9392373758164,957.0,0.0,1119.023839822876,50,2,1,2,2,1,2,2,2,0,,2,,2,127183,1,2,0,1,1,924.0,0.0,344.0,31,1.0,0.0,4.0,4.0,2.5,2,2,174.077552193591,340.0,28734.69913717317,0,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03330468140388355,11493.879654869268,2,1,2_1,2_0_1,2_4_1,2_0_1 -14405,2,64.0,0.0,2,111,759.0,376.0,0.0,56,78,0.0,0.0,1049.0702387301312,1135.0,0.0,681.9334907186408,50,2,2,2,1,2,2,2,2,0,,2,,2,125568,1,3,0,1,1,852.0,0.0,430.0,42,2.0,3.0,4.0,3.0,2.0,1,1,180.686149701807,759.0,50950.816776550986,1,5,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.022276384792370183,25475.408388275493,7,4,7,7_0,7_4,7_0_1 -14406,2,37.0,0.0,5,111,363.0,360.0,0.0,0,52,0.0,0.0,501.7292446100628,723.0,0.0,652.9150443050816,71,2,1,2,1,2,2,2,2,3,60.0,2,,3,129213,2,3,0,1,1,684.0,0.0,596.0,32,1.0,0.0,4.0,3.0,1.6,2,2,209.363590478392,363.0,32597.018040252013,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.022179942935492216,20373.136275157507,5,3,5,5_0,5_4,5_0_0 -14407,1,46.0,345.0,2,111,350.0,120.0,0.0,0,52,0.0,0.0,483.76097965157567,470.0,0.0,217.63834810169388,50,2,1,2,1,2,2,2,2,0,,2,,2,104091,2,2,0,1,1,,0.0,530.0,32,1.0,0.0,3.0,3.0,1.6,1,1,171.080182282613,350.0,13894.66418966009,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03382593444393979,8684.165118537556,1,1,1_1,1_0_1,1_4_1,1_0_1 -14408,2,44.0,0.0,2,111,750.0,700.0,0.0,67,52,0.0,0.0,1036.630670681948,1450.0,0.0,1269.5570305932142,71,2,1,2,1,2,2,2,2,3,25.0,2,,2,128619,2,3,0,1,1,752.0,0.0,365.0,43,3.0,0.0,4.0,5.0,2.8,2,2,147.074548509705,750.0,41094.37783758156,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.035284632017812144,14676.563513421986,3,2,3_0,3_0_0,3_4_0,3_0_1 -14409,2,56.0,0.0,2,111,0.0,0.0,880.0,52,62,0.0,0.0,449.603734657022,880.0,0.0,1006.0562816943158,43,2,1,2,2,1,1,2,2,2,25.0,2,,2,132091,2,3,0,1,2,1848.0,0.0,350.0,43,2.0,0.0,4.0,6.0,3.3,1,1,176.853254012092,0.0,45957.562104458426,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019148100110267373,13926.53397104801,3,2,3_0,3_0_0,3_4_0,3_0_1 -14410,1,30.0,325.0,7,111,800.0,1500.0,0.0,0,56,0.0,0.0,1105.7393820607444,2300.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,5,118715,2,1,1,0,1,,190.0,,22,1.0,1.0,4.0,4.0,2.5,2,2,644.852641915626,800.0,13949.884747942426,0,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.164875914142534,5579.9538991769705,1,1,1_1,1_1_1,1_4_1,1_0_0 -14411,2,54.0,0.0,1,111,2600.0,0.0,0.0,33,38,0.0,0.0,3593.6529916974196,2600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,60.0,1,,1,133108,1,2,3,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,395.019856091739,2600.0,176840.6151582491,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014702504838457737,70736.24606329964,10,5,10,10_1,10_4,10_1_0 -14412,2,35.0,0.0,5,111,1200.0,0.0,0.0,0,42,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,41,2,2,2,2,1,1,2,2,3,70.0,2,,3,105403,1,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,815.794228898644,1200.0,26781.524901015822,0,1,1,2,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.04480700798162856,26781.524901015822,7,4,7,7_0,7_4,7_0_0 -14413,2,53.0,0.0,7,111,950.0,550.0,0.0,37,33,0.0,310.55175144583734,1313.065516197134,1800.0,0.0,997.5090954660969,50,0,0,0,0,0,0,0,0,2,50.0,1,,5,127582,2,1,1,0,1,,658.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,575.275760275177,950.0,111567.80167490989,1,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01613368707617725,44627.12066996396,10,5,10,10_1,10_4,10_0_0 -14414,2,76.0,0.0,2,111,230.0,60.0,0.0,0,75,0.0,0.0,317.900072342464,290.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,130616,2,3,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,802.677909024217,230.0,19497.42157274571,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014873761585243344,19497.42157274571,5,3,5,5_0,5_4,5_0_1 -14415,2,78.0,0.0,2,111,750.0,600.0,0.0,0,75,0.0,0.0,1036.630670681948,1638.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,,2,121279,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,3,2,760.004478576344,750.0,28977.14343177343,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05652731104626184,28977.14343177343,8,4,8,8_0,8_4,8_0_1 -14416,2,70.0,0.0,1,111,450.0,3284.0,0.0,74,74,0.0,0.0,621.9784024091688,3734.0,0.0,5956.036126383022,50,0,0,0,0,0,0,0,0,0,,1,,1,115465,2,1,2,0,2,,360.0,,41,1.0,0.0,8.0,3.0,2.0,3,3,424.085964074617,450.0,68656.51347851436,5,5,1,2,250.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05438668249835513,34328.25673925718,9,5,9,9_1,9_4,9_1_0 -14417,2,50.0,0.0,9,111,800.0,0.0,0.0,85,34,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,50.0,2,2006.0,6,125797,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,4.0,2.1,3,3,1256.40595842323,800.0,32468.02603263466,6,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024639625433215254,15460.964777445077,3,2,3_0,3_0_0,3_4_0,3_0_0 -14418,1,50.0,405.0,2,111,1100.0,550.0,0.0,62,63,0.0,0.0,1520.3916503335236,1650.0,0.0,997.5090954660969,10,2,1,2,2,1,2,2,2,0,,2,,2,118853,2,2,0,1,1,384.0,0.0,580.0,43,4.0,1.0,4.0,5.0,3.0,2,2,147.074548509705,1100.0,21754.048459440724,4,4,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07584795092629944,7251.3494864802415,1,1,1_1,1_0_1,1_4_1,1_0_1 -14419,2,81.0,0.0,2,111,0.0,0.0,590.0,86,75,0.0,0.0,301.4388675541398,590.0,0.0,674.5150070450526,60,2,2,2,1,2,2,2,2,0,,2,,2,104995,2,2,0,1,1,684.0,0.0,335.0,41,0.0,2.0,4.0,2.0,1.5,3,3,160.405548697947,0.0,31319.01815470207,6,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.018838393882134537,20879.345436468047,5,3,5,5_0,5_4,5_0_1 -14420,1,34.0,242.0,5,111,360.0,0.0,0.0,0,85,0.0,0.0,497.582721927335,360.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,129612,2,1,0,1,1,420.0,0.0,280.0,31,0.0,0.0,1.0,3.0,1.6,2,2,197.764776285492,360.0,5290.413547819222,0,6,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0680476104081498,3306.5084673870138,1,1,1_1,1_0_1,1_4_1,1_0_0 -14421,2,42.0,0.0,2,111,223.0,331.0,0.0,56,54,0.0,0.0,308.2248527494325,554.0,0.0,600.3191101805056,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,104655,1,2,0,1,1,1330.0,0.0,456.0,43,2.0,0.0,5.0,4.0,2.1,2,2,169.570518901861,223.0,37429.26004777995,1,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014801254400776205,17823.4571656095,4,2,4_0,4_0_0,4_4_0,4_0_1 -14422,2,43.0,0.0,2,111,670.0,640.0,0.0,56,68,0.0,0.0,926.0567324758734,1310.0,0.0,1160.7378565423674,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,108347,2,1,0,1,1,,1200.0,,43,5.0,0.0,3.0,9.0,4.3999999999999995,3,3,198.813481555101,670.0,21249.492820407297,1,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.061648530205950146,4829.430186456204,1,1,1_0,1_0_0,1_4_0,1_0_1 -14423,2,35.0,0.0,2,111,300.0,250.0,0.0,0,46,0.0,0.0,414.65226827277917,550.0,0.0,453.4132252118622,60,2,1,2,2,1,2,2,2,2,10.0,2,,2,100472,2,1,0,1,1,,600.0,,22,3.0,0.0,3.0,3.0,2.0,3,3,186.938925792504,300.0,73274.73555619465,0,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007505997747043428,36637.36777809732,9,5,9,9_0,9_4,9_0_1 -14424,1,43.0,228.0,2,111,0.0,0.0,400.0,0,68,0.0,0.0,204.36533393501003,400.0,0.0,457.2983098610526,44,2,2,1,2,1,2,2,2,0,,2,,2,115322,2,2,0,1,1,974.0,0.0,363.0,32,1.0,0.0,3.0,3.0,1.6,1,1,171.080182282613,0.0,18559.411963714912,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.021552406982615128,11599.63247732182,2,1,2_1,2_0_1,2_4_1,2_0_1 -14425,2,29.0,0.0,2,111,500.0,300.0,0.0,85,62,0.0,0.0,691.0871137879653,800.0,0.0,544.0958702542347,71,2,1,2,1,1,2,2,2,3,45.0,2,,2,102656,2,3,0,1,1,673.0,0.0,430.0,42,1.0,0.0,3.0,2.0,1.5,2,2,231.935107497739,500.0,23816.59611953646,6,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03359002251979114,15877.730746357642,3,2,3_0,3_0_0,3_4_0,3_0_1 -14426,2,67.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,524.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,106318,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,225.62693201483,0.0,19587.79285912519,0,5,0,1,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02675135497748991,19587.79285912519,5,3,5,5_0,5_4,5_0_1 -14427,2,66.0,0.0,2,111,1238.0,161.0,0.0,54,74,0.0,0.0,1711.131693739002,1399.0,0.0,291.9981170364393,71,2,1,2,2,1,2,2,2,0,,2,,2,132284,2,1,0,1,1,,0.0,,42,1.0,2.0,5.0,6.0,3.5,2,2,209.168756026633,1238.0,93831.96071100008,1,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014909631956949962,26809.13163171431,7,4,7,7_0,7_4,7_0_1 -14429,2,56.0,0.0,2,111,0.0,0.0,0.0,85,34,0.0,0.0,0.0,398.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,117130,2,2,0,1,2,,0.0,,42,2.0,0.0,6.0,6.0,3.5,2,2,175.035151507865,0.0,65416.92589218124,6,1,0,1,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006084052323950149,18690.550254908925,5,3,5,5_0,5_4,5_0_1 -14430,2,45.0,0.0,7,111,2400.0,0.0,0.0,43,43,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,5,109868,2,1,1,0,1,,1052.0,,43,2.0,0.0,6.0,5.0,3.0,2,2,444.676714770685,2400.0,97334.50325868076,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024657237871976875,32444.834419560255,8,4,8,8_1,8_4,8_0_0 -14431,2,40.0,0.0,8,111,1500.0,1500.0,0.0,85,31,0.0,207.03450096389156,2073.261341363896,3200.0,0.0,2720.4793512711735,42,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,109731,2,2,1,0,1,,842.0,,42,1.0,0.0,7.0,3.0,1.8,2,2,565.047045264865,1500.0,115889.86935212972,6,1,1,2,146.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027612422189180707,64383.26075118318,10,5,10,10_1,10_4,10_0_0 -14432,2,37.0,0.0,9,111,1700.0,0.0,0.0,43,37,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,50.0,1,2004.0,6,130807,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,497.91549077413,1700.0,89157.83745748583,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01906730858978753,42456.11307499325,9,5,9,9_1,9_4,9_0_0 -14433,2,65.0,0.0,6,111,360.0,0.0,0.0,0,77,0.0,0.0,497.582721927335,360.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,4,111180,2,1,0,0,1,,0.0,400.0,11,0.0,0.0,2.0,1.0,1.0,3,3,1054.32351530813,360.0,21179.805626260728,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01699732312716024,21179.805626260728,5,3,5,5_0,5_4,5_0_0 -14434,2,45.0,0.0,1,111,1915.0,1648.0,0.0,37,38,0.0,0.0,2646.8636458079072,3563.0,0.0,2988.899980596596,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,122926,2,1,2,0,1,,747.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,1,1,345.29238299195,1915.0,168454.9886022578,4,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021151050672726976,64790.380231637624,10,5,10,10_1,10_4,10_1_0 -14435,1,53.0,180.0,5,111,950.0,0.0,0.0,0,54,0.0,0.0,1313.065516197134,950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,10.0,2,,3,122498,1,3,0,1,1,650.0,0.0,506.0,32,2.0,0.0,5.0,5.0,3.0,2,2,604.706770544567,950.0,53974.70401252347,0,1,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017600837603103416,17991.56800417449,4,2,4_1,4_0_1,4_4_1,4_0_0 -14436,1,42.0,308.0,7,111,160.0,229.0,0.0,0,53,0.0,0.0,221.1478764121489,389.0,0.0,415.3265142940658,50,2,2,2,2,1,2,2,2,0,,2,,5,124856,1,3,0,0,1,,0.0,426.0,32,1.0,2.0,2.0,2.0,1.5,2,2,780.172995042605,160.0,6060.0,0,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,1,0.06419141914191419,4040.0,1,1,1_1,1_0_1,1_4_1,1_0_0 -14437,2,35.0,0.0,2,111,0.0,0.0,2941.0,52,64,0.0,0.0,1502.5961177571612,2941.0,0.0,3362.2858232533895,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,121828,2,2,3,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,590.252530871598,0.0,48560.08201090093,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06056414812766985,23123.84857661949,6,3,6,6_1,6_4,6_0_1 -14438,2,71.0,0.0,1,111,807.0,0.0,0.0,74,74,3285.8867294396014,0.0,1115.414601653776,3007.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,100916,2,1,2,0,1,,425.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,621.684742252092,807.0,64295.182156171606,5,5,0,1,100.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046768667560441186,42863.45477078107,9,5,9,9_1,9_4,9_1_0 -14439,2,54.0,0.0,2,111,1510.0,0.0,0.0,56,44,0.0,0.0,2087.0830836396553,1510.0,0.0,0.0,10,0,0,0,0,0,0,0,0,4,80.0,1,,2,126947,2,2,3,0,1,,962.0,,43,3.0,0.0,5.0,5.0,3.0,1,1,524.569008557204,1510.0,51963.59250240643,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029058806893116025,17321.197500802144,4,2,4_0,4_1_0,4_4_0,4_0_1 -14440,2,45.0,0.0,9,111,1212.0,2164.0,0.0,54,48,0.0,0.0,1675.1951638220278,3376.0,0.0,3924.7448774338795,60,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,124939,2,1,1,0,1,,904.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,414.388280680808,1212.0,94426.3556181988,1,1,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035752730028578414,52459.08645455488,10,5,10,10_1,10_4,10_0_0 -14441,2,44.0,0.0,2,111,0.0,0.0,0.0,43,53,0.0,0.0,0.0,837.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,129318,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,492.902771285063,0.0,78325.37438119651,1,1,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010686192139043739,30125.14399276789,8,4,8,8_0,8_4,8_0_1 -14442,2,50.0,0.0,2,111,322.0,0.0,0.0,0,46,0.0,0.0,445.06010127944967,322.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,117634,2,3,0,1,1,,0.0,,32,1.0,1.0,4.0,2.0,1.5,1,1,630.799412505928,322.0,27505.39952680474,0,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011706792322220314,18336.933017869826,4,2,4_0,4_0_0,4_4_0,4_0_1 -14443,2,43.0,0.0,6,111,2887.5,0.0,0.0,54,37,0.0,51.75862524097289,3991.0280821254996,2938.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,4,106718,2,2,2,0,1,,460.0,,43,2.0,0.0,6.0,5.0,2.4,4,3,483.410644387282,2887.5,100852.65406092111,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02913160816001203,42021.939192050464,9,5,9,9_1,9_4,9_0_0 -14444,2,50.0,0.0,6,111,559.0,1498.0,0.0,54,37,0.0,107.6579405012236,772.6353932149452,2161.0,0.0,2716.8520454694785,42,0,0,0,0,0,0,0,0,3,60.0,1,,4,119072,2,1,2,0,1,,873.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,661.244895203757,559.0,60269.61368704538,1,1,0,1,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0358555475603537,24107.84547481815,6,3,6,6_1,6_4,6_0_0 -14445,2,65.0,0.0,1,111,2873.0,3617.0,0.0,31,74,0.0,0.0,3970.9865558256483,6490.0,0.0,6559.982542365223,42,0,0,0,0,0,0,0,0,0,,1,,1,100774,2,2,2,0,2,,529.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,430.573646865568,2873.0,303214.5238938824,1,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021403987898255625,202143.01592925494,10,5,10,10_1,10_4,10_1_0 -14446,2,56.0,0.0,2,111,799.0,1300.0,0.0,74,37,0.0,62.110350289167464,1104.3572078331686,2159.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,75.0,1,,2,110087,2,2,3,0,1,,210.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,602.746603579749,799.0,130399.86602331097,5,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016556765477151993,86933.24401554065,10,5,10,10_1,10_4,10_0_1 -14447,2,39.0,0.0,6,111,991.0,0.0,0.0,0,43,0.0,0.0,1369.7346595277472,991.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,30.0,1,,4,130561,2,1,2,0,1,,37.0,,32,1.0,0.0,5.0,3.0,1.6,2,1,596.686982940345,991.0,26734.965997127994,0,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03706756163843478,16709.353748204994,4,2,4_0,4_1_0,4_4_0,4_0_0 -14448,2,26.0,0.0,1,111,60.0,0.0,0.0,0,48,0.0,0.0,82.93045365455583,60.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,107546,2,1,2,0,1,,0.0,800.0,12,1.0,0.0,2.0,1.0,1.0,3,3,607.715582566682,60.0,26534.327615273654,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0022612217980403195,26534.327615273654,7,4,7,7_1,7_4,7_1_0 -14449,2,62.0,0.0,2,111,400.0,81.0,0.0,0,75,0.0,0.0,552.8696910303722,481.0,0.0,146.90588496864336,50,2,2,2,1,2,2,2,2,0,,2,,2,132300,1,3,0,1,2,874.0,0.0,541.0,21,1.0,0.0,4.0,2.0,1.5,2,2,652.632628450629,400.0,47043.46217911483,0,5,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010224587598774612,31362.30811940989,8,4,8,8_0,8_4,8_0_1 -14450,2,40.0,0.0,2,111,2025.0,0.0,0.0,43,43,0.0,0.0,2798.9028108412595,2025.0,0.0,0.0,12,2,2,2,2,1,2,1,2,2,15.0,2,,2,129341,1,2,0,0,2,442.0,0.0,680.0,43,2.0,0.0,2.0,2.0,1.5,2,2,792.483934792624,2025.0,36807.67757640431,1,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05501569599974254,24538.451717602875,7,4,7,7_0,7_4,7_0_1 -14451,2,41.0,0.0,2,111,350.0,0.0,0.0,42,37,3733.962192545002,0.0,483.76097965157567,2850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,123598,2,3,1,0,1,,350.0,,43,2.0,0.0,5.0,5.0,2.4,4,3,485.780624151764,350.0,92554.84332863009,1,1,1,2,98.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030792553879440326,38564.51805359587,9,5,9,9_1,9_4,9_0_1 -14452,2,45.0,0.0,6,111,450.0,1200.0,0.0,37,38,0.0,0.0,621.9784024091688,3052.0,0.0,2176.3834810169387,33,0,0,0,0,0,0,0,0,3,70.0,1,,4,114572,1,2,2,0,1,,250.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,698.077029781828,450.0,90814.87364707388,1,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03360682977835468,60543.24909804925,10,5,10,10_1,10_4,10_0_0 -14453,2,50.0,0.0,7,111,500.0,1100.0,0.0,46,31,0.0,0.0,691.0871137879653,1700.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,110804,2,1,2,0,1,,563.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,548.374238848601,500.0,86820.98565809187,1,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019580519469045637,37748.25463395299,9,5,9,9_1,9_4,9_0_0 -14454,2,57.0,0.0,5,111,600.0,720.0,0.0,52,67,0.0,0.0,829.3045365455583,1320.0,0.0,1305.830088610163,31,0,0,0,0,0,0,0,0,2,50.0,1,,3,104427,2,1,2,0,1,,450.0,,43,4.0,0.0,4.0,4.0,2.5,2,2,646.714258159103,600.0,69442.66591925932,1,1,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01900848682184463,27777.06636770373,7,4,7,7_1,7_4,7_0_0 -14455,2,48.0,0.0,6,111,1200.0,900.0,0.0,55,47,0.0,103.51725048194578,1658.6090730911167,2200.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,3,90.0,1,,4,124982,2,1,2,0,1,,600.0,,43,4.0,0.0,5.0,5.0,3.0,3,2,532.24889271117,1200.0,63732.1572815093,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03451946542908393,21244.05242716977,5,3,5,5_1,5_4,5_0_0 -14456,2,61.0,0.0,6,111,100.0,100.0,0.0,77,75,0.0,0.0,138.21742275759306,200.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,1,,4,117608,2,1,2,0,1,,480.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,663.517474220185,100.0,49229.56527857266,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004062599352000589,32819.71018571511,8,4,8,8_1,8_4,8_0_0 -14457,2,37.0,0.0,6,111,1800.0,0.0,0.0,52,42,0.0,517.5862524097289,2487.913609636675,2300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,35.0,1,,4,106151,1,1,3,0,1,,680.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,474.555203759194,1800.0,41590.916209238014,1,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05530053698334092,17329.54842051584,4,2,4_0,4_1_0,4_4_0,4_0_0 -14458,2,44.0,0.0,6,111,500.0,1000.0,0.0,0,65,0.0,0.0,691.0871137879653,2234.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,132584,1,1,1,0,1,,240.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,683.962888634352,500.0,27044.327276621334,0,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08260512369746381,27044.327276621334,7,4,7,7_1,7_4,7_0_0 -14459,2,63.0,0.0,1,112,2200.0,0.0,0.0,54,75,0.0,0.0,3040.783300667047,2410.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125763,2,1,2,0,1,,900.0,,42,3.0,2.0,6.0,5.0,3.0,3,3,508.868502592648,2200.0,99660.70839864739,1,5,0,1,150.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024182047656734387,33220.23613288246,8,4,8,8_1,8_0,8_1_0 -14460,2,31.0,0.0,2,112,1500.0,0.0,0.0,21,54,0.0,414.0690019277831,2073.261341363896,1900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,128954,2,1,2,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,738.800278536737,1500.0,18980.11797882188,1,1,1,2,61.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10010475183136536,10544.509988234377,2,1,2_0,2_1_0,2_0_0,2_0_1 -14461,2,33.0,0.0,2,112,1000.0,0.0,0.0,42,37,1493.5848770180007,517.5862524097289,1382.1742275759307,2500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,,2,127744,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,896.889205614542,1000.0,79099.87229026624,1,1,1,2,107.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031605613607389366,43944.37349459236,10,5,10,10_1,10_0,10_0_1 -14462,2,71.0,0.0,2,112,900.0,0.0,0.0,0,86,4480.754631054002,0.0,1243.9568048183376,3900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132216,2,1,1,0,1,,400.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,994.051250696411,900.0,53443.83525874559,0,5,0,1,150.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07297380476379269,53443.83525874559,10,5,10,10_1,10_0,10_0_1 -14463,2,66.0,0.0,2,112,628.0,0.0,0.0,77,75,2595.850516257285,0.0,868.0054149176844,2486.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110970,2,1,2,0,1,,307.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,861.260317493722,628.0,35462.10352780858,5,5,0,1,89.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07010300441006087,23641.402351872384,6,3,6,6_1,6_0,6_0_1 -14464,2,79.0,0.0,2,112,460.0,0.0,0.0,86,72,0.0,1138.6897553014035,635.800144684928,1740.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122275,2,1,2,0,2,,193.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,727.078415111052,460.0,21937.010152443712,6,5,0,1,75.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0793180104266018,14624.673434962475,3,2,3_0,3_1_0,3_0_0,3_0_1 -14465,2,34.0,0.0,1,112,2600.0,0.0,0.0,21,63,0.0,0.0,3593.6529916974196,4789.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,111047,2,2,5,0,1,,300.0,1175.0,43,2.0,0.0,5.0,2.0,1.5,1,1,587.750112717379,2600.0,42867.22473021104,1,1,2,3,122.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1117170525999765,28578.149820140694,8,4,8,8_1,8_0,8_1_0 -14466,2,54.0,0.0,1,111,450.0,1300.0,0.0,54,46,0.0,0.0,621.9784024091688,1750.0,0.0,2357.7487711016834,60,0,0,0,0,0,0,0,0,3,45.0,1,,1,126081,2,1,1,0,1,,340.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,605.763860446619,450.0,22088.0,1,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07922854038391887,14725.333333333334,3,2,3_0,3_1_0,3_4_0,3_1_0 -14467,1,41.0,304.0,2,111,316.0,635.0,0.0,85,63,0.0,0.0,436.76705591399406,951.0,0.0,1151.66959203813,20,2,2,2,2,1,2,2,2,3,60.0,2,,2,115704,1,3,0,0,2,,0.0,485.0,42,1.0,0.0,2.0,3.0,1.8,4,2,631.702163866823,316.0,14755.35110922093,6,1,3,4,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06445119421154946,8197.417282900517,1,1,1_1,1_0_1,1_4_1,1_0_1 -14468,2,34.0,0.0,7,111,1300.0,0.0,0.0,42,42,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,25.0,2,,5,101124,2,1,0,0,1,,200.0,580.0,43,2.0,0.0,2.0,2.0,1.5,1,1,219.405282060899,1300.0,5288.562986161947,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.24581346641830298,3525.7086574412983,1,1,1_0,1_0_0,1_4_0,1_0_0 -14469,2,51.0,0.0,7,111,150.0,200.0,0.0,0,45,0.0,0.0,207.32613413638958,350.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,3,90.0,2,,5,105954,2,2,0,0,1,,0.0,282.0,12,1.0,0.0,1.0,1.0,1.0,2,2,317.41518072702,150.0,27668.152025717376,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012649923264650172,27668.152025717376,7,4,7,7_0,7_4,7_0_0 -14470,1,35.0,223.0,2,111,342.0,458.0,0.0,64,53,0.0,0.0,472.7035858309682,800.0,0.0,830.6530285881316,50,0,0,0,0,0,0,0,0,3,50.0,2,,2,130335,2,1,0,0,1,,0.0,370.0,43,2.0,0.0,2.0,4.0,2.1,1,1,148.062080755033,342.0,41183.843718525226,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019425093137679757,19611.35415167868,5,3,5,5_0,5_4,5_0_1 -14471,1,35.0,430.0,2,111,600.0,1900.0,0.0,85,63,0.0,0.0,829.3045365455583,2640.0,240.84578058662683,3445.940511610153,31,0,0,0,0,0,0,0,0,1,15.0,1,,2,120395,2,2,3,0,1,,0.0,841.0,42,1.0,0.0,4.0,5.0,2.4,2,2,448.270132438124,600.0,17514.346986520315,6,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1507335672881119,7297.644577716798,1,1,1_1,1_1_1,1_4_1,1_0_1 -14472,2,33.0,0.0,2,111,0.0,0.0,188.0,0,47,0.0,0.0,96.05170694945471,188.0,0.0,214.93020563469472,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,130962,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,213.853126852257,0.0,17021.184988577494,0,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011045059443638164,17021.184988577494,4,2,4_0,4_0_0,4_4_0,4_0_1 -14473,2,33.0,0.0,2,111,1300.0,0.0,0.0,67,54,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,15.0,2,,2,121214,2,1,0,0,1,,280.0,670.0,43,2.0,0.0,2.0,2.0,1.5,2,2,183.552539583742,1300.0,34995.608515931,1,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.037147518078109794,23330.405677287334,6,3,6,6_0,6_4,6_0_1 -14474,1,37.0,412.0,2,111,420.0,360.0,0.0,54,65,0.0,0.0,580.5131755818909,780.0,0.0,652.9150443050816,70,2,1,2,2,1,2,2,2,3,40.0,2,,2,124655,2,1,0,1,1,672.0,0.0,556.0,43,2.0,0.0,2.0,4.0,2.1,1,1,164.993728892535,420.0,17847.80308396109,4,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04370285778763136,8498.95384950528,1,1,1_1,1_0_1,1_4_1,1_0_1 -14475,2,42.0,0.0,6,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,357.0,0.0,0.0,42,2,1,2,2,1,2,2,2,1,10.0,2,,4,119683,1,2,0,1,2,,0.0,,32,1.0,0.0,4.0,2.0,1.5,3,3,614.759708428083,0.0,19219.25669679225,0,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.018575120028423594,12812.8377978615,2,1,2_0,2_0_0,2_4_0,2_0_0 -14476,2,48.0,0.0,2,111,1120.0,0.0,0.0,63,65,0.0,0.0,1548.0351348850422,1230.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,109391,2,1,2,0,1,,700.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,645.520901840228,1120.0,33928.65223762744,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036252545234788595,13571.460895050976,3,2,3_0,3_1_0,3_4_0,3_0_1 -14477,2,59.0,0.0,2,111,400.0,1300.0,0.0,74,75,0.0,0.0,552.8696910303722,1700.0,0.0,2357.7487711016834,44,0,0,0,0,0,0,0,0,0,,2,,2,102111,2,1,0,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,896.270486805363,400.0,27958.620381671542,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060804144725053966,18639.080254447694,4,2,4_0,4_0_0,4_4_0,4_0_1 -14478,2,66.0,0.0,2,211,520.0,800.0,0.0,0,78,0.0,0.0,718.7305983394839,1320.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,2,108307,1,2,0,1,1,,200.0,201.0,21,1.0,0.0,3.0,2.0,1.5,4,4,351.231243237795,520.0,23066.27445080348,0,5,2,3,60.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057226406579672845,15377.516300535653,3,2,3_0,3_0_0,3_1_0,3_0_1 -14479,1,55.0,276.0,2,211,840.0,2400.0,0.0,52,52,0.0,82.81380038555662,1161.0263511637818,3320.0,0.0,4352.7669620338775,31,2,2,2,1,2,2,2,2,2,15.0,2,,2,105198,1,3,0,1,2,72.0,1000.0,324.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,2,2,377.013020609911,840.0,33339.22936600958,1,1,2,3,80.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09958238576998564,11496.285988279169,2,1,2_1,2_0_1,2_1_1,2_0_1 -14480,2,30.0,0.0,9,400,1300.0,0.0,0.0,22,46,0.0,698.741440753134,1796.8264958487098,2095.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,0,,1,2013.0,6,129142,2,2,3,0,1,,434.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,2154.20655617173,1300.0,27550.985627989394,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0760408367340464,10204.068751107185,2,1,2_0,2_1_0,2_0_0,2_0_0 -14481,1,43.0,320.0,2,211,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1942.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,116746,1,3,0,0,1,,349.0,267.0,32,1.0,1.0,5.0,4.0,1.9,2,2,285.071211143555,0.0,13823.29358221415,0,1,2,3,60.0,3,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14048750310119215,7275.417674849553,1,1,1_1,1_0_1,1_1_1,1_0_1 -14482,2,60.0,0.0,6,211,164.0,1266.0,0.0,0,67,0.0,0.0,226.6765733224526,1430.0,0.0,2296.08457247287,31,2,2,2,2,2,2,2,1,1,10.0,2,,4,133520,2,2,0,1,1,,93.0,297.0,12,1.0,2.0,3.0,1.0,1.0,2,2,380.074465663871,164.0,18459.709585624736,0,1,2,3,80.0,3,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.07746600743456952,18459.709585624736,4,2,4_0,4_0_0,4_1_0,4_0_0 -14483,0,62.0,0.0,1,112,570.0,0.0,0.0,71,71,3733.962192545002,0.0,787.8393097182804,3070.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131422,2,1,2,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1673.32106281062,570.0,33829.89153204743,5,5,0,1,140.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09074814789434825,22553.261021364957,6,3,6,6_1,6_0,6_1_0 -14484,2,66.0,0.0,6,211,800.0,740.0,0.0,78,78,0.0,0.0,1105.7393820607444,1540.0,0.0,1342.1031466271122,70,0,0,0,0,0,0,0,0,0,,2,,4,103053,1,2,0,0,1,,540.0,340.0,41,0.0,0.0,3.0,2.0,1.5,2,2,347.980347735786,800.0,13890.558610141185,5,5,2,3,78.0,3,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1108666716164806,9260.372406760789,1,1,1_0,1_0_0,1_1_0,1_0_0 -14485,2,63.0,0.0,1,211,217.0,1042.0,0.0,78,78,0.0,0.0,299.93180738397695,1259.0,0.0,1889.8263226830418,31,0,0,0,0,0,0,0,0,0,,2,,1,120478,2,2,0,1,1,,217.0,224.0,41,0.0,1.0,3.0,2.0,1.5,2,2,364.92664852297,217.0,23217.391404608203,5,5,2,3,64.0,3,3,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05422659152613126,15478.260936405468,3,2,3_0,3_0_0,3_1_0,3_1_0 -14486,1,24.0,59.0,9,300,0.0,0.0,0.0,43,52,0.0,0.0,0.0,3532.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,127620,2,1,1,0,1,,418.0,597.0,43,2.0,0.0,4.0,4.0,2.1,2,2,2669.28856727174,0.0,40913.0,1,1,2,3,93.0,0,1,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08632952851171999,19482.38095238095,5,3,5,5_1,5_1,5_0_0 -14487,2,41.0,0.0,9,111,300.0,1200.0,0.0,56,62,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,42,2,2,2,2,1,2,2,2,1,5.0,1,2010.0,6,106291,2,1,1,0,1,,700.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,168.995628074902,300.0,28826.88456027771,1,1,1,2,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05203475931863063,13727.087885846528,3,2,3_0,3_1_0,3_2_0,3_0_0 -14488,1,54.0,168.0,5,211,310.0,1513.0,0.0,78,52,0.0,0.0,428.47401054853844,1823.0,0.0,2744.05683898219,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,129554,2,2,0,0,1,,300.0,245.0,42,1.0,4.0,3.0,2.0,1.5,1,1,371.080886496097,310.0,19391.62506261865,5,1,2,3,58.0,3,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09400965592688815,12927.750041745765,2,1,2_1,2_0_1,2_1_1,2_0_0 -14489,2,38.0,0.0,9,120,1747.0,0.0,0.0,54,48,0.0,861.2635240097889,2414.658375575151,2579.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,102891,2,1,1,0,1,,176.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1185.59111559532,1747.0,52716.55982808319,1,1,1,2,173.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04892200872762782,25103.12372765866,7,4,7,7_1,7_0,7_0_0 -14490,2,40.0,0.0,9,111,1400.0,0.0,0.0,52,55,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,2.0,1,2012.0,6,132275,2,1,1,0,1,,216.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,347.872015760808,1400.0,39346.62925742768,1,1,1,2,245.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03558119275835336,16394.428857261533,4,2,4_0,4_1_0,4_2_0,4_0_0 -14491,1,43.0,409.0,5,111,540.0,180.0,0.0,0,68,0.0,0.0,746.3740828910024,720.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,114007,2,1,0,1,1,871.0,0.0,380.0,32,2.0,0.0,5.0,6.0,2.8999999999999995,1,1,339.608115330149,540.0,35313.75899056671,0,1,2,3,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02038865361776785,12177.158272609213,2,1,2_1,2_0_1,2_2_1,2_0_0 -14492,2,52.0,0.0,9,111,0.0,0.0,0.0,63,63,0.0,0.0,0.0,1510.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,127609,2,1,1,0,1,,270.0,,43,3.0,4.0,4.0,3.0,2.0,2,2,1052.02532514788,0.0,20077.72964940776,4,1,1,2,115.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07520770656679009,10038.86482470388,2,1,2_0,2_1_0,2_2_0,2_0_0 -14493,2,49.0,0.0,5,111,600.0,814.0,0.0,0,63,0.0,0.0,829.3045365455583,1414.0,0.0,1476.3134612898234,71,0,0,0,0,0,0,0,0,0,,2,,3,118627,1,1,0,0,1,,0.0,517.0,32,1.0,0.0,3.0,3.0,2.0,3,2,387.490408091616,600.0,18026.668043115973,0,4,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07843934312308916,9013.334021557986,1,1,1_0,1_0_0,1_2_0,1_0_0 -14494,2,44.0,0.0,9,112,1570.0,0.0,0.0,52,56,0.0,931.655254337512,2170.013537294211,2470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,111734,2,1,1,0,1,,500.0,,43,3.0,1.0,10.0,10.0,4.699999999999999,2,2,1991.4688009556,1570.0,78530.70149222601,1,1,1,2,215.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031452666957833206,16708.659891962983,4,2,4_0,4_1_0,4_0_0,4_0_0 -14495,1,78.0,250.0,2,111,180.0,468.0,0.0,0,78,0.0,0.0,248.7913609636675,648.0,0.0,848.7895575966061,31,2,2,1,1,1,2,2,2,0,,2,,2,113450,1,3,0,1,2,732.0,0.0,239.0,11,0.0,2.0,3.0,1.0,1.0,2,2,407.349816201436,180.0,10909.615045007531,0,5,2,3,61.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.059397146217046254,10909.615045007531,2,1,2_1,2_0_1,2_2_1,2_0_1 -14496,2,28.0,0.0,9,300,1182.0,0.0,0.0,55,38,0.0,186.3310508675024,1633.72993699475,1362.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,106785,2,1,1,0,1,,115.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2283.5419846422,1182.0,48548.57148026852,1,1,1,2,99.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02805437850119966,26971.428600149175,7,4,7,7_1,7_0,7_0_0 -14497,2,47.0,0.0,5,111,340.0,0.0,0.0,0,45,0.0,0.0,469.9392373758164,340.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,113367,2,1,0,0,1,587.0,0.0,312.0,12,1.0,0.0,3.0,1.0,1.0,2,2,721.10214114351,340.0,19356.89800659788,0,1,2,3,100.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01756479782473977,19356.89800659788,5,3,5,5_0,5_2,5_0_0 -14498,2,53.0,0.0,9,111,1300.0,0.0,0.0,46,48,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,104054,2,1,1,0,1,,450.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,104.544585983231,1300.0,148022.73136995427,1,1,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00878243488664522,74011.36568497714,10,5,10,10_1,10_3,10_0_0 -14499,2,31.0,0.0,2,111,316.0,106.0,0.0,62,54,0.0,0.0,436.76705591399406,422.0,0.0,192.24720748982958,20,2,2,1,2,1,2,2,2,3,20.0,2,,2,106501,1,3,0,1,1,,0.0,357.0,43,2.0,0.0,4.0,3.0,1.8,3,2,439.031681418366,316.0,35786.882240808714,4,1,2,3,72.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.011792030307652294,19881.60124489373,5,3,5,5_0,5_2,5_0_1 -14500,1,57.0,16.0,2,111,524.0,446.0,0.0,85,64,0.0,0.0,724.2592952497876,970.0,0.0,808.8891937779622,50,0,0,0,0,0,0,0,0,0,,2,,2,104440,2,1,0,1,1,1020.0,0.0,257.0,42,2.0,0.0,5.0,6.0,3.0999999999999996,5,4,310.821174609651,524.0,41767.832288402846,6,1,2,3,97.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023223613648471,13473.494286581565,3,2,3_1,3_0_1,3_2_1,3_0_1 -14501,2,23.0,0.0,9,120,1400.0,0.0,0.0,52,63,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,42,2,2,2,2,1,2,2,2,2,3.0,1,2012.0,6,103463,2,2,1,0,1,,250.0,480.0,43,2.0,0.0,4.0,2.0,1.5,2,2,4810.64575231304,1400.0,29666.68258553894,1,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04719098591368728,19777.788390359292,5,3,5,5_1,5_0,5_0_0 -14502,2,33.0,0.0,1,111,286.0,1250.0,0.0,52,63,0.0,0.0,395.3018290867161,1536.0,0.0,2267.066126059311,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,106978,2,1,1,0,2,,318.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,285.113583950833,286.0,43716.6831163217,1,1,1,2,56.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035135327991673085,20817.46815062938,5,3,5,5_1,5_2,5_1_0 -14503,2,79.0,0.0,2,111,224.0,230.0,0.0,0,78,0.0,0.0,309.60702697700845,454.0,0.0,417.14016719491326,44,2,1,2,2,1,2,2,2,0,,2,,2,126157,1,2,0,1,1,850.0,0.0,195.0,11,0.0,2.0,4.0,1.0,1.0,2,2,426.054435802756,224.0,23157.195479147882,0,5,2,3,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019605137435956294,23157.195479147882,6,3,6,6_0,6_2,6_0_1 -14504,2,43.0,0.0,9,120,1300.0,0.0,0.0,85,48,0.0,517.5862524097289,1796.8264958487098,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,130090,2,1,1,0,1,,300.0,,42,2.0,0.0,7.0,6.0,2.8999999999999995,2,1,2151.3938980878,1300.0,27859.0,7,1,1,2,119.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06461107721023726,9606.551724137933,1,1,1_0,1_1_0,1_1_0,1_0_0 -14505,2,74.0,0.0,2,111,800.0,800.0,0.0,75,75,0.0,0.0,1105.7393820607444,1600.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,0,,1,,2,107067,2,1,2,0,1,,400.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1802.46881046811,800.0,61372.62621569889,5,5,0,1,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026070254748048013,40915.08414379926,9,5,9,9_1,9_2,9_0_1 -14506,1,34.0,328.0,2,111,0.0,0.0,508.0,67,85,0.0,0.0,259.54397409746275,508.0,0.0,580.7688535235368,41,2,1,2,2,1,2,2,2,0,,2,,2,104216,2,1,0,0,1,,0.0,466.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,342.534316436897,0.0,12211.906149733593,4,7,2,3,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04159874746589681,4522.928203605035,1,1,1_1,1_0_1,1_2_1,1_0_1 -14507,1,34.0,94.0,9,300,650.0,0.0,0.0,67,63,0.0,310.55175144583734,898.4132479243549,1010.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,127314,2,1,1,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1950.19166416172,650.0,23778.340057035828,1,1,1,2,94.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042475631081789866,11323.019074778966,2,1,2_1,2_1_1,2_0_1,2_0_0 -14508,1,38.0,359.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1199.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,105268,2,2,2,0,1,,276.0,500.0,32,1.0,0.0,4.0,3.0,1.6,2,2,292.01288537232,0.0,13736.2658520172,0,1,2,3,85.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08728718655542941,8585.16615751075,1,1,1_1,1_1_1,1_2_1,1_0_1 -14509,2,29.0,0.0,9,111,0.0,0.0,0.0,67,65,0.0,0.0,0.0,2678.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,124109,2,1,1,0,1,,317.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1337.20999280816,0.0,39414.5562171625,1,1,1,2,100.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06794444126796748,21896.97567620139,6,3,6,6_1,6_3,6_0_0 -14510,2,64.0,0.0,8,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,735.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2000.0,6,111223,2,1,0,0,1,,95.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,2364.8710468059,0.0,38429.653848196154,0,5,1,2,70.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01912585533305552,38429.653848196154,9,5,9,9_0,9_2,9_0_0 -14511,1,36.0,330.0,5,111,240.0,132.0,0.0,0,81,0.0,0.0,331.72181461822333,372.0,0.0,239.40218291186326,71,2,1,1,2,1,2,2,2,0,,2,,3,117838,1,3,0,1,2,,0.0,320.0,32,1.0,0.0,5.0,5.0,2.2,1,1,343.150166519441,240.0,16098.383876115988,0,4,2,3,98.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.02310790964252689,7317.447216416357,1,1,1_1,1_0_1,1_2_1,1_0_0 -14512,1,37.0,120.0,9,111,0.0,0.0,0.0,62,55,0.0,0.0,0.0,999.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,109422,2,1,1,0,1,,814.0,810.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,1,1,618.65141013724,0.0,31066.027199541913,1,1,2,3,90.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03215731427720925,10712.423172255834,2,1,2_1,2_1_1,2_3_1,2_0_0 -14513,2,76.0,0.0,1,111,2075.0,0.0,0.0,71,71,1792.3018524216009,0.0,2868.011522220056,3461.0,319.98082277937567,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132184,2,1,3,0,2,,778.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,309.120613477696,2075.0,31100.10197016132,5,5,0,1,194.0,7,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11128580875138679,20733.401313440878,5,3,5,5_1,5_2,5_1_0 -14514,2,35.0,0.0,9,112,1650.0,0.0,0.0,56,63,0.0,0.0,2280.5874755002856,1770.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,126441,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,969.331831365125,1650.0,28888.782368042775,1,1,1,2,105.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06126945668565117,13756.563032401322,3,2,3_0,3_1_0,3_0_0,3_0_0 -14515,1,55.0,220.0,9,111,1500.0,0.0,0.0,56,63,0.0,465.827627168756,2073.261341363896,1950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,2011.0,6,131005,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,4,924.203437857853,1500.0,25985.0,1,1,1,2,98.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07504329420819704,8382.25806451613,1,1,1_1,1_1_1,1_2_1,1_0_0 -14516,1,41.0,344.0,2,111,480.0,600.0,0.0,0,56,0.0,0.0,663.4436292364467,1275.0,0.0,1088.1917405084694,42,0,0,0,0,0,0,0,0,0,,2,,2,100461,2,1,0,1,1,408.0,0.0,427.0,32,1.0,0.0,4.0,3.0,1.6,2,2,380.438063153862,480.0,8798.377756960657,0,1,2,3,78.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14491307775360177,5498.98609810041,1,1,1_1,1_0_1,1_2_1,1_0_1 -14517,2,36.0,0.0,9,112,1200.0,0.0,0.0,43,53,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,106817,2,1,1,0,1,,196.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,969.331831365125,1200.0,35793.10371199666,1,1,1,2,117.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03352601131367661,17044.33510095079,4,2,4_0,4_1_0,4_0_0,4_0_0 -14518,2,54.0,0.0,5,111,200.0,300.0,0.0,0,52,0.0,0.0,276.4348455151861,500.0,0.0,544.0958702542347,33,0,0,0,0,0,0,0,0,2,15.0,2,,3,133390,2,1,0,1,1,660.0,0.0,288.0,12,1.0,1.0,3.0,1.0,1.0,2,2,650.627080006872,200.0,18892.5904628993,0,1,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026465401924732603,18892.5904628993,5,3,5,5_0,5_2,5_0_0 -14519,2,38.0,0.0,5,111,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1081.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,2,,3,132203,2,2,0,1,1,420.0,0.0,230.0,43,2.0,0.0,4.0,3.0,1.8,3,2,352.028841631114,0.0,23608.044405493314,4,1,2,3,73.0,5,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04578947673228131,13115.580225274063,2,1,2_0,2_0_0,2_2_0,2_0_0 -14520,2,41.0,0.0,9,112,1800.0,0.0,0.0,56,37,0.0,341.60692659042104,2487.913609636675,2130.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,42.0,1,2011.0,6,118537,2,1,1,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1154.41359056103,1800.0,64367.62813529436,4,1,1,2,98.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033091168056137654,25747.051254117745,7,4,7,7_1,7_1,7_0_0 -14521,1,51.0,114.0,2,111,564.0,349.0,0.0,85,63,0.0,0.0,779.5462643528249,913.0,0.0,632.9648623957596,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,106979,2,1,0,1,1,,0.0,278.0,42,2.0,0.0,4.0,3.0,2.0,3,2,366.90742743954,564.0,18260.64016236276,6,1,2,3,117.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049998247152462705,9130.32008118138,1,1,1_1,1_0_1,1_2_1,1_0_1 -14522,2,44.0,0.0,2,111,380.0,550.0,0.0,85,63,0.0,0.0,525.2262064788536,930.0,0.0,997.5090954660969,44,2,2,2,1,1,1,2,2,2,10.0,2,,2,109813,1,3,0,0,1,,0.0,228.0,42,2.0,0.0,3.0,3.0,2.0,2,2,334.043690808439,380.0,14558.47033754453,6,1,2,3,67.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0.06388033759299855,7279.235168772265,1,1,1_0,1_0_0,1_2_0,1_0_1 -14523,1,43.0,63.0,9,111,0.0,0.0,0.0,46,68,0.0,0.0,0.0,2439.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,2012.0,6,132515,2,1,1,0,1,,669.0,,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,255.527947420902,0.0,42681.971940516574,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05714356411177757,15808.13775574688,3,2,3_1,3_1_1,3_4_1,3_0_0 -14524,2,75.0,0.0,2,111,300.0,1850.0,0.0,78,78,0.0,0.0,414.65226827277917,2150.0,0.0,3355.2578665677806,42,0,0,0,0,0,0,0,0,0,,1,,2,116939,2,1,1,0,1,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1658.04712066527,300.0,49905.716246631346,5,5,0,1,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0430812372148877,33270.47749775423,8,4,8,8_1,8_2,8_0_1 -14525,1,47.0,146.0,2,111,471.0,232.0,0.0,72,67,0.0,0.0,651.0040611882633,703.0,0.0,420.76747299660815,50,2,1,2,1,1,2,2,2,2,35.0,2,,2,123722,2,2,0,1,1,1262.0,0.0,295.0,42,1.0,0.0,4.0,6.0,3.0999999999999996,1,1,323.454030126337,471.0,38433.58638199481,5,1,2,3,112.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.018291293271796724,12397.93109096607,2,1,2_1,2_0_1,2_2_1,2_0_1 -14526,2,36.0,0.0,2,111,710.0,0.0,0.0,0,55,0.0,0.0,981.3437015789107,1010.0,516.0981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,120703,1,1,0,1,1,93.0,400.0,381.0,22,3.0,4.0,4.0,5.0,3.0,2,2,358.225034616126,710.0,58185.98739967581,0,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017358131143541053,19395.32913322527,5,3,5,5_0,5_3,5_0_1 -14527,1,40.0,288.0,7,111,552.0,720.0,0.0,85,65,0.0,0.0,762.9601736219137,1272.0,0.0,1305.830088610163,42,0,0,0,0,0,0,0,0,2,4.0,1,,5,103537,1,1,2,0,1,,600.0,503.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,282.495801515909,552.0,30582.211581320662,6,1,2,3,92.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04159280621735434,11326.745030118765,2,1,2_1,2_1_1,2_3_1,2_0_0 -14528,2,43.0,0.0,9,111,0.0,0.0,0.0,85,46,0.0,0.0,0.0,2975.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,1,2013.0,6,100337,2,1,1,0,1,,625.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,190.345983958097,0.0,48895.35055977373,7,1,1,2,130.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060844230912366876,20373.062733239054,5,3,5,5_1,5_4,5_0_0 -14529,2,74.0,0.0,1,112,850.0,0.0,0.0,71,71,2240.377315527001,0.0,1174.848093439541,2440.0,154.82943037711726,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,109077,2,2,3,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1314.62507390266,850.0,17828.633772353234,5,5,0,1,90.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1368584957857901,11885.755848235489,2,1,2_0,2_1_0,2_0_0,2_1_0 -14530,2,41.0,0.0,2,111,522.0,120.0,0.0,65,43,0.0,0.0,721.4949467946358,642.0,0.0,217.63834810169388,50,1,2,2,1,1,2,2,2,2,10.0,2,,2,117490,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,254.747260852712,522.0,59633.561461024176,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010765749760218563,33129.756367235655,8,4,8,8_0,8_4,8_0_1 -14532,1,27.0,263.0,2,111,420.0,0.0,0.0,43,52,0.0,0.0,580.5131755818909,420.0,0.0,0.0,42,2,1,2,2,1,2,2,2,2,10.0,2,,2,128219,2,2,0,1,1,1305.0,0.0,843.0,43,2.0,0.0,6.0,5.0,2.4,4,3,203.752747718517,420.0,53173.27237826566,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.007898705142918253,22155.530157610694,6,3,6,6_0,6_4,6_0_1 -14533,2,38.0,0.0,9,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,1685.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,75.0,1,2013.0,6,131311,1,1,1,0,2,,855.0,,22,1.0,2.0,7.0,2.0,1.5,2,2,188.893746076188,0.0,39105.55332753094,0,1,1,2,180.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0430885093451352,26070.368885020627,7,4,7,7_1,7_4,7_0_0 -14534,2,25.0,0.0,6,111,1628.0,0.0,0.0,0,64,0.0,0.0,2250.179642493615,2002.0,643.4022995671316,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,127383,2,2,2,0,1,,360.0,601.0,22,3.0,3.0,5.0,3.0,2.0,2,2,222.937021308141,1628.0,59465.04933911088,0,1,2,3,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033666834926566865,29732.52466955544,8,4,8,8_1,8_4,8_0_0 -14535,2,65.0,0.0,6,111,780.0,0.0,0.0,77,78,0.0,0.0,1078.0958975092258,816.0,61.9317721508469,0.0,50,2,1,2,1,1,2,2,2,0,,1,,4,130188,1,2,3,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,231.839772498214,780.0,46861.24501775271,7,5,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.017413109696314516,31240.830011835144,8,4,8,8_1,8_4,8_0_0 -14536,2,54.0,0.0,8,111,600.0,0.0,0.0,55,53,0.0,0.0,829.3045365455583,600.0,0.0,0.0,70,2,1,2,2,1,2,2,2,3,75.0,2,2003.0,6,131897,2,2,0,1,1,,0.0,534.0,43,3.0,1.0,3.0,4.0,2.3,1,1,436.631430850079,600.0,50495.88668182615,1,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011882155942336279,21954.733339924416,6,3,6,6_0,6_4,6_0_0 -14537,2,37.0,0.0,6,111,400.0,0.0,0.0,55,67,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,2,1,2,1,1,2,2,2,3,60.0,2,,4,125743,1,3,0,1,1,466.0,0.0,426.0,43,2.0,0.0,3.0,4.0,2.1,2,2,300.827180935837,400.0,37921.36831781464,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010548142584087311,18057.79443705459,4,2,4_0,4_0_0,4_4_0,4_0_0 -14538,2,46.0,0.0,9,111,840.0,0.0,0.0,37,53,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,5.0,1,2012.0,6,101278,2,1,1,0,1,,372.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,179.343329680875,840.0,67415.25687786474,1,1,1,2,144.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012460087506924672,29310.981251245543,8,4,8,8_1,8_4,8_0_0 -14539,2,53.0,0.0,9,112,0.0,0.0,0.0,52,47,0.0,0.0,0.0,2244.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2012.0,6,123310,2,1,1,0,1,,523.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,358.910427353965,0.0,31898.33346671718,1,1,1,2,85.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07034850276242163,12759.333386686872,2,1,2_0,2_1_0,2_2_0,2_0_0 -14540,1,29.0,260.0,7,111,460.0,0.0,0.0,85,67,0.0,0.0,635.800144684928,508.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,103611,1,2,0,1,2,,350.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,315.024046091074,460.0,24482.65776779219,6,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0207493812484808,10201.107403246746,2,1,2_1,2_0_1,2_4_1,2_0_0 -14541,2,75.0,0.0,1,300,1100.0,0.0,0.0,77,78,1378.5788414876147,0.0,1520.3916503335236,2053.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123233,2,1,3,0,2,,157.0,,41,0.0,4.0,7.0,2.0,1.5,1,1,1209.16364054843,1100.0,35472.535785979555,5,5,0,1,180.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05787576090941443,23648.357190653038,6,3,6,6_1,6_0,6_1_0 -14542,2,33.0,0.0,9,112,1040.0,0.0,0.0,68,47,0.0,365.4158942012686,1437.4611966789678,1393.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,60.0,1,2011.0,6,107943,2,1,1,0,1,,560.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,313.471764988267,1040.0,33072.408460867235,1,1,1,2,80.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042119702338832096,18373.56025603735,4,2,4_0,4_1_0,4_2_0,4_0_0 -14543,0,35.0,0.0,1,300,2000.0,0.0,0.0,69,54,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,1,131670,2,2,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1412.66605271779,2000.0,42100.0,1,1,5,0,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047505938242280284,20047.619047619046,5,3,5,5_1,5_0,5_1_0 -14544,1,39.0,300.0,6,111,400.0,0.0,0.0,0,85,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,4,105871,1,3,0,1,1,792.0,0.0,400.0,31,0.0,0.0,3.0,3.0,1.6,1,1,312.247641146155,400.0,9512.76362101444,0,6,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.042048768994571536,5945.477263134024,1,1,1_1,1_0_1,1_4_1,1_0_0 -14545,2,60.0,0.0,7,111,912.0,0.0,0.0,68,68,0.0,0.0,1260.5428955492487,912.0,0.0,0.0,50,2,1,2,1,2,1,2,2,2,10.0,2,,5,117746,2,1,0,1,1,468.0,0.0,514.0,43,3.0,2.0,4.0,4.0,2.5,2,2,314.286186592595,912.0,80311.92842983447,1,1,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011355722840060804,32124.771371933788,8,4,8,8_0,8_4,8_0_0 -14546,0,27.0,0.0,9,112,800.0,1500.0,0.0,52,46,0.0,0.0,1105.7393820607444,2300.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,0,,8,2012.0,6,105819,2,3,0,0,1,,288.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,2063.09853603976,800.0,34529.5770070644,1,1,5,0,120.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06660956198593002,19183.098337257998,5,3,5,5_0,5_1,5_0_0 -14547,2,36.0,0.0,7,111,446.0,0.0,0.0,46,37,0.0,0.0,616.449705498865,446.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,2,,5,111947,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,4,4,331.04962035955,446.0,32369.567417645623,1,1,1,2,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01377837381159663,21579.71161176375,6,3,6,6_0,6_4,6_0_0 -14548,2,59.0,0.0,2,300,600.0,0.0,0.0,78,42,1641.4497798427828,0.0,829.3045365455583,1789.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,120.0,1,,2,105043,2,2,4,0,1,,206.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1281.95272133855,600.0,4590.469632359718,5,1,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.38972047378088626,3060.3130882398123,1,1,1_0,1_1_0,1_0_0,1_0_1 -14550,2,35.0,0.0,1,300,1000.0,0.0,0.0,42,46,0.0,0.0,1382.1742275759307,1150.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,108630,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,6,5,1218.52830295564,1000.0,47536.16375833599,1,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024192107841229295,31690.775838890662,8,4,8,8_1,8_0,8_1_0 -14551,1,44.0,235.0,5,111,680.0,0.0,0.0,0,52,0.0,0.0,939.8784747516328,680.0,0.0,0.0,50,2,1,2,2,1,2,2,2,3,60.0,2,,3,112323,2,2,0,1,1,913.0,0.0,514.0,32,2.0,0.0,4.0,4.0,2.1,2,2,404.746484121823,680.0,44826.46113106709,0,1,2,3,122.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.015169611493795221,21345.933871936708,6,3,6,6_0,6_4,6_0_0 -14552,2,43.0,0.0,9,111,1400.0,0.0,0.0,85,48,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,2012.0,6,111361,2,1,1,0,1,,280.0,,42,1.0,2.0,5.0,2.0,1.5,3,3,199.669429630473,1400.0,25239.338636499273,6,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0.05546896533871229,16826.225757666183,4,2,4_0,4_1_0,4_4_0,4_0_0 -14553,2,36.0,0.0,9,112,0.0,0.0,0.0,46,55,0.0,0.0,0.0,1864.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,114849,2,1,1,0,1,,785.0,1380.0,43,2.0,0.0,7.0,4.0,2.1,1,1,1076.24749365899,0.0,33935.677330535094,4,1,2,3,180.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05492744352336192,16159.846347873854,4,2,4_0,4_1_0,4_1_0,4_0_0 -14554,2,70.0,0.0,1,300,0.0,0.0,0.0,77,78,0.0,828.1380038555662,0.0,1073.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,116320,2,1,4,0,2,,135.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1361.07222277749,0.0,37703.340829586145,5,5,0,1,80.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028459016532508638,25135.56055305743,7,4,7,7_1,7_0,7_1_0 -14555,1,52.0,122.0,6,112,0.0,0.0,0.0,68,64,0.0,0.0,0.0,1072.0,0.0,0.0,70,2,1,2,1,1,2,2,2,2,30.0,2,,4,126283,2,1,0,1,1,,0.0,389.0,43,3.0,1.0,2.0,3.0,2.0,1,1,464.021408169948,0.0,42327.88567052639,1,1,2,3,60.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02532609373272928,21163.942835263195,5,3,5,5_0,5_2,5_0_0 -14556,2,42.0,0.0,9,111,1152.0,1800.0,0.0,38,38,0.0,0.0,1592.264710167472,2952.0,0.0,3264.575221525408,70,0,0,0,0,0,0,0,0,3,70.0,1,2010.0,6,107596,2,1,1,0,1,,504.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,247.186675005035,1152.0,69352.58188390001,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04256510601064295,38529.21215772223,9,5,9,9_1,9_4,9_0_0 -14557,2,26.0,0.0,2,112,0.0,0.0,0.0,67,52,0.0,0.0,0.0,399.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,40.0,2,,2,112322,1,1,0,1,1,364.0,152.0,279.0,43,2.0,0.0,2.0,2.0,1.5,2,2,386.917131185996,0.0,36377.03438213932,4,1,2,3,40.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010968458720645577,24251.356254759547,7,4,7,7_0,7_2,7_0_1 -14558,2,36.0,0.0,9,111,1600.0,0.0,0.0,54,53,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,1,2011.0,6,113911,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,5.0,2.6,3,2,152.237974170708,1600.0,54367.28975798355,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029429460381829104,20910.496060762904,5,3,5,5_1,5_4,5_0_0 -14559,2,57.0,0.0,5,112,300.0,100.0,0.0,0,42,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,3,60.0,2,,3,133060,2,2,0,1,1,910.0,0.0,375.0,12,1.0,2.0,3.0,1.0,1.0,2,2,496.548874928565,300.0,28370.59452504032,0,1,2,3,40.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014099105312965998,28370.59452504032,8,4,8,8_0,8_2,8_0_0 -14560,2,27.0,0.0,9,111,0.0,0.0,0.0,54,46,0.0,0.0,0.0,1266.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,2010.0,6,102137,2,1,0,0,1,,0.0,770.0,43,2.0,0.0,3.0,2.0,1.5,4,2,468.195417436123,0.0,39789.96323124333,1,1,2,3,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03181706885835795,26526.642154162222,7,4,7,7_0,7_4,7_0_0 -14561,1,46.0,293.0,5,112,700.0,150.0,0.0,0,68,0.0,0.0,967.5219593031513,850.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,1,7.0,2,,3,100832,1,1,0,1,1,3600.0,0.0,711.0,32,1.0,1.0,5.0,9.0,4.199999999999999,3,2,462.106475026932,700.0,47040.08342775863,0,1,2,3,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01806969584366022,11200.019863752057,2,1,2_1,2_0_1,2_2_1,2_0_0 -14562,1,42.0,200.0,6,300,770.0,0.0,0.0,21,52,4480.754631054002,2484.4140115666987,1064.2741552334664,6290.0,206.439240502823,0.0,20,2,2,2,1,1,2,2,2,2,15.0,1,,4,122893,1,3,2,0,2,,660.0,600.0,43,2.0,1.0,6.0,6.0,3.3,3,3,1508.57339550468,770.0,40578.6252503764,1,1,2,3,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.15500771554456877,12296.553106174666,2,1,2_1,2_1_1,2_0_1,2_0_0 -14563,1,38.0,500.0,5,112,0.0,0.0,0.0,56,67,0.0,0.0,0.0,615.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,2.0,2,,3,126072,2,1,0,1,2,836.0,0.0,650.0,43,2.0,0.0,3.0,7.0,2.9999999999999996,2,2,575.294613120202,0.0,31375.956132773084,4,1,2,3,65.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019600996297850344,10458.652044257697,2,1,2_1,2_0_1,2_2_1,2_0_0 -14564,2,33.0,0.0,9,111,1130.0,0.0,0.0,0,48,0.0,0.0,1561.8568771608016,1130.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,2012.0,6,115640,2,1,0,0,1,,240.0,,32,1.0,0.0,2.0,2.0,1.3,4,4,263.975751483303,1130.0,25640.934767892766,0,1,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0440701561869332,19723.795975302128,5,3,5,5_0,5_4,5_0_0 -14565,1,41.0,410.0,2,112,200.0,1100.0,0.0,69,63,0.0,0.0,276.4348455151861,1300.0,0.0,1995.0181909321939,71,2,2,1,1,1,2,2,2,0,,2,,2,102854,1,2,0,1,1,,900.0,786.0,43,2.0,0.0,3.0,6.0,2.8999999999999995,3,3,320.864736673741,200.0,20128.652012217826,4,1,2,3,105.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06458455336258569,6940.914486971666,1,1,1_1,1_0_1,1_2_1,1_0_1 -14566,2,47.0,0.0,9,111,1500.0,0.0,0.0,68,21,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2012.0,6,127064,2,1,1,0,1,,260.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,584.486212650847,1500.0,14545.505641728272,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10312463773667566,9697.003761152182,1,1,1_0,1_1_0,1_4_0,1_0_0 -14567,1,54.0,200.0,2,112,1.0,1.0,0.0,0,68,0.0,0.0,1.3821742275759306,962.0,0.0,1.813652900847449,71,2,2,2,1,2,2,2,2,3,6.0,2,,2,115527,2,3,0,1,1,,221.0,399.0,22,2.0,0.0,3.0,3.0,2.0,5,3,310.390656620053,1.0,55550.21856776943,0,1,3,4,55.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.017317663634867465,27775.109283884714,7,4,7,7_0,7_2,7_0_1 -14568,2,32.0,0.0,9,111,1400.0,0.0,0.0,46,54,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,1,2011.0,6,118936,1,1,1,0,1,,480.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,196.771102401304,1400.0,47161.89816963872,1,1,1,2,117.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029684979916717473,26201.05453868818,7,4,7,7_1,7_4,7_0_0 -14569,2,66.0,0.0,2,111,150.0,85.0,0.0,0,77,0.0,0.0,207.32613413638958,842.0,0.0,154.16049657203317,50,1,2,2,2,1,2,2,2,0,,2,,2,124505,1,2,0,1,1,840.0,0.0,384.0,11,0.0,1.0,4.0,1.0,1.0,2,2,232.341474375223,150.0,17064.80517549998,0,5,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04934131924394093,17064.80517549998,4,2,4_0,4_0_0,4_4_0,4_0_1 -14570,2,76.0,0.0,2,111,228.0,120.0,0.0,77,74,0.0,0.0,315.13572388731217,348.0,0.0,217.63834810169388,70,1,2,2,2,1,2,2,2,0,,2,,2,110417,2,2,0,1,2,780.0,0.0,291.0,41,0.0,1.0,3.0,2.0,1.5,4,4,195.337580547939,228.0,44450.65008565713,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00782890687378921,29633.76672377142,8,4,8,8_0,8_4,8_0_1 -14571,2,55.0,0.0,9,112,2086.0,0.0,0.0,37,37,0.0,0.0,2883.2154387233913,2086.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,2012.0,6,105855,2,1,1,0,1,,740.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,1260.64993622191,2086.0,96342.91597505924,1,1,1,2,165.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021651825449626343,53523.842208366244,10,5,10,10_1,10_0,10_0_0 -14572,2,31.0,0.0,2,111,733.0,0.0,0.0,68,46,0.0,0.0,1013.1337088131571,733.0,0.0,0.0,43,2,1,2,1,1,2,2,2,3,60.0,2,,2,129713,2,2,0,1,1,265.0,0.0,650.0,43,2.0,0.0,3.0,3.0,1.8,1,1,192.50213283003,733.0,21428.478541334884,4,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03420681494423719,11904.710300741603,2,1,2_0,2_0_0,2_4_0,2_0_1 -14573,2,40.0,0.0,9,111,1500.0,0.0,0.0,55,47,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,75.0,1,2012.0,6,117783,2,1,1,0,1,,900.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,685.536089199588,1500.0,37148.08023110064,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04037893723359059,17689.562014809828,4,2,4_0,4_1_0,4_4_0,4_0_0 -14574,2,61.0,0.0,2,111,190.0,59.0,0.0,0,52,0.0,0.0,262.6131032394268,249.0,0.0,107.00552114999948,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,118444,1,2,0,1,1,816.0,0.0,434.0,12,1.0,3.0,4.0,1.0,1.0,2,2,232.341474375223,190.0,20587.986381148345,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012094431936675462,20587.986381148345,5,3,5,5_0,5_4,5_0_1 -14575,2,33.0,0.0,9,111,1300.0,0.0,0.0,37,37,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,1,2013.0,6,129786,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,179.343329680875,1300.0,66932.98803544788,1,1,1,2,137.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019422410953945708,31872.85144545137,8,4,8,8_1,8_4,8_0_0 -14576,2,61.0,0.0,6,112,500.0,0.0,0.0,72,78,0.0,517.5862524097289,691.0871137879653,1120.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,7,,4,108408,2,1,0,0,1,,0.0,,41,0.0,0.0,2.0,2.0,1.5,3,2,1373.57449676654,500.0,12246.247038915319,7,7,0,1,18.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09145659045101227,8164.164692610212,1,1,1_0,1_1_0,1_0_0,1_0_0 -14577,1,49.0,230.0,2,111,135.0,290.0,0.0,0,63,0.0,0.0,186.5935207227506,425.0,0.0,525.9593412457601,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,127778,2,1,0,1,1,640.0,0.0,292.0,12,1.0,0.0,2.0,1.0,1.0,2,2,219.989312149953,135.0,13786.447129893932,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03082737677051316,13786.447129893932,3,2,3_1,3_0_1,3_4_1,3_0_1 -14580,2,50.0,0.0,2,111,700.0,175.0,0.0,78,56,0.0,0.0,967.5219593031513,875.0,0.0,317.38925764830356,70,0,0,0,0,0,0,0,0,1,10.0,2,,2,117343,1,2,0,1,1,876.0,0.0,306.0,42,1.0,0.0,3.0,4.0,2.1,2,2,247.782130176567,700.0,27276.59611379861,5,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03207878271722319,12988.85529228505,2,1,2_0,2_0_0,2_4_0,2_0_1 -14581,2,41.0,0.0,9,112,1875.0,0.0,0.0,46,38,0.0,0.0,2591.57667670487,1875.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,80.0,1,2011.0,6,119049,2,1,1,0,1,,900.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,2,2,970.762896228061,1875.0,86317.25454265151,1,1,1,2,170.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02172219227702053,33198.94405486597,8,4,8,8_1,8_2,8_0_0 -14582,2,28.0,0.0,9,111,1380.0,0.0,0.0,47,46,0.0,0.0,1907.4004340547842,1380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,130411,2,1,1,0,1,,720.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,711.561455674404,1380.0,40272.15481393869,1,1,1,2,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03426685277645896,22373.41934107705,6,3,6,6_1,6_4,6_0_0 -14583,2,42.0,0.0,2,111,340.0,0.0,0.0,0,52,0.0,0.0,469.9392373758164,340.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,70.0,2,,2,114403,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,3.0,1.8,2,2,278.375879632493,340.0,30663.810637776565,0,1,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011087989161436246,17035.450354320314,4,2,4_0,4_0_0,4_4_0,4_0_1 -14584,2,91.0,0.0,5,300,300.0,0.0,0.0,0,74,5300.732728536885,0.0,414.65226827277917,3874.0,43.00817510475479,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,115519,2,1,2,0,1,,149.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1561.25064035424,300.0,9411.46917086354,0,5,0,1,180.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.41162542528357926,9411.46917086354,1,1,1_0,1_1_0,1_0_0,1_0_0 -14585,1,75.0,87.0,5,111,80.0,60.0,0.0,0,77,0.0,0.0,110.57393820607444,635.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,2,,3,127200,2,2,0,1,1,1200.0,0.0,327.0,11,0.0,5.0,4.0,1.0,1.0,3,2,325.247575112512,80.0,14376.059387733298,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044170657818917214,14376.059387733298,3,2,3_1,3_0_1,3_4_1,3_0_0 -14586,2,64.0,0.0,6,300,1700.0,0.0,0.0,0,77,2539.0942909306013,0.0,2349.696186879082,3450.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,122062,2,1,2,0,1,,250.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1450.47873122144,1700.0,24736.986255688273,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13946727238071177,24736.986255688273,7,4,7,7_1,7_0,7_0_0 -14587,1,47.0,420.0,2,111,550.0,0.0,0.0,0,56,0.0,0.0,760.1958251667618,572.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,118004,2,1,0,1,1,1009.0,0.0,482.0,32,1.0,0.0,3.0,2.0,1.3,1,1,195.337580547939,550.0,15285.231315600542,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037421743131633246,11757.870242769648,2,1,2_1,2_0_1,2_4_1,2_0_1 -14588,1,52.0,100.0,2,111,350.0,180.0,0.0,85,38,0.0,0.0,483.76097965157567,1106.0,0.0,326.4575221525408,71,2,2,2,2,1,1,2,2,0,,2,,2,100761,1,3,0,1,1,804.0,0.0,348.0,42,1.0,0.0,3.0,5.0,2.4,3,3,196.839359405762,350.0,17368.876528282155,6,4,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.0636771179873997,7237.031886784232,1,1,1_1,1_0_1,1_4_1,1_0_1 -14589,2,73.0,0.0,1,300,885.0,0.0,0.0,21,71,0.0,326.0793390181292,1223.2241914046986,1410.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123302,1,2,1,0,1,,270.0,,42,1.0,5.0,6.0,2.0,1.5,1,1,1561.09493031055,885.0,20360.53726428382,1,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06925161068678688,13573.691509522547,3,2,3_0,3_1_0,3_0_0,3_1_0 -14590,2,55.0,0.0,5,111,250.0,0.0,0.0,67,65,0.0,0.0,345.54355689398267,250.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,,3,120247,2,1,0,1,1,,0.0,596.0,43,2.0,2.0,3.0,2.0,1.5,2,2,273.446979590732,250.0,42595.545439549824,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005869158322078342,28397.030293033215,8,4,8,8_0,8_4,8_0_0 -14591,0,55.0,0.0,1,300,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2046.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115432,2,1,2,0,1,,90.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1796.32373944239,0.0,9462.967516289134,0,7,5,0,70.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.21621124625843913,9462.967516289134,1,1,1_0,1_1_0,1_0_0,1_1_0 -14592,2,88.0,0.0,1,300,751.0,0.0,0.0,0,77,0.0,0.0,1038.012844909524,871.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,107781,2,1,4,0,1,,150.0,,11,0.0,7.0,4.0,1.0,1.0,2,2,1801.02583232033,751.0,16737.387149393948,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052039185819486675,16737.387149393948,4,2,4_0,4_1_0,4_0_0,4_1_0 -14593,2,46.0,0.0,2,111,430.0,400.0,0.0,0,63,0.0,0.0,594.3349178576501,1409.0,0.0,725.4611603389795,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,120168,2,1,0,1,1,69.0,0.0,324.0,12,1.0,2.0,3.0,1.0,1.0,1,1,219.989312149953,430.0,28636.275649116025,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.049203325783864445,28636.275649116025,8,4,8,8_0,8_4,8_0_1 -14594,2,63.0,0.0,5,111,350.0,120.0,0.0,56,78,0.0,0.0,483.76097965157567,595.0,0.0,217.63834810169388,50,1,2,2,1,1,2,2,2,0,,2,,3,113266,2,1,0,1,1,700.0,0.0,381.0,42,1.0,4.0,4.0,2.0,1.5,2,2,273.446979590732,350.0,18048.55129789108,4,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03296663483841631,12032.367531927388,2,1,2_0,2_0_0,2_4_0,2_0_0 -14595,2,81.0,0.0,1,300,754.0,0.0,0.0,77,77,4182.037655650402,207.03450096389156,1042.1593675922516,3754.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,111497,2,2,2,0,1,,210.0,,41,0.0,5.0,8.0,2.0,1.5,4,2,1727.43870981454,754.0,84789.20096205542,5,5,0,1,180.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044274506156508985,56526.13397470361,10,5,10,10_1,10_0,10_1_0 -14596,2,91.0,0.0,1,300,360.0,0.0,0.0,0,86,1792.3018524216009,0.0,497.582721927335,1660.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102014,2,2,4,0,2,,170.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1726.32144869794,360.0,10382.301762402805,0,5,0,1,60.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15988747370176817,10382.301762402805,2,1,2_0,2_1_0,2_0_0,2_1_0 -14597,2,54.0,0.0,2,300,1200.0,0.0,0.0,56,52,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,102383,2,2,1,0,1,,250.0,,43,2.0,6.0,4.0,3.0,2.0,1,1,1720.70051762895,1200.0,40456.6426223098,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03262752206907269,20228.3213111549,5,3,5,5_1,5_0,5_0_1 -14598,2,61.0,0.0,2,111,703.0,144.0,0.0,0,77,0.0,0.0,971.6684819858792,907.0,0.0,261.1660177220326,71,2,2,2,1,2,2,2,2,0,,2,,2,132895,2,3,0,1,1,,0.0,,31,0.0,0.0,3.0,2.0,1.5,5,5,244.756718805873,703.0,25833.733845030187,0,5,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03510913309863978,17222.489230020125,4,2,4_0,4_0_0,4_4_0,4_0_1 -14599,2,49.0,0.0,5,111,300.0,90.0,0.0,54,38,0.0,0.0,414.65226827277917,510.0,0.0,163.2287610762704,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,133693,2,1,0,1,1,936.0,0.0,566.0,43,2.0,2.0,4.0,2.0,1.5,5,5,385.846725270338,300.0,37425.08235926805,1,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013627224520287586,24950.054906178702,7,4,7,7_0,7_4,7_0_0 -14600,2,54.0,0.0,2,111,1032.0,110.0,0.0,77,46,0.0,0.0,1426.4038028583605,1142.0,0.0,199.50181909321938,70,1,2,2,1,1,2,2,2,2,20.0,2,,2,130783,2,3,0,1,1,960.0,0.0,507.0,42,1.0,2.0,5.0,3.0,2.0,2,2,198.047006668791,1032.0,54810.50791367792,5,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02083542086124356,27405.25395683896,7,4,7,7_0,7_4,7_0_1 -14601,2,71.0,0.0,1,300,300.0,0.0,0.0,77,71,1642.9433647198007,0.0,414.65226827277917,1479.0,135.90583333102515,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126436,2,2,4,0,1,,275.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,1991.85052143492,300.0,24285.338902814965,5,5,0,1,108.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06090094134237369,16190.225935209977,4,2,4_0,4_1_0,4_0_0,4_1_0 -14602,2,68.0,0.0,2,111,370.0,90.0,0.0,77,78,0.0,0.0,511.40446420309434,460.0,0.0,163.2287610762704,70,0,0,0,0,0,0,0,0,0,,2,,2,127002,2,2,0,1,1,1100.0,0.0,587.0,41,0.0,1.0,4.0,2.0,1.5,2,2,268.494299973632,370.0,40715.70317462934,5,5,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011297852281392844,27143.802116419563,7,4,7,7_0,7_4,7_0_1 -14603,2,64.0,0.0,1,300,1500.0,0.0,0.0,52,74,0.0,0.0,2073.261341363896,1731.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,104409,2,1,2,0,1,,230.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1767.22347383166,1500.0,83082.39354838227,1,5,0,1,180.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020834739179630978,55388.26236558818,10,5,10,10_1,10_0,10_1_0 -14604,2,40.0,0.0,2,111,450.0,100.0,0.0,56,52,0.0,0.0,621.9784024091688,550.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,129503,2,2,0,1,1,704.0,0.0,400.0,43,2.0,0.0,3.0,3.0,1.8,2,2,192.50213283003,450.0,40347.14637425603,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013631695161245256,22415.081319031127,6,3,6,6_0,6_4,6_0_1 -14605,1,44.0,173.0,1,300,345.0,0.0,0.0,0,85,0.0,310.55175144583734,476.85010851369606,680.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107171,2,1,1,0,1,,160.0,155.0,11,0.0,0.0,3.0,1.0,1.0,2,2,2159.70099358948,345.0,4628.175481783117,0,7,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1469261489060941,4628.175481783117,1,1,1_1,1_1_1,1_0_1,1_1_0 -14606,2,30.0,0.0,2,111,417.0,140.0,0.0,33,37,0.0,0.0,576.366652899163,557.0,0.0,253.91140611864284,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,132559,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,244.756718805873,417.0,51960.52402977577,1,1,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010719676338922474,34640.34935318385,9,5,9,9_0,9_4,9_0_1 -14607,2,48.0,0.0,1,300,1000.0,0.0,0.0,0,67,0.0,207.03450096389156,1382.1742275759307,1230.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,126159,2,2,3,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1707.11934890515,1000.0,25486.287513440628,0,1,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048261246340854415,25486.287513440628,7,4,7,7_1,7_0,7_1_0 -14608,2,66.0,0.0,2,112,310.0,0.0,0.0,0,75,0.0,0.0,428.47401054853844,335.0,43.00817510475479,0.0,50,2,1,2,1,2,2,2,2,0,,2,,2,112781,2,2,0,1,1,1100.0,0.0,316.0,11,0.0,0.0,4.0,1.0,1.0,2,2,2453.62437260474,310.0,21400.82107042606,0,5,2,3,82.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015653605013451505,21400.82107042606,6,3,6,6_0,6_0,6_0_1 -14609,2,71.0,0.0,1,112,2500.0,0.0,0.0,52,74,448.0754631054002,0.0,3455.435568939826,2830.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123812,2,1,2,0,1,,240.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1849.71706050312,2500.0,66126.6148769921,1,5,0,1,180.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04279668640628786,44084.40991799473,10,5,10,10_1,10_0,10_1_0 -14610,2,54.0,0.0,5,112,840.0,0.0,0.0,63,42,2091.018827825201,0.0,1161.0263511637818,2240.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,119388,2,1,2,0,1,,180.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1517.50289988855,840.0,51162.638460620685,4,1,0,1,90.0,7,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04378194845686278,34108.42564041379,9,5,9,9_1,9_0,9_0_0 -14611,2,49.0,0.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1118.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,117867,2,2,0,1,1,1900.0,0.0,214.0,32,1.0,2.0,3.0,2.0,1.3,1,1,344.095323280577,0.0,11465.6,0,1,2,3,40.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09750907061121965,8819.692307692309,1,1,1_0,1_0_0,1_2_0,1_1_0 -14612,2,57.0,0.0,6,112,1300.0,0.0,0.0,0,52,0.0,0.0,1796.8264958487098,1360.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,118376,2,1,2,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1725.70661828032,1300.0,21670.652461321064,0,1,0,1,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06275768588081972,21670.652461321064,6,3,6,6_1,6_0,6_0_0 -14613,2,84.0,0.0,2,112,1200.0,0.0,0.0,78,78,0.0,517.5862524097289,1658.6090730911167,1880.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119012,2,2,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1558.01392958093,1200.0,33157.8635693459,6,5,0,1,70.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056698465993389284,22105.242379563933,6,3,6,6_1,6_0,6_0_1 -14614,2,47.0,0.0,1,112,1200.0,0.0,0.0,56,64,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108230,2,1,2,0,1,,350.0,,43,2.0,2.0,8.0,5.0,2.8,2,2,1557.94042446666,1200.0,51665.254256041226,1,1,1,2,175.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02496842449680116,18451.876520014725,4,2,4_0,4_1_0,4_0_0,4_1_0 -14615,2,68.0,0.0,2,112,1900.0,0.0,0.0,0,74,0.0,41.40690019277831,2626.131032394268,1970.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132579,2,2,4,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1847.53615291099,1900.0,18700.565035824806,0,5,1,2,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10534441051519336,18700.565035824806,5,3,5,5_1,5_0,5_0_1 -14616,2,60.0,0.0,1,300,896.0,0.0,0.0,0,78,0.0,0.0,1238.4281079080338,916.0,34.40654008380383,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,127515,2,1,4,0,1,,384.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,2042.32210759936,896.0,27853.25460435856,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03288664154373764,27853.25460435856,7,4,7,7_1,7_0,7_1_0 -14617,2,81.0,0.0,2,111,365.0,469.0,0.0,77,78,0.0,0.0,504.49359306521467,834.0,0.0,850.6032104974536,10,0,0,0,0,0,0,0,0,0,,2,,2,103344,1,1,0,1,1,,0.0,505.0,41,1.0,3.0,4.0,4.0,2.5,2,2,352.127254374857,365.0,35257.395959707166,5,5,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02365461138857536,14102.958383882866,3,2,3_0,3_0_0,3_2_0,3_0_1 -14618,2,80.0,0.0,1,300,1870.0,0.0,0.0,75,75,0.0,0.0,2584.66580556699,1870.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,101394,2,2,2,0,1,,251.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1593.80017935064,1870.0,43815.11731572255,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04267933340278818,29210.0782104817,8,4,8,8_1,8_0,8_1_0 -14619,2,54.0,0.0,2,111,450.0,318.0,0.0,78,55,0.0,0.0,621.9784024091688,862.0,0.0,576.7416224694888,50,2,1,2,2,1,2,2,2,2,20.0,2,,2,126041,1,3,0,1,1,,0.0,312.0,42,2.0,0.0,4.0,4.0,2.5,2,2,348.922192382538,450.0,4628.997059465833,5,1,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.18621744384937483,1851.5988237863335,1,1,1_0,1_0_0,1_2_0,1_0_1 -14620,2,38.0,0.0,2,112,270.0,1470.0,0.0,37,43,0.0,0.0,373.1870414455012,1770.0,51.60981012570575,2666.06976424575,50,0,0,0,0,0,0,0,0,2,2.0,1,,2,105032,2,2,3,0,1,,165.0,,43,2.0,0.0,5.0,2.0,1.5,4,3,1992.02030619049,270.0,47249.40303303293,4,1,1,2,110.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037460790748246285,31499.602022021954,8,4,8,8_1,8_0,8_0_1 -14621,1,42.0,260.0,2,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,967.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,120860,2,3,1,0,1,,548.0,,32,2.0,0.0,5.0,4.0,2.3,1,1,1820.08268632285,0.0,24632.59817678891,0,1,1,2,100.0,7,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03925692259743822,10709.825294256048,2,1,2_1,2_1_1,2_0_1,2_0_1 -14622,2,49.0,0.0,2,111,0.0,0.0,323.0,0,85,0.0,0.0,165.0250071525206,323.0,0.0,369.26838521279996,50,2,1,1,1,1,2,2,2,0,,2,,2,119870,2,1,0,1,1,869.0,0.0,243.0,11,0.0,1.0,3.0,1.0,1.0,3,3,392.862038807067,0.0,12392.341919691604,0,7,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026064484186540116,12392.341919691604,2,1,2_0,2_0_0,2_2_0,2_0_1 -14623,2,49.0,0.0,2,112,500.0,1600.0,0.0,56,53,0.0,0.0,691.0871137879653,2190.0,154.82943037711726,2901.844641355918,10,2,2,2,1,2,1,2,2,2,10.0,1,,2,128789,2,3,4,0,1,,295.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,1609.9121147398,500.0,38199.28940963077,1,1,1,2,100.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05733090939246265,15279.71576385231,3,2,3_0,3_1_0,3_0_0,3_0_1 -14624,2,49.0,0.0,2,112,283.0,700.0,0.0,0,37,0.0,0.0,391.15530640398833,983.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,1,,2,121652,2,1,1,0,1,,400.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,1853.89023598352,283.0,49615.19699230482,0,1,1,2,97.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019812478022660288,33076.79799486988,8,4,8,8_1,8_0,8_0_1 -14625,0,70.0,0.0,2,112,501.0,1125.0,0.0,77,64,0.0,0.0,692.4692880155412,1626.0,0.0,2040.35951345338,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,121706,2,2,5,0,2,,245.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1798.47169004891,501.0,38591.62255464115,5,1,0,1,110.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04213349665974208,25727.748369760768,7,4,7,7_1,7_0,7_0_1 -14626,2,66.0,0.0,7,112,50.0,0.0,0.0,0,77,0.0,0.0,69.10871137879653,150.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,129306,2,1,1,0,1,,85.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,2040.43697679555,50.0,25272.914348258113,0,5,0,1,80.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005935207864554744,25272.914348258113,7,4,7,7_1,7_0,7_0_0 -14627,2,53.0,0.0,5,112,882.0,0.0,0.0,56,42,0.0,0.0,1219.0776687219707,936.0,92.89765822627035,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,102724,1,1,2,0,1,,630.0,,43,2.0,3.0,7.0,3.0,2.0,2,2,1998.51729608011,882.0,41915.21278204055,1,1,1,2,150.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02233079442700691,20957.606391020276,5,3,5,5_1,5_0,5_0_0 -14628,2,40.0,0.0,8,112,540.0,1100.0,0.0,54,48,0.0,0.0,746.3740828910024,1640.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,12.0,1,1999.0,6,132170,2,1,2,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1866.49426594968,540.0,51867.51278972844,1,1,1,2,92.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031619021460477216,22551.092517273235,6,3,6,6_1,6_0,6_0_0 -14629,2,35.0,0.0,2,111,0.0,1247.0,0.0,0,54,0.0,103.51725048194578,0.0,1789.0,0.0,2261.625167356769,10,0,0,0,0,0,0,0,0,0,,1,,2,118784,2,1,1,0,2,,400.0,,22,2.0,1.0,4.0,3.0,2.0,2,2,276.333787136442,0.0,39609.736519808255,0,1,0,1,80.0,5,4,2,0,1,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04516566271793671,19804.868259904128,5,3,5,5_1,5_2,5_0_1 -14630,2,44.0,0.0,8,112,500.0,1000.0,0.0,0,38,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,105549,2,1,2,0,1,,503.0,,32,1.0,0.0,6.0,3.0,2.0,2,2,2246.83839688629,500.0,41123.57602397896,0,1,1,2,110.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03647542711570991,20561.78801198948,5,3,5,5_1,5_0,5_0_0 -14631,2,62.0,0.0,6,112,1500.0,0.0,0.0,0,74,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,111287,2,1,2,0,1,,180.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1963.07921822456,1500.0,118398.1903585401,0,5,0,1,150.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012669112555332266,118398.1903585401,10,5,10,10_1,10_0,10_0_0 -14632,1,43.0,130.0,9,112,250.0,1430.0,0.0,0,54,0.0,0.0,345.54355689398267,1680.0,0.0,2593.523648211852,31,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,125853,2,1,1,0,1,,300.0,477.0,32,1.0,0.0,4.0,2.0,1.3,3,2,1595.04168050897,250.0,19101.841150297812,0,1,2,3,80.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08794963725126609,14693.723961767548,3,2,3_1,3_1_1,3_0_1,3_0_0 -14633,0,45.0,0.0,2,112,300.0,0.0,0.0,0,48,2987.1697540360015,0.0,414.65226827277917,2330.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,118322,2,1,1,0,2,,340.0,,12,1.0,2.0,5.0,1.0,1.0,4,4,2294.85328496944,300.0,17939.085411047796,0,1,0,1,90.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1298839905497673,17939.085411047796,4,2,4_0,4_1_0,4_0_0,4_0_1 -14634,2,62.0,0.0,7,112,600.0,0.0,0.0,77,75,0.0,445.1241770723668,829.3045365455583,1030.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,130350,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1839.49203097886,600.0,34283.68533107865,5,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03004344457292899,22855.790220719096,6,3,6,6_1,6_0,6_0_0 -14635,1,42.0,377.0,2,111,800.0,600.0,0.0,81,69,0.0,0.0,1105.7393820607444,1400.0,0.0,1088.1917405084694,42,0,0,0,0,0,0,0,0,0,,2,,2,102266,2,2,0,0,1,,440.0,332.0,43,2.0,0.0,4.0,5.0,2.4,3,2,310.885517853364,800.0,25475.398961417857,4,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054954978413499264,10614.74956725744,2,1,2_1,2_0_1,2_2_1,2_0_1 -14636,2,53.0,0.0,2,112,667.0,1455.0,0.0,56,38,0.0,4037.1727687958855,921.9102097931457,6022.0,0.0,2638.8649707330383,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,105825,2,1,1,0,1,,440.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,1935.91933893142,667.0,87555.80137390606,1,1,0,1,160.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06877899471541717,35022.32054956242,9,5,9,9_1,9_0,9_0_1 -14637,1,46.0,157.0,2,111,80.0,90.0,0.0,0,68,0.0,0.0,110.57393820607444,170.0,0.0,163.2287610762704,31,0,0,0,0,0,0,0,0,0,,2,,2,129264,2,1,0,1,1,,63.0,144.0,12,1.0,0.0,1.0,1.0,1.0,1,1,415.638100275598,80.0,12198.235204726341,0,4,2,3,27.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013936442210438082,12198.235204726341,2,1,2_1,2_0_1,2_2_1,2_0_1 -14638,2,26.0,0.0,2,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,877.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,2,119228,2,1,3,0,1,,190.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2056.95531521895,0.0,19418.436714973966,0,1,1,2,55.0,7,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045163264832937186,19418.436714973966,5,3,5,5_1,5_0,5_0_1 -14639,1,29.0,320.0,2,111,491.0,0.0,0.0,81,53,0.0,0.0,678.6475457397819,611.0,206.439240502823,0.0,41,1,2,2,2,1,2,2,2,1,10.0,2,,2,130618,1,3,0,1,1,,185.0,297.0,43,2.0,0.0,3.0,3.0,1.8,2,2,388.473726141156,491.0,19186.651572308994,4,1,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03184505632456586,10659.250873504996,2,1,2_1,2_0_1,2_2_1,2_0_1 -14640,2,55.0,0.0,1,112,10000.0,0.0,0.0,62,38,0.0,0.0,13821.742275759305,10090.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,131815,2,1,1,0,1,,230.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1979.07639001687,10000.0,102477.94529197185,1,1,1,2,115.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09846020986518017,68318.63019464789,10,5,10,10_1,10_0,10_1_0 -14641,2,31.0,0.0,9,112,1200.0,1200.0,0.0,21,43,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,131829,2,1,1,0,1,,123.0,,43,3.0,0.0,6.0,5.0,2.6,2,2,1880.76611620513,1200.0,70599.14611754361,1,1,1,2,160.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033994745432248355,27153.517737516773,7,4,7,7_1,7_0,7_0_0 -14642,2,77.0,0.0,5,112,320.0,990.0,0.0,77,78,0.0,0.0,442.2957528242978,1310.0,0.0,1795.5163718389745,71,0,0,0,0,0,0,0,0,0,,1,,3,102258,2,1,1,0,1,,202.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1742.98326187042,320.0,28184.508004334413,5,5,0,1,95.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04647943472344945,18789.67200288961,5,3,5,5_1,5_0,5_0_0 -14643,2,56.0,0.0,5,112,0.0,0.0,0.0,56,62,0.0,0.0,0.0,1711.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,3,124572,2,2,3,0,1,,256.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,1733.17088263946,0.0,38322.369359128286,1,1,1,2,98.0,7,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044647552555161736,25548.24623941886,7,4,7,7_1,7_0,7_0_0 -14644,2,29.0,0.0,5,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,433.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,112682,2,3,0,1,1,660.0,266.0,275.0,43,2.0,0.0,3.0,2.0,1.5,2,2,401.488722806439,0.0,32253.10989365,1,1,2,3,67.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013425061999532924,21502.073262433332,6,3,6,6_0,6_2,6_0_0 -14645,2,47.0,0.0,2,111,380.0,0.0,0.0,0,52,0.0,0.0,525.2262064788536,465.0,146.2277953561663,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,127550,1,2,0,1,1,600.0,200.0,346.0,32,2.0,0.0,4.0,3.0,2.0,2,2,360.737903578196,380.0,18930.666313044218,0,1,2,3,90.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02456331923613226,9465.333156522109,1,1,1_0,1_0_0,1_2_0,1_0_1 -14646,2,77.0,0.0,5,112,230.0,1280.0,0.0,77,75,0.0,0.0,317.900072342464,1932.0,0.0,2321.4757130847347,71,0,0,0,0,0,0,0,0,0,,1,,3,117039,2,1,1,0,1,,550.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1930.88528370979,230.0,38010.65816922113,5,5,0,1,90.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05082784916269678,25340.438779480755,7,4,7,7_1,7_0,7_0_0 -14647,2,59.0,0.0,2,111,150.0,0.0,0.0,0,54,0.0,0.0,207.32613413638958,150.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,111738,2,2,0,1,1,600.0,150.0,400.0,12,1.0,3.0,3.0,1.0,1.0,2,2,371.100804612026,150.0,21986.60130911115,0,1,2,3,76.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006822336835563606,21986.60130911115,6,3,6,6_0,6_2,6_0_1 -14648,1,25.0,130.0,5,111,0.0,0.0,0.0,54,55,0.0,0.0,0.0,891.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,112948,1,1,0,1,1,600.0,143.0,284.0,43,2.0,0.0,3.0,2.0,1.5,4,3,380.135497872962,0.0,28975.190208537933,4,2,2,3,52.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030750445245997203,19316.793472358622,5,3,5,5_0,5_2,5_0_0 -14649,2,58.0,0.0,8,112,400.0,900.0,0.0,52,48,0.0,258.79312620486445,552.8696910303722,1550.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,103976,2,1,1,0,1,,300.0,,43,2.0,4.0,7.0,2.0,1.5,2,2,1895.48490982319,400.0,66281.36185449242,1,1,1,2,160.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023385156198249477,44187.574569661614,10,5,10,10_1,10_0,10_0_0 -14650,2,58.0,0.0,8,112,1400.0,0.0,0.0,0,33,0.0,339.5365815807821,1935.0439186063027,1728.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,128766,2,1,2,0,1,,240.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,1979.6003964444,1400.0,42117.711132788805,0,1,1,2,99.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04102787054481565,42117.711132788805,9,5,9,9_1,9_0,9_0_0 -14651,2,53.0,0.0,7,112,1101.0,868.0,0.0,47,54,0.0,0.0,1521.7738245610994,1969.0,0.0,1574.2507179355857,70,0,0,0,0,0,0,0,0,2,10.0,1,,5,119017,2,1,3,0,1,,396.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,2001.87836169267,1101.0,71672.3132534434,4,1,0,1,96.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027472254077210243,35836.1566267217,9,5,9,9_1,9_0,9_0_0 -14653,2,33.0,0.0,5,112,1440.0,0.0,0.0,0,38,0.0,0.0,1990.33088770934,1440.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,3,115500,2,2,2,0,1,,104.0,,32,1.0,0.0,5.0,3.0,1.6,2,2,1927.73739982665,1440.0,35322.13619089551,0,1,1,2,92.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04076763625556624,22076.33511930969,6,3,6,6_1,6_0,6_0_0 -14654,2,57.0,0.0,2,111,0.0,0.0,800.0,78,78,0.0,496.8828023133397,408.73066787002006,1280.0,0.0,914.5966197221052,70,0,0,0,0,0,0,0,0,0,,1,,2,122219,2,1,2,0,1,,260.0,310.0,41,0.0,2.0,5.0,2.0,1.5,1,1,268.2893894054,0.0,33769.05429429862,5,7,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03790452610383312,22512.702862865746,6,3,6,6_1,6_2,6_0_1 -14655,2,53.0,0.0,7,112,1700.0,0.0,0.0,52,53,0.0,51.75862524097289,2349.696186879082,1810.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,104556,2,2,5,0,1,,230.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1730.69818778071,1700.0,57936.761235711856,1,1,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03124095930451023,38624.50749047457,9,5,9,9_1,9_0,9_0_0 -14656,2,34.0,0.0,2,111,0.0,0.0,1200.0,0,53,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,70,2,2,2,2,2,2,2,1,0,,1,,2,118655,2,2,2,0,1,,300.0,,22,3.0,0.0,4.0,5.0,3.0,1,1,254.929744568074,0.0,50014.27214322427,0,1,0,1,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.02399315132615743,16671.424047741424,4,2,4_0,4_1_0,4_2_0,4_0_1 -14657,2,55.0,0.0,1,112,2200.0,0.0,0.0,11,11,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121125,1,2,2,0,2,,420.0,,43,3.0,2.0,7.0,3.0,2.0,2,2,2234.30900532785,2200.0,124107.65251854356,1,1,0,1,200.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017726545908772925,62053.82625927178,10,5,10,10_1,10_0,10_1_0 -14658,2,66.0,0.0,5,112,329.0,1061.0,0.0,0,78,0.0,0.0,454.73532087248117,1390.0,0.0,1924.2857277991434,31,0,0,0,0,0,0,0,0,0,,1,,3,115990,2,1,1,0,1,,308.0,,11,0.0,2.0,4.0,1.0,1.0,4,3,2136.98223078721,329.0,22028.404380441265,0,5,0,1,90.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06310034880393621,22028.404380441265,6,3,6,6_1,6_0,6_0_0 -14659,1,30.0,279.0,2,111,350.0,1620.0,0.0,85,54,0.0,0.0,483.76097965157567,1970.0,0.0,2938.1176993728673,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,105699,2,1,0,1,1,,552.0,441.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,1,1,347.048379062498,350.0,30014.48392314066,6,1,2,3,50.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06563497826731458,11116.475527089135,2,1,2_1,2_0_1,2_2_1,2_0_1 -14660,2,51.0,0.0,5,112,1000.0,0.0,0.0,85,54,4480.754631054002,0.0,1382.1742275759307,4080.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,120524,1,2,2,0,2,,800.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,2054.03323251137,1000.0,47646.218820002076,7,1,1,2,140.0,7,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08563113928123924,31764.145880001382,8,4,8,8_1,8_0,8_0_0 -14661,2,69.0,0.0,1,111,470.0,1460.0,0.0,0,74,0.0,0.0,649.6218869606873,1930.0,0.0,2647.9332352372753,60,0,0,0,0,0,0,0,0,0,,1,,1,120996,2,1,2,0,1,,210.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,293.626824969585,470.0,40441.54217854934,0,5,0,1,80.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04772320480458073,40441.54217854934,9,5,9,9_1,9_2,9_1_0 -14662,2,60.0,0.0,9,112,1005.0,0.0,0.0,56,38,0.0,0.0,1389.08509871381,1005.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,121145,2,1,1,0,1,,268.0,,43,2.0,0.0,4.0,2.0,1.5,5,3,1906.16136111409,1005.0,36714.67643439729,1,4,0,1,103.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02737324954492679,24476.45095626486,7,4,7,7_1,7_0,7_0_0 -14663,2,46.0,0.0,8,112,900.0,0.0,0.0,35,52,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,6.0,1,2001.0,6,109759,2,1,2,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1624.74794957505,900.0,39728.75958420525,1,1,1,2,80.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022653614394691754,17273.373732263153,4,2,4_0,4_1_0,4_0_0,4_0_0 -14664,2,42.0,0.0,8,112,860.0,0.0,0.0,42,43,0.0,0.0,1188.6698357153002,1663.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,126584,2,2,2,0,1,,600.0,715.0,43,2.0,0.0,4.0,3.0,1.8,1,1,2476.3445705776,860.0,46823.37953391178,1,1,2,3,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03551644534319814,26012.98862995099,7,4,7,7_1,7_0,7_0_0 -14665,2,34.0,0.0,9,112,1600.0,0.0,0.0,37,38,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,116209,2,1,1,0,1,,370.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,2067.04144632252,1600.0,84657.5855800286,1,1,1,2,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01889966491528968,56438.39038668573,10,5,10,10_1,10_0,10_0_0 -14666,2,47.0,0.0,2,112,652.0,0.0,0.0,46,35,1941.6603401234008,1035.1725048194578,901.1775963795067,2952.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,130577,1,2,3,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,852.377899793792,652.0,63825.79161384704,1,1,1,2,135.0,10,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046250895215838764,27750.344179933498,7,4,7,7_1,7_1,7_0_1 -14667,2,57.0,0.0,9,112,900.0,1400.0,0.0,0,38,0.0,172.87380830484946,1243.9568048183376,2467.0,0.0,2539.1140611864284,12,0,0,0,0,0,0,0,0,0,,1,2007.0,6,112151,2,1,1,0,1,,600.0,,22,2.0,5.0,7.0,3.0,2.0,2,2,915.871709004539,900.0,57230.108414103204,0,1,0,1,120.0,10,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04310668052818257,28615.054207051602,8,4,8,8_1,8_1,8_0_0 -14668,1,36.0,253.0,2,111,382.0,950.0,0.0,85,68,0.0,0.0,527.9905549340054,1332.0,0.0,1722.9702558050765,31,1,2,2,1,2,2,2,2,3,60.0,1,,2,130211,2,2,2,0,2,,360.0,,42,1.0,0.0,5.0,5.0,2.4,1,1,255.667485969032,382.0,27778.17757146507,6,1,1,2,105.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.04795130985728478,11574.240654777112,2,1,2_1,2_1_1,2_2_1,2_0_1 -14669,1,59.0,230.0,2,111,0.0,300.0,0.0,0,22,0.0,0.0,0.0,300.0,0.0,544.0958702542347,60,2,2,2,2,1,2,2,2,0,,2,,2,107125,2,2,0,4,1,,288.0,300.0,12,1.0,0.0,3.0,1.0,1.0,1,1,325.949631287997,0.0,6092.283126207492,0,4,2,3,60.0,6,4,2,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,1,1,0.049242622804162584,6092.283126207492,1,1,1_1,1_0_1,1_2_1,1_0_1 -14670,2,70.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,180.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,122652,2,3,0,1,1,,1500.0,328.0,41,3.0,2.0,3.0,5.0,3.0,2,2,335.705291403304,0.0,19796.967278954544,6,5,2,3,80.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00909230173812287,6598.989092984848,1,1,1_0,1_0_0,1_2_0,1_0_1 -14671,2,76.0,0.0,1,112,2000.0,0.0,0.0,11,74,0.0,0.0,2764.3484551518613,2090.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127186,1,1,3,0,1,,190.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,846.686958656861,2000.0,57494.804542802376,5,5,0,1,115.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03635111061981411,38329.86969520158,9,5,9,9_1,9_1,9_1_0 -14672,2,44.0,0.0,7,112,960.0,0.0,0.0,21,63,2987.1697540360015,124.22070057833493,1326.8872584728933,3110.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108404,2,1,1,0,1,,418.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,834.768278220142,960.0,35022.28143739726,1,1,1,2,140.0,10,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08880061127825616,16677.276874951076,4,2,4_0,4_1_0,4_1_0,4_0_0 -14673,2,40.0,0.0,2,111,0.0,0.0,2400.0,68,85,0.0,41.40690019277831,1226.19200361006,2440.0,0.0,2743.7898591663156,50,2,2,2,1,2,2,2,2,0,,2,,2,112424,2,3,0,0,1,,500.0,396.0,42,1.0,0.0,3.0,3.0,2.0,1,1,373.008121599155,0.0,28990.10695415768,4,7,2,3,76.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.08416664360219141,14495.05347707884,3,2,3_0,3_0_0,3_2_0,3_0_1 -14674,2,51.0,0.0,2,111,0.0,0.0,0.0,52,68,0.0,0.0,0.0,90.0,154.82943037711726,0.0,10,2,2,2,2,1,2,2,2,2,90.0,2,,2,118534,2,3,0,1,2,,240.0,416.0,43,2.0,1.0,3.0,2.0,1.5,4,3,316.985680157506,0.0,45639.96368808632,1,1,2,3,80.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0019719559948618726,30426.64245872421,8,4,8,8_0,8_2,8_0_1 -14675,1,33.0,307.0,2,111,330.0,0.0,0.0,0,67,949.9199817834484,0.0,456.1174951000571,1086.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,126100,2,1,0,1,1,,120.0,423.0,32,1.0,0.0,3.0,2.0,1.3,2,2,316.173305071285,330.0,16332.510696658908,0,4,2,3,65.0,6,4,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06649314487956587,12563.469766660699,2,1,2_1,2_0_1,2_2_1,2_0_1 -14676,1,65.0,104.0,5,111,1300.0,0.0,0.0,85,78,0.0,0.0,1796.8264958487098,1624.0,557.385949357622,0.0,50,2,2,2,2,1,2,2,1,0,,2,,3,112206,2,1,0,1,1,552.0,800.0,420.0,41,0.0,4.0,5.0,4.0,2.3,1,1,312.954573905216,1300.0,23603.57038077601,6,5,2,3,100.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.06880315027775082,10262.421904685223,2,1,2_1,2_0_1,2_2_1,2_0_0 -14677,1,63.0,108.0,5,111,480.0,90.0,0.0,77,86,0.0,0.0,663.4436292364467,570.0,0.0,163.2287610762704,71,2,1,2,2,2,2,2,1,0,,2,,3,100880,2,1,0,1,1,,80.0,221.0,41,0.0,1.0,2.0,2.0,1.5,2,2,322.085633452374,480.0,12309.90255995297,7,5,2,3,45.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04630418455580185,8206.601706635314,1,1,1_1,1_0_1,1_2_1,1_0_0 -14678,1,67.0,243.0,2,111,350.0,130.0,0.0,0,78,0.0,0.0,483.76097965157567,863.0,0.0,235.77487711016835,42,2,1,2,1,2,2,2,2,0,,2,,2,133317,1,2,0,1,1,481.0,0.0,250.0,11,0.0,4.0,3.0,1.0,1.0,2,2,392.862038807067,350.0,10820.361284318635,0,5,2,3,55.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07975704113047494,10820.361284318635,2,1,2_1,2_0_1,2_2_1,2_0_1 -14679,1,83.0,197.0,2,111,180.0,120.0,0.0,0,77,0.0,0.0,248.7913609636675,882.0,0.0,217.63834810169388,71,2,1,2,2,2,2,2,1,0,,2,,2,128369,2,2,0,1,1,554.0,0.0,263.0,11,0.0,6.0,3.0,1.0,1.0,2,2,371.100804612026,180.0,11708.119266055046,0,5,2,3,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07533233817980935,11708.119266055046,2,1,2_1,2_0_1,2_2_1,2_0_1 -14680,1,38.0,245.0,2,111,230.0,0.0,0.0,0,85,0.0,0.0,317.900072342464,230.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,126188,2,2,0,1,1,792.0,0.0,232.0,11,0.0,0.0,2.0,1.0,1.0,1,1,479.84395668028,230.0,10671.624904633767,0,7,2,3,40.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02155248165629686,10671.624904633767,2,1,2_1,2_0_1,2_2_1,2_0_1 -14681,1,46.0,114.0,2,111,0.0,0.0,80.0,85,68,0.0,0.0,40.873066787002,80.0,0.0,91.45966197221051,71,0,0,0,0,0,0,0,0,0,,2,,2,106460,2,1,0,1,1,856.0,0.0,331.0,42,1.0,1.0,3.0,4.0,2.1,2,2,336.225296808088,0.0,18616.709556622944,6,4,2,3,68.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.004297214808915563,8865.099788868069,1,1,1_1,1_0_1,1_2_1,1_0_1 -14682,1,77.0,315.0,2,111,600.0,220.0,0.0,68,78,0.0,0.0,829.3045365455583,820.0,0.0,399.00363818643876,50,2,1,2,2,1,2,2,2,0,,2,,2,126105,2,1,0,1,1,1000.0,1020.0,393.0,42,3.0,0.0,5.0,6.0,3.5,2,2,338.939232606694,600.0,13753.354469356267,1,5,2,3,100.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.059621818213660895,3929.529848387505,1,1,1_1,1_0_1,1_2_1,1_0_1 -14683,1,22.0,250.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,354.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,100920,2,1,0,1,1,916.0,0.0,270.0,12,1.0,0.0,2.0,1.0,1.0,3,3,372.821308611118,0.0,14901.25962448665,0,1,2,3,50.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023756380931601633,14901.25962448665,3,2,3_1,3_0_1,3_2_1,3_0_1 -14684,2,41.0,0.0,1,112,3500.0,0.0,0.0,77,37,0.0,0.0,4837.609796515757,3675.0,301.05722573328353,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131229,1,1,3,0,1,,700.0,,42,1.0,1.0,4.0,4.0,2.3,2,2,923.811917134528,3500.0,54793.77462453205,6,1,1,2,100.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06706966302618333,23823.380271535676,6,3,6,6_1,6_1,6_1_0 -14685,2,65.0,0.0,2,111,570.0,110.0,0.0,0,77,0.0,0.0,787.8393097182804,680.0,0.0,199.50181909321938,10,2,1,2,1,2,2,2,2,0,,2,,2,120203,1,1,0,1,1,1018.0,0.0,342.0,21,0.0,4.0,4.0,2.0,1.5,2,2,357.319558429171,570.0,33146.88101018499,0,5,2,3,77.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020514750687736127,22097.920673456658,6,3,6,6_0,6_2,6_0_1 -14686,1,37.0,254.0,5,111,185.0,180.0,0.0,0,56,0.0,0.0,255.70223210154717,365.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,2,,3,110961,2,2,0,1,1,450.0,0.0,258.0,12,1.0,0.0,2.0,1.0,1.0,2,2,375.299403142422,185.0,7237.714285714285,0,4,2,3,45.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05043028580451603,7237.714285714285,1,1,1_1,1_0_1,1_2_1,1_0_0 -14687,2,33.0,0.0,1,112,2200.0,0.0,0.0,52,37,0.0,170.80346329521052,3040.783300667047,2400.0,60.21144514665671,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,112750,2,1,3,0,1,,230.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,921.804676158671,2200.0,84098.87228985612,1,1,1,2,120.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02853783807859079,40047.08204278863,9,5,9,9_1,9_1,9_1_0 -14688,2,42.0,0.0,1,112,1400.0,0.0,0.0,53,46,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,4,100.0,2,,1,103952,2,1,0,0,1,,350.0,,43,2.0,1.0,4.0,3.0,1.8,1,1,1488.97041418269,1400.0,41498.78374056361,1,1,1,2,72.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03373592847328557,23054.879855868672,6,3,6,6_0,6_1,6_1_0 -14689,1,32.0,235.0,2,111,300.0,80.0,0.0,0,85,0.0,0.0,414.65226827277917,380.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,0,,2,,2,124627,2,3,0,1,1,534.0,0.0,236.0,11,0.0,0.0,3.0,1.0,1.0,2,2,384.393876964237,300.0,11436.711098525326,0,7,2,3,65.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033226335502083114,11436.711098525326,2,1,2_1,2_0_1,2_2_1,2_0_1 -14690,1,36.0,250.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,436.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,123769,2,3,0,1,2,625.0,709.0,420.0,42,1.0,0.0,3.0,4.0,2.1,5,3,403.436678695024,0.0,21504.909141375152,6,1,2,3,64.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020274440460719825,10240.432924464358,2,1,2_1,2_0_1,2_3_1,2_0_1 -14691,2,32.0,0.0,2,111,240.0,66.0,0.0,56,53,0.0,0.0,331.72181461822333,306.0,0.0,119.70109145593163,50,2,1,1,1,1,2,2,2,2,30.0,2,,2,122910,1,2,0,1,1,952.0,240.0,307.0,43,2.0,0.0,3.0,3.0,1.8,2,2,352.099534240232,240.0,31558.8495170109,1,1,2,3,95.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009696170953096987,17532.694176117166,4,2,4_0,4_0_0,4_3_0,4_0_1 -14692,2,28.0,0.0,1,112,0.0,0.0,0.0,48,64,0.0,0.0,0.0,667.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,127234,2,2,4,0,1,,358.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,875.99384774761,0.0,47365.41385213446,1,1,1,2,76.0,10,2,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014082005112047439,31576.94256808964,8,4,8,8_1,8_1,8_1_0 -14693,2,58.0,0.0,2,111,210.0,60.0,0.0,0,52,0.0,0.0,290.25658779094545,270.0,0.0,108.81917405084694,20,2,2,2,2,1,2,2,2,3,25.0,2,,2,120914,2,1,0,1,1,845.0,123.0,299.0,12,1.0,1.0,3.0,1.0,1.0,2,2,381.544366603895,210.0,26137.024020634384,0,1,2,3,61.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010330173771384349,26137.024020634384,7,4,7,7_0,7_3,7_0_1 -14694,2,33.0,0.0,9,112,1500.0,0.0,0.0,52,69,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,127897,1,1,1,0,1,,400.0,690.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1111.27945131679,1500.0,34130.43130754898,1,1,2,3,64.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04394904906074919,18961.350726416098,5,3,5,5_1,5_1,5_0_0 -14695,2,90.0,0.0,2,111,144.0,80.0,0.0,0,77,0.0,0.0,199.033088770934,224.0,0.0,145.09223206779592,50,1,2,2,1,1,1,2,2,0,,2,,2,114302,1,2,0,1,2,,160.0,,11,0.0,0.0,4.0,1.0,1.0,5,2,400.844718366543,144.0,11286.597364806723,0,5,0,1,75.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019846548322744732,11286.597364806723,2,1,2_0,2_0_0,2_3_0,2_0_1 -14696,2,64.0,0.0,6,112,1350.0,0.0,0.0,85,74,0.0,0.0,1865.9352072275062,1400.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130809,2,1,2,0,1,,215.0,,41,0.0,3.0,8.0,2.0,1.5,4,4,869.762575579108,1350.0,82615.33001252958,5,5,0,1,160.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016946007475703042,55076.88667501972,10,5,10,10_1,10_1,10_0_0 -14697,1,47.0,137.0,2,111,0.0,120.0,0.0,0,62,0.0,0.0,0.0,303.0,0.0,217.63834810169388,71,2,2,2,1,2,1,2,2,0,,2,,2,124031,2,2,0,1,1,450.0,250.0,243.0,12,1.0,2.0,2.0,1.0,1.0,2,2,446.285787306468,0.0,12512.063765933915,0,4,2,3,40.0,8,7,2,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02421662850096446,12512.063765933915,2,1,2_1,2_0_1,2_3_1,2_0_1 -14698,1,48.0,182.0,5,111,520.0,120.0,0.0,0,55,0.0,0.0,718.7305983394839,640.0,0.0,217.63834810169388,70,2,1,2,2,1,2,2,2,3,30.0,2,,3,105971,1,1,0,1,1,1052.0,0.0,367.0,32,1.0,0.0,5.0,3.0,2.0,1,1,354.993002070922,520.0,24796.377919120147,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.025810221238260156,12398.188959560073,2,1,2_1,2_0_1,2_3_1,2_0_0 -14699,2,68.0,0.0,2,112,520.0,0.0,0.0,68,78,1365.1365775944525,0.0,718.7305983394839,1584.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109048,2,1,3,0,1,,600.0,,42,3.0,0.0,5.0,4.0,2.5,2,2,894.141589656943,520.0,63795.45256732354,1,5,0,1,86.0,10,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0248293559533636,25518.181026929415,7,4,7,7_1,7_1,7_0_1 -14700,2,85.0,0.0,2,111,0.0,0.0,452.0,78,77,0.0,0.0,230.9328273465613,452.0,0.0,516.7470901429895,70,0,0,0,0,0,0,0,0,0,,2,,2,117802,1,1,0,1,2,850.0,242.0,460.0,41,0.0,14.0,3.0,2.0,1.5,2,2,467.454186611342,0.0,38545.65873666192,5,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011726352975000253,25697.10582444128,7,4,7,7_0,7_3,7_0_1 -14701,2,36.0,0.0,2,112,300.0,0.0,0.0,0,55,0.0,0.0,414.65226827277917,1038.0,0.0,0.0,10,2,2,2,2,1,1,1,2,2,15.0,2,,2,130455,1,3,0,1,2,974.0,250.0,247.0,12,1.0,2.0,3.0,1.0,1.0,4,3,1102.32436998676,300.0,19453.18799189227,0,1,2,3,65.0,10,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.05335886336124543,19453.18799189227,5,3,5,5_0,5_1,5_0_1 -14702,1,50.0,268.0,2,111,230.0,240.0,0.0,0,52,0.0,0.0,317.900072342464,470.0,0.0,435.27669620338776,71,0,0,0,0,0,0,0,0,0,,2,,2,105117,2,1,0,1,1,44.0,460.0,256.0,12,1.0,0.0,3.0,1.0,1.0,2,2,431.52729462627,230.0,6060.0,0,4,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07755775577557755,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -14703,2,30.0,0.0,5,112,780.0,0.0,0.0,85,63,0.0,0.0,1078.0958975092258,1235.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118694,1,1,0,1,2,500.0,290.0,240.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1034.18586295221,780.0,32771.142663055034,6,1,2,3,59.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03768559469219525,15605.306030026206,3,2,3_0,3_0_0,3_1_0,3_0_0 -14704,1,34.0,270.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,268.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,116074,1,2,0,1,2,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,3,2,511.287414456972,0.0,4850.920741392376,0,4,2,3,37.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05524724362391356,4850.920741392376,1,1,1_1,1_0_1,1_3_1,1_0_1 -14705,2,40.0,0.0,5,112,0.0,0.0,0.0,62,85,0.0,0.0,0.0,1475.0,103.2196202514115,0.0,70,2,1,2,2,1,2,2,2,0,,2,,3,122093,2,1,0,1,1,780.0,300.0,313.0,42,1.0,2.0,3.0,3.0,1.8,1,1,1276.66967342622,0.0,27237.05370767688,1,7,2,3,70.0,10,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05415416864946244,15131.696504264934,3,2,3_0,3_0_0,3_1_0,3_0_0 -14706,1,45.0,59.0,2,111,417.0,0.0,0.0,0,67,0.0,0.0,576.366652899163,417.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,4.0,2,,2,126401,2,1,0,1,1,463.0,291.0,281.0,32,2.0,1.0,3.0,2.0,1.5,1,1,340.404022580864,417.0,31948.87739291831,0,1,2,3,67.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.013052101795990832,21299.251595278874,6,3,6,6_0,6_3,6_0_1 -14707,1,34.0,240.0,5,112,650.0,20.0,0.0,0,54,0.0,0.0,898.4132479243549,670.0,0.0,36.27305801694898,44,0,0,0,0,0,0,0,0,4,100.0,2,,3,119689,2,1,0,1,1,40.0,240.0,311.0,32,1.0,0.0,3.0,2.0,1.3,2,2,932.986185891047,650.0,21095.0,0,1,2,3,68.0,10,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03176108082484001,16226.923076923076,4,2,4_1,4_0_1,4_1_1,4_0_0 -14708,1,64.0,323.0,2,111,900.0,480.0,0.0,86,78,0.0,0.0,1243.9568048183376,1380.0,0.0,870.5533924067755,41,2,1,2,2,1,2,2,2,0,,2,,2,105014,2,1,0,1,1,936.0,600.0,312.0,41,0.0,3.0,4.0,5.0,2.8,1,1,358.225034616126,900.0,14319.801407355128,6,5,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.09637005156308844,5114.214788341117,1,1,1_1,1_0_1,1_3_1,1_0_1 -14709,1,55.0,192.0,5,112,800.0,0.0,0.0,85,47,112.01886577635005,0.0,1105.7393820607444,875.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,10.0,2,,3,110909,1,1,0,1,2,82.0,400.0,349.0,42,3.0,2.0,4.0,5.0,2.8,1,1,1064.81091938191,800.0,9411.225697134189,6,1,2,3,72.0,10,2,2,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09297407459545319,3361.152034690782,1,1,1_1,1_0_1,1_1_1,1_0_0 -14710,2,72.0,0.0,1,112,660.0,0.0,0.0,77,78,2389.735803228801,807.4345537591771,912.2349902001142,3140.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,112933,2,2,2,0,1,,580.0,,41,1.0,0.0,5.0,3.0,2.0,1,1,907.98286985245,660.0,50654.41354956274,5,5,0,1,111.0,10,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06198867541774363,25327.20677478137,7,4,7,7_1,7_1,7_1_0 -14711,1,77.0,84.0,2,111,103.0,0.0,0.0,0,78,0.0,0.0,142.36394544032083,120.0,29.24555907123326,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,116600,2,1,0,1,1,1036.0,0.0,259.0,11,0.0,0.0,3.0,1.0,1.0,1,1,433.468123276644,103.0,13957.164516930934,0,5,2,3,60.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008597734866163706,13957.164516930934,3,2,3_1,3_0_1,3_3_1,3_0_1 -14712,2,91.0,0.0,5,112,692.0,2260.0,0.0,0,75,0.0,0.0,956.464565482544,2952.0,0.0,4098.855555915235,70,0,0,0,0,0,0,0,0,0,,1,,3,102849,2,1,2,0,1,,270.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,892.855593310912,692.0,46380.995089408505,0,5,0,1,70.0,10,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06364675864132364,46380.995089408505,10,5,10,10_1,10_1,10_0_0 -14713,2,48.0,0.0,8,112,1200.0,0.0,0.0,56,63,0.0,493.77728479888134,1658.6090730911167,1677.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,101054,2,2,2,0,1,,490.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,938.365318081207,1200.0,31423.861090518156,1,1,0,1,90.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05336708926918018,17457.70060584342,4,2,4_0,4_1_0,4_1_0,4_0_0 -14714,2,38.0,0.0,1,112,1440.0,0.0,0.0,85,65,0.0,0.0,1990.33088770934,1540.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,130761,2,2,2,0,1,,400.0,,42,1.0,0.0,6.0,4.0,2.1,1,1,834.568315822552,1440.0,28636.779931595425,6,1,0,1,85.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053776996005786705,13636.561872188297,3,2,3_0,3_1_0,3_1_0,3_1_0 -14715,2,87.0,0.0,5,111,496.0,540.0,0.0,78,77,0.0,0.0,685.5584168776616,1036.0,0.0,979.3725664576224,50,2,1,2,1,1,2,2,2,0,,2,,3,122237,1,3,0,1,2,552.0,0.0,298.0,41,0.0,2.0,3.0,2.0,1.5,2,2,355.061521731631,496.0,36435.90137712868,5,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.028433494461325762,24290.600918085784,7,4,7,7_0,7_3,7_0_0 -14716,2,73.0,0.0,2,112,600.0,0.0,0.0,0,78,4032.679167948602,0.0,829.3045365455583,3300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123869,2,1,2,0,2,,200.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,924.287886388925,600.0,20904.60233745501,0,5,0,1,106.0,10,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15785997488636047,20904.60233745501,5,3,5,5_1,5_1,5_0_1 -14717,2,75.0,0.0,2,111,264.0,100.0,0.0,86,78,0.0,0.0,364.89399608004567,364.0,0.0,181.36529008474488,70,0,0,0,0,0,0,0,0,0,,2,,2,133352,2,1,0,1,1,763.0,0.0,362.0,41,0.0,3.0,4.0,2.0,1.5,2,2,367.96366044813,264.0,24679.030867770398,5,5,2,3,87.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014749363617651863,16452.687245180266,4,2,4_0,4_0_0,4_3_0,4_0_1 -14718,2,45.0,0.0,9,112,1200.0,0.0,0.0,45,45,0.0,0.0,1658.6090730911167,1400.0,344.06540083803833,0.0,41,2,2,2,2,1,2,2,2,3,60.0,1,2007.0,6,107803,2,1,1,0,1,,840.0,,43,2.0,0.0,5.0,7.0,3.6,4,2,816.81229735878,1200.0,52905.32055508147,1,1,1,2,75.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.026462366834020295,14695.922376411518,3,2,3_0,3_1_0,3_1_0,3_0_0 -14719,1,37.0,305.0,8,111,180.0,0.0,0.0,0,56,0.0,0.0,248.7913609636675,336.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,60.0,2,,6,104390,1,3,0,1,2,1237.0,0.0,340.0,32,1.0,0.0,5.0,3.0,1.8,2,2,363.47086825744,180.0,16683.030445184715,0,1,2,3,75.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.020140225788353755,9268.35024732484,1,1,1_1,1_0_1,1_3_1,1_0_0 -14720,1,53.0,290.0,2,111,180.0,120.0,0.0,0,64,0.0,0.0,248.7913609636675,300.0,0.0,217.63834810169388,50,2,2,2,2,2,2,2,1,2,30.0,2,,2,115488,1,3,0,1,2,612.0,0.0,266.0,32,1.0,0.0,3.0,3.0,1.8,1,1,388.9495124069,180.0,11292.662243276629,0,1,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.02656592338787185,6273.701246264794,1,1,1_1,1_0_1,1_3_1,1_0_1 -14721,1,34.0,313.0,2,111,349.0,0.0,0.0,0,56,0.0,0.0,482.3788054239998,349.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,2,123625,1,2,0,1,2,1243.0,0.0,343.0,32,1.0,0.0,4.0,3.0,1.6,1,1,352.099534240232,349.0,19601.901154283172,0,1,2,3,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017804395464148165,12251.188221426983,2,1,2_1,2_0_1,2_3_1,2_0_1 -14722,2,47.0,0.0,2,112,1700.0,0.0,0.0,56,46,0.0,890.2483541447336,2349.696186879082,2560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133262,2,1,2,0,1,,270.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,1042.12445141317,1700.0,53689.10412074417,1,1,1,2,180.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04768192805457668,19174.680043122917,5,3,5,5_1,5_0,5_0_1 -14723,1,60.0,260.0,2,111,109.0,61.0,0.0,0,77,0.0,0.0,150.65699080577645,170.0,0.0,110.63282695169438,50,0,0,0,0,0,0,0,0,0,,2,,2,100055,1,1,0,1,2,668.0,0.0,248.0,11,0.0,2.0,3.0,1.0,1.0,2,2,379.134140335182,109.0,9447.699462064666,0,6,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01799379845671433,9447.699462064666,1,1,1_1,1_0_1,1_3_1,1_0_1 -14724,1,31.0,320.0,2,111,574.0,301.0,0.0,34,55,0.0,0.0,793.3680066285841,875.0,0.0,545.9095231550821,71,2,1,2,1,1,1,2,2,0,,2,,2,107241,1,3,0,1,2,636.0,0.0,273.0,43,2.0,0.0,4.0,5.0,2.4,2,2,339.197570118581,574.0,6380.843553290417,4,4,2,3,67.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,1,0,1,0.13712920442137902,2658.684813871007,1,1,1_1,1_0_1,1_3_1,1_0_1 -14725,2,46.0,0.0,2,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,668.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,109460,1,3,0,1,2,576.0,0.0,294.0,12,1.0,3.0,4.0,1.0,1.0,2,2,359.756773255703,0.0,4716.242687188851,0,4,2,3,60.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.14163817350081406,4716.242687188851,1,1,1_0,1_0_0,1_3_0,1_0_1 -14726,2,55.0,0.0,6,112,1000.0,0.0,0.0,55,38,0.0,310.55175144583734,1382.1742275759307,1450.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124242,2,1,2,0,1,,250.0,,43,2.0,2.0,6.0,2.0,1.5,2,1,1036.48514002569,1000.0,61527.20480812745,1,1,0,1,80.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023566810885068224,41018.136538751634,9,5,9,9_1,9_0,9_0_0 -14727,1,83.0,163.0,2,111,600.0,425.0,0.0,0,77,0.0,0.0,829.3045365455583,1025.0,0.0,770.8024828601658,50,2,2,2,2,1,2,2,2,0,,2,,2,113722,1,3,0,1,2,547.0,0.0,228.0,21,1.0,5.0,3.0,2.0,1.5,2,2,355.201093560213,600.0,21258.785113593858,0,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04821536106240461,14172.523409062573,3,2,3_1,3_0_1,3_3_1,3_0_1 -14728,1,61.0,370.0,2,111,426.0,400.0,0.0,85,78,0.0,0.0,588.8062209473464,826.0,0.0,725.4611603389795,71,2,1,2,2,1,2,2,2,0,,2,,2,115343,1,2,0,1,2,866.0,0.0,336.0,41,0.0,6.0,5.0,4.0,2.3,1,1,301.237012790721,426.0,10745.353924801198,6,7,2,3,75.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07687043216822492,4671.89301078313,1,1,1_1,1_0_1,1_3_1,1_0_1 -14729,2,60.0,0.0,2,111,2000.0,0.0,0.0,34,37,0.0,51.75862524097289,2764.3484551518613,2050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,116203,2,1,2,0,1,,492.0,,43,2.0,3.0,7.0,2.0,1.5,3,2,1659.37727254697,2000.0,178613.1886670777,1,1,0,1,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011477315954652456,119075.45911138512,10,5,10,10_1,10_2,10_0_1 -14730,1,47.0,267.0,2,111,170.0,900.0,0.0,0,85,0.0,0.0,234.9696186879082,1070.0,0.0,1632.287610762704,10,0,0,0,0,0,0,0,0,0,,2,,2,103863,2,2,0,0,1,,0.0,244.0,31,0.0,3.0,4.0,2.0,1.3,4,4,333.101930529169,170.0,11314.76001495971,0,7,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09456674278423131,8703.661549969007,1,1,1_1,1_0_1,1_3_1,1_0_1 -14731,2,28.0,0.0,2,111,0.0,0.0,800.0,85,63,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,124205,1,2,0,0,2,,0.0,233.0,42,1.0,0.0,3.0,3.0,1.8,2,2,358.008993660696,0.0,21487.403247129616,6,1,2,3,39.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03723111586817116,11937.446248405342,2,1,2_0,2_0_0,2_3_0,2_0_1 -14732,1,28.0,236.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1547.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105543,1,1,0,0,1,,0.0,261.0,42,1.0,0.0,3.0,2.0,1.5,3,3,321.548518804502,0.0,6046.957107914801,6,4,2,3,45.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.25583115150182684,4031.3047386098674,1,1,1_1,1_0_1,1_3_1,1_0_1 -14733,2,28.0,0.0,2,111,660.0,0.0,0.0,46,67,0.0,0.0,912.2349902001142,895.0,0.0,0.0,10,1,2,2,2,1,2,2,2,2,25.0,2,,2,132547,2,1,0,1,2,,0.0,,43,2.0,0.0,2.0,2.0,1.5,3,2,2576.53380730094,660.0,21919.046886547538,4,1,1,2,69.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04083206740842787,14612.697924365026,3,2,3_0,3_0_0,3_2_0,3_0_1 -14734,1,41.0,252.0,2,111,215.0,273.0,0.0,0,85,0.0,0.0,297.16745892882506,488.0,0.0,495.1272419313535,43,2,2,2,2,1,2,2,2,0,,2,,2,118783,1,1,0,0,1,,0.0,228.0,31,0.0,0.0,3.0,2.0,1.3,3,3,355.201093560213,215.0,9864.079380385898,0,7,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.04947243236610173,7587.753369527613,1,1,1_1,1_0_1,1_3_1,1_0_1 -14735,2,59.0,0.0,1,111,786.0,1450.0,0.0,43,38,0.0,0.0,1086.3889428746813,2236.0,0.0,2629.7967062288008,50,2,2,2,1,2,2,1,2,2,25.0,1,,1,100368,2,3,4,0,1,,450.0,,43,2.0,2.0,8.0,3.0,2.0,2,2,328.367392941188,786.0,132059.70409213033,1,1,1,2,250.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.01693173565223252,66029.85204606516,10,5,10,10_1,10_3,10_1_0 -14736,1,94.0,172.0,6,111,0.0,0.0,700.0,0,75,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,70,0,0,0,0,0,0,0,0,0,,2,,4,108046,2,1,0,0,2,,0.0,343.0,11,0.0,3.0,2.0,1.0,1.0,1,1,399.239916667792,0.0,12149.008119901999,0,5,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.057617872429708,12149.008119901999,2,1,2_1,2_0_1,2_3_1,2_0_0 -14737,2,41.0,0.0,1,111,367.0,1128.0,0.0,0,42,0.0,0.0,507.2579415203665,1495.0,0.0,2045.8004721559223,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,115037,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2465.8165861319,367.0,48285.21990149019,0,1,1,2,75.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030961855471509633,48285.21990149019,10,5,10,10_0,10_2,10_1_0 -14738,1,41.0,157.0,6,111,450.0,600.0,0.0,85,65,0.0,0.0,621.9784024091688,1050.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,2,20.0,2,,4,123420,1,1,0,0,1,,0.0,415.0,42,1.0,0.0,3.0,4.0,2.1,1,1,342.507599571978,450.0,34713.199246820885,6,1,2,3,66.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030247860260133225,16530.094879438515,4,2,4_1,4_0_1,4_3_1,4_0_0 -14739,2,71.0,0.0,1,111,450.0,1540.0,0.0,90,77,0.0,93.1655254337512,621.9784024091688,2080.0,0.0,2793.0254673050713,31,0,0,0,0,0,0,0,0,0,,1,,1,123379,2,1,1,0,1,,954.0,,41,0.0,4.0,7.0,2.0,1.5,1,1,313.0761472212,450.0,32405.47210194927,5,5,0,1,125.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06418669024343215,21603.64806796618,6,3,6,6_1,6_3,6_1_0 -14740,2,73.0,0.0,2,111,286.0,938.0,0.0,0,77,0.0,0.0,395.3018290867161,1224.0,0.0,1701.2064209949071,50,0,0,0,0,0,0,0,0,0,,1,,2,125618,2,1,4,0,1,,120.0,403.0,11,0.0,6.0,4.0,1.0,1.0,2,2,297.794482202972,286.0,18059.07978011383,0,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06777753988040054,18059.07978011383,4,2,4_0,4_1_0,4_3_0,4_0_1 -14741,1,76.0,92.0,2,111,264.0,1215.0,0.0,0,74,0.0,0.0,364.89399608004567,1479.0,0.0,2203.5882745296503,71,0,0,0,0,0,0,0,0,0,,2,,2,124457,2,1,0,0,1,,0.0,218.0,21,0.0,0.0,4.0,2.0,1.5,2,2,352.957278472613,264.0,14175.788866675766,0,5,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10433281801175885,9450.525911117178,1,1,1_1,1_0_1,1_3_1,1_0_1 -14742,2,41.0,0.0,7,111,920.0,0.0,0.0,52,52,0.0,103.51725048194578,1271.600289369856,1020.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,20.0,2,,5,124454,1,3,0,0,1,,603.0,696.0,43,2.0,0.0,3.0,3.0,1.8,3,2,2814.40742459042,920.0,40911.773387386485,1,1,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,0,0,0,0.0249316985196852,22728.76299299249,6,3,6,6_0,6_2,6_0_0 -14743,2,72.0,0.0,7,111,800.0,0.0,0.0,75,78,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,115377,2,2,0,0,1,,193.0,,41,0.0,0.0,3.0,2.0,1.5,4,3,2190.33477711817,800.0,38490.87382144524,5,5,0,1,64.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02078414752834941,25660.582547630158,7,4,7,7_0,7_2,7_0_0 -14744,2,63.0,0.0,5,111,490.0,953.0,0.0,77,74,0.0,0.0,677.265371512206,1443.0,0.0,1728.4112145076188,71,0,0,0,0,0,0,0,0,0,,1,,3,114319,1,2,3,0,2,,648.0,,41,1.0,0.0,6.0,3.0,2.0,3,2,1885.5370056405,490.0,83451.24857666451,5,5,0,1,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017291532776461133,41725.624288332256,9,5,9,9_1,9_2,9_0_0 -14745,2,61.0,0.0,2,111,300.0,900.0,0.0,56,78,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,1,,2,132976,2,2,1,0,1,,0.0,350.0,42,1.0,3.0,4.0,2.0,1.5,2,2,282.176549128274,300.0,19678.43241194218,4,5,2,3,88.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.060980467085973794,13118.954941294787,2,1,2_0,2_1_0,2_3_0,2_0_1 -14746,2,91.0,0.0,5,111,120.0,100.0,0.0,0,77,0.0,0.0,165.86090730911167,220.0,0.0,181.36529008474488,50,2,2,2,2,1,2,2,2,0,,2,,3,108382,2,2,0,1,2,,0.0,,21,1.0,5.0,4.0,2.0,1.5,1,1,2446.73791071549,120.0,36220.45221431116,0,5,0,1,84.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0060739164353413345,24146.968142874106,6,3,6,6_0,6_2,6_0_0 -14747,2,61.0,0.0,2,111,870.0,0.0,0.0,52,74,0.0,0.0,1202.4915779910596,870.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100995,2,1,0,1,2,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,399.155421171233,870.0,17802.743575795917,1,5,0,1,71.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04886887216545804,11868.495717197278,2,1,2_0,2_0_0,2_3_0,2_0_1 -14748,1,43.0,260.0,5,111,500.0,1000.0,0.0,85,67,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,50,2,2,2,2,1,2,2,2,0,,2,,3,132089,1,3,0,1,2,,235.0,450.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,489.563010275169,500.0,26032.159000447537,7,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.05762103711698336,9641.540370536126,1,1,1_1,1_0_1,1_3_1,1_0_0 -14749,1,63.0,78.0,2,111,400.0,450.0,0.0,77,78,0.0,362.31037668681023,552.8696910303722,1200.0,0.0,816.143805381352,50,1,2,2,1,2,2,2,2,0,,2,,2,117332,2,1,0,0,1,,0.0,338.0,41,0.0,5.0,3.0,2.0,1.5,2,2,367.96366044813,400.0,14734.797834099147,7,5,2,3,64.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08143986863687874,9823.198556066098,2,1,2_1,2_0_1,2_3_1,2_0_1 -14750,1,67.0,176.0,2,211,165.0,1000.0,0.0,0,78,0.0,0.0,228.05874755002856,1165.0,0.0,1813.6529008474488,50,2,2,2,2,1,2,2,2,0,,8,,2,101151,2,2,0,0,1,,0.0,166.0,11,0.0,1.0,3.0,1.0,1.0,2,2,392.773540054772,165.0,9402.46482469047,0,5,2,3,60.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.12390368076047036,9402.46482469047,1,1,1_1,1_0_1,1_1_1,1_0_1 -14751,2,34.0,0.0,1,111,400.0,1000.0,0.0,42,35,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,1,10.0,1,,1,130326,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,1557.62852467176,400.0,49087.45601183278,1,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02852052466647534,23374.979053253704,6,3,6,6_1,6_2,6_1_0 -14752,2,50.0,0.0,6,111,240.0,0.0,0.0,0,68,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,4,128839,2,1,0,1,1,300.0,0.0,193.0,12,1.0,1.0,1.0,1.0,1.0,1,1,2362.21432182263,240.0,14510.93130382615,0,1,2,3,35.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016539255474024493,14510.93130382615,3,2,3_0,3_0_0,3_2_0,3_0_0 -14753,2,56.0,0.0,2,111,672.0,0.0,0.0,0,52,0.0,0.0,928.8210809310253,897.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,118944,1,2,0,1,2,150.0,0.0,549.0,32,2.0,1.0,3.0,2.0,1.5,2,1,2462.15021652945,672.0,37512.6902676171,0,1,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.023911908039673094,25008.460178411402,7,4,7,7_0,7_2,7_0_1 -14754,2,70.0,0.0,5,111,250.0,1269.0,0.0,0,78,0.0,0.0,345.54355689398267,1519.0,0.0,2301.5255311754127,71,0,0,0,0,0,0,0,0,0,,2,,3,100857,1,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,2365.88524953345,250.0,16941.73885198922,0,5,0,1,77.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08966021807269484,16941.73885198922,4,2,4_0,4_0_0,4_2_0,4_0_0 -14755,2,49.0,0.0,2,111,658.0,952.0,0.0,0,48,0.0,0.0,909.4706417449623,1610.0,0.0,1726.5975616067713,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,102154,2,2,3,0,1,,500.0,544.0,32,2.0,1.0,5.0,3.0,2.0,1,1,1896.50873861041,658.0,33542.7313041069,0,1,2,3,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04799847649266639,16771.36565205345,4,2,4_0,4_1_0,4_2_0,4_0_1 -14756,2,46.0,0.0,6,111,480.0,1600.0,0.0,46,46,0.0,0.0,663.4436292364467,2080.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,119333,2,2,2,0,1,,564.0,,43,2.0,1.0,6.0,4.0,2.3,3,3,248.641917975932,480.0,54519.31326752097,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03815161775412765,23704.04924674825,6,3,6,6_1,6_4,6_0_0 -14757,2,48.0,0.0,2,111,444.0,408.0,0.0,0,85,0.0,0.0,613.6853570437131,902.0,86.01635020950958,739.9703835457592,43,2,2,2,1,2,2,2,2,0,,2,,2,105660,2,2,0,3,1,,384.0,298.0,11,0.0,0.0,1.0,1.0,1.0,2,2,2154.42094806742,444.0,15791.522750302327,0,7,2,3,48.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05711925406197647,15791.522750302327,3,2,3_0,3_0_0,3_2_0,3_0_1 -14758,2,62.0,0.0,2,111,495.0,967.0,0.0,77,48,0.0,0.0,684.1762426500857,1462.0,0.0,1753.802355119483,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,105624,1,2,3,0,2,,380.0,247.0,42,1.0,1.0,3.0,2.0,1.5,2,2,1394.96536879186,495.0,34743.96517726605,7,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04207925009539865,23162.6434515107,6,3,6,6_1,6_2,6_0_1 -14759,2,86.0,0.0,1,212,2180.0,0.0,0.0,77,78,0.0,0.0,3013.1398161155284,2420.0,412.878481005646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118249,1,2,3,0,1,,420.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,1181.8251540833,2180.0,22812.400649303934,5,5,0,1,70.0,3,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10608265378128191,15208.267099535957,3,2,3_0,3_1_0,3_0_0,3_1_0 -14760,2,32.0,0.0,1,111,810.0,210.0,0.0,0,55,0.0,0.0,1119.5611243365038,1020.0,0.0,380.86710917796427,50,0,0,0,0,0,0,0,0,0,,2,,1,130408,2,1,0,1,1,,0.0,471.0,22,1.0,5.0,4.0,3.0,2.0,2,2,203.327515819001,810.0,18483.611683078918,0,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.055184020173599156,9241.805841539459,1,1,1_0,1_0_0,1_4_0,1_1_0 -14761,2,57.0,0.0,7,212,1200.0,0.0,0.0,62,62,0.0,517.5862524097289,1658.6090730911167,1796.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,102246,2,1,2,0,1,,200.0,,43,4.0,2.0,4.0,4.0,2.5,1,1,1195.85361001942,1200.0,60722.88232514793,4,1,1,2,96.0,3,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02957698862816003,24289.152930059172,7,4,7,7_1,7_0,7_0_0 -14762,2,42.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,128087,2,2,0,1,1,,192.0,,32,1.0,0.0,3.0,3.0,1.8,2,2,241.203921244674,0.0,34396.77110236167,0,1,1,2,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019187847546384508,19109.317279089817,5,3,5,5_0,5_4,5_0_1 -14763,2,22.0,0.0,7,111,0.0,0.0,0.0,43,68,0.0,0.0,0.0,779.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,100011,2,1,0,0,2,,432.0,540.0,43,2.0,0.0,2.0,2.0,1.5,2,2,508.190429537943,0.0,7681.31707808365,1,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10141489956489942,5120.878052055767,1,1,1_0,1_0_0,1_4_0,1_0_0 -14764,2,51.0,0.0,1,212,720.0,0.0,0.0,54,67,1418.9056331671006,0.0,995.16544385467,2061.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,109387,2,1,2,0,1,,450.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1282.64653879649,720.0,42202.71323976966,1,1,0,1,120.0,3,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04883572267713394,28135.14215984644,8,4,8,8_1,8_0,8_1_0 -14765,2,57.0,0.0,6,111,338.0,0.0,0.0,0,75,0.0,0.0,467.17488892066456,338.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,104679,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,351.150202044303,338.0,19900.136117144364,0,5,0,1,99.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016984808446049084,19900.136117144364,5,3,5,5_0,5_4,5_0_0 -14766,1,36.0,241.0,7,111,350.0,0.0,0.0,0,43,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,5,128260,2,1,0,1,1,572.0,0.0,571.0,32,1.0,0.0,4.0,2.0,1.3,1,1,331.022599118197,350.0,19578.21576360209,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017877012094773513,15060.165972001607,3,2,3_1,3_0_1,3_4_1,3_0_0 -14767,2,53.0,0.0,5,111,411.0,0.0,0.0,55,48,0.0,0.0,568.0736075337074,411.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,117246,1,1,0,1,1,,0.0,,43,2.0,3.0,5.0,4.0,2.3,2,2,334.674277951988,411.0,47911.573819138815,1,1,1,2,116.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008578303053693916,20831.119051799487,5,3,5,5_0,5_4,5_0_0 -14768,1,41.0,357.0,5,111,570.0,0.0,0.0,85,68,0.0,0.0,787.8393097182804,570.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,112518,1,2,0,1,1,912.0,0.0,445.0,42,1.0,0.0,4.0,5.0,2.4,1,1,231.665141978935,570.0,26212.348637464907,6,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021745476068684197,10921.811932277045,2,1,2_1,2_0_1,2_4_1,2_0_0 -14769,1,36.0,284.0,7,111,300.0,0.0,0.0,85,63,0.0,0.0,414.65226827277917,300.0,0.0,0.0,60,2,1,2,2,1,2,2,2,3,15.0,2,,5,116390,2,2,0,1,1,1080.0,0.0,444.0,42,1.0,0.0,3.0,3.0,1.8,1,1,308.87462176268,300.0,17345.363588967866,6,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.017295688179797417,9636.313104982148,1,1,1_1,1_0_1,1_4_1,1_0_0 -14770,2,33.0,0.0,5,212,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1856.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,127279,2,1,2,0,1,,477.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1276.64261945476,0.0,35415.241434411,1,1,1,2,93.0,3,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05240681482963516,19675.134130228333,5,3,5,5_1,5_0,5_0_0 -14771,2,70.0,0.0,2,400,1080.0,0.0,0.0,0,77,0.0,207.03450096389156,1492.748165782005,1430.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121101,2,1,2,0,1,,110.0,,21,0.0,1.0,4.0,2.0,1.5,1,1,1163.58931531618,1080.0,32334.168387851685,0,5,0,1,84.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044225661932819876,21556.11225856779,6,3,6,6_1,6_0,6_0_1 -14772,1,39.0,250.0,2,111,1600.0,0.0,0.0,67,56,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,60.0,2,,2,119741,1,3,0,0,2,,0.0,900.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,270.558516505931,1600.0,40827.41371744435,1,1,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03918935475739839,15702.851429786291,3,2,3_1,3_0_1,3_4_1,3_0_1 -14773,2,65.0,0.0,1,400,771.0,0.0,0.0,78,78,1699.6995900464847,207.03450096389156,1065.6563294610426,2196.0,149.6684493645467,0.0,50,0,0,0,0,0,0,0,0,0,,3,,1,118102,1,2,0,0,1,,276.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1195.90813243372,771.0,37463.86615850654,5,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.058616481030252035,24975.910772337695,7,4,7,7_0,7_0,7_1_0 -14774,2,39.0,0.0,7,111,350.0,0.0,0.0,0,65,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,120051,2,1,0,1,1,594.0,0.0,602.0,12,1.0,1.0,2.0,1.0,1.0,2,2,523.230919856211,350.0,12656.94777032443,0,4,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027652796420683072,12656.94777032443,2,1,2_0,2_0_0,2_4_0,2_0_0 -14775,2,25.0,0.0,1,400,800.0,0.0,0.0,63,63,0.0,148.02966818918247,1105.7393820607444,1033.0,154.82943037711726,0.0,60,2,2,2,2,1,2,2,2,2,30.0,1,,1,115291,2,3,1,0,1,,340.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,1158.42126620105,800.0,29760.0,1,1,1,2,72.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03471102150537635,19840.0,5,3,5,5_1,5_0,5_1_0 -14776,2,58.0,0.0,6,111,1410.0,0.0,0.0,46,47,0.0,0.0,1948.865660882062,1410.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,117725,2,1,1,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,259.92391510032,1410.0,57489.24097728962,1,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024526328336062084,38326.160651526414,9,5,9,9_1,9_4,9_0_0 -14777,2,70.0,0.0,2,400,960.0,0.0,0.0,71,71,0.0,517.5862524097289,1326.8872584728933,1550.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102846,2,2,2,0,2,,400.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1147.11098290735,960.0,24601.75861073858,5,5,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0630036260628714,16401.172407159054,4,2,4_0,4_1_0,4_0_0,4_0_1 -14778,1,50.0,262.0,5,111,479.0,0.0,0.0,0,56,0.0,0.0,662.0614550088708,479.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,119869,1,1,0,1,2,783.0,0.0,442.0,32,2.0,1.0,3.0,2.0,1.5,2,1,273.446979590732,479.0,19402.96000217494,0,1,2,3,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02468695497729766,12935.306668116626,2,1,2_1,2_0_1,2_4_1,2_0_0 -14779,2,77.0,0.0,1,400,553.0,0.0,0.0,90,75,3496.4821970991397,0.0,764.3423478494896,3079.0,318.26049577518546,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,130812,1,1,2,0,2,,160.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1216.3164441293,553.0,27236.356424519097,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11304742646223337,18157.570949679397,4,2,4_0,4_1_0,4_0_0,4_1_0 -14780,2,48.0,0.0,1,300,500.0,0.0,0.0,63,56,2091.018827825201,0.0,691.0871137879653,1996.0,165.1513924022584,0.0,71,2,2,2,1,1,2,2,2,2,30.0,1,,1,130607,2,3,3,0,1,,200.0,493.0,43,2.0,1.0,4.0,2.0,1.5,2,2,1443.70671338399,500.0,36171.12040758903,1,1,2,3,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.05518214469190789,24114.08027172602,6,3,6,6_1,6_0,6_1_0 -14781,2,81.0,0.0,1,300,600.0,0.0,0.0,11,71,1493.5848770180007,558.9931526025072,829.3045365455583,2332.0,330.3027848045168,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,100427,1,3,3,0,2,,100.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1096.95541933769,600.0,23643.003729076667,1,5,0,1,110.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09863382955576228,15762.002486051111,3,2,3_0,3_1_0,3_0_0,3_1_0 -14782,2,38.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,875.0,0.0,0.0,71,2,1,2,2,1,2,2,2,1,2.0,2,,3,101547,1,2,0,1,1,,0.0,300.0,32,1.0,0.0,4.0,4.0,2.1,1,1,316.464986746677,0.0,36063.53955246721,0,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02426273213495869,17173.114072603435,4,2,4_0,4_0_0,4_4_0,4_0_0 -14783,2,79.0,0.0,5,300,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1547.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,121632,1,2,2,0,2,,509.0,500.0,11,0.0,3.0,3.0,1.0,1.0,4,3,1308.6112759421,0.0,15266.350255158912,0,5,2,3,60.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10133397794127165,15266.350255158912,3,2,3_0,3_1_0,3_0_0,3_0_0 -14784,2,45.0,0.0,1,300,600.0,0.0,0.0,52,67,1792.3018524216009,207.03450096389156,829.3045365455583,2032.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,111973,2,2,2,0,2,,185.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1128.26606237325,600.0,32509.856443821358,1,1,1,2,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06250412097363138,14134.72019296581,3,2,3_0,3_1_0,3_0_0,3_1_0 -14785,2,67.0,0.0,2,111,239.0,0.0,0.0,0,77,0.0,0.0,330.3396403906474,762.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,102356,2,1,0,1,1,768.0,0.0,398.0,11,0.0,4.0,3.0,1.0,1.0,2,2,236.999354504941,239.0,17084.425669859906,0,5,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.044602026121621945,17084.425669859906,4,2,4_0,4_0_0,4_4_0,4_0_1 -14786,2,49.0,0.0,2,111,477.0,410.0,0.0,52,63,0.0,0.0,659.2971065537189,887.0,0.0,743.5976893474541,31,0,0,0,0,0,0,0,0,0,,2,,2,108145,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,254.747260852712,477.0,50091.24570221582,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017707684996956723,25045.62285110791,7,4,7,7_0,7_4,7_0_1 -14787,2,69.0,0.0,1,300,1150.0,0.0,0.0,78,74,0.0,465.827627168756,1589.5003617123202,2570.0,1668.717194064486,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106484,2,2,2,0,1,,260.0,,41,0.0,1.0,7.0,2.0,1.5,1,1,1130.66739973603,1150.0,69542.01802710918,5,5,0,1,160.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03695607451308288,46361.34535140612,10,5,10,10_1,10_0,10_1_0 -14788,2,59.0,0.0,2,111,410.0,141.0,0.0,85,43,0.0,0.0,566.6914333061316,551.0,0.0,255.7250590194903,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,117759,2,1,0,1,1,408.0,0.0,450.0,42,2.0,5.0,5.0,4.0,2.3,1,1,180.506228688365,410.0,18149.87753682029,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03035833155800624,7891.251102965345,1,1,1_0,1_0_0,1_4_0,1_0_1 -14789,2,69.0,0.0,1,400,500.0,0.0,0.0,71,71,2987.1697540360015,207.03450096389156,691.0871137879653,2700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117134,2,1,3,0,1,,722.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1216.17270664776,500.0,176667.73579079806,5,5,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015282926381063816,117778.49052719871,10,5,10,10_1,10_0,10_1_0 -14790,2,45.0,0.0,2,111,155.0,120.0,0.0,0,37,0.0,0.0,214.23700527426922,275.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,2,122725,2,1,0,1,1,869.0,0.0,335.0,12,1.0,1.0,3.0,1.0,1.0,2,2,219.989312149953,155.0,118663.6988819529,0,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0023174736890139505,118663.6988819529,10,5,10,10_0,10_4,10_0_1 -14791,2,33.0,0.0,2,111,200.0,100.0,0.0,0,68,0.0,0.0,276.4348455151861,300.0,0.0,181.36529008474488,30,2,2,2,2,1,2,2,1,0,,2,,2,102480,1,2,0,1,1,407.0,0.0,650.0,12,1.0,0.0,2.0,1.0,1.0,2,2,310.4407469073,200.0,5177.878704109885,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.057938784808125816,5177.878704109885,1,1,1_0,1_0_0,1_4_0,1_0_1 -14792,0,68.0,0.0,1,400,380.0,0.0,0.0,0,71,0.0,289.84830134944815,525.2262064788536,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122934,2,2,4,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1347.43083640513,380.0,9632.926851251308,0,5,5,0,54.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06851500174261851,9632.926851251308,1,1,1_0,1_1_0,1_0_0,1_1_0 -14793,2,76.0,0.0,2,111,400.0,72.0,0.0,77,78,0.0,0.0,552.8696910303722,472.0,0.0,130.5830088610163,71,0,0,0,0,0,0,0,0,0,,2,,2,130403,2,1,0,1,1,,0.0,544.0,41,0.0,2.0,3.0,2.0,1.5,1,1,195.337580547939,400.0,31418.78781550046,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01502285838561661,20945.85854366697,5,3,5,5_0,5_4,5_0_1 -14795,2,49.0,0.0,2,300,240.0,0.0,0.0,0,42,2240.377315527001,207.03450096389156,331.72181461822333,1970.0,51.60981012570575,0.0,42,0,0,0,0,0,0,0,0,2,6.0,1,,2,124740,2,2,3,0,1,,220.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1156.60530277878,240.0,31312.93101636121,0,1,0,1,77.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06291330565543872,31312.93101636121,8,4,8,8_1,8_0,8_0_1 -14796,1,58.0,478.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,836.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,131894,2,1,0,1,2,852.0,0.0,448.0,42,2.0,0.0,4.0,4.0,2.5,2,2,261.694829109766,0.0,13357.562879028575,6,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06258626723835402,5343.02515161143,1,1,1_1,1_0_1,1_4_1,1_0_1 -14797,2,35.0,0.0,2,111,395.0,72.0,0.0,65,46,0.0,0.0,545.9588198924926,467.0,0.0,130.5830088610163,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,112887,1,3,0,1,1,,0.0,674.0,43,2.0,0.0,4.0,5.0,2.4,1,1,176.162515171569,395.0,35792.65878900356,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013047368253723431,14913.607828751483,3,2,3_0,3_0_0,3_4_0,3_0_1 -14798,2,62.0,0.0,8,300,1500.0,0.0,0.0,0,72,0.0,414.0690019277831,2073.261341363896,1950.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,108327,2,1,1,0,1,,130.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1162.0596233535,1500.0,13947.209932199552,0,5,0,1,132.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13981290949798403,13947.209932199552,3,2,3_0,3_1_0,3_0_0,3_0_0 -14799,2,46.0,0.0,2,111,250.0,140.0,0.0,38,22,0.0,0.0,345.54355689398267,390.0,0.0,253.91140611864284,70,0,0,0,0,0,0,0,0,0,,2,,2,129211,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,245.42987755535,250.0,35930.135370582466,4,4,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010854398292061812,17109.588271705936,4,2,4_0,4_0_0,4_4_0,4_0_1 -14800,2,44.0,0.0,1,300,530.0,0.0,0.0,85,62,2554.030139700781,0.0,732.5523406152432,2240.0,0.0,0.0,50,1,2,2,2,1,2,2,2,2,25.0,1,,1,111845,2,1,2,0,1,,390.0,,42,1.0,1.0,5.0,3.0,2.0,2,2,1309.8722945795,530.0,45468.01705118626,6,1,1,2,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04926539896117063,22734.00852559313,6,3,6,6_1,6_0,6_1_0 -14801,2,46.0,0.0,2,111,650.0,170.0,0.0,0,56,0.0,0.0,898.4132479243549,820.0,0.0,308.32099314406634,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,125807,2,1,0,1,1,,0.0,560.0,32,1.0,0.0,3.0,4.0,2.3,1,1,197.421110507697,650.0,16871.02097862589,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.048604053129853164,7335.226512446039,1,1,1_0,1_0_0,1_4_0,1_0_1 -14802,2,45.0,0.0,7,300,1300.0,0.0,0.0,85,64,0.0,25.879312620486445,1796.8264958487098,1415.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,111477,2,1,2,0,1,,400.0,,42,1.0,1.0,4.0,3.0,2.0,2,2,1371.23780269223,1300.0,24729.13871646812,6,1,1,2,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057219946728581175,12364.56935823406,2,1,2_0,2_1_0,2_0_0,2_0_0 -14803,2,89.0,0.0,2,111,205.0,0.0,0.0,0,75,0.0,0.0,283.3457166530658,205.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,2,131974,2,1,0,1,1,,480.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,291.122357260088,205.0,24362.359242443872,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008414620191744441,24362.359242443872,7,4,7,7_0,7_4,7_0_1 -14804,2,57.0,0.0,6,300,500.0,0.0,0.0,78,64,0.0,248.44140115666985,691.0871137879653,872.0,227.0831645531053,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,113479,2,1,3,0,1,,250.0,,42,2.0,2.0,4.0,3.0,2.0,3,2,1221.17326227967,500.0,44115.792480563825,6,1,0,1,78.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019766164245699058,22057.896240281912,6,3,6,6_1,6_0,6_0_0 -14805,2,46.0,0.0,2,111,480.0,77.0,0.0,52,52,0.0,0.0,663.4436292364467,557.0,0.0,139.65127336525356,71,1,2,2,1,1,2,2,2,2,15.0,2,,2,129150,1,1,0,1,1,,0.0,680.0,43,2.0,0.0,4.0,4.0,2.1,2,2,208.506092590926,480.0,40826.08679983377,1,1,2,3,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013643237539049858,19440.993714206557,5,3,5,5_0,5_4,5_0_1 -14806,2,48.0,0.0,7,300,732.0,0.0,0.0,55,55,0.0,0.0,1011.7515345855811,2365.0,2809.293997842583,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,118357,2,1,2,0,1,,515.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,1241.86555689975,732.0,69229.81571464278,1,1,1,2,117.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034161581618940805,27691.926285857113,7,4,7,7_1,7_0,7_0_0 -14807,2,46.0,0.0,2,111,200.0,0.0,0.0,84,63,0.0,0.0,276.4348455151861,990.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104016,2,1,0,1,1,,0.0,364.0,42,1.0,0.0,3.0,3.0,1.8,3,3,204.91591177604,200.0,30605.476994996618,3,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032347151464486086,17003.04277499812,4,2,4_0,4_0_0,4_4_0,4_0_1 -14808,2,32.0,0.0,1,300,0.0,0.0,0.0,63,43,0.0,0.0,0.0,1243.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,117199,1,1,4,0,1,,158.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1205.64111773584,0.0,41569.62146208345,1,1,1,2,70.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029901643466582133,27713.0809747223,7,4,7,7_1,7_0,7_1_0 -14809,2,35.0,0.0,1,300,780.0,0.0,0.0,54,37,746.7924385090004,517.5862524097289,1078.0958975092258,1810.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,105556,2,1,1,0,1,,270.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1229.09799422954,780.0,54156.30699693373,1,1,1,2,140.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033421776712036146,25788.71761758749,7,4,7,7_1,7_0,7_1_0 -14810,2,80.0,0.0,2,111,250.0,150.0,0.0,0,90,0.0,0.0,345.54355689398267,400.0,0.0,272.04793512711734,60,0,0,0,0,0,0,0,0,0,,2,,2,132574,2,1,0,1,1,779.0,0.0,399.0,11,0.0,3.0,4.0,1.0,1.0,3,3,240.92088844733,250.0,17599.045010762355,0,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02272850599310291,17599.045010762355,4,2,4_0,4_0_0,4_4_0,4_0_1 -14811,2,59.0,0.0,1,300,1061.0,96.0,0.0,62,52,0.0,248.44140115666985,1466.4868554580623,1397.0,0.0,174.11067848135508,50,0,0,0,0,0,0,0,0,4,180.0,1,,1,113444,2,1,2,0,1,,414.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1147.11098290735,1061.0,45324.5578757089,1,1,0,1,55.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030822142906080142,30216.37191713927,8,4,8,8_1,8_0,8_1_0 -14812,2,58.0,0.0,2,111,150.0,100.0,0.0,0,47,0.0,0.0,207.32613413638958,250.0,0.0,181.36529008474488,71,2,2,2,2,2,2,2,1,2,35.0,2,,2,127164,2,2,0,1,1,696.0,0.0,334.0,22,2.0,2.0,4.0,2.0,1.5,2,2,219.609488567493,150.0,50288.752127291766,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.004971290585361825,33525.834751527844,8,4,8,8_0,8_4,8_0_1 -14813,2,57.0,0.0,1,300,790.0,0.0,0.0,56,62,746.7924385090004,0.0,1091.917639784985,1538.0,426.64109703916756,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,122017,2,2,1,0,1,,288.0,,43,2.0,1.0,4.0,2.0,1.5,4,4,1186.71731109365,790.0,33714.55164715898,1,1,0,1,89.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04561828423809404,22476.367764772654,6,3,6,6_1,6_0,6_1_0 -14814,1,46.0,215.0,2,111,700.0,0.0,0.0,0,21,0.0,0.0,967.5219593031513,894.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102255,2,1,0,1,1,,0.0,511.0,32,2.0,1.0,4.0,2.0,1.5,2,2,219.609488567493,700.0,23357.710985624137,0,1,2,3,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038274298391234744,15571.807323749425,3,2,3_1,3_0_1,3_4_1,3_0_1 -14815,2,61.0,0.0,1,300,1560.0,0.0,0.0,0,74,0.0,41.40690019277831,2156.1917950184516,1615.0,25.804905062852875,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,121685,2,2,3,0,1,,340.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1364.93495507605,1560.0,31631.783276278195,0,5,0,1,64.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05105624257394133,31631.783276278195,8,4,8,8_1,8_0,8_1_0 -14816,1,38.0,78.0,2,111,618.0,0.0,0.0,52,46,0.0,0.0,854.1836726419251,618.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,2,124373,2,2,0,1,1,,0.0,480.0,43,2.0,0.0,5.0,4.0,2.1,2,2,208.506092590926,618.0,43297.01462334386,1,1,2,3,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014273501426742745,20617.62601111612,5,3,5,5_0,5_4,5_0_1 -14817,2,49.0,0.0,1,300,515.0,0.0,0.0,0,67,0.0,517.5862524097289,711.8197272016042,1015.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,110680,2,1,4,0,1,,150.0,,22,1.0,5.0,4.0,2.0,1.5,1,1,1065.49076488412,515.0,29704.278120288334,0,1,0,1,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03417016215272858,19802.852080192224,5,3,5,5_1,5_0,5_1_0 -14818,2,70.0,0.0,2,111,380.0,100.0,0.0,78,75,0.0,0.0,525.2262064788536,480.0,0.0,181.36529008474488,41,0,0,0,0,0,0,0,0,0,,2,,2,126817,2,1,0,1,1,297.0,0.0,441.0,41,0.0,2.0,4.0,2.0,1.5,1,1,219.609488567493,380.0,23159.6076298221,5,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0207257397306643,15439.738419881402,3,2,3_0,3_0_0,3_4_0,3_0_1 -14819,2,41.0,0.0,2,111,470.0,0.0,0.0,0,56,0.0,0.0,649.6218869606873,502.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,130217,2,1,0,1,1,720.0,210.0,244.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1481.47960616683,470.0,16988.531268537154,0,1,2,3,45.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029549346677761754,16988.531268537154,4,2,4_0,4_0_0,4_2_0,4_0_1 -14820,2,22.0,0.0,2,111,650.0,60.0,0.0,0,63,0.0,310.55175144583734,898.4132479243549,1010.0,0.0,108.81917405084694,70,1,2,2,1,1,2,2,2,0,,2,,2,107588,2,2,0,1,1,276.0,0.0,349.0,22,2.0,0.0,3.0,2.0,1.5,2,2,207.934207448233,650.0,39747.49981376454,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02541040328907021,26498.33320917636,7,4,7,7_0,7_4,7_0_1 -14821,1,52.0,176.0,2,111,600.0,0.0,0.0,81,46,0.0,207.03450096389156,829.3045365455583,800.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,102347,2,2,0,1,1,192.0,0.0,301.0,43,2.0,1.0,2.0,2.0,1.5,1,1,219.627415201535,600.0,17149.163750382555,4,4,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04664950499304399,11432.77583358837,2,1,2_1,2_0_1,2_4_1,2_0_1 -14822,2,79.0,0.0,6,111,808.0,0.0,0.0,0,77,0.0,0.0,1116.796775881352,808.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,122525,2,2,0,0,1,,0.0,481.0,11,0.0,2.0,3.0,1.0,1.0,2,2,448.258918844315,808.0,34739.68431324531,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02325870300703715,34739.68431324531,9,5,9,9_0,9_4,9_0_0 -14823,1,59.0,426.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,620.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,2,,2,100770,2,2,0,1,2,1020.0,802.0,296.0,42,3.0,0.0,4.0,11.0,5.199999999999999,1,1,223.724833043382,0.0,43300.949079685284,6,1,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014318392856910245,8327.105592247171,1,1,1_1,1_0_1,1_4_1,1_0_1 -14824,2,83.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1254.0,56.77079113827632,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,121952,2,1,0,1,1,575.0,178.0,316.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1501.23333610558,0.0,18747.96328285801,0,5,2,3,70.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06688726562349206,18747.96328285801,5,3,5,5_0,5_2,5_0_0 -14825,2,64.0,0.0,2,111,500.0,0.0,0.0,77,77,0.0,0.0,691.0871137879653,620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,119436,2,3,0,1,1,1143.0,0.0,337.0,41,1.0,1.0,5.0,3.0,2.0,2,2,216.421718853938,500.0,40043.42898583495,5,5,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015483189519541899,20021.714492917476,5,3,5,5_0,5_4,5_0_1 -14826,2,64.0,0.0,2,111,1000.0,0.0,0.0,85,78,3584.6037048432017,0.0,1382.1742275759307,3400.0,0.0,0.0,71,1,2,2,1,1,2,2,2,0,,1,,2,123743,1,2,2,0,2,,1100.0,,41,4.0,4.0,6.0,7.0,4.0,1,1,305.395130965167,1000.0,45997.76546092588,6,5,0,1,100.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07391663412189506,11499.44136523147,2,1,2_0,2_1_0,2_2_0,2_0_1 -14827,1,34.0,456.0,2,111,300.0,150.0,0.0,0,54,0.0,0.0,414.65226827277917,741.0,0.0,272.04793512711734,20,2,2,2,1,2,2,2,2,0,,2,,2,124097,2,1,0,1,1,906.0,0.0,421.0,32,1.0,0.0,4.0,4.0,1.9,1,1,208.506092590926,300.0,17918.434498084407,0,4,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,1,0.041354059143906656,9430.754998991793,1,1,1_1,1_0_1,1_4_1,1_0_1 -14828,1,58.0,140.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,904.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,,2,120277,2,1,0,1,1,585.0,427.0,310.0,32,2.0,4.0,4.0,2.0,1.5,2,2,320.516521267339,0.0,22131.887476209762,0,1,2,3,71.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04084604175634532,14754.591650806507,3,2,3_1,3_0_1,3_2_1,3_0_1 -14829,2,29.0,0.0,2,111,0.0,0.0,0.0,54,67,0.0,0.0,0.0,413.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,3.0,2,,2,132483,1,2,0,1,1,96.0,498.0,249.0,43,2.0,0.0,3.0,3.0,1.8,2,2,402.738838226314,0.0,27576.616740794223,4,1,2,3,60.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014976456462443673,15320.342633774568,3,2,3_0,3_0_0,3_2_0,3_0_1 -14830,2,49.0,0.0,2,111,1000.0,0.0,0.0,52,47,0.0,0.0,1382.1742275759307,1262.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,2,108484,1,2,4,1,1,600.0,1000.0,533.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,1,1,145.375447774566,1000.0,63456.74979728405,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019887561276483997,20469.91928944647,5,3,5,5_1,5_4,5_0_1 -14831,2,58.0,0.0,2,111,300.0,0.0,0.0,0,63,0.0,0.0,414.65226827277917,1508.0,0.0,0.0,42,2,1,2,1,1,2,2,2,1,15.0,2,,2,128072,2,2,0,1,1,606.0,38.0,249.0,12,1.0,1.0,3.0,1.0,1.0,1,1,378.567466881137,300.0,16776.498995790567,0,1,2,3,65.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.08988764582994199,16776.498995790567,4,2,4_0,4_0_0,4_2_0,4_0_1 -14832,1,65.0,162.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,76.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,105755,2,2,0,1,1,1884.0,0.0,284.0,11,0.0,1.0,3.0,1.0,1.0,1,1,234.175641679745,0.0,10502.81324371088,0,5,2,3,52.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007236156469363964,10502.81324371088,2,1,2_1,2_0_1,2_4_1,2_0_1 -14833,2,34.0,0.0,2,111,300.0,200.0,0.0,0,46,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,41,2,2,2,2,1,2,2,2,0,,2,,2,118815,1,3,0,1,1,360.0,400.0,216.0,12,1.0,0.0,2.0,1.0,1.0,2,2,404.242993822239,300.0,28696.176121537275,0,1,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01742392428462746,28696.176121537275,8,4,8,8_0,8_2,8_0_1 -14834,1,58.0,270.0,2,111,384.0,120.0,0.0,53,48,0.0,0.0,530.7549033891573,1135.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,2,127464,2,1,0,1,1,36.0,0.0,270.0,43,3.0,2.0,3.0,3.0,2.0,2,2,204.91591177604,384.0,30323.22923986691,1,4,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037430050441586205,15161.614619933454,3,2,3_1,3_0_1,3_4_1,3_0_1 -14835,2,38.0,0.0,5,111,200.0,360.0,0.0,85,67,0.0,0.0,276.4348455151861,560.0,0.0,652.9150443050816,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,130739,1,2,0,1,1,456.0,350.0,249.0,42,1.0,0.0,3.0,4.0,2.1,1,1,366.189369686356,200.0,20816.0,6,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026902382782475018,9912.380952380952,2,1,2_0,2_0_0,2_2_0,2_0_0 -14836,1,38.0,59.0,2,111,348.0,0.0,0.0,55,48,0.0,447.19452208200573,480.99663119642383,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,125134,2,1,0,1,1,432.0,0.0,314.0,43,2.0,0.0,3.0,3.0,1.8,3,1,204.91591177604,348.0,29173.97710769906,1,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026736155894019564,16207.76505983281,4,2,4_1,4_0_1,4_4_1,4_0_1 -14837,1,62.0,304.0,5,111,480.0,600.0,0.0,85,78,0.0,0.0,663.4436292364467,1080.0,0.0,1088.1917405084694,50,2,2,2,2,1,2,2,2,0,,2,,3,106810,2,2,0,1,1,690.0,800.0,364.0,41,1.0,6.0,5.0,6.0,3.0999999999999996,2,2,331.1424874458,480.0,36229.374771095296,6,5,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.029810064535302196,11686.895087450097,2,1,2_1,2_0_1,2_2_1,2_0_0 -14838,2,72.0,0.0,2,111,230.0,1500.0,0.0,0,75,0.0,0.0,317.900072342464,1730.0,0.0,2720.4793512711735,10,0,0,0,0,0,0,0,0,0,,1,,2,110085,2,2,1,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,315.388493179724,230.0,22764.563362999408,0,5,0,1,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07599530781301395,22764.563362999408,6,3,6,6_1,6_2,6_0_1 -14839,2,38.0,0.0,5,111,360.0,100.0,0.0,0,46,0.0,0.0,497.582721927335,460.0,0.0,181.36529008474488,10,0,0,0,0,0,0,0,0,3,75.0,2,,3,106088,2,1,0,1,1,564.0,250.0,256.0,12,1.0,0.0,2.0,1.0,1.0,2,2,346.249898167556,360.0,26072.602234536436,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017643041375849787,26072.602234536436,7,4,7,7_0,7_4,7_0_0 -14840,2,81.0,0.0,2,111,375.0,0.0,0.0,0,78,0.0,0.0,518.315335340974,375.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,102637,2,1,0,1,1,672.0,187.0,371.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1382.15784225189,375.0,17138.001052911437,0,5,2,3,69.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021881198328920295,17138.001052911437,4,2,4_0,4_0_0,4_2_0,4_0_1 -14841,2,40.0,0.0,8,111,268.0,200.0,0.0,0,55,0.0,0.0,370.4226929903494,574.0,0.0,362.73058016948977,44,0,0,0,0,0,0,0,0,2,30.0,2,,6,118841,2,2,0,1,1,432.0,0.0,299.0,12,1.0,0.0,3.0,1.0,1.0,2,2,680.427082429119,268.0,23075.60152003649,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024874757847659884,23075.60152003649,6,3,6,6_0,6_4,6_0_0 -14842,1,43.0,495.0,5,111,500.0,950.0,0.0,0,52,0.0,0.0,691.0871137879653,1450.0,0.0,1722.9702558050765,71,0,0,0,0,0,0,0,0,1,20.0,2,,3,104558,2,1,0,0,1,,600.0,548.0,32,1.0,0.0,5.0,6.0,3.0999999999999996,1,1,1195.17934635081,500.0,58265.02574456871,0,1,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024886284378500677,18795.169595022166,5,3,5,5_0,5_2,5_0_0 -14843,2,39.0,0.0,2,111,360.0,120.0,0.0,52,53,0.0,0.0,497.582721927335,664.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,110065,2,1,0,1,1,516.0,0.0,364.0,43,2.0,0.0,4.0,4.0,2.1,3,3,208.506092590926,360.0,47609.386424117125,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013946829603828764,22671.136392436725,6,3,6,6_0,6_4,6_0_1 -14844,2,33.0,0.0,5,111,200.0,120.0,0.0,0,52,0.0,0.0,276.4348455151861,320.0,0.0,217.63834810169388,50,2,1,2,2,1,2,2,2,3,30.0,2,,3,103855,2,3,0,1,1,,0.0,468.0,12,1.0,0.0,2.0,1.0,1.0,1,1,387.829498950194,200.0,16669.516416808587,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01919671764906931,16669.516416808587,4,2,4_0,4_0_0,4_4_0,4_0_0 -14845,2,42.0,0.0,8,111,337.0,429.0,0.0,54,64,0.0,0.0,465.7927146930886,766.0,0.0,778.0570944635556,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,116785,2,2,1,0,1,,162.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,926.355804793663,337.0,51087.977187124554,1,1,0,1,125.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014993742993469922,34058.65145808303,9,5,9,9_1,9_2,9_0_0 -14846,1,40.0,546.0,2,111,450.0,0.0,0.0,0,56,0.0,0.0,621.9784024091688,723.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,2,123311,2,2,0,1,1,756.0,0.0,592.0,32,3.0,0.0,4.0,6.0,3.3,2,2,226.42252899437,450.0,39675.740121212,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01822272244427419,12022.951551882426,2,1,2_1,2_0_1,2_4_1,2_0_1 -14847,2,43.0,0.0,1,111,431.0,1527.0,0.0,55,33,0.0,0.0,595.7170920852261,1958.0,0.0,2769.4479795940547,50,0,0,0,0,0,0,0,0,4,10.0,1,,1,103632,2,2,5,0,1,,400.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,943.019672376643,431.0,72506.58186339209,1,1,0,1,130.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02700444497147888,27887.14687053542,7,4,7,7_1,7_2,7_1_0 -14848,2,57.0,0.0,2,111,450.0,290.0,0.0,68,64,0.0,0.0,621.9784024091688,740.0,0.0,525.9593412457601,42,1,2,2,2,1,2,2,2,0,,2,,2,128311,2,3,0,1,1,700.0,170.0,250.0,43,2.0,2.0,3.0,2.0,1.5,1,1,1169.64641306858,450.0,26382.528494489394,1,4,2,3,55.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.028048865754264844,17588.352329659596,4,2,4_0,4_0_0,4_2_0,4_0_1 -14849,2,42.0,0.0,5,111,225.0,0.0,0.0,0,52,0.0,0.0,310.9892012045844,737.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,3,106711,2,3,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,445.3330887726,225.0,22098.69327490498,0,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03335038822575671,22098.69327490498,6,3,6,6_0,6_4,6_0_0 -14850,2,67.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,363.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,112260,2,3,0,1,1,720.0,500.0,235.0,11,0.0,2.0,3.0,1.0,1.0,1,1,385.61416128914,0.0,21537.560968276208,0,5,2,3,55.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.016854276142720226,21537.560968276208,6,3,6,6_0,6_2,6_0_1 -14851,2,56.0,0.0,2,111,300.0,0.0,0.0,0,74,0.0,0.0,414.65226827277917,360.0,0.0,0.0,42,2,2,2,1,2,2,2,2,0,,2,,2,121127,1,3,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,275.645178276227,300.0,25212.790870626013,0,7,0,1,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014278466903852977,25212.790870626013,7,4,7,7_0,7_4,7_0_1 -14852,2,58.0,0.0,2,111,250.0,0.0,0.0,0,43,0.0,0.0,345.54355689398267,977.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,105502,2,1,0,1,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,265.177777948328,250.0,50284.57299878813,0,1,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019429418243713553,50284.57299878813,10,5,10,10_0,10_4,10_0_1 -14853,2,88.0,0.0,2,111,230.0,190.0,0.0,0,78,0.0,0.0,317.900072342464,420.0,0.0,344.5940511610153,50,0,0,0,0,0,0,0,0,0,,2,,2,118524,2,2,0,1,1,780.0,150.0,197.0,11,0.0,0.0,3.0,1.0,1.0,1,1,384.978274675783,230.0,23349.225934798415,0,5,2,3,55.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017987748337903352,23349.225934798415,6,3,6,6_0,6_2,6_0_1 -14854,2,65.0,0.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,276.4348455151861,240.0,68.81308016760767,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,100042,2,2,0,1,1,480.0,65.0,297.0,11,0.0,4.0,3.0,1.0,1.0,2,2,364.254398207378,200.0,18123.80867880189,0,5,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01324224969780831,18123.80867880189,4,2,4_0,4_0_0,4_2_0,4_0_1 -14855,1,47.0,244.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,338.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,105476,1,2,0,1,1,480.0,1039.0,297.0,31,1.0,1.0,3.0,3.0,2.0,2,2,419.303035842629,0.0,12002.888000242276,0,7,2,3,70.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028159889519353803,6001.444000121138,1,1,1_1,1_0_1,1_2_1,1_0_1 -14856,2,49.0,0.0,2,111,500.0,0.0,0.0,67,47,0.0,0.0,691.0871137879653,650.0,258.04905062852873,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,121790,1,1,0,1,1,600.0,286.0,329.0,43,2.0,2.0,4.0,3.0,1.8,1,1,419.179192795731,500.0,10807.89240976099,4,4,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.06014123525257912,6004.384672089439,1,1,1_0,1_0_0,1_2_0,1_0_1 -14857,1,43.0,376.0,2,111,0.0,0.0,0.0,54,56,0.0,0.0,0.0,495.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,104851,2,1,0,1,1,660.0,558.0,336.0,43,2.0,0.0,4.0,4.0,2.1,1,1,382.977657379889,0.0,10801.422695847137,4,4,2,3,74.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04582729645330096,5143.534617070065,1,1,1_1,1_0_1,1_2_1,1_0_1 -14858,2,51.0,0.0,2,111,480.0,0.0,0.0,52,63,0.0,0.0,663.4436292364467,1116.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,133374,1,1,0,1,2,,0.0,,43,4.0,0.0,5.0,4.0,2.5,1,1,223.557373555179,480.0,41675.167724315805,1,1,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026778536498819137,16670.067089726323,4,2,4_0,4_0_0,4_4_0,4_0_1 -14859,2,58.0,0.0,5,111,720.0,0.0,0.0,78,56,0.0,0.0,995.16544385467,720.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,2,,3,125065,2,1,0,1,1,492.0,460.0,283.0,42,1.0,2.0,3.0,3.0,2.0,1,1,369.576885694549,720.0,36554.253191231335,7,1,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.019696750368099824,18277.126595615668,4,2,4_0,4_0_0,4_2_0,4_0_0 -14860,1,44.0,180.0,2,111,320.0,0.0,0.0,21,43,0.0,0.0,442.2957528242978,339.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,112745,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,261.694829109766,320.0,27802.84195251016,4,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012192998132314802,13239.448548814362,2,1,2_1,2_0_1,2_4_1,2_0_1 -14861,2,55.0,0.0,2,111,400.0,0.0,0.0,0,56,0.0,0.0,552.8696910303722,525.0,215.04087552377396,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,123144,2,2,0,1,1,648.0,280.0,336.0,22,2.0,2.0,4.0,2.0,1.5,2,2,381.915268597357,400.0,27541.303571919107,0,1,2,3,82.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019062278538452545,18360.86904794607,4,2,4_0,4_0_0,4_2_0,4_0_1 -14862,2,39.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,672.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,116847,2,2,0,1,1,408.0,336.0,233.0,12,1.0,0.0,2.0,1.0,1.0,1,1,380.404695215219,0.0,27171.647516340752,0,1,2,3,44.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024731661913244902,27171.647516340752,7,4,7,7_0,7_2,7_0_1 -14863,2,47.0,0.0,6,111,500.0,0.0,0.0,0,43,0.0,0.0,691.0871137879653,500.0,0.0,0.0,20,2,2,2,1,1,2,1,2,1,5.0,2,,4,102856,1,1,0,0,1,,240.0,328.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1419.76369570275,500.0,22897.349065210845,0,1,2,3,45.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02183658896826954,22897.349065210845,6,3,6,6_0,6_2,6_0_0 -14864,1,47.0,200.0,2,111,1000.0,0.0,0.0,0,69,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,2,109246,1,2,0,0,1,,300.0,250.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1415.856923797,1000.0,8789.65088232766,0,4,2,3,35.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.11377016145323644,8789.65088232766,1,1,1_1,1_0_1,1_2_1,1_0_1 -14865,1,45.0,256.0,2,111,480.0,0.0,0.0,67,55,0.0,0.0,663.4436292364467,892.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,110962,2,1,0,1,1,,0.0,411.0,43,2.0,1.0,3.0,6.0,3.0999999999999996,4,2,265.867606150223,480.0,39750.90756428254,4,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02243973923255756,12822.87340783308,2,1,2_1,2_0_1,2_4_1,2_0_1 -14866,2,32.0,0.0,5,111,350.0,0.0,0.0,0,55,0.0,0.0,483.76097965157567,380.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,126704,1,1,0,1,1,861.0,730.0,480.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1313.82082429854,350.0,14186.829612946287,0,1,2,3,76.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026785406631882603,14186.829612946287,3,2,3_0,3_0_0,3_2_0,3_0_0 -14867,2,55.0,0.0,6,111,590.0,600.0,0.0,65,48,0.0,289.84830134944815,815.482794269799,1470.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,1,5.0,1,,4,118997,2,1,2,0,1,,280.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,943.158574649282,590.0,68260.13320954677,1,1,0,1,82.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0215352641561269,45506.755473031175,10,5,10,10_1,10_2,10_0_0 -14868,2,60.0,0.0,5,111,2700.0,0.0,0.0,77,74,0.0,0.0,3731.8704144550125,2700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,131163,2,2,2,0,1,,475.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,942.933120580299,2700.0,54468.35348755628,5,5,0,1,130.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04957006825287708,36312.23565837085,9,5,9,9_1,9_2,9_0_0 -14869,2,50.0,0.0,6,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1104.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,10.0,1,,4,121550,2,1,3,0,1,,452.0,560.0,43,2.0,6.0,4.0,3.0,1.8,1,1,1190.82626033625,0.0,40722.8871276659,1,1,2,3,70.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027110062126463913,22623.82618203661,6,3,6,6_1,6_2,6_0_0 -14870,2,63.0,0.0,2,111,464.0,934.0,0.0,0,75,0.0,0.0,641.3288415952318,1398.0,0.0,1693.9518093915174,42,0,0,0,0,0,0,0,0,0,,1,,2,104969,2,1,1,0,1,,173.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,198.029776127234,464.0,34450.21438803546,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04058029898604998,34450.21438803546,9,5,9,9_1,9_4,9_0_1 -14871,2,60.0,0.0,6,111,739.0,653.0,0.0,75,48,0.0,0.0,1021.4267541786127,1392.0,0.0,1184.3153442533842,12,0,0,0,0,0,0,0,0,2,37.0,1,,4,115904,2,1,2,0,1,,454.0,548.0,42,3.0,0.0,3.0,4.0,2.5,2,2,862.326617883292,739.0,81190.79231837472,5,1,2,3,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017144801279208224,32476.316927349886,8,4,8,8_1,8_2,8_0_0 -14872,2,66.0,0.0,6,111,1700.0,0.0,0.0,75,75,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104446,2,1,2,0,1,,200.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,919.786546664714,1700.0,40441.06152610597,5,5,0,1,140.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042036483115127844,26960.707684070647,7,4,7,7_1,7_2,7_0_0 -14873,2,58.0,0.0,6,111,1500.0,0.0,0.0,52,37,0.0,0.0,2073.261341363896,1650.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,4,120.0,1,,4,123807,2,1,2,0,1,,440.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,1101.64547998187,1500.0,74740.03859437114,1,1,0,1,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022076520577609997,37370.01929718557,9,5,9,9_1,9_2,9_0_0 -14874,2,76.0,0.0,2,111,1788.0,0.0,0.0,0,75,0.0,0.0,2471.327518905764,1788.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,1,,2,117263,2,1,2,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,181.127177032456,1788.0,23552.54093351972,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07591537596927973,23552.54093351972,6,3,6,6_1,6_4,6_0_1 -14875,1,39.0,160.0,2,111,480.0,1000.0,0.0,56,55,0.0,0.0,663.4436292364467,1480.0,0.0,1813.6529008474488,44,2,2,2,2,1,2,2,2,2,5.0,1,,2,101856,2,3,2,0,1,,340.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,999.400862882944,480.0,31467.84418591502,3,1,1,2,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.04703213830779189,13111.601744131258,2,1,2_1,2_1_1,2_2_1,2_0_1 -14876,2,56.0,0.0,2,111,1100.0,0.0,0.0,55,33,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,120646,2,2,1,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,910.378259456307,1100.0,54946.111659282826,1,1,0,1,87.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020019614978781877,36630.74110618855,9,5,9,9_1,9_2,9_0_1 -14877,1,42.0,44.0,2,111,540.0,164.0,0.0,85,68,0.0,0.0,746.3740828910024,704.0,0.0,297.4390757389816,50,2,1,2,2,1,1,2,2,2,10.0,2,,2,120635,1,2,0,1,1,,0.0,539.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,4,4,223.724833043382,540.0,40709.72582023599,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.017293164859637934,14037.83648973655,3,2,3_1,3_0_1,3_4_1,3_0_1 -14878,2,30.0,0.0,7,111,301.0,0.0,0.0,0,67,0.0,0.0,416.0344425003551,301.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,2,,5,122547,2,1,0,1,1,,93.0,322.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1250.05885189096,301.0,26067.191654973583,0,1,2,3,55.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011547082017274755,26067.191654973583,7,4,7,7_0,7_2,7_0_0 -14879,2,30.0,0.0,7,111,372.0,0.0,0.0,55,64,0.0,0.0,514.1688126582462,452.0,137.62616033521533,0.0,12,1,2,2,2,1,2,2,2,2,10.0,2,,5,121736,2,1,0,1,1,,320.0,329.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1104.75469381212,372.0,37946.367101974574,1,1,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01191154870729324,25297.57806798305,7,4,7,7_0,7_2,7_0_0 -14880,2,28.0,0.0,7,111,200.0,550.0,0.0,0,52,0.0,0.0,276.4348455151861,750.0,0.0,997.5090954660969,31,2,2,2,2,1,2,2,2,2,30.0,2,,5,122744,1,2,0,1,1,,0.0,332.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1255.79320144522,200.0,22541.676308405735,0,1,2,3,54.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03327170480752254,22541.676308405735,6,3,6,6_0,6_2,6_0_0 -14881,2,27.0,0.0,9,111,0.0,0.0,0.0,63,43,0.0,0.0,0.0,1343.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,122794,1,3,0,0,1,,0.0,570.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1490.80014784917,0.0,18580.74493765641,1,1,2,3,42.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0722791257565905,12387.163291770941,2,1,2_0,2_0_0,2_2_0,2_0_0 -14882,2,55.0,0.0,7,111,480.0,480.0,0.0,0,52,0.0,0.0,663.4436292364467,960.0,0.0,870.5533924067755,41,0,0,0,0,0,0,0,0,1,10.0,1,,5,115753,2,1,1,0,1,,0.0,740.0,22,4.0,0.0,4.0,4.0,2.5,1,1,280.348645645785,480.0,39739.90402876914,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024157078972939183,15895.961611507655,3,2,3_0,3_1_0,3_4_0,3_0_0 -14883,2,82.0,0.0,9,111,1300.0,0.0,0.0,77,74,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,107799,1,2,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1317.62193237733,1300.0,45458.43857039771,5,5,0,1,79.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02859755066128807,30305.625713598474,8,4,8,8_0,8_2,8_0_0 -14885,2,63.0,0.0,5,111,544.0,114.0,0.0,52,78,0.0,0.0,751.9027798013062,658.0,0.0,206.7564306966092,42,0,0,0,0,0,0,0,0,0,,2,,3,107878,2,2,0,1,1,524.0,0.0,430.0,42,2.0,2.0,4.0,3.0,2.0,1,1,302.962006452824,544.0,49386.44568287076,1,5,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013323493742094124,24693.22284143538,7,4,7,7_0,7_4,7_0_0 -14886,2,57.0,0.0,5,111,1620.0,0.0,0.0,47,56,0.0,0.0,2239.1222486730076,1740.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,112928,2,1,1,0,1,,258.0,,43,3.0,2.0,8.0,5.0,2.8,2,2,869.262104112064,1620.0,54435.77329108018,1,1,0,1,110.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03196427449823911,19441.34760395721,5,3,5,5_1,5_2,5_0_0 -14887,2,76.0,0.0,5,111,800.0,0.0,0.0,78,78,0.0,82.81380038555662,1105.7393820607444,940.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,121988,2,1,1,0,1,,320.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,893.61109940168,800.0,33143.0888082299,5,5,0,1,109.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02836187071877817,22095.39253881993,6,3,6,6_1,6_2,6_0_0 -14888,2,85.0,0.0,2,111,0.0,0.0,0.0,0,77,2837.8112663342013,0.0,0.0,2991.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100600,1,3,2,0,1,,272.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1044.04456947421,0.0,26220.46278596978,0,5,0,1,70.0,7,5,2,1,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11407121317478974,26220.46278596978,7,4,7,7_1,7_2,7_0_1 -14889,1,75.0,111.0,2,111,250.0,800.0,0.0,0,77,0.0,0.0,345.54355689398267,1050.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,2,101963,1,1,0,0,1,,150.0,284.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1501.23333610558,250.0,10780.308850842925,0,5,2,3,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09739980686340904,10780.308850842925,2,1,2_1,2_0_1,2_2_1,2_0_1 -14890,1,55.0,412.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,141.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,50.0,2,,2,132673,2,2,0,1,1,888.0,267.0,276.0,22,2.0,1.0,4.0,2.0,1.5,1,1,1187.62901049381,0.0,37027.36934182852,0,1,2,3,73.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.003807993992182352,24684.912894552344,7,4,7,7_0,7_2,7_0_1 -14891,1,29.0,173.0,5,111,246.0,219.0,0.0,85,53,0.0,0.0,340.0148599836789,465.0,0.0,397.1899852855913,10,0,0,0,0,0,0,0,0,2,25.0,2,,3,111556,2,1,0,1,1,572.0,0.0,388.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,1,1,393.077251600228,246.0,35973.792924642854,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012926076518371922,13323.627009126983,3,2,3_1,3_0_1,3_4_1,3_0_0 -14892,2,78.0,0.0,2,111,413.0,1325.0,0.0,78,75,0.0,0.0,570.8379559888593,1783.0,77.41471518855863,2403.09009362287,33,0,0,0,0,0,0,0,0,0,,1,,2,129102,2,1,2,0,1,,336.0,,41,0.0,1.0,3.0,2.0,1.5,4,3,915.793504123268,413.0,41856.24703358987,5,5,0,1,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04259818130777785,27904.16468905991,7,4,7,7_1,7_2,7_0_1 -14893,2,68.0,0.0,5,112,1900.0,0.0,0.0,75,75,0.0,186.3310508675024,2626.131032394268,2080.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,100552,2,1,2,0,1,,188.0,,41,0.0,1.0,5.0,2.0,1.5,5,3,1879.8634565185,1900.0,89347.31373255019,5,5,0,1,112.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023279938848818838,59564.87582170012,10,5,10,10_1,10_0,10_0_0 -14894,2,56.0,0.0,2,111,450.0,310.0,0.0,54,64,0.0,0.0,621.9784024091688,760.0,0.0,562.2323992627091,71,2,1,2,1,1,2,2,2,2,30.0,2,,2,128611,2,3,0,1,1,600.0,0.0,487.0,42,3.0,0.0,3.0,4.0,2.5,1,1,197.421110507697,450.0,77944.904295466,4,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009750477043618729,31177.961718186398,8,4,8,8_0,8_4,8_0_1 -14895,2,37.0,0.0,7,112,1135.0,0.0,0.0,42,38,0.0,0.0,1568.7677482986812,1135.0,0.0,0.0,50,2,2,2,2,2,2,1,2,3,50.0,1,,5,101862,1,2,3,0,1,,264.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,2094.9026215161,1135.0,65438.62704047207,4,1,1,2,90.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0173444959243725,36354.79280026226,9,5,9,9_1,9_0,9_0_0 -14896,1,49.0,51.0,2,111,210.0,352.0,0.0,0,63,0.0,0.0,290.25658779094545,562.0,0.0,638.405821098302,43,2,1,2,1,2,2,2,2,2,20.0,2,,2,125311,1,2,0,1,1,708.0,0.0,338.0,32,2.0,1.0,3.0,2.0,1.5,2,2,260.977059269913,210.0,30199.128140818484,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.018609808779226834,20132.75209387899,5,3,5,5_0,5_4,5_0_1 -14897,2,34.0,0.0,2,111,427.0,413.0,0.0,56,45,0.0,0.0,590.1883951749223,840.0,0.0,749.0386480499964,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,104546,2,1,0,1,1,597.0,0.0,334.0,43,2.0,0.0,3.0,3.0,1.8,2,2,257.18881327517,427.0,40431.58583637253,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020775836085171074,22461.99213131807,6,3,6,6_0,6_4,6_0_1 -14898,2,68.0,0.0,1,112,1835.0,930.0,0.0,77,74,0.0,0.0,2536.2897076018326,2765.0,0.0,1686.6971977881274,43,0,0,0,0,0,0,0,0,0,,1,,1,109411,2,1,2,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,2020.91369178416,1835.0,20718.859568109317,5,5,0,1,187.0,10,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13345329123500196,13812.573045406212,3,2,3_0,3_1_0,3_0_0,3_1_0 -14899,2,55.0,0.0,7,112,1700.0,0.0,0.0,45,77,0.0,155.27587572291867,2349.696186879082,1850.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,108851,2,1,1,0,1,,134.0,,42,2.0,2.0,5.0,3.0,2.0,2,2,2004.38952944465,1700.0,59998.710793189006,1,7,0,1,103.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030833995856624476,29999.355396594503,8,4,8,8_1,8_0,8_0_0 -14900,2,32.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,737.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,106120,1,2,0,1,1,359.0,0.0,350.0,12,1.0,0.0,3.0,1.0,1.0,2,2,310.415407822667,0.0,18567.05787514157,0,1,2,3,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03969395716629555,18567.05787514157,4,2,4_0,4_0_0,4_4_0,4_0_1 -14901,2,69.0,0.0,2,112,441.0,2364.0,0.0,78,75,0.0,62.110350289167464,609.5388343609853,2865.0,0.0,4287.475457603369,50,0,0,0,0,0,0,0,0,0,,1,,2,130263,2,2,2,0,1,,500.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1933.30739733568,441.0,60894.09643143506,5,5,0,1,85.0,10,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04704889583550854,40596.06428762337,9,5,9,9_1,9_0,9_0_1 -14902,1,47.0,529.0,2,111,1740.0,120.0,0.0,85,21,0.0,0.0,2404.983155982119,1860.0,0.0,217.63834810169388,70,0,0,0,0,0,0,0,0,0,,2,,2,127901,2,1,0,1,1,1068.0,0.0,503.0,42,1.0,1.0,5.0,5.0,2.5999999999999996,2,2,166.797041481338,1740.0,32043.050889646576,6,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05804690715642761,12324.250342171761,2,1,2_1,2_0_1,2_4_1,2_0_1 -14903,2,40.0,0.0,2,111,438.0,1264.0,0.0,0,68,0.0,0.0,605.3923116782576,1702.0,0.0,2292.4572666711756,50,0,0,0,0,0,0,0,0,0,,2,,2,120812,1,3,0,0,1,,0.0,321.0,22,1.0,5.0,3.0,3.0,2.0,1,1,271.872060630508,438.0,53170.80776123365,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0320100459568514,26585.403880616825,7,4,7,7_0,7_4,7_0_1 -14904,2,64.0,0.0,2,112,1800.0,0.0,0.0,77,33,0.0,0.0,2487.913609636675,1890.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,2,80.0,1,,2,105845,2,1,1,0,1,,358.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1360.16479268439,1800.0,81627.00436413685,7,1,0,1,100.0,10,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02315410218374226,54418.00290942457,10,5,10,10_1,10_1,10_0_1 -14905,2,49.0,0.0,2,111,457.0,932.0,0.0,0,64,0.0,0.0,631.6536220022002,1389.0,0.0,1690.3245035898224,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,111311,2,1,2,0,1,,0.0,745.0,12,1.0,2.0,4.0,1.0,1.0,2,2,207.252562941541,457.0,22641.077958834627,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0613486691104302,22641.077958834627,6,3,6,6_1,6_4,6_0_1 -14906,2,28.0,0.0,2,111,0.0,0.0,0.0,55,43,0.0,0.0,0.0,632.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,100847,1,2,0,1,1,686.0,0.0,374.0,43,2.0,0.0,3.0,4.0,2.1,2,2,197.421110507697,0.0,46171.97314820854,1,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013687957366936168,21986.653880099304,6,3,6,6_0,6_4,6_0_1 -14907,2,52.0,0.0,6,112,2176.0,0.0,0.0,38,37,0.0,310.55175144583734,3007.611119205225,2476.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,40.0,1,,4,111000,2,1,2,0,1,,432.0,,43,2.0,1.0,7.0,3.0,2.0,1,1,1457.78266035889,2176.0,77275.57202499453,1,1,1,2,100.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03204117336328673,38637.786012497265,9,5,9,9_1,9_1,9_0_0 -14908,1,30.0,390.0,2,111,440.0,800.0,0.0,85,64,0.0,0.0,608.1566601334094,1240.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,8,,2,133159,2,2,0,1,1,786.0,0.0,403.0,42,1.0,0.0,4.0,7.0,3.3999999999999995,2,2,223.724833043382,440.0,26403.13106202977,6,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04696412698504681,7765.626782949934,1,1,1_1,1_0_1,1_4_1,1_0_1 -14909,1,43.0,152.0,2,111,600.0,600.0,0.0,0,52,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,50,2,2,2,2,1,2,2,2,0,,8,,2,118455,2,2,0,1,1,,0.0,484.0,32,2.0,0.0,5.0,4.0,2.5,2,2,203.107671663047,600.0,14953.286771499768,0,1,2,3,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08024991550935419,5981.314708599907,1,1,1_1,1_0_1,1_4_1,1_0_1 -14910,2,39.0,0.0,2,111,300.0,600.0,0.0,0,46,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,43,0,0,0,0,0,0,0,0,3,75.0,2,,2,103846,2,2,0,0,1,,0.0,,22,2.0,0.0,4.0,2.0,1.5,3,2,303.652952737969,300.0,49963.70215299122,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018013076718057387,33309.13476866081,8,4,8,8_0,8_4,8_0_1 -14911,2,63.0,0.0,1,112,745.0,0.0,0.0,77,74,2197.063354093479,0.0,1029.7197995440683,2306.0,154.82943037711726,0.0,50,2,2,1,1,2,2,2,2,0,,1,,1,103479,2,1,4,0,1,,208.0,,41,0.0,2.0,3.0,2.0,1.5,2,1,1367.79888505231,745.0,48344.041494408215,5,5,0,1,96.0,10,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04769977702974475,32229.360996272142,8,4,8,8_1,8_1,8_1_0 -14912,2,70.0,0.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,414.65226827277917,485.0,0.0,0.0,50,2,2,2,2,1,2,2,1,2,60.0,2,,2,116581,2,1,0,1,1,468.0,320.0,427.0,12,1.0,6.0,3.0,1.0,1.0,2,2,247.344539969872,300.0,16709.44762678068,0,1,3,4,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.029025495685607076,16709.44762678068,4,2,4_0,4_0_0,4_4_0,4_0_1 -14913,2,65.0,0.0,2,111,0.0,0.0,250.0,77,74,0.0,0.0,127.72833370938126,250.0,0.0,285.8114436631579,33,0,0,0,0,0,0,0,0,0,,2,,2,118245,2,2,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,235.4622824776,0.0,38549.003023133184,5,5,0,1,93.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006485252027139988,25699.335348755456,7,4,7,7_0,7_4,7_0_1 -14914,2,60.0,0.0,5,112,850.0,60.0,0.0,52,62,0.0,124.22070057833493,1174.848093439541,1030.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,3,45.0,1,,3,116462,2,2,2,0,1,,130.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1361.55181153293,850.0,71535.4239425974,1,1,0,1,78.0,10,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014398460835662472,47690.282628398265,10,5,10,10_1,10_1,10_0_0 -14915,1,48.0,308.0,2,111,300.0,0.0,0.0,0,67,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,122616,2,2,0,1,1,425.0,0.0,297.0,12,1.0,0.0,1.0,1.0,1.0,1,1,277.047038893744,300.0,6060.0,0,4,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04950495049504951,6060.0,1,1,1_1,1_0_1,1_4_1,1_0_1 -14916,2,55.0,0.0,2,111,300.0,0.0,0.0,0,46,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,111470,2,1,0,1,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,4,4,331.000737291692,300.0,62467.642105059975,0,1,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004802486373592442,62467.642105059975,10,5,10,10_0,10_4,10_0_1 -14917,2,33.0,0.0,2,111,270.0,0.0,0.0,38,38,0.0,0.0,373.1870414455012,406.0,233.96447256986607,0.0,50,2,1,2,2,1,2,2,2,2,30.0,2,,2,124923,2,3,0,1,2,,0.0,,43,2.0,0.0,2.0,3.0,1.8,1,1,238.231378012615,270.0,61556.96334269543,1,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006595517029320411,34198.31296816413,9,5,9,9_0,9_4,9_0_1 -14918,2,42.0,0.0,8,112,1000.0,0.0,0.0,37,48,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,70.0,1,1999.0,6,112952,2,1,1,0,1,,2000.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1323.55162670058,1000.0,61207.88035606411,1,1,0,1,90.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016337765565196966,29146.609693363862,8,4,8,8_1,8_1,8_0_0 -14919,2,62.0,0.0,5,111,350.0,473.0,0.0,0,74,0.0,0.0,483.76097965157567,823.0,0.0,857.8578221008434,41,0,0,0,0,0,0,0,0,0,,2,,3,113491,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,453.268410951837,350.0,52864.14998503396,0,5,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01556820643541974,52864.14998503396,10,5,10,10_0,10_4,10_0_0 -14920,2,55.0,0.0,7,112,2000.0,0.0,0.0,47,38,0.0,0.0,2764.3484551518613,2090.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,121555,1,1,2,0,1,,100.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,1551.87779244039,2000.0,91962.82375274376,1,1,0,1,200.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022726574877901612,45981.41187637188,10,5,10,10_1,10_1,10_0_0 -14921,2,27.0,0.0,2,111,210.0,0.0,0.0,31,38,0.0,0.0,290.25658779094545,210.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,114221,2,1,0,1,1,660.0,0.0,592.0,43,2.0,0.0,2.0,2.0,1.5,1,1,275.653138835363,210.0,39137.224349444004,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005365735651689957,26091.482899629336,7,4,7,7_0,7_4,7_0_1 -14922,2,74.0,0.0,1,112,360.0,1572.0,0.0,0,78,0.0,405.78762188922747,497.582721927335,2324.0,0.0,2851.0623601321895,31,0,0,0,0,0,0,0,0,0,,1,,1,101409,2,1,2,0,1,,150.0,,11,0.0,3.0,5.0,1.0,1.0,4,2,1698.90080902217,360.0,21444.05570564228,0,5,0,1,90.0,10,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10837502158644914,21444.05570564228,6,3,6,6_1,6_1,6_1_0 -14923,2,44.0,0.0,2,111,640.0,0.0,0.0,54,37,0.0,0.0,884.5915056485956,1097.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,113271,2,1,0,1,1,934.0,0.0,396.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,176.162515171569,640.0,62718.00621845428,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017490989687698594,24122.31008402088,6,3,6,6_0,6_4,6_0_1 -14924,2,49.0,0.0,1,112,420.0,0.0,0.0,0,47,0.0,351.95865163861566,580.5131755818909,820.0,103.2196202514115,0.0,41,2,2,1,1,2,2,2,2,4,60.0,1,,1,110256,2,3,4,0,1,,250.0,522.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1675.96845195738,420.0,27365.8298259956,0,1,2,3,45.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02996437547167154,27365.8298259956,7,4,7,7_1,7_1,7_1_0 -14925,2,40.0,0.0,2,111,0.0,0.0,0.0,53,56,0.0,0.0,0.0,496.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,111049,1,2,0,1,2,840.0,0.0,741.0,43,2.0,3.0,5.0,4.0,2.3,2,2,254.919301236078,0.0,40752.19965666761,1,1,2,3,94.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012171122152392766,17718.347676812005,4,2,4_0,4_0_0,4_4_0,4_0_1 -14926,2,51.0,0.0,2,112,540.0,0.0,0.0,0,52,4480.754631054002,0.0,746.3740828910024,3570.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,,2,126804,2,2,2,0,2,,220.0,,32,1.0,1.0,6.0,2.0,1.5,2,2,1424.96531695275,540.0,30101.14488626942,0,1,1,2,90.0,10,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11860014007734465,20067.429924179614,5,3,5,5_1,5_1,5_0_1 -14927,2,53.0,0.0,2,111,492.0,0.0,0.0,85,48,0.0,0.0,680.0297199673578,492.0,0.0,0.0,70,2,1,2,1,1,2,2,2,2,30.0,2,,2,128235,1,1,0,1,1,836.0,0.0,399.0,42,1.0,0.0,3.0,3.0,1.8,1,1,204.91591177604,492.0,34089.820126095874,6,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014432461015638281,18938.78895894215,5,3,5,5_0,5_4,5_0_1 -14928,2,26.0,0.0,5,111,420.0,0.0,0.0,52,43,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,2,1,2,1,1,2,2,2,2,60.0,2,,3,116264,2,2,0,1,1,840.0,0.0,609.0,43,2.0,0.0,3.0,3.0,1.8,2,2,360.030588980088,420.0,39931.12288032488,4,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01051811143049386,22183.957155736043,6,3,6,6_0,6_4,6_0_0 -14929,2,70.0,0.0,2,111,500.0,100.0,0.0,0,75,0.0,0.0,691.0871137879653,1249.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,2,109314,2,3,0,1,1,701.0,0.0,349.0,11,0.0,1.0,3.0,1.0,1.0,3,3,234.175641679745,500.0,22460.840414263173,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055607892534905105,22460.840414263173,6,3,6,6_0,6_4,6_0_1 -14930,2,61.0,0.0,6,112,1700.0,0.0,0.0,74,77,0.0,0.0,2349.696186879082,1790.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,109405,2,1,2,0,1,,280.0,,41,0.0,2.0,8.0,2.0,1.5,3,2,1504.98411327996,1700.0,48444.21243603431,5,5,0,1,210.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03694971824267995,32296.141624022872,8,4,8,8_1,8_1,8_0_0 -14931,2,40.0,0.0,9,112,1500.0,0.0,0.0,67,67,0.0,569.3448776507017,2073.261341363896,2050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,115447,2,1,1,0,1,,460.0,,43,2.0,0.0,6.0,7.0,3.8,2,2,1508.07958344468,1500.0,69062.07075557219,1,1,1,2,120.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029683442410168365,18174.229146203208,4,2,4_0,4_1_0,4_1_0,4_0_0 -14932,2,42.0,0.0,9,112,1600.0,0.0,0.0,85,54,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,128522,2,1,1,0,1,,386.0,536.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,1338.34028455795,1600.0,58066.16152921564,7,1,2,3,90.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02755477472357062,21505.98575156135,6,3,6,6_1,6_1,6_0_0 -14933,2,34.0,0.0,2,111,610.0,0.0,0.0,54,46,0.0,0.0,843.1262788213177,610.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,5.0,1,,2,132916,2,3,3,1,1,,280.0,,43,2.0,0.0,3.0,2.0,1.5,4,4,147.834617220313,610.0,62745.926771270955,1,1,1,2,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,0,0.009721746595976593,41830.61784751397,9,5,9,9_1,9_4,9_0_1 -14934,2,39.0,0.0,9,112,2000.0,0.0,0.0,54,38,0.0,0.0,2764.3484551518613,2120.0,206.439240502823,0.0,41,2,2,1,2,1,2,2,2,2,20.0,1,2004.0,6,108248,2,1,4,0,1,,294.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1426.08746054824,2000.0,68654.22458364331,1,1,1,2,110.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03087938160917026,32692.487896973005,8,4,8,8_1,8_1,8_0_0 -14935,2,48.0,0.0,2,111,650.0,0.0,0.0,42,52,0.0,0.0,898.4132479243549,650.0,0.0,0.0,60,1,2,2,2,1,2,2,2,3,90.0,2,,2,123383,2,2,0,1,1,780.0,0.0,375.0,43,2.0,2.0,3.0,3.0,1.8,2,2,204.91591177604,650.0,38979.85413921546,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016675280458427144,21655.474521786364,6,3,6,6_0,6_4,6_0_1 -14936,2,34.0,0.0,6,112,0.0,0.0,0.0,56,37,0.0,517.5862524097289,0.0,991.0,0.0,0.0,60,0,0,0,0,0,0,0,0,4,120.0,1,,4,117043,2,1,2,0,1,,469.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1591.04394445569,0.0,70504.52181836109,1,1,1,2,130.0,10,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014055836057623181,39169.17878797838,9,5,9,9_1,9_1,9_0_0 -14937,2,55.0,0.0,1,112,1500.0,0.0,0.0,0,42,0.0,496.8828023133397,2073.261341363896,2100.0,206.439240502823,0.0,12,2,2,2,1,1,2,2,2,2,5.0,1,,1,119670,2,3,4,0,1,,300.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1577.52251498565,1500.0,45699.62863886024,0,1,1,2,120.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04595223336704065,45699.62863886024,10,5,10,10_1,10_1,10_1_0 -14938,2,45.0,0.0,2,111,225.0,225.0,0.0,0,68,0.0,0.0,310.9892012045844,450.0,0.0,408.071902690676,10,0,0,0,0,0,0,0,0,2,40.0,2,,2,125035,2,1,0,1,1,,0.0,794.0,32,2.0,1.0,5.0,5.0,2.5999999999999996,3,3,215.37608188568,225.0,31297.218151122222,0,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0143782747024711,12037.391596585472,2,1,2_0,2_0_0,2_4_0,2_0_1 -14939,2,38.0,0.0,8,111,250.0,250.0,0.0,56,42,0.0,0.0,345.54355689398267,500.0,0.0,453.4132252118622,70,2,1,2,1,1,2,2,2,0,,2,,6,120136,2,1,0,1,1,,0.0,854.0,43,2.0,0.0,4.0,4.0,2.1,1,1,404.447246870502,250.0,45019.67111028839,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011106256169111251,21437.93862394685,6,3,6,6_0,6_4,6_0_0 -14940,2,74.0,0.0,2,111,480.0,480.0,0.0,0,77,0.0,0.0,663.4436292364467,960.0,0.0,870.5533924067755,50,2,1,2,1,1,2,2,2,0,,2,,2,113885,2,1,0,1,2,,0.0,603.0,21,1.0,4.0,3.0,2.0,1.5,2,2,260.977059269913,480.0,34216.43237343923,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028056694792798077,22810.954915626153,6,3,6,6_0,6_4,6_0_1 -14941,2,88.0,0.0,1,112,180.0,500.0,0.0,0,77,0.0,0.0,248.7913609636675,680.0,0.0,906.8264504237244,41,0,0,0,0,0,0,0,0,0,,1,,1,127207,2,1,2,0,1,,200.0,,21,0.0,3.0,6.0,2.0,1.5,2,2,1352.36882899191,180.0,33188.22781987816,0,5,0,1,150.0,10,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020489192845443607,22125.485213252105,6,3,6,6_1,6_1,6_1_0 -14942,2,52.0,0.0,2,111,350.0,50.0,0.0,54,64,0.0,0.0,483.76097965157567,400.0,0.0,90.68264504237244,70,2,1,2,1,1,2,2,2,2,20.0,2,,2,125968,1,3,0,1,2,,0.0,,43,2.0,2.0,5.0,4.0,2.5,1,1,217.298266422289,350.0,54171.01362192454,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.007384022805844428,21668.405448769816,6,3,6,6_0,6_4,6_0_1 -14943,2,47.0,0.0,2,111,480.0,0.0,0.0,0,46,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,1,2,2,1,1,2,2,2,2,60.0,2,,2,132411,2,1,0,1,1,,0.0,638.0,12,1.0,2.0,4.0,1.0,1.0,2,2,247.324350982782,480.0,35079.29796894991,0,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013683284096074761,35079.29796894991,9,5,9,9_0,9_4,9_0_1 -14944,2,35.0,0.0,2,112,0.0,0.0,2600.0,45,42,0.0,0.0,1328.3746705775652,2600.0,0.0,2972.4390140968417,50,0,0,0,0,0,0,0,0,4,75.0,1,,2,122100,2,1,1,0,1,,500.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,1427.10170576379,0.0,47939.95582502026,1,1,1,2,170.0,10,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054234509716486606,22828.55039286679,6,3,6,6_1,6_1,6_0_1 -14945,2,46.0,0.0,5,112,2500.0,0.0,0.0,33,37,0.0,0.0,3455.435568939826,2600.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,4,100.0,1,,3,110418,2,2,1,0,1,,424.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1676.53574090232,2500.0,81752.0,1,1,1,2,100.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03180350327820726,45417.777777777774,10,5,10,10_1,10_1,10_0_0 -14946,1,38.0,80.0,5,111,540.0,0.0,0.0,47,45,0.0,0.0,746.3740828910024,603.0,0.0,0.0,42,2,1,2,1,1,2,2,2,1,5.0,1,,3,131565,2,1,2,1,1,,900.0,,43,2.0,0.0,6.0,5.0,2.4,4,4,152.981688288401,540.0,55194.65910984878,1,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0.010924970091760244,22997.774629103656,6,3,6,6_1,6_4,6_0_0 -14947,2,25.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,536.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104934,2,1,0,1,1,,0.0,600.0,22,1.0,0.0,3.0,2.0,1.5,3,3,207.934207448233,0.0,22149.829387987997,0,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024198831991485967,14766.552925325332,3,2,3_0,3_0_0,3_4_0,3_0_1 -14948,2,51.0,0.0,7,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1307.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,113932,2,2,0,0,1,,0.0,500.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2329.77855013619,0.0,29336.71842320783,0,1,2,3,49.0,10,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04455167688305766,29336.71842320783,8,4,8,8_0,8_1,8_0_0 -14949,2,49.0,0.0,1,111,385.0,1275.0,0.0,46,33,0.0,0.0,532.1370776167332,1660.0,0.0,2312.407448580497,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,109698,1,1,3,0,1,,569.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1551.36294310964,385.0,48816.918036062125,1,1,1,2,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03400460468999132,23246.151445743868,6,3,6,6_1,6_2,6_1_0 -14950,2,72.0,0.0,2,111,700.0,2780.0,0.0,74,74,0.0,0.0,967.5219593031513,3480.0,0.0,5041.955064355908,50,0,0,0,0,0,0,0,0,0,,1,,2,103389,2,2,2,0,1,,370.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1769.53904867353,700.0,99820.71134961715,5,5,0,1,200.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03486250451383251,66547.14089974477,10,5,10,10_1,10_2,10_0_1 -14951,2,40.0,0.0,6,111,600.0,0.0,0.0,0,43,0.0,472.03866219767275,829.3045365455583,1056.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,116227,2,2,3,0,1,,236.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,1788.44222178996,600.0,40640.03406182088,0,1,1,2,90.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02598423019020191,31261.564662939138,8,4,8,8_1,8_2,8_0_0 -14952,2,49.0,0.0,1,111,400.0,1300.0,0.0,0,43,0.0,0.0,552.8696910303722,1700.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,120109,2,1,3,0,1,,400.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,1917.4718639052,400.0,30577.97103714034,0,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055595578854305314,19111.23189821271,5,3,5,5_1,5_2,5_1_0 -14953,2,65.0,0.0,5,111,1850.0,0.0,0.0,77,74,0.0,0.0,2557.0223210154713,1880.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111285,2,1,2,0,1,,334.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1746.58967896382,1850.0,49939.19444429066,5,5,0,1,99.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037645781453227514,33292.796296193774,8,4,8,8_1,8_2,8_0_0 -14954,1,31.0,426.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,272.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,131293,2,2,0,1,1,1000.0,404.0,379.0,31,0.0,0.0,6.0,7.0,2.8,1,1,637.947031627554,0.0,21229.718104182488,0,6,2,3,92.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01281222853102383,7582.042180065175,1,1,1_1,1_0_1,1_2_1,1_0_1 -14955,1,57.0,213.0,2,111,350.0,0.0,0.0,77,78,0.0,0.0,483.76097965157567,1833.0,688.1308016760767,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,116765,2,3,0,1,1,,250.0,291.0,41,1.0,1.0,4.0,3.0,2.0,2,2,684.14284902534,350.0,18955.94335294454,6,7,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.09669790449733903,9477.97167647227,1,1,1_1,1_0_1,1_2_1,1_0_1 -14956,1,68.0,68.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,664.0,137.62616033521533,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,124156,2,2,0,1,1,612.0,160.0,289.0,11,0.0,2.0,4.0,1.0,1.0,2,2,618.53516626265,250.0,13168.32342534768,0,5,2,3,60.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05042403490195781,13168.32342534768,2,1,2_1,2_0_1,2_2_1,2_0_1 -14957,2,58.0,0.0,2,111,550.0,840.0,0.0,78,52,0.0,0.0,760.1958251667618,1510.0,206.439240502823,1523.468436711857,41,0,0,0,0,0,0,0,0,3,15.0,2,,2,125257,2,1,0,1,1,,374.0,435.0,42,1.0,2.0,4.0,2.0,1.5,2,2,2097.90270773334,550.0,46808.0,5,1,2,3,71.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03225944283028542,31205.333333333332,8,4,8,8_0,8_2,8_0_1 -14958,1,46.0,182.0,2,111,500.0,0.0,0.0,0,85,0.0,0.0,691.0871137879653,560.0,103.2196202514115,0.0,60,2,2,2,1,1,2,2,2,0,,2,,2,101163,1,3,0,1,1,840.0,400.0,340.0,31,1.0,1.0,3.0,3.0,1.8,2,2,689.194379721524,500.0,23900.515850144093,0,7,2,3,55.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.023430456627429815,13278.064361191162,3,2,3_1,3_0_1,3_2_1,3_0_1 -14959,2,74.0,0.0,5,111,280.0,0.0,0.0,0,78,0.0,0.0,387.00878372126056,280.0,0.0,0.0,20,2,2,2,1,2,2,2,2,0,,2,,3,102729,1,2,0,1,1,493.0,220.0,337.0,11,0.0,1.0,3.0,1.0,1.0,1,1,668.079373606166,280.0,22436.931825140844,0,5,2,3,67.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.012479424646031894,22436.931825140844,6,3,6,6_0,6_2,6_0_0 -14960,1,36.0,237.0,2,111,150.0,100.0,0.0,0,56,0.0,0.0,207.32613413638958,250.0,0.0,181.36529008474488,33,0,0,0,0,0,0,0,0,0,,2,,2,117368,1,3,0,0,1,,90.0,224.0,12,1.0,0.0,1.0,1.0,1.0,2,2,825.724743260514,150.0,7921.397736472598,0,4,2,3,35.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031560086782276016,7921.397736472598,1,1,1_1,1_0_1,1_2_1,1_0_1 -14961,2,45.0,0.0,5,111,640.0,1200.0,0.0,67,64,0.0,0.0,884.5915056485956,1840.0,0.0,2176.3834810169387,71,1,2,2,2,1,2,2,1,2,15.0,2,,3,119943,2,3,0,0,1,,700.0,306.0,43,2.0,1.0,3.0,3.0,1.8,2,1,692.539113627336,640.0,36415.15681318847,4,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0505284107230209,20230.642673993596,5,3,5,5_0,5_2,5_0_0 -14962,2,62.0,0.0,2,111,1600.0,0.0,0.0,0,75,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,1,,2,100419,1,3,3,0,1,,300.0,,21,1.0,1.0,6.0,2.0,1.5,2,2,1639.64430068902,1600.0,40791.72520372514,0,5,0,1,163.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.039223641363760865,27194.48346915009,7,4,7,7_1,7_2,7_0_1 -14963,2,51.0,0.0,8,111,500.0,960.0,0.0,46,54,0.0,0.0,691.0871137879653,1460.0,0.0,1741.106784813551,31,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,102750,2,1,1,0,1,,400.0,,43,3.0,3.0,6.0,3.0,2.0,2,2,1627.55779482508,500.0,55338.377368396905,1,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026383137154176638,27669.188684198452,7,4,7,7_1,7_2,7_0_0 -14964,2,52.0,0.0,2,111,410.0,1159.0,0.0,0,38,0.0,0.0,566.6914333061316,1569.0,0.0,2102.0237120821935,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,130540,2,1,1,0,1,,283.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,1887.01153293681,410.0,45785.85341665425,0,1,1,2,79.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03426822660095462,30523.902277769503,8,4,8,8_1,8_2,8_0_1 -14965,2,63.0,0.0,6,111,929.0,699.0,0.0,0,72,0.0,414.0690019277831,1284.0398574180394,2028.0,0.0,1267.7433776923667,33,0,0,0,0,0,0,0,0,0,,1,,4,120651,2,1,1,0,1,,500.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1879.70234704022,929.0,46072.63693117719,0,5,0,1,116.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04401745016308497,46072.63693117719,10,5,10,10_1,10_2,10_0_0 -14966,2,46.0,0.0,9,111,1937.7,0.0,0.0,62,56,0.0,0.0,2678.239000773881,2080.0,245.14659809710233,0.0,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,132663,2,1,2,0,1,,656.0,621.0,43,3.0,1.0,6.0,4.0,2.5,1,1,1463.07918319412,1937.7,41128.00825352332,1,1,2,3,99.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05057380817418534,16451.20330140933,4,2,4_0,4_1_0,4_2_0,4_0_0 -14967,2,64.0,0.0,1,300,501.0,0.0,0.0,86,78,0.0,0.0,692.4692880155412,591.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,122064,2,1,1,0,1,,248.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1721.75246439396,501.0,29513.818140233572,5,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020024518589627754,19675.878760155716,5,3,5,5_1,5_0,5_1_0 -14968,2,62.0,0.0,5,300,745.0,0.0,0.0,77,38,0.0,0.0,1029.7197995440683,2216.0,2530.601023163772,0.0,50,2,2,1,1,2,2,2,2,0,,1,,3,132421,2,1,2,0,1,,208.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,1769.09778690017,745.0,10332.487637010205,5,5,0,1,96.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.21446916539850988,6888.325091340136,1,1,1_0,1_1_0,1_0_0,1_0_0 -14969,2,64.0,0.0,2,300,700.0,0.0,0.0,52,75,2688.452778632401,0.0,967.5219593031513,2560.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,131324,2,1,1,0,1,,219.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,1395.10820566883,700.0,33324.11896540211,1,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07682123577394058,22216.079310268073,6,3,6,6_1,6_0,6_0_1 -14970,2,80.0,0.0,5,300,520.0,0.0,0.0,77,78,1792.3018524216009,0.0,718.7305983394839,1859.0,239.12545358243665,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,124207,2,1,1,0,1,,250.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,1884.94410888791,520.0,19252.484445368005,5,5,0,1,96.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09655896646872818,12834.989630245336,2,1,2_0,2_1_0,2_0_0,2_0_0 -14971,1,35.0,323.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1712.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,1,129896,2,1,0,0,1,,0.0,470.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2733.80693544893,0.0,20637.3367114903,0,1,2,3,80.0,6,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08295644074299595,12898.335444681437,2,1,2_1,2_0_1,2_2_1,2_1_0 -14972,2,65.0,0.0,1,111,538.0,1497.0,0.0,0,78,0.0,0.0,743.6097344358507,2035.0,0.0,2715.038392568631,50,0,0,0,0,0,0,0,0,0,,1,,1,127413,2,1,1,0,1,,150.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1861.3019250936,538.0,16384.4927070085,0,5,0,1,81.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12420280788611324,16384.4927070085,4,2,4_0,4_1_0,4_2_0,4_1_0 -14973,2,56.0,0.0,1,111,540.0,2540.0,0.0,85,33,0.0,0.0,746.3740828910024,3080.0,0.0,4606.67836815252,43,0,0,0,0,0,0,0,0,2,5.0,1,,1,113699,2,2,2,0,1,,550.0,,42,1.0,7.0,6.0,2.0,1.5,2,2,1782.42624734326,540.0,43795.093336768616,6,1,1,2,140.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07032751309184115,29196.72889117908,8,4,8,8_1,8_2,8_1_0 -14975,2,63.0,0.0,1,111,800.0,0.0,0.0,77,78,0.0,0.0,1105.7393820607444,900.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,113836,1,1,1,0,2,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1753.5050492958,800.0,30393.246194848645,5,5,0,1,150.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029611841862174665,20262.164129899098,5,3,5,5_1,5_2,5_1_0 -14976,1,41.0,371.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,245.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,103735,2,1,0,1,1,,0.0,522.0,32,1.0,1.0,4.0,3.0,2.0,3,3,671.84700304385,0.0,9369.521616772989,0,4,2,3,68.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026148613560099974,4684.760808386494,1,1,1_1,1_0_1,1_2_1,1_0_1 -14977,2,59.0,0.0,6,111,0.0,0.0,0.0,54,64,0.0,621.1035028916747,0.0,3600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,119377,2,1,2,0,1,,223.0,,43,2.0,0.0,4.0,2.0,1.5,3,2,1744.19245689418,0.0,69261.27016737183,1,1,0,1,120.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05197710049643181,46174.18011158122,10,5,10,10_1,10_2,10_0_0 -14978,2,37.0,0.0,2,111,100.0,1200.0,0.0,52,62,0.0,0.0,138.21742275759306,1300.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,118242,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1774.38905798289,100.0,36739.79038319849,1,1,1,2,100.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035383979778896735,17495.138277713566,4,2,4_0,4_1_0,4_2_0,4_0_1 -14979,1,60.0,304.0,5,111,500.0,430.0,0.0,85,67,0.0,0.0,691.0871137879653,930.0,0.0,779.870747364403,50,0,0,0,0,0,0,0,0,0,,1,,3,108403,2,1,2,0,1,,190.0,329.0,42,1.0,3.0,2.0,2.0,1.5,3,3,1451.71356185926,500.0,8336.380913069328,6,4,2,3,54.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11155920173249236,5557.587275379552,1,1,1_1,1_1_1,1_2_1,1_0_0 -14980,1,52.0,351.0,2,111,400.0,200.0,0.0,0,52,0.0,0.0,552.8696910303722,600.0,0.0,362.73058016948977,71,2,2,2,2,1,2,2,2,1,10.0,2,,2,109513,2,2,0,1,1,122.0,0.0,401.0,32,3.0,0.0,5.0,3.0,2.0,4,4,680.985757039649,400.0,22590.222773364585,0,1,2,3,90.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.026560163041306567,11295.111386682293,2,1,2_1,2_0_1,2_2_1,2_0_1 -14981,1,32.0,204.0,5,111,230.0,200.0,0.0,85,65,0.0,0.0,317.900072342464,430.0,0.0,362.73058016948977,12,0,0,0,0,0,0,0,0,2,15.0,2,,3,131682,2,1,0,1,1,716.0,0.0,372.0,42,1.0,0.0,4.0,4.0,2.1,3,2,2030.09258359903,230.0,33370.87636506044,6,1,2,3,79.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012885487192365534,15890.893507171637,3,2,3_1,3_0_1,3_2_1,3_0_0 -14982,2,72.0,0.0,5,111,160.0,0.0,0.0,0,77,0.0,0.0,221.1478764121489,281.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,117865,1,3,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,2319.2654700514,160.0,23422.959897416113,0,5,0,1,46.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011996775865675213,23422.959897416113,6,3,6,6_0,6_2,6_0_0 -14984,2,28.0,0.0,2,111,222.0,588.0,0.0,0,42,0.0,0.0,306.84267852185656,810.0,0.0,1066.4279056983,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,106818,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,2502.03245548482,222.0,22149.196267047497,0,1,1,2,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036570175740646575,22149.196267047497,6,3,6,6_0,6_2,6_0_1 -14985,2,67.0,0.0,5,111,700.0,1400.0,0.0,74,74,0.0,51.75862524097289,967.5219593031513,2150.0,0.0,2539.1140611864284,44,0,0,0,0,0,0,0,0,0,,1,,3,104746,2,2,2,0,1,,170.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1721.20935295997,700.0,53435.16708936232,5,5,0,1,140.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040235674689749666,35623.44472624155,9,5,9,9_1,9_2,9_0_0 -14986,2,58.0,0.0,1,111,85.0,4.0,0.0,77,75,0.0,0.0,117.4848093439541,89.0,0.0,7.254611603389796,71,0,0,0,0,0,0,0,0,0,,1,,1,103580,2,1,2,0,1,,0.0,440.0,41,0.0,0.0,3.0,3.0,2.0,2,2,2348.60331827399,85.0,26681.84139713023,6,5,2,3,100.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0033356018677771024,13340.920698565114,3,2,3_0,3_1_0,3_2_0,3_1_0 -14987,2,33.0,0.0,1,111,500.0,1500.0,0.0,42,54,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,129272,2,1,2,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1765.29479241243,500.0,56780.7117076284,1,1,1,2,115.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03522322880167955,27038.43414648971,7,4,7,7_1,7_2,7_1_0 -14988,2,78.0,0.0,1,111,324.0,1225.0,0.0,0,78,0.0,0.0,447.8244497346015,1549.0,0.0,2221.724803538125,50,0,0,0,0,0,0,0,0,0,,1,,1,114574,2,1,2,0,1,,190.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1800.24288321173,324.0,22833.744966544684,0,5,0,1,80.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06783819308963765,22833.744966544684,6,3,6,6_1,6_2,6_1_0 -14989,2,60.0,0.0,2,111,480.0,0.0,0.0,86,68,147.86490282478206,0.0,663.4436292364467,779.0,344.06540083803833,0.0,50,2,2,2,2,1,2,2,2,2,10.0,2,,2,107942,1,3,0,1,1,385.0,330.0,269.0,42,1.0,0.0,3.0,2.0,1.5,2,2,663.059980263247,480.0,22161.0,6,1,2,3,72.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03515184332836966,14774.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -14990,2,46.0,0.0,1,111,0.0,0.0,0.0,62,47,0.0,0.0,0.0,1060.0,309.6588607542345,0.0,31,2,2,2,1,2,2,2,2,2,2.0,1,,1,132932,2,2,4,0,1,,136.0,92.0,43,2.0,0.0,3.0,3.0,2.0,6,3,2083.49792637333,0.0,40154.77877753041,1,1,2,3,80.0,6,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02639785430951369,20077.389388765205,5,3,5,5_1,5_2,5_1_0 -14991,2,56.0,0.0,8,111,1320.0,0.0,0.0,0,34,0.0,0.0,1824.4699804002285,1370.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,130108,2,1,2,0,1,,360.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1836.03682730989,1320.0,42660.41398181099,0,1,1,2,120.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03211408123193843,42660.41398181099,9,5,9,9_1,9_2,9_0_0 -14992,2,33.0,0.0,6,111,761.0,970.0,0.0,33,37,0.0,0.0,1051.8345871852832,1731.0,0.0,1759.2433138220254,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,101110,2,1,2,0,1,,410.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,1874.19769160397,761.0,69882.79377304805,1,1,1,2,130.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0247700457657948,38823.774318360025,9,5,9,9_1,9_2,9_0_0 -14993,2,41.0,0.0,2,111,0.0,100.0,0.0,0,53,0.0,0.0,0.0,173.0,0.0,181.36529008474488,50,2,1,2,2,1,2,2,2,2,7.0,2,,2,119970,2,2,0,1,1,556.0,0.0,240.0,12,1.0,0.0,3.0,1.0,1.0,3,3,2344.06956795392,0.0,21010.725042301106,0,1,2,3,70.0,6,5,2,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.008233890056230679,21010.725042301106,5,3,5,5_0,5_2,5_0_1 -14994,2,66.0,0.0,1,112,2000.0,0.0,0.0,56,74,0.0,0.0,2764.3484551518613,2100.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104285,2,1,1,0,1,,660.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1373.37309713023,2000.0,31735.307172178473,1,5,0,1,170.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06617235461457943,21156.87144811898,5,3,5,5_1,5_0,5_1_0 -14995,2,64.0,0.0,6,112,1940.0,0.0,0.0,75,63,0.0,0.0,2681.4180014973053,1940.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,118990,2,1,1,0,1,,440.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1181.160201025,1940.0,36831.87321674835,5,5,0,1,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05267177122878005,24554.582144498898,7,4,7,7_1,7_0,7_0_0 -14996,2,70.0,0.0,1,112,880.0,0.0,0.0,71,74,746.7924385090004,0.0,1216.313320266819,1450.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119733,2,2,1,0,1,,272.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1486.90910560176,880.0,66536.8269814253,5,5,0,1,160.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021792442858821447,44357.88465428353,10,5,10,10_1,10_0,10_1_0 -14997,0,50.0,0.0,1,112,1050.0,0.0,0.0,0,34,3733.962192545002,0.0,1451.2829389547271,3680.0,223.64251054472493,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,121935,2,2,3,0,1,,300.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,1331.51744531554,1050.0,50216.32885978491,0,1,0,1,95.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07328293572147365,33477.55257318994,8,4,8,8_1,8_0,8_1_0 -14998,2,82.0,0.0,8,112,1725.0,0.0,0.0,78,75,0.0,0.0,2384.2505425684803,1815.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,106012,2,1,1,0,1,,360.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,1315.79524821253,1725.0,37357.047656110866,5,5,0,1,120.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04858520985672973,24904.698437407245,7,4,7,7_1,7_0,7_0_0 -14999,2,56.0,0.0,2,112,1000.0,0.0,0.0,72,77,2987.1697540360015,0.0,1382.1742275759307,3070.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,108318,2,1,1,0,1,,250.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1330.7713529061,1000.0,31149.231903170068,5,7,0,1,86.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0985578074458897,20766.15460211338,5,3,5,5_1,5_0,5_0_1 -15000,2,77.0,0.0,2,112,250.0,1200.0,0.0,77,78,0.0,0.0,345.54355689398267,1450.0,0.0,2176.3834810169387,41,0,0,0,0,0,0,0,0,0,,1,,2,131804,2,1,2,0,1,,300.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,1301.30896425267,250.0,27895.92584000904,5,5,0,1,100.0,6,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05197891650258023,18597.28389333936,4,2,4_0,4_1_0,4_0_0,4_0_1 -15001,2,75.0,0.0,6,112,1071.0,0.0,0.0,78,78,0.0,0.0,1480.3085977338217,1106.0,60.21144514665671,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,100032,2,1,1,0,1,,410.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,1602.43265083894,1071.0,48636.01896836788,6,5,0,1,89.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02274034806835908,24318.00948418394,7,4,7,7_1,7_0,7_0_0 -15002,2,59.0,0.0,6,112,1800.0,0.0,0.0,55,64,0.0,103.51725048194578,2487.913609636675,1925.0,43.00817510475479,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,126342,2,1,2,0,1,,230.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1225.66286119511,1800.0,64830.23647988706,1,1,0,1,110.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029692935033442492,43220.157653258044,9,5,9,9_1,9_0,9_0_0 -15003,2,47.0,0.0,6,112,735.0,844.0,0.0,65,54,0.0,124.22070057833493,1015.898057268309,1699.0,0.0,1530.7230483152468,43,0,0,0,0,0,0,0,0,2,5.0,1,,4,106886,2,1,3,0,1,,271.0,,43,2.0,2.0,4.0,2.0,1.5,4,3,1293.86663117901,735.0,79167.77965126648,1,1,0,1,91.0,6,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021460750920186004,52778.51976751099,10,5,10,10_1,10_0,10_0_0 -15004,1,38.0,300.0,5,112,500.0,0.0,0.0,90,64,0.0,0.0,691.0871137879653,2500.0,3440.6540083803834,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,111737,2,2,1,0,1,,360.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1332.80898570278,500.0,22453.959156660654,1,1,1,2,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11133893949648563,9355.816315275273,1,1,1_1,1_1_1,1_0_1,1_0_0 -15005,2,49.0,0.0,7,112,900.0,0.0,0.0,55,53,0.0,828.1380038555662,1243.9568048183376,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,100664,2,1,2,0,1,,381.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,1328.50857766325,900.0,59159.39945086256,1,1,0,1,112.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02873592389003221,29579.69972543128,8,4,8,8_1,8_0,8_0_0 -15006,2,65.0,0.0,1,112,700.0,0.0,0.0,0,74,4480.754631054002,0.0,967.5219593031513,3700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122308,1,2,1,0,2,,200.0,600.0,11,0.0,2.0,6.0,1.0,1.0,2,2,1738.11173984639,700.0,29774.37929624541,0,5,2,3,120.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1242679138055642,29774.37929624541,8,4,8,8_1,8_0,8_1_0 -15007,2,73.0,0.0,1,112,3000.0,0.0,0.0,86,71,4480.754631054002,1.0351725048194578,4146.522682727792,6097.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131567,2,1,2,0,1,,123.0,,41,0.0,5.0,9.0,2.0,1.5,2,2,1350.19788558473,3000.0,132316.78167395556,5,5,0,1,450.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04607881118982882,88211.18778263703,10,5,10,10_1,10_0,10_1_0 -15008,2,41.0,0.0,1,112,2010.0,0.0,0.0,43,34,0.0,0.0,2778.17019742762,2143.0,158.27008438549763,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,129991,2,1,2,0,1,,178.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1382.36916754085,2010.0,55429.62401621769,1,1,1,2,120.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03866163695018024,36953.08267747846,9,5,9,9_1,9_0,9_1_0 -15009,2,77.0,0.0,5,112,1800.0,0.0,0.0,0,74,0.0,0.0,2487.913609636675,1870.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131873,2,1,1,0,1,,270.0,,11,0.0,1.0,5.0,1.0,1.0,3,3,1421.81427945043,1800.0,40711.458927374755,0,5,0,1,120.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04593301368383522,40711.458927374755,9,5,9,9_1,9_0,9_0_0 -15010,2,40.0,0.0,9,112,1145.0,0.0,0.0,54,62,0.0,0.0,1582.5894905744406,1145.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,125222,2,1,1,0,1,,522.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1240.27214648369,1145.0,40838.965858155105,1,1,1,2,93.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028036948927083465,19447.12659912148,5,3,5,5_1,5_0,5_0_0 -15011,2,42.0,0.0,5,112,1300.0,0.0,0.0,52,53,0.0,372.6621017350048,1796.8264958487098,1860.0,344.06540083803833,0.0,71,2,2,2,2,2,2,1,2,2,15.0,1,,3,121954,2,2,3,0,1,,180.0,,43,3.0,0.0,6.0,4.0,2.3,1,1,1254.00508959819,1300.0,57424.00766645542,1,1,1,2,162.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03239063373639332,24966.95985498062,7,4,7,7_1,7_0,7_0_0 -15012,2,49.0,0.0,9,112,1800.0,0.0,0.0,47,21,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,109027,2,1,1,0,1,,220.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1359.88755645985,1800.0,34929.51535559947,1,1,1,2,112.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051532349695526086,23286.343570399647,6,3,6,6_1,6_0,6_0_0 -15013,2,66.0,0.0,1,112,150.0,0.0,0.0,0,78,0.0,0.0,207.32613413638958,220.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108336,1,2,4,0,1,,110.0,,11,0.0,4.0,3.0,1.0,1.0,4,4,1628.19060324782,150.0,11996.859232946892,0,5,0,1,120.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018338132983657548,11996.859232946892,2,1,2_0,2_1_0,2_0_0,2_1_0 -15014,2,77.0,0.0,2,112,360.0,0.0,0.0,0,78,3285.8867294396014,0.0,497.582721927335,2630.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130205,2,2,2,0,2,,320.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1370.42280626488,360.0,20876.300924742496,0,5,0,1,110.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12598017289944963,20876.300924742496,5,3,5,5_1,5_0,5_0_1 -15015,2,32.0,0.0,8,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,905.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110409,2,2,5,0,1,,93.0,262.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1188.41312743985,0.0,16375.244181252008,0,1,2,3,40.0,6,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05526635144996086,16375.244181252008,4,2,4_0,4_1_0,4_0_0,4_0_0 -15016,2,28.0,0.0,9,112,0.0,0.0,0.0,62,43,0.0,0.0,0.0,1329.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,127062,2,1,1,0,1,,119.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1399.32519698377,0.0,34559.885136611825,4,1,1,2,84.0,6,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03845498891985878,23039.923424407883,6,3,6,6_1,6_0,6_0_0 -15017,1,48.0,117.0,9,112,1200.0,0.0,0.0,67,68,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,111318,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1336.99573686128,1200.0,37171.14102034127,4,1,1,2,126.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032283109074949315,17700.54334301965,4,2,4_1,4_1_1,4_0_1,4_0_0 -15018,2,63.0,0.0,8,112,720.0,0.0,0.0,0,78,0.0,0.0,995.16544385467,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,116968,2,2,1,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1250.50105446996,720.0,19910.22876468718,0,5,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03616231679251186,19910.22876468718,5,3,5,5_1,5_0,5_0_0 -15019,2,65.0,0.0,5,112,1500.0,0.0,0.0,78,78,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,120839,2,1,1,0,1,,205.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1174.51068689683,1500.0,33990.67198721219,5,5,0,1,100.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04412975420328032,22660.447991474794,6,3,6,6_1,6_0,6_0_0 -15020,0,50.0,0.0,6,112,2000.0,0.0,0.0,75,85,0.0,258.79312620486445,2764.3484551518613,2315.0,111.82125527236246,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,101318,2,2,1,0,1,,400.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1431.14105742714,2000.0,43823.0,5,7,5,0,130.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05282614152385733,29215.333333333332,8,4,8,8_1,8_0,8_0_0 -15021,2,48.0,0.0,7,112,2050.0,0.0,0.0,33,64,0.0,0.0,2833.4571665306576,2130.0,137.62616033521533,0.0,70,2,2,2,2,1,2,2,1,0,,1,,5,108014,2,1,3,0,1,,530.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,1,1,1268.59285976053,2050.0,69981.1960780327,1,1,1,2,160.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.030436747574661888,22574.579380010553,6,3,6,6_1,6_0,6_0_0 -15022,1,30.0,201.0,7,112,1650.0,0.0,0.0,0,54,0.0,0.0,2280.5874755002856,1720.0,120.42289029331342,0.0,50,2,2,2,1,2,2,2,2,0,,1,,5,112777,2,3,3,0,1,,360.0,527.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1205.90721961274,1650.0,18032.636203509184,0,1,2,3,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.09538261519773159,13871.258618083988,3,2,3_1,3_1_1,3_0_1,3_0_0 -15023,1,71.0,145.0,7,112,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,42,2,2,2,1,2,2,2,2,0,,1,,5,100276,2,1,3,0,1,,200.0,328.0,11,0.0,4.0,3.0,1.0,1.0,3,2,1247.31001317089,1200.0,10398.43407456443,0,5,2,3,70.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.12405714079156055,10398.43407456443,2,1,2_1,2_1_1,2_0_1,2_0_0 -15024,2,79.0,0.0,5,112,1172.0,0.0,0.0,0,78,0.0,0.0,1619.9081947189907,1242.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,123178,2,1,1,0,1,,202.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1266.47040819921,1172.0,17771.04208409906,0,5,0,1,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06988897973019267,17771.04208409906,4,2,4_0,4_1_0,4_0_0,4_0_0 -15025,2,75.0,0.0,5,112,270.0,1200.0,0.0,78,78,0.0,227.73795106028072,373.1870414455012,1690.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,3,103131,2,1,1,0,1,,250.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1466.13870786076,270.0,30840.30317398556,5,5,0,1,90.0,6,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054798423688180546,20560.202115990374,5,3,5,5_1,5_0,5_0_0 -15026,2,38.0,0.0,6,112,1530.0,0.0,0.0,43,47,0.0,258.79312620486445,2114.7265681911736,1780.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,4,115410,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1356.60456405479,1530.0,52202.287061564995,1,1,1,2,110.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034098122902177626,29001.27058975833,8,4,8,8_1,8_0,8_0_0 -15027,2,43.0,0.0,6,112,1276.0,0.0,0.0,52,52,0.0,0.0,1763.6543143868873,1336.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,101496,2,2,2,0,1,,330.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1141.35646897262,1276.0,47378.927969638804,1,1,1,2,88.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02819818972806077,20599.53389984296,5,3,5,5_1,5_0,5_0_0 -15028,2,75.0,0.0,2,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1387.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100094,2,1,2,0,1,,294.0,,11,0.0,2.0,4.0,1.0,1.0,4,3,1482.80644074717,0.0,20033.454315828385,0,5,0,1,105.0,6,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06923419087561622,20033.454315828385,5,3,5,5_1,5_0,5_0_1 -15029,0,87.0,0.0,1,112,420.0,0.0,0.0,0,74,2389.735803228801,0.0,580.5131755818909,2055.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113243,2,2,2,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,1545.14762562491,420.0,13284.940722664747,0,5,0,1,90.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.154686425999182,13284.940722664747,3,2,3_0,3_1_0,3_0_0,3_1_0 -15030,2,60.0,0.0,1,112,400.0,0.0,0.0,0,78,746.7924385090004,0.0,552.8696910303722,935.0,60.21144514665671,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,101967,2,2,4,0,2,,250.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,1452.8760968963,400.0,23491.85476193411,0,7,0,1,80.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03980102931314992,23491.85476193411,6,3,6,6_1,6_0,6_1_0 -15031,2,54.0,0.0,1,112,250.0,0.0,0.0,0,52,0.0,465.827627168756,345.54355689398267,700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,110127,2,1,3,0,1,,170.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1452.8760968963,250.0,19794.048100927626,0,1,0,1,100.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0353641658558562,19794.048100927626,5,3,5,5_1,5_0,5_1_0 -15032,2,40.0,0.0,6,112,400.0,0.0,0.0,42,46,0.0,0.0,552.8696910303722,450.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,126993,1,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1254.00508959819,400.0,55745.8599448703,1,1,1,2,126.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00807234834021802,26545.64759279538,7,4,7,7_1,7_0,7_0_0 -15033,2,64.0,0.0,8,112,1200.0,0.0,0.0,77,78,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,105984,2,1,1,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,5,4,1292.44855406616,1200.0,28809.458855779823,5,5,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04581828511975602,19206.305903853216,5,3,5,5_1,5_0,5_0_0 -15034,2,72.0,0.0,9,112,1480.0,0.0,0.0,78,74,0.0,0.0,2045.6178568123773,1480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,110315,2,1,1,0,1,,590.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1315.79524821253,1480.0,42723.46654219183,5,5,0,1,130.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03464138375893296,28482.31102812789,8,4,8,8_1,8_0,8_0_0 -15035,2,41.0,0.0,1,112,450.0,1500.0,0.0,0,47,0.0,0.0,621.9784024091688,1950.0,0.0,2720.4793512711735,50,2,2,2,1,2,2,2,2,2,20.0,1,,1,107558,1,3,2,0,1,,72.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1476.87863670376,450.0,24696.72794075466,0,1,1,2,87.0,6,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0789578281251623,24696.72794075466,7,4,7,7_1,7_0,7_1_0 -15036,2,92.0,0.0,2,112,0.0,0.0,0.0,71,71,1493.5848770180007,0.0,0.0,4081.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104485,2,1,2,0,2,,350.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,1174.51068689683,0.0,39559.503575681745,5,5,0,1,100.0,6,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10316105186185139,26373.00238378783,7,4,7,7_1,7_0,7_0_1 -15037,2,53.0,0.0,2,111,420.0,800.0,0.0,52,52,0.0,0.0,580.5131755818909,1220.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,107058,2,1,2,0,2,,360.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,1935.89729124022,420.0,31827.812463535003,1,1,1,2,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038331255137240394,15913.906231767502,3,2,3_0,3_1_0,3_3_0,3_0_1 -15038,2,73.0,0.0,2,111,134.0,176.0,0.0,0,77,0.0,0.0,185.2113464951747,310.0,0.0,319.202910549151,50,0,0,0,0,0,0,0,0,0,,2,,2,114915,2,1,0,1,1,886.0,344.0,367.0,11,0.0,3.0,3.0,1.0,1.0,2,2,2362.97068400314,134.0,15813.721363564197,0,5,2,3,69.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019603228922084045,15813.721363564197,3,2,3_0,3_0_0,3_3_0,3_0_1 -15039,1,45.0,131.0,2,111,600.0,210.0,0.0,52,47,0.0,0.0,829.3045365455583,810.0,0.0,380.86710917796427,60,0,0,0,0,0,0,0,0,2,25.0,2,,2,103440,2,2,0,1,1,923.0,500.0,282.0,43,2.0,0.0,3.0,5.0,2.4,2,2,1952.08169527955,600.0,37005.49154255919,1,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02188864317795744,15418.954809399664,3,2,3_1,3_0_1,3_3_1,3_0_1 -15040,2,45.0,0.0,2,111,643.5,337.59,0.0,56,47,0.0,0.0,889.4291154451113,981.0,0.0,612.2710827970902,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,106263,2,1,0,1,1,,437.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,2300.9914132972,643.5,43902.715282597484,1,1,1,2,86.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02234485939389851,17561.086113038993,4,2,4_0,4_0_0,4_3_0,4_0_1 -15041,2,72.0,0.0,5,111,200.0,0.0,0.0,0,77,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,102926,1,3,0,1,1,,298.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,2316.25749983566,200.0,16898.73800536607,0,5,0,1,65.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011835203311424288,16898.73800536607,4,2,4_0,4_0_0,4_3_0,4_0_0 -15042,2,47.0,0.0,2,111,181.0,67.0,0.0,0,54,0.0,0.0,250.17353519124345,248.0,0.0,121.51474435677908,70,2,2,1,2,2,1,2,2,2,18.0,2,,2,129414,2,3,0,1,1,,118.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,2758.77770737659,181.0,19336.631215794216,0,1,0,1,31.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01282539844879665,19336.631215794216,5,3,5,5_0,5_3,5_0_1 -15043,1,37.0,327.0,2,111,168.0,90.0,0.0,84,63,0.0,0.0,232.20527023275633,258.0,0.0,163.2287610762704,31,0,0,0,0,0,0,0,0,0,,2,,2,132813,1,2,0,1,2,380.0,0.0,340.0,42,1.0,1.0,2.0,2.0,1.5,2,2,2385.52307713666,168.0,9121.849895573565,3,4,2,3,38.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028283736627281723,6081.23326371571,1,1,1_1,1_0_1,1_3_1,1_0_1 -15044,2,74.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,875.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,121452,2,3,0,1,2,500.0,0.0,570.0,11,0.0,0.0,4.0,1.0,1.0,2,2,2631.84286682231,0.0,34125.69385519779,0,5,2,3,85.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025640504298983686,34125.69385519779,9,5,9,9_0,9_3,9_0_1 -15045,2,78.0,0.0,1,111,1200.0,0.0,0.0,77,75,0.0,0.0,1658.6090730911167,2278.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100410,2,1,2,0,1,,234.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1758.68956245097,1200.0,34349.40461243869,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06631847118465295,22899.603074959126,6,3,6,6_1,6_3,6_1_0 -15046,2,50.0,0.0,5,111,160.0,0.0,0.0,43,38,0.0,0.0,221.1478764121489,160.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,107371,2,1,2,0,1,,360.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1562.95335474791,160.0,58249.06804779068,1,1,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002746825062827226,23299.62721911627,6,3,6,6_1,6_3,6_0_0 -15047,2,69.0,0.0,5,111,663.0,379.0,0.0,0,75,0.0,0.0,916.381512882842,1042.0,0.0,687.3744494211832,33,0,0,0,0,0,0,0,0,0,,1,,3,110201,2,2,5,0,1,,184.0,543.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1742.98437882724,663.0,24456.446528528668,0,5,2,3,120.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042606353248600425,24456.446528528668,7,4,7,7_1,7_3,7_0_0 -15048,2,53.0,0.0,1,111,744.0,2500.0,0.0,77,64,0.0,600.4000527952855,1028.3376253164924,3824.0,0.0,4534.132252118622,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,100800,1,3,2,0,2,,600.0,,42,2.0,2.0,4.0,3.0,2.0,3,2,1828.66495476876,744.0,33060.60221791973,7,1,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1156663745806569,16530.301108959866,4,2,4_0,4_1_0,4_3_0,4_1_0 -15050,2,75.0,0.0,7,111,1230.0,0.0,0.0,0,77,0.0,0.0,1700.0742999183947,1290.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,119465,2,1,1,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1777.07248314855,1230.0,25153.55436796799,0,5,0,1,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0512849985782829,25153.55436796799,7,4,7,7_1,7_3,7_0_0 -15051,2,63.0,0.0,5,111,500.0,900.0,0.0,75,75,0.0,0.0,691.0871137879653,1518.0,0.0,1632.287610762704,12,0,0,0,0,0,0,0,0,0,,1,,3,114150,2,2,2,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1610.56017380902,500.0,27866.358354564327,5,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05447428690485356,18577.572236376218,4,2,4_0,4_1_0,4_3_0,4_0_0 -15052,2,66.0,0.0,6,111,560.0,1200.0,0.0,77,77,0.0,0.0,774.0175674425211,1760.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,0,,1,,4,132407,2,1,1,0,1,,300.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1610.56017380902,560.0,37710.30563044814,5,5,0,1,84.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046671592037666666,25140.203753632097,7,4,7,7_1,7_3,7_0_0 -15053,2,66.0,0.0,5,111,1800.0,0.0,0.0,77,78,0.0,144.92415067472407,2487.913609636675,1940.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115763,2,1,1,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1775.35344851379,1800.0,35629.650565485994,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0544490324549872,23753.100376990664,6,3,6,6_1,6_3,6_0_0 -15054,2,43.0,0.0,5,111,280.0,0.0,0.0,0,55,0.0,0.0,387.00878372126056,280.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,20.0,2,,3,110154,2,2,0,1,1,1110.0,0.0,277.0,32,1.0,0.0,3.0,2.0,1.5,2,2,2015.17408313473,280.0,21488.187846226778,0,1,2,3,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.013030414756410771,14325.458564151186,3,2,3_0,3_0_0,3_3_0,3_0_0 -15055,2,79.0,0.0,2,111,350.0,940.0,0.0,75,77,0.0,0.0,483.76097965157567,1290.0,0.0,1704.833726796602,50,0,0,0,0,0,0,0,0,0,,1,,2,130569,2,1,3,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1767.73174000953,350.0,23395.07270576914,5,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05513981581608381,15596.715137179426,3,2,3_0,3_1_0,3_3_0,3_0_1 -15056,1,37.0,144.0,2,111,360.0,0.0,0.0,85,63,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,120824,1,1,0,1,1,876.0,280.0,286.0,42,1.0,0.0,5.0,5.0,2.4,2,2,578.087005302341,360.0,31458.70791554552,7,1,2,3,86.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01144357234780465,13107.794964810635,2,1,2_1,2_0_1,2_3_1,2_0_1 -15057,1,25.0,291.0,2,111,0.0,240.0,0.0,0,85,0.0,0.0,0.0,1072.0,0.0,435.27669620338776,50,2,1,2,1,1,2,2,2,0,,2,,2,110843,2,1,0,1,1,534.0,221.0,255.0,31,0.0,0.0,3.0,3.0,1.6,2,2,688.975015814706,0.0,11720.87359322745,0,6,2,3,65.0,8,7,2,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.09146075942832645,7325.5459957671565,1,1,1_1,1_0_1,1_3_1,1_0_1 -15058,2,57.0,0.0,2,111,571.0,1000.0,0.0,34,33,0.0,155.27587572291867,789.2214839458563,1721.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,127642,2,2,1,0,2,,313.0,,43,2.0,2.0,6.0,2.0,1.5,3,3,1593.37560641103,571.0,73439.97722242947,1,1,1,2,98.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02343410312870284,48959.98481495298,10,5,10,10_1,10_3,10_0_1 -15059,2,37.0,0.0,9,111,2000.0,0.0,0.0,55,37,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,127125,2,1,1,0,1,,550.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1591.59709551254,2000.0,41572.565058184075,1,1,1,2,72.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04810865043330482,19796.459551516225,5,3,5,5_1,5_3,5_0_0 -15060,2,48.0,0.0,8,111,850.0,0.0,0.0,47,34,0.0,0.0,1174.848093439541,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,110940,2,2,2,0,1,,229.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1677.29652261516,850.0,56779.17945917664,1,1,0,1,69.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0149702762191401,31543.988588431464,8,4,8,8_1,8_3,8_0_0 -15061,2,32.0,0.0,5,111,620.0,820.0,0.0,64,52,0.0,0.0,856.9480210970769,1440.0,0.0,1487.1953786949082,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,102461,2,1,2,0,1,,500.0,680.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1619.69459398852,620.0,45355.47839036958,1,1,2,3,82.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031749196593321746,21597.84685255694,6,3,6,6_1,6_3,6_0_0 -15062,2,72.0,0.0,5,111,605.0,1677.0,0.0,77,74,0.0,0.0,836.215407683438,2282.0,0.0,3041.4959147211716,50,0,0,0,0,0,0,0,0,0,,1,,3,131048,2,1,1,0,1,,430.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1712.84614964979,605.0,44477.51239560304,5,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0513068262384565,29651.674930402023,8,4,8,8_1,8_3,8_0_0 -15063,2,54.0,0.0,6,300,1644.0,40.0,0.0,77,62,0.0,0.0,2272.29443013483,1684.0,0.0,72.54611603389796,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,121010,2,1,2,0,1,,900.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,778.522827405021,1644.0,21860.698603613608,7,1,0,1,93.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0770332197765003,14573.799069075738,3,2,3_0,3_1_0,3_0_0,3_0_0 -15064,2,77.0,0.0,5,300,1000.0,0.0,0.0,77,71,0.0,879.8966290965391,1382.1742275759307,2000.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,122381,1,2,3,0,1,,505.0,437.0,41,0.0,4.0,3.0,2.0,1.5,1,1,953.483491384879,1000.0,21167.71648816326,5,5,2,3,85.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09448350279626887,14111.81099210884,3,2,3_0,3_1_0,3_0_0,3_0_0 -15065,2,50.0,0.0,7,300,1300.0,0.0,0.0,68,63,0.0,155.27587572291867,1796.8264958487098,1450.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,8.0,1,,5,122265,2,1,1,0,1,,721.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,886.235126611989,1300.0,41736.64423005255,1,1,0,1,104.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034741652731053174,27824.4294867017,7,4,7,7_1,7_0,7_0_0 -15066,2,48.0,0.0,9,300,693.0,0.0,0.0,45,43,0.0,341.60692659042104,957.8467397101199,1143.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,125105,2,1,1,0,1,,416.0,,43,2.0,0.0,6.0,5.0,3.0,1,1,779.583623460101,693.0,63448.14070274825,1,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01801471228849565,21149.380234249416,5,3,5,5_1,5_0,5_0_0 -15067,2,51.0,0.0,1,300,790.0,0.0,0.0,54,62,0.0,136.64277063616842,1091.917639784985,1102.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,103742,2,1,3,0,1,,307.0,,43,3.0,0.0,7.0,4.0,2.5,2,2,868.626542502413,790.0,51340.68081028106,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02146446020208058,20536.272324112426,5,3,5,5_1,5_0,5_1_0 -15068,2,55.0,0.0,6,300,800.0,0.0,0.0,38,21,0.0,465.827627168756,1105.7393820607444,1477.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,100939,2,2,2,0,1,,248.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,778.522827405021,800.0,93770.20982221652,1,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015751271142512274,62513.47321481101,10,5,10,10_1,10_0,10_0_0 -15069,1,30.0,190.0,2,300,2040.0,0.0,0.0,55,63,0.0,0.0,2819.635424254898,2199.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,116224,2,1,2,0,1,,1152.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,783.499112583996,2040.0,23750.753953672167,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09258653448599288,11309.882835081984,2,1,2_1,2_1_1,2_0_1,2_0_1 -15070,2,73.0,0.0,1,300,1069.0,0.0,0.0,71,71,0.0,698.741440753134,1477.5442492786697,1864.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111943,2,1,2,0,1,,246.0,,41,0.0,2.0,5.0,3.0,2.0,2,2,1015.5433249183,1069.0,33846.925270800115,5,5,0,1,147.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05507147207867891,16923.462635400057,4,2,4_0,4_1_0,4_0_0,4_1_0 -15071,2,58.0,0.0,1,300,900.0,0.0,0.0,52,67,0.0,310.55175144583734,1243.9568048183376,1274.0,127.30419831007418,0.0,71,0,0,0,0,0,0,0,0,2,13.0,1,,1,125556,2,3,3,0,1,,600.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,824.747078748828,900.0,30077.38245993648,4,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04235740931568719,20051.588306624322,5,3,5,5_1,5_0,5_1_0 -15072,2,34.0,0.0,1,300,1197.0,0.0,0.0,46,46,0.0,828.1380038555662,1654.4625504083888,2057.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,132816,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1015.5433249183,1197.0,94738.11261031603,1,1,1,2,135.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021712486594080756,52632.284783508905,10,5,10,10_1,10_0,10_1_0 -15073,2,46.0,0.0,1,300,400.0,0.0,0.0,85,21,0.0,155.27587572291867,552.8696910303722,582.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,116238,1,1,1,0,1,,244.0,,42,1.0,0.0,4.0,2.0,1.5,4,4,770.933667558776,400.0,30269.981313621116,7,1,0,1,64.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01922696925280582,20179.987542414077,5,3,5,5_1,5_0,5_1_0 -15074,2,45.0,0.0,1,300,3000.0,0.0,0.0,43,31,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,123264,2,1,1,0,1,,214.0,,43,2.0,0.0,8.0,7.0,3.6,2,2,853.848472785976,3000.0,220123.63202513964,1,1,1,2,250.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01362870479829889,61145.45334031656,10,5,10,10_1,10_0,10_1_0 -15075,2,28.0,0.0,9,300,846.0,0.0,0.0,63,56,0.0,232.913813584378,1169.3193965292373,1071.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,115170,2,1,1,0,1,,428.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,822.978580114849,846.0,27801.65246549794,4,1,1,2,91.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03852289000911435,15445.36248083219,3,2,3_0,3_1_0,3_0_0,3_0_0 -15076,1,43.0,201.0,9,212,1600.0,0.0,0.0,0,43,0.0,0.0,2211.478764121489,1771.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,110045,2,1,1,0,1,,336.0,,32,1.0,0.0,7.0,2.0,1.3,1,1,743.218011450211,1600.0,12839.119204370754,0,1,1,2,100.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13793781113871953,9876.245541823657,2,1,2_1,2_1_1,2_0_1,2_0_0 -15077,2,82.0,0.0,1,212,1500.0,0.0,0.0,71,71,0.0,0.0,2073.261341363896,1680.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113029,2,1,1,0,1,,120.0,,41,0.0,3.0,3.0,2.0,1.5,3,2,869.027680267171,1500.0,28405.824595257298,5,5,0,1,69.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05914279989888048,18937.216396838197,5,3,5,5_1,5_0,5_1_0 -15078,2,57.0,0.0,6,212,700.0,0.0,0.0,56,37,0.0,465.827627168756,967.5219593031513,1150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,122835,2,1,1,0,1,,276.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,840.540119949299,700.0,59737.2560636679,1,1,1,2,140.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019250967918150296,29868.62803183395,8,4,8,8_1,8_0,8_0_0 -15079,2,30.0,0.0,9,212,915.0,0.0,0.0,63,38,0.0,0.0,1264.6894182319766,915.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,115305,2,1,1,0,1,,291.0,520.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1002.23611023928,915.0,43599.15963317441,1,1,2,3,62.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020986643038499772,24221.75535176356,7,4,7,7_1,7_0,7_0_0 -15080,2,69.0,0.0,5,212,698.0,0.0,0.0,78,77,1493.5848770180007,0.0,964.7576108479996,1797.0,170.31237341482898,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114504,2,1,2,0,1,,363.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,884.090889976342,698.0,26996.07841436342,5,5,0,1,100.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06656522374908705,17997.385609575613,4,2,4_0,4_1_0,4_0_0,4_0_0 -15081,2,45.0,0.0,9,212,666.0,0.0,0.0,63,55,976.8045095697724,0.0,920.5280355655698,1360.0,68.81308016760767,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,120313,2,1,1,0,1,,182.0,,43,2.0,0.0,2.0,2.0,1.5,3,3,846.134679259727,666.0,38614.620079786335,1,1,1,2,90.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03521982081372132,25743.08005319089,7,4,7,7_1,7_0,7_0_0 -15082,2,54.0,0.0,1,212,1440.0,0.0,0.0,77,68,0.0,0.0,1990.33088770934,1530.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,,1,111718,2,2,2,0,2,,346.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,883.656592311909,1440.0,53142.73608669666,5,1,0,1,123.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028790388163378894,35428.49072446444,9,5,9,9_1,9_0,9_1_0 -15083,2,80.0,0.0,2,212,220.0,0.0,0.0,0,78,0.0,0.0,304.0783300667047,220.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,109341,2,1,2,0,1,,142.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,989.569318236443,220.0,9941.16844324022,0,5,0,1,60.0,1,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022130195384587336,9941.16844324022,2,1,2_0,2_1_0,2_0_0,2_0_1 -15084,2,89.0,0.0,1,212,584.0,0.0,0.0,0,75,3306.7969177178534,0.0,807.1897489043434,2860.0,106.66027425979189,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,103280,2,1,2,0,1,,167.0,,11,0.0,3.0,6.0,1.0,1.0,3,3,960.422865378835,584.0,34771.27827028747,0,5,0,1,140.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08225179349946157,34771.27827028747,9,5,9,9_1,9_0,9_1_0 -15085,2,85.0,0.0,2,212,1709.0,0.0,0.0,78,77,0.0,0.0,2362.135754927265,1839.0,223.64251054472493,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,101399,2,1,2,0,1,,230.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,722.741244591407,1709.0,23678.15545925636,5,5,0,1,70.0,1,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07766652276459697,15785.436972837573,3,2,3_0,3_1_0,3_0_0,3_0_1 -15086,2,43.0,0.0,9,212,1600.0,0.0,0.0,54,48,0.0,517.5862524097289,2211.478764121489,2152.0,89.45700421788997,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,102601,2,1,1,0,1,,355.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,732.531759795269,1600.0,53646.33005860666,1,1,1,2,157.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04011458002157871,25545.871456479363,7,4,7,7_1,7_0,7_0_0 -15087,2,85.0,0.0,1,212,0.0,0.0,0.0,0,78,0.0,207.03450096389156,0.0,1945.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102702,2,1,1,0,1,,502.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,994.179868770996,0.0,24704.326612902518,0,5,0,1,90.0,1,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0787311482104584,24704.326612902518,7,4,7,7_1,7_0,7_1_0 -15088,2,59.0,0.0,9,212,1615.0,0.0,0.0,56,22,0.0,103.51725048194578,2232.2113775351277,1715.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,116866,2,1,1,0,1,,123.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,828.126740644492,1615.0,50989.02793873708,1,1,0,1,90.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03363468709504639,33992.68529249139,9,5,9,9_1,9_0,9_0_0 -15089,2,71.0,0.0,1,212,774.0,0.0,0.0,72,21,5795.109322829842,0.0,1069.8028521437702,4744.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,101757,2,1,2,0,1,,694.0,,42,1.0,3.0,7.0,2.0,1.5,1,1,880.063279841416,774.0,97066.54198429329,5,1,0,1,270.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04887368915200095,64711.02798952886,10,5,10,10_1,10_0,10_1_0 -15090,2,48.0,0.0,1,212,450.0,0.0,0.0,11,11,2240.377315527001,51.75862524097289,621.9784024091688,2120.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115396,1,3,2,0,2,,170.0,,43,2.0,3.0,4.0,3.0,2.0,2,2,844.433261297831,450.0,46092.88520837465,1,1,0,1,80.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04599408326070279,23046.442604187327,6,3,6,6_1,6_0,6_1_0 -15091,2,26.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,798.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,103194,2,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,1736.87209772549,0.0,35594.94843684093,0,1,1,2,50.0,8,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022418911532234905,35594.94843684093,9,5,9,9_0,9_3,9_1_0 -15092,1,46.0,170.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1126.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,106387,2,2,0,0,1,,0.0,240.0,12,1.0,2.0,1.0,1.0,1.0,1,1,2099.28423725243,0.0,3283.181610999407,0,4,3,4,12.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.342960010566471,3283.181610999407,1,1,1_1,1_0_1,1_3_1,1_0_0 -15094,1,38.0,193.0,1,111,660.0,1020.0,0.0,55,64,0.0,0.0,912.2349902001142,1680.0,0.0,1849.925958864398,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,107643,1,3,0,0,2,,0.0,581.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,1794.37407511879,660.0,36903.85504441478,4,1,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.045523699298571245,13668.094460894363,3,2,3_1,3_0_1,3_3_1,3_1_0 -15095,2,45.0,0.0,1,111,0.0,0.0,7500.0,21,21,0.0,0.0,3831.850011281438,7500.0,0.0,8574.343309894735,50,0,0,0,0,0,0,0,0,1,2.0,1,,1,109753,2,3,1,0,1,,700.0,,43,2.0,0.0,11.0,6.0,3.3,2,2,1335.13691891871,0.0,103476.83660174636,1,1,1,2,400.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07247998920633243,31356.617152044353,8,4,8,8_1,8_3,8_1_0 -15096,2,65.0,0.0,1,111,298.0,1490.0,0.0,0,74,0.0,0.0,411.88791981762733,1788.0,0.0,2702.342822262699,71,0,0,0,0,0,0,0,0,0,,1,,1,109683,2,1,1,0,1,,187.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,1635.38636257608,298.0,35966.36139370984,0,5,0,1,98.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04971311888982752,35966.36139370984,9,5,9,9_1,9_3,9_1_0 -15097,2,26.0,0.0,2,111,250.0,900.0,0.0,52,35,0.0,0.0,345.54355689398267,1150.0,0.0,1632.287610762704,50,2,2,2,2,2,2,2,1,2,15.0,2,,2,113470,2,3,0,0,1,,0.0,527.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1949.18703584709,250.0,23478.346889898356,1,1,2,3,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.048981302022366474,15652.231259932238,3,2,3_0,3_0_0,3_3_0,3_0_1 -15098,2,91.0,0.0,5,111,982.0,0.0,0.0,0,86,0.0,0.0,1357.2950914795638,982.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,126996,2,1,0,0,1,,0.0,791.0,11,0.0,2.0,4.0,1.0,1.0,5,4,2168.84089632595,982.0,34479.48201215333,0,5,2,3,94.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02848070628363456,34479.48201215333,9,5,9,9_0,9_3,9_0_0 -15099,2,63.0,0.0,2,111,231.0,77.0,0.0,0,75,0.0,0.0,319.28224657003994,308.0,0.0,139.65127336525356,70,0,0,0,0,0,0,0,0,0,,2,,2,102416,2,2,0,1,1,,192.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2019.11113680533,231.0,26164.890525504103,0,5,1,2,64.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011771499662869923,26164.890525504103,7,4,7,7_0,7_3,7_0_1 -15100,2,52.0,0.0,1,111,638.0,1234.0,0.0,43,46,0.0,0.0,881.8271571934437,1872.0,0.0,2238.047679645752,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,127068,2,1,3,0,1,,291.0,,43,2.0,1.0,7.0,3.0,2.0,4,4,1553.80776906077,638.0,101489.58072970941,1,1,1,2,130.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018445243211572385,50744.79036485471,10,5,10,10_1,10_3,10_1_0 -15101,2,49.0,0.0,1,111,800.0,2000.0,0.0,43,35,0.0,0.0,1105.7393820607444,2800.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,2,50.0,1,,1,102577,2,1,1,0,1,,350.0,,43,2.0,0.0,8.0,5.0,2.8,2,2,1260.82484450203,800.0,105144.17597297367,1,1,1,2,130.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026630100755363893,37551.49141891917,9,5,9,9_1,9_3,9_1_0 -15103,2,26.0,0.0,7,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,558.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,6.0,2,,5,122650,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2020.34626793303,0.0,15485.182770709906,0,1,2,3,47.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03603444713971684,15485.182770709906,3,2,3_0,3_0_0,3_3_0,3_0_0 -15104,1,25.0,172.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,359.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,101948,2,1,0,1,2,609.0,0.0,432.0,12,1.0,0.0,2.0,1.0,1.0,4,3,2227.04410579732,0.0,18596.09550489541,0,1,2,3,50.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019305127783705644,18596.09550489541,4,2,4_1,4_0_1,4_3_1,4_0_1 -15105,0,26.0,0.0,2,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,840.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,2,104945,1,3,0,1,2,,0.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,2233.20643564076,0.0,20785.425363665716,1,1,5,0,28.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.04041293287499302,13856.95024244381,3,2,3_0,3_0_0,3_3_0,3_0_1 -15106,1,50.0,169.0,2,111,320.0,920.0,0.0,0,56,0.0,0.0,442.2957528242978,1240.0,0.0,1668.560668779653,31,0,0,0,0,0,0,0,0,1,10.0,2,,2,106133,1,3,0,0,1,,0.0,280.0,32,1.0,1.0,4.0,2.0,1.5,2,2,1662.36584928814,320.0,14892.939281538778,0,1,2,3,76.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08326093167767752,9928.626187692518,2,1,2_1,2_0_1,2_3_1,2_0_1 -15107,2,79.0,0.0,7,111,3300.0,0.0,0.0,0,74,0.0,0.0,4561.174951000571,3300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,117413,2,1,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,1929.79829927218,3300.0,37732.637806099316,0,5,0,1,84.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08745744246554026,37732.637806099316,9,5,9,9_0,9_3,9_0_0 -15108,2,31.0,0.0,2,111,188.0,1200.0,0.0,0,37,0.0,0.0,259.84875478427494,1388.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,101469,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1919.19556909322,188.0,29838.916877520907,0,1,1,2,45.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04651643374648251,29838.916877520907,8,4,8,8_0,8_3,8_0_1 -15109,2,23.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,985.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,12.0,2,,2,102948,2,2,0,0,1,,186.0,495.0,12,1.0,0.0,2.0,1.0,1.0,4,3,1865.67942447286,0.0,7093.012431695202,0,1,3,4,30.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1388690643764442,7093.012431695202,1,1,1_0,1_0_0,1_3_0,1_0_1 -15110,2,28.0,0.0,2,111,312.0,170.0,0.0,0,63,0.0,0.0,431.23835900369033,482.0,0.0,308.32099314406634,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,122780,1,2,0,1,2,398.0,0.0,375.0,12,1.0,0.0,2.0,1.0,1.0,3,3,2112.62977772432,312.0,18508.807986001764,0,1,2,3,41.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02604165543045977,18508.807986001764,4,2,4_0,4_0_0,4_3_0,4_0_1 -15111,1,47.0,189.0,5,111,550.0,680.0,0.0,0,52,0.0,0.0,760.1958251667618,1230.0,0.0,1233.2839725762653,50,0,0,0,0,0,0,0,0,1,10.0,2,,3,117994,1,1,0,1,1,,0.0,448.0,32,1.0,0.0,3.0,3.0,1.8,2,2,1606.2301363259,550.0,25437.65959932022,0,1,2,3,74.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04835350497546833,14132.033110733455,3,2,3_1,3_0_1,3_3_1,3_0_0 -15112,2,63.0,0.0,1,111,498.0,1940.0,0.0,43,74,0.0,46.5827627168756,688.3227653328134,2483.0,0.0,3518.4866276440507,50,0,0,0,0,0,0,0,0,0,,1,,1,127726,2,1,1,0,2,,310.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1314.42150974926,498.0,68905.28247070729,1,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03603497309593879,45936.85498047152,10,5,10,10_1,10_3,10_1_0 -15113,1,24.0,377.0,1,111,600.0,0.0,0.0,0,85,0.0,0.0,829.3045365455583,780.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100156,2,1,1,0,1,,0.0,366.0,21,0.0,2.0,4.0,2.0,1.5,1,1,1249.5705357268,600.0,21415.007071609667,0,7,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03642305591549688,14276.67138107311,3,2,3_1,3_1_1,3_3_1,3_1_0 -15115,1,26.0,178.0,5,111,516.0,0.0,0.0,0,56,0.0,0.0,713.2019014291802,516.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,20.0,2,,3,129832,2,2,0,0,1,,0.0,320.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2802.55508964592,516.0,18162.214507676654,0,1,2,3,30.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028410632402887954,18162.214507676654,4,2,4_1,4_0_1,4_3_1,4_0_0 -15116,2,38.0,0.0,1,111,1000.0,90.0,0.0,37,21,4480.754631054002,0.0,1382.1742275759307,4090.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,3,75.0,1,,1,105274,2,2,3,0,2,,0.0,1377.0,43,2.0,0.0,7.0,8.0,3.2999999999999994,1,1,1484.91875847054,1000.0,92716.9203479849,1,1,2,3,200.0,8,7,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04411276803251686,28096.036469086335,8,4,8,8_1,8_3,8_1_0 -15117,2,37.0,0.0,2,111,869.0,0.0,0.0,46,52,0.0,0.0,1201.1094037634837,949.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,128620,2,1,2,0,1,,220.0,667.0,43,2.0,0.0,5.0,2.0,1.5,1,1,1382.3424053644,869.0,36846.56423147822,1,1,2,3,60.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02575545426808788,24564.376154318816,7,4,7,7_1,7_3,7_0_1 -15118,2,63.0,0.0,1,111,450.0,1490.0,0.0,77,72,0.0,0.0,621.9784024091688,1940.0,0.0,2702.342822262699,50,0,0,0,0,0,0,0,0,0,,1,,1,106298,2,1,1,0,1,,200.0,,41,1.0,2.0,7.0,3.0,2.0,2,2,1532.46161246382,450.0,88986.45334575063,5,5,0,1,130.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021801071141269848,44493.22667287532,10,5,10,10_1,10_3,10_1_0 -15119,2,63.0,0.0,7,111,460.0,900.0,0.0,68,72,0.0,0.0,635.800144684928,1360.0,0.0,1632.287610762704,43,0,0,0,0,0,0,0,0,0,,1,,5,106791,2,1,2,0,1,,150.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1571.39853664978,460.0,27716.983170550775,1,5,0,1,156.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04906738917549283,18477.988780367185,4,2,4_0,4_1_0,4_3_0,4_0_0 -15120,1,41.0,330.0,2,111,408.0,96.0,0.0,54,68,0.0,0.0,563.9270848509797,504.0,0.0,174.11067848135508,41,0,0,0,0,0,0,0,0,3,20.0,2,,2,115874,1,2,0,1,2,541.0,0.0,320.0,43,2.0,1.0,4.0,5.0,2.5999999999999996,2,2,474.590113863572,408.0,14771.41151895688,1,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034119962019417846,5681.312122675724,1,1,1_1,1_0_1,1_3_1,1_0_1 -15121,1,32.0,162.0,2,111,552.0,2100.0,0.0,0,55,0.0,0.0,762.9601736219137,2652.0,0.0,3808.6710917796427,71,2,2,2,1,2,2,2,2,2,20.0,2,,2,100258,1,3,0,0,2,,0.0,289.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1529.32253301793,552.0,9464.56464771444,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,1,1,0.2802030625508402,7280.434344395723,1,1,1_1,1_0_1,1_3_1,1_0_1 -15122,2,34.0,0.0,1,111,600.0,840.0,0.0,48,38,0.0,0.0,829.3045365455583,1440.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,104334,2,1,1,0,2,,100.0,,43,2.0,0.0,3.0,3.0,1.8,2,1,1571.73616483147,600.0,73564.79277801493,1,1,1,2,90.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019574581068219205,40869.3293211194,9,5,9,9_1,9_3,9_1_0 -15123,2,42.0,0.0,2,111,516.0,276.0,0.0,52,54,0.0,0.0,713.2019014291802,792.0,0.0,500.5682006338959,70,0,0,0,0,0,0,0,0,1,35.0,2,,2,108918,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1651.3218932445,516.0,49138.68642360706,1,1,0,1,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016117646962974366,21364.646271133508,6,3,6,6_0,6_3,6_0_1 -15124,2,43.0,0.0,2,111,175.0,704.0,0.0,0,62,0.0,0.0,241.88048982578783,879.0,0.0,1276.811642196604,71,2,2,2,2,1,2,2,2,2,20.0,2,,2,124275,1,3,0,0,2,,0.0,387.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2389.38768941312,175.0,23278.249832582434,0,1,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0377605707611948,23278.249832582434,6,3,6,6_0,6_3,6_0_1 -15125,1,26.0,218.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,2249.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,15.0,2,,2,105232,2,3,0,0,1,,0.0,266.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1795.73718326979,0.0,10621.57057856587,0,1,2,3,60.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.21173893101444335,10621.57057856587,2,1,2_1,2_0_1,2_3_1,2_0_1 -15126,2,79.0,0.0,2,111,220.0,0.0,0.0,0,77,0.0,0.0,304.0783300667047,220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,129717,2,1,0,1,1,936.0,0.0,229.0,11,0.0,2.0,4.0,1.0,1.0,2,2,2002.79536524569,220.0,14169.43242494573,0,5,2,3,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015526380549490685,14169.43242494573,3,2,3_0,3_0_0,3_3_0,3_0_1 -15127,2,67.0,0.0,8,111,1300.0,0.0,0.0,56,78,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2002.0,6,118070,2,1,0,0,1,,200.0,671.0,42,1.0,5.0,3.0,2.0,1.5,1,1,1965.68204929,1300.0,47990.390080137586,1,5,2,3,65.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02708875668293532,31993.59338675839,8,4,8,8_0,8_3,8_0_0 -15128,1,25.0,377.0,2,111,0.0,0.0,654.0,0,56,0.0,0.0,334.1373209837414,654.0,0.0,747.682736622821,71,2,1,2,1,2,2,2,2,0,,2,,2,126969,1,3,0,1,1,994.0,154.0,391.0,32,1.0,0.0,5.0,2.0,1.3,1,1,1572.97412169442,0.0,7474.642708422814,0,1,2,3,78.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08749582093911178,5749.725160325242,1,1,1_1,1_0_1,1_3_1,1_0_1 -15129,2,81.0,0.0,2,111,3400.0,0.0,0.0,0,77,0.0,0.0,4699.392373758164,3400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106116,1,2,2,0,2,,210.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1453.8899436644,3400.0,46037.14658260476,0,5,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07385340431339196,46037.14658260476,10,5,10,10_1,10_3,10_0_1 -15130,2,50.0,0.0,7,111,600.0,800.0,0.0,0,22,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,116423,2,1,2,0,1,,272.0,512.0,32,2.0,1.0,4.0,2.0,1.5,1,1,1266.0779648634,600.0,30268.006100171362,0,1,2,3,87.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0462534596883167,20178.670733447576,5,3,5,5_1,5_3,5_0_0 -15131,2,74.0,0.0,2,111,1240.0,0.0,0.0,77,77,0.0,0.0,1713.8960421941538,1360.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132814,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1412.60680821491,1240.0,39885.68376476717,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03409744729514577,26590.455843178115,7,4,7,7_1,7_3,7_0_1 -15132,2,53.0,0.0,2,111,0.0,0.0,0.0,68,65,0.0,0.0,0.0,270.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,119573,2,1,0,1,1,864.0,0.0,410.0,43,3.0,4.0,4.0,3.0,2.0,4,3,1708.24111337024,0.0,37101.752204783,1,1,2,3,80.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007277284331740881,18550.8761023915,4,2,4_0,4_0_0,4_3_0,4_0_1 -15133,2,52.0,0.0,5,111,180.0,60.0,0.0,0,47,0.0,0.0,248.7913609636675,240.0,0.0,108.81917405084694,70,0,0,0,0,0,0,0,0,2,10.0,2,,3,118782,2,2,0,1,1,433.0,0.0,183.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1795.73718326979,180.0,35431.547627771215,0,1,2,3,49.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006773624525841716,35431.547627771215,9,5,9,9_0,9_3,9_0_0 -15134,1,66.0,219.0,2,111,152.0,60.0,0.0,0,77,0.0,0.0,210.09048259154144,212.0,0.0,108.81917405084694,10,0,0,0,0,0,0,0,0,0,,2,,2,117442,2,1,0,1,1,850.0,0.0,206.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1888.26641525206,152.0,12389.436936721611,0,5,2,3,67.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017111350667732415,12389.436936721611,2,1,2_1,2_0_1,2_3_1,2_0_1 -15135,2,64.0,0.0,2,111,282.0,70.0,0.0,77,75,0.0,0.0,389.77313217641245,352.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,108600,2,1,0,1,1,,230.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,1772.38714989379,282.0,32747.946819927376,5,5,0,1,63.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010748765470261644,21831.964546618252,6,3,6,6_0,6_3,6_0_1 -15136,1,59.0,250.0,2,111,230.0,178.0,0.0,0,77,0.0,0.0,317.900072342464,408.0,0.0,322.8302163508459,71,2,2,2,2,2,2,2,1,0,,2,,2,113183,1,3,0,1,1,492.0,120.0,300.0,11,0.0,0.0,1.0,1.0,1.0,2,2,2408.62244652176,230.0,10387.6675955523,0,7,2,3,31.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.039277344624956405,10387.6675955523,2,1,2_1,2_0_1,2_3_1,2_0_1 -15137,2,75.0,0.0,2,111,620.0,930.0,0.0,0,77,0.0,0.0,856.9480210970769,1550.0,0.0,1686.6971977881274,70,0,0,0,0,0,0,0,0,0,,1,,2,108901,2,1,2,0,1,,420.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,1512.35357467967,620.0,21385.212822854184,0,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07247998945998466,21385.212822854184,6,3,6,6_1,6_3,6_0_1 -15138,2,55.0,0.0,5,111,696.0,1370.0,0.0,0,77,0.0,0.0,961.9932623928477,2066.0,0.0,2484.704474161005,42,0,0,0,0,0,0,0,0,0,,1,,3,101269,2,2,2,0,1,,230.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1416.57965828763,696.0,19957.448171625572,0,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10352024879299589,19957.448171625572,5,3,5,5_1,5_3,5_0_0 -15140,2,89.0,0.0,2,111,285.0,1073.0,0.0,0,77,0.0,0.0,393.9196548591402,1358.0,0.0,1946.0495626093127,50,0,0,0,0,0,0,0,0,0,,2,,2,108213,2,1,0,0,1,,0.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,1985.43164320279,285.0,23779.082810865,0,5,0,1,74.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05710901512902384,23779.082810865,6,3,6,6_0,6_3,6_0_1 -15141,2,73.0,0.0,2,111,100.0,0.0,0.0,0,74,0.0,0.0,138.21742275759306,100.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,122300,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1947.29955982389,100.0,31842.283764271793,0,5,0,1,76.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003140478262812407,31842.283764271793,8,4,8,8_0,8_3,8_0_1 -15142,2,52.0,0.0,2,111,210.0,796.0,0.0,75,46,0.0,0.0,290.25658779094545,1006.0,0.0,1443.6677090745693,33,2,2,2,1,1,2,2,2,2,20.0,2,,2,116299,2,3,0,1,1,736.0,0.0,269.0,42,1.0,3.0,3.0,2.0,1.5,1,1,1595.68240595832,210.0,49270.17763642427,5,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.020418030708626637,32846.78509094951,8,4,8,8_0,8_3,8_0_1 -15143,2,61.0,0.0,2,111,150.0,0.0,0.0,0,78,0.0,0.0,207.32613413638958,579.0,0.0,0.0,44,2,2,2,2,1,2,2,2,0,,2,,2,109856,1,1,0,1,2,860.0,0.0,235.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1730.3385377598,150.0,18058.670690999952,0,5,2,3,55.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03206216060457656,18058.670690999952,4,2,4_0,4_0_0,4_3_0,4_0_1 -15144,2,55.0,0.0,2,111,540.0,0.0,0.0,0,43,0.0,0.0,746.3740828910024,540.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,122453,2,3,0,1,2,612.0,0.0,194.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1859.14289625037,540.0,30121.587439153434,0,1,2,3,40.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01792734201312654,30121.587439153434,8,4,8,8_0,8_3,8_0_1 -15145,2,59.0,0.0,2,111,168.0,159.0,0.0,0,67,0.0,0.0,232.20527023275633,327.0,0.0,288.3708112347444,71,0,0,0,0,0,0,0,0,0,,2,,2,124470,2,1,0,1,1,732.0,0.0,256.0,12,1.0,1.0,3.0,1.0,1.0,2,2,657.92923371738,168.0,17953.06073159971,0,4,2,3,61.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018214164419576528,17953.06073159971,4,2,4_0,4_0_0,4_2_0,4_0_1 -15146,2,39.0,0.0,1,111,900.0,0.0,0.0,85,63,0.0,155.27587572291867,1243.9568048183376,1250.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,2,70.0,1,,1,120685,2,1,2,0,1,,500.0,,42,1.0,0.0,6.0,6.0,2.8999999999999995,1,1,1734.44500624244,900.0,39981.735894413134,6,1,1,2,100.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03126427535065253,13786.805480832118,3,2,3_0,3_1_0,3_2_0,3_1_0 -15147,1,29.0,162.0,2,111,0.0,0.0,960.0,0,67,0.0,0.0,490.47680144402403,960.0,0.0,1097.5159436665263,44,0,0,0,0,0,0,0,0,2,30.0,2,,2,130931,1,3,0,0,2,,0.0,228.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2058.93746687674,0.0,9490.449029527976,0,1,2,3,30.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10115432863219827,9490.449029527976,1,1,1_1,1_0_1,1_2_1,1_0_1 -15148,1,31.0,200.0,2,111,1500.0,2500.0,0.0,0,67,0.0,0.0,2073.261341363896,4000.0,0.0,4534.132252118622,42,2,2,2,2,1,2,2,2,2,15.0,2,,2,108672,1,3,0,0,2,,0.0,250.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2046.27717840074,1500.0,11777.335200315563,0,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,1,1,0.3396354041016701,11777.335200315563,2,1,2_1,2_0_1,2_2_1,2_0_1 -15149,2,72.0,0.0,5,111,650.0,1600.0,0.0,74,72,0.0,0.0,898.4132479243549,2250.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,3,113215,2,1,2,0,2,,450.0,,41,0.0,2.0,7.0,2.0,1.5,4,3,1632.84209966322,650.0,32810.49947943354,5,5,0,1,265.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06857560950604721,21873.666319622364,6,3,6,6_1,6_2,6_0_0 -15150,2,52.0,0.0,2,111,312.0,97.0,0.0,0,68,0.0,310.55175144583734,431.23835900369033,709.0,0.0,175.92433138220255,50,0,0,0,0,0,0,0,0,0,,1,,2,124187,2,2,2,0,1,,110.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1536.32521511681,312.0,15730.063788611431,0,1,1,2,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04507292592883928,15730.063788611431,3,2,3_0,3_1_0,3_2_0,3_0_1 -15151,1,59.0,247.0,1,111,106.0,0.0,0.0,0,69,0.0,0.0,146.51046812304864,106.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,120603,1,1,0,1,2,,0.0,325.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3509.26425248522,106.0,4839.267902296582,0,4,2,3,16.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.021904139663293975,4839.267902296582,1,1,1_1,1_0_1,1_2_1,1_1_0 -15152,2,24.0,0.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1254.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,1,108522,2,1,0,0,1,,0.0,385.0,12,1.0,0.0,2.0,1.0,1.0,2,2,3122.39147804917,0.0,30121.688095555175,0,1,2,3,37.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04163113289075731,30121.688095555175,8,4,8,8_0,8_2,8_1_0 -15153,2,70.0,0.0,2,111,253.0,0.0,0.0,0,75,0.0,0.0,349.69007957671045,253.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,114690,1,3,0,1,2,,0.0,457.0,11,0.0,1.0,2.0,1.0,1.0,4,4,2687.30750006579,253.0,25602.014705297715,0,5,2,3,48.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009882034789537395,25602.014705297715,7,4,7,7_0,7_2,7_0_1 -15154,2,30.0,0.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,2,,2,125250,2,1,0,1,2,324.0,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2470.65885798329,0.0,35212.61546873238,0,1,2,3,46.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04373432588009454,35212.61546873238,9,5,9,9_0,9_2,9_0_1 -15155,2,32.0,0.0,9,111,0.0,0.0,728.0,54,46,0.0,0.0,371.94490776171824,728.0,0.0,832.2829239471157,71,0,0,0,0,0,0,0,0,0,,2,2009.0,6,110068,2,1,0,0,1,,543.0,404.0,43,2.0,0.0,3.0,3.0,1.8,1,1,2197.3613645217,0.0,51706.893685325944,1,1,2,3,66.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014079360567092069,28726.0520474033,8,4,8,8_0,8_2,8_0_0 -15156,2,83.0,0.0,5,111,243.0,1320.0,0.0,0,72,0.0,0.0,335.8683373009511,1563.0,0.0,2394.0218291186325,50,2,2,2,2,1,2,2,2,0,,2,,3,102718,2,2,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,2297.77978296458,243.0,16123.371561199328,0,5,0,1,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.09694002238100981,16123.371561199328,4,2,4_0,4_0_0,4_2_0,4_0_0 -15157,2,82.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,738.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,128516,2,1,0,0,1,,0.0,355.0,11,0.0,4.0,2.0,1.0,1.0,2,2,3065.55615500594,0.0,17185.352160310293,0,5,2,3,30.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04294354826806615,17185.352160310293,4,2,4_0,4_0_0,4_2_0,4_0_1 -15158,1,50.0,392.0,2,111,756.0,924.0,0.0,0,56,0.0,0.0,1044.9237160474036,1680.0,0.0,1675.8152803830428,71,2,2,2,2,1,2,2,2,0,,2,,2,116768,2,1,0,1,1,,0.0,361.0,32,2.0,2.0,5.0,3.0,2.0,3,3,573.038135162804,756.0,11469.2,0,1,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.1464792662086283,5734.6,1,1,1_1,1_0_1,1_2_1,1_0_1 -15159,1,40.0,389.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,287.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118087,2,1,0,1,1,94.0,0.0,339.0,32,1.0,0.0,4.0,4.0,1.9,1,1,538.240485609632,0.0,19044.602732246363,0,4,2,3,74.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015069886415328106,10023.475122234928,2,1,2_1,2_0_1,2_2_1,2_0_0 -15160,2,56.0,0.0,6,111,325.0,942.0,0.0,0,46,0.0,0.0,449.20662396217745,1267.0,0.0,1708.461032598297,50,0,0,0,0,0,0,0,0,2,55.0,1,,4,111200,2,1,2,0,1,,205.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1717.86897293515,325.0,40232.58326171336,0,1,0,1,108.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03149188785015748,40232.58326171336,9,5,9,9_1,9_2,9_0_0 -15161,2,64.0,0.0,1,111,300.0,1800.0,0.0,75,72,0.0,0.0,414.65226827277917,2100.0,0.0,3264.575221525408,50,2,2,1,2,1,2,2,2,0,,1,,1,122103,2,2,1,0,1,,140.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1471.18439741778,300.0,30172.226872054238,7,5,1,2,78.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06960043118146633,20114.817914702824,5,3,5,5_1,5_2,5_1_0 -15162,2,70.0,0.0,5,111,766.0,0.0,0.0,77,75,3702.5969101276237,207.03450096389156,1058.745458323163,3545.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,111663,2,1,2,0,1,,428.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,1577.60895102053,766.0,32643.76155838743,5,5,0,1,110.0,7,5,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10859655354544011,21762.50770559162,6,3,6,6_1,6_2,6_0_0 -15164,2,40.0,0.0,1,112,1100.0,0.0,0.0,46,62,0.0,621.1035028916747,1520.3916503335236,1775.0,129.02452531426437,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,1,102234,2,2,2,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1028.39929383602,1100.0,39753.32980195822,4,1,1,2,100.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04465034775307211,17284.05643563401,4,2,4_0,4_1_0,4_0_0,4_1_0 -15165,1,50.0,200.0,1,112,800.0,0.0,0.0,0,22,0.0,0.0,1105.7393820607444,950.0,258.04905062852873,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,106033,2,1,3,0,1,,385.0,,32,2.0,0.0,5.0,4.0,2.3,1,1,1036.86259074176,800.0,14670.140041070441,0,1,1,2,200.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.06475739136370787,6378.321756987149,1,1,1_1,1_1_1,1_0_1,1_1_0 -15166,2,46.0,0.0,8,112,1500.0,0.0,0.0,54,54,0.0,258.79312620486445,2073.261341363896,1750.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,112752,2,1,2,0,1,,250.0,,43,2.0,1.0,5.0,4.0,2.3,1,1,1029.12757496067,1500.0,43540.76975432388,1,1,1,2,110.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04019221547699472,18930.76945840169,5,3,5,5_1,5_0,5_0_0 -15167,2,48.0,0.0,8,112,1275.0,0.0,0.0,63,43,0.0,124.22070057833493,1762.2721401593114,1459.0,110.10092826817227,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,111128,2,1,1,0,1,,300.0,676.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1367.9064694572,1275.0,29416.89344489343,4,1,2,3,98.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04959735135639458,16342.71858049635,4,2,4_0,4_1_0,4_0_0,4_0_0 -15168,2,69.0,0.0,1,112,1070.0,0.0,0.0,0,22,0.0,0.0,1478.9264235062458,3920.0,4902.931961942047,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118347,2,1,1,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,1192.93573910722,1070.0,35339.91939004962,0,5,1,2,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11092272047184475,35339.91939004962,9,5,9,9_1,9_0,9_1_0 -15169,2,40.0,0.0,1,112,2700.0,0.0,0.0,46,11,0.0,0.0,3731.8704144550125,2760.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,129151,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,5.0,2.4,3,3,1010.16101368116,2700.0,105944.24967689818,4,1,1,2,130.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026051437509985363,44143.437365374244,10,5,10,10_1,10_0,10_1_0 -15170,1,41.0,200.0,1,112,1200.0,0.0,0.0,63,55,0.0,0.0,1658.6090730911167,1350.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,112500,2,2,5,0,1,,380.0,550.0,43,2.0,0.0,3.0,5.0,2.8,4,3,1226.48019915574,1200.0,31016.730194416632,4,1,2,3,85.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04352489741949058,11077.403640863084,2,1,2_1,2_1_1,2_0_1,2_1_0 -15171,2,45.0,0.0,1,112,690.0,0.0,0.0,54,11,1493.5848770180007,0.0,953.7002170273921,1690.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,115214,2,2,2,0,1,,90.0,,43,2.0,0.0,5.0,4.0,2.5,3,3,963.972451968457,690.0,89986.50906371891,1,1,0,1,80.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01878059297536835,35994.603625487565,9,5,9,9_1,9_0,9_1_0 -15172,2,54.0,0.0,7,112,1500.0,0.0,0.0,85,37,0.0,1552.7587572291866,2073.261341363896,3050.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,3,150.0,1,,5,108980,2,1,3,0,1,,184.0,,42,1.0,1.0,6.0,3.0,2.0,2,2,1241.12969392168,1500.0,81305.58476945451,6,1,1,2,156.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037512798273924314,40652.792384727254,9,5,9,9_1,9_0,9_0_0 -15173,2,70.0,0.0,5,112,350.0,0.0,0.0,78,63,0.0,207.03450096389156,483.76097965157567,650.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118145,2,1,2,0,1,,100.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,954.673200072589,350.0,21289.920911776797,5,5,0,1,80.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03053087903395846,14193.280607851199,3,2,3_0,3_1_0,3_0_0,3_0_0 -15174,2,74.0,0.0,2,112,650.0,0.0,0.0,86,78,2240.377315527001,0.0,898.4132479243549,2270.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111805,2,1,4,0,1,,120.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1080.4963219663,650.0,24277.59124062407,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09350186258188471,16185.060827082714,4,2,4_0,4_1_0,4_0_0,4_0_1 -15175,2,64.0,0.0,5,112,480.0,0.0,0.0,77,77,0.0,72.46207533736204,663.4436292364467,1700.0,1978.3760548187204,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,106290,2,1,2,0,2,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,962.805462695382,480.0,40069.33842543671,5,5,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04242645540962589,26712.892283624475,7,4,7,7_1,7_0,7_0_0 -15176,2,33.0,0.0,1,112,1300.0,0.0,0.0,0,55,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,7.0,1,,1,114120,2,1,2,0,1,,200.0,480.0,12,1.0,0.0,4.0,1.0,1.0,3,3,1512.84223038088,1300.0,15014.11280204308,0,1,2,3,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08658520267831606,15014.11280204308,3,2,3_0,3_1_0,3_0_0,3_1_0 -15177,2,70.0,0.0,1,112,640.0,0.0,0.0,22,78,0.0,0.0,884.5915056485956,790.0,258.04905062852873,0.0,41,2,2,2,1,2,2,2,2,0,,1,,1,113803,2,1,3,0,1,,400.0,,42,1.0,2.0,5.0,2.0,1.5,2,1,1081.41462524458,640.0,23785.635211802597,4,5,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.03321332362854016,15857.090141201732,3,2,3_0,3_1_0,3_0_0,3_1_0 -15178,2,52.0,0.0,7,120,120.0,0.0,0.0,43,47,0.0,0.0,165.86090730911167,120.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,119960,2,1,2,0,1,,200.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1027.01234780139,120.0,74705.22279776436,1,1,0,1,170.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016063133942435834,49803.48186517624,10,5,10,10_1,10_0,10_0_0 -15179,2,46.0,0.0,2,120,580.0,0.0,0.0,0,54,1792.3018524216009,103.51725048194578,801.6610519940398,2010.0,223.64251054472493,0.0,50,2,2,2,1,1,2,2,2,2,20.0,1,,2,106638,2,2,2,0,1,,250.0,,32,2.0,0.0,4.0,3.0,2.0,2,2,1186.44433568094,580.0,19160.76242923431,0,1,1,2,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.1049018799446762,9580.381214617155,1,1,1_0,1_1_0,1_0_0,1_0_1 -15181,2,64.0,0.0,6,120,2400.0,0.0,0.0,74,75,0.0,0.0,3317.2181461822333,2460.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114946,2,1,2,0,1,,400.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1107.85735003567,2400.0,89226.60914161216,5,5,0,1,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027570250888899264,59484.40609440811,10,5,10,10_1,10_0,10_0_0 -15182,2,79.0,0.0,1,120,500.0,120.0,0.0,78,78,2240.377315527001,103.51725048194578,691.0871137879653,2220.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,1,,1,111816,2,1,4,0,1,,225.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1209.93559026455,500.0,30860.920216632512,5,5,0,1,80.0,0,0,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07193563848441335,20573.946811088343,5,3,5,5_1,5_0,5_1_0 -15183,2,40.0,0.0,1,120,750.0,0.0,0.0,54,38,2987.1697540360015,103.51725048194578,1036.630670681948,2850.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,109409,2,1,1,0,1,,20.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,963.972451968457,750.0,63644.17373353948,4,1,1,2,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04478021840509958,30306.749396923562,8,4,8,8_1,8_0,8_1_0 -15184,2,44.0,0.0,1,120,2200.0,0.0,0.0,0,21,0.0,0.0,3040.783300667047,2290.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,108004,2,1,1,0,1,,170.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,1153.23597833031,2200.0,26648.12244455461,0,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08593475974769653,16655.07652784663,4,2,4_0,4_1_0,4_0_0,4_1_0 -15185,2,38.0,0.0,1,120,250.0,0.0,0.0,85,46,0.0,0.0,345.54355689398267,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,12.0,1,,1,101686,2,1,2,0,1,,350.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,1036.86259074176,250.0,40305.8438736424,6,1,1,2,135.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006202574514597497,19193.25898744876,5,3,5,5_1,5_0,5_1_0 -15186,2,44.0,0.0,1,120,1500.0,0.0,0.0,0,64,0.0,0.0,2073.261341363896,1520.0,34.40654008380383,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,100605,2,2,5,0,1,,180.0,,12,1.0,0.0,3.0,1.0,1.0,6,5,1245.39197623897,1500.0,33554.401211156954,0,1,1,2,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04529957159523368,33554.401211156954,9,5,9,9_1,9_0,9_1_0 -15187,2,89.0,0.0,1,120,336.0,0.0,0.0,0,77,2987.1697540360015,0.0,464.41054046551267,2436.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115587,1,1,2,0,1,,215.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1145.41395153261,336.0,22129.452530457234,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11007954203328264,22129.452530457234,6,3,6,6_1,6_0,6_1_0 -15188,2,36.0,0.0,1,120,1200.0,0.0,0.0,0,42,1493.5848770180007,0.0,1658.6090730911167,2275.0,129.02452531426437,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,111237,2,1,1,0,1,,300.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,1184.03851430622,1200.0,23776.094369248138,0,1,1,2,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0956843443110855,14860.058980780086,3,2,3_0,3_1_0,3_0_0,3_1_0 -15189,2,66.0,0.0,1,300,750.0,0.0,0.0,52,75,0.0,1449.241506747241,1036.630670681948,2270.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,128476,2,1,1,0,1,,300.0,,42,1.0,1.0,8.0,3.0,1.8,1,1,751.653768467232,750.0,36151.64008423532,1,5,0,1,200.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0627910654872303,20084.244491241843,5,3,5,5_1,5_0,5_1_0 -15190,2,47.0,0.0,1,300,800.0,0.0,0.0,52,42,0.0,724.6207533736205,1105.7393820607444,1590.0,154.82943037711726,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,107076,2,1,2,0,1,,450.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,607.283684021802,800.0,65058.34012974049,1,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024439602929143194,25022.438511438653,7,4,7,7_1,7_0,7_1_0 -15191,2,54.0,0.0,1,300,250.0,0.0,0.0,0,78,0.0,362.31037668681023,345.54355689398267,625.0,43.00817510475479,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,127283,1,3,4,0,2,,80.0,78.0,11,0.0,1.0,3.0,1.0,1.0,2,2,912.814424695034,250.0,21015.501935596265,0,7,2,3,115.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029739951104444898,21015.501935596265,5,3,5,5_1,5_0,5_1_0 -15192,2,34.0,0.0,9,300,3000.0,0.0,0.0,62,54,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,129904,2,1,1,0,1,,400.0,,43,2.0,1.0,6.0,4.0,2.1,1,1,631.098436566727,3000.0,44546.11561823658,4,1,1,2,220.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06734593933419955,21212.436008684086,5,3,5,5_1,5_0,5_0_0 -15193,2,66.0,0.0,1,300,700.0,0.0,0.0,71,64,2091.018827825201,0.0,967.5219593031513,2200.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121026,2,1,2,0,1,,650.0,,42,1.0,1.0,5.0,3.0,2.0,2,2,841.883318407163,700.0,20872.711503268707,5,1,0,1,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10540077649496932,10436.355751634354,2,1,2_0,2_1_0,2_0_0,2_1_0 -15194,2,80.0,0.0,1,300,0.0,0.0,0.0,0,77,0.0,0.0,0.0,558.0,86.01635020950958,0.0,30,1,2,2,1,2,2,2,2,0,,1,,1,126660,2,1,1,0,1,,200.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,882.072921622794,0.0,22231.68440696088,0,5,0,1,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02509931275496546,22231.68440696088,6,3,6,6_1,6_0,6_1_0 -15195,2,49.0,0.0,6,300,900.0,0.0,0.0,67,64,0.0,414.0690019277831,1243.9568048183376,1375.0,129.02452531426437,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,121937,2,1,2,0,1,,200.0,,43,3.0,3.0,4.0,3.0,2.0,1,1,741.913712922906,900.0,37135.44455939138,1,1,0,1,84.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03702662015533268,18567.72227969569,4,2,4_0,4_1_0,4_0_0,4_0_0 -15197,2,33.0,0.0,2,300,700.0,0.0,0.0,62,21,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123979,2,1,2,0,1,,530.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,642.622726943124,700.0,31096.616053961618,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02251048791885579,14807.91240664839,3,2,3_0,3_1_0,3_0_0,3_0_1 -15198,2,75.0,0.0,1,300,300.0,0.0,0.0,0,71,0.0,155.27587572291867,414.65226827277917,620.0,292.4555907123326,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,115256,2,1,2,0,1,,160.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,788.874518089871,300.0,12697.309986357695,0,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04882924026161001,12697.309986357695,2,1,2_0,2_1_0,2_0_0,2_1_0 -15199,2,35.0,0.0,9,300,1300.0,0.0,0.0,69,13,0.0,0.0,1796.8264958487098,1400.0,172.03270041901916,0.0,12,0,0,0,0,0,0,0,0,0,,1,2006.0,6,127908,2,1,1,0,1,,750.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,678.663763048897,1300.0,60479.199278967484,1,1,1,2,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02314845462060987,28799.61870427023,8,4,8,8_1,8_0,8_0_0 -15200,2,57.0,0.0,6,300,1300.0,0.0,0.0,47,52,0.0,0.0,1796.8264958487098,1390.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,4,112863,2,1,2,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,575.324847480814,1300.0,52479.77020242462,1,1,0,1,96.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026486396465504734,34986.513468283076,9,5,9,9_1,9_0,9_0_0 -15201,0,81.0,0.0,1,300,150.0,0.0,0.0,0,71,0.0,0.0,207.32613413638958,210.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121028,2,1,4,0,1,,393.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,784.58723336,150.0,18206.300012633576,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011534468829706114,18206.300012633576,4,2,4_0,4_1_0,4_0_0,4_1_0 -15202,2,76.0,0.0,1,300,1200.0,0.0,0.0,78,78,0.0,0.0,1658.6090730911167,1300.0,172.03270041901916,0.0,31,2,2,2,2,1,2,2,2,0,,1,,1,119922,2,3,4,0,1,,500.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,680.258182759656,1200.0,33751.02351792457,5,5,0,1,40.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.038517350423746204,22500.682345283047,6,3,6,6_1,6_0,6_1_0 -15203,2,65.0,0.0,1,300,750.0,0.0,0.0,0,77,2240.377315527001,155.27587572291867,1036.630670681948,2400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112042,2,2,4,0,1,,600.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,708.681799868904,750.0,24866.229079102708,0,5,1,2,160.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09651644374244635,24866.229079102708,7,4,7,7_1,7_0,7_1_0 -15204,2,70.0,0.0,5,300,960.0,0.0,0.0,77,74,1792.3018524216009,0.0,1326.8872584728933,2300.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125562,2,1,2,0,1,,560.0,600.0,41,0.0,2.0,3.0,2.0,1.5,2,2,690.823277233868,960.0,35510.85969581998,5,5,2,3,80.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06476891913351046,23673.906463879986,6,3,6,6_1,6_0,6_0_0 -15205,2,58.0,0.0,8,300,1300.0,0.0,0.0,85,77,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,115679,2,1,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,620.643094660307,1300.0,26092.225039879828,6,5,1,2,98.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049823271032388254,17394.81669325322,4,2,4_0,4_1_0,4_0_0,4_0_0 -15206,2,77.0,0.0,2,300,0.0,0.0,0.0,0,86,3733.962192545002,0.0,0.0,5741.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,130204,1,2,4,0,2,,266.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,786.272893746511,0.0,11499.463456076617,0,5,0,1,90.0,0,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.49924068387436854,11499.463456076617,2,1,2_0,2_1_0,2_0_0,2_0_1 -15207,2,82.0,0.0,1,300,500.0,0.0,0.0,71,71,2987.1697540360015,0.0,691.0871137879653,2600.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102678,2,1,1,0,1,,170.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,681.701966573175,500.0,17449.121736864145,5,5,0,1,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14900463411330736,11632.747824576096,2,1,2_0,2_1_0,2_0_0,2_1_0 -15208,2,85.0,0.0,1,300,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2928.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106436,2,1,3,0,2,,237.0,,11,0.0,2.0,7.0,1.0,1.0,2,1,810.350178836299,0.0,101155.47792352617,0,5,0,1,150.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028945540667738988,101155.47792352617,10,5,10,10_1,10_0,10_1_0 -15209,2,58.0,0.0,6,300,700.0,0.0,0.0,34,31,0.0,0.0,967.5219593031513,1500.0,1376.2616033521533,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,130689,1,2,3,0,1,,600.0,,43,2.0,2.0,5.0,2.0,1.5,2,1,698.160399883241,700.0,159149.9409407951,1,1,0,1,102.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009425074185594644,106099.96062719672,10,5,10,10_1,10_0,10_0_0 -15210,1,42.0,60.0,2,120,2100.0,0.0,0.0,0,56,0.0,0.0,2902.5658779094542,2150.0,86.01635020950958,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,101996,2,1,3,0,1,,400.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,2705.34676448548,2100.0,23188.504725781353,0,1,1,2,80.0,0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.09271835443574744,11594.252362890677,2,1,2_1,2_1_1,2_1_1,2_0_1 -15211,2,45.0,0.0,2,120,550.0,0.0,0.0,0,52,2987.1697540360015,0.0,760.1958251667618,2610.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,120359,2,1,1,0,1,,350.0,,32,2.0,1.0,4.0,3.0,2.0,1,1,2991.81348993117,550.0,25328.393792306593,0,1,1,2,120.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10304640797209881,12664.196896153297,2,1,2_0,2_1_0,2_1_0,2_0_1 -15212,2,73.0,0.0,2,120,250.0,0.0,0.0,77,74,896.1509262108004,0.0,345.54355689398267,850.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,103881,2,1,2,0,1,,300.0,,41,0.0,7.0,6.0,2.0,1.5,3,2,3025.8867768505,250.0,52403.69029592219,5,5,0,1,130.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016220231727957963,34935.79353061479,9,5,9,9_1,9_1,9_0_1 -15213,2,67.0,0.0,2,120,323.0,0.0,0.0,77,71,2837.8112663342013,0.0,446.44227550702556,2423.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121248,2,1,2,0,1,,352.0,,41,0.0,2.0,4.0,2.0,1.5,5,4,2575.24708991999,323.0,43062.452680996634,5,5,0,1,74.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056267115529842184,28708.30178733109,8,4,8,8_1,8_1,8_0_1 -15214,2,33.0,0.0,5,120,1980.0,0.0,0.0,85,48,0.0,310.55175144583734,2736.7049706003427,2280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123339,2,1,1,0,1,,600.0,,42,1.0,0.0,6.0,4.0,2.1,1,1,2476.78865771379,1980.0,53492.36859068473,6,1,1,2,200.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04262290229558172,25472.556471754633,7,4,7,7_1,7_1,7_0_0 -15215,2,55.0,0.0,1,120,900.0,0.0,0.0,0,52,0.0,258.79312620486445,1243.9568048183376,1200.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,106449,2,1,3,0,1,,400.0,,32,2.0,0.0,3.0,2.0,1.5,1,1,2491.40285698402,900.0,23260.664026399114,0,1,0,1,50.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051589240902069254,15507.109350932742,3,2,3_0,3_1_0,3_1_0,3_1_0 -15216,1,84.0,30.0,2,120,560.0,0.0,0.0,0,77,0.0,0.0,774.0175674425211,2233.0,2878.107078010191,0.0,30,2,2,2,1,2,2,2,2,0,,2,,2,116334,1,3,0,0,1,,200.0,434.0,11,0.0,6.0,4.0,1.0,1.0,3,2,4118.2632232596,560.0,19377.754454651607,0,5,2,3,70.0,0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.1152352304404379,19377.754454651607,5,3,5,5_0,5_1,5_0_1 -15217,2,82.0,0.0,2,120,650.0,0.0,0.0,78,77,2240.377315527001,0.0,898.4132479243549,2250.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,113657,2,1,1,0,1,,322.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,3279.66320492935,650.0,32863.82911152044,5,5,0,1,90.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06846432874163348,21909.219407680295,6,3,6,6_1,6_1,6_0_1 -15218,2,78.0,0.0,1,120,2000.0,0.0,0.0,77,72,0.0,0.0,2764.3484551518613,2075.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105148,1,1,3,0,2,,350.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,2655.82852750357,2000.0,25886.816870152357,5,5,0,1,108.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08015662993283992,17257.877913434906,4,2,4_0,4_1_0,4_1_0,4_1_0 -15219,2,28.0,0.0,1,120,1250.0,0.0,0.0,62,52,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,1,116457,2,3,1,0,1,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,5,3,3368.63886508551,1250.0,26346.7382983836,4,1,2,3,56.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04744420299178699,17564.4921989224,4,2,4_0,4_1_0,4_1_0,4_1_0 -15220,2,80.0,0.0,2,120,1100.0,0.0,0.0,0,77,0.0,0.0,1520.3916503335236,1280.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102538,2,2,2,0,1,,200.0,,11,0.0,3.0,3.0,1.0,1.0,2,1,2628.31846205924,1100.0,16080.90956435934,0,5,0,1,55.0,0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07959748762202526,16080.90956435934,4,2,4_0,4_1_0,4_1_0,4_0_1 -15221,2,55.0,0.0,7,120,100.0,0.0,0.0,45,38,0.0,0.0,138.21742275759306,100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,118257,2,1,2,0,1,,270.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,2720.23142525311,100.0,85181.17991787624,1,1,0,1,119.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0011739682415342295,56787.453278584166,10,5,10,10_1,10_1,10_0_0 -15222,2,39.0,0.0,9,120,700.0,0.0,0.0,0,65,0.0,0.0,967.5219593031513,700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,119744,1,1,1,0,1,,300.0,605.0,32,1.0,0.0,3.0,2.0,1.3,2,2,3027.11019555883,700.0,26370.80169946765,0,1,2,3,55.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026544509642804335,20285.232076513577,5,3,5,5_1,5_1,5_0_0 -15223,1,52.0,260.0,1,120,750.0,0.0,0.0,0,35,0.0,414.0690019277831,1036.630670681948,1150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114502,1,3,3,0,1,,650.0,480.0,32,1.0,1.0,3.0,2.0,1.5,2,2,3083.69704136627,750.0,8187.943311105504,0,4,2,3,55.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.14045041059825455,5458.628874070336,1,1,1_1,1_1_1,1_1_1,1_1_0 -15224,2,57.0,0.0,5,120,78.0,0.0,0.0,0,74,0.0,0.0,107.80958975092258,78.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107311,2,1,2,0,2,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,3301.76835439313,78.0,40099.134504613,0,5,0,1,120.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0019451791407374861,40099.134504613,9,5,9,9_1,9_1,9_0_0 -15225,2,59.0,0.0,8,120,105.0,0.0,0.0,75,43,0.0,0.0,145.12829389547272,105.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,122406,2,1,2,0,1,,478.0,,42,2.0,0.0,5.0,3.0,2.0,2,2,2783.09285137299,105.0,33021.79067576992,5,1,0,1,100.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003179718538917541,16510.89533788496,4,2,4_0,4_1_0,4_1_0,4_0_0 -15226,2,56.0,0.0,6,120,800.0,0.0,0.0,78,48,0.0,207.03450096389156,1105.7393820607444,1100.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,128581,2,2,1,0,1,,400.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2944.47842111838,800.0,49490.56893893439,5,1,0,1,83.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022226456950965187,32993.71262595626,8,4,8,8_1,8_1,8_0_0 -15227,2,33.0,0.0,9,120,1200.0,0.0,0.0,69,43,0.0,0.0,1658.6090730911167,1218.0,30.96588607542345,0.0,50,0,0,0,0,0,0,0,0,2,55.0,1,2009.0,6,104743,2,1,1,0,1,,650.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2872.91905200816,1200.0,42226.75522214288,4,1,1,2,89.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028844271684917547,20107.978677210893,5,3,5,5_1,5_1,5_0_0 -15228,2,27.0,0.0,5,120,50.0,0.0,0.0,34,47,0.0,0.0,69.10871137879653,50.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,119973,1,3,3,0,2,,300.0,350.0,43,2.0,0.0,4.0,2.0,1.5,2,2,3361.3440052205,50.0,75989.80306503327,1,1,3,4,90.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0006579830185532816,50659.86871002218,10,5,10,10_1,10_1,10_0_0 -15229,2,66.0,0.0,5,120,280.0,0.0,0.0,0,75,0.0,0.0,387.00878372126056,280.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,108663,2,2,4,0,2,,340.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2972.66407591003,280.0,27796.38038152107,0,5,0,1,80.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010073254004904284,27796.38038152107,7,4,7,7_1,7_1,7_0_0 -15230,2,31.0,0.0,2,120,0.0,0.0,0.0,54,47,0.0,0.0,0.0,1741.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118798,2,1,1,0,1,,197.0,600.0,43,2.0,2.0,3.0,3.0,1.8,2,2,3942.90870334065,0.0,54215.92422920301,1,1,2,3,60.0,0,1,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03211233645376506,30119.957905112784,8,4,8,8_1,8_1,8_0_1 -15231,1,64.0,150.0,6,120,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,620.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,126279,2,3,3,0,1,,340.0,230.0,21,1.0,1.0,4.0,2.0,1.5,1,1,2352.84728734097,500.0,14674.123727763475,0,5,2,3,80.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042251245219294326,9782.749151842318,2,1,2_1,2_1_1,2_1_1,2_0_0 -15232,0,56.0,0.0,6,120,0.0,0.0,0.0,77,52,0.0,0.0,0.0,27.0,46.448829113135176,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,4,113865,2,1,1,0,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,2500.29240123677,0.0,27553.697281097884,7,1,5,0,80.0,0,1,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.000979904791888756,18369.131520731924,4,2,4_0,4_1_0,4_1_0,4_0_0 -15233,2,48.0,0.0,5,120,1540.0,0.0,0.0,68,64,0.0,0.0,2128.548310466933,1572.0,55.050464134086134,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,131719,1,2,2,0,1,,469.0,500.0,43,2.0,1.0,3.0,3.0,2.0,2,2,2966.48531409071,1540.0,29835.190910328478,1,1,2,3,80.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05268945671320635,14917.595455164239,3,2,3_0,3_1_0,3_1_0,3_0_0 -15234,2,68.0,0.0,6,120,90.0,0.0,0.0,77,75,0.0,0.0,124.39568048183375,90.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,129833,2,1,2,0,1,,258.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,2832.93755510288,90.0,36459.82840608692,6,5,0,1,130.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002468470202261693,24306.552270724613,7,4,7,7_1,7_1,7_0_0 -15235,2,40.0,0.0,8,120,120.0,0.0,0.0,46,90,0.0,155.27587572291867,165.86090730911167,270.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118314,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,3129.04681294928,120.0,19698.07121670119,1,1,1,2,170.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013706925771040872,10943.372898167328,2,1,2_0,2_1_0,2_1_0,2_0_0 -15236,2,66.0,0.0,7,120,960.0,0.0,0.0,77,75,0.0,745.3242034700096,1326.8872584728933,1740.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,123343,2,2,3,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2925.68678881209,960.0,43594.221558781195,5,5,0,1,100.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039913546745039,29062.814372520796,8,4,8,8_1,8_1,8_0_0 -15237,2,54.0,0.0,8,120,3000.0,0.0,0.0,65,54,0.0,207.03450096389156,4146.522682727792,3350.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,127497,2,1,3,0,1,,400.0,,43,4.0,1.0,6.0,4.0,2.5,1,1,2878.62260466383,3000.0,47910.09747671483,1,1,1,2,120.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0699226296007467,19164.03899068593,5,3,5,5_1,5_1,5_0_0 -15238,2,52.0,0.0,1,120,1700.0,0.0,0.0,46,47,0.0,621.1035028916747,2349.696186879082,2360.0,103.2196202514115,0.0,42,2,2,2,1,1,2,2,2,2,50.0,1,,1,117205,1,1,2,0,2,,170.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,2823.16055560969,1700.0,73412.66178111131,1,1,0,1,220.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03214704306781062,48941.77452074087,10,5,10,10_1,10_1,10_1_0 -15239,2,57.0,0.0,1,120,800.0,0.0,0.0,77,64,0.0,207.03450096389156,1105.7393820607444,1060.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,109537,2,1,2,0,1,,200.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,2952.35365722437,800.0,41629.89665793574,5,1,0,1,120.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025462470125972234,27753.264438623824,7,4,7,7_1,7_1,7_1_0 -15240,2,77.0,0.0,1,120,1500.0,0.0,0.0,77,78,0.0,569.3448776507017,2073.261341363896,2170.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,104180,2,1,2,0,1,,230.0,,41,0.0,4.0,4.0,2.0,1.5,4,3,2632.79712110608,1500.0,28666.619979778316,5,5,0,1,100.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07569779770097546,19111.07998651888,5,3,5,5_1,5_1,5_1_0 -15241,2,70.0,0.0,2,120,600.0,0.0,0.0,77,77,1792.3018524216009,0.0,829.3045365455583,1920.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,129455,2,1,2,0,1,,100.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,2944.47842111838,600.0,32942.89478496758,5,5,0,1,88.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05828267407987866,21961.929856645056,6,3,6,6_1,6_1,6_0_1 -15242,2,61.0,0.0,1,120,1300.0,0.0,0.0,68,64,0.0,41.40690019277831,1796.8264958487098,1440.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,106516,2,2,3,0,1,,300.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,2558.67578139306,1300.0,37383.33699680109,5,5,0,1,85.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03851983572582676,24922.22466453406,7,4,7,7_1,7_1,7_1_0 -15243,1,75.0,105.0,6,120,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129760,2,1,1,0,1,,114.0,255.0,11,0.0,3.0,2.0,1.0,1.0,1,1,4196.0170385544,600.0,13642.594855305466,0,5,2,3,48.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04397990311694011,13642.594855305466,3,2,3_1,3_1_1,3_1_1,3_0_0 -15244,2,65.0,0.0,5,120,200.0,0.0,0.0,77,74,0.0,103.51725048194578,276.4348455151861,300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,121921,2,1,2,0,1,,250.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,2853.13680499504,200.0,46755.22945274183,6,5,0,1,115.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006416394561879481,31170.152968494553,8,4,8,8_1,8_1,8_0_0 -15245,2,38.0,0.0,9,120,120.0,0.0,0.0,54,48,0.0,0.0,165.86090730911167,120.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,125645,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2680.49994135369,120.0,49847.00033127782,1,1,1,2,92.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002407366525618249,23736.666824418007,6,3,6,6_1,6_1,6_0_0 -15246,2,55.0,0.0,2,120,600.0,0.0,0.0,0,56,0.0,0.0,829.3045365455583,630.0,51.60981012570575,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,100267,1,3,3,0,1,,117.0,340.0,12,1.0,1.0,2.0,1.0,1.0,3,3,2881.25594442821,600.0,14076.906598780613,0,1,2,3,50.0,0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044754150748899095,14076.906598780613,3,2,3_0,3_1_0,3_1_0,3_0_1 -15247,2,44.0,0.0,8,120,540.0,0.0,0.0,47,46,0.0,232.913813584378,746.3740828910024,1565.0,1376.2616033521533,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,1999.0,6,115230,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2983.60446560881,540.0,55732.22093863922,1,1,1,2,110.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028080704010038534,30962.344965910677,8,4,8,8_1,8_1,8_0_0 -15248,2,55.0,0.0,5,120,400.0,0.0,0.0,0,62,1493.5848770180007,207.03450096389156,552.8696910303722,1660.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,119258,2,1,1,0,1,,300.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,2873.91297241095,400.0,22363.39758452594,0,1,0,1,160.0,0,1,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07422843482193489,22363.39758452594,6,3,6,6_1,6_1,6_0_0 -15249,2,49.0,0.0,6,120,180.0,0.0,0.0,46,37,0.0,0.0,248.7913609636675,270.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,112481,2,2,3,0,2,,800.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,2450.58430556879,180.0,99642.0,1,1,1,2,120.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002709700728608418,43322.608695652176,10,5,10,10_1,10_1,10_0_0 -15250,2,82.0,0.0,1,120,1500.0,0.0,0.0,77,74,746.7924385090004,0.0,2073.261341363896,2060.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,125067,2,1,3,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,3122.75888894828,1500.0,48464.4172281526,5,5,0,1,120.0,0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04250541155384743,32309.611485435064,8,4,8,8_1,8_1,8_1_0 -15251,2,91.0,0.0,1,400,2000.0,0.0,0.0,0,77,0.0,0.0,2764.3484551518613,2030.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,124249,2,1,4,0,1,,75.0,,11,0.0,1.0,4.0,1.0,1.0,4,2,1701.76561577077,2000.0,17297.16614684632,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11736026484142413,17297.16614684632,4,2,4_0,4_1_0,4_0_0,4_1_0 -15252,1,50.0,320.0,1,400,1200.0,0.0,0.0,85,63,0.0,621.1035028916747,1658.6090730911167,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,115294,2,3,3,0,1,,650.0,450.0,42,1.0,0.0,4.0,6.0,3.0999999999999996,2,2,2066.92458417183,1200.0,27351.078207656385,6,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06581093389934903,8822.928454082707,1,1,1_1,1_1_1,1_0_1,1_1_0 -15253,2,74.0,0.0,5,400,1715.0,0.0,0.0,78,75,0.0,0.0,2370.428800292721,1715.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,112484,2,1,2,0,1,,285.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1796.90648155163,1715.0,53198.994967886305,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03223745112168498,35465.99664525754,9,5,9,9_1,9_0,9_0_0 -15254,2,57.0,0.0,2,400,480.0,0.0,0.0,0,75,4480.754631054002,0.0,663.4436292364467,3530.0,86.01635020950958,0.0,50,2,2,2,2,1,2,1,2,0,,1,,2,121161,1,3,4,0,2,,113.0,550.0,11,0.0,0.0,3.0,1.0,1.0,2,2,2072.11545801575,480.0,10034.085997631479,0,7,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.3518008517002194,10034.085997631479,2,1,2_0,2_1_0,2_0_0,2_0_1 -15255,2,31.0,0.0,1,400,1200.0,0.0,0.0,85,21,1792.3018524216009,0.0,1658.6090730911167,2750.0,602.1144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130721,2,1,1,0,1,,360.0,,42,1.0,4.0,5.0,5.0,2.8,1,1,1557.82868293228,1200.0,27620.603619351743,6,1,0,1,110.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09956335632264299,9864.501292625622,2,1,2_0,2_1_0,2_0_0,2_1_0 -15256,2,71.0,0.0,1,400,400.0,0.0,0.0,35,77,0.0,931.655254337512,552.8696910303722,1460.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128898,2,2,2,0,1,,300.0,,41,0.0,0.0,4.0,2.0,1.5,3,3,1828.16491591555,400.0,33869.62656496382,5,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04310646877666747,22579.751043309214,6,3,6,6_1,6_0,6_1_0 -15257,2,81.0,0.0,7,400,1250.0,0.0,0.0,0,71,0.0,0.0,1727.717784469913,1300.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111208,2,1,2,0,1,,100.0,,11,0.0,4.0,4.0,1.0,1.0,4,4,1991.70782399264,1250.0,25662.28881223306,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050657991167970096,25662.28881223306,7,4,7,7_1,7_0,7_0_0 -15258,2,55.0,0.0,6,400,700.0,0.0,0.0,54,63,1493.5848770180007,207.03450096389156,967.5219593031513,1960.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,4,101385,2,1,2,0,1,,160.0,,43,2.0,2.0,3.0,2.0,1.5,3,2,1454.76104836842,700.0,37208.342420525776,1,1,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05267635891564943,24805.56161368385,7,4,7,7_1,7_0,7_0_0 -15259,1,32.0,120.0,1,400,1800.0,0.0,0.0,85,64,0.0,0.0,2487.913609636675,1840.0,68.81308016760767,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,1,116534,1,3,4,0,2,,170.0,500.0,42,1.0,0.0,3.0,4.0,2.1,2,2,2238.86527219543,1800.0,30384.506681420346,6,1,2,3,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.06055717867307457,14468.812705438258,3,2,3_1,3_1_1,3_0_1,3_1_0 -15260,0,82.0,0.0,1,400,600.0,0.0,0.0,0,72,0.0,0.0,829.3045365455583,4100.0,6021.144514665671,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128394,2,1,3,0,1,,100.0,,11,0.0,4.0,4.0,1.0,1.0,3,2,1998.91330563214,600.0,62314.0,0,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06579580832557692,62314.0,10,5,10,10_1,10_0,10_1_0 -15261,1,24.0,120.0,1,400,1200.0,0.0,0.0,55,52,0.0,62.110350289167464,1658.6090730911167,1310.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,1,1.0,1,,1,120458,2,2,5,0,1,,160.0,400.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2306.41532883079,1200.0,20032.124454904177,4,1,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06539496112601734,13354.749636602784,3,2,3_1,3_1_1,3_0_1,3_1_0 -15262,2,68.0,0.0,1,400,2000.0,0.0,0.0,74,75,5227.547069563002,0.0,2764.3484551518613,5500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121820,2,1,2,0,2,,700.0,,41,0.0,4.0,8.0,2.0,1.5,1,1,1684.61930737327,2000.0,60321.67598927133,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09117783797947221,40214.45065951422,9,5,9,9_1,9_0,9_1_0 -15263,2,26.0,0.0,5,400,360.0,550.0,0.0,0,52,0.0,0.0,497.582721927335,910.0,0.0,997.5090954660969,71,0,0,0,0,0,0,0,0,2,2.0,2,,3,103421,2,1,0,1,1,,150.0,292.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2080.48013294376,360.0,15693.475776879732,0,1,2,3,63.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.057985879797300806,15693.475776879732,3,2,3_0,3_0_0,3_0_0,3_0_0 -15264,1,54.0,169.0,6,400,135.0,1500.0,0.0,85,64,0.0,0.0,186.5935207227506,1695.0,103.2196202514115,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,10.0,2,,4,115213,2,2,0,0,1,,200.0,342.0,42,1.0,2.0,4.0,3.0,1.8,1,1,2215.52803917311,135.0,32388.7690572247,7,1,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052332955198305386,17993.760587347057,4,2,4_1,4_0_1,4_0_1,4_0_0 -15265,2,64.0,0.0,2,400,0.0,2300.0,0.0,0,78,0.0,0.0,0.0,3997.0,51.60981012570575,4171.401671949133,71,0,0,0,0,0,0,0,0,0,,2,,2,119335,2,3,0,0,1,,70.0,309.0,11,0.0,4.0,3.0,1.0,1.0,2,2,2081.11877080135,0.0,23710.52174837922,0,5,2,3,60.0,0,0,2,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1685749492321156,23710.52174837922,6,3,6,6_0,6_0,6_0_1 -15266,2,53.0,0.0,7,400,600.0,0.0,0.0,64,67,0.0,0.0,829.3045365455583,720.0,206.439240502823,0.0,12,2,2,2,2,1,2,2,2,2,20.0,1,,5,118734,2,1,1,0,1,,150.0,400.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1422.04023339021,600.0,36896.142298433835,1,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.019514235232949068,24597.42819895589,7,4,7,7_1,7_0,7_0_0 -15267,1,28.0,352.0,6,400,1000.0,0.0,0.0,67,56,0.0,0.0,1382.1742275759307,1100.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,4,109831,2,2,0,0,1,,140.0,362.0,43,2.0,1.0,3.0,3.0,1.8,1,1,2243.66120204707,1000.0,15652.284582350512,4,1,2,3,62.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07027728087951825,8695.713656861395,1,1,1_1,1_0_1,1_0_1,1_0_0 -15268,1,54.0,250.0,1,400,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1073.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,129495,2,1,0,0,2,,102.0,360.0,12,1.0,3.0,2.0,1.0,1.0,1,1,2543.61584073287,0.0,8775.626419390916,0,4,2,3,53.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12227047377826654,8775.626419390916,1,1,1_1,1_0_1,1_0_1,1_1_0 -15269,2,79.0,0.0,6,400,1600.0,0.0,0.0,0,71,0.0,0.0,2211.478764121489,1650.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,128746,2,1,2,0,1,,70.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1797.99510078597,1600.0,14696.826228695216,0,5,0,1,75.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11226913718136049,14696.826228695216,3,2,3_0,3_1_0,3_0_0,3_0_0 -15270,2,77.0,0.0,2,400,700.0,0.0,0.0,0,71,149.35848770180007,0.0,967.5219593031513,870.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,100343,2,1,2,0,1,,120.0,,21,0.0,0.0,3.0,2.0,1.5,4,4,1805.75122819931,700.0,26831.86968036902,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03242412885735344,17887.913120246016,4,2,4_0,4_1_0,4_0_0,4_0_1 -15271,2,65.0,0.0,1,400,1700.0,0.0,0.0,77,75,0.0,0.0,2349.696186879082,1760.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,121092,2,1,2,0,1,,160.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1743.92503182742,1700.0,32779.68422914272,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0536917923826513,21853.122819428478,6,3,6,6_1,6_0,6_1_0 -15272,2,71.0,0.0,1,400,1100.0,0.0,0.0,86,78,0.0,621.1035028916747,1520.3916503335236,1820.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,123285,2,1,4,0,1,,140.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1805.75122819931,1100.0,20494.31012095972,5,5,0,1,95.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08880513612110658,13662.873413973146,3,2,3_0,3_1_0,3_0_0,3_1_0 -15273,2,51.0,0.0,1,400,550.0,0.0,0.0,0,62,0.0,388.18968930729665,760.1958251667618,960.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,100968,1,2,3,0,2,,150.0,261.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2020.50043322794,550.0,18258.755336235878,0,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0525775159544861,18258.755336235878,4,2,4_0,4_1_0,4_0_0,4_1_0 -15274,2,50.0,0.0,7,400,280.0,0.0,0.0,0,67,0.0,0.0,387.00878372126056,1460.0,2029.985864944426,0.0,31,0,0,0,0,0,0,0,0,1,5.0,8,,5,122820,2,3,0,0,1,,305.0,406.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2157.0655293614,280.0,17506.95228768234,0,1,2,3,78.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08339544062316527,17506.95228768234,4,2,4_0,4_0_0,4_0_0,4_0_0 -15275,2,44.0,0.0,1,400,360.0,0.0,0.0,0,42,0.0,20.703450096389155,497.582721927335,2780.0,4128.78481005646,0.0,41,1,2,2,1,1,2,2,2,2,12.0,1,,1,102223,2,3,2,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1802.47881186861,360.0,27074.236241628445,0,1,1,2,138.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.10268064351619878,27074.236241628445,7,4,7,7_1,7_0,7_1_0 -15276,2,37.0,0.0,1,400,300.0,0.0,0.0,0,34,1045.5094139126004,0.0,414.65226827277917,1060.0,103.2196202514115,0.0,20,2,2,2,1,2,2,2,2,1,10.0,1,,1,119287,2,1,3,0,1,,110.0,270.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2029.86080866265,300.0,31142.633137414865,0,1,2,3,50.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03403694206982493,31142.633137414865,8,4,8,8_1,8_0,8_1_0 -15277,2,46.0,0.0,6,400,800.0,0.0,0.0,56,62,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,4,131840,2,1,2,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,4,3,1888.20343792707,800.0,35983.92939595955,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02223214677855131,19991.071886644197,5,3,5,5_1,5_0,5_0_0 -15279,2,49.0,0.0,7,400,1200.0,0.0,0.0,0,52,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,130965,2,1,2,0,1,,350.0,322.0,32,2.0,0.0,4.0,3.0,2.0,3,3,1934.82104284991,1200.0,28004.43765478229,0,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04713538676519666,14002.218827391145,3,2,3_0,3_1_0,3_0_0,3_0_0 -15280,2,81.0,0.0,2,400,2000.0,0.0,0.0,0,75,0.0,0.0,2764.3484551518613,2040.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130947,2,1,3,0,1,,45.0,,11,0.0,7.0,6.0,1.0,1.0,3,2,1770.1465908888,2000.0,15209.970575105246,0,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13412254743864843,15209.970575105246,3,2,3_0,3_1_0,3_0_0,3_0_1 -15281,2,56.0,0.0,1,400,1500.0,0.0,0.0,65,47,0.0,0.0,2073.261341363896,1535.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,112602,2,2,2,0,2,,120.0,,43,2.0,2.0,2.0,2.0,1.5,4,4,1530.02989649081,1500.0,42669.689794330036,1,1,0,1,55.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03597401357729044,28446.45986288669,8,4,8,8_1,8_0,8_1_0 -15282,1,43.0,120.0,1,400,1250.0,0.0,0.0,85,68,0.0,0.0,1727.717784469913,1550.0,516.0981012570575,0.0,50,2,2,2,2,2,2,1,2,0,,1,,1,116686,2,2,1,0,1,,250.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,1549.41780194705,1250.0,35154.35824820422,6,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,0,0,1,0.04409126143212067,14647.649270085092,3,2,3_1,3_1_1,3_0_1,3_1_0 -15283,1,63.0,255.0,1,400,0.0,0.0,0.0,0,86,0.0,0.0,0.0,420.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,101955,2,2,0,0,1,,236.0,248.0,11,0.0,3.0,1.0,1.0,1.0,2,2,1967.0475841803,0.0,6046.957107914801,0,7,2,3,30.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06945642122221543,6046.957107914801,1,1,1_1,1_0_1,1_0_1,1_1_0 -15284,2,62.0,0.0,7,400,1800.0,0.0,0.0,0,68,0.0,103.51725048194578,2487.913609636675,1940.0,68.81308016760767,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,125501,1,2,5,0,1,,42.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1783.60778236539,1800.0,16642.156065350355,0,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11657143415684935,16642.156065350355,4,2,4_0,4_1_0,4_0_0,4_0_0 -15285,0,90.0,0.0,1,400,600.0,0.0,0.0,0,71,0.0,310.55175144583734,829.3045365455583,980.0,137.62616033521533,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,129567,2,2,4,0,1,,36.0,,11,0.0,2.0,4.0,1.0,1.0,2,1,1881.73811551819,600.0,13697.022420599107,0,5,0,1,50.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07154839715573269,13697.022420599107,3,2,3_0,3_1_0,3_0_0,3_1_0 -15286,2,57.0,0.0,1,400,1000.0,0.0,0.0,52,63,0.0,1035.1725048194578,1382.1742275759307,2060.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,116165,1,1,2,0,2,,140.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1439.41580953509,1000.0,45438.00150675282,1,1,0,1,59.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045336500983518185,30292.001004501883,8,4,8,8_1,8_0,8_1_0 -15287,2,78.0,0.0,1,400,300.0,0.0,0.0,0,75,1194.8679016144006,207.03450096389156,414.65226827277917,1350.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105425,2,2,3,0,1,,55.0,,11,0.0,5.0,4.0,1.0,1.0,3,3,1843.90260477995,300.0,22300.80976393856,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06053591839445276,22300.80976393856,6,3,6,6_1,6_0,6_1_0 -15288,2,59.0,0.0,5,400,750.0,0.0,0.0,35,35,1493.5848770180007,0.0,1036.630670681948,1810.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,113196,2,2,3,0,2,,150.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,1434.35290487357,750.0,12783.061024543465,1,1,0,1,72.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1415936289848575,8522.040683028978,1,1,1_0,1_1_0,1_0_0,1_0_0 -15289,2,67.0,0.0,1,400,2400.0,0.0,0.0,77,72,0.0,0.0,3317.2181461822333,2480.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,109810,2,1,1,0,1,,140.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1831.89498429439,2400.0,29884.519648038855,5,5,0,1,62.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08298610883520585,19923.01309869257,5,3,5,5_1,5_0,5_1_0 -15290,0,50.0,0.0,1,400,1710.0,0.0,0.0,0,21,8513.433799002603,0.0,2363.517929154841,7560.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,118985,2,2,1,0,1,,300.0,,12,1.0,2.0,8.0,1.0,1.0,2,2,1856.1428691283,1710.0,149705.31026574408,0,1,0,1,160.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05049921065979646,149705.31026574408,10,5,10,10_1,10_0,10_1_0 -15291,2,42.0,0.0,8,400,1200.0,0.0,0.0,56,47,0.0,0.0,1658.6090730911167,1300.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,105377,2,1,1,0,1,,130.0,,42,1.0,0.0,6.0,6.0,3.0999999999999996,2,2,1704.19880767865,1200.0,46799.62292484852,6,1,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027778001589618746,15096.652556402749,3,2,3_0,3_1_0,3_0_0,3_0_0 -15292,2,65.0,0.0,5,400,150.0,0.0,0.0,0,77,2987.1697540360015,0.0,207.32613413638958,2185.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,101508,2,1,2,0,1,,60.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1761.17798362862,150.0,21786.60151672077,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1002909975804651,21786.60151672077,6,3,6,6_1,6_0,6_0_0 -15294,2,62.0,0.0,5,400,680.0,0.0,0.0,0,77,0.0,103.51725048194578,939.8784747516328,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,130920,2,1,2,0,1,,69.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1915.37305247057,680.0,19947.901508664734,0,5,0,1,89.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03910185738891847,19947.901508664734,5,3,5,5_1,5_0,5_0_0 -15295,2,51.0,0.0,1,400,1800.0,35.0,0.0,67,47,0.0,590.048327747091,2487.913609636675,2405.0,0.0,63.47785152966071,33,0,0,0,0,0,0,0,0,2,20.0,1,,1,114519,2,1,3,0,1,,300.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,1832.97377635016,1800.0,53631.30128467844,4,1,1,2,100.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04484321548034241,26815.65064233922,7,4,7,7_1,7_0,7_1_0 -15296,2,64.0,0.0,1,400,2000.0,0.0,0.0,75,47,0.0,310.55175144583734,2764.3484551518613,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117178,2,2,3,0,1,,250.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,1765.56970567868,2000.0,44645.35572661107,5,1,0,1,190.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05151711667579063,29763.57048440738,8,4,8,8_1,8_0,8_1_0 -15297,2,41.0,0.0,1,400,1000.0,0.0,0.0,65,54,0.0,807.4345537591771,1382.1742275759307,1840.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,120988,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1412.82973871073,1000.0,43383.641714186946,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04241229936670574,20658.877006755687,5,3,5,5_1,5_0,5_1_0 -15298,2,79.0,0.0,5,111,420.0,1750.0,0.0,77,77,0.0,0.0,580.5131755818909,2170.0,0.0,3173.8925764830356,50,0,0,0,0,0,0,0,0,0,,1,,3,133418,2,1,2,0,1,,207.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,2026.53662420539,420.0,21536.708189688794,5,5,0,1,96.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1007582022696922,14357.80545979253,3,2,3_0,3_1_0,3_3_0,3_0_0 -15299,2,67.0,0.0,5,111,983.0,954.0,0.0,78,78,0.0,0.0,1358.6772657071397,1937.0,0.0,1730.2248674084663,71,0,0,0,0,0,0,0,0,0,,1,,3,106743,2,1,1,0,1,,144.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2203.42387829555,983.0,50507.35837163503,5,5,0,1,98.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038350847528937894,33671.57224775669,9,5,9,9_1,9_3,9_0_0 -15300,2,72.0,0.0,2,111,336.0,1676.0,0.0,77,77,0.0,0.0,464.41054046551267,2122.0,189.2359704609211,3039.6822618203246,71,0,0,0,0,0,0,0,0,0,,1,,2,131672,2,1,3,0,1,,350.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,2189.76669962464,336.0,59613.0,5,5,0,1,130.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03559626256017983,39742.0,9,5,9,9_1,9_3,9_0_1 -15301,1,43.0,152.0,7,111,527.0,1574.0,0.0,54,43,0.0,0.0,728.4058179325154,2101.0,0.0,2854.6896659338845,70,0,0,0,0,0,0,0,0,2,25.0,1,,5,127630,2,1,2,0,1,,271.0,800.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,2198.02166327812,527.0,55522.59916314836,1,1,2,3,109.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037840447523474055,17910.51585908012,4,2,4_1,4_1_1,4_3_1,4_0_0 -15302,2,57.0,0.0,7,111,437.0,875.0,0.0,52,47,0.0,31.055175144583732,604.0101374506817,1342.0,0.0,1586.9462882415178,70,0,0,0,0,0,0,0,0,2,16.0,1,,5,100597,2,1,3,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,2046.03256870803,437.0,53296.76194420429,1,1,0,1,130.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02517976610670875,35531.174629469526,9,5,9,9_1,9_3,9_0_0 -15303,2,42.0,0.0,9,111,1433.0,0.0,0.0,67,48,0.0,0.0,1980.6556681163086,1493.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,131436,1,1,1,0,2,,370.0,,43,2.0,0.0,4.0,4.0,2.3,4,4,2221.33002573139,1433.0,66507.5385597536,1,1,1,2,110.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022448583007753573,28916.321112936348,8,4,8,8_1,8_3,8_0_0 -15304,2,74.0,0.0,2,111,353.0,0.0,0.0,78,75,2413.6331612610893,0.0,487.9075023343035,2089.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104579,2,1,2,0,1,,201.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2080.24129449288,353.0,28885.805363444786,5,5,0,1,71.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07231925763245799,19257.203575629857,5,3,5,5_1,5_3,5_0_1 -15305,2,46.0,0.0,8,111,600.0,1337.0,0.0,38,37,0.0,0.0,829.3045365455583,1937.0,0.0,2424.853928433039,31,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,126230,2,1,2,0,1,,324.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,2126.68152589763,600.0,80007.49636206018,1,1,1,2,170.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024210231391749083,38098.80779145723,9,5,9,9_1,9_3,9_0_0 -15306,2,26.0,0.0,8,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,690.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,50.0,2,2002.0,6,123878,2,1,0,0,1,,129.0,355.0,12,1.0,0.0,1.0,1.0,1.0,2,2,3147.26419292747,0.0,17345.0739851003,0,1,2,3,25.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03978074700590618,17345.0739851003,4,2,4_0,4_0_0,4_3_0,4_0_0 -15307,2,77.0,0.0,7,111,321.0,1100.0,0.0,78,75,0.0,0.0,443.6779270518737,1421.0,0.0,1995.0181909321939,30,0,0,0,0,0,0,0,0,0,,1,,5,127013,2,1,1,0,1,,278.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2027.57706302307,321.0,33524.37485704721,5,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042387069290906985,22349.58323803147,6,3,6,6_1,6_3,6_0_0 -15308,2,57.0,0.0,6,111,450.0,1425.0,0.0,62,54,0.0,0.0,621.9784024091688,1875.0,0.0,2584.4553837076146,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,117934,2,1,2,0,1,,182.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,2131.62508584088,450.0,115096.94529759377,1,1,0,1,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01629061479565782,76731.29686506251,10,5,10,10_1,10_3,10_0_0 -15309,2,71.0,0.0,5,111,410.0,950.0,0.0,75,78,0.0,0.0,566.6914333061316,1360.0,0.0,1722.9702558050765,50,0,0,0,0,0,0,0,0,0,,1,,3,110754,2,1,1,0,1,,612.0,,41,1.0,3.0,5.0,3.0,2.0,2,2,2325.78965645582,410.0,45934.38518262444,5,5,0,1,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02960744972623354,22967.19259131222,6,3,6,6_1,6_3,6_0_0 -15310,2,58.0,0.0,5,111,718.0,841.0,0.0,52,62,0.0,103.51725048194578,992.4010953995181,1659.0,0.0,1525.2820896127046,70,0,0,0,0,0,0,0,0,2,15.0,1,,3,119458,2,1,2,0,1,,357.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1995.07139942492,718.0,38056.79705613759,1,1,0,1,99.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043592738441777135,25371.19803742506,7,4,7,7_1,7_3,7_0_0 -15311,2,60.0,0.0,5,111,1936.0,0.0,0.0,37,38,0.0,0.0,2675.889304587002,1936.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,3,124857,2,1,1,0,1,,436.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,2121.77751589344,1936.0,80861.98529791497,1,1,0,1,160.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02394202903709711,53907.99019860998,10,5,10,10_1,10_3,10_0_0 -15312,2,53.0,0.0,5,111,313.0,1600.0,0.0,52,55,0.0,0.0,432.6205332312663,1913.0,0.0,2901.844641355918,20,0,0,0,0,0,0,0,0,2,40.0,1,,3,123196,2,2,1,0,1,,376.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,2400.03811582018,313.0,54669.37691611628,1,1,0,1,98.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034992167606652504,27334.68845805814,7,4,7,7_1,7_3,7_0_0 -15313,2,64.0,0.0,2,111,655.0,1771.0,0.0,67,74,0.0,0.0,905.3241190622346,2426.0,0.0,3211.979287400832,44,2,2,2,1,1,1,2,2,0,,1,,2,101362,1,1,4,0,1,,340.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,2245.79979555279,655.0,53094.134883860075,1,5,1,2,150.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04569242921664917,35396.08992257338,9,5,9,9_1,9_3,9_0_1 -15314,2,68.0,0.0,1,111,413.0,1223.0,0.0,0,75,0.0,0.0,570.8379559888593,1636.0,0.0,2218.09749773643,31,0,0,0,0,0,0,0,0,0,,1,,1,111660,2,1,3,0,1,,157.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,2510.29216657981,413.0,34739.642689483066,0,5,0,1,85.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047093172909785735,34739.642689483066,9,5,9,9_1,9_3,9_1_0 -15315,2,83.0,0.0,1,111,280.0,2189.0,0.0,0,74,0.0,56.93448776507018,387.00878372126056,2524.0,0.0,3970.0861999550657,60,0,0,0,0,0,0,0,0,0,,1,,1,109198,1,3,3,0,2,,291.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,2309.39338709565,280.0,46383.58534878136,0,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05441580207784247,46383.58534878136,10,5,10,10_1,10_3,10_1_0 -15316,2,65.0,0.0,6,111,1676.0,0.0,0.0,77,71,0.0,0.0,2316.5240054172596,1676.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,120634,2,1,2,0,1,,151.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,2026.53662420539,1676.0,47958.11504990094,5,5,0,1,100.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03494716166922123,31972.076699933958,8,4,8,8_1,8_3,8_0_0 -15317,2,52.0,0.0,7,111,2400.0,0.0,0.0,0,37,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,5,129456,2,1,2,0,1,,250.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,2245.13399125987,2400.0,49001.79912932742,0,1,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04897779352276084,32667.866086218277,8,4,8,8_1,8_3,8_0_0 -15318,2,61.0,0.0,7,111,714.0,0.0,0.0,0,33,0.0,0.0,986.8723984892144,714.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,5,126338,2,2,0,0,1,,90.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,2938.40819011672,714.0,35168.70029658441,0,1,1,2,68.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02030214349631066,35168.70029658441,9,5,9,9_0,9_3,9_0_0 -15319,2,94.0,0.0,7,111,1050.0,0.0,0.0,0,86,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,131968,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,3,3,2919.84618467799,1050.0,15636.868038069893,0,5,0,1,49.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06714899668166571,15636.868038069893,3,2,3_0,3_0_0,3_3_0,3_0_0 -15320,2,77.0,0.0,2,111,400.0,1320.0,0.0,77,74,0.0,0.0,552.8696910303722,1720.0,0.0,2394.0218291186325,71,0,0,0,0,0,0,0,0,0,,1,,2,120588,2,1,1,0,1,,210.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,2190.62923971879,400.0,51693.21323350045,5,5,0,1,140.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03327322664642042,34462.14215566697,9,5,9,9_1,9_3,9_0_1 -15321,2,40.0,0.0,7,111,202.0,750.0,0.0,0,46,0.0,0.0,279.199193970338,952.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,3,30.0,2,,5,117078,2,2,0,0,1,,0.0,349.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2639.19229925031,202.0,25220.330744918825,0,1,2,3,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03774732415798317,25220.330744918825,7,4,7,7_0,7_3,7_0_0 -15322,2,45.0,0.0,6,111,1852.0,0.0,0.0,45,38,0.0,0.0,2559.7866694706236,1852.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,116800,2,1,3,0,1,,100.0,,43,2.0,0.0,6.0,3.0,2.0,2,1,2246.29231368052,1852.0,65806.0685118005,1,1,1,2,160.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02814330109491186,32903.03425590025,8,4,8,8_1,8_3,8_0_0 -15323,2,47.0,0.0,6,111,286.0,0.0,0.0,0,56,0.0,0.0,395.3018290867161,286.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,100.0,2,,4,104524,2,1,0,0,1,,0.0,337.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2756.42813683336,286.0,52635.43073517391,0,1,2,3,50.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005433602347418028,52635.43073517391,10,5,10,10_0,10_3,10_0_0 -15324,2,49.0,0.0,5,111,505.0,864.0,0.0,67,47,0.0,103.51725048194578,697.9979849258449,1469.0,0.0,1566.996106332196,50,0,0,0,0,0,0,0,0,0,,1,,3,127507,2,2,3,0,1,,314.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1829.07287039553,505.0,44509.33352666105,1,1,1,2,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033004313558639795,29672.889017774036,8,4,8,8_1,8_3,8_0_0 -15325,2,52.0,0.0,2,111,1731.0,0.0,0.0,0,46,0.0,0.0,2392.5435879339357,1731.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,2,130200,2,2,2,0,1,,545.0,,22,2.0,0.0,5.0,2.0,1.5,1,1,1905.5180048587,1731.0,63073.849263637894,0,1,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027444020306493684,42049.23284242526,9,5,9,9_1,9_3,9_0_1 -15326,2,27.0,0.0,2,111,0.0,0.0,0.0,67,38,0.0,0.0,0.0,1566.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,7.0,2,,2,123892,2,2,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,2871.13380284922,0.0,43892.85979318162,3,1,1,2,70.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035677784664267076,29261.906528787746,8,4,8,8_0,8_3,8_0_1 -15327,2,52.0,0.0,2,111,250.0,0.0,0.0,0,54,0.0,0.0,345.54355689398267,250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,7.0,2,,2,123140,1,1,0,1,2,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,3234.02768863394,250.0,23601.185308119242,0,1,1,2,60.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01059268832205624,23601.185308119242,6,3,6,6_0,6_3,6_0_1 -15328,2,32.0,0.0,1,111,1260.0,0.0,0.0,42,34,0.0,0.0,1741.5395267456724,1260.0,0.0,0.0,50,2,2,2,2,1,2,1,1,2,25.0,1,,1,133502,1,2,3,0,1,,0.0,664.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2338.82923887271,1260.0,62241.11502422004,1,1,2,3,67.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.020243853271421842,41494.07668281336,9,5,9,9_1,9_3,9_1_0 -15329,0,89.0,0.0,1,111,903.0,0.0,0.0,0,77,0.0,0.0,1248.1033275010652,1005.0,175.47335442739956,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111513,2,1,2,0,1,,40.0,,11,0.0,1.0,3.0,1.0,1.0,4,4,2194.37318827007,903.0,7677.0,0,6,0,1,50.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13091051191871825,7677.0,1,1,1_0,1_1_0,1_3_0,1_1_0 -15330,2,37.0,0.0,9,111,470.0,957.0,0.0,62,46,0.0,51.75862524097289,649.6218869606873,1477.0,0.0,1735.6658261110085,10,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,117931,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,2072.03512852288,470.0,55957.46788787227,1,1,1,2,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026395047091116,37304.97859191485,9,5,9,9_1,9_3,9_0_0 -15332,2,78.0,0.0,7,111,0.0,0.0,1200.0,0,77,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,70,0,0,0,0,0,0,0,0,0,,1,,5,128314,2,1,2,0,1,,200.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,2251.35732206261,0.0,34914.75247958535,0,5,0,1,135.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03436942595258665,34914.75247958535,9,5,9,9_1,9_3,9_0_0 -15333,1,28.0,54.0,1,111,1000.0,0.0,0.0,0,42,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,131273,2,2,0,0,1,,0.0,400.0,12,1.0,0.0,3.0,1.0,1.0,4,3,1763.07934224486,1000.0,14154.841003187896,0,4,2,3,55.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07064720824308687,14154.841003187896,3,2,3_1,3_0_1,3_3_1,3_1_0 -15334,2,21.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,332.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,40.0,2,,1,129400,1,1,0,0,1,,0.0,360.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2465.82537409351,0.0,15797.518477705064,0,1,2,3,26.0,8,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021015958960171464,15797.518477705064,3,2,3_0,3_0_0,3_3_0,3_1_0 -15335,2,29.0,0.0,6,111,630.0,0.0,0.0,0,38,0.0,0.0,870.7697633728362,630.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,4,116617,2,1,0,0,1,,0.0,526.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2014.61097025726,630.0,40554.52331747872,0,1,2,3,52.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015534641969974144,40554.52331747872,9,5,9,9_0,9_3,9_0_0 -15337,1,31.0,303.0,1,111,750.0,0.0,0.0,81,56,0.0,0.0,1036.630670681948,750.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,10.0,2,,1,125602,1,1,0,0,1,,0.0,418.0,43,2.0,1.0,2.0,3.0,1.8,2,2,2430.33627023804,750.0,9962.489245390356,4,1,2,3,45.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07528238992549227,5534.716247439086,1,1,1_1,1_0_1,1_3_1,1_1_0 -15338,2,23.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,189.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,2,,2,117862,1,1,0,1,1,540.0,132.0,428.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2425.12111350573,0.0,21609.140266925664,0,1,2,3,38.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008746298911728479,21609.140266925664,6,3,6,6_0,6_3,6_0_1 -15339,1,46.0,230.0,9,111,930.0,950.0,0.0,85,64,0.0,0.0,1285.4220316456153,1880.0,0.0,1722.9702558050765,50,1,2,2,2,1,2,2,2,2,10.0,1,2008.0,6,108658,1,2,5,0,1,,0.0,471.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,2,2,1170.91260783439,930.0,25290.401910481032,6,1,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.07433650151763214,9727.077657877322,1,1,1_1,1_1_1,1_3_1,1_0_0 -15340,2,31.0,0.0,2,111,267.0,45.0,0.0,54,47,0.0,0.0,369.04051876277344,312.0,0.0,81.6143805381352,31,2,2,2,1,2,2,2,2,2,10.0,2,,2,114435,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1954.49765077229,267.0,37924.74686658629,1,1,1,2,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.008226818259264072,21069.303814770163,5,3,5,5_0,5_3,5_0_1 -15341,2,50.0,0.0,1,111,485.0,2394.0,0.0,34,34,0.0,0.0,670.3545003743263,2929.0,86.01635020950958,4341.8850446287925,50,2,2,2,1,1,2,2,2,2,20.0,1,,1,112078,2,2,2,0,1,,415.0,,43,2.0,2.0,7.0,5.0,2.8,1,1,1243.60228361709,485.0,116646.3244456941,1,1,1,2,137.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02511009252900743,41659.401587747896,9,5,9,9_1,9_3,9_1_0 -15342,2,59.0,0.0,2,111,120.0,850.0,0.0,0,52,0.0,0.0,165.86090730911167,970.0,0.0,1541.6049657203316,31,0,0,0,0,0,0,0,0,1,10.0,2,,2,130203,2,2,0,0,2,,0.0,446.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2173.73239548229,120.0,18722.005021602563,0,1,2,3,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05181069008798771,18722.005021602563,5,3,5,5_0,5_3,5_0_1 -15343,2,31.0,0.0,7,111,950.0,0.0,0.0,43,47,0.0,0.0,1313.065516197134,950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,30.0,2,,5,106664,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1581.26732229239,950.0,51640.016154063895,1,1,1,2,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01839658603447664,34426.6774360426,9,5,9,9_0,9_3,9_0_0 -15344,1,26.0,238.0,2,111,140.0,500.0,0.0,0,68,0.0,0.0,193.50439186063028,640.0,0.0,906.8264504237244,70,2,2,2,1,2,2,2,2,0,,2,,2,130147,2,1,0,0,1,,0.0,237.0,22,1.0,6.0,4.0,2.0,1.5,2,2,457.187482130915,140.0,16064.060788899613,0,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03984048668704272,10709.373859266409,2,1,2_1,2_0_1,2_3_1,2_0_1 -15345,2,53.0,0.0,2,111,350.0,2173.0,0.0,0,90,0.0,0.0,483.76097965157567,2523.0,0.0,3941.0677535415066,41,0,0,0,0,0,0,0,0,0,,1,,2,126818,2,1,2,0,1,,260.0,,22,1.0,3.0,7.0,2.0,1.5,2,2,369.738060617712,350.0,55303.76155341178,0,1,0,1,150.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04562076663742508,36869.17436894119,9,5,9,9_1,9_3,9_0_1 -15346,2,73.0,0.0,2,111,300.0,480.0,0.0,0,78,0.0,0.0,414.65226827277917,780.0,0.0,870.5533924067755,71,0,0,0,0,0,0,0,0,0,,2,,2,108385,2,2,0,0,1,,0.0,317.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1866.01512852516,300.0,17402.956870972772,0,5,2,3,97.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.044819969720260554,17402.956870972772,4,2,4_0,4_0_0,4_3_0,4_0_1 -15347,0,43.0,0.0,8,111,0.0,0.0,0.0,38,53,0.0,0.0,0.0,192.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,2.0,2,2000.0,6,109453,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1820.1617541777,0.0,82988.38239835796,1,1,5,0,110.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0023135768459537896,39518.277332551406,9,5,9,9_0,9_3,9_0_0 -15348,2,65.0,0.0,2,111,600.0,2100.0,0.0,74,74,0.0,0.0,829.3045365455583,2700.0,0.0,3808.6710917796427,50,0,0,0,0,0,0,0,0,0,,1,,2,129591,2,2,2,0,1,,500.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1309.05630432875,600.0,61713.072851370365,5,5,0,1,200.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04375085983001809,41142.04856758024,9,5,9,9_1,9_3,9_0_1 -15349,1,33.0,430.0,8,111,463.0,329.0,0.0,63,56,0.0,0.0,639.9466673676559,792.0,0.0,596.6918043788107,50,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,108441,1,1,0,0,1,,0.0,404.0,43,2.0,1.0,3.0,4.0,2.3,2,2,1476.03488721205,463.0,14925.17057757008,4,1,2,3,72.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0530647201573855,6489.204598943514,1,1,1_1,1_0_1,1_3_1,1_0_0 -15350,2,87.0,0.0,1,111,256.0,1109.0,0.0,77,78,0.0,0.0,353.8366022594382,1365.0,0.0,2011.341067039821,70,0,0,0,0,0,0,0,0,0,,1,,1,107104,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1392.16061266653,256.0,28892.56144994163,5,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04724399400741804,19261.70763329442,5,3,5,5_1,5_3,5_1_0 -15351,1,36.0,69.0,2,111,200.0,0.0,0.0,0,65,0.0,0.0,276.4348455151861,622.0,0.0,0.0,71,2,2,1,1,2,2,2,2,2,20.0,2,,2,130063,2,1,0,4,1,,0.0,278.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1613.59262255336,200.0,14792.032129844203,0,1,2,3,58.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.042049665288724,14792.032129844203,3,2,3_1,3_0_1,3_3_1,3_0_1 -15352,1,53.0,300.0,6,111,200.0,900.0,0.0,84,56,0.0,0.0,276.4348455151861,1100.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,132160,1,1,3,0,1,,0.0,500.0,42,1.0,0.0,4.0,6.0,3.0999999999999996,3,3,1239.06251412166,200.0,18651.923702264336,3,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0589751501002795,6016.749581375593,1,1,1_1,1_1_1,1_3_1,1_0_0 -15353,2,38.0,0.0,2,111,500.0,0.0,0.0,0,65,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,2,126263,2,2,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,2043.67119355053,500.0,34218.48466297133,0,1,1,2,78.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014611985449521159,21386.55291435708,6,3,6,6_0,6_3,6_0_1 -15356,2,37.0,0.0,8,111,817.0,2030.0,0.0,31,37,0.0,0.0,1129.2363439295352,2847.0,0.0,3681.7153887203212,71,0,0,0,0,0,0,0,0,3,90.0,1,2001.0,6,104421,2,2,5,0,1,,710.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,1477.40705712986,817.0,146794.1988620537,1,1,1,2,250.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019394499388054154,81552.33270114094,10,5,10,10_1,10_3,10_0_0 -15357,2,42.0,0.0,7,111,800.0,0.0,0.0,0,65,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,5,109511,1,1,0,0,1,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2274.44873659801,800.0,25142.38076617363,0,1,2,3,30.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031818784682328655,25142.38076617363,7,4,7,7_0,7_3,7_0_0 -15358,2,46.0,0.0,2,111,400.0,0.0,0.0,0,54,0.0,103.51725048194578,552.8696910303722,500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,30.0,2,,2,131920,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1825.65422533371,400.0,21545.425902318366,0,1,1,2,42.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023206781906604045,21545.425902318366,6,3,6,6_0,6_3,6_0_1 -15359,2,38.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,607.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,2,,2,132966,2,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1830.97492280031,0.0,30519.8152522208,0,1,1,2,71.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01988871803396094,30519.8152522208,8,4,8,8_0,8_3,8_0_1 -15360,2,57.0,0.0,5,111,327.0,0.0,0.0,55,77,0.0,0.0,451.9709724173293,327.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,105747,1,1,0,1,2,,0.0,,42,1.0,2.0,3.0,2.0,1.5,4,3,1680.74047015185,327.0,41990.96939377222,1,5,1,2,72.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007787388686685051,27993.979595848145,7,4,7,7_0,7_3,7_0_0 -15361,2,31.0,0.0,1,111,490.0,1570.0,0.0,34,37,0.0,0.0,677.265371512206,2060.0,0.0,2847.435054330495,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,114121,1,3,4,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1361.22770446727,490.0,67668.31457182056,1,1,1,2,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030442608376385592,32223.00693896217,8,4,8,8_1,8_3,8_1_0 -15362,1,75.0,228.0,2,111,240.0,725.0,0.0,0,78,0.0,0.0,331.72181461822333,965.0,0.0,1314.8983531144004,70,0,0,0,0,0,0,0,0,0,,2,,2,120665,1,2,0,0,1,,0.0,354.0,31,0.0,2.0,4.0,2.0,1.5,1,1,1561.35077338606,240.0,24132.0,0,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.039988397149013755,16088.0,4,2,4_1,4_0_1,4_3_1,4_0_1 -15363,2,57.0,0.0,1,111,448.0,1914.0,0.0,74,33,0.0,0.0,619.2140539540169,2362.0,0.0,3471.331652222017,20,0,0,0,0,0,0,0,0,1,25.0,1,,1,115651,1,2,3,0,1,,364.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,1428.92297749805,448.0,99583.96525691162,5,1,1,2,150.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023718677940835115,66389.31017127441,10,5,10,10_1,10_3,10_1_0 -15364,2,44.0,0.0,1,111,1800.0,1500.0,0.0,34,31,0.0,0.0,2487.913609636675,3300.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,3,5.0,2,,1,114499,1,2,0,0,1,,0.0,,43,2.0,0.0,10.0,5.0,2.5999999999999996,2,2,1804.04802822469,1800.0,126310.02164192355,1,1,0,1,244.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026126192974261175,48580.77755458599,10,5,10,10_0,10_3,10_1_0 -15365,2,78.0,0.0,9,111,1321.0,0.0,0.0,77,74,0.0,0.0,1825.8521546278043,1321.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2007.0,6,104505,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1540.02172173258,1321.0,26172.955492159686,5,5,0,1,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05047194614286934,17448.636994773125,4,2,4_0,4_0_0,4_3_0,4_0_0 -15366,2,68.0,0.0,5,111,330.0,0.0,0.0,0,77,0.0,0.0,456.1174951000571,330.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,3,102941,1,3,0,1,1,750.0,0.0,367.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1702.41736784052,330.0,17982.027772911482,0,5,2,3,78.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.018351656674511378,17982.027772911482,4,2,4_0,4_0_0,4_3_0,4_0_0 -15367,2,26.0,0.0,2,111,300.0,200.0,0.0,0,48,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,70,2,2,2,2,1,2,2,2,2,10.0,2,,2,127492,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1814.30939049332,300.0,25453.09038112551,0,1,1,2,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019643980063449196,25453.09038112551,7,4,7,7_0,7_3,7_0_1 -15368,2,50.0,0.0,2,111,1150.0,0.0,0.0,0,52,0.0,0.0,1589.5003617123202,1330.0,309.6588607542345,0.0,71,2,2,2,2,1,2,2,2,1,30.0,1,,2,105559,1,3,4,0,2,,0.0,547.0,32,2.0,0.0,5.0,5.0,3.0,4,4,1371.77117410634,1150.0,58004.1502654234,0,1,2,3,85.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.02292939374017208,19334.716755141133,5,3,5,5_1,5_3,5_0_1 -15369,2,61.0,0.0,6,111,660.0,0.0,0.0,78,78,0.0,1552.7587572291866,912.2349902001142,2310.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,133165,2,1,2,0,1,,220.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1155.91435795805,660.0,41811.28452119194,7,5,0,1,130.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055248242823756885,27874.18968079463,7,4,7,7_1,7_3,7_0_0 -15370,2,67.0,0.0,1,111,658.0,1483.0,0.0,0,75,0.0,0.0,909.4706417449623,2141.0,0.0,2689.647251956767,71,2,2,2,2,2,2,2,1,0,,1,,1,106250,2,2,1,0,1,,336.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1472.86341451277,658.0,38103.85808025829,0,5,1,2,110.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05618853596111985,38103.85808025829,9,5,9,9_1,9_3,9_1_0 -15371,2,63.0,0.0,2,111,0.0,0.0,375.0,0,77,0.0,0.0,191.59250056407188,375.0,0.0,428.7171654947368,71,0,0,0,0,0,0,0,0,0,,2,,2,111618,2,1,0,1,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,1991.53056949756,0.0,22900.69466043901,0,5,1,2,66.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016375049122322613,22900.69466043901,6,3,6,6_0,6_3,6_0_1 -15372,1,53.0,270.0,2,111,350.0,0.0,0.0,0,85,0.0,0.0,483.76097965157567,350.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,2,133392,1,3,0,1,2,383.0,0.0,371.0,11,0.0,4.0,3.0,1.0,1.0,2,2,1796.23255444959,350.0,11126.246102377707,0,7,2,3,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.031457150666944544,11126.246102377707,2,1,2_1,2_0_1,2_3_1,2_0_1 -15373,1,85.0,327.0,2,111,380.0,120.0,0.0,77,74,0.0,0.0,525.2262064788536,500.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,2,132599,2,1,0,1,1,1020.0,0.0,359.0,41,0.0,6.0,3.0,2.0,1.5,1,1,477.89275577013,380.0,14015.977767241575,5,5,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03567357256863021,9343.98517816105,1,1,1_1,1_0_1,1_3_1,1_0_1 -15374,1,40.0,450.0,2,111,870.0,200.0,0.0,0,68,0.0,0.0,1202.4915779910596,1070.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,2,5.0,2,,2,105596,2,1,0,1,1,1080.0,0.0,380.0,32,1.0,0.0,5.0,8.0,3.8999999999999995,2,2,1818.07399779132,870.0,37350.48287226092,0,1,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02864755466908988,9577.046890323316,1,1,1_1,1_0_1,1_3_1,1_0_1 -15375,1,56.0,162.0,2,111,200.0,200.0,0.0,0,47,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,50,2,2,2,2,1,2,2,2,0,,2,,2,106368,1,3,0,1,1,885.0,0.0,279.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1871.09377509595,200.0,4994.120870568832,0,4,2,3,40.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.08009417680642557,4994.120870568832,1,1,1_1,1_0_1,1_3_1,1_0_1 -15376,1,43.0,160.0,5,111,629.0,2190.0,0.0,85,63,0.0,0.0,869.3875891452603,2819.0,0.0,3971.899852855913,60,0,0,0,0,0,0,0,0,0,,1,,3,117288,2,2,2,0,1,,680.0,,42,1.0,0.0,5.0,5.0,2.8,2,2,1205.32339106259,629.0,20990.415387712652,6,1,1,2,125.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13429939083769554,7496.57692418309,1,1,1_1,1_1_1,1_3_1,1_0_0 -15378,1,44.0,72.0,1,111,1300.0,0.0,0.0,81,45,0.0,207.03450096389156,1796.8264958487098,1570.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,103244,2,1,3,0,1,,400.0,,43,2.0,0.0,3.0,4.0,2.5,2,2,1766.94546135814,1300.0,48225.72975023806,4,1,1,2,65.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03255523572439564,19290.291900095224,5,3,5,5_1,5_2,5_1_0 -15379,2,69.0,0.0,2,111,200.0,1300.0,0.0,0,77,0.0,0.0,276.4348455151861,1500.0,0.0,2357.7487711016834,44,0,0,0,0,0,0,0,0,0,,1,,2,103003,2,2,2,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1653.60613806072,200.0,25776.76647381161,0,5,0,1,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05819193813638158,25776.76647381161,7,4,7,7_1,7_2,7_0_1 -15380,2,61.0,0.0,7,111,1300.0,0.0,0.0,55,77,0.0,310.55175144583734,1796.8264958487098,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111564,2,1,2,0,1,,500.0,,42,2.0,1.0,5.0,3.0,2.0,1,1,1734.58877310222,1300.0,57400.650742068276,1,5,0,1,118.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02787424845041658,28700.325371034138,8,4,8,8_1,8_2,8_0_0 -15381,2,53.0,0.0,7,111,1200.0,100.0,0.0,0,64,0.0,0.0,1658.6090730911167,1300.0,0.0,181.36529008474488,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,106580,2,1,2,0,1,,225.0,,32,1.0,1.0,4.0,2.0,1.5,1,1,1464.83822830167,1200.0,26416.978334136107,0,1,0,1,83.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04921077587136965,17611.31888942407,4,2,4_0,4_1_0,4_2_0,4_0_0 -15382,1,28.0,310.0,9,111,0.0,0.0,0.0,55,67,0.0,0.0,0.0,953.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,116478,2,1,1,0,1,,1153.0,700.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1677.51228003273,0.0,29645.43932290889,1,1,2,3,98.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032146597310283645,14116.875868051851,3,2,3_1,3_1_1,3_2_1,3_0_0 -15383,2,33.0,0.0,9,111,1200.0,0.0,0.0,56,67,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,109060,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1635.20726558383,1200.0,27389.0,1,1,1,2,75.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048194530650991274,13042.380952380952,2,1,2_0,2_1_0,2_2_0,2_0_0 -15384,2,44.0,0.0,1,111,220.0,1000.0,0.0,63,46,0.0,0.0,304.0783300667047,1220.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,119518,2,1,2,0,1,,120.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1634.39393388896,220.0,44617.67611969666,1,1,1,2,85.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02734342319234833,29745.11741313111,8,4,8,8_1,8_2,8_1_0 -15385,2,51.0,0.0,2,111,700.0,0.0,0.0,77,52,0.0,569.3448776507017,967.5219593031513,1340.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,3,120.0,1,,2,131056,2,1,2,0,1,,100.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1483.8930124911,700.0,42307.793230161784,5,1,1,2,90.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03167265171951101,28205.195486774523,8,4,8,8_1,8_2,8_0_1 -15386,2,51.0,0.0,2,111,1440.0,1800.0,0.0,54,62,0.0,20.703450096389155,1990.33088770934,3260.0,0.0,3264.575221525408,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,108682,1,2,2,0,1,,400.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,1466.78410220476,1440.0,69265.25324147414,1,1,0,1,80.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04706544547862854,27706.10129658966,7,4,7,7_1,7_2,7_0_1 -15387,2,51.0,0.0,7,111,550.0,1200.0,0.0,62,21,0.0,0.0,760.1958251667618,1750.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,5,118898,2,1,2,0,1,,500.0,,43,2.0,2.0,3.0,2.0,1.5,3,2,1552.56407307276,550.0,56627.839777111694,1,1,0,1,100.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030903527432585013,37751.89318474113,9,5,9,9_1,9_2,9_0_0 -15388,2,79.0,0.0,2,111,2045.0,0.0,0.0,78,78,0.0,0.0,2826.546295392778,2237.0,330.3027848045168,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,109293,2,1,2,0,1,,192.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1682.51645742065,2045.0,30042.421025146105,5,5,0,1,94.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07446137573691503,20028.280683430738,5,3,5,5_1,5_2,5_0_1 -15389,2,67.0,0.0,1,111,740.0,0.0,0.0,71,71,0.0,0.0,1022.8089284061887,740.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,125263,2,1,2,0,1,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1691.11435796103,740.0,31411.911473125678,5,5,0,1,200.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023557942363141567,20941.27431541712,5,3,5,5_1,5_2,5_1_0 -15390,2,66.0,0.0,6,111,1300.0,0.0,0.0,0,78,0.0,0.0,1796.8264958487098,1390.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,107227,2,1,2,0,1,,258.0,,21,0.0,3.0,7.0,2.0,1.5,2,2,1556.0172663113,1300.0,47544.9542146148,0,5,0,1,160.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029235489295575536,31696.636143076536,8,4,8,8_1,8_2,8_0_0 -15391,2,39.0,0.0,8,111,1100.0,0.0,0.0,68,63,0.0,258.79312620486445,1520.3916503335236,1450.0,172.03270041901916,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,115780,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1647.16458720458,1100.0,34924.0,1,1,1,2,102.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04151872637727637,19402.222222222223,5,3,5,5_1,5_2,5_0_0 -15392,2,53.0,0.0,6,111,700.0,0.0,0.0,0,38,4480.754631054002,414.0690019277831,967.5219593031513,4170.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,2,120.0,1,,4,110789,2,1,3,0,1,,400.0,,32,1.0,1.0,5.0,3.0,2.0,2,2,1684.95102070358,700.0,51254.08487946069,0,1,1,2,125.0,6,5,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08135936891287791,25627.042439730347,7,4,7,7_1,7_2,7_0_0 -15393,1,31.0,217.0,9,111,1450.0,0.0,0.0,47,63,0.0,0.0,2004.1526299850993,1478.0,48.169156117325365,0.0,10,0,0,0,0,0,0,0,0,2,3.0,1,2007.0,6,133589,2,1,1,0,1,,400.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,1564.77837923481,1450.0,19093.323500957005,7,1,1,2,96.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0774092577400639,7955.551458732086,1,1,1_1,1_1_1,1_2_1,1_0_0 -15394,2,60.0,0.0,6,111,1300.0,0.0,0.0,47,54,0.0,310.55175144583734,1796.8264958487098,1600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,4,125783,2,1,2,0,1,,100.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1654.83905030793,1300.0,82495.94444851074,1,1,0,1,160.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019394892811956697,54997.29629900716,10,5,10,10_1,10_2,10_0_0 -15395,2,32.0,0.0,8,111,870.0,1700.0,0.0,42,65,0.0,0.0,1202.4915779910596,2570.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,2,9.0,1,2003.0,6,105582,2,1,1,0,1,,500.0,,43,2.0,0.0,9.0,4.0,2.1,3,3,1642.89321406515,870.0,58511.34097173861,1,1,1,2,149.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04392310887630021,27862.543319875527,7,4,7,7_1,7_2,7_0_0 -15396,2,56.0,0.0,9,111,1060.0,0.0,0.0,0,37,0.0,0.0,1465.1046812304864,1060.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,122505,2,1,1,0,1,,210.0,780.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2037.10954214869,1060.0,59320.53534157908,0,1,2,3,90.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017869022824833183,59320.53534157908,10,5,10,10_1,10_2,10_0_0 -15397,2,64.0,0.0,1,111,900.0,1800.0,0.0,0,77,0.0,0.0,1243.9568048183376,2700.0,0.0,3264.575221525408,12,0,0,0,0,0,0,0,0,0,,1,,1,115564,2,3,4,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,3,2,1861.1985427074,900.0,19584.76808788392,0,5,0,1,70.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13786224007780568,19584.76808788392,5,3,5,5_1,5_2,5_1_0 -15398,2,55.0,0.0,1,111,1650.0,0.0,0.0,85,63,2091.018827825201,0.0,2280.5874755002856,3150.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,3,105.0,1,,1,125454,2,1,2,0,1,,350.0,,42,2.0,3.0,4.0,3.0,2.0,2,2,1759.81278623307,1650.0,33403.204431960745,6,1,0,1,97.0,6,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09430232977845764,16701.602215980372,4,2,4_0,4_1_0,4_2_0,4_1_0 -15399,2,38.0,0.0,5,111,2000.0,0.0,0.0,43,37,0.0,331.2552015422265,2764.3484551518613,2395.0,129.02452531426437,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,3,102267,2,1,2,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1450.38615566861,2000.0,87890.56860196158,1,1,1,2,110.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02724979526354489,41852.6517152198,9,5,9,9_1,9_2,9_0_0 -15400,2,41.0,0.0,2,111,1000.0,0.0,0.0,11,46,2240.377315527001,0.0,1382.1742275759307,2530.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,107870,2,1,2,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1449.69789970757,1000.0,109069.63940080689,1,1,1,2,80.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023196189277776995,51937.92352419376,10,5,10,10_1,10_2,10_0_1 -15401,2,42.0,0.0,8,111,900.0,984.0,0.0,62,54,0.0,0.0,1243.9568048183376,1884.0,0.0,1784.6344544338897,50,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,100453,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1451.1527695794,900.0,49161.47823193779,1,1,1,2,110.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038322688164735816,21374.555753016433,6,3,6,6_1,6_2,6_0_0 -15402,2,66.0,0.0,6,111,400.0,1000.0,0.0,77,78,0.0,558.9931526025072,552.8696910303722,1940.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,0,,1,,4,123225,2,1,4,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1613.64045345487,400.0,34526.56148739155,5,5,0,1,80.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0561886245379069,23017.70765826103,6,3,6,6_1,6_2,6_0_0 -15403,2,59.0,0.0,2,111,700.0,800.0,0.0,0,62,0.0,0.0,967.5219593031513,1500.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,1,10.0,1,,2,128370,2,1,1,0,1,,143.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,1704.02712173374,700.0,43065.69745692052,0,1,1,2,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034830505218230355,43065.69745692052,9,5,9,9_1,9_2,9_0_1 -15404,0,38.0,0.0,5,111,797.0,0.0,0.0,65,43,5999.730450981308,0.0,1101.5928593780166,4964.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,128391,1,2,2,0,2,,554.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1953.08044013451,797.0,42647.036646932,1,1,5,0,98.0,6,5,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11639730190625348,23692.798137184443,6,3,6,6_1,6_2,6_0_0 -15405,2,53.0,0.0,6,111,946.0,0.0,0.0,46,48,0.0,149.06484069400193,1307.5368192868302,1150.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,110324,2,1,2,0,1,,260.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,1536.29699778976,946.0,62172.426796462656,1,1,0,1,90.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01849694565992766,31086.213398231328,8,4,8,8_1,8_2,8_0_0 -15406,2,48.0,0.0,7,111,800.0,0.0,0.0,0,52,0.0,724.6207533736205,1105.7393820607444,1560.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,131252,2,1,2,0,1,,400.0,,32,2.0,0.0,5.0,3.0,2.0,2,2,1705.15174709989,800.0,32763.03796249173,0,1,1,2,120.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04761463212861831,16381.518981245865,4,2,4_0,4_1_0,4_2_0,4_0_0 -15407,1,68.0,30.0,6,111,500.0,2680.0,0.0,0,77,0.0,0.0,691.0871137879653,3180.0,0.0,4860.589774271163,71,0,0,0,0,0,0,0,0,0,,1,,4,122277,2,2,5,0,1,,223.0,396.0,11,0.0,3.0,2.0,1.0,1.0,3,2,1684.20196237156,500.0,14314.537294766717,0,5,2,3,40.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.22215178419791348,14314.537294766717,3,2,3_1,3_1_1,3_2_1,3_0_0 -15408,2,54.0,0.0,1,111,601.0,1908.0,0.0,43,56,0.0,310.55175144583734,830.6867107731342,2809.0,0.0,3460.4497348169325,42,2,2,2,2,1,2,2,2,2,10.0,1,,1,120122,2,3,3,0,1,,310.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,1740.45790486194,601.0,65588.04391954081,1,1,0,1,80.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.042827927654709455,26235.217567816326,7,4,7,7_1,7_2,7_1_0 -15409,2,50.0,0.0,1,112,2500.0,0.0,0.0,47,37,0.0,310.55175144583734,3455.435568939826,2800.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,13.0,1,,1,112271,2,1,3,0,1,,350.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,2234.95076151552,2500.0,99785.20642430973,1,1,1,2,170.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02806027166084874,49892.60321215486,10,5,10,10_1,10_0,10_1_0 -15410,0,35.0,0.0,8,112,0.0,0.0,0.0,85,21,0.0,0.0,0.0,498.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2002.0,6,114116,2,1,1,0,1,,0.0,,42,1.0,0.0,2.0,3.0,1.8,2,2,2597.25824618314,0.0,15814.305066152265,6,1,5,0,35.0,6,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03149047637040222,8785.725036751259,1,1,1_0,1_1_0,1_0_0,1_0_0 -15411,2,79.0,0.0,1,111,430.0,1734.0,0.0,77,78,0.0,0.0,594.3349178576501,2164.0,0.0,3144.8741300694765,20,0,0,0,0,0,0,0,0,0,,1,,1,106930,2,1,2,0,1,,500.0,,41,0.0,4.0,3.0,2.0,1.5,3,3,401.880887488518,430.0,25550.258688343176,5,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0846958156626134,17033.505792228785,4,2,4_0,4_1_0,4_4_0,4_1_0 -15412,0,27.0,0.0,2,111,150.0,160.0,0.0,46,47,0.0,0.0,207.32613413638958,310.0,0.0,290.18446413559184,20,0,0,0,0,0,0,0,0,0,,1,,2,114419,2,3,2,0,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,547.549539831644,150.0,38124.0,1,1,5,0,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008131360822578954,25416.0,7,4,7,7_1,7_4,7_0_1 -15413,2,67.0,0.0,2,111,400.0,1600.0,0.0,77,77,0.0,0.0,552.8696910303722,2000.0,0.0,2901.844641355918,41,0,0,0,0,0,0,0,0,0,,1,,2,116358,2,1,1,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,594.168793303045,400.0,76983.69111389363,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025979528534700907,51322.46074259575,10,5,10,10_1,10_4,10_0_1 -15414,2,49.0,0.0,2,111,1500.0,0.0,0.0,46,67,0.0,0.0,2073.261341363896,1660.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,103786,2,1,2,0,1,,560.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,546.841021409079,1500.0,45249.83126189711,1,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0366852196728038,18099.932504758843,4,2,4_0,4_1_0,4_4_0,4_0_1 -15415,2,63.0,0.0,6,111,390.0,840.0,0.0,0,75,0.0,0.0,539.0479487546129,1230.0,0.0,1523.468436711857,71,0,0,0,0,0,0,0,0,0,,1,,4,120875,1,3,3,0,1,,350.0,544.0,11,0.0,5.0,4.0,1.0,1.0,1,1,794.898206766004,390.0,27831.813249217827,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04419403037042753,27831.813249217827,7,4,7,7_1,7_4,7_0_0 -15416,1,33.0,50.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,897.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,5,110549,2,2,0,0,1,,925.0,396.0,32,1.0,0.0,2.0,2.0,1.3,2,2,1004.25284390287,0.0,24661.346590012294,0,1,2,3,52.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03637270968663487,18970.266607701764,5,3,5,5_0,5_4,5_0_0 -15417,2,57.0,0.0,6,111,230.0,765.0,0.0,0,54,0.0,0.0,317.900072342464,995.0,0.0,1387.4444691482984,71,2,2,2,2,1,2,2,2,2,20.0,1,,4,108778,2,2,2,0,1,,230.0,500.0,12,1.0,2.0,2.0,1.0,1.0,1,1,701.24383342958,230.0,29278.368116995574,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03398413449902695,29278.368116995574,8,4,8,8_1,8_4,8_0_0 -15418,2,75.0,0.0,6,111,1200.0,0.0,0.0,74,75,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,111113,2,1,2,0,1,,280.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,578.677306855648,1200.0,70406.56265343048,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017043865724660986,46937.70843562032,10,5,10,10_1,10_4,10_0_0 -15419,2,55.0,0.0,6,111,1200.0,1300.0,0.0,52,38,0.0,134.5724256265295,1658.6090730911167,2630.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,4,125960,2,1,2,0,1,,600.0,,43,2.0,4.0,6.0,2.0,1.5,1,1,629.70960076097,1200.0,62741.190282402735,1,4,0,1,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041918235662444014,41827.46018826849,9,5,9,9_1,9_4,9_0_0 -15420,2,65.0,0.0,6,111,450.0,830.0,0.0,85,78,0.0,0.0,621.9784024091688,1280.0,0.0,1505.3319077033825,50,0,0,0,0,0,0,0,0,0,,1,,4,111351,2,2,2,0,1,,530.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,640.067082954493,450.0,33156.05867259279,5,5,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03860531230927226,16578.029336296397,4,2,4_0,4_1_0,4_4_0,4_0_0 -15421,2,59.0,0.0,6,111,553.0,956.0,0.0,78,54,0.0,0.0,764.3423478494896,1509.0,0.0,1733.8521732101613,50,1,2,2,1,2,2,2,2,2,45.0,1,,4,102800,2,1,2,0,1,,434.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,649.494909664729,553.0,44109.63292455675,5,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.034210214412369516,29406.421949704498,8,4,8,8_1,8_4,8_0_0 -15422,2,41.0,0.0,7,111,1600.0,0.0,0.0,38,38,0.0,103.51725048194578,2211.478764121489,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,133433,2,1,2,0,1,,520.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,622.2156736261,1600.0,104152.73900470833,1,1,1,2,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01632218236644885,49596.54238319444,10,5,10,10_1,10_4,10_0_0 -15423,2,36.0,0.0,8,111,300.0,750.0,0.0,0,38,0.0,0.0,414.65226827277917,1050.0,0.0,1360.2396756355868,43,0,0,0,0,0,0,0,0,2,90.0,1,2001.0,6,102569,2,1,1,0,1,,270.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,697.955531779535,300.0,30269.32000797372,0,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034688588964780276,20179.54667198248,5,3,5,5_1,5_4,5_0_0 -15424,2,38.0,0.0,7,111,341.0,930.0,0.0,37,37,0.0,0.0,471.32141160339233,1271.0,0.0,1686.6971977881274,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,114700,2,1,2,0,1,,264.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,716.506567880908,341.0,102820.62320938343,1,1,1,2,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012361333362196626,68547.08213958895,10,5,10,10_1,10_4,10_0_0 -15425,2,38.0,0.0,8,111,503.0,1050.0,0.0,52,47,0.0,310.55175144583734,695.2336364706931,1853.0,0.0,1904.3355458898213,10,1,2,2,1,1,1,2,2,2,10.0,1,2001.0,6,119097,2,2,1,0,1,,441.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,662.667090037171,503.0,59845.52150572973,1,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03096305209442598,28497.867383680823,8,4,8,8_1,8_4,8_0_0 -15426,1,47.0,217.0,9,111,1048.0,1002.0,0.0,52,62,0.0,0.0,1448.518590499575,2050.0,0.0,1817.2802066491438,50,2,2,2,2,2,2,2,1,2,45.0,1,2004.0,6,121549,2,2,4,0,1,,1200.0,621.0,43,3.0,0.0,4.0,5.0,2.8,2,2,709.710620258549,1048.0,52633.73462477618,1,1,2,3,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,1,0.038948404756272176,18797.762365991493,5,3,5,5_1,5_4,5_0_0 -15427,1,43.0,334.0,7,111,681.0,1092.0,0.0,85,62,0.0,0.0,941.2606489792087,1773.0,0.0,1980.508967725414,71,1,2,2,1,2,2,2,2,2,20.0,1,,5,126118,1,2,2,0,1,,449.0,709.0,42,1.0,3.0,5.0,6.0,2.8999999999999995,1,1,700.432694615857,681.0,57174.33875055624,6,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0.03101041548963696,19715.289224329743,5,3,5,5_1,5_4,5_0_0 -15428,2,60.0,0.0,7,111,400.0,2000.0,0.0,46,31,0.0,0.0,552.8696910303722,2400.0,0.0,3627.3058016948976,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,123431,2,2,5,0,1,,560.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,629.860567060517,400.0,56219.573422403875,1,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04268975827987311,22487.82936896155,6,3,6,6_1,6_4,6_0_0 -15429,2,46.0,0.0,8,111,586.0,770.0,0.0,55,38,0.0,310.55175144583734,809.9540973594953,1656.0,0.0,1396.5127336525356,50,0,0,0,0,0,0,0,0,3,90.0,1,2003.0,6,105685,2,1,1,0,1,,410.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,529.65875774415,586.0,82163.6464924499,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02015489904226891,29344.159461589254,8,4,8,8_1,8_4,8_0_0 -15430,2,42.0,0.0,8,111,1200.0,1200.0,0.0,54,38,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,3,5.0,1,2003.0,6,111717,2,1,1,0,1,,800.0,,43,2.0,0.0,8.0,6.0,2.8999999999999995,2,2,672.661928281774,1200.0,87287.62381008311,1,1,1,2,148.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027495306840083344,30099.180624166594,8,4,8,8_1,8_4,8_0_0 -15431,2,66.0,0.0,8,111,350.0,850.0,0.0,74,75,0.0,0.0,483.76097965157567,1200.0,0.0,1541.6049657203316,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,119807,2,1,1,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,786.898119881103,350.0,52117.706342397185,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02302480450916953,34745.13756159812,9,5,9,9_1,9_4,9_0_0 -15432,2,40.0,0.0,7,111,840.0,800.0,0.0,85,21,0.0,0.0,1161.0263511637818,1640.0,0.0,1450.922320677959,50,2,2,2,2,1,1,2,2,0,,1,,5,111493,2,2,3,0,1,,540.0,360.0,42,1.0,0.0,4.0,5.0,2.4,2,2,566.184715952285,840.0,23648.656103615933,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.0693485495672306,9853.606709839973,2,1,2_0,2_1_0,2_4_0,2_0_0 -15433,2,51.0,0.0,9,111,1290.0,0.0,0.0,42,38,0.0,0.0,1783.0047535729504,1410.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,120264,2,1,1,0,1,,390.0,1117.0,43,2.0,1.0,4.0,2.0,1.5,2,2,769.167705156009,1290.0,66068.95948882324,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02134133806418621,44045.97299254883,10,5,10,10_1,10_4,10_0_0 -15434,2,51.0,0.0,7,111,360.0,810.0,0.0,0,54,0.0,0.0,497.582721927335,1170.0,0.0,1469.0588496864336,60,1,2,2,1,2,2,2,2,2,10.0,1,,5,128583,2,2,2,0,1,,260.0,362.0,32,1.0,1.0,4.0,2.0,1.5,2,1,687.548466337273,360.0,42757.607959977584,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027363551326237787,28505.07197331839,8,4,8,8_1,8_4,8_0_0 -15435,2,47.0,0.0,1,112,1360.0,0.0,0.0,56,46,0.0,0.0,1879.7569495032656,1480.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,118301,2,1,2,0,1,,450.0,443.0,43,4.0,1.0,5.0,4.0,2.5,1,1,590.026480527131,1360.0,42601.488988358884,1,1,2,3,80.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03474056975812322,17040.595595343555,4,2,4_0,4_1_0,4_1_0,4_1_0 -15436,2,70.0,0.0,2,112,600.0,1350.0,0.0,0,56,0.0,0.0,829.3045365455583,1950.0,0.0,2448.431416144056,41,0,0,0,0,0,0,0,0,1,3.0,1,,2,105664,2,1,1,0,1,,250.0,,11,0.0,4.0,4.0,1.0,1.0,3,3,1163.45505729756,600.0,24850.11933187495,0,5,0,1,100.0,10,1,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0784704481277383,24850.11933187495,7,4,7,7_1,7_1,7_0_1 -15437,2,46.0,0.0,5,112,1500.0,0.0,0.0,54,47,0.0,0.0,2073.261341363896,1580.0,137.62616033521533,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,3,103359,1,2,3,0,1,,240.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,858.124452760832,1500.0,47953.67388908482,1,1,1,2,113.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03294846613117662,26640.929938380454,7,4,7,7_1,7_1,7_0_0 -15438,1,43.0,121.0,1,112,932.0,0.0,0.0,0,56,2987.1697540360015,103.51725048194578,1288.1863801007673,3107.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115125,2,1,1,0,1,,790.0,,32,1.0,1.0,6.0,3.0,1.8,4,2,670.208342181934,932.0,15565.312058528903,0,1,1,2,151.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.19961051781788988,8647.395588071613,1,1,1_1,1_1_1,1_1_1,1_1_0 -15439,2,60.0,0.0,1,112,550.0,0.0,0.0,77,72,3733.962192545002,0.0,760.1958251667618,3050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132185,2,1,2,0,1,,120.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,715.502360433885,550.0,79346.24210866947,6,5,0,1,180.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03843912350408279,52897.494739112975,10,5,10,10_1,10_1,10_1_0 -15440,2,47.0,0.0,1,112,240.0,1500.0,0.0,0,37,0.0,0.0,331.72181461822333,1740.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,3,90.0,1,,1,108858,2,1,2,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,831.117229047175,240.0,49759.19244706857,0,1,0,1,100.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03496841316005938,49759.19244706857,10,5,10,10_1,10_1,10_1_0 -15441,2,45.0,0.0,1,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2832.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,2,,1,127102,2,1,0,0,1,,0.0,700.0,32,1.0,1.0,4.0,3.0,1.8,1,1,1113.05293053851,0.0,33488.15481111023,0,1,2,3,90.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08456721536238355,18604.530450616796,4,2,4_0,4_0_0,4_1_0,4_1_0 -15442,2,59.0,0.0,7,112,460.0,1300.0,0.0,75,67,0.0,0.0,635.800144684928,1760.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,125219,2,1,2,0,1,,400.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1153.45529406602,460.0,51561.62584911027,5,1,0,1,80.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034133912013373215,34374.41723274018,9,5,9,9_1,9_1,9_0_0 -15443,1,78.0,19.0,2,112,950.0,0.0,0.0,0,77,0.0,0.0,1313.065516197134,950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107460,2,2,0,0,1,,0.0,363.0,11,0.0,3.0,2.0,1.0,1.0,4,4,1009.02622890566,950.0,20776.371574398334,0,5,2,3,46.0,10,1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.045725019722434916,20776.371574398334,5,3,5,5_0,5_1,5_0_1 -15444,1,39.0,237.0,7,112,1500.0,0.0,0.0,0,62,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,60,2,2,1,1,1,2,2,2,1,5.0,2,,5,111503,2,2,0,0,1,,0.0,506.0,32,1.0,0.0,4.0,4.0,2.3,1,1,1320.87386836142,1500.0,33994.19709121053,0,1,2,3,90.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04412517807010764,14780.085691830667,3,2,3_1,3_0_1,3_1_1,3_0_0 -15445,1,65.0,215.0,2,112,0.0,0.0,0.0,78,75,0.0,0.0,0.0,1006.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,132320,1,1,0,0,1,,0.0,345.0,41,1.0,4.0,4.0,3.0,2.0,1,1,1018.46539643503,0.0,27061.360248793593,5,5,2,3,78.0,10,1,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037174775796602756,13530.680124396797,3,2,3_1,3_0_1,3_1_1,3_0_1 -15446,2,89.0,0.0,1,112,700.0,0.0,0.0,0,71,2389.735803228801,0.0,967.5219593031513,2400.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,107245,2,1,2,0,1,,1200.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,874.406280461008,700.0,25341.106782513896,0,5,0,1,140.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09470778133716204,25341.106782513896,7,4,7,7_1,7_1,7_1_0 -15447,2,62.0,0.0,6,112,1300.0,0.0,0.0,0,75,0.0,621.1035028916747,1796.8264958487098,1900.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,127100,2,1,2,0,1,,500.0,,21,1.0,3.0,7.0,2.0,1.5,2,2,968.379343803522,1300.0,41590.673023231044,0,5,0,1,100.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04568331940526014,27727.115348820695,7,4,7,7_1,7_1,7_0_0 -15448,2,38.0,0.0,9,112,1400.0,0.0,0.0,47,43,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,104758,2,1,1,0,1,,342.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1129.30770626438,1400.0,56505.5358883234,1,1,1,2,88.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02477633346875847,26907.39804205876,7,4,7,7_1,7_1,7_0_0 -15449,2,47.0,0.0,9,112,813.0,0.0,0.0,48,46,0.0,517.5862524097289,1123.7076470192314,1413.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,2009.0,6,116625,2,1,1,0,1,,329.0,,43,3.0,0.0,4.0,3.0,2.0,4,3,1171.04017958453,813.0,63980.822278466716,1,1,1,2,135.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022084742735098563,31990.411139233358,8,4,8,8_1,8_1,8_0_0 -15450,2,45.0,0.0,9,112,1800.0,0.0,0.0,0,46,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,104093,2,1,1,0,1,,190.0,1107.0,32,1.0,0.0,5.0,2.0,1.3,1,1,1217.85013308682,1800.0,36258.13783513448,0,1,2,3,105.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049644027726536546,27890.875257795757,7,4,7,7_1,7_1,7_0_0 -15451,2,22.0,0.0,1,112,0.0,0.0,0.0,56,67,0.0,0.0,0.0,1068.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,124940,2,1,0,0,1,,0.0,360.0,43,2.0,0.0,1.0,2.0,1.5,1,1,941.483590890463,0.0,14164.284707263301,4,1,2,3,32.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07540091307627701,9442.856471508867,1,1,1_0,1_0_0,1_1_0,1_1_0 -15452,1,55.0,158.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1438.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,122317,2,1,0,0,1,,0.0,480.0,32,2.0,4.0,4.0,3.0,2.0,2,2,1058.67649707733,0.0,30114.06895825194,0,1,2,3,76.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.047751766856665684,15057.03447912597,3,2,3_1,3_0_1,3_4_1,3_0_0 -15453,2,50.0,0.0,2,111,790.0,1419.0,0.0,90,53,0.0,0.0,1091.917639784985,2209.0,0.0,2573.57346630253,50,0,0,0,0,0,0,0,0,0,,1,,2,113709,2,1,2,0,1,,500.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,585.544059934799,790.0,69619.37665894,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0317296721977521,34809.68832947,9,5,9,9_1,9_4,9_0_1 -15454,2,32.0,0.0,6,111,1200.0,0.0,0.0,47,46,0.0,113.86897553014036,1658.6090730911167,1340.0,51.60981012570575,0.0,71,2,2,1,2,2,2,2,1,3,60.0,1,,4,125647,1,1,3,0,1,,384.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,575.961476938637,1200.0,50974.816627789514,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02628749034615425,33983.21108519301,9,5,9,9_1,9_4,9_0_0 -15455,2,54.0,0.0,5,111,850.0,670.0,0.0,0,42,0.0,0.0,1174.848093439541,1520.0,0.0,1215.1474435677908,50,0,0,0,0,0,0,0,0,2,60.0,1,,3,107312,1,2,5,0,1,,900.0,627.0,32,2.0,0.0,4.0,4.0,2.3,3,3,591.133370802092,850.0,52400.11456190718,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02900757016865341,22782.658505177038,6,3,6,6_1,6_4,6_0_0 -15456,2,56.0,0.0,6,111,1657.0,0.0,0.0,37,46,0.0,155.27587572291867,2290.262695093317,1882.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,,4,118353,2,1,2,0,1,,492.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,567.601034207604,1657.0,97650.54813905894,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019272805282362002,48825.27406952947,10,5,10,10_1,10_4,10_0_0 -15457,2,58.0,0.0,7,111,653.0,0.0,0.0,71,56,0.0,0.0,902.5597706070827,743.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,102822,1,1,2,0,1,,240.0,,42,1.0,3.0,7.0,2.0,1.5,3,3,588.715851031259,653.0,25200.84788519353,5,1,0,1,117.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02948313498755497,16800.565256795686,4,2,4_0,4_1_0,4_4_0,4_0_0 -15458,2,73.0,0.0,2,111,570.0,1740.0,0.0,54,72,0.0,258.79312620486445,787.8393097182804,2560.0,0.0,3155.756047474561,50,0,0,0,0,0,0,0,0,0,,1,,2,118280,2,1,1,0,1,,390.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,683.324094712106,570.0,38340.202962908355,5,5,0,1,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06677064288044153,25560.13530860557,7,4,7,7_1,7_4,7_0_1 -15459,2,32.0,0.0,5,111,1000.0,0.0,0.0,0,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,116336,2,1,1,0,1,,566.0,,22,1.0,1.0,6.0,2.0,1.5,4,4,503.88235509193,1000.0,74031.54264255006,0,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013507755806580264,49354.36176170004,10,5,10,10_1,10_4,10_0_0 -15460,1,44.0,274.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,481.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,122745,2,1,0,1,1,,0.0,500.0,32,1.0,0.0,3.0,2.0,1.3,2,2,185.828761303846,0.0,6262.502835538751,0,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07680635244911957,4817.309873491347,1,1,1_1,1_0_1,1_4_1,1_0_1 -15461,2,28.0,0.0,2,111,600.0,100.0,0.0,55,43,0.0,0.0,829.3045365455583,700.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,108440,2,1,0,1,1,,0.0,331.0,43,2.0,0.0,3.0,2.0,1.5,5,3,175.949392964989,600.0,37284.60760050004,1,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01877450361018717,24856.40506700003,7,4,7,7_0,7_4,7_0_1 -15462,1,46.0,300.0,2,111,780.0,120.0,0.0,0,55,0.0,0.0,1078.0958975092258,1002.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,130283,1,2,0,1,2,71.0,0.0,650.0,32,1.0,0.0,4.0,3.0,1.8,2,2,584.120046741734,780.0,18709.70555454513,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05355509187885563,10394.280863636182,2,1,2_1,2_0_1,2_4_1,2_0_1 -15463,1,24.0,118.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1014.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105161,2,3,0,1,1,420.0,0.0,265.0,22,1.0,0.0,2.0,2.0,1.5,1,1,661.148100319612,0.0,8597.945303931663,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11793515359260529,5731.963535954442,1,1,1_1,1_0_1,1_4_1,1_0_1 -15464,2,67.0,0.0,2,111,500.0,600.0,0.0,74,74,0.0,0.0,691.0871137879653,1100.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,1,,2,123120,2,1,2,0,1,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,533.244887805488,500.0,53424.268517777906,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020589893516912726,35616.179011851935,9,5,9,9_1,9_4,9_0_1 -15465,2,24.0,0.0,7,111,564.0,120.0,0.0,48,43,0.0,0.0,779.5462643528249,684.0,0.0,217.63834810169388,50,2,2,2,1,1,2,2,2,3,45.0,2,,5,117097,2,1,0,1,1,347.0,0.0,524.0,43,2.0,0.0,2.0,3.0,1.8,4,4,746.806089140124,564.0,18412.23620257582,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03714920841088875,10229.02011254212,2,1,2_0,2_0_0,2_4_0,2_0_0 -15466,2,33.0,0.0,7,111,372.0,150.0,0.0,46,37,0.0,0.0,514.1688126582462,522.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,2,30.0,2,,5,110438,2,1,0,1,1,720.0,0.0,414.0,43,2.0,0.0,2.0,2.0,1.5,2,2,757.806121139994,372.0,63735.37470536046,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008190114240531753,42490.24980357364,9,5,9,9_0,9_4,9_0_0 -15467,2,75.0,0.0,2,111,264.0,0.0,0.0,0,74,0.0,0.0,364.89399608004567,264.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130251,2,1,0,1,1,1450.0,213.0,552.0,11,0.0,2.0,4.0,1.0,1.0,2,2,744.524651738031,264.0,40219.77221824628,0,5,2,3,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006563935732093296,40219.77221824628,9,5,9,9_0,9_4,9_0_1 -15468,2,51.0,0.0,2,111,820.0,2230.0,0.0,46,21,0.0,0.0,1133.3828666122631,3050.0,0.0,4044.445968889811,71,0,0,0,0,0,0,0,0,3,60.0,1,,2,113905,2,1,3,0,1,,700.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,511.898692111503,820.0,89318.77614853505,1,1,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03414735547795596,44659.388074267525,10,5,10,10_1,10_4,10_0_1 -15469,2,67.0,0.0,2,112,2243.0,0.0,0.0,74,77,0.0,0.0,3100.216792452812,2363.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127885,2,1,2,0,1,,589.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,916.118217056956,2243.0,60668.76943836975,5,5,0,1,108.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03894919942954256,40445.846292246504,9,5,9,9_1,9_0,9_0_1 -15470,2,74.0,0.0,5,112,485.0,0.0,0.0,77,78,3733.962192545002,0.0,670.3545003743263,3105.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,109379,2,1,1,0,1,,156.0,,41,0.0,1.0,7.0,2.0,1.5,1,1,757.850737033139,485.0,33868.46429011688,5,5,0,1,200.0,10,0,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09167820463905908,22578.97619341125,6,3,6,6_1,6_0,6_0_0 -15471,2,53.0,0.0,1,112,600.0,100.0,0.0,52,21,2240.377315527001,0.0,829.3045365455583,2200.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,130851,1,1,1,0,2,,200.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,1033.07971531751,600.0,40401.0,1,1,1,2,70.0,10,0,1,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05445409767084973,26934.0,7,4,7,7_1,7_0,7_1_0 -15472,2,93.0,0.0,2,111,322.0,2550.0,0.0,0,78,0.0,0.0,445.06010127944967,2872.0,0.0,4624.814897160994,71,0,0,0,0,0,0,0,0,0,,1,,2,114958,1,2,3,0,2,,460.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,749.635405416067,322.0,27129.367299538193,0,5,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10586313968512227,27129.367299538193,7,4,7,7_1,7_4,7_0_1 -15473,2,35.0,0.0,7,111,432.0,1200.0,0.0,47,34,0.0,372.6621017350048,597.099266312802,1992.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,50.0,1,,5,122323,2,2,2,0,1,,980.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,2,2,675.833729629621,432.0,94933.56691845208,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020983094438146707,30623.731264016806,8,4,8,8_1,8_4,8_0_0 -15474,2,47.0,0.0,7,111,1600.0,2700.0,0.0,0,34,0.0,0.0,2211.478764121489,4300.0,0.0,4896.862832288112,50,0,0,0,0,0,0,0,0,4,90.0,1,,5,127038,2,1,2,0,1,,720.0,,32,1.0,1.0,9.0,2.0,1.3,1,1,660.288534085707,1600.0,65554.9197388722,0,1,1,2,299.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06559385652714365,50426.861337594,10,5,10,10_1,10_4,10_0_0 -15475,2,67.0,0.0,2,111,2300.0,0.0,0.0,77,74,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126440,2,1,1,0,1,,450.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,608.817930600401,2300.0,46147.05716138187,5,5,0,1,119.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04984066463776055,30764.70477425458,8,4,8,8_1,8_4,8_0_1 -15476,2,29.0,0.0,7,111,700.0,0.0,0.0,0,65,0.0,0.0,967.5219593031513,700.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,2,,5,123671,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1442.91573411443,700.0,29932.453026741914,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023385988424490765,29932.453026741914,8,4,8,8_0,8_4,8_0_0 -15477,2,56.0,0.0,7,111,1222.0,0.0,0.0,0,42,0.0,0.0,1689.0169060977871,1222.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,122585,2,1,3,0,1,,339.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,664.221506199706,1222.0,43729.34399633486,0,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027944622267885404,43729.34399633486,10,5,10,10_1,10_4,10_0_0 -15478,2,48.0,0.0,8,111,1152.0,0.0,0.0,52,63,0.0,144.92415067472407,1592.264710167472,1342.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110818,2,1,1,0,1,,810.0,,43,4.0,0.0,3.0,4.0,2.5,1,1,622.2156736261,1152.0,44360.98501872462,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030251807966697457,17744.39400748985,4,2,4_0,4_1_0,4_4_0,4_0_0 -15479,2,60.0,0.0,2,111,660.0,1283.0,0.0,46,38,0.0,0.0,912.2349902001142,1943.0,0.0,2326.9166717872768,31,0,0,0,0,0,0,0,0,2,22.0,1,,2,118737,2,2,2,0,2,,500.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,589.84659020011,660.0,152000.06809326116,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01278288901033816,76000.03404663058,10,5,10,10_1,10_4,10_0_1 -15480,2,48.0,0.0,7,111,564.0,750.0,0.0,37,38,0.0,0.0,779.5462643528249,1314.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,0,,1,,5,116157,2,1,2,0,1,,474.0,,43,4.0,0.0,7.0,4.0,2.5,2,2,626.904525495896,564.0,139147.50602288317,1,1,0,1,134.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009443216321706185,55659.00240915327,10,5,10,10_1,10_4,10_0_0 -15481,2,57.0,0.0,2,111,3250.0,450.0,0.0,0,37,0.0,0.0,4492.066239621774,3700.0,0.0,816.143805381352,70,0,0,0,0,0,0,0,0,0,,1,,2,106125,2,2,5,0,1,,334.0,,12,1.0,0.0,7.0,1.0,1.0,3,3,593.394205044581,3250.0,41111.94531045882,0,1,0,1,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08999817381686206,41111.94531045882,9,5,9,9_1,9_4,9_0_1 -15482,2,43.0,0.0,8,111,1120.0,0.0,0.0,46,38,0.0,828.1380038555662,1548.0351348850422,2040.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,107602,1,1,1,0,1,,665.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,484.450356188237,1120.0,90562.32088469273,1,1,1,2,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022525924469155367,37734.300368621974,9,5,9,9_1,9_4,9_0_0 -15483,2,51.0,0.0,8,111,1850.0,0.0,0.0,46,48,0.0,258.79312620486445,2557.0223210154713,2100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,4,60.0,1,2003.0,6,102310,2,1,3,0,1,,630.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,558.950537818604,1850.0,64097.70049095702,1,1,1,2,143.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0327624857664944,30522.71451950334,8,4,8,8_1,8_4,8_0_0 -15484,2,64.0,0.0,5,112,0.0,0.0,0.0,72,75,0.0,0.0,0.0,830.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,101553,1,2,1,0,1,,562.0,,41,1.0,1.0,7.0,3.0,2.0,2,2,901.969609681664,0.0,213457.65762952477,5,5,0,1,350.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003888358980498796,106728.82881476238,10,5,10,10_1,10_0,10_0_0 -15485,2,35.0,0.0,2,112,1500.0,0.0,0.0,43,64,0.0,155.27587572291867,2073.261341363896,1680.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,110859,2,2,3,0,1,,350.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,893.824884332612,1500.0,50311.627938701,1,1,1,2,60.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03339188312584298,33541.08529246733,8,4,8,8_1,8_0,8_0_1 -15486,2,41.0,0.0,6,112,1110.0,0.0,0.0,46,53,0.0,517.5862524097289,1534.213392609283,1650.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,122137,2,1,3,0,1,,225.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,893.038887423432,1110.0,70024.730788178,1,1,1,2,130.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023563103798159308,46683.153858785336,10,5,10,10_1,10_0,10_0_0 -15487,2,56.0,0.0,2,112,515.0,0.0,0.0,54,38,2987.1697540360015,103.51725048194578,711.8197272016042,2735.0,206.439240502823,0.0,12,2,2,2,2,1,2,2,2,4,2.0,1,,2,115047,1,1,2,0,1,,381.0,,43,3.0,0.0,6.0,4.0,2.5,3,3,950.968313472238,515.0,75654.88884847614,1,1,0,1,120.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03615100149678019,30261.955539390456,8,4,8,8_1,8_0,8_0_1 -15488,2,49.0,0.0,1,112,2100.0,0.0,0.0,0,47,0.0,155.27587572291867,2902.5658779094542,2280.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,102344,2,1,1,0,1,,120.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,654.43149631287,2100.0,36172.89355472699,0,1,0,1,95.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06303062254476613,24115.262369817992,6,3,6,6_1,6_0,6_1_0 -15489,2,64.0,0.0,2,111,421.0,1092.0,0.0,77,74,0.0,0.0,581.8953498094668,1513.0,0.0,1980.508967725414,71,0,0,0,0,0,0,0,0,0,,1,,2,103132,2,1,2,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,520.0405341781,421.0,51203.84915754371,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02954855982300882,34135.899438362474,9,5,9,9_1,9_4,9_0_1 -15490,2,78.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,103636,2,1,0,1,1,840.0,0.0,323.0,11,0.0,3.0,3.0,1.0,1.0,2,2,705.759674523211,300.0,20611.52828379493,0,5,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014554961469590014,20611.52828379493,5,3,5,5_0,5_4,5_0_1 -15491,2,58.0,0.0,2,111,450.0,0.0,0.0,0,62,0.0,0.0,621.9784024091688,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,119522,2,1,0,1,1,740.0,0.0,415.0,12,1.0,3.0,3.0,1.0,1.0,3,3,705.759674523211,450.0,15920.008423400863,0,4,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02826631670235449,15920.008423400863,3,2,3_0,3_0_0,3_4_0,3_0_1 -15492,1,45.0,504.0,2,111,450.0,0.0,0.0,0,64,0.0,0.0,621.9784024091688,450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,119743,2,2,0,1,1,959.0,0.0,546.0,32,1.0,0.0,4.0,4.0,2.1,2,2,628.396664091672,450.0,13972.488548507888,0,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03220614555794753,6653.565975479946,1,1,1_1,1_0_1,1_4_1,1_0_1 -15493,2,76.0,0.0,2,111,250.0,667.0,0.0,77,75,0.0,0.0,345.54355689398267,917.0,0.0,1209.7064848652485,71,0,0,0,0,0,0,0,0,0,,2,,2,112220,2,3,0,1,1,640.0,0.0,375.0,41,2.0,0.0,4.0,4.0,2.5,2,2,788.697133878255,250.0,60389.641554033464,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015184723346627531,24155.856621613384,6,3,6,6_0,6_4,6_0_1 -15494,1,45.0,300.0,8,111,800.0,1400.0,0.0,68,63,0.0,0.0,1105.7393820607444,2200.0,0.0,2539.1140611864284,71,2,2,2,1,1,2,2,2,3,30.0,2,2003.0,6,123159,1,3,0,0,1,,600.0,490.0,43,2.0,0.0,4.0,5.0,2.8,4,3,835.402028861585,800.0,29544.968357026693,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07446276379161439,10551.77441322382,2,1,2_1,2_0_1,2_4_1,2_0_0 -15495,2,51.0,0.0,2,111,398.0,132.0,0.0,0,52,0.0,0.0,550.1053425752203,530.0,0.0,239.40218291186326,31,2,1,2,1,1,2,2,2,1,5.0,2,,2,100836,1,2,0,1,1,698.0,0.0,448.0,32,1.0,1.0,4.0,2.0,1.3,2,2,661.860132257339,398.0,24683.121055433163,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02147216305465302,18987.01619648705,5,3,5,5_0,5_4,5_0_1 -15496,2,32.0,0.0,2,111,665.0,1877.0,0.0,43,38,0.0,0.0,919.1458613379938,2542.0,0.0,3404.226494890662,33,0,0,0,0,0,0,0,0,0,,1,,2,111702,2,2,2,0,1,,314.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,520.0405341781,665.0,65501.76528193997,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038808114392924246,43667.84352129331,10,5,10,10_1,10_4,10_0_1 -15497,1,26.0,55.0,9,111,800.0,0.0,0.0,47,42,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2004.0,6,100808,2,1,0,0,1,,0.0,346.0,43,2.0,0.0,2.0,2.0,1.5,2,2,871.721756016557,800.0,35737.0,1,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02238576265495145,23824.666666666668,6,3,6,6_0,6_4,6_0_0 -15498,2,41.0,0.0,7,111,211.0,737.0,0.0,42,47,0.0,0.0,291.63876201852133,948.0,0.0,1336.66218792457,50,0,0,0,0,0,0,0,0,2,45.0,2,,5,104124,2,1,0,0,1,,0.0,489.0,43,2.0,0.0,2.0,2.0,1.5,3,3,1196.19271954501,211.0,48307.12291077693,1,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019624435132494896,32204.74860718462,8,4,8,8_0,8_4,8_0_0 -15499,2,35.0,0.0,1,111,420.0,1320.0,0.0,55,37,0.0,0.0,580.5131755818909,1740.0,0.0,2394.0218291186325,42,0,0,0,0,0,0,0,0,3,60.0,1,,1,101760,2,2,5,0,1,,290.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,375.830509508166,420.0,62966.70550634645,1,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027633651562485262,34981.50305908136,9,5,9,9_1,9_4,9_1_0 -15500,2,66.0,0.0,6,111,850.0,0.0,0.0,78,77,0.0,0.0,1174.848093439541,920.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,104477,2,1,2,0,1,,204.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,598.072856124583,850.0,30024.30786757623,5,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03064183874138607,20016.20524505082,5,3,5,5_1,5_4,5_0_0 -15501,2,83.0,0.0,6,111,40.0,0.0,0.0,0,77,0.0,0.0,55.28696910303722,40.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131616,2,1,3,0,1,,479.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,547.025049505604,40.0,57342.58971233343,0,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0006975617983189321,38228.39314155562,9,5,9,9_1,9_4,9_0_0 -15502,2,43.0,0.0,7,111,908.0,1024.0,0.0,46,48,0.0,0.0,1255.014198638945,1932.0,0.0,1857.1805704677877,43,0,0,0,0,0,0,0,0,0,,1,,5,128035,2,1,2,0,1,,468.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,595.408708439048,908.0,81952.67759493485,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023574580559151966,35631.5989543195,9,5,9,9_1,9_4,9_0_0 -15503,2,80.0,0.0,2,111,250.0,900.0,0.0,0,78,0.0,0.0,345.54355689398267,1150.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,0,,1,,2,123860,2,1,2,0,1,,50.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,601.23657938759,250.0,27258.302112896014,0,5,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04218898136931024,27258.302112896014,7,4,7,7_1,7_4,7_0_1 -15504,2,49.0,0.0,1,111,871.0,0.0,0.0,47,38,2987.1697540360015,62.110350289167464,1203.8737522186354,2985.0,92.89765822627035,0.0,70,0,0,0,0,0,0,0,0,3,75.0,1,,1,119387,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,351.443788122115,871.0,69293.49791353862,1,1,1,2,100.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04307763484136061,46195.665275692416,10,5,10,10_1,10_4,10_1_0 -15505,2,65.0,0.0,7,111,480.0,1350.0,0.0,46,22,0.0,51.75862524097289,663.4436292364467,1880.0,0.0,2448.431416144056,70,0,0,0,0,0,0,0,0,2,60.0,1,,5,131249,2,1,1,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,361.694431799753,480.0,62781.61184809465,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02994507379881894,41854.40789872977,9,5,9,9_1,9_4,9_0_0 -15506,2,49.0,0.0,7,111,3790.0,0.0,0.0,0,35,0.0,0.0,5238.440322512777,3790.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,108304,2,1,2,0,1,,640.0,,32,2.0,1.0,6.0,3.0,2.0,1,1,691.820203940332,3790.0,45227.54049129301,0,1,0,1,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08379849885336198,22613.770245646505,6,3,6,6_1,6_4,6_0_0 -15507,2,74.0,0.0,2,111,350.0,105.0,0.0,75,74,2987.1697540360015,155.27587572291867,483.76097965157567,2605.0,0.0,190.43355458898213,70,0,0,0,0,0,0,0,0,0,,1,,2,126038,2,3,3,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,553.471245426451,350.0,77671.0,5,5,0,1,110.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03353890126301966,51780.666666666664,10,5,10,10_1,10_4,10_0_1 -15508,2,48.0,0.0,7,111,876.0,1560.0,0.0,37,38,0.0,51.75862524097289,1210.784623356515,2486.0,0.0,2829.2985253220204,71,0,0,0,0,0,0,0,0,4,70.0,1,,5,102910,2,3,1,0,1,,768.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,362.689206417549,876.0,90879.813279412,4,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02735480972387936,36351.925311764804,9,5,9,9_1,9_4,9_0_0 -15509,2,63.0,0.0,6,111,480.0,1380.0,0.0,52,78,0.0,248.44140115666985,663.4436292364467,2100.0,0.0,2502.8410031694793,71,0,0,0,0,0,0,0,0,0,,1,,4,130197,2,1,2,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,584.548057948458,480.0,56186.675070960744,1,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03737540969184977,37457.783380640496,9,5,9,9_1,9_4,9_0_0 -15510,2,91.0,0.0,2,111,370.0,2300.0,0.0,0,74,0.0,51.75862524097289,511.40446420309434,2720.0,0.0,4171.401671949133,50,0,0,0,0,0,0,0,0,0,,1,,2,100304,2,2,3,0,1,,360.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,583.894855872245,370.0,45410.652298349836,0,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059897840315736695,45410.652298349836,10,5,10,10_1,10_4,10_0_1 -15511,2,92.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,3612.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101959,2,1,2,0,2,,365.0,,41,0.0,0.0,4.0,2.0,1.5,3,2,534.754328402915,0.0,65621.61804380677,5,5,0,1,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055042836608947245,43747.74536253785,10,5,10,10_1,10_4,10_0_1 -15512,2,47.0,0.0,2,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,536.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,110954,2,2,3,0,1,,365.0,550.0,32,1.0,0.0,2.0,3.0,2.0,1,1,394.264171156294,0.0,24612.25478152932,0,1,2,3,47.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021777769032451683,12306.12739076466,2,1,2_0,2_1_0,2_4_0,2_0_1 -15513,2,74.0,0.0,2,111,360.0,300.0,0.0,0,77,0.0,0.0,497.582721927335,660.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,121748,2,2,0,0,1,,0.0,293.0,11,0.0,0.0,3.0,1.0,1.0,2,2,888.066050405447,360.0,18451.961438262515,0,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03576855513210672,18451.961438262515,4,2,4_0,4_0_0,4_4_0,4_0_1 -15514,1,63.0,190.0,2,111,150.0,220.0,0.0,0,74,0.0,0.0,207.32613413638958,370.0,0.0,399.00363818643876,71,2,2,2,2,1,2,2,2,0,,2,,2,128352,1,3,0,0,1,,0.0,265.0,11,0.0,1.0,3.0,1.0,1.0,2,2,989.59159250759,150.0,11758.24793751938,0,5,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,1,0.03146727318271351,11758.24793751938,2,1,2_1,2_0_1,2_4_1,2_0_1 -15515,2,42.0,0.0,1,111,600.0,0.0,0.0,0,31,2091.018827825201,207.03450096389156,829.3045365455583,2200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,113379,2,1,2,0,1,,440.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,382.003183410931,600.0,112045.00239010478,0,1,1,2,100.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01963496767433058,86188.46337700367,10,5,10,10_1,10_4,10_1_0 -15516,2,42.0,0.0,9,111,624.0,1122.0,0.0,55,47,0.0,51.75862524097289,862.4767180073807,1796.0,0.0,2034.9185547508378,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,110010,2,1,1,0,1,,460.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,480.72510004346,624.0,41589.24021948885,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043184246466671176,19804.4001045185,5,3,5,5_1,5_4,5_0_0 -15517,2,45.0,0.0,2,111,750.0,1250.0,0.0,45,37,0.0,155.27587572291867,1036.630670681948,2150.0,0.0,2267.066126059311,50,0,0,0,0,0,0,0,0,2,75.0,1,,2,102604,2,1,2,0,1,,530.0,,43,2.0,0.0,4.0,3.0,1.8,4,2,606.067430923295,750.0,71698.38128532754,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02998672998549242,39832.43404740419,9,5,9,9_1,9_4,9_0_1 -15518,2,65.0,0.0,2,111,936.0,120.0,0.0,77,77,0.0,0.0,1293.7150770110711,1056.0,0.0,217.63834810169388,71,2,2,2,2,1,2,2,2,0,,2,,2,119166,2,2,0,1,1,780.0,0.0,406.0,41,1.0,3.0,4.0,3.0,2.0,4,4,183.649724564201,936.0,47592.24250150469,5,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02218849006677114,23796.121250752345,6,3,6,6_0,6_4,6_0_1 -15519,2,86.0,0.0,2,111,185.0,70.0,0.0,0,72,0.0,0.0,255.70223210154717,255.0,0.0,126.95570305932142,50,2,2,2,2,1,2,2,2,0,,2,,2,132768,2,2,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,839.017409556987,185.0,11004.66386615926,0,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.023171993538499382,11004.66386615926,2,1,2_0,2_0_0,2_4_0,2_0_1 -15520,2,51.0,0.0,2,111,0.0,0.0,370.0,0,37,0.0,0.0,189.03793388988427,370.0,0.0,423.00093662147367,50,0,0,0,0,0,0,0,0,0,,2,,2,120800,2,1,0,1,2,,0.0,,32,3.0,0.0,6.0,3.0,2.0,1,1,676.523779738782,0.0,80721.47632261514,0,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004583662450885327,40360.73816130757,9,5,9,9_0,9_4,9_0_1 -15521,2,38.0,0.0,2,111,345.0,50.0,0.0,0,34,0.0,0.0,476.85010851369606,1392.0,0.0,90.68264504237244,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,128697,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,790.806459028329,345.0,47691.31940445136,0,1,1,2,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029187701606554317,47691.31940445136,10,5,10,10_0,10_4,10_0_1 -15522,2,29.0,0.0,1,111,720.0,720.0,0.0,34,33,0.0,0.0,995.16544385467,1440.0,0.0,1305.830088610163,31,2,2,1,2,1,2,2,2,1,5.0,2,,1,112014,1,2,0,1,1,898.0,0.0,387.0,43,2.0,0.0,3.0,2.0,1.5,2,2,562.85466775334,720.0,31039.732578296836,4,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04639215226380064,20693.15505219789,5,3,5,5_0,5_4,5_1_0 -15523,2,33.0,0.0,5,111,650.0,0.0,0.0,46,46,0.0,0.0,898.4132479243549,957.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,3,113898,1,3,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,633.476785357652,650.0,49322.313102477114,1,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019402982946311507,23486.815763084338,6,3,6,6_0,6_4,6_0_0 -15524,2,61.0,0.0,2,111,0.0,0.0,360.0,77,75,0.0,0.0,183.92880054150902,360.0,0.0,411.56847887494735,60,0,0,0,0,0,0,0,0,0,,2,,2,124833,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,667.210780860552,0.0,24949.521919190825,5,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014429134200086336,16633.014612793882,4,2,4_0,4_0_0,4_4_0,4_0_1 -15525,2,34.0,0.0,5,111,0.0,0.0,420.0,0,46,0.0,0.0,214.58360063176053,420.0,0.0,480.16322535410524,10,2,1,2,1,2,2,2,2,1,2.0,2,,3,117497,2,1,0,1,1,570.0,0.0,500.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1002.38997702789,0.0,25840.092369191683,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.016253811867203406,25840.092369191683,7,4,7,7_0,7_4,7_0_0 -15526,2,45.0,0.0,7,111,1300.0,0.0,0.0,21,37,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,125640,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,492.206120161062,1300.0,56397.85167851186,1,1,1,2,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02305052340309822,24520.805077613855,7,4,7,7_1,7_4,7_0_0 -15527,1,58.0,237.0,2,111,90.0,330.0,0.0,0,77,0.0,0.0,124.39568048183375,420.0,0.0,598.5054572796581,10,2,2,1,2,1,2,2,2,0,,2,,2,127567,2,2,0,1,1,417.0,0.0,295.0,31,1.0,1.0,3.0,2.0,1.5,1,1,663.082880951341,90.0,18894.733085291886,0,7,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.022228416675911557,12596.488723527924,2,1,2_1,2_0_1,2_4_1,2_0_1 -15528,2,32.0,0.0,2,111,550.0,0.0,0.0,46,54,0.0,0.0,760.1958251667618,550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,50.0,2,,2,104030,1,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,695.095260628283,550.0,50351.888771685575,1,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010923125495726826,27973.27153982532,7,4,7,7_0,7_4,7_0_1 -15529,1,30.0,49.0,2,111,350.0,0.0,0.0,0,56,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,2,2,2,2,1,1,2,2,3,15.0,2,,2,104131,2,2,0,1,1,593.0,0.0,279.0,12,1.0,1.0,3.0,1.0,1.0,3,3,227.402418315656,350.0,12495.675424271,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.028009690402183207,12495.675424271,2,1,2_1,2_0_1,2_4_1,2_0_1 -15530,2,42.0,0.0,6,111,550.0,0.0,0.0,0,43,0.0,0.0,760.1958251667618,550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,4,101083,2,1,0,1,1,870.0,0.0,308.0,22,1.0,0.0,3.0,2.0,1.5,3,3,201.919983159237,550.0,44279.95724137656,0,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012420969537117415,29519.971494251044,8,4,8,8_0,8_4,8_0_0 -15531,1,49.0,360.0,5,111,750.0,0.0,0.0,85,55,0.0,0.0,1036.630670681948,750.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,30.0,2,,3,109322,1,3,0,1,1,840.0,0.0,390.0,42,1.0,0.0,3.0,6.0,2.8999999999999995,2,2,206.543446460037,750.0,19428.981381049987,6,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03860212665248168,6699.648752086204,1,1,1_1,1_0_1,1_4_1,1_0_0 -15532,1,49.0,485.0,5,111,2000.0,0.0,0.0,85,68,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,43,2,2,2,1,1,2,2,2,0,,2,,3,115330,2,1,0,1,1,984.0,0.0,439.0,42,2.0,0.0,4.0,8.0,3.6999999999999993,2,2,206.526587777914,2000.0,21537.640750898376,6,4,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.09286068159144015,5820.983986729292,1,1,1_1,1_0_1,1_4_1,1_0_0 -15533,1,42.0,83.0,5,111,680.0,0.0,0.0,0,52,0.0,0.0,939.8784747516328,680.0,0.0,0.0,50,2,2,1,2,1,1,2,2,3,60.0,2,,3,133203,2,1,0,1,1,1092.0,0.0,355.0,32,1.0,0.0,3.0,2.0,1.5,2,2,191.830467474695,680.0,21855.190308427413,0,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.031113890586337765,14570.126872284942,3,2,3_1,3_0_1,3_4_1,3_0_0 -15534,1,63.0,307.0,6,111,200.0,0.0,0.0,0,52,0.0,0.0,276.4348455151861,232.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,114107,2,2,0,1,1,885.0,0.0,334.0,12,1.0,4.0,2.0,1.0,1.0,1,1,228.188614620068,200.0,7204.897959183673,0,4,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032200317244504874,7204.897959183673,1,1,1_1,1_0_1,1_4_1,1_0_0 -15535,2,56.0,0.0,1,111,250.0,540.0,0.0,0,45,0.0,0.0,345.54355689398267,790.0,0.0,979.3725664576224,20,2,2,2,2,1,2,2,2,2,20.0,2,,1,111514,2,2,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,2,1,751.920589453536,250.0,33678.0,0,1,1,2,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0.02345744996733773,33678.0,9,5,9,9_0,9_4,9_1_0 -15536,2,32.0,0.0,1,111,216.0,380.0,0.0,0,46,0.0,0.0,298.549633156401,596.0,0.0,689.1881023220305,41,0,0,0,0,0,0,0,0,3,60.0,2,,1,119569,2,1,0,0,1,,180.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,711.887501332923,216.0,23207.631516255587,0,1,1,2,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025681207476193204,23207.631516255587,6,3,6,6_0,6_4,6_1_0 -15537,1,38.0,457.0,2,111,500.0,450.0,0.0,0,56,0.0,0.0,691.0871137879653,950.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,0,,2,,2,103161,2,1,0,1,1,660.0,0.0,422.0,32,1.0,0.0,4.0,5.0,2.8,3,3,531.152661124379,500.0,10240.488888888887,0,4,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.092769008424077,3657.31746031746,1,1,1_1,1_0_1,1_4_1,1_0_1 -15538,2,49.0,0.0,2,111,360.0,350.0,0.0,78,54,0.0,0.0,497.582721927335,710.0,0.0,634.7785152966071,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,112971,2,3,0,1,1,588.0,0.0,350.0,42,1.0,3.0,3.0,2.0,1.5,2,2,626.948403395311,360.0,40218.688946189344,5,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01765348445221438,26812.45929745956,7,4,7,7_0,7_4,7_0_1 -15539,1,41.0,205.0,6,111,750.0,0.0,0.0,85,64,0.0,0.0,1036.630670681948,990.0,412.878481005646,0.0,41,2,2,2,2,1,2,2,2,0,,2,,4,106262,1,3,0,0,1,,0.0,580.0,42,1.0,0.0,2.0,4.0,2.1,2,2,941.653620408964,750.0,35755.40293679796,6,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.02768812315581916,17026.38235085617,4,2,4_1,4_0_1,4_4_1,4_0_0 -15540,2,28.0,0.0,6,111,750.0,750.0,0.0,0,46,0.0,0.0,1036.630670681948,1500.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,3,90.0,2,,4,105224,2,2,0,0,1,,0.0,451.0,12,1.0,0.0,1.0,1.0,1.0,2,2,959.968479331886,750.0,20263.57207064616,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07402446097709012,20263.57207064616,5,3,5,5_0,5_4,5_0_0 -15541,2,89.0,0.0,1,111,350.0,0.0,0.0,0,78,0.0,0.0,483.76097965157567,1154.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,100179,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,751.8592154888,350.0,19050.92389584425,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06057449005146319,19050.92389584425,5,3,5,5_0,5_4,5_1_0 -15542,2,41.0,0.0,5,111,0.0,0.0,0.0,56,21,0.0,0.0,0.0,170.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,103623,2,2,0,1,1,,0.0,872.0,43,2.0,0.0,3.0,5.0,2.4,3,2,149.303156362006,0.0,58580.72173031431,4,1,2,3,79.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002901978585764479,24408.634054297632,7,4,7,7_0,7_4,7_0_0 -15543,2,27.0,0.0,7,111,266.0,0.0,0.0,65,46,0.0,0.0,367.65834453519756,266.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,2,,5,106423,2,1,0,0,1,,0.0,910.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1133.0035847661,266.0,33281.245553608926,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007992489330711233,22187.497035739285,6,3,6,6_0,6_4,6_0_0 -15544,2,54.0,0.0,6,111,1300.0,1400.0,0.0,56,63,0.0,724.6207533736205,1796.8264958487098,3400.0,0.0,2539.1140611864284,50,2,1,2,1,1,2,2,2,1,5.0,1,,4,125093,2,1,2,0,1,,600.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,537.425762770066,1300.0,54198.53335452752,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06273232483542801,21679.413341811007,6,3,6,6_1,6_4,6_0_0 -15545,2,54.0,0.0,1,112,1600.0,0.0,0.0,43,42,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,118676,2,1,1,0,1,,263.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,919.418347719444,1600.0,70875.64208278507,1,1,0,1,100.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022574751395283976,28350.25683311403,8,4,8,8_1,8_0,8_1_0 -15546,2,81.0,0.0,2,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1625.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103944,2,1,2,0,2,,241.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1163.45505729756,0.0,25103.449162020894,0,5,0,1,100.0,10,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06473214057207999,25103.449162020894,7,4,7,7_1,7_0,7_0_1 -15547,2,66.0,0.0,6,112,770.0,0.0,0.0,0,74,0.0,0.0,1064.2741552334664,860.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,114947,2,1,1,0,1,,210.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,1192.36212585395,770.0,39803.857398103995,0,5,0,1,106.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02160594616241804,39803.857398103995,9,5,9,9_1,9_0,9_0_0 -15548,0,83.0,0.0,5,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,385.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,127343,2,1,0,1,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,2,2,1353.54388637093,0.0,19816.305128401207,0,5,0,1,28.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019428445288128347,19816.305128401207,5,3,5,5_0,5_0,5_0_0 -15549,2,35.0,0.0,6,111,250.0,0.0,0.0,52,48,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,122402,2,1,2,1,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,5,4,125.457825183007,250.0,61727.77904089722,1,1,1,2,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004050040417530081,34293.21057827623,9,5,9,9_1,9_4,9_0_0 -15550,1,28.0,218.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,361.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,106772,1,2,0,1,1,240.0,0.0,291.0,12,1.0,0.0,1.0,1.0,1.0,2,2,241.892881706703,0.0,12775.705264625352,0,4,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028256757065269252,12775.705264625352,2,1,2_1,2_0_1,2_4_1,2_0_1 -15551,2,35.0,0.0,6,111,991.0,0.0,0.0,55,38,0.0,455.47590212056144,1369.7346595277472,1431.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,127329,1,2,2,0,2,,381.0,,43,2.0,0.0,4.0,5.0,2.4,3,3,129.930913657086,991.0,54801.70725757347,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026112325173997916,22834.044690655614,6,3,6,6_1,6_4,6_0_0 -15552,2,40.0,0.0,6,111,600.0,0.0,0.0,52,47,0.0,0.0,829.3045365455583,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,4,103935,2,2,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,3,3,158.74246249154,600.0,68793.60726290947,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008721740636553217,28664.003026212282,8,4,8,8_0,8_4,8_0_0 -15553,2,82.0,0.0,2,111,360.0,2020.0,0.0,0,75,0.0,0.0,497.582721927335,2380.0,0.0,3663.5788597118467,71,0,0,0,0,0,0,0,0,0,,1,,2,103314,2,2,2,0,1,,250.0,,11,0.0,2.0,4.0,1.0,1.0,4,4,674.107072185755,360.0,38867.09349463079,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06123431895746925,38867.09349463079,9,5,9,9_1,9_4,9_0_1 -15554,2,58.0,0.0,6,111,700.0,900.0,0.0,77,43,0.0,0.0,967.5219593031513,1600.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,1,15.0,1,,4,102623,2,1,2,0,1,,650.0,,42,2.0,2.0,4.0,3.0,2.0,1,1,623.495137775669,700.0,65489.33343223586,5,1,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024431459539217586,32744.66671611793,8,4,8,8_1,8_4,8_0_0 -15555,2,66.0,0.0,7,111,1800.0,0.0,0.0,75,74,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,125085,2,1,2,0,1,,600.0,,41,0.0,2.0,7.0,2.0,1.5,3,3,575.961476938637,1800.0,92860.54530431214,5,5,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01938390512462793,61907.03020287476,10,5,10,10_1,10_4,10_0_0 -15556,2,52.0,0.0,6,111,1500.0,0.0,0.0,38,35,418.2037655650402,186.3310508675024,2073.261341363896,1960.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,75.0,1,,4,123885,2,1,2,0,2,,750.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,606.105918403038,1500.0,108367.855194142,1,1,0,1,135.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01808654417390325,43347.1420776568,10,5,10,10_1,10_4,10_0_0 -15557,2,74.0,0.0,8,111,250.0,1500.0,0.0,77,72,0.0,621.1035028916747,345.54355689398267,2350.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128384,2,1,1,0,1,,220.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,660.288534085707,250.0,29339.06905448344,5,5,0,1,164.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08009797433026886,19559.379369655628,5,3,5,5_1,5_4,5_0_0 -15558,2,42.0,0.0,2,111,1800.0,0.0,0.0,37,38,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,50.0,1,,2,102831,2,2,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,488.545986861168,1800.0,89961.32852731097,4,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020008597354734994,42838.727870148075,9,5,9,9_1,9_4,9_0_1 -15559,2,35.0,0.0,1,111,1104.0,0.0,0.0,0,90,179.23018524216008,0.0,1525.9203472438273,1224.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,114239,2,2,0,0,1,,0.0,462.0,12,1.0,0.0,2.0,1.0,1.0,4,3,1313.66815059311,1104.0,16111.333551870855,0,1,2,3,38.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07597136488170271,16111.333551870855,4,2,4_0,4_0_0,4_4_0,4_1_0 -15560,2,38.0,0.0,2,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,471.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,115997,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,907.691169823226,0.0,44594.49935723159,4,1,1,2,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010561840737956869,24774.72186512866,7,4,7,7_0,7_4,7_0_1 -15561,2,92.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,471.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,102118,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1095.54269126103,0.0,31242.569152734475,0,5,0,1,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015075584779773983,31242.569152734475,8,4,8,8_0,8_4,8_0_1 -15562,2,28.0,0.0,7,111,600.0,0.0,0.0,55,62,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,102289,2,2,0,0,1,,0.0,690.0,43,2.0,0.0,2.0,3.0,1.8,1,1,1247.7301150303,600.0,50513.917458701224,1,1,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011877914645811094,28063.287477056234,8,4,8,8_0,8_4,8_0_0 -15563,2,51.0,0.0,2,111,750.0,1500.0,0.0,54,63,0.0,51.75862524097289,1036.630670681948,2300.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,2,75.0,1,,2,131256,2,3,2,0,1,,336.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,546.942977301196,750.0,125122.1844257525,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01838203201579189,50048.873770301,10,5,10,10_1,10_4,10_0_1 -15564,2,51.0,0.0,2,111,270.0,120.0,0.0,21,54,0.0,0.0,373.1870414455012,390.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,109295,1,2,0,1,2,650.0,0.0,658.0,43,3.0,1.0,4.0,3.0,2.0,3,2,862.60239984996,270.0,51693.674646477964,4,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007544443351476307,25846.837323238982,7,4,7,7_0,7_4,7_0_1 -15565,2,57.0,0.0,5,111,2640.0,0.0,0.0,85,74,0.0,82.81380038555662,3648.939960800457,2720.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,129273,2,1,3,0,1,,1066.0,,41,0.0,2.0,6.0,5.0,3.0,2,2,462.014747547027,2640.0,177743.28226860217,6,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01530296934592211,59247.760756200725,10,5,10,10_1,10_4,10_0_0 -15566,2,65.0,0.0,2,111,150.0,150.0,0.0,0,75,0.0,0.0,207.32613413638958,300.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,2,,2,108357,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1095.54269126103,150.0,30562.380893420843,0,5,0,1,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009815989174605862,30562.380893420843,8,4,8,8_0,8_4,8_0_1 -15567,2,35.0,0.0,2,111,444.0,1100.0,0.0,37,54,0.0,0.0,613.6853570437131,1544.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,4,45.0,2,,2,111407,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,3.0,1.8,3,2,933.836506226699,444.0,61361.234413714556,1,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025162466413076397,34089.57467428586,9,5,9,9_0,9_4,9_0_1 -15568,2,60.0,0.0,2,111,600.0,0.0,0.0,54,37,6721.131946581003,0.0,829.3045365455583,5200.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,112921,2,1,2,0,2,,1000.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,567.706860704782,600.0,77862.23149004678,4,1,0,1,135.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06678462587685689,38931.11574502339,9,5,9,9_1,9_4,9_0_1 -15569,2,57.0,0.0,1,111,400.0,1532.0,0.0,46,33,0.0,0.0,552.8696910303722,1932.0,0.0,2778.5162440982917,70,0,0,0,0,0,0,0,0,3,120.0,1,,1,101320,2,2,2,0,1,,334.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,424.446065173649,400.0,81376.52938925264,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023741489278297463,54251.019592835095,10,5,10,10_1,10_4,10_1_0 -15570,2,50.0,0.0,6,111,936.0,0.0,0.0,77,48,0.0,0.0,1293.7150770110711,936.0,0.0,0.0,20,2,1,2,1,1,2,2,2,2,10.0,2,,4,118587,2,1,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,871.278180850453,936.0,47571.921961325825,5,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01967547161035311,31714.614640883883,8,4,8,8_0,8_4,8_0_0 -15571,2,66.0,0.0,2,111,321.0,1924.0,0.0,0,86,0.0,0.0,443.6779270518737,2245.0,0.0,3489.4681812304916,50,0,0,0,0,0,0,0,0,0,,1,,2,110926,2,3,3,0,1,,226.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,633.578536817446,321.0,37278.21544759587,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.060222839882341624,37278.21544759587,9,5,9,9_1,9_4,9_0_1 -15572,2,57.0,0.0,2,111,3600.0,85.0,0.0,0,46,0.0,0.0,4975.82721927335,3685.0,0.0,154.16049657203317,70,0,0,0,0,0,0,0,0,2,60.0,1,,2,104880,2,1,1,0,1,,360.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,627.245130812805,3600.0,50200.223245786096,0,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07340604805595811,50200.223245786096,10,5,10,10_1,10_4,10_0_1 -15573,2,48.0,0.0,2,111,1142.0,0.0,0.0,53,35,0.0,186.3310508675024,1578.4429678917127,1322.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,101155,2,3,1,0,1,,204.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,600.092419303868,1142.0,87960.2763918999,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015029511663991777,48866.82021772216,10,5,10,10_1,10_4,10_0_1 -15574,2,63.0,0.0,6,111,1900.0,0.0,0.0,75,31,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,109501,2,1,3,0,1,,400.0,,42,1.0,2.0,5.0,2.0,1.5,3,2,575.961476938637,1900.0,260875.80810571677,5,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007283159039530595,173917.20540381118,10,5,10,10_1,10_4,10_0_0 -15575,2,35.0,0.0,9,111,500.0,1060.0,0.0,52,46,0.0,0.0,691.0871137879653,1560.0,0.0,1922.472074898296,70,0,0,0,0,0,0,0,0,2,30.0,2,2010.0,6,120289,2,1,0,0,1,,0.0,607.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1029.03591976645,500.0,43153.68544476896,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036149867245906374,23974.269691538313,6,3,6,6_0,6_4,6_0_0 -15576,2,46.0,0.0,7,111,729.0,1097.0,0.0,54,64,0.0,0.0,1007.6050119028533,1826.0,0.0,1989.5772322296514,50,1,2,2,1,1,2,2,2,2,30.0,2,,5,115048,2,2,0,0,1,,0.0,568.0,42,2.0,2.0,4.0,5.0,3.0,1,1,805.508304542914,729.0,66623.34621645798,1,7,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02740780977988348,22207.782072152662,6,3,6,6_0,6_4,6_0_0 -15577,1,50.0,420.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,568.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,5,113720,1,2,0,0,1,,0.0,653.0,32,1.0,0.0,5.0,2.0,1.3,1,1,978.171935423793,0.0,9377.811247523467,0,1,2,3,98.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.06056850420720506,7213.700959633436,1,1,1_1,1_0_1,1_4_1,1_0_0 -15578,2,45.0,0.0,1,111,1856.0,0.0,0.0,0,54,0.0,0.0,2565.315366380927,1856.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,132945,2,1,0,0,1,,0.0,622.0,12,1.0,0.0,2.0,1.0,1.0,4,2,1505.7227952177,1856.0,18166.101099797565,0,1,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10216831833115156,18166.101099797565,4,2,4_0,4_0_0,4_4_0,4_1_0 -15579,2,55.0,0.0,1,111,500.0,1600.0,0.0,37,46,0.0,258.79312620486445,691.0871137879653,2350.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,4,75.0,1,,1,100700,2,2,2,0,1,,900.0,,43,2.0,2.0,3.0,2.0,1.5,1,1,424.446065173649,500.0,66247.07221570655,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03547326578219463,44164.71481047103,10,5,10,10_1,10_4,10_1_0 -15580,2,38.0,0.0,5,111,420.0,120.0,0.0,35,52,0.0,0.0,580.5131755818909,540.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,2,35.0,2,,3,105170,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,738.149617786853,420.0,56885.71395616977,1,1,1,2,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009492717282516099,23702.380815070737,6,3,6,6_0,6_4,6_0_0 -15581,2,36.0,0.0,2,111,324.0,84.0,0.0,0,43,0.0,0.0,447.8244497346015,408.0,0.0,152.3468436711857,20,2,1,2,2,1,2,2,2,2,15.0,2,,2,121041,2,1,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,871.278180850453,324.0,30661.06111144975,0,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013306780170358835,23585.431624192115,6,3,6,6_0,6_4,6_0_1 -15582,2,62.0,0.0,5,111,230.0,150.0,0.0,0,75,0.0,0.0,317.900072342464,380.0,0.0,272.04793512711734,20,0,0,0,0,0,0,0,0,0,,2,,3,128253,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,4,4,981.234062380096,230.0,54010.9588332603,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00703560922095672,54010.9588332603,10,5,10,10_0,10_4,10_0_0 -15583,2,38.0,0.0,5,111,156.0,180.0,0.0,46,42,0.0,0.0,215.61917950184517,336.0,0.0,326.4575221525408,20,0,0,0,0,0,0,0,0,2,45.0,2,,3,133445,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,851.05421015158,156.0,57302.46913693896,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005863621673911498,27286.890065209027,7,4,7,7_0,7_4,7_0_0 -15584,2,51.0,0.0,5,111,600.0,150.0,0.0,52,37,0.0,0.0,829.3045365455583,750.0,0.0,272.04793512711734,10,2,2,2,2,1,2,2,2,4,75.0,2,,3,116339,1,2,0,1,2,600.0,0.0,795.0,43,2.0,2.0,4.0,2.0,1.5,2,2,818.095992056812,600.0,58863.590402102614,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.012741322689912063,39242.393601401745,9,5,9,9_0,9_4,9_0_0 -15585,2,34.0,0.0,5,111,600.0,0.0,0.0,56,63,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,100568,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,873.674472701107,600.0,45932.68843179298,1,1,1,2,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013062592686926229,21872.708777044274,6,3,6,6_0,6_4,6_0_0 -15586,2,58.0,0.0,6,111,1456.0,0.0,0.0,47,52,0.0,0.0,2012.445675350555,1456.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,,4,117222,2,1,1,0,1,,396.0,,43,2.0,2.0,4.0,2.0,1.5,4,3,594.058034024833,1456.0,42670.59176496665,1,1,0,1,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03412186097675362,28447.061176644434,8,4,8,8_1,8_4,8_0_0 -15587,2,61.0,0.0,6,111,1500.0,0.0,0.0,85,72,0.0,0.0,2073.261341363896,1600.0,172.03270041901916,0.0,50,2,2,2,2,1,2,2,2,0,,1,,4,105261,2,1,2,0,1,,1000.0,,41,2.0,5.0,5.0,4.0,2.5,2,2,587.141686567039,1500.0,18439.47251779947,6,7,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08677037797342269,7375.789007119788,1,1,1_0,1_1_0,1_4_0,1_0_0 -15588,2,55.0,0.0,6,111,400.0,752.0,0.0,72,47,0.0,0.0,552.8696910303722,1152.0,0.0,1363.8669814372815,70,0,0,0,0,0,0,0,0,4,70.0,2,,4,112247,2,1,0,0,2,,0.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,1094.51212043131,400.0,72210.88516086878,5,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01595327349102031,48140.59010724586,10,5,10,10_0,10_4,10_0_0 -15589,2,82.0,0.0,1,112,1078.0,0.0,0.0,77,78,0.0,0.0,1489.983817326853,1108.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105379,1,1,2,0,2,,426.0,,41,0.0,2.0,2.0,2.0,1.5,3,3,658.042480905714,1078.0,20503.027916873383,5,5,0,1,47.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05404079848558119,13668.685277915589,3,2,3_0,3_1_0,3_0_0,3_1_0 -15590,2,52.0,0.0,9,111,1700.0,0.0,0.0,54,48,0.0,0.0,2349.696186879082,2073.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,130016,2,2,3,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.5,3,2,489.363522663022,1700.0,41495.42234449802,1,1,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04995731776844691,16598.168937799208,4,2,4_0,4_1_0,4_4_0,4_0_0 -15591,2,58.0,0.0,6,111,288.0,0.0,0.0,0,77,0.0,0.0,398.066177541868,852.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,107288,2,1,0,1,1,,0.0,465.0,11,0.0,0.0,2.0,1.0,1.0,3,2,873.867233826597,288.0,22252.443160023624,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03828793062734849,22252.443160023624,6,3,6,6_0,6_4,6_0_0 -15592,2,80.0,0.0,6,111,420.0,2064.0,0.0,75,74,0.0,0.0,580.5131755818909,4665.0,0.0,3743.3795873491345,44,0,0,0,0,0,0,0,0,0,,1,,4,101878,2,1,2,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,4,2,568.082458949537,420.0,53212.39907588878,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08766753766066847,35474.93271725919,9,5,9,9_1,9_4,9_0_0 -15593,2,33.0,0.0,2,111,430.0,430.0,0.0,45,21,0.0,0.0,594.3349178576501,860.0,0.0,779.870747364403,31,0,0,0,0,0,0,0,0,0,,2,,2,130523,1,1,0,1,1,,0.0,586.0,43,2.0,0.0,3.0,3.0,1.8,1,1,775.287552483241,430.0,57754.99844112379,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014890486074148118,32086.110245068772,8,4,8,8_0,8_4,8_0_1 -15594,2,36.0,0.0,5,111,1200.0,0.0,0.0,0,37,0.0,0.0,1658.6090730911167,1345.0,249.4474156075778,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106444,2,1,2,0,1,,737.0,,22,2.0,0.0,5.0,4.0,2.5,2,2,519.018852943642,1200.0,26437.223491606765,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05087523659309412,10574.889396642706,2,1,2_0,2_1_0,2_4_0,2_0_0 -15595,2,48.0,0.0,7,111,670.0,1020.0,0.0,56,55,0.0,0.0,926.0567324758734,1690.0,0.0,1849.925958864398,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,122586,1,1,3,0,1,,700.0,,43,2.0,0.0,5.0,5.0,3.0,2,2,516.072393001609,670.0,46924.753807189,1,1,1,2,114.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036015106375285606,15641.584602396333,3,2,3_0,3_1_0,3_4_0,3_0_0 -15596,2,56.0,0.0,5,111,2160.0,0.0,0.0,54,65,0.0,0.0,2985.49633156401,2160.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,115952,2,1,2,0,1,,600.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,553.041405831341,2160.0,44908.89972878052,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04809737074488451,22454.44986439026,6,3,6,6_1,6_4,6_0_0 -15597,2,47.0,0.0,8,111,480.0,0.0,0.0,63,52,0.0,621.1035028916747,663.4436292364467,1140.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,1999.0,6,102765,2,1,1,0,1,,450.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,537.302618936442,480.0,45634.08152980088,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0249813289055798,25352.267516556043,7,4,7,7_1,7_4,7_0_0 -15598,2,39.0,0.0,9,111,660.0,1560.0,0.0,38,37,0.0,0.0,912.2349902001142,2220.0,0.0,2829.2985253220204,70,0,0,0,0,0,0,0,0,3,75.0,1,2006.0,6,111052,2,1,1,0,1,,800.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,546.493735647513,660.0,89221.66112624633,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024881850124475465,37175.69213593597,9,5,9,9_1,9_4,9_0_0 -15599,2,63.0,0.0,1,111,1300.0,0.0,0.0,0,74,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119633,2,1,3,0,1,,1300.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,493.900187072786,1300.0,46352.837056076365,0,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02804574827701045,46352.837056076365,10,5,10,10_1,10_4,10_1_0 -15600,2,62.0,0.0,7,111,1100.0,0.0,0.0,77,77,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,123829,2,1,2,0,1,,350.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,531.100602360605,1100.0,42483.93926682738,5,5,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025892137569712374,28322.62617788492,8,4,8,8_1,8_4,8_0_0 -15601,2,60.0,0.0,2,111,600.0,0.0,0.0,52,67,0.0,0.0,829.3045365455583,600.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,35.0,2,,2,119524,1,2,0,1,1,,0.0,666.0,43,3.0,0.0,3.0,3.0,2.0,1,1,617.16185298835,600.0,37600.9944863142,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015957024759501632,18800.4972431571,5,3,5,5_0,5_4,5_0_1 -15602,2,50.0,0.0,2,111,350.0,70.0,0.0,0,38,0.0,0.0,483.76097965157567,420.0,0.0,126.95570305932142,60,1,2,2,2,1,2,2,2,2,60.0,2,,2,110164,2,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,808.111905402615,350.0,53005.47981692629,0,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007923709047642297,53005.47981692629,10,5,10,10_0,10_4,10_0_1 -15603,2,81.0,0.0,6,111,1200.0,1000.0,0.0,77,75,0.0,0.0,1658.6090730911167,2200.0,0.0,1813.6529008474488,12,0,0,0,0,0,0,0,0,0,,2,,4,113181,2,1,0,1,1,,0.0,,41,1.0,0.0,5.0,3.0,2.0,1,1,189.770608214726,1200.0,23782.4130606589,5,5,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09250533132986667,11891.20653032945,2,1,2_0,2_0_0,2_4_0,2_0_0 -15604,2,25.0,0.0,6,111,410.0,180.0,0.0,85,63,0.0,0.0,566.6914333061316,590.0,0.0,326.4575221525408,71,2,2,2,2,1,2,2,2,0,,2,,4,104340,1,2,0,1,2,663.0,0.0,630.0,42,1.0,1.0,2.0,4.0,2.1,2,2,207.175605514215,410.0,16701.664016738498,6,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.03532582139173072,7953.1733413040465,1,1,1_0,1_0_0,1_4_0,1_0_0 -15605,2,50.0,0.0,2,111,620.0,760.0,0.0,0,43,0.0,0.0,856.9480210970769,1380.0,0.0,1378.376204644061,71,0,0,0,0,0,0,0,0,2,90.0,2,,2,118551,2,1,0,1,1,1164.0,0.0,512.0,32,1.0,3.0,4.0,2.0,1.5,3,3,186.001215287461,620.0,36306.57745928067,0,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03800964168400966,24204.38497285378,7,4,7,7_0,7_4,7_0_1 -15606,1,46.0,254.0,2,111,1020.0,300.0,0.0,68,63,0.0,0.0,1409.817712127449,1320.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,115049,1,1,0,1,1,,0.0,700.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,166.866265931021,1020.0,34246.64729105808,1,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03854391902312308,13171.787419637723,2,1,2_1,2_0_1,2_4_1,2_0_1 -15607,2,60.0,0.0,6,111,420.0,240.0,0.0,77,56,0.0,0.0,580.5131755818909,660.0,0.0,435.27669620338776,71,1,2,2,1,1,2,2,2,0,,2,,4,109620,2,1,0,1,2,,0.0,,42,1.0,4.0,4.0,3.0,2.0,3,3,194.814541880521,420.0,26553.06051297659,5,4,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02485589183504686,13276.530256488295,3,2,3_0,3_0_0,3_4_0,3_0_0 -15608,1,29.0,200.0,2,111,480.0,120.0,0.0,54,64,0.0,0.0,663.4436292364467,600.0,0.0,217.63834810169388,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,100794,1,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,197.86911070646,480.0,16781.341058251448,4,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03575399593615778,11187.560705500966,2,1,2_1,2_0_1,2_4_1,2_0_1 -15609,2,81.0,0.0,7,111,4050.0,0.0,0.0,74,74,0.0,0.0,5597.805621682519,4050.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,119686,2,1,2,0,1,,480.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,515.650694468721,4050.0,53445.13219794027,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07577865061686728,35630.08813196018,9,5,9,9_1,9_4,9_0_0 -15610,2,58.0,0.0,9,111,1000.0,1200.0,0.0,48,46,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,2,90.0,1,2005.0,6,111655,2,1,1,0,1,,1100.0,,43,3.0,1.0,7.0,3.0,2.0,2,2,650.704031135053,1000.0,87616.68791500045,4,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025109371882834526,43808.34395750023,10,5,10,10_1,10_4,10_0_0 -15611,2,47.0,0.0,9,111,1800.0,0.0,0.0,54,46,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,117476,2,1,1,0,1,,680.0,790.0,43,2.0,0.0,4.0,3.0,2.0,2,2,810.917537018711,1800.0,50269.97417030668,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0358066625198948,25134.98708515334,7,4,7,7_1,7_4,7_0_0 -15612,2,44.0,0.0,2,111,480.0,0.0,0.0,54,56,0.0,828.1380038555662,663.4436292364467,1400.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,122156,2,3,4,0,1,,540.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,503.019603567742,480.0,35582.064660367425,1,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03934566510861777,16943.84031446068,4,2,4_0,4_1_0,4_4_0,4_0_1 -15613,2,52.0,0.0,6,111,1112.0,1300.0,0.0,43,31,0.0,0.0,1536.9777410644347,2412.0,0.0,2357.7487711016834,43,0,0,0,0,0,0,0,0,0,,1,,4,128406,1,1,3,0,1,,652.0,,43,3.0,2.0,7.0,3.0,2.0,2,2,655.970114989641,1112.0,70936.13798270021,1,1,1,2,178.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03400241496919715,35468.068991350105,9,5,9,9_1,9_4,9_0_0 -15614,2,73.0,0.0,7,111,500.0,1000.0,0.0,74,74,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,5,118374,1,2,2,0,1,,500.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,660.288534085707,500.0,52593.983347872585,5,5,0,1,153.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028520372569587366,35062.65556524839,9,5,9,9_1,9_4,9_0_0 -15615,2,50.0,0.0,2,111,0.0,1380.0,0.0,43,21,0.0,0.0,0.0,3287.0,0.0,2502.8410031694793,71,2,2,1,2,1,2,2,2,2,20.0,1,,2,119933,2,2,1,0,2,,618.0,,43,4.0,0.0,7.0,4.0,2.5,4,3,546.942977301196,0.0,66077.92067149571,1,1,1,2,110.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04974430137324109,26431.168268598285,7,4,7,7_1,7_4,7_0_1 -15616,1,31.0,350.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,979.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,118697,2,1,1,0,1,,245.0,1150.0,32,1.0,0.0,4.0,2.0,1.3,1,1,799.823599303564,0.0,18457.42592975993,0,4,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05304098218926096,14198.019945969178,3,2,3_1,3_1_1,3_4_1,3_0_1 -15617,2,60.0,0.0,7,111,1700.0,0.0,0.0,77,75,0.0,269.144851253059,2349.696186879082,2060.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,102703,2,1,2,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,3,1,603.930381302872,1700.0,59829.50987499791,7,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03443116957340898,39886.339916665274,9,5,9,9_1,9_4,9_0_0 -15618,2,34.0,0.0,7,111,380.0,47.0,0.0,0,55,0.0,0.0,525.2262064788536,427.0,0.0,85.2416863398301,41,0,0,0,0,0,0,0,0,2,30.0,2,,5,103653,1,1,0,0,1,,200.0,260.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1158.67904995857,380.0,32598.73515057959,0,1,2,3,31.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013098667725223325,32598.73515057959,8,4,8,8_0,8_4,8_0_0 -15619,2,54.0,0.0,1,112,1319.0,0.0,0.0,0,45,0.0,0.0,1823.0878061726523,1379.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,3,90.0,2,,1,130399,2,2,0,0,1,,0.0,733.0,32,1.0,0.0,4.0,3.0,2.0,4,2,712.413487873843,1319.0,50261.11732262882,0,1,2,3,96.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027436715963716538,25130.55866131441,7,4,7,7_0,7_2,7_1_0 -15620,2,53.0,0.0,2,112,500.0,0.0,0.0,45,64,1542.8731779595946,0.0,691.0871137879653,1533.0,0.0,0.0,31,2,2,2,2,1,2,1,2,2,30.0,2,,2,106999,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,3.0,2.0,3,3,343.428360653475,500.0,50822.246482804105,1,1,0,1,56.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.030163955867608023,25411.123241402052,7,4,7,7_0,7_2,7_0_1 -15621,2,53.0,0.0,1,112,190.0,620.0,0.0,0,56,0.0,0.0,262.6131032394268,810.0,0.0,1124.4647985254182,31,0,0,0,0,0,0,0,0,3,45.0,2,,1,127520,1,1,0,0,1,,0.0,517.0,12,1.0,0.0,3.0,1.0,1.0,5,5,1598.39010858377,190.0,22248.28858423602,0,1,2,3,59.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03640729474238859,22248.28858423602,6,3,6,6_0,6_2,6_1_0 -15622,2,50.0,0.0,2,112,1000.0,1200.0,0.0,34,90,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,4,80.0,1,,2,103224,2,1,3,0,2,,500.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,589.525627159769,1000.0,112574.10474235882,1,1,0,1,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01954268261812963,45029.641896943525,10,5,10,10_1,10_2,10_0_1 -15623,1,63.0,196.0,2,112,300.0,60.0,0.0,0,77,0.0,0.0,414.65226827277917,360.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,108589,2,1,0,1,1,756.0,0.0,471.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1113.32372615214,300.0,11470.745193728637,0,5,2,3,55.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03138418593735494,11470.745193728637,2,1,2_1,2_0_1,2_2_1,2_0_1 -15624,0,33.0,0.0,1,112,450.0,0.0,0.0,0,38,0.0,0.0,621.9784024091688,450.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,,1,123084,1,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1210.43843953893,450.0,19944.0,0,1,5,0,53.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02256317689530686,19944.0,5,3,5,5_0,5_2,5_1_0 -15625,1,67.0,270.0,1,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1399.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,102337,2,3,0,0,1,,0.0,470.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1470.17876331897,0.0,10618.409980659579,0,5,2,3,50.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.1317523059053234,10618.409980659579,2,1,2_1,2_0_1,2_2_1,2_1_0 -15626,2,52.0,0.0,1,112,840.0,0.0,0.0,0,53,0.0,0.0,1161.0263511637818,960.0,206.439240502823,0.0,12,2,2,2,2,1,2,2,2,3,120.0,2,,1,118039,2,2,0,0,1,,0.0,564.0,12,1.0,6.0,2.0,1.0,1.0,4,4,1103.0855304709,840.0,23675.81162296415,0,1,2,3,38.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.04054771237784542,23675.81162296415,6,3,6,6_0,6_2,6_1_0 -15627,2,74.0,0.0,2,112,460.0,1062.0,0.0,78,78,0.0,155.27587572291867,635.800144684928,1672.0,0.0,1926.0993806999907,20,0,0,0,0,0,0,0,0,0,,1,,2,102566,2,1,2,0,1,,643.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,927.279552832049,460.0,30185.486209003033,5,5,0,1,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05539085865382928,20123.65747266869,5,3,5,5_1,5_2,5_0_1 -15628,2,31.0,0.0,1,112,200.0,730.0,0.0,0,42,0.0,0.0,276.4348455151861,930.0,0.0,1323.9666176186377,50,0,0,0,0,0,0,0,0,2,35.0,2,,1,133062,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1323.39529122535,200.0,25691.596114933385,0,1,1,2,45.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03619860735158577,25691.596114933385,7,4,7,7_0,7_2,7_1_0 -15629,2,32.0,0.0,1,112,0.0,0.0,0.0,43,65,0.0,0.0,0.0,739.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,27.0,2,,1,126023,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,906.451268501556,0.0,44171.48734986855,1,1,1,2,87.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016730249406061697,21034.0415951755,5,3,5,5_0,5_2,5_1_0 -15630,2,74.0,0.0,5,112,340.0,1020.0,0.0,0,75,0.0,0.0,469.9392373758164,1360.0,0.0,1849.925958864398,20,0,0,0,0,0,0,0,0,0,,1,,3,101262,2,1,1,0,1,,290.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1017.26485118917,340.0,20661.27481891587,0,5,0,1,98.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06582362472401214,20661.27481891587,5,3,5,5_1,5_2,5_0_0 -15631,1,53.0,190.0,5,112,300.0,685.0,0.0,0,52,0.0,0.0,414.65226827277917,985.0,0.0,1242.3522370805024,31,0,0,0,0,0,0,0,0,0,,2,,3,116797,2,2,0,0,1,,0.0,462.0,32,2.0,0.0,4.0,2.0,1.5,2,2,1272.04193232263,300.0,16021.422101716136,0,4,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.061480185326026185,10680.948067810757,2,1,2_1,2_0_1,2_2_1,2_0_0 -15632,2,72.0,0.0,1,112,1390.0,120.0,0.0,78,75,0.0,0.0,1921.2221763305436,1510.0,0.0,217.63834810169388,31,0,0,0,0,0,0,0,0,0,,2,,1,119412,1,1,0,0,2,,0.0,580.0,41,0.0,3.0,3.0,2.0,1.5,1,1,678.583980376184,1390.0,37828.70567516859,5,5,2,3,65.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03991677677175167,25219.13711677906,7,4,7,7_0,7_2,7_1_0 -15633,2,33.0,0.0,1,112,700.0,3000.0,0.0,54,38,0.0,0.0,967.5219593031513,3700.0,0.0,5440.958702542347,50,0,0,0,0,0,0,0,0,3,90.0,1,,1,121836,2,1,2,0,1,,394.0,,43,2.0,0.0,7.0,2.0,1.5,1,1,642.22605380408,700.0,71535.47089744828,1,1,1,2,136.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051722592352879605,47690.31393163218,10,5,10,10_1,10_2,10_1_0 -15634,2,44.0,0.0,9,112,1673.0,0.0,0.0,52,47,0.0,165.62760077111324,2312.377482734532,1833.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,60.0,1,2006.0,6,124231,1,2,1,0,1,,275.0,,43,2.0,0.0,7.0,4.0,2.5,5,5,971.845827304667,1673.0,83469.87263096447,1,1,1,2,160.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021960019132939466,33387.94905238579,8,4,8,8_1,8_2,8_0_0 -15635,2,77.0,0.0,6,112,1140.0,0.0,0.0,75,75,0.0,170.80346329521052,1575.678619436561,1305.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,128599,2,1,1,0,1,,250.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,848.827395378976,1140.0,61354.75694287771,5,5,0,1,128.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021269744434241282,40903.17129525181,9,5,9,9_1,9_2,9_0_0 -15636,2,90.0,0.0,1,112,280.0,1620.0,0.0,77,77,0.0,124.22070057833493,387.00878372126056,2020.0,0.0,2938.1176993728673,71,0,0,0,0,0,0,0,0,0,,1,,1,105949,2,1,2,0,1,,300.0,140.0,41,0.0,0.0,3.0,2.0,1.5,4,4,698.090926091439,280.0,33018.35061896888,5,5,2,3,60.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06117810133252144,22012.23374597925,6,3,6,6_1,6_2,6_1_0 -15637,2,57.0,0.0,1,112,2000.0,0.0,0.0,77,45,0.0,186.3310508675024,2764.3484551518613,2180.0,0.0,0.0,41,0,0,0,0,0,0,0,0,4,75.0,1,,1,103865,2,1,2,0,1,,500.0,,42,1.0,2.0,7.0,2.0,1.5,3,3,692.260360460674,2000.0,59445.22986131144,5,1,1,2,161.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0366724126576017,39630.15324087429,9,5,9,9_1,9_2,9_1_0 -15638,2,30.0,0.0,1,112,320.0,800.0,0.0,54,67,0.0,0.0,442.2957528242978,1120.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,109141,1,2,0,0,1,,0.0,609.0,43,2.0,0.0,2.0,2.0,1.5,3,3,1497.0222088091,320.0,38793.972441031656,1,1,2,3,45.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02887046439243734,25862.648294021103,7,4,7,7_0,7_2,7_1_0 -15639,1,38.0,40.0,1,112,350.0,1000.0,0.0,0,52,0.0,103.51725048194578,483.76097965157567,1450.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,124224,2,2,3,0,1,,320.0,,32,1.0,0.0,4.0,3.0,1.8,3,3,688.60645587961,350.0,24462.670316590396,0,1,1,2,75.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.059273986904717475,13590.372398105776,3,2,3_1,3_1_1,3_2_1,3_1_0 -15640,2,74.0,0.0,2,112,275.0,0.0,0.0,77,78,2688.452778632401,0.0,380.0979125833809,2195.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,102010,1,1,2,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,897.249831774104,275.0,24367.436977037753,5,5,0,1,85.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09007923164296769,16244.957984691835,4,2,4_0,4_1_0,4_2_0,4_0_1 -15641,0,36.0,0.0,6,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,173.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,4,112449,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,876.00654214158,0.0,14202.955746638643,0,1,5,0,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012180563193048265,14202.955746638643,3,2,3_0,3_0_0,3_4_0,3_0_0 -15642,1,30.0,483.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,283.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,130652,2,2,0,3,1,,0.0,600.0,32,2.0,0.0,2.0,4.0,2.1,2,2,1032.19305591827,0.0,11304.17987759046,0,4,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025034987328981073,5382.9427988526,1,1,1_1,1_0_1,1_4_1,1_0_0 -15643,1,40.0,540.0,5,111,300.0,0.0,0.0,0,85,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,2,,3,104418,2,1,0,1,1,,0.0,700.0,31,0.0,0.0,4.0,6.0,2.8999999999999995,4,4,206.673722865552,300.0,17944.78702640266,0,6,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.01671794708728511,6187.857595311263,1,1,1_1,1_0_1,1_4_1,1_0_0 -15644,2,39.0,0.0,5,111,960.0,0.0,0.0,43,21,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,31,2,1,2,1,1,2,2,2,0,,2,,3,101819,2,3,0,1,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,5,5,195.205299215904,960.0,21294.410162591565,4,1,1,2,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04508225363698763,11830.227868106425,2,1,2_0,2_0_0,2_4_0,2_0_0 -15645,0,61.0,0.0,6,111,0.0,0.0,0.0,62,53,0.0,0.0,0.0,366.0,0.0,0.0,60,2,2,2,1,1,2,2,2,0,,8,,4,119570,2,2,0,2,2,,0.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,589.34723634027,0.0,53065.11964892017,1,1,5,0,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,1,0,0.006897185993765074,35376.74643261344,9,5,9,9_0,9_4,9_0_0 -15646,1,40.0,248.0,7,111,600.0,1200.0,0.0,54,68,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,42,1,2,2,1,1,1,2,2,0,,8,,5,116129,2,3,0,0,1,,0.0,461.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,4,3,727.275038262688,600.0,34635.01069269213,1,1,2,3,103.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.051970533977048664,13321.157958727743,3,2,3_1,3_0_1,3_4_1,3_0_0 -15647,2,67.0,0.0,6,111,420.0,909.0,0.0,56,77,0.0,0.0,580.5131755818909,1329.0,0.0,1648.610486870331,71,0,0,0,0,0,0,0,0,0,,1,,4,115290,2,1,2,0,1,,662.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,553.529200651661,420.0,28424.213781212708,1,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04675591065524623,18949.475854141805,5,3,5,5_1,5_4,5_0_0 -15648,2,28.0,0.0,5,111,649.0,1200.0,0.0,54,62,0.0,0.0,897.0310736967789,1849.0,0.0,2176.3834810169387,44,0,0,0,0,0,0,0,0,0,,1,,3,104290,2,1,2,0,1,,550.0,700.0,43,2.0,0.0,3.0,3.0,1.8,3,2,576.123296455215,649.0,43846.213778047815,4,1,3,4,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042170117797622156,24359.007654471006,7,4,7,7_1,7_4,7_0_0 -15649,2,30.0,0.0,6,111,1700.0,0.0,0.0,64,55,0.0,0.0,2349.696186879082,1805.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,133175,2,2,5,0,1,,367.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,574.119261544014,1700.0,40227.57890833527,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044869714981181696,22348.65494907515,6,3,6,6_1,6_4,6_0_0 -15650,1,37.0,80.0,5,111,600.0,200.0,0.0,67,46,0.0,0.0,829.3045365455583,800.0,0.0,362.73058016948977,50,2,2,2,2,1,2,2,2,2,10.0,8,,3,116660,2,1,0,1,1,1164.0,0.0,520.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,735.251019219878,600.0,45891.81363749329,1,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.017432302988052005,16996.968013886406,4,2,4_1,4_0_1,4_4_1,4_0_0 -15651,1,41.0,522.0,6,111,672.0,0.0,0.0,0,52,0.0,0.0,928.8210809310253,1053.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,4,111423,2,1,0,1,1,1041.0,0.0,522.0,32,1.0,0.0,4.0,4.0,2.1,3,3,685.236033057203,672.0,24330.045036023534,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04327982124327793,11585.735731439778,2,1,2_1,2_0_1,2_4_1,2_0_0 -15652,2,58.0,0.0,6,111,2133.0,0.0,0.0,54,47,0.0,0.0,2948.17762741946,2133.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,128267,1,1,2,0,1,,390.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,534.710629498853,2133.0,59173.29288332327,1,1,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03604666727278144,39448.86192221552,9,5,9,9_1,9_4,9_0_0 -15653,2,81.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1648.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112699,2,1,2,0,2,,218.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,633.674954928774,0.0,29383.711330697635,0,5,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056085495172909214,29383.711330697635,8,4,8,8_1,8_4,8_0_1 -15654,2,49.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1852.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,3,,3,110577,2,1,0,0,1,,0.0,450.0,12,1.0,2.0,1.0,1.0,1.0,2,2,1028.28218769952,0.0,60763.682798795926,0,1,3,4,28.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030478731944744774,60763.682798795926,10,5,10,10_0,10_4,10_0_0 -15655,2,36.0,0.0,2,111,480.0,0.0,0.0,46,54,0.0,0.0,663.4436292364467,726.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,15.0,2,,2,130425,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,707.280060083753,480.0,36763.31278614195,4,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01974794829354084,17506.339421972356,4,2,4_0,4_0_0,4_4_0,4_0_1 -15656,2,63.0,0.0,2,111,270.0,0.0,0.0,72,77,0.0,0.0,373.1870414455012,630.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,132745,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,704.680468539905,270.0,51988.537765811205,5,5,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012118055769098813,34659.02517720747,9,5,9,9_0,9_4,9_0_1 -15657,2,35.0,0.0,9,111,400.0,0.0,0.0,46,37,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,2010.0,6,131803,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,923.520635034641,400.0,55444.33115409827,1,1,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007214443599080792,30802.40619672126,8,4,8,8_0,8_4,8_0_0 -15658,2,51.0,0.0,5,111,2385.0,0.0,0.0,54,35,0.0,0.0,3296.4855327685946,2385.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,1,,3,126135,2,2,4,1,2,,0.0,,43,3.0,0.0,7.0,5.0,2.8,4,3,361.933617392143,2385.0,58873.62199108851,1,1,1,2,183.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.040510502315638214,21026.2935682459,5,3,5,5_1,5_4,5_0_0 -15659,1,48.0,301.0,5,111,0.0,0.0,528.0,0,85,0.0,0.0,269.76224079421326,528.0,0.0,603.6337690165894,20,2,1,2,2,1,2,2,2,0,,2,,3,102975,2,2,0,1,1,700.0,0.0,399.0,21,0.0,2.0,4.0,3.0,2.0,1,1,544.182499434084,0.0,4875.874078051573,0,7,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.1082882764296062,2437.9370390257864,1,1,1_1,1_0_1,1_4_1,1_0_0 -15660,2,57.0,0.0,7,111,400.0,0.0,0.0,55,37,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,90.0,1,,5,106288,2,1,2,0,1,,500.0,1550.0,43,2.0,4.0,4.0,2.0,1.5,2,2,635.645912822654,400.0,84116.71070699542,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004755297688628411,56077.80713799695,10,5,10,10_1,10_4,10_0_0 -15661,2,37.0,0.0,6,111,840.0,0.0,0.0,85,38,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,30.0,2,,4,122577,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,754.398638946561,840.0,71058.04071788248,6,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011821322281246145,39476.68928771249,9,5,9,9_0,9_4,9_0_0 -15662,2,69.0,0.0,6,111,3000.0,0.0,0.0,74,74,0.0,124.22070057833493,4146.522682727792,3120.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,126165,2,2,3,0,1,,600.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,547.198123075502,3000.0,57929.47826223326,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053858589678237506,38619.65217482217,9,5,9,9_1,9_4,9_0_0 -15663,2,51.0,0.0,6,111,2500.0,0.0,0.0,0,37,0.0,258.79312620486445,3455.435568939826,2750.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,4,113538,2,2,2,0,1,,410.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,616.254887397781,2500.0,74395.39687795416,0,1,0,1,133.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03696465259149544,74395.39687795416,10,5,10,10_1,10_4,10_0_0 -15664,2,47.0,0.0,6,111,2960.0,0.0,0.0,23,37,0.0,0.0,4091.2357136247547,2960.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,,4,122968,2,1,2,0,1,,772.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,479.112058805737,2960.0,80183.7876413286,1,1,1,2,143.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036915193046759325,34862.51636579505,9,5,9,9_1,9_4,9_0_0 -15665,2,66.0,0.0,5,111,2900.0,0.0,0.0,75,74,0.0,0.0,4008.3052599701987,2900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,133541,2,1,2,0,1,,820.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,517.667143662817,2900.0,94211.51875014651,5,5,0,1,167.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030781798642806512,62807.67916676434,10,5,10,10_1,10_4,10_0_0 -15666,2,50.0,0.0,6,111,1000.0,0.0,0.0,85,21,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,123711,2,1,2,0,1,,400.0,,42,2.0,0.0,5.0,6.0,3.3,4,3,162.422733110711,1000.0,18009.140497877066,6,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05552735846099268,5457.31530238699,1,1,1_0,1_1_0,1_4_0,1_0_0 -15667,2,73.0,0.0,7,111,360.0,0.0,0.0,77,64,0.0,0.0,497.582721927335,360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,104547,2,1,0,1,2,,0.0,,41,2.0,0.0,4.0,4.0,2.5,3,2,188.197282018357,360.0,45141.2451019596,5,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007974968328562392,18056.498040783837,4,2,4_0,4_0_0,4_4_0,4_0_0 -15668,2,21.0,0.0,7,111,2196.0,0.0,0.0,0,23,0.0,0.0,3035.2546037567436,2196.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,105038,2,1,0,1,1,,0.0,,22,3.0,3.0,6.0,5.0,3.0,1,1,154.160341141022,2196.0,8758.411719599622,0,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2507303915715425,2919.4705731998743,1,1,1_0,1_0_0,1_4_0,1_0_0 -15669,2,54.0,0.0,6,111,450.0,0.0,0.0,56,46,0.0,0.0,621.9784024091688,576.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,4,128878,2,2,0,1,1,,0.0,,43,2.0,1.0,4.0,4.0,2.5,4,4,188.197282018357,450.0,40802.05961949007,1,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01411693442369414,16320.82384779603,4,2,4_0,4_0_0,4_4_0,4_0_0 -15670,1,50.0,106.0,2,111,600.0,0.0,0.0,0,85,0.0,0.0,829.3045365455583,762.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,2,114376,1,3,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,235.989677245541,600.0,22695.527800911805,0,7,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03357489663533563,22695.527800911805,6,3,6,6_0,6_4,6_0_1 -15671,2,49.0,0.0,7,111,570.0,594.0,0.0,0,52,0.0,0.0,787.8393097182804,1164.0,0.0,1077.3098231033846,71,0,0,0,0,0,0,0,0,3,90.0,2,,5,110062,2,1,0,1,1,,0.0,500.0,32,3.0,0.0,3.0,3.0,2.0,1,1,157.167096816698,570.0,35780.67090983567,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03253153086293948,17890.335454917837,4,2,4_0,4_0_0,4_4_0,4_0_0 -15672,1,56.0,34.0,2,111,660.0,0.0,0.0,68,68,0.0,0.0,912.2349902001142,3214.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105513,2,1,0,1,1,1068.0,0.0,433.0,43,3.0,5.0,5.0,5.0,2.8,2,2,153.32423703151,660.0,46350.97063656394,4,1,2,3,116.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06934051123116368,16553.918084487123,4,2,4_1,4_0_1,4_4_1,4_0_1 -15673,1,49.0,109.0,6,111,600.0,0.0,0.0,0,63,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,2,1,2,2,1,2,2,2,1,15.0,2,,4,106764,2,2,0,1,1,,0.0,547.0,32,2.0,7.0,3.0,2.0,1.5,2,2,140.680524130422,600.0,24649.56781756641,0,1,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.024341197559350818,16433.04521171094,4,2,4_1,4_0_1,4_4_1,4_0_0 -15674,1,60.0,105.0,6,111,500.0,480.0,0.0,85,67,0.0,0.0,691.0871137879653,980.0,0.0,870.5533924067755,70,0,0,0,0,0,0,0,0,2,60.0,2,,4,131730,2,2,0,1,1,,0.0,725.0,42,2.0,0.0,5.0,6.0,3.5,1,1,155.124641160355,500.0,52082.08013421862,6,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01881645275062904,14880.594324062462,3,2,3_1,3_0_1,3_4_1,3_0_0 -15675,2,60.0,0.0,6,111,300.0,300.0,0.0,78,54,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,3,60.0,2,,4,121841,1,1,0,1,1,,0.0,680.0,42,2.0,0.0,5.0,3.0,2.0,2,2,142.631830610746,300.0,40074.62439835619,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014972067960906735,20037.312199178094,5,3,5,5_0,5_4,5_0_0 -15676,2,39.0,0.0,8,111,390.0,1080.0,0.0,0,45,0.0,0.0,539.0479487546129,1470.0,0.0,1958.7451329152448,50,1,2,2,2,1,2,2,2,1,5.0,2,2002.0,6,112962,2,1,0,0,1,,0.0,454.0,12,1.0,2.0,4.0,1.0,1.0,2,2,1130.99021568258,390.0,27110.0,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05422353375138325,27110.0,7,4,7,7_0,7_4,7_0_0 -15677,2,43.0,0.0,2,111,441.0,719.0,0.0,56,38,0.0,0.0,609.5388343609853,1160.0,0.0,1304.0164357093158,10,0,0,0,0,0,0,0,0,3,90.0,2,,2,112945,2,3,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,1098.5498149325,441.0,56664.35369417154,1,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02047142382071,26983.025568653113,7,4,7,7_0,7_4,7_0_1 -15678,2,54.0,0.0,2,111,720.0,0.0,0.0,0,46,0.0,0.0,995.16544385467,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,118927,2,1,0,0,1,,0.0,422.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1081.58450211767,720.0,29713.499437790386,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024231410423650256,29713.499437790386,8,4,8,8_0,8_4,8_0_1 -15679,2,45.0,0.0,1,111,1463.0,0.0,0.0,35,54,0.0,0.0,2022.1208949435863,1663.0,344.06540083803833,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,1,130140,2,2,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.5,5,5,392.5524921819,1463.0,62955.42501287522,4,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026415515416819035,25182.17000515009,7,4,7,7_1,7_4,7_1_0 -15680,2,55.0,0.0,5,111,750.0,2500.0,0.0,43,35,0.0,0.0,1036.630670681948,3250.0,0.0,4534.132252118622,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,101602,2,1,2,0,1,,850.0,,43,2.0,0.0,9.0,4.0,2.5,2,2,597.871654718184,750.0,211147.177175389,1,1,0,1,220.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015392107266015656,84458.8708701556,10,5,10,10_1,10_4,10_0_0 -15681,2,42.0,0.0,2,111,444.0,1125.0,0.0,0,37,0.0,0.0,613.6853570437131,1569.0,0.0,2040.35951345338,41,0,0,0,0,0,0,0,0,2,40.0,1,,2,130728,2,2,2,0,1,,348.0,,32,1.0,0.0,5.0,4.0,1.9,2,2,549.521976349099,444.0,64591.58857618478,0,1,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024291088585774428,33995.5729348341,9,5,9,9_1,9_4,9_0_1 -15682,2,55.0,0.0,1,111,549.0,1800.0,0.0,0,37,0.0,0.0,758.8136509391859,2349.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,103665,2,1,2,0,2,,693.0,,32,1.0,0.0,5.0,3.0,2.0,2,2,407.455168540725,549.0,127257.1934864223,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01845868147524899,63628.59674321115,10,5,10,10_1,10_4,10_1_0 -15683,2,80.0,0.0,1,111,11500.0,100.0,0.0,86,74,0.0,0.0,15895.003617123202,11600.0,0.0,181.36529008474488,33,2,2,2,1,1,2,2,2,0,,1,,1,125080,2,3,1,0,2,,1034.0,,41,0.0,3.0,8.0,2.0,1.5,3,2,376.391837627182,11500.0,727379.557024667,6,5,0,1,250.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.015947657434104406,484919.70468311134,10,5,10,10_1,10_4,10_1_0 -15684,2,51.0,0.0,2,111,298.0,30.0,0.0,0,46,0.0,0.0,411.88791981762733,328.0,0.0,54.40958702542347,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,106545,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,683.301365016198,298.0,23768.663595448394,0,1,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01379968203440814,23768.663595448394,6,3,6,6_0,6_4,6_0_1 -15685,2,30.0,0.0,2,111,0.0,0.0,0.0,52,43,0.0,0.0,0.0,1187.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,2,,2,125145,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,873.674472701107,0.0,61411.587619347876,1,1,1,2,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019328599797117648,29243.613152070415,8,4,8,8_0,8_4,8_0_1 -15686,2,30.0,0.0,2,111,794.0,92.0,0.0,47,37,0.0,0.0,1097.446336695289,886.0,0.0,166.8560668779653,71,1,2,1,1,1,2,2,2,2,10.0,2,,2,124563,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,405.542912913187,794.0,59154.69780658446,1,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014977677730632919,32863.72100365803,8,4,8,8_0,8_4,8_0_1 -15687,2,82.0,0.0,2,111,1400.0,0.0,0.0,42,74,5376.905557264802,0.0,1935.0439186063027,5000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119063,2,1,2,0,2,,400.0,,42,1.0,1.0,6.0,2.0,1.5,3,3,665.632184381914,1400.0,40198.44089181719,1,5,0,1,172.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12438293349376647,26798.960594544795,7,4,7,7_1,7_4,7_0_1 -15688,2,35.0,0.0,5,112,750.0,1200.0,0.0,46,56,0.0,0.0,1036.630670681948,1950.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,125150,2,2,3,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,980.847486057503,750.0,53746.378340641,1,1,1,2,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03628151440532474,25593.51349554333,7,4,7,7_1,7_2,7_0_0 -15689,2,63.0,0.0,1,112,1000.0,1620.0,0.0,77,78,0.0,0.0,1382.1742275759307,2620.0,0.0,2938.1176993728673,50,0,0,0,0,0,0,0,0,0,,1,,1,110904,2,2,2,0,1,,310.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,756.319100948257,1000.0,41261.674368182335,5,5,0,1,100.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06349718086138385,27507.78291212156,7,4,7,7_1,7_2,7_1_0 -15690,2,55.0,0.0,9,111,657.0,0.0,0.0,0,37,0.0,0.0,908.0884675173863,657.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,60.0,2,2007.0,6,102443,2,1,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1212.73231075059,657.0,57549.57103504718,0,1,1,2,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01141624495515167,57549.57103504718,10,5,10,10_0,10_4,10_0_0 -15691,2,31.0,0.0,1,111,360.0,900.0,0.0,90,38,0.0,0.0,497.582721927335,1260.0,0.0,1632.287610762704,31,2,2,2,2,1,2,2,2,0,,2,,1,127450,2,3,0,0,1,,290.0,650.0,43,2.0,0.0,2.0,3.0,1.8,2,2,667.859424890771,360.0,28124.834888761943,4,1,3,4,32.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.044800263005400534,15624.908271534412,3,2,3_0,3_0_0,3_4_0,3_1_0 -15692,1,27.0,24.0,2,111,400.0,1000.0,0.0,0,43,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,71,1,2,2,2,1,2,2,2,2,20.0,2,,2,119005,1,3,0,0,2,,0.0,,32,1.0,0.0,2.0,2.0,1.3,2,2,936.077199246322,400.0,26671.058788692455,0,1,1,2,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05249135443372606,20516.199068224963,5,3,5,5_0,5_4,5_0_1 -15693,2,34.0,0.0,2,111,550.0,0.0,0.0,84,47,0.0,0.0,760.1958251667618,550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,106955,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,2.0,1.5,3,3,809.837360100113,550.0,94127.5690562228,3,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005843134009670245,62751.71270414853,10,5,10,10_0,10_4,10_0_1 -15694,2,38.0,0.0,2,111,300.0,840.0,0.0,0,53,0.0,0.0,414.65226827277917,1140.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,130321,2,1,0,0,1,,0.0,300.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1075.47277209283,300.0,30457.97230937462,0,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03742862421767718,30457.97230937462,8,4,8,8_0,8_4,8_0_1 -15695,2,45.0,0.0,2,111,858.0,1134.0,0.0,52,48,0.0,0.0,1185.9054872601484,1992.0,0.0,2056.682389561007,50,0,0,0,0,0,0,0,0,0,,1,,2,122015,2,2,4,0,1,,330.0,,43,2.0,0.0,2.0,2.0,1.5,3,2,506.481209620294,858.0,27226.6653120275,1,4,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07316356877241316,18151.110208018334,4,2,4_0,4_1_0,4_4_0,4_0_1 -15696,2,66.0,0.0,1,111,600.0,3000.0,0.0,74,77,0.0,0.0,829.3045365455583,3600.0,0.0,5440.958702542347,60,2,2,2,2,1,2,2,2,0,,1,,1,101327,1,2,2,0,2,,600.0,,41,0.0,1.0,4.0,2.0,1.5,4,2,370.480823668098,600.0,38039.96874828817,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,1,0,0,0.09463730172391382,25359.97916552545,7,4,7,7_1,7_4,7_1_0 -15697,2,40.0,0.0,6,111,500.0,1500.0,0.0,37,38,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,42,0,0,0,0,0,0,0,0,2,45.0,1,,4,133073,1,1,2,0,2,,700.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,606.254722651221,500.0,99418.33957878963,1,1,1,2,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02011701270081048,55232.41087710535,10,5,10,10_1,10_4,10_0_0 -15698,2,75.0,0.0,7,111,254.0,1079.0,0.0,75,72,0.0,0.0,351.07225380428633,1333.0,0.0,1956.9314800143973,12,0,0,0,0,0,0,0,0,0,,1,,5,112585,2,1,2,0,1,,250.0,,41,0.0,5.0,6.0,2.0,1.5,1,1,628.356934590942,254.0,64255.549017809004,5,5,0,1,138.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02074529002359854,42837.03267853933,9,5,9,9_1,9_4,9_0_0 -15699,2,35.0,0.0,1,111,1000.0,200.0,0.0,45,33,0.0,0.0,1382.1742275759307,1200.0,0.0,362.73058016948977,10,1,2,2,1,1,2,2,2,3,60.0,1,,1,102676,2,3,1,0,1,,450.0,,43,2.0,0.0,3.0,5.0,2.4,2,1,412.096510706426,1000.0,83911.98055736201,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.014300699280714547,34963.32523223417,9,5,9,9_1,9_4,9_1_0 -15700,0,53.0,0.0,1,111,0.0,0.0,0.0,52,37,0.0,0.0,0.0,2366.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,129008,1,2,3,0,2,,0.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,619.763118041379,0.0,82855.37511827436,1,1,5,0,90.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02855578164509645,41427.68755913718,9,5,9,9_1,9_4,9_1_0 -15701,2,45.0,0.0,9,111,1600.0,0.0,0.0,0,43,0.0,496.8828023133397,2211.478764121489,2080.0,0.0,0.0,20,2,2,1,2,2,2,2,1,0,,1,2007.0,6,116834,2,1,1,0,1,,150.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,709.285972646419,1600.0,30284.386863704607,0,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,1,0,0.06868225562436099,18927.74178981538,5,3,5,5_1,5_4,5_0_0 -15702,2,52.0,0.0,8,111,620.0,770.0,0.0,55,47,0.0,0.0,856.9480210970769,1390.0,0.0,1396.5127336525356,20,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,132006,2,1,2,0,1,,500.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,629.860567060517,620.0,82761.0877911357,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016795332650870243,33104.435116454275,8,4,8,8_1,8_4,8_0_0 -15703,0,39.0,0.0,1,111,0.0,0.0,0.0,56,67,0.0,0.0,0.0,736.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,115231,2,1,2,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,549.473080863965,0.0,44866.57629689901,4,1,5,0,60.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01640419351656367,29911.05086459934,8,4,8,8_1,8_4,8_1_0 -15704,2,81.0,0.0,7,111,683.0,1253.0,0.0,77,75,0.0,0.0,944.0249974343606,1936.0,0.0,2272.5070847618535,20,0,0,0,0,0,0,0,0,0,,1,,5,112817,2,1,2,0,1,,378.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,598.534697409688,683.0,54053.81850523831,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03581615607438323,36035.879003492206,9,5,9,9_1,9_4,9_0_0 -15705,2,60.0,0.0,8,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,727.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,2002.0,6,130026,2,1,0,0,1,,0.0,384.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1130.99021568258,0.0,26519.878944758566,0,1,2,3,49.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027413398134823897,26519.878944758566,7,4,7,7_0,7_4,7_0_0 -15706,2,70.0,0.0,2,111,980.0,1300.0,0.0,77,72,0.0,0.0,1354.530743024412,2280.0,0.0,2357.7487711016834,10,0,0,0,0,0,0,0,0,0,,1,,2,129633,2,1,2,0,1,,650.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,629.70960076097,980.0,71164.33193651089,5,5,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03203852179816846,47442.88795767393,10,5,10,10_1,10_4,10_0_1 -15707,2,47.0,0.0,6,111,3000.0,0.0,0.0,0,43,0.0,310.55175144583734,4146.522682727792,3300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,4,112566,2,2,3,0,1,,450.0,,32,1.0,0.0,7.0,4.0,2.3,1,1,546.841021409079,3000.0,39460.38466773562,0,1,1,2,172.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08362817615151662,17156.68898597201,4,2,4_0,4_1_0,4_4_0,4_0_0 -15708,1,33.0,396.0,2,111,380.0,86.0,0.0,0,52,0.0,0.0,525.2262064788536,466.0,0.0,155.9741494728806,10,2,1,2,2,1,1,2,1,3,45.0,2,,2,109629,1,2,0,1,1,610.0,0.0,366.0,32,1.0,0.0,3.0,3.0,1.8,1,1,619.121369807844,380.0,10247.67424190089,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.045473732770955004,5693.152356611606,1,1,1_1,1_0_1,1_4_1,1_0_1 -15709,2,46.0,0.0,2,111,840.0,0.0,0.0,47,38,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,113004,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,789.280725814581,840.0,72857.25630137957,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011529393812543203,48571.50420091971,10,5,10,10_0,10_4,10_0_1 -15710,0,25.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,886.1076641254558,0.0,856.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,100441,2,1,0,1,1,856.0,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1015.13291426834,0.0,8517.282648119388,0,4,5,0,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10050153732881043,8517.282648119388,1,1,1_0,1_0_0,1_4_0,1_0_1 -15711,2,74.0,0.0,2,111,400.0,0.0,0.0,77,78,2240.377315527001,0.0,552.8696910303722,2020.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,128445,2,1,1,0,2,,300.0,332.0,41,0.0,2.0,3.0,2.0,1.5,1,1,458.283921142569,400.0,24026.667136874345,5,5,2,3,60.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0840732502969525,16017.778091249564,4,2,4_0,4_1_0,4_4_0,4_0_1 -15712,2,70.0,0.0,2,111,600.0,2000.0,0.0,78,77,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,2,116956,2,1,2,0,1,,260.0,,41,0.0,4.0,5.0,2.0,1.5,5,4,476.842886443193,600.0,21640.288498282272,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1201462725511436,14426.858998854848,3,2,3_0,3_1_0,3_4_0,3_0_1 -15713,2,84.0,0.0,1,111,210.0,1350.0,0.0,78,78,0.0,0.0,290.25658779094545,1560.0,0.0,2448.431416144056,20,0,0,0,0,0,0,0,0,0,,1,,1,101402,2,1,2,0,2,,200.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,506.744973033428,210.0,28597.894736154038,5,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054549469965976774,19065.263157436024,5,3,5,5_1,5_4,5_1_0 -15714,2,23.0,0.0,2,111,0.0,0.0,57.0,0,43,0.0,0.0,29.122060085738926,57.0,0.0,65.1650091552,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,123520,1,2,0,0,1,,170.0,304.0,12,1.0,0.0,3.0,1.0,1.0,2,2,890.594737592517,0.0,25304.177928356356,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002252592443879581,25304.177928356356,7,4,7,7_0,7_4,7_0_1 -15715,1,36.0,39.0,2,111,170.0,500.0,0.0,85,47,0.0,0.0,234.9696186879082,670.0,0.0,906.8264504237244,41,2,2,2,2,1,2,2,2,2,45.0,1,,2,111848,2,2,2,0,1,,370.0,317.0,42,1.0,0.0,2.0,3.0,1.8,1,1,779.316889526427,170.0,21112.532286453137,6,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,1,0.031734705761937695,11729.184603585076,2,1,2_1,2_1_1,2_4_1,2_0_1 -15716,2,43.0,0.0,2,111,120.0,130.0,0.0,0,38,0.0,0.0,165.86090730911167,250.0,0.0,235.77487711016835,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,116710,2,2,0,1,1,120.0,0.0,462.0,12,1.0,0.0,2.0,1.0,1.0,4,4,747.312832241189,120.0,37997.643842557794,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006579355315710317,37997.643842557794,9,5,9,9_0,9_4,9_0_1 -15717,2,51.0,0.0,2,111,800.0,2200.0,0.0,34,38,0.0,0.0,1105.7393820607444,3000.0,0.0,3990.0363818643877,30,0,0,0,0,0,0,0,0,3,30.0,1,,2,127264,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,569.254839983061,800.0,96438.69204056519,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03110784620283013,38575.47681622607,9,5,9,9_1,9_4,9_0_1 -15718,2,79.0,0.0,2,111,654.0,0.0,0.0,78,74,3435.2452171414016,124.22070057833493,903.9419448346586,3154.0,137.62616033521533,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,104831,2,1,1,0,2,,320.0,,41,1.0,4.0,6.0,3.0,2.0,1,1,513.773769349505,654.0,87877.92527662823,5,5,0,1,78.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03589069712412554,43938.962638314115,10,5,10,10_1,10_4,10_0_1 -15719,2,52.0,0.0,2,111,223.0,1170.0,0.0,0,54,0.0,0.0,308.2248527494325,1393.0,0.0,2121.973893991515,20,0,0,0,0,0,0,0,0,2,7.0,2,,2,111841,2,3,0,0,1,,0.0,850.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1235.77818795659,223.0,27151.77531231955,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05130419591266857,27151.77531231955,7,4,7,7_0,7_4,7_0_1 -15720,2,74.0,0.0,2,111,528.0,1900.0,0.0,74,74,0.0,124.22070057833493,729.7879921600913,2548.0,0.0,3445.940511610153,42,0,0,0,0,0,0,0,0,0,,1,,2,104890,2,1,1,0,2,,450.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,562.580505659578,528.0,62781.912248682645,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04058493774301156,41854.60816578843,9,5,9,9_1,9_4,9_0_1 -15721,2,51.0,0.0,2,111,800.0,1400.0,0.0,56,90,0.0,41.40690019277831,1105.7393820607444,2240.0,0.0,2539.1140611864284,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,126367,2,1,2,0,1,,1226.0,,43,2.0,2.0,7.0,3.0,1.8,1,1,567.706860704782,800.0,67081.83364854511,1,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03339205084547628,37267.68536030284,9,5,9,9_1,9_4,9_0_1 -15722,2,25.0,0.0,2,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,1499.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,101334,2,1,0,0,2,,0.0,610.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1097.29840495529,0.0,38599.53505228766,1,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038834664665505066,25733.023368191774,7,4,7,7_0,7_4,7_0_1 -15723,2,56.0,0.0,7,111,3300.0,0.0,0.0,37,48,0.0,207.03450096389156,4561.174951000571,3570.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,119101,2,1,3,0,1,,207.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,588.715851031259,3300.0,37011.4709060531,4,1,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09645658258386425,24674.313937368734,7,4,7,7_1,7_4,7_0_0 -15724,2,63.0,0.0,1,111,2000.0,0.0,0.0,46,37,2688.452778632401,0.0,2764.3484551518613,3800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,120600,2,1,1,0,1,,1200.0,,43,2.0,1.0,8.0,3.0,2.0,1,1,555.910714332971,2000.0,109298.76728669726,1,1,0,1,190.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03476708927587784,54649.38364334863,10,5,10,10_1,10_4,10_1_0 -15725,2,49.0,0.0,1,111,600.0,1800.0,0.0,85,38,0.0,310.55175144583734,829.3045365455583,2700.0,0.0,3264.575221525408,10,2,2,2,1,1,2,2,2,2,20.0,1,,1,112747,2,2,3,0,1,,850.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,1,1,330.103004112112,600.0,54898.72161905917,6,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04918147309030675,21114.892930407375,5,3,5,5_1,5_4,5_1_0 -15726,2,58.0,0.0,1,111,1500.0,0.0,0.0,0,34,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,1,130155,2,1,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,851.400065435342,1500.0,47510.23583989303,0,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03157214384401122,47510.23583989303,10,5,10,10_0,10_4,10_1_0 -15727,2,72.0,0.0,1,111,650.0,1250.0,0.0,75,74,0.0,0.0,898.4132479243549,1900.0,0.0,2267.066126059311,50,0,0,0,0,0,0,0,0,0,,1,,1,108928,2,1,1,0,1,,350.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,434.991802568067,650.0,62916.79341103921,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030198614662180656,41944.528940692806,9,5,9,9_1,9_4,9_1_0 -15728,2,74.0,0.0,1,111,780.0,0.0,0.0,77,75,4480.754631054002,0.0,1078.0958975092258,3870.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,131003,1,1,4,0,1,,330.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,424.446065173649,780.0,24763.422380518816,5,5,0,1,80.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15627888344886035,16508.94825367921,4,2,4_0,4_1_0,4_4_0,4_1_0 -15729,2,85.0,0.0,1,111,263.0,1496.0,0.0,0,71,0.0,0.0,363.5118218524697,1759.0,0.0,2713.2247396677835,10,2,2,2,1,1,2,2,2,0,,1,,1,116631,1,3,3,0,2,,240.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,478.01143876352,263.0,14412.873719503847,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,1,0,0,0.12204366972421878,14412.873719503847,3,2,3_0,3_1_0,3_4_0,3_1_0 -15730,2,34.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,779.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,3,101690,1,1,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,837.573681868687,0.0,33304.25935500539,0,1,1,2,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02339040156084185,25618.66104231184,7,4,7,7_0,7_4,7_0_0 -15731,2,55.0,0.0,5,111,1500.0,60.0,0.0,85,38,0.0,362.31037668681023,2073.261341363896,1910.0,0.0,108.81917405084694,10,0,0,0,0,0,0,0,0,2,25.0,1,,3,110387,2,1,2,0,1,,900.0,,42,2.0,1.0,6.0,3.0,2.0,1,1,599.980555799806,1500.0,91333.44030469985,6,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02091238426613516,45666.720152349924,10,5,10,10_1,10_4,10_0_0 -15732,2,72.0,0.0,1,111,1250.0,3220.0,0.0,72,74,0.0,0.0,1727.717784469913,4470.0,0.0,5839.962340728785,41,0,0,0,0,0,0,0,0,0,,1,,1,115909,1,1,2,0,1,,610.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,411.516331025647,1250.0,71456.0080117528,5,5,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06255597149038598,47637.338674501865,10,5,10,10_1,10_4,10_1_0 -15733,2,35.0,0.0,5,111,750.0,2000.0,0.0,21,22,0.0,375.76761924946317,1036.630670681948,3113.0,0.0,3627.3058016948976,10,0,0,0,0,0,0,0,0,0,,1,,3,117761,2,1,1,0,1,,600.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,631.97800228737,750.0,30412.919487566316,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10235781544329162,14482.342613126817,3,2,3_0,3_1_0,3_4_0,3_0_0 -15734,2,49.0,0.0,2,111,0.0,0.0,2269.0,35,38,0.0,0.0,1159.2623567463443,2269.0,0.0,2594.024662686821,41,0,0,0,0,0,0,0,0,2,60.0,1,,2,121565,2,1,2,0,1,,900.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,549.521976349099,0.0,55058.955315123036,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04121037144663684,23938.67622396654,6,3,6,6_1,6_4,6_0_1 -15735,2,70.0,0.0,2,111,1100.0,1400.0,0.0,78,77,0.0,0.0,1520.3916503335236,2500.0,0.0,2539.1140611864284,20,0,0,0,0,0,0,0,0,0,,1,,2,129799,2,1,2,0,2,,480.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,594.168793303045,1100.0,28244.242181030757,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08851361576551826,18829.494787353837,5,3,5,5_1,5_4,5_0_1 -15736,2,72.0,0.0,2,111,329.0,1165.0,0.0,0,74,0.0,0.0,454.73532087248117,1494.0,0.0,2112.905629487278,20,0,0,0,0,0,0,0,0,0,,1,,2,109469,2,2,2,0,1,,360.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,685.778991683284,329.0,49990.16842830571,0,6,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02988587650274967,49990.16842830571,10,5,10,10_1,10_4,10_0_1 -15737,0,52.0,0.0,5,111,1250.0,0.0,0.0,0,37,0.0,0.0,1727.717784469913,1310.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,3,132088,2,1,1,0,1,1250.0,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,944.47567638837,1250.0,53180.214583330344,0,1,5,0,41.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024633221401303397,53180.214583330344,10,5,10,10_1,10_4,10_0_0 -15738,2,58.0,0.0,6,111,1400.0,0.0,0.0,67,47,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,112941,2,1,2,0,1,,440.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,578.677306855648,1400.0,56333.66631434697,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024851924108540584,37555.77754289798,9,5,9,9_1,9_4,9_0_0 -15739,2,69.0,0.0,2,111,1700.0,0.0,0.0,63,78,0.0,0.0,2349.696186879082,1760.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,124822,2,3,3,0,1,,240.0,,42,1.0,4.0,2.0,2.0,1.5,1,1,514.56210695376,1700.0,32654.318669146087,4,5,0,1,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05389792443175248,21769.545779430726,6,3,6,6_1,6_4,6_0_1 -15740,2,63.0,0.0,7,111,880.0,2000.0,0.0,75,74,0.0,0.0,1216.313320266819,2880.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,5,100725,2,1,2,0,1,,510.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,660.288534085707,880.0,84958.10573455863,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03389906089712279,56638.73715637242,10,5,10,10_1,10_4,10_0_0 -15741,2,62.0,0.0,2,111,4000.0,0.0,0.0,22,75,0.0,0.0,5528.696910303723,4120.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,103464,1,1,3,0,1,,760.0,,42,1.0,3.0,9.0,3.0,2.0,2,2,567.601034207604,4000.0,55336.71000796469,1,5,0,1,200.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07445328786996919,27668.355003982346,7,4,7,7_1,7_4,7_0_1 -15742,2,51.0,0.0,7,111,1100.0,1500.0,0.0,54,38,0.0,0.0,1520.3916503335236,2600.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,3,60.0,1,,5,132073,2,1,2,0,1,,800.0,,43,2.0,0.0,8.0,5.0,2.8,2,2,529.65875774415,1100.0,135555.1018796062,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019180392061592784,48412.53638557364,10,5,10,10_1,10_4,10_0_0 -15743,2,53.0,0.0,7,111,600.0,600.0,0.0,55,38,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,120961,2,1,1,0,1,,300.0,,43,3.0,0.0,6.0,4.0,2.5,5,4,626.904525495896,600.0,86258.91476416998,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013911605580487237,34503.565905667994,9,5,9,9_1,9_4,9_0_0 -15744,2,37.0,0.0,2,111,441.0,1217.0,0.0,38,37,0.0,0.0,609.5388343609853,1658.0,0.0,2207.2155803313453,20,0,0,0,0,0,0,0,0,1,15.0,1,,2,101597,2,1,3,0,1,,428.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,554.414296134312,441.0,55641.022552965405,1,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0297981583358165,30911.679196091893,8,4,8,8_1,8_4,8_0_1 -15745,2,51.0,0.0,1,111,1200.0,60.0,0.0,42,42,0.0,0.0,1658.6090730911167,1260.0,0.0,108.81917405084694,41,0,0,0,0,0,0,0,0,1,10.0,1,,1,129745,2,2,2,0,1,,300.0,,42,2.0,1.0,9.0,4.0,2.5,2,2,357.361568749532,1200.0,88282.31675881204,5,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014272393909216604,35312.92670352482,9,5,9,9_1,9_4,9_1_0 -15746,2,39.0,0.0,7,111,912.0,0.0,0.0,0,46,0.0,0.0,1260.5428955492487,912.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,127286,2,1,2,0,1,,336.0,,32,1.0,0.0,3.0,3.0,1.6,3,2,1195.40295212527,912.0,57752.33484329807,0,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01579156933610683,36095.209277061294,9,5,9,9_1,9_4,9_0_0 -15747,2,34.0,0.0,9,112,2200.0,0.0,0.0,48,46,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,115560,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1157.36635372265,2200.0,57305.52456283005,1,1,1,2,100.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03839071392825154,27288.34502991907,7,4,7,7_1,7_0,7_0_0 -15748,2,61.0,0.0,1,111,1700.0,0.0,0.0,75,78,0.0,0.0,2349.696186879082,1820.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,124007,2,1,1,0,1,,800.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,520.475459192794,1700.0,57749.667720326855,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031515332846831126,38499.7784802179,9,5,9,9_1,9_4,9_1_0 -15749,2,30.0,0.0,2,111,500.0,800.0,0.0,0,47,0.0,496.8828023133397,691.0871137879653,1780.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,0,,1,,2,109575,2,2,3,0,1,,420.0,,22,1.0,0.0,6.0,5.0,3.0,2,2,415.623991158212,500.0,61199.772562276376,0,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029085075409204943,20399.92418742546,5,3,5,5_1,5_4,5_0_1 -15750,2,48.0,0.0,2,111,579.0,1687.0,0.0,46,37,0.0,0.0,800.2788777664638,2266.0,0.0,3059.632443729646,20,0,0,0,0,0,0,0,0,3,40.0,1,,2,113231,2,1,2,0,1,,720.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,382.215256943159,579.0,83928.63069149462,1,1,1,2,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026999129871776138,32280.24257365178,8,4,8,8_1,8_4,8_0_1 -15751,2,64.0,0.0,2,111,180.0,80.0,0.0,0,74,0.0,0.0,248.7913609636675,260.0,0.0,145.09223206779592,44,0,0,0,0,0,0,0,0,0,,2,,2,115619,1,2,0,1,1,1032.0,0.0,691.0,11,0.0,0.0,6.0,1.0,1.0,2,2,239.664090062974,180.0,36510.25036832263,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007121287785678503,36510.25036832263,9,5,9,9_0,9_4,9_0_1 -15752,2,80.0,0.0,2,111,792.0,1720.0,0.0,74,74,0.0,0.0,1094.681988240137,2512.0,0.0,3119.482989457612,71,0,0,0,0,0,0,0,0,0,,1,,2,129392,2,1,3,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,150.218448114537,792.0,112733.24088760102,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022282691247247577,75155.49392506735,10,5,10,10_1,10_4,10_0_1 -15753,2,55.0,0.0,2,111,845.0,0.0,0.0,56,56,0.0,0.0,1167.9372223016612,845.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,90.0,2,,2,115716,2,1,0,1,1,600.0,0.0,379.0,43,2.0,1.0,3.0,3.0,2.0,2,2,173.095889448067,845.0,49398.154878293455,1,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017105902074316344,24699.077439146728,7,4,7,7_0,7_4,7_0_1 -15754,2,41.0,0.0,1,111,1042.0,2250.0,0.0,37,38,0.0,0.0,1440.2255451341196,3292.0,0.0,4080.71902690676,71,2,2,2,2,1,2,2,2,2,25.0,1,,1,127176,1,2,1,0,1,,1502.0,,43,2.0,0.0,7.0,3.0,1.8,3,3,206.203957306359,1042.0,138829.21553668505,1,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.023712588069260555,77127.34196482503,10,5,10,10_1,10_4,10_1_0 -15755,2,33.0,0.0,2,111,728.0,0.0,0.0,37,46,0.0,0.0,1006.2228376752774,728.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,110817,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,174.522231580957,728.0,61395.085564964014,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011857626604814826,34108.38086942445,9,5,9,9_0,9_4,9_0_1 -15756,2,51.0,0.0,2,111,690.0,0.0,0.0,0,43,0.0,0.0,953.7002170273921,690.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,133025,2,1,0,0,1,,0.0,343.0,12,1.0,0.0,2.0,1.0,1.0,6,6,958.811530372097,690.0,27434.314942144905,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025150983410925788,27434.314942144905,7,4,7,7_0,7_4,7_0_1 -15757,1,52.0,180.0,2,111,1200.0,0.0,0.0,0,56,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100089,1,1,0,0,2,,0.0,360.0,32,2.0,0.0,2.0,3.0,2.0,1,1,839.010144514843,1200.0,11351.924449153983,0,4,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10570894876678215,5675.9622245769915,1,1,1_1,1_0_1,1_4_1,1_0_1 -15758,2,42.0,0.0,2,111,180.0,0.0,0.0,0,46,0.0,0.0,248.7913609636675,180.0,0.0,0.0,10,2,2,2,2,1,2,1,2,3,110.0,2,,2,131543,1,3,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,793.758237323633,180.0,35296.6518607584,0,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005099633832412241,35296.6518607584,9,5,9,9_0,9_4,9_0_1 -15759,2,74.0,0.0,9,111,820.0,0.0,0.0,75,75,0.0,0.0,1133.3828666122631,820.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,103443,2,2,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1068.91623777393,820.0,52727.51351950028,5,5,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015551653117432484,35151.675679666856,9,5,9,9_0,9_4,9_0_0 -15760,2,59.0,0.0,9,111,1300.0,0.0,0.0,37,34,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,2009.0,6,126533,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,1079.57290653565,1300.0,69211.53344848148,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01878299663693584,34605.76672424074,9,5,9,9_0,9_4,9_0_0 -15761,2,53.0,0.0,2,111,400.0,83.0,0.0,75,38,0.0,0.0,552.8696910303722,483.0,0.0,150.53319077033825,20,0,0,0,0,0,0,0,0,3,90.0,2,,2,129321,2,1,0,1,2,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,744.385023542591,400.0,84393.39260668946,5,1,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005723196865079161,56262.26173779298,10,5,10,10_0,10_4,10_0_1 -15762,2,59.0,0.0,2,111,500.0,150.0,0.0,68,53,0.0,0.0,691.0871137879653,650.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,2,,2,107190,2,1,0,1,1,1048.0,0.0,135.0,43,2.0,0.0,3.0,4.0,2.5,1,1,787.869663943085,500.0,44537.11737459242,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01459456826837232,17814.846949836967,4,2,4_0,4_0_0,4_4_0,4_0_1 -15763,2,79.0,0.0,2,111,466.0,89.0,0.0,74,75,0.0,0.0,644.0931900503837,555.0,0.0,161.41510817542294,71,0,0,0,0,0,0,0,0,0,,2,,2,120055,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,7,5,829.825410885447,466.0,70881.13404689857,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007830010163674635,47254.08936459905,10,5,10,10_0,10_4,10_0_1 -15764,2,43.0,0.0,2,111,170.0,60.0,0.0,0,63,0.0,0.0,234.9696186879082,230.0,0.0,108.81917405084694,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,127036,2,3,0,1,1,545.0,0.0,306.0,12,1.0,0.0,2.0,1.0,1.0,2,2,293.619955447169,170.0,21548.74711938414,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01067347436608525,21548.74711938414,6,3,6,6_0,6_4,6_0_1 -15765,1,30.0,367.0,2,111,300.0,135.0,0.0,85,48,0.0,0.0,414.65226827277917,435.0,0.0,244.8431416144056,50,0,0,0,0,0,0,0,0,3,35.0,2,,2,100657,2,1,0,1,1,1250.0,0.0,600.0,42,1.0,0.0,2.0,3.0,1.8,4,3,298.610928167502,300.0,35342.66843138339,6,1,3,4,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012308068951967732,19634.815795212995,5,3,5,5_0,5_4,5_0_1 -15766,2,44.0,0.0,2,111,290.0,60.0,0.0,0,54,0.0,0.0,400.8305259970199,350.0,0.0,108.81917405084694,41,0,0,0,0,0,0,0,0,2,25.0,2,,2,129286,2,3,0,1,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,3,3,223.119677058423,290.0,21239.906773841998,0,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016478415076239525,21239.906773841998,5,3,5,5_0,5_4,5_0_1 -15767,1,44.0,280.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1409.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,107692,2,1,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,1.8,1,1,206.203957306359,0.0,28513.630637596725,0,1,1,2,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04941496289645273,15840.905909775958,3,2,3_1,3_0_1,3_4_1,3_0_1 -15768,2,38.0,0.0,9,111,466.0,0.0,0.0,0,53,0.0,0.0,644.0931900503837,466.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,2,2004.0,6,121093,2,1,0,0,1,,0.0,730.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1430.44361643427,466.0,31525.140276483777,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014781853337147982,31525.140276483777,8,4,8,8_0,8_4,8_0_0 -15769,2,63.0,0.0,9,111,0.0,0.0,0.0,43,31,0.0,0.0,0.0,303.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,103328,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,973.296905316401,0.0,76258.48404368285,1,1,0,1,87.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003973328394863366,50838.989362455235,10,5,10,10_0,10_4,10_0_0 -15770,2,35.0,0.0,9,111,313.0,0.0,0.0,37,37,0.0,0.0,432.6205332312663,313.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,2009.0,6,125935,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,880.84938685423,313.0,82950.27632509451,1,1,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003773344874383616,55300.18421672968,10,5,10,10_0,10_4,10_0_0 -15771,2,83.0,0.0,1,111,550.0,1880.0,0.0,0,75,0.0,0.0,760.1958251667618,2430.0,0.0,3409.667453593204,31,0,0,0,0,0,0,0,0,0,,1,,1,104128,2,1,2,0,2,,550.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,441.048066220885,550.0,20715.619364572787,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11730279250813572,20715.619364572787,5,3,5,5_1,5_4,5_1_0 -15772,2,43.0,0.0,2,111,1000.0,0.0,0.0,54,64,1493.5848770180007,0.0,1382.1742275759307,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,129771,2,2,3,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,507.297832966855,1000.0,58292.1615741807,1,1,1,2,85.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03430993028890969,25344.418075730744,7,4,7,7_1,7_4,7_0_1 -15773,2,80.0,0.0,8,111,900.0,0.0,0.0,0,77,0.0,0.0,1243.9568048183376,980.0,137.62616033521533,0.0,44,0,0,0,0,0,0,0,0,0,,1,2000.0,6,128957,2,1,2,0,1,,250.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,631.57824804305,900.0,16612.567398530504,0,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05899148376588002,16612.567398530504,4,2,4_0,4_1_0,4_4_0,4_0_0 -15774,2,49.0,0.0,9,111,650.0,1100.0,0.0,34,37,0.0,0.0,898.4132479243549,1750.0,0.0,1995.0181909321939,41,0,0,0,0,0,0,0,0,2,45.0,1,2008.0,6,120573,2,1,1,0,1,,940.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,596.601683833433,650.0,72778.72352066886,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02404548905701825,29111.489408267546,8,4,8,8_1,8_4,8_0_0 -15775,2,61.0,0.0,2,111,640.0,1250.0,0.0,74,46,0.0,124.22070057833493,884.5915056485956,2010.0,0.0,2267.066126059311,20,0,0,0,0,0,0,0,0,2,60.0,1,,2,100846,2,2,3,0,1,,450.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,566.929931768605,640.0,92320.36679838208,5,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02177201055092889,61546.911198921385,10,5,10,10_1,10_4,10_0_1 -15776,2,59.0,0.0,6,112,1290.0,0.0,0.0,75,52,0.0,517.5862524097289,1783.0047535729504,1850.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,4,95.0,1,,4,123605,2,1,2,0,1,,480.0,,42,2.0,3.0,6.0,3.0,2.0,1,1,907.727617535589,1290.0,57940.60017780751,5,1,0,1,91.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03192925158391075,28970.300088903754,8,4,8,8_1,8_0,8_0_0 -15777,2,76.0,0.0,2,112,1670.0,0.0,0.0,77,75,5824.981020370203,0.0,2308.2309600518042,5570.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116914,2,2,3,0,1,,782.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1001.60941280149,1670.0,58875.818304174405,5,5,0,1,280.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09460590375531268,39250.54553611627,9,5,9,9_1,9_0,9_0_1 -15778,2,68.0,0.0,6,112,1800.0,0.0,0.0,77,74,0.0,0.0,2487.913609636675,1875.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,103692,2,1,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,920.437987321152,1800.0,32180.100464028466,5,5,0,1,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05826582182662577,21453.40030935231,6,3,6,6_1,6_0,6_0_0 -15779,2,55.0,0.0,6,112,1700.0,0.0,0.0,52,38,0.0,258.79312620486445,2349.696186879082,1950.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,120.0,1,,4,100189,2,1,3,0,1,,650.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,916.118217056956,1700.0,82262.43325419462,1,1,0,1,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023704623396859806,54841.62216946308,10,5,10,10_1,10_0,10_0_0 -15780,2,33.0,0.0,1,111,1000.0,0.0,0.0,0,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,12,2,2,2,1,1,2,2,2,3,45.0,2,,1,124412,2,3,0,0,1,,0.0,570.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1246.3370138083,1000.0,33213.61387807736,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.030108135888821476,33213.61387807736,8,4,8,8_0,8_4,8_1_0 -15781,2,43.0,0.0,1,111,500.0,700.0,0.0,0,46,0.0,0.0,691.0871137879653,1200.0,0.0,1269.5570305932142,10,0,0,0,0,0,0,0,0,0,,1,,1,124605,2,1,1,0,1,,300.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,360.981762923449,500.0,22393.97065882993,0,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053585852115370196,17226.13127602302,4,2,4_0,4_1_0,4_4_0,4_1_0 -15782,2,62.0,0.0,2,111,220.0,400.0,0.0,0,78,0.0,0.0,304.0783300667047,620.0,0.0,725.4611603389795,71,2,2,2,2,1,2,2,2,0,,2,,2,120967,2,1,0,1,1,400.0,400.0,230.0,11,0.0,0.0,2.0,1.0,1.0,1,1,907.9108069898,220.0,20723.491264936994,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02991773886328728,20723.491264936994,5,3,5,5_0,5_4,5_0_1 -15783,2,26.0,0.0,2,111,576.0,318.0,0.0,0,62,0.0,0.0,796.132355083736,894.0,0.0,576.7416224694888,12,0,0,0,0,0,0,0,0,0,,2,,2,102355,2,1,0,1,1,660.0,0.0,372.0,22,2.0,2.0,3.0,2.0,1.5,2,2,626.482857672929,576.0,37856.04400826146,0,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02361577981589675,25237.362672174306,7,4,7,7_0,7_4,7_0_1 -15784,2,29.0,0.0,9,111,250.0,0.0,0.0,0,52,0.0,0.0,345.54355689398267,250.0,0.0,0.0,50,1,2,2,1,1,2,2,2,2,20.0,2,2007.0,6,125669,2,1,0,1,1,240.0,0.0,298.0,12,1.0,0.0,2.0,1.0,1.0,1,1,209.459352216235,250.0,18938.559538238216,0,1,2,3,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.013200581569851357,18938.559538238216,5,3,5,5_0,5_4,5_0_0 -15785,2,60.0,0.0,1,111,621.0,1665.0,0.0,75,37,0.0,0.0,858.3301953246529,2286.0,0.0,3019.7320799110025,71,0,0,0,0,0,0,0,0,3,60.0,1,,1,121797,2,2,1,0,1,,500.0,,42,1.0,2.0,7.0,3.0,2.0,1,1,364.271106693759,621.0,133068.72007758034,5,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017179093619200968,66534.36003879017,10,5,10,10_1,10_4,10_1_0 -15786,2,52.0,0.0,9,111,672.0,2427.0,0.0,38,38,0.0,51.75862524097289,928.8210809310253,3149.0,0.0,4401.735590356759,20,2,2,1,2,2,2,2,1,3,50.0,1,2013.0,6,121433,2,1,1,0,2,,707.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,369.636614405236,672.0,118781.33807230089,1,1,1,2,162.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02651089852248708,79187.55871486726,10,5,10,10_1,10_4,10_0_0 -15787,2,41.0,0.0,2,111,600.0,1260.0,0.0,46,43,0.0,0.0,829.3045365455583,1860.0,0.0,2285.2026550677856,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,104160,2,1,2,0,1,,1020.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,462.003159530841,600.0,66526.59158979316,1,1,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027958744850012287,25587.15061145891,7,4,7,7_1,7_4,7_0_1 -15788,2,61.0,0.0,2,111,216.0,108.0,0.0,52,64,0.0,0.0,298.549633156401,324.0,0.0,195.8745132915245,20,0,0,0,0,0,0,0,0,3,90.0,2,,2,105308,1,2,0,1,1,612.0,0.0,504.0,43,2.0,1.0,3.0,2.0,1.5,3,2,626.482857672929,216.0,36342.819831207555,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008915103492376269,24228.54655413837,7,4,7,7_0,7_4,7_0_1 -15789,2,45.0,0.0,9,111,534.0,877.0,0.0,56,63,0.0,0.0,738.0810375255469,1411.0,0.0,1590.5735940432128,31,0,0,0,0,0,0,0,0,0,,1,2009.0,6,132286,2,1,1,0,1,,525.0,,43,2.0,0.0,8.0,4.0,2.5,2,2,619.062751895436,534.0,42312.180972839815,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03334737107750888,16924.872389135926,4,2,4_0,4_1_0,4_4_0,4_0_0 -15790,0,55.0,0.0,2,111,2500.0,0.0,0.0,55,22,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,2,116887,2,2,5,0,1,,900.0,,43,3.0,1.0,5.0,3.0,2.0,4,3,551.496430945299,2500.0,60458.75783035817,1,1,5,0,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0413505022219407,30229.378915179084,8,4,8,8_1,8_4,8_0_1 -15791,2,78.0,0.0,2,111,635.0,2000.0,0.0,77,75,0.0,0.0,877.6806345107159,2635.0,0.0,3627.3058016948976,50,2,2,2,2,1,2,2,2,0,,1,,2,100054,2,1,2,0,1,,630.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,611.891769864372,635.0,35974.92440054018,5,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0732454631637929,23983.282933693452,6,3,6,6_1,6_4,6_0_1 -15792,1,66.0,209.0,2,111,500.0,90.0,0.0,0,77,0.0,0.0,691.0871137879653,590.0,0.0,163.2287610762704,41,0,0,0,0,0,0,0,0,0,,2,,2,131842,2,1,0,1,1,1350.0,0.0,339.0,21,0.0,2.0,3.0,2.0,1.5,1,1,627.128041226825,500.0,19275.441932166632,0,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030608896131995546,12850.294621444422,2,1,2_1,2_0_1,2_4_1,2_0_1 -15793,0,85.0,0.0,2,111,300.0,1500.0,0.0,0,86,0.0,0.0,414.65226827277917,1800.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,2,101283,2,3,1,0,1,,220.0,,11,0.0,6.0,4.0,1.0,1.0,2,2,601.673041308998,300.0,18218.912244201125,0,6,0,1,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09879843405980068,18218.912244201125,4,2,4_0,4_1_0,4_4_0,4_0_1 -15794,2,84.0,0.0,2,111,270.0,1200.0,0.0,77,75,0.0,0.0,373.1870414455012,1470.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,2,109479,2,1,3,0,1,,300.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,534.250300715098,270.0,27857.048987859605,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05276940858454323,18571.365991906405,4,2,4_0,4_1_0,4_4_0,4_0_1 -15795,0,39.0,0.0,6,111,1000.0,0.0,0.0,0,54,0.0,0.0,1382.1742275759307,1673.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,3,60.0,1,,4,126299,2,2,5,0,1,,400.0,,32,1.0,0.0,5.0,3.0,1.6,3,3,493.467851839397,1000.0,33150.937281565115,0,1,5,0,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050466144766601745,20719.335800978195,5,3,5,5_1,5_4,5_0_0 -15796,2,37.0,0.0,7,111,300.0,450.0,0.0,67,46,0.0,0.0,414.65226827277917,750.0,0.0,816.143805381352,71,2,1,2,2,1,2,2,2,3,75.0,2,,5,111176,1,2,0,1,1,876.0,0.0,399.0,43,2.0,0.0,3.0,4.0,2.1,1,1,857.36669207932,300.0,53700.0,1,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.013966480446927373,25571.42857142857,7,4,7,7_0,7_4,7_0_0 -15797,2,73.0,0.0,2,111,210.0,20.0,0.0,75,75,0.0,0.0,290.25658779094545,230.0,0.0,36.27305801694898,41,0,0,0,0,0,0,0,0,0,,1,,2,124533,2,2,1,0,1,,955.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,526.420991608649,210.0,54815.13791979574,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004195921213160692,27407.56895989787,7,4,7,7_1,7_4,7_0_1 -15798,2,57.0,0.0,2,111,300.0,60.0,0.0,0,37,0.0,0.0,414.65226827277917,360.0,0.0,108.81917405084694,12,1,2,2,2,1,1,2,2,3,120.0,2,,2,113347,2,3,0,1,1,1304.0,0.0,291.0,32,2.0,0.0,3.0,2.0,1.5,4,2,627.156412169108,300.0,31250.127110987254,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011519953141996256,20833.418073991503,5,3,5,5_0,5_4,5_0_1 -15799,2,63.0,0.0,9,111,600.0,0.0,0.0,0,74,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,128109,2,1,0,0,1,,0.0,685.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1114.39415594923,600.0,33732.64402749263,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017786924722265788,33732.64402749263,9,5,9,9_0,9_4,9_0_0 -15800,2,53.0,0.0,7,111,1800.0,1800.0,0.0,22,21,0.0,0.0,2487.913609636675,3600.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,125120,2,1,2,0,1,,1000.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,563.710324106003,1800.0,113708.53692605949,1,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03165989201268985,54146.92234574261,10,5,10,10_1,10_4,10_0_0 -15801,2,41.0,0.0,8,111,800.0,0.0,0.0,0,45,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,80.0,2,2001.0,6,116683,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1206.87620350392,800.0,24146.080570771755,0,1,1,2,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03313167110725128,24146.080570771755,6,3,6,6_0,6_4,6_0_0 -15802,2,51.0,0.0,8,111,604.0,990.0,0.0,52,48,0.0,0.0,834.833233455862,1594.0,0.0,1795.5163718389745,71,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,104739,2,1,2,0,1,,613.0,,43,2.0,0.0,4.0,5.0,2.8,2,2,491.231466579568,604.0,64732.21347369267,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024624524861146694,23118.647669175953,6,3,6,6_1,6_4,6_0_0 -15803,2,44.0,0.0,1,111,620.0,0.0,0.0,0,54,0.0,207.03450096389156,856.9480210970769,870.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,123934,2,2,1,0,1,,420.0,,32,2.0,0.0,3.0,4.0,2.3,1,1,400.890504983931,620.0,33820.18165765664,0,1,1,2,62.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025724285245021395,14704.426807676802,3,2,3_0,3_1_0,3_4_0,3_1_0 -15804,1,50.0,64.0,2,111,250.0,150.0,0.0,0,54,0.0,0.0,345.54355689398267,400.0,0.0,272.04793512711734,50,2,1,2,1,1,2,2,2,1,30.0,2,,2,120059,2,1,0,1,1,550.0,0.0,371.0,12,1.0,2.0,3.0,1.0,1.0,2,2,706.303965353226,250.0,11561.0,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03459908312429721,11561.0,2,1,2_1,2_0_1,2_4_1,2_0_1 -15805,2,57.0,0.0,2,111,0.0,0.0,0.0,75,38,0.0,0.0,0.0,3552.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,124966,2,2,3,0,2,,600.0,,42,2.0,2.0,5.0,3.0,2.0,1,1,493.543965686539,0.0,96852.66131444203,5,1,1,2,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03667426327572012,48426.33065722101,10,5,10,10_1,10_4,10_0_1 -15806,2,54.0,0.0,5,111,1630.0,0.0,0.0,43,38,0.0,0.0,2252.943990948767,1690.0,103.2196202514115,0.0,31,2,2,2,2,1,2,2,2,0,,1,,3,131406,2,1,3,0,1,,840.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,491.717505419392,1630.0,120049.63102284147,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.014077510989421109,48019.85240913658,10,5,10,10_1,10_4,10_0_0 -15807,2,41.0,0.0,1,111,500.0,1200.0,0.0,52,37,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,3,90.0,1,,1,126119,2,2,1,0,1,,475.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,325.727780390884,500.0,47867.584503086015,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0355146393461822,26593.102501714453,7,4,7,7_1,7_4,7_1_0 -15808,2,52.0,0.0,9,111,1000.0,0.0,0.0,75,67,0.0,0.0,1382.1742275759307,1070.0,120.42289029331342,0.0,12,0,0,0,0,0,0,0,0,0,,1,2008.0,6,115598,2,1,1,0,1,,216.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,822.449234950038,1000.0,41818.28668596876,5,1,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025586892357285788,27878.857790645838,7,4,7,7_1,7_4,7_0_0 -15810,2,79.0,0.0,6,111,900.0,0.0,0.0,43,74,0.0,258.79312620486445,1243.9568048183376,1150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,115263,2,1,2,0,1,,350.0,,42,1.0,3.0,3.0,3.0,1.8,1,1,513.15911845174,900.0,45599.23471620437,1,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025219721496583147,25332.908175669094,7,4,7,7_1,7_4,7_0_0 -15811,2,43.0,0.0,2,111,400.0,110.0,0.0,56,63,0.0,0.0,552.8696910303722,510.0,0.0,199.50181909321938,50,0,0,0,0,0,0,0,0,0,,2,,2,109086,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,706.571399998895,400.0,34456.910891119456,1,4,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014801094666075877,14981.265604834547,3,2,3_0,3_0_0,3_4_0,3_0_1 -15812,2,54.0,0.0,2,111,0.0,0.0,0.0,75,43,0.0,0.0,0.0,1584.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,,2,120584,2,1,1,0,1,,250.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,520.44159604636,0.0,47709.25793243289,7,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03320110327943693,31806.17195495526,8,4,8,8_1,8_4,8_0_1 -15813,2,82.0,0.0,2,111,392.0,1825.0,0.0,0,74,0.0,0.0,541.8122972097648,2217.0,0.0,3309.916544046594,50,0,0,0,0,0,0,0,0,0,,1,,2,120083,2,1,3,0,1,,220.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,616.650035124691,392.0,36918.12885701466,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06005179754874704,36918.12885701466,9,5,9,9_1,9_4,9_0_1 -15814,2,49.0,0.0,6,111,1045.0,0.0,0.0,46,33,0.0,207.03450096389156,1444.3720678168474,1305.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,110092,2,1,3,0,1,,298.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,547.446922174986,1045.0,156984.9979590109,1,1,0,1,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008312896244650958,104656.66530600727,10,5,10,10_1,10_4,10_0_0 -15815,2,50.0,0.0,6,111,860.0,1250.0,0.0,56,21,0.0,0.0,1188.6698357153002,2110.0,0.0,2267.066126059311,71,0,0,0,0,0,0,0,0,2,75.0,1,,4,124384,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,563.617908637359,860.0,72891.93661775439,1,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028946960362225643,31692.14635554539,8,4,8,8_1,8_4,8_0_0 -15816,2,71.0,0.0,2,111,791.0,0.0,0.0,34,22,5795.109322829842,0.0,1093.299814012561,4769.0,168.59204641063877,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102054,2,2,2,0,1,,917.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,517.914154611725,791.0,61682.89831741059,1,1,0,1,79.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07731478465002517,41121.93221160706,9,5,9,9_1,9_4,9_0_1 -15817,2,41.0,0.0,1,111,1700.0,1500.0,0.0,37,31,0.0,0.0,2349.696186879082,3200.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,100426,2,2,1,0,1,,800.0,,43,2.0,0.0,12.0,5.0,2.4,2,2,296.778787272921,1700.0,426610.16302555904,1,1,0,1,300.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0075009933596173655,177754.23459398295,10,5,10,10_1,10_4,10_1_0 -15818,2,54.0,0.0,7,111,750.0,0.0,0.0,0,34,0.0,0.0,1036.630670681948,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,5,108914,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1044.92238372095,750.0,60862.531721139494,0,1,1,2,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012322852480674922,60862.531721139494,10,5,10,10_0,10_4,10_0_0 -15819,2,71.0,0.0,5,111,373.0,1480.0,0.0,75,75,0.0,0.0,515.5509868858221,1853.0,0.0,2684.2062932542244,50,0,0,0,0,0,0,0,0,0,,1,,3,122563,2,1,1,0,1,,330.0,,41,0.0,2.0,6.0,2.0,1.5,4,2,598.435972983748,373.0,62123.23481660944,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02982780928053954,41415.48987773962,9,5,9,9_1,9_4,9_0_0 -15820,2,42.0,0.0,7,111,1241.0,0.0,0.0,0,47,0.0,20.703450096389155,1715.27821642173,1261.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,131103,1,3,0,0,1,,0.0,606.0,32,1.0,0.0,3.0,3.0,1.6,3,3,813.824232104218,1241.0,31886.350724981683,0,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.039546701686752034,19928.96920311355,5,3,5,5_0,5_4,5_0_0 -15821,2,39.0,0.0,2,111,573.0,0.0,0.0,34,34,0.0,0.0,791.9858324010082,573.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,10.0,2,,2,106279,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,670.381837009123,573.0,73319.8272155033,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007815075699998928,34914.203435953954,9,5,9,9_0,9_4,9_0_1 -15823,1,48.0,273.0,6,111,489.0,0.0,0.0,0,52,0.0,51.75862524097289,675.88319728463,1299.0,0.0,0.0,70,2,2,2,1,1,2,2,2,2,75.0,2,,4,113046,2,3,0,0,1,2000.0,0.0,513.0,32,1.0,0.0,5.0,4.0,2.3,2,2,684.4372339989,489.0,27908.737966192897,0,1,2,3,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,1,0.046544562551468174,12134.233898344739,2,1,2_1,2_0_1,2_4_1,2_0_0 -15824,2,54.0,0.0,1,111,1056.0,3159.0,0.0,43,37,0.0,0.0,1459.5759843201827,4215.0,0.0,5729.329513777091,70,0,0,0,0,0,0,0,0,2,50.0,1,,1,120149,2,1,1,0,1,,761.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,351.267607855641,1056.0,150600.94412750908,1,1,0,1,165.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02798787234979943,65478.67135978656,10,5,10,10_1,10_4,10_1_0 -15825,2,58.0,0.0,1,111,469.0,2290.0,0.0,46,38,0.0,0.0,648.2397127331114,2759.0,0.0,4153.265142940658,31,0,0,0,0,0,0,0,0,3,60.0,1,,1,118761,2,2,2,0,1,,387.0,,43,2.0,3.0,11.0,2.0,1.5,1,1,369.973360264589,469.0,129840.1729258146,1,1,0,1,232.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021249201520829618,86560.1152838764,10,5,10,10_1,10_4,10_1_0 -15826,2,66.0,0.0,2,111,327.0,70.0,0.0,75,74,0.0,0.0,451.9709724173293,397.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,126692,2,2,0,1,2,,0.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,720.297750000026,327.0,59150.538495111716,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006711688686195285,39433.692330074475,9,5,9,9_0,9_4,9_0_1 -15827,2,67.0,0.0,2,111,290.0,345.0,0.0,86,74,0.0,0.0,400.8305259970199,635.0,0.0,625.7102507923698,50,0,0,0,0,0,0,0,0,0,,2,,2,119423,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,1,742.929314564408,290.0,61090.250227650504,6,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010394457341944035,40726.83348510034,9,5,9,9_0,9_4,9_0_1 -15828,2,54.0,0.0,6,111,1166.0,0.0,0.0,77,46,0.0,134.5724256265295,1611.6151493535351,1345.0,84.29602320531939,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,119796,2,1,2,0,1,,230.0,,42,1.0,2.0,5.0,2.0,1.5,4,4,546.513769102551,1166.0,62091.62764092899,5,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021661535558030937,41394.41842728599,9,5,9,9_1,9_4,9_0_0 -15829,1,43.0,326.0,2,111,300.0,1200.0,0.0,0,52,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,3,45.0,2,,2,119534,2,1,0,0,1,,0.0,460.0,32,1.0,0.0,4.0,4.0,2.1,2,2,858.475012941159,300.0,26530.180228528756,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05653938220845563,12633.419156442264,2,1,2_1,2_0_1,2_4_1,2_0_1 -15830,2,94.0,0.0,2,111,140.0,88.0,0.0,0,77,0.0,0.0,193.50439186063028,228.0,0.0,159.6014552745755,50,0,0,0,0,0,0,0,0,0,,2,,2,113753,2,1,0,1,1,912.0,0.0,354.0,11,0.0,1.0,3.0,1.0,1.0,2,2,705.100031811949,140.0,20040.2714099914,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011377091424337044,20040.2714099914,5,3,5,5_0,5_4,5_0_1 -15831,2,23.0,0.0,5,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,594.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,129314,2,1,0,1,1,310.0,135.0,459.0,12,1.0,0.0,1.0,1.0,1.0,1,1,897.986305834548,0.0,3574.853603828713,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.16616065042882275,3574.853603828713,1,1,1_0,1_0_0,1_4_0,1_0_0 -15832,2,61.0,0.0,5,111,800.0,1400.0,0.0,0,77,0.0,0.0,1105.7393820607444,2200.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,3,132946,2,1,2,0,1,,692.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,656.606538144127,800.0,36069.04171859527,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06099413500264404,36069.04171859527,9,5,9,9_1,9_4,9_0_0 -15833,1,62.0,308.0,5,111,570.0,0.0,0.0,0,78,0.0,0.0,787.8393097182804,570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,111817,1,2,0,0,1,,0.0,480.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1025.50089240602,570.0,9322.06565169153,0,5,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.061145246268091986,9322.06565169153,1,1,1_1,1_0_1,1_4_1,1_0_0 -15834,2,34.0,0.0,5,111,258.0,0.0,0.0,0,38,0.0,0.0,356.6009507145901,258.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,3,101323,2,2,0,0,1,,0.0,498.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1025.50089240602,258.0,45072.666603227524,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005724089996075922,45072.666603227524,10,5,10,10_0,10_4,10_0_0 -15835,2,29.0,0.0,5,111,590.0,1350.0,0.0,63,46,0.0,31.055175144583732,815.482794269799,1970.0,0.0,2448.431416144056,50,2,2,2,1,1,2,2,2,3,60.0,2,,3,100648,2,2,0,0,1,,0.0,997.0,43,2.0,0.0,3.0,3.0,1.8,4,4,909.21830606015,590.0,48585.4553931211,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.04054711402949862,26991.91966284505,7,4,7,7_0,7_4,7_0_0 -15836,2,65.0,0.0,2,111,553.0,0.0,0.0,75,78,0.0,0.0,764.3423478494896,553.0,0.0,0.0,50,1,2,2,1,1,2,2,2,0,,2,,2,102906,1,1,0,1,1,804.0,0.0,360.0,41,1.0,2.0,4.0,3.0,2.0,2,2,671.615723616134,553.0,57199.06992128176,5,5,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009667989370474854,28599.53496064088,8,4,8,8_0,8_4,8_0_1 -15837,2,78.0,0.0,2,111,315.0,0.0,0.0,77,75,0.0,0.0,435.3848816864181,395.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125300,1,2,0,1,1,804.0,0.0,363.0,41,0.0,1.0,4.0,2.0,1.5,2,2,719.774195663374,315.0,28367.649288763125,5,5,2,3,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013924312021033966,18911.76619250875,5,3,5,5_0,5_4,5_0_1 -15838,2,60.0,0.0,7,111,1950.0,0.0,0.0,37,47,0.0,0.0,2695.2397437730647,2050.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,3,75.0,1,,5,101515,2,1,3,0,1,,460.0,,43,2.0,1.0,8.0,3.0,2.0,2,2,536.776269480728,1950.0,76269.45830940342,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026878386780770556,38134.72915470171,9,5,9,9_1,9_4,9_0_0 -15839,2,57.0,0.0,2,111,320.0,1275.0,0.0,0,55,0.0,0.0,442.2957528242978,1595.0,0.0,2312.407448580497,71,0,0,0,0,0,0,0,0,2,75.0,1,,2,122119,2,2,2,0,1,,228.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,672.920507552449,320.0,15688.03778655473,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10166982140793784,15688.03778655473,3,2,3_0,3_1_0,3_4_0,3_0_1 -15840,2,40.0,0.0,2,111,341.0,825.0,0.0,54,47,0.0,300.2000263976428,471.32141160339233,1456.0,0.0,1496.2636431991452,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,104551,2,2,1,0,1,,200.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,524.121427639176,341.0,48792.79360499883,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029840472176834585,23234.66362142801,6,3,6,6_1,6_4,6_0_1 -15841,2,44.0,0.0,2,111,1440.0,1300.0,0.0,0,37,0.0,0.0,1990.33088770934,2740.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,90.0,1,,2,110686,2,1,2,0,1,,490.0,,32,2.0,0.0,6.0,5.0,2.5999999999999996,3,3,479.30326573149,1440.0,140010.8287774393,0,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019569914869624075,53850.318760553586,10,5,10,10_1,10_4,10_0_1 -15842,2,69.0,0.0,2,111,340.0,0.0,0.0,86,75,0.0,0.0,469.9392373758164,1197.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105572,2,1,1,0,2,,152.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,562.580505659578,340.0,36565.18503819543,5,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03273605750250224,24376.79002546362,7,4,7,7_1,7_4,7_0_1 -15843,2,76.0,0.0,6,111,248.0,0.0,0.0,77,78,0.0,0.0,342.7792084388308,362.0,0.0,0.0,10,1,2,2,1,1,2,2,2,0,,2,,4,130974,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,186.42839112364,248.0,37776.138971417626,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009582768643293542,25184.09264761175,7,4,7,7_0,7_4,7_0_0 -15844,2,70.0,0.0,6,111,300.0,300.0,0.0,77,78,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,10,0,0,0,0,0,0,0,0,0,,2,,4,120052,2,1,0,1,1,,0.0,620.0,41,1.0,2.0,4.0,3.0,2.0,4,2,210.290694225511,300.0,42653.21099813946,5,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014066936250735544,21326.60549906973,6,3,6,6_0,6_4,6_0_0 -15845,1,46.0,170.0,2,111,900.0,0.0,0.0,68,63,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,103524,2,1,0,1,1,,0.0,650.0,43,2.0,2.0,3.0,5.0,2.4,2,2,148.892012111473,900.0,47426.02894385835,1,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018976920902768302,19760.845393274314,5,3,5,5_0,5_4,5_0_1 -15846,1,46.0,259.0,6,111,480.0,480.0,0.0,85,52,0.0,0.0,663.4436292364467,960.0,0.0,870.5533924067755,50,2,1,2,2,1,2,2,2,2,15.0,2,,4,111648,2,1,0,1,1,,0.0,840.0,42,4.0,1.0,5.0,5.0,3.0,1,1,166.74019040078,480.0,40578.99970345048,7,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.023657557037276355,13526.333234483493,3,2,3_1,3_0_1,3_4_1,3_0_0 -15847,2,63.0,0.0,6,111,1200.0,80.0,0.0,0,77,0.0,0.0,1658.6090730911167,1280.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,0,,1,,4,124177,2,1,2,0,1,,792.0,,11,0.0,4.0,4.0,1.0,1.0,4,2,669.028550039831,1200.0,21356.139562652428,0,5,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05993592597786078,21356.139562652428,6,3,6,6_1,6_4,6_0_0 -15848,2,61.0,0.0,2,111,1200.0,0.0,0.0,77,68,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110806,2,1,2,0,1,,480.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,543.498575332034,1200.0,49792.92516544465,6,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02409980928039105,33195.28344362976,8,4,8,8_1,8_4,8_0_1 -15849,2,49.0,0.0,7,111,650.0,112.0,0.0,46,48,0.0,0.0,898.4132479243549,762.0,0.0,203.12912489491427,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,122771,2,1,1,0,1,,800.0,,43,3.0,0.0,4.0,4.0,2.5,1,1,662.667090037171,650.0,73045.00400406323,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010431924953520608,29218.001601625292,8,4,8,8_1,8_4,8_0_0 -15850,2,50.0,0.0,5,111,1500.0,2000.0,0.0,42,31,0.0,51.75862524097289,2073.261341363896,3550.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,3,110463,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,505.129481523493,1500.0,84933.52324282273,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041797394767795544,30333.401158150977,8,4,8,8_1,8_4,8_0_0 -15851,2,42.0,0.0,5,111,480.0,2892.0,0.0,63,54,0.0,0.0,663.4436292364467,3372.0,0.0,5245.084189250822,44,1,2,2,2,1,2,2,2,3,60.0,1,,3,118331,2,2,2,0,1,,720.0,800.0,43,2.0,0.0,3.0,4.0,2.5,2,2,603.36233412435,480.0,41835.40639132226,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.08060158346398756,16734.162556528907,4,2,4_0,4_1_0,4_4_0,4_0_0 -15852,2,48.0,0.0,6,111,1200.0,0.0,0.0,53,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,90.0,2,,4,123577,2,1,0,0,1,,318.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,1041.95412356383,1200.0,52317.97119257005,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02293666922945243,29065.539551427803,8,4,8,8_0,8_4,8_0_0 -15853,2,69.0,0.0,6,111,660.0,0.0,0.0,0,74,0.0,0.0,912.2349902001142,660.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,132898,2,2,0,0,1,,0.0,692.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1058.69863053804,660.0,36406.25616899709,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01812875229291069,36406.25616899709,9,5,9,9_0,9_4,9_0_0 -15854,1,30.0,120.0,9,111,230.0,445.0,0.0,0,54,0.0,0.0,317.900072342464,675.0,0.0,807.0755408771148,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,131253,2,1,1,0,1,,399.0,630.0,32,1.0,0.0,2.0,2.0,1.3,2,1,1076.88040533856,230.0,19737.0,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03419972640218878,15182.307692307691,3,2,3_1,3_1_1,3_4_1,3_0_0 -15855,2,45.0,0.0,2,111,800.0,1200.0,0.0,37,54,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,60.0,1,,2,119014,2,3,2,0,1,,620.0,,43,2.0,1.0,7.0,3.0,1.8,1,1,567.706860704782,800.0,81111.23097451945,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024657497808512938,45061.794985844135,10,5,10,10_1,10_4,10_0_1 -15856,2,41.0,0.0,2,111,500.0,840.0,0.0,37,37,0.0,0.0,691.0871137879653,1340.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,3,50.0,1,,2,130504,2,1,1,0,1,,1000.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,488.462019799905,500.0,90936.42346730245,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014735569631038075,34975.547487424024,9,5,9,9_1,9_4,9_0_1 -15857,2,35.0,0.0,2,111,1080.0,1400.0,0.0,47,37,0.0,0.0,1492.748165782005,2480.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,3,90.0,1,,2,130756,2,2,3,0,1,,456.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,519.865584110077,1080.0,56990.83351802893,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04351576993895794,27138.492151442344,7,4,7,7_1,7_4,7_0_1 -15858,1,35.0,400.0,2,111,720.0,120.0,0.0,0,52,0.0,0.0,995.16544385467,840.0,0.0,217.63834810169388,50,2,1,2,2,1,2,2,2,3,90.0,2,,2,123516,2,1,0,1,1,,0.0,710.0,32,1.0,0.0,3.0,4.0,2.1,4,4,830.325638076304,720.0,22784.092127934222,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03686782845168212,10849.567679968677,2,1,2_1,2_0_1,2_4_1,2_0_1 -15859,1,44.0,80.0,2,111,855.0,160.0,0.0,0,55,0.0,0.0,1181.7589645774206,1015.0,0.0,290.18446413559184,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,126561,1,2,0,1,1,,0.0,,32,1.0,1.0,4.0,2.0,1.5,1,1,703.301231215597,855.0,19704.73752239122,0,1,1,2,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05151045523172374,13136.491681594147,2,1,2_1,2_0_1,2_4_1,2_0_1 -15860,2,45.0,0.0,2,111,210.0,210.0,0.0,0,85,0.0,0.0,290.25658779094545,420.0,0.0,380.86710917796427,10,0,0,0,0,0,0,0,0,0,,2,,2,115938,2,2,0,1,1,,0.0,362.0,11,0.0,2.0,2.0,1.0,1.0,2,2,704.968604052429,210.0,12770.844564202318,0,7,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03288740990375007,12770.844564202318,2,1,2_0,2_0_0,2_4_0,2_0_1 -15861,2,70.0,0.0,1,111,4000.0,150.0,0.0,74,74,0.0,0.0,5528.696910303723,4150.0,0.0,272.04793512711734,12,0,0,0,0,0,0,0,0,0,,1,,1,116982,2,1,1,0,1,,400.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,369.334425776568,4000.0,117919.76329112437,5,5,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03519342207085624,78613.17552741624,10,5,10,10_1,10_4,10_1_0 -15862,2,33.0,0.0,2,111,240.0,0.0,0.0,0,67,0.0,0.0,331.72181461822333,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,116182,2,1,0,1,1,,0.0,258.0,12,1.0,0.0,1.0,1.0,1.0,2,2,684.579614829896,240.0,15038.33355622536,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015959215102038227,15038.33355622536,3,2,3_0,3_0_0,3_4_0,3_0_1 -15863,2,49.0,0.0,6,111,960.0,0.0,0.0,55,53,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,2,,4,130215,2,2,0,1,1,,0.0,603.0,43,2.0,0.0,3.0,4.0,2.1,2,2,785.054527655298,960.0,51872.877738732546,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01850678122843347,24701.3703517774,7,4,7,7_0,7_4,7_0_0 -15864,2,48.0,0.0,5,111,1128.0,0.0,0.0,0,68,0.0,0.0,1559.0925287056498,1128.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,3,122759,1,1,0,1,1,,0.0,630.0,22,1.0,1.0,4.0,2.0,1.5,1,1,719.640032699783,1128.0,36138.57552127904,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.031213183799561037,24092.383680852694,6,3,6,6_0,6_4,6_0_0 -15865,2,38.0,0.0,2,111,540.0,0.0,0.0,52,48,0.0,0.0,746.3740828910024,540.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,75.0,2,,2,124553,1,3,0,1,1,,0.0,618.0,43,2.0,0.0,4.0,5.0,2.4,4,4,714.789483777078,540.0,48488.28503014671,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011136710643906355,20203.452095894463,5,3,5,5_0,5_4,5_0_1 -15866,2,58.0,0.0,2,111,132.0,0.0,0.0,37,64,0.0,0.0,182.44699804002283,788.0,0.0,0.0,20,2,1,2,2,1,2,2,2,2,20.0,2,,2,101606,2,1,0,1,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,1,1,703.301231215597,132.0,83255.31064997954,1,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009464861686876592,55503.54043331969,10,5,10,10_0,10_4,10_0_1 -15867,2,60.0,0.0,1,111,2000.0,12000.0,0.0,52,38,0.0,0.0,2764.3484551518613,14000.0,0.0,21763.83481016939,42,0,0,0,0,0,0,0,0,2,70.0,1,,1,119542,2,1,2,0,1,,275.0,,43,2.0,0.0,5.0,4.0,2.5,3,2,370.664878375942,2000.0,72974.1012498239,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1918488855665596,29189.64049992956,8,4,8,8_1,8_4,8_1_0 -15868,0,79.0,0.0,2,111,200.0,200.0,0.0,0,77,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,41,0,0,0,0,0,0,0,0,0,,2,,2,106245,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,836.531529325656,200.0,17575.118297808003,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022759448512496706,17575.118297808003,4,2,4_0,4_0_0,4_4_0,4_0_1 -15869,2,90.0,0.0,5,111,269.0,92.0,0.0,0,75,0.0,0.0,371.80486721792533,1240.0,0.0,166.8560668779653,43,0,0,0,0,0,0,0,0,0,,2,,3,106408,1,3,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,749.248055212182,269.0,19345.47693157482,0,5,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06409767018853527,19345.47693157482,5,3,5,5_0,5_4,5_0_0 -15870,2,57.0,0.0,2,111,260.0,0.0,0.0,0,90,0.0,0.0,359.36529916974195,260.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,115304,2,1,0,1,1,,0.0,,22,1.0,4.0,5.0,2.0,1.5,3,2,208.79311050033,260.0,77827.17644672828,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003340735355829936,51884.78429781885,10,5,10,10_0,10_4,10_0_1 -15871,1,47.0,43.0,2,111,450.0,0.0,0.0,56,48,0.0,0.0,621.9784024091688,450.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,20.0,2,,2,124446,1,1,0,3,2,726.0,0.0,448.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,1,1,189.31798661371,450.0,37055.16709440185,1,2,2,3,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012144055344658917,13724.135960889575,3,2,3_1,3_0_1,3_4_1,3_0_1 -15872,2,65.0,0.0,2,111,240.0,84.0,0.0,78,77,0.0,0.0,331.72181461822333,324.0,0.0,152.3468436711857,71,0,0,0,0,0,0,0,0,0,,2,,2,106824,2,1,0,1,1,768.0,0.0,343.0,41,0.0,1.0,3.0,2.0,1.5,1,1,178.706642936926,240.0,40166.22503240638,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008066478732780952,26777.483354937587,7,4,7,7_0,7_4,7_0_1 -15873,2,27.0,0.0,2,111,0.0,0.0,0.0,46,64,0.0,0.0,0.0,192.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,18.0,2,,2,130424,2,1,0,1,1,752.0,0.0,600.0,43,2.0,0.0,4.0,3.0,1.8,1,1,246.046526428322,0.0,41830.53436243295,1,1,2,3,73.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004589948537029229,23239.18575690719,6,3,6,6_0,6_4,6_0_1 -15874,2,78.0,0.0,2,111,220.0,90.0,0.0,77,77,0.0,0.0,304.0783300667047,310.0,0.0,163.2287610762704,41,0,0,0,0,0,0,0,0,0,,2,,2,114905,2,3,0,1,1,,0.0,382.0,41,0.0,2.0,3.0,2.0,1.5,2,2,185.835544723828,220.0,31654.503733302314,5,5,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009793235193697339,21103.00248886821,5,3,5,5_0,5_4,5_0_1 -15875,2,71.0,0.0,2,111,4012.6,126.0,0.0,77,78,0.0,0.0,5546.112305571179,4831.0,0.0,228.52026550677857,20,0,0,0,0,0,0,0,0,0,,2,,2,117117,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,742.790835580036,4012.6,22806.717002069177,5,5,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.21182356055725599,15204.478001379452,3,2,3_0,3_0_0,3_4_0,3_0_1 -15876,2,51.0,0.0,8,111,900.0,4000.0,0.0,63,46,0.0,310.55175144583734,1243.9568048183376,5200.0,0.0,7254.611603389795,71,2,2,1,2,1,2,2,2,3,60.0,1,2002.0,6,124103,2,1,3,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,475.366828483835,900.0,37887.638904986925,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.13724792967543709,14572.168809610357,3,2,3_0,3_1_0,3_4_0,3_0_0 -15877,2,66.0,0.0,2,112,830.0,0.0,0.0,0,75,0.0,641.8069529880638,1147.2046088880224,1550.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116111,2,1,3,0,1,,113.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1005.74098448622,830.0,33285.97753658153,0,5,0,1,130.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04656615532160769,33285.97753658153,8,4,8,8_1,8_1,8_0_1 -15878,2,38.0,0.0,5,112,1350.0,1350.0,0.0,46,47,0.0,0.0,1865.9352072275062,2700.0,0.0,2448.431416144056,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,105791,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,980.847486057503,1350.0,72504.92293011461,1,1,1,2,116.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03723885069986836,34526.15377624505,9,5,9,9_1,9_1,9_0_0 -15879,2,64.0,0.0,5,112,0.0,0.0,0.0,0,72,2987.1697540360015,0.0,0.0,3069.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,112793,2,1,1,0,1,,150.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1192.36212585395,0.0,30606.537991399142,0,5,0,1,200.0,10,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10027269339846379,30606.537991399142,8,4,8,8_1,8_0,8_0_0 -15880,2,49.0,0.0,7,112,2483.0,0.0,0.0,52,37,0.0,0.0,3431.9386070710357,2483.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,90.0,1,,5,132762,2,1,1,0,1,,410.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,954.32270916744,2483.0,115140.41164647322,1,1,0,1,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021564974143255592,57570.20582323661,10,5,10,10_1,10_0,10_0_0 -15881,2,48.0,0.0,1,112,360.0,0.0,0.0,68,63,0.0,362.31037668681023,497.582721927335,860.0,258.04905062852873,0.0,71,2,2,2,2,1,2,2,2,2,30.0,1,,1,106418,2,2,5,0,1,,0.0,510.0,43,2.0,3.0,2.0,2.0,1.5,2,2,674.412675103432,360.0,30633.215360991875,1,1,2,3,60.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.02807410158762237,20422.143573994585,5,3,5,5_1,5_0,5_1_0 -15882,2,54.0,0.0,1,112,0.0,0.0,0.0,0,31,0.0,776.3793786145933,0.0,1088.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119407,1,2,2,0,2,,174.0,,12,1.0,1.0,9.0,1.0,1.0,1,1,718.453759706838,0.0,13530.300546417022,0,1,0,1,150.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08041210882696281,13530.300546417022,3,2,3_0,3_1_0,3_0_0,3_1_0 -15883,2,42.0,0.0,5,112,0.0,0.0,0.0,52,48,0.0,0.0,0.0,1823.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,,3,116110,2,1,2,0,1,,127.0,990.0,43,2.0,2.0,4.0,2.0,1.5,1,1,1063.48360221514,0.0,34121.87535302261,1,1,2,3,100.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05342613737197518,22747.916902015073,6,3,6,6_1,6_0,6_0_0 -15884,2,41.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,822.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,2,,2,122622,2,2,0,0,1,,0.0,835.0,32,1.0,0.0,4.0,4.0,2.1,1,1,1043.99798744706,0.0,52187.1056838288,0,1,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015751017214482407,24851.002706585143,7,4,7,7_0,7_4,7_0_1 -15885,2,51.0,0.0,1,111,590.0,970.0,0.0,45,38,0.0,0.0,815.482794269799,1560.0,0.0,1759.2433138220254,60,0,0,0,0,0,0,0,0,0,,1,,1,114439,1,1,2,0,2,,400.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,333.598380027427,590.0,77080.25184681754,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02023864689882184,36704.881831817875,9,5,9,9_1,9_4,9_1_0 -15886,2,46.0,0.0,7,111,1600.0,0.0,0.0,46,37,0.0,82.81380038555662,2211.478764121489,1680.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,75.0,1,,5,118816,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,515.080037781537,1600.0,82139.46665489534,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020453018121707946,32855.78666195813,8,4,8,8_1,8_4,8_0_0 -15887,2,24.0,0.0,7,111,840.0,0.0,0.0,67,47,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,90.0,2,,5,131258,1,3,0,0,1,,0.0,745.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1091.48891558217,840.0,34117.50712807687,1,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02462079063533705,22745.004752051245,6,3,6,6_0,6_4,6_0_0 -15888,2,47.0,0.0,2,111,720.0,1524.0,0.0,47,38,0.0,0.0,995.16544385467,2244.0,0.0,2764.007020891512,50,0,0,0,0,0,0,0,0,3,90.0,1,,2,130277,2,1,1,0,1,,540.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,506.754576318725,720.0,62947.1129104196,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035648974134738304,29974.81567162838,8,4,8,8_1,8_4,8_0_1 -15889,2,56.0,0.0,2,111,360.0,0.0,0.0,0,46,0.0,0.0,497.582721927335,683.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,100811,1,1,1,0,2,,500.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,569.142016950105,360.0,38895.524969017635,0,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017559860692047374,38895.524969017635,9,5,9,9_1,9_4,9_0_1 -15890,2,74.0,0.0,5,111,390.0,1600.0,0.0,0,74,0.0,0.0,539.0479487546129,1990.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,0,,1,,3,101509,2,1,2,0,1,,400.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,637.054054778803,390.0,48540.477049545996,0,5,0,1,136.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040996712866434686,48540.477049545996,10,5,10,10_1,10_4,10_0_0 -15891,2,40.0,0.0,5,111,650.0,0.0,0.0,34,34,0.0,362.31037668681023,898.4132479243549,1103.0,0.0,0.0,41,2,1,2,2,1,2,2,2,3,60.0,1,,3,129961,2,1,2,0,1,,490.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,537.066613955781,650.0,90069.32977360704,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.012246121990387137,39160.57816243784,9,5,9,9_1,9_4,9_0_0 -15892,2,56.0,0.0,1,111,780.0,1200.0,0.0,65,37,0.0,0.0,1078.0958975092258,1980.0,0.0,2176.3834810169387,12,0,0,0,0,0,0,0,0,2,50.0,1,,1,108611,2,1,1,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,688.5671150742,780.0,93308.76178475832,1,1,1,2,138.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021219872197719234,62205.84118983888,10,5,10,10_1,10_4,10_1_0 -15893,2,56.0,0.0,1,111,484.0,1904.0,0.0,31,47,0.0,0.0,668.9723261467504,2388.0,0.0,3453.1951232135425,50,2,2,2,2,1,2,2,2,2,30.0,1,,1,100523,2,3,3,0,1,,417.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,375.744338151015,484.0,63870.87352929577,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,1,1,0,0,0.037387933936815373,31935.436764647886,8,4,8,8_1,8_4,8_1_0 -15894,2,75.0,0.0,2,111,400.0,0.0,0.0,0,77,2688.452778632401,0.0,552.8696910303722,2235.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115084,2,1,3,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,601.098726364209,400.0,17586.85005064725,0,5,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12708358765575223,17586.85005064725,4,2,4_0,4_1_0,4_4_0,4_0_1 -15895,1,46.0,259.0,5,111,420.0,180.0,0.0,54,67,0.0,0.0,580.5131755818909,600.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,3,70.0,8,,3,122856,2,1,0,1,1,,0.0,400.0,43,2.0,0.0,3.0,6.0,2.6999999999999997,1,1,457.975506362469,420.0,29144.658780903388,4,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020586962589287244,10794.318067001255,2,1,2_1,2_0_1,2_4_1,2_0_0 -15896,2,57.0,0.0,2,111,1119.0,1865.0,0.0,47,37,0.0,0.0,1546.6529606574663,2984.0,0.0,3382.4626600804922,44,0,0,0,0,0,0,0,0,2,60.0,1,,2,108893,2,2,2,0,1,,689.0,,43,3.0,0.0,6.0,3.0,2.0,2,1,509.969654844903,1119.0,123514.57656899774,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024159091848831925,61757.28828449887,10,5,10,10_1,10_4,10_0_1 -15897,2,63.0,0.0,2,111,390.0,900.0,0.0,0,52,0.0,0.0,539.0479487546129,1290.0,0.0,1632.287610762704,30,0,0,0,0,0,0,0,0,3,60.0,2,,2,105690,1,2,0,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,279.935512391702,390.0,27408.67019391874,0,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.047065399046109756,27408.67019391874,7,4,7,7_0,7_4,7_0_1 -15898,2,59.0,0.0,2,111,273.0,1385.0,0.0,0,43,0.0,0.0,377.33356412822906,1658.0,0.0,2511.909267673717,71,2,2,2,2,1,2,2,2,2,40.0,2,,2,105269,2,3,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,295.653589001348,273.0,41589.793473622085,0,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03986555021129331,41589.793473622085,9,5,9,9_0,9_4,9_0_1 -15899,2,40.0,0.0,2,111,400.0,300.0,0.0,85,43,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,115559,2,2,0,1,1,1161.0,0.0,667.0,42,1.0,2.0,3.0,3.0,1.8,3,2,144.440604562438,400.0,36584.370783957354,6,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019133853746828897,20324.650435531865,5,3,5,5_0,5_4,5_0_1 -15900,2,41.0,0.0,2,111,1000.0,2200.0,0.0,0,38,0.0,0.0,1382.1742275759307,3230.0,51.60981012570575,3990.0363818643877,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,108034,2,2,3,0,1,,274.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,578.785198470868,1000.0,61534.323911276406,0,1,1,2,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05249102931003504,41022.882607517604,9,5,9,9_1,9_4,9_0_1 -15901,2,43.0,0.0,2,111,600.0,0.0,0.0,54,21,2688.452778632401,0.0,829.3045365455583,2500.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,103316,2,1,3,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.3,4,4,597.871654718184,600.0,22919.48653579122,1,1,1,2,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10907748723323202,9964.994145996183,2,1,2_0,2_1_0,2_4_0,2_0_1 -15902,2,89.0,0.0,1,111,250.0,0.0,0.0,0,77,1941.6603401234008,0.0,345.54355689398267,1610.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116510,2,2,4,0,1,,210.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,633.578536817446,250.0,28007.29138187731,0,5,0,1,80.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05748503052465057,28007.29138187731,7,4,7,7_1,7_4,7_1_0 -15903,2,49.0,0.0,5,111,1300.0,0.0,0.0,45,47,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,117326,1,2,0,0,1,,0.0,441.0,43,2.0,0.0,4.0,3.0,1.8,2,2,905.129008392887,1300.0,53308.50829039288,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02438635110399971,29615.837939107154,8,4,8,8_0,8_4,8_0_0 -15904,1,47.0,289.0,2,111,460.0,0.0,0.0,0,55,0.0,0.0,635.800144684928,460.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,15.0,2,,2,104170,2,2,0,1,1,530.0,0.0,334.0,32,2.0,0.0,3.0,3.0,2.0,2,2,708.345710297198,460.0,23429.649902253157,0,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01963324257592783,11714.824951126579,2,1,2_1,2_0_1,2_4_1,2_0_1 -15905,2,39.0,0.0,8,111,2000.0,0.0,0.0,85,47,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,103823,2,1,1,0,1,,790.0,,42,1.0,0.0,5.0,7.0,3.1999999999999993,3,3,615.247658961174,2000.0,47416.71293417873,6,1,1,2,127.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042179220705920506,14817.722791930857,3,2,3_0,3_1_0,3_4_0,3_0_0 -15906,2,62.0,0.0,6,111,650.0,2000.0,0.0,78,78,0.0,124.22070057833493,898.4132479243549,2770.0,0.0,3627.3058016948976,50,2,2,2,2,1,2,2,2,0,,1,,4,126074,2,1,2,0,1,,750.0,,41,0.0,2.0,5.0,4.0,2.5,2,2,583.872796988459,650.0,45668.91902807366,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06065394274598928,18267.567611229464,4,2,4_0,4_1_0,4_4_0,4_0_0 -15907,2,81.0,0.0,2,111,133.0,0.0,0.0,77,78,0.0,0.0,183.82917226759878,133.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,129907,2,1,0,1,1,492.0,0.0,446.0,41,1.0,1.0,4.0,3.0,2.0,3,3,687.280893031441,133.0,39948.82559527953,5,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003329259321598572,19974.412797639765,5,3,5,5_0,5_4,5_0_1 -15908,2,80.0,0.0,2,111,142.0,240.0,0.0,0,77,0.0,0.0,196.26874031578214,382.0,0.0,435.27669620338776,31,1,1,2,2,1,2,2,2,0,,2,,2,103506,2,2,0,1,1,70.0,0.0,291.0,11,0.0,2.0,3.0,1.0,1.0,2,2,809.489657500262,142.0,16047.175115281336,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023804812825668653,16047.175115281336,4,2,4_0,4_0_0,4_4_0,4_0_1 -15909,2,67.0,0.0,5,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,748.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,115796,2,1,2,0,1,,249.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,632.678869090973,0.0,38333.151976333276,5,5,0,1,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019513135795924424,25555.434650888852,7,4,7,7_1,7_4,7_0_0 -15910,2,53.0,0.0,6,111,930.0,1400.0,0.0,0,37,0.0,0.0,1285.4220316456153,2330.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,4,80.0,1,,4,110633,1,1,2,0,1,,750.0,,32,1.0,0.0,8.0,3.0,2.0,2,2,620.568970241153,930.0,45755.2061430583,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05092316692257966,22877.60307152915,6,3,6,6_1,6_4,6_0_0 -15911,2,83.0,0.0,5,111,346.0,2690.0,0.0,0,72,0.0,0.0,478.232282741272,3036.0,0.0,4878.726303279637,60,0,0,0,0,0,0,0,0,0,,1,,3,108030,2,1,1,0,1,,416.0,,11,0.0,3.0,5.0,1.0,1.0,3,3,749.635405416067,346.0,38235.13103605752,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07940341559538294,38235.13103605752,9,5,9,9_1,9_4,9_0_0 -15912,2,62.0,0.0,6,111,1150.0,0.0,0.0,77,75,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,126831,1,1,0,0,1,,0.0,473.0,41,0.0,1.0,3.0,2.0,1.5,3,2,890.012210070497,1150.0,39274.220113130665,5,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029281294362749604,26182.813408753776,7,4,7,7_0,7_4,7_0_0 -15913,1,49.0,202.0,6,111,600.0,0.0,0.0,0,35,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,4,104380,1,2,0,0,1,,0.0,538.0,32,1.0,0.0,4.0,2.0,1.5,2,2,918.461047594382,600.0,9532.163796907564,0,4,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0629447849180532,6354.775864605042,1,1,1_1,1_0_1,1_4_1,1_0_0 -15914,2,57.0,0.0,7,111,0.0,0.0,2000.0,52,46,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,50,1,2,2,1,2,2,2,2,2,12.0,1,,5,118945,2,1,2,0,2,,1000.0,,43,2.0,2.0,8.0,5.0,3.0,3,2,559.873814006016,0.0,48918.818557073675,1,1,1,2,132.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04088406177811912,16306.272852357892,4,2,4_0,4_1_0,4_4_0,4_0_0 -15915,0,36.0,0.0,5,111,725.0,0.0,0.0,85,63,0.0,0.0,1002.0763149925497,1125.0,688.1308016760767,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,100293,1,3,3,0,2,,760.0,,42,1.0,0.0,7.0,6.0,2.6999999999999997,2,2,571.972804944215,725.0,16241.667780596117,6,1,5,0,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0692662856547303,6015.4325113318955,1,1,1_0,1_1_0,1_4_0,1_0_0 -15917,2,45.0,0.0,5,111,550.0,1360.0,0.0,46,38,0.0,207.03450096389156,760.1958251667618,2110.0,0.0,2466.5679451525307,50,0,0,0,0,0,0,0,0,0,,1,,3,130587,1,3,2,0,1,,552.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,548.137022616965,550.0,64468.573250612666,1,1,0,1,129.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032729125116476,24795.60509638949,7,4,7,7_1,7_4,7_0_0 -15918,2,70.0,0.0,5,111,2394.0,0.0,0.0,86,74,0.0,0.0,3308.9251008167776,2394.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122186,1,1,3,0,1,,334.0,,41,0.0,7.0,7.0,2.0,1.5,2,2,575.961476938637,2394.0,60324.74759406844,6,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03968520541701189,40216.49839604562,9,5,9,9_1,9_4,9_0_0 -15919,0,85.0,0.0,9,111,220.0,1200.0,0.0,0,77,0.0,0.0,304.0783300667047,1420.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,0,,2,2006.0,6,126368,2,1,0,0,1,,105.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1416.4455358067,220.0,49206.858425433675,0,5,5,0,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02885776587732821,49206.858425433675,10,5,10,10_0,10_4,10_0_0 -15920,2,54.0,0.0,6,111,300.0,0.0,0.0,0,47,0.0,517.5862524097289,414.65226827277917,860.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,131363,2,1,2,0,1,,225.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,669.028550039831,300.0,23751.56609087475,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03620813872691992,23751.56609087475,6,3,6,6_1,6_4,6_0_0 -15921,2,64.0,0.0,6,111,2000.0,0.0,0.0,0,77,0.0,0.0,2764.3484551518613,2060.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,120782,2,1,2,0,1,,600.0,,11,0.0,2.0,4.0,1.0,1.0,4,3,669.028550039831,2000.0,18143.016925764477,0,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1135423071272475,18143.016925764477,4,2,4_0,4_1_0,4_4_0,4_0_0 -15922,2,45.0,0.0,2,111,350.0,1200.0,0.0,0,46,0.0,103.51725048194578,483.76097965157567,1650.0,0.0,2176.3834810169387,50,2,2,2,1,2,2,2,2,2,50.0,1,,2,133246,2,3,3,0,1,,360.0,,32,1.0,0.0,4.0,2.0,1.5,3,2,594.168793303045,350.0,39163.545088343926,0,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.042131017411165934,26109.03005889595,7,4,7,7_1,7_4,7_0_1 -15923,2,46.0,0.0,7,111,800.0,0.0,0.0,0,56,0.0,0.0,1105.7393820607444,830.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,111249,1,1,0,0,2,,230.0,550.0,32,1.0,2.0,2.0,2.0,1.5,2,2,1229.20077509313,800.0,14278.603189020876,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.058128935233539146,9519.068792680584,1,1,1_0,1_0_0,1_4_0,1_0_0 -15924,2,69.0,0.0,6,111,296.0,898.0,0.0,0,75,0.0,0.0,409.12357136247545,1194.0,0.0,1628.6603049610092,50,2,2,2,2,1,2,1,2,0,,2,,4,118662,1,3,0,0,1,,0.0,402.0,11,0.0,1.0,3.0,1.0,1.0,4,3,965.502377161745,296.0,24413.742032613776,0,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04890688196856352,24413.742032613776,7,4,7,7_0,7_4,7_0_0 -15925,2,40.0,0.0,8,111,957.0,0.0,0.0,0,37,0.0,0.0,1322.7407357901654,957.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,2002.0,6,128993,2,1,0,0,1,,0.0,886.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1092.23359504846,957.0,54076.31468191813,0,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017697211905603447,41597.16513993702,9,5,9,9_0,9_4,9_0_0 -15926,2,55.0,0.0,7,111,1416.0,1869.0,0.0,56,48,0.0,82.81380038555662,1957.1587062475178,3365.0,0.0,3389.717271683882,50,0,0,0,0,0,0,0,0,0,,1,,5,104763,1,2,3,0,1,,599.0,,43,2.0,3.0,6.0,2.0,1.5,3,3,566.052493140418,1416.0,43718.51187221791,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07696968299916856,29145.674581478608,8,4,8,8_1,8_4,8_0_0 -15927,2,54.0,0.0,9,111,750.0,1850.0,0.0,56,46,0.0,0.0,1036.630670681948,2720.0,206.439240502823,3355.2578665677806,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,118217,2,1,1,0,1,,1400.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,491.56106742854,750.0,40831.53948202601,4,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.066615171372545,17752.84325305479,4,2,4_0,4_1_0,4_4_0,4_0_0 -15928,2,76.0,0.0,5,111,160.0,0.0,0.0,0,74,4480.754631054002,0.0,221.1478764121489,3220.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,104836,2,2,2,0,2,,160.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,583.185304277472,160.0,64463.24881979399,0,5,0,1,140.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04995094195456174,64463.24881979399,10,5,10,10_1,10_4,10_0_0 -15929,0,24.0,0.0,2,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,404.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,133679,1,2,0,1,1,871.0,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,899.536426329372,0.0,36581.904572495114,1,1,5,0,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011043711494008871,24387.93638166341,7,4,7,7_0,7_4,7_0_1 -15930,2,29.0,0.0,2,111,266.0,0.0,0.0,0,52,0.0,0.0,367.65834453519756,266.0,0.0,0.0,50,2,1,2,1,1,2,2,2,2,20.0,2,,2,107114,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,5,4,837.917848923652,266.0,21559.430695299663,0,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012337988129621285,21559.430695299663,6,3,6,6_0,6_4,6_0_1 -15931,2,56.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,566.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,2,,2,102002,2,1,0,1,1,,431.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,262.545586487514,0.0,20854.404352047906,0,1,1,2,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027140549806421044,20854.404352047906,5,3,5,5_0,5_4,5_0_1 -15932,2,51.0,0.0,5,111,370.0,0.0,0.0,85,63,0.0,0.0,511.40446420309434,370.0,0.0,0.0,50,1,2,2,2,1,2,2,2,2,30.0,2,,3,120756,1,1,0,1,1,70.0,0.0,383.0,42,1.0,0.0,2.0,5.0,2.6,4,2,166.980296630121,370.0,31101.18007674409,7,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011896654695641839,11961.992337209265,2,1,2_0,2_0_0,2_4_0,2_0_0 -15933,1,40.0,300.0,1,111,1100.0,630.0,0.0,67,55,0.0,0.0,1520.3916503335236,1730.0,0.0,1142.6013275338928,50,1,2,2,1,1,2,2,2,2,30.0,1,,1,133219,2,2,2,0,1,,525.0,630.0,43,2.0,0.0,4.0,5.0,2.4,3,2,378.014821015609,1100.0,20119.189133065003,1,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08598756085834598,8382.995472110419,1,1,1_1,1_1_1,1_4_1,1_1_0 -15934,2,46.0,0.0,6,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1428.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,2,,4,120448,2,2,0,0,1,,0.0,431.0,32,1.0,0.0,4.0,4.0,2.5,2,2,241.646219741646,0.0,48720.84274950769,0,1,2,3,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029309837831457245,19488.337099803077,5,3,5,5_0,5_4,5_0_0 -15935,1,79.0,129.0,5,111,240.0,1200.0,0.0,86,78,0.0,0.0,331.72181461822333,1440.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,0,,2,,3,122807,2,1,0,0,1,,0.0,419.0,41,0.0,4.0,4.0,2.0,1.5,1,1,254.514398463389,240.0,15034.989595527924,6,5,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0957765877289546,10023.326397018616,2,1,2_1,2_0_1,2_4_1,2_0_0 -15936,2,38.0,0.0,6,111,800.0,1500.0,0.0,52,38,0.0,113.86897553014036,1105.7393820607444,2410.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,4,107564,2,1,2,0,1,,370.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,560.466247890056,800.0,56249.06674941677,1,1,1,2,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042845155293620735,31249.48152745376,8,4,8,8_1,8_4,8_0_0 -15937,2,57.0,0.0,2,111,400.0,150.0,0.0,74,46,0.0,0.0,552.8696910303722,967.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,3,50.0,2,,2,127612,2,1,0,2,1,,180.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,704.26613963868,400.0,60266.101633845,5,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0160455044176433,40177.40108923,9,5,9,9_0,9_4,9_0_1 -15938,2,52.0,0.0,9,111,275.0,770.0,0.0,0,37,0.0,0.0,380.0979125833809,1045.0,0.0,1396.5127336525356,31,0,0,0,0,0,0,0,0,3,50.0,2,2005.0,6,130904,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1142.02517458849,275.0,50407.54604582555,0,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020731023070434524,50407.54604582555,10,5,10,10_0,10_4,10_0_0 -15939,2,55.0,0.0,1,111,800.0,3000.0,0.0,43,38,0.0,103.51725048194578,1105.7393820607444,3900.0,0.0,5440.958702542347,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,100027,2,2,2,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,351.142074172786,800.0,117346.37265948742,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03323494294380037,51020.1620258641,10,5,10,10_1,10_4,10_1_0 -15940,2,52.0,0.0,6,111,800.0,0.0,0.0,72,21,0.0,517.5862524097289,1105.7393820607444,1300.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,30.0,1,,4,108904,2,1,3,0,1,,180.0,,42,1.0,2.0,5.0,2.0,1.5,3,2,520.44623520504,800.0,165285.53171723877,6,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.007865177226909171,110190.35447815918,10,5,10,10_1,10_4,10_0_0 -15941,2,61.0,0.0,2,111,330.0,200.0,0.0,85,65,0.0,0.0,456.1174951000571,576.0,0.0,362.73058016948977,50,2,2,1,2,1,2,2,2,3,35.0,2,,2,122986,2,3,0,1,1,620.0,0.0,319.0,42,3.0,1.0,4.0,5.0,3.0,1,1,578.060304319694,330.0,58237.82371183852,6,1,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009890479473444186,19412.607903946173,5,3,5,5_0,5_4,5_0_1 -15942,2,40.0,0.0,1,111,480.0,1400.0,0.0,43,42,0.0,0.0,663.4436292364467,1880.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,120563,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.8,2,1,298.071626713339,480.0,84549.80775620844,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0222354142474316,30196.359912931588,8,4,8,8_1,8_4,8_1_0 -15943,2,55.0,0.0,2,111,2800.0,0.0,0.0,0,37,0.0,0.0,3870.0878372126053,2800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,90.0,1,,2,105424,2,1,2,0,1,,700.0,,32,1.0,0.0,4.0,3.0,2.0,1,1,539.319703046206,2800.0,54281.768703523594,0,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05158269649047459,27140.884351761797,7,4,7,7_1,7_4,7_0_1 -15944,2,87.0,0.0,1,111,750.0,2200.0,0.0,77,75,0.0,0.0,1036.630670681948,2950.0,0.0,3990.0363818643877,70,0,0,0,0,0,0,0,0,0,,1,,1,101665,2,1,2,0,1,,340.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,505.606705720224,750.0,35918.426715584195,5,5,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0821305460664863,23945.617810389464,6,3,6,6_1,6_4,6_1_0 -15945,2,53.0,0.0,5,111,417.0,1476.0,0.0,38,37,0.0,0.0,576.366652899163,1893.0,0.0,2676.9516816508344,50,0,0,0,0,0,0,0,0,3,60.0,1,,3,101974,2,1,3,0,2,,351.0,,43,2.0,2.0,5.0,2.0,1.5,4,2,598.222107913466,417.0,89717.55754365773,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021099548982693176,59811.70502910516,10,5,10,10_1,10_4,10_0_0 -15946,2,78.0,0.0,8,111,250.0,1000.0,0.0,0,78,0.0,207.03450096389156,345.54355689398267,1450.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,129407,2,1,3,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,519.546257001363,250.0,22924.530401026666,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06325102301485147,22924.530401026666,6,3,6,6_1,6_4,6_0_0 -15947,1,86.0,242.0,2,111,270.0,554.0,0.0,0,77,0.0,0.0,373.1870414455012,824.0,0.0,1004.7637070694867,50,0,0,0,0,0,0,0,0,0,,2,,2,133310,2,1,0,0,1,,0.0,248.0,11,0.0,2.0,2.0,1.0,1.0,4,4,1141.16162776678,270.0,10148.426432398715,0,6,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08119485375283315,10148.426432398715,2,1,2_1,2_0_1,2_4_1,2_0_1 -15948,2,47.0,0.0,1,111,2400.0,0.0,0.0,52,23,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,60.0,1,,1,113456,1,2,3,0,2,,800.0,,43,2.0,3.0,3.0,4.0,2.3,1,1,362.174865158059,2400.0,72493.1275203314,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03310658654266085,31518.751095796262,8,4,8,8_1,8_4,8_1_0 -15949,2,40.0,0.0,5,111,1100.0,0.0,0.0,48,37,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,80.0,1,,3,100360,2,2,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,5,3,506.902775223,1100.0,78779.01838317086,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013963108738544363,37513.818277700404,9,5,9,9_1,9_4,9_0_0 -15950,2,60.0,0.0,5,111,0.0,1000.0,0.0,0,77,0.0,0.0,0.0,1232.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,3,107770,1,1,2,0,2,,500.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,568.606049377491,0.0,32364.122670450502,0,5,0,1,70.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038066843725223426,21576.081780300334,6,3,6,6_1,6_4,6_0_0 -15951,2,79.0,0.0,1,111,0.0,1160.0,0.0,0,75,0.0,0.0,0.0,1584.0,0.0,2103.8373649830405,31,0,0,0,0,0,0,0,0,0,,1,,1,125773,2,1,4,0,1,,134.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,429.602139459937,0.0,29719.322543601615,0,5,0,1,70.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053298657722634576,29719.322543601615,8,4,8,8_1,8_4,8_1_0 -15952,2,55.0,0.0,2,111,700.0,1200.0,0.0,42,37,0.0,0.0,967.5219593031513,1900.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,101820,2,2,3,0,1,,500.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,598.222107913466,700.0,84555.46479265542,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022470457759993723,56370.30986177028,10,5,10,10_1,10_4,10_0_1 -15953,2,60.0,0.0,2,111,550.0,1200.0,0.0,85,21,0.0,0.0,760.1958251667618,1750.0,0.0,2176.3834810169387,44,0,0,0,0,0,0,0,0,0,,1,,2,126385,1,1,4,0,2,,500.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,533.995976045244,550.0,14014.132725279105,6,1,1,2,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12487394220573482,9342.75515018607,1,1,1_0,1_1_0,1_4_0,1_0_1 -15954,2,64.0,0.0,1,111,293.0,1523.0,0.0,75,75,0.0,0.0,404.97704867974767,1816.0,0.0,2762.1933679906647,31,0,0,0,0,0,0,0,0,0,,1,,1,131215,2,1,3,0,1,,219.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,390.939199099847,293.0,50449.8082419185,5,5,0,1,109.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035996172498651724,33633.20549461233,9,5,9,9_1,9_4,9_1_0 -15955,2,83.0,0.0,2,111,800.0,1450.0,0.0,78,78,0.0,0.0,1105.7393820607444,2250.0,0.0,2629.7967062288008,70,2,2,2,2,2,2,2,1,0,,1,,2,125333,2,3,3,0,1,,360.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,520.170312647767,800.0,30544.72864374097,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0736624648476311,20363.152429160647,5,3,5,5_1,5_4,5_0_1 -15956,2,61.0,0.0,7,111,1066.0,3251.0,0.0,37,63,0.0,0.0,1473.397726595942,4317.0,0.0,5896.185580655057,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,112336,2,1,2,0,1,,692.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,595.286749328352,1066.0,145097.84711397326,1,1,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029752336687732032,96731.89807598217,10,5,10,10_1,10_4,10_0_0 -15957,2,45.0,0.0,2,111,621.0,1150.0,0.0,0,55,0.0,0.0,858.3301953246529,1771.0,0.0,2085.7008359745664,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,110768,2,1,2,0,2,,423.0,,32,2.0,0.0,3.0,4.0,2.3,1,1,481.553770798206,621.0,47520.03906784178,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03726848787880076,20660.88655123556,5,3,5,5_1,5_4,5_0_1 -15958,2,63.0,0.0,1,111,4591.0,0.0,0.0,74,31,0.0,0.0,6345.561878801097,4611.0,34.40654008380383,0.0,70,0,0,0,0,0,0,0,0,1,7.0,1,,1,104055,2,2,2,0,1,,395.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,371.004805241688,4591.0,139843.0398571078,5,1,0,1,190.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03297268140560688,93228.69323807186,10,5,10,10_1,10_4,10_1_0 -15959,2,30.0,0.0,1,111,70.0,204.0,0.0,56,55,0.0,0.0,96.75219593031514,274.0,0.0,369.9851917728796,43,0,0,0,0,0,0,0,0,2,20.0,2,,1,109564,2,1,0,0,1,,0.0,843.0,43,2.0,0.0,3.0,3.0,1.8,2,2,482.842134707468,70.0,43932.98027420629,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006236772426769998,24407.211263447938,7,4,7,7_0,7_4,7_1_0 -15960,2,57.0,0.0,6,111,980.0,0.0,0.0,74,34,0.0,517.5862524097289,1354.530743024412,1530.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,107888,2,1,2,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,4,3,548.883144460122,980.0,228971.60603718826,5,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0066820512223314974,152647.7373581255,10,5,10,10_1,10_4,10_0_0 -15961,2,92.0,0.0,6,111,48.0,0.0,0.0,0,77,0.0,0.0,66.34436292364467,48.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,120075,1,2,0,0,1,,448.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,913.329292721512,48.0,70191.794189557,0,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0006838406191808295,70191.794189557,10,5,10,10_0,10_4,10_0_0 -15962,2,44.0,0.0,5,111,490.0,0.0,0.0,37,37,2987.1697540360015,0.0,677.265371512206,2490.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,110375,2,2,4,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,539.014469402483,490.0,125243.54909934834,1,1,1,2,130.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019881263489465867,59639.78528540397,10,5,10,10_1,10_4,10_0_0 -15963,1,59.0,350.0,1,111,210.0,0.0,0.0,85,47,0.0,0.0,290.25658779094545,570.0,619.317721508469,0.0,31,2,2,2,1,2,2,2,2,0,,1,,1,130592,1,3,3,0,2,,300.0,446.0,42,1.0,6.0,2.0,2.0,1.5,4,4,517.388755974126,210.0,7211.52818829906,6,4,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,1,0.07904011259705586,4807.68545886604,1,1,1_1,1_1_1,1_4_1,1_1_0 -15964,2,47.0,0.0,1,111,900.0,1500.0,0.0,34,34,0.0,0.0,1243.9568048183376,2400.0,0.0,2720.4793512711735,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,104238,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,5.0,3.0,2,2,306.08746976089,900.0,75117.03332901208,1,1,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031950143577795694,25039.011109670693,7,4,7,7_1,7_4,7_1_0 -15965,2,83.0,0.0,2,111,372.0,2400.0,0.0,0,77,0.0,0.0,514.1688126582462,2772.0,0.0,4352.7669620338775,50,0,0,0,0,0,0,0,0,0,,1,,2,115476,2,1,3,0,1,,180.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,632.903119814866,372.0,29568.909885857443,0,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09374711515238592,29568.909885857443,8,4,8,8_1,8_4,8_0_1 -15966,2,64.0,0.0,2,111,800.0,350.0,0.0,52,53,0.0,956.499394453179,1105.7393820607444,2074.0,0.0,634.7785152966071,60,2,1,2,1,1,2,2,2,3,60.0,2,,2,103819,1,3,0,1,1,1092.0,600.0,348.0,43,2.0,0.0,3.0,3.0,2.0,1,1,173.692589378635,800.0,23109.7974810011,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.08974548572764714,11554.89874050055,2,1,2_0,2_0_0,2_4_0,2_0_1 -15967,1,41.0,250.0,2,111,350.0,0.0,0.0,85,68,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129613,2,1,2,1,1,,600.0,394.0,42,1.0,0.0,4.0,8.0,3.499999999999999,1,1,110.288968648461,350.0,39189.80546131266,7,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.008930894039408095,11197.087274660762,2,1,2_1,2_1_1,2_4_1,2_0_1 -15968,1,29.0,290.0,2,111,0.0,0.0,0.0,85,54,0.0,0.0,0.0,344.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,2,,2,118019,2,1,0,1,1,250.0,0.0,429.0,42,1.0,0.0,4.0,4.0,2.1,2,2,192.380262716655,0.0,26796.10109697886,7,1,2,3,78.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012837688541143191,12760.048141418503,2,1,2_1,2_0_1,2_4_1,2_0_1 -15969,2,76.0,0.0,2,111,300.0,180.0,0.0,0,77,0.0,0.0,414.65226827277917,617.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,2,,2,117633,2,2,0,1,1,297.0,0.0,277.0,11,0.0,3.0,4.0,1.0,1.0,2,1,198.493973553469,300.0,18156.922716717712,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03398152922862345,18156.922716717712,4,2,4_0,4_0_0,4_4_0,4_0_1 -15970,2,47.0,0.0,2,111,504.0,108.0,0.0,67,56,0.0,0.0,696.615810698269,612.0,0.0,195.8745132915245,50,0,0,0,0,0,0,0,0,0,,2,,2,111199,2,1,0,1,1,60.0,0.0,266.0,43,2.0,1.0,3.0,3.0,2.0,3,3,183.445240634118,504.0,27282.91724013062,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022431618826296375,13641.45862006531,3,2,3_0,3_0_0,3_4_0,3_0_1 -15971,2,57.0,0.0,2,111,300.0,100.0,0.0,75,56,0.0,0.0,414.65226827277917,1130.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,121157,2,1,0,1,1,1900.0,0.0,293.0,42,1.0,1.0,3.0,2.0,1.5,5,5,176.250983142544,300.0,19998.825867912048,5,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05650331711788519,13332.550578608032,3,2,3_0,3_0_0,3_4_0,3_0_1 -15972,2,81.0,0.0,2,111,476.0,1407.0,0.0,0,74,0.0,0.0,657.9149323261429,1883.0,0.0,2551.8096314923605,43,2,2,2,2,1,2,2,2,0,,1,,2,125713,2,2,2,0,1,,230.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,569.588345305242,476.0,45222.05497112908,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04163897463753373,45222.05497112908,10,5,10,10_1,10_4,10_0_1 -15973,2,78.0,0.0,2,111,373.0,1207.0,0.0,86,75,0.0,51.75862524097289,515.5509868858221,1630.0,0.0,2189.079051322871,50,0,0,0,0,0,0,0,0,0,,1,,2,121331,2,1,1,0,1,,455.0,,41,0.0,1.0,3.0,2.0,1.5,4,4,534.158908711591,373.0,51570.97734434949,5,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03160692474598981,34380.651562899664,9,5,9,9_1,9_4,9_0_1 -15974,1,42.0,308.0,2,111,300.0,60.0,0.0,0,85,0.0,621.1035028916747,414.65226827277917,960.0,0.0,108.81917405084694,43,1,2,2,2,1,2,2,2,0,,2,,2,127771,1,3,0,1,1,350.0,0.0,301.0,11,0.0,0.0,2.0,1.0,1.0,1,1,745.861701095341,300.0,20640.99535238597,0,7,2,3,41.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04650938501805486,20640.99535238597,5,3,5,5_0,5_4,5_0_1 -15975,2,30.0,0.0,7,111,1000.0,0.0,0.0,42,42,0.0,517.5862524097289,1382.1742275759307,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,127706,2,1,1,0,1,,1000.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,533.467717504462,1000.0,46773.108930954935,1,1,1,2,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0320697091616094,22272.909014740446,6,3,6,6_1,6_4,6_0_0 -15976,1,39.0,35.0,2,111,520.0,670.0,0.0,56,68,0.0,0.0,718.7305983394839,1190.0,0.0,1215.1474435677908,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,115354,2,1,0,0,1,,0.0,659.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1149.75940656994,520.0,28951.817311943953,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04110277386660182,13786.579672354263,3,2,3_1,3_0_1,3_4_1,3_0_1 -15977,2,48.0,0.0,7,111,487.0,2045.0,0.0,52,43,0.0,103.51725048194578,673.1188488294782,2632.0,0.0,3708.920182233033,71,0,0,0,0,0,0,0,0,0,,1,,5,105506,2,1,3,0,1,,867.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,540.022203390773,487.0,61258.02976131814,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04296579583534038,26633.9259831818,7,4,7,7_1,7_4,7_0_0 -15978,2,41.0,0.0,2,111,500.0,2000.0,0.0,43,21,0.0,0.0,691.0871137879653,2500.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,105977,2,1,2,0,1,,640.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,1,1,609.618365904983,500.0,28375.72120644455,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08810348754879269,10509.526372757242,2,1,2_0,2_1_0,2_4_0,2_0_1 -15979,2,65.0,0.0,1,111,550.0,0.0,0.0,77,74,0.0,1552.7587572291866,760.1958251667618,2170.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,131551,2,3,1,0,1,,300.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,501.064266863144,550.0,63253.26715456655,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03430652830465434,42168.84476971103,9,5,9,9_1,9_4,9_1_0 -15980,2,77.0,0.0,2,111,710.0,0.0,0.0,78,90,2688.452778632401,0.0,981.3437015789107,2510.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102481,2,1,1,0,1,,500.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,534.158908711591,710.0,37762.843284260336,5,5,0,1,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06646745270492319,25175.22885617356,7,4,7,7_1,7_4,7_0_1 -15981,1,36.0,105.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,644.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,130515,1,1,0,1,1,250.0,0.0,366.0,42,1.0,0.0,3.0,3.0,1.8,2,2,173.692589378635,0.0,19467.126394324292,6,1,2,3,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033081410525374735,10815.070219069052,2,1,2_1,2_0_1,2_4_1,2_0_1 -15982,2,61.0,0.0,2,112,460.0,1730.0,0.0,0,75,0.0,0.0,635.800144684928,2190.0,0.0,3137.6195184660864,43,0,0,0,0,0,0,0,0,0,,1,,2,123040,2,1,2,0,1,,220.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1163.45505729756,460.0,32579.206030290297,0,5,0,1,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06722079101509909,32579.206030290297,8,4,8,8_1,8_2,8_0_1 -15983,2,50.0,0.0,7,112,2000.0,0.0,0.0,31,38,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,5,109100,2,1,2,0,1,,650.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,920.916286471265,2000.0,76535.24607878752,1,1,1,2,200.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.026131751088134533,29436.63310722597,8,4,8,8_1,8_2,8_0_0 -15984,2,38.0,0.0,6,111,500.0,40.0,0.0,37,22,1568.2641208689008,0.0,691.0871137879653,1590.0,0.0,72.54611603389796,50,0,0,0,0,0,0,0,0,0,,1,,4,131522,2,1,1,1,1,800.0,0.0,880.0,43,2.0,1.0,3.0,3.0,1.8,3,2,563.447269494293,500.0,48971.265795955034,1,1,2,3,60.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03246801923856606,27206.258775530572,7,4,7,7_1,7_4,7_0_0 -15985,2,41.0,0.0,1,111,660.0,1200.0,0.0,54,48,0.0,0.0,912.2349902001142,1860.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,1,115602,2,1,1,0,1,,650.0,,43,2.0,0.0,3.0,4.0,2.3,3,3,381.561899186571,660.0,60486.0,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030750917567701617,26298.26086956522,7,4,7,7_1,7_4,7_1_0 -15986,1,37.0,124.0,9,111,1200.0,0.0,0.0,85,48,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100038,1,1,1,0,1,,480.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,519.586536677499,1200.0,27138.067366988304,6,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.044218329322143334,11307.52806957846,2,1,2_1,2_1_1,2_4_1,2_0_0 -15987,2,64.0,0.0,6,111,2097.0,0.0,0.0,0,77,0.0,0.0,2898.4193552267266,2132.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,109905,2,1,2,0,1,,654.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,608.817930600401,2097.0,35026.07274662085,0,5,0,1,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06086894227117385,23350.715164413898,6,3,6,6_1,6_4,6_0_0 -15988,2,53.0,0.0,9,111,850.0,0.0,0.0,22,56,0.0,1345.724256265295,1174.848093439541,2270.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,120655,2,1,1,0,1,,800.0,,43,3.0,3.0,5.0,4.0,2.5,2,2,666.128676495993,850.0,20671.376142223933,1,1,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10981368557090083,8268.550456889574,1,1,1_0,1_1_0,1_4_0,1_0_0 -15989,2,61.0,0.0,1,111,1200.0,1500.0,0.0,77,72,0.0,362.31037668681023,1658.6090730911167,3050.0,0.0,2720.4793512711735,33,0,0,0,0,0,0,0,0,0,,1,,1,131099,2,2,4,0,1,,570.0,,41,0.0,1.0,7.0,3.0,2.0,4,4,405.542912913187,1200.0,91693.36553505824,5,5,0,1,138.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03326303906724698,45846.68276752912,10,5,10,10_1,10_4,10_1_0 -15991,2,57.0,0.0,1,111,1490.0,2070.0,0.0,0,42,0.0,258.79312620486445,2059.4395990881367,3810.0,0.0,3754.261504754219,43,1,2,2,2,1,2,2,1,1,5.0,1,,1,101028,1,2,4,0,2,,2200.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,463.449963631484,1490.0,36209.471830337425,0,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.10522108739536662,36209.471830337425,9,5,9,9_1,9_4,9_1_0 -15992,1,54.0,308.0,6,111,1090.0,0.0,0.0,77,62,0.0,310.55175144583734,1506.5699080577642,1390.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,120401,1,3,0,0,1,,0.0,590.0,42,1.0,1.0,2.0,2.0,1.5,1,1,940.062164828042,1090.0,38225.50194158219,5,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03636315887033364,25483.66796105479,7,4,7,7_0,7_4,7_0_0 -15993,2,40.0,0.0,8,111,739.0,1145.0,0.0,90,46,0.0,0.0,1021.4267541786127,1884.0,0.0,2076.632571470329,70,0,0,0,0,0,0,0,0,2,90.0,1,1999.0,6,109740,2,1,2,0,1,,768.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,646.601699677634,739.0,41766.60832715054,1,1,1,2,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04510780442699482,19888.861108166922,5,3,5,5_1,5_4,5_0_0 -15994,2,63.0,0.0,6,111,796.0,2400.0,0.0,0,86,0.0,0.0,1100.2106851504407,3196.0,0.0,4352.7669620338775,50,0,0,0,0,0,0,0,0,0,,1,,4,122227,2,1,2,0,1,,328.0,,21,0.0,2.0,6.0,2.0,1.5,3,3,629.70960076097,796.0,79811.80107794386,0,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04004420344904634,53207.86738529591,10,5,10,10_1,10_4,10_0_0 -15995,2,46.0,0.0,6,111,0.0,0.0,2000.0,85,38,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,12,0,0,0,0,0,0,0,0,0,,1,,4,121305,1,1,1,0,1,,1400.0,1740.0,42,2.0,0.0,6.0,6.0,2.8999999999999995,2,2,672.661928281774,0.0,81791.89352553814,6,1,2,3,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024452301001877817,28204.101215702813,8,4,8,8_1,8_4,8_0_0 -15996,2,56.0,0.0,2,111,590.0,100.0,0.0,55,56,0.0,0.0,815.482794269799,690.0,0.0,181.36529008474488,41,0,0,0,0,0,0,0,0,2,5.0,2,,2,128340,2,1,0,1,1,1056.0,0.0,404.0,43,3.0,2.0,4.0,3.0,2.0,1,1,690.921884619039,590.0,50761.61443789555,1,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013592948286626749,25380.807218947775,7,4,7,7_0,7_4,7_0_1 -15997,2,72.0,0.0,7,111,950.0,0.0,0.0,0,77,0.0,238.0896761084753,1313.065516197134,1180.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,128407,2,2,2,0,1,,270.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,701.516826221886,950.0,32200.231225145966,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036645699583626234,32200.231225145966,8,4,8,8_1,8_4,8_0_0 -15998,1,46.0,220.0,5,111,660.0,800.0,0.0,0,54,0.0,0.0,912.2349902001142,1460.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,126372,2,1,2,0,2,,300.0,370.0,32,1.0,1.0,3.0,2.0,1.5,3,2,622.663312401858,660.0,18065.183958414724,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08081844078426531,12043.455972276482,2,1,2_1,2_1_1,2_4_1,2_0_0 -15999,1,26.0,366.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1994.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,,3,121405,2,3,3,0,1,,422.0,288.0,32,1.0,0.0,4.0,2.0,1.3,4,3,569.470130634263,0.0,17825.57331356989,0,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11186175978317893,13711.979471976838,3,2,3_1,3_1_1,3_4_1,3_0_0 -16000,2,55.0,0.0,8,111,1140.0,0.0,0.0,52,43,0.0,776.3793786145933,1575.678619436561,1890.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,126903,2,2,2,0,1,,800.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,474.47260899275,1140.0,60091.6461060172,1,1,1,2,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03145195917358548,21461.30218072043,6,3,6,6_1,6_4,6_0_0 -16001,2,50.0,0.0,8,111,2040.0,0.0,0.0,54,38,0.0,496.8828023133397,2819.635424254898,2520.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,2002.0,6,125042,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,606.105918403038,2040.0,84902.30735712468,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02968117214294449,33960.92294284987,9,5,9,9_1,9_4,9_0_0 -16002,2,48.0,0.0,2,111,400.0,200.0,0.0,0,62,0.0,0.0,552.8696910303722,600.0,0.0,362.73058016948977,50,2,2,1,2,1,2,2,2,2,20.0,1,,2,121691,2,2,5,1,1,550.0,0.0,650.0,12,1.0,1.0,2.0,1.0,1.0,2,2,942.820272575253,400.0,21746.276846852605,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.02759092989689587,21746.276846852605,6,3,6,6_1,6_4,6_0_1 -16003,2,30.0,0.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,644.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107579,2,1,0,1,1,,210.0,850.0,42,1.0,0.0,3.0,2.0,1.5,2,2,837.168993059364,0.0,18706.92853090482,6,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03442574760127396,12471.285687269881,2,1,2_0,2_0_0,2_4_0,2_0_1 -16004,2,56.0,0.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,621.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104370,2,1,1,1,1,600.0,0.0,800.0,42,1.0,0.0,3.0,4.0,2.1,3,3,794.8419566008,0.0,20601.009837163932,6,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03014415336474063,9810.004684363777,2,1,2_0,2_1_0,2_4_0,2_0_1 -16005,1,30.0,150.0,6,111,360.0,0.0,0.0,0,46,0.0,0.0,497.582721927335,360.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,25.0,2,,4,103140,2,1,0,1,1,324.0,0.0,423.0,12,1.0,0.0,1.0,1.0,1.0,1,1,941.333678228915,360.0,18656.384601741942,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.019296343192152402,18656.384601741942,4,2,4_1,4_0_1,4_4_1,4_0_0 -16006,2,48.0,0.0,8,111,240.0,0.0,0.0,0,43,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,2,1999.0,6,117194,2,1,0,1,1,,0.0,505.0,12,1.0,0.0,1.0,1.0,1.0,5,5,1008.43125049292,240.0,36912.454977421265,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006501870443101225,36912.454977421265,9,5,9,9_0,9_4,9_0_0 -16007,2,66.0,0.0,5,111,1965.0,0.0,0.0,78,74,0.0,0.0,2715.9723571867034,1965.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132201,2,2,3,0,1,,351.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,575.961476938637,1965.0,49478.670734727086,5,5,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03971408226658049,32985.780489818055,8,4,8,8_1,8_4,8_0_0 -16008,2,63.0,0.0,2,111,1300.0,0.0,0.0,74,74,0.0,248.44140115666985,1796.8264958487098,1540.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,131006,2,1,2,0,1,,374.0,,41,0.0,1.0,6.0,2.0,1.5,3,2,513.625260708941,1300.0,57473.03236479434,5,5,0,1,175.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026795175696059877,38315.354909862894,9,5,9,9_1,9_4,9_0_1 -16009,2,54.0,0.0,8,111,600.0,1200.0,0.0,85,37,0.0,31.055175144583732,829.3045365455583,1830.0,0.0,2176.3834810169387,44,0,0,0,0,0,0,0,0,0,,1,2003.0,6,133477,2,1,1,0,1,,620.0,,42,1.0,0.0,8.0,4.0,2.5,2,2,626.904525495896,600.0,83489.9078526988,6,1,1,2,156.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021918816861418364,33395.96314107952,8,4,8,8_1,8_4,8_0_0 -16010,2,50.0,0.0,1,111,150.0,0.0,0.0,0,43,0.0,0.0,207.32613413638958,590.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,110694,1,1,0,1,2,,300.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1029.58901729242,150.0,33027.11724761241,0,1,1,2,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01786410831973693,33027.11724761241,8,4,8,8_0,8_4,8_1_0 -16011,2,72.0,0.0,2,111,311.0,274.0,0.0,75,75,0.0,0.0,429.8561847761144,585.0,0.0,496.940894832201,50,0,0,0,0,0,0,0,0,0,,2,,2,120496,2,2,0,0,1,,0.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1184.79122326854,311.0,53675.82165190668,5,5,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010898761900540363,35783.881101271116,9,5,9,9_0,9_4,9_0_1 -16012,1,25.0,299.0,2,111,218.0,600.0,0.0,0,55,0.0,0.0,301.3139816115529,818.0,0.0,1088.1917405084694,33,0,0,0,0,0,0,0,0,3,70.0,2,,2,102405,2,1,0,0,1,,0.0,455.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1320.46266532226,218.0,13645.635494016835,0,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05994590727259762,13645.635494016835,3,2,3_1,3_0_1,3_4_1,3_0_1 -16013,1,26.0,395.0,9,111,523.0,930.0,0.0,85,55,0.0,0.0,722.8771210222117,1453.0,0.0,1686.6971977881274,50,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,122998,2,1,1,0,1,,672.0,650.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,1,1,809.311524381158,523.0,28786.78611144998,6,1,2,3,104.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.050474547397358384,10661.772633870363,2,1,2_1,2_1_1,2_4_1,2_0_0 -16014,1,44.0,100.0,2,111,766.0,0.0,0.0,21,54,0.0,0.0,1058.745458323163,766.0,0.0,0.0,50,2,2,2,2,1,2,2,1,2,75.0,1,,2,105779,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,529.763230388329,766.0,39784.53490107111,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,1,0,0,1,0.019253712577129493,26523.023267380737,7,4,7,7_1,7_4,7_0_1 -16015,2,68.0,0.0,2,111,391.0,1571.0,0.0,0,77,0.0,0.0,540.4301229821889,1962.0,0.0,2849.2487072313425,20,0,0,0,0,0,0,0,0,0,,1,,2,104356,2,1,1,0,1,,228.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,712.52335998385,391.0,35506.22007264582,0,5,0,1,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055257923709866694,35506.22007264582,9,5,9,9_1,9_4,9_0_1 -16016,2,48.0,0.0,2,111,2611.0,0.0,0.0,46,38,0.0,310.55175144583734,3608.856908200755,2911.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,2,115353,2,1,1,0,1,,651.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,462.014747547027,2611.0,99050.33935965055,1,1,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029389096683759913,35375.1211998752,9,5,9,9_1,9_4,9_0_1 -16017,2,46.0,0.0,2,111,757.0,0.0,0.0,0,67,0.0,0.0,1046.3058902749794,757.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,133313,2,2,0,0,1,,0.0,436.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1081.58450211767,757.0,24587.2991048041,0,4,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030788253592770185,24587.2991048041,7,4,7,7_0,7_4,7_0_1 -16018,2,65.0,0.0,5,111,100.0,100.0,0.0,52,75,0.0,0.0,138.21742275759306,200.0,0.0,181.36529008474488,10,0,0,0,0,0,0,0,0,0,,1,,3,107162,2,1,2,0,1,,400.0,,42,1.0,3.0,4.0,2.0,1.5,4,2,649.494909664729,100.0,66263.93309679985,1,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003018233157211412,44175.95539786657,10,5,10,10_1,10_4,10_0_0 -16019,2,37.0,0.0,5,111,405.0,1368.0,0.0,38,33,0.0,20.703450096389155,559.7805621682519,1793.0,0.0,2481.0771683593102,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,130460,2,1,2,0,1,,510.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,631.97800228737,405.0,70981.4813059933,1,1,1,2,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025260109637196437,33800.70538380633,9,5,9,9_1,9_4,9_0_0 -16020,2,74.0,0.0,2,111,303.0,0.0,0.0,75,75,2240.377315527001,0.0,418.79879095550695,1903.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,103624,2,2,2,0,1,,421.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,614.965273876548,303.0,65664.8404797292,5,5,0,1,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02898050137786382,43776.560319819466,10,5,10,10_1,10_4,10_0_1 -16021,2,41.0,0.0,6,111,500.0,0.0,0.0,34,38,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,80.0,1,,4,121136,2,1,2,0,1,,480.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,564.022621493867,500.0,80445.75935202418,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00621536801973663,38307.504453344845,9,5,9,9_1,9_4,9_0_0 -16022,2,26.0,0.0,1,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,1031.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,131828,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,980.155128240875,0.0,65711.31611970061,1,1,1,2,82.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015689839450512857,43807.544079800406,10,5,10,10_0,10_4,10_1_0 -16023,2,66.0,0.0,2,111,310.0,0.0,0.0,0,75,0.0,0.0,428.47401054853844,488.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132013,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,812.571172124776,310.0,35112.38112647776,0,5,0,1,143.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013898231459785733,35112.38112647776,9,5,9,9_0,9_4,9_0_1 -16024,2,35.0,0.0,1,111,0.0,0.0,0.0,65,47,0.0,0.0,0.0,1039.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,103827,2,2,2,0,1,,397.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,362.388946569344,0.0,31161.919823918746,1,1,1,2,70.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033341976549291476,14839.009439961306,3,2,3_0,3_1_0,3_4_0,3_1_0 -16025,2,55.0,0.0,2,111,650.0,150.0,0.0,78,67,0.0,0.0,898.4132479243549,866.0,113.54158227655265,272.04793512711734,41,2,1,2,1,2,2,2,2,1,10.0,2,,2,105301,2,1,0,1,1,,0.0,,42,2.0,3.0,4.0,5.0,3.0,2,2,597.057907693503,650.0,69193.22683034082,5,1,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012515675878556716,23064.40894344694,6,3,6,6_0,6_4,6_0_1 -16026,2,53.0,0.0,2,111,430.0,130.0,0.0,56,53,0.0,0.0,594.3349178576501,560.0,0.0,235.77487711016835,33,2,1,2,1,2,2,2,2,2,20.0,2,,2,103174,2,2,0,1,1,,0.0,,43,2.0,1.0,3.0,3.0,1.8,1,1,694.453522789119,430.0,58631.755901686,1,1,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009551138139867592,32573.19772315889,8,4,8,8_0,8_4,8_0_1 -16028,2,29.0,0.0,8,111,700.0,0.0,0.0,0,37,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,2002.0,6,118241,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1112.135473755,700.0,38552.87994211598,0,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018156879617060858,38552.87994211598,9,5,9,9_0,9_4,9_0_0 -16029,2,79.0,0.0,1,111,300.0,966.0,0.0,0,78,0.0,0.0,414.65226827277917,1266.0,0.0,1751.9887022186356,33,2,2,2,2,1,2,2,2,0,,2,,1,127785,2,2,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,752.160965236551,300.0,19298.859209883423,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.06559973241069349,19298.859209883423,5,3,5,5_0,5_4,5_1_0 -16030,2,33.0,0.0,2,111,265.0,59.0,0.0,52,42,0.0,0.0,366.2761703076216,1093.0,0.0,107.00552114999948,43,0,0,0,0,0,0,0,0,2,4.0,2,,2,106357,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,704.682431048154,265.0,49962.68612364347,1,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021876325810328435,33308.457415762314,8,4,8,8_0,8_4,8_0_1 -16031,2,58.0,0.0,2,111,690.0,270.0,0.0,46,56,0.0,0.0,953.7002170273921,960.0,0.0,489.6862832288112,31,2,1,2,1,1,2,2,2,0,,2,,2,119455,2,3,0,1,1,1305.0,0.0,814.0,43,2.0,4.0,6.0,2.0,1.5,2,2,201.286277081859,690.0,80387.43416519964,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011942164966071173,53591.622776799755,10,5,10,10_0,10_4,10_0_1 -16032,2,27.0,0.0,2,111,350.0,0.0,0.0,0,54,0.0,0.0,483.76097965157567,350.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,2,,2,128749,2,1,0,1,1,569.0,0.0,463.0,12,1.0,0.0,2.0,1.0,1.0,3,3,351.80584931358,350.0,28216.738798425602,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012403984829725568,28216.738798425602,8,4,8,8_0,8_4,8_0_1 -16033,2,37.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,570.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,60.0,2,,2,120945,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,214.292437918446,0.0,21783.042997754197,0,1,1,2,38.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026167142949622156,21783.042997754197,6,3,6,6_0,6_4,6_0_1 -16034,2,58.0,0.0,2,111,1236.0,0.0,0.0,77,54,0.0,0.0,1708.3673452838502,1266.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,113967,2,1,3,0,1,,300.0,,42,2.0,0.0,3.0,3.0,2.0,1,1,456.007855347552,1236.0,87137.89923555082,5,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01452869544832328,43568.94961777541,10,5,10,10_1,10_4,10_0_1 -16035,2,64.0,0.0,2,111,251.0,315.0,0.0,0,75,0.0,0.0,346.92573112155856,566.0,0.0,571.3006637669464,43,2,1,2,2,1,2,2,2,0,,2,,2,106014,2,2,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,793.61381898756,251.0,21229.67124332207,0,5,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026660799101071286,21229.67124332207,5,3,5,5_0,5_4,5_0_1 -16036,2,75.0,0.0,1,111,1420.0,1925.0,0.0,75,74,0.0,0.0,1962.6874031578213,3345.0,0.0,3491.281834131339,50,0,0,0,0,0,0,0,0,0,,1,,1,112869,2,2,3,0,1,,690.0,,41,1.0,2.0,3.0,3.0,2.0,2,2,364.688104731276,1420.0,74088.57650819891,5,5,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04514866066605869,37044.288254099454,9,5,9,9_1,9_4,9_1_0 -16037,2,63.0,0.0,2,111,330.0,881.0,0.0,75,77,0.0,0.0,456.1174951000571,1211.0,0.0,1597.8282056466026,31,0,0,0,0,0,0,0,0,0,,1,,2,102407,2,1,2,0,2,,250.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,534.311620843297,330.0,56482.175833251626,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021440392161505083,37654.78388883442,9,5,9,9_1,9_4,9_0_1 -16038,1,29.0,329.0,2,111,440.0,108.0,0.0,0,85,0.0,0.0,608.1566601334094,548.0,0.0,195.8745132915245,44,0,0,0,0,0,0,0,0,0,,2,,2,123732,1,1,0,1,1,,0.0,365.0,31,0.0,0.0,3.0,3.0,1.6,1,1,347.90151851331,440.0,11149.644033713714,0,6,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04914955117338151,6968.527521071071,1,1,1_1,1_0_1,1_4_1,1_0_1 -16039,0,86.0,0.0,2,111,339.0,2310.0,0.0,0,75,0.0,0.0,468.55706314824045,2649.0,0.0,4189.538200957607,20,2,2,2,1,1,2,2,2,0,,1,,2,119584,2,2,3,0,2,,179.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,637.735912541992,339.0,21744.259403558,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.1218252574546892,21744.259403558,6,3,6,6_1,6_4,6_0_1 -16040,2,76.0,0.0,1,111,346.0,0.0,0.0,77,75,0.0,0.0,478.232282741272,3026.0,4610.476371229714,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116447,2,1,2,0,1,,160.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,381.686934082759,346.0,45078.32742843833,5,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06712760150215784,30052.218285625553,8,4,8,8_1,8_4,8_1_0 -16041,0,57.0,0.0,2,111,1500.0,0.0,0.0,0,37,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,103645,2,1,2,0,1,,500.0,,22,1.0,1.0,3.0,2.0,1.5,1,1,476.05301468934,1500.0,57917.358794220156,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025898971072377215,38611.5725294801,9,5,9,9_1,9_4,9_0_1 -16042,2,50.0,0.0,2,111,720.0,2484.0,0.0,0,54,0.0,46.5827627168756,995.16544385467,3249.0,0.0,4505.113805705063,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,127187,2,3,2,0,1,,300.0,,32,2.0,0.0,5.0,3.0,2.0,2,2,539.638494697062,720.0,45487.46255914636,0,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07142627478451663,22743.73127957318,6,3,6,6_1,6_4,6_0_1 -16043,2,29.0,0.0,2,111,382.0,200.0,0.0,47,52,0.0,0.0,527.9905549340054,582.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,3,90.0,2,,2,106667,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,1,1,758.196360135223,382.0,48757.54530821337,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011936614042421044,18058.3501141531,4,2,4_0,4_0_0,4_4_0,4_0_1 -16044,2,41.0,0.0,2,111,725.0,104.0,0.0,53,62,0.0,0.0,1002.0763149925497,829.0,0.0,188.6199016881347,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,103740,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,706.620531650158,725.0,43930.68521767729,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018870636683500176,20919.37391317966,5,3,5,5_0,5_4,5_0_1 -16045,2,54.0,0.0,2,111,600.0,600.0,0.0,77,52,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,133079,2,1,0,1,1,708.0,0.0,300.0,42,1.0,3.0,3.0,2.0,1.5,4,4,627.200021669564,600.0,34478.0,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03480480306282267,22985.333333333332,6,3,6,6_0,6_4,6_0_1 -16046,2,61.0,0.0,2,111,250.0,250.0,0.0,0,77,0.0,0.0,345.54355689398267,1490.0,0.0,453.4132252118622,60,0,0,0,0,0,0,0,0,0,,2,,2,116840,2,2,0,1,1,900.0,0.0,446.0,11,0.0,2.0,3.0,1.0,1.0,2,2,746.014040688473,250.0,27106.140158833714,0,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0549690952407482,27106.140158833714,7,4,7,7_0,7_4,7_0_1 -16047,1,41.0,112.0,2,111,370.0,510.0,0.0,0,42,0.0,0.0,511.40446420309434,880.0,0.0,924.962979432199,50,0,0,0,0,0,0,0,0,0,,2,,2,100954,1,1,0,1,1,,0.0,385.0,32,1.0,0.0,4.0,2.0,1.5,2,2,645.266029254513,370.0,19810.69326113712,0,1,2,3,93.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.044420454569669546,13207.12884075808,2,1,2_1,2_0_1,2_4_1,2_0_1 -16048,1,35.0,199.0,2,111,233.0,340.0,0.0,85,53,0.0,0.0,322.04659502519183,573.0,0.0,616.6419862881327,50,2,1,2,1,1,2,1,2,3,60.0,2,,2,128040,1,1,0,1,1,347.0,0.0,228.0,42,1.0,0.0,2.0,4.0,2.1,1,1,766.287832864899,233.0,19602.40124372858,6,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0292311127027522,9334.476782727894,1,1,1_1,1_0_1,1_4_1,1_0_1 -16049,2,38.0,0.0,2,111,330.0,150.0,0.0,0,53,0.0,0.0,456.1174951000571,480.0,0.0,272.04793512711734,20,2,1,2,2,1,1,2,2,0,,2,,2,114381,1,3,0,1,2,,0.0,422.0,12,1.0,0.0,2.0,1.0,1.0,3,3,908.950134618569,330.0,12268.53092301206,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03912448874377167,12268.53092301206,2,1,2_0,2_0_0,2_4_0,2_0_1 -16050,2,67.0,0.0,2,111,0.0,0.0,0.0,74,31,0.0,0.0,0.0,3101.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,125921,2,2,5,0,1,,203.0,,42,1.0,4.0,6.0,2.0,1.5,3,3,518.035095327939,0.0,101913.53142213543,5,1,0,1,160.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03042775534050887,67942.35428142363,10,5,10,10_1,10_4,10_0_1 -16051,2,53.0,0.0,2,111,672.0,0.0,0.0,48,38,3397.9055952159515,0.0,928.8210809310253,2947.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,90.0,1,,2,128759,2,2,3,0,1,,409.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,469.142806063235,672.0,100459.78460157764,1,1,0,1,81.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029335121627900838,50229.89230078882,10,5,10,10_1,10_4,10_0_1 -16052,2,44.0,0.0,6,111,398.0,1138.0,0.0,46,42,0.0,103.51725048194578,550.1053425752203,1636.0,0.0,2063.937001164397,44,0,0,0,0,0,0,0,0,2,10.0,1,,4,115108,2,1,1,0,1,,125.0,,43,2.0,0.0,5.0,3.0,2.0,4,4,589.887014120104,398.0,55642.81884360406,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029401817413282474,27821.40942180203,7,4,7,7_1,7_4,7_0_0 -16053,1,30.0,40.0,8,111,600.0,0.0,0.0,0,54,0.0,0.0,829.3045365455583,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,2,2003.0,6,132557,2,3,0,0,1,,0.0,668.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1156.11468514185,600.0,19579.576023988608,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03064417734402874,15061.212326145082,3,2,3_1,3_0_1,3_4_1,3_0_0 -16054,2,53.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,652.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,2,105201,1,2,0,0,1,,0.0,,22,1.0,2.0,3.0,2.0,1.5,1,1,886.775264091757,0.0,45566.17494974579,0,1,0,1,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01430885960296383,30377.449966497195,8,4,8,8_0,8_4,8_0_1 -16055,2,61.0,0.0,5,111,600.0,1086.0,0.0,43,77,0.0,0.0,829.3045365455583,1686.0,0.0,1969.6270503203295,50,0,0,0,0,0,0,0,0,0,,2,,3,123551,2,2,0,1,1,,0.0,,42,1.0,0.0,4.0,4.0,2.3,1,1,652.256909946789,600.0,72899.90904935522,1,5,0,1,93.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023127600870647618,31695.612630154446,8,4,8,8_0,8_4,8_0_0 -16056,2,43.0,0.0,2,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1555.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,2,,2,130820,2,2,0,0,1,,0.0,782.0,43,2.0,0.0,3.0,3.0,2.0,2,2,1028.91043938908,0.0,75232.68775377629,1,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020669207048527215,37616.343876888146,9,5,9,9_0,9_4,9_0_1 -16057,1,53.0,257.0,5,111,1500.0,0.0,0.0,85,53,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,129825,2,1,2,0,1,,0.0,497.0,42,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,456.731834176164,1500.0,29935.46788884343,6,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.050107785372515624,9656.602544788204,1,1,1_1,1_1_1,1_4_1,1_0_0 -16058,2,63.0,0.0,2,111,366.0,0.0,0.0,0,75,0.0,0.0,505.87576729279056,366.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,132779,2,1,0,1,1,601.0,0.0,330.0,11,0.0,0.0,3.0,1.0,1.0,1,1,707.584370879632,366.0,18925.931320214317,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019338546347205884,18925.931320214317,5,3,5,5_0,5_4,5_0_1 -16059,2,39.0,0.0,5,111,500.0,0.0,0.0,52,42,0.0,0.0,691.0871137879653,593.0,0.0,0.0,44,2,1,2,2,1,2,2,2,2,25.0,2,,3,108075,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,669.593317400917,500.0,52245.87326378981,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011350178740547383,24878.987268471334,7,4,7,7_0,7_4,7_0_0 -16060,2,47.0,0.0,2,111,300.0,90.0,0.0,54,37,0.0,0.0,414.65226827277917,390.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,103825,1,1,0,1,2,,0.0,,43,2.0,3.0,4.0,3.0,2.0,3,2,695.664072338511,300.0,62416.99821767041,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006248297917819285,31208.499108835204,8,4,8,8_0,8_4,8_0_1 -16061,2,59.0,0.0,2,111,1400.0,0.0,0.0,21,46,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,109832,1,2,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,829.7514149946,1400.0,40412.986326969745,4,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034642329786594,26941.990884646497,7,4,7,7_0,7_4,7_0_1 -16062,2,78.0,0.0,2,111,1100.0,0.0,0.0,0,74,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106775,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,859.210372450338,1100.0,29850.63811873449,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03685013350885895,29850.63811873449,8,4,8,8_0,8_4,8_0_1 -16063,2,40.0,0.0,2,111,2700.0,0.0,0.0,62,47,0.0,0.0,3731.8704144550125,2700.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,130522,1,2,0,0,1,888.0,0.0,540.0,43,3.0,0.0,5.0,7.0,3.3999999999999995,4,4,889.517925233406,2700.0,50837.647118609224,4,1,2,3,133.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05311024709111015,14952.249152532127,3,2,3_0,3_0_0,3_4_0,3_0_1 -16064,2,59.0,0.0,1,111,1729.5,0.0,0.0,54,21,0.0,0.0,2390.470326592572,1730.0,0.0,0.0,44,2,2,2,1,1,2,2,2,0,,1,,1,104000,2,2,1,0,1,,0.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,362.591424999546,1729.5,6164.165074739528,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.2806543917990552,3082.082537369764,1,1,1_0,1_1_0,1_4_0,1_1_0 -16065,2,30.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1213.0,0.0,0.0,43,0,0,0,0,0,0,0,0,4,45.0,2,,2,118643,2,1,0,0,1,,313.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,886.775264091757,0.0,23883.817588598376,0,1,1,2,46.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.050787525716954905,18372.167375844903,4,2,4_0,4_0_0,4_4_0,4_0_1 -16066,2,50.0,0.0,1,111,420.0,65.0,0.0,54,46,2419.607500769161,0.0,580.5131755818909,2105.0,0.0,117.88743855508417,33,0,0,0,0,0,0,0,0,2,45.0,1,,1,133648,2,2,2,0,1,,456.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,367.046428179072,420.0,72868.77784308023,1,1,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028887543640885905,36434.388921540114,9,5,9,9_1,9_4,9_1_0 -16067,2,60.0,0.0,5,111,562.0,1265.0,0.0,75,46,0.0,124.22070057833493,776.781915897673,1947.0,0.0,2294.2709195720226,42,0,0,0,0,0,0,0,0,4,70.0,1,,3,122377,2,2,1,0,1,,480.0,,42,1.0,1.0,5.0,3.0,2.0,1,1,590.915286610477,562.0,96876.73024123455,5,1,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020097705559959954,48438.36512061727,10,5,10,10_1,10_4,10_0_0 -16068,2,68.0,0.0,1,111,651.0,600.0,0.0,77,78,0.0,0.0,899.7954221519308,1251.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,1,,1,102825,2,1,2,0,1,,264.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,362.024967886381,651.0,30863.679560943863,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040533080235289426,20575.786373962575,5,3,5,5_1,5_4,5_1_0 -16069,2,48.0,0.0,1,111,1400.0,0.0,0.0,56,62,0.0,0.0,1935.0439186063027,1500.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,1,117128,2,1,2,0,1,,520.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,344.640686092748,1400.0,50638.57753980384,1,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02962168514352409,25319.28876990192,7,4,7,7_1,7_4,7_1_0 -16070,2,33.0,0.0,7,111,600.0,1080.0,0.0,22,52,0.0,0.0,829.3045365455583,1680.0,0.0,1958.7451329152448,50,0,0,0,0,0,0,0,0,1,10.0,1,,5,124075,2,2,3,0,1,,500.0,389.0,43,2.0,0.0,4.0,4.0,2.1,1,1,527.582801769114,600.0,27671.639703244127,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06071197869069691,13176.971287259108,2,1,2_0,2_1_0,2_4_0,2_0_0 -16071,2,50.0,0.0,2,111,180.0,120.0,0.0,54,33,0.0,0.0,248.7913609636675,300.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,101814,2,1,0,1,1,1200.0,0.0,417.0,43,2.0,0.0,4.0,4.0,2.1,1,1,629.057722025149,180.0,43072.6691506967,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006964973518367331,20510.794833665095,5,3,5,5_0,5_4,5_0_1 -16072,2,68.0,0.0,5,111,388.0,0.0,0.0,77,78,0.0,0.0,536.2836002994611,455.0,113.54158227655265,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,133618,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,704.171910672978,388.0,41971.79458685963,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01084061342810559,27981.19639123975,7,4,7,7_0,7_4,7_0_0 -16073,2,54.0,0.0,2,111,520.0,400.0,0.0,85,48,0.0,0.0,718.7305983394839,920.0,0.0,725.4611603389795,41,2,2,2,2,1,2,2,2,4,70.0,2,,2,125959,2,3,0,1,1,,0.0,,42,1.0,0.0,4.0,4.0,2.5,1,1,668.569170505512,520.0,73185.48799676342,6,1,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.012570798189399057,29274.19519870537,8,4,8,8_0,8_4,8_0_1 -16074,2,70.0,0.0,1,111,450.0,140.0,0.0,86,74,0.0,0.0,621.9784024091688,590.0,0.0,253.91140611864284,20,0,0,0,0,0,0,0,0,0,,2,,1,117613,2,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,685.940230571144,450.0,53272.039537135584,6,5,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011075228302245025,35514.693024757056,9,5,9,9_0,9_4,9_1_0 -16075,2,35.0,0.0,2,111,0.0,0.0,0.0,48,62,0.0,0.0,0.0,255.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,110.0,2,,2,120597,2,3,0,1,1,750.0,0.0,552.0,43,2.0,0.0,3.0,3.0,1.8,2,2,618.226235342883,0.0,37255.45945414869,1,1,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006844634416972779,20697.477474527048,5,3,5,5_0,5_4,5_0_1 -16076,2,55.0,0.0,2,111,401.0,0.0,0.0,0,52,0.0,0.0,554.2518652579481,648.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,,2,100386,2,2,0,1,1,850.0,0.0,680.0,32,2.0,3.0,3.0,4.0,2.5,1,1,595.614605369341,401.0,24356.65838355183,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026604634748976796,9742.663353420732,2,1,2_0,2_0_0,2_4_0,2_0_1 -16077,2,29.0,0.0,2,111,350.0,0.0,0.0,47,47,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,125187,1,1,0,1,1,,270.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,704.831116594098,350.0,40715.1038983391,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00859631847861446,27143.40259889273,7,4,7,7_0,7_4,7_0_1 -16078,2,56.0,0.0,2,111,590.0,100.0,0.0,55,56,0.0,0.0,815.482794269799,690.0,0.0,181.36529008474488,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,121378,2,1,0,1,1,1056.0,0.0,404.0,43,3.0,2.0,4.0,3.0,2.0,4,4,686.947540842368,590.0,24562.433573420316,1,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028091679024291303,12281.216786710158,2,1,2_0,2_0_0,2_4_0,2_0_1 -16079,1,43.0,69.0,2,111,374.0,182.0,0.0,0,55,0.0,0.0,516.933161113398,556.0,0.0,330.0848279542357,31,2,2,2,2,1,2,2,2,1,15.0,2,,2,100078,1,3,0,1,2,684.0,0.0,389.0,32,1.0,0.0,3.0,3.0,2.0,1,1,173.778905829173,374.0,28592.57199359873,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01944560986414502,14296.285996799365,3,2,3_1,3_0_1,3_4_1,3_0_1 -16080,2,65.0,0.0,2,111,0.0,0.0,600.0,68,45,0.0,0.0,306.548000902515,1523.0,0.0,685.9474647915789,31,0,0,0,0,0,0,0,0,3,15.0,2,,2,123505,2,1,0,1,1,900.0,0.0,307.0,43,2.0,4.0,3.0,2.0,1.5,3,2,176.338570985658,0.0,43992.2681499996,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03461971987457104,29328.178766666402,8,4,8,8_0,8_4,8_0_1 -16081,1,48.0,283.0,2,111,250.0,0.0,0.0,0,47,0.0,0.0,345.54355689398267,407.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,113161,2,1,0,1,1,720.0,0.0,350.0,12,1.0,2.0,2.0,1.0,1.0,4,3,255.553192439627,250.0,12171.0,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03344014460603073,12171.0,2,1,2_1,2_0_1,2_4_1,2_0_1 -16082,2,56.0,0.0,2,111,630.0,110.0,0.0,0,52,0.0,0.0,870.7697633728362,1122.0,0.0,199.50181909321938,43,2,2,2,2,1,2,1,2,3,15.0,2,,2,131288,1,2,0,1,1,1440.0,0.0,440.0,32,2.0,1.0,4.0,3.0,2.0,2,2,210.188696822504,630.0,30627.97747560668,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.036633173081494025,15313.98873780334,3,2,3_0,3_0_0,3_4_0,3_0_1 -16083,2,53.0,0.0,2,111,360.0,0.0,0.0,0,33,0.0,0.0,497.582721927335,667.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,80.0,2,,2,117969,2,3,0,1,2,,0.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,685.940230571144,360.0,45116.71479680491,0,1,0,1,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01478387783782599,30077.809864536608,8,4,8,8_0,8_4,8_0_1 -16084,2,67.0,0.0,5,111,402.0,1034.0,0.0,0,75,0.0,0.0,555.6340394855241,1436.0,0.0,1875.3170994762622,71,0,0,0,0,0,0,0,0,0,,1,,3,115988,2,2,3,0,1,,187.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,584.18736310852,402.0,45713.067377746556,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03141333720036155,30475.378251831036,8,4,8,8_1,8_4,8_0_0 -16085,2,32.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,849.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,126460,2,1,0,0,1,,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2113.07656115198,0.0,15897.978957103667,0,4,2,3,47.0,8,6,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05340301445176104,15897.978957103667,3,2,3_0,3_0_0,3_2_0,3_1_0 -16086,2,46.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,221.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,123925,2,1,0,1,1,,0.0,357.0,42,1.0,0.0,3.0,3.0,1.8,1,1,412.472407233992,0.0,11340.988878736089,6,1,2,3,37.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0194868368502121,6300.549377075605,1,1,1_0,1_0_0,1_2_0,1_0_1 -16087,2,96.0,0.0,2,111,435.0,0.0,0.0,0,72,0.0,0.0,601.2457889955298,1175.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,121966,2,1,0,1,1,,0.0,287.0,11,0.0,2.0,2.0,1.0,1.0,1,1,372.644033490033,435.0,18360.192511322733,0,5,2,3,48.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06399715031720812,18360.192511322733,4,2,4_0,4_0_0,4_2_0,4_0_1 -16088,2,59.0,0.0,1,111,1250.0,0.0,0.0,0,45,0.0,77.63793786145933,1727.717784469913,1325.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,128820,2,1,4,0,1,,300.0,,22,2.0,1.0,3.0,2.0,1.5,2,2,477.979716617781,1250.0,50916.72460844245,0,1,1,2,80.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026022883643625087,33944.48307229496,9,5,9,9_1,9_2,9_1_0 -16089,2,101.0,0.0,2,111,0.0,0.0,0.0,0,71,0.0,0.0,0.0,823.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126717,2,2,0,0,1,,0.0,250.0,11,0.0,0.0,2.0,1.0,1.0,2,2,434.276916589004,0.0,24587.179557825148,0,5,2,3,43.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033472729072663035,24587.179557825148,7,4,7,7_0,7_2,7_0_1 -16090,2,37.0,0.0,1,120,1790.0,0.0,0.0,43,47,0.0,0.0,2474.091867360916,1820.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,100366,2,1,0,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,5397.74662136105,1790.0,49097.0,1,1,1,2,107.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03706947471332261,23379.52380952381,6,3,6,6_0,6_0,6_1_0 -16091,1,56.0,254.0,2,211,250.0,42.0,0.0,0,75,0.0,0.0,345.54355689398267,292.0,0.0,76.17342183559285,70,2,2,1,2,1,2,2,2,0,,2,,2,125974,1,1,0,1,1,691.0,0.0,292.0,11,0.0,2.0,4.0,1.0,1.0,1,1,414.208745030574,250.0,11222.77004717442,0,7,2,3,80.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.026018531857339218,11222.77004717442,2,1,2_1,2_0_1,2_1_1,2_0_1 -16092,2,74.0,0.0,2,211,1158.0,1200.0,0.0,0,78,0.0,0.0,1600.5577555329276,2358.0,0.0,2176.3834810169387,71,2,2,2,2,1,2,2,2,0,,1,,2,117360,2,2,4,0,1,,144.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,292.532358838517,1158.0,13492.510928968179,0,5,0,1,85.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.17476361608404678,13492.510928968179,3,2,3_0,3_1_0,3_1_0,3_0_1 -16093,1,29.0,74.0,9,211,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1455.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,125331,2,1,0,1,1,636.0,109.0,429.0,22,1.0,0.0,4.0,2.0,1.5,3,3,351.56505229727,0.0,16805.8285812443,0,4,2,3,70.0,3,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08657710585146716,11203.885720829532,2,1,2_1,2_0_1,2_1_1,2_0_0 -16094,2,46.0,0.0,9,112,0.0,0.0,0.0,46,43,0.0,0.0,0.0,942.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,108929,2,1,1,0,1,,429.0,800.0,43,2.0,0.0,6.0,4.0,2.1,2,2,2005.27928079892,0.0,58696.58225083009,1,1,2,3,140.0,6,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01604863458615903,27950.753452776233,7,4,7,7_1,7_0,7_0_0 -16096,1,40.0,237.0,8,211,1000.0,864.0,0.0,0,55,0.0,0.0,1382.1742275759307,1864.0,0.0,1566.996106332196,20,0,0,0,0,0,0,0,0,2,15.0,1,,6,102333,1,3,3,0,1,,92.0,320.0,32,1.0,0.0,4.0,2.0,1.3,2,2,245.837441268929,1000.0,16339.481233606894,0,1,2,3,70.0,3,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11407950921759634,12568.831718159148,2,1,2_1,2_1_1,2_1_1,2_0_0 -16097,2,65.0,0.0,9,400,1300.0,0.0,0.0,22,78,746.7924385090004,310.55175144583734,1796.8264958487098,2200.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,106898,2,1,1,0,1,,140.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1923.16155323891,1300.0,24019.244551304826,1,5,1,2,95.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0915932220641172,16012.829700869885,4,2,4_0,4_1_0,4_0_0,4_0_0 -16098,2,34.0,0.0,9,120,816.0,0.0,0.0,56,63,0.0,362.31037668681023,1127.8541697019593,1286.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,100424,2,1,1,0,1,,193.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1989.20106768259,816.0,31359.428713591347,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041008400112934475,17421.904840884083,4,2,4_0,4_1_0,4_0_0,4_0_0 -16100,2,30.0,0.0,9,112,1210.0,0.0,0.0,52,46,0.0,0.0,1672.430815366876,1210.0,0.0,0.0,50,2,2,1,2,1,2,2,1,2,15.0,1,2011.0,6,124363,2,1,1,0,1,,408.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1989.20106768259,1210.0,37619.743165212814,1,1,1,2,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03216396227603419,20899.85731400712,5,3,5,5_1,5_0,5_0_0 -16102,1,81.0,81.0,2,111,198.0,196.0,0.0,86,75,0.0,0.0,273.6704970600342,394.0,0.0,355.4759685661,50,0,0,0,0,0,0,0,0,0,,2,,2,113050,2,2,0,1,2,,300.0,458.0,41,0.0,3.0,5.0,2.0,1.5,1,1,460.125105820384,198.0,16694.8499848167,6,5,2,3,75.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02360009226547871,11129.8999898778,2,1,2_1,2_0_1,2_2_1,2_0_1 -16103,2,55.0,0.0,2,111,1200.0,0.0,0.0,0,35,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,106294,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,1712.17136253157,1200.0,41592.13970594617,0,1,0,1,56.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02885160533898773,41592.13970594617,9,5,9,9_0,9_2,9_0_1 -16104,1,21.0,333.0,2,111,120.0,125.0,0.0,0,81,0.0,0.0,165.86090730911167,245.0,0.0,226.7066126059311,31,0,0,0,0,0,0,0,0,0,,2,,2,119233,2,1,0,1,1,,120.0,104.0,32,1.0,0.0,2.0,2.0,1.3,4,4,401.496650856925,120.0,7236.452119309262,0,4,2,3,60.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03385636993938763,5566.501630237894,1,1,1_1,1_0_1,1_2_1,1_0_1 -16105,2,28.0,0.0,9,300,1560.0,0.0,0.0,46,43,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,131947,2,1,1,0,1,,192.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1615.13190595489,1560.0,44982.081709418126,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03468047588543184,29988.054472945416,8,4,8,8_1,8_0,8_0_0 -16106,2,58.0,0.0,2,111,174.0,0.0,0.0,0,90,619.8377239624702,0.0,240.49831559821192,589.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124423,1,2,0,1,2,415.0,0.0,476.0,11,0.0,2.0,2.0,1.0,1.0,2,2,2059.12299482755,174.0,23526.22315574467,0,5,2,3,42.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02503589276106042,23526.22315574467,6,3,6,6_0,6_2,6_0_1 -16107,2,76.0,0.0,2,111,150.0,0.0,0.0,0,78,0.0,0.0,207.32613413638958,330.0,309.6588607542345,0.0,50,2,1,2,1,1,2,2,2,0,,8,,2,125315,2,2,0,1,1,,0.0,422.0,11,0.0,6.0,3.0,1.0,1.0,2,2,442.716388665898,150.0,13738.237615556323,0,5,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024020548285344008,13738.237615556323,3,2,3_0,3_0_0,3_2_0,3_0_1 -16108,2,41.0,0.0,9,111,1300.0,0.0,0.0,0,23,0.0,414.0690019277831,1796.8264958487098,1800.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,115397,2,1,1,0,1,,500.0,,32,1.0,0.0,6.0,4.0,2.1,2,2,402.876607828618,1300.0,50481.47204682291,0,1,1,2,160.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035656646429217675,24038.796212772813,6,3,6,6_1,6_2,6_0_0 -16110,2,59.0,0.0,2,111,230.0,1480.0,0.0,0,43,0.0,0.0,317.900072342464,1710.0,0.0,2684.2062932542244,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,114215,2,2,0,1,1,,0.0,,12,1.0,3.0,5.0,1.0,1.0,4,4,1815.41642981226,230.0,39676.26308899754,0,1,0,1,100.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04309881694665426,39676.26308899754,9,5,9,9_0,9_2,9_0_1 -16111,1,53.0,180.0,5,111,450.0,250.0,0.0,0,56,0.0,0.0,621.9784024091688,700.0,0.0,453.4132252118622,70,0,0,0,0,0,0,0,0,0,,2,,3,114598,2,1,0,1,1,,210.0,300.0,32,1.0,0.0,3.0,2.0,1.5,2,2,341.794307173223,450.0,15578.376353464206,0,1,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04493407940066483,10385.584235642804,2,1,2_1,2_0_1,2_2_1,2_0_0 -16112,1,32.0,370.0,9,111,400.0,800.0,0.0,85,43,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,108189,2,1,1,0,1,,450.0,570.0,42,1.0,0.0,4.0,4.0,2.1,2,2,8888.85144006384,400.0,35047.79415888953,6,4,2,3,90.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0342389593638843,16689.425789947392,4,2,4_1,4_1_1,4_2_1,4_0_0 -16113,1,21.0,287.0,5,111,138.0,0.0,0.0,84,53,0.0,0.0,190.74004340547842,174.0,61.9317721508469,0.0,50,2,1,2,1,2,2,2,1,0,,2,,3,131546,1,1,0,1,2,,0.0,415.0,42,1.0,0.0,2.0,2.0,1.5,4,3,1807.20922276888,138.0,5620.913099960945,3,4,2,3,45.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.030955824597467797,3747.2753999739634,1,1,1_1,1_0_1,1_2_1,1_0_0 -16114,1,25.0,270.0,2,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,545.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,2,123702,2,2,0,1,1,463.0,258.0,256.0,12,1.0,0.0,3.0,1.0,1.0,2,2,374.566340713082,0.0,8949.363560136513,0,1,2,3,75.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06089818525505143,8949.363560136513,1,1,1_1,1_0_1,1_2_1,1_0_1 -16115,2,33.0,0.0,9,300,1227.0,0.0,0.0,65,47,0.0,0.0,1695.9277772356668,1771.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,2,18.0,1,2011.0,6,115186,2,1,1,0,1,,209.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1601.83552690452,1227.0,5160.873445450981,1,1,1,2,84.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3431589669304983,2867.151914139434,1,1,1_0,1_1_0,1_0_0,1_0_0 -16116,2,51.0,0.0,9,111,575.0,0.0,0.0,46,47,0.0,198.7531209253359,794.7501808561601,767.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,100400,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,5.0,3.0,2,2,1166.06220875448,575.0,60617.473664643236,1,1,1,2,125.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012653117222326165,20205.824554881077,5,3,5,5_1,5_2,5_0_0 -16117,2,31.0,0.0,2,111,240.0,220.0,0.0,0,63,0.0,0.0,331.72181461822333,460.0,0.0,399.00363818643876,50,2,1,2,2,2,2,2,1,0,,2,,2,127997,1,3,0,1,1,529.0,240.0,300.0,22,2.0,0.0,3.0,2.0,1.5,2,2,347.213763377269,240.0,23429.722383206787,0,1,2,3,98.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01963318183956393,15619.814922137857,3,2,3_0,3_0_0,3_2_0,3_0_1 -16118,2,51.0,0.0,2,111,700.0,0.0,0.0,0,52,2987.1697540360015,658.3697130651751,967.5219593031513,3336.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,109716,2,2,2,0,2,,320.0,,32,1.0,1.0,5.0,3.0,2.0,2,2,1367.98171321302,700.0,10294.055834232218,0,4,0,1,235.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.32407051736657067,5147.027917116109,1,1,1_0,1_1_0,1_2_0,1_0_1 -16119,2,52.0,0.0,2,111,250.0,150.0,0.0,0,46,0.0,0.0,345.54355689398267,400.0,0.0,272.04793512711734,42,2,2,1,1,1,1,2,2,2,30.0,2,,2,103356,1,3,0,1,2,463.0,0.0,480.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2116.70851329729,250.0,21816.833234143476,0,1,2,3,61.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01833446658857884,21816.833234143476,6,3,6,6_0,6_2,6_0_1 -16120,2,54.0,0.0,2,111,1850.0,0.0,0.0,78,67,0.0,0.0,2557.0223210154713,2150.0,516.0981012570575,0.0,50,2,2,2,2,2,2,2,1,2,20.0,1,,2,107701,2,2,2,0,1,,480.0,360.0,42,1.0,3.0,4.0,2.0,1.5,2,2,261.023813479194,1850.0,45181.55995073809,5,1,2,3,85.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0475857850491255,30121.039967158726,8,4,8,8_1,8_2,8_0_1 -16121,1,50.0,319.0,2,111,467.0,257.0,0.0,0,68,0.0,0.0,645.4753642779596,724.0,0.0,466.10879551779436,70,2,1,2,2,2,2,2,1,2,25.0,2,,2,116065,2,2,0,0,1,,398.0,296.0,32,1.0,0.0,4.0,3.0,1.8,1,1,420.819392254432,467.0,14412.800729750372,0,1,2,3,75.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05023312356671566,8007.111516527984,1,1,1_1,1_0_1,1_2_1,1_0_1 -16122,2,42.0,0.0,1,111,92.0,1752.0,0.0,64,55,0.0,0.0,127.16002893698561,1844.0,0.0,3177.5198822847306,31,0,0,0,0,0,0,0,0,3,15.0,1,,1,106901,2,1,1,0,1,,630.0,,43,2.0,3.0,3.0,3.0,1.8,5,4,1282.5732536113,92.0,25314.4230989335,4,1,1,2,70.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07284384845719387,14063.56838829639,3,2,3_0,3_1_0,3_2_0,3_1_0 -16123,1,69.0,159.0,2,111,222.0,140.0,0.0,0,90,0.0,0.0,306.84267852185656,362.0,0.0,253.91140611864284,71,2,1,2,2,2,2,2,1,0,,2,,2,101343,2,2,0,1,1,696.0,140.0,317.0,11,0.0,6.0,5.0,1.0,1.0,1,1,426.035855104091,222.0,10624.588941048407,0,5,2,3,80.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03407190640584715,10624.588941048407,2,1,2_1,2_0_1,2_2_1,2_0_1 -16124,1,47.0,166.0,9,111,420.0,0.0,0.0,54,56,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,2005.0,6,121648,2,2,0,1,1,,280.0,740.0,43,2.0,2.0,5.0,2.0,1.5,3,2,1824.97207213806,420.0,29499.540867636664,4,1,2,3,120.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01423750972547418,19666.360578424443,5,3,5,5_0,5_2,5_0_0 -16125,2,62.0,0.0,2,111,150.0,110.0,0.0,0,75,0.0,0.0,207.32613413638958,260.0,0.0,199.50181909321938,71,2,1,2,2,2,2,2,1,0,,2,,2,132401,2,3,0,1,1,38.0,85.0,256.0,11,0.0,3.0,3.0,1.0,1.0,1,1,387.353023651667,150.0,22039.748196127202,0,5,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011796867989884153,22039.748196127202,6,3,6,6_0,6_2,6_0_1 -16126,1,31.0,377.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1181.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125848,2,1,0,1,2,,196.0,527.0,32,1.0,0.0,5.0,2.0,1.3,5,5,1619.17778287289,0.0,4523.0,0,4,2,3,81.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2611098828211364,3479.230769230769,1,1,1_1,1_0_1,1_2_1,1_0_1 -16127,1,44.0,352.0,2,111,0.0,0.0,0.0,84,68,0.0,0.0,0.0,578.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,125747,1,1,0,1,1,616.0,312.0,323.0,42,1.0,0.0,4.0,3.0,1.8,3,2,431.005685938617,0.0,5290.075699840601,3,4,2,3,60.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10926119639789202,2938.9309443558896,1,1,1_1,1_0_1,1_2_1,1_0_1 -16128,1,58.0,252.0,2,111,300.0,0.0,0.0,0,63,0.0,0.0,414.65226827277917,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,114588,2,1,0,1,1,,0.0,103.0,12,1.0,2.0,2.0,1.0,1.0,2,2,377.147754122657,300.0,6966.550603538637,0,1,2,3,44.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04306291837564719,6966.550603538637,1,1,1_1,1_0_1,1_2_1,1_0_1 -16129,1,43.0,208.0,2,111,1000.0,145.0,0.0,65,68,0.0,0.0,1382.1742275759307,1145.0,0.0,262.97967062288006,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,110494,2,1,0,1,1,,290.0,398.0,43,3.0,0.0,5.0,5.0,3.0,1,1,1505.83226630859,1000.0,55414.77135147446,4,1,2,3,91.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020662360812385344,18471.590450491487,4,2,4_1,4_0_1,4_2_1,4_0_1 -16130,2,86.0,0.0,2,111,400.0,0.0,0.0,0,72,0.0,0.0,552.8696910303722,400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,113646,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,415.774130794936,400.0,18500.127566903968,0,5,0,1,65.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02162147253057784,18500.127566903968,4,2,4_0,4_0_0,4_2_0,4_0_1 -16131,0,30.0,0.0,6,111,600.0,0.0,0.0,0,43,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,2,,4,129046,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2419.96732190518,600.0,27108.14381805461,0,1,5,0,25.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022133570045485263,27108.14381805461,7,4,7,7_0,7_2,7_0_0 -16132,2,55.0,0.0,2,111,360.0,130.0,0.0,47,42,0.0,0.0,497.582721927335,490.0,0.0,235.77487711016835,20,2,1,2,2,1,2,2,2,2,45.0,2,,2,110722,2,1,0,1,2,,190.0,532.0,43,2.0,2.0,3.0,2.0,1.5,4,4,382.740838999775,360.0,49338.924943546954,1,1,2,3,84.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0099313067838558,32892.616629031305,8,4,8,8_0,8_2,8_0_1 -16134,1,48.0,375.0,5,111,330.0,0.0,0.0,68,64,0.0,0.0,456.1174951000571,330.0,0.0,0.0,33,2,2,1,2,1,2,2,2,0,,2,,3,109461,2,1,0,1,1,1052.0,0.0,230.0,43,4.0,1.0,5.0,6.0,3.0999999999999996,3,2,315.379911643042,330.0,37541.33751751823,1,1,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0087903101440115,12110.108876618786,2,1,2_1,2_0_1,2_2_1,2_0_0 -16135,2,29.0,0.0,2,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,669.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,50.0,2,,2,101078,1,3,0,2,2,,0.0,540.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1974.92731278376,0.0,20079.0,1,1,2,3,45.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03331839235021664,13386.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -16136,2,32.0,0.0,2,111,350.0,0.0,0.0,43,35,0.0,0.0,483.76097965157567,350.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,75.0,2,,2,128157,2,1,0,1,1,,0.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,461.218716728342,350.0,36815.49506605372,1,1,1,2,118.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00950686658897391,20453.05281447429,5,3,5,5_0,5_2,5_0_1 -16137,2,58.0,0.0,2,111,1000.0,1000.0,0.0,74,34,0.0,20.703450096389155,1382.1742275759307,2020.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,1,10.0,1,,2,117363,2,2,3,0,1,,400.0,,42,1.0,2.0,6.0,3.0,2.0,2,1,1390.37529593579,1000.0,92243.13152770992,5,1,0,1,120.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021898649433786735,46121.56576385496,10,5,10,10_1,10_2,10_0_1 -16139,2,64.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,179.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,108339,1,1,0,1,2,504.0,0.0,251.0,11,0.0,4.0,2.0,1.0,1.0,2,2,375.403172402482,0.0,11527.400000000001,0,5,2,3,54.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015528219719971544,11527.400000000001,2,1,2_0,2_0_0,2_2_0,2_0_0 -16141,2,44.0,0.0,2,111,180.0,0.0,0.0,0,43,0.0,0.0,248.7913609636675,180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,2,130911,1,2,0,1,1,343.0,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2059.12299482755,180.0,24040.82190318004,0,1,2,3,45.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007487264816690406,24040.82190318004,6,3,6,6_0,6_2,6_0_1 -16142,2,52.0,0.0,6,111,480.0,0.0,0.0,0,63,0.0,506.1993548567149,663.4436292364467,1004.0,60.21144514665671,0.0,41,0,0,0,0,0,0,0,0,1,3.0,2,,4,124694,2,1,0,1,1,,0.0,510.0,12,1.0,2.0,3.0,1.0,1.0,1,1,420.111480258847,480.0,24245.322113356233,0,1,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04141004995957211,24245.322113356233,7,4,7,7_0,7_2,7_0_0 -16143,1,30.0,377.0,2,111,0.0,0.0,0.0,56,22,0.0,0.0,0.0,782.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,106733,2,2,0,1,1,923.0,0.0,359.0,43,2.0,0.0,3.0,3.0,1.8,3,3,531.94454053975,0.0,16708.87620299551,4,1,2,3,70.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.046801471894310026,9282.709001664172,1,1,1_1,1_0_1,1_2_1,1_0_1 -16144,1,77.0,17.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,331.72181461822333,362.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,2,125256,1,1,0,1,2,552.0,0.0,595.0,11,0.0,3.0,3.0,1.0,1.0,3,3,449.623310396457,240.0,14314.003699170182,0,5,2,3,64.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025289919410946222,14314.003699170182,3,2,3_1,3_0_1,3_2_1,3_0_1 -16145,1,22.0,120.0,5,111,560.0,0.0,0.0,52,56,0.0,0.0,774.0175674425211,585.0,43.00817510475479,0.0,50,2,2,2,2,1,2,2,2,0,,2,,3,113496,1,2,0,0,2,,240.0,280.0,43,3.0,0.0,2.0,3.0,2.0,2,2,1932.62708014033,560.0,17259.67769001913,4,1,2,3,62.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.03389402806393609,8629.838845009564,1,1,1_1,1_0_1,1_2_1,1_0_0 -16146,2,64.0,0.0,5,111,370.0,0.0,0.0,0,75,0.0,0.0,511.40446420309434,450.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,102092,2,2,0,1,1,320.0,0.0,383.0,11,0.0,3.0,5.0,1.0,1.0,2,2,342.652719602484,370.0,16980.829170246256,0,5,2,3,92.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026500472708864433,16980.829170246256,4,2,4_0,4_0_0,4_2_0,4_0_0 -16147,1,60.0,271.0,2,111,300.0,96.0,0.0,0,42,0.0,0.0,414.65226827277917,396.0,0.0,174.11067848135508,50,2,1,2,1,1,1,2,2,0,,2,,2,120095,2,2,0,1,1,576.0,0.0,342.0,12,1.0,2.0,4.0,1.0,1.0,1,1,391.714152444559,300.0,6060.0,0,4,2,3,72.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06534653465346535,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -16148,2,61.0,0.0,2,111,120.0,80.0,0.0,0,75,896.1509262108004,0.0,165.86090730911167,800.0,0.0,145.09223206779592,60,0,0,0,0,0,0,0,0,0,,2,,2,106299,2,1,0,1,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,424.384731962872,120.0,27197.529036984986,0,5,0,1,75.0,8,6,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029414436837703433,27197.529036984986,7,4,7,7_0,7_2,7_0_1 -16149,2,87.0,0.0,2,111,365.0,65.0,0.0,0,74,5376.905557264802,0.0,504.49359306521467,4030.0,0.0,117.88743855508417,71,0,0,0,0,0,0,0,0,0,,1,,2,105534,2,2,1,0,1,,222.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1525.43519800037,365.0,45732.36431586839,0,5,0,1,135.0,8,6,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08812140068169742,45732.36431586839,10,5,10,10_1,10_2,10_0_1 -16150,1,40.0,491.0,9,111,500.0,0.0,0.0,0,35,0.0,0.0,691.0871137879653,600.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,115886,2,1,0,1,1,744.0,0.0,518.0,32,1.0,0.0,4.0,4.0,2.1,2,2,325.786758868281,500.0,20071.634758223932,0,1,2,3,85.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029892931354490823,9557.921313439967,1,1,1_1,1_0_1,1_2_1,1_0_0 -16151,1,76.0,150.0,9,111,400.0,0.0,0.0,0,77,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,107584,2,1,0,1,1,810.0,0.0,187.0,11,0.0,3.0,2.0,1.0,1.0,1,1,382.21799729237,400.0,18586.850177582146,0,5,2,3,58.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021520590965027817,18586.850177582146,4,2,4_1,4_0_1,4_2_1,4_0_0 -16152,2,86.0,0.0,6,111,1800.0,0.0,0.0,0,72,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,118732,1,2,0,0,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1599.45152674995,1800.0,41064.86270971869,0,5,0,1,80.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04383309431043099,41064.86270971869,9,5,9,9_0,9_2,9_0_0 -16153,1,71.0,136.0,2,111,150.0,286.0,0.0,0,77,0.0,0.0,207.32613413638958,436.0,0.0,518.7047296423704,50,0,0,0,0,0,0,0,0,0,,2,,2,107431,1,2,0,1,1,,0.0,250.0,11,0.0,3.0,4.0,1.0,1.0,1,1,422.498431713012,150.0,10538.539915835188,0,5,2,3,55.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0413719550793623,10538.539915835188,2,1,2_1,2_0_1,2_2_1,2_0_1 -16154,1,64.0,238.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,411.0,0.0,0.0,20,2,2,1,2,1,2,2,2,0,,2,,2,120718,2,2,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,429.271838005848,0.0,8255.565349541057,0,7,2,3,60.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0497845977347691,8255.565349541057,1,1,1_1,1_0_1,1_2_1,1_0_1 -16155,2,60.0,0.0,6,111,1200.0,0.0,0.0,43,38,0.0,310.55175144583734,1658.6090730911167,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,4,129838,1,1,2,0,1,,440.0,,43,3.0,3.0,7.0,3.0,2.0,1,1,1390.37529593579,1200.0,65824.07095992702,1,1,1,2,120.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02278801627011468,32912.03547996351,8,4,8,8_1,8_2,8_0_0 -16156,2,53.0,0.0,2,111,260.0,70.0,0.0,64,54,0.0,0.0,359.36529916974195,330.0,0.0,126.95570305932142,10,2,1,2,2,1,2,2,2,3,40.0,2,,2,108096,1,1,0,1,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,3,2,406.626468681454,260.0,56519.159267280025,1,1,1,2,73.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005838728039803717,37679.43951152002,9,5,9,9_0,9_2,9_0_1 -16157,2,41.0,0.0,2,111,220.0,800.0,0.0,0,52,0.0,0.0,304.0783300667047,1020.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,2,,2,131528,2,2,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1744.29747566483,220.0,21909.697629964197,0,1,1,2,55.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.046554727373554664,21909.697629964197,6,3,6,6_0,6_2,6_0_1 -16158,1,47.0,121.0,2,111,1090.0,198.0,0.0,56,67,0.0,0.0,1506.5699080577642,1288.0,0.0,359.1032743677949,41,2,1,2,2,1,2,2,2,2,35.0,2,,2,130311,2,2,0,1,1,436.0,0.0,264.0,43,2.0,4.0,4.0,4.0,2.1,1,1,346.768707680003,1090.0,24638.628417238277,4,1,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05227563719004984,11732.680198684893,2,1,2_1,2_0_1,2_2_1,2_0_1 -16160,2,62.0,0.0,2,111,290.0,100.0,0.0,0,42,0.0,0.0,400.8305259970199,390.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,117464,1,2,0,1,2,,0.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,417.076566973678,290.0,29361.246269197894,0,1,1,2,72.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013282814919513095,29361.246269197894,8,4,8,8_0,8_2,8_0_1 -16161,2,47.0,0.0,2,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1609.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,124677,2,2,1,0,1,,452.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,1386.55557495618,0.0,49149.35631182176,0,1,1,2,150.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03273694959079233,24574.67815591088,7,4,7,7_1,7_2,7_0_1 -16162,2,57.0,0.0,2,111,620.0,180.0,0.0,77,68,0.0,0.0,856.9480210970769,800.0,0.0,326.4575221525408,10,2,1,2,2,1,2,2,2,2,10.0,2,,2,105530,2,1,0,1,1,103.0,0.0,281.0,42,2.0,5.0,3.0,3.0,2.0,2,2,404.804763226701,620.0,24095.449773265842,6,1,2,3,116.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.033201289352465566,12047.724886632921,2,1,2_0,2_0_0,2_2_0,2_0_1 -16163,1,29.0,406.0,6,111,90.0,0.0,0.0,0,62,0.0,0.0,124.39568048183375,90.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,108999,2,1,0,0,1,277.0,0.0,417.0,32,1.0,0.0,4.0,3.0,1.6,3,2,375.303167568274,90.0,9000.36655412806,0,4,2,3,81.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009999592734222705,5625.2290963300375,1,1,1_1,1_0_1,1_2_1,1_0_0 -16164,2,84.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,540.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,129492,2,2,0,1,1,,0.0,560.0,11,0.0,0.0,1.0,1.0,1.0,1,1,747.798053116979,0.0,22646.707817441154,0,5,2,3,30.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023844525409742953,22646.707817441154,6,3,6,6_0,6_2,6_0_1 -16165,2,64.0,0.0,2,111,205.0,0.0,0.0,0,74,0.0,0.0,283.3457166530658,205.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,109452,2,1,0,1,1,450.0,0.0,264.0,11,0.0,1.0,3.0,1.0,1.0,2,2,439.364650607483,205.0,37069.67530265571,0,5,2,3,111.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005530126668935608,37069.67530265571,9,5,9,9_0,9_2,9_0_1 -16166,1,54.0,42.0,2,111,550.0,624.0,0.0,77,63,0.0,0.0,760.1958251667618,1174.0,0.0,1131.719410128808,20,0,0,0,0,0,0,0,0,0,,2,,2,116626,2,2,0,1,1,57.0,600.0,337.0,42,4.0,5.0,5.0,5.0,3.0,1,1,419.559091148812,550.0,32567.732512075516,6,1,2,3,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03604795020852933,10855.910837358506,2,1,2_1,2_0_1,2_2_1,2_0_1 -16167,1,55.0,222.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,284.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,30.0,2,,2,110159,2,1,0,1,1,412.0,0.0,281.0,22,2.0,0.0,3.0,2.0,1.5,1,1,362.049119751707,0.0,12814.413785210925,0,1,2,3,60.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02216254327043532,8542.94252347395,1,1,1_1,1_0_1,1_2_1,1_0_1 -16168,2,83.0,0.0,1,111,290.0,1500.0,0.0,0,77,0.0,0.0,400.8305259970199,1790.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,1,,1,102050,2,1,2,0,2,,320.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1634.20824322392,290.0,25767.42687533937,0,5,0,1,120.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06946754942431266,25767.42687533937,7,4,7,7_1,7_2,7_1_0 -16169,2,57.0,0.0,2,111,156.0,78.0,0.0,0,62,0.0,20.703450096389155,215.61917950184517,254.0,0.0,141.464926266101,12,0,0,0,0,0,0,0,0,0,,2,,2,128955,2,1,0,1,1,528.0,0.0,301.0,12,1.0,1.0,4.0,1.0,1.0,1,1,389.675417602763,156.0,21126.234887660317,0,1,2,3,117.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01202296582191082,21126.234887660317,5,3,5,5_0,5_2,5_0_1 -16170,1,45.0,119.0,2,111,520.0,989.0,0.0,85,47,0.0,165.62760077111324,718.7305983394839,1669.0,0.0,1793.702718938127,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,116835,2,1,2,0,1,,213.0,,42,1.0,0.0,5.0,6.0,3.0999999999999996,1,1,282.880619731039,520.0,36887.9153937337,6,1,1,2,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04524516992043198,11899.327546365712,2,1,2_1,2_1_1,2_2_1,2_0_1 -16171,2,82.0,0.0,2,111,170.0,89.0,0.0,0,78,0.0,0.0,234.9696186879082,259.0,0.0,161.41510817542294,10,0,0,0,0,0,0,0,0,0,,2,,2,105794,2,2,0,1,1,,0.0,436.0,11,0.0,0.0,3.0,1.0,1.0,2,2,513.041046005277,170.0,17510.214675617837,0,5,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014791366342335339,17510.214675617837,4,2,4_0,4_0_0,4_2_0,4_0_1 -16172,1,59.0,157.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,575.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,113569,1,1,0,1,1,337.0,0.0,226.0,12,1.0,7.0,2.0,1.0,1.0,2,2,431.125088952765,0.0,11704.546983618611,0,1,2,3,45.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049126207174421656,11704.546983618611,2,1,2_1,2_0_1,2_2_1,2_0_1 -16174,0,38.0,0.0,2,111,208.0,0.0,0.0,0,53,0.0,0.0,287.49223933579356,237.0,49.88948312151556,0.0,31,0,0,0,0,0,0,0,0,2,13.0,2,,2,105332,2,2,0,1,1,720.0,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,396.040710016845,208.0,35300.46114555237,0,1,5,0,72.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006713793313429858,35300.46114555237,9,5,9,9_0,9_2,9_0_1 -16176,1,45.0,255.0,5,111,537.0,83.0,0.0,0,68,0.0,0.0,742.2275602082747,620.0,0.0,150.53319077033825,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,103055,2,1,0,1,1,274.0,0.0,262.0,12,1.0,3.0,3.0,1.0,1.0,2,2,384.821791400749,537.0,10584.359469606547,0,1,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05857699767098399,10584.359469606547,2,1,2_1,2_0_1,2_2_1,2_0_0 -16178,2,85.0,0.0,5,111,56.0,45.0,0.0,0,78,0.0,0.0,77.40175674425211,101.0,0.0,81.6143805381352,70,2,2,1,2,1,2,2,1,0,,2,,3,129772,2,1,0,1,1,512.0,0.0,264.0,11,0.0,0.0,3.0,1.0,1.0,1,1,418.637814191869,56.0,31749.778717949157,0,5,2,3,68.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0031811245330948244,31749.778717949157,8,4,8,8_0,8_2,8_0_0 -16179,2,81.0,0.0,2,111,144.0,126.0,0.0,0,78,0.0,0.0,199.033088770934,270.0,0.0,228.52026550677857,71,0,0,0,0,0,0,0,0,0,,2,,2,117688,2,1,0,1,1,390.0,0.0,221.0,11,0.0,6.0,2.0,1.0,1.0,1,1,384.109605354217,144.0,28806.796493389822,0,5,2,3,40.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00937278812178771,28806.796493389822,8,4,8,8_0,8_2,8_0_1 -16180,2,75.0,0.0,1,111,1900.0,0.0,0.0,0,86,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,41,2,2,1,2,1,2,2,2,0,,1,,1,117168,2,1,1,0,1,,274.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,888.83383332154,1900.0,38562.08794367104,0,5,0,1,130.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04927119098881251,38562.08794367104,9,5,9,9_1,9_2,9_1_0 -16181,2,77.0,0.0,2,111,394.0,2542.0,0.0,0,72,0.0,0.0,544.5766456649167,2936.0,0.0,4610.305673954215,60,0,0,0,0,0,0,0,0,0,,1,,2,102403,2,1,2,0,2,,197.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,277.974439063422,394.0,44608.56521024048,0,5,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06581695659034563,44608.56521024048,10,5,10,10_1,10_2,10_0_1 -16182,2,79.0,0.0,2,111,360.0,0.0,0.0,0,78,4480.754631054002,0.0,497.582721927335,3400.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111169,2,1,2,0,1,,150.0,,11,0.0,2.0,5.0,1.0,1.0,2,1,1003.31192849182,360.0,20685.871090204513,0,5,0,1,120.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16436339495560423,20685.871090204513,5,3,5,5_1,5_2,5_0_1 -16183,2,53.0,0.0,2,111,510.0,1000.0,0.0,0,52,0.0,0.0,704.9088560637246,1510.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,130370,2,1,3,0,1,,912.0,264.0,32,1.0,1.0,3.0,2.0,1.5,4,4,251.475380126744,510.0,23463.914947730394,0,1,2,3,61.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06435413712348367,15642.609965153597,3,2,3_0,3_1_0,3_2_0,3_0_1 -16184,2,79.0,0.0,2,111,503.0,0.0,0.0,0,77,3076.7848466570813,0.0,695.2336364706931,2575.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,110207,2,1,1,0,1,,274.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,953.387138377192,503.0,25124.17797532255,0,5,0,1,119.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10249091542534106,25124.17797532255,7,4,7,7_1,7_2,7_0_1 -16185,2,45.0,0.0,1,111,0.0,0.0,0.0,69,43,0.0,0.0,0.0,2174.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,1,111305,1,1,3,0,2,,344.0,,43,2.0,1.0,2.0,2.0,1.5,1,1,255.722234941741,0.0,24717.820507083878,4,1,0,1,36.0,6,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08795273836449106,16478.547004722586,4,2,4_0,4_1_0,4_2_0,4_1_0 -16186,2,74.0,0.0,2,111,300.0,600.0,0.0,0,77,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,20,0,0,0,0,0,0,0,0,0,,1,,2,128281,2,2,2,0,2,,100.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,981.144871818693,300.0,20577.855338366826,0,5,0,1,80.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04373633623140384,20577.855338366826,5,3,5,5_1,5_2,5_0_1 -16187,2,79.0,0.0,2,111,264.0,300.0,0.0,0,78,770.6897965412884,0.0,364.89399608004567,1080.0,0.0,544.0958702542347,50,1,2,2,1,1,2,2,2,0,,2,,2,105734,2,2,0,1,1,860.0,0.0,250.0,11,0.0,6.0,3.0,1.0,1.0,2,2,343.694102670759,264.0,18619.69380625357,0,5,2,3,48.0,6,4,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05800310205086582,18619.69380625357,4,2,4_0,4_0_0,4_2_0,4_0_1 -16188,2,71.0,0.0,2,111,1200.0,0.0,0.0,86,86,0.0,0.0,1658.6090730911167,1250.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,118072,2,2,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,921.704196934928,1200.0,23868.72899312546,5,5,0,1,84.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05236977638650211,15912.485995416973,3,2,3_0,3_1_0,3_2_0,3_0_1 -16189,1,41.0,671.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,5258.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,116376,2,1,3,0,1,,446.0,895.0,32,2.0,1.0,6.0,8.0,3.6999999999999993,2,2,298.145740390441,0.0,28377.962211506114,0,4,2,3,147.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.18528462194752285,7669.719516623276,1,1,1_1,1_1_1,1_2_1,1_0_1 -16190,1,88.0,168.0,5,111,480.0,300.0,0.0,0,72,0.0,0.0,663.4436292364467,780.0,0.0,544.0958702542347,31,2,1,2,1,1,2,2,2,0,,2,,3,117336,2,2,0,1,1,547.0,0.0,307.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1200.94428125907,480.0,12631.467867456839,0,5,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.06175054302355135,12631.467867456839,2,1,2_1,2_0_1,2_2_1,2_0_0 -16191,1,78.0,88.0,2,111,204.0,390.0,0.0,0,86,0.0,534.1490124868402,281.96354242548983,1110.0,0.0,707.3246313305051,50,0,0,0,0,0,0,0,0,0,,2,,2,107916,2,1,0,1,1,,0.0,245.0,11,0.0,8.0,3.0,1.0,1.0,2,2,343.694102670759,204.0,11620.963302752294,0,5,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0955170385691786,11620.963302752294,2,1,2_1,2_0_1,2_2_1,2_0_1 -16192,1,31.0,410.0,2,111,500.0,80.0,0.0,85,64,0.0,20.703450096389155,691.0871137879653,600.0,0.0,145.09223206779592,10,0,0,0,0,0,0,0,0,0,,2,,2,106362,2,2,0,1,1,864.0,0.0,350.0,42,1.0,0.0,4.0,5.0,2.4,1,1,978.671879112119,500.0,20112.96392510809,6,1,2,3,82.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029831505800643723,8380.401635461705,1,1,1_1,1_0_1,1_2_1,1_0_1 -16193,1,46.0,244.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,221.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121437,2,2,0,1,1,668.0,0.0,200.0,11,0.0,2.0,3.0,1.0,1.0,2,2,322.258441837438,0.0,20353.625481113195,0,7,2,3,55.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010858016435699539,20353.625481113195,5,3,5,5_0,5_2,5_0_1 -16194,1,39.0,433.0,2,111,500.0,200.0,0.0,0,85,0.0,0.0,691.0871137879653,700.0,0.0,362.73058016948977,70,2,2,2,1,1,1,2,2,0,,2,,2,124896,2,2,0,1,1,980.0,0.0,424.0,31,1.0,0.0,5.0,8.0,3.499999999999999,1,1,312.02206594652,500.0,23586.615803050565,0,6,2,3,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.029677848057772908,6739.033086585878,1,1,1_1,1_0_1,1_2_1,1_0_1 -16195,1,60.0,40.0,2,111,530.0,134.0,0.0,0,56,0.0,0.0,732.5523406152432,664.0,0.0,243.02948871355815,71,2,2,2,2,1,2,2,2,3,30.0,2,,2,120355,1,3,0,1,2,552.0,0.0,322.0,12,1.0,3.0,4.0,1.0,1.0,2,2,338.702574835148,530.0,15874.800418937135,0,1,2,3,75.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.041827297507810605,15874.800418937135,3,2,3_1,3_0_1,3_2_1,3_0_1 -16196,1,68.0,29.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,497.582721927335,797.0,0.0,0.0,33,2,1,2,2,1,2,2,2,0,,2,,2,113682,2,2,0,1,1,648.0,0.0,360.0,11,0.0,5.0,4.0,1.0,1.0,1,1,397.781454580319,360.0,15896.488899828166,0,5,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05013685758045698,15896.488899828166,3,2,3_1,3_0_1,3_2_1,3_0_1 -16197,1,72.0,215.0,2,111,144.0,133.0,0.0,0,75,0.0,656.2993680555362,199.033088770934,942.0,53.330137129895945,241.2158358127107,42,0,0,0,0,0,0,0,0,0,,2,,2,113746,2,1,0,1,1,634.0,0.0,253.0,11,0.0,0.0,3.0,1.0,1.0,2,1,332.006084334245,144.0,9876.075455137907,0,5,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09538201730829589,9876.075455137907,2,1,2_1,2_0_1,2_2_1,2_0_1 -16198,2,63.0,0.0,1,111,400.0,400.0,0.0,22,22,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,20,0,0,0,0,0,0,0,0,0,,1,,1,124710,2,2,4,0,1,,160.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,270.911021997955,400.0,23206.59787670284,1,1,0,1,70.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034472954814420344,11603.29893835142,2,1,2_0,2_1_0,2_2_0,2_1_0 -16199,1,36.0,444.0,5,111,400.0,0.0,0.0,0,43,0.0,0.0,552.8696910303722,520.0,206.439240502823,0.0,70,1,2,2,2,1,2,2,2,0,,2,,3,118379,1,3,0,1,1,500.0,0.0,406.0,32,1.0,0.0,6.0,4.0,2.1,2,2,299.367947977751,400.0,17064.166289298762,0,4,2,3,85.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.030473214523589184,8125.793471094648,1,1,1_1,1_0_1,1_2_1,1_0_0 -16200,1,71.0,194.0,2,111,240.0,160.0,0.0,0,77,0.0,0.0,331.72181461822333,460.0,103.2196202514115,290.18446413559184,50,2,1,2,2,1,2,2,2,0,,2,,2,113228,2,2,0,1,1,657.0,0.0,332.0,11,0.0,3.0,4.0,1.0,1.0,5,4,340.620145770637,240.0,17201.43461948058,0,5,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.026741955550559207,17201.43461948058,4,2,4_1,4_0_1,4_2_1,4_0_1 -16201,2,42.0,0.0,6,111,798.0,0.0,0.0,52,63,0.0,0.0,1102.9750336055927,798.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,30.0,2,,4,129824,2,1,0,1,1,,0.0,,43,2.0,1.0,5.0,5.0,2.6,1,1,339.64005253413,798.0,39055.43032144959,1,1,1,2,115.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0204324979505278,15021.319354403688,3,2,3_0,3_0_0,3_2_0,3_0_0 -16202,2,82.0,0.0,2,111,220.0,363.0,0.0,0,77,0.0,558.9931526025072,304.0783300667047,1123.0,0.0,658.3560030076239,50,2,1,2,1,2,2,2,2,0,,2,,2,108386,2,2,0,1,1,540.0,0.0,289.0,11,0.0,4.0,4.0,1.0,1.0,1,1,366.415573092872,220.0,22725.220174794144,0,5,2,3,114.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.049416462914871305,22725.220174794144,6,3,6,6_0,6_2,6_0_1 -16203,2,64.0,0.0,2,111,221.0,87.0,0.0,0,75,1179.9320528442206,0.0,305.46050429428067,1566.0,0.0,157.78780237372806,44,0,0,0,0,0,0,0,0,0,,2,,2,105649,2,1,0,1,1,805.0,0.0,250.0,11,0.0,2.0,4.0,1.0,1.0,2,2,350.913839343918,221.0,22479.612138448134,0,5,2,3,60.0,6,4,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06966312364978855,22479.612138448134,6,3,6,6_0,6_2,6_0_1 -16204,1,45.0,309.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,538.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,103936,2,1,0,1,1,1152.0,0.0,272.0,31,0.0,1.0,4.0,3.0,1.6,2,2,381.750210523998,0.0,9998.515555555556,0,7,2,3,121.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053807987496810636,6249.072222222222,1,1,1_1,1_0_1,1_2_1,1_0_0 -16205,2,26.0,0.0,2,111,288.0,0.0,0.0,0,43,0.0,241.19519362293366,398.066177541868,521.0,0.0,0.0,12,2,2,1,2,1,1,1,2,2,7.0,2,,2,103615,1,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,1,1371.29244526351,288.0,27615.6659378966,0,1,1,2,58.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018866103072496934,27615.6659378966,7,4,7,7_0,7_2,7_0_1 -16206,1,59.0,254.0,2,111,82.0,96.0,0.0,0,85,0.0,0.0,113.3382866612263,178.0,0.0,174.11067848135508,43,0,0,0,0,0,0,0,0,0,,2,,2,122670,2,1,0,1,1,365.0,0.0,245.0,11,0.0,0.0,2.0,1.0,1.0,2,2,383.803437771131,82.0,5295.143419519913,0,6,2,3,50.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03361570894261793,5295.143419519913,1,1,1_1,1_0_1,1_2_1,1_0_1 -16207,2,62.0,0.0,2,111,400.0,3054.0,0.0,75,74,0.0,0.0,552.8696910303722,3454.0,0.0,5538.895959188109,71,0,0,0,0,0,0,0,0,0,,1,,2,107828,2,2,2,0,1,,350.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,276.377028350721,400.0,51801.747091029116,5,5,0,1,150.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06667728781290765,34534.49806068608,9,5,9,9_1,9_2,9_0_1 -16208,1,67.0,337.0,2,111,200.0,200.0,0.0,85,78,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,0,,2,,2,106417,2,1,0,1,1,579.0,0.0,392.0,41,0.0,7.0,5.0,4.0,2.5,4,4,299.367947977751,200.0,13850.759338048854,6,5,2,3,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02887928309469477,5540.3037352195415,1,1,1_1,1_0_1,1_2_1,1_0_1 -16209,2,41.0,0.0,1,111,732.0,1858.0,0.0,52,42,0.0,0.0,1011.7515345855811,2590.0,0.0,3369.76708977456,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,119671,1,2,1,0,1,,529.0,,43,2.0,0.0,9.0,5.0,2.4,3,3,249.152005051669,732.0,66413.5887546741,1,1,1,2,210.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038998043149982904,27672.328647780876,7,4,7,7_1,7_2,7_1_0 -16210,2,57.0,0.0,2,111,460.0,0.0,0.0,77,63,0.0,0.0,635.800144684928,680.0,129.02452531426437,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,132023,2,1,0,1,1,698.0,0.0,424.0,42,2.0,4.0,5.0,3.0,2.0,1,1,374.608874010911,460.0,52380.82191010514,5,1,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012981850517103408,26190.41095505257,7,4,7,7_0,7_2,7_0_1 -16211,1,64.0,300.0,2,111,300.0,240.0,0.0,78,78,0.0,963.7456019869152,414.65226827277917,1471.0,0.0,435.27669620338776,50,0,0,0,0,0,0,0,0,0,,2,,2,105155,2,2,0,1,1,936.0,0.0,296.0,41,0.0,2.0,4.0,2.0,1.5,2,2,358.808230877356,300.0,14980.007290850766,5,5,2,3,98.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09819754900242487,9986.671527233844,2,1,2_1,2_0_1,2_2_1,2_0_1 -16212,2,66.0,0.0,2,111,216.0,0.0,0.0,0,78,0.0,620.0683303868552,298.549633156401,885.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113186,2,1,0,1,1,599.0,0.0,366.0,11,0.0,5.0,5.0,1.0,1.0,1,1,351.892859095636,216.0,21597.887288135717,0,5,2,3,72.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040976230137387264,21597.887288135717,6,3,6,6_0,6_2,6_0_1 -16213,2,67.0,0.0,2,111,360.0,0.0,0.0,75,75,0.0,724.6207533736205,497.582721927335,1060.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,126540,2,2,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1175.43781630673,360.0,37769.98962075166,5,5,0,1,65.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028064609247803785,25179.993080501106,7,4,7,7_0,7_2,7_0_1 -16214,2,54.0,0.0,2,111,180.0,75.0,0.0,0,52,0.0,517.5862524097289,248.7913609636675,755.0,0.0,136.02396756355867,70,0,0,0,0,0,0,0,0,1,20.0,2,,2,124877,2,1,0,1,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1322.60547952441,180.0,24926.88021393957,0,1,0,1,62.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030288587802407382,24926.88021393957,7,4,7,7_0,7_2,7_0_1 -16215,1,55.0,164.0,2,111,250.0,150.0,0.0,0,68,0.0,0.0,345.54355689398267,400.0,0.0,272.04793512711734,43,0,0,0,0,0,0,0,0,1,30.0,2,,2,109345,2,2,0,1,1,736.0,210.0,306.0,12,1.0,6.0,3.0,1.0,1.0,1,1,343.694102670759,250.0,8191.746253331579,0,1,2,3,60.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04882963749485285,8191.746253331579,1,1,1_1,1_0_1,1_2_1,1_0_1 -16216,2,66.0,0.0,2,111,275.0,120.0,0.0,63,75,0.0,0.0,380.0979125833809,711.0,0.0,217.63834810169388,70,0,0,0,0,0,0,0,0,0,,2,,2,132000,1,2,0,1,2,850.0,518.0,505.0,42,1.0,2.0,3.0,2.0,1.5,3,3,1382.72670730387,275.0,28364.69423904654,1,5,2,3,75.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025066372794572377,18909.79615936436,5,3,5,5_0,5_2,5_0_1 -16217,1,49.0,165.0,2,111,120.0,0.0,0.0,0,63,0.0,0.0,165.86090730911167,120.0,0.0,0.0,10,2,1,2,1,2,1,2,2,0,,2,,2,129701,2,1,0,1,1,312.0,0.0,150.0,12,1.0,1.0,1.0,1.0,1.0,1,1,338.278142964848,120.0,7937.668076385646,0,4,2,3,30.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.015117790117351575,7937.668076385646,1,1,1_1,1_0_1,1_2_1,1_0_1 -16218,1,62.0,158.0,2,111,200.0,0.0,0.0,0,72,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115812,2,1,0,1,1,748.0,0.0,213.0,11,0.0,4.0,2.0,1.0,1.0,4,3,421.293238630943,200.0,9882.574514928121,0,5,2,3,45.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02023764148683018,9882.574514928121,2,1,2_1,2_0_1,2_2_1,2_0_1 -16219,2,34.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1966.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,114012,2,2,0,1,1,,118.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1281.14712205737,0.0,14878.184551993663,0,1,0,1,50.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13213977774839186,14878.184551993663,3,2,3_0,3_0_0,3_2_0,3_0_1 -16220,1,47.0,268.0,2,111,0.0,0.0,0.0,56,62,0.0,0.0,0.0,465.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,120880,1,2,0,1,1,736.0,0.0,272.0,43,2.0,1.0,3.0,4.0,2.3,2,2,300.815976556831,0.0,24840.640669898887,4,1,2,3,60.0,5,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018719323957029518,10800.278552129952,2,1,2_1,2_0_1,2_2_1,2_0_1 -16221,2,49.0,0.0,2,111,228.0,72.0,0.0,56,63,0.0,0.0,315.13572388731217,817.0,0.0,130.5830088610163,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,132896,2,1,0,1,2,,0.0,,43,2.0,3.0,2.0,3.0,1.8,1,1,1574.04255295453,228.0,44532.9976652166,1,1,1,2,52.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01834594666503069,24740.554258453667,7,4,7,7_0,7_2,7_0_1 -16222,1,22.0,275.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,158.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,13.0,2,,3,113976,1,3,0,1,1,1056.0,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1464.45192398402,0.0,13756.802523754439,0,2,2,3,32.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01148522701602897,13756.802523754439,3,2,3_1,3_0_1,3_2_1,3_0_0 -16223,2,51.0,0.0,2,111,603.0,1865.0,0.0,56,47,0.0,51.75862524097289,833.4510592282861,2518.0,0.0,3382.4626600804922,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,120322,2,2,3,0,1,,280.0,,43,2.0,2.0,6.0,4.0,2.3,5,4,802.121554382006,603.0,46920.57217562464,1,1,1,2,128.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05366515972088055,20400.248772010716,5,3,5,5_1,5_2,5_0_1 -16224,1,51.0,429.0,2,111,251.0,108.0,0.0,0,52,0.0,0.0,346.92573112155856,1286.0,0.0,195.8745132915245,31,2,2,2,2,1,2,2,2,0,,2,,2,129579,1,3,0,1,2,,0.0,500.0,32,1.0,0.0,2.0,3.0,1.8,1,1,1479.74766229125,251.0,9665.438358355554,0,4,2,3,60.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.13305138911659212,5369.687976864197,1,1,1_1,1_0_1,1_2_1,1_0_1 -16225,2,28.0,0.0,9,111,930.0,850.0,0.0,56,52,0.0,0.0,1285.4220316456153,1780.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,2,7.0,1,2008.0,6,102190,1,2,1,0,1,,784.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,809.962484477038,930.0,40552.11909334844,1,1,1,2,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043894130314190274,16896.716288895183,4,2,4_0,4_1_0,4_2_0,4_0_0 -16226,1,28.0,170.0,2,111,120.0,0.0,0.0,0,34,0.0,558.9931526025072,165.86090730911167,660.0,0.0,0.0,44,2,2,2,2,1,2,2,2,2,7.0,2,,2,131484,1,2,0,1,2,540.0,0.0,365.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1445.12694635626,120.0,16563.84928106877,0,1,2,3,23.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.039845810523905824,16563.84928106877,4,2,4_1,4_0_1,4_2_1,4_0_1 -16227,2,24.0,0.0,2,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,252.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,112111,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1189.91782772548,0.0,33566.40748068058,1,1,1,2,63.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0075075058343685025,22377.604987120387,6,3,6,6_0,6_2,6_0_1 -16228,2,62.0,0.0,2,111,236.0,0.0,0.0,0,63,0.0,0.0,326.1931177079196,236.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,8.0,2,,2,104244,2,1,0,1,1,1428.0,0.0,450.0,32,1.0,0.0,4.0,2.0,1.5,2,2,1524.84646629125,236.0,34145.098893014714,0,1,2,3,80.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006911680084437538,22763.39926200981,6,3,6,6_0,6_2,6_0_1 -16229,1,38.0,400.0,2,111,510.0,0.0,0.0,0,85,0.0,0.0,704.9088560637246,510.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,126987,1,3,0,1,2,1310.0,0.0,419.0,31,0.0,0.0,4.0,4.0,1.9,1,1,1069.49261392447,510.0,12332.147067813667,0,6,2,3,90.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.041355329059533874,6490.60371990193,1,1,1_1,1_0_1,1_2_1,1_0_1 -16230,1,77.0,223.0,5,111,280.0,0.0,0.0,0,78,0.0,398.54141435549127,387.00878372126056,725.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,119396,2,1,0,1,1,,0.0,383.0,11,0.0,5.0,3.0,1.0,1.0,1,1,1200.94428125907,280.0,9863.603280062529,0,5,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07350255068200634,9863.603280062529,2,1,2_1,2_0_1,2_2_1,2_0_0 -16231,1,44.0,240.0,7,111,144.0,30.0,0.0,0,56,0.0,445.1241770723668,199.033088770934,604.0,0.0,54.40958702542347,50,0,0,0,0,0,0,0,0,0,,2,,5,107358,2,1,0,1,1,440.0,0.0,335.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1737.32994967274,144.0,1855.7723185312798,0,1,2,3,30.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.325470961048727,1855.7723185312798,1,1,1_1,1_0_1,1_2_1,1_0_0 -16232,0,83.0,0.0,5,111,500.0,0.0,0.0,86,77,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,130309,1,2,0,1,2,500.0,0.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1320.45932482821,500.0,28221.19560960615,5,5,5,0,92.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017717179913873178,18814.1304064041,5,3,5,5_0,5_2,5_0_0 -16233,2,65.0,0.0,5,111,350.0,0.0,0.0,75,74,0.0,952.3587044339012,483.76097965157567,1330.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,106850,2,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1180.61641575224,350.0,48513.42200058868,5,5,0,1,98.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027415093496885486,32342.281333725787,8,4,8,8_0,8_2,8_0_0 -16234,1,26.0,200.0,9,111,530.0,0.0,0.0,0,46,0.0,0.0,732.5523406152432,661.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,103905,2,1,0,1,1,439.0,0.0,566.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1244.73227146653,530.0,29020.851126610523,0,1,2,3,53.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022776726882207096,22323.73163585425,6,3,6,6_0,6_2,6_0_0 -16235,2,57.0,0.0,7,111,400.0,0.0,0.0,34,34,0.0,879.8966290965391,552.8696910303722,1250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,,5,113227,2,1,1,0,1,,531.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,885.576128735643,400.0,204760.0900946005,1,1,1,2,180.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0061047052646953405,81904.03603784021,10,5,10,10_1,10_2,10_0_0 -16236,2,60.0,0.0,7,111,500.0,1100.0,0.0,46,77,0.0,0.0,691.0871137879653,1600.0,0.0,1995.0181909321939,60,0,0,0,0,0,0,0,0,0,,1,,5,117844,1,3,3,0,1,,400.0,572.0,42,1.0,2.0,5.0,2.0,1.5,2,2,827.238681807721,500.0,26971.403622889437,1,5,2,3,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05932208877116617,17980.935748592958,4,2,4_0,4_1_0,4_2_0,4_0_0 -16237,2,31.0,0.0,7,111,540.0,1000.0,0.0,56,48,0.0,0.0,746.3740828910024,1540.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,104833,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,750.91805308106,540.0,30888.4786483431,1,1,1,2,110.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04985677726418577,14708.799356353857,3,2,3_0,3_1_0,3_2_0,3_0_0 -16238,2,79.0,0.0,2,111,600.0,0.0,0.0,0,77,5974.339508072003,0.0,829.3045365455583,4681.0,139.3464873394055,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130585,2,1,2,0,2,,200.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,945.830929965432,600.0,29347.87121508092,0,5,0,1,140.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1595004954769798,29347.87121508092,8,4,8,8_1,8_2,8_0_1 -16239,1,48.0,100.0,7,111,1080.0,0.0,0.0,81,56,0.0,0.0,1492.748165782005,1380.0,516.0981012570575,0.0,31,2,2,2,2,1,2,2,2,2,30.0,2,,5,124493,2,3,0,0,1,,0.0,300.0,43,2.0,0.0,3.0,3.0,1.8,3,3,1111.79874821606,1080.0,12570.716778201195,4,1,2,3,65.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,1,0,1,0.1097789429472351,6983.731543445108,1,1,1_1,1_0_1,1_2_1,1_0_0 -16240,1,44.0,243.0,6,111,700.0,0.0,0.0,0,52,0.0,0.0,967.5219593031513,728.0,48.169156117325365,0.0,71,2,2,2,2,1,1,1,2,0,,2,,4,121082,2,3,0,0,1,,0.0,242.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1128.55717067726,700.0,8993.842387876844,0,4,2,3,48.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,1,0,1,0.08094426926819398,8993.842387876844,1,1,1_1,1_0_1,1_2_1,1_0_0 -16241,2,67.0,0.0,2,111,351.0,120.0,0.0,77,78,0.0,0.0,485.1431538791516,471.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,2,123518,1,1,0,1,1,888.0,0.0,344.0,41,0.0,3.0,4.0,2.0,1.5,5,4,339.591049188996,351.0,30313.078727235436,5,5,2,3,100.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015537847680803862,20208.71915149029,5,3,5,5_0,5_2,5_0_1 -16242,1,65.0,243.0,2,111,290.0,0.0,0.0,0,78,0.0,0.0,400.8305259970199,290.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113225,2,1,0,1,1,,0.0,513.0,11,0.0,2.0,3.0,1.0,1.0,2,2,392.821925333924,290.0,9753.95976114351,0,5,2,3,73.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029731514902825655,9753.95976114351,2,1,2_1,2_0_1,2_2_1,2_0_1 -16243,2,74.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,379.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,106723,2,1,0,1,1,574.0,0.0,494.0,11,0.0,3.0,3.0,1.0,1.0,1,1,354.647231116542,300.0,20110.01362576814,0,5,2,3,73.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018846332332384155,20110.01362576814,5,3,5,5_0,5_2,5_0_1 -16244,2,29.0,0.0,2,111,590.0,0.0,0.0,68,62,0.0,0.0,815.482794269799,590.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,10.0,2,,2,122543,2,1,0,1,1,840.0,0.0,381.0,43,2.0,0.0,4.0,4.0,2.1,1,1,315.483134416647,590.0,33828.298224523816,1,1,2,3,77.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017441019234372235,16108.713440249436,4,2,4_0,4_0_0,4_2_0,4_0_1 -16245,2,80.0,0.0,2,221,780.0,0.0,0.0,77,75,2240.377315527001,0.0,1078.0958975092258,2280.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106076,2,2,3,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,4,2,920.305191670384,780.0,37065.246159033224,5,5,0,1,84.0,1,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061513148738237586,24710.16410602215,7,4,7,7_1,7_1,7_0_1 -16246,2,41.0,0.0,9,221,500.0,0.0,0.0,0,21,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,2008.0,6,106111,2,1,0,0,1,,0.0,450.0,12,1.0,1.0,4.0,1.0,1.0,2,2,1137.34527183425,500.0,34610.09340383789,0,1,2,3,150.0,1,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014446652719653029,34610.09340383789,9,5,9,9_0,9_1,9_0_0 -16247,1,31.0,176.0,7,221,1176.0,0.0,0.0,55,62,0.0,0.0,1625.4368916292942,1236.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,112768,2,2,5,0,1,,584.0,459.0,43,2.0,1.0,4.0,4.0,2.1,1,1,799.776344446007,1176.0,33772.0,4,1,2,3,82.0,1,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.036598365509889846,16081.904761904761,4,2,4_1,4_1_1,4_1_1,4_0_0 -16248,2,50.0,0.0,7,221,0.0,0.0,0.0,46,21,0.0,0.0,0.0,60.0,103.2196202514115,0.0,44,2,2,2,1,1,2,2,2,0,,2,,5,113713,1,2,0,0,2,,0.0,569.0,43,3.0,4.0,3.0,3.0,2.0,1,1,1085.85032989037,0.0,17450.386462492883,4,1,2,3,110.0,1,1,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.0034383192675395153,8725.193231246441,1,1,1_0,1_0_0,1_1_0,1_0_0 -16250,2,59.0,0.0,5,221,1544.0,0.0,0.0,68,64,0.0,0.0,2134.077007377237,1574.0,51.60981012570575,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,3,100783,2,1,2,0,1,,202.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,921.715630131245,1544.0,30168.85638681138,1,1,0,1,93.0,1,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05217300847665177,20112.57092454092,5,3,5,5_1,5_1,5_0_0 -16251,2,86.0,0.0,1,221,1700.0,0.0,0.0,77,78,0.0,0.0,2349.696186879082,1790.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,130304,2,1,2,0,1,,776.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,917.283514922063,1700.0,24049.9432710676,5,5,0,1,172.0,1,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0744284499894598,16033.295514045067,4,2,4_0,4_1_0,4_1_0,4_1_0 -16252,2,98.0,0.0,2,221,500.0,0.0,0.0,0,78,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,120061,1,3,4,0,2,,190.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,923.588639012833,500.0,9627.17680718174,0,5,0,1,45.0,1,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.051936305940388144,9627.17680718174,1,1,1_0,1_1_0,1_1_0,1_0_1 -16253,1,45.0,230.0,1,120,970.0,0.0,0.0,21,68,0.0,0.0,1340.7090007486527,1120.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109997,2,1,4,0,1,,300.0,,43,3.0,1.0,5.0,5.0,2.8,3,3,760.142664174631,970.0,19239.915107141635,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05821231506288034,6871.398252550584,1,1,1_1,1_1_1,1_0_1,1_1_0 -16254,2,67.0,0.0,5,112,720.0,0.0,0.0,77,75,1194.8679016144006,600.4000527952855,995.16544385467,2220.0,206.439240502823,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,128727,2,1,2,0,1,,340.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,830.491130284086,720.0,32194.614680658393,7,5,0,1,106.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06895563192851979,21463.07645377226,6,3,6,6_1,6_0,6_0_0 -16255,2,54.0,0.0,1,112,700.0,0.0,0.0,0,68,2240.377315527001,0.0,967.5219593031513,2200.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,127524,2,1,3,0,1,,130.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,846.985590432169,700.0,16494.983462868666,0,1,0,1,110.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0.13337388333564262,16494.983462868666,4,2,4_0,4_1_0,4_0_0,4_1_0 -16256,2,35.0,0.0,5,112,0.0,0.0,0.0,38,46,0.0,486.53107726514514,0.0,1797.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,118326,2,1,1,0,1,,426.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,861.178530920264,0.0,69224.88870276872,1,1,1,2,150.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02595887163814432,38458.27150153818,9,5,9,9_1,9_0,9_0_0 -16257,1,28.0,49.0,6,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,2129.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,108562,2,1,1,0,1,,305.0,,43,2.0,0.0,9.0,7.0,2.9999999999999996,2,2,750.703327178996,0.0,48298.77373083025,1,1,1,2,168.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04407979407230807,16099.591243610086,4,2,4_1,4_1_1,4_0_1,4_0_0 -16258,2,31.0,0.0,8,112,0.0,0.0,0.0,46,52,0.0,0.0,0.0,442.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,102351,2,1,2,0,1,,560.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,674.222431173557,0.0,41931.03002466546,1,1,1,2,100.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010541119541780835,19967.1571546026,5,3,5,5_1,5_0,5_0_0 -16259,2,36.0,0.0,9,112,1800.0,0.0,0.0,62,52,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,128470,2,2,1,0,1,,300.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,1,1,771.79398577797,1800.0,51202.220392010604,1,1,1,2,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035154725443915805,18963.7853303743,5,3,5,5_1,5_0,5_0_0 -16260,2,75.0,0.0,5,112,800.0,0.0,0.0,0,75,0.0,0.0,1105.7393820607444,850.0,86.01635020950958,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,108754,2,1,2,0,1,,250.0,,21,1.0,4.0,6.0,2.0,1.5,3,3,787.394336372504,800.0,22190.65898946488,0,5,0,1,110.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038304405488973604,14793.772659643253,3,2,3_0,3_1_0,3_0_0,3_0_0 -16261,2,61.0,0.0,1,112,1748.0,0.0,0.0,78,78,224.0377315527001,310.55175144583734,2416.0405498027267,2288.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132810,2,1,2,0,1,,376.0,,41,0.0,2.0,6.0,2.0,1.5,2,1,825.57111023422,1748.0,44155.28762935944,5,5,0,1,200.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051817123675097033,29436.85841957296,8,4,8,8_1,8_0,8_1_0 -16262,2,59.0,0.0,1,112,500.0,0.0,0.0,85,63,0.0,310.55175144583734,691.0871137879653,940.0,240.84578058662683,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,124178,2,2,1,0,1,,400.0,520.0,42,3.0,1.0,6.0,4.0,2.5,2,2,873.228691360725,500.0,30639.55398128197,6,1,2,3,100.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030679297765700376,12255.821592512788,2,1,2_0,2_1_0,2_0_0,2_1_0 -16263,2,70.0,0.0,2,112,450.0,0.0,0.0,78,78,1941.6603401234008,0.0,621.9784024091688,1930.0,309.6588607542345,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,112857,2,1,3,0,1,,420.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,733.813372761091,450.0,34056.26183583394,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05667092910265499,22704.174557222625,6,3,6,6_1,6_0,6_0_1 -16264,2,62.0,0.0,7,112,1300.0,0.0,0.0,22,46,0.0,155.27587572291867,1796.8264958487098,1550.0,172.03270041901916,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,110803,2,1,2,0,1,,400.0,,42,1.0,5.0,6.0,2.0,1.5,2,2,769.866545028676,1300.0,49817.67383599902,1,5,0,1,89.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031113455941412224,33211.78255733268,8,4,8,8_1,8_0,8_0_0 -16265,2,49.0,0.0,7,112,800.0,0.0,0.0,42,31,2613.773534781501,51.75862524097289,1105.7393820607444,2700.0,172.03270041901916,0.0,70,2,2,2,2,1,2,2,2,0,,1,,5,103404,1,2,3,0,1,,630.0,600.0,43,2.0,2.0,5.0,3.0,2.0,1,1,960.130443371364,800.0,91633.35120620014,1,1,2,3,160.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.029465254347451078,45816.67560310007,10,5,10,10_1,10_0,10_0_0 -16266,0,54.0,0.0,1,112,840.0,0.0,0.0,0,62,1792.3018524216009,0.0,1161.0263511637818,2080.0,68.81308016760767,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,100891,2,2,2,0,1,,420.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,915.343456580536,840.0,26129.158221849793,0,1,5,0,80.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07960455451108474,26129.158221849793,7,4,7,7_1,7_0,7_1_0 -16267,2,76.0,0.0,1,112,173.0,0.0,0.0,0,72,0.0,0.0,239.116141370636,293.0,206.439240502823,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,128338,1,2,4,0,2,,185.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,833.773905449492,173.0,13935.716092338942,0,5,0,1,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.021025112599780547,13935.716092338942,3,2,3_0,3_1_0,3_0_0,3_1_0 -16268,1,31.0,70.0,9,112,1100.0,0.0,0.0,45,64,448.0754631054002,0.0,1520.3916503335236,1460.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,100300,2,2,3,0,1,,520.0,550.0,43,2.0,0.0,4.0,4.0,2.1,2,2,716.85234216592,1100.0,37200.761380481985,1,1,2,3,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03924650856113966,17714.648276419994,4,2,4_1,4_1_1,4_0_1,4_0_0 -16269,2,30.0,0.0,6,112,1270.0,0.0,0.0,54,62,0.0,538.289702506118,1755.3612690214318,1854.0,110.10092826817227,0.0,71,2,1,2,2,2,2,2,1,2,30.0,1,,4,107218,1,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,733.807520024531,1270.0,45876.69215046749,1,1,1,2,79.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04041267827068276,21846.043881174995,6,3,6,6_1,6_0,6_0_0 -16270,2,66.0,0.0,5,112,1520.0,0.0,0.0,77,75,2861.7086243664894,0.0,2100.904825915414,3436.0,0.0,0.0,31,2,2,2,2,1,1,2,2,0,,1,,3,106736,2,2,3,0,2,,459.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,803.943655831609,1520.0,26585.93602908566,5,5,0,1,96.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.1292412648642851,17723.957352723774,4,2,4_0,4_1_0,4_0_0,4_0_0 -16271,2,70.0,0.0,2,112,1452.0,0.0,0.0,77,78,0.0,517.5862524097289,2006.9169784402511,1952.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102894,2,1,2,0,1,,516.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,849.522412225839,1452.0,36700.817438286125,6,5,0,1,85.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05318682624119654,24467.211625524084,7,4,7,7_1,7_0,7_0_1 -16272,2,56.0,0.0,6,112,1400.0,0.0,0.0,78,45,0.0,362.31037668681023,1935.0439186063027,1870.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,118850,2,1,1,0,1,,800.0,,42,2.0,1.0,6.0,4.0,2.5,2,2,655.679023197208,1400.0,48303.011223172296,6,1,0,1,89.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038713942519237994,19321.20448926892,5,3,5,5_1,5_0,5_0_0 -16273,2,76.0,0.0,5,112,474.0,0.0,0.0,0,72,2878.1380580136874,0.0,655.1505838709911,2461.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,101221,2,1,2,0,1,,300.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,921.636731171734,474.0,19636.60367350806,0,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12532717169009017,19636.60367350806,5,3,5,5_1,5_0,5_0_0 -16274,1,37.0,338.0,1,112,0.0,0.0,0.0,52,47,0.0,0.0,0.0,884.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105797,2,1,1,0,2,,603.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1096.83764775653,0.0,17547.645654770564,1,1,1,2,57.0,8,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05037712849869821,9748.69203042809,2,1,2_1,2_1_1,2_0_1,2_1_0 -16275,2,77.0,0.0,1,112,454.0,0.0,0.0,86,75,0.0,0.0,627.5070993194724,454.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112004,2,1,2,0,1,,220.0,,41,0.0,6.0,5.0,2.0,1.5,1,1,723.047675518035,454.0,29481.392934245872,5,5,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015399543739760994,19654.261956163915,5,3,5,5_1,5_0,5_1_0 -16276,2,62.0,0.0,5,112,1156.0,0.0,0.0,0,75,0.0,0.0,1597.7934070777758,1186.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111279,2,1,1,0,1,,280.0,,11,0.0,2.0,5.0,1.0,1.0,4,4,785.21731961595,1156.0,33611.78707037138,0,5,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03528524078523195,33611.78707037138,9,5,9,9_1,9_0,9_0_0 -16277,2,48.0,0.0,5,112,1418.0,0.0,0.0,56,43,746.7924385090004,0.0,1959.9230547026696,2038.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,123920,2,3,3,0,1,,246.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,729.26024534232,1418.0,40040.53641591554,1,1,1,2,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0508984190129362,16016.214566366218,4,2,4_0,4_1_0,4_0_0,4_0_0 -16278,2,56.0,0.0,5,112,0.0,0.0,0.0,74,43,2031.275432744481,0.0,0.0,1751.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,127942,2,2,1,0,1,,400.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,832.822781880034,0.0,76809.4781159684,5,1,0,1,120.0,8,0,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022796665762476697,51206.31874397894,10,5,10,10_1,10_0,10_0_0 -16279,2,31.0,0.0,1,112,1300.0,0.0,0.0,54,47,0.0,51.75862524097289,1796.8264958487098,1375.0,43.00817510475479,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,130556,2,1,3,0,1,,467.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,732.440825469584,1300.0,42407.3566208622,1,1,1,2,85.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03242361961612038,28271.5710805748,8,4,8,8_1,8_0,8_1_0 -16280,2,66.0,0.0,5,112,1450.0,0.0,0.0,0,78,0.0,0.0,2004.1526299850993,1460.0,17.203270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131836,2,1,3,0,1,,80.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,846.062860631056,1450.0,26297.035885551548,0,5,1,2,92.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055519565260287444,26297.035885551548,7,4,7,7_1,7_0,7_0_0 -16281,2,72.0,0.0,1,112,300.0,0.0,0.0,78,78,1792.3018524216009,0.0,414.65226827277917,1872.0,639.9616455587513,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115769,2,2,1,0,1,,250.0,,41,0.0,0.0,3.0,2.0,1.5,4,4,916.317287592097,300.0,26406.729967214153,5,5,0,1,75.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07089101915777615,17604.486644809436,4,2,4_0,4_1_0,4_0_0,4_1_0 -16282,2,44.0,0.0,9,112,930.0,0.0,0.0,0,64,0.0,0.0,1285.4220316456153,930.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,113178,2,1,1,0,1,,112.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,806.336164387407,930.0,32066.45003791411,0,1,1,2,73.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029002274929105173,32066.45003791411,8,4,8,8_1,8_0,8_0_0 -16283,1,28.0,230.0,9,112,900.0,0.0,0.0,56,55,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,130837,2,1,1,0,1,,480.0,709.0,43,2.0,0.0,6.0,4.0,2.1,1,1,877.248723954553,900.0,36769.79021398345,1,1,2,3,123.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024476615035397525,17509.42391142069,4,2,4_1,4_1_1,4_0_1,4_0_0 -16284,2,36.0,0.0,9,112,910.0,0.0,0.0,54,62,0.0,36.23103766868102,1257.778547094097,945.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,122588,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,764.505363036055,910.0,47336.56961353735,1,1,1,2,98.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019963423790847493,22541.223625493974,6,3,6,6_1,6_0,6_0_0 -16285,2,34.0,0.0,9,112,1400.0,0.0,0.0,43,38,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,104242,2,1,1,0,1,,200.0,407.0,43,2.0,0.0,3.0,3.0,1.8,2,2,782.874928356302,1400.0,58419.00335735404,1,1,2,3,70.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023964804593397122,32455.00186519669,8,4,8,8_1,8_0,8_0_0 -16286,0,67.0,0.0,1,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,585.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,3,,1,132519,2,1,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1060.61914256469,0.0,25153.0,0,5,5,0,86.0,5,4,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02325766310181688,25153.0,7,4,7,7_0,7_2,7_1_0 -16287,0,84.0,0.0,1,111,920.0,0.0,0.0,0,71,0.0,1552.7587572291866,1271.600289369856,3920.0,2580.4905062852877,0.0,31,2,2,2,2,1,2,2,1,0,,1,,1,118834,1,3,4,0,1,,210.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,950.755886795117,920.0,14537.05194379938,0,5,0,1,55.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.26965577444139444,14537.05194379938,3,2,3_0,3_1_0,3_2_0,3_1_0 -16288,2,71.0,0.0,2,111,1200.0,0.0,0.0,77,71,0.0,621.1035028916747,1658.6090730911167,2040.0,412.878481005646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,125725,2,1,2,0,1,,140.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,985.305886359678,1200.0,16586.772049444044,5,5,0,1,126.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12298957228801953,11057.848032962696,2,1,2_0,2_1_0,2_2_0,2_0_1 -16289,2,46.0,0.0,8,111,850.0,0.0,0.0,64,43,0.0,828.1380038555662,1174.848093439541,2050.0,688.1308016760767,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,117346,2,1,1,0,1,,450.0,,43,2.0,1.0,5.0,4.0,2.1,4,3,835.835700689896,850.0,53871.08528475161,1,1,1,2,117.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038053809184725285,25652.89775464362,7,4,7,7_1,7_2,7_0_0 -16290,2,46.0,0.0,1,111,705.0,0.0,0.0,54,21,2076.082979055021,155.27587572291867,974.432830441031,2245.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104664,2,2,4,0,1,,217.0,,43,2.0,1.0,4.0,3.0,1.8,3,3,1059.72325808815,705.0,58368.889222842656,1,1,1,2,120.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03846227039594613,32427.16067935703,8,4,8,8_1,8_2,8_1_0 -16291,2,54.0,0.0,6,111,1400.0,0.0,0.0,56,64,0.0,0.0,1935.0439186063027,1602.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,4,120523,2,1,2,0,1,,400.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,1024.48673776754,1400.0,48228.954499728636,1,1,0,1,120.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033216560811182703,24114.477249864318,6,3,6,6_1,6_2,6_0_0 -16292,2,50.0,0.0,1,111,1500.0,0.0,0.0,22,37,4480.754631054002,310.55175144583734,2073.261341363896,4860.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,4,45.0,1,,1,126602,2,1,1,0,1,,300.0,,43,2.0,1.0,6.0,2.0,1.5,3,2,958.669073074059,1500.0,49677.46072794427,1,1,0,1,170.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09783108735399154,33118.30715196285,8,4,8,8_1,8_2,8_1_0 -16293,2,41.0,0.0,8,111,567.0,0.0,0.0,52,47,4155.153127864078,414.0690019277831,783.6927870355527,3849.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130758,2,1,1,0,1,,185.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,834.676537549271,567.0,65606.2516159952,1,4,1,2,130.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058668189466590255,31241.072198092956,8,4,8,8_1,8_2,8_0_0 -16294,2,37.0,0.0,1,111,450.0,0.0,0.0,63,31,3733.962192545002,0.0,621.9784024091688,3070.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125596,2,1,1,0,1,,262.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,857.547680421185,450.0,46735.68746197819,1,1,1,2,195.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06568855978630031,19473.20310915758,5,3,5,5_1,5_2,5_1_0 -16295,2,69.0,0.0,2,111,2000.0,0.0,0.0,0,86,0.0,103.51725048194578,2764.3484551518613,2100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,124725,2,1,3,0,1,,260.0,,11,0.0,3.0,6.0,1.0,1.0,4,2,983.073189015621,2000.0,107185.01892594503,0,6,0,1,80.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019592290238348575,107185.01892594503,10,5,10,10_1,10_2,10_0_1 -16296,2,46.0,0.0,1,111,1440.0,0.0,0.0,22,68,0.0,0.0,1990.33088770934,2400.0,1651.513924022584,0.0,41,0,0,0,0,0,0,0,0,2,1.0,1,,1,100941,2,2,1,0,1,,351.0,,43,2.0,3.0,3.0,3.0,2.0,2,2,903.567502266436,1440.0,32793.43888851929,1,1,0,1,80.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0731853712615733,16396.719444259645,4,2,4_0,4_1_0,4_2_0,4_1_0 -16297,2,59.0,0.0,5,111,1300.0,0.0,0.0,67,75,0.0,0.0,1796.8264958487098,1370.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,112002,2,1,1,0,1,,90.0,,42,1.0,1.0,5.0,2.0,1.5,4,2,756.706622261531,1300.0,39504.0,1,7,0,1,115.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0346800324017821,26336.0,7,4,7,7_1,7_2,7_0_0 -16298,2,62.0,0.0,6,111,833.0,0.0,0.0,0,78,0.0,0.0,1151.35113157075,897.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,120621,2,1,2,0,1,,105.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,888.541970776371,833.0,17617.742472003218,0,5,0,1,88.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05091458235500062,17617.742472003218,4,2,4_0,4_1_0,4_2_0,4_0_0 -16299,2,67.0,0.0,1,111,2160.0,0.0,0.0,74,75,0.0,0.0,2985.49633156401,2160.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121084,2,2,2,0,1,,220.0,,41,0.0,4.0,8.0,3.0,2.0,4,2,989.069837132911,2160.0,52120.36223124857,5,5,0,1,150.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041442536228287766,26060.181115624284,7,4,7,7_1,7_2,7_1_0 -16300,2,78.0,0.0,2,111,686.0,0.0,0.0,0,77,1418.9056331671006,0.0,948.1715201170883,1704.0,116.98223628493304,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,113858,2,1,2,0,1,,65.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,988.610241737852,686.0,20188.40414948406,0,5,0,1,48.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08440488843906703,20188.40414948406,5,3,5,5_1,5_2,5_0_1 -16301,2,59.0,0.0,5,111,360.0,0.0,0.0,78,72,746.7924385090004,0.0,497.582721927335,1360.0,860.1635020950959,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,103259,2,1,2,0,1,,120.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,851.577415148304,360.0,34170.1763211116,5,5,0,1,130.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03980078964824486,22780.11754740773,6,3,6,6_1,6_2,6_0_0 -16302,2,65.0,0.0,1,111,316.0,0.0,0.0,0,78,0.0,0.0,436.76705591399406,416.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106521,1,3,4,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,918.708711386982,316.0,10033.209833586141,0,5,0,1,60.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04146230437715368,10033.209833586141,2,1,2_0,2_1_0,2_2_0,2_1_0 -16303,2,37.0,0.0,8,111,1000.0,0.0,0.0,52,63,2987.1697540360015,0.0,1382.1742275759307,3090.0,154.82943037711726,0.0,50,2,2,2,1,1,2,2,2,2,20.0,1,2002.0,6,105164,2,1,1,0,1,,210.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1004.36842062479,1000.0,42930.451231656174,1,1,1,2,159.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0719768814757178,23850.25068425343,6,3,6,6_1,6_2,6_0_0 -16304,2,63.0,0.0,5,111,800.0,0.0,0.0,78,46,0.0,0.0,1105.7393820607444,930.0,223.64251054472493,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121908,2,1,2,0,1,,100.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,835.2845251234,800.0,40262.00471849081,5,5,1,2,84.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023098700785082523,26841.336478993875,7,4,7,7_1,7_2,7_0_0 -16305,2,66.0,0.0,5,111,694.0,0.0,0.0,0,77,2552.5365548237633,0.0,959.2289139376958,2403.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104785,2,1,2,0,1,,175.0,,11,0.0,5.0,6.0,1.0,1.0,2,2,976.148379386786,694.0,32315.61597751054,0,5,0,1,100.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07436033407725613,32315.61597751054,8,4,8,8_1,8_2,8_0_0 -16306,2,49.0,0.0,8,112,1050.0,0.0,0.0,56,21,0.0,0.0,1451.2829389547271,2250.0,2064.39240502823,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,115691,2,1,1,0,1,,276.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1318.38157467204,1050.0,62347.15991298735,1,1,1,2,98.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03608825170449038,34637.31106277075,9,5,9,9_1,9_0,9_0_0 -16307,2,67.0,0.0,1,112,391.0,0.0,0.0,0,77,0.0,0.0,540.4301229821889,819.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131457,1,2,2,0,1,,192.0,250.0,11,0.0,3.0,4.0,1.0,1.0,2,2,1619.24748613889,391.0,19077.532635039854,0,5,2,3,80.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04293007988337739,19077.532635039854,5,3,5,5_1,5_0,5_1_0 -16308,2,49.0,0.0,2,112,800.0,0.0,0.0,54,21,2389.735803228801,0.0,1105.7393820607444,2460.0,103.2196202514115,0.0,10,2,2,1,1,2,2,2,2,2,5.0,1,,2,115629,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1209.11222778478,800.0,84184.8075695404,1,1,1,2,75.0,5,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.029221424518526464,33673.923027816156,9,5,9,9_1,9_0,9_0_1 -16309,2,45.0,0.0,8,112,1340.0,0.0,0.0,52,64,0.0,0.0,1852.113464951747,1580.0,412.878481005646,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,110749,2,2,1,0,1,,550.0,,43,4.0,0.0,7.0,5.0,2.8,2,2,1209.5665846534,1340.0,44968.66907441773,1,1,1,2,190.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035135574001207155,16060.23895514919,4,2,4_0,4_1_0,4_0_0,4_0_0 -16310,2,68.0,0.0,1,112,800.0,0.0,0.0,0,75,0.0,0.0,1105.7393820607444,860.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,114962,2,1,2,0,1,,160.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1468.33641095904,800.0,18925.82486506302,0,5,0,1,120.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04544055575551456,18925.82486506302,5,3,5,5_1,5_0,5_1_0 -16311,0,76.0,0.0,2,112,164.0,0.0,0.0,0,75,0.0,0.0,226.6765733224526,164.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114559,2,1,1,0,1,,190.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1393.38994836756,164.0,23025.59860185391,0,5,0,1,72.0,5,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007122507554995574,23025.59860185391,6,3,6,6_1,6_0,6_0_1 -16312,2,46.0,0.0,1,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,794.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,111080,2,1,1,0,1,,195.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,1359.20017288903,0.0,24429.183510908428,0,1,1,2,45.0,5,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032502109603681724,16286.122340605618,4,2,4_0,4_1_0,4_0_0,4_1_0 -16313,2,65.0,0.0,2,112,700.0,0.0,0.0,78,74,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,114510,2,1,2,0,1,,140.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1275.37008222989,700.0,32949.491231667045,5,5,0,1,96.0,5,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023065606526560884,21966.32748777803,6,3,6,6_1,6_0,6_0_1 -16314,2,41.0,0.0,9,112,386.0,0.0,0.0,42,37,0.0,414.0690019277831,533.5192518443092,1986.0,2064.39240502823,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,127063,2,1,4,0,1,,143.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,1251.48129157261,386.0,71883.71078474645,1,1,1,2,145.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027627956018394982,27647.58107105633,7,4,7,7_1,7_0,7_0_0 -16315,2,56.0,0.0,6,112,380.0,0.0,0.0,47,47,0.0,807.4345537591771,525.2262064788536,2960.0,3096.588607542345,0.0,31,2,2,2,2,1,2,2,2,2,15.0,1,,4,115777,2,2,1,0,1,,200.0,,43,2.0,3.0,8.0,3.0,1.8,4,4,1326.27562301257,380.0,59578.0386947403,1,1,0,1,180.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.04968273653931673,33098.91038596683,8,4,8,8_1,8_0,8_0_0 -16316,2,45.0,0.0,7,112,1000.0,0.0,0.0,46,64,0.0,465.827627168756,1382.1742275759307,1540.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,5,119468,2,1,1,0,1,,220.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1209.11222778478,1000.0,51316.82204453501,1,1,1,2,141.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03000965255922356,20526.728817814004,5,3,5,5_1,5_0,5_0_0 -16317,2,83.0,0.0,1,112,440.0,0.0,0.0,0,71,0.0,1035.1725048194578,608.1566601334094,1500.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130073,1,3,4,0,2,,95.0,305.0,11,0.0,7.0,5.0,1.0,1.0,2,2,1383.12890749932,440.0,18977.65529619572,0,5,2,3,80.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0790403227684661,18977.65529619572,5,3,5,5_1,5_0,5_1_0 -16318,2,59.0,0.0,8,112,1323.0,0.0,0.0,78,21,0.0,621.1035028916747,1828.6165030829561,1983.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,117052,2,1,1,0,1,,448.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1231.33365360474,1323.0,47347.073953431325,6,1,0,1,120.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041882208010370375,31564.715968954217,8,4,8,8_1,8_0,8_0_0 -16319,2,61.0,0.0,5,112,748.0,0.0,0.0,0,78,0.0,0.0,1033.866322226796,1468.0,1238.635443016938,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,111523,2,2,3,0,2,,193.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1362.44425394697,748.0,18064.457403321907,0,5,0,1,80.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08126454989619819,18064.457403321907,4,2,4_0,4_1_0,4_0_0,4_0_0 -16320,2,51.0,0.0,6,112,1159.0,0.0,0.0,56,56,0.0,0.0,1601.9399297605034,1219.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,120678,2,1,2,0,1,,210.0,760.0,43,2.0,4.0,7.0,6.0,2.8999999999999995,4,4,1418.42196887558,1159.0,6901.458858579181,1,1,2,3,120.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17662932214464558,2379.813399510063,1,1,1_0,1_1_0,1_0_0,1_0_0 -16321,2,35.0,0.0,7,120,1960.0,0.0,0.0,54,46,0.0,207.03450096389156,2709.061486048824,2160.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,105092,2,1,2,0,1,,359.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1301.78849161456,1960.0,70438.91960393383,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030664865562182328,33542.34266853992,8,4,8,8_1,8_0,8_0_0 -16322,2,78.0,0.0,2,120,1130.0,0.0,0.0,90,78,0.0,0.0,1561.8568771608016,1250.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,100298,2,1,2,0,1,,148.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1453.55628233811,1130.0,23256.85416114584,5,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05374759592758326,15504.569440763893,3,2,3_0,3_1_0,3_0_0,3_0_1 -16323,2,65.0,0.0,5,120,779.0,0.0,0.0,78,78,2315.056559377901,0.0,1076.71372328165,2429.0,172.03270041901916,0.0,42,2,2,2,1,1,2,2,2,0,,1,,3,132389,2,2,2,0,1,,420.0,,41,1.0,3.0,4.0,3.0,2.0,3,3,1422.74661491303,779.0,39684.864467134874,6,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.061207214201565004,19842.432233567437,5,3,5,5_1,5_0,5_0_0 -16324,2,71.0,0.0,7,120,1104.0,0.0,0.0,75,74,448.0754631054002,0.0,1525.9203472438273,1474.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108308,2,1,2,0,1,,200.0,,41,0.0,3.0,14.0,2.0,1.5,2,2,1380.99683670343,1104.0,54767.65948750434,5,5,0,1,340.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026913693478836802,36511.77299166956,9,5,9,9_1,9_0,9_0_0 -16325,2,74.0,0.0,7,120,578.0,969.0,0.0,75,77,0.0,62.110350289167464,798.8967035388879,1607.0,0.0,1757.429660921178,50,0,0,0,0,0,0,0,0,0,,1,,5,129105,2,1,2,0,1,,496.0,914.0,41,0.0,3.0,3.0,2.0,1.5,2,2,1638.83848796167,578.0,37836.91694365691,5,5,2,3,115.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042471747959618104,25224.611295771272,7,4,7,7_1,7_0,7_0_0 -16326,2,60.0,0.0,5,120,450.0,0.0,0.0,68,75,649.7094215028303,0.0,621.9784024091688,885.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119729,2,1,2,0,1,,261.0,,42,1.0,1.0,4.0,2.0,1.5,4,3,1390.11477897562,450.0,37359.96049051504,1,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023688461882198298,24906.640327010027,7,4,7,7_1,7_0,7_0_0 -16327,2,38.0,0.0,9,120,900.0,0.0,0.0,55,45,0.0,0.0,1243.9568048183376,935.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,114466,2,1,1,0,1,,520.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1337.39117328605,900.0,50055.152120108374,1,1,1,2,127.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018679395834347842,23835.78672386113,6,3,6,6_1,6_0,6_0_0 -16328,2,23.0,0.0,2,120,1113.0,0.0,0.0,0,63,298.71697540360015,621.1035028916747,1538.3599152920108,2045.0,227.0831645531053,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102158,1,1,1,0,2,,230.0,,22,4.0,0.0,8.0,7.0,3.8,2,2,1233.06359988213,1113.0,39428.28124528759,0,1,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0518663237506559,10375.863485601998,2,1,2_0,2_1_0,2_0_0,2_0_1 -16329,2,75.0,0.0,5,120,150.0,10.0,0.0,0,75,0.0,0.0,207.32613413638958,160.0,0.0,18.13652900847449,71,0,0,0,0,0,0,0,0,0,,1,,3,104185,2,1,2,0,1,,226.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,1370.18003675142,150.0,29985.372826503863,0,5,0,1,102.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005335934988227898,29985.372826503863,8,4,8,8_1,8_0,8_0_0 -16330,2,60.0,0.0,1,120,400.0,0.0,0.0,0,74,4480.754631054002,0.0,552.8696910303722,3434.0,58.49111814246652,0.0,31,1,2,2,2,1,2,2,1,0,,1,,1,104868,2,2,3,0,2,,200.0,,11,0.0,2.0,6.0,1.0,1.0,3,3,1556.72260520074,400.0,103656.0148549074,0,5,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03312880593380659,103656.0148549074,10,5,10,10_1,10_0,10_1_0 -16331,2,30.0,0.0,9,120,2400.0,0.0,0.0,37,21,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,121124,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,1483.53552810819,2400.0,97588.472172644,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024593068695185166,54215.817873691114,10,5,10,10_1,10_0,10_0_0 -16332,2,54.0,0.0,1,120,800.0,0.0,0.0,56,38,0.0,0.0,1105.7393820607444,870.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,128425,2,2,2,0,1,,0.0,165.0,43,2.0,1.0,4.0,2.0,1.5,1,1,1527.52913838242,800.0,34705.935524779125,1,1,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02506775820461151,23137.29034985275,6,3,6,6_1,6_0,6_1_0 -16333,2,68.0,0.0,5,120,825.0,0.0,0.0,72,75,0.0,258.79312620486445,1140.2937377501428,1175.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,104713,1,1,2,0,1,,449.0,,41,0.0,2.0,8.0,2.0,1.5,3,3,1437.84663301375,825.0,39456.021632721975,5,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029779991782687483,26304.01442181465,7,4,7,7_1,7_0,7_0_0 -16334,2,44.0,0.0,1,120,1129.0,0.0,0.0,46,64,0.0,0.0,1560.4747029332257,1129.0,0.0,0.0,70,2,2,2,1,2,2,2,2,2,10.0,1,,1,104861,2,1,1,0,1,,418.0,,43,2.0,3.0,5.0,5.0,2.5999999999999996,3,3,1231.56460171705,1129.0,63950.15074954449,1,1,1,2,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.01765437589696443,24596.211826747884,7,4,7,7_1,7_0,7_1_0 -16335,2,60.0,0.0,9,120,850.0,0.0,0.0,52,67,0.0,310.55175144583734,1174.848093439541,1210.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,124319,2,1,1,0,1,,310.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1362.29919730959,850.0,29734.198851461413,1,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040693882691933685,19822.799234307608,5,3,5,5_1,5_0,5_0_0 -16336,2,56.0,0.0,2,120,539.0,1035.0,0.0,56,38,0.0,103.51725048194578,744.9919086634266,1674.0,0.0,1877.1307523771095,31,0,0,0,0,0,0,0,0,0,,1,,2,115078,2,1,1,0,1,,345.0,,43,2.0,4.0,6.0,2.0,1.5,1,1,1345.72356875777,539.0,78819.58100806538,1,1,1,2,120.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02123837729902046,52546.38733871025,10,5,10,10_1,10_0,10_0_1 -16337,2,64.0,0.0,1,120,240.0,0.0,0.0,0,78,1642.9433647198007,0.0,331.72181461822333,1380.0,68.81308016760767,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,130943,2,2,1,0,1,,165.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1531.30227332868,240.0,15262.894688871973,0,5,0,1,95.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09041535227299606,15262.894688871973,3,2,3_0,3_1_0,3_0_0,3_1_0 -16338,2,49.0,0.0,6,120,443.0,0.0,0.0,77,54,0.0,776.3793786145933,612.3031828161372,1263.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,130327,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,1277.67597123786,443.0,31869.983329976647,5,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039629766571356584,21246.655553317763,5,3,5,5_1,5_0,5_0_0 -16339,2,35.0,0.0,5,120,800.0,0.0,0.0,52,63,1493.5848770180007,207.03450096389156,1105.7393820607444,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,121804,2,1,2,0,1,,720.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1373.94820787778,800.0,43790.33187000585,1,1,1,2,150.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04567218183998049,20852.53898571707,5,3,5,5_1,5_0,5_0_0 -16340,2,87.0,0.0,1,111,657.0,0.0,0.0,71,71,970.8301700617004,0.0,908.0884675173863,1307.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129837,1,2,4,0,2,,243.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,995.514133061056,657.0,26470.217893587396,5,5,0,1,130.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04937624636314877,17646.811929058265,4,2,4_0,4_1_0,4_2_0,4_1_0 -16341,2,50.0,0.0,8,111,400.0,0.0,0.0,0,11,1493.5848770180007,0.0,552.8696910303722,1460.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110829,2,1,2,0,1,,145.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1025.00834720596,400.0,30536.48187682305,0,1,0,1,140.0,6,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047811663632022015,30536.48187682305,8,4,8,8_1,8_2,8_0_0 -16342,2,34.0,0.0,1,111,1200.0,0.0,0.0,43,63,0.0,0.0,1658.6090730911167,1347.0,0.0,0.0,70,2,2,2,2,2,2,2,1,0,,1,,1,100340,1,3,3,0,1,,250.0,620.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1137.33973522843,1200.0,36351.746917801,1,1,2,3,80.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03705461536816518,20195.41495433389,5,3,5,5_1,5_2,5_1_0 -16343,2,67.0,0.0,1,111,438.0,0.0,0.0,0,77,0.0,0.0,605.3923116782576,1247.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133578,2,1,1,0,1,,139.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,970.828561842512,438.0,27997.569691662567,0,5,0,1,108.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044539580175465936,27997.569691662567,7,4,7,7_1,7_2,7_1_0 -16344,1,21.0,75.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,880.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,112607,2,2,5,0,1,,254.0,400.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1202.54687982361,0.0,11524.866881280053,0,1,2,3,50.0,6,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07635663032510961,11524.866881280053,2,1,2_1,2_1_1,2_2_1,2_1_0 -16345,2,31.0,0.0,1,111,700.0,0.0,0.0,22,22,0.0,0.0,967.5219593031513,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,129312,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,4.0,2.1,4,3,931.698073220451,700.0,7396.875724695115,4,1,1,2,140.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09463454924124098,3522.3217736643405,1,1,1_0,1_1_0,1_2_0,1_1_0 -16346,2,35.0,0.0,1,111,760.0,0.0,0.0,54,35,0.0,0.0,1050.452412957707,960.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129733,2,1,1,0,1,,243.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,948.337752537665,760.0,37005.14262854833,1,1,1,2,196.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025942340221096444,17621.49648978492,4,2,4_0,4_1_0,4_2_0,4_1_0 -16347,2,77.0,0.0,1,111,467.0,0.0,0.0,0,77,0.0,0.0,645.4753642779596,467.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122092,2,1,2,0,2,,234.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1081.57570477744,467.0,18320.620279248396,0,5,0,1,76.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025490403320512393,18320.620279248396,4,2,4_0,4_1_0,4_2_0,4_1_0 -16348,2,34.0,0.0,1,111,980.0,0.0,0.0,0,62,0.0,0.0,1354.530743024412,1080.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,132677,2,1,1,0,1,,179.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,912.644266565064,980.0,21187.092238616122,0,1,1,2,70.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05097443234950217,21187.092238616122,5,3,5,5_1,5_2,5_1_0 -16349,2,43.0,0.0,5,111,950.0,0.0,0.0,42,47,0.0,310.55175144583734,1313.065516197134,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,113914,2,1,3,0,1,,330.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,956.282446975427,950.0,48128.59368398033,1,1,1,2,125.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025972086535660903,22918.377944752538,6,3,6,6_1,6_2,6_0_0 -16350,2,53.0,0.0,1,111,600.0,0.0,0.0,54,63,0.0,310.55175144583734,829.3045365455583,900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,104212,2,2,2,0,1,,400.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,885.769920592666,600.0,45863.39372006616,1,1,0,1,120.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01962349331349703,30575.59581337744,8,4,8,8_1,8_2,8_1_0 -16351,2,27.0,0.0,1,111,456.0,0.0,0.0,0,54,1538.3924233285406,0.0,630.2714477746243,1755.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,1,,1,105095,2,1,1,0,1,,178.0,450.0,12,1.0,0.0,3.0,1.0,1.0,4,2,1079.97830143705,456.0,21285.837384870516,0,1,2,3,65.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.08244918761088599,21285.837384870516,6,3,6,6_1,6_2,6_1_0 -16352,2,65.0,0.0,5,111,640.0,0.0,0.0,75,75,2180.633920446281,0.0,884.5915056485956,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121545,2,1,1,0,1,,359.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,916.434627605548,640.0,46930.3510139492,5,5,0,1,110.0,6,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04474716158367988,31286.90067596613,8,4,8,8_1,8_2,8_0_0 -16353,1,36.0,67.0,2,111,600.0,0.0,0.0,56,63,0.0,0.0,829.3045365455583,1884.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109129,1,3,2,0,1,,247.0,480.0,43,2.0,0.0,4.0,4.0,2.3,3,3,951.577945120722,600.0,32000.979207297794,4,1,2,3,90.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05887319846670053,13913.469220564259,3,2,3_1,3_1_1,3_2_1,3_0_1 -16354,2,70.0,0.0,1,111,1145.0,0.0,0.0,78,75,0.0,0.0,1582.5894905744406,1145.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111883,2,1,2,0,1,,278.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1001.49668587586,1145.0,41809.71477358265,5,5,0,1,78.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02738597969875329,27873.143182388434,7,4,7,7_1,7_2,7_1_0 -16355,2,57.0,0.0,1,111,650.0,0.0,0.0,52,43,1792.3018524216009,517.5862524097289,898.4132479243549,2350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,124300,2,1,1,0,1,,278.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,971.531058257707,650.0,66364.78569555756,1,1,0,1,120.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03541034564295004,44243.19046370504,10,5,10,10_1,10_2,10_1_0 -16356,2,53.0,0.0,8,111,700.0,900.0,0.0,47,33,0.0,0.0,967.5219593031513,1600.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,119996,2,1,2,0,1,,500.0,,43,2.0,2.0,6.0,2.0,1.5,3,3,938.455484958718,700.0,66089.30352226553,1,1,0,1,180.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024209666537958884,44059.53568151035,10,5,10,10_1,10_2,10_0_0 -16357,2,48.0,0.0,1,111,456.0,567.0,0.0,0,43,0.0,0.0,630.2714477746243,1023.0,0.0,1028.3411947805034,50,2,2,1,2,2,2,2,1,0,,1,,1,115540,2,2,3,0,1,,234.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,968.102749843098,456.0,33701.37748073714,0,1,1,2,75.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03035484233796441,33701.37748073714,9,5,9,9_1,9_2,9_1_0 -16358,2,58.0,0.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,382.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,20.0,1,,2,117236,1,3,3,0,2,,245.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,939.04198531088,0.0,47375.626119062406,7,1,0,1,75.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.008063217972887025,31583.750746041605,8,4,8,8_1,8_2,8_0_1 -16359,2,80.0,0.0,2,111,467.0,0.0,0.0,0,78,1859.5131718874109,0.0,645.4753642779596,2178.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,133506,2,2,2,0,1,,178.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1109.9741444981,467.0,16557.05579908166,0,5,0,1,119.0,6,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13154512652671033,16557.05579908166,4,2,4_0,4_1_0,4_2_0,4_0_1 -16360,2,54.0,0.0,1,111,460.0,0.0,0.0,0,37,0.0,0.0,635.800144684928,560.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,1,128756,2,1,3,0,1,,250.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,1109.9741444981,460.0,37071.07834808837,0,1,1,2,150.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015106115736416858,37071.07834808837,9,5,9,9_1,9_2,9_1_0 -16361,2,72.0,0.0,1,111,639.0,0.0,0.0,75,74,3136.5282417378016,0.0,883.2093314210197,2838.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,101047,2,2,3,0,1,,210.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1001.55393511624,639.0,63488.99574011964,5,5,0,1,140.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04470065980594218,42325.99716007976,9,5,9,9_1,9_2,9_1_0 -16362,2,66.0,0.0,6,111,745.0,0.0,0.0,77,75,0.0,0.0,1029.7197995440683,2298.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,102493,2,1,2,0,1,,323.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,915.196742041465,745.0,38191.44643716988,5,5,0,1,94.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06017054116503606,25460.964291446584,7,4,7,7_1,7_2,7_0_0 -16363,2,74.0,0.0,5,111,1156.0,0.0,0.0,0,75,0.0,0.0,1597.7934070777758,1156.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,100531,2,1,1,0,1,,356.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,951.954847532233,1156.0,42401.00271727167,0,5,0,1,61.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02726350618894948,42401.00271727167,9,5,9,9_1,9_2,9_0_0 -16364,2,28.0,0.0,5,111,600.0,0.0,0.0,46,38,0.0,310.55175144583734,829.3045365455583,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,129851,1,2,3,0,1,,390.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1010.43205134209,600.0,69231.54155051413,1,1,1,2,110.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012999854977132404,38461.967528063404,9,5,9,9_1,9_2,9_0_0 -16365,2,91.0,0.0,5,111,450.0,0.0,0.0,0,72,0.0,0.0,621.9784024091688,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,108388,2,1,1,0,1,,232.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1004.83437410989,450.0,33430.60371998423,0,5,0,1,78.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028716202915178846,33430.60371998423,8,4,8,8_1,8_2,8_0_0 -16366,2,58.0,0.0,1,111,1145.0,0.0,0.0,45,22,0.0,0.0,1582.5894905744406,1145.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,113843,2,2,2,0,1,,450.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,953.772377083945,1145.0,95211.04664678982,1,1,0,1,100.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012025915482766152,63474.03109785988,10,5,10,10_1,10_2,10_1_0 -16367,2,42.0,0.0,9,111,1200.0,0.0,0.0,54,52,0.0,0.0,1658.6090730911167,1275.0,129.02452531426437,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,130939,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,892.31530732775,1200.0,39740.94985331855,1,1,1,2,80.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03208277619699449,26493.96656887903,7,4,7,7_1,7_2,7_0_0 -16368,2,67.0,0.0,6,111,567.0,0.0,0.0,77,75,0.0,207.03450096389156,783.6927870355527,767.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,123089,1,1,3,0,1,,254.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,915.196742041465,567.0,37956.56754338059,5,5,0,1,100.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020207306657099463,25304.378362253727,7,4,7,7_1,7_2,7_0_0 -16369,1,51.0,254.0,1,221,500.0,0.0,0.0,0,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,116701,2,2,0,0,1,,58.0,355.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2752.75759966829,500.0,7276.936680303517,0,4,2,3,45.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06871023096206813,7276.936680303517,1,1,1_1,1_0_1,1_1_1,1_1_0 -16370,2,55.0,0.0,7,221,650.0,850.0,0.0,22,46,0.0,0.0,898.4132479243549,1500.0,0.0,1541.6049657203316,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,123402,2,1,2,0,1,,350.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1746.05150864295,650.0,64466.263727472964,1,1,1,2,100.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02326798410934989,42977.50915164864,9,5,9,9_1,9_1,9_0_0 -16371,1,60.0,254.0,7,221,810.0,0.0,0.0,0,77,0.0,0.0,1119.5611243365038,870.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,127021,2,2,3,0,1,,250.0,356.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1633.15801015399,810.0,12187.095991211436,0,7,2,3,65.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07138698182301913,12187.095991211436,2,1,2_1,2_1_1,2_1_1,2_0_0 -16372,1,90.0,40.0,9,221,730.0,0.0,0.0,0,77,0.0,0.0,1008.9871861304293,730.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123749,2,1,1,0,1,,192.0,365.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1734.05123874314,730.0,15681.223463606584,0,5,2,3,65.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0465524900971027,15681.223463606584,3,2,3_1,3_1_1,3_1_1,3_0_0 -16373,2,73.0,0.0,1,221,1945.0,0.0,0.0,77,74,0.0,0.0,2688.328872635185,2065.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119204,2,1,2,0,1,,610.0,,41,0.0,1.0,7.0,2.0,1.5,1,1,1850.68121528872,1945.0,46242.41052711327,5,5,0,1,131.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044655976547529466,30828.27368474218,8,4,8,8_1,8_1,8_1_0 -16374,2,77.0,0.0,9,221,0.0,0.0,0.0,0,77,0.0,0.0,0.0,676.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,107729,2,1,0,1,1,,104.0,756.0,11,0.0,4.0,3.0,1.0,1.0,2,2,3099.03054502068,0.0,13553.945511103278,0,5,2,3,90.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049874776274275744,13553.945511103278,3,2,3_0,3_0_0,3_1_0,3_0_0 -16375,2,82.0,0.0,1,221,1500.0,0.0,0.0,78,74,0.0,0.0,2073.261341363896,1620.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,103520,2,1,2,0,1,,1000.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,1761.23894453698,1500.0,23215.0210494766,5,5,0,1,83.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06978240495872925,15476.680699651066,3,2,3_0,3_1_0,3_1_0,3_1_0 -16376,2,83.0,0.0,1,221,311.0,2980.0,0.0,0,74,0.0,0.0,429.8561847761144,3291.0,0.0,5404.685644525398,50,0,0,0,0,0,0,0,0,0,,1,,1,105562,1,3,4,0,1,,415.0,,11,0.0,2.0,9.0,1.0,1.0,2,2,2064.65900432321,311.0,87210.44334778698,0,5,0,1,163.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037736306268686244,87210.44334778698,10,5,10,10_1,10_1,10_1_0 -16377,2,79.0,0.0,2,221,410.0,1032.0,0.0,0,74,0.0,0.0,566.6914333061316,1442.0,0.0,1871.6897936745672,33,0,0,0,0,0,0,0,0,0,,1,,2,102874,2,1,1,0,1,,453.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1859.84374387711,410.0,53266.50854721028,0,5,0,1,90.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027071419534132796,53266.50854721028,10,5,10,10_1,10_1,10_0_1 -16378,2,44.0,0.0,2,221,565.0,2266.0,0.0,46,23,0.0,0.0,780.9284385804008,2831.0,0.0,4109.73747332032,50,0,0,0,0,0,0,0,0,1,1.0,1,,2,120060,2,1,2,0,2,,430.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,1857.66755861493,565.0,87560.0,1,1,1,2,95.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032332115121059844,36483.333333333336,9,5,9,9_1,9_1,9_0_1 -16379,2,72.0,0.0,1,221,2248.0,0.0,0.0,75,78,0.0,0.0,3107.127663590692,2248.0,0.0,0.0,60,2,2,1,1,2,2,2,2,0,,1,,1,123843,2,1,1,0,1,,358.0,696.0,41,0.0,0.0,4.0,2.0,1.5,2,2,1916.3451150261,2248.0,33251.135368697505,5,5,2,3,60.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06760671402866618,22167.42357913167,6,3,6,6_1,6_1,6_1_0 -16380,2,45.0,0.0,7,221,950.0,0.0,0.0,0,37,0.0,621.1035028916747,1313.065516197134,1598.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,107015,2,1,1,0,1,,650.0,,32,2.0,0.0,6.0,4.0,2.5,1,1,1705.32629321663,950.0,63137.33816368319,0,1,1,2,130.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025309904510975645,25254.935265473276,7,4,7,7_1,7_1,7_0_0 -16381,2,77.0,0.0,6,221,1200.0,0.0,0.0,75,74,0.0,51.75862524097289,1658.6090730911167,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,127048,2,2,1,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1761.23894453698,1200.0,88156.11481666412,6,5,0,1,126.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014179390761487063,58770.74321110942,10,5,10,10_1,10_1,10_0_0 -16382,2,66.0,0.0,1,221,2500.0,0.0,0.0,75,72,0.0,207.03450096389156,3455.435568939826,3500.0,1376.2616033521533,0.0,31,2,2,1,2,2,2,2,1,0,,1,,1,121806,2,2,2,0,1,,600.0,,41,0.0,3.0,7.0,2.0,1.5,3,2,1917.81720372757,2500.0,61343.722508713596,5,5,0,1,150.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05705555282372766,40895.81500580906,9,5,9,9_1,9_1,9_1_0 -16383,2,66.0,0.0,8,221,650.0,0.0,0.0,0,35,0.0,0.0,898.4132479243549,722.0,123.8635443016938,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,123243,2,1,0,0,1,,260.0,430.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2910.89698295821,650.0,36545.0,0,1,2,3,70.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019756464632644685,36545.0,9,5,9,9_0,9_1,9_0_0 -16384,2,81.0,0.0,5,221,480.0,0.0,0.0,77,75,3584.6037048432017,0.0,663.4436292364467,2940.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122686,2,1,1,0,1,,540.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2136.11392045951,480.0,24395.426753517408,5,5,0,1,103.0,1,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12051439106619037,16263.617835678271,4,2,4_0,4_1_0,4_1_0,4_0_0 -16385,2,62.0,0.0,1,221,797.0,1981.0,0.0,74,31,0.0,0.0,1101.5928593780166,2869.0,0.0,3592.8463965787964,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,128568,2,1,2,0,1,,440.0,,42,1.0,3.0,9.0,2.0,1.5,2,2,1917.81720372757,797.0,84109.68301467822,6,1,0,1,170.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034110222475803684,56073.122009785475,10,5,10,10_1,10_1,10_1_0 -16386,2,58.0,0.0,6,221,850.0,0.0,0.0,0,52,0.0,0.0,1174.848093439541,875.0,43.00817510475479,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,132546,1,2,1,0,1,,410.0,351.0,12,1.0,3.0,4.0,1.0,1.0,2,1,1897.32809053484,850.0,18447.16497020694,0,1,2,3,110.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047432762780251984,18447.16497020694,4,2,4_0,4_1_0,4_1_0,4_0_0 -16387,1,80.0,139.0,5,221,488.0,0.0,0.0,0,78,0.0,10.351725048194577,674.5010230570541,522.0,41.2878481005646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125469,2,1,1,0,1,,222.0,318.0,11,0.0,2.0,3.0,1.0,1.0,3,3,1785.33148615217,488.0,10652.965276782106,0,5,2,3,68.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04900044132666864,10652.965276782106,2,1,2_1,2_1_1,2_1_1,2_0_0 -16388,2,82.0,0.0,1,221,1200.0,0.0,0.0,71,71,0.0,0.0,1658.6090730911167,1330.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129459,2,1,1,0,1,,140.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,2088.66058312619,1200.0,26905.97128007745,5,5,0,1,65.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04943140636535205,17937.3141867183,4,2,4_0,4_1_0,4_1_0,4_1_0 -16389,2,79.0,0.0,1,221,5000.0,0.0,0.0,71,12,2240.377315527001,0.0,6910.871137879652,6540.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,119855,2,2,2,0,1,,1300.0,,42,3.0,2.0,9.0,5.0,2.8,1,1,1668.87258934351,5000.0,54088.7823253648,5,1,0,1,250.0,1,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12091231709856931,19317.422259058858,5,3,5,5_1,5_1,5_1_0 -16390,2,66.0,0.0,7,221,450.0,1800.0,0.0,72,75,0.0,82.81380038555662,621.9784024091688,2330.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,,5,131586,2,1,2,0,1,,600.0,,41,0.0,2.0,6.0,2.0,1.5,4,4,1656.05995318213,450.0,52734.08049385852,5,5,0,1,170.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044183950458211836,35156.05366257235,9,5,9,9_1,9_1,9_0_0 -16391,2,33.0,0.0,1,221,500.0,0.0,0.0,0,21,0.0,0.0,691.0871137879653,526.0,44.72850210894499,0.0,71,2,2,2,2,1,2,2,2,0,,8,,1,113661,1,3,0,0,2,,250.0,615.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2696.0773549905,500.0,10881.979019051756,0,1,2,3,60.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.04833679600733462,8370.753091578274,1,1,1_0,1_0_0,1_1_0,1_1_0 -16392,2,69.0,0.0,2,221,750.0,0.0,0.0,0,72,0.0,0.0,1036.630670681948,810.0,103.2196202514115,0.0,50,2,2,2,1,2,2,2,2,0,,1,,2,119234,2,1,1,0,1,,610.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,2125.43936500236,750.0,105978.440749454,0,5,0,1,70.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.007643063950289088,105978.440749454,10,5,10,10_1,10_1,10_0_1 -16393,1,40.0,130.0,2,221,660.0,1376.0,0.0,85,64,0.0,0.0,912.2349902001142,2232.0,0.0,2495.58639156609,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,115439,2,3,4,0,1,,720.0,528.0,42,1.0,0.0,3.0,5.0,2.4,3,2,1838.69482229527,660.0,37344.77254525997,7,1,2,3,55.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05976740110801128,15560.321893858321,3,2,3_1,3_1_1,3_1_1,3_0_1 -16394,2,66.0,0.0,5,221,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1096.0,165.1513924022584,0.0,50,2,2,2,2,2,2,2,1,0,,3,,3,106669,2,2,0,0,1,,200.0,300.0,11,0.0,1.0,2.0,1.0,1.0,2,2,2169.40928741549,1000.0,22161.095497319136,0,5,2,3,45.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.04945603885568675,22161.095497319136,6,3,6,6_0,6_1,6_0_0 -16395,2,82.0,0.0,2,221,350.0,779.0,0.0,78,77,0.0,0.0,483.76097965157567,1609.0,0.0,1412.8356097601627,50,0,0,0,0,0,0,0,0,0,,1,,2,111588,2,2,3,0,1,,245.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1761.56057100864,350.0,47623.29132051235,5,5,0,1,120.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03378598906932268,31748.860880341566,8,4,8,8_1,8_1,8_0_1 -16396,2,80.0,0.0,2,221,1800.0,0.0,0.0,0,77,0.0,0.0,2487.913609636675,2300.0,860.1635020950959,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103826,2,1,1,0,1,,257.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,2286.09003740938,1800.0,15503.467549292367,0,5,0,1,160.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14835390809748109,15503.467549292367,3,2,3_0,3_1_0,3_1_0,3_0_1 -16397,1,48.0,280.0,2,221,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1589.0,82.5756962011292,0.0,31,2,2,1,2,1,2,2,2,0,,1,,2,119737,1,3,3,0,1,,288.0,360.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2048.32591617684,0.0,10290.0,0,1,2,3,40.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.154421768707483,10290.0,2,1,2_1,2_1_1,2_1_1,2_0_1 -16398,2,73.0,0.0,7,221,914.0,1794.0,0.0,74,74,0.0,103.51725048194578,1263.3072440044004,2808.0,0.0,3253.6933041203233,50,0,0,0,0,0,0,0,0,0,,1,,5,108797,2,1,2,0,1,,400.0,,41,0.0,4.0,8.0,2.0,1.5,1,1,1851.45743201865,914.0,109252.48753155288,5,5,0,1,178.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02570193195087691,72834.99168770191,10,5,10,10_1,10_1,10_0_0 -16399,2,84.0,0.0,2,221,520.0,2890.0,0.0,0,74,0.0,0.0,718.7305983394839,3410.0,0.0,5241.456883449127,71,0,0,0,0,0,0,0,0,0,,2,,2,132527,1,1,0,0,2,,365.0,642.0,11,0.0,8.0,5.0,1.0,1.0,1,1,2927.43461921584,520.0,34380.53775082201,0,5,2,3,126.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09918402163207786,34380.53775082201,9,5,9,9_0,9_1,9_0_1 -16400,2,86.0,0.0,5,221,2630.0,0.0,0.0,77,74,0.0,0.0,3635.1182185246976,2708.0,134.18550632683494,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,131760,2,1,3,0,1,,439.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1929.62164980175,2630.0,96054.0,5,5,0,1,160.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028192475066108648,64036.0,10,5,10,10_1,10_1,10_0_0 -16401,0,76.0,0.0,5,221,11130.0,0.0,0.0,0,77,0.0,0.0,15383.599152920107,11130.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,105608,2,2,3,0,1,,260.0,,11,0.0,1.0,5.0,1.0,1.0,3,3,1913.52764721977,11130.0,45116.38566114873,0,5,0,1,80.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.24669529344821667,45116.38566114873,10,5,10,10_1,10_1,10_0_0 -16402,2,69.0,0.0,7,221,0.0,0.0,0.0,77,78,0.0,0.0,0.0,2081.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,108158,2,2,3,0,1,,306.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1665.20478672411,0.0,35231.40746102227,5,5,0,1,80.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05906661555608537,23487.604974014845,6,3,6,6_1,6_1,6_0_0 -16403,2,88.0,0.0,5,221,1200.0,0.0,0.0,0,75,0.0,0.0,1658.6090730911167,1280.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114013,2,1,2,0,1,,194.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2002.03799498265,1200.0,28283.150456704607,0,5,0,1,95.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04525662733221334,28283.150456704607,8,4,8,8_1,8_1,8_0_0 -16404,2,60.0,0.0,7,221,2354.0,0.0,0.0,75,75,0.0,51.75862524097289,3253.6381317137407,2464.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,103004,2,1,2,0,1,,320.0,,41,0.0,0.0,7.0,2.0,1.5,1,1,1851.45743201865,2354.0,79527.24828138037,5,7,0,1,220.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03098309137117339,53018.16552092024,10,5,10,10_1,10_1,10_0_0 -16405,0,91.0,0.0,1,221,1047.0,0.0,0.0,75,74,0.0,0.0,1447.1364162719992,1139.0,158.27008438549763,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127703,2,1,2,0,1,,241.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1917.81720372757,1047.0,61189.528037216136,5,5,0,1,160.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01861429621269914,40793.018691477424,9,5,9,9_1,9_1,9_1_0 -16406,2,77.0,0.0,6,221,2500.0,0.0,0.0,0,74,0.0,51.75862524097289,3455.435568939826,2550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,127914,2,1,2,0,1,,340.0,,21,2.0,1.0,3.0,3.0,2.0,2,1,2110.367416453,2500.0,25086.63534403337,0,5,0,1,88.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10164774849356172,12543.317672016685,2,1,2_0,2_1_0,2_1_0,2_0_0 -16407,2,37.0,0.0,8,221,2000.0,0.0,0.0,56,47,0.0,0.0,2764.3484551518613,2070.0,120.42289029331342,0.0,42,0,0,0,0,0,0,0,0,0,,1,2001.0,6,123291,2,1,1,0,1,,200.0,687.0,43,2.0,0.0,6.0,4.0,2.1,3,3,1982.48310631753,2000.0,35375.0,1,4,2,3,120.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05851590106007067,16845.238095238095,4,2,4_0,4_1_0,4_1_0,4_0_0 -16408,2,69.0,0.0,9,221,350.0,0.0,0.0,0,75,1792.3018524216009,10.351725048194577,483.76097965157567,1585.0,43.00817510475479,0.0,12,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107189,2,1,2,0,1,,600.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1974.82712940427,350.0,30668.885723467636,0,5,0,1,200.0,1,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05168104294011465,30668.885723467636,8,4,8,8_1,8_1,8_0_0 -16409,2,80.0,0.0,7,221,522.0,2312.0,0.0,0,74,0.0,0.0,721.4949467946358,2834.0,0.0,4193.165506759302,44,0,0,0,0,0,0,0,0,0,,1,,5,126200,1,3,2,0,2,,360.0,,11,0.0,2.0,6.0,1.0,1.0,5,3,1832.48946729266,522.0,33897.660259398486,0,5,0,1,150.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0836045903555908,33897.660259398486,9,5,9,9_1,9_1,9_0_0 -16410,2,89.0,0.0,2,221,1880.0,0.0,0.0,75,74,0.0,0.0,2598.4875478427493,1984.0,178.91400843577995,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,115493,2,1,2,0,1,,360.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1876.06793748903,1880.0,30779.807747346273,5,5,0,1,80.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06445784250134096,20519.87183156418,5,3,5,5_1,5_1,5_0_1 -16411,0,89.0,0.0,2,221,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1177.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,117023,2,2,1,0,1,,247.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,2287.50323287791,0.0,14845.659294138815,0,6,0,1,100.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07928243378619695,14845.659294138815,3,2,3_0,3_1_0,3_1_0,3_0_1 -16412,2,62.0,0.0,8,221,1100.0,850.0,0.0,22,75,0.0,0.0,1520.3916503335236,1950.0,0.0,1541.6049657203316,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,107199,2,1,2,0,1,,343.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1851.26214693282,1100.0,23850.82426152761,1,5,1,2,126.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08175818070763419,15900.549507685073,3,2,3_0,3_1_0,3_1_0,3_0_0 -16413,2,64.0,0.0,9,221,1090.0,0.0,0.0,0,75,0.0,186.3310508675024,1506.5699080577642,1270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,125021,2,1,1,0,1,,284.0,,11,0.0,2.0,5.0,1.0,1.0,3,2,2004.67696182174,1090.0,32108.639004168035,0,5,1,2,140.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039553218055587494,32108.639004168035,8,4,8,8_1,8_1,8_0_0 -16414,2,78.0,0.0,1,112,312.0,0.0,0.0,0,71,3118.6052232135853,724.6207533736205,431.23835900369033,3220.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,120041,2,1,1,0,1,,204.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,2006.64004423371,312.0,21289.48842262106,0,5,1,2,140.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1512483501754134,21289.48842262106,6,3,6,6_1,6_0,6_1_0 -16415,2,55.0,0.0,6,112,1689.0,0.0,0.0,52,78,0.0,0.0,2334.4922703757466,1779.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119557,2,1,2,0,1,,182.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1539.96474758906,1689.0,49153.825942943855,1,7,0,1,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03619250314441453,32769.2172952959,8,4,8,8_1,8_0,8_0_0 -16416,2,48.0,0.0,8,112,455.0,1318.0,0.0,0,45,0.0,310.55175144583734,628.8892735470484,2073.0,0.0,2390.3945233169375,70,0,0,0,0,0,0,0,0,2,12.0,1,1999.0,6,114682,2,1,2,0,1,,340.0,,32,1.0,0.0,7.0,3.0,2.0,3,3,1773.68813226929,455.0,29267.01659136242,0,1,1,2,169.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07083058819913353,14633.50829568121,3,2,3_0,3_1_0,3_0_0,3_0_0 -16417,2,50.0,0.0,7,112,1281.0,1405.0,0.0,54,38,0.0,0.0,1770.565185524767,2686.0,0.0,2548.1823256906655,71,0,0,0,0,0,0,0,0,0,,1,,5,106084,2,1,2,0,1,,902.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,1684.39843792481,1281.0,23779.928341263345,1,1,1,2,180.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11295240092625536,8492.831550451196,1,1,1_0,1_1_0,1_0_0,1_0_0 -16418,2,79.0,0.0,2,112,350.0,1204.0,0.0,78,77,0.0,0.0,483.76097965157567,1554.0,0.0,2183.6380926203283,31,0,0,0,0,0,0,0,0,0,,1,,2,119492,2,1,2,0,1,,420.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1625.01470960927,350.0,37422.58401827892,5,5,0,1,100.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04152572679751229,24948.389345519277,7,4,7,7_1,7_0,7_0_1 -16419,2,40.0,0.0,8,112,524.0,541.0,0.0,52,62,0.0,703.9173032772313,724.2592952497876,1745.0,0.0,981.1862193584699,60,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,118632,2,1,2,0,1,,576.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1536.30816948166,524.0,53879.90694417507,1,1,1,2,110.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03238684138426581,23426.04649746742,6,3,6,6_1,6_0,6_0_0 -16420,2,44.0,0.0,2,112,3095.0,2596.0,0.0,85,37,0.0,0.0,4277.829234347505,5691.0,0.0,4708.242930599978,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,107004,2,1,1,0,1,,1811.0,,42,1.0,0.0,9.0,5.0,2.8,2,2,1714.47717626412,3095.0,55297.96482517808,6,1,1,2,165.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10291517993459305,19749.273151849316,5,3,5,5_1,5_0,5_0_1 -16421,2,29.0,0.0,8,112,2002.0,0.0,0.0,65,55,0.0,0.0,2767.112803607013,2064.0,106.66027425979189,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,127957,2,1,2,0,1,,385.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1685.49075668667,2002.0,52213.01070717735,1,1,1,2,110.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039530377046736294,29007.228170654085,8,4,8,8_1,8_0,8_0_0 -16422,1,32.0,305.0,9,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1624.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,133552,2,1,1,0,1,,413.0,690.0,32,1.0,0.0,4.0,4.0,1.9,2,2,1900.58052453759,0.0,27829.730613664455,0,1,2,3,118.0,7,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.058354858785539684,14647.226638770766,3,2,3_1,3_1_1,3_0_1,3_0_0 -16423,2,34.0,0.0,7,112,589.0,0.0,0.0,56,47,0.0,667.6862656085502,814.1006200422231,1234.0,0.0,0.0,43,0,0,0,0,0,0,0,0,4,30.0,1,,5,107910,2,1,1,0,1,,303.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1603.98777637131,589.0,46291.23906239998,1,1,1,2,125.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026657311944849525,22043.447172571417,6,3,6,6_1,6_0,6_0_0 -16424,2,61.0,0.0,5,112,632.0,0.0,0.0,77,75,298.71697540360015,0.0,873.5341118279881,2825.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,129726,2,2,1,0,1,,275.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1577.89686355677,632.0,45413.76956748104,5,5,0,1,98.0,7,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062205802929490094,30275.846378320693,8,4,8,8_1,8_0,8_0_0 -16425,2,63.0,0.0,1,112,1180.0,0.0,0.0,77,77,0.0,165.62760077111324,1630.965588539598,1400.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118077,2,1,2,0,1,,207.0,620.0,41,0.0,3.0,6.0,2.0,1.5,2,2,1799.06248045647,1180.0,34631.369207408236,7,5,2,3,90.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04042577674637583,23087.57947160549,6,3,6,6_1,6_0,6_1_0 -16426,2,62.0,0.0,1,112,1591.0,0.0,0.0,77,74,0.0,0.0,2199.0391960733054,1591.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111507,2,1,2,0,1,,627.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1614.36844549629,1591.0,56394.92687711652,5,5,0,1,89.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028211757477170932,37596.61791807768,9,5,9,9_1,9_0,9_1_0 -16427,2,34.0,0.0,9,112,1835.0,0.0,0.0,52,62,0.0,51.75862524097289,2536.2897076018326,1885.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,102449,2,1,1,0,1,,344.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1596.34718006252,1835.0,53949.87989294308,1,1,1,2,147.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03493983682151937,22479.116622059617,6,3,6,6_1,6_0,6_0_0 -16428,2,69.0,0.0,2,112,180.0,1038.0,0.0,0,75,0.0,51.75862524097289,248.7913609636675,1268.0,0.0,1882.571711079652,44,0,0,0,0,0,0,0,0,0,,1,,2,109891,2,1,1,0,1,,198.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1861.28117597465,180.0,25346.133736643023,0,5,0,1,99.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05002735380374193,25346.133736643023,7,4,7,7_1,7_0,7_0_1 -16429,2,59.0,0.0,1,112,1534.0,0.0,0.0,0,68,0.0,0.0,2120.2552651014776,1594.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,132595,2,1,2,0,1,,183.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,1939.92499439104,1534.0,68565.61132835493,0,1,0,1,160.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023247805556147794,45710.407552236626,10,5,10,10_1,10_0,10_1_0 -16430,2,42.0,0.0,1,112,3459.0,0.0,0.0,56,21,0.0,372.6621017350048,4780.940653185144,3819.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,117646,2,1,1,0,1,,262.0,,43,2.0,8.0,7.0,4.0,2.3,3,2,1676.48483585098,3459.0,73878.11777157105,4,1,1,2,170.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0516932498444023,32120.920770248285,8,4,8,8_1,8_0,8_1_0 -16431,2,69.0,0.0,2,112,1380.0,0.0,0.0,77,75,0.0,207.03450096389156,1907.4004340547842,1670.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,131766,1,1,2,0,2,,310.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1698.08303707474,1380.0,36936.53821149667,5,5,0,1,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045212683182101907,24624.35880766445,7,4,7,7_1,7_0,7_0_1 -16432,2,67.0,0.0,2,112,1420.0,0.0,0.0,77,75,0.0,181.15518834340511,1962.6874031578213,1595.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,113101,2,2,2,0,1,,476.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1732.99811680422,1420.0,32840.49070103196,5,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04856809280105793,21893.66046735464,6,3,6,6_1,6_0,6_0_1 -16433,2,46.0,0.0,5,112,2400.0,0.0,0.0,42,43,0.0,0.0,3317.2181461822333,2553.0,263.2100316410993,0.0,31,0,0,0,0,0,0,0,0,2,18.0,1,,3,127536,2,1,2,0,1,,395.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,1652.42982131652,2400.0,68200.21899755094,1,1,1,2,151.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03743389739102858,28416.757915646227,8,4,8,8_1,8_0,8_0_0 -16434,2,28.0,0.0,2,112,0.0,0.0,0.0,56,62,0.0,0.0,0.0,2373.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,25.0,1,,2,109470,2,3,4,0,1,,191.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,1442.88909144228,0.0,43966.73885623232,4,1,1,2,125.0,7,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05397261797741056,29311.159237488213,8,4,8,8_1,8_0,8_0_1 -16435,2,66.0,0.0,5,112,1210.0,0.0,0.0,77,74,0.0,351.95865163861566,1672.430815366876,1630.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,123278,2,1,2,0,1,,219.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1374.94575982016,1210.0,45271.881084683264,5,5,0,1,78.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03600468902431965,30181.25405645551,8,4,8,8_1,8_0,8_0_0 -16436,2,53.0,0.0,5,112,158.0,0.0,0.0,75,38,0.0,72.46207533736204,218.38352795699703,228.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,115309,2,2,3,0,1,,321.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,1759.08128454228,158.0,96347.43982784075,5,1,1,2,180.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0023664354798363482,64231.62655189383,10,5,10,10_1,10_0,10_0_0 -16437,2,62.0,0.0,7,112,4523.0,0.0,0.0,77,71,0.0,0.0,6251.574031325934,4523.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,131977,2,1,2,0,1,,512.0,,41,0.0,1.0,9.0,2.0,1.5,1,1,1730.89806248602,4523.0,58889.23483043609,5,5,0,1,170.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07680520918676209,39259.489886957395,9,5,9,9_1,9_0,9_0_0 -16438,2,80.0,0.0,1,112,303.0,0.0,0.0,0,72,0.0,165.62760077111324,418.79879095550695,2483.0,3475.0605484641874,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,117477,2,1,2,0,1,,168.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1929.7252659297,303.0,13061.937404435366,0,5,0,1,84.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.19009431167208488,13061.937404435366,2,1,2_0,2_1_0,2_0_0,2_1_0 -16439,2,39.0,0.0,1,112,1589.0,0.0,0.0,52,33,0.0,0.0,2196.2748476181537,1589.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,15.0,1,,1,106204,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,5.0,2.4,2,1,1581.31668595755,1589.0,44394.22443686161,1,1,1,2,170.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03579294424345466,18497.593515359004,4,2,4_0,4_1_0,4_0_0,4_1_0 -16440,2,55.0,0.0,2,112,350.0,0.0,0.0,78,63,2688.452778632401,0.0,483.76097965157567,2270.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,101648,1,2,2,0,2,,110.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1637.78158245455,350.0,41466.43092713585,7,1,0,1,110.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05474307648972268,27644.287284757233,7,4,7,7_1,7_0,7_0_1 -16441,2,54.0,0.0,1,112,624.0,0.0,0.0,85,62,0.0,51.75862524097289,862.4767180073807,803.0,221.92218354053472,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115269,2,2,2,0,1,,186.0,437.0,42,1.0,1.0,5.0,2.0,1.5,1,1,1784.22468242232,624.0,26241.171753462928,7,1,2,3,70.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030600767661757778,17494.114502308617,4,2,4_0,4_1_0,4_0_0,4_1_0 -16442,2,50.0,0.0,2,112,2295.0,0.0,0.0,11,11,2419.607500769161,0.0,3172.0898522867606,4065.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124330,2,1,2,0,1,,160.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,1606.08197990782,2295.0,9669.288615972717,1,1,0,1,120.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.42040321283667326,4204.03852868379,1,1,1_0,1_1_0,1_0_0,1_0_1 -16443,2,59.0,0.0,8,112,320.0,1280.0,0.0,56,78,0.0,0.0,442.2957528242978,1600.0,0.0,2321.4757130847347,44,0,0,0,0,0,0,0,0,0,,1,1999.0,6,102853,2,1,2,0,1,,180.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1614.50523761245,320.0,22240.037591245462,1,7,1,2,120.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07194232444237512,14826.691727496975,3,2,3_0,3_1_0,3_0_0,3_0_0 -16444,2,35.0,0.0,9,112,1402.0,0.0,0.0,63,54,0.0,0.0,1937.8082670614547,1402.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,104316,2,1,1,0,1,,120.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1667.33966318708,1402.0,39658.77500132732,1,1,1,2,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035351570994138805,22032.652778515177,6,3,6,6_1,6_0,6_0_0 -16445,2,63.0,0.0,5,112,730.0,0.0,0.0,77,75,1493.5848770180007,124.22070057833493,1008.9871861304293,1970.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,127257,2,2,3,0,1,,192.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1637.78158245455,730.0,31822.902703876698,6,5,0,1,106.0,7,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061905100811561496,21215.268469251132,5,3,5,5_1,5_0,5_0_0 -16446,2,41.0,0.0,9,112,770.0,0.0,0.0,0,52,0.0,0.0,1064.2741552334664,830.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,103209,2,1,1,0,1,,98.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1751.12657112073,770.0,19972.695424513375,0,1,1,2,63.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04155673444963789,19972.695424513375,5,3,5,5_1,5_0,5_0_0 -16448,2,54.0,0.0,8,112,420.0,0.0,0.0,42,47,0.0,103.51725048194578,580.5131755818909,2067.0,2661.3458754822263,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,117386,2,1,1,0,1,,114.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1469.87398183502,420.0,59797.75265007005,4,1,1,2,86.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034566516439101976,39865.16843338003,9,5,9,9_1,9_0,9_0_0 -16449,2,58.0,0.0,5,112,1380.0,0.0,0.0,0,78,0.0,310.55175144583734,1907.4004340547842,1740.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,102922,2,1,2,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,1871.03694850366,1380.0,27986.972194171554,0,5,0,1,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06217178435480652,27986.972194171554,7,4,7,7_1,7_0,7_0_0 -16450,2,40.0,0.0,9,112,200.0,0.0,0.0,37,48,0.0,155.27587572291867,276.4348455151861,350.0,0.0,0.0,50,2,2,1,2,1,2,2,1,2,25.0,1,2008.0,6,132750,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,1621.22017560624,200.0,86380.15066111418,1,1,1,2,130.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.004051856790260957,35991.72944213091,9,5,9,9_1,9_0,9_0_0 -16451,2,69.0,0.0,1,112,702.0,0.0,0.0,0,71,0.0,0.0,970.2863077583032,856.0,264.9303586452895,0.0,70,2,2,1,2,1,2,2,2,0,,1,,1,111908,1,3,3,0,2,,202.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1824.74197609128,702.0,25025.116472312497,0,5,0,1,75.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.034205635004619005,25025.116472312497,7,4,7,7_1,7_0,7_1_0 -16453,2,45.0,0.0,5,112,1743.0,0.0,0.0,0,43,0.0,0.0,2409.129678664847,1803.0,103.2196202514115,0.0,70,2,2,1,2,1,2,2,1,0,,1,,3,127539,2,2,2,0,1,,169.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1598.40985775551,1743.0,10426.207182862387,0,1,0,1,110.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.17292961557138448,8020.1593714326045,1,1,1_0,1_1_0,1_0_0,1_0_0 -16454,2,25.0,0.0,7,112,0.0,0.0,0.0,43,62,0.0,0.0,0.0,333.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,5,123922,2,1,2,0,1,,155.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1508.25076720029,0.0,45469.49659704166,1,1,1,2,95.0,7,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007323591086813697,30312.997731361105,8,4,8,8_1,8_0,8_0_0 -16455,2,34.0,0.0,2,400,530.0,1150.0,0.0,54,46,0.0,155.27587572291867,732.5523406152432,1830.0,0.0,2085.7008359745664,70,0,0,0,0,0,0,0,0,0,,1,,2,112805,2,1,1,0,1,,138.0,,43,2.0,1.0,6.0,2.0,1.5,4,3,1413.823129037,530.0,59908.4187447287,1,1,1,2,110.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030546624970985745,39938.94582981913,9,5,9,9_1,9_0,9_0_1 -16456,2,50.0,0.0,2,400,0.0,0.0,0.0,0,44,0.0,0.0,0.0,2280.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130128,2,2,2,0,2,,0.0,360.0,12,1.0,0.0,6.0,1.0,1.0,2,2,1908.56566034451,0.0,12104.858554405137,0,1,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18835412159114195,12104.858554405137,2,1,2_0,2_1_0,2_0_0,2_0_1 -16457,1,30.0,221.0,1,400,720.0,1265.0,0.0,0,52,0.0,0.0,995.16544385467,2075.0,154.82943037711726,2294.2709195720226,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,131877,2,2,0,1,1,,0.0,380.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2000.67784340731,720.0,11227.183109662637,0,1,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.18481928901775532,8636.29469974049,1,1,1_1,1_0_1,1_0_1,1_1_0 -16458,2,55.0,0.0,6,400,470.0,900.0,0.0,78,52,0.0,310.55175144583734,649.6218869606873,1670.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,106023,2,1,2,0,1,,520.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1513.07358807107,470.0,57080.0464261464,7,1,0,1,120.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02925715910481514,38053.3642840976,9,5,9,9_1,9_0,9_0_0 -16459,2,38.0,0.0,2,400,2080.0,0.0,0.0,63,21,0.0,0.0,2874.9223933579356,2110.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120883,2,2,2,0,1,,503.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1443.83298119292,2080.0,40626.01225489042,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051937167417803985,19345.720121376387,5,3,5,5_1,5_0,5_0_1 -16460,2,65.0,0.0,1,400,580.0,1340.0,0.0,0,78,0.0,0.0,801.6610519940398,1920.0,0.0,2430.2948871355816,50,0,0,0,0,0,0,0,0,0,,1,,1,105688,2,1,2,0,1,,220.0,,21,1.0,2.0,6.0,2.0,1.5,3,2,1441.64856495608,580.0,35889.74957061112,0,5,0,1,110.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053497169051639794,23926.499713740748,6,3,6,6_1,6_0,6_1_0 -16461,2,67.0,0.0,2,400,445.0,982.0,0.0,77,78,0.0,331.2552015422265,615.0675312712891,1747.0,0.0,1781.007148632195,71,0,0,0,0,0,0,0,0,0,,1,,2,117089,2,1,3,0,1,,94.0,,41,0.0,7.0,6.0,2.0,1.5,2,2,1450.65996957974,445.0,39457.23363722405,5,5,0,1,90.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04427578517192031,26304.822424816037,7,4,7,7_1,7_0,7_0_1 -16462,1,41.0,317.0,5,400,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1489.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,3,105093,2,2,2,0,1,,359.0,336.0,32,1.0,0.0,4.0,4.0,2.3,2,2,1338.93683843776,0.0,19430.352772769318,0,1,2,3,90.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07663267967459449,8447.979466421444,1,1,1_1,1_1_1,1_0_1,1_0_0 -16463,2,71.0,0.0,1,400,360.0,1200.0,0.0,0,75,0.0,0.0,497.582721927335,1560.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,1,121186,2,1,2,0,1,,120.0,285.0,11,0.0,3.0,3.0,1.0,1.0,3,2,1585.01276160204,360.0,17467.0,0,5,2,3,100.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08931127268563577,17467.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -16464,2,42.0,0.0,5,400,720.0,1440.0,0.0,52,52,0.0,0.0,995.16544385467,2160.0,0.0,2611.660177220326,31,0,0,0,0,0,0,0,0,2,5.0,1,,3,106531,2,3,3,0,1,,230.0,328.0,43,2.0,0.0,4.0,4.0,2.5,4,4,1340.9888620824,720.0,36571.17271611013,1,1,2,3,90.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05906291320673151,14628.469086444053,3,2,3_0,3_1_0,3_0_0,3_0_0 -16465,2,81.0,0.0,1,400,1486.0,0.0,0.0,0,90,0.0,0.0,2053.9109021778327,1517.0,53.330137129895945,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,128661,1,2,3,0,2,,67.0,282.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1556.73907783297,1486.0,19499.978578764752,0,5,2,3,86.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07779495725456823,19499.978578764752,5,3,5,5_1,5_0,5_1_0 -16467,2,29.0,0.0,9,400,0.0,0.0,0.0,0,63,0.0,0.0,0.0,814.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,100388,2,1,1,0,1,,301.0,480.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1675.75122354141,0.0,16651.559585051727,0,1,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04888430995561136,16651.559585051727,4,2,4_0,4_1_0,4_0_0,4_0_0 -16468,1,77.0,184.0,1,400,800.0,0.0,0.0,0,77,0.0,0.0,1105.7393820607444,950.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126768,2,1,2,0,1,,168.0,437.0,11,0.0,9.0,3.0,1.0,1.0,3,2,1306.97445153724,800.0,11932.630332768045,0,5,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07961362863904507,11932.630332768045,2,1,2_1,2_1_1,2_0_1,2_1_0 -16469,2,85.0,0.0,2,400,627.0,0.0,0.0,0,86,4541.99161101174,0.0,866.6232406901084,3788.0,206.439240502823,0.0,50,2,2,2,1,2,2,2,2,0,,1,,2,130905,1,2,4,0,2,,157.0,,11,0.0,5.0,9.0,1.0,1.0,1,1,1686.708233814,627.0,47299.26945538449,0,5,0,1,132.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.08008580351485278,47299.26945538449,10,5,10,10_1,10_0,10_0_1 -16470,2,55.0,0.0,5,400,1910.0,0.0,0.0,52,47,0.0,0.0,2639.9527746700273,2060.0,258.04905062852873,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,120166,2,1,2,0,1,,454.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,1357.22782677957,1910.0,40414.31295578786,1,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05097204058011782,26942.87530385857,7,4,7,7_1,7_0,7_0_0 -16471,1,68.0,160.0,1,400,1750.0,2000.0,0.0,77,78,0.0,0.0,2418.8048982578784,3870.0,206.439240502823,3627.3058016948976,71,2,2,2,1,2,2,2,2,0,,1,,1,104589,1,3,3,0,1,,260.0,475.0,41,0.0,4.0,4.0,2.0,1.5,3,3,1610.88682270275,1750.0,20495.55059350986,7,5,2,3,90.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.18882147041346029,13663.700395673239,3,2,3_1,3_1_1,3_0_1,3_1_0 -16472,2,82.0,0.0,1,400,1786.0,0.0,0.0,71,71,0.0,0.0,2468.563170450612,1879.0,159.99041138968784,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117531,2,1,2,0,2,,144.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1525.09541630483,1786.0,20078.16189978824,5,5,0,1,109.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.093584263807526,13385.441266525493,3,2,3_0,3_1_0,3_0_0,3_1_0 -16473,2,86.0,0.0,1,400,240.0,0.0,0.0,77,78,0.0,0.0,331.72181461822333,330.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132981,2,1,2,0,1,,88.0,,41,0.0,12.0,3.0,2.0,1.5,2,2,1401.20458435876,240.0,28202.102749985628,5,5,0,1,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01170125514843634,18801.40183332375,5,3,5,5_1,5_0,5_1_0 -16474,1,49.0,92.0,2,400,1799.0,0.0,0.0,85,55,0.0,62.110350289167464,2486.5314354090992,1949.0,154.82943037711726,0.0,50,2,2,1,1,2,2,2,2,2,35.0,1,,2,125936,1,3,3,0,1,,258.0,294.0,42,1.0,0.0,4.0,3.0,2.0,1,1,1545.34457232845,1799.0,22778.96346661923,7,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.08556139979135159,11389.481733309614,2,1,2_1,2_1_1,2_0_1,2_0_1 -16475,2,79.0,0.0,7,400,1508.0,0.0,0.0,0,77,0.0,0.0,2084.318735184503,1598.0,154.82943037711726,0.0,50,2,2,1,2,2,2,2,1,0,,1,,5,121622,2,1,1,0,1,,116.0,380.0,11,0.0,2.0,5.0,1.0,1.0,2,2,1989.46333674561,1508.0,28227.273342623484,0,5,2,3,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05661191502995803,28227.273342623484,8,4,8,8_1,8_0,8_0_0 -16476,2,23.0,0.0,2,400,750.0,0.0,0.0,0,45,0.0,0.0,1036.630670681948,750.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,50.0,1,,2,112210,1,3,4,0,1,,87.0,355.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1334.63051940911,750.0,23750.665851609236,0,1,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.03157806205038178,23750.665851609236,6,3,6,6_1,6_0,6_0_1 -16477,1,65.0,77.0,5,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2513.0,53.330137129895945,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125147,2,2,2,0,1,,149.0,200.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1422.17893996483,0.0,11835.018348623853,0,5,2,3,66.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.21233596146407374,11835.018348623853,2,1,2_1,2_1_1,2_0_1,2_0_0 -16478,2,49.0,0.0,7,400,344.0,1040.0,0.0,0,52,0.0,0.0,475.4679342861201,1384.0,0.0,1886.1990168813468,50,0,0,0,0,0,0,0,0,0,,1,,5,114948,2,2,2,0,1,,92.0,412.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1172.05936631175,344.0,10702.100872851472,0,4,2,3,81.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12932040320334287,10702.100872851472,2,1,2_0,2_1_0,2_0_0,2_0_0 -16479,2,39.0,0.0,1,400,1000.0,960.0,0.0,53,42,0.0,517.5862524097289,1382.1742275759307,2520.0,103.2196202514115,1741.106784813551,50,2,2,1,2,2,2,2,1,2,2.0,1,,1,113395,2,1,1,0,1,,290.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1472.24146796926,1000.0,53354.740320884666,1,1,1,2,120.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04723104235620458,25407.01920042127,7,4,7,7_1,7_0,7_1_0 -16480,2,73.0,0.0,1,400,1280.0,0.0,0.0,0,71,7706.897965412883,0.0,1769.1830112971911,6550.0,189.2359704609211,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,122870,2,2,3,0,1,,149.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1526.48614260083,1280.0,16945.153887191398,0,5,0,1,250.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.38654119305172274,16945.153887191398,4,2,4_0,4_1_0,4_0_0,4_1_0 -16481,1,46.0,180.0,9,400,1600.0,0.0,0.0,55,11,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,104967,2,1,1,0,1,,230.0,,43,4.0,0.0,6.0,5.0,3.0,1,1,1470.59047110001,1600.0,56316.88034651429,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02841066462054181,18772.293448838096,5,3,5,5_1,5_0,5_0_0 -16482,2,35.0,0.0,1,400,533.0,0.0,0.0,53,48,0.0,310.55175144583734,736.698863297971,2282.0,2492.753829071588,0.0,10,2,2,2,1,2,2,2,2,2,15.0,1,,1,108405,2,2,3,0,2,,248.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1706.06891088944,533.0,79068.35210575855,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02886110484442235,43926.862280976966,10,5,10,10_1,10_0,10_1_0 -16483,2,44.0,0.0,2,400,530.0,0.0,0.0,46,46,0.0,155.27587572291867,732.5523406152432,2130.0,2494.474156075778,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,104918,2,1,1,0,1,,140.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1429.60744678671,530.0,79735.50425932553,1,1,1,2,133.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026713319490305774,37969.28774253597,9,5,9,9_1,9_0,9_0_1 -16484,0,27.0,0.0,2,400,1200.0,0.0,0.0,47,46,0.0,207.03450096389156,1658.6090730911167,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,2,122858,2,1,2,0,1,,180.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1812.49656058467,1200.0,59541.71057707214,1,1,5,0,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023512928776001626,33078.72809837341,8,4,8,8_1,8_0,8_0_1 -16485,2,37.0,0.0,7,400,480.0,0.0,0.0,52,63,2972.2339052658212,310.55175144583734,663.4436292364467,2830.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,131036,2,1,1,0,1,,180.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1321.45531579877,480.0,45459.871530102435,1,1,1,2,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06225270562249702,21647.557871477347,6,3,6,6_1,6_0,6_0_0 -16486,2,79.0,0.0,2,400,280.0,0.0,0.0,0,77,2043.224111760625,0.0,387.00878372126056,1679.0,53.330137129895945,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,132115,2,1,1,0,1,,156.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1683.48072157407,280.0,16112.002636917576,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1042080266392765,16112.002636917576,4,2,4_0,4_1_0,4_0_0,4_0_1 -16487,2,76.0,0.0,2,400,342.0,1790.0,0.0,0,75,0.0,155.27587572291867,472.7035858309682,2402.0,206.439240502823,3246.4386925169333,31,0,0,0,0,0,0,0,0,0,,1,,2,115641,2,1,2,0,1,,91.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1683.48072157407,342.0,31896.89680017311,0,5,0,1,82.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07530513124985137,31896.89680017311,8,4,8,8_1,8_0,8_0_1 -16488,2,68.0,0.0,1,400,268.0,1420.0,0.0,77,77,0.0,51.75862524097289,370.4226929903494,1738.0,0.0,2575.3871192033776,60,0,0,0,0,0,0,0,0,0,,1,,1,130516,2,2,3,0,1,,112.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1456.25549945481,268.0,27613.12020074764,5,5,0,1,75.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06294109421045951,18408.746800498426,4,2,4_0,4_1_0,4_0_0,4_1_0 -16489,2,66.0,0.0,2,400,1141.0,0.0,0.0,0,75,0.0,0.0,1577.0607936641368,1203.0,106.66027425979189,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129320,2,1,2,0,1,,134.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1649.16126577711,1141.0,23949.546113512562,0,5,0,1,118.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050230597035041756,23949.546113512562,6,3,6,6_1,6_0,6_0_1 -16490,2,44.0,0.0,1,300,510.0,0.0,0.0,56,11,0.0,0.0,704.9088560637246,1510.0,1720.3270041901917,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110690,2,1,1,0,1,,300.0,,43,2.0,1.0,9.0,6.0,3.3,2,2,1036.26255279222,510.0,33509.872470782706,1,1,1,2,200.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045061347258679385,10154.506809328093,2,1,2_0,2_1_0,2_0_0,2_1_0 -16491,2,42.0,0.0,1,300,840.0,0.0,0.0,55,62,0.0,621.1035028916747,1161.0263511637818,1500.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,133206,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,884.207454259456,840.0,37215.525817356654,1,1,1,2,95.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04030575860627574,17721.678960646026,4,2,4_0,4_1_0,4_0_0,4_1_0 -16492,2,24.0,0.0,2,300,900.0,0.0,0.0,42,69,0.0,0.0,1243.9568048183376,980.0,137.62616033521533,0.0,10,2,2,2,2,2,1,2,2,0,,1,,2,106356,1,2,3,0,2,,250.0,420.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1186.37999833766,900.0,31842.627189222156,1,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.03077635504685062,21228.418126148103,5,3,5,5_1,5_0,5_0_1 -16493,2,55.0,0.0,1,300,700.0,0.0,0.0,11,11,0.0,0.0,967.5219593031513,800.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,116210,2,1,2,0,1,,393.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,854.660223095303,700.0,62398.244106334416,1,1,0,1,240.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012820873591197532,41598.829404222946,9,5,9,9_1,9_0,9_1_0 -16494,2,64.0,0.0,5,300,0.0,0.0,0.0,78,78,2240.377315527001,0.0,0.0,2054.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,112790,2,1,2,0,1,,261.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1041.51433202879,0.0,27089.203335287337,5,5,0,1,137.0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07582356611146214,18059.468890191558,4,2,4_0,4_1_0,4_0_0,4_0_0 -16495,1,33.0,40.0,1,300,960.0,1120.0,0.0,0,67,0.0,0.0,1326.8872584728933,2080.0,0.0,2031.2912489491428,43,1,2,2,1,2,2,2,2,2,20.0,1,,1,130878,2,2,3,0,1,,160.0,425.0,12,1.0,1.0,5.0,1.0,1.0,2,2,1120.89483305668,960.0,16866.171237096616,0,1,2,3,100.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.12332378052851171,16866.171237096616,4,2,4_1,4_1_1,4_0_1,4_1_0 -16496,2,52.0,0.0,7,300,591.0,975.0,0.0,45,52,0.0,0.0,816.864968497375,1566.0,0.0,1768.3115783262626,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,104700,2,1,2,0,1,,345.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,978.000775716946,591.0,49426.669568356716,1,1,1,2,130.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031683300001312725,19770.667827342688,5,3,5,5_1,5_0,5_0_0 -16497,2,36.0,0.0,1,300,680.0,750.0,0.0,43,47,0.0,0.0,939.8784747516328,1430.0,0.0,1360.2396756355868,70,0,0,0,0,0,0,0,0,0,,8,,1,121488,2,1,0,1,1,750.0,200.0,416.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1423.81577916944,680.0,51073.00370257702,1,1,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02799913645822726,28373.890945876123,8,4,8,8_0,8_0,8_1_0 -16498,2,38.0,0.0,1,300,1200.0,0.0,0.0,0,38,0.0,227.73795106028072,1658.6090730911167,1420.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,1,104459,1,1,2,0,1,,130.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,997.861057965713,1200.0,29041.81826634281,0,1,1,2,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0488950101876255,29041.81826634281,8,4,8,8_1,8_0,8_1_0 -16499,0,30.0,0.0,1,300,640.0,1850.0,0.0,63,62,0.0,41.40690019277831,884.5915056485956,2530.0,0.0,3355.2578665677806,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,118343,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1135.19526291874,640.0,47824.19043432694,1,1,5,0,130.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052902097809146245,26568.99468573719,7,4,7,7_1,7_0,7_1_0 -16500,2,52.0,0.0,2,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1715.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,2,128509,2,2,5,0,1,,301.0,480.0,32,1.0,1.0,4.0,2.0,1.5,1,1,1049.60991561923,0.0,33623.786410814704,0,1,2,3,100.0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05100555835818627,22415.857607209804,6,3,6,6_1,6_0,6_0_1 -16501,2,53.0,0.0,1,300,1075.0,0.0,0.0,0,63,0.0,0.0,1485.8372946441254,1075.0,0.0,0.0,20,1,2,2,1,2,2,2,1,2,10.0,1,,1,107454,2,2,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1252.39063066104,1075.0,22089.49217273114,0,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04866567287260037,22089.49217273114,6,3,6,6_1,6_0,6_1_0 -16502,2,76.0,0.0,2,300,492.0,1145.0,0.0,0,77,0.0,82.81380038555662,680.0297199673578,1717.0,0.0,2076.632571470329,50,0,0,0,0,0,0,0,0,0,,1,,2,122001,1,1,1,0,1,,182.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,1049.28168963251,492.0,20032.433974269068,0,5,0,1,100.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08571100257739145,20032.433974269068,5,3,5,5_1,5_0,5_0_1 -16503,2,84.0,0.0,1,300,1140.0,0.0,0.0,71,71,0.0,0.0,1575.678619436561,1240.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,107146,2,1,3,0,1,,180.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,880.84458652313,1140.0,33374.73397867666,5,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03715385419378157,22249.82265245111,6,3,6,6_1,6_0,6_1_0 -16504,1,37.0,300.0,2,300,1400.0,0.0,0.0,85,63,2240.377315527001,0.0,1935.0439186063027,3168.0,258.04905062852873,0.0,41,1,2,2,1,1,2,2,2,0,,1,,2,120802,2,1,3,0,1,,244.0,490.0,42,1.0,2.0,8.0,5.0,2.8,2,2,1121.97692466271,1400.0,43138.35171262681,6,1,3,4,180.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.07343813275723074,15406.554183081005,3,2,3_1,3_1_1,3_0_1,3_0_1 -16505,2,52.0,0.0,1,300,400.0,0.0,0.0,0,52,0.0,0.0,552.8696910303722,500.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129592,2,1,4,0,1,,80.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,963.487208001584,400.0,25086.527239190094,0,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019931016965110324,16724.351492793397,4,2,4_0,4_1_0,4_0_0,4_1_0 -16506,2,59.0,0.0,1,300,2100.0,0.0,0.0,11,63,0.0,414.0690019277831,2902.5658779094542,2620.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,116107,2,2,3,0,1,,345.0,,43,3.0,4.0,5.0,3.0,2.0,2,1,912.597922907326,2100.0,47084.05485070943,1,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055645164977980305,23542.027425354714,6,3,6,6_1,6_0,6_1_0 -16507,2,42.0,0.0,1,300,840.0,0.0,0.0,55,63,3733.962192545002,0.0,1161.0263511637818,3400.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,104311,2,1,3,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,977.860335297212,840.0,50988.63833700059,1,1,1,2,160.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06668152182312238,24280.30397000028,7,4,7,7_1,7_0,7_1_0 -16509,2,89.0,0.0,1,300,2000.0,0.0,0.0,0,71,0.0,0.0,2764.3484551518613,2100.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107921,2,2,4,0,1,,250.0,229.0,21,0.0,2.0,4.0,2.0,1.5,1,1,1108.84343388751,2000.0,31979.910176071393,0,5,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0656662257160216,21319.940117380927,6,3,6,6_1,6_0,6_1_0 -16510,2,81.0,0.0,1,300,180.0,0.0,0.0,0,71,2987.1697540360015,0.0,248.7913609636675,2240.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,114002,2,2,4,0,2,,120.0,,11,0.0,1.0,6.0,1.0,1.0,4,3,1132.99588868061,180.0,9011.896063942097,0,5,0,1,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24856034558172113,9011.896063942097,1,1,1_0,1_1_0,1_0_0,1_1_0 -16511,2,58.0,0.0,5,300,750.0,0.0,0.0,77,63,2987.1697540360015,0.0,1036.630670681948,2810.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,3,119352,2,1,2,0,2,,200.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,926.064105717196,750.0,91653.2134230248,5,1,0,1,71.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03065904505748711,61102.14228201654,10,5,10,10_1,10_0,10_0_0 -16512,2,45.0,0.0,1,300,1100.0,0.0,0.0,12,43,0.0,0.0,1520.3916503335236,2389.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,116851,1,2,3,0,1,,300.0,408.0,43,2.0,0.0,4.0,4.0,2.1,4,3,994.163861185932,1100.0,23472.040311992187,1,1,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10178067045920278,11177.162053329612,2,1,2_0,2_1_0,2_0_0,2_1_0 -16513,2,67.0,0.0,2,300,506.0,0.0,0.0,77,78,4458.350857898732,0.0,699.3801591534209,3641.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,114633,2,2,1,0,1,,309.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,902.54841181924,506.0,39179.93087568484,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09293023031491904,26119.953917123228,7,4,7,7_1,7_0,7_0_1 -16514,2,51.0,0.0,7,300,1200.0,0.0,0.0,67,52,0.0,155.27587572291867,1658.6090730911167,1530.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,122488,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.5,3,3,977.860335297212,1200.0,41086.96633169084,1,1,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03723808634710258,16434.786532676335,4,2,4_0,4_1_0,4_0_0,4_0_0 -16515,0,40.0,0.0,1,300,594.0,0.0,0.0,52,11,0.0,0.0,821.0114911801028,674.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,130132,1,1,2,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1078.7885379115,594.0,35089.0,1,1,5,0,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019208298897090255,16709.04761904762,4,2,4_0,4_1_0,4_0_0,4_1_0 -16516,2,39.0,0.0,9,300,1918.0,0.0,0.0,62,68,0.0,0.0,2651.010168490635,1918.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,121420,2,1,1,0,1,,410.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,925.268734158471,1918.0,36442.111627980245,1,4,1,2,116.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05263141772847653,17353.3864895144,4,2,4_0,4_1_0,4_0_0,4_0_0 -16517,2,65.0,0.0,1,300,2000.0,0.0,0.0,71,71,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115757,2,1,1,0,1,,300.0,,41,0.0,4.0,9.0,2.0,1.5,2,2,1060.95968480531,2000.0,35411.610752099165,5,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05647865085836125,23607.740501399443,6,3,6,6_1,6_0,6_1_0 -16518,2,67.0,0.0,1,300,0.0,0.0,0.0,71,71,0.0,0.0,0.0,1686.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106283,2,1,2,0,1,,165.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1041.51433202879,0.0,28140.934182435914,5,5,0,1,100.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05991272319070034,18760.62278829061,5,3,5,5_1,5_0,5_1_0 -16519,2,65.0,0.0,1,300,400.0,0.0,0.0,0,71,0.0,0.0,552.8696910303722,460.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109751,2,2,4,0,1,,30.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1151.22225698452,400.0,11168.19053090637,0,5,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041188409055792505,11168.19053090637,2,1,2_0,2_1_0,2_0_0,2_1_0 -16520,2,81.0,0.0,1,300,0.0,0.0,0.0,0,71,2987.1697540360015,0.0,0.0,2257.0,68.81308016760767,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,125733,2,2,4,0,1,,200.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1009.08877218888,0.0,11158.862769805224,0,5,0,1,50.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.202260754214777,11158.862769805224,2,1,2_0,2_1_0,2_0_0,2_1_0 -16521,2,77.0,0.0,1,111,478.0,0.0,0.0,77,78,2091.018827825201,0.0,660.6792807812948,2028.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115400,1,2,1,0,2,,267.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1506.34666496893,478.0,27311.504865871335,5,5,0,1,80.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07425442171567061,18207.66991058089,4,2,4_0,4_1_0,4_2_0,4_1_0 -16522,2,62.0,0.0,2,111,162.0,444.0,0.0,0,75,0.0,0.0,223.91222486730075,606.0,0.0,805.2618879762673,70,0,0,0,0,0,0,0,0,0,,2,,2,123430,2,1,0,0,1,,0.0,233.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1737.07526214738,162.0,21782.0,0,5,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027821136718391332,21782.0,6,3,6,6_0,6_2,6_0_1 -16523,1,72.0,100.0,2,111,550.0,600.0,0.0,0,78,0.0,0.0,760.1958251667618,1811.0,0.0,1088.1917405084694,42,0,0,0,0,0,0,0,0,0,,2,,2,111312,2,1,0,1,1,,0.0,347.0,21,1.0,0.0,4.0,2.0,1.5,2,2,1822.21466396641,550.0,23123.233843514667,0,5,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0783194951128312,15415.489229009778,3,2,3_1,3_0_1,3_2_1,3_0_1 -16524,1,32.0,150.0,2,111,400.0,0.0,0.0,85,62,0.0,0.0,552.8696910303722,500.0,172.03270041901916,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,131277,2,1,0,1,1,,0.0,350.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1646.71044040256,400.0,24421.026668823324,6,1,2,3,50.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02047415969772951,10175.427778676385,2,1,2_1,2_0_1,2_2_1,2_0_1 -16525,1,20.0,90.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,131890,2,1,0,0,1,,0.0,387.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3057.84079588753,0.0,12693.712750009283,0,2,2,3,24.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023633747344706583,12693.712750009283,2,1,2_1,2_0_1,2_2_1,2_0_1 -16526,1,50.0,54.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,603.0,0.0,0.0,20,2,1,2,2,2,2,2,1,0,,2,,3,115838,2,2,0,1,1,,0.0,345.0,11,0.0,2.0,2.0,1.0,1.0,3,3,1616.55964487831,0.0,1753.3559890300287,0,7,2,3,45.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.34391190595218757,1753.3559890300287,1,1,1_1,1_0_1,1_2_1,1_0_0 -16527,1,68.0,112.0,2,111,450.0,0.0,0.0,0,77,0.0,0.0,621.9784024091688,495.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,107901,2,2,0,1,1,,0.0,210.0,11,0.0,0.0,2.0,1.0,1.0,2,2,2157.3085794621,450.0,10268.825864398294,0,5,2,3,36.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04820414782922261,10268.825864398294,2,1,2_1,2_0_1,2_2_1,2_0_1 -16528,2,97.0,0.0,2,111,546.0,654.0,0.0,75,72,0.0,0.0,754.6671282564581,1200.0,0.0,1186.1289971542317,50,0,0,0,0,0,0,0,0,0,,8,,2,132323,2,1,0,0,1,,267.0,,41,0.0,0.0,3.0,2.0,1.5,3,3,2007.31662902614,546.0,78310.29367497451,5,5,0,1,67.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015323655980407616,52206.86244998301,10,5,10,10_0,10_2,10_0_1 -16529,1,21.0,345.0,1,111,345.0,464.0,0.0,0,67,0.0,0.0,476.85010851369606,809.0,0.0,841.5349459932163,71,0,0,0,0,0,0,0,0,0,,2,,1,132809,1,2,0,1,2,,237.0,450.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2261.53863827691,345.0,9247.839795771708,0,1,2,3,97.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08747988912717655,9247.839795771708,1,1,1_1,1_0_1,1_2_1,1_1_0 -16530,2,31.0,0.0,2,111,878.0,543.0,0.0,85,38,0.0,0.0,1213.5489718116671,1421.0,0.0,984.8135251601648,43,0,0,0,0,0,0,0,0,0,,2,,2,123180,2,3,0,0,1,,0.0,540.0,42,1.0,0.0,3.0,3.0,1.8,2,2,2417.22453420048,878.0,35109.59067285703,6,4,2,3,78.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04047327162656341,19505.32815158724,5,3,5,5_0,5_2,5_0_1 -16531,2,51.0,0.0,2,111,500.0,800.0,0.0,0,42,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,1,4.0,1,,2,132435,2,2,3,0,1,,400.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1673.06381786132,500.0,27624.69106033765,0,1,1,2,79.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047059349809941746,27624.69106033765,7,4,7,7_1,7_2,7_0_1 -16532,2,35.0,0.0,7,111,735.0,0.0,0.0,0,54,0.0,0.0,1015.898057268309,735.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,5.0,2,,5,133297,2,2,0,0,1,,0.0,466.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2099.76535269871,735.0,23998.206839030812,0,1,2,3,45.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.030627288319083578,23998.206839030812,6,3,6,6_0,6_2,6_0_0 -16533,2,80.0,0.0,6,111,537.0,840.0,0.0,86,78,0.0,0.0,742.2275602082747,1377.0,0.0,1523.468436711857,10,0,0,0,0,0,0,0,0,0,,1,,4,102522,2,1,2,0,1,,345.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1444.69913314237,537.0,14106.078343295667,7,5,0,1,87.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09761749272110488,9404.052228863779,1,1,1_0,1_1_0,1_2_0,1_0_0 -16534,2,40.0,0.0,7,111,675.0,567.0,0.0,64,54,0.0,0.0,932.9676036137531,1242.0,0.0,1028.3411947805034,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,125174,2,1,2,0,1,,345.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1537.72083829751,675.0,67045.83794546714,1,1,1,2,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01852463982939853,37247.687747481745,9,5,9,9_1,9_2,9_0_0 -16535,2,26.0,0.0,9,111,490.0,300.0,0.0,84,46,0.0,0.0,677.265371512206,790.0,0.0,544.0958702542347,10,0,0,0,0,0,0,0,0,2,65.0,2,2004.0,6,112982,2,1,0,1,1,,0.0,530.0,42,1.0,0.0,3.0,2.0,1.5,2,2,2024.43639617282,490.0,17291.778234448975,3,1,2,3,55.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04568645221381272,11527.852156299317,2,1,2_0,2_0_0,2_2_0,2_0_0 -16536,1,37.0,64.0,2,111,500.0,600.0,0.0,85,62,0.0,0.0,691.0871137879653,1100.0,0.0,1088.1917405084694,50,2,2,2,2,1,2,2,2,0,,2,,2,116761,2,3,0,0,1,,300.0,160.0,42,1.0,0.0,3.0,4.0,2.1,1,1,1526.38676659648,500.0,5216.554116308141,6,4,2,3,45.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.21086716929881902,2484.0733887181623,1,1,1_1,1_0_1,1_2_1,1_0_1 -16537,1,45.0,108.0,5,111,780.0,0.0,0.0,0,63,0.0,258.79312620486445,1078.0958975092258,1030.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,103428,2,2,5,0,1,,167.0,320.0,12,1.0,0.0,2.0,1.0,1.0,5,3,1446.52511173744,780.0,3073.0545295867405,0,4,2,3,47.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.33517140359319064,3073.0545295867405,1,1,1_1,1_1_1,1_2_1,1_0_0 -16538,2,65.0,0.0,1,111,570.0,0.0,0.0,52,78,1792.3018524216009,0.0,787.8393097182804,1770.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111449,2,1,1,0,1,,256.0,,42,1.0,2.0,6.0,2.0,1.5,3,2,1478.31844707514,570.0,37750.64652596028,1,5,0,1,96.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046886614214217776,25167.09768397352,7,4,7,7_1,7_2,7_1_0 -16539,2,35.0,0.0,2,111,0.0,0.0,0.0,81,47,0.0,0.0,0.0,793.0,0.0,0.0,44,2,2,2,2,1,2,2,2,2,10.0,1,,2,112961,1,2,5,0,2,,359.0,345.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1366.80505787701,0.0,19070.638743047613,4,1,2,3,56.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.04158224644096391,10594.799301693118,2,1,2_0,2_1_0,2_2_0,2_0_1 -16540,2,59.0,0.0,9,111,0.0,0.0,0.0,86,37,0.0,0.0,0.0,2639.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,119443,2,1,1,0,1,,215.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1488.51890822213,0.0,162407.4060052108,6,1,1,2,145.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016249258977237335,108271.60400347387,10,5,10,10_1,10_2,10_0_0 -16541,2,83.0,0.0,2,111,457.0,567.0,0.0,0,72,0.0,0.0,631.6536220022002,1024.0,0.0,1028.3411947805034,50,0,0,0,0,0,0,0,0,0,,1,,2,131074,2,2,2,0,2,,356.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1522.91132511125,457.0,15482.715361602026,0,5,0,1,110.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0661382694239523,15482.715361602026,3,2,3_0,3_1_0,3_2_0,3_0_1 -16542,2,22.0,0.0,2,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,1970.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,,2,103047,2,1,0,1,1,284.0,127.0,0.0,43,2.0,0.0,4.0,2.0,1.5,4,3,560.768560875564,0.0,37865.81063788172,1,1,2,3,65.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05202582400359792,25243.87375858781,7,4,7,7_0,7_2,7_0_1 -16543,2,60.0,0.0,5,111,478.0,578.0,0.0,56,78,0.0,0.0,660.6792807812948,1173.0,0.0,1048.2913766898255,60,1,2,1,1,1,1,2,2,0,,1,,3,110661,2,2,1,0,1,,345.0,348.0,42,1.0,3.0,4.0,2.0,1.5,1,1,1284.26164663002,478.0,16761.58207132507,1,7,2,3,50.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.06998146087932318,11174.388047550046,2,1,2_0,2_1_0,2_2_0,2_0_0 -16544,2,75.0,0.0,2,111,567.0,619.0,0.0,0,56,0.0,0.0,783.6927870355527,1186.0,0.0,1122.651145624571,50,0,0,0,0,0,0,0,0,0,,1,,2,111182,2,1,1,0,1,,267.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1297.45996035551,567.0,25302.251447426563,0,4,0,1,103.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04687329910005402,25302.251447426563,7,4,7,7_1,7_2,7_0_1 -16546,2,54.0,0.0,5,111,400.0,600.0,0.0,52,52,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,31,1,1,2,2,2,2,2,1,2,5.0,2,,3,130334,2,1,0,1,1,,0.0,437.0,43,2.0,3.0,6.0,3.0,2.0,1,1,558.141110690357,400.0,34114.93407521141,1,1,2,3,102.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02931267572715669,17057.467037605704,4,2,4_0,4_0_0,4_2_0,4_0_0 -16547,2,81.0,0.0,5,111,1100.0,0.0,0.0,0,77,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,119648,2,2,2,0,1,,267.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1487.12591040679,1100.0,16548.674547504663,0,5,0,1,87.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06647058027773388,16548.674547504663,4,2,4_0,4_1_0,4_2_0,4_0_0 -16548,1,46.0,309.0,6,111,400.0,0.0,0.0,0,56,0.0,0.0,552.8696910303722,745.0,344.06540083803833,0.0,30,2,2,2,1,2,2,2,2,0,,2,,4,103822,1,3,0,1,2,809.0,0.0,126.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1801.84317330723,400.0,9523.57711161395,0,1,2,3,63.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.07822690899320557,7325.828547395346,1,1,1_1,1_0_1,1_2_1,1_0_0 -16549,2,64.0,0.0,2,111,789.0,0.0,0.0,72,72,0.0,0.0,1090.5354655574092,939.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119480,2,1,2,0,1,,369.0,,41,0.0,0.0,6.0,2.0,1.5,2,1,1495.06907988897,789.0,85557.42672637156,5,5,0,1,96.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010975084641139282,57038.284484247706,10,5,10,10_1,10_2,10_0_1 -16550,2,52.0,0.0,5,211,890.0,0.0,0.0,0,54,0.0,0.0,1230.1350625425782,890.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,103841,1,2,5,0,1,,180.0,520.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1737.94946153389,890.0,19861.1186941996,0,1,2,3,40.0,3,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04481117170202113,19861.1186941996,5,3,5,5_1,5_1,5_0_0 -16551,1,22.0,240.0,2,211,335.0,36.0,0.0,63,68,0.0,621.1035028916747,463.0283662379367,971.0,0.0,65.29150443050816,20,0,0,0,0,0,0,0,0,2,7.0,2,,2,119493,1,3,0,1,1,760.0,0.0,227.0,43,2.0,1.0,3.0,2.0,1.5,5,5,1822.70548360095,335.0,4764.517243606362,4,1,2,3,60.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.20379819200004193,3176.344829070908,1,1,1_1,1_0_1,1_1_1,1_0_1 -16552,2,88.0,0.0,2,211,763.0,1733.0,0.0,0,86,0.0,0.0,1054.598935640435,2496.0,0.0,3143.060477168629,50,0,0,0,0,0,0,0,0,0,,1,,2,131356,2,1,2,0,2,,272.0,,11,0.0,5.0,7.0,1.0,1.0,1,1,1557.45949108617,763.0,41291.71953932858,0,6,0,1,160.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.060447954888937665,41291.71953932858,9,5,9,9_1,9_1,9_0_1 -16553,2,87.0,0.0,2,211,130.0,1257.0,0.0,0,72,0.0,0.0,179.68264958487097,1387.0,0.0,2279.761696365243,31,0,0,0,0,0,0,0,0,0,,2,,2,120803,1,3,0,0,2,,110.0,430.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2609.67586500245,130.0,20774.0,0,5,2,3,90.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06676614999518629,20774.0,5,3,5,5_0,5_1,5_0_1 -16554,1,55.0,243.0,2,211,270.0,700.0,0.0,0,77,0.0,0.0,373.1870414455012,970.0,0.0,1269.5570305932142,60,0,0,0,0,0,0,0,0,0,,8,,2,120378,2,1,0,0,1,,300.0,270.0,11,0.0,3.0,4.0,1.0,1.0,2,2,2019.04688321292,270.0,11937.031044902682,0,7,2,3,65.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08125973672609377,11937.031044902682,2,1,2_1,2_0_1,2_1_1,2_0_1 -16555,2,84.0,0.0,1,211,596.0,0.0,0.0,77,74,0.0,0.0,823.7758396352547,716.0,206.439240502823,0.0,41,2,2,2,1,2,2,2,2,0,,1,,1,120791,1,2,3,0,2,,400.0,,41,0.0,2.0,8.0,2.0,1.5,1,1,1568.81553193228,596.0,76448.13037970164,5,5,0,1,180.0,3,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.009365827476012558,50965.42025313443,10,5,10,10_1,10_1,10_1_0 -16556,2,59.0,0.0,6,211,2014.0,0.0,0.0,0,62,0.0,0.0,2783.6988943379242,2074.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,120410,2,1,2,0,1,,240.0,,12,1.0,4.0,6.0,1.0,1.0,2,2,1584.54639609459,2014.0,29172.452069602292,0,1,0,1,98.0,3,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07109446936622475,29172.452069602292,8,4,8,8_1,8_1,8_0_0 -16557,1,44.0,193.0,5,211,545.0,0.0,0.0,0,64,0.0,0.0,753.2849540288821,545.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,111796,1,3,0,0,2,,212.0,255.0,12,1.0,0.0,1.0,1.0,1.0,5,4,2379.93070506993,545.0,10341.312765926,0,4,3,4,25.0,3,3,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05270123942056389,10341.312765926,2,1,2_1,2_0_1,2_1_1,2_0_0 -16558,1,34.0,383.0,2,211,290.0,270.0,0.0,67,55,0.0,1028.961469790541,400.8305259970199,1554.0,0.0,489.6862832288112,50,0,0,0,0,0,0,0,0,2,5.0,8,,2,133166,2,1,0,1,1,994.0,0.0,395.0,43,2.0,0.0,5.0,5.0,2.4,2,2,459.06921327002,290.0,19698.88858597722,4,1,2,3,62.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07888769933478505,8207.870244157175,1,1,1_1,1_0_1,1_1_1,1_0_1 -16559,1,67.0,63.0,2,211,110.0,0.0,0.0,0,78,0.0,0.0,152.03916503335236,142.0,55.050464134086134,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,104522,2,1,0,1,1,481.0,209.0,261.0,11,0.0,2.0,3.0,1.0,1.0,2,2,631.958404501678,110.0,11508.476195172254,0,5,2,3,44.0,3,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012338731695823316,11508.476195172254,2,1,2_1,2_0_1,2_1_1,2_0_1 -16560,1,64.0,142.0,2,211,400.0,93.0,0.0,0,77,0.0,626.279365415772,552.8696910303722,1098.0,0.0,168.66971977881275,41,0,0,0,0,0,0,0,0,0,,2,,2,108769,2,3,0,1,1,,236.0,282.0,11,0.0,3.0,4.0,1.0,1.0,2,2,628.88380507549,400.0,10690.606935018463,0,5,2,3,80.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10270698442792423,10690.606935018463,2,1,2_1,2_0_1,2_1_1,2_0_1 -16561,1,74.0,186.0,2,211,113.0,246.0,0.0,0,78,0.0,0.0,156.18568771608017,488.0,0.0,446.1586136084724,41,0,0,0,0,0,0,0,0,0,,2,,2,129454,2,1,0,1,1,49.0,158.0,225.0,11,0.0,8.0,2.0,1.0,1.0,2,2,681.868452496739,113.0,8656.4317515779,0,5,2,3,38.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.056374267597159425,8656.4317515779,1,1,1_1,1_0_1,1_1_1,1_0_1 -16562,2,55.0,0.0,2,211,0.0,0.0,1500.0,56,77,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,70,0,0,0,0,0,0,0,0,0,,1,,2,101454,2,1,1,0,1,,200.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,1356.54127733895,0.0,27954.778406822552,1,5,0,1,90.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053658089438974585,18636.5189378817,4,2,4_0,4_1_0,4_1_0,4_0_1 -16563,1,54.0,163.0,2,211,710.0,0.0,0.0,56,78,4480.754631054002,0.0,981.3437015789107,3810.0,172.03270041901916,0.0,31,2,2,2,2,1,2,2,2,0,,1,,2,103453,1,1,3,0,1,,266.0,534.0,42,3.0,1.0,5.0,4.0,2.5,4,2,1389.31226297401,710.0,31303.98340439586,1,7,2,3,150.0,3,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.12170975018677593,12521.593361758345,2,1,2_1,2_1_1,2_1_1,2_0_1 -16564,2,79.0,0.0,2,211,330.0,0.0,0.0,86,78,2091.018827825201,0.0,456.1174951000571,1910.0,309.6588607542345,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,125863,2,1,2,0,1,,106.0,220.0,41,0.0,0.0,4.0,2.0,1.5,2,2,1807.21136026371,330.0,19812.040045993486,6,5,2,3,73.0,3,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09640602358797735,13208.02669732899,2,1,2_0,2_1_0,2_1_0,2_0_1 -16565,2,47.0,0.0,2,111,970.0,0.0,0.0,0,37,2240.377315527001,0.0,1340.7090007486527,2520.0,86.01635020950958,0.0,70,2,2,1,1,2,2,2,2,2,2.0,1,,2,104928,2,1,4,0,1,,420.0,,32,1.0,0.0,7.0,3.0,2.0,1,1,1648.73239327139,970.0,35671.362104065665,0,1,0,1,120.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07064490536269097,17835.681052032833,4,2,4_0,4_1_0,4_2_0,4_0_1 -16566,2,83.0,0.0,1,111,350.0,900.0,0.0,0,78,0.0,0.0,483.76097965157567,1250.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,0,,1,,1,119130,2,2,2,0,2,,300.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1448.56001936274,350.0,22823.405604574953,0,5,0,1,80.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05476833833025504,22823.405604574953,6,3,6,6_1,6_2,6_1_0 -16567,1,41.0,370.0,2,111,400.0,1400.0,0.0,0,67,0.0,0.0,552.8696910303722,1800.0,0.0,2539.1140611864284,41,2,2,2,1,2,2,2,2,0,,2,,2,115631,2,3,0,0,1,,367.0,325.0,32,1.0,0.0,4.0,4.0,2.1,2,2,490.624029638089,400.0,23706.239768113453,0,4,2,3,70.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,1,0,1,0.0759293762995313,11288.685603863549,2,1,2_1,2_0_1,2_2_1,2_0_1 -16568,1,50.0,55.0,7,111,0.0,0.0,2248.0,74,22,0.0,124.22070057833493,1148.5331767147563,2368.0,0.0,2570.0165014191157,60,0,0,0,0,0,0,0,0,0,,1,,5,120745,2,2,2,0,1,,450.0,650.0,42,1.0,2.0,4.0,3.0,2.0,3,2,1751.75672288109,0.0,43621.18327362921,5,1,2,3,97.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05428555170422332,21810.591636814606,6,3,6,6_1,6_2,6_0_0 -16569,2,87.0,0.0,2,111,350.0,85.0,0.0,0,75,0.0,0.0,483.76097965157567,435.0,0.0,154.16049657203317,50,1,2,2,1,2,2,2,2,0,,2,,2,112617,1,2,0,1,2,580.0,270.0,478.0,11,0.0,2.0,4.0,1.0,1.0,4,2,2332.88026341852,350.0,22161.64976644206,0,5,2,3,70.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01962850259725213,22161.64976644206,6,3,6,6_0,6_2,6_0_1 -16570,2,64.0,0.0,1,111,1250.0,0.0,0.0,77,78,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,103754,2,1,3,0,1,,470.0,,41,1.0,3.0,5.0,3.0,2.0,1,1,1552.29476352937,1250.0,55242.73232907445,5,5,0,1,90.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022627410833951825,27621.366164537227,7,4,7,7_1,7_2,7_1_0 -16571,2,79.0,0.0,2,111,750.0,3000.0,0.0,75,74,0.0,0.0,1036.630670681948,6421.0,0.0,5440.958702542347,50,0,0,0,0,0,0,0,0,0,,1,,2,132109,2,1,2,0,1,,360.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1513.53189288447,750.0,59600.972368201576,5,5,0,1,120.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10773314167313391,39733.98157880105,9,5,9,9_1,9_2,9_0_1 -16572,1,75.0,47.0,1,111,200.0,900.0,0.0,0,78,0.0,0.0,276.4348455151861,1100.0,0.0,1632.287610762704,70,2,2,2,2,2,2,2,1,0,,2,,1,103279,2,2,0,0,1,,170.0,235.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1985.96979127299,200.0,13819.664912862705,0,5,2,3,65.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.07959672010398536,13819.664912862705,3,2,3_1,3_0_1,3_2_1,3_1_0 -16573,1,49.0,239.0,2,111,130.0,100.0,0.0,0,67,0.0,0.0,179.68264958487097,230.0,0.0,181.36529008474488,41,2,2,2,2,2,2,2,1,1,20.0,2,,2,116017,2,2,0,1,1,780.0,200.0,213.0,32,2.0,0.0,3.0,2.0,1.5,2,2,486.548430732497,130.0,13104.497100733413,0,1,2,3,50.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.017551226745445094,8736.331400488942,1,1,1_1,1_0_1,1_2_1,1_0_1 -16574,2,35.0,0.0,9,111,1800.0,0.0,0.0,65,68,0.0,238.0896761084753,2487.913609636675,2120.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,120558,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1430.00660028456,1800.0,48086.41469339684,1,1,1,2,120.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04408729603812853,22898.29271114135,6,3,6,6_1,6_2,6_0_0 -16575,2,89.0,0.0,2,111,0.0,0.0,2450.0,78,78,0.0,0.0,1251.7376703519365,2450.0,0.0,2800.952147898947,70,0,0,0,0,0,0,0,0,0,,2,,2,121120,2,1,0,1,1,1545.0,0.0,220.0,41,0.0,5.0,3.0,2.0,1.5,1,1,459.875189704975,0.0,24198.633309398323,5,5,2,3,55.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10124538723633054,16132.422206265548,4,2,4_0,4_0_0,4_2_0,4_0_1 -16576,1,28.0,120.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,664.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125857,2,2,0,1,1,536.0,195.0,225.0,32,1.0,0.0,3.0,2.0,1.3,1,1,475.999292837448,0.0,11248.821058280031,0,4,2,3,53.0,5,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05902840809359688,8652.939275600023,1,1,1_1,1_0_1,1_2_1,1_0_1 -16577,2,89.0,0.0,1,111,519.0,0.0,0.0,0,78,4032.679167948602,0.0,717.348424111908,3309.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126852,2,2,2,0,1,,300.0,,11,0.0,6.0,3.0,1.0,1.0,3,3,1741.28228868356,519.0,19773.922192581027,0,5,0,1,50.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16734161122781716,19773.922192581027,5,3,5,5_1,5_2,5_1_0 -16578,2,49.0,0.0,1,111,720.0,0.0,0.0,0,62,0.0,0.0,995.16544385467,848.0,220.20185653634454,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127875,2,1,2,0,1,,350.0,,22,1.0,2.0,5.0,3.0,2.0,3,3,1428.38484649976,720.0,43322.054411111385,0,1,0,1,85.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019574325629915235,21661.027205555692,6,3,6,6_1,6_2,6_1_0 -16579,2,32.0,0.0,6,111,1650.0,0.0,0.0,46,47,0.0,0.0,2280.5874755002856,1650.0,0.0,0.0,20,2,1,2,2,1,2,2,2,0,,1,,4,119885,2,2,5,0,1,,484.0,525.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1666.58435867734,1650.0,50373.90604564302,1,1,2,3,80.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03275505374756844,27985.503358690567,7,4,7,7_1,7_2,7_0_0 -16580,2,86.0,0.0,2,111,610.0,0.0,0.0,0,77,3883.3206802468017,0.0,843.1262788213177,3210.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,110713,1,1,2,0,2,,340.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1643.70163077117,610.0,23889.473738838064,0,5,0,1,70.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13436880339399757,23889.473738838064,6,3,6,6_1,6_2,6_0_1 -16581,2,66.0,0.0,1,111,399.0,1515.0,0.0,77,78,0.0,258.79312620486445,551.4875168027963,2164.0,0.0,2747.684144783885,50,0,0,0,0,0,0,0,0,0,,1,,1,111835,2,1,1,0,1,,251.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1558.55641781039,399.0,39568.41078647567,5,5,0,1,135.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054690091337700295,26378.940524317117,7,4,7,7_1,7_2,7_1_0 -16582,2,80.0,0.0,2,111,500.0,250.0,0.0,78,78,0.0,0.0,691.0871137879653,750.0,0.0,453.4132252118622,50,0,0,0,0,0,0,0,0,0,,2,,2,116813,2,1,0,0,1,,175.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1886.62931464485,500.0,24462.828188472005,5,5,0,1,71.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030658760884950908,16308.552125648004,4,2,4_0,4_0_0,4_2_0,4_0_1 -16583,2,38.0,0.0,1,111,1080.0,0.0,0.0,46,62,0.0,776.3793786145933,1492.748165782005,1905.0,129.02452531426437,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,132778,2,1,1,0,1,,245.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1408.03104040827,1080.0,44776.38094676991,1,4,1,2,70.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04254475148995764,21322.086165128527,6,3,6,6_1,6_2,6_1_0 -16584,1,60.0,227.0,2,111,160.0,0.0,0.0,0,78,0.0,0.0,221.1478764121489,190.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125136,2,1,0,1,1,365.0,0.0,265.0,11,0.0,3.0,2.0,1.0,1.0,5,3,586.261109126082,160.0,7334.593064149111,0,7,2,3,45.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02590464097165859,7334.593064149111,1,1,1_1,1_0_1,1_2_1,1_0_1 -16585,2,79.0,0.0,2,111,285.0,0.0,0.0,0,78,0.0,0.0,393.9196548591402,340.0,94.61798523046055,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107459,2,1,0,1,1,554.0,0.0,273.0,11,0.0,2.0,3.0,1.0,1.0,3,2,561.924188670906,285.0,15240.990871550304,0,5,2,3,70.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022308260851639457,15240.990871550304,3,2,3_0,3_0_0,3_2_0,3_0_1 -16586,1,48.0,212.0,5,111,250.0,80.0,0.0,0,68,0.0,0.0,345.54355689398267,330.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,133625,2,3,0,1,1,1243.0,0.0,264.0,32,1.0,3.0,4.0,2.0,1.5,2,2,572.541030251634,250.0,11486.6,0,1,2,3,75.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028729127853324744,7657.733333333334,1,1,1_1,1_0_1,1_2_1,1_0_0 -16587,2,64.0,0.0,1,112,900.0,0.0,0.0,0,77,0.0,0.0,1243.9568048183376,1532.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115665,2,1,1,0,1,,0.0,,11,0.0,4.0,7.0,1.0,1.0,2,2,959.440672124527,900.0,24704.94778536217,0,5,0,1,180.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0620118695781142,24704.94778536217,7,4,7,7_1,7_0,7_1_0 -16588,2,58.0,0.0,5,112,750.0,0.0,0.0,56,55,746.7924385090004,543.4655650302153,1036.630670681948,1775.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117870,2,1,2,0,1,,250.0,,43,2.0,2.0,5.0,4.0,2.5,2,2,898.251853356797,750.0,19881.05678983766,1,1,0,1,110.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08928096824849388,7952.422715935065,1,1,1_0,1_1_0,1_0_0,1_0_0 -16589,2,44.0,0.0,8,112,600.0,0.0,0.0,52,62,2688.452778632401,0.0,829.3045365455583,4318.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,109459,2,2,1,0,1,,250.0,,43,2.0,4.0,4.0,3.0,1.8,2,2,1163.71516547071,600.0,49635.0,1,1,1,2,120.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0869950639669588,27575.0,7,4,7,7_1,7_0,7_0_0 -16590,2,42.0,0.0,9,112,1200.0,0.0,0.0,56,65,0.0,414.0690019277831,1658.6090730911167,1660.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,100028,2,1,1,0,1,,560.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,909.389615984915,1200.0,32066.44188715206,1,1,1,2,83.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0517675146448071,12333.246879673872,2,1,2_0,2_1_0,2_0_0,2_0_0 -16591,0,69.0,0.0,1,112,300.0,0.0,0.0,0,71,0.0,0.0,414.65226827277917,390.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,123525,2,3,4,0,1,,120.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1098.91767235127,300.0,16586.810319921853,0,5,0,1,120.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023512658098681232,16586.810319921853,4,2,4_0,4_1_0,4_0_0,4_1_0 -16592,2,86.0,0.0,1,112,640.0,0.0,0.0,77,75,2688.452778632401,0.0,884.5915056485956,2590.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128137,2,2,1,0,1,,375.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,956.015813889503,640.0,29881.863488423456,5,5,0,1,120.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08667464801863488,19921.242325615636,5,3,5,5_1,5_0,5_1_0 -16593,2,56.0,0.0,6,112,1500.0,0.0,0.0,67,46,0.0,103.51725048194578,2073.261341363896,1615.0,25.804905062852875,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,102426,2,1,2,0,1,,200.0,,43,3.0,1.0,6.0,3.0,2.0,4,4,1148.041674955,1500.0,59343.9122938277,1,1,0,1,140.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027214248902291776,29671.95614691385,8,4,8,8_1,8_0,8_0_0 -16594,2,45.0,0.0,1,112,1200.0,0.0,0.0,0,54,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,122242,2,1,4,0,1,,155.0,,32,1.0,0.0,4.0,2.0,1.5,1,1,1094.61685756562,1200.0,35059.835487190045,0,1,1,2,150.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034227199966139286,23373.223658126695,6,3,6,6_1,6_0,6_1_0 -16595,2,34.0,0.0,1,112,2800.0,0.0,0.0,55,62,0.0,414.0690019277831,3870.0878372126053,3260.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,101591,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1123.71571651564,2800.0,39854.4799651814,1,1,0,1,95.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08179757966602694,22141.37775843411,6,3,6,6_1,6_0,6_1_0 -16596,2,56.0,0.0,2,112,0.0,0.0,0.0,85,52,0.0,0.0,0.0,1303.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,115033,2,2,5,0,1,,125.0,350.0,42,1.0,2.0,3.0,2.0,1.5,1,1,1121.9934330302,0.0,35142.97087371732,7,1,2,3,60.0,5,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037077115781764654,23428.64724914488,6,3,6,6_1,6_0,6_0_1 -16597,2,45.0,0.0,1,112,650.0,0.0,0.0,42,34,2987.1697540360015,41.40690019277831,898.4132479243549,2745.0,94.61798523046055,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,101348,1,2,1,0,2,,210.0,,43,2.0,0.0,5.0,2.0,1.5,3,3,1065.53590442209,650.0,57490.725215832565,1,1,0,1,120.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047746832027160534,38327.15014388838,9,5,9,9_1,9_0,9_1_0 -16598,1,48.0,204.0,1,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,2552.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,132063,2,3,4,0,1,,215.0,350.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1105.19026503202,0.0,16148.580810511703,0,1,2,3,63.0,5,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1580324630346965,12421.985238855155,2,1,2_1,2_1_1,2_0_1,2_1_0 -16599,2,53.0,0.0,6,112,1000.0,0.0,0.0,85,62,0.0,310.55175144583734,1382.1742275759307,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,118471,2,1,2,0,1,,350.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,942.684462819164,1000.0,23754.39990170304,6,1,0,1,95.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0547267034898574,15836.26660113536,3,2,3_0,3_1_0,3_0_0,3_0_0 -16600,2,41.0,0.0,1,112,980.0,0.0,0.0,67,48,1493.5848770180007,310.55175144583734,1354.530743024412,2280.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,101405,2,1,4,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,993.591020117539,980.0,46314.59345670536,1,4,1,2,100.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049228543960584084,20136.779763784943,5,3,5,5_1,5_0,5_1_0 -16601,2,34.0,0.0,1,112,770.0,0.0,0.0,63,63,2240.377315527001,0.0,1064.2741552334664,2270.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,12.0,1,,1,122656,2,1,1,0,1,,330.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,879.992699346214,770.0,47612.81939610442,1,1,1,2,160.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04767623570272603,19838.674748376845,5,3,5,5_1,5_0,5_1_0 -16602,1,53.0,250.0,1,112,525.0,0.0,0.0,85,56,4480.754631054002,0.0,725.6414694773636,3625.0,172.03270041901916,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,120373,2,3,4,0,1,,495.0,500.0,42,1.0,8.0,7.0,3.0,1.8,2,2,1325.04662173153,525.0,25359.314793740614,7,1,2,3,130.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.1429455026479955,14088.508218744784,3,2,3_1,3_1_1,3_0_1,3_1_0 -16603,2,54.0,0.0,7,112,700.0,0.0,0.0,0,62,2987.1697540360015,0.0,967.5219593031513,2820.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,5,118951,2,1,1,0,1,,325.0,,22,1.0,0.0,6.0,3.0,2.0,1,1,1116.85535102235,700.0,47628.08335502502,0,1,0,1,150.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059208765109849314,23814.04167751251,6,3,6,6_1,6_0,6_0_0 -16604,1,82.0,260.0,1,112,1450.0,0.0,0.0,0,78,2987.1697540360015,0.0,2004.1526299850993,3450.0,0.0,0.0,31,1,2,2,1,1,2,2,2,0,,1,,1,127615,2,2,5,0,1,,350.0,510.0,21,3.0,1.0,5.0,4.0,2.5,2,2,1135.43283322465,1450.0,22562.00211423348,0,5,2,3,90.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.15291196155963174,9024.800845693393,1,1,1_1,1_1_1,1_0_1,1_1_0 -16605,2,47.0,0.0,9,112,650.0,0.0,0.0,42,48,0.0,0.0,898.4132479243549,728.0,134.18550632683494,0.0,30,2,2,2,1,1,2,2,2,2,20.0,1,2005.0,6,108915,2,1,2,0,1,,0.0,,43,2.0,1.0,4.0,4.0,2.3,2,2,958.409609458134,650.0,99506.92571893544,4,1,0,1,160.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.007316073677688416,43263.88074736324,9,5,9,9_1,9_0,9_0_0 -16606,2,45.0,0.0,1,112,1600.0,0.0,0.0,48,37,821.4716823599003,0.0,2211.478764121489,2200.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,131851,2,1,4,0,1,,468.0,,43,4.0,0.0,6.0,5.0,3.0,1,1,950.153186568799,1600.0,83212.60106283882,1,1,1,2,120.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026438303476881444,27737.53368761294,7,4,7,7_1,7_0,7_1_0 -16607,2,51.0,0.0,5,112,730.0,0.0,0.0,52,62,0.0,414.0690019277831,1008.9871861304293,1190.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,131476,1,2,1,0,1,,330.0,,43,2.0,1.0,5.0,4.0,2.5,3,3,865.743895625325,730.0,55348.81284279928,1,1,0,1,96.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021500009465059658,22139.525137119712,6,3,6,6_1,6_0,6_0_0 -16608,2,61.0,0.0,5,112,300.0,0.0,0.0,0,78,0.0,0.0,414.65226827277917,2550.0,3870.7357594279315,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,127551,1,2,2,0,2,,180.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1058.76722295346,300.0,20005.42716287249,0,5,0,1,80.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1274654112226343,20005.42716287249,5,3,5,5_1,5_0,5_0_0 -16609,2,50.0,0.0,9,112,300.0,1300.0,0.0,0,43,0.0,362.31037668681023,414.65226827277917,1950.0,0.0,2357.7487711016834,31,2,2,2,2,1,1,2,2,0,,1,2008.0,6,124554,2,1,4,0,1,,300.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,1116.80757824456,300.0,33591.60067405432,0,4,0,1,180.0,5,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05805022567757994,33591.60067405432,9,5,9,9_1,9_0,9_0_0 -16610,2,76.0,0.0,1,112,660.0,0.0,0.0,77,72,0.0,0.0,912.2349902001142,715.0,94.61798523046055,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,118393,2,1,2,0,1,,196.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,936.557875702492,660.0,17420.979196397235,5,5,0,1,120.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04104246907934236,11613.98613093149,2,1,2_0,2_1_0,2_0_0,2_1_0 -16611,0,55.0,0.0,1,112,1500.0,0.0,0.0,54,62,0.0,0.0,2073.261341363896,1650.0,258.04905062852873,0.0,10,2,2,2,2,1,1,2,2,2,5.0,1,,1,112515,1,1,3,0,2,,200.0,,43,2.0,3.0,3.0,2.0,1.5,1,1,987.920066706958,1500.0,46166.0,1,1,5,0,90.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03574058831174457,30777.333333333332,8,4,8,8_1,8_0,8_1_0 -16612,2,54.0,0.0,1,112,500.0,90.0,0.0,11,11,2987.1697540360015,0.0,691.0871137879653,2590.0,0.0,163.2287610762704,60,0,0,0,0,0,0,0,0,0,,1,,1,124157,1,2,5,0,1,,80.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,956.015813889503,500.0,39087.45141956292,1,1,0,1,110.0,5,0,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06626167493498253,26058.300946375282,7,4,7,7_1,7_0,7_1_0 -16613,2,69.0,0.0,5,112,300.0,0.0,0.0,78,75,0.0,517.5862524097289,414.65226827277917,2000.0,2064.39240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124891,2,2,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,953.615220852598,300.0,31835.669861563856,5,5,0,1,111.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06282261402687364,21223.77990770924,5,3,5,5_1,5_0,5_0_0 -16614,2,52.0,0.0,7,112,600.0,0.0,0.0,52,48,2240.377315527001,0.0,829.3045365455583,2160.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,7.0,1,,5,121369,2,1,2,0,1,,0.0,,43,2.0,2.0,5.0,3.0,2.0,2,2,1110.5586618342,600.0,47165.168448920274,1,1,0,1,153.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045796507699093096,23582.584224460137,6,3,6,6_1,6_0,6_0_0 -16615,2,44.0,0.0,6,112,650.0,0.0,0.0,52,68,0.0,0.0,898.4132479243549,1090.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,130734,2,1,2,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,943.394488018621,650.0,43337.132381599244,1,1,1,2,75.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025151641100803642,24076.184656444024,6,3,6,6_1,6_0,6_0_0 -16616,1,43.0,100.0,6,112,900.0,0.0,0.0,56,62,1792.3018524216009,621.1035028916747,1243.9568048183376,2770.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,111826,2,1,4,0,1,,400.0,630.0,43,2.0,0.0,6.0,5.0,2.4,4,4,1038.53363967204,900.0,34520.05119234305,1,1,2,3,123.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08024321819703495,14383.354663476273,3,2,3_1,3_1_1,3_0_1,3_0_0 -16617,2,32.0,0.0,9,112,500.0,0.0,0.0,52,63,2240.377315527001,0.0,691.0871137879653,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,113435,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1026.10742569381,500.0,43357.46352245632,1,1,1,2,120.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04612815966423247,20646.411201169674,5,3,5,5_1,5_0,5_0_0 -16618,0,83.0,0.0,1,112,300.0,0.0,0.0,0,71,2987.1697540360015,0.0,414.65226827277917,2380.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,128685,1,1,4,0,2,,0.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,1129.12049309616,300.0,16028.597551643208,0,5,0,1,120.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14848460648735975,16028.597551643208,4,2,4_0,4_1_0,4_0_0,4_1_0 -16619,0,30.0,0.0,1,112,500.0,0.0,0.0,63,62,2987.1697540360015,0.0,691.0871137879653,2620.0,206.439240502823,0.0,20,1,2,2,1,1,1,2,2,2,8.0,1,,1,113199,1,1,3,0,2,,220.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1116.35110971892,500.0,28144.915853720675,1,1,5,0,50.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.09308963699224007,15636.064363178153,3,2,3_0,3_1_0,3_0_0,3_1_0 -16620,2,45.0,0.0,1,112,1500.0,0.0,0.0,56,21,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,127438,2,2,3,0,1,,380.0,,43,3.0,1.0,5.0,6.0,3.5,2,2,1080.35158131308,1500.0,30079.55840865314,1,1,0,1,150.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04986775336331026,8594.159545329469,1,1,1_0,1_1_0,1_0_0,1_1_0 -16621,1,87.0,219.0,2,211,118.0,400.0,0.0,0,86,0.0,0.0,163.0965588539598,546.0,48.169156117325365,725.4611603389795,50,0,0,0,0,0,0,0,0,0,,2,,2,107865,2,2,0,1,1,420.0,100.0,226.0,11,0.0,4.0,2.0,1.0,1.0,2,2,426.455012791831,118.0,9743.349250018422,0,5,2,3,40.0,2,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05603822525390514,9743.349250018422,2,1,2_1,2_0_1,2_1_1,2_0_1 -16622,2,63.0,0.0,8,111,1118.0,0.0,0.0,0,55,0.0,0.0,1545.2707864298904,1118.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,132048,1,3,1,0,1,,186.0,,12,1.0,2.0,3.0,1.0,1.0,3,2,7407.78705452577,1118.0,25477.51127129822,0,4,1,2,73.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0438818371266697,25477.51127129822,7,4,7,7_1,7_2,7_0_0 -16623,2,31.0,0.0,2,211,290.0,600.0,0.0,85,67,0.0,0.0,400.8305259970199,890.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,106141,2,2,0,1,2,600.0,128.0,359.0,42,1.0,0.0,3.0,3.0,1.8,1,1,457.01704207594,290.0,16861.33918951965,6,1,2,3,65.0,2,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05278347051776227,9367.41066084425,1,1,1_0,1_0_0,1_1_0,1_0_1 -16624,1,44.0,233.0,2,221,0.0,0.0,0.0,85,64,0.0,0.0,0.0,836.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,125521,2,1,0,1,1,515.0,0.0,330.0,42,1.0,0.0,3.0,2.0,1.5,2,2,558.278650143544,0.0,6135.492214269034,6,4,2,3,70.0,1,1,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13625638674200466,4090.3281428460227,1,1,1_1,1_0_1,1_1_1,1_0_1 -16625,2,38.0,0.0,9,112,470.0,570.0,0.0,42,34,0.0,0.0,649.6218869606873,1040.0,0.0,1033.782153483046,71,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,104936,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1389.20493772152,470.0,57306.40079683749,1,1,1,2,120.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018148059999213793,23877.66699868229,6,3,6,6_1,6_0,6_0_0 -16626,2,33.0,0.0,9,111,0.0,0.0,0.0,55,42,0.0,0.0,0.0,1255.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,114735,2,1,1,0,1,,677.0,790.0,43,2.0,0.0,4.0,3.0,1.8,2,2,439.422022129292,0.0,35997.28539899584,4,1,2,3,102.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03486374003176942,19998.49188833102,5,3,5,5_1,5_2,5_0_0 -16627,2,32.0,0.0,9,111,1667.0,0.0,0.0,55,62,0.0,0.0,2304.084437369076,1667.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,2012.0,6,122536,2,1,1,0,1,,420.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,1013.92668191114,1667.0,35066.784458979615,1,1,1,2,90.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04753786312942441,19481.546921655343,5,3,5,5_1,5_2,5_0_0 -16628,1,33.0,260.0,9,111,0.0,0.0,0.0,85,43,0.0,0.0,0.0,1110.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2013.0,6,121931,2,1,1,0,1,,445.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,345.325633678621,0.0,25945.001076203753,6,1,1,2,96.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042782808015300884,10810.417115084898,2,1,2_1,2_1_1,2_2_1,2_0_0 -16629,2,47.0,0.0,8,111,600.0,980.0,0.0,56,46,0.0,0.0,829.3045365455583,1580.0,0.0,1777.3798428305,20,0,0,0,0,0,0,0,0,2,5.0,1,1999.0,6,110129,1,2,2,0,1,,400.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,6330.27510326174,600.0,42537.1227136874,1,1,1,2,110.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03714402618707435,21268.5613568437,6,3,6,6_1,6_2,6_0_0 -16630,2,29.0,0.0,9,112,1400.0,0.0,0.0,54,46,0.0,0.0,1935.0439186063027,1430.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,122404,2,1,1,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2240.18860643878,1400.0,41506.17652109728,1,1,1,2,99.0,7,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03445270366623969,23058.986956165154,6,3,6,6_1,6_1,6_0_0 -16631,2,51.0,0.0,1,300,1500.0,0.0,0.0,85,85,0.0,621.1035028916747,2073.261341363896,2100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127931,2,1,1,0,1,,443.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1237.78199941512,1500.0,45786.131437136864,6,6,1,2,130.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04586541675579742,30524.08762475791,8,4,8,8_1,8_0,8_1_0 -16632,2,51.0,0.0,9,400,1500.0,0.0,0.0,78,56,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,130813,2,1,1,0,1,,180.0,,42,1.0,3.0,3.0,2.0,1.5,1,1,1330.1678490601,1500.0,21662.145310755066,5,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0692452191822046,14441.430207170044,3,2,3_0,3_1_0,3_0_0,3_0_0 -16633,2,48.0,0.0,9,212,1100.0,0.0,0.0,46,38,0.0,207.03450096389156,1520.3916503335236,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,113537,2,1,1,0,1,,172.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,732.285474519667,1100.0,59623.64578233665,1,1,1,2,150.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021803430215351267,21294.159207977376,6,3,6,6_1,6_0,6_0_0 -16635,1,74.0,71.0,6,111,180.0,330.0,0.0,0,77,0.0,0.0,248.7913609636675,510.0,0.0,598.5054572796581,50,0,0,0,0,0,0,0,0,0,,8,,4,110969,2,1,0,0,1,,0.0,239.0,11,0.0,3.0,2.0,1.0,1.0,1,1,8860.31864541099,180.0,10337.122370048126,0,5,2,3,60.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.049336747862995994,10337.122370048126,2,1,2_1,2_0_1,2_2_1,2_0_0 -16636,2,45.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,207.03450096389156,0.0,292.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,116018,2,1,0,0,1,,140.0,,12,1.0,1.0,2.0,1.0,1.0,3,3,2404.45956640463,0.0,23928.2161009211,0,1,1,2,38.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012203166285712358,23928.2161009211,6,3,6,6_0,6_3,6_0_1 -16637,2,44.0,0.0,1,111,1600.0,2000.0,0.0,85,38,0.0,0.0,2211.478764121489,3600.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,3,140.0,2,,1,110212,1,2,0,0,1,,500.0,,42,1.0,0.0,5.0,4.0,2.3,2,2,2188.69299444498,1600.0,67941.26337877195,6,1,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05298694520780444,29539.67972990085,8,4,8,8_0,8_3,8_1_0 -16638,1,44.0,25.0,1,111,600.0,100.0,0.0,0,35,0.0,0.0,829.3045365455583,700.0,0.0,181.36529008474488,31,2,2,2,1,2,2,2,2,2,35.0,2,,1,105563,2,2,0,0,1,,235.0,500.0,12,1.0,3.0,2.0,1.0,1.0,2,2,2988.884977629,600.0,16305.539291155179,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.042930196143816594,16305.539291155179,4,2,4_1,4_0_1,4_3_1,4_1_0 -16639,2,54.0,0.0,5,111,814.0,0.0,0.0,0,56,0.0,0.0,1125.0898212468076,868.0,92.89765822627035,0.0,70,2,2,2,1,1,2,2,2,0,,2,,3,118501,2,2,0,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,453.538129529768,814.0,23333.618501617257,0,1,1,2,97.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.037199545365835085,23333.618501617257,6,3,6,6_0,6_3,6_0_0 -16641,2,48.0,0.0,5,111,1100.0,0.0,0.0,65,38,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,117024,1,2,0,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,465.921701965948,1100.0,50032.69298033107,1,1,1,2,76.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021985624488220806,33355.12865355405,8,4,8,8_0,8_3,8_0_0 -16642,2,81.0,0.0,6,111,1000.0,900.0,0.0,0,78,0.0,0.0,1382.1742275759307,1900.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,2,,4,125175,2,1,0,0,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,511.190300147152,1000.0,21000.32605937229,0,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09047478570705543,21000.32605937229,5,3,5,5_0,5_3,5_0_0 -16645,2,41.0,0.0,5,111,600.0,0.0,0.0,0,33,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,2,1,2,1,2,2,2,1,5.0,2,,3,128629,2,2,0,0,1,,125.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2334.69164951003,600.0,34676.96653090269,0,1,1,2,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017302551521203698,34676.96653090269,9,5,9,9_0,9_3,9_0_0 -16646,2,82.0,0.0,1,111,700.0,150.0,0.0,75,75,1344.2263893162005,0.0,967.5219593031513,1750.0,0.0,272.04793512711734,41,0,0,0,0,0,0,0,0,0,,2,,1,106060,2,2,0,2,1,,700.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,2222.48942985219,700.0,41749.07993351201,5,5,0,1,74.0,8,7,2,1,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04191709141343913,27832.719955674675,7,4,7,7_0,7_3,7_1_0 -16647,1,65.0,156.0,5,111,300.0,72.0,0.0,0,77,918.5546993660704,0.0,414.65226827277917,987.0,0.0,130.5830088610163,70,0,0,0,0,0,0,0,0,0,,2,,3,132119,2,1,0,1,1,615.0,0.0,301.0,11,0.0,5.0,3.0,1.0,1.0,2,2,470.373142791833,300.0,10725.476356839163,0,5,2,3,63.0,8,7,2,1,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09202388473595709,10725.476356839163,2,1,2_1,2_0_1,2_3_1,2_0_0 -16648,2,80.0,0.0,2,111,230.0,930.0,0.0,0,86,0.0,0.0,317.900072342464,1160.0,0.0,1686.6971977881274,70,0,0,0,0,0,0,0,0,0,,1,,2,115316,2,1,2,0,1,,320.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,379.881499029503,230.0,13664.542879836838,0,7,0,1,74.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0848912407975005,13664.542879836838,3,2,3_0,3_1_0,3_2_0,3_0_1 -16649,2,63.0,0.0,2,111,274.0,168.0,0.0,0,56,0.0,0.0,378.715738355805,442.0,0.0,304.6936873423714,44,0,0,0,0,0,0,0,0,0,,2,,2,112443,2,1,0,1,1,1079.0,0.0,251.0,11,0.0,3.0,3.0,1.0,1.0,1,1,483.485046859126,274.0,13921.246703146006,0,5,2,3,56.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031750029966792714,13921.246703146006,3,2,3_0,3_0_0,3_2_0,3_0_1 -16650,1,29.0,171.0,2,111,600.0,300.0,0.0,85,68,0.0,0.0,829.3045365455583,1020.0,206.439240502823,544.0958702542347,71,2,1,2,1,2,2,2,2,0,,2,,2,121536,2,2,0,1,1,466.0,0.0,308.0,42,1.0,0.0,3.0,2.0,1.5,1,1,447.909243752336,600.0,11038.130606450319,6,1,2,3,62.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.09240695153615465,7358.753737633546,1,1,1_1,1_0_1,1_2_1,1_0_1 -16651,2,70.0,0.0,2,111,64.0,64.0,0.0,0,75,0.0,0.0,88.45915056485956,128.0,0.0,116.07378565423673,71,0,0,0,0,0,0,0,0,0,,2,,2,120642,2,1,0,1,2,,40.0,,11,0.0,2.0,4.0,1.0,1.0,5,4,535.69092047355,64.0,26447.554743298806,0,5,0,1,84.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004839766898769052,26447.554743298806,7,4,7,7_0,7_2,7_0_1 -16652,1,79.0,110.0,2,111,300.0,500.0,0.0,0,78,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,42,2,1,2,2,1,2,2,2,0,,2,,2,115848,1,3,0,1,1,813.0,0.0,242.0,11,0.0,4.0,3.0,1.0,1.0,2,2,510.683959525188,300.0,11743.320963111448,0,5,2,3,62.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06812382992110916,11743.320963111448,2,1,2_1,2_0_1,2_2_1,2_0_1 -16653,2,62.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,529.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107053,2,2,0,1,1,920.0,0.0,276.0,21,1.0,1.0,3.0,2.0,1.5,1,1,473.378592975229,0.0,19259.8318908125,0,5,2,3,66.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027466491036837574,12839.887927208334,2,1,2_0,2_0_0,2_2_0,2_0_1 -16654,1,24.0,325.0,2,111,300.0,0.0,0.0,0,81,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,124081,2,2,0,1,1,273.0,0.0,303.0,32,1.0,0.0,3.0,2.0,1.3,2,2,447.909243752336,300.0,8300.502892128423,0,4,2,3,63.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036142388467149095,6385.0022247141715,1,1,1_1,1_0_1,1_2_1,1_0_1 -16655,1,27.0,426.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,433.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124167,2,2,0,1,1,600.0,0.0,379.0,32,1.0,0.0,5.0,4.0,1.9,1,1,525.643841166354,0.0,8785.786069671749,0,4,2,3,91.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049284150167815045,4624.097931406184,1,1,1_1,1_0_1,1_2_1,1_0_1 -16656,2,85.0,0.0,2,111,200.0,210.0,0.0,0,77,0.0,0.0,276.4348455151861,410.0,0.0,380.86710917796427,71,0,0,0,0,0,0,0,0,0,,2,,2,111501,2,2,0,1,1,520.0,0.0,243.0,11,0.0,0.0,3.0,1.0,1.0,3,3,483.485046859126,200.0,18527.011703131448,0,5,2,3,59.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022129850543069585,18527.011703131448,4,2,4_0,4_0_0,4_2_0,4_0_1 -16657,1,67.0,18.0,2,111,230.0,299.0,0.0,86,75,0.0,0.0,317.900072342464,529.0,0.0,542.2822173533872,43,1,2,2,1,1,2,2,2,0,,2,,2,119271,1,3,0,1,2,1019.0,0.0,232.0,41,0.0,4.0,3.0,2.0,1.5,1,1,473.378592975229,230.0,16523.113165866005,6,5,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.032015758452397805,11015.408777244003,2,1,2_1,2_0_1,2_2_1,2_0_1 -16658,2,91.0,0.0,5,111,275.0,0.0,0.0,0,75,0.0,0.0,380.0979125833809,436.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,130417,2,2,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,519.769108660435,275.0,37542.81585940176,0,5,0,1,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011613406986647581,37542.81585940176,9,5,9,9_0,9_2,9_0_0 -16659,1,45.0,346.0,2,111,127.0,310.0,0.0,0,85,0.0,0.0,175.53612690214317,437.0,0.0,562.2323992627091,10,1,2,2,2,1,2,2,2,0,,2,,2,102865,1,1,0,1,1,1312.0,258.0,324.0,31,0.0,1.0,3.0,2.0,1.5,2,2,465.446908563877,127.0,8334.7562895236,0,7,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05243104715002748,5556.504193015734,1,1,1_1,1_0_1,1_2_1,1_0_1 -16660,1,33.0,388.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,398.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,110132,1,2,0,1,2,600.0,0.0,308.0,42,1.0,0.0,5.0,8.0,3.499999999999999,2,2,436.864883181809,0.0,26914.836713380177,6,4,2,3,92.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014787383042236412,7689.953346680052,1,1,1_1,1_0_1,1_2_1,1_0_1 -16661,2,34.0,0.0,2,111,130.0,300.0,0.0,85,64,0.0,0.0,179.68264958487097,430.0,0.0,544.0958702542347,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,131991,2,2,0,1,1,561.0,0.0,446.0,42,1.0,0.0,2.0,2.0,1.5,1,1,449.967403404758,130.0,16464.101927215837,6,1,2,3,52.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026117428202335913,10976.067951477226,2,1,2_0,2_0_0,2_2_0,2_0_1 -16662,1,46.0,92.0,5,111,420.0,136.0,0.0,68,46,0.0,0.0,580.5131755818909,556.0,0.0,246.65679451525304,71,0,0,0,0,0,0,0,0,0,,2,,3,133124,2,3,0,1,1,754.0,0.0,450.0,43,2.0,0.0,4.0,4.0,2.3,1,1,457.344003212264,420.0,28037.166099560098,1,4,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019830820205781197,12190.072217200044,2,1,2_1,2_0_1,2_2_1,2_0_0 -16663,2,52.0,0.0,2,111,200.0,200.0,0.0,0,67,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,104168,2,3,0,1,1,,120.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,447.626064281755,200.0,21829.362855284184,0,1,0,1,57.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01832394296854949,21829.362855284184,6,3,6,6_0,6_2,6_0_1 -16664,1,42.0,255.0,5,111,140.0,84.0,0.0,0,67,0.0,0.0,193.50439186063028,224.0,0.0,152.3468436711857,31,2,1,2,2,1,2,2,2,0,,2,,3,122815,1,2,0,1,1,1107.0,200.0,286.0,32,2.0,0.0,3.0,2.0,1.5,2,2,461.572373075805,140.0,15295.978961933233,0,4,2,3,108.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.01464437160625442,10197.31930795549,2,1,2_1,2_0_1,2_2_1,2_0_0 -16665,1,66.0,284.0,1,111,273.0,837.0,0.0,56,78,0.0,0.0,377.33356412822906,1110.0,0.0,1518.0274780093148,70,2,2,2,2,1,2,2,2,0,,1,,1,128355,1,3,4,0,2,,500.0,260.0,42,1.0,3.0,4.0,3.0,2.0,2,2,348.945645502044,273.0,19189.485307198065,4,5,2,3,95.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.057844177799997266,9594.742653599033,1,1,1_1,1_1_1,1_2_1,1_1_0 -16666,1,26.0,231.0,2,111,670.0,660.0,0.0,0,68,0.0,0.0,926.0567324758734,1330.0,0.0,1197.0109145593162,50,2,2,2,2,1,2,2,2,0,,2,,2,123181,2,3,0,1,1,100.0,440.0,327.0,22,1.0,4.0,4.0,2.0,1.5,2,2,404.941477355799,670.0,16401.37340303494,0,1,2,3,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.08109077010306309,10934.248935356627,2,1,2_1,2_0_1,2_2_1,2_0_1 -16667,1,31.0,262.0,2,111,220.0,300.0,0.0,85,46,0.0,0.0,304.0783300667047,520.0,0.0,544.0958702542347,70,2,2,2,2,1,2,2,2,0,,2,,2,128170,2,2,0,1,1,1270.0,280.0,324.0,42,1.0,0.0,3.0,4.0,2.1,1,1,402.284324517866,220.0,20615.500812235845,6,4,2,3,75.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.025223738425571803,9816.905148683736,2,1,2_1,2_0_1,2_2_1,2_0_1 -16668,1,27.0,277.0,2,111,0.0,0.0,0.0,85,52,0.0,0.0,0.0,1290.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,116127,1,3,0,1,1,658.0,110.0,265.0,42,1.0,0.0,3.0,2.0,1.5,1,1,391.425923842902,0.0,10690.59952048663,6,1,2,3,66.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12066675938313326,7127.066346991087,1,1,1_1,1_0_1,1_2_1,1_0_1 -16669,2,80.0,0.0,2,111,270.0,0.0,0.0,0,75,0.0,0.0,373.1870414455012,270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111533,2,2,0,1,1,,182.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,473.076127449534,270.0,26169.22430017751,0,5,0,1,70.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010317462867944792,26169.22430017751,7,4,7,7_0,7_2,7_0_1 -16670,2,25.0,0.0,2,111,0.0,0.0,660.0,84,52,0.0,0.0,337.2028009927665,660.0,0.0,754.5422112707369,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,113329,2,2,0,1,1,1161.0,300.0,254.0,42,1.0,0.0,3.0,3.0,1.8,1,1,458.878429786689,0.0,32059.38698400127,3,1,2,3,65.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020586794137060778,17810.770546667372,4,2,4_0,4_0_0,4_2_0,4_0_1 -16671,1,24.0,200.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1803.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,3,130210,2,1,0,0,1,,121.0,395.0,12,1.0,1.0,4.0,1.0,1.0,1,1,489.933614400937,0.0,5155.740001952274,0,1,2,3,90.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.34970731637306685,5155.740001952274,1,1,1_1,1_0_1,1_2_1,1_0_0 -16672,1,52.0,239.0,2,111,300.0,300.0,0.0,68,67,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,44,0,0,0,0,0,0,0,0,0,,2,,2,125284,2,2,0,1,1,564.0,300.0,227.0,43,2.0,1.0,2.0,2.0,1.5,1,1,392.98377828129,300.0,16221.721538921229,1,4,2,3,55.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03698744295174857,10814.481025947485,2,1,2_1,2_0_1,2_2_1,2_0_1 -16673,2,59.0,0.0,2,111,380.0,600.0,0.0,75,38,0.0,0.0,525.2262064788536,980.0,0.0,1088.1917405084694,44,0,0,0,0,0,0,0,0,2,15.0,2,,2,115833,1,3,0,0,1,,400.0,374.0,42,1.0,0.0,3.0,3.0,2.0,1,1,434.426526125429,380.0,30738.40347385183,6,1,2,3,71.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03188194210651358,15369.201736925916,3,2,3_0,3_0_0,3_2_0,3_0_1 -16674,1,34.0,333.0,2,111,280.0,1300.0,0.0,0,55,0.0,0.0,387.00878372126056,1580.0,0.0,2357.7487711016834,50,2,2,1,1,2,2,2,2,0,,8,,2,115727,1,2,0,0,1,,300.0,298.0,32,1.0,0.0,4.0,3.0,1.6,3,2,427.387445928793,280.0,10021.782222222222,0,4,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.1576565889145466,6263.613888888888,1,1,1_1,1_0_1,1_2_1,1_0_1 -16675,2,41.0,0.0,2,111,360.0,400.0,0.0,0,65,0.0,0.0,497.582721927335,760.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,2,30.0,8,,2,107285,1,2,0,1,2,,150.0,447.0,32,1.0,1.0,1.0,2.0,1.3,2,1,453.794949179541,360.0,8605.07148835207,0,1,2,3,57.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08832001001139216,6619.285760270824,1,1,1_0,1_0_0,1_2_0,1_0_1 -16676,1,76.0,255.0,2,111,240.0,205.0,0.0,0,77,0.0,0.0,331.72181461822333,445.0,0.0,371.79884467372705,71,0,0,0,0,0,0,0,0,0,,8,,2,121076,2,1,0,1,1,418.0,132.0,260.0,11,0.0,3.0,2.0,1.0,1.0,2,2,421.274999679382,240.0,1987.1861923164176,0,5,2,3,45.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2239347282708691,1987.1861923164176,1,1,1_1,1_0_1,1_2_1,1_0_1 -16677,2,41.0,0.0,5,111,287.0,277.0,0.0,55,47,0.0,0.0,396.68400331429206,564.0,0.0,502.38185353474336,60,0,0,0,0,0,0,0,0,2,15.0,2,,3,131466,1,2,0,1,1,,173.0,308.0,43,2.0,0.0,4.0,3.0,1.8,2,2,437.241622684461,287.0,52375.471879901634,1,1,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010768399400644392,29097.48437772313,8,4,8,8_0,8_2,8_0_0 -16678,2,60.0,0.0,9,111,332.0,1383.0,0.0,0,43,0.0,0.0,458.88184355520895,1715.0,0.0,2508.281961872022,31,2,2,2,2,1,2,2,2,3,20.0,2,2009.0,6,105409,1,2,0,0,1,,164.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,2611.17122594968,332.0,49533.493058695996,0,1,0,1,99.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.034623037748776696,49533.493058695996,10,5,10,10_0,10_3,10_0_0 -16679,2,52.0,0.0,5,111,296.0,255.0,0.0,0,52,0.0,0.0,409.12357136247545,551.0,0.0,462.4814897160995,71,0,0,0,0,0,0,0,0,2,10.0,8,,3,127989,2,1,0,1,1,,200.0,314.0,12,1.0,1.0,3.0,1.0,1.0,1,1,422.073960322006,296.0,26504.148399117,0,1,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02078919841915603,26504.148399117,7,4,7,7_0,7_2,7_0_0 -16680,1,52.0,403.0,2,111,800.0,0.0,0.0,68,68,0.0,0.0,1105.7393820607444,1443.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,103283,2,1,0,1,1,960.0,0.0,348.0,43,2.0,4.0,4.0,5.0,2.5999999999999996,3,3,394.619130234436,800.0,22636.562310246118,1,1,2,3,79.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06374642846484012,8706.370119325431,1,1,1_1,1_0_1,1_2_1,1_0_1 -16681,2,66.0,0.0,1,111,641.0,781.0,0.0,77,75,0.0,0.0,885.9736798761714,1422.0,0.0,1416.4629155618577,43,0,0,0,0,0,0,0,0,0,,1,,1,113453,2,1,2,0,1,,230.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1713.07675850899,641.0,44274.81872143074,5,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03211757927111956,29516.54581428716,8,4,8,8_1,8_3,8_1_0 -16682,1,73.0,202.0,5,111,300.0,500.0,0.0,78,77,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,41,2,2,1,1,2,2,2,2,0,,2,,3,123515,2,1,0,1,1,,300.0,188.0,41,0.0,3.0,3.0,2.0,1.5,1,1,393.661483927197,300.0,17433.604954199323,5,5,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.04588838637228038,11622.403302799548,2,1,2_1,2_0_1,2_2_1,2_0_0 -16683,2,46.0,0.0,2,111,300.0,400.0,0.0,0,63,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,12,0,0,0,0,0,0,0,0,2,10.0,2,,2,105033,2,1,0,1,1,453.0,200.0,200.0,12,1.0,0.0,1.0,1.0,1.0,2,2,433.471680079974,300.0,21208.639326280536,0,1,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03300541770883905,21208.639326280536,5,3,5,5_0,5_2,5_0_1 -16684,2,41.0,0.0,2,111,220.0,130.0,0.0,0,47,0.0,0.0,304.0783300667047,350.0,0.0,235.77487711016835,60,0,0,0,0,0,0,0,0,2,15.0,8,,2,105545,2,3,0,1,2,,144.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,449.682388022705,220.0,23577.83227871804,0,1,1,2,53.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014844452020125659,23577.83227871804,6,3,6,6_0,6_2,6_0_1 -16685,2,56.0,0.0,2,111,342.0,516.0,0.0,55,53,0.0,0.0,472.7035858309682,858.0,0.0,935.8448968372836,50,0,0,0,0,0,0,0,0,2,10.0,8,,2,129937,2,1,0,1,1,593.0,0.0,317.0,43,2.0,0.0,3.0,5.0,2.4,3,2,382.016331423097,342.0,39413.95137837891,1,1,2,3,65.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021768941453321738,16422.479740991213,4,2,4_0,4_0_0,4_2_0,4_0_1 -16686,2,33.0,0.0,1,112,430.0,1338.0,0.0,47,38,0.0,217.38622601208613,594.3349178576501,1978.0,0.0,2426.6675813338866,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,110396,2,2,4,0,1,,390.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2000.42628129359,430.0,74018.91794854218,1,1,1,2,100.0,8,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026722898075531205,41121.62108252343,9,5,9,9_1,9_0,9_1_0 -16687,2,60.0,0.0,6,111,600.0,1100.0,0.0,47,55,0.0,0.0,829.3045365455583,1700.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,2,5.0,1,,4,127983,2,1,2,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,290.6692822759,600.0,69354.08211043129,4,1,0,1,95.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02451189530982646,46236.05474028753,10,5,10,10_1,10_2,10_0_0 -16688,2,72.0,0.0,2,112,944.0,0.0,0.0,77,21,7467.924385090004,51.75862524097289,1304.7724708316784,6058.0,110.10092826817227,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,2,128116,2,1,2,0,1,,456.0,,42,1.0,4.0,5.0,2.0,1.5,3,3,1797.60081171265,944.0,101357.96819926439,5,1,0,1,150.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059768364615303785,67571.9787995096,10,5,10,10_1,10_0,10_0_1 -16689,1,25.0,247.0,2,111,474.0,192.0,0.0,0,56,0.0,0.0,655.1505838709911,666.0,0.0,348.22135696271016,31,2,2,1,2,2,2,2,1,1,5.0,2,,2,127905,1,2,0,1,1,,0.0,299.0,32,1.0,0.0,3.0,2.0,1.3,2,2,411.238415032738,474.0,9382.117549212026,0,1,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07098610697495847,7217.0134993938655,1,1,1_1,1_0_1,1_2_1,1_0_1 -16690,2,78.0,0.0,2,111,600.0,0.0,0.0,0,78,0.0,0.0,829.3045365455583,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,124735,2,2,0,1,1,953.0,0.0,385.0,21,1.0,6.0,5.0,3.0,2.0,1,1,455.216117064376,600.0,28628.69456399479,0,5,2,3,120.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020957993689121854,14314.347281997396,3,2,3_0,3_0_0,3_2_0,3_0_1 -16691,1,50.0,205.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1458.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,112204,1,3,0,0,1,,324.0,208.0,32,1.0,0.0,4.0,2.0,1.5,1,1,385.886189362791,0.0,11126.246102377707,0,4,2,3,55.0,5,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13104150192115754,7417.497401585138,1,1,1_1,1_0_1,1_2_1,1_0_1 -16692,2,53.0,0.0,2,112,436.0,2328.0,0.0,0,43,0.0,165.62760077111324,602.6279632231058,2924.0,0.0,4222.183953172861,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,112314,2,2,3,0,1,,501.0,,32,1.0,0.0,8.0,4.0,2.5,2,1,1755.58731554911,436.0,35318.8197595833,0,1,1,2,220.0,8,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0827887234030976,14127.52790383332,3,2,3_0,3_1_0,3_0_0,3_0_1 -16693,1,34.0,400.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,224.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126495,2,3,0,1,1,717.0,320.0,426.0,31,0.0,0.0,4.0,5.0,2.2,2,2,394.619130234436,0.0,29984.709765289525,0,6,2,3,75.0,5,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007470474176785386,13629.413529677055,3,2,3_1,3_0_1,3_2_1,3_0_1 -16694,2,76.0,0.0,1,112,280.0,1198.0,0.0,78,78,0.0,0.0,387.00878372126056,1478.0,0.0,2172.7561752152437,50,0,0,0,0,0,0,0,0,0,,1,,1,132823,2,3,4,0,1,,190.0,,41,0.0,1.0,5.0,2.0,1.5,3,2,1901.5248227394,280.0,33674.092518370904,5,5,0,1,100.0,8,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04389130899945342,22449.39501224727,6,3,6,6_1,6_0,6_1_0 -16695,2,54.0,0.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2057.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101889,2,1,1,0,1,,106.0,454.0,32,1.0,2.0,4.0,2.0,1.5,2,2,287.735764790902,0.0,16169.64884124886,0,1,2,3,76.0,5,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1272136470120849,10779.765894165907,2,1,2_0,2_1_0,2_2_0,2_0_0 -16696,2,71.0,0.0,1,120,577.0,0.0,0.0,78,78,2539.0942909306013,0.0,797.5145293113119,2341.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124531,2,2,2,0,1,,325.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1670.65441276359,577.0,26499.86889865211,5,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08834005967927912,17666.579265768072,4,2,4_0,4_1_0,4_0_0,4_1_0 -16697,2,59.0,0.0,2,120,1911.0,0.0,0.0,54,45,0.0,310.55175144583734,2641.334948897603,2261.0,86.01635020950958,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,,2,110058,1,2,1,0,1,,363.0,,43,2.0,0.0,8.0,2.0,1.5,2,2,1706.2696462087,1911.0,60794.77313912145,1,1,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037190697213820935,40529.8487594143,9,5,9,9_1,9_0,9_0_1 -16698,2,44.0,0.0,5,120,400.0,0.0,0.0,43,34,3136.5282417378016,0.0,552.8696910303722,2560.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,3,113597,2,2,3,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1440.7081824171,400.0,67954.94000742344,1,1,0,1,92.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037672022074044124,32359.49524163021,8,4,8,8_1,8_0,8_0_0 -16699,2,54.0,0.0,7,120,1984.0,0.0,0.0,46,43,0.0,108.69311300604306,2742.2336675106462,2139.0,86.01635020950958,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,5,118606,2,1,2,0,1,,613.0,,43,4.0,0.0,7.0,4.0,2.5,2,2,1678.33391451326,1984.0,70740.13293926128,1,1,0,1,200.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03023743257362243,28296.053175704514,8,4,8,8_1,8_0,8_0_0 -16700,2,66.0,0.0,1,120,1236.0,0.0,0.0,75,77,5358.982538740586,93.1655254337512,1708.3673452838502,4914.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100699,2,1,1,0,1,,400.0,,41,0.0,1.0,7.0,2.0,1.5,2,1,1863.71227228177,1236.0,42024.34701058604,5,5,0,1,200.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11693221547885446,28016.231340390692,7,4,7,7_1,7_0,7_1_0 -16701,2,55.0,0.0,1,120,600.0,0.0,0.0,74,43,4480.754631054002,0.0,829.3045365455583,3720.0,206.439240502823,0.0,12,2,2,2,1,1,2,2,2,2,15.0,1,,1,130452,1,3,3,0,2,,600.0,1200.0,42,2.0,1.0,6.0,3.0,2.0,2,2,2440.70665740955,600.0,107309.95569533523,5,1,2,3,140.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03466593547537648,53654.977847667615,10,5,10,10_1,10_0,10_1_0 -16702,2,73.0,0.0,1,120,383.0,0.0,0.0,0,77,4558.421044658938,0.0,529.3727291615814,3480.0,77.41471518855863,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,105680,2,1,1,0,1,,321.0,,11,0.0,3.0,7.0,1.0,1.0,2,2,1814.76237683352,383.0,19729.27658592404,0,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1763876128374025,19729.27658592404,5,3,5,5_1,5_0,5_1_0 -16703,2,43.0,0.0,6,120,630.0,0.0,0.0,67,48,1949.128264508491,36.23103766868102,870.7697633728362,2034.0,110.10092826817227,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,4,120184,1,1,2,0,1,,506.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1447.70009304188,630.0,49655.26870016021,1,1,1,2,88.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0409624205697519,23645.366047695337,6,3,6,6_1,6_0,6_0_0 -16704,2,29.0,0.0,9,120,1665.0,0.0,0.0,85,13,0.0,0.0,2301.3200889139243,1665.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,118518,2,1,1,0,1,,470.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,1767.98652057294,1665.0,252493.9203514081,6,1,1,2,166.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006594218180313959,120235.20016733719,10,5,10,10_1,10_0,10_0_0 -16705,2,55.0,0.0,1,120,877.0,0.0,0.0,74,77,2987.1697540360015,0.0,1212.166797584091,2941.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125227,2,2,2,0,1,,360.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1851.93915054508,877.0,25373.480126601604,5,6,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11590842033989063,16915.653417734404,4,2,4_0,4_1_0,4_0_0,4_1_0 -16706,1,29.0,345.0,1,120,0.0,0.0,0.0,0,69,0.0,0.0,0.0,774.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,17.0,1,,1,110457,2,1,1,0,1,,161.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2019.96472686316,0.0,15400.744462184748,0,1,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.050257310735886365,11846.726509372882,2,1,2_1,2_1_1,2_0_1,2_1_0 -16707,2,37.0,0.0,1,120,820.0,0.0,0.0,0,69,0.0,155.27587572291867,1133.3828666122631,1170.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123150,2,1,2,0,1,,400.0,,22,3.0,2.0,5.0,3.0,2.0,1,1,1880.95943700111,820.0,67378.23626394504,0,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01736465756415298,33689.11813197252,9,5,9,9_1,9_0,9_1_0 -16708,2,24.0,0.0,1,120,0.0,0.0,0.0,42,22,0.0,0.0,0.0,1177.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,1,103984,2,1,1,0,1,,89.0,700.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1785.9963248459,0.0,38491.192684160815,1,1,2,3,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0305784237359924,25660.795122773878,7,4,7,7_1,7_0,7_1_0 -16709,2,38.0,0.0,1,120,0.0,0.0,0.0,90,42,0.0,0.0,0.0,1562.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101102,1,2,5,0,1,,190.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1632.0405750224,0.0,29273.410955655938,1,1,1,2,66.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05335900221419892,19515.607303770626,5,3,5,5_1,5_0,5_1_0 -16710,2,43.0,0.0,9,120,2800.0,0.0,0.0,46,22,0.0,310.55175144583734,3870.0878372126053,3100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,132788,2,1,1,0,1,,490.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1767.98652057294,2800.0,99746.2393133752,1,1,1,2,169.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031078865943613712,47498.20919684533,10,5,10,10_1,10_0,10_0_0 -16711,2,78.0,0.0,1,120,275.0,0.0,0.0,0,78,725.8822502307484,0.0,380.0979125833809,793.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132280,2,1,4,0,1,,150.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,1964.64597336533,275.0,15413.849937900985,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051447237594424676,15413.849937900985,3,2,3_0,3_1_0,3_0_0,3_1_0 -16712,2,82.0,0.0,1,120,400.0,0.0,0.0,0,72,3733.962192545002,0.0,552.8696910303722,2960.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126983,2,1,2,0,1,,350.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1989.57553686472,400.0,35442.82821291853,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08351477997800164,35442.82821291853,9,5,9,9_1,9_0,9_1_0 -16713,2,44.0,0.0,8,120,1200.0,0.0,0.0,11,54,1941.6603401234008,0.0,1658.6090730911167,2564.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,1999.0,6,109231,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,1931.41534777859,1200.0,34953.93621795591,1,1,1,2,110.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07335368423207421,17476.968108977955,4,2,4_0,4_1_0,4_0_0,4_0_0 -16714,2,71.0,0.0,1,120,3600.0,0.0,0.0,71,71,2987.1697540360015,0.0,4975.82721927335,5696.0,165.1513924022584,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,100712,2,1,2,0,1,,250.0,,41,0.0,1.0,4.0,3.0,2.0,1,1,1867.59562388076,3600.0,32928.96838367689,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17297839196272985,16464.484191838445,4,2,4_0,4_1_0,4_0_0,4_1_0 -16715,2,58.0,0.0,6,120,1117.0,0.0,0.0,75,65,0.0,0.0,1543.8886122023143,1167.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,131482,2,1,1,0,1,,320.0,,42,2.0,1.0,4.0,3.0,2.0,3,2,1721.98190563272,1117.0,44450.57151338026,7,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026253880664925,22225.28575669013,6,3,6,6_1,6_0,6_0_0 -16716,2,55.0,0.0,1,120,0.0,0.0,0.0,52,53,0.0,0.0,0.0,1135.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,130373,2,1,1,0,1,,266.0,720.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1999.40864889617,0.0,58653.09692832626,1,1,2,3,65.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019351066856486084,39102.06461888417,9,5,9,9_1,9_0,9_1_0 -16717,2,71.0,0.0,1,120,880.0,0.0,0.0,77,78,0.0,776.3793786145933,1216.313320266819,1780.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103892,2,2,3,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1983.9421461237,880.0,35905.75817795585,5,5,0,1,96.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04957422124824595,23937.172118637234,6,3,6,6_1,6_0,6_1_0 -16718,2,33.0,0.0,9,120,2300.0,0.0,0.0,55,42,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,115567,2,1,1,0,1,,185.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1705.10642555987,2300.0,48952.34289140851,1,1,1,2,169.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04698447232856891,23310.63947209929,6,3,6,6_1,6_0,6_0_0 -16719,2,62.0,0.0,5,112,540.0,0.0,0.0,43,74,3733.962192545002,0.0,746.3740828910024,3040.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,112825,2,2,3,0,1,,500.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,1520.22211645242,540.0,73938.49881740937,1,5,0,1,95.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04111525184609522,49292.332544939585,10,5,10,10_1,10_0,10_0_0 -16720,2,58.0,0.0,2,112,1200.0,0.0,0.0,0,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123197,2,1,2,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,1731.37522579457,1200.0,38345.04393165393,0,1,1,2,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031294787460378864,38345.04393165393,9,5,9,9_1,9_0,9_0_1 -16721,2,60.0,0.0,2,112,780.0,0.0,0.0,52,46,1556.3154418527567,465.827627168756,1078.0958975092258,2307.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133147,2,2,1,0,1,,500.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1371.81587448343,780.0,65125.93584112904,1,1,0,1,104.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03542367522560894,43417.29056075269,10,5,10,10_1,10_0,10_0_1 -16722,2,43.0,0.0,2,112,1170.0,0.0,0.0,22,22,4480.754631054002,414.0690019277831,1617.1438462638387,4570.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,120507,2,1,3,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1453.77373153557,1170.0,144347.59578094614,1,1,1,2,140.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03165968906704326,62759.824252585284,10,5,10,10_1,10_0,10_0_1 -16723,2,63.0,0.0,2,112,690.0,0.0,0.0,75,74,5376.905557264802,0.0,953.7002170273921,4290.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129738,2,1,1,0,1,,460.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1619.68825747287,690.0,66644.2227381615,5,5,0,1,160.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0643716712978255,44429.481825441,10,5,10,10_1,10_0,10_0_1 -16724,2,80.0,0.0,5,112,250.0,0.0,0.0,77,75,0.0,0.0,345.54355689398267,250.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,133303,2,1,1,0,1,,400.0,,41,0.0,2.0,4.0,3.0,2.0,1,1,1478.67444330479,250.0,46506.325409105106,5,5,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0053756128397762955,23253.162704552553,6,3,6,6_1,6_0,6_0_0 -16725,2,67.0,0.0,5,112,1200.0,0.0,0.0,74,74,0.0,20.703450096389155,1658.6090730911167,1220.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,127304,2,1,1,0,1,,600.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1609.55285121478,1200.0,67451.86930240397,5,5,0,1,300.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01808697094116737,44967.91286826931,10,5,10,10_1,10_0,10_0_0 -16726,2,72.0,0.0,8,112,445.0,1280.0,0.0,75,75,0.0,0.0,615.0675312712891,1725.0,0.0,2321.4757130847347,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,108930,2,1,2,0,1,,266.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1596.23172125304,445.0,61510.28137408117,5,5,0,1,182.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028044092165815878,41006.85424938745,9,5,9,9_1,9_0,9_0_0 -16727,2,82.0,0.0,6,112,530.0,1530.0,0.0,75,78,0.0,31.055175144583732,732.5523406152432,2090.0,0.0,2774.8889382965967,71,0,0,0,0,0,0,0,0,0,,1,,4,101162,2,1,2,0,1,,379.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,1520.39723655948,530.0,33526.56548262241,5,5,0,1,160.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062338625204042895,22351.04365508161,6,3,6,6_1,6_0,6_0_0 -16728,2,70.0,0.0,7,112,830.0,0.0,0.0,0,77,2539.0942909306013,0.0,1147.2046088880224,2650.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,115169,2,1,2,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1670.02114567584,830.0,54428.4030732527,0,5,0,1,125.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0486878146403356,54428.4030732527,10,5,10,10_1,10_0,10_0_0 -16729,2,64.0,0.0,9,112,210.0,1200.0,0.0,0,77,0.0,0.0,290.25658779094545,1410.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101779,2,1,1,0,1,,300.0,637.0,11,0.0,1.0,4.0,1.0,1.0,3,3,2134.61758762477,210.0,19546.515694924215,0,5,2,3,84.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07213561854229318,19546.515694924215,5,3,5,5_1,5_0,5_0_0 -16730,2,62.0,0.0,2,112,1200.0,0.0,0.0,0,22,0.0,0.0,1658.6090730911167,1400.0,344.06540083803833,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,116049,2,2,2,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,1492.69790769991,1200.0,19168.97504414958,0,1,0,1,36.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07303468217656653,19168.97504414958,5,3,5,5_1,5_0,5_0_1 -16731,2,47.0,0.0,7,112,840.0,1617.0,0.0,0,56,0.0,0.0,1161.0263511637818,2512.0,0.0,2932.6767406703248,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,111794,2,1,1,0,1,,600.0,,32,3.0,0.0,5.0,3.0,2.0,2,2,1620.53061030626,840.0,15152.218197265876,0,1,1,2,220.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1657843074391098,7576.109098632938,1,1,1_0,1_1_0,1_0_0,1_0_0 -16732,2,53.0,0.0,6,112,2039.0,0.0,0.0,37,54,0.0,46.5827627168756,2818.2532500273223,2164.0,137.62616033521533,0.0,70,1,2,2,2,1,2,2,2,2,20.0,1,,4,122191,2,2,3,0,1,,210.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,1475.5563686608,2039.0,99093.02452781894,1,1,1,2,170.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02183806590132374,66062.0163518793,10,5,10,10_1,10_0,10_0_0 -16733,2,73.0,0.0,2,112,851.0,1750.0,0.0,75,72,0.0,289.84830134944815,1176.230267667117,2941.0,103.2196202514115,3173.8925764830356,31,0,0,0,0,0,0,0,0,0,,1,,2,108649,2,2,3,0,1,,360.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1658.20682801995,851.0,73643.03664148712,5,5,0,1,180.0,8,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03993588714052531,49095.357760991414,10,5,10,10_1,10_0,10_0_1 -16734,1,50.0,127.0,9,112,1375.0,0.0,0.0,0,52,0.0,248.44140115666985,1900.4895629169046,1615.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,132144,2,3,1,0,1,,459.0,,32,1.0,1.0,3.0,2.0,1.5,2,2,1428.88844448587,1375.0,25388.997274565652,0,1,1,2,60.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06361023172891844,16925.99818304377,4,2,4_1,4_1_1,4_0_1,4_0_0 -16735,0,34.0,0.0,1,112,800.0,0.0,0.0,46,21,2987.1697540360015,0.0,1105.7393820607444,2890.0,154.82943037711726,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,121989,1,2,1,0,1,,315.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1755.08703504102,800.0,40005.614187705156,1,1,5,0,75.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07223986079654235,26670.409458470105,7,4,7,7_1,7_0,7_1_0 -16736,2,53.0,0.0,8,112,850.69,0.0,0.0,11,11,0.0,0.0,1175.8017936565684,851.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,2.0,1,1999.0,6,107946,2,1,2,0,1,,720.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,1429.17968428436,850.69,40981.587819972105,1,1,0,1,125.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02076542284643424,27321.05854664807,7,4,7,7_1,7_0,7_0_0 -16737,2,58.0,0.0,5,112,626.0,0.0,0.0,46,45,2813.913908301913,0.0,865.2410664625326,2570.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,3,126770,1,1,3,0,1,,283.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,1452.25872490602,626.0,52492.87471838617,1,1,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048959025654196665,34995.24981225745,9,5,9,9_1,9_0,9_0_0 -16738,1,41.0,341.0,2,112,700.0,0.0,0.0,65,56,3674.2187974642816,15.527587572291866,967.5219593031513,3265.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105787,2,1,4,0,1,,590.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1579.58987856589,700.0,32684.80535866793,4,4,1,2,150.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09989351211278148,18158.22519925996,4,2,4_1,4_1_1,4_0_1,4_0_1 -16739,2,67.0,0.0,5,112,1850.0,0.0,0.0,75,77,0.0,82.81380038555662,2557.0223210154713,1930.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,119183,2,1,3,0,1,,122.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1459.26881907519,1850.0,36037.46096048379,5,5,0,1,86.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05355538233163279,24024.97397365586,6,3,6,6_1,6_0,6_0_0 -16740,2,58.0,0.0,5,112,326.0,0.0,0.0,77,37,1463.7131794776408,414.0690019277831,450.58879818975333,1766.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,4,120.0,1,,3,124350,2,1,2,0,1,,297.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1505.81442397371,326.0,65756.16147503625,7,1,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026856798821361348,43837.4409833575,10,5,10,10_1,10_0,10_0_0 -16741,2,36.0,0.0,9,112,1788.0,0.0,0.0,34,34,0.0,0.0,2471.327518905764,1788.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,119815,2,1,1,0,1,,595.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1376.7531720376,1788.0,78209.75328630755,1,1,1,2,122.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022861598775980686,37242.73966014645,9,5,9,9_1,9_0,9_0_0 -16742,2,34.0,0.0,8,112,607.0,0.0,0.0,52,64,2240.377315527001,0.0,838.9797561385899,2167.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,113317,2,1,2,0,1,,452.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,1408.09615144775,607.0,56595.23621189245,1,1,1,2,105.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03828944174535744,20212.584361390163,5,3,5,5_1,5_0,5_0_0 -16743,2,83.0,0.0,2,112,420.0,0.0,0.0,72,72,5974.339508072003,0.0,580.5131755818909,4540.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105812,2,2,2,0,1,,407.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1668.71694166676,420.0,24093.582483717655,5,5,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1884319197059264,16062.388322478437,4,2,4_0,4_1_0,4_0_0,4_0_1 -16744,1,27.0,16.0,1,112,1500.0,0.0,0.0,55,55,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,118561,2,2,5,0,1,,500.0,550.0,43,2.0,0.0,3.0,3.0,1.8,4,4,2070.86964208227,1500.0,34192.38238861898,1,1,2,3,110.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.045624197292530574,18995.76799367721,5,3,5,5_1,5_0,5_1_0 -16745,2,57.0,0.0,1,112,700.0,0.0,0.0,75,45,1792.3018524216009,383.01382678319936,967.5219593031513,2270.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,,1,129542,2,1,2,0,1,,400.0,,42,1.0,0.0,6.0,3.0,2.0,1,1,1612.52794755853,700.0,52542.71318212518,5,1,0,1,80.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04320294599427433,26271.35659106259,7,4,7,7_1,7_0,7_1_0 -16746,2,55.0,0.0,1,112,1025.0,0.0,0.0,55,63,0.0,0.0,1416.7285832653288,1085.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,130707,2,1,2,0,1,,313.0,,43,2.0,1.0,3.0,2.0,1.5,1,1,1817.96375644914,1025.0,39562.85915094245,1,1,1,2,90.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02742471154221809,26375.239433961633,7,4,7,7_1,7_0,7_1_0 -16747,2,63.0,0.0,8,112,2200.0,0.0,0.0,74,72,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,116607,2,1,2,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1410.4991491556,2200.0,32985.27030649053,5,5,0,1,140.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06669643691132962,21990.180204327018,6,3,6,6_1,6_0,6_0_0 -16748,2,30.0,0.0,9,112,2800.0,0.0,0.0,21,54,0.0,0.0,3870.0878372126053,2800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,104652,2,1,1,0,1,,478.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1526.73435114315,2800.0,47659.0,1,1,1,2,214.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058750708155857236,22694.761904761905,6,3,6,6_1,6_0,6_0_0 -16749,2,45.0,0.0,1,112,807.0,0.0,0.0,46,34,2987.1697540360015,310.55175144583734,1115.414601653776,3107.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,128713,2,3,3,0,2,,438.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1840.53523087469,807.0,75055.05120354019,1,1,0,1,139.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041396281132021255,41697.25066863344,9,5,9,9_1,9_0,9_1_0 -16750,2,94.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1928.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127677,2,3,4,0,2,,140.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,2349.13723484789,0.0,17882.368439382524,0,5,0,1,100.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10781569603240843,17882.368439382524,4,2,4_0,4_1_0,4_2_0,4_1_0 -16751,2,23.0,0.0,1,111,1300.0,0.0,0.0,0,42,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,15.0,2,,1,125841,1,2,0,0,1,,250.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2992.17986393368,1300.0,26151.315216464696,0,1,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04971069291312463,26151.315216464696,7,4,7,7_0,7_2,7_1_0 -16752,2,80.0,0.0,6,111,2202.0,0.0,0.0,77,74,0.0,0.0,3043.547649122199,2257.0,94.61798523046055,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,125914,2,1,0,0,1,,527.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,2737.35243528357,2202.0,57328.875761007504,5,5,0,1,110.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03936933997116875,38219.250507338336,9,5,9,9_0,9_2,9_0_0 -16753,2,82.0,0.0,1,111,670.0,3300.0,0.0,0,86,0.0,0.0,926.0567324758734,3970.0,0.0,5985.054572796581,20,1,2,2,2,2,2,2,1,0,,2,,1,114395,1,3,0,0,2,,280.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,2967.17250940797,670.0,38462.28700808093,0,7,0,1,120.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.1032179911497697,38462.28700808093,9,5,9,9_0,9_2,9_1_0 -16754,2,65.0,0.0,2,111,215.0,154.0,0.0,75,78,0.0,0.0,297.16745892882506,369.0,0.0,279.3025467305071,70,0,0,0,0,0,0,0,0,0,,2,,2,114468,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,3.0,2.0,1,1,2957.91248522475,215.0,36289.718288086195,5,5,0,1,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010168169316462883,18144.859144043097,4,2,4_0,4_0_0,4_2_0,4_0_1 -16755,1,48.0,120.0,2,111,160.0,430.0,0.0,0,67,0.0,0.0,221.1478764121489,590.0,0.0,779.870747364403,12,0,0,0,0,0,0,0,0,2,10.0,2,,2,110692,2,3,0,1,1,765.0,0.0,460.0,32,1.0,1.0,4.0,2.0,1.5,2,2,2898.20157480688,160.0,30723.433252516465,0,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019203582983411363,20482.288835010975,5,3,5,5_0,5_2,5_0_1 -16756,2,71.0,0.0,2,111,328.0,1963.0,0.0,75,75,0.0,0.0,453.3531466449052,2291.0,0.0,3560.2006443635423,50,0,0,0,0,0,0,0,0,0,,1,,2,116941,2,1,2,0,2,,443.0,,41,0.0,0.0,2.0,2.0,1.5,1,1,1981.82256164334,328.0,43759.011328159235,5,5,0,1,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05235493057233963,29172.674218772823,8,4,8,8_1,8_2,8_0_1 -16757,2,68.0,0.0,5,111,380.0,0.0,0.0,0,77,0.0,0.0,525.2262064788536,380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,117412,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2447.66136721177,380.0,16629.873529222496,0,5,0,1,58.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022850444372427305,16629.873529222496,4,2,4_0,4_0_0,4_2_0,4_0_0 -16758,2,43.0,0.0,1,111,0.0,0.0,1267.0,21,54,0.0,414.0690019277831,647.3271952391442,1667.0,0.0,1448.492396484884,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,102725,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1650.92426184426,0.0,49525.71483279905,1,1,1,2,130.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03365928196347824,19048.351858768867,5,3,5,5_1,5_2,5_1_0 -16759,2,58.0,0.0,2,111,525.0,0.0,0.0,0,90,2987.1697540360015,0.0,725.6414694773636,2555.0,51.60981012570575,0.0,50,2,2,2,2,1,2,2,2,2,10.0,1,,2,119532,1,3,2,0,2,,165.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1908.58230882776,525.0,22428.143247303975,0,1,1,2,74.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.11391937227381181,22428.143247303975,6,3,6,6_1,6_2,6_0_1 -16760,2,48.0,0.0,1,111,542.0,920.0,0.0,56,48,0.0,0.0,749.1384313461543,1462.0,0.0,1668.560668779653,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,107733,2,1,3,0,1,,282.0,,43,3.0,0.0,3.0,4.0,2.5,1,1,498.942908429618,542.0,39680.898837434994,1,1,1,2,85.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03684392347032089,15872.359534973997,3,2,3_0,3_1_0,3_2_0,3_1_0 -16761,1,37.0,337.0,5,111,500.0,0.0,0.0,0,85,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,3,132571,2,2,0,1,1,590.0,0.0,303.0,31,0.0,0.0,4.0,3.0,1.6,2,2,781.777517632371,500.0,13753.635987542053,0,7,2,3,79.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03635402307090987,8596.022492213782,1,1,1_1,1_0_1,1_2_1,1_0_0 -16762,2,46.0,0.0,5,111,384.0,100.0,0.0,78,63,0.0,0.0,530.7549033891573,484.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,126103,2,1,0,1,1,564.0,0.0,260.0,42,1.0,3.0,3.0,2.0,1.5,2,2,676.015347867176,384.0,20242.060692381514,7,1,2,3,55.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02391060907065468,13494.707128254342,3,2,3_0,3_0_0,3_2_0,3_0_0 -16763,2,36.0,0.0,6,111,1700.0,0.0,0.0,42,52,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,130017,2,1,1,0,1,,450.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1962.09563864882,1700.0,56563.62388263886,1,1,1,2,72.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030054651440424827,31424.23549035492,8,4,8,8_1,8_2,8_0_0 -16764,2,86.0,0.0,2,111,521.0,1725.0,0.0,0,74,0.0,0.0,720.1127725670598,2246.0,0.0,3128.5512539618494,41,0,0,0,0,0,0,0,0,0,,1,,2,130187,2,2,1,0,2,,285.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,1775.35660393939,521.0,60995.92385859837,0,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0368221326593349,40663.94923906558,9,5,9,9_1,9_2,9_0_1 -16765,2,44.0,0.0,2,111,470.0,0.0,0.0,0,52,0.0,0.0,649.6218869606873,470.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,105000,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,3,2,2659.61550856894,470.0,24575.895419982175,0,1,1,2,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01912443033989526,16383.930279988117,4,2,4_0,4_0_0,4_2_0,4_0_1 -16766,2,38.0,0.0,2,111,400.0,90.0,0.0,21,52,0.0,0.0,552.8696910303722,490.0,0.0,163.2287610762704,12,0,0,0,0,0,0,0,0,2,5.0,2,,2,120362,2,3,0,3,1,816.0,0.0,445.0,43,2.0,0.0,3.0,4.0,2.3,2,2,2878.93587275287,400.0,39165.0984827754,1,1,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012511139228093588,17028.303688163218,4,2,4_0,4_0_0,4_2_0,4_0_1 -16767,2,60.0,0.0,1,111,700.0,1500.0,0.0,55,75,0.0,0.0,967.5219593031513,2200.0,0.0,2720.4793512711735,42,0,0,0,0,0,0,0,0,0,,1,,1,124422,2,2,2,0,1,,400.0,,42,1.0,1.0,5.0,2.0,1.5,2,1,1809.96711380567,700.0,27845.389099376604,4,5,0,1,120.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07900769467248181,18563.592732917736,4,2,4_0,4_1_0,4_2_0,4_1_0 -16768,2,85.0,0.0,7,111,1400.0,0.0,0.0,0,77,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,109462,2,1,2,0,1,,175.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,2077.44025482342,1400.0,30954.911679366705,0,5,0,1,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045227071377276246,30954.911679366705,8,4,8,8_1,8_2,8_0_0 -16769,1,33.0,216.0,7,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,1899.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,122271,2,1,2,0,1,,496.0,478.0,42,1.0,0.0,4.0,4.0,2.1,1,1,1719.79750427756,0.0,29605.664676675748,7,1,2,3,90.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06414313006443292,14097.935560321785,3,2,3_1,3_1_1,3_2_1,3_0_0 -16770,1,64.0,77.0,2,111,474.0,417.0,0.0,85,62,0.0,0.0,655.1505838709911,891.0,0.0,756.2932596533861,71,2,1,2,1,1,2,2,2,2,5.0,2,,2,117379,2,2,0,1,1,600.0,0.0,350.0,42,1.0,3.0,4.0,3.0,1.8,1,1,2226.08910314127,474.0,18598.461782677157,6,1,2,3,62.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04790718772398095,10332.478768153976,2,1,2_1,2_0_1,2_2_1,2_0_1 -16771,2,31.0,0.0,1,111,429.0,740.0,0.0,84,46,0.0,0.0,592.9527436300742,1169.0,0.0,1342.1031466271122,31,1,2,2,1,2,2,2,2,2,5.0,2,,1,133316,2,1,0,0,1,,280.0,,42,1.0,0.0,3.0,3.0,1.8,1,1,2653.97195520284,429.0,29169.45894487129,3,1,1,2,64.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04007616329837818,16205.254969372938,4,2,4_0,4_0_0,4_2_0,4_1_0 -16772,2,79.0,0.0,2,112,450.0,0.0,0.0,77,75,0.0,0.0,621.9784024091688,600.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,117543,2,1,2,0,1,,250.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1173.31530281993,450.0,33395.42016119027,5,5,0,1,75.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017966535444200713,22263.613440793513,6,3,6,6_1,6_0,6_0_1 -16773,2,60.0,0.0,1,112,720.0,0.0,0.0,86,11,2987.1697540360015,207.03450096389156,995.16544385467,3070.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,125443,1,1,1,0,2,,120.0,,42,2.0,1.0,4.0,3.0,2.0,1,1,1485.83749792783,720.0,351075.65862220124,5,1,0,1,95.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00874455384360236,175537.82931110062,10,5,10,10_1,10_0,10_1_0 -16774,2,87.0,0.0,1,112,867.0,0.0,0.0,0,74,5974.339508072003,0.0,1198.345055308332,5017.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,133417,2,1,4,0,1,,204.0,,11,0.0,1.0,6.0,1.0,1.0,3,3,1539.79069194566,867.0,70657.95446812618,0,5,0,1,200.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07100403681036606,70657.95446812618,10,5,10,10_1,10_0,10_1_0 -16775,2,55.0,0.0,1,112,591.0,3612.0,0.0,0,35,0.0,0.0,816.864968497375,4203.0,0.0,6550.914277860986,20,2,2,2,2,2,1,2,1,0,,1,,1,128265,2,2,3,0,1,,175.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1339.42114984578,591.0,44789.44650937046,0,1,0,1,126.0,7,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09383906986036733,34453.42039182343,9,5,9,9_1,9_0,9_1_0 -16776,2,56.0,0.0,1,112,500.0,0.0,0.0,0,43,0.0,724.6207533736205,691.0871137879653,1230.0,51.60981012570575,0.0,42,2,2,2,2,1,1,2,2,0,,1,,1,100865,2,3,1,0,1,,250.0,524.0,12,1.0,1.0,5.0,1.0,1.0,1,1,1597.84241569694,500.0,31464.55623298681,0,1,2,3,100.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.03909160488049384,31464.55623298681,8,4,8,8_1,8_0,8_1_0 -16777,2,73.0,0.0,1,112,450.0,0.0,0.0,71,71,0.0,258.79312620486445,621.9784024091688,760.0,103.2196202514115,0.0,60,2,2,2,2,2,2,2,1,0,,1,,1,132538,1,3,4,0,1,,100.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1262.66662859989,450.0,17643.110985028685,5,5,0,1,60.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04307630330302342,11762.073990019124,2,1,2_0,2_1_0,2_0_0,2_1_0 -16778,2,62.0,0.0,1,112,1480.0,0.0,0.0,77,78,0.0,558.9931526025072,2045.6178568123773,2020.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109359,2,1,2,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1290.32334794746,1480.0,22401.142618112583,6,5,0,1,99.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09017397167797667,14934.095078741722,3,2,3_0,3_1_0,3_0_0,3_1_0 -16779,2,66.0,0.0,9,112,2000.0,0.0,0.0,74,74,0.0,0.0,2764.3484551518613,2150.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,129003,2,1,1,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1397.70990352549,2000.0,81755.8954371556,5,5,0,1,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026297797712370105,54503.93029143707,10,5,10,10_1,10_0,10_0_0 -16780,2,59.0,0.0,1,112,2500.0,0.0,0.0,74,75,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129998,2,2,4,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1331.11402407117,2500.0,67097.26167827722,5,5,1,2,140.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03725934468066938,44731.50778551815,10,5,10,10_1,10_0,10_1_0 -16781,2,47.0,0.0,1,112,500.0,0.0,0.0,0,53,0.0,0.0,691.0871137879653,600.0,172.03270041901916,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,107714,2,1,2,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1244.99537823236,500.0,25515.021189277384,0,1,0,1,90.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023515559542319656,25515.021189277384,7,4,7,7_1,7_0,7_1_0 -16782,2,65.0,0.0,5,112,630.0,0.0,0.0,77,78,0.0,0.0,870.7697633728362,665.0,60.21144514665671,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,111833,2,1,2,0,1,,170.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1164.01803868096,630.0,48119.59497200015,5,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013819733943873602,32079.729981333436,8,4,8,8_1,8_0,8_0_0 -16783,2,45.0,0.0,1,112,500.0,0.0,0.0,0,46,746.7924385090004,0.0,691.0871137879653,1050.0,86.01635020950958,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,103734,2,3,1,0,1,,80.0,,32,1.0,0.0,9.0,3.0,1.8,1,1,1486.86947963548,500.0,64974.49821350625,0,1,0,1,120.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016160186363420603,36096.94345194792,9,5,9,9_1,9_0,9_1_0 -16784,2,57.0,0.0,7,112,900.0,0.0,0.0,52,47,0.0,0.0,1243.9568048183376,1050.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,1,5.0,1,,5,121403,2,1,1,0,1,,250.0,,43,3.0,0.0,5.0,3.0,2.0,2,2,1388.23894671576,900.0,73288.97047155815,1,1,0,1,145.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014326848818370045,36644.48523577907,9,5,9,9_1,9_0,9_0_0 -16785,2,46.0,0.0,2,112,1780.0,0.0,0.0,43,65,1493.5848770180007,0.0,2460.2701250851565,2830.0,86.01635020950958,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,109329,1,1,2,0,2,,364.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1156.38467978751,1780.0,73679.62660640728,1,1,1,2,120.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03840953232727023,32034.620263655343,8,4,8,8_1,8_0,8_0_1 -16786,2,53.0,0.0,7,112,1542.0,0.0,0.0,0,34,0.0,0.0,2131.312658922085,1592.0,86.01635020950958,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,112786,1,2,2,0,1,,137.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,1339.36516153629,1542.0,30127.78398977846,0,1,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05284158969475227,30127.78398977846,8,4,8,8_1,8_0,8_0_0 -16787,2,56.0,0.0,5,112,900.0,0.0,0.0,62,52,0.0,0.0,1243.9568048183376,2100.0,2064.39240502823,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,111111,2,1,1,0,1,,350.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1231.72725157423,900.0,73149.75252281438,1,1,0,1,105.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028708231095450933,36574.87626140719,9,5,9,9_1,9_0,9_0_0 -16788,2,57.0,0.0,1,112,600.0,0.0,0.0,45,46,2987.1697540360015,310.55175144583734,829.3045365455583,3020.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,1,127475,2,2,2,0,1,,260.0,,43,2.0,1.0,5.0,5.0,2.4,1,1,1247.41528722757,600.0,67020.57805215468,1,1,0,1,120.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04506078711600889,27925.240855064454,7,4,7,7_1,7_0,7_1_0 -16789,2,48.0,0.0,1,112,1360.0,0.0,0.0,33,42,5974.339508072003,0.0,1879.7569495032656,5860.0,860.1635020950959,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,110613,2,2,3,0,1,,250.0,540.0,43,2.0,1.0,6.0,4.0,2.5,2,2,1426.16716849441,1360.0,77901.5322344192,1,1,2,3,110.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07522316740017701,31160.612893767677,8,4,8,8_1,8_0,8_1_0 -16790,2,58.0,0.0,5,112,1400.0,0.0,0.0,11,67,0.0,357.13451416271295,1935.0439186063027,1795.0,86.01635020950958,0.0,20,2,2,2,2,2,2,2,1,2,30.0,1,,3,109020,1,2,3,0,1,,163.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1164.01803868096,1400.0,26137.400227855964,1,1,0,1,92.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.06867553713651202,17424.93348523731,4,2,4_0,4_1_0,4_0_0,4_0_0 -16791,2,54.0,0.0,9,300,0.0,0.0,0.0,45,46,0.0,0.0,0.0,969.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,100445,2,1,1,0,1,,674.0,,43,3.0,2.0,6.0,4.0,2.3,3,3,1225.57540561123,0.0,63941.63166664724,1,1,1,2,180.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015154445933625473,27800.70942028141,7,4,7,7_1,7_0,7_0_0 -16792,2,72.0,0.0,1,300,456.0,0.0,0.0,78,78,1493.5848770180007,621.1035028916747,630.2714477746243,2176.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133217,1,3,1,0,2,,220.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,1238.10580728782,456.0,25475.258725974916,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08541620807098305,16983.50581731661,4,2,4_0,4_1_0,4_0_0,4_1_0 -16793,2,80.0,0.0,1,300,900.0,0.0,0.0,77,72,1792.3018524216009,0.0,1243.9568048183376,2220.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,106319,2,2,1,0,1,,600.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1409.20163245559,900.0,24761.496146584712,5,5,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08965532562563668,16507.66409772314,4,2,4_0,4_1_0,4_0_0,4_1_0 -16794,2,58.0,0.0,1,300,300.0,0.0,0.0,37,33,4480.754631054002,0.0,414.65226827277917,3360.0,103.2196202514115,0.0,50,2,2,2,1,1,2,2,2,2,10.0,1,,1,118600,2,1,1,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1242.86803062278,300.0,54596.868004744465,1,1,0,1,230.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06154199174406884,36397.91200316298,9,5,9,9_1,9_0,9_1_0 -16795,2,51.0,0.0,1,300,315.0,0.0,0.0,0,52,0.0,414.0690019277831,435.3848816864181,745.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,1,120952,2,1,2,0,1,,250.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,1203.47110008872,315.0,23798.312947447972,0,1,1,2,50.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03130474003115799,23798.312947447972,6,3,6,6_1,6_0,6_1_0 -16796,2,52.0,0.0,1,300,400.0,0.0,0.0,0,43,2987.1697540360015,0.0,552.8696910303722,2460.0,103.2196202514115,0.0,50,1,2,2,1,1,2,2,2,2,10.0,1,,1,109717,1,1,2,0,1,,400.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,1628.33538444152,400.0,17396.377350672108,0,1,0,1,220.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.1414087513975982,17396.377350672108,4,2,4_0,4_1_0,4_0_0,4_1_0 -16797,2,69.0,0.0,5,300,720.0,0.0,0.0,78,78,0.0,51.75862524097289,995.16544385467,830.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115615,2,1,2,0,1,,180.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1195.53079913856,720.0,36631.90881264185,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022657841944440607,24421.272541761235,7,4,7,7_1,7_0,7_0_0 -16798,0,79.0,0.0,1,300,390.0,0.0,0.0,77,86,7467.924385090004,0.0,539.0479487546129,11351.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,107254,2,1,1,0,2,,258.0,,41,0.0,1.0,9.0,2.0,1.5,4,4,1331.11402407117,390.0,73171.92877420428,5,5,0,1,180.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15512779545592126,48781.28584946952,10,5,10,10_1,10_0,10_1_0 -16799,2,31.0,0.0,7,120,0.0,0.0,0.0,47,13,0.0,0.0,0.0,1949.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,112856,2,1,4,0,1,,206.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1386.43426347066,0.0,40828.16856177198,1,1,1,2,85.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047736650176978,27218.77904118132,7,4,7,7_1,7_0,7_0_0 -16800,2,82.0,0.0,1,120,182.0,0.0,0.0,0,75,3584.6037048432017,0.0,251.55570941881936,2582.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130714,2,1,2,0,1,,377.0,,11,0.0,1.0,5.0,1.0,1.0,4,4,1349.54667986402,182.0,25837.0,0,5,0,1,122.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09993420288733212,25837.0,7,4,7,7_1,7_0,7_1_0 -16801,2,40.0,0.0,1,120,1320.0,0.0,0.0,85,65,0.0,0.0,1824.4699804002285,1410.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,122330,2,1,1,0,1,,575.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,1125.85382628186,1320.0,19537.03004854501,6,1,1,2,121.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07217064192952949,9303.34764216429,1,1,1_0,1_1_0,1_0_0,1_1_0 -16802,2,39.0,0.0,1,120,894.0,0.0,0.0,54,63,0.0,786.7311036627879,1235.663759452882,1654.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,129747,2,1,1,0,1,,941.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1256.76624937853,894.0,46111.99325463911,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03586919331086602,25617.77403035506,7,4,7,7_1,7_0,7_1_0 -16803,2,41.0,0.0,9,120,1500.0,0.0,0.0,54,37,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,3.0,1,2008.0,6,119496,2,1,1,0,1,,308.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,2,2,1266.85448669124,1500.0,49279.135422036146,1,1,1,2,131.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03165639954191272,16992.8053179435,4,2,4_0,4_1_0,4_0_0,4_0_0 -16804,2,63.0,0.0,5,120,1100.0,0.0,0.0,74,74,4032.679167948602,0.0,1520.3916503335236,3800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,111744,2,1,2,0,1,,570.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,1184.96174621307,1100.0,60241.26072935283,5,5,0,1,160.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0630796891365262,40160.84048623522,9,5,9,9_1,9_0,9_0_0 -16805,2,39.0,0.0,1,120,430.0,1130.0,0.0,52,69,0.0,0.0,594.3349178576501,1560.0,0.0,2049.4277779576173,70,0,0,0,0,0,0,0,0,2,5.0,1,,1,117807,2,1,1,0,1,,712.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1149.73669772764,430.0,40649.373105669474,1,1,1,2,140.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038376975604143396,19356.844336033082,5,3,5,5_1,5_0,5_1_0 -16806,2,36.0,0.0,1,120,1000.0,0.0,0.0,48,42,0.0,724.6207533736205,1382.1742275759307,1790.0,154.82943037711726,0.0,41,1,2,2,1,2,2,2,2,3,20.0,1,,1,116437,2,2,1,0,1,,1500.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1180.73790439054,1000.0,67710.13760080605,1,1,1,2,160.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0264362186140158,32242.922667050498,8,4,8,8_1,8_0,8_1_0 -16807,2,45.0,0.0,2,120,790.0,0.0,0.0,34,33,1672.8150622601609,0.0,1091.917639784985,1990.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,122857,2,1,2,0,1,,1000.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1100.77920490119,790.0,81086.83576082235,1,1,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02454159150900647,33786.18156700931,9,5,9,9_1,9_0,9_0_1 -16808,2,84.0,0.0,1,120,575.0,89.0,0.0,77,77,2385.255048597747,0.0,794.7501808561601,2261.0,0.0,161.41510817542294,70,0,0,0,0,0,0,0,0,0,,1,,1,124790,2,2,1,0,1,,430.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1072.32811613602,575.0,25505.594213122422,5,5,0,1,100.0,0,0,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08864721915934559,17003.729475414948,4,2,4_0,4_1_0,4_0_0,4_1_0 -16809,2,59.0,0.0,1,120,736.0,1820.0,0.0,52,75,0.0,0.0,1017.2802314958849,2556.0,0.0,3300.848279542357,71,0,0,0,0,0,0,0,0,0,,1,,1,117972,2,1,1,0,1,,1324.0,,42,2.0,0.0,4.0,4.0,2.5,6,4,1149.60178604697,736.0,85294.60007100114,1,5,0,1,120.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02996672705977082,34117.84002840046,9,5,9,9_1,9_0,9_1_0 -16810,2,66.0,0.0,5,120,714.0,839.0,0.0,77,78,0.0,0.0,986.8723984892144,1553.0,0.0,1521.6547838110096,41,0,0,0,0,0,0,0,0,0,,1,,3,125731,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1253.05378309796,714.0,26019.982061150044,5,5,0,1,100.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05968489894997874,17346.65470743336,4,2,4_0,4_1_0,4_0_0,4_0_0 -16811,2,69.0,0.0,1,120,623.0,1910.0,0.0,77,75,0.0,0.0,861.0945437798048,2533.0,0.0,3464.0770406186275,50,0,0,0,0,0,0,0,0,0,,1,,1,111770,2,2,3,0,1,,830.0,,41,0.0,1.0,7.0,2.0,1.5,3,2,1122.77692485808,623.0,30265.88169285454,5,5,0,1,118.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08369159787596787,20177.254461903027,5,3,5,5_1,5_0,5_1_0 -16812,2,46.0,0.0,2,111,700.0,0.0,0.0,0,23,4480.754631054002,0.0,967.5219593031513,4437.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,5.0,2,,2,107974,1,3,0,1,2,,286.0,600.0,32,2.0,0.0,5.0,5.0,2.8,2,2,2493.80480800458,700.0,144201.89357713965,0,1,2,3,130.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.030769360165346666,51500.67627754988,10,5,10,10_0,10_2,10_0_1 -16813,2,84.0,0.0,1,111,0.0,0.0,0.0,78,74,0.0,0.0,0.0,1211.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,108150,2,3,3,0,2,,173.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1541.67625908883,0.0,53352.29562070413,5,5,0,1,59.0,5,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.022698179823588585,35568.19708046942,9,5,9,9_1,9_2,9_1_0 -16814,1,57.0,280.0,2,111,600.0,0.0,0.0,0,52,1493.5848770180007,0.0,829.3045365455583,1670.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,113730,1,3,0,0,2,,400.0,473.0,32,2.0,1.0,3.0,2.0,1.5,2,2,2548.16894437991,600.0,16993.81487560537,0,1,2,3,78.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09827104815630808,11329.209917070248,2,1,2_1,2_0_1,2_2_1,2_0_1 -16815,2,44.0,0.0,1,111,517.0,1800.0,0.0,85,68,0.0,0.0,714.5840756567561,2317.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,1,116281,2,1,1,0,1,,700.0,,42,1.0,0.0,6.0,7.0,3.3999999999999995,1,1,1527.01517592704,517.0,25310.18735934962,6,1,1,2,122.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09154416627200893,7444.17275274989,1,1,1_0,1_1_0,1_2_0,1_1_0 -16816,2,25.0,0.0,1,111,0.0,1814.0,0.0,55,62,0.0,0.0,0.0,5106.0,0.0,3289.9663621372724,71,2,2,2,2,1,2,2,2,2,10.0,1,,1,129736,1,3,4,0,2,,350.0,510.0,43,2.0,0.0,5.0,2.0,1.5,4,3,1686.33110124957,0.0,31151.094255054337,1,1,2,3,90.0,5,4,2,0,1,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.16391077495364517,20767.396170036223,5,3,5,5_1,5_2,5_1_0 -16817,2,66.0,0.0,7,111,22.0,75.0,0.0,75,74,0.0,0.0,30.407833006670472,97.0,0.0,136.02396756355867,50,0,0,0,0,0,0,0,0,0,,1,,5,111759,2,2,3,0,1,,202.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1594.05719546027,22.0,67168.19929814913,5,5,0,1,175.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0014441357817176572,44778.79953209942,10,5,10,10_1,10_2,10_0_0 -16818,2,89.0,0.0,2,111,384.0,1650.0,0.0,0,77,0.0,0.0,530.7549033891573,2034.0,0.0,2992.5272863982905,71,0,0,0,0,0,0,0,0,0,,2,,2,103689,2,1,0,1,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2184.9558639294,384.0,16260.80434404721,0,5,0,1,64.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12508606320846674,16260.80434404721,4,2,4_0,4_0_0,4_2_0,4_0_1 -16819,2,41.0,0.0,7,111,420.0,1100.0,0.0,55,47,0.0,0.0,580.5131755818909,1520.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,2,3.0,1,,5,100174,2,1,2,0,1,,220.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1561.81389926222,420.0,50785.557735616065,1,1,1,2,100.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02992976877231417,24183.598921721936,7,4,7,7_1,7_2,7_0_0 -16820,2,80.0,0.0,1,111,1000.0,0.0,0.0,77,75,0.0,0.0,1382.1742275759307,1120.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,127103,2,3,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1582.9713715166,1000.0,25539.011434213837,5,5,0,1,80.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043854477409394556,17026.007622809226,4,2,4_0,4_1_0,4_2_0,4_1_0 -16821,2,73.0,0.0,1,111,163.0,785.0,0.0,86,78,0.0,0.0,225.29439909487667,948.0,0.0,1423.7175271652475,71,0,0,0,0,0,0,0,0,0,,2,,1,121947,1,2,0,0,2,,450.0,140.0,41,0.0,4.0,4.0,2.0,1.5,1,1,2488.97706297576,163.0,18641.522756291233,5,5,2,3,70.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05085421466870588,12427.681837527489,2,1,2_0,2_0_0,2_2_0,2_1_0 -16822,2,77.0,0.0,5,111,249.0,1367.0,0.0,78,75,0.0,0.0,344.1613826664067,1616.0,0.0,2479.2635154584627,12,0,0,0,0,0,0,0,0,0,,1,,3,106724,2,2,2,0,2,,295.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1582.9713715166,249.0,31460.718373447766,5,5,0,1,92.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05136564209429727,20973.812248965176,5,3,5,5_1,5_2,5_0_0 -16823,2,60.0,0.0,2,111,1176.0,0.0,0.0,0,52,0.0,0.0,1625.4368916292942,1176.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,101282,2,1,0,0,1,,0.0,322.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2614.28390055126,1176.0,17695.886891634793,0,1,2,3,60.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06645612097328217,17695.886891634793,4,2,4_0,4_0_0,4_2_0,4_0_1 -16824,1,48.0,370.0,2,111,335.0,198.0,0.0,0,56,0.0,0.0,463.0283662379367,533.0,0.0,359.1032743677949,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,118567,2,2,0,1,1,750.0,258.0,349.0,32,1.0,2.0,4.0,2.0,1.5,1,1,2162.89228359711,335.0,11555.532729637358,0,1,2,3,71.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04612509111180778,7703.688486424905,1,1,1_1,1_0_1,1_2_1,1_0_1 -16825,2,25.0,0.0,2,111,175.0,550.0,0.0,85,67,0.0,0.0,241.88048982578783,725.0,0.0,997.5090954660969,33,2,2,2,2,1,2,2,2,0,,2,,2,129325,2,2,0,1,1,722.0,0.0,322.0,42,3.0,0.0,4.0,5.0,3.0,1,1,654.178830849693,175.0,23798.662824207495,6,1,2,3,90.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.030463896453146323,7932.887608069165,1,1,1_0,1_0_0,1_2_0,1_0_1 -16826,2,88.0,0.0,2,111,1800.0,0.0,0.0,0,86,3435.2452171414016,0.0,2487.913609636675,4100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,111195,2,1,2,0,1,,520.0,,11,0.0,2.0,11.0,1.0,1.0,1,1,1878.79255699701,1800.0,41314.86620118541,0,6,0,1,500.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09923788643135827,41314.86620118541,9,5,9,9_1,9_2,9_0_1 -16827,2,60.0,0.0,6,111,540.0,800.0,0.0,0,75,0.0,0.0,746.3740828910024,1340.0,0.0,1450.922320677959,10,2,2,2,1,2,2,2,2,0,,2,,4,100098,1,2,0,0,2,,372.0,,11,0.0,0.0,3.0,1.0,1.0,4,4,2513.29994536338,540.0,15318.504666698398,0,5,1,2,75.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.08747590115065784,15318.504666698398,3,2,3_0,3_0_0,3_2_0,3_0_0 -16828,1,93.0,65.0,6,111,190.0,168.0,0.0,0,77,0.0,0.0,262.6131032394268,358.0,0.0,304.6936873423714,71,0,0,0,0,0,0,0,0,0,,2,,4,117835,2,1,0,1,1,,0.0,690.0,11,0.0,2.0,1.0,1.0,1.0,3,3,3076.20281048927,190.0,15988.598577801782,0,5,2,3,25.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022390955546100162,15988.598577801782,3,2,3_1,3_0_1,3_2_1,3_0_0 -16829,1,83.0,270.0,2,111,250.0,1520.0,0.0,0,78,0.0,0.0,345.54355689398267,1770.0,0.0,2756.752409288122,12,0,0,0,0,0,0,0,0,0,,2,,2,124759,2,2,0,0,1,,230.0,462.0,11,0.0,0.0,3.0,1.0,1.0,2,2,2608.70279987161,250.0,18449.024311019966,0,5,2,3,60.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09594003293403132,18449.024311019966,4,2,4_1,4_0_1,4_2_1,4_0_1 -16830,2,47.0,0.0,7,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,522.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,12.0,2,,5,121760,2,2,0,0,1,,264.0,364.0,12,1.0,2.0,2.0,1.0,1.0,2,2,2044.20264379415,0.0,16131.104972287976,0,1,2,3,70.0,5,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03235984149236873,16131.104972287976,4,2,4_0,4_0_0,4_2_0,4_0_0 -16831,2,62.0,0.0,5,111,300.0,840.0,0.0,78,78,0.0,0.0,414.65226827277917,1140.0,0.0,1523.468436711857,50,2,2,2,2,1,2,2,2,0,,1,,3,112454,2,1,2,0,1,,320.0,522.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1474.05850023105,300.0,21034.964133906607,6,5,2,3,75.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.0541954810449339,14023.309422604405,3,2,3_0,3_1_0,3_2_0,3_0_0 -16832,2,78.0,0.0,6,111,300.0,0.0,0.0,77,75,5974.339508072003,0.0,414.65226827277917,6033.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,132307,2,2,3,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1658.16521503838,300.0,61694.211012272994,5,5,0,1,100.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09778875361255271,41129.474008182,9,5,9,9_1,9_2,9_0_0 -16833,2,41.0,0.0,1,111,800.0,0.0,0.0,0,53,4480.754631054002,0.0,1105.7393820607444,3800.0,0.0,0.0,41,2,2,2,1,1,2,2,2,2,10.0,1,,1,114080,2,3,3,0,1,,392.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1660.42237688533,800.0,25361.593930520154,0,1,1,2,70.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.14983285397638507,25361.593930520154,7,4,7,7_1,7_2,7_1_0 -16834,1,39.0,90.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,566.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,1,127800,2,2,0,1,1,57.0,108.0,289.0,32,1.0,1.0,3.0,2.0,1.3,1,1,2170.3510971006,0.0,14899.998792184953,0,4,2,3,54.0,5,4,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03798658026045391,11461.537532449964,2,1,2_1,2_0_1,2_2_1,2_1_0 -16835,2,48.0,0.0,9,111,700.0,0.0,0.0,52,68,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,129816,2,1,1,0,1,,408.0,413.0,43,3.0,0.0,4.0,4.0,2.5,2,2,1560.50022595486,700.0,45039.0,1,1,2,3,80.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01687426452629943,18015.6,4,2,4_0,4_1_0,4_2_0,4_0_0 -16836,2,79.0,0.0,2,111,320.0,1150.0,0.0,71,71,0.0,0.0,442.2957528242978,1470.0,0.0,2085.7008359745664,42,0,0,0,0,0,0,0,0,0,,1,,2,129631,2,2,2,0,1,,340.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1748.87579711988,320.0,22583.88995023549,5,5,0,1,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06509064661753153,15055.926633490328,3,2,3_0,3_1_0,3_2_0,3_0_1 -16837,2,72.0,0.0,2,111,230.0,335.0,0.0,56,78,0.0,0.0,317.900072342464,565.0,0.0,607.5737217838954,50,0,0,0,0,0,0,0,0,0,,2,,2,122460,2,3,0,1,1,1302.0,320.0,305.0,41,1.0,1.0,4.0,3.0,2.0,2,2,2119.26866916211,230.0,43089.48574607485,5,5,2,3,108.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013112247459380912,21544.742873037427,6,3,6,6_0,6_2,6_0_1 -16838,1,55.0,170.0,2,111,550.0,500.0,0.0,0,77,0.0,0.0,760.1958251667618,1050.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,2,,2,122060,2,2,0,1,1,1662.0,400.0,310.0,31,0.0,6.0,4.0,3.0,2.0,2,2,673.750142310139,550.0,14187.535030326042,0,7,3,4,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07400862783814181,7093.767515163021,1,1,1_1,1_0_1,1_2_1,1_0_1 -16840,2,67.0,0.0,2,111,355.0,0.0,0.0,0,77,0.0,0.0,490.67185078945533,385.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,132349,1,1,0,1,2,,145.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2440.71684269089,355.0,20507.58788828908,0,5,0,1,83.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018773538950422122,20507.58788828908,5,3,5,5_0,5_2,5_0_1 -16841,2,71.0,0.0,2,111,500.0,0.0,0.0,0,74,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113711,2,1,0,1,2,,450.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2760.45468958162,500.0,34632.07216621481,0,5,1,2,84.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01443748435266236,34632.07216621481,9,5,9,9_0,9_2,9_0_1 -16842,2,63.0,0.0,1,111,420.0,700.0,0.0,74,74,0.0,0.0,580.5131755818909,1120.0,0.0,1269.5570305932142,20,0,0,0,0,0,0,0,0,0,,1,,1,112098,1,1,2,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1592.88392401745,420.0,62900.77634080311,5,5,0,1,130.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01780582156779307,41933.85089386874,9,5,9,9_1,9_2,9_1_0 -16843,2,33.0,0.0,9,111,240.0,800.0,0.0,22,37,0.0,0.0,331.72181461822333,1040.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,118475,2,2,0,0,1,,280.0,800.0,43,2.0,0.0,4.0,2.0,1.5,1,1,2198.9156149754,240.0,61416.0,1,1,3,4,75.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016933698059137685,40944.0,9,5,9,9_0,9_2,9_0_0 -16844,2,42.0,0.0,1,111,140.0,400.0,0.0,0,34,0.0,0.0,193.50439186063028,540.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,3,1.0,2,,1,130915,1,1,0,0,1,,160.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2454.6407056484,140.0,32045.74542912395,0,1,1,2,80.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01685091087034708,32045.74542912395,8,4,8,8_0,8_2,8_1_0 -16845,2,85.0,0.0,8,111,132.0,289.0,0.0,0,75,0.0,0.0,182.44699804002283,421.0,0.0,524.1456883449127,60,0,0,0,0,0,0,0,0,0,,2,2001.0,6,115207,2,1,0,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2636.63587912784,132.0,34436.93903556325,0,5,0,1,85.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012225244513318405,34436.93903556325,9,5,9,9_0,9_2,9_0_0 -16846,2,66.0,0.0,2,111,0.0,0.0,700.0,0,74,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,42,0,0,0,0,0,0,0,0,0,,2,,2,129426,1,1,0,1,1,,150.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,775.943769674045,0.0,22813.124831387846,0,5,0,1,90.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0306840910736127,22813.124831387846,6,3,6,6_0,6_2,6_0_1 -16847,2,37.0,0.0,2,111,70.0,90.0,0.0,0,53,0.0,0.0,96.75219593031514,160.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,108144,1,3,0,1,2,,140.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,676.733308678441,70.0,21341.719059853498,0,1,1,2,64.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007497053051409549,21341.719059853498,6,3,6,6_0,6_2,6_0_1 -16848,1,29.0,360.0,5,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,918.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,2,,3,102430,2,1,0,1,1,1284.0,317.0,393.0,42,1.0,0.0,4.0,4.0,2.1,1,1,581.160133710931,0.0,26824.922323781757,6,1,2,3,80.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034221907110096005,12773.772535134169,2,1,2_1,2_0_1,2_2_1,2_0_0 -16849,1,62.0,254.0,5,111,160.0,120.0,0.0,0,71,0.0,0.0,221.1478764121489,280.0,0.0,217.63834810169388,71,2,1,2,2,1,2,2,2,0,,2,,3,127076,1,2,0,1,1,436.0,270.0,281.0,21,1.0,1.0,3.0,3.0,1.8,1,1,793.95312676166,160.0,16862.940786895695,0,5,2,3,106.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.01660445847129997,9368.300437164275,1,1,1_1,1_0_1,1_2_1,1_0_0 -16850,2,68.0,0.0,2,111,395.0,80.0,0.0,0,86,0.0,0.0,545.9588198924926,475.0,0.0,145.09223206779592,20,0,0,0,0,0,0,0,0,0,,2,,2,130119,1,3,0,1,1,1350.0,230.0,319.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2602.08575530975,395.0,15440.913568213056,0,5,2,3,57.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03076242852481498,15440.913568213056,3,2,3_0,3_0_0,3_2_0,3_0_1 -16851,1,28.0,304.0,2,111,0.0,0.0,640.0,0,43,0.0,0.0,326.984534296016,640.0,0.0,731.6772957776841,71,2,2,2,1,1,2,2,2,1,20.0,2,,2,112867,1,3,0,1,1,1048.0,270.0,281.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1836.77066843638,0.0,11306.960846822321,0,1,2,3,56.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05660230088970936,8697.662189863324,1,1,1_1,1_0_1,1_2_1,1_0_1 -16852,2,81.0,0.0,2,111,165.0,150.0,0.0,0,78,0.0,0.0,228.05874755002856,315.0,0.0,272.04793512711734,31,0,0,0,0,0,0,0,0,0,,2,,2,106839,2,1,0,1,1,1036.0,144.0,277.0,11,0.0,3.0,3.0,1.0,1.0,2,1,2227.32603991864,165.0,16890.13575424454,0,5,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018649938910102578,16890.13575424454,4,2,4_0,4_0_0,4_2_0,4_0_1 -16853,1,87.0,81.0,2,111,200.0,120.0,0.0,0,77,0.0,0.0,276.4348455151861,320.0,0.0,217.63834810169388,20,0,0,0,0,0,0,0,0,0,,2,,2,125121,2,1,0,1,1,1044.0,190.0,277.0,11,0.0,5.0,3.0,1.0,1.0,4,3,1969.33939916158,200.0,15403.294770163662,0,5,2,3,63.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020774776096594817,15403.294770163662,3,2,3_1,3_0_1,3_2_1,3_0_1 -16854,2,24.0,0.0,2,111,0.0,0.0,420.0,68,52,0.0,0.0,214.58360063176053,420.0,0.0,480.16322535410524,20,2,1,2,2,1,2,2,1,2,5.0,2,,2,126954,1,3,0,1,1,1048.0,270.0,287.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1836.77066843638,0.0,24664.297667652798,4,1,2,3,86.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01702866246829439,16442.865111768533,4,2,4_0,4_0_0,4_2_0,4_0_1 -16855,2,50.0,0.0,1,111,1500.0,300.0,0.0,13,13,0.0,0.0,2073.261341363896,1800.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,1,,1,119268,1,2,1,0,1,,250.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,1562.36861444938,1500.0,83314.6147908911,1,1,0,1,140.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021604852936279752,29755.21956817539,8,4,8,8_1,8_2,8_1_0 -16856,2,51.0,0.0,2,111,0.0,0.0,2400.0,62,46,0.0,0.0,1226.19200361006,2400.0,0.0,2743.7898591663156,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,117331,2,1,2,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,1564.19470426631,0.0,43511.97629559256,1,1,1,2,128.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05515722806281962,17404.790518237023,4,2,4_0,4_1_0,4_2_0,4_0_1 -16857,2,68.0,0.0,6,111,423.0,1251.0,0.0,77,78,0.0,0.0,584.6596982646187,1674.0,0.0,2268.8797789601585,41,0,0,0,0,0,0,0,0,0,,1,,4,121194,2,1,2,0,2,,200.0,,41,1.0,2.0,6.0,3.0,2.0,1,1,1930.27186608768,423.0,47523.96035351708,5,5,0,1,85.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03522433710380185,23761.98017675854,6,3,6,6_1,6_2,6_0_0 -16858,2,82.0,0.0,2,111,230.0,220.0,0.0,0,77,0.0,0.0,317.900072342464,450.0,0.0,399.00363818643876,50,0,0,0,0,0,0,0,0,0,,2,,2,101794,1,1,0,1,1,1062.0,280.0,284.0,11,0.0,4.0,4.0,1.0,1.0,1,1,628.848384086632,230.0,16457.087041718954,0,5,2,3,104.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02734384273834388,16457.087041718954,4,2,4_0,4_0_0,4_2_0,4_0_1 -16859,2,53.0,0.0,2,111,275.0,900.0,0.0,22,46,0.0,0.0,380.0979125833809,1175.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,2,,2,125605,1,2,0,0,1,,320.0,530.0,43,2.0,0.0,3.0,3.0,1.8,2,2,867.98863343567,275.0,12140.300960046909,1,4,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0967850800294707,6744.611644470505,1,1,1_0,1_0_0,1_2_0,1_0_1 -16860,1,22.0,316.0,2,111,300.0,300.0,0.0,0,67,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,71,2,1,2,2,1,2,2,2,0,,2,,2,119237,1,3,0,1,1,1322.0,280.0,293.0,22,4.0,0.0,4.0,4.0,2.5,1,1,1888.21664801311,300.0,32860.96932330185,0,4,2,3,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.01825874319460618,13144.387729320739,2,1,2_1,2_0_1,2_2_1,2_0_1 -16862,2,66.0,0.0,2,221,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132031,2,1,0,0,1,,480.0,,11,0.0,3.0,3.0,1.0,1.0,2,1,3459.36232141097,1200.0,22119.54588956994,0,5,0,1,65.0,1,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05696319473692855,22119.54588956994,6,3,6,6_0,6_1,6_0_1 -16863,1,47.0,248.0,2,221,163.0,235.0,0.0,85,85,0.0,0.0,225.29439909487667,398.0,0.0,426.2084316991505,71,0,0,0,0,0,0,0,0,0,,2,,2,124970,2,2,0,1,1,568.0,180.0,236.0,41,0.0,0.0,2.0,2.0,1.5,2,2,2901.92693354927,163.0,8370.498007529633,6,6,2,3,44.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0475479475225944,5580.332005019755,1,1,1_1,1_0_1,1_1_1,1_0_1 -16864,2,89.0,0.0,2,221,216.0,0.0,0.0,86,75,4032.679167948602,0.0,298.549633156401,2976.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129096,2,2,2,0,1,,322.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,2446.0656068707,216.0,23484.420639185708,6,5,0,1,79.0,1,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12672230861996642,15656.280426123805,3,2,3_0,3_1_0,3_1_0,3_0_1 -16865,0,34.0,0.0,1,221,0.0,0.0,2277.0,85,52,0.0,0.0,1163.3496634250446,2277.0,0.0,2603.170628884042,44,0,0,0,0,0,0,0,0,2,45.0,1,,1,122884,2,1,2,0,1,,292.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,2483.07373371263,0.0,23980.0,6,1,5,0,95.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09495412844036698,11419.047619047618,2,1,2_0,2_1_0,2_1_0,2_1_0 -16866,2,70.0,0.0,5,221,294.0,392.0,0.0,86,72,0.0,652.1586780362584,406.35922290732356,1316.0,0.0,710.9519371322,41,0,0,0,0,0,0,0,0,0,,1,,3,118565,2,1,2,0,1,,445.0,,41,0.0,5.0,7.0,2.0,1.5,1,1,2213.17253125409,294.0,22556.13067101054,6,5,0,1,100.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058343339963504555,15037.420447340359,3,2,3_0,3_1_0,3_1_0,3_0_0 -16867,2,83.0,0.0,2,221,326.0,960.0,0.0,77,78,0.0,0.0,450.58879818975333,1286.0,0.0,1741.106784813551,50,0,0,0,0,0,0,0,0,0,,1,,2,115965,2,2,2,0,1,,283.0,500.0,41,0.0,4.0,3.0,2.0,1.5,2,2,2647.48213450704,326.0,22396.314818451305,5,5,2,3,62.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057420160880241024,14930.876545634203,3,2,3_0,3_1_0,3_1_0,3_0_1 -16868,2,71.0,0.0,2,221,338.0,1840.0,0.0,78,78,0.0,0.0,467.17488892066456,2178.0,0.0,3337.121337559306,71,2,2,2,2,1,2,2,2,0,,2,,2,104217,2,2,0,0,1,,484.0,412.0,41,0.0,1.0,4.0,2.0,1.5,1,1,3873.83797107171,338.0,21639.20527194717,5,5,2,3,90.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.10065064648300812,14426.136847964779,3,2,3_0,3_0_0,3_1_0,3_0_1 -16869,2,72.0,0.0,1,221,422.0,1853.0,0.0,78,78,0.0,0.0,583.2775240370427,2275.0,0.0,3360.6988252703227,60,0,0,0,0,0,0,0,0,0,,1,,1,130948,2,2,2,0,1,,283.0,,41,0.0,1.0,5.0,2.0,1.5,3,2,2353.2141666692,422.0,24015.804485900913,5,5,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09472928551427859,16010.536323933942,4,2,4_0,4_1_0,4_1_0,4_1_0 -16870,2,73.0,0.0,1,221,381.0,1358.0,0.0,0,72,0.0,0.0,526.6083807064296,1739.0,0.0,2462.9406393508357,50,0,0,0,0,0,0,0,0,0,,1,,1,113486,2,2,3,0,1,,208.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2360.44268489236,381.0,51635.72181614264,0,5,0,1,110.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03367823550897558,51635.72181614264,10,5,10,10_1,10_1,10_1_0 -16871,2,58.0,0.0,7,221,387.0,1123.0,0.0,0,48,0.0,0.0,534.9014260718851,1510.0,0.0,2036.732207651685,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,125829,2,1,2,0,1,,269.0,,12,1.0,2.0,6.0,1.0,1.0,3,3,2268.73699272793,387.0,31401.665177780233,0,1,0,1,108.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048086621886169065,31401.665177780233,8,4,8,8_1,8_1,8_0_0 -16872,1,25.0,251.0,2,221,0.0,0.0,0.0,68,68,0.0,0.0,0.0,3015.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,133070,2,1,1,0,1,,482.0,550.0,43,2.0,3.0,5.0,4.0,2.1,3,3,2081.28387533225,0.0,27526.10927560371,1,1,2,3,98.0,1,3,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10953237051457118,13107.671083620815,2,1,2_1,2_1_1,2_1_1,2_0_1 -16873,2,86.0,0.0,2,221,330.0,1440.0,0.0,0,78,0.0,0.0,456.1174951000571,1770.0,0.0,2611.660177220326,50,0,0,0,0,0,0,0,0,0,,1,,2,105074,2,1,2,0,1,,617.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,2265.95100242378,330.0,21269.717127420707,0,5,0,1,95.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08321690360978679,21269.717127420707,6,3,6,6_1,6_1,6_0_1 -16874,2,50.0,0.0,1,221,1500.0,0.0,0.0,90,48,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,125396,2,1,1,0,1,,725.0,,43,2.0,0.0,8.0,5.0,2.8,2,2,2152.59334739675,1500.0,43967.0,4,1,1,2,125.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03411649646325653,15702.500000000002,3,2,3_0,3_1_0,3_1_0,3_1_0 -16875,2,71.0,0.0,2,221,351.0,2029.0,0.0,77,77,0.0,0.0,485.1431538791516,2380.0,0.0,3679.9017358194737,50,0,0,0,0,0,0,0,0,0,,1,,2,119711,2,1,3,0,2,,491.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,2161.83386447406,351.0,34242.27848472916,5,5,0,1,72.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06950472063538048,22828.18565648611,6,3,6,6_1,6_1,6_0_1 -16876,2,75.0,0.0,1,221,300.0,0.0,0.0,0,78,0.0,0.0,414.65226827277917,2800.0,4300.817510475479,0.0,44,1,2,2,2,1,2,2,2,0,,1,,1,100428,2,1,1,0,1,,146.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,2199.51064884656,300.0,12236.471318711145,0,5,0,1,60.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.2288241378638659,12236.471318711145,2,1,2_0,2_1_0,2_1_0,2_1_0 -16877,2,68.0,0.0,1,221,1580.0,0.0,0.0,0,75,0.0,0.0,2183.83527956997,1615.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127208,2,1,1,0,1,,278.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2283.15977589338,1580.0,19768.60151642876,0,5,0,1,120.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08169520735484749,19768.60151642876,5,3,5,5_1,5_1,5_1_0 -16878,2,62.0,0.0,6,221,465.0,1502.0,0.0,77,75,0.0,186.3310508675024,642.7110158228077,2147.0,0.0,2724.106657072868,12,0,0,0,0,0,0,0,0,0,,1,,4,121177,2,1,2,0,1,,378.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,2253.49728229485,465.0,23150.501061268515,6,5,0,1,92.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09274097326523942,15433.66737417901,3,2,3_0,3_1_0,3_1_0,3_0_0 -16879,2,38.0,0.0,9,221,758.0,552.0,0.0,42,21,0.0,103.51725048194578,1047.6880645025553,1410.0,0.0,1001.1364012677918,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,115529,2,1,1,0,1,,520.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1935.88474853752,758.0,38788.59566291179,1,1,1,2,110.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03635089066522172,18470.759839481805,4,2,4_0,4_1_0,4_1_0,4_0_0 -16880,1,47.0,235.0,2,221,135.0,378.0,0.0,0,56,0.0,0.0,186.5935207227506,513.0,0.0,685.5607965203357,71,0,0,0,0,0,0,0,0,0,,2,,2,120583,2,3,0,0,1,,129.0,222.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2768.04060359986,135.0,6060.0,0,4,2,3,54.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08465346534653466,6060.0,1,1,1_1,1_0_1,1_1_1,1_0_1 -16881,1,35.0,127.0,1,221,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1265.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,103392,2,2,0,0,1,,66.0,266.0,12,1.0,0.0,2.0,1.0,1.0,2,2,3625.27247672117,0.0,11674.487518671185,0,4,2,3,38.0,1,3,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10835593408077795,11674.487518671185,2,1,2_1,2_0_1,2_1_1,2_1_0 -16882,1,34.0,389.0,1,221,364.0,1598.0,0.0,65,56,0.0,0.0,503.1114188376387,1962.0,0.0,2898.217335554223,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,116980,2,3,1,0,1,,702.0,467.0,43,2.0,1.0,5.0,5.0,2.4,1,1,1881.97138617121,364.0,41008.1821671375,1,1,2,3,82.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.047844110524174296,17086.742569640624,4,2,4_1,4_1_1,4_1_1,4_1_0 -16883,2,61.0,0.0,1,221,305.0,745.0,0.0,0,77,0.0,0.0,421.56313941065883,1050.0,0.0,1351.1714111313495,31,0,0,0,0,0,0,0,0,0,,1,,1,116037,2,2,2,0,1,,266.0,260.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2692.74597049025,305.0,12105.094784969446,0,5,2,3,45.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08674033691200464,12105.094784969446,2,1,2_0,2_1_0,2_1_0,2_1_0 -16884,2,59.0,0.0,2,221,208.0,1370.0,0.0,0,42,0.0,0.0,287.49223933579356,1578.0,0.0,2484.704474161005,50,0,0,0,0,0,0,0,0,0,,2,,2,129802,2,2,0,0,1,,191.0,358.0,12,1.0,3.0,3.0,1.0,1.0,2,2,3828.22272960066,208.0,21168.49155605559,0,1,2,3,60.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07454475420798642,21168.49155605559,5,3,5,5_0,5_1,5_0_1 -16885,2,74.0,0.0,5,221,326.0,0.0,0.0,0,77,2897.554661414921,0.0,450.58879818975333,2296.0,51.60981012570575,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,129915,2,1,3,0,1,,158.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,2322.29052210467,326.0,32739.157844285117,0,5,0,1,83.0,1,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07013008736878017,32739.157844285117,8,4,8,8_1,8_1,8_0_0 -16886,2,76.0,0.0,2,221,561.0,1508.0,0.0,78,78,0.0,0.0,775.399741670097,2069.0,0.0,2734.988574477953,44,0,0,0,0,0,0,0,0,0,,1,,2,122082,2,2,1,0,1,,510.0,500.0,41,0.0,1.0,3.0,2.0,1.5,2,2,2441.89247675614,561.0,23536.093049260773,5,5,2,3,70.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08790753825070315,15690.728699507183,3,2,3_0,3_1_0,3_1_0,3_0_1 -16887,1,34.0,395.0,5,221,505.0,163.0,0.0,0,64,0.0,0.0,697.9979849258449,668.0,0.0,295.62542283813417,50,0,0,0,0,0,0,0,0,0,,2,,3,110385,2,2,0,1,1,795.0,0.0,364.0,32,1.0,0.0,4.0,3.0,1.6,2,2,3029.0777125443,505.0,17777.0,0,1,2,3,72.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03757664397817405,11110.625,2,1,2_1,2_0_1,2_1_1,2_0_0 -16888,2,66.0,0.0,2,221,332.0,1020.0,0.0,72,72,0.0,0.0,458.88184355520895,1352.0,0.0,1849.925958864398,50,0,0,0,0,0,0,0,0,0,,2,,2,131602,2,2,0,0,1,,434.0,410.0,41,0.0,4.0,3.0,2.0,1.5,2,2,3149.07735485078,332.0,25789.1549247041,5,5,2,3,65.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05242513777389751,17192.769949802732,4,2,4_0,4_0_0,4_1_0,4_0_1 -16889,2,76.0,0.0,5,221,516.0,1178.0,0.0,78,75,0.0,124.22070057833493,713.2019014291802,1814.0,0.0,2136.4831171982946,70,2,2,2,2,1,2,2,2,0,,1,,3,123886,2,1,2,0,1,,434.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2281.85178273834,516.0,24561.79626961254,5,5,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.07385453327956522,16374.53084640836,4,2,4_0,4_1_0,4_1_0,4_0_0 -16890,2,42.0,0.0,7,221,624.0,836.0,0.0,63,42,0.0,0.0,862.4767180073807,1460.0,0.0,1516.2138251084673,10,0,0,0,0,0,0,0,0,2,2.0,1,,5,131816,2,1,2,0,1,,487.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1914.74911095697,624.0,56796.74638109882,1,1,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025705697826484443,22718.698552439528,6,3,6,6_1,6_1,6_0_0 -16891,2,75.0,0.0,5,221,250.0,1155.0,0.0,78,78,0.0,604.5407428145634,345.54355689398267,1989.0,0.0,2094.7691004788035,50,0,0,0,0,0,0,0,0,0,,1,,3,117432,2,1,2,0,1,,279.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2070.41966965047,250.0,21187.835456566336,5,5,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09387461990052352,14125.223637710891,3,2,3_0,3_1_0,3_1_0,3_0_0 -16892,2,56.0,0.0,1,221,360.0,930.0,0.0,74,48,0.0,0.0,497.582721927335,1290.0,0.0,1686.6971977881274,71,2,2,2,2,1,2,2,2,1,3.0,1,,1,109402,2,1,2,0,1,,205.0,,42,1.0,2.0,6.0,2.0,1.5,4,4,1993.27200468588,360.0,63254.36355203878,7,1,0,1,100.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.020393849966393682,42169.57570135919,9,5,9,9_1,9_1,9_1_0 -16893,1,77.0,19.0,5,221,315.0,308.0,0.0,0,77,0.0,0.0,435.3848816864181,623.0,0.0,558.6050934610142,31,0,0,0,0,0,0,0,0,0,,2,,3,128972,1,2,0,1,1,980.0,0.0,288.0,11,0.0,5.0,4.0,1.0,1.0,2,2,3192.23292743083,315.0,15173.16476855761,0,5,2,3,72.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04105933135920355,15173.16476855761,3,2,3_1,3_0_1,3_1_1,3_0_0 -16894,1,28.0,168.0,5,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,505.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,128860,2,2,0,1,1,336.0,0.0,224.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2755.26052282803,0.0,9367.594777792336,0,4,2,3,56.0,1,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05390924906329195,9367.594777792336,1,1,1_1,1_0_1,1_1_1,1_0_0 -16895,1,46.0,207.0,9,221,490.0,684.0,0.0,0,62,0.0,0.0,677.265371512206,1174.0,0.0,1240.5385841796551,60,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,125389,2,2,2,0,1,,330.0,433.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1813.15542273227,490.0,15231.134704399596,0,1,2,3,82.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07707895851389744,11716.257464922766,2,1,2_1,2_1_1,2_1_1,2_0_0 -16896,2,48.0,0.0,2,221,930.0,0.0,0.0,63,43,2554.030139700781,0.0,1285.4220316456153,2640.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,120879,2,1,1,0,1,,635.0,,43,2.0,2.0,5.0,2.0,1.5,4,2,2253.49728229485,930.0,92837.72070913349,1,1,0,1,95.0,1,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028436717099844456,61891.81380608899,10,5,10,10_1,10_1,10_0_1 -16897,2,72.0,0.0,5,221,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1158.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,123689,2,2,0,0,1,,0.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,3377.17604347541,0.0,15314.792965793102,0,5,0,1,45.0,1,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07561316712452411,15314.792965793102,3,2,3_0,3_0_0,3_1_0,3_0_0 -16898,1,65.0,159.0,5,221,430.0,600.0,0.0,0,78,0.0,0.0,594.3349178576501,1030.0,0.0,1088.1917405084694,31,0,0,0,0,0,0,0,0,0,,2,,3,107003,1,2,0,0,1,,0.0,380.0,11,0.0,4.0,3.0,1.0,1.0,2,2,3813.37534157353,430.0,15745.943148610364,0,5,2,3,70.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06541367451151385,15745.943148610364,3,2,3_1,3_0_1,3_1_1,3_0_0 -16899,1,43.0,369.0,2,221,256.0,276.0,0.0,0,56,0.0,0.0,353.8366022594382,532.0,0.0,500.5682006338959,31,0,0,0,0,0,0,0,0,0,,2,,2,123754,2,1,0,1,1,705.0,468.0,336.0,32,2.0,0.0,4.0,3.0,2.0,2,2,2792.39442171235,256.0,21522.85224886041,0,1,2,3,69.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024717913492537602,10761.426124430205,2,1,2_1,2_0_1,2_1_1,2_0_1 -16900,2,55.0,0.0,2,221,356.0,1176.0,0.0,0,38,0.0,0.0,492.0540250170313,1532.0,0.0,2132.8558113966,50,0,0,0,0,0,0,0,0,0,,1,,2,122230,2,1,3,0,1,,186.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2322.29052210467,356.0,9015.129344952591,0,4,0,1,80.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1699365523643584,9015.129344952591,1,1,1_0,1_1_0,1_1_0,1_0_1 -16901,2,62.0,0.0,5,221,468.0,0.0,0.0,0,78,0.0,0.0,646.8575385055356,528.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,122008,2,1,0,1,1,,0.0,,31,1.0,2.0,4.0,2.0,1.5,3,1,3164.28448504558,468.0,34485.33215670426,0,5,0,1,85.0,1,3,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015310857311761518,22990.22143780284,6,3,6,6_0,6_1,6_0_0 -16902,2,60.0,0.0,5,221,270.0,0.0,0.0,0,75,0.0,0.0,373.1870414455012,270.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,111874,2,2,0,0,1,,0.0,260.0,11,0.0,0.0,2.0,1.0,1.0,1,1,3744.97969519156,270.0,26896.036881524575,0,5,2,3,50.0,1,3,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010038653694197914,26896.036881524575,7,4,7,7_0,7_1,7_0_0 -16903,1,35.0,244.0,2,221,260.0,760.0,0.0,85,85,0.0,0.0,359.36529916974195,1020.0,0.0,1378.376204644061,20,2,2,2,2,2,2,2,1,0,,2,,2,128319,1,2,0,0,2,,163.0,214.0,41,0.0,0.0,3.0,4.0,2.1,2,2,3395.3804995207,260.0,17695.139828785977,6,7,2,3,65.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05764294658698833,8426.257061326656,1,1,1_1,1_0_1,1_1_1,1_0_1 -16904,1,52.0,300.0,2,221,0.0,0.0,0.0,0,85,0.0,0.0,0.0,857.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128305,2,2,0,0,1,,160.0,280.0,31,0.0,2.0,3.0,2.0,1.5,1,1,2936.75880856181,0.0,5207.346158729479,0,6,2,3,58.0,1,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16457519317461627,3471.5641058196525,1,1,1_1,1_0_1,1_1_1,1_0_1 -16905,2,26.0,0.0,2,221,0.0,0.0,0.0,52,62,0.0,0.0,0.0,2224.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103088,2,3,2,0,1,,495.0,530.0,43,2.0,0.0,5.0,2.0,1.5,2,2,2701.00214658996,0.0,37548.326293377264,1,1,2,3,100.0,1,3,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05923033646355275,25032.217528918176,7,4,7,7_1,7_1,7_0_1 -16906,0,84.0,0.0,1,400,300.0,0.0,0.0,71,71,3733.962192545002,429.59658950007497,414.65226827277917,3335.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,107430,1,3,4,0,2,,230.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1947.82180274379,300.0,18397.0,5,5,0,1,150.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1812795564494211,12264.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0 -16907,0,87.0,0.0,1,400,350.0,0.0,0.0,71,71,4480.754631054002,0.0,483.76097965157567,3350.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,113794,2,2,1,0,1,,150.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1902.17461100826,350.0,21726.793754114424,5,5,0,1,150.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15418749944941174,14484.529169409616,3,2,3_0,3_1_0,3_0_0,3_1_0 -16908,2,36.0,0.0,9,400,2000.0,0.0,0.0,42,53,0.0,0.0,2764.3484551518613,2090.0,154.82943037711726,0.0,44,0,0,0,0,0,0,0,0,2,35.0,1,2008.0,6,110681,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1793.38693213894,2000.0,49498.41912165296,1,1,1,2,193.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04222357071371063,23570.675772215694,6,3,6,6_1,6_0,6_0_0 -16909,2,68.0,0.0,1,400,479.0,0.0,0.0,0,38,0.0,709.0931658013286,662.0614550088708,1164.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,128631,2,3,3,0,2,,207.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1821.80421675624,479.0,9809.681391378355,0,5,0,1,134.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11865828802788943,9809.681391378355,2,1,2_0,2_1_0,2_0_0,2_1_0 -16910,2,70.0,0.0,5,400,1446.0,0.0,0.0,0,75,0.0,0.0,1998.6239330747956,1506.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130328,2,1,1,0,1,,220.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2033.76946503114,1446.0,24333.82333701238,0,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06188916468828532,24333.82333701238,7,4,7,7_1,7_0,7_0_0 -16911,1,34.0,201.0,1,400,850.0,0.0,0.0,85,69,0.0,0.0,1174.848093439541,940.0,154.82943037711726,0.0,33,0,0,0,0,0,0,0,0,2,45.0,1,,1,106773,2,1,1,0,1,,210.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,1697.55202442279,850.0,27447.301654755338,6,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03424744668250993,10165.667279539015,2,1,2_1,2_1_1,2_0_1,2_1_0 -16912,2,77.0,0.0,5,400,1200.0,0.0,0.0,75,75,0.0,362.31037668681023,1658.6090730911167,1650.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121943,2,1,2,0,1,,250.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1785.94300551652,1200.0,62615.1100279104,5,5,0,1,230.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026351466910535172,41743.4066852736,9,5,9,9_1,9_0,9_0_0 -16913,2,43.0,0.0,2,400,970.0,0.0,0.0,54,22,3733.962192545002,590.048327747091,1340.7090007486527,4200.0,275.25232067043066,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,132217,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.8,1,1,1837.54486310536,970.0,102156.5258782418,1,1,0,1,215.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041113379335216346,36484.4735279435,9,5,9,9_1,9_0,9_0_1 -16914,2,59.0,0.0,1,400,700.0,0.0,0.0,64,56,0.0,491.7069397892424,967.5219593031513,1235.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124947,2,1,1,0,1,,220.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,2135.48116047623,700.0,32948.685162912065,1,1,0,1,87.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037482527569572016,21965.790108608042,6,3,6,6_1,6_0,6_1_0 -16915,2,72.0,0.0,2,400,650.0,0.0,0.0,0,75,3435.2452171414016,0.0,898.4132479243549,3045.0,163.4310653980682,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,100679,2,1,2,0,1,,200.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1975.15464889042,650.0,36935.19226068521,0,5,0,1,160.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08244169892249832,36935.19226068521,9,5,9,9_1,9_0,9_0_1 -16916,2,63.0,0.0,1,400,1900.0,0.0,0.0,77,56,2240.377315527001,0.0,2626.131032394268,3460.0,103.2196202514115,0.0,20,2,2,2,2,2,2,2,1,2,45.0,1,,1,124239,2,2,3,0,2,,300.0,,41,1.0,2.0,8.0,3.0,2.0,3,2,2175.73907110563,1900.0,45860.146267179174,5,5,1,2,227.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07544677201512166,22930.073133589587,6,3,6,6_1,6_0,6_1_0 -16917,2,39.0,0.0,1,400,700.0,0.0,0.0,52,48,1045.5094139126004,414.0690019277831,967.5219593031513,1870.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,132821,2,2,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1732.852744027,700.0,43589.522396542816,4,1,1,2,200.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04290021769424833,20756.91542692515,5,3,5,5_1,5_0,5_1_0 -16918,2,51.0,0.0,5,400,300.0,0.0,0.0,0,69,0.0,828.1380038555662,414.65226827277917,1340.0,412.878481005646,0.0,60,0,0,0,0,0,0,0,0,2,12.0,1,,3,127032,1,3,2,0,2,,220.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1979.49683471482,300.0,13123.696699988845,0,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10210537706202392,13123.696699988845,2,1,2_0,2_1_0,2_0_0,2_0_0 -16919,2,92.0,0.0,1,400,431.0,0.0,0.0,71,71,0.0,621.1035028916747,595.7170920852261,5031.0,6881.308016760767,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100471,2,3,4,0,1,,0.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1960.20446833965,431.0,21356.06505793035,5,5,0,1,124.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23557710591126857,14237.3767052869,3,2,3_0,3_1_0,3_0_0,3_1_0 -16920,2,46.0,0.0,8,112,1050.0,0.0,0.0,52,62,0.0,527.9379774579235,1451.2829389547271,1960.0,688.1308016760767,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,123739,2,1,1,0,1,,370.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1504.4733514069,1050.0,50390.25111469558,1,1,1,2,110.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03889641263225209,21908.80483247634,6,3,6,6_1,6_0,6_0_0 -16921,2,34.0,0.0,9,112,850.0,0.0,0.0,0,52,0.0,0.0,1174.848093439541,910.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,107221,2,1,1,0,1,,150.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,1859.48417201675,850.0,22819.183970016144,0,1,1,2,128.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03987872665366641,17553.218438473956,4,2,4_0,4_1_0,4_0_0,4_0_0 -16922,2,83.0,0.0,2,112,640.0,0.0,0.0,86,90,1045.5094139126004,1190.4483805423765,884.5915056485956,2670.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101119,2,1,2,0,2,,100.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1714.13817252997,640.0,25667.18280632762,5,5,0,1,95.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10402388217462559,17111.45520421841,4,2,4_0,4_1_0,4_0_0,4_0_1 -16923,2,43.0,0.0,1,112,400.0,1538.0,0.0,0,11,0.0,207.03450096389156,552.8696910303722,2138.0,0.0,2789.3981615033763,50,0,0,0,0,0,0,0,0,0,,1,,1,109492,2,3,3,0,1,,140.0,,22,1.0,0.0,9.0,2.0,1.5,2,2,1947.82180274379,400.0,68222.89931409451,0,1,0,1,170.0,7,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03133845118714121,45481.93287606301,10,5,10,10_1,10_0,10_1_0 -16924,2,82.0,0.0,1,120,559.0,0.0,0.0,71,78,224.0377315527001,465.827627168756,772.6353932149452,1339.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115993,2,1,2,0,2,,190.0,,41,0.0,4.0,6.0,2.0,1.5,2,1,1926.07023717914,559.0,23359.543662633998,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05732132525096664,15573.029108422665,3,2,3_0,3_1_0,3_0_0,3_1_0 -16925,2,68.0,0.0,1,120,1100.0,0.0,0.0,0,77,0.0,0.0,1520.3916503335236,1780.0,1169.8223628493304,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106094,2,2,2,0,1,,150.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2316.66020864675,1100.0,19112.791375228877,0,5,0,1,115.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0931313467015063,19112.791375228877,5,3,5,5_1,5_0,5_1_0 -16926,2,44.0,0.0,1,120,490.0,0.0,0.0,0,67,0.0,0.0,677.265371512206,2090.0,2752.5232067043066,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,127602,2,2,5,0,1,,232.0,411.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2289.25518582322,490.0,17451.651431560516,0,1,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11975943985566491,17451.651431560516,4,2,4_0,4_1_0,4_0_0,4_1_0 -16927,2,75.0,0.0,6,120,300.0,0.0,0.0,77,75,1344.2263893162005,310.55175144583734,414.65226827277917,1590.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,113024,1,1,2,0,1,,210.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1888.56952269699,300.0,27536.30534964348,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057741951209899195,18357.53689976232,4,2,4_0,4_1_0,4_0_0,4_0_0 -16928,2,93.0,0.0,1,120,500.0,0.0,0.0,0,71,0.0,517.5862524097289,691.0871137879653,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125264,2,3,4,0,2,,300.0,,21,0.0,0.0,5.0,2.0,1.5,3,2,2099.92442711435,500.0,33207.53944642567,0,5,0,1,130.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03011364336744426,22138.359630950446,6,3,6,6_1,6_0,6_1_0 -16929,2,64.0,0.0,9,300,0.0,0.0,0.0,90,33,0.0,0.0,0.0,978.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2008.0,6,103912,2,1,1,0,1,,436.0,,43,2.0,2.0,5.0,4.0,2.1,2,2,869.472030629098,0.0,232718.97373194617,1,1,0,1,160.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004202493609852777,110818.55891997436,10,5,10,10_1,10_0,10_0_0 -16930,2,38.0,0.0,1,300,435.0,0.0,0.0,46,38,0.0,0.0,601.2457889955298,500.0,111.82125527236246,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115236,2,1,1,0,1,,107.0,,43,2.0,0.0,5.0,4.0,2.1,2,1,880.396633188689,435.0,56354.4369985786,1,1,0,1,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008872415849218957,26835.446189799335,7,4,7,7_1,7_0,7_1_0 -16931,2,79.0,0.0,1,300,900.0,0.0,0.0,0,77,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,128484,1,3,4,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1053.08412054772,900.0,21662.34002031837,0,5,0,1,40.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04154675806749583,21662.34002031837,6,3,6,6_1,6_0,6_1_0 -16932,2,35.0,0.0,1,300,650.0,0.0,0.0,85,63,0.0,0.0,898.4132479243549,838.0,323.42147678775603,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126608,2,1,4,0,1,,250.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,1,1,977.787031634486,650.0,40361.83980613407,6,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020762185371754123,15523.784540820798,3,2,3_0,3_1_0,3_0_0,3_1_0 -16933,1,50.0,335.0,1,300,1000.0,0.0,0.0,85,85,0.0,828.1380038555662,1382.1742275759307,1920.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,101751,2,2,4,0,1,,180.0,392.0,41,0.0,0.0,4.0,4.0,2.3,2,2,933.580880536142,1000.0,18914.467466610942,6,7,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10150959858580792,8223.681507222149,1,1,1_1,1_1_1,1_0_1,1_1_0 -16934,2,82.0,0.0,1,300,600.0,0.0,0.0,56,71,0.0,0.0,829.3045365455583,668.0,116.98223628493304,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132108,2,2,4,0,2,,320.0,,42,2.0,0.0,3.0,3.0,2.0,2,2,1079.87838123858,600.0,22255.56296012274,1,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03001496754752574,11127.78148006137,2,1,2_0,2_1_0,2_0_0,2_1_0 -16935,0,44.0,0.0,1,300,1200.0,0.0,0.0,67,42,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,2,35.0,1,,1,104692,2,3,1,0,1,,150.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,986.999032171726,1200.0,51160.97384179419,1,1,5,0,87.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02521453176378318,28422.763245441216,8,4,8,8_1,8_0,8_1_0 -16936,2,57.0,0.0,1,300,780.0,0.0,0.0,62,45,0.0,0.0,1078.0958975092258,842.0,106.66027425979189,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,106065,2,1,2,0,1,,168.0,,43,2.0,0.0,9.0,2.0,1.5,1,1,999.721444746138,780.0,49772.63756160656,1,1,0,1,160.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01691692546849273,33181.75837440437,8,4,8,8_1,8_0,8_1_0 -16937,2,60.0,0.0,5,212,763.0,0.0,0.0,22,75,3733.962192545002,0.0,1054.598935640435,3332.0,118.70256328912323,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,126927,2,2,4,0,2,,248.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,893.920081309662,763.0,30280.259381326858,1,5,0,1,90.0,2,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11003868751714749,20186.83958755124,5,3,5,5_1,5_0,5_0_0 -16938,2,84.0,0.0,1,212,360.0,0.0,0.0,0,71,776.6641360493603,414.0690019277831,497.582721927335,1355.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112411,2,2,3,0,1,,163.0,,11,0.0,6.0,2.0,1.0,1.0,2,2,1199.49881311619,360.0,10682.355885563464,0,5,0,1,65.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1268446786940695,10682.355885563464,2,1,2_0,2_1_0,2_0_0,2_1_0 -16939,0,89.0,0.0,1,212,880.0,0.0,0.0,0,75,3733.962192545002,0.0,1216.313320266819,3452.0,123.8635443016938,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,125940,2,2,4,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1097.60462089549,880.0,33991.55520099285,0,5,0,1,80.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.10155463554368856,33991.55520099285,9,5,9,9_1,9_0,9_1_0 -16940,2,56.0,0.0,1,212,1800.0,0.0,0.0,77,45,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,4.0,1,,1,106194,2,2,2,0,1,,360.0,,42,1.0,0.0,5.0,2.0,1.5,1,1,901.85956850037,1800.0,40305.42977924124,5,1,0,1,145.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04465899532293451,26870.28651949416,7,4,7,7_1,7_0,7_1_0 -16941,2,89.0,0.0,6,212,900.0,0.0,0.0,77,75,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,132729,1,1,2,0,1,,150.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,883.796719644362,900.0,32833.12596781106,5,5,0,1,71.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027411340634526913,21888.750645207372,6,3,6,6_1,6_0,6_0_0 -16942,2,35.0,0.0,9,212,1000.0,0.0,0.0,52,62,0.0,362.31037668681023,1382.1742275759307,1410.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,105721,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,892.761711183786,1000.0,49312.967624307596,1,1,1,2,120.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028592884750764335,23482.365535384568,6,3,6,6_1,6_0,6_0_0 -16944,2,73.0,0.0,1,212,2229.0,0.0,0.0,0,77,0.0,0.0,3080.8663532667492,2304.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,122897,2,3,4,0,2,,294.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,813.779906954832,2229.0,22074.617825221605,0,5,0,1,100.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1043732678971927,22074.617825221605,6,3,6,6_1,6_0,6_1_0 -16945,2,59.0,0.0,1,212,220.0,0.0,0.0,0,47,0.0,517.5862524097289,304.0783300667047,830.0,189.2359704609211,0.0,71,2,2,2,2,1,2,2,2,2,20.0,1,,1,118268,1,3,4,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1048.22088856235,220.0,16395.76895258433,0,1,0,1,43.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05062281631317901,16395.76895258433,4,2,4_0,4_1_0,4_0_0,4_1_0 -16946,2,61.0,0.0,6,212,1500.0,0.0,0.0,56,78,0.0,465.827627168756,2073.261341363896,1986.0,61.9317721508469,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,108098,2,2,2,0,1,,300.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,916.531415088691,1500.0,23253.541456647068,4,5,0,1,80.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08540634568298405,15502.360971098045,3,2,3_0,3_1_0,3_0_0,3_0_0 -16947,2,47.0,0.0,5,212,2800.0,0.0,0.0,37,11,0.0,0.0,3870.0878372126053,2873.0,125.58387130588399,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,3,121560,2,2,3,0,1,,200.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,876.830640090532,2800.0,80761.23516011015,1,1,0,1,160.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03557399777633714,28843.298271467913,8,4,8,8_1,8_0,8_0_0 -16948,2,50.0,0.0,1,212,1000.0,0.0,0.0,46,52,0.0,579.6966026988963,1382.1742275759307,1642.0,141.06681434359572,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125772,2,2,3,0,1,,300.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,1008.17318687717,1000.0,40421.855469572736,1,1,1,2,100.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04062158901231053,22456.586371984853,6,3,6,6_1,6_0,6_1_0 -16949,2,73.0,0.0,1,212,1380.0,0.0,0.0,77,78,4480.754631054002,0.0,1907.4004340547842,4380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108885,2,2,4,0,2,,156.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,979.998831218473,1380.0,24782.878973547016,5,5,0,1,120.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17673491464309557,16521.91931569801,4,2,4_0,4_1_0,4_0_0,4_1_0 -16950,2,81.0,0.0,1,212,780.0,0.0,0.0,0,78,2058.159960530805,0.0,1078.0958975092258,2194.0,61.9317721508469,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,125819,2,2,4,0,2,,158.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1017.5599395749,780.0,11319.320755232322,0,5,0,1,60.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.19382788485659178,11319.320755232322,2,1,2_0,2_1_0,2_0_0,2_1_0 -16951,2,80.0,0.0,1,212,493.0,0.0,0.0,77,78,0.0,0.0,681.4118941949338,529.0,61.9317721508469,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,112883,2,3,4,0,2,,137.0,166.0,41,0.0,6.0,4.0,2.0,1.5,2,2,1196.05557658273,493.0,21837.411195001554,5,5,2,3,145.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024224483171388225,14558.274130001037,3,2,3_0,3_1_0,3_0_0,3_1_0 -16952,2,51.0,0.0,1,212,0.0,0.0,0.0,63,22,2240.377315527001,0.0,0.0,6246.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102192,2,2,2,0,1,,216.0,,43,2.0,4.0,6.0,2.0,1.5,3,3,935.779790748141,0.0,47897.15058777353,1,1,0,1,240.0,2,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1304044170342439,31931.433725182356,8,4,8,8_1,8_0,8_1_0 -16953,2,52.0,0.0,1,212,1500.0,0.0,0.0,0,47,1493.5848770180007,0.0,2073.261341363896,2572.0,123.8635443016938,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,102774,2,3,1,0,2,,150.0,,12,1.0,4.0,7.0,1.0,1.0,1,1,978.851033811413,1500.0,29229.447483883734,0,1,0,1,150.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08799345254193142,29229.447483883734,8,4,8,8_1,8_0,8_1_0 -16954,2,61.0,0.0,1,212,1600.0,0.0,0.0,72,75,0.0,362.31037668681023,2211.478764121489,1986.0,61.9317721508469,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,112321,1,3,2,0,2,,450.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,897.774285050902,1600.0,37845.06768470876,5,5,0,1,130.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0524771158171938,25230.045123139174,7,4,7,7_1,7_0,7_1_0 -16955,2,48.0,0.0,1,212,1200.0,0.0,0.0,0,47,0.0,1242.2070057833494,1658.6090730911167,2472.0,123.8635443016938,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,115908,1,2,1,0,1,,50.0,380.0,12,1.0,2.0,2.0,1.0,1.0,4,4,1118.59296638257,1200.0,23441.513954386817,0,1,2,3,70.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10545393974169458,23441.513954386817,6,3,6,6_1,6_0,6_1_0 -16956,2,64.0,0.0,1,212,503.0,0.0,0.0,77,78,0.0,103.51725048194578,695.2336364706931,675.0,123.8635443016938,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108632,2,2,3,0,1,,208.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,962.964224560276,503.0,27501.580488604945,5,5,0,1,100.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024544043942481077,18334.386992403295,4,2,4_0,4_1_0,4_0_0,4_1_0 -16957,2,67.0,0.0,1,212,800.0,0.0,0.0,85,35,4779.471606457602,0.0,1105.7393820607444,4072.0,123.8635443016938,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123988,2,3,4,0,2,,900.0,,41,0.0,0.0,10.0,2.0,1.5,2,2,910.758806749356,800.0,23939.829623201393,6,5,0,1,210.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17009310693061921,15959.886415467596,3,2,3_0,3_1_0,3_0_0,3_1_0 -16958,2,60.0,0.0,1,111,486.0,1811.0,0.0,34,38,0.0,0.0,671.7366746019022,2297.0,0.0,3284.52540343473,31,0,0,0,0,0,0,0,0,0,,1,,1,113599,2,1,4,0,1,,172.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1758.14283319757,486.0,159671.74796883148,1,1,0,1,200.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014385763475504652,106447.83197922098,10,5,10,10_1,10_2,10_1_0 -16959,1,90.0,250.0,6,111,1200.0,0.0,0.0,0,77,0.0,0.0,1658.6090730911167,1344.0,247.7270886033876,0.0,44,0,0,0,0,0,0,0,0,0,,2,,4,105927,1,2,0,0,1,,0.0,272.0,11,0.0,0.0,1.0,1.0,1.0,2,2,2664.56537190959,1200.0,9727.01922938695,0,5,2,3,36.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1381718251301027,9727.01922938695,1,1,1_1,1_0_1,1_2_1,1_0_0 -16960,2,76.0,0.0,1,111,323.0,144.0,0.0,72,72,3020.0286213303975,0.0,446.44227550702556,2489.0,0.0,261.1660177220326,41,0,0,0,0,0,0,0,0,0,,1,,1,123761,2,2,2,0,2,,194.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1944.59599118585,323.0,20053.320010168824,5,5,0,1,91.0,6,4,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12411909842050367,13368.880006779216,3,2,3_0,3_1_0,3_2_0,3_1_0 -16961,1,39.0,141.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,637.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,17.0,2,,2,118645,2,2,0,1,1,816.0,0.0,315.0,32,1.0,0.0,4.0,3.0,1.8,1,1,2345.27672109287,0.0,20371.029568458092,0,1,2,3,70.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031269897177230166,11317.238649143384,2,1,2_1,2_0_1,2_2_1,2_0_1 -16962,2,63.0,0.0,2,111,452.0,103.0,0.0,56,78,0.0,0.0,624.7427508643207,555.0,0.0,186.80624878728725,50,2,2,2,1,2,2,2,2,0,,2,,2,131601,2,3,0,1,1,427.0,0.0,289.0,42,1.0,1.0,3.0,2.0,1.5,2,2,633.336692580407,452.0,28474.520481323576,1,5,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019491109617246205,18983.013654215716,5,3,5,5_0,5_2,5_0_1 -16963,2,37.0,0.0,7,111,180.0,0.0,0.0,0,34,0.0,0.0,248.7913609636675,180.0,0.0,0.0,60,2,2,2,1,2,2,2,2,0,,2,,5,117352,1,3,0,1,2,330.0,0.0,300.0,12,1.0,1.0,1.0,1.0,1.0,3,3,875.863101345198,180.0,33822.8196132445,0,1,2,3,29.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.005321850811323688,33822.8196132445,9,5,9,9_0,9_2,9_0_0 -16964,2,70.0,0.0,2,111,373.0,1300.0,0.0,78,78,0.0,0.0,515.5509868858221,1673.0,0.0,2357.7487711016834,60,0,0,0,0,0,0,0,0,0,,2,,2,117637,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2272.94039148537,373.0,35189.08081044354,5,5,0,1,83.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04754315718026602,23459.38720696236,6,3,6,6_0,6_2,6_0_1 -16965,2,79.0,0.0,7,111,264.0,1224.0,0.0,77,78,0.0,0.0,364.89399608004567,1488.0,0.0,2219.9111506372774,50,0,0,0,0,0,0,0,0,0,,2,,5,101144,2,1,0,0,1,,0.0,602.0,41,0.0,3.0,4.0,2.0,1.5,1,1,2205.6293962551,264.0,31509.20626124039,5,5,2,3,82.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0472242933593156,21006.137507493593,5,3,5,5_0,5_2,5_0_0 -16966,1,41.0,352.0,1,111,180.0,50.0,0.0,0,62,0.0,0.0,248.7913609636675,230.0,0.0,90.68264504237244,41,2,2,2,2,2,2,2,1,0,,2,,1,124690,1,3,0,1,1,,0.0,318.0,32,1.0,1.0,4.0,3.0,2.0,3,3,2360.26923835078,180.0,7933.522246589559,0,4,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.028990906289935947,3966.7611232947793,1,1,1_1,1_0_1,1_2_1,1_1_0 -16967,2,66.0,0.0,2,111,250.0,1100.0,0.0,0,77,0.0,0.0,345.54355689398267,1350.0,0.0,1995.0181909321939,50,2,2,2,1,2,2,2,2,0,,2,,2,106857,2,2,0,0,1,,0.0,344.0,11,0.0,3.0,3.0,1.0,1.0,3,3,632.430444995867,250.0,17303.06903358613,0,5,2,3,50.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.07802084112243798,17303.06903358613,4,2,4_0,4_0_0,4_2_0,4_0_1 -16968,1,25.0,314.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,321.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,109762,2,1,0,1,1,420.0,0.0,291.0,32,1.0,0.0,3.0,2.0,1.3,2,2,605.545111421693,0.0,5578.899350510867,0,4,2,3,67.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.057538231079685205,4291.461038854513,1,1,1_1,1_0_1,1_2_1,1_0_1 -16969,2,25.0,0.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,358.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,7.0,2,,5,125589,2,1,0,0,2,,444.0,430.0,22,2.0,0.0,2.0,2.0,1.5,2,2,2408.55406365304,0.0,20859.005401329625,0,1,2,3,47.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017162850917962744,13906.003600886417,3,2,3_0,3_0_0,3_2_0,3_0_0 -16970,0,29.0,0.0,2,111,0.0,0.0,950.0,0,67,0.0,45.54759021205614,485.3676680956488,994.0,0.0,1086.08348592,44,0,0,0,0,0,0,0,0,0,,1,,2,130606,2,1,2,0,1,,120.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1669.8193493555,0.0,5289.0,0,4,5,0,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1879372282094914,5289.0,1,1,1_0,1_1_0,1_2_0,1_0_1 -16971,2,78.0,0.0,5,111,313.0,2198.0,0.0,0,77,0.0,0.0,432.6205332312663,2511.0,0.0,3986.4090760626927,50,0,0,0,0,0,0,0,0,0,,1,,3,108506,2,1,2,0,2,,193.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,1730.75079854152,313.0,26805.10411107393,0,5,0,1,120.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09367618904202041,26805.10411107393,7,4,7,7_1,7_2,7_0_0 -16972,1,66.0,24.0,1,111,900.0,800.0,0.0,0,77,0.0,0.0,1243.9568048183376,1700.0,0.0,1450.922320677959,12,0,0,0,0,0,0,0,0,0,,1,,1,120114,2,1,4,0,1,,200.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,1758.14283319757,900.0,27454.182800080107,0,5,1,2,120.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06192134773703917,18302.788533386738,4,2,4_1,4_1_1,4_2_1,4_1_0 -16973,2,69.0,0.0,1,111,326.0,2596.0,0.0,77,78,0.0,0.0,450.58879818975333,2922.0,0.0,4708.242930599978,41,0,0,0,0,0,0,0,0,0,,1,,1,119580,2,1,4,0,1,,406.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1828.08927089338,326.0,31483.13020517434,5,5,0,1,70.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09281160993069747,20988.753470116226,5,3,5,5_1,5_2,5_1_0 -16974,2,59.0,0.0,1,111,270.0,980.0,0.0,78,54,0.0,0.0,373.1870414455012,1300.0,86.01635020950958,1777.3798428305,50,0,0,0,0,0,0,0,0,0,,2,,1,117040,2,2,0,0,1,,0.0,400.0,42,1.0,2.0,3.0,2.0,1.5,1,1,2573.75072337297,270.0,33749.6134679629,5,4,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03851895966850215,22499.742311975268,6,3,6,6_0,6_2,6_1_0 -16975,2,57.0,0.0,7,111,120.0,644.0,0.0,0,38,0.0,0.0,165.86090730911167,764.0,0.0,1167.9924681457571,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,121631,2,1,0,0,1,,85.0,,12,1.0,2.0,3.0,1.0,1.0,2,1,2328.39585406065,120.0,86134.02679992527,0,1,1,2,72.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008869897627968125,86134.02679992527,10,5,10,10_0,10_2,10_0_0 -16976,1,53.0,254.0,1,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,939.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,115199,2,1,0,0,1,,81.0,420.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2647.20701873986,0.0,21369.809411642433,0,1,2,3,50.0,6,4,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04394049483138702,21369.809411642433,6,3,6,6_0,6_2,6_1_0 -16977,2,33.0,0.0,1,300,710.0,0.0,0.0,63,52,2987.1697540360015,0.0,981.3437015789107,2770.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,114085,2,3,4,0,1,,140.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,1253.3075933218,710.0,34390.29928688309,4,1,1,2,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0805459695739407,22926.866191255394,6,3,6,6_1,6_0,6_1_0 -16978,2,51.0,0.0,1,300,2040.0,0.0,0.0,54,11,5034.87462042768,0.0,2819.635424254898,5411.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,1,128924,2,3,1,0,1,,173.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,1514.54725969317,2040.0,105651.8854174508,1,1,1,2,112.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05121536618698383,70434.59027830053,10,5,10,10_1,10_0,10_1_0 -16979,2,35.0,0.0,7,300,700.0,0.0,0.0,43,48,0.0,0.0,967.5219593031513,700.0,0.0,0.0,70,2,2,2,1,2,2,2,2,2,5.0,1,,5,113007,1,2,5,0,1,,145.0,580.0,43,2.0,0.0,6.0,4.0,2.1,1,1,1556.0347357589,700.0,46812.549853257384,1,1,2,3,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.014953255103477161,22291.69040631304,6,3,6,6_1,6_0,6_0_0 -16980,2,32.0,0.0,1,300,900.0,0.0,0.0,42,35,0.0,82.81380038555662,1243.9568048183376,4280.0,5677.079113827633,0.0,44,2,2,2,2,1,2,2,2,2,30.0,1,,1,125579,2,2,1,0,1,,129.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1585.20904191898,900.0,51156.61764373648,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.0836646400238315,28420.34313540915,8,4,8,8_1,8_0,8_1_0 -16981,2,80.0,0.0,5,300,0.0,0.0,0.0,86,77,0.0,0.0,0.0,50.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,124973,2,1,2,0,1,,1900.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,1378.61166551134,0.0,24236.831817431084,6,5,0,1,82.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002062975902817467,16157.887878287389,4,2,4_0,4_1_0,4_0_0,4_0_0 -16982,2,80.0,0.0,1,300,0.0,0.0,0.0,71,71,2688.452778632401,0.0,0.0,1850.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117046,2,1,2,0,1,,190.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1652.31065061621,0.0,32259.029882652132,5,5,0,1,112.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057348283774487294,21506.01992176809,6,3,6,6_1,6_0,6_1_0 -16983,2,48.0,0.0,1,300,1600.0,0.0,0.0,56,67,0.0,0.0,2211.478764121489,1750.0,258.04905062852873,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,118402,1,2,3,0,2,,180.0,275.0,43,2.0,0.0,4.0,3.0,2.0,1,1,1897.83163610987,1600.0,31567.27281867461,1,1,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05543716145680892,15783.636409337305,3,2,3_0,3_1_0,3_0_0,3_1_0 -16984,2,69.0,0.0,1,300,1300.0,0.0,0.0,0,68,1792.3018524216009,0.0,1796.8264958487098,2600.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,1,10.0,1,,1,108963,2,3,3,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1317.74802001146,1300.0,17906.463469989103,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14519896708568675,17906.463469989103,4,2,4_0,4_1_0,4_0_0,4_1_0 -16985,2,91.0,0.0,5,300,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,700.0,172.03270041901916,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,115248,2,1,2,0,1,,75.0,,11,0.0,2.0,3.0,1.0,1.0,4,3,1485.03005678289,600.0,37496.67137496271,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018668323729327193,37496.67137496271,9,5,9,9_1,9_0,9_0_0 -16986,2,59.0,0.0,6,300,1910.0,0.0,0.0,0,34,0.0,0.0,2639.9527746700273,3795.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,4,110688,2,1,3,0,1,,275.0,586.0,12,1.0,2.0,4.0,1.0,1.0,2,2,1527.55803103969,1910.0,39067.46627757039,0,1,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09713964998489816,39067.46627757039,9,5,9,9_1,9_0,9_0_0 -16987,2,35.0,0.0,1,112,0.0,0.0,2200.0,46,63,0.0,0.0,1124.0093366425551,2200.0,0.0,2515.1407042357896,20,2,2,2,2,2,2,2,1,2,70.0,1,,1,132983,2,2,3,0,1,,555.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,3097.66401600787,0.0,50181.76080700264,1,1,1,2,126.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04384062983483433,27878.756003890354,7,4,7,7_1,7_1,7_1_0 -16988,2,38.0,0.0,1,112,752.0,1347.0,0.0,0,38,0.0,0.0,1039.3950191370998,2099.0,0.0,2442.9904574415136,12,0,0,0,0,0,0,0,0,0,,1,,1,131855,2,2,3,0,1,,424.0,,22,1.0,3.0,6.0,3.0,2.0,4,3,2936.72149937715,752.0,33539.861327816754,0,1,0,1,140.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06258225040003862,16769.930663908377,4,2,4_0,4_1_0,4_1_0,4_1_0 -16989,1,28.0,406.0,1,112,0.0,0.0,3000.0,0,54,0.0,62.110350289167464,1532.740004512575,3540.0,825.756962011292,3429.737323957894,41,1,2,2,1,1,2,1,2,0,,1,,1,120547,1,3,3,0,1,,0.0,606.0,32,1.0,0.0,4.0,3.0,1.6,1,1,3499.54656222548,0.0,14789.862977790024,0,4,2,3,77.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.23935313027010643,9243.664361118765,1,1,1_1,1_1_1,1_1_1,1_1_0 -16990,2,43.0,0.0,1,112,627.0,1117.0,0.0,43,38,0.0,0.0,866.6232406901084,1744.0,0.0,2025.8502902466005,70,0,0,0,0,0,0,0,0,0,,1,,1,129526,2,2,1,0,1,,370.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,2888.99826143519,627.0,69875.06363860446,1,1,1,2,115.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024958832367151903,33273.839827906886,8,4,8,8_1,8_1,8_1_0 -16991,0,61.0,0.0,2,112,580.0,850.0,0.0,0,75,0.0,0.0,801.6610519940398,1430.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,0,,1,,2,128786,2,1,2,0,1,,102.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,3188.99392971675,580.0,9822.461154083097,0,7,0,1,110.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1455846938529824,9822.461154083097,2,1,2_0,2_1_0,2_1_0,2_0_1 -16992,2,51.0,0.0,1,112,600.0,0.0,0.0,55,22,4480.754631054002,0.0,829.3045365455583,3675.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118294,2,2,4,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,2895.64082547435,600.0,18545.84010409066,1,1,0,1,100.0,10,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1981576450230154,7418.336041636265,1,1,1_0,1_1_0,1_1_0,1_1_0 -16993,2,52.0,0.0,1,112,1350.0,0.0,0.0,21,46,0.0,724.6207533736205,1865.9352072275062,2050.0,0.0,0.0,50,2,2,2,1,1,1,2,2,2,7.0,8,,1,116095,2,3,0,0,1,,0.0,582.0,43,2.0,4.0,4.0,2.0,1.5,2,2,4323.19001058463,1350.0,48549.23919067544,1,1,2,3,70.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.04222517250885635,32366.159460450293,8,4,8,8_0,8_1,8_1_0 -16994,2,33.0,0.0,1,112,496.0,1713.0,0.0,43,63,0.0,0.0,685.5584168776616,2209.0,0.0,3106.78741915168,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,117295,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,4,2,2937.60105741354,496.0,57213.487207129656,1,1,1,2,120.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03860977730657756,27244.51771768079,7,4,7,7_1,7_1,7_1_0 -16995,2,75.0,0.0,6,112,30.0,30.0,0.0,77,75,0.0,0.0,41.46522682727792,60.0,0.0,54.40958702542347,20,0,0,0,0,0,0,0,0,0,,1,,4,112717,2,1,1,0,1,,280.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,2994.45275224194,30.0,32944.49718595488,5,5,0,1,90.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018212449764016918,21962.998123969923,6,3,6,6_1,6_1,6_0_0 -16996,0,50.0,0.0,9,112,1300.0,0.0,0.0,64,85,0.0,0.0,1796.8264958487098,1870.0,980.5863923884093,0.0,42,0,0,0,0,0,0,0,0,0,,7,2008.0,6,130240,2,1,0,0,1,,0.0,,41,0.0,4.0,2.0,2.0,1.5,1,1,3564.70453205556,1300.0,18205.0,5,7,5,0,23.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1027190332326284,12136.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0 -16997,2,60.0,0.0,1,112,400.0,1300.0,0.0,43,21,0.0,0.0,552.8696910303722,1700.0,0.0,2357.7487711016834,43,0,0,0,0,0,0,0,0,2,5.0,1,,1,107418,2,1,1,0,1,,449.0,,43,2.0,3.0,7.0,2.0,1.5,2,1,3148.60977967626,400.0,70424.45630881499,4,1,1,2,160.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02413934148877784,46949.637539209994,10,5,10,10_1,10_1,10_1_0 -16998,2,41.0,0.0,7,112,1800.0,0.0,0.0,47,54,0.0,362.31037668681023,2487.913609636675,2190.0,68.81308016760767,0.0,71,2,2,2,2,1,2,2,2,2,60.0,1,,5,122539,2,2,4,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,2817.80600222783,1800.0,49362.297966852144,1,1,1,2,130.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.044365843775559896,21461.868681240063,6,3,6,6_1,6_1,6_0_0 -16999,1,57.0,160.0,8,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1666.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,111971,2,2,0,0,1,,0.0,317.0,11,0.0,2.0,2.0,1.0,1.0,4,4,3571.2119868743,0.0,9503.817975975091,0,7,2,3,54.0,10,1,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17529797016436108,9503.817975975091,1,1,1_1,1_0_1,1_1_1,1_0_0 -17000,2,30.0,0.0,1,112,0.0,0.0,0.0,54,65,0.0,0.0,0.0,400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,108223,2,1,0,0,1,,0.0,500.0,43,2.0,0.0,3.0,2.0,1.5,4,4,4302.89356486816,0.0,24517.83769275714,1,4,2,3,60.0,10,1,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016314652418070487,16345.22512850476,4,2,4_0,4_0_0,4_1_0,4_1_0 -17001,2,35.0,0.0,2,112,200.0,1000.0,0.0,54,37,0.0,0.0,276.4348455151861,1200.0,0.0,1813.6529008474488,31,2,2,2,2,1,2,2,2,3,80.0,1,,2,117506,2,1,4,0,1,,1200.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,2998.15175692689,200.0,57373.624132304205,1,1,1,2,67.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.020915534239789122,38249.08275486947,9,5,9,9_1,9_1,9_0_1 -17002,2,72.0,0.0,8,112,500.0,1500.0,0.0,77,78,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,113387,2,1,2,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,2954.7799728385,500.0,37387.73481698659,5,5,0,1,135.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05349347880501518,24925.156544657726,7,4,7,7_1,7_1,7_0_0 -17003,2,85.0,0.0,2,112,420.0,1193.0,0.0,0,78,0.0,0.0,580.5131755818909,1613.0,0.0,2163.6879107110067,44,0,0,0,0,0,0,0,0,0,,1,,2,115595,2,1,3,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,3150.54499868886,420.0,26734.203268760117,0,5,0,1,80.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06033469498920317,26734.203268760117,7,4,7,7_1,7_1,7_0_1 -17004,2,78.0,0.0,5,112,810.0,0.0,0.0,0,77,0.0,0.0,1119.5611243365038,850.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131115,2,1,1,0,1,,339.0,496.0,11,0.0,4.0,3.0,1.0,1.0,2,2,3761.16070041098,810.0,14695.921935838647,0,5,2,3,62.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057839174956905715,14695.921935838647,3,2,3_0,3_1_0,3_1_0,3_0_0 -17005,1,48.0,228.0,9,112,0.0,0.0,2500.0,0,56,0.0,95.23587044339011,1277.2833370938126,2592.0,0.0,2858.1144366315784,31,2,2,2,2,1,2,2,2,0,,1,2007.0,6,104451,1,2,5,0,1,,0.0,687.0,32,2.0,2.0,5.0,4.0,2.1,2,2,2500.4507053048,0.0,5536.980027383533,0,1,2,3,98.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.4681252211821386,2636.6571558969204,1,1,1_1,1_1_1,1_1_1,1_0_0 -17006,2,54.0,0.0,9,112,1250.0,0.0,0.0,85,38,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,2007.0,6,121787,2,1,1,0,1,,396.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,3228.27034398267,1250.0,51075.42098698802,6,1,1,2,80.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024473611295704252,34050.280657992014,9,5,9,9_1,9_1,9_0_0 -17007,2,60.0,0.0,2,112,678.0,778.0,0.0,0,75,0.0,119.04483805423764,937.1141262964809,1571.0,0.0,1411.0219568593152,60,2,2,2,1,1,2,2,2,0,,1,,2,105271,2,2,1,0,1,,340.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,2925.19386410597,678.0,43880.57976177483,0,5,1,2,120.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.03580171475693506,43880.57976177483,10,5,10,10_1,10_1,10_0_1 -17008,2,53.0,0.0,9,112,1633.0,0.0,0.0,77,48,0.0,0.0,2257.0905136314946,1753.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,126206,1,2,1,0,1,,700.0,,42,1.0,2.0,7.0,3.0,2.0,2,2,2977.24477268815,1633.0,45802.88365947214,6,1,1,2,103.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03827269944471008,22901.44182973607,6,3,6,6_1,6_1,6_0_0 -17009,2,53.0,0.0,1,112,1200.0,1800.0,0.0,46,46,0.0,0.0,1658.6090730911167,3000.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,101066,2,2,3,0,1,,350.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,3075.21199229107,1200.0,52447.02311704047,1,1,1,2,140.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057200577300740546,34964.682078026985,9,5,9,9_1,9_1,9_1_0 -17010,2,51.0,0.0,1,112,1794.4,0.0,0.0,56,21,0.0,103.51725048194578,2480.17343396225,1894.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,113846,2,1,1,0,1,,450.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2821.38312748619,1794.4,55806.39675652211,1,1,0,1,100.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03393876168467457,37204.26450434807,9,5,9,9_1,9_1,9_1_0 -17011,2,60.0,0.0,1,112,3500.0,0.0,0.0,0,46,0.0,0.0,4837.609796515757,3530.0,51.60981012570575,0.0,70,2,2,2,2,1,2,2,2,2,15.0,1,,1,128204,2,3,3,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,3291.22131337246,3500.0,18551.6279558873,0,1,0,1,100.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.1902797969209902,18551.6279558873,4,2,4_0,4_1_0,4_1_0,4_1_0 -17012,2,44.0,0.0,6,112,660.0,0.0,0.0,0,52,0.0,0.0,912.2349902001142,677.0,29.24555907123326,0.0,10,0,0,0,0,0,0,0,0,3,110.0,1,,4,108806,1,2,3,0,2,,600.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,3096.088566715,660.0,22557.29330182451,0,1,1,2,30.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030012466076559014,22557.29330182451,6,3,6,6_1,6_1,6_0_0 -17013,1,65.0,250.0,1,112,800.0,0.0,0.0,0,72,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105785,1,1,1,0,2,,360.0,287.0,11,0.0,3.0,2.0,1.0,1.0,1,1,3842.94421873598,800.0,7506.129235186967,0,5,2,3,45.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1065795665027706,7506.129235186967,1,1,1_1,1_1_1,1_1_1,1_1_0 -17014,2,29.0,0.0,2,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1581.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120237,2,2,5,0,1,,0.0,620.0,32,1.0,0.0,3.0,2.0,1.3,2,2,3422.31872155931,0.0,11668.300957587282,0,4,2,3,80.0,10,1,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13549530525024372,8975.616121220986,1,1,1_0,1_1_0,1_1_0,1_0_1 -17015,1,45.0,136.0,2,112,2798.0,0.0,0.0,85,62,0.0,0.0,3867.3234887574536,2798.0,0.0,0.0,33,2,2,2,2,1,2,2,2,2,20.0,2,,2,113573,2,3,0,0,1,,625.0,750.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,4296.58506143153,2798.0,41066.420180921574,6,1,2,3,70.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.06813352582653115,15794.776992662146,3,2,3_1,3_0_1,3_1_1,3_0_1 -17016,2,44.0,0.0,5,112,562.0,0.0,0.0,11,53,3733.962192545002,698.741440753134,776.781915897673,3817.0,137.62616033521533,0.0,71,2,2,2,2,1,2,2,2,2,20.0,1,,3,122494,2,1,3,0,1,,472.0,,43,2.0,0.0,8.0,2.0,1.5,4,3,3062.77092421619,562.0,36339.242788173884,1,1,1,2,200.0,10,1,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.10503796191488589,24226.16185878259,7,4,7,7_1,7_1,7_0_0 -17017,2,66.0,0.0,1,112,500.0,2000.0,0.0,0,77,0.0,0.0,691.0871137879653,2500.0,0.0,3627.3058016948976,70,0,0,0,0,0,0,0,0,0,,1,,1,102028,1,2,2,0,1,,450.0,,21,0.0,2.0,5.0,2.0,1.5,1,1,3101.61055585748,500.0,17346.781709443665,0,5,0,1,120.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14411895196899774,11564.52113962911,2,1,2_0,2_1_0,2_1_0,2_1_0 -17018,1,59.0,162.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,804.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,119917,2,1,0,0,1,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,1,1,4045.13478250721,0.0,18883.199072552794,0,7,2,3,36.0,10,1,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04257753132352633,18883.199072552794,5,3,5,5_0,5_1,5_1_0 -17019,2,63.0,0.0,6,112,400.0,1320.0,0.0,68,78,0.0,0.0,552.8696910303722,1720.0,0.0,2394.0218291186325,41,2,2,2,1,2,2,2,2,0,,1,,4,109561,1,2,3,0,2,,240.0,710.0,42,1.0,2.0,4.0,2.0,1.5,1,1,3672.4197012873,400.0,27851.13468892179,1,5,2,3,85.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.06175690934000459,18567.42312594786,4,2,4_0,4_1_0,4_1_0,4_0_0 -17020,2,55.0,0.0,2,112,300.0,400.0,0.0,54,47,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,30,0,0,0,0,0,0,0,0,4,60.0,1,,2,107486,2,1,3,0,1,,700.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,2959.13482703091,300.0,50503.33101642283,1,1,0,1,100.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013860471891891088,25251.665508211416,7,4,7,7_1,7_1,7_0_1 -17021,2,49.0,0.0,9,112,1500.0,0.0,0.0,52,62,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,109163,1,2,1,0,1,,500.0,,43,2.0,1.0,3.0,3.0,2.0,1,1,3115.43597909656,1500.0,46299.34203181544,1,1,1,2,77.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032397868612673755,23149.67101590772,6,3,6,6_1,6_1,6_0_0 -17022,1,91.0,87.0,2,112,296.0,0.0,0.0,0,72,0.0,0.0,409.12357136247545,296.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,127893,2,1,0,1,1,1068.0,145.0,309.0,11,0.0,3.0,4.0,1.0,1.0,2,2,3734.22879810946,296.0,14932.946832003467,0,5,2,3,72.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019821941598668867,14932.946832003467,3,2,3_1,3_0_1,3_1_1,3_0_1 -17023,1,69.0,157.0,5,112,180.0,0.0,0.0,0,77,0.0,0.0,248.7913609636675,180.0,0.0,0.0,10,2,1,2,2,1,1,2,2,0,,2,,3,108860,2,1,0,1,1,436.0,135.0,286.0,11,0.0,1.0,3.0,1.0,1.0,2,2,3681.71025281701,180.0,9414.558795166458,0,5,2,3,103.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.019119324008302338,9414.558795166458,1,1,1_1,1_0_1,1_1_1,1_0_0 -17024,2,74.0,0.0,2,112,1900.0,0.0,0.0,74,74,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,114823,2,1,2,0,1,,580.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,3062.77092421619,1900.0,67271.69700439255,5,5,0,1,200.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028243675789477084,44847.79800292837,10,5,10,10_1,10_1,10_0_1 -17025,2,35.0,0.0,8,112,2200.0,0.0,0.0,21,54,0.0,414.0690019277831,3040.783300667047,2600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,116205,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,3357.36528064124,2200.0,66240.0165276513,1,1,1,2,120.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03925119793583767,36800.0091820285,9,5,9,9_1,9_1,9_0_0 -17026,2,51.0,0.0,7,112,990.0,0.0,0.0,52,48,0.0,186.3310508675024,1368.3524853001713,1170.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,128339,2,2,2,0,1,,422.0,,43,3.0,1.0,7.0,3.0,2.0,4,4,2959.34016332828,990.0,62809.86499938756,1,1,0,1,160.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018627647106253267,31404.93249969378,8,4,8,8_1,8_1,8_0_0 -17027,2,59.0,0.0,7,112,1370.0,0.0,0.0,56,77,0.0,0.0,1893.578691779025,1414.0,75.69438818436844,0.0,50,0,0,0,0,0,0,0,0,0,,7,,5,106904,2,2,0,0,1,,150.0,,42,1.0,4.0,2.0,2.0,1.5,2,2,2487.29286469686,1370.0,23638.18829772319,4,7,0,1,30.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05981845910484583,15758.792198482128,3,2,3_0,3_1_0,3_1_0,3_0_0 -17028,2,46.0,0.0,7,112,2037.0,0.0,0.0,47,46,0.0,1035.1725048194578,2815.4889015721706,3037.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,90.0,1,,5,106609,1,1,2,0,1,,320.0,,43,3.0,0.0,5.0,4.0,2.3,2,2,2611.12259021024,2037.0,75455.45286237022,1,1,1,2,96.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040248913561481754,32806.718635813144,8,4,8,8_1,8_1,8_0_0 -17029,2,82.0,0.0,2,112,250.0,0.0,0.0,0,77,4480.754631054002,0.0,345.54355689398267,3350.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,127964,2,1,1,0,2,,216.0,,11,0.0,0.0,6.0,1.0,1.0,4,3,2979.5552038782,250.0,12101.763138686476,0,5,0,1,135.0,10,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2768191677203499,12101.763138686476,2,1,2_0,2_1_0,2_1_0,2_0_1 -17030,2,36.0,0.0,9,112,1165.0,0.0,0.0,46,46,0.0,0.0,1610.232975125959,1165.0,0.0,0.0,31,0,0,0,0,0,0,0,0,4,90.0,1,2009.0,6,105303,2,2,1,0,1,,195.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,3024.60342520726,1165.0,61028.26254912631,1,1,1,2,160.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019089516092027074,29061.077404345862,8,4,8,8_1,8_1,8_0_0 -17031,2,84.0,0.0,2,112,2300.0,0.0,0.0,77,75,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,115964,2,1,2,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2972.40275673357,2300.0,31477.434497753587,5,5,0,1,91.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07306821653982447,20984.956331835725,5,3,5,5_1,5_1,5_0_1 -17032,2,61.0,0.0,2,111,380.0,0.0,0.0,75,78,0.0,0.0,525.2262064788536,657.0,361.26867087994026,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,101093,2,3,3,0,1,,400.0,,41,1.0,1.0,5.0,3.0,2.0,2,2,199.097478879657,380.0,54076.88551217629,5,5,0,1,50.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012149368325808367,27038.442756088145,7,4,7,7_1,7_3,7_0_1 -17033,2,37.0,0.0,9,111,920.0,0.0,0.0,62,52,0.0,310.55175144583734,1271.600289369856,1220.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,129180,2,1,1,0,1,,580.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,165.518352170762,920.0,42303.87657096252,1,1,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028838964626646316,17626.615237901053,4,2,4_0,4_1_0,4_3_0,4_0_0 -17034,2,39.0,0.0,1,111,900.0,0.0,0.0,0,46,0.0,0.0,1243.9568048183376,995.0,163.4310653980682,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114132,2,2,2,0,1,,220.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,116.039452166996,900.0,6517.415174459714,0,4,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15266788648039203,5013.396288045934,1,1,1_0,1_1_0,1_3_0,1_1_0 -17035,1,45.0,271.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,850.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,131032,2,1,0,1,1,,0.0,347.0,11,0.0,1.0,2.0,1.0,1.0,2,2,198.024958482269,0.0,8846.512706428168,0,6,2,3,50.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09608305873820336,8846.512706428168,1,1,1_1,1_0_1,1_3_1,1_0_1 -17036,1,27.0,90.0,9,111,400.0,600.0,0.0,0,35,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,120999,2,1,0,0,1,,250.0,860.0,22,1.0,0.0,3.0,2.0,1.5,2,2,478.074962692115,400.0,34667.29877051225,0,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028845627881760223,23111.532513674832,6,3,6,6_0,6_3,6_0_0 -17037,2,56.0,0.0,6,111,600.0,1200.0,0.0,78,78,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,1,,4,131404,2,1,2,0,1,,80.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,142.17178732265,600.0,46245.805984608116,5,7,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03892244846157703,23122.902992304058,6,3,6,6_1,6_3,6_0_0 -17038,1,39.0,377.0,5,111,480.0,0.0,0.0,0,85,1290.4573337435527,0.0,663.4436292364467,1344.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,113535,2,2,0,1,1,,0.0,426.0,31,2.0,0.0,3.0,3.0,2.0,1,1,241.061193969488,480.0,16225.750186972487,0,7,2,3,60.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08283130114249422,8112.875093486244,1,1,1_1,1_0_1,1_3_1,1_0_0 -17039,2,78.0,0.0,1,111,420.0,840.0,0.0,0,86,0.0,0.0,580.5131755818909,1260.0,0.0,1523.468436711857,33,0,0,0,0,0,0,0,0,0,,1,,1,119170,2,2,2,0,2,,260.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,140.963010349301,420.0,12077.301641557342,0,6,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10432793991535395,12077.301641557342,2,1,2_0,2_1_0,2_3_0,2_1_0 -17040,1,68.0,219.0,2,111,113.0,0.0,0.0,0,72,1353.1878985783087,0.0,156.18568771608017,1019.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,124675,1,3,0,1,1,,0.0,505.0,11,0.0,2.0,4.0,1.0,1.0,1,1,248.153205988536,113.0,11517.2,0,5,2,3,60.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08847636578335011,11517.2,2,1,2_1,2_0_1,2_3_1,2_0_1 -17041,2,34.0,0.0,9,111,1116.0,1090.0,0.0,54,46,0.0,0.0,1542.5064379747384,2206.0,0.0,1976.8816619237193,43,0,0,0,0,0,0,0,0,3,35.0,1,2012.0,6,120018,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,38.1658888261798,1116.0,40190.88991528252,1,1,1,2,178.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0548880605691981,16746.20413136772,4,2,4_0,4_1_0,4_2_0,4_0_0 -17042,1,34.0,180.0,6,111,2000.0,0.0,0.0,85,62,0.0,0.0,2764.3484551518613,2125.0,215.04087552377396,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,4,129758,2,3,4,0,1,,800.0,535.0,42,1.0,0.0,4.0,5.0,2.4,2,2,124.483779519353,2000.0,37143.60758070535,6,1,2,3,45.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05721038257748163,15476.503158627229,3,2,3_1,3_1_1,3_3_1,3_0_0 -17043,2,68.0,0.0,2,111,600.0,0.0,0.0,0,86,3405.3735196010416,0.0,829.3045365455583,3600.0,1238.635443016938,0.0,50,2,2,2,1,2,2,2,2,0,,1,,2,101012,2,2,2,1,1,,0.0,,21,1.0,0.0,8.0,5.0,2.6,2,2,198.16076534207,600.0,19618.359991881134,0,6,0,1,120.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.18350157717005014,7545.523073800436,1,1,1_0,1_1_0,1_3_0,1_0_1 -17044,2,48.0,0.0,9,112,830.0,0.0,0.0,22,22,0.0,279.4965763012536,1147.2046088880224,1130.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,104665,2,1,1,0,1,,120.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,236.065716928179,830.0,54782.15275367449,1,1,1,2,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020627155801653044,23818.3272842063,6,3,6,6_1,6_0,6_0_0 -17045,2,60.0,0.0,6,111,1360.0,0.0,0.0,78,78,0.0,310.55175144583734,1879.7569495032656,1780.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,105967,2,1,1,0,1,,320.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,147.492919280604,1360.0,74118.51558477894,6,5,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024015591596191422,49412.343723185964,10,5,10,10_1,10_3,10_0_0 -17046,2,68.0,0.0,2,111,270.0,0.0,0.0,0,77,1111.2271485013925,0.0,373.1870414455012,1014.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,125026,1,2,0,1,1,34.0,0.0,491.0,11,0.0,3.0,2.0,1.0,1.0,2,2,256.207323352647,270.0,19393.514219211364,0,5,2,3,54.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05228552125924263,19393.514219211364,5,3,5,5_0,5_3,5_0_1 -17047,2,39.0,0.0,9,111,580.0,1400.0,0.0,56,65,0.0,0.0,801.6610519940398,1980.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,9.0,1,2011.0,6,128363,2,1,1,0,1,,210.0,,43,2.0,0.0,9.0,5.0,2.8,1,1,200.44557447494,580.0,49024.802388380376,1,1,1,2,187.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040387720164870876,17508.857995850136,4,2,4_0,4_1_0,4_2_0,4_0_0 -17048,1,38.0,100.0,1,111,650.0,100.0,0.0,85,67,0.0,569.3448776507017,898.4132479243549,1300.0,0.0,181.36529008474488,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,127216,2,1,3,0,1,,290.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,216.024293189487,650.0,22090.074998226803,6,1,1,2,95.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05884995863999342,10519.083332488954,2,1,2_1,2_1_1,2_2_1,2_1_0 -17049,2,30.0,0.0,9,112,2160.0,0.0,0.0,54,47,0.0,0.0,2985.49633156401,2320.0,275.25232067043066,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,114512,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,154.209654786734,2160.0,37326.921207819076,1,1,1,2,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06215353222097559,15552.883836591282,3,2,3_0,3_1_0,3_0_0,3_0_0 -17050,2,58.0,0.0,5,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,782.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,121425,2,1,2,0,1,,402.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,148.006956683536,0.0,20908.431233399922,6,7,0,1,120.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03740117999626885,13938.954155599948,3,2,3_0,3_1_0,3_3_0,3_0_0 -17051,2,37.0,0.0,9,112,0.0,0.0,1300.0,45,47,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,20,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,122534,2,1,1,0,1,,350.0,750.0,43,2.0,0.0,4.0,3.0,1.8,1,1,16150.9210492832,0.0,33848.0,1,1,2,3,93.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03840699598203735,18804.444444444445,5,3,5,5_1,5_1,5_0_0 -17052,2,44.0,0.0,9,112,0.0,0.0,0.0,54,47,0.0,0.0,0.0,2025.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,105707,2,1,1,0,1,,769.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,1,1,65.5305933809859,0.0,56099.96758638672,1,1,1,2,136.0,8,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03609627754029913,21576.91061014874,6,3,6,6_1,6_0,6_0_0 -17053,2,34.0,0.0,9,120,1500.0,0.0,0.0,52,62,0.0,0.0,2073.261341363896,1527.0,46.448829113135176,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,2010.0,6,118899,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,59.5665165528739,1500.0,27958.71512028571,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054616243751919445,15532.619511269839,3,2,3_0,3_1_0,3_0_0,3_0_0 -17054,2,68.0,0.0,1,111,250.0,0.0,0.0,0,86,0.0,931.655254337512,345.54355689398267,1210.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,114049,2,2,2,0,2,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,132.608631447418,250.0,12179.189235589354,0,6,0,1,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09934979879154886,12179.189235589354,2,1,2_0,2_1_0,2_3_0,2_1_0 -17055,2,66.0,0.0,9,112,615.0,0.0,0.0,90,11,0.0,1035.1725048194578,850.0371499591973,1740.0,215.04087552377396,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,112126,2,1,1,0,1,,350.0,,42,1.0,1.0,7.0,2.0,1.5,3,3,61.1463677623537,615.0,21807.998374697265,5,1,1,2,150.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07978723998892238,14538.66558313151,3,2,3_0,3_1_0,3_0_0,3_0_0 -17056,2,62.0,0.0,2,111,980.0,1300.0,0.0,0,56,0.0,0.0,1354.530743024412,2280.0,0.0,2357.7487711016834,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,120456,2,1,2,0,1,,340.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,230.301163451013,980.0,25389.006360394615,0,1,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08980264795067634,25389.006360394615,7,4,7,7_1,7_2,7_0_1 -17057,2,51.0,0.0,9,120,138.0,1000.0,0.0,85,62,0.0,0.0,190.74004340547842,2554.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,123360,2,1,1,0,1,,480.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,608.355805465529,138.0,33596.94395146283,7,1,1,2,110.0,0,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07601881896430039,22397.962634308555,6,3,6,6_1,6_1,6_0_0 -17058,2,49.0,0.0,5,111,1500.0,1000.0,0.0,54,47,0.0,0.0,2073.261341363896,2500.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,2,30.0,1,,3,114698,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,152.991425770673,1500.0,64749.44290138573,1,1,1,2,95.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038610370807476035,28151.93169625467,8,4,8,8_1,8_3,8_0_0 -17059,2,42.0,0.0,9,111,1600.0,0.0,0.0,45,64,0.0,0.0,2211.478764121489,1760.0,275.25232067043066,0.0,10,2,2,2,2,1,2,2,2,2,60.0,1,2012.0,6,127715,2,1,1,0,1,,400.0,740.0,43,2.0,0.0,4.0,3.0,1.8,1,1,290.280886391409,1600.0,44619.88827143189,1,1,2,3,90.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03944429419664972,24788.82681746216,7,4,7,7_1,7_2,7_0_0 -17060,2,54.0,0.0,2,111,400.0,1200.0,0.0,0,43,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,2,60.0,1,,2,132934,2,2,2,0,1,,480.0,,22,1.0,0.0,4.0,2.0,1.5,3,2,146.96513485462,400.0,39605.202191302364,0,1,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04039873328437075,26403.46812753491,7,4,7,7_1,7_3,7_0_1 -17061,2,36.0,0.0,2,111,0.0,0.0,910.0,77,56,0.0,0.0,464.9311347021478,910.0,0.0,1040.3536549338946,41,0,0,0,0,0,0,0,0,0,,2,,2,109028,2,1,0,1,1,980.0,450.0,256.0,42,1.0,0.0,4.0,2.0,1.5,2,2,217.246193703888,0.0,13058.776637870522,6,4,2,3,74.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06968493490890985,8705.85109191368,1,1,1_0,1_0_0,1_2_0,1_0_1 -17062,2,51.0,0.0,2,111,500.0,530.0,0.0,64,67,0.0,0.0,691.0871137879653,1030.0,0.0,961.236037449148,41,2,2,2,2,1,2,2,2,2,5.0,2,,2,127607,1,3,0,1,1,509.0,200.0,333.0,43,5.0,2.0,4.0,6.0,3.3,1,1,257.76030608941,500.0,29945.774328099586,1,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03439550397711708,9074.477069121087,1,1,1_0,1_0_0,1_2_0,1_0_1 -17063,2,46.0,0.0,9,111,1200.0,0.0,0.0,0,42,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,121038,2,1,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,431.040120883224,1200.0,23901.804099967667,0,1,1,2,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050205415247362994,23901.804099967667,6,3,6,6_1,6_3,6_0_0 -17064,1,59.0,50.0,2,111,450.0,1000.0,0.0,0,78,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,1,,2,124670,2,3,3,0,1,,170.0,304.0,11,0.0,3.0,2.0,1.0,1.0,1,1,189.070930068573,450.0,15972.506354960688,0,7,2,3,35.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09078099377619993,15972.506354960688,3,2,3_1,3_1_1,3_3_1,3_0_1 -17065,2,66.0,0.0,2,111,1780.0,1400.0,0.0,74,74,0.0,0.0,2460.2701250851565,3180.0,0.0,2539.1140611864284,10,0,0,0,0,0,0,0,0,0,,1,,2,114619,2,1,3,0,1,,250.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,224.957237447639,1780.0,66367.12479393127,5,5,0,1,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047915289533392365,44244.74986262085,10,5,10,10_1,10_2,10_0_1 -17066,2,35.0,0.0,9,111,0.0,0.0,3700.0,37,35,0.0,0.0,1890.379338898843,3700.0,0.0,4230.0093662147365,31,0,0,0,0,0,0,0,0,1,1.0,1,2011.0,6,122058,2,1,1,0,1,,668.0,,43,2.0,0.0,8.0,4.0,2.3,4,4,45.3072636787357,0.0,69096.77690314077,1,1,1,2,240.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05354808380116813,30042.07691440903,8,4,8,8_1,8_3,8_0_0 -17067,2,67.0,0.0,1,111,430.0,700.0,0.0,86,86,0.0,0.0,594.3349178576501,1130.0,0.0,1269.5570305932142,20,0,0,0,0,0,0,0,0,0,,1,,1,116341,2,2,2,0,1,,549.0,416.0,41,0.0,1.0,4.0,2.0,1.5,2,2,197.715346002562,430.0,22728.194880029776,6,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049717982706707575,15152.12992001985,3,2,3_0,3_1_0,3_3_0,3_1_0 -17068,2,61.0,0.0,2,111,170.0,0.0,0.0,0,75,0.0,0.0,234.9696186879082,220.0,86.01635020950958,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,117645,2,2,0,1,1,980.0,215.0,380.0,11,0.0,3.0,2.0,1.0,1.0,2,2,236.891252908117,170.0,18696.1343960342,0,5,2,3,56.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011767138347415076,18696.1343960342,5,3,5,5_0,5_2,5_0_1 -17069,1,43.0,360.0,1,111,400.0,1100.0,0.0,56,85,0.0,0.0,552.8696910303722,1500.0,0.0,1995.0181909321939,43,0,0,0,0,0,0,0,0,0,,1,,1,105728,2,2,2,0,1,,300.0,425.0,42,1.0,2.0,5.0,2.0,1.5,1,1,132.059016015623,400.0,14026.97076958177,1,7,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10693684507084235,9351.313846387848,1,1,1_1,1_1_1,1_3_1,1_1_0 -17070,2,59.0,0.0,2,111,890.0,1400.0,0.0,78,65,0.0,0.0,1230.1350625425782,2290.0,0.0,2539.1140611864284,12,0,0,0,0,0,0,0,0,4,1.0,1,,2,131952,2,1,1,0,1,,250.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,224.957237447639,890.0,23322.93203971592,5,1,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0981866257681679,15548.621359810613,3,2,3_0,3_1_0,3_2_0,3_0_1 -17071,2,35.0,0.0,9,111,1300.0,0.0,0.0,46,65,0.0,1035.1725048194578,1796.8264958487098,2300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2011.0,6,125507,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,239.574649546005,1300.0,59800.54400136076,1,1,1,2,250.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03846118857961666,33222.52444520042,8,4,8,8_1,8_2,8_0_0 -17072,2,81.0,0.0,2,111,550.0,850.0,0.0,77,74,0.0,0.0,760.1958251667618,1460.0,103.2196202514115,1541.6049657203316,70,0,0,0,0,0,0,0,0,0,,1,,2,101570,2,1,2,0,2,,350.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,224.957237447639,550.0,37462.57934504277,5,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03897222309635747,24975.05289669518,7,4,7,7_1,7_2,7_0_1 -17073,1,45.0,119.0,9,111,1360.0,0.0,0.0,85,62,0.0,517.5862524097289,1879.7569495032656,1950.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,108207,2,1,1,0,1,,450.0,,42,1.0,0.0,5.0,3.0,2.0,2,2,236.598075599323,1360.0,27546.107952878207,6,1,1,2,100.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07079039998448312,13773.053976439103,3,2,3_1,3_1_1,3_2_1,3_0_0 -17074,1,59.0,280.0,1,111,370.0,0.0,0.0,0,85,0.0,517.5862524097289,511.40446420309434,870.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,104117,2,3,2,0,1,,0.0,347.0,11,0.0,1.0,4.0,1.0,1.0,2,2,173.866918903502,370.0,4839.267902296582,0,7,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,1,1,0.17977925950062038,4839.267902296582,1,1,1_1,1_1_1,1_3_1,1_1_0 -17075,2,69.0,0.0,5,111,680.0,595.0,0.0,22,72,0.0,0.0,939.8784747516328,1275.0,0.0,1079.123476004232,33,0,0,0,0,0,0,0,0,0,,1,,3,119361,2,1,1,0,1,,330.0,,42,1.0,1.0,4.0,2.0,1.5,3,3,274.645668500398,680.0,23254.026920237677,1,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05482921320996598,15502.684613491785,3,2,3_0,3_1_0,3_2_0,3_0_0 -17076,2,65.0,0.0,2,111,248.0,1287.0,0.0,0,78,0.0,0.0,342.7792084388308,1535.0,0.0,2334.1712833906668,71,0,0,0,0,0,0,0,0,0,,1,,2,116481,2,2,3,0,1,,245.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,245.19090155167,248.0,17639.91152090577,0,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08701857705923352,17639.91152090577,4,2,4_0,4_1_0,4_2_0,4_0_1 -17077,2,51.0,0.0,9,112,0.0,0.0,0.0,85,48,0.0,0.0,0.0,1143.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,126611,2,1,1,0,1,,597.0,550.0,42,1.0,1.0,5.0,4.0,2.5,1,1,378.694729932087,0.0,37574.18441197173,6,1,2,3,100.0,7,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030419821957221836,15029.673764788691,3,2,3_0,3_1_0,3_1_0,3_0_0 -17078,1,54.0,137.0,2,111,400.0,900.0,0.0,0,56,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,70,1,2,2,1,2,2,2,2,1,5.0,1,,2,107986,2,2,2,0,1,,550.0,568.0,12,1.0,5.0,5.0,1.0,1.0,1,1,154.50902927739,400.0,9549.166643696997,0,1,2,3,120.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.13613753414368104,9549.166643696997,1,1,1_1,1_1_1,1_3_1,1_0_1 -17079,2,39.0,0.0,7,111,400.0,1000.0,0.0,55,64,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,101542,2,1,2,0,1,,470.0,600.0,43,2.0,0.0,5.0,5.0,2.4,2,2,139.099028460971,400.0,40003.61616422416,1,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03499683614232959,16668.173401760065,4,2,4_0,4_1_0,4_3_0,4_0_0 -17080,2,49.0,0.0,2,111,250.0,340.0,0.0,45,42,0.0,600.4000527952855,345.54355689398267,1170.0,0.0,616.6419862881327,71,0,0,0,0,0,0,0,0,4,30.0,1,,2,122846,2,1,1,0,1,,220.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,224.957237447639,250.0,68695.60647723463,1,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017031656899160384,45797.07098482308,10,5,10,10_1,10_2,10_0_1 -17081,2,32.0,0.0,9,111,1876.0,0.0,0.0,54,22,0.0,558.9931526025072,2592.958850932446,2476.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,2012.0,6,103974,2,1,1,0,1,,320.0,,43,2.0,0.0,7.0,2.0,1.5,1,1,243.031609088165,1876.0,108580.05225161699,1,1,1,2,150.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022803451910874607,72386.70150107799,10,5,10,10_1,10_3,10_0_0 -17082,1,47.0,388.0,7,111,1900.0,0.0,0.0,0,85,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,8,,5,121672,2,1,0,0,1,,0.0,333.0,31,0.0,4.0,3.0,5.0,2.5999999999999996,3,2,141.64714427797,1900.0,16404.017863240697,0,6,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11582528230828477,6309.2376397079615,1,1,1_1,1_0_1,1_3_1,1_0_0 -17083,2,36.0,0.0,5,111,400.0,400.0,0.0,56,64,0.0,517.5862524097289,552.8696910303722,1300.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,1,10.0,1,,3,117810,2,1,2,0,1,,329.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,240.577013656951,400.0,29670.97656616751,1,1,1,2,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04381385955062672,12362.906902569795,2,1,2_0,2_1_0,2_2_0,2_0_0 -17085,2,34.0,0.0,9,111,0.0,0.0,0.0,33,48,0.0,0.0,0.0,1164.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,100767,2,1,1,0,1,,476.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,88.0695920706226,0.0,48722.469306682084,1,1,1,2,143.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023890414762709127,23201.1758603248,6,3,6,6_1,6_2,6_0_0 -17086,2,78.0,0.0,5,111,310.0,810.0,0.0,0,77,0.0,0.0,428.47401054853844,1120.0,0.0,1469.0588496864336,31,0,0,0,0,0,0,0,0,0,,1,,3,118830,2,1,1,0,1,,220.0,412.0,11,0.0,3.0,2.0,1.0,1.0,1,1,155.628387248468,310.0,18219.674114277143,0,6,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0614720105845557,18219.674114277143,4,2,4_0,4_1_0,4_3_0,4_0_0 -17087,2,60.0,0.0,2,111,224.0,90.0,0.0,0,78,0.0,0.0,309.60702697700845,314.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,0,,2,,2,125881,2,1,0,1,1,748.0,124.0,239.0,11,0.0,3.0,2.0,1.0,1.0,1,1,213.744530498171,224.0,18475.796579674527,0,5,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016995207684059245,18475.796579674527,4,2,4_0,4_0_0,4_2_0,4_0_1 -17088,2,25.0,0.0,9,111,2500.0,0.0,0.0,52,62,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,113861,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,391.081878871824,2500.0,40442.49198808187,4,1,1,2,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061816170990074824,22468.05110448993,6,3,6,6_1,6_3,6_0_0 -17089,2,33.0,0.0,1,111,562.0,1142.0,0.0,52,63,0.0,0.0,776.781915897673,1704.0,0.0,2071.191612767787,71,0,0,0,0,0,0,0,0,2,8.0,1,,1,110932,2,1,1,0,1,,393.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,327.817181472309,562.0,37793.20546454226,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04508746953466807,17996.764506924887,4,2,4_0,4_1_0,4_3_0,4_1_0 -17090,2,36.0,0.0,1,120,750.0,2000.0,0.0,53,37,0.0,0.0,1036.630670681948,2750.0,0.0,3627.3058016948976,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,112845,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,256.921815738543,750.0,68000.75291838276,1,1,1,2,230.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0404407286975287,32381.310913515597,8,4,8,8_1,8_0,8_1_0 -17091,2,25.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1130.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,129111,1,1,0,0,1,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,874.416005557375,0.0,18691.454223964287,0,1,2,3,35.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06045543521976094,18691.454223964287,5,3,5,5_0,5_3,5_1_0 -17092,2,25.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,543.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,2.0,3,2012.0,6,116497,1,3,0,1,1,566.0,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,177.514467867019,0.0,17068.930017446968,0,1,2,3,45.0,7,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03181218737466108,17068.930017446968,4,2,4_0,4_0_0,4_2_0,4_0_0 -17093,2,38.0,0.0,9,111,1340.0,0.0,0.0,54,48,0.0,0.0,1852.113464951747,1340.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,112802,2,1,1,0,1,,520.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,180.991588171443,1340.0,43581.42142099736,1,1,1,2,96.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030747046707255702,24211.900789442978,7,4,7,7_1,7_3,7_0_0 -17094,2,88.0,0.0,2,111,299.0,1382.0,0.0,78,78,0.0,0.0,413.2700940452032,1681.0,0.0,2506.4683089711743,20,1,2,2,1,1,2,2,2,0,,1,,2,113658,2,1,1,0,1,,320.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,487.786635095886,299.0,27426.010560796647,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.061292180876020626,18284.007040531098,4,2,4_0,4_1_0,4_3_0,4_0_1 -17095,2,33.0,0.0,2,111,2200.0,0.0,0.0,56,65,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,117846,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,214.854603278092,2200.0,32351.240818949373,1,1,1,2,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06800357403019222,15405.352770928272,3,2,3_0,3_1_0,3_3_0,3_0_1 -17096,2,27.0,0.0,8,111,650.0,1400.0,0.0,0,38,0.0,0.0,898.4132479243549,2050.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105786,2,1,3,0,1,,480.0,,22,2.0,3.0,6.0,3.0,2.0,1,1,511.368919856482,650.0,112574.84969222602,0,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018210106481195372,56287.42484611301,10,5,10,10_1,10_3,10_0_0 -17097,2,64.0,0.0,6,111,290.0,1300.0,0.0,86,78,0.0,0.0,400.8305259970199,1590.0,0.0,2357.7487711016834,44,0,0,0,0,0,0,0,0,0,,1,,4,131831,2,2,1,0,1,,480.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,287.232900628932,290.0,20445.1865448308,6,5,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07776891624410259,13630.124363220535,3,2,3_0,3_1_0,3_3_0,3_0_0 -17098,2,50.0,0.0,9,111,67.0,766.0,0.0,90,90,0.0,0.0,92.60567324758735,914.0,139.3464873394055,1389.2581220491459,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,109998,2,2,5,0,1,,100.0,,43,2.0,0.0,4.0,5.0,3.0,1,1,429.765091006488,67.0,12749.236748447602,4,4,0,1,149.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07169056611261787,4249.745582815867,1,1,1_0,1_1_0,1_3_0,1_0_0 -17099,2,32.0,0.0,9,112,0.0,0.0,0.0,54,21,0.0,0.0,0.0,1944.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,102261,2,1,1,0,1,,217.0,,43,2.0,0.0,5.0,2.0,1.5,3,2,225.545237925279,0.0,36369.50298991542,1,1,1,2,190.0,7,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05345137657061288,24246.33532661028,7,4,7,7_1,7_0,7_0_0 -17100,1,45.0,341.0,2,111,220.0,0.0,0.0,0,54,0.0,0.0,304.0783300667047,220.0,0.0,0.0,50,2,1,2,2,1,2,2,2,3,45.0,2,,2,119779,2,1,0,1,1,1045.0,581.0,320.0,32,1.0,1.0,3.0,2.0,1.5,2,2,409.885749211003,220.0,11416.601528693618,0,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.019270182939035645,7611.067685795745,1,1,1_1,1_0_1,1_3_1,1_0_1 -17101,1,54.0,106.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1645.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,125309,2,1,0,0,1,,0.0,284.0,11,0.0,2.0,3.0,1.0,1.0,1,1,230.97402859629,0.0,12976.903720353466,0,7,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1267636745597426,12976.903720353466,2,1,2_1,2_0_1,2_3_1,2_1_0 -17102,2,42.0,0.0,9,111,617.0,895.0,0.0,42,33,0.0,414.0690019277831,852.8014984143491,1912.0,0.0,1623.2193462584667,44,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,125371,2,1,1,0,1,,431.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,441.745820861492,617.0,52743.466223407755,1,1,1,2,189.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036250935649569556,25115.936296860833,7,4,7,7_1,7_3,7_0_0 -17103,2,60.0,0.0,5,111,483.0,1260.0,0.0,77,22,0.0,0.0,667.5901519191744,1743.0,0.0,2285.2026550677856,71,0,0,0,0,0,0,0,0,0,,1,,3,115809,2,1,2,0,1,,331.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,508.536741131279,483.0,75589.73909056146,6,1,0,1,275.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023058685225937504,50393.15939370764,10,5,10,10_1,10_3,10_0_0 -17104,1,40.0,410.0,9,111,740.0,1500.0,0.0,85,67,0.0,0.0,1022.8089284061887,2702.0,794.7910759358685,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,126304,2,1,1,0,1,,730.0,443.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,2,2,610.908199167866,740.0,48437.0,6,4,2,3,102.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05578380163924273,15136.562500000004,3,2,3_1,3_1_1,3_2_1,3_0_0 -17105,2,33.0,0.0,9,111,1280.0,0.0,0.0,37,43,0.0,0.0,1769.1830112971911,1280.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,112841,2,1,1,0,1,,342.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,458.869009545206,1280.0,79050.08395161598,1,1,1,2,88.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016192266168666525,43916.71330645332,10,5,10,10_1,10_3,10_0_0 -17106,1,73.0,75.0,7,111,236.0,1000.0,0.0,0,72,0.0,0.0,326.1931177079196,1236.0,0.0,1813.6529008474488,12,0,0,0,0,0,0,0,0,0,,2,,5,113224,2,2,0,0,1,,0.0,317.0,11,0.0,2.0,2.0,1.0,1.0,1,1,616.143182697207,236.0,12345.888887022818,0,5,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10011429807206522,12345.888887022818,2,1,2_1,2_0_1,2_3_1,2_0_0 -17107,2,37.0,0.0,9,111,794.0,1182.0,0.0,46,38,0.0,0.0,1097.446336695289,4309.0,0.0,2143.7377288016846,50,1,2,2,1,1,2,2,2,1,5.0,1,2011.0,6,124006,2,1,1,0,1,,294.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,389.343627356061,794.0,60843.3403063724,1,1,1,2,147.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07082122674893145,33801.85572576245,9,5,9,9_1,9_3,9_0_0 -17108,2,59.0,0.0,6,111,660.0,1187.0,0.0,42,74,0.0,0.0,912.2349902001142,1847.0,0.0,2152.8059933059217,50,0,0,0,0,0,0,0,0,0,,1,,4,111857,2,1,2,0,1,,320.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,508.536741131279,660.0,75179.2025919806,1,5,0,1,115.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02456796476046981,50119.46839465373,10,5,10,10_1,10_3,10_0_0 -17109,2,47.0,0.0,7,111,900.0,800.0,0.0,46,62,0.0,0.0,1243.9568048183376,1700.0,0.0,1450.922320677959,71,1,2,2,2,1,2,2,1,1,5.0,1,,5,133560,2,1,2,0,1,,720.0,585.0,43,4.0,0.0,6.0,6.0,3.3,1,1,287.78509420716,900.0,44000.412186215726,1,1,2,3,130.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.038636001699378836,13333.45823824719,3,2,3_0,3_1_0,3_3_0,3_0_0 -17110,2,39.0,0.0,9,111,1450.0,2740.0,0.0,54,21,0.0,0.0,2004.1526299850993,4190.0,0.0,4969.40894832201,33,0,0,0,0,0,0,0,0,0,,1,2011.0,6,101421,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,372.535316364544,1450.0,82703.5133547471,1,1,1,2,430.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050662902094950696,34459.79723114463,9,5,9,9_1,9_2,9_0_0 -17111,2,60.0,0.0,2,111,500.0,1500.0,0.0,77,31,0.0,207.03450096389156,691.0871137879653,2200.0,0.0,2720.4793512711735,20,0,0,0,0,0,0,0,0,0,,1,,2,123682,2,3,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,502.467124795587,500.0,66913.92245978628,5,5,0,1,102.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03287806063561958,44609.281639857516,10,5,10,10_1,10_3,10_0_1 -17112,2,38.0,0.0,9,111,1600.0,0.0,0.0,46,38,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,101202,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,251.450333331289,1600.0,53945.03687620961,1,1,1,2,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029659818449500747,29969.46493122756,8,4,8,8_1,8_2,8_0_0 -17113,2,63.0,0.0,1,111,511.0,1928.0,0.0,42,74,0.0,0.0,706.2910302913006,2439.0,0.0,3496.7227928338816,71,0,0,0,0,0,0,0,0,0,,1,,1,103889,2,1,2,0,1,,588.0,,42,2.0,3.0,6.0,3.0,2.0,1,1,407.646997044506,511.0,85650.70210707435,1,5,0,1,204.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028476123837851763,42825.351053537175,9,5,9,9_1,9_3,9_1_0 -17114,2,61.0,0.0,9,111,0.0,0.0,0.0,56,78,0.0,0.0,0.0,2877.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2013.0,6,102525,2,1,1,0,1,,263.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,267.519522979358,0.0,20329.710790329806,4,5,0,1,72.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14151701564630703,13553.140526886536,3,2,3_0,3_1_0,3_3_0,3_0_0 -17115,2,45.0,0.0,9,112,2200.0,0.0,0.0,0,31,0.0,0.0,3040.783300667047,2641.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,114361,2,1,1,0,1,,200.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,257.988422949036,2200.0,42882.79329754015,0,1,1,2,160.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06158647319626666,42882.79329754015,9,5,9,9_1,9_0,9_0_0 -17116,2,63.0,0.0,2,111,540.0,1340.0,0.0,54,43,0.0,0.0,746.3740828910024,1880.0,0.0,2430.2948871355816,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,108020,2,1,2,0,2,,640.0,,43,2.0,2.0,5.0,3.0,2.0,2,2,496.120014883944,540.0,118931.33024416113,1,1,0,1,106.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015807441118672744,59465.665122080565,10,5,10,10_1,10_3,10_0_1 -17117,2,25.0,0.0,2,111,312.0,960.0,0.0,56,62,0.0,0.0,431.23835900369033,1302.0,51.60981012570575,1741.106784813551,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,115093,2,1,2,0,1,,340.0,375.0,43,2.0,0.0,3.0,2.0,1.5,4,3,230.107518052489,312.0,36199.64412864695,1,1,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03596720441153866,24133.09608576463,6,3,6,6_1,6_3,6_0_1 -17118,2,57.0,0.0,9,111,768.0,0.0,0.0,0,64,0.0,0.0,1061.5098067783147,832.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,125053,2,1,1,0,1,,180.0,,22,2.0,3.0,3.0,2.0,1.5,4,3,244.041084936113,768.0,26355.879745616556,0,4,0,1,78.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03156790849064244,17570.586497077704,4,2,4_0,4_1_0,4_3_0,4_0_0 -17119,2,52.0,0.0,2,111,350.0,1035.0,0.0,0,52,0.0,0.0,483.76097965157567,1385.0,0.0,1877.1307523771095,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,122095,2,2,0,0,1,,0.0,398.0,12,1.0,2.0,4.0,1.0,1.0,4,2,612.102766664773,350.0,26928.711123158195,0,1,2,3,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0514320939337095,26928.711123158195,7,4,7,7_0,7_3,7_0_1 -17120,2,33.0,0.0,9,112,1800.0,0.0,0.0,54,62,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,127660,2,1,1,0,1,,210.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,236.121511083452,1800.0,38147.53848194704,1,1,1,2,96.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047185220111956444,18165.494515212875,4,2,4_0,4_1_0,4_0_0,4_0_0 -17121,2,66.0,0.0,2,111,311.0,750.0,0.0,0,77,0.0,0.0,429.8561847761144,1061.0,0.0,1360.2396756355868,50,2,2,2,2,1,2,2,2,0,,1,,2,126295,2,1,1,0,1,,116.0,361.0,11,0.0,2.0,4.0,1.0,1.0,2,2,476.089463003609,311.0,15560.282135264322,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0681864243062439,15560.282135264322,3,2,3_0,3_1_0,3_3_0,3_0_1 -17122,0,78.0,0.0,1,111,225.0,1032.0,0.0,78,78,0.0,0.0,310.9892012045844,1257.0,0.0,1871.6897936745672,31,1,2,2,1,2,2,2,2,0,,1,,1,122646,2,1,1,0,1,,348.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,241.027881666673,225.0,36600.327756201834,5,5,5,0,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03434395474196278,24400.218504134555,7,4,7,7_1,7_3,7_1_0 -17123,2,28.0,0.0,5,111,400.0,0.0,0.0,0,54,0.0,0.0,552.8696910303722,732.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,3,112017,1,1,0,1,2,564.0,0.0,498.0,12,1.0,0.0,2.0,1.0,1.0,1,1,581.471191298392,400.0,21093.28128281524,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03470299334586519,21093.28128281524,5,3,5,5_0,5_3,5_0_0 -17124,1,41.0,92.0,2,111,468.0,0.0,0.0,0,45,0.0,0.0,646.8575385055356,468.0,0.0,0.0,50,2,1,2,1,1,2,2,2,3,20.0,2,,2,120326,1,3,0,1,1,650.0,0.0,306.0,32,1.0,0.0,4.0,4.0,2.1,4,3,424.466130693803,468.0,27428.514511343812,0,1,2,3,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.017062535406591042,13061.197386354195,2,1,2_1,2_0_1,2_3_1,2_0_1 -17125,1,56.0,316.0,8,111,610.0,1046.0,0.0,56,63,0.0,0.0,843.1262788213177,1656.0,0.0,1897.0809342864316,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,108939,2,2,5,0,1,,1063.0,409.0,43,2.0,0.0,5.0,7.0,3.8,1,1,264.457412153622,610.0,30329.353197736746,1,4,2,3,102.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.054600570912391726,7981.4087362465125,1,1,1_1,1_1_1,1_3_1,1_0_0 -17126,2,46.0,0.0,9,112,600.0,1320.0,0.0,54,37,0.0,0.0,829.3045365455583,1920.0,0.0,2394.0218291186325,42,0,0,0,0,0,0,0,0,2,40.0,1,2012.0,6,124336,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,242.865684645599,600.0,56903.63103079681,1,1,1,2,157.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033741256317384685,27096.96715752229,7,4,7,7_1,7_0,7_0_0 -17127,2,32.0,0.0,9,120,518.0,1200.0,0.0,47,37,0.0,0.0,715.966249884332,1718.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,128992,2,1,1,0,1,,0.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,207.53669691114,518.0,41440.61404490421,1,1,1,2,110.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0414569146619886,23022.563358280113,6,3,6,6_1,6_0,6_0_0 -17128,2,55.0,0.0,5,111,528.0,1451.0,0.0,63,37,0.0,20.703450096389155,729.7879921600913,1999.0,0.0,2631.6103591296483,70,0,0,0,0,0,0,0,0,3,30.0,1,,3,119625,2,1,2,0,1,,352.0,,43,3.0,1.0,6.0,3.0,2.0,1,1,475.703589957938,528.0,45711.08470611104,1,1,0,1,97.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0437311871475401,22855.54235305552,6,3,6,6_1,6_3,6_0_0 -17129,2,27.0,0.0,9,120,2000.0,0.0,0.0,37,37,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,70.0,1,2011.0,6,101288,2,1,1,0,1,,500.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,154.205604142309,2000.0,53344.63529062069,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03749205499492186,29635.90849478927,8,4,8,8_1,8_0,8_0_0 -17130,2,51.0,0.0,2,111,340.0,919.0,0.0,0,37,0.0,0.0,469.9392373758164,1259.0,0.0,1666.7470158788055,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,124782,2,2,5,0,1,,174.0,,12,1.0,2.0,5.0,1.0,1.0,3,2,542.506201412131,340.0,27906.32441840481,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045115221235286114,27906.32441840481,7,4,7,7_1,7_3,7_0_1 -17131,0,79.0,0.0,2,111,420.0,1150.0,0.0,0,86,0.0,0.0,580.5131755818909,1570.0,0.0,2085.7008359745664,71,0,0,0,0,0,0,0,0,0,,1,,2,104387,2,1,3,0,1,,240.0,,11,0.0,8.0,3.0,1.0,1.0,3,2,239.971749359155,420.0,18552.88026524791,0,7,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08462297915762575,18552.88026524791,4,2,4_0,4_1_0,4_3_0,4_0_1 -17132,2,31.0,0.0,9,112,922.0,0.0,0.0,52,63,0.0,517.5862524097289,1274.364637825008,1522.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,112820,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,152.255321937856,922.0,37707.073623622986,1,1,1,2,160.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040363779358536245,17955.749344582375,4,2,4_0,4_1_0,4_0_0,4_0_0 -17133,2,47.0,0.0,6,111,1030.0,0.0,0.0,0,37,0.0,258.79312620486445,1423.6394544032084,1280.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,4,105762,2,1,2,0,1,,218.0,,32,1.0,0.0,5.0,2.0,1.3,2,2,465.14332289422,1030.0,44494.67227124953,0,1,0,1,88.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028767489109636137,34226.670977884256,9,5,9,9_1,9_3,9_0_0 -17134,2,39.0,0.0,1,111,480.0,950.0,0.0,62,68,0.0,0.0,663.4436292364467,1570.0,240.84578058662683,1722.9702558050765,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,116196,2,1,2,0,1,,350.0,396.0,43,2.0,0.0,3.0,3.0,1.8,2,2,302.946723208907,480.0,34644.92483373218,1,1,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045316882848923455,19247.18046318454,5,3,5,5_1,5_3,5_1_0 -17135,1,48.0,490.0,1,111,600.0,1380.0,0.0,85,67,0.0,0.0,829.3045365455583,1980.0,0.0,2502.8410031694793,50,0,0,0,0,0,0,0,0,0,,1,,1,130619,1,3,4,0,1,,590.0,525.0,42,1.0,0.0,3.0,6.0,3.0999999999999996,2,2,227.204678645388,600.0,24118.782182657415,6,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08209369714461441,7780.252316986263,1,1,1_1,1_1_1,1_3_1,1_1_0 -17136,2,28.0,0.0,9,112,1229.0,0.0,0.0,43,53,0.0,517.5862524097289,1698.6921256908186,1729.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,25.0,1,2010.0,6,120916,2,1,1,0,1,,340.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,139.901878562838,1229.0,38519.66095261392,1,1,1,2,122.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04488616870555999,25679.77396840928,7,4,7,7_1,7_0,7_0_0 -17137,1,38.0,449.0,5,111,0.0,0.0,0.0,62,56,0.0,0.0,0.0,457.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,3,108103,1,1,0,1,1,1588.0,0.0,402.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,1,1,440.136377510654,0.0,36160.27554338986,4,1,2,3,88.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012638178031902198,12469.0605322034,2,1,2_1,2_0_1,2_3_1,2_0_0 -17138,2,30.0,0.0,9,111,900.0,1200.0,0.0,0,54,0.0,0.0,1243.9568048183376,2100.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,119867,2,1,1,0,1,,500.0,418.0,22,2.0,1.0,4.0,4.0,2.5,2,2,258.243185210601,900.0,34821.006741983736,0,1,2,3,69.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0603084228885326,13928.402696793495,3,2,3_0,3_1_0,3_3_0,3_0_0 -17139,2,36.0,0.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,539.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,1,,4,130528,2,2,2,0,1,,0.0,296.0,12,1.0,0.0,2.0,1.0,1.0,1,1,499.98003202001,0.0,17356.88559938318,0,1,2,3,57.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031053958206601003,17356.88559938318,4,2,4_0,4_1_0,4_3_0,4_0_0 -17140,2,54.0,0.0,1,111,440.0,1200.0,0.0,56,48,0.0,0.0,608.1566601334094,1640.0,0.0,2176.3834810169387,33,1,2,2,1,2,2,2,2,2,30.0,1,,1,111391,2,1,1,0,1,,450.0,501.0,43,2.0,1.0,4.0,4.0,2.5,3,3,252.984675575865,440.0,30772.53679652981,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.053294273749473306,12309.014718611925,2,1,2_0,2_1_0,2_3_0,2_1_0 -17141,2,49.0,0.0,5,111,2933.0,0.0,0.0,42,34,0.0,0.0,4053.9170094802043,3053.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,102549,1,2,0,0,1,,900.0,,43,2.0,0.0,6.0,4.0,2.5,3,3,565.714640134948,2933.0,74972.5900183048,1,1,0,1,135.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04072154902551186,29989.036007321924,8,4,8,8_0,8_3,8_0_0 -17142,1,39.0,270.0,2,111,170.0,0.0,0.0,0,67,0.0,0.0,234.9696186879082,254.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,103876,1,1,0,1,1,,0.0,454.0,12,1.0,0.0,2.0,1.0,1.0,2,2,288.124149884496,170.0,4839.267902296582,0,4,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05248727806110066,4839.267902296582,1,1,1_1,1_0_1,1_3_1,1_0_1 -17143,1,36.0,304.0,9,111,1300.0,0.0,0.0,85,47,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,100320,2,1,1,0,1,,620.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,173.375552879174,1300.0,19651.939611832033,6,1,1,2,104.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0661512311597628,7278.496152530383,1,1,1_1,1_1_1,1_2_1,1_0_0 -17144,2,48.0,0.0,5,111,1260.0,0.0,0.0,0,52,0.0,0.0,1741.5395267456724,1260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102339,1,3,3,0,2,,360.0,407.0,32,1.0,0.0,4.0,2.0,1.5,2,2,422.661125618164,1260.0,17773.246069904086,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07089307125126636,11848.83071326939,2,1,2_0,2_1_0,2_3_0,2_0_0 -17145,2,50.0,0.0,2,111,539.0,1541.0,0.0,46,38,0.0,0.0,744.9919086634266,2080.0,0.0,2794.839120205919,44,0,0,0,0,0,0,0,0,2,25.0,1,,2,131187,2,2,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,214.055229149836,539.0,68362.07414828017,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030426227201480076,32553.368642038175,8,4,8,8_1,8_3,8_0_1 -17146,2,27.0,0.0,9,111,960.0,0.0,0.0,0,43,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,101833,2,1,0,0,1,,120.0,416.0,12,1.0,0.0,2.0,1.0,1.0,1,1,219.42695699644,960.0,23258.673791694648,0,1,2,3,38.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04127492429696498,23258.673791694648,6,3,6,6_0,6_2,6_0_0 -17147,2,40.0,0.0,5,111,1500.0,0.0,0.0,38,90,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,126198,2,2,3,0,1,,660.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,479.049537921143,1500.0,69562.09621892498,1,1,1,2,108.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02156346748492481,38645.60901051388,9,5,9,9_1,9_3,9_0_0 -17148,2,47.0,0.0,2,111,790.0,1160.0,0.0,68,63,0.0,0.0,1091.917639784985,1950.0,0.0,2103.8373649830405,71,0,0,0,0,0,0,0,0,0,,1,,2,106057,2,2,3,0,1,,510.0,709.0,43,2.0,0.0,4.0,4.0,2.5,1,1,225.573089714575,790.0,56933.93249635307,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03425022503275895,22773.572998541225,6,3,6,6_1,6_3,6_0_1 -17149,2,33.0,0.0,9,111,0.0,0.0,0.0,42,46,0.0,0.0,0.0,1403.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,107900,2,1,1,0,1,,619.0,,43,2.0,0.0,9.0,5.0,2.4,1,1,162.67199019939,0.0,73959.90609171848,1,1,1,2,175.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018969737444773448,30816.627538216035,8,4,8,8_1,8_3,8_0_0 -17150,2,51.0,0.0,6,111,1050.0,400.0,0.0,37,37,0.0,0.0,1451.2829389547271,1450.0,0.0,725.4611603389795,70,0,0,0,0,0,0,0,0,2,8.0,2,,4,126881,2,1,0,0,2,,268.0,,43,2.0,0.0,7.0,6.0,3.5,1,1,607.879977482005,1050.0,105206.20121438138,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013782457528765798,30058.914632680393,8,4,8,8_0,8_3,8_0_0 -17151,2,62.0,0.0,5,111,480.0,1250.0,0.0,46,74,0.0,0.0,663.4436292364467,1730.0,0.0,2267.066126059311,50,0,0,0,0,0,0,0,0,0,,1,,3,105262,2,1,1,0,1,,520.0,,42,2.0,0.0,4.0,3.0,2.0,2,2,283.552566263252,480.0,85555.45410921938,1,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020220803197321544,42777.72705460969,9,5,9,9_1,9_3,9_0_0 -17152,2,89.0,0.0,2,111,350.0,700.0,0.0,0,77,0.0,0.0,483.76097965157567,1050.0,0.0,1269.5570305932142,43,0,0,0,0,0,0,0,0,0,,1,,2,116567,2,2,2,0,2,,220.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,564.541046579136,350.0,25148.997077146727,0,5,0,1,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04175116792049536,25148.997077146727,7,4,7,7_1,7_3,7_0_1 -17153,1,29.0,271.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,457.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107505,1,1,0,1,1,656.0,0.0,262.0,12,1.0,0.0,2.0,1.0,1.0,1,1,226.639348880022,0.0,10668.71814327807,0,4,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04283551162029126,10668.71814327807,2,1,2_1,2_0_1,2_3_1,2_0_1 -17154,2,33.0,0.0,9,111,1100.0,0.0,0.0,42,46,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,101899,2,1,1,0,1,,100.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,269.585680213966,1100.0,31932.16772043684,1,1,1,2,109.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034448021494512926,17740.093178020466,4,2,4_0,4_1_0,4_3_0,4_0_0 -17155,0,62.0,0.0,9,111,0.0,0.0,0.0,42,34,0.0,0.0,0.0,1933.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,5.0,1,2010.0,6,126791,2,1,1,0,1,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,449.653862726277,0.0,81267.66679098045,1,1,5,0,120.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02378559735167068,54178.4445273203,10,5,10,10_1,10_2,10_0_0 -17156,2,76.0,0.0,2,111,397.0,1776.0,0.0,75,74,0.0,0.0,548.7231683476444,2173.0,0.0,3221.047551905069,70,0,0,0,0,0,0,0,0,0,,1,,2,121563,2,2,3,0,1,,544.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,508.536741131279,397.0,85142.19878279869,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025522009427351222,56761.46585519912,10,5,10,10_1,10_3,10_0_1 -17157,2,43.0,0.0,5,111,405.0,1525.0,0.0,47,54,0.0,0.0,559.7805621682519,1930.0,0.0,2765.8206737923597,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,124465,2,1,2,0,1,,452.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,272.261930698443,405.0,50332.42267061611,1,1,1,2,99.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03834506462425317,20132.969068246446,5,3,5,5_1,5_3,5_0_0 -17158,1,23.0,377.0,9,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1109.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,2009.0,6,106160,1,2,0,0,1,,356.0,530.0,32,1.0,0.0,2.0,2.0,1.3,3,2,73.6966272859228,0.0,8862.862259871381,0,4,2,3,43.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12512887682134574,6817.586353747216,1,1,1_1,1_0_1,1_3_1,1_0_0 -17159,2,42.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,2735.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,132153,2,1,3,0,1,,143.0,,32,1.0,0.0,6.0,3.0,1.6,5,3,502.141609351819,0.0,73446.37994992512,0,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03723805042351565,45903.9874687032,10,5,10,10_1,10_3,10_0_1 -17160,2,33.0,0.0,9,111,1760.0,0.0,0.0,46,67,0.0,517.5862524097289,2432.626640533638,2260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,103631,2,1,1,0,1,,650.0,,43,2.0,0.0,6.0,5.0,2.4,2,1,237.055073550588,1760.0,43170.39978462634,1,1,1,2,155.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0523506849895984,17987.66657692764,4,2,4_0,4_1_0,4_3_0,4_0_0 -17161,2,34.0,0.0,1,111,794.0,857.0,0.0,42,64,0.0,51.75862524097289,1097.446336695289,1701.0,0.0,1554.3005360262637,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,103006,1,1,2,0,1,,629.0,,43,2.0,0.0,3.0,4.0,2.1,3,2,368.041164577201,794.0,33494.144978268436,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05078499544035644,15949.592846794492,3,2,3_0,3_1_0,3_3_0,3_1_0 -17162,1,29.0,401.0,9,111,2244.0,0.0,0.0,85,63,0.0,0.0,3101.598966680388,2244.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,117681,2,1,1,0,1,,880.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,262.069448799369,2244.0,23319.472780035107,6,4,1,2,127.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09622859063611393,8636.841770383373,1,1,1_1,1_1_1,1_3_1,1_0_0 -17163,2,40.0,0.0,1,111,325.0,808.0,0.0,47,38,0.0,0.0,449.20662396217745,1133.0,0.0,1465.4315438847386,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,120742,1,2,1,0,1,,339.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,379.706574395493,325.0,61631.590743826375,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01838342944463903,41087.72716255092,9,5,9,9_1,9_3,9_1_0 -17164,2,29.0,0.0,9,111,2270.0,0.0,0.0,31,47,0.0,0.0,3137.5354965973625,2270.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,105652,1,1,1,0,1,,242.0,870.0,43,2.0,0.0,4.0,2.0,1.5,2,1,210.814348816672,2270.0,45400.616545967256,1,1,2,3,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04999932099383867,30267.077697311503,8,4,8,8_1,8_3,8_0_0 -17165,2,46.0,0.0,6,111,568.0,1520.0,0.0,46,37,0.0,0.0,785.0749612631286,2088.0,0.0,2756.752409288122,71,0,0,0,0,0,0,0,0,0,,1,,4,126311,2,1,2,0,1,,599.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,482.483772810196,568.0,86622.96792628891,4,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024104461553161816,34649.187170515565,9,5,9,9_1,9_3,9_0_0 -17166,0,84.0,0.0,1,111,360.0,1100.0,0.0,0,86,0.0,0.0,497.582721927335,1460.0,0.0,1995.0181909321939,50,2,2,2,1,2,2,2,2,0,,1,,1,113034,2,2,1,0,1,,400.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,276.686216242953,360.0,21989.665292481404,0,5,5,0,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06639482595941085,21989.665292481404,6,3,6,6_1,6_3,6_1_0 -17167,1,41.0,369.0,9,111,299.0,550.0,0.0,0,63,0.0,0.0,413.2700940452032,849.0,0.0,997.5090954660969,50,0,0,0,0,0,0,0,0,0,,2,2012.0,6,105082,2,1,0,0,1,,280.0,409.0,32,1.0,0.0,2.0,2.0,1.5,2,2,32.3566501735343,299.0,5608.2723665785925,0,4,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15138351786540366,3738.8482443857283,1,1,1_1,1_0_1,1_2_1,1_0_0 -17168,2,65.0,0.0,7,111,753.0,1245.0,0.0,77,77,0.0,0.0,1040.7771933646757,1998.0,0.0,2257.997861555074,71,0,0,0,0,0,0,0,0,0,,1,,5,101316,2,1,2,0,1,,327.0,,41,0.0,2.0,6.0,3.0,2.0,2,2,490.545178289407,753.0,71055.53788545428,5,5,0,1,147.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02811884983857126,35527.76894272714,9,5,9,9_1,9_3,9_0_0 -17169,2,27.0,0.0,1,111,480.0,1750.0,0.0,63,63,0.0,0.0,663.4436292364467,2230.0,0.0,3173.8925764830356,60,2,2,2,1,2,2,2,2,2,5.0,1,,1,124961,2,2,5,0,1,,360.0,477.0,43,2.0,0.0,4.0,3.0,1.8,2,2,195.885111582799,480.0,35609.289516886216,4,1,2,3,74.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06262410821037347,19782.938620492343,5,3,5,5_1,5_3,5_1_0 -17170,2,26.0,0.0,9,111,1000.0,0.0,0.0,67,43,0.0,517.5862524097289,1382.1742275759307,1500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,104841,2,1,1,0,1,,360.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,76.5563288299893,1000.0,39763.918292457936,1,1,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03772264063535476,26509.278861638624,7,4,7,7_1,7_3,7_0_0 -17171,2,54.0,0.0,9,111,1850.0,0.0,0.0,0,77,0.0,0.0,2557.0223210154713,1850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,110594,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,562.08346562491,1850.0,21960.857951036778,0,5,0,1,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08424078895845966,21960.857951036778,6,3,6,6_0,6_3,6_0_0 -17172,1,45.0,90.0,9,111,500.0,700.0,0.0,0,52,0.0,0.0,691.0871137879653,1200.0,0.0,1269.5570305932142,50,2,2,2,2,1,2,2,2,2,20.0,1,2006.0,6,107759,1,3,1,0,1,,500.0,760.0,32,1.0,0.0,5.0,4.0,2.5,2,2,414.779123188238,500.0,35995.53119211717,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.03333747163211176,14398.212476846868,3,2,3_1,3_1_1,3_3_1,3_0_0 -17173,2,61.0,0.0,2,111,181.0,133.0,0.0,0,52,0.0,0.0,250.17353519124345,314.0,0.0,241.2158358127107,10,2,1,2,1,2,2,2,2,3,20.0,2,,2,130248,1,1,0,1,1,1050.0,0.0,309.0,12,1.0,2.0,4.0,1.0,1.0,1,1,173.77529845991,181.0,30115.23085624993,0,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010426617730371287,30115.23085624993,8,4,8,8_0,8_2,8_0_1 -17174,1,32.0,434.0,9,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1139.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,132973,2,1,1,0,1,,647.0,484.0,32,1.0,0.0,4.0,3.0,1.6,2,1,1630.91654837642,0.0,12894.278489669488,0,1,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08833375212987161,8058.92405604343,1,1,1_1,1_1_1,1_3_1,1_0_0 -17175,2,23.0,0.0,9,111,0.0,0.0,0.0,46,43,0.0,0.0,0.0,1144.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,129302,1,1,0,0,1,,0.0,790.0,43,2.0,0.0,3.0,2.0,1.5,2,2,524.520808990437,0.0,9944.702474616908,1,1,2,3,65.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1150361212836656,6629.801649744605,1,1,1_0,1_0_0,1_3_0,1_0_0 -17176,2,43.0,0.0,9,111,739.0,0.0,0.0,85,31,0.0,301.23519890246223,1021.4267541786127,1030.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,128541,2,1,1,0,1,,216.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,320.808207729734,739.0,95560.19662780284,6,1,1,2,173.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010778546260340425,45504.85553704897,10,5,10,10_1,10_3,10_0_0 -17177,2,41.0,0.0,2,111,500.0,1800.0,0.0,37,37,0.0,0.0,691.0871137879653,2300.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,106864,2,1,2,0,1,,250.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,482.483772810196,500.0,249812.17698492878,1,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00920691708370469,118958.17951663275,10,5,10,10_1,10_3,10_0_1 -17178,1,33.0,400.0,9,112,1169.0,0.0,0.0,85,64,0.0,258.79312620486445,1615.7616720362628,1419.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,122120,2,1,1,0,1,,500.0,,42,1.0,0.0,5.0,7.0,2.9999999999999996,1,1,272.85171342158,1169.0,14628.160675500727,6,4,1,2,130.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09700467690217159,4876.053558500243,1,1,1_1,1_1_1,1_0_1,1_0_0 -17179,2,58.0,0.0,1,111,2052.0,0.0,0.0,0,43,0.0,0.0,2836.2215149858093,2052.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,106699,2,1,2,0,1,,230.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,432.300666242053,2052.0,35192.27767350211,0,1,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.058308246457859855,35192.27767350211,9,5,9,9_1,9_3,9_1_0 -17180,1,25.0,117.0,9,120,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1153.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,117116,2,1,1,0,1,,237.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,141.893984340863,0.0,32379.347004779287,1,1,2,3,90.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03560911836269625,21586.231336519526,6,3,6,6_1,6_0,6_0_0 -17181,2,26.0,0.0,5,111,0.0,0.0,0.0,84,43,0.0,0.0,0.0,991.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,13.0,2,,3,113872,2,3,0,0,1,,116.0,500.0,42,1.0,0.0,2.0,2.0,1.5,2,2,869.763875505486,0.0,24590.956061682387,3,1,2,3,34.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04029936849605354,16393.97070778826,4,2,4_0,4_0_0,4_3_0,4_0_0 -17182,1,45.0,115.0,9,120,947.0,0.0,0.0,69,62,0.0,31.055175144583732,1308.9189935144063,1067.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,13.0,1,2012.0,6,124771,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,155.377621507893,947.0,31291.098505614114,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03409915442273666,11175.392323433613,2,1,2_1,2_1_1,2_0_1,2_0_0 -17183,2,33.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2432.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,106603,2,1,0,1,1,,0.0,67.0,32,1.0,0.0,4.0,4.0,1.9,2,2,733.976745725103,0.0,12250.176722983593,0,4,3,4,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1985277482109396,6447.46143314926,1,1,1_0,1_0_0,1_3_0,1_0_0 -17184,2,61.0,0.0,2,111,415.0,73.0,0.0,0,78,0.0,0.0,573.6023044440112,488.0,0.0,132.39666176186378,31,0,0,0,0,0,0,0,0,0,,2,,2,108599,1,2,0,1,1,813.0,272.0,326.0,11,0.0,2.0,3.0,1.0,1.0,2,2,166.153643031884,415.0,27810.13162430543,0,5,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017547561679769216,27810.13162430543,7,4,7,7_0,7_2,7_0_1 -17185,1,45.0,75.0,9,111,1850.0,0.0,0.0,56,63,0.0,0.0,2557.0223210154713,1850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,123027,2,1,1,0,1,,330.0,,43,2.0,2.0,4.0,3.0,2.0,2,2,114.119085621804,1850.0,24555.777246568236,1,4,1,2,86.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07533868634756999,12277.888623284118,2,1,2_1,2_1_1,2_3_1,2_0_0 -17186,2,25.0,0.0,2,111,135.0,64.0,0.0,0,53,0.0,0.0,186.5935207227506,199.0,0.0,116.07378565423673,42,0,0,0,0,0,0,0,0,0,,2,,2,101490,2,1,0,1,1,300.0,0.0,241.0,12,1.0,0.0,2.0,1.0,1.0,3,3,522.341688135092,135.0,14106.05359509019,0,1,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014107418397252137,14106.05359509019,3,2,3_0,3_0_0,3_3_0,3_0_1 -17187,2,25.0,0.0,6,112,1700.0,0.0,0.0,54,62,0.0,207.03450096389156,2349.696186879082,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,125867,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,234.382874439186,1700.0,41011.19035681629,1,1,1,2,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046328818633868535,27340.79357121086,7,4,7,7_1,7_0,7_0_0 -17188,2,43.0,0.0,5,111,0.0,0.0,0.0,43,64,0.0,0.0,0.0,2516.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,128523,2,1,1,0,1,,336.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,2,2,521.873896602375,0.0,53506.3930716113,1,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04702241836097349,18450.48036952114,4,2,4_0,4_1_0,4_3_0,4_0_0 -17189,1,23.0,366.0,2,111,250.0,400.0,0.0,85,67,0.0,0.0,345.54355689398267,650.0,0.0,725.4611603389795,70,2,1,2,2,1,2,2,2,2,10.0,2,,2,118935,2,3,0,0,1,,0.0,344.0,42,1.0,0.0,3.0,3.0,1.8,1,1,176.263130791169,250.0,14148.476810143766,6,1,2,3,69.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04594134115793877,7860.2648945243145,1,1,1_1,1_0_1,1_2_1,1_0_1 -17190,1,34.0,243.0,9,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1124.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,123964,2,1,1,0,1,,165.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,149.590586365299,0.0,22420.9378499214,6,1,1,2,95.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05013171204182881,9342.05743746725,1,1,1_1,1_1_1,1_2_1,1_0_0 -17191,2,78.0,0.0,5,111,152.0,58.0,0.0,0,77,0.0,0.0,210.09048259154144,210.0,0.0,105.19186824915204,50,0,0,0,0,0,0,0,0,0,,2,,3,130724,1,1,0,1,1,583.0,120.0,315.0,11,0.0,1.0,3.0,1.0,1.0,2,2,464.451697045312,152.0,17555.46389883128,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011962087769949522,17555.46389883128,4,2,4_0,4_0_0,4_3_0,4_0_0 -17192,2,81.0,0.0,2,111,326.0,935.0,0.0,0,75,0.0,0.0,450.58879818975333,1261.0,0.0,1695.7654622923646,70,2,2,2,2,1,2,2,2,0,,1,,2,114498,2,1,2,0,2,,150.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,548.846302337459,326.0,26584.395025533246,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0474338422517744,26584.395025533246,7,4,7,7_1,7_3,7_0_1 -17193,1,54.0,271.0,2,111,0.0,0.0,350.0,0,85,0.0,0.0,178.81966719313377,350.0,0.0,400.136021128421,60,0,0,0,0,0,0,0,0,0,,2,,2,128601,2,2,0,1,1,815.0,300.0,370.0,11,0.0,3.0,4.0,1.0,1.0,2,2,198.031269023016,0.0,11314.76001495971,0,6,2,3,78.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03093304670512239,11314.76001495971,2,1,2_1,2_0_1,2_2_1,2_0_1 -17194,2,24.0,0.0,2,111,50.0,42.0,0.0,0,53,0.0,0.0,69.10871137879653,92.0,0.0,76.17342183559285,50,0,0,0,0,0,0,0,0,0,,2,,2,132734,1,1,0,1,2,439.0,374.0,202.0,12,1.0,0.0,2.0,1.0,1.0,3,3,464.226757998687,50.0,17569.294862240524,0,1,2,3,44.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005236408217937308,17569.294862240524,4,2,4_0,4_0_0,4_3_0,4_0_1 -17195,1,51.0,323.0,5,111,384.0,0.0,0.0,85,67,0.0,0.0,530.7549033891573,504.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,126919,1,1,0,1,1,970.0,0.0,420.0,42,1.0,2.0,4.0,4.0,2.3,1,1,197.902039084384,384.0,16497.70566568964,6,1,2,3,70.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030549702498825115,7172.915506821582,1,1,1_1,1_0_1,1_2_1,1_0_0 -17196,1,48.0,109.0,2,111,450.0,105.0,0.0,0,56,0.0,0.0,621.9784024091688,555.0,0.0,190.43355458898213,50,0,0,0,0,0,0,0,0,0,,2,,2,103206,2,1,0,1,1,645.0,755.0,297.0,32,2.0,2.0,4.0,2.0,1.5,2,2,466.456990394392,450.0,23422.71396747959,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02369494844920915,15615.142644986394,3,2,3_1,3_0_1,3_3_1,3_0_1 -17197,1,25.0,179.0,2,111,250.0,700.0,0.0,0,55,0.0,0.0,345.54355689398267,950.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,133386,2,1,0,0,1,,500.0,242.0,12,1.0,0.0,2.0,1.0,1.0,3,2,229.397296401499,250.0,4561.976290812959,0,4,2,3,50.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2082430813840786,4561.976290812959,1,1,1_1,1_0_1,1_2_1,1_0_1 -17198,2,81.0,0.0,9,111,0.0,0.0,0.0,90,77,0.0,0.0,0.0,1921.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,130020,2,1,1,0,1,,442.0,,41,1.0,0.0,4.0,3.0,2.0,2,2,215.704326178563,0.0,33617.124764893364,5,5,1,2,80.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05714349497272045,16808.562382446682,4,2,4_0,4_1_0,4_3_0,4_0_0 -17199,1,38.0,200.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,426.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128104,2,1,0,1,2,170.0,0.0,250.0,12,1.0,0.0,1.0,1.0,1.0,2,2,679.94761839109,0.0,985.4799287875253,0,4,3,4,10.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.4322766882975735,985.4799287875253,1,1,1_1,1_0_1,1_3_1,1_0_1 -17200,2,41.0,0.0,9,112,0.0,0.0,3000.0,85,46,0.0,838.4897289037608,1532.740004512575,3810.0,0.0,3429.737323957894,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,107200,2,1,1,0,1,,600.0,,42,1.0,0.0,7.0,4.0,2.3,2,2,382.873841146194,0.0,429206.9591775227,6,1,1,2,188.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008876836497015326,186611.72138153162,10,5,10,10_1,10_1,10_0_0 -17202,2,36.0,0.0,7,111,706.0,0.0,0.0,54,62,0.0,579.6966026988963,975.815004668607,1266.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,110903,2,1,1,0,1,,267.0,,43,2.0,0.0,4.0,3.0,1.8,4,3,67.9864121163245,706.0,32472.524634830326,1,1,1,2,156.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0389868054374213,18040.291463794627,4,2,4_0,4_1_0,4_3_0,4_0_0 -17204,1,78.0,197.0,7,111,400.0,0.0,0.0,0,72,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119246,2,1,1,1,1,430.0,316.0,384.0,11,0.0,5.0,3.0,1.0,1.0,2,2,176.569115711369,400.0,11773.590683768507,0,5,2,3,50.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03397434230081179,11773.590683768507,2,1,2_1,2_1_1,2_2_1,2_0_0 -17205,2,74.0,0.0,2,111,516.0,0.0,0.0,0,77,5974.339508072003,0.0,713.2019014291802,4516.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107653,2,2,1,0,2,,160.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,522.678090395848,516.0,30218.638685269565,0,5,0,1,130.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14944419062137893,30218.638685269565,8,4,8,8_1,8_3,8_0_1 -17206,2,36.0,0.0,9,111,864.0,0.0,0.0,54,31,0.0,31.055175144583732,1194.198532625604,894.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,132743,2,1,1,0,1,,130.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,288.150170916599,864.0,84693.39807581452,1,1,1,2,155.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010555722409434122,47051.887819896954,10,5,10,10_1,10_3,10_0_0 -17207,2,45.0,0.0,2,111,314.0,0.0,0.0,0,52,0.0,0.0,434.0027074588422,633.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,2,118253,2,2,0,1,1,420.0,0.0,386.0,32,1.0,0.0,3.0,2.0,1.5,5,4,472.27459207912,314.0,23651.315843979875,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02676383860313301,15767.543895986584,3,2,3_0,3_0_0,3_3_0,3_0_1 -17208,1,69.0,57.0,6,111,230.0,0.0,0.0,0,77,0.0,0.0,317.900072342464,230.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,106742,2,2,0,1,1,452.0,192.0,305.0,11,0.0,2.0,3.0,1.0,1.0,1,1,232.876199317051,230.0,12913.141847069684,0,5,2,3,70.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017811312128673998,12913.141847069684,2,1,2_1,2_0_1,2_2_1,2_0_0 -17209,1,35.0,276.0,9,111,1500.0,0.0,0.0,85,21,0.0,207.03450096389156,2073.261341363896,1700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2012.0,6,110670,2,1,1,0,1,,360.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,314.726352867347,1500.0,3918.764554900866,7,4,1,2,70.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.43381019098837015,2612.5097032672443,1,1,1_1,1_1_1,1_2_1,1_0_0 -17210,2,34.0,0.0,6,111,370.0,547.0,0.0,90,63,0.0,0.0,511.40446420309434,917.0,0.0,992.0681367635545,50,0,0,0,0,0,0,0,0,0,,2,,4,108793,2,1,0,1,1,673.0,0.0,380.0,43,2.0,0.0,3.0,2.0,1.5,3,3,416.920614437939,370.0,39511.401658508454,1,1,2,3,67.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023208490752251804,26340.934439005636,7,4,7,7_0,7_3,7_0_0 -17211,1,41.0,377.0,2,111,215.0,272.0,0.0,0,67,0.0,0.0,297.16745892882506,487.0,0.0,493.3135890305061,50,0,0,0,0,0,0,0,0,0,,2,,2,122828,1,1,0,0,1,,0.0,385.0,32,1.0,1.0,4.0,3.0,1.8,2,2,192.920880390039,215.0,9880.131966420933,0,4,2,3,74.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049290839601651114,5488.962203567185,1,1,1_1,1_0_1,1_2_1,1_0_1 -17212,2,73.0,0.0,2,111,2282.0,0.0,0.0,0,75,0.0,0.0,3154.1215873282736,2282.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,125124,2,1,2,0,1,,549.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,526.228394087807,2282.0,38163.0345989831,0,5,0,1,127.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05979608340844066,38163.0345989831,9,5,9,9_1,9_3,9_0_1 -17213,1,35.0,397.0,7,111,0.0,0.0,1224.0,0,81,0.0,0.0,625.3579218411306,1224.0,0.0,1399.3328281748209,31,0,0,0,0,0,0,0,0,0,,2,,5,117636,1,2,0,0,1,,0.0,341.0,32,1.0,1.0,3.0,5.0,2.2,1,1,205.284837435735,0.0,13491.147909967845,0,4,2,3,64.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09072615674872675,6132.339959076293,1,1,1_1,1_0_1,1_2_1,1_0_0 -17214,1,26.0,191.0,5,111,560.0,0.0,0.0,56,63,0.0,0.0,774.0175674425211,560.0,0.0,0.0,31,1,2,2,2,1,2,2,2,3,30.0,2,,3,131534,1,1,0,1,1,420.0,0.0,420.0,43,2.0,0.0,4.0,4.0,2.1,3,2,370.875085562775,560.0,20412.52120686067,4,1,2,3,85.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.027434141737071822,9720.248193743177,1,1,1_1,1_0_1,1_3_1,1_0_0 -17215,2,49.0,0.0,2,111,0.0,0.0,1050.0,0,63,0.0,0.0,536.4590015794013,1050.0,0.0,1200.4080633852632,20,0,0,0,0,0,0,0,0,0,,2,,2,101400,1,2,0,0,1,,0.0,394.0,32,2.0,5.0,4.0,2.0,1.5,1,1,195.540255920322,0.0,22673.91118193034,0,1,2,3,75.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04630872863420154,15115.94078795356,3,2,3_0,3_0_0,3_2_0,3_0_1 -17216,2,37.0,0.0,9,111,1215.0,0.0,0.0,52,52,0.0,0.0,1679.3416865047557,1215.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,107531,2,1,1,0,1,,300.0,720.0,43,2.0,0.0,4.0,4.0,2.1,1,1,269.943336339713,1215.0,40198.90881817629,1,1,2,3,96.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030224701011053987,19142.3375324649,5,3,5,5_1,5_3,5_0_0 -17217,1,35.0,270.0,5,111,200.0,203.0,0.0,0,52,0.0,0.0,276.4348455151861,403.0,0.0,368.1715388720321,44,2,1,2,2,1,2,1,2,0,,2,,3,124415,1,3,0,1,1,399.0,0.0,348.0,32,1.0,1.0,3.0,2.0,1.3,2,2,409.885749211003,200.0,6608.370510396975,0,4,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.060983263478637965,5083.361931074596,1,1,1_1,1_0_1,1_3_1,1_0_0 -17218,2,32.0,0.0,2,111,300.0,700.0,0.0,0,62,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,10,2,2,2,2,2,2,2,1,2,10.0,2,,2,113679,1,1,0,0,1,,0.0,314.0,12,1.0,1.0,3.0,1.0,1.0,2,2,202.743978220866,300.0,24362.108710341716,0,1,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.041047349878030055,24362.108710341716,7,4,7,7_0,7_2,7_0_1 -17219,2,34.0,0.0,9,111,1200.0,0.0,0.0,52,55,0.0,388.18968930729665,1658.6090730911167,1575.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,111750,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,5,3,167.339228808067,1200.0,38077.73403682525,1,1,1,2,129.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041362755422284486,18132.254303250116,4,2,4_0,4_1_0,4_3_0,4_0_0 -17220,1,44.0,430.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1531.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,129304,2,1,0,1,1,1330.0,0.0,403.0,32,3.0,0.0,5.0,7.0,3.8,2,2,521.096468057176,0.0,27489.0,0,1,2,3,92.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05569500527483721,7233.947368421053,1,1,1_1,1_0_1,1_3_1,1_0_0 -17221,1,36.0,438.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,446.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130601,2,1,0,1,1,916.0,0.0,395.0,42,1.0,1.0,4.0,5.0,2.5999999999999996,2,2,452.591940290261,0.0,8222.906338327271,7,4,2,3,79.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05423873040133966,3162.6562839720277,1,1,1_1,1_0_1,1_3_1,1_0_1 -17222,1,27.0,153.0,5,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,271.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,111926,1,1,0,0,1,,0.0,402.0,43,2.0,0.0,3.0,2.0,1.5,2,2,191.033780158296,0.0,20234.157625215656,4,1,2,3,79.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013393194074078074,13489.438416810437,3,2,3_1,3_0_1,3_2_1,3_0_0 -17223,1,34.0,50.0,9,111,2500.0,0.0,0.0,85,62,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,102639,2,1,1,0,1,,650.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,173.652248319289,2500.0,36018.97246419954,6,1,1,2,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.069407865604296,15007.905193416476,3,2,3_1,3_1_1,3_3_1,3_0_0 -17224,1,30.0,125.0,5,111,192.0,0.0,0.0,0,52,0.0,0.0,265.37745169457867,192.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,3,132039,2,2,0,1,1,600.0,0.0,392.0,32,1.0,0.0,3.0,2.0,1.3,1,1,409.885749211003,192.0,19700.81940880842,0,1,2,3,79.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00974578752364762,15154.47646831417,3,2,3_1,3_0_1,3_3_1,3_0_0 -17225,2,57.0,0.0,2,111,500.0,0.0,0.0,0,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,1,2,2,2,2,2,2,1,2,2.0,2,,2,111656,1,2,0,0,1,,127.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,223.245447388481,500.0,32765.779692866716,0,1,1,2,75.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015259823043638808,32765.779692866716,8,4,8,8_0,8_2,8_0_1 -17226,2,27.0,0.0,9,120,1400.0,0.0,0.0,42,38,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,112408,2,1,1,0,1,,283.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,136.57851037902,1400.0,48744.7997754754,1,1,1,2,130.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028721012424885808,32496.53318365027,8,4,8,8_1,8_0,8_0_0 -17227,1,52.0,186.0,5,111,156.0,0.0,0.0,0,43,0.0,0.0,215.61917950184517,231.0,129.02452531426437,0.0,60,2,1,2,2,2,2,2,1,0,,2,,3,103861,1,3,0,1,2,480.0,0.0,300.0,12,1.0,0.0,3.0,1.0,1.0,2,2,394.812303714185,156.0,6924.848439946703,0,4,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.033358130795679605,6924.848439946703,1,1,1_1,1_0_1,1_3_1,1_0_0 -17228,1,88.0,244.0,2,111,260.0,730.0,0.0,0,86,0.0,0.0,359.36529916974195,990.0,0.0,1323.9666176186377,50,0,0,0,0,0,0,0,0,0,,2,,2,107334,2,1,0,0,1,,0.0,268.0,11,0.0,4.0,3.0,1.0,1.0,4,2,202.743978220866,260.0,9780.125437860306,0,6,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10122569554860351,9780.125437860306,2,1,2_1,2_0_1,2_2_1,2_0_1 -17229,1,26.0,50.0,9,111,1600.0,0.0,0.0,43,43,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2012.0,6,128632,2,1,0,0,1,,600.0,645.0,43,2.0,0.0,3.0,3.0,1.8,3,2,34.3346444425684,1600.0,33019.32715759346,1,4,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.048456468914813956,18344.07064310748,4,2,4_1,4_0_1,4_2_1,4_0_0 -17230,1,27.0,377.0,5,111,222.0,1070.0,0.0,0,55,0.0,0.0,306.84267852185656,1292.0,0.0,1940.6086039067702,31,0,0,0,0,0,0,0,0,3,15.0,2,,3,127366,1,3,0,0,1,,0.0,449.0,32,1.0,0.0,3.0,2.0,1.3,2,2,477.165188242339,222.0,11684.335282993854,0,1,2,3,73.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11057539592179123,8987.95021768758,1,1,1_1,1_0_1,1_3_1,1_0_0 -17231,1,87.0,138.0,2,111,114.0,80.0,0.0,0,78,0.0,522.7621149338262,157.56786194365608,699.0,0.0,145.09223206779592,43,0,0,0,0,0,0,0,0,0,,2,,2,108845,1,1,0,1,1,505.0,0.0,326.0,11,0.0,1.0,3.0,1.0,1.0,1,1,173.77529845991,114.0,13513.360128617363,0,5,2,3,61.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.051726587121712346,13513.360128617363,3,2,3_1,3_0_1,3_2_1,3_0_1 -17232,2,33.0,0.0,9,112,1200.0,0.0,0.0,69,11,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,30,0,0,0,0,0,0,0,0,0,,1,2011.0,6,112748,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,142.386921442506,1200.0,30356.092286413535,1,1,1,2,135.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04348385778859922,14455.282041149301,3,2,3_0,3_1_0,3_0_0,3_0_0 -17233,2,33.0,0.0,5,111,700.0,0.0,0.0,42,46,0.0,0.0,967.5219593031513,700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,130250,1,2,0,1,1,870.0,0.0,675.0,43,2.0,0.0,3.0,2.0,1.5,4,4,474.582027395026,700.0,33218.659552810306,1,1,2,3,72.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021072493876134742,22145.773035206872,6,3,6,6_0,6_3,6_0_0 -17234,1,54.0,221.0,2,111,0.0,0.0,1099.0,0,78,0.0,0.0,561.4937549864401,1099.0,0.0,1256.427106343242,71,2,2,2,2,1,2,2,2,0,,2,,2,128565,1,2,0,0,1,,0.0,207.0,11,0.0,4.0,1.0,1.0,1.0,2,2,266.435931187483,0.0,10659.38180919742,0,7,2,3,30.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10310166383680248,10659.38180919742,2,1,2_1,2_0_1,2_2_1,2_0_1 -17235,2,62.0,0.0,2,111,589.0,0.0,0.0,77,75,0.0,0.0,814.1006200422231,589.0,0.0,0.0,20,1,2,2,2,1,2,2,2,0,,2,,2,130750,2,1,0,1,1,,0.0,,41,0.0,0.0,4.0,4.0,2.5,2,2,426.769243738017,589.0,26980.21350952308,5,5,0,1,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021830813154688468,10792.085403809233,2,1,2_0,2_0_0,2_3_0,2_0_1 -17236,2,68.0,0.0,2,111,330.0,730.0,0.0,78,78,0.0,0.0,456.1174951000571,1060.0,0.0,1323.9666176186377,20,0,0,0,0,0,0,0,0,0,,1,,2,131514,2,2,5,0,1,,216.0,353.0,41,0.0,3.0,5.0,2.0,1.5,2,2,163.922124348766,330.0,24185.22062299802,6,5,2,3,75.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0438284196999234,16123.480415332013,4,2,4_0,4_1_0,4_2_0,4_0_1 -17237,2,27.0,0.0,9,112,0.0,0.0,0.0,42,42,0.0,0.0,0.0,980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,114567,2,2,1,0,1,,449.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,229.021174688335,0.0,23266.871793393493,1,1,1,2,105.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04211997249575535,15511.24786226233,3,2,3_0,3_1_0,3_0_0,3_0_0 -17238,1,40.0,280.0,5,111,250.0,0.0,0.0,85,53,0.0,0.0,345.54355689398267,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,101085,2,3,0,1,1,729.0,0.0,478.0,42,1.0,0.0,4.0,4.0,2.1,2,2,447.370211491756,250.0,20816.49029902982,6,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012009709437505494,9912.614428109438,2,1,2_1,2_0_1,2_3_1,2_0_0 -17239,2,59.0,0.0,9,111,1100.0,0.0,0.0,78,78,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,105217,2,1,1,0,1,,326.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,270.893201392718,1100.0,29638.27499549473,6,5,1,2,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03711417078649852,19758.849996996487,5,3,5,5_1,5_2,5_0_0 -17240,1,47.0,106.0,2,111,0.0,0.0,1370.0,56,64,0.0,0.0,699.9512687274093,1370.0,0.0,1566.246711274105,50,2,2,2,1,1,2,2,2,0,,2,,2,129577,1,2,0,0,1,,0.0,546.0,43,3.0,2.0,4.0,5.0,3.0,2,2,441.470522769277,0.0,36000.15495760301,1,1,2,3,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0380553917507698,12000.051652534336,2,1,2_1,2_0_1,2_3_1,2_0_1 -17241,2,35.0,0.0,2,112,400.0,850.0,0.0,46,37,0.0,0.0,552.8696910303722,1250.0,0.0,1541.6049657203316,33,0,0,0,0,0,0,0,0,2,40.0,1,,2,131495,2,1,2,0,1,,632.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,628.583279728483,400.0,77666.61456404191,1,1,1,2,111.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016094431397795532,36984.10217335329,9,5,9,9_1,9_1,9_0_1 -17242,1,34.0,606.0,2,111,420.0,1020.0,0.0,85,67,0.0,0.0,580.5131755818909,1440.0,0.0,1849.925958864398,60,0,0,0,0,0,0,0,0,0,,2,,2,111955,1,3,0,0,1,,0.0,588.0,42,1.0,0.0,9.0,7.0,3.1999999999999993,3,3,221.730412444761,420.0,17907.30483525176,6,4,2,3,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08041411107076599,5596.032761016177,1,1,1_1,1_0_1,1_2_1,1_0_1 -17243,2,79.0,0.0,1,112,730.0,1632.0,0.0,75,75,0.0,0.0,1008.9871861304293,2362.0,0.0,2959.881534183037,31,0,0,0,0,0,0,0,0,0,,1,,1,125163,2,1,1,0,1,,324.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,502.341708345939,730.0,18265.078687246543,5,5,0,1,70.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12931781135162856,12176.719124831028,2,1,2_0,2_1_0,2_1_0,2_1_0 -17244,2,51.0,0.0,2,111,699.0,584.0,0.0,85,62,0.0,558.9931526025072,966.1397850755754,1823.0,0.0,1059.1732940949103,70,0,0,0,0,0,0,0,0,0,,1,,2,100608,1,1,1,0,1,,330.0,,42,1.0,1.0,6.0,3.0,2.0,1,1,180.337006160273,699.0,32990.39448920934,6,1,1,2,61.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05525850867276763,16495.19724460467,4,2,4_0,4_1_0,4_2_0,4_0_1 -17245,2,62.0,0.0,9,111,0.0,0.0,0.0,77,72,0.0,0.0,0.0,3773.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2013.0,6,112181,2,1,1,0,1,,215.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,263.601352616997,0.0,20810.24281215018,6,5,0,1,128.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1813049484361188,13873.49520810012,3,2,3_0,3_1_0,3_2_0,3_0_0 -17246,2,30.0,0.0,1,112,1500.0,2500.0,0.0,54,47,0.0,207.03450096389156,2073.261341363896,4200.0,0.0,4534.132252118622,12,2,2,1,1,2,2,2,2,0,,1,,1,122643,2,1,1,0,1,,780.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,588.176085268871,1500.0,51490.40130242297,1,1,1,2,115.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08156860101617351,21454.333876009572,6,3,6,6_1,6_1,6_1_0 -17247,2,44.0,0.0,1,111,650.0,1500.0,0.0,43,43,0.0,310.55175144583734,898.4132479243549,2450.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,104461,2,1,4,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,175.131217585077,650.0,46699.86563457321,1,1,1,2,120.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05246267771242145,16678.523440919005,4,2,4_0,4_1_0,4_2_0,4_1_0 -17248,2,29.0,0.0,9,111,0.0,0.0,0.0,42,48,0.0,0.0,0.0,3656.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,125992,2,1,1,0,1,,524.0,,43,2.0,0.0,6.0,3.0,1.8,4,4,248.429915901365,0.0,49088.73350649035,1,1,1,2,126.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07447737472217766,27271.51861471686,7,4,7,7_1,7_3,7_0_0 -17249,2,64.0,0.0,6,112,1175.0,0.0,0.0,77,74,0.0,0.0,1624.0547174017183,1235.0,103.2196202514115,0.0,50,2,2,1,2,2,2,2,1,0,,1,,4,123882,2,2,2,0,1,,235.0,,41,0.0,4.0,5.0,2.0,1.5,3,3,638.89819377152,1175.0,40004.21291925052,5,5,0,1,116.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03087174849541166,26669.475279500348,7,4,7,7_1,7_1,7_0_0 -17250,2,59.0,0.0,2,111,660.0,1000.0,0.0,0,63,0.0,0.0,912.2349902001142,1660.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,116916,2,1,2,0,2,,120.0,370.0,12,1.0,0.0,5.0,1.0,1.0,2,2,178.575645630609,660.0,24606.81336438083,0,1,2,3,92.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06746099039394124,24606.81336438083,7,4,7,7_1,7_2,7_0_1 -17251,2,46.0,0.0,9,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,668.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,2013.0,6,126850,2,1,0,0,1,,303.0,550.0,12,1.0,3.0,4.0,1.0,1.0,4,2,916.201802659511,0.0,17990.79112670556,0,1,2,3,80.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0371301070250557,17990.79112670556,4,2,4_0,4_0_0,4_2_0,4_0_0 -17252,1,35.0,208.0,2,112,360.0,634.0,0.0,0,52,0.0,0.0,497.582721927335,1026.0,55.050464134086134,1149.8559391372826,41,0,0,0,0,0,0,0,0,2,3.0,2,,2,126244,2,2,0,1,1,840.0,0.0,346.0,32,1.0,0.0,4.0,3.0,1.6,2,2,603.233903766704,360.0,26403.64201049217,0,1,2,3,79.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038858275672435355,16502.276256557605,4,2,4_1,4_0_1,4_1_1,4_0_1 -17253,2,74.0,0.0,5,111,200.0,528.0,0.0,0,77,0.0,0.0,276.4348455151861,728.0,0.0,957.608731647453,42,1,2,2,2,1,2,2,2,0,,2,,3,115702,1,3,0,0,2,,120.0,393.0,11,0.0,5.0,2.0,1.0,1.0,2,2,248.22125162295,200.0,16670.69781154653,0,5,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04366943773018124,16670.69781154653,4,2,4_0,4_0_0,4_2_0,4_0_0 -17254,2,43.0,0.0,9,112,3000.0,0.0,0.0,54,46,0.0,284.67243882535087,4146.522682727792,3275.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,119725,2,1,1,0,1,,800.0,1600.0,43,2.0,0.0,6.0,5.0,2.4,2,2,438.613613865301,3000.0,62886.18461809578,1,1,2,3,160.0,7,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05207821113474905,26202.576924206576,7,4,7,7_1,7_1,7_0_0 -17255,2,44.0,0.0,5,112,270.0,686.0,0.0,56,67,0.0,0.0,373.1870414455012,1088.0,227.0831645531053,1244.16588998135,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,130381,1,2,0,1,1,686.0,0.0,306.0,43,3.0,0.0,3.0,3.0,2.0,2,2,527.072502364696,270.0,27107.481119121945,1,1,2,3,65.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04013652154616873,13553.740559560973,3,2,3_0,3_0_0,3_1_0,3_0_0 -17256,1,27.0,100.0,9,112,600.0,0.0,0.0,63,56,0.0,258.79312620486445,829.3045365455583,934.0,144.50746835197612,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,105896,2,1,1,0,1,,220.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,344.491573857395,600.0,40189.56080244646,1,1,1,2,117.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023239865809709086,22327.53377913692,6,3,6,6_1,6_1,6_0_0 -17257,2,59.0,0.0,2,112,0.0,0.0,0.0,85,67,0.0,0.0,0.0,909.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,127855,2,1,0,1,1,46.0,0.0,262.0,42,1.0,1.0,2.0,2.0,1.5,2,2,1018.64612437131,0.0,26138.926263958478,7,1,2,3,44.0,9,3,3,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03477572073239175,17425.950842638984,4,2,4_0,4_0_0,4_1_0,4_0_1 -17258,2,67.0,0.0,1,111,485.0,750.0,0.0,77,78,0.0,0.0,670.3545003743263,1235.0,0.0,1360.2396756355868,70,0,0,0,0,0,0,0,0,0,,1,,1,109034,2,1,2,0,1,,204.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,158.708538119101,485.0,33259.64807114692,5,5,0,1,111.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03713208261729549,22173.098714097945,6,3,6,6_1,6_2,6_1_0 -17259,2,56.0,0.0,9,112,0.0,0.0,0.0,54,55,0.0,0.0,0.0,2691.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,121788,2,1,1,0,1,,496.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,318.535156905302,0.0,36679.374851764005,1,1,1,2,90.0,7,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07336548157855484,24452.91656784267,7,4,7,7_1,7_1,7_0_0 -17260,0,50.0,0.0,2,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1095.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,125824,2,1,4,0,1,,350.0,,32,2.0,1.0,5.0,2.0,1.5,1,1,634.289664574175,0.0,30447.158501684324,0,1,5,0,95.0,9,3,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03596394717554431,20298.10566778955,5,3,5,5_1,5_1,5_0_1 -17261,2,48.0,0.0,5,111,600.0,500.0,0.0,77,62,0.0,0.0,829.3045365455583,1130.0,51.60981012570575,906.8264504237244,20,0,0,0,0,0,0,0,0,2,5.0,2,,3,112985,2,2,0,0,1,,360.0,371.0,42,1.0,0.0,3.0,4.0,2.3,2,2,180.656434686856,600.0,32806.75077732797,6,1,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0344441303459079,14263.804685794772,3,2,3_0,3_0_0,3_2_0,3_0_0 -17262,2,70.0,0.0,9,112,3506.0,0.0,0.0,77,74,0.0,414.0690019277831,4845.902841881212,3906.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,123936,2,2,2,0,1,,202.0,,41,0.0,2.0,7.0,2.0,1.5,3,2,348.710066758527,3506.0,58618.56991799244,5,5,0,1,201.0,7,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06663417421244677,39079.04661199496,9,5,9,9_1,9_1,9_0_0 -17263,1,63.0,226.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,417.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,106490,1,2,0,0,1,,739.0,530.0,22,1.0,1.0,3.0,2.0,1.5,1,1,218.637952917648,0.0,32650.26249775158,0,4,2,3,72.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012771719676946432,21766.84166516772,6,3,6,6_0,6_2,6_0_0 -17264,2,33.0,0.0,9,120,2000.0,0.0,0.0,43,62,0.0,0.0,2764.3484551518613,2040.0,68.81308016760767,0.0,43,2,2,1,2,2,2,2,1,2,45.0,1,2012.0,6,103967,2,1,1,0,1,,486.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,216.592787723416,2000.0,38835.15609611409,1,1,1,2,110.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.052529723195940126,21575.086720063384,6,3,6,6_1,6_0,6_0_0 -17265,2,41.0,0.0,8,112,630.0,514.0,0.0,85,52,0.0,0.0,870.7697633728362,1144.0,0.0,932.2175910355887,50,0,0,0,0,0,0,0,0,2,12.0,1,2001.0,6,110274,2,1,2,0,1,,270.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,578.580197444127,630.0,22906.61432112676,6,1,0,1,97.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049941906907861516,12725.896845070421,2,1,2_0,2_1_0,2_1_0,2_0_0 -17266,2,50.0,0.0,6,111,500.0,1000.0,0.0,68,62,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,50,2,2,2,2,1,2,2,2,2,10.0,2,,4,112476,1,3,0,0,2,,500.0,410.0,43,2.0,0.0,4.0,5.0,2.8,2,2,244.208070214457,500.0,43661.24239337469,1,1,2,3,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.034355412667496955,15593.300854776677,3,2,3_0,3_0_0,3_2_0,3_0_0 -17267,2,24.0,0.0,9,112,0.0,0.0,0.0,52,46,0.0,0.0,0.0,1759.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,126821,2,1,1,0,1,,172.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,231.456986208036,0.0,34801.22439164204,1,1,1,2,100.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050544198681194856,23200.816261094693,6,3,6,6_1,6_0,6_0_0 -17268,2,43.0,0.0,5,112,300.0,600.0,0.0,0,63,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,121723,2,1,0,0,1,,0.0,566.0,12,1.0,2.0,4.0,1.0,1.0,2,2,841.342596667054,300.0,24360.79147864928,0,1,2,3,70.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036944612443680004,24360.79147864928,7,4,7,7_0,7_1,7_0_0 -17269,2,50.0,0.0,9,112,1700.0,0.0,0.0,0,52,0.0,0.0,2349.696186879082,1800.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,2012.0,6,106544,2,2,1,0,1,,400.0,,22,3.0,0.0,5.0,3.0,2.0,2,2,225.47678471799,1700.0,36380.23387528555,0,1,0,1,180.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04947741694488685,18190.116937642775,4,2,4_0,4_1_0,4_0_0,4_0_0 -17270,1,42.0,108.0,7,112,454.0,835.0,0.0,0,33,0.0,0.0,627.5070993194724,1289.0,0.0,1514.4001722076198,71,0,0,0,0,0,0,0,0,4,50.0,2,,5,107140,2,2,0,0,1,,0.0,550.0,32,1.0,0.0,3.0,3.0,2.0,1,1,700.320950585234,454.0,26962.813012815175,0,1,2,3,65.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04780658454988915,13481.406506407588,3,2,3_1,3_0_1,3_1_1,3_0_0 -17271,2,30.0,0.0,9,112,500.0,829.0,0.0,65,47,0.0,0.0,691.0871137879653,1329.0,0.0,1503.5182548025352,41,0,0,0,0,0,0,0,0,0,,1,2011.0,6,120577,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,343.828974076152,500.0,32808.1068707713,1,1,1,2,130.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04050828062816402,21872.071247180866,6,3,6,6_1,6_1,6_0_0 -17272,2,59.0,0.0,1,112,429.0,634.0,0.0,52,38,0.0,186.3310508675024,592.9527436300742,1243.0,0.0,1149.8559391372826,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,130511,2,1,2,0,1,,225.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,528.528207182966,429.0,49294.29716046403,1,1,0,1,95.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025215898625225455,32862.86477364269,8,4,8,8_1,8_1,8_1_0 -17273,1,69.0,121.0,2,111,170.0,190.0,0.0,0,77,0.0,0.0,234.9696186879082,360.0,0.0,344.5940511610153,60,0,0,0,0,0,0,0,0,0,,2,,2,107202,2,2,0,1,1,,110.0,236.0,11,0.0,3.0,2.0,1.0,1.0,2,2,229.397296401499,170.0,11255.469500999656,0,5,2,3,40.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031984449868397456,11255.469500999656,2,1,2_1,2_0_1,2_2_1,2_0_1 -17274,2,30.0,0.0,9,111,1300.0,0.0,0.0,65,48,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,131335,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,136.268732457907,1300.0,39600.08012086642,1,1,1,2,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03282821640845602,18857.18100993639,5,3,5,5_1,5_3,5_0_0 -17275,2,71.0,0.0,1,112,250.0,750.0,0.0,77,77,0.0,0.0,345.54355689398267,1000.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,0,,1,,1,100247,1,2,3,0,1,,370.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,523.954912721286,250.0,37231.49792531422,5,5,0,1,80.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02685897843825633,24820.99861687615,7,4,7,7_1,7_1,7_1_0 -17276,1,74.0,190.0,5,111,300.0,850.0,0.0,0,77,0.0,0.0,414.65226827277917,1150.0,0.0,1541.6049657203316,43,2,2,2,1,1,2,2,2,0,,1,,3,132727,1,2,2,0,1,,90.0,380.0,11,0.0,6.0,5.0,1.0,1.0,2,2,230.64404180934,300.0,10640.158230553097,0,5,2,3,93.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.10808109946126437,10640.158230553097,2,1,2_1,2_1_1,2_2_1,2_0_0 -17277,2,43.0,0.0,5,112,560.0,1009.0,0.0,48,42,0.0,0.0,774.0175674425211,1569.0,0.0,1829.9757769550758,71,0,0,0,0,0,0,0,0,1,3.0,1,,3,129195,2,2,3,0,1,,430.0,,43,2.0,0.0,5.0,7.0,3.3999999999999995,1,1,667.646343279235,560.0,62804.03322977551,1,1,1,2,120.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02498247197372882,18471.774479345742,4,2,4_0,4_1_0,4_1_0,4_0_0 -17278,1,71.0,322.0,5,111,232.0,835.0,0.0,72,78,0.0,0.0,320.6644207976159,1067.0,0.0,1514.4001722076198,50,2,2,2,2,1,2,2,2,0,,2,,3,108880,1,2,0,0,2,,182.0,397.0,41,0.0,4.0,3.0,2.0,1.5,1,1,218.637952917648,232.0,21737.171737164106,5,5,2,3,88.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04908642269112439,14491.44782477607,3,2,3_1,3_0_1,3_2_1,3_0_0 -17279,1,23.0,270.0,6,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,776.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,4,116995,2,1,0,0,1,,37.0,321.0,12,1.0,0.0,2.0,1.0,1.0,3,3,280.106394134479,0.0,10779.052194097007,0,1,2,3,58.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07199148738002821,10779.052194097007,2,1,2_1,2_0_1,2_2_1,2_0_0 -17280,2,61.0,0.0,1,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2474.0,0.0,0.0,30,2,2,2,2,1,2,2,2,0,,1,,1,102130,1,1,2,0,2,,406.0,,21,0.0,0.0,5.0,3.0,2.0,2,2,627.486757377867,0.0,22181.456387197395,0,5,0,1,80.0,9,3,3,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.11153460606076045,11090.728193598698,2,1,2_0,2_1_0,2_1_0,2_1_0 -17281,1,61.0,270.0,5,111,300.0,730.0,0.0,0,86,0.0,0.0,414.65226827277917,1030.0,0.0,1323.9666176186377,70,0,0,0,0,0,0,0,0,0,,2,,3,106932,2,2,0,0,1,,150.0,344.0,11,0.0,5.0,3.0,1.0,1.0,2,2,248.22125162295,300.0,5870.878064764619,0,7,2,3,69.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17544224026415642,5870.878064764619,1,1,1_1,1_0_1,1_2_1,1_0_0 -17282,2,64.0,0.0,2,112,500.0,1250.0,0.0,56,78,0.0,0.0,691.0871137879653,1750.0,0.0,2267.066126059311,31,0,0,0,0,0,0,0,0,0,,1,,2,104517,2,1,2,0,1,,270.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,627.863305107297,500.0,30245.735706584703,4,5,0,1,90.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057859396014592994,20163.8238043898,5,3,5,5_1,5_1,5_0_1 -17283,1,50.0,218.0,5,111,200.0,500.0,0.0,0,56,0.0,0.0,276.4348455151861,700.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,0,,2,,3,113778,2,1,0,0,1,,120.0,307.0,12,1.0,0.0,4.0,1.0,1.0,3,2,271.460212358339,200.0,15554.0,0,4,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045004500450045004,15554.0,3,2,3_1,3_0_1,3_2_1,3_0_0 -17284,2,64.0,0.0,2,112,233.0,255.0,0.0,0,77,0.0,0.0,322.04659502519183,488.0,0.0,462.4814897160995,70,0,0,0,0,0,0,0,0,0,,2,,2,112501,1,2,0,1,1,679.0,0.0,302.0,21,1.0,0.0,3.0,2.0,1.5,1,1,540.971048414738,233.0,32527.525516380127,0,5,2,3,55.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015002678262576544,21685.017010920084,6,3,6,6_0,6_1,6_0_1 -17285,1,32.0,100.0,1,111,640.0,1300.0,0.0,43,64,0.0,0.0,884.5915056485956,1940.0,0.0,2357.7487711016834,44,0,0,0,0,0,0,0,0,2,5.0,1,,1,113155,2,1,2,0,1,,390.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,194.055295885524,640.0,39209.79068181353,1,1,1,2,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04947743832001174,14522.144696967976,3,2,3_1,3_1_1,3_2_1,3_1_0 -17286,2,44.0,0.0,5,112,2100.0,0.0,0.0,46,37,0.0,284.67243882535087,2902.5658779094542,2375.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,114671,2,1,1,0,1,,480.0,,43,2.0,0.0,9.0,5.0,2.4,1,1,706.678381951661,2100.0,53349.36455256004,1,1,1,2,210.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04451786858042403,22228.901896900017,6,3,6,6_1,6_1,6_0_0 -17287,2,41.0,0.0,1,112,1000.0,0.0,0.0,0,34,0.0,0.0,1382.1742275759307,1016.0,27.525232067043067,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,123353,1,1,1,0,1,,230.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,583.038182750825,1000.0,38594.023223633136,0,1,1,2,75.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02632531970333298,24121.264514770708,6,3,6,6_1,6_1,6_1_0 -17288,1,42.0,20.0,5,111,0.0,0.0,680.0,0,54,0.0,0.0,347.42106768951703,680.0,0.0,777.4071267637894,71,2,1,2,2,1,2,2,2,1,10.0,2,,3,107831,2,2,0,1,1,60.0,650.0,293.0,32,1.0,0.0,3.0,2.0,1.5,2,2,187.21643930799,0.0,18889.370322634473,0,1,2,3,62.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03599908246730595,12592.913548422983,2,1,2_1,2_0_1,2_2_1,2_0_0 -17289,1,27.0,100.0,1,111,300.0,2000.0,0.0,56,46,0.0,0.0,414.65226827277917,2300.0,0.0,3627.3058016948976,70,0,0,0,0,0,0,0,0,2,35.0,1,,1,131524,2,1,3,0,1,,360.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,233.950743258434,300.0,24040.85420105376,1,1,1,2,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09567047746161973,13356.030111696533,3,2,3_1,3_1_1,3_2_1,3_1_0 -17290,2,54.0,0.0,6,112,1400.0,0.0,0.0,67,48,0.0,414.0690019277831,1935.0439186063027,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,128795,2,1,1,0,1,,600.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,805.210765443502,1400.0,85000.58361371084,1,1,0,1,110.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02117632519066204,34000.23344548434,9,5,9,9_1,9_1,9_0_0 -17291,0,77.0,0.0,1,111,671.0,0.0,0.0,0,77,4480.754631054002,310.55175144583734,927.4389067034494,4019.0,82.5756962011292,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,105843,1,2,1,0,2,,227.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,253.104599043777,671.0,17511.34325053518,0,5,0,1,120.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.22950837879767855,17511.34325053518,4,2,4_0,4_1_0,4_2_0,4_1_0 -17292,1,42.0,170.0,6,112,860.0,110.0,0.0,52,52,0.0,0.0,1188.6698357153002,970.0,0.0,199.50181909321938,30,0,0,0,0,0,0,0,0,2,45.0,1,,4,121253,1,1,2,0,1,,300.0,449.0,43,3.0,0.0,4.0,5.0,3.0,4,2,508.350966667593,860.0,54081.48144611478,1,1,2,3,100.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01793589920362074,18027.16048203826,4,2,4_1,4_1_1,4_1_1,4_0_0 -17293,2,81.0,0.0,2,111,400.0,1580.0,0.0,0,78,0.0,0.0,552.8696910303722,1980.0,0.0,2865.571583338969,50,0,0,0,0,0,0,0,0,0,,1,,2,123189,2,1,2,0,1,,100.0,,11,0.0,6.0,5.0,1.0,1.0,4,3,253.104599043777,400.0,13684.29273792961,0,5,0,1,90.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14469143841916726,13684.29273792961,3,2,3_0,3_1_0,3_2_0,3_0_1 -17294,2,46.0,0.0,7,112,424.0,1576.0,0.0,0,42,0.0,0.0,586.0418724921946,2000.0,0.0,2858.3169717355795,44,0,0,0,0,0,0,0,0,2,25.0,1,,5,120759,1,1,1,0,1,,315.0,,32,1.0,0.0,7.0,3.0,2.0,1,1,786.174861392906,424.0,50232.7075393984,0,1,1,2,110.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03981469639938012,25116.3537696992,7,4,7,7_1,7_1,7_0_0 -17295,2,61.0,0.0,5,111,280.0,0.0,0.0,0,45,0.0,0.0,387.00878372126056,280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,125458,1,2,0,0,1,69.0,100.0,380.0,12,1.0,1.0,3.0,1.0,1.0,1,1,232.876199317051,280.0,21131.869409099858,0,1,2,3,80.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013250129204348845,21131.869409099858,5,3,5,5_0,5_2,5_0_0 -17296,2,54.0,0.0,7,112,994.0,0.0,0.0,62,62,0.0,0.0,1373.881182210475,1090.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,104005,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,566.742752663414,994.0,51429.68593134347,1,1,1,2,95.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021193985151982175,34286.45728756231,9,5,9,9_1,9_1,9_0_0 -17297,2,54.0,0.0,2,111,400.0,1059.0,0.0,0,63,0.0,0.0,552.8696910303722,1459.0,0.0,1920.6584219974484,71,0,0,0,0,0,0,0,0,0,,1,,2,119958,2,2,2,0,2,,160.0,,12,1.0,3.0,7.0,1.0,1.0,2,2,192.610904403566,400.0,23669.211689738342,0,1,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0616412586580795,23669.211689738342,6,3,6,6_1,6_2,6_0_1 -17298,2,55.0,0.0,1,112,984.0,0.0,0.0,56,62,0.0,496.8828023133397,1360.0594399347156,1564.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,,1,100902,2,1,1,0,1,,150.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,568.00578033006,984.0,26998.369062249603,1,1,0,1,110.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05792942515875371,17998.9127081664,4,2,4_0,4_1_0,4_1_0,4_1_0 -17299,2,54.0,0.0,6,112,1930.0,0.0,0.0,54,47,0.0,207.03450096389156,2667.596259221546,2210.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,104992,1,2,2,0,1,,360.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,565.153362325245,1930.0,94791.67474554208,1,1,0,1,110.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023314283727263012,37916.66989821683,9,5,9,9_1,9_1,9_0_0 -17300,1,34.0,300.0,1,111,600.0,0.0,0.0,0,81,1194.8679016144006,1242.2070057833494,829.3045365455583,2720.0,206.439240502823,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,106367,1,3,1,0,1,,500.0,,32,1.0,0.0,6.0,4.0,1.9,2,2,236.588120116894,600.0,14196.315345946128,0,4,1,2,100.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.19159901239984203,7471.744918919016,1,1,1_1,1_1_1,1_2_1,1_1_0 -17301,2,34.0,0.0,5,112,0.0,0.0,0.0,43,38,0.0,0.0,0.0,2746.0,0.0,0.0,70,0,0,0,0,0,0,0,0,4,35.0,1,,3,131154,2,1,3,0,1,,421.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,729.436934583945,0.0,26635.04098222818,1,1,1,2,96.0,9,3,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10309726956426409,14797.244990126766,3,2,3_0,3_1_0,3_1_0,3_0_0 -17302,2,61.0,0.0,5,112,530.0,944.0,0.0,78,77,0.0,0.0,732.5523406152432,1474.0,0.0,1712.0883383999917,71,0,0,0,0,0,0,0,0,0,,1,,3,127940,2,2,2,0,1,,330.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,765.061692809726,530.0,25685.50127133986,5,5,0,1,85.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057386460339191585,17123.667514226574,4,2,4_0,4_1_0,4_1_0,4_0_0 -17303,2,68.0,0.0,5,111,510.0,961.0,0.0,74,75,0.0,31.055175144583732,704.9088560637246,1501.0,0.0,1742.9204377143983,12,0,0,0,0,0,0,0,0,0,,1,,3,131782,2,1,1,0,1,,310.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,336.634362716988,510.0,76651.00615188852,5,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019582260890687847,51100.67076792568,10,5,10,10_1,10_3,10_0_0 -17304,2,44.0,0.0,5,112,564.0,1421.0,0.0,43,62,0.0,0.0,779.5462643528249,1985.0,0.0,2577.200772104225,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,133015,2,1,3,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,590.411225421499,564.0,62835.577792771466,1,1,0,1,89.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03159038350130922,25134.231117108586,7,4,7,7_1,7_1,7_0_0 -17305,2,61.0,0.0,5,111,420.0,1196.0,0.0,77,77,0.0,0.0,580.5131755818909,1616.0,0.0,2169.1288694135487,41,2,2,2,2,1,2,2,2,0,,1,,3,132800,1,3,3,0,1,,320.0,505.0,41,1.0,2.0,5.0,3.0,2.0,4,4,260.989655249741,420.0,41919.240408506506,7,5,2,3,130.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03855031685335766,20959.620204253253,5,3,5,5_1,5_3,5_0_0 -17306,2,49.0,0.0,7,112,500.0,1600.0,0.0,0,37,0.0,186.3310508675024,691.0871137879653,2280.0,0.0,2901.844641355918,42,0,0,0,0,0,0,0,0,2,30.0,1,,5,127067,2,1,3,0,1,,330.0,,32,1.0,0.0,5.0,3.0,2.0,2,2,750.590630890067,500.0,25012.47634942254,0,1,0,1,180.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09115450897978113,12506.23817471127,2,1,2_0,2_1_0,2_1_0,2_0_0 -17307,1,23.0,210.0,2,111,0.0,0.0,0.0,46,65,0.0,0.0,0.0,724.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104008,2,1,0,1,2,570.0,0.0,354.0,43,2.0,0.0,3.0,3.0,1.8,1,1,196.853925086212,0.0,23678.924059555786,4,4,2,3,69.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030575713583059744,13154.957810864325,2,1,2_1,2_0_1,2_3_1,2_0_1 -17308,2,60.0,0.0,8,112,545.0,1150.0,0.0,77,37,0.0,36.23103766868102,753.2849540288821,1730.0,0.0,2085.7008359745664,50,0,0,0,0,0,0,0,0,2,60.0,3,1999.0,6,130290,2,1,0,0,1,,450.0,,42,1.0,0.0,6.0,3.0,2.0,2,2,676.665654374995,545.0,37002.03477450605,5,1,0,1,140.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04675418556149104,18501.017387253025,4,2,4_0,4_0_0,4_1_0,4_0_0 -17309,0,92.0,0.0,8,112,300.0,700.0,0.0,0,74,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,12,0,0,0,0,0,0,0,0,0,,1,1999.0,6,128477,2,1,2,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,1,761.922741895826,300.0,34380.643752193195,0,5,5,0,100.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029086133674742738,34380.643752193195,9,5,9,9_1,9_1,9_0_0 -17310,2,27.0,0.0,1,111,400.0,1200.0,0.0,42,46,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,109816,1,3,1,0,2,,350.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,275.788800062296,400.0,53564.00683938321,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02987080493805762,35709.33789292214,9,5,9,9_1,9_3,9_1_0 -17311,2,76.0,0.0,1,112,340.0,1302.0,0.0,78,78,0.0,0.0,469.9392373758164,1642.0,0.0,2361.3760769033784,42,0,0,0,0,0,0,0,0,0,,1,,1,112019,2,1,4,0,1,,130.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,671.226557719511,340.0,28417.299498791665,5,5,0,1,85.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057781704418107,18944.866332527778,5,3,5,5_1,5_1,5_1_0 -17312,1,30.0,308.0,2,111,448.0,672.0,0.0,85,63,0.0,0.0,619.2140539540169,1120.0,0.0,1218.7747493694856,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,130624,2,2,2,0,1,,623.0,324.0,42,1.0,0.0,4.0,5.0,2.4,4,3,195.948870240847,448.0,20940.70914384288,6,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05348433963275353,8725.2954766012,1,1,1_1,1_1_1,1_3_1,1_0_1 -17313,2,59.0,0.0,5,112,335.0,1315.0,0.0,45,47,0.0,0.0,463.0283662379367,1650.0,0.0,2384.9535646143954,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,131660,2,1,2,0,1,,203.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,765.061692809726,335.0,75455.53228685475,1,1,0,1,110.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021867183889542976,50303.6881912365,10,5,10,10_1,10_1,10_0_0 -17314,2,33.0,0.0,1,111,36.0,60.0,0.0,43,55,0.0,0.0,49.7582721927335,96.0,0.0,108.81917405084694,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,104799,2,1,2,0,1,,560.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,275.15711917663,36.0,11254.588183829841,4,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008529854529722295,5359.327706585638,1,1,1_0,1_1_0,1_3_0,1_1_0 -17315,2,23.0,0.0,2,111,458.0,211.0,0.0,56,55,0.0,0.0,633.0357962297762,669.0,0.0,382.6807620788117,70,2,2,2,2,1,2,2,2,3,20.0,2,,2,112349,2,1,0,1,1,,540.0,456.0,43,2.0,0.0,3.0,2.0,1.5,2,2,190.980842556935,458.0,22868.29768788027,4,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.029254473119551715,15245.531791920179,3,2,3_0,3_0_0,3_3_0,3_0_1 -17317,2,57.0,0.0,1,111,288.0,1320.0,0.0,56,52,0.0,0.0,398.066177541868,1608.0,0.0,2394.0218291186325,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,123928,2,1,1,0,1,,360.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,286.989374551342,288.0,61176.29250406488,1,1,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026284691899123438,30588.14625203244,8,4,8,8_1,8_3,8_1_0 -17319,2,63.0,0.0,2,111,616.0,1500.0,0.0,77,75,0.0,0.0,851.4193241867732,2116.0,0.0,2720.4793512711735,60,0,0,0,0,0,0,0,0,0,,1,,2,107260,2,1,2,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,290.869424389886,616.0,51903.15989255536,5,5,0,1,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04076823076630263,34602.10659503691,9,5,9,9_1,9_3,9_0_1 -17320,2,32.0,0.0,2,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,928.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,127482,2,2,0,0,1,,0.0,299.0,12,1.0,0.0,3.0,1.0,1.0,2,2,695.169663570372,0.0,19149.25633200731,0,1,2,3,45.0,9,3,3,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04846141196871863,19149.25633200731,5,3,5,5_0,5_1,5_0_1 -17321,2,44.0,0.0,1,111,420.0,0.0,0.0,0,64,0.0,0.0,580.5131755818909,420.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,125964,2,1,1,0,1,,582.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,325.509883798307,420.0,8059.457587785868,0,1,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05211268815863133,8059.457587785868,1,1,1_0,1_1_0,1_3_0,1_1_0 -17322,2,28.0,0.0,1,112,610.0,500.0,0.0,0,65,0.0,0.0,843.1262788213177,1174.0,110.10092826817227,906.8264504237244,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,105570,1,2,4,0,2,,360.0,574.0,12,1.0,0.0,5.0,1.0,1.0,2,2,758.337657706104,610.0,19276.96829606942,0,1,2,3,65.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06090169273346676,19276.96829606942,5,3,5,5_1,5_1,5_1_0 -17323,1,85.0,137.0,2,111,276.0,1300.0,0.0,0,78,0.0,0.0,381.48008681095683,1576.0,0.0,2357.7487711016834,33,0,0,0,0,0,0,0,0,0,,1,,2,111349,2,1,1,0,1,,140.0,191.0,11,0.0,5.0,2.0,1.0,1.0,1,1,240.616524923934,276.0,13284.846132548793,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11863140786694479,13284.846132548793,3,2,3_1,3_1_1,3_3_1,3_0_1 -17324,2,54.0,0.0,1,112,120.0,600.0,0.0,0,62,0.0,0.0,165.86090730911167,720.0,0.0,1088.1917405084694,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,130671,2,1,2,0,1,,120.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,551.68635075353,120.0,21883.46732140803,0,1,0,1,95.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032901550262816104,21883.46732140803,6,3,6,6_1,6_1,6_1_0 -17325,2,62.0,0.0,2,111,378.0,0.0,0.0,78,52,0.0,0.0,522.4618580237018,378.0,0.0,0.0,20,2,2,1,2,1,2,2,2,2,5.0,2,,2,104982,1,2,0,1,1,,0.0,480.0,42,1.0,3.0,3.0,2.0,1.5,2,2,199.530881857857,378.0,32986.18023676742,5,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011459344406863742,21990.78682451161,6,3,6,6_0,6_3,6_0_1 -17326,2,80.0,0.0,2,111,400.0,1020.0,0.0,0,86,0.0,0.0,552.8696910303722,1420.0,0.0,1849.925958864398,50,0,0,0,0,0,0,0,0,0,,1,,2,125260,2,1,2,0,1,,400.0,272.0,11,0.0,7.0,2.0,1.0,1.0,1,1,206.143845541139,400.0,15591.57962832601,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09107480023513553,15591.57962832601,3,2,3_0,3_1_0,3_3_0,3_0_1 -17327,2,30.0,0.0,1,112,600.0,1080.0,0.0,52,45,0.0,0.0,829.3045365455583,1680.0,0.0,1958.7451329152448,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,113219,2,1,0,1,1,,480.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,567.32146194264,600.0,46883.11926072714,1,1,0,1,65.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035833793196590816,31255.412840484758,8,4,8,8_0,8_1,8_1_0 -17328,2,42.0,0.0,2,111,210.0,90.0,0.0,0,53,0.0,0.0,290.25658779094545,300.0,0.0,163.2287610762704,50,2,1,2,2,1,2,2,2,3,40.0,2,,2,115887,1,3,0,1,1,300.0,0.0,245.0,12,1.0,0.0,2.0,1.0,1.0,3,2,256.207323352647,210.0,16415.457527787996,0,1,2,3,49.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01827545771978403,16415.457527787996,4,2,4_0,4_0_0,4_3_0,4_0_1 -17330,2,66.0,0.0,9,112,499.0,1010.0,0.0,0,71,0.0,0.0,689.7049395603893,1509.0,0.0,1831.7894298559233,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,125781,2,1,1,0,1,,181.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,400.498763137806,499.0,35279.0,0,5,0,1,117.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04277332123926415,35279.0,9,5,9,9_1,9_0,9_0_0 -17331,2,55.0,0.0,2,111,372.0,145.0,0.0,78,52,0.0,0.0,514.1688126582462,517.0,0.0,262.97967062288006,43,0,0,0,0,0,0,0,0,1,1.0,2,,2,100685,1,1,0,1,1,,288.0,257.0,42,1.0,0.0,3.0,2.0,1.5,2,2,199.530881857857,372.0,27336.710151379528,5,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018912297680923028,18224.473434253017,4,2,4_0,4_0_0,4_3_0,4_0_1 -17332,2,71.0,0.0,2,112,2100.0,0.0,0.0,75,75,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,70,2,2,2,1,1,2,2,1,0,,1,,2,118068,1,1,2,0,1,,480.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,281.452815220775,2100.0,56376.59291586668,5,5,0,1,144.0,9,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03724950181246186,37584.39527724445,9,5,9,9_1,9_0,9_0_1 -17333,1,87.0,116.0,1,111,230.0,1100.0,0.0,0,77,0.0,0.0,317.900072342464,1330.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,0,,2,,1,116940,2,2,0,0,1,,0.0,314.0,11,0.0,4.0,3.0,1.0,1.0,1,1,264.349523668483,230.0,15236.874602179487,0,5,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08728824215759814,15236.874602179487,3,2,3_1,3_0_1,3_3_1,3_1_0 -17334,2,39.0,0.0,9,112,1800.0,0.0,0.0,64,37,0.0,289.84830134944815,2487.913609636675,2160.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,120861,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,334.860033717888,1800.0,72001.32345152729,1,1,1,2,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029999448571999574,34286.34450072728,9,5,9,9_1,9_0,9_0_0 -17335,1,43.0,160.0,2,111,200.0,150.0,0.0,85,63,0.0,0.0,276.4348455151861,350.0,0.0,272.04793512711734,71,2,2,2,2,1,2,2,2,2,35.0,2,,2,121300,2,3,0,1,1,1136.0,0.0,298.0,42,1.0,2.0,3.0,3.0,1.8,1,1,280.371776130136,200.0,21370.36216949932,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.016377822576144018,11872.423427499622,2,1,2_1,2_0_1,2_3_1,2_0_1 -17336,1,35.0,209.0,8,112,822.0,1100.0,0.0,69,53,0.0,0.0,1136.147215067415,1922.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,113403,1,2,2,0,1,,603.0,656.0,43,2.0,0.0,4.0,5.0,2.4,1,1,312.794304969122,822.0,35894.62730012169,1,1,2,3,85.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.053545617953622934,14956.094708384038,3,2,3_1,3_1_1,3_0_1,3_0_0 -17337,2,28.0,0.0,6,112,2000.0,0.0,0.0,56,46,0.0,0.0,2764.3484551518613,2200.0,344.06540083803833,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,,4,102576,2,2,2,0,1,,400.0,700.0,43,2.0,0.0,4.0,2.0,1.5,1,1,358.275754182783,2000.0,35324.08201471083,1,1,3,4,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06228045782148854,23549.388009807222,6,3,6,6_1,6_0,6_0_0 -17338,1,29.0,83.0,2,111,420.0,240.0,0.0,0,52,0.0,0.0,580.5131755818909,660.0,0.0,435.27669620338776,41,0,0,0,0,0,0,0,0,2,6.0,2,,2,131990,2,1,0,2,1,,1080.0,628.0,32,1.0,0.0,4.0,3.0,1.6,1,1,196.853925086212,420.0,26978.74069386318,0,1,2,3,91.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024463706719644235,16861.712933664487,4,2,4_1,4_0_1,4_3_1,4_0_1 -17339,2,59.0,0.0,7,112,540.0,1340.0,0.0,35,42,0.0,0.0,746.3740828910024,1880.0,0.0,2430.2948871355816,44,0,0,0,0,0,0,0,0,2,60.0,1,,5,112701,2,1,1,0,1,,500.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,369.055103009776,540.0,78904.35261595297,1,1,0,1,160.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023826315503156406,52602.90174396865,10,5,10,10_1,10_0,10_0_0 -17340,2,85.0,0.0,2,111,174.0,687.0,0.0,0,78,0.0,0.0,240.49831559821192,861.0,0.0,1245.9795428821974,31,0,0,0,0,0,0,0,0,0,,2,,2,100090,2,1,0,0,1,,0.0,227.0,11,0.0,0.0,1.0,1.0,1.0,3,2,503.661588753444,174.0,16237.836131126263,0,5,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05302430650532009,16237.836131126263,4,2,4_0,4_0_0,4_3_0,4_0_1 -17341,2,84.0,0.0,2,112,650.0,1794.0,0.0,0,71,0.0,0.0,898.4132479243549,2444.0,0.0,3253.6933041203233,50,0,0,0,0,0,0,0,0,0,,1,,2,108713,1,2,4,0,2,,500.0,,21,1.0,3.0,7.0,2.0,1.5,2,2,357.324114288102,650.0,25756.38481210958,0,5,0,1,150.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09488909324149145,17170.923208073054,4,2,4_0,4_1_0,4_0_0,4_0_1 -17342,1,26.0,200.0,7,111,700.0,0.0,0.0,45,42,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,60.0,2,,5,118641,2,3,0,0,1,,0.0,490.0,42,1.0,0.0,2.0,2.0,1.5,2,2,364.798028315683,700.0,24486.330076034552,3,1,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.028587379073400195,16324.2200506897,4,2,4_1,4_0_1,4_3_1,4_0_0 -17343,2,62.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1092.0,0.0,0.0,41,2,2,1,2,1,2,2,2,0,,1,,1,129487,2,1,1,0,1,,160.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,322.307325967034,0.0,11303.26680460199,0,5,0,1,90.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.09660923862784565,11303.26680460199,2,1,2_0,2_1_0,2_2_0,2_1_0 -17344,2,45.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,1581.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101379,1,2,3,0,2,,567.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,251.769941456347,0.0,29929.456179486016,0,1,0,1,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05282421406252062,19952.97078632401,5,3,5,5_1,5_3,5_0_1 -17345,2,28.0,0.0,1,111,720.0,1.0,0.0,43,63,0.0,0.0,995.16544385467,721.0,0.0,1.813652900847449,70,1,2,2,1,2,2,2,2,2,10.0,1,,1,120739,2,3,2,0,1,,250.0,450.0,43,2.0,0.0,5.0,2.0,1.5,1,1,252.307330907963,720.0,37869.89530393638,1,1,2,3,90.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.019038869640736922,25246.59686929092,7,4,7,7_1,7_2,7_1_0 -17346,1,33.0,80.0,5,111,240.0,1380.0,0.0,0,54,0.0,0.0,331.72181461822333,1620.0,0.0,2502.8410031694793,70,0,0,0,0,0,0,0,0,2,39.0,2,,3,131834,1,3,0,0,1,,0.0,328.0,32,1.0,0.0,3.0,2.0,1.3,1,1,310.08860206133,240.0,23586.903540632095,0,1,2,3,45.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06868218192393499,18143.77195433238,4,2,4_1,4_0_1,4_3_1,4_0_0 -17347,2,65.0,0.0,1,111,270.0,304.0,0.0,56,78,0.0,0.0,373.1870414455012,574.0,0.0,551.3504818576245,31,0,0,0,0,0,0,0,0,0,,1,,1,102514,2,1,3,0,2,,150.0,,42,1.0,0.0,7.0,2.0,1.5,2,2,310.687578045894,270.0,33024.07901382173,1,5,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017381256862901793,22016.05267588115,6,3,6,6_1,6_2,6_1_0 -17348,2,68.0,0.0,5,111,433.0,721.0,0.0,78,75,0.0,0.0,598.4814405403779,1154.0,0.0,1307.6437415110106,33,0,0,0,0,0,0,0,0,0,,1,,3,112743,2,1,2,0,1,,270.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,360.010972203204,433.0,32262.20713758438,5,5,0,1,150.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03576940644757156,21508.13809172292,6,3,6,6_1,6_2,6_0_0 -17349,2,47.0,0.0,2,111,500.0,1200.0,0.0,34,62,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,105300,1,2,3,0,2,,250.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,370.345230967434,500.0,77267.34885884021,1,1,1,2,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022001531372659512,36793.97564706676,9,5,9,9_1,9_2,9_0_1 -17350,1,36.0,396.0,8,111,362.0,605.0,0.0,55,63,0.0,0.0,500.3470703824869,967.0,0.0,1097.2600050127066,33,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,100696,2,1,1,0,1,,541.0,755.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,3,2,289.271257227801,362.0,32212.03144204395,1,1,2,3,96.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030019839069753525,11930.382015571835,2,1,2_1,2_1_1,2_2_1,2_0_0 -17351,1,28.0,306.0,2,111,140.0,900.0,0.0,0,67,0.0,0.0,193.50439186063028,1040.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,121702,1,3,0,0,1,,0.0,260.0,32,1.0,0.0,3.0,3.0,1.6,2,2,257.896054840422,140.0,11237.981210381085,0,1,2,3,84.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09254331187520584,7023.738256488178,1,1,1_1,1_0_1,1_3_1,1_0_1 -17352,1,42.0,74.0,5,111,0.0,0.0,0.0,55,65,0.0,0.0,0.0,1569.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,3,102478,1,2,0,1,1,612.0,214.0,409.0,43,2.0,0.0,3.0,4.0,2.1,1,1,288.026941201258,0.0,34615.267988887186,4,1,2,3,70.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045326819382236434,16483.460947089137,4,2,4_1,4_0_1,4_2_1,4_0_0 -17353,1,24.0,282.0,1,111,450.0,0.0,0.0,84,42,0.0,0.0,621.9784024091688,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,113633,2,1,0,1,1,,0.0,550.0,42,1.0,0.0,2.0,2.0,1.5,1,1,383.511702387003,450.0,8203.92263003639,3,1,2,3,38.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.054851809346964056,5469.2817533575935,1,1,1_1,1_0_1,1_3_1,1_1_0 -17354,1,43.0,160.0,1,111,450.0,670.0,0.0,56,62,0.0,0.0,621.9784024091688,1120.0,0.0,1215.1474435677908,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,115521,2,2,2,0,1,,300.0,,43,3.0,1.0,5.0,6.0,3.0999999999999996,1,1,313.010320044749,450.0,34255.43495180784,1,1,1,2,90.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.032695541643995144,11050.140307034788,2,1,2_1,2_1_1,2_2_1,2_1_0 -17355,2,34.0,0.0,1,111,860.0,1489.0,0.0,42,37,0.0,0.0,1188.6698357153002,2349.0,0.0,2700.5291693618515,71,0,0,0,0,0,0,0,0,3,15.0,1,,1,113875,1,1,1,0,1,,620.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,275.15711917663,860.0,77908.6168032751,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03015070856579825,37099.3413348929,9,5,9,9_1,9_3,9_1_0 -17356,1,48.0,374.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,756.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,129047,2,2,0,0,1,,0.0,530.0,31,0.0,3.0,1.0,2.0,1.3,2,2,279.670590600086,0.0,6874.099800074486,0,6,2,3,50.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10997803668660851,5287.769076980373,1,1,1_1,1_0_1,1_2_1,1_1_0 -17357,1,38.0,210.0,1,111,800.0,1600.0,0.0,85,53,0.0,0.0,1105.7393820607444,2400.0,0.0,2901.844641355918,50,2,2,2,2,2,2,2,1,2,20.0,1,,1,126064,2,2,2,0,1,,300.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,254.289655352857,800.0,14324.060026212981,6,1,1,2,43.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.1675502612812295,6820.980964863324,1,1,1_1,1_1_1,1_2_1,1_1_0 -17358,0,56.0,0.0,1,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,2132.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,121400,2,2,5,0,1,,226.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,327.317664035131,0.0,58996.69248766507,1,1,5,0,60.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036137619078319604,39331.12832511005,9,5,9,9_1,9_2,9_1_0 -17359,1,48.0,270.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1125.0,127.30419831007418,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,119319,1,3,0,1,1,,0.0,450.0,12,1.0,4.0,1.0,1.0,1.0,1,1,335.126965029454,0.0,5234.840359771021,0,4,2,3,25.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.21490626698866686,5234.840359771021,1,1,1_1,1_0_1,1_3_1,1_1_0 -17360,2,79.0,0.0,5,111,350.0,0.0,0.0,0,72,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,123188,2,1,0,1,1,1143.0,0.0,387.0,11,0.0,6.0,5.0,1.0,1.0,2,1,336.05438544644,350.0,23327.693735256136,0,5,2,3,75.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015003626332380646,23327.693735256136,6,3,6,6_0,6_2,6_0_0 -17361,1,40.0,236.0,1,111,750.0,0.0,0.0,85,55,0.0,0.0,1036.630670681948,750.0,0.0,0.0,71,2,2,2,2,1,1,2,2,1,5.0,1,,1,125754,1,3,4,0,2,,240.0,179.0,42,1.0,0.0,3.0,8.0,3.499999999999999,1,1,264.345994320207,750.0,25622.416822581727,7,1,2,3,80.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,0,1,1,0.029271243426927815,7320.690520737638,1,1,1_1,1_1_1,1_2_1,1_1_0 -17362,1,44.0,400.0,1,111,1500.0,0.0,0.0,56,85,0.0,0.0,2073.261341363896,2904.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,1,,1,132140,2,2,2,0,1,,300.0,,42,1.0,0.0,7.0,6.0,2.8999999999999995,1,1,309.249907668817,1500.0,34297.20838394788,1,7,1,2,72.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08467161430430468,11826.623580671685,2,1,2_1,2_1_1,2_2_1,2_1_0 -17363,2,48.0,0.0,1,111,1010.0,0.0,0.0,0,31,0.0,0.0,1395.9959698516898,1010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,121009,2,1,2,0,1,,270.0,,12,1.0,0.0,3.0,1.0,1.0,5,4,275.589137311041,1010.0,23531.0437458311,0,1,1,2,78.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04292202296291841,23531.0437458311,6,3,6,6_1,6_3,6_1_0 -17364,1,85.0,160.0,2,111,400.0,0.0,0.0,0,78,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,2,126733,2,2,0,1,1,768.0,0.0,285.0,11,0.0,0.0,3.0,1.0,1.0,1,1,361.296934817365,400.0,19551.78894549654,0,5,2,3,70.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.020458485978702933,19551.78894549654,5,3,5,5_0,5_2,5_0_1 -17365,2,32.0,0.0,1,111,650.0,1300.0,0.0,52,38,0.0,0.0,898.4132479243549,1950.0,0.0,2357.7487711016834,20,2,2,2,1,1,2,2,2,2,90.0,2,,1,108276,2,3,0,0,1,,0.0,718.0,43,2.0,0.0,5.0,2.0,1.5,2,2,288.638271232052,650.0,47325.674261121894,1,1,2,3,97.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.04120385035067377,31550.449507414596,8,4,8,8_0,8_2,8_1_0 -17366,1,65.0,144.0,5,111,320.0,738.0,0.0,77,75,0.0,0.0,442.2957528242978,1058.0,0.0,1338.4758408254172,71,2,2,1,2,1,2,2,2,0,,2,,3,118622,2,1,0,0,1,,0.0,333.0,41,0.0,6.0,4.0,2.0,1.5,1,1,332.043232145453,320.0,32726.382337877534,5,5,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.032328657322305686,21817.58822525169,6,3,6,6_0,6_2,6_0_0 -17367,0,45.0,0.0,2,111,0.0,0.0,0.0,0,44,0.0,0.0,0.0,1515.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111184,1,1,3,0,2,,217.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,427.034429818712,0.0,10648.399609455857,0,1,5,0,64.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1422749009771073,10648.399609455857,2,1,2_0,2_1_0,2_2_0,2_0_1 -17368,2,64.0,0.0,5,111,1200.0,0.0,0.0,0,75,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,116903,2,1,0,1,1,,250.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,287.212485578301,1200.0,61631.86049279589,0,5,0,1,68.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019470449056787232,41087.906995197256,9,5,9,9_0,9_2,9_0_0 -17369,2,39.0,0.0,2,111,777.0,2084.0,0.0,43,38,0.0,0.0,1073.9493748264981,2861.0,0.0,3779.6526453660836,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,131867,2,1,1,0,1,,360.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,233.738805220497,777.0,65066.983944487394,1,1,1,2,110.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04397007247855369,30984.27806880352,8,4,8,8_1,8_2,8_0_1 -17370,2,55.0,0.0,1,111,1200.0,804.0,0.0,56,53,0.0,0.0,1658.6090730911167,2228.0,385.3532489386029,1458.1769322813489,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,120446,2,2,1,0,1,,437.0,145.0,43,2.0,3.0,5.0,3.0,2.0,3,2,223.763366753402,1200.0,40101.48982374779,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05555903308810726,20050.744911873895,5,3,5,5_1,5_3,5_1_0 -17371,2,30.0,0.0,2,120,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1664.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,119558,2,1,2,0,1,,293.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,340.149007290396,0.0,32302.83286199662,6,1,1,2,76.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051512509974245925,13459.513692498593,3,2,3_0,3_1_0,3_0_0,3_0_1 -17372,2,34.0,0.0,9,111,2040.0,770.0,0.0,67,85,0.0,207.03450096389156,2819.635424254898,3010.0,0.0,1396.5127336525356,71,2,2,2,1,1,2,2,2,0,,1,2004.0,6,115803,2,2,1,0,1,,940.0,590.0,42,1.0,0.0,5.0,10.0,3.8999999999999995,1,1,264.457412153622,2040.0,41383.1423856719,1,6,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,1,0,0.07273493085537538,10611.062150172284,2,1,2_0,2_1_0,2_3_0,2_0_0 -17373,2,65.0,0.0,1,120,600.0,0.0,0.0,77,78,0.0,983.4138795784849,829.3045365455583,1625.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102307,2,1,1,0,1,,100.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,299.675753699303,600.0,24031.567435930407,7,5,0,1,110.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06761939288114881,16021.044957286938,4,2,4_0,4_1_0,4_0_0,4_1_0 -17374,1,24.0,327.0,1,111,0.0,0.0,0.0,84,53,0.0,0.0,0.0,2108.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2000.0,1,125689,2,2,0,0,2,,0.0,550.0,42,1.0,0.0,2.0,2.0,1.5,3,2,344.295054220321,0.0,13268.2498245783,3,4,2,3,44.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.15887551318901985,8845.4998830522,1,1,1_1,1_0_1,1_3_1,1_1_0 -17375,2,88.0,0.0,1,120,600.0,1500.0,0.0,71,71,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,41,0,0,0,0,0,0,0,0,0,,1,,1,120663,2,1,4,0,2,,100.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,303.498037643307,600.0,26986.573400722056,5,5,0,1,150.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07781647446740356,17991.048933814705,4,2,4_0,4_1_0,4_0_0,4_1_0 -17376,2,83.0,0.0,1,120,420.0,0.0,0.0,0,71,6123.697995773803,0.0,580.5131755818909,4620.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120681,2,2,4,0,1,,110.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,325.416840605525,420.0,22045.89013542687,0,5,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20956286961513262,22045.89013542687,6,3,6,6_1,6_0,6_1_0 -17377,2,81.0,0.0,1,120,1000.0,1000.0,0.0,0,75,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,1,103251,2,2,3,0,1,,300.0,,11,0.0,6.0,5.0,1.0,1.0,2,2,344.525674431262,1000.0,20183.86006838692,0,5,0,1,80.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09908907380568452,20183.86006838692,5,3,5,5_1,5_0,5_1_0 -17378,2,48.0,0.0,1,111,300.0,945.0,0.0,0,46,0.0,134.5724256265295,414.65226827277917,1375.0,0.0,1713.9019913008392,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,122852,2,1,1,0,1,,212.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,272.090537539937,300.0,29259.652839502065,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04699303876031222,16255.362688612258,4,2,4_0,4_1_0,4_3_0,4_1_0 -17379,2,79.0,0.0,2,120,700.0,1100.0,0.0,75,75,0.0,186.3310508675024,967.5219593031513,1980.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,1,,2,114961,2,1,2,0,1,,110.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,303.498037643307,700.0,57492.781417198225,5,5,0,1,220.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03443910611372349,38328.520944798816,9,5,9,9_1,9_0,9_0_1 -17380,1,34.0,67.0,2,111,223.0,196.0,0.0,85,63,0.0,0.0,308.2248527494325,419.0,0.0,355.4759685661,60,0,0,0,0,0,0,0,0,0,,2,,2,121850,2,2,0,1,1,532.0,0.0,324.0,42,1.0,0.0,3.0,4.0,2.1,2,2,206.703800546864,223.0,25137.8380192536,6,1,2,3,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016668100083988092,11970.399056787428,2,1,2_1,2_0_1,2_3_1,2_0_1 -17381,2,44.0,0.0,1,120,1200.0,2000.0,0.0,85,48,0.0,398.54141435549127,1658.6090730911167,3585.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,120113,2,1,2,0,1,,300.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,362.906435184878,1200.0,64208.7698421908,6,1,1,2,150.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05583349453370683,30575.60468675752,8,4,8,8_1,8_0,8_1_0 -17382,2,56.0,0.0,1,120,792.0,0.0,0.0,54,42,4480.754631054002,0.0,1094.681988240137,3842.0,86.01635020950958,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,113844,2,1,1,0,1,,192.0,,43,3.0,1.0,8.0,6.0,2.8999999999999995,2,2,326.050624028497,792.0,70056.68201662597,1,1,1,2,220.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05484130691613699,24157.476557457238,6,3,6,6_1,6_0,6_1_0 -17383,2,91.0,0.0,1,120,250.0,0.0,0.0,0,71,3733.962192545002,0.0,345.54355689398267,2810.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108862,1,2,4,0,2,,50.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,326.593258822922,250.0,15532.361449102948,0,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1809126068310938,15532.361449102948,3,2,3_0,3_1_0,3_0_0,3_1_0 -17384,1,43.0,370.0,2,111,400.0,350.0,0.0,0,56,0.0,0.0,552.8696910303722,750.0,0.0,634.7785152966071,31,0,0,0,0,0,0,0,0,0,,2,,2,111117,2,1,0,1,1,,0.0,500.0,32,1.0,0.0,4.0,4.0,2.3,2,2,164.905659642096,400.0,12188.71682981815,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06153231800128625,5299.442099920935,1,1,1_1,1_0_1,1_3_1,1_0_1 -17385,2,56.0,0.0,6,120,1543.0,0.0,0.0,0,52,0.0,0.0,2132.694833149661,1543.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,5.0,1,,4,111075,1,2,2,0,1,,120.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,384.100231232556,1543.0,8397.3068547653,0,1,0,1,99.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.18374938854644557,8397.3068547653,1,1,1_0,1_1_0,1_0_0,1_0_0 -17386,1,58.0,350.0,1,120,460.0,1100.0,0.0,85,63,0.0,0.0,635.800144684928,1560.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,4.0,1,,1,132301,2,1,1,0,1,,120.0,400.0,42,1.0,3.0,3.0,3.0,2.0,1,1,406.073868942431,460.0,8923.107853660655,6,1,2,3,70.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17482698019390394,4461.553926830327,1,1,1_1,1_1_1,1_0_1,1_1_0 -17388,2,52.0,0.0,1,120,1550.0,0.0,0.0,85,69,0.0,1035.1725048194578,2142.370052742692,2700.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,106260,1,1,1,0,2,,150.0,,42,1.0,3.0,5.0,3.0,1.8,2,2,295.080466967606,1550.0,14673.01497506176,6,1,0,1,110.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.18401126180194846,8151.674986145422,1,1,1_0,1_1_0,1_0_0,1_1_0 -17389,1,33.0,425.0,5,111,636.0,1392.0,0.0,0,56,0.0,0.0,879.0628087382918,2028.0,0.0,2524.604837979649,20,1,2,2,1,1,2,2,2,0,,2,,3,120324,1,2,0,0,1,,0.0,396.0,32,1.0,0.0,3.0,3.0,1.6,2,2,306.187449783921,636.0,16658.045402299565,0,1,2,3,109.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.12174297470218469,10411.278376437227,2,1,2_1,2_0_1,2_3_1,2_0_0 -17390,1,43.0,390.0,1,120,480.0,0.0,0.0,0,69,0.0,0.0,663.4436292364467,530.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,129331,2,1,2,0,1,,100.0,520.0,32,1.0,0.0,4.0,3.0,1.8,2,2,293.402016070444,480.0,22125.95360469235,0,1,2,3,70.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.023953769833793763,12292.196447051305,2,1,2_1,2_1_1,2_0_1,2_1_0 -17391,1,36.0,370.0,2,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,1162.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,103429,1,3,0,1,1,1108.0,328.0,317.0,41,0.0,0.0,4.0,5.0,2.4,2,2,185.131808527986,0.0,13696.830581234739,6,6,2,3,120.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0848371448495531,5707.012742181141,1,1,1_1,1_0_1,1_3_1,1_0_1 -17392,2,55.0,0.0,1,120,400.0,1100.0,0.0,78,56,0.0,0.0,552.8696910303722,1500.0,0.0,1995.0181909321939,31,0,0,0,0,0,0,0,0,0,,1,,1,125495,2,3,3,0,1,,70.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,331.036246906614,400.0,20957.198547926957,5,1,0,1,100.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07157445192732484,13971.46569861797,3,2,3_0,3_1_0,3_0_0,3_1_0 -17393,2,79.0,0.0,8,120,490.0,100.0,0.0,71,71,0.0,766.0276535663987,677.265371512206,1330.0,0.0,181.36529008474488,70,0,0,0,0,0,0,0,0,0,,1,2002.0,6,102949,2,1,1,0,1,,200.0,,41,0.0,2.0,4.0,3.0,2.0,1,1,378.583153210041,490.0,32655.048801607067,5,5,0,1,110.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04072877085807773,16327.524400803533,4,2,4_0,4_1_0,4_0_0,4_0_0 -17394,2,26.0,0.0,1,111,1000.0,0.0,0.0,0,62,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,2,2,2,2,2,2,1,2,2,20.0,2,,1,128013,2,3,0,0,1,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,335.126965029454,1000.0,24019.019064047603,0,1,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04163367360396621,24019.019064047603,6,3,6,6_0,6_3,6_1_0 -17395,2,70.0,0.0,2,120,2000.0,0.0,0.0,77,75,0.0,414.0690019277831,2764.3484551518613,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128770,1,1,2,0,1,,136.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,358.050151565908,2000.0,29673.090760864194,5,5,0,1,133.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08088136215204644,19782.060507242797,5,3,5,5_1,5_0,5_0_1 -17396,1,68.0,50.0,1,111,633.0,0.0,0.0,0,77,0.0,310.55175144583734,874.916286055564,933.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114079,1,1,1,0,1,,280.0,223.0,21,1.0,5.0,3.0,2.0,1.5,2,2,197.795150081947,633.0,41854.819088364224,0,5,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.022291339929823684,27903.212725576148,7,4,7,7_1,7_3,7_1_0 -17397,1,28.0,250.0,6,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1070.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,129418,1,1,0,0,1,,0.0,450.0,42,1.0,0.0,3.0,4.0,2.1,3,2,269.463478131037,0.0,19753.486224871584,6,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05416765363942516,9406.422011843611,1,1,1_1,1_0_1,1_3_1,1_0_0 -17398,2,42.0,0.0,8,120,1546.0,0.0,0.0,63,45,0.0,0.0,2136.8413558323887,1646.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,121434,2,1,1,0,1,,185.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,352.73364371354,1546.0,42779.752051034906,1,1,1,2,89.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03847614633288135,18599.892196102133,4,2,4_0,4_1_0,4_0_0,4_0_0 -17399,1,38.0,243.0,1,112,504.0,1752.0,0.0,56,68,0.0,0.0,696.615810698269,2256.0,0.0,3177.5198822847306,60,2,2,2,2,2,1,2,2,2,10.0,1,,1,109736,2,2,3,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,271.76397513019,504.0,36882.85735043754,1,1,1,2,96.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.06116662758974766,17563.265404970254,4,2,4_1,4_1_1,4_0_1,4_1_0 -17400,2,62.0,0.0,1,112,386.0,0.0,0.0,0,75,0.0,1242.2070057833494,533.5192518443092,1736.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127867,2,1,3,0,2,,84.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,312.512797847454,386.0,44724.65569705796,0,5,0,1,80.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038815279244602346,44724.65569705796,10,5,10,10_1,10_0,10_1_0 -17401,1,26.0,327.0,7,111,0.0,0.0,0.0,53,54,0.0,0.0,0.0,1035.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,5,116564,1,2,0,0,2,,0.0,460.0,43,2.0,0.0,1.0,2.0,1.5,2,2,364.798028315683,0.0,12147.771668231999,4,1,2,3,32.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08520081116659935,8098.514445487999,1,1,1_1,1_0_1,1_3_1,1_0_0 -17402,2,52.0,0.0,7,112,1800.0,0.0,0.0,54,31,0.0,724.6207533736205,2487.913609636675,2590.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,2,75.0,1,,5,116247,2,2,2,0,1,,190.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,349.731207207512,1800.0,27227.17472808186,1,1,0,1,150.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09512555106676925,11837.902055687766,2,1,2_0,2_1_0,2_0_0,2_0_0 -17403,1,32.0,191.0,2,111,0.0,0.0,0.0,43,63,0.0,0.0,0.0,869.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117917,2,1,0,1,1,1416.0,0.0,380.0,43,2.0,0.0,4.0,3.0,1.8,1,1,188.412941629171,0.0,18894.27709178406,4,1,2,3,125.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04599276255866247,10496.8206065467,2,1,2_1,2_0_1,2_3_1,2_0_1 -17404,2,60.0,0.0,6,112,1200.0,0.0,0.0,0,11,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,4,100138,1,1,2,0,1,,130.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,395.298861359634,1200.0,15286.360510476032,0,1,0,1,117.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08242642185080604,15286.360510476032,3,2,3_0,3_1_0,3_0_0,3_0_0 -17405,1,44.0,211.0,1,111,1146.0,0.0,0.0,85,52,0.0,517.5862524097289,1583.9716648020164,1646.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,20.0,1,,1,108279,1,2,1,0,1,,215.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,239.013929538937,1146.0,24789.22101356996,6,1,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.06639982753386874,10328.842088987483,2,1,2_1,2_1_1,2_3_1,2_1_0 -17406,2,51.0,0.0,6,112,1371.0,0.0,0.0,45,48,0.0,258.79312620486445,1894.9608660066008,1621.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,124729,2,1,1,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,338.159260826462,1371.0,57881.374003616824,1,1,0,1,100.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028005554945857176,38587.582669077885,9,5,9,9_1,9_0,9_0_0 -17407,2,46.0,0.0,1,112,0.0,0.0,860.0,46,46,0.0,87.98966290965392,439.3854679602715,945.0,0.0,983.191366201263,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,127971,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,271.76397513019,0.0,34676.62511545472,4,1,1,2,100.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027251786956015833,15076.793528458575,3,2,3_0,3_1_0,3_0_0,3_1_0 -17408,0,83.0,0.0,1,112,350.0,0.0,0.0,0,72,1792.3018524216009,0.0,483.76097965157567,1580.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120747,1,1,2,0,2,,65.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,344.158344476295,350.0,10541.590438806405,0,5,5,0,110.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14988250674050083,10541.590438806405,2,1,2_0,2_1_0,2_0_0,2_1_0 -17410,2,79.0,0.0,2,112,720.0,0.0,0.0,78,75,2987.1697540360015,0.0,995.16544385467,2900.0,309.6588607542345,0.0,50,2,2,2,2,2,2,2,1,0,,1,,2,121368,2,1,2,0,1,,250.0,,41,0.0,3.0,5.0,3.0,2.0,1,1,346.172929969889,720.0,38966.89041851209,5,5,0,1,85.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.07442215606258103,19483.445209256046,5,3,5,5_1,5_0,5_0_1 -17411,2,81.0,0.0,7,111,1500.0,0.0,0.0,0,77,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,5,112115,2,1,0,0,1,,0.0,390.0,11,0.0,1.0,2.0,1.0,1.0,3,2,356.788057308981,1500.0,18897.769103152197,0,5,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.07937444847655568,18897.769103152197,5,3,5,5_0,5_3,5_0_0 -17412,2,56.0,0.0,6,112,750.0,0.0,0.0,77,38,2987.1697540360015,0.0,1036.630670681948,2950.0,344.06540083803833,0.0,41,2,2,2,2,1,2,2,2,0,,1,,4,121430,2,1,2,0,1,,180.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,336.902463857004,750.0,25564.24495880001,6,4,0,1,110.0,9,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.11539554580056229,17042.829972533338,4,2,4_0,4_1_0,4_0_0,4_0_0 -17413,2,58.0,0.0,6,112,590.0,0.0,0.0,67,62,0.0,641.8069529880638,815.482794269799,1330.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,120065,2,1,2,0,1,,155.0,,43,3.0,2.0,4.0,3.0,2.0,2,2,384.040495325349,590.0,92869.65668780872,1,1,0,1,80.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014321146943300729,46434.82834390436,10,5,10,10_1,10_0,10_0_0 -17414,2,60.0,0.0,6,112,1600.0,0.0,0.0,52,72,0.0,828.1380038555662,2211.478764121489,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,115234,2,1,1,0,1,,187.0,,42,1.0,1.0,6.0,3.0,1.8,2,2,388.635014598351,1600.0,41699.548660219974,1,5,1,2,114.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057554579776291984,23166.41592234443,6,3,6,6_1,6_0,6_0_0 -17415,2,30.0,0.0,6,111,800.0,0.0,0.0,42,68,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,4,114851,2,1,0,0,1,,0.0,580.0,43,2.0,0.0,2.0,2.0,1.5,1,1,354.537291625045,800.0,14994.081634634742,1,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05335438471617259,9996.054423089829,2,1,2_0,2_0_0,2_3_0,2_0_0 -17416,2,44.0,0.0,8,112,1512.0,0.0,0.0,46,47,0.0,476.1793522169506,2089.847432094807,1972.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,122224,2,1,1,0,1,,151.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,345.26828792649,1512.0,52989.08236227094,1,1,1,2,150.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03721521324936351,21195.63294490838,5,3,5,5_1,5_0,5_0_0 -17417,2,56.0,0.0,1,112,513.0,0.0,0.0,47,43,3360.5659732905015,155.27587572291867,709.0553787464523,3063.0,258.04905062852873,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,106343,1,3,3,0,1,,170.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,303.498037643307,513.0,200935.4409488317,1,1,0,1,156.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.015243702084292807,133956.96063255446,10,5,10,10_1,10_0,10_1_0 -17418,0,65.0,0.0,1,112,720.0,0.0,0.0,0,71,3883.3206802468017,0.0,995.16544385467,3410.0,154.82943037711726,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,122819,1,3,4,0,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,344.525674431262,720.0,14572.84817367537,0,5,0,1,115.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.23399681101185693,14572.84817367537,3,2,3_0,3_1_0,3_0_0,3_1_0 -17419,1,64.0,266.0,1,111,500.0,0.0,0.0,0,47,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,133537,1,3,0,0,1,,0.0,120.0,12,1.0,1.0,2.0,1.0,1.0,1,1,430.102431431821,500.0,3615.9690063510134,0,4,2,3,30.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.13827552147759295,3615.9690063510134,1,1,1_1,1_0_1,1_3_1,1_1_0 -17420,2,46.0,0.0,2,112,900.0,0.0,0.0,64,47,0.0,1035.1725048194578,1243.9568048183376,2020.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,119395,2,2,3,0,1,,160.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,383.423618533663,900.0,38336.76419723176,1,1,1,2,96.0,9,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05269093629310168,15334.705678892704,3,2,3_0,3_1_0,3_0_0,3_0_1 -17421,2,39.0,0.0,1,112,230.0,1850.0,0.0,42,37,0.0,0.0,317.900072342464,2080.0,0.0,3355.2578665677806,71,0,0,0,0,0,0,0,0,0,,1,,1,104272,2,1,1,0,1,,230.0,,43,2.0,0.0,8.0,2.0,1.5,1,1,303.498037643307,230.0,76557.68777561121,1,1,0,1,250.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027169054610118728,51038.45851707414,10,5,10,10_1,10_0,10_1_0 -17422,2,36.0,0.0,9,112,1300.0,0.0,0.0,43,62,0.0,103.51725048194578,1796.8264958487098,1400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,119749,2,1,1,0,1,,120.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,343.741553887774,1300.0,57814.36192132968,1,1,1,2,135.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024215436328866455,27530.648533966512,7,4,7,7_1,7_0,7_0_0 -17423,2,46.0,0.0,7,112,737.0,0.0,0.0,54,48,2987.1697540360015,517.5862524097289,1018.6624057234608,3237.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,114754,2,1,2,0,1,,220.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,362.906435184878,737.0,72302.72678655424,1,1,0,1,120.0,9,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0447700957331248,28921.090714621696,8,4,8,8_1,8_0,8_0_0 -17424,2,30.0,0.0,1,111,1350.0,0.0,0.0,0,46,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,123155,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,382.725370879322,1350.0,18972.936154177598,0,1,1,2,36.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.071153984234683,18972.936154177598,5,3,5,5_0,5_3,5_1_0 -17425,2,44.0,0.0,1,112,740.0,0.0,0.0,0,33,0.0,517.5862524097289,1022.8089284061887,1300.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,4,60.0,1,,1,102490,2,1,3,0,1,,150.0,,32,1.0,0.0,6.0,2.0,1.3,3,2,321.658146309479,740.0,40554.50059910101,0,1,1,2,100.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03205562837158492,31195.769691616162,8,4,8,8_1,8_0,8_1_0 -17426,2,44.0,0.0,7,111,270.0,640.0,0.0,0,43,0.0,0.0,373.1870414455012,910.0,0.0,1160.7378565423674,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,116698,1,3,0,0,2,,0.0,366.0,12,1.0,0.0,2.0,1.0,1.0,2,1,368.368964790318,270.0,31969.080393728265,0,1,2,3,51.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028465003959842552,31969.080393728265,8,4,8,8_0,8_3,8_0_0 -17427,2,62.0,0.0,2,112,320.0,1650.0,0.0,0,78,0.0,0.0,442.2957528242978,2060.0,154.82943037711726,2992.5272863982905,70,0,0,0,0,0,0,0,0,0,,1,,2,106923,2,2,2,0,1,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,398.51329610731,320.0,23009.777809604497,0,5,0,1,150.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08952715741306014,23009.777809604497,6,3,6,6_1,6_0,6_0_1 -17428,2,37.0,0.0,7,111,450.0,0.0,0.0,0,42,0.0,0.0,621.9784024091688,450.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,5,130729,2,2,0,0,1,,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,319.317088529228,450.0,27389.23013091192,0,1,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01642981558258999,27389.23013091192,7,4,7,7_0,7_3,7_0_0 -17429,2,48.0,0.0,9,112,0.0,0.0,1300.0,0,33,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,44,0,0,0,0,0,0,0,0,0,,1,2004.0,6,121065,2,1,1,0,1,,180.0,,22,2.0,2.0,5.0,2.0,1.5,1,1,383.733670042738,0.0,93124.36289858988,0,1,1,2,136.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013959827047790573,62082.90859905992,10,5,10,10_1,10_0,10_0_0 -17430,2,45.0,0.0,8,111,960.0,950.0,0.0,68,52,0.0,0.0,1326.8872584728933,1910.0,0.0,1722.9702558050765,43,0,0,0,0,0,0,0,0,3,15.0,1,2003.0,6,122967,2,1,1,0,1,,0.0,534.0,43,4.0,1.0,6.0,6.0,3.3,3,2,298.607962461391,960.0,36935.33696043806,1,1,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051711996076977094,11192.526351647897,2,1,2_0,2_1_0,2_3_0,2_0_0 -17431,2,45.0,0.0,9,112,420.0,1000.0,0.0,0,37,0.0,155.27587572291867,580.5131755818909,1570.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,133235,2,1,1,0,1,,100.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,429.932144820196,420.0,48077.67724286559,0,1,0,1,140.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03265548774474078,48077.67724286559,10,5,10,10_1,10_0,10_0_0 -17433,2,34.0,0.0,9,112,250.0,1100.0,0.0,45,55,0.0,0.0,345.54355689398267,1350.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,2,45.0,1,2004.0,6,108766,2,1,1,0,1,,100.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,337.151172366119,250.0,49649.04468065136,1,1,0,1,80.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027190855507560372,27582.802600361865,7,4,7,7_1,7_0,7_0_0 -17434,2,23.0,0.0,1,111,0.0,0.0,0.0,56,34,0.0,0.0,0.0,1430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,1,108509,2,1,0,0,1,,0.0,750.0,43,2.0,0.0,2.0,2.0,1.5,2,2,270.096894486357,0.0,15214.554964110781,1,1,2,3,50.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09398894699011505,10143.03664274052,2,1,2_0,2_0_0,2_3_0,2_1_0 -17435,2,40.0,0.0,9,112,1700.0,0.0,0.0,43,43,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,101762,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,292.49066839488,1700.0,53478.34174764967,1,1,1,2,130.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031788569810594657,29710.18985980537,8,4,8,8_1,8_0,8_0_0 -17437,2,35.0,0.0,9,112,950.0,0.0,0.0,47,46,0.0,548.6414275543126,1313.065516197134,1480.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,110166,2,1,1,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,320.726837634223,950.0,59549.381430303765,1,1,1,2,125.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024853322812969654,28356.848300144648,8,4,8,8_1,8_0,8_0_0 -17438,1,54.0,270.0,5,111,280.0,600.0,0.0,0,56,0.0,0.0,387.00878372126056,880.0,0.0,1088.1917405084694,70,0,0,0,0,0,0,0,0,0,,2,,3,114413,2,3,0,0,1,,0.0,328.0,12,1.0,3.0,3.0,1.0,1.0,2,2,320.682139219,280.0,5655.670345358841,0,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15559605603996104,5655.670345358841,1,1,1_1,1_0_1,1_3_1,1_0_0 -17439,2,34.0,0.0,6,112,1000.0,0.0,0.0,46,46,0.0,828.1380038555662,1382.1742275759307,1800.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,20.0,1,,4,106249,1,3,4,0,1,,75.0,,43,2.0,0.0,5.0,2.0,1.5,4,4,358.050151565908,1000.0,48714.1765040681,1,1,1,2,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03695022946451087,32476.11766937873,8,4,8,8_1,8_0,8_0_0 -17440,2,45.0,0.0,7,112,540.0,0.0,0.0,85,11,3435.2452171414016,0.0,746.3740828910024,2960.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,5,124853,2,1,3,0,1,,230.0,,42,1.0,0.0,6.0,4.0,2.5,3,3,358.27389264387,540.0,136694.26270616255,7,1,0,1,160.0,9,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021654164128035162,54677.70508246502,10,5,10,10_1,10_0,10_0_0 -17442,2,57.0,0.0,1,112,400.0,600.0,0.0,78,56,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,111289,2,1,2,0,1,,120.0,,42,2.0,2.0,5.0,3.0,2.0,2,1,295.080466967606,400.0,56126.94696042504,7,1,0,1,96.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017816753879470716,28063.47348021252,8,4,8,8_1,8_0,8_1_0 -17443,2,26.0,0.0,9,111,1080.0,0.0,0.0,0,46,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,133460,2,1,0,0,1,,0.0,720.0,12,1.0,0.0,4.0,1.0,1.0,2,2,367.242317829804,1080.0,23838.86736795391,0,1,2,3,71.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0453041658116619,23838.86736795391,6,3,6,6_0,6_3,6_0_0 -17444,1,27.0,184.0,5,112,1600.0,0.0,0.0,64,56,0.0,0.0,2211.478764121489,1700.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,100521,2,2,1,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,401.351350922615,1600.0,32591.48966785006,4,1,1,2,90.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.052160856018709956,18106.383148805588,4,2,4_1,4_1_1,4_0_1,4_0_0 -17445,1,27.0,288.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,936.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,3.0,2,,2,110857,2,1,0,1,1,650.0,0.0,292.0,32,1.0,0.0,3.0,2.0,1.3,2,2,199.530881857857,0.0,14145.394326817008,0,1,2,3,77.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0661699475019597,10881.072559090006,2,1,2_1,2_0_1,2_3_1,2_0_1 -17446,2,55.0,0.0,1,111,600.0,880.0,0.0,0,85,0.0,0.0,829.3045365455583,1480.0,0.0,1596.014552745755,71,0,0,0,0,0,0,0,0,0,,1,,1,102583,2,1,2,0,1,,260.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,426.511742553407,600.0,7599.33269050583,0,6,0,1,65.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.19475394225719675,7599.33269050583,1,1,1_0,1_1_0,1_3_0,1_1_0 -17447,2,27.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,690.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,115085,2,2,0,0,1,,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,2,2,386.696745579262,0.0,19395.733110649162,0,1,2,3,39.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03557483473626258,19395.733110649162,5,3,5,5_0,5_3,5_1_0 -17448,2,58.0,0.0,2,111,600.0,800.0,0.0,78,52,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,1,15.0,1,,2,121133,2,2,1,0,1,,250.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,458.598206178744,600.0,22036.960052977258,7,1,0,1,140.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06352963369876671,14691.306701984839,3,2,3_0,3_1_0,3_3_0,3_0_1 -17449,2,26.0,0.0,7,111,500.0,0.0,0.0,0,48,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,2,2,2,2,1,2,2,2,3,30.0,2,,5,119264,2,2,0,0,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,2,2,356.788057308981,500.0,19254.173891694918,0,1,2,3,54.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.025968395362611203,19254.173891694918,5,3,5,5_0,5_3,5_0_0 -17450,2,67.0,0.0,5,111,760.0,0.0,0.0,0,77,0.0,1004.117329674874,1050.452412957707,1820.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125471,2,2,1,0,1,,260.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,571.877611478167,760.0,25774.74479766031,0,5,0,1,55.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07061175636412934,25774.74479766031,7,4,7,7_1,7_3,7_0_0 -17451,0,30.0,0.0,6,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,357.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,113458,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,347.196822040076,0.0,55204.98999770646,0,1,5,0,72.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006466806714661697,55204.98999770646,10,5,10,10_0,10_3,10_0_0 -17452,2,29.0,0.0,6,111,750.0,706.0,0.0,69,43,0.0,0.0,1036.630670681948,1456.0,0.0,1280.438947998299,44,0,0,0,0,0,0,0,0,2,12.0,1,,4,113876,2,1,2,0,2,,462.0,500.0,43,2.0,0.0,5.0,4.0,2.1,4,2,439.660834203873,750.0,35268.01005339585,1,1,2,3,180.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041283871638791436,16794.29050161707,4,2,4_0,4_1_0,4_3_0,4_0_0 -17454,2,49.0,0.0,2,111,1700.0,0.0,0.0,55,62,0.0,0.0,2349.696186879082,1850.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,116255,2,1,3,0,1,,900.0,,43,2.0,1.0,4.0,4.0,2.5,2,2,310.647870397474,1700.0,54094.26534420083,1,1,1,2,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034199558645051996,21637.706137680332,6,3,6,6_1,6_3,6_0_1 -17456,2,55.0,0.0,1,111,0.0,0.0,2500.0,54,37,0.0,0.0,1277.2833370938126,2500.0,0.0,2858.1144366315784,42,0,0,0,0,0,0,0,0,2,60.0,1,,1,109316,2,2,4,0,1,,300.0,,43,2.0,2.0,6.0,2.0,1.5,3,3,483.969125022936,0.0,120115.40190729917,1,1,1,2,240.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020813317528832913,80076.93460486611,10,5,10,10_1,10_3,10_1_0 -17457,1,37.0,81.0,1,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,730.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,122977,1,3,0,0,2,,0.0,640.0,43,2.0,0.0,2.0,2.0,1.5,3,3,293.761676941746,0.0,34183.80692115095,1,1,2,3,49.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.021355140510939362,22789.204614100632,6,3,6,6_0,6_3,6_1_0 -17458,2,45.0,0.0,9,111,0.0,0.0,0.0,22,65,0.0,0.0,0.0,622.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,2007.0,6,118923,2,2,5,0,1,,313.0,636.0,43,2.0,1.0,3.0,2.0,1.5,4,3,308.525909976941,0.0,12767.155421867068,1,1,2,3,44.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04871876149754263,8511.43694791138,1,1,1_0,1_1_0,1_3_0,1_0_0 -17460,2,57.0,0.0,1,111,750.0,1200.0,0.0,48,42,0.0,10.351725048194577,1036.630670681948,1960.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,109690,2,1,1,0,1,,360.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,377.652390249389,750.0,79775.17331166491,1,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024569047219022516,53183.448874443275,10,5,10,10_1,10_3,10_1_0 -17461,2,90.0,0.0,2,111,0.0,0.0,0.0,77,72,0.0,82.81380038555662,0.0,1202.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128090,2,1,2,0,1,,314.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,441.088015424878,0.0,56471.92627555992,5,5,0,1,79.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0212849123320981,37647.95085037328,9,5,9,9_1,9_3,9_0_1 -17462,2,86.0,0.0,1,111,192.0,170.0,0.0,0,78,0.0,310.55175144583734,265.37745169457867,662.0,0.0,308.32099314406634,50,0,0,0,0,0,0,0,0,0,,2,,1,120474,1,2,0,0,2,,0.0,141.0,11,0.0,2.0,4.0,1.0,1.0,2,2,340.093060379638,192.0,17588.544771854224,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03763813371640356,17588.544771854224,4,2,4_0,4_0_0,4_3_0,4_1_0 -17463,2,68.0,0.0,2,111,660.0,0.0,0.0,77,75,3733.962192545002,517.5862524097289,912.2349902001142,3810.0,258.04905062852873,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,108819,2,2,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,403.646760329635,660.0,20222.96231182507,5,5,0,1,80.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.1883996983850462,13481.974874550047,3,2,3_0,3_1_0,3_3_0,3_0_1 -17464,2,50.0,0.0,2,111,435.0,1330.0,0.0,56,63,0.0,0.0,601.2457889955298,1765.0,0.0,2412.158358127107,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,109237,2,1,2,0,1,,516.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,458.296742548222,435.0,32674.36173118937,1,1,0,1,106.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054017887618450895,16337.180865594684,4,2,4_0,4_1_0,4_3_0,4_0_1 -17465,2,57.0,0.0,2,111,200.0,0.0,0.0,0,85,0.0,0.0,276.4348455151861,800.0,1032.196202514115,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,133083,2,1,2,0,2,,135.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,578.191473904289,200.0,8888.128849093951,0,6,0,1,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0900076960609714,8888.128849093951,1,1,1_0,1_1_0,1_3_0,1_0_1 -17466,1,38.0,104.0,5,111,500.0,0.0,0.0,0,68,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,2,2,2,2,2,2,2,1,3,10.0,2,,3,130035,2,1,0,1,1,359.0,0.0,339.0,32,1.0,0.0,3.0,2.0,1.3,1,1,242.936838958087,500.0,24282.68529138643,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.020590803446987813,18678.98868568187,4,2,4_1,4_0_1,4_3_1,4_0_0 -17467,1,51.0,98.0,1,111,300.0,610.0,0.0,0,54,0.0,0.0,414.65226827277917,910.0,0.0,1106.328269516944,50,2,2,2,2,1,2,2,2,3,30.0,2,,1,121141,1,2,0,0,2,,0.0,576.0,32,2.0,0.0,2.0,3.0,2.0,2,2,300.418804971636,300.0,20443.493780740802,0,1,2,3,48.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.04451293941044869,10221.746890370401,2,1,2_1,2_0_1,2_3_1,2_1_0 -17468,2,47.0,0.0,2,111,750.0,0.0,0.0,0,64,0.0,0.0,1036.630670681948,750.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,,2,107461,2,2,5,0,1,,0.0,434.0,32,2.0,3.0,2.0,2.0,1.5,4,3,484.955969205422,750.0,18597.921378302653,0,1,2,3,29.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.04032708735262161,12398.614252201769,2,1,2_0,2_1_0,2_3_0,2_0_1 -17469,1,47.0,434.0,5,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,238.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,128884,1,3,0,1,1,600.0,0.0,454.0,32,2.0,0.0,5.0,4.0,2.3,4,4,263.336216337854,0.0,26357.979603115484,0,4,2,3,87.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009029523642694855,11459.991131789342,2,1,2_1,2_0_1,2_3_1,2_0_0 -17470,2,57.0,0.0,5,111,444.0,180.0,0.0,0,68,0.0,0.0,613.6853570437131,624.0,0.0,326.4575221525408,31,2,2,1,2,1,2,2,2,0,,8,,3,122252,1,1,0,1,1,911.0,0.0,408.0,12,1.0,4.0,5.0,1.0,1.0,3,2,313.774092713776,444.0,6046.957107914801,0,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.10319239724443435,6046.957107914801,1,1,1_0,1_0_0,1_3_0,1_0_0 -17471,2,57.0,0.0,6,111,2464.0,0.0,0.0,77,62,0.0,310.55175144583734,3405.677296747093,2764.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,4,124984,2,1,2,0,1,,340.0,,42,1.0,3.0,6.0,2.0,1.5,4,3,360.333538387123,2464.0,46274.56044361475,5,1,0,1,170.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05973044310961994,30849.706962409833,8,4,8,8_1,8_3,8_0_0 -17472,2,61.0,0.0,2,111,389.0,1093.0,0.0,0,74,0.0,0.0,537.665774527037,1482.0,0.0,1982.3226206262616,60,0,0,0,0,0,0,0,0,0,,1,,2,123147,2,1,4,0,1,,157.0,,11,0.0,0.0,6.0,1.0,1.0,3,3,325.509883798307,389.0,99609.40817495888,0,5,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014878112691894946,99609.40817495888,10,5,10,10_1,10_3,10_0_1 -17473,2,62.0,0.0,1,111,0.0,0.0,0.0,0,78,7467.924385090004,0.0,0.0,5994.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,5,,1,116807,2,1,2,0,1,,77.0,,11,0.0,0.0,10.0,1.0,1.0,2,2,450.663358292778,0.0,23485.444287461694,0,5,0,1,200.0,8,7,3,1,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.255221912203724,23485.444287461694,6,3,6,6_1,6_3,6_1_0 -17474,2,37.0,0.0,2,111,321.0,0.0,0.0,56,68,0.0,0.0,443.6779270518737,710.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,131001,1,2,0,0,1,,0.0,278.0,43,2.0,0.0,3.0,2.0,1.5,2,2,233.060428578917,321.0,32517.809943483055,1,1,2,3,51.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021834188748688848,21678.539962322036,6,3,6,6_0,6_3,6_0_1 -17475,2,76.0,0.0,1,111,600.0,1000.0,0.0,77,75,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,1,129673,2,2,4,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,426.998703305041,600.0,27608.116548607468,6,5,0,1,95.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05795397151352227,18405.41103240498,4,2,4_0,4_1_0,4_3_0,4_1_0 -17476,1,33.0,148.0,2,111,324.0,0.0,0.0,0,85,0.0,0.0,447.8244497346015,324.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113348,2,1,0,1,1,377.0,0.0,346.0,11,0.0,0.0,3.0,1.0,1.0,2,2,198.024958482269,324.0,10817.940106439208,0,7,2,3,64.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029950249013409137,10817.940106439208,2,1,2_1,2_0_1,2_3_1,2_0_1 -17477,2,52.0,0.0,5,111,0.0,0.0,1800.0,77,38,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,42,0,0,0,0,0,0,0,0,2,15.0,1,,3,131021,2,1,2,0,1,,800.0,,42,2.0,0.0,5.0,4.0,2.5,2,2,467.735626313765,0.0,72674.18522723849,6,1,1,2,140.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024768079537069995,29069.674090895394,8,4,8,8_1,8_3,8_0_0 -17478,2,84.0,0.0,2,111,0.0,0.0,2163.0,0,75,0.0,0.0,1105.1055432535666,2163.0,0.0,2472.8406105736417,50,0,0,0,0,0,0,0,0,0,,1,,2,105935,2,1,2,0,2,,0.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,543.420597639825,0.0,46591.81050304336,0,5,0,1,135.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046424467661730244,46591.81050304336,10,5,10,10_1,10_3,10_0_1 -17479,1,21.0,270.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,158.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,3,112606,1,1,0,1,1,31.0,0.0,251.0,12,1.0,0.0,2.0,1.0,1.0,4,3,311.352130325695,0.0,16093.05860043902,0,1,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009817897512390202,16093.05860043902,4,2,4_1,4_0_1,4_3_1,4_0_0 -17480,1,38.0,245.0,2,111,300.0,0.0,0.0,0,55,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,107988,2,1,0,1,1,1136.0,286.0,400.0,32,1.0,0.0,3.0,2.0,1.3,3,2,199.530881857857,300.0,19567.92963484495,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015331208032646685,15052.253565265346,3,2,3_1,3_0_1,3_3_1,3_0_1 -17481,1,58.0,271.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,294.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,105474,1,3,0,1,1,,0.0,351.0,31,2.0,3.0,4.0,3.0,2.0,2,2,215.638406081163,0.0,17669.697738633688,0,7,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016638654738116283,8834.848869316844,1,1,1_1,1_0_1,1_3_1,1_0_1 -17482,2,56.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1679.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,112234,2,2,1,0,1,,121.0,,32,2.0,1.0,2.0,2.0,1.5,2,2,268.458424107986,0.0,21693.31251450136,0,1,0,1,65.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0773971240619724,14462.208343000906,3,2,3_0,3_1_0,3_3_0,3_0_0 -17483,1,35.0,491.0,2,111,648.0,0.0,0.0,0,81,0.0,0.0,895.648899469203,648.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,109788,2,1,0,1,1,,0.0,800.0,32,1.0,0.0,4.0,4.0,2.1,2,2,249.753159938268,648.0,16101.660932694715,0,4,2,3,87.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.040244295461732416,7667.457586997482,1,1,1_1,1_0_1,1_3_1,1_0_1 -17484,2,49.0,0.0,2,111,293.0,1200.0,0.0,55,62,0.0,0.0,404.97704867974767,3149.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,2,118703,2,1,3,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,340.005297897386,293.0,44703.110972423754,1,1,0,1,77.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07044252472590869,29802.073981615835,8,4,8,8_1,8_3,8_0_1 -17485,2,33.0,0.0,2,111,245.0,0.0,0.0,0,46,0.0,0.0,338.632685756103,277.0,0.0,0.0,33,2,2,2,1,2,2,2,2,2,10.0,2,,2,106802,1,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,281.682291332778,245.0,21396.23313685365,0,1,1,2,52.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012946204045743226,21396.23313685365,6,3,6,6_0,6_3,6_0_1 -17486,2,70.0,0.0,2,111,396.0,1212.0,0.0,0,75,0.0,0.0,547.3409941200684,1608.0,0.0,2198.1473158271083,44,0,0,0,0,0,0,0,0,0,,1,,2,132075,2,2,5,0,1,,264.0,699.0,11,0.0,0.0,5.0,1.0,1.0,2,1,342.402794662668,396.0,24086.474993214993,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06675945734911246,24086.474993214993,6,3,6,6_1,6_3,6_0_1 -17487,2,56.0,0.0,2,111,556.0,513.0,0.0,42,54,0.0,362.31037668681023,768.4888705322173,1419.0,0.0,930.4039381347413,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,114408,1,3,3,0,1,,336.0,,43,2.0,2.0,7.0,2.0,1.5,4,4,483.969125022936,556.0,80585.46062659794,1,1,0,1,114.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0176086354655848,53723.64041773196,10,5,10,10_1,10_3,10_0_1 -17488,2,56.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,537.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110813,2,1,0,1,1,,0.0,480.0,21,0.0,0.0,3.0,2.0,1.5,2,2,199.530881857857,0.0,9797.692843818293,0,7,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05480882168487371,6531.795229212195,1,1,1_0,1_0_0,1_3_0,1_0_1 -17489,2,41.0,0.0,2,111,812.0,2200.0,0.0,63,46,0.0,0.0,1122.3254727916556,3012.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,102976,2,2,3,0,1,,457.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,453.592907470195,812.0,44654.42881419394,1,1,1,2,122.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06745131625203098,21264.013721044732,5,3,5,5_1,5_3,5_0_1 -17490,1,61.0,69.0,2,111,480.0,0.0,0.0,0,77,0.0,0.0,663.4436292364467,722.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,100367,1,3,0,1,2,,0.0,,21,1.0,1.0,2.0,2.0,1.5,1,1,219.702355445703,480.0,10856.286218761245,0,5,1,2,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.066505247324106,7237.52414584083,1,1,1_1,1_0_1,1_3_1,1_0_1 -17491,1,58.0,97.0,5,111,99.0,0.0,0.0,0,68,0.0,0.0,136.8352485300171,362.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,115650,2,3,0,1,1,1167.0,0.0,326.0,12,1.0,2.0,4.0,1.0,1.0,2,2,302.050691560305,99.0,13044.627877981418,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027750887444710874,13044.627877981418,2,1,2_1,2_0_1,2_3_1,2_0_0 -17492,2,77.0,0.0,2,111,510.0,0.0,0.0,0,86,5974.339508072003,103.51725048194578,704.9088560637246,4785.0,301.05722573328353,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,126727,2,1,2,0,1,,276.0,,11,0.0,7.0,7.0,1.0,1.0,1,1,543.420597639825,510.0,33005.820588430055,0,6,0,1,136.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14497442919741696,33005.820588430055,8,4,8,8_1,8_3,8_0_1 -17493,2,32.0,0.0,2,111,390.0,1163.0,0.0,55,63,0.0,0.0,539.0479487546129,1553.0,0.0,2109.278323685583,50,2,2,2,2,1,2,2,2,2,15.0,1,,2,109016,1,3,2,0,2,,252.0,691.0,43,2.0,0.0,5.0,4.0,2.1,2,2,286.227805964968,390.0,37051.7550868509,1,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.04191434377021282,17643.692898500427,4,2,4_0,4_1_0,4_3_0,4_0_1 -17494,2,62.0,0.0,2,111,330.0,0.0,0.0,0,52,0.0,0.0,456.1174951000571,355.0,43.00817510475479,0.0,50,0,0,0,0,0,0,0,0,3,10.0,2,,2,106644,1,3,0,1,1,,0.0,680.0,12,1.0,7.0,3.0,1.0,1.0,2,2,226.639348880022,330.0,25690.768776694887,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01381819295038125,25690.768776694887,7,4,7,7_0,7_3,7_0_1 -17495,2,38.0,0.0,1,111,300.0,1400.0,0.0,54,47,0.0,0.0,414.65226827277917,1700.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,130823,2,2,1,0,1,,500.0,,43,2.0,1.0,6.0,4.0,2.1,1,1,355.945200191285,300.0,55974.56676992219,1,1,1,2,140.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030370936268031848,26654.55560472485,7,4,7,7_1,7_3,7_1_0 -17496,2,40.0,0.0,2,111,170.0,0.0,0.0,0,38,0.0,0.0,234.9696186879082,658.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,2,,2,105654,2,1,0,1,2,329.0,0.0,433.0,12,1.0,0.0,2.0,1.0,1.0,2,2,296.295638372032,170.0,53423.35919783562,0,1,2,3,52.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01231670957948032,53423.35919783562,10,5,10,10_0,10_3,10_0_1 -17497,2,86.0,0.0,2,111,261.0,0.0,0.0,0,86,0.0,0.0,360.7474733973179,261.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110101,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,287.514121131153,261.0,17611.134205664133,0,5,0,1,68.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014820169839831018,17611.134205664133,4,2,4_0,4_0_0,4_3_0,4_0_1 -17498,2,60.0,0.0,2,111,809.0,0.0,0.0,43,43,5376.905557264802,0.0,1118.178950108928,4824.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,1.0,1,,2,116059,2,2,2,0,1,,576.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,459.174786162472,809.0,124727.19776058997,1,1,0,1,140.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03867640808590537,49890.87910423599,10,5,10,10_1,10_3,10_0_1 -17499,2,29.0,0.0,2,111,0.0,0.0,0.0,64,56,0.0,0.0,0.0,192.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,121302,2,1,0,1,1,777.0,1603.0,315.0,43,2.0,0.0,3.0,3.0,1.8,1,1,196.853925086212,0.0,32143.807932269065,1,1,2,3,64.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005973156646672587,17857.671073482812,4,2,4_0,4_0_0,4_3_0,4_0_1 -17500,2,86.0,0.0,1,111,362.0,0.0,0.0,0,77,2688.452778632401,0.0,500.3470703824869,3094.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111375,1,1,1,0,1,,153.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,428.013059499172,362.0,17480.553412248915,0,5,0,1,135.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17699668466056587,17480.553412248915,4,2,4_0,4_1_0,4_3_0,4_1_0 -17501,1,37.0,359.0,2,111,100.0,300.0,0.0,85,68,0.0,0.0,138.21742275759306,1543.0,0.0,544.0958702542347,42,2,2,2,2,1,2,2,2,0,,2,,2,118777,1,2,0,1,1,337.0,0.0,361.0,42,1.0,0.0,4.0,5.0,2.4,2,2,185.131808527986,100.0,18849.192817387207,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08186026929368978,7853.830340578003,1,1,1_1,1_0_1,1_3_1,1_0_1 -17502,1,56.0,72.0,2,111,326.0,106.0,0.0,0,52,0.0,0.0,450.58879818975333,1146.0,0.0,192.24720748982958,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,109795,1,3,0,1,1,577.0,0.0,373.0,32,1.0,2.0,4.0,2.0,1.5,2,2,218.57736589066,326.0,29887.255742269757,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0383441025794551,19924.837161513173,5,3,5,5_0,5_3,5_0_1 -17503,2,32.0,0.0,1,111,1499.0,0.0,0.0,47,43,0.0,0.0,2071.87916713632,1499.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,,1,123828,2,1,0,0,1,,329.0,580.0,43,2.0,0.0,1.0,2.0,1.5,2,2,384.912443412837,1499.0,20939.574633611588,1,1,2,3,50.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07158693651750926,13959.716422407726,3,2,3_0,3_0_0,3_3_0,3_1_0 -17504,2,32.0,0.0,2,111,330.0,375.0,0.0,0,45,0.0,0.0,456.1174951000571,705.0,0.0,680.1198378177934,31,2,1,2,2,1,2,2,2,0,,2,,2,100140,1,3,0,1,1,1780.0,0.0,471.0,22,1.0,3.0,5.0,4.0,2.5,2,2,206.703800546864,330.0,44350.09032600409,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01589624721883898,17740.036130401633,4,2,4_0,4_0_0,4_3_0,4_0_1 -17505,2,28.0,0.0,2,111,0.0,0.0,0.0,68,42,0.0,0.0,0.0,218.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,129805,2,1,0,1,1,809.0,332.0,437.0,43,2.0,0.0,3.0,2.0,1.5,1,1,190.980842556935,0.0,35801.22076862418,1,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006089177835831032,23867.48051241612,6,3,6,6_0,6_3,6_0_1 -17506,2,44.0,0.0,9,111,974.0,2234.0,0.0,43,31,0.0,227.73795106028072,1346.2376976589564,3428.0,0.0,4051.700580493201,70,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,128830,2,2,1,0,1,,212.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,477.806877796352,974.0,146680.0,1,1,1,2,248.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02337060267248432,97786.66666666667,10,5,10,10_1,10_3,10_0_0 -17507,2,50.0,0.0,1,111,0.0,0.0,2350.0,67,63,0.0,0.0,1200.6463368681839,2350.0,0.0,2686.627570433684,70,2,2,2,1,2,2,1,2,2,15.0,1,,1,128358,2,2,1,0,1,,1200.0,,43,2.0,0.0,5.0,5.0,3.0,3,3,214.630752985304,0.0,47031.928136645176,1,1,1,2,87.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04996605695544481,15677.309378881726,3,2,3_0,3_1_0,3_3_0,3_1_0 -17508,2,45.0,0.0,2,111,476.0,0.0,0.0,46,38,4480.754631054002,0.0,657.9149323261429,7505.0,301.05722573328353,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129138,2,2,1,0,1,,550.0,,43,2.0,0.0,6.0,4.0,2.5,3,3,356.662915214748,476.0,80739.83766303718,1,1,0,1,150.0,7,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09295287453167372,32295.93506521487,8,4,8,8_1,8_2,8_0_1 -17509,2,36.0,0.0,1,111,1055.0,1549.0,0.0,55,55,0.0,0.0,1458.1938100926068,2604.0,0.0,2809.3483434126983,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,119100,2,2,4,0,1,,432.0,,43,2.0,0.0,6.0,4.0,2.1,4,3,264.555848230733,1055.0,35776.29006729185,4,1,1,2,140.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07278563526576178,17036.328603472306,4,2,4_0,4_1_0,4_2_0,4_1_0 -17510,1,78.0,264.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,275.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,116753,2,1,0,1,1,1312.0,636.0,373.0,11,0.0,4.0,3.0,1.0,1.0,3,3,248.153205988536,0.0,7631.368257233742,0,6,2,3,78.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036035477614296575,7631.368257233742,1,1,1_1,1_0_1,1_3_1,1_0_1 -17511,2,27.0,0.0,2,111,400.0,1049.0,0.0,54,62,0.0,0.0,552.8696910303722,1449.0,0.0,1902.5218929889738,60,0,0,0,0,0,0,0,0,0,,1,,2,100334,2,1,2,0,1,,320.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,341.994799717965,400.0,39046.56685285727,1,1,1,2,108.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03710953655568231,26031.044568571513,7,4,7,7_1,7_2,7_0_1 -17512,0,28.0,0.0,2,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,1910.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,123447,1,2,2,0,2,,197.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,302.490810091985,0.0,45626.71582699548,1,1,5,0,85.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041861439408486426,30417.81055133032,8,4,8,8_1,8_3,8_0_1 -17513,2,50.0,0.0,2,111,0.0,0.0,1700.0,56,63,0.0,0.0,868.5526692237926,1700.0,0.0,1943.5178169094734,50,2,2,2,2,1,1,2,2,2,15.0,1,,2,133227,1,1,4,0,2,,700.0,560.0,43,2.0,0.0,7.0,5.0,3.0,1,1,349.383038769341,0.0,30791.713219409303,1,1,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.05520965942643357,10263.904406469768,2,1,2_0,2_1_0,2_2_0,2_0_1 -17514,0,77.0,0.0,1,111,840.0,1676.0,0.0,86,78,0.0,0.0,1161.0263511637818,2516.0,0.0,3039.6822618203246,10,0,0,0,0,0,0,0,0,0,,1,,1,126468,2,1,2,0,1,,924.0,,41,0.0,8.0,6.0,2.0,1.5,1,1,319.925338464486,840.0,33256.788644983666,6,5,5,0,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07565372672804668,22171.19242998911,6,3,6,6_1,6_3,6_1_0 -17515,2,46.0,0.0,5,111,1033.0,0.0,0.0,54,33,1642.9433647198007,51.75862524097289,1427.7859770859363,2283.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,3,108771,2,1,2,0,1,,657.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,356.662915214748,1033.0,83366.14032481858,1,1,1,2,160.0,7,6,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027385218880288473,33346.456129927436,8,4,8,8_1,8_2,8_0_0 -17516,2,33.0,0.0,1,111,1400.0,0.0,0.0,54,46,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,1,,1,112381,2,2,5,0,1,,490.0,,43,2.0,0.0,3.0,2.0,1.5,4,3,265.796830444898,1400.0,31019.79860850583,4,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04513246580576158,20679.865739003886,5,3,5,5_1,5_3,5_1_0 -17517,2,43.0,0.0,2,111,740.0,760.0,0.0,54,62,0.0,0.0,1022.8089284061887,1500.0,0.0,1378.376204644061,50,0,0,0,0,0,0,0,0,0,,1,,2,107389,2,2,4,0,1,,460.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,212.100249842698,740.0,61761.37650543678,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024287023458228085,26852.77239366817,7,4,7,7_1,7_3,7_0_1 -17518,2,55.0,0.0,1,111,430.0,300.0,0.0,77,62,0.0,0.0,594.3349178576501,730.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,107999,2,1,2,0,1,,368.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,215.396843599042,430.0,28976.080546469668,6,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025193193359235755,19317.38703097978,5,3,5,5_1,5_2,5_1_0 -17519,2,53.0,0.0,1,111,413.0,1120.0,0.0,0,54,0.0,0.0,570.8379559888593,1533.0,0.0,2031.2912489491428,50,0,0,0,0,0,0,0,0,2,6.0,2,,1,132542,1,2,0,0,1,,0.0,553.0,32,1.0,2.0,3.0,2.0,1.5,3,2,329.573879075158,413.0,29035.71926406778,0,1,2,3,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05279703891809957,19357.146176045186,5,3,5,5_0,5_3,5_1_0 -17520,2,43.0,0.0,1,111,550.0,1450.0,0.0,37,47,0.0,0.0,760.1958251667618,2000.0,0.0,2629.7967062288008,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,114010,2,2,2,0,1,,382.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,212.547713824793,550.0,53627.600087964034,1,1,1,2,81.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037294229029817653,29793.111159980017,8,4,8,8_1,8_2,8_1_0 -17521,2,56.0,0.0,1,111,182.0,242.0,0.0,78,67,0.0,414.0690019277831,251.55570941881936,824.0,0.0,438.90400200508265,50,2,2,2,2,1,2,2,2,3,45.0,1,,1,101222,1,2,2,0,2,,88.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,325.881527816194,182.0,12805.814724324506,6,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.06434576930391012,8537.209816216337,1,1,1_0,1_1_0,1_3_0,1_1_0 -17522,2,60.0,0.0,2,111,900.0,1539.0,0.0,71,69,0.0,0.0,1243.9568048183376,2439.0,0.0,2791.211814404224,71,0,0,0,0,0,0,0,0,1,2.0,1,,2,103648,2,1,1,0,1,,480.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,377.068504720347,900.0,65472.94786969652,5,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03725202666686199,43648.631913131016,10,5,10,10_1,10_2,10_0_1 -17523,0,95.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,3208.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,122632,2,1,3,0,2,,149.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,427.006580391646,0.0,29037.26141702348,0,5,5,0,100.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11047873812642907,29037.26141702348,8,4,8,8_1,8_2,8_0_1 -17524,2,55.0,0.0,1,111,393.0,0.0,0.0,75,22,0.0,0.0,543.1944714373407,2493.0,3612.6867087994024,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,129989,2,2,2,0,1,,384.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,290.900046792339,393.0,42956.358931618306,5,1,0,1,95.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05803564505940961,28637.57262107887,8,4,8,8_1,8_2,8_1_0 -17525,2,60.0,0.0,6,111,1035.0,0.0,0.0,85,38,0.0,170.80346329521052,1430.5503255410881,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,117449,2,1,2,0,1,,280.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,422.62216182268,1035.0,32670.378704795927,6,4,0,1,130.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03673052004823694,21780.25246986395,6,3,6,6_1,6_2,6_0_0 -17526,2,57.0,0.0,2,111,312.0,0.0,0.0,0,52,0.0,0.0,431.23835900369033,655.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,109509,2,1,0,1,1,,204.0,435.0,12,1.0,2.0,3.0,1.0,1.0,2,2,226.639348880022,312.0,16314.88627959802,0,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040147383731328,16314.88627959802,4,2,4_0,4_0_0,4_3_0,4_0_1 -17527,2,57.0,0.0,1,111,1317.0,150.0,0.0,77,47,0.0,766.0276535663987,1820.3234577175006,2207.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,1,,1,129066,2,1,3,0,1,,271.0,,42,1.0,5.0,5.0,3.0,2.0,1,1,248.272944786162,1317.0,18417.58436305847,6,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11983113292678844,9208.792181529236,1,1,1_0,1_1_0,1_2_0,1_1_0 -17528,1,46.0,33.0,9,111,1100.0,1500.0,0.0,85,63,0.0,0.0,1520.3916503335236,2600.0,0.0,2720.4793512711735,31,2,2,1,2,1,2,2,2,0,,1,2006.0,6,126547,2,1,1,0,1,,350.0,,42,1.0,0.0,6.0,5.0,3.0,2,2,277.973526402325,1100.0,28849.033772158025,6,1,1,2,160.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.09012433555085785,9616.344590719342,1,1,1_1,1_1_1,1_2_1,1_0_0 -17529,2,56.0,0.0,1,111,360.0,0.0,0.0,0,63,0.0,0.0,497.582721927335,360.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,125212,1,2,0,0,2,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,386.143522558265,360.0,17982.547807747145,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020019410144145797,17982.547807747145,4,2,4_0,4_0_0,4_3_0,4_1_0 -17530,2,64.0,0.0,1,111,700.0,0.0,0.0,0,75,2688.452778632401,0.0,967.5219593031513,2560.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110592,2,3,3,0,1,,150.0,700.0,11,0.0,3.0,7.0,1.0,1.0,1,1,363.853112377554,700.0,26301.0,0,5,2,3,180.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09733470210258165,26301.0,7,4,7,7_1,7_2,7_1_0 -17531,1,22.0,270.0,6,111,330.0,700.0,0.0,0,45,0.0,0.0,456.1174951000571,1030.0,0.0,1269.5570305932142,30,2,2,2,2,1,2,2,2,2,5.0,2,,4,126752,1,3,0,0,2,,500.0,305.0,12,1.0,0.0,2.0,1.0,1.0,2,2,399.655220988673,330.0,11559.2,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.08910651256142293,11559.2,2,1,2_1,2_0_1,2_3_1,2_0_0 -17532,1,60.0,270.0,2,111,1483.0,0.0,0.0,0,86,0.0,0.0,2049.764379495105,1579.0,165.1513924022584,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,108291,2,2,5,0,1,,372.0,282.0,11,0.0,0.0,2.0,1.0,1.0,1,1,287.746074494486,1483.0,11793.183486238533,0,7,2,3,50.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.13389090416871197,11793.183486238533,2,1,2_1,2_1_1,2_2_1,2_0_1 -17533,2,29.0,0.0,5,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,747.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,8,,3,113269,1,1,0,0,1,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,2,2,442.461486893679,0.0,22947.40819729763,0,1,2,3,58.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032552695867761196,22947.40819729763,6,3,6,6_0,6_3,6_0_0 -17534,2,58.0,0.0,6,111,1378.0,0.0,0.0,77,63,0.0,0.0,1904.6360855996322,1378.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130479,2,2,3,0,1,,456.0,,42,2.0,2.0,5.0,3.0,2.0,1,1,317.478581044385,1378.0,24312.602285975045,6,4,0,1,108.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056678424785277404,12156.301142987522,2,1,2_0,2_1_0,2_2_0,2_0_0 -17535,0,59.0,0.0,1,111,300.0,0.0,0.0,0,64,0.0,517.5862524097289,414.65226827277917,950.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122705,1,2,4,0,2,,300.0,,12,1.0,3.0,2.0,1.0,1.0,2,2,430.848884779502,300.0,18864.925236003415,0,4,5,0,50.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05035800503396323,18864.925236003415,5,3,5,5_1,5_2,5_1_0 -17536,2,42.0,0.0,5,111,1134.6,658.0,0.0,54,22,0.0,776.3793786145933,1568.2148786076507,2543.0,0.0,1193.3836087576215,31,0,0,0,0,0,0,0,0,0,,1,,3,105976,2,1,1,0,1,,353.0,,43,2.0,1.0,4.0,3.0,1.8,1,1,379.307841010109,1134.6,58673.08014238253,1,1,1,2,120.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0433418527513619,32596.155634656963,8,4,8,8_1,8_2,8_0_0 -17537,2,62.0,0.0,1,111,596.0,656.0,0.0,85,77,0.0,465.827627168756,823.7758396352547,1702.0,0.0,1189.7563029559265,50,0,0,0,0,0,0,0,0,0,,1,,1,122036,2,1,4,0,1,,180.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,313.461272416936,596.0,21671.072946075303,6,5,0,1,90.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07853787416225912,14447.381964050202,3,2,3_0,3_1_0,3_2_0,3_1_0 -17538,2,34.0,0.0,5,111,744.0,800.0,0.0,55,62,0.0,745.3242034700096,1028.3376253164924,2324.0,103.2196202514115,1450.922320677959,70,0,0,0,0,0,0,0,0,2,15.0,1,,3,121151,2,2,3,0,1,,321.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,255.5469006717,744.0,40265.71922136887,1,1,1,2,90.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05771658981734174,16777.383008903696,4,2,4_0,4_1_0,4_2_0,4_0_0 -17539,2,30.0,0.0,5,111,700.0,0.0,0.0,0,65,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,101722,2,1,0,0,1,,380.0,310.0,12,1.0,0.0,2.0,1.0,1.0,2,2,525.609493944659,700.0,22572.278737101173,0,1,2,3,38.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031011490162463632,22572.278737101173,6,3,6,6_0,6_3,6_0_0 -17540,2,24.0,0.0,1,111,482.0,0.0,0.0,0,56,0.0,0.0,666.2079776915986,482.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,126854,1,2,0,0,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,312.381448043001,482.0,14067.868740205453,0,1,2,3,28.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034262474927880274,14067.868740205453,3,2,3_0,3_0_0,3_3_0,3_1_0 -17541,1,52.0,450.0,6,111,400.0,1000.0,0.0,0,52,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,50,1,2,2,2,1,2,2,2,0,,1,,4,133143,2,1,2,0,2,,0.0,414.0,32,1.0,0.0,6.0,6.0,3.5,2,2,283.335151565498,400.0,9402.572482232685,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.14889542225231148,2686.44928063791,1,1,1_1,1_1_1,1_3_1,1_0_0 -17542,1,48.0,434.0,2,111,1200.0,0.0,0.0,0,85,0.0,0.0,1658.6090730911167,1370.0,292.4555907123326,0.0,42,2,2,1,2,2,2,2,1,0,,1,,2,105531,2,1,2,0,1,,1000.0,464.0,31,1.0,1.0,3.0,3.0,2.0,2,2,241.991236279387,1200.0,9252.142653273044,0,6,2,3,60.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.1480738085588583,4626.071326636522,1,1,1_1,1_1_1,1_2_1,1_0_1 -17543,2,29.0,0.0,1,111,1200.0,0.0,0.0,85,62,4757.0678333023325,0.0,1658.6090730911167,4565.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100825,2,1,3,0,1,,1200.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,378.707346597254,1200.0,40603.12453627476,6,1,1,2,80.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1124297711601391,22557.291409041532,6,3,6,6_1,6_2,6_1_0 -17544,2,85.0,0.0,5,111,184.0,65.0,0.0,0,75,0.0,0.0,254.32005787397122,249.0,0.0,117.88743855508417,20,0,0,0,0,0,0,0,0,0,,2,,3,122210,2,1,0,1,1,,0.0,593.0,11,0.0,0.0,3.0,1.0,1.0,1,1,308.859328028593,184.0,14920.20889628837,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01668877438183473,14920.20889628837,3,2,3_0,3_0_0,3_3_0,3_0_0 -17545,2,69.0,0.0,1,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,1111.0,464.48829113135173,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,125379,2,2,4,0,2,,100.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,234.70955895846,0.0,35186.82518271839,5,5,0,1,45.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03157431778032805,23457.883455145595,6,3,6,6_1,6_2,6_1_0 -17546,2,67.0,0.0,1,111,495.0,1091.0,0.0,68,78,0.0,0.0,684.1762426500857,1586.0,0.0,1978.6953148245668,10,0,0,0,0,0,0,0,0,0,,1,,1,115471,2,1,2,0,1,,131.0,,42,3.0,0.0,5.0,4.0,2.5,2,2,228.175072522604,495.0,51500.64250683683,1,5,0,1,104.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03079573230158157,20600.257002734732,5,3,5,5_1,5_3,5_1_0 -17547,2,86.0,0.0,6,111,600.0,0.0,0.0,0,71,0.0,414.0690019277831,829.3045365455583,1031.0,53.330137129895945,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,128594,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,287.048869606493,600.0,20206.002914965644,0,5,0,1,200.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051024440822800554,20206.002914965644,5,3,5,5_1,5_2,5_0_0 -17548,1,44.0,373.0,1,111,4060.0,0.0,0.0,0,67,0.0,828.1380038555662,5611.627363958278,4860.0,0.0,0.0,10,2,2,2,1,2,2,2,2,3,15.0,1,,1,108639,1,3,3,0,2,,604.0,454.0,32,3.0,1.0,9.0,4.0,2.3,3,2,204.774984022663,4060.0,26619.458021203718,0,1,2,3,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.18257321377951305,11573.677400523356,2,1,2_1,2_1_1,2_3_1,2_1_0 -17549,2,73.0,0.0,1,111,1030.0,2336.0,0.0,72,75,0.0,0.0,1423.6394544032084,3494.0,220.20185653634454,4236.693176379641,60,0,0,0,0,0,0,0,0,0,,1,,1,104291,1,2,4,0,2,,407.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,258.630409982353,1030.0,45045.99667770346,5,5,0,1,90.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07756516133939678,30030.664451802306,8,4,8,8_1,8_2,8_1_0 -17550,1,47.0,540.0,1,111,900.0,2000.0,0.0,85,81,0.0,0.0,1243.9568048183376,2900.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,1,133455,2,1,2,0,1,,800.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,1,1,262.070068405927,900.0,17932.48781900612,6,4,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.16171766178066907,6641.662155187453,1,1,1_1,1_1_1,1_3_1,1_1_0 -17551,1,40.0,120.0,1,111,1100.0,900.0,0.0,64,62,0.0,0.0,1520.3916503335236,2000.0,0.0,1632.287610762704,41,2,2,2,2,1,2,2,1,2,15.0,1,,1,128236,1,2,4,0,1,,588.0,348.0,43,3.0,2.0,5.0,4.0,2.3,1,1,225.122442573317,1100.0,31055.965709533375,1,1,2,3,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.06439986502773772,13502.593786753643,3,2,3_1,3_1_1,3_2_1,3_1_0 -17552,2,64.0,0.0,1,111,451.0,1117.0,0.0,0,75,0.0,0.0,623.3605766367447,1568.0,0.0,2025.8502902466005,20,2,2,1,2,1,2,2,2,0,,1,,1,102147,2,1,2,0,1,,468.0,,21,1.0,0.0,6.0,3.0,2.0,2,2,245.958917420383,451.0,58036.43789301478,0,5,0,1,200.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.027017509291153846,29018.21894650739,8,4,8,8_1,8_2,8_1_0 -17553,2,58.0,0.0,6,111,650.0,0.0,0.0,90,56,0.0,310.55175144583734,898.4132479243549,1004.0,92.89765822627035,0.0,60,2,2,1,2,1,2,2,2,0,,1,,4,112479,2,1,2,0,1,,399.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,276.828679045452,650.0,14787.393098416862,4,4,0,1,75.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06789567257175899,9858.262065611241,2,1,2_0,2_1_0,2_2_0,2_0_0 -17554,1,27.0,270.0,9,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,344.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,8,2006.0,6,116634,2,1,0,1,1,408.0,0.0,440.0,12,1.0,1.0,2.0,1.0,1.0,1,1,430.580119240139,0.0,4876.0503749945,0,4,2,3,28.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07054890198922278,4876.0503749945,1,1,1_1,1_0_1,1_3_1,1_0_0 -17555,2,56.0,0.0,1,111,687.0,366.0,0.0,68,38,0.0,207.03450096389156,949.5536943446643,1253.0,0.0,663.7969617101663,41,0,0,0,0,0,0,0,0,2,35.0,1,,1,122675,2,1,1,0,1,,322.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,287.257496391276,687.0,87781.40812809484,1,1,0,1,127.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014274093190343475,58520.93875206323,10,5,10,10_1,10_2,10_1_0 -17556,2,59.0,0.0,1,111,600.0,0.0,0.0,78,68,0.0,496.8828023133397,829.3045365455583,1260.0,309.6588607542345,0.0,31,2,2,2,1,2,2,2,2,2,15.0,1,,1,113963,2,1,3,0,2,,600.0,,42,1.0,3.0,7.0,2.0,1.5,1,1,251.200309393287,600.0,19482.99126731761,5,1,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.06467179411580545,12988.660844878408,2,1,2_0,2_1_0,2_3_0,2_1_0 -17557,2,66.0,0.0,1,111,469.0,0.0,0.0,0,75,4779.471606457602,41.40690019277831,648.2397127331114,3821.0,192.67662446930146,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133026,2,1,4,0,1,,364.0,,21,0.0,0.0,4.0,3.0,2.0,2,2,231.604973108659,469.0,45049.2651084359,0,5,0,1,46.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08481825376735128,22524.63255421795,6,3,6,6_1,6_2,6_1_0 -17558,2,24.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,127449,1,2,0,0,2,,0.0,280.0,12,1.0,0.0,1.0,1.0,1.0,1,1,335.126965029454,0.0,5571.0888888888885,0,1,3,4,25.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07179924929896012,5571.0888888888885,1,1,1_0,1_0_0,1_3_0,1_0_1 -17559,2,42.0,0.0,1,112,600.0,0.0,0.0,55,62,2987.1697540360015,0.0,829.3045365455583,2722.0,209.8798945112034,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,126479,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,504.210711424824,600.0,23643.89693648103,1,1,1,2,110.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11512484626847308,10279.95518977436,2,1,2_0,2_1_0,2_0_0,2_1_0 -17560,2,66.0,0.0,7,112,500.0,0.0,0.0,45,74,2240.377315527001,0.0,691.0871137879653,2000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,103929,2,1,1,0,1,,120.0,,42,1.0,5.0,7.0,2.0,1.5,2,2,654.405055030308,500.0,99925.29817837325,1,5,1,2,197.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020014951533393156,66616.86545224884,10,5,10,10_1,10_0,10_0_0 -17561,2,56.0,0.0,1,112,443.0,0.0,0.0,0,43,0.0,1397.482881506268,612.3031828161372,1843.0,86.01635020950958,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,1,132533,2,3,1,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,630.411639372357,443.0,33188.619120416515,0,1,0,1,83.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055531084113898815,33188.619120416515,8,4,8,8_1,8_0,8_1_0 -17562,1,70.0,112.0,2,111,150.0,144.0,0.0,0,78,672.1131946581003,0.0,207.32613413638958,744.0,0.0,261.1660177220326,33,2,1,2,1,2,2,2,2,0,,2,,2,113325,2,2,0,1,1,44.0,180.0,269.0,11,0.0,3.0,2.0,1.0,1.0,2,2,198.024958482269,150.0,12081.093134708042,0,5,2,3,60.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06158383117356705,12081.093134708042,2,1,2_1,2_0_1,2_3_1,2_0_1 -17563,2,80.0,0.0,1,112,500.0,0.0,0.0,0,71,0.0,0.0,691.0871137879653,2300.0,3096.588607542345,0.0,41,0,0,0,0,0,0,0,0,0,,5,,1,123250,2,2,3,0,1,,80.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,611.329627085761,500.0,21671.873579645184,0,5,0,1,135.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10612834149052175,21671.873579645184,6,3,6,6_1,6_0,6_1_0 -17564,2,54.0,0.0,2,112,650.0,0.0,0.0,85,48,2389.735803228801,124.22070057833493,898.4132479243549,2370.0,0.0,0.0,41,1,2,2,1,1,2,2,2,2,20.0,1,,2,112385,1,2,1,0,1,,350.0,,42,1.0,0.0,6.0,2.0,1.5,1,1,722.470976824817,650.0,39190.6879752824,6,1,1,2,120.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06047354926493663,26127.125316854934,7,4,7,7_1,7_0,7_0_1 -17566,1,59.0,255.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1858.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133664,1,1,4,0,2,,125.0,550.0,11,0.0,2.0,4.0,1.0,1.0,1,1,577.877078118795,0.0,4897.154133533647,0,7,2,3,100.0,8,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.379404027183298,4897.154133533647,1,1,1_1,1_1_1,1_0_1,1_1_0 -17567,2,53.0,0.0,1,111,400.0,1600.0,0.0,78,75,0.0,0.0,552.8696910303722,2000.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,1,106629,2,1,2,0,1,,900.0,,41,1.0,2.0,6.0,4.0,2.5,2,2,212.100249842698,400.0,26899.0,5,7,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07435220640172498,10759.6,2,1,2_0,2_1_0,2_3_0,2_1_0 -17568,2,58.0,0.0,6,112,1100.0,0.0,0.0,34,34,0.0,155.27587572291867,1520.3916503335236,1340.0,154.82943037711726,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,4,105693,2,1,2,0,1,,500.0,,43,3.0,1.0,6.0,3.0,2.0,1,1,601.797767564672,1100.0,84986.97549212784,1,1,0,1,180.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01576712187062265,42493.48774606392,9,5,9,9_1,9_0,9_0_0 -17569,2,49.0,0.0,2,111,800.0,900.0,0.0,68,63,0.0,51.75862524097289,1105.7393820607444,1750.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,115660,2,2,2,0,1,,730.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,2,2,237.743606740016,800.0,47526.168465711686,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036821819567940936,16388.333953693687,4,2,4_0,4_1_0,4_3_0,4_0_1 -17570,2,50.0,0.0,7,112,550.0,0.0,0.0,45,47,0.0,207.03450096389156,760.1958251667618,750.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,5,103684,2,1,2,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,602.73283092194,550.0,64736.81089847183,1,1,1,2,170.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011585371438457814,43157.87393231455,9,5,9,9_1,9_0,9_0_0 -17571,2,41.0,0.0,5,111,550.0,750.0,0.0,55,38,0.0,93.1655254337512,760.1958251667618,1390.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,107129,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,5.0,2.4,3,3,274.387264637546,550.0,51366.04397755036,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027060678463140017,21402.51832397932,6,3,6,6_1,6_3,6_0_0 -17572,2,66.0,0.0,5,112,2000.0,0.0,0.0,71,71,0.0,0.0,2764.3484551518613,2025.0,43.00817510475479,0.0,50,2,2,1,2,1,2,2,2,0,,1,,3,131517,2,1,1,0,2,,300.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,643.535685766076,2000.0,16775.068427852373,5,5,0,1,196.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.12071485780873506,11183.378951901583,2,1,2_0,2_1_0,2_0_0,2_0_0 -17573,2,82.0,0.0,1,112,1630.0,0.0,0.0,0,86,0.0,0.0,2252.943990948767,1750.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131646,2,2,4,0,1,,130.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,563.771169931341,1630.0,19524.584188462693,0,5,0,1,90.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08963058998378545,19524.584188462693,5,3,5,5_1,5_0,5_1_0 -17574,1,53.0,250.0,1,111,1200.0,1200.0,0.0,85,62,0.0,0.0,1658.6090730911167,2760.0,619.317721508469,2176.3834810169387,60,2,2,2,2,1,2,2,2,0,,1,,1,109727,1,1,2,0,2,,600.0,,42,4.0,0.0,7.0,10.0,4.8999999999999995,3,3,293.400364065759,1200.0,19091.49858479252,6,4,1,2,190.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,1,1,0.14456696459640414,3896.2242009780657,1,1,1_1,1_1_1,1_3_1,1_1_0 -17575,2,53.0,0.0,1,112,1000.0,0.0,0.0,68,65,0.0,729.7966158977177,1382.1742275759307,1837.0,227.0831645531053,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,129129,2,1,4,0,1,,270.0,405.0,43,2.0,3.0,5.0,2.0,1.5,1,1,594.867277791202,1000.0,30054.41883543732,1,1,2,3,74.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06112245956438139,20036.27922362488,5,3,5,5_1,5_0,5_1_0 -17576,1,25.0,368.0,7,111,1700.0,0.0,0.0,62,81,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,5,132748,2,1,0,0,1,,400.0,347.0,43,2.0,0.0,4.0,3.0,1.8,2,2,362.699944350392,1700.0,9424.20843633496,4,4,2,3,64.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.18038650264203235,5235.671353519422,1,1,1_1,1_0_1,1_3_1,1_0_0 -17577,2,44.0,0.0,1,112,600.0,0.0,0.0,68,48,1493.5848770180007,621.1035028916747,829.3045365455583,2380.0,309.6588607542345,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,1,100149,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,555.231572206742,600.0,38536.02805300894,1,1,0,1,80.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06176038684438748,25690.685368672624,7,4,7,7_1,7_0,7_1_0 -17579,2,59.0,0.0,2,112,900.0,3400.0,0.0,34,37,0.0,0.0,1243.9568048183376,4300.0,0.0,6166.4198628813265,71,0,0,0,0,0,0,0,0,0,,1,,2,127643,2,2,2,0,1,,200.0,,43,2.0,2.0,8.0,2.0,1.5,1,1,667.774439005429,900.0,253572.75047761484,1,1,0,1,150.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01695765807603842,169048.5003184099,10,5,10,10_1,10_0,10_0_1 -17580,2,50.0,0.0,1,112,420.0,0.0,0.0,11,11,0.0,517.5862524097289,580.5131755818909,1040.0,206.439240502823,0.0,50,2,2,2,2,1,2,2,2,0,,5,,1,109839,1,3,4,0,2,,0.0,,43,3.0,1.0,5.0,4.0,2.5,2,2,578.888080995443,420.0,39004.29435625296,1,1,0,1,120.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.026663730677985532,15601.717742501185,3,2,3_0,3_1_0,3_0_0,3_1_0 -17581,2,73.0,0.0,5,112,240.0,0.0,0.0,0,74,4270.159163394464,0.0,331.72181461822333,3174.0,129.02452531426437,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,114829,2,1,2,0,1,,130.0,,11,0.0,2.0,7.0,1.0,1.0,3,1,758.021706227009,240.0,81636.13567288949,0,5,0,1,170.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03887984130848629,81636.13567288949,10,5,10,10_1,10_0,10_0_0 -17582,1,63.0,80.0,1,111,300.0,500.0,0.0,86,78,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,60,0,0,0,0,0,0,0,0,0,,1,,1,103293,2,1,1,0,1,,600.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,244.314892202793,300.0,12992.155424041757,6,5,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06157561804714974,8661.436949361172,1,1,1_1,1_1_1,1_3_1,1_1_0 -17583,2,49.0,0.0,7,112,1400.0,0.0,0.0,35,34,0.0,372.6621017350048,1935.0439186063027,1865.0,180.63433543997013,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,,5,107756,2,2,1,0,1,,360.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,655.754676535381,1400.0,60106.15820836164,1,1,0,1,140.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.031028434616214608,30053.07910418082,8,4,8,8_1,8_0,8_0_0 -17584,2,49.0,0.0,1,111,1500.0,1000.0,0.0,55,55,0.0,0.0,2073.261341363896,2500.0,0.0,1813.6529008474488,44,0,0,0,0,0,0,0,0,1,2.0,1,,1,128679,2,1,2,0,1,,800.0,600.0,43,2.0,0.0,4.0,4.0,2.5,1,1,230.871599668846,1500.0,20712.019567326115,1,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1207028600892127,8284.807826930446,1,1,1_0,1_1_0,1_3_0,1_1_0 -17585,2,52.0,0.0,1,112,687.0,0.0,0.0,43,11,1893.8656240588248,0.0,949.5536943446643,1955.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,129657,2,2,1,0,1,,144.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,494.552036210637,687.0,102279.89503419901,1,1,0,1,140.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.019114215939958802,40911.95801367961,9,5,9,9_1,9_0,9_1_0 -17586,1,45.0,197.0,2,112,820.0,0.0,0.0,0,56,0.0,310.55175144583734,1133.3828666122631,1120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,2,106201,2,1,2,0,1,,380.0,465.0,12,1.0,2.0,4.0,1.0,1.0,2,2,794.498118565638,820.0,4639.684311772511,0,1,2,3,47.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.2413957340067655,4639.684311772511,1,1,1_1,1_1_1,1_0_1,1_0_1 -17587,2,72.0,0.0,1,111,204.0,180.0,0.0,0,77,2031.275432744481,0.0,281.96354242548983,1744.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,2,,1,118136,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,249.483842605891,204.0,13343.85547351055,0,5,0,1,80.0,9,7,3,1,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.13069685919950857,13343.85547351055,3,2,3_0,3_0_0,3_3_0,3_1_0 -17588,2,49.0,0.0,1,112,750.0,0.0,0.0,56,48,0.0,0.0,1036.630670681948,900.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,1,114146,2,1,1,0,1,,600.0,,43,3.0,0.0,8.0,4.0,2.5,2,2,565.279932053324,750.0,78628.37424075289,1,1,0,1,115.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011446249635586795,31451.349696301157,8,4,8,8_1,8_0,8_1_0 -17589,2,47.0,0.0,8,111,0.0,0.0,0.0,22,56,0.0,0.0,0.0,748.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,6,104184,2,1,2,0,1,,296.0,,43,3.0,0.0,10.0,5.0,3.0,1,1,276.307138228047,0.0,41618.516885940924,1,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017972769237547735,13872.838961980307,3,2,3_0,3_1_0,3_3_0,3_0_0 -17590,2,41.0,0.0,1,112,880.0,1600.0,0.0,46,37,0.0,0.0,1216.313320266819,2580.0,172.03270041901916,2901.844641355918,70,2,2,2,1,1,2,2,2,2,90.0,1,,1,130651,1,3,3,0,1,,1098.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,647.327088669488,880.0,92146.2186912904,1,1,1,2,140.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.027998978543477226,38394.25778803767,9,5,9,9_1,9_0,9_1_0 -17591,2,51.0,0.0,1,112,700.0,0.0,0.0,0,52,4480.754631054002,0.0,967.5219593031513,3820.0,206.439240502823,0.0,50,2,2,2,1,1,2,2,2,2,10.0,1,,1,128986,1,1,3,0,2,,260.0,,22,1.0,2.0,7.0,2.0,1.5,2,2,545.487320503178,700.0,18135.53553632559,0,1,0,1,120.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.21063618399073555,12090.35702421706,2,1,2_0,2_1_0,2_0_0,2_1_0 -17592,2,34.0,0.0,9,112,1320.0,0.0,0.0,56,65,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,128926,2,1,1,0,1,,530.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,593.770678160222,1320.0,45998.26444812968,1,1,1,2,120.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028696734884171744,21903.935451490324,6,3,6,6_1,6_0,6_0_0 -17593,2,81.0,0.0,1,112,378.0,2148.0,0.0,0,77,0.0,0.0,522.4618580237018,2526.0,0.0,3895.7264310203204,50,0,0,0,0,0,0,0,0,0,,1,,1,116034,2,1,3,0,1,,208.0,,11,0.0,1.0,4.0,1.0,1.0,3,3,662.851359638018,378.0,17077.216972036516,0,5,0,1,70.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14791637326715806,17077.216972036516,4,2,4_0,4_1_0,4_0_0,4_1_0 -17594,2,64.0,0.0,1,111,0.0,0.0,1300.0,86,78,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,71,2,2,1,1,1,2,2,2,0,,1,,1,101875,2,1,1,0,1,,600.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,221.372899453576,0.0,15480.402525451012,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.08397714451305105,10320.268350300676,2,1,2_0,2_1_0,2_3_0,2_1_0 -17595,2,48.0,0.0,1,112,1300.0,0.0,0.0,54,38,746.7924385090004,0.0,1796.8264958487098,1800.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,,1,103820,2,2,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,516.348723178324,1300.0,57285.831841954016,1,1,0,1,110.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03142138190409844,22914.332736781605,6,3,6,6_1,6_0,6_1_0 -17596,2,65.0,0.0,1,111,300.0,1700.0,0.0,78,78,0.0,0.0,414.65226827277917,2000.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,0,,1,,1,117108,2,1,1,0,1,,200.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,244.314892202793,300.0,30215.30218693066,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06619162660120874,20143.534791287108,5,3,5,5_1,5_3,5_1_0 -17597,2,61.0,0.0,5,112,752.0,1688.0,0.0,54,37,0.0,93.1655254337512,1039.3950191370998,2530.0,0.0,3061.4460966304937,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,114931,2,2,1,0,1,,578.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,632.955994789896,752.0,82730.6873060701,1,1,1,2,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030581155341306697,55153.79153738007,10,5,10,10_1,10_0,10_0_0 -17598,2,53.0,0.0,6,112,3132.0,0.0,0.0,0,33,0.0,0.0,4328.969680767815,3132.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,131950,2,1,2,0,1,,297.0,,12,1.0,2.0,7.0,1.0,1.0,5,5,730.778273661512,3132.0,47115.83543674393,0,1,0,1,116.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06647446598299023,47115.83543674393,10,5,10,10_1,10_0,10_0_0 -17599,2,32.0,0.0,1,111,800.0,1000.0,0.0,21,46,0.0,444.08900456754736,1105.7393820607444,2229.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,125321,1,2,1,0,1,,360.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,212.587170457624,800.0,26217.787424702907,1,1,1,2,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08501861594543988,17478.524949801937,4,2,4_0,4_1_0,4_3_0,4_1_0 -17600,2,50.0,0.0,6,112,1800.0,0.0,0.0,0,63,0.0,0.0,2487.913609636675,1825.0,43.00817510475479,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,4,102551,2,1,1,0,1,,356.0,870.0,32,1.0,0.0,5.0,2.0,1.3,4,4,640.524358361311,1800.0,28756.39493433224,0,1,2,3,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06346414438136451,22120.303795640182,6,3,6,6_1,6_0,6_0_0 -17601,2,59.0,0.0,2,111,900.0,0.0,0.0,0,52,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,20,2,2,2,2,1,2,2,2,1,15.0,2,,2,101271,1,2,0,0,1,,390.0,410.0,12,1.0,2.0,4.0,1.0,1.0,2,2,310.8827726728,900.0,24600.840819759425,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.036584115420848495,24600.840819759425,7,4,7,7_0,7_3,7_0_1 -17602,2,68.0,0.0,5,112,1184.0,0.0,0.0,74,74,0.0,310.55175144583734,1636.4942854499018,1534.0,86.01635020950958,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,130899,2,1,2,0,1,,600.0,,41,0.0,3.0,8.0,2.0,1.5,3,3,643.535685766076,1184.0,45493.4478710751,5,5,0,1,220.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03371914136618612,30328.9652473834,8,4,8,8_1,8_0,8_0_0 -17603,1,40.0,461.0,5,111,720.0,960.0,0.0,0,67,0.0,0.0,995.16544385467,1680.0,0.0,1741.106784813551,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,113264,1,1,1,0,1,,500.0,510.0,32,1.0,0.0,5.0,4.0,2.1,2,2,247.323593538994,720.0,19143.578593197282,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08775788663656607,9115.98980628442,1,1,1_1,1_1_1,1_3_1,1_0_0 -17604,2,78.0,0.0,5,112,1480.0,0.0,0.0,77,71,2987.1697540360015,310.55175144583734,2045.6178568123773,3780.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,1,,3,110213,2,2,3,0,1,,162.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,667.774439005429,1480.0,38678.504922537475,5,5,0,1,110.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.09772869989598387,25785.669948358318,7,4,7,7_1,7_0,7_0_0 -17605,2,74.0,0.0,6,112,1000.0,0.0,0.0,0,75,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,50,2,2,1,1,1,2,2,2,0,,1,,4,111799,2,1,2,0,1,,182.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,730.778273661512,1000.0,42380.52945655425,0,5,0,1,130.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02501148554754708,42380.52945655425,9,5,9,9_1,9_0,9_0_0 -17606,1,47.0,150.0,1,111,400.0,1800.0,0.0,0,56,0.0,0.0,552.8696910303722,2200.0,0.0,3264.575221525408,50,2,2,2,2,1,2,2,2,0,,1,,1,108436,2,2,5,0,1,,320.0,,32,1.0,0.0,5.0,4.0,2.1,2,2,228.175072522604,400.0,21085.97578611978,0,1,1,2,67.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.10433474942374682,10040.940850533229,2,1,2_1,2_1_1,2_3_1,2_1_0 -17607,2,57.0,0.0,6,112,1940.0,0.0,0.0,43,38,0.0,757.7462735278431,2681.4180014973053,2722.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,133659,2,1,2,0,1,,662.0,,43,2.0,2.0,8.0,3.0,2.0,2,2,634.881323098808,1940.0,97935.59758089595,1,1,0,1,165.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027793775371121786,48967.798790447974,10,5,10,10_1,10_0,10_0_0 -17608,2,52.0,0.0,5,111,480.0,270.0,0.0,0,52,0.0,0.0,663.4436292364467,750.0,0.0,489.6862832288112,43,2,1,2,2,2,2,2,1,1,10.0,2,,3,111560,2,2,0,1,1,83.0,400.0,384.0,12,1.0,2.0,4.0,1.0,1.0,2,2,336.979009400837,480.0,19941.245322048006,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.037610489610233305,19941.245322048006,5,3,5,5_0,5_3,5_0_0 -17609,1,71.0,155.0,1,111,420.0,0.0,0.0,85,77,1493.5848770180007,0.0,580.5131755818909,1420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,130883,2,2,0,1,1,39.0,0.0,284.0,41,0.0,0.0,3.0,4.0,2.1,2,2,237.652354920711,420.0,22605.01700913769,6,5,2,3,45.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06281791336082558,10764.29381387509,2,1,2_1,2_0_1,2_3_1,2_1_0 -17611,1,33.0,306.0,6,111,760.0,740.0,0.0,67,53,0.0,0.0,1050.452412957707,1500.0,0.0,1342.1031466271122,70,2,2,2,2,2,2,2,1,2,35.0,2,,4,107719,1,2,0,0,2,,0.0,386.0,43,2.0,0.0,3.0,4.0,2.1,2,2,289.948664376546,760.0,25827.915608059204,4,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.058076695880636534,12299.007432409144,2,1,2_1,2_0_1,2_3_1,2_0_0 -17612,2,44.0,0.0,5,112,470.0,1250.0,0.0,46,38,0.0,186.3310508675024,649.6218869606873,1900.0,0.0,2267.066126059311,50,2,2,2,2,1,2,2,2,2,20.0,1,,3,101902,2,1,1,0,1,,390.0,,43,2.0,0.0,7.0,4.0,2.3,3,3,1140.77889834681,470.0,51283.90274774633,1,1,0,1,100.0,8,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.037048662410613734,22297.349020759277,6,3,6,6_1,6_1,6_0_0 -17613,1,35.0,231.0,8,111,0.0,0.0,0.0,64,68,0.0,0.0,0.0,1378.0,0.0,0.0,50,2,2,2,2,2,1,2,2,0,,1,,6,103733,2,3,2,0,1,,474.0,632.0,43,2.0,0.0,4.0,4.0,2.1,1,1,298.464911329651,0.0,25654.05425561283,1,1,2,3,100.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.05371470669976105,12216.216312196586,2,1,2_1,2_1_1,2_3_1,2_0_0 -17614,2,65.0,0.0,5,112,570.0,743.0,0.0,77,75,0.0,279.4965763012536,787.8393097182804,1583.0,0.0,1347.5441053296545,44,0,0,0,0,0,0,0,0,0,,1,,3,107675,2,1,1,0,1,,261.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1183.59668272613,570.0,47293.88261714673,6,5,0,1,108.0,8,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03347155937301016,31529.25507809782,8,4,8,8_1,8_1,8_0_0 -17615,2,62.0,0.0,5,112,705.0,788.0,0.0,77,74,0.0,0.0,974.432830441031,1493.0,0.0,1429.1584858677898,43,0,0,0,0,0,0,0,0,0,,1,,3,103087,2,1,2,0,1,,493.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1139.47225866726,705.0,47345.05893538515,5,5,0,1,84.0,8,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031534441683504784,31563.372623590098,8,4,8,8_1,8_1,8_0_0 -17616,2,57.0,0.0,1,111,360.0,520.0,0.0,0,55,0.0,0.0,497.582721927335,880.0,0.0,943.0995084406734,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,109924,1,1,0,0,1,,260.0,304.0,22,2.0,2.0,2.0,2.0,1.5,2,2,304.310514742948,360.0,25543.640081607038,0,1,3,4,53.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034450845579900455,17029.093387738027,4,2,4_0,4_0_0,4_3_0,4_1_0 -17617,2,58.0,0.0,5,112,2060.0,0.0,0.0,22,55,0.0,0.0,2847.278908806417,2060.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,114075,2,2,2,0,1,,700.0,,43,4.0,0.0,6.0,5.0,3.0,2,1,1128.71589237,2060.0,76481.70325643927,1,1,0,1,120.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026934546594666237,25493.901085479756,7,4,7,7_1,7_1,7_0_0 -17618,2,33.0,0.0,5,111,360.0,1320.0,0.0,54,42,0.0,0.0,497.582721927335,1680.0,0.0,2394.0218291186325,60,0,0,0,0,0,0,0,0,1,10.0,2,,3,107270,1,1,0,1,2,,1080.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,287.085342859261,360.0,36944.61665862457,1,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04547347223882511,17592.67459934503,4,2,4_0,4_0_0,4_3_0,4_0_0 -17619,2,38.0,0.0,5,112,40.0,40.0,0.0,56,47,0.0,0.0,55.28696910303722,80.0,0.0,72.54611603389796,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,113952,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1212.22224917763,40.0,30581.13050817906,1,1,0,1,120.0,8,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0026159922367357757,14562.443099132885,3,2,3_0,3_1_0,3_1_0,3_0_0 -17620,2,42.0,0.0,6,112,1200.0,0.0,0.0,85,38,0.0,828.1380038555662,1658.6090730911167,2150.0,258.04905062852873,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,100660,2,2,2,0,1,,800.0,,42,1.0,0.0,8.0,4.0,2.3,2,2,1244.13459635665,1200.0,100718.01503549007,6,1,1,2,145.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021346727288483625,43790.44131977829,10,5,10,10_1,10_1,10_0_0 -17621,2,75.0,0.0,1,112,1102.0,0.0,0.0,0,77,0.0,0.0,1523.1559987886756,1222.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,112401,1,1,3,0,1,,102.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,1042.95174747036,1102.0,15534.43206914765,0,5,0,1,55.0,8,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0786639636750524,15534.43206914765,3,2,3_0,3_1_0,3_1_0,3_1_0 -17622,1,40.0,410.0,8,111,580.0,670.0,0.0,63,85,0.0,0.0,801.6610519940398,1250.0,0.0,1215.1474435677908,20,2,2,2,2,1,2,2,2,0,,1,,6,114527,1,1,2,0,1,,440.0,460.0,42,1.0,0.0,4.0,4.0,2.3,2,2,233.666029153784,580.0,7204.897959183673,4,6,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.17349308860185816,3132.5643300798583,1,1,1_1,1_1_1,1_3_1,1_0_0 -17623,1,53.0,100.0,8,112,430.0,0.0,0.0,54,65,0.0,0.0,594.3349178576501,2170.0,2993.3689872909335,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,127751,2,1,3,0,1,,520.0,400.0,43,3.0,0.0,3.0,3.0,2.0,2,2,1047.20998944756,430.0,22951.349052071047,1,1,2,3,80.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.094547819175108,11475.674526035524,2,1,2_1,2_1_1,2_1_1,2_0_0 -17624,2,49.0,0.0,8,112,870.0,0.0,0.0,55,64,0.0,103.51725048194578,1202.4915779910596,1045.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,117662,2,1,2,0,1,,354.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,1081.93639647595,870.0,41561.13323806357,1,1,1,2,80.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025143683980275628,20780.566619031786,5,3,5,5_1,5_1,5_0_0 -17625,2,41.0,0.0,1,112,1082.0,0.0,0.0,85,37,0.0,621.1035028916747,1495.512514237157,1862.0,309.6588607542345,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,121481,2,1,2,0,1,,280.0,,42,1.0,0.0,5.0,4.0,2.1,1,1,964.96279006785,1082.0,28739.339485864628,6,1,0,1,120.0,8,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0647892412738233,13685.399755173632,3,2,3_0,3_1_0,3_1_0,3_1_0 -17626,2,52.0,0.0,2,112,1000.0,0.0,0.0,34,38,0.0,0.0,1382.1742275759307,4200.0,5505.046413408613,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,108110,2,3,3,0,1,,260.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1140.77889834681,1000.0,82486.3645498022,1,1,0,1,140.0,8,3,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050917506462103766,32994.54581992088,8,4,8,8_1,8_1,8_0_1 -17627,2,48.0,0.0,2,112,1550.0,0.0,0.0,46,48,0.0,310.55175144583734,2142.370052742692,1850.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,106579,2,1,2,0,1,,260.0,,43,2.0,1.0,6.0,5.0,3.0,1,1,1282.50911541354,1550.0,69906.90358444095,1,1,1,2,180.0,8,3,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026463766883414803,23302.30119481365,6,3,6,6_1,6_1,6_0_1 -17628,2,62.0,0.0,1,112,700.0,0.0,0.0,85,75,0.0,724.6207533736205,967.5219593031513,1425.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100854,2,1,2,0,1,,95.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1016.36711980078,700.0,33246.0389495325,6,5,0,1,70.0,8,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04286224900846536,22164.025966355,6,3,6,6_1,6_1,6_1_0 -17629,2,86.0,0.0,1,111,240.0,640.0,0.0,78,78,0.0,0.0,331.72181461822333,880.0,0.0,1160.7378565423674,41,0,0,0,0,0,0,0,0,0,,1,,1,111852,2,2,2,0,2,,100.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,211.473399914184,240.0,30813.475874973527,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02855893322683305,20542.317249982352,5,3,5,5_1,5_3,5_1_0 -17630,2,41.0,0.0,6,112,1444.0,0.0,0.0,0,48,0.0,486.53107726514514,1995.8595846196438,1982.0,116.98223628493304,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,4,116667,2,2,2,0,1,,130.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1275.29448467357,1444.0,44823.36676718804,0,1,1,2,125.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04421800821643946,44823.36676718804,10,5,10,10_1,10_1,10_0_0 -17631,2,53.0,0.0,7,111,450.0,1500.0,0.0,63,67,0.0,82.81380038555662,621.9784024091688,2030.0,0.0,2720.4793512711735,70,2,2,2,1,1,2,2,2,2,15.0,1,,5,104265,1,3,3,0,1,,600.0,585.0,43,3.0,2.0,4.0,3.0,2.0,1,1,241.754243733717,450.0,24077.472622478388,1,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0843111746747381,12038.736311239194,2,1,2_0,2_1_0,2_3_0,2_0_0 -17632,2,49.0,0.0,1,112,450.0,0.0,0.0,0,42,2539.0942909306013,362.31037668681023,621.9784024091688,2540.0,68.81308016760767,0.0,71,2,2,2,1,1,2,2,2,2,40.0,1,,1,122772,2,3,4,0,1,,120.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,871.437280256689,450.0,34920.11014043757,0,1,1,2,150.0,8,3,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07273745672006554,23280.07342695838,6,3,6,6_1,6_1,6_1_0 -17633,2,48.0,0.0,7,112,950.0,0.0,0.0,62,42,5227.547069563002,103.51725048194578,1313.065516197134,4670.0,206.439240502823,0.0,43,1,2,1,1,1,2,2,2,2,15.0,1,,5,102024,2,2,3,0,1,,260.0,,43,3.0,0.0,6.0,4.0,2.3,1,1,937.367524744345,950.0,50140.0,1,1,1,2,120.0,8,3,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0.09313921021140806,21800.0,6,3,6,6_1,6_1,6_0_0 -17634,2,63.0,0.0,1,111,1000.0,480.0,0.0,0,86,2987.1697540360015,0.0,1382.1742275759307,3480.0,0.0,870.5533924067755,60,0,0,0,0,0,0,0,0,0,,1,,1,120268,2,2,2,0,1,,500.0,,31,0.0,6.0,8.0,4.0,2.5,1,1,241.538194311379,1000.0,20087.937484088696,0,6,0,1,250.0,9,7,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17323829301820792,8035.174993635478,1,1,1_0,1_1_0,1_3_0,1_1_0 -17635,1,74.0,179.0,1,112,500.0,0.0,0.0,0,90,0.0,1242.2070057833494,691.0871137879653,1880.0,309.6588607542345,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,112446,2,3,4,0,1,,330.0,360.0,21,0.0,6.0,5.0,2.0,1.5,1,1,725.826478350575,500.0,12404.789210262996,0,5,2,3,83.0,8,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.15155436889202423,8269.859473508664,1,1,1_1,1_1_1,1_1_1,1_1_0 -17636,1,27.0,360.0,2,111,300.0,90.0,0.0,0,85,0.0,0.0,414.65226827277917,390.0,0.0,163.2287610762704,71,2,1,2,1,1,2,2,2,0,,2,,2,121484,1,3,0,1,2,,0.0,336.0,31,0.0,0.0,4.0,2.0,1.3,1,1,222.604088625011,300.0,9397.727892833056,0,6,2,3,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04149939266675553,7229.021456025427,1,1,1_1,1_0_1,1_3_1,1_0_1 -17637,1,37.0,40.0,1,112,666.0,1496.0,0.0,55,47,0.0,0.0,920.5280355655698,2162.0,0.0,2713.2247396677835,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,122101,2,1,1,0,1,,430.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,776.040311770493,666.0,49447.81771597278,4,1,1,2,120.0,8,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04372285977145609,20603.257381655327,5,3,5,5_1,5_1,5_1_0 -17638,2,47.0,0.0,1,112,1150.0,1150.0,0.0,85,53,0.0,0.0,1589.5003617123202,2300.0,0.0,2085.7008359745664,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,103458,2,1,2,0,1,,250.0,580.0,42,1.0,0.0,6.0,3.0,1.8,1,1,878.174965422587,1150.0,25596.954544400352,6,1,2,3,100.0,8,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08985443936349659,14220.53030244464,3,2,3_0,3_1_0,3_1_0,3_1_0 -17639,2,51.0,0.0,2,112,411.0,998.0,0.0,0,65,0.0,0.0,568.0736075337074,1409.0,0.0,1810.025595045754,71,1,2,2,1,2,2,2,2,2,16.0,2,,2,115557,1,2,0,0,1,,240.0,334.0,12,1.0,0.0,4.0,1.0,1.0,2,2,984.695870488612,411.0,23665.921473013394,0,1,2,3,80.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.059537085915150355,23665.921473013394,6,3,6,6_0,6_1,6_0_1 -17640,2,80.0,0.0,1,111,990.0,0.0,0.0,0,77,0.0,0.0,1368.3524853001713,2441.0,584.9111814246652,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108231,2,1,1,0,1,,230.0,137.0,11,0.0,6.0,3.0,1.0,1.0,2,1,334.811321570456,990.0,14665.741012757495,0,5,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1664423228172796,14665.741012757495,3,2,3_0,3_1_0,3_3_0,3_1_0 -17641,2,56.0,0.0,1,112,300.0,0.0,0.0,78,52,0.0,621.1035028916747,414.65226827277917,975.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,103747,1,1,3,0,2,,300.0,0.0,42,1.0,0.0,4.0,2.0,1.5,2,2,851.483525567712,300.0,25373.556096953744,5,1,2,3,100.0,8,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038425831849287176,16915.70406463583,4,2,4_0,4_1_0,4_1_0,4_1_0 -17642,2,97.0,0.0,2,112,400.0,2310.0,0.0,0,78,0.0,0.0,552.8696910303722,2710.0,0.0,4189.538200957607,71,0,0,0,0,0,0,0,0,0,,1,,2,126484,2,1,2,0,1,,210.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,959.688990500678,400.0,20296.701046318696,0,5,0,1,90.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13351923516119998,20296.701046318696,5,3,5,5_1,5_1,5_0_1 -17643,1,29.0,240.0,7,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,701.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,104519,1,3,0,1,1,,0.0,280.0,32,1.0,0.0,3.0,2.0,1.3,2,2,409.331365768817,0.0,13602.348530724203,0,1,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05153521823210319,10463.345023634001,2,1,2_1,2_0_1,2_3_1,2_0_0 -17644,2,75.0,0.0,2,112,520.0,800.0,0.0,78,78,0.0,310.55175144583734,718.7305983394839,1620.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,1,,2,129317,2,1,2,0,1,,330.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,978.951517009567,520.0,33262.54494326973,5,5,0,1,69.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04870342912013975,22175.02996217982,6,3,6,6_1,6_1,6_0_1 -17645,2,72.0,0.0,2,112,366.0,798.0,0.0,77,77,0.0,0.0,505.87576729279056,1164.0,0.0,1447.2950148762643,71,0,0,0,0,0,0,0,0,0,,1,,2,119478,2,1,2,0,1,,276.0,371.0,41,0.0,4.0,4.0,2.0,1.5,2,2,779.705684131445,366.0,26093.839802470324,5,5,2,3,80.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044608229712891974,17395.893201646883,4,2,4_0,4_1_0,4_1_0,4_0_1 -17646,2,66.0,0.0,1,111,0.0,0.0,920.0,77,77,0.0,0.0,470.040268050523,920.0,0.0,1051.786112680421,71,0,0,0,0,0,0,0,0,0,,1,,1,127640,1,2,3,0,2,,180.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,241.221434483153,0.0,32938.12866992787,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02793115568948364,21958.752446618582,6,3,6,6_1,6_3,6_1_0 -17647,2,39.0,0.0,2,112,1270.0,0.0,0.0,0,45,0.0,0.0,1755.3612690214318,1295.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,123572,2,1,2,0,1,,400.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,892.757935270437,1270.0,30350.9970672259,0,1,1,2,82.0,8,2,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04266746153780851,18969.373167016187,5,3,5,5_1,5_1,5_0_1 -17648,1,29.0,200.0,1,111,1500.0,0.0,0.0,52,21,0.0,62.110350289167464,2073.261341363896,1635.0,129.02452531426437,0.0,30,2,2,2,1,1,2,2,2,0,,1,,1,121498,1,3,3,0,1,,100.0,550.0,43,2.0,0.0,4.0,4.0,2.1,2,2,230.871599668846,1500.0,26330.641319047412,1,1,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.06209495546229828,12538.400628117815,2,1,2_1,2_1_1,2_3_1,2_1_0 -17649,2,44.0,0.0,1,112,714.0,0.0,0.0,54,62,3733.962192545002,0.0,986.8723984892144,3274.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,131664,2,1,3,0,1,,160.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,857.339477165923,714.0,54821.46069644773,1,1,0,1,120.0,8,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059721137642218015,21928.584278579092,6,3,6,6_1,6_1,6_1_0 -17650,2,49.0,0.0,1,112,1000.0,450.0,0.0,65,62,0.0,0.0,1382.1742275759307,1450.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,124696,2,1,2,0,1,,240.0,,43,2.0,3.0,6.0,2.0,1.5,3,2,726.079872153146,1000.0,38506.145111515056,4,1,0,1,99.0,8,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037656327212208664,25670.763407676703,7,4,7,7_1,7_1,7_1_0 -17652,2,50.0,0.0,1,112,800.0,0.0,0.0,0,11,0.0,2587.9312620486444,1105.7393820607444,3460.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,106965,2,2,2,0,1,,108.0,,32,1.0,2.0,7.0,3.0,2.0,4,3,766.987528774146,800.0,61102.1797732754,0,1,1,2,150.0,8,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05662645772767209,30551.0898866377,8,4,8,8_1,8_1,8_1_0 -17653,2,75.0,0.0,2,111,273.0,160.0,0.0,0,77,0.0,0.0,377.33356412822906,433.0,0.0,290.18446413559184,71,0,0,0,0,0,0,0,0,0,,2,,2,129171,1,3,0,1,1,521.0,530.0,430.0,21,1.0,0.0,3.0,2.0,1.5,1,1,243.853056103907,273.0,33154.72083489024,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013059980271175565,22103.147223260163,6,3,6,6_0,6_3,6_0_1 -17654,1,56.0,270.0,2,111,320.0,250.0,0.0,0,85,0.0,0.0,442.2957528242978,570.0,0.0,453.4132252118622,20,1,2,2,2,1,2,2,2,0,,2,,2,123635,2,1,0,1,1,804.0,0.0,389.0,31,1.0,0.0,4.0,4.0,2.5,2,2,210.559072492141,320.0,19843.783825366165,0,6,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02872436048569392,7937.513530146466,1,1,1_1,1_0_1,1_3_1,1_0_1 -17655,2,38.0,0.0,1,112,500.0,0.0,0.0,43,64,1194.8679016144006,103.51725048194578,691.0871137879653,1450.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,119665,2,1,2,0,1,,300.0,620.0,43,2.0,2.0,3.0,2.0,1.5,2,2,772.565563237466,500.0,40818.697890997406,1,1,2,3,68.0,8,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03552293617675145,27212.465260664936,7,4,7,7_1,7_1,7_1_0 -17656,2,47.0,0.0,2,112,390.0,974.0,0.0,54,64,0.0,0.0,539.0479487546129,1364.0,0.0,1766.4979254254151,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,129628,2,2,3,0,1,,350.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,871.77152468218,390.0,57328.51538549058,1,1,1,2,90.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023792697069305552,28664.25769274529,8,4,8,8_1,8_1,8_0_1 -17657,2,62.0,0.0,2,112,251.0,398.0,0.0,68,78,0.0,0.0,346.92573112155856,649.0,0.0,721.8338545372847,71,0,0,0,0,0,0,0,0,0,,1,,2,105793,2,1,4,0,1,,290.0,330.0,42,1.0,1.0,4.0,2.0,1.5,2,2,779.705684131445,251.0,32103.395124779036,1,5,2,3,100.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020215930354950798,21402.263416519356,6,3,6,6_1,6_1,6_0_1 -17658,1,44.0,92.0,2,111,500.0,0.0,0.0,0,42,0.0,0.0,691.0871137879653,500.0,0.0,0.0,43,2,1,2,2,1,2,2,2,2,15.0,2,,2,127331,1,2,0,1,1,,730.0,436.0,32,1.0,0.0,4.0,3.0,2.0,1,1,240.574243000857,500.0,27495.92527215205,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.018184512615998467,13747.962636076025,3,2,3_1,3_0_1,3_3_1,3_0_1 -17659,2,32.0,0.0,2,112,300.0,800.0,0.0,0,67,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,114838,2,1,0,0,1,,385.0,600.0,22,2.0,0.0,5.0,2.0,1.5,1,1,1066.28943034142,300.0,44306.04450169706,0,1,2,3,110.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024827312218265535,29537.363001131376,8,4,8,8_0,8_1,8_0_1 -17660,1,29.0,434.0,2,112,900.0,960.0,0.0,85,46,0.0,0.0,1243.9568048183376,1860.0,0.0,1741.106784813551,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,106671,2,1,1,0,1,,500.0,590.0,42,1.0,0.0,3.0,4.0,2.1,1,1,811.755635254764,900.0,18533.121720149138,6,1,2,3,60.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10036085814824251,8825.296057213875,1,1,1_1,1_1_1,1_1_1,1_0_1 -17661,2,46.0,0.0,5,112,650.0,900.0,0.0,62,48,0.0,103.51725048194578,898.4132479243549,1650.0,0.0,1632.287610762704,71,2,2,2,1,1,2,2,2,1,20.0,1,,3,128555,1,3,4,0,1,,650.0,,43,3.0,0.0,6.0,5.0,2.8,1,1,881.018923741857,650.0,65583.73970415877,1,1,0,1,70.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.025158675114334336,23422.764180056703,6,3,6,6_1,6_1,6_0_0 -17662,2,76.0,0.0,1,111,400.0,1000.0,0.0,0,78,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,1,131223,2,2,2,0,1,,160.0,330.0,11,0.0,3.0,4.0,1.0,1.0,2,2,233.041406701419,400.0,18053.592790047773,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.077546891429376,18053.592790047773,4,2,4_0,4_1_0,4_3_0,4_1_0 -17663,1,54.0,288.0,5,111,564.0,0.0,0.0,0,78,0.0,289.84830134944815,779.5462643528249,844.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,110169,1,2,0,1,1,383.0,0.0,263.0,11,0.0,5.0,3.0,1.0,1.0,2,2,350.058072676932,564.0,8934.234634323875,0,7,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0944680808759476,8934.234634323875,1,1,1_1,1_0_1,1_3_1,1_0_0 -17664,2,27.0,0.0,1,112,0.0,0.0,0.0,38,37,0.0,0.0,0.0,1411.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,1,107987,2,1,0,0,1,,200.0,530.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1031.45992896739,0.0,45971.32470497144,1,1,2,3,60.0,8,2,3,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03069304635129236,30647.549803314294,8,4,8,8_0,8_1,8_1_0 -17665,0,65.0,0.0,1,111,0.0,0.0,1100.0,0,74,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,31,1,2,1,1,1,2,2,2,0,,1,,1,128055,2,1,2,0,1,,60.0,,21,0.0,1.0,6.0,2.0,1.5,1,1,273.723202451744,0.0,46817.41865897824,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0234955286196466,31211.612439318826,8,4,8,8_1,8_3,8_1_0 -17666,2,69.0,0.0,1,112,596.0,0.0,0.0,72,72,4987.079904363104,0.0,823.7758396352547,4035.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103703,2,2,2,0,2,,492.0,,41,1.0,2.0,6.0,3.0,2.0,2,2,795.938630810324,596.0,37006.21276798693,5,5,0,1,142.0,8,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10903574557325599,18503.106383993465,4,2,4_0,4_1_0,4_1_0,4_1_0 -17667,1,48.0,200.0,2,111,440.0,1000.0,0.0,56,62,0.0,0.0,608.1566601334094,1440.0,0.0,1813.6529008474488,71,2,2,1,2,1,2,2,2,0,,1,,2,101846,2,1,1,0,1,,500.0,280.0,43,2.0,0.0,4.0,5.0,2.8,5,5,198.960315563406,440.0,17555.594422199185,1,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,0,0,1,0.08202513485838502,6269.855150785424,1,1,1_1,1_1_1,1_3_1,1_0_1 -17668,1,26.0,377.0,2,112,450.0,0.0,0.0,85,63,0.0,103.51725048194578,621.9784024091688,655.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,123538,2,2,5,0,1,,440.0,490.0,42,1.0,0.0,3.0,3.0,1.8,1,1,875.920708100085,450.0,9943.263120371437,6,1,2,3,60.0,8,2,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06587374708590957,5524.035066873021,1,1,1_1,1_1_1,1_1_1,1_0_1 -17669,2,43.0,0.0,2,111,400.0,1300.0,0.0,62,54,0.0,0.0,552.8696910303722,1700.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,3,45.0,1,,2,130280,2,1,3,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,209.400037337422,400.0,47373.92698524617,1,1,1,2,93.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03588471778008686,20597.359558802684,5,3,5,5_1,5_3,5_0_1 -17670,1,21.0,270.0,1,112,0.0,0.0,1300.0,0,85,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,20,0,0,0,0,0,0,0,0,0,,8,,1,108712,1,3,0,0,2,,320.0,490.0,31,0.0,0.0,2.0,2.0,1.3,2,2,861.759963613868,0.0,12687.520825526972,0,6,2,3,52.0,8,2,3,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10246288600247519,9759.631404251517,2,1,2_1,2_0_1,2_1_1,2_1_0 -17671,2,66.0,0.0,2,111,360.0,360.0,0.0,77,74,0.0,0.0,497.582721927335,720.0,0.0,652.9150443050816,10,0,0,0,0,0,0,0,0,0,,2,,2,114124,2,1,0,0,1,,52.0,396.0,41,0.0,3.0,4.0,2.0,1.5,2,2,284.609721818139,360.0,26308.30110795757,5,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02736778772013594,17538.867405305045,4,2,4_0,4_0_0,4_3_0,4_0_1 -17672,2,55.0,0.0,5,112,400.0,350.0,0.0,77,65,0.0,828.1380038555662,552.8696910303722,1550.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,115733,1,2,4,0,1,,359.0,524.0,42,3.0,4.0,7.0,4.0,2.5,2,2,863.576659069191,400.0,43768.076386120156,6,1,2,3,100.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03541393929049941,17507.230554448062,4,2,4_0,4_1_0,4_1_0,4_0_0 -17673,2,82.0,0.0,2,111,0.0,1200.0,0.0,0,78,0.0,0.0,0.0,2778.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,1,,2,131228,2,2,1,0,1,,800.0,,21,0.0,0.0,4.0,3.0,2.0,2,2,241.055856090511,0.0,21498.913222666517,0,5,0,1,80.0,9,7,3,0,1,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1292158338995074,10749.456611333258,2,1,2_0,2_1_0,2_3_0,2_0_1 -17674,2,42.0,0.0,9,112,380.0,1200.0,0.0,90,52,0.0,0.0,525.2262064788536,1580.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,115556,2,1,1,0,1,,290.0,700.0,43,2.0,0.0,6.0,4.0,2.1,2,2,871.781552094564,380.0,54527.57301259757,1,1,3,4,110.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028976165868137407,25965.510958379793,7,4,7,7_1,7_1,7_0_0 -17675,2,66.0,0.0,2,111,290.0,590.0,0.0,78,78,0.0,0.0,400.8305259970199,880.0,0.0,1070.0552114999948,42,0,0,0,0,0,0,0,0,0,,2,,2,101941,2,2,0,0,1,,300.0,317.0,41,0.0,2.0,4.0,2.0,1.5,1,1,296.205469987582,290.0,22350.94019478832,5,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039371945534765196,14900.626796525547,3,2,3_0,3_0_0,3_3_0,3_0_1 -17676,1,43.0,27.0,5,112,600.0,3600.0,0.0,0,52,0.0,0.0,829.3045365455583,4200.0,0.0,6529.150443050816,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,126670,1,1,3,0,2,,740.0,495.0,32,1.0,0.0,6.0,3.0,1.8,2,2,771.274230229892,600.0,26195.529846593563,0,1,2,3,100.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.16033269892214694,14553.072136996423,3,2,3_1,3_1_1,3_1_1,3_0_0 -17677,2,45.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1907.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,114070,1,2,0,0,1,,0.0,290.0,32,1.0,2.0,3.0,2.0,1.3,2,2,396.928457899948,0.0,23466.24738023325,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08126565654491301,18050.959523256344,4,2,4_0,4_0_0,4_3_0,4_0_1 -17678,1,54.0,199.0,9,112,356.0,0.0,0.0,0,67,0.0,0.0,492.0540250170313,356.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2008.0,6,126214,2,1,0,0,1,,70.0,237.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1195.7688021682,356.0,15192.273998220888,0,4,2,3,30.0,8,2,3,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02343296336293631,15192.273998220888,3,2,3_1,3_0_1,3_1_1,3_0_0 -17679,1,47.0,50.0,2,111,240.0,400.0,0.0,78,67,0.0,0.0,331.72181461822333,640.0,0.0,725.4611603389795,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,128200,1,2,0,0,1,,440.0,320.0,42,1.0,0.0,4.0,3.0,2.0,2,2,228.929495899474,240.0,23735.439318640616,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026963899484151375,11867.719659320308,2,1,2_1,2_0_1,2_3_1,2_0_1 -17680,2,36.0,0.0,9,112,570.0,350.0,0.0,52,62,0.0,0.0,787.8393097182804,920.0,0.0,634.7785152966071,50,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,131308,2,1,1,0,1,,700.0,527.0,43,2.0,0.0,4.0,3.0,1.8,2,2,796.138112057229,570.0,27976.757314280363,1,1,2,3,68.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03288444009665117,15542.642952377979,3,2,3_0,3_1_0,3_1_0,3_0_0 -17681,1,35.0,100.0,5,111,450.0,1400.0,0.0,85,63,0.0,0.0,621.9784024091688,1850.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,101284,2,1,1,0,1,,350.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,261.893603891805,450.0,37832.353518704236,6,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04889994483386723,15763.480632793433,3,2,3_1,3_1_1,3_3_1,3_0_0 -17682,2,46.0,0.0,9,112,1279.0,0.0,0.0,52,45,0.0,0.0,1767.8008370696152,1279.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,2006.0,6,113292,2,1,1,0,1,,220.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,880.909128616446,1279.0,47993.6895431638,1,1,1,2,160.0,8,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026649336864374918,22854.137877697045,6,3,6,6_1,6_1,6_0_0 -17683,2,50.0,0.0,2,111,230.0,700.0,0.0,0,46,0.0,0.0,317.900072342464,930.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,133278,2,2,2,0,1,,180.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,262.77336082829,230.0,25098.84287965403,0,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03705350101035492,25098.84287965403,7,4,7,7_1,7_3,7_0_1 -17684,2,26.0,0.0,2,112,0.0,0.0,0.0,47,62,0.0,0.0,0.0,1192.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,20.0,1,,2,111192,2,1,2,0,1,,214.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,769.790142644799,0.0,43277.762783054015,1,1,1,2,110.0,8,2,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027543013394092163,28851.841855369345,8,4,8,8_1,8_1,8_0_1 -17685,2,56.0,0.0,1,112,240.0,0.0,0.0,52,52,0.0,724.6207533736205,331.72181461822333,1120.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,119075,2,1,2,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,767.436630562308,240.0,14991.383982624002,4,1,0,1,80.0,8,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07470957993592543,9994.255988416002,2,1,2_0,2_1_0,2_1_0,2_1_0 -17686,2,67.0,0.0,1,111,676.0,500.0,0.0,75,75,0.0,0.0,934.3497778413291,1176.0,0.0,906.8264504237244,20,0,0,0,0,0,0,0,0,0,,1,,1,128687,2,1,1,0,1,,90.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,259.78446538524,676.0,30032.939265499685,5,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.039157006565485555,20021.959510333123,5,3,5,5_1,5_3,5_1_0 -17687,1,37.0,535.0,2,111,1800.0,0.0,0.0,0,55,1792.3018524216009,465.827627168756,2487.913609636675,3450.0,0.0,0.0,50,2,2,1,1,1,2,2,2,0,,1,,2,124607,1,3,3,0,1,,190.0,810.0,32,1.0,0.0,5.0,5.0,2.5999999999999996,1,1,246.389195824773,1800.0,21188.075691505597,0,4,2,3,110.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.1628274341771925,8149.259881348307,1,1,1_1,1_1_1,1_3_1,1_0_1 -17688,2,31.0,0.0,1,112,0.0,0.0,0.0,52,53,0.0,0.0,0.0,1101.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,121930,2,3,3,0,1,,346.0,430.0,43,2.0,0.0,3.0,2.0,1.5,2,2,756.87766730938,0.0,38210.130014055685,1,1,2,3,58.0,8,2,3,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028814348435741897,25473.420009370457,7,4,7,7_1,7_1,7_1_0 -17689,2,82.0,0.0,2,112,254.0,1292.0,0.0,75,75,0.0,0.0,351.07225380428633,1546.0,0.0,2343.239547894904,71,0,0,0,0,0,0,0,0,0,,1,,2,101640,2,2,1,0,1,,318.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,901.807680919027,254.0,52952.048717599275,5,5,0,1,97.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029196226348956498,35301.36581173285,9,5,9,9_1,9_1,9_0_1 -17690,2,39.0,0.0,1,111,410.0,1050.0,0.0,46,62,0.0,0.0,566.6914333061316,1460.0,0.0,1904.3355458898213,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,117999,2,1,2,0,1,,340.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,241.055856090511,410.0,46261.897092045285,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031559449390825924,25701.05394002516,7,4,7,7_1,7_3,7_1_0 -17691,2,66.0,0.0,2,112,1052.0,0.0,0.0,0,77,0.0,1138.6897553014035,1454.047287409879,2236.0,144.50746835197612,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,117616,2,1,2,0,1,,325.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,496.22432753546,1052.0,14634.129525855615,0,5,0,1,120.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15279350890324087,14634.129525855615,3,2,3_0,3_1_0,3_0_0,3_0_1 -17692,2,35.0,0.0,1,111,300.0,530.0,0.0,0,48,0.0,0.0,414.65226827277917,830.0,0.0,961.236037449148,50,0,0,0,0,0,0,0,0,0,,1,,1,105273,2,1,1,0,1,,450.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,240.156633202865,300.0,47360.42664467473,0,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017525179961471616,47360.42664467473,10,5,10,10_1,10_3,10_1_0 -17693,1,39.0,244.0,2,111,930.0,630.0,0.0,0,52,0.0,0.0,1285.4220316456153,1560.0,0.0,1142.6013275338928,50,2,2,2,1,2,2,2,2,2,20.0,1,,2,122561,1,2,2,0,1,,590.0,426.0,32,1.0,0.0,5.0,4.0,2.1,2,2,213.105234543385,930.0,30091.54912262927,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.051841797630380486,14329.309106013938,3,2,3_1,3_1_1,3_3_1,3_0_1 -17694,2,68.0,0.0,2,112,362.0,858.0,0.0,77,75,0.0,62.110350289167464,500.3470703824869,1280.0,0.0,1556.1141889271112,50,0,0,0,0,0,0,0,0,0,,1,,2,100197,2,2,2,0,1,,597.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,428.245430314232,362.0,35928.54000643409,5,5,0,1,90.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0356262737024877,23952.360004289392,6,3,6,6_1,6_0,6_0_1 -17695,2,62.0,0.0,1,111,578.0,1380.0,0.0,78,78,0.0,310.55175144583734,798.8967035388879,2258.0,0.0,2502.8410031694793,50,0,0,0,0,0,0,0,0,0,,1,,1,114583,2,2,3,0,1,,264.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,248.084371520148,578.0,26444.53705181521,5,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08538625560264841,17629.691367876807,4,2,4_0,4_1_0,4_3_0,4_1_0 -17696,2,53.0,0.0,1,112,1637.0,0.0,0.0,43,46,0.0,0.0,2262.619210541798,1637.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,120173,2,2,2,0,1,,570.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,336.567127210564,1637.0,66772.2300024146,1,1,0,1,81.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02451617985412204,44514.82000160973,10,5,10,10_1,10_0,10_1_0 -17697,2,66.0,0.0,5,112,1200.0,0.0,0.0,78,77,0.0,186.3310508675024,1658.6090730911167,1440.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,102462,2,1,2,0,1,,550.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,362.057719309447,1200.0,36280.80700143353,5,5,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039690407105418095,24187.204667622354,7,4,7,7_1,7_0,7_0_0 -17698,1,28.0,219.0,2,111,400.0,200.0,0.0,85,68,0.0,0.0,552.8696910303722,600.0,0.0,362.73058016948977,41,2,2,2,1,2,2,2,2,0,,2,,2,120884,1,1,0,1,1,,750.0,332.0,42,1.0,0.0,3.0,4.0,2.1,1,1,180.60637627003,400.0,20835.501275037925,6,4,2,3,73.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.028797003349222656,9921.667273827583,2,1,2_1,2_0_1,2_3_1,2_0_1 -17699,1,47.0,380.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,216.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,20.0,2,,2,118016,2,1,0,1,1,,359.0,374.0,32,2.0,3.0,4.0,3.0,1.8,2,2,188.412941629171,0.0,20831.742432714535,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010368791794429533,11573.190240396963,2,1,2_1,2_0_1,2_3_1,2_0_1 -17700,2,80.0,0.0,2,111,476.0,288.0,0.0,0,78,0.0,0.0,657.9149323261429,764.0,0.0,522.3320354440652,71,0,0,0,0,0,0,0,0,0,,2,,2,105183,2,1,0,1,1,,588.0,365.0,11,0.0,2.0,4.0,1.0,1.0,1,1,276.848965654374,476.0,18561.55898880886,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04116033574877148,18561.55898880886,4,2,4_0,4_0_0,4_3_0,4_0_1 -17701,2,86.0,0.0,1,112,400.0,0.0,0.0,86,78,2987.1697540360015,776.3793786145933,552.8696910303722,3250.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119708,2,3,4,0,1,,430.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,347.328591093665,400.0,22475.46125314852,5,5,0,1,80.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14460214913474653,14983.640835432348,3,2,3_0,3_1_0,3_0_0,3_1_0 -17702,1,71.0,91.0,2,111,672.0,500.0,0.0,0,86,0.0,0.0,928.8210809310253,1172.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,1,,2,106927,2,2,1,0,1,,220.0,409.0,11,0.0,5.0,4.0,1.0,1.0,5,4,245.682242024883,672.0,13038.405312549323,0,5,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08988829323107196,13038.405312549323,2,1,2_1,2_1_1,2_3_1,2_0_1 -17703,2,52.0,0.0,7,112,410.0,0.0,0.0,56,21,2539.0942909306013,0.0,566.6914333061316,2110.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,107982,1,1,2,0,1,,630.0,,43,3.0,2.0,5.0,3.0,2.0,1,1,441.637741083134,410.0,52443.51415382449,1,1,0,1,120.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040233764537804646,26221.757076912247,7,4,7,7_1,7_0,7_0_0 -17704,1,48.0,270.0,5,111,264.0,0.0,0.0,0,68,0.0,0.0,364.89399608004567,264.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,15.0,2,,3,130306,1,3,0,1,1,,480.0,28.0,12,1.0,0.0,1.0,1.0,1.0,4,4,525.609493944659,264.0,9776.12016048975,0,1,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.027004578060216323,9776.12016048975,2,1,2_1,2_0_1,2_3_1,2_0_0 -17705,2,59.0,0.0,1,112,1200.0,0.0,0.0,54,47,0.0,103.51725048194578,1658.6090730911167,1360.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,120617,2,1,2,0,1,,500.0,,43,2.0,6.0,7.0,2.0,1.5,2,2,357.162198064591,1200.0,57549.625303566085,1,1,0,1,220.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023631778535936482,38366.41686904406,9,5,9,9_1,9_0,9_1_0 -17706,1,67.0,239.0,2,111,456.0,1392.0,0.0,0,77,0.0,0.0,630.2714477746243,1848.0,0.0,2524.604837979649,44,1,2,2,1,2,2,2,2,0,,1,,2,110599,2,2,1,0,1,,336.0,425.0,21,1.0,2.0,5.0,2.0,1.5,1,1,213.768699607978,456.0,23959.21294527787,0,5,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.0771310812346289,15972.808630185247,3,2,3_1,3_1_1,3_3_1,3_0_1 -17707,1,52.0,29.0,2,111,508.0,1600.0,0.0,68,67,0.0,0.0,702.1445076085727,2108.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,2,3.0,1,,2,116511,2,1,1,0,1,,644.0,349.0,43,3.0,0.0,4.0,4.0,2.5,1,1,141.154594507023,508.0,25180.289225087272,1,1,2,3,72.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0837162743110904,10072.115690034909,2,1,2_1,2_1_1,2_2_1,2_0_1 -17708,2,70.0,0.0,5,112,574.0,0.0,0.0,77,72,5974.339508072003,0.0,793.3680066285841,4674.0,172.03270041901916,0.0,44,2,2,2,1,2,2,2,2,0,,1,,3,126504,2,2,2,0,1,,93.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,508.822366556135,574.0,14767.47422179972,5,5,0,1,200.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.31650639302286704,9844.982814533147,2,1,2_0,2_1_0,2_0_0,2_0_0 -17709,2,74.0,0.0,2,112,500.0,0.0,0.0,0,78,2539.0942909306013,0.0,691.0871137879653,2300.0,172.03270041901916,0.0,50,2,2,2,2,2,2,2,1,0,,1,,2,131490,2,1,2,0,1,,120.0,,11,0.0,4.0,5.0,1.0,1.0,3,2,508.230903472201,500.0,16891.097617034087,0,5,0,1,120.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.13616640269016797,16891.097617034087,4,2,4_0,4_1_0,4_0_0,4_0_1 -17710,2,46.0,0.0,1,112,2184.3,0.0,0.0,21,54,0.0,0.0,3019.0831652941056,2184.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,111824,2,1,1,0,1,,189.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,332.836974628658,2184.3,46788.852296077865,1,1,1,2,140.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046677785259183986,22280.405855275174,6,3,6,6_1,6_0,6_1_0 -17711,2,62.0,0.0,1,111,234.0,778.0,0.0,0,78,0.0,0.0,323.4287692527678,1076.0,110.10092826817227,1411.0219568593152,42,0,0,0,0,0,0,0,0,0,,1,,1,100663,2,1,1,0,1,,160.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,201.512608879449,234.0,14969.1072257878,0,5,0,1,85.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07188137433783208,14969.1072257878,3,2,3_0,3_1_0,3_2_0,3_1_0 -17712,2,37.0,0.0,9,112,600.0,0.0,0.0,52,62,0.0,258.79312620486445,829.3045365455583,850.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,125020,2,1,1,0,1,,130.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,397.254179937044,600.0,46067.142288757765,1,1,1,2,94.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018451329033436357,25592.856827087646,7,4,7,7_1,7_0,7_0_0 -17713,2,72.0,0.0,5,111,400.0,960.0,0.0,86,78,0.0,0.0,552.8696910303722,1360.0,0.0,1741.106784813551,60,0,0,0,0,0,0,0,0,0,,1,,3,118246,2,1,2,0,1,,450.0,,41,1.0,4.0,5.0,4.0,2.5,1,1,205.504456580045,400.0,15007.917052260085,6,5,0,1,87.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09061883772839707,6003.1668209040345,1,1,1_0,1_1_0,1_2_0,1_0_0 -17714,2,56.0,0.0,7,112,1924.0,0.0,0.0,55,63,0.0,1035.1725048194578,2659.30321385609,2924.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,1,,5,122847,2,1,2,0,1,,400.0,,43,2.0,0.0,4.0,5.0,3.0,2,2,462.199125504085,1924.0,49438.08652192372,1,1,1,2,91.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059144683900808515,16479.362173974572,4,2,4_0,4_1_0,4_0_0,4_0_0 -17715,2,43.0,0.0,5,111,643.0,1350.0,0.0,85,38,0.0,0.0,888.7380283313233,1993.0,0.0,2448.431416144056,41,2,2,2,2,1,2,2,2,2,120.0,1,,3,131992,1,3,2,0,2,,510.0,746.0,42,1.0,0.0,5.0,4.0,2.5,3,2,228.481568911651,643.0,65391.161528007986,6,1,2,3,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03047812507729151,26156.464611203195,7,4,7,7_1,7_2,7_0_0 -17716,1,47.0,254.0,7,111,190.0,800.0,0.0,0,67,0.0,0.0,262.6131032394268,990.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,117200,2,2,0,0,1,,0.0,372.0,12,1.0,2.0,3.0,1.0,1.0,4,3,640.623530460405,190.0,9375.335124052544,0,1,2,3,70.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10559622529760479,9375.335124052544,1,1,1_1,1_0_1,1_2_1,1_0_0 -17717,2,64.0,0.0,2,111,290.0,1538.0,0.0,0,77,0.0,0.0,400.8305259970199,1828.0,0.0,2789.3981615033763,71,0,0,0,0,0,0,0,0,0,,1,,2,103682,1,1,2,0,2,,96.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,209.880607662499,290.0,18521.437415864264,0,5,0,1,92.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09869644342151616,18521.437415864264,4,2,4_0,4_1_0,4_2_0,4_0_1 -17718,2,67.0,0.0,6,111,190.0,107.0,0.0,0,52,0.0,0.0,262.6131032394268,297.0,0.0,194.06086039067702,44,0,0,0,0,0,0,0,0,2,5.0,8,,4,130828,2,1,0,0,1,,0.0,444.0,12,1.0,2.0,2.0,1.0,1.0,2,2,714.485697066949,190.0,22001.507342739722,0,1,2,3,50.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013499075103052293,22001.507342739722,6,3,6,6_0,6_2,6_0_0 -17719,2,73.0,0.0,2,111,450.0,1757.0,0.0,78,74,0.0,0.0,621.9784024091688,2207.0,0.0,3186.5881467889676,44,2,2,1,2,1,2,2,2,0,,1,,2,110476,2,2,1,0,1,,240.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,187.212248992363,450.0,48782.985255732856,5,5,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04524118375352273,32521.99017048857,8,4,8,8_1,8_2,8_0_1 -17720,1,63.0,16.0,2,111,237.0,684.0,0.0,0,77,0.0,0.0,327.57529193549556,921.0,0.0,1240.5385841796551,50,0,0,0,0,0,0,0,0,0,,2,,2,102123,2,1,0,0,1,,0.0,325.0,11,0.0,6.0,2.0,1.0,1.0,2,2,791.313920832216,237.0,13476.347749914654,0,5,2,3,40.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0683419585997128,13476.347749914654,3,2,3_1,3_0_1,3_2_1,3_0_1 -17721,2,88.0,0.0,2,111,500.0,1880.0,0.0,0,78,0.0,0.0,691.0871137879653,2380.0,0.0,3409.667453593204,44,0,0,0,0,0,0,0,0,0,,1,,2,104329,2,2,4,0,1,,184.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,592.386627460682,500.0,18668.525978702466,0,5,0,1,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12748730149960233,18668.525978702466,4,2,4_0,4_1_0,4_2_0,4_0_1 -17722,2,23.0,0.0,2,111,300.0,1000.0,0.0,56,62,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,8,,2,110583,1,1,0,0,1,,30.0,570.0,43,2.0,0.0,3.0,3.0,1.8,2,2,585.370562904255,300.0,37943.243268668615,4,1,2,3,110.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03426169952829168,21079.579593704784,5,3,5,5_0,5_2,5_0_1 -17723,2,60.0,0.0,1,111,0.0,0.0,2200.0,78,52,0.0,0.0,1124.0093366425551,2350.0,258.04905062852873,2515.1407042357896,60,2,2,2,1,1,2,2,2,2,2.0,1,,1,130969,2,3,3,0,1,,220.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,162.946654390095,0.0,33638.43510200027,5,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06986056256404924,22425.623401333516,6,3,6,6_1,6_2,6_1_0 -17724,1,58.0,255.0,1,111,476.0,0.0,0.0,0,77,0.0,124.22070057833493,657.9149323261429,696.0,172.03270041901916,0.0,70,2,2,2,1,1,2,2,2,0,,8,,1,109403,1,3,0,0,2,,165.0,271.0,11,0.0,3.0,3.0,1.0,1.0,1,1,619.299913001966,476.0,6083.273780468153,0,6,2,3,75.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,1,0,0,1,0.114412078942539,6083.273780468153,1,1,1_1,1_0_1,1_2_1,1_1_0 -17725,2,44.0,0.0,1,111,730.0,0.0,0.0,53,56,4480.754631054002,0.0,1008.9871861304293,4150.0,722.5373417598805,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132194,2,2,1,0,1,,370.0,,43,2.0,0.0,6.0,6.0,3.3,2,2,198.613481076095,730.0,23196.30240817771,4,1,0,1,82.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1789078244874469,7029.18254793264,1,1,1_0,1_1_0,1_2_0,1_1_0 -17726,2,61.0,0.0,2,111,0.0,0.0,0.0,85,78,0.0,0.0,0.0,154.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108519,2,1,0,1,1,562.0,0.0,291.0,41,0.0,3.0,3.0,3.0,2.0,3,1,703.343454166706,0.0,28783.765968106673,6,5,2,3,57.0,6,4,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005350238053305356,14391.882984053336,3,2,3_0,3_0_0,3_2_0,3_0_1 -17727,2,88.0,0.0,6,111,415.0,2145.0,0.0,0,77,0.0,0.0,573.6023044440112,2560.0,0.0,3890.285472317778,20,0,0,0,0,0,0,0,0,0,,1,,4,129452,2,1,1,0,2,,240.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,571.015156895859,415.0,20186.55429917212,0,5,0,1,122.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12681708636649244,20186.55429917212,5,3,5,5_1,5_2,5_0_0 -17728,1,43.0,350.0,2,111,0.0,0.0,0.0,63,81,0.0,0.0,0.0,875.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,128914,2,1,1,0,2,,883.0,550.0,43,2.0,4.0,4.0,3.0,2.0,2,2,523.77739281922,0.0,9468.275317958238,4,4,2,3,60.0,6,4,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0924138737643602,4734.137658979119,1,1,1_1,1_1_1,1_2_1,1_0_1 -17729,2,43.0,0.0,1,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,3831.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,117627,1,3,4,0,1,,283.0,670.0,43,2.0,0.0,5.0,3.0,1.8,1,1,449.91080091193,0.0,33594.76766881218,1,1,2,3,125.0,6,4,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11403561524125444,18663.759816006765,4,2,4_0,4_1_0,4_2_0,4_1_0 -17730,1,27.0,371.0,6,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1939.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,119482,1,3,0,0,2,,314.0,393.0,31,0.0,0.0,3.0,2.0,1.3,1,1,243.920649249386,0.0,9382.714821703807,0,6,2,3,60.0,7,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.20665660598729538,7217.4729397721585,1,1,1_1,1_0_1,1_2_1,1_0_0 -17731,1,33.0,500.0,1,111,500.0,1200.0,0.0,62,85,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,1,129804,2,1,1,0,1,,600.0,605.0,42,1.0,3.0,6.0,6.0,2.9,2,2,209.30705721965,500.0,24246.52619751375,4,6,2,3,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07011313646135085,8360.871102590949,1,1,1_1,1_1_1,1_2_1,1_1_0 -17732,2,72.0,0.0,2,111,500.0,1000.0,0.0,0,77,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,2,122328,2,2,3,0,1,,260.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,571.015156895859,500.0,56600.39810582668,0,5,0,1,90.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026501580381032404,56600.39810582668,10,5,10,10_1,10_2,10_0_1 -17733,2,81.0,0.0,2,111,380.0,0.0,0.0,78,75,0.0,1537.2311696568947,525.2262064788536,2115.0,430.0817510475479,0.0,50,2,2,2,1,1,2,2,2,0,,1,,2,111462,2,1,2,0,2,,192.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,231.64796746612,380.0,25724.718024178965,5,5,0,1,88.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.08221664462996588,17149.81201611931,4,2,4_0,4_1_0,4_3_0,4_0_1 -17734,2,38.0,0.0,5,111,409.0,685.0,0.0,37,46,0.0,331.2552015422265,565.3092590785556,1414.0,0.0,1242.3522370805024,10,0,0,0,0,0,0,0,0,2,40.0,1,,3,114601,2,2,3,0,1,,150.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,526.926001222427,409.0,108325.84983983001,1,1,1,2,100.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013053209387147503,72217.23322655335,10,5,10,10_1,10_2,10_0_0 -17735,2,80.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2569.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118675,2,2,3,0,1,,166.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,592.386627460682,0.0,20183.86512644322,0,5,0,1,80.0,6,4,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.127279883407183,20183.86512644322,5,3,5,5_1,5_2,5_0_1 -17736,1,35.0,410.0,1,111,400.0,400.0,0.0,68,85,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,50,2,2,2,2,1,2,2,2,0,,1,,1,113522,2,3,2,0,1,,0.0,580.0,42,1.0,2.0,4.0,4.0,2.3,2,2,230.871599668846,400.0,12121.910498941388,4,6,2,3,144.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.06599619755234658,5270.395869104952,1,1,1_1,1_1_1,1_3_1,1_1_0 -17737,2,91.0,0.0,1,111,378.0,1630.0,0.0,0,86,0.0,0.0,522.4618580237018,2008.0,0.0,2956.254228381342,50,0,0,0,0,0,0,0,0,0,,1,,1,126655,2,2,1,0,2,,80.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,490.377419497746,378.0,10187.94253916495,0,5,0,1,90.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1970957327527865,10187.94253916495,2,1,2_0,2_1_0,2_2_0,2_1_0 -17738,2,61.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,409.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,125740,2,3,0,0,1,,328.0,2.0,11,0.0,1.0,1.0,1.0,1.0,2,2,349.627865143564,0.0,5502.599999999999,0,7,3,4,35.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07432849925489769,5502.599999999999,1,1,1_0,1_0_0,1_3_0,1_0_1 -17739,2,66.0,0.0,2,111,200.0,1400.0,0.0,78,34,0.0,0.0,276.4348455151861,1600.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,133195,2,1,2,0,1,,300.0,,42,1.0,1.0,4.0,2.0,1.5,4,3,526.926001222427,200.0,101851.94448636698,6,1,0,1,100.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015709076621646258,67901.29632424466,10,5,10,10_1,10_2,10_0_1 -17741,2,61.0,0.0,1,111,0.0,0.0,1500.0,48,78,0.0,0.0,766.3700022562875,1850.0,602.1144514665671,1714.868661978947,60,2,2,2,2,1,1,2,2,0,,1,,1,129293,1,3,4,0,2,,320.0,556.0,42,2.0,2.0,4.0,3.0,2.0,1,1,394.750557992283,0.0,22425.13131334681,4,5,2,3,75.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.08249672985856417,11212.565656673405,2,1,2_0,2_1_0,2_2_0,2_1_0 -17742,2,27.0,0.0,9,111,1018.0,0.0,0.0,52,43,0.0,0.0,1407.0533636722973,1018.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,118842,2,1,0,0,1,,0.0,636.0,43,2.0,0.0,3.0,2.0,1.5,1,1,562.684784666484,1018.0,38354.16593043418,1,1,2,3,65.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02654209719607572,25569.443953622787,7,4,7,7_0,7_2,7_0_0 -17743,2,73.0,0.0,2,111,490.0,1350.0,0.0,0,75,0.0,0.0,677.265371512206,1840.0,0.0,2448.431416144056,50,0,0,0,0,0,0,0,0,0,,1,,2,106828,1,3,1,0,2,,351.0,,11,0.0,3.0,8.0,1.0,1.0,2,2,288.893190318268,490.0,34743.882451138896,0,5,0,1,130.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05295896342579542,34743.882451138896,9,5,9,9_1,9_3,9_0_1 -17744,2,79.0,0.0,2,111,160.0,0.0,0.0,0,77,0.0,0.0,221.1478764121489,160.0,0.0,0.0,50,1,2,2,2,1,2,2,2,0,,2,,2,125789,1,3,0,1,1,,0.0,365.0,11,0.0,2.0,3.0,1.0,1.0,4,3,276.848965654374,160.0,15789.831164460356,0,5,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01013310391564711,15789.831164460356,3,2,3_0,3_0_0,3_3_0,3_0_1 -17745,2,86.0,0.0,8,111,800.0,0.0,0.0,0,77,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2000.0,6,112373,2,1,0,0,1,,100.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,625.204402903313,800.0,19677.965038896087,0,5,0,1,65.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04065461029220729,19677.965038896087,5,3,5,5_0,5_2,5_0_0 -17746,1,36.0,305.0,2,111,642.0,1046.0,0.0,85,62,0.0,0.0,887.3558541037474,1779.0,156.54975738130744,1897.0809342864316,31,0,0,0,0,0,0,0,0,0,,1,,2,109490,1,3,3,0,1,,418.0,530.0,42,1.0,0.0,4.0,5.0,2.4,1,1,195.948870240847,642.0,26689.000656033455,6,1,2,3,105.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0666566733961929,11120.41694001394,2,1,2_1,2_1_1,2_3_1,2_0_1 -17749,1,82.0,194.0,2,111,288.0,624.0,0.0,0,77,0.0,0.0,398.066177541868,912.0,0.0,1131.719410128808,42,0,0,0,0,0,0,0,0,0,,2,,2,102913,2,1,0,0,1,,75.0,233.0,11,0.0,2.0,3.0,1.0,1.0,5,4,294.918181319917,288.0,9508.03969398631,0,6,2,3,56.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09591882547322832,9508.03969398631,1,1,1_1,1_0_1,1_3_1,1_0_1 -17750,2,70.0,0.0,1,111,700.0,0.0,0.0,0,77,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,115822,2,1,1,0,1,,320.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,415.544931408877,700.0,14985.646402794859,0,5,0,1,60.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05071519636672184,14985.646402794859,3,2,3_0,3_1_0,3_2_0,3_1_0 -17751,2,21.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1721.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,6.0,2,,1,121633,2,2,0,0,1,,0.0,495.0,12,1.0,0.0,3.0,1.0,1.0,2,2,528.626359916792,0.0,10159.402995404793,0,1,2,3,60.0,6,4,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.16939971775688265,10159.402995404793,2,1,2_0,2_0_0,2_2_0,2_1_0 -17752,0,82.0,0.0,1,111,530.0,1420.0,0.0,0,86,0.0,0.0,732.5523406152432,1950.0,0.0,2575.3871192033776,42,2,2,2,1,2,2,2,2,0,,1,,1,113381,2,1,2,0,1,,320.0,,21,0.0,0.0,3.0,2.0,1.5,1,1,254.076239931283,530.0,29757.164666014552,0,5,5,0,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.06553043685062782,19838.109777343034,5,3,5,5_1,5_3,5_1_0 -17753,1,48.0,271.0,2,111,200.0,180.0,0.0,0,63,0.0,0.0,276.4348455151861,380.0,0.0,326.4575221525408,70,0,0,0,0,0,0,0,0,0,,1,,2,106267,2,1,2,0,1,,150.0,453.0,12,1.0,2.0,5.0,1.0,1.0,2,2,220.358638447551,200.0,10654.57591453634,0,4,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03566542704731731,10654.57591453634,2,1,2_1,2_1_1,2_3_1,2_0_1 -17754,2,56.0,0.0,1,111,800.0,1300.0,0.0,75,34,0.0,0.0,1105.7393820607444,2100.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,1,3.0,1,,1,107065,1,1,2,0,1,,800.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,458.024275501228,800.0,84167.16671840285,5,1,0,1,165.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024950346814286224,56111.444478935235,10,5,10,10_1,10_2,10_1_0 -17755,1,43.0,150.0,1,111,0.0,0.0,2500.0,42,64,0.0,0.0,1277.2833370938126,2500.0,0.0,2858.1144366315784,42,2,2,2,1,1,2,2,2,2,25.0,1,,1,107225,2,3,4,0,1,,840.0,360.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,198.960315563406,0.0,34886.29991334986,4,1,2,3,75.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.0716613686808136,13417.807658980717,3,2,3_1,3_1_1,3_3_1,3_1_0 -17756,2,73.0,0.0,9,111,236.0,685.0,0.0,0,74,0.0,0.0,326.1931177079196,921.0,0.0,1242.3522370805024,20,2,1,2,2,1,2,2,2,0,,2,2007.0,6,106092,2,1,0,0,1,,172.0,561.0,11,0.0,0.0,3.0,1.0,1.0,2,2,659.593030189572,236.0,28730.178344204072,0,5,2,3,76.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03205688419215119,28730.178344204072,8,4,8,8_0,8_2,8_0_0 -17757,0,65.0,0.0,2,111,0.0,0.0,1579.0,78,77,0.0,0.0,806.7321557084521,1579.0,0.0,1805.1850781765052,31,1,2,2,1,2,2,2,2,0,,1,,2,107752,1,2,2,0,1,,541.0,,41,0.0,0.0,4.0,3.0,2.0,2,2,219.872068039273,0.0,60734.038371230235,7,5,5,0,96.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.025998600493985488,30367.019185615118,8,4,8,8_1,8_3,8_0_1 -17758,1,31.0,211.0,2,111,0.0,0.0,280.0,0,56,0.0,0.0,143.05573375450703,280.0,0.0,320.1088169027368,20,0,0,0,0,0,0,0,0,0,,8,,2,102794,1,1,0,1,2,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,2,2,605.494762832133,0.0,5973.353398841781,0,4,2,3,38.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.046874842538914795,5973.353398841781,1,1,1_1,1_0_1,1_2_1,1_0_1 -17759,1,43.0,300.0,7,111,0.0,0.0,1600.0,55,62,0.0,0.0,817.4613357400401,1600.0,0.0,1829.1932394442103,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,131732,2,1,1,0,1,,1000.0,500.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,4,4,262.578579988191,0.0,36284.899828539645,1,1,2,3,87.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04409547794153012,12512.034423634363,2,1,2_1,2_1_1,2_3_1,2_0_0 -17760,2,79.0,0.0,2,111,280.0,80.0,0.0,0,78,0.0,0.0,387.00878372126056,360.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,0,,2,,2,110948,2,1,0,1,1,615.0,0.0,304.0,11,0.0,5.0,3.0,1.0,1.0,1,1,553.902865039634,280.0,16056.654697287706,0,5,2,3,60.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022420610443893478,16056.654697287706,4,2,4_0,4_0_0,4_2_0,4_0_1 -17761,2,31.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1346.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,124077,2,1,0,0,1,,185.0,515.0,12,1.0,0.0,3.0,1.0,1.0,3,3,528.626359916792,0.0,25350.042851985036,0,1,2,3,90.0,6,4,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05309655718765783,25350.042851985036,7,4,7,7_0,7_2,7_1_0 -17762,2,62.0,0.0,2,111,470.0,1200.0,0.0,77,77,0.0,0.0,649.6218869606873,1670.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,2,107552,2,1,2,0,2,,600.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,555.751124362566,470.0,25634.53584091943,5,5,0,1,150.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06514648871988712,17089.690560612955,4,2,4_0,4_1_0,4_2_0,4_0_1 -17763,2,51.0,0.0,1,111,1000.0,1200.0,0.0,63,47,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,120103,2,1,3,0,1,,600.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,376.524396912389,1000.0,50756.813967662005,1,1,1,2,120.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04334393410511653,25378.406983831002,7,4,7,7_1,7_2,7_1_0 -17764,2,62.0,0.0,6,111,570.0,1300.0,0.0,78,75,0.0,0.0,787.8393097182804,1870.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,4,127166,2,1,3,0,2,,170.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,506.993731816132,570.0,41324.182083425716,5,5,0,1,75.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04525195432119681,27549.454722283812,7,4,7,7_1,7_2,7_0_0 -17765,0,77.0,0.0,2,111,395.0,750.0,0.0,0,86,0.0,0.0,545.9588198924926,1145.0,0.0,1360.2396756355868,50,2,2,2,1,2,2,2,2,0,,1,,2,122167,1,1,3,0,2,,200.0,,11,0.0,6.0,5.0,1.0,1.0,2,2,277.548906728272,395.0,6086.228187919463,0,6,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.18812965348106847,6086.228187919463,1,1,1_0,1_1_0,1_3_0,1_0_1 -17766,1,69.0,53.0,1,111,400.0,600.0,0.0,0,78,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,1,,1,117869,2,2,2,0,1,,150.0,307.0,11,0.0,0.0,3.0,1.0,1.0,1,1,382.075691899002,400.0,12766.078171592575,0,5,2,3,70.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07833259255964978,12766.078171592575,2,1,2_1,2_1_1,2_2_1,2_1_0 -17767,2,90.0,0.0,1,111,420.0,2413.0,0.0,77,74,0.0,0.0,580.5131755818909,2833.0,0.0,4376.3444497448945,50,0,0,0,0,0,0,0,0,0,,1,,1,112721,2,2,2,0,1,,170.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,438.497031457675,420.0,96061.12962184209,6,6,0,1,120.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0294916373683351,64040.75308122806,10,5,10,10_1,10_2,10_1_0 -17768,1,63.0,169.0,2,111,252.0,108.0,0.0,0,77,0.0,0.0,348.3079053491345,360.0,0.0,195.8745132915245,31,2,2,2,2,2,2,2,1,0,,2,,2,111426,2,1,0,1,1,,85.0,300.0,11,0.0,2.0,3.0,1.0,1.0,1,1,311.82466653444,252.0,9394.941991446922,0,5,2,3,40.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.038318490984589476,9394.941991446922,1,1,1_1,1_0_1,1_3_1,1_0_1 -17769,2,49.0,0.0,8,112,565.0,1700.0,0.0,38,33,0.0,0.0,780.9284385804008,2265.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,101077,2,1,2,0,1,,429.0,,43,2.0,1.0,7.0,3.0,2.0,1,1,426.181000867364,565.0,79761.33852476174,1,1,1,2,134.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02839721651984107,39880.66926238087,9,5,9,9_1,9_0,9_0_0 -17770,2,72.0,0.0,2,111,500.0,1100.0,0.0,85,78,0.0,0.0,691.0871137879653,1600.0,0.0,1995.0181909321939,71,2,2,2,2,2,2,2,1,0,,1,,2,104288,2,2,2,0,1,,450.0,450.0,41,0.0,6.0,6.0,3.0,2.0,2,2,213.621102302303,500.0,15108.556301217279,6,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.10590025731784114,7554.278150608639,1,1,1_0,1_1_0,1_3_0,1_0_1 -17771,2,64.0,0.0,5,112,1246.0,36.0,0.0,0,74,0.0,0.0,1722.1890875596096,1282.0,0.0,65.29150443050816,41,0,0,0,0,0,0,0,0,0,,1,,3,122532,1,1,1,0,1,,235.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,454.410558939673,1246.0,26940.598825663863,0,5,0,1,80.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04758617313208179,26940.598825663863,7,4,7,7_1,7_0,7_0_0 -17772,1,52.0,347.0,1,111,360.0,740.0,0.0,0,67,0.0,0.0,497.582721927335,1100.0,0.0,1342.1031466271122,50,2,2,2,1,2,2,2,2,0,,8,,1,121872,1,3,0,0,1,,0.0,324.0,32,2.0,1.0,4.0,3.0,2.0,2,2,289.32815999918,360.0,14900.362171161532,0,4,2,3,40.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07382370893836142,7450.181085580766,1,1,1_1,1_0_1,1_3_1,1_1_0 -17773,2,41.0,0.0,2,112,720.0,750.0,0.0,54,46,0.0,0.0,995.16544385467,1470.0,0.0,1360.2396756355868,43,0,0,0,0,0,0,0,0,0,,1,,2,120360,2,2,2,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,425.502018695603,720.0,56354.48571584156,1,1,1,2,100.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026084880046856232,31308.047619911977,8,4,8,8_1,8_0,8_0_1 -17774,2,62.0,0.0,5,112,400.0,800.0,0.0,75,90,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,0,,1,,3,131015,2,1,2,0,1,,240.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,384.157914942416,400.0,22122.26941231253,6,5,0,1,90.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054243982732265224,14748.179608208353,3,2,3_0,3_1_0,3_0_0,3_0_0 -17775,2,66.0,0.0,6,111,380.0,1320.0,0.0,77,78,0.0,0.0,525.2262064788536,1700.0,0.0,2394.0218291186325,50,0,0,0,0,0,0,0,0,0,,1,,4,104186,1,2,2,0,1,,320.0,419.0,41,0.0,2.0,4.0,2.0,1.5,2,2,261.164608609935,380.0,25891.200696038202,5,5,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0656593728486346,17260.80046402547,4,2,4_0,4_1_0,4_3_0,4_0_0 -17776,2,45.0,0.0,2,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,2342.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,103809,2,1,2,0,1,,554.0,,32,1.0,2.0,5.0,2.0,1.5,1,1,423.64942062354,0.0,34582.0290323924,0,1,1,2,112.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06772303608346082,23054.68602159493,6,3,6,6_1,6_0,6_0_1 -17777,2,55.0,0.0,1,111,674.0,2086.0,0.0,85,77,0.0,0.0,931.5854293861772,2760.0,0.0,3783.2799511677786,50,0,0,0,0,0,0,0,0,0,,1,,1,118008,2,1,2,0,1,,290.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,241.221434483153,674.0,22462.698197845202,6,5,0,1,88.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12287036827413551,14975.132131896802,3,2,3_0,3_1_0,3_3_0,3_1_0 -17778,2,72.0,0.0,2,112,382.0,1242.0,0.0,77,78,0.0,124.22070057833493,527.9905549340054,1744.0,0.0,2252.5569028525315,50,2,2,2,2,1,2,2,2,0,,1,,2,132328,2,3,1,0,1,,300.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,418.243962855007,382.0,32226.780571183364,5,5,0,1,102.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05411648228862969,21484.52038078891,6,3,6,6_1,6_0,6_0_1 -17779,2,24.0,0.0,1,111,0.0,0.0,0.0,54,62,0.0,0.0,0.0,1321.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,130302,2,1,1,0,1,,379.0,580.0,43,2.0,0.0,5.0,2.0,1.5,3,2,223.974745765975,0.0,8821.273686255683,1,1,2,3,81.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14975161716819121,5880.849124170455,1,1,1_0,1_1_0,1_3_0,1_1_0 -17780,2,64.0,0.0,1,112,550.0,0.0,0.0,78,78,1493.5848770180007,46.5827627168756,760.1958251667618,1755.0,275.25232067043066,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,111498,2,1,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,327.158837533611,550.0,25935.282800740264,5,5,0,1,100.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06766843506136387,17290.188533826844,4,2,4_0,4_1_0,4_0_0,4_1_0 -17781,2,44.0,0.0,2,112,0.0,0.0,0.0,48,43,0.0,0.0,0.0,2813.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,131542,2,2,3,0,1,,137.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,378.394224173139,0.0,65759.88333168102,4,1,1,2,100.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04277683988293796,28591.253622470012,8,4,8,8_1,8_0,8_0_1 -17782,1,55.0,212.0,1,111,1700.0,0.0,0.0,0,78,0.0,0.0,2349.696186879082,1800.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113832,1,2,2,0,1,,450.0,447.0,31,0.0,2.0,4.0,2.0,1.5,1,1,217.824413064898,1700.0,16189.492354511156,0,7,2,3,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11118322678588716,10792.994903007437,2,1,2_1,2_1_1,2_3_1,2_1_0 -17783,2,77.0,0.0,2,112,0.0,0.0,2170.0,78,74,0.0,0.0,1108.6819365974293,2170.0,0.0,2480.84333099621,71,0,0,0,0,0,0,0,0,0,,1,,2,122074,2,1,2,0,2,,365.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,418.243962855007,0.0,19027.266297393006,5,5,0,1,110.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11404686128229148,12684.844198262004,2,1,2_0,2_1_0,2_0_0,2_0_1 -17784,2,63.0,0.0,1,112,3034.0,0.0,0.0,74,75,0.0,0.0,4193.516606465373,3168.0,230.52381856148568,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128129,2,1,1,0,2,,244.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,346.068034039829,3034.0,88121.35342351966,5,5,0,1,150.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0359504237840548,58747.568949013104,10,5,10,10_1,10_0,10_1_0 -17785,2,73.0,0.0,2,111,300.0,1540.0,0.0,0,77,0.0,0.0,414.65226827277917,1840.0,0.0,2793.0254673050713,70,0,0,0,0,0,0,0,0,0,,1,,2,102660,2,1,2,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,262.77336082829,300.0,16418.64807980649,0,5,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11206769223971856,16418.64807980649,4,2,4_0,4_1_0,4_3_0,4_0_1 -17786,2,64.0,0.0,5,112,658.0,0.0,0.0,75,75,0.0,186.3310508675024,909.4706417449623,958.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,128960,2,1,1,0,1,,486.0,,41,0.0,5.0,4.0,2.0,1.5,5,4,386.988616527235,658.0,41619.86071385373,5,5,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02301785694542502,27746.573809235822,7,4,7,7_1,7_0,7_0_0 -17787,2,64.0,0.0,2,111,280.0,850.0,0.0,0,77,0.0,0.0,387.00878372126056,1130.0,0.0,1541.6049657203316,71,0,0,0,0,0,0,0,0,0,,1,,2,109216,2,1,1,0,1,,245.0,233.0,11,0.0,4.0,3.0,1.0,1.0,4,4,199.472166180233,280.0,20500.0,0,5,2,3,50.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055121951219512196,20500.0,5,3,5,5_1,5_3,5_0_1 -17789,2,61.0,0.0,2,111,374.0,930.0,0.0,43,47,0.0,0.0,516.933161113398,1304.0,0.0,1686.6971977881274,60,0,0,0,0,0,0,0,0,3,30.0,1,,2,101714,2,2,1,0,1,,451.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,231.64796746612,374.0,41788.049952588466,1,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03120509335753837,27858.69996839231,7,4,7,7_1,7_3,7_0_1 -17790,1,30.0,337.0,8,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,938.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,6,113011,2,2,0,0,1,,120.0,315.0,31,0.0,0.0,3.0,2.0,1.3,2,2,272.340415183352,0.0,9404.62557733465,0,6,2,3,52.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09973815462261466,7234.327367180499,1,1,1_1,1_0_1,1_3_1,1_0_0 -17791,2,63.0,0.0,1,112,1000.0,1000.0,0.0,75,31,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,129922,2,1,1,0,1,,700.0,,41,0.0,3.0,6.0,2.0,1.5,4,4,383.345660381003,1000.0,231758.80506143373,5,5,0,1,200.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008629661338950413,154505.8700409558,10,5,10,10_1,10_0,10_1_0 -17792,2,66.0,0.0,1,111,1265.0,0.0,0.0,77,78,0.0,958.5697394628179,1748.4503978835521,2311.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130539,2,1,2,0,2,,400.0,,41,1.0,3.0,6.0,3.0,2.0,2,2,220.255248228734,1265.0,50776.06886641665,5,5,0,1,110.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04551356675680929,25388.034433208326,7,4,7,7_1,7_3,7_1_0 -17793,2,76.0,0.0,1,112,350.0,1300.0,0.0,77,75,0.0,310.55175144583734,483.76097965157567,1950.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,1,127390,2,1,1,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,331.298156289192,350.0,32583.10241839804,5,5,0,1,100.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05984697144428251,21722.068278932027,6,3,6,6_1,6_0,6_1_0 -17794,2,77.0,0.0,5,111,261.0,1631.0,0.0,0,75,0.0,0.0,360.7474733973179,1892.0,0.0,2958.0678812821893,50,0,0,0,0,0,0,0,0,0,,1,,3,101943,2,2,3,0,1,,302.0,379.0,11,0.0,0.0,4.0,1.0,1.0,2,2,294.834741642271,261.0,38433.51615294178,0,5,2,3,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04922786644008845,38433.51615294178,9,5,9,9_1,9_3,9_0_0 -17795,2,33.0,0.0,9,112,320.0,900.0,0.0,43,38,0.0,0.0,442.2957528242978,1220.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,115849,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,378.069165681904,320.0,68472.43114504157,1,1,1,2,130.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01781738985454946,32605.919592876937,8,4,8,8_1,8_0,8_0_0 -17796,1,71.0,169.0,2,111,130.0,0.0,0.0,0,86,0.0,0.0,179.68264958487097,811.0,106.66027425979189,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111421,2,3,2,0,1,,122.0,339.0,11,0.0,7.0,5.0,1.0,1.0,2,2,242.599106263951,130.0,10826.19336995239,0,5,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07491091026056247,10826.19336995239,2,1,2_1,2_1_1,2_3_1,2_0_1 -17797,2,78.0,0.0,2,112,370.0,0.0,0.0,77,78,970.8301700617004,672.8621281326475,511.40446420309434,1790.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132849,2,1,2,0,2,,220.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,400.107910929116,370.0,23129.129753608584,5,5,0,1,44.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07739158451133363,15419.419835739056,3,2,3_0,3_1_0,3_0_0,3_0_1 -17798,2,49.0,0.0,6,112,350.0,1450.0,0.0,0,34,0.0,0.0,483.76097965157567,1800.0,0.0,2629.7967062288008,50,2,2,2,2,1,2,2,2,2,45.0,1,,4,103513,2,2,3,0,1,,500.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,412.620290758428,350.0,36537.559790132815,0,1,1,2,105.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.049264373711298055,18268.779895066407,4,2,4_0,4_1_0,4_0_0,4_0_0 -17799,1,34.0,434.0,1,111,366.0,835.0,0.0,0,52,0.0,0.0,505.87576729279056,1201.0,0.0,1514.4001722076198,70,2,2,2,2,2,2,1,2,1,20.0,1,,1,101958,2,2,5,0,1,,696.0,411.0,32,1.0,0.0,4.0,3.0,1.6,1,1,213.448383819919,366.0,12778.420093018338,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.09398657981640332,7986.512558136461,1,1,1_1,1_1_1,1_3_1,1_1_0 -17800,2,56.0,0.0,7,112,1500.0,0.0,0.0,56,48,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,5,111354,2,1,2,0,1,,400.0,,43,3.0,2.0,5.0,3.0,2.0,1,1,446.88861194918,1500.0,32841.486215473975,4,1,0,1,95.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047500895354272134,16420.743107736987,4,2,4_0,4_1_0,4_0_0,4_0_0 -17801,2,42.0,0.0,7,112,1224.0,0.0,0.0,54,43,0.0,569.3448776507017,1691.7812545529391,1774.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,119247,2,2,2,0,1,,948.0,,43,2.0,0.0,5.0,4.0,2.1,2,1,458.563332721759,1224.0,61491.39107744721,1,1,1,2,106.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028849566889220014,29281.614798784383,8,4,8,8_1,8_0,8_0_0 -17802,0,41.0,0.0,1,111,246.0,693.0,0.0,0,67,0.0,0.0,340.0148599836789,939.0,0.0,1256.8614602872822,43,0,0,0,0,0,0,0,0,0,,1,,1,130827,2,1,1,0,1,,230.0,,22,1.0,6.0,5.0,2.0,1.5,2,2,231.522778064261,246.0,57624.125685598156,0,1,5,0,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016295258085532772,38416.08379039877,9,5,9,9_1,9_3,9_1_0 -17803,2,36.0,0.0,7,112,864.0,0.0,0.0,47,37,0.0,414.0690019277831,1194.198532625604,1264.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,132327,2,3,3,0,1,,425.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,439.467954824137,864.0,53957.24491684107,1,1,0,1,73.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023425955160388146,29976.247176022815,8,4,8,8_1,8_0,8_0_0 -17804,2,43.0,0.0,9,112,924.0,1060.0,0.0,54,22,0.0,0.0,1277.1289862801598,1984.0,0.0,1922.472074898296,43,0,0,0,0,0,0,0,0,2,3.0,1,2006.0,6,132572,2,1,1,0,1,,662.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,400.292192483431,924.0,50621.61488253823,1,1,1,2,168.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03919274413911229,22009.397775016623,6,3,6,6_1,6_0,6_0_0 -17805,2,46.0,0.0,2,112,940.0,0.0,0.0,0,63,0.0,0.0,1299.2437739213747,1180.0,412.878481005646,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,119911,2,2,2,0,1,,200.0,,22,1.0,5.0,5.0,2.0,1.5,2,2,385.5909958934,940.0,27485.13613109538,0,1,0,1,90.0,9,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04293229600071014,18323.42408739692,4,2,4_0,4_1_0,4_0_0,4_0_1 -17806,1,51.0,468.0,5,111,0.0,0.0,0.0,81,53,0.0,0.0,0.0,621.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,103807,2,1,0,0,1,,471.0,426.0,43,2.0,5.0,4.0,2.0,1.5,2,2,345.94640194113,0.0,1840.376449713293,4,4,2,3,52.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.3374309642447032,1226.9176331421952,1,1,1_1,1_0_1,1_3_1,1_0_0 -17807,2,26.0,0.0,2,112,700.0,1100.0,0.0,55,54,0.0,0.0,967.5219593031513,2440.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,105073,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.1,2,1,354.819508172547,700.0,48506.583111258915,1,1,1,2,85.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050302450584973256,23098.372910123293,6,3,6,6_1,6_0,6_0_1 -17808,2,62.0,0.0,1,111,453.0,1037.0,0.0,0,63,0.0,331.2552015422265,626.1249250918966,1810.0,0.0,1880.7580581788045,50,0,0,0,0,0,0,0,0,0,,1,,1,105019,2,1,1,0,1,,413.0,305.0,12,1.0,3.0,4.0,1.0,1.0,2,2,245.657406742999,453.0,26818.276841935447,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0674912862846476,26818.276841935447,7,4,7,7_1,7_3,7_1_0 -17809,2,79.0,0.0,1,112,485.0,1053.0,0.0,0,78,0.0,0.0,670.3545003743263,1538.0,0.0,1909.7765045923636,70,0,0,0,0,0,0,0,0,0,,1,,1,126880,2,1,1,0,1,,288.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,454.410558939673,485.0,22303.668818332375,0,5,0,1,80.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06895726494718436,22303.668818332375,6,3,6,6_1,6_0,6_1_0 -17810,1,73.0,19.0,2,111,220.0,120.0,0.0,0,78,0.0,0.0,304.0783300667047,340.0,0.0,217.63834810169388,43,0,0,0,0,0,0,0,0,0,,8,,2,121019,1,1,0,1,1,,176.0,455.0,11,0.0,3.0,2.0,1.0,1.0,2,2,285.83443917518,220.0,14125.427216140068,0,5,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024070068451558582,14125.427216140068,3,2,3_1,3_0_1,3_3_1,3_0_1 -17811,2,40.0,0.0,1,112,600.0,1200.0,0.0,38,34,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,126256,2,1,2,0,1,,350.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,337.185789217938,600.0,81507.68002444784,1,1,1,2,150.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02208380853755252,45282.044458026576,10,5,10,10_1,10_0,10_1_0 -17812,2,29.0,0.0,1,112,0.0,0.0,0.0,46,54,0.0,0.0,0.0,268.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,1,121694,1,2,0,1,1,600.0,0.0,600.0,43,2.0,0.0,2.0,2.0,1.5,2,2,575.682102734958,0.0,31002.372291231215,2,1,2,3,40.0,9,0,3,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008644499765451877,20668.248194154145,5,3,5,5_0,5_0,5_1_0 -17813,2,33.0,0.0,2,111,360.0,180.0,0.0,56,63,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,2,,2,119235,1,2,0,1,1,385.0,234.0,323.0,43,2.0,0.0,3.0,2.0,1.5,2,2,253.530290006283,360.0,21115.663186094025,4,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025573433107022824,14077.10879072935,3,2,3_0,3_0_0,3_3_0,3_0_1 -17814,2,67.0,0.0,2,111,230.0,694.0,0.0,0,77,0.0,0.0,317.900072342464,924.0,0.0,1258.6751131881294,71,0,0,0,0,0,0,0,0,0,,1,,2,132315,2,2,3,0,1,,151.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,273.411041184335,230.0,17594.39573435515,0,5,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05251672259455778,17594.39573435515,4,2,4_0,4_1_0,4_3_0,4_0_1 -17815,2,66.0,0.0,9,112,600.0,3000.0,0.0,85,72,0.0,124.22070057833493,829.3045365455583,3720.0,0.0,5440.958702542347,50,2,2,2,2,2,2,2,1,0,,1,2009.0,6,127899,2,3,1,0,1,,1000.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,423.28479500507,600.0,97960.75334011365,6,5,0,1,140.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.037974391510489834,65307.1688934091,10,5,10,10_1,10_0,10_0_0 -17816,1,49.0,197.0,2,111,0.0,0.0,500.0,0,45,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,44,0,0,0,0,0,0,0,0,0,,2,,2,103284,2,1,0,1,1,,280.0,461.0,32,1.0,2.0,3.0,2.0,1.5,2,2,251.870624831604,0.0,20727.159843855374,0,1,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02412293839419714,13818.106562570249,3,2,3_1,3_0_1,3_3_1,3_0_1 -17817,1,27.0,256.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,930.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,8,,2,104237,1,1,0,0,1,,102.0,384.0,12,1.0,1.0,2.0,1.0,1.0,1,1,252.847304809406,0.0,13323.727417942206,0,4,2,3,40.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06980028717396522,13323.727417942206,3,2,3_1,3_0_1,3_3_1,3_0_1 -17818,2,39.0,0.0,9,112,1234.0,0.0,0.0,46,46,0.0,296.05933637836495,1705.6029968286982,1520.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,1,2006.0,6,122491,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,460.566141219178,1234.0,66993.83507635102,1,1,1,2,157.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022688654833205143,27914.097948479593,7,4,7,7_1,7_0,7_0_0 -17819,1,41.0,194.0,1,111,610.0,0.0,0.0,85,62,0.0,1190.4483805423765,843.1262788213177,1888.0,220.20185653634454,0.0,41,2,2,2,1,1,2,2,2,2,15.0,1,,1,112666,1,3,4,0,2,,500.0,650.0,42,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,291.583384228759,610.0,33993.006289954224,6,1,2,3,89.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.05554083636780165,13074.233188443934,2,1,2_1,2_1_1,2_3_1,2_1_0 -17820,1,54.0,271.0,1,111,517.0,205.0,0.0,0,78,0.0,0.0,714.5840756567561,722.0,0.0,371.79884467372705,20,0,0,0,0,0,0,0,0,0,,1,,1,131866,1,2,1,0,1,,360.0,299.0,11,0.0,0.0,3.0,1.0,1.0,1,1,224.340925136448,517.0,13155.17755647239,0,7,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.054883333721692996,13155.17755647239,2,1,2_1,2_1_1,2_3_1,2_1_0 -17821,1,43.0,415.0,1,111,500.0,1400.0,0.0,85,48,0.0,0.0,691.0871137879653,1900.0,0.0,2539.1140611864284,30,1,2,2,2,1,2,2,2,0,,1,,1,109064,1,3,3,0,1,,1000.0,387.0,42,1.0,2.0,4.0,4.0,2.1,1,1,194.097800242239,500.0,11419.888228335167,6,4,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.166376409471828,5438.042013492936,1,1,1_1,1_1_1,1_3_1,1_1_0 -17822,2,52.0,0.0,2,112,0.0,0.0,0.0,54,69,0.0,0.0,0.0,2031.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,101710,2,2,2,0,1,,202.0,,43,3.0,2.0,4.0,3.0,2.0,1,1,408.129804107314,0.0,71845.87810505845,1,1,0,1,120.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028268845110781704,35922.939052529226,9,5,9,9_1,9_0,9_0_1 -17823,2,57.0,0.0,8,112,462.0,1279.0,0.0,77,85,0.0,217.38622601208613,638.5644931400799,1951.0,0.0,2319.662060183887,60,2,2,2,2,1,2,2,2,0,,1,1999.0,6,109384,2,1,1,0,1,,400.0,,41,0.0,0.0,5.0,3.0,2.0,2,2,409.184818344785,462.0,41118.78066203446,7,6,0,1,142.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04744790503482476,20559.39033101723,5,3,5,5_1,5_0,5_0_0 -17824,2,44.0,0.0,2,111,900.0,1700.0,0.0,52,62,0.0,0.0,1243.9568048183376,3612.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,0,,1,,2,123683,1,1,1,0,1,,560.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,228.175072522604,900.0,45646.914638998154,1,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07912911592307513,18258.76585559926,4,2,4_0,4_1_0,4_3_0,4_0_1 -17825,2,89.0,0.0,1,112,0.0,0.0,0.0,0,71,0.0,0.0,0.0,1516.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119449,2,2,2,0,1,,185.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,356.347244954715,0.0,16695.58587146514,0,5,0,1,70.0,9,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0908024439316643,16695.58587146514,4,2,4_0,4_1_0,4_0_0,4_1_0 -17826,2,64.0,0.0,6,111,1100.0,0.0,0.0,77,46,0.0,103.51725048194578,1520.3916503335236,1320.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,102238,2,1,2,0,1,,350.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,289.983899233259,1100.0,68646.26898237383,5,5,0,1,88.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019229013019468454,45764.17932158255,10,5,10,10_1,10_3,10_0_0 -17827,0,32.0,0.0,9,112,0.0,0.0,0.0,0,33,0.0,0.0,0.0,1470.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,1.0,1,2010.0,6,108510,1,1,1,0,1,,0.0,,32,1.0,0.0,5.0,2.0,1.3,3,3,440.37394484782,0.0,40008.36317888406,0,1,5,0,112.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03674231793556225,30775.663983756967,8,4,8,8_1,8_0,8_0_0 -17828,1,27.0,217.0,1,111,324.0,823.0,0.0,55,62,0.0,0.0,447.8244497346015,1147.0,0.0,1492.6363373974505,50,1,2,2,1,1,2,2,2,2,10.0,1,,1,108606,2,2,1,0,1,,408.0,366.0,43,2.0,0.0,3.0,4.0,2.1,2,2,165.441834981538,324.0,28581.553423138663,4,1,2,3,57.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.04013077886352487,13610.263534827935,3,2,3_1,3_1_1,3_3_1,3_1_0 -17829,2,37.0,0.0,1,112,1170.0,1800.0,0.0,46,38,0.0,0.0,1617.1438462638387,2970.0,0.0,3264.575221525408,50,1,2,2,2,1,2,2,1,2,60.0,1,,1,129136,2,1,3,0,1,,534.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,323.498728338945,1170.0,58660.83375347243,1,1,1,2,135.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.050630033873737615,27933.730358796394,7,4,7,7_1,7_0,7_1_0 -17830,2,45.0,0.0,2,111,817.0,905.0,0.0,0,63,0.0,0.0,1129.2363439295352,1722.0,0.0,1641.3558752669412,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,117087,2,2,0,0,1,,358.0,293.0,12,1.0,0.0,2.0,1.0,1.0,2,2,230.97402859629,817.0,19728.0,0,1,2,3,64.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08728710462287105,19728.0,5,3,5,5_0,5_3,5_0_1 -17831,2,87.0,0.0,1,111,719.0,210.0,0.0,0,72,0.0,0.0,993.7832696270941,4464.0,0.0,380.86710917796427,50,0,0,0,0,0,0,0,0,0,,1,,1,117354,2,2,2,0,2,,147.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,255.819920434833,719.0,27514.539687986093,0,5,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16224149306590632,27514.539687986093,7,4,7,7_1,7_3,7_1_0 -17832,0,85.0,0.0,1,111,450.0,1176.0,0.0,78,75,0.0,0.0,621.9784024091688,3260.0,0.0,2132.8558113966,31,0,0,0,0,0,0,0,0,0,,1,,1,106286,2,2,4,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,216.116312792979,450.0,26571.24660174217,5,5,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12268901225681504,17714.164401161444,4,2,4_0,4_1_0,4_3_0,4_1_0 -17833,2,37.0,0.0,9,112,0.0,0.0,0.0,37,38,0.0,0.0,0.0,1190.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,124015,2,1,1,0,1,,455.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,412.264933920181,0.0,64793.36943764241,1,1,1,2,100.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01836607681199948,35996.316354245784,9,5,9,9_1,9_0,9_0_0 -17834,1,46.0,434.0,1,111,347.0,1524.0,0.0,85,53,0.0,0.0,479.6144569688479,1893.0,37.84719409218422,2764.007020891512,41,2,2,2,1,1,2,1,2,0,,1,,1,122448,1,2,1,0,1,,538.0,419.0,42,2.0,0.0,6.0,4.0,2.5,1,1,188.70837379405,347.0,13488.468588422664,6,4,2,3,72.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.14034209944520964,5395.387435369065,1,1,1_1,1_1_1,1_3_1,1_1_0 -17835,2,84.0,0.0,1,112,2555.0,0.0,0.0,0,78,0.0,0.0,3531.455151456503,2619.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117473,2,1,2,0,1,,180.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,420.164095599975,2555.0,10758.74736139166,0,5,0,1,90.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24342982617088132,10758.74736139166,2,1,2_0,2_1_0,2_0_0,2_1_0 -17836,2,64.0,0.0,1,111,0.0,0.0,1012.0,0,77,0.0,0.0,517.0442948555753,1012.0,0.0,1156.964723948463,31,0,0,0,0,0,0,0,0,0,,1,,1,113136,2,2,2,0,1,,120.0,358.0,11,0.0,4.0,3.0,1.0,1.0,1,1,198.657772291056,0.0,16481.05381886042,0,5,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06140384050211024,16481.05381886042,4,2,4_0,4_1_0,4_3_0,4_1_0 -17837,2,82.0,0.0,1,112,430.0,0.0,0.0,78,78,0.0,776.3793786145933,594.3349178576501,1580.0,688.1308016760767,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,129794,2,1,2,0,1,,204.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,322.051327247421,430.0,21217.05735122821,5,5,0,1,50.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07446838521688481,14144.704900818806,3,2,3_0,3_1_0,3_0_0,3_1_0 -17838,2,48.0,0.0,1,111,660.0,973.0,0.0,85,48,0.0,0.0,912.2349902001142,1723.0,154.82943037711726,1764.6842725245679,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,103220,2,2,5,0,1,,600.0,342.0,42,1.0,0.0,4.0,4.0,2.5,2,2,187.769885220211,660.0,30399.778123097178,6,1,2,3,75.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0566780452483269,12159.91124923887,2,1,2_0,2_1_0,2_3_0,2_1_0 -17839,0,79.0,0.0,1,111,270.0,920.0,0.0,0,77,0.0,0.0,373.1870414455012,1190.0,0.0,1668.560668779653,41,2,2,1,1,1,2,2,2,0,,1,,1,113686,1,3,1,0,1,,195.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,244.889591731801,270.0,16747.36279925114,0,5,5,0,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07105596351284699,16747.36279925114,4,2,4_0,4_1_0,4_3_0,4_1_0 -17840,2,66.0,0.0,1,112,2500.0,1000.0,0.0,0,77,0.0,0.0,3455.435568939826,3500.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,133086,2,2,3,0,1,,675.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,332.427091668139,2500.0,28662.620729956147,0,5,0,1,80.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12211025757118041,28662.620729956147,8,4,8,8_1,8_0,8_1_0 -17841,1,52.0,270.0,2,111,350.0,320.0,0.0,0,85,0.0,10.351725048194577,483.76097965157567,680.0,0.0,580.3689282711837,50,2,1,2,2,1,2,2,2,0,,2,,2,118629,2,2,0,1,2,1014.0,260.0,300.0,31,0.0,1.0,3.0,2.0,1.5,2,2,232.699563044648,350.0,9186.176739341092,0,6,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07402426703677543,6124.117826227394,1,1,1_1,1_0_1,1_2_1,1_0_1 -17842,2,37.0,0.0,7,112,0.0,0.0,0.0,54,38,0.0,0.0,0.0,2397.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,109873,2,2,3,0,1,,421.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,1,1,464.785968965647,0.0,50115.75703459166,1,1,1,2,185.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047829268514202154,19275.29116715064,5,3,5,5_1,5_0,5_0_0 -17843,2,81.0,0.0,2,111,350.0,459.0,0.0,0,78,0.0,0.0,483.76097965157567,809.0,0.0,832.466681488979,50,2,1,2,2,1,2,2,2,0,,2,,2,103873,2,3,0,1,1,850.0,210.0,246.0,11,0.0,0.0,3.0,1.0,1.0,4,4,241.290560880586,350.0,18876.84457848616,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04285673893411259,18876.84457848616,5,3,5,5_0,5_2,5_0_1 -17844,2,54.0,0.0,1,112,1000.0,0.0,0.0,45,47,2987.1697540360015,31.055175144583732,1382.1742275759307,3150.0,206.439240502823,0.0,50,2,2,2,2,2,2,1,2,0,,1,,1,120402,2,1,2,0,1,,410.0,,43,4.0,0.0,6.0,5.0,3.0,1,1,335.625216280261,1000.0,108137.3236282402,1,1,0,1,120.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.029129627905617718,36045.77454274674,9,5,9,9_1,9_0,9_1_0 -17845,1,38.0,253.0,6,111,310.0,0.0,0.0,0,22,0.0,0.0,428.47401054853844,370.0,103.2196202514115,0.0,20,2,1,2,2,1,2,2,2,0,,2,,4,103489,1,2,0,1,1,709.0,0.0,241.0,12,1.0,0.0,1.0,1.0,1.0,1,1,287.169282503827,310.0,8624.81821435656,0,1,2,3,49.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.042899454899131835,8624.81821435656,1,1,1_1,1_0_1,1_2_1,1_0_0 -17846,2,58.0,0.0,9,112,1700.0,600.0,0.0,55,43,0.0,0.0,2349.696186879082,2300.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,103411,2,1,1,0,1,,180.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,417.883849805788,1700.0,48682.98052990751,4,1,0,1,106.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04724443686407073,32455.320353271673,8,4,8,8_1,8_0,8_0_0 -17847,1,33.0,379.0,5,111,410.0,0.0,0.0,0,85,0.0,0.0,566.6914333061316,510.0,172.03270041901916,0.0,70,2,1,2,2,1,2,2,2,0,,2,,3,118515,1,2,0,1,1,1310.0,0.0,334.0,31,0.0,0.0,4.0,4.0,1.9,1,1,269.49110505154,410.0,11358.955558325872,0,6,2,3,85.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04489849417767824,5978.397662276775,1,1,1_1,1_0_1,1_2_1,1_0_0 -17848,2,58.0,0.0,1,112,1530.0,0.0,0.0,47,45,0.0,310.55175144583734,2114.7265681911736,1990.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,108269,2,1,2,0,1,,1000.0,,43,3.0,0.0,5.0,3.0,2.0,2,2,463.125172593928,1530.0,62406.64388735326,1,1,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031887630483575395,31203.32194367663,8,4,8,8_1,8_0,8_1_0 -17849,2,80.0,0.0,2,111,180.0,150.0,0.0,0,77,0.0,0.0,248.7913609636675,330.0,0.0,272.04793512711734,20,2,2,2,2,1,2,2,2,0,,2,,2,122259,1,2,0,1,1,1032.0,120.0,324.0,11,0.0,0.0,3.0,1.0,1.0,2,2,241.290560880586,180.0,17160.97132007414,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0192296807590361,17160.97132007414,4,2,4_0,4_0_0,4_2_0,4_0_1 -17850,1,24.0,323.0,2,111,650.0,500.0,0.0,85,62,0.0,0.0,898.4132479243549,1150.0,0.0,906.8264504237244,12,1,2,2,1,2,2,2,2,2,30.0,2,,2,111443,1,2,0,0,2,,450.0,370.0,42,1.0,0.0,4.0,4.0,2.1,3,2,272.027507861994,650.0,20272.290006578154,6,1,2,3,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05672768096879221,9653.471431703883,1,1,1_1,1_0_1,1_2_1,1_0_1 -17851,1,77.0,100.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,241.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,129261,1,1,0,1,1,810.0,73.0,201.0,11,0.0,5.0,2.0,1.0,1.0,2,2,272.918771797413,0.0,12347.606614423963,0,5,2,3,55.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019517952549482243,12347.606614423963,2,1,2_1,2_0_1,2_2_1,2_0_1 -17852,2,36.0,0.0,1,111,350.0,1500.0,0.0,54,54,0.0,51.75862524097289,483.76097965157567,1900.0,0.0,2720.4793512711735,20,0,0,0,0,0,0,0,0,2,8.0,1,,1,101494,1,2,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,160.249454134339,350.0,51104.083735015556,1,1,1,2,75.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03717902486720755,24335.277969055027,7,4,7,7_1,7_2,7_1_0 -17853,1,55.0,270.0,5,111,750.0,0.0,0.0,0,78,0.0,848.8414539519554,1036.630670681948,1635.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,114680,2,2,0,1,1,820.0,0.0,342.0,11,0.0,3.0,4.0,1.0,1.0,1,1,322.332532055352,750.0,9900.89362873203,0,7,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16513660900823032,9900.89362873203,2,1,2_1,2_0_1,2_2_1,2_0_0 -17854,2,63.0,0.0,1,111,1200.0,0.0,0.0,74,74,5227.547069563002,0.0,1658.6090730911167,4700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,121146,1,1,1,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,228.401762640255,1200.0,132499.84131535806,5,5,0,1,180.0,8,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03547174059487136,88333.22754357204,10,5,10,10_1,10_2,10_1_0 -17855,1,77.0,165.0,2,111,135.0,155.0,0.0,0,86,0.0,0.0,186.5935207227506,290.0,0.0,281.11619963135456,33,2,1,2,2,1,2,2,2,0,,2,,2,100959,1,2,0,1,1,,0.0,290.0,11,0.0,6.0,2.0,1.0,1.0,2,2,307.490753024406,135.0,13284.31639105664,0,5,2,3,40.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02183025392222936,13284.31639105664,3,2,3_1,3_0_1,3_2_1,3_0_1 -17856,2,63.0,0.0,1,111,485.0,0.0,0.0,78,78,0.0,155.27587572291867,670.3545003743263,635.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111025,2,1,2,0,2,,300.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,270.214099916087,485.0,17127.1952968025,6,5,0,1,60.0,8,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03707553916422901,11418.130197868333,2,1,2_0,2_1_0,2_2_0,2_1_0 -17857,1,48.0,362.0,2,111,110.0,137.0,0.0,85,85,0.0,0.0,152.03916503335236,247.0,0.0,248.4704474161005,70,0,0,0,0,0,0,0,0,0,,2,,2,107336,2,2,0,1,1,980.0,350.0,341.0,41,0.0,3.0,5.0,3.0,1.8,2,2,239.108797523494,110.0,9612.672904883877,7,6,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025695246519259755,5340.373836046599,1,1,1_1,1_0_1,1_2_1,1_0_1 -17858,2,25.0,0.0,1,111,400.0,800.0,0.0,56,48,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,42,2,2,2,2,2,1,1,2,2,3.0,2,,1,101181,1,3,0,0,2,,0.0,530.0,43,2.0,0.0,4.0,2.0,1.5,2,2,298.598574354999,400.0,34239.27223226952,1,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.035047473902469074,22826.181488179678,6,3,6,6_0,6_2,6_1_0 -17859,1,65.0,311.0,5,111,370.0,790.0,0.0,85,78,0.0,0.0,511.40446420309434,1160.0,0.0,1432.7857916694845,50,2,1,2,2,1,2,2,2,0,,2,,3,111109,1,2,0,1,1,1100.0,800.0,276.0,41,1.0,2.0,4.0,5.0,2.8,2,2,276.182835897871,370.0,16842.670139478185,6,5,2,3,65.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.06887269004224165,6015.239335527924,1,1,1_1,1_0_1,1_2_1,1_0_0 -17860,2,57.0,0.0,7,111,450.0,1310.0,0.0,85,67,0.0,0.0,621.9784024091688,1760.0,0.0,2375.885300110158,50,2,2,2,2,1,2,2,2,2,4.0,1,,5,115967,1,2,2,0,1,,150.0,601.0,42,1.0,3.0,6.0,2.0,1.5,2,2,260.754107785803,450.0,20048.201226611003,6,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08778842451281176,13365.467484407336,3,2,3_0,3_1_0,3_2_0,3_0_0 -17861,2,31.0,0.0,2,111,560.0,0.0,0.0,54,68,1344.2263893162005,0.0,774.0175674425211,1505.0,77.41471518855863,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,129361,2,1,3,0,1,,292.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,212.859103368949,560.0,43581.893087001954,1,1,1,2,90.0,8,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03453268991770478,24212.162826112195,7,4,7,7_1,7_2,7_0_1 -17862,2,79.0,0.0,2,111,277.0,1204.0,0.0,0,74,0.0,0.0,382.8622610385328,1481.0,0.0,2183.6380926203283,71,0,0,0,0,0,0,0,0,0,,1,,2,101564,2,1,1,0,1,,179.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,252.72852135289,277.0,22363.148596513693,0,5,0,1,85.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06622502165150755,22363.148596513693,6,3,6,6_1,6_2,6_0_1 -17863,2,39.0,0.0,9,111,730.0,0.0,0.0,0,38,0.0,0.0,1008.9871861304293,730.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,109833,2,1,0,0,1,,68.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,297.606619897195,730.0,42879.18029127386,0,1,1,2,70.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017024579179013805,42879.18029127386,9,5,9,9_0,9_2,9_0_0 -17865,2,49.0,0.0,1,111,500.0,1544.0,0.0,45,62,0.0,0.0,691.0871137879653,2044.0,0.0,2800.2800789084613,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,114389,2,3,3,0,1,,350.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,180.183205819865,500.0,52824.69440619897,1,1,1,2,90.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038694024129747484,26412.347203099485,7,4,7,7_1,7_2,7_1_0 -17866,1,28.0,193.0,2,111,610.0,340.0,0.0,55,55,0.0,0.0,843.1262788213177,950.0,0.0,616.6419862881327,43,2,1,2,2,1,2,2,2,2,5.0,2,,2,127917,1,2,0,1,1,910.0,310.0,324.0,43,2.0,0.0,3.0,3.0,1.8,1,1,164.170235668095,610.0,12336.02281456768,1,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07701023370985823,6853.3460080931545,1,1,1_1,1_0_1,1_2_1,1_0_1 -17867,2,43.0,0.0,5,111,900.0,900.0,0.0,56,53,0.0,0.0,1243.9568048183376,1800.0,0.0,1632.287610762704,71,1,2,2,2,1,2,2,2,2,15.0,1,,3,130591,2,1,2,0,1,,680.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,195.903617254172,900.0,51342.711089902594,1,1,1,2,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.035058530447450414,20537.08443596104,5,3,5,5_1,5_2,5_0_0 -17868,2,61.0,0.0,2,111,381.0,833.0,0.0,77,75,0.0,543.4655650302153,526.6083807064296,1739.0,0.0,1510.772866405925,42,0,0,0,0,0,0,0,0,0,,1,,2,116288,2,2,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,218.540274111454,381.0,28314.188786896975,6,5,1,2,88.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06141797008871966,18876.125857931318,5,3,5,5_1,5_2,5_0_1 -17869,1,29.0,115.0,7,111,500.0,880.0,0.0,0,54,0.0,0.0,691.0871137879653,1380.0,0.0,1596.014552745755,70,0,0,0,0,0,0,0,0,2,10.0,1,,5,131827,2,2,2,0,1,,360.0,336.0,32,1.0,0.0,4.0,2.0,1.3,1,1,214.071016662788,500.0,18188.38204962904,0,1,2,3,66.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0758726090223152,13991.063115099261,3,2,3_1,3_1_1,3_2_1,3_0_0 -17870,2,61.0,0.0,2,111,370.0,1080.0,0.0,85,75,0.0,0.0,511.40446420309434,1450.0,0.0,1958.7451329152448,71,2,2,2,2,1,2,2,2,0,,1,,2,131431,1,3,3,0,2,,400.0,520.0,41,1.0,4.0,5.0,3.0,2.0,1,1,201.253020636079,370.0,30302.711247413503,6,5,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.047850503810076245,15151.355623706751,3,2,3_0,3_1_0,3_2_0,3_0_1 -17871,2,56.0,0.0,2,111,437.0,931.0,0.0,56,62,0.0,0.0,604.0101374506817,1368.0,0.0,1688.5108506889749,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,110867,2,3,2,0,1,,450.0,370.0,43,3.0,1.0,5.0,3.0,2.0,5,4,201.375297921358,437.0,53742.38993014561,1,1,2,3,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02545476674517317,26871.194965072806,7,4,7,7_1,7_2,7_0_1 -17872,2,67.0,0.0,1,111,540.0,0.0,0.0,0,22,0.0,0.0,746.3740828910024,540.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,3,,1,104701,2,1,0,0,1,,40.0,400.0,12,1.0,3.0,1.0,1.0,1.0,2,2,379.839631431848,540.0,23571.81663011773,0,1,2,3,14.0,8,6,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022908713760739236,23571.81663011773,6,3,6,6_0,6_2,6_1_0 -17873,2,58.0,0.0,5,111,415.0,600.0,0.0,68,63,0.0,0.0,573.6023044440112,1015.0,0.0,1088.1917405084694,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,110124,1,1,0,0,1,,320.0,381.0,43,3.0,1.0,4.0,3.0,2.0,2,2,283.747078622117,415.0,35986.08959412917,1,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028205342993576854,17993.044797064584,4,2,4_0,4_0_0,4_2_0,4_0_0 -17874,1,39.0,127.0,2,111,0.0,0.0,1470.0,81,63,0.0,0.0,751.0426022111619,1470.0,0.0,1680.5712887393684,20,0,0,0,0,0,0,0,0,0,,1,,2,106431,2,2,1,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,195.312801094144,0.0,31696.48693382246,4,1,1,2,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.046377379394414935,13781.081275574983,3,2,3_1,3_1_1,3_2_1,3_0_1 -17875,2,83.0,0.0,2,111,410.0,1130.0,0.0,77,78,0.0,0.0,566.6914333061316,1540.0,0.0,2049.4277779576173,71,0,0,0,0,0,0,0,0,0,,1,,2,116671,2,2,2,0,1,,240.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,225.503289084131,410.0,51224.99811174353,5,5,0,1,110.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0300634466914104,34149.99874116235,9,5,9,9_1,9_2,9_0_1 -17876,1,31.0,310.0,1,111,0.0,0.0,1160.0,0,54,0.0,0.0,592.6594684115291,1160.0,0.0,1326.1650985970525,50,2,2,2,2,1,2,2,2,2,10.0,1,,1,132100,2,2,2,0,1,,310.0,500.0,32,1.0,0.0,4.0,2.0,1.3,2,2,206.290430122139,0.0,12370.799710443036,0,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.09376920062983195,9515.999777263874,1,1,1_1,1_1_1,1_2_1,1_1_0 -17877,1,31.0,30.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1617.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,20.0,1,,2,130880,1,3,3,0,1,,283.0,,42,1.0,0.0,4.0,4.0,2.1,3,3,195.903617254172,0.0,26729.917496867074,6,1,1,2,100.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.060494013877503486,12728.532141365273,2,1,2_1,2_1_1,2_2_1,2_0_1 -17878,2,66.0,0.0,5,111,360.0,1100.0,0.0,86,77,0.0,0.0,497.582721927335,1460.0,0.0,1995.0181909321939,71,2,2,2,2,1,2,2,2,0,,1,,3,104449,1,1,2,0,1,,210.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,239.294490109748,360.0,26662.91490520412,6,5,0,1,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.054757703919125295,17775.276603469414,4,2,4_0,4_1_0,4_2_0,4_0_0 -17879,1,22.0,270.0,2,111,0.0,0.0,0.0,67,55,0.0,0.0,0.0,901.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,15.0,2,,2,101734,1,1,0,1,1,,402.0,373.0,43,2.0,0.0,4.0,2.0,1.5,2,2,224.849099196356,0.0,16610.833022255298,1,1,2,3,68.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054241710743394664,11073.888681503531,2,1,2_1,2_0_1,2_2_1,2_0_1 -17880,2,61.0,0.0,2,111,266.9,599.76,0.0,74,43,0.0,134.5724256265295,368.9023013400158,997.0,0.0,1087.756463812266,70,0,0,0,0,0,0,0,0,0,,1,,2,115071,2,2,2,0,1,,332.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,228.401762640255,266.9,94970.82091136655,6,1,0,1,140.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010497961273078503,63313.8806075777,10,5,10,10_1,10_2,10_0_1 -17881,1,44.0,491.0,9,111,590.0,990.0,0.0,0,81,0.0,0.0,815.482794269799,1580.0,0.0,1795.5163718389745,50,2,2,2,2,1,2,2,2,0,,1,2006.0,6,128793,1,1,1,0,1,,790.0,556.0,32,3.0,0.0,5.0,4.0,2.3,4,2,235.979321238934,590.0,16948.01250741486,0,4,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.09322627059124132,7368.701090180374,1,1,1_1,1_1_1,1_2_1,1_0_0 -17882,1,36.0,268.0,2,111,400.0,0.0,0.0,0,68,0.0,0.0,552.8696910303722,400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,124271,2,2,0,1,1,692.0,228.0,268.0,32,1.0,0.0,3.0,2.0,1.3,3,2,259.789447387423,400.0,12726.0,0,4,2,3,70.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031431714600031434,9789.23076923077,2,1,2_1,2_0_1,2_2_1,2_0_1 -17883,2,81.0,0.0,2,111,600.0,1048.0,0.0,0,78,0.0,0.0,829.3045365455583,1648.0,0.0,1900.7082400881266,70,0,0,0,0,0,0,0,0,0,,1,,2,120036,2,2,2,0,1,,204.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,235.199857425118,600.0,13307.602609736943,0,5,0,1,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12383898500201583,13307.602609736943,3,2,3_0,3_1_0,3_2_0,3_0_1 -17884,1,59.0,220.0,2,111,360.0,0.0,0.0,77,78,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,122544,1,3,0,1,1,365.0,350.0,286.0,41,0.0,0.0,2.0,2.0,1.5,2,2,251.870624831604,360.0,9771.43855785108,6,7,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.03684206761047994,6514.292371900719,1,1,1_1,1_0_1,1_3_1,1_0_1 -17885,2,57.0,0.0,6,111,190.0,0.0,0.0,77,75,0.0,0.0,262.6131032394268,190.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,127387,2,1,2,0,1,,225.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,220.14824661679,190.0,40929.00248457258,5,5,0,1,107.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0046421849658226325,27286.00165638172,7,4,7,7_1,7_2,7_0_0 -17886,1,37.0,293.0,2,111,265.0,717.0,0.0,0,85,0.0,0.0,366.2761703076216,982.0,0.0,1300.3891299076208,30,0,0,0,0,0,0,0,0,0,,2,,2,108642,2,2,0,0,1,,716.0,258.0,31,1.0,0.0,3.0,3.0,2.0,3,2,240.574243000857,265.0,9936.47111111111,0,6,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0988278423012686,4968.235555555555,1,1,1_1,1_0_1,1_3_1,1_0_1 -17887,2,71.0,0.0,7,111,1945.0,0.0,0.0,0,74,0.0,0.0,2688.328872635185,1995.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111444,2,1,2,0,1,,300.0,818.0,11,0.0,2.0,6.0,1.0,1.0,4,3,259.589703643555,1945.0,50405.74213907727,0,5,2,3,120.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03957882406523219,50405.74213907727,10,5,10,10_1,10_2,10_0_0 -17888,2,39.0,0.0,2,111,30.0,60.0,0.0,0,37,0.0,0.0,41.46522682727792,90.0,0.0,108.81917405084694,70,0,0,0,0,0,0,0,0,2,8.0,1,,2,109499,2,1,1,0,1,,360.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,212.859103368949,30.0,42496.38012309197,0,1,1,2,95.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002117827441756508,26560.23757693248,7,4,7,7_1,7_2,7_0_1 -17889,2,45.0,0.0,2,111,655.0,650.0,0.0,56,64,0.0,517.5862524097289,905.3241190622346,1805.0,0.0,1178.8743855508417,70,1,2,2,2,1,2,2,1,2,25.0,1,,2,125774,1,3,2,0,1,,520.0,397.0,43,2.0,0.0,5.0,4.0,2.1,2,2,269.042320104735,655.0,38472.86679728451,1,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.046916181461356565,18320.41276061167,4,2,4_0,4_1_0,4_3_0,4_0_1 -17890,2,73.0,0.0,1,111,270.0,0.0,0.0,77,78,0.0,931.655254337512,373.1870414455012,1310.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112127,1,3,3,0,1,,190.0,428.0,41,0.0,5.0,4.0,2.0,1.5,1,1,196.354986410525,270.0,22333.554490952698,6,5,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05865613557083713,14889.0363273018,3,2,3_0,3_1_0,3_3_0,3_1_0 -17891,2,76.0,0.0,7,111,233.0,537.0,0.0,0,78,0.0,0.0,322.04659502519183,770.0,0.0,973.9316077550801,12,1,2,2,2,1,2,2,2,0,,2,,5,123163,2,1,0,0,1,,0.0,437.0,11,0.0,2.0,3.0,1.0,1.0,2,2,400.862580194102,233.0,16543.841726724713,0,5,2,3,67.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04654299845942987,16543.841726724713,4,2,4_0,4_0_0,4_3_0,4_0_0 -17892,2,42.0,0.0,1,111,800.0,0.0,0.0,52,37,2091.018827825201,0.0,1105.7393820607444,2278.0,134.18550632683494,0.0,70,1,2,2,1,1,2,2,2,2,40.0,1,,1,103964,1,2,3,0,1,,560.0,900.0,43,2.0,0.0,8.0,6.0,2.8999999999999995,1,1,255.151401867686,800.0,62812.85118001855,1,1,2,3,120.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03626646390356272,21659.603855178815,6,3,6,6_1,6_3,6_1_0 -17893,2,32.0,0.0,1,111,0.0,0.0,480.0,0,21,0.0,0.0,245.23840072201202,480.0,0.0,548.7579718332631,50,0,0,0,0,0,0,0,0,2,35.0,2,,1,106384,2,3,0,0,1,,0.0,440.0,32,1.0,0.0,2.0,2.0,1.3,2,2,398.442408491516,0.0,13311.16694638887,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03605994890855284,10239.3591895299,2,1,2_0,2_0_0,2_3_0,2_1_0 -17894,2,41.0,0.0,5,111,516.0,960.0,0.0,55,52,0.0,0.0,713.2019014291802,1476.0,0.0,1741.106784813551,71,2,2,1,2,1,2,2,2,2,5.0,1,,3,123046,2,3,3,0,1,,316.0,376.0,43,2.0,0.0,2.0,2.0,1.5,3,3,229.437579750359,516.0,28047.34179635569,4,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.052625307978090924,18698.227864237128,5,3,5,5_1,5_3,5_0_0 -17895,2,28.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,666.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,,1,119675,2,1,0,0,1,,0.0,575.0,12,1.0,0.0,2.0,1.0,1.0,4,4,360.229841444149,0.0,25379.205978596387,0,1,2,3,50.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026241955739737196,25379.205978596387,7,4,7,7_0,7_3,7_1_0 -17896,2,47.0,0.0,2,111,1500.0,0.0,0.0,52,63,0.0,0.0,2073.261341363896,1540.0,68.81308016760767,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,128563,2,1,1,0,1,,500.0,,43,2.0,1.0,4.0,4.0,2.3,2,2,217.716865146399,1500.0,44996.91655233544,1,1,1,2,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034224567325826474,19563.876761884974,5,3,5,5_1,5_3,5_0_1 -17897,2,81.0,0.0,5,111,300.0,500.0,0.0,0,75,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,50,2,2,1,2,1,2,2,2,0,,1,,3,130275,2,1,2,0,1,,150.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,293.077270888248,300.0,25382.0285812349,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.031518363374290946,25382.0285812349,7,4,7,7_1,7_3,7_0_0 -17898,2,37.0,0.0,5,111,220.0,0.0,0.0,0,46,0.0,0.0,304.0783300667047,231.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,5.0,2,,3,106706,2,1,0,1,1,,350.0,497.0,32,1.0,0.0,4.0,2.0,1.3,1,1,324.352554826614,220.0,25778.447884474455,0,1,2,3,68.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008960973951388439,19829.57529574958,5,3,5,5_0,5_3,5_0_0 -17899,0,20.0,0.0,1,111,430.0,986.0,0.0,0,52,0.0,0.0,594.3349178576501,1416.0,0.0,1788.2617602355847,50,1,2,2,1,1,2,2,2,0,,1,,1,118088,2,1,2,0,1,,581.0,,22,1.0,5.0,5.0,3.0,2.0,1,1,237.830686235624,430.0,16676.399748689124,0,1,5,0,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08491041359879294,8338.199874344562,1,1,1_0,1_1_0,1_3_0,1_1_0 -17900,2,55.0,0.0,2,111,240.0,0.0,0.0,75,46,0.0,0.0,331.72181461822333,240.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,,2,132626,2,1,0,1,1,,650.0,510.0,42,2.0,2.0,4.0,3.0,2.0,4,3,320.090221124267,240.0,35414.12392550106,5,1,2,3,83.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00677695714017594,17707.06196275053,4,2,4_0,4_0_0,4_3_0,4_0_1 -17901,0,75.0,0.0,1,111,360.0,1200.0,0.0,85,78,0.0,0.0,497.582721927335,1560.0,0.0,2176.3834810169387,50,2,2,2,2,1,2,2,2,0,,1,,1,127923,2,2,4,0,2,,450.0,,41,0.0,2.0,4.0,4.0,2.1,2,2,219.014940634465,360.0,15444.779964390218,6,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.10100499998036658,7354.657125900104,1,1,1_0,1_1_0,1_3_0,1_1_0 -17902,2,42.0,0.0,1,111,440.0,1000.0,0.0,63,54,0.0,0.0,608.1566601334094,1440.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,118231,2,1,3,0,1,,522.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,224.188493690759,440.0,54600.525813180124,1,1,1,2,108.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026373372390717815,22750.21908882505,6,3,6,6_1,6_3,6_1_0 -17903,1,57.0,319.0,2,111,230.0,1500.0,0.0,0,78,0.0,0.0,317.900072342464,1730.0,0.0,2720.4793512711735,71,2,2,2,2,1,2,2,2,0,,2,,2,101358,1,1,0,0,1,,600.0,296.0,31,1.0,0.0,3.0,3.0,2.0,4,4,219.94558972871,230.0,23604.51230176076,0,7,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.0732910715495254,11802.25615088038,2,1,2_1,2_0_1,2_3_1,2_0_1 -17905,2,57.0,0.0,1,111,945.0,1046.0,0.0,0,67,0.0,0.0,1306.1546450592543,1991.0,0.0,1897.0809342864316,31,2,2,2,1,2,2,2,2,1,10.0,1,,1,130570,1,3,2,0,1,,684.0,,32,4.0,1.0,4.0,4.0,2.5,2,2,225.902117373493,945.0,89222.00024647449,0,1,0,1,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.022315124010892955,35688.800098589796,9,5,9,9_1,9_3,9_1_0 -17906,2,82.0,0.0,1,111,353.0,1438.0,0.0,0,75,0.0,0.0,487.9075023343035,1791.0,0.0,2608.0328714186317,71,2,2,2,2,1,2,2,1,0,,1,,1,102409,1,2,3,0,1,,203.0,385.0,11,0.0,2.0,4.0,1.0,1.0,1,1,242.599106263951,353.0,14275.974347423034,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.12545553504187226,14275.974347423034,3,2,3_0,3_1_0,3_3_0,3_1_0 -17907,2,58.0,0.0,1,111,340.0,260.0,0.0,0,77,0.0,186.3310508675024,469.9392373758164,800.0,34.40654008380383,471.5497542203367,41,2,2,2,1,1,2,2,2,0,,1,,1,118459,1,1,1,0,2,,160.0,,31,1.0,3.0,5.0,2.0,1.5,2,2,223.141629387924,340.0,20432.82991104237,0,7,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03915267750394485,13621.886607361579,3,2,3_0,3_1_0,3_3_0,3_1_0 -17908,2,83.0,0.0,1,111,260.0,1124.0,0.0,78,78,0.0,0.0,359.36529916974195,1384.0,0.0,2038.5458605525325,70,0,0,0,0,0,0,0,0,0,,1,,1,117536,2,1,2,0,1,,340.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,187.263355984716,260.0,22558.45419376411,5,5,0,1,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06135172153695631,15038.969462509407,3,2,3_0,3_1_0,3_3_0,3_1_0 -17909,2,60.0,0.0,1,111,690.0,825.0,0.0,0,21,0.0,0.0,953.7002170273921,1515.0,0.0,1496.2636431991452,50,2,2,2,1,1,2,2,2,0,,1,,1,127052,2,3,3,0,1,,300.0,,32,2.0,3.0,4.0,2.0,1.5,4,4,203.707891527071,690.0,16302.02936372389,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09293321501255884,10868.019575815926,2,1,2_0,2_1_0,2_3_0,2_1_0 -17910,2,41.0,0.0,1,111,2500.0,0.0,0.0,56,64,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,,1,107290,1,3,3,0,2,,660.0,288.0,43,3.0,2.0,4.0,6.0,3.0999999999999996,4,3,233.915341053403,2500.0,36233.78152168612,1,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.0689963866593316,11688.31661989875,2,1,2_0,2_1_0,2_3_0,2_1_0 -17912,1,52.0,379.0,6,111,450.0,1000.0,0.0,56,64,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,124680,1,2,2,0,1,,636.0,557.0,43,2.0,0.0,4.0,6.0,3.3,1,1,254.579236171593,450.0,30476.377293965023,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04757783334986902,9235.265846656068,1,1,1_1,1_1_1,1_3_1,1_0_0 -17913,2,49.0,0.0,1,111,329.0,723.0,0.0,0,85,0.0,0.0,454.73532087248117,1052.0,0.0,1311.2710473127056,31,0,0,0,0,0,0,0,0,0,,1,,1,129238,1,2,1,0,1,,189.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,71.1513376215386,329.0,6360.8775447014905,0,7,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16538598528379142,6360.8775447014905,1,1,1_0,1_1_0,1_3_0,1_1_0 -17914,1,21.0,344.0,1,111,700.0,0.0,0.0,0,67,0.0,414.0690019277831,967.5219593031513,1100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,116489,1,3,3,0,1,,700.0,299.0,22,3.0,0.0,4.0,5.0,3.0,2,2,232.564533542036,700.0,14535.375246894739,0,1,2,3,72.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07567744081701629,4845.1250822982465,1,1,1_1,1_1_1,1_3_1,1_1_0 -17915,2,55.0,0.0,1,111,432.0,780.0,0.0,0,38,0.0,0.0,597.099266312802,1212.0,0.0,1414.6492626610102,44,0,0,0,0,0,0,0,0,2,5.0,1,,1,107297,2,1,3,0,1,,184.0,,12,1.0,0.0,7.0,1.0,1.0,2,2,90.663577783925,432.0,40019.345296625615,0,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03028535302155966,40019.345296625615,9,5,9,9_1,9_3,9_1_0 -17916,1,81.0,113.0,1,111,280.0,660.0,0.0,0,78,0.0,0.0,387.00878372126056,940.0,0.0,1197.0109145593162,43,0,0,0,0,0,0,0,0,0,,1,,1,104468,2,1,1,0,1,,150.0,285.0,11,0.0,2.0,2.0,1.0,1.0,2,2,318.746968880179,280.0,11095.405678803121,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.084719750427494,11095.405678803121,2,1,2_1,2_1_1,2_3_1,2_1_0 -17917,2,40.0,0.0,2,111,861.0,0.0,0.0,0,52,0.0,0.0,1190.052009942876,861.0,0.0,0.0,43,2,2,2,1,2,2,2,2,2,90.0,2,,2,113997,2,1,0,0,1,,203.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,124.24134776162,861.0,20067.75927326289,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.04290464063654312,20067.75927326289,5,3,5,5_0,5_3,5_0_1 -17918,2,37.0,0.0,1,111,548.0,1966.0,0.0,34,42,0.0,0.0,757.43147671161,2514.0,0.0,3565.6416030660844,31,0,0,0,0,0,0,0,0,2,7.0,1,,1,129531,2,1,2,0,1,,166.0,,43,2.0,0.0,4.0,3.0,1.8,2,1,220.149352961335,548.0,55793.32188557159,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045059156096782474,30996.28993642866,8,4,8,8_1,8_3,8_1_0 -17919,2,60.0,0.0,6,111,540.0,1200.0,0.0,54,45,0.0,0.0,746.3740828910024,1740.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,15.0,1,,4,115109,2,1,2,0,1,,276.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,260.324152069152,540.0,50897.7899256283,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034186160195609334,33931.85995041887,9,5,9,9_1,9_3,9_0_0 -17920,2,88.0,0.0,1,111,605.0,151.0,0.0,0,86,2879.6316428907053,0.0,836.215407683438,2684.0,0.0,273.8615880279648,71,0,0,0,0,0,0,0,0,0,,1,,1,119693,2,1,4,0,2,,307.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,370.59872078217,605.0,54445.46463850242,0,6,0,1,120.0,9,7,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04929703544309447,54445.46463850242,10,5,10,10_1,10_3,10_1_0 -17921,1,39.0,458.0,1,111,520.0,1600.0,0.0,85,67,0.0,0.0,718.7305983394839,2245.0,215.04087552377396,2901.844641355918,31,2,2,2,2,1,2,2,2,0,,1,,1,103466,2,2,2,0,1,,1000.0,423.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,207.226731314868,520.0,11402.701485303473,6,4,2,3,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.19688316868537678,4385.654417424413,1,1,1_1,1_1_1,1_3_1,1_1_0 -17922,2,56.0,0.0,1,111,0.0,0.0,2051.0,78,52,0.0,0.0,1047.8832497517637,2051.0,0.0,2344.797083812547,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,102901,2,1,1,0,1,,228.0,,42,1.0,2.0,6.0,2.0,1.5,2,1,67.6907197852583,0.0,39778.35931726211,5,1,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051560698711622166,26518.906211508074,7,4,7,7_1,7_3,7_1_0 -17923,2,60.0,0.0,6,111,800.0,700.0,0.0,0,38,0.0,0.0,1105.7393820607444,1500.0,0.0,1269.5570305932142,71,1,2,2,1,2,2,2,2,0,,1,,4,125338,2,1,2,0,1,,360.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,259.223191443107,800.0,36895.877879352454,0,4,0,1,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04065494809216682,36895.877879352454,9,5,9,9_1,9_3,9_0_0 -17924,2,51.0,0.0,1,111,314.0,1281.0,0.0,52,62,0.0,0.0,434.0027074588422,1645.0,86.01635020950958,2323.289365985582,50,2,2,2,2,1,2,2,2,2,20.0,1,,1,111898,2,1,2,0,1,,336.0,,43,3.0,2.0,5.0,4.0,2.5,3,2,64.0296950774799,314.0,58644.481296734346,1,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.028050380251067254,23457.79251869374,6,3,6,6_1,6_3,6_1_0 -17925,1,41.0,370.0,9,111,450.0,800.0,0.0,85,68,0.0,0.0,621.9784024091688,1250.0,0.0,1450.922320677959,71,2,2,2,2,1,2,2,2,0,,1,2009.0,6,120941,1,1,1,0,1,,400.0,431.0,42,1.0,3.0,4.0,5.0,2.5999999999999996,1,1,73.4763299695976,450.0,38870.696961061854,6,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.03215790036520747,14950.268061946868,3,2,3_1,3_1_1,3_3_1,3_0_0 -17926,2,55.0,0.0,2,111,542.0,0.0,0.0,0,37,0.0,0.0,749.1384313461543,654.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,102967,1,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,370.892683201559,542.0,39502.72535630034,0,1,0,1,48.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01655581973398432,39502.72535630034,9,5,9,9_0,9_3,9_0_1 -17927,2,58.0,0.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,3373.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,114773,2,1,0,0,1,,185.0,312.0,12,1.0,1.0,3.0,1.0,1.0,1,1,280.194359976143,0.0,11283.622245769915,0,1,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2989288303465223,11283.622245769915,2,1,2_0,2_0_0,2_3_0,2_0_0 -17928,1,32.0,337.0,5,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,2666.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,127767,2,2,0,0,1,,204.0,315.0,43,2.0,0.0,4.0,3.0,1.8,2,2,245.29757557873,0.0,13001.714599202503,4,4,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.20504987858782306,7223.174777334724,1,1,1_1,1_0_1,1_3_1,1_0_0 -17929,2,86.0,0.0,8,111,1800.0,0.0,0.0,0,86,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2003.0,6,129015,2,1,0,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,375.462598397923,1800.0,25942.035062085382,0,5,0,1,95.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06938545860770666,25942.035062085382,7,4,7,7_0,7_3,7_0_0 -17930,2,33.0,0.0,2,111,300.0,916.0,0.0,63,55,0.0,0.0,414.65226827277917,1216.0,0.0,1661.3060571762633,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,124764,1,3,0,0,1,,0.0,430.0,43,2.0,0.0,2.0,2.0,1.5,3,2,270.33705220394,300.0,37399.38236979941,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032513905924337914,24932.921579866274,7,4,7,7_0,7_3,7_0_1 -17931,2,23.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1101.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,121406,2,1,0,0,1,,93.0,369.0,12,1.0,0.0,2.0,1.0,1.0,4,2,252.847304809406,0.0,15159.598420180628,0,1,2,3,53.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0726272536701458,15159.598420180628,3,2,3_0,3_0_0,3_3_0,3_0_1 -17932,1,53.0,25.0,2,111,301.0,1342.0,0.0,0,68,0.0,0.0,416.0344425003551,1643.0,0.0,2433.9221929372766,31,2,2,2,2,1,2,2,2,0,,2,,2,128008,2,2,0,0,1,,0.0,345.0,32,2.0,0.0,2.0,2.0,1.5,3,2,303.713467250826,301.0,18625.52440364202,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.08821228140447575,12417.01626909468,2,1,2_1,2_0_1,2_3_1,2_0_1 -17933,2,63.0,0.0,6,111,1500.0,0.0,0.0,77,31,0.0,414.0690019277831,2073.261341363896,1960.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,4,107862,2,1,2,0,1,,400.0,,42,1.0,2.0,9.0,2.0,1.5,1,1,265.354447443643,1500.0,157940.48149667215,5,1,0,1,300.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012409738031862957,105293.65433111477,10,5,10,10_1,10_3,10_0_0 -17934,2,40.0,0.0,1,111,1700.0,0.0,0.0,54,53,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,133183,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,203.376942947619,1700.0,50810.17452049807,1,1,1,2,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03345786579249355,24195.321200237173,7,4,7,7_1,7_3,7_1_0 -17935,2,50.0,0.0,2,111,479.0,641.0,0.0,0,54,0.0,0.0,662.0614550088708,1120.0,0.0,1162.5515094432149,70,2,2,2,1,1,2,2,2,2,10.0,8,,2,121581,1,2,0,0,2,,300.0,396.0,32,2.0,0.0,3.0,2.0,1.5,1,1,296.205469987582,479.0,26710.715943273564,0,1,2,3,69.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.04193073680161106,17807.143962182377,4,2,4_0,4_0_0,4_3_0,4_0_1 -17936,2,52.0,0.0,1,111,500.0,500.0,0.0,0,21,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,0,,1,,1,102180,2,1,2,0,1,,100.0,610.0,12,1.0,2.0,3.0,1.0,1.0,1,1,232.148266374097,500.0,20328.915414027997,0,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04919101583304088,20328.915414027997,5,3,5,5_1,5_3,5_1_0 -17937,2,78.0,0.0,1,111,230.0,800.0,0.0,86,78,0.0,0.0,317.900072342464,1030.0,0.0,1450.922320677959,50,2,2,2,2,2,2,2,1,0,,1,,1,117267,2,1,2,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,101.145941840817,230.0,14975.44335228866,6,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06877926588013754,9983.628901525773,2,1,2_0,2_1_0,2_3_0,2_1_0 -17938,1,42.0,199.0,2,111,300.0,300.0,0.0,0,56,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,60,0,0,0,0,0,0,0,0,0,,2,,2,107457,1,3,0,0,1,,300.0,185.0,12,1.0,0.0,1.0,1.0,1.0,1,1,286.983990983432,300.0,6663.9243856332705,0,4,2,3,37.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09003703602843059,6663.9243856332705,1,1,1_1,1_0_1,1_3_1,1_0_1 -17939,1,53.0,88.0,1,111,270.0,1250.0,0.0,0,68,0.0,0.0,373.1870414455012,1520.0,0.0,2267.066126059311,20,2,2,2,2,2,2,2,1,3,2.0,1,,1,101432,2,1,1,0,1,,140.0,402.0,12,1.0,0.0,5.0,1.0,1.0,2,2,91.5455304522494,270.0,11205.422691293836,0,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.1356486088812142,11205.422691293836,2,1,2_1,2_1_1,2_3_1,2_1_0 -17940,2,41.0,0.0,1,111,462.0,1026.0,0.0,54,64,0.0,0.0,638.5644931400799,1488.0,0.0,1860.8078762694827,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,122946,2,1,3,0,1,,530.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,204.658448351891,462.0,46058.226689434036,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032306932050020803,20025.31595192784,5,3,5,5_1,5_3,5_1_0 -17941,1,23.0,308.0,2,111,222.0,370.0,0.0,68,56,0.0,0.0,306.84267852185656,592.0,0.0,671.0515733135561,50,2,1,2,2,1,2,2,2,0,,2,,2,101129,1,1,0,1,1,603.0,199.0,285.0,43,2.0,0.0,2.0,3.0,1.8,1,1,248.487673441542,222.0,14789.571322016041,4,1,2,3,51.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04002820549090137,8216.428512231134,1,1,1_1,1_0_1,1_3_1,1_0_1 -17942,1,44.0,135.0,1,111,960.0,860.0,0.0,85,63,0.0,0.0,1326.8872584728933,1820.0,0.0,1559.741494728806,71,0,0,0,0,0,0,0,0,0,,1,,1,107447,2,1,1,0,1,,370.0,505.0,42,3.0,2.0,4.0,5.0,2.8,1,1,99.7953958245537,960.0,7182.17896389325,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.25340499159790236,2565.063915676161,1,1,1_1,1_1_1,1_3_1,1_1_0 -17943,2,28.0,0.0,7,111,360.0,1800.0,0.0,52,46,0.0,0.0,497.582721927335,2160.0,0.0,3264.575221525408,50,2,2,2,1,2,2,2,2,2,5.0,1,,5,111039,1,3,1,0,1,,250.0,650.0,43,2.0,0.0,2.0,3.0,1.8,2,2,298.539587193047,360.0,46377.6248910819,1,1,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.046574183241870876,25765.347161712165,7,4,7,7_1,7_3,7_0_0 -17944,2,39.0,0.0,1,111,990.0,0.0,0.0,54,21,2987.1697540360015,879.8966290965391,1368.3524853001713,4020.0,309.6588607542345,0.0,71,2,2,2,2,2,2,2,1,0,,1,,1,120699,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,355.285866432407,990.0,54736.149391603874,4,1,1,2,120.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07344323714186293,30408.971884224375,8,4,8,8_1,8_3,8_1_0 -17945,2,62.0,0.0,1,111,500.0,1240.0,0.0,78,78,0.0,0.0,691.0871137879653,1740.0,0.0,2248.9295970508365,41,0,0,0,0,0,0,0,0,0,,1,,1,101276,2,1,1,0,1,,350.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,271.918840657419,500.0,26556.66924314166,7,5,1,2,55.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06552026476171745,17704.44616209444,4,2,4_0,4_1_0,4_3_0,4_1_0 -17946,1,32.0,321.0,2,111,500.0,0.0,0.0,0,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,5.0,2,,2,108585,2,2,0,1,1,981.0,600.0,306.0,32,1.0,0.0,3.0,3.0,1.8,2,2,219.617575876248,500.0,13685.0,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03653635367190355,7602.777777777777,1,1,1_1,1_0_1,1_3_1,1_0_1 -17947,0,83.0,0.0,1,111,330.0,1000.0,0.0,86,78,0.0,0.0,456.1174951000571,1330.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,1,118175,2,1,1,0,1,,110.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,286.484612754956,330.0,26890.35143760909,6,5,5,0,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049460119667303785,17926.90095840606,4,2,4_0,4_1_0,4_3_0,4_1_0 -17948,2,68.0,0.0,1,111,970.0,0.0,0.0,75,77,0.0,414.0690019277831,1340.7090007486527,1430.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114584,2,1,2,0,1,,291.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,230.043640668173,970.0,38987.713623951226,5,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03667822160059962,25991.80908263415,7,4,7,7_1,7_3,7_1_0 -17949,2,41.0,0.0,1,111,1300.0,0.0,0.0,54,48,4480.754631054002,0.0,1796.8264958487098,4300.0,0.0,0.0,50,2,2,2,2,2,2,2,1,2,30.0,1,,1,125478,2,3,3,0,1,,120.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,350.318646623056,1300.0,56034.70096185004,1,1,1,2,150.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07673816271327223,21551.808062250017,6,3,6,6_1,6_3,6_1_0 -17950,1,28.0,412.0,1,111,400.0,1180.0,0.0,0,85,0.0,0.0,552.8696910303722,1580.0,0.0,2140.1104229999896,50,2,2,1,2,1,2,2,2,0,,1,,1,129561,2,3,1,0,1,,720.0,384.0,31,0.0,0.0,4.0,3.0,1.6,2,2,184.853402188068,400.0,10124.836968562275,0,6,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.15605189544344433,6328.023105351422,1,1,1_1,1_1_1,1_3_1,1_1_0 -17951,1,58.0,271.0,1,111,330.0,0.0,0.0,0,67,0.0,0.0,456.1174951000571,330.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111870,2,3,2,0,1,,100.0,302.0,22,2.0,0.0,4.0,2.0,1.5,1,1,333.84186228999,330.0,10761.373573671466,0,4,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.030665230394693346,7174.249049114311,1,1,1_1,1_1_1,1_3_1,1_1_0 -17952,2,51.0,0.0,2,111,236.0,751.0,0.0,0,52,0.0,0.0,326.1931177079196,987.0,0.0,1362.053328536434,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,124268,2,1,0,0,1,,229.0,241.0,12,1.0,1.0,3.0,1.0,1.0,4,3,243.477177649922,236.0,15136.229486138389,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06520778512930746,15136.229486138389,3,2,3_0,3_0_0,3_3_0,3_0_1 -17953,1,37.0,98.0,1,111,777.0,1200.0,0.0,85,62,0.0,0.0,1073.9493748264981,1977.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,102692,1,1,3,0,2,,350.0,,42,1.0,0.0,6.0,5.0,2.5999999999999996,2,2,312.77057989457,777.0,28795.56300771789,6,1,1,2,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06865641069320705,11075.21654142996,2,1,2_1,2_1_1,2_3_1,2_1_0 -17954,1,40.0,210.0,7,111,0.0,0.0,0.0,22,54,0.0,0.0,0.0,2091.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,120335,2,2,2,0,1,,550.0,530.0,43,2.0,0.0,5.0,5.0,2.4,1,1,251.324134845022,0.0,15134.99433607439,4,1,2,3,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1381566423857909,6306.247640030996,1,1,1_1,1_1_1,1_3_1,1_0_0 -17955,1,56.0,240.0,1,111,500.0,0.0,0.0,0,78,0.0,0.0,691.0871137879653,580.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114250,2,1,1,0,1,,200.0,350.0,11,0.0,2.0,1.0,1.0,1.0,2,2,416.585605361293,500.0,7858.284578945022,0,7,2,3,25.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07380745685311707,7858.284578945022,1,1,1_1,1_1_1,1_3_1,1_1_0 -17956,1,41.0,256.0,1,111,500.0,1200.0,0.0,0,52,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,20,2,2,2,2,1,2,2,2,2,10.0,1,,1,119125,2,2,5,0,1,,480.0,429.0,32,2.0,1.0,4.0,2.0,1.5,2,2,205.246596940532,500.0,18823.38666557456,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.09031318488022515,12548.924443716372,2,1,2_1,2_1_1,2_3_1,2_1_0 -17957,2,75.0,0.0,1,111,900.0,0.0,0.0,86,78,0.0,517.5862524097289,1243.9568048183376,1400.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,107089,1,2,2,0,1,,200.0,,41,0.0,6.0,2.0,2.0,1.5,1,1,314.75843747691,900.0,17128.49668493398,5,5,0,1,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.08173513564861902,11418.997789955987,2,1,2_0,2_1_0,2_3_0,2_1_0 -17958,1,64.0,126.0,1,111,550.0,750.0,0.0,78,78,0.0,0.0,760.1958251667618,1300.0,0.0,1360.2396756355868,70,0,0,0,0,0,0,0,0,0,,1,,1,133550,2,2,4,0,1,,300.0,359.0,41,0.0,4.0,4.0,2.0,1.5,2,2,206.22795395853,550.0,18449.313089216732,5,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07046332802275576,12299.54205947782,2,1,2_1,2_1_1,2_3_1,2_1_0 -17959,2,83.0,0.0,1,111,390.0,1200.0,0.0,86,86,0.0,0.0,539.0479487546129,1590.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,1,124748,2,2,2,0,1,,290.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,271.918840657419,390.0,28276.057415419928,6,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056231318837714525,18850.704943613284,5,3,5,5_1,5_3,5_1_0 -17960,1,47.0,437.0,6,111,0.0,0.0,1700.0,85,22,0.0,0.0,868.5526692237926,1700.0,0.0,1943.5178169094734,70,0,0,0,0,0,0,0,0,0,,1,,4,108524,1,3,4,0,1,,650.0,430.0,42,1.0,0.0,4.0,4.0,2.3,1,1,237.610421207475,0.0,11332.84000997314,6,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15000652956398958,4927.321743466583,1,1,1_1,1_1_1,1_3_1,1_0_0 -17961,2,41.0,0.0,2,111,847.0,1900.0,0.0,21,42,0.0,0.0,1170.7015707568132,2747.0,0.0,3445.940511610153,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,131462,2,3,2,0,1,,240.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,345.520559783396,847.0,33031.94923028537,1,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08316191033260038,14361.717056645813,3,2,3_0,3_1_0,3_3_0,3_0_1 -17962,1,50.0,329.0,1,111,500.0,1200.0,0.0,85,68,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,1,109849,2,2,5,0,1,,700.0,431.0,42,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,199.911615633135,500.0,21776.128441713616,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07806713689029944,8375.434016043699,1,1,1_1,1_1_1,1_3_1,1_1_0 -17963,2,65.0,0.0,1,111,867.0,1320.0,0.0,85,72,0.0,0.0,1198.345055308332,2187.0,0.0,2394.0218291186325,31,0,0,0,0,0,0,0,0,0,,1,,1,115898,2,1,1,0,1,,900.0,,41,0.0,0.0,9.0,4.0,2.1,2,2,345.520559783396,867.0,27017.50223637204,6,5,0,1,170.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08094752730531,12865.477255415257,2,1,2_0,2_1_0,2_3_0,2_1_0 -17964,1,35.0,247.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1053.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,132863,1,3,3,0,1,,363.0,790.0,32,1.0,0.0,4.0,4.0,2.1,1,1,259.491656017753,0.0,29185.018040034567,0,1,2,3,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03608015587160325,13897.627638111699,3,2,3_1,3_1_1,3_3_1,3_0_0 -17965,2,87.0,0.0,1,111,120.0,300.0,0.0,0,86,0.0,0.0,165.86090730911167,420.0,0.0,544.0958702542347,71,2,2,2,1,2,2,2,2,0,,1,,1,125298,1,3,4,0,1,,120.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,358.475027206792,120.0,9544.603974085738,0,5,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.04400392107837362,9544.603974085738,1,1,1_0,1_1_0,1_3_0,1_1_0 -17966,1,30.0,304.0,1,111,520.0,0.0,0.0,85,68,0.0,517.5862524097289,718.7305983394839,1100.0,137.62616033521533,0.0,71,2,2,2,1,2,2,2,2,2,20.0,1,,1,115885,1,3,3,0,1,,600.0,374.0,42,1.0,0.0,4.0,4.0,2.1,1,1,218.951958907576,520.0,18503.164488334187,6,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05944929045480433,8811.030708730565,1,1,1_1,1_1_1,1_3_1,1_1_0 -17967,1,63.0,271.0,1,111,180.0,300.0,0.0,0,68,0.0,0.0,248.7913609636675,480.0,0.0,544.0958702542347,70,0,0,0,0,0,0,0,0,0,,1,,1,104036,2,1,2,0,1,,168.0,387.0,11,0.0,9.0,3.0,1.0,1.0,2,2,338.770027983308,180.0,4839.267902296582,0,7,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09918855696585951,4839.267902296582,1,1,1_1,1_1_1,1_3_1,1_1_0 -17968,2,42.0,0.0,6,111,0.0,0.0,2000.0,65,56,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,50,2,2,2,1,2,2,2,2,3,60.0,2,,4,120133,1,3,0,0,2,,300.0,480.0,43,2.0,0.0,5.0,4.0,2.1,1,1,270.35722619192,0.0,39111.707579160015,1,1,2,3,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.05113558378784937,18624.622656742864,4,2,4_0,4_0_0,4_3_0,4_0_0 -17969,1,36.0,47.0,1,111,900.0,210.0,0.0,85,46,0.0,0.0,1243.9568048183376,1110.0,0.0,380.86710917796427,50,2,2,2,1,2,2,2,2,1,10.0,1,,1,106610,2,2,2,0,1,,300.0,,42,1.0,0.0,5.0,5.0,2.4,1,1,278.065524472702,900.0,25967.76508003156,6,1,1,2,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.042745303516842005,10819.902116679817,2,1,2_1,2_1_1,2_3_1,2_1_0 -17970,1,61.0,284.0,1,111,400.0,430.0,0.0,77,78,0.0,0.0,552.8696910303722,920.0,154.82943037711726,779.870747364403,71,0,0,0,0,0,0,0,0,0,,1,,1,110032,2,3,2,0,1,,580.0,423.0,41,0.0,4.0,4.0,2.0,1.5,2,2,183.017766776858,400.0,17816.78773595474,5,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.051636693080392725,11877.858490636492,2,1,2_1,2_1_1,2_3_1,2_1_0 -17971,1,57.0,16.0,1,111,260.0,590.0,0.0,0,54,0.0,0.0,359.36529916974195,850.0,0.0,1070.0552114999948,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,113123,2,1,1,0,1,,256.0,311.0,12,1.0,2.0,4.0,1.0,1.0,2,2,308.920582125048,260.0,14341.98943509278,0,1,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.059266533687451516,14341.98943509278,3,2,3_1,3_1_1,3_3_1,3_1_0 -17972,1,49.0,49.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,565.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,110253,2,1,0,0,1,,105.0,285.0,12,1.0,2.0,3.0,1.0,1.0,1,1,294.918181319917,0.0,3065.613193506527,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1843024427206808,3065.613193506527,1,1,1_1,1_0_1,1_3_1,1_0_1 -17973,1,50.0,250.0,2,111,400.0,500.0,0.0,0,55,0.0,0.0,552.8696910303722,1250.0,602.1144514665671,906.8264504237244,50,0,0,0,0,0,0,0,0,0,,1,,2,108068,2,2,1,0,1,,200.0,400.0,12,1.0,0.0,5.0,1.0,1.0,2,2,411.984653425322,400.0,7512.866562009419,0,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.16638123274023256,7512.866562009419,1,1,1_1,1_1_1,1_3_1,1_0_1 -17974,2,31.0,0.0,5,111,400.0,900.0,0.0,55,62,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,5.0,2,,3,105436,2,2,0,0,1,,350.0,366.0,43,2.0,0.0,3.0,3.0,1.8,2,2,245.29757557873,400.0,31113.504035367438,4,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04178250056702903,17285.280019648577,4,2,4_0,4_0_0,4_3_0,4_0_0 -17975,1,35.0,327.0,2,111,450.0,1000.0,0.0,63,21,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,2,107902,2,3,2,0,1,,500.0,428.0,43,3.0,0.0,4.0,4.0,2.5,2,2,346.644411675914,450.0,13958.852431379553,4,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10387673393125028,5583.540972551821,1,1,1_1,1_1_1,1_3_1,1_0_1 -17976,0,76.0,0.0,1,111,239.0,1200.0,0.0,86,78,0.0,0.0,330.3396403906474,1439.0,0.0,2176.3834810169387,43,2,2,2,2,1,2,2,2,0,,1,,1,125709,1,1,4,0,1,,241.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,216.116312792979,239.0,28785.390860291747,5,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.049990636117609254,19190.26057352783,5,3,5,5_1,5_3,5_1_0 -17977,2,56.0,0.0,1,111,500.0,1700.0,0.0,68,65,0.0,0.0,691.0871137879653,2200.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,117250,2,2,1,0,1,,650.0,,43,2.0,0.0,10.0,5.0,2.8,2,2,290.568245966891,500.0,15004.799794210423,1,1,1,2,270.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14661975035807318,5358.857069360865,1,1,1_0,1_1_0,1_3_0,1_1_0 -17978,2,71.0,0.0,5,111,785.0,1300.0,0.0,77,72,0.0,0.0,1085.0067686471054,2085.0,0.0,2357.7487711016834,42,0,0,0,0,0,0,0,0,0,,1,,3,117873,2,1,2,0,1,,600.0,,41,1.0,1.0,4.0,4.0,2.5,1,1,237.197147551628,785.0,55201.78145207625,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037770520174427794,22080.7125808305,6,3,6,6_1,6_3,6_0_0 -17979,1,45.0,81.0,1,111,500.0,1800.0,0.0,0,45,0.0,0.0,691.0871137879653,2300.0,0.0,3264.575221525408,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,129045,1,2,3,0,2,,240.0,700.0,32,1.0,0.0,6.0,3.0,1.8,4,3,373.106996030743,500.0,35849.207594996675,0,1,2,3,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0641576245138819,19916.226441664818,5,3,5,5_1,5_3,5_1_0 -17980,1,57.0,31.0,5,111,800.0,900.0,0.0,0,68,0.0,0.0,1105.7393820607444,1700.0,0.0,1632.287610762704,42,2,2,2,1,1,2,2,2,2,10.0,2,,3,113283,2,3,0,0,1,,540.0,351.0,22,1.0,2.0,4.0,3.0,1.8,2,2,267.529700075826,800.0,22445.977200589125,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07573740206576443,12469.987333660625,2,1,2_1,2_0_1,2_3_1,2_0_0 -17981,2,54.0,0.0,1,111,1000.0,1000.0,0.0,37,37,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,2,1.0,1,,1,124741,2,1,1,0,1,,500.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,299.626929905938,1000.0,86097.45094774151,1,1,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02322949144236498,57398.300631827675,10,5,10,10_1,10_3,10_1_0 -17982,1,36.0,30.0,2,111,900.0,1000.0,0.0,0,55,0.0,0.0,1243.9568048183376,1900.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,121239,1,2,1,0,1,,200.0,350.0,12,1.0,0.0,3.0,1.0,1.0,4,4,296.939308788897,900.0,16452.24305325478,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11548577259950699,16452.24305325478,4,2,4_1,4_1_1,4_3_1,4_0_1 -17983,2,46.0,0.0,6,111,700.0,820.0,0.0,52,64,0.0,0.0,967.5219593031513,4634.0,0.0,1487.1953786949082,20,0,0,0,0,0,0,0,0,0,,1,,4,118808,2,1,2,0,1,,520.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,268.920453555007,700.0,37711.04299570972,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12288177764076154,15084.417198283889,3,2,3_0,3_1_0,3_3_0,3_0_0 -17984,1,54.0,171.0,1,111,350.0,0.0,0.0,0,68,0.0,0.0,483.76097965157567,350.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,15.0,2,,1,103144,2,1,0,0,1,,0.0,324.0,12,1.0,1.0,1.0,1.0,1.0,3,3,443.229663348688,350.0,13719.177234678134,0,1,2,3,30.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025511733977406508,13719.177234678134,3,2,3_1,3_0_1,3_3_1,3_1_0 -17985,1,38.0,200.0,6,111,1300.0,0.0,0.0,56,63,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,7.0,1,,4,124142,2,1,1,0,1,,620.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,237.425399447531,1300.0,25615.1933984191,1,1,1,2,89.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05075112960420719,9851.997460930424,2,1,2_1,2_1_1,2_3_1,2_0_0 -17986,1,53.0,271.0,2,111,250.0,1500.0,0.0,0,67,0.0,0.0,345.54355689398267,1870.0,206.439240502823,2720.4793512711735,70,2,2,2,2,2,2,2,1,0,,1,,2,121619,2,2,2,0,1,,350.0,386.0,32,2.0,6.0,4.0,2.0,1.5,1,1,272.07567575015,250.0,7463.642072213501,0,4,2,3,73.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.25054792042638935,4975.761381475667,1,1,1_1,1_1_1,1_3_1,1_0_1 -17987,2,63.0,0.0,2,111,635.0,1300.0,0.0,21,77,0.0,0.0,877.6806345107159,1935.0,0.0,2357.7487711016834,20,2,2,2,2,1,2,2,2,0,,1,,2,119481,2,3,3,0,1,,360.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,205.128284750458,635.0,38077.846842798586,1,5,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05081694897267947,25385.23122853239,7,4,7,7_1,7_3,7_0_1 -17988,2,52.0,0.0,1,111,523.0,1145.0,0.0,85,63,0.0,0.0,722.8771210222117,1668.0,0.0,2076.632571470329,71,0,0,0,0,0,0,0,0,2,1.0,1,,1,106907,2,2,3,0,1,,250.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,263.611651949764,523.0,26463.73987359691,6,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06302964010253809,14702.077707553839,3,2,3_0,3_1_0,3_3_0,3_1_0 -17989,1,38.0,295.0,1,111,200.0,1000.0,0.0,85,62,0.0,0.0,276.4348455151861,1200.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,115971,2,1,2,0,1,,450.0,459.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,1,1,230.810360354944,200.0,28774.74292156197,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04170323965260506,9922.325145366198,2,1,2_1,2_1_1,2_3_1,2_1_0 -17990,2,48.0,0.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1408.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,112592,2,3,0,0,1,,352.0,280.0,11,0.0,3.0,2.0,1.0,1.0,2,2,372.042300268839,0.0,12243.510614468005,0,7,2,3,40.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11499969611135746,12243.510614468005,2,1,2_0,2_0_0,2_3_0,2_1_0 -17991,1,48.0,140.0,2,111,0.0,0.0,0.0,78,85,0.0,0.0,0.0,1137.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,108465,2,1,1,0,1,,272.0,550.0,41,0.0,0.0,3.0,3.0,2.0,2,2,447.080320966943,0.0,19474.186424012347,7,7,2,3,55.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05838498077629778,9737.093212006173,1,1,1_1,1_1_1,1_3_1,1_0_1 -17992,2,64.0,0.0,1,111,490.0,890.0,0.0,77,77,0.0,0.0,677.265371512206,1380.0,0.0,1614.1510817542296,41,1,2,2,1,2,2,2,2,0,,1,,1,116428,2,1,3,0,1,,400.0,384.0,41,0.0,2.0,4.0,2.0,1.5,2,2,191.588655401253,490.0,37083.72088641938,5,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03721309423686707,24722.480590946256,7,4,7,7_1,7_3,7_1_0 -17993,2,55.0,0.0,1,111,510.0,912.0,0.0,68,63,0.0,0.0,704.9088560637246,1422.0,0.0,1654.0514455728735,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,130023,1,2,3,0,1,,211.0,493.0,43,2.0,4.0,5.0,2.0,1.5,2,1,333.839820844706,510.0,37773.689069938606,1,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03764525083496991,25182.45937995907,7,4,7,7_1,7_3,7_1_0 -17994,1,28.0,221.0,1,111,1459.0,1789.0,0.0,81,65,0.0,0.0,2016.5921980332828,3248.0,0.0,3244.6250396160863,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,108003,1,2,5,0,1,,930.0,424.0,43,2.0,0.0,3.0,3.0,1.8,1,1,211.905705659539,1459.0,18384.192815669383,4,1,2,3,66.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17667351689390653,10213.440453149657,2,1,2_1,2_1_1,2_3_1,2_1_0 -17995,0,76.0,0.0,1,111,400.0,1250.0,0.0,0,86,0.0,18.63310508675024,552.8696910303722,1818.0,258.04905062852873,2267.066126059311,70,0,0,0,0,0,0,0,0,0,,1,,1,122392,2,2,5,0,1,,210.0,,21,1.0,10.0,8.0,2.0,1.5,3,3,409.319794828461,400.0,30058.862448100102,0,6,5,0,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06048133069370056,20039.241632066736,5,3,5,5_1,5_3,5_1_0 -17996,2,53.0,0.0,5,111,440.0,940.0,0.0,0,52,0.0,0.0,608.1566601334094,1380.0,0.0,1704.833726796602,44,0,0,0,0,0,0,0,0,2,2.0,2,,3,105840,1,2,0,0,1,,360.0,420.0,32,1.0,1.0,4.0,2.0,1.5,2,2,345.94640194113,440.0,35430.70657202748,0,1,2,3,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03894926558110216,23620.471048018317,6,3,6,6_0,6_3,6_0_0 -17997,1,63.0,88.0,2,111,180.0,150.0,0.0,0,86,0.0,0.0,248.7913609636675,330.0,0.0,272.04793512711734,50,2,2,2,1,1,2,2,2,0,,1,,2,130666,1,2,5,0,1,,87.0,367.0,11,0.0,8.0,4.0,1.0,1.0,3,1,507.15865730414,180.0,12615.569081699701,0,7,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.026158154092208338,12615.569081699701,2,1,2_1,2_1_1,2_3_1,2_0_1 -17998,1,57.0,271.0,1,111,350.0,900.0,0.0,0,56,0.0,0.0,483.76097965157567,1300.0,86.01635020950958,1632.287610762704,60,0,0,0,0,0,0,0,0,0,,1,,1,115039,2,3,2,0,1,,210.0,369.0,12,1.0,0.0,4.0,1.0,1.0,1,1,374.189936993362,350.0,6070.001412874457,0,4,2,3,72.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2141679896882237,6070.001412874457,1,1,1_1,1_1_1,1_3_1,1_1_0 -18001,1,51.0,270.0,1,111,0.0,0.0,900.0,0,62,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,44,2,2,2,2,1,1,2,2,0,,1,,1,100556,2,2,2,0,1,,160.0,337.0,12,1.0,4.0,4.0,1.0,1.0,1,1,262.347241927454,0.0,7204.897959183673,0,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.12491502379333787,7204.897959183673,1,1,1_1,1_1_1,1_3_1,1_1_0 -18002,2,44.0,0.0,1,111,1621.0,1855.0,0.0,47,46,0.0,0.0,2240.5044229005834,3476.0,0.0,3364.3261310720177,42,0,0,0,0,0,0,0,0,0,,1,,1,122603,2,1,2,0,1,,464.0,,43,2.0,0.0,6.0,3.0,1.8,3,2,383.651875455983,1621.0,116389.91669118969,1,1,1,2,160.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029865130062964648,64661.06482843871,10,5,10,10_1,10_3,10_1_0 -18003,1,42.0,360.0,1,111,0.0,0.0,1350.0,0,52,0.0,0.0,689.7330020306589,1350.0,0.0,1543.3817957810525,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,115842,2,1,2,0,1,,900.0,507.0,32,1.0,0.0,4.0,2.0,1.3,1,1,242.180321739896,0.0,17872.02293128655,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07553705616820278,13747.709947143498,3,2,3_1,3_1_1,3_3_1,3_1_0 -18004,1,68.0,287.0,2,111,468.0,0.0,0.0,86,75,0.0,0.0,646.8575385055356,1168.0,1204.2289029331341,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,109645,2,2,0,0,1,,150.0,317.0,41,0.0,3.0,2.0,2.0,1.5,1,1,789.222978183201,468.0,9358.026706122924,7,5,2,3,33.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.12481263803572837,6238.684470748616,1,1,1_1,1_0_1,1_3_1,1_0_1 -18005,1,21.0,350.0,1,111,0.0,0.0,1750.0,0,63,0.0,0.0,894.0983359656689,1750.0,0.0,2000.680105642105,31,0,0,0,0,0,0,0,0,0,,1,,1,126696,1,1,3,0,1,,380.0,340.0,22,1.0,5.0,4.0,2.0,1.5,4,4,213.768699607978,0.0,19285.311852689483,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09074263425799615,12856.874568459656,2,1,2_1,2_1_1,2_3_1,2_1_0 -18006,1,27.0,62.0,1,111,360.0,1100.0,0.0,0,47,0.0,0.0,497.582721927335,1460.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,104211,2,3,2,0,1,,400.0,335.0,12,1.0,0.0,2.0,1.0,1.0,1,1,240.616524923934,360.0,16835.4555470617,0,1,2,3,42.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08672174007520779,16835.4555470617,4,2,4_1,4_1_1,4_3_1,4_1_0 -18007,1,46.0,221.0,8,111,0.0,0.0,1406.0,85,62,0.0,77.63793786145933,718.3441487815603,1481.0,0.0,1607.4035591615998,12,2,2,2,1,2,2,2,2,2,15.0,1,2001.0,6,125755,2,3,1,0,1,,896.0,419.0,42,1.0,0.0,4.0,4.0,2.3,1,1,224.487894575371,0.0,23218.267830235243,6,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.06378598140173986,10094.899056624019,2,1,2_1,2_1_1,2_3_1,2_0_0 -18008,1,44.0,41.0,2,111,0.0,0.0,2001.0,77,38,0.0,0.0,1022.3375830098876,2001.0,0.0,2287.6347950799154,50,0,0,0,0,0,0,0,0,0,,1,,2,115122,2,1,2,0,1,,558.0,,42,2.0,1.0,5.0,3.0,2.0,1,1,217.841242528211,0.0,33607.85359772313,7,4,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05953965474711435,16803.926798861565,4,2,4_1,4_1_1,4_3_1,4_0_1 -18009,2,67.0,0.0,9,111,600.0,0.0,0.0,0,72,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,113812,1,1,0,0,1,,130.0,,11,0.0,1.0,4.0,1.0,1.0,3,3,651.072948712836,600.0,30075.503018520572,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019949791018641267,30075.503018520572,8,4,8,8_0,8_3,8_0_0 -18010,2,59.0,0.0,5,111,700.0,500.0,0.0,78,46,0.0,0.0,967.5219593031513,1200.0,0.0,906.8264504237244,70,0,0,0,0,0,0,0,0,2,25.0,1,,3,110671,2,1,2,0,1,,250.0,,42,2.0,2.0,5.0,3.0,2.0,1,1,256.988601298406,700.0,79514.59868874631,6,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015091568338253286,39757.299344373154,9,5,9,9_1,9_3,9_0_0 -18011,1,43.0,431.0,7,111,0.0,0.0,1500.0,85,67,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,20,1,2,2,2,1,2,2,2,0,,1,,5,120195,2,1,2,0,1,,700.0,392.0,42,3.0,0.0,5.0,6.0,3.0999999999999996,2,2,277.691322115669,0.0,17088.477545972135,6,4,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.08777844579569113,5512.412111603915,1,1,1_1,1_1_1,1_3_1,1_0_0 -18012,2,66.0,0.0,1,111,410.0,638.0,0.0,86,75,0.0,0.0,566.6914333061316,1048.0,0.0,1157.1105507406724,71,0,0,0,0,0,0,0,0,0,,1,,1,114137,2,1,2,0,1,,193.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,372.144993843173,410.0,33476.669938315245,6,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03130538377715182,22317.77995887683,6,3,6,6_1,6_3,6_1_0 -18013,2,51.0,0.0,2,111,427.0,1043.0,0.0,0,48,0.0,0.0,590.1883951749223,1470.0,0.0,1891.6399755838893,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,122152,1,1,2,0,1,,226.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,504.135551876006,427.0,19451.133948057544,0,1,1,2,76.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07557400015472102,19451.133948057544,5,3,5,5_1,5_3,5_0_1 -18014,2,55.0,0.0,5,111,0.0,0.0,740.0,0,78,0.0,0.0,378.07586777976854,740.0,0.0,846.0018732429473,50,2,2,2,1,1,2,2,2,0,,2,,3,132565,1,2,0,1,1,557.0,0.0,279.0,11,0.0,4.0,2.0,1.0,1.0,2,2,467.952363453665,0.0,12363.429992749747,0,7,2,3,49.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.05985394024424907,12363.429992749747,2,1,2_0,2_0_0,2_3_0,2_0_0 -18015,2,80.0,0.0,2,111,192.0,77.0,0.0,0,78,0.0,0.0,265.37745169457867,816.0,0.0,139.65127336525356,31,1,1,2,2,1,2,2,2,0,,2,,2,123151,2,1,0,1,1,619.0,0.0,322.0,11,0.0,3.0,2.0,1.0,1.0,2,2,667.854531925991,192.0,17444.16624777421,0,5,2,3,56.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04677781605664975,17444.16624777421,4,2,4_0,4_0_0,4_3_0,4_0_1 -18016,2,56.0,0.0,2,111,300.0,0.0,0.0,67,62,1194.8679016144006,0.0,414.65226827277917,1364.0,454.1663291062106,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,131204,1,2,0,0,1,,0.0,508.0,43,3.0,5.0,3.0,5.0,2.8,2,1,577.621628978002,300.0,25720.269834303217,4,1,2,3,82.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05303210303730283,9185.810655108293,1,1,1_0,1_0_0,1_3_0,1_0_1 -18017,1,68.0,221.0,6,111,930.0,0.0,0.0,0,77,0.0,0.0,1285.4220316456153,1746.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,117760,2,1,0,0,1,,0.0,251.0,11,0.0,2.0,1.0,1.0,1.0,1,1,581.210154550969,930.0,10199.27081432996,0,5,2,3,29.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17118870866208127,10199.27081432996,2,1,2_1,2_0_1,2_3_1,2_0_0 -18018,2,33.0,0.0,2,111,500.0,0.0,0.0,43,38,2688.452778632401,0.0,691.0871137879653,2300.0,0.0,0.0,60,2,2,1,1,1,2,2,2,0,,1,,2,130610,2,2,4,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,430.697702597955,500.0,50174.36669740691,1,1,1,2,90.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04584014012316109,33449.577798271275,8,4,8,8_1,8_3,8_0_1 -18019,2,64.0,0.0,5,111,0.0,0.0,1200.0,0,43,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,71,2,2,1,2,1,1,2,2,2,60.0,1,,3,133249,2,2,1,0,2,,260.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,485.70985339766,0.0,32716.753855448827,0,1,1,2,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03667845548803264,32716.753855448827,8,4,8,8_1,8_3,8_0_0 -18020,2,57.0,0.0,1,111,631.0,940.0,0.0,52,38,0.0,0.0,872.1519376004122,1571.0,0.0,1704.833726796602,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,128491,2,1,3,0,1,,499.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,378.814736662351,631.0,59162.5863084529,1,1,0,1,98.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026553943936956356,29581.29315422645,8,4,8,8_1,8_3,8_1_0 -18021,1,54.0,140.0,2,111,280.0,0.0,0.0,0,52,0.0,0.0,387.00878372126056,582.0,103.2196202514115,0.0,71,2,2,1,2,1,2,2,2,1,20.0,2,,2,106883,2,1,0,1,1,645.0,0.0,247.0,12,1.0,0.0,2.0,1.0,1.0,1,1,597.502934909317,280.0,12919.860329078027,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04504692660570984,12919.860329078027,2,1,2_1,2_0_1,2_3_1,2_0_1 -18024,2,49.0,0.0,1,111,430.0,0.0,0.0,85,85,0.0,82.81380038555662,594.3349178576501,615.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130963,2,1,2,0,1,,430.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,429.82010204814,430.0,21993.73054806101,7,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027962514074458326,14662.487032040672,3,2,3_0,3_1_0,3_3_0,3_1_0 -18025,1,60.0,247.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,230.0,0.0,0.0,50,1,2,2,1,2,2,2,2,1,5.0,2,,1,118909,1,1,0,1,1,,0.0,457.0,22,1.0,2.0,2.0,2.0,1.5,3,3,589.921178885484,0.0,7810.45888924985,0,1,3,4,18.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.029447693568500456,5206.972592833233,1,1,1_1,1_0_1,1_3_1,1_1_0 -18026,2,20.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1277.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,2,,2,109069,2,1,0,0,1,,812.0,435.0,22,2.0,0.0,2.0,2.0,1.5,1,1,735.657355211658,0.0,12658.22277336985,0,1,2,3,49.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10088304044439245,8438.815182246566,1,1,1_0,1_0_0,1_3_0,1_0_1 -18027,2,75.0,0.0,9,111,652.5,0.0,0.0,0,53,0.0,0.0,901.8686834932947,653.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,109552,2,1,0,0,1,,353.0,540.0,11,0.0,1.0,2.0,1.0,1.0,1,1,678.560734233142,652.5,35108.22667844247,0,5,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01859962925444372,35108.22667844247,9,5,9,9_0,9_3,9_0_0 -18028,1,47.0,377.0,2,111,264.0,500.0,0.0,0,85,0.0,0.0,364.89399608004567,764.0,0.0,906.8264504237244,60,2,2,2,2,1,2,2,2,0,,2,,2,109412,2,1,0,0,1,,0.0,478.0,31,0.0,0.0,3.0,2.0,1.3,1,1,427.479909545468,264.0,7475.7435666214715,0,7,2,3,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.10219719191696086,5750.571974324209,1,1,1_1,1_0_1,1_3_1,1_0_1 -18029,1,90.0,159.0,6,111,171.0,619.0,0.0,0,77,0.0,0.0,236.3517929154841,790.0,0.0,1122.651145624571,60,0,0,0,0,0,0,0,0,0,,2,,4,103248,2,1,0,0,1,,0.0,354.0,11,0.0,1.0,2.0,1.0,1.0,2,2,615.407767263116,171.0,12171.63510820471,0,5,2,3,57.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0649050019144489,12171.63510820471,2,1,2_1,2_0_1,2_3_1,2_0_0 -18030,2,52.0,0.0,5,111,820.0,0.0,0.0,0,62,0.0,0.0,1133.3828666122631,850.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,3,108596,1,2,0,0,1,,0.0,355.0,12,1.0,0.0,2.0,1.0,1.0,1,1,874.657755711226,820.0,26658.58983120419,0,1,2,3,33.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031884657267394735,26658.58983120419,7,4,7,7_0,7_3,7_0_0 -18031,2,41.0,0.0,2,111,480.0,863.0,0.0,37,52,0.0,93.1655254337512,663.4436292364467,1433.0,0.0,1565.1824534313484,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,123244,2,1,2,0,1,,316.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,429.745440771877,480.0,53738.04908637324,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026666394191138892,25589.547183987255,7,4,7,7_1,7_3,7_0_1 -18032,1,61.0,100.0,8,111,308.0,905.0,0.0,0,77,0.0,0.0,425.7096620933866,1213.0,0.0,1641.3558752669412,41,2,2,2,2,1,2,2,2,0,,1,2000.0,6,102795,1,2,3,0,1,,122.0,406.0,11,0.0,2.0,3.0,1.0,1.0,1,1,522.583755210188,308.0,14354.018139179792,0,7,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.08450595423793386,14354.018139179792,3,2,3_1,3_1_1,3_3_1,3_0_0 -18033,2,56.0,0.0,5,111,900.0,900.0,0.0,78,64,0.0,0.0,1243.9568048183376,1800.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,132419,2,1,2,0,1,,330.0,459.0,42,2.0,3.0,3.0,3.0,2.0,2,2,426.104167884508,900.0,37990.61929117465,6,1,2,3,72.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04738011734433995,18995.309645587324,5,3,5,5_1,5_3,5_0_0 -18034,1,46.0,369.0,5,111,830.0,150.0,0.0,0,85,0.0,0.0,1147.2046088880224,980.0,0.0,272.04793512711734,10,2,2,2,1,1,1,2,2,0,,2,,3,117945,2,1,0,1,1,471.0,0.0,363.0,31,1.0,3.0,4.0,3.0,1.8,4,4,526.629467876126,830.0,10853.36568711497,0,6,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.0902945711267656,6029.6476039527615,1,1,1_1,1_0_1,1_3_1,1_0_0 -18035,2,71.0,0.0,2,111,220.0,1709.0,0.0,0,77,0.0,0.0,304.0783300667047,1929.0,0.0,3099.5328075482903,70,0,0,0,0,0,0,0,0,0,,1,,2,115932,2,2,5,0,1,,55.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,485.70985339766,220.0,15928.215242118258,0,5,0,1,101.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12110584711959646,15928.215242118258,3,2,3_0,3_1_0,3_3_0,3_0_1 -18036,2,56.0,0.0,1,111,0.0,0.0,1580.0,0,52,0.0,0.0,807.2430690432896,1580.0,0.0,1806.328323951158,31,0,0,0,0,0,0,0,0,3,50.0,1,,1,123545,2,2,1,0,1,,183.0,,12,1.0,2.0,5.0,1.0,1.0,2,1,449.864850092977,0.0,26747.408283944496,0,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05907114376193289,26747.408283944496,7,4,7,7_1,7_3,7_1_0 -18037,2,33.0,0.0,1,111,0.0,0.0,5000.0,46,31,0.0,0.0,2554.5666741876253,5000.0,0.0,5716.228873263157,71,0,0,0,0,0,0,0,0,2,18.0,1,,1,129741,1,2,1,0,1,,427.0,,43,2.0,0.0,9.0,4.0,2.1,1,1,367.915475902666,0.0,176613.15972437285,1,1,1,2,280.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02831046116723766,84101.50463065373,10,5,10,10_1,10_3,10_1_0 -18038,2,69.0,0.0,6,111,1000.0,0.0,0.0,77,77,0.0,0.0,1382.1742275759307,1080.0,137.62616033521533,0.0,31,2,2,1,1,1,2,2,1,0,,1,,4,103797,2,2,2,0,1,,200.0,,41,1.0,2.0,4.0,3.0,2.0,3,2,137.433547364488,1000.0,46492.95877520584,5,5,0,1,88.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.023229323933153325,23246.47938760292,6,3,6,6_1,6_3,6_0_0 -18039,1,80.0,50.0,2,111,179.0,700.0,0.0,0,78,0.0,0.0,247.40918673609156,879.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,1,,2,132798,2,1,2,0,1,,50.0,369.0,11,0.0,7.0,2.0,1.0,1.0,1,1,141.454381317771,179.0,13350.844318542864,0,7,2,3,67.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.065838532682099,13350.844318542864,3,2,3_1,3_1_1,3_3_1,3_0_1 -18040,1,39.0,566.0,2,111,1200.0,0.0,0.0,85,65,0.0,0.0,1658.6090730911167,1325.0,215.04087552377396,0.0,50,2,2,1,2,1,2,2,2,0,,1,,2,133482,1,2,5,0,2,,363.0,600.0,42,1.0,4.0,3.0,7.0,2.9999999999999996,2,2,136.185221974151,1200.0,23495.723465877443,6,4,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.05639324117532629,7831.907821959149,1,1,1_1,1_1_1,1_3_1,1_0_1 -18041,0,41.0,0.0,9,111,256.0,810.0,0.0,0,55,0.0,0.0,353.8366022594382,1066.0,0.0,1469.0588496864336,50,2,2,2,2,2,2,2,1,2,15.0,2,2008.0,6,131791,1,1,0,1,1,,250.0,,32,1.0,0.0,3.0,2.0,1.5,4,2,486.179920269835,256.0,16487.3168752349,0,1,5,0,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.06465575982233994,10991.544583489935,2,1,2_0,2_0_0,2_3_0,2_0_0 -18042,2,25.0,0.0,9,111,530.0,505.0,0.0,54,55,0.0,0.0,732.5523406152432,1035.0,0.0,915.8947149279617,71,0,0,0,0,0,0,0,0,2,50.0,2,2008.0,6,100984,2,1,0,1,1,,253.0,457.0,42,1.0,0.0,2.0,2.0,1.5,2,2,546.92382529625,530.0,27017.050107519197,3,1,2,3,53.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03830914166724464,18011.366738346132,4,2,4_0,4_0_0,4_3_0,4_0_0 -18044,2,81.0,0.0,1,111,339.0,1456.0,0.0,78,74,0.0,0.0,468.55706314824045,1795.0,0.0,2640.6786236338858,50,0,0,0,0,0,0,0,0,0,,1,,1,101044,2,1,2,0,1,,204.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,367.432981433082,339.0,24936.90612328233,5,5,0,1,132.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07198166408960008,16624.60408218822,4,2,4_0,4_1_0,4_3_0,4_1_0 -18045,1,51.0,338.0,2,111,875.0,295.0,0.0,85,63,0.0,0.0,1209.4024491289392,1170.0,0.0,535.0276057499974,41,1,2,2,2,1,2,2,2,2,45.0,2,,2,130045,1,2,0,1,1,787.0,0.0,469.0,42,2.0,0.0,5.0,7.0,3.6,1,1,659.666129034445,875.0,28236.562817618775,6,1,2,3,108.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04143563816733228,7843.48967156077,1,1,1_1,1_0_1,1_3_1,1_0_1 -18046,2,82.0,0.0,7,111,350.0,0.0,0.0,0,77,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,101812,2,1,0,1,1,936.0,250.0,426.0,21,1.0,0.0,3.0,2.0,1.5,2,2,268.210963716105,350.0,27235.96646481369,0,5,3,4,50.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012850654683106881,18157.31097654246,4,2,4_0,4_0_0,4_2_0,4_0_0 -18047,1,58.0,106.0,5,111,210.0,100.0,0.0,0,77,0.0,0.0,290.25658779094545,310.0,0.0,181.36529008474488,60,0,0,0,0,0,0,0,0,0,,2,,3,108002,1,2,0,1,1,726.0,190.0,275.0,11,0.0,0.0,3.0,1.0,1.0,2,2,376.586673810983,210.0,10951.116554222022,0,5,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028307615800188392,10951.116554222022,2,1,2_1,2_0_1,2_2_1,2_0_0 -18048,2,82.0,0.0,2,111,456.0,0.0,0.0,75,75,0.0,0.0,630.2714477746243,456.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109712,2,1,0,1,1,,275.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,388.879258095187,456.0,45377.76911928638,5,5,0,1,74.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010048973513909296,30251.846079524254,8,4,8,8_0,8_2,8_0_1 -18049,2,23.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,525.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,111243,2,1,0,0,1,,136.0,475.0,12,1.0,0.0,2.0,1.0,1.0,2,2,428.513211852396,0.0,22259.027805572186,0,1,2,3,40.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023585935764390158,22259.027805572186,6,3,6,6_0,6_2,6_0_1 -18050,2,65.0,0.0,9,111,721.0,960.0,0.0,78,72,0.0,503.09383734225645,996.5476180822459,2167.0,0.0,1741.106784813551,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,111332,2,1,1,0,1,,242.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,331.100371079632,721.0,44483.808804037195,5,5,0,1,110.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04871435378985198,29655.872536024795,8,4,8,8_1,8_2,8_0_0 -18051,2,37.0,0.0,2,111,267.0,150.0,0.0,0,46,0.0,0.0,369.04051876277344,417.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,1,5.0,2,,2,102847,1,1,0,1,1,150.0,200.0,544.0,12,1.0,0.0,3.0,1.0,1.0,2,2,391.62099187641,267.0,21545.52560170035,0,1,2,3,64.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019354366549641788,21545.52560170035,6,3,6,6_0,6_2,6_0_1 -18052,2,69.0,0.0,2,111,378.0,1189.0,0.0,77,78,0.0,0.0,522.4618580237018,1567.0,0.0,2156.4332991076167,71,0,0,0,0,0,0,0,0,0,,2,,2,123560,2,1,0,0,1,,184.0,,41,0.0,5.0,3.0,2.0,1.5,1,1,382.202695266077,378.0,23237.105751210416,5,5,0,1,67.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06743524846756681,15491.403834140277,3,2,3_0,3_0_0,3_2_0,3_0_1 -18053,2,38.0,0.0,2,111,300.0,610.0,0.0,34,34,0.0,0.0,414.65226827277917,910.0,0.0,1106.328269516944,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,125354,1,1,0,0,1,,285.0,567.0,43,2.0,0.0,4.0,3.0,1.8,3,3,394.634516788202,300.0,57731.66777876748,1,1,2,3,83.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015762579447508692,32073.148765981932,8,4,8,8_0,8_2,8_0_1 -18054,1,51.0,420.0,2,111,100.0,1200.0,0.0,0,56,0.0,0.0,138.21742275759306,1300.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,2,,2,128405,1,2,0,0,2,,480.0,585.0,32,1.0,0.0,3.0,3.0,1.8,1,1,372.67738155114,100.0,10796.47911605298,0,4,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12040962484399814,5998.043953362767,1,1,1_1,1_0_1,1_2_1,1_0_1 -18055,2,92.0,0.0,2,111,400.0,0.0,0.0,72,72,0.0,0.0,552.8696910303722,400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,131472,2,1,0,1,1,,209.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,390.183383036256,400.0,56425.937964911725,5,5,0,1,110.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007088938428435849,37617.29197660782,9,5,9,9_0,9_2,9_0_1 -18056,2,54.0,0.0,2,111,360.0,888.0,0.0,0,56,0.0,0.0,497.582721927335,1248.0,0.0,1610.5237759525346,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,122843,2,2,0,0,2,,170.0,,32,1.0,2.0,4.0,2.0,1.5,1,1,353.086709617738,360.0,17916.82757705506,0,1,1,2,92.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0696551883771117,11944.551718036708,2,1,2_0,2_0_0,2_2_0,2_0_1 -18057,2,29.0,0.0,2,111,0.0,0.0,0.0,54,62,0.0,0.0,0.0,636.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,126229,1,1,0,0,2,,0.0,490.0,43,2.0,0.0,2.0,2.0,1.5,1,1,372.097725748562,0.0,26301.761544170407,1,1,2,3,50.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0241808898971242,17534.507696113604,4,2,4_0,4_0_0,4_2_0,4_0_1 -18058,2,69.0,0.0,6,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,641.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,110548,2,1,0,0,1,,360.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,495.49566071891,0.0,28460.86886451279,0,5,0,1,110.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02252215148636057,28460.86886451279,8,4,8,8_0,8_2,8_0_0 -18059,1,41.0,53.0,2,111,167.0,605.0,0.0,0,53,0.0,0.0,230.8230960051804,772.0,0.0,1097.2600050127066,50,1,2,2,2,1,2,2,2,2,5.0,2,,2,105918,1,2,0,0,1,,79.0,276.0,32,2.0,0.0,2.0,3.0,1.8,2,2,432.170538337845,167.0,14778.557305454073,0,1,2,3,49.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05223784595774386,8210.309614141152,1,1,1_1,1_0_1,1_2_1,1_0_1 -18061,2,38.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1465.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,2,,2,109480,2,1,0,0,1,,0.0,550.0,12,1.0,1.0,3.0,1.0,1.0,2,2,391.62099187641,0.0,23785.974324740422,0,1,2,3,65.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0615909182444637,23785.974324740422,6,3,6,6_0,6_2,6_0_1 -18062,0,64.0,0.0,1,111,390.0,726.0,0.0,0,72,0.0,0.0,539.0479487546129,1116.0,0.0,1316.7120060152479,50,0,0,0,0,0,0,0,0,0,,2,,1,110200,1,2,0,0,1,,280.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,408.96129188798,390.0,18769.419512128035,0,5,5,0,78.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05945841848113023,18769.419512128035,5,3,5,5_0,5_2,5_1_0 -18063,2,90.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1272.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,121972,2,2,2,0,1,,304.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,365.695359428904,0.0,34365.87667615784,0,5,0,1,80.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03701345995001143,34365.87667615784,9,5,9,9_1,9_2,9_0_1 -18064,2,73.0,0.0,2,111,510.0,113.0,0.0,86,75,0.0,0.0,704.9088560637246,623.0,0.0,204.9427777957617,50,0,0,0,0,0,0,0,0,0,,2,,2,124126,2,1,0,1,1,953.0,0.0,371.0,41,0.0,2.0,3.0,2.0,1.5,2,2,331.626504417845,510.0,30653.925535262715,7,5,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020323661296930227,20435.95035684181,5,3,5,5_0,5_2,5_0_1 -18065,1,61.0,271.0,2,111,220.0,80.0,0.0,0,77,0.0,0.0,304.0783300667047,300.0,0.0,145.09223206779592,20,0,0,0,0,0,0,0,0,0,,2,,2,101604,1,1,0,1,2,773.0,0.0,371.0,11,0.0,2.0,3.0,1.0,1.0,2,2,425.069313764224,220.0,7204.897959183673,0,6,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041638341264445954,7204.897959183673,1,1,1_1,1_0_1,1_2_1,1_0_1 -18066,2,41.0,0.0,1,111,500.0,1866.0,0.0,43,65,0.0,0.0,691.0871137879653,2366.0,0.0,3384.2763129813397,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,102547,2,1,2,0,1,,470.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,276.569097369664,500.0,64779.296565189594,1,1,1,2,110.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0365240150086998,30847.28407866171,8,4,8,8_1,8_2,8_1_0 -18067,2,34.0,0.0,7,111,2454.0,0.0,0.0,31,38,0.0,0.0,3391.8555544713336,2454.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,5,115249,1,3,0,0,1,,0.0,950.0,43,2.0,0.0,4.0,3.0,1.8,2,2,437.75162761194,2454.0,75695.45861437693,1,1,2,3,120.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03241938215212701,42053.032563542736,9,5,9,9_0,9_2,9_0_0 -18068,2,52.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,515.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,2,,2,131147,2,1,0,0,1,,221.0,570.0,32,2.0,2.0,3.0,2.0,1.5,2,2,402.653308955098,0.0,51625.48267528742,0,1,2,3,80.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009975693655771379,34416.98845019162,9,5,9,9_0,9_2,9_0_1 -18070,2,87.0,0.0,1,111,0.0,0.0,0.0,77,74,2688.452778632401,0.0,0.0,12406.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116649,2,2,2,0,1,,523.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,259.884910828289,0.0,46689.18910254142,5,5,0,1,90.0,8,6,3,1,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2657146169909536,31126.126068360947,8,4,8,8_1,8_2,8_1_0 -18071,2,63.0,0.0,1,111,1020.0,0.0,0.0,0,54,0.0,0.0,1409.817712127449,1020.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,1,114553,1,3,0,0,2,,240.0,514.0,12,1.0,2.0,2.0,1.0,1.0,2,2,407.105590314942,1020.0,31520.563453995303,0,1,2,3,50.0,8,6,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03235982762455069,31520.563453995303,8,4,8,8_0,8_2,8_1_0 -18072,2,52.0,0.0,1,111,950.0,700.0,0.0,45,33,0.0,0.0,1313.065516197134,1650.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,126235,2,1,1,0,1,,310.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,292.722805587425,950.0,75416.8756596292,1,1,1,2,140.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02187839240976736,50277.91710641946,10,5,10,10_1,10_2,10_1_0 -18073,2,44.0,0.0,2,111,750.0,600.0,0.0,42,38,0.0,0.0,1036.630670681948,1350.0,0.0,1088.1917405084694,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,102419,2,1,1,0,1,,630.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,260.225589909325,750.0,98886.77447792293,1,1,1,2,240.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013651977295521917,42994.24977300997,9,5,9,9_1,9_2,9_0_1 -18074,2,27.0,0.0,1,111,0.0,0.0,2100.0,46,22,0.0,0.0,1072.9180031588025,2100.0,0.0,2400.8161267705264,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,126679,2,2,2,0,1,,650.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,268.716247276501,0.0,66095.41661150672,1,1,1,2,145.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031772248480455234,44063.611074337816,10,5,10,10_1,10_2,10_1_0 -18075,2,60.0,0.0,2,111,1717.0,0.0,0.0,0,34,0.0,0.0,2373.193148747873,1717.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,2,101043,2,2,0,0,1,,0.0,765.0,12,1.0,0.0,3.0,1.0,1.0,4,3,440.086987521147,1717.0,51832.88611537808,0,1,2,3,100.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03312568773766565,51832.88611537808,10,5,10,10_0,10_2,10_0_1 -18076,2,69.0,0.0,2,111,500.0,2000.0,0.0,75,75,0.0,0.0,691.0871137879653,2500.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,1,,2,115770,2,1,1,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,305.53205132995,500.0,26367.791809487633,5,5,0,1,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0948126418041746,17578.527872991755,4,2,4_0,4_1_0,4_2_0,4_0_1 -18077,2,55.0,0.0,5,111,142.0,260.0,0.0,0,52,0.0,0.0,196.26874031578214,402.0,0.0,471.5497542203367,70,0,0,0,0,0,0,0,0,2,10.0,2,,3,117150,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,488.221900487534,142.0,21938.307035452388,0,1,0,1,50.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018324112218429913,21938.307035452388,6,3,6,6_0,6_2,6_0_0 -18078,2,78.0,0.0,5,111,270.0,775.0,0.0,0,77,0.0,0.0,373.1870414455012,1045.0,0.0,1405.580998156773,70,0,0,0,0,0,0,0,0,0,,2,,3,100444,2,1,0,0,1,,350.0,419.0,11,0.0,1.0,3.0,1.0,1.0,2,2,480.852010890048,270.0,20025.909384558152,0,5,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0521823993074588,20025.909384558152,5,3,5,5_0,5_2,5_0_0 -18079,1,66.0,178.0,5,111,240.0,998.0,0.0,0,90,0.0,0.0,331.72181461822333,1238.0,0.0,1810.025595045754,50,0,0,0,0,0,0,0,0,0,,2,,3,106476,1,1,0,0,1,,100.0,300.0,11,0.0,0.0,2.0,1.0,1.0,2,2,517.143351535451,240.0,23659.730736416957,0,5,2,3,51.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05232519396742228,23659.730736416957,6,3,6,6_0,6_2,6_0_0 -18080,2,57.0,0.0,2,111,0.0,0.0,320.0,52,78,0.0,0.0,163.492267148008,320.0,0.0,365.83864788884205,20,0,0,0,0,0,0,0,0,0,,2,,2,124995,1,2,0,1,2,852.0,0.0,623.0,42,1.0,3.0,4.0,2.0,1.5,2,2,371.05684855487,0.0,36824.41996923194,1,5,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00868988568638341,24549.613312821293,7,4,7,7_0,7_2,7_0_1 -18081,2,67.0,0.0,2,111,600.0,1400.0,0.0,42,74,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,41,0,0,0,0,0,0,0,0,0,,1,,2,112391,2,2,2,0,1,,320.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,305.53205132995,600.0,79806.24739142426,1,5,0,1,100.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025060694687104333,53204.16492761617,10,5,10,10_1,10_2,10_0_1 -18082,1,44.0,491.0,2,111,2400.0,0.0,0.0,0,67,0.0,0.0,3317.2181461822333,2772.0,639.9616455587513,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,119463,2,1,2,0,1,,947.0,750.0,32,4.0,0.0,4.0,7.0,3.6,2,2,333.488030404134,2400.0,13624.290245268794,0,4,2,3,78.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.2034601399483993,3784.5250681302205,1,1,1_1,1_1_1,1_2_1,1_0_1 -18083,2,53.0,0.0,1,111,1100.0,1500.0,0.0,55,35,0.0,0.0,1520.3916503335236,2600.0,0.0,2720.4793512711735,41,0,0,0,0,0,0,0,0,0,,1,,1,130814,2,1,2,0,1,,500.0,,43,2.0,1.0,4.0,3.0,2.0,4,4,267.95130661045,1100.0,47127.15740709024,4,4,0,1,100.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055169888086838696,23563.57870354512,6,3,6,6_1,6_2,6_1_0 -18084,2,88.0,0.0,2,111,219.0,1296.0,0.0,0,77,0.0,0.0,302.6961558391288,1515.0,0.0,2350.494159498294,20,0,0,0,0,0,0,0,0,0,,1,,2,105490,2,2,5,0,1,,132.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,362.398074689399,219.0,18268.469453832804,0,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08292977163897802,18268.469453832804,4,2,4_0,4_1_0,4_2_0,4_0_1 -18085,2,55.0,0.0,2,111,307.0,1265.0,0.0,0,68,0.0,0.0,424.32748786581067,1572.0,0.0,2294.2709195720226,50,1,2,2,2,1,1,2,2,2,8.0,2,,2,106446,1,3,0,0,2,,444.0,626.0,12,1.0,3.0,3.0,1.0,1.0,2,2,392.557871492671,307.0,30816.648251203624,0,1,2,3,63.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05101138797398583,30816.648251203624,8,4,8,8_0,8_2,8_0_1 -18086,2,43.0,0.0,7,111,480.0,820.0,0.0,34,34,0.0,0.0,663.4436292364467,1300.0,0.0,1487.1953786949082,50,2,2,2,2,1,2,2,2,2,10.0,1,,5,118290,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,343.212992908803,480.0,120242.37682243035,1,1,1,2,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0.010811496199212641,66801.32045690574,10,5,10,10_1,10_2,10_0_0 -18087,2,57.0,0.0,6,111,625.0,946.0,0.0,77,75,0.0,0.0,863.8588922349566,2279.0,0.0,1715.7156442016867,43,0,0,0,0,0,0,0,0,0,,1,,4,114853,2,1,2,0,1,,542.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,317.996376619178,625.0,50379.32091456053,6,5,0,1,88.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04523681460226527,25189.660457280264,7,4,7,7_1,7_2,7_0_0 -18088,2,63.0,0.0,2,111,388.0,1056.0,0.0,54,74,0.0,0.0,536.2836002994611,1444.0,0.0,1915.217463294906,43,0,0,0,0,0,0,0,0,0,,1,,2,114475,2,1,2,0,1,,272.0,,42,2.0,1.0,6.0,3.0,2.0,4,4,313.942642581445,388.0,55571.6544519006,1,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0259844702167332,27785.8272259503,7,4,7,7_1,7_2,7_0_1 -18089,1,52.0,124.0,2,111,728.0,1251.0,0.0,0,56,0.0,0.0,1006.2228376752774,1979.0,0.0,2268.8797789601585,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,123506,2,1,2,0,1,,210.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,318.216036231619,728.0,16904.7285024304,0,1,1,2,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11706783694961315,13003.637309561846,2,1,2_1,2_1_1,2_2_1,2_0_1 -18091,2,66.0,0.0,1,111,1090.0,0.0,0.0,77,75,2913.984095062119,0.0,1506.5699080577642,3041.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,112495,1,2,3,0,1,,430.0,,41,0.0,6.0,3.0,2.0,1.5,4,3,249.641154421423,1090.0,41511.00359553477,5,5,0,1,87.0,8,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07325768438725756,27674.00239702318,7,4,7,7_1,7_2,7_1_0 -18092,2,83.0,0.0,2,111,512.0,0.0,0.0,0,74,3704.0904950046415,0.0,707.6732045188764,2992.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,117617,1,1,2,0,2,,346.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,381.876064285639,512.0,60226.857137541345,0,5,0,1,110.0,8,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04967883336776326,60226.857137541345,10,5,10,10_1,10_2,10_0_1 -18093,2,63.0,0.0,1,111,480.0,1000.0,0.0,77,72,0.0,0.0,663.4436292364467,1480.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,1,,1,131292,2,2,3,0,2,,300.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,228.382491774102,480.0,23152.347737022243,5,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06392440269171386,15434.898491348162,3,2,3_0,3_1_0,3_2_0,3_1_0 -18094,1,64.0,140.0,2,111,188.0,624.0,0.0,0,68,0.0,0.0,259.84875478427494,812.0,0.0,1131.719410128808,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,115165,2,1,0,0,1,,0.0,550.0,12,1.0,1.0,3.0,1.0,1.0,1,1,456.152694846594,188.0,5264.071008872197,0,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15425323834565205,5264.071008872197,1,1,1_1,1_0_1,1_2_1,1_0_1 -18095,1,29.0,150.0,1,111,200.0,680.0,0.0,0,52,0.0,0.0,276.4348455151861,880.0,0.0,1233.2839725762653,33,0,0,0,0,0,0,0,0,1,5.0,1,,1,109043,1,2,1,0,1,,260.0,281.0,12,1.0,0.0,2.0,1.0,1.0,2,2,259.134303942046,200.0,17744.48123069394,0,1,2,3,50.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04959288403866094,17744.48123069394,4,2,4_1,4_1_1,4_2_1,4_1_0 -18096,1,47.0,141.0,2,111,800.0,800.0,0.0,85,63,0.0,0.0,1105.7393820607444,1600.0,0.0,1450.922320677959,43,2,2,2,2,1,2,1,2,0,,2,,2,105172,1,3,0,0,1,,0.0,303.0,42,1.0,1.0,4.0,4.0,2.3,4,2,112.776998366253,800.0,18087.55190511848,6,4,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.08845862659541154,7864.153002225426,1,1,1_1,1_0_1,1_2_1,1_0_1 -18097,2,85.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,712.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,125694,1,1,0,0,1,,200.0,199.0,11,0.0,3.0,2.0,1.0,1.0,3,3,139.469069136848,0.0,17960.02358539179,0,5,2,3,78.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03964360050056515,17960.02358539179,4,2,4_0,4_0_0,4_2_0,4_0_1 -18098,1,57.0,209.0,9,111,550.0,0.0,0.0,0,78,0.0,0.0,760.1958251667618,658.0,185.7953164525407,0.0,70,0,0,0,0,0,0,0,0,0,,2,2010.0,6,104881,1,2,0,1,1,619.0,324.0,374.0,31,0.0,4.0,3.0,2.0,1.5,1,1,92.8001169249662,550.0,9046.028532715789,0,7,2,3,80.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07273910286931805,6030.685688477192,1,1,1_1,1_0_1,1_2_1,1_0_0 -18099,1,81.0,26.0,7,111,284.0,0.0,0.0,0,75,0.0,0.0,392.5374806315643,284.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,120687,2,1,2,1,2,813.0,214.0,384.0,11,0.0,1.0,3.0,1.0,1.0,1,1,78.8036995634054,284.0,13844.970635444386,0,5,2,3,60.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020512864019583698,13844.970635444386,3,2,3_1,3_1_1,3_2_1,3_0_0 -18100,1,92.0,263.0,2,111,191.0,541.0,0.0,0,77,0.0,0.0,263.9952774670027,732.0,0.0,981.1862193584699,71,0,0,0,0,0,0,0,0,0,,2,,2,127150,1,1,0,0,1,,0.0,305.0,11,0.0,3.0,3.0,1.0,1.0,2,2,105.855779626555,191.0,9445.662768808776,0,5,2,3,58.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07749588545731186,9445.662768808776,1,1,1_1,1_0_1,1_2_1,1_0_1 -18101,2,61.0,0.0,2,111,780.0,1200.0,0.0,0,74,0.0,517.5862524097289,1078.0958975092258,2480.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,0,,1,,2,128436,2,1,2,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,358.075524378254,780.0,21383.073763930082,0,5,0,1,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11597958401019848,21383.073763930082,6,3,6,6_1,6_2,6_0_1 -18102,2,73.0,0.0,1,111,238.0,1700.0,0.0,77,72,0.0,0.0,328.95746616307144,1938.0,0.0,3083.2099314406632,70,0,0,0,0,0,0,0,0,0,,1,,1,110014,2,1,2,0,1,,201.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,283.951713930635,238.0,31488.503428354394,5,5,0,1,120.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061546272099260606,20992.33561890293,5,3,5,5_1,5_2,5_1_0 -18103,1,46.0,222.0,2,111,570.0,112.0,0.0,85,63,0.0,0.0,787.8393097182804,682.0,0.0,203.12912489491427,31,2,2,1,2,2,2,2,1,2,3.0,2,,2,117836,2,2,0,1,1,840.0,315.0,353.0,42,2.0,0.0,4.0,4.0,2.5,1,1,96.5527239118157,570.0,20292.49705268034,6,1,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03360848091930203,8116.998821072137,1,1,1_1,1_0_1,1_2_1,1_0_1 -18104,2,26.0,0.0,2,111,408.0,80.0,0.0,43,68,0.0,0.0,563.9270848509797,488.0,0.0,145.09223206779592,20,0,0,0,0,0,0,0,0,0,,2,,2,103212,1,1,0,1,1,552.0,348.0,288.0,43,2.0,0.0,2.0,2.0,1.5,2,2,82.5833433231951,408.0,17891.558187906827,4,1,2,3,55.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027275433188924066,11927.70545860455,2,1,2_0,2_0_0,2_2_0,2_0_1 -18105,2,57.0,0.0,5,111,1340.0,0.0,0.0,54,47,0.0,0.0,1852.113464951747,1540.0,344.06540083803833,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,123944,2,1,2,0,1,,291.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,334.372709382502,1340.0,48439.70824180659,1,1,0,1,84.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03179209900093661,32293.138827871062,8,4,8,8_1,8_2,8_0_0 -18106,1,46.0,332.0,5,111,161.0,0.0,0.0,0,56,0.0,0.0,222.53005063972483,161.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,120472,2,2,0,1,1,700.0,300.0,297.0,12,1.0,5.0,3.0,1.0,1.0,1,1,495.232537212772,161.0,9382.332864296453,0,4,2,3,40.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01715991132788197,9382.332864296453,1,1,1_1,1_0_1,1_2_1,1_0_0 -18107,2,18.0,0.0,2,111,0.0,0.0,3000.0,0,55,0.0,0.0,1532.740004512575,3000.0,0.0,3429.737323957894,70,0,0,0,0,0,0,0,0,0,,1,,2,108320,2,2,2,0,1,,300.0,,22,2.0,1.0,4.0,3.0,2.0,2,2,324.063270666685,0.0,22664.985921971103,0,1,0,1,100.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13236275594117375,11332.492960985552,2,1,2_0,2_1_0,2_2_0,2_0_1 -18108,2,43.0,0.0,8,111,1600.0,0.0,0.0,42,38,0.0,207.03450096389156,2211.478764121489,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,2000.0,6,126963,2,1,1,0,1,,330.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,380.135410588341,1600.0,62891.883450994545,1,1,1,2,106.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028620545310947206,31445.941725497272,8,4,8,8_1,8_2,8_0_0 -18109,2,69.0,0.0,5,111,660.0,1150.0,0.0,77,75,0.0,0.0,912.2349902001142,1810.0,0.0,2085.7008359745664,71,1,2,2,1,2,2,2,2,0,,1,,3,130891,2,1,2,0,1,,330.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,315.381545601276,660.0,28804.261956831568,5,5,0,1,95.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06283792317652903,19202.84130455438,5,3,5,5_1,5_2,5_0_0 -18110,1,93.0,184.0,2,111,150.0,0.0,0.0,0,77,0.0,0.0,207.32613413638958,200.0,86.01635020950958,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,133486,2,2,0,1,1,427.0,155.0,261.0,11,0.0,5.0,2.0,1.0,1.0,2,2,376.586673810983,150.0,32710.491874504754,0,5,2,3,45.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.006114246180317582,32710.491874504754,8,4,8,8_0,8_2,8_0_1 -18111,2,24.0,0.0,2,111,200.0,0.0,0.0,0,48,0.0,0.0,276.4348455151861,260.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,126132,2,1,0,1,1,408.0,160.0,206.0,12,1.0,0.0,1.0,1.0,1.0,1,1,388.966750057647,200.0,20242.27270914981,0,1,2,3,39.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012844407529519949,20242.27270914981,5,3,5,5_0,5_2,5_0_1 -18112,2,70.0,0.0,2,111,320.0,1300.0,0.0,77,78,0.0,0.0,442.2957528242978,1920.0,516.0981012570575,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,2,109013,2,1,2,0,2,,120.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,328.474426512653,320.0,31819.930833146886,5,5,0,1,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06033954033614467,21213.287222097922,5,3,5,5_1,5_2,5_0_1 -18113,2,25.0,0.0,2,111,770.0,2101.0,0.0,0,64,0.0,0.0,1064.2741552334664,2871.0,0.0,3810.48474468049,50,1,2,2,2,1,2,2,2,0,,1,,2,126754,1,2,4,0,2,,312.0,328.0,22,3.0,1.0,5.0,7.0,3.6,4,4,317.784192558501,770.0,64424.262534042915,0,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.044563955986037296,17895.62848167859,4,2,4_0,4_1_0,4_2_0,4_0_1 -18114,2,64.0,0.0,2,111,324.0,840.0,0.0,78,78,0.0,0.0,447.8244497346015,1164.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,0,,1,,2,126128,2,2,2,0,1,,264.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,328.474426512653,324.0,17458.87192580577,5,5,0,1,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06667097421566534,11639.247950537181,2,1,2_0,2_1_0,2_2_0,2_0_1 -18115,2,62.0,0.0,5,111,0.0,0.0,1062.0,0,78,0.0,0.0,542.5899615974516,1062.0,0.0,1214.1270126810946,60,0,0,0,0,0,0,0,0,0,,1,,3,109923,2,1,2,0,1,,330.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,358.075524378254,0.0,18897.658440183186,0,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05619743860656344,18897.658440183186,5,3,5,5_1,5_2,5_0_0 -18116,2,59.0,0.0,5,111,320.0,0.0,0.0,56,78,9409.584725213404,0.0,442.2957528242978,6720.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,105255,2,1,2,0,1,,100.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,389.73467055905,320.0,17380.682103069783,1,5,0,1,120.0,8,6,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3866361492690273,11587.121402046521,2,1,2_0,2_1_0,2_2_0,2_0_0 -18117,2,53.0,0.0,6,112,810.0,0.0,0.0,54,62,0.0,258.79312620486445,1119.5611243365038,1210.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,121629,2,2,2,0,1,,750.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,225.120536701194,810.0,55908.9593144346,1,1,1,2,82.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02164232736286332,22363.58372577384,6,3,6,6_1,6_0,6_0_0 -18118,2,40.0,0.0,1,112,1230.0,0.0,0.0,43,43,1194.8679016144006,207.03450096389156,1700.0742999183947,2230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,129648,2,2,2,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,243.217930040261,1230.0,61313.52052178306,1,1,1,2,100.0,6,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03637044457768072,29196.914534182408,8,4,8,8_1,8_0,8_1_0 -18119,2,32.0,0.0,1,112,0.0,0.0,1800.0,12,52,0.0,310.55175144583734,919.644002707545,2100.0,0.0,2057.8423943747366,50,0,0,0,0,0,0,0,0,2,2.0,1,,1,122344,2,1,1,0,1,,390.0,,43,2.0,0.0,6.0,3.0,1.8,4,4,216.525547432794,0.0,21010.215159751613,1,1,1,2,200.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0999513800326463,11672.341755417563,2,1,2_0,2_1_0,2_0_0,2_1_0 -18120,2,30.0,0.0,8,112,1500.0,0.0,0.0,85,47,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104635,2,2,1,0,1,,400.0,660.0,42,1.0,0.0,5.0,3.0,1.8,2,2,224.709056135753,1500.0,8317.188857992485,6,1,2,3,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18034939756821322,4620.660476662491,1,1,1_0,1_1_0,1_0_0,1_0_0 -18121,2,61.0,0.0,2,112,800.0,2200.0,0.0,75,74,0.0,0.0,1105.7393820607444,3000.0,0.0,3990.0363818643877,71,0,0,0,0,0,0,0,0,0,,1,,2,121601,2,2,1,0,1,,300.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,239.455659716571,800.0,51819.143476455116,5,5,0,1,170.0,6,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05789366243313342,34546.09565097008,9,5,9,9_1,9_0,9_0_1 -18122,2,47.0,0.0,7,112,940.0,850.0,0.0,62,47,0.0,0.0,1299.2437739213747,1790.0,0.0,1541.6049657203316,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,123980,2,1,1,0,1,,540.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,207.114807173081,940.0,52167.42410727615,1,1,1,2,90.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03431260083532352,22681.48874229398,6,3,6,6_1,6_0,6_0_0 -18123,2,74.0,0.0,1,112,1200.0,2300.0,0.0,0,71,0.0,0.0,1658.6090730911167,3500.0,0.0,4171.401671949133,70,0,0,0,0,0,0,0,0,0,,5,,1,133215,2,2,4,0,1,,350.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,215.774025970058,1200.0,24290.72075352011,0,5,0,1,130.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14408794352027593,24290.72075352011,7,4,7,7_1,7_0,7_1_0 -18124,2,62.0,0.0,5,112,900.0,0.0,0.0,0,75,2987.1697540360015,0.0,1243.9568048183376,3260.0,619.317721508469,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,110628,2,2,2,0,1,,600.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,264.137730781828,900.0,32321.167140857004,0,5,0,1,120.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10086269427687382,32321.167140857004,8,4,8,8_1,8_0,8_0_0 -18125,2,83.0,0.0,6,112,578.0,0.0,0.0,78,78,2688.452778632401,0.0,798.8967035388879,2468.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,110240,2,1,3,0,1,,350.0,,41,0.0,5.0,5.0,2.0,1.5,2,1,222.601702192148,578.0,22804.591048027898,5,5,0,1,83.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1082238218963119,15203.060698685265,3,2,3_0,3_1_0,3_0_0,3_0_0 -18126,2,55.0,0.0,6,112,1400.0,0.0,0.0,34,31,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,117448,2,1,1,0,1,,300.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,224.244311632513,1400.0,146073.6593156447,1,1,0,1,140.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009584205712097595,97382.43954376313,10,5,10,10_1,10_0,10_0_0 -18127,2,53.0,0.0,8,112,140.0,1500.0,0.0,0,85,0.0,0.0,193.50439186063028,1640.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,0,,1,1999.0,6,121306,2,2,2,0,1,,150.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,225.976384379933,140.0,8219.660388675125,0,6,0,1,100.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19952162528023146,8219.660388675125,1,1,1_0,1_1_0,1_0_0,1_0_0 -18128,2,72.0,0.0,5,112,300.0,1040.0,0.0,77,74,0.0,0.0,414.65226827277917,1340.0,0.0,1886.1990168813468,50,0,0,0,0,0,0,0,0,0,,1,,3,115146,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,210.999662378316,300.0,41652.399582850616,5,5,0,1,99.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03217101567785096,27768.266388567077,7,4,7,7_1,7_0,7_0_0 -18129,2,72.0,0.0,2,112,482.0,0.0,0.0,77,74,2752.6769283441754,0.0,666.2079776915986,2325.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131392,2,2,2,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,210.999662378316,482.0,49067.83886902353,5,5,0,1,100.0,6,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04738337888094293,32711.89257934902,8,4,8,8_1,8_0,8_0_1 -18130,2,23.0,0.0,2,112,900.0,0.0,0.0,56,46,0.0,931.655254337512,1243.9568048183376,1860.0,103.2196202514115,0.0,70,2,2,1,1,2,2,2,2,2,15.0,1,,2,132076,2,1,1,0,1,,600.0,400.0,43,2.0,0.0,6.0,2.0,1.5,2,2,203.007972756313,900.0,34287.177025770114,4,1,2,3,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.054247685617338254,22858.118017180077,6,3,6,6_1,6_0,6_0_1 -18131,2,41.0,0.0,9,112,1900.0,0.0,0.0,43,42,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,119062,2,1,1,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,222.27112374256,1900.0,58085.382454282866,1,1,1,2,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03271046724183023,38723.58830285524,9,5,9,9_1,9_0,9_0_0 -18132,2,65.0,0.0,2,112,666.0,2200.0,0.0,75,74,0.0,0.0,920.5280355655698,2866.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,0,,1,,2,128288,2,3,2,0,1,,340.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,219.760236187223,666.0,55904.92242684633,5,5,0,1,100.0,6,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05126561089053057,37269.94828456422,9,5,9,9_1,9_0,9_0_1 -18133,2,76.0,0.0,6,112,500.0,1214.0,0.0,0,72,0.0,0.0,691.0871137879653,1714.0,0.0,2201.774621628803,42,0,0,0,0,0,0,0,0,0,,1,,4,130296,2,1,2,0,1,,300.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,239.66595932105,500.0,12760.02860816874,0,5,0,1,95.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13432571764789994,12760.02860816874,2,1,2_0,2_1_0,2_0_0,2_0_0 -18134,2,47.0,0.0,9,112,2000.0,0.0,0.0,33,43,0.0,517.5862524097289,2764.3484551518613,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,114649,2,1,1,0,1,,488.0,,43,2.0,2.0,5.0,3.0,2.0,2,2,225.585416337608,2000.0,150594.49841703413,1,1,0,1,157.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016600872052290182,75297.24920851707,10,5,10,10_1,10_0,10_0_0 -18135,2,82.0,0.0,1,112,537.0,0.0,0.0,0,75,0.0,0.0,742.2275602082747,2053.0,2608.0157383523306,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,110936,2,2,1,0,1,,189.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,195.724584735312,537.0,21625.937764771992,0,5,0,1,140.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.09493229946052448,21625.937764771992,6,3,6,6_1,6_0,6_1_0 -18136,2,58.0,0.0,2,112,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1250.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124679,2,1,3,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,3,2,292.104602335727,1200.0,16437.870980485066,0,6,1,2,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07604391112960991,16437.870980485066,4,2,4_0,4_1_0,4_0_0,4_0_1 -18137,2,65.0,0.0,2,112,1005.84,0.0,0.0,22,22,5914.596112991283,0.0,1390.246125064974,5411.0,766.4056803667304,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,104627,1,3,4,0,2,,380.0,542.0,43,2.0,1.0,4.0,2.0,1.5,1,1,203.007972756313,1005.84,21115.606620656465,1,1,2,3,100.0,6,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2562559578424168,14077.071080437643,3,2,3_0,3_1_0,3_0_0,3_0_1 -18138,1,22.0,406.0,1,112,1300.0,0.0,0.0,0,62,0.0,0.0,1796.8264958487098,1360.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,127882,2,1,0,0,1,,0.0,530.0,22,3.0,1.0,4.0,4.0,2.3,1,1,173.453652094287,1300.0,11981.278686771471,0,1,2,3,80.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11351042201376851,5209.2516029441185,1,1,1_1,1_0_1,1_0_1,1_1_0 -18139,2,45.0,0.0,9,112,1146.0,0.0,0.0,52,62,0.0,248.44140115666985,1583.9716648020164,1432.0,79.13504219274881,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,121699,2,1,1,0,1,,207.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,384.360376011033,1146.0,41329.27863982733,1,1,1,2,122.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03464856022480974,19680.608876108254,5,3,5,5_1,5_0,5_0_0 -18140,2,57.0,0.0,6,112,1600.0,0.0,0.0,77,75,0.0,414.0690019277831,2211.478764121489,2150.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104097,1,2,3,0,1,,400.0,,41,1.0,2.0,5.0,3.0,2.0,2,2,377.195619723968,1600.0,38370.65068317603,6,5,0,1,100.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056032409190879,19185.325341588014,5,3,5,5_1,5_0,5_0_0 -18141,2,46.0,0.0,1,112,300.0,0.0,0.0,0,63,0.0,414.0690019277831,414.65226827277917,916.0,371.5906329050814,0.0,60,2,2,2,2,1,2,2,2,2,10.0,1,,1,110099,2,1,1,0,1,,80.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,299.826555219645,300.0,16571.988185782986,0,1,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05527399547543916,11047.992123855323,2,1,2_0,2_1_0,2_0_0,2_1_0 -18142,2,35.0,0.0,1,112,2100.0,0.0,0.0,43,11,5824.981020370203,0.0,2902.5658779094542,6000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113154,2,1,2,0,1,,200.0,,43,2.0,0.0,9.0,4.0,2.1,1,1,278.8297112632,2100.0,79489.58987358033,1,1,1,2,210.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07548158204794309,37852.18565408587,9,5,9,9_1,9_0,9_1_0 -18143,2,56.0,0.0,6,112,1100.0,0.0,0.0,43,34,0.0,1449.241506747241,1520.3916503335236,2550.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,115972,2,1,2,0,1,,440.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,360.600008596372,1100.0,70815.54310855066,1,1,0,1,152.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03600904389155351,47210.362072367105,10,5,10,10_1,10_0,10_0_0 -18144,2,77.0,0.0,2,112,1200.0,0.0,0.0,0,72,0.0,310.55175144583734,1658.6090730911167,1552.0,89.45700421788997,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,109722,1,1,1,0,1,,100.0,,11,0.0,0.0,7.0,1.0,1.0,4,4,416.622391952765,1200.0,9926.787762354546,0,5,0,1,115.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15634463405026797,9926.787762354546,2,1,2_0,2_1_0,2_0_0,2_0_1 -18145,2,37.0,0.0,1,112,1200.0,0.0,0.0,43,47,0.0,517.5862524097289,1658.6090730911167,1700.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,122163,1,2,2,0,1,,300.0,,43,2.0,0.0,3.0,5.0,2.4,1,1,248.381869848747,1200.0,47474.81633567435,1,1,1,2,120.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03580845869902937,19781.173473197647,5,3,5,5_1,5_0,5_1_0 -18146,2,61.0,0.0,8,112,2000.0,0.0,0.0,77,78,0.0,0.0,2764.3484551518613,2060.0,103.2196202514115,0.0,10,2,2,1,2,1,2,2,2,0,,1,2002.0,6,117114,2,2,1,0,1,,500.0,,41,0.0,2.0,5.0,3.0,2.0,2,2,349.58932369969,2000.0,42164.5167771007,6,5,1,2,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04885624590197542,21082.25838855035,5,3,5,5_1,5_0,5_0_0 -18147,2,78.0,0.0,5,112,900.0,0.0,0.0,75,74,5974.339508072003,0.0,1243.9568048183376,5100.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,132666,1,2,3,0,2,,400.0,,41,0.0,0.0,7.0,2.0,1.5,3,2,355.999015362553,900.0,52803.82981079897,5,5,0,1,90.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09658390344552231,35202.553207199315,9,5,9,9_1,9_0,9_0_0 -18148,2,44.0,0.0,7,112,1000.0,0.0,0.0,56,48,0.0,0.0,1382.1742275759307,2600.0,2752.5232067043066,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,120709,2,1,2,0,1,,550.0,360.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,3,345.025805078236,1000.0,36512.11954292421,1,1,2,3,130.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07120923223707679,14043.122901124698,3,2,3_0,3_1_0,3_0_0,3_0_0 -18149,2,39.0,0.0,1,112,600.0,0.0,0.0,56,52,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,118991,2,1,2,0,1,,290.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,574.532019318439,600.0,38432.75977897683,1,1,0,1,120.0,8,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0171728495116041,25621.83985265122,7,4,7,7_1,7_1,7_1_0 -18150,2,55.0,0.0,1,112,900.0,0.0,0.0,52,38,0.0,1552.7587572291866,1243.9568048183376,2520.0,206.439240502823,0.0,70,2,2,2,2,1,2,2,2,2,20.0,1,,1,102488,2,3,3,0,1,,350.0,,43,2.0,8.0,5.0,2.0,1.5,1,1,549.630277618191,900.0,60506.526075736496,1,1,1,2,100.0,8,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.041648399989873755,40337.684050491,9,5,9,9_1,9_1,9_1_0 -18151,2,39.0,0.0,2,112,2010.0,0.0,0.0,55,63,0.0,0.0,2778.17019742762,2010.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,104001,2,1,1,0,1,,651.0,,43,2.0,0.0,5.0,4.0,2.1,4,2,543.158248199977,2010.0,48819.7692678494,1,1,1,2,110.0,8,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04117184554830945,23247.50917516638,6,3,6,6_1,6_1,6_0_1 -18152,2,54.0,0.0,6,112,675.0,800.0,0.0,0,37,0.0,0.0,932.9676036137531,1535.0,103.2196202514115,1450.922320677959,30,0,0,0,0,0,0,0,0,2,5.0,1,,4,110089,2,1,2,0,1,,350.0,,22,2.0,0.0,7.0,2.0,1.5,4,4,616.28673785184,675.0,80279.50025605282,0,1,0,1,120.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01912069700364466,53519.666837368546,10,5,10,10_1,10_1,10_0_0 -18153,2,37.0,0.0,7,112,1400.0,0.0,0.0,37,65,0.0,258.79312620486445,1935.0439186063027,1710.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,5,106885,2,1,4,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,560.001917513037,1400.0,55174.72428903573,1,1,1,2,90.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030992452106186775,30652.62460501985,8,4,8,8_1,8_1,8_0_0 -18154,2,66.0,0.0,6,112,2132.0,0.0,0.0,74,78,0.0,0.0,2946.795453191884,2192.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,125438,2,1,2,0,1,,790.0,,41,0.0,1.0,7.0,5.0,2.8,2,2,581.375602209929,2132.0,61238.56939226957,5,5,0,1,200.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03579443513709362,21870.91764009628,6,3,6,6_1,6_1,6_0_0 -18156,2,40.0,0.0,2,112,750.0,0.0,0.0,56,63,1045.5094139126004,621.1035028916747,1036.630670681948,2110.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,2,22.0,1,,2,104710,2,2,1,0,1,,170.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,605.611366306301,750.0,30852.282733050677,1,1,1,2,100.0,8,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06839040139288141,17140.157073917042,4,2,4_0,4_1_0,4_1_0,4_0_1 -18157,2,39.0,0.0,5,112,725.0,0.0,0.0,85,62,0.0,0.0,1002.0763149925497,2425.0,2924.555907123326,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,109138,2,1,3,0,1,,470.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,561.029933376762,725.0,51472.010189181376,6,1,1,2,93.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04711298414589018,21446.67091215891,6,3,6,6_1,6_1,6_0_0 -18158,2,76.0,0.0,2,112,535.0,0.0,0.0,77,78,2688.452778632401,0.0,739.4632117531229,2335.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,111843,2,2,3,0,2,,310.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,586.915912414492,535.0,17940.33984376434,5,5,0,1,90.0,8,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1301536102623827,11960.22656250956,2,1,2_0,2_1_0,2_1_0,2_0_1 -18159,2,42.0,0.0,5,112,3259.0,0.0,0.0,75,54,0.0,310.55175144583734,4504.505807669958,3679.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,2,90.0,1,,3,124486,2,1,2,0,1,,550.0,,42,1.0,2.0,6.0,3.0,1.8,1,1,590.309240003905,3259.0,54660.313379631305,5,1,0,1,110.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06730660277134357,30366.840766461835,8,4,8,8_1,8_1,8_0_0 -18160,2,60.0,0.0,8,112,3000.0,0.0,0.0,54,22,0.0,621.1035028916747,4146.522682727792,3600.0,0.0,0.0,44,2,2,2,1,2,2,2,2,2,7.0,1,2001.0,6,108857,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,606.897443931013,3000.0,111764.04656019874,1,1,0,1,150.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03221071633318999,62091.136977888185,10,5,10,10_1,10_1,10_0_0 -18161,2,47.0,0.0,9,112,1600.0,120.0,0.0,45,33,0.0,0.0,2211.478764121489,1720.0,0.0,217.63834810169388,42,0,0,0,0,0,0,0,0,0,,1,2009.0,6,116189,2,1,1,0,1,,530.0,,43,2.0,0.0,8.0,4.0,2.5,2,2,587.15029939439,1600.0,61434.33289556173,1,1,1,2,196.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0279973740892409,24573.73315822469,7,4,7,7_1,7_1,7_0_0 -18162,2,49.0,0.0,2,112,1695.0,0.0,0.0,52,53,0.0,0.0,2342.7853157412023,1815.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,104591,2,1,1,0,1,,591.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,540.518924681498,1695.0,46127.05441683927,1,1,0,1,90.0,8,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039347840935132654,18450.82176673571,4,2,4_0,4_1_0,4_1_0,4_0_1 -18163,2,45.0,0.0,7,112,944.0,400.0,0.0,53,33,0.0,724.6207533736205,1304.7724708316784,2044.0,0.0,725.4611603389795,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,123522,2,1,2,0,1,,460.0,,43,2.0,2.0,6.0,4.0,2.3,1,1,657.82288368837,944.0,86895.80995817513,1,1,1,2,120.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023522423014226145,37780.78693833701,9,5,9,9_1,9_1,9_0_0 -18164,1,66.0,80.0,7,112,540.0,600.0,0.0,77,78,0.0,0.0,746.3740828910024,1200.0,103.2196202514115,1088.1917405084694,70,0,0,0,0,0,0,0,0,0,,1,,5,112860,1,1,2,0,1,,270.0,304.0,41,0.0,2.0,2.0,2.0,1.5,1,1,530.776751845603,540.0,14944.77935466258,6,5,2,3,49.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08029559831712171,9963.18623644172,2,1,2_1,2_1_1,2_1_1,2_0_0 -18165,2,71.0,0.0,1,112,400.0,0.0,0.0,0,78,0.0,0.0,552.8696910303722,1496.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118670,1,1,4,0,2,,150.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,603.274479687875,400.0,12552.700686131437,0,5,0,1,80.0,8,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11917754094565652,12552.700686131437,2,1,2_0,2_1_0,2_1_0,2_1_0 -18166,2,69.0,0.0,2,112,546.0,762.0,0.0,77,78,0.0,0.0,754.6671282564581,1308.0,0.0,1382.003510445756,33,0,0,0,0,0,0,0,0,0,,1,,2,127950,2,1,2,0,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,586.915912414492,546.0,29488.68603140207,5,5,0,1,80.0,8,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0443559946552766,19659.124020934712,5,3,5,5_1,5_1,5_0_1 -18167,2,60.0,0.0,2,112,480.0,1350.0,0.0,77,75,0.0,0.0,663.4436292364467,1830.0,0.0,2448.431416144056,60,0,0,0,0,0,0,0,0,0,,1,,2,100229,2,1,2,0,1,,450.0,,41,0.0,2.0,6.0,3.0,2.0,1,1,609.286166286964,480.0,39077.4801678961,5,5,0,1,100.0,8,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046830041039939596,19538.74008394805,5,3,5,5_1,5_1,5_0_1 -18168,1,43.0,121.0,7,112,900.0,0.0,0.0,0,55,0.0,0.0,1243.9568048183376,950.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,5,111226,2,2,0,0,1,,180.0,460.0,32,1.0,0.0,2.0,2.0,1.3,2,2,747.016623039022,900.0,17004.803258966786,0,1,2,3,60.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05586656814150769,13080.617891512911,2,1,2_1,2_0_1,2_1_1,2_0_0 -18169,2,70.0,0.0,6,112,1000.0,0.0,0.0,0,78,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,123352,2,2,2,0,2,,150.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,772.468999376972,1000.0,16246.499051652361,0,5,0,1,28.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06524482577015213,16246.499051652361,4,2,4_0,4_1_0,4_1_0,4_0_0 -18170,2,30.0,0.0,1,112,700.0,0.0,0.0,45,47,1941.6603401234008,82.81380038555662,967.5219593031513,2140.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,128640,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,514.930926839802,700.0,55419.36256756923,1,1,1,2,110.0,8,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038614662833605075,36946.24171171282,9,5,9,9_1,9_1,9_1_0 -18171,2,79.0,0.0,1,112,500.0,590.0,0.0,0,72,0.0,0.0,691.0871137879653,1090.0,0.0,1070.0552114999948,43,0,0,0,0,0,0,0,0,0,,1,,1,116252,2,1,1,0,2,,300.0,,11,0.0,3.0,8.0,1.0,1.0,2,2,637.272068019012,500.0,15385.859341870251,0,5,0,1,125.0,8,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0708442717290241,15385.859341870251,3,2,3_0,3_1_0,3_1_0,3_1_0 -18172,2,32.0,0.0,8,112,500.0,1100.0,0.0,62,34,0.0,0.0,691.0871137879653,1600.0,0.0,1995.0181909321939,50,2,2,2,2,1,2,2,2,2,20.0,1,2003.0,6,123443,1,2,2,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,577.810243498702,500.0,60821.87597991577,1,1,0,1,80.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.026306324397628613,28962.798085674174,8,4,8,8_1,8_1,8_0_0 -18173,2,50.0,0.0,5,120,800.0,0.0,0.0,43,23,0.0,724.6207533736205,1105.7393820607444,1600.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,3,111541,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,347.511016092415,800.0,157233.48758448818,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010175949313216453,104822.32505632546,10,5,10,10_1,10_0,10_0_0 -18174,2,74.0,0.0,1,120,696.0,0.0,0.0,0,77,0.0,621.1035028916747,961.9932623928477,1356.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,111896,2,1,3,0,1,,295.0,,21,1.0,3.0,4.0,2.0,1.5,2,2,274.122200386741,696.0,75309.25554474782,0,5,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018005754939302007,50206.17036316521,10,5,10,10_1,10_0,10_1_0 -18176,2,34.0,0.0,9,120,2000.0,0.0,0.0,56,62,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,123996,2,1,1,0,1,,560.0,,43,2.0,0.0,6.0,3.0,1.8,3,3,344.21499208865,2000.0,45185.70691999644,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044261784009290824,25103.170511109132,7,4,7,7_1,7_0,7_0_0 -18177,2,40.0,0.0,1,120,600.0,0.0,0.0,22,62,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,111578,2,1,3,0,1,,150.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,295.838022816425,600.0,43071.9532287979,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015323196431192353,21535.97661439895,6,3,6,6_1,6_0,6_1_0 -18178,2,47.0,0.0,7,120,1460.0,0.0,0.0,56,37,1493.5848770180007,0.0,2017.9743722608587,2580.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,,5,109458,2,1,1,0,1,,220.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,351.515778823869,1460.0,27085.053260138728,1,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09525548926267038,13542.526630069364,3,2,3_0,3_1_0,3_0_0,3_0_0 -18180,2,50.0,0.0,1,120,860.0,0.0,0.0,56,11,0.0,0.0,1188.6698357153002,1010.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,124016,2,2,4,0,1,,320.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,265.643742039619,860.0,36032.233256619045,1,1,1,2,90.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02803045797374952,14412.893302647619,3,2,3_0,3_1_0,3_0_0,3_1_0 -18181,1,54.0,166.0,5,120,500.0,0.0,0.0,85,64,0.0,1086.9311300604306,691.0871137879653,3050.0,2580.4905062852877,0.0,71,2,2,2,1,1,2,2,2,2,20.0,1,,3,104580,2,3,1,0,1,,450.0,560.0,42,1.0,3.0,5.0,3.0,2.0,1,1,397.403031050637,500.0,20112.860612693006,6,1,2,3,80.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.15164426675712048,10056.430306346503,2,1,2_1,2_1_1,2_0_1,2_0_0 -18182,2,37.0,0.0,1,120,1500.0,0.0,0.0,38,38,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,3,75.0,5,,1,111730,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,3.0,1.8,3,3,321.915702042405,1500.0,104887.63495090573,1,1,0,1,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01487305916212318,58270.908306058736,10,5,10,10_1,10_0,10_1_0 -18183,2,34.0,0.0,2,120,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1719.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,121743,2,1,4,0,1,,351.0,667.0,42,1.0,0.0,7.0,3.0,1.8,3,2,376.729632875881,0.0,28693.550321704828,6,4,2,3,160.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059908933566150124,15940.861289836015,3,2,3_0,3_1_0,3_0_0,3_0_1 -18184,2,64.0,0.0,5,120,2000.0,0.0,0.0,71,72,0.0,0.0,2764.3484551518613,2060.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110094,1,2,5,0,2,,460.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,343.074864127456,2000.0,88832.51661633284,5,5,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023189706635208016,59221.677744221895,10,5,10,10_1,10_0,10_0_0 -18185,1,83.0,352.0,9,120,0.0,0.0,0.0,86,78,0.0,0.0,0.0,887.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108496,2,1,1,0,1,,287.0,363.0,41,0.0,4.0,3.0,3.0,2.0,1,1,229.664075892031,0.0,22714.49880694036,6,5,2,3,68.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03904994812075622,11357.24940347018,2,1,2_1,2_1_1,2_0_1,2_0_0 -18186,2,43.0,0.0,1,120,400.0,0.0,0.0,0,45,0.0,1035.1725048194578,552.8696910303722,1460.0,103.2196202514115,0.0,71,2,2,2,2,1,2,2,2,3,30.0,1,,1,130705,2,1,4,0,1,,500.0,,12,1.0,1.0,1.0,1.0,1.0,2,2,351.626370833829,400.0,25856.59310812846,0,1,1,2,40.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.05646528890695287,25856.59310812846,7,4,7,7_1,7_0,7_1_0 -18187,2,44.0,0.0,7,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1376.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,,5,108364,1,1,0,0,1,,388.0,497.0,22,1.0,6.0,3.0,2.0,1.5,1,1,399.293753191699,0.0,41584.227905956795,0,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0330894685146455,27722.818603971198,7,4,7,7_0,7_3,7_0_0 -18188,2,54.0,0.0,2,111,415.0,1714.0,0.0,0,31,0.0,0.0,573.6023044440112,2129.0,0.0,3108.6010720525273,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,132416,2,1,2,0,2,,170.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,338.858287507514,415.0,49923.79567741295,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042644994658593734,49923.79567741295,10,5,10,10_1,10_3,10_0_1 -18189,2,34.0,0.0,2,111,600.0,1200.0,0.0,38,23,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,1,,2,127805,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,313.645900062185,600.0,136701.69844632526,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013167356517569197,75945.38802573625,10,5,10,10_1,10_3,10_0_1 -18190,2,53.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,126303,2,3,4,0,1,,238.0,,32,1.0,2.0,7.0,2.0,1.5,1,1,276.773098684274,0.0,67560.96754165109,0,1,0,1,145.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02012996630282959,45040.645027767394,10,5,10,10_1,10_3,10_1_0 -18191,2,48.0,0.0,2,111,727.0,1105.0,0.0,0,46,0.0,0.0,1004.8406634477016,1832.0,0.0,2004.086455436431,31,2,2,2,2,1,2,2,2,2,20.0,1,,2,112300,2,2,3,0,1,,287.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,338.858287507514,727.0,29683.287151813627,0,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.061718231900339454,29683.287151813627,8,4,8,8_1,8_3,8_0_1 -18192,2,47.0,0.0,2,111,0.0,0.0,1250.0,21,46,0.0,0.0,638.6416685469063,1250.0,0.0,1429.0572183157892,60,2,2,2,2,1,2,2,2,0,,1,,2,110027,2,3,1,0,2,,324.0,,43,2.0,0.0,4.0,4.0,2.3,4,3,274.249241428413,0.0,38281.70788031419,1,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03265267066736054,16644.220817527912,4,2,4_0,4_1_0,4_3_0,4_0_1 -18193,2,62.0,0.0,2,111,725.0,880.0,0.0,74,34,0.0,0.0,1002.0763149925497,1605.0,0.0,1596.014552745755,70,0,0,0,0,0,0,0,0,2,45.0,1,,2,104526,2,1,2,0,2,,420.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,348.97187152161,725.0,236029.03068277525,5,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006800010978976276,157352.68712185018,10,5,10,10_1,10_3,10_0_1 -18194,2,32.0,0.0,2,111,517.0,1464.0,0.0,46,63,0.0,0.0,714.5840756567561,1981.0,0.0,2655.1878468406653,43,0,0,0,0,0,0,0,0,2,50.0,1,,2,126874,2,2,2,0,1,,348.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,250.05624518497,517.0,54644.84389012563,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03625227668292357,30358.24660562535,8,4,8,8_1,8_3,8_0_1 -18195,2,51.0,0.0,2,111,0.0,0.0,1570.0,85,52,0.0,0.0,802.1339356949144,1570.0,0.0,1794.8958662046314,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,113608,2,2,0,0,1,,0.0,361.0,42,1.0,3.0,4.0,2.0,1.5,2,2,402.377081257118,0.0,23365.099644442435,7,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06719423515805277,15576.733096294956,3,2,3_0,3_0_0,3_3_0,3_0_1 -18196,1,52.0,200.0,1,111,365.0,783.0,0.0,0,85,0.0,0.0,504.49359306521467,1148.0,0.0,1420.0902213635525,50,0,0,0,0,0,0,0,0,0,,1,,1,126645,2,3,3,0,1,,288.0,314.0,31,0.0,2.0,6.0,2.0,1.5,3,2,292.530258793794,365.0,22958.166197114173,0,5,2,3,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05000399379216546,15305.44413140945,3,2,3_1,3_1_1,3_3_1,3_1_0 -18197,2,85.0,0.0,5,111,258.0,0.0,0.0,75,77,0.0,0.0,356.6009507145901,258.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,121831,2,1,0,1,2,636.0,0.0,679.0,41,0.0,7.0,3.0,2.0,1.5,4,2,247.024319101185,258.0,46118.63058881921,5,5,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005594268448693885,30745.753725879473,8,4,8,8_0,8_3,8_0_0 -18198,2,31.0,0.0,6,111,0.0,0.0,0.0,54,54,0.0,0.0,0.0,613.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,4,124750,2,1,0,1,1,663.0,0.0,480.0,43,2.0,0.0,2.0,2.0,1.5,2,2,339.504137415019,0.0,10179.048708566877,1,1,2,3,42.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0602217375661134,6786.032472377919,1,1,1_0,1_0_0,1_3_0,1_0_0 -18199,2,34.0,0.0,9,111,410.0,880.0,0.0,46,54,0.0,0.0,566.6914333061316,1290.0,0.0,1596.014552745755,50,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,124893,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,279.688166128789,410.0,45580.13422720101,4,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028301803447304513,25322.296792889447,7,4,7,7_1,7_3,7_0_0 -18200,1,88.0,125.0,6,111,263.0,996.0,0.0,0,78,0.0,0.0,363.5118218524697,1259.0,0.0,1806.398289244059,50,0,0,0,0,0,0,0,0,0,,1,,4,127504,2,1,2,0,1,,128.0,422.0,11,0.0,7.0,3.0,1.0,1.0,3,3,291.269690756922,263.0,14547.218290278373,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0865457556817832,14547.218290278373,3,2,3_1,3_1_1,3_3_1,3_0_0 -18201,2,64.0,0.0,2,111,480.0,600.0,0.0,0,75,0.0,0.0,663.4436292364467,1080.0,0.0,1088.1917405084694,41,0,0,0,0,0,0,0,0,0,,1,,2,122398,2,2,2,0,1,,237.0,,21,1.0,3.0,6.0,3.0,2.0,2,1,348.756134987764,480.0,52473.64012737015,0,5,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020581762526451334,26236.820063685074,7,4,7,7_1,7_3,7_0_1 -18202,2,44.0,0.0,1,111,1000.0,1000.0,0.0,54,34,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,126017,2,1,1,0,1,,800.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,247.296997103177,1000.0,78508.24631759223,1,1,1,2,165.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02547503088923077,37384.87919885344,9,5,9,9_1,9_3,9_1_0 -18203,2,70.0,0.0,2,111,331.0,582.0,0.0,75,74,0.0,0.0,457.499669327633,913.0,0.0,1055.5459882932153,43,0,0,0,0,0,0,0,0,0,,1,,2,128765,2,2,1,0,1,,114.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,300.988869248187,331.0,107532.86733897284,5,5,0,1,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00849042736972665,71688.5782259819,10,5,10,10_1,10_3,10_0_1 -18204,2,81.0,0.0,6,111,0.0,0.0,2200.0,72,72,0.0,103.51725048194578,1124.0093366425551,2300.0,0.0,2515.1407042357896,10,0,0,0,0,0,0,0,0,0,,1,,4,129951,2,1,2,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,317.64040445224,0.0,38241.039487412934,5,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06014480858338191,25494.026324941955,7,4,7,7_1,7_3,7_0_0 -18205,1,27.0,193.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,944.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,8.0,3,,1,107968,1,3,0,0,1,,0.0,395.0,12,1.0,0.0,1.0,1.0,1.0,1,1,435.120676230773,0.0,15205.928065732787,0,1,2,3,25.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.062081051279424676,15205.928065732787,3,2,3_1,3_0_1,3_3_1,3_1_0 -18206,2,56.0,0.0,5,111,1563.0,0.0,0.0,0,52,0.0,0.0,2160.3383177011797,1563.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,101216,2,3,3,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,327.597068584063,1563.0,27892.86780433865,0,1,1,2,125.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05603583005390647,27892.86780433865,7,4,7,7_1,7_3,7_0_0 -18207,2,62.0,0.0,2,111,284.0,1265.0,0.0,77,78,0.0,0.0,392.5374806315643,1549.0,0.0,2294.2709195720226,10,0,0,0,0,0,0,0,0,0,,1,,2,108937,2,2,2,0,1,,146.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,300.988869248187,284.0,29841.614995336236,5,5,0,1,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05190737834537721,19894.409996890823,5,3,5,5_1,5_3,5_0_1 -18208,2,30.0,0.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,918.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,117063,2,1,0,1,1,594.0,0.0,358.0,12,1.0,0.0,3.0,1.0,1.0,1,1,517.781725321749,0.0,13642.663108272247,0,4,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06728891512708904,13642.663108272247,3,2,3_0,3_0_0,3_3_0,3_0_1 -18209,2,65.0,0.0,1,111,800.0,1070.0,0.0,77,74,0.0,0.0,1105.7393820607444,1870.0,0.0,1940.6086039067702,71,0,0,0,0,0,0,0,0,0,,1,,1,113889,2,1,1,0,1,,450.0,,41,1.0,1.0,8.0,3.0,2.0,1,1,257.874329696223,800.0,65631.84581983244,5,5,0,1,160.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028492265860286515,32815.92290991622,8,4,8,8_1,8_3,8_1_0 -18210,2,76.0,0.0,2,111,509.0,1207.0,0.0,77,77,0.0,0.0,703.5266818361487,1716.0,0.0,2189.079051322871,50,0,0,0,0,0,0,0,0,0,,1,,2,105292,2,2,2,0,1,,276.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,289.4965161506,509.0,38558.42787479057,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04450388915160926,25705.618583193715,7,4,7,7_1,7_3,7_0_1 -18211,2,25.0,0.0,2,111,900.0,1000.0,0.0,43,46,0.0,0.0,1243.9568048183376,1900.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,101364,2,1,2,0,2,,384.0,830.0,43,2.0,0.0,4.0,2.0,1.5,2,2,329.786630688836,900.0,42026.435919964475,1,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04520963908570256,28017.623946642983,7,4,7,7_1,7_3,7_0_1 -18212,2,75.0,0.0,2,111,340.0,1630.0,0.0,74,74,0.0,0.0,469.9392373758164,1970.0,0.0,2956.254228381342,20,0,0,0,0,0,0,0,0,0,,1,,2,103185,2,2,2,0,1,,360.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,317.64040445224,340.0,76569.73869881878,5,5,0,1,129.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025728179741462152,51046.492465879186,10,5,10,10_1,10_3,10_0_1 -18214,2,73.0,0.0,2,111,451.0,1095.0,0.0,77,78,0.0,0.0,623.3605766367447,1546.0,0.0,1985.9499264279566,10,0,0,0,0,0,0,0,0,0,,1,,2,121440,2,2,2,0,1,,240.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,211.996598230873,451.0,26532.171326140982,6,5,0,1,92.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058268883499813455,17688.114217427323,4,2,4_0,4_1_0,4_2_0,4_0_1 -18215,2,63.0,0.0,1,111,370.0,976.0,0.0,0,78,0.0,0.0,511.40446420309434,1396.0,86.01635020950958,1770.1252312271101,12,1,2,2,1,1,2,2,2,0,,1,,1,124189,2,1,3,0,1,,156.0,380.0,11,0.0,3.0,3.0,1.0,1.0,1,1,181.599328021223,370.0,15592.266541441712,0,5,2,3,60.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08953156337403922,15592.266541441712,3,2,3_0,3_1_0,3_2_0,3_1_0 -18216,2,53.0,0.0,1,111,91.0,818.0,0.0,77,62,0.0,0.0,125.77785470940968,909.0,0.0,1483.5680728932132,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,104022,1,2,5,0,1,,622.0,555.0,42,3.0,3.0,6.0,4.0,2.5,1,1,159.040131070063,91.0,26708.611758303956,6,1,2,3,163.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034033966580737145,10683.444703321582,2,1,2_0,2_1_0,2_2_0,2_1_0 -18217,2,42.0,0.0,1,111,912.0,1844.0,0.0,43,43,0.0,0.0,1260.5428955492487,2756.0,0.0,3344.3759491626956,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,131167,2,1,3,0,1,,544.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,180.806605011565,912.0,60724.1963635592,1,1,1,2,95.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04538553270428928,33735.66464642178,9,5,9,9_1,9_2,9_1_0 -18218,2,70.0,0.0,2,111,490.0,1611.0,0.0,75,34,0.0,0.0,677.265371512206,2101.0,0.0,2921.79482326524,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,130712,2,2,3,0,2,,191.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,224.42144930062,490.0,109258.38455135474,5,5,0,1,180.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01922964547414177,72838.92303423649,10,5,10,10_1,10_2,10_0_1 -18219,1,46.0,270.0,7,111,276.0,378.0,0.0,0,68,0.0,0.0,381.48008681095683,1014.0,619.317721508469,685.5607965203357,31,2,2,2,1,1,2,2,2,0,,1,,5,120132,1,3,4,0,1,,408.0,275.0,12,1.0,2.0,2.0,1.0,1.0,1,1,248.637024152061,276.0,6060.0,0,4,2,3,25.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.16732673267326734,6060.0,1,1,1_1,1_1_1,1_2_1,1_0_0 -18220,2,54.0,0.0,1,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,2821.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111122,2,1,3,0,1,,269.0,,42,2.0,0.0,6.0,4.0,2.5,1,1,245.822888609229,0.0,17067.23240934691,6,4,0,1,120.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16528748963745712,6826.892963738765,1,1,1_0,1_1_0,1_2_0,1_1_0 -18221,2,43.0,0.0,1,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,788.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,1,109151,2,1,1,0,1,,165.0,,42,1.0,0.0,3.0,4.0,2.3,1,1,164.194918563737,0.0,37511.40602930873,6,1,0,1,100.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02100694384487516,16309.306969264668,4,2,4_0,4_1_0,4_2_0,4_1_0 -18222,2,45.0,0.0,2,111,3000.0,110.0,0.0,34,31,0.0,0.0,4146.522682727792,3110.0,0.0,199.50181909321938,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,100722,2,1,1,0,1,,600.0,,43,2.0,0.0,9.0,4.0,2.3,1,1,212.276568693113,3000.0,106297.75998439567,1,1,0,1,320.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029257436849624514,46216.41738451986,10,5,10,10_1,10_2,10_0_1 -18223,2,40.0,0.0,1,111,1500.0,0.0,0.0,55,62,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,100096,2,1,2,0,1,,420.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,173.948400067732,1500.0,40200.11484294223,1,1,1,2,110.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03731332623949826,22333.397134967905,6,3,6,6_1,6_2,6_1_0 -18224,2,79.0,0.0,1,111,664.0,743.0,0.0,0,77,0.0,0.0,917.7636871104179,1407.0,0.0,1347.5441053296545,60,0,0,0,0,0,0,0,0,0,,1,,1,110541,2,1,1,0,1,,160.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,211.910799222456,664.0,21834.532797387186,0,5,0,1,70.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06443920797647512,21834.532797387186,6,3,6,6_1,6_2,6_1_0 -18225,2,48.0,0.0,1,111,710.0,1699.0,0.0,56,62,0.0,0.0,981.3437015789107,2409.0,0.0,3081.3962785398157,44,0,0,0,0,0,0,0,0,0,,1,,1,109842,2,1,1,0,1,,577.0,,43,2.0,3.0,7.0,3.0,2.0,2,2,221.421070066923,710.0,24093.889875142693,1,1,1,2,150.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09998385534605309,12046.944937571347,2,1,2_0,2_1_0,2_2_0,2_1_0 -18226,1,85.0,361.0,6,111,463.0,8000.0,0.0,0,78,0.0,0.0,639.9466673676559,8463.0,0.0,14509.22320677959,33,0,0,0,0,0,0,0,0,0,,1,,4,129650,2,2,5,0,1,,162.0,420.0,21,0.0,4.0,3.0,2.0,1.5,1,1,186.041194821457,463.0,27805.944006007572,0,5,2,3,60.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.30435938438815596,18537.29600400505,4,2,4_1,4_1_1,4_2_1,4_0_0 -18228,2,54.0,0.0,1,111,330.0,900.0,0.0,52,38,0.0,310.55175144583734,456.1174951000571,1530.0,0.0,1632.287610762704,42,0,0,0,0,0,0,0,0,2,45.0,1,,1,133389,2,1,1,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,183.261747510204,330.0,71067.89758944567,1,1,1,2,220.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02152870778362833,47378.59839296378,10,5,10,10_1,10_2,10_1_0 -18229,2,34.0,0.0,9,111,558.0,0.0,0.0,56,47,0.0,414.0690019277831,771.2532189873692,958.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,111592,1,2,4,0,1,,286.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,204.374822726668,558.0,49261.7771815067,1,1,1,2,75.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019447126246993005,32841.18478767113,8,4,8,8_1,8_2,8_0_0 -18230,1,40.0,270.0,1,111,168.0,240.0,0.0,0,52,0.0,0.0,232.20527023275633,408.0,0.0,435.27669620338776,43,0,0,0,0,0,0,0,0,0,,2,,1,120544,2,1,0,0,1,,157.0,272.0,12,1.0,0.0,2.0,1.0,1.0,2,2,310.340721630694,168.0,6491.253536299808,0,4,2,3,50.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06285380746852959,6491.253536299808,1,1,1_1,1_0_1,1_2_1,1_1_0 -18231,1,36.0,392.0,1,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,5482.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,125078,2,2,5,0,1,,224.0,445.0,42,1.0,1.0,4.0,5.0,2.4,2,2,199.190138331766,0.0,26568.754888495543,6,4,2,3,79.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2063325896530343,11070.314536873144,2,1,2_1,2_1_1,2_2_1,2_1_0 -18232,2,37.0,0.0,1,111,420.0,3000.0,0.0,46,62,0.0,724.6207533736205,580.5131755818909,4120.0,0.0,5440.958702542347,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,127638,2,1,2,0,1,,648.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,173.363167006596,420.0,43050.36299834588,1,1,1,2,120.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09570186435264906,20500.17285635518,5,3,5,5_1,5_2,5_1_0 -18233,2,58.0,0.0,9,120,715.0,863.0,0.0,47,56,0.0,279.4965763012536,988.2545727167903,1848.0,0.0,1565.1824534313484,20,1,2,2,2,2,2,2,1,0,,1,2005.0,6,113378,2,1,1,0,1,,568.0,950.0,43,2.0,4.0,6.0,6.0,3.3,1,1,310.888911157225,715.0,14798.94497683024,1,1,2,3,150.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.12487376653493172,4484.528780857649,1,1,1_0,1_1_0,1_0_0,1_0_0 -18234,1,42.0,452.0,1,120,380.0,1189.0,0.0,85,68,0.0,0.0,525.2262064788536,1569.0,0.0,2156.4332991076167,30,0,0,0,0,0,0,0,0,0,,1,,1,129384,1,1,2,0,1,,483.0,416.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,1,1,194.992866733039,380.0,15962.557501176585,6,4,2,3,98.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0982925198474211,6139.445192760226,1,1,1_1,1_1_1,1_0_1,1_1_0 -18235,2,33.0,0.0,1,120,750.0,1200.0,0.0,54,63,0.0,165.62760077111324,1036.630670681948,2110.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,1,2.0,1,,1,113490,2,1,2,0,2,,800.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,217.763859663427,750.0,46650.28299467378,1,1,1,2,180.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045230165061183145,19437.617914447408,5,3,5,5_1,5_0,5_1_0 -18236,2,65.0,0.0,1,120,500.0,1700.0,0.0,85,75,0.0,0.0,691.0871137879653,2200.0,0.0,3083.2099314406632,10,2,2,1,2,1,2,2,2,0,,1,,1,103818,1,1,2,0,1,,550.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,213.918768517883,500.0,26032.320123319398,6,5,0,1,95.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08451033137185764,17354.88008221293,4,2,4_0,4_1_0,4_0_0,4_1_0 -18237,2,50.0,0.0,8,120,1466.0,0.0,0.0,52,62,0.0,0.0,2026.2674176263142,1538.0,123.8635443016938,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,2002.0,6,113813,1,1,1,0,1,,446.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,275.153314173112,1466.0,41425.59407312081,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03712680613065579,14794.855026114576,3,2,3_0,3_1_0,3_0_0,3_0_0 -18238,2,39.0,0.0,1,120,808.0,1919.0,0.0,65,65,0.0,0.0,1116.796775881352,2727.0,0.0,3480.3999167262546,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,101263,1,2,1,0,1,,360.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,263.243093797647,808.0,42920.59415697632,1,1,0,1,250.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06353593312400016,20438.378169988726,5,3,5,5_1,5_0,5_1_0 -18239,0,61.0,0.0,1,120,0.0,0.0,2000.0,54,77,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,42,0,0,0,0,0,0,0,0,0,,1,,1,133542,2,2,2,1,1,,500.0,,42,3.0,1.0,6.0,5.0,3.0,2,2,219.454664564412,0.0,28537.96862902361,4,5,0,1,123.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07008207297438701,9512.656209674537,1,1,1_0,1_1_0,1_0_0,1_1_0 -18240,2,59.0,0.0,1,120,0.0,0.0,1500.0,34,34,0.0,20.703450096389155,766.3700022562875,1520.0,0.0,1714.868661978947,42,0,0,0,0,0,0,0,0,2,17.0,1,,1,118463,2,2,1,0,1,,360.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,273.476437770966,0.0,86600.08015409573,1,1,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01755194680299741,57733.386769397155,10,5,10,10_1,10_0,10_1_0 -18241,2,71.0,0.0,5,120,470.0,1700.0,0.0,75,75,0.0,0.0,649.6218869606873,2170.0,0.0,3083.2099314406632,70,0,0,0,0,0,0,0,0,0,,1,,3,112724,1,1,2,0,1,,380.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,310.842811121598,470.0,57645.326870743775,5,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037643988121807685,38430.21791382918,9,5,9,9_1,9_0,9_0_0 -18242,2,39.0,0.0,1,120,1000.0,700.0,0.0,85,56,0.0,207.03450096389156,1382.1742275759307,1900.0,0.0,1269.5570305932142,33,0,0,0,0,0,0,0,0,0,,1,,1,116268,2,1,2,0,1,,650.0,,42,2.0,0.0,4.0,4.0,2.5,1,1,238.247979160958,1000.0,31208.18365594431,7,1,0,1,100.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06088146689171709,12483.273462377725,2,1,2_0,2_1_0,2_0_0,2_1_0 -18243,2,46.0,0.0,7,120,1700.0,2400.0,0.0,56,23,0.0,207.03450096389156,2349.696186879082,4300.0,0.0,4352.7669620338775,50,1,2,2,1,1,2,2,2,0,,1,,5,124911,1,2,3,0,1,,1200.0,,43,2.0,0.0,9.0,6.0,3.0999999999999996,3,3,307.414601864553,1700.0,66330.41759434078,1,1,0,1,200.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06482697012851116,21396.908901400253,6,3,6,6_1,6_0,6_0_0 -18244,2,73.0,0.0,1,120,440.0,1240.0,0.0,0,86,0.0,0.0,608.1566601334094,1680.0,0.0,2248.9295970508365,50,0,0,0,0,0,0,0,0,0,,1,,1,122334,2,1,1,0,1,,290.0,,21,0.0,5.0,7.0,2.0,1.5,2,2,216.625337526907,440.0,33915.01054381771,0,5,0,1,174.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04953558831507553,22610.007029211807,6,3,6,6_1,6_0,6_1_0 -18245,2,56.0,0.0,1,120,600.0,1200.0,0.0,22,22,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,1,132409,2,1,2,0,1,,150.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,214.677824645342,600.0,43303.23942869724,1,1,0,1,156.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04156732899772695,28868.82628579816,8,4,8,8_1,8_0,8_1_0 -18246,2,36.0,0.0,9,120,653.0,1160.0,0.0,52,62,0.0,41.40690019277831,902.5597706070827,1853.0,0.0,2103.8373649830405,10,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,108033,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,270.883220946972,653.0,46689.59325072494,1,1,1,2,162.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03968764495439739,25938.66291706941,7,4,7,7_1,7_0,7_0_0 -18247,1,55.0,90.0,2,120,374.0,450.0,0.0,85,65,0.0,0.0,516.933161113398,824.0,0.0,816.143805381352,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,124929,2,2,1,0,1,,190.0,,42,1.0,1.0,4.0,3.0,1.8,2,2,226.353640352575,374.0,23863.402582489496,6,1,1,2,73.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03452986208281275,13257.44587916083,3,2,3_1,3_1_1,3_0_1,3_0_1 -18248,2,79.0,0.0,1,120,256.0,0.0,0.0,0,78,0.0,987.5545695977627,353.8366022594382,1282.0,123.8635443016938,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,103563,1,2,4,0,2,,149.0,,11,0.0,1.0,3.0,1.0,1.0,2,1,238.762268997399,256.0,16920.458583993408,0,5,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07576626801431728,16920.458583993408,4,2,4_0,4_1_0,4_0_0,4_1_0 -18249,1,27.0,30.0,1,120,2594.0,0.0,0.0,85,21,0.0,165.62760077111324,3585.359946331964,2808.0,92.89765822627035,0.0,50,2,2,2,2,1,2,2,1,0,,2,,1,129037,1,2,0,0,1,,543.0,550.0,42,1.0,0.0,4.0,2.0,1.5,1,1,225.488828070721,2594.0,21026.484179912783,7,1,2,3,59.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.13354586415747835,14017.656119941856,3,2,3_1,3_0_1,3_0_1,3_1_0 -18250,2,52.0,0.0,2,120,630.0,1400.0,0.0,68,62,0.0,0.0,870.7697633728362,2030.0,0.0,2539.1140611864284,20,2,2,2,2,1,2,2,2,2,20.0,1,,2,128912,2,2,2,0,1,,900.0,,43,2.0,7.0,5.0,2.0,1.5,2,2,261.617849682652,630.0,39102.776345587896,1,1,1,2,90.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.051914472314164774,26068.517563725265,7,4,7,7_1,7_0,7_0_1 -18251,2,83.0,0.0,1,120,540.0,1160.0,0.0,0,77,0.0,1366.4277063616842,746.3740828910024,3020.0,0.0,2103.8373649830405,31,0,0,0,0,0,0,0,0,0,,1,,1,112177,1,2,3,0,2,,310.0,,21,0.0,3.0,4.0,3.0,2.0,3,1,234.666720339072,540.0,25975.110369416157,0,5,0,1,50.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11626514602054723,12987.555184708079,2,1,2_0,2_1_0,2_0_0,2_1_0 -18252,2,24.0,0.0,1,120,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1346.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,100238,1,1,2,0,2,,155.0,495.0,12,1.0,0.0,2.0,1.0,1.0,2,2,254.789752307427,0.0,12350.079051311055,0,4,2,3,39.0,0,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10898715663339109,12350.079051311055,2,1,2_0,2_1_0,2_0_0,2_1_0 -18253,2,70.0,0.0,5,120,800.0,0.0,0.0,86,86,2240.377315527001,0.0,1105.7393820607444,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,100047,2,1,2,0,1,,660.0,,41,1.0,0.0,7.0,3.0,2.0,1,1,273.287384364089,800.0,92150.3673691478,5,5,0,1,220.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0249592059767528,46075.1836845739,10,5,10,10_1,10_0,10_0_0 -18254,2,41.0,0.0,6,120,694.0,1495.0,0.0,63,34,0.0,0.0,959.2289139376958,2189.0,0.0,2711.411086766936,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,112486,1,1,2,0,1,,567.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,269.799297277016,694.0,31601.413401993133,1,1,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06926905363865585,15800.706700996567,3,2,3_0,3_1_0,3_0_0,3_0_0 -18255,2,65.0,0.0,1,120,540.0,1380.0,0.0,77,38,0.0,0.0,746.3740828910024,1920.0,0.0,2502.8410031694793,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,125559,2,1,2,0,1,,400.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,282.460070419241,540.0,78064.73878494496,5,1,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024594971172442817,52043.159189963306,10,5,10,10_1,10_0,10_1_0 -18256,2,41.0,0.0,1,120,593.0,703.0,0.0,55,62,0.0,0.0,819.6293169525268,1296.0,0.0,1274.9979892957565,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,105722,2,2,2,0,1,,370.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,215.241317321646,593.0,28942.530866319266,1,1,1,2,173.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04477839225553592,13782.157555390126,3,2,3_0,3_1_0,3_0_0,3_1_0 -18257,2,83.0,0.0,1,120,240.0,0.0,0.0,0,78,0.0,1925.4208589641914,331.72181461822333,2277.0,304.49787974166395,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,108513,1,2,2,0,2,,229.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,238.762268997399,240.0,12647.802087361313,0,5,0,1,72.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.18003128008109479,12647.802087361313,2,1,2_0,2_1_0,2_0_0,2_1_0 -18258,1,39.0,300.0,1,120,0.0,0.0,0.0,0,11,0.0,0.0,0.0,1724.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111473,2,1,2,0,1,,311.0,587.0,32,1.0,1.0,5.0,3.0,1.6,1,1,235.181272305818,0.0,17156.124809462424,0,1,2,3,80.0,0,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10048889356698615,10722.578005914014,2,1,2_1,2_1_1,2_0_1,2_1_0 -18259,2,74.0,0.0,2,120,1440.0,0.0,0.0,0,72,0.0,0.0,1990.33088770934,1500.0,103.2196202514115,0.0,50,2,2,1,2,1,2,2,2,0,,1,,2,117568,2,1,1,0,1,,440.0,700.0,21,1.0,1.0,6.0,2.0,1.5,2,2,292.34282292759,1440.0,29755.6266027803,0,5,2,3,180.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05041063392897407,19837.08440185353,5,3,5,5_1,5_0,5_0_1 -18260,2,40.0,0.0,1,120,602.0,1500.0,0.0,63,52,0.0,0.0,832.0688850007102,2102.0,0.0,2720.4793512711735,44,0,0,0,0,0,0,0,0,3,30.0,1,,1,123032,2,1,1,0,1,,590.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,195.813181297201,602.0,40852.19409176966,1,1,1,2,160.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05145378471663244,19453.42575798555,5,3,5,5_1,5_0,5_1_0 -18261,1,73.0,80.0,1,120,396.0,85.0,0.0,0,86,0.0,0.0,547.3409941200684,481.0,0.0,154.16049657203317,31,0,0,0,0,0,0,0,0,0,,3,,1,127542,2,1,0,1,1,,210.0,377.0,11,0.0,2.0,2.0,1.0,1.0,3,2,337.864318864249,396.0,13662.489681927458,0,5,2,3,48.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03520588203160803,13662.489681927458,3,2,3_1,3_0_1,3_0_1,3_1_0 -18262,2,68.0,0.0,1,120,700.0,0.0,0.0,77,72,4480.754631054002,0.0,967.5219593031513,3850.0,258.04905062852873,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,132448,2,2,2,0,1,,450.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,226.282891280904,700.0,70345.00870302296,5,5,0,1,200.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05473025124289383,46896.67246868197,10,5,10,10_1,10_0,10_1_0 -18263,2,56.0,0.0,2,120,348.0,0.0,0.0,0,78,0.0,2173.8622601208613,480.99663119642383,2748.0,516.0981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116793,1,1,2,0,2,,248.0,400.0,11,0.0,2.0,3.0,1.0,1.0,2,2,251.585593944644,348.0,13219.377170176129,0,7,2,3,88.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20787666201095215,13219.377170176129,2,1,2_0,2_1_0,2_0_0,2_0_1 -18264,2,69.0,0.0,5,120,0.0,0.0,2922.0,0,75,0.0,0.0,1492.888764395248,2922.0,0.0,3340.564153534989,31,0,0,0,0,0,0,0,0,0,,1,,3,116502,1,2,3,0,2,,356.0,,11,0.0,3.0,7.0,1.0,1.0,2,1,298.196780490445,0.0,23693.128135433686,0,5,0,1,110.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12332689813254644,23693.128135433686,6,3,6,6_1,6_0,6_0_0 -18265,2,59.0,0.0,2,120,630.0,2450.0,0.0,77,37,0.0,0.0,870.7697633728362,3080.0,0.0,4443.44960707625,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,115298,2,2,5,0,1,,430.0,,42,1.0,1.0,6.0,2.0,1.5,4,2,273.476437770966,630.0,55645.32042926444,5,1,0,1,175.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05535056634124793,37096.88028617629,9,5,9,9_1,9_0,9_0_1 -18267,2,90.0,0.0,1,120,432.0,2450.0,0.0,0,86,0.0,0.0,597.099266312802,2882.0,0.0,4443.44960707625,50,0,0,0,0,0,0,0,0,0,,1,,1,114174,2,1,4,0,2,,290.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,285.315005150819,432.0,11923.55248707702,0,6,0,1,99.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.241706488324144,11923.55248707702,2,1,2_0,2_1_0,2_0_0,2_1_0 -18268,2,51.0,0.0,1,120,364.0,1622.0,0.0,0,62,0.0,0.0,503.1114188376387,1986.0,0.0,2941.7450051745623,71,0,0,0,0,0,0,0,0,0,,1,,1,118925,2,2,3,0,1,,199.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,297.941470913636,364.0,26274.190181564667,0,1,0,1,160.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0755874866656587,26274.190181564667,7,4,7,7_1,7_0,7_1_0 -18269,2,67.0,0.0,1,120,660.0,1760.0,0.0,86,78,0.0,31.055175144583732,912.2349902001142,2450.0,0.0,3192.02910549151,70,0,0,0,0,0,0,0,0,0,,1,,1,129864,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,216.625337526907,660.0,26018.05579866228,6,5,0,1,88.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0941653757282651,17345.37053244152,4,2,4_0,4_1_0,4_0_0,4_1_0 -18270,2,53.0,0.0,1,120,500.0,2500.0,0.0,85,38,0.0,0.0,691.0871137879653,3030.0,51.60981012570575,4534.132252118622,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,115845,1,1,4,0,1,,495.0,,42,2.0,2.0,9.0,4.0,2.5,2,2,214.195413162337,500.0,161811.42907798025,6,1,0,1,300.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018725500524068548,64724.5716311921,10,5,10,10_1,10_0,10_1_0 -18271,2,42.0,0.0,1,120,840.0,1671.0,0.0,33,33,0.0,0.0,1161.0263511637818,2511.0,0.0,3030.613997316087,41,0,0,0,0,0,0,0,0,3,150.0,1,,1,109854,2,1,3,0,1,,400.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,214.195413162337,840.0,87601.30271956927,1,1,0,1,250.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0286639572934007,41714.90605693775,9,5,9,9_1,9_0,9_1_0 -18272,2,31.0,0.0,1,120,815.0,1377.0,0.0,43,62,0.0,0.0,1126.4719954743834,2192.0,0.0,2497.4000444669373,44,0,0,0,0,0,0,0,0,1,5.0,1,,1,132278,2,1,2,0,1,,484.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,224.371079519313,815.0,39458.48346047986,1,1,1,2,167.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055552058968394595,21921.37970026659,6,3,6,6_1,6_0,6_1_0 -18273,2,76.0,0.0,1,120,1890.0,0.0,0.0,77,78,0.0,0.0,2612.3092901185087,1890.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,116991,2,1,2,0,1,,450.0,457.0,41,0.0,7.0,3.0,2.0,1.5,2,2,191.218822110641,1890.0,29389.34371461135,5,5,2,3,60.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.0643090236499687,19592.8958097409,5,3,5,5_1,5_0,5_1_0 -18274,2,65.0,0.0,1,120,520.0,1418.0,0.0,0,52,0.0,7.246207533736205,718.7305983394839,1945.0,0.0,2571.7598134016825,50,2,2,2,2,1,2,2,2,0,,1,,1,117666,1,2,3,0,1,,182.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,242.625171930297,520.0,19541.098613746777,0,4,0,1,86.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.09953381017338149,19541.098613746777,5,3,5,5_1,5_0,5_1_0 -18275,2,52.0,0.0,6,120,320.0,0.0,0.0,56,38,0.0,0.0,442.2957528242978,320.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,121541,2,1,2,0,2,,540.0,,43,2.0,2.0,6.0,3.0,2.0,1,1,263.365940895792,320.0,38217.36286721203,1,1,0,1,145.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008373157538678285,19108.681433606016,5,3,5,5_1,5_0,5_0_0 -18276,2,74.0,0.0,1,120,700.0,0.0,0.0,78,78,3733.962192545002,0.0,967.5219593031513,3260.0,103.2196202514115,0.0,43,2,2,1,2,1,2,2,2,0,,1,,1,111072,1,2,2,0,1,,430.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,205.610992813363,700.0,26997.4850635451,5,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.1207519882806418,17998.323375696735,4,2,4_0,4_1_0,4_0_0,4_1_0 -18277,2,43.0,0.0,2,120,496.0,540.0,0.0,46,38,0.0,0.0,685.5584168776616,1036.0,0.0,979.3725664576224,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,119294,2,1,3,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,4,3,281.363224087659,496.0,43947.172491683195,1,1,1,2,92.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02357375779286047,20927.224996039615,5,3,5,5_1,5_0,5_0_1 -18278,2,30.0,0.0,5,120,0.0,0.0,0.0,53,53,0.0,0.0,0.0,2183.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,3,102635,1,1,3,0,1,,353.0,,43,2.0,0.0,3.0,2.0,1.5,4,3,251.188654111893,0.0,44283.13520212671,1,1,1,2,95.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049296419280971795,29522.09013475114,8,4,8,8_1,8_0,8_0_0 -18279,2,62.0,0.0,8,111,1300.0,0.0,0.0,64,64,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127192,2,1,1,0,1,,100.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,390.163031385925,1300.0,80787.27366688731,1,5,0,1,136.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016091643411069056,53858.18244459154,10,5,10,10_1,10_3,10_0_0 -18280,2,52.0,0.0,8,111,800.0,0.0,0.0,46,22,0.0,0.0,1105.7393820607444,4100.0,5677.079113827633,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,105472,2,1,2,0,1,,250.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,380.747133745563,800.0,127071.90529109535,1,1,1,2,169.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0322651965484247,70595.50293949741,10,5,10,10_1,10_3,10_0_0 -18281,2,54.0,0.0,7,111,700.0,0.0,0.0,52,37,1792.3018524216009,0.0,967.5219593031513,1960.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,117533,2,2,2,0,1,,300.0,,43,4.0,0.0,7.0,4.0,2.5,3,3,359.240279264108,700.0,137560.18986616025,1,1,0,1,145.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014248308336205337,55024.0759464641,10,5,10,10_1,10_3,10_0_0 -18282,2,46.0,0.0,1,111,426.0,0.0,0.0,63,54,2240.377315527001,0.0,588.8062209473464,1986.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,104983,2,2,5,0,1,,163.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,269.138561305434,426.0,34942.10607050759,1,1,1,2,110.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05683687170980963,23294.737380338393,6,3,6,6_1,6_3,6_1_0 -18283,2,48.0,0.0,6,111,1755.0,0.0,0.0,43,38,0.0,129.39656310243222,2425.7157693957583,1880.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,118192,2,1,1,0,1,,328.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,373.876806100668,1755.0,96707.58809629075,1,1,1,2,112.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01944004640182013,53726.43783127264,10,5,10,10_1,10_3,10_0_0 -18284,2,56.0,0.0,7,111,960.0,0.0,0.0,46,46,2688.452778632401,0.0,1326.8872584728933,2760.0,0.0,0.0,10,2,2,1,1,1,2,2,2,2,50.0,1,,5,127349,2,2,3,0,1,,200.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,365.242515440354,960.0,76646.24699253288,1,1,0,1,135.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03600959092320447,38323.12349626644,9,5,9,9_1,9_3,9_0_0 -18285,2,74.0,0.0,5,111,1270.0,0.0,0.0,0,78,0.0,0.0,1755.3612690214318,1330.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,106532,2,2,2,0,1,,100.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,411.365470296015,1270.0,21132.75188296952,0,5,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06293548551392503,21132.75188296952,5,3,5,5_1,5_3,5_0_0 -18286,2,38.0,0.0,8,111,0.0,0.0,0.0,46,53,0.0,0.0,0.0,2494.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,2002.0,6,110706,2,2,5,0,2,,860.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,412.031634790764,0.0,64698.894670569745,1,1,1,2,165.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03854779919655214,30808.997462176067,8,4,8,8_1,8_3,8_0_0 -18287,2,48.0,0.0,7,111,110.0,0.0,0.0,0,38,1792.3018524216009,0.0,152.03916503335236,1325.0,25.804905062852875,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,105114,2,2,2,0,1,,100.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,417.218393070955,110.0,81852.647711938,0,1,1,2,120.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016187625410274322,81852.647711938,10,5,10,10_1,10_3,10_0_0 -18288,2,55.0,0.0,9,111,286.0,0.0,0.0,0,64,0.0,0.0,395.3018290867161,346.0,103.2196202514115,0.0,50,2,2,1,2,1,2,2,2,2,40.0,1,2004.0,6,129241,2,2,1,0,1,,150.0,,32,1.0,3.0,5.0,2.0,1.5,1,1,358.256895163079,286.0,28970.86831315248,0,1,1,2,128.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.011943031746926257,19313.91220876832,5,3,5,5_1,5_3,5_0_0 -18289,2,58.0,0.0,6,111,1700.0,0.0,0.0,77,34,0.0,0.0,2349.696186879082,1760.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,4,127219,2,1,2,0,1,,300.0,,42,1.0,2.0,7.0,3.0,2.0,2,2,361.065365766324,1700.0,49452.5366302434,5,1,0,1,170.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03558968093304332,24726.2683151217,7,4,7,7_1,7_3,7_0_0 -18290,2,41.0,0.0,7,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,960.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,110172,2,1,1,0,1,,131.0,,12,1.0,2.0,3.0,1.0,1.0,3,1,355.699071392928,0.0,12829.706975527402,0,4,1,2,70.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07482633873331596,12829.706975527402,2,1,2_0,2_1_0,2_3_0,2_0_0 -18291,2,37.0,0.0,2,111,2369.0,0.0,0.0,47,52,0.0,362.31037668681023,3274.3707451273795,2819.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,119698,2,1,3,0,1,,320.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,359.240279264108,2369.0,50012.937763463444,1,1,1,2,180.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05636541515182494,23815.684649268307,6,3,6,6_1,6_3,6_0_1 -18292,2,42.0,0.0,8,111,780.0,0.0,0.0,85,37,0.0,0.0,1078.0958975092258,875.0,163.4310653980682,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,2001.0,6,110051,2,1,1,0,1,,180.0,,42,1.0,0.0,4.0,3.0,1.8,1,1,351.373415672496,780.0,38577.368653552396,6,1,1,2,95.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022681692156300705,21431.871474195774,6,3,6,6_1,6_3,6_0_0 -18293,2,50.0,0.0,9,111,900.0,0.0,0.0,64,37,0.0,569.3448776507017,1243.9568048183376,1510.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,4,60.0,1,2011.0,6,118225,2,1,1,0,1,,230.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,420.454740282431,900.0,78570.56388313233,1,1,1,2,140.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01921839331897896,52380.37592208822,10,5,10,10_1,10_3,10_0_0 -18294,2,68.0,0.0,2,111,906.0,0.0,0.0,74,75,3136.5282417378016,0.0,1252.2498501837931,3146.0,240.84578058662683,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,130628,2,1,2,0,2,,105.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,397.439482869759,906.0,33650.47617016585,5,5,2,3,118.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09349050468383,22433.650780110565,6,3,6,6_1,6_3,6_0_1 -18295,2,59.0,0.0,7,111,280.0,0.0,0.0,55,52,0.0,465.827627168756,387.00878372126056,2330.0,2752.5232067043066,0.0,41,0,0,0,0,0,0,0,0,2,8.0,1,,5,116354,2,1,2,0,1,,250.0,,43,2.0,2.0,3.0,2.0,1.5,1,1,360.026118795836,280.0,42785.14886791059,1,1,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05445814871869079,28523.43257860706,8,4,8,8_1,8_3,8_0_0 -18296,2,42.0,0.0,2,111,825.0,0.0,0.0,0,67,0.0,207.03450096389156,1140.2937377501428,1205.0,309.6588607542345,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,121640,2,1,2,0,1,,116.0,,22,1.0,3.0,5.0,2.0,1.5,1,1,284.794481695472,825.0,29781.428906496727,0,1,0,1,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0404614568287935,19854.285937664485,5,3,5,5_1,5_3,5_0_1 -18297,2,52.0,0.0,2,111,581.0,0.0,0.0,85,85,0.0,0.0,803.0432262216157,1398.0,1405.5071624233867,0.0,31,1,2,2,1,1,2,2,2,0,,1,,2,110905,1,3,3,0,2,,200.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,345.089901746515,581.0,6469.820977604167,6,7,0,1,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.21608016741719677,4313.213985069445,1,1,1_0,1_1_0,1_3_0,1_0_1 -18298,2,52.0,0.0,7,111,1469.0,0.0,0.0,47,43,0.0,310.55175144583734,2030.413940309042,1889.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,126603,1,1,2,0,1,,289.0,,43,2.0,0.0,4.0,2.0,1.5,3,2,415.986590985579,1469.0,65064.3158965339,1,1,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029032811211047106,43376.21059768927,10,5,10,10_1,10_3,10_0_0 -18299,2,36.0,0.0,7,111,2500.0,0.0,0.0,38,42,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,117137,2,1,2,0,1,,280.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,357.661667593184,2500.0,77557.77213830003,4,1,1,2,115.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032234035752626206,36932.27244680954,9,5,9,9_1,9_3,9_0_0 -18300,2,36.0,0.0,2,111,303.0,0.0,0.0,54,65,2234.402976018929,621.1035028916747,418.79879095550695,2399.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,128285,1,1,3,0,1,,184.0,,43,2.0,1.0,5.0,4.0,2.1,1,1,359.240279264108,303.0,36647.66171209451,1,1,1,2,150.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06546120237756613,17451.267481949766,4,2,4_0,4_1_0,4_3_0,4_0_1 -18301,2,62.0,0.0,6,111,1200.0,0.0,0.0,86,75,0.0,0.0,1658.6090730911167,1410.0,361.26867087994026,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,117016,2,2,3,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,346.329196194728,1200.0,31234.66054151414,6,5,0,1,89.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0451421586005701,20823.10702767609,5,3,5,5_1,5_3,5_0_0 -18302,2,48.0,0.0,7,111,1200.0,0.0,0.0,21,43,0.0,0.0,1658.6090730911167,4430.0,5556.656223534319,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,105962,2,1,2,0,1,,190.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,370.394601721904,1200.0,71453.11406289993,1,1,0,1,197.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06199869744095809,34025.29241090472,9,5,9,9_1,9_3,9_0_0 -18303,2,46.0,0.0,5,111,0.0,0.0,0.0,46,64,0.0,931.655254337512,0.0,2513.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,104908,2,2,2,0,1,,103.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,380.182045023443,0.0,51361.0588066603,1,1,0,1,90.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04892811905338143,25680.52940333015,7,4,7,7_1,7_3,7_0_0 -18304,2,61.0,0.0,1,111,297.0,0.0,0.0,0,78,2282.197692083505,0.0,410.5057455900514,1855.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101641,2,3,2,0,1,,147.0,143.0,11,0.0,3.0,4.0,1.0,1.0,3,3,462.875489731455,297.0,19685.122042162115,0,5,2,3,90.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09423360424318995,19685.122042162115,5,3,5,5_1,5_3,5_1_0 -18305,2,63.0,0.0,1,120,1779.0,0.0,0.0,74,74,0.0,31.055175144583732,2458.8879508575806,1899.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119924,2,1,2,0,1,,145.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,196.692707949281,1779.0,68758.26024651354,5,5,0,1,140.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027618499845570056,45838.840164342364,10,5,10,10_1,10_0,10_1_0 -18306,2,46.0,0.0,1,120,0.0,0.0,0.0,11,11,9932.339432169705,0.0,0.0,7751.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,5,,1,117275,2,3,4,0,1,,0.0,450.0,43,2.0,0.0,6.0,6.0,3.0999999999999996,1,1,261.814542617717,0.0,121040.19104848734,1,1,2,3,250.0,0,0,3,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0640365810137811,39045.222918866886,9,5,9,9_1,9_0,9_1_0 -18307,2,63.0,0.0,2,120,557.0,0.0,0.0,0,78,2688.452778632401,0.0,769.8710447597933,2477.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126379,2,1,1,0,1,,110.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,258.270728779023,557.0,22653.218104683616,0,5,0,1,96.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10934428779846839,22653.218104683616,6,3,6,6_1,6_0,6_0_1 -18308,2,49.0,0.0,1,120,1330.0,0.0,0.0,52,43,4182.037655650402,621.1035028916747,1838.2917226759876,6209.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,103386,2,3,1,0,1,,200.0,,43,2.0,0.0,8.0,5.0,3.0,1,1,190.75738338384,1330.0,68354.65584714204,1,1,1,2,200.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09083507075048207,22784.88528238068,6,3,6,6_1,6_0,6_1_0 -18309,2,60.0,0.0,5,400,0.0,0.0,0.0,0,52,0.0,0.0,0.0,2362.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,3,107041,1,2,3,0,1,,375.0,,32,1.0,1.0,5.0,2.0,1.5,1,1,237.714927544917,0.0,39421.61747968152,0,1,0,1,126.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059916364446928376,26281.078319787677,7,4,7,7_1,7_0,7_0_0 -18310,2,51.0,0.0,1,400,924.0,0.0,0.0,67,67,0.0,993.7656046266794,1277.1289862801598,2120.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,1,130122,2,1,1,0,1,,207.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,179.596697019755,924.0,29151.96441108486,1,1,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07272237198512367,19434.64294072324,5,3,5,5_1,5_0,5_1_0 -18312,2,41.0,0.0,1,400,0.0,0.0,0.0,0,69,0.0,0.0,0.0,3411.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,1,105468,2,1,3,0,1,,149.0,,32,1.0,0.0,5.0,2.0,1.5,1,1,196.692707949281,0.0,16623.797282262436,0,1,0,1,110.0,0,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20518777641974323,11082.53152150829,2,1,2_0,2_1_0,2_0_0,2_1_0 -18313,1,39.0,197.0,7,400,1000.0,2000.0,0.0,56,63,0.0,621.1035028916747,1382.1742275759307,3600.0,0.0,3627.3058016948976,41,0,0,0,0,0,0,0,0,2,2.0,1,,5,118186,2,1,2,0,1,,1000.0,717.0,43,2.0,0.0,7.0,7.0,2.9999999999999996,2,2,281.416042621286,1000.0,37035.47090974825,1,1,2,3,171.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0972041103182633,12345.156969916085,2,1,2_1,2_1_1,2_0_1,2_0_0 -18314,1,33.0,459.0,1,400,1050.0,0.0,0.0,85,85,0.0,0.0,1451.2829389547271,1140.0,154.82943037711726,0.0,70,2,1,2,1,2,1,2,2,0,,1,,1,107174,1,2,5,0,2,,630.0,550.0,41,0.0,0.0,6.0,5.0,2.4,1,1,224.700725306444,1050.0,8950.994311140756,7,6,2,3,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.12736015244486432,3729.580962975315,1,1,1_1,1_1_1,1_0_1,1_1_0 -18315,2,85.0,0.0,1,400,0.0,816.0,0.0,78,78,0.0,82.81380038555662,0.0,1494.0,0.0,1479.9407670915184,71,0,0,0,0,0,0,0,0,0,,1,,1,131419,2,1,2,0,1,,100.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,178.723997787337,0.0,18763.318073936516,5,5,0,1,95.0,0,0,3,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07962344368479604,12508.878715957677,2,1,2_0,2_1_0,2_0_0,2_1_0 -18316,2,30.0,0.0,1,400,0.0,0.0,0.0,64,46,4480.754631054002,0.0,0.0,4478.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,118947,2,1,2,0,1,,299.0,,43,2.0,0.0,7.0,3.0,1.8,4,4,194.083199445682,0.0,68562.50950298486,1,1,1,2,180.0,0,0,3,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06531266186814605,38090.28305721381,9,5,9,9_1,9_0,9_1_0 -18317,1,80.0,46.0,1,400,579.0,0.0,0.0,0,77,0.0,310.55175144583734,800.2788777664638,939.0,103.2196202514115,0.0,70,2,2,2,1,1,2,1,2,0,,1,,1,100590,1,2,4,0,2,,170.0,431.0,11,0.0,8.0,4.0,1.0,1.0,2,2,239.564064923489,579.0,17576.954964726025,0,5,2,3,95.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05342222255700229,17576.954964726025,4,2,4_1,4_1_1,4_0_1,4_1_0 -18318,2,61.0,0.0,9,400,2246.0,0.0,0.0,71,69,0.0,0.0,3104.3633151355402,2306.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,2010.0,6,124657,2,1,1,0,1,,900.0,,42,2.0,1.0,5.0,3.0,2.0,2,2,249.883927866531,2246.0,139924.95701768904,5,1,0,1,160.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01648026234311067,69962.47850884452,10,5,10,10_1,10_0,10_0_0 -18319,2,41.0,0.0,1,400,780.0,0.0,0.0,85,62,0.0,62.110350289167464,1078.0958975092258,2640.0,3096.588607542345,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,116063,2,1,2,0,1,,128.0,,42,1.0,0.0,5.0,4.0,2.5,2,2,176.986333904938,780.0,50118.34713122967,7,1,0,1,124.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05267532053855318,20047.338852491866,5,3,5,5_1,5_0,5_1_0 -18320,2,37.0,0.0,9,400,750.0,0.0,0.0,0,67,0.0,0.0,1036.630670681948,840.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,118309,2,1,0,0,1,,250.0,457.0,32,2.0,0.0,2.0,3.0,1.8,2,2,277.531893539773,750.0,17115.998119092663,0,1,2,3,45.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049076892516305634,9508.887843940369,1,1,1_0,1_0_0,1_0_0,1_0_0 -18321,1,36.0,40.0,1,400,1000.0,0.0,0.0,85,69,0.0,0.0,1382.1742275759307,1100.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,101988,2,1,2,0,1,,400.0,,42,1.0,0.0,5.0,3.0,1.8,3,3,209.369008181991,1000.0,19330.37944392629,6,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.056905246127779766,10739.09969107016,2,1,2_1,2_1_1,2_0_1,2_1_0 -18322,2,81.0,0.0,1,400,400.0,2145.0,0.0,77,75,0.0,0.0,552.8696910303722,2545.0,0.0,3890.285472317778,42,0,0,0,0,0,0,0,0,0,,1,,1,125638,2,1,1,0,1,,600.0,,41,0.0,2.0,6.0,2.0,1.5,4,3,214.884266678211,400.0,37014.80577350749,5,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06875627054678553,24676.53718233833,7,4,7,7_1,7_0,7_1_0 -18323,2,56.0,0.0,6,400,1960.0,0.0,0.0,74,34,0.0,0.0,2709.061486048824,2035.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,4,113534,2,2,2,0,1,,214.0,,42,1.0,1.0,5.0,3.0,2.0,1,1,250.099319294783,1960.0,131002.39142225128,5,1,0,1,140.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015534067568589034,65501.19571112564,10,5,10,10_1,10_0,10_0_0 -18324,2,62.0,0.0,1,400,880.0,3000.0,0.0,0,46,0.0,0.0,1216.313320266819,3880.0,0.0,5440.958702542347,70,0,0,0,0,0,0,0,0,0,,1,,1,104856,2,1,1,0,2,,400.0,,12,1.0,2.0,9.0,1.0,1.0,2,2,243.932868485255,880.0,96476.19695575786,0,1,1,2,230.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04021717400178299,96476.19695575786,10,5,10,10_1,10_0,10_1_0 -18325,2,82.0,0.0,2,400,0.0,0.0,1900.0,0,78,0.0,0.0,970.7353361912976,1900.0,0.0,2172.16697184,70,2,2,2,1,1,2,2,2,0,,1,,2,113942,2,2,5,0,1,,217.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,282.157466521019,0.0,15881.606598826911,0,5,0,1,85.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.11963525152048174,15881.606598826911,3,2,3_0,3_1_0,3_0_0,3_0_1 -18326,2,67.0,0.0,1,400,0.0,0.0,0.0,75,74,3733.962192545002,165.62760077111324,0.0,4513.0,86.01635020950958,0.0,30,0,0,0,0,0,0,0,0,0,,1,,1,103767,2,1,3,0,1,,250.0,,41,0.0,4.0,6.0,2.0,1.5,4,3,212.177993225107,0.0,79172.27842356147,5,5,0,1,125.0,0,0,3,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05700227516323369,52781.518949040976,10,5,10,10_1,10_0,10_1_0 -18328,2,64.0,0.0,5,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,1034.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,112612,1,2,0,1,1,900.0,0.0,288.0,41,0.0,6.0,2.0,2.0,1.5,2,2,893.000952065436,0.0,25725.805014586844,5,5,2,3,30.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04019310569343542,17150.536676391228,4,2,4_0,4_0_0,4_2_0,4_0_0 -18329,2,65.0,0.0,1,111,300.0,700.0,0.0,0,72,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,50,2,2,2,2,1,2,2,2,0,,1,,1,121347,2,1,1,0,1,,190.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,563.262072716342,300.0,25175.312665691534,0,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03972145304724585,25175.312665691534,7,4,7,7_1,7_2,7_1_0 -18330,2,55.0,0.0,2,111,300.0,1200.0,0.0,0,42,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,102492,2,1,1,0,1,,250.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,786.113590186389,300.0,33497.1428006825,0,1,1,2,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04477993866299061,33497.1428006825,8,4,8,8_1,8_2,8_0_1 -18331,2,50.0,0.0,5,111,450.0,685.0,0.0,55,68,0.0,0.0,621.9784024091688,1135.0,0.0,1242.3522370805024,42,0,0,0,0,0,0,0,0,2,40.0,1,,3,125033,1,2,2,0,1,,320.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,655.910875766995,450.0,45944.29821071014,1,1,1,2,71.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024703827116798107,18377.719284284056,4,2,4_0,4_1_0,4_2_0,4_0_0 -18332,2,72.0,0.0,1,111,650.0,100.0,0.0,0,72,0.0,0.0,898.4132479243549,750.0,0.0,181.36529008474488,60,0,0,0,0,0,0,0,0,0,,1,,1,106826,2,1,2,0,1,,220.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,594.438683892827,650.0,14043.060232030351,0,5,0,1,70.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053407162513577335,14043.060232030351,3,2,3_0,3_1_0,3_2_0,3_1_0 -18333,1,46.0,391.0,1,111,750.0,760.0,0.0,0,85,0.0,0.0,1036.630670681948,1510.0,0.0,1378.376204644061,43,0,0,0,0,0,0,0,0,0,,1,,1,124770,1,1,1,0,1,,370.0,353.0,31,0.0,3.0,6.0,2.0,1.3,1,1,591.251201299489,750.0,9595.575065333564,0,6,2,3,100.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1573642006569524,7381.211588718125,1,1,1_1,1_1_1,1_2_1,1_1_0 -18334,2,54.0,0.0,5,111,80.0,0.0,0.0,0,46,0.0,0.0,110.57393820607444,80.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,121666,2,1,2,0,2,,300.0,500.0,12,1.0,3.0,5.0,1.0,1.0,2,2,708.183313475874,80.0,52196.879212618995,0,1,2,3,90.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0015326586801124192,52196.879212618995,10,5,10,10_1,10_2,10_0_0 -18335,2,31.0,0.0,2,111,840.0,1119.0,0.0,63,45,0.0,0.0,1161.0263511637818,1959.0,0.0,2029.4775960482953,41,0,0,0,0,0,0,0,0,2,5.0,2,,2,112192,2,1,0,0,1,,996.0,535.0,43,2.0,0.0,3.0,2.0,1.5,1,1,849.176221659738,840.0,22909.35081904974,1,1,2,3,55.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08551093461675216,15272.900546033161,3,2,3_0,3_0_0,3_2_0,3_0_1 -18336,1,23.0,270.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1472.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,129827,1,2,0,0,1,,279.0,580.0,12,1.0,0.0,3.0,1.0,1.0,4,3,748.025793081207,0.0,10012.864050785149,0,1,2,3,60.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14701088445164445,10012.864050785149,2,1,2_1,2_0_1,2_2_1,2_0_0 -18337,2,55.0,0.0,2,111,600.0,1300.0,0.0,85,42,0.0,0.0,829.3045365455583,1900.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,103532,2,2,1,0,1,,500.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,665.124322385156,600.0,40192.026856792276,6,1,0,1,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047273057583531855,26794.68457119485,7,4,7,7_1,7_2,7_0_1 -18338,1,48.0,189.0,5,111,1080.0,0.0,0.0,63,67,0.0,0.0,1492.748165782005,1280.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118525,2,3,3,0,1,,468.0,489.0,43,3.0,2.0,5.0,5.0,2.5999999999999996,1,1,822.640043650786,1080.0,32356.4970612972,1,4,2,3,100.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.039559288435182784,12444.806562037385,2,1,2_1,2_1_1,2_2_1,2_0_0 -18339,2,51.0,0.0,5,111,400.0,800.0,0.0,0,62,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,60,0,0,0,0,0,0,0,0,2,25.0,2,,3,126289,1,2,0,0,1,,0.0,470.0,12,1.0,1.0,2.0,1.0,1.0,3,3,819.514098547518,400.0,32741.405010542658,0,1,2,3,55.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0366508401094456,32741.405010542658,8,4,8,8_0,8_2,8_0_0 -18340,2,62.0,0.0,5,111,480.0,1200.0,0.0,77,75,0.0,0.0,663.4436292364467,1680.0,0.0,2176.3834810169387,50,2,2,1,2,1,2,2,2,0,,1,,3,117161,2,2,2,0,1,,720.0,,41,2.0,1.0,6.0,6.0,3.0999999999999996,2,2,744.381221532386,480.0,58357.01956237669,6,5,0,1,100.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.028788310516857023,18824.845020121516,5,3,5,5_1,5_2,5_0_0 -18341,2,58.0,0.0,5,111,1500.0,0.0,0.0,56,38,0.0,103.51725048194578,2073.261341363896,1725.0,215.04087552377396,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,111550,2,2,1,0,1,,600.0,500.0,43,2.0,1.0,6.0,4.0,2.1,1,1,659.24164015792,1500.0,29605.814089744556,1,1,2,3,110.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05826558238766822,14098.006709402169,3,2,3_0,3_1_0,3_2_0,3_0_0 -18342,2,75.0,0.0,5,111,432.0,669.0,0.0,78,75,0.0,0.0,597.099266312802,1101.0,0.0,1213.3337906669433,20,0,0,0,0,0,0,0,0,0,,1,,3,120542,1,1,1,0,1,,246.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,724.030756800636,432.0,34185.354580271756,5,5,0,1,85.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032206774319532235,22790.23638684784,6,3,6,6_1,6_2,6_0_0 -18343,2,49.0,0.0,2,111,45.0,42.0,0.0,42,37,0.0,0.0,62.197840240916875,87.0,0.0,76.17342183559285,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,133040,2,1,2,0,1,,735.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,714.338614109914,45.0,85675.8231153011,4,1,1,2,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0010154556657473468,42837.91155765055,9,5,9,9_1,9_2,9_0_1 -18344,2,30.0,0.0,7,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,816.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,129078,2,1,0,0,1,,378.0,500.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1219.25481964233,0.0,42582.47962190761,0,1,3,4,26.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019162810790853725,42582.47962190761,9,5,9,9_0,9_2,9_0_0 -18345,2,62.0,0.0,7,111,780.0,0.0,0.0,0,45,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,20.0,2,,5,118959,1,2,0,0,1,,0.0,622.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1400.64430861278,780.0,43033.44832916776,0,1,2,3,24.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01812543568513708,43033.44832916776,9,5,9,9_0,9_2,9_0_0 -18346,2,42.0,0.0,6,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,2907.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,5.0,1,,4,101064,1,3,2,0,1,,530.0,612.0,32,1.0,0.0,7.0,3.0,1.6,1,1,642.983350828841,0.0,61264.300898485,0,1,2,3,114.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04745014563729212,38290.188061553126,9,5,9,9_1,9_2,9_0_0 -18347,2,42.0,0.0,6,111,1500.0,0.0,0.0,43,47,0.0,77.63793786145933,2073.261341363896,1575.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,4,121095,2,2,1,0,1,,460.0,,43,2.0,0.0,5.0,4.0,2.1,4,2,633.633474027229,1500.0,58470.86615629529,1,1,1,2,125.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026936491684422,27843.269598235853,7,4,7,7_1,7_2,7_0_0 -18348,2,61.0,0.0,2,111,2100.0,0.0,0.0,0,52,0.0,0.0,2902.5658779094542,2154.0,92.89765822627035,0.0,70,2,2,2,2,1,1,2,2,1,30.0,2,,2,104407,1,1,0,0,1,,120.0,396.0,12,1.0,2.0,2.0,1.0,1.0,2,2,763.793547083002,2100.0,24539.5786934157,0,1,2,3,80.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.08777656808663742,24539.5786934157,7,4,7,7_0,7_2,7_0_1 -18349,1,40.0,342.0,5,111,400.0,1600.0,0.0,0,68,0.0,0.0,552.8696910303722,2000.0,0.0,2901.844641355918,33,0,0,0,0,0,0,0,0,1,15.0,2,,3,117928,2,2,0,0,1,,470.0,302.0,32,1.0,1.0,6.0,3.0,1.6,1,1,785.225453084367,400.0,16114.649486591143,0,1,2,3,50.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12411067343811495,10071.655929119464,2,1,2_1,2_0_1,2_2_1,2_0_0 -18350,2,64.0,0.0,5,111,247.0,673.0,0.0,0,77,0.0,0.0,341.39703421125483,920.0,0.0,1220.588402270333,50,1,2,2,2,1,2,2,2,0,,2,,3,125880,1,2,0,0,1,,168.0,306.0,11,0.0,1.0,2.0,1.0,1.0,2,2,894.091975096848,247.0,16998.537791177438,0,5,2,3,55.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05412230224163736,16998.537791177438,4,2,4_0,4_0_0,4_2_0,4_0_0 -18352,2,35.0,0.0,1,111,860.0,360.0,0.0,55,21,0.0,0.0,1188.6698357153002,1220.0,0.0,652.9150443050816,50,0,0,0,0,0,0,0,0,0,,2,,1,117737,2,2,0,0,1,,105.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,667.90258867091,860.0,88417.07642014352,1,1,0,1,50.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013798239541451913,42103.36972387787,9,5,9,9_0,9_2,9_1_0 -18353,2,59.0,0.0,2,111,520.0,600.0,0.0,46,22,0.0,0.0,718.7305983394839,1120.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,8,,2,129447,2,1,0,0,2,,320.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,780.819477075965,520.0,83232.30025087927,1,1,0,1,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013456314395061649,55488.20016725285,10,5,10,10_0,10_2,10_0_1 -18354,2,50.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,2134.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,4.0,2,,1,132580,1,1,0,0,1,,224.0,550.0,32,3.0,5.0,2.0,3.0,2.0,1,1,980.040769115195,0.0,31632.868714439224,0,1,3,4,35.0,8,6,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06746147557037432,15816.434357219612,3,2,3_0,3_0_0,3_2_0,3_1_0 -18355,2,57.0,0.0,9,111,650.0,0.0,0.0,0,65,0.0,0.0,898.4132479243549,650.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,114015,2,1,0,0,1,,263.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1248.43009309685,650.0,19323.8395665454,0,1,0,1,40.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033637207438076605,19323.8395665454,5,3,5,5_0,5_2,5_0_0 -18356,2,40.0,0.0,5,111,144.0,0.0,0.0,85,47,0.0,0.0,199.033088770934,144.0,0.0,0.0,60,2,2,2,2,1,2,2,2,1,5.0,1,,3,120069,1,3,4,0,1,,540.0,350.0,42,1.0,0.0,5.0,4.0,2.1,2,2,566.331864847784,144.0,48031.61443061912,6,1,2,3,80.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.00299802539862585,22872.197347913865,6,3,6,6_1,6_2,6_0_0 -18357,1,47.0,200.0,2,111,600.0,543.0,0.0,52,43,0.0,207.03450096389156,829.3045365455583,1343.0,0.0,984.8135251601648,31,0,0,0,0,0,0,0,0,1,5.0,1,,2,113995,2,1,1,0,1,,435.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,701.939316800129,600.0,30625.45300461551,1,1,1,2,118.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.043852412560153764,12760.605418589796,2,1,2_1,2_1_1,2_2_1,2_0_1 -18358,2,56.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,726.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,129603,2,1,0,0,1,,92.0,250.0,12,1.0,2.0,2.0,1.0,1.0,2,2,931.664625084156,0.0,19192.31904208714,0,4,2,3,55.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03782763294044576,19192.31904208714,5,3,5,5_0,5_2,5_0_1 -18359,2,56.0,0.0,8,111,314.0,660.0,0.0,68,52,0.0,93.1655254337512,434.0027074588422,1064.0,0.0,1197.0109145593162,50,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,110565,2,1,1,0,1,,1200.0,,43,2.0,4.0,7.0,2.0,1.5,3,2,757.238042390064,314.0,34191.27219236566,1,1,1,2,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03111905266390098,22794.181461577104,6,3,6,6_1,6_2,6_0_0 -18360,2,33.0,0.0,9,111,0.0,0.0,1700.0,43,48,0.0,0.0,868.5526692237926,1700.0,0.0,1943.5178169094734,10,2,2,2,2,1,2,2,2,2,20.0,1,2007.0,6,106296,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,667.497762177585,0.0,63117.00584520375,1,1,1,2,140.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.026934104006284747,30055.71706914464,8,4,8,8_1,8_2,8_0_0 -18361,2,57.0,0.0,1,111,500.0,0.0,0.0,0,78,0.0,724.6207533736205,691.0871137879653,1270.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,118934,2,1,2,0,1,,310.0,,21,1.0,3.0,7.0,2.0,1.5,2,2,670.666569170356,500.0,29339.456754333274,0,7,0,1,90.0,8,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043286418376251225,19559.637836222184,5,3,5,5_1,5_2,5_1_0 -18362,0,47.0,0.0,1,111,267.0,1097.0,0.0,0,54,0.0,0.0,369.04051876277344,1364.0,0.0,1989.5772322296514,50,0,0,0,0,0,0,0,0,0,,1,,1,121864,2,1,1,0,1,,276.0,,22,1.0,4.0,5.0,2.0,1.5,1,1,543.453306948425,267.0,38196.17903250431,0,1,0,1,96.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03571037822498577,25464.119355002873,7,4,7,7_1,7_2,7_1_0 -18363,2,35.0,0.0,7,111,600.0,0.0,0.0,0,43,0.0,0.0,829.3045365455583,625.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,103946,2,2,5,0,1,,190.0,478.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1035.83591525327,600.0,18000.903136952187,0,1,2,3,30.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03472048014729896,18000.903136952187,4,2,4_0,4_1_0,4_2_0,4_0_0 -18364,1,43.0,320.0,1,111,1291.0,1331.0,0.0,55,63,0.0,0.0,1784.3869278005263,2622.0,0.0,2413.9720110279545,50,1,2,2,2,1,2,2,2,2,30.0,1,,1,109094,1,2,2,0,1,,670.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,536.536084813917,1291.0,35691.95918756831,1,1,1,2,82.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.0734619241891674,16996.171041699195,4,2,4_1,4_1_1,4_2_1,4_1_0 -18365,2,84.0,0.0,2,111,250.0,1950.0,0.0,0,72,0.0,0.0,345.54355689398267,2200.0,0.0,3536.6231566525253,10,0,0,0,0,0,0,0,0,0,,1,,2,100615,2,1,2,0,1,,397.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,755.163844671805,250.0,15512.286907603528,0,5,0,1,69.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1418230602040789,15512.286907603528,3,2,3_0,3_1_0,3_2_0,3_0_1 -18366,2,63.0,0.0,2,111,821.0,844.0,0.0,0,77,0.0,0.0,1134.765040839839,1665.0,0.0,1530.7230483152468,50,2,2,2,2,1,2,2,2,0,,1,,2,129730,2,1,1,0,1,,314.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,786.113590186389,821.0,20610.355617369707,0,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.08078463229410728,20610.355617369707,5,3,5,5_1,5_2,5_0_1 -18367,2,61.0,0.0,5,111,700.0,1000.0,0.0,43,74,0.0,0.0,967.5219593031513,1700.0,0.0,1813.6529008474488,10,2,2,2,2,1,2,2,2,0,,1,,3,106496,1,2,4,0,1,,500.0,669.0,42,1.0,3.0,6.0,2.0,1.5,2,2,765.815621510727,700.0,56347.50065041442,1,5,2,3,130.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.030169927332659732,37565.00043360961,9,5,9,9_1,9_2,9_0_0 -18368,2,54.0,0.0,5,111,0.0,0.0,0.0,47,33,0.0,0.0,0.0,1413.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,127285,2,1,2,0,1,,300.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,667.608698147623,0.0,98231.92673533107,1,1,0,1,90.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014384325411910977,65487.95115688738,10,5,10,10_1,10_2,10_0_0 -18369,2,41.0,0.0,2,111,550.0,600.0,0.0,46,22,0.0,0.0,760.1958251667618,1150.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,117272,2,1,2,0,1,,500.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,684.809865356649,550.0,35468.696863398975,1,1,0,1,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03242295606260949,14187.478745359589,3,2,3_0,3_1_0,3_2_0,3_0_1 -18370,2,53.0,0.0,5,111,200.0,0.0,0.0,0,47,0.0,0.0,276.4348455151861,200.0,0.0,0.0,12,2,2,2,1,2,2,2,2,2,10.0,1,,3,114375,2,1,2,0,1,,400.0,450.0,22,1.0,2.0,5.0,4.0,2.1,3,3,689.038802439314,200.0,60860.334423917135,0,1,2,3,110.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.003286212635752511,28981.111630436728,8,4,8,8_1,8_2,8_0_0 -18371,0,31.0,0.0,2,111,690.0,0.0,0.0,43,63,0.0,0.0,953.7002170273921,3890.0,5505.046413408613,0.0,43,1,2,2,1,1,2,2,2,2,20.0,1,,2,104154,2,1,1,0,1,,730.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,691.521108815218,690.0,47275.668854243326,1,1,5,0,90.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08228334139477426,26264.260474579623,7,4,7,7_1,7_2,7_0_1 -18372,2,43.0,0.0,5,111,150.0,0.0,0.0,85,38,0.0,0.0,207.32613413638958,150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,15.0,1,,3,100692,2,2,2,0,1,,551.0,,42,1.0,0.0,5.0,4.0,2.3,2,2,659.959580546274,150.0,59186.66825244314,6,1,1,2,111.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0025343545164633967,25733.334022801366,7,4,7,7_1,7_2,7_0_0 -18373,2,55.0,0.0,6,111,500.0,1100.0,0.0,67,38,0.0,258.79312620486445,691.0871137879653,1850.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,90.0,1,,4,124738,2,1,2,0,1,,600.0,,43,2.0,2.0,7.0,2.0,1.5,3,2,692.736570678398,500.0,86228.37711930684,1,1,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02145465404550422,57485.58474620456,10,5,10,10_1,10_2,10_0_0 -18374,2,77.0,0.0,2,111,100.0,150.0,0.0,0,78,0.0,0.0,138.21742275759306,250.0,0.0,272.04793512711734,42,0,0,0,0,0,0,0,0,0,,1,,2,133252,2,1,2,0,1,,100.0,341.0,11,0.0,3.0,5.0,1.0,1.0,3,2,425.46147485618,100.0,22468.447138255397,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011126714652849467,22468.447138255397,6,3,6,6_1,6_3,6_0_1 -18375,2,72.0,0.0,2,111,691.0,2960.0,0.0,0,75,0.0,0.0,955.082391254968,3651.0,0.0,5368.412586508449,31,0,0,0,0,0,0,0,0,0,,1,,2,101792,2,2,4,0,1,,191.0,,11,0.0,1.0,7.0,1.0,1.0,4,3,426.573251343439,691.0,61805.7430167263,0,5,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059072180379935585,61805.7430167263,10,5,10,10_1,10_3,10_0_1 -18376,2,80.0,0.0,5,111,240.0,450.0,0.0,0,77,0.0,0.0,331.72181461822333,690.0,0.0,816.143805381352,31,2,2,1,2,1,2,2,2,0,,2,,3,131995,1,1,0,0,1,,180.0,418.0,11,0.0,2.0,3.0,1.0,1.0,2,2,444.667501612767,240.0,16286.630256926292,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.042366038223687216,16286.630256926292,4,2,4_0,4_0_0,4_3_0,4_0_0 -18377,2,51.0,0.0,6,111,500.0,800.0,0.0,75,48,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,42,0,0,0,0,0,0,0,0,2,20.0,1,,4,129564,2,1,1,0,1,,406.0,,42,2.0,2.0,5.0,4.0,2.5,2,2,356.35394070021,500.0,67744.69388210654,5,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019189694801224424,27097.877552842616,7,4,7,7_1,7_3,7_0_0 -18378,1,57.0,434.0,2,111,430.0,300.0,0.0,0,77,0.0,0.0,594.3349178576501,730.0,0.0,544.0958702542347,50,2,2,2,1,1,2,2,2,0,,1,,2,113849,2,3,3,0,1,,300.0,529.0,31,0.0,3.0,4.0,3.0,2.0,1,1,319.756832204994,430.0,8635.311645483425,0,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,1,0,1,0.08453661314954579,4317.655822741713,1,1,1_1,1_1_1,1_3_1,1_0_1 -18379,1,30.0,377.0,6,111,940.0,0.0,0.0,85,65,0.0,0.0,1299.2437739213747,940.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,2,,4,123258,1,3,0,0,1,,360.0,380.0,42,1.0,0.0,3.0,3.0,1.8,1,1,377.611398937057,940.0,9447.253198699533,6,4,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09949982076582813,5248.4739992775185,1,1,1_1,1_0_1,1_3_1,1_0_0 -18380,2,34.0,0.0,7,111,410.0,970.0,0.0,43,31,0.0,0.0,566.6914333061316,1380.0,0.0,1759.2433138220254,44,2,1,2,2,1,2,2,2,3,5.0,1,,5,121593,2,1,1,0,1,,362.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,367.162208706092,410.0,54871.220580197085,1,1,1,2,133.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.025149795929599556,26129.152657236707,7,4,7,7_1,7_3,7_0_0 -18381,2,40.0,0.0,6,111,500.0,1100.0,0.0,42,42,0.0,0.0,691.0871137879653,1600.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,120529,2,1,3,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,356.060484579071,500.0,53934.11789978726,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02966582308758425,25682.91328561298,7,4,7,7_1,7_3,7_0_0 -18382,1,47.0,377.0,6,111,220.0,900.0,0.0,0,85,0.0,0.0,304.0783300667047,1120.0,0.0,1632.287610762704,42,0,0,0,0,0,0,0,0,0,,1,,4,119769,1,1,1,0,1,,280.0,476.0,31,0.0,0.0,3.0,2.0,1.5,1,1,341.867370000083,220.0,8946.950955081842,0,7,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1251823113396909,5964.633970054561,1,1,1_1,1_1_1,1_3_1,1_0_0 -18383,2,23.0,0.0,1,111,360.0,1100.0,0.0,53,55,0.0,0.0,497.582721927335,1460.0,0.0,1995.0181909321939,70,2,2,1,2,1,2,2,2,2,30.0,1,,1,102371,2,3,1,0,1,,0.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,307.488007392846,360.0,18950.404401220894,4,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.07704321074572627,10528.002445122718,2,1,2_0,2_1_0,2_3_0,2_1_0 -18384,2,36.0,0.0,1,111,1087.0,0.0,0.0,55,64,0.0,0.0,1502.4233853750366,1087.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,109482,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,269.71104560918,1087.0,47556.9149380634,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022856823269879343,26420.50829892411,7,4,7,7_1,7_3,7_1_0 -18385,0,46.0,0.0,2,111,530.0,0.0,0.0,63,52,0.0,465.827627168756,732.5523406152432,2480.0,2580.4905062852877,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,103551,2,2,2,0,1,,450.0,,43,2.0,0.0,3.0,5.0,3.0,4,3,353.417631041338,530.0,43960.129176342154,4,1,5,0,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05641475688234901,14653.37639211405,3,2,3_0,3_1_0,3_3_0,3_0_1 -18386,1,28.0,548.0,1,111,1227.0,1220.0,0.0,0,85,0.0,0.0,1695.9277772356668,2447.0,0.0,2212.656539033888,50,0,0,0,0,0,0,0,0,0,,1,,1,131554,2,1,1,0,1,,300.0,885.0,31,0.0,0.0,6.0,5.0,2.2,2,2,387.525605607269,1227.0,9478.504679703557,0,7,2,3,139.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2581630840189162,4308.411218047071,1,1,1_1,1_1_1,1_3_1,1_1_0 -18387,2,43.0,0.0,1,111,0.0,0.0,1900.0,55,22,0.0,124.22070057833493,970.7353361912976,2020.0,0.0,2172.16697184,50,2,2,1,2,1,2,2,2,2,20.0,1,,1,127471,2,1,1,0,1,,120.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,342.421638577158,0.0,56370.300348461264,1,1,1,2,138.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03583447289642017,24508.82623846142,7,4,7,7_1,7_3,7_1_0 -18388,2,71.0,0.0,1,111,550.0,0.0,0.0,0,78,0.0,0.0,760.1958251667618,555.0,8.601635020950958,0.0,71,2,2,1,1,1,2,2,2,0,,1,,1,129512,2,1,3,0,1,,270.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,283.456507060495,550.0,20783.870719015882,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0.026703399357281957,20783.870719015882,5,3,5,5_1,5_3,5_1_0 -18389,2,46.0,0.0,1,111,673.0,989.0,0.0,52,38,0.0,0.0,930.2032551586012,1662.0,0.0,1793.702718938127,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,105633,2,1,1,0,1,,751.0,,43,2.0,0.0,9.0,5.0,2.8,2,2,303.116664223002,673.0,65500.45933389496,1,1,0,1,160.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025373867861411374,23393.021190676773,6,3,6,6_1,6_3,6_1_0 -18391,1,47.0,155.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,294.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,2,,2,109317,1,3,0,0,1,,154.0,354.0,32,1.0,0.0,3.0,2.0,1.3,2,2,518.116020594085,0.0,18727.44144473888,0,1,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01569888769202873,14405.724188260678,3,2,3_1,3_0_1,3_3_1,3_0_1 -18392,1,34.0,310.0,7,111,0.0,0.0,1150.0,0,85,0.0,0.0,587.5503350631539,1150.0,0.0,1314.7326408505262,12,2,2,1,2,1,2,2,2,0,,2,,5,131785,1,2,0,0,1,,280.0,450.0,31,0.0,0.0,4.0,4.0,2.1,2,2,402.38231332937,0.0,12226.506832643316,0,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.0940579362316011,5822.146110782531,1,1,1_1,1_0_1,1_3_1,1_0_0 -18393,2,57.0,0.0,2,111,544.5,950.0,0.0,56,62,0.0,614.8924678627579,752.5938669150942,2089.0,0.0,1722.9702558050765,31,0,0,0,0,0,0,0,0,2,45.0,1,,2,120811,2,1,1,0,1,,300.0,,43,2.0,6.0,5.0,3.0,2.0,2,2,382.980265291112,544.5,38042.171288813435,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054912743653364626,19021.085644406718,5,3,5,5_1,5_3,5_0_1 -18394,2,54.0,0.0,1,111,720.0,0.0,0.0,0,54,0.0,0.0,995.16544385467,740.0,34.40654008380383,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118771,2,1,3,0,1,,228.0,,12,1.0,0.0,5.0,1.0,1.0,4,4,312.276827296488,720.0,7323.5085828827505,0,4,0,1,71.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10104446408782852,7323.5085828827505,1,1,1_0,1_1_0,1_3_0,1_1_0 -18395,1,40.0,34.0,1,111,960.0,630.0,0.0,42,48,0.0,0.0,1326.8872584728933,1590.0,0.0,1142.6013275338928,70,0,0,0,0,0,0,0,0,2,35.0,1,,1,114298,2,1,1,0,1,,370.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,276.921622775375,960.0,52983.27347191361,1,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03000947083503358,22076.363946630674,6,3,6,6_1,6_3,6_1_0 -18396,2,36.0,0.0,5,111,442.0,840.0,0.0,54,48,0.0,341.60692659042104,610.9210085885613,1612.0,0.0,1523.468436711857,43,0,0,0,0,0,0,0,0,2,30.0,1,,3,100710,2,1,2,0,1,,310.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,348.527109858409,442.0,49846.430995304574,1,1,1,2,125.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03233932636324247,23736.395712049794,6,3,6,6_1,6_3,6_0_0 -18397,2,32.0,0.0,1,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,522.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,131306,2,1,1,0,1,,395.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,323.734903205715,0.0,28558.03340254663,0,1,1,2,77.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018278569558415437,28558.03340254663,8,4,8,8_1,8_3,8_1_0 -18398,2,62.0,0.0,1,111,190.0,1005.0,0.0,0,75,0.0,0.0,262.6131032394268,1195.0,0.0,1822.721165351686,50,2,2,2,2,1,2,2,2,0,,1,,1,131409,2,2,2,0,1,,245.0,,11,0.0,6.0,5.0,1.0,1.0,2,2,407.802024542016,190.0,6590.338311325493,0,7,0,1,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.18132604785195824,6590.338311325493,1,1,1_0,1_1_0,1_3_0,1_1_0 -18399,2,27.0,0.0,1,111,950.0,0.0,0.0,46,46,0.0,0.0,1313.065516197134,950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,40.0,1,,1,125383,1,1,3,0,2,,200.0,,43,2.0,0.0,4.0,2.0,1.5,4,2,275.306064952154,950.0,48674.20951249853,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01951752292466218,32449.473008332352,8,4,8,8_1,8_3,8_1_0 -18400,2,63.0,0.0,1,111,100.0,700.0,0.0,0,78,0.0,0.0,138.21742275759306,800.0,0.0,1269.5570305932142,44,0,0,0,0,0,0,0,0,0,,1,,1,101351,2,1,2,0,2,,44.0,,11,0.0,0.0,5.0,1.0,1.0,4,3,347.955315841129,100.0,11769.723187134616,0,5,0,1,72.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06797101234075524,11769.723187134616,2,1,2_0,2_1_0,2_3_0,2_1_0 -18401,2,59.0,0.0,8,111,1200.0,0.0,0.0,75,64,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,2003.0,6,103060,2,1,0,0,1,,0.0,710.0,42,1.0,3.0,3.0,2.0,1.5,1,1,474.948898912107,1200.0,53534.94018123314,5,1,2,3,85.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022415267411107786,35689.96012082209,9,5,9,9_0,9_3,9_0_0 -18402,2,55.0,0.0,9,111,1180.0,0.0,0.0,77,52,0.0,0.0,1630.965588539598,1180.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,2004.0,6,123397,2,1,0,0,1,,0.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,453.045411943469,1180.0,58128.61288653877,5,1,0,1,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020299813489498567,38752.40859102585,9,5,9,9_0,9_3,9_0_0 -18403,1,42.0,491.0,1,111,385.0,1080.0,0.0,0,52,0.0,0.0,532.1370776167332,1465.0,0.0,1958.7451329152448,41,2,2,2,1,1,2,2,2,0,,1,,1,129661,1,2,5,0,1,,348.0,650.0,32,1.0,0.0,3.0,4.0,1.9,2,2,344.223441232692,385.0,34203.848827126145,0,4,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.042831437111198675,18002.025698487447,4,2,4_1,4_1_1,4_3_1,4_1_0 -18404,2,31.0,0.0,1,111,850.0,0.0,0.0,54,62,0.0,0.0,1174.848093439541,850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,123268,2,1,1,0,1,,120.0,710.0,43,2.0,0.0,4.0,2.0,1.5,1,1,274.259780242115,850.0,44183.85322476043,1,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019237797022276543,29455.902149840287,8,4,8,8_1,8_3,8_1_0 -18406,2,52.0,0.0,6,111,680.0,1475.0,0.0,52,56,0.0,0.0,939.8784747516328,2155.0,0.0,2675.138028749987,60,0,0,0,0,0,0,0,0,0,,1,,4,119405,1,2,2,0,1,,400.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,356.381738229628,680.0,20371.864447228625,1,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10578315036320422,10185.932223614313,2,1,2_0,2_1_0,2_3_0,2_0_0 -18407,2,32.0,0.0,2,111,590.0,750.0,0.0,0,46,0.0,0.0,815.482794269799,1340.0,0.0,1360.2396756355868,10,2,2,1,2,1,2,2,2,2,4.0,1,,2,102886,1,2,3,0,1,,370.0,,32,1.0,0.0,5.0,3.0,1.6,3,2,356.381738229628,590.0,24580.165824527656,0,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.05451549877921746,15362.603640329784,3,2,3_0,3_1_0,3_3_0,3_0_1 -18408,2,49.0,0.0,2,111,1100.0,1250.0,0.0,52,52,0.0,0.0,1520.3916503335236,2350.0,0.0,2267.066126059311,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,120789,2,1,4,0,1,,597.0,,43,5.0,1.0,6.0,5.0,3.0,1,1,356.787633107723,1100.0,109379.05942058499,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021484916879416255,36459.68647352833,9,5,9,9_1,9_3,9_0_1 -18409,1,70.0,421.0,2,111,300.0,1000.0,0.0,85,78,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,50,2,2,1,1,1,2,2,2,0,,1,,2,123299,1,3,3,0,1,,500.0,422.0,41,0.0,3.0,4.0,6.0,3.3,2,1,364.276944760361,300.0,18656.101651747216,6,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,1,0,1,0.06968229613383618,5653.364136893096,1,1,1_1,1_1_1,1_3_1,1_0_1 -18410,2,36.0,0.0,9,111,851.0,855.0,0.0,43,62,0.0,0.0,1176.230267667117,1706.0,0.0,1550.673230224569,42,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,115339,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,382.874300172813,851.0,56758.589879977626,1,1,1,2,116.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03005712445653649,27027.89994284649,7,4,7,7_1,7_3,7_0_0 -18411,2,74.0,0.0,2,111,270.0,930.0,0.0,86,78,0.0,0.0,373.1870414455012,1200.0,0.0,1686.6971977881274,30,0,0,0,0,0,0,0,0,0,,1,,2,116548,2,1,2,0,1,,180.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,348.08946876533,270.0,19586.70447581683,6,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06126604919585157,13057.802983877888,2,1,2_0,2_1_0,2_3_0,2_0_1 -18412,2,31.0,0.0,9,111,600.0,1080.0,0.0,43,48,0.0,0.0,829.3045365455583,1680.0,0.0,1958.7451329152448,10,2,1,2,1,2,2,2,2,2,5.0,1,2009.0,6,127452,1,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,321.558660598557,600.0,63384.727954870046,1,1,1,2,115.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.026504807296738115,30183.203788033356,8,4,8,8_1,8_3,8_0_0 -18413,2,78.0,0.0,2,111,360.0,900.0,0.0,78,78,0.0,0.0,497.582721927335,1260.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,0,,1,,2,122261,2,1,2,0,1,,222.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,74.4595592569217,360.0,37416.244238711624,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03367521314970405,24944.16282580775,7,4,7,7_1,7_3,7_0_1 -18414,2,38.0,0.0,5,111,458.0,823.0,0.0,54,62,0.0,341.60692659042104,633.0357962297762,1611.0,0.0,1492.6363373974505,70,0,0,0,0,0,0,0,0,2,4.0,1,,3,122523,2,1,2,0,1,,235.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,81.6017233496438,458.0,62720.79840851547,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02568525976833353,34844.88800473081,9,5,9,9_1,9_3,9_0_0 -18415,2,65.0,0.0,9,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,469.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,121531,1,3,0,0,1,,0.0,535.0,11,0.0,3.0,2.0,1.0,1.0,1,1,355.150328164697,0.0,24575.891869621282,0,5,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01908374281951247,24575.891869621282,7,4,7,7_0,7_3,7_0_0 -18416,1,28.0,275.0,2,111,250.0,100.0,0.0,0,63,0.0,0.0,345.54355689398267,350.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,102916,2,1,0,1,1,329.0,0.0,278.0,12,1.0,0.0,2.0,1.0,1.0,2,2,74.0239069510859,250.0,9384.270700056306,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037296451816751196,9384.270700056306,1,1,1_1,1_0_1,1_3_1,1_0_1 -18417,1,35.0,113.0,2,111,520.0,0.0,0.0,0,67,0.0,0.0,718.7305983394839,520.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,112787,2,1,0,1,1,708.0,0.0,347.0,32,1.0,0.0,3.0,2.0,1.3,2,2,58.0871587494742,520.0,19557.901688034006,0,1,2,3,92.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0265877192908761,15044.539760026159,3,2,3_1,3_0_1,3_3_1,3_0_1 -18418,1,31.0,97.0,2,111,427.0,888.0,0.0,0,55,0.0,0.0,590.1883951749223,1315.0,0.0,1610.5237759525346,71,0,0,0,0,0,0,0,0,0,,2,,2,113718,2,1,0,1,1,,0.0,344.0,12,1.0,0.0,3.0,1.0,1.0,1,1,71.8097866697044,427.0,7155.836591169443,0,4,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.18376607448285737,7155.836591169443,1,1,1_1,1_0_1,1_3_1,1_0_1 -18419,1,49.0,258.0,2,111,730.0,1810.0,0.0,85,52,0.0,0.0,1008.9871861304293,2540.0,0.0,3282.7117505338824,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,105310,1,3,2,0,2,,480.0,435.0,42,3.0,0.0,4.0,6.0,3.3,3,3,269.059595997548,730.0,41421.09944590271,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06132140464589361,12551.848316940217,2,1,2_1,2_1_1,2_3_1,2_0_1 -18420,2,38.0,0.0,1,111,1640.0,2057.0,0.0,46,43,0.0,0.0,2266.7657332245262,3697.0,0.0,3730.6840170432024,31,0,0,0,0,0,0,0,0,0,,1,,1,121607,2,2,2,0,1,,336.0,,43,2.0,0.0,8.0,7.0,2.9999999999999996,1,1,236.712882064917,1640.0,139711.60503465676,1,1,1,2,250.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026461652910528977,46570.53501155226,10,5,10,10_1,10_3,10_1_0 -18421,2,66.0,0.0,2,111,426.0,266.0,0.0,86,67,0.0,828.1380038555662,588.8062209473464,2373.0,0.0,482.4316716254214,20,0,0,0,0,0,0,0,0,1,15.0,1,,2,101240,2,1,1,0,1,,276.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,272.591830165985,426.0,30160.14016412246,6,5,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07868000569913947,20106.760109414972,5,3,5,5_1,5_3,5_0_1 -18422,2,31.0,0.0,9,111,1010.0,0.0,0.0,52,38,0.0,0.0,1395.9959698516898,1010.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,2006.0,6,120511,2,1,1,0,1,,280.0,,43,2.0,0.0,4.0,2.0,1.5,4,3,227.93531084173,1010.0,49940.327495549165,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02022413649750323,33293.55166369944,8,4,8,8_1,8_3,8_0_0 -18423,2,48.0,0.0,8,111,0.0,0.0,176.0,67,48,0.0,0.0,89.92074693140441,3337.0,0.0,201.21125633886314,20,0,0,0,0,0,0,0,0,2,50.0,1,2001.0,6,118878,2,1,1,0,1,,250.0,,43,2.0,3.0,6.0,2.0,1.5,4,4,272.994954355034,0.0,47622.16020925938,1,1,1,2,160.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07007241975871503,31748.10680617292,8,4,8,8_1,8_3,8_0_0 -18424,1,38.0,266.0,1,111,1248.0,0.0,0.0,0,35,0.0,0.0,1724.9534360147613,1248.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,25.0,2,,1,118572,1,3,0,0,1,,0.0,500.0,32,1.0,0.0,3.0,3.0,1.6,1,1,251.269723251107,1248.0,22735.55633171598,0,1,2,3,95.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.05489199304347115,14209.722707322486,3,2,3_1,3_0_1,3_3_1,3_1_0 -18425,2,40.0,0.0,2,111,335.0,1154.0,0.0,31,43,0.0,0.0,463.0283662379367,1489.0,0.0,2092.955447577956,71,0,0,0,0,0,0,0,0,2,35.0,1,,2,114363,1,1,3,0,2,,204.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,209.374342273304,335.0,20074.315050083853,4,1,0,1,99.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07417438633821682,9559.197642897072,1,1,1_0,1_1_0,1_3_0,1_0_1 -18426,1,24.0,369.0,2,111,117.0,0.0,0.0,0,55,0.0,0.0,161.7143846263839,635.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,2,100944,1,3,0,0,1,,0.0,404.0,22,2.0,0.0,5.0,3.0,2.0,3,2,255.759974167423,117.0,27270.45727315695,0,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.023285271443726312,13635.228636578475,3,2,3_1,3_0_1,3_3_1,3_0_1 -18427,2,48.0,0.0,6,111,447.0,767.0,0.0,52,62,0.0,0.0,617.831879726441,1214.0,0.0,1391.0717749499934,20,0,0,0,0,0,0,0,0,0,,1,,4,102390,2,1,2,0,1,,300.0,,43,2.0,4.0,6.0,2.0,1.5,4,2,217.798192040576,447.0,48733.05615012529,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024911222400257345,32488.704100083527,8,4,8,8_1,8_3,8_0_0 -18428,2,51.0,0.0,2,111,710.0,1413.0,0.0,55,65,0.0,0.0,981.3437015789107,2123.0,0.0,2562.6915488974455,60,0,0,0,0,0,0,0,0,2,12.0,1,,2,125435,2,2,2,0,1,,396.0,290.0,43,3.0,0.0,6.0,4.0,2.5,1,1,198.510162775482,710.0,47626.64030622987,1,1,2,3,76.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044575892533034664,19050.65612249195,5,3,5,5_1,5_3,5_0_1 -18429,2,71.0,0.0,1,111,540.0,278.0,0.0,78,77,0.0,950.2883594242622,746.3740828910024,1925.0,325.14180379194624,504.1955064355908,70,0,0,0,0,0,0,0,0,0,,1,,1,120068,2,1,2,0,2,,116.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,233.600438093633,540.0,41159.23037126563,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046769582002288715,27439.486914177087,7,4,7,7_1,7_3,7_1_0 -18430,2,67.0,0.0,1,111,743.0,1070.0,0.0,86,86,0.0,0.0,1026.9554510889163,1813.0,0.0,1940.6086039067702,50,0,0,0,0,0,0,0,0,0,,1,,1,114385,1,1,2,0,2,,263.0,,41,0.0,1.0,6.0,2.0,1.5,3,3,211.121636964383,743.0,35491.78555063384,5,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05108224260550403,23661.190367089224,6,3,6,6_1,6_3,6_1_0 -18431,2,22.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,241.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,117701,2,1,0,1,1,420.0,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,4,3,321.751223052071,0.0,15450.085839433656,0,1,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015598618836465584,15450.085839433656,3,2,3_0,3_0_0,3_3_0,3_0_1 -18432,2,68.0,0.0,1,111,320.0,1288.0,0.0,0,78,0.0,0.0,442.2957528242978,1608.0,0.0,2335.9849362915143,60,0,0,0,0,0,0,0,0,0,,1,,1,117225,2,1,3,0,1,,293.0,,11,0.0,2.0,10.0,1.0,1.0,1,1,214.55974481368,320.0,15544.03592893772,0,5,1,2,260.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10344803674870885,15544.03592893772,3,2,3_0,3_1_0,3_3_0,3_1_0 -18433,2,25.0,0.0,1,111,840.0,0.0,0.0,56,68,0.0,103.51725048194578,1161.0263511637818,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,1,113620,1,1,0,0,1,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,374.959066974798,840.0,26704.636710038616,4,1,2,3,33.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0374466805468313,17803.091140025743,4,2,4_0,4_0_0,4_3_0,4_1_0 -18434,2,52.0,0.0,6,111,1060.0,0.0,0.0,78,52,0.0,0.0,1465.1046812304864,1180.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,108331,2,1,2,0,1,,394.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,245.216659940858,1060.0,45225.46768633987,5,1,0,1,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02609149358462938,30150.311790893247,8,4,8,8_1,8_3,8_0_0 -18435,2,31.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,991.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,111941,2,2,0,0,1,,104.0,470.0,12,1.0,0.0,2.0,1.0,1.0,2,2,323.764982484412,0.0,16301.17162557969,0,1,2,3,43.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06079317626746101,16301.17162557969,4,2,4_0,4_0_0,4_3_0,4_1_0 -18436,2,48.0,0.0,1,111,788.0,2515.0,0.0,0,43,0.0,0.0,1089.1532913298333,3303.0,0.0,4561.337045631334,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,102584,2,2,2,0,1,,396.0,,32,1.0,0.0,5.0,3.0,2.0,2,2,217.649607843055,788.0,40060.923912830585,0,1,1,2,150.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08244942146584207,20030.461956415293,5,3,5,5_1,5_3,5_1_0 -18437,2,60.0,0.0,1,111,377.0,0.0,0.0,0,78,0.0,196.68277591569696,521.0796837961258,567.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103065,2,1,2,0,1,,187.0,,21,1.0,0.0,4.0,2.0,1.5,1,1,224.489473791569,377.0,38622.7412494532,0,7,0,1,117.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014680470149384521,25748.494166302135,7,4,7,7_1,7_3,7_1_0 -18438,1,41.0,30.0,1,111,334.0,809.0,0.0,0,46,0.0,0.0,461.6461920103608,1143.0,0.0,1467.2451967855861,10,2,2,2,2,1,2,2,2,3,20.0,1,,1,108673,1,1,3,0,1,,168.0,,32,1.0,0.0,5.0,3.0,1.6,2,2,260.090667883292,334.0,26207.83242827871,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.04361291621991153,16379.895267674194,4,2,4_1,4_1_1,4_3_1,4_1_0 -18439,2,74.0,0.0,2,111,262.0,815.0,0.0,0,78,0.0,0.0,362.1296476248938,1077.0,0.0,1478.127114190671,70,0,0,0,0,0,0,0,0,0,,1,,2,125536,1,2,1,0,1,,101.0,355.0,11,0.0,4.0,6.0,1.0,1.0,1,1,310.505694550077,262.0,19730.65260264637,0,5,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05458511797301361,19730.65260264637,5,3,5,5_1,5_3,5_0_1 -18440,0,26.0,0.0,1,111,950.0,0.0,0.0,56,68,0.0,0.0,1313.065516197134,950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109158,2,1,1,0,1,,500.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,203.291728102946,950.0,34885.56868880331,1,1,5,0,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02723189088515295,23257.04579253554,6,3,6,6_1,6_3,6_1_0 -18441,2,54.0,0.0,2,111,556.0,1506.0,0.0,85,63,0.0,0.0,768.4888705322173,2062.0,0.0,2731.361268676258,50,0,0,0,0,0,0,0,0,1,2.0,1,,2,132513,2,3,3,0,1,,0.0,290.0,42,1.0,3.0,5.0,2.0,1.5,1,1,298.539905488619,556.0,28217.553517861892,6,1,2,3,120.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07307508068319037,18811.70234524126,5,3,5,5_1,5_2,5_0_1 -18442,2,41.0,0.0,1,111,940.0,1300.0,0.0,56,64,0.0,0.0,1299.2437739213747,2240.0,0.0,2357.7487711016834,50,2,2,2,2,2,2,2,1,2,30.0,1,,1,124461,2,1,1,0,1,,700.0,,43,3.0,0.0,9.0,5.0,2.8,2,2,302.775249404102,940.0,66124.6218178359,1,1,1,2,120.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.033875430035288326,23615.93636351282,6,3,6,6_1,6_2,6_1_0 -18443,2,41.0,0.0,7,111,0.0,0.0,0.0,46,54,0.0,0.0,0.0,1769.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,124473,2,1,3,0,1,,167.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,351.771499024876,0.0,56543.59967250755,1,1,1,2,95.0,4,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031285592184540696,31413.110929170864,8,4,8,8_1,8_2,8_0_0 -18444,2,59.0,0.0,2,111,450.0,1000.0,0.0,0,85,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,0,,1,,2,103090,2,1,3,0,1,,195.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,403.73681787307,450.0,10420.178018000875,0,6,0,1,86.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13915309292174496,10420.178018000875,2,1,2_0,2_1_0,2_2_0,2_0_1 -18445,2,50.0,0.0,7,111,600.0,1450.0,0.0,34,46,0.0,0.0,829.3045365455583,2050.0,0.0,2629.7967062288008,50,0,0,0,0,0,0,0,0,2,3.0,1,,5,116134,2,2,2,0,1,,500.0,,43,3.0,0.0,7.0,4.0,2.5,5,4,352.443329440328,600.0,74477.97270289982,1,1,0,1,180.0,4,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027524916772072434,29791.189081159926,8,4,8,8_1,8_2,8_0_0 -18446,2,45.0,0.0,1,111,977.0,1890.0,0.0,34,37,0.0,0.0,1350.384220341684,2867.0,0.0,3427.8039826016784,50,2,2,2,1,2,2,1,2,2,1.0,1,,1,126811,1,1,1,0,1,,800.0,,43,2.0,0.0,9.0,5.0,2.8,3,2,302.775249404102,977.0,77391.4246423127,1,1,1,2,200.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03704544803575701,27639.79451511168,7,4,7,7_1,7_2,7_1_0 -18447,2,49.0,0.0,1,111,253.0,1085.0,0.0,0,34,0.0,0.0,349.69007957671045,1368.0,51.60981012570575,1967.813397419482,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,128720,2,2,2,0,2,,200.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,321.302529875339,253.0,51108.027834430206,0,1,0,1,90.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02676683209987634,51108.027834430206,10,5,10,10_1,10_2,10_1_0 -18448,2,88.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2602.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112302,1,1,2,0,2,,192.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,321.302529875339,0.0,16269.045856530203,0,5,0,1,100.0,4,4,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15993562394168234,16269.045856530203,4,2,4_0,4_1_0,4_2_0,4_1_0 -18449,2,77.0,0.0,1,111,580.0,1900.0,0.0,0,78,0.0,465.827627168756,801.6610519940398,2930.0,0.0,3445.940511610153,44,0,0,0,0,0,0,0,0,0,,1,,1,115836,1,2,2,0,2,,220.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,424.629833367879,580.0,27286.264674651164,0,5,0,1,120.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1073800329556269,27286.264674651164,7,4,7,7_1,7_2,7_1_0 -18450,2,85.0,0.0,1,111,650.0,1500.0,0.0,0,86,0.0,0.0,898.4132479243549,2150.0,0.0,2720.4793512711735,30,2,2,2,1,2,2,2,2,0,,1,,1,121827,2,2,2,0,2,,350.0,,11,0.0,5.0,5.0,1.0,1.0,3,2,403.73681787307,650.0,13901.408855198808,0,5,0,1,100.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.1546605831390931,13901.408855198808,3,2,3_0,3_1_0,3_2_0,3_1_0 -18451,2,60.0,0.0,1,111,980.0,0.0,0.0,78,65,1642.9433647198007,0.0,1354.530743024412,2080.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,101603,2,1,2,0,1,,447.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,336.650170752262,980.0,39489.680795996195,6,1,0,1,120.0,4,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05267198817699454,26326.453863997463,7,4,7,7_1,7_2,7_1_0 -18452,2,60.0,0.0,1,111,287.0,0.0,0.0,85,31,1254.6112966951205,0.0,396.68400331429206,1127.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121409,2,2,2,0,1,,360.0,529.0,42,1.0,3.0,4.0,2.0,1.5,2,2,298.539905488619,287.0,5072.532553844836,6,1,2,3,80.0,4,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22217698714338777,3381.6883692298907,1,1,1_0,1_1_0,1_2_0,1_1_0 -18453,2,48.0,0.0,2,111,770.0,2000.0,0.0,85,48,0.0,0.0,1064.2741552334664,2770.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,104080,2,1,2,0,1,,773.0,,42,1.0,0.0,5.0,4.0,2.5,1,1,371.826343154008,770.0,36243.31955632806,6,1,1,2,120.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0764278778519436,14497.327822531224,3,2,3_0,3_1_0,3_2_0,3_0_1 -18454,2,71.0,0.0,1,111,300.0,0.0,0.0,78,78,1648.9177042278727,621.1035028916747,414.65226827277917,2388.0,660.6055696090336,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100083,2,2,1,0,1,,190.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,295.086740013439,300.0,17783.28039518063,5,5,0,1,80.0,4,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1342834362914933,11855.520263453755,2,1,2_0,2_1_0,2_2_0,2_1_0 -18455,2,59.0,0.0,5,111,2200.0,0.0,0.0,45,46,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,102173,2,1,2,0,1,,300.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,347.965312822645,2200.0,70011.2130572083,1,1,0,1,100.0,4,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031423537801042144,46674.14203813887,10,5,10,10_1,10_2,10_0_0 -18456,2,49.0,0.0,7,111,2334.0,0.0,0.0,21,21,0.0,414.0690019277831,3225.994647162222,2734.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,121747,1,1,2,0,1,,350.0,,43,2.0,6.0,6.0,3.0,2.0,2,2,372.456548898185,2334.0,58263.38344361629,1,1,1,2,110.0,4,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04692484092767796,29131.691721808143,8,4,8,8_1,8_2,8_0_0 -18457,2,53.0,0.0,1,111,300.0,0.0,0.0,0,46,2389.735803228801,0.0,414.65226827277917,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,116482,2,1,2,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,424.629833367879,300.0,60789.18509062333,0,1,0,1,180.0,4,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03125555963889822,60789.18509062333,10,5,10,10_1,10_2,10_1_0 -18458,2,56.0,0.0,1,111,944.0,800.0,0.0,77,75,0.0,1164.5690679218899,1304.7724708316784,2989.0,206.439240502823,1450.922320677959,42,0,0,0,0,0,0,0,0,0,,1,,1,119181,2,2,1,0,1,,562.0,,41,0.0,0.0,8.0,3.0,2.0,3,3,308.048570854914,944.0,31084.26197114368,6,5,0,1,200.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09615798511718779,15542.13098557184,3,2,3_0,3_1_0,3_2_0,3_1_0 -18459,2,66.0,0.0,1,111,850.0,0.0,0.0,74,74,0.0,745.3242034700096,1174.848093439541,3270.0,2924.555907123326,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106398,2,1,2,0,1,,432.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,345.537907974845,850.0,56525.66502097382,5,5,0,1,100.0,4,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05784982801682507,37683.776680649215,9,5,9,9_1,9_2,9_1_0 -18460,2,50.0,0.0,7,111,1925.0,0.0,0.0,0,55,0.0,0.0,2660.685388083666,2029.0,178.91400843577995,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,5,113472,2,1,1,0,1,,336.0,,12,1.0,2.0,7.0,1.0,1.0,2,2,422.920150486877,1925.0,26477.014531641566,0,1,1,2,120.0,4,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07663250694579736,26477.014531641566,7,4,7,7_1,7_2,7_0_0 -18461,2,43.0,0.0,9,111,1360.0,0.0,0.0,0,47,0.0,232.913813584378,1879.7569495032656,1585.0,0.0,0.0,60,2,2,2,2,2,2,2,1,2,15.0,1,2007.0,6,125939,2,1,1,0,1,,330.0,,32,1.0,0.0,6.0,3.0,2.0,2,2,361.085437929233,1360.0,40039.34013101038,0,1,1,2,128.0,4,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03958606697347694,20019.67006550519,5,3,5,5_1,5_2,5_0_0 -18462,2,48.0,0.0,1,111,630.0,1500.0,0.0,56,53,0.0,0.0,870.7697633728362,2130.0,0.0,2720.4793512711735,20,0,0,0,0,0,0,0,0,2,40.0,1,,1,119338,2,1,2,0,1,,370.0,,43,3.0,0.0,5.0,5.0,3.0,1,1,302.775249404102,630.0,40625.73342373129,1,1,1,2,120.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05242982268858616,13541.911141243763,3,2,3_0,3_1_0,3_2_0,3_1_0 -18463,2,79.0,0.0,1,111,595.0,1777.0,0.0,77,78,0.0,0.0,822.3936654076787,2372.0,0.0,3222.8612048059167,50,2,2,2,1,2,2,2,2,0,,1,,1,113338,2,1,2,0,1,,290.0,,41,0.0,4.0,9.0,2.0,1.5,1,1,312.163129495623,595.0,31882.63759457002,5,5,0,1,120.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07439785974307153,21255.091729713346,5,3,5,5_1,5_2,5_1_0 -18464,2,28.0,0.0,2,111,280.0,160.0,0.0,54,45,1418.9056331671006,0.0,387.00878372126056,1390.0,0.0,290.18446413559184,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,125072,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,312.259853406534,280.0,41173.583208761156,1,1,1,2,80.0,4,4,3,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033759510143975706,22874.212893756197,6,3,6,6_1,6_2,6_0_1 -18465,2,50.0,0.0,1,111,300.0,2200.0,0.0,56,48,0.0,0.0,414.65226827277917,2500.0,0.0,3990.0363818643877,70,2,2,2,2,2,1,2,2,2,10.0,1,,1,131783,1,3,4,0,2,,400.0,556.0,43,2.0,3.0,3.0,2.0,1.5,1,1,272.698105761074,300.0,41156.87378512142,1,1,2,3,60.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06074319475897056,27437.91585674761,7,4,7,7_1,7_2,7_1_0 -18466,2,41.0,0.0,1,111,900.0,2000.0,0.0,42,38,0.0,0.0,1243.9568048183376,2900.0,0.0,3627.3058016948976,50,2,2,2,1,2,1,2,2,2,45.0,1,,1,123071,2,1,2,0,1,,720.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,295.472618720934,900.0,64675.05882637898,1,1,1,2,200.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04483954174336489,30797.64706018047,8,4,8,8_1,8_2,8_1_0 -18468,2,70.0,0.0,2,111,245.0,1348.0,0.0,0,75,0.0,0.0,338.632685756103,1593.0,0.0,2444.804110342361,70,0,0,0,0,0,0,0,0,0,,1,,2,115460,1,1,2,0,2,,420.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,405.046072299278,245.0,36781.32965417491,0,5,0,1,120.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04331001665730115,36781.32965417491,9,5,9,9_1,9_2,9_0_1 -18469,1,46.0,105.0,2,111,911.0,1500.0,0.0,46,54,0.0,0.0,1259.1607213216728,2411.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,117648,1,1,1,0,1,,460.0,,43,2.0,0.0,8.0,4.0,2.3,2,2,355.241576255454,911.0,96510.10341787133,1,1,1,2,200.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.024981840394065324,41960.914529509275,9,5,9,9_1,9_2,9_0_1 -18470,2,66.0,0.0,1,111,1000.0,2110.0,0.0,46,75,0.0,0.0,1382.1742275759307,3110.0,0.0,3826.807620788117,50,0,0,0,0,0,0,0,0,0,,1,,1,105280,2,1,2,0,1,,520.0,713.0,42,1.0,6.0,8.0,3.0,2.0,1,1,392.500447648325,1000.0,47933.93707558145,1,5,2,3,200.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06488096304495503,23966.968537790726,6,3,6,6_1,6_2,6_1_0 -18471,2,39.0,0.0,7,112,1500.0,0.0,0.0,55,64,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,102764,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,273.925435165789,1500.0,42530.8737335256,1,1,1,2,100.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03526849717215197,14176.957911175201,3,2,3_0,3_1_0,3_0_0,3_0_0 -18472,2,93.0,0.0,1,112,500.0,1500.0,0.0,86,77,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,1,,1,114590,2,1,2,0,1,,257.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,245.543346987265,500.0,44270.3121394531,6,5,0,1,120.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04517700245030862,29513.541426302065,8,4,8,8_1,8_0,8_1_0 -18473,2,80.0,0.0,7,112,1590.0,0.0,0.0,77,75,0.0,362.31037668681023,2197.6570218457296,2080.0,240.84578058662683,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,106167,2,1,1,0,1,,250.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,348.236843635159,1590.0,40066.022297189345,5,5,0,1,80.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05191431244588293,26710.681531459562,7,4,7,7_1,7_0,7_0_0 -18474,2,44.0,0.0,9,112,1000.0,2000.0,0.0,22,46,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,103070,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,284.016652933452,1000.0,79902.03059841366,1,1,1,2,180.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03754597946425107,38048.5859992446,9,5,9,9_1,9_0,9_0_0 -18475,2,66.0,0.0,1,112,500.0,0.0,0.0,71,71,0.0,0.0,691.0871137879653,680.0,309.6588607542345,0.0,41,0,0,0,0,0,0,0,0,0,,5,,1,108165,2,1,2,0,2,,500.0,,41,0.0,3.0,9.0,2.0,1.5,3,3,245.543346987265,500.0,24918.01583386623,5,5,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02728949225065536,16612.01055591082,4,2,4_0,4_1_0,4_0_0,4_1_0 -18476,2,60.0,0.0,8,112,1480.0,0.0,0.0,46,42,0.0,0.0,2045.6178568123773,1480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,129154,2,1,1,0,1,,220.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,283.599628867204,1480.0,95702.16213960467,1,1,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01546464538430243,63801.441426403115,10,5,10,10_1,10_0,10_0_0 -18477,2,57.0,0.0,6,112,2500.0,0.0,0.0,42,37,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,50,2,2,1,1,2,2,2,2,2,60.0,1,,4,111152,1,1,1,0,1,,225.0,,43,2.0,2.0,4.0,2.0,1.5,4,4,289.678421934698,2500.0,130493.79794816957,1,1,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0191579986122633,86995.86529877971,10,5,10,10_1,10_0,10_0_0 -18478,2,83.0,0.0,2,112,300.0,0.0,0.0,0,71,1269.5471454653007,0.0,414.65226827277917,1275.0,215.04087552377396,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,115013,2,1,2,0,2,,250.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,319.753251142417,300.0,17391.98237541945,0,6,0,1,80.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07330964190729582,17391.98237541945,4,2,4_0,4_1_0,4_0_0,4_0_1 -18479,2,45.0,0.0,8,112,600.0,1100.0,0.0,33,63,0.0,0.0,829.3045365455583,1700.0,0.0,1995.0181909321939,31,0,0,0,0,0,0,0,0,2,35.0,1,1999.0,6,102382,2,1,1,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,293.607370348931,600.0,63912.84837862017,1,1,1,2,120.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026598720650489367,27788.194947226162,7,4,7,7_1,7_0,7_0_0 -18480,2,30.0,0.0,1,111,0.0,0.0,0.0,56,53,0.0,0.0,0.0,2738.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,110233,2,1,2,0,1,,632.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,523.902286397927,0.0,45767.0,1,1,1,2,95.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059824764568357114,25426.11111111111,7,4,7,7_1,7_2,7_1_0 -18481,2,62.0,0.0,2,111,1200.0,1000.0,0.0,78,78,0.0,25.879312620486445,1658.6090730911167,2225.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,2,114142,2,1,1,0,1,,400.0,243.0,41,0.0,1.0,3.0,2.0,1.5,1,1,156.738340053773,1200.0,21400.492558207443,6,5,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10396956957641032,14266.995038804962,3,2,3_0,3_1_0,3_2_0,3_0_1 -18482,1,51.0,386.0,1,111,998.0,1828.0,0.0,56,53,0.0,0.0,1379.4098791207787,2946.0,206.439240502823,3315.3575027491365,70,0,0,0,0,0,0,0,0,1,7.0,1,,1,118887,2,1,2,0,2,,650.0,700.0,43,2.0,3.0,6.0,6.0,2.8999999999999995,2,2,633.956767781551,998.0,36901.68646013852,1,1,2,3,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07983374969006611,12724.719469013284,2,1,2_1,2_1_1,2_2_1,2_1_0 -18483,2,71.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2590.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,109975,2,1,1,0,1,,169.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,624.755252277173,0.0,21247.835569453597,0,5,0,1,60.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1218947686004991,21247.835569453597,5,3,5,5_1,5_2,5_0_1 -18484,1,62.0,270.0,2,111,0.0,0.0,140.0,0,78,0.0,0.0,71.52786687725352,140.0,0.0,160.0544084513684,70,2,2,2,2,1,2,2,2,0,,1,,2,125779,1,3,3,0,1,,180.0,351.0,11,0.0,3.0,4.0,1.0,1.0,1,1,738.952141471841,0.0,12535.352461981216,0,5,2,3,99.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.011168413526832174,12535.352461981216,2,1,2_1,2_1_1,2_2_1,2_0_1 -18485,2,53.0,0.0,1,111,600.0,1780.0,0.0,0,37,0.0,0.0,829.3045365455583,2380.0,0.0,3228.302163508459,33,0,0,0,0,0,0,0,0,2,6.0,2,,1,116873,2,2,0,1,1,1780.0,0.0,300.0,12,1.0,4.0,5.0,1.0,1.0,1,1,873.809719532772,600.0,125510.06972575061,0,1,2,3,96.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018962621925081292,125510.06972575061,10,5,10,10_0,10_2,10_1_0 -18486,2,24.0,0.0,1,111,850.0,0.0,0.0,0,62,0.0,0.0,1174.848093439541,850.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,10.0,2,,1,102009,2,1,0,1,1,532.0,0.0,550.0,12,1.0,0.0,3.0,1.0,1.0,2,2,912.103079612295,850.0,82805.71413527794,0,1,2,3,100.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010264992082688556,82805.71413527794,10,5,10,10_0,10_2,10_1_0 -18487,2,33.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1347.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,102771,2,2,2,0,1,,751.0,,32,1.0,0.0,5.0,4.0,2.1,2,2,168.976841389638,0.0,48645.94535949995,0,1,0,1,100.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02768987199334893,23164.735885476166,6,3,6,6_1,6_2,6_0_1 -18488,2,68.0,0.0,2,111,770.0,1500.0,0.0,52,77,0.0,0.0,1064.2741552334664,2270.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,0,,1,,2,124682,2,2,2,0,1,,330.0,,42,1.0,2.0,4.0,3.0,2.0,2,2,594.424887060875,770.0,17479.64883206606,4,5,1,2,110.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12986530918377096,8739.82441603303,1,1,1_0,1_1_0,1_2_0,1_0_1 -18489,1,43.0,29.0,2,111,0.0,0.0,105.0,55,62,0.0,0.0,53.64590015794013,105.0,0.0,120.04080633852631,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,113983,2,1,2,0,2,,300.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,180.195459861619,0.0,26194.915033029924,4,1,1,2,66.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.004008411551158019,14552.730573905512,3,2,3_1,3_1_1,3_2_1,3_0_1 -18490,1,34.0,180.0,1,111,287.0,332.0,0.0,85,67,0.0,465.827627168756,396.68400331429206,1069.0,0.0,602.132763081353,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,112529,1,2,1,0,1,,418.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,577.391903311592,287.0,26844.48342564336,6,1,1,2,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0398219620415132,11185.201427351401,2,1,2_1,2_1_1,2_2_1,2_1_0 -18491,2,72.0,0.0,1,111,300.0,0.0,0.0,0,75,2987.1697540360015,258.79312620486445,414.65226827277917,2720.0,292.4555907123326,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,125011,2,1,2,0,2,,150.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,558.729102120053,300.0,15301.886954750433,0,5,0,1,108.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1777558550813619,15301.886954750433,3,2,3_0,3_1_0,3_2_0,3_1_0 -18492,2,38.0,0.0,2,111,459.0,0.0,0.0,0,37,4032.679167948602,0.0,634.4179704573521,3199.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,113031,2,1,2,0,1,,162.0,,22,1.0,1.0,7.0,2.0,1.5,1,1,664.319969590328,459.0,99162.010438165,0,1,1,2,168.0,7,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032260338267292576,66108.00695877666,10,5,10,10_1,10_2,10_0_1 -18494,2,44.0,0.0,2,111,490.0,0.0,0.0,0,43,0.0,0.0,677.265371512206,490.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,3.0,2,,2,107509,1,2,0,0,2,336.0,250.0,246.0,12,1.0,0.0,2.0,1.0,1.0,3,2,719.190916167912,490.0,19140.376621962445,0,1,2,3,52.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02560033220233264,19140.376621962445,5,3,5,5_0,5_2,5_0_1 -18495,1,51.0,377.0,2,111,700.0,0.0,0.0,85,85,0.0,0.0,967.5219593031513,700.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,117266,1,3,0,1,2,60.0,300.0,409.0,41,1.0,3.0,4.0,5.0,2.8,1,1,669.104346649929,700.0,28866.37575548479,6,7,2,3,83.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024249667014987,10309.41991267314,2,1,2_1,2_0_1,2_2_1,2_0_1 -18496,1,36.0,389.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1462.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,126231,2,1,0,0,2,50.0,295.0,352.0,32,1.0,0.0,3.0,3.0,1.6,2,2,604.887811610895,0.0,15033.292829068141,0,4,2,3,72.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09725081634630968,9395.808018167587,1,1,1_1,1_0_1,1_2_1,1_0_1 -18497,1,25.0,93.0,2,111,0.0,0.0,0.0,56,62,0.0,0.0,0.0,985.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,105486,1,1,0,0,2,60.0,303.0,409.0,43,2.0,0.0,4.0,3.0,1.8,2,1,552.390481432452,0.0,27805.02486378374,1,4,2,3,110.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03542525154447785,15447.23603543541,3,2,3_1,3_0_1,3_2_1,3_0_1 -18498,1,53.0,373.0,5,111,370.0,0.0,0.0,0,67,0.0,0.0,511.40446420309434,370.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,2,,3,130123,1,2,0,0,2,60.0,105.0,353.0,32,1.0,0.0,3.0,2.0,1.5,3,2,559.855395213014,370.0,8906.577358770825,0,4,2,3,71.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.04154233271612911,5937.71823918055,1,1,1_1,1_0_1,1_2_1,1_0_0 -18499,1,55.0,172.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,261.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,106686,1,2,0,1,1,396.0,179.0,259.0,11,0.0,0.0,2.0,1.0,1.0,1,1,740.74322223714,0.0,15140.883334327937,0,7,2,3,50.0,7,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017238095970811145,15140.883334327937,3,2,3_1,3_0_1,3_2_1,3_0_0 -18500,1,47.0,153.0,5,111,822.0,0.0,0.0,85,90,0.0,414.0690019277831,1136.147215067415,1222.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,2,,3,105535,1,3,0,0,2,60.0,676.0,409.0,42,2.0,1.0,4.0,4.0,2.5,1,1,594.004748733917,822.0,12131.198362852536,6,4,2,3,85.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,0,0,1,0.10073201042874204,4852.479345141014,1,1,1_1,1_0_1,1_2_1,1_0_0 -18501,1,38.0,384.0,2,111,360.0,0.0,0.0,0,52,0.0,0.0,497.582721927335,360.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,105868,1,1,0,0,1,50.0,250.0,352.0,32,1.0,0.0,4.0,3.0,2.0,1,1,709.132053085693,360.0,9409.165169030091,0,4,2,3,80.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038260567599017845,4704.582584515046,1,1,1_1,1_0_1,1_2_1,1_0_1 -18502,2,48.0,0.0,1,111,550.0,1130.0,0.0,0,47,0.0,0.0,760.1958251667618,1680.0,0.0,2049.4277779576173,50,0,0,0,0,0,0,0,0,0,,1,,1,112189,2,1,3,0,1,,300.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,581.93084851495,550.0,31075.652549584236,0,1,1,2,70.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05406161615816099,31075.652549584236,8,4,8,8_1,8_2,8_1_0 -18503,2,57.0,0.0,5,111,900.0,0.0,0.0,85,21,0.0,1035.1725048194578,1243.9568048183376,2020.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,3.0,1,,3,133148,2,1,2,0,1,,380.0,,42,3.0,3.0,6.0,5.0,3.0,1,1,635.877254432322,900.0,13766.527419541564,6,1,1,2,177.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14673271903941534,4588.842473180522,1,1,1_0,1_1_0,1_2_0,1_0_0 -18504,2,73.0,0.0,2,111,1155.0,0.0,0.0,0,77,3733.962192545002,46.5827627168756,1596.4112328502,3860.0,275.25232067043066,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,111611,1,1,2,0,2,,600.0,,21,1.0,2.0,5.0,2.0,1.5,1,1,664.319969590328,1155.0,35805.416500534164,0,5,0,1,120.0,7,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.1078049182849867,23870.277667022776,6,3,6,6_1,6_2,6_0_1 -18505,1,31.0,288.0,2,111,1800.0,0.0,0.0,0,63,0.0,546.5710825446737,2487.913609636675,3178.0,1462.277953561663,0.0,10,2,2,2,1,1,1,2,2,0,,1,,2,114580,1,2,2,0,1,,700.0,580.0,32,1.0,0.0,3.0,2.0,1.3,1,1,645.54053404924,1800.0,13702.132946727092,0,4,2,3,80.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.23193469311353462,10540.102266713147,2,1,2_1,2_1_1,2_2_1,2_0_1 -18506,1,51.0,161.0,5,111,384.0,0.0,0.0,0,52,0.0,0.0,530.7549033891573,414.0,51.60981012570575,0.0,71,2,1,2,1,1,2,2,2,2,5.0,2,,3,109149,2,2,0,1,1,67.0,0.0,291.0,12,1.0,3.0,2.0,1.0,1.0,1,1,635.75763182292,384.0,11103.115784696767,0,1,2,3,40.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03728683083451305,11103.115784696767,2,1,2_1,2_0_1,2_2_1,2_0_0 -18507,2,61.0,0.0,5,111,0.0,0.0,1200.0,77,78,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,41,0,0,0,0,0,0,0,0,0,,1,,3,114878,1,1,2,0,2,,500.0,495.0,41,0.0,3.0,4.0,2.0,1.5,2,2,722.257670642949,0.0,31896.209368494114,5,5,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03762202543056151,21264.139578996077,5,3,5,5_1,5_2,5_0_0 -18508,2,54.0,0.0,1,111,420.0,0.0,0.0,0,56,0.0,1293.9656310243222,580.5131755818909,1820.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,1,108878,2,2,3,0,1,,800.0,,12,1.0,2.0,4.0,1.0,1.0,2,1,627.286634740285,420.0,27508.18354995131,0,1,0,1,80.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06616212941487448,27508.18354995131,7,4,7,7_1,7_2,7_1_0 -18509,1,37.0,491.0,2,111,470.0,2500.0,0.0,0,85,0.0,0.0,649.6218869606873,2970.0,0.0,4534.132252118622,42,1,2,2,1,1,2,2,2,0,,1,,2,109525,1,2,2,0,1,,810.0,620.0,31,0.0,0.0,7.0,4.0,1.9,3,1,662.100597281146,470.0,12850.368344691975,0,6,2,3,110.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.23112177957348592,6763.351760364198,1,1,1_1,1_1_1,1_2_1,1_0_1 -18510,1,41.0,565.0,1,111,0.0,0.0,2200.0,62,85,0.0,0.0,1124.0093366425551,2200.0,0.0,2515.1407042357896,71,0,0,0,0,0,0,0,0,0,,1,,1,127532,2,1,1,0,1,,450.0,729.0,42,1.0,2.0,6.0,7.0,2.9999999999999996,1,1,494.183367084837,0.0,7509.080062794348,4,6,2,3,90.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2929786314172439,2503.0266875981165,1,1,1_1,1_1_1,1_2_1,1_1_0 -18511,2,62.0,0.0,1,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,3230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,125531,2,1,3,0,1,,430.0,,43,2.0,2.0,8.0,3.0,2.0,2,2,535.213718284643,0.0,123193.29967603003,1,1,0,1,250.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026218958405158033,61596.649838015015,10,5,10,10_1,10_2,10_1_0 -18512,2,49.0,0.0,1,111,400.0,1222.0,0.0,0,46,0.0,0.0,552.8696910303722,1622.0,0.0,2216.2838448355824,20,0,0,0,0,0,0,0,0,0,,1,,1,129909,2,1,2,0,1,,210.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,558.729102120053,400.0,21597.125162343353,0,1,1,2,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07510258832171383,21597.125162343353,6,3,6,6_1,6_2,6_1_0 -18513,2,34.0,0.0,5,111,0.0,0.0,0.0,62,54,0.0,0.0,0.0,1220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,3,102848,1,1,2,0,2,,728.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,178.673015572738,0.0,44789.91465368023,1,1,1,2,80.0,7,6,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027238274719502215,29859.943102453486,8,4,8,8_1,8_2,8_0_0 -18514,2,34.0,0.0,6,111,511.0,1443.0,0.0,21,46,0.0,0.0,706.2910302913006,1954.0,0.0,2617.1011359228687,50,0,0,0,0,0,0,0,0,1,10.0,1,,4,107476,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,640.022846907422,511.0,52409.39059955907,1,1,1,2,95.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0372833947818588,24956.8526664567,7,4,7,7_1,7_2,7_0_0 -18515,2,44.0,0.0,5,111,460.0,853.0,0.0,52,22,0.0,0.0,635.800144684928,1313.0,0.0,1547.045924422874,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,124559,2,1,2,0,1,,420.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,620.359917971579,460.0,39860.599998298254,1,1,0,1,120.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03293979518763027,17330.695651434024,4,2,4_0,4_1_0,4_2_0,4_0_0 -18516,1,56.0,242.0,2,111,0.0,0.0,2130.0,85,68,0.0,0.0,1088.2454032039284,2130.0,0.0,2435.113500010105,31,2,2,2,1,2,2,2,2,1,1.0,1,,2,120379,2,3,2,0,1,,430.0,383.0,42,1.0,1.0,5.0,5.0,2.8,2,2,695.497005734671,0.0,28496.561225939822,6,1,2,3,84.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.0747458608465749,10177.34329497851,2,1,2_1,2_1_1,2_2_1,2_0_1 -18517,1,47.0,77.0,6,111,520.0,420.0,0.0,52,46,0.0,0.0,718.7305983394839,940.0,0.0,761.7342183559285,41,0,0,0,0,0,0,0,0,2,40.0,1,,4,133396,2,3,3,0,1,,500.0,381.0,43,2.0,0.0,4.0,4.0,2.1,1,1,569.78557492451,520.0,25439.23338547739,4,1,2,3,83.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03695079901804832,12113.920659751137,2,1,2_1,2_1_1,2_2_1,2_0_0 -18518,1,42.0,304.0,9,111,500.0,800.0,0.0,43,67,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,130946,2,1,1,0,1,,500.0,525.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,153.451284452989,500.0,37507.46622776924,4,1,2,3,95.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03465976592781745,14425.948549142018,3,2,3_1,3_1_1,3_2_1,3_0_0 -18519,2,89.0,0.0,6,111,306.0,1220.0,0.0,0,77,0.0,0.0,422.9453136382348,1526.0,0.0,2212.656539033888,71,0,0,0,0,0,0,0,0,0,,1,,4,109350,1,2,2,0,1,,220.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,706.294516117815,306.0,20381.005611015826,0,5,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07487363622407352,20381.005611015826,5,3,5,5_1,5_2,5_0_0 -18520,2,67.0,0.0,5,111,0.0,0.0,2130.0,77,78,0.0,0.0,1088.2454032039284,2130.0,0.0,2435.113500010105,33,2,2,1,2,1,2,2,2,0,,1,,3,121617,2,1,1,0,1,,620.0,,41,1.0,2.0,4.0,3.0,2.0,1,1,619.11323031166,0.0,67501.05187152678,5,5,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.031555063824101295,33750.52593576339,9,5,9,9_1,9_2,9_0_0 -18521,2,81.0,0.0,5,111,540.0,1777.0,0.0,86,77,0.0,0.0,746.3740828910024,2317.0,0.0,3222.8612048059167,70,1,2,2,1,2,2,2,2,0,,1,,3,111558,1,1,3,0,1,,260.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,664.319969590328,540.0,52063.0830481019,6,5,0,1,120.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04450370328355867,34708.72203206793,9,5,9,9_1,9_2,9_0_0 -18522,2,60.0,0.0,1,111,492.0,1400.0,0.0,0,74,0.0,108.69311300604306,680.0297199673578,1997.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,1,127998,2,1,2,0,1,,175.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,721.172611099737,492.0,27742.80075957172,0,5,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07198263857015237,27742.80075957172,7,4,7,7_1,7_2,7_1_0 -18523,2,55.0,0.0,2,111,411.0,2286.0,0.0,52,54,0.0,0.0,568.0736075337074,2697.0,0.0,4146.010531337268,50,0,0,0,0,0,0,0,0,0,,1,,2,101801,2,2,2,0,1,,240.0,,43,2.0,3.0,3.0,2.0,1.5,1,1,519.078842594681,411.0,35975.02227058262,1,4,1,2,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07496868187362825,23983.348180388417,6,3,6,6_1,6_2,6_0_1 -18524,1,29.0,370.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1595.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,116884,2,2,5,0,1,,214.0,470.0,31,0.0,0.0,4.0,2.0,1.3,1,1,520.451914105418,0.0,8762.948422112366,0,6,2,3,95.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.18201636289164816,6740.72955547105,1,1,1_1,1_1_1,1_2_1,1_1_0 -18525,2,47.0,0.0,2,111,2300.0,0.0,0.0,90,56,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,118177,2,1,1,0,1,,450.0,,43,3.0,0.0,5.0,5.0,2.8,1,1,635.877254432322,2300.0,31597.440705144836,4,1,0,1,130.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07279070547082327,11284.800251837441,2,1,2_0,2_1_0,2_2_0,2_0_1 -18526,2,48.0,0.0,1,111,650.0,2830.0,0.0,56,34,0.0,414.0690019277831,898.4132479243549,3880.0,0.0,5132.63770939828,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,108641,1,1,2,0,1,,600.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,2,2,583.068712231602,650.0,68301.70174378574,1,1,0,1,152.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056806783739513665,22032.807014124435,6,3,6,6_1,6_2,6_1_0 -18527,2,55.0,0.0,2,111,460.0,3174.0,0.0,54,64,0.0,0.0,635.800144684928,3634.0,0.0,5756.534307289803,42,1,2,2,2,1,2,2,2,2,15.0,1,,2,102495,1,3,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,628.369365309851,460.0,61445.07657331724,1,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.059142248698540616,24578.030629326895,7,4,7,7_1,7_2,7_0_1 -18528,2,57.0,0.0,2,111,401.0,1200.0,0.0,67,63,0.0,0.0,554.2518652579481,1601.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,128551,2,2,2,0,1,,280.0,420.0,43,2.0,3.0,4.0,2.0,1.5,1,1,320.000163161519,401.0,27616.43052067564,4,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057972734702313414,18410.953680450428,4,2,4_0,4_1_0,4_3_0,4_0_1 -18529,2,66.0,0.0,2,111,580.0,0.0,0.0,86,75,2325.5116535170273,0.0,801.6610519940398,2137.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124257,2,1,1,0,1,,355.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,350.300991359631,580.0,16843.967119303656,6,5,0,1,100.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12687034977353634,11229.311412869103,2,1,2_0,2_1_0,2_3_0,2_0_1 -18530,2,47.0,0.0,2,111,180.0,0.0,0.0,0,62,0.0,0.0,248.7913609636675,230.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,124198,2,2,0,1,1,384.0,0.0,198.0,12,1.0,0.0,1.0,1.0,1.0,1,1,455.527290455942,180.0,17191.833225513245,0,1,2,3,30.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013378445275904169,17191.833225513245,4,2,4_0,4_0_0,4_3_0,4_0_1 -18531,1,85.0,200.0,7,111,1000.0,0.0,0.0,0,86,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,100024,2,1,1,0,1,,180.0,246.0,11,0.0,8.0,2.0,1.0,1.0,1,1,364.275819328031,1000.0,10477.091450503201,0,6,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09544633686975895,10477.091450503201,2,1,2_1,2_1_1,2_3_1,2_0_0 -18532,0,62.0,0.0,1,111,417.0,957.0,0.0,0,77,0.0,0.0,576.366652899163,1374.0,0.0,1735.6658261110085,60,1,2,2,1,2,2,2,2,0,,1,,1,115154,2,2,2,0,1,,390.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,460.837966326272,417.0,14977.928304311095,0,5,5,0,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.09173498310874686,14977.928304311095,3,2,3_0,3_1_0,3_3_0,3_1_0 -18533,1,46.0,215.0,2,111,480.0,1200.0,0.0,62,68,0.0,0.0,663.4436292364467,1680.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,1,5.0,1,,2,125272,2,3,4,0,1,,480.0,599.0,43,2.0,1.0,4.0,2.0,1.5,2,2,409.549727867675,480.0,10148.661224101905,4,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.16553907583496758,6765.77414940127,1,1,1_1,1_1_1,1_3_1,1_0_1 -18534,0,83.0,0.0,2,111,270.0,1236.0,0.0,0,86,0.0,0.0,373.1870414455012,1506.0,0.0,2241.674985447447,50,0,0,0,0,0,0,0,0,0,,1,,2,130639,2,2,2,0,1,,250.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,398.599650208908,270.0,16152.754656082772,0,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09323487120711473,16152.754656082772,4,2,4_0,4_1_0,4_3_0,4_0_1 -18535,1,61.0,270.0,2,111,260.0,620.0,0.0,0,77,0.0,0.0,359.36529916974195,1015.0,232.24414556567586,1124.4647985254182,12,0,0,0,0,0,0,0,0,0,,1,,2,114621,2,1,2,0,1,,240.0,486.0,11,0.0,0.0,3.0,1.0,1.0,2,2,398.599650208908,260.0,9792.427419471873,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10365152137678454,9792.427419471873,2,1,2_1,2_1_1,2_3_1,2_0_1 -18536,2,64.0,0.0,2,111,380.0,1100.0,0.0,72,72,0.0,0.0,525.2262064788536,1480.0,0.0,1995.0181909321939,71,2,2,2,2,1,2,2,2,0,,1,,2,116094,2,1,2,0,2,,320.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,336.925803455855,380.0,22565.584937242405,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06558660030821524,15043.723291494936,3,2,3_0,3_1_0,3_3_0,3_0_1 -18537,0,89.0,0.0,1,111,380.0,930.0,0.0,0,86,0.0,0.0,525.2262064788536,1310.0,0.0,1686.6971977881274,50,2,2,2,1,2,2,2,2,0,,1,,1,107203,2,2,5,0,1,,450.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,398.599650208908,380.0,22070.689774217237,0,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.059354737590953284,22070.689774217237,6,3,6,6_1,6_3,6_1_0 -18538,1,73.0,250.0,2,111,290.0,1250.0,0.0,0,86,0.0,0.0,400.8305259970199,1540.0,0.0,2267.066126059311,42,0,0,0,0,0,0,0,0,0,,1,,2,121017,2,3,4,0,1,,150.0,347.0,11,0.0,4.0,4.0,1.0,1.0,2,2,477.919342181184,290.0,11982.376274926306,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.12852208649318778,11982.376274926306,2,1,2_1,2_1_1,2_3_1,2_0_1 -18539,2,59.0,0.0,6,111,700.0,0.0,0.0,77,47,0.0,0.0,967.5219593031513,850.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,108350,2,1,1,0,1,,250.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,342.328097269781,700.0,40705.08959368529,5,1,0,1,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02088190957161935,27136.726395790192,7,4,7,7_1,7_3,7_0_0 -18540,2,78.0,0.0,1,111,280.0,1600.0,0.0,0,86,0.0,0.0,387.00878372126056,1880.0,0.0,2901.844641355918,50,1,2,2,1,2,2,2,2,0,,1,,1,131216,2,3,3,0,2,,120.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,276.027563838557,280.0,15593.97779265463,0,6,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.12055936111987751,10395.985195103087,2,1,2_0,2_1_0,2_3_0,2_1_0 -18541,2,35.0,0.0,9,111,590.0,1000.0,0.0,55,64,0.0,0.0,815.482794269799,1590.0,0.0,1813.6529008474488,41,1,2,2,1,2,2,2,2,0,,1,2008.0,6,116290,2,1,1,0,1,,490.0,424.0,43,2.0,0.0,3.0,3.0,1.8,2,2,310.888373620507,590.0,38702.355352778264,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04108277094525362,21501.308529321257,6,3,6,6_1,6_3,6_0_0 -18542,2,36.0,0.0,9,111,550.0,1000.0,0.0,52,62,0.0,0.0,760.1958251667618,1550.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,108378,2,1,1,0,1,,450.0,620.0,43,2.0,0.0,5.0,4.0,2.1,1,1,315.022788779358,550.0,26230.519928576603,4,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05909147070742454,12490.723775512668,2,1,2_0,2_1_0,2_3_0,2_0_0 -18544,2,63.0,0.0,8,111,460.0,1060.0,0.0,77,77,0.0,0.0,635.800144684928,1520.0,0.0,1922.472074898296,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,131886,2,1,1,0,1,,130.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,362.414602296134,460.0,28098.738161311572,6,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0540949558401469,18732.49210754105,5,3,5,5_1,5_3,5_0_0 -18545,2,42.0,0.0,8,111,700.0,1400.0,0.0,21,46,0.0,0.0,967.5219593031513,2100.0,0.0,2539.1140611864284,71,1,2,2,1,2,2,2,2,2,10.0,1,2001.0,6,107357,2,1,1,0,1,,430.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,370.108992682822,700.0,29354.06455254841,1,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07154034822811908,11290.024827903237,2,1,2_0,2_1_0,2_3_0,2_0_0 -18546,2,65.0,0.0,7,111,400.0,1560.0,0.0,0,77,0.0,0.0,552.8696910303722,1960.0,0.0,2829.2985253220204,50,0,0,0,0,0,0,0,0,0,,1,,5,112799,2,1,1,0,1,,430.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,348.533510209618,400.0,21151.838380474812,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09266334040303888,21151.838380474812,5,3,5,5_1,5_3,5_0_0 -18547,2,77.0,0.0,2,111,340.0,1380.0,0.0,0,77,0.0,0.0,469.9392373758164,1720.0,0.0,2502.8410031694793,20,0,0,0,0,0,0,0,0,0,,1,,2,119900,2,1,2,0,1,,190.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,415.092714087674,340.0,35412.08989925518,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04857098253430608,35412.08989925518,9,5,9,9_1,9_3,9_0_1 -18548,2,47.0,0.0,2,111,0.0,0.0,0.0,55,54,0.0,0.0,0.0,2293.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,122594,2,1,2,0,1,,225.0,700.0,43,2.0,0.0,4.0,2.0,1.5,2,2,354.238127497574,0.0,67334.06667162616,1,1,2,3,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03405408455696684,44889.377781084106,10,5,10,10_1,10_3,10_0_1 -18549,2,78.0,0.0,2,111,430.0,1100.0,0.0,86,78,0.0,0.0,594.3349178576501,1530.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,1,,2,108316,2,1,2,0,1,,460.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,350.300991359631,430.0,24831.878573943453,6,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061614347679899546,16554.5857159623,4,2,4_0,4_1_0,4_3_0,4_0_1 -18550,2,79.0,0.0,2,111,290.0,1820.0,0.0,77,78,0.0,0.0,400.8305259970199,2110.0,0.0,3300.848279542357,50,0,0,0,0,0,0,0,0,0,,1,,2,132061,2,1,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,336.925803455855,290.0,22933.856795842305,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09200371393190715,15289.23786389487,3,2,3_0,3_1_0,3_3_0,3_0_1 -18551,2,52.0,0.0,2,111,600.0,1100.0,0.0,68,62,0.0,0.0,829.3045365455583,1700.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,1,,2,103554,1,2,3,0,1,,720.0,580.0,43,2.0,2.0,4.0,3.0,2.0,1,1,332.710628208613,600.0,42574.20533476378,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0399302814141283,21287.10266738189,6,3,6,6_1,6_3,6_0_1 -18552,2,67.0,0.0,1,111,300.0,900.0,0.0,78,78,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,71,1,2,2,1,2,2,2,2,0,,1,,1,102119,2,1,2,0,1,,275.0,418.0,41,0.0,4.0,3.0,2.0,1.5,2,2,265.564372514215,300.0,24449.025276913144,6,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0490817112914985,16299.350184608762,4,2,4_0,4_1_0,4_3_0,4_1_0 -18553,2,72.0,0.0,7,111,330.0,900.0,0.0,0,77,0.0,0.0,456.1174951000571,1230.0,0.0,1632.287610762704,70,0,0,0,0,0,0,0,0,0,,1,,5,109898,2,2,2,0,1,,290.0,490.0,11,0.0,4.0,3.0,1.0,1.0,2,2,440.961930478525,330.0,18233.42334786076,0,5,2,3,45.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06745853351473408,18233.42334786076,4,2,4_0,4_1_0,4_3_0,4_0_0 -18555,2,62.0,0.0,5,111,1100.0,0.0,0.0,77,77,0.0,341.60692659042104,1520.3916503335236,1515.0,146.2277953561663,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,123740,2,1,2,0,1,,310.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,443.616026675984,1100.0,26647.333438332833,6,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056853718722213155,17764.888958888554,4,2,4_0,4_1_0,4_3_0,4_0_0 -18556,1,45.0,89.0,2,111,370.0,942.0,0.0,85,63,0.0,0.0,511.40446420309434,1312.0,0.0,1708.461032598297,50,0,0,0,0,0,0,0,0,0,,1,,2,114522,2,2,2,0,1,,490.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,431.296912110909,370.0,23139.281029385427,6,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05670011952116588,8570.104084957566,1,1,1_1,1_1_1,1_3_1,1_0_1 -18557,2,66.0,0.0,5,111,2000.0,0.0,0.0,86,78,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107348,2,1,3,0,1,,450.0,,41,0.0,3.0,4.0,3.0,2.0,3,3,379.435184775176,2000.0,40542.84016254674,6,5,0,1,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04933053510759193,20271.42008127337,5,3,5,5_1,5_3,5_0_0 -18558,2,75.0,0.0,2,111,360.0,1620.0,0.0,86,78,0.0,0.0,497.582721927335,1980.0,0.0,2938.1176993728673,50,0,0,0,0,0,0,0,0,0,,1,,2,109551,2,1,2,0,1,,340.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,383.03698582048,360.0,22499.633607408243,6,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0880014330254722,14999.755738272162,3,2,3_0,3_1_0,3_3_0,3_0_1 -18559,1,69.0,72.0,2,111,480.0,420.0,0.0,0,86,0.0,0.0,663.4436292364467,900.0,0.0,761.7342183559285,42,2,1,2,1,1,2,2,2,0,,2,,2,124023,1,3,0,1,1,1200.0,850.0,361.0,21,1.0,0.0,4.0,2.0,1.5,1,1,254.821380075437,480.0,26587.69572957897,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03385024445720374,17725.13048638598,4,2,4_1,4_0_1,4_3_1,4_0_1 -18560,2,82.0,0.0,2,111,0.0,0.0,1820.0,86,78,0.0,0.0,929.8622694042956,1820.0,0.0,2080.7073098677893,60,2,2,2,2,1,2,2,2,0,,1,,2,110602,1,3,4,0,2,,270.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,310.856407845709,0.0,20931.028028559853,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,0,0,0,0.0869522508649196,13954.01868570657,3,2,3_0,3_1_0,3_3_0,3_0_1 -18561,1,47.0,82.0,2,111,0.0,0.0,2165.0,0,46,0.0,0.0,1106.1273699232418,2165.0,0.0,2475.1271021229472,50,0,0,0,0,0,0,0,0,0,,2,,2,108302,2,1,0,0,1,,0.0,613.0,32,1.0,0.0,3.0,3.0,2.0,2,2,354.165986606566,0.0,25561.603106870556,0,1,2,3,64.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08469734824331429,12780.801553435278,2,1,2_1,2_0_1,2_3_1,2_0_1 -18562,2,93.0,0.0,2,111,339.0,1170.0,0.0,78,74,0.0,0.0,468.55706314824045,1509.0,0.0,2121.973893991515,50,0,0,0,0,0,0,0,0,0,,1,,2,101765,2,2,2,0,1,,332.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,323.196700050649,339.0,38474.07557289288,5,5,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03922121526067736,25649.38371526192,7,4,7,7_1,7_3,7_0_1 -18563,2,63.0,0.0,2,111,589.0,1388.0,0.0,77,74,0.0,0.0,814.1006200422231,1977.0,0.0,2517.350226376259,71,0,0,0,0,0,0,0,0,0,,1,,2,120163,2,2,2,0,1,,286.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,337.005927271052,589.0,49921.64071641565,5,5,0,1,145.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03960206378693612,33281.09381094376,8,4,8,8_1,8_3,8_0_1 -18564,2,67.0,0.0,2,111,532.0,1372.0,0.0,74,43,0.0,0.0,735.3166890703951,1904.0,0.0,2488.3317799627,42,0,0,0,0,0,0,0,0,2,12.0,1,,2,115623,2,2,2,0,1,,397.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,341.076833765126,532.0,201018.36538237828,5,5,0,1,130.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00947177137958614,134012.2435882522,10,5,10,10_1,10_3,10_0_1 -18565,2,53.0,0.0,1,111,1753.0,85.0,0.0,0,54,0.0,0.0,2422.951420940606,1838.0,0.0,154.16049657203317,43,0,0,0,0,0,0,0,0,4,40.0,1,,1,123856,2,1,2,0,1,,460.0,,22,2.0,1.0,5.0,2.0,1.5,1,1,254.670126422948,1753.0,53804.84682369932,0,1,0,1,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03416049126619611,35869.89788246621,9,5,9,9_1,9_3,9_1_0 -18566,1,36.0,344.0,9,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1640.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2009.0,6,130410,2,1,0,0,1,,274.0,396.0,31,0.0,0.0,3.0,2.0,1.3,1,1,290.04754600775,0.0,15399.375733169298,0,6,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10649782357524676,11845.67364089946,2,1,2_1,2_0_1,2_3_1,2_0_0 -18567,2,85.0,0.0,2,111,321.0,0.0,0.0,0,78,0.0,1345.724256265295,443.6779270518737,2021.0,688.1308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,110823,1,2,3,0,2,,276.0,,21,0.0,0.0,6.0,2.0,1.5,1,1,310.856407845709,321.0,31039.74515652837,0,5,0,1,200.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06511007064679258,20693.16343768558,5,3,5,5_1,5_3,5_0_1 -18568,2,36.0,0.0,7,111,825.0,0.0,0.0,55,37,0.0,0.0,1140.2937377501428,825.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,128232,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,370.008185412586,825.0,51205.1544977363,1,1,1,2,73.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016111659228300386,34136.76966515753,9,5,9,9_0,9_3,9_0_0 -18569,2,87.0,0.0,2,111,230.0,0.0,0.0,0,77,0.0,0.0,317.900072342464,230.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,119667,1,2,0,1,2,,0.0,,11,0.0,7.0,4.0,1.0,1.0,2,2,443.872700148275,230.0,37398.73852620383,0,5,0,1,89.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006149940053161098,37398.73852620383,9,5,9,9_0,9_3,9_0_1 -18570,2,66.0,0.0,2,111,0.0,0.0,416.0,77,75,0.0,0.0,212.53994729241043,416.0,0.0,475.59024225549473,50,0,0,0,0,0,0,0,0,0,,1,,2,122806,2,2,5,1,1,240.0,178.0,351.0,41,0.0,1.0,2.0,2.0,1.5,3,2,307.952982200286,0.0,25384.76481174827,6,5,2,3,36.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016387782320814406,16923.176541165514,4,2,4_0,4_1_0,4_3_0,4_0_1 -18572,2,41.0,0.0,1,111,509.0,1004.0,0.0,46,34,0.0,0.0,703.5266818361487,1513.0,0.0,1820.9075124508388,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,102435,2,2,5,0,1,,482.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,272.136538078695,509.0,67144.03579659422,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0225336469881476,27976.68158191426,7,4,7,7_1,7_3,7_1_0 -18573,1,22.0,377.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1348.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,3.0,2,,1,120562,2,1,0,0,1,,0.0,485.0,32,1.0,0.0,2.0,2.0,1.3,1,1,393.905873129874,0.0,11003.92338727898,0,1,2,3,50.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12250176164969918,8464.55645175306,1,1,1_1,1_0_1,1_3_1,1_1_0 -18574,2,66.0,0.0,1,111,424.0,1164.0,0.0,0,74,0.0,0.0,586.0418724921946,1588.0,0.0,2111.0919765864305,50,0,0,0,0,0,0,0,0,0,,1,,1,129498,2,1,2,0,1,,167.0,,11,0.0,2.0,7.0,1.0,1.0,4,3,313.72144123124,424.0,42153.32288082842,0,5,0,1,115.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03767200048474072,42153.32288082842,9,5,9,9_1,9_3,9_1_0 -18575,2,62.0,0.0,2,111,130.0,868.0,0.0,0,78,0.0,0.0,179.68264958487097,998.0,0.0,1574.2507179355857,42,0,0,0,0,0,0,0,0,0,,1,,2,110279,2,1,2,0,2,,201.0,,11,0.0,0.0,7.0,1.0,1.0,2,2,363.860233704979,130.0,10346.38008734846,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09645885725968574,10346.38008734846,2,1,2_0,2_1_0,2_3_0,2_0_1 -18576,1,40.0,340.0,2,111,600.0,600.0,0.0,0,64,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,105199,2,1,0,0,1,,0.0,460.0,32,1.0,3.0,4.0,2.0,1.5,2,2,323.416143500845,600.0,7890.822514445774,0,4,2,3,78.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15207540124025767,5260.548342963849,1,1,1_1,1_0_1,1_3_1,1_0_1 -18577,2,67.0,0.0,1,111,0.0,0.0,1804.0,0,74,0.0,0.0,921.6876560468952,1804.0,0.0,2062.4153774733472,71,0,0,0,0,0,0,0,0,0,,1,,1,101031,2,1,2,0,1,,168.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,317.604622677479,0.0,37170.62240752125,0,5,0,1,125.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04853295110912567,37170.62240752125,9,5,9,9_1,9_3,9_1_0 -18578,2,36.0,0.0,1,111,360.0,890.0,0.0,34,38,0.0,0.0,497.582721927335,1250.0,0.0,1614.1510817542296,50,0,0,0,0,0,0,0,0,0,,1,,1,103490,2,2,1,0,1,,475.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,306.351247919306,360.0,69189.59247578176,1,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01806630094602066,32947.4249884675,8,4,8,8_1,8_3,8_1_0 -18579,2,40.0,0.0,1,111,640.0,835.0,0.0,85,33,0.0,155.27587572291867,884.5915056485956,1625.0,0.0,1514.4001722076198,31,0,0,0,0,0,0,0,0,3,30.0,1,,1,106837,2,2,1,0,1,,578.0,,42,1.0,0.0,6.0,5.0,2.5999999999999996,2,2,268.696711064688,640.0,49671.35529444582,6,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0327150324440957,19104.367420940704,5,3,5,5_1,5_3,5_1_0 -18580,1,29.0,327.0,2,111,390.0,0.0,0.0,21,47,0.0,0.0,539.0479487546129,390.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,109187,1,2,0,1,1,594.0,0.0,674.0,43,2.0,0.0,2.0,2.0,1.5,1,1,600.676648301544,390.0,16182.83246210227,1,4,2,3,58.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02409961302592242,10788.554974734847,2,1,2_1,2_0_1,2_3_1,2_0_1 -18581,2,77.0,0.0,2,111,429.0,80.0,0.0,75,74,0.0,0.0,592.9527436300742,509.0,0.0,145.09223206779592,42,0,0,0,0,0,0,0,0,0,,2,,2,130176,2,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,625.983766323088,429.0,88468.4289564048,5,5,0,1,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005753464891422718,58978.95263760319,10,5,10,10_0,10_3,10_0_1 -18582,2,30.0,0.0,2,111,720.0,0.0,0.0,0,42,0.0,0.0,995.16544385467,720.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,45.0,2,,2,132146,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,2.0,1.0,1.0,2,2,808.52005738929,720.0,17629.0,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04084179476998128,17629.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -18584,2,27.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1357.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,100533,2,3,0,0,1,,204.0,1000.0,12,1.0,0.0,2.0,1.0,1.0,2,2,676.727515327418,0.0,35126.2306596133,0,1,2,3,73.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03863209842097356,35126.2306596133,9,5,9,9_0,9_3,9_1_0 -18585,1,23.0,265.0,1,111,350.0,0.0,0.0,0,52,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,125642,2,2,0,0,1,,0.0,355.0,12,1.0,0.0,1.0,1.0,1.0,2,2,625.442755635121,350.0,12654.66010783847,0,1,2,3,23.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.027657795390585417,12654.66010783847,2,1,2_1,2_0_1,2_3_1,2_1_0 -18587,2,42.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,899.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,6.0,2,,1,114758,2,2,0,0,2,,0.0,440.0,12,1.0,0.0,1.0,1.0,1.0,4,3,625.442755635121,0.0,33347.65734219829,0,1,2,3,40.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026958415422555063,33347.65734219829,8,4,8,8_0,8_3,8_1_0 -18588,2,27.0,0.0,8,111,660.0,0.0,0.0,0,33,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,1.0,2,2002.0,6,121155,2,1,0,0,1,,0.0,607.0,12,1.0,0.0,2.0,1.0,1.0,1,1,869.105783926676,660.0,22563.18833420467,0,1,2,3,38.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.029251185170469585,22563.18833420467,6,3,6,6_0,6_3,6_0_0 -18589,1,32.0,377.0,5,111,480.0,0.0,0.0,55,42,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,60.0,2,,3,127161,1,1,0,1,1,1152.0,0.0,390.0,43,2.0,0.0,3.0,3.0,1.8,2,2,419.239421662646,480.0,15830.161273930957,4,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.030321864173958987,8794.534041072753,1,1,1_1,1_0_1,1_3_1,1_0_0 -18590,1,28.0,60.0,1,111,620.0,0.0,0.0,0,90,0.0,0.0,856.9480210970769,620.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,123507,1,2,0,0,1,,0.0,565.0,22,2.0,0.0,3.0,2.0,1.5,1,1,785.883584775646,620.0,48324.91040268859,0,1,2,3,56.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,0,1,0.012829822028299215,32216.60693512573,8,4,8,8_0,8_3,8_1_0 -18591,2,65.0,0.0,1,111,161.0,232.0,0.0,0,46,0.0,0.0,222.53005063972483,393.0,0.0,420.76747299660815,70,0,0,0,0,0,0,0,0,0,,2,,1,102614,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,593.650814342303,161.0,17458.77909002707,0,1,0,1,57.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02251016511369299,17458.77909002707,4,2,4_0,4_0_0,4_3_0,4_1_0 -18593,2,87.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,310.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,124448,1,1,0,3,2,,0.0,,11,0.0,1.0,1.0,1.0,1.0,2,2,696.758722014498,0.0,16080.447146202623,0,5,0,1,50.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019278070888296542,16080.447146202623,4,2,4_0,4_0_0,4_3_0,4_0_1 -18594,1,52.0,280.0,2,111,645.0,0.0,0.0,0,85,0.0,0.0,891.5023767864752,645.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117641,2,1,0,1,1,1312.0,0.0,660.0,11,0.0,0.0,3.0,1.0,1.0,2,2,730.305838514331,645.0,10381.222153585364,0,7,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06213141289701004,10381.222153585364,2,1,2_1,2_0_1,2_3_1,2_0_1 -18595,1,40.0,340.0,2,111,550.0,2000.0,0.0,0,68,0.0,0.0,760.1958251667618,2954.0,0.0,3627.3058016948976,30,0,0,0,0,0,0,0,0,1,5.0,2,,2,129743,2,2,0,0,1,,0.0,307.0,32,1.0,0.0,4.0,3.0,1.8,1,1,446.248132641992,550.0,11246.457811575643,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.26266047936973863,6248.032117542024,1,1,1_1,1_0_1,1_3_1,1_0_1 -18596,2,56.0,0.0,2,111,582.0,0.0,0.0,74,34,0.0,0.0,804.4254004491916,582.0,0.0,0.0,41,2,2,2,1,2,2,2,2,3,40.0,2,,2,118472,2,1,0,1,1,,0.0,710.0,42,1.0,2.0,4.0,3.0,2.0,3,2,622.80017457698,582.0,31123.206698565715,7,1,2,3,82.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01869987259464562,15561.603349282857,3,2,3_0,3_0_0,3_3_0,3_0_1 -18597,2,29.0,0.0,1,111,0.0,0.0,106.0,0,38,0.0,0.0,54.15681349277766,106.0,0.0,121.18405211317895,33,0,0,0,0,0,0,0,0,3,15.0,2,,1,123434,2,2,0,0,1,,0.0,685.0,12,1.0,0.0,3.0,1.0,1.0,2,2,699.928603551458,0.0,31502.04419344932,0,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0033648610023232117,31502.04419344932,8,4,8,8_0,8_3,8_1_0 -18598,2,67.0,0.0,2,111,490.0,0.0,0.0,75,74,0.0,0.0,677.265371512206,490.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125380,2,2,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,650.407104173652,490.0,69545.44969857796,5,5,0,1,98.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007045752125031113,46363.6331323853,10,5,10,10_0,10_3,10_0_1 -18599,2,53.0,0.0,7,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,4326.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,1.0,2,,5,130535,2,1,0,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,855.550370870563,0.0,37229.86030307215,0,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11619705163500238,37229.86030307215,9,5,9,9_0,9_3,9_0_0 -18600,2,51.0,0.0,2,111,120.0,90.0,0.0,45,35,0.0,0.0,165.86090730911167,210.0,0.0,163.2287610762704,20,0,0,0,0,0,0,0,0,3,60.0,2,,2,109393,2,1,0,1,1,,0.0,,43,2.0,3.0,3.0,2.0,1.5,1,1,549.257089412432,120.0,70954.87458206154,1,1,1,2,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0029596275271705033,47303.24972137436,10,5,10,10_0,10_3,10_0_1 -18601,2,34.0,0.0,2,111,449.0,0.0,0.0,54,38,0.0,0.0,620.5962281815928,449.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,124746,2,1,0,1,1,912.0,0.0,548.0,43,2.0,0.0,3.0,3.0,1.8,2,2,570.545893299382,449.0,61063.656347583725,1,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0073529825571567965,33924.2535264354,9,5,9,9_0,9_3,9_0_1 -18603,2,33.0,0.0,2,111,150.0,98.0,0.0,0,54,0.0,0.0,207.32613413638958,248.0,0.0,177.73798428305,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,114957,1,2,0,1,2,,0.0,508.0,22,2.0,0.0,1.0,2.0,1.5,3,2,600.25521345727,150.0,39112.5709346565,0,1,3,4,35.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0063406724250963135,26075.047289771,7,4,7,7_0,7_3,7_0_1 -18604,2,30.0,0.0,1,111,900.0,0.0,0.0,0,63,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,132738,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,684.650265264027,900.0,34531.00073768442,0,1,1,2,48.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026063536554786573,34531.00073768442,9,5,9,9_0,9_3,9_1_0 -18606,2,34.0,0.0,1,111,260.0,0.0,0.0,0,37,0.0,0.0,359.36529916974195,260.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,1,117387,2,1,0,1,1,518.0,0.0,461.0,12,1.0,0.0,2.0,1.0,1.0,1,1,536.985917148076,260.0,26500.64910360379,0,1,2,3,37.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009811080437446452,26500.64910360379,7,4,7,7_0,7_3,7_1_0 -18607,2,64.0,0.0,1,111,350.0,1148.0,0.0,72,75,0.0,0.0,483.76097965157567,1498.0,0.0,2082.0735301728714,50,0,0,0,0,0,0,0,0,0,,1,,1,112375,2,1,2,0,1,,255.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,404.16368418718,350.0,24406.62906658435,5,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06137676759511802,16271.086044389567,4,2,4_0,4_1_0,4_3_0,4_1_0 -18611,2,42.0,0.0,8,111,0.0,0.0,0.0,45,33,0.0,0.0,0.0,1150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,2000.0,6,109741,2,2,0,0,1,,0.0,790.0,43,2.0,0.0,3.0,2.0,1.5,2,2,745.489759099133,0.0,55997.591543400384,1,1,2,3,79.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020536597526854414,37331.72769560025,9,5,9,9_0,9_3,9_0_0 -18612,2,39.0,0.0,8,111,700.0,1000.0,0.0,0,45,0.0,0.0,967.5219593031513,1700.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,10.0,2,2002.0,6,122802,2,1,0,0,1,850.0,0.0,387.0,32,1.0,0.0,3.0,2.0,1.3,1,1,523.184896883855,700.0,36626.76968632096,0,1,2,3,58.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04641413956401678,28174.438220246888,8,4,8,8_0,8_3,8_0_0 -18613,2,39.0,0.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1077.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,2009.0,6,106216,2,1,0,0,1,,0.0,401.0,12,1.0,0.0,2.0,1.0,1.0,2,2,807.192068136936,0.0,29945.467811781906,0,1,2,3,44.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03596537568787819,29945.467811781906,8,4,8,8_0,8_3,8_0_0 -18614,2,40.0,0.0,2,111,572.0,0.0,0.0,47,35,0.0,0.0,790.6036581734322,572.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,122266,2,3,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,592.328491233911,572.0,34070.1211728602,1,4,1,2,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016788904186688,18927.845096033445,5,3,5,5_0,5_3,5_0_1 -18615,1,30.0,181.0,1,111,1400.0,0.0,0.0,0,55,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,120998,1,3,0,0,1,,140.0,622.0,22,2.0,0.0,2.0,2.0,1.5,2,1,621.879381789687,1400.0,15312.17879771063,0,4,2,3,46.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09143048931803997,10208.119198473754,2,1,2_1,2_0_1,2_3_1,2_1_0 -18617,2,58.0,0.0,6,111,641.0,0.0,0.0,0,78,0.0,0.0,885.9736798761714,641.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,107049,2,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,716.598083814928,641.0,11827.101126527356,0,5,0,1,26.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05419755806114502,11827.101126527356,2,1,2_0,2_0_0,2_3_0,2_0_0 -18619,2,55.0,0.0,7,111,660.0,0.0,0.0,74,34,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,5,114822,2,1,0,0,1,,0.0,,42,1.0,3.0,3.0,2.0,1.5,1,1,635.09541263333,660.0,119421.31873729284,5,1,0,1,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005526651413487494,79614.21249152855,10,5,10,10_0,10_3,10_0_0 -18620,2,28.0,0.0,1,111,720.0,0.0,0.0,31,37,0.0,0.0,995.16544385467,720.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,130558,2,1,0,0,1,,0.0,700.0,43,2.0,0.0,1.0,2.0,1.5,1,1,517.838581857719,720.0,59236.35630103636,1,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012154697637731027,39490.90420069091,9,5,9,9_0,9_3,9_1_0 -18621,2,66.0,0.0,1,111,828.0,0.0,0.0,0,77,0.0,0.0,1144.4402604328704,828.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,126371,2,1,0,0,2,,0.0,,11,0.0,2.0,1.0,1.0,1.0,2,2,595.304465379171,828.0,17192.595335236027,0,5,0,1,40.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.048160268060461094,17192.595335236027,4,2,4_0,4_0_0,4_3_0,4_1_0 -18622,1,66.0,270.0,5,111,240.0,0.0,0.0,0,77,0.0,0.0,331.72181461822333,1199.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,125022,2,2,0,1,1,828.0,0.0,351.0,11,0.0,3.0,4.0,1.0,1.0,1,1,480.117578947469,240.0,14851.57230522472,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08073219288561097,14851.57230522472,3,2,3_1,3_0_1,3_3_1,3_0_0 -18623,1,31.0,358.0,5,111,444.0,0.0,0.0,0,85,0.0,0.0,613.6853570437131,444.0,0.0,0.0,50,2,2,1,1,2,2,2,2,0,,2,,3,121716,1,2,0,1,1,426.0,0.0,322.0,31,0.0,0.0,3.0,3.0,1.6,2,2,419.239421662646,444.0,10825.497749094211,0,6,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04101428038605895,6765.936093183882,1,1,1_1,1_0_1,1_3_1,1_0_0 -18625,1,33.0,325.0,1,111,1800.0,0.0,0.0,81,52,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,108763,1,3,0,0,1,,0.0,520.0,43,2.0,0.0,2.0,3.0,1.8,2,2,756.386652660527,1800.0,15617.528856322344,4,4,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.11525510959893745,8676.40492017908,1,1,1_1,1_0_1,1_3_1,1_1_0 -18626,1,42.0,491.0,6,111,300.0,900.0,0.0,0,85,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,50,2,2,2,1,1,2,2,2,0,,2,,4,125499,1,2,0,0,1,,0.0,445.0,31,0.0,0.0,5.0,6.0,3.3,3,2,546.391276968681,300.0,23586.615803050565,0,6,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.05087631095618213,7147.459334257747,1,1,1_1,1_0_1,1_3_1,1_0_0 -18628,1,42.0,360.0,2,111,250.0,300.0,0.0,0,55,0.0,0.0,345.54355689398267,550.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,128362,2,1,0,1,1,773.0,0.0,324.0,32,1.0,0.0,4.0,3.0,1.6,2,2,383.173156230664,250.0,13684.914648071523,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04019023970145886,8553.071655044701,1,1,1_1,1_0_1,1_3_1,1_0_1 -18629,2,27.0,0.0,2,111,700.0,0.0,0.0,0,37,0.0,0.0,967.5219593031513,700.0,0.0,0.0,60,2,2,2,2,2,1,2,2,2,25.0,2,,2,114887,1,2,0,0,2,,0.0,565.0,12,1.0,0.0,1.0,1.0,1.0,2,2,749.754790094464,700.0,18725.278111604057,0,1,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03738262234760668,18725.278111604057,5,3,5,5_0,5_3,5_0_1 -18632,2,74.0,0.0,2,111,180.0,0.0,0.0,0,78,0.0,0.0,248.7913609636675,180.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,123801,2,1,0,1,1,727.0,0.0,169.0,11,0.0,4.0,1.0,1.0,1.0,1,1,603.874357656326,180.0,12422.717222269472,0,5,2,3,36.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014489583621635098,12422.717222269472,2,1,2_0,2_0_0,2_3_0,2_0_1 -18633,1,31.0,280.0,1,111,0.0,0.0,1032.0,81,35,0.0,0.0,527.2625615523259,1032.0,0.0,1179.8296394415156,50,1,2,2,2,1,2,2,2,0,,2,,1,129343,2,3,0,0,1,,0.0,521.0,43,2.0,0.0,2.0,2.0,1.5,2,2,748.513615692055,0.0,8828.441578016587,4,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.11689492317304895,5885.627718677725,1,1,1_1,1_0_1,1_3_1,1_1_0 -18634,2,37.0,0.0,1,111,859.0,0.0,0.0,0,43,0.0,0.0,1187.2876614877243,859.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,2,,1,115687,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,572.800515331757,859.0,24032.25416369761,0,1,1,2,28.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035743629962834665,24032.25416369761,6,3,6,6_0,6_3,6_1_0 -18635,2,53.0,0.0,1,111,0.0,0.0,3000.0,43,42,0.0,0.0,1532.740004512575,3000.0,0.0,3429.737323957894,50,2,2,2,2,1,2,2,2,1,20.0,1,,1,126867,2,2,3,0,1,,922.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,409.500307850222,0.0,55721.21008400747,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05383946248613558,18573.736694669158,4,2,4_0,4_1_0,4_3_0,4_1_0 -18638,2,65.0,0.0,1,111,543.0,1972.0,0.0,86,74,0.0,0.0,750.5206055737303,2515.0,0.0,3576.5235204711694,50,0,0,0,0,0,0,0,0,0,,1,,1,117031,1,2,3,0,1,,308.0,,41,0.0,3.0,10.0,2.0,1.5,2,2,427.672603384711,543.0,242647.91701880278,6,5,0,1,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01036481182653265,161765.2780125352,10,5,10,10_1,10_3,10_1_0 -18639,2,61.0,0.0,2,111,900.0,1500.0,0.0,54,22,0.0,0.0,1243.9568048183376,2400.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,129700,1,1,0,0,1,,0.0,850.0,43,2.0,2.0,5.0,3.0,2.0,1,1,718.777788174331,900.0,54825.53161801997,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.043775225322414776,27412.765809009987,7,4,7,7_0,7_3,7_0_1 -18640,2,71.0,0.0,6,111,1100.0,0.0,0.0,0,74,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,101528,2,1,0,0,1,,92.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,693.061967782876,1100.0,31120.22760609635,0,5,0,1,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0353467851817547,31120.22760609635,8,4,8,8_0,8_3,8_0_0 -18641,1,25.0,320.0,1,111,960.0,0.0,0.0,34,42,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,125437,1,2,0,0,1,,0.0,820.0,42,1.0,0.0,3.0,2.0,1.5,3,3,532.263930261416,960.0,18551.50587966531,3,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05174782070129821,12367.67058644354,2,1,2_1,2_0_1,2_3_1,2_1_0 -18642,2,54.0,0.0,1,111,1100.0,1500.0,0.0,43,34,0.0,310.55175144583734,1520.3916503335236,2900.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,3,7.0,1,,1,115021,2,1,1,0,1,,500.0,,43,4.0,1.0,8.0,5.0,3.0,2,2,414.742687690325,1100.0,192075.28555041197,1,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015098246459401294,64025.09518347066,10,5,10,10_1,10_3,10_1_0 -18644,2,75.0,0.0,2,111,220.0,70.0,0.0,0,74,0.0,0.0,304.0783300667047,290.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,116605,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,621.209111806162,220.0,42932.60712087072,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006754772641306077,42932.60712087072,9,5,9,9_0,9_3,9_0_1 -18647,1,46.0,259.0,1,111,520.0,0.0,0.0,0,85,0.0,0.0,718.7305983394839,520.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,116133,2,2,0,0,1,,0.0,447.0,11,0.0,0.0,2.0,1.0,1.0,2,2,717.181843309633,520.0,9346.010208665582,0,7,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.055638715172583286,9346.010208665582,1,1,1_1,1_0_1,1_3_1,1_1_0 -18648,1,36.0,419.0,9,111,0.0,0.0,1500.0,0,52,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,20,2,2,2,2,2,2,2,1,0,,2,2009.0,6,103922,1,1,0,0,1,,513.0,470.0,32,1.0,0.0,4.0,4.0,2.1,1,1,126.660881393477,0.0,19911.239911026314,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.0753343341099185,9481.542814774435,1,1,1_1,1_0_1,1_3_1,1_0_0 -18651,1,57.0,491.0,1,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,725.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,1,110126,1,2,0,0,1,,0.0,490.0,42,2.0,0.0,2.0,5.0,2.8,2,2,145.819263234499,0.0,8297.738299105516,6,1,2,3,48.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08737320627214212,2963.477963966256,1,1,1_1,1_0_1,1_3_1,1_1_0 -18652,2,79.0,0.0,5,111,175.0,90.0,0.0,77,77,0.0,0.0,241.88048982578783,265.0,0.0,163.2287610762704,44,0,0,0,0,0,0,0,0,0,,2,,3,103146,1,1,0,1,1,920.0,289.0,235.0,41,0.0,6.0,3.0,2.0,1.5,2,2,109.163480222321,175.0,25792.80378760855,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01027418353514991,17195.202525072367,4,2,4_0,4_0_0,4_3_0,4_0_0 -18653,1,23.0,270.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,565.0,0.0,0.0,71,1,2,2,2,1,2,2,2,1,20.0,2,,1,116465,1,2,0,1,1,272.0,0.0,370.0,12,1.0,0.0,1.0,1.0,1.0,1,1,168.437047741122,0.0,16445.860177602983,0,1,3,4,30.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.03435515040857838,16445.860177602983,4,2,4_1,4_0_1,4_3_1,4_1_0 -18654,2,26.0,0.0,1,111,1000.0,0.0,0.0,34,55,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,112414,2,3,0,0,1,,0.0,526.0,42,1.0,0.0,2.0,2.0,1.5,1,1,174.805778777803,1000.0,16811.42878361587,3,4,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.059483343912718645,11207.619189077246,2,1,2_0,2_0_0,2_3_0,2_1_0 -18656,1,28.0,221.0,9,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,260.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2006.0,6,124000,2,1,0,0,2,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,210.596362818701,0.0,2125.513472183765,0,4,2,3,22.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12232338369178836,2125.513472183765,1,1,1_1,1_0_1,1_3_1,1_0_0 -18658,2,70.0,0.0,2,111,700.0,500.0,0.0,0,74,0.0,0.0,967.5219593031513,1200.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,2,,2,124048,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,621.209111806162,700.0,40349.94998091551,0,5,0,1,99.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029739813818048577,40349.94998091551,9,5,9,9_0,9_3,9_0_1 -18660,2,23.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,424.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,19.0,2,,1,119273,2,1,0,1,2,272.0,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,705.162375937271,0.0,16230.543996149794,0,1,3,4,30.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026123585266185852,16230.543996149794,4,2,4_0,4_0_0,4_3_0,4_1_0 -18661,2,60.0,0.0,1,111,840.0,3400.0,0.0,31,31,0.0,0.0,1161.0263511637818,4240.0,0.0,6166.4198628813265,50,0,0,0,0,0,0,0,0,1,1.0,2,,1,127746,1,1,0,0,2,,900.0,,43,2.0,2.0,12.0,2.0,1.5,2,2,629.593658679433,840.0,40874.53586192511,1,1,0,1,294.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10373206473396525,27249.690574616743,7,4,7,7_0,7_3,7_1_0 -18662,2,36.0,0.0,1,111,715.0,0.0,0.0,0,38,0.0,0.0,988.2545727167903,715.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,113121,2,1,0,0,1,,0.0,505.0,12,1.0,0.0,2.0,1.0,1.0,2,2,905.006412773152,715.0,32564.353707150494,0,1,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021956523578817413,32564.353707150494,8,4,8,8_0,8_3,8_1_0 -18664,2,41.0,0.0,2,111,240.0,450.0,0.0,0,34,0.0,0.0,331.72181461822333,690.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,120707,2,1,0,0,1,,0.0,522.0,12,1.0,0.0,2.0,1.0,1.0,2,2,585.532231761841,240.0,28548.88300998244,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024169071685177092,28548.88300998244,8,4,8,8_0,8_3,8_0_1 -18667,1,33.0,50.0,5,111,350.0,700.0,0.0,54,42,0.0,0.0,483.76097965157567,1050.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,112389,2,2,0,0,1,,0.0,365.0,43,2.0,0.0,3.0,4.0,2.1,2,2,428.319339600677,350.0,20033.38242900628,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05241251714337105,9539.705918574418,1,1,1_1,1_0_1,1_3_1,1_0_0 -18668,2,47.0,0.0,1,111,390.0,350.0,0.0,0,67,0.0,0.0,539.0479487546129,740.0,0.0,634.7785152966071,20,0,0,0,0,0,0,0,0,3,30.0,1,,1,118195,2,2,4,0,1,,250.0,410.0,12,1.0,5.0,4.0,1.0,1.0,1,1,437.186762649749,390.0,22746.761064100137,0,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03253210414945177,22746.761064100137,6,3,6,6_1,6_3,6_1_0 -18669,2,38.0,0.0,8,111,350.0,0.0,0.0,85,63,0.0,0.0,483.76097965157567,350.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2000.0,6,103628,2,1,0,1,1,500.0,900.0,350.0,42,1.0,0.0,2.0,2.0,1.5,1,1,414.279930270022,350.0,20832.79192822884,6,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016800436600422394,13888.527952152559,3,2,3_0,3_0_0,3_3_0,3_0_0 -18671,2,54.0,0.0,1,111,600.0,0.0,0.0,0,37,0.0,0.0,829.3045365455583,1061.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,1,131378,2,1,0,1,1,,0.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,152.306768877531,600.0,64942.96877006716,0,1,0,1,150.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016337411425654213,49956.129823128584,10,5,10,10_0,10_3,10_1_0 -18672,2,64.0,0.0,2,111,500.0,1000.0,0.0,77,75,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,1,,2,130575,2,1,1,0,1,,220.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,513.605210938444,500.0,38352.03480956776,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03911135373776287,25568.023206378508,7,4,7,7_1,7_3,7_0_1 -18673,1,67.0,271.0,2,111,866.0,194.0,0.0,0,78,0.0,0.0,1196.9628810807558,1078.0,30.96588607542345,351.8486627644051,42,0,0,0,0,0,0,0,0,0,,2,,2,121779,1,1,0,0,1,,0.0,365.0,11,0.0,3.0,3.0,1.0,1.0,1,1,123.695843883875,866.0,11702.181607471462,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09211957532018919,11702.181607471462,2,1,2_1,2_0_1,2_3_1,2_0_1 -18674,2,36.0,0.0,7,111,650.0,0.0,0.0,0,34,0.0,0.0,898.4132479243549,650.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,25.0,2,,5,103679,2,1,0,1,1,305.0,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,3,3,246.757822075878,650.0,28387.83170364272,0,1,2,3,38.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022897134475987194,28387.83170364272,8,4,8,8_0,8_3,8_0_0 -18676,2,33.0,0.0,5,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,1180.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,115351,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,120.031208133007,0.0,53787.691407450446,1,1,1,2,68.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02193810459462388,35858.4609383003,9,5,9,9_0,9_3,9_0_0 -18677,1,24.0,312.0,7,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,1607.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,5,121730,2,1,0,0,1,,0.0,600.0,43,2.0,0.0,2.0,4.0,2.1,1,1,177.955006707834,0.0,30222.914449605472,1,1,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053171576244890495,14391.864023621652,3,2,3_1,3_0_1,3_3_1,3_0_0 -18678,2,30.0,0.0,1,111,900.0,0.0,0.0,0,34,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,10,2,2,1,1,1,2,1,2,2,105.0,2,,1,124820,1,3,0,0,1,,0.0,480.0,12,1.0,0.0,3.0,1.0,1.0,2,2,196.744848302514,900.0,25854.355540370467,0,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.03481038228141826,25854.355540370467,7,4,7,7_0,7_3,7_1_0 -18679,2,48.0,0.0,1,111,0.0,0.0,0.0,53,68,0.0,0.0,0.0,1744.0,0.0,0.0,41,2,2,2,2,2,1,2,2,1,10.0,1,,1,128243,1,2,2,0,2,,527.0,990.0,43,2.0,0.0,6.0,7.0,3.6,1,1,135.703773305523,0.0,21123.279472669303,1,1,2,3,120.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08256293736285138,5867.577631297028,1,1,1_0,1_1_0,1_3_0,1_1_0 -18680,2,31.0,0.0,8,111,1575.0,0.0,0.0,62,43,0.0,0.0,2176.924408432091,1575.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,2003.0,6,126475,2,1,0,0,1,,0.0,344.0,43,2.0,0.0,2.0,2.0,1.5,2,2,147.063475687793,1575.0,34778.02054608147,1,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04528722380599834,23185.34703072098,6,3,6,6_0,6_3,6_0_0 -18681,2,39.0,0.0,9,111,630.0,0.0,0.0,0,46,0.0,0.0,870.7697633728362,630.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,15.0,2,2004.0,6,127344,2,1,0,0,1,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,3,2,159.414458888036,630.0,23247.428453691937,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.027099771540535673,23247.428453691937,6,3,6,6_0,6_3,6_0_0 -18682,1,64.0,68.0,8,111,660.0,0.0,0.0,77,77,0.0,0.0,912.2349902001142,660.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2003.0,6,122056,2,1,0,0,1,,0.0,376.0,41,0.0,5.0,3.0,2.0,1.5,1,1,137.951094005042,660.0,17247.350634345734,5,5,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038266746817664885,11498.23375623049,2,1,2_1,2_0_1,2_3_1,2_0_0 -18683,2,55.0,0.0,8,111,400.0,700.0,0.0,68,56,0.0,0.0,552.8696910303722,1100.0,0.0,1269.5570305932142,70,0,0,0,0,0,0,0,0,1,5.0,2,2002.0,6,117460,2,1,0,0,1,,400.0,550.0,43,3.0,2.0,5.0,3.0,2.0,2,2,129.2324876155,400.0,45594.44662337154,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024125745161169346,22797.22331168577,6,3,6,6_0,6_3,6_0_0 -18684,2,67.0,0.0,2,111,220.0,153.0,0.0,78,77,0.0,1242.2070057833494,304.0783300667047,1573.0,0.0,277.4888938296597,33,0,0,0,0,0,0,0,0,0,,1,,2,114599,2,2,3,0,1,,133.0,143.0,41,0.0,2.0,2.0,2.0,1.5,2,2,164.857003794483,220.0,23746.56468364517,5,5,2,3,36.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06624116039333314,15831.043122430114,3,2,3_0,3_1_0,3_3_0,3_0_1 -18686,1,61.0,198.0,5,111,390.0,0.0,0.0,0,77,0.0,0.0,539.0479487546129,390.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,117772,1,1,0,1,1,468.0,0.0,256.0,11,0.0,0.0,2.0,1.0,1.0,2,2,139.11348870213,390.0,12299.510247191933,0,5,2,3,94.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03170857962324474,12299.510247191933,2,1,2_1,2_0_1,2_3_1,2_0_0 -18687,2,38.0,0.0,1,111,600.0,800.0,0.0,42,34,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,41,0,0,0,0,0,0,0,0,1,15.0,1,,1,117979,2,1,1,0,1,,300.0,,43,2.0,0.0,3.0,4.0,2.1,4,3,103.18108370924,600.0,52548.391532412876,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026642109476109323,25023.043586863274,7,4,7,7_1,7_3,7_1_0 -18688,1,43.0,329.0,6,111,0.0,0.0,808.0,0,52,0.0,0.0,412.81797454872026,808.0,0.0,923.7425859193262,31,1,2,2,1,1,2,2,2,3,20.0,2,,4,103195,1,1,0,0,1,,0.0,381.0,32,1.0,0.0,4.0,2.0,1.3,1,1,127.081784838189,0.0,15513.439496609755,0,1,2,3,124.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.05208387219201629,11933.41499739212,2,1,2_1,2_0_1,2_3_1,2_0_0 -18690,1,36.0,313.0,2,111,250.0,380.0,0.0,0,81,0.0,0.0,345.54355689398267,630.0,0.0,689.1881023220305,41,0,0,0,0,0,0,0,0,0,,2,,2,126275,1,1,0,1,1,515.0,0.0,264.0,32,1.0,0.0,3.0,4.0,1.9,1,1,299.998247042447,250.0,13374.028938906753,0,4,2,3,61.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.047106223777282984,7038.962599424607,1,1,1_1,1_0_1,1_3_1,1_0_1 -18691,1,44.0,329.0,2,111,0.0,0.0,0.0,77,85,0.0,0.0,0.0,738.0,0.0,0.0,20,2,1,2,2,1,2,2,2,0,,2,,2,120001,1,3,0,1,1,383.0,0.0,281.0,41,2.0,0.0,3.0,6.0,3.0999999999999996,1,1,340.90572135361,0.0,15370.725958683166,7,7,2,3,65.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04801334705880252,4958.298696349409,1,1,1_1,1_0_1,1_3_1,1_0_1 -18692,1,33.0,353.0,2,111,0.0,0.0,0.0,34,67,0.0,0.0,0.0,1027.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,127639,2,1,0,1,1,450.0,0.0,324.0,43,2.0,0.0,3.0,3.0,1.8,2,2,107.631624624632,0.0,9390.093595873583,4,4,2,3,100.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1093705818279925,5216.7186643742125,1,1,1_1,1_0_1,1_3_1,1_0_1 -18693,2,64.0,0.0,2,111,1800.0,0.0,0.0,0,43,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,13.0,2,,2,127947,1,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,194.951464829074,1800.0,35114.66424712619,0,1,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05126063536681298,35114.66424712619,9,5,9,9_0,9_3,9_0_1 -18694,1,43.0,412.0,2,111,440.0,937.0,0.0,0,85,0.0,0.0,608.1566601334094,1377.0,0.0,1699.3927680940596,42,0,0,0,0,0,0,0,0,0,,2,,2,116823,1,3,0,0,2,,0.0,357.0,31,1.0,1.0,4.0,5.0,2.5999999999999996,1,1,139.793488043922,440.0,12798.987525545494,0,6,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10758663505622193,4922.68750982519,1,1,1_1,1_0_1,1_3_1,1_0_1 -18695,1,47.0,325.0,2,111,0.0,0.0,861.0,85,68,0.0,0.0,439.8963812951091,861.0,0.0,984.3346119759157,20,2,1,2,1,1,2,2,2,1,20.0,2,,2,128266,2,2,0,1,1,539.0,0.0,289.0,42,3.0,3.0,4.0,5.0,2.8,1,1,120.537275125474,0.0,18680.7324178442,6,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04609026994988462,6671.690149230071,1,1,1_1,1_0_1,1_3_1,1_0_1 -18696,2,51.0,0.0,1,111,659.0,1618.0,0.0,56,62,0.0,0.0,910.8528159725382,2277.0,0.0,2934.4903935711723,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,116349,1,2,3,0,1,,549.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,144.505618564079,659.0,45885.9203843175,1,1,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04962306478608226,22942.96019215875,6,3,6,6_1,6_3,6_1_0 -18697,1,50.0,270.0,6,111,470.0,0.0,0.0,0,67,0.0,0.0,649.6218869606873,470.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,4,102065,1,3,0,0,1,,0.0,393.0,12,1.0,3.0,1.0,1.0,1.0,2,2,905.006412773152,470.0,4582.769746695092,0,4,2,3,22.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.10255806553208241,4582.769746695092,1,1,1_1,1_0_1,1_3_1,1_0_0 -18698,2,34.0,0.0,1,111,2160.0,0.0,0.0,52,38,0.0,0.0,2985.49633156401,2160.0,0.0,0.0,31,1,2,2,1,2,2,2,2,2,10.0,1,,1,130608,2,2,2,0,1,,408.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,368.4421252947,2160.0,98353.96527270606,1,1,1,2,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.021961493814824522,46835.221558431454,10,5,10,10_1,10_3,10_1_0 -18699,2,75.0,0.0,1,111,539.0,112.0,0.0,74,74,2899.0482462919394,0.0,744.9919086634266,2592.0,0.0,203.12912489491427,12,1,2,2,2,2,2,2,1,0,,1,,1,102939,2,2,2,0,1,,243.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,115.905395757078,539.0,70045.64569964827,5,5,0,1,110.0,9,7,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03700444151966773,46697.09713309885,10,5,10,10_1,10_3,10_1_0 -18700,1,38.0,270.0,2,111,270.0,0.0,0.0,0,67,0.0,0.0,373.1870414455012,270.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,126005,2,2,0,1,1,984.0,200.0,300.0,12,1.0,1.0,4.0,1.0,1.0,3,3,134.957565326083,270.0,21433.29894338541,0,4,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012597220834421547,21433.29894338541,6,3,6,6_0,6_3,6_0_1 -18701,2,31.0,0.0,2,111,345.0,0.0,0.0,53,31,0.0,0.0,476.85010851369606,345.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,104486,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,549.257089412432,345.0,48673.03834832156,1,1,1,2,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007088113084929224,32448.692232214376,8,4,8,8_0,8_3,8_0_1 -18702,1,66.0,270.0,2,111,822.0,0.0,0.0,0,74,0.0,0.0,1136.147215067415,822.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,2,106869,1,3,0,0,2,,0.0,475.0,11,0.0,3.0,2.0,1.0,1.0,2,2,300.747725362105,822.0,9958.360414846844,0,5,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.08254370857822001,9958.360414846844,2,1,2_1,2_0_1,2_3_1,2_0_1 -18703,2,53.0,0.0,1,111,1800.0,0.0,0.0,0,23,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,5.0,1,,1,130219,2,1,1,0,1,,50.0,,12,1.0,1.0,5.0,1.0,1.0,3,3,424.564925466528,1800.0,40928.36334680475,0,1,1,2,160.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043979281183265904,40928.36334680475,9,5,9,9_1,9_3,9_1_0 -18704,2,36.0,0.0,1,111,360.0,0.0,0.0,48,48,0.0,0.0,497.582721927335,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,,1,106170,2,1,0,1,1,600.0,0.0,487.0,43,2.0,0.0,2.0,4.0,2.1,1,1,506.184730422871,360.0,60327.35400566848,4,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005967442231366117,28727.311431270704,8,4,8,8_0,8_3,8_1_0 -18705,2,49.0,0.0,2,111,380.0,650.0,0.0,0,42,0.0,51.75862524097289,525.2262064788536,1080.0,0.0,1178.8743855508417,42,0,0,0,0,0,0,0,0,3,10.0,1,,2,131799,2,2,3,0,1,,100.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,157.696530768502,380.0,40653.248114181144,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026566142930735753,40653.248114181144,9,5,9,9_1,9_3,9_0_1 -18706,2,39.0,0.0,5,111,300.0,0.0,0.0,0,37,0.0,0.0,414.65226827277917,300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,3,103674,2,1,0,1,2,768.0,0.0,770.0,32,1.0,0.0,4.0,3.0,1.6,2,2,622.80017457698,300.0,71244.33035920275,0,1,2,3,96.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004210861390477628,44527.70647450172,10,5,10,10_0,10_3,10_0_0 -18707,2,75.0,0.0,1,111,422.0,1223.0,0.0,78,75,0.0,0.0,583.2775240370427,1645.0,0.0,2218.09749773643,12,0,0,0,0,0,0,0,0,0,,1,,1,107802,2,1,1,0,1,,324.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,405.619369842931,422.0,55302.98077548716,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029745232118286474,36868.65385032477,9,5,9,9_1,9_3,9_1_0 -18708,2,50.0,0.0,2,111,1040.0,0.0,0.0,55,22,0.0,0.0,1437.4611966789678,1040.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115802,2,1,0,1,1,1212.0,0.0,630.0,43,2.0,0.0,5.0,3.0,2.0,1,1,570.145598198226,1040.0,12857.777205179871,4,1,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08088489817517033,6428.8886025899355,1,1,1_0,1_0_0,1_3_0,1_0_1 -18709,2,86.0,0.0,1,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2067.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,101663,1,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,621.209111806162,0.0,54411.89357258497,0,5,0,1,100.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03798801813876668,54411.89357258497,10,5,10,10_0,10_3,10_1_0 -18710,2,61.0,0.0,5,111,2400.0,0.0,0.0,75,75,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109942,2,2,1,0,1,,300.0,,41,0.0,0.0,5.0,3.0,2.0,2,2,489.66853119803,2400.0,42454.22290737191,5,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05653147874679988,21227.111453685957,5,3,5,5_1,5_3,5_0_0 -18711,2,49.0,0.0,1,111,650.0,1600.0,0.0,37,43,0.0,93.1655254337512,898.4132479243549,2340.0,0.0,2901.844641355918,50,2,2,2,2,1,2,2,2,2,15.0,1,,1,112634,1,2,3,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.5,1,1,404.694411564091,650.0,91840.84708413252,1,1,1,2,135.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.025478859072983064,36736.338833653004,9,5,9,9_1,9_3,9_1_0 -18712,2,28.0,0.0,7,111,480.0,0.0,0.0,43,47,0.0,0.0,663.4436292364467,480.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,125270,1,1,0,0,1,,0.0,580.0,43,2.0,0.0,2.0,2.0,1.5,4,3,745.489759099133,480.0,39643.65755110633,1,1,2,3,47.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012107863644549233,26429.105034070886,7,4,7,7_0,7_3,7_0_0 -18713,0,71.0,0.0,7,111,1190.0,0.0,0.0,0,77,0.0,0.0,1644.7873308153573,1190.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,5,118772,2,2,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,802.463692462319,1190.0,63983.22311624589,0,5,0,1,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01859862542151067,63983.22311624589,10,5,10,10_0,10_3,10_0_0 -18714,2,41.0,0.0,7,111,1200.0,0.0,0.0,85,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,108992,2,1,0,0,1,,0.0,940.0,42,1.0,0.0,3.0,2.0,1.5,2,2,666.510401035631,1200.0,69494.95069128637,6,1,2,3,84.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01726744156321075,46329.96712752425,10,5,10,10_0,10_3,10_0_0 -18715,2,52.0,0.0,1,111,1200.0,2000.0,0.0,37,22,0.0,0.0,1658.6090730911167,3200.0,0.0,3627.3058016948976,60,0,0,0,0,0,0,0,0,2,60.0,1,,1,103172,2,2,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,404.694411564091,1200.0,293858.84490865434,1,1,1,2,121.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010889582040638307,139932.78328983538,10,5,10,10_1,10_3,10_1_0 -18716,1,43.0,364.0,5,111,480.0,160.0,0.0,0,56,0.0,0.0,663.4436292364467,640.0,0.0,290.18446413559184,31,0,0,0,0,0,0,0,0,0,,2,,3,127094,1,2,0,1,1,640.0,0.0,317.0,32,1.0,0.0,3.0,4.0,1.9,2,2,367.374481582182,480.0,11296.119933820939,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05665662225166536,5945.326280958389,1,1,1_1,1_0_1,1_3_1,1_0_0 -18717,2,94.0,0.0,2,111,290.0,0.0,0.0,0,77,0.0,0.0,400.8305259970199,290.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,2,,2,125643,1,2,0,1,1,49.0,0.0,79.0,11,0.0,0.0,2.0,1.0,1.0,2,2,494.902462364547,290.0,22460.27171259898,0,5,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.012911687076222053,22460.27171259898,6,3,6,6_0,6_3,6_0_1 -18718,2,60.0,0.0,2,111,750.0,0.0,0.0,34,31,0.0,0.0,1036.630670681948,4207.0,0.0,0.0,12,1,2,2,1,2,2,2,2,2,20.0,1,,2,116642,1,3,4,0,2,,250.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,493.178892070539,750.0,57924.90343389743,1,1,1,2,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07262851986971254,23169.961373558974,6,3,6,6_1,6_3,6_0_1 -18719,0,63.0,0.0,1,111,0.0,0.0,0.0,75,33,0.0,0.0,0.0,3617.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,116666,2,1,1,0,1,,273.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,497.096244190618,0.0,97758.11664187406,5,1,5,0,100.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03699948530361397,65172.07776124938,10,5,10,10_1,10_3,10_1_0 -18720,2,33.0,0.0,2,111,480.0,600.0,0.0,0,56,0.0,0.0,663.4436292364467,1080.0,0.0,1088.1917405084694,10,2,2,2,2,1,2,2,2,0,,2,,2,128932,1,3,0,0,1,,0.0,1260.0,22,4.0,0.0,6.0,4.0,2.5,2,2,593.724053165166,480.0,6785.779048374587,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.15915637575300878,2714.3116193498345,1,1,1_0,1_0_0,1_3_0,1_0_1 -18721,2,30.0,0.0,2,111,620.0,0.0,0.0,46,47,0.0,0.0,856.9480210970769,620.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,2,129901,2,2,0,0,1,,0.0,620.0,43,2.0,0.0,2.0,2.0,1.5,1,1,724.521240823416,620.0,48140.03746434631,1,4,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.012879092594375051,32093.358309564206,8,4,8,8_0,8_3,8_0_1 -18723,2,43.0,0.0,1,111,1340.0,430.0,0.0,47,37,0.0,0.0,1852.113464951747,1770.0,0.0,779.870747364403,31,0,0,0,0,0,0,0,0,1,20.0,1,,1,125560,2,1,2,0,1,,720.0,,43,3.0,0.0,8.0,3.0,2.0,1,1,118.622235406617,1340.0,92408.1710144415,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01915415033724004,46204.08550722075,10,5,10,10_1,10_3,10_1_0 -18724,1,66.0,270.0,5,111,160.0,350.0,0.0,0,77,0.0,0.0,221.1478764121489,510.0,0.0,634.7785152966071,10,2,2,2,2,1,2,2,2,0,,2,,3,120567,1,2,0,0,1,,0.0,381.0,11,0.0,3.0,3.0,1.0,1.0,1,1,509.73275875709,160.0,10462.919839285752,0,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04874356373113674,10462.919839285752,2,1,2_1,2_0_1,2_3_1,2_0_0 -18725,0,49.0,0.0,1,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1293.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,2.0,1,,1,109628,1,1,2,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,463.355865022798,0.0,22444.156123855988,0,1,5,0,100.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05760965094275319,22444.156123855988,6,3,6,6_1,6_3,6_1_0 -18726,2,31.0,0.0,1,111,310.0,0.0,0.0,0,46,0.0,0.0,428.47401054853844,310.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,107409,1,2,0,0,2,,0.0,,32,1.0,0.0,2.0,2.0,1.3,1,1,570.646889049538,310.0,37086.803229447556,0,1,1,2,42.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.00835876842989408,28528.31017649812,8,4,8,8_0,8_3,8_1_0 -18727,2,47.0,0.0,2,111,1092.0,0.0,0.0,0,46,0.0,0.0,1509.3342565129162,1137.0,77.41471518855863,0.0,42,2,2,1,1,2,2,2,2,3,40.0,1,,2,104198,2,2,2,0,1,,240.0,630.0,32,3.0,0.0,4.0,3.0,2.0,2,2,388.886136517347,1092.0,41564.60352088356,0,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.027355006512421804,20782.30176044178,5,3,5,5_1,5_3,5_0_1 -18728,1,35.0,270.0,1,111,612.0,0.0,0.0,0,53,0.0,0.0,845.8906272764696,612.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,45.0,2,,1,117573,2,1,0,0,2,,0.0,375.0,12,1.0,5.0,1.0,1.0,1.0,2,1,602.557294134973,612.0,5006.2065471448295,0,1,3,4,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1222482520920036,5006.2065471448295,1,1,1_1,1_0_1,1_3_1,1_1_0 -18729,1,45.0,459.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1397.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,102994,2,1,0,0,1,,445.0,524.0,32,1.0,0.0,5.0,4.0,2.1,2,2,469.29224696978,0.0,14814.471345577664,0,4,2,3,77.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09429968626028798,7054.510164560792,1,1,1_1,1_0_1,1_3_1,1_0_1 -18730,2,28.0,0.0,1,111,330.0,669.0,0.0,47,43,0.0,0.0,456.1174951000571,999.0,0.0,1213.3337906669433,41,0,0,0,0,0,0,0,0,2,10.0,2,,1,131367,2,1,0,0,1,,170.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,573.204873485592,330.0,30444.34455691477,1,1,1,2,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.032813976275048395,20296.229704609847,5,3,5,5_0,5_3,5_1_0 -18731,2,77.0,0.0,2,111,964.0,0.0,0.0,78,77,0.0,0.0,1332.4159553831971,964.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,127489,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,615.938485859939,964.0,34351.28287538402,5,5,0,1,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028062998505677297,22900.855250256016,6,3,6,6_0,6_3,6_0_1 -18732,2,32.0,0.0,1,111,774.0,380.0,0.0,46,31,0.0,414.0690019277831,1069.8028521437702,1554.0,0.0,689.1881023220305,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,107071,1,1,2,0,2,,330.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,365.401287687169,774.0,64584.869139227725,1,1,1,2,112.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024061363299350984,35880.48285512652,9,5,9,9_1,9_3,9_1_0 -18733,2,63.0,0.0,1,111,998.0,506.0,0.0,77,78,0.0,0.0,1379.4098791207787,1504.0,0.0,917.7083678288092,70,2,2,1,2,2,1,2,2,0,,1,,1,116024,2,1,1,0,1,,264.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,109.098684344137,998.0,28414.220051554425,5,5,0,1,98.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05293124348552099,18942.81336770295,5,3,5,5_1,5_3,5_1_0 -18734,2,76.0,0.0,1,111,580.0,0.0,0.0,78,77,0.0,1242.2070057833494,801.6610519940398,1840.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,100616,2,1,2,0,1,,260.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,405.619369842931,580.0,30009.17085984825,5,5,0,1,110.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061314589749691756,20006.1139065655,5,3,5,5_1,5_3,5_1_0 -18735,2,94.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1736.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101118,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,717.04886634624,0.0,19282.450659625043,0,5,0,1,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09003005015513715,19282.450659625043,5,3,5,5_0,5_3,5_0_1 -18736,1,61.0,377.0,1,111,445.0,580.0,0.0,0,86,0.0,465.827627168756,615.0675312712891,1475.0,0.0,1051.9186824915203,33,2,2,2,1,2,2,1,2,0,,1,,1,110797,1,2,3,0,1,,244.0,463.0,31,1.0,0.0,5.0,3.0,2.0,2,2,363.696534096689,445.0,9163.128407967277,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.16097122449113532,4581.564203983638,1,1,1_1,1_1_1,1_3_1,1_1_0 -18737,1,39.0,66.0,1,111,40.0,88.0,0.0,0,85,0.0,0.0,55.28696910303722,128.0,0.0,159.6014552745755,50,2,2,1,2,2,2,2,1,0,,1,,1,128414,1,1,2,0,2,,192.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,511.464325957225,40.0,11361.503366478202,0,5,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.011266114691974692,11361.503366478202,2,1,2_1,2_1_1,2_3_1,2_1_0 -18738,1,53.0,270.0,2,111,222.0,426.0,0.0,0,55,573.5365927749123,0.0,306.84267852185656,1032.0,0.0,772.6161357610132,70,2,1,2,2,2,2,2,1,0,,2,,2,125835,2,1,0,1,1,384.0,0.0,286.0,32,1.0,1.0,4.0,2.0,1.5,1,1,388.353966724171,222.0,6767.863894139886,0,4,2,3,70.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.15248533601474779,4511.909262759924,1,1,1_1,1_0_1,1_3_1,1_0_1 -18739,2,33.0,0.0,1,111,0.0,0.0,508.0,85,64,0.0,0.0,259.54397409746275,508.0,0.0,580.7688535235368,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,129433,2,1,0,1,1,504.0,0.0,334.0,42,1.0,0.0,3.0,2.0,1.5,2,2,388.353966724171,0.0,14582.066462978317,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034837312070256705,9721.377641985544,1,1,1_0,1_0_0,1_3_0,1_1_0 -18740,2,41.0,0.0,1,111,600.0,0.0,0.0,0,35,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,104770,2,1,2,0,1,,300.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,550.126510115653,600.0,26081.2219010698,0,1,1,2,130.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023005057135585708,26081.2219010698,7,4,7,7_1,7_3,7_1_0 -18741,2,27.0,0.0,5,111,0.0,0.0,1000.0,0,38,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,50,0,0,0,0,0,0,0,0,3,20.0,2,,3,106614,2,1,0,1,1,,0.0,1510.0,22,1.0,0.0,5.0,4.0,2.5,2,2,629.460374871795,0.0,24591.630665116245,0,1,3,4,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04066424116471957,9836.652266046498,2,1,2_0,2_0_0,2_3_0,2_0_0 -18742,2,38.0,0.0,6,111,0.0,0.0,960.0,0,34,0.0,0.0,490.47680144402403,960.0,0.0,1097.5159436665263,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,110373,2,1,1,0,1,,216.0,,12,1.0,0.0,3.0,1.0,1.0,2,1,534.264188885736,0.0,71000.7050125282,0,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01352099250043512,71000.7050125282,10,5,10,10_1,10_3,10_0_0 -18743,2,71.0,0.0,1,111,550.0,1600.0,0.0,86,77,0.0,0.0,760.1958251667618,2150.0,0.0,2901.844641355918,33,0,0,0,0,0,0,0,0,0,,1,,1,132502,2,1,2,0,1,,350.0,,41,0.0,1.0,7.0,3.0,2.0,1,1,422.003911638103,550.0,19184.901390583254,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11206729480795295,9592.450695291627,1,1,1_0,1_1_0,1_3_0,1_1_0 -18744,2,53.0,0.0,1,111,320.0,850.0,0.0,0,46,0.0,372.6621017350048,442.2957528242978,1530.0,0.0,1541.6049657203316,70,0,0,0,0,0,0,0,0,2,3.0,1,,1,103806,2,1,2,0,1,,208.0,,12,1.0,1.0,5.0,1.0,1.0,3,3,513.410138186514,320.0,28642.930907060363,0,1,0,1,115.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05341632128934338,28642.930907060363,8,4,8,8_1,8_3,8_1_0 -18745,2,52.0,0.0,5,111,685.0,1480.0,0.0,68,46,0.0,0.0,946.7893458895124,2165.0,0.0,2684.2062932542244,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,119906,2,2,5,0,1,,327.0,538.0,43,2.0,1.0,5.0,3.0,2.0,2,2,444.932015811084,685.0,26622.00169320659,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0813237120540213,13311.000846603294,3,2,3_0,3_1_0,3_3_0,3_0_0 -18746,2,85.0,0.0,1,111,384.0,0.0,0.0,0,78,1536.8988384515228,0.0,530.7549033891573,2442.0,1770.2164873117072,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,112471,2,2,2,0,1,,240.0,,11,0.0,3.0,6.0,1.0,1.0,3,2,458.096992662694,384.0,14231.927918466285,0,5,0,1,150.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.17158602924284372,14231.927918466285,3,2,3_0,3_1_0,3_3_0,3_1_0 -18747,2,67.0,0.0,1,111,378.0,604.0,0.0,0,74,0.0,0.0,522.4618580237018,982.0,0.0,1095.4463521118591,50,0,0,0,0,0,0,0,0,0,,2,,1,124972,1,1,0,0,1,,0.0,333.0,31,1.0,1.0,3.0,2.0,1.5,1,1,370.455727612293,378.0,22758.480626088305,0,5,2,3,99.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043148750399195024,15172.320417392204,3,2,3_0,3_0_0,3_3_0,3_1_0 -18748,2,52.0,0.0,7,111,229.0,517.0,0.0,0,47,0.0,0.0,316.5178981148881,746.0,0.0,937.6585497381311,31,0,0,0,0,0,0,0,0,3,20.0,2,,5,127878,1,2,0,0,1,,0.0,305.0,12,1.0,0.0,2.0,1.0,1.0,1,1,525.031335529389,229.0,15824.10327768416,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04714327168554579,15824.10327768416,3,2,3_0,3_0_0,3_3_0,3_0_0 -18749,1,58.0,59.0,1,111,276.0,948.0,0.0,0,68,0.0,0.0,381.48008681095683,1224.0,0.0,1719.3429500033815,71,1,2,2,1,1,2,2,2,0,,8,,1,112957,1,3,0,0,1,,0.0,327.0,12,1.0,1.0,4.0,1.0,1.0,2,2,553.013661263065,276.0,13972.450575463177,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08760095399080882,13972.450575463177,3,2,3_1,3_0_1,3_3_1,3_1_0 -18750,1,50.0,160.0,2,111,570.0,1130.0,0.0,0,56,0.0,0.0,787.8393097182804,1700.0,0.0,2049.4277779576173,43,0,0,0,0,0,0,0,0,0,,2,,2,100122,2,3,0,0,1,,0.0,286.0,32,1.0,0.0,2.0,2.0,1.3,1,1,451.780840106292,570.0,16379.24652544384,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10378987808500147,12599.42040418757,2,1,2_1,2_0_1,2_3_1,2_0_1 -18751,1,62.0,270.0,1,111,375.0,1272.0,0.0,0,78,0.0,0.0,518.315335340974,1647.0,0.0,2306.966489877955,71,0,0,0,0,0,0,0,0,0,,2,,1,132993,2,1,0,0,1,,0.0,298.0,11,0.0,5.0,5.0,1.0,1.0,2,2,553.473545322663,375.0,11380.400632271067,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1447224973196155,11380.400632271067,2,1,2_1,2_0_1,2_3_1,2_1_0 -18752,2,63.0,0.0,1,111,373.0,1050.0,0.0,56,77,0.0,0.0,515.5509868858221,1423.0,0.0,1904.3355458898213,71,2,2,1,2,1,2,2,2,0,,1,,1,100234,2,1,1,0,1,,126.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,388.12345248746,373.0,34332.28623211063,1,5,0,1,66.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.041447866022656044,22888.190821407086,6,3,6,6_1,6_3,6_1_0 -18753,1,42.0,38.0,8,111,610.0,1026.0,0.0,56,64,0.0,0.0,843.1262788213177,1636.0,0.0,1860.8078762694827,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,104448,1,1,3,0,1,,756.0,417.0,43,2.0,0.0,4.0,5.0,3.0,2,2,412.279029477991,610.0,37361.08564153359,1,1,2,3,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04378887743511636,12453.695213844529,2,1,2_1,2_1_1,2_3_1,2_0_0 -18754,2,75.0,0.0,1,111,671.0,1015.0,0.0,78,75,0.0,0.0,927.4389067034494,1686.0,0.0,1840.8576943601606,60,0,0,0,0,0,0,0,0,0,,1,,1,107532,2,1,2,0,1,,340.0,350.0,41,0.0,1.0,3.0,2.0,1.5,2,2,368.65406454584,671.0,23102.52203074759,5,5,2,3,56.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07297904522095337,15401.681353831727,3,2,3_0,3_1_0,3_3_0,3_1_0 -18755,2,52.0,0.0,6,111,400.0,400.0,0.0,0,67,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,70,0,0,0,0,0,0,0,0,2,30.0,1,,4,113166,2,1,2,0,1,,160.0,,32,3.0,0.0,4.0,3.0,2.0,2,2,461.263396573375,400.0,58589.8591237658,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013654240033417253,29294.9295618829,8,4,8,8_1,8_3,8_0_0 -18756,2,85.0,0.0,2,111,200.0,1200.0,0.0,0,78,0.0,0.0,276.4348455151861,1400.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,2,122427,2,1,1,0,2,,100.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,534.264188885736,200.0,16335.31698688107,0,5,0,1,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08570387713469799,16335.31698688107,4,2,4_0,4_1_0,4_3_0,4_0_1 -18757,2,60.0,0.0,7,111,1250.0,1220.0,0.0,22,56,0.0,0.0,1727.717784469913,2470.0,0.0,2212.656539033888,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,105776,2,1,1,0,1,,500.0,,43,2.0,3.0,5.0,2.0,1.5,4,2,509.592609951504,1250.0,21578.40889825094,1,1,0,1,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11446627096774538,14385.605932167293,3,2,3_0,3_1_0,3_3_0,3_0_0 -18758,2,70.0,0.0,2,111,400.0,1144.0,0.0,77,74,0.0,0.0,552.8696910303722,1544.0,0.0,2074.8189185694814,71,0,0,0,0,0,0,0,0,0,,1,,2,123648,2,1,1,0,1,,180.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,492.559613560189,400.0,41449.19898225587,5,5,0,1,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03725041829302844,27632.799321503913,7,4,7,7_1,7_3,7_0_1 -18759,2,36.0,0.0,1,111,200.0,370.0,0.0,0,67,0.0,0.0,276.4348455151861,570.0,0.0,671.0515733135561,31,0,0,0,0,0,0,0,0,0,,1,,1,106973,2,1,2,0,1,,170.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,402.379622131126,200.0,11980.09140746322,0,1,1,2,55.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04757893580385438,11980.09140746322,2,1,2_0,2_1_0,2_3_0,2_1_0 -18760,1,57.0,178.0,2,111,334.0,0.0,0.0,0,52,0.0,0.0,461.6461920103608,334.0,0.0,0.0,60,1,2,2,1,1,2,2,2,1,10.0,2,,2,130877,1,1,0,1,1,495.0,0.0,238.0,12,1.0,2.0,2.0,1.0,1.0,1,1,453.621726410973,334.0,10839.869853135784,0,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030812178054276145,10839.869853135784,2,1,2_1,2_0_1,2_3_1,2_0_1 -18761,2,69.0,0.0,2,111,420.0,700.0,0.0,0,77,0.0,0.0,580.5131755818909,1120.0,0.0,1269.5570305932142,10,0,0,0,0,0,0,0,0,0,,1,,2,111029,2,1,3,0,1,,250.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,534.264188885736,420.0,21710.687857308196,0,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05158749494079196,21710.687857308196,6,3,6,6_1,6_3,6_0_1 -18762,1,43.0,420.0,1,111,130.0,620.0,0.0,85,67,0.0,0.0,179.68264958487097,1050.0,516.0981012570575,1124.4647985254182,71,0,0,0,0,0,0,0,0,0,,2,,1,123023,2,2,0,0,1,,0.0,650.0,42,1.0,1.0,3.0,4.0,2.1,1,1,522.435819366904,130.0,15334.969798005839,6,4,2,3,72.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06847095324156048,7302.366570478971,1,1,1_1,1_0_1,1_3_1,1_1_0 -18763,1,31.0,261.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,1525.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,121843,1,1,0,0,1,,0.0,244.0,42,1.0,0.0,3.0,3.0,1.8,1,1,445.935044872026,0.0,9507.738142699794,6,1,2,3,47.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1603956668885461,5282.0767459443305,1,1,1_1,1_0_1,1_3_1,1_0_1 -18764,0,46.0,0.0,6,111,0.0,0.0,0.0,42,34,0.0,0.0,0.0,2804.0,0.0,0.0,70,1,2,2,1,1,2,2,2,2,30.0,1,,4,119132,1,1,1,0,2,,0.0,,43,2.0,2.0,4.0,3.0,1.8,2,2,474.650923461825,0.0,81252.41876738335,1,1,5,0,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03450974189491565,45140.232648546305,10,5,10,10_1,10_3,10_0_0 -18765,1,80.0,159.0,5,111,430.0,160.0,0.0,0,77,0.0,0.0,594.3349178576501,590.0,0.0,290.18446413559184,50,2,1,2,1,1,2,2,2,0,,2,,3,109153,1,2,0,1,1,750.0,240.0,343.0,11,0.0,1.0,3.0,1.0,1.0,2,2,440.0535008756,430.0,10624.133767343668,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.05553393932346134,10624.133767343668,2,1,2_1,2_0_1,2_3_1,2_0_0 -18766,1,58.0,270.0,2,111,320.0,180.0,0.0,0,77,0.0,0.0,442.2957528242978,500.0,0.0,326.4575221525408,70,2,1,2,1,2,2,2,2,0,,2,,2,120155,1,3,0,1,1,,550.0,296.0,11,0.0,6.0,4.0,1.0,1.0,2,2,498.402311107223,320.0,10023.333333333332,0,6,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.049883604921849026,10023.333333333332,2,1,2_1,2_0_1,2_3_1,2_0_1 -18767,2,45.0,0.0,2,111,700.0,900.0,0.0,56,64,0.0,0.0,967.5219593031513,1600.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,2,6.0,2,,2,106996,2,1,0,0,1,,0.0,480.0,43,2.0,1.0,4.0,4.0,2.5,3,2,467.199118234774,700.0,41923.32097352864,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038164915441939284,16769.328389411454,4,2,4_0,4_0_0,4_3_0,4_0_1 -18768,2,77.0,0.0,1,111,200.0,1006.0,0.0,0,77,0.0,0.0,276.4348455151861,1206.0,0.0,1824.5348182525336,30,0,0,0,0,0,0,0,0,0,,1,,1,128329,2,1,2,0,1,,85.0,,11,0.0,1.0,3.0,1.0,1.0,3,2,492.369782156394,200.0,17516.3426737593,0,5,0,1,44.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06884998897667559,17516.3426737593,4,2,4_0,4_1_0,4_3_0,4_1_0 -18769,2,92.0,0.0,5,111,467.0,0.0,0.0,0,77,0.0,0.0,645.4753642779596,467.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,102508,1,1,0,0,1,1600.0,0.0,420.0,11,0.0,3.0,1.0,1.0,1.0,2,2,852.810166696502,467.0,37151.91652044449,0,5,2,3,36.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012570011017951459,37151.91652044449,9,5,9,9_0,9_3,9_0_0 -18770,2,52.0,0.0,5,111,470.0,0.0,0.0,77,43,0.0,0.0,649.6218869606873,470.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,20.0,2,,3,127009,1,2,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,1,1,618.926462149752,470.0,46920.52298172234,5,1,1,2,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01001693864714778,31280.348654481557,8,4,8,8_0,8_3,8_0_0 -18771,2,73.0,0.0,2,111,600.0,0.0,0.0,90,75,0.0,0.0,829.3045365455583,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,100830,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,600.086124891729,600.0,29686.83846024473,5,5,0,1,83.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020210976685964485,19791.225640163153,5,3,5,5_0,5_3,5_0_1 -18772,2,55.0,0.0,1,111,1000.0,1600.0,0.0,0,52,0.0,0.0,1382.1742275759307,2600.0,0.0,2901.844641355918,31,0,0,0,0,0,0,0,0,1,5.0,1,,1,102189,2,1,2,0,1,,470.0,,32,3.0,1.0,4.0,3.0,2.0,2,2,382.918808868651,1000.0,47979.94566053811,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05418930689074149,23989.972830269056,6,3,6,6_1,6_3,6_1_0 -18773,2,65.0,0.0,1,111,370.0,988.0,0.0,77,74,0.0,0.0,511.40446420309434,1358.0,0.0,1791.8890660372795,20,0,0,0,0,0,0,0,0,0,,1,,1,116100,2,3,2,0,1,,380.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,388.12345248746,370.0,30163.0909493873,5,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045021911125709246,20108.727299591534,5,3,5,5_1,5_3,5_1_0 -18774,2,33.0,0.0,2,111,334.0,455.0,0.0,0,68,0.0,0.0,461.6461920103608,789.0,0.0,825.2120698855892,20,1,2,2,1,1,2,2,1,1,15.0,2,,2,121499,1,1,0,0,1,,0.0,307.0,12,1.0,1.0,3.0,1.0,1.0,2,2,509.260038353041,334.0,14571.605410161821,0,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05414640170325872,14571.605410161821,3,2,3_0,3_0_0,3_3_0,3_0_1 -18775,2,55.0,0.0,6,111,840.0,600.0,0.0,54,63,0.0,465.827627168756,1161.0263511637818,1890.0,0.0,1088.1917405084694,10,0,0,0,0,0,0,0,0,2,35.0,1,,4,120645,2,1,3,0,1,,140.0,,43,2.0,6.0,5.0,2.0,1.5,2,2,513.605210938444,840.0,34130.710884946486,4,1,1,2,127.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05537534821267358,22753.80725663099,6,3,6,6_1,6_3,6_0_0 -18776,2,33.0,0.0,1,111,450.0,1210.0,0.0,0,43,0.0,0.0,621.9784024091688,1660.0,0.0,2194.5200100254133,42,0,0,0,0,0,0,0,0,1,15.0,1,,1,132665,2,1,1,0,1,,360.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,382.918808868651,450.0,28904.75814936756,0,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057429990987014054,18065.473843354725,4,2,4_0,4_1_0,4_3_0,4_1_0 -18777,2,83.0,0.0,2,111,500.0,0.0,0.0,0,78,0.0,0.0,691.0871137879653,500.0,0.0,0.0,12,2,1,2,1,2,2,2,2,0,,2,,2,115083,1,1,0,1,1,380.0,0.0,271.0,11,0.0,2.0,2.0,1.0,1.0,2,2,440.0535008756,500.0,21413.22922750758,0,5,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023350051255123003,21413.22922750758,6,3,6,6_0,6_3,6_0_1 -18778,1,81.0,75.0,2,111,373.0,0.0,0.0,0,78,0.0,0.0,515.5509868858221,373.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,103844,2,1,0,1,1,665.0,0.0,355.0,11,0.0,2.0,2.0,1.0,1.0,2,2,440.0535008756,373.0,12478.424538310033,0,5,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02989159399528779,12478.424538310033,2,1,2_1,2_0_1,2_3_1,2_0_1 -18779,1,46.0,98.0,1,111,1190.0,960.0,0.0,85,62,0.0,0.0,1644.7873308153573,2150.0,0.0,1741.106784813551,60,0,0,0,0,0,0,0,0,2,105.0,1,,1,125248,2,2,2,0,2,,690.0,,42,1.0,0.0,5.0,6.0,3.3,2,1,435.382807290585,1190.0,30123.964585824855,6,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07137174769524543,9128.474116916623,1,1,1_1,1_1_1,1_3_1,1_1_0 -18780,1,52.0,200.0,1,111,1472.0,0.0,0.0,77,65,0.0,0.0,2034.5604629917698,1472.0,0.0,0.0,20,2,2,2,2,1,2,2,1,0,,1,,1,117008,2,3,4,0,1,,828.0,175.0,42,3.0,2.0,4.0,6.0,3.3,1,1,362.191377151421,1472.0,89288.27030626255,6,4,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.01648592805024644,27057.05160795835,7,4,7,7_1,7_3,7_1_0 -18781,1,62.0,65.0,1,111,270.0,735.0,0.0,0,77,0.0,0.0,373.1870414455012,1005.0,0.0,1333.034882122875,71,2,2,2,1,1,2,2,2,0,,1,,1,119673,1,1,3,0,2,,248.0,500.0,21,0.0,2.0,3.0,2.0,1.5,2,2,390.298960444397,270.0,9240.11852518081,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.10876483859608654,6160.0790167872065,1,1,1_1,1_1_1,1_3_1,1_1_0 -18782,2,62.0,0.0,1,111,527.0,1605.0,0.0,0,78,0.0,0.0,728.4058179325154,2132.0,0.0,2910.9129058601557,31,0,0,0,0,0,0,0,0,0,,1,,1,120419,2,1,3,0,1,,204.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,459.70948936389,527.0,11471.432876160827,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.18585298131592448,11471.432876160827,2,1,2_0,2_1_0,2_3_0,2_1_0 -18783,2,84.0,0.0,5,111,180.0,921.0,0.0,0,78,0.0,0.0,248.7913609636675,1101.0,0.0,1670.3743216805005,50,0,0,0,0,0,0,0,0,0,,2,,3,127849,2,1,0,0,1,,120.0,512.0,11,0.0,1.0,3.0,1.0,1.0,1,1,509.375130162045,180.0,21850.929158219442,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0503868733465665,21850.929158219442,6,3,6,6_0,6_3,6_0_0 -18784,2,36.0,0.0,2,111,860.0,1151.0,0.0,37,38,0.0,0.0,1188.6698357153002,2011.0,0.0,2087.5144888754135,50,0,0,0,0,0,0,0,0,2,4.0,1,,2,109578,2,1,3,0,1,,450.0,,43,2.0,0.0,7.0,5.0,2.4,3,2,299.395044145758,860.0,77577.22145831783,1,1,1,2,145.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0259225577069747,32323.842274299095,8,4,8,8_1,8_3,8_0_1 -18785,2,47.0,0.0,2,111,636.0,1800.0,0.0,52,34,0.0,0.0,879.0628087382918,2436.0,0.0,3264.575221525408,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,131390,2,1,1,0,1,,564.0,,43,2.0,0.0,4.0,6.0,3.3,2,2,325.606272794497,636.0,62150.07484671745,1,1,1,2,126.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039195447567971206,18833.356014156805,5,3,5,5_1,5_3,5_0_1 -18786,0,75.0,0.0,1,111,960.0,0.0,0.0,0,78,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111424,2,1,2,0,1,,204.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,306.793081565467,960.0,14889.97626039412,0,5,5,0,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06447290332849664,14889.97626039412,3,2,3_0,3_1_0,3_3_0,3_1_0 -18787,2,67.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,791.9069661868851,414.65226827277917,1135.0,120.42289029331342,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,124785,2,1,2,0,1,,70.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,291.983486758221,300.0,14443.091081210505,0,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07858428598269791,14443.091081210505,3,2,3_0,3_1_0,3_3_0,3_0_1 -18788,2,29.0,0.0,8,111,350.0,956.0,0.0,0,54,0.0,0.0,483.76097965157567,1306.0,0.0,1733.8521732101613,10,0,0,0,0,0,0,0,0,2,25.0,8,2001.0,6,130745,2,2,0,0,1,,360.0,300.0,12,1.0,0.0,2.0,1.0,1.0,2,2,347.230372039446,350.0,20683.20460868753,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06314301989022741,20683.20460868753,5,3,5,5_0,5_3,5_0_0 -18789,2,35.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,597.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,102709,2,1,0,1,1,,207.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,413.189534483607,0.0,22849.161542769187,0,1,1,2,50.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026127873396252728,22849.161542769187,6,3,6,6_0,6_3,6_0_1 -18790,2,40.0,0.0,6,111,2130.0,0.0,0.0,55,37,0.0,0.0,2944.0311047367322,3198.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,4,107047,2,1,2,0,1,,480.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,285.551365283204,2130.0,86177.34610956153,1,1,1,2,115.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03710952059180639,35907.22754565064,9,5,9,9_1,9_3,9_0_0 -18791,2,68.0,0.0,1,111,200.0,710.0,0.0,77,75,0.0,0.0,276.4348455151861,910.0,0.0,1287.6935596016888,50,0,0,0,0,0,0,0,0,0,,1,,1,115550,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,239.675800600894,200.0,36172.58707217106,5,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02515717214763711,24115.05804811404,6,3,6,6_1,6_3,6_1_0 -18792,1,40.0,39.0,1,111,420.0,924.0,0.0,0,43,0.0,0.0,580.5131755818909,1344.0,0.0,1675.8152803830428,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,100446,2,1,1,0,1,,216.0,730.0,32,1.0,0.0,5.0,3.0,1.6,2,2,252.276244900057,420.0,27671.729126870312,0,1,2,3,102.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0485694259956789,17294.830704293945,4,2,4_1,4_1_1,4_3_1,4_1_0 -18793,1,33.0,30.0,1,111,1125.0,0.0,0.0,0,68,0.0,0.0,1554.946006022922,1125.0,0.0,0.0,41,2,2,2,2,2,2,2,1,0,,2,,1,129887,1,3,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,2,2,536.683885803782,1125.0,8701.734261797275,0,4,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.129284573184339,8701.734261797275,1,1,1_1,1_0_1,1_3_1,1_1_0 -18794,1,45.0,358.0,8,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,3190.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,1999.0,6,105337,2,1,2,0,1,,493.0,965.0,43,2.0,2.0,6.0,7.0,3.3999999999999995,1,1,355.230938763977,0.0,39602.0737460342,1,1,2,3,107.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08055133729756893,11647.66874883359,2,1,2_1,2_1_1,2_3_1,2_0_0 -18796,2,35.0,0.0,1,111,700.0,2000.0,0.0,85,23,0.0,0.0,967.5219593031513,2700.0,0.0,3627.3058016948976,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,104469,1,3,3,0,1,,480.0,,42,1.0,0.0,5.0,4.0,2.1,3,2,236.947689362521,700.0,34595.03029838037,6,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07804589204613026,16473.8239516097,4,2,4_0,4_1_0,4_3_0,4_1_0 -18797,2,40.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,313.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,113382,2,1,0,1,1,750.0,0.0,312.0,32,1.0,0.0,3.0,2.0,1.3,2,2,64.7357631136679,0.0,14588.343094668215,0,1,2,3,61.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021455486614816183,11221.802380514011,2,1,2_0,2_0_0,2_3_0,2_0_1 -18798,2,89.0,0.0,2,111,270.0,870.0,0.0,0,77,0.0,0.0,373.1870414455012,1140.0,0.0,1577.8780237372805,33,2,2,2,2,1,2,2,2,0,,1,,2,122112,1,2,5,0,2,,170.0,270.0,11,0.0,6.0,2.0,1.0,1.0,2,2,86.1303630688165,270.0,17424.855404213147,0,5,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.06542378536606737,17424.855404213147,4,2,4_0,4_1_0,4_3_0,4_0_1 -18799,1,48.0,238.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1646.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,2,110296,2,2,5,0,2,,191.0,355.0,32,1.0,4.0,3.0,2.0,1.5,1,1,76.6507620266401,0.0,18219.68769839461,0,1,2,3,73.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0903418339132692,12146.458465596406,2,1,2_1,2_1_1,2_3_1,2_0_1 -18800,1,38.0,285.0,5,111,0.0,0.0,0.0,81,63,0.0,0.0,0.0,247.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,104647,1,2,0,1,1,800.0,0.0,241.0,43,2.0,0.0,2.0,2.0,1.5,2,2,64.7357631136679,0.0,1454.7921279995694,4,4,2,3,40.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1697837067207949,969.8614186663796,1,1,1_1,1_0_1,1_3_1,1_0_0 -18801,2,73.0,0.0,2,111,240.0,348.0,0.0,0,75,0.0,0.0,331.72181461822333,588.0,0.0,631.1512094949122,71,2,1,2,1,1,2,2,2,0,,2,,2,103377,1,2,0,1,1,,0.0,425.0,11,0.0,3.0,5.0,1.0,1.0,2,2,80.0320854699195,240.0,20486.562720589813,0,5,2,3,87.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028701740161078196,20486.562720589813,5,3,5,5_0,5_3,5_0_1 -18802,2,61.0,0.0,2,111,25.0,23.0,0.0,54,67,0.0,0.0,34.554355689398264,48.0,0.0,41.714016719491326,70,2,1,2,1,1,2,2,2,2,30.0,2,,2,124565,1,3,0,1,1,841.0,0.0,375.0,43,2.0,2.0,4.0,2.0,1.5,2,2,70.814722268213,25.0,28241.992440852515,4,1,2,3,84.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.001699596800775543,18827.994960568343,5,3,5,5_0,5_3,5_0_1 -18803,2,30.0,0.0,2,111,324.0,1230.0,0.0,22,54,0.0,0.0,447.8244497346015,1554.0,0.0,2230.793068042362,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,113078,2,1,0,0,1,,300.0,458.0,43,2.0,0.0,3.0,3.0,1.8,2,2,76.7316784788587,324.0,25638.82901276929,1,1,2,3,82.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060611192470063205,14243.793895982937,3,2,3_0,3_0_0,3_3_0,3_0_1 -18804,2,62.0,0.0,1,111,220.0,800.0,0.0,78,78,0.0,0.0,304.0783300667047,1188.0,289.01493670395223,1450.922320677959,43,1,2,2,1,1,2,2,2,0,,1,,1,100624,2,1,1,0,1,,50.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,297.651100533677,220.0,29604.514232954585,5,5,0,1,50.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.040129015144506744,19736.342821969723,5,3,5,5_1,5_3,5_1_0 -18805,2,62.0,0.0,2,111,312.0,463.0,0.0,77,67,0.0,0.0,431.23835900369033,775.0,0.0,839.7212930923688,44,2,2,1,1,2,2,2,2,0,,2,,2,117213,2,2,0,1,1,916.0,0.0,339.0,42,1.0,2.0,4.0,2.0,1.5,3,3,230.912881779373,312.0,19160.81226490724,5,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04044713706732578,12773.874843271493,2,1,2_0,2_0_0,2_3_0,2_0_1 -18806,2,84.0,0.0,2,111,244.0,1596.0,0.0,0,78,0.0,0.0,337.25051152852706,1840.0,0.0,2894.5900297525286,50,0,0,0,0,0,0,0,0,0,,1,,2,106769,2,1,2,0,1,,132.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,316.827568169812,244.0,25048.422129956867,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07345772082782959,25048.422129956867,7,4,7,7_1,7_3,7_0_1 -18807,2,67.0,0.0,8,111,220.0,629.0,0.0,0,75,0.0,0.0,304.0783300667047,849.0,0.0,1140.7876746330453,10,2,2,2,2,1,2,2,2,0,,2,2000.0,6,121005,1,3,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,379.811132739833,220.0,25985.083187619875,0,5,0,1,58.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.032672591188951466,25985.083187619875,7,4,7,7_0,7_3,7_0_0 -18808,2,58.0,0.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1568.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106425,2,2,3,0,1,,512.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,226.356865864271,0.0,23507.82968355361,0,1,0,1,72.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06670118088770201,23507.82968355361,6,3,6,6_1,6_3,6_1_0 -18809,2,31.0,0.0,2,111,600.0,0.0,0.0,0,52,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,127537,2,2,0,0,1,,300.0,313.0,12,1.0,0.0,2.0,1.0,1.0,2,2,270.975782242569,600.0,20908.285158473256,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028696758029285105,20908.285158473256,5,3,5,5_0,5_3,5_0_1 -18810,2,32.0,0.0,2,111,768.0,1090.0,0.0,52,62,0.0,0.0,1061.5098067783147,1858.0,0.0,1976.8816619237193,31,0,0,0,0,0,0,0,0,1,20.0,1,,2,132880,2,1,1,0,1,,924.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,74.7476855430664,768.0,37487.84608483147,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049562730165812155,17851.355278491177,4,2,4_0,4_1_0,4_3_0,4_0_1 -18811,2,63.0,0.0,2,112,960.0,0.0,0.0,85,90,0.0,258.79312620486445,1326.8872584728933,1210.0,0.0,0.0,12,2,2,1,1,1,2,2,2,0,,1,,2,124844,2,2,1,0,1,,250.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,75.2105442324756,960.0,30962.559176055882,6,5,0,1,25.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03907945700224041,20641.706117370588,5,3,5,5_1,5_0,5_0_1 -18812,2,40.0,0.0,7,112,36.0,0.0,0.0,0,90,0.0,269.144851253059,49.7582721927335,360.0,110.10092826817227,0.0,70,0,0,0,0,0,0,0,0,0,,7,,5,128067,2,1,0,0,1,,0.0,200.0,12,1.0,0.0,1.0,1.0,1.0,1,1,92.8700668052604,36.0,5490.333333333333,0,4,3,4,10.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06556978932669541,5490.333333333333,1,1,1_0,1_1_0,1_0_0,1_0_0 -18813,2,47.0,0.0,1,112,60.0,100.0,0.0,55,33,0.0,0.0,82.93045365455583,160.0,0.0,181.36529008474488,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,124482,2,1,1,0,1,,510.0,,43,4.0,0.0,6.0,4.0,2.5,2,2,56.0714406881318,60.0,68298.42001105602,1,1,1,2,110.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0023426603422758464,27319.36800442241,7,4,7,7_1,7_0,7_1_0 -18814,1,27.0,160.0,1,112,1570.0,0.0,0.0,55,21,0.0,1449.241506747241,2170.013537294211,3110.0,240.84578058662683,0.0,70,1,2,2,1,1,2,1,2,0,,1,,1,128600,1,3,3,0,1,,558.0,527.0,43,2.0,0.0,5.0,3.0,1.8,1,1,65.5012658253251,1570.0,11503.071465233641,4,1,2,3,62.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.2703625731092363,6390.595258463134,1,1,1_1,1_1_1,1_0_1,1_1_0 -18815,2,32.0,0.0,2,112,1320.0,1444.0,0.0,85,65,0.0,0.0,1824.4699804002285,2764.0,0.0,2618.914788823716,50,0,0,0,0,0,0,0,0,0,,1,,2,123016,1,1,1,0,1,,400.0,,42,1.0,0.0,5.0,5.0,2.4,1,1,65.9310416793785,1320.0,40981.48320142573,6,1,1,2,200.0,7,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06744509432259498,17075.618000594055,4,2,4_0,4_1_0,4_0_0,4_0_1 -18816,1,31.0,451.0,7,112,1510.0,0.0,0.0,0,85,0.0,0.0,2087.0830836396553,1510.0,0.0,0.0,70,2,2,1,2,2,2,2,1,0,,1,,5,129846,2,1,1,0,1,,0.0,415.0,31,0.0,0.0,4.0,4.0,1.9,1,1,44.3229662173687,1510.0,11745.705069790205,0,6,2,3,80.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.1285576294507598,6181.950036731687,1,1,1_1,1_1_1,1_0_1,1_0_0 -18817,2,53.0,0.0,2,112,1062.0,0.0,0.0,0,43,0.0,0.0,1467.8690296856382,1062.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,30.0,1,,2,131330,2,2,1,0,1,,314.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,65.7077341258027,1062.0,31915.797554310004,0,1,0,1,70.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.033275057538287474,31915.797554310004,8,4,8,8_1,8_0,8_0_1 -18818,2,48.0,0.0,1,112,490.0,0.0,0.0,62,63,0.0,258.79312620486445,677.265371512206,890.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,125265,1,3,4,0,1,,180.0,421.0,43,2.0,1.0,5.0,2.0,1.5,2,2,64.4277229181592,490.0,27009.08075383588,1,1,2,3,100.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032951880447600966,18006.053835890587,4,2,4_0,4_1_0,4_0_0,4_1_0 -18819,2,61.0,0.0,5,112,652.0,1020.0,0.0,77,75,0.0,0.0,901.1775963795067,1672.0,0.0,1849.925958864398,71,0,0,0,0,0,0,0,0,0,,1,,3,124419,2,1,2,0,1,,360.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,78.0378187807101,652.0,46014.12811370668,7,5,0,1,80.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036336665901139716,30676.085409137788,8,4,8,8_1,8_0,8_0_0 -18820,2,65.0,0.0,7,112,416.0,1650.0,0.0,75,74,0.0,0.0,574.9844786715871,2066.0,0.0,2992.5272863982905,12,2,2,1,2,2,2,2,1,0,,1,,5,110960,2,1,1,0,1,,340.0,,41,0.0,3.0,8.0,2.0,1.5,3,3,74.8957695608053,416.0,47724.57908281567,5,5,0,1,165.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.043290062263616924,31816.386055210445,8,4,8,8_1,8_0,8_0_0 -18821,2,67.0,0.0,5,112,740.0,0.0,0.0,75,74,4480.754631054002,62.110350289167464,1022.8089284061887,3800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103240,2,2,1,0,1,,339.0,,41,0.0,2.0,8.0,2.0,1.5,1,1,69.3710531843566,740.0,78670.10188390252,5,5,0,1,140.0,7,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048302975450671894,52446.734589268344,10,5,10,10_1,10_0,10_0_0 -18822,2,38.0,0.0,9,112,436.0,1126.0,0.0,54,64,0.0,0.0,602.6279632231058,1562.0,0.0,2042.1731663542275,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,115374,2,1,1,0,1,,204.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,65.6988810287015,436.0,51810.941597246,1,1,1,2,120.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030148072045133954,34540.627731497334,9,5,9,9_1,9_0,9_0_0 -18823,2,44.0,0.0,1,112,900.0,0.0,0.0,56,52,1941.6603401234008,517.5862524097289,1243.9568048183376,2810.0,189.2359704609211,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106243,2,1,1,0,1,,100.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,60.1566552670795,900.0,65189.74357237104,1,1,0,1,100.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04310494022545818,26075.897428948414,7,4,7,7_1,7_0,7_1_0 -18824,2,59.0,0.0,5,112,400.0,2075.0,0.0,56,75,0.0,0.0,552.8696910303722,2475.0,0.0,3763.3297692584565,71,0,0,0,0,0,0,0,0,0,,1,,3,115448,1,1,3,0,2,,250.0,,42,2.0,1.0,6.0,3.0,2.0,2,2,62.9502790013165,400.0,71608.0067096943,1,5,0,1,104.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03456317406004452,35804.00335484715,9,5,9,9_1,9_0,9_0_0 -18825,2,53.0,0.0,1,112,550.0,0.0,0.0,52,42,0.0,672.8621281326475,760.1958251667618,1260.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,105168,2,2,3,0,1,,120.0,,43,2.0,3.0,7.0,4.0,2.1,1,1,62.8627267611011,550.0,29420.0347967672,1,1,1,2,97.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04282795750256741,14009.54037941295,3,2,3_0,3_1_0,3_0_0,3_1_0 -18826,2,58.0,0.0,6,112,1100.0,0.0,0.0,68,56,3733.962192545002,0.0,1520.3916503335236,4020.0,722.5373417598805,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,105529,2,1,2,0,1,,513.0,,43,2.0,3.0,9.0,2.0,1.5,2,2,81.3715102009549,1100.0,29107.567662981364,1,1,1,2,140.0,7,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13810841381681593,19405.04510865424,5,3,5,5_1,5_0,5_0_0 -18827,2,61.0,0.0,1,112,400.0,0.0,0.0,78,78,0.0,590.048327747091,552.8696910303722,1120.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132658,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,60.2938145707716,400.0,37663.25876505033,7,5,0,1,160.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029737203755701182,25108.839176700218,7,4,7,7_1,7_0,7_1_0 -18828,2,46.0,0.0,7,112,1200.0,0.0,0.0,42,42,0.0,289.84830134944815,1658.6090730911167,1536.0,96.33831223465073,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,,5,102012,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,4.0,2.3,2,2,62.7857205847081,1200.0,55412.75135434726,1,1,0,1,150.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027719251660646826,24092.500588846637,6,3,6,6_1,6_0,6_0_0 -18830,2,71.0,0.0,1,112,731.0,0.0,0.0,77,75,0.0,207.03450096389156,1010.3693603580052,2331.0,2408.4578058662682,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,111775,2,3,1,0,1,,365.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,59.2356648999764,731.0,35182.894188923055,5,5,0,1,190.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06625378763563713,23455.26279261537,6,3,6,6_1,6_0,6_1_0 -18831,2,39.0,0.0,1,112,1500.0,0.0,0.0,46,38,2389.735803228801,155.27587572291867,2073.261341363896,3250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,100908,2,1,1,0,1,,840.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,2,2,57.4481919392519,1500.0,68593.96915720898,6,1,1,2,220.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04738025864272991,26382.295829695766,7,4,7,7_1,7_0,7_1_0 -18832,2,28.0,0.0,6,111,1251.0,0.0,0.0,54,43,0.0,0.0,1729.0999586974892,1251.0,0.0,0.0,60,1,2,2,2,1,2,1,2,2,20.0,1,,4,108008,2,2,3,0,1,,228.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,301.668025863917,1251.0,54788.98582210343,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02283305633840207,26089.99324862068,7,4,7,7_1,7_3,7_0_0 -18833,2,84.0,0.0,9,111,240.0,850.0,0.0,78,78,0.0,0.0,331.72181461822333,1090.0,0.0,1541.6049657203316,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,117549,2,2,1,0,1,,0.0,488.0,41,0.0,0.0,3.0,2.0,1.5,2,2,283.6066784119,240.0,36412.64986943806,5,5,2,3,62.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029934651938497373,24275.099912958703,7,4,7,7_1,7_3,7_0_0 -18834,2,85.0,0.0,1,111,369.0,0.0,0.0,0,78,2688.452778632401,0.0,510.0222899755184,2309.0,240.84578058662683,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,122201,2,1,4,0,1,,210.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,284.472620281418,369.0,15684.655988714927,0,5,0,1,81.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14721393964020124,15684.655988714927,3,2,3_0,3_1_0,3_3_0,3_1_0 -18835,2,39.0,0.0,9,111,0.0,0.0,1400.0,53,35,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,50,2,2,2,1,1,2,2,2,2,40.0,1,2008.0,6,106215,1,2,1,0,1,,540.0,,43,2.0,0.0,4.0,4.0,2.1,4,3,293.685550181772,0.0,37561.07741067067,1,1,1,2,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.037272626253321374,17886.227338414603,4,2,4_0,4_1_0,4_3_0,4_0_0 -18836,2,39.0,0.0,2,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,2693.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,117424,2,1,1,0,1,,1516.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,318.656092323213,0.0,88425.4565152343,1,1,1,2,180.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030455030781051596,42107.360245349664,9,5,9,9_1,9_3,9_0_1 -18837,2,46.0,0.0,8,111,786.0,1031.0,0.0,43,38,0.0,0.0,1086.3889428746813,1817.0,0.0,1869.8761407737197,70,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,111665,2,1,1,0,1,,1308.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,324.786442412056,786.0,111747.17984356172,1,1,1,2,149.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016259918170137926,39909.70708698633,9,5,9,9_1,9_3,9_0_0 -18838,2,73.0,0.0,2,111,354.0,859.0,0.0,78,78,0.0,0.0,489.28967656187945,1213.0,0.0,1557.9278418279587,71,0,0,0,0,0,0,0,0,0,,1,,2,105378,2,1,1,0,1,,168.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,306.104314961579,354.0,28590.068434102017,5,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04242732061995146,19060.045622734677,5,3,5,5_1,5_3,5_0_1 -18839,2,59.0,0.0,1,111,433.0,1680.0,0.0,77,21,0.0,0.0,598.4814405403779,2113.0,0.0,3046.936873423714,50,2,2,2,2,1,2,2,2,0,,1,,1,100877,2,1,3,0,1,,194.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,220.627200799665,433.0,11920.851796546705,6,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.1772524343111207,7947.234531031137,1,1,1_0,1_1_0,1_3_0,1_1_0 -18840,2,51.0,0.0,1,111,0.0,0.0,660.0,48,68,0.0,0.0,337.2028009927665,660.0,0.0,754.5422112707369,60,2,2,2,2,1,2,2,2,0,,1,,1,123191,2,2,4,0,1,,190.0,,43,2.0,2.0,4.0,2.0,1.5,3,2,228.936418835541,0.0,18853.475257379203,4,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.03500680861167374,12568.983504919468,2,1,2_0,2_1_0,2_3_0,2_1_0 -18841,2,36.0,0.0,5,111,1400.0,0.0,0.0,54,62,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,3,129367,2,1,2,0,1,,332.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,291.03816910505,1400.0,40995.80059894838,1,1,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03414983924075171,19521.809809023038,5,3,5,5_1,5_3,5_0_0 -18842,1,42.0,327.0,2,111,0.0,0.0,0.0,63,85,0.0,0.0,0.0,402.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121270,2,1,0,1,1,619.0,0.0,317.0,42,1.0,0.0,3.0,2.0,1.5,4,3,331.751209233178,0.0,14935.501770137476,4,7,2,3,85.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026915734481969114,9957.00118009165,2,1,2_1,2_0_1,2_3_1,2_0_1 -18843,2,60.0,0.0,1,111,223.0,480.0,0.0,0,77,0.0,0.0,308.2248527494325,703.0,0.0,870.5533924067755,31,0,0,0,0,0,0,0,0,0,,1,,1,101662,2,1,2,0,1,,93.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,284.472620281418,223.0,19912.946790155547,0,5,0,1,83.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03530366486729856,19912.946790155547,5,3,5,5_1,5_3,5_1_0 -18844,2,81.0,0.0,2,111,317.0,987.0,0.0,0,75,0.0,0.0,438.14923014157,1304.0,0.0,1790.075413136432,10,0,0,0,0,0,0,0,0,0,,1,,2,102644,2,1,3,0,2,,387.0,,11,0.0,0.0,5.0,1.0,1.0,4,4,345.202403095162,317.0,27331.011821627104,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04771136935984716,27331.011821627104,7,4,7,7_1,7_3,7_0_1 -18845,2,74.0,0.0,2,111,350.0,1702.0,0.0,77,74,0.0,0.0,483.76097965157567,2052.0,0.0,3086.8372372423582,50,0,0,0,0,0,0,0,0,0,,1,,2,125597,2,3,2,0,1,,448.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,335.862758218447,350.0,44605.04796024983,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04600376176769628,29736.698640166553,8,4,8,8_1,8_3,8_0_1 -18846,2,61.0,0.0,7,111,900.0,0.0,0.0,0,77,0.0,51.75862524097289,1243.9568048183376,1010.0,103.2196202514115,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,114752,2,2,3,0,1,,58.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,368.888644435804,900.0,19990.47360300858,0,5,0,1,89.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05052406561533361,19990.47360300858,5,3,5,5_1,5_3,5_0_0 -18847,2,65.0,0.0,5,111,498.0,987.0,0.0,78,74,0.0,0.0,688.3227653328134,1485.0,0.0,1790.075413136432,71,0,0,0,0,0,0,0,0,0,,1,,3,111083,2,1,2,0,1,,183.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,306.104314961579,498.0,36507.04961908309,5,5,0,1,86.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04067707512643683,24338.033079388726,7,4,7,7_1,7_3,7_0_0 -18848,2,42.0,0.0,1,111,492.0,1071.0,0.0,64,43,0.0,0.0,680.0297199673578,1563.0,0.0,1942.4222568076177,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,120585,2,1,1,0,1,,590.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,237.17461430552,492.0,36966.393344505675,4,1,1,2,107.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04228164715539687,17603.044449764606,4,2,4_0,4_1_0,4_3_0,4_1_0 -18849,1,41.0,271.0,9,111,360.0,350.0,0.0,0,67,0.0,0.0,497.582721927335,710.0,0.0,634.7785152966071,71,2,2,2,1,2,1,1,2,0,,2,2008.0,6,107536,2,3,0,0,1,,100.0,289.0,12,1.0,0.0,2.0,1.0,1.0,2,2,473.591684722641,360.0,6060.0,0,4,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.11716171617161716,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -18850,2,69.0,0.0,2,111,200.0,94.0,0.0,0,77,0.0,0.0,276.4348455151861,294.0,0.0,170.4833726796602,10,2,1,2,1,1,2,2,2,0,,2,,2,112035,2,3,0,1,1,557.0,0.0,308.0,11,0.0,5.0,3.0,1.0,1.0,2,2,310.216828057597,200.0,16800.816271154767,0,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.017499149758858266,16800.816271154767,4,2,4_0,4_0_0,4_3_0,4_0_1 -18851,2,30.0,0.0,2,111,340.0,20.0,0.0,0,54,0.0,0.0,469.9392373758164,360.0,0.0,36.27305801694898,31,2,1,2,2,1,1,2,2,2,10.0,2,,2,104931,1,2,0,1,1,329.0,200.0,290.0,12,1.0,0.0,2.0,1.0,1.0,1,1,284.330354069801,340.0,18593.56506469914,0,1,2,3,54.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01936153710960352,18593.56506469914,4,2,4_0,4_0_0,4_3_0,4_0_1 -18852,1,68.0,271.0,2,111,320.0,80.0,0.0,0,78,0.0,0.0,442.2957528242978,400.0,0.0,145.09223206779592,71,1,2,2,1,1,2,2,2,0,,2,,2,127502,2,1,0,1,1,524.0,145.0,359.0,11,0.0,3.0,4.0,1.0,1.0,1,1,410.140235552319,320.0,11013.071075760947,0,5,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.036320477480652424,11013.071075760947,2,1,2_1,2_0_1,2_3_1,2_0_1 -18853,0,64.0,0.0,1,111,1138.0,0.0,0.0,78,78,0.0,527.9379774579235,1572.914270981409,1648.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126949,2,1,1,0,1,,190.0,,41,0.0,8.0,6.0,2.0,1.5,2,2,275.057309830324,1138.0,30177.850179184014,5,5,5,0,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05460958915942768,20118.566786122676,5,3,5,5_1,5_3,5_1_0 -18854,2,60.0,0.0,2,111,347.0,151.0,0.0,0,52,0.0,0.0,479.6144569688479,498.0,0.0,273.8615880279648,20,2,2,2,2,1,1,2,2,2,7.0,2,,2,112223,1,3,0,1,1,810.0,0.0,393.0,12,1.0,4.0,5.0,1.0,1.0,1,1,279.702779721663,347.0,19018.75758224774,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02618467572586535,19018.75758224774,5,3,5,5_0,5_3,5_0_1 -18855,2,83.0,0.0,1,111,1078.0,100.0,0.0,0,78,0.0,0.0,1489.983817326853,1178.0,0.0,181.36529008474488,70,0,0,0,0,0,0,0,0,0,,1,,1,107198,2,1,2,0,1,,113.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,237.29743860118,1078.0,17309.286982345297,0,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06805595176748226,17309.286982345297,4,2,4_0,4_1_0,4_3_0,4_1_0 -18856,2,49.0,0.0,1,111,550.0,860.0,0.0,67,56,0.0,0.0,760.1958251667618,1410.0,0.0,1559.741494728806,71,0,0,0,0,0,0,0,0,0,,1,,1,123471,2,1,2,0,1,,400.0,,43,3.0,1.0,5.0,4.0,2.5,1,1,222.693565519395,550.0,55503.228992258984,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025403927403875048,22201.291596903593,6,3,6,6_1,6_3,6_1_0 -18857,1,46.0,270.0,9,111,573.0,0.0,0.0,0,85,0.0,0.0,791.9858324010082,573.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2008.0,6,105463,2,1,0,0,1,,168.0,303.0,11,0.0,0.0,2.0,1.0,1.0,2,2,300.243837628347,573.0,16045.130856067239,0,7,2,3,57.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035711768582013664,16045.130856067239,4,2,4_1,4_0_1,4_3_1,4_0_0 -18858,2,48.0,0.0,6,111,264.0,486.0,0.0,0,43,0.0,0.0,364.89399608004567,750.0,0.0,881.4353098118602,50,2,2,2,2,1,2,2,2,2,30.0,2,,4,124027,1,2,0,0,1,,0.0,361.0,12,1.0,0.0,2.0,1.0,1.0,2,2,348.391815158443,264.0,33185.438312836464,0,1,2,3,53.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.022600274039770402,33185.438312836464,8,4,8,8_0,8_3,8_0_0 -18859,2,53.0,0.0,6,111,586.0,782.0,0.0,52,53,0.0,0.0,809.9540973594953,1368.0,0.0,1418.276568462705,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,103408,1,2,1,0,1,,333.0,707.0,43,3.0,4.0,4.0,3.0,2.0,2,2,283.263082227341,586.0,25287.98026141393,1,1,2,3,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054096847033979406,12643.990130706965,2,1,2_0,2_1_0,2_3_0,2_0_0 -18860,1,25.0,149.0,6,111,0.0,0.0,0.0,68,68,0.0,0.0,0.0,1106.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,4.0,2,,4,121365,2,1,0,0,1,,0.0,688.0,43,2.0,0.0,3.0,3.0,1.8,1,1,349.082661272462,0.0,33644.253205665475,1,1,2,3,67.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03287337047545929,18691.251780925264,5,3,5,5_0,5_3,5_0_0 -18861,2,51.0,0.0,1,111,720.0,1157.0,0.0,52,38,0.0,0.0,995.16544385467,1877.0,0.0,2098.3964062804985,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,126657,2,1,2,0,1,,500.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,261.667102149342,720.0,62507.685967940626,1,1,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030028307254290117,41671.79064529375,9,5,9,9_1,9_3,9_1_0 -18862,2,33.0,0.0,1,111,0.0,0.0,0.0,37,46,0.0,0.0,0.0,3937.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,127275,2,1,2,0,1,,247.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,233.125293725947,0.0,76294.77236435383,1,1,1,2,140.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05160248701180254,42385.98464686324,9,5,9,9_1,9_3,9_1_0 -18863,2,25.0,0.0,9,111,0.0,0.0,0.0,47,47,0.0,0.0,0.0,791.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,128080,2,1,0,0,1,,0.0,531.0,43,2.0,0.0,2.0,2.0,1.5,2,2,349.489940121326,0.0,7516.275261425475,1,1,2,3,42.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10523829589630881,5010.85017428365,1,1,1_0,1_0_0,1_3_0,1_0_0 -18864,2,29.0,0.0,2,111,375.0,1066.0,0.0,38,34,0.0,0.0,518.315335340974,1441.0,0.0,1933.3539923033804,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,108425,2,2,1,0,1,,233.0,,43,2.0,0.0,6.0,3.0,1.8,3,3,239.348187503086,375.0,66118.88103406051,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021794077235785077,36732.71168558917,9,5,9,9_1,9_3,9_0_1 -18865,2,56.0,0.0,2,111,0.0,0.0,0.0,77,53,0.0,0.0,0.0,583.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117286,2,1,0,1,2,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,321.965116347297,0.0,25298.82273751865,5,1,1,2,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023044550572521288,16865.881825012435,4,2,4_0,4_0_0,4_3_0,4_0_1 -18866,2,89.0,0.0,5,111,321.0,0.0,0.0,0,77,0.0,0.0,443.6779270518737,321.0,0.0,0.0,50,2,2,1,1,2,2,2,2,0,,2,,3,119703,2,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,333.298264469552,321.0,32285.25844238772,0,5,0,1,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009942618256341882,32285.25844238772,8,4,8,8_0,8_3,8_0_0 -18867,2,31.0,0.0,2,111,200.0,0.0,0.0,42,34,0.0,0.0,276.4348455151861,200.0,0.0,0.0,42,2,2,1,2,1,2,2,2,2,30.0,2,,2,112892,2,1,0,1,1,485.0,0.0,521.0,43,2.0,0.0,2.0,2.0,1.5,1,1,348.90682234283,200.0,50583.9848238062,1,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.003953820575754138,33722.65654920413,9,5,9,9_0,9_3,9_0_1 -18868,2,84.0,0.0,2,111,449.0,0.0,0.0,74,75,0.0,0.0,620.5962281815928,449.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,121559,2,1,0,1,1,,0.0,,41,0.0,10.0,3.0,2.0,1.5,2,2,334.709594717799,449.0,65839.27372225959,5,5,0,1,67.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006819637803024514,43892.84914817306,10,5,10,10_0,10_3,10_0_1 -18869,2,66.0,0.0,5,111,210.0,500.0,0.0,0,78,0.0,0.0,290.25658779094545,710.0,0.0,906.8264504237244,71,1,2,2,2,1,2,2,2,0,,2,,3,101618,2,2,0,0,1,,0.0,347.0,11,0.0,0.0,2.0,1.0,1.0,1,1,348.391815158443,210.0,13459.766875363157,0,5,2,3,46.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0527497992034014,13459.766875363157,3,2,3_0,3_0_0,3_3_0,3_0_0 -18870,2,77.0,0.0,1,111,329.0,952.0,0.0,77,78,0.0,0.0,454.73532087248117,1281.0,0.0,1726.5975616067713,71,0,0,0,0,0,0,0,0,0,,1,,1,113822,2,2,4,0,1,,298.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,226.120880290719,329.0,37300.52309607362,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03434268191629844,24867.015397382416,7,4,7,7_1,7_3,7_1_0 -18871,2,44.0,0.0,2,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,1640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,130202,1,1,0,1,2,564.0,0.0,1050.0,43,2.0,0.0,4.0,2.0,1.5,5,4,354.727170775548,0.0,56047.639763193656,4,1,2,3,115.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029260821810323294,37365.09317546244,9,5,9,9_0,9_3,9_0_1 -18872,2,25.0,0.0,2,111,700.0,0.0,0.0,42,35,0.0,0.0,967.5219593031513,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,106400,2,2,0,1,1,70.0,0.0,490.0,43,2.0,0.0,2.0,2.0,1.5,2,2,441.515805423191,700.0,37967.38513225132,1,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01843687674465067,25311.590088167548,7,4,7,7_0,7_3,7_0_1 -18874,2,48.0,0.0,1,111,750.0,2830.0,0.0,0,37,0.0,0.0,1036.630670681948,3580.0,0.0,5132.63770939828,71,2,2,2,1,2,2,2,2,2,10.0,1,,1,107951,2,1,4,0,1,,720.0,,32,1.0,0.0,7.0,4.0,2.3,2,2,226.417810832371,750.0,81334.76157248173,0,1,0,1,138.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.044015620514356237,35362.939814122496,9,5,9,9_1,9_3,9_1_0 -18875,2,61.0,0.0,1,111,807.0,1642.0,0.0,77,45,0.0,0.0,1115.414601653776,2449.0,0.0,2978.018063191511,10,0,0,0,0,0,0,0,0,1,17.0,1,,1,107899,1,1,2,0,2,,350.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,236.263284753615,807.0,46029.41676243338,6,1,0,1,210.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053205106044244645,30686.277841622254,8,4,8,8_1,8_3,8_1_0 -18876,2,49.0,0.0,1,111,1080.0,0.0,0.0,0,46,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,15.0,2,,1,117741,1,2,0,0,1,,0.0,506.0,32,1.0,0.0,2.0,2.0,1.5,2,2,323.837932751991,1080.0,23151.342944653275,0,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04664956165099798,15434.22862976885,3,2,3_0,3_0_0,3_3_0,3_1_0 -18877,2,28.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1495.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,130559,2,1,0,0,1,,0.0,720.0,22,2.0,0.0,3.0,2.0,1.5,1,1,297.750274521137,0.0,23849.207238005827,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06268552179032538,15899.471492003884,3,2,3_0,3_0_0,3_3_0,3_1_0 -18878,2,41.0,0.0,9,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,2307.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,122726,1,1,1,0,1,,442.0,1470.0,42,1.0,0.0,5.0,4.0,2.1,3,2,462.714181498594,0.0,42613.46267542127,6,1,2,3,100.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054137820659447104,20292.125083533938,5,3,5,5_1,5_3,5_0_0 -18879,2,75.0,0.0,2,111,246.0,1248.0,0.0,0,78,0.0,0.0,340.0148599836789,1494.0,0.0,2263.438820257616,70,0,0,0,0,0,0,0,0,0,,1,,2,117001,2,1,1,0,1,,60.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,527.427305381329,246.0,22693.86633495671,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06583276634967675,22693.86633495671,6,3,6,6_1,6_3,6_0_1 -18880,2,61.0,0.0,8,111,500.0,1200.0,0.0,37,37,0.0,62.110350289167464,691.0871137879653,1760.0,0.0,2176.3834810169387,70,1,2,2,2,1,2,2,1,2,10.0,1,2000.0,6,112855,2,1,1,0,1,,258.0,,43,2.0,5.0,8.0,2.0,1.5,1,1,489.565594259709,500.0,182929.287783488,4,1,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.009621204025476261,121952.85852232533,10,5,10,10_1,10_3,10_0_0 -18881,2,53.0,0.0,2,111,463.0,2382.0,0.0,37,21,0.0,186.3310508675024,639.9466673676559,3025.0,0.0,4320.121209818623,70,0,0,0,0,0,0,0,0,2,12.0,1,,2,116492,2,1,2,0,1,,304.0,,43,3.0,2.0,9.0,4.0,2.5,2,2,450.764594931588,463.0,246933.52793839184,1,1,0,1,226.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01225026032412543,98773.41117535674,10,5,10,10_1,10_3,10_0_1 -18882,2,60.0,0.0,2,111,515.0,600.0,0.0,42,31,0.0,0.0,711.8197272016042,1115.0,0.0,1088.1917405084694,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,101708,2,1,3,0,1,,300.0,,43,2.0,2.0,6.0,4.0,2.3,2,2,450.764594931588,515.0,57642.53954670696,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019343353168826485,25061.97371595955,7,4,7,7_1,7_3,7_0_1 -18883,2,48.0,0.0,9,111,612.0,0.0,0.0,85,37,0.0,0.0,845.8906272764696,612.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2007.0,6,131079,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,535.955332762344,612.0,71966.7500441837,6,1,1,2,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008503927155585948,47977.83336278913,10,5,10,10_0,10_3,10_0_0 -18884,2,81.0,0.0,2,111,287.0,194.0,0.0,85,78,0.0,0.0,396.68400331429206,481.0,0.0,351.8486627644051,42,0,0,0,0,0,0,0,0,0,,2,,2,106814,2,1,0,1,1,572.0,435.0,313.0,41,0.0,3.0,3.0,2.0,1.5,2,2,405.554409246653,287.0,19443.576868918328,6,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024738246632434492,12962.384579278885,2,1,2_0,2_0_0,2_3_0,2_0_1 -18885,2,22.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,403.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,109597,2,1,0,1,1,444.0,0.0,318.0,12,1.0,0.0,3.0,1.0,1.0,1,1,439.850522046265,0.0,11155.801557897925,0,1,2,3,59.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03612470138595194,11155.801557897925,2,1,2_0,2_0_0,2_3_0,2_0_1 -18886,2,50.0,0.0,1,111,300.0,996.0,0.0,0,46,0.0,103.51725048194578,414.65226827277917,1396.0,0.0,1806.398289244059,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,116665,1,1,2,0,1,,300.0,,12,1.0,2.0,6.0,1.0,1.0,3,3,436.999962963389,300.0,20836.108060806197,0,1,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06699907659943215,20836.108060806197,5,3,5,5_1,5_3,5_1_0 -18887,2,33.0,0.0,1,111,0.0,0.0,1400.0,31,37,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,113596,2,1,1,0,1,,382.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,405.341178527515,0.0,95761.37579774452,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014619672997983122,53200.76433208029,10,5,10,10_1,10_3,10_1_0 -18888,1,49.0,98.0,6,111,476.0,0.0,0.0,0,54,0.0,0.0,657.9149323261429,476.0,0.0,0.0,71,2,1,2,1,2,2,2,1,2,20.0,2,,4,110697,1,3,0,1,1,881.0,0.0,422.0,32,1.0,0.0,3.0,2.0,1.3,1,1,388.174834792766,476.0,18580.74565764607,0,1,2,3,63.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.025617916997002946,14292.881275112362,3,2,3_1,3_0_1,3_3_1,3_0_0 -18889,2,74.0,0.0,2,111,284.0,0.0,0.0,0,74,0.0,0.0,392.5374806315643,284.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,119764,2,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,4,4,596.150118029257,284.0,32775.83387100834,0,5,0,1,73.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008664920658241756,32775.83387100834,8,4,8,8_0,8_3,8_0_1 -18890,2,45.0,0.0,1,111,0.0,0.0,0.0,43,31,0.0,0.0,0.0,2270.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,105803,2,2,1,0,1,,1023.0,,43,2.0,0.0,9.0,5.0,2.4,1,1,379.074049241402,0.0,147060.69223457985,1,1,1,2,200.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015435803854228235,61275.28843107494,10,5,10,10_1,10_3,10_1_0 -18891,2,75.0,0.0,2,111,420.0,1281.0,0.0,0,72,0.0,0.0,580.5131755818909,1701.0,0.0,2323.289365985582,70,0,0,0,0,0,0,0,0,0,,1,,2,121603,2,1,2,0,1,,158.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,506.841062660182,420.0,25181.915570154182,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06754847522465843,25181.915570154182,7,4,7,7_1,7_3,7_0_1 -18892,2,28.0,0.0,9,111,688.0,0.0,0.0,84,47,0.0,0.0,950.9358685722402,688.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,10.0,2,2005.0,6,112026,2,1,0,0,1,,0.0,680.0,42,1.0,0.0,3.0,2.0,1.5,2,2,587.783047494535,688.0,31207.103739422448,3,1,2,3,58.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02204626247103099,20804.73582628163,5,3,5,5_0,5_3,5_0_0 -18893,2,62.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,105385,2,1,0,1,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,596.150118029257,300.0,25600.404578059704,0,5,0,1,84.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011718564801788671,25600.404578059704,7,4,7,7_0,7_3,7_0_1 -18894,1,25.0,80.0,9,111,280.0,612.0,0.0,85,67,0.0,0.0,387.00878372126056,892.0,0.0,1109.9555753186387,60,1,2,2,2,1,2,2,2,2,30.0,2,2008.0,6,127097,1,2,0,0,1,,0.0,609.0,42,1.0,0.0,3.0,3.0,1.8,2,2,460.105901039637,280.0,30709.169473601847,6,1,2,3,87.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.029046698927067342,17060.649707556582,4,2,4_1,4_0_1,4_3_1,4_0_0 -18895,2,59.0,0.0,7,111,600.0,0.0,0.0,0,37,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,5,117260,2,1,0,0,1,,0.0,810.0,12,1.0,2.0,3.0,1.0,1.0,2,2,659.202323349713,600.0,52472.0,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011434669919195,52472.0,10,5,10,10_0,10_3,10_0_0 -18896,2,73.0,0.0,8,111,400.0,400.0,0.0,0,74,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,106427,2,1,2,0,1,,260.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,497.067097993712,400.0,92696.69639034309,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00863029677596301,92696.69639034309,10,5,10,10_1,10_3,10_0_0 -18897,2,44.0,0.0,2,111,400.0,940.0,0.0,0,43,0.0,0.0,552.8696910303722,1340.0,0.0,1704.833726796602,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,122817,2,3,0,0,2,,0.0,560.0,12,1.0,2.0,2.0,1.0,1.0,4,2,661.870947353088,400.0,36460.858558893335,0,1,2,3,58.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03675174016639152,36460.858558893335,9,5,9,9_0,9_3,9_0_1 -18898,2,42.0,0.0,1,111,1200.0,700.0,0.0,90,38,0.0,103.51725048194578,1658.6090730911167,2000.0,0.0,1269.5570305932142,20,0,0,0,0,0,0,0,0,0,,1,,1,121148,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,409.355999310361,1200.0,96140.49152778536,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02080288927399528,45781.18644180255,10,5,10,10_1,10_3,10_1_0 -18899,1,28.0,360.0,2,111,500.0,0.0,0.0,0,56,0.0,0.0,691.0871137879653,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,122382,2,1,0,1,1,,0.0,430.0,32,1.0,0.0,3.0,2.0,1.3,2,2,424.626076765217,500.0,1329.3171928364611,0,4,2,3,57.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.37613295208580994,1022.5516867972777,1,1,1_1,1_0_1,1_3_1,1_0_1 -18900,2,36.0,0.0,1,111,1600.0,0.0,0.0,55,67,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,133305,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,358.095373762567,1600.0,52039.91828490264,1,1,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030745628600730872,21683.299285376102,6,3,6,6_1,6_3,6_1_0 -18901,2,74.0,0.0,1,111,180.0,0.0,0.0,78,78,0.0,82.81380038555662,248.7913609636675,440.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132299,2,1,2,0,1,,160.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,397.832158533141,180.0,25379.764463871208,5,5,0,1,65.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017336646312315154,16919.84297591414,4,2,4_0,4_1_0,4_3_0,4_1_0 -18902,2,37.0,0.0,6,111,2400.0,0.0,0.0,38,38,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,4,128741,2,1,1,0,1,,210.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,428.937396921857,2400.0,72647.22032161235,1,1,1,2,99.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03303636380545735,40359.56684534019,9,5,9,9_1,9_3,9_0_0 -18903,2,51.0,0.0,5,111,695.0,730.0,0.0,0,43,0.0,0.0,960.6110881652718,1425.0,0.0,1323.9666176186377,31,2,2,2,2,1,2,2,2,2,6.0,2,,3,123665,1,3,0,0,2,,0.0,870.0,32,3.0,2.0,4.0,3.0,2.0,2,2,486.468574004349,695.0,68199.66811083746,0,1,2,3,134.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02089452983384176,34099.83405541873,9,5,9,9_0,9_3,9_0_0 -18904,2,57.0,0.0,1,111,450.0,1000.0,0.0,0,34,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,2,45.0,1,,1,109914,2,1,1,0,1,,150.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,512.764356222544,450.0,45652.38535358053,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031761757655589314,45652.38535358053,10,5,10,10_1,10_3,10_1_0 -18906,2,61.0,0.0,2,111,800.0,0.0,0.0,77,31,4480.754631054002,0.0,1105.7393820607444,3950.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,110562,2,1,2,0,2,,170.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,451.750644265827,800.0,26820.219217985014,6,1,0,1,240.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14727694683983875,17880.146145323342,4,2,4_0,4_1_0,4_3_0,4_0_1 -18907,2,42.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,666.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,126624,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,611.198377239127,0.0,36495.42099720243,0,1,1,2,65.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018248864701438914,36495.42099720243,9,5,9,9_0,9_3,9_1_0 -18908,2,59.0,0.0,2,111,580.0,1590.0,0.0,33,33,0.0,0.0,801.6610519940398,2170.0,0.0,2883.7081123474436,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,124137,2,1,1,0,1,,330.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,385.710794495818,580.0,107258.44208589816,1,1,1,2,135.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02023150772842804,53629.22104294908,10,5,10,10_1,10_3,10_0_1 -18909,2,58.0,0.0,2,111,546.0,1235.0,0.0,0,90,0.0,0.0,754.6671282564581,1781.0,0.0,2239.8613325465994,44,0,0,0,0,0,0,0,0,0,,1,,2,110966,2,1,2,0,2,,176.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,488.316480209552,546.0,237690.54898643677,0,1,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007492935699776723,237690.54898643677,10,5,10,10_1,10_3,10_0_1 -18910,2,48.0,0.0,6,111,1700.0,0.0,0.0,42,38,0.0,186.3310508675024,2349.696186879082,1880.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,129499,2,1,1,0,1,,450.0,,43,2.0,0.0,8.0,6.0,3.0999999999999996,2,2,490.879133689656,1700.0,112367.2377331882,1,1,0,1,140.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01673085534472236,36247.49604296394,9,5,9,9_1,9_3,9_0_0 -18911,2,70.0,0.0,2,111,2000.0,2700.0,0.0,77,31,0.0,103.51725048194578,2764.3484551518613,4800.0,0.0,4896.862832288112,44,0,0,0,0,0,0,0,0,0,,1,,2,118026,2,1,1,0,1,,600.0,,41,0.0,2.0,10.0,3.0,2.0,1,1,469.130096996674,2000.0,104662.37645898697,6,5,0,1,220.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04586175245008821,52331.188229493484,10,5,10,10_1,10_3,10_0_1 -18912,2,25.0,0.0,9,111,500.0,500.0,0.0,55,48,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,116001,2,1,0,0,1,,0.0,675.0,43,2.0,0.0,2.0,2.0,1.5,4,4,678.371293838407,500.0,38489.737369950155,1,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02598095150373054,25659.824913300105,7,4,7,7_0,7_3,7_0_0 -18913,1,79.0,59.0,7,111,240.0,840.0,0.0,0,75,0.0,0.0,331.72181461822333,1080.0,0.0,1523.468436711857,20,0,0,0,0,0,0,0,0,0,,2,,5,111922,1,2,0,0,1,,0.0,330.0,11,0.0,2.0,2.0,1.0,1.0,3,2,578.352374313786,240.0,13024.125890235704,0,5,2,3,48.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08292303138820895,13024.125890235704,2,1,2_1,2_0_1,2_3_1,2_0_0 -18914,2,35.0,0.0,2,111,400.0,2400.0,0.0,31,37,0.0,0.0,552.8696910303722,2800.0,0.0,4352.7669620338775,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,113670,2,1,1,0,1,,290.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,426.733612688737,400.0,50848.106071289505,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055065964424995,24213.38384347119,7,4,7,7_1,7_3,7_0_1 -18915,2,76.0,0.0,1,111,300.0,800.0,0.0,0,77,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,0,,1,,1,109728,2,1,2,0,1,,290.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,385.974110058126,300.0,35346.292508011575,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031120661374900195,23564.19500534105,6,3,6,6_1,6_3,6_1_0 -18916,2,43.0,0.0,5,111,1200.0,0.0,0.0,0,43,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,126542,2,2,5,0,1,,280.0,,32,1.0,0.0,4.0,3.0,1.8,1,1,412.342516527449,1200.0,34862.65714651601,0,1,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03442078424937044,19368.14285917556,5,3,5,5_1,5_3,5_0_0 -18917,2,64.0,0.0,2,111,600.0,1138.0,0.0,62,75,0.0,0.0,829.3045365455583,1738.0,0.0,2063.937001164397,10,0,0,0,0,0,0,0,0,0,,1,,2,110644,2,1,2,0,1,,401.0,,42,2.0,0.0,4.0,4.0,2.5,2,2,79.030941616608,600.0,76372.75748786921,1,5,0,1,72.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02275680566170546,30549.102995147685,8,4,8,8_1,8_2,8_0_1 -18918,2,69.0,0.0,2,111,420.0,1390.0,0.0,85,78,0.0,0.0,580.5131755818909,1810.0,0.0,2520.977532177954,60,0,0,0,0,0,0,0,0,0,,1,,2,129417,2,1,2,0,1,,310.0,,41,0.0,6.0,5.0,2.0,1.5,3,3,88.4659651274054,420.0,23730.4520053352,6,5,0,1,96.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07627330484868416,15820.301336890132,3,2,3_0,3_1_0,3_2_0,3_0_1 -18919,2,58.0,0.0,7,111,720.0,1200.0,0.0,34,38,0.0,0.0,995.16544385467,1920.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,20.0,1,,5,123854,2,1,2,0,1,,256.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,324.979099273297,720.0,124791.11555372766,1,1,0,1,174.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015385710685255969,83194.07703581844,10,5,10,10_1,10_2,10_0_0 -18920,1,55.0,430.0,2,111,0.0,0.0,122.0,0,85,0.0,0.0,62.331426850178055,122.0,0.0,139.47598450762104,70,0,0,0,0,0,0,0,0,0,,1,,2,127708,2,1,3,0,1,,400.0,550.0,31,0.0,3.0,4.0,3.0,2.0,1,1,350.896966146691,0.0,10066.681067175636,0,6,2,3,90.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01211918796134355,5033.340533587818,1,1,1_1,1_1_1,1_2_1,1_0_1 -18921,2,58.0,0.0,2,111,1551.0,0.0,0.0,34,22,3733.962192545002,0.0,2143.752226970268,4051.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,113324,2,1,2,0,1,,465.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,293.89555299499,1551.0,97402.9513496662,1,1,0,1,100.0,7,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04159011553415196,46382.35778555533,10,5,10,10_1,10_2,10_0_1 -18922,2,38.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,914.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,112251,2,1,0,1,1,,159.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,395.917824574284,0.0,21238.184650388146,0,1,1,2,62.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04303569325937167,21238.184650388146,5,3,5,5_0,5_2,5_0_1 -18923,2,52.0,0.0,2,111,800.0,80.0,0.0,77,62,0.0,0.0,1105.7393820607444,880.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,132024,2,1,0,1,2,,430.0,,42,1.0,3.0,3.0,2.0,1.5,3,3,279.762258786735,800.0,31039.407348625537,6,1,1,2,70.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028351056774895782,20692.938232417026,5,3,5,5_0,5_2,5_0_1 -18924,2,24.0,0.0,2,111,450.0,0.0,0.0,56,47,0.0,0.0,621.9784024091688,450.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,2,,2,120106,1,2,0,1,2,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,395.132227276559,450.0,28186.250220504477,4,1,1,2,63.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0159652311492162,18790.833480336318,5,3,5,5_0,5_2,5_0_1 -18925,2,62.0,0.0,2,111,400.0,72.0,0.0,0,46,0.0,0.0,552.8696910303722,472.0,0.0,130.5830088610163,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,107106,1,2,0,1,1,699.0,200.0,410.0,12,1.0,0.0,3.0,1.0,1.0,2,2,381.013080651726,400.0,24989.056813569336,0,1,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018888267913485184,24989.056813569336,7,4,7,7_0,7_2,7_0_1 -18926,2,84.0,0.0,2,111,100.0,60.0,0.0,0,77,0.0,0.0,138.21742275759306,160.0,0.0,108.81917405084694,44,0,0,0,0,0,0,0,0,0,,1,,2,110220,1,1,1,0,2,,300.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,275.084135922416,100.0,34398.132812319665,0,5,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00465141526352547,22932.088541546444,6,3,6,6_1,6_2,6_0_1 -18927,2,69.0,0.0,2,111,500.0,1100.0,0.0,68,75,0.0,0.0,691.0871137879653,1600.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,0,,1,,2,107838,2,1,3,0,1,,240.0,670.0,42,1.0,3.0,5.0,2.0,1.5,3,3,92.0104389056879,500.0,46730.443250002456,1,5,2,3,120.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03423892196870861,31153.62883333497,8,4,8,8_1,8_2,8_0_1 -18928,1,44.0,107.0,1,111,1600.0,1950.0,0.0,85,63,0.0,0.0,2211.478764121489,3994.0,763.8251898604451,3536.6231566525253,12,2,2,2,1,2,2,2,2,0,,1,,1,120943,1,3,2,0,2,,1180.0,,42,2.0,1.0,7.0,5.0,3.0,2,2,238.453349298089,1600.0,33631.12919177589,6,4,1,2,160.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.11875902165594508,11210.376397258631,2,1,2_1,2_1_1,2_2_1,2_1_0 -18929,2,74.0,0.0,2,111,300.0,980.0,0.0,77,78,0.0,258.79312620486445,414.65226827277917,1650.0,206.439240502823,1777.3798428305,50,0,0,0,0,0,0,0,0,0,,1,,2,132671,1,2,2,0,2,,280.0,112.0,41,0.0,2.0,6.0,2.0,1.5,2,2,351.13383372685,300.0,19073.813899903907,5,5,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08650603432847337,12715.875933269272,2,1,2_0,2_1_0,2_2_0,2_0_1 -18930,1,22.0,377.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1957.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123662,1,1,2,0,1,,755.0,400.0,31,0.0,0.0,3.0,2.0,1.3,2,2,74.5931407538074,0.0,8758.633406624458,0,6,2,3,70.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.22343668345793,6737.410312788044,1,1,1_1,1_1_1,1_2_1,1_1_0 -18931,2,65.0,0.0,1,111,616.0,1500.0,0.0,77,78,0.0,0.0,851.4193241867732,2116.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,1,,1,106048,2,1,2,0,1,,450.0,,41,1.0,1.0,5.0,3.0,2.0,2,2,75.8398252024299,616.0,36211.28940364396,5,5,0,1,90.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.058434815076954034,18105.64470182198,4,2,4_0,4_1_0,4_2_0,4_1_0 -18932,1,45.0,80.0,2,111,809.0,0.0,0.0,56,67,0.0,1035.1725048194578,1118.178950108928,1809.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,128328,2,1,2,0,1,,371.0,,43,2.0,0.0,7.0,7.0,3.3999999999999995,1,1,76.636987558884,809.0,40093.92511661484,1,1,1,2,140.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04511905468817155,11792.330916651425,2,1,2_1,2_1_1,2_2_1,2_0_1 -18933,1,85.0,270.0,1,111,210.0,1440.0,0.0,0,86,0.0,0.0,290.25658779094545,1650.0,0.0,2611.660177220326,70,0,0,0,0,0,0,0,0,0,,1,,1,120325,2,2,1,0,1,,120.0,389.0,11,0.0,7.0,4.0,1.0,1.0,2,2,80.7863339134755,210.0,10682.877294207148,0,5,2,3,75.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1544527709678667,10682.877294207148,2,1,2_1,2_1_1,2_2_1,2_1_0 -18934,2,50.0,0.0,1,111,600.0,920.0,0.0,0,52,0.0,51.75862524097289,829.3045365455583,1570.0,0.0,1668.560668779653,70,0,0,0,0,0,0,0,0,0,,1,,1,130752,2,2,2,0,1,,200.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,65.559384831306,600.0,14620.0,0,1,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10738714090287278,9746.666666666666,2,1,2_0,2_1_0,2_2_0,2_1_0 -18935,2,63.0,0.0,1,111,480.0,1000.0,0.0,77,11,0.0,0.0,663.4436292364467,1480.0,0.0,1813.6529008474488,20,2,2,2,1,1,2,2,2,0,,1,,1,119822,2,2,1,0,1,,120.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,242.800806400668,480.0,54023.607388470475,5,1,1,2,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02739543084114476,36015.73825898032,9,5,9,9_1,9_2,9_1_0 -18936,2,67.0,0.0,1,111,0.0,0.0,3000.0,72,78,0.0,258.79312620486445,1532.740004512575,3250.0,0.0,3429.737323957894,43,0,0,0,0,0,0,0,0,0,,1,,1,108252,2,2,1,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,297.29740738088,0.0,12220.282415047915,5,5,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.26595130043786774,8146.854943365277,1,1,1_0,1_1_0,1_2_0,1_1_0 -18937,1,26.0,200.0,2,111,200.0,300.0,0.0,52,22,0.0,0.0,276.4348455151861,500.0,0.0,544.0958702542347,12,0,0,0,0,0,0,0,0,0,,2,,2,125674,2,2,0,1,1,70.0,260.0,445.0,43,2.0,0.0,3.0,2.0,1.5,2,2,209.37431777389,200.0,15437.881392632482,1,1,2,3,70.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03238786380614494,10291.920928421654,2,1,2_1,2_0_1,2_2_1,2_0_1 -18938,1,68.0,85.0,2,111,0.0,0.0,700.0,0,75,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,50,0,0,0,0,0,0,0,0,0,,1,,2,122702,1,2,2,0,1,,140.0,220.0,11,0.0,0.0,2.0,1.0,1.0,2,2,347.787098229612,0.0,11215.836465522501,0,5,2,3,40.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06241175164703953,11215.836465522501,2,1,2_1,2_1_1,2_2_1,2_0_1 -18939,1,34.0,92.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,769.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,,2,107417,2,1,0,1,1,924.0,274.0,378.0,32,1.0,0.0,3.0,2.0,1.3,2,2,297.403269202473,0.0,22634.49421718671,0,1,2,3,80.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03397469334287517,17411.149397835932,4,2,4_1,4_0_1,4_2_1,4_0_1 -18940,2,49.0,0.0,1,111,1080.0,1020.0,0.0,67,48,0.0,362.31037668681023,1492.748165782005,2450.0,0.0,1849.925958864398,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,126362,2,2,1,0,1,,630.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,248.156797926033,1080.0,40541.44057707583,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0604319916886563,16216.576230830333,4,2,4_0,4_1_0,4_3_0,4_1_0 -18941,2,64.0,0.0,1,111,415.0,1247.0,0.0,0,74,0.0,0.0,573.6023044440112,1765.0,177.19368143158974,2261.625167356769,50,0,0,0,0,0,0,0,0,0,,1,,1,101877,2,1,3,0,1,,191.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,270.00359552945,415.0,32804.357918253954,0,5,1,2,126.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05380382705243767,32804.357918253954,8,4,8,8_1,8_3,8_1_0 -18942,2,74.0,0.0,2,111,430.0,3277.0,0.0,0,77,0.0,0.0,594.3349178576501,3707.0,0.0,5943.34055607709,44,2,2,2,2,1,2,2,2,0,,1,,2,124555,2,1,2,0,1,,170.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,325.576758233345,430.0,34059.98586214207,0,5,0,1,99.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.10883739103721585,34059.98586214207,9,5,9,9_1,9_3,9_0_1 -18943,1,27.0,360.0,2,111,340.0,252.0,0.0,0,55,0.0,0.0,469.9392373758164,691.0,0.0,457.04053101355714,43,0,0,0,0,0,0,0,0,0,,2,,2,126167,2,1,0,1,1,,0.0,331.0,22,2.0,1.0,4.0,3.0,2.0,1,1,255.745074689884,340.0,22654.670218560434,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030501437157707117,11327.335109280217,2,1,2_1,2_0_1,2_3_1,2_0_1 -18944,2,67.0,0.0,2,111,490.0,177.0,0.0,74,78,1941.6603401234008,0.0,677.265371512206,1967.0,0.0,321.01656344999844,71,0,0,0,0,0,0,0,0,0,,1,,2,122672,2,3,1,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,278.126593545537,490.0,34107.294036666026,5,5,0,1,100.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05767094856265746,22738.196024444016,6,3,6,6_1,6_3,6_0_1 -18945,1,25.0,394.0,2,111,330.0,167.0,0.0,0,67,0.0,0.0,456.1174951000571,518.0,0.0,302.88003444152395,44,2,2,1,2,1,2,2,2,0,,2,,2,110327,2,2,0,1,1,762.0,670.0,363.0,32,1.0,0.0,4.0,3.0,1.6,2,2,68.6513027928446,330.0,10250.012613253686,0,4,2,3,137.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05053652317756222,6406.257883283553,1,1,1_1,1_0_1,1_3_1,1_0_1 -18946,2,32.0,0.0,2,111,485.0,76.0,0.0,56,52,0.0,0.0,670.3545003743263,612.0,0.0,137.83762046440611,50,2,1,2,1,1,2,2,2,2,3.0,2,,2,130564,1,3,0,1,1,750.0,0.0,323.0,43,2.0,0.0,3.0,3.0,1.8,3,2,71.8880835391736,485.0,28712.85246743392,1,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02131449672909125,15951.584704129955,3,2,3_0,3_0_0,3_3_0,3_0_1 -18947,1,92.0,94.0,1,111,132.0,65.0,0.0,0,78,0.0,0.0,182.44699804002283,803.0,0.0,117.88743855508417,50,0,0,0,0,0,0,0,0,0,,2,,1,109650,2,1,0,1,1,,0.0,334.0,11,0.0,4.0,4.0,1.0,1.0,2,2,75.4571283091472,132.0,15994.612831027192,0,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05020440372537798,15994.612831027192,3,2,3_1,3_0_1,3_3_1,3_1_0 -18948,2,65.0,0.0,6,111,340.0,130.0,0.0,77,77,0.0,0.0,469.9392373758164,1138.0,0.0,235.77487711016835,70,0,0,0,0,0,0,0,0,0,,2,,4,112997,1,1,0,1,1,,0.0,355.0,41,0.0,1.0,4.0,2.0,1.5,2,2,72.8453480260108,340.0,35196.40882704824,5,5,2,3,73.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032332844114637445,23464.27255136549,6,3,6,6_0,6_3,6_0_0 -18949,1,35.0,203.0,2,111,400.0,72.0,0.0,85,67,0.0,0.0,552.8696910303722,905.0,0.0,130.5830088610163,70,1,2,1,2,1,2,2,2,2,20.0,2,,2,120298,1,3,0,1,1,719.0,714.0,377.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,64.7669473456556,400.0,26318.191665456463,6,1,2,3,86.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.034386861054281466,10122.381409790949,2,1,2_1,2_0_1,2_3_1,2_0_1 -18950,1,47.0,548.0,5,111,300.0,0.0,0.0,0,85,0.0,0.0,414.65226827277917,369.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,110142,1,2,0,1,1,417.0,0.0,620.0,31,2.0,0.0,3.0,6.0,3.0999999999999996,2,1,93.6720240910364,300.0,18847.181956710498,0,6,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01957852377334418,6079.7361150679035,1,1,1_1,1_0_1,1_3_1,1_0_0 -18951,2,56.0,0.0,2,111,250.0,0.0,0.0,0,34,0.0,0.0,345.54355689398267,756.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,2,122442,1,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,102.27059806221,250.0,59924.8378267263,0,1,0,1,84.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012615803853920924,59924.8378267263,10,5,10,10_0,10_3,10_0_1 -18952,2,81.0,0.0,2,111,510.0,0.0,0.0,0,77,0.0,0.0,704.9088560637246,510.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,116852,2,1,0,1,1,,0.0,,11,0.0,6.0,4.0,1.0,1.0,2,2,93.9157207450918,510.0,14026.909601473784,0,5,0,1,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03635868587521339,14026.909601473784,3,2,3_0,3_0_0,3_3_0,3_0_1 -18953,1,40.0,197.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,283.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,122492,1,1,0,1,1,552.0,0.0,400.0,22,2.0,0.0,2.0,5.0,2.8,2,2,84.4545392670407,0.0,19119.16634197187,0,1,2,3,53.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01480190061314214,6828.273693561383,1,1,1_1,1_0_1,1_3_1,1_0_1 -18954,1,50.0,264.0,2,111,96.0,0.0,0.0,0,52,0.0,0.0,132.68872584728933,669.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,112277,2,2,0,1,1,220.0,0.0,440.0,12,1.0,1.0,1.0,1.0,1.0,1,1,145.650086581703,96.0,4033.8449158795484,0,4,2,3,34.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.1658467328197048,4033.8449158795484,1,1,1_1,1_0_1,1_3_1,1_0_1 -18955,2,66.0,0.0,2,111,20.0,2.0,0.0,78,78,0.0,0.0,27.64348455151861,587.0,0.0,3.627305801694898,50,1,2,2,1,2,2,2,2,0,,2,,2,111415,1,1,0,1,1,640.0,0.0,343.0,41,0.0,4.0,4.0,2.0,1.5,2,2,72.8453480260108,20.0,36819.8130673859,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015942503535411767,24546.542044923932,7,4,7,7_0,7_3,7_0_1 -18956,2,56.0,0.0,2,111,620.0,130.0,0.0,64,63,0.0,0.0,856.9480210970769,944.0,0.0,235.77487711016835,42,0,0,0,0,0,0,0,0,2,15.0,2,,2,104653,2,1,0,1,1,1060.0,0.0,361.0,43,2.0,7.0,4.0,2.0,1.5,2,2,72.8453480260108,620.0,34724.82793111172,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027185159905550545,23149.885287407815,6,3,6,6_0,6_3,6_0_1 -18957,2,57.0,0.0,2,111,0.0,0.0,1810.0,77,46,0.0,0.0,924.7531360559204,1810.0,0.0,2069.274852121263,71,0,0,0,0,0,0,0,0,3,25.0,1,,2,100579,1,2,5,0,1,,396.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,264.266770124886,0.0,40267.18851628909,5,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04494974858420546,26844.792344192727,7,4,7,7_1,7_3,7_0_1 -18958,1,42.0,392.0,2,111,422.0,540.0,0.0,81,62,0.0,0.0,583.2775240370427,962.0,0.0,979.3725664576224,33,0,0,0,0,0,0,0,0,2,150.0,1,,2,123931,1,2,3,0,1,,355.0,,43,3.0,0.0,5.0,6.0,2.8999999999999995,2,2,309.874902713149,422.0,35648.8211818261,4,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02698546454294627,12292.696959250381,2,1,2_1,2_1_1,2_3_1,2_0_1 -18959,2,75.0,0.0,2,111,341.0,1652.0,0.0,77,74,0.0,0.0,471.32141160339233,1993.0,0.0,2996.1545921999855,33,0,0,0,0,0,0,0,0,0,,1,,2,111193,1,2,2,0,2,,240.0,688.0,41,0.0,1.0,5.0,2.0,1.5,1,1,81.1490884746978,341.0,31406.090912132575,5,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06345902791837359,20937.393941421717,5,3,5,5_1,5_3,5_0_1 -18960,2,57.0,0.0,1,111,0.0,0.0,0.0,0,43,2748.1961737131214,0.0,0.0,3826.0,0.0,0.0,71,1,2,2,1,2,2,2,2,2,15.0,1,,1,102915,1,1,2,0,2,,137.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,258.734289417719,0.0,29484.84765874278,0,1,0,1,150.0,9,7,3,1,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.12976156581448448,29484.84765874278,8,4,8,8_1,8_3,8_1_0 -18961,2,57.0,0.0,1,111,401.0,532.0,0.0,0,42,0.0,0.0,554.2518652579481,933.0,0.0,964.8633432508428,41,2,2,2,2,1,2,2,2,2,20.0,1,,1,119513,2,3,3,0,1,,192.0,565.0,32,1.0,0.0,6.0,3.0,1.8,1,1,225.055543764276,401.0,42210.0509958804,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.02210374017532124,23450.02833104467,6,3,6,6_1,6_3,6_1_0 -18962,1,40.0,45.0,2,111,1391.0,426.0,0.0,46,56,0.0,0.0,1922.6043505581194,1817.0,0.0,772.6161357610132,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,129344,2,1,2,0,1,,1000.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,241.448912307509,1391.0,31318.939862249077,4,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05801601229134062,14913.780886785275,3,2,3_1,3_1_1,3_3_1,3_0_1 -18963,2,79.0,0.0,2,111,333.0,968.0,0.0,0,77,0.0,0.0,460.2640177827849,1301.0,0.0,1755.6160080203306,60,0,0,0,0,0,0,0,0,0,,2,,2,112392,2,1,0,0,1,,0.0,209.0,11,0.0,0.0,3.0,1.0,1.0,4,3,345.004258914597,333.0,26879.118285453213,0,5,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04840188529190304,26879.118285453213,7,4,7,7_0,7_3,7_0_1 -18964,2,73.0,0.0,1,111,283.0,1296.0,0.0,77,77,0.0,0.0,391.15530640398833,1579.0,0.0,2350.494159498294,50,2,2,2,1,2,2,2,2,0,,1,,1,124701,2,1,4,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,216.501413702538,283.0,29013.132617863397,5,5,0,1,92.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05442363018145131,19342.08841190893,5,3,5,5_1,5_3,5_1_0 -18965,2,50.0,0.0,1,111,4308.0,0.0,0.0,0,34,0.0,0.0,5954.406572397109,5071.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,125238,1,1,1,0,2,,980.0,,32,1.0,0.0,10.0,5.0,2.8,2,2,669.058007532943,4308.0,25344.4490095732,0,1,1,2,600.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2000832607599622,9051.588931990429,1,1,1_0,1_1_0,1_3_0,1_1_0 -18966,2,36.0,0.0,6,111,418.0,1100.0,0.0,37,37,0.0,0.0,577.748827126739,1518.0,0.0,1995.0181909321939,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,132243,2,1,2,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,795.590366459682,418.0,62114.20329076337,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0244388548766226,29578.19204322065,8,4,8,8_1,8_3,8_0_0 -18967,2,36.0,0.0,1,111,70.0,120.0,0.0,55,62,0.0,0.0,96.75219593031514,190.0,0.0,217.63834810169388,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,113870,2,2,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,639.793367559636,70.0,39095.67709939374,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00485987234642232,18616.9890949494,4,2,4_0,4_1_0,4_3_0,4_1_0 -18968,2,32.0,0.0,2,111,300.0,0.0,0.0,0,54,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,117878,1,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1434.22296767329,300.0,20336.28334708996,0,1,1,2,32.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014751958107572728,20336.28334708996,5,3,5,5_0,5_3,5_0_1 -18969,0,82.0,0.0,5,111,350.0,0.0,0.0,78,75,0.0,0.0,483.76097965157567,430.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,130098,2,1,0,1,2,156.0,0.0,,41,0.0,1.0,2.0,2.0,1.5,1,1,1337.2187857187,350.0,32909.44553067151,5,5,5,0,34.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013066157544320861,21939.630353781005,6,3,6,6_0,6_3,6_0_0 -18970,2,28.0,0.0,1,111,0.0,0.0,1300.0,42,22,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,41,0,0,0,0,0,0,0,0,0,,1,,1,117438,2,1,2,0,1,,460.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,628.447104711136,0.0,39710.88842861427,4,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03273661334313704,26473.92561907618,7,4,7,7_1,7_3,7_1_0 -18971,2,48.0,0.0,1,111,560.0,710.0,0.0,52,63,0.0,0.0,774.0175674425211,1270.0,0.0,1287.6935596016888,71,0,0,0,0,0,0,0,0,0,,1,,1,111546,2,1,2,0,1,,610.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,2,2,634.419232110771,560.0,34477.23575236028,1,1,1,2,146.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03683589975490007,13260.475289369338,3,2,3_0,3_1_0,3_3_0,3_1_0 -18972,2,57.0,0.0,1,111,275.0,562.0,0.0,0,54,0.0,0.0,380.0979125833809,837.0,0.0,1019.2729302762663,20,0,0,0,0,0,0,0,0,3,45.0,1,,1,101759,2,1,2,0,1,,125.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,649.114056125141,275.0,17945.53142437683,0,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046641137573838407,17945.53142437683,4,2,4_0,4_1_0,4_3_0,4_1_0 -18973,2,32.0,0.0,1,111,600.0,1800.0,0.0,54,37,0.0,0.0,829.3045365455583,3105.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,1,121609,2,1,2,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,652.848247111131,600.0,87732.1712947307,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035391806154767884,41777.22442606223,9,5,9,9_1,9_3,9_1_0 -18974,2,88.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2964.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131007,2,3,2,0,2,,310.0,,11,0.0,3.0,5.0,1.0,1.0,3,2,905.018687495789,0.0,35340.72644934032,0,5,0,1,150.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08386924372504875,35340.72644934032,9,5,9,9_1,9_3,9_0_1 -18975,2,41.0,0.0,1,111,0.0,0.0,1400.0,46,38,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,70,0,0,0,0,0,0,0,0,1,10.0,1,,1,119762,2,1,2,0,1,,260.0,986.0,43,2.0,0.0,4.0,4.0,2.1,2,2,624.017744196774,0.0,68000.38648707884,1,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020588118278798643,32381.136422418494,8,4,8,8_1,8_3,8_1_0 -18976,2,47.0,0.0,1,111,810.0,2030.0,0.0,85,34,0.0,0.0,1119.5611243365038,2840.0,0.0,3681.7153887203212,50,2,2,2,1,2,2,2,2,2,15.0,1,,1,104708,1,1,2,0,2,,400.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,2,2,669.058007532943,810.0,182756.52027260087,6,1,1,2,280.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.015539801238083526,70290.96933561574,10,5,10,10_1,10_3,10_1_0 -18977,2,34.0,0.0,1,111,1500.0,2520.0,0.0,37,37,0.0,0.0,2073.261341363896,4020.0,0.0,4570.405310135571,31,0,0,0,0,0,0,0,0,2,35.0,1,,1,122783,2,1,2,0,1,,600.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,669.058007532943,1500.0,101638.95947112923,1,1,1,2,270.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03955176264020973,42349.56644630385,9,5,9,9_1,9_3,9_1_0 -18978,2,76.0,0.0,5,111,410.0,1000.0,0.0,74,75,0.0,124.22070057833493,566.6914333061316,1530.0,0.0,1813.6529008474488,50,2,2,2,2,1,2,2,2,0,,1,,3,107515,2,1,2,0,1,,312.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,838.55034103708,410.0,45822.08782185216,5,5,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.033390010641775165,30548.05854790144,8,4,8,8_1,8_3,8_0_0 -18979,2,81.0,0.0,2,111,900.0,3366.0,0.0,0,72,0.0,0.0,1243.9568048183376,4266.0,0.0,6104.755664252513,50,2,2,1,2,1,2,2,2,0,,1,,2,116739,2,1,1,0,2,,180.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,941.559086968313,900.0,40505.78895662377,0,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.10531827943330051,40505.78895662377,9,5,9,9_1,9_3,9_0_1 -18980,1,53.0,156.0,2,111,300.0,1100.0,0.0,0,56,0.0,0.0,414.65226827277917,1400.0,0.0,1995.0181909321939,50,2,2,1,2,2,2,2,1,2,45.0,1,,2,126403,2,2,3,0,1,,360.0,350.0,12,1.0,3.0,5.0,1.0,1.0,2,2,820.110519102735,300.0,11530.224028785446,0,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.12142001720910806,11530.224028785446,2,1,2_1,2_1_1,2_3_1,2_0_1 -18981,2,49.0,0.0,2,111,1200.0,400.0,0.0,55,48,0.0,414.0690019277831,1658.6090730911167,2000.0,0.0,725.4611603389795,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,117488,2,3,2,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,741.635273290609,1200.0,45957.69403856491,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043518284410042886,16413.462156630325,4,2,4_0,4_1_0,4_3_0,4_0_1 -18982,2,32.0,0.0,1,111,468.0,984.0,0.0,54,64,0.0,0.0,646.8575385055356,1452.0,0.0,1784.6344544338897,10,2,2,2,1,2,2,2,2,2,10.0,1,,1,101798,1,3,3,0,1,,180.0,,43,2.0,0.0,3.0,3.0,2.0,1,1,633.042492787338,468.0,36395.20707602005,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03989536306160183,18197.603538010026,4,2,4_0,4_1_0,4_3_0,4_1_0 -18983,2,80.0,0.0,6,111,556.0,1834.0,0.0,75,72,0.0,0.0,768.4888705322173,2390.0,0.0,3326.239420154221,20,0,0,0,0,0,0,0,0,0,,1,,4,106989,2,1,2,0,1,,332.0,,41,0.0,3.0,4.0,2.0,1.5,4,3,838.55034103708,556.0,54055.898494878085,5,5,0,1,157.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044213491340384575,36037.26566325206,9,5,9,9_1,9_3,9_0_0 -18984,2,47.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,2097.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,1,132149,1,3,0,0,2,,504.0,750.0,32,1.0,0.0,5.0,3.0,1.6,2,2,925.768831225998,0.0,70333.61304802797,0,1,2,3,110.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029815047302746183,43958.50815501748,10,5,10,10_0,10_3,10_1_0 -18985,2,68.0,0.0,1,111,330.0,1358.0,0.0,78,77,0.0,0.0,456.1174951000571,1688.0,0.0,2462.9406393508357,50,2,2,1,2,1,2,2,2,0,,1,,1,105542,2,2,2,0,1,,292.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,651.992083972204,330.0,32727.269828217846,5,5,0,1,59.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05157778234665288,21818.179885478563,6,3,6,6_1,6_3,6_1_0 -18986,2,75.0,0.0,1,111,208.0,1252.0,0.0,62,78,0.0,0.0,287.49223933579356,1460.0,0.0,2270.693431861006,31,0,0,0,0,0,0,0,0,0,,1,,1,102245,2,1,2,0,1,,263.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,571.586778804126,208.0,21525.960449967562,4,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06782508048332868,14350.640299978375,3,2,3_0,3_1_0,3_3_0,3_1_0 -18987,2,58.0,0.0,6,111,10291.0,1452.0,0.0,42,34,0.0,0.0,14223.954975983901,11743.0,0.0,2633.4240120304958,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,108444,2,1,2,0,1,,520.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,828.541862914267,10291.0,174175.6818264924,1,1,1,2,160.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06742043364984762,116117.1212176616,10,5,10,10_1,10_3,10_0_0 -18988,2,65.0,0.0,2,111,340.0,204.0,0.0,75,74,6422.414971177403,0.0,469.9392373758164,4844.0,0.0,369.9851917728796,41,0,0,0,0,0,0,0,0,0,,1,,2,108056,2,1,2,0,2,,224.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,828.541862914267,340.0,95775.49827461515,5,5,0,1,150.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0505766097515974,63850.33218307677,10,5,10,10_1,10_3,10_0_1 -18989,2,27.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,737.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,113176,2,1,0,0,2,,0.0,570.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1052.58910537591,0.0,25750.90066840126,0,1,2,3,65.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028620358157195148,25750.90066840126,7,4,7,7_0,7_3,7_1_0 -18990,2,46.0,0.0,1,111,540.0,1700.0,0.0,37,37,0.0,0.0,746.3740828910024,2240.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,2,1.0,1,,1,100606,1,3,2,0,2,,520.0,630.0,43,2.0,0.0,5.0,3.0,2.0,2,2,650.854481915982,540.0,62631.287173920355,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03576487249543125,31315.643586960177,8,4,8,8_1,8_3,8_1_0 -18991,0,69.0,0.0,1,111,172.0,487.0,0.0,0,77,0.0,0.0,237.73396714306006,659.0,0.0,883.2489627127076,50,0,0,0,0,0,0,0,0,0,,1,,1,111565,2,1,2,0,1,,153.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,649.114056125141,172.0,20175.50937690637,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03266336366973295,20175.50937690637,5,3,5,5_1,5_3,5_1_0 -18992,2,55.0,0.0,1,111,744.0,1243.0,0.0,43,37,0.0,0.0,1028.3376253164924,1987.0,0.0,2254.370555753379,41,0,0,0,0,0,0,0,0,0,,1,,1,119384,2,2,2,0,1,,475.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,680.771728283043,744.0,110093.81903731081,1,1,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01804824301105047,55046.909518655404,10,5,10,10_1,10_3,10_1_0 -18993,0,40.0,0.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1256.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,118644,2,1,1,0,1,,693.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,677.627598809442,0.0,18897.322583450266,0,1,5,0,110.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06646444195750613,11810.826614656416,2,1,2_0,2_1_0,2_3_0,2_1_0 -18994,2,40.0,0.0,2,111,800.0,1013.0,0.0,42,37,0.0,0.0,1105.7393820607444,2313.0,0.0,1837.2303885584658,31,0,0,0,0,0,0,0,0,2,1.0,1,,2,118406,2,1,1,0,1,,423.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,785.91891008152,800.0,73181.50040194875,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031606348425433584,34848.3335247375,9,5,9,9_1,9_3,9_0_1 -18995,2,56.0,0.0,9,111,275.0,348.0,0.0,56,47,0.0,0.0,380.0979125833809,623.0,0.0,631.1512094949122,33,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,121953,2,1,0,0,1,,143.0,470.0,43,2.0,1.0,3.0,2.0,1.5,2,2,699.406800676502,275.0,30714.299938052452,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020283711536858276,20476.199958701636,5,3,5,5_0,5_3,5_0_0 -18996,2,64.0,0.0,5,111,2744.0,0.0,0.0,74,72,0.0,103.51725048194578,3792.6860804683533,2875.0,53.330137129895945,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,132366,2,1,1,0,2,,334.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,800.157074415274,2744.0,47968.5725254422,5,5,0,1,145.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05993507516770735,31979.0483502948,8,4,8,8_1,8_3,8_0_0 -18997,2,68.0,0.0,5,111,2312.0,0.0,0.0,74,74,0.0,0.0,3195.5868141555516,2312.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,100989,2,1,1,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,809.945400466067,2312.0,72775.55227013073,5,5,0,1,190.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031768910408515226,48517.03484675382,10,5,10,10_1,10_3,10_0_0 -18998,2,77.0,0.0,2,111,0.0,1573.0,0.0,0,77,0.0,0.0,0.0,2213.0,0.0,2852.876013033037,50,2,2,2,1,1,2,2,2,0,,2,,2,108505,2,3,0,0,1,,367.0,277.0,11,0.0,2.0,2.0,1.0,1.0,3,3,1004.54546838829,0.0,21244.109497432786,0,5,2,3,60.0,9,7,3,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.10417005242170432,21244.109497432786,5,3,5,5_0,5_3,5_0_1 -18999,2,49.0,0.0,1,111,1173.0,0.0,0.0,67,63,0.0,0.0,1621.2903689465666,1308.0,232.24414556567586,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108686,2,2,2,0,1,,357.0,,43,4.0,0.0,4.0,5.0,2.8,1,1,655.775108640763,1173.0,75978.32860007972,1,1,0,1,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017215435297146395,27135.11735717133,7,4,7,7_1,7_3,7_1_0 -19000,2,35.0,0.0,6,111,1352.0,0.0,0.0,43,38,0.0,0.0,1868.6995556826582,1352.0,0.0,0.0,60,2,2,1,2,2,2,2,1,2,20.0,1,,4,132749,1,1,2,0,1,,192.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,729.204612972632,1352.0,89854.43955775125,1,1,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.01504655759530994,42787.828360833926,9,5,9,9_1,9_3,9_0_0 -19001,2,43.0,0.0,8,111,0.0,0.0,0.0,62,62,0.0,0.0,0.0,835.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,2003.0,6,125171,2,1,1,0,1,,175.0,462.0,43,2.0,0.0,3.0,3.0,2.0,2,2,693.127702171369,0.0,34535.246038090794,1,1,2,3,78.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024178197516792937,17267.623019045397,4,2,4_0,4_1_0,4_3_0,4_0_0 -19002,2,36.0,0.0,1,111,0.0,840.0,0.0,38,37,0.0,0.0,0.0,3078.0,0.0,1523.468436711857,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,110195,1,2,2,0,1,,390.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,672.188459056035,0.0,65694.36402247641,1,1,1,2,110.0,9,7,3,0,1,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04685333431261935,36496.86890137578,9,5,9,9_1,9_3,9_1_0 -19003,2,29.0,0.0,9,111,1010.0,0.0,0.0,55,42,0.0,0.0,1395.9959698516898,1010.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,20.0,2,2008.0,6,132674,2,1,0,0,1,,0.0,588.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1113.93542050155,1010.0,28384.351879318452,4,1,2,3,44.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.035582986157098456,18922.901252878968,5,3,5,5_0,5_3,5_0_0 -19004,2,30.0,0.0,2,111,35.0,65.0,0.0,54,64,0.0,0.0,48.37609796515757,100.0,0.0,117.88743855508417,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,120390,2,1,0,1,1,,710.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,968.709951550837,35.0,34073.82190844467,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0029348043277533406,18929.901060247037,5,3,5,5_0,5_3,5_0_1 -19005,2,67.0,0.0,5,111,470.0,1280.0,0.0,75,75,0.0,0.0,649.6218869606873,1750.0,0.0,2321.4757130847347,71,0,0,0,0,0,0,0,0,0,,1,,3,129349,2,1,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,828.541862914267,470.0,28749.764408237785,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0608700640168921,19166.509605491858,5,3,5,5_1,5_3,5_0_0 -19006,2,35.0,0.0,1,111,25.0,75.0,0.0,38,33,0.0,0.0,34.554355689398264,100.0,0.0,136.02396756355867,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,114579,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,644.570780164496,25.0,109801.94774764225,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0009107306568898936,47739.97728158359,10,5,10,10_1,10_3,10_1_0 -19007,2,51.0,0.0,1,111,735.0,1690.0,0.0,37,85,0.0,0.0,1015.898057268309,2425.0,0.0,3065.0734024321887,44,0,0,0,0,0,0,0,0,0,,1,,1,113575,2,1,3,0,1,,289.0,,42,1.0,2.0,7.0,3.0,2.0,2,2,828.005105067081,735.0,54522.123839251835,4,7,0,1,108.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04447735761632569,27261.061919625918,7,4,7,7_1,7_3,7_1_0 -19008,2,41.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1426.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,101630,2,1,2,0,1,,473.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,651.992083972204,0.0,27549.800727628128,0,1,1,2,90.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051760809963679544,21192.15440586779,5,3,5,5_1,5_3,5_1_0 -19009,2,55.0,0.0,1,111,700.0,0.0,0.0,56,21,0.0,310.55175144583734,967.5219593031513,1040.0,68.81308016760767,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,119700,2,1,2,0,1,,370.0,,43,3.0,2.0,7.0,4.0,2.5,3,2,731.603675803036,700.0,24065.133079271236,1,1,0,1,180.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043216050232267995,9626.053231708494,1,1,1_0,1_1_0,1_3_0,1_1_0 -19010,2,64.0,0.0,5,111,538.0,1304.0,0.0,75,74,0.0,0.0,743.6097344358507,1842.0,0.0,2365.0033827050734,50,0,0,0,0,0,0,0,0,0,,1,,3,114417,2,1,2,0,1,,177.0,,41,0.0,0.0,7.0,2.0,1.5,1,1,838.55034103708,538.0,88567.20357812254,5,5,0,1,153.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020797766278972844,59044.80238541503,10,5,10,10_1,10_3,10_0_0 -19011,2,79.0,0.0,6,111,2240.0,0.0,0.0,0,77,0.0,0.0,3096.0702697700845,2240.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,121226,2,1,2,0,1,,328.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,937.709215961705,2240.0,34890.88970222474,0,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0642001398966095,34890.88970222474,9,5,9,9_1,9_3,9_0_0 -19012,2,41.0,0.0,1,111,860.0,1080.0,0.0,54,47,0.0,0.0,1188.6698357153002,1940.0,0.0,1958.7451329152448,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,103639,2,1,3,0,1,,520.0,,43,3.0,1.0,6.0,4.0,2.3,1,1,624.682082799237,860.0,38079.246092238514,1,1,1,2,106.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050946386787721086,16556.19395314718,4,2,4_0,4_1_0,4_3_0,4_1_0 -19013,2,60.0,0.0,5,111,570.0,1100.0,0.0,56,42,0.0,0.0,787.8393097182804,1670.0,0.0,1995.0181909321939,33,0,0,0,0,0,0,0,0,2,40.0,1,,3,119093,1,3,2,0,2,,620.0,910.0,43,2.0,3.0,5.0,3.0,2.0,1,1,834.348659255136,570.0,25701.779285255005,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06497604626766333,12850.889642627502,2,1,2_0,2_1_0,2_3_0,2_0_0 -19014,2,43.0,0.0,1,112,360.0,860.0,0.0,0,54,0.0,0.0,497.582721927335,1220.0,0.0,1559.741494728806,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,104483,2,1,1,0,1,,240.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,147.665652779535,360.0,15497.351899372741,0,1,1,2,67.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07872312688785106,15497.351899372741,3,2,3_0,3_1_0,3_0_0,3_1_0 -19015,2,60.0,0.0,6,112,500.0,1900.0,0.0,0,54,0.0,0.0,691.0871137879653,2400.0,0.0,3445.940511610153,50,0,0,0,0,0,0,0,0,0,,1,,4,124478,2,1,2,0,1,,140.0,,12,1.0,3.0,6.0,1.0,1.0,2,2,211.428426427539,500.0,14656.30429864257,0,4,0,1,160.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1637520585747037,14656.30429864257,3,2,3_0,3_1_0,3_0_0,3_0_0 -19016,2,43.0,0.0,1,112,500.0,1300.0,0.0,55,46,0.0,41.40690019277831,691.0871137879653,1840.0,0.0,2357.7487711016834,41,0,0,0,0,0,0,0,0,0,,1,,1,133282,2,2,2,0,1,,400.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,131.503739072305,500.0,56959.18865509823,1,1,1,2,100.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03230383092606267,28479.594327549115,8,4,8,8_1,8_0,8_1_0 -19017,1,44.0,169.0,1,112,1311.0,1313.0,0.0,68,63,0.0,0.0,1812.030412352045,2624.0,0.0,2381.3262588127004,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,113190,2,1,1,0,1,,660.0,850.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,1,1,170.047418469501,1311.0,37116.09444296599,1,1,2,3,170.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07069709352184506,11972.933691279351,2,1,2_1,2_1_1,2_0_1,2_1_0 -19018,0,71.0,0.0,1,112,200.0,1200.0,0.0,0,77,0.0,0.0,276.4348455151861,1430.0,51.60981012570575,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,1,127335,2,1,4,0,1,,100.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,161.788577502767,200.0,12810.404023971942,0,5,0,1,150.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11162801714325792,12810.404023971942,2,1,2_0,2_1_0,2_0_0,2_1_0 -19019,2,62.0,0.0,1,112,450.0,1000.0,0.0,77,77,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,1,,1,112637,2,1,2,0,1,,240.0,,41,1.0,1.0,7.0,3.0,2.0,1,1,150.129514138884,450.0,48716.47493167445,7,5,0,1,210.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029764058299243647,24358.237465837225,7,4,7,7_1,7_0,7_1_0 -19020,2,44.0,0.0,1,112,1300.0,0.0,0.0,52,64,0.0,434.77245202417225,1796.8264958487098,1800.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,114688,2,1,1,0,1,,540.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,128.35226977774,1300.0,33891.10247878763,1,1,0,1,100.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05311128491988764,12103.965170995583,2,1,2_0,2_1_0,2_0_0,2_1_0 -19021,2,80.0,0.0,1,112,500.0,0.0,0.0,0,86,2389.735803228801,828.1380038555662,691.0871137879653,2990.0,154.82943037711726,0.0,20,2,2,2,1,2,2,2,2,0,,1,,1,125330,1,2,4,0,2,,90.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,156.66728430385,500.0,14290.225978638724,0,7,0,1,100.0,6,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.2092339200562331,14290.225978638724,3,2,3_0,3_1_0,3_0_0,3_1_0 -19022,1,23.0,260.0,1,112,0.0,0.0,0.0,84,90,0.0,0.0,0.0,1631.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,8,,1,130465,2,2,0,0,1,,261.0,380.0,42,1.0,0.0,3.0,3.0,1.8,4,4,144.659119964606,0.0,13890.336608272462,3,1,2,3,60.0,6,0,3,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11741976065782664,7716.853671262479,1,1,1_1,1_0_1,1_0_1,1_1_0 -19023,2,37.0,0.0,2,112,1000.0,0.0,0.0,48,48,4182.037655650402,0.0,1382.1742275759307,3800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118696,2,3,3,0,1,,600.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,181.407605410288,1000.0,42938.26933023253,1,4,1,2,115.0,6,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08849914212365442,23854.594072351403,6,3,6,6_1,6_0,6_0_1 -19024,2,63.0,0.0,1,112,350.0,1800.0,0.0,78,78,0.0,31.055175144583732,483.76097965157567,2180.0,0.0,3264.575221525408,71,2,2,2,1,1,2,2,2,0,,1,,1,105126,2,1,2,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,126.699867598461,350.0,27683.053546027375,5,5,0,1,80.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07874853821221028,18455.369030684917,4,2,4_0,4_1_0,4_0_0,4_1_0 -19025,2,26.0,0.0,1,112,800.0,1100.0,0.0,81,64,0.0,0.0,1105.7393820607444,1900.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,14.0,1,,1,118391,2,1,1,0,1,,650.0,698.0,43,2.0,0.0,5.0,2.0,1.5,2,2,139.301173286694,800.0,23555.440290818187,4,1,2,3,110.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08066077205700171,15703.626860545459,3,2,3_0,3_1_0,3_0_0,3_1_0 -19026,2,62.0,0.0,7,112,1480.0,0.0,0.0,0,56,0.0,0.0,2045.6178568123773,1630.0,258.04905062852873,0.0,43,0,0,0,0,0,0,0,0,3,15.0,1,,5,113902,1,2,3,0,1,,480.0,475.0,32,1.0,1.0,3.0,2.0,1.5,1,1,123.227997105079,1480.0,16308.337472023297,0,1,2,3,72.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09994887601487522,10872.224981348865,2,1,2_0,2_1_0,2_0_0,2_0_0 -19027,2,84.0,0.0,1,112,1400.0,0.0,0.0,0,78,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,106944,2,3,3,0,2,,95.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,151.04034800885,1400.0,18961.32671861409,0,5,0,1,54.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07383449590716867,18961.32671861409,5,3,5,5_1,5_0,5_1_0 -19028,2,60.0,0.0,8,112,1100.0,0.0,0.0,0,75,0.0,0.0,1520.3916503335236,1130.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125149,2,1,1,0,1,,220.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,190.955336916396,1100.0,25291.404746499662,0,5,1,2,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04467921063800904,25291.404746499662,7,4,7,7_1,7_0,7_0_0 -19029,2,38.0,0.0,9,112,450.0,1000.0,0.0,46,46,0.0,310.55175144583734,621.9784024091688,1750.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,2.0,1,2010.0,6,100869,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,175.987584055499,450.0,53513.95640174191,1,1,1,2,146.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032701749555991276,25482.83638178186,7,4,7,7_1,7_0,7_0_0 -19030,2,82.0,0.0,2,112,217.0,1495.0,0.0,0,78,0.0,0.0,299.93180738397695,1712.0,0.0,2711.411086766936,41,0,0,0,0,0,0,0,0,0,,1,,2,129212,2,1,1,0,1,,143.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,175.124644974858,217.0,20231.41625737203,0,5,0,1,60.0,6,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08462086777420598,20231.41625737203,5,3,5,5_1,5_0,5_0_1 -19031,2,79.0,0.0,1,112,275.0,1800.0,0.0,0,78,0.0,0.0,380.0979125833809,2075.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,1,102380,2,1,1,0,1,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,163.136271652121,275.0,18020.92175336543,0,5,0,1,70.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11514394371156354,18020.92175336543,4,2,4_0,4_1_0,4_0_0,4_1_0 -19032,2,64.0,0.0,5,112,800.0,0.0,0.0,74,74,2987.1697540360015,207.03450096389156,1105.7393820607444,3030.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,124660,2,1,2,0,1,,600.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,186.256538154025,800.0,85276.80963458345,5,5,0,1,150.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03553134800637762,56851.206423055635,10,5,10,10_1,10_0,10_0_0 -19033,2,47.0,0.0,6,112,660.0,1080.0,0.0,47,85,0.0,0.0,912.2349902001142,1740.0,0.0,1958.7451329152448,10,0,0,0,0,0,0,0,0,0,,1,,4,133531,1,2,3,0,1,,0.0,514.0,42,3.0,0.0,6.0,5.0,3.0,6,5,145.05499999693,660.0,48873.12485014144,1,5,2,3,100.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03560238894761329,16291.041616713812,4,2,4_0,4_1_0,4_0_0,4_0_0 -19034,2,41.0,0.0,1,112,1400.0,2200.0,0.0,37,31,0.0,124.22070057833493,1935.0439186063027,3720.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,102124,2,1,1,0,1,,740.0,,43,2.0,0.0,8.0,5.0,2.4,3,3,147.556889867924,1400.0,133772.65594571602,1,1,1,2,200.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02780837364483179,55738.60664404834,10,5,10,10_1,10_0,10_1_0 -19035,2,51.0,0.0,1,112,0.0,0.0,3100.0,85,42,0.0,0.0,1583.8313379963276,3100.0,0.0,3544.0619014231575,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,111877,2,1,3,0,1,,573.0,,42,1.0,2.0,7.0,3.0,2.0,1,1,150.129514138884,0.0,56580.986697248234,5,1,1,2,150.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05478872287235609,28290.493348624117,8,4,8,8_1,8_0,8_1_0 -19036,2,67.0,0.0,5,112,2000.0,0.0,0.0,77,74,0.0,155.27587572291867,2764.3484551518613,2330.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,120689,2,1,2,0,1,,1000.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,179.495832736406,2000.0,57911.94768499659,5,5,0,1,150.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04023349400496229,38607.96512333106,9,5,9,9_1,9_0,9_0_0 -19037,2,58.0,0.0,1,112,978.0,850.0,0.0,78,63,0.0,0.0,1351.76639456926,1828.0,0.0,1541.6049657203316,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,118302,2,1,3,0,1,,342.0,,42,1.0,2.0,5.0,4.0,2.5,1,1,125.3145533257,978.0,41705.90236651816,6,1,0,1,100.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04383072649849997,16682.360946607263,4,2,4_0,4_1_0,4_0_0,4_1_0 -19038,2,59.0,0.0,6,112,1500.0,0.0,0.0,52,46,0.0,0.0,2073.261341363896,1590.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,132336,1,1,2,0,1,,300.0,,43,2.0,1.0,4.0,2.0,1.5,2,1,162.779357061762,1500.0,49322.68076097208,1,1,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03223669061512429,32881.787173981385,8,4,8,8_1,8_0,8_0_0 -19039,2,55.0,0.0,6,111,0.0,0.0,1580.0,62,52,0.0,0.0,807.2430690432896,1580.0,0.0,1806.328323951158,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,120129,2,1,3,0,1,,430.0,,43,2.0,1.0,3.0,3.0,2.0,2,2,320.001526305672,0.0,45874.744282043874,1,1,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03444160887929871,22937.372141021937,6,3,6,6_1,6_2,6_0_0 -19040,2,45.0,0.0,6,111,1000.0,0.0,0.0,63,62,0.0,672.8621281326475,1382.1742275759307,1650.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,102335,2,1,1,0,1,,600.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,413.335123907454,1000.0,26309.58837333622,1,1,1,2,92.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06271477822405663,13154.79418666811,2,1,2_0,2_1_0,2_2_0,2_0_0 -19041,2,63.0,0.0,7,111,2200.0,0.0,0.0,75,74,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,1,,5,109185,2,2,3,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,354.671730175076,2200.0,43686.57983298399,5,5,0,1,131.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05035871447045549,29124.38655532266,8,4,8,8_1,8_2,8_0_0 -19042,2,62.0,0.0,1,111,554.0,0.0,0.0,77,68,3435.2452171414016,0.0,765.7245220770656,2944.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,128875,2,1,3,0,1,,163.0,,41,1.0,0.0,5.0,3.0,2.0,1,1,261.698607258007,554.0,22899.175949649518,7,5,0,1,96.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12856357829090612,11449.587974824759,2,1,2_0,2_1_0,2_2_0,2_1_0 -19043,1,36.0,118.0,9,111,541.5,926.25,0.0,56,34,0.0,0.0,748.4473442323664,1468.0,0.0,1679.8959994099496,10,0,0,0,0,0,0,0,0,4,45.0,1,2007.0,6,101139,2,1,1,0,1,,542.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,331.117936581591,541.5,32026.17442863703,1,1,1,2,89.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.045837507169989994,13344.23934526543,3,2,3_1,3_1_1,3_2_1,3_0_0 -19044,2,86.0,0.0,9,111,0.0,0.0,1137.0,71,71,0.0,0.0,580.908461710266,1137.0,0.0,1299.870445780042,33,0,0,0,0,0,0,0,0,0,,1,2009.0,6,110737,2,1,3,0,1,,198.0,392.0,41,0.0,8.0,2.0,2.0,1.5,2,2,307.798597076313,0.0,22003.27262054231,5,5,2,3,54.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051674131371643964,14668.848413694874,3,2,3_0,3_1_0,3_2_0,3_0_0 -19045,1,84.0,164.0,9,111,218.0,851.0,0.0,0,77,0.0,0.0,301.3139816115529,1069.0,0.0,1543.4186186211791,12,2,2,2,2,1,2,2,2,0,,1,2008.0,6,105035,2,3,3,0,1,,192.0,392.0,11,0.0,0.0,2.0,1.0,1.0,1,1,353.779512922169,218.0,11631.274980114427,0,5,2,3,54.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.09190737918479538,11631.274980114427,2,1,2_1,2_1_1,2_2_1,2_0_0 -19046,0,63.0,0.0,2,111,285.0,1312.0,0.0,0,77,0.0,0.0,393.9196548591402,1597.0,0.0,2379.512605911853,33,0,0,0,0,0,0,0,0,0,,1,,2,121859,2,1,2,0,1,,301.0,,21,0.0,0.0,4.0,2.0,1.5,1,1,324.251696067552,285.0,46813.042556912194,0,5,0,1,96.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03411442437347398,31208.695037941463,8,4,8,8_1,8_2,8_0_1 -19047,2,61.0,0.0,6,111,2250.0,0.0,0.0,77,37,0.0,414.0690019277831,3109.892012045844,2650.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,60.0,1,,4,120404,2,1,2,0,1,,800.0,,42,2.0,2.0,6.0,3.0,2.0,2,2,339.458447285887,2250.0,85398.69410119997,5,1,0,1,141.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03103091947588416,42699.34705059999,9,5,9,9_1,9_2,9_0_0 -19048,2,48.0,0.0,1,111,648.0,1296.0,0.0,0,52,0.0,0.0,895.648899469203,1944.0,0.0,2350.494159498294,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,132529,1,1,2,0,2,,400.0,568.0,12,1.0,1.0,2.0,1.0,1.0,1,1,289.791659804501,648.0,17862.447978300715,0,1,2,3,75.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10883166754979885,17862.447978300715,4,2,4_0,4_1_0,4_2_0,4_1_0 -19049,2,58.0,0.0,2,111,865.0,0.0,0.0,37,38,2688.452778632401,0.0,1195.58070685318,2665.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,2,118993,2,3,2,0,1,,280.0,,43,2.0,1.0,9.0,5.0,3.0,2,2,439.899964744975,865.0,60105.40983203871,1,1,0,1,202.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04433877096000505,20035.136610679572,5,3,5,5_1,5_2,5_0_1 -19050,2,36.0,0.0,2,111,0.0,0.0,0.0,54,42,0.0,0.0,0.0,2607.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,120516,2,1,1,0,1,,732.0,700.0,43,2.0,1.0,4.0,3.0,1.8,1,1,413.233787454924,0.0,59968.575985799434,1,1,2,3,100.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04347276814806038,33315.87554766635,8,4,8,8_1,8_2,8_0_1 -19051,2,46.0,0.0,9,111,240.0,1200.0,0.0,0,46,0.0,0.0,331.72181461822333,1440.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,115283,2,1,1,0,1,,160.0,,12,1.0,0.0,5.0,1.0,1.0,3,3,518.916840006507,240.0,22752.28845696459,0,1,1,2,150.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06329033682584174,22752.28845696459,6,3,6,6_1,6_2,6_0_0 -19052,2,65.0,0.0,1,111,280.0,0.0,0.0,78,78,0.0,745.3242034700096,387.00878372126056,1080.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133687,2,2,1,0,1,,115.0,,41,0.0,0.0,3.0,2.0,1.5,3,2,378.623080633696,280.0,18250.379471389326,5,5,0,1,60.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059176851730293585,12166.919647592884,2,1,2_0,2_1_0,2_2_0,2_1_0 -19053,2,67.0,0.0,2,111,440.0,1033.0,0.0,0,77,0.0,0.0,608.1566601334094,1473.0,0.0,1873.5034465754147,71,0,0,0,0,0,0,0,0,0,,1,,2,118164,2,1,2,0,1,,333.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,483.941299767832,440.0,16854.509230225143,0,5,0,1,87.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08739500983858214,16854.509230225143,4,2,4_0,4_1_0,4_2_0,4_0_1 -19054,2,68.0,0.0,1,111,1024.0,0.0,0.0,77,72,0.0,1759.7932581930781,1415.346409037753,2784.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118861,2,3,4,0,1,,234.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,367.258064853063,1024.0,57699.88125056519,5,5,0,1,160.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048249666024619935,38466.587500376794,9,5,9,9_1,9_2,9_1_0 -19055,2,79.0,0.0,2,111,2038.0,0.0,0.0,0,72,0.0,0.0,2816.8710757997464,2158.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121794,2,2,5,0,1,,232.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,473.217352326942,2038.0,20880.6755345941,0,5,0,1,112.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10334914674693975,20880.6755345941,5,3,5,5_1,5_2,5_0_1 -19056,2,67.0,0.0,5,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,1465.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,123550,2,1,2,0,1,,323.0,870.0,41,0.0,4.0,5.0,2.0,1.5,2,2,353.170219100041,0.0,29935.603854102832,6,5,2,3,100.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04893838143836922,19957.069236068553,5,3,5,5_1,5_2,5_0_0 -19057,2,65.0,0.0,8,111,314.0,543.0,0.0,77,77,0.0,569.3448776507017,434.0027074588422,1407.0,0.0,984.8135251601648,31,2,2,1,2,1,2,2,1,0,,1,2000.0,6,125111,2,2,2,0,1,,178.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,467.148788550668,314.0,32221.34387691134,5,5,0,1,121.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04366670755182889,21480.895917940896,6,3,6,6_1,6_2,6_0_0 -19058,2,63.0,0.0,5,111,1500.0,0.0,0.0,78,56,0.0,517.5862524097289,2073.261341363896,2180.0,309.6588607542345,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,110311,2,1,1,0,1,,973.0,405.0,42,1.0,4.0,5.0,4.0,2.1,1,1,284.761010945724,1500.0,38188.476917008025,5,1,2,3,90.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05708528268193624,18184.98900809906,4,2,4_0,4_1_0,4_2_0,4_0_0 -19059,2,40.0,0.0,5,111,1600.0,0.0,0.0,37,38,0.0,103.51725048194578,2211.478764121489,1700.0,0.0,0.0,41,2,2,1,2,1,2,2,1,2,60.0,1,,3,101157,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,1,1,449.23798268606,1600.0,84626.0,1,1,1,2,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.020088388911209322,31342.962962962967,8,4,8,8_1,8_2,8_0_0 -19060,2,29.0,0.0,1,111,0.0,0.0,1060.0,54,63,0.0,0.0,541.5681349277766,1110.0,86.01635020950958,1211.8405211317895,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,113766,2,2,4,0,1,,384.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,222.941261981124,0.0,37869.37529981601,1,1,1,2,60.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029311283621977068,18033.03585705524,4,2,4_0,4_1_0,4_2_0,4_1_0 -19061,2,26.0,0.0,1,111,0.0,0.0,0.0,52,53,0.0,0.0,0.0,3075.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,125869,2,2,1,0,1,,359.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,351.16524815138,0.0,44822.00782633456,1,1,1,2,80.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0686046910685988,24901.115459074754,7,4,7,7_1,7_2,7_1_0 -19062,2,49.0,0.0,1,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,672.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104837,1,3,4,0,2,,639.0,,41,0.0,2.0,3.0,3.0,1.8,1,1,411.315320936538,0.0,28576.261552915825,5,5,0,1,50.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023516022162508216,15875.700862731013,3,2,3_0,3_1_0,3_2_0,3_1_0 -19063,2,52.0,0.0,1,111,440.0,0.0,0.0,0,67,4226.845201960942,0.0,608.1566601334094,3390.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120307,2,1,1,0,1,,451.0,,22,2.0,0.0,5.0,4.0,2.5,1,1,351.871094435219,440.0,55013.10302814994,0,1,0,1,100.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06162168307912668,22005.241211259978,6,3,6,6_1,6_2,6_1_0 -19064,2,30.0,0.0,1,111,1200.0,0.0,0.0,47,45,0.0,724.6207533736205,1658.6090730911167,1960.0,103.2196202514115,0.0,33,2,2,1,2,2,2,2,1,3,25.0,1,,1,112544,2,3,2,0,1,,410.0,700.0,43,2.0,0.0,4.0,3.0,1.8,2,2,350.567518845022,1200.0,38991.15104261528,1,1,2,3,90.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0502678158400049,21661.750579230713,6,3,6,6_1,6_2,6_1_0 -19065,2,34.0,0.0,1,111,600.0,0.0,0.0,65,46,821.4716823599003,0.0,829.3045365455583,1210.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,1,125142,2,2,3,0,1,,242.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,329.758269082794,600.0,52021.391615126675,1,1,1,2,130.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023259662274166433,21675.579839636117,6,3,6,6_1,6_2,6_1_0 -19066,2,63.0,0.0,7,111,1500.0,0.0,0.0,0,75,0.0,517.5862524097289,2073.261341363896,2060.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,127163,2,2,3,0,1,,132.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,514.438882424624,1500.0,52101.267641314465,0,5,0,1,165.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03953838540324675,52101.267641314465,10,5,10,10_1,10_3,10_0_0 -19067,2,48.0,0.0,6,111,1170.0,0.0,0.0,77,52,0.0,1552.7587572291866,1617.1438462638387,3553.0,1519.0487446999393,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,4,106329,2,1,2,0,1,,300.0,,42,1.0,0.0,4.0,4.0,2.5,2,2,443.791724559166,1170.0,56271.589229821395,5,1,0,1,130.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06314021069298449,22508.635691928557,6,3,6,6_1,6_3,6_0_0 -19068,2,81.0,0.0,7,111,540.0,1625.0,0.0,86,74,0.0,0.0,746.3740828910024,2165.0,0.0,2947.1859638771043,50,0,0,0,0,0,0,0,0,0,,1,,5,110835,2,1,2,0,1,,355.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,487.923873836922,540.0,68800.1418997428,6,5,0,1,198.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03146795835326749,45866.761266495196,10,5,10,10_1,10_3,10_0_0 -19069,2,49.0,0.0,2,111,1700.0,1010.0,0.0,47,31,0.0,144.92415067472407,2349.696186879082,2850.0,0.0,1831.7894298559233,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,105075,2,1,2,0,2,,696.0,,43,2.0,1.0,7.0,4.0,2.3,1,1,449.252990664365,1700.0,62750.80236277098,1,1,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04541774595205588,27282.957549030863,7,4,7,7_1,7_3,7_0_1 -19070,2,49.0,0.0,1,111,492.0,115.0,0.0,52,22,0.0,0.0,680.0297199673578,607.0,0.0,208.57008359745663,42,0,0,0,0,0,0,0,0,1,1.0,2,,1,132085,2,1,0,0,1,,360.0,,43,2.0,5.0,5.0,2.0,1.5,1,1,395.459556914672,492.0,9281.179898804052,1,1,1,2,54.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0654011673750895,6187.453265869368,1,1,1_0,1_0_0,1_3_0,1_1_0 -19071,2,22.0,0.0,1,111,0.0,0.0,0.0,68,52,0.0,0.0,0.0,888.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,101611,2,2,2,0,1,,254.0,550.0,43,2.0,0.0,2.0,2.0,1.5,1,1,327.80781460273,0.0,19069.643327322286,2,1,2,3,74.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04656615673182026,12713.095551548191,2,1,2_0,2_1_0,2_3_0,2_1_0 -19072,2,46.0,0.0,6,111,258.0,518.0,0.0,0,33,0.0,776.3793786145933,356.6009507145901,1646.0,206.439240502823,939.4722026389785,42,0,0,0,0,0,0,0,0,0,,1,,4,124996,2,1,3,0,2,,243.0,,22,1.0,1.0,4.0,2.0,1.5,1,1,448.688869354021,258.0,64019.20543142752,0,1,0,1,114.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025711034507653635,42679.47028761835,9,5,9,9_1,9_3,9_0_0 -19073,2,56.0,0.0,1,111,625.0,2710.0,0.0,22,37,0.0,62.110350289167464,863.8588922349566,3395.0,0.0,4914.999361296586,30,0,0,0,0,0,0,0,0,0,,1,,1,124588,2,1,2,0,1,,199.0,,43,3.0,0.0,7.0,4.0,2.5,1,1,368.649546084627,625.0,76621.69749963522,1,1,0,1,235.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044308598096722704,30648.678999854088,8,4,8,8_1,8_3,8_1_0 -19074,2,36.0,0.0,9,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,1365.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,105461,2,2,1,0,1,,0.0,810.0,43,2.0,0.0,4.0,4.0,2.1,1,1,428.245736584345,0.0,83472.45353418487,1,1,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016352700108916592,39748.78739723089,9,5,9,9_1,9_3,9_0_0 -19075,2,30.0,0.0,6,111,2200.0,0.0,0.0,43,37,0.0,414.0690019277831,3040.783300667047,2600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,4,101639,2,1,2,0,1,,500.0,,43,2.0,2.0,7.0,4.0,2.1,2,2,410.316234391356,2200.0,72158.0,1,1,1,2,130.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036032040799356964,34360.95238095238,9,5,9,9_1,9_3,9_0_0 -19076,2,76.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1495.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,119440,2,1,2,0,2,,164.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,417.295726311481,0.0,14477.43571160022,0,5,0,1,90.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1032641435804901,14477.43571160022,3,2,3_0,3_1_0,3_3_0,3_1_0 -19077,2,63.0,0.0,5,111,560.0,0.0,0.0,75,74,2222.454297002785,207.03450096389156,774.0175674425211,2448.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104714,2,1,2,0,1,,320.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,473.511576327795,560.0,65619.55398720021,5,5,0,1,122.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03730595304682364,43746.369324800144,10,5,10,10_1,10_3,10_0_0 -19078,2,62.0,0.0,1,111,600.0,0.0,0.0,0,74,5376.905557264802,0.0,829.3045365455583,4200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116740,2,1,2,0,1,,130.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,440.925476740438,600.0,27117.982347399975,0,5,0,1,200.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1548787791877403,27117.982347399975,7,4,7,7_1,7_3,7_1_0 -19079,2,64.0,0.0,1,111,250.0,1661.0,0.0,77,78,0.0,0.0,345.54355689398267,1911.0,0.0,3012.4774683076125,12,1,2,2,2,1,2,2,2,0,,1,,1,119879,2,1,1,0,1,,394.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1338.68120466439,250.0,22558.707401860418,5,5,1,2,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.0847123004859046,15039.138267906945,3,2,3_0,3_1_0,3_3_0,3_1_0 -19080,1,40.0,270.0,8,111,610.0,224.0,0.0,0,85,0.0,0.0,843.1262788213177,834.0,0.0,406.25824978982854,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,124456,2,1,1,0,1,,390.0,410.0,21,0.0,3.0,4.0,2.0,1.5,2,2,1580.86307206119,610.0,25337.343884704977,0,7,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03291584168392049,16891.562589803318,4,2,4_1,4_1_1,4_3_1,4_0_0 -19081,2,79.0,0.0,2,111,550.0,1870.0,0.0,0,86,0.0,0.0,760.1958251667618,2420.0,0.0,3391.5309245847293,10,0,0,0,0,0,0,0,0,0,,1,,2,122325,2,1,3,0,1,,500.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,2109.10157521701,550.0,12493.660374658828,0,5,0,1,87.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1936982379406231,12493.660374658828,2,1,2_0,2_1_0,2_3_0,2_0_1 -19082,1,33.0,80.0,2,111,0.0,0.0,0.0,56,52,0.0,0.0,0.0,1162.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,130352,2,3,3,0,1,,585.0,443.0,43,2.0,3.0,4.0,3.0,1.8,1,1,1159.3982904667,0.0,9870.361772392183,1,1,2,3,90.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11772618134931617,5483.534317995657,1,1,1_1,1_1_1,1_3_1,1_0_1 -19083,2,64.0,0.0,6,111,0.0,0.0,1078.0,0,78,0.0,0.0,550.764574954852,1078.0,0.0,1232.4189450755366,10,0,0,0,0,0,0,0,0,0,,1,,4,110496,2,1,2,0,1,,220.0,297.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1517.17245553562,0.0,16776.910755711775,0,5,2,3,53.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06425497612145252,16776.910755711775,4,2,4_0,4_1_0,4_3_0,4_0_0 -19084,2,75.0,0.0,2,111,195.0,1038.0,0.0,0,78,0.0,0.0,269.52397437730644,1233.0,0.0,1882.571711079652,50,2,2,2,2,1,2,2,2,0,,1,,2,112579,2,1,2,0,1,,83.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,2119.59330017293,195.0,15119.964782758618,0,5,0,1,88.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.08154780898735935,15119.964782758618,3,2,3_0,3_1_0,3_3_0,3_0_1 -19085,2,26.0,0.0,1,111,0.0,0.0,0.0,43,53,0.0,0.0,0.0,1188.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,2,,1,113728,1,1,0,0,1,,327.0,520.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1444.86676327227,0.0,34541.99202055203,1,1,2,3,60.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03439292092051772,19189.99556697335,5,3,5,5_0,5_3,5_1_0 -19086,2,24.0,0.0,1,111,610.0,0.0,0.0,0,37,0.0,0.0,843.1262788213177,610.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,2,,1,130979,1,3,0,0,1,,190.0,500.0,12,1.0,0.0,2.0,1.0,1.0,4,2,1657.68507579268,610.0,22728.756981130646,0,1,2,3,48.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026838247270029786,22728.756981130646,6,3,6,6_0,6_3,6_1_0 -19087,1,24.0,327.0,1,111,0.0,0.0,0.0,53,53,0.0,0.0,0.0,298.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,1,133269,2,1,0,0,1,,204.0,530.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1464.30220356683,0.0,12465.508016005628,1,1,2,3,54.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023905965133339934,8310.338677337086,1,1,1_1,1_0_1,1_3_1,1_1_0 -19088,2,49.0,0.0,1,111,1400.0,0.0,0.0,67,67,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,20.0,2,,1,133630,2,1,0,0,1,,300.0,590.0,43,3.0,1.0,3.0,3.0,2.0,1,1,1444.86676327227,1400.0,10880.767362111403,4,1,2,3,75.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0.12866739572753177,5440.383681055701,1,1,1_0,1_0_0,1_3_0,1_1_0 -19089,2,28.0,0.0,2,111,510.0,290.0,0.0,0,65,0.0,0.0,704.9088560637246,4333.0,0.0,525.9593412457601,50,0,0,0,0,0,0,0,0,0,,1,,2,132641,1,1,3,0,2,,110.0,,22,1.0,3.0,6.0,2.0,1.5,2,2,1883.78655237334,510.0,34570.40442118242,0,1,0,1,86.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12533842379191343,23046.936280788283,6,3,6,6_1,6_3,6_0_1 -19090,2,78.0,0.0,8,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,953.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,2001.0,6,123554,2,1,0,0,1,,0.0,489.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1828.30478260524,0.0,29676.0,0,5,2,3,43.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032113492384418386,29676.0,8,4,8,8_0,8_3,8_0_0 -19091,2,80.0,0.0,2,111,350.0,856.0,0.0,77,78,0.0,0.0,483.76097965157567,1206.0,0.0,1552.4868831254162,50,0,0,0,0,0,0,0,0,0,,1,,2,110809,2,1,2,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1860.96766055827,350.0,22676.209179045738,5,5,0,1,94.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05318349246462327,15117.472786030492,3,2,3_0,3_1_0,3_3_0,3_0_1 -19092,2,34.0,0.0,1,111,900.0,1900.0,0.0,54,21,0.0,0.0,1243.9568048183376,2800.0,0.0,3445.940511610153,71,2,2,2,2,1,2,2,2,0,,1,,1,131478,2,1,3,0,1,,500.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,1528.99911319547,900.0,57919.37205382725,1,1,1,2,180.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.048343065553228474,27580.653358965355,7,4,7,7_1,7_3,7_1_0 -19093,2,32.0,0.0,6,111,693.0,940.0,0.0,56,67,0.0,0.0,957.8467397101199,1633.0,0.0,1704.833726796602,71,0,0,0,0,0,0,0,0,2,30.0,2,,4,132709,1,3,0,0,1,,583.0,394.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1449.04694641531,693.0,24963.318332456794,4,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06541598269316651,13868.510184698218,3,2,3_0,3_0_0,3_3_0,3_0_0 -19094,2,82.0,0.0,2,111,1760.0,1812.0,0.0,86,78,0.0,0.0,2432.626640533638,3572.0,0.0,3286.3390563355774,71,0,0,0,0,0,0,0,0,0,,1,,2,108412,2,1,2,0,1,,200.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,1860.96766055827,1760.0,22403.78144113674,5,5,0,1,92.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15943737040039438,14935.85429409116,3,2,3_0,3_1_0,3_3_0,3_0_1 -19095,1,34.0,35.0,5,111,0.0,0.0,0.0,52,67,0.0,0.0,0.0,2476.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126139,1,1,3,0,2,,3340.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,1473.33527149938,0.0,47737.5108144202,1,1,1,2,90.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05186696913514116,19890.62950600842,5,3,5,5_1,5_3,5_0_0 -19096,2,52.0,0.0,6,111,480.0,1185.0,0.0,85,62,0.0,0.0,663.4436292364467,1665.0,0.0,2149.178687504227,42,2,2,2,1,1,1,2,2,1,15.0,1,,4,121924,1,3,3,0,1,,290.0,572.0,42,2.0,0.0,5.0,4.0,2.5,2,2,1266.6977191516,480.0,44390.97014692995,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03750762811646166,17756.38805877198,4,2,4_0,4_1_0,4_3_0,4_0_0 -19097,1,88.0,322.0,5,111,420.0,2050.0,0.0,0,77,0.0,0.0,580.5131755818909,2470.0,0.0,3717.9884467372704,41,0,0,0,0,0,0,0,0,0,,2,,3,111902,1,1,0,0,1,,230.0,399.0,21,0.0,4.0,3.0,2.0,1.5,1,1,1468.54325633365,420.0,34387.53475003513,0,5,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0718283534412852,22925.023166690084,6,3,6,6_0,6_3,6_0_0 -19098,2,55.0,0.0,2,111,470.0,0.0,0.0,85,64,0.0,1035.1725048194578,649.6218869606873,1530.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,123036,2,1,2,0,1,,320.0,,42,2.0,4.0,5.0,4.0,2.3,2,2,1625.13480134766,470.0,23952.79446076529,6,1,0,1,107.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06387563682835179,10414.2584612023,2,1,2_0,2_1_0,2_3_0,2_0_1 -19099,1,62.0,66.0,9,111,576.0,600.0,0.0,0,75,0.0,0.0,796.132355083736,1176.0,0.0,1088.1917405084694,44,2,2,2,2,1,1,2,2,0,,2,2010.0,6,127698,1,2,0,0,1,,120.0,429.0,11,0.0,7.0,3.0,1.0,1.0,2,2,1654.44082377264,576.0,15727.779883149396,0,5,2,3,73.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07477215530336585,15727.779883149396,3,2,3_1,3_0_1,3_3_1,3_0_0 -19100,2,61.0,0.0,6,111,1270.0,0.0,0.0,77,78,0.0,0.0,1755.3612690214318,1382.0,192.67662446930146,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,122617,2,1,2,0,1,,290.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1818.6118053702,1270.0,26229.84530223,5,5,0,1,121.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05268807284511532,17486.563534819998,4,2,4_0,4_1_0,4_3_0,4_0_0 -19101,2,55.0,0.0,2,111,784.0,1949.0,0.0,42,38,0.0,0.0,1083.6245944195296,2733.0,0.0,3534.8095037516778,44,0,0,0,0,0,0,0,0,2,4.0,1,,2,131765,2,1,4,0,1,,775.0,,43,2.0,3.0,10.0,2.0,1.5,2,2,1963.92152922056,784.0,69490.13376853995,1,1,0,1,356.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039329324204543444,46326.7558456933,10,5,10,10_1,10_3,10_0_1 -19102,0,51.0,0.0,1,111,1060.0,0.0,0.0,0,68,0.0,0.0,1465.1046812304864,1234.0,299.3368987290934,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,118884,2,2,2,0,1,,340.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1592.52777240993,1060.0,13647.582514386231,0,1,0,1,70.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09041894406567699,13647.582514386231,3,2,3_0,3_1_0,3_3_0,3_1_0 -19103,2,53.0,0.0,1,111,594.0,1610.0,0.0,52,62,0.0,0.0,821.0114911801028,2204.0,0.0,2919.9811703643927,70,0,0,0,0,0,0,0,0,2,5.0,1,,1,115356,2,1,4,0,1,,772.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,1178.02212913137,594.0,47085.63137452159,1,1,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04680833484995174,18834.252549808636,5,3,5,5_1,5_3,5_1_0 -19104,2,54.0,0.0,2,111,430.0,440.0,0.0,52,62,0.0,51.75862524097289,594.3349178576501,1090.0,292.4555907123326,798.0072763728775,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,123026,2,1,2,0,1,,200.0,,43,2.0,2.0,7.0,2.0,1.5,2,1,1601.725037413,430.0,49968.710030028196,1,1,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021813650969676333,33312.47335335213,8,4,8,8_1,8_3,8_0_1 -19105,1,44.0,250.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1419.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,130084,2,1,1,0,1,,126.0,14.0,11,0.0,0.0,5.0,1.0,1.0,2,2,1611.45632845703,0.0,9928.874282325178,0,7,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1429165038906801,9928.874282325178,2,1,2_1,2_1_1,2_3_1,2_1_0 -19106,2,47.0,0.0,9,111,1200.0,1200.0,0.0,0,46,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,108828,2,1,2,0,1,,380.0,539.0,32,1.0,1.0,4.0,3.0,2.0,2,2,1570.99573628604,1200.0,26671.304010558568,0,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0899843516856129,13335.652005279284,3,2,3_0,3_1_0,3_3_0,3_0_0 -19107,2,32.0,0.0,1,111,358.0,1893.0,0.0,21,55,0.0,0.0,494.8183734721831,2251.0,0.0,3433.244941304221,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,120840,2,2,3,0,1,,423.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1320.67960565266,358.0,37075.28939795645,1,1,1,2,50.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06071429344322456,20597.382998864694,5,3,5,5_1,5_3,5_1_0 -19108,2,88.0,0.0,2,111,600.0,1300.0,0.0,68,78,0.0,31.055175144583732,829.3045365455583,1930.0,0.0,2357.7487711016834,60,0,0,0,0,0,0,0,0,0,,1,,2,112782,1,3,3,0,1,,700.0,,42,1.0,0.0,4.0,4.0,2.5,2,2,1763.97149185049,600.0,24016.80912165575,1,5,0,1,77.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08036038385547793,9606.7236486623,1,1,1_0,1_1_0,1_3_0,1_0_1 -19109,2,51.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,779.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,112951,2,2,2,0,1,,220.0,500.0,22,1.0,0.0,5.0,2.0,1.5,2,2,1464.54575885363,0.0,29452.13854689451,0,1,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02644969222726067,19634.759031263005,5,3,5,5_1,5_3,5_0_1 -19110,2,35.0,0.0,1,111,720.0,0.0,0.0,0,47,0.0,0.0,995.16544385467,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,110383,2,1,0,0,1,,360.0,484.0,12,1.0,0.0,2.0,1.0,1.0,2,1,2315.52539767578,720.0,39499.987620234664,0,1,2,3,45.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018227853814089943,39499.987620234664,9,5,9,9_0,9_3,9_1_0 -19111,2,67.0,0.0,1,111,352.0,1310.0,0.0,77,75,0.0,0.0,486.52532810672756,1662.0,0.0,2375.885300110158,31,0,0,0,0,0,0,0,0,0,,1,,1,123579,2,1,1,0,1,,456.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1595.4855827856,352.0,26882.906189279693,5,5,0,1,125.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06182367294287434,17921.937459519795,4,2,4_0,4_1_0,4_3_0,4_1_0 -19112,2,52.0,0.0,1,111,476.0,912.0,0.0,0,68,0.0,0.0,657.9149323261429,1388.0,0.0,1654.0514455728735,30,2,2,2,1,1,2,2,2,0,,1,,1,118325,1,2,3,0,2,,308.0,,22,3.0,1.0,5.0,4.0,2.5,2,2,1509.61292402071,476.0,33631.54324165422,0,1,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04127077934029795,13452.617296661687,3,2,3_0,3_1_0,3_3_0,3_1_0 -19113,2,23.0,0.0,5,111,1400.0,0.0,0.0,63,52,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,42,2,2,2,1,1,2,2,2,2,10.0,2,,3,122996,1,1,0,0,2,,500.0,390.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1702.36930737782,1400.0,37371.0,1,1,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03746220331272912,24914.0,7,4,7,7_0,7_3,7_0_0 -19114,2,49.0,0.0,1,111,800.0,1400.0,0.0,52,63,0.0,0.0,1105.7393820607444,2200.0,0.0,2539.1140611864284,71,2,2,2,2,1,2,2,2,2,25.0,1,,1,129852,2,1,2,0,1,,820.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1301.23793988521,800.0,34649.49904501262,1,1,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06349298144662971,23099.666030008415,6,3,6,6_1,6_3,6_1_0 -19115,2,28.0,0.0,1,111,0.0,0.0,0.0,67,67,0.0,0.0,0.0,1724.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,108989,2,1,2,0,1,,415.0,450.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1800.32704913012,0.0,18833.923398126743,4,1,2,3,75.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09153695507604498,12555.948932084495,2,1,2_0,2_1_0,2_3_0,2_1_0 -19116,2,57.0,0.0,1,111,326.0,651.0,0.0,0,65,0.0,0.0,450.58879818975333,977.0,0.0,1180.6880384516892,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,102276,2,1,2,0,1,,130.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1511.33955905159,326.0,19614.10171361852,0,1,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04981110092447653,19614.10171361852,5,3,5,5_1,5_3,5_1_0 -19117,2,77.0,0.0,1,111,283.0,1235.0,0.0,77,75,0.0,0.0,391.15530640398833,1518.0,0.0,2239.8613325465994,41,0,0,0,0,0,0,0,0,0,,1,,1,112547,2,1,2,0,2,,360.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1644.5027186215,283.0,31015.961374370236,5,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048942542250339074,20677.30758291349,5,3,5,5_1,5_3,5_1_0 -19118,2,74.0,0.0,6,112,600.0,0.0,0.0,0,86,0.0,0.0,829.3045365455583,1800.0,2064.39240502823,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,104907,2,1,1,0,1,,480.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,415.135488340569,600.0,31579.794359112242,0,6,0,1,50.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0569984712228063,31579.794359112242,8,4,8,8_1,8_1,8_0_0 -19119,1,76.0,80.0,9,112,300.0,900.0,0.0,0,78,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,10,0,0,0,0,0,0,0,0,0,,2,2007.0,6,119621,2,1,0,0,1,,440.0,405.0,21,0.0,3.0,3.0,2.0,1.5,2,2,379.086576017562,300.0,18403.629068177033,0,5,2,3,65.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06520453088651963,12269.086045451355,2,1,2_1,2_0_1,2_1_1,2_0_0 -19120,2,50.0,0.0,1,112,490.0,0.0,0.0,47,64,0.0,0.0,677.265371512206,490.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,130271,2,2,2,0,1,,650.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,298.960927085268,490.0,41837.00578670275,1,1,0,1,90.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011712119229998505,16734.8023146811,4,2,4_0,4_1_0,4_1_0,4_1_0 -19121,2,65.0,0.0,5,112,1600.0,0.0,0.0,86,86,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,123399,2,1,1,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,404.763161266338,1600.0,45211.59706232343,5,5,0,1,120.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03538915021724242,30141.06470821562,8,4,8,8_1,8_1,8_0_0 -19122,2,70.0,0.0,1,112,210.0,900.0,0.0,78,78,0.0,0.0,290.25658779094545,1110.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,1,127397,2,1,1,0,1,,220.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,286.542808826537,210.0,15558.497790439764,5,5,0,1,60.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07134364865752413,10372.331860293176,2,1,2_0,2_1_0,2_1_0,2_1_0 -19123,2,88.0,0.0,7,112,1400.0,0.0,0.0,0,86,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,113445,2,1,1,0,1,,160.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,446.805056923607,1400.0,18460.972162440277,0,6,0,1,100.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0758356595568876,18460.972162440277,4,2,4_0,4_1_0,4_1_0,4_0_0 -19124,2,53.0,0.0,7,112,1800.0,0.0,0.0,46,22,0.0,0.0,2487.913609636675,1860.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,113810,2,1,1,0,1,,500.0,,43,2.0,2.0,5.0,2.0,1.5,2,1,419.404394418894,1800.0,47273.706204730675,1,1,0,1,120.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039345339075908335,31515.804136487117,8,4,8,8_1,8_1,8_0_0 -19125,2,28.0,0.0,1,112,800.0,1200.0,0.0,43,38,0.0,0.0,1105.7393820607444,2120.0,206.439240502823,2176.3834810169387,33,0,0,0,0,0,0,0,0,2,45.0,1,,1,124380,2,3,3,0,1,,390.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,301.228907260283,800.0,52367.50914820028,1,1,1,2,80.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04048311700295675,29093.060637889044,8,4,8,8_1,8_1,8_1_0 -19126,2,77.0,0.0,1,112,250.0,950.0,0.0,0,86,0.0,0.0,345.54355689398267,1200.0,0.0,1722.9702558050765,43,0,0,0,0,0,0,0,0,0,,1,,1,111601,2,2,2,0,2,,200.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,375.721034461273,250.0,15054.871651199594,0,6,0,1,100.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07970841783326545,15054.871651199594,3,2,3_0,3_1_0,3_1_0,3_1_0 -19127,2,74.0,0.0,2,112,350.0,1100.0,0.0,86,78,0.0,207.03450096389156,483.76097965157567,1650.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,1,,2,107108,2,1,1,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,416.744344886687,350.0,22148.791072338485,6,5,0,1,100.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07449616525845859,14765.860714892324,3,2,3_0,3_1_0,3_1_0,3_0_1 -19128,2,57.0,0.0,9,112,1610.0,0.0,0.0,54,21,0.0,0.0,2225.3005063972482,1610.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,123200,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,403.164149098443,1610.0,59212.662973881655,1,1,1,2,100.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027190129934033892,39475.108649254435,9,5,9,9_1,9_1,9_0_0 -19129,2,35.0,0.0,1,112,1200.0,0.0,0.0,63,54,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,127376,2,2,3,0,1,,540.0,900.0,43,2.0,0.0,4.0,4.0,2.3,2,2,370.570604590493,1200.0,19817.082409895032,4,1,2,3,100.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06055381792230011,8616.122786910884,1,1,1_0,1_1_0,1_1_0,1_1_0 -19130,2,55.0,0.0,2,112,378.0,1538.0,0.0,0,62,0.0,0.0,522.4618580237018,1916.0,0.0,2789.3981615033763,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,112737,2,1,2,0,1,,280.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,365.802067199205,378.0,29117.928373942777,0,1,0,1,90.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06580138447330619,29117.928373942777,8,4,8,8_1,8_1,8_0_1 -19131,2,66.0,0.0,1,112,500.0,0.0,0.0,85,75,4480.754631054002,0.0,691.0871137879653,3558.0,99.77896624303112,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,106835,2,2,2,0,2,,400.0,,41,0.0,0.0,8.0,2.0,1.5,1,1,365.630477510961,500.0,23426.370324039697,6,5,0,1,120.0,9,3,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1518801227328353,15617.580216026465,3,2,3_0,3_1_0,3_1_0,3_1_0 -19132,2,74.0,0.0,7,112,1900.0,0.0,0.0,0,77,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,127447,2,1,1,0,1,,400.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,463.293950256359,1900.0,18969.971969033075,0,5,0,1,120.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1001582924372052,18969.971969033075,5,3,5,5_1,5_1,5_0_0 -19133,2,73.0,0.0,1,112,1400.0,0.0,0.0,77,78,0.0,1035.1725048194578,1935.0439186063027,2630.0,395.67521096374406,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110453,2,2,2,0,1,,890.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,331.09782892618,1400.0,52240.24423491299,5,5,0,1,120.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05034432818065442,34826.82948994199,9,5,9,9_1,9_1,9_1_0 -19134,1,42.0,40.0,5,112,1000.0,0.0,0.0,56,63,2987.1697540360015,0.0,1382.1742275759307,3150.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,3,107981,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.8,2,1,406.862001916656,1000.0,49275.06602063329,1,1,1,2,120.0,9,3,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06392685498748958,17598.23786451189,4,2,4_1,4_1_1,4_1_1,4_0_0 -19135,2,81.0,0.0,2,112,600.0,980.0,0.0,86,77,0.0,0.0,829.3045365455583,1580.0,0.0,1777.3798428305,70,0,0,0,0,0,0,0,0,0,,1,,2,116799,2,1,2,0,1,,400.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,402.143207461978,600.0,32044.37096104944,6,5,0,1,100.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04930663179253919,21362.91397403296,6,3,6,6_1,6_1,6_0_1 -19136,2,38.0,0.0,1,112,960.0,0.0,0.0,0,62,0.0,0.0,1326.8872584728933,1210.0,430.0817510475479,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,130222,2,2,2,0,2,,330.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,299.405931239052,960.0,35152.44252430144,0,1,0,1,80.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03442150567954155,19529.134735723022,5,3,5,5_1,5_1,5_1_0 -19137,2,40.0,0.0,9,112,704.0,1545.0,0.0,43,38,0.0,0.0,973.0506562134551,2249.0,0.0,2802.0937318093083,71,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,131863,2,1,1,0,1,,479.0,,43,2.0,0.0,8.0,6.0,2.6999999999999997,3,2,264.789540349929,704.0,78399.81137705498,1,1,1,2,160.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02868629350629034,29036.967176687034,8,4,8,8_1,8_0,8_0_0 -19138,2,78.0,0.0,5,112,1022.0,0.0,0.0,0,75,0.0,0.0,1412.5820605826011,1687.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,119427,2,1,2,0,1,,95.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,254.935930343111,1022.0,22026.7424904232,0,5,0,1,98.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07658871940476332,22026.7424904232,6,3,6,6_1,6_0,6_0_0 -19139,2,42.0,0.0,9,112,2241.0,0.0,0.0,68,42,0.0,0.0,3097.4524439976603,2241.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,130590,2,1,1,0,1,,379.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,224.547122676757,2241.0,51962.83264485153,1,1,1,2,140.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04312697914904833,24744.20602135787,7,4,7,7_1,7_0,7_0_0 -19140,2,59.0,0.0,6,112,820.0,0.0,0.0,54,64,0.0,621.1035028916747,1133.3828666122631,1530.0,0.0,0.0,50,2,2,2,2,2,2,2,1,2,12.0,1,,4,132912,1,2,3,0,1,,320.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,240.483288920778,820.0,46931.69534331221,1,1,0,1,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03260056958965207,31287.796895541473,8,4,8,8_1,8_0,8_0_0 -19141,2,64.0,0.0,5,112,2650.0,0.0,0.0,75,74,0.0,0.0,3662.761703076216,2650.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114914,2,1,3,0,1,,350.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,245.457968773297,2650.0,775210.8297436234,5,5,0,1,145.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0034184248959427,516807.21982908226,10,5,10,10_1,10_0,10_0_0 -19142,2,35.0,0.0,1,112,562.0,1107.0,0.0,37,37,0.0,0.0,776.781915897673,1669.0,0.0,2007.713761238126,50,0,0,0,0,0,0,0,0,0,,1,,1,130667,2,1,1,0,1,,253.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,187.070016169093,562.0,62408.69760592334,1,1,1,2,100.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026743067297106866,26003.62400246806,7,4,7,7_1,7_0,7_1_0 -19143,2,44.0,0.0,5,112,5800.0,0.0,0.0,42,22,0.0,0.0,8016.610519940397,5800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,125139,2,1,1,0,1,,780.0,,43,2.0,0.0,6.0,7.0,3.3999999999999995,3,3,252.179433297239,5800.0,96486.84818175978,1,4,1,2,180.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0601118194790039,28378.484759341114,8,4,8,8_1,8_0,8_0_0 -19144,2,83.0,0.0,1,112,800.0,0.0,0.0,0,71,2539.0942909306013,0.0,1105.7393820607444,2638.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125127,2,1,2,0,1,,150.0,,11,0.0,7.0,8.0,1.0,1.0,1,1,228.669410211948,800.0,14827.03683306729,0,5,0,1,200.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1779182199181381,14827.03683306729,3,2,3_0,3_1_0,3_0_0,3_1_0 -19145,2,60.0,0.0,1,112,400.0,1800.0,0.0,0,46,0.0,0.0,552.8696910303722,2200.0,0.0,3264.575221525408,60,0,0,0,0,0,0,0,0,0,,1,,1,126836,1,1,2,0,2,,320.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,228.669410211948,400.0,43669.288055551515,0,1,0,1,130.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050378655067639055,43669.288055551515,10,5,10,10_1,10_0,10_1_0 -19146,2,39.0,0.0,2,112,1008.0,412.8,0.0,56,47,0.0,179.49891233569397,1393.231621396538,1594.0,0.0,748.6759174698269,50,0,0,0,0,0,0,0,0,0,,1,,2,103991,2,1,1,0,1,,290.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,230.225722666882,1008.0,32107.92905632239,1,1,1,2,124.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04964505799187084,15289.490026820185,3,2,3_0,3_1_0,3_0_0,3_0_1 -19147,2,69.0,0.0,9,112,0.0,0.0,0.0,78,78,0.0,0.0,0.0,664.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,8,2013.0,6,100793,2,1,0,0,1,,311.0,474.0,41,0.0,1.0,3.0,2.0,1.5,2,2,184.015141817645,0.0,33893.9892317413,5,5,2,3,76.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019590494215952964,22595.992821160868,6,3,6,6_0,6_0,6_0_0 -19148,2,66.0,0.0,6,112,3494.0,0.0,0.0,42,72,0.0,0.0,4829.316751150302,3494.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,110198,2,2,2,0,1,,323.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,237.645908741151,3494.0,136142.3644047376,1,5,0,1,230.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025664311144271656,90761.57626982506,10,5,10,10_1,10_0,10_0_0 -19149,2,50.0,0.0,1,112,858.0,2760.0,0.0,56,22,0.0,0.0,1185.9054872601484,3618.0,0.0,5005.682006338959,31,0,0,0,0,0,0,0,0,0,,1,,1,121661,2,1,1,0,1,,548.0,,43,2.0,1.0,6.0,4.0,2.1,3,2,190.678099538445,858.0,38056.5958695581,1,1,0,1,280.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09506893397404677,18122.18850931338,4,2,4_0,4_1_0,4_0_0,4_1_0 -19150,0,46.0,0.0,8,112,0.0,0.0,0.0,68,53,0.0,0.0,0.0,1093.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2001.0,6,132247,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,235.946393610611,0.0,42112.62197179753,1,1,5,0,100.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025954213934529482,16197.162296845207,4,2,4_0,4_1_0,4_0_0,4_0_0 -19151,2,59.0,0.0,6,112,1066.0,0.0,0.0,78,46,0.0,310.55175144583734,1473.397726595942,1436.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,129820,2,1,2,0,1,,305.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,276.714219061887,1066.0,44807.05405230658,5,1,0,1,154.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03204852517917494,29871.369368204385,8,4,8,8_1,8_0,8_0_0 -19152,2,39.0,0.0,2,112,800.0,0.0,0.0,42,42,2987.1697540360015,0.0,1105.7393820607444,2900.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,2,105040,2,1,2,0,1,,526.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,233.201940345625,800.0,53015.58906840712,1,1,1,2,120.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05470089177464518,25245.518604003388,7,4,7,7_1,7_0,7_0_1 -19153,2,81.0,0.0,8,112,651.0,2798.0,0.0,74,74,0.0,0.0,899.7954221519308,3449.0,0.0,5074.600816571162,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,106176,2,1,2,0,1,,238.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,254.692635467568,651.0,118650.16647187239,5,5,0,1,140.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02906864863790673,79100.11098124826,10,5,10,10_1,10_0,10_0_0 -19154,2,67.0,0.0,2,112,0.0,0.0,0.0,54,72,0.0,0.0,0.0,1216.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107927,1,1,2,0,2,,221.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,204.216493057718,0.0,72579.92994836066,1,5,0,1,85.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01675394287188156,48386.61996557377,10,5,10,10_1,10_0,10_0_1 -19155,2,51.0,0.0,2,112,2060.0,0.0,0.0,33,52,0.0,0.0,2847.278908806417,2150.0,154.82943037711726,0.0,60,2,2,1,2,2,2,2,1,2,45.0,1,,2,110205,2,3,2,0,1,,240.0,431.0,43,3.0,0.0,4.0,4.0,2.5,2,2,223.690331259736,2060.0,61804.32247569472,1,1,2,3,60.0,9,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03478721089201347,24721.728990277887,7,4,7,7_1,7_0,7_0_1 -19156,2,65.0,0.0,1,112,790.0,0.0,0.0,54,78,3456.1554054196536,310.55175144583734,1091.917639784985,3479.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106894,2,2,2,0,1,,323.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,198.901512830251,790.0,37425.17249499492,5,5,0,1,110.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09295882338191672,24950.11499666328,7,4,7,7_1,7_0,7_1_0 -19157,2,41.0,0.0,9,112,900.0,1339.0,0.0,56,46,0.0,0.0,1243.9568048183376,4277.0,0.0,2428.481234234734,41,0,0,0,0,0,0,0,0,0,,1,2007.0,6,111328,2,1,1,0,1,,340.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,2,2,238.840123983886,900.0,132674.81983205592,1,1,1,2,222.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032236712327282334,51028.77685848305,10,5,10,10_1,10_0,10_0_0 -19158,2,62.0,0.0,2,112,600.0,0.0,0.0,75,75,4480.754631054002,0.0,829.3045365455583,3640.0,68.81308016760767,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,125515,1,2,1,0,1,,200.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,246.596835112019,600.0,39592.58238920389,5,5,0,1,160.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09193641284162751,26395.054926135927,7,4,7,7_1,7_0,7_0_1 -19159,2,25.0,0.0,6,112,0.0,0.0,0.0,48,37,0.0,0.0,0.0,2035.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,4,103519,2,1,1,1,1,1030.0,246.0,750.0,43,2.0,0.0,3.0,2.0,1.5,2,2,208.421688057022,0.0,53023.23708839398,1,1,2,3,88.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038379399518884375,35348.82472559599,9,5,9,9_1,9_0,9_0_0 -19160,2,43.0,0.0,2,112,0.0,0.0,0.0,0,65,0.0,0.0,0.0,1239.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,110056,2,1,2,0,1,,120.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,254.935930343111,0.0,47045.95908490892,0,1,1,2,90.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02633594944390108,47045.95908490892,10,5,10,10_1,10_0,10_0_1 -19161,2,71.0,0.0,1,112,877.0,0.0,0.0,71,71,2123.877695119597,0.0,1212.166797584091,2374.0,129.02452531426437,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,104534,1,2,3,0,2,,244.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,191.107545264742,877.0,19033.47575428351,5,5,0,1,115.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1247276131090102,12688.983836189007,2,1,2_0,2_1_0,2_0_0,2_1_0 -19162,2,50.0,0.0,1,111,700.0,0.0,0.0,0,62,0.0,414.0690019277831,967.5219593031513,1580.0,825.756962011292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110725,1,1,2,0,2,,600.0,,22,2.0,1.0,4.0,3.0,2.0,1,1,354.261671229608,700.0,43943.9714453723,0,1,0,1,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03595487499267407,21971.98572268615,6,3,6,6_1,6_3,6_1_0 -19163,2,49.0,0.0,1,111,1500.0,0.0,0.0,56,47,0.0,0.0,2073.261341363896,1620.0,206.439240502823,0.0,70,2,2,1,2,1,2,2,2,0,,1,,1,113424,2,1,2,0,1,,450.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,291.05325546261,1500.0,42618.648217613394,1,4,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.038011529406755985,21309.324108806697,6,3,6,6_1,6_3,6_1_0 -19164,1,41.0,350.0,2,111,1080.0,0.0,0.0,85,63,0.0,0.0,1492.748165782005,1320.0,412.878481005646,0.0,50,2,2,2,2,1,2,2,2,1,2.0,1,,2,119963,1,3,3,0,2,,960.0,657.0,42,1.0,0.0,6.0,6.0,3.0999999999999996,2,2,434.351474776093,1080.0,24230.7930327822,6,1,2,3,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0.05447613696399257,7816.384849284582,1,1,1_1,1_1_1,1_3_1,1_0_1 -19165,2,43.0,0.0,7,111,612.0,1086.0,0.0,52,52,0.0,0.0,845.8906272764696,1698.0,0.0,1969.6270503203295,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,106540,1,2,3,0,1,,624.0,497.0,43,2.0,0.0,5.0,5.0,2.8,2,2,92.1788697809765,612.0,43197.77233794631,1,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03930758250023051,15427.775834980826,3,2,3_0,3_1_0,3_3_0,3_0_0 -19166,1,31.0,265.0,1,111,460.0,1200.0,0.0,56,62,0.0,0.0,635.800144684928,1660.0,0.0,2176.3834810169387,71,1,2,2,1,1,2,2,2,2,5.0,1,,1,126203,1,1,3,0,1,,473.0,484.0,43,2.0,0.0,5.0,5.0,2.4,1,1,74.5307602555548,460.0,29492.869355993906,1,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.05628479141730692,12288.69556499746,2,1,2_1,2_1_1,2_3_1,2_1_0 -19167,1,45.0,270.0,2,111,800.0,1228.0,0.0,0,67,0.0,62.110350289167464,1105.7393820607444,2088.0,0.0,2227.1657622406674,70,0,0,0,0,0,0,0,0,0,,1,,2,127423,1,3,4,0,1,,613.0,326.0,22,1.0,0.0,4.0,2.0,1.5,2,2,305.762355659608,800.0,28782.074851697987,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07254515217400385,19188.04990113199,5,3,5,5_1,5_3,5_0_1 -19169,0,77.0,0.0,1,111,400.0,1750.0,0.0,78,77,0.0,0.0,552.8696910303722,2150.0,0.0,3173.8925764830356,71,2,2,2,1,1,2,2,2,0,,1,,1,119399,2,2,2,0,1,,320.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,395.666150904996,400.0,20039.408582026863,5,5,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.10728859542932383,13359.605721351241,3,2,3_0,3_1_0,3_3_0,3_1_0 -19171,2,68.0,0.0,2,111,483.0,974.0,0.0,86,77,0.0,155.27587572291867,667.5901519191744,1607.0,0.0,1766.4979254254151,50,0,0,0,0,0,0,0,0,0,,1,,2,100093,2,1,1,0,1,,358.0,358.0,41,0.0,5.0,4.0,3.0,2.0,2,2,353.902934450326,483.0,34977.996255246544,5,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04594316919337417,17488.998127623272,4,2,4_0,4_1_0,4_3_0,4_0_1 -19172,2,75.0,0.0,1,111,440.0,1195.0,0.0,77,78,0.0,0.0,608.1566601334094,1635.0,0.0,2167.315216512701,50,0,0,0,0,0,0,0,0,0,,1,,1,110034,1,1,2,0,1,,235.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,455.697102985343,440.0,21112.784977507676,5,5,0,1,78.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07744122822933276,14075.189985005118,3,2,3_0,3_1_0,3_3_0,3_1_0 -19173,2,61.0,0.0,5,111,813.0,2085.0,0.0,77,75,0.0,0.0,1123.7076470192314,2898.0,0.0,3781.466298266931,31,2,2,2,2,1,2,2,2,0,,1,,3,100662,1,2,3,0,1,,578.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,480.907524791633,813.0,18900.728231109224,7,5,0,1,150.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.15332742551316636,12600.48548740615,2,1,2_0,2_1_0,2_3_0,2_0_0 -19174,2,57.0,0.0,1,111,1200.0,0.0,0.0,0,64,0.0,0.0,1658.6090730911167,1400.0,344.06540083803833,0.0,50,2,2,2,1,1,1,1,2,2,40.0,1,,1,125512,1,3,4,0,2,,240.0,623.0,12,1.0,1.0,3.0,1.0,1.0,2,2,337.277848985229,1200.0,24498.47670784631,0,1,2,3,70.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.05714641023176807,24498.47670784631,7,4,7,7_1,7_3,7_1_0 -19175,2,69.0,0.0,1,111,720.0,370.0,0.0,77,77,0.0,103.51725048194578,995.16544385467,1190.0,0.0,671.0515733135561,71,0,0,0,0,0,0,0,0,0,,1,,1,103848,2,1,2,0,1,,624.0,,41,1.0,1.0,5.0,3.0,2.0,1,1,418.752476203823,720.0,34552.858234961874,5,5,0,1,85.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03443998733499602,17276.429117480937,4,2,4_0,4_1_0,4_3_0,4_1_0 -19176,1,40.0,92.0,8,111,426.0,970.0,0.0,68,64,0.0,0.0,588.8062209473464,1396.0,0.0,1759.2433138220254,50,2,2,2,2,1,2,2,2,0,,1,1999.0,6,110008,2,1,2,0,1,,380.0,456.0,43,3.0,0.0,3.0,3.0,2.0,3,3,436.094576313179,426.0,16582.92185368712,1,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.0841829933420091,8291.46092684356,1,1,1_1,1_1_1,1_3_1,1_0_0 -19177,1,32.0,176.0,1,111,540.0,830.0,0.0,85,47,0.0,0.0,746.3740828910024,1370.0,0.0,1505.3319077033825,60,0,0,0,0,0,0,0,0,0,,1,,1,110404,2,1,2,0,1,,440.0,,42,1.0,0.0,4.0,5.0,2.4,3,2,363.838600574975,540.0,36726.37861211898,6,1,1,2,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03730288832637387,15302.657755049575,3,2,3_1,3_1_1,3_3_1,3_1_0 -19178,2,45.0,0.0,2,111,350.0,1100.0,0.0,54,55,0.0,41.40690019277831,483.76097965157567,1490.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,3.0,1,,2,119746,2,1,2,0,1,,340.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,455.397546420939,350.0,41062.38662963451,1,1,0,1,104.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03628624934637079,20531.193314817254,5,3,5,5_1,5_3,5_0_1 -19179,1,42.0,270.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,215.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111480,2,2,0,1,1,456.0,0.0,296.0,12,1.0,0.0,2.0,1.0,1.0,2,2,320.82648955948,0.0,6060.0,0,4,2,3,74.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03547854785478548,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -19180,1,26.0,477.0,2,111,470.0,0.0,0.0,0,85,0.0,0.0,649.6218869606873,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117574,2,1,0,1,1,888.0,260.0,430.0,31,0.0,0.0,4.0,4.0,1.9,1,1,340.130529135557,470.0,14354.010739180178,0,6,2,3,117.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.032743461638711564,7554.742494305357,1,1,1_1,1_0_1,1_3_1,1_0_1 -19181,1,42.0,383.0,2,111,300.0,0.0,0.0,85,81,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111763,2,1,0,1,1,640.0,0.0,338.0,42,1.0,0.0,3.0,5.0,2.4,1,1,348.515460593048,300.0,1927.7141597290326,6,4,2,3,81.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15562473226952342,803.2142332204303,1,1,1_1,1_0_1,1_3_1,1_0_1 -19182,1,43.0,246.0,2,111,900.0,650.0,0.0,54,64,0.0,0.0,1243.9568048183376,1550.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,133404,1,1,0,1,1,640.0,360.0,321.0,43,2.0,3.0,3.0,5.0,2.6,2,2,348.515460593048,900.0,33627.74291010521,4,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04609289431477786,12933.74727311739,2,1,2_1,2_0_1,2_3_1,2_0_1 -19183,2,41.0,0.0,2,111,700.0,1900.0,0.0,42,62,0.0,248.44140115666985,967.5219593031513,2840.0,0.0,3445.940511610153,43,0,0,0,0,0,0,0,0,0,,1,,2,114377,2,1,3,0,1,,630.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,292.183250045333,700.0,47411.09493433049,1,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059901590628390004,22576.71187349071,6,3,6,6_1,6_3,6_0_1 -19184,2,29.0,0.0,2,111,560.0,0.0,0.0,84,62,0.0,517.5862524097289,774.0175674425211,1060.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,15.0,1,,2,130297,1,1,2,0,1,,156.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,393.225496738694,560.0,23383.240572969018,3,1,1,2,110.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.045331612472283164,11134.87646331858,2,1,2_0,2_1_0,2_3_0,2_0_1 -19185,2,85.0,0.0,1,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,3021.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,104874,1,2,3,0,2,,64.0,,11,0.0,0.0,7.0,1.0,1.0,2,2,408.813418093956,0.0,10784.269110057174,0,5,0,1,120.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.28013024982682244,10784.269110057174,2,1,2_0,2_1_0,2_3_0,2_1_0 -19186,1,50.0,327.0,1,111,240.0,790.0,0.0,81,63,0.0,41.40690019277831,331.72181461822333,1240.0,292.4555907123326,1432.7857916694845,71,2,2,1,1,1,2,2,2,0,,1,,1,115331,1,1,2,0,1,,180.0,420.0,43,2.0,6.0,4.0,2.0,1.5,3,3,364.666411158104,240.0,7211.52818829906,4,4,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.17194691161464784,4807.68545886604,1,1,1_1,1_1_1,1_3_1,1_1_0 -19187,2,62.0,0.0,1,111,1220.0,520.0,0.0,81,74,0.0,0.0,1686.2525576426353,1740.0,0.0,943.0995084406734,71,0,0,0,0,0,0,0,0,0,,1,,1,133213,2,1,2,0,1,,145.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,373.916608153817,1220.0,32678.737635006953,4,5,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05324563082681727,21785.825090004637,6,3,6,6_1,6_3,6_1_0 -19188,0,64.0,0.0,1,300,443.0,1591.0,0.0,0,74,0.0,0.0,612.3031828161372,2034.0,0.0,2885.521765248291,42,0,0,0,0,0,0,0,0,0,,1,,1,101439,2,1,1,0,1,,291.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,273.952584350078,443.0,53145.3777601232,0,5,0,1,240.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03827237825236007,53145.3777601232,10,5,10,10_1,10_0,10_1_0 -19189,2,79.0,0.0,2,300,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2721.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103662,2,2,5,0,1,,104.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,319.205596893672,0.0,21872.946845183902,0,5,0,1,100.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12440024744992803,21872.946845183902,6,3,6,6_1,6_0,6_0_1 -19190,2,64.0,0.0,1,300,750.0,2000.0,0.0,78,78,0.0,0.0,1036.630670681948,2940.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,1,,1,127027,2,1,2,0,1,,276.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,209.608126207907,750.0,38293.53083564809,5,5,0,1,160.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07677537003882402,25529.020557098727,7,4,7,7_1,7_0,7_1_0 -19191,2,81.0,0.0,2,300,587.0,1739.0,0.0,78,78,0.0,0.0,811.3362715870712,2326.0,0.0,3153.9423945737135,50,0,0,0,0,0,0,0,0,0,,1,,2,131112,2,2,4,0,2,,1991.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,291.660685772208,587.0,22156.015417079252,5,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1049827758382481,14770.676944719502,3,2,3_0,3_1_0,3_0_0,3_0_1 -19192,2,76.0,0.0,5,300,424.0,0.0,0.0,0,77,2867.682963874561,0.0,586.0418724921946,2476.0,227.0831645531053,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,118863,2,1,2,0,1,,310.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,335.356462144744,424.0,35107.08468994957,0,5,0,1,140.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07052707514357714,35107.08468994957,9,5,9,9_1,9_0,9_0_0 -19193,2,65.0,0.0,1,300,650.0,1500.0,0.0,0,74,0.0,0.0,898.4132479243549,2150.0,0.0,2720.4793512711735,44,0,0,0,0,0,0,0,0,0,,1,,1,108296,2,1,2,0,1,,350.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,241.329102380582,650.0,65980.3047140494,5,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032585481520854415,43986.86980936627,10,5,10,10_1,10_0,10_1_0 -19194,2,43.0,0.0,1,300,1800.0,0.0,0.0,47,55,0.0,0.0,2487.913609636675,1850.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,108079,1,1,1,0,2,,800.0,187.0,43,3.0,0.0,3.0,4.0,2.5,2,2,193.510865419297,1800.0,40293.475629550565,1,1,2,3,60.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045913140306100594,16117.390251820227,4,2,4_0,4_1_0,4_0_0,4_1_0 -19195,2,82.0,0.0,2,300,850.0,3500.0,0.0,0,78,0.0,0.0,1174.848093439541,4350.0,0.0,6347.785152966071,33,0,0,0,0,0,0,0,0,0,,1,,2,106602,2,1,2,0,1,,220.0,,21,1.0,8.0,5.0,2.0,1.5,2,2,282.621188171774,850.0,27716.453582350005,0,5,0,1,67.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1569464862117174,18477.63572156667,4,2,4_0,4_1_0,4_0_0,4_0_1 -19196,2,67.0,0.0,2,300,1080.0,0.0,0.0,77,77,0.0,0.0,1492.748165782005,1130.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100307,2,1,3,0,1,,360.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,268.890275240733,1080.0,26337.499752670832,5,5,0,1,90.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04290460410485278,17558.33316844722,4,2,4_0,4_1_0,4_0_0,4_0_1 -19197,2,42.0,0.0,2,300,1000.0,0.0,0.0,54,43,2987.1697540360015,0.0,1382.1742275759307,3100.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,116577,1,2,2,0,2,,368.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,279.38268688375,1000.0,41289.86482173904,1,1,1,2,140.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0750789573514868,19661.840391304304,5,3,5,5_1,5_0,5_0_1 -19198,2,40.0,0.0,2,300,400.0,0.0,0.0,0,54,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,119217,2,1,2,0,1,,350.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,376.352679067203,400.0,26438.45552761655,0,1,1,2,32.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015129476817667208,26438.45552761655,7,4,7,7_1,7_0,7_0_1 -19199,2,49.0,0.0,1,300,469.0,1819.0,0.0,56,11,0.0,0.0,648.2397127331114,2288.0,0.0,3299.0346266415095,70,0,0,0,0,0,0,0,0,1,2.0,1,,1,115518,2,1,2,0,1,,546.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,225.590491037125,469.0,15036.742384014222,1,1,0,1,110.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1521606170783644,6537.714080006184,1,1,1_0,1_1_0,1_0_0,1_1_0 -19200,1,55.0,134.0,1,300,1259.0,0.0,0.0,85,67,0.0,548.6414275543126,1740.1573525180966,1909.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,100416,2,1,1,0,1,,642.0,292.0,42,1.0,2.0,4.0,3.0,2.0,1,1,277.933487557922,1259.0,24473.40459296935,6,1,2,3,145.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07800304174060083,12236.702296484675,2,1,2_1,2_1_1,2_0_1,2_1_0 -19201,2,60.0,0.0,6,300,800.0,0.0,0.0,77,78,0.0,207.03450096389156,1105.7393820607444,1120.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,119092,2,1,2,0,1,,300.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,313.222619467186,800.0,11463.539564028655,6,7,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09770106289984279,7642.359709352437,1,1,1_0,1_1_0,1_0_0,1_0_0 -19202,2,69.0,0.0,8,300,1100.0,0.0,0.0,77,78,0.0,0.0,1520.3916503335236,1160.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125432,2,1,1,0,1,,412.0,,41,0.0,5.0,3.0,2.0,1.5,1,1,252.632663371291,1100.0,29711.075816356944,5,5,1,2,60.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03904267913992468,19807.383877571297,5,3,5,5_1,5_0,5_0_0 -19203,2,57.0,0.0,5,300,622.0,0.0,0.0,78,62,0.0,258.79312620486445,859.7123695522288,972.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,100362,2,1,2,0,1,,257.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,268.890275240733,622.0,24557.899921809945,5,4,0,1,84.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039579931634820445,16371.93328120663,4,2,4_0,4_1_0,4_0_0,4_0_0 -19204,2,70.0,0.0,2,300,750.0,0.0,0.0,77,74,2240.377315527001,0.0,1036.630670681948,2274.0,41.2878481005646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,131806,2,2,2,0,1,,270.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,267.890922207451,750.0,44881.664582620084,5,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05066656999349754,29921.10972174672,8,4,8,8_1,8_0,8_0_1 -19205,2,90.0,0.0,1,300,254.0,1423.0,0.0,77,78,0.0,0.0,351.07225380428633,1677.0,0.0,2580.8280779059196,50,2,2,1,2,1,2,2,2,0,,1,,1,116908,2,1,4,0,1,,323.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,219.282668938643,254.0,22122.43725851969,5,5,0,1,65.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07580539071725298,14748.291505679794,3,2,3_0,3_1_0,3_0_0,3_1_0 -19206,2,69.0,0.0,2,300,600.0,1700.0,0.0,75,72,0.0,0.0,829.3045365455583,2300.0,0.0,3083.2099314406632,60,0,0,0,0,0,0,0,0,0,,1,,2,129463,1,2,3,0,1,,380.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,279.01358548701,600.0,33398.29790456643,5,5,1,2,95.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06886578491431232,22265.53193637762,6,3,6,6_1,6_0,6_0_1 -19207,2,65.0,0.0,1,300,375.0,1102.0,0.0,78,77,0.0,0.0,518.315335340974,1570.0,159.99041138968784,1998.6454967338886,50,0,0,0,0,0,0,0,0,0,,1,,1,116827,1,2,5,0,1,,250.0,381.0,41,0.0,2.0,3.0,2.0,1.5,4,2,198.902119711103,375.0,22127.967779005015,6,5,2,3,56.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07095093483865308,14751.978519336677,3,2,3_0,3_1_0,3_0_0,3_1_0 -19208,2,44.0,0.0,6,300,400.0,1200.0,0.0,0,46,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,50,1,2,2,2,1,2,2,2,0,,1,,4,130990,1,1,2,0,1,,400.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,240.464920505751,400.0,44607.282502486385,0,1,0,1,90.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.035868582667209485,29738.188334990922,8,4,8,8_1,8_0,8_0_0 -19209,2,43.0,0.0,9,300,420.0,1320.0,0.0,0,53,0.0,0.0,580.5131755818909,1740.0,0.0,2394.0218291186325,50,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,131777,2,1,1,0,1,,132.0,,32,1.0,0.0,5.0,3.0,1.6,2,2,186.528958721338,420.0,32709.388868977632,0,1,1,2,168.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05319573554155448,20443.36804311102,5,3,5,5_1,5_0,5_0_0 -19210,2,54.0,0.0,1,300,1260.0,1630.0,0.0,62,64,0.0,0.0,1741.5395267456724,2970.0,137.62616033521533,2956.254228381342,33,2,2,2,2,1,2,2,2,0,,1,,1,129330,2,1,2,0,1,,290.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,236.109247721633,1260.0,48672.239949396186,1,1,0,1,100.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06102040923302206,32448.159966264124,8,4,8,8_1,8_0,8_1_0 -19211,2,52.0,0.0,2,300,0.0,0.0,2244.0,43,42,0.0,0.0,1146.4895233754062,2244.0,0.0,2565.443518320505,71,2,2,2,2,2,2,2,1,2,40.0,1,,2,132506,1,2,2,0,2,,489.0,,43,2.0,3.0,4.0,3.0,2.0,6,6,238.092676585519,0.0,68320.96067649059,1,1,1,2,100.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.032844971408198684,34160.480338245296,9,5,9,9_1,9_0,9_0_1 -19212,2,78.0,0.0,1,300,355.0,90.0,0.0,0,77,0.0,0.0,490.67185078945533,445.0,0.0,163.2287610762704,31,0,0,0,0,0,0,0,0,0,,1,,1,101388,2,3,3,0,1,,360.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,250.354403742255,355.0,21352.455419833423,0,5,0,1,65.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020840694489246313,21352.455419833423,6,3,6,6_1,6_0,6_1_0 -19213,2,33.0,0.0,1,300,542.0,720.0,0.0,43,37,0.0,124.22070057833493,749.1384313461543,1382.0,0.0,1305.830088610163,31,0,0,0,0,0,0,0,0,0,,1,,1,126899,2,1,1,0,2,,561.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,183.370735347115,542.0,59338.268676051026,1,1,1,2,160.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023290197554378198,28256.318417167153,8,4,8,8_1,8_0,8_1_0 -19214,0,60.0,0.0,1,300,602.0,3144.0,0.0,0,77,0.0,0.0,832.0688850007102,3746.0,0.0,5702.124720264379,50,0,0,0,0,0,0,0,0,0,,1,,1,103838,2,1,2,0,2,,570.0,,11,0.0,5.0,7.0,1.0,1.0,1,1,236.103149970643,602.0,17726.17020360327,0,5,0,1,150.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2113259636443373,17726.17020360327,4,2,4_0,4_1_0,4_0_0,4_1_0 -19215,2,33.0,0.0,1,300,2000.0,0.0,0.0,43,43,0.0,320.9034764940319,2764.3484551518613,2310.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108846,2,2,1,0,1,,852.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,192.121450112495,2000.0,74119.32300874885,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031165961941224608,30883.051253645353,8,4,8,8_1,8_0,8_1_0 -19216,2,70.0,0.0,2,120,571.0,0.0,0.0,0,77,1390.5275205037588,0.0,789.2214839458563,1562.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,112987,2,1,2,0,1,,285.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,273.100820922685,571.0,25383.904046236534,0,5,0,1,87.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06153505769462539,25383.904046236534,7,4,7,7_1,7_0,7_0_1 -19217,2,56.0,0.0,1,120,600.0,0.0,0.0,0,22,2987.1697540360015,0.0,829.3045365455583,2660.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,122528,2,1,3,0,1,,300.0,,12,1.0,1.0,6.0,1.0,1.0,2,2,236.103149970643,600.0,23540.83921246548,0,1,1,2,150.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11299512205119101,23540.83921246548,6,3,6,6_1,6_0,6_1_0 -19218,2,33.0,0.0,1,120,740.0,0.0,0.0,43,38,4480.754631054002,0.0,1022.8089284061887,3806.0,113.54158227655265,0.0,10,0,0,0,0,0,0,0,0,2,80.0,1,,1,102799,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,240.783026657717,740.0,64343.26028574319,1,1,1,2,200.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059151494392697276,30639.647755115806,8,4,8,8_1,8_0,8_1_0 -19219,2,31.0,0.0,8,120,2700.0,0.0,0.0,47,46,0.0,0.0,3731.8704144550125,2730.0,51.60981012570575,0.0,50,1,2,2,1,2,2,2,2,0,,1,2003.0,6,119892,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,262.040300169146,2700.0,58798.33878860698,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0464298831607293,27999.208946955707,7,4,7,7_1,7_0,7_0_0 -19220,2,46.0,0.0,1,120,1178.0,0.0,0.0,43,34,0.0,186.3310508675024,1628.2012400844462,1442.0,144.50746835197612,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,1,129289,2,1,4,0,1,,221.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,186.891933877094,1178.0,73608.85143614886,1,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019590035326809113,35051.83401721374,9,5,9,9_1,9_0,9_1_0 -19221,2,47.0,0.0,1,120,1200.0,0.0,0.0,11,11,746.7924385090004,103.51725048194578,1658.6090730911167,1950.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107791,2,1,1,0,1,,150.0,300.0,43,2.0,0.0,7.0,5.0,2.4,2,2,235.364467660153,1200.0,56713.97724093281,1,1,2,3,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034383058548618325,23630.82385038867,6,3,6,6_1,6_0,6_1_0 -19222,2,55.0,0.0,5,120,700.0,0.0,0.0,21,62,0.0,879.8966290965391,967.5219593031513,1670.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,129639,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,3.0,2.0,2,2,281.906606634115,700.0,73190.89004206132,1,1,0,1,160.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02281704729974297,36595.44502103066,9,5,9,9_1,9_0,9_0_0 -19223,2,44.0,0.0,1,120,410.0,0.0,0.0,34,34,448.0754631054002,465.827627168756,566.6914333061316,1220.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,1,121822,2,2,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,196.876792089134,410.0,55521.789998360444,1,1,0,1,110.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021973354966329912,26438.947618266877,7,4,7,7_1,7_0,7_1_0 -19224,2,73.0,0.0,1,120,980.0,0.0,0.0,71,71,0.0,124.22070057833493,1354.530743024412,1160.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,117534,2,1,1,0,1,,278.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,233.365736067924,980.0,29922.096606688556,5,5,0,1,190.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03876733690314677,19948.064404459037,5,3,5,5_1,5_0,5_1_0 -19225,2,64.0,0.0,6,111,351.0,0.0,0.0,0,77,0.0,0.0,485.1431538791516,351.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,120171,2,1,0,1,1,350.0,0.0,366.0,11,0.0,4.0,3.0,1.0,1.0,1,1,371.025588288703,351.0,14353.79805541304,0,5,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024453458147102217,14353.79805541304,3,2,3_0,3_0_0,3_3_0,3_0_0 -19226,2,40.0,0.0,1,111,1000.0,2000.0,0.0,67,33,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,121819,2,1,1,0,1,,389.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,295.618883848476,1000.0,63933.32648452392,1,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04692388406735254,26638.8860352183,7,4,7,7_1,7_3,7_1_0 -19227,2,73.0,0.0,1,111,342.0,1388.0,0.0,0,77,0.0,0.0,472.7035858309682,1730.0,0.0,2517.350226376259,50,0,0,0,0,0,0,0,0,0,,1,,1,105342,2,2,1,0,1,,133.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,313.816780653711,342.0,26941.71496115082,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06421269033892647,26941.71496115082,7,4,7,7_1,7_3,7_1_0 -19228,2,51.0,0.0,1,111,600.0,1800.0,0.0,63,62,0.0,0.0,829.3045365455583,2400.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,3,30.0,1,,1,106143,2,1,2,0,2,,0.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,249.686410316167,600.0,21904.610068126465,1,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10956597686677176,12169.227815625814,2,1,2_0,2_1_0,2_3_0,2_1_0 -19229,2,37.0,0.0,1,111,0.0,0.0,1200.0,65,55,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,20,2,2,1,2,1,2,2,2,2,20.0,1,,1,130348,1,1,3,0,1,,0.0,550.0,43,2.0,0.0,2.0,2.0,1.5,4,2,251.59211367197,0.0,28938.098629096105,4,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.04146782466189564,19292.065752730738,5,3,5,5_1,5_3,5_1_0 -19230,2,29.0,0.0,1,111,0.0,712.0,0.0,56,63,0.0,0.0,0.0,2343.0,0.0,1291.3208654033836,50,0,0,0,0,0,0,0,0,0,,1,,1,121998,2,1,1,0,1,,659.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,194.791835346488,0.0,34456.73079080595,1,1,1,2,70.0,9,7,3,0,1,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0679983256166943,16407.96704324093,4,2,4_0,4_1_0,4_3_0,4_1_0 -19231,2,86.0,0.0,2,111,0.0,0.0,2877.0,86,74,0.0,0.0,1469.8976643275596,2877.0,0.0,3289.1180936756205,50,0,0,0,0,0,0,0,0,0,,1,,2,122600,2,1,2,0,1,,360.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,366.085777285003,0.0,48863.97031351629,6,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05887773714540325,32575.98020901086,8,4,8,8_1,8_3,8_0_1 -19232,2,63.0,0.0,2,111,600.0,720.0,0.0,77,74,0.0,0.0,829.3045365455583,1320.0,0.0,1305.830088610163,71,0,0,0,0,0,0,0,0,0,,1,,2,104204,2,3,3,0,1,,260.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,337.679846202502,600.0,49426.10392394581,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026706535518784647,32950.73594929721,8,4,8,8_1,8_3,8_0_1 -19233,2,29.0,0.0,5,111,450.0,820.0,0.0,0,54,0.0,0.0,621.9784024091688,1270.0,0.0,1487.1953786949082,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,108809,2,1,2,0,1,,160.0,600.0,12,1.0,0.0,4.0,1.0,1.0,3,2,362.614082107541,450.0,19586.620850578616,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06484017890010274,19586.620850578616,5,3,5,5_1,5_3,5_0_0 -19234,2,36.0,0.0,8,111,496.0,560.0,0.0,0,54,0.0,0.0,685.5584168776616,1056.0,0.0,1015.6456244745714,20,1,2,2,1,2,2,2,2,3,30.0,2,2000.0,6,131649,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,346.045296755027,496.0,25870.893029743293,0,1,1,2,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04081807298982436,25870.893029743293,7,4,7,7_0,7_3,7_0_0 -19235,2,54.0,0.0,7,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,792.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,111273,2,1,0,1,1,,0.0,830.0,32,1.0,1.0,3.0,2.0,1.5,2,2,322.246355355773,0.0,60003.52478922253,0,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013199224591923544,40002.349859481685,9,5,9,9_0,9_3,9_0_0 -19236,1,65.0,22.0,7,111,171.0,0.0,0.0,0,75,0.0,0.0,236.3517929154841,171.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,130441,2,1,0,1,1,556.0,0.0,308.0,11,0.0,2.0,2.0,1.0,1.0,2,2,322.472903520734,171.0,14446.608876856462,0,5,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011836687866170644,14446.608876856462,3,2,3_1,3_0_1,3_3_1,3_0_0 -19237,2,62.0,0.0,1,111,664.0,2203.0,0.0,85,74,0.0,0.0,917.7636871104179,2867.0,0.0,3995.47734056693,60,0,0,0,0,0,0,0,0,0,,1,,1,101482,2,1,2,0,1,,440.0,,41,1.0,0.0,12.0,4.0,2.5,1,1,288.45670773012,664.0,89240.65093658332,6,5,0,1,250.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0321266146079253,35696.260374633326,9,5,9,9_1,9_3,9_1_0 -19238,2,46.0,0.0,2,111,330.0,1070.0,0.0,0,43,0.0,0.0,456.1174951000571,1400.0,0.0,1940.6086039067702,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,103437,2,1,3,0,1,,410.0,,32,1.0,0.0,4.0,2.0,1.5,1,1,337.679846202502,330.0,32680.486522070467,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04283901951871258,21786.991014713643,6,3,6,6_1,6_3,6_0_1 -19239,2,39.0,0.0,6,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,764.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,101014,2,2,0,0,1,,0.0,485.0,22,1.0,0.0,3.0,2.0,1.5,2,2,249.981980177454,0.0,28624.707223990856,0,1,2,3,63.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026690229319085525,19083.13814932724,5,3,5,5_0,5_3,5_0_0 -19240,1,77.0,31.0,5,111,135.0,645.0,0.0,0,78,0.0,0.0,186.5935207227506,780.0,0.0,1169.8061210466046,71,0,0,0,0,0,0,0,0,0,,2,,3,105360,2,3,0,0,1,,0.0,399.0,11,0.0,3.0,2.0,1.0,1.0,1,1,365.239871721414,135.0,14312.367048966551,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0544983228372641,14312.367048966551,3,2,3_1,3_0_1,3_3_1,3_0_0 -19241,2,60.0,0.0,2,111,300.0,960.0,0.0,74,43,0.0,0.0,414.65226827277917,1260.0,0.0,1741.106784813551,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,129153,2,1,1,0,1,,200.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,377.28248416478,300.0,62152.960872437005,5,1,1,2,125.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020272565977766197,41435.307248291334,9,5,9,9_1,9_3,9_0_1 -19242,2,67.0,0.0,5,111,484.0,825.0,0.0,0,75,0.0,0.0,668.9723261467504,2034.0,0.0,1496.2636431991452,71,0,0,0,0,0,0,0,0,0,,1,,3,124447,2,2,3,0,1,,250.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,380.811013397638,484.0,41883.63432788331,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04856312095738787,41883.63432788331,9,5,9,9_1,9_3,9_0_0 -19243,2,63.0,0.0,2,111,865.0,465.0,0.0,0,77,0.0,0.0,1195.58070685318,1330.0,0.0,843.3485988940637,42,0,0,0,0,0,0,0,0,0,,1,,2,107763,2,1,2,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,364.757320066329,865.0,29702.59756312351,0,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0447772285630408,29702.59756312351,8,4,8,8_1,8_3,8_0_1 -19244,2,35.0,0.0,2,111,1000.0,900.0,0.0,34,31,0.0,31.055175144583732,1382.1742275759307,1930.0,0.0,1632.287610762704,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,122932,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,332.785941259032,1000.0,211265.57554331064,4,1,1,2,93.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009135421116462672,100602.65502062411,10,5,10,10_1,10_3,10_0_1 -19245,2,48.0,0.0,8,111,632.0,700.0,0.0,0,37,0.0,0.0,873.5341118279881,1332.0,0.0,1269.5570305932142,20,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,115239,2,1,2,0,1,,284.0,,32,2.0,0.0,5.0,3.0,2.0,1,1,361.755341665893,632.0,87641.06667218205,0,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015198354499521251,43820.53333609102,10,5,10,10_1,10_3,10_0_0 -19246,2,42.0,0.0,1,111,350.0,930.0,0.0,0,37,0.0,0.0,483.76097965157567,1280.0,0.0,1686.6971977881274,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,127230,2,2,2,0,2,,500.0,,32,1.0,0.0,5.0,2.0,1.3,2,2,291.772775958592,350.0,35020.7031119311,0,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03654980872054281,26939.00239379315,7,4,7,7_1,7_3,7_1_0 -19247,2,74.0,0.0,2,111,270.0,1104.0,0.0,77,78,0.0,0.0,373.1870414455012,1374.0,0.0,2002.2728025355837,41,0,0,0,0,0,0,0,0,0,,1,,2,126336,1,1,2,0,1,,261.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,301.995821383808,270.0,26553.807766132166,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0517439913740905,17702.538510754777,4,2,4_0,4_1_0,4_3_0,4_0_1 -19248,2,40.0,0.0,1,111,1717.0,0.0,0.0,45,37,0.0,0.0,2373.193148747873,1773.0,96.33831223465073,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,119601,2,1,1,0,1,,362.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,239.165146685835,1717.0,100965.8497529827,1,1,1,2,110.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017560392987705457,48078.976072848905,10,5,10,10_1,10_3,10_1_0 -19249,2,61.0,0.0,2,111,310.0,450.0,0.0,0,77,0.0,0.0,428.47401054853844,760.0,0.0,816.143805381352,20,0,0,0,0,0,0,0,0,0,,1,,2,111105,2,1,1,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,377.997638540563,310.0,20360.73769903196,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03732674185160461,20360.73769903196,5,3,5,5_1,5_3,5_0_1 -19250,2,67.0,0.0,2,111,200.0,1000.0,0.0,77,75,0.0,103.51725048194578,276.4348455151861,1300.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,2,123610,2,2,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,335.185117962972,200.0,46759.857258105425,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02780162464620561,31173.238172070283,8,4,8,8_1,8_3,8_0_1 -19251,2,32.0,0.0,8,111,540.0,780.0,0.0,55,55,0.0,0.0,746.3740828910024,1320.0,0.0,1414.6492626610102,50,2,2,2,1,2,2,2,2,2,15.0,2,2000.0,6,107283,1,3,0,0,1,,0.0,409.0,43,2.0,0.0,3.0,4.0,2.1,3,3,332.324340194147,540.0,43991.65277339813,1,1,2,3,61.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.030005692370762838,20948.406082570535,5,3,5,5_0,5_3,5_0_0 -19252,1,44.0,134.0,7,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,909.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,5,123247,2,1,0,0,1,,483.0,525.0,32,1.0,1.0,3.0,2.0,1.5,2,2,328.018739116046,0.0,19905.669914161947,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04566538096531428,13270.446609441298,3,2,3_1,3_0_1,3_3_1,3_0_0 -19253,1,29.0,146.0,6,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,906.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,114469,1,2,0,0,1,,0.0,443.0,32,1.0,0.0,3.0,2.0,1.3,3,2,328.018739116046,0.0,21388.13596889069,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04235993268968312,16452.412283762067,4,2,4_1,4_0_1,4_3_1,4_0_0 -19254,2,34.0,0.0,8,111,500.0,0.0,0.0,0,42,0.0,0.0,691.0871137879653,500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,102455,2,2,0,0,1,,0.0,544.0,12,1.0,0.0,2.0,1.0,1.0,1,1,517.694703858984,500.0,27108.4244187457,0,1,2,3,48.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018444450783139055,27108.4244187457,7,4,7,7_0,7_3,7_0_0 -19255,2,35.0,0.0,1,111,1300.0,0.0,0.0,21,52,0.0,0.0,1796.8264958487098,1420.0,206.439240502823,0.0,10,2,2,1,1,1,2,1,2,2,5.0,1,,1,111563,1,2,3,0,2,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,258.346489705338,1300.0,30551.485826912813,1,1,1,2,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04647891785181595,14548.326584244196,3,2,3_0,3_1_0,3_3_0,3_1_0 -19256,1,23.0,370.0,1,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,815.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,,1,103950,2,2,1,0,2,,522.0,470.0,43,2.0,0.0,3.0,3.0,1.8,1,1,284.149211046814,0.0,15551.218490491588,4,1,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05240746893874019,8639.565828050881,1,1,1_1,1_1_1,1_3_1,1_1_0 -19257,2,70.0,0.0,7,111,200.0,2000.0,0.0,31,74,0.0,82.81380038555662,276.4348455151861,2280.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,5,125721,2,1,2,0,1,,400.0,,42,1.0,2.0,6.0,3.0,2.0,2,2,374.255415980075,200.0,144133.49899146648,1,5,0,1,195.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0158186682204599,72066.74949573324,10,5,10,10_1,10_3,10_0_0 -19258,2,49.0,0.0,6,111,1130.0,0.0,0.0,62,54,0.0,372.6621017350048,1561.8568771608016,1490.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,4,118568,2,1,2,0,1,,411.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,373.942170759377,1130.0,43402.68584780675,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034329672712530845,28935.123898537833,8,4,8,8_1,8_3,8_0_0 -19259,2,42.0,0.0,2,111,380.0,950.0,0.0,56,48,0.0,0.0,525.2262064788536,1330.0,0.0,1722.9702558050765,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,121295,2,2,3,0,1,,380.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,334.444032067737,380.0,52139.61107035549,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025508437303173235,24828.386223978803,7,4,7,7_1,7_3,7_0_1 -19260,2,42.0,0.0,1,111,0.0,0.0,0.0,52,65,0.0,0.0,0.0,3678.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,1,123363,2,2,5,0,1,,0.0,780.0,43,2.0,0.0,6.0,4.0,2.3,2,2,302.516201782034,0.0,57060.935756471976,1,1,2,3,120.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06445740770353268,24809.102502813905,7,4,7,7_1,7_3,7_1_0 -19261,2,84.0,0.0,1,111,148.0,611.0,0.0,0,78,0.0,0.0,204.56178568123772,759.0,0.0,1108.1419224177912,50,2,2,1,2,1,2,2,2,0,,1,,1,120894,2,2,2,0,1,,126.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,324.108531043742,148.0,9255.992515448163,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.08200093061151857,9255.992515448163,1,1,1_0,1_1_0,1_3_0,1_1_0 -19262,2,52.0,0.0,5,111,774.0,1647.0,0.0,56,38,0.0,0.0,1069.8028521437702,3070.0,0.0,2987.0863276957484,71,0,0,0,0,0,0,0,0,4,120.0,1,,3,131275,2,1,2,0,1,,416.0,,43,4.0,0.0,6.0,5.0,3.0,2,2,357.199407651253,774.0,111364.23231329308,1,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02756719941608709,37121.41077109769,9,5,9,9_1,9_3,9_0_0 -19263,2,82.0,0.0,6,111,1385.0,0.0,0.0,0,74,0.0,0.0,1914.311305192664,1455.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,116434,2,1,3,0,1,,150.0,,11,0.0,5.0,4.0,1.0,1.0,3,3,468.361503888333,1385.0,32788.16414159587,0,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04437576906461046,32788.16414159587,8,4,8,8_1,8_3,8_0_0 -19264,2,88.0,0.0,2,111,453.0,0.0,0.0,0,77,3584.6037048432017,0.0,626.1249250918966,2923.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,112387,2,2,3,0,1,,233.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,408.272675643468,453.0,32152.899885612933,0,5,0,1,120.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09090937397245215,32152.899885612933,8,4,8,8_1,8_3,8_0_1 -19265,2,72.0,0.0,2,111,280.0,270.0,0.0,0,78,0.0,0.0,387.00878372126056,550.0,0.0,489.6862832288112,50,1,2,2,1,1,2,2,2,0,,2,,2,128180,1,3,0,1,1,468.0,0.0,328.0,11,0.0,0.0,2.0,1.0,1.0,2,1,330.879592015447,280.0,17137.067979496016,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03209417157346043,17137.067979496016,4,2,4_0,4_0_0,4_3_0,4_0_1 -19266,2,32.0,0.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,189.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,115375,2,2,0,1,1,828.0,0.0,484.0,31,0.0,0.0,4.0,4.0,1.9,3,3,314.733423267166,0.0,13862.45871852108,0,6,2,3,72.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013633945019254384,7296.030904484779,1,1,1_0,1_0_0,1_3_0,1_0_0 -19267,2,57.0,0.0,1,111,286.0,880.0,0.0,64,54,0.0,0.0,395.3018290867161,1166.0,0.0,1596.014552745755,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,109519,2,1,2,0,1,,332.0,,43,2.0,5.0,4.0,2.0,1.5,1,1,260.362265721093,286.0,63075.102366074934,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018485899447816596,42050.06824404996,9,5,9,9_1,9_3,9_1_0 -19268,2,66.0,0.0,1,111,0.0,0.0,0.0,72,31,7169.2074096864035,0.0,0.0,6116.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,104455,2,1,2,0,1,,997.0,,42,2.0,1.0,16.0,3.0,2.0,2,2,298.572289463704,0.0,62318.3268679073,6,1,0,1,320.0,9,7,3,1,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0981412741225185,31159.16343395365,8,4,8,8_1,8_3,8_1_0 -19269,2,61.0,0.0,2,111,0.0,0.0,200.0,0,75,0.0,0.0,102.18266696750501,200.0,0.0,228.6491549305263,50,1,2,2,1,1,2,2,2,0,,1,,2,105060,1,3,2,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,392.337208686308,0.0,23816.5403169367,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.008397525305460661,23816.5403169367,6,3,6,6_1,6_3,6_0_1 -19270,2,66.0,0.0,5,111,323.0,922.0,0.0,75,74,0.0,0.0,446.44227550702556,1245.0,0.0,1672.1879745813478,20,0,0,0,0,0,0,0,0,0,,1,,3,125044,2,1,1,0,1,,180.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,363.381190271731,323.0,53135.5381603944,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023430646288776745,35423.6921069296,9,5,9,9_1,9_3,9_0_0 -19271,2,42.0,0.0,7,111,0.0,0.0,1500.0,46,52,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,50,0,0,0,0,0,0,0,0,2,3.0,1,,5,122621,2,1,2,0,1,,900.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,359.763521455343,0.0,25098.431765290043,4,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05976469024150066,10912.361637082628,2,1,2_0,2_1_0,2_3_0,2_0_0 -19272,2,27.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,2363.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,75.0,1,,2,106155,1,2,4,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,311.498349176264,0.0,20092.60099897633,0,1,1,2,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11760548074987351,20092.60099897633,5,3,5,5_1,5_3,5_0_1 -19273,2,81.0,0.0,2,111,65.0,60.0,0.0,75,75,0.0,0.0,89.84132479243549,125.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,1,,2,111528,2,1,1,0,1,,230.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,367.770700151514,65.0,35341.14181165743,5,5,0,1,104.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.003536954201031734,23560.76120777162,6,3,6,6_1,6_3,6_0_1 -19274,2,54.0,0.0,5,111,300.0,900.0,0.0,0,65,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,116401,2,2,0,0,1,,0.0,,12,1.0,5.0,2.0,1.0,1.0,2,2,144.954453915158,300.0,37771.20867681406,0,1,1,2,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031770230343108476,37771.20867681406,9,5,9,9_0,9_3,9_0_0 -19275,2,42.0,0.0,5,111,600.0,1900.0,0.0,64,43,0.0,0.0,829.3045365455583,2500.0,0.0,3445.940511610153,31,0,0,0,0,0,0,0,0,2,45.0,8,,3,104099,1,3,0,0,2,,0.0,535.0,43,2.0,0.0,3.0,5.0,2.4,2,2,121.717903652449,600.0,43318.61405186992,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05771191102758939,18049.422521612465,4,2,4_0,4_0_0,4_3_0,4_0_0 -19276,2,43.0,0.0,1,111,870.0,2000.0,0.0,37,37,0.0,0.0,1202.4915779910596,2870.0,0.0,3627.3058016948976,44,2,2,2,2,1,2,2,2,2,15.0,1,,1,115204,1,1,1,0,1,,336.0,,43,2.0,0.0,7.0,4.0,2.1,4,2,105.643874914696,870.0,122855.6822029015,1,1,1,2,200.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.023360742853228963,58502.70581090548,10,5,10,10_1,10_3,10_1_0 -19277,2,26.0,0.0,1,111,800.0,0.0,0.0,55,56,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,2,2,2,2,1,1,2,2,3,30.0,2,,1,110612,1,3,0,0,1,,0.0,632.0,43,2.0,0.0,3.0,2.0,1.5,2,2,126.974330344694,800.0,12434.991036815125,4,1,2,3,58.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.0643345859785113,8289.994024543417,1,1,1_0,1_0_0,1_3_0,1_1_0 -19278,1,35.0,60.0,9,111,500.0,0.0,0.0,85,67,0.0,0.0,691.0871137879653,660.0,275.25232067043066,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,123369,1,1,0,1,1,560.0,500.0,250.0,42,1.0,0.0,3.0,3.0,1.8,2,2,106.211651230075,500.0,18733.43840123657,6,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0352311191284796,10407.46577846476,2,1,2_1,2_0_1,2_3_1,2_0_0 -19279,1,42.0,286.0,2,111,400.0,0.0,0.0,0,63,0.0,0.0,552.8696910303722,520.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109134,1,1,0,1,1,780.0,500.0,458.0,32,1.0,0.0,4.0,3.0,1.6,2,2,116.308299918187,400.0,4875.874078051573,0,4,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10664754496855157,3047.421298782233,1,1,1_1,1_0_1,1_3_1,1_0_1 -19280,2,71.0,0.0,2,111,689.0,1494.0,0.0,78,78,0.0,0.0,952.3180427998161,2183.0,0.0,2709.5974338660885,50,0,0,0,0,0,0,0,0,0,,1,,2,105511,2,3,3,0,1,,305.0,,41,0.0,4.0,5.0,2.0,1.5,4,3,128.580738246105,689.0,29537.285366541797,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07390658866954583,19691.52357769453,5,3,5,5_1,5_3,5_0_1 -19281,2,79.0,0.0,1,111,210.0,1400.0,0.0,0,78,0.0,0.0,290.25658779094545,1610.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,1,,1,104793,1,1,2,0,2,,100.0,380.0,11,0.0,2.0,3.0,1.0,1.0,1,1,110.640822160695,210.0,17754.92190244739,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0906790809244885,17754.92190244739,4,2,4_0,4_1_0,4_3_0,4_1_0 -19282,1,32.0,24.0,1,111,900.0,1200.0,0.0,0,52,0.0,0.0,1243.9568048183376,2100.0,0.0,2176.3834810169387,71,2,2,2,2,1,2,2,2,2,60.0,1,,1,100751,2,1,2,0,1,,500.0,,32,1.0,0.0,7.0,3.0,1.6,3,2,105.432910024372,900.0,39302.462457789305,0,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05343176657837641,24564.039036118313,7,4,7,7_1,7_3,7_1_0 -19283,2,40.0,0.0,2,111,800.0,0.0,0.0,0,48,0.0,0.0,1105.7393820607444,840.0,68.81308016760767,0.0,70,2,2,1,2,1,2,2,2,0,,1,,2,109529,1,2,3,0,2,,400.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,145.725174770673,800.0,21020.715708894033,0,4,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03996058039282598,21020.715708894033,5,3,5,5_1,5_3,5_0_1 -19284,2,49.0,0.0,1,111,370.0,900.0,0.0,68,46,0.0,207.03450096389156,511.40446420309434,1470.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,106355,2,2,1,0,1,,280.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,94.6241167680363,370.0,54684.83593556002,1,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026881309504745175,21873.93437422401,6,3,6,6_1,6_3,6_1_0 -19287,2,62.0,0.0,1,111,480.0,2500.0,0.0,78,52,0.0,0.0,663.4436292364467,2980.0,0.0,4534.132252118622,50,2,2,1,2,2,2,2,1,1,10.0,1,,1,105965,1,1,2,0,2,,478.0,,42,1.0,0.0,8.0,2.0,1.5,2,2,111.642240973376,480.0,38006.92978490653,5,1,0,1,133.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07840675415943305,25337.95318993769,7,4,7,7_1,7_3,7_1_0 -19288,2,53.0,0.0,2,111,700.0,350.0,0.0,67,52,0.0,0.0,967.5219593031513,1050.0,0.0,634.7785152966071,70,0,0,0,0,0,0,0,0,1,5.0,2,,2,101280,2,1,0,1,1,,1800.0,582.0,43,3.0,0.0,3.0,5.0,2.5999999999999996,1,1,104.462844867269,700.0,26500.134817532373,1,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039622439932091386,10192.35954520476,2,1,2_0,2_0_0,2_3_0,2_0_1 -19289,1,39.0,457.0,2,111,336.0,108.0,0.0,85,63,0.0,0.0,464.41054046551267,444.0,0.0,195.8745132915245,71,0,0,0,0,0,0,0,0,0,,2,,2,128791,2,1,0,1,1,,1380.0,572.0,42,1.0,0.0,3.0,5.0,2.4,1,1,90.051083346149,336.0,16987.180643166408,6,4,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026137356711904515,7077.99193465267,1,1,1_1,1_0_1,1_3_1,1_0_1 -19290,1,36.0,309.0,2,111,220.0,0.0,0.0,85,56,698.9977224444243,0.0,304.0783300667047,688.0,0.0,0.0,33,2,1,2,2,2,2,2,1,3,20.0,2,,2,123171,2,2,0,1,1,,0.0,410.0,42,1.0,0.0,3.0,4.0,2.1,2,2,101.919569530682,220.0,11678.834862385322,6,1,2,3,94.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05890998615074867,5561.349934469201,1,1,1_1,1_0_1,1_3_1,1_0_1 -19291,2,28.0,0.0,1,111,35.0,65.0,0.0,56,63,0.0,0.0,48.37609796515757,100.0,0.0,117.88743855508417,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,116843,2,1,1,0,1,,260.0,610.0,43,2.0,0.0,5.0,2.0,1.5,2,2,111.127760090373,35.0,20999.460739422873,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.004762027046354919,13999.640492948582,3,2,3_0,3_1_0,3_3_0,3_1_0 -19292,1,79.0,17.0,2,111,264.0,0.0,0.0,0,78,0.0,0.0,364.89399608004567,649.0,0.0,0.0,50,2,1,1,1,2,2,2,2,0,,2,,2,130860,2,1,0,1,1,350.0,168.0,357.0,11,0.0,0.0,3.0,1.0,1.0,2,2,150.895817249741,264.0,13843.39833764289,0,5,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04688155207058103,13843.39833764289,3,2,3_1,3_0_1,3_3_1,3_0_1 -19293,1,56.0,270.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,669.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,102368,2,2,0,1,1,36.0,0.0,278.0,11,0.0,8.0,3.0,1.0,1.0,1,1,133.197539360101,0.0,6088.197330753095,0,6,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10988474316045967,6088.197330753095,1,1,1_1,1_0_1,1_3_1,1_0_1 -19294,2,73.0,0.0,1,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1243.0,0.0,0.0,44,2,2,2,1,2,2,2,2,0,,1,,1,121183,1,1,2,0,2,,107.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,121.082185978789,0.0,22683.391020047864,0,5,0,1,60.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.054797803331143084,22683.391020047864,6,3,6,6_1,6_3,6_1_0 -19295,2,35.0,0.0,1,111,1500.0,1500.0,0.0,37,31,0.0,62.110350289167464,2073.261341363896,3060.0,0.0,2720.4793512711735,71,2,2,2,2,2,2,2,1,0,,1,,1,123714,2,1,1,0,1,,1000.0,,43,3.0,0.0,6.0,6.0,2.9,2,2,119.81124905218,1500.0,59249.57727661537,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05164593809191144,20430.888716074267,5,3,5,5_1,5_3,5_1_0 -19296,1,51.0,270.0,2,111,150.0,250.0,0.0,0,67,0.0,0.0,207.32613413638958,400.0,0.0,453.4132252118622,50,2,2,1,1,2,2,2,2,0,,2,,2,116953,2,2,0,0,1,,160.0,309.0,12,1.0,0.0,2.0,1.0,1.0,1,1,261.143858100312,150.0,13627.450160771705,0,4,2,3,35.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.029352519751013238,13627.450160771705,3,2,3_1,3_0_1,3_3_1,3_0_1 -19297,0,54.0,0.0,1,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,1209.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,103102,1,3,3,0,2,,0.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,121.423818361539,0.0,55769.34405712085,1,1,5,0,80.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02167857665246522,22307.73762284834,6,3,6,6_1,6_3,6_1_0 -19298,1,37.0,472.0,5,111,360.0,0.0,0.0,0,85,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,114271,1,1,0,1,1,780.0,0.0,427.0,31,0.0,0.0,3.0,6.0,2.5,1,1,131.384187804487,360.0,17368.471624915204,0,6,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.020727212375070313,6947.388649966082,1,1,1_1,1_0_1,1_3_1,1_0_0 -19299,2,25.0,0.0,1,111,920.0,0.0,0.0,54,52,0.0,0.0,1271.600289369856,920.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,10.0,2,,1,131156,2,1,0,0,1,,0.0,620.0,43,2.0,0.0,3.0,2.0,1.5,3,3,122.280351688715,920.0,36425.602986846294,1,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02525696006548533,24283.735324564197,7,4,7,7_0,7_3,7_1_0 -19300,0,79.0,0.0,7,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,4620.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,108326,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,167.61442956615,0.0,12840.450603443762,0,5,5,0,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.3598004573734299,12840.450603443762,2,1,2_0,2_0_0,2_3_0,2_0_0 -19301,1,34.0,360.0,5,111,340.0,0.0,0.0,42,22,0.0,0.0,469.9392373758164,340.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,3,124213,1,1,0,1,2,,0.0,720.0,43,2.0,0.0,4.0,3.0,1.8,2,2,130.947500900759,340.0,17345.863309126133,4,4,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.019601215225829475,9636.590727292296,1,1,1_1,1_0_1,1_3_1,1_0_0 -19302,1,43.0,270.0,2,111,240.0,180.0,0.0,0,85,1529.4309140664327,0.0,331.72181461822333,1444.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,8,,2,123226,1,3,0,0,2,,140.0,350.0,11,0.0,1.0,3.0,1.0,1.0,1,1,157.971536929731,240.0,9902.114902985624,0,7,2,3,139.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14582743324505495,9902.114902985624,2,1,2_1,2_0_1,2_3_1,2_0_1 -19303,2,76.0,0.0,5,111,650.0,950.0,0.0,0,86,0.0,0.0,898.4132479243549,1600.0,0.0,1722.9702558050765,60,0,0,0,0,0,0,0,0,0,,2,,3,110157,2,1,0,1,1,,412.0,,21,1.0,0.0,6.0,2.0,1.5,1,1,124.645532763224,650.0,61307.796480302815,0,5,0,1,218.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02609782265643903,40871.86432020188,9,5,9,9_0,9_3,9_0_0 -19305,2,44.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,3313.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,1,118693,2,1,2,0,1,,522.0,,43,2.0,0.0,7.0,3.0,1.8,4,2,391.907851476452,0.0,122417.40779565068,1,1,0,1,250.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027063144528679573,68009.67099758371,10,5,10,10_1,10_3,10_1_0 -19306,2,58.0,0.0,1,111,1600.0,3600.0,0.0,77,34,0.0,0.0,2211.478764121489,5200.0,0.0,6529.150443050816,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,114314,1,1,3,0,2,,532.0,,42,1.0,0.0,9.0,5.0,3.0,2,2,385.164476360765,1600.0,73068.15016856689,5,1,0,1,370.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07116643829087906,24356.050056188964,7,4,7,7_1,7_3,7_1_0 -19307,2,54.0,0.0,2,111,1500.0,1860.0,0.0,0,42,0.0,0.0,2073.261341363896,3360.0,0.0,3373.3943955762547,42,0,0,0,0,0,0,0,0,3,35.0,1,,2,106509,2,1,3,0,2,,530.0,,32,1.0,2.0,7.0,3.0,2.0,1,1,476.667417662586,1500.0,41410.758222184886,0,1,1,2,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08113833564631413,20705.379111092443,5,3,5,5_1,5_3,5_0_1 -19308,2,90.0,0.0,2,111,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,8,,2,129355,2,1,0,1,1,,0.0,,11,0.0,5.0,4.0,1.0,1.0,3,3,576.413107829227,500.0,49372.88269264769,0,5,0,1,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010127016546968948,49372.88269264769,10,5,10,10_0,10_3,10_0_1 -19309,2,65.0,0.0,5,111,600.0,0.0,0.0,75,72,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108253,2,2,0,1,1,,229.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,532.283237376757,600.0,71969.68597461273,5,5,0,1,200.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008336843378914419,47979.79064974182,10,5,10,10_0,10_3,10_0_0 -19310,2,43.0,0.0,1,111,0.0,0.0,0.0,56,62,0.0,0.0,0.0,3083.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,103917,1,1,2,0,2,,571.0,1024.0,43,2.0,1.0,7.0,7.0,3.6,3,2,540.728379617523,0.0,45802.28399636368,1,1,2,3,125.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06731105375104797,12722.856665656578,2,1,2_0,2_1_0,2_3_0,2_1_0 -19311,2,67.0,0.0,1,111,428.0,803.0,0.0,0,77,0.0,0.0,591.5705694024982,1231.0,0.0,1456.3632793805016,20,0,0,0,0,0,0,0,0,0,,1,,1,113312,2,1,2,0,1,,240.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,430.755295897702,428.0,10083.296639225406,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12208308889884696,10083.296639225406,2,1,2_0,2_1_0,2_3_0,2_1_0 -19312,2,55.0,0.0,5,111,0.0,0.0,880.0,0,54,0.0,0.0,449.603734657022,880.0,0.0,1006.0562816943158,71,2,2,2,2,1,2,2,2,1,20.0,1,,3,126204,1,3,2,0,1,,440.0,571.0,32,2.0,1.0,4.0,2.0,1.5,1,1,96.1879084784331,0.0,32207.160723796816,0,1,2,3,83.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.027323116357468816,21471.440482531212,6,3,6,6_1,6_3,6_0_0 -19313,1,27.0,330.0,6,111,320.0,750.0,0.0,0,55,0.0,0.0,442.2957528242978,1070.0,0.0,1360.2396756355868,60,0,0,0,0,0,0,0,0,0,,2,,4,131270,1,3,0,0,1,,320.0,308.0,32,1.0,0.0,2.0,2.0,1.3,2,2,140.90965409167,320.0,8348.585740027194,0,4,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12816542026632102,6421.98903079015,1,1,1_1,1_0_1,1_3_1,1_0_0 -19314,2,44.0,0.0,2,111,848.0,200.0,0.0,46,65,0.0,0.0,1172.083744984389,7656.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,2,60.0,1,,2,129770,1,1,2,0,1,,350.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,421.017694356733,848.0,64176.054312779605,1,1,1,2,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11929683247097717,22920.01939742129,6,3,6,6_1,6_3,6_0_1 -19316,2,67.0,0.0,1,111,600.0,0.0,0.0,78,78,0.0,0.0,829.3045365455583,604.0,6.881308016760767,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,120029,2,1,2,0,2,,224.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,113.624421364015,600.0,25762.51861858154,5,5,0,1,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.02344491270214386,17175.012412387692,4,2,4_0,4_1_0,4_3_0,4_1_0 -19317,2,42.0,0.0,1,111,200.0,900.0,0.0,81,38,0.0,0.0,276.4348455151861,1100.0,0.0,1632.287610762704,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,126239,2,2,2,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,104.095824627824,200.0,31576.934959314312,4,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034835553273847145,17542.741644063506,4,2,4_0,4_1_0,4_3_0,4_1_0 -19318,2,90.0,0.0,2,111,300.0,0.0,0.0,0,78,0.0,0.0,414.65226827277917,589.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,132259,1,2,0,1,1,,98.0,502.0,11,0.0,0.0,3.0,1.0,1.0,2,2,122.082685728616,300.0,20015.561207306717,0,5,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02942710393676019,20015.561207306717,5,3,5,5_0,5_3,5_0_1 -19319,1,34.0,425.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,757.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116730,2,3,3,0,1,,999.0,730.0,32,1.0,0.0,5.0,3.0,1.6,2,2,105.32124391765,0.0,27706.619049803267,0,4,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.027321991132850804,17316.63690612704,4,2,4_1,4_1_1,4_3_1,4_1_0 -19320,2,54.0,0.0,1,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,528.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,1,115459,2,1,0,1,1,30.0,272.0,540.0,42,1.0,2.0,3.0,2.0,1.5,1,1,171.960756622496,0.0,17982.547807747145,6,1,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02936180154474717,11988.365205164764,2,1,2_0,2_0_0,2_3_0,2_1_0 -19321,1,41.0,340.0,1,111,1300.0,800.0,0.0,81,67,0.0,0.0,1796.8264958487098,2100.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,105494,2,1,1,0,1,,120.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,3,3,113.711120755238,1300.0,23818.297093986406,4,1,1,2,122.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0881675122160687,8821.591516291262,1,1,1_1,1_1_1,1_3_1,1_1_0 -19322,1,48.0,100.0,2,111,250.0,0.0,0.0,0,62,0.0,0.0,345.54355689398267,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,129363,2,1,0,1,1,,300.0,357.0,12,1.0,2.0,2.0,1.0,1.0,3,3,132.891037447894,250.0,13079.86237895247,0,4,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019113350947964777,13079.86237895247,2,1,2_1,2_0_1,2_3_1,2_0_1 -19323,2,46.0,0.0,7,111,1780.0,0.0,0.0,84,43,0.0,310.55175144583734,2460.2701250851565,2080.0,0.0,0.0,50,2,2,2,2,2,2,2,1,2,5.0,1,,5,104015,1,2,3,0,1,,900.0,,42,1.0,0.0,4.0,5.0,2.4,1,1,403.111467083041,1780.0,57194.348564698,3,1,1,2,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.036367229493786665,23830.978568624167,6,3,6,6_1,6_3,6_0_0 -19324,1,55.0,271.0,2,111,264.0,1107.0,0.0,0,85,0.0,0.0,364.89399608004567,1371.0,0.0,2007.713761238126,44,0,0,0,0,0,0,0,0,0,,2,,2,123728,1,3,0,0,2,,0.0,417.0,21,0.0,2.0,4.0,2.0,1.5,2,2,664.497418327472,264.0,9329.973190724144,0,7,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14694575986167333,6219.982127149429,1,1,1_1,1_0_1,1_3_1,1_0_1 -19325,2,47.0,0.0,1,111,465.0,1167.0,0.0,52,52,0.0,0.0,642.7110158228077,1632.0,0.0,2116.532935288973,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,118785,2,1,3,0,1,,250.0,,43,2.0,2.0,5.0,4.0,2.3,2,2,371.06762675923,465.0,66791.09366728172,1,1,0,1,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024434395521800708,29039.605942296403,8,4,8,8_1,8_3,8_1_0 -19326,2,47.0,0.0,1,111,1050.0,751.0,0.0,0,46,0.0,0.0,1451.2829389547271,1801.0,0.0,1362.053328536434,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,117227,2,2,4,0,1,,120.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,449.517066127867,1050.0,24388.960698391806,0,1,0,1,112.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07384488508027146,24388.960698391806,7,4,7,7_1,7_3,7_1_0 -19327,2,29.0,0.0,1,111,100.0,1500.0,0.0,0,56,0.0,0.0,138.21742275759306,1600.0,0.0,2720.4793512711735,50,2,2,2,1,2,2,1,2,2,30.0,1,,1,124285,2,2,5,0,1,,200.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,472.453116789313,100.0,15130.660937953897,0,1,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.10574554585296037,15130.660937953897,3,2,3_0,3_1_0,3_3_0,3_1_0 -19328,2,38.0,0.0,1,111,700.0,800.0,0.0,84,90,0.0,0.0,967.5219593031513,1500.0,0.0,1450.922320677959,60,2,2,2,2,1,2,2,2,2,30.0,1,,1,127271,2,2,1,0,1,,500.0,,42,1.0,0.0,5.0,5.0,2.4,1,1,368.591419104046,700.0,41189.06737086984,3,1,0,1,83.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.0364174305403391,17162.1114045291,4,2,4_0,4_1_0,4_3_0,4_1_0 -19329,1,63.0,147.0,2,111,283.0,660.0,0.0,0,77,0.0,0.0,391.15530640398833,943.0,0.0,1197.0109145593162,71,2,2,2,2,1,2,2,2,0,,2,,2,126334,1,3,0,0,1,,0.0,279.0,11,0.0,2.0,2.0,1.0,1.0,2,2,157.971536929731,283.0,11409.496760973434,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08265044635671953,11409.496760973434,2,1,2_1,2_0_1,2_3_1,2_0_1 -19330,1,50.0,258.0,2,111,298.0,380.0,0.0,0,56,0.0,0.0,411.88791981762733,678.0,0.0,689.1881023220305,50,0,0,0,0,0,0,0,0,0,,2,,2,117903,2,1,0,0,1,,0.0,319.0,32,1.0,2.0,3.0,2.0,1.5,2,2,117.877051359758,298.0,15581.792355521047,0,1,2,3,62.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04351232416210234,10387.861570347364,2,1,2_1,2_0_1,2_3_1,2_0_1 -19331,2,56.0,0.0,2,111,1770.0,0.0,0.0,56,47,0.0,0.0,2446.448382809397,1770.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,109498,1,1,3,0,2,,454.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,112.992994357987,1770.0,45046.0,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03929316698485992,21450.47619047619,6,3,6,6_1,6_3,6_0_1 -19332,1,37.0,287.0,2,111,290.0,93.0,0.0,0,67,0.0,0.0,400.8305259970199,383.0,0.0,168.66971977881275,50,0,0,0,0,0,0,0,0,0,,2,,2,116613,2,1,0,1,2,594.0,0.0,263.0,32,1.0,0.0,3.0,2.0,1.3,2,2,104.845917589835,290.0,11835.715596330276,0,4,2,3,46.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03235968259652598,9104.39661256175,1,1,1_1,1_0_1,1_3_1,1_0_1 -19333,1,40.0,377.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1682.0,0.0,0.0,70,2,2,2,2,2,2,2,1,0,,1,,1,107365,1,3,4,0,1,,232.0,372.0,32,1.0,0.0,4.0,4.0,2.1,2,2,94.7418507092736,0.0,13790.949481124257,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.12196404622482028,6567.11880053536,1,1,1_1,1_1_1,1_3_1,1_1_0 -19334,1,69.0,250.0,2,111,800.0,0.0,0.0,0,78,0.0,3105.517514458373,1105.7393820607444,3980.0,309.6588607542345,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,122315,2,3,0,0,1,,0.0,250.0,11,0.0,0.0,2.0,1.0,1.0,2,2,254.652352487111,800.0,68493.65773985868,0,5,2,3,25.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05810756982954801,68493.65773985868,10,5,10,10_0,10_3,10_0_1 -19335,2,59.0,0.0,1,111,400.0,1100.0,0.0,0,67,0.0,0.0,552.8696910303722,1500.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,1,20.0,1,,1,108574,1,1,2,0,1,,300.0,,32,2.0,1.0,5.0,3.0,2.0,2,2,259.275424235024,400.0,33767.9142547678,0,1,0,1,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044420866171448845,16883.9571273839,4,2,4_0,4_1_0,4_3_0,4_1_0 -19336,2,60.0,0.0,1,111,500.0,1099.0,0.0,65,52,0.0,0.0,691.0871137879653,1599.0,0.0,1993.2045380313464,50,0,0,0,0,0,0,0,0,3,20.0,1,,1,128435,2,1,2,0,1,,258.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,273.660390273402,500.0,45632.579962914584,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035040753805712956,30421.719975276388,8,4,8,8_1,8_3,8_1_0 -19337,2,42.0,0.0,2,111,646.0,1699.0,0.0,0,42,0.0,0.0,892.8845510140511,2345.0,0.0,3081.3962785398157,44,0,0,0,0,0,0,0,0,2,5.0,1,,2,100220,1,2,2,0,2,,420.0,240.0,32,1.0,0.0,4.0,2.0,1.5,2,2,355.706873002804,646.0,34755.7522557372,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06747084576806725,23170.5015038248,6,3,6,6_1,6_3,6_0_1 -19338,2,45.0,0.0,2,111,645.0,1219.0,0.0,46,48,0.0,0.0,891.5023767864752,1864.0,0.0,2210.8428861330403,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,115029,2,2,5,0,1,,468.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,402.908379625688,645.0,51733.8415892553,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03603057385143302,25866.92079462765,7,4,7,7_1,7_3,7_0_1 -19339,2,48.0,0.0,2,111,600.0,800.0,0.0,52,46,0.0,517.5862524097289,829.3045365455583,1900.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,1,30.0,1,,2,107100,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,5.0,3.0,2,2,401.199802876034,600.0,50938.47286159951,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0372999011015176,16979.490953866505,4,2,4_0,4_1_0,4_3_0,4_0_1 -19340,1,58.0,231.0,2,111,490.0,300.0,0.0,56,52,0.0,0.0,677.265371512206,790.0,0.0,544.0958702542347,31,2,2,2,2,2,2,2,1,0,,2,,2,110925,1,3,0,1,1,1080.0,0.0,461.0,43,2.0,2.0,5.0,5.0,2.4,2,2,280.549716552793,490.0,32513.496382821624,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.024297602161833118,13547.29015950901,3,2,3_1,3_0_1,3_3_1,3_0_1 -19341,2,63.0,0.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,276.4348455151861,200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,133001,1,1,2,0,2,,0.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,396.009856913205,200.0,7384.8719942606485,0,5,0,1,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027082392241251488,7384.8719942606485,1,1,1_0,1_1_0,1_3_0,1_0_1 -19342,2,43.0,0.0,1,111,290.0,350.0,0.0,0,37,0.0,0.0,400.8305259970199,640.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,128754,2,1,1,0,1,,216.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,345.667235742668,290.0,48830.16396775605,0,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013106652691615171,48830.16396775605,10,5,10,10_1,10_3,10_1_0 -19343,2,73.0,0.0,2,111,220.0,494.0,0.0,0,77,0.0,0.0,304.0783300667047,714.0,0.0,895.9445330186397,10,0,0,0,0,0,0,0,0,0,,2,,2,123927,2,1,0,1,1,336.0,0.0,318.0,11,0.0,2.0,2.0,1.0,1.0,2,2,527.710469555727,220.0,16654.059924025387,0,5,2,3,45.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.042872428900653424,16654.059924025387,4,2,4_0,4_0_0,4_3_0,4_0_1 -19344,2,81.0,0.0,2,111,356.0,870.0,0.0,86,75,0.0,0.0,492.0540250170313,1226.0,0.0,1577.8780237372805,50,0,0,0,0,0,0,0,0,0,,1,,2,118329,1,2,1,0,1,,282.0,326.0,41,0.0,3.0,2.0,2.0,1.5,1,1,294.151775317306,356.0,26436.57950965061,5,5,2,3,62.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046375137129690006,17624.386339767076,4,2,4_0,4_1_0,4_3_0,4_0_1 -19345,2,58.0,0.0,2,111,400.0,1220.0,0.0,0,34,0.0,0.0,552.8696910303722,1620.0,0.0,2212.656539033888,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,104944,2,1,3,0,1,,220.0,,12,1.0,1.0,5.0,1.0,1.0,5,3,381.536054796329,400.0,129942.48661995964,0,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012467054018582726,129942.48661995964,10,5,10,10_1,10_3,10_0_1 -19346,1,42.0,221.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,731.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,112222,2,1,0,1,1,519.0,0.0,570.0,42,1.0,0.0,3.0,4.0,2.1,2,2,302.751750273605,0.0,21189.82260223006,6,1,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03449769324274891,10090.391715347647,2,1,2_1,2_0_1,2_3_1,2_0_1 -19347,2,54.0,0.0,2,111,400.0,0.0,0.0,0,64,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,106872,1,2,0,1,2,360.0,0.0,447.0,12,1.0,3.0,1.0,1.0,1.0,4,3,462.102096664791,400.0,19851.38401198403,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020149728591141305,19851.38401198403,5,3,5,5_0,5_3,5_0_1 -19348,2,28.0,0.0,1,111,0.0,0.0,0.0,63,55,0.0,0.0,0.0,760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,126875,2,1,3,0,1,,623.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,276.537182846957,0.0,29200.02542480597,4,1,0,1,90.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026027374597912704,13904.774011812366,3,2,3_0,3_1_0,3_3_0,3_1_0 -19349,2,73.0,0.0,7,111,300.0,710.0,0.0,0,78,0.0,0.0,414.65226827277917,1010.0,0.0,1287.6935596016888,41,2,2,1,2,2,2,2,1,0,,2,,5,110974,2,2,0,0,1,,0.0,346.0,11,0.0,2.0,2.0,1.0,1.0,2,2,488.817521016964,300.0,19927.41044120343,0,5,2,3,35.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0506839563012988,19927.41044120343,5,3,5,5_0,5_3,5_0_0 -19350,2,40.0,0.0,8,111,0.0,0.0,850.0,0,38,0.0,0.0,434.2763346118963,850.0,0.0,971.7589084547367,33,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,110869,2,1,0,0,1,,0.0,436.0,32,1.0,0.0,3.0,3.0,1.6,1,1,349.356775991891,0.0,39162.52624357499,0,1,2,3,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02170442209762837,24476.578902234367,7,4,7,7_0,7_3,7_0_0 -19351,1,54.0,178.0,2,111,430.0,240.0,0.0,0,77,0.0,0.0,594.3349178576501,670.0,0.0,435.27669620338776,31,2,2,2,2,1,2,2,1,0,,2,,2,113784,2,3,0,1,1,681.0,120.0,161.0,11,0.0,0.0,2.0,1.0,1.0,2,2,364.383419077455,430.0,9395.362840208516,0,7,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07131177490374926,9395.362840208516,1,1,1_1,1_0_1,1_3_1,1_0_1 -19352,2,58.0,0.0,9,120,515.0,0.0,0.0,77,55,0.0,207.03450096389156,711.8197272016042,2615.0,3268.621307961364,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,107527,2,1,1,0,1,,450.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,199.496580158418,515.0,56513.321390947334,5,1,1,2,140.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04627227591013413,37675.54759396489,9,5,9,9_1,9_0,9_0_0 -19353,2,62.0,0.0,9,120,3400.0,0.0,0.0,78,37,0.0,46.5827627168756,4699.392373758164,3505.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,120939,2,2,1,0,1,,535.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,294.477249444869,3400.0,71258.57074615754,6,1,0,1,162.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04918706568625641,47505.71383077169,10,5,10,10_1,10_0,10_0_0 -19354,2,45.0,0.0,9,120,924.0,0.0,0.0,55,48,0.0,0.0,1277.1289862801598,2624.0,2924.555907123326,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,118679,2,1,1,0,1,,750.0,750.0,43,2.0,2.0,6.0,5.0,2.8,2,2,262.752895966299,924.0,50581.55874504895,1,1,2,3,145.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0518766140289586,18064.842408946053,4,2,4_0,4_1_0,4_0_0,4_0_0 -19355,2,90.0,0.0,1,120,750.0,0.0,0.0,0,71,2389.735803228801,207.03450096389156,1036.630670681948,2650.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,122581,2,1,2,0,2,,500.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,216.526924964161,750.0,15023.22524790794,0,5,0,1,130.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17639354774162266,15023.22524790794,3,2,3_0,3_1_0,3_0_0,3_1_0 -19356,2,43.0,0.0,1,120,450.0,0.0,0.0,0,64,746.7924385090004,310.55175144583734,621.9784024091688,1310.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116300,2,1,1,0,1,,200.0,,32,1.0,1.0,5.0,2.0,1.3,2,2,248.600381178928,450.0,21509.68185804204,0,1,1,2,110.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060902806868350645,16545.9091215708,4,2,4_0,4_1_0,4_0_0,4_1_0 -19357,2,71.0,0.0,8,120,650.0,0.0,0.0,0,72,2165.698071676101,0.0,898.4132479243549,2190.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128748,2,1,2,0,1,,200.0,,11,0.0,6.0,3.0,1.0,1.0,3,2,273.825901545967,650.0,17270.04330593237,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1268091782518994,17270.04330593237,4,2,4_0,4_1_0,4_0_0,4_0_0 -19358,2,78.0,0.0,1,120,300.0,1700.0,0.0,77,78,0.0,0.0,414.65226827277917,2000.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,0,,1,,1,119977,2,2,2,0,1,,190.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,233.425494937377,300.0,36994.65435728727,5,5,0,1,85.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0540618647408997,24663.10290485818,7,4,7,7_1,7_0,7_1_0 -19359,2,40.0,0.0,1,120,700.0,1300.0,0.0,52,63,0.0,931.655254337512,967.5219593031513,2900.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,2,6.0,1,,1,130663,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,212.437495171336,700.0,40805.9770944339,1,1,1,2,140.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07106802009148731,19431.417664016142,5,3,5,5_1,5_0,5_1_0 -19360,2,65.0,0.0,1,120,180.0,0.0,0.0,85,75,0.0,0.0,248.7913609636675,230.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111984,1,2,2,0,2,,400.0,,41,1.0,0.0,6.0,4.0,2.5,5,3,189.635209694854,180.0,34894.79708441462,6,5,0,1,130.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006591240506245185,13957.918833765847,3,2,3_0,3_1_0,3_0_0,3_1_0 -19361,2,61.0,0.0,1,120,808.0,946.0,0.0,78,37,0.0,0.0,1116.796775881352,1754.0,0.0,1715.7156442016867,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,100705,2,2,2,0,1,,163.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,201.306371925819,808.0,71065.29065015403,5,1,0,1,135.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024681528548651598,47376.86043343602,10,5,10,10_1,10_0,10_1_0 -19362,2,68.0,0.0,1,120,744.0,300.0,0.0,0,75,0.0,1081.7552675363333,1028.3376253164924,2089.0,0.0,544.0958702542347,20,0,0,0,0,0,0,0,0,0,,1,,1,132425,2,1,2,0,1,,270.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,221.877859133965,744.0,13426.122880211224,0,5,0,1,90.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15559220026795517,13426.122880211224,3,2,3_0,3_1_0,3_0_0,3_1_0 -19363,2,53.0,0.0,9,120,720.0,1158.0,0.0,54,46,0.0,207.03450096389156,995.16544385467,2078.0,0.0,2100.210059181346,42,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,112904,2,1,1,0,1,,370.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,250.504135155118,720.0,91725.84620227871,1,1,1,2,256.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022654465301061206,45862.92310113936,10,5,10,10_1,10_0,10_0_0 -19364,2,66.0,0.0,1,120,3000.0,0.0,0.0,75,75,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,108005,2,3,3,0,1,,240.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,248.077835005532,3000.0,53702.10310366587,5,5,0,1,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05586373394369374,35801.402069110576,9,5,9,9_1,9_0,9_1_0 -19365,2,72.0,0.0,1,120,500.0,728.0,0.0,77,78,0.0,331.2552015422265,691.0871137879653,1548.0,0.0,1320.3393118169429,70,0,0,0,0,0,0,0,0,0,,1,,1,109739,2,1,2,0,1,,292.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,191.070922099233,500.0,26703.897464983846,5,5,0,1,60.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05796906620203488,17802.59830998923,4,2,4_0,4_1_0,4_0_0,4_1_0 -19366,2,73.0,0.0,1,120,280.0,2000.0,0.0,78,78,0.0,0.0,387.00878372126056,2280.0,0.0,3627.3058016948976,33,0,0,0,0,0,0,0,0,0,,1,,1,119078,2,1,1,0,1,,204.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,210.28097817498,280.0,30163.817255528487,5,5,0,1,180.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07558725013765016,20109.21150368566,5,3,5,5_1,5_0,5_1_0 -19367,2,34.0,0.0,7,120,2330.0,0.0,0.0,38,48,0.0,0.0,3220.465950251918,2330.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,116544,2,1,1,0,1,,526.0,,43,2.0,0.0,7.0,3.0,1.8,3,2,252.788157747608,2330.0,108364.56216474617,1,1,1,2,156.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021501494155051457,60202.53453597009,10,5,10,10_1,10_0,10_0_0 -19368,2,60.0,0.0,1,120,256.0,1870.0,0.0,77,75,0.0,0.0,353.8366022594382,2188.0,106.66027425979189,3391.5309245847293,71,0,0,0,0,0,0,0,0,0,,1,,1,124689,2,3,3,0,2,,217.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,198.791201753235,256.0,32101.7287107803,7,7,0,1,90.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0681583231766965,21401.152473853534,6,3,6,6_1,6_0,6_1_0 -19369,2,88.0,0.0,2,120,0.0,0.0,0.0,0,86,0.0,3105.517514458373,0.0,4099.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,104114,2,1,3,0,2,,80.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,271.716811296568,0.0,13915.372658215883,0,6,0,1,40.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.29456631170994024,13915.372658215883,3,2,3_0,3_1_0,3_0_0,3_0_1 -19370,2,43.0,0.0,1,120,620.0,0.0,0.0,67,56,298.71697540360015,621.1035028916747,856.9480210970769,1420.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109249,1,1,2,0,2,,336.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,193.128092541145,620.0,7832.611520466916,4,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.18129330125584364,3916.305760233458,1,1,1_0,1_1_0,1_0_0,1_1_0 -19371,2,56.0,0.0,8,112,700.0,2591.0,0.0,0,77,0.0,0.0,967.5219593031513,3291.0,0.0,4699.17466609574,71,2,2,2,2,1,2,2,2,0,,1,2003.0,6,126771,2,1,1,0,1,,586.0,,31,2.0,2.0,7.0,3.0,2.0,1,1,262.304285048254,700.0,20491.861496831225,0,6,0,1,219.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.16060034372713802,10245.930748415612,2,1,2_0,2_1_0,2_0_0,2_0_0 -19372,2,63.0,0.0,1,112,628.0,0.0,0.0,43,74,0.0,400.6117593651302,868.0054149176844,1015.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,107822,2,2,2,0,1,,400.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,223.668163995629,628.0,50480.81453100911,1,5,0,1,120.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02010664862343912,33653.876354006075,9,5,9,9_1,9_0,9_1_0 -19373,2,62.0,0.0,5,112,770.0,975.0,0.0,46,86,0.0,103.51725048194578,1064.2741552334664,1845.0,0.0,1768.3115783262626,71,0,0,0,0,0,0,0,0,0,,1,,3,133290,2,1,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,254.137166609294,770.0,141432.20847931816,5,5,0,1,100.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013045119070383441,94288.1389862121,10,5,10,10_1,10_0,10_0_0 -19374,2,73.0,0.0,5,112,838.0,2085.0,0.0,75,75,0.0,124.22070057833493,1158.2620027086298,3118.0,129.02452531426437,3781.466298266931,44,0,0,0,0,0,0,0,0,0,,1,,3,114640,2,1,2,0,1,,732.0,,41,0.0,2.0,6.0,3.0,2.0,3,2,253.96148238014,838.0,48455.55450128413,5,5,0,1,138.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06434762809116898,24227.777250642066,7,4,7,7_1,7_0,7_0_0 -19375,2,36.0,0.0,9,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1536.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,7.0,1,2007.0,6,116406,2,1,1,0,1,,189.0,550.0,12,1.0,0.0,2.0,1.0,1.0,2,2,288.22960422199,0.0,43694.96506018953,0,1,2,3,46.0,8,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03515279158329043,43694.96506018953,10,5,10,10_1,10_0,10_0_0 -19376,2,76.0,0.0,1,112,298.0,1485.0,0.0,71,71,0.0,0.0,411.88791981762733,1803.0,34.40654008380383,2693.2745577584615,31,0,0,0,0,0,0,0,0,0,,5,,1,101750,1,2,2,0,2,,221.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,207.63267898712,298.0,22974.101135654248,5,5,0,1,137.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07847967541162541,15316.067423769498,3,2,3_0,3_1_0,3_0_0,3_1_0 -19377,2,82.0,0.0,2,112,265.0,1317.0,0.0,77,72,0.0,414.0690019277831,366.2761703076216,1982.0,0.0,2388.5808704160904,71,2,2,2,2,1,2,2,2,0,,1,,2,124584,1,2,2,0,1,,350.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,243.999449159262,265.0,16865.3327510142,5,5,0,1,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.11751917553365865,11243.5551673428,2,1,2_0,2_1_0,2_0_0,2_0_1 -19378,0,33.0,0.0,1,112,544.0,0.0,0.0,85,21,0.0,0.0,751.9027798013062,724.0,309.6588607542345,0.0,31,2,2,2,1,1,2,2,2,2,20.0,1,,1,103320,1,3,3,0,2,,500.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,215.229851245856,544.0,79439.71865846866,6,1,5,0,120.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.009113828853204506,52959.812438979105,10,5,10,10_1,10_0,10_1_0 -19379,2,45.0,0.0,1,112,515.0,0.0,0.0,0,62,0.0,207.03450096389156,711.8197272016042,715.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,119173,2,1,1,0,1,,46.0,,12,1.0,1.0,7.0,1.0,1.0,3,2,286.017506607929,515.0,23817.671749940884,0,1,1,2,150.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03001972684428211,23817.671749940884,6,3,6,6_1,6_0,6_1_0 -19380,2,64.0,0.0,5,112,749.0,1891.0,0.0,0,75,0.0,167.69794578075215,1035.248496454372,2802.0,0.0,3429.617635502526,33,2,1,2,2,1,2,2,2,0,,1,,3,116201,2,2,5,0,1,,204.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,265.138553036408,749.0,16423.083298691447,0,5,0,1,72.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.170613516904177,16423.083298691447,4,2,4_0,4_1_0,4_0_0,4_0_0 -19381,2,41.0,0.0,8,112,650.0,1340.0,0.0,43,43,0.0,0.0,898.4132479243549,1990.0,0.0,2430.2948871355816,70,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,102384,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,240.539538755814,650.0,62042.04926482991,1,1,1,2,108.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032075020467257215,29543.832983252338,8,4,8,8_1,8_0,8_0_0 -19382,2,50.0,0.0,7,112,1200.0,0.0,0.0,34,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,2,2,1,1,2,2,2,2,2,11.0,1,,5,104195,2,1,2,0,1,,500.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,231.988202971037,1200.0,103139.59591222792,1,1,0,1,167.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.011634716903692383,51569.79795611396,10,5,10,10_1,10_0,10_0_0 -19383,1,64.0,136.0,1,112,1000.0,0.0,0.0,86,78,0.0,0.0,1382.1742275759307,1132.0,227.0831645531053,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,105516,2,1,3,0,1,,936.0,336.0,41,2.0,3.0,4.0,4.0,2.5,2,2,175.700698442233,1000.0,31991.116822113087,6,5,2,3,121.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03538482280235782,12796.446728845234,2,1,2_1,2_1_1,2_0_1,2_1_0 -19384,2,68.0,0.0,5,112,550.0,1920.0,0.0,77,78,0.0,0.0,760.1958251667618,2470.0,0.0,3482.213569627102,41,2,2,1,2,2,2,2,1,0,,1,,3,114099,1,3,2,0,1,,950.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,257.421679581445,550.0,26229.368383508856,5,5,0,1,160.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.09416925195777717,17486.245589005903,4,2,4_0,4_1_0,4_0_0,4_0_0 -19385,2,45.0,0.0,1,112,450.0,0.0,0.0,0,56,0.0,165.62760077111324,621.9784024091688,636.0,44.72850210894499,0.0,60,2,2,2,2,1,2,2,2,2,20.0,1,,1,109222,1,2,3,0,2,,600.0,,32,1.0,3.0,4.0,2.0,1.5,1,1,214.037308895772,450.0,14834.397086600966,0,1,0,1,81.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.042873329889117046,9889.598057733978,2,1,2_0,2_1_0,2_0_0,2_1_0 -19386,1,65.0,48.0,1,112,590.0,2000.0,0.0,86,86,0.0,0.0,815.482794269799,2590.0,0.0,3627.3058016948976,31,0,0,0,0,0,0,0,0,0,,1,,1,132961,2,1,2,0,1,,530.0,499.0,41,2.0,3.0,4.0,5.0,3.0,2,2,195.079023019326,590.0,37015.265116649374,5,5,2,3,90.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06997113195969044,12338.421705549792,2,1,2_1,2_1_1,2_0_1,2_1_0 -19387,0,80.0,0.0,1,112,1161.6,0.0,0.0,0,11,0.0,0.0,1605.5335827522008,4292.0,5384.6235231153,0.0,60,2,2,1,1,1,2,2,2,0,,5,,1,109473,1,1,3,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,216.526924964161,1161.6,13585.570707442415,0,5,0,1,85.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.31592342290403497,13585.570707442415,3,2,3_0,3_1_0,3_0_0,3_1_0 -19388,1,78.0,286.0,1,112,1390.0,961.0,0.0,0,78,0.0,0.0,1921.2221763305436,2415.0,110.10092826817227,1742.9204377143983,50,2,2,2,1,1,2,2,2,0,,1,,1,112909,1,3,4,0,2,,374.0,420.0,21,2.0,0.0,5.0,5.0,2.8,1,1,237.960465980827,1390.0,45145.09295747667,0,5,2,3,120.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.05349418600765206,16123.247484813097,4,2,4_1,4_1_1,4_0_1,4_1_0 -19389,2,54.0,0.0,1,112,350.0,0.0,0.0,78,52,0.0,1235.9959707544326,483.76097965157567,1714.0,292.4555907123326,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,121198,1,2,1,0,2,,300.0,208.0,42,1.0,1.0,6.0,2.0,1.5,2,2,287.524084691783,350.0,30918.8341096879,5,1,2,3,90.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05543546674235516,20612.556073125266,5,3,5,5_1,5_0,5_1_0 -19390,2,83.0,0.0,1,112,252.0,678.0,0.0,0,86,0.0,0.0,348.3079053491345,930.0,0.0,1229.6566667745703,50,0,0,0,0,0,0,0,0,0,,5,,1,109786,1,1,3,0,2,,57.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,223.604968559086,252.0,14982.801869246177,0,5,0,1,60.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06207116720330699,14982.801869246177,3,2,3_0,3_1_0,3_0_0,3_1_0 -19391,2,60.0,0.0,6,112,1100.0,0.0,0.0,52,48,2240.377315527001,0.0,1520.3916503335236,2650.0,86.01635020950958,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,4,133188,2,1,2,0,1,,360.0,,43,2.0,1.0,6.0,2.0,1.5,1,1,257.421679581445,1100.0,56016.31921981533,1,1,0,1,180.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047307642431860884,37344.212813210215,9,5,9,9_1,9_0,9_0_0 -19392,2,62.0,0.0,1,112,658.0,2025.0,0.0,71,11,0.0,0.0,909.4706417449623,2683.0,0.0,3672.647124216084,71,2,2,2,1,1,2,2,2,0,,5,,1,126284,1,3,4,0,2,,658.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,210.28097817498,658.0,22907.995543990848,5,1,0,1,154.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.11712067932123359,15271.997029327233,3,2,3_0,3_1_0,3_0_0,3_1_0 -19393,2,55.0,0.0,1,112,4000.0,1200.0,0.0,54,31,0.0,0.0,5528.696910303723,5200.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,1,100913,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,3.0,1.8,3,3,207.491195033481,4000.0,42151.10908200606,1,1,0,1,200.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12336567443298506,23417.2828233367,6,3,6,6_1,6_0,6_1_0 -19394,1,36.0,120.0,9,112,1000.0,0.0,0.0,53,53,0.0,558.9931526025072,1382.1742275759307,1540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,121208,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,229.692018142283,1000.0,59080.45975475699,1,1,1,2,120.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02606614786669807,28133.552264169994,8,4,8,8_1,8_0,8_0_0 -19395,2,29.0,0.0,2,112,450.0,751.0,0.0,0,62,0.0,0.0,621.9784024091688,1201.0,0.0,1362.053328536434,50,2,2,2,2,1,2,2,2,2,15.0,1,,2,109962,2,1,1,0,1,,176.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,258.317362014082,450.0,23032.40312762787,0,1,1,2,75.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.05214392928714305,23032.40312762787,6,3,6,6_1,6_0,6_0_1 -19396,2,29.0,0.0,1,112,890.0,1247.0,0.0,21,63,0.0,0.0,1230.1350625425782,2137.0,0.0,2261.625167356769,70,2,2,2,2,2,2,2,1,2,55.0,1,,1,104633,2,1,1,0,1,,250.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,212.437495171336,890.0,59233.79527552186,1,1,1,2,150.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03607737761964929,28206.56917881993,8,4,8,8_1,8_0,8_1_0 -19397,2,35.0,0.0,9,112,531.0,1179.0,0.0,42,42,0.0,0.0,733.9345148428191,1710.0,0.0,2138.296770099142,70,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,110334,2,1,1,0,1,,612.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,220.599813715147,531.0,57431.40871606773,1,1,1,2,100.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029774648371485777,27348.289864794155,7,4,7,7_1,7_0,7_0_0 -19398,2,41.0,0.0,9,112,380.0,870.0,0.0,0,54,0.0,0.0,525.2262064788536,1250.0,0.0,1577.8780237372805,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,104070,2,1,1,0,1,,170.0,,22,1.0,0.0,4.0,2.0,1.3,2,2,274.500985040288,380.0,31285.320645693464,0,1,1,2,190.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03995484061538832,24065.631265918048,6,3,6,6_1,6_0,6_0_0 -19399,2,39.0,0.0,9,112,765.0,1940.0,0.0,52,43,0.0,0.0,1057.3632840955868,2705.0,0.0,3518.4866276440507,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,108547,1,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,230.557487472152,765.0,53169.4402456299,1,1,1,2,98.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050875088913924185,25318.78106934757,7,4,7,7_1,7_0,7_0_0 -19400,2,43.0,0.0,9,112,1200.0,1000.0,0.0,46,37,0.0,0.0,1658.6090730911167,2200.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,123687,2,1,1,0,1,,606.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,253.918351472399,1200.0,53040.100096873786,1,1,1,2,138.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04147805143621268,35360.06673124919,9,5,9,9_1,9_0,9_0_0 -19401,1,49.0,173.0,9,112,678.0,835.0,0.0,85,85,0.0,0.0,937.1141262964809,1513.0,0.0,1514.4001722076198,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,101197,2,1,1,0,1,,350.0,442.0,41,1.0,1.0,4.0,5.0,2.5999999999999996,2,2,226.089429329302,678.0,34721.9271742228,6,7,2,3,81.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.043574770271485264,13354.58737470108,3,2,3_1,3_1_1,3_0_1,3_0_0 -19402,2,59.0,0.0,2,111,452.0,1162.0,0.0,0,45,0.0,0.0,624.7427508643207,1614.0,0.0,2107.4646707847355,44,0,0,0,0,0,0,0,0,1,15.0,1,,2,105875,2,1,3,0,1,,205.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,384.106191888548,452.0,32477.21459520803,0,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04969638006573826,32477.21459520803,8,4,8,8_1,8_3,8_0_1 -19403,2,64.0,0.0,2,111,1021.0,0.0,0.0,75,75,0.0,331.2552015422265,1411.199886355025,1392.0,87.73667721369978,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,114792,1,2,5,0,1,,180.0,589.0,41,0.0,2.0,3.0,2.0,1.5,1,1,345.767608979136,1021.0,33220.11167314549,7,5,2,3,71.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04190232753266951,22146.741115430326,6,3,6,6_1,6_3,6_0_1 -19404,2,54.0,0.0,1,111,740.0,0.0,0.0,85,62,0.0,672.8621281326475,1022.8089284061887,1690.0,516.0981012570575,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,105603,2,1,1,0,1,,600.0,,42,1.0,0.0,4.0,4.0,2.5,2,2,247.068928584709,740.0,33447.732223486084,6,1,0,1,111.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050526594410287944,13379.092889394433,3,2,3_0,3_1_0,3_3_0,3_1_0 -19405,1,36.0,326.0,5,111,0.0,0.0,592.0,67,63,0.0,0.0,302.46069422381487,592.0,0.0,676.8014985943578,71,1,2,2,2,1,2,2,2,2,25.0,8,,3,132246,1,3,0,1,1,98.0,1440.0,459.0,43,2.0,1.0,4.0,5.0,2.5999999999999996,1,1,253.88487030516,0.0,38276.734150663324,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.015466314280361373,14721.820827178204,3,2,3_1,3_0_1,3_3_1,3_0_0 -19406,2,35.0,0.0,2,111,491.0,1425.0,0.0,55,37,0.0,0.0,678.6475457397819,1916.0,0.0,2584.4553837076146,70,0,0,0,0,0,0,0,0,2,30.0,1,,2,116944,2,2,3,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,310.869869904111,491.0,64169.498980875294,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02985842231012328,30556.90427660728,8,4,8,8_1,8_3,8_0_1 -19407,2,63.0,0.0,5,111,501.0,875.0,0.0,75,75,0.0,93.1655254337512,692.4692880155412,1466.0,0.0,1586.9462882415178,50,2,2,2,2,1,2,2,2,0,,1,,3,111043,1,2,3,0,1,,222.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,341.180052635418,501.0,57740.64611725549,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.025389393756054517,38493.76407817033,9,5,9,9_1,9_3,9_0_0 -19409,2,34.0,0.0,5,111,400.0,0.0,0.0,0,37,0.0,0.0,552.8696910303722,400.0,0.0,0.0,70,2,2,2,2,1,2,2,1,2,45.0,2,,3,100177,1,1,0,0,1,,0.0,517.0,12,1.0,0.0,2.0,1.0,1.0,1,1,493.521021154106,400.0,25316.68956249211,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.015799854045396963,25316.68956249211,7,4,7,7_0,7_3,7_0_0 -19410,2,80.0,0.0,6,111,1065.0,0.0,0.0,75,74,0.0,0.0,1472.0155523683661,1065.0,0.0,0.0,50,2,2,1,2,1,2,2,1,0,,2,,4,121200,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,375.969139827226,1065.0,62123.28616246138,5,5,0,1,92.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017143330074569314,41415.52410830759,9,5,9,9_0,9_3,9_0_0 -19411,2,56.0,0.0,2,111,1600.0,0.0,0.0,77,63,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,128879,1,1,0,0,1,,0.0,511.0,42,1.0,0.0,3.0,2.0,1.5,1,1,442.248104238247,1600.0,30824.31285183086,5,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0519070776270351,20549.54190122057,5,3,5,5_0,5_3,5_0_1 -19412,2,77.0,0.0,5,111,600.0,0.0,0.0,77,75,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118286,2,1,0,1,1,69.0,670.0,598.0,41,0.0,3.0,7.0,2.0,1.5,2,2,339.49144242737,600.0,35851.64669126538,5,5,2,3,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016735632958978685,23901.09779417692,6,3,6,6_0,6_3,6_0_0 -19413,2,52.0,0.0,2,111,1350.0,0.0,0.0,52,46,0.0,310.55175144583734,1865.9352072275062,1755.0,180.63433543997013,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,2,113857,2,1,3,0,1,,350.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,336.808489803134,1350.0,49181.60509731831,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0356840732734787,24590.802548659154,7,4,7,7_1,7_3,7_0_1 -19414,2,63.0,0.0,5,111,448.0,1566.0,0.0,77,75,0.0,0.0,619.2140539540169,2014.0,0.0,2840.180442727105,31,0,0,0,0,0,0,0,0,0,,1,,3,104563,2,2,4,0,1,,522.0,,41,0.0,1.0,5.0,3.0,2.0,2,2,319.343561554658,448.0,26010.55963942518,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07743009100608911,13005.27981971259,2,1,2_0,2_1_0,2_3_0,2_0_0 -19415,2,66.0,0.0,7,111,1250.0,0.0,0.0,0,56,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,5,124254,2,1,0,0,1,,160.0,366.0,11,0.0,3.0,2.0,1.0,1.0,2,2,373.633876028529,1250.0,18631.6969579305,0,5,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06708997053904653,18631.6969579305,4,2,4_0,4_0_0,4_3_0,4_0_0 -19416,2,46.0,0.0,8,111,1600.0,0.0,0.0,53,53,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,104755,1,2,2,0,1,,190.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,339.680195232608,1600.0,60829.052245765895,1,1,1,2,105.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026303220926993328,40552.701497177266,9,5,9,9_1,9_3,9_0_0 -19417,1,36.0,81.0,5,111,687.0,0.0,0.0,68,47,0.0,455.47590212056144,949.5536943446643,1127.0,0.0,0.0,71,2,2,2,2,1,2,2,1,2,10.0,2,,3,127485,1,2,0,1,1,474.0,0.0,326.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,1,97.9942165196961,687.0,39073.82276402181,1,1,2,3,68.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.028842839534956206,13473.73198759373,3,2,3_1,3_0_1,3_3_1,3_0_0 -19418,1,30.0,108.0,5,111,0.0,0.0,0.0,85,52,0.0,0.0,0.0,1971.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,2,,3,125916,2,1,0,1,1,522.0,0.0,326.0,42,1.0,0.0,4.0,4.0,2.1,1,1,83.2173549233346,0.0,32371.929724794114,6,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.060886082997096816,15415.20463085434,3,2,3_1,3_0_1,3_3_1,3_0_0 -19419,2,71.0,0.0,5,111,415.0,1505.0,0.0,78,75,0.0,0.0,573.6023044440112,1920.0,0.0,2729.5476157754106,50,0,0,0,0,0,0,0,0,0,,1,,3,109718,1,1,3,0,1,,140.0,437.0,41,0.0,3.0,5.0,2.0,1.5,1,1,91.288523833447,415.0,28232.08946495866,7,5,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06800771874795458,18821.392976639105,5,3,5,5_1,5_3,5_0_0 -19420,2,79.0,0.0,5,111,300.0,1313.0,0.0,77,75,0.0,0.0,414.65226827277917,1613.0,0.0,2381.3262588127004,70,0,0,0,0,0,0,0,0,0,,1,,3,110116,1,1,2,0,2,,160.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,328.153120295582,300.0,23994.89461379501,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.067222633229348,15996.596409196674,3,2,3_0,3_1_0,3_3_0,3_0_0 -19421,2,67.0,0.0,2,111,280.0,1200.0,0.0,0,74,0.0,0.0,387.00878372126056,1480.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,2,116568,2,1,1,0,1,,160.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,384.106191888548,280.0,31803.268059147635,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046536098027646085,31803.268059147635,8,4,8,8_1,8_3,8_0_1 -19422,2,63.0,0.0,5,111,534.0,1178.0,0.0,77,77,0.0,103.51725048194578,738.0810375255469,1812.0,0.0,2136.4831171982946,70,0,0,0,0,0,0,0,0,0,,1,,3,113110,2,1,1,0,1,,624.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,341.180052635418,534.0,52510.5574240245,5,5,0,1,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03450734650116242,35007.038282682995,9,5,9,9_1,9_3,9_0_0 -19423,2,46.0,0.0,5,111,668.0,1637.0,0.0,45,33,0.0,0.0,923.2923840207216,2305.0,0.0,2968.949798687274,60,0,0,0,0,0,0,0,0,2,20.0,1,,3,117769,2,1,3,0,1,,570.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,318.441876326043,668.0,106977.06090927245,1,1,1,2,131.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021546675337761216,38206.09318188302,9,5,9,9_1,9_3,9_0_0 -19424,2,67.0,0.0,5,120,263.0,0.0,0.0,0,78,3733.962192545002,310.55175144583734,363.5118218524697,3123.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119366,1,1,3,0,1,,188.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,176.624922014796,263.0,15121.399928297104,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2065284970180467,15121.399928297104,3,2,3_0,3_1_0,3_0_0,3_0_0 -19425,2,79.0,0.0,1,120,1000.0,0.0,0.0,71,78,0.0,1552.7587572291866,1382.1742275759307,2800.0,516.0981012570575,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,111238,1,1,4,0,1,,300.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,164.726691742722,1000.0,24302.870363135025,5,5,0,1,70.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.11521272829761353,16201.91357542335,4,2,4_0,4_1_0,4_0_0,4_1_0 -19426,2,41.0,0.0,1,120,510.0,0.0,0.0,68,65,2240.377315527001,476.1793522169506,704.9088560637246,2620.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,105044,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,161.600808975906,510.0,22663.79266668153,1,1,0,1,110.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11560289306086495,12590.995925934183,2,1,2_0,2_1_0,2_0_0,2_1_0 -19427,1,33.0,179.0,1,120,630.0,0.0,0.0,85,64,0.0,724.6207533736205,870.7697633728362,1480.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,114733,1,1,1,0,1,,300.0,,42,1.0,0.0,7.0,5.0,2.4,2,2,178.139817239669,630.0,24890.417418497444,6,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05946063399081971,10371.007257707268,2,1,2_1,2_1_1,2_0_1,2_1_0 -19428,2,36.0,0.0,1,120,975.0,0.0,0.0,43,37,1493.5848770180007,1035.1725048194578,1347.6198718865323,3095.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,107088,2,1,2,0,1,,400.0,,43,2.0,0.0,8.0,4.0,2.1,3,3,145.254487445603,975.0,86228.70260303523,1,1,1,2,160.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035892920878657135,41061.2869538263,9,5,9,9_1,9_0,9_1_0 -19429,2,48.0,0.0,1,120,900.0,0.0,0.0,11,46,0.0,0.0,1243.9568048183376,1875.0,1677.3188290854368,0.0,50,0,0,0,0,0,0,0,0,2,15.0,5,,1,103141,2,2,4,0,1,,600.0,,43,3.0,0.0,7.0,5.0,3.0,2,1,148.82099643605,900.0,60172.43935783644,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031160445213956795,20057.47978594548,5,3,5,5_1,5_0,5_1_0 -19430,2,32.0,0.0,2,120,1100.0,0.0,0.0,55,63,0.0,621.1035028916747,1520.3916503335236,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122625,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,201.041551180238,1100.0,36752.943650757996,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04625479842251871,17501.40173845619,4,2,4_0,4_1_0,4_0_0,4_0_1 -19431,2,37.0,0.0,8,120,1870.0,0.0,0.0,64,37,0.0,310.55175144583734,2584.66580556699,2170.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,1999.0,6,116776,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,217.358080024023,1870.0,65988.14075577019,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03288469678258436,32994.070377885095,8,4,8,8_1,8_0,8_0_0 -19432,2,58.0,0.0,6,120,1800.0,0.0,0.0,56,63,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,103036,2,1,2,0,1,,300.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,189.347466973865,1800.0,41804.42051458014,1,1,0,1,90.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04305764744118899,27869.613676386758,7,4,7,7_1,7_0,7_0_0 -19433,2,33.0,0.0,9,120,510.0,0.0,0.0,0,55,2240.377315527001,0.0,704.9088560637246,2130.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,114303,2,1,1,0,1,,320.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,165.890699342983,510.0,16998.719973484884,0,1,1,2,69.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1253035524629171,13075.938441142218,2,1,2_0,2_1_0,2_0_0,2_0_0 -19434,2,44.0,0.0,1,120,1800.0,0.0,0.0,52,65,0.0,0.0,2487.913609636675,1960.0,275.25232067043066,0.0,50,2,2,1,2,2,1,2,2,2,30.0,1,,1,106009,1,1,2,0,1,,400.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,154.212679859537,1800.0,46245.50357719928,1,1,1,2,90.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04238249880289663,20106.740685738816,5,3,5,5_1,5_0,5_1_0 -19435,1,31.0,118.0,8,120,500.0,1300.0,0.0,56,48,0.0,155.27587572291867,691.0871137879653,1950.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,0,,2,2000.0,6,102415,2,1,0,0,1,,0.0,570.0,43,2.0,0.0,4.0,3.0,1.8,2,2,246.514936673715,500.0,21208.875918121554,1,4,2,3,120.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09194263795630284,11782.708843400864,2,1,2_1,2_0_1,2_0_1,2_0_0 -19436,2,71.0,0.0,9,120,630.0,800.0,0.0,77,75,0.0,0.0,870.7697633728362,1430.0,0.0,1450.922320677959,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,106889,2,1,1,0,1,,400.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,194.019388228443,630.0,22432.15292646873,5,5,0,1,129.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06374778224308007,14954.768617645821,3,2,3_0,3_1_0,3_0_0,3_0_0 -19437,2,79.0,0.0,5,120,1700.0,0.0,0.0,72,77,0.0,1190.4483805423765,2349.696186879082,2950.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130061,2,1,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,149.993292147142,1700.0,22937.846485766797,5,5,0,1,90.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1286084115102309,15291.897657177864,3,2,3_0,3_1_0,3_0_0,3_0_0 -19438,2,88.0,0.0,1,120,300.0,1300.0,0.0,86,77,0.0,0.0,414.65226827277917,1600.0,0.0,2357.7487711016834,44,0,0,0,0,0,0,0,0,0,,1,,1,101313,2,1,3,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,5,5,139.43304823083,300.0,20284.115749879424,6,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07887945522148339,13522.74383325295,3,2,3_0,3_1_0,3_0_0,3_1_0 -19439,2,40.0,0.0,1,120,750.0,0.0,0.0,43,34,2240.377315527001,517.5862524097289,1036.630670681948,2840.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,119430,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,148.82099643605,750.0,56150.39521276495,1,1,1,2,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05057845077026935,23395.998005318732,6,3,6,6_1,6_0,6_1_0 -19440,2,53.0,0.0,1,120,760.0,1750.0,0.0,52,62,0.0,103.51725048194578,1050.452412957707,2610.0,0.0,3173.8925764830356,42,0,0,0,0,0,0,0,0,1,5.0,1,,1,106174,2,1,3,0,1,,460.0,,43,3.0,1.0,6.0,3.0,2.0,1,1,177.204479659156,760.0,72855.96987233915,1,1,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03582410617240201,36427.984936169574,9,5,9,9_1,9_0,9_1_0 -19441,2,49.0,0.0,2,120,850.0,0.0,0.0,0,62,3285.8867294396014,0.0,1174.848093439541,3230.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,106931,1,1,2,0,1,,300.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,193.483530864931,850.0,17943.309013667495,0,1,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18001139018113635,17943.309013667495,4,2,4_0,4_1_0,4_0_0,4_0_1 -19442,2,42.0,0.0,1,120,0.0,0.0,0.0,22,21,0.0,0.0,0.0,1304.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,122993,2,1,1,0,1,,580.0,,43,2.0,0.0,9.0,4.0,2.1,1,1,121.288901830631,0.0,54468.844566921885,1,1,1,2,396.0,0,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023940291195233096,25937.545031867565,7,4,7,7_1,7_0,7_1_0 -19443,2,25.0,0.0,1,120,1300.0,0.0,0.0,11,54,0.0,0.0,1796.8264958487098,1330.0,51.60981012570575,0.0,71,2,2,2,2,1,2,2,2,2,20.0,1,,1,117058,2,2,3,0,1,,210.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,152.428301081239,1300.0,47671.64718141357,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.027899182819060342,31781.09812094238,8,4,8,8_1,8_0,8_1_0 -19444,2,64.0,0.0,2,120,500.0,0.0,0.0,0,71,2688.452778632401,0.0,691.0871137879653,2360.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114477,2,2,2,0,2,,200.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,184.631021568816,500.0,6291.169890593171,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.375128957100455,6291.169890593171,1,1,1_0,1_1_0,1_0_0,1_0_1 -19445,2,43.0,0.0,1,112,2350.0,0.0,0.0,37,48,0.0,38.30138267831994,3248.1094348034367,2387.0,0.0,0.0,70,2,2,2,2,1,2,2,1,2,25.0,1,,1,129369,2,1,1,0,1,,235.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,181.071593209755,2350.0,84888.88162159675,1,1,1,2,120.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0.028119112354906068,35370.367342331985,9,5,9,9_1,9_0,9_1_0 -19446,2,49.0,0.0,7,112,300.0,0.0,0.0,35,47,0.0,0.0,414.65226827277917,2009.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,5,125261,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,224.748008086378,300.0,70956.3053687208,1,1,0,1,98.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028313199081608526,47304.2035791472,10,5,10,10_1,10_0,10_0_0 -19447,2,79.0,0.0,1,112,476.0,0.0,0.0,71,71,3733.962192545002,0.0,657.9149323261429,3096.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,128047,1,2,2,0,2,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,196.0245853872,476.0,31042.29949041777,5,5,0,1,130.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09973487952964576,20694.86632694518,5,3,5,5_1,5_0,5_1_0 -19448,2,63.0,0.0,2,112,1378.0,0.0,0.0,75,74,746.7924385090004,0.0,1904.6360855996322,1948.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,125662,2,2,2,0,1,,355.0,,41,0.0,7.0,7.0,2.0,1.5,3,3,239.969294643663,1378.0,62775.47036148983,5,5,0,1,180.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031031229057823483,41850.31357432655,9,5,9,9_1,9_0,9_0_1 -19449,1,68.0,111.0,6,112,1190.0,0.0,0.0,0,78,0.0,0.0,1644.7873308153573,1310.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,111819,2,1,2,0,1,,240.0,297.0,11,0.0,0.0,2.0,1.0,1.0,2,2,236.179735664026,1190.0,10876.218382683744,0,5,2,3,50.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12044627589362113,10876.218382683744,2,1,2_1,2_1_1,2_0_1,2_0_0 -19450,2,28.0,0.0,9,112,1500.0,0.0,0.0,22,54,0.0,0.0,2073.261341363896,2263.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,127696,2,1,1,0,1,,500.0,1250.0,43,2.0,1.0,6.0,4.0,2.3,1,1,235.907781169849,1500.0,123855.9077421841,1,1,2,3,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018271231798733526,53850.394670514834,10,5,10,10_1,10_0,10_0_0 -19451,2,59.0,0.0,7,112,2000.0,0.0,0.0,46,38,0.0,724.6207533736205,2764.3484551518613,2760.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,120990,2,1,2,0,1,,700.0,,43,2.0,4.0,4.0,2.0,1.5,3,3,228.504091842824,2000.0,43125.56027625924,1,4,0,1,61.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06399916852835391,28750.37351750616,8,4,8,8_1,8_0,8_0_0 -19452,1,42.0,202.0,7,112,1500.0,0.0,0.0,56,68,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,10.0,1,,5,128447,2,1,2,0,1,,320.0,375.0,43,2.0,0.0,4.0,4.0,2.1,2,2,201.405768723932,1500.0,33335.57460003957,1,1,2,3,90.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.044996974493375606,15874.083142875983,3,2,3_1,3_1_1,3_0_1,3_0_0 -19453,2,53.0,0.0,6,112,2312.0,0.0,0.0,54,37,0.0,472.03866219767275,3195.5868141555516,2768.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,4,127218,2,1,2,0,1,,451.0,,43,2.0,2.0,6.0,3.0,2.0,1,1,228.148929320156,2312.0,87652.70607685222,1,1,0,1,132.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031579173352310086,43826.35303842611,10,5,10,10_1,10_0,10_0_0 -19454,2,50.0,0.0,9,112,1200.0,1200.0,0.0,38,37,0.0,124.22070057833493,1658.6090730911167,2520.0,0.0,2176.3834810169387,44,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,109325,2,1,1,0,1,,800.0,,43,2.0,1.0,7.0,4.0,2.3,2,2,226.738974268472,1200.0,162655.5919408417,1,1,1,2,198.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015492858068578001,70719.82258297465,10,5,10,10_1,10_0,10_0_0 -19455,2,47.0,0.0,9,112,1200.0,1800.0,0.0,54,37,0.0,0.0,1658.6090730911167,3000.0,0.0,3264.575221525408,10,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,112930,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,236.539845483182,1200.0,63056.75194150723,1,1,1,2,180.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047576189823143177,31528.375970753616,8,4,8,8_1,8_0,8_0_0 -19456,2,38.0,0.0,1,112,600.0,1500.0,0.0,0,38,0.0,62.110350289167464,829.3045365455583,2160.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,1,,1,100425,2,2,2,0,1,,400.0,,32,2.0,0.0,7.0,5.0,2.4,2,2,332.88951374157,600.0,88586.21778595676,0,1,1,2,140.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02438302541845755,36910.924077481985,9,5,9,9_1,9_1,9_1_0 -19457,2,37.0,0.0,7,112,900.0,1166.0,0.0,42,38,0.0,0.0,1243.9568048183376,2066.0,0.0,2114.7192823881255,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,110121,2,1,2,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,412.178881189396,900.0,89890.31810242089,1,1,1,2,150.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02298356534511317,49939.06561245605,10,5,10,10_1,10_1,10_0_0 -19458,2,28.0,0.0,1,112,1280.0,0.0,0.0,46,38,0.0,20.703450096389155,1769.1830112971911,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,119928,2,3,2,0,1,,320.0,,43,2.0,0.0,4.0,2.0,1.5,5,5,394.478317129916,1280.0,49611.04440043167,1,1,1,2,85.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026203842626394875,33074.02960028778,8,4,8,8_1,8_1,8_1_0 -19459,2,70.0,0.0,5,112,1000.0,0.0,0.0,77,75,0.0,1035.1725048194578,1382.1742275759307,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124749,2,1,2,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,393.069244656674,1000.0,37064.80084854342,5,5,0,1,160.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053959550684557274,24709.867232362278,7,4,7,7_1,7_1,7_0_0 -19460,2,26.0,0.0,1,112,350.0,750.0,0.0,54,46,0.0,0.0,483.76097965157567,1100.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,100035,1,2,2,0,1,,400.0,660.0,43,2.0,0.0,3.0,2.0,1.5,1,1,314.080803697209,350.0,40091.394683551865,1,1,2,3,70.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027437309394758785,26727.596455701245,7,4,7,7_1,7_1,7_1_0 -19461,2,26.0,0.0,9,112,386.0,790.0,0.0,54,54,0.0,0.0,533.5192518443092,1176.0,0.0,1432.7857916694845,70,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,118969,2,1,1,0,1,,540.0,451.0,43,2.0,0.0,3.0,2.0,1.5,1,1,339.438227717876,386.0,37148.461356536616,1,1,2,3,75.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031656762004574165,24765.640904357744,7,4,7,7_1,7_1,7_0_0 -19462,2,53.0,0.0,9,112,900.0,0.0,0.0,48,54,0.0,465.827627168756,1243.9568048183376,1350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,132862,2,1,2,0,1,,440.0,820.0,43,3.0,3.0,4.0,3.0,2.0,1,1,471.187869708629,900.0,61900.378557400865,1,1,2,3,80.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021809236574347135,30950.189278700433,8,4,8,8_1,8_1,8_0_0 -19463,2,67.0,0.0,5,112,467.0,1712.0,0.0,75,75,0.0,0.0,645.4753642779596,2179.0,0.0,3104.9737662508323,31,0,0,0,0,0,0,0,0,0,,1,,3,126960,2,1,2,0,1,,300.0,,41,0.0,3.0,8.0,2.0,1.5,4,3,410.121714517446,467.0,49789.97513495359,5,5,0,1,180.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04376382984915968,33193.31675663572,8,4,8,8_1,8_1,8_0_0 -19464,2,61.0,0.0,7,112,1230.0,0.0,0.0,0,74,0.0,93.1655254337512,1700.0742999183947,1350.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,108529,2,1,2,0,1,,310.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,448.498671577478,1230.0,35029.32316005379,0,5,0,1,100.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038539140303444186,35029.32316005379,9,5,9,9_1,9_1,9_0_0 -19465,2,65.0,0.0,1,112,700.0,1200.0,0.0,74,74,0.0,0.0,967.5219593031513,1915.0,25.804905062852875,2176.3834810169387,31,2,2,1,2,2,2,2,1,0,,1,,1,129560,2,2,2,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,3,2,338.611076924371,700.0,37776.935506756156,5,5,0,1,115.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.050692306676318806,25184.62367117077,7,4,7,7_1,7_1,7_1_0 -19466,2,51.0,0.0,1,112,1200.0,1388.0,0.0,67,37,0.0,77.63793786145933,1658.6090730911167,2753.0,154.82943037711726,2517.350226376259,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,123066,2,1,3,0,1,,432.0,,43,2.0,0.0,6.0,3.0,2.0,1,1,405.463028492826,1200.0,56226.22486981324,1,1,1,2,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048962917328601085,28113.11243490662,8,4,8,8_1,8_1,8_1_0 -19467,2,52.0,0.0,2,112,800.0,0.0,0.0,0,33,0.0,414.0690019277831,1105.7393820607444,1260.0,103.2196202514115,0.0,30,0,0,0,0,0,0,0,0,2,25.0,1,,2,118665,2,1,2,0,2,,200.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,109.520262060093,800.0,39850.19427511913,0,1,1,2,85.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03161841549130649,39850.19427511913,9,5,9,9_1,9_0,9_0_1 -19468,2,55.0,0.0,1,112,1050.0,0.0,0.0,75,37,2987.1697540360015,0.0,1451.2829389547271,3050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,103494,2,1,1,0,1,,156.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,90.1286742846706,1050.0,104514.70967861454,5,1,0,1,96.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029182495070586997,69676.47311907636,10,5,10,10_1,10_0,10_1_0 -19469,2,88.0,0.0,2,112,2154.0,0.0,0.0,0,71,0.0,0.0,2977.2032861985545,2254.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,103727,1,2,3,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,109.520262060093,2154.0,14877.495228832488,0,5,0,1,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15150399750300458,14877.495228832488,3,2,3_0,3_1_0,3_0_0,3_0_1 -19470,2,38.0,0.0,2,112,1300.0,300.0,0.0,42,54,0.0,0.0,1796.8264958487098,1600.0,0.0,544.0958702542347,71,1,2,2,1,1,1,2,2,2,40.0,1,,2,107547,1,3,3,0,1,,750.0,860.0,43,2.0,0.0,5.0,3.0,1.8,2,2,104.019498510001,1300.0,62267.798922765796,1,1,2,3,78.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.025695464231593745,34593.22162375878,9,5,9,9_1,9_0,9_0_1 -19471,2,43.0,0.0,5,112,650.0,1540.0,0.0,46,38,0.0,51.75862524097289,898.4132479243549,2240.0,0.0,2793.0254673050713,60,0,0,0,0,0,0,0,0,2,20.0,1,,3,131022,1,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,104.340466767292,650.0,62942.48154172052,1,1,0,1,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03558804713657895,27366.296322487182,7,4,7,7_1,7_0,7_0_0 -19472,2,77.0,0.0,5,112,450.0,1200.0,0.0,77,78,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,3,112292,2,1,2,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,112.324971052959,450.0,20094.713973038855,5,5,0,1,90.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08211114635489764,13396.475982025904,3,2,3_0,3_1_0,3_0_0,3_0_0 -19473,2,70.0,0.0,2,112,1500.0,0.0,0.0,77,75,0.0,124.22070057833493,2073.261341363896,1695.0,129.02452531426437,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,115604,2,2,3,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,96.4263918016084,1500.0,38208.40012816343,5,5,1,2,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04436197261111215,25472.26675210895,7,4,7,7_1,7_0,7_0_1 -19474,2,31.0,0.0,5,112,1000.0,0.0,0.0,55,54,0.0,240.1600211181142,1382.1742275759307,1307.0,129.02452531426437,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,3,133453,2,1,2,0,1,,261.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,99.0737924111668,1000.0,46098.850019284444,1,1,1,2,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028352117231845157,25610.4722329358,7,4,7,7_1,7_0,7_0_0 -19476,2,33.0,0.0,9,112,919.0,1400.0,0.0,46,43,0.0,0.0,1270.21811514228,2319.0,0.0,2539.1140611864284,41,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,122919,2,1,1,0,1,,268.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,104.250612845923,919.0,60939.10017398124,1,1,1,2,141.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03805438533518301,29018.619130467257,8,4,8,8_1,8_0,8_0_0 -19477,2,42.0,0.0,9,112,416.0,1000.0,0.0,55,52,0.0,0.0,574.9844786715871,1416.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,119232,1,1,1,0,1,,570.0,520.0,43,2.0,0.0,4.0,4.0,2.1,1,1,94.5539829739896,416.0,41978.66711113994,1,1,2,3,85.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033731418776377343,19989.84148149521,5,3,5,5_1,5_0,5_0_0 -19478,2,38.0,0.0,5,112,1600.0,0.0,0.0,54,38,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,120452,2,2,2,0,1,,535.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,100.352544677536,1600.0,88886.88212723412,1,1,1,2,88.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01800040637840952,49381.60118179673,10,5,10,10_1,10_0,10_0_0 -19479,2,61.0,0.0,7,112,2900.0,0.0,0.0,43,34,0.0,0.0,4008.3052599701987,2900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,112744,2,1,2,0,1,,177.0,,43,2.0,3.0,10.0,2.0,1.5,2,2,109.824124943383,2900.0,91152.38278006302,1,1,0,1,300.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03181485674375911,60768.25518670868,10,5,10,10_1,10_0,10_0_0 -19480,2,64.0,0.0,8,112,1.0,60.0,0.0,0,78,0.0,409.9283119085053,1.3821742275759306,457.0,0.0,108.81917405084694,10,0,0,0,0,0,0,0,0,0,,7,2001.0,6,111097,1,2,0,0,1,,0.0,80.0,11,0.0,0.0,2.0,1.0,1.0,2,2,151.049176681938,1.0,12140.014097604366,0,5,2,3,20.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03764410785076284,12140.014097604366,2,1,2_0,2_1_0,2_0_0,2_0_0 -19481,2,31.0,0.0,2,112,950.0,0.0,0.0,67,56,0.0,0.0,1313.065516197134,1014.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,118205,2,1,1,0,1,,610.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,103.008831441528,950.0,53205.14314582363,1,1,1,2,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019058307901190084,25335.782450392206,7,4,7,7_1,7_0,7_0_1 -19482,2,66.0,0.0,2,112,550.0,0.0,0.0,77,75,1792.3018524216009,517.5862524097289,760.1958251667618,2295.0,77.41471518855863,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,130982,2,2,1,0,1,,300.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,105.549943058712,550.0,30952.799465603544,5,5,0,1,102.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07414515131499916,20635.199643735697,5,3,5,5_1,5_0,5_0_1 -19483,2,32.0,0.0,8,112,550.0,1340.0,0.0,47,43,0.0,0.0,760.1958251667618,1890.0,0.0,2430.2948871355816,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,104905,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,108.02850999519,550.0,77939.08223307223,1,1,1,2,114.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024249708180397435,37113.848682415344,9,5,9,9_1,9_0,9_0_0 -19484,2,67.0,0.0,6,112,1734.0,0.0,0.0,85,74,0.0,0.0,2396.690110616664,1734.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,123658,1,1,2,0,1,,464.0,,41,1.0,2.0,7.0,3.0,2.0,2,2,105.149568574913,1734.0,56817.13702562885,6,5,0,1,140.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03051896119330747,28408.568512814425,8,4,8,8_1,8_0,8_0_0 -19485,1,38.0,24.0,6,112,670.0,0.0,0.0,42,62,0.0,310.55175144583734,926.0567324758734,1010.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,102730,2,2,2,0,1,,434.0,,43,3.0,0.0,4.0,6.0,3.0999999999999996,1,1,108.115117205102,670.0,20084.415146614676,1,1,1,2,100.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05028774762058433,6478.843595682154,1,1,1_1,1_1_1,1_0_1,1_0_0 -19486,2,51.0,0.0,8,112,412.0,1074.0,0.0,47,34,0.0,0.0,569.4557817612833,1486.0,0.0,1947.8632155101602,70,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,108693,2,1,2,0,1,,432.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,117.285087293759,412.0,54187.6520599398,1,1,1,2,96.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027423221776729827,27093.8260299699,7,4,7,7_1,7_0,7_0_0 -19487,2,67.0,0.0,8,112,540.0,1160.0,0.0,77,75,0.0,0.0,746.3740828910024,1700.0,0.0,2103.8373649830405,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,112624,2,1,1,0,1,,350.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,107.885784551338,540.0,36291.08073059092,5,5,1,2,92.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04684346582621926,24194.053820393947,7,4,7,7_1,7_0,7_0_0 -19488,2,31.0,0.0,2,112,1560.0,0.0,0.0,42,47,0.0,310.55175144583734,2156.1917950184516,1920.0,103.2196202514115,0.0,44,2,2,2,1,1,2,2,2,2,20.0,1,,2,133465,2,1,3,0,1,,190.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,122.194719753407,1560.0,39513.83173129776,1,1,1,2,130.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.048590579953278076,18816.110348237027,5,3,5,5_1,5_0,5_0_1 -19489,2,52.0,0.0,2,111,343.0,630.0,0.0,0,64,0.0,0.0,474.08576005854417,973.0,0.0,1142.6013275338928,50,2,2,2,2,2,1,2,2,0,,1,,2,106487,1,3,1,0,1,,150.0,389.0,22,1.0,0.0,5.0,2.0,1.5,2,2,443.230109468331,343.0,44865.14923738889,0,1,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.021687211934851635,29910.099491592595,8,4,8,8_1,8_3,8_0_1 -19490,2,61.0,0.0,1,111,900.0,890.0,0.0,78,48,0.0,62.110350289167464,1243.9568048183376,1850.0,0.0,1614.1510817542296,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,131789,2,1,1,0,1,,500.0,462.0,42,1.0,0.0,6.0,2.0,1.5,1,1,382.327529963345,900.0,35464.56055055448,5,1,2,3,53.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05216475183339261,23643.04036703632,6,3,6,6_1,6_3,6_1_0 -19491,2,73.0,0.0,2,111,625.0,0.0,0.0,77,74,2661.5682508460773,0.0,863.8588922349566,2407.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108709,2,1,2,0,2,,148.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,136.176905810283,625.0,39096.73609538302,5,5,0,1,90.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06156524151089547,26064.490730255347,7,4,7,7_1,7_3,7_0_1 -19492,2,48.0,0.0,1,111,364.0,899.0,0.0,46,21,0.0,0.0,503.1114188376387,1263.0,0.0,1630.4739578618567,50,0,0,0,0,0,0,0,0,0,,1,,1,122645,2,1,2,0,1,,495.0,,43,3.0,0.0,8.0,3.0,2.0,1,1,111.661572748265,364.0,53891.5586788119,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023435952326548003,26945.77933940595,7,4,7,7_1,7_3,7_1_0 -19493,2,33.0,0.0,2,111,1080.0,1185.0,0.0,62,62,0.0,0.0,1492.748165782005,2265.0,0.0,2149.178687504227,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,107589,2,2,2,0,1,,330.0,,43,2.0,0.0,5.0,3.0,1.8,4,2,453.448915212405,1080.0,41095.03727386146,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055116144192930455,22830.576263256367,6,3,6,6_1,6_3,6_0_1 -19494,2,51.0,0.0,1,111,660.0,1476.0,0.0,0,56,0.0,0.0,912.2349902001142,2136.0,0.0,2676.9516816508344,50,2,2,1,2,2,1,2,2,2,20.0,1,,1,117226,2,1,1,0,1,,408.0,,32,1.0,0.0,9.0,2.0,1.5,1,1,402.611677217471,660.0,22778.322990488403,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09377336518109496,15185.548660325601,3,2,3_0,3_1_0,3_3_0,3_1_0 -19495,2,85.0,0.0,2,111,150.0,150.0,0.0,0,78,824.4588521139364,0.0,207.32613413638958,852.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,2,,2,109852,2,1,0,1,1,46.0,0.0,280.0,11,0.0,0.0,3.0,1.0,1.0,2,2,584.109983384993,150.0,20494.7456912341,0,5,2,3,70.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041571630740673826,20494.7456912341,5,3,5,5_0,5_3,5_0_1 -19496,1,39.0,289.0,1,111,740.0,1037.0,0.0,67,64,0.0,0.0,1022.8089284061887,1777.0,0.0,1880.7580581788045,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,117626,2,1,2,0,1,,408.0,732.0,43,3.0,0.0,6.0,4.0,2.3,2,2,380.462259182572,740.0,30378.83896364564,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05849466472785665,13208.190853758975,2,1,2_1,2_1_1,2_3_1,2_1_0 -19497,1,56.0,223.0,2,111,450.0,0.0,0.0,85,67,0.0,155.27587572291867,621.9784024091688,725.0,215.04087552377396,0.0,71,2,2,2,1,2,2,2,1,2,15.0,1,,2,101776,1,2,1,0,2,,700.0,437.0,42,2.0,4.0,5.0,4.0,2.5,1,1,441.949525065325,450.0,31578.738790544943,7,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.022958484973347758,12631.495516217978,2,1,2_1,2_1_1,2_3_1,2_0_1 -19498,1,26.0,105.0,2,111,238.0,110.0,0.0,0,55,0.0,0.0,328.95746616307144,348.0,0.0,199.50181909321938,31,2,2,2,2,2,2,2,1,0,,2,,2,112870,1,2,0,0,1,,0.0,232.0,12,1.0,0.0,1.0,1.0,1.0,1,1,638.744335679906,238.0,4667.199371932893,0,4,2,3,35.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0745629171302956,4667.199371932893,1,1,1_1,1_0_1,1_3_1,1_0_1 -19499,2,45.0,0.0,1,111,700.0,1500.0,0.0,0,23,0.0,0.0,967.5219593031513,2200.0,0.0,2720.4793512711735,43,0,0,0,0,0,0,0,0,1,15.0,1,,1,109531,2,1,2,0,1,,300.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,470.252505598074,700.0,183303.26965915115,0,1,1,2,115.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01200196812686897,183303.26965915115,10,5,10,10_1,10_3,10_1_0 -19500,1,39.0,210.0,1,111,945.0,945.0,0.0,56,65,0.0,0.0,1306.1546450592543,1890.0,0.0,1713.9019913008392,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,104490,1,1,1,0,1,,580.0,,43,3.0,0.0,6.0,5.0,2.5999999999999996,1,1,385.40719526322,945.0,26382.05102661289,1,1,1,2,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07163961581658161,10146.942702543422,2,1,2_1,2_1_1,2_3_1,2_1_0 -19501,2,42.0,0.0,1,111,600.0,1300.0,0.0,46,46,0.0,207.03450096389156,829.3045365455583,2100.0,0.0,2357.7487711016834,70,2,2,1,1,2,2,2,2,2,30.0,1,,1,104368,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,392.989198442119,600.0,65690.88893291538,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03196790352684304,31281.375682340655,8,4,8,8_1,8_3,8_1_0 -19502,2,53.0,0.0,1,111,309.0,2230.0,0.0,37,37,0.0,0.0,427.09183632096256,2539.0,0.0,4044.445968889811,50,2,2,2,2,1,2,2,1,2,30.0,1,,1,122422,1,1,2,0,1,,370.0,,43,2.0,0.0,8.0,2.0,1.5,3,2,420.636025339957,309.0,54011.64830883071,4,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.047008378368354344,36007.76553922047,9,5,9,9_1,9_3,9_1_0 -19503,1,62.0,130.0,1,111,0.0,0.0,0.0,67,78,0.0,0.0,0.0,1880.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,125826,1,2,2,0,2,,0.0,600.0,42,1.0,0.0,1.0,2.0,1.5,1,1,584.128458875546,0.0,6615.526845637585,4,5,3,4,35.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.28417993666516683,4410.351230425057,1,1,1_1,1_1_1,1_3_1,1_1_0 -19504,2,40.0,0.0,7,111,900.0,752.0,0.0,55,38,0.0,310.55175144583734,1243.9568048183376,1952.0,0.0,1363.8669814372815,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,131337,2,1,1,0,1,,360.0,564.0,43,2.0,0.0,5.0,6.0,2.9,2,2,509.571481082206,900.0,65389.05223959478,1,1,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029852091950309887,22547.94904813613,6,3,6,6_1,6_3,6_0_0 -19505,2,87.0,0.0,1,111,960.0,720.0,0.0,0,78,0.0,0.0,1326.8872584728933,1680.0,0.0,1305.830088610163,60,0,0,0,0,0,0,0,0,0,,1,,1,129032,2,1,2,0,2,,252.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,433.029777993778,960.0,11223.462189514366,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14968643112368277,11223.462189514366,2,1,2_0,2_1_0,2_3_0,2_1_0 -19506,2,45.0,0.0,1,111,1700.0,0.0,0.0,37,22,14935.848770180008,0.0,2349.696186879082,11700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125154,2,1,1,0,2,,1500.0,,43,4.0,0.0,12.0,7.0,3.8,1,1,451.414510788468,1700.0,152615.50812304468,1,1,1,2,400.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07666324441004381,40161.97582185386,9,5,9,9_1,9_3,9_1_0 -19507,2,55.0,0.0,6,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,581.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,4,101281,2,1,0,1,1,576.0,0.0,500.0,32,1.0,4.0,4.0,2.0,1.5,2,2,568.031830205567,0.0,20278.712997059418,0,1,2,3,88.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02865073341115138,13519.141998039611,3,2,3_0,3_0_0,3_3_0,3_0_0 -19508,2,23.0,0.0,9,111,570.0,0.0,0.0,43,47,0.0,0.0,787.8393097182804,570.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,2006.0,6,127951,2,1,0,0,1,,0.0,485.0,43,2.0,0.0,2.0,2.0,1.5,2,2,944.029150793529,570.0,20726.818830384345,1,1,2,3,34.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.027500602222875235,13817.87922025623,3,2,3_0,3_0_0,3_3_0,3_0_0 -19509,1,40.0,250.0,2,111,2600.0,0.0,0.0,0,43,0.0,0.0,3593.6529916974196,2600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,20.0,1,,2,117803,2,2,2,0,1,,300.0,,32,1.0,0.0,4.0,3.0,1.8,1,1,443.718805481668,2600.0,20023.707350904933,0,1,1,2,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.12984608466536032,11124.281861613852,2,1,2_1,2_1_1,2_3_1,2_0_1 -19510,1,54.0,387.0,2,111,330.0,0.0,0.0,0,21,0.0,0.0,456.1174951000571,330.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,130871,1,1,0,1,1,,0.0,640.0,32,1.0,0.0,4.0,2.0,1.5,3,3,569.949182699267,330.0,10452.613404217387,0,1,2,3,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0315710518736733,6968.408936144925,1,1,1_1,1_0_1,1_3_1,1_0_1 -19511,2,83.0,0.0,2,111,352.0,0.0,0.0,0,77,0.0,0.0,486.52532810672756,352.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,106276,2,1,0,1,1,,376.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,581.502942027583,352.0,40869.78330027112,0,5,0,1,91.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00861271999936601,27246.522200180745,7,4,7,7_0,7_3,7_0_1 -19512,1,30.0,276.0,2,111,165.0,165.0,0.0,55,63,645.2286668717763,0.0,228.05874755002856,762.0,0.0,299.25272863982906,71,0,0,0,0,0,0,0,0,0,,2,,2,113636,2,1,0,1,1,36.0,0.0,264.0,43,2.0,0.0,3.0,2.0,1.5,1,1,458.249871212585,165.0,7601.719844070817,4,4,2,3,60.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10024047394937136,5067.813229380545,1,1,1_1,1_0_1,1_3_1,1_0_1 -19513,2,52.0,0.0,1,111,1300.0,3000.0,0.0,37,22,0.0,0.0,1796.8264958487098,4300.0,0.0,5440.958702542347,50,2,2,2,2,1,2,2,2,2,15.0,1,,1,123340,2,1,4,0,1,,600.0,,43,2.0,1.0,9.0,2.0,1.5,2,2,420.636025339957,1300.0,51929.294177240954,1,1,1,2,300.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.082804899780143,34619.52945149397,9,5,9,9_1,9_3,9_1_0 -19514,2,31.0,0.0,9,111,1150.0,0.0,0.0,47,54,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,12,0,0,0,0,0,0,0,0,4,30.0,2,2006.0,6,120907,2,1,0,0,1,,200.0,558.0,43,2.0,0.0,3.0,4.0,2.1,2,2,548.143177664159,1150.0,37271.542083333814,1,1,2,3,66.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03085463964514173,17748.3533730161,4,2,4_0,4_0_0,4_3_0,4_0_0 -19515,2,77.0,0.0,1,111,0.0,0.0,1300.0,75,77,0.0,0.0,664.1873352887826,1335.0,60.21144514665671,1486.2195070484208,70,0,0,0,0,0,0,0,0,0,,1,,1,128655,2,2,2,0,1,,90.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,397.513902826085,0.0,32364.569081487265,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04124881121199998,21576.379387658177,6,3,6,6_1,6_3,6_1_0 -19516,2,48.0,0.0,1,111,600.0,1150.0,0.0,0,43,0.0,186.3310508675024,829.3045365455583,1930.0,0.0,2085.7008359745664,50,0,0,0,0,0,0,0,0,2,1.0,1,,1,109099,2,2,2,0,1,,330.0,,32,1.0,1.0,7.0,3.0,2.0,1,1,415.06060164833,600.0,26891.73934664558,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07176925133482466,13445.86967332279,3,2,3_0,3_1_0,3_3_0,3_1_0 -19517,2,41.0,0.0,1,111,700.0,0.0,0.0,0,68,0.0,0.0,967.5219593031513,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,15.0,8,,1,126699,2,1,0,0,2,,0.0,393.0,12,1.0,1.0,2.0,1.0,1.0,1,1,802.897910541164,700.0,16549.634991582665,0,1,2,3,25.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0422970053633224,16549.634991582665,4,2,4_0,4_0_0,4_3_0,4_1_0 -19518,1,26.0,274.0,2,111,0.0,0.0,0.0,56,54,0.0,0.0,0.0,1227.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,1,,2,123051,1,3,3,0,2,,283.0,550.0,43,2.0,0.0,3.0,2.0,1.5,4,4,489.900374807904,0.0,32441.308426835953,4,1,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0378221489668711,21627.538951223967,6,3,6,6_1,6_3,6_0_1 -19519,2,58.0,0.0,1,111,1200.0,1200.0,0.0,37,34,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,101008,1,1,1,0,2,,600.0,,43,2.0,2.0,8.0,3.0,2.0,5,4,415.06060164833,1200.0,205094.66486628636,1,1,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011701913365541251,102547.33243314318,10,5,10,10_1,10_3,10_1_0 -19520,2,56.0,0.0,1,111,520.0,750.0,0.0,55,63,0.0,0.0,718.7305983394839,1270.0,0.0,1360.2396756355868,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,112838,2,1,2,0,1,,156.0,,43,3.0,0.0,5.0,3.0,2.0,2,2,105.871453392009,520.0,83728.33623323687,1,1,0,1,87.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01516810266553296,41864.168116618435,9,5,9,9_1,9_3,9_1_0 -19521,2,26.0,0.0,5,111,400.0,600.0,0.0,53,54,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,31,0,0,0,0,0,0,0,0,3,45.0,2,,3,125516,1,3,0,0,1,,480.0,319.0,43,2.0,0.0,3.0,2.0,1.5,2,2,145.624816053699,400.0,31304.807184527315,4,2,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03194397570013653,20869.871456351542,5,3,5,5_0,5_3,5_0_0 -19522,2,41.0,0.0,1,111,570.0,0.0,0.0,0,52,0.0,828.1380038555662,787.8393097182804,1474.0,178.91400843577995,0.0,50,2,2,1,1,1,2,1,2,0,,1,,1,108498,2,1,3,0,2,,415.0,,22,1.0,4.0,8.0,2.0,1.5,2,1,143.710588191106,570.0,19597.133947599188,0,1,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.07521508012045697,13064.755965066126,2,1,2_0,2_1_0,2_3_0,2_1_0 -19523,2,57.0,0.0,1,111,600.0,1200.0,0.0,56,62,0.0,62.110350289167464,829.3045365455583,1860.0,0.0,2176.3834810169387,31,2,2,1,1,2,2,2,2,2,10.0,1,,1,115936,2,2,3,0,1,,600.0,,43,2.0,1.0,4.0,4.0,2.5,3,2,376.014527068987,600.0,26794.659090507692,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06941681899057733,10717.863636203077,2,1,2_0,2_1_0,2_3_0,2_1_0 -19524,2,38.0,0.0,1,111,360.0,700.0,0.0,42,42,0.0,20.703450096389155,497.582721927335,1080.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,124371,2,1,2,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,392.989198442119,360.0,58021.018451843614,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01861394420189953,27629.056405639814,7,4,7,7_1,7_3,7_1_0 -19525,2,50.0,0.0,1,111,1200.0,0.0,0.0,68,63,0.0,0.0,1658.6090730911167,2455.0,0.0,0.0,70,2,2,1,2,1,2,2,2,2,20.0,1,,1,121815,2,1,2,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,404.989829827156,1200.0,24585.070292909375,1,1,0,1,85.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.09985735126037248,10689.16099691712,2,1,2_0,2_1_0,2_3_0,2_1_0 -19526,2,33.0,0.0,6,111,1050.0,0.0,0.0,53,64,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,50,2,2,1,2,1,1,1,2,2,20.0,2,,4,106710,1,3,0,0,1,,240.0,321.0,43,2.0,0.0,2.0,2.0,1.5,2,2,512.995488631286,1050.0,34862.83011929536,1,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.030118036786085867,23241.886746196906,6,3,6,6_0,6_3,6_0_0 -19527,1,31.0,523.0,7,111,1200.0,0.0,0.0,85,65,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,1,2,1,2,2,2,2,1,1,35.0,2,,5,131100,2,1,0,0,1,,45.0,484.0,42,1.0,2.0,3.0,6.0,2.6999999999999997,1,1,570.610915155822,1200.0,30044.258080991785,7,1,2,3,115.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0399410761538894,11127.502992959922,2,1,2_1,2_0_1,2_3_1,2_0_0 -19528,1,42.0,280.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,307.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,1,129653,1,1,0,1,2,220.0,0.0,473.0,12,1.0,0.0,1.0,1.0,1.0,2,2,889.674271101578,0.0,9329.973190724144,0,4,2,3,25.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.032904703338828376,9329.973190724144,1,1,1_1,1_0_1,1_3_1,1_1_0 -19529,2,73.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102971,1,1,4,0,2,,107.0,,11,0.0,0.0,4.0,1.0,1.0,4,3,433.029777993778,0.0,17602.369894133004,0,5,0,1,70.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048288952289504555,17602.369894133004,4,2,4_0,4_1_0,4_3_0,4_1_0 -19530,2,51.0,0.0,5,111,344.0,130.0,0.0,0,54,0.0,0.0,475.4679342861201,474.0,0.0,235.77487711016835,71,2,1,1,2,1,2,2,2,2,20.0,2,,3,124521,2,2,0,1,1,494.0,0.0,340.0,12,1.0,1.0,3.0,1.0,1.0,1,1,459.972634371954,344.0,9381.987379754855,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.050522344660453515,9381.987379754855,1,1,1_0,1_0_0,1_3_0,1_0_0 -19531,2,78.0,0.0,1,111,530.0,710.0,0.0,0,72,0.0,0.0,732.5523406152432,1240.0,0.0,1287.6935596016888,70,0,0,0,0,0,0,0,0,0,,1,,1,110929,2,1,1,0,1,,170.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,433.029777993778,530.0,17633.243080452896,0,5,0,1,40.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07032172098702513,17633.243080452896,4,2,4_0,4_1_0,4_3_0,4_1_0 -19532,2,41.0,0.0,1,111,0.0,0.0,1560.0,63,52,0.0,0.0,797.0248023465391,1560.0,0.0,1783.463408458105,70,0,0,0,0,0,0,0,0,2,25.0,1,,1,102151,2,1,2,0,1,,360.0,,43,3.0,1.0,8.0,5.0,2.8,2,2,386.766550385988,0.0,49047.209557021946,1,1,1,2,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03180609078659928,17516.860556079268,4,2,4_0,4_1_0,4_3_0,4_1_0 -19533,2,56.0,0.0,1,111,610.0,1143.0,0.0,0,37,0.0,0.0,843.1262788213177,1753.0,0.0,2073.005265668634,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,118155,1,1,1,0,2,,250.0,,22,2.0,0.0,5.0,2.0,1.5,1,1,402.611677217471,610.0,55628.49519033158,0,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03151262664938449,37085.663460221054,9,5,9,9_1,9_3,9_1_0 -19534,2,59.0,0.0,1,111,550.0,800.0,0.0,65,75,0.0,0.0,760.1958251667618,1350.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,1,128717,2,1,2,0,1,,220.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,426.405653473376,550.0,53528.38469615008,4,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025220264120861768,35685.589797433386,9,5,9,9_1,9_3,9_1_0 -19535,1,28.0,233.0,1,111,0.0,0.0,0.0,42,63,0.0,0.0,0.0,1540.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,108504,2,1,1,0,2,,370.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,402.762722012985,0.0,25818.26845862531,1,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05964768715872269,9220.810163794753,1,1,1_1,1_1_1,1_3_1,1_1_0 -19536,1,33.0,295.0,1,111,600.0,1600.0,0.0,85,63,0.0,0.0,829.3045365455583,2200.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,117456,2,1,1,0,1,,500.0,681.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,2,2,463.449926566776,600.0,25528.075056167298,6,1,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08617962753398066,9818.490406218192,2,1,2_1,2_1_1,2_3_1,2_1_0 -19537,2,32.0,0.0,1,111,0.0,0.0,1300.0,54,43,0.0,36.23103766868102,664.1873352887826,1335.0,0.0,1486.2195070484208,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,130085,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,429.235469358624,0.0,57887.04009804962,1,1,1,2,101.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023062156878962275,27565.257189547436,7,4,7,7_1,7_3,7_1_0 -19538,2,65.0,0.0,7,111,1600.0,0.0,0.0,0,90,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,103278,2,1,2,0,1,,270.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,637.013484562968,1600.0,21828.775309203815,0,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07329774471247506,21828.775309203815,6,3,6,6_1,6_3,6_0_0 -19539,2,38.0,0.0,1,111,430.0,760.0,0.0,56,47,0.0,51.75862524097289,594.3349178576501,1240.0,0.0,1378.376204644061,31,2,2,1,1,1,2,1,2,2,20.0,1,,1,122982,2,1,2,0,1,,410.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,342.310819939544,430.0,41546.35815421899,1,1,1,2,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.029846177982608066,19783.980073437615,5,3,5,5_1,5_3,5_1_0 -19540,2,67.0,0.0,1,111,560.0,700.0,0.0,77,75,0.0,724.6207533736205,774.0175674425211,1960.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,1,,1,116557,2,1,2,0,1,,300.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,502.057926518071,560.0,17902.722232922744,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10948055689517427,11935.14815528183,2,1,2_0,2_1_0,2_3_0,2_1_0 -19541,1,81.0,134.0,2,111,350.0,870.0,0.0,0,77,0.0,0.0,483.76097965157567,1220.0,0.0,1577.8780237372805,50,2,2,1,1,1,2,1,2,0,,1,,2,101510,2,2,3,0,1,,135.0,314.0,11,0.0,4.0,4.0,1.0,1.0,2,2,501.081257823086,350.0,11459.20181528818,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.1064646578064756,11459.20181528818,2,1,2_1,2_1_1,2_3_1,2_0_1 -19542,1,61.0,255.0,2,111,550.0,300.0,0.0,54,90,0.0,0.0,760.1958251667618,850.0,0.0,544.0958702542347,44,2,2,1,2,1,2,2,2,0,,2,,2,105911,2,1,0,1,1,387.0,720.0,308.0,42,1.0,3.0,3.0,3.0,2.0,2,2,400.517586478329,550.0,18238.332063924547,4,7,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04660513894696004,9119.166031962273,1,1,1_1,1_0_1,1_3_1,1_0_1 -19543,2,61.0,0.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1053.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,5,114892,2,2,0,0,1,,210.0,319.0,12,1.0,0.0,2.0,1.0,1.0,2,2,532.805941560873,0.0,18508.238855485328,0,1,2,3,93.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05689358172984244,18508.238855485328,4,2,4_0,4_0_0,4_3_0,4_0_0 -19545,1,50.0,270.0,1,111,400.0,820.0,0.0,0,85,0.0,0.0,552.8696910303722,1220.0,0.0,1487.1953786949082,31,0,0,0,0,0,0,0,0,0,,1,,1,129101,2,1,1,0,1,,140.0,344.0,11,0.0,0.0,4.0,1.0,1.0,2,2,513.613289334167,400.0,10387.643478560154,0,7,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11744723454535676,10387.643478560154,2,1,2_1,2_1_1,2_3_1,2_1_0 -19546,1,38.0,460.0,9,111,840.0,1200.0,0.0,85,67,0.0,0.0,1161.0263511637818,2040.0,0.0,2176.3834810169387,71,2,2,1,1,2,2,2,2,2,10.0,1,2010.0,6,123822,2,2,1,0,1,,600.0,531.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,1,1,431.517088373875,840.0,28511.887111313656,7,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.0715491048360148,8909.96472228552,1,1,1_1,1_1_1,1_3_1,1_0_0 -19547,2,81.0,0.0,2,111,480.0,0.0,0.0,86,75,2389.735803228801,0.0,663.4436292364467,2102.0,37.84719409218422,0.0,50,2,2,1,1,2,2,2,2,0,,1,,2,117530,1,2,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,525.1378162246,480.0,21800.482732804474,6,5,0,1,80.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.09641988325501602,14533.655155202983,3,2,3_0,3_1_0,3_3_0,3_0_1 -19548,2,43.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,468.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,6.0,2,,2,119053,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,586.320902972573,0.0,18401.223207136278,0,1,1,2,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025433091851116852,18401.223207136278,4,2,4_0,4_0_0,4_3_0,4_0_1 -19549,2,39.0,0.0,5,111,230.0,0.0,0.0,0,54,0.0,0.0,317.900072342464,230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,115112,2,1,0,1,1,480.0,0.0,412.0,12,1.0,0.0,2.0,1.0,1.0,4,3,565.679006928589,230.0,20073.211621885148,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011458056853704403,20073.211621885148,5,3,5,5_0,5_3,5_0_0 -19550,2,35.0,0.0,1,111,600.0,900.0,0.0,55,43,0.0,0.0,829.3045365455583,1500.0,0.0,1632.287610762704,71,2,2,1,2,1,2,2,2,2,20.0,1,,1,133071,2,1,2,0,1,,360.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,423.770944998423,600.0,49771.389431007345,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.030137796375551994,23700.66163381302,6,3,6,6_1,6_3,6_1_0 -19551,1,46.0,238.0,1,111,500.0,0.0,0.0,0,54,0.0,0.0,691.0871137879653,500.0,0.0,0.0,10,2,2,1,2,1,2,1,2,0,,2,,1,100498,1,2,0,0,2,,0.0,226.0,12,1.0,3.0,2.0,1.0,1.0,2,2,586.541702457395,500.0,6060.0,0,4,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.08250825082508251,6060.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -19552,2,27.0,0.0,1,111,0.0,0.0,800.0,55,22,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,129277,2,1,2,0,1,,270.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,406.885342455711,0.0,54216.65026221473,1,1,1,2,98.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014755614670601384,25817.452505816538,7,4,7,7_1,7_3,7_1_0 -19553,2,46.0,0.0,1,111,840.0,750.0,0.0,85,52,0.0,0.0,1161.0263511637818,1590.0,0.0,1360.2396756355868,50,2,2,2,1,2,2,2,2,2,20.0,1,,1,101613,2,1,3,0,1,,310.0,,42,3.0,1.0,4.0,4.0,2.5,2,2,536.464462526268,840.0,64826.24633865071,7,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.02452710267526334,25930.498535460283,7,4,7,7_1,7_3,7_1_0 -19554,2,87.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2514.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118106,1,3,4,0,2,,84.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,488.027522934542,0.0,23663.30252843974,0,5,0,1,80.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10624045384107096,23663.30252843974,6,3,6,6_1,6_3,6_1_0 -19555,2,56.0,0.0,1,111,600.0,1200.0,0.0,55,56,0.0,62.110350289167464,829.3045365455583,1860.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,1,,1,131938,2,2,2,0,1,,240.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,448.000888592571,600.0,28419.623839655844,4,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06544773465314536,18946.415893103895,5,3,5,5_1,5_3,5_1_0 -19556,2,26.0,0.0,1,111,565.0,1700.0,0.0,43,42,0.0,0.0,780.9284385804008,2265.0,0.0,3083.2099314406632,71,2,2,1,2,1,1,2,2,2,10.0,1,,1,101133,2,1,2,0,1,,430.0,,43,2.0,0.0,4.0,2.0,1.5,3,2,453.746115214706,565.0,34230.74661610634,1,1,1,2,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06616858304032043,22820.497744070894,6,3,6,6_1,6_3,6_1_0 -19557,1,25.0,463.0,1,111,700.0,450.0,0.0,85,53,0.0,0.0,967.5219593031513,1150.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,125931,2,1,2,0,1,,250.0,700.0,42,1.0,0.0,8.0,5.0,2.4,2,2,484.124997880711,700.0,34052.624407173294,6,1,2,3,148.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03377125904450844,14188.593502988873,3,2,3_1,3_1_1,3_3_1,3_1_0 -19558,2,81.0,0.0,1,111,500.0,800.0,0.0,0,77,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,20,0,0,0,0,0,0,0,0,0,,1,,1,119598,2,1,1,0,1,,180.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,144.522129762609,500.0,16939.73649143598,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07674263414057389,16939.73649143598,4,2,4_0,4_1_0,4_3_0,4_1_0 -19559,1,44.0,200.0,2,111,250.0,300.0,0.0,85,62,0.0,0.0,345.54355689398267,550.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,117861,2,1,0,1,1,800.0,0.0,400.0,42,1.0,0.0,4.0,5.0,2.4,1,1,431.355785296954,250.0,21924.345655752786,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025086267505351253,9135.144023230328,1,1,1_1,1_0_1,1_3_1,1_0_1 -19560,2,60.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1414.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124850,1,2,5,0,1,,239.0,450.0,22,1.0,3.0,5.0,2.0,1.5,1,1,129.624288970577,0.0,16274.093963587595,0,4,2,3,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08688655744299796,10849.395975725063,2,1,2_0,2_1_0,2_3_0,2_0_1 -19561,2,59.0,0.0,2,111,200.0,500.0,0.0,0,52,0.0,0.0,276.4348455151861,700.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,3,10.0,2,,2,113343,1,1,0,0,1,,0.0,213.0,12,1.0,5.0,2.0,1.0,1.0,3,3,167.304025459951,200.0,17627.718966482782,0,1,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039710186061564456,17627.718966482782,4,2,4_0,4_0_0,4_3_0,4_0_1 -19563,2,59.0,0.0,2,111,250.0,1200.0,0.0,0,52,0.0,0.0,345.54355689398267,1450.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,105835,1,1,0,0,1,,300.0,336.0,22,2.0,1.0,4.0,2.0,1.5,2,2,156.574535094599,250.0,39504.415367605114,0,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036704757848132756,26336.276911736742,7,4,7,7_0,7_3,7_0_1 -19564,1,41.0,353.0,2,111,0.0,0.0,1900.0,0,42,0.0,0.0,970.7353361912976,1900.0,0.0,2172.16697184,70,2,2,1,1,1,2,1,2,3,10.0,2,,2,107667,1,2,0,0,1,,0.0,318.0,32,1.0,0.0,4.0,3.0,1.8,2,2,534.653070290164,0.0,9766.304751437181,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.19454645829277462,5425.724861909545,1,1,1_1,1_0_1,1_3_1,1_0_1 -19565,2,52.0,0.0,2,111,330.0,900.0,0.0,0,42,0.0,0.0,456.1174951000571,1230.0,0.0,1632.287610762704,31,2,2,1,2,1,2,2,2,2,20.0,1,,2,103999,2,2,5,0,1,,120.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,614.678558061587,330.0,26893.78155503565,0,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.04573547968636981,26893.78155503565,7,4,7,7_1,7_3,7_0_1 -19566,2,63.0,0.0,1,111,1074.0,486.0,0.0,75,75,0.0,258.79312620486445,1484.4551204165493,1810.0,0.0,881.4353098118602,10,0,0,0,0,0,0,0,0,0,,1,,1,120900,1,1,3,0,1,,460.0,,41,0.0,2.0,6.0,3.0,2.0,2,2,523.719001142161,1074.0,43811.75389775611,5,5,0,1,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04131311438076671,21905.876948878056,6,3,6,6_1,6_3,6_1_0 -19567,1,47.0,308.0,2,111,400.0,570.0,0.0,0,85,0.0,0.0,552.8696910303722,970.0,0.0,1033.782153483046,71,2,2,1,2,1,2,1,2,0,,2,,2,107649,1,3,0,0,1,,0.0,280.0,31,0.0,3.0,3.0,2.0,1.5,1,1,541.3269660277,400.0,10431.211758165484,0,7,2,3,62.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,1,0,1,0.09299015516971845,6954.141172110322,1,1,1_1,1_0_1,1_3_1,1_0_1 -19568,2,65.0,0.0,9,111,1560.0,0.0,0.0,37,75,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,125962,2,1,0,0,1,,0.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,649.009347794323,1560.0,118323.52930265994,1,5,1,2,118.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013184190914468699,78882.35286843996,10,5,10,10_0,10_3,10_0_0 -19569,2,53.0,0.0,2,111,480.0,760.0,0.0,56,64,0.0,0.0,663.4436292364467,1240.0,0.0,1378.376204644061,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,120555,2,1,2,0,1,,400.0,,43,2.0,2.0,6.0,4.0,2.3,2,2,558.319454757248,480.0,35742.57374457198,1,1,1,2,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034692521273410305,15540.24945416173,3,2,3_0,3_1_0,3_3_0,3_0_1 -19570,2,40.0,0.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,988.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,116479,2,1,0,0,1,,0.0,637.0,12,1.0,0.0,3.0,1.0,1.0,1,1,675.375958711422,0.0,30127.2049343084,0,1,2,3,76.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03279428019141865,30127.2049343084,8,4,8,8_0,8_3,8_0_0 -19571,2,59.0,0.0,1,111,524.0,1155.0,0.0,77,62,0.0,0.0,724.2592952497876,1679.0,0.0,2094.7691004788035,50,0,0,0,0,0,0,0,0,0,,1,,1,131919,2,1,4,0,2,,347.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,375.788573710082,524.0,39789.51703212424,7,4,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04219704397629285,26526.344688082827,7,4,7,7_1,7_3,7_1_0 -19572,2,39.0,0.0,5,111,410.0,810.0,0.0,56,68,0.0,0.0,566.6914333061316,1220.0,0.0,1469.0588496864336,20,2,2,2,2,1,2,2,2,3,30.0,1,,3,115007,1,2,3,0,1,,340.0,364.0,43,2.0,0.0,3.0,3.0,1.8,2,2,106.404067616267,410.0,33631.43061144211,1,1,2,3,64.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.036275590357578505,18684.12811746784,4,2,4_0,4_1_0,4_3_0,4_0_0 -19573,1,61.0,270.0,2,111,250.0,120.0,0.0,0,72,0.0,0.0,345.54355689398267,370.0,0.0,217.63834810169388,31,0,0,0,0,0,0,0,0,0,,2,,2,106867,2,1,0,1,1,528.0,170.0,273.0,11,0.0,7.0,2.0,1.0,1.0,3,2,558.079110206239,250.0,4657.286435883953,0,7,2,3,42.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07944540347554852,4657.286435883953,1,1,1_1,1_0_1,1_3_1,1_0_1 -19574,2,42.0,0.0,2,111,300.0,840.0,0.0,56,68,0.0,0.0,414.65226827277917,1140.0,0.0,1523.468436711857,50,2,2,2,1,1,2,2,2,2,1.0,2,,2,109890,2,2,0,1,1,,440.0,387.0,43,2.0,1.0,2.0,3.0,1.8,2,2,420.606252962789,300.0,10722.392428087145,4,1,2,3,50.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.10631955579370395,5956.884682270636,1,1,1_0,1_0_0,1_3_0,1_0_1 -19575,2,72.0,0.0,1,111,2720.0,2325.0,0.0,78,31,0.0,0.0,3759.513899006531,5045.0,0.0,4216.742994470319,41,0,0,0,0,0,0,0,0,0,,1,,1,103176,2,1,2,0,2,,703.0,,41,0.0,1.0,7.0,2.0,1.5,3,2,504.99151758934,2720.0,33884.82760296899,5,5,0,1,130.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14888669522278924,22589.885068645992,6,3,6,6_1,6_3,6_1_0 -19576,2,41.0,0.0,1,111,500.0,1300.0,0.0,0,37,0.0,0.0,691.0871137879653,1800.0,0.0,2357.7487711016834,42,0,0,0,0,0,0,0,0,2,5.0,1,,1,111916,1,3,4,0,2,,502.0,703.0,32,1.0,0.0,4.0,2.0,1.3,1,1,446.538047994432,500.0,69979.42504239245,0,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025721846084182428,53830.3269556865,10,5,10,10_1,10_3,10_1_0 -19577,2,52.0,0.0,2,111,300.0,0.0,0.0,0,62,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,132116,2,1,0,0,1,,180.0,480.0,12,1.0,3.0,2.0,1.0,1.0,2,2,838.176009276243,300.0,24421.481250236255,0,1,2,3,50.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012284267155052184,24421.481250236255,7,4,7,7_0,7_3,7_0_1 -19578,2,44.0,0.0,1,111,650.0,1600.0,0.0,34,34,0.0,31.055175144583732,898.4132479243549,2280.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,1,10.0,1,,1,124821,2,2,1,0,1,,720.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,489.694761276827,650.0,184274.14074901247,1,1,0,1,160.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01237287006593853,76780.8919787552,10,5,10,10_1,10_3,10_1_0 -19579,2,41.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1194.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,116350,2,1,0,0,1,,322.0,396.0,32,1.0,3.0,3.0,2.0,1.5,3,2,509.811737650942,0.0,19806.84933670067,0,4,2,3,60.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06028217712483952,13204.566224467113,2,1,2_0,2_0_0,2_3_0,2_0_1 -19580,2,56.0,0.0,5,111,290.0,697.0,0.0,0,37,0.0,0.0,400.8305259970199,987.0,0.0,1264.116071890672,43,0,0,0,0,0,0,0,0,2,50.0,2,,3,118594,2,1,0,0,1,,340.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,670.476331884527,290.0,40793.599573257336,0,1,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02419497201338021,40793.599573257336,9,5,9,9_0,9_3,9_0_0 -19581,1,82.0,153.0,2,111,500.0,550.0,0.0,0,86,0.0,0.0,691.0871137879653,1050.0,0.0,997.5090954660969,50,2,2,2,1,1,2,2,2,0,,8,,2,114113,1,1,0,0,2,,220.0,374.0,11,0.0,3.0,2.0,1.0,1.0,1,1,642.105516200658,500.0,11939.089074757043,0,5,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.08794640809071669,11939.089074757043,2,1,2_1,2_0_1,2_3_1,2_0_1 -19582,2,43.0,0.0,1,111,0.0,0.0,0.0,46,62,0.0,0.0,0.0,3470.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,104981,2,2,2,0,1,,238.0,,43,2.0,0.0,6.0,5.0,2.8,4,4,603.738586513463,0.0,52149.61950786314,1,1,1,2,150.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06653931577538724,18624.864109951122,4,2,4_0,4_1_0,4_3_0,4_1_0 -19583,1,55.0,175.0,1,111,210.0,835.0,0.0,0,78,0.0,0.0,290.25658779094545,1045.0,0.0,1514.4001722076198,71,0,0,0,0,0,0,0,0,0,,1,,1,132404,1,1,2,0,1,,260.0,456.0,11,0.0,2.0,4.0,1.0,1.0,2,2,124.782819479118,210.0,7883.513597170904,0,6,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1325551084702906,7883.513597170904,1,1,1_1,1_1_1,1_3_1,1_1_0 -19584,2,34.0,0.0,1,111,280.0,1660.0,0.0,37,37,0.0,0.0,387.00878372126056,1940.0,0.0,3010.663815406765,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,108684,2,1,1,0,1,,320.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,143.758086404379,280.0,76624.19488130121,1,1,1,2,140.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025318373693913,51082.79658753414,10,5,10,10_1,10_3,10_1_0 -19585,1,34.0,100.0,2,111,0.0,0.0,0.0,56,53,0.0,0.0,0.0,1152.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123548,2,2,2,0,1,,138.0,500.0,43,2.0,0.0,5.0,4.0,2.1,3,3,158.732216477228,0.0,30404.537544612125,1,4,2,3,110.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037889081467188494,14478.351211720059,3,2,3_1,3_1_1,3_3_1,3_0_1 -19586,1,47.0,401.0,2,111,780.0,1350.0,0.0,85,62,0.0,0.0,1078.0958975092258,2130.0,0.0,2448.431416144056,70,0,0,0,0,0,0,0,0,2,30.0,1,,2,100856,1,1,1,0,1,,600.0,560.0,42,3.0,2.0,5.0,6.0,3.3,2,2,151.589214762611,780.0,31188.137863105763,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06829519637720016,9450.950867607808,1,1,1_1,1_1_1,1_3_1,1_0_1 -19587,1,41.0,364.0,1,111,420.0,560.0,0.0,67,85,0.0,0.0,580.5131755818909,980.0,0.0,1015.6456244745714,50,0,0,0,0,0,0,0,0,0,,1,,1,118127,2,2,3,0,1,,460.0,330.0,42,2.0,0.0,3.0,4.0,2.5,2,2,103.930332002986,420.0,11984.365731553014,4,7,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08177320535368918,4793.746292621206,1,1,1_1,1_1_1,1_3_1,1_1_0 -19588,1,23.0,331.0,2,111,210.0,500.0,0.0,0,81,0.0,0.0,290.25658779094545,710.0,0.0,906.8264504237244,50,2,2,2,2,2,2,1,2,0,,2,,2,124037,2,1,0,0,1,,192.0,308.0,32,1.0,0.0,3.0,2.0,1.3,2,2,143.304377731711,210.0,9494.05668688508,0,4,2,3,53.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07478362763314667,7303.120528373138,1,1,1_1,1_0_1,1_3_1,1_0_1 -19589,1,47.0,68.0,5,111,510.0,110.0,0.0,0,52,0.0,0.0,704.9088560637246,620.0,0.0,199.50181909321938,33,0,0,0,0,0,0,0,0,1,15.0,2,,3,126185,2,2,0,1,1,876.0,261.0,367.0,32,2.0,0.0,4.0,2.0,1.5,2,2,412.962175067057,510.0,25552.21586283242,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0242640404780642,17034.810575221614,4,2,4_1,4_0_1,4_3_1,4_0_0 -19590,0,84.0,0.0,2,111,310.0,1800.0,0.0,0,77,0.0,0.0,428.47401054853844,2110.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,2,,2,119775,2,1,0,1,1,1500.0,0.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,610.266737653004,310.0,24843.677404153495,0,5,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08493106578687257,24843.677404153495,7,4,7,7_0,7_3,7_0_1 -19594,2,82.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,653.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,128902,1,2,0,0,2,,192.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,670.476331884527,0.0,20516.286315954014,0,5,0,1,70.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03182837234496039,20516.286315954014,5,3,5,5_0,5_3,5_0_1 -19595,2,36.0,0.0,2,111,500.0,600.0,0.0,0,37,0.0,0.0,691.0871137879653,1100.0,0.0,1088.1917405084694,10,2,2,1,1,1,2,2,2,3,60.0,2,,2,101880,1,2,0,0,2,,270.0,390.0,22,1.0,0.0,3.0,2.0,1.5,2,2,680.237955488138,500.0,41626.865798327344,0,1,2,3,65.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026425241941808657,27751.24386555156,7,4,7,7_0,7_3,7_0_1 -19596,2,71.0,0.0,5,111,408.0,990.0,0.0,86,78,0.0,0.0,563.9270848509797,1398.0,0.0,1795.5163718389745,43,2,2,2,1,1,2,2,2,0,,1,,3,116396,2,1,1,0,1,,210.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,518.440767410451,408.0,22047.736604341473,6,5,0,1,92.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06340786925605399,14698.491069560981,3,2,3_0,3_1_0,3_3_0,3_0_0 -19597,1,23.0,260.0,9,111,500.0,0.0,0.0,85,55,0.0,0.0,691.0871137879653,500.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,45.0,2,2005.0,6,107280,2,3,0,0,1,,0.0,430.0,42,1.0,0.0,1.0,3.0,1.8,4,3,880.412175146955,500.0,17751.713426272167,6,1,2,3,35.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028166295162246727,9862.063014595647,2,1,2_1,2_0_1,2_3_1,2_0_0 -19599,1,20.0,375.0,2,111,600.0,0.0,0.0,0,81,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,100429,2,1,0,1,1,,537.0,508.0,32,1.0,0.0,4.0,3.0,1.8,3,3,472.757323305709,600.0,6600.903905174073,0,4,2,3,86.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09089664212952625,3667.168836207818,1,1,1_1,1_0_1,1_3_1,1_0_1 -19600,2,40.0,0.0,8,111,1300.0,0.0,0.0,56,53,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,106951,1,1,1,0,1,,440.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,547.299796729253,1300.0,38223.05334389664,1,1,1,2,75.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03401088835849323,15926.2722266236,3,2,3_0,3_1_0,3_3_0,3_0_0 -19601,2,33.0,0.0,8,111,1117.0,0.0,0.0,46,46,0.0,0.0,1543.8886122023143,1117.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,128247,1,1,2,0,2,,313.0,830.0,43,2.0,0.0,4.0,3.0,1.8,2,2,585.449190160613,1117.0,86178.58924592618,1,1,2,3,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012961456085251507,47876.99402551454,10,5,10,10_1,10_3,10_0_0 -19602,2,32.0,0.0,1,111,0.0,0.0,510.0,48,22,0.0,0.0,260.5658007671378,510.0,0.0,583.055345072842,60,0,0,0,0,0,0,0,0,2,40.0,1,,1,111979,2,2,1,0,1,,360.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,511.425826560589,0.0,55203.51081081886,1,1,1,2,95.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009238542848257569,36802.340540545905,9,5,9,9_1,9_3,9_1_0 -19603,0,75.0,0.0,1,111,536.0,2070.0,0.0,0,75,0.0,0.0,740.8453859806988,2606.0,0.0,3754.261504754219,50,0,0,0,0,0,0,0,0,0,,1,,1,123457,2,2,1,0,2,,483.0,,11,0.0,1.0,8.0,1.0,1.0,1,1,577.799958702421,536.0,19715.48001076956,0,5,0,1,200.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13218039827467937,19715.48001076956,5,3,5,5_1,5_3,5_1_0 -19604,2,67.0,0.0,1,111,580.0,2600.0,0.0,75,72,0.0,0.0,801.6610519940398,4871.0,0.0,4715.497542203367,50,0,0,0,0,0,0,0,0,0,,1,,1,126800,2,1,3,0,1,,550.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,511.425826560589,580.0,120291.57214480711,5,5,0,1,200.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04049327740214655,80194.38142987141,10,5,10,10_1,10_3,10_1_0 -19605,2,62.0,0.0,1,111,512.0,1805.0,0.0,74,37,0.0,0.0,707.6732045188764,2317.0,0.0,3273.6434860296454,41,2,2,1,2,1,2,2,2,2,15.0,1,,1,123948,2,1,3,0,1,,352.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,511.425826560589,512.0,87867.97201285175,5,1,0,1,150.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.026369107502118187,58578.648008567834,10,5,10,10_1,10_3,10_1_0 -19606,2,53.0,0.0,7,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1763.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,5.0,8,,5,127970,2,1,0,0,1,,0.0,750.0,12,1.0,2.0,3.0,1.0,1.0,3,3,755.988626921966,0.0,95428.3458319543,0,1,2,3,83.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01847459457281777,95428.3458319543,10,5,10,10_0,10_3,10_0_0 -19607,2,37.0,0.0,1,111,1200.0,0.0,0.0,0,42,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,1,130371,2,1,0,0,1,,150.0,571.0,12,1.0,0.0,3.0,1.0,1.0,2,2,560.182800529877,1200.0,28535.549284414028,0,1,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04205280886796996,28535.549284414028,8,4,8,8_0,8_3,8_1_0 -19608,2,63.0,0.0,1,111,366.0,634.0,0.0,78,74,0.0,0.0,505.87576729279056,1000.0,0.0,1149.8559391372826,31,0,0,0,0,0,0,0,0,0,,1,,1,127710,2,1,2,0,1,,240.0,640.0,41,0.0,3.0,5.0,2.0,1.5,2,1,538.410008202948,366.0,34208.55448114953,5,5,2,3,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029232454138073728,22805.70298743302,6,3,6,6_1,6_3,6_1_0 -19609,2,57.0,0.0,2,111,480.0,80.0,0.0,67,48,0.0,0.0,663.4436292364467,560.0,0.0,145.09223206779592,10,2,2,1,1,1,1,1,2,2,25.0,2,,2,107130,1,2,0,1,2,624.0,520.0,290.0,43,3.0,0.0,4.0,3.0,2.0,1,1,391.653143610331,480.0,57810.02339265119,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.00968690145991512,28905.011696325593,8,4,8,8_0,8_3,8_0_1 -19610,2,75.0,0.0,2,111,300.0,900.0,0.0,78,78,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,70,2,2,1,2,1,2,1,2,0,,1,,2,131108,2,2,5,0,1,,400.0,400.0,41,1.0,4.0,4.0,3.0,2.0,2,2,427.71359847271,300.0,26434.44044293686,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.045395324428765566,13217.22022146843,2,1,2_0,2_1_0,2_3_0,2_0_1 -19611,2,68.0,0.0,2,111,240.0,500.0,0.0,75,78,0.0,0.0,331.72181461822333,740.0,0.0,906.8264504237244,31,2,2,1,2,1,2,1,2,0,,2,,2,122150,2,1,0,0,1,,210.0,280.0,41,0.0,0.0,3.0,2.0,1.5,2,2,462.104522442129,240.0,22982.671710092432,5,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.032198171271577716,15321.781140061621,3,2,3_0,3_0_0,3_3_0,3_0_1 -19612,2,55.0,0.0,2,111,500.0,900.0,0.0,52,62,0.0,0.0,691.0871137879653,4023.0,0.0,1632.287610762704,70,2,2,1,2,1,2,2,2,2,40.0,1,,2,127108,2,1,2,0,2,,244.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,428.216210466349,500.0,54014.38189359917,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.07448016359651678,27007.190946799587,7,4,7,7_1,7_3,7_0_1 -19613,2,73.0,0.0,1,111,380.0,0.0,0.0,0,77,0.0,414.0690019277831,525.2262064788536,840.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106982,2,1,3,0,1,,64.0,596.0,21,1.0,1.0,6.0,2.0,1.5,3,3,623.535282620032,380.0,35994.46058803766,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023336924245481377,23996.307058691775,6,3,6,6_1,6_3,6_1_0 -19614,2,59.0,0.0,1,111,300.0,1000.0,0.0,56,46,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,33,0,0,0,0,0,0,0,0,1,14.0,1,,1,131771,2,2,2,0,1,,200.0,,43,2.0,5.0,5.0,3.0,2.0,2,2,437.784813868578,300.0,23558.00758249193,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05518293495100777,11779.003791245965,2,1,2_0,2_1_0,2_3_0,2_1_0 -19615,1,49.0,434.0,5,111,650.0,1000.0,0.0,85,85,0.0,0.0,898.4132479243549,1650.0,0.0,1813.6529008474488,71,1,2,1,1,1,2,1,2,0,,1,,3,100272,2,2,3,0,1,,550.0,517.0,41,0.0,5.0,5.0,4.0,2.1,1,1,445.924613808118,650.0,11344.363160344637,6,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,1,1,0,1,0.14544668366821514,5402.0776954022085,1,1,1_1,1_1_1,1_3_1,1_0_0 -19616,2,50.0,0.0,1,111,860.0,0.0,0.0,65,63,2037.249772252553,0.0,1188.6698357153002,2274.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,101586,2,1,2,0,1,,365.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,414.39184790537,860.0,43161.27566752295,1,1,0,1,100.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052686116543841865,17264.51026700918,4,2,4_0,4_1_0,4_3_0,4_1_0 -19617,2,38.0,0.0,1,111,800.0,1200.0,0.0,55,47,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,132982,2,2,1,0,1,,550.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,437.784813868578,800.0,37454.50835957464,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053398111137900765,20808.060199763688,5,3,5,5_1,5_3,5_1_0 -19618,2,30.0,0.0,1,111,0.0,0.0,0.0,56,62,0.0,0.0,0.0,3873.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,122708,2,1,1,0,1,,408.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,432.232888181246,0.0,46324.3718549537,1,1,1,2,95.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08360609858082384,25735.762141640946,7,4,7,7_1,7_3,7_1_0 -19619,2,52.0,0.0,1,111,217.0,648.0,0.0,0,46,0.0,0.0,299.93180738397695,865.0,0.0,1175.247079749147,71,2,2,2,2,1,2,2,2,2,20.0,1,,1,105485,2,1,1,0,1,,154.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,498.293339980921,217.0,22924.388856929,0,1,1,2,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03773273980817813,22924.388856929,6,3,6,6_1,6_3,6_1_0 -19620,2,69.0,0.0,2,111,270.0,276.0,0.0,78,78,0.0,931.655254337512,373.1870414455012,1446.0,0.0,500.5682006338959,70,0,0,0,0,0,0,0,0,0,,1,,2,123366,2,1,2,0,1,,340.0,,41,0.0,1.0,4.0,3.0,2.0,2,2,587.416207882694,270.0,37860.87969937385,5,5,1,2,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03819245647437807,18930.439849686925,5,3,5,5_1,5_3,5_0_1 -19621,1,62.0,97.0,2,111,300.0,350.0,0.0,0,77,0.0,0.0,414.65226827277917,650.0,0.0,634.7785152966071,60,2,2,2,2,2,1,2,1,0,,2,,2,116309,1,3,0,0,1,,150.0,280.0,11,0.0,1.0,2.0,1.0,1.0,1,1,521.013630840576,300.0,11725.578946024802,0,5,2,3,45.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05543436302736784,11725.578946024802,2,1,2_1,2_0_1,2_3_1,2_0_1 -19622,2,59.0,0.0,1,111,500.0,1400.0,0.0,77,62,0.0,0.0,691.0871137879653,1900.0,0.0,2539.1140611864284,20,0,0,0,0,0,0,0,0,2,1.0,1,,1,133192,2,1,2,0,1,,350.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,354.700141024922,500.0,19116.04021960232,7,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09939296936881663,12744.026813068214,2,1,2_0,2_1_0,2_3_0,2_1_0 -19623,2,75.0,0.0,2,111,100.0,1000.0,0.0,75,75,0.0,0.0,138.21742275759306,1100.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,2,109026,2,2,1,0,1,,180.0,218.0,41,0.0,0.0,2.0,2.0,1.5,1,1,447.309198468403,100.0,29457.754930904906,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03734161013220872,19638.503287269938,5,3,5,5_1,5_3,5_0_1 -19624,2,66.0,0.0,2,111,63.0,58.0,0.0,77,75,0.0,0.0,87.07697633728363,121.0,0.0,105.19186824915204,50,0,0,0,0,0,0,0,0,0,,1,,2,105061,2,1,2,0,1,,396.0,,41,1.0,2.0,8.0,3.0,2.0,1,1,556.351922741,63.0,63403.52555789359,5,5,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.001908411226904334,31701.762778946795,8,4,8,8_1,8_3,8_0_1 -19625,2,55.0,0.0,1,111,640.0,1000.0,0.0,67,64,0.0,0.0,884.5915056485956,1640.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,109262,2,1,1,0,1,,336.0,600.0,43,2.0,2.0,6.0,2.0,1.5,1,1,373.602280940759,640.0,27317.262937598127,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06003529723114336,18211.508625065417,4,2,4_0,4_1_0,4_3_0,4_1_0 -19626,0,92.0,0.0,1,111,260.0,1500.0,0.0,0,77,0.0,0.0,359.36529916974195,1760.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,1,117362,2,1,2,0,2,,160.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,477.226269154147,260.0,17754.0459957858,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09913233301399374,17754.0459957858,4,2,4_0,4_1_0,4_3_0,4_1_0 -19627,1,22.0,395.0,2,111,0.0,0.0,1200.0,0,85,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,70,2,2,1,2,1,2,2,2,0,,8,,2,114613,1,3,0,0,1,,0.0,435.0,31,0.0,0.0,3.0,4.0,1.9,2,2,437.798455074243,0.0,13347.485038300008,0,6,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.08990457727104799,7024.992125421058,1,1,1_1,1_0_1,1_3_1,1_0_1 -19628,1,38.0,44.0,2,111,300.0,1700.0,0.0,0,52,0.0,0.0,414.65226827277917,2000.0,0.0,3083.2099314406632,50,2,2,1,2,1,2,2,2,2,20.0,1,,2,116943,1,2,5,0,2,,300.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,420.699019575414,300.0,23742.42630545641,0,1,1,2,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.08423738897908535,18263.404850351086,4,2,4_1,4_1_1,4_3_1,4_0_1 -19629,2,64.0,0.0,1,111,1080.0,0.0,0.0,78,78,0.0,0.0,1492.748165782005,1236.0,268.3710126536699,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129501,1,1,2,0,2,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,438.085523036068,1080.0,30721.195831936664,5,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040232808864656834,20480.797221291108,5,3,5,5_1,5_3,5_1_0 -19630,1,45.0,170.0,1,111,350.0,1300.0,0.0,85,63,0.0,0.0,483.76097965157567,1750.0,172.03270041901916,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,1,108882,2,1,2,0,1,,900.0,,42,1.0,0.0,5.0,5.0,2.8,3,2,348.322722567168,350.0,46813.765222120084,6,4,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03738216722574375,16719.201865042887,4,2,4_1,4_1_1,4_3_1,4_1_0 -19631,1,48.0,180.0,6,111,550.0,1150.0,0.0,0,52,0.0,0.0,760.1958251667618,1700.0,0.0,2085.7008359745664,50,0,0,0,0,0,0,0,0,1,12.0,1,,4,133516,1,2,3,0,1,,700.0,259.0,32,2.0,4.0,5.0,2.0,1.5,2,2,450.937949915091,550.0,13486.09967845659,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12605571963224252,8990.73311897106,1,1,1_1,1_1_1,1_3_1,1_0_0 -19632,2,61.0,0.0,1,111,1100.0,0.0,0.0,78,75,0.0,248.44140115666985,1520.3916503335236,1340.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122396,2,2,3,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,422.265216612075,1100.0,36155.37781471526,5,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03706225964134771,24103.585209810175,6,3,6,6_1,6_3,6_1_0 -19633,2,44.0,0.0,1,111,1110.0,730.0,0.0,55,46,0.0,0.0,1534.213392609283,1840.0,0.0,1323.9666176186377,50,2,2,2,2,1,2,2,2,0,,1,,1,129376,1,2,1,0,1,,460.0,675.0,43,2.0,0.0,6.0,5.0,2.8,1,1,467.476308237971,1110.0,33771.131723395185,1,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05448440446327498,12061.118472641137,2,1,2_0,2_1_0,2_3_0,2_1_0 -19634,2,75.0,0.0,2,111,240.0,107.0,0.0,78,78,0.0,0.0,331.72181461822333,347.0,0.0,194.06086039067702,43,0,0,0,0,0,0,0,0,0,,8,,2,128582,2,1,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,508.602712355733,240.0,33940.29784320655,5,5,0,1,79.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010223834852688398,22626.865228804367,6,3,6,6_0,6_3,6_0_1 -19635,2,40.0,0.0,2,111,0.0,0.0,2370.0,37,33,0.0,0.0,1210.8646035649344,2370.0,0.0,2709.4924859267367,70,0,0,0,0,0,0,0,0,0,,1,,2,102755,2,2,3,0,1,,460.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,534.571861194262,0.0,79419.70667276035,1,1,1,2,139.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02984146000142394,37818.90793940969,9,5,9,9_1,9_3,9_0_1 -19636,2,59.0,0.0,6,111,2600.0,0.0,0.0,75,37,0.0,0.0,3593.6529916974196,2600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112121,2,1,2,0,1,,570.0,,42,2.0,2.0,6.0,4.0,2.5,2,2,516.014352514667,2600.0,97977.89006141486,5,4,0,1,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026536599209987667,39191.15602456594,9,5,9,9_1,9_3,9_0_0 -19637,2,64.0,0.0,1,111,1000.0,1868.0,0.0,77,75,0.0,0.0,1382.1742275759307,2868.0,0.0,3387.9036187830347,10,0,0,0,0,0,0,0,0,0,,1,,1,112788,2,1,2,0,1,,456.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,420.699019575414,1000.0,39836.6402397973,5,5,0,1,45.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07199402315898197,26557.760159864865,7,4,7,7_1,7_3,7_1_0 -19638,2,33.0,0.0,7,111,1080.0,1140.0,0.0,46,37,0.0,0.0,1492.748165782005,2220.0,0.0,2067.564306966092,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,113939,2,1,2,0,1,,480.0,890.0,43,2.0,0.0,5.0,3.0,1.8,4,4,560.614273960742,1080.0,49176.66411788144,1,1,2,3,104.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04514336301214811,27320.368954378577,7,4,7,7_1,7_3,7_0_0 -19640,2,69.0,0.0,1,111,2900.0,0.0,0.0,86,86,0.0,2432.655386325726,4008.3052599701987,5250.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,1,,1,125359,2,1,3,0,1,,1200.0,,41,1.0,1.0,5.0,6.0,3.5,3,3,555.631257511122,2900.0,89750.4490091005,5,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.058495529080502554,25642.98543117157,7,4,7,7_1,7_3,7_1_0 -19641,2,58.0,0.0,1,111,1776.0,732.0,0.0,75,54,0.0,0.0,2454.7414281748524,2508.0,0.0,1327.5939234203327,31,0,0,0,0,0,0,0,0,3,20.0,1,,1,107844,2,2,2,0,1,,360.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,438.085523036068,1776.0,30019.44117332258,6,1,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08354585901581632,20012.960782215054,5,3,5,5_1,5_3,5_1_0 -19642,2,72.0,0.0,5,111,1200.0,1482.0,0.0,0,77,0.0,0.0,1658.6090730911167,2682.0,0.0,2687.8335990559194,50,0,0,0,0,0,0,0,0,0,,1,,3,108995,2,1,2,0,1,,252.0,,11,0.0,6.0,6.0,1.0,1.0,2,2,175.82010480347,1200.0,10921.059732613263,0,5,0,1,98.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2455805632113536,10921.059732613263,2,1,2_0,2_1_0,2_3_0,2_0_0 -19643,1,43.0,100.0,7,111,540.0,1140.0,0.0,0,64,0.0,0.0,746.3740828910024,1680.0,0.0,2067.564306966092,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,109825,1,3,2,0,1,,240.0,369.0,32,1.0,2.0,4.0,2.0,1.5,2,2,129.791484652009,540.0,18095.891011869488,0,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0928387554333772,12063.927341246324,2,1,2_1,2_1_1,2_3_1,2_0_0 -19644,2,91.0,0.0,1,111,1500.0,890.0,0.0,86,78,0.0,0.0,2073.261341363896,2440.0,86.01635020950958,1614.1510817542296,50,0,0,0,0,0,0,0,0,0,,1,,1,123956,2,1,2,0,1,,450.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,428.473547813048,1500.0,24845.579669197105,5,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09820660385014272,16563.719779464736,4,2,4_0,4_1_0,4_2_0,4_1_0 -19646,2,38.0,0.0,5,111,490.0,195.0,0.0,0,52,0.0,0.0,677.265371512206,685.0,0.0,353.66231566525255,71,0,0,0,0,0,0,0,0,0,,1,,3,124912,1,1,3,0,2,,280.0,,22,1.0,3.0,4.0,2.0,1.5,1,1,1012.85906715936,490.0,26023.54692200687,0,1,0,1,91.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026322315019276954,17349.031281337913,4,2,4_0,4_1_0,4_2_0,4_0_0 -19647,2,80.0,0.0,2,111,200.0,1850.0,0.0,0,77,0.0,0.0,276.4348455151861,2050.0,0.0,3355.2578665677806,71,0,0,0,0,0,0,0,0,0,,1,,2,101258,1,2,3,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1184.13975970492,200.0,4878.391454812979,0,5,0,1,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4202204802522536,4878.391454812979,1,1,1_0,1_1_0,1_2_0,1_0_1 -19648,2,63.0,0.0,5,111,300.0,700.0,0.0,77,78,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,1,,3,106680,2,1,2,0,1,,320.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1049.76996551234,300.0,24270.0,7,5,0,1,91.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04120313143798929,16180.0,4,2,4_0,4_1_0,4_2_0,4_0_0 -19649,1,52.0,340.0,6,111,310.0,850.0,0.0,0,85,0.0,0.0,428.47401054853844,1160.0,0.0,1541.6049657203316,70,0,0,0,0,0,0,0,0,0,,2,,4,125949,2,2,0,0,1,,727.0,395.0,31,2.0,2.0,3.0,3.0,2.0,2,2,896.323343894413,310.0,9474.567501183074,0,6,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12243302924963623,4737.283750591537,1,1,1_1,1_0_1,1_2_1,1_0_0 -19650,1,59.0,320.0,5,111,450.0,1100.0,0.0,85,78,0.0,0.0,621.9784024091688,1550.0,0.0,1995.0181909321939,71,2,2,2,2,1,2,2,2,0,,2,,3,122310,2,2,0,0,1,,800.0,600.0,41,0.0,8.0,5.0,2.0,1.5,1,1,1086.0436282682,450.0,10209.466666666665,6,7,2,3,110.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.15181987958887833,6806.31111111111,1,1,1_1,1_0_1,1_2_1,1_0_0 -19651,2,62.0,0.0,1,111,700.0,0.0,0.0,78,78,0.0,579.6966026988963,967.5219593031513,1390.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109159,2,1,1,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,964.375150443906,700.0,22885.297851887488,6,5,0,1,80.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06073768447306262,15256.865234591658,3,2,3_0,3_1_0,3_2_0,3_1_0 -19652,2,66.0,0.0,2,111,550.0,1050.0,0.0,75,77,0.0,0.0,760.1958251667618,1600.0,0.0,1904.3355458898213,70,0,0,0,0,0,0,0,0,0,,1,,2,115947,2,2,3,0,1,,262.0,427.0,41,0.0,4.0,3.0,2.0,1.5,1,1,777.561433961646,550.0,32922.588392025464,5,5,2,3,75.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04859885197810125,21948.39226135031,6,3,6,6_1,6_2,6_0_1 -19653,2,65.0,0.0,5,111,1200.0,0.0,0.0,78,78,0.0,258.79312620486445,1658.6090730911167,1510.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,127132,2,1,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1012.85906715936,1200.0,27406.969314623922,5,5,0,1,111.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055095475266369126,18271.31287641595,4,2,4_0,4_1_0,4_2_0,4_0_0 -19654,2,64.0,0.0,5,111,1200.0,0.0,0.0,0,75,0.0,724.6207533736205,1658.6090730911167,1950.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110764,2,2,2,0,1,,140.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1144.07637313532,1200.0,37888.1690524909,0,5,0,1,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051467253466337674,37888.1690524909,9,5,9,9_1,9_2,9_0_0 -19655,1,26.0,295.0,2,111,600.0,0.0,0.0,21,68,0.0,0.0,829.3045365455583,690.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,120241,2,2,5,0,1,,150.0,600.0,43,2.0,2.0,4.0,2.0,1.5,2,2,829.504184346796,600.0,24690.540966369495,1,1,2,3,75.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02794592475474051,16460.36064424633,4,2,4_1,4_1_1,4_2_1,4_0_1 -19656,2,47.0,0.0,6,111,100.0,0.0,0.0,0,38,4480.754631054002,724.6207533736205,138.21742275759306,3830.0,51.60981012570575,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,110343,2,1,3,0,2,,120.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1040.60880856676,100.0,29070.096260177605,0,1,0,1,160.0,6,5,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1317505097238574,29070.096260177605,8,4,8,8_1,8_2,8_0_0 -19657,2,64.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1175.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,130981,2,2,3,0,1,,205.0,265.0,11,0.0,3.0,2.0,1.0,1.0,2,2,993.898913971138,0.0,18249.473367332983,0,5,2,3,44.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06438541958713612,18249.473367332983,4,2,4_0,4_1_0,4_2_0,4_0_1 -19658,2,47.0,0.0,6,111,650.0,1550.0,0.0,22,38,0.0,0.0,898.4132479243549,2200.0,0.0,2811.161996313546,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,107760,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,3.0,2.0,4,3,1081.24364504143,650.0,44870.30435822337,4,1,0,1,140.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049030200072552134,22435.152179111687,6,3,6,6_1,6_2,6_0_0 -19659,2,68.0,0.0,1,111,450.0,850.0,0.0,86,72,0.0,0.0,621.9784024091688,1300.0,0.0,1541.6049657203316,44,0,0,0,0,0,0,0,0,0,,1,,1,119975,2,1,1,0,1,,300.0,,41,0.0,3.0,7.0,2.0,1.5,4,3,870.927415980932,450.0,20141.145410789788,6,5,0,1,115.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06454449205771479,13427.430273859858,3,2,3_0,3_1_0,3_2_0,3_1_0 -19660,2,60.0,0.0,1,111,750.0,1140.0,0.0,85,78,0.0,0.0,1036.630670681948,1890.0,0.0,2067.564306966092,50,0,0,0,0,0,0,0,0,0,,1,,1,115425,2,1,2,0,1,,350.0,,41,0.0,2.0,5.0,3.0,2.0,2,2,859.254485538195,750.0,23361.196309807452,6,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08090339103081566,11680.598154903726,2,1,2_0,2_1_0,2_2_0,2_1_0 -19661,2,32.0,0.0,2,111,1000.0,0.0,0.0,55,62,0.0,1242.2070057833494,1382.1742275759307,2300.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,1,20.0,1,,2,120721,2,1,3,0,1,,320.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1171.40581951812,1000.0,23976.277172951948,1,1,1,2,110.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0959281536248951,15984.184781967966,3,2,3_0,3_1_0,3_2_0,3_0_1 -19662,2,35.0,0.0,2,111,0.0,0.0,0.0,67,62,0.0,0.0,0.0,1406.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,102912,1,3,4,0,2,,814.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,814.503517981617,0.0,47727.44681466166,4,1,1,2,70.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029458940166229113,26515.248230367586,7,4,7,7_1,7_2,7_0_1 -19663,1,57.0,240.0,8,111,390.0,822.0,0.0,0,78,0.0,0.0,539.0479487546129,1212.0,0.0,1490.822684496603,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107920,2,1,1,0,1,,260.0,378.0,21,1.0,1.0,3.0,2.0,1.5,2,2,878.721939144016,390.0,6150.577428905412,0,7,2,3,66.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1970546690956289,4100.384952603607,1,1,1_1,1_1_1,1_2_1,1_0_0 -19664,2,70.0,0.0,5,111,350.0,1100.0,0.0,0,77,0.0,0.0,483.76097965157567,1450.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,0,,1,,3,122151,2,2,5,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1198.24987716982,350.0,19015.64218896408,0,5,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07625301241950809,19015.64218896408,5,3,5,5_1,5_2,5_0_0 -19665,2,79.0,0.0,1,111,300.0,0.0,0.0,0,77,2837.8112663342013,0.0,414.65226827277917,2320.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,113891,2,1,2,0,2,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,975.483618694684,300.0,16457.061890506724,0,5,0,1,80.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14097291578749513,16457.061890506724,4,2,4_0,4_1_0,4_2_0,4_1_0 -19666,2,62.0,0.0,2,111,350.0,855.0,0.0,78,78,0.0,0.0,483.76097965157567,1205.0,0.0,1550.673230224569,12,0,0,0,0,0,0,0,0,0,,1,,2,113037,2,1,3,0,1,,507.0,,41,0.0,3.0,5.0,2.0,1.5,4,4,1095.28809899775,350.0,23069.56912502942,6,5,0,1,93.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05223331192140171,15379.712750019613,3,2,3_0,3_1_0,3_2_0,3_0_1 -19667,1,34.0,300.0,5,111,450.0,1360.0,0.0,0,56,0.0,155.27587572291867,621.9784024091688,1960.0,0.0,2466.5679451525307,41,0,0,0,0,0,0,0,0,0,,1,,3,108456,2,1,2,0,1,,700.0,625.0,32,1.0,0.0,5.0,4.0,2.1,1,1,894.831475738897,450.0,23300.233370561775,0,1,2,3,73.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08411932914269965,11095.349224077036,2,1,2_1,2_1_1,2_2_1,2_0_0 -19668,2,63.0,0.0,1,111,410.0,2590.0,0.0,56,75,0.0,0.0,566.6914333061316,3000.0,0.0,4697.361013194893,42,0,0,0,0,0,0,0,0,0,,1,,1,124305,2,2,1,0,1,,220.0,,42,2.0,1.0,6.0,3.0,2.0,1,1,886.622845239591,410.0,48185.91903445512,1,5,0,1,110.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.062258851965755056,24092.95951722756,6,3,6,6_1,6_2,6_1_0 -19669,2,61.0,0.0,5,111,450.0,1100.0,0.0,0,74,0.0,0.0,621.9784024091688,1550.0,0.0,1995.0181909321939,41,0,0,0,0,0,0,0,0,0,,1,,3,124803,2,2,1,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1184.13975970492,450.0,28214.430407036976,0,5,0,1,92.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054936427127496204,28214.430407036976,8,4,8,8_1,8_2,8_0_0 -19670,2,52.0,0.0,7,111,450.0,1200.0,0.0,0,54,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,121109,2,2,5,0,1,,330.0,,32,1.0,1.0,4.0,2.0,1.5,1,1,1009.19202408345,450.0,21784.25137921815,0,1,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07574279103178526,14522.8342528121,3,2,3_0,3_1_0,3_2_0,3_0_0 -19671,2,30.0,0.0,2,111,1600.0,0.0,0.0,0,42,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,100483,2,2,5,0,1,,178.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1206.36721297561,1600.0,22563.732705352828,0,1,1,2,120.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07091025323218926,22563.732705352828,6,3,6,6_1,6_2,6_0_1 -19672,2,63.0,0.0,1,111,550.0,1500.0,0.0,55,78,0.0,0.0,760.1958251667618,2050.0,0.0,2720.4793512711735,20,2,2,2,2,1,2,2,2,0,,1,,1,118420,1,1,2,0,1,,370.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,825.601262998661,550.0,35815.159963617676,1,5,0,1,80.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05723833153565316,23876.77330907845,6,3,6,6_1,6_2,6_1_0 -19673,2,73.0,0.0,1,111,1350.0,0.0,0.0,72,72,0.0,0.0,1865.9352072275062,1470.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,125561,2,1,2,0,1,,350.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,877.326496502428,1350.0,37660.47376567556,5,5,0,1,180.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0390329662113753,25106.982510450373,7,4,7,7_1,7_2,7_1_0 -19674,2,56.0,0.0,5,111,720.0,0.0,0.0,77,64,0.0,0.0,995.16544385467,750.0,51.60981012570575,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,113771,2,1,1,0,1,,250.0,620.0,42,1.0,2.0,4.0,2.0,1.5,3,2,865.676754806452,720.0,27361.305862956164,7,1,2,3,76.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027410972405940887,18240.87057530411,4,2,4_0,4_1_0,4_2_0,4_0_0 -19675,2,55.0,0.0,2,111,370.0,0.0,0.0,77,64,0.0,828.1380038555662,511.40446420309434,1320.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,122413,1,1,4,0,1,,240.0,,42,1.0,0.0,4.0,2.0,1.5,4,3,913.007171806259,370.0,31013.337591863412,7,1,0,1,80.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04256233293466331,20675.558394575608,5,3,5,5_1,5_2,5_0_1 -19676,2,48.0,0.0,2,111,1200.0,0.0,0.0,0,34,2389.735803228801,258.79312620486445,1658.6090730911167,3170.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,2,6.0,1,,2,110019,2,1,2,0,1,,900.0,,32,1.0,0.0,6.0,4.0,2.3,2,2,888.893415204163,1200.0,89306.72091312199,0,1,1,2,123.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03549564878867058,38829.009092661734,9,5,9,9_1,9_2,9_0_1 -19677,1,47.0,110.0,2,111,800.0,0.0,0.0,56,63,2240.377315527001,414.0690019277831,1105.7393820607444,2820.0,206.439240502823,0.0,33,2,2,2,2,1,2,2,2,2,6.0,1,,2,112636,1,2,3,0,2,,450.0,580.0,43,2.0,5.0,6.0,4.0,2.3,2,2,857.743921060135,800.0,38423.39546127961,1,1,2,3,100.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.07339278494639542,16705.824113599832,4,2,4_1,4_1_1,4_2_1,4_0_1 -19678,2,55.0,0.0,2,111,320.0,800.0,0.0,54,43,0.0,517.5862524097289,442.2957528242978,1620.0,0.0,1450.922320677959,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,131518,1,3,3,0,1,,320.0,,43,2.0,2.0,5.0,3.0,2.0,1,1,914.378569231471,320.0,47575.23296099647,1,1,0,1,110.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034051330895807114,23787.616480498236,6,3,6,6_1,6_2,6_0_1 -19679,2,54.0,0.0,9,111,400.0,800.0,0.0,0,52,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,43,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,112810,2,1,1,0,1,,320.0,475.0,32,1.0,2.0,4.0,2.0,1.5,1,1,885.201847118965,400.0,28832.237372959557,0,1,2,3,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04162007909678995,19221.491581973038,5,3,5,5_1,5_2,5_0_0 -19680,1,30.0,351.0,2,111,300.0,600.0,0.0,0,56,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,33,2,2,2,2,1,2,2,1,0,,2,,2,101264,1,3,0,0,1,,220.0,430.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1215.78589476906,300.0,9062.468474888718,0,1,2,3,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.09931069029302765,6971.129596068244,1,1,1_1,1_0_1,1_2_1,1_0_1 -19681,2,82.0,0.0,1,111,360.0,2000.0,0.0,72,75,0.0,0.0,497.582721927335,2360.0,0.0,3627.3058016948976,31,0,0,0,0,0,0,0,0,0,,1,,1,108708,2,2,3,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,727.149701252361,360.0,35229.134321561105,5,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.066990008282878,23486.089547707405,6,3,6,6_1,6_2,6_1_0 -19682,2,47.0,0.0,2,111,600.0,0.0,0.0,85,21,2987.1697540360015,0.0,829.3045365455583,2780.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120829,2,1,3,0,1,,400.0,,42,2.0,0.0,4.0,3.0,2.0,2,2,806.391724568452,600.0,34270.9312223038,6,1,1,2,80.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08111830933239285,17135.4656111519,4,2,4_0,4_1_0,4_2_0,4_0_1 -19683,2,70.0,0.0,7,111,760.0,0.0,0.0,77,74,2539.0942909306013,51.75862524097289,1050.452412957707,2600.0,154.82943037711726,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,101802,2,1,2,0,1,,167.0,,41,0.0,2.0,7.0,2.0,1.5,4,4,966.647149818489,760.0,46293.21930986994,5,5,0,1,184.0,6,5,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05616373280493948,30862.14620657996,8,4,8,8_1,8_2,8_0_0 -19684,1,36.0,548.0,1,111,430.0,2300.0,0.0,85,65,0.0,0.0,594.3349178576501,3130.0,688.1308016760767,4171.401671949133,50,2,2,2,2,1,2,2,2,1,20.0,1,,1,124980,1,3,4,0,2,,600.0,488.0,42,1.0,0.0,6.0,10.0,4.299999999999999,2,2,739.358267475705,430.0,31315.958796971492,6,1,2,3,80.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.09994903941126326,7282.781115574768,1,1,1_1,1_1_1,1_2_1,1_1_0 -19685,1,51.0,450.0,1,111,850.0,650.0,0.0,62,22,0.0,0.0,1174.848093439541,1500.0,0.0,1178.8743855508417,41,0,0,0,0,0,0,0,0,0,,1,,1,106964,1,2,3,0,1,,450.0,630.0,43,2.0,4.0,4.0,4.0,2.3,1,1,695.842547688828,850.0,11569.162458519431,4,4,2,3,110.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12965502086932948,5030.070634138883,1,1,1_1,1_1_1,1_2_1,1_1_0 -19686,2,70.0,0.0,5,111,450.0,1352.0,0.0,77,75,0.0,0.0,621.9784024091688,1802.0,0.0,2452.058721945751,41,0,0,0,0,0,0,0,0,0,,1,,3,115810,2,2,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,926.255584900516,450.0,34160.55303009174,5,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05275090243453125,22773.70202006116,6,3,6,6_1,6_2,6_0_0 -19687,2,66.0,0.0,2,111,220.0,1300.0,0.0,0,77,0.0,0.0,304.0783300667047,1520.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,1,,2,105772,2,2,5,0,1,,200.0,,21,0.0,2.0,5.0,2.0,1.5,1,1,887.762127887989,220.0,19853.778131094063,0,5,0,1,84.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07655973537950678,13235.852087396042,2,1,2_0,2_1_0,2_2_0,2_0_1 -19688,1,39.0,566.0,9,111,580.0,670.0,0.0,0,62,0.0,0.0,801.6610519940398,1250.0,0.0,1215.1474435677908,70,0,0,0,0,0,0,0,0,0,,1,2010.0,6,129225,2,1,1,0,1,,485.0,785.0,32,1.0,0.0,5.0,6.0,2.6999999999999997,1,1,1002.81803637344,580.0,20649.57606620341,0,4,2,3,120.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.060533930381546204,7647.991135630894,1,1,1_1,1_1_1,1_2_1,1_0_0 -19689,2,48.0,0.0,1,111,1500.0,250.0,0.0,45,52,0.0,103.51725048194578,2073.261341363896,1850.0,0.0,453.4132252118622,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,113404,2,2,2,0,1,,500.0,,43,2.0,3.0,5.0,3.0,1.8,1,1,840.51844352848,1500.0,53855.47521379438,1,1,1,2,120.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03435119628331024,29919.70845210799,8,4,8,8_1,8_2,8_1_0 -19690,2,85.0,0.0,2,111,600.0,0.0,0.0,0,86,0.0,1035.1725048194578,829.3045365455583,1660.0,103.2196202514115,0.0,50,2,2,1,2,1,2,2,2,0,,1,,2,123309,2,1,2,0,2,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1111.66868834253,600.0,11331.564657008556,0,6,0,1,80.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.14649344995558866,11331.564657008556,2,1,2_0,2_1_0,2_2_0,2_0_1 -19691,2,55.0,0.0,7,111,2200.0,1800.0,0.0,35,34,0.0,0.0,3040.783300667047,4000.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,110427,1,1,2,0,2,,600.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,458.811695176055,2200.0,76799.41289396836,1,1,0,1,130.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05208373149313685,30719.765157587342,8,4,8,8_1,8_2,8_0_0 -19692,0,22.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1277.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,101785,1,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,139.660023267555,0.0,16203.542451062118,0,1,5,0,40.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0788099271413514,16203.542451062118,4,2,4_0,4_0_0,4_2_0,4_0_1 -19693,1,61.0,58.0,1,111,700.0,500.0,0.0,0,75,0.0,0.0,967.5219593031513,1200.0,0.0,906.8264504237244,50,2,2,2,2,1,2,2,2,0,,2,,1,110555,2,2,0,1,1,,100.0,398.0,11,0.0,0.0,3.0,1.0,1.0,1,1,101.636964880906,700.0,13653.082863686224,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.08789223737824803,13653.082863686224,3,2,3_1,3_0_1,3_2_1,3_1_0 -19694,2,37.0,0.0,2,111,980.0,1700.0,0.0,46,46,0.0,0.0,1354.530743024412,2680.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,103050,2,2,2,0,1,,500.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,1,1,135.40156068136,980.0,45482.73701964448,1,1,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058923454822925,14671.850651498222,3,2,3_0,3_1_0,3_2_0,3_0_1 -19695,1,58.0,254.0,2,111,0.0,0.0,600.0,0,63,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,71,0,0,0,0,0,0,0,0,0,,2,,2,115483,2,1,0,1,1,75.0,150.0,282.0,12,1.0,3.0,3.0,1.0,1.0,1,1,124.30589370422,0.0,3010.515304768319,0,4,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1993014282470736,3010.515304768319,1,1,1_1,1_0_1,1_2_1,1_0_1 -19696,2,33.0,0.0,1,111,1450.0,1200.0,0.0,47,42,0.0,0.0,2004.1526299850993,2650.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,1,,1,112497,2,3,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,118.284793005811,1450.0,43050.39360711855,1,1,1,2,75.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0615557670432498,20500.187431961214,5,3,5,5_1,5_2,5_1_0 -19697,2,85.0,0.0,2,111,350.0,1000.0,0.0,0,77,0.0,0.0,483.76097965157567,1350.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,2,112448,1,1,2,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,135.613835035124,350.0,12810.262592532541,0,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10538425658713294,12810.262592532541,2,1,2_0,2_1_0,2_2_0,2_0_1 -19698,1,31.0,340.0,2,111,462.0,420.0,0.0,85,56,0.0,0.0,638.5644931400799,882.0,0.0,761.7342183559285,50,2,1,2,1,2,2,2,2,1,10.0,2,,2,124338,1,2,0,1,1,93.0,390.0,335.0,42,1.0,2.0,4.0,4.0,2.1,3,3,113.515662941308,462.0,14901.625551248599,6,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05918817359667836,7096.012167261237,1,1,1_1,1_0_1,1_2_1,1_0_1 -19699,1,32.0,380.0,2,111,420.0,300.0,0.0,0,85,0.0,0.0,580.5131755818909,720.0,0.0,544.0958702542347,70,0,0,0,0,0,0,0,0,0,,2,,2,107378,1,2,0,1,1,820.0,300.0,480.0,31,0.0,0.0,4.0,5.0,2.2,2,2,106.246302636559,420.0,14275.93380245171,0,6,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05043452918479835,6489.060819296231,1,1,1_1,1_0_1,1_2_1,1_0_1 -19700,2,30.0,0.0,2,111,340.0,350.0,0.0,85,38,0.0,0.0,469.9392373758164,690.0,0.0,634.7785152966071,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,114665,1,2,0,1,1,660.0,373.0,350.0,42,1.0,0.0,2.0,2.0,1.5,2,2,434.394327592296,340.0,24779.514946281586,6,1,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027845581380257865,16519.676630854392,4,2,4_0,4_0_0,4_2_0,4_0_1 -19701,2,53.0,0.0,2,111,1090.0,1400.0,0.0,0,56,0.0,0.0,1506.5699080577642,2490.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,2,108171,2,1,2,0,1,,250.0,,32,2.0,0.0,5.0,2.0,1.5,2,2,449.756894154805,1090.0,28328.968255828542,0,1,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0878958943196844,18885.978837219027,5,3,5,5_1,5_2,5_0_1 -19702,2,43.0,0.0,5,111,700.0,2600.0,0.0,0,45,0.0,0.0,967.5219593031513,3370.0,120.42289029331342,4715.497542203367,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,118197,2,1,2,0,1,,500.0,,32,1.0,0.0,5.0,2.0,1.3,2,2,444.234090542577,700.0,22714.971206311653,0,1,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14836030252433696,17473.054774085886,4,2,4_0,4_1_0,4_2_0,4_0_0 -19703,2,53.0,0.0,1,111,250.0,380.0,0.0,85,68,0.0,0.0,345.54355689398267,630.0,0.0,689.1881023220305,20,2,2,2,2,1,2,2,2,0,,2,,1,112399,2,3,0,1,1,93.0,400.0,343.0,42,1.0,4.0,4.0,2.0,1.5,1,1,426.768331407042,250.0,23547.99704267593,6,1,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.026753867807026384,15698.664695117286,3,2,3_0,3_0_0,3_2_0,3_1_0 -19704,2,57.0,0.0,1,111,1300.0,0.0,0.0,31,65,597.4339508072003,0.0,1796.8264958487098,1700.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,,1,132014,2,1,0,1,1,,0.0,556.0,43,2.0,0.0,4.0,2.0,1.5,2,2,467.861980362185,1300.0,87171.52384755682,1,1,2,3,60.0,7,5,3,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019501781372698195,58114.349231704546,10,5,10,10_0,10_2,10_1_0 -19705,2,80.0,0.0,1,111,1855.0,1300.0,0.0,77,74,0.0,0.0,2563.9331921533512,3155.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,1,108555,1,1,2,0,2,,567.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,385.154607265227,1855.0,57322.72754039704,5,5,0,1,115.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05503925119014229,38215.151693598025,9,5,9,9_1,9_2,9_1_0 -19706,2,41.0,0.0,2,111,500.0,0.0,0.0,0,38,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,132560,1,2,0,1,1,308.0,0.0,418.0,12,1.0,0.0,2.0,1.0,1.0,1,1,610.783223572821,500.0,29009.167910078017,0,1,2,3,45.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017235930432402922,29009.167910078017,8,4,8,8_0,8_2,8_0_1 -19707,0,41.0,0.0,1,111,299.0,1000.0,0.0,0,37,0.0,0.0,413.2700940452032,1299.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,3,35.0,1,,1,124437,2,1,2,0,1,,173.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,482.452287811719,299.0,36247.2152792148,0,1,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035837235770905806,36247.2152792148,9,5,9,9_1,9_2,9_1_0 -19708,2,94.0,0.0,2,111,0.0,170.0,0.0,77,74,0.0,0.0,0.0,442.0,0.0,308.32099314406634,50,0,0,0,0,0,0,0,0,0,,2,,2,124047,1,2,0,1,1,,550.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,457.442033557921,0.0,49093.5934294913,5,5,0,1,70.0,7,5,3,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009003211399361196,32729.062286327535,8,4,8,8_0,8_2,8_0_1 -19709,2,52.0,0.0,1,111,1300.0,1780.0,0.0,56,38,0.0,0.0,1796.8264958487098,3080.0,0.0,3228.302163508459,41,0,0,0,0,0,0,0,0,2,25.0,1,,1,101931,2,2,2,0,1,,600.0,,43,2.0,0.0,8.0,2.0,1.5,2,2,368.552788970354,1300.0,43395.05048588631,1,1,0,1,150.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07097583631114177,28930.033657257543,8,4,8,8_1,8_2,8_1_0 -19710,2,81.0,0.0,6,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,496.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,119248,2,1,0,0,1,,280.0,435.0,11,0.0,2.0,3.0,1.0,1.0,1,1,442.223780417009,0.0,16352.931320183267,0,5,2,3,90.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030330953532949918,16352.931320183267,4,2,4_0,4_0_0,4_2_0,4_0_0 -19711,2,47.0,0.0,1,111,1700.0,0.0,0.0,0,37,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,1,125930,2,1,0,0,1,,0.0,685.0,32,1.0,0.0,3.0,3.0,1.8,3,2,435.049864462491,1700.0,34452.25423422555,0,1,2,3,80.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04934365073595639,19140.141241236415,5,3,5,5_0,5_2,5_1_0 -19712,2,83.0,0.0,1,111,1800.0,1200.0,0.0,0,77,0.0,0.0,2487.913609636675,3000.0,0.0,2176.3834810169387,12,0,0,0,0,0,0,0,0,0,,1,,1,127797,2,1,1,0,1,,250.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,396.5915710772,1800.0,28370.97387337441,0,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10574187595355829,28370.97387337441,8,4,8,8_1,8_2,8_1_0 -19713,2,61.0,0.0,1,111,1400.0,1700.0,0.0,0,90,0.0,0.0,1935.0439186063027,3100.0,0.0,3083.2099314406632,33,2,2,2,1,2,2,2,2,2,15.0,1,,1,124788,2,2,2,0,1,,240.0,406.0,12,1.0,3.0,4.0,1.0,1.0,1,1,417.586657171047,1400.0,24295.054990966808,0,1,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.12759798243521642,24295.054990966808,7,4,7,7_1,7_2,7_1_0 -19714,2,29.0,0.0,1,111,600.0,0.0,0.0,0,34,0.0,0.0,829.3045365455583,650.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,131157,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,2,2,858.940128378981,600.0,21810.37191787082,0,1,2,3,37.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029802334524493268,21810.37191787082,6,3,6,6_0,6_2,6_1_0 -19715,2,67.0,0.0,5,111,300.0,1000.0,0.0,0,77,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,2,,3,110388,1,2,0,0,2,,240.0,343.0,11,0.0,1.0,3.0,1.0,1.0,3,3,558.263534953907,300.0,24039.406340057638,0,5,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.054077874536933475,24039.406340057638,6,3,6,6_0,6_2,6_0_0 -19716,2,62.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1311.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,102518,1,2,0,0,2,,70.0,302.0,11,0.0,1.0,2.0,1.0,1.0,2,2,703.488319714643,0.0,14671.934791553667,0,5,2,3,40.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08935426844690694,14671.934791553667,3,2,3_0,3_0_0,3_2_0,3_0_0 -19717,2,28.0,0.0,9,111,1000.0,0.0,0.0,0,45,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,117483,2,1,0,0,1,,0.0,650.0,22,2.0,0.0,3.0,2.0,1.5,1,1,555.983238551756,1000.0,44012.61696096979,0,1,2,3,70.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022720757570193928,29341.744640646528,8,4,8,8_0,8_2,8_0_0 -19718,2,82.0,0.0,1,111,1600.0,0.0,0.0,0,86,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,130396,2,1,2,0,1,,170.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,412.798129520234,1600.0,39501.50478131608,0,6,0,1,100.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04050478605455021,39501.50478131608,9,5,9,9_1,9_2,9_1_0 -19719,2,52.0,0.0,1,111,400.0,600.0,0.0,85,38,0.0,103.51725048194578,552.8696910303722,1500.0,688.1308016760767,1088.1917405084694,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,102448,2,1,3,0,1,,500.0,,42,1.0,0.0,7.0,6.0,3.0999999999999996,1,1,413.589171507832,400.0,63459.3907187615,6,1,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023637163594079882,20470.771199600484,5,3,5,5_1,5_2,5_1_0 -19720,2,61.0,0.0,1,111,1500.0,1500.0,0.0,0,52,0.0,0.0,2073.261341363896,3060.0,103.2196202514115,2720.4793512711735,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,126922,2,1,3,0,1,,300.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,501.095731931223,1500.0,37154.664780576895,0,1,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08235843380828069,37154.664780576895,9,5,9,9_1,9_2,9_1_0 -19721,1,45.0,345.0,2,111,600.0,1000.0,0.0,0,85,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,50,2,2,2,2,1,2,2,2,0,,1,,2,130824,1,2,3,0,1,,300.0,350.0,31,0.0,0.0,3.0,2.0,1.3,2,2,443.32670009908,600.0,9333.209198105083,0,6,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.17143085149370135,7179.391690850064,1,1,1_1,1_1_1,1_2_1,1_0_1 -19722,1,55.0,260.0,1,111,300.0,400.0,0.0,0,77,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,33,2,2,2,2,1,2,2,2,0,,1,,1,132180,1,2,3,0,2,,0.0,370.0,11,0.0,3.0,1.0,1.0,1.0,4,3,917.215977994573,300.0,16468.122975255454,0,7,2,3,40.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.04250636220362215,16468.122975255454,4,2,4_1,4_1_1,4_2_1,4_1_0 -19723,2,71.0,0.0,1,111,1450.0,1600.0,0.0,75,74,0.0,0.0,2004.1526299850993,3050.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,1,119568,2,2,1,0,1,,200.0,836.0,41,0.0,0.0,5.0,2.0,1.5,2,2,467.102096700735,1450.0,57106.22021413418,5,5,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05340924313609368,38070.81347608945,9,5,9,9_1,9_2,9_1_0 -19724,2,47.0,0.0,2,111,423.0,1329.0,0.0,43,37,0.0,0.0,584.6596982646187,1752.0,0.0,2410.3447052262595,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,121492,2,1,2,0,1,,539.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,422.29384885528,423.0,64147.23618213333,1,1,1,2,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0273121665760555,30546.302943873015,8,4,8,8_1,8_2,8_0_1 -19725,2,45.0,0.0,1,111,1900.0,1500.0,0.0,34,42,0.0,0.0,2626.131032394268,3400.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,2,50.0,1,,1,115994,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,359.704777435033,1900.0,53958.14974833291,1,1,1,2,150.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06301179739961425,23460.06510797083,6,3,6,6_1,6_2,6_1_0 -19726,2,41.0,0.0,1,111,387.0,954.0,0.0,45,62,0.0,0.0,534.9014260718851,1341.0,0.0,1730.2248674084663,43,0,0,0,0,0,0,0,0,2,25.0,1,,1,123904,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,408.875923645023,387.0,51231.89698545923,1,1,0,1,87.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026175099477198864,34154.59799030615,9,5,9,9_1,9_2,9_1_0 -19727,1,81.0,150.0,2,111,1670.0,1603.0,0.0,0,78,0.0,0.0,2308.2309600518042,3333.0,103.2196202514115,2907.2856000584607,31,2,2,2,1,2,2,2,2,0,,1,,2,111062,1,2,3,0,2,,1601.0,560.0,11,0.0,0.0,5.0,1.0,1.0,1,1,506.569110635002,1670.0,7798.671894849036,0,5,2,3,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.42738046233249294,7798.671894849036,1,1,1_1,1_1_1,1_2_1,1_0_1 -19729,2,55.0,0.0,2,111,500.0,800.0,0.0,77,62,0.0,0.0,691.0871137879653,1375.0,129.02452531426437,1450.922320677959,20,0,0,0,0,0,0,0,0,1,10.0,1,,2,101550,2,1,2,0,1,,250.0,,42,1.0,1.0,4.0,3.0,2.0,2,2,260.385939423979,500.0,29246.9393778445,7,1,0,1,85.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0470134663403996,14623.46968892225,3,2,3_0,3_1_0,3_3_0,3_0_1 -19730,2,66.0,0.0,5,111,2400.0,0.0,0.0,56,77,0.0,0.0,3317.2181461822333,2887.0,430.0817510475479,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,122409,2,1,2,0,1,,600.0,,42,1.0,3.0,5.0,4.0,2.5,2,2,286.837478937385,2400.0,83852.04050928428,1,5,0,1,85.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034429692855003864,33540.816203713715,8,4,8,8_1,8_3,8_0_0 -19731,1,87.0,30.0,2,111,230.0,1050.0,0.0,0,72,0.0,0.0,317.900072342464,1280.0,0.0,1904.3355458898213,41,0,0,0,0,0,0,0,0,0,,1,,2,114026,1,3,4,0,2,,340.0,246.0,11,0.0,6.0,4.0,1.0,1.0,2,2,310.896273587068,230.0,17443.157711540778,0,5,2,3,85.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07338120890537633,17443.157711540778,4,2,4_1,4_1_1,4_3_1,4_0_1 -19733,0,56.0,0.0,1,111,642.0,1321.0,0.0,0,47,0.0,0.0,887.3558541037474,1963.0,0.0,2395.83548201948,42,0,0,0,0,0,0,0,0,0,,1,,1,105849,2,2,1,0,1,,300.0,,22,1.0,1.0,4.0,2.0,1.5,1,1,231.621503354615,642.0,35549.258770778615,0,4,5,0,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055219154150510166,23699.505847185745,6,3,6,6_1,6_3,6_1_0 -19734,2,75.0,0.0,2,111,719.0,3600.0,0.0,74,74,0.0,0.0,993.7832696270941,4319.0,0.0,6529.150443050816,70,0,0,0,0,0,0,0,0,0,,1,,2,124122,2,1,2,0,1,,600.0,,41,0.0,2.0,9.0,2.0,1.5,1,1,302.326015906265,719.0,83288.58182114012,5,5,0,1,150.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05185584753111694,55525.72121409341,10,5,10,10_1,10_3,10_0_1 -19735,1,32.0,412.0,9,111,600.0,700.0,0.0,54,62,0.0,0.0,829.3045365455583,1300.0,0.0,1269.5570305932142,33,0,0,0,0,0,0,0,0,0,,1,2008.0,6,109007,2,1,1,0,1,,580.0,485.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,4,3,232.280474869829,600.0,28990.408138200917,4,4,2,3,88.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04484241800952704,10737.188199333674,2,1,2_1,2_1_1,2_3_1,2_0_0 -19736,2,35.0,0.0,1,111,550.0,0.0,0.0,0,67,0.0,621.1035028916747,760.1958251667618,1400.0,430.0817510475479,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,118089,2,1,3,0,1,,240.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,241.727560501567,550.0,27249.71558589206,0,4,0,1,120.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05137668301847595,18166.477057261374,4,2,4_0,4_1_0,4_3_0,4_1_0 -19737,1,28.0,413.0,6,111,800.0,1000.0,0.0,85,65,0.0,0.0,1105.7393820607444,1800.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,4,131498,2,2,3,0,1,,720.0,645.0,42,1.0,0.0,4.0,5.0,2.4,3,2,277.593792800583,800.0,19939.26891049878,6,1,2,3,84.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09027412229002196,8308.028712707826,1,1,1_1,1_1_1,1_3_1,1_0_0 -19738,1,75.0,203.0,5,111,200.0,400.0,0.0,0,77,0.0,0.0,276.4348455151861,600.0,0.0,725.4611603389795,20,0,0,0,0,0,0,0,0,0,,2,,3,129205,2,1,0,0,1,,200.0,395.0,11,0.0,8.0,2.0,1.0,1.0,2,2,369.287086179018,200.0,9397.845148287297,0,5,2,3,52.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0638444229004291,9397.845148287297,1,1,1_1,1_0_1,1_3_1,1_0_0 -19739,2,80.0,0.0,2,111,300.0,0.0,0.0,0,72,4480.754631054002,0.0,414.65226827277917,3350.0,86.01635020950958,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,102251,1,3,4,0,2,,150.0,,11,0.0,5.0,6.0,1.0,1.0,2,1,339.464184286681,300.0,10118.98295351263,0,5,0,1,120.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3310609391665301,10118.98295351263,2,1,2_0,2_1_0,2_3_0,2_0_1 -19740,2,89.0,0.0,1,111,260.0,2360.0,0.0,0,86,0.0,0.0,359.36529916974195,2620.0,0.0,4280.220845999979,20,0,0,0,0,0,0,0,0,0,,1,,1,120283,1,3,4,0,2,,230.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,256.06731267347,260.0,16721.63875243673,0,5,0,1,75.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15668320783560793,16721.63875243673,4,2,4_0,4_1_0,4_3_0,4_1_0 -19741,1,63.0,25.0,6,111,230.0,770.0,0.0,0,78,0.0,0.0,317.900072342464,1000.0,0.0,1396.5127336525356,30,1,2,2,2,1,2,2,2,0,,2,,4,115925,1,1,0,0,1,,280.0,305.0,11,0.0,0.0,2.0,1.0,1.0,2,2,103.8039185441,230.0,13771.100341208376,0,5,2,3,50.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07261583862021681,13771.100341208376,3,2,3_1,3_0_1,3_3_1,3_0_0 -19742,1,34.0,450.0,5,111,400.0,1880.0,0.0,81,85,0.0,0.0,552.8696910303722,2280.0,0.0,3409.667453593204,42,2,2,1,1,2,2,2,2,0,,2,,3,102207,1,1,0,1,1,1200.0,900.0,430.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,2,2,86.3332331501348,400.0,16542.101494305578,4,6,2,3,75.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.1378301300342561,5704.17292907089,1,1,1_1,1_0_1,1_3_1,1_0_0 -19743,2,59.0,0.0,5,111,400.0,400.0,0.0,0,75,0.0,724.6207533736205,552.8696910303722,1500.0,0.0,725.4611603389795,30,0,0,0,0,0,0,0,0,0,,1,,3,105470,2,2,3,0,2,,230.0,,31,0.0,0.0,4.0,3.0,1.8,1,1,315.192392992045,400.0,24698.22522970884,0,5,0,1,150.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06073310879826659,13721.236238727133,3,2,3_0,3_1_0,3_3_0,3_0_0 -19744,2,38.0,0.0,1,111,1800.0,0.0,0.0,52,62,1493.5848770180007,0.0,2487.913609636675,2850.0,86.01635020950958,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,,1,110006,2,1,3,0,2,,600.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,215.628131344774,1800.0,40981.93269698119,4,1,1,2,100.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0695428402821504,17818.231607383128,4,2,4_0,4_1_0,4_3_0,4_1_0 -19745,2,32.0,0.0,9,111,450.0,450.0,0.0,0,21,0.0,0.0,621.9784024091688,900.0,0.0,816.143805381352,41,0,0,0,0,0,0,0,0,0,,1,2004.0,6,126392,2,1,1,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,300.202716601082,450.0,20442.79589384562,0,1,1,2,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044025289137233345,20442.79589384562,5,3,5,5_1,5_3,5_0_0 -19746,1,43.0,427.0,2,111,1000.0,1500.0,0.0,85,43,0.0,0.0,1382.1742275759307,2500.0,0.0,2720.4793512711735,44,0,0,0,0,0,0,0,0,2,1.0,1,,2,118173,2,2,1,0,1,,500.0,600.0,42,1.0,2.0,6.0,6.0,3.0999999999999996,1,1,311.624365378672,1000.0,40788.44727316934,6,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.061291864906181444,13157.56363650624,2,1,2_1,2_1_1,2_3_1,2_0_1 -19747,2,28.0,0.0,1,111,440.0,1000.0,0.0,62,46,0.0,0.0,608.1566601334094,1440.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,3,75.0,1,,1,118500,2,2,3,0,1,,480.0,330.0,43,2.0,0.0,5.0,3.0,1.8,1,1,221.832868308806,440.0,42424.370269462735,1,1,2,3,81.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033942754856552786,23569.094594145965,6,3,6,6_1,6_3,6_1_0 -19748,2,59.0,0.0,2,111,700.0,960.0,0.0,0,52,0.0,0.0,967.5219593031513,1660.0,0.0,1741.106784813551,33,0,0,0,0,0,0,0,0,2,5.0,1,,2,126865,2,1,2,0,1,,130.0,,22,1.0,0.0,6.0,2.0,1.5,1,1,289.990040194151,700.0,51707.90627403415,0,1,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032103407769066686,34471.937516022765,9,5,9,9_1,9_3,9_0_1 -19749,2,45.0,0.0,2,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,4786.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,2,108568,2,2,3,0,1,,345.0,,43,2.0,0.0,8.0,4.0,2.5,2,2,286.837478937385,0.0,51237.601676489445,1,1,1,2,150.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09340796296865068,20495.04067059578,5,3,5,5_1,5_3,5_0_1 -19750,2,72.0,0.0,8,111,80.0,0.0,0.0,0,75,0.0,0.0,110.57393820607444,80.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,120530,2,1,1,0,1,,180.0,550.0,11,0.0,2.0,5.0,1.0,1.0,2,2,302.283128422202,80.0,32093.642428688043,0,5,2,3,85.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0024927055312515467,32093.642428688043,8,4,8,8_1,8_3,8_0_0 -19751,2,64.0,0.0,1,111,250.0,1100.0,0.0,0,75,0.0,0.0,345.54355689398267,1380.0,51.60981012570575,1995.0181909321939,60,0,0,0,0,0,0,0,0,0,,1,,1,109052,1,2,3,0,2,,100.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,286.366893006624,250.0,16938.47887813361,0,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08147130624471147,16938.47887813361,4,2,4_0,4_1_0,4_3_0,4_1_0 -19752,2,45.0,0.0,2,111,700.0,0.0,0.0,0,67,746.7924385090004,0.0,967.5219593031513,1230.0,51.60981012570575,0.0,50,2,2,1,2,1,2,2,2,2,20.0,1,,2,103282,1,3,4,0,1,,200.0,430.0,12,1.0,5.0,2.0,1.0,1.0,2,2,371.382418152765,700.0,13638.269554335602,0,1,2,3,45.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,0,0,0,0.09018739474972345,13638.269554335602,3,2,3_0,3_1_0,3_3_0,3_0_1 -19753,0,45.0,0.0,1,111,700.0,1400.0,0.0,0,52,0.0,0.0,967.5219593031513,2200.0,172.03270041901916,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,1,101019,2,1,3,0,1,,280.0,,22,1.0,7.0,4.0,3.0,2.0,1,1,259.699176616518,700.0,55549.18965907082,0,1,5,0,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03960453813102122,27774.59482953541,7,4,7,7_1,7_3,7_1_0 -19754,1,44.0,377.0,1,111,450.0,1200.0,0.0,0,22,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,1,121121,1,1,2,0,1,,280.0,438.0,32,1.0,2.0,4.0,2.0,1.5,2,2,233.338195436841,450.0,8692.173469583933,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.18982594005673709,5794.7823130559555,1,1,1_1,1_1_1,1_3_1,1_1_0 -19755,2,54.0,0.0,6,111,570.0,2400.0,0.0,45,33,0.0,25.879312620486445,787.8393097182804,2995.0,0.0,4352.7669620338775,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,131234,2,1,2,0,1,,540.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,304.272103486031,570.0,137952.5313359601,1,1,0,1,127.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02171036639194523,55181.01253438405,10,5,10,10_1,10_3,10_0_0 -19756,2,42.0,0.0,8,111,1700.0,0.0,0.0,52,65,0.0,517.5862524097289,2349.696186879082,2200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,45.0,1,2003.0,6,108375,1,2,1,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,352.332411334929,1700.0,45527.74010127783,1,1,1,2,200.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04832218764001977,17510.669269722242,4,2,4_0,4_1_0,4_3_0,4_0_0 -19757,2,42.0,0.0,2,111,1700.0,0.0,0.0,67,64,1493.5848770180007,0.0,2349.696186879082,2700.0,0.0,0.0,43,2,2,2,1,1,2,2,2,0,,1,,2,123227,1,3,3,0,2,,940.0,,43,3.0,1.0,4.0,4.0,2.5,2,2,313.591593061918,1700.0,47504.17948762464,4,1,1,2,94.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.05683710421108062,19001.671795049857,5,3,5,5_1,5_3,5_0_1 -19758,2,54.0,0.0,1,111,250.0,1000.0,0.0,0,22,0.0,0.0,345.54355689398267,1250.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,1,,1,115752,2,1,3,0,1,,170.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,283.396469508811,250.0,19076.911020519612,0,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0655242349589757,19076.911020519612,5,3,5,5_1,5_3,5_1_0 -19759,2,71.0,0.0,1,111,430.0,1450.0,0.0,0,77,0.0,0.0,594.3349178576501,1880.0,0.0,2629.7967062288008,60,0,0,0,0,0,0,0,0,0,,1,,1,117143,1,1,2,0,2,,200.0,287.0,11,0.0,2.0,4.0,1.0,1.0,1,1,310.171770698391,430.0,17223.306650882765,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10915441721544465,17223.306650882765,4,2,4_0,4_1_0,4_3_0,4_1_0 -19760,1,82.0,23.0,2,111,210.0,1200.0,0.0,0,78,0.0,0.0,290.25658779094545,1410.0,0.0,2176.3834810169387,50,2,2,2,1,1,2,2,2,0,,1,,2,115270,1,2,5,0,1,,230.0,312.0,11,0.0,3.0,2.0,1.0,1.0,2,2,354.708564984056,210.0,15133.844856297994,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.0931686569664565,15133.844856297994,3,2,3_1,3_1_1,3_3_1,3_0_1 -19761,1,60.0,270.0,7,111,500.0,0.0,0.0,0,78,0.0,0.0,691.0871137879653,620.0,206.439240502823,0.0,31,2,2,2,2,1,2,2,2,0,,8,,5,105738,1,2,0,0,1,,280.0,329.0,11,0.0,3.0,2.0,1.0,1.0,1,1,407.054205082784,500.0,10263.610981083595,0,6,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,1,0,1,0.060407589603960476,10263.610981083595,2,1,2_1,2_0_1,2_3_1,2_0_0 -19762,2,89.0,0.0,2,111,870.0,900.0,0.0,0,77,0.0,0.0,1202.4915779910596,1770.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,1,,2,127635,2,2,2,0,2,,200.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,356.942436750202,870.0,23784.087145302958,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07441950532667602,23784.087145302958,6,3,6,6_1,6_3,6_0_1 -19763,2,54.0,0.0,2,111,680.0,925.0,0.0,85,74,0.0,0.0,939.8784747516328,1605.0,0.0,1677.6289332838903,41,1,2,2,1,1,2,2,2,0,,1,,2,112170,2,2,3,0,1,,650.0,349.0,41,0.0,2.0,4.0,2.0,1.5,1,1,304.352521892238,680.0,19848.72632411541,6,5,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08086161166170089,13232.48421607694,2,1,2_0,2_1_0,2_3_0,2_0_1 -19764,2,58.0,0.0,1,111,800.0,1200.0,0.0,77,77,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,1,128455,2,2,1,0,1,,350.0,,41,0.0,2.0,4.0,3.0,2.0,2,1,256.677560380893,800.0,49861.19021984641,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0401113569728613,24930.595109923204,7,4,7,7_1,7_3,7_1_0 -19765,1,36.0,270.0,1,111,800.0,0.0,0.0,0,63,0.0,1656.2760077111325,1105.7393820607444,2400.0,0.0,0.0,33,2,2,2,1,1,1,2,2,0,,1,,1,101624,1,3,3,0,1,,450.0,428.0,22,1.0,5.0,4.0,2.0,1.5,3,2,73.6154654743953,800.0,15231.550637291668,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.15756767364998536,10154.367091527778,2,1,2_1,2_1_1,2_3_1,2_1_0 -19766,1,43.0,140.0,1,111,0.0,0.0,1500.0,85,62,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,71,0,0,0,0,0,0,0,0,0,,1,,1,109056,2,2,1,0,1,,500.0,305.0,42,2.0,0.0,4.0,4.0,2.5,1,1,258.627881600112,0.0,24126.07299653555,6,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.062173400545351774,9650.42919861422,1,1,1_1,1_1_1,1_3_1,1_1_0 -19767,2,53.0,0.0,1,111,400.0,800.0,0.0,52,62,0.0,0.0,552.8696910303722,1260.0,103.2196202514115,1450.922320677959,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,111891,1,1,3,0,1,,390.0,287.0,43,2.0,2.0,4.0,3.0,2.0,2,2,69.5396438394071,400.0,35753.44570728658,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035241358562070314,17876.72285364329,4,2,4_0,4_1_0,4_3_0,4_1_0 -19768,2,33.0,0.0,2,111,600.0,1000.0,0.0,52,63,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,124017,2,2,1,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,279.061309207905,600.0,27727.42536706578,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05770460036655462,18484.950244710522,4,2,4_0,4_1_0,4_3_0,4_0_1 -19769,1,28.0,363.0,2,111,350.0,500.0,0.0,56,85,0.0,0.0,483.76097965157567,850.0,0.0,906.8264504237244,41,0,0,0,0,0,0,0,0,0,,2,,2,126242,1,1,0,1,1,,500.0,320.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,84.1348611041492,350.0,17299.692160904895,4,6,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04913382227233453,6407.29339292774,1,1,1_1,1_0_1,1_3_1,1_0_1 -19770,2,76.0,0.0,2,111,310.0,130.0,0.0,77,77,0.0,0.0,428.47401054853844,440.0,0.0,235.77487711016835,50,0,0,0,0,0,0,0,0,0,,2,,2,101219,1,1,0,1,1,800.0,400.0,267.0,41,0.0,3.0,3.0,2.0,1.5,3,2,63.9884641085534,310.0,21047.316280214927,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020905278095412688,14031.544186809951,3,2,3_0,3_0_0,3_3_0,3_0_1 -19771,2,69.0,0.0,1,111,0.0,0.0,2000.0,72,75,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,31,0,0,0,0,0,0,0,0,0,,1,,1,116292,2,2,1,0,1,,250.0,620.0,41,0.0,1.0,5.0,2.0,1.5,1,1,318.090385838919,0.0,32284.214459817416,5,5,2,3,88.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06194978051856589,21522.809639878276,6,3,6,6_1,6_3,6_1_0 -19772,2,74.0,0.0,2,111,621.0,0.0,0.0,77,75,0.0,0.0,858.3301953246529,711.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113656,1,1,4,0,2,,144.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,355.266009228217,621.0,28908.43908964541,5,5,0,1,107.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024594894168971926,19272.292726430274,5,3,5,5_1,5_3,5_0_1 -19773,2,57.0,0.0,1,111,279.0,930.0,0.0,0,62,0.0,0.0,385.6266094936846,1209.0,0.0,1686.6971977881274,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,107136,2,1,1,0,1,,230.0,355.0,12,1.0,0.0,4.0,1.0,1.0,1,1,350.623089262378,279.0,27169.4684475181,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04449847822144054,27169.4684475181,7,4,7,7_1,7_3,7_1_0 -19774,1,39.0,434.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,983.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,117429,1,2,5,0,1,,277.0,597.0,42,1.0,1.0,4.0,4.0,2.3,3,2,249.456594292494,0.0,16417.02755685155,6,1,2,3,79.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05987685630641162,7137.838068196326,1,1,1_1,1_1_1,1_3_1,1_0_1 -19775,2,95.0,0.0,5,111,317.0,949.0,0.0,0,78,0.0,0.0,438.14923014157,1266.0,0.0,1721.156602904229,31,0,0,0,0,0,0,0,0,0,,1,,3,100222,2,1,2,0,1,,149.0,272.0,11,0.0,0.0,2.0,1.0,1.0,2,2,343.180088671246,317.0,16834.65304149226,0,5,2,3,38.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07520202506577937,16834.65304149226,4,2,4_0,4_1_0,4_3_0,4_0_0 -19776,2,64.0,0.0,1,111,0.0,0.0,2000.0,75,75,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,70,0,0,0,0,0,0,0,0,0,,1,,1,125948,1,2,3,0,1,,420.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,319.563027980253,0.0,40252.96660087647,5,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049685778934774265,26835.31106725098,7,4,7,7_1,7_3,7_1_0 -19777,2,37.0,0.0,6,111,600.0,950.0,0.0,55,64,0.0,0.0,829.3045365455583,1550.0,0.0,1722.9702558050765,71,0,0,0,0,0,0,0,0,2,2.0,1,,4,104167,2,2,4,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,1,348.864383213492,600.0,49080.223884434556,1,1,1,2,115.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03158094803417495,23371.535183064072,6,3,6,6_1,6_3,6_0_0 -19778,2,56.0,0.0,7,111,1030.0,840.0,0.0,56,62,0.0,0.0,1423.6394544032084,1870.0,0.0,1523.468436711857,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,114898,2,2,2,0,1,,563.0,,43,4.0,0.0,5.0,5.0,3.0,2,2,352.7902843004,1030.0,14346.392986923838,4,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13034635268282627,4782.13099564128,1,1,1_0,1_1_0,1_3_0,1_0_0 -19779,1,63.0,78.0,1,111,255.0,900.0,0.0,0,78,0.0,0.0,352.4544280318623,1155.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,1,110442,1,1,3,0,1,,360.0,320.0,11,0.0,3.0,4.0,1.0,1.0,2,2,416.489316256922,255.0,12751.754179888572,0,5,2,3,40.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09057577363133365,12751.754179888572,2,1,2_1,2_1_1,2_3_1,2_1_0 -19780,1,58.0,104.0,2,111,625.0,920.0,0.0,0,56,0.0,0.0,863.8588922349566,1545.0,0.0,1668.560668779653,33,2,2,1,2,1,2,2,2,2,10.0,1,,2,105455,1,2,5,0,1,,607.0,317.0,32,4.0,1.0,3.0,4.0,2.5,2,2,313.580279752691,625.0,30529.263632668477,0,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.05060718196775439,12211.70545306739,2,1,2_1,2_1_1,2_3_1,2_0_1 -19781,1,56.0,271.0,1,111,206.0,1064.0,0.0,0,78,0.0,0.0,284.72789088064167,1330.0,103.2196202514115,1929.7266865016857,43,0,0,0,0,0,0,0,0,0,,1,,1,112906,2,2,5,0,1,,259.0,370.0,11,0.0,3.0,4.0,1.0,1.0,2,2,320.163969338602,206.0,9368.046381248701,0,6,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1419719700216428,9368.046381248701,1,1,1_1,1_1_1,1_3_1,1_1_0 -19782,2,72.0,0.0,2,111,460.0,1742.0,0.0,75,78,0.0,0.0,635.800144684928,2202.0,0.0,3159.383353276256,43,0,0,0,0,0,0,0,0,0,,1,,2,102224,2,1,2,0,1,,144.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,388.408926185357,460.0,44340.258462743135,5,5,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049661415524905626,29560.172308495425,8,4,8,8_1,8_3,8_0_1 -19783,2,43.0,0.0,1,111,700.0,0.0,0.0,54,37,3733.962192545002,0.0,967.5219593031513,3230.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108196,2,1,1,0,1,,350.0,,43,2.0,0.0,7.0,2.0,1.5,3,2,319.563027980253,700.0,68481.24424181192,1,1,0,1,150.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04716619909233324,45654.162827874614,10,5,10,10_1,10_3,10_1_0 -19784,2,58.0,0.0,6,111,1177.0,0.0,0.0,72,22,0.0,51.75862524097289,1626.8190658568703,1227.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,4,116833,2,1,2,0,1,,440.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,355.266009228217,1177.0,57318.010365773946,7,1,0,1,88.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021406884017256,38212.006910515964,9,5,9,9_1,9_3,9_0_0 -19785,2,83.0,0.0,2,111,270.0,0.0,0.0,0,78,2987.1697540360015,0.0,373.1870414455012,2270.0,0.0,0.0,10,2,2,1,2,1,2,2,2,0,,1,,2,108233,2,2,4,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,399.209770723048,270.0,18078.659179935345,0,5,0,1,80.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.12556240910384364,18078.659179935345,4,2,4_0,4_1_0,4_3_0,4_0_1 -19786,1,53.0,163.0,2,111,220.0,794.0,0.0,0,68,0.0,0.0,304.0783300667047,1014.0,0.0,1440.0404032728745,71,0,0,0,0,0,0,0,0,1,15.0,1,,2,122648,1,2,2,0,1,,280.0,403.0,22,2.0,1.0,3.0,2.0,1.5,1,1,331.276079757885,220.0,18153.230724469413,0,1,2,3,107.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05585782582673793,12102.153816312943,2,1,2_1,2_1_1,2_3_1,2_0_1 -19787,2,57.0,0.0,1,111,1378.0,2750.0,0.0,43,43,0.0,0.0,1904.6360855996322,4128.0,0.0,4987.545477330485,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,121030,2,1,2,0,1,,320.0,,43,2.0,1.0,7.0,2.0,1.5,1,1,319.563027980253,1378.0,159526.29761413444,1,1,0,1,200.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025876611328277004,106350.86507608963,10,5,10,10_1,10_3,10_1_0 -19788,1,31.0,320.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1433.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,1.0,1,,1,114729,2,3,3,0,1,,119.0,462.0,32,1.0,0.0,5.0,3.0,1.6,1,1,281.920989326233,0.0,18024.65245413537,0,1,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07950222638945968,11265.407783834604,2,1,2_1,2_1_1,2_3_1,2_1_0 -19789,2,41.0,0.0,1,111,1400.0,0.0,0.0,0,43,0.0,0.0,1935.0439186063027,1760.0,619.317721508469,0.0,20,2,2,2,1,1,2,2,2,0,,1,,1,112923,2,1,1,0,1,,240.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,284.811151069787,1400.0,25476.92070759406,0,1,1,2,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06908213202843569,15923.075442246287,3,2,3_0,3_1_0,3_3_0,3_1_0 -19790,2,65.0,0.0,6,111,0.0,4500.0,0.0,31,31,0.0,0.0,0.0,5161.0,0.0,8161.43805381352,50,0,0,0,0,0,0,0,0,0,,1,,4,121941,2,1,2,0,1,,155.0,,43,2.0,2.0,9.0,2.0,1.5,2,2,388.408926185357,0.0,245879.80238024064,1,1,0,1,300.0,8,7,3,0,1,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020989930649198976,163919.86825349377,10,5,10,10_1,10_3,10_0_0 -19791,1,70.0,110.0,7,111,190.0,650.0,0.0,0,77,0.0,0.0,262.6131032394268,840.0,0.0,1178.8743855508417,43,0,0,0,0,0,0,0,0,0,,1,,5,133622,2,1,2,0,1,,300.0,392.0,11,0.0,3.0,3.0,1.0,1.0,3,2,377.616551734036,190.0,12149.008119901999,0,5,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06914144691564961,12149.008119901999,2,1,2_1,2_1_1,2_3_1,2_0_0 -19792,2,68.0,0.0,2,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,537.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114088,2,2,1,0,1,,228.0,414.0,41,0.0,3.0,2.0,2.0,1.5,3,2,322.929728653576,0.0,27157.83696860323,5,5,2,3,58.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019773297874231207,18105.22464573549,4,2,4_0,4_1_0,4_3_0,4_0_1 -19793,2,43.0,0.0,9,111,2380.0,0.0,0.0,54,53,0.0,0.0,3289.5746616307147,2380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2007.0,6,119530,2,1,1,0,1,,490.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,363.945807068545,2380.0,56552.93791172949,1,1,1,2,130.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0420844625917546,20197.477825617676,5,3,5,5_1,5_3,5_0_0 -19794,2,78.0,0.0,2,111,370.0,0.0,0.0,0,77,2613.773534781501,103.51725048194578,511.40446420309434,2220.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,105836,2,2,5,0,2,,310.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,419.196462496432,370.0,15044.943196764834,0,5,0,1,90.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1475578851289631,15044.943196764834,3,2,3_0,3_1_0,3_3_0,3_0_1 -19795,2,41.0,0.0,9,111,0.0,0.0,0.0,55,37,0.0,0.0,0.0,741.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,103150,2,1,1,0,1,,743.0,825.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,344.118690475543,0.0,47924.45484257882,1,1,2,3,100.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01546183472371298,18432.48263176109,4,2,4_0,4_1_0,4_2_0,4_0_0 -19796,2,51.0,0.0,7,111,644.0,0.0,0.0,85,54,0.0,310.55175144583734,890.1202025588993,944.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,129945,2,1,2,0,1,,400.0,,42,1.0,0.0,3.0,3.0,2.0,2,2,452.657099127419,644.0,33199.95488623504,7,1,0,1,45.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028433773576945123,16599.97744311752,4,2,4_0,4_1_0,4_2_0,4_0_0 -19797,2,82.0,0.0,9,111,760.0,0.0,0.0,0,90,0.0,0.0,1050.452412957707,760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101463,2,2,5,0,1,,204.0,207.0,11,0.0,0.0,1.0,1.0,1.0,2,2,366.745201800728,760.0,14056.16653248911,0,5,2,3,36.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05406879594399746,14056.16653248911,3,2,3_0,3_1_0,3_2_0,3_0_0 -19798,2,69.0,0.0,5,111,225.0,851.0,0.0,0,77,0.0,0.0,310.9892012045844,1076.0,0.0,1543.4186186211791,50,0,0,0,0,0,0,0,0,0,,2,,3,110163,1,2,0,0,1,,0.0,224.0,11,0.0,2.0,2.0,1.0,1.0,3,3,444.841488103179,225.0,22028.00871825552,0,5,2,3,52.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04884690276648902,22028.00871825552,6,3,6,6_0,6_2,6_0_0 -19799,0,73.0,0.0,5,111,273.0,946.0,0.0,0,74,0.0,0.0,377.33356412822906,1219.0,0.0,1715.7156442016867,10,0,0,0,0,0,0,0,0,0,,1,,3,112015,2,2,3,0,1,,292.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,362.214293615584,273.0,28275.92693470745,0,5,5,0,50.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04311087671201086,28275.92693470745,8,4,8,8_1,8_2,8_0_0 -19800,2,61.0,0.0,5,111,383.0,1580.0,0.0,85,71,0.0,134.5724256265295,529.3727291615814,2093.0,0.0,2865.571583338969,60,0,0,0,0,0,0,0,0,0,,1,,3,131639,2,2,2,0,1,,471.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,365.285481119475,383.0,33393.25018298506,6,5,0,1,120.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06267733714241602,22262.166788656705,6,3,6,6_1,6_2,6_0_0 -19801,2,40.0,0.0,9,111,1400.0,0.0,0.0,37,43,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,2004.0,6,116705,2,1,0,0,1,,220.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,443.276535107854,1400.0,110270.86587062411,1,1,1,2,65.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012696009856697395,55135.432935312056,10,5,10,10_0,10_2,10_0_0 -19802,2,61.0,0.0,2,111,545.0,0.0,0.0,68,75,17460.007212340428,0.0,753.2849540288821,12235.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,124582,2,3,4,0,1,,325.0,,42,1.0,5.0,2.0,2.0,1.5,4,3,305.155676079395,545.0,26795.667558790505,1,5,1,2,75.0,6,4,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4566036644974804,17863.778372527002,4,2,4_0,4_1_0,4_2_0,4_0_1 -19803,2,35.0,0.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,414.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,1,116295,2,1,0,0,1,,278.0,400.0,12,1.0,1.0,1.0,1.0,1.0,1,1,581.637167684756,0.0,16043.583032032946,0,1,3,4,35.0,6,4,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02580470953236563,16043.583032032946,4,2,4_0,4_0_0,4_2_0,4_1_0 -19804,2,42.0,0.0,1,111,518.0,1150.0,0.0,45,42,0.0,0.0,715.966249884332,1668.0,0.0,2085.7008359745664,33,0,0,0,0,0,0,0,0,1,2.0,1,,1,126439,2,3,2,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,284.954941427823,518.0,68703.69291391093,1,1,1,2,120.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02427817092874593,32716.044244719487,8,4,8,8_1,8_2,8_1_0 -19805,2,52.0,0.0,2,111,420.0,1700.0,0.0,52,64,0.0,0.0,580.5131755818909,2120.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,0,,2,,2,126571,2,1,0,0,1,,162.0,362.0,43,2.0,0.0,5.0,3.0,2.0,2,2,328.807515154049,420.0,27093.60178402248,1,1,2,3,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0782472561935341,13546.80089201124,3,2,3_0,3_0_0,3_2_0,3_0_1 -19806,2,62.0,0.0,1,111,350.0,1300.0,0.0,0,75,0.0,0.0,483.76097965157567,1650.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,2,,1,120084,2,1,0,0,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,539.551776505627,350.0,22180.337865080197,0,5,1,2,130.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07439021037626715,22180.337865080197,6,3,6,6_0,6_2,6_1_0 -19807,2,61.0,0.0,9,111,1000.0,0.0,0.0,77,75,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126042,1,1,1,0,1,,240.0,520.0,41,0.0,4.0,3.0,2.0,1.5,1,1,301.695853519669,1000.0,36914.75753185911,5,5,2,3,47.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027089437039833044,24609.83835457274,7,4,7,7_1,7_2,7_0_0 -19808,2,55.0,0.0,2,111,1500.0,360.0,0.0,0,54,0.0,351.95865163861566,2073.261341363896,2200.0,0.0,652.9150443050816,60,0,0,0,0,0,0,0,0,1,10.0,1,,2,127280,1,1,2,0,2,,216.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,386.468821982132,1500.0,13740.599874464457,0,1,1,2,51.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16010945810950233,13740.599874464457,3,2,3_0,3_1_0,3_2_0,3_0_1 -19809,2,55.0,0.0,1,111,1400.0,1550.0,0.0,0,62,0.0,0.0,1935.0439186063027,2950.0,0.0,2811.161996313546,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,126137,2,1,2,0,1,,450.0,,32,2.0,1.0,6.0,5.0,2.8,1,1,279.485731387613,1400.0,54247.50969405323,0,1,0,1,114.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0543803764751138,19374.110605019014,5,3,5,5_1,5_2,5_1_0 -19810,2,81.0,0.0,2,111,373.0,0.0,0.0,0,75,0.0,0.0,515.5509868858221,373.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,106915,2,1,1,1,1,,100.0,258.0,11,0.0,1.0,1.0,1.0,1.0,3,2,327.399566220671,373.0,29924.63640352877,0,5,2,3,40.0,6,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012464646018422973,29924.63640352877,8,4,8,8_1,8_2,8_0_1 -19811,2,46.0,0.0,6,111,552.0,825.0,0.0,52,43,0.0,0.0,762.9601736219137,1377.0,0.0,1496.2636431991452,42,0,0,0,0,0,0,0,0,2,5.0,1,,4,105173,2,1,2,0,1,,340.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,356.466328398544,552.0,57317.89681947767,1,1,0,1,110.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024023910094553055,31843.276010820926,8,4,8,8_1,8_2,8_0_0 -19812,2,62.0,0.0,2,111,297.0,470.0,0.0,0,72,0.0,155.27587572291867,410.5057455900514,917.0,0.0,852.416863398301,50,0,0,0,0,0,0,0,0,0,,1,,2,117038,2,2,1,0,1,,248.0,,21,0.0,0.0,3.0,2.0,1.5,2,2,305.155676079395,297.0,30081.127964503594,0,7,0,1,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030484229217803287,20054.085309669063,5,3,5,5_1,5_2,5_0_1 -19813,1,63.0,225.0,2,111,408.0,204.0,0.0,0,77,0.0,0.0,563.9270848509797,612.0,0.0,369.9851917728796,12,2,2,2,1,1,2,2,2,0,,2,,2,131440,2,1,0,1,1,1018.0,108.0,357.0,11,0.0,3.0,4.0,1.0,1.0,2,2,426.244143215417,408.0,10170.551177097808,0,5,2,3,75.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06017372995262148,10170.551177097808,2,1,2_1,2_0_1,2_2_1,2_0_1 -19814,2,71.0,0.0,1,111,177.0,0.0,0.0,78,77,0.0,0.0,244.64483828093972,979.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,127189,2,2,5,0,1,,215.0,,41,0.0,10.0,5.0,2.0,1.5,2,2,284.582798503147,177.0,23434.45807850495,5,5,0,1,80.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.04177608872884409,15622.972052336634,3,2,3_0,3_1_0,3_2_0,3_1_0 -19815,2,79.0,0.0,2,111,401.0,0.0,0.0,0,74,0.0,0.0,554.2518652579481,401.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,117706,2,3,0,1,1,,305.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,353.814443324618,401.0,43028.187089745516,0,5,0,1,68.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009319472353404506,43028.187089745516,9,5,9,9_0,9_3,9_0_1 -19816,2,61.0,0.0,7,111,243.0,948.0,0.0,0,37,0.0,0.0,335.8683373009511,1191.0,0.0,1719.3429500033815,70,0,0,0,0,0,0,0,0,0,,2,,5,100499,1,3,0,0,1,,110.0,503.0,12,1.0,0.0,3.0,1.0,1.0,2,2,360.632131102715,243.0,40623.05088204265,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029318329720195376,40623.05088204265,9,5,9,9_0,9_3,9_0_0 -19817,2,84.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,362.31037668681023,0.0,1386.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,103505,1,2,3,0,2,,351.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,303.297010624196,0.0,10253.720297285457,0,5,0,1,90.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1351704512914133,10253.720297285457,2,1,2_0,2_1_0,2_3_0,2_1_0 -19818,2,66.0,0.0,6,111,450.0,1100.0,0.0,77,75,0.0,0.0,621.9784024091688,1550.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,0,,1,,4,106493,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,303.413945698971,450.0,86127.61968564312,5,5,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01799654983682748,57418.41312376208,10,5,10,10_1,10_3,10_0_0 -19819,2,36.0,0.0,2,111,400.0,1000.0,0.0,34,34,0.0,258.79312620486445,552.8696910303722,1650.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,126940,2,2,1,0,1,,410.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,276.45887588664,400.0,64294.99378067539,1,1,1,2,98.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025662962277102307,30616.663705083516,8,4,8,8_1,8_3,8_0_1 -19820,2,36.0,0.0,1,111,0.0,0.0,0.0,63,64,0.0,0.0,0.0,3032.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,109735,1,3,4,0,2,,728.0,510.0,43,3.0,0.0,5.0,4.0,2.3,2,2,262.571646657302,0.0,7626.242178631022,4,1,2,3,140.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.3975745759157455,3315.75746897001,1,1,1_0,1_1_0,1_3_0,1_1_0 -19821,2,43.0,0.0,1,111,180.0,540.0,0.0,0,65,0.0,0.0,248.7913609636675,760.0,68.81308016760767,979.3725664576224,12,2,2,2,2,1,2,2,1,2,10.0,8,,1,109220,1,2,0,0,1,,400.0,422.0,32,2.0,1.0,3.0,4.0,2.3,2,2,233.976483143686,180.0,19152.007661486492,0,1,2,3,45.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.039682523808107766,8326.959852820215,1,1,1_0,1_0_0,1_3_0,1_1_0 -19822,2,52.0,0.0,7,111,615.0,1598.0,0.0,0,45,0.0,0.0,850.0371499591973,2213.0,0.0,2898.217335554223,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,104723,2,1,2,0,1,,677.0,,32,1.0,0.0,6.0,4.0,2.5,1,1,309.45936990544,615.0,41138.22469564262,0,1,1,2,108.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05379425136530994,16455.28987825705,4,2,4_0,4_1_0,4_3_0,4_0_0 -19823,1,38.0,230.0,2,111,690.0,790.0,0.0,84,54,0.0,0.0,953.7002170273921,1480.0,0.0,1432.7857916694845,44,2,2,2,2,1,2,2,2,0,,1,,2,128722,2,2,1,0,1,,624.0,630.0,42,1.0,2.0,5.0,3.0,1.8,1,1,318.595234671954,690.0,11590.482609149425,3,4,2,3,86.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.12769097283591116,6439.157005083014,1,1,1_1,1_1_1,1_3_1,1_0_1 -19824,1,60.0,40.0,2,111,734.0,589.0,0.0,0,56,0.0,0.0,1014.515883040733,1323.0,0.0,1068.2415585991473,12,0,0,0,0,0,0,0,0,0,,1,,2,111659,2,2,2,0,1,,400.0,,12,1.0,3.0,3.0,1.0,1.0,3,2,339.012385523722,734.0,28403.50475780655,0,1,1,2,45.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04657875889898343,28403.50475780655,8,4,8,8_1,8_3,8_0_1 -19825,2,56.0,0.0,1,111,800.0,3000.0,0.0,37,23,0.0,0.0,1105.7393820607444,3800.0,0.0,5440.958702542347,70,0,0,0,0,0,0,0,0,2,4.0,1,,1,101855,2,2,2,0,2,,700.0,,43,2.0,2.0,8.0,2.0,1.5,1,1,263.443913158849,800.0,253393.30549018452,1,1,0,1,250.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014996449857461595,168928.87032678968,10,5,10,10_1,10_3,10_1_0 -19826,1,25.0,300.0,2,111,500.0,0.0,0.0,84,54,0.0,0.0,691.0871137879653,500.0,0.0,0.0,44,2,2,2,2,1,2,2,2,0,,2,,2,125166,1,3,0,0,1,,0.0,472.0,42,1.0,0.0,2.0,2.0,1.5,2,2,381.510826104711,500.0,1183.7287893321309,3,4,2,3,38.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.4223940521731367,789.1525262214205,1,1,1_1,1_0_1,1_3_1,1_0_1 -19827,2,76.0,0.0,2,111,230.0,143.0,0.0,0,78,0.0,0.0,317.900072342464,373.0,0.0,259.3523648211852,50,0,0,0,0,0,0,0,0,0,,2,,2,103857,2,2,0,1,1,984.0,312.0,346.0,11,0.0,12.0,3.0,1.0,1.0,3,3,84.963873143508,230.0,19228.21301734874,0,5,2,3,64.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019398578519150955,19228.21301734874,5,3,5,5_0,5_3,5_0_1 -19828,2,41.0,0.0,2,111,590.0,1333.0,0.0,53,53,0.0,0.0,815.482794269799,1923.0,0.0,2417.5993168296495,70,0,0,0,0,0,0,0,0,2,30.0,1,,2,130420,2,1,1,0,1,,500.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,85.5814873014147,590.0,49223.67750684607,1,1,1,2,95.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039066565063785565,32815.785004564044,8,4,8,8_1,8_3,8_0_1 -19829,2,70.0,0.0,2,111,288.0,1195.0,0.0,75,75,0.0,0.0,398.066177541868,1483.0,0.0,2167.315216512701,50,0,0,0,0,0,0,0,0,0,,1,,2,130101,1,1,2,0,2,,356.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,82.0310124802741,288.0,52381.771475686786,5,5,0,1,84.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02831137546939092,34921.18098379119,9,5,9,9_1,9_3,9_0_1 -19830,1,41.0,308.0,2,111,227.0,216.0,0.0,0,54,0.0,0.0,313.7535496597362,443.0,0.0,391.749026583049,71,2,2,2,2,1,2,2,2,0,,2,,2,117068,2,3,0,1,1,,300.0,461.0,32,1.0,0.0,3.0,2.0,1.3,4,2,74.9819217387804,227.0,17148.43851752967,0,4,2,3,57.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02583325587033196,13191.106551945899,2,1,2_1,2_0_1,2_3_1,2_0_1 -19831,2,61.0,0.0,1,111,360.0,1800.0,0.0,77,74,0.0,258.79312620486445,497.582721927335,2410.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,1,115720,2,2,2,0,1,,600.0,,41,0.0,2.0,6.0,3.0,2.0,2,2,73.0706284100799,360.0,38368.17794848399,6,5,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06281246931339422,19184.088974241997,5,3,5,5_1,5_3,5_1_0 -19832,1,35.0,420.0,6,111,280.0,1330.0,0.0,63,56,0.0,0.0,387.00878372126056,1610.0,0.0,2412.158358127107,20,2,2,2,2,1,2,2,2,0,,2,,4,133603,1,2,0,0,1,,0.0,453.0,43,2.0,0.0,3.0,5.0,2.8,1,1,360.484656184095,280.0,16754.195186790497,4,4,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09609533505192608,5983.641138139464,1,1,1_1,1_0_1,1_3_1,1_0_0 -19833,2,41.0,0.0,8,111,570.0,760.0,0.0,56,48,0.0,0.0,787.8393097182804,1330.0,0.0,1378.376204644061,71,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,127434,1,2,2,0,1,,600.0,421.0,43,2.0,0.0,3.0,4.0,2.3,2,2,308.865298176656,570.0,32516.592715670147,1,1,2,3,65.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04090219450819202,14137.649006813108,3,2,3_0,3_1_0,3_3_0,3_0_0 -19834,1,24.0,257.0,9,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,2328.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,130562,2,1,2,0,1,,450.0,378.0,42,1.0,0.0,4.0,4.0,2.1,1,1,351.85020044404,0.0,16611.7140802277,6,1,2,3,91.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14014207015343053,7910.340038203666,1,1,1_1,1_1_1,1_3_1,1_0_0 -19835,2,57.0,0.0,5,111,850.0,1350.0,0.0,52,67,0.0,0.0,1174.848093439541,2200.0,0.0,2448.431416144056,41,0,0,0,0,0,0,0,0,2,15.0,1,,3,104894,2,2,5,0,1,,200.0,829.0,43,2.0,5.0,5.0,2.0,1.5,4,3,381.856119458877,850.0,42376.64986671423,1,1,2,3,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051915382809155086,28251.09991114282,8,4,8,8_1,8_3,8_0_0 -19836,2,73.0,0.0,5,111,1157.0,0.0,0.0,0,78,0.0,2227.691230371473,1599.1755813053517,3399.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,129371,2,1,1,0,1,,600.0,,11,0.0,9.0,6.0,1.0,1.0,1,1,472.884795395988,1157.0,15805.667367110756,0,5,0,1,110.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2150494453067394,15805.667367110756,3,2,3_0,3_1_0,3_3_0,3_0_0 -19837,2,55.0,0.0,7,111,1015.0,0.0,0.0,77,52,0.0,362.31037668681023,1402.9068409895694,1365.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,1,,5,117883,2,2,2,0,1,,340.0,850.0,42,1.0,4.0,4.0,2.0,1.5,2,1,390.611233595169,1015.0,44860.96110808564,5,1,2,3,97.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030427346322590833,29907.307405390427,8,4,8,8_1,8_3,8_0_0 -19838,2,55.0,0.0,6,111,423.0,1116.0,0.0,0,63,0.0,0.0,584.6596982646187,1539.0,0.0,2024.036637345753,60,0,0,0,0,0,0,0,0,2,25.0,1,,4,117900,2,1,2,0,1,,173.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,410.893863585373,423.0,31431.688693413053,0,1,0,1,68.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04896332535650618,31431.688693413053,8,4,8,8_1,8_3,8_0_0 -19839,1,28.0,166.0,8,111,1800.0,0.0,0.0,0,67,0.0,0.0,2487.913609636675,1920.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,110131,2,1,2,0,1,,800.0,,22,3.0,1.0,5.0,3.0,2.0,2,2,340.95765966899,1800.0,27398.527700107414,0,1,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07007675817531148,13699.263850053707,3,2,3_1,3_1_1,3_3_1,3_0_0 -19840,2,55.0,0.0,9,111,0.0,0.0,0.0,68,38,0.0,0.0,0.0,1625.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,104411,2,1,1,0,1,,323.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,358.756189452802,0.0,45122.97382972332,1,1,1,2,150.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03601269734863049,30081.98255314888,8,4,8,8_1,8_3,8_0_0 -19841,2,58.0,0.0,6,111,1600.0,0.0,0.0,0,47,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,132683,2,2,3,0,1,,370.0,532.0,32,1.0,5.0,4.0,2.0,1.5,2,2,317.216938455004,1600.0,16658.165616124297,0,1,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09604899103964229,11105.443744082864,2,1,2_0,2_1_0,2_3_0,2_0_0 -19842,1,46.0,270.0,5,111,640.0,0.0,0.0,0,62,0.0,0.0,884.5915056485956,665.0,43.00817510475479,0.0,41,2,2,2,1,1,2,2,2,0,,1,,3,126525,1,2,5,0,1,,180.0,451.0,12,1.0,2.0,4.0,1.0,1.0,1,1,407.043964414509,640.0,7204.897959183673,0,4,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.09229832313618853,7204.897959183673,1,1,1_1,1_1_1,1_3_1,1_0_0 -19843,2,48.0,0.0,5,111,1060.0,0.0,0.0,68,85,0.0,0.0,1465.1046812304864,1180.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124726,1,2,3,0,1,,400.0,481.0,42,2.0,1.0,4.0,4.0,2.5,2,2,300.283310523337,1060.0,41590.652073950114,1,7,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028371760026794125,16636.260829580046,4,2,4_0,4_1_0,4_3_0,4_0_0 -19844,1,47.0,432.0,6,111,800.0,0.0,0.0,52,46,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,107754,2,2,2,0,1,,400.0,451.0,43,2.0,0.0,4.0,4.0,2.3,1,1,342.073854270306,800.0,33432.96441998002,1,1,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023928479387903413,14536.071486947834,3,2,3_1,3_1_1,3_3_1,3_0_0 -19845,2,55.0,0.0,2,111,1470.0,0.0,0.0,85,62,0.0,0.0,2031.796114536618,1680.0,361.26867087994026,0.0,31,2,2,2,1,1,1,2,2,2,30.0,1,,2,119890,1,3,3,0,2,,130.0,,42,2.0,2.0,5.0,3.0,2.0,2,2,342.141537642789,1470.0,24064.80897219356,6,1,0,1,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06981148289775367,12032.40448609678,2,1,2_0,2_1_0,2_3_0,2_0_1 -19846,2,65.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1933.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,123742,2,2,2,0,2,,183.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,297.081651567584,0.0,39425.76479844604,0,5,0,1,87.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04902885232238256,26283.843198964027,7,4,7,7_1,7_3,7_1_0 -19847,2,29.0,0.0,2,111,600.0,1448.0,0.0,43,63,0.0,0.0,829.3045365455583,2048.0,0.0,2626.169400427106,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,125753,2,1,1,0,1,,264.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,371.420320861263,600.0,46058.85755777895,1,1,1,2,87.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044464845821042515,25588.254198766084,7,4,7,7_1,7_3,7_0_1 -19848,2,62.0,0.0,1,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,3071.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,1,,1,103842,2,1,2,0,1,,260.0,,41,0.0,2.0,8.0,2.0,1.5,1,1,298.182614568005,0.0,37299.90843205201,5,5,0,1,160.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.0823326417970794,24866.60562136801,7,4,7,7_1,7_3,7_1_0 -19849,1,46.0,100.0,2,111,330.0,1110.0,0.0,56,31,0.0,0.0,456.1174951000571,1440.0,0.0,2013.1547199406682,60,0,0,0,0,0,0,0,0,0,,1,,2,113258,1,3,2,0,1,,300.0,600.0,43,2.0,0.0,3.0,3.0,1.8,1,1,358.500385452239,330.0,24761.858385680087,1,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05815395506957424,13756.587992044493,3,2,3_1,3_1_1,3_3_1,3_0_1 -19850,2,44.0,0.0,2,111,976.0,1930.0,0.0,21,48,0.0,253.61726368076717,1349.0020461141082,3151.0,0.0,3500.350098635576,50,0,0,0,0,0,0,0,0,0,,1,,2,110642,2,1,3,0,1,,540.0,,43,3.0,0.0,7.0,5.0,2.8,3,2,411.470149931433,976.0,55172.78163712991,1,1,1,2,133.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057111494227788856,19704.56487040354,5,3,5,5_1,5_3,5_0_1 -19851,2,70.0,0.0,1,111,250.0,0.0,0.0,0,74,2240.377315527001,447.19452208200573,345.54355689398267,2284.0,175.47335442739956,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117605,2,2,2,0,1,,164.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,422.643736130715,250.0,41137.809206438826,0,5,0,1,190.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05552070088463806,41137.809206438826,9,5,9,9_1,9_3,9_1_0 -19852,2,45.0,0.0,2,111,450.0,1200.0,0.0,52,47,0.0,0.0,621.9784024091688,1750.0,172.03270041901916,2176.3834810169387,44,0,0,0,0,0,0,0,0,2,20.0,1,,2,100264,2,1,1,0,1,,350.0,,43,2.0,1.0,6.0,2.0,1.5,1,1,378.966929005503,450.0,54397.48374581263,1,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03217060568789104,36264.989163875085,9,5,9,9_1,9_3,9_0_1 -19853,1,74.0,103.0,7,111,400.0,600.0,0.0,0,78,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,,5,110366,2,1,0,0,1,,220.0,318.0,11,0.0,0.0,2.0,1.0,1.0,2,2,445.804962880886,400.0,11371.400000000001,0,5,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08793991944703378,11371.400000000001,2,1,2_1,2_0_1,2_3_1,2_0_0 -19854,2,31.0,0.0,1,111,900.0,0.0,0.0,55,48,0.0,155.27587572291867,1243.9568048183376,1950.0,1548.2943037711725,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,1,114462,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,315.206354800914,900.0,41660.031170368304,1,1,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04680745417653418,19838.11008112776,5,3,5,5_1,5_3,5_1_0 -19855,1,50.0,16.0,7,111,300.0,600.0,0.0,62,85,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,71,2,2,2,2,2,1,2,2,0,,2,,5,119499,1,3,0,0,1,,160.0,370.0,42,1.0,1.0,3.0,2.0,1.5,2,2,395.934428664679,300.0,47426.13060030128,4,7,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.01897688022632575,31617.420400200852,8,4,8,8_0,8_3,8_0_0 -19856,2,61.0,0.0,2,111,779.5,0.0,0.0,75,21,1866.981096272501,0.0,1077.4048103954378,2030.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,123287,2,1,3,0,1,,350.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,360.757977481735,779.5,44804.73717043489,5,1,0,1,100.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045307709144191285,29869.824780289928,8,4,8,8_1,8_3,8_0_1 -19857,1,24.0,109.0,1,111,950.0,0.0,0.0,0,56,0.0,0.0,1313.065516197134,950.0,0.0,0.0,70,2,2,2,1,1,2,2,2,2,15.0,1,,1,119269,2,2,3,0,1,,350.0,445.0,12,1.0,0.0,2.0,1.0,1.0,2,2,337.859627874092,950.0,14428.608964672061,0,1,2,3,50.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.06584141287119509,14428.608964672061,3,2,3_1,3_1_1,3_3_1,3_1_0 -19858,2,65.0,0.0,5,111,1005.0,0.0,0.0,77,77,0.0,776.3793786145933,1389.08509871381,1807.0,89.45700421788997,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101826,1,1,1,0,1,,350.0,,41,1.0,1.0,6.0,3.0,2.0,2,2,330.422752050545,1005.0,56063.07131532573,6,5,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03223155559631332,28031.535657662866,7,4,7,7_1,7_3,7_0_0 -19859,1,34.0,180.0,1,111,800.0,750.0,0.0,56,65,0.0,0.0,1105.7393820607444,1550.0,0.0,1360.2396756355868,70,0,0,0,0,0,0,0,0,0,,1,,1,132197,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,285.681416952527,800.0,40509.12180808842,1,4,1,2,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.038262986972245665,16878.800753370175,4,2,4_1,4_1_1,4_3_1,4_1_0 -19860,0,36.0,0.0,1,111,510.0,1225.0,0.0,67,62,0.0,0.0,704.9088560637246,1735.0,0.0,2221.724803538125,70,0,0,0,0,0,0,0,0,0,,1,,1,127162,2,1,1,0,1,,560.0,,43,2.0,8.0,4.0,3.0,2.0,2,2,295.498995105069,510.0,45851.50193978229,4,1,5,0,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03783954563317491,22925.750969891145,6,3,6,6_1,6_3,6_1_0 -19861,1,56.0,327.0,1,111,680.0,1000.0,0.0,85,62,0.0,0.0,939.8784747516328,1680.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,114824,1,1,1,0,1,,250.0,443.0,42,1.0,3.0,4.0,2.0,1.5,2,2,265.504123538415,680.0,21271.890105643415,6,4,2,3,65.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07897746705424627,14181.260070428943,3,2,3_1,3_1_1,3_3_1,3_1_0 -19862,2,30.0,0.0,1,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,3020.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,127144,2,1,1,0,1,,494.0,473.0,42,1.0,0.0,4.0,4.0,2.1,2,2,251.082196256738,0.0,38895.642693532194,6,1,2,3,75.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07764365854024528,18521.73461596771,4,2,4_0,4_1_0,4_3_0,4_1_0 -19864,0,80.0,0.0,1,111,380.0,900.0,0.0,78,78,0.0,0.0,525.2262064788536,1280.0,0.0,1632.287610762704,70,2,2,2,2,2,2,2,1,0,,1,,1,108645,1,2,1,0,1,,300.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,299.494623469645,380.0,44384.734434047525,5,5,5,0,74.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.028838744138527776,29589.822956031683,8,4,8,8_1,8_3,8_1_0 -19865,2,44.0,0.0,1,111,460.0,1221.0,0.0,52,63,0.0,0.0,635.800144684928,1681.0,0.0,2214.470191934735,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,106321,1,2,3,0,1,,500.0,477.0,43,2.0,0.0,4.0,3.0,1.8,2,2,271.560407622816,460.0,39367.06915449153,1,1,2,3,86.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04270066418719435,21870.593974717518,6,3,6,6_1,6_3,6_1_0 -19866,2,51.0,0.0,1,111,240.0,910.0,0.0,0,67,0.0,0.0,331.72181461822333,1150.0,0.0,1650.4241397711785,12,0,0,0,0,0,0,0,0,1,5.0,1,,1,112628,2,2,1,0,1,,160.0,335.0,12,1.0,0.0,4.0,1.0,1.0,2,2,312.380967734403,240.0,14967.592300515807,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07683266466045906,14967.592300515807,3,2,3_0,3_1_0,3_3_0,3_1_0 -19867,2,24.0,0.0,1,111,1229.0,0.0,0.0,54,64,0.0,0.0,1698.6921256908186,1304.0,129.02452531426437,0.0,10,2,2,2,2,1,2,2,2,2,10.0,1,,1,117887,2,1,1,0,1,,400.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,246.731803421153,1229.0,35194.74368336189,1,1,1,2,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03705098726479597,19552.635379645497,5,3,5,5_1,5_3,5_1_0 -19868,0,85.0,0.0,1,111,250.0,960.0,0.0,0,86,0.0,0.0,345.54355689398267,1210.0,0.0,1741.106784813551,31,0,0,0,0,0,0,0,0,0,,1,,1,125542,1,1,1,0,1,,143.0,,11,0.0,4.0,3.0,1.0,1.0,5,2,378.909772463203,250.0,13225.076145018162,0,6,5,0,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09149285695839283,13225.076145018162,2,1,2_0,2_1_0,2_3_0,2_1_0 -19869,2,54.0,0.0,7,111,400.0,940.0,0.0,42,46,0.0,0.0,552.8696910303722,1340.0,0.0,1704.833726796602,60,0,0,0,0,0,0,0,0,2,30.0,1,,5,100625,2,1,2,0,1,,540.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,368.505213092212,400.0,91448.69417712434,1,1,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014653024978187141,45724.34708856217,10,5,10,10_1,10_3,10_0_0 -19870,2,46.0,0.0,6,111,1114.0,0.0,0.0,47,46,0.0,1552.7587572291866,1539.7420895195867,2614.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,125668,2,1,2,0,1,,700.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,357.030794597855,1114.0,84225.8600703359,1,1,0,1,200.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031035598779485106,30080.66431083425,8,4,8,8_1,8_3,8_0_0 -19871,2,58.0,0.0,1,111,1500.0,1500.0,0.0,52,62,0.0,0.0,2073.261341363896,3000.0,0.0,2720.4793512711735,10,0,0,0,0,0,0,0,0,0,,1,,1,105355,2,1,3,0,1,,500.0,,43,3.0,2.0,5.0,4.0,2.5,2,2,279.728287968829,1500.0,58608.62955584843,1,1,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05118700134664105,23443.45182233937,6,3,6,6_1,6_3,6_1_0 -19872,2,50.0,0.0,2,111,750.0,0.0,0.0,85,65,0.0,2070.3450096389156,1036.630670681948,2848.0,168.59204641063877,0.0,12,2,2,2,2,1,2,2,2,2,25.0,1,,2,117423,2,2,2,0,1,,500.0,,42,2.0,0.0,4.0,3.0,2.0,2,2,380.511919349133,750.0,26012.73598748503,6,1,0,1,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.1094848308678564,13006.367993742515,2,1,2_0,2_1_0,2_3_0,2_0_1 -19873,2,47.0,0.0,8,111,724.0,1375.0,0.0,55,21,0.0,465.827627168756,1000.6941407649738,2549.0,0.0,2493.7727386652423,43,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,125268,2,1,1,0,1,,400.0,,43,3.0,0.0,5.0,3.0,2.0,1,1,387.429080399944,724.0,46946.936480602024,1,1,1,2,160.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054295342595000205,23473.468240301012,6,3,6,6_1,6_3,6_0_0 -19874,0,77.0,0.0,1,111,280.0,859.0,0.0,78,78,0.0,0.0,387.00878372126056,1139.0,0.0,1557.9278418279587,71,0,0,0,0,0,0,0,0,0,,1,,1,112254,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,332.085047564426,280.0,26399.718503216245,5,5,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04314439943218474,17599.812335477498,4,2,4_0,4_1_0,4_3_0,4_1_0 -19875,2,41.0,0.0,1,111,700.0,1650.0,0.0,77,62,0.0,0.0,967.5219593031513,2350.0,0.0,2992.5272863982905,71,0,0,0,0,0,0,0,0,0,,1,,1,123491,2,1,1,0,1,,600.0,395.0,42,1.0,4.0,4.0,4.0,2.3,3,3,249.928615189623,700.0,18042.619794236372,6,1,2,3,72.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13024716071169976,7844.617301841901,1,1,1_0,1_1_0,1_3_0,1_1_0 -19876,2,51.0,0.0,9,111,700.0,0.0,0.0,52,52,0.0,1035.1725048194578,967.5219593031513,1800.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,126429,2,1,1,0,1,,200.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,358.346307996324,700.0,37071.7969431228,1,1,1,2,166.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048554430818706744,18535.8984715614,4,2,4_0,4_1_0,4_3_0,4_0_0 -19877,2,83.0,0.0,1,111,418.0,2074.0,0.0,0,86,0.0,0.0,577.748827126739,2492.0,0.0,3761.516116357609,50,0,0,0,0,0,0,0,0,0,,1,,1,123916,2,1,2,0,1,,500.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,305.432512267539,418.0,17099.56633257342,0,6,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14573469008117024,17099.56633257342,4,2,4_0,4_1_0,4_3_0,4_1_0 -19878,2,58.0,0.0,5,111,1082.0,413.0,0.0,75,52,0.0,0.0,1495.512514237157,1495.0,0.0,749.0386480499964,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,133342,1,1,1,0,1,,399.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,360.609066413081,1082.0,63046.20616868524,5,1,0,1,203.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02371276704580774,42030.804112456826,9,5,9,9_1,9_3,9_0_0 -19879,1,43.0,430.0,2,111,800.0,1500.0,0.0,52,22,0.0,0.0,1105.7393820607444,2300.0,0.0,2720.4793512711735,50,2,2,2,1,1,2,2,2,0,,1,,2,114234,1,1,1,0,2,,800.0,634.0,43,2.0,1.0,5.0,4.0,2.3,1,1,355.182024941056,800.0,12852.18897389124,1,4,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.1789578417087056,5587.908249517931,1,1,1_1,1_1_1,1_3_1,1_0_1 -19880,0,82.0,0.0,1,111,600.0,800.0,0.0,0,78,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,1,124308,2,1,1,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,321.445389702684,600.0,14787.708568128364,0,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09467322090843679,14787.708568128364,3,2,3_0,3_1_0,3_3_0,3_1_0 -19881,2,61.0,0.0,1,111,433.0,0.0,0.0,0,75,0.0,672.8621281326475,598.4814405403779,1083.0,0.0,0.0,50,2,2,1,1,2,2,2,2,0,,1,,1,126121,2,3,3,0,1,,150.0,317.0,11,0.0,2.0,3.0,1.0,1.0,2,2,292.562071144642,433.0,20388.670466996307,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.053117735251696836,20388.670466996307,5,3,5,5_1,5_3,5_1_0 -19882,2,37.0,0.0,1,111,600.0,1100.0,0.0,67,62,0.0,0.0,829.3045365455583,1700.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,126328,2,2,5,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,4,3,264.954793118143,600.0,45274.706295150856,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03754855943001619,21559.383950071835,6,3,6,6_1,6_3,6_1_0 -19883,2,59.0,0.0,1,111,800.0,0.0,0.0,78,78,0.0,931.655254337512,1105.7393820607444,1756.0,96.33831223465073,0.0,60,2,2,2,1,1,2,2,2,0,,1,,1,110790,2,1,2,0,2,,240.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,341.705002320124,800.0,13742.255797558331,6,7,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1277810590828908,9161.503865038887,1,1,1_0,1_1_0,1_3_0,1_1_0 -19884,1,29.0,236.0,1,111,1000.0,0.0,0.0,0,56,0.0,362.31037668681023,1382.1742275759307,1410.0,103.2196202514115,0.0,31,2,2,1,2,1,2,2,2,0,,1,,1,121097,2,1,1,0,2,,300.0,224.0,12,1.0,0.0,5.0,1.0,1.0,2,2,358.898133265013,1000.0,4799.806647588663,0,4,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.29376183324142,4799.806647588663,1,1,1_1,1_1_1,1_3_1,1_1_0 -19885,2,67.0,0.0,8,111,600.0,800.0,0.0,75,75,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,121701,2,1,1,0,1,,280.0,,41,0.0,3.0,5.0,2.0,1.5,3,2,338.996716471307,600.0,36045.26228666461,5,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038840055840513255,24030.17485777641,6,3,6,6_1,6_3,6_0_0 -19886,1,32.0,400.0,1,111,600.0,1400.0,0.0,85,52,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,70,1,2,2,1,2,2,2,2,2,15.0,1,,1,110230,2,1,2,0,1,,1200.0,355.0,42,1.0,0.0,4.0,7.0,2.9999999999999996,2,2,263.090693199522,600.0,28853.13842348521,6,1,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.06931654957756991,9617.712807828404,1,1,1_1,1_1_1,1_3_1,1_1_0 -19887,0,80.0,0.0,5,111,360.0,960.0,0.0,0,72,0.0,0.0,497.582721927335,1320.0,0.0,1741.106784813551,33,0,0,0,0,0,0,0,0,0,,1,,3,103459,2,1,1,0,1,,170.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,443.815493873944,360.0,19040.60239973221,0,5,5,0,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06932553772660914,19040.60239973221,5,3,5,5_1,5_3,5_0_0 -19888,2,51.0,0.0,1,111,500.0,500.0,0.0,0,11,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,31,0,0,0,0,0,0,0,0,0,,1,,1,114587,1,1,2,0,1,,200.0,,12,1.0,1.0,3.0,1.0,1.0,3,3,374.313577197741,500.0,12087.66724231512,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08272894843591613,12087.66724231512,2,1,2_0,2_1_0,2_3_0,2_1_0 -19889,2,53.0,0.0,1,111,2059.0,0.0,0.0,68,47,0.0,155.27587572291867,2845.896734578841,2279.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,131538,2,1,2,0,1,,359.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,296.690723130041,2059.0,42059.686619012115,1,1,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054184902057017,28039.79107934141,8,4,8,8_1,8_3,8_1_0 -19890,2,71.0,0.0,5,111,900.0,1860.0,0.0,74,74,0.0,0.0,1243.9568048183376,2760.0,0.0,3373.3943955762547,41,0,0,0,0,0,0,0,0,0,,1,,3,108701,2,1,3,0,1,,600.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,360.609066413081,900.0,72186.82292938892,5,5,0,1,158.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038234124844360486,48124.54861959261,10,5,10,10_1,10_3,10_0_0 -19891,2,51.0,0.0,5,111,500.0,800.0,0.0,63,52,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,2,30.0,1,,3,100345,2,1,1,0,1,,300.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,340.135060575582,500.0,56190.475072493355,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023135593680651805,37460.31671499557,9,5,9,9_1,9_3,9_0_0 -19892,2,57.0,0.0,1,111,677.0,1350.0,0.0,0,54,0.0,0.0,935.731952068905,2027.0,0.0,2448.431416144056,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,125539,2,2,3,0,1,,600.0,526.0,22,2.0,0.0,4.0,2.0,1.5,2,2,251.48185989675,677.0,43304.05705681473,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04680854723012638,28869.37137120982,8,4,8,8_1,8_3,8_1_0 -19893,0,76.0,0.0,1,111,800.0,1080.0,0.0,86,78,0.0,0.0,1105.7393820607444,1880.0,0.0,1958.7451329152448,31,0,0,0,0,0,0,0,0,0,,1,,1,121468,2,1,1,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,345.545525602484,800.0,19505.413776834586,6,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09638349750020497,13003.609184556391,2,1,2_0,2_1_0,2_3_0,2_1_0 -19894,2,66.0,0.0,1,111,340.0,720.0,0.0,78,78,0.0,0.0,469.9392373758164,1060.0,0.0,1305.830088610163,41,0,0,0,0,0,0,0,0,0,,1,,1,123164,2,1,1,0,1,,250.0,278.0,41,0.0,6.0,3.0,2.0,1.5,2,2,317.421299487107,340.0,22411.01075505864,5,5,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04729817907747581,14940.67383670576,3,2,3_0,3_1_0,3_3_0,3_1_0 -19895,0,86.0,0.0,1,111,0.0,0.0,1600.0,0,78,0.0,0.0,817.4613357400401,1600.0,0.0,1829.1932394442103,41,0,0,0,0,0,0,0,0,0,,1,,1,113188,2,1,1,0,1,,150.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,403.230374854377,0.0,17755.085961936173,0,5,5,0,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09011502413618963,17755.085961936173,4,2,4_0,4_1_0,4_3_0,4_1_0 -19896,2,35.0,0.0,8,111,0.0,0.0,0.0,81,38,0.0,0.0,0.0,3241.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,120618,2,1,2,0,1,,119.0,,43,2.0,0.0,6.0,3.0,1.8,3,1,402.866738195192,0.0,42057.83889916192,4,1,0,1,116.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07706054530691978,23365.466055089957,6,3,6,6_1,6_3,6_0_0 -19897,1,25.0,377.0,1,111,542.0,1002.0,0.0,0,85,0.0,0.0,749.1384313461543,1544.0,0.0,1817.2802066491438,70,2,2,1,1,1,2,2,2,0,,1,,1,116144,1,2,1,0,1,,468.0,369.0,31,0.0,0.0,4.0,2.0,1.3,2,2,251.48185989675,542.0,9111.468354888038,0,6,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.16945677028792935,7008.821811452337,1,1,1_1,1_1_1,1_3_1,1_1_0 -19898,1,38.0,121.0,7,111,750.0,750.0,0.0,62,52,0.0,0.0,1036.630670681948,1500.0,0.0,1360.2396756355868,42,2,2,1,2,1,2,2,2,2,5.0,1,,5,102647,1,1,1,0,1,,1100.0,463.0,43,2.0,2.0,4.0,5.0,2.8,1,1,341.448481724376,750.0,38321.351059942346,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.03914267003931298,13686.196807122267,3,2,3_1,3_1_1,3_3_1,3_0_0 -19899,0,85.0,0.0,1,111,300.0,770.0,0.0,0,78,0.0,0.0,414.65226827277917,1070.0,0.0,1396.5127336525356,12,0,0,0,0,0,0,0,0,0,,1,,1,113541,2,1,1,0,1,,80.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,294.029439469842,300.0,24780.0877806332,0,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0431798308977846,24780.0877806332,7,4,7,7_1,7_3,7_1_0 -19900,1,29.0,204.0,2,111,250.0,973.0,0.0,85,64,0.0,0.0,345.54355689398267,1223.0,0.0,1764.6842725245679,10,2,2,1,1,1,2,2,2,2,10.0,2,,2,112668,1,2,0,0,1,,264.0,256.0,42,1.0,0.0,2.0,3.0,1.8,2,2,403.417118901917,250.0,16535.137438960788,6,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07396370332660894,9186.187466089326,1,1,1_1,1_0_1,1_3_1,1_0_1 -19901,2,49.0,0.0,1,111,678.0,744.0,0.0,65,62,0.0,0.0,937.1141262964809,1422.0,0.0,1349.357758230502,10,0,0,0,0,0,0,0,0,0,,1,,1,107794,2,1,1,0,1,,592.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,275.36503599537,678.0,45965.54643328448,1,4,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030936214411459804,22982.77321664224,6,3,6,6_1,6_3,6_1_0 -19902,1,35.0,304.0,1,111,540.0,800.0,0.0,56,63,0.0,0.0,746.3740828910024,1340.0,0.0,1450.922320677959,12,2,2,1,1,2,2,2,2,2,30.0,1,,1,126794,1,3,3,0,1,,400.0,553.0,43,2.0,0.0,4.0,5.0,2.4,1,1,242.659458213182,540.0,31206.421567948055,4,1,2,3,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.04293988008469086,13002.67565331169,2,1,2_1,2_1_1,2_3_1,2_1_0 -19903,2,59.0,0.0,2,111,779.0,1000.0,0.0,85,62,0.0,0.0,1076.71372328165,1779.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,125167,2,1,2,0,1,,560.0,664.0,42,1.0,1.0,5.0,4.0,2.5,1,1,301.645124765514,779.0,12383.970737374857,6,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14365344021937757,4953.588294949943,1,1,1_0,1_1_0,1_3_0,1_0_1 -19904,2,38.0,0.0,2,111,1000.0,1830.0,0.0,48,21,0.0,0.0,1382.1742275759307,2830.0,0.0,3318.9848085508315,50,1,2,2,2,1,2,2,2,2,40.0,2,,2,115989,1,3,0,0,1,,600.0,645.0,43,2.0,0.0,3.0,3.0,1.8,2,2,541.788269351051,1000.0,29852.42321565449,1,1,2,3,75.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.09479967437001763,16584.679564252492,4,2,4_0,4_0_0,4_2_0,4_0_1 -19905,2,54.0,0.0,5,111,220.0,0.0,0.0,0,62,0.0,0.0,304.0783300667047,220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,25.0,2,,3,105260,2,1,0,1,1,1088.0,0.0,565.0,12,1.0,1.0,4.0,1.0,1.0,3,3,448.519067455699,220.0,32275.109716549785,0,1,2,3,107.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006816398206918877,32275.109716549785,8,4,8,8_0,8_2,8_0_0 -19906,1,96.0,53.0,2,111,0.0,0.0,14.0,0,86,0.0,0.0,7.15278668772535,14.0,0.0,16.005440845136842,42,0,0,0,0,0,0,0,0,0,,2,,2,106165,1,2,0,1,1,,0.0,470.0,11,0.0,2.0,2.0,1.0,1.0,2,2,514.457113891446,0.0,15468.18146457316,0,6,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0009050837703232444,15468.18146457316,3,2,3_1,3_0_1,3_2_1,3_0_1 -19907,1,53.0,204.0,2,111,128.0,160.0,0.0,0,43,0.0,0.0,176.9183011297191,288.0,0.0,290.18446413559184,70,0,0,0,0,0,0,0,0,0,,2,,2,130966,2,1,0,1,1,321.0,140.0,190.0,12,1.0,2.0,1.0,1.0,1.0,1,1,559.001717429721,128.0,10845.743724388216,0,4,2,3,40.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026554195573733737,10845.743724388216,2,1,2_1,2_0_1,2_2_1,2_0_1 -19908,2,48.0,0.0,2,111,142.0,73.0,0.0,0,34,0.0,0.0,196.26874031578214,215.0,0.0,132.39666176186378,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,115940,2,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,554.264842117708,142.0,32023.72926092892,0,1,1,2,93.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006713771473902457,32023.72926092892,8,4,8,8_0,8_2,8_0_1 -19909,1,25.0,300.0,2,111,420.0,1200.0,0.0,63,55,0.0,0.0,580.5131755818909,1714.0,161.71073839387802,2176.3834810169387,50,0,0,0,0,0,0,0,0,3,10.0,1,,2,121740,2,3,4,0,1,,280.0,600.0,43,2.0,0.0,4.0,4.0,2.1,2,2,429.3640825564,420.0,19046.32216974267,4,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08999112714384781,9069.677223686986,1,1,1_1,1_1_1,1_2_1,1_0_1 -19910,2,65.0,0.0,6,111,5310.0,0.0,0.0,72,72,0.0,0.0,7339.345148428191,5310.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,125477,2,1,2,0,1,,900.0,,41,0.0,2.0,8.0,2.0,1.5,3,3,456.87556332346,5310.0,267197.6359628858,5,5,0,1,174.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019872930315661803,178131.75730859055,10,5,10,10_1,10_2,10_0_0 -19912,1,53.0,84.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1108.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,4.0,2,,2,113802,2,2,0,0,1,,131.0,470.0,32,1.0,2.0,3.0,2.0,1.5,2,2,515.412062737608,0.0,13665.02327826152,0,1,2,3,67.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08108292078525907,9110.015518841014,1,1,1_1,1_0_1,1_2_1,1_0_1 -19913,0,50.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,776.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,116417,1,3,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,716.418726777123,0.0,29530.277574037125,0,1,5,0,36.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026278113981639487,29530.277574037125,8,4,8,8_0,8_2,8_0_1 -19914,2,76.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,562.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131541,1,3,0,1,2,748.0,0.0,90.0,11,0.0,4.0,2.0,1.0,1.0,1,1,643.926718651623,0.0,11210.715266892617,0,5,2,3,55.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05013061045798686,11210.715266892617,2,1,2_0,2_0_0,2_2_0,2_0_1 -19915,2,33.0,0.0,1,111,450.0,750.0,0.0,34,34,0.0,0.0,621.9784024091688,1200.0,0.0,1360.2396756355868,70,0,0,0,0,0,0,0,0,2,8.0,2,,1,127954,2,2,0,0,1,,250.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,428.190017087754,450.0,46036.21046827821,1,1,1,2,48.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02606643743682756,30690.80697885214,8,4,8,8_0,8_2,8_1_0 -19916,2,37.0,0.0,2,111,2200.0,2000.0,0.0,85,46,0.0,0.0,3040.783300667047,4200.0,0.0,3627.3058016948976,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,112767,1,2,2,0,1,,550.0,,42,1.0,0.0,6.0,3.0,1.8,1,1,467.216662660933,2200.0,18958.29203239796,6,1,1,2,142.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.22153894416346104,10532.384462443311,2,1,2_0,2_1_0,2_2_0,2_0_1 -19918,1,21.0,190.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1825.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105612,1,1,0,0,2,,348.0,370.0,12,1.0,0.0,2.0,1.0,1.0,1,1,686.192503354874,0.0,9407.057643337648,0,1,2,3,51.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.19400327596509606,9407.057643337648,1,1,1_1,1_0_1,1_2_1,1_0_1 -19919,2,33.0,0.0,5,111,0.0,0.0,1200.0,0,54,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,108887,2,1,0,0,2,,180.0,366.0,12,1.0,0.0,2.0,1.0,1.0,2,2,644.524877365202,0.0,21047.15931684187,0,1,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05701482000185003,21047.15931684187,5,3,5,5_0,5_2,5_0_0 -19920,2,66.0,0.0,2,111,500.0,1200.0,0.0,0,78,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,1,,2,121184,2,2,2,0,1,,150.0,,21,0.0,2.0,4.0,2.0,1.5,1,1,486.232530915433,500.0,43007.132950870604,0,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03952832666018455,28671.421967247068,8,4,8,8_1,8_2,8_0_1 -19921,1,20.0,297.0,5,111,0.0,0.0,0.0,67,56,0.0,0.0,0.0,831.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,101711,2,1,0,0,1,,524.0,268.0,43,2.0,2.0,2.0,3.0,1.8,1,1,470.368322192378,0.0,14597.691658584055,1,1,2,3,65.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.056926808665076656,8109.8286992133635,1,1,1_1,1_0_1,1_2_1,1_0_0 -19922,2,70.0,0.0,5,111,0.0,0.0,600.0,72,72,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,43,0,0,0,0,0,0,0,0,0,,2,,3,119674,1,1,0,0,1,,470.0,328.0,41,0.0,2.0,3.0,2.0,1.5,2,2,476.607912135031,0.0,22555.410847333318,5,5,2,3,45.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02660115588499408,15036.940564888879,3,2,3_0,3_0_0,3_2_0,3_0_0 -19923,2,41.0,0.0,1,111,1500.0,0.0,0.0,56,62,2688.452778632401,273.28554127233684,2073.261341363896,3660.0,165.1513924022584,0.0,20,2,2,2,2,1,2,2,2,0,,1,,1,110572,2,3,4,0,1,,470.0,,43,2.0,1.0,5.0,4.0,2.1,1,1,347.112419343115,1500.0,46804.83043677484,1,1,1,2,210.0,7,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07819705713802384,22288.014493702303,6,3,6,6_1,6_2,6_1_0 -19924,2,29.0,0.0,1,111,0.0,0.0,0.0,42,33,0.0,0.0,0.0,2279.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,,1,129242,1,3,3,0,1,,228.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,430.774079677583,0.0,38670.964137644674,1,1,1,2,65.0,7,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05893310525923719,25780.64275842978,7,4,7,7_1,7_2,7_1_0 -19925,1,33.0,116.0,2,111,0.0,0.0,1100.0,85,46,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,50,2,2,2,1,1,2,2,2,2,10.0,2,,2,102242,1,2,0,0,1,,200.0,445.0,42,1.0,0.0,3.0,3.0,1.8,2,2,541.788269351051,0.0,20764.09939579568,6,1,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05297605155091524,11535.610775442045,2,1,2_1,2_0_1,2_2_1,2_0_1 -19926,2,31.0,0.0,1,111,980.0,120.0,0.0,85,62,0.0,0.0,1354.530743024412,1100.0,0.0,217.63834810169388,41,2,2,2,2,1,2,2,2,2,20.0,2,,1,130379,1,3,0,0,2,,700.0,328.0,42,1.0,0.0,3.0,3.0,1.8,2,2,455.146836221343,980.0,25014.301734567347,6,1,2,3,45.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.043974843338517276,13896.834296981859,3,2,3_0,3_0_0,3_2_0,3_1_0 -19927,1,36.0,223.0,2,111,760.0,0.0,0.0,0,55,0.0,0.0,1050.452412957707,760.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,1,,2,118296,1,1,3,0,1,,170.0,325.0,12,1.0,0.0,1.0,1.0,1.0,1,1,490.684106031459,760.0,5392.611531648815,0,4,2,3,35.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,1,0,0,1,0.14093357096828124,5392.611531648815,1,1,1_1,1_1_1,1_2_1,1_0_1 -19928,2,38.0,0.0,1,111,600.0,900.0,0.0,85,31,0.0,113.86897553014036,829.3045365455583,1610.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,1,10.0,1,,1,110231,2,2,2,0,1,,1000.0,,42,1.0,0.0,9.0,5.0,2.4,2,2,376.682714412889,600.0,107708.94254938095,6,1,1,2,140.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014947691082027556,44878.726062242065,10,5,10,10_1,10_2,10_1_0 -19929,2,72.0,0.0,7,111,200.0,780.0,0.0,77,78,0.0,0.0,276.4348455151861,980.0,0.0,1414.6492626610102,50,1,2,2,1,2,2,2,2,0,,2,,5,104576,1,1,0,1,1,677.0,227.0,366.0,41,0.0,2.0,2.0,2.0,1.5,2,2,419.015574736394,200.0,28866.81251372553,5,5,2,3,75.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.033949020160574765,19244.54167581702,5,3,5,5_0,5_2,5_0_0 -19930,2,33.0,0.0,2,111,800.0,0.0,0.0,0,63,0.0,0.0,1105.7393820607444,864.0,110.10092826817227,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,114976,2,2,0,0,1,,150.0,450.0,12,1.0,1.0,2.0,1.0,1.0,2,2,965.64746303728,800.0,15246.563129068876,0,1,2,3,38.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05666850900664361,15246.563129068876,3,2,3_0,3_0_0,3_2_0,3_0_1 -19931,0,48.0,0.0,1,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,2676.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,105134,1,2,1,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,402.17358286238,0.0,23799.337638156303,1,1,5,0,110.0,7,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11244010403506782,15866.225092104201,3,2,3_0,3_1_0,3_2_0,3_1_0 -19932,2,26.0,0.0,1,111,0.0,0.0,800.0,69,69,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,41,0,0,0,0,0,0,0,0,1,10.0,2,,1,102259,2,1,0,0,1,,450.0,,43,2.0,0.0,2.0,3.0,1.8,1,1,779.683661081401,0.0,35667.034040753046,1,1,1,2,43.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022429675511732274,19815.01891152947,5,3,5,5_0,5_2,5_1_0 -19933,2,63.0,0.0,1,111,200.0,1200.0,0.0,0,74,0.0,0.0,276.4348455151861,1400.0,0.0,2176.3834810169387,71,1,2,2,2,1,2,2,2,0,,2,,1,110041,2,2,0,0,1,,180.0,660.0,11,0.0,0.0,3.0,1.0,1.0,1,1,510.756813478663,200.0,33578.33014506793,0,5,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04169355634874046,33578.33014506793,9,5,9,9_0,9_2,9_1_0 -19934,1,58.0,270.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,928.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114163,1,1,0,0,2,,119.0,300.0,31,0.0,4.0,1.0,2.0,1.5,1,1,718.293541029016,0.0,8360.749183454349,0,7,2,3,45.0,7,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11099483785932508,5573.832788969566,1,1,1_1,1_0_1,1_2_1,1_1_0 -19935,2,68.0,0.0,6,111,408.0,615.0,0.0,77,77,0.0,0.0,563.9270848509797,1023.0,0.0,1115.396534021181,41,0,0,0,0,0,0,0,0,0,,2,,4,111927,1,2,0,1,1,211.0,146.0,492.0,41,1.0,3.0,4.0,3.0,2.0,1,1,474.412036302826,408.0,27071.171850849685,5,5,2,3,82.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03778927656461577,13535.585925424843,3,2,3_0,3_0_0,3_2_0,3_0_0 -19936,1,72.0,150.0,2,111,270.0,1100.0,0.0,0,77,0.0,0.0,373.1870414455012,1370.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,2,,2,106149,2,1,0,0,1,,220.0,417.0,11,0.0,3.0,2.0,1.0,1.0,1,1,686.192503354874,270.0,12372.932234946456,0,5,2,3,55.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11072557207826077,12372.932234946456,2,1,2_1,2_0_1,2_2_1,2_0_1 -19937,1,29.0,243.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,396.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,121855,2,2,0,0,1,,174.0,261.0,12,1.0,0.0,1.0,1.0,1.0,4,4,619.658159338322,0.0,7800.381427218193,0,4,2,3,33.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05076674822826239,7800.381427218193,1,1,1_1,1_0_1,1_2_1,1_0_1 -19938,2,84.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,299.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,105940,1,1,0,1,1,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,554.264842117708,0.0,19605.011894273135,0,5,0,1,90.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01525120217281488,19605.011894273135,5,3,5,5_0,5_2,5_0_1 -19939,1,53.0,184.0,2,111,0.0,0.0,370.0,0,56,0.0,0.0,189.03793388988427,370.0,0.0,423.00093662147367,70,0,0,0,0,0,0,0,0,0,,2,,2,117818,2,2,0,1,2,541.0,350.0,500.0,32,2.0,3.0,4.0,3.0,1.8,1,1,509.620874644539,0.0,14775.297092997225,0,1,2,3,68.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025041797648546915,8208.498384998458,1,1,1_1,1_0_1,1_2_1,1_0_1 -19940,2,48.0,0.0,1,111,500.0,0.0,0.0,85,21,0.0,517.5862524097289,691.0871137879653,1088.0,151.38877636873687,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118825,2,1,1,0,1,,400.0,,42,1.0,3.0,6.0,3.0,2.0,3,2,429.596681060337,500.0,18099.778036952208,6,1,0,1,140.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060111234390761985,9049.889018476104,1,1,1_0,1_1_0,1_2_0,1_1_0 -19941,2,55.0,0.0,6,111,646.0,1090.0,0.0,78,54,0.0,0.0,892.8845510140511,1736.0,0.0,1976.8816619237193,50,0,0,0,0,0,0,0,0,1,30.0,1,,4,101872,2,1,2,0,1,,510.0,,42,2.0,0.0,3.0,3.0,2.0,3,1,401.259513956399,646.0,57758.13660550366,7,1,1,2,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030056371310195278,28879.06830275183,8,4,8,8_1,8_2,8_0_0 -19942,2,85.0,0.0,2,111,435.0,82.0,0.0,0,75,0.0,0.0,601.2457889955298,517.0,0.0,148.7195378694908,10,0,0,0,0,0,0,0,0,0,,2,,2,109547,2,1,0,1,1,1068.0,206.0,424.0,11,0.0,2.0,3.0,1.0,1.0,2,2,540.042526943095,435.0,35328.28747814159,0,5,2,3,87.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014634165336202034,35328.28747814159,9,5,9,9_0,9_2,9_0_1 -19943,2,24.0,0.0,6,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,678.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,124577,1,1,0,0,2,,83.0,490.0,12,1.0,0.0,2.0,1.0,1.0,2,2,942.700610038171,0.0,19309.21804163715,0,1,2,3,55.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03511276316513722,19309.21804163715,5,3,5,5_0,5_2,5_0_0 -19944,2,53.0,0.0,6,111,1600.0,0.0,0.0,63,67,0.0,1811.5518834340512,2211.478764121489,3542.0,330.3027848045168,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116240,2,1,2,0,1,,780.0,,43,2.0,3.0,7.0,3.0,2.0,1,1,493.753746848385,1600.0,20923.92586016816,4,4,0,1,100.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16927989630964663,10461.96293008408,2,1,2_0,2_1_0,2_2_0,2_0_0 -19945,2,86.0,0.0,1,111,231.0,1239.0,0.0,78,75,0.0,0.0,319.28224657003994,2641.0,0.0,2247.115944149989,20,0,0,0,0,0,0,0,0,0,,1,,1,118633,2,1,1,0,1,,501.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,209.939479323749,231.0,30163.963180043014,5,5,0,1,173.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08755480784260239,20109.308786695343,5,3,5,5_1,5_3,5_1_0 -19946,2,88.0,0.0,2,111,0.0,0.0,1869.0,0,78,0.0,0.0,954.8970228113344,1869.0,0.0,2136.7263528257686,50,2,2,1,2,2,2,2,1,0,,1,,2,128065,2,2,3,0,1,,157.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,256.257117095845,0.0,49949.64005155502,0,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.037417687055821235,33299.76003437001,8,4,8,8_1,8_3,8_0_1 -19947,1,81.0,169.0,2,111,259.0,1154.0,0.0,0,77,0.0,0.0,357.983124942166,1413.0,0.0,2092.955447577956,41,0,0,0,0,0,0,0,0,0,,2,,2,104062,1,3,0,0,1,,283.0,357.0,11,0.0,5.0,4.0,1.0,1.0,1,1,347.075236601677,259.0,9804.412962698114,0,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14411877645055365,9804.412962698114,2,1,2_1,2_0_1,2_3_1,2_0_1 -19948,2,68.0,0.0,1,111,268.0,1133.0,0.0,0,75,0.0,0.0,370.4226929903494,1401.0,0.0,2054.86873666016,50,0,0,0,0,0,0,0,0,0,,1,,1,125910,2,2,5,0,1,,155.0,462.0,11,0.0,3.0,3.0,1.0,1.0,1,1,203.317203812904,268.0,33499.773546902565,0,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041821178224935744,33499.773546902565,8,4,8,8_1,8_3,8_1_0 -19949,2,34.0,0.0,1,111,992.0,1856.0,0.0,42,43,0.0,0.0,1371.1168337553231,2848.0,0.0,3366.139783972865,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,131417,2,1,2,0,2,,573.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,218.902860686423,992.0,42689.44917816985,1,1,1,2,150.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0667143768502027,20328.309132461833,5,3,5,5_1,5_3,5_1_0 -19950,0,82.0,0.0,1,111,1051.0,0.0,0.0,0,86,0.0,0.0,1452.665113182303,1153.0,175.47335442739956,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129283,2,1,2,0,1,,197.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,221.025969179084,1051.0,12500.416662441206,0,6,5,0,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09223692546699724,12500.416662441206,2,1,2_0,2_1_0,2_3_0,2_1_0 -19951,1,58.0,271.0,1,111,600.0,0.0,0.0,0,78,0.0,258.79312620486445,829.3045365455583,880.0,51.60981012570575,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,133451,1,2,3,0,2,,280.0,289.0,11,0.0,1.0,3.0,1.0,1.0,1,1,372.124042857482,600.0,9338.626537678125,0,7,2,3,70.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.09423227242780345,9338.626537678125,1,1,1_1,1_1_1,1_3_1,1_1_0 -19952,2,33.0,0.0,6,111,0.0,0.0,0.0,55,48,0.0,0.0,0.0,2019.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,4,110900,1,2,2,0,1,,457.0,560.0,43,2.0,0.0,4.0,3.0,1.8,2,2,239.179164222222,0.0,31405.47717347546,1,1,2,3,85.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06428814912913387,17447.48731859748,4,2,4_0,4_1_0,4_3_0,4_0_0 -19953,1,55.0,377.0,1,111,840.0,2100.0,0.0,0,85,0.0,0.0,1161.0263511637818,2940.0,0.0,3808.6710917796427,50,2,2,1,2,1,1,2,2,0,,1,,1,127770,2,2,5,0,1,,480.0,423.0,31,0.0,3.0,6.0,2.0,1.5,1,1,55.1173062485042,840.0,7944.6169871587035,0,6,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.3700618928202674,5296.411324772469,1,1,1_1,1_1_1,1_3_1,1_1_0 -19954,1,45.0,122.0,8,111,360.0,920.0,0.0,0,52,0.0,0.0,497.582721927335,1280.0,0.0,1668.560668779653,10,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,132884,2,1,1,0,1,,240.0,406.0,32,1.0,0.0,3.0,2.0,1.5,2,2,70.5420988087665,360.0,21103.053861754386,0,1,2,3,83.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.060654728381268896,14068.702574502924,3,2,3_1,3_1_1,3_3_1,3_0_0 -19956,0,72.0,0.0,1,111,440.0,1129.0,0.0,0,77,0.0,0.0,608.1566601334094,1569.0,0.0,2047.6141250567698,12,1,2,2,1,2,2,2,2,0,,1,,1,111508,2,2,1,0,1,,164.0,,11,0.0,2.0,4.0,1.0,1.0,5,3,64.4424638341269,440.0,17241.743086607614,0,5,5,0,92.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.09100007998719736,17241.743086607614,4,2,4_0,4_1_0,4_3_0,4_1_0 -19957,1,40.0,141.0,1,111,405.0,0.0,0.0,0,52,0.0,0.0,559.7805621682519,496.0,96.33831223465073,0.0,43,2,2,2,2,1,2,2,2,1,10.0,1,,1,105317,2,2,5,0,1,,252.0,261.0,12,1.0,0.0,3.0,1.0,1.0,2,2,87.1180876507232,405.0,11274.84777552272,0,1,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.04399172475541513,11274.84777552272,2,1,2_1,2_1_1,2_3_1,2_1_0 -19958,1,34.0,275.0,1,111,450.0,0.0,0.0,43,67,0.0,652.1586780362584,621.9784024091688,1130.0,86.01635020950958,0.0,33,2,2,1,2,1,2,2,2,0,,1,,1,101450,2,2,2,0,1,,350.0,263.0,43,2.0,0.0,3.0,2.0,1.5,2,2,61.5774426432309,450.0,17274.62363276109,1,1,2,3,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.06541387089076547,11516.415755174059,2,1,2_1,2_1_1,2_3_1,2_1_0 -19959,1,30.0,491.0,1,111,400.0,0.0,0.0,69,85,0.0,0.0,552.8696910303722,2560.0,3715.906329050814,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111212,2,2,5,0,1,,400.0,461.0,42,1.0,0.0,5.0,5.0,2.4,2,2,60.2334720043964,400.0,14018.489554527796,4,6,2,3,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1826159651539029,5841.037314386582,1,1,1_1,1_1_1,1_3_1,1_1_0 -19960,2,26.0,0.0,1,111,390.0,1245.0,0.0,55,63,0.0,0.0,539.0479487546129,1635.0,0.0,2257.997861555074,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,118071,2,1,1,0,1,,395.0,508.0,43,2.0,0.0,5.0,3.0,1.8,1,1,236.653530275282,390.0,34815.42264068289,1,1,2,3,84.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04696194605690216,19341.90146704605,5,3,5,5_1,5_3,5_1_0 -19961,2,84.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2855.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,112027,2,1,2,0,1,,387.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,279.232589606304,0.0,21023.382177657044,0,5,0,1,90.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13580117489536006,21023.382177657044,5,3,5,5_1,5_3,5_0_0 -19962,2,51.0,0.0,1,111,1200.0,0.0,0.0,85,63,0.0,248.44140115666985,1658.6090730911167,1690.0,430.0817510475479,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,100622,2,1,2,0,1,,400.0,,42,1.0,3.0,5.0,3.0,2.0,1,1,214.704174594692,1200.0,31425.929201005463,6,1,0,1,50.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05377724837316597,15712.964600502732,3,2,3_0,3_1_0,3_3_0,3_1_0 -19963,1,34.0,466.0,9,111,660.0,1163.0,0.0,63,62,0.0,0.0,912.2349902001142,1943.0,206.439240502823,2109.278323685583,20,1,2,2,1,1,2,2,2,2,20.0,1,2007.0,6,106875,2,1,1,0,1,,320.0,706.0,43,2.0,0.0,4.0,5.0,2.4,1,1,262.509933810052,660.0,31258.91146961932,1,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.06215827450960378,13024.546445674718,2,1,2_1,2_1_1,2_3_1,2_0_0 -19964,2,56.0,0.0,7,111,303.0,705.0,0.0,0,56,0.0,0.0,418.79879095550695,1008.0,0.0,1278.6252950974515,31,0,0,0,0,0,0,0,0,2,22.0,2,,5,130397,2,1,0,0,1,,161.0,432.0,12,1.0,3.0,5.0,1.0,1.0,1,1,357.064186487082,303.0,19693.09975471661,0,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05118544122331875,19693.09975471661,5,3,5,5_0,5_3,5_0_0 -19965,1,33.0,200.0,1,111,660.0,1620.0,0.0,85,63,0.0,0.0,912.2349902001142,2280.0,0.0,2938.1176993728673,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,131227,1,3,1,0,1,,638.0,387.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,3,3,218.447051268443,660.0,33331.81810332798,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06840310939331436,12345.117816047403,2,1,2_1,2_1_1,2_3_1,2_1_0 -19966,2,66.0,0.0,2,111,300.0,1195.0,0.0,0,77,0.0,0.0,414.65226827277917,1495.0,0.0,2167.315216512701,70,0,0,0,0,0,0,0,0,0,,1,,2,103376,2,2,1,0,2,,240.0,,11,0.0,3.0,3.0,1.0,1.0,2,1,265.303158491335,300.0,22463.52377036463,0,5,0,1,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06655233681424029,22463.52377036463,6,3,6,6_1,6_3,6_0_1 -19967,2,48.0,0.0,5,111,690.0,1202.0,0.0,67,65,0.0,0.0,953.7002170273921,1892.0,0.0,2180.0107868186337,71,2,2,2,2,1,2,1,2,1,8.0,1,,3,112598,1,3,3,0,1,,660.0,628.0,43,2.0,0.0,5.0,4.0,2.3,2,2,277.008524917102,690.0,30427.2179767237,1,1,2,3,105.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.062181169551792335,13229.225207271174,2,1,2_0,2_1_0,2_3_0,2_0_0 -19968,2,83.0,0.0,2,111,203.0,667.0,0.0,0,86,0.0,0.0,280.5813681979139,870.0,0.0,1209.7064848652485,60,2,2,2,2,1,2,2,2,0,,1,,2,121173,2,2,5,0,1,,120.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,256.078063885838,203.0,13019.229506127887,0,6,0,1,75.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06682423100311033,13019.229506127887,2,1,2_0,2_1_0,2_3_0,2_0_1 -19969,2,72.0,0.0,6,111,1400.0,0.0,0.0,75,75,0.0,0.0,1935.0439186063027,1470.0,120.42289029331342,0.0,71,2,2,1,2,1,2,2,1,0,,1,,4,109845,2,1,2,0,1,,180.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,268.29615207371,1400.0,41749.15765651803,5,5,0,1,105.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.035210291237349034,27832.77177101202,7,4,7,7_1,7_3,7_0_0 -19970,2,64.0,0.0,6,111,1600.0,0.0,0.0,75,74,0.0,155.27587572291867,2211.478764121489,1750.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,106039,2,2,3,0,1,,300.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,276.609966371687,1600.0,74604.49058119635,5,5,0,1,150.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02345703303335842,49736.3270541309,10,5,10,10_1,10_3,10_0_0 -19971,2,34.0,0.0,8,111,560.0,1290.0,0.0,47,47,0.0,0.0,774.0175674425211,1850.0,0.0,2339.6122420932093,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,106233,2,1,1,0,1,,420.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,445.115792738101,560.0,63870.33785543744,1,1,1,2,220.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028964932112731965,30414.44659782735,8,4,8,8_1,8_2,8_0_0 -19972,1,38.0,392.0,9,111,539.0,910.0,0.0,85,62,0.0,0.0,744.9919086634266,1579.0,223.64251054472493,1650.4241397711785,31,2,2,2,2,1,2,2,2,2,55.0,1,2010.0,6,120049,1,2,1,0,1,,320.0,590.0,42,1.0,3.0,6.0,5.0,2.4,1,1,452.597257815628,539.0,31813.493016641063,6,1,2,3,106.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.04963302832461854,13255.62209026711,3,2,3_1,3_1_1,3_2_1,3_0_0 -19973,2,78.0,0.0,2,111,340.0,650.0,0.0,0,78,0.0,0.0,469.9392373758164,990.0,0.0,1178.8743855508417,71,2,2,2,2,1,2,2,2,0,,1,,2,112661,2,1,1,0,1,,170.0,,11,0.0,0.0,5.0,1.0,1.0,3,2,469.438122660578,340.0,17697.720688903297,0,5,0,1,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.05593940696672555,17697.720688903297,4,2,4_0,4_1_0,4_2_0,4_0_1 -19974,2,54.0,0.0,1,111,500.0,1000.0,0.0,56,78,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,106634,2,2,3,0,1,,450.0,,42,2.0,1.0,7.0,3.0,2.0,5,3,353.804647322184,500.0,48943.26702350693,1,7,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030647729324639605,24471.633511753465,7,4,7,7_1,7_2,7_1_0 -19975,2,49.0,0.0,2,111,1000.0,1000.0,0.0,85,48,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,111254,2,1,2,0,1,,300.0,,42,1.0,3.0,6.0,5.0,2.4,1,1,443.206304447713,1000.0,51162.52056593693,6,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03909111548604123,21317.716902473723,6,3,6,6_1,6_2,6_0_1 -19976,2,68.0,0.0,5,111,0.0,0.0,1790.0,0,78,0.0,0.0,914.5348693591699,1790.0,0.0,2046.4099366282105,20,2,2,2,2,1,2,2,2,0,,1,,3,107313,2,1,1,0,1,,280.0,,11,0.0,4.0,4.0,1.0,1.0,3,3,469.438122660578,0.0,29883.563783238842,0,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05989914767140254,29883.563783238842,8,4,8,8_1,8_2,8_0_0 -19977,1,61.0,164.0,5,111,230.0,0.0,0.0,0,78,0.0,0.0,317.900072342464,355.0,215.04087552377396,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,125606,2,2,0,1,1,57.0,120.0,198.0,11,0.0,0.0,3.0,1.0,1.0,4,4,123.741004354822,230.0,10824.38419256119,0,5,2,3,80.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032796322976411496,10824.38419256119,2,1,2_1,2_0_1,2_2_1,2_0_0 -19978,1,58.0,227.0,2,111,710.0,0.0,0.0,85,54,0.0,0.0,981.3437015789107,820.0,189.2359704609211,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114782,1,2,0,1,1,610.0,194.0,214.0,42,2.0,4.0,4.0,3.0,2.0,2,2,117.833365127593,710.0,9580.919774290438,6,4,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08558677238905585,4790.459887145219,1,1,1_1,1_0_1,1_2_1,1_0_1 -19979,2,38.0,0.0,1,111,404.0,1188.0,0.0,55,54,0.0,0.0,558.398387940676,1592.0,0.0,2154.619646206769,31,2,2,2,2,1,2,2,2,2,10.0,1,,1,124848,2,2,3,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,98.5410174174967,404.0,43781.71895740525,1,1,1,2,110.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0363622086549146,24323.177198558475,7,4,7,7_1,7_2,7_1_0 -19980,2,79.0,0.0,2,111,200.0,1200.0,0.0,0,77,0.0,0.0,276.4348455151861,1400.0,0.0,2176.3834810169387,33,0,0,0,0,0,0,0,0,0,,1,,2,129707,2,1,2,0,1,,110.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,142.736289779782,200.0,19242.66831357573,0,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07275498268669413,19242.66831357573,5,3,5,5_1,5_2,5_0_1 -19981,1,69.0,98.0,5,111,250.0,0.0,0.0,0,78,0.0,113.86897553014036,345.54355689398267,440.0,137.62616033521533,0.0,31,2,1,2,2,1,2,2,2,0,,2,,3,102964,2,2,0,1,1,410.0,160.0,170.0,11,0.0,0.0,1.0,1.0,1.0,3,3,150.634471105167,250.0,8974.767906739895,0,5,2,3,40.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.049026337457659226,8974.767906739895,1,1,1_1,1_0_1,1_2_1,1_0_0 -19982,2,81.0,0.0,5,111,0.0,0.0,1610.0,0,77,0.0,0.0,822.5704690884154,1610.0,0.0,1840.6256971907367,33,0,0,0,0,0,0,0,0,0,,1,,3,115242,2,2,2,0,1,,360.0,,11,0.0,1.0,7.0,1.0,1.0,2,2,513.73156687849,0.0,29106.568016051307,0,5,0,1,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05531397583913494,29106.568016051307,8,4,8,8_1,8_2,8_0_0 -19983,1,24.0,322.0,2,111,0.0,0.0,0.0,54,52,0.0,0.0,0.0,268.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,118438,2,2,0,1,1,609.0,0.0,311.0,43,2.0,0.0,2.0,2.0,1.5,1,1,118.675031189728,0.0,13737.824156916771,4,1,2,3,55.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0195081838971615,9158.549437944514,1,1,1_1,1_0_1,1_2_1,1_0_1 -19984,1,47.0,249.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,604.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,115250,1,2,0,1,1,534.0,0.0,258.0,11,0.0,3.0,3.0,1.0,1.0,1,1,140.486273120564,0.0,8126.116686307647,0,7,2,3,62.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07432824598959163,8126.116686307647,1,1,1_1,1_0_1,1_2_1,1_0_0 -19985,1,32.0,16.0,7,111,0.0,0.0,1480.0,85,63,0.0,0.0,756.1517355595371,1480.0,0.0,1692.0037464858947,12,2,2,2,2,1,2,2,2,2,10.0,1,,5,131188,1,2,2,0,1,,320.0,403.0,42,2.0,0.0,3.0,4.0,2.5,2,2,372.263326070426,0.0,23300.139866826226,6,1,2,3,72.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.0635189320089517,9320.05594673049,1,1,1_1,1_1_1,1_2_1,1_0_0 -19986,0,57.0,0.0,7,111,0.0,0.0,0.0,56,52,0.0,0.0,0.0,2189.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,5,123795,1,2,2,0,1,,0.0,,43,4.0,2.0,9.0,4.0,2.5,1,1,498.879246803739,0.0,66154.96756918778,1,1,5,0,120.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03308897397176784,26461.98702767511,7,4,7,7_1,7_2,7_0_0 -19987,1,50.0,218.0,2,111,0.0,0.0,1029.0,0,68,0.0,0.0,525.7298215478132,1029.0,0.0,1176.3999021175578,50,0,0,0,0,0,0,0,0,0,,1,,2,124046,1,2,2,0,1,,380.0,495.0,12,1.0,4.0,4.0,1.0,1.0,1,1,462.234774001277,0.0,10292.680776902387,0,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09997395453176394,10292.680776902387,2,1,2_1,2_1_1,2_2_1,2_0_1 -19988,2,65.0,0.0,1,111,830.0,0.0,0.0,77,74,0.0,1035.1725048194578,1147.2046088880224,1930.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,121877,2,1,3,0,1,,230.0,,41,0.0,3.0,6.0,2.0,1.5,2,1,397.088890115451,830.0,37427.68788446188,5,5,0,1,90.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05156610277284161,24951.791922974586,7,4,7,7_1,7_2,7_1_0 -19989,1,47.0,60.0,7,111,1100.0,800.0,0.0,81,52,0.0,0.0,1520.3916503335236,1900.0,0.0,1450.922320677959,20,0,0,0,0,0,0,0,0,1,25.0,1,,5,116000,1,2,3,0,1,,630.0,477.0,43,2.0,0.0,4.0,5.0,2.4000000000000004,2,2,431.427375179696,1100.0,34942.155201933,4,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05437558127195578,14559.231334138747,3,2,3_1,3_1_1,3_2_1,3_0_0 -19990,2,46.0,0.0,2,111,569.0,2503.0,0.0,0,52,0.0,0.0,786.4571354907044,3072.0,0.0,4539.573210821165,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,105567,2,2,3,0,1,,400.0,,32,2.0,0.0,5.0,4.0,2.3,1,1,414.613130825877,569.0,34285.192748138514,0,1,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08960136297226422,14906.60554266892,3,2,3_0,3_1_0,3_2_0,3_0_1 -19991,2,78.0,0.0,1,111,300.0,450.0,0.0,78,78,0.0,0.0,414.65226827277917,750.0,0.0,816.143805381352,31,2,1,2,2,1,1,2,2,0,,2,,1,129801,1,3,0,1,1,610.0,0.0,462.0,41,0.0,4.0,3.0,2.0,1.5,2,2,388.113929638225,300.0,25828.59984406673,5,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.029037578673560493,17219.066562711156,4,2,4_0,4_0_0,4_2_0,4_1_0 -19992,2,31.0,0.0,2,111,0.0,0.0,1000.0,42,46,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,43,0,0,0,0,0,0,0,0,1,13.0,1,,2,111879,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,410.095806245909,0.0,42288.65148236981,1,1,1,2,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023647006110301277,23493.69526798323,6,3,6,6_1,6_2,6_0_1 -19993,1,41.0,74.0,1,111,850.0,1100.0,0.0,56,62,0.0,0.0,1174.848093439541,1950.0,0.0,1995.0181909321939,43,0,0,0,0,0,0,0,0,2,7.0,1,,1,122677,2,1,1,0,1,,112.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,441.17002147242,850.0,32651.200601015746,1,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05972215306347227,11661.143071791339,2,1,2_1,2_1_1,2_2_1,2_1_0 -19994,2,40.0,0.0,1,111,610.0,650.0,0.0,54,47,0.0,0.0,843.1262788213177,1260.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,102132,2,1,1,0,1,,180.0,550.0,43,2.0,0.0,4.0,4.0,2.1,3,2,338.805330733066,610.0,46065.303263460235,1,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02735247378691313,21935.858696885825,6,3,6,6_1,6_2,6_1_0 -19995,2,38.0,0.0,2,111,800.0,850.0,0.0,63,62,0.0,0.0,1105.7393820607444,1650.0,0.0,1541.6049657203316,30,2,2,2,1,2,2,2,2,2,10.0,1,,2,107360,2,2,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,409.452259450971,800.0,38326.8739956184,1,1,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.04305073250139396,18250.892378865905,4,2,4_0,4_1_0,4_2_0,4_0_1 -19996,1,89.0,253.0,6,111,310.0,890.0,0.0,86,78,0.0,0.0,428.47401054853844,1200.0,0.0,1614.1510817542296,71,2,2,2,2,1,2,2,2,0,,2,,4,116997,1,2,0,0,1,,120.0,351.0,41,0.0,3.0,3.0,2.0,1.5,2,2,452.402582180117,310.0,17363.853730351242,5,5,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.06910908250179817,11575.902486900828,2,1,2_1,2_0_1,2_2_1,2_0_0 -19997,2,43.0,0.0,2,111,2270.0,0.0,0.0,0,54,0.0,0.0,3137.5354965973625,2270.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,1,,2,107170,2,1,2,0,1,,340.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,487.578659307392,2270.0,5517.135797808347,0,4,0,1,81.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.4114453736849735,5517.135797808347,1,1,1_0,1_1_0,1_2_0,1_0_1 -19998,2,43.0,0.0,5,111,1370.0,0.0,0.0,85,62,0.0,0.0,1893.578691779025,1490.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,117333,2,1,2,0,1,,290.0,,42,1.0,0.0,5.0,4.0,2.3,1,1,393.065496823531,1370.0,29467.611267779866,6,1,1,2,88.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0505639899501857,12812.004899034726,2,1,2_0,2_1_0,2_2_0,2_0_0 -19999,1,34.0,308.0,2,111,671.0,0.0,0.0,53,64,911.0867749809804,0.0,927.4389067034494,1381.0,172.03270041901916,0.0,20,2,2,2,1,1,2,2,2,0,,1,,2,101406,2,2,3,0,1,,146.0,297.0,43,2.0,0.0,4.0,2.0,1.5,2,2,448.48502739625,671.0,9254.526963415163,4,4,2,3,80.0,7,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.14922426672474406,6169.684642276775,1,1,1_1,1_1_1,1_2_1,1_0_1 -20000,2,86.0,0.0,1,111,1000.0,0.0,0.0,86,72,1493.5848770180007,828.1380038555662,1382.1742275759307,2900.0,172.03270041901916,0.0,10,2,2,2,2,1,2,2,2,0,,1,,1,100034,1,2,3,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,397.088890115451,1000.0,10800.052974370148,5,5,0,1,80.0,7,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.2685172014324426,7200.035316246765,1,1,1_0,1_1_0,1_2_0,1_1_0 -20001,2,79.0,0.0,2,111,1020.0,1187.0,0.0,0,78,0.0,0.0,1409.817712127449,2207.0,0.0,2152.8059933059217,50,2,2,2,2,1,2,2,2,0,,1,,2,108303,2,1,3,0,1,,252.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,120.981839170787,1020.0,13597.87473839634,0,5,0,1,85.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.16230477500782461,13597.87473839634,3,2,3_0,3_1_0,3_2_0,3_0_1 -20002,1,87.0,270.0,9,111,530.0,820.0,0.0,0,86,0.0,0.0,732.5523406152432,1350.0,0.0,1487.1953786949082,70,2,2,2,2,1,2,2,2,0,,2,2009.0,6,117002,2,1,0,0,1,,280.0,365.0,11,0.0,4.0,3.0,1.0,1.0,1,1,143.092713867148,530.0,11939.089074757043,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,0,0,1,0.11307395325949288,11939.089074757043,2,1,2_1,2_0_1,2_2_1,2_0_0 -20003,2,46.0,0.0,1,111,467.0,1460.0,0.0,85,63,0.0,0.0,645.4753642779596,1927.0,0.0,2647.9332352372753,12,2,2,2,2,1,2,2,2,2,15.0,1,,1,105826,2,1,2,0,1,,280.0,,42,1.0,1.0,5.0,3.0,2.0,2,2,98.9949919356989,467.0,22985.239689292943,7,1,0,1,96.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.0838364109336498,11492.619844646471,2,1,2_0,2_1_0,2_2_0,2_1_0 -20004,2,23.0,0.0,1,111,1350.0,0.0,0.0,43,63,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,101911,1,1,1,0,1,,480.0,600.0,43,2.0,0.0,5.0,2.0,1.5,1,1,359.56296576965,1350.0,19823.583495616924,1,1,2,3,80.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06810070441090989,13215.722330411283,2,1,2_0,2_1_0,2_2_0,2_1_0 -20005,2,59.0,0.0,2,111,254.0,810.0,0.0,0,54,0.0,0.0,351.07225380428633,1064.0,0.0,1469.0588496864336,20,0,0,0,0,0,0,0,0,0,,1,,2,124060,2,2,1,0,1,,210.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,469.438122660578,254.0,31413.588256617382,0,1,1,2,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03387069287685926,31413.588256617382,8,4,8,8_1,8_2,8_0_1 -20006,1,59.0,122.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1379.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,2,,2,109812,2,2,0,0,1,,0.0,415.0,12,1.0,1.0,2.0,1.0,1.0,1,1,661.929810916435,0.0,15278.351581999254,0,1,2,3,60.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09025842824724095,15278.351581999254,3,2,3_1,3_0_1,3_2_1,3_0_1 -20007,1,27.0,236.0,2,111,0.0,0.0,1280.0,85,64,0.0,0.0,653.969068592032,1280.0,0.0,1463.3545915553682,10,2,2,2,1,1,2,2,2,2,45.0,1,,2,122736,2,2,3,0,1,,260.0,550.0,42,1.0,1.0,3.0,4.0,2.1,1,1,414.182440920495,0.0,25103.623664066658,6,1,2,3,62.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.050988654750755875,11954.106506698408,2,1,2_1,2_1_1,2_2_1,2_0_1 -20008,2,38.0,0.0,1,111,480.0,1058.0,0.0,55,64,0.0,0.0,663.4436292364467,1688.0,258.04905062852873,1918.8447690966009,50,2,2,2,2,1,2,2,2,0,,1,,1,108491,2,2,3,0,1,,480.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,334.839067723986,480.0,27618.763122494413,4,1,1,2,80.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.06111787093844146,12008.157879345397,2,1,2_0,2_1_0,2_2_0,2_1_0 -20009,2,82.0,0.0,2,111,910.0,1330.0,0.0,90,77,0.0,0.0,1257.778547094097,2240.0,0.0,2412.158358127107,50,2,2,2,2,1,2,2,2,0,,1,,2,111469,2,2,3,0,1,,340.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,433.761360714998,910.0,48768.166691201906,5,5,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04593160153391845,32512.11112746794,8,4,8,8_1,8_2,8_0_1 -20010,2,44.0,0.0,2,111,850.0,710.0,0.0,85,37,0.0,0.0,1174.848093439541,1560.0,0.0,1287.6935596016888,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,120097,2,1,1,0,1,,250.0,,42,1.0,0.0,4.0,4.0,2.3,1,1,393.433886051585,850.0,42143.75014661159,6,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03701616478298683,18323.369628961562,4,2,4_0,4_1_0,4_2_0,4_0_1 -20013,2,31.0,0.0,1,111,665.0,953.0,0.0,55,47,0.0,0.0,919.1458613379938,1618.0,0.0,1728.4112145076188,50,0,0,0,0,0,0,0,0,0,,1,,1,130688,2,2,1,0,1,,285.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,352.886998700954,665.0,14851.305002533407,1,1,1,2,117.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1089466548376721,7072.050001206384,1,1,1_0,1_1_0,1_2_0,1_1_0 -20014,1,35.0,434.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,523.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,103567,2,2,2,0,2,,180.0,600.0,31,0.0,0.0,4.0,4.0,2.1,1,1,298.079461212336,0.0,9859.920494699647,0,6,2,3,80.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05304302405695328,4695.20023557126,1,1,1_1,1_1_1,1_2_1,1_0_1 -20015,2,59.0,0.0,2,111,389.0,1106.0,0.0,85,62,0.0,0.0,537.665774527037,1495.0,0.0,2005.9001083372784,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,120541,2,1,2,0,1,,120.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,413.633398973313,389.0,23635.7236415486,6,1,0,1,66.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06325171264788271,15757.149094365734,3,2,3_0,3_1_0,3_2_0,3_0_1 -20016,2,59.0,0.0,1,111,0.0,0.0,0.0,77,63,0.0,0.0,0.0,1076.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,105811,2,1,2,0,1,,298.0,491.0,42,1.0,2.0,4.0,2.0,1.5,2,2,356.584105835251,0.0,29159.302347726178,5,4,2,3,60.0,7,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03690074567521008,19439.53489848412,5,3,5,5_1,5_2,5_1_0 -20017,2,52.0,0.0,9,111,1650.0,0.0,0.0,77,63,0.0,0.0,2280.5874755002856,1650.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,2007.0,6,116472,2,1,1,0,1,,110.0,664.0,42,1.0,0.0,3.0,2.0,1.5,1,1,384.345212015798,1650.0,26324.717653478045,7,4,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06267873493344003,17549.811768985364,4,2,4_0,4_1_0,4_2_0,4_0_0 -20018,2,82.0,0.0,2,111,430.0,1940.0,0.0,0,86,0.0,0.0,594.3349178576501,2370.0,0.0,3518.4866276440507,41,0,0,0,0,0,0,0,0,0,,1,,2,111842,1,2,3,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,480.342537535048,430.0,15667.85340833112,0,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15126513749099746,15667.85340833112,3,2,3_0,3_1_0,3_2_0,3_0_1 -20019,1,23.0,434.0,7,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1157.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,,5,110788,2,2,0,0,1,,189.0,415.0,32,1.0,0.0,3.0,3.0,1.6,1,1,485.671729938459,0.0,31887.573512064497,0,1,2,3,75.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03628372662354679,19929.73344504031,5,3,5,5_0,5_2,5_0_0 -20020,1,37.0,310.0,5,111,310.0,510.0,0.0,0,62,0.0,0.0,428.47401054853844,820.0,0.0,924.962979432199,31,2,2,2,2,1,2,2,2,2,15.0,2,,3,123840,1,2,0,0,2,,162.0,404.0,32,1.0,0.0,3.0,2.0,1.3,2,2,396.327595299832,310.0,23086.394081130424,0,1,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03551875607417721,17758.764677792635,4,2,4_1,4_0_1,4_2_1,4_0_0 -20021,1,81.0,81.0,7,111,550.0,720.0,0.0,0,78,0.0,0.0,760.1958251667618,1270.0,0.0,1305.830088610163,10,2,2,2,2,1,2,2,2,0,,2,,5,130879,2,2,0,0,1,,200.0,404.0,11,0.0,7.0,3.0,1.0,1.0,4,3,526.601715202458,550.0,13401.289389067524,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09476700063174802,13401.289389067524,3,2,3_1,3_0_1,3_2_1,3_0_0 -20022,2,49.0,0.0,1,111,320.0,0.0,0.0,0,56,448.0754631054002,0.0,442.2957528242978,620.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,10.0,2,,1,114328,2,2,0,0,1,,0.0,416.0,12,1.0,1.0,3.0,1.0,1.0,5,3,475.417156021016,320.0,19054.97283070548,0,1,2,3,60.0,7,5,3,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03253743815372554,19054.97283070548,5,3,5,5_0,5_2,5_1_0 -20023,2,55.0,0.0,1,111,320.0,800.0,0.0,0,34,0.0,0.0,442.2957528242978,1120.0,0.0,1450.922320677959,10,2,2,2,2,1,2,2,2,2,8.0,1,,1,118395,2,2,4,0,1,,1120.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,403.091242737823,320.0,26731.451819536076,0,1,1,2,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04189821067561596,26731.451819536076,7,4,7,7_1,7_2,7_1_0 -20024,2,75.0,0.0,2,111,600.0,1400.0,0.0,86,78,0.0,0.0,829.3045365455583,2125.0,215.04087552377396,2539.1140611864284,20,0,0,0,0,0,0,0,0,0,,1,,2,114476,2,2,2,0,1,,200.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,415.542582751328,600.0,19589.66968016999,5,5,0,1,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10847554015426156,13059.779786779995,2,1,2_0,2_1_0,2_2_0,2_0_1 -20025,1,34.0,98.0,2,111,710.0,1145.0,0.0,85,63,0.0,0.0,981.3437015789107,1855.0,0.0,2076.632571470329,70,2,2,2,2,1,2,2,2,0,,1,,2,130658,1,2,2,0,1,,410.0,700.0,42,1.0,0.0,5.0,4.0,2.1,1,1,414.182440920495,710.0,41776.07638283136,6,1,2,3,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.044403404067940334,19893.36970611017,5,3,5,5_1,5_2,5_0_1 -20026,2,61.0,0.0,1,111,720.0,725.0,0.0,22,31,0.0,0.0,995.16544385467,1445.0,0.0,1314.8983531144004,42,2,2,2,2,1,2,2,2,0,,1,,1,132060,2,1,1,0,1,,672.0,,43,2.0,0.0,5.0,3.0,2.0,4,3,450.696613064306,720.0,109451.75519883199,1,1,0,1,120.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.013202163796962301,54725.877599415995,10,5,10,10_1,10_2,10_1_0 -20027,2,69.0,0.0,7,111,2345.0,0.0,0.0,86,74,0.0,0.0,3241.1985636655572,2345.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,107581,2,3,0,0,1,,318.0,700.0,41,0.0,0.0,3.0,2.0,1.5,2,2,527.032532946581,2345.0,30806.44062834162,5,5,2,3,90.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07612044599020061,20537.627085561082,5,3,5,5_0,5_2,5_0_0 -20028,2,90.0,0.0,2,111,430.0,125.0,0.0,0,90,0.0,0.0,594.3349178576501,555.0,0.0,226.7066126059311,60,2,1,2,2,1,2,2,2,0,,2,,2,125184,1,2,0,1,2,,0.0,460.0,11,0.0,5.0,2.0,1.0,1.0,1,1,641.578466826212,430.0,10150.927561837456,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05467480647645735,10150.927561837456,2,1,2_0,2_0_0,2_2_0,2_0_1 -20029,2,61.0,0.0,2,111,265.0,0.0,0.0,0,34,0.0,0.0,366.2761703076216,265.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,113035,2,2,0,1,1,,99.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,490.328265308897,265.0,19298.50080107885,0,1,1,2,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013731636603874721,19298.50080107885,5,3,5,5_0,5_2,5_0_1 -20030,2,63.0,0.0,7,111,1300.0,0.0,0.0,74,75,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,5,104846,1,2,0,0,1,,260.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,590.467434791493,1300.0,43445.24474174629,5,5,0,1,99.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02992272244586615,28963.496494497525,8,4,8,8_0,8_2,8_0_0 -20031,1,28.0,410.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,504.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103169,2,1,0,1,2,,0.0,720.0,42,1.0,0.0,5.0,5.0,2.4,5,5,524.212739785275,0.0,29032.57751506594,6,1,2,3,110.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01735980898487081,12096.907297944143,2,1,2_1,2_0_1,2_2_1,2_0_1 -20032,2,58.0,0.0,7,111,550.0,850.0,0.0,0,52,0.0,0.0,760.1958251667618,1400.0,0.0,1541.6049657203316,43,0,0,0,0,0,0,0,0,2,40.0,2,,5,126108,2,1,0,0,1,,120.0,567.0,12,1.0,2.0,3.0,1.0,1.0,1,1,510.979873500862,550.0,23679.139926341515,0,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05912376903700756,23679.139926341515,6,3,6,6_0,6_2,6_0_0 -20033,2,79.0,0.0,6,111,660.0,0.0,0.0,0,75,0.0,0.0,912.2349902001142,660.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,2,,4,110182,2,1,0,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,639.634300952636,660.0,61699.73886786795,0,5,0,1,100.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.010696965856102116,61699.73886786795,10,5,10,10_0,10_2,10_0_0 -20034,2,66.0,0.0,1,111,800.0,0.0,0.0,0,75,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,1,2,2,1,1,2,2,2,0,,2,,1,133480,1,3,0,0,1,,305.0,473.0,21,1.0,1.0,4.0,2.0,1.5,3,3,436.368161474964,800.0,31656.73810698495,0,5,2,3,85.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.02527108122436287,21104.4920713233,5,3,5,5_0,5_2,5_1_0 -20035,2,27.0,0.0,2,111,410.0,650.0,0.0,54,54,0.0,0.0,566.6914333061316,1060.0,0.0,1178.8743855508417,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,127766,2,1,2,0,1,,210.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,456.527656021134,410.0,38012.78328787028,1,1,1,2,115.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02788535614381706,25341.855525246854,7,4,7,7_1,7_2,7_0_1 -20036,2,82.0,0.0,1,111,400.0,850.0,0.0,86,72,0.0,0.0,552.8696910303722,1250.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,0,,1,,1,127112,1,2,2,0,2,,120.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,358.611066267931,400.0,29685.03417801199,5,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04210876068068966,19790.022785341327,5,3,5,5_1,5_2,5_1_0 -20037,1,34.0,114.0,9,120,1336.0,0.0,0.0,85,62,0.0,310.55175144583734,1846.584768041443,1706.0,120.42289029331342,0.0,50,2,2,1,1,2,2,2,2,0,,1,2005.0,6,102497,2,1,1,0,1,,290.0,,42,1.0,0.0,4.0,5.0,2.5999999999999996,4,4,91.7143916300437,1336.0,32352.12608709256,6,1,1,2,89.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.052732237609590615,12443.125418112526,2,1,2_1,2_1_1,2_0_1,2_0_0 -20038,2,47.0,0.0,1,120,380.0,0.0,0.0,0,64,0.0,2173.8622601208613,525.2262064788536,2600.0,206.439240502823,0.0,71,2,2,2,2,1,2,1,2,0,,1,,1,127358,1,3,2,0,2,,230.0,,12,1.0,0.0,3.0,1.0,1.0,4,3,107.726211389374,380.0,25915.78316914701,0,1,0,1,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.1003249634799895,25915.78316914701,7,4,7,7_1,7_0,7_1_0 -20039,2,56.0,0.0,6,120,450.0,0.0,0.0,78,63,0.0,124.22070057833493,621.9784024091688,630.0,103.2196202514115,0.0,30,0,0,0,0,0,0,0,0,2,5.0,1,,4,129252,2,1,2,0,1,,260.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,111.124731261848,450.0,28309.584149042137,5,1,0,1,97.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022253947521207802,18873.056099361424,5,3,5,5_1,5_0,5_0_0 -20040,2,77.0,0.0,1,120,350.0,0.0,0.0,78,72,1344.2263893162005,1656.2760077111325,483.76097965157567,2940.0,154.82943037711726,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,105296,2,1,1,0,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,87.1903009894763,350.0,28276.763526393028,5,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.10397229503496241,18851.17568426202,5,3,5,5_1,5_0,5_1_0 -20041,0,52.0,0.0,1,120,487.0,0.0,0.0,0,38,2987.1697540360015,0.0,673.1188488294782,2551.0,110.10092826817227,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,129006,2,1,1,0,1,,148.0,,22,1.0,1.0,4.0,2.0,1.5,1,1,83.7373094987864,487.0,40282.60893174741,0,1,0,1,76.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06332757653115942,26855.07262116494,7,4,7,7_1,7_0,7_1_0 -20042,2,55.0,0.0,9,120,3023.0,0.0,0.0,43,46,0.0,0.0,4178.312689962038,3183.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,111234,2,1,1,0,1,,300.0,,43,3.0,1.0,9.0,3.0,2.0,2,2,110.000603681286,3023.0,43086.12974438266,1,1,1,2,251.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07387528234454575,21543.06487219133,6,3,6,6_1,6_0,6_0_0 -20043,1,35.0,190.0,1,120,496.0,0.0,0.0,0,21,2987.1697540360015,0.0,685.5584168776616,2496.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,131800,2,1,3,0,2,,249.0,420.0,32,1.0,0.0,3.0,2.0,1.5,1,1,96.2411829391777,496.0,14865.962826653606,0,4,2,3,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1679003256704538,9910.641884435738,2,1,2_1,2_1_1,2_0_1,2_1_0 -20044,2,72.0,0.0,2,120,600.0,0.0,0.0,86,78,1194.8679016144006,0.0,829.3045365455583,1580.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124967,2,1,2,0,1,,300.0,,41,1.0,3.0,5.0,3.0,2.0,2,2,98.0886154547178,600.0,41217.25436596897,6,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03833346069030079,20608.627182984485,5,3,5,5_1,5_0,5_0_1 -20045,2,48.0,0.0,1,120,850.0,0.0,0.0,52,62,1642.9433647198007,326.0793390181292,1174.848093439541,2335.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119397,2,1,2,0,1,,280.0,,43,3.0,1.0,6.0,3.0,2.0,1,1,94.7755850346558,850.0,30391.23187360097,1,1,0,1,142.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07683137063056249,15195.615936800485,3,2,3_0,3_1_0,3_0_0,3_1_0 -20046,2,62.0,0.0,1,120,1850.0,0.0,0.0,0,71,0.0,0.0,2557.0223210154713,2050.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102186,2,1,4,0,1,,257.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,104.845404842619,1850.0,22224.290190065472,0,5,0,1,175.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09224141614729162,22224.290190065472,6,3,6,6_1,6_0,6_1_0 -20047,2,42.0,0.0,8,120,840.0,0.0,0.0,21,43,2240.377315527001,341.60692659042104,1161.0263511637818,2670.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,110050,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,98.3712729735858,840.0,59659.795328771885,1,1,1,2,190.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044753757288073535,25939.041447292126,7,4,7,7_1,7_0,7_0_0 -20048,2,62.0,0.0,5,120,1047.0,0.0,0.0,54,75,1941.6603401234008,0.0,1447.1364162719992,2347.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,113096,2,1,2,0,1,,150.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,113.010453602717,1047.0,47347.70142604253,1,5,0,1,135.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04956946017043788,31565.13428402835,8,4,8,8_1,8_0,8_0_0 -20049,2,42.0,0.0,9,120,840.0,0.0,0.0,85,48,1642.9433647198007,0.0,1161.0263511637818,1940.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2009.0,6,103493,2,1,1,0,1,,350.0,,42,1.0,1.0,5.0,3.0,1.8,1,1,93.7546239269761,840.0,41418.84738166034,6,1,1,2,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04683858008224062,23010.470767589075,6,3,6,6_1,6_0,6_0_0 -20050,2,41.0,0.0,2,120,0.0,0.0,0.0,56,63,0.0,0.0,0.0,2230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,123389,2,2,5,0,1,,357.0,700.0,43,2.0,3.0,6.0,5.0,2.5999999999999996,2,2,101.573056876353,0.0,38907.044667731025,4,1,2,3,92.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05731609838383669,14964.247949127319,3,2,3_0,3_1_0,3_0_0,3_0_1 -20051,1,39.0,293.0,1,120,2100.0,0.0,0.0,52,85,0.0,1863.310508675024,2902.5658779094542,4050.0,258.04905062852873,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,109118,1,3,4,0,2,,252.0,359.0,42,1.0,0.0,7.0,5.0,2.5999999999999996,3,3,90.2152715615296,2100.0,34129.09177233071,1,7,2,3,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.11866708985451041,13126.573758588735,2,1,2_1,2_1_1,2_0_1,2_1_0 -20052,2,92.0,0.0,1,120,437.0,0.0,0.0,0,71,3500.9629517301937,0.0,604.0101374506817,2847.0,113.54158227655265,0.0,60,0,0,0,0,0,0,0,0,0,,5,,1,113592,2,3,2,0,2,,113.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,77.4348189298604,437.0,11566.988414962922,0,5,0,1,70.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24613148192637194,11566.988414962922,2,1,2_0,2_1_0,2_0_0,2_1_0 -20053,2,35.0,0.0,6,120,770.0,0.0,0.0,52,62,0.0,931.655254337512,1064.2741552334664,1745.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,127823,2,2,2,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,105.270683581374,770.0,46160.147282947044,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03780317227550649,25644.52626830391,7,4,7,7_1,7_0,7_0_0 -20054,2,48.0,0.0,1,112,2200.0,0.0,0.0,85,47,0.0,0.0,3040.783300667047,2330.0,223.64251054472493,0.0,50,0,0,0,0,0,0,0,0,3,75.0,1,,1,111810,2,1,2,0,1,,500.0,,42,1.0,0.0,10.0,4.0,2.5,3,2,75.1189955074653,2200.0,30184.913518720285,6,1,0,1,250.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07719087876647268,12073.965407488115,2,1,2_0,2_1_0,2_0_0,2_1_0 -20055,2,47.0,0.0,1,112,700.0,0.0,0.0,56,63,3435.2452171414016,351.95865163861566,967.5219593031513,3580.0,412.878481005646,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,116394,1,1,2,0,1,,230.0,,43,2.0,0.0,8.0,5.0,3.0,2,2,79.5113487347763,700.0,47396.00608013284,1,1,0,1,100.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07553379063095027,15798.668693377615,3,2,3_0,3_1_0,3_0_0,3_1_0 -20056,2,62.0,0.0,6,112,0.0,0.0,0.0,78,77,0.0,828.1380038555662,0.0,1100.0,516.0981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,120101,2,2,3,0,1,,75.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,110.66169929645,0.0,25028.231047664718,6,5,0,1,100.0,8,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04395036940106226,16685.487365109813,4,2,4_0,4_1_0,4_0_0,4_0_0 -20057,0,63.0,0.0,5,112,600.0,0.0,0.0,86,74,2091.018827825201,745.3242034700096,829.3045365455583,2720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103627,2,1,2,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,95.1141567550624,600.0,44387.91373949828,6,5,0,1,100.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06127794191822146,29591.942492998856,8,4,8,8_1,8_0,8_0_0 -20058,2,34.0,0.0,9,112,1800.0,0.0,0.0,52,46,0.0,414.0690019277831,2487.913609636675,2200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,2009.0,6,103317,2,1,1,0,1,,240.0,,43,2.0,0.0,7.0,4.0,2.1,3,3,91.7053423380817,1800.0,47240.99778214522,1,1,1,2,150.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046569719169468775,22495.713229592962,6,3,6,6_1,6_0,6_0_0 -20059,2,76.0,0.0,1,120,450.0,0.0,0.0,0,78,2688.452778632401,0.0,621.9784024091688,2879.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133624,2,1,2,0,1,,170.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,84.7113160975766,450.0,20942.637569345243,0,5,0,1,90.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1374707455289267,20942.637569345243,5,3,5,5_1,5_0,5_1_0 -20060,2,74.0,0.0,2,120,750.0,0.0,0.0,75,72,2389.735803228801,0.0,1036.630670681948,2350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130831,2,1,2,0,1,,212.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,100.710474103866,750.0,82148.3246185723,5,5,0,1,132.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028606791567709053,54765.54974571487,10,5,10,10_1,10_0,10_0_1 -20061,2,61.0,0.0,2,120,0.0,0.0,0.0,75,78,0.0,0.0,0.0,2864.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,125323,2,2,3,0,1,,150.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,105.345393196656,0.0,22944.79788737654,6,5,1,2,80.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12482132176791486,11472.39894368827,2,1,2_0,2_1_0,2_0_0,2_0_1 -20062,2,42.0,0.0,1,120,876.0,0.0,0.0,52,63,746.7924385090004,724.6207533736205,1210.784623356515,2226.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,103350,2,1,2,0,1,,312.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,73.729626394706,876.0,40479.23081060164,1,1,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054991163503457764,19275.82419552459,5,3,5,5_1,5_0,5_1_0 -20063,2,59.0,0.0,5,120,725.0,0.0,0.0,78,46,2987.1697540360015,0.0,1002.0763149925497,2865.0,240.84578058662683,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,106112,2,1,1,0,1,,226.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,91.3225036107926,725.0,33132.49552468895,5,4,0,1,99.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08647099938080793,22088.330349792635,6,3,6,6_1,6_0,6_0_0 -20064,2,31.0,0.0,1,111,574.0,2106.0,0.0,34,43,0.0,155.27587572291867,793.3680066285841,2830.0,0.0,3819.553009184727,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,116081,1,2,3,0,1,,475.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,730.100628327554,574.0,64890.66403674056,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043611820621802806,36050.36890930031,9,5,9,9_1,9_3,9_1_0 -20065,2,78.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,3479.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,110621,2,1,1,0,1,,286.0,344.0,11,0.0,3.0,3.0,1.0,1.0,2,2,263.526954952422,0.0,26828.25647233937,0,5,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1296767087189188,26828.25647233937,7,4,7,7_1,7_3,7_1_0 -20066,0,70.0,0.0,1,111,400.0,1000.0,0.0,0,86,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,1,117426,2,1,2,0,1,,240.0,,21,1.0,7.0,3.0,2.0,1.5,2,2,197.82388373079,400.0,26045.523816177174,0,6,5,0,55.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05375203854147268,17363.682544118117,4,2,4_0,4_1_0,4_3_0,4_1_0 -20067,2,31.0,0.0,1,111,250.0,900.0,0.0,46,43,0.0,0.0,345.54355689398267,1150.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,101474,2,1,3,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,576.700981834047,250.0,48289.204965750105,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0238148464199329,22994.85950750005,6,3,6,6_1,6_3,6_1_0 -20068,2,71.0,0.0,2,111,350.0,204.0,0.0,0,78,0.0,49.68828023133398,483.76097965157567,602.0,0.0,369.9851917728796,71,0,0,0,0,0,0,0,0,0,,1,,2,117724,1,1,1,0,1,,220.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,258.465690650571,350.0,19746.297631503454,0,5,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030486727751918557,19746.297631503454,5,3,5,5_1,5_3,5_0_1 -20069,1,48.0,274.0,5,111,1300.0,0.0,0.0,85,52,0.0,0.0,1796.8264958487098,1510.0,361.26867087994026,0.0,10,2,2,2,1,1,2,2,2,2,10.0,1,,3,108476,1,3,3,0,1,,500.0,588.0,42,2.0,1.0,4.0,4.0,2.3,2,1,786.029683607046,1300.0,26478.673809677814,7,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.05702702525260548,11512.466873772963,2,1,2_1,2_1_1,2_3_1,2_0_0 -20070,2,50.0,0.0,7,111,1200.0,0.0,0.0,55,63,0.0,828.1380038555662,1658.6090730911167,2072.0,123.8635443016938,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,113327,2,1,2,0,1,,470.0,,43,2.0,2.0,4.0,3.0,2.0,2,2,925.567640513862,1200.0,47638.51382823346,1,1,1,2,99.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043494219980725085,23819.25691411673,6,3,6,6_1,6_3,6_0_0 -20071,2,62.0,0.0,5,111,410.0,1170.0,0.0,75,78,0.0,0.0,566.6914333061316,1580.0,0.0,2121.973893991515,50,0,0,0,0,0,0,0,0,0,,1,,3,104106,1,1,3,0,2,,430.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,826.282349586731,410.0,27579.29333003619,5,5,0,1,97.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057289357674703216,18386.195553357462,4,2,4_0,4_1_0,4_3_0,4_0_0 -20072,2,74.0,0.0,6,111,1152.0,0.0,0.0,77,75,0.0,569.3448776507017,1592.264710167472,1794.0,158.27008438549763,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,110355,2,1,2,0,1,,379.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,982.869812858774,1152.0,37608.93757563453,5,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04770142725760665,25072.625050423023,7,4,7,7_1,7_3,7_0_0 -20073,2,32.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1730.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,125095,2,1,1,0,1,,260.0,550.0,32,1.0,0.0,3.0,4.0,1.9,3,3,593.549144623513,0.0,26199.733254179195,0,1,2,3,65.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06603120662398511,13789.333291673262,3,2,3_0,3_1_0,3_3_0,3_1_0 -20074,2,85.0,0.0,1,111,340.0,1501.0,0.0,0,78,0.0,0.0,469.9392373758164,1905.0,110.10092826817227,2722.2930041720206,50,0,0,0,0,0,0,0,0,0,,1,,1,133666,2,1,1,0,1,,270.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,692.521383741882,340.0,14661.823917998454,0,6,0,1,79.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1299292646436351,14661.823917998454,3,2,3_0,3_1_0,3_3_0,3_1_0 -20075,0,52.0,0.0,1,111,430.0,900.0,0.0,0,85,0.0,0.0,594.3349178576501,1330.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,1,,1,129812,2,2,3,0,1,,240.0,,31,0.0,0.0,4.0,2.0,1.5,2,2,794.45423326567,430.0,5398.661593978442,0,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24635735669808514,3599.1077293189614,1,1,1_0,1_1_0,1_3_0,1_1_0 -20076,1,42.0,377.0,1,111,450.0,0.0,0.0,0,85,0.0,295.0241638735455,621.9784024091688,1095.0,619.317721508469,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,129307,1,2,3,0,1,,309.0,580.0,31,0.0,0.0,5.0,2.0,1.3,2,2,614.359906442623,450.0,8867.183750658067,0,6,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,0,0,1,0.1234890389994158,6820.910577429282,1,1,1_1,1_1_1,1_3_1,1_1_0 -20077,2,33.0,0.0,1,111,982.0,765.0,0.0,63,62,0.0,0.0,1357.2950914795638,1913.0,285.5742826955718,1387.4444691482984,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,120262,2,1,1,0,1,,520.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,666.785825171133,982.0,48381.53253059589,1,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03953988019685491,23038.82501456947,6,3,6,6_1,6_3,6_1_0 -20078,2,76.0,0.0,6,111,320.0,1200.0,0.0,77,78,0.0,0.0,442.2957528242978,1520.0,0.0,2176.3834810169387,50,1,2,2,2,2,2,2,1,0,,1,,4,133045,2,1,1,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,815.359087285599,320.0,31880.681692618073,5,5,0,1,103.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.047677775985321975,21253.787795078715,5,3,5,5_1,5_3,5_0_0 -20079,2,69.0,0.0,2,111,365.0,2318.0,0.0,77,77,0.0,103.51725048194578,504.49359306521467,2783.0,0.0,4204.047424164387,60,2,2,1,2,1,2,2,2,0,,1,,2,115738,2,1,2,0,1,,700.0,,41,1.0,0.0,6.0,3.0,2.0,2,2,836.865005545466,365.0,39981.27789157879,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06960758001650016,19990.638945789397,5,3,5,5_1,5_3,5_0_1 -20080,2,30.0,0.0,2,111,0.0,0.0,0.0,46,54,0.0,0.0,0.0,2785.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,2,122894,1,1,2,0,2,,257.0,,43,2.0,0.0,4.0,3.0,1.8,4,4,804.791413185955,0.0,41653.01026294901,1,1,1,2,106.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06686191423906042,23140.56125719389,6,3,6,6_1,6_3,6_0_1 -20081,1,67.0,253.0,7,111,160.0,500.0,0.0,0,77,0.0,0.0,221.1478764121489,660.0,0.0,906.8264504237244,50,2,2,2,1,2,1,2,2,0,,2,,5,119274,1,3,0,0,1,,150.0,241.0,11,0.0,3.0,2.0,1.0,1.0,2,2,1138.17054318731,160.0,10436.518660093547,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.06323947874722471,10436.518660093547,2,1,2_1,2_0_1,2_3_1,2_0_0 -20082,2,39.0,0.0,5,111,400.0,1180.0,0.0,37,37,0.0,0.0,552.8696910303722,1580.0,0.0,2140.1104229999896,70,0,0,0,0,0,0,0,0,2,75.0,1,,3,122575,2,1,2,0,1,,273.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,245.50286406485,400.0,29718.586264453374,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05316538229444144,11006.8838016494,2,1,2_0,2_1_0,2_3_0,2_0_0 -20083,2,55.0,0.0,6,111,372.0,826.0,0.0,0,64,0.0,0.0,514.1688126582462,1198.0,0.0,1498.0772960999927,71,0,0,0,0,0,0,0,0,0,,1,,4,114213,2,1,2,0,1,,520.0,473.0,12,1.0,3.0,5.0,1.0,1.0,2,2,284.382876649577,372.0,21620.58452228117,0,1,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05541015779501229,21620.58452228117,6,3,6,6_1,6_3,6_0_0 -20084,1,27.0,112.0,6,111,492.0,1280.0,0.0,56,47,0.0,0.0,680.0297199673578,1772.0,0.0,2321.4757130847347,71,0,0,0,0,0,0,0,0,0,,1,,4,133013,2,1,3,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,235.883372097736,492.0,33547.41338692121,1,1,1,2,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05282076384138849,15974.958755676766,3,2,3_1,3_1_1,3_3_1,3_0_0 -20085,2,54.0,0.0,1,111,0.0,0.0,0.0,47,31,0.0,0.0,0.0,2165.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117103,2,1,1,0,1,,245.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,736.052242198184,0.0,117461.30242946299,1,1,0,1,180.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0184316021976694,78307.53495297533,10,5,10,10_1,10_3,10_1_0 -20086,2,34.0,0.0,5,111,255.0,0.0,0.0,0,46,0.0,0.0,352.4544280318623,255.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,3,130907,2,3,0,1,1,35.0,0.0,515.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1028.50104766461,255.0,23429.33878112121,0,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01088378986629673,23429.33878112121,6,3,6,6_0,6_3,6_0_0 -20087,1,26.0,129.0,6,111,336.0,0.0,0.0,46,42,0.0,0.0,464.41054046551267,336.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,4,115216,2,1,0,1,1,612.0,0.0,480.0,43,2.0,0.0,2.0,2.0,1.5,2,2,855.679431913485,336.0,35105.7204301094,1,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009571089722227156,23403.813620072935,6,3,6,6_0,6_3,6_0_0 -20088,2,70.0,0.0,2,111,450.0,900.0,0.0,0,75,0.0,62.110350289167464,621.9784024091688,1410.0,0.0,1632.287610762704,50,2,2,2,2,1,2,2,2,0,,1,,2,117207,2,1,1,0,1,,260.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,919.503262643637,450.0,24670.81544976559,0,5,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.05715254945143685,24670.81544976559,7,4,7,7_1,7_3,7_0_1 -20089,1,26.0,377.0,2,111,217.0,930.0,0.0,0,85,0.0,0.0,299.93180738397695,1147.0,0.0,1686.6971977881274,31,0,0,0,0,0,0,0,0,0,,2,,2,114651,1,3,0,0,1,,318.0,403.0,31,0.0,0.0,3.0,2.0,1.3,2,2,222.530546974368,217.0,8350.461743086602,0,7,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1373576737776936,6423.432110066617,1,1,1_1,1_0_1,1_3_1,1_0_1 -20090,2,61.0,0.0,1,111,420.0,420.0,0.0,74,31,0.0,20.703450096389155,580.5131755818909,860.0,0.0,761.7342183559285,50,0,0,0,0,0,0,0,0,0,,1,,1,119491,2,2,3,0,1,,230.0,,42,1.0,2.0,8.0,2.0,1.5,1,1,736.052242198184,420.0,368595.8257378215,5,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0023331788912110724,245730.550491881,10,5,10,10_1,10_3,10_1_0 -20091,0,25.0,0.0,1,111,390.0,1684.0,0.0,63,37,0.0,0.0,539.0479487546129,2074.0,0.0,3054.191485027104,50,2,2,2,2,2,2,2,1,2,80.0,1,,1,102654,1,2,3,0,2,,492.0,,43,2.0,0.0,9.0,2.0,1.5,3,1,775.487512191021,390.0,60935.871425186386,1,1,5,0,230.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0340357814123712,40623.91428345759,9,5,9,9_1,9_3,9_1_0 -20092,2,34.0,0.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,1753.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121088,2,2,1,0,1,,128.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,953.639577202742,0.0,16838.884872089053,0,1,1,2,74.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10410428085446734,16838.884872089053,4,2,4_0,4_1_0,4_3_0,4_0_1 -20093,2,45.0,0.0,2,111,694.0,1160.0,0.0,0,43,0.0,129.39656310243222,959.2289139376958,1979.0,0.0,2103.8373649830405,10,2,2,1,2,1,2,2,1,2,45.0,1,,2,127857,2,1,2,0,1,,622.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,848.792806554401,694.0,99763.10229758408,1,1,0,1,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.01983699338154929,43375.26186851482,10,5,10,10_1,10_3,10_0_1 -20094,2,57.0,0.0,6,111,953.0,0.0,0.0,78,47,0.0,0.0,1317.212038879862,953.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,2,,4,105066,2,1,0,0,1,,250.0,392.0,42,1.0,2.0,3.0,2.0,1.5,2,2,763.906988860113,953.0,20885.185091614792,6,1,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045630431131904146,13923.456727743194,3,2,3_0,3_0_0,3_3_0,3_0_0 -20095,2,87.0,0.0,7,111,734.0,0.0,0.0,0,86,0.0,0.0,1014.515883040733,734.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,125558,1,1,0,0,1,,197.0,369.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1014.53498173088,734.0,12843.716516555576,0,6,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05714856747685707,12843.716516555576,2,1,2_0,2_0_0,2_3_0,2_0_0 -20096,1,20.0,269.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2313.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,105620,2,2,5,0,1,,0.0,580.0,12,1.0,0.0,3.0,1.0,1.0,2,1,984.430351874472,0.0,13294.970925433143,0,2,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.17397555910222073,13294.970925433143,3,2,3_1,3_1_1,3_3_1,3_0_1 -20097,2,43.0,0.0,1,111,350.0,1650.0,0.0,52,43,0.0,103.51725048194578,483.76097965157567,2100.0,0.0,2992.5272863982905,71,2,2,2,1,1,2,2,2,2,8.0,1,,1,110495,2,1,2,0,1,,300.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,736.052242198184,350.0,42827.01577713968,1,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.04903446952568065,28551.343851426453,8,4,8,8_1,8_3,8_1_0 -20098,1,38.0,408.0,9,111,444.0,1036.0,0.0,63,52,0.0,0.0,613.6853570437131,1480.0,0.0,1878.944405277957,44,0,0,0,0,0,0,0,0,1,10.0,1,2007.0,6,104776,1,1,1,0,1,,380.0,629.0,43,2.0,0.0,4.0,4.0,2.1,1,1,726.832692371295,444.0,31560.053486748926,4,1,2,3,87.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04689472407331013,15028.59689845187,3,2,3_1,3_1_1,3_3_1,3_0_0 -20099,2,57.0,0.0,2,111,791.0,107.0,0.0,63,46,0.0,0.0,1093.299814012561,898.0,0.0,194.06086039067702,31,2,2,2,2,1,2,2,2,2,60.0,1,,2,122810,2,1,2,0,1,,287.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,906.610771018539,791.0,65298.994981686075,1,1,0,1,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.013752125897984423,43532.66332112405,10,5,10,10_1,10_3,10_0_1 -20100,1,34.0,64.0,2,111,960.0,852.0,0.0,68,68,0.0,165.62760077111324,1326.8872584728933,1972.0,0.0,1545.2322715220264,71,1,2,2,1,1,2,2,2,2,40.0,1,,2,132209,2,2,1,0,1,,324.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,885.088087495961,960.0,43924.29930863561,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.044895423058286574,16268.259003198375,4,2,4_1,4_1_1,4_3_1,4_0_1 -20101,2,51.0,0.0,1,111,540.0,798.0,0.0,56,62,0.0,0.0,746.3740828910024,1338.0,0.0,1447.2950148762643,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,132925,2,1,1,0,1,,552.0,,43,3.0,0.0,6.0,5.0,3.0,1,1,723.361695035965,540.0,75476.9504883682,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017727266289146115,25158.98349612273,7,4,7,7_1,7_3,7_1_0 -20102,0,81.0,0.0,5,111,318.0,1200.0,0.0,0,86,0.0,0.0,439.5314043691459,1518.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,3,117557,2,1,1,0,1,,140.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,1088.90838872229,318.0,12917.0,0,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11751954788263529,12917.0,2,1,2_0,2_1_0,2_3_0,2_0_0 -20103,2,44.0,0.0,1,111,1203.0,2223.0,0.0,54,85,0.0,0.0,1662.7555957738446,3426.0,0.0,4031.750398583879,71,2,2,2,2,1,2,2,2,0,,1,,1,114888,1,2,1,0,1,,520.0,,42,1.0,2.0,7.0,3.0,1.8,2,2,813.156153627228,1203.0,29550.94890111932,1,7,0,1,210.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.11593536341129916,16417.193833955178,4,2,4_0,4_1_0,4_3_0,4_1_0 -20104,0,83.0,0.0,2,111,250.0,880.0,0.0,0,77,0.0,0.0,345.54355689398267,1130.0,0.0,1596.014552745755,71,2,2,2,2,1,2,2,2,0,,1,,2,116208,1,2,2,0,1,,180.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,1129.4602579851,250.0,24545.0,0,5,5,0,46.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.04603788959054797,24545.0,7,4,7,7_1,7_3,7_0_1 -20105,1,56.0,200.0,1,111,250.0,0.0,0.0,0,67,0.0,134.5724256265295,345.54355689398267,449.0,118.70256328912323,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100104,2,2,4,0,1,,60.0,186.0,22,1.0,0.0,4.0,2.0,1.5,1,1,820.103357716562,250.0,20542.2471036654,0,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.02185739455543225,13694.831402443599,3,2,3_1,3_1_1,3_3_1,3_1_0 -20106,2,44.0,0.0,1,111,280.0,1022.0,0.0,0,52,0.0,0.0,387.00878372126056,1302.0,0.0,1853.5532646660927,33,0,0,0,0,0,0,0,0,2,15.0,1,,1,125181,1,1,2,0,1,,100.0,,12,1.0,0.0,6.0,1.0,1.0,4,4,822.873910680938,280.0,23778.36969994912,0,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05475564626294737,23778.36969994912,6,3,6,6_1,6_3,6_1_0 -20107,2,28.0,0.0,2,111,500.0,1200.0,0.0,47,54,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,71,1,2,2,1,2,2,2,2,2,20.0,1,,2,118042,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,804.791413185955,500.0,55098.18031833491,1,1,1,2,124.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03085401351148242,30610.100176852728,8,4,8,8_1,8_3,8_0_1 -20108,2,59.0,0.0,5,112,1000.0,0.0,0.0,56,69,1642.9433647198007,310.55175144583734,1382.1742275759307,2450.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,114062,2,2,2,0,1,,120.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,300.108911530643,1000.0,49069.953888893,4,1,0,1,108.0,7,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04992872024187001,32713.30259259533,8,4,8,8_1,8_0,8_0_0 -20109,2,68.0,0.0,2,112,1100.0,0.0,0.0,0,77,0.0,0.0,1520.3916503335236,1150.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,132586,2,2,2,0,2,,200.0,,11,0.0,1.0,4.0,1.0,1.0,5,2,296.902595874536,1100.0,31244.27098321318,0,5,0,1,90.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03680674772721912,31244.27098321318,8,4,8,8_1,8_0,8_0_1 -20110,2,32.0,0.0,1,112,450.0,0.0,0.0,0,62,0.0,0.0,621.9784024091688,525.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,101719,2,1,1,0,1,,160.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,190.607955152904,450.0,18854.092681924918,0,1,1,2,53.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02784541313426915,18854.092681924918,5,3,5,5_1,5_0,5_1_0 -20111,2,54.0,0.0,9,112,1300.0,0.0,0.0,0,21,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,118811,2,1,1,0,1,,250.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,288.721243341478,1300.0,13142.483764456334,0,1,0,1,95.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09891585360111549,13142.483764456334,2,1,2_0,2_1_0,2_0_0,2_0_0 -20112,2,35.0,0.0,7,112,800.0,0.0,0.0,0,47,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,5,110439,2,1,2,0,1,,190.0,,12,1.0,2.0,7.0,1.0,1.0,3,1,302.204152614226,800.0,20077.49641867026,0,1,0,1,130.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0398456054140332,20077.49641867026,5,3,5,5_1,5_0,5_0_0 -20113,2,54.0,0.0,1,112,700.0,0.0,0.0,85,64,0.0,1035.1725048194578,967.5219593031513,1760.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,103792,2,1,1,0,1,,200.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,272.455392597034,700.0,22388.284026177913,6,1,0,1,90.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07861254564852257,14925.522684118609,3,2,3_0,3_1_0,3_0_0,3_1_0 -20114,2,61.0,0.0,2,112,1300.0,0.0,0.0,54,45,0.0,310.55175144583734,1796.8264958487098,1600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,5.0,1,,2,120070,2,1,2,0,1,,160.0,,42,1.0,0.0,6.0,2.0,1.5,3,3,244.489541863831,1300.0,69493.21093706632,1,5,0,1,108.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023023831802058685,46328.80729137755,10,5,10,10_1,10_0,10_0_1 -20115,2,31.0,0.0,9,112,1450.0,0.0,0.0,47,34,0.0,517.5862524097289,2004.1526299850993,1950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,112956,2,1,1,0,2,,350.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,260.791784944827,1450.0,54232.05784053194,1,1,1,2,120.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03595659242239946,25824.78944787235,7,4,7,7_1,7_0,7_0_0 -20116,2,33.0,0.0,9,112,1450.0,0.0,0.0,52,48,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,130895,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,250.809904013424,1450.0,42968.69775591674,1,1,1,2,120.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03374549557533045,23871.49875328708,6,3,6,6_1,6_0,6_0_0 -20117,2,61.0,0.0,5,112,1600.0,0.0,0.0,85,62,0.0,621.1035028916747,2211.478764121489,2280.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,118885,2,2,2,0,1,,250.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,254.447437383296,1600.0,49065.338659337736,6,1,0,1,100.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04646864899537564,32710.225772891823,8,4,8,8_1,8_0,8_0_0 -20118,2,67.0,0.0,9,112,1000.0,0.0,0.0,86,72,0.0,310.55175144583734,1382.1742275759307,1300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,106962,2,1,2,0,1,,200.0,,41,0.0,0.0,3.0,2.0,1.5,3,3,232.823435667807,1000.0,36249.57783230066,5,5,0,1,80.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03586248662023363,24166.385221533772,6,3,6,6_1,6_0,6_0_0 -20119,2,94.0,0.0,1,112,400.0,0.0,0.0,0,72,4480.754631054002,207.03450096389156,552.8696910303722,3650.0,86.01635020950958,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,131008,2,1,2,0,1,,116.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,222.479836096273,400.0,29119.447826855678,0,5,0,1,70.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12534578339887867,19412.965217903784,5,3,5,5_1,5_0,5_1_0 -20120,2,42.0,0.0,1,112,1300.0,0.0,0.0,55,47,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,15.0,1,,1,105816,1,2,3,0,2,,260.0,750.0,43,2.0,0.0,4.0,2.0,1.5,2,2,246.300629275935,1300.0,24204.8967445342,1,1,2,3,90.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05370814070064389,16136.597829689466,4,2,4_0,4_1_0,4_0_0,4_1_0 -20121,0,48.0,0.0,1,112,1000.0,1000.0,0.0,85,52,0.0,0.0,1382.1742275759307,2060.0,103.2196202514115,1813.6529008474488,71,2,2,2,1,2,2,2,2,1,5.0,1,,1,128730,2,1,3,0,1,,180.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,218.174005383315,1000.0,12527.192881826886,6,1,5,0,95.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.16444226726870534,6263.596440913443,1,1,1_0,1_1_0,1_0_0,1_1_0 -20122,2,42.0,0.0,1,112,1600.0,600.0,0.0,43,53,0.0,0.0,2211.478764121489,2200.0,0.0,1088.1917405084694,70,0,0,0,0,0,0,0,0,2,40.0,1,,1,112150,2,2,2,0,1,,150.0,,43,2.0,0.0,7.0,5.0,2.8,3,3,203.584676188884,1600.0,56965.14212930371,1,1,1,2,110.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03862010903099788,20344.69361760847,5,3,5,5_1,5_0,5_1_0 -20123,2,65.0,0.0,5,112,780.0,648.0,0.0,75,75,0.0,0.0,1078.0958975092258,1428.0,0.0,1175.247079749147,60,0,0,0,0,0,0,0,0,0,,1,,3,121708,2,1,2,0,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,243.579562323002,780.0,38299.902881892434,5,5,0,1,110.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037284689843825554,25533.26858792829,7,4,7,7_1,7_0,7_0_0 -20124,2,87.0,0.0,1,112,1540.0,550.0,0.0,77,78,0.0,0.0,2128.548310466933,2090.0,0.0,997.5090954660969,50,0,0,0,0,0,0,0,0,0,,1,,1,107055,2,2,2,0,1,,200.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,207.27537396457,1540.0,41454.38337239736,5,5,0,1,120.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05041686379037153,27636.255581598238,7,4,7,7_1,7_0,7_1_0 -20125,2,55.0,0.0,1,112,1240.0,900.0,0.0,0,63,0.0,0.0,1713.8960421941538,2140.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,120897,2,1,2,0,1,,250.0,,22,1.0,0.0,5.0,3.0,2.0,1,1,204.531293787249,1240.0,47772.87805060356,0,1,0,1,120.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04479529154038404,23886.43902530178,6,3,6,6_1,6_0,6_1_0 -20126,2,57.0,0.0,1,112,780.0,0.0,0.0,0,62,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121816,1,1,3,0,2,,90.0,210.0,12,1.0,1.0,3.0,1.0,1.0,1,1,216.506134863279,780.0,20980.577965383185,0,1,2,3,70.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03717724084088425,20980.577965383185,5,3,5,5_1,5_0,5_1_0 -20127,2,75.0,0.0,2,112,1400.0,0.0,0.0,86,33,1344.2263893162005,0.0,1935.0439186063027,2300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,3.0,1,,2,120140,2,1,2,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,242.69880669245,1400.0,63985.96533056683,5,5,0,1,90.0,7,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035945382524396545,42657.31022037789,9,5,9,9_1,9_0,9_0_1 -20128,2,31.0,0.0,1,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1344.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,112282,2,1,3,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,198.37128968297,0.0,14745.899935125834,0,1,1,2,86.0,7,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09114397940531875,14745.899935125834,3,2,3_0,3_1_0,3_0_0,3_1_0 -20129,2,75.0,0.0,1,112,780.0,450.0,0.0,0,86,0.0,621.1035028916747,1078.0958975092258,1880.0,86.01635020950958,816.143805381352,50,2,2,2,2,2,2,2,1,0,,1,,1,126700,1,2,3,0,2,,270.0,,11,0.0,8.0,2.0,1.0,1.0,4,4,250.583704320776,780.0,9736.064006516699,0,6,0,1,80.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1930965119725639,9736.064006516699,1,1,1_0,1_1_0,1_0_0,1_1_0 -20130,2,31.0,0.0,1,112,1700.0,0.0,0.0,21,69,0.0,0.0,2349.696186879082,1780.0,137.62616033521533,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,110886,2,1,2,0,1,,200.0,,43,2.0,0.0,7.0,3.0,1.8,3,2,207.881495936586,1700.0,28270.9689760249,1,1,1,2,150.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06296211500601635,15706.093875569388,3,2,3_0,3_1_0,3_0_0,3_1_0 -20131,2,43.0,0.0,1,112,900.0,0.0,0.0,38,48,3285.8867294396014,0.0,1243.9568048183376,3170.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,101125,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,260.48269588536,900.0,42674.40494657284,1,1,1,2,120.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07428340252122441,23708.00274809602,6,3,6,6_1,6_0,6_1_0 -20132,2,36.0,0.0,6,112,60.0,80.0,0.0,53,45,0.0,310.55175144583734,82.93045365455583,440.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,117988,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,229.527645311683,60.0,69964.95051451161,1,1,1,2,100.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006288863163116773,33316.64310214839,8,4,8,8_1,8_0,8_0_0 -20133,2,69.0,0.0,7,112,1560.0,1600.0,0.0,85,54,0.0,0.0,2156.1917950184516,3160.0,0.0,2901.844641355918,60,0,0,0,0,0,0,0,0,2,30.0,1,,5,103668,2,1,1,0,1,,350.0,,42,1.0,0.0,7.0,4.0,2.1,1,1,251.00985361189,1560.0,64256.75279462363,6,1,1,2,140.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049177710708475104,30598.453711725535,8,4,8,8_1,8_0,8_0_0 -20134,2,51.0,0.0,9,112,600.0,600.0,0.0,34,53,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,42,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,132968,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,220.220194178384,600.0,61531.34962826025,1,1,1,2,100.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019502253847018845,29300.64268012393,8,4,8,8_1,8_0,8_0_0 -20135,2,39.0,0.0,7,112,1000.0,1500.0,0.0,37,48,0.0,724.6207533736205,1382.1742275759307,3200.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,2,30.0,1,,5,126060,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,276.22552199946,1000.0,56028.19187034998,1,1,0,1,130.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057114104403098435,37352.127913566655,9,5,9,9_1,9_0,9_0_0 -20136,2,63.0,0.0,2,112,2300.0,0.0,0.0,75,75,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115328,2,1,2,0,1,,320.0,,41,0.0,1.0,4.0,3.0,2.0,2,2,244.320483699327,2300.0,44081.36427891182,7,5,0,1,110.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05217624358101598,22040.68213945591,6,3,6,6_1,6_0,6_0_1 -20137,2,31.0,0.0,1,112,520.0,1800.0,0.0,67,54,0.0,0.0,718.7305983394839,2320.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,125802,2,1,4,0,1,,160.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,209.919115822603,520.0,63697.805982160695,1,1,1,2,130.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03642197661642762,42465.20398810713,9,5,9,9_1,9_0,9_1_0 -20138,2,27.0,0.0,1,112,600.0,0.0,0.0,55,67,0.0,621.1035028916747,829.3045365455583,1260.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,2,35.0,1,,1,114391,2,2,2,0,1,,150.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,189.093822215928,600.0,41249.060956118265,1,1,1,2,86.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030546149919398604,22916.144975621257,6,3,6,6_1,6_0,6_1_0 -20139,2,65.0,0.0,1,112,3431.0,0.0,0.0,74,74,0.0,0.0,4742.239774813018,3431.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130229,2,2,2,0,1,,206.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,202.413926991174,3431.0,86310.6356090411,5,5,0,1,160.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03975176379816395,57540.42373936073,10,5,10,10_1,10_0,10_1_0 -20140,2,57.0,0.0,1,112,588.0,1476.0,0.0,56,65,0.0,0.0,812.7184458146471,2064.0,0.0,2676.9516816508344,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,111003,2,1,2,0,1,,110.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,260.48269588536,588.0,21888.27633003233,1,1,0,1,180.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09429705513942364,10944.138165016166,2,1,2_0,2_1_0,2_0_0,2_1_0 -20141,2,64.0,0.0,1,112,950.0,700.0,0.0,78,78,0.0,1304.3173560725168,1313.065516197134,2970.0,103.2196202514115,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,1,,1,108400,2,2,2,0,2,,250.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,222.479836096273,950.0,52030.482731295364,5,5,0,1,90.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057081922828549896,34686.988487530245,9,5,9,9_1,9_0,9_1_0 -20142,2,67.0,0.0,1,112,300.0,0.0,0.0,0,71,4279.120672656572,0.0,414.65226827277917,3225.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109577,2,1,2,0,1,,78.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,235.25711775597,300.0,11138.259880670068,0,5,0,1,110.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2895425348798727,11138.259880670068,2,1,2_0,2_1_0,2_0_0,2_1_0 -20143,2,39.0,0.0,1,112,1250.0,0.0,0.0,45,42,0.0,310.55175144583734,1727.717784469913,1550.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,60.0,1,,1,130034,2,2,2,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,183.657944783024,1250.0,46819.105302096905,1,1,1,2,100.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0331061431011707,22294.812048617572,6,3,6,6_1,6_0,6_1_0 -20145,2,89.0,0.0,1,112,1600.0,2300.0,0.0,71,71,0.0,0.0,2211.478764121489,3960.0,103.2196202514115,4171.401671949133,10,0,0,0,0,0,0,0,0,0,,5,,1,112702,2,1,2,0,1,,350.0,,41,0.0,0.0,5.0,2.0,1.5,3,3,209.919115822603,1600.0,24813.373115315666,5,5,0,1,150.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15959136154510778,16542.248743543776,4,2,4_0,4_1_0,4_0_0,4_1_0 -20146,2,54.0,0.0,1,112,600.0,0.0,0.0,77,62,0.0,517.5862524097289,829.3045365455583,1150.0,86.01635020950958,0.0,33,0,0,0,0,0,0,0,0,2,90.0,1,,1,100602,2,1,3,0,1,,70.0,,42,1.0,2.0,3.0,2.0,1.5,3,3,209.919115822603,600.0,32926.376270499284,6,1,0,1,80.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034926406433323606,21950.91751366619,6,3,6,6_1,6_0,6_1_0 -20147,2,69.0,0.0,1,112,400.0,900.0,0.0,77,75,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,33,0,0,0,0,0,0,0,0,0,,1,,1,104924,1,1,3,0,1,,120.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,245.836864880852,400.0,18822.54832201652,5,5,0,1,80.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06906609975225325,12548.365548011012,2,1,2_0,2_1_0,2_0_0,2_1_0 -20148,2,89.0,0.0,1,112,700.0,800.0,0.0,0,71,0.0,0.0,967.5219593031513,1550.0,86.01635020950958,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,1,119178,1,2,3,0,2,,200.0,,11,0.0,0.0,5.0,1.0,1.0,3,3,235.25711775597,700.0,30404.53312333847,0,5,0,1,120.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0509792402900021,30404.53312333847,8,4,8,8_1,8_0,8_1_0 -20149,1,27.0,89.0,9,112,0.0,0.0,0.0,46,52,0.0,0.0,0.0,1238.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,125490,2,1,1,0,1,,758.0,650.0,43,2.0,0.0,4.0,3.0,1.8,1,1,233.281803938629,0.0,31111.357513718085,1,1,2,3,95.0,7,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.039792541982590204,17284.08750762116,4,2,4_1,4_1_1,4_0_1,4_0_0 -20150,2,64.0,0.0,2,112,550.0,2777.0,0.0,43,74,0.0,0.0,760.1958251667618,3327.0,0.0,5036.514105653366,70,0,0,0,0,0,0,0,0,0,,1,,2,116359,2,1,2,0,1,,254.0,,42,1.0,0.0,7.0,2.0,1.5,1,1,256.978695078831,550.0,84004.21345809867,1,5,0,1,150.0,7,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03960515625397181,56002.80897206578,10,5,10,10_1,10_0,10_0_1 -20151,2,88.0,0.0,1,112,1000.0,0.0,0.0,0,71,2987.1697540360015,0.0,1382.1742275759307,3000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117770,2,1,2,0,1,,150.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,216.154314264417,1000.0,8295.928762298765,0,5,0,1,100.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.36162316311509807,8295.928762298765,1,1,1_0,1_1_0,1_0_0,1_1_0 -20152,2,51.0,0.0,2,112,1000.0,0.0,0.0,47,52,1626.5139310726026,0.0,1382.1742275759307,2149.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,100449,2,1,2,0,1,,209.0,,43,4.0,0.0,5.0,4.0,2.5,1,1,261.233317067907,1000.0,89342.19712279491,1,1,0,1,130.0,7,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02405358351604385,35736.878849117966,9,5,9,9_1,9_0,9_0_1 -20153,2,62.0,0.0,5,112,1650.0,0.0,0.0,75,11,0.0,0.0,2280.5874755002856,1720.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117705,2,1,2,0,1,,201.0,,42,1.0,2.0,4.0,2.0,1.5,3,2,233.89308738577,1650.0,82730.46393354281,5,1,0,1,130.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02079040680083303,55153.64262236187,10,5,10,10_1,10_0,10_0_0 -20154,2,83.0,0.0,1,112,1700.0,1800.0,0.0,0,71,0.0,0.0,2349.696186879082,3560.0,103.2196202514115,3264.575221525408,10,0,0,0,0,0,0,0,0,0,,1,,1,117152,1,2,3,0,2,,250.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,227.979599147657,1700.0,17710.10704688156,0,5,0,1,190.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20101515990705734,17710.10704688156,4,2,4_0,4_1_0,4_0_0,4_1_0 -20155,2,60.0,0.0,2,112,973.0,0.0,0.0,75,75,0.0,414.0690019277831,1344.8555234313803,1373.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,110110,2,1,2,0,1,,179.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,247.650929872567,973.0,49677.787174416495,5,5,0,1,106.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027638107051335806,33118.52478294433,8,4,8,8_1,8_0,8_0_1 -20156,2,31.0,0.0,9,112,2000.0,0.0,0.0,43,47,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,120366,2,1,1,0,1,,160.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,219.943178044531,2000.0,41619.808992131155,1,1,1,2,180.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04805404081451046,23122.11610673953,6,3,6,6_1,6_0,6_0_0 -20157,2,78.0,0.0,5,112,600.0,0.0,0.0,78,74,4480.754631054002,0.0,829.3045365455583,3660.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,122556,2,2,2,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,253.699834265999,600.0,30741.174203477105,5,5,0,1,108.0,7,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11905856216728446,20494.116135651402,5,3,5,5_1,5_0,5_0_0 -20158,2,62.0,0.0,1,120,600.0,0.0,0.0,0,77,2987.1697540360015,0.0,829.3045365455583,2750.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,104484,2,2,3,0,1,,140.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,246.34984164804,600.0,28536.00828147585,0,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09636947021021025,28536.00828147585,8,4,8,8_1,8_0,8_1_0 -20159,2,63.0,0.0,7,120,687.0,0.0,0.0,56,78,522.7547069563002,414.0690019277831,949.5536943446643,1577.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,125472,2,1,2,0,1,,275.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,248.090925909346,687.0,58401.82588182733,1,5,0,1,155.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02700258041916304,29200.912940913666,8,4,8,8_1,8_0,8_0_0 -20160,2,49.0,0.0,5,120,720.0,0.0,0.0,85,65,0.0,186.3310508675024,995.16544385467,1060.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,116961,1,2,2,0,1,,200.0,,42,2.0,0.0,4.0,5.0,2.8,2,2,198.548635233031,720.0,62636.99805942256,6,1,0,1,104.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016922905516551057,22370.356449793773,6,3,6,6_1,6_0,6_0_0 -20161,0,58.0,0.0,7,120,1600.0,0.0,0.0,54,62,224.0377315527001,310.55175144583734,2211.478764121489,2200.0,258.04905062852873,0.0,30,0,0,0,0,0,0,0,0,2,5.0,1,,5,121170,2,1,2,0,1,,220.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,258.371650514293,1600.0,58725.70029240589,1,1,0,1,200.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037462303370514136,39150.46686160393,9,5,9,9_1,9_0,9_0_0 -20162,2,61.0,0.0,2,120,450.0,0.0,0.0,0,52,0.0,507.23452736153433,621.9784024091688,1036.0,165.1513924022584,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,110816,2,2,4,0,1,,90.0,,22,2.0,1.0,2.0,2.0,1.5,1,1,303.17678316437,450.0,19029.002770914296,0,1,0,1,45.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05444321031806875,12686.001847276197,2,1,2_0,2_1_0,2_0_0,2_0_1 -20163,2,37.0,0.0,9,120,810.0,0.0,0.0,52,53,0.0,590.048327747091,1119.5611243365038,1380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,121769,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,179.281273686072,810.0,46161.865944083256,1,1,1,2,105.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029894805415180144,21981.84092575393,6,3,6,6_1,6_0,6_0_0 -20164,2,38.0,0.0,7,120,0.0,0.0,0.0,85,67,0.0,0.0,0.0,3214.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,2.0,1,,5,105973,1,2,5,0,1,,378.0,700.0,42,1.0,0.0,6.0,5.0,2.4,2,2,253.539571911998,0.0,30291.210695833855,6,1,2,3,125.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1061033853111075,12621.337789930774,2,1,2_0,2_1_0,2_0_0,2_0_0 -20165,1,34.0,212.0,1,120,800.0,0.0,0.0,21,63,0.0,362.31037668681023,1105.7393820607444,1285.0,232.24414556567586,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,118034,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,177.76175072316,800.0,24499.715552346097,1,1,1,2,85.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.052449588537241125,11666.531215402903,2,1,2_1,2_1_1,2_0_1,2_1_0 -20166,2,46.0,0.0,5,120,1150.0,0.0,0.0,56,65,1866.981096272501,170.80346329521052,1589.5003617123202,2565.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,125534,2,1,1,0,1,,220.0,,43,2.0,2.0,6.0,6.0,3.5,2,2,258.182631962555,1150.0,95670.6358061741,1,1,0,1,83.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026810734332283676,27334.4673731926,7,4,7,7_1,7_0,7_0_0 -20167,1,56.0,59.0,6,120,900.0,0.0,0.0,85,78,0.0,621.1035028916747,1243.9568048183376,1750.0,430.0817510475479,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,130994,2,2,3,0,1,,280.0,480.0,41,1.0,2.0,4.0,3.0,2.0,2,2,179.319697139785,900.0,23927.744787362197,6,5,2,3,82.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07313685495861227,11963.872393681098,2,1,2_1,2_1_1,2_0_1,2_0_0 -20168,2,42.0,0.0,7,120,1200.0,0.0,0.0,55,46,0.0,517.5862524097289,1658.6090730911167,1830.0,223.64251054472493,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,5,110125,2,1,2,0,1,,300.0,,43,2.0,1.0,5.0,4.0,2.5,2,2,237.920656995479,1200.0,45945.866998274156,1,1,1,2,113.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03982948020262061,18378.346799309664,4,2,4_0,4_1_0,4_0_0,4_0_0 -20169,2,83.0,0.0,2,120,800.0,0.0,0.0,71,71,0.0,517.5862524097289,1105.7393820607444,1390.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122142,2,1,2,0,1,,50.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,220.937094270426,800.0,22063.61433870934,5,5,0,1,89.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06299965085780733,14709.076225806226,3,2,3_0,3_1_0,3_0_0,3_0_1 -20170,1,56.0,245.0,5,400,1600.0,0.0,0.0,77,78,3883.3206802468017,0.0,2211.478764121489,4320.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,111733,2,1,1,0,1,,247.0,600.0,41,1.0,4.0,5.0,3.0,2.0,1,1,222.752553498185,1600.0,12179.281758375073,7,7,2,3,121.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.3547007192792264,6089.6408791875365,1,1,1_1,1_1_1,1_0_1,1_0_0 -20171,2,66.0,0.0,5,400,1000.0,0.0,0.0,0,75,2688.452778632401,0.0,1382.1742275759307,2920.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,133208,2,1,2,0,1,,290.0,,21,1.0,2.0,6.0,2.0,1.5,1,1,207.610983570215,1000.0,110439.53598678517,0,5,0,1,130.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02643980684914683,73626.35732452344,10,5,10,10_1,10_0,10_0_0 -20172,2,48.0,0.0,9,400,1400.0,0.0,0.0,34,34,0.0,310.55175144583734,1935.0439186063027,1740.0,68.81308016760767,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,123780,2,1,1,0,1,,210.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,237.039577689111,1400.0,71353.02204376129,1,1,1,2,136.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02438579264285185,39640.5678020896,9,5,9,9_1,9_0,9_0_0 -20173,2,47.0,0.0,1,400,1500.0,0.0,0.0,0,11,0.0,0.0,2073.261341363896,1860.0,619.317721508469,0.0,31,0,0,0,0,0,0,0,0,0,,5,,1,102873,1,2,4,0,2,,225.0,,22,1.0,2.0,6.0,3.0,2.0,1,1,186.042297551192,1500.0,45405.38833889675,0,1,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04096430111151856,22702.694169448376,6,3,6,6_1,6_0,6_1_0 -20174,2,57.0,0.0,7,400,235.0,0.0,0.0,0,11,448.0754631054002,0.0,324.81094348034367,595.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,1,4.0,1,,5,110441,2,1,2,0,1,,338.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,236.560448347902,235.0,7254.893158310293,0,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08201361302177729,7254.893158310293,1,1,1_0,1_1_0,1_0_0,1_0_0 -20175,2,38.0,0.0,1,400,1030.0,0.0,0.0,54,48,0.0,2173.8622601208613,1423.6394544032084,3190.0,103.2196202514115,0.0,12,2,2,1,2,1,2,2,2,2,25.0,1,,1,127106,2,3,4,0,1,,380.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,164.975294816711,1030.0,54905.88270468419,1,1,1,2,90.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.058099421097693255,36603.921803122794,9,5,9,9_1,9_0,9_1_0 -20176,2,46.0,0.0,6,400,700.0,0.0,0.0,85,21,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,100183,2,1,2,0,1,,300.0,,42,2.0,0.0,5.0,4.0,2.5,1,1,205.232009643845,700.0,50095.855222102226,6,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015170915769987473,20038.34208884089,5,3,5,5_1,5_0,5_0_0 -20177,2,84.0,0.0,1,112,850.0,0.0,0.0,0,86,0.0,776.3793786145933,1174.848093439541,1720.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119221,1,3,4,0,2,,130.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,325.660975797418,850.0,11507.906405655665,0,6,0,1,70.0,7,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14946245992708895,11507.906405655665,2,1,2_0,2_1_0,2_1_0,2_1_0 -20178,2,85.0,0.0,2,112,0.0,0.0,0.0,78,75,3733.962192545002,0.0,0.0,2891.0,361.26867087994026,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,111155,2,1,3,0,1,,160.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,340.848774492321,0.0,34364.90860967758,5,5,0,1,90.0,7,1,3,1,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0841265150108928,22909.939073118385,6,3,6,6_1,6_1,6_0_1 -20179,2,51.0,0.0,5,112,1400.0,0.0,0.0,43,43,0.0,0.0,1935.0439186063027,1466.0,113.54158227655265,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,3,120570,2,1,2,0,1,,230.0,,43,3.0,0.0,5.0,3.0,2.0,1,1,399.062463957193,1400.0,63678.471933560126,1,1,0,1,100.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02302190921807252,31839.235966780063,8,4,8,8_1,8_1,8_0_0 -20180,2,63.0,0.0,1,112,550.0,0.0,0.0,75,75,2240.377315527001,445.1241770723668,760.1958251667618,2480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,117210,2,2,2,0,1,,170.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,344.091121241895,550.0,36117.07905337445,5,5,1,2,120.0,7,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06866557498559096,24078.052702249635,6,3,6,6_1,6_1,6_1_0 -20181,2,61.0,0.0,5,111,350.0,1230.0,0.0,0,74,0.0,0.0,483.76097965157567,1580.0,0.0,2230.793068042362,70,0,0,0,0,0,0,0,0,0,,1,,3,106113,2,1,2,0,1,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,380.715250518568,350.0,29305.000157327664,0,5,0,1,87.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05391571375251891,29305.000157327664,8,4,8,8_1,8_3,8_0_0 -20182,2,26.0,0.0,2,111,371.0,821.0,0.0,56,62,0.0,0.0,512.7866384306702,1192.0,0.0,1489.0090315957555,71,0,0,0,0,0,0,0,0,0,,1,,2,113061,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,1,376.157842194539,371.0,32101.119267802307,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03713266163886024,17833.95514877906,4,2,4_0,4_1_0,4_3_0,4_0_1 -20184,2,47.0,0.0,2,111,0.0,0.0,1700.0,85,45,0.0,362.31037668681023,868.5526692237926,2050.0,0.0,1943.5178169094734,30,0,0,0,0,0,0,0,0,2,10.0,1,,2,123022,2,1,2,0,1,,600.0,,42,2.0,0.0,6.0,4.0,2.5,1,1,357.990174963249,0.0,34107.57160344155,7,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06010395650076562,13643.02864137662,3,2,3_0,3_1_0,3_3_0,3_0_1 -20185,1,44.0,152.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,520.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2008.0,6,118336,2,1,0,0,1,,135.0,420.0,12,1.0,2.0,2.0,1.0,1.0,2,2,642.633810584686,0.0,13464.03005358918,0,1,2,3,32.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0386214230011601,13464.03005358918,3,2,3_1,3_0_1,3_3_1,3_0_0 -20186,2,75.0,0.0,6,111,530.0,880.0,0.0,78,74,0.0,129.39656310243222,732.5523406152432,1535.0,0.0,1596.014552745755,50,0,0,0,0,0,0,0,0,0,,1,,4,129127,2,1,2,0,1,,360.0,,41,1.0,2.0,6.0,3.0,2.0,2,2,350.765949437999,530.0,28600.434193829096,5,5,0,1,81.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05367051386692569,14300.217096914548,3,2,3_0,3_1_0,3_3_0,3_0_0 -20187,2,34.0,0.0,6,111,0.0,0.0,0.0,43,33,0.0,0.0,0.0,2083.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,127580,2,1,1,0,1,,712.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,364.587250315672,0.0,62984.80296957978,4,1,0,1,120.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03307146965286279,26243.667903991576,7,4,7,7_1,7_3,7_0_0 -20188,2,50.0,0.0,2,111,700.0,1200.0,0.0,43,34,0.0,0.0,967.5219593031513,1900.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,119174,2,1,1,0,1,,800.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,359.767490860761,700.0,86041.5099106866,1,1,1,2,170.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022082364686210772,30729.110682388073,8,4,8,8_1,8_3,8_0_1 -20189,2,49.0,0.0,2,111,500.0,1000.0,0.0,56,42,0.0,155.27587572291867,691.0871137879653,1650.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,104768,2,1,2,0,1,,600.0,,43,2.0,0.0,8.0,6.0,3.0999999999999996,1,1,365.282834696483,500.0,49711.49175150973,1,1,0,1,250.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03319152054916738,16035.965081132174,4,2,4_0,4_1_0,4_3_0,4_0_1 -20190,2,29.0,0.0,5,111,500.0,1000.0,0.0,42,38,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,60,1,2,2,1,1,2,2,2,2,50.0,1,,3,117713,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,361.370524658436,500.0,53818.17482218096,1,1,1,2,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027871625244745027,29898.986012322755,8,4,8,8_1,8_3,8_0_0 -20191,2,38.0,0.0,2,111,850.0,0.0,0.0,42,48,2837.8112663342013,0.0,1174.848093439541,2750.0,0.0,0.0,60,1,2,2,1,2,2,2,2,2,20.0,1,,2,106970,2,1,1,0,1,,280.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,351.437976475084,850.0,70646.91647321358,1,1,1,2,160.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03892597352133107,33641.38879676837,9,5,9,9_1,9_3,9_0_1 -20192,1,24.0,476.0,5,111,1250.0,0.0,0.0,85,63,0.0,0.0,1727.717784469913,1370.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,1,2.0,2,,3,122896,1,1,0,0,1,,525.0,444.0,42,1.0,0.0,5.0,5.0,2.4,1,1,382.535111819666,1250.0,18141.562580322825,6,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07551719946582579,7558.984408467844,1,1,1_1,1_0_1,1_3_1,1_0_0 -20193,2,63.0,0.0,1,111,220.0,1030.0,0.0,0,77,0.0,0.0,304.0783300667047,1250.0,0.0,1868.0624878728725,71,0,0,0,0,0,0,0,0,0,,1,,1,122021,2,1,1,0,1,,310.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,313.737864873026,220.0,15588.719144696217,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08018619030834809,15588.719144696217,3,2,3_0,3_1_0,3_3_0,3_1_0 -20194,2,64.0,0.0,1,111,2100.0,0.0,0.0,86,78,0.0,414.0690019277831,2902.5658779094542,2575.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106713,2,1,2,0,2,,220.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,336.90703757496,2100.0,17078.294014661245,6,5,0,1,105.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15077618395546027,11385.529343107497,2,1,2_0,2_1_0,2_3_0,2_1_0 -20195,1,21.0,380.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1205.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123111,2,1,0,0,2,,0.0,500.0,32,1.0,0.0,3.0,2.0,1.3,1,1,430.838904660909,0.0,9329.973190724144,0,4,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1291536401410039,7176.902454403187,1,1,1_1,1_0_1,1_3_1,1_0_1 -20196,2,61.0,0.0,7,111,488.0,584.0,0.0,0,78,0.0,0.0,674.5010230570541,1072.0,0.0,1059.1732940949103,71,0,0,0,0,0,0,0,0,0,,2,,5,126323,2,1,0,0,1,,240.0,417.0,11,0.0,2.0,4.0,1.0,1.0,2,2,412.8315315808,488.0,22055.808330692205,0,5,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048603976962759365,22055.808330692205,6,3,6,6_0,6_3,6_0_0 -20197,1,45.0,160.0,7,111,800.0,0.0,0.0,0,55,0.0,0.0,1105.7393820607444,890.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,6.0,2,,5,111295,2,1,0,0,1,,400.0,615.0,32,1.0,0.0,4.0,3.0,2.0,2,2,429.764258218837,800.0,19648.387907476143,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04529633699166526,9824.193953738071,2,1,2_1,2_0_1,2_3_1,2_0_0 -20198,1,81.0,303.0,1,111,400.0,1400.0,0.0,0,78,0.0,0.0,552.8696910303722,1800.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,1,108459,2,1,1,0,1,,440.0,296.0,21,0.0,0.0,3.0,2.0,1.5,3,3,331.949670250602,400.0,16154.12923818751,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11142661875855833,10769.419492125007,2,1,2_1,2_1_1,2_3_1,2_1_0 -20199,2,71.0,0.0,1,111,1400.0,0.0,0.0,0,77,0.0,496.8828023133397,1935.0439186063027,1940.0,103.2196202514115,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,103290,2,1,1,0,1,,300.0,288.0,11,0.0,3.0,4.0,1.0,1.0,1,1,328.568625107026,1400.0,15330.098570866394,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12654843613900907,15330.098570866394,3,2,3_0,3_1_0,3_3_0,3_1_0 -20200,0,85.0,0.0,1,111,400.0,800.0,0.0,0,86,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,1,124635,2,1,2,0,1,,150.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,450.856507906538,400.0,18835.813817791895,0,6,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0637084233051033,18835.813817791895,5,3,5,5_1,5_3,5_1_0 -20201,1,54.0,271.0,1,111,300.0,700.0,0.0,0,77,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,1,,1,100971,2,1,2,0,1,,250.0,315.0,11,0.0,2.0,4.0,1.0,1.0,1,1,293.302296849474,300.0,5916.528187062814,0,6,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1690180403748634,5916.528187062814,1,1,1_1,1_1_1,1_3_1,1_1_0 -20202,1,40.0,231.0,1,111,600.0,800.0,0.0,62,55,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,71,2,2,1,1,2,2,2,2,2,8.0,1,,1,108048,2,1,1,0,1,,480.0,340.0,43,2.0,0.0,4.0,4.0,2.1,1,1,275.767302778982,600.0,23106.845127339086,4,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.06058810678328287,11003.259584447183,2,1,2_1,2_1_1,2_3_1,2_1_0 -20203,2,53.0,0.0,1,111,0.0,0.0,800.0,0,52,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,50,0,0,0,0,0,0,0,0,1,20.0,1,,1,119543,2,1,1,0,1,,120.0,261.0,12,1.0,1.0,2.0,1.0,1.0,2,2,331.388815249946,0.0,17557.271737182524,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04556516593097845,17557.271737182524,4,2,4_0,4_1_0,4_3_0,4_1_0 -20204,2,78.0,0.0,1,111,200.0,800.0,0.0,77,75,0.0,0.0,276.4348455151861,1000.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,0,,1,,1,103515,2,1,1,0,1,,300.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,252.488352538408,200.0,43293.52709956612,5,5,0,1,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023098141153993015,28862.351399710748,8,4,8,8_1,8_3,8_1_0 -20205,0,93.0,0.0,1,111,474.0,1259.0,0.0,0,86,0.0,0.0,655.1505838709911,1733.0,0.0,2283.389002166938,50,0,0,0,0,0,0,0,0,0,,1,,1,120393,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,318.530282994101,474.0,16038.763084673672,0,6,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1080507262842495,16038.763084673672,4,2,4_0,4_1_0,4_3_0,4_1_0 -20206,0,89.0,0.0,1,111,400.0,1000.0,0.0,0,77,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,33,0,0,0,0,0,0,0,0,0,,1,,1,129769,2,2,1,0,1,,300.0,,11,0.0,5.0,4.0,1.0,1.0,4,3,330.186166134992,400.0,22486.664576865325,0,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06225912229954924,22486.664576865325,6,3,6,6_1,6_3,6_1_0 -20207,2,32.0,0.0,2,111,0.0,0.0,0.0,90,46,0.0,0.0,0.0,3088.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,133151,2,1,0,0,1,,958.0,315.0,43,2.0,0.0,3.0,3.0,1.8,2,2,402.790529224195,0.0,36591.27426463079,1,1,2,3,106.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08439170436283133,20328.48570257266,5,3,5,5_0,5_3,5_0_1 -20208,2,64.0,0.0,1,111,600.0,790.0,0.0,72,72,0.0,0.0,829.3045365455583,1390.0,0.0,1432.7857916694845,70,0,0,0,0,0,0,0,0,0,,1,,1,114464,2,1,1,0,1,,350.0,340.0,41,0.0,2.0,4.0,2.0,1.5,1,1,258.320180757945,600.0,13327.32935684287,5,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10429696473932411,8884.886237895247,1,1,1_0,1_1_0,1_3_0,1_1_0 -20209,1,51.0,315.0,1,111,350.0,0.0,0.0,0,85,0.0,207.03450096389156,483.76097965157567,670.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,106830,2,1,1,0,1,,320.0,315.0,21,1.0,0.0,4.0,2.0,1.5,2,2,353.239366876938,350.0,14446.14010947697,0,7,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.046379170831969574,9630.760072984647,1,1,1_1,1_1_1,1_3_1,1_1_0 -20210,2,69.0,0.0,2,111,289.0,1110.0,0.0,78,78,0.0,0.0,399.44835176944395,1399.0,0.0,2013.1547199406682,20,0,0,0,0,0,0,0,0,0,,1,,2,133346,2,2,1,0,1,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,350.996680243532,289.0,23112.47672068185,5,5,0,1,128.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.060530077191949146,15408.3178137879,3,2,3_0,3_1_0,3_3_0,3_0_1 -20211,2,57.0,0.0,1,111,550.0,1500.0,0.0,52,45,0.0,0.0,760.1958251667618,2050.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,124808,2,1,2,0,1,,360.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,318.52733404048,550.0,79731.77449485159,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025711205011903653,39865.887247425795,9,5,9,9_1,9_3,9_1_0 -20212,2,67.0,0.0,5,111,512.0,1900.0,0.0,77,75,0.0,0.0,707.6732045188764,2412.0,0.0,3445.940511610153,50,0,0,0,0,0,0,0,0,0,,1,,3,112899,2,1,2,0,1,,215.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,337.594929555823,512.0,28470.965802500556,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08471788476484202,18980.643868333704,5,3,5,5_1,5_3,5_0_0 -20213,2,71.0,0.0,5,111,400.0,1200.0,0.0,77,75,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,0,,1,,3,106511,2,1,2,0,1,,350.0,,41,0.0,3.0,5.0,2.0,1.5,3,2,355.300546153551,400.0,45810.931346475925,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03492616179092553,30540.620897650617,8,4,8,8_1,8_3,8_0_0 -20214,0,52.0,0.0,7,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,530.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,8,,5,131656,2,1,0,1,1,,0.0,,43,2.0,3.0,3.0,2.0,1.5,1,1,369.228756999216,0.0,59391.923966692535,1,1,5,0,50.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008923772200025515,39594.61597779502,9,5,9,9_0,9_3,9_0_0 -20215,2,56.0,0.0,1,111,1125.0,1657.0,0.0,85,48,0.0,0.0,1554.946006022922,2782.0,0.0,3005.222856704223,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,124155,2,1,2,0,1,,742.0,,42,3.0,0.0,6.0,4.0,2.5,2,2,332.702255286915,1125.0,55258.69678506696,7,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05034501647443492,22103.478714026784,6,3,6,6_1,6_3,6_1_0 -20216,2,61.0,0.0,2,111,500.0,1500.0,0.0,77,75,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,71,2,2,1,1,1,2,2,2,0,,1,,2,103480,2,1,3,0,1,,300.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,370.414785611281,500.0,29278.54153581792,6,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06830941348472905,19519.02769054528,5,3,5,5_1,5_3,5_0_1 -20217,2,64.0,0.0,6,111,1086.0,1688.0,0.0,75,33,0.0,0.0,1501.0412111474607,2774.0,0.0,3061.4460966304937,50,0,0,0,0,0,0,0,0,2,2.0,1,,4,121848,2,1,2,0,1,,671.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,363.134348504109,1086.0,125734.28003729481,6,5,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02206240015990219,83822.85335819655,10,5,10,10_1,10_3,10_0_0 -20218,2,39.0,0.0,6,111,284.0,1058.0,0.0,52,38,0.0,0.0,392.5374806315643,1342.0,0.0,1918.8447690966009,10,0,0,0,0,0,0,0,0,0,,2,,4,101521,1,2,0,0,1,,350.0,450.0,43,2.0,0.0,3.0,2.0,1.5,3,2,374.160356100204,284.0,15452.26046829952,4,4,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08684813479251968,10301.506978866348,2,1,2_0,2_0_0,2_3_0,2_0_0 -20219,1,52.0,51.0,2,111,312.0,0.0,0.0,0,52,0.0,0.0,431.23835900369033,387.0,129.02452531426437,0.0,20,0,0,0,0,0,0,0,0,1,10.0,8,,2,123028,2,1,0,1,1,,162.0,345.0,12,1.0,0.0,2.0,1.0,1.0,2,2,364.191304478734,312.0,11773.660550458717,0,1,2,3,42.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03286998111941676,11773.660550458717,2,1,2_1,2_0_1,2_3_1,2_0_1 -20220,1,36.0,411.0,2,111,500.0,0.0,0.0,22,22,0.0,0.0,691.0871137879653,680.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120561,2,1,0,1,1,1140.0,450.0,370.0,43,2.0,0.0,4.0,5.0,2.4,2,2,341.042493247972,500.0,13095.539020085798,4,4,2,3,81.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.051926079480731815,5456.474591702417,1,1,1_1,1_0_1,1_3_1,1_0_1 -20221,2,79.0,0.0,2,111,330.0,1200.0,0.0,78,74,0.0,124.22070057833493,456.1174951000571,1650.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,1,,2,121599,1,1,2,0,1,,140.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,350.996680243532,330.0,21896.725961992823,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07535373109495834,14597.817307995216,3,2,3_0,3_1_0,3_3_0,3_0_1 -20222,1,78.0,66.0,2,111,210.0,555.0,0.0,0,75,0.0,0.0,290.25658779094545,765.0,0.0,1006.5773599703341,50,2,2,2,1,2,2,2,2,0,,1,,2,129926,2,3,1,0,1,,210.0,228.0,11,0.0,3.0,2.0,1.0,1.0,1,1,368.122886112877,210.0,12297.79251979079,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.062206286109388206,12297.79251979079,2,1,2_1,2_1_1,2_3_1,2_0_1 -20223,2,83.0,0.0,2,111,350.0,2230.0,0.0,0,72,0.0,0.0,483.76097965157567,2580.0,0.0,4044.445968889811,44,0,0,0,0,0,0,0,0,0,,1,,2,131343,2,1,3,0,2,,360.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,411.207949836992,350.0,19956.715717041687,0,5,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1292797891487152,19956.715717041687,5,3,5,5_1,5_3,5_0_1 -20224,1,33.0,504.0,2,111,1500.0,0.0,0.0,0,85,0.0,0.0,2073.261341363896,1600.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,132766,2,1,2,0,1,,540.0,633.0,31,0.0,0.0,5.0,6.0,2.6999999999999997,1,1,340.979403925898,1500.0,17465.29054808146,0,6,2,3,103.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09161027098834941,6468.62612891906,1,1,1_1,1_1_1,1_3_1,1_0_1 -20225,2,32.0,0.0,1,111,1000.0,0.0,0.0,0,62,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,70,2,2,2,1,2,2,2,2,2,5.0,2,,1,105389,1,3,0,0,1,,160.0,530.0,12,1.0,0.0,4.0,1.0,1.0,2,2,428.532318286884,1000.0,24199.17301301948,0,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.043803149778288114,24199.17301301948,7,4,7,7_0,7_3,7_1_0 -20226,2,74.0,0.0,1,111,407.0,1798.0,0.0,78,75,0.0,0.0,562.5449106234038,2205.0,0.0,3260.9479157237133,31,0,0,0,0,0,0,0,0,0,,1,,1,122471,2,2,2,0,1,,280.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,300.924166928385,407.0,35241.06751316749,5,5,0,1,103.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06256904672868162,23494.045008778325,6,3,6,6_1,6_3,6_1_0 -20227,2,82.0,0.0,5,111,320.0,0.0,0.0,0,77,2987.1697540360015,0.0,442.2957528242978,2495.0,301.05722573328353,0.0,12,2,2,1,1,1,2,2,2,0,,1,,3,121515,2,1,3,0,1,,100.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,349.512248154734,320.0,16599.75816749113,0,5,0,1,55.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.15030339447270946,16599.75816749113,4,2,4_0,4_1_0,4_3_0,4_0_0 -20228,1,39.0,66.0,9,111,500.0,450.0,0.0,0,63,0.0,0.0,691.0871137879653,950.0,0.0,816.143805381352,20,0,0,0,0,0,0,0,0,2,18.0,2,2004.0,6,127337,2,2,0,0,1,,250.0,400.0,32,1.0,0.0,3.0,2.0,1.3,2,2,366.840707963617,500.0,14298.744957001487,0,1,2,3,67.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06643939750354282,10999.034582308836,2,1,2_1,2_0_1,2_3_1,2_0_0 -20229,2,69.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,1493.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,127288,2,1,2,0,1,,433.0,270.0,41,0.0,6.0,2.0,2.0,1.5,2,2,315.862484909941,0.0,20162.886389071795,6,5,2,3,50.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07404693808170243,13441.924259381196,3,2,3_0,3_1_0,3_3_0,3_0_1 -20230,2,75.0,0.0,2,111,300.0,500.0,0.0,0,78,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,70,0,0,0,0,0,0,0,0,0,,1,,2,132437,2,2,5,0,1,,250.0,270.0,11,0.0,3.0,3.0,1.0,1.0,2,2,327.212624764628,300.0,18659.08590137784,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04287455474659269,18659.08590137784,4,2,4_0,4_1_0,4_3_0,4_0_1 -20231,1,49.0,377.0,7,111,420.0,867.0,0.0,0,65,0.0,0.0,580.5131755818909,1287.0,0.0,1572.4370650347382,50,0,0,0,0,0,0,0,0,0,,1,,5,114669,2,1,2,0,1,,413.0,506.0,32,1.0,1.0,5.0,2.0,1.3,1,1,339.046063128906,420.0,12465.48637383931,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10324506893697803,9588.835672184085,1,1,1_1,1_1_1,1_3_1,1_0_0 -20232,2,44.0,0.0,9,111,914.0,0.0,0.0,64,85,0.0,822.962141331469,1263.3072440044004,1709.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,131221,2,1,1,0,1,,411.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,376.330106617718,914.0,52213.86140771755,1,7,1,2,97.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03273077213453128,34809.24093847837,9,5,9,9_1,9_3,9_0_0 -20233,2,55.0,0.0,1,111,300.0,650.0,0.0,0,62,0.0,0.0,414.65226827277917,950.0,0.0,1178.8743855508417,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,117632,2,1,2,0,1,,150.0,373.0,12,1.0,0.0,4.0,1.0,1.0,2,2,275.603012259319,300.0,26713.02801544959,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03556317162736338,26713.02801544959,7,4,7,7_1,7_3,7_1_0 -20234,2,64.0,0.0,1,112,490.0,1000.0,0.0,0,78,0.0,0.0,677.265371512206,1490.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,0,,1,,1,104310,1,3,4,0,1,,250.0,,21,0.0,5.0,5.0,2.0,1.5,2,2,439.028780635143,490.0,27460.736029895394,0,5,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05425928854848964,18307.157353263596,4,2,4_0,4_1_0,4_1_0,4_1_0 -20235,1,47.0,250.0,1,112,200.0,250.0,0.0,0,62,0.0,0.0,276.4348455151861,480.0,51.60981012570575,453.4132252118622,12,0,0,0,0,0,0,0,0,0,,1,,1,110740,2,2,4,0,1,,180.0,380.0,12,1.0,1.0,3.0,1.0,1.0,2,2,451.974286793277,200.0,5536.1956738116705,0,4,2,3,50.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08670213776413001,5536.1956738116705,1,1,1_1,1_1_1,1_1_1,1_1_0 -20236,2,38.0,0.0,1,112,1000.0,0.0,0.0,42,35,2987.1697540360015,103.51725048194578,1382.1742275759307,3100.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,45.0,1,,1,124610,2,2,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,383.015645677761,1000.0,55344.808079381255,1,1,1,2,150.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05601248080133658,26354.670513991074,7,4,7,7_1,7_1,7_1_0 -20237,2,35.0,0.0,1,112,2500.0,0.0,0.0,37,22,0.0,517.5862524097289,3455.435568939826,3000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,128747,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,415.553328592696,2500.0,20143.83696618376,1,1,1,2,150.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1489289257571046,11191.020536768756,2,1,2_0,2_1_0,2_1_0,2_1_0 -20238,2,40.0,0.0,1,112,600.0,1350.0,0.0,55,62,0.0,0.0,829.3045365455583,1950.0,0.0,2448.431416144056,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,123135,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,377.241256539344,600.0,48462.67455033176,1,1,1,2,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040237151954434405,32308.449700221172,8,4,8,8_1,8_1,8_1_0 -20239,2,61.0,0.0,1,112,2510.0,0.0,0.0,65,75,0.0,56.93448776507018,3469.2573112155856,2565.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,108468,2,1,1,0,1,,400.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,474.310995086556,2510.0,35884.02296767493,4,5,0,1,110.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0714802797420625,23922.681978449953,6,3,6,6_1,6_1,6_1_0 -20240,2,56.0,0.0,1,112,643.2,0.0,0.0,37,11,2091.018827825201,0.0,889.0144631768386,2163.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,133239,2,2,4,0,1,,320.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,368.309831067595,643.2,32913.036350510985,1,1,0,1,80.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06571864038810928,16456.518175255493,4,2,4_0,4_1_0,4_1_0,4_1_0 -20241,2,35.0,0.0,2,112,700.0,800.0,0.0,85,52,0.0,0.0,967.5219593031513,1500.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,121551,2,1,1,0,1,,500.0,330.0,42,1.0,0.0,3.0,2.0,1.5,2,2,434.231626161635,700.0,24301.732517588676,7,1,2,3,88.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06172399432486374,16201.155011725785,4,2,4_0,4_1_0,4_1_0,4_0_1 -20242,2,76.0,0.0,1,112,740.0,0.0,0.0,77,78,0.0,724.6207533736205,1022.8089284061887,1560.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107206,2,2,1,0,2,,280.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,387.036494955668,740.0,22851.728019660022,5,5,0,1,90.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06826617219747608,15234.485346440015,3,2,3_0,3_1_0,3_1_0,3_1_0 -20243,2,65.0,0.0,1,112,756.0,1596.0,0.0,86,77,0.0,0.0,1044.9237160474036,2352.0,0.0,2894.5900297525286,60,0,0,0,0,0,0,0,0,0,,1,,1,115522,2,1,2,0,2,,150.0,,41,0.0,1.0,3.0,2.0,1.5,4,3,306.248450512476,756.0,23255.40568293037,6,5,0,1,80.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10113777553777031,15503.603788620247,3,2,3_0,3_1_0,3_1_0,3_1_0 -20244,2,61.0,0.0,1,112,574.0,1550.0,0.0,78,46,0.0,0.0,793.3680066285841,2124.0,0.0,2811.161996313546,41,0,0,0,0,0,0,0,0,0,,1,,1,110802,2,1,2,0,1,,400.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,366.825185480709,574.0,35493.06656715649,6,4,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05984267366645189,23662.04437810433,6,3,6,6_1,6_1,6_1_0 -20245,2,41.0,0.0,1,112,513.0,1202.0,0.0,85,64,0.0,0.0,709.0553787464523,1715.0,0.0,2180.0107868186337,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,113653,2,1,1,0,1,,310.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,4,4,387.110008652752,513.0,27878.355164339322,6,1,1,2,86.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06151725917437723,10325.316727533083,2,1,2_0,2_1_0,2_1_0,2_1_0 -20246,2,68.0,0.0,1,112,310.0,0.0,0.0,0,86,0.0,724.6207533736205,428.47401054853844,1370.0,619.317721508469,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,114630,2,2,2,0,2,,130.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,376.948647187306,310.0,14492.428059969654,0,5,0,1,80.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09453212355658702,14492.428059969654,3,2,3_0,3_1_0,3_1_0,3_1_0 -20247,2,66.0,0.0,2,112,280.0,1000.0,0.0,78,78,0.0,62.110350289167464,387.00878372126056,1340.0,0.0,1813.6529008474488,43,0,0,0,0,0,0,0,0,0,,1,,2,132423,2,2,1,0,1,,240.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,403.456951196004,280.0,24754.156079856446,6,5,0,1,78.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05413232411063358,16502.770719904296,4,2,4_0,4_1_0,4_1_0,4_0_1 -20248,2,79.0,0.0,2,112,245.0,1348.0,0.0,78,78,0.0,0.0,338.632685756103,1593.0,0.0,2444.804110342361,70,0,0,0,0,0,0,0,0,0,,1,,2,100586,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,422.77366733302,245.0,24654.71186656733,5,5,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06461239574087925,16436.474577711553,4,2,4_0,4_1_0,4_1_0,4_0_1 -20249,2,52.0,0.0,6,112,740.0,636.0,0.0,77,48,0.0,517.5862524097289,1022.8089284061887,1876.0,0.0,1153.4832449389776,41,0,0,0,0,0,0,0,0,0,,1,,4,119824,2,1,2,0,1,,300.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,460.81496504939,740.0,37360.119342910824,6,1,0,1,79.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05021397235862887,24906.746228607215,7,4,7,7_1,7_1,7_0_0 -20250,2,43.0,0.0,8,112,0.0,700.0,0.0,46,68,0.0,0.0,0.0,3583.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,110937,2,1,1,0,1,,274.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,429.897321335994,0.0,27301.518324117977,1,1,1,2,90.0,9,1,3,0,1,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13123812227083365,18201.012216078652,4,2,4_0,4_1_0,4_1_0,4_0_0 -20251,0,40.0,0.0,1,112,400.0,0.0,0.0,68,64,1344.2263893162005,0.0,552.8696910303722,1420.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,2,2.0,1,,1,123373,1,2,4,0,2,,250.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,402.160043568051,400.0,35424.13059721525,1,1,5,0,70.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040085669741507464,19680.07255400847,5,3,5,5_1,5_1,5_1_0 -20252,2,81.0,0.0,1,112,245.0,0.0,0.0,0,77,3733.962192545002,0.0,338.632685756103,2945.0,344.06540083803833,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,127113,2,3,4,0,1,,140.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,495.403406749865,245.0,17924.515814648552,0,5,0,1,50.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16430011446073434,17924.515814648552,4,2,4_0,4_1_0,4_1_0,4_1_0 -20253,2,66.0,0.0,6,112,0.0,0.0,0.0,77,78,0.0,0.0,0.0,1253.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130049,1,2,3,0,1,,368.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,437.912241702517,0.0,47376.38700130799,5,5,1,2,120.0,9,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026447774499254378,31584.258000871992,8,4,8,8_1,8_1,8_0_0 -20254,2,38.0,0.0,5,112,464.0,1380.0,0.0,67,48,0.0,0.0,641.3288415952318,1844.0,0.0,2502.8410031694793,12,0,0,0,0,0,0,0,0,2,15.0,1,,3,123317,2,1,1,0,1,,322.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,402.636013361596,464.0,65172.88492300942,1,1,1,2,120.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02829397535767167,31034.70710619496,8,4,8,8_1,8_1,8_0_0 -20255,2,51.0,0.0,5,112,2200.0,0.0,0.0,85,48,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,124728,2,1,2,0,1,,550.0,,42,1.0,1.0,7.0,2.0,1.5,1,1,425.453936964461,2200.0,47348.19313908426,6,1,0,1,120.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04646428626193927,31565.46209272284,8,4,8,8_1,8_1,8_0_0 -20256,2,29.0,0.0,5,112,1400.0,0.0,0.0,85,53,0.0,124.22070057833493,1935.0439186063027,1520.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,90.0,1,,3,102317,1,1,2,0,1,,240.0,,42,1.0,0.0,4.0,3.0,1.8,3,2,399.961773742168,1400.0,37504.43302001995,6,1,1,2,95.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04052854229761641,20835.796122233303,5,3,5,5_1,5_1,5_0_0 -20257,2,54.0,0.0,2,112,2300.0,600.0,0.0,63,63,0.0,0.0,3179.0007234246405,2900.0,0.0,1088.1917405084694,60,0,0,0,0,0,0,0,0,2,25.0,1,,2,131603,2,1,1,0,1,,560.0,,43,3.0,2.0,7.0,3.0,2.0,1,1,451.71996066462,2300.0,32142.122844588877,1,1,0,1,181.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0902242833810902,16071.061422294439,4,2,4_0,4_1_0,4_1_0,4_0_1 -20258,2,82.0,0.0,1,112,480.0,0.0,0.0,0,86,2987.1697540360015,0.0,663.4436292364467,2680.0,344.06540083803833,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,125110,2,1,1,0,1,,480.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,346.258676227373,480.0,11927.447646054177,0,5,0,1,60.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22469182674522944,11927.447646054177,2,1,2_0,2_1_0,2_1_0,2_1_0 -20259,1,26.0,406.0,1,112,500.0,0.0,0.0,0,85,0.0,931.655254337512,691.0871137879653,1580.0,309.6588607542345,0.0,50,2,2,1,1,2,2,2,2,0,,1,,1,108835,2,2,2,0,1,,500.0,390.0,21,1.0,0.0,4.0,3.0,1.8,2,2,386.421360022493,500.0,9137.91745157179,0,6,2,3,70.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.1729059173902067,5076.620806428772,1,1,1_1,1_1_1,1_1_1,1_1_0 -20260,2,42.0,0.0,1,112,1350.0,0.0,0.0,46,46,1493.5848770180007,0.0,1865.9352072275062,2350.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,1,114820,2,2,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,387.499157993891,1350.0,53253.89993051419,1,1,0,1,130.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04412822353041346,23153.86953500617,6,3,6,6_1,6_1,6_1_0 -20261,2,33.0,0.0,2,112,0.0,0.0,0.0,55,62,0.0,0.0,0.0,3143.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,107233,2,1,1,0,1,,186.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,422.77366733302,0.0,49729.65991812129,1,1,1,2,105.0,9,1,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06320171915864446,33153.10661208086,8,4,8,8_1,8_1,8_0_1 -20262,2,41.0,0.0,1,112,300.0,1900.0,0.0,46,62,0.0,0.0,414.65226827277917,2200.0,0.0,3445.940511610153,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,114561,2,1,1,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,363.122540134443,300.0,59056.122473150856,1,1,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037252699768770006,39370.748315433906,9,5,9,9_1,9_1,9_1_0 -20263,2,43.0,0.0,1,112,450.0,2100.0,0.0,34,42,0.0,0.0,621.9784024091688,2550.0,0.0,3808.6710917796427,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,111174,2,1,1,0,1,,390.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,343.947991813484,450.0,63605.39000106984,1,1,1,2,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04009094197767059,30288.2809528904,8,4,8,8_1,8_1,8_1_0 -20264,2,75.0,0.0,1,112,513.0,1470.0,0.0,78,78,0.0,0.0,709.0553787464523,2068.0,146.2277953561663,2666.06976424575,44,0,0,0,0,0,0,0,0,0,,1,,1,115786,2,2,1,0,1,,250.0,,41,0.0,2.0,3.0,2.0,1.5,5,4,383.807181883064,513.0,35447.99684522204,5,5,0,1,100.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05833898059260128,23631.997896814693,6,3,6,6_1,6_1,6_1_0 -20265,2,71.0,0.0,2,112,500.0,0.0,0.0,71,78,1493.5848770180007,0.0,691.0871137879653,1500.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,115811,2,1,1,0,1,,120.0,,41,0.0,0.0,3.0,2.0,1.5,3,3,488.655014247407,500.0,23319.034667707634,7,5,0,1,40.0,9,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06432513272417793,15546.023111805089,3,2,3_0,3_1_0,3_1_0,3_0_1 -20266,2,43.0,0.0,1,111,612.0,1110.0,0.0,0,52,0.0,0.0,845.8906272764696,1722.0,0.0,2013.1547199406682,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,124919,1,3,1,0,1,,578.0,290.0,22,4.0,0.0,5.0,4.0,2.5,2,2,396.931795068816,612.0,58164.14353651809,0,1,2,3,89.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029605868758625326,23265.657414607234,6,3,6,6_1,6_2,6_1_0 -20267,2,90.0,0.0,2,111,26.0,119.0,0.0,0,78,0.0,0.0,35.936529916974195,145.0,0.0,215.8246952008464,71,0,0,0,0,0,0,0,0,0,,1,,2,116378,2,1,2,0,1,,441.0,,21,0.0,2.0,5.0,2.0,1.5,1,1,419.273783099823,26.0,50307.2362661247,0,5,0,1,93.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002882289125026699,33538.1575107498,8,4,8,8_1,8_2,8_0_1 -20268,1,58.0,202.0,6,111,300.0,0.0,0.0,0,56,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,2,,4,114098,1,1,0,0,1,,85.0,48.0,12,1.0,3.0,1.0,1.0,1.0,2,2,687.432320890794,300.0,5951.288011078694,0,1,2,3,38.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050409255852099794,5951.288011078694,1,1,1_1,1_0_1,1_2_1,1_0_0 -20269,1,62.0,230.0,1,111,1104.0,0.0,0.0,0,78,0.0,0.0,1525.9203472438273,1209.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,110862,1,1,0,0,2,,0.0,172.0,11,0.0,2.0,1.0,1.0,1.0,2,2,976.864811633117,1104.0,9755.237381655916,0,5,2,3,35.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12393342700952058,9755.237381655916,2,1,2_1,2_0_1,2_2_1,2_1_0 -20270,2,32.0,0.0,1,111,917.0,0.0,0.0,22,63,2195.569769216461,0.0,1267.4537666871283,2429.0,72.25373417598806,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,111366,1,1,1,0,2,,384.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,401.892194022988,917.0,42648.02914053073,1,1,1,2,130.0,6,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05695456622382557,20308.585305014632,5,3,5,5_1,5_2,5_1_0 -20271,2,55.0,0.0,5,111,601.0,1000.0,0.0,45,65,0.0,0.0,830.6867107731342,1601.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,3,118310,2,2,3,0,1,,279.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,510.754202020995,601.0,46493.69259745507,1,4,0,1,130.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03443477836577846,30995.795064970047,8,4,8,8_1,8_2,8_0_0 -20272,1,24.0,333.0,1,111,312.0,0.0,0.0,0,56,0.0,0.0,431.23835900369033,412.0,172.03270041901916,0.0,50,1,2,2,1,1,1,2,2,0,,8,,1,131973,1,1,0,0,2,408.0,272.0,310.0,32,1.0,0.0,3.0,2.0,1.3,3,3,566.513131995154,312.0,4823.507641365358,0,4,2,3,72.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08541501965639635,3710.3904933579674,1,1,1_1,1_0_1,1_2_1,1_1_0 -20273,1,36.0,255.0,2,111,586.0,0.0,0.0,85,67,0.0,0.0,809.9540973594953,632.0,79.13504219274881,0.0,44,0,0,0,0,0,0,0,0,2,30.0,2,,2,104751,2,1,0,1,2,612.0,312.0,389.0,42,1.0,2.0,4.0,2.0,1.5,2,2,532.60127140023,586.0,19714.39770307058,6,1,2,3,100.0,6,4,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03205778890732046,13142.931802047053,2,1,2_1,2_0_1,2_2_1,2_0_1 -20274,2,82.0,0.0,1,111,238.0,1194.0,0.0,0,77,0.0,0.0,328.95746616307144,1432.0,0.0,2165.501563611854,31,0,0,0,0,0,0,0,0,0,,1,,1,112097,2,1,4,0,2,,140.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,475.321160812787,238.0,22788.58790751797,0,5,0,1,60.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06283847010667924,22788.58790751797,6,3,6,6_1,6_2,6_1_0 -20275,1,49.0,585.0,1,111,1000.0,1000.0,0.0,85,85,0.0,0.0,1382.1742275759307,2197.0,338.90441982546776,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,131574,1,2,1,0,2,,507.0,527.0,41,0.0,2.0,4.0,7.0,3.1999999999999993,3,3,474.057432751465,1000.0,36137.66338550993,6,7,2,3,60.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06079529759749017,11293.019807971856,2,1,2_1,2_1_1,2_2_1,2_1_0 -20276,2,67.0,0.0,2,111,188.0,836.0,0.0,0,77,0.0,269.144851253059,259.84875478427494,1284.0,0.0,1516.2138251084673,42,0,0,0,0,0,0,0,0,0,,1,,2,100658,2,2,2,0,1,,208.0,,11,0.0,5.0,5.0,1.0,1.0,3,2,481.688978131315,188.0,14420.972446134658,0,5,0,1,120.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0890369914231518,14420.972446134658,3,2,3_0,3_1_0,3_2_0,3_0_1 -20277,2,63.0,0.0,2,111,500.0,1360.0,0.0,0,77,0.0,0.0,691.0871137879653,1860.0,0.0,2466.5679451525307,41,0,0,0,0,0,0,0,0,0,,1,,2,105847,2,1,2,0,1,,250.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,597.270905425939,500.0,13529.226165415095,0,5,0,1,75.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1374801468508774,13529.226165415095,3,2,3_0,3_1_0,3_2_0,3_0_1 -20278,1,54.0,146.0,1,111,468.0,840.0,0.0,0,46,0.0,0.0,646.8575385055356,1308.0,0.0,1523.468436711857,31,2,2,2,2,1,2,2,2,0,,2,,1,108289,1,2,0,0,1,,255.0,299.0,32,1.0,1.0,3.0,2.0,1.5,2,2,508.534542002023,468.0,17245.361275829826,0,4,2,3,67.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07584648295151826,11496.907517219885,2,1,2_1,2_0_1,2_2_1,2_1_0 -20279,2,57.0,0.0,9,111,496.0,569.0,0.0,0,78,0.0,0.0,685.5584168776616,1065.0,0.0,1031.9685005821984,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129906,1,3,1,0,1,,212.0,352.0,11,0.0,2.0,3.0,1.0,1.0,1,1,555.702871204835,496.0,15616.654585960965,0,5,2,3,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06819642415331463,15616.654585960965,3,2,3_0,3_1_0,3_2_0,3_0_0 -20280,1,54.0,305.0,5,111,206.0,710.0,0.0,21,56,0.0,0.0,284.72789088064167,916.0,0.0,1287.6935596016888,71,0,0,0,0,0,0,0,0,0,,1,,3,122387,1,1,2,0,1,,297.0,496.0,43,2.0,2.0,5.0,2.0,1.5,5,4,497.710288743482,206.0,8338.005536615057,4,4,2,3,68.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10985840630322541,5558.670357743372,1,1,1_1,1_1_1,1_2_1,1_0_0 -20281,1,49.0,340.0,1,111,924.0,1464.0,0.0,0,67,0.0,0.0,1277.1289862801598,2388.0,0.0,2655.1878468406653,50,0,0,0,0,0,0,0,0,0,,1,,1,111040,1,1,2,0,1,,408.0,293.0,22,2.0,5.0,5.0,3.0,2.0,2,2,425.975356056565,924.0,13438.938164650455,0,1,2,3,89.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17769261014098217,6719.469082325228,1,1,1_1,1_1_1,1_2_1,1_1_0 -20282,2,38.0,0.0,1,111,1661.0,0.0,0.0,0,56,0.0,0.0,2295.791392003621,1693.0,55.050464134086134,0.0,70,2,2,2,2,1,2,2,2,2,35.0,2,,1,133504,1,2,0,0,1,,220.0,434.0,12,1.0,1.0,3.0,1.0,1.0,2,2,616.366587287753,1661.0,19949.99468145803,0,1,2,3,50.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.08486217801218324,19949.99468145803,5,3,5,5_0,5_2,5_1_0 -20283,2,88.0,0.0,1,111,500.0,1651.0,0.0,77,74,0.0,0.0,691.0871137879653,2151.0,0.0,2994.340939299138,50,1,2,2,2,1,2,2,2,0,,1,,1,130526,2,1,2,0,1,,256.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,442.112476657308,500.0,33746.832570062346,5,5,0,1,130.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06373931525378786,22497.888380041564,6,3,6,6_1,6_2,6_1_0 -20284,2,62.0,0.0,2,111,363.0,775.0,0.0,72,74,0.0,0.0,501.7292446100628,1138.0,0.0,1405.580998156773,71,0,0,0,0,0,0,0,0,0,,2,,2,107001,2,1,0,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,709.632729411925,363.0,28983.08269268163,6,5,0,1,110.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039264284343616444,19322.05512845442,5,3,5,5_0,5_2,5_0_1 -20285,2,66.0,0.0,1,111,346.5,728.7,0.0,56,21,0.0,0.0,478.92336985505995,1165.0,154.82943037711726,1321.608868847536,50,0,0,0,0,0,0,0,0,0,,1,,1,102650,1,3,4,0,2,,237.0,390.0,43,2.0,2.0,4.0,2.0,1.5,3,3,441.64711208731,346.5,24626.9372437023,1,1,2,3,50.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04730592312277559,16417.9581624682,4,2,4_0,4_1_0,4_2_0,4_1_0 -20286,1,64.0,55.0,1,111,1255.0,0.0,0.0,0,78,0.0,0.0,1734.6286556077928,1305.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124491,2,1,1,0,1,,372.0,485.0,11,0.0,0.0,3.0,1.0,1.0,3,2,515.756633814894,1255.0,17929.664378083784,0,5,2,3,50.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07278440758741468,17929.664378083784,4,2,4_1,4_1_1,4_2_1,4_1_0 -20287,2,77.0,0.0,1,111,220.0,1224.0,0.0,0,78,0.0,0.0,304.0783300667047,1444.0,0.0,2219.9111506372774,60,2,2,2,2,1,2,2,2,0,,1,,1,130549,2,2,3,0,2,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,434.619518241951,220.0,16006.163709716522,0,5,0,1,85.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0902152462131461,16006.163709716522,4,2,4_0,4_1_0,4_2_0,4_1_0 -20288,2,54.0,0.0,1,111,600.0,1300.0,0.0,77,63,0.0,38.30138267831994,829.3045365455583,1937.0,0.0,2357.7487711016834,10,0,0,0,0,0,0,0,0,0,,1,,1,108665,2,1,1,0,1,,250.0,600.0,42,1.0,1.0,4.0,2.0,1.5,1,1,441.64711208731,600.0,27945.138483520503,5,4,2,3,70.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06931438186081154,18630.092322347,4,2,4_0,4_1_0,4_2_0,4_1_0 -20289,2,83.0,0.0,7,111,0.0,0.0,0.0,0,71,0.0,0.0,0.0,387.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,123123,2,1,0,1,1,,0.0,1558.0,11,0.0,2.0,1.0,1.0,1.0,4,2,914.205577053709,0.0,33695.22404271041,0,5,2,3,34.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011485307220674888,33695.22404271041,9,5,9,9_0,9_2,9_0_0 -20290,2,44.0,0.0,9,111,828.0,695.0,0.0,55,67,0.0,0.0,1144.4402604328704,1523.0,0.0,1260.488766088977,60,0,0,0,0,0,0,0,0,1,10.0,1,2005.0,6,111159,1,1,2,0,1,,732.0,514.0,43,3.0,0.0,5.0,5.0,3.0,1,1,479.094852359683,828.0,39417.59642070927,1,1,2,3,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038637566424518065,13139.19880690309,2,1,2_0,2_1_0,2_2_0,2_0_0 -20291,2,70.0,0.0,1,111,936.0,0.0,0.0,0,78,0.0,0.0,1293.7150770110711,966.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105294,2,1,1,0,1,,152.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,473.196887681974,936.0,10123.812580228796,0,5,0,1,51.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09541859772142963,10123.812580228796,2,1,2_0,2_1_0,2_2_0,2_1_0 -20292,2,63.0,0.0,2,111,0.0,0.0,0.0,78,75,0.0,0.0,0.0,1828.0,129.02452531426437,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,114123,2,1,3,0,1,,350.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,468.096619993158,0.0,40444.810483803776,5,5,0,1,68.0,6,4,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04519739314224323,26963.206989202517,7,4,7,7_1,7_2,7_0_1 -20293,2,63.0,0.0,1,111,705.0,831.0,0.0,86,78,0.0,0.0,974.432830441031,1536.0,0.0,1507.14556060423,60,0,0,0,0,0,0,0,0,0,,1,,1,113488,2,1,2,0,1,,634.0,,41,0.0,2.0,3.0,3.0,2.0,1,1,377.667648424583,705.0,22834.777153282157,5,5,0,1,75.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06726581957377338,11417.388576641079,2,1,2_0,2_1_0,2_2_0,2_1_0 -20294,1,35.0,400.0,1,111,640.0,865.0,0.0,85,21,0.0,258.79312620486445,884.5915056485956,1755.0,0.0,1568.8097592330432,44,0,0,0,0,0,0,0,0,0,,1,,1,113874,2,1,2,0,1,,390.0,,42,1.0,0.0,4.0,5.0,2.4,1,1,371.090697367215,640.0,25199.30438572219,7,1,1,2,79.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06964477959932795,10499.71016071758,2,1,2_1,2_1_1,2_2_1,2_1_0 -20295,1,45.0,406.0,9,111,331.0,1252.0,0.0,0,54,0.0,0.0,457.499669327633,1583.0,0.0,2270.693431861006,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,118238,1,3,3,0,1,,458.0,405.0,32,1.0,3.0,5.0,3.0,1.8,4,3,490.857617346164,331.0,9770.011306906217,0,4,2,3,93.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.16202642456319474,5427.784059392343,1,1,1_1,1_1_1,1_2_1,1_0_0 -20296,2,48.0,0.0,2,111,463.0,1742.0,0.0,52,62,0.0,232.913813584378,639.9466673676559,2430.0,0.0,3159.383353276256,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,122690,2,1,3,0,1,,553.0,,43,2.0,2.0,4.0,3.0,2.0,1,1,531.557117639219,463.0,31524.29057907947,1,1,1,2,115.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07708341584735379,15762.145289539734,3,2,3_0,3_1_0,3_2_0,3_0_1 -20297,1,65.0,80.0,2,111,450.0,2022.0,0.0,77,78,0.0,0.0,621.9784024091688,2472.0,0.0,3667.2061655135417,50,0,0,0,0,0,0,0,0,0,,1,,2,111481,1,3,3,0,1,,372.0,330.0,41,0.0,2.0,5.0,2.0,1.5,1,1,503.881317364063,450.0,12858.635729585161,6,5,2,3,77.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.19224434473343233,8572.42381972344,1,1,1_1,1_1_1,1_2_1,1_0_1 -20298,2,73.0,0.0,9,111,597.0,1045.0,0.0,77,75,0.0,0.0,825.1580138628306,1642.0,0.0,1895.267281385584,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,111719,2,1,2,0,1,,277.0,860.0,41,0.0,3.0,6.0,2.0,1.5,2,2,605.069160773762,597.0,30480.67651227716,5,5,2,3,73.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05387019541179235,20320.451008184773,5,3,5,5_1,5_2,5_0_0 -20299,2,70.0,0.0,2,111,400.0,1100.0,0.0,86,78,0.0,0.0,552.8696910303722,1500.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,1,,2,122314,2,2,5,0,1,,240.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,531.270550774674,400.0,21074.093744231104,6,5,0,1,90.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0711774379579485,14049.395829487403,3,2,3_0,3_1_0,3_2_0,3_0_1 -20300,2,53.0,0.0,2,111,0.0,0.0,1100.0,77,63,0.0,0.0,562.0046683212776,1412.0,536.7420253073398,1257.5703521178948,70,2,2,2,1,1,2,2,2,0,,1,,2,112868,2,3,1,0,1,,180.0,330.0,42,1.0,4.0,4.0,2.0,1.5,1,1,492.468846644359,0.0,30199.15216910448,7,1,2,3,70.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.046756279517163386,20132.76811273632,5,3,5,5_1,5_2,5_0_1 -20301,2,56.0,0.0,2,111,360.0,1291.0,0.0,62,52,0.0,0.0,497.582721927335,1651.0,0.0,2341.4258949940563,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,125077,2,2,2,0,1,,432.0,414.0,43,2.0,3.0,4.0,2.0,1.5,1,1,518.572223649117,360.0,36979.65735202722,1,1,2,3,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04464616814275301,24653.104901351482,7,4,7,7_1,7_2,7_0_1 -20302,1,33.0,297.0,9,111,539.0,573.0,0.0,67,63,0.0,0.0,744.9919086634266,1112.0,0.0,1039.2231121855882,41,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,106488,1,1,0,0,1,,383.0,286.0,43,2.0,0.0,1.0,2.0,1.5,1,1,691.652623053618,539.0,22497.899966822544,4,1,2,3,36.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04942683546641494,14998.599977881697,3,2,3_1,3_0_1,3_2_1,3_0_0 -20303,2,57.0,0.0,7,111,600.0,0.0,0.0,72,52,4480.754631054002,0.0,829.3045365455583,3600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,110415,2,1,1,0,1,,300.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,537.717757730415,600.0,36860.49290370454,5,1,0,1,120.0,6,4,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09766554151635326,24573.661935803026,7,4,7,7_1,7_2,7_0_0 -20304,2,44.0,0.0,5,111,386.0,1343.0,0.0,0,85,0.0,0.0,533.5192518443092,1729.0,0.0,2435.735845838124,70,0,0,0,0,0,0,0,0,0,,1,,3,118625,2,2,2,0,2,,240.0,,21,0.0,1.0,4.0,2.0,1.5,1,1,533.083564332852,386.0,24128.909867587994,0,7,0,1,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0716567805793224,16085.939911725329,4,2,4_0,4_1_0,4_2_0,4_0_0 -20305,2,42.0,0.0,2,111,500.0,0.0,0.0,55,53,0.0,776.3793786145933,691.0871137879653,1367.0,201.27825949025242,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,103711,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,583.878928179091,500.0,45304.065028766614,1,1,1,2,81.0,6,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03017389276507526,25168.92501598145,7,4,7,7_1,7_2,7_0_1 -20306,2,57.0,0.0,6,111,490.0,1400.0,0.0,56,38,0.0,155.27587572291867,677.265371512206,2040.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,180.0,1,,4,122499,2,1,2,0,1,,324.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,553.722173363637,490.0,63341.655758130524,1,1,0,1,110.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0322062941927145,42227.77050542035,9,5,9,9_1,9_2,9_0_0 -20307,2,27.0,0.0,7,120,0.0,0.0,0.0,46,62,0.0,0.0,0.0,836.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,118458,1,1,2,0,1,,325.0,520.0,43,2.0,0.0,6.0,2.0,1.5,2,2,291.383106435029,0.0,33321.69387540419,1,1,2,3,120.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02508876058720047,22214.462583602795,6,3,6,6_1,6_0,6_0_0 -20308,2,51.0,0.0,1,120,2500.0,0.0,0.0,0,11,0.0,0.0,3455.435568939826,2620.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,131257,1,2,4,0,1,,200.0,,22,1.0,4.0,8.0,3.0,2.0,1,1,326.829529709111,2500.0,40859.932663519874,0,1,0,1,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06412149578354935,20429.966331759937,5,3,5,5_1,5_0,5_1_0 -20309,0,35.0,0.0,2,120,0.0,0.0,0.0,52,11,0.0,0.0,0.0,1668.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104745,2,1,2,0,1,,239.0,,43,2.0,0.0,3.0,2.0,1.5,5,4,287.231135346012,0.0,15527.447602638502,4,1,5,0,100.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10742267774367277,10351.631735092335,2,1,2_0,2_1_0,2_0_0,2_0_1 -20310,1,41.0,148.0,1,120,1000.0,0.0,0.0,85,62,0.0,0.0,1382.1742275759307,1090.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,104365,2,2,1,0,1,,186.0,,42,1.0,0.0,5.0,5.0,2.4,1,1,206.188185809799,1000.0,33488.49901669778,7,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03254848774967527,13953.54125695741,3,2,3_1,3_1_1,3_0_1,3_1_0 -20311,2,91.0,0.0,1,120,120.0,0.0,0.0,0,71,0.0,0.0,165.86090730911167,120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104616,1,3,4,0,2,,100.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,303.393445874224,120.0,11188.332205062796,0,5,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010725459148030945,11188.332205062796,2,1,2_0,2_1_0,2_0_0,2_1_0 -20312,1,33.0,247.0,1,120,900.0,0.0,0.0,85,65,746.7924385090004,1035.1725048194578,1243.9568048183376,2460.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,116899,2,1,3,0,1,,200.0,473.0,42,1.0,0.0,5.0,5.0,2.4,2,1,239.854675435378,900.0,26781.09426780822,6,1,2,3,130.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09185584335726726,11158.789278253425,2,1,2_1,2_1_1,2_0_1,2_1_0 -20313,1,38.0,236.0,1,120,1250.0,0.0,0.0,85,62,0.0,828.1380038555662,1727.717784469913,2270.0,378.4719409218422,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121657,1,3,4,0,1,,250.0,450.0,42,1.0,0.0,6.0,5.0,2.4,1,1,239.854675435378,1250.0,25417.704589577348,6,1,2,3,90.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08930782840755905,10590.710245657228,2,1,2_1,2_1_1,2_0_1,2_1_0 -20314,2,67.0,0.0,1,120,671.0,0.0,0.0,71,71,2987.1697540360015,0.0,927.4389067034494,2791.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108138,2,2,1,0,1,,170.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,282.388581923123,671.0,25131.18655621849,6,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1110572313709315,16754.124370812326,4,2,4_0,4_1_0,4_0_0,4_1_0 -20315,2,65.0,0.0,1,120,340.0,0.0,0.0,0,71,5227.547069563002,0.0,469.9392373758164,3960.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106203,2,2,4,0,1,,150.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,258.545062947833,340.0,13448.00827586853,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2944673976075648,13448.00827586853,3,2,3_0,3_1_0,3_0_0,3_1_0 -20316,1,35.0,356.0,2,120,420.0,0.0,0.0,0,67,0.0,828.1380038555662,580.5131755818909,1220.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,1,,2,113817,1,2,3,0,1,,180.0,,32,1.0,0.0,5.0,4.0,1.9,1,1,263.65446168187,420.0,12448.392784481845,0,4,0,1,95.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.09800461964221203,6551.785676043076,1,1,1_1,1_1_1,1_0_1,1_0_1 -20317,2,61.0,0.0,5,300,1400.0,0.0,0.0,68,63,0.0,0.0,1935.0439186063027,1490.0,154.82943037711726,0.0,42,2,2,2,2,1,2,2,2,2,20.0,1,,3,125581,1,1,2,0,1,,250.0,433.0,43,2.0,3.0,3.0,2.0,1.5,2,2,199.977100269875,1400.0,18291.595503956538,1,1,2,3,80.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.08145817567842606,12194.397002637692,2,1,2_0,2_1_0,2_0_0,2_0_0 -20318,2,87.0,0.0,5,300,160.0,0.0,0.0,0,71,0.0,310.55175144583734,221.1478764121489,460.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,117064,2,1,2,0,1,,60.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,354.935274797162,160.0,12321.0,0,5,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03733463192922652,12321.0,2,1,2_0,2_1_0,2_0_0,2_0_0 -20319,2,45.0,0.0,2,300,2500.0,0.0,0.0,65,64,0.0,0.0,3455.435568939826,2640.0,240.84578058662683,0.0,60,1,2,2,1,1,2,2,2,2,45.0,1,,2,111005,2,1,3,0,1,,410.0,,43,2.0,0.0,4.0,5.0,2.8,5,4,226.881684005162,2500.0,49398.258359062944,1,1,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.053443179733393326,17642.235128236767,4,2,4_0,4_1_0,4_0_0,4_0_1 -20320,2,42.0,0.0,9,300,550.0,0.0,0.0,46,62,0.0,0.0,760.1958251667618,1192.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,115607,1,1,1,0,1,,120.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,261.538976082914,550.0,47900.10251535478,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024885124194001344,22809.57262635942,6,3,6,6_1,6_0,6_0_0 -20321,2,50.0,0.0,6,300,1500.0,0.0,0.0,55,21,2987.1697540360015,258.79312620486445,2073.261341363896,3830.0,137.62616033521533,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,4,129106,2,1,1,0,1,,180.0,,43,3.0,2.0,7.0,3.0,2.0,1,1,291.219181551208,1500.0,77250.26638323966,1,1,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0495791170608955,38625.13319161983,9,5,9,9_1,9_0,9_0_0 -20322,2,74.0,0.0,1,300,340.0,0.0,0.0,0,77,0.0,517.5862524097289,469.9392373758164,840.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,103943,2,1,3,0,2,,84.0,,11,0.0,4.0,4.0,1.0,1.0,5,4,254.428694996389,340.0,15503.299725497895,0,5,0,1,60.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05418201382112691,15503.299725497895,3,2,3_0,3_1_0,3_0_0,3_1_0 -20323,2,44.0,0.0,1,300,360.0,0.0,0.0,0,65,0.0,0.0,497.582721927335,420.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,1,117815,1,2,4,0,2,,70.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,252.776793238364,360.0,21075.80674323155,0,1,1,2,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01992806278387811,21075.80674323155,5,3,5,5_1,5_0,5_1_0 -20324,2,52.0,0.0,1,300,800.0,0.0,0.0,64,22,4182.037655650402,0.0,1105.7393820607444,3690.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109563,2,2,4,0,1,,150.0,,43,3.0,1.0,8.0,3.0,2.0,2,2,291.219181551208,800.0,62110.92477625407,1,1,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05940983833830698,31055.462388127035,8,4,8,8_1,8_0,8_1_0 -20325,2,73.0,0.0,1,111,420.0,0.0,0.0,0,86,0.0,362.31037668681023,580.5131755818909,890.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,109108,1,3,2,0,2,,240.0,,11,0.0,8.0,2.0,1.0,1.0,2,2,829.410153345221,420.0,17150.11774616164,0,6,0,1,60.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051894687440218336,17150.11774616164,4,2,4_0,4_1_0,4_3_0,4_1_0 -20326,0,67.0,0.0,1,111,310.0,1510.0,0.0,0,86,0.0,0.0,428.47401054853844,1835.0,25.804905062852875,2738.6158802796476,41,0,0,0,0,0,0,0,0,0,,1,,1,108450,2,1,2,0,1,,240.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,879.340229365458,310.0,10377.567230453045,0,6,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17682371592979704,10377.567230453045,2,1,2_0,2_1_0,2_3_0,2_1_0 -20327,2,81.0,0.0,2,111,236.0,1896.0,0.0,0,77,0.0,0.0,326.1931177079196,2132.0,0.0,3438.685900006763,50,0,0,0,0,0,0,0,0,0,,1,,2,110674,2,2,3,0,1,,180.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1031.79488518387,236.0,20770.020778828337,0,6,0,1,81.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10264794738064141,20770.020778828337,5,3,5,5_1,5_3,5_0_1 -20328,1,30.0,270.0,5,111,600.0,0.0,0.0,0,65,0.0,0.0,829.3045365455583,600.0,0.0,0.0,44,2,2,2,2,1,2,2,2,2,15.0,2,,3,130584,2,2,0,0,2,,240.0,449.0,32,1.0,0.0,3.0,2.0,1.3,2,2,885.777681577099,600.0,11039.91373408353,0,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.05434825076101997,8492.241333910408,1,1,1_1,1_0_1,1_3_1,1_0_0 -20329,2,67.0,0.0,2,111,700.0,900.0,0.0,0,78,0.0,621.1035028916747,967.5219593031513,2290.0,154.82943037711726,1632.287610762704,70,0,0,0,0,0,0,0,0,0,,1,,2,115495,2,1,1,0,1,,250.0,,11,0.0,3.0,6.0,1.0,1.0,3,3,1129.66689444794,700.0,24318.997216987627,0,5,0,1,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09416506690499389,24318.997216987627,7,4,7,7_1,7_3,7_0_1 -20330,1,34.0,127.0,7,111,1300.0,0.0,0.0,47,48,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,123326,1,1,2,0,1,,600.0,730.0,43,2.0,0.0,4.0,4.0,2.1,3,2,241.796756215105,1300.0,41814.68217171048,1,1,2,3,82.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.031089558319769044,19911.75341510023,5,3,5,5_1,5_3,5_0_0 -20331,1,55.0,377.0,8,111,0.0,0.0,843.0,0,77,0.0,465.827627168756,430.6999412680336,1371.0,134.18550632683494,963.7561880321683,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,131585,2,2,1,0,1,,274.0,600.0,31,1.0,3.0,3.0,2.0,1.5,2,2,270.884295686246,0.0,5674.617676011468,0,6,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.24160217979013487,3783.0784506743116,1,1,1_1,1_1_1,1_3_1,1_0_0 -20332,2,52.0,0.0,1,111,630.0,0.0,0.0,54,47,0.0,598.3297077856466,870.7697633728362,1388.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,119134,2,2,1,0,1,,300.0,160.0,43,2.0,4.0,4.0,2.0,1.5,2,2,218.934182154569,630.0,44373.140642780934,1,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03128018391066519,29582.093761853957,8,4,8,8_1,8_3,8_1_0 -20333,2,58.0,0.0,5,111,730.0,1130.0,0.0,78,62,0.0,155.27587572291867,1008.9871861304293,2062.0,89.45700421788997,2049.4277779576173,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,117153,1,1,2,0,2,,200.0,,42,2.0,0.0,5.0,3.0,2.0,4,4,268.904472454184,730.0,41353.36274440556,6,1,0,1,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049862934067652215,20676.68137220278,5,3,5,5_1,5_3,5_0_0 -20334,2,45.0,0.0,6,111,0.0,0.0,875.0,52,65,0.0,0.0,447.04916798283443,875.0,0.0,1000.3400528210525,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,103781,2,1,2,0,1,,720.0,478.0,43,2.0,0.0,4.0,5.0,2.8,1,1,859.26723283605,0.0,43911.70201185044,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01992635128931837,15682.750718518015,3,2,3_0,3_1_0,3_3_0,3_0_0 -20335,1,37.0,480.0,5,111,300.0,2400.0,0.0,67,85,0.0,0.0,414.65226827277917,2700.0,0.0,4352.7669620338775,70,0,0,0,0,0,0,0,0,0,,1,,3,110665,2,2,2,0,1,,1200.0,480.0,42,1.0,0.0,4.0,5.0,2.4,1,1,822.90146478838,300.0,21719.585191579976,4,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12431176637050638,9049.827163158323,1,1,1_1,1_1_1,1_3_1,1_0_0 -20336,1,53.0,19.0,5,111,350.0,900.0,0.0,85,52,0.0,0.0,483.76097965157567,1250.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,8,,3,114023,1,3,0,0,1,,200.0,422.0,42,1.0,0.0,3.0,2.0,1.5,3,3,271.446375727887,350.0,12968.081353007761,6,4,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09639051190175332,8645.38756867184,1,1,1_1,1_0_1,1_3_1,1_0_0 -20337,2,77.0,0.0,1,111,600.0,1300.0,0.0,78,77,0.0,0.0,829.3045365455583,1900.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,1,119180,2,1,1,0,1,,320.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,752.856476839732,600.0,27184.249922539395,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06989341274502647,18122.83328169293,4,2,4_0,4_1_0,4_3_0,4_1_0 -20338,1,36.0,406.0,1,111,250.0,700.0,0.0,85,85,0.0,0.0,345.54355689398267,1010.0,103.2196202514115,1269.5570305932142,20,0,0,0,0,0,0,0,0,0,,1,,1,100463,2,1,1,0,1,,350.0,365.0,41,0.0,0.0,4.0,5.0,2.4,1,1,181.666608754633,250.0,15399.563843526083,6,7,2,3,74.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06558627310893614,6416.484934802535,1,1,1_1,1_1_1,1_3_1,1_1_0 -20339,2,42.0,0.0,9,111,990.0,1210.0,0.0,42,48,0.0,0.0,1368.3524853001713,2200.0,0.0,2194.5200100254133,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,106584,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.3,2,1,852.795679908765,990.0,38920.167309078206,1,1,1,2,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05652596461184394,16921.811873512266,4,2,4_0,4_1_0,4_3_0,4_0_0 -20340,1,50.0,219.0,1,111,300.0,700.0,0.0,85,85,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,43,2,2,2,1,2,2,2,2,0,,1,,1,125699,2,2,5,0,1,,210.0,408.0,41,0.0,0.0,4.0,5.0,2.4,2,2,654.945317707534,300.0,24127.7375430024,6,5,2,3,68.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.04144607417988194,10053.223976251,2,1,2_1,2_1_1,2_3_1,2_1_0 -20341,2,47.0,0.0,1,111,300.0,1400.0,0.0,67,43,0.0,0.0,414.65226827277917,1700.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,127576,2,1,3,0,1,,370.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,644.188265286664,300.0,30836.43375134373,1,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055129591628795944,14684.016072068443,3,2,3_0,3_1_0,3_3_0,3_1_0 -20342,2,62.0,0.0,5,111,460.0,0.0,0.0,74,74,2240.377315527001,0.0,635.800144684928,1960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128987,1,1,2,0,2,,340.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,905.898746471766,460.0,66261.58678432189,5,5,0,1,110.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02957973231730325,44174.391189547925,10,5,10,10_1,10_3,10_0_0 -20343,1,56.0,434.0,9,111,880.0,1122.0,0.0,0,77,0.0,0.0,1216.313320266819,2002.0,0.0,2034.9185547508378,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,128681,2,3,1,0,1,,500.0,578.0,31,2.0,5.0,4.0,4.0,2.5,2,2,782.103009247409,880.0,15203.963122658159,0,6,2,3,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13167619415075138,6081.585249063263,1,1,1_1,1_1_1,1_3_1,1_0_0 -20344,1,37.0,30.0,7,111,1120.0,0.0,0.0,0,85,0.0,0.0,1548.0351348850422,1180.0,103.2196202514115,0.0,50,2,2,2,2,1,2,2,2,0,,8,,5,111818,1,3,0,0,1,,720.0,450.0,11,0.0,0.0,2.0,1.0,1.0,3,3,1199.0059669281,1120.0,15197.728453545085,0,7,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07764318224311662,15197.728453545085,3,2,3_1,3_0_1,3_3_1,3_0_0 -20345,2,80.0,0.0,2,111,320.0,0.0,0.0,0,72,3733.962192545002,0.0,442.2957528242978,2820.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124358,2,1,2,0,2,,100.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1061.29997023931,320.0,10752.954283231278,0,5,0,1,106.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.26225350966084326,10752.954283231278,2,1,2_0,2_1_0,2_3_0,2_0_1 -20346,2,75.0,0.0,1,111,1200.0,0.0,0.0,77,77,896.1509262108004,0.0,1658.6090730911167,1880.0,137.62616033521533,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,130834,1,1,2,0,2,,780.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,833.015532373215,1200.0,28893.900112938143,5,5,0,1,90.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06506563643715829,19262.600075292095,5,3,5,5_1,5_3,5_1_0 -20347,1,37.0,404.0,5,111,1500.0,0.0,0.0,0,42,0.0,103.51725048194578,2073.261341363896,1690.0,154.82943037711726,0.0,12,2,2,2,1,2,2,2,2,0,,2,,3,105946,2,2,0,0,1,,550.0,438.0,32,1.0,0.0,4.0,3.0,2.0,1,1,1003.93897481882,1500.0,11179.224981300127,0,4,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.15117327031407998,5589.612490650064,1,1,1_1,1_0_1,1_3_1,1_0_0 -20348,0,80.0,0.0,1,111,580.0,827.0,0.0,77,77,0.0,0.0,801.6610519940398,1407.0,0.0,1499.8909490008402,71,0,0,0,0,0,0,0,0,0,,1,,1,103008,2,1,1,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,782.936075319462,580.0,24433.468896032955,6,5,5,0,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05758494653325472,16288.97926402197,4,2,4_0,4_1_0,4_3_0,4_1_0 -20349,2,48.0,0.0,1,111,120.0,120.0,0.0,43,46,0.0,0.0,165.86090730911167,240.0,0.0,217.63834810169388,71,2,2,2,1,2,2,2,2,2,50.0,1,,1,101823,1,3,4,0,2,,1200.0,,43,2.0,0.0,8.0,5.0,2.8,3,3,720.685264719292,120.0,76092.33369464033,1,1,1,2,169.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0031540628122029165,27175.83346237155,7,4,7,7_1,7_3,7_1_0 -20350,2,27.0,0.0,1,111,700.0,0.0,0.0,52,64,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,120881,2,2,5,0,1,,0.0,530.0,43,2.0,0.0,2.0,2.0,1.5,2,2,758.665118439422,700.0,36065.032685933926,1,1,2,3,48.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02107304342736434,24043.35512395595,6,3,6,6_1,6_3,6_1_0 -20351,2,32.0,0.0,1,111,0.0,0.0,0.0,67,67,0.0,0.0,0.0,1283.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120615,2,1,1,0,2,,245.0,700.0,43,2.0,0.0,4.0,3.0,1.8,2,2,907.596069816846,0.0,36871.648602171794,1,4,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03479638282093059,20484.249223428775,5,3,5,5_1,5_3,5_1_0 -20352,2,45.0,0.0,1,111,100.0,350.0,0.0,0,64,0.0,0.0,138.21742275759306,450.0,0.0,634.7785152966071,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,116863,2,1,3,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,853.803359901684,100.0,9725.76178591533,0,1,1,2,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04626886920587359,9725.76178591533,1,1,1_0,1_1_0,1_3_0,1_1_0 -20353,2,47.0,0.0,2,111,210.0,900.0,0.0,0,54,0.0,0.0,290.25658779094545,1110.0,0.0,1632.287610762704,70,1,2,2,2,1,2,2,2,3,15.0,1,,2,122394,2,2,1,0,1,,200.0,290.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1170.09215969934,210.0,18325.685348802424,0,1,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06057072239715924,18325.685348802424,4,2,4_0,4_1_0,4_3_0,4_0_1 -20354,2,48.0,0.0,1,111,700.0,1600.0,0.0,0,55,0.0,0.0,967.5219593031513,2300.0,0.0,2901.844641355918,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,100938,2,1,1,0,2,,250.0,,32,1.0,0.0,6.0,2.0,1.5,2,2,713.823341185727,700.0,22315.363248556394,0,1,0,1,88.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1030680063049742,14876.90883237093,3,2,3_0,3_1_0,3_3_0,3_1_0 -20355,2,74.0,0.0,1,111,220.0,1361.0,0.0,0,77,0.0,0.0,304.0783300667047,1581.0,0.0,2468.3815980533777,10,0,0,0,0,0,0,0,0,0,,1,,1,107075,2,1,2,0,2,,220.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,879.340229365458,220.0,20317.30287182842,0,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07781544676346702,20317.30287182842,5,3,5,5_1,5_3,5_1_0 -20356,1,53.0,220.0,1,111,0.0,0.0,2700.0,85,43,0.0,0.0,1379.4660040613178,2700.0,0.0,3086.763591562105,70,0,0,0,0,0,0,0,0,2,25.0,1,,1,115799,2,1,2,0,1,,900.0,,42,1.0,0.0,5.0,7.0,3.6,1,1,766.908053012217,0.0,22101.832611572674,6,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12216181560375501,6139.397947659076,1,1,1_1,1_1_1,1_3_1,1_1_0 -20357,2,26.0,0.0,1,111,770.0,0.0,0.0,0,46,0.0,0.0,1064.2741552334664,1653.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,116361,1,1,0,0,2,,270.0,560.0,22,2.0,0.0,3.0,2.0,1.5,2,2,929.505955022844,770.0,33891.02201929299,0,1,2,3,67.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.048773979110426476,22594.01467952866,6,3,6,6_0,6_3,6_1_0 -20358,1,37.0,200.0,1,111,894.0,0.0,0.0,56,62,0.0,0.0,1235.663759452882,894.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,20.0,1,,1,105213,1,2,1,0,1,,700.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,719.590789628092,894.0,34201.10593010353,1,1,1,2,140.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.026139505600405413,14250.460804209804,3,2,3_1,3_1_1,3_3_1,3_1_0 -20359,2,67.0,0.0,2,111,657.0,2418.0,0.0,72,75,0.0,0.0,908.0884675173863,3075.0,0.0,4385.412714249132,50,0,0,0,0,0,0,0,0,0,,1,,2,127270,2,1,1,0,1,,648.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,797.349595513866,657.0,36446.94836225663,5,5,0,1,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08436920340865568,24297.965574837755,7,4,7,7_1,7_3,7_0_1 -20360,2,61.0,0.0,2,111,1081.0,1131.0,0.0,48,75,0.0,0.0,1494.130340009581,2212.0,0.0,2051.241430858465,50,0,0,0,0,0,0,0,0,0,,1,,2,113469,2,1,3,0,1,,521.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,917.006733960889,1081.0,39137.937587255765,4,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05651805221132243,26091.958391503842,7,4,7,7_1,7_3,7_0_1 -20361,2,67.0,0.0,1,111,396.0,1930.0,0.0,0,77,0.0,569.3448776507017,547.3409941200684,2876.0,0.0,3500.350098635576,42,0,0,0,0,0,0,0,0,0,,1,,1,132735,2,1,2,0,1,,160.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,853.068678827319,396.0,41653.48833256899,0,5,0,1,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06904583781885194,41653.48833256899,9,5,9,9_1,9_3,9_1_0 -20362,2,44.0,0.0,5,111,500.0,0.0,0.0,0,46,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,2.0,2,,3,108095,2,2,0,0,1,,180.0,375.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1088.7879024434,500.0,22782.64050925406,0,1,2,3,51.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02194653423938746,22782.64050925406,6,3,6,6_0,6_3,6_0_0 -20363,2,85.0,0.0,2,111,577.0,1742.0,0.0,77,78,0.0,0.0,797.5145293113119,2319.0,0.0,3159.383353276256,50,0,0,0,0,0,0,0,0,0,,1,,2,113339,2,2,1,0,1,,125.0,,41,0.0,8.0,6.0,2.0,1.5,1,1,917.006733960889,577.0,39307.41709752258,5,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05899649916570476,26204.94473168172,7,4,7,7_1,7_3,7_0_1 -20364,2,64.0,0.0,6,111,1190.0,0.0,0.0,0,78,0.0,0.0,1644.7873308153573,1370.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,118021,2,1,3,0,1,,240.0,,31,1.0,3.0,4.0,2.0,1.5,1,1,885.280378439995,1190.0,15850.630020018783,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08643189565775862,10567.086680012522,2,1,2_0,2_1_0,2_3_0,2_0_0 -20365,2,39.0,0.0,9,111,310.0,1700.0,0.0,0,37,0.0,0.0,428.47401054853844,2010.0,0.0,3083.2099314406632,20,1,2,2,2,1,2,2,2,2,45.0,1,2006.0,6,130052,2,1,1,0,1,,250.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1053.04411827068,310.0,57790.14032384803,0,1,1,2,149.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03478101954306107,57790.14032384803,10,5,10,10_1,10_3,10_0_0 -20366,2,26.0,0.0,9,111,580.0,0.0,0.0,0,54,0.0,0.0,801.6610519940398,580.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,2,2010.0,6,120342,1,1,0,0,1,,240.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1346.68412098839,580.0,17251.135622739544,0,1,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033620975029346724,17251.135622739544,4,2,4_0,4_0_0,4_3_0,4_0_0 -20367,2,33.0,0.0,9,111,0.0,0.0,0.0,48,34,0.0,0.0,0.0,1687.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,133196,2,1,1,0,1,,385.0,709.0,43,2.0,0.0,4.0,2.0,1.5,1,1,876.664085251367,0.0,39300.60516686684,1,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04292554765600045,26200.403444577893,7,4,7,7_1,7_3,7_0_0 -20368,0,69.0,0.0,1,111,173.0,812.0,0.0,0,78,0.0,0.0,239.116141370636,985.0,0.0,1472.6861554881284,50,0,0,0,0,0,0,0,0,0,,1,,1,103534,2,1,1,0,1,,200.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,852.009389967581,173.0,21138.579807839953,0,5,5,0,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04659726476206692,21138.579807839953,5,3,5,5_1,5_3,5_1_0 -20369,2,63.0,0.0,1,221,800.0,400.0,0.0,0,22,0.0,0.0,1105.7393820607444,1200.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,0,,1,,1,108062,1,1,4,0,2,,240.0,434.0,12,1.0,2.0,3.0,1.0,1.0,2,2,524.8207317393,800.0,76233.08778769431,0,1,2,3,70.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015741196307592124,76233.08778769431,10,5,10,10_1,10_1,10_1_0 -20370,2,45.0,0.0,1,221,1000.0,0.0,0.0,0,62,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,7.0,8,,1,105814,2,3,0,0,1,,280.0,404.0,12,1.0,5.0,2.0,1.0,1.0,2,2,636.894136865433,1000.0,27254.77351243559,0,1,2,3,60.0,1,2,3,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03669082040046042,27254.77351243559,7,4,7,7_0,7_1,7_1_0 -20371,2,41.0,0.0,9,221,350.0,700.0,0.0,0,52,0.0,0.0,483.76097965157567,1050.0,0.0,1269.5570305932142,42,1,2,2,1,1,2,2,2,1,3.0,2,2006.0,6,122624,2,1,0,0,1,,150.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,714.542040925197,350.0,25275.178793745778,0,1,1,2,65.0,1,2,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04154273283557612,25275.178793745778,7,4,7,7_0,7_1,7_0_0 -20372,2,75.0,0.0,1,221,1200.0,1700.0,0.0,75,74,0.0,0.0,1658.6090730911167,2900.0,0.0,3083.2099314406632,71,2,2,2,1,1,2,2,2,0,,1,,1,113368,1,2,4,0,2,,201.0,350.0,41,1.0,3.0,6.0,3.0,2.0,1,1,613.071420862431,1200.0,60148.71081026723,5,5,2,3,100.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.048213834692945365,30074.355405133614,8,4,8,8_1,8_1,8_1_0 -20373,0,76.0,0.0,2,221,0.0,0.0,2160.0,0,75,0.0,0.0,1103.5728032490542,2160.0,0.0,2469.410873249684,50,0,0,0,0,0,0,0,0,0,,1,,2,122825,2,2,2,0,1,,50.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,593.907013644601,0.0,29049.091252625938,0,5,0,1,70.0,1,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07435688714719237,29049.091252625938,8,4,8,8_1,8_1,8_0_1 -20374,1,56.0,210.0,1,221,700.0,1300.0,0.0,0,77,0.0,0.0,967.5219593031513,2000.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,0,,2,,1,128244,1,1,0,0,2,,120.0,420.0,11,0.0,1.0,2.0,1.0,1.0,2,2,650.962191089599,700.0,11525.0,0,7,3,4,50.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1735357917570499,11525.0,2,1,2_1,2_0_1,2_1_1,2_1_0 -20375,2,57.0,0.0,1,221,850.0,0.0,0.0,0,21,0.0,0.0,1174.848093439541,850.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,113485,2,2,2,0,1,,159.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,565.810732046679,850.0,8910.442241054592,0,1,0,1,120.0,1,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.09539369393851753,8910.442241054592,1,1,1_0,1_1_0,1_1_0,1_1_0 -20376,2,63.0,0.0,1,221,720.0,1680.0,0.0,75,78,0.0,0.0,995.16544385467,2400.0,0.0,3046.936873423714,60,0,0,0,0,0,0,0,0,0,,1,,1,124583,1,1,3,0,2,,560.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,531.804178763971,720.0,17392.29049733109,6,5,0,1,120.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13799217534736374,11594.86033155406,2,1,2_0,2_1_0,2_1_0,2_1_0 -20377,2,68.0,0.0,2,221,550.0,2034.0,0.0,0,86,0.0,0.0,760.1958251667618,2584.0,0.0,3688.9700003237112,31,2,2,2,2,1,2,2,2,0,,1,,2,128811,1,3,3,0,2,,250.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,671.207000031655,550.0,18461.791166069706,0,6,0,1,90.0,1,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.13996475080646806,18461.791166069706,4,2,4_0,4_1_0,4_1_0,4_0_1 -20379,1,37.0,70.0,9,221,540.0,0.0,0.0,0,52,0.0,0.0,746.3740828910024,540.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,8,2010.0,6,130935,1,2,0,1,1,,100.0,400.0,12,1.0,0.0,2.0,1.0,1.0,2,2,670.049272905704,540.0,15841.974186370782,0,1,2,3,60.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03408666076886898,15841.974186370782,3,2,3_1,3_0_1,3_1_1,3_0_0 -20380,2,53.0,0.0,1,221,0.0,0.0,3190.0,0,85,0.0,0.0,1629.813538131705,3190.0,0.0,3646.9540211418944,50,0,0,0,0,0,0,0,0,0,,1,,1,103133,2,1,3,0,1,,305.0,,11,0.0,2.0,9.0,1.0,1.0,1,1,587.787836647997,0.0,11403.077610210163,0,7,0,1,200.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.27974903872825674,11403.077610210163,2,1,2_0,2_1_0,2_1_0,2_1_0 -20381,2,71.0,0.0,1,221,492.0,1917.0,0.0,77,72,0.0,0.0,680.0297199673578,2409.0,0.0,3476.7726109245596,50,0,0,0,0,0,0,0,0,0,,1,,1,119158,2,1,1,0,1,,335.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,465.594563575133,492.0,84224.54772576045,5,5,0,1,115.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028602112626877268,56149.6984838403,10,5,10,10_1,10_1,10_1_0 -20383,2,70.0,0.0,5,221,500.0,1650.0,0.0,75,75,0.0,31.055175144583732,691.0871137879653,2180.0,0.0,2992.5272863982905,50,0,0,0,0,0,0,0,0,0,,1,,3,111093,2,1,2,0,1,,300.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,595.874969493877,500.0,39409.438265372184,5,5,0,1,100.0,1,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05531669813003898,26272.958843581455,7,4,7,7_1,7_1,7_0_0 -20384,1,67.0,254.0,5,221,360.0,2200.0,0.0,0,86,0.0,0.0,497.582721927335,2560.0,0.0,3990.0363818643877,42,2,2,2,2,1,2,2,2,0,,8,,3,106502,1,1,0,0,1,,240.0,437.0,11,0.0,3.0,4.0,1.0,1.0,2,2,675.285103693534,360.0,10237.386666666665,0,5,2,3,80.0,1,2,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.2500638183703133,10237.386666666665,2,1,2_1,2_0_1,2_1_1,2_0_0 -20385,2,78.0,0.0,2,221,600.0,1200.0,0.0,77,74,0.0,173.90898080966892,829.3045365455583,1968.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,2,111018,2,1,3,0,1,,440.0,,41,0.0,1.0,5.0,2.0,1.5,7,5,595.874969493877,600.0,17126.882208781033,5,5,0,1,80.0,1,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11490707859198081,11417.92147252069,2,1,2_0,2_1_0,2_1_0,2_0_1 -20386,1,41.0,158.0,7,221,250.0,800.0,0.0,85,69,0.0,0.0,345.54355689398267,1050.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,2,12.0,8,,5,120695,1,3,0,0,1,,120.0,350.0,42,1.0,0.0,3.0,3.0,1.8,2,2,694.897770664426,250.0,18890.479931495407,6,1,2,3,60.0,1,2,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.055583553398734636,10494.711073053004,2,1,2_1,2_0_1,2_1_1,2_0_0 -20387,1,66.0,122.0,2,221,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1145.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113044,1,1,1,0,1,,307.0,450.0,11,0.0,1.0,4.0,1.0,1.0,1,1,617.077440349966,0.0,9597.249890097166,0,5,2,3,65.0,1,2,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11930501061366108,9597.249890097166,1,1,1_1,1_1_1,1_1_1,1_0_1 -20388,1,39.0,197.0,2,221,0.0,0.0,0.0,56,62,0.0,0.0,0.0,4260.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,106405,2,1,2,0,2,,355.0,650.0,43,2.0,0.0,5.0,4.0,2.1,2,2,619.624294587825,0.0,25286.022402168037,1,1,2,3,120.0,1,2,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1684725233666939,12040.963048651445,2,1,2_1,2_1_1,2_1_1,2_0_1 -20389,1,36.0,201.0,6,221,2000.0,0.0,0.0,85,63,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,101194,1,3,3,0,2,,590.0,365.0,42,1.0,0.0,3.0,3.0,1.8,4,2,537.769292914643,2000.0,15827.478888657675,6,1,2,3,68.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12636251256877332,8793.043827032041,1,1,1_1,1_1_1,1_1_1,1_0_0 -20390,2,60.0,0.0,2,221,2265.0,0.0,0.0,0,78,0.0,0.0,3130.6246254594826,2505.0,412.878481005646,0.0,50,2,2,2,1,2,2,2,2,0,,1,,2,128636,2,2,2,0,1,,79.0,,21,0.0,7.0,5.0,2.0,1.5,2,2,646.848233472119,2265.0,27253.81755911107,0,5,0,1,100.0,1,2,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.09191372895070135,18169.211706074046,4,2,4_0,4_1_0,4_1_0,4_0_1 -20391,2,62.0,0.0,7,111,501.0,1456.0,0.0,55,78,0.0,0.0,692.4692880155412,1957.0,0.0,2640.6786236338858,42,0,0,0,0,0,0,0,0,0,,1,,5,116582,2,2,2,0,1,,414.0,,42,1.0,3.0,5.0,3.0,2.0,2,1,206.677542658492,501.0,32606.58843267443,1,5,1,2,115.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060018545148959164,16303.294216337215,4,2,4_0,4_1_0,4_3_0,4_0_0 -20392,2,24.0,0.0,1,111,0.0,0.0,0.0,62,55,0.0,0.0,0.0,573.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128353,2,1,1,0,1,,120.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,139.7721544504,0.0,33897.270024405756,1,4,1,2,80.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016904016151962818,22598.180016270504,6,3,6,6_1,6_3,6_1_0 -20394,2,47.0,0.0,2,111,670.0,0.0,0.0,21,21,1792.3018524216009,0.0,926.0567324758734,1870.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130281,2,1,4,0,2,,268.0,,43,4.0,0.0,5.0,4.0,2.5,1,1,165.655766076445,670.0,41111.52960233049,1,1,0,1,100.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0454860234607762,16444.611840932197,4,2,4_0,4_1_0,4_3_0,4_0_1 -20395,2,69.0,0.0,1,111,400.0,0.0,0.0,71,71,2240.377315527001,0.0,552.8696910303722,2020.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,0,,5,,1,106734,2,2,1,0,1,,100.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,165.438520550715,400.0,28278.621739994298,5,5,0,1,142.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0714320527560622,18852.414493329532,5,3,5,5_1,5_3,5_1_0 -20396,2,44.0,0.0,9,111,979.0,520.0,0.0,21,38,0.0,414.0690019277831,1353.1485687968361,1899.0,0.0,943.0995084406734,71,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,102973,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.3,2,1,190.954326586132,979.0,68512.41755372302,1,1,1,2,86.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02771760314122512,29788.00763205349,8,4,8,8_1,8_3,8_0_0 -20397,2,61.0,0.0,1,111,365.0,1397.0,0.0,78,75,0.0,0.0,504.49359306521467,5403.0,134.18550632683494,2533.673102483886,71,0,0,0,0,0,0,0,0,0,,1,,1,123855,2,1,2,0,1,,178.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,172.859084220073,365.0,31580.47650173041,5,5,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17108671554414165,21053.651001153605,5,3,5,5_1,5_3,5_1_0 -20398,2,89.0,0.0,2,111,700.0,0.0,0.0,71,77,2987.1697540360015,0.0,967.5219593031513,2824.0,213.32054851958378,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,101013,2,1,2,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,4,2,212.776399037364,700.0,30916.57955201862,5,5,0,1,119.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09134257543750872,20611.05303467908,5,3,5,5_1,5_3,5_0_1 -20399,2,46.0,0.0,8,111,770.0,1030.0,0.0,55,62,0.0,0.0,1064.2741552334664,1800.0,0.0,1868.0624878728725,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,102620,2,2,2,0,1,,240.0,,43,3.0,0.0,4.0,4.0,2.5,3,2,191.667400852331,770.0,58763.35470246643,1,1,1,2,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0306313349384808,23505.341880986573,6,3,6,6_1,6_3,6_0_0 -20400,2,67.0,0.0,1,111,499.0,0.0,0.0,78,64,2987.1697540360015,0.0,689.7049395603893,2639.0,240.84578058662683,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,1,114987,2,1,1,0,1,,136.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,165.438520550715,499.0,23121.434225017765,5,1,0,1,100.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11413651827638613,15414.289483345177,3,2,3_0,3_1_0,3_3_0,3_1_0 -20401,2,76.0,0.0,2,111,603.0,0.0,0.0,77,78,0.0,471.0034896928533,833.4510592282861,1178.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,114563,2,1,2,0,2,,130.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,227.231707542534,603.0,24332.422277429116,6,5,0,1,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04841277150991741,16221.61485161941,4,2,4_0,4_1_0,4_3_0,4_0_1 -20402,2,73.0,0.0,6,111,387.0,0.0,0.0,0,78,1668.3343076291067,0.0,534.9014260718851,1598.0,161.71073839387802,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,121780,2,1,2,0,1,,128.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,226.989530265057,387.0,25209.419478292853,0,5,0,1,130.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06338900431150327,25209.419478292853,7,4,7,7_1,7_3,7_0_0 -20403,1,48.0,477.0,1,112,450.0,2000.0,0.0,0,63,0.0,0.0,621.9784024091688,2450.0,0.0,3627.3058016948976,10,0,0,0,0,0,0,0,0,0,,1,,1,133285,2,1,1,0,1,,400.0,416.0,32,1.0,0.0,5.0,5.0,2.5999999999999996,2,2,140.02875735901,450.0,19742.020561648616,0,4,2,3,90.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12410077237785054,7593.084831403315,1,1,1_1,1_1_1,1_0_1,1_1_0 -20404,2,46.0,0.0,2,112,395.0,1332.0,0.0,0,37,0.0,0.0,545.9588198924926,1727.0,0.0,2415.785663928802,60,0,0,0,0,0,0,0,0,2,11.0,1,,2,106941,2,1,2,0,1,,105.0,325.0,12,1.0,0.0,4.0,1.0,1.0,2,2,182.139229709613,395.0,29239.420938241463,0,1,2,3,62.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05906409718741395,29239.420938241463,8,4,8,8_1,8_0,8_0_1 -20405,2,63.0,0.0,2,112,2300.0,0.0,0.0,0,78,0.0,103.51725048194578,3179.0007234246405,2451.0,87.73667721369978,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,114260,2,1,2,0,1,,140.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,151.115573233291,2300.0,10341.06678977754,0,5,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.23701616572314263,10341.06678977754,2,1,2_0,2_1_0,2_0_0,2_0_1 -20406,2,42.0,0.0,9,112,1500.0,0.0,0.0,0,46,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,126558,2,1,1,0,1,,88.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,213.137812856244,1500.0,39663.32607223322,0,1,0,1,95.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03781831098249959,39663.32607223322,9,5,9,9_1,9_0,9_0_0 -20407,2,69.0,0.0,6,112,838.0,0.0,0.0,77,72,3285.8867294396014,0.0,1158.2620027086298,3038.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,133120,2,1,2,0,1,,139.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,152.188033857232,838.0,27114.342400855356,5,5,0,1,93.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11204402286754933,18076.228267236904,4,2,4_0,4_1_0,4_0_0,4_0_0 -20408,2,89.0,0.0,2,112,200.0,0.0,0.0,0,86,2987.1697540360015,0.0,276.4348455151861,7743.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104429,2,1,2,0,1,,148.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,180.019327570956,200.0,17673.641459417657,0,6,0,1,76.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.43811005319868757,17673.641459417657,4,2,4_0,4_1_0,4_0_0,4_0_1 -20409,1,42.0,295.0,2,112,468.0,1572.0,0.0,22,65,0.0,41.40690019277831,646.8575385055356,2080.0,0.0,2851.0623601321895,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,108373,2,2,5,0,1,,200.0,271.0,43,2.0,0.0,4.0,3.0,2.0,2,2,129.11203930032,468.0,12379.517363184084,4,1,2,3,60.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.16801947434443534,6189.758681592042,1,1,1_1,1_1_1,1_0_1,1_0_1 -20410,2,66.0,0.0,8,112,1300.0,0.0,0.0,71,33,0.0,0.0,1796.8264958487098,1440.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,115991,2,1,1,0,1,,140.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,158.346946632409,1300.0,31641.284092457452,5,5,0,1,100.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045510163108180006,21094.189394971636,5,3,5,5_1,5_0,5_0_0 -20411,2,81.0,0.0,1,112,696.0,981.0,0.0,71,71,0.0,745.3242034700096,961.9932623928477,2397.0,0.0,1779.1934957313474,20,0,0,0,0,0,0,0,0,0,,5,,1,111451,2,1,4,0,1,,124.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,130.06716470151,696.0,18727.053752898737,5,5,0,1,100.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1279966422710231,12484.702501932492,2,1,2_0,2_1_0,2_0_0,2_1_0 -20412,2,85.0,0.0,5,112,1914.0,0.0,0.0,77,78,0.0,124.22070057833493,2645.481471580331,2114.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,132107,2,1,2,0,1,,173.0,,41,0.0,0.0,5.0,2.0,1.5,3,3,146.678054077575,1914.0,27710.014617246976,5,5,0,1,101.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07629010771738194,18473.34307816465,4,2,4_0,4_1_0,4_0_0,4_0_0 -20413,2,25.0,0.0,5,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,630.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,101970,1,2,2,0,1,,224.0,249.0,12,1.0,0.0,2.0,1.0,1.0,2,2,149.037048646124,0.0,15873.2978533834,0,1,2,3,49.0,8,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03968929492907583,15873.2978533834,3,2,3_0,3_1_0,3_0_0,3_0_0 -20414,2,87.0,0.0,5,111,0.0,0.0,0.0,86,75,0.0,0.0,0.0,1829.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,116555,2,1,2,0,1,,461.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,349.844759353588,0.0,30145.3470576162,5,5,0,1,83.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06067271332137158,20096.8980384108,5,3,5,5_1,5_3,5_0_0 -20415,2,65.0,0.0,2,111,629.0,1378.0,0.0,77,75,0.0,0.0,869.3875891452603,2007.0,0.0,2499.213697367785,71,0,0,0,0,0,0,0,0,0,,1,,2,105203,2,2,1,0,1,,312.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,383.855503113417,629.0,49853.31085337223,5,5,0,1,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040258108551766134,33235.540568914825,8,4,8,8_1,8_3,8_0_1 -20416,2,39.0,0.0,6,111,420.0,1500.0,0.0,42,34,0.0,0.0,580.5131755818909,1920.0,0.0,2720.4793512711735,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,106450,1,3,2,0,1,,410.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,298.251574398422,420.0,56506.02974489637,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0339786746417698,31392.238747164647,8,4,8,8_1,8_3,8_0_0 -20417,2,42.0,0.0,2,111,907.0,1667.0,0.0,56,43,0.0,362.31037668681023,1253.632024411369,2924.0,0.0,3023.3593857126975,50,1,2,2,2,1,2,2,1,2,30.0,1,,2,112418,2,1,1,0,1,,836.0,,43,2.0,0.0,3.0,4.0,2.3,4,2,304.20060692846,907.0,38121.616366442366,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07670188933997914,16574.615811496682,4,2,4_0,4_1_0,4_3_0,4_0_1 -20418,2,30.0,0.0,6,111,1860.0,0.0,0.0,85,53,0.0,0.0,2570.8440632912307,1860.0,0.0,0.0,43,1,2,2,1,1,2,2,2,2,35.0,1,,4,125424,2,2,1,0,1,,365.0,,42,1.0,0.0,5.0,4.0,2.1,4,4,349.071261358645,1860.0,39907.69071576191,7,1,1,2,145.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04660755775741681,19003.66224560091,5,3,5,5_1,5_3,5_0_0 -20419,2,65.0,0.0,9,111,936.0,0.0,0.0,77,75,0.0,414.0690019277831,1293.7150770110711,1390.0,92.89765822627035,0.0,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,124002,2,1,1,0,1,,504.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,308.432231444058,936.0,26590.588940698584,5,5,0,1,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052274133645551446,17727.059293799055,4,2,4_0,4_1_0,4_3_0,4_0_0 -20420,2,74.0,0.0,1,111,960.0,0.0,0.0,86,86,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,113792,1,1,1,0,2,,450.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,353.467631208095,960.0,33867.452443731236,5,5,0,1,158.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028345799011454526,22578.301629154157,6,3,6,6_1,6_3,6_1_0 -20421,2,24.0,0.0,2,111,0.0,0.0,0.0,55,56,0.0,0.0,0.0,625.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,107661,2,1,1,0,2,,1224.0,550.0,43,2.0,0.0,2.0,3.0,1.8,4,4,446.194214468837,0.0,29526.800937198495,4,1,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02116721013323904,16403.77829844361,4,2,4_0,4_1_0,4_3_0,4_0_1 -20422,2,65.0,0.0,7,111,236.0,0.0,0.0,0,77,0.0,724.6207533736205,326.1931177079196,936.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,100690,2,1,2,0,1,,105.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,450.331331097231,236.0,16586.128558779285,0,5,0,1,85.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05643269896787104,16586.128558779285,4,2,4_0,4_1_0,4_3_0,4_0_0 -20423,2,52.0,0.0,2,111,1250.0,0.0,0.0,55,55,0.0,0.0,1727.717784469913,1355.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100175,2,1,1,0,2,,360.0,630.0,43,2.0,2.0,4.0,2.0,1.5,1,1,291.073026533133,1250.0,31487.171782452293,1,1,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04303339815216867,20991.447854968195,5,3,5,5_1,5_3,5_0_1 -20424,2,51.0,0.0,2,111,300.0,1152.0,0.0,0,67,0.0,0.0,414.65226827277917,1452.0,0.0,2089.328141776261,12,0,0,0,0,0,0,0,0,0,,1,,2,100161,2,2,2,0,1,,336.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,301.750767238918,300.0,21420.5995511304,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06778521752083151,14280.3997007536,3,2,3_0,3_1_0,3_3_0,3_0_1 -20425,2,28.0,0.0,6,111,1772.0,0.0,0.0,46,46,0.0,465.827627168756,2449.212731264549,2342.0,206.439240502823,0.0,71,1,2,2,2,1,2,2,2,2,35.0,1,,4,120078,2,2,4,0,2,,420.0,,43,2.0,0.0,7.0,2.0,1.5,3,3,370.761281673073,1772.0,46761.65133125665,1,1,1,2,130.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05008377448883095,31174.434220837767,8,4,8,8_1,8_3,8_0_0 -20426,2,70.0,0.0,8,111,369.0,796.0,0.0,0,77,0.0,0.0,510.0222899755184,1165.0,0.0,1443.6677090745693,70,0,0,0,0,0,0,0,0,0,,1,2002.0,6,112329,2,1,1,0,1,,182.0,,21,0.0,5.0,3.0,2.0,1.5,2,2,344.979974865916,369.0,19969.286571415727,0,5,0,1,86.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05833959044223416,13312.857714277152,3,2,3_0,3_1_0,3_3_0,3_0_0 -20427,2,25.0,0.0,6,111,1644.0,0.0,0.0,37,34,0.0,0.0,2272.29443013483,1689.0,77.41471518855863,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,112627,2,2,1,0,1,,261.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,337.562355683899,1644.0,49700.83107208325,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03398333515893066,33133.887381388835,8,4,8,8_1,8_3,8_0_0 -20428,2,49.0,0.0,8,111,693.0,1574.0,0.0,0,63,0.0,0.0,957.8467397101199,2267.0,0.0,2854.6896659338845,50,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,103294,1,1,2,0,1,,283.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,361.384725264637,693.0,34356.83763335114,0,1,0,1,126.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06598395417508857,34356.83763335114,9,5,9,9_1,9_3,9_0_0 -20429,2,35.0,0.0,2,111,440.0,1075.0,0.0,43,34,0.0,0.0,608.1566601334094,1515.0,0.0,1949.6768684110075,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,124375,2,2,1,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,359.762895406598,440.0,50626.95142725578,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029924772424364803,24108.072108217035,6,3,6,6_1,6_3,6_0_1 -20430,2,41.0,0.0,6,111,1800.0,1500.0,0.0,62,64,0.0,1086.9311300604306,2487.913609636675,4454.0,178.91400843577995,2720.4793512711735,70,1,2,2,2,1,2,2,1,2,25.0,1,,4,104789,2,1,2,0,1,,1224.0,,43,2.0,0.0,4.0,7.0,3.6,2,2,432.300489184229,1800.0,59973.733105428924,1,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07426584555225588,16659.37030706359,4,2,4_0,4_1_0,4_3_0,4_0_0 -20431,2,47.0,0.0,7,111,2000.0,0.0,0.0,34,42,0.0,0.0,2764.3484551518613,2050.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,100294,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,358.175857647665,2000.0,95075.47356840147,1,1,1,2,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021561817396840415,38030.18942736059,9,5,9,9_1,9_3,9_0_0 -20432,2,20.0,0.0,5,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,648.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,,3,103675,2,1,0,1,1,,0.0,424.0,12,1.0,0.0,2.0,1.0,1.0,1,1,330.352143242741,0.0,11330.969110838194,0,1,2,3,40.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05718840053850125,11330.969110838194,2,1,2_0,2_0_0,2_3_0,2_0_0 -20433,2,50.0,0.0,7,111,500.0,1700.0,0.0,54,37,0.0,0.0,691.0871137879653,2200.0,0.0,3083.2099314406632,71,2,2,1,2,1,2,2,2,2,20.0,1,,5,116841,1,2,3,0,1,,497.0,,43,2.0,2.0,8.0,3.0,2.0,1,1,311.630633817753,500.0,159679.25124047574,1,1,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.013777619715205306,79839.62562023787,10,5,10,10_1,10_3,10_0_0 -20434,2,82.0,0.0,2,111,649.0,1419.0,0.0,77,75,0.0,0.0,897.0310736967789,2068.0,0.0,2573.57346630253,50,0,0,0,0,0,0,0,0,0,,1,,2,107631,2,1,1,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,286.611460611118,649.0,30726.07512318506,5,5,0,1,89.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06730439835576472,20484.050082123373,5,3,5,5_1,5_3,5_0_1 -20435,2,46.0,0.0,9,111,740.0,1620.0,0.0,34,34,0.0,0.0,1022.8089284061887,2360.0,0.0,2938.1176993728673,33,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,109590,2,1,1,0,1,,580.0,,43,2.0,1.0,8.0,5.0,2.5999999999999996,2,1,384.300312269451,740.0,154180.54414476475,1,1,1,2,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015306730256342363,59300.209286447986,10,5,10,10_1,10_3,10_0_0 -20436,2,60.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,5680.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,122800,2,1,3,0,1,,243.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,431.008872517112,0.0,61908.81164934655,0,4,0,1,120.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09174784410612981,61908.81164934655,10,5,10,10_1,10_3,10_0_1 -20437,2,64.0,0.0,2,111,1106.0,0.0,0.0,0,64,5227.547069563002,0.0,1528.684695698979,4756.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103547,2,1,4,0,1,,790.0,,22,2.0,2.0,9.0,5.0,2.5999999999999996,1,1,372.821865035194,1106.0,44861.69802075899,0,1,0,1,141.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10601471210026964,17254.49923875346,4,2,4_0,4_1_0,4_3_0,4_0_1 -20438,2,35.0,0.0,9,111,140.0,0.0,0.0,37,33,0.0,0.0,193.50439186063028,140.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,127141,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,351.256511234229,140.0,69252.17555846041,1,1,1,2,140.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0020215971393103254,32977.22645640972,8,4,8,8_1,8_3,8_0_0 -20439,2,50.0,0.0,2,111,552.0,0.0,0.0,54,47,0.0,708.0579932965092,762.9601736219137,1376.0,240.84578058662683,0.0,60,2,2,1,2,1,2,2,2,2,90.0,1,,2,133363,2,1,1,0,1,,588.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,339.354443047025,552.0,24695.362411032223,4,1,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.055718963629596135,16463.574940688148,4,2,4_0,4_1_0,4_3_0,4_0_1 -20440,2,26.0,0.0,2,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,1296.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,131033,2,2,1,0,1,,369.0,,43,2.0,0.0,6.0,2.0,1.5,4,4,379.274013825034,0.0,35101.94101509019,1,1,1,2,120.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03692103520551341,23401.294010060126,6,3,6,6_1,6_3,6_0_1 -20441,2,76.0,0.0,2,111,357.0,360.0,0.0,78,78,0.0,103.51725048194578,493.4361992446072,817.0,0.0,652.9150443050816,60,0,0,0,0,0,0,0,0,0,,1,,2,113545,2,1,1,0,1,,288.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,368.192834622339,357.0,26924.68155482922,5,5,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030343905770483015,17949.78770321948,4,2,4_0,4_1_0,4_3_0,4_0_1 -20442,2,81.0,0.0,9,111,310.0,804.0,0.0,0,74,0.0,0.0,428.47401054853844,1114.0,0.0,1458.1769322813489,44,0,0,0,0,0,0,0,0,0,,1,2009.0,6,121600,2,1,1,0,1,,265.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,325.122027102196,310.0,19722.892400337703,0,5,0,1,56.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05648258771522404,19722.892400337703,5,3,5,5_1,5_3,5_0_0 -20443,1,61.0,271.0,1,111,190.0,1525.0,0.0,0,78,0.0,0.0,262.6131032394268,1715.0,0.0,2765.8206737923597,71,0,0,0,0,0,0,0,0,0,,1,,1,104719,2,1,1,0,1,,200.0,406.0,11,0.0,0.0,4.0,1.0,1.0,2,2,102.642608523025,190.0,9413.686339147103,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.18218155334835406,9413.686339147103,1,1,1_1,1_1_1,1_3_1,1_1_0 -20444,1,81.0,230.0,1,111,408.0,1380.0,0.0,0,86,0.0,0.0,563.9270848509797,1788.0,0.0,2502.8410031694793,33,1,2,2,2,1,2,2,2,0,,1,,1,113819,2,1,3,0,1,,680.0,460.0,21,1.0,2.0,4.0,4.0,2.5,2,2,97.7051178527398,408.0,17725.322675896066,0,5,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.10087263474370638,7090.129070358426,1,1,1_1,1_1_1,1_3_1,1_1_0 -20445,2,57.0,0.0,2,111,377.0,1132.0,0.0,56,47,0.0,186.3310508675024,521.0796837961258,1689.0,0.0,2053.0550837593123,71,0,0,0,0,0,0,0,0,0,,1,,2,116325,2,1,3,0,1,,370.0,,43,2.0,1.0,5.0,2.0,1.5,4,4,377.936603059148,377.0,27035.093794826207,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062474353254259075,18023.395863217473,4,2,4_0,4_1_0,4_3_0,4_0_1 -20446,1,70.0,247.0,5,111,270.0,432.0,0.0,0,77,0.0,0.0,373.1870414455012,702.0,0.0,783.498053166098,60,0,0,0,0,0,0,0,0,0,,2,,3,112470,2,2,0,0,1,,230.0,417.0,11,0.0,2.0,4.0,1.0,1.0,2,2,530.159940180124,270.0,12801.191275102721,0,5,2,3,86.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.054838646256722454,12801.191275102721,2,1,2_1,2_0_1,2_3_1,2_0_0 -20447,2,81.0,0.0,2,111,0.0,0.0,1427.0,85,77,0.0,0.0,729.0733288131482,1427.0,0.0,1631.411720429305,50,2,2,2,1,1,2,2,2,0,,1,,2,129972,2,2,1,0,1,,300.0,481.0,41,0.0,0.0,4.0,2.0,1.5,1,1,370.751699528593,0.0,18810.578546572015,7,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0758615688755651,12540.385697714677,2,1,2_0,2_1_0,2_3_0,2_0_1 -20448,2,68.0,0.0,2,111,390.0,967.0,0.0,0,64,0.0,0.0,539.0479487546129,1357.0,0.0,1753.802355119483,50,0,0,0,0,0,0,0,0,0,,1,,2,109015,1,3,1,0,1,,340.0,458.0,22,3.0,1.0,5.0,3.0,2.0,2,2,297.150519162198,390.0,47424.953602455,0,1,2,3,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028613628415437256,23712.4768012275,6,3,6,6_1,6_3,6_0_1 -20449,2,29.0,0.0,1,111,712.0,1070.0,0.0,42,43,0.0,20.703450096389155,984.1080500340626,1802.0,0.0,1940.6086039067702,60,0,0,0,0,0,0,0,0,0,,1,,1,124756,2,1,2,0,1,,980.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,308.916612344129,712.0,121459.2674558663,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014836249532418582,57837.74640755538,10,5,10,10_1,10_3,10_1_0 -20450,2,51.0,0.0,8,111,245.0,720.0,0.0,0,54,0.0,0.0,338.632685756103,965.0,0.0,1305.830088610163,42,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,128428,1,2,1,0,1,,220.0,433.0,12,1.0,0.0,4.0,1.0,1.0,2,2,428.390653329106,245.0,19891.00305447745,0,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048514396049161496,19891.00305447745,5,3,5,5_1,5_3,5_0_0 -20451,0,86.0,0.0,2,111,500.0,1308.0,0.0,0,75,0.0,0.0,691.0871137879653,1808.0,0.0,2372.2579943084634,50,0,0,0,0,0,0,0,0,0,,1,,2,126604,1,2,3,0,1,,410.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,338.115848816939,500.0,21040.2582385208,0,5,5,0,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0859305042506507,21040.2582385208,5,3,5,5_1,5_3,5_0_1 -20452,1,25.0,70.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,499.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101538,1,2,0,0,1,,88.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,599.424914311808,0.0,17186.358520219364,0,1,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029034655562022504,17186.358520219364,4,2,4_1,4_0_1,4_3_1,4_0_1 -20453,2,85.0,0.0,5,111,0.0,0.0,1447.0,0,74,0.0,0.0,739.2915955098988,1447.0,0.0,1654.2766359223579,71,0,0,0,0,0,0,0,0,0,,2,,3,109067,2,1,0,0,1,,201.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,515.698997514915,0.0,52985.17228438685,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027309527130222954,52985.17228438685,10,5,10,10_0,10_3,10_0_0 -20454,2,50.0,0.0,1,111,580.0,910.0,0.0,0,52,0.0,0.0,801.6610519940398,1490.0,0.0,1650.4241397711785,71,1,2,2,2,1,2,2,2,1,20.0,1,,1,125906,2,3,2,0,1,,600.0,417.0,32,3.0,1.0,7.0,3.0,2.0,2,2,300.988264339616,580.0,26219.93459317509,0,1,2,3,150.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05682699149020147,13109.967296587545,2,1,2_0,2_1_0,2_3_0,2_1_0 -20455,2,32.0,0.0,9,111,500.0,640.0,0.0,85,45,0.0,0.0,691.0871137879653,1140.0,0.0,1160.7378565423674,70,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,122084,2,1,1,0,1,,441.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,371.969213754154,500.0,46408.6191917917,7,1,1,2,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02456440247206562,25782.566217662057,7,4,7,7_1,7_3,7_0_0 -20456,1,35.0,162.0,1,111,700.0,1300.0,0.0,85,33,0.0,0.0,967.5219593031513,2000.0,0.0,2357.7487711016834,43,2,2,2,2,2,2,2,1,1,3.0,1,,1,120898,2,3,3,0,1,,511.0,543.0,42,1.0,0.0,6.0,6.0,2.6999999999999997,1,1,399.214097188852,700.0,53753.135519143885,7,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.03720713183862011,19908.568710794032,5,3,5,5_1,5_3,5_1_0 -20457,1,30.0,271.0,1,111,220.0,0.0,0.0,0,67,0.0,0.0,304.0783300667047,979.0,0.0,0.0,50,2,2,1,1,1,2,2,1,0,,1,,1,100576,1,3,3,0,1,,320.0,317.0,12,1.0,0.0,4.0,1.0,1.0,2,2,508.280880436151,220.0,6067.81753719814,0,4,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.1613430189682435,6067.81753719814,1,1,1_1,1_1_1,1_3_1,1_1_0 -20458,2,28.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,310.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,6.0,2,,2,129108,2,1,0,1,1,166.0,113.0,315.0,12,1.0,0.0,5.0,1.0,1.0,1,1,114.33787292951,0.0,13853.499466573168,0,1,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022377017500018158,13853.499466573168,3,2,3_0,3_0_0,3_3_0,3_0_1 -20459,2,70.0,0.0,2,111,220.0,0.0,0.0,0,77,0.0,0.0,304.0783300667047,220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125979,2,2,0,1,1,600.0,280.0,368.0,11,0.0,1.0,3.0,1.0,1.0,2,2,160.773220837411,220.0,19436.18111557419,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01131909600408664,19436.18111557419,5,3,5,5_0,5_3,5_0_1 -20460,2,36.0,0.0,1,111,650.0,1600.0,0.0,47,62,0.0,0.0,898.4132479243549,2250.0,0.0,2901.844641355918,41,0,0,0,0,0,0,0,0,0,,1,,1,123276,2,1,2,0,1,,700.0,550.0,43,2.0,0.0,5.0,5.0,2.8,2,2,352.161887533062,650.0,55457.64502195143,1,1,2,3,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04057150279477965,19806.301793554085,5,3,5,5_1,5_3,5_1_0 -20461,2,47.0,0.0,2,111,1200.0,0.0,0.0,0,54,0.0,51.75862524097289,1658.6090730911167,1250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,133306,1,1,2,0,2,,208.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,349.64857611428,1200.0,14260.676893357306,0,1,1,2,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08765362327101431,14260.676893357306,3,2,3_0,3_1_0,3_3_0,3_0_1 -20462,2,68.0,0.0,5,111,447.0,471.0,0.0,77,64,0.0,0.0,617.831879726441,918.0,0.0,854.2305162991485,31,0,0,0,0,0,0,0,0,2,25.0,1,,3,129297,1,1,3,0,1,,283.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,392.939826409162,447.0,51537.653816367696,5,5,0,1,104.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01781221945552467,34358.435877578464,9,5,9,9_1,9_3,9_0_0 -20463,2,35.0,0.0,1,111,490.0,1187.0,0.0,54,53,0.0,0.0,677.265371512206,1677.0,0.0,2152.8059933059217,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,120357,2,2,2,0,1,,498.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,291.499170051089,490.0,38591.46985798005,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043455198938301784,21439.705476655585,6,3,6,6_1,6_3,6_1_0 -20464,1,39.0,200.0,1,111,0.0,0.0,2400.0,85,65,0.0,0.0,1226.19200361006,2480.0,137.62616033521533,2743.7898591663156,50,2,2,2,2,1,1,2,2,2,5.0,1,,1,108938,1,3,1,0,2,,1200.0,605.0,42,1.0,0.0,6.0,5.0,2.5999999999999996,2,2,347.850530165445,0.0,30825.933176278868,6,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.08045174126012855,11856.128144722643,2,1,2_1,2_1_1,2_3_1,2_1_0 -20465,0,70.0,0.0,1,111,664.0,2381.0,0.0,0,31,0.0,0.0,917.7636871104179,3045.0,0.0,4318.307556917775,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,116639,2,1,2,0,1,,459.0,,12,1.0,0.0,7.0,1.0,1.0,2,2,405.843392652313,664.0,166630.11659512072,0,1,5,0,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01827400749768883,166630.11659512072,10,5,10,10_1,10_3,10_1_0 -20466,1,30.0,491.0,1,111,1256.64,0.0,0.0,85,22,0.0,0.0,1736.8954213410175,1257.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,8,,1,105496,1,3,0,0,2,,0.0,500.0,42,1.0,0.0,4.0,5.0,2.4,2,2,515.226988654627,1256.64,17744.41660306162,6,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.07083918441044251,7393.506917942343,1,1,1_1,1_0_1,1_3_1,1_1_0 -20467,2,76.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,476.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,128836,1,2,0,1,2,,0.0,400.0,11,0.0,2.0,1.0,1.0,1.0,1,1,775.552686375323,0.0,16347.284678105425,0,5,3,4,35.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029117985608798132,16347.284678105425,4,2,4_0,4_0_0,4_3_0,4_1_0 -20468,2,65.0,0.0,1,111,0.0,0.0,910.0,0,75,0.0,0.0,464.9311347021478,910.0,0.0,1040.3536549338946,31,0,0,0,0,0,0,0,0,0,,1,,1,102316,1,1,1,0,1,,299.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,386.141025827549,0.0,38899.19299730662,0,5,1,2,160.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023393801513131862,38899.19299730662,9,5,9,9_1,9_3,9_1_0 -20469,1,22.0,272.0,2,111,360.0,460.0,0.0,0,47,0.0,0.0,497.582721927335,820.0,0.0,834.2803343898265,71,1,2,2,2,1,2,2,2,3,30.0,2,,2,100251,1,1,0,0,1,,0.0,450.0,22,2.0,0.0,2.0,2.0,1.5,2,2,527.132709110112,360.0,18193.928086874428,0,2,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.045069981374256905,12129.28539124962,2,1,2_1,2_0_1,2_3_1,2_0_1 -20470,2,59.0,0.0,2,111,0.0,0.0,1780.0,0,75,0.0,0.0,909.4257360107946,1780.0,0.0,2034.9774788816837,41,0,0,0,0,0,0,0,0,0,,2,,2,102365,2,1,0,0,1,,900.0,,31,2.0,0.0,5.0,3.0,2.0,3,2,452.097358673232,0.0,31046.075169301184,0,7,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057334139349121016,15523.037584650592,3,2,3_0,3_0_0,3_3_0,3_0_1 -20471,2,30.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,389.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,90.0,2,,1,130646,2,1,0,0,1,,211.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,799.542699299464,0.0,19236.2310030226,0,1,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020222256633270635,19236.2310030226,5,3,5,5_0,5_3,5_1_0 -20472,2,57.0,0.0,1,111,450.0,1280.0,0.0,75,52,0.0,0.0,621.9784024091688,1730.0,0.0,2321.4757130847347,70,0,0,0,0,0,0,0,0,1,15.0,1,,1,130850,1,2,3,0,1,,600.0,420.0,42,1.0,3.0,4.0,2.0,1.5,1,1,282.869311012779,450.0,28200.948752889723,5,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061345453841255206,18800.63250192648,5,3,5,5_1,5_3,5_1_0 -20473,1,34.0,300.0,5,111,450.0,0.0,0.0,0,85,0.0,0.0,621.9784024091688,550.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,124451,1,3,0,1,2,469.0,0.0,330.0,31,0.0,0.0,2.0,2.0,1.3,2,2,448.638950535772,450.0,5744.494192954253,0,6,2,3,28.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09574385168229206,4418.841686887887,1,1,1_1,1_0_1,1_3_1,1_0_0 -20474,1,43.0,80.0,2,111,500.0,700.0,0.0,0,46,0.0,0.0,691.0871137879653,1200.0,0.0,1269.5570305932142,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,118546,2,3,0,2,1,900.0,350.0,300.0,32,1.0,0.0,3.0,2.0,1.3,3,2,384.639353174656,500.0,20921.67936945528,0,1,2,3,63.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.057356772313026966,16093.5995149656,4,2,4_1,4_0_1,4_3_1,4_0_1 -20475,2,76.0,0.0,7,111,740.0,0.0,0.0,0,75,0.0,0.0,1022.8089284061887,740.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,108818,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,557.593690141647,740.0,37809.16268765103,0,5,0,1,73.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019571975346645107,37809.16268765103,9,5,9,9_0,9_3,9_0_0 -20476,2,73.0,0.0,2,111,400.0,150.0,0.0,0,74,4480.754631054002,0.0,552.8696910303722,3550.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,0,,1,,2,112112,2,1,2,0,2,,300.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,474.006933813669,400.0,52462.14792882632,0,5,0,1,100.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06766783557577873,52462.14792882632,10,5,10,10_1,10_3,10_0_1 -20477,2,30.0,0.0,1,111,0.0,0.0,1650.0,37,67,0.0,0.0,843.0070024819164,1650.0,0.0,1886.3555281768417,71,0,0,0,0,0,0,0,0,0,,1,,1,103068,1,1,1,0,1,,444.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,345.92776880396,0.0,61675.95165987258,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02675272866642312,29369.500790415514,8,4,8,8_1,8_3,8_1_0 -20478,1,31.0,415.0,2,111,400.0,900.0,0.0,0,85,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,41,2,2,2,2,2,2,2,1,0,,1,,2,122719,1,2,2,0,1,,450.0,403.0,31,1.0,0.0,4.0,5.0,2.4,2,2,367.583154942894,400.0,13697.48783574778,0,6,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.0949079141802377,5707.286598228242,1,1,1_1,1_1_1,1_3_1,1_0_1 -20479,2,87.0,0.0,2,111,939.0,0.0,0.0,0,77,0.0,0.0,1297.8615996937988,1009.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109925,2,1,2,0,1,,160.0,,11,0.0,1.0,3.0,1.0,1.0,4,3,417.407650836461,939.0,16179.869764474166,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062361441389067435,16179.869764474166,4,2,4_0,4_1_0,4_3_0,4_0_1 -20480,2,41.0,0.0,1,111,450.0,1400.0,0.0,54,63,0.0,0.0,621.9784024091688,1850.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,132702,2,2,5,0,1,,440.0,503.0,43,2.0,0.0,3.0,4.0,2.3,5,4,369.35954069417,450.0,40688.23376974584,4,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04546769000761067,17690.53642162863,4,2,4_0,4_1_0,4_3_0,4_1_0 -20481,2,66.0,0.0,1,111,540.0,2100.0,0.0,74,34,0.0,0.0,746.3740828910024,2640.0,0.0,3808.6710917796427,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,115062,2,2,2,0,1,,450.0,,42,1.0,3.0,9.0,2.0,1.5,1,1,365.569242470313,540.0,144752.054676939,5,1,0,1,280.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01823808308553556,96501.369784626,10,5,10,10_1,10_3,10_1_0 -20482,2,32.0,0.0,5,111,2000.0,0.0,0.0,35,48,0.0,0.0,2764.3484551518613,2100.0,172.03270041901916,0.0,71,2,2,2,1,2,2,2,2,0,,1,,3,111341,2,1,3,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,464.091654234142,2000.0,54407.71914914265,1,1,1,2,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.03859746434588577,25908.437690067927,7,4,7,7_1,7_3,7_0_0 -20483,2,85.0,0.0,1,111,450.0,0.0,0.0,0,86,0.0,0.0,621.9784024091688,1250.0,1376.2616033521533,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123890,2,3,2,0,2,,150.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,479.546505143659,450.0,18544.9167663776,0,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06740391535573141,18544.9167663776,4,2,4_0,4_1_0,4_3_0,4_1_0 -20484,2,59.0,0.0,1,111,0.0,0.0,1200.0,0,65,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,127259,2,2,4,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,96.6815989590705,0.0,14499.827837924078,0,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08275960331483512,14499.827837924078,3,2,3_0,3_1_0,3_3_0,3_1_0 -20485,2,70.0,0.0,5,111,450.0,920.0,0.0,0,78,0.0,0.0,621.9784024091688,1370.0,0.0,1668.560668779653,50,0,0,0,0,0,0,0,0,0,,2,,3,101939,2,1,0,0,1,,550.0,315.0,21,1.0,5.0,4.0,2.0,1.5,3,3,125.762126008337,450.0,9500.50091182342,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.14420292284747097,6333.667274548946,1,1,1_0,1_0_0,1_3_0,1_0_0 -20486,1,28.0,434.0,1,111,0.0,0.0,1400.0,81,55,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,31,2,2,2,2,1,2,2,2,2,10.0,1,,1,133576,1,3,3,0,1,,300.0,448.0,43,2.0,0.0,4.0,4.0,2.1,2,2,77.2103005498137,0.0,27155.047069093765,4,1,2,3,79.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05155579353030824,12930.974794806554,2,1,2_1,2_1_1,2_3_1,2_1_0 -20487,1,27.0,270.0,8,111,0.0,0.0,1100.0,0,63,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126271,2,1,1,0,1,,400.0,267.0,12,1.0,0.0,3.0,1.0,1.0,1,1,440.537805152019,0.0,6068.411847792657,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1812665368781978,6068.411847792657,1,1,1_1,1_1_1,1_3_1,1_0_0 -20488,1,41.0,214.0,1,111,0.0,0.0,0.0,67,67,0.0,0.0,0.0,1396.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,114444,1,2,5,0,1,,362.0,523.0,43,3.0,0.0,5.0,5.0,2.8,3,3,316.307570033231,0.0,33594.266152104356,4,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.041554710368708385,11997.952197180128,2,1,2_1,2_1_1,2_3_1,2_1_0 -20489,1,54.0,90.0,6,111,1500.0,0.0,0.0,0,78,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,121978,1,2,3,0,2,,239.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,525.034402658883,1500.0,11609.076936120277,0,7,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.12920923930936545,11609.076936120277,2,1,2_1,2_1_1,2_3_1,2_0_0 -20490,1,57.0,330.0,1,111,380.0,0.0,0.0,0,85,0.0,124.22070057833493,525.2262064788536,820.0,550.5046413408613,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,133398,1,2,5,0,1,,400.0,373.0,31,1.0,5.0,5.0,2.0,1.5,2,2,366.680810636522,380.0,10746.421901392549,0,6,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07630446743336425,7164.281267595033,1,1,1_1,1_1_1,1_3_1,1_1_0 -20491,2,64.0,0.0,5,111,400.0,1800.0,0.0,54,75,0.0,0.0,552.8696910303722,2200.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,3,128344,2,2,2,0,1,,400.0,,42,1.0,4.0,7.0,2.0,1.5,2,2,124.896983841479,400.0,74389.72779595673,1,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029573975670866424,49593.15186397115,10,5,10,10_1,10_3,10_0_0 -20492,2,86.0,0.0,2,111,520.0,1800.0,0.0,0,74,0.0,0.0,718.7305983394839,2320.0,0.0,3264.575221525408,43,0,0,0,0,0,0,0,0,0,,1,,2,121897,2,1,2,0,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,128.370109237816,520.0,18505.908282284283,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12536536789285493,18505.908282284283,4,2,4_0,4_1_0,4_3_0,4_0_1 -20494,2,81.0,0.0,2,111,450.0,1500.0,0.0,0,77,0.0,0.0,621.9784024091688,1950.0,0.0,2720.4793512711735,50,2,2,2,2,1,2,2,2,0,,1,,2,120239,1,3,4,0,2,,170.0,197.0,11,0.0,1.0,2.0,1.0,1.0,3,3,157.697759834869,450.0,24738.584576032234,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.07882423483068797,24738.584576032234,7,4,7,7_1,7_3,7_0_1 -20495,1,27.0,270.0,5,111,700.0,800.0,0.0,0,67,0.0,0.0,967.5219593031513,1500.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,3,116159,2,2,0,0,1,,210.0,269.0,12,1.0,0.0,3.0,1.0,1.0,1,1,141.911680410959,700.0,4714.382744270859,0,4,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.31817526946085806,4714.382744270859,1,1,1_1,1_0_1,1_3_1,1_0_0 -20497,2,51.0,0.0,7,111,340.0,3000.0,0.0,85,63,0.0,0.0,469.9392373758164,3340.0,0.0,5440.958702542347,50,2,2,2,2,2,1,2,2,0,,1,,5,106042,1,2,5,0,1,,880.0,575.0,42,3.0,0.0,3.0,5.0,3.0,2,2,112.189007490986,340.0,26265.8157340792,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.12716147991803806,8755.271911359732,1,1,1_0,1_1_0,1_3_0,1_0_0 -20498,2,63.0,0.0,1,111,376.0,359.0,0.0,77,78,0.0,621.1035028916747,519.6975095685499,1335.0,0.0,651.1013914042342,31,0,0,0,0,0,0,0,0,0,,1,,1,100806,2,1,2,0,1,,500.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,102.758859673932,376.0,21291.742556560395,7,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0627003636012244,14194.49503770693,3,2,3_0,3_1_0,3_3_0,3_1_0 -20499,1,27.0,327.0,1,111,600.0,0.0,0.0,0,69,0.0,0.0,829.3045365455583,2127.0,516.0981012570575,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,131572,1,3,4,0,1,,500.0,361.0,22,2.0,0.0,4.0,4.0,2.5,2,2,82.3695362937814,600.0,18446.00265290951,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.11530953562258682,7378.401061163803,1,1,1_1,1_1_1,1_3_1,1_1_0 -20500,2,63.0,0.0,1,111,160.0,480.0,0.0,0,77,0.0,0.0,221.1478764121489,692.0,89.45700421788997,870.5533924067755,50,0,0,0,0,0,0,0,0,0,,1,,1,123295,2,3,1,0,1,,160.0,470.0,11,0.0,0.0,4.0,1.0,1.0,3,2,102.952098701316,160.0,16841.350883078216,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041089340445682715,16841.350883078216,4,2,4_0,4_1_0,4_3_0,4_1_0 -20501,2,63.0,0.0,1,111,0.0,0.0,2000.0,75,77,0.0,0.0,1021.8266696750501,2100.0,172.03270041901916,2286.491549305263,50,0,0,0,0,0,0,0,0,0,,1,,1,122987,2,1,2,0,1,,140.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,404.957945634552,0.0,18830.656291850843,5,5,0,1,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11152027669416899,12553.770861233896,2,1,2_0,2_1_0,2_3_0,2_1_0 -20502,2,67.0,0.0,5,112,1424.0,0.0,0.0,77,75,0.0,569.3448776507017,1968.2161000681251,1974.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131114,1,1,2,0,1,,150.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,66.928526574181,1424.0,32866.24437122738,6,5,0,1,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06006162364350124,21910.829580818256,6,3,6,6_1,6_0,6_0_0 -20503,2,48.0,0.0,2,112,1032.0,1300.0,0.0,52,64,0.0,155.27587572291867,1426.4038028583605,2482.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,117516,2,2,4,0,1,,165.0,,43,2.0,0.0,5.0,4.0,2.5,3,1,64.8537859003579,1032.0,36553.559750538916,1,1,0,1,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06790036365646734,14621.423900215566,3,2,3_0,3_1_0,3_0_0,3_0_1 -20504,0,75.0,0.0,1,112,1350.0,0.0,0.0,77,75,0.0,2070.3450096389156,1865.9352072275062,3750.0,688.1308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106202,2,1,3,0,1,,180.0,,41,0.0,3.0,8.0,2.0,1.5,3,2,73.9722331761543,1350.0,39274.15536369648,6,5,5,0,150.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09548263903509319,26182.77024246432,7,4,7,7_1,7_0,7_1_0 -20505,2,48.0,0.0,1,112,400.0,0.0,0.0,0,85,2725.792400557851,0.0,552.8696910303722,2350.0,215.04087552377396,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,110144,2,1,2,0,1,,250.0,,31,1.0,0.0,7.0,4.0,2.3,2,2,59.2156878403941,400.0,29007.735403829352,0,5,0,1,300.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08101287354164756,12612.058871230154,2,1,2_0,2_1_0,2_0_0,2_1_0 -20506,2,76.0,0.0,1,112,400.0,1200.0,0.0,72,77,0.0,155.27587572291867,552.8696910303722,1750.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,1,101488,1,2,2,0,2,,154.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,59.1392076643397,400.0,22364.587130920692,5,5,0,1,100.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07824870585607618,14909.724753947128,3,2,3_0,3_1_0,3_0_0,3_1_0 -20507,2,87.0,0.0,2,112,400.0,2000.0,0.0,86,78,0.0,0.0,552.8696910303722,2400.0,0.0,3627.3058016948976,44,0,0,0,0,0,0,0,0,0,,1,,2,124512,1,3,4,0,2,,100.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,69.4427051977321,400.0,29948.785629409445,5,5,0,1,80.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08013680520131744,19965.857086272965,5,3,5,5_1,5_0,5_0_1 -20508,2,63.0,0.0,5,112,1000.0,0.0,0.0,77,78,0.0,274.3207137771563,1382.1742275759307,1365.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,103424,2,1,2,0,1,,140.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,69.9543999149601,1000.0,20140.766850119646,5,5,0,1,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06777299048034466,13427.177900079763,3,2,3_0,3_1_0,3_0_0,3_0_0 -20509,2,73.0,0.0,5,112,1200.0,0.0,0.0,0,86,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,120741,2,2,1,0,1,,200.0,,21,2.0,3.0,5.0,3.0,2.0,1,1,72.8091937807152,1200.0,14359.681667288425,0,5,0,1,120.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08983486054141714,7179.840833644213,1,1,1_0,1_1_0,1_0_0,1_0_0 -20510,2,40.0,0.0,8,112,1500.0,0.0,0.0,85,21,0.0,0.0,2073.261341363896,1700.0,344.06540083803833,0.0,50,1,2,2,2,1,2,2,2,0,,1,2001.0,6,126149,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,71.1670780264213,1500.0,4558.091286551275,6,1,1,2,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.37296313152303,2170.5196602625115,1,1,1_0,1_1_0,1_0_0,1_0_0 -20511,2,78.0,0.0,1,112,180.0,1300.0,0.0,86,78,0.0,0.0,248.7913609636675,1480.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,1,133448,2,2,2,0,1,,125.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,59.1392076643397,180.0,14364.529520697433,6,5,0,1,95.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10303156799305616,9576.353013798289,1,1,1_0,1_1_0,1_0_0,1_1_0 -20512,2,41.0,0.0,9,112,600.0,400.0,0.0,47,54,0.0,310.55175144583734,829.3045365455583,1300.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,2,7.0,1,2006.0,6,127697,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,71.4357743281192,600.0,50418.587473472566,1,1,1,2,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025784141626022092,24008.851177844077,6,3,6,6_1,6_0,6_0_0 -20513,1,31.0,180.0,2,112,2200.0,0.0,0.0,63,63,0.0,0.0,3040.783300667047,2350.0,258.04905062852873,0.0,50,2,2,2,1,1,2,2,2,0,,1,,2,119267,1,2,3,0,1,,220.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,62.5017866084502,2200.0,42877.2509566376,1,1,1,2,131.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.05480761820240271,20417.73855077981,5,3,5,5_1,5_0,5_0_1 -20514,1,51.0,18.0,1,112,430.0,870.0,0.0,85,67,0.0,776.3793786145933,594.3349178576501,2050.0,0.0,1577.8780237372805,50,1,2,2,2,1,2,2,2,0,,1,,1,118025,1,3,3,0,2,,140.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,56.0298648601268,430.0,17598.573414269533,6,1,1,2,110.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.11648671467528095,11732.38227617969,2,1,2_1,2_1_1,2_0_1,2_1_0 -20515,2,56.0,0.0,6,112,2332.0,0.0,0.0,56,33,0.0,0.0,3223.2302987070702,2332.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,117922,2,2,2,0,1,,723.0,,43,2.0,3.0,6.0,5.0,2.4,2,2,71.541483333809,2332.0,45048.48222658891,1,1,0,1,130.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05176644993876368,18770.20092774538,5,3,5,5_1,5_0,5_0_0 -20516,2,55.0,0.0,1,112,400.0,0.0,0.0,0,56,0.0,517.5862524097289,552.8696910303722,1000.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,133214,2,2,2,0,1,,170.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,72.2966033850972,400.0,13461.730449555083,0,1,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07428465484042213,13461.730449555083,3,2,3_0,3_1_0,3_0_0,3_1_0 -20517,2,84.0,0.0,1,112,160.0,0.0,0.0,0,86,0.0,1345.724256265295,221.1478764121489,1520.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131502,1,3,4,0,2,,90.0,0.0,11,0.0,3.0,4.0,1.0,1.0,2,2,68.0952532718813,160.0,12083.151164562405,0,5,2,3,70.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12579499993825058,12083.151164562405,2,1,2_0,2_1_0,2_0_0,2_1_0 -20518,1,55.0,40.0,1,112,350.0,0.0,0.0,0,77,0.0,776.3793786145933,483.76097965157567,1130.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131796,2,3,4,0,1,,90.0,247.0,11,0.0,3.0,3.0,1.0,1.0,2,2,76.1924160417213,350.0,15886.943209064524,0,7,2,3,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07112759107461669,15886.943209064524,3,2,3_1,3_1_1,3_0_1,3_1_0 -20519,2,37.0,0.0,2,112,380.0,750.0,0.0,0,85,0.0,0.0,525.2262064788536,1130.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,0,,1,,2,109496,2,2,2,0,1,,600.0,,31,0.0,0.0,4.0,4.0,1.9,5,3,68.4008256389007,380.0,12053.86809494739,0,7,0,1,70.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09374584084536824,6344.1411026038895,1,1,1_0,1_1_0,1_0_0,1_0_1 -20520,1,30.0,174.0,1,112,0.0,0.0,0.0,85,67,0.0,0.0,0.0,3116.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,121188,1,2,3,0,1,,492.0,315.0,42,1.0,0.0,4.0,4.0,2.1,2,2,59.9387375685854,0.0,22333.62951397562,6,1,2,3,60.0,8,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.13952053776347073,10635.061673321723,2,1,2_1,2_1_1,2_0_1,2_1_0 -20521,2,26.0,0.0,1,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1851.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,105067,2,1,1,0,1,,93.0,500.0,12,1.0,0.0,3.0,1.0,1.0,2,2,65.4147200976766,0.0,18202.81175820765,0,1,2,3,90.0,8,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10168758676336825,18202.81175820765,4,2,4_0,4_1_0,4_0_0,4_1_0 -20522,2,62.0,0.0,1,112,370.0,1000.0,0.0,0,77,0.0,0.0,511.40446420309434,1370.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,1,114042,2,1,2,0,1,,450.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,64.4154805013548,370.0,23547.827053030585,0,5,1,2,100.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.058179465855372085,23547.827053030585,6,3,6,6_1,6_0,6_1_0 -20523,1,45.0,317.0,1,112,550.0,0.0,0.0,56,85,0.0,828.1380038555662,760.1958251667618,1410.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113955,1,3,4,0,1,,1400.0,298.0,42,1.0,0.0,4.0,3.0,1.8,1,1,81.0515069785417,550.0,11269.560027426136,4,7,2,3,70.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12511579836023387,6260.866681903409,1,1,1_1,1_1_1,1_0_1,1_1_0 -20524,2,61.0,0.0,1,112,500.0,0.0,0.0,0,77,0.0,517.5862524097289,691.0871137879653,1150.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108401,2,1,2,0,2,,400.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,66.0073517928172,500.0,16089.381504039276,0,5,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0714757120844757,16089.381504039276,4,2,4_0,4_1_0,4_0_0,4_1_0 -20525,1,69.0,70.0,1,112,300.0,0.0,0.0,0,72,0.0,1035.1725048194578,414.65226827277917,1360.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101594,2,1,1,0,1,,160.0,348.0,11,0.0,3.0,4.0,1.0,1.0,2,2,76.1924160417213,300.0,13660.525675723997,0,5,2,3,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09955693011264159,13660.525675723997,3,2,3_1,3_1_1,3_0_1,3_1_0 -20526,2,59.0,0.0,2,112,500.0,0.0,0.0,0,43,4480.754631054002,0.0,691.0871137879653,3550.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,118667,1,1,2,0,2,,500.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,86.9311275834793,500.0,46283.56583643397,0,1,0,1,150.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0767010911074936,46283.56583643397,10,5,10,10_1,10_0,10_0_1 -20527,2,43.0,0.0,1,112,2000.0,0.0,0.0,43,63,0.0,393.36555183139393,2764.3484551518613,2480.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,4,60.0,1,,1,132954,2,1,1,0,1,,327.0,,43,2.0,0.0,5.0,4.0,2.1,2,1,62.7279860551132,2000.0,58815.31144649189,1,1,1,2,135.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04216589080304738,28007.29116499614,7,4,7,7_1,7_0,7_1_0 -20528,1,42.0,30.0,6,111,650.0,1100.0,0.0,42,38,0.0,0.0,898.4132479243549,1750.0,0.0,1995.0181909321939,41,0,0,0,0,0,0,0,0,2,40.0,1,,4,132505,2,2,3,0,1,,810.0,,43,2.0,0.0,5.0,6.0,2.8999999999999995,3,2,369.518394122008,650.0,52064.603632241764,1,1,1,2,124.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033612087251467845,17953.311597324748,4,2,4_1,4_1_1,4_2_1,4_0_0 -20529,0,33.0,0.0,5,111,0.0,0.0,450.0,85,53,0.0,0.0,229.91100067688626,450.0,0.0,514.4605985936842,43,0,0,0,0,0,0,0,0,1,1.0,2,,3,120581,2,1,0,1,1,,450.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,385.088398503528,0.0,46433.38530627034,6,1,5,0,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009691302863916585,22111.135860128732,6,3,6,6_0,6_2,6_0_0 -20530,2,48.0,0.0,5,111,213.0,711.0,0.0,0,68,0.0,0.0,294.4031104736732,924.0,0.0,1289.5072125025363,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,120525,2,1,0,0,1,635.0,204.0,371.0,32,2.0,2.0,3.0,2.0,1.5,2,1,373.16929058109,213.0,20197.86656186257,0,1,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04574740590398237,13465.244374575048,3,2,3_0,3_0_0,3_2_0,3_0_0 -20531,1,83.0,191.0,5,111,313.0,788.0,0.0,0,78,0.0,0.0,432.6205332312663,1101.0,0.0,1429.1584858677898,30,1,2,2,1,1,2,2,2,0,,1,,3,100150,1,2,5,0,1,,156.0,304.0,11,0.0,8.0,1.0,1.0,1.0,1,1,431.565391484898,313.0,16544.644293481608,0,5,2,3,25.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.06654721494579251,16544.644293481608,4,2,4_1,4_1_1,4_2_1,4_0_0 -20532,1,49.0,70.0,5,111,682.0,1200.0,0.0,56,55,0.0,0.0,942.6428232067847,1882.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,8.0,1,,3,125381,2,2,3,0,1,,400.0,505.0,43,2.0,1.0,4.0,4.0,2.5,2,2,317.237168934335,682.0,23084.560380315455,1,1,2,3,140.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08152635220226283,9233.824152126183,1,1,1_1,1_1_1,1_2_1,1_0_0 -20533,1,39.0,397.0,5,111,823.0,1500.0,0.0,0,67,0.0,0.0,1137.5293892949908,2323.0,0.0,2720.4793512711735,71,2,2,1,1,1,2,2,2,0,,1,,3,100469,1,3,3,0,2,,460.0,600.0,32,2.0,0.0,4.0,4.0,2.3,2,2,361.897154197792,823.0,19934.325411398942,0,4,2,3,87.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.11653266173088811,8667.098004956062,1,1,1_1,1_1_1,1_2_1,1_0_0 -20534,1,50.0,254.0,2,111,480.0,140.0,0.0,0,85,0.0,0.0,663.4436292364467,620.0,0.0,253.91140611864284,70,2,2,2,1,1,2,2,2,0,,2,,2,131793,1,3,0,1,1,1000.0,800.0,280.0,31,2.0,1.0,3.0,3.0,2.0,1,1,309.293520612991,480.0,13289.257514090501,0,6,2,3,30.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.046654224236577446,6644.6287570452505,1,1,1_1,1_0_1,1_2_1,1_0_1 -20535,0,50.0,0.0,5,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,482.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,104862,1,1,0,1,1,,0.0,,42,1.0,3.0,4.0,3.0,2.0,1,1,362.130717650921,0.0,25558.41307927265,7,1,5,0,70.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01885876085127101,12779.206539636325,2,1,2_0,2_0_0,2_2_0,2_0_0 -20537,1,44.0,123.0,5,111,360.0,180.0,0.0,0,52,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,1,5.0,2,,3,113476,2,1,0,1,1,1108.0,300.0,285.0,12,1.0,0.0,5.0,1.0,1.0,1,1,388.382630014209,360.0,14007.250285373766,0,1,2,3,45.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03855146363479081,14007.250285373766,3,2,3_1,3_0_1,3_2_1,3_0_0 -20538,1,52.0,337.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,616.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,3,103026,2,1,0,1,1,1188.0,376.0,290.0,32,2.0,0.0,4.0,4.0,2.5,2,2,324.713312298801,0.0,21828.87416456841,0,1,2,3,75.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028219503917424286,8731.549665827364,1,1,1_1,1_0_1,1_2_1,1_0_0 -20539,2,39.0,0.0,5,111,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1670.0,0.0,0.0,50,1,2,2,2,1,2,2,2,2,7.0,1,,3,113256,2,2,5,0,1,,384.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,330.460978836686,0.0,46509.13535253756,1,1,1,2,100.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03590692424921385,31006.09023502504,8,4,8,8_1,8_2,8_0_0 -20540,2,74.0,0.0,5,111,500.0,2200.0,0.0,78,77,0.0,0.0,691.0871137879653,2700.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,0,,1,,3,130216,2,1,2,0,2,,200.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,343.748267998478,500.0,34594.55680213558,5,5,0,1,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07804696026148612,23063.037868090385,6,3,6,6_1,6_2,6_0_0 -20541,2,58.0,0.0,5,111,380.0,800.0,0.0,77,78,0.0,0.0,525.2262064788536,1180.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,3,100509,2,1,2,0,1,,350.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,302.150773550382,380.0,18900.497745680485,5,5,0,1,88.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062432218234552944,12600.331830453657,2,1,2_0,2_1_0,2_2_0,2_0_0 -20542,2,65.0,0.0,5,111,1500.0,0.0,0.0,0,78,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110145,2,1,2,0,1,,260.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,387.747796983353,1500.0,21693.581938897238,0,5,0,1,110.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06914487447139632,21693.581938897238,6,3,6,6_1,6_2,6_0_0 -20543,2,56.0,0.0,6,111,730.0,1372.0,0.0,77,62,0.0,0.0,1008.9871861304293,2102.0,0.0,2488.3317799627,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,121257,2,1,3,0,1,,468.0,,42,2.0,2.0,4.0,3.0,2.0,2,2,329.729198643801,730.0,55675.693701243305,5,1,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037754356708680936,27837.846850621652,7,4,7,7_1,7_2,7_0_0 -20544,1,21.0,351.0,6,111,480.0,600.0,0.0,0,62,0.0,0.0,663.4436292364467,1080.0,0.0,1088.1917405084694,60,0,0,0,0,0,0,0,0,0,,2,,4,133691,2,2,0,0,1,,186.0,462.0,22,3.0,0.0,4.0,3.0,2.0,2,1,393.782585991064,480.0,31387.05726367487,0,1,2,3,43.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03440908750785995,15693.528631837435,3,2,3_1,3_0_1,3_2_1,3_0_0 -20545,1,81.0,191.0,5,111,1800.0,1200.0,0.0,0,77,0.0,0.0,2487.913609636675,3000.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,2,,3,123813,1,3,0,0,1,,200.0,354.0,11,0.0,0.0,2.0,1.0,1.0,2,2,462.107787010427,1800.0,9369.989339953641,0,5,2,3,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.32017112198922126,9369.989339953641,1,1,1_1,1_0_1,1_2_1,1_0_0 -20546,2,30.0,0.0,6,111,400.0,800.0,0.0,56,62,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,41,0,0,0,0,0,0,0,0,0,,2,,4,103360,1,3,0,0,1,,450.0,380.0,43,2.0,0.0,3.0,3.0,1.8,1,1,406.043030693682,400.0,27901.04844363899,1,4,2,3,60.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04300913646395899,15500.582468688326,3,2,3_0,3_0_0,3_2_0,3_0_0 -20547,1,27.0,15.0,5,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2231.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,101608,2,2,0,0,1,,71.0,295.0,12,1.0,0.0,2.0,1.0,1.0,2,2,462.107787010427,0.0,12242.825242954183,0,4,2,3,51.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.18222917959920676,12242.825242954183,2,1,2_1,2_0_1,2_2_1,2_0_0 -20548,2,58.0,0.0,5,111,300.0,10000.0,0.0,77,63,0.0,0.0,414.65226827277917,10300.0,0.0,18136.52900847449,20,0,0,0,0,0,0,0,0,0,,2,,3,106312,2,2,0,0,1,,400.0,405.0,42,1.0,6.0,3.0,2.0,1.5,2,2,379.16756765754,300.0,31574.885229417843,5,1,2,3,64.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.32620862831842207,21049.923486278563,5,3,5,5_0,5_2,5_0_0 -20549,2,71.0,0.0,5,111,1135.0,0.0,0.0,0,77,0.0,0.0,1568.7677482986812,1235.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,128364,2,1,2,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,387.747796983353,1135.0,23216.855722576227,0,5,0,1,90.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05319411098373143,23216.855722576227,6,3,6,6_1,6_2,6_0_0 -20550,2,60.0,0.0,2,111,507.0,326.0,0.0,72,75,0.0,655.2641955507167,700.7623333809968,1466.0,0.0,591.2508456762683,50,0,0,0,0,0,0,0,0,0,,1,,2,118536,2,1,2,0,1,,213.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,348.02181254766,507.0,38383.97599738199,5,5,0,1,180.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03819302096531088,25589.317331587994,7,4,7,7_1,7_2,7_0_1 -20551,2,76.0,0.0,7,111,600.0,1900.0,0.0,78,77,0.0,0.0,829.3045365455583,2500.0,0.0,3445.940511610153,50,0,0,0,0,0,0,0,0,0,,1,,5,100541,2,1,1,0,1,,650.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,374.293150245417,600.0,56616.005022740996,5,5,0,1,180.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04415712480942135,37744.003348494,9,5,9,9_1,9_2,9_0_0 -20552,2,85.0,0.0,2,111,650.0,0.0,0.0,72,72,2987.1697540360015,0.0,898.4132479243549,2750.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114804,2,2,5,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,302.150773550382,650.0,14943.125536802898,5,5,0,1,66.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18403111137807962,9962.083691201931,2,1,2_0,2_1_0,2_2_0,2_0_1 -20553,2,38.0,0.0,7,111,450.0,950.0,0.0,52,37,0.0,0.0,621.9784024091688,1400.0,0.0,1722.9702558050765,60,0,0,0,0,0,0,0,0,2,25.0,1,,5,121709,2,1,2,0,1,,350.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,355.028416125345,450.0,39857.496673590824,1,1,1,2,157.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512513621879384,18979.760320757534,5,3,5,5_1,5_2,5_0_0 -20554,2,54.0,0.0,2,111,500.0,0.0,0.0,11,11,3285.8867294396014,0.0,691.0871137879653,2790.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,0,,5,,2,105963,2,2,1,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,4,3,285.186088982573,500.0,15464.110921793057,1,1,0,1,80.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1804177436459115,10309.407281195372,2,1,2_0,2_1_0,2_2_0,2_0_1 -20555,2,82.0,0.0,6,111,1200.0,0.0,0.0,77,72,0.0,0.0,1658.6090730911167,1500.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,110184,2,1,1,0,1,,300.0,,41,0.0,4.0,3.0,2.0,1.5,1,1,318.735093253918,1200.0,27474.159155537258,5,5,0,1,80.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05459675732051234,18316.106103691505,4,2,4_0,4_1_0,4_2_0,4_0_0 -20556,1,81.0,26.0,2,111,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106876,2,3,3,0,1,,200.0,180.0,11,0.0,4.0,1.0,1.0,1.0,1,1,443.885336949695,1200.0,13192.958147128626,0,5,2,3,28.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0909576144044066,13192.958147128626,2,1,2_1,2_1_1,2_2_1,2_0_1 -20557,2,43.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,3526.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,102761,2,2,1,0,1,,538.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,337.740279066498,0.0,28390.122385590883,1,1,1,2,109.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12419812609858932,10139.329423425315,2,1,2_0,2_1_0,2_2_0,2_0_1 -20558,2,36.0,0.0,7,111,600.0,0.0,0.0,52,52,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,129185,1,3,2,0,2,,590.0,650.0,43,2.0,0.0,4.0,3.0,1.8,1,1,341.636585455785,600.0,37766.963784429245,1,1,2,3,80.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015886900610405198,20981.646546905136,5,3,5,5_1,5_2,5_0_0 -20559,2,71.0,0.0,2,111,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1270.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,104343,2,2,3,0,1,,250.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,511.705841838287,1200.0,17253.246439951385,0,5,1,2,32.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0736093351717973,17253.246439951385,4,2,4_0,4_1_0,4_2_0,4_0_1 -20560,2,91.0,0.0,2,111,250.0,660.0,0.0,0,77,0.0,0.0,345.54355689398267,910.0,0.0,1197.0109145593162,50,0,0,0,0,0,0,0,0,0,,1,,2,108089,2,1,1,0,1,,200.0,304.0,11,0.0,1.0,3.0,1.0,1.0,1,1,348.985766290535,250.0,17258.642579624884,0,5,2,3,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05272720585072681,17258.642579624884,4,2,4_0,4_1_0,4_2_0,4_0_1 -20561,2,76.0,0.0,5,111,600.0,1960.0,0.0,75,75,0.0,0.0,829.3045365455583,2560.0,0.0,3554.759685661,60,0,0,0,0,0,0,0,0,0,,1,,3,106815,2,1,2,0,2,,230.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,358.653228191823,600.0,40157.89194166611,5,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06374836616719548,26771.927961110738,7,4,7,7_1,7_2,7_0_0 -20562,0,61.0,0.0,5,111,0.0,0.0,2500.0,0,72,0.0,517.5862524097289,1277.2833370938126,3000.0,0.0,2858.1144366315784,12,0,0,0,0,0,0,0,0,0,,1,,3,129296,2,1,3,0,1,,400.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,373.321502914433,0.0,20943.38588226666,0,5,0,1,120.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1432433139925184,20943.38588226666,5,3,5,5_1,5_2,5_0_0 -20563,2,72.0,0.0,5,111,508.0,1497.0,0.0,78,78,0.0,0.0,702.1445076085727,2005.0,0.0,2715.038392568631,41,0,0,0,0,0,0,0,0,0,,1,,3,118831,2,2,1,0,1,,511.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,302.150773550382,508.0,34233.027004019816,5,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058569170636431384,22822.018002679877,6,3,6,6_1,6_2,6_0_0 -20565,1,41.0,140.0,2,111,345.0,1200.0,0.0,85,62,0.0,0.0,476.85010851369606,1611.0,113.54158227655265,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,122157,1,3,3,0,2,,302.0,681.0,42,1.0,0.0,4.0,4.0,2.1,1,1,342.634231311589,345.0,24737.89825987785,6,1,2,3,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06512275145915952,11779.951552322786,2,1,2_1,2_1_1,2_2_1,2_0_1 -20566,2,35.0,0.0,5,111,0.0,0.0,1430.0,43,43,0.0,0.0,730.6060688176609,1430.0,0.0,1634.841457753263,30,0,0,0,0,0,0,0,0,2,10.0,1,,3,115132,2,2,3,0,1,,300.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,343.748267998478,0.0,53343.82219789847,1,1,1,2,95.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02680722792406758,35562.548131932315,9,5,9,9_1,9_2,9_0_0 -20567,2,32.0,0.0,5,111,0.0,0.0,2000.0,55,52,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,50,0,0,0,0,0,0,0,0,1,1.0,1,,3,130257,2,2,3,0,1,,400.0,305.0,43,2.0,0.0,4.0,3.0,1.8,2,2,343.166073175289,0.0,30995.5320756722,1,1,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06452542886236697,17219.74004204011,4,2,4_0,4_1_0,4_2_0,4_0_0 -20568,2,84.0,0.0,2,111,350.0,0.0,0.0,0,72,1866.981096272501,0.0,483.76097965157567,1670.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,131370,2,1,2,0,2,,234.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,387.747796983353,350.0,10378.765589553646,0,5,0,1,110.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16090545504572099,10378.765589553646,2,1,2_0,2_1_0,2_2_0,2_0_1 -20569,2,76.0,0.0,2,111,400.0,1000.0,0.0,77,78,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,0,,1,,2,103715,2,3,3,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,267.513971759402,400.0,39378.18787220569,5,5,0,1,78.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03555267714561751,26252.12524813713,7,4,7,7_1,7_3,7_0_1 -20570,2,77.0,0.0,2,111,280.0,1444.0,0.0,0,86,0.0,0.0,387.00878372126056,1724.0,0.0,2618.914788823716,50,0,0,0,0,0,0,0,0,0,,1,,2,126292,2,1,2,0,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,324.520848617101,280.0,19778.05689136516,0,6,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08716730917852077,19778.05689136516,5,3,5,5_1,5_3,5_0_1 -20571,2,36.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1172.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,117691,2,2,5,0,1,,615.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,276.498557593294,0.0,51080.55989934862,0,1,1,2,200.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02294414944372889,31925.349937092888,8,4,8,8_1,8_3,8_1_0 -20572,2,29.0,0.0,1,111,940.0,0.0,0.0,52,67,0.0,1035.1725048194578,1299.2437739213747,2040.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,1,103782,2,3,3,0,1,,0.0,480.0,43,2.0,0.0,4.0,2.0,1.5,2,2,239.302928592914,940.0,29624.774193702502,1,1,2,3,79.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06886128436495066,19749.849462468334,5,3,5,5_1,5_3,5_1_0 -20573,2,53.0,0.0,2,111,480.0,1600.0,0.0,0,48,0.0,0.0,663.4436292364467,2080.0,0.0,2901.844641355918,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,114841,2,2,3,0,1,,240.0,530.0,12,1.0,2.0,3.0,1.0,1.0,1,1,344.035114667711,480.0,31605.55843426774,0,1,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06581120863046667,31605.55843426774,8,4,8,8_1,8_3,8_0_1 -20574,1,32.0,76.0,1,111,309.0,1180.0,0.0,0,55,0.0,0.0,427.09183632096256,1489.0,0.0,2140.1104229999896,71,0,0,0,0,0,0,0,0,2,2.0,1,,1,105528,1,3,2,0,2,,442.0,338.0,32,1.0,0.0,3.0,3.0,1.6,3,3,235.51128287648,309.0,31915.442025898898,0,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04665453164620747,19947.15126618681,5,3,5,5_1,5_3,5_1_0 -20575,2,36.0,0.0,9,111,1500.0,0.0,0.0,0,54,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,2008.0,6,119902,2,1,1,0,1,,300.0,,32,1.0,0.0,5.0,3.0,1.6,2,2,286.326745904573,1500.0,28924.13817238786,0,1,1,2,130.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05185979928114021,18077.58635774241,4,2,4_0,4_1_0,4_3_0,4_0_0 -20576,2,27.0,0.0,5,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,2947.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,124800,2,1,2,0,1,,383.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,282.372511284781,0.0,34668.51798661068,1,1,1,2,85.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08500507581945557,23112.345324407117,6,3,6,6_1,6_3,6_0_0 -20577,2,54.0,0.0,2,111,300.0,900.0,0.0,56,34,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,12.0,1,,2,126049,2,1,1,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,277.284371223166,300.0,72707.58581409989,4,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01650446767780438,31611.993832217348,8,4,8,8_1,8_3,8_0_1 -20578,2,21.0,0.0,5,111,680.0,1263.0,0.0,0,55,0.0,0.0,939.8784747516328,1943.0,0.0,2290.643613770328,50,0,0,0,0,0,0,0,0,0,,1,,3,133694,2,1,2,0,2,,500.0,,22,3.0,0.0,8.0,3.0,2.0,1,1,291.243857285829,680.0,30827.331020388705,0,1,0,1,84.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0630284859469323,15413.665510194352,3,2,3_0,3_1_0,3_3_0,3_0_0 -20579,2,56.0,0.0,1,111,770.0,0.0,0.0,78,78,0.0,930.6200818326926,1064.2741552334664,1979.0,533.3013712989595,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,104439,2,1,4,0,1,,465.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,268.996169989563,770.0,13099.747613153539,6,7,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15107161286167634,8733.165075435692,1,1,1_0,1_1_0,1_3_0,1_1_0 -20581,1,78.0,106.0,2,111,275.0,735.0,0.0,0,77,0.0,0.0,380.0979125833809,1010.0,0.0,1333.034882122875,42,0,0,0,0,0,0,0,0,0,,1,,2,120667,2,2,5,0,1,,200.0,276.0,11,0.0,4.0,2.0,1.0,1.0,1,1,291.303730622708,275.0,12587.10511986411,0,5,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08024084889909174,12587.10511986411,2,1,2_1,2_1_1,2_3_1,2_0_1 -20582,1,28.0,238.0,5,111,610.0,0.0,0.0,0,63,0.0,0.0,843.1262788213177,610.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,8,,3,103069,1,3,0,0,1,,240.0,291.0,12,1.0,0.0,1.0,1.0,1.0,2,2,372.081621321743,610.0,7212.008118115465,0,4,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.08458115825851235,7212.008118115465,1,1,1_1,1_0_1,1_3_1,1_0_0 -20583,1,26.0,270.0,2,111,620.0,0.0,0.0,0,53,0.0,0.0,856.9480210970769,620.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,8,,2,121750,1,3,0,0,1,,170.0,331.0,12,1.0,0.0,2.0,1.0,1.0,1,1,464.734043378567,620.0,5970.477541902112,0,4,2,3,52.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.1038442897823005,5970.477541902112,1,1,1_1,1_0_1,1_3_1,1_0_1 -20584,0,40.0,0.0,2,111,800.0,1400.0,0.0,55,47,0.0,0.0,1105.7393820607444,2200.0,0.0,2539.1140611864284,60,2,2,2,2,2,1,2,2,2,25.0,1,,2,106412,2,1,3,0,1,,600.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,307.16829939318,800.0,44363.1873110855,1,1,5,0,63.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.049590665895420515,24646.21517282528,7,4,7,7_1,7_3,7_0_1 -20585,2,39.0,0.0,2,111,1200.0,1000.0,0.0,52,62,0.0,0.0,1658.6090730911167,2200.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,105767,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,319.262063161543,1200.0,34966.341474721405,4,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06291764900798871,14569.308947800586,3,2,3_0,3_1_0,3_3_0,3_0_1 -20586,2,52.0,0.0,8,111,1300.0,1200.0,0.0,54,31,0.0,238.0896761084753,1796.8264958487098,2730.0,0.0,2176.3834810169387,12,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,101010,1,1,2,0,1,,430.0,,43,2.0,1.0,5.0,3.0,2.0,4,2,314.158582079881,1300.0,56416.451487993174,1,1,1,2,155.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048390140251572046,28208.225743996587,8,4,8,8_1,8_3,8_0_0 -20587,2,76.0,0.0,6,111,248.0,880.0,0.0,0,78,0.0,0.0,342.7792084388308,1128.0,0.0,1596.014552745755,50,0,0,0,0,0,0,0,0,0,,1,,4,128964,2,1,1,0,1,,225.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,329.336853697345,248.0,16470.044720435446,0,5,0,1,73.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06848797432835248,16470.044720435446,4,2,4_0,4_1_0,4_3_0,4_0_0 -20588,2,50.0,0.0,1,111,1300.0,2600.0,0.0,85,56,0.0,0.0,1796.8264958487098,3900.0,0.0,4715.497542203367,31,0,0,0,0,0,0,0,0,0,,1,,1,130190,1,1,2,0,1,,500.0,,42,1.0,2.0,6.0,3.0,2.0,1,1,250.628429412642,1300.0,31316.82319103471,7,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12453370433551769,15658.411595517355,3,2,3_0,3_1_0,3_3_0,3_1_0 -20589,2,56.0,0.0,1,111,244.0,992.0,0.0,0,55,0.0,0.0,337.25051152852706,1236.0,0.0,1799.1436776406692,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,124792,1,1,4,0,2,,153.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,317.299889548609,244.0,21498.5860711255,0,1,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05749215301466068,21498.5860711255,6,3,6,6_1,6_3,6_1_0 -20590,2,55.0,0.0,5,111,560.0,0.0,0.0,85,55,2240.377315527001,0.0,774.0175674425211,2060.0,0.0,0.0,30,2,2,2,1,2,2,2,2,2,5.0,1,,3,105744,2,1,2,0,1,,380.0,,42,2.0,2.0,6.0,3.0,2.0,2,2,288.783286166092,560.0,27677.544597120468,6,1,0,1,80.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.07442856763436737,13838.772298560234,3,2,3_0,3_1_0,3_3_0,3_0_0 -20591,1,84.0,63.0,5,111,221.0,786.0,0.0,0,78,0.0,0.0,305.46050429428067,1007.0,0.0,1425.5311800660947,50,2,2,2,2,1,2,2,2,0,,8,,3,131174,1,3,0,0,1,,170.0,272.0,11,0.0,4.0,2.0,1.0,1.0,1,1,345.641931701172,221.0,15498.418664901326,0,5,2,3,53.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06497437072599634,15498.418664901326,3,2,3_1,3_0_1,3_3_1,3_0_0 -20592,1,56.0,270.0,5,111,253.0,1030.0,0.0,0,78,0.0,0.0,349.69007957671045,1283.0,0.0,1868.0624878728725,12,2,2,2,2,1,2,2,2,0,,1,,3,102170,2,1,3,0,1,,415.0,440.0,11,0.0,3.0,4.0,1.0,1.0,1,1,365.06923647085,253.0,6060.0,0,6,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.21171617161716172,6060.0,1,1,1_1,1_1_1,1_3_1,1_0_0 -20593,1,58.0,200.0,6,111,300.0,600.0,0.0,0,56,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,70,0,0,0,0,0,0,0,0,0,,2,,4,119486,1,1,0,0,1,,200.0,400.0,12,1.0,1.0,3.0,1.0,1.0,2,2,428.437817323501,300.0,5281.291652396462,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1704128571637607,5281.291652396462,1,1,1_1,1_0_1,1_3_1,1_0_0 -20594,2,58.0,0.0,2,111,380.0,950.0,0.0,78,65,0.0,0.0,525.2262064788536,1330.0,0.0,1722.9702558050765,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,122562,1,1,2,0,1,,280.0,,42,2.0,2.0,3.0,3.0,2.0,4,4,342.95019527888,380.0,28233.005457940308,6,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04710798508438457,14116.502728970154,3,2,3_0,3_1_0,3_3_0,3_0_1 -20595,2,44.0,0.0,6,111,250.0,1200.0,0.0,0,37,0.0,0.0,345.54355689398267,1450.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,0,,1,,4,113388,2,3,3,0,1,,250.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,348.760214976272,250.0,51317.48759376214,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02825547523835235,34211.65839584143,9,5,9,9_1,9_3,9_0_0 -20596,2,48.0,0.0,1,111,1030.0,1350.0,0.0,46,46,0.0,0.0,1423.6394544032084,2380.0,0.0,2448.431416144056,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,127798,2,2,5,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,281.439350418323,1030.0,47863.93885466941,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049724282141226595,22792.35183555686,6,3,6,6_1,6_3,6_1_0 -20597,2,72.0,0.0,9,111,360.0,1470.0,0.0,77,75,0.0,0.0,497.582721927335,1830.0,0.0,2666.06976424575,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,108219,2,2,1,0,1,,350.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,351.195334140893,360.0,30159.448679546473,5,5,0,1,106.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0606775017489318,20106.299119697647,5,3,5,5_1,5_3,5_0_0 -20598,2,50.0,0.0,6,111,800.0,0.0,0.0,42,38,4630.113118755802,0.0,1105.7393820607444,4870.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,101487,2,1,1,0,1,,900.0,,43,2.0,0.0,7.0,4.0,2.5,1,1,358.647604081094,800.0,79585.37789200939,1,1,0,1,160.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06119214520295647,31834.151156803757,8,4,8,8_1,8_3,8_0_0 -20599,2,79.0,0.0,2,111,500.0,1000.0,0.0,0,78,0.0,0.0,691.0871137879653,1550.0,86.01635020950958,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,2,131906,2,1,2,0,1,,120.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,361.071675346738,500.0,14584.871886712695,0,5,0,1,68.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1062745022403729,14584.871886712695,3,2,3_0,3_1_0,3_3_0,3_0_1 -20600,1,29.0,436.0,2,111,0.0,0.0,750.0,54,21,0.0,0.0,383.18500112814377,750.0,0.0,857.4343309894736,50,0,0,0,0,0,0,0,0,0,,1,,2,116152,2,1,1,0,1,,400.0,604.0,43,2.0,0.0,6.0,4.0,2.1,3,1,380.035609978234,0.0,11762.21397856355,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0637635058643605,5601.0542755064525,1,1,1_1,1_1_1,1_3_1,1_0_1 -20601,2,83.0,0.0,2,111,145.0,1700.0,0.0,0,86,0.0,67.28621281326475,200.41526299850995,1910.0,0.0,3083.2099314406632,20,0,0,0,0,0,0,0,0,0,,1,,2,116057,2,1,1,0,1,,135.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,393.306655376308,145.0,22252.243009041533,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08583404375118178,22252.243009041533,6,3,6,6_1,6_3,6_0_1 -20602,1,60.0,270.0,2,111,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,532.0,55.050464134086134,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,126084,2,1,0,0,1,,180.0,327.0,11,0.0,1.0,3.0,1.0,1.0,3,2,548.805398585557,500.0,4848.713210163858,0,6,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10971983224019585,4848.713210163858,1,1,1_1,1_0_1,1_3_1,1_0_1 -20603,2,68.0,0.0,2,111,700.0,1100.0,0.0,74,78,0.0,0.0,967.5219593031513,1800.0,0.0,1995.0181909321939,60,0,0,0,0,0,0,0,0,0,,1,,2,118873,2,1,3,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,348.760214976272,700.0,19975.06460301506,5,5,0,1,98.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09011234936022715,13316.709735343373,3,2,3_0,3_1_0,3_3_0,3_0_1 -20604,2,42.0,0.0,2,111,750.0,0.0,0.0,90,52,1493.5848770180007,0.0,1036.630670681948,1750.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,118740,2,1,2,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,369.272981446116,750.0,44432.0177147627,1,1,1,2,90.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039386012384905855,21158.10367369652,5,3,5,5_1,5_3,5_0_1 -20605,0,79.0,0.0,1,111,300.0,1600.0,0.0,86,77,0.0,0.0,414.65226827277917,1900.0,0.0,2901.844641355918,20,2,2,2,1,1,2,2,2,0,,1,,1,115890,2,3,1,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,301.028155295461,300.0,26978.37241184838,6,5,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0704267837582951,17985.58160789892,4,2,4_0,4_1_0,4_3_0,4_1_0 -20606,1,39.0,201.0,1,111,0.0,0.0,2000.0,55,55,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,20,2,2,2,1,1,2,2,2,2,20.0,1,,1,132357,1,3,3,0,1,,520.0,386.0,43,2.0,0.0,3.0,4.0,2.3,2,2,252.367837162056,0.0,24032.132146765325,4,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.08322191255382207,10448.753107289273,2,1,2_1,2_1_1,2_3_1,2_1_0 -20607,1,43.0,79.0,1,111,630.0,1600.0,0.0,85,63,0.0,0.0,870.7697633728362,2230.0,0.0,2901.844641355918,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,128635,2,1,2,0,1,,500.0,342.0,42,1.0,0.0,4.0,4.0,2.3,3,3,265.88309907581,630.0,24082.616714697408,6,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0925979110334406,10470.702919433656,2,1,2_1,2_1_1,2_3_1,2_1_0 -20608,0,75.0,0.0,1,111,0.0,0.0,1500.0,77,77,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,31,0,0,0,0,0,0,0,0,0,,1,,1,112421,2,1,1,0,1,,350.0,,41,0.0,6.0,3.0,2.0,1.5,2,1,270.185147878087,0.0,40135.088028289596,5,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03737378123956551,26756.725352193065,7,4,7,7_1,7_3,7_1_0 -20609,1,68.0,140.0,2,111,230.0,650.0,0.0,0,78,0.0,0.0,317.900072342464,880.0,0.0,1178.8743855508417,60,2,2,2,2,1,2,2,2,0,,1,,2,106538,2,2,5,0,1,,250.0,402.0,11,0.0,4.0,2.0,1.0,1.0,2,2,332.315970196788,230.0,9601.24036243379,0,5,2,3,51.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.09165482445821525,9601.24036243379,1,1,1_1,1_1_1,1_3_1,1_0_1 -20610,2,60.0,0.0,1,111,0.0,0.0,2400.0,78,78,0.0,103.51725048194578,1226.19200361006,2500.0,0.0,2743.7898591663156,71,2,2,2,1,1,2,2,2,0,,1,,1,116718,1,3,1,0,1,,500.0,480.0,41,2.0,0.0,4.0,4.0,2.5,1,1,252.367837162056,0.0,40582.45106636583,6,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06160298193698717,16232.980426546332,4,2,4_0,4_1_0,4_3_0,4_1_0 -20611,1,33.0,377.0,8,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,2163.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,1,2001.0,6,117890,2,1,1,0,1,,117.0,426.0,43,2.0,0.0,3.0,3.0,1.8,1,1,303.930677210363,0.0,16969.750951892507,1,1,2,3,68.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1274620945311385,9427.63941771806,1,1,1_1,1_1_1,1_3_1,1_0_0 -20612,1,31.0,336.0,8,111,760.0,1000.0,0.0,85,63,0.0,0.0,1050.452412957707,1760.0,0.0,1813.6529008474488,44,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,109125,2,1,1,0,1,,600.0,425.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,332.088769120902,760.0,30665.282234002552,6,1,2,3,89.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.057393895369026185,11357.511938519465,2,1,2_1,2_1_1,2_3_1,2_0_0 -20613,1,53.0,270.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1143.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110839,2,2,5,0,1,,52.0,276.0,11,0.0,5.0,2.0,1.0,1.0,2,2,476.096709057356,0.0,6098.4906086407045,0,6,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.18742342545883886,6098.4906086407045,1,1,1_1,1_1_1,1_3_1,1_0_1 -20614,2,74.0,0.0,2,111,0.0,0.0,1000.0,77,77,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,31,0,0,0,0,0,0,0,0,0,,1,,2,105206,2,1,2,0,1,,420.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,348.760214976272,0.0,27767.518527515553,5,5,0,1,72.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03601330090080156,18511.6790183437,4,2,4_0,4_1_0,4_3_0,4_0_1 -20615,2,60.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1843.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,103743,2,2,5,0,1,,340.0,205.0,11,0.0,3.0,3.0,1.0,1.0,1,1,279.901432513473,0.0,10542.291014975803,0,6,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1748196855296382,10542.291014975803,2,1,2_0,2_1_0,2_3_0,2_1_0 -20616,0,84.0,0.0,1,111,0.0,0.0,1300.0,78,78,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,31,0,0,0,0,0,0,0,0,0,,1,,1,105179,2,1,3,0,1,,400.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,366.680628885205,0.0,28941.952259365455,5,5,5,0,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04491749514165297,19294.63483957697,5,3,5,5_1,5_3,5_1_0 -20617,2,64.0,0.0,2,111,360.0,850.0,0.0,56,75,0.0,0.0,497.582721927335,1210.0,0.0,1541.6049657203316,60,0,0,0,0,0,0,0,0,0,,1,,2,125209,2,1,1,0,1,,223.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,362.605202094572,360.0,18272.17947287147,1,5,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06622089071511558,12181.452981914314,2,1,2_0,2_1_0,2_3_0,2_0_1 -20618,2,37.0,0.0,2,111,550.0,1460.0,0.0,48,64,0.0,0.0,760.1958251667618,2010.0,0.0,2647.9332352372753,70,0,0,0,0,0,0,0,0,0,,1,,2,118689,2,2,5,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,329.153691109543,550.0,53337.257394090855,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037684727303258087,25398.69399718612,7,4,7,7_1,7_3,7_0_1 -20619,2,27.0,0.0,5,111,540.0,350.0,0.0,0,62,0.0,0.0,746.3740828910024,890.0,0.0,634.7785152966071,50,2,2,2,1,1,2,2,2,0,,1,,3,124576,1,3,3,0,1,,390.0,539.0,32,1.0,0.0,4.0,3.0,1.6,5,5,311.161450435174,540.0,22215.941395094636,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04006132282094133,13884.963371934147,3,2,3_0,3_1_0,3_3_0,3_0_0 -20620,1,34.0,106.0,2,111,394.0,1157.0,0.0,0,42,0.0,0.0,544.5766456649167,1551.0,0.0,2098.3964062804985,50,0,0,0,0,0,0,0,0,0,,1,,2,111802,2,1,2,0,1,,520.0,447.0,22,2.0,3.0,4.0,3.0,2.0,2,2,311.161450435174,394.0,33378.62596391956,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04646686180780912,16689.31298195978,4,2,4_1,4_1_1,4_3_1,4_0_1 -20621,1,34.0,230.0,2,111,0.0,0.0,0.0,56,65,0.0,0.0,0.0,1639.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,120394,2,3,3,0,1,,205.0,760.0,43,2.0,0.0,5.0,5.0,2.4,1,1,368.137849883105,0.0,33770.75327737795,4,1,2,3,113.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04853311936923594,14071.147198907482,3,2,3_1,3_1_1,3_3_1,3_0_1 -20622,1,39.0,120.0,5,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,381.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,131414,2,2,0,0,1,,272.0,465.0,32,1.0,0.0,3.0,2.0,1.3,2,2,290.933818150234,0.0,14473.358133725835,0,1,2,3,60.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02632422942068941,11133.352410558335,2,1,2_1,2_0_1,2_3_1,2_0_0 -20623,2,63.0,0.0,6,111,0.0,0.0,1426.0,77,78,0.0,0.0,728.5624154783108,1426.0,0.0,1630.2684746546527,50,0,0,0,0,0,0,0,0,0,,1,,4,105646,2,2,2,0,1,,438.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,357.644455114272,0.0,20162.541179702923,6,5,0,1,102.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07072521203009445,13441.694119801949,3,2,3_0,3_1_0,3_3_0,3_0_0 -20624,2,54.0,0.0,6,111,240.0,720.0,0.0,0,75,0.0,0.0,331.72181461822333,960.0,0.0,1305.830088610163,50,0,0,0,0,0,0,0,0,0,,1,,4,101481,2,2,2,0,1,,250.0,281.0,11,0.0,0.0,2.0,1.0,1.0,2,2,467.969965941866,240.0,19828.05889499078,0,7,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048416237065067806,19828.05889499078,5,3,5,5_1,5_3,5_0_0 -20625,2,31.0,0.0,2,111,60.0,110.0,0.0,55,43,0.0,0.0,82.93045365455583,170.0,0.0,199.50181909321938,70,2,2,2,2,2,2,1,2,0,,1,,2,120578,2,1,1,0,1,,900.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,296.887719811656,60.0,36715.659259529224,1,1,1,2,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.004630176971584079,17483.647266442487,4,2,4_0,4_1_0,4_3_0,4_0_1 -20626,2,28.0,0.0,5,111,1440.0,0.0,0.0,52,42,0.0,0.0,1990.33088770934,1560.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,111239,2,2,2,0,1,,0.0,582.0,43,2.0,0.0,4.0,2.0,1.5,1,1,318.515398270261,1440.0,22097.449021251592,4,4,2,3,93.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07059638415727147,14731.632680834395,3,2,3_0,3_1_0,3_3_0,3_0_0 -20627,2,33.0,0.0,7,111,1000.0,0.0,0.0,0,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,1,,5,123804,2,2,5,0,1,,0.0,579.0,12,1.0,0.0,3.0,1.0,1.0,1,1,371.320515716633,1000.0,26464.01949822646,0,1,2,3,95.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03778715474673139,26464.01949822646,7,4,7,7_1,7_3,7_0_0 -20628,1,67.0,147.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1571.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103616,2,2,5,0,1,,256.0,260.0,11,0.0,3.0,2.0,1.0,1.0,2,2,467.969965941866,0.0,10658.34405800076,0,5,2,3,30.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.14739625512658489,10658.34405800076,2,1,2_1,2_1_1,2_3_1,2_0_1 -20629,2,67.0,0.0,2,111,462.0,833.0,0.0,78,78,0.0,0.0,638.5644931400799,1295.0,0.0,1510.772866405925,42,0,0,0,0,0,0,0,0,0,,1,,2,120246,2,2,1,0,1,,642.0,,41,1.0,1.0,5.0,3.0,2.0,2,2,353.066947363962,462.0,33492.32628146498,5,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038665573394842605,16746.16314073249,4,2,4_0,4_1_0,4_3_0,4_0_1 -20630,2,59.0,0.0,2,111,140.0,800.0,0.0,0,75,0.0,0.0,193.50439186063028,940.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,2,112871,2,2,0,0,1,,136.0,306.0,11,0.0,1.0,2.0,1.0,1.0,2,2,421.124588695554,140.0,21857.460257635907,0,5,2,3,46.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.043005911433448035,21857.460257635907,6,3,6,6_0,6_3,6_0_1 -20631,2,52.0,0.0,2,111,293.0,771.0,0.0,0,68,0.0,0.0,404.97704867974767,1064.0,0.0,1398.3263865533831,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,100354,1,2,0,0,1,,450.0,288.0,12,1.0,1.0,3.0,1.0,1.0,1,1,400.31368578719,293.0,16543.813572135638,0,1,2,3,74.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06431407095834726,16543.813572135638,4,2,4_0,4_0_0,4_3_0,4_0_1 -20632,1,59.0,91.0,6,111,0.0,0.0,800.0,0,72,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,70,1,2,2,1,1,2,2,2,0,,2,,4,118469,1,3,0,0,1,,216.0,293.0,11,0.0,5.0,3.0,1.0,1.0,1,1,447.185941425719,0.0,11556.627552278218,0,7,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.06922434736094717,11556.627552278218,2,1,2_1,2_0_1,2_3_1,2_0_0 -20633,2,34.0,0.0,1,111,900.0,0.0,0.0,0,42,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,124452,2,1,3,0,1,,250.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,307.214808004024,900.0,23518.144774317952,0,1,1,2,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03826832467596717,23518.144774317952,6,3,6,6_1,6_3,6_1_0 -20634,1,59.0,270.0,1,111,450.0,1500.0,0.0,0,75,0.0,0.0,621.9784024091688,1950.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,1,106916,1,1,2,0,1,,230.0,269.0,11,0.0,0.0,2.0,1.0,1.0,2,2,302.246055433617,450.0,11152.284193828744,0,7,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1748520721054667,11152.284193828744,2,1,2_1,2_1_1,2_3_1,2_1_0 -20635,2,38.0,0.0,1,111,360.0,910.0,0.0,0,43,0.0,0.0,497.582721927335,1270.0,0.0,1650.4241397711785,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,105481,2,2,2,0,1,,250.0,309.0,12,1.0,0.0,2.0,1.0,1.0,1,1,302.246055433617,360.0,13972.964592809885,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09088980305965336,13972.964592809885,3,2,3_0,3_1_0,3_3_0,3_1_0 -20636,1,48.0,60.0,1,111,720.0,2200.0,0.0,85,62,0.0,0.0,995.16544385467,2920.0,0.0,3990.0363818643877,20,0,0,0,0,0,0,0,0,2,45.0,1,,1,102788,2,2,2,0,1,,600.0,,42,2.0,1.0,7.0,5.0,3.0,1,1,286.118187170962,720.0,40223.576031446006,6,1,1,2,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07259424168843667,13407.858677148668,3,2,3_1,3_1_1,3_3_1,3_1_0 -20637,2,65.0,0.0,2,111,433.0,1780.0,0.0,0,56,0.0,0.0,598.4814405403779,2213.0,0.0,3228.302163508459,50,0,0,0,0,0,0,0,0,0,,1,,2,133378,2,1,2,0,1,,220.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,386.593098880225,433.0,9492.06562063616,0,1,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2331420881866685,9492.06562063616,1,1,1_0,1_1_0,1_3_0,1_0_1 -20638,1,25.0,296.0,1,111,1500.0,0.0,0.0,85,56,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,2,2,2,1,1,1,2,2,1,15.0,1,,1,106353,2,1,3,0,1,,550.0,510.0,42,1.0,0.0,3.0,3.0,1.8,2,2,272.081676544409,1500.0,16223.516291711261,6,1,2,3,74.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.09245837788977741,9013.064606506256,1,1,1_1,1_1_1,1_3_1,1_1_0 -20639,2,54.0,0.0,6,111,1900.0,0.0,0.0,56,62,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,,4,119320,2,1,2,0,1,,220.0,,43,3.0,2.0,4.0,3.0,2.0,3,2,338.311162197063,1900.0,41159.32570671965,1,1,0,1,92.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046162077910081194,20579.662853359823,5,3,5,5_1,5_3,5_0_0 -20640,1,48.0,270.0,5,111,360.0,1000.0,0.0,0,67,0.0,0.0,497.582721927335,1360.0,0.0,1813.6529008474488,60,2,2,1,2,1,2,2,2,0,,2,,3,127674,2,3,0,0,1,,240.0,291.0,22,2.0,3.0,2.0,2.0,1.5,3,3,365.683291235073,360.0,12522.967680286883,0,4,2,3,45.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.10860045595588763,8348.645120191255,1,1,1_1,1_0_1,1_3_1,1_0_0 -20641,2,34.0,0.0,5,111,450.0,700.0,0.0,63,52,0.0,0.0,621.9784024091688,1150.0,0.0,1269.5570305932142,44,0,0,0,0,0,0,0,0,2,5.0,2,,3,116927,2,1,0,0,1,,150.0,320.0,43,2.0,0.0,2.0,2.0,1.5,2,2,419.623893480058,450.0,35310.95603459584,1,1,2,3,58.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03256779564034715,23540.637356397227,6,3,6,6_0,6_3,6_0_0 -20642,2,65.0,0.0,5,111,0.0,0.0,845.0,0,77,0.0,0.0,431.7217679377087,845.0,0.0,966.0426795814736,31,0,0,0,0,0,0,0,0,0,,2,,3,111686,1,2,0,0,1,,430.0,384.0,11,0.0,0.0,3.0,1.0,1.0,2,2,438.497123425934,0.0,20210.171171017406,0,5,2,3,50.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04181063054091202,20210.171171017406,5,3,5,5_0,5_3,5_0_0 -20643,1,58.0,200.0,5,111,0.0,0.0,2800.0,0,56,0.0,0.0,1430.5573375450701,2800.0,0.0,3201.088169027368,31,0,0,0,0,0,0,0,0,0,,2,,3,133265,1,1,0,0,1,,700.0,431.0,32,1.0,3.0,3.0,2.0,1.5,3,2,355.051679356815,0.0,14959.902346542049,0,4,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.18716699715939084,9973.268231028032,2,1,2_1,2_0_1,2_3_1,2_0_0 -20644,2,83.0,0.0,1,111,300.0,1848.0,0.0,0,74,0.0,0.0,414.65226827277917,2148.0,0.0,3351.6305607660856,31,0,0,0,0,0,0,0,0,0,,1,,1,129368,2,2,2,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,345.966553944815,300.0,34619.18697045094,0,5,0,1,117.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06204651778314194,34619.18697045094,9,5,9,9_1,9_3,9_1_0 -20645,2,84.0,0.0,1,111,353.0,1031.0,0.0,75,77,0.0,0.0,487.9075023343035,1384.0,0.0,1869.8761407737197,33,0,0,0,0,0,0,0,0,0,,1,,1,102428,2,1,1,0,1,,400.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,290.04243236605,353.0,59904.36119833679,5,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023103493173355565,39936.240798891195,9,5,9,9_1,9_3,9_1_0 -20646,1,47.0,317.0,8,111,780.0,1220.0,0.0,52,63,0.0,0.0,1078.0958975092258,2000.0,0.0,2212.656539033888,50,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,122954,2,1,3,0,1,,700.0,459.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,324.900502014182,780.0,33708.85311740331,1,1,2,3,89.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05933159437475592,12964.943506693584,2,1,2_1,2_1_1,2_3_1,2_0_0 -20647,2,63.0,0.0,8,111,0.0,0.0,1500.0,22,77,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,50,1,2,2,1,1,2,2,2,0,,1,2003.0,6,117583,2,2,1,0,1,,540.0,476.0,42,1.0,2.0,3.0,2.0,1.5,2,2,297.585151853616,0.0,26614.797557043054,1,5,2,3,83.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05635962463306643,17743.198371362036,4,2,4_0,4_1_0,4_3_0,4_0_0 -20648,1,33.0,270.0,1,111,220.0,180.0,0.0,0,62,0.0,0.0,304.0783300667047,418.0,30.96588607542345,326.4575221525408,71,0,0,0,0,0,0,0,0,0,,1,,1,115324,1,2,2,0,1,,245.0,20.0,12,1.0,0.0,3.0,1.0,1.0,2,2,275.12364893207,220.0,8067.485213454827,0,4,2,3,45.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05181292421867301,8067.485213454827,1,1,1_1,1_1_1,1_3_1,1_1_0 -20649,2,81.0,0.0,1,111,150.0,2800.0,0.0,0,77,0.0,0.0,207.32613413638958,2950.0,0.0,5078.228122372857,12,0,0,0,0,0,0,0,0,0,,1,,1,103541,2,3,4,0,2,,300.0,350.0,11,0.0,2.0,6.0,1.0,1.0,2,2,368.1198725027,150.0,22523.22027237296,0,5,2,3,200.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13097594235307805,22523.22027237296,6,3,6,6_1,6_3,6_1_0 -20650,0,66.0,0.0,1,111,334.0,1331.0,0.0,0,77,0.0,0.0,461.6461920103608,1665.0,0.0,2413.9720110279545,50,0,0,0,0,0,0,0,0,0,,1,,1,119285,2,1,3,0,1,,120.0,,11,0.0,3.0,6.0,1.0,1.0,2,1,318.581651909457,334.0,20370.037988596854,0,5,0,1,130.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0817376973441123,20370.037988596854,5,3,5,5_1,5_3,5_1_0 -20651,0,86.0,0.0,2,111,290.0,1420.0,0.0,0,78,0.0,0.0,400.8305259970199,1710.0,0.0,2575.3871192033776,20,0,0,0,0,0,0,0,0,0,,1,,2,121456,2,1,1,0,1,,240.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,405.55744555496,290.0,19355.03401615419,0,5,5,0,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08834910848375631,19355.03401615419,5,3,5,5_1,5_3,5_0_1 -20652,1,40.0,385.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,1931.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,107645,1,1,1,0,1,,936.0,650.0,42,1.0,2.0,6.0,5.0,2.4,2,2,368.137849883105,0.0,36300.38974024569,7,1,2,3,100.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05319502115039634,15125.16239176904,3,2,3_1,3_1_1,3_3_1,3_0_1 -20653,1,55.0,219.0,1,111,500.0,1000.0,0.0,56,78,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,122589,1,2,2,0,1,,410.0,336.0,42,1.0,2.0,4.0,2.0,1.5,2,2,276.350529806376,500.0,11837.37807317742,4,7,2,3,53.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12671725028356437,7891.58538211828,1,1,1_1,1_1_1,1_3_1,1_1_0 -20654,2,50.0,0.0,1,111,330.0,0.0,0.0,0,68,1493.5848770180007,0.0,456.1174951000571,1390.0,103.2196202514115,0.0,12,2,2,1,2,1,2,2,2,2,20.0,1,,1,107616,2,1,3,0,1,,170.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,291.161541952412,330.0,10619.674956451465,0,1,0,1,55.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.13088912849969794,10619.674956451465,2,1,2_0,2_1_0,2_3_0,2_1_0 -20655,1,41.0,491.0,2,111,960.0,1400.0,0.0,0,56,0.0,0.0,1326.8872584728933,2360.0,0.0,2539.1140611864284,20,0,0,0,0,0,0,0,0,0,,1,,2,110735,1,3,2,0,1,,730.0,515.0,32,1.0,0.0,4.0,4.0,2.3,2,2,316.083439141346,960.0,12922.153280077173,0,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1826321007690373,5618.327513077033,1,1,1_1,1_1_1,1_3_1,1_0_1 -20656,2,70.0,0.0,1,111,550.0,2060.0,0.0,78,74,0.0,0.0,760.1958251667618,2610.0,0.0,3736.124975745745,31,0,0,0,0,0,0,0,0,0,,1,,1,107439,2,1,3,0,1,,550.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,342.108532592938,550.0,58199.76034753131,5,5,0,1,117.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04484554548703928,38799.840231687536,9,5,9,9_1,9_3,9_1_0 -20657,2,46.0,0.0,2,111,362.0,1570.0,0.0,55,65,0.0,362.31037668681023,500.3470703824869,2282.0,0.0,2847.435054330495,50,0,0,0,0,0,0,0,0,0,,1,,2,115969,2,1,1,0,1,,503.0,,43,3.0,0.0,5.0,3.0,2.0,2,2,346.462189661667,362.0,79952.23431629625,1,4,0,1,115.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028542041626657477,39976.117158148125,9,5,9,9_1,9_3,9_0_1 -20658,2,50.0,0.0,8,111,1800.0,0.0,0.0,64,62,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,131456,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.5,3,2,322.076641127902,1800.0,21028.603880357095,1,1,1,2,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08559769399058334,8411.441552142838,1,1,1_0,1_1_0,1_3_0,1_0_0 -20659,1,64.0,55.0,2,111,230.0,1170.0,0.0,78,78,0.0,0.0,317.900072342464,1400.0,0.0,2121.973893991515,12,1,2,2,2,1,2,2,2,0,,1,,2,110208,1,3,3,0,1,,260.0,273.0,41,0.0,5.0,2.0,2.0,1.5,5,3,325.417240614818,230.0,32193.092767693346,5,5,2,3,45.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.04348758940628837,21462.061845128897,6,3,6,6_1,6_3,6_0_1 -20660,2,51.0,0.0,1,111,800.0,0.0,0.0,21,52,0.0,698.741440753134,1105.7393820607444,1595.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,117112,2,1,2,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,314.957969338933,800.0,65728.96403314038,1,1,0,1,87.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024266318866608107,43819.30935542692,10,5,10,10_1,10_3,10_1_0 -20661,2,29.0,0.0,2,111,350.0,665.0,0.0,0,46,0.0,0.0,483.76097965157567,1015.0,0.0,1206.0791790635535,50,0,0,0,0,0,0,0,0,0,,2,,2,131291,2,1,0,0,1,,330.0,306.0,12,1.0,0.0,3.0,1.0,1.0,1,1,459.486140403428,350.0,18209.4828232523,0,4,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05574018822236469,18209.4828232523,4,2,4_0,4_0_0,4_3_0,4_0_1 -20662,2,71.0,0.0,2,111,208.0,617.0,0.0,0,77,0.0,0.0,287.49223933579356,825.0,0.0,1119.023839822876,71,0,0,0,0,0,0,0,0,0,,1,,2,115006,2,1,1,0,1,,219.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,354.908354542374,208.0,16114.294571590312,0,5,0,1,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05119678037005011,16114.294571590312,4,2,4_0,4_1_0,4_3_0,4_0_1 -20663,2,69.0,0.0,2,111,1400.0,0.0,0.0,77,78,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109879,2,1,2,0,1,,240.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,302.485031239924,1400.0,35458.07937324896,5,5,0,1,64.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03948324400943774,23638.719582165973,6,3,6,6_1,6_3,6_0_1 -20664,2,64.0,0.0,7,111,0.0,0.0,1423.0,0,77,0.0,0.0,727.0296754737982,1423.0,0.0,1626.8387373306946,50,0,0,0,0,0,0,0,0,0,,2,,5,120089,2,1,0,0,1,,176.0,577.0,11,0.0,2.0,3.0,1.0,1.0,1,1,470.421959414859,0.0,18187.10962299326,0,5,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07824222922156669,18187.10962299326,4,2,4_0,4_0_0,4_3_0,4_0_0 -20665,0,64.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,638.0,0.0,0.0,50,2,2,2,1,2,2,2,2,1,1.0,2,,2,116744,1,3,0,1,1,1044.0,0.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,479.194495644375,0.0,31265.0,0,1,5,0,104.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.020406205021589637,31265.0,8,4,8,8_0,8_3,8_0_1 -20666,2,65.0,0.0,2,111,680.0,1020.0,0.0,85,78,0.0,0.0,939.8784747516328,1700.0,0.0,1849.925958864398,50,0,0,0,0,0,0,0,0,0,,1,,2,133364,2,1,2,0,1,,400.0,,41,1.0,3.0,6.0,3.0,2.0,3,3,371.403516625317,680.0,32529.797773887294,6,5,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052259777691106464,16264.898886943647,4,2,4_0,4_1_0,4_3_0,4_0_1 -20667,0,83.0,0.0,1,111,540.0,0.0,0.0,0,77,0.0,1242.2070057833494,746.3740828910024,1830.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133529,2,1,1,0,1,,510.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,367.93888871863,540.0,11836.989776939488,0,5,5,0,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15460011662468087,11836.989776939488,2,1,2_0,2_1_0,2_3_0,2_1_0 -20668,2,55.0,0.0,9,111,900.0,0.0,0.0,69,11,0.0,0.0,1243.9568048183376,1540.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2004.0,6,133054,2,1,1,0,1,,180.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,326.130352340289,900.0,69759.35895219528,1,1,1,2,110.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022075890936086896,46506.23930146352,10,5,10,10_1,10_3,10_0_0 -20669,2,55.0,0.0,2,111,0.0,0.0,2000.0,56,21,0.0,0.0,1021.8266696750501,2837.0,0.0,2286.491549305263,31,0,0,0,0,0,0,0,0,0,,1,,2,120576,2,1,1,0,1,,600.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,342.807044912091,0.0,62776.39203390815,1,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04519214800474066,41850.92802260543,9,5,9,9_1,9_3,9_0_1 -20670,2,66.0,0.0,1,112,418.0,237.0,0.0,63,77,0.0,0.0,577.748827126739,655.0,0.0,429.83573750084537,31,2,2,1,2,2,2,2,1,0,,1,,1,130430,2,2,2,0,1,,456.0,412.0,42,1.0,6.0,4.0,2.0,1.5,1,1,454.601675087298,418.0,28606.134506358765,1,5,2,3,70.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.022897186610599283,19070.75633757251,5,3,5,5_1,5_1,5_1_0 -20671,2,75.0,0.0,7,112,300.0,1200.0,0.0,86,46,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,5,132988,2,1,2,0,1,,155.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,498.0126095241,300.0,42422.71765507535,6,5,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03535841367344705,28281.811770050233,8,4,8,8_1,8_1,8_0_0 -20672,2,57.0,0.0,6,112,1028.0,0.0,0.0,56,48,0.0,372.6621017350048,1420.8751059480567,1448.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,101524,2,1,2,0,1,,160.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,491.347223168707,1028.0,39874.469583218444,1,1,0,1,120.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0363139626717293,26582.97972214563,7,4,7,7_1,7_1,7_0_0 -20673,2,66.0,0.0,1,112,0.0,0.0,3630.0,56,75,0.0,0.0,1854.615405460216,3630.0,0.0,4149.982161989053,50,0,0,0,0,0,0,0,0,0,,1,,1,119177,2,2,3,0,1,,310.0,,41,0.0,0.0,9.0,2.0,1.5,1,1,470.375714664809,0.0,45059.631992931194,5,5,0,1,100.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08055991226402964,30039.754661954128,8,4,8,8_1,8_1,8_1_0 -20674,1,49.0,150.0,5,112,1000.0,1500.0,0.0,56,62,0.0,0.0,1382.1742275759307,2500.0,0.0,2720.4793512711735,70,2,2,1,2,1,2,2,1,2,20.0,1,,3,111096,2,1,2,0,1,,800.0,700.0,43,4.0,2.0,5.0,7.0,3.3999999999999995,1,1,437.816584521045,1000.0,65465.605239364355,1,1,2,3,90.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.038187991860140234,19254.589776283636,5,3,5,5_1,5_1,5_0_0 -20675,2,37.0,0.0,6,112,523.0,994.0,0.0,0,37,0.0,0.0,722.8771210222117,1517.0,0.0,1802.7709834423642,10,2,2,1,2,1,2,2,1,2,40.0,1,,4,122361,2,1,3,0,1,,306.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,542.798897457871,523.0,44133.700003287595,0,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.034372826205076756,44133.700003287595,10,5,10,10_1,10_1,10_0_0 -20676,2,50.0,0.0,7,112,276.0,946.0,0.0,67,46,0.0,0.0,381.48008681095683,1222.0,0.0,1715.7156442016867,50,1,2,2,2,1,2,2,2,2,45.0,1,,5,117160,1,1,3,0,1,,350.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,501.92566341682,276.0,45202.15230516244,1,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027034110936802407,30134.768203441625,8,4,8,8_1,8_1,8_0_0 -20677,2,46.0,0.0,6,112,527.0,812.0,0.0,90,90,0.0,0.0,728.4058179325154,3297.0,0.0,1472.6861554881284,41,0,0,0,0,0,0,0,0,2,60.0,1,,4,120374,2,2,5,0,1,,276.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,501.265074452,527.0,68019.25936521546,1,1,1,2,115.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04847156571196159,37788.4774251197,9,5,9,9_1,9_1,9_0_0 -20678,2,57.0,0.0,5,112,720.0,800.0,0.0,0,56,0.0,0.0,995.16544385467,1580.0,103.2196202514115,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,3,104072,2,1,2,0,1,,120.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,542.798897457871,720.0,13272.391188138896,0,1,0,1,80.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11904411025889552,13272.391188138896,3,2,3_0,3_1_0,3_1_0,3_0_0 -20679,2,42.0,0.0,2,112,680.0,1800.0,0.0,47,54,0.0,0.0,939.8784747516328,2480.0,0.0,3264.575221525408,12,2,2,1,2,1,2,2,2,2,20.0,1,,2,132817,2,2,3,0,1,,180.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,493.825723366983,680.0,50065.54504994704,1,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04953506443455015,19255.97886536425,5,3,5,5_1,5_1,5_0_1 -20680,2,55.0,0.0,1,112,1062.0,1089.0,0.0,43,34,0.0,0.0,1467.8690296856382,2151.0,0.0,1975.0680090228718,31,0,0,0,0,0,0,0,0,2,35.0,1,,1,116883,2,2,2,0,1,,564.0,,43,2.0,3.0,5.0,3.0,2.0,2,2,413.365491749676,1062.0,62189.916272667164,1,1,0,1,140.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034587600834982586,31094.958136333582,8,4,8,8_1,8_1,8_1_0 -20681,1,36.0,26.0,9,112,354.0,879.0,0.0,0,53,0.0,0.0,489.28967656187945,1233.0,0.0,1594.2008998449076,41,2,2,1,2,2,2,2,1,2,20.0,1,2009.0,6,109421,2,1,1,0,1,,260.0,490.0,32,1.0,0.0,4.0,2.0,1.3,1,1,391.295000913905,354.0,21805.584700264375,0,1,2,3,85.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.05654514735323978,16773.526692511055,4,2,4_1,4_1_1,4_1_1,4_0_0 -20682,2,37.0,0.0,9,112,492.0,500.0,0.0,0,55,0.0,0.0,680.0297199673578,992.0,0.0,906.8264504237244,42,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,126844,1,2,1,0,1,,280.0,479.0,32,1.0,0.0,3.0,2.0,1.3,1,1,410.666384928039,492.0,22828.847746132316,0,1,2,3,90.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04345379193166092,17560.652112409472,4,2,4_0,4_1_0,4_1_0,4_0_0 -20683,2,53.0,0.0,8,112,1900.0,0.0,0.0,21,38,0.0,362.31037668681023,2626.131032394268,2250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,120356,2,1,1,0,1,,319.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,499.299851612792,1900.0,26884.595146005417,1,1,1,2,153.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08369105012668605,13442.297573002708,3,2,3_0,3_1_0,3_1_0,3_0_0 -20684,1,43.0,377.0,7,112,0.0,0.0,1000.0,52,52,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,60,0,0,0,0,0,0,0,0,1,5.0,2,,5,107216,1,1,0,1,1,,317.0,446.0,43,3.0,0.0,3.0,3.0,2.0,3,3,487.480948859504,0.0,19616.67517920773,1,1,2,3,60.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050977038201658574,9808.337589603865,2,1,2_1,2_0_1,2_1_1,2_0_0 -20685,2,34.0,0.0,9,112,550.0,1275.0,0.0,46,38,0.0,207.03450096389156,760.1958251667618,2025.0,0.0,2312.407448580497,30,2,2,1,1,2,2,2,2,2,20.0,1,2004.0,6,113158,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,474.564469851281,550.0,56543.39923848758,1,1,1,2,165.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0358131988396912,26925.42820880361,7,4,7,7_1,7_1,7_0_0 -20686,2,48.0,0.0,2,112,1000.0,0.0,0.0,22,21,6721.131946581003,0.0,1382.1742275759307,5500.0,0.0,0.0,50,2,2,1,2,1,2,2,1,2,20.0,1,,2,119508,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,483.414565085489,1000.0,148467.46915699352,1,1,1,2,240.0,9,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.037045152256109055,59386.98766279741,10,5,10,10_1,10_1,10_0_1 -20687,2,54.0,0.0,1,112,400.0,1800.0,0.0,85,11,0.0,0.0,552.8696910303722,2200.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,112066,2,1,2,0,1,,500.0,,42,1.0,0.0,5.0,5.0,2.8,2,2,469.910346751427,400.0,163743.7051360126,5,1,0,1,125.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013435630995234808,58479.89469143308,10,5,10,10_1,10_1,10_1_0 -20688,2,81.0,0.0,1,112,331.0,1777.0,0.0,0,75,0.0,0.0,457.499669327633,2108.0,0.0,3222.8612048059167,50,0,0,0,0,0,0,0,0,0,,1,,1,111479,1,2,3,0,2,,109.0,,11,0.0,5.0,7.0,1.0,1.0,2,2,475.219224783082,331.0,37149.37341236669,0,5,0,1,150.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05674389111764308,37149.37341236669,9,5,9,9_1,9_1,9_1_0 -20689,2,42.0,0.0,1,112,1828.0,0.0,0.0,43,38,0.0,0.0,2526.614488008801,1828.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129005,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,442.336191026145,1828.0,96795.3697165806,1,1,1,2,147.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018885200866037625,46093.03319837171,10,5,10,10_1,10_1,10_1_0 -20690,1,67.0,179.0,6,112,0.0,0.0,900.0,77,78,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,50,0,0,0,0,0,0,0,0,0,,1,,4,103157,2,1,2,0,1,,200.0,214.0,41,0.0,0.0,2.0,2.0,1.5,3,3,359.799744221659,0.0,14601.147423315604,6,5,2,3,53.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06163899136877761,9734.098282210403,1,1,1_1,1_1_1,1_1_1,1_0_0 -20691,2,56.0,0.0,6,112,325.0,1000.0,0.0,78,52,0.0,0.0,449.20662396217745,1325.0,0.0,1813.6529008474488,60,2,2,1,2,1,2,2,2,2,7.0,1,,4,130669,2,2,3,0,1,,266.0,513.0,42,1.0,2.0,4.0,2.0,1.5,2,2,406.289993297234,325.0,22690.69952632422,6,1,2,3,81.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.058393968791611045,15127.13301754948,3,2,3_0,3_1_0,3_1_0,3_0_0 -20692,2,33.0,0.0,6,112,308.0,958.0,0.0,67,46,0.0,0.0,425.7096620933866,1326.0,103.2196202514115,1737.479479011856,20,2,2,1,2,1,2,2,2,2,15.0,1,,4,118350,1,3,2,0,2,,1228.0,706.0,43,2.0,2.0,4.0,5.0,2.4,2,2,361.139113184339,308.0,35392.835073510876,1,1,2,3,80.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03746521004169063,14747.014613962865,3,2,3_0,3_1_0,3_1_0,3_0_0 -20693,2,37.0,0.0,6,112,2079.0,0.0,0.0,34,46,0.0,103.51725048194578,2873.5402191303597,2179.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,131747,2,2,2,0,1,,330.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,462.734196205774,2079.0,61207.283036295856,1,1,1,2,139.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03560033858565255,29146.32525537898,8,4,8,8_1,8_1,8_0_0 -20694,2,56.0,0.0,1,112,692.0,1210.77,0.0,11,54,0.0,0.0,956.464565482544,1903.0,0.0,2195.9165227590656,70,0,0,0,0,0,0,0,0,0,,5,,1,100675,1,1,3,0,1,,377.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,423.638191152402,692.0,43042.13903218475,1,1,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04421248671161608,28694.759354789832,8,4,8,8_1,8_1,8_1_0 -20695,0,66.0,0.0,5,112,2336.0,0.0,0.0,77,72,0.0,0.0,3228.758995617374,2336.0,0.0,0.0,31,2,2,1,1,1,1,2,2,0,,1,,3,113448,2,1,2,0,1,,352.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,513.647824049272,2336.0,58636.64986414593,5,5,5,0,172.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.039838565221789295,39091.099909430624,9,5,9,9_1,9_1,9_0_0 -20696,2,80.0,0.0,5,112,680.0,0.0,0.0,0,74,4032.679167948602,0.0,939.8784747516328,3410.0,51.60981012570575,0.0,42,2,2,1,1,2,2,2,2,0,,1,,3,101410,2,1,2,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,5,5,399.88639023125,680.0,44539.77997713809,0,5,0,1,96.0,9,1,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07656077335250254,44539.77997713809,10,5,10,10_1,10_1,10_0_0 -20697,2,45.0,0.0,9,112,695.0,1238.0,0.0,34,47,0.0,124.22070057833493,960.6110881652718,2053.0,0.0,2245.302291249142,50,0,0,0,0,0,0,0,0,3,45.0,1,2007.0,6,127396,2,1,1,0,1,,232.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,483.053702554974,695.0,54937.556071682695,1,1,1,2,140.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03736970019782531,21975.022428673077,6,3,6,6_1,6_1,6_0_0 -20698,2,60.0,0.0,5,112,1546.0,0.0,0.0,77,77,0.0,0.0,2136.8413558323887,1606.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,126878,1,1,2,0,1,,236.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,485.942910553448,1546.0,23966.170966244787,6,5,0,1,101.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06701112172912288,15977.447310829857,3,2,3_0,3_1_0,3_1_0,3_0_0 -20699,2,45.0,0.0,5,112,1500.0,0.0,0.0,0,46,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,101986,1,1,1,0,1,,210.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,477.436233543942,1500.0,29219.832572261294,0,1,1,2,91.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051334996403229444,14609.916286130647,3,2,3_0,3_1_0,3_1_0,3_0_0 -20700,2,40.0,0.0,6,112,2000.0,0.0,0.0,48,34,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,5.0,1,,4,107977,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,454.720090039445,2000.0,66586.08610902377,4,1,0,1,120.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03003630513325755,27744.202545426575,7,4,7,7_1,7_1,7_0_0 -20701,2,60.0,0.0,6,112,510.0,0.0,0.0,0,78,0.0,414.0690019277831,704.9088560637246,1090.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,109418,2,1,2,0,1,,110.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,587.694469714079,510.0,32557.393700245506,0,7,0,1,100.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033479338365828115,32557.393700245506,8,4,8,8_1,8_1,8_0_0 -20702,1,38.0,250.0,6,112,0.0,0.0,0.0,0,21,0.0,0.0,0.0,1189.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,4,125273,2,1,2,0,2,,1027.0,765.0,32,1.0,0.0,4.0,3.0,1.6,2,2,466.755902346737,0.0,17025.986910223863,0,1,2,3,90.0,9,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06983442465153208,10641.241818889914,2,1,2_1,2_1_1,2_1_1,2_0_0 -20703,2,51.0,0.0,6,112,360.0,0.0,0.0,52,62,0.0,0.0,497.582721927335,420.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,119494,2,2,1,0,1,,360.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,551.104996674125,360.0,43959.42161012587,1,1,1,2,160.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00955426583463634,21979.710805062936,6,3,6,6_1,6_1,6_0_0 -20704,2,43.0,0.0,5,112,380.0,1033.0,0.0,43,34,0.0,0.0,525.2262064788536,1413.0,0.0,1873.5034465754147,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,109859,2,1,2,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,483.414565085489,380.0,54194.12957520825,1,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026072934671625275,21677.6518300833,6,3,6,6_1,6_1,6_0_0 -20705,2,63.0,0.0,5,112,0.0,0.0,0.0,77,72,0.0,0.0,0.0,5381.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,122055,2,1,2,0,1,,155.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,488.251839799715,0.0,46566.69002030031,5,5,1,2,110.0,9,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11555470224862888,31044.46001353354,8,4,8,8_1,8_1,8_0_0 -20706,2,34.0,0.0,5,112,498.0,836.0,0.0,55,64,0.0,134.5724256265295,688.3227653328134,1464.0,0.0,1516.2138251084673,10,2,2,1,2,1,2,2,2,2,20.0,1,,3,114709,2,2,5,0,1,,198.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,514.673758971526,498.0,53099.41108632709,1,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027570927248512834,35399.607390884725,9,5,9,9_1,9_1,9_0_0 -20707,2,52.0,0.0,8,112,0.0,0.0,2600.0,52,54,0.0,0.0,1328.3746705775652,2600.0,0.0,2972.4390140968417,70,2,2,1,1,1,2,2,1,2,20.0,1,2002.0,6,126145,1,1,2,0,1,,400.0,,43,4.0,0.0,6.0,5.0,3.0,2,2,502.086443421319,0.0,59598.38117192284,1,1,1,2,126.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04362534600562063,19866.127057307614,5,3,5,5_1,5_1,5_0_0 -20708,2,25.0,0.0,1,112,1596.0,0.0,0.0,63,43,0.0,0.0,2205.9500672111853,1596.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,15.0,1,,1,105848,2,1,1,0,1,,384.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,424.043521583545,1596.0,43976.83312034358,1,1,1,2,96.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.036291835649750186,29317.888746895722,8,4,8,8_1,8_1,8_1_0 -20709,2,52.0,0.0,1,112,487.08,1350.0,0.0,0,56,0.0,0.0,673.2294227676842,1837.0,0.0,2448.431416144056,71,2,2,1,2,1,2,2,2,0,,1,,1,130599,2,1,2,0,1,,276.0,,32,1.0,2.0,5.0,2.0,1.5,2,2,501.558794938245,487.08,15823.964555890743,0,1,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.11608974435652064,10549.309703927162,2,1,2_0,2_1_0,2_1_0,2_1_0 -20710,2,51.0,0.0,7,112,400.0,1100.0,0.0,42,42,0.0,0.0,552.8696910303722,1500.0,0.0,1995.0181909321939,71,2,2,1,2,2,2,2,1,1,5.0,1,,5,124019,2,2,1,0,1,,233.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,520.868521055839,400.0,60086.60688603316,1,1,1,2,153.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.024963965810967898,40057.737924022105,9,5,9,9_1,9_1,9_0_0 -20711,2,39.0,0.0,9,112,1680.0,0.0,0.0,34,46,0.0,0.0,2322.0527023275636,1680.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2008.0,6,100474,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,483.053702554974,1680.0,73011.84182807402,1,1,1,2,149.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023009966026552392,34767.543727654294,9,5,9,9_1,9_1,9_0_0 -20712,2,46.0,0.0,5,112,710.0,1752.0,0.0,46,46,0.0,0.0,981.3437015789107,2462.0,0.0,3177.5198822847306,50,2,2,1,2,2,2,2,1,0,,1,,3,130862,2,1,2,0,1,,420.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,493.825723366983,710.0,63693.75156364699,1,1,1,2,139.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03865371311249907,26539.063151519582,7,4,7,7_1,7_1,7_0_0 -20713,2,31.0,0.0,7,112,2717.0,0.0,0.0,38,38,0.0,103.51725048194578,3755.3673763238035,2817.0,0.0,0.0,50,2,2,1,2,1,2,2,1,2,60.0,1,,5,101582,2,3,3,0,1,,395.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,571.110644951141,2717.0,92869.65535229653,1,1,1,2,129.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.030332835728891717,61913.10356819769,10,5,10,10_1,10_1,10_0_0 -20714,2,49.0,0.0,7,112,1063.0,1660.0,0.0,37,37,0.0,0.0,1469.251203913214,2723.0,0.0,3010.663815406765,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,121910,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,5.0,3.0,2,2,507.554048165045,1063.0,83235.77549216195,1,1,0,1,202.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03271429843597019,27745.258497387316,7,4,7,7_1,7_1,7_0_0 -20715,2,59.0,0.0,1,112,2000.0,0.0,0.0,75,75,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,132933,2,1,2,0,1,,219.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,409.284352649482,2000.0,39618.35355217921,5,5,0,1,210.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05048165359436018,26412.235701452806,7,4,7,7_1,7_1,7_1_0 -20716,2,46.0,0.0,9,112,4500.0,0.0,0.0,31,31,0.0,0.0,6219.784024091688,4500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,2007.0,6,100726,2,1,1,0,1,,350.0,,43,2.0,0.0,9.0,5.0,2.5999999999999996,1,1,493.461884462652,4500.0,379753.758961835,1,1,1,2,499.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011849783955534847,146059.13806224425,10,5,10,10_1,10_1,10_0_0 -20717,1,33.0,168.0,2,111,519.0,1306.0,0.0,85,55,0.0,0.0,717.348424111908,1825.0,0.0,2368.6306885067684,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,123102,2,3,3,0,1,,499.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,570.300136853948,519.0,30917.489321957164,7,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05902807892954978,14722.613962836744,3,2,3_1,3_1_1,3_3_1,3_0_1 -20718,2,83.0,0.0,2,111,180.0,1915.0,0.0,0,77,0.0,0.0,248.7913609636675,2095.0,0.0,3473.1453051228646,50,0,0,0,0,0,0,0,0,0,,1,,2,113873,2,1,1,0,1,,190.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,609.389499309569,180.0,13814.540488169518,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15165180497998568,13814.540488169518,3,2,3_0,3_1_0,3_3_0,3_0_1 -20719,2,72.0,0.0,8,111,700.0,920.0,0.0,0,78,0.0,0.0,967.5219593031513,1620.0,0.0,1668.560668779653,43,0,0,0,0,0,0,0,0,0,,2,2003.0,6,118064,2,1,0,0,1,,550.0,372.0,11,0.0,2.0,4.0,1.0,1.0,2,2,718.005614961464,700.0,15887.999226508087,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10196375118757156,15887.999226508087,3,2,3_0,3_0_0,3_3_0,3_0_0 -20720,2,56.0,0.0,5,111,1400.0,0.0,0.0,78,63,0.0,103.51725048194578,1935.0439186063027,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,109528,2,1,1,0,1,,400.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,604.168720102936,1400.0,8095.112276458128,6,4,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1852969975922679,5396.741517638752,1,1,1_0,1_1_0,1_3_0,1_0_0 -20721,1,27.0,377.0,2,111,1686.0,2164.0,0.0,85,69,0.0,0.0,2330.345747693019,3850.0,0.0,3924.7448774338795,41,0,0,0,0,0,0,0,0,0,,1,,2,133676,2,1,1,0,1,,2285.0,487.0,42,2.0,0.0,5.0,10.0,4.8999999999999995,2,2,651.561999050599,1686.0,27768.55121918895,6,4,2,3,160.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1386460521332322,5667.0512692222355,1,1,1_1,1_1_1,1_3_1,1_0_1 -20722,1,66.0,181.0,9,111,0.0,0.0,1220.0,0,77,0.0,0.0,623.3142685017806,1220.0,0.0,1394.7598450762105,70,2,2,2,2,1,2,2,1,0,,1,2004.0,6,113507,1,3,2,0,1,,480.0,454.0,21,0.0,0.0,3.0,2.0,1.5,2,2,571.45264311699,0.0,32098.6461860383,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.03800783350578362,21399.097457358865,6,3,6,6_1,6_3,6_0_0 -20723,0,84.0,0.0,2,111,433.0,1287.0,0.0,0,77,0.0,0.0,598.4814405403779,1720.0,0.0,2334.1712833906668,50,0,0,0,0,0,0,0,0,0,,1,,2,124270,2,1,1,0,2,,352.0,,11,0.0,5.0,6.0,1.0,1.0,2,2,616.925554292739,433.0,21763.435548425416,0,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07903163984256346,21763.435548425416,6,3,6,6_1,6_3,6_0_1 -20724,2,41.0,0.0,9,111,980.0,0.0,0.0,0,53,0.0,0.0,1354.530743024412,980.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,2004.0,6,124872,2,1,0,0,1,,312.0,330.0,12,1.0,0.0,2.0,1.0,1.0,2,2,738.954795440632,980.0,26204.900931911998,0,1,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03739758461771433,26204.900931911998,7,4,7,7_0,7_3,7_0_0 -20725,2,25.0,0.0,7,111,780.0,0.0,0.0,67,62,0.0,0.0,1078.0958975092258,830.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,125360,2,1,0,0,1,,252.0,428.0,43,2.0,0.0,3.0,2.0,1.5,2,2,680.659634073039,780.0,34401.14968746555,4,1,2,3,72.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0241271006213615,22934.0997916437,6,3,6,6_0,6_3,6_0_0 -20726,2,50.0,0.0,5,111,498.6,798.3,0.0,75,42,0.0,0.0,689.152069869359,1297.0,0.0,1447.8391107465184,31,0,0,0,0,0,0,0,0,0,,1,,3,121472,2,2,1,0,1,,149.0,370.0,42,1.0,0.0,2.0,2.0,1.5,1,1,791.877564298921,498.6,29241.023060690393,5,1,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044355493216090544,19494.015373793594,5,3,5,5_1,5_3,5_0_0 -20727,1,46.0,196.0,1,111,499.0,575.0,0.0,85,67,0.0,0.0,689.7049395603893,1074.0,0.0,1042.8504179872832,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,121734,2,1,1,0,1,,431.0,296.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,1,1,575.842555897085,499.0,28058.983707593674,6,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03827651105229947,10791.916810612953,2,1,2_1,2_1_1,2_3_1,2_1_0 -20728,0,77.0,0.0,2,111,1813.0,0.0,0.0,78,78,0.0,0.0,2505.881874595162,1813.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,126742,2,1,1,0,1,,199.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,606.274348775345,1813.0,44063.73505407217,5,5,0,1,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04114494601456739,29375.823369381444,8,4,8,8_1,8_3,8_0_1 -20729,2,67.0,0.0,5,111,934.0,0.0,0.0,0,75,1792.3018524216009,0.0,1290.950728555919,2260.0,216.76120252796414,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,121311,1,1,2,0,2,,158.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,733.27515363443,934.0,22627.58301525974,0,5,1,2,200.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09987810003728131,22627.58301525974,6,3,6,6_1,6_3,6_0_0 -20730,1,85.0,141.0,5,111,400.0,1200.0,0.0,0,78,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,0,,1,,3,105801,1,1,1,0,1,,250.0,346.0,11,0.0,2.0,2.0,1.0,1.0,2,2,573.621814088809,400.0,12851.696510297239,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1244971820426994,12851.696510297239,2,1,2_1,2_1_1,2_3_1,2_0_0 -20731,2,53.0,0.0,1,111,600.0,800.0,0.0,54,64,0.0,2587.9312620486444,829.3045365455583,3975.0,129.02452531426437,1450.922320677959,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,124747,2,2,1,0,1,,570.0,,43,2.0,0.0,3.0,3.0,2.0,1,1,565.876780136536,600.0,17695.61536320656,1,1,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2246319169134395,8847.80768160328,1,1,1_0,1_1_0,1_3_0,1_1_0 -20732,2,54.0,0.0,7,111,500.0,1100.0,0.0,0,54,0.0,0.0,691.0871137879653,1600.0,0.0,1995.0181909321939,31,0,0,0,0,0,0,0,0,0,,1,,5,132479,2,1,1,0,1,,400.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,699.322162791575,500.0,7389.81092714583,0,4,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21651433518042237,7389.81092714583,1,1,1_0,1_1_0,1_3_0,1_0_0 -20733,2,67.0,0.0,2,111,997.0,0.0,0.0,0,77,0.0,0.0,1378.0277048932028,997.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,124335,2,1,1,0,1,,235.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,601.586143024428,997.0,12626.325973266741,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07896200384109453,12626.325973266741,2,1,2_0,2_1_0,2_3_0,2_0_1 -20734,2,35.0,0.0,2,111,550.0,1730.0,0.0,48,45,0.0,0.0,760.1958251667618,2280.0,0.0,3137.6195184660864,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,121721,1,1,1,0,1,,280.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,593.282054631346,550.0,38533.5146728293,1,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059169271719915824,18349.292701347284,4,2,4_0,4_1_0,4_3_0,4_0_1 -20735,2,26.0,0.0,1,111,0.0,0.0,0.0,43,47,0.0,0.0,0.0,2589.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,125029,2,1,4,0,1,,207.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,551.028352485895,0.0,42962.41040648002,1,1,1,2,75.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060261981939670244,28641.606937653345,8,4,8,8_1,8_3,8_1_0 -20736,0,54.0,0.0,1,111,319.0,0.0,0.0,0,78,0.0,828.1380038555662,440.91357859672183,1215.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130839,2,2,1,0,2,,184.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,694.388728091892,319.0,20099.801422500397,0,7,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060448358392232074,20099.801422500397,5,3,5,5_1,5_3,5_1_0 -20737,2,66.0,0.0,5,111,1395.0,0.0,0.0,77,77,0.0,103.51725048194578,1928.1330474684232,1555.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,113553,2,1,1,0,1,,294.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,580.871433393704,1395.0,25331.635857791276,5,5,0,1,92.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061385692133330075,16887.757238527516,4,2,4_0,4_1_0,4_3_0,4_0_0 -20738,2,54.0,0.0,2,111,330.0,828.0,0.0,77,48,0.0,0.0,456.1174951000571,1158.0,0.0,1501.7046019016877,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,107627,2,2,0,0,1,,252.0,380.0,42,1.0,1.0,4.0,2.0,1.5,2,2,655.923781610506,330.0,43851.745900627175,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026407158397390926,29234.497267084782,8,4,8,8_0,8_3,8_0_1 -20739,2,30.0,0.0,5,111,0.0,0.0,720.0,67,64,0.0,0.0,367.85760108301804,720.0,0.0,823.1369577498947,60,2,2,2,2,1,1,2,1,2,35.0,2,,3,111915,1,2,0,0,1,,360.0,263.0,43,2.0,0.0,2.0,2.0,1.5,2,2,700.489599105082,0.0,37405.02460502306,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0192487508724513,24936.683070015377,7,4,7,7_0,7_3,7_0_0 -20740,2,56.0,0.0,5,111,930.0,830.0,0.0,78,47,0.0,0.0,1285.4220316456153,1760.0,0.0,1505.3319077033825,70,0,0,0,0,0,0,0,0,2,25.0,1,,3,113284,2,1,2,0,1,,454.0,,42,2.0,3.0,4.0,3.0,2.0,1,1,594.204314228829,930.0,47245.51031723438,6,1,0,1,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03725221694468567,23622.75515861719,6,3,6,6_1,6_3,6_0_0 -20741,2,57.0,0.0,1,111,348.0,1800.0,0.0,63,56,0.0,0.0,480.99663119642383,2148.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,1,118615,2,1,2,0,1,,300.0,,43,3.0,6.0,6.0,3.0,2.0,2,2,534.239324469671,348.0,62893.057077417965,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03415321340407937,31446.528538708983,8,4,8,8_1,8_3,8_1_0 -20742,2,29.0,0.0,1,111,1800.0,0.0,0.0,52,46,0.0,0.0,2487.913609636675,1920.0,206.439240502823,0.0,70,2,2,1,1,1,2,2,2,2,35.0,8,,1,116724,2,3,0,0,1,,354.0,570.0,43,2.0,0.0,4.0,3.0,1.8,3,3,683.244673368903,1800.0,40409.2577446161,1,1,2,3,110.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.04751386457366468,22449.587635897835,6,3,6,6_0,6_3,6_1_0 -20743,2,64.0,0.0,1,111,603.0,1478.0,0.0,85,78,0.0,0.0,833.4510592282861,2081.0,0.0,2680.5789874525294,50,2,2,1,1,2,2,2,2,0,,1,,1,100280,2,1,2,0,1,,262.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,493.196018895375,603.0,16374.34875264886,6,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.12708902390169008,10916.232501765908,2,1,2_0,2_1_0,2_3_0,2_1_0 -20744,2,49.0,0.0,2,111,480.0,1000.0,0.0,54,22,0.0,0.0,663.4436292364467,1555.0,129.02452531426437,1813.6529008474488,60,0,0,0,0,0,0,0,0,0,,1,,2,104504,2,1,3,0,1,,400.0,,43,2.0,2.0,3.0,3.0,2.0,1,1,543.62126857809,480.0,44574.121185819284,4,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03488571302432552,22287.060592909642,6,3,6,6_1,6_3,6_0_1 -20745,2,28.0,0.0,2,111,0.0,0.0,0.0,67,65,0.0,0.0,0.0,2905.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,101593,2,1,3,0,1,,453.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,598.425105309382,0.0,35808.30900620699,1,1,1,2,105.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08112642234785365,17051.575717241423,4,2,4_0,4_1_0,4_3_0,4_0_1 -20746,2,30.0,0.0,6,111,2050.0,0.0,0.0,46,47,0.0,621.1035028916747,2833.4571665306576,2650.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,4,122470,1,1,2,0,1,,320.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,604.936575820775,2050.0,44662.57965061785,4,1,1,2,165.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05933378727180933,21267.895071722785,5,3,5,5_1,5_3,5_0_0 -20747,2,65.0,0.0,1,111,220.0,1980.0,0.0,86,78,0.0,0.0,304.0783300667047,2200.0,0.0,3591.032743677949,71,1,2,2,1,1,2,2,2,0,,1,,1,129790,2,2,2,0,2,,480.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,493.196018895375,220.0,28123.777435707314,5,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.07822562260810574,18749.184957138208,5,3,5,5_1,5_3,5_1_0 -20748,1,49.0,307.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1903.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,119823,1,2,0,0,2,,331.0,266.0,31,1.0,0.0,4.0,2.0,1.5,1,1,537.472208398447,0.0,9379.53376819889,0,7,2,3,140.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.2028885493703409,6253.022512132593,1,1,1_1,1_0_1,1_3_1,1_1_0 -20749,2,33.0,0.0,1,111,391.0,960.0,0.0,63,42,0.0,0.0,540.4301229821889,1351.0,0.0,1741.106784813551,60,1,2,2,1,2,2,2,2,2,10.0,1,,1,105132,2,1,2,0,1,,327.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,616.754148514409,391.0,34472.389513168084,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.039190784830391075,16415.423577699086,4,2,4_0,4_1_0,4_3_0,4_1_0 -20750,2,47.0,0.0,8,111,1750.0,0.0,0.0,62,64,0.0,0.0,2418.8048982578784,1850.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,2002.0,6,128039,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,6.0,3.5,1,1,692.166798631204,1750.0,49398.7808720259,1,1,1,2,117.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03745031693783437,14113.9373920074,3,2,3_0,3_1_0,3_3_0,3_0_0 -20751,2,39.0,0.0,2,111,1500.0,0.0,0.0,43,46,0.0,62.110350289167464,2073.261341363896,1560.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,2,119266,2,1,1,0,1,,520.0,,43,2.0,0.0,5.0,5.0,2.4,4,3,609.588433487534,1500.0,47786.94573421306,1,1,1,2,132.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03264489864400599,19911.227389255444,5,3,5,5_1,5_3,5_0_1 -20752,2,49.0,0.0,1,111,1100.0,0.0,0.0,85,68,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,101273,2,1,3,0,1,,400.0,390.0,42,3.0,0.0,4.0,4.0,2.5,2,2,549.209709682842,1100.0,28541.913105031617,6,1,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03853981321967105,11416.765242012647,2,1,2_0,2_1_0,2_3_0,2_1_0 -20753,1,40.0,128.0,2,111,980.0,0.0,0.0,65,56,2949.8301321105514,0.0,1354.530743024412,3045.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,124378,1,2,1,0,2,,548.0,750.0,43,2.0,0.0,6.0,4.0,2.1,1,1,549.086516742145,980.0,39977.75942718859,4,1,2,3,150.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07616735013741459,19037.028298661233,5,3,5,5_1,5_3,5_0_1 -20754,2,59.0,0.0,5,111,1200.0,0.0,0.0,75,75,0.0,0.0,1658.6090730911167,1440.0,412.878481005646,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,124218,1,1,4,0,1,,336.0,,41,0.0,2.0,5.0,4.0,2.5,3,3,574.399493920929,1200.0,51825.70260063072,5,5,0,1,114.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027785440963466555,20730.28104025229,5,3,5,5_1,5_3,5_0_0 -20755,2,44.0,0.0,1,111,755.0,1172.0,0.0,43,53,0.0,0.0,1043.5415418198277,1927.0,0.0,2125.60119979321,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,125294,2,1,1,0,1,,642.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,514.253058848756,755.0,54939.29435336543,1,1,1,2,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03507507736822538,26161.568739697825,7,4,7,7_1,7_3,7_1_0 -20756,2,55.0,0.0,6,111,280.0,1000.0,0.0,52,67,0.0,0.0,387.00878372126056,1280.0,0.0,1813.6529008474488,50,2,2,2,1,1,2,2,2,2,10.0,1,,4,124524,1,2,3,0,1,,240.0,565.0,43,2.0,3.0,5.0,2.0,1.5,2,2,586.141082246071,280.0,36364.338239052144,1,1,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03519932059771106,24242.892159368097,7,4,7,7_1,7_3,7_0_0 -20757,1,45.0,434.0,5,111,335.0,713.0,0.0,0,68,0.0,0.0,463.0283662379367,1048.0,0.0,1293.134518304231,50,2,2,2,2,2,1,2,1,0,,1,,3,129193,1,2,2,0,1,,402.0,472.0,32,2.0,0.0,4.0,3.0,2.0,4,3,499.358044617005,335.0,19870.094506275887,0,4,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.05274257752870745,9935.047253137944,2,1,2_1,2_1_1,2_3_1,2_0_0 -20758,2,41.0,0.0,2,111,180.0,396.0,0.0,0,67,0.0,0.0,248.7913609636675,576.0,0.0,718.2065487355898,70,1,2,2,1,1,2,2,2,1,15.0,1,,2,128246,1,1,1,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,2,2,777.95971366263,180.0,20727.23030901663,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.027789530555340624,20727.23030901663,5,3,5,5_1,5_3,5_0_1 -20759,2,84.0,0.0,1,111,430.0,1590.0,0.0,0,78,0.0,0.0,594.3349178576501,2020.0,0.0,2883.7081123474436,50,0,0,0,0,0,0,0,0,0,,1,,1,131054,2,1,2,0,1,,114.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,511.311610900679,430.0,23242.89054264539,0,5,0,1,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08690829551917227,23242.89054264539,6,3,6,6_1,6_3,6_1_0 -20760,1,29.0,90.0,2,111,1225.0,0.0,0.0,55,46,0.0,0.0,1693.163428780515,1273.0,82.5756962011292,0.0,70,0,0,0,0,0,0,0,0,1,2.0,1,,2,102128,2,1,1,0,1,,616.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,584.191210633529,1225.0,34590.37339490514,1,1,1,2,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.036802146813121765,14412.655581210474,3,2,3_1,3_1_1,3_3_1,3_0_1 -20761,0,81.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,1242.2070057833494,0.0,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119453,2,1,1,0,1,,0.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,738.601829682066,0.0,26676.55165070071,0,5,5,0,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04498332527054635,26676.55165070071,7,4,7,7_1,7_3,7_0_1 -20762,1,36.0,159.0,9,111,1866.0,0.0,0.0,85,64,0.0,0.0,2579.1371086566865,1866.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2010.0,6,113866,2,1,1,0,1,,545.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,644.169576881623,1866.0,34004.663758807,6,1,1,2,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05487482579552687,12594.319910669261,2,1,2_1,2_1_1,2_3_1,2_0_0 -20763,0,41.0,0.0,1,111,316.0,756.0,0.0,0,47,0.0,0.0,436.76705591399406,1072.0,0.0,1371.1215930406713,41,0,0,0,0,0,0,0,0,0,,1,,1,130401,2,1,2,0,1,,372.0,,22,1.0,2.0,4.0,2.0,1.5,3,2,493.196018895375,316.0,34600.677634113,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030982052182212443,23067.118422742,6,3,6,6_1,6_3,6_1_0 -20764,2,59.0,0.0,2,111,1500.0,0.0,0.0,75,48,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,126083,2,2,2,0,1,,600.0,,42,2.0,0.0,5.0,4.0,2.5,2,2,550.027088877553,1500.0,108898.36578872518,5,1,0,1,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013774311387832626,43559.34631549007,10,5,10,10_1,10_3,10_0_1 -20765,2,48.0,0.0,2,111,589.0,1022.0,0.0,85,45,0.0,305.37588892174006,814.1006200422231,1906.0,0.0,1853.5532646660927,60,0,0,0,0,0,0,0,0,2,2.0,1,,2,119429,2,1,1,0,1,,495.0,,42,2.0,0.0,5.0,3.0,2.0,2,1,617.885316089164,589.0,51714.87563236865,6,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03685593316610479,25857.437816184323,7,4,7,7_1,7_3,7_0_1 -20766,2,52.0,0.0,5,111,0.0,0.0,0.0,52,46,0.0,0.0,0.0,1019.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,132777,2,2,2,0,1,,600.0,,43,2.0,2.0,4.0,3.0,2.0,2,1,299.601206430413,0.0,59075.51080541278,1,1,0,1,90.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017249110267644682,29537.75540270639,8,4,8,8_1,8_2,8_0_0 -20767,2,52.0,0.0,2,111,550.0,2200.0,0.0,55,43,0.0,0.0,760.1958251667618,2750.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,0,,1,,2,108592,2,3,2,0,1,,550.0,,43,2.0,1.0,8.0,4.0,2.5,1,1,299.058238350442,550.0,53514.08720378624,1,1,0,1,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05138833798150688,21405.634881514496,6,3,6,6_1,6_2,6_0_1 -20768,2,43.0,0.0,2,111,460.0,320.0,0.0,78,48,0.0,0.0,635.800144684928,780.0,0.0,580.3689282711837,50,0,0,0,0,0,0,0,0,2,4.0,2,,2,125023,2,1,0,1,1,1204.0,520.0,402.0,42,1.0,3.0,5.0,4.0,2.3,1,1,265.267888251799,460.0,35420.8475413262,6,1,2,3,88.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02202092988006452,15400.368496228783,3,2,3_0,3_0_0,3_2_0,3_0_1 -20769,1,95.0,118.0,2,111,180.0,140.0,0.0,0,77,0.0,0.0,248.7913609636675,320.0,0.0,253.91140611864284,12,0,0,0,0,0,0,0,0,0,,2,,2,110469,2,2,0,1,1,112.0,150.0,391.0,11,0.0,4.0,5.0,1.0,1.0,1,1,333.775570238204,180.0,17192.408420880747,0,5,2,3,85.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018612866339968368,17192.408420880747,4,2,4_1,4_0_1,4_2_1,4_0_1 -20770,2,68.0,0.0,2,111,1198.0,0.0,0.0,86,78,0.0,93.1655254337512,1655.844724635965,1288.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,110846,2,1,1,0,1,,171.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,289.259661135403,1198.0,20500.009807084694,6,5,0,1,90.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06282923823552874,13666.673204723129,3,2,3_0,3_1_0,3_2_0,3_0_1 -20771,1,83.0,209.0,5,111,210.0,830.0,0.0,0,78,0.0,0.0,290.25658779094545,1040.0,0.0,1505.3319077033825,71,2,2,2,2,1,2,2,2,0,,1,,3,114860,1,1,1,0,1,,171.0,351.0,11,0.0,5.0,3.0,1.0,1.0,2,2,274.52937238497,210.0,11231.043474744454,0,5,2,3,55.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.0926004785164153,11231.043474744454,2,1,2_1,2_1_1,2_2_1,2_0_0 -20772,2,45.0,0.0,1,111,720.0,920.0,0.0,55,62,0.0,0.0,995.16544385467,1640.0,0.0,1668.560668779653,44,0,0,0,0,0,0,0,0,2,5.0,1,,1,105749,1,2,5,0,2,,650.0,575.0,43,3.0,2.0,5.0,3.0,2.0,2,2,254.313082486063,720.0,37825.99565621874,4,1,2,3,120.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043356426487887505,18912.99782810937,5,3,5,5_1,5_2,5_1_0 -20773,2,69.0,0.0,1,111,550.0,2000.0,0.0,0,72,0.0,0.0,760.1958251667618,2550.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,0,,1,,1,131205,2,1,1,0,1,,210.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,267.648363623662,550.0,29729.720160893947,0,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0857727548796182,29729.720160893947,8,4,8,8_1,8_2,8_1_0 -20774,1,28.0,134.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,913.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,130680,1,2,0,0,1,,186.0,271.0,11,0.0,0.0,2.0,1.0,1.0,4,3,397.134882461857,0.0,7043.378359841876,0,7,2,3,54.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1296252953278087,7043.378359841876,1,1,1_1,1_0_1,1_2_1,1_0_0 -20775,2,84.0,0.0,5,111,175.0,866.0,0.0,0,78,0.0,0.0,241.88048982578783,1041.0,0.0,1570.6234121338907,71,0,0,0,0,0,0,0,0,0,,2,,3,104774,1,2,0,0,1,,310.0,325.0,11,0.0,3.0,3.0,1.0,1.0,1,1,385.7695468053,175.0,19525.117853561496,0,5,2,3,55.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05331593938676869,19525.117853561496,5,3,5,5_0,5_2,5_0_0 -20776,2,58.0,0.0,5,111,500.0,1000.0,0.0,78,78,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,12,0,0,0,0,0,0,0,0,0,,1,,3,122421,2,2,3,0,1,,360.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,312.800343734179,500.0,19723.838105975123,6,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07605010708060879,13149.225403983415,2,1,2_0,2_1_0,2_2_0,2_0_0 -20777,1,58.0,243.0,5,111,670.0,1250.0,0.0,52,63,0.0,0.0,926.0567324758734,1920.0,0.0,2267.066126059311,10,0,0,0,0,0,0,0,0,2,5.0,1,,3,104817,2,2,3,0,1,,680.0,602.0,43,2.0,6.0,5.0,5.0,2.4,2,2,270.836905647334,670.0,32875.9747286483,1,1,2,3,140.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0584013102530737,13698.32280360346,3,2,3_1,3_1_1,3_2_1,3_0_0 -20778,2,75.0,0.0,2,111,383.0,941.0,0.0,0,78,0.0,0.0,529.3727291615814,1324.0,0.0,1706.6473796974494,31,0,0,0,0,0,0,0,0,0,,1,,2,104620,2,1,2,0,1,,210.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,325.593317600193,383.0,15624.843331924389,0,5,0,1,96.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0847368496357866,15624.843331924389,3,2,3_0,3_1_0,3_2_0,3_0_1 -20779,1,39.0,606.0,5,111,867.0,1896.0,0.0,0,85,0.0,0.0,1198.345055308332,2763.0,0.0,3438.685900006763,50,1,2,2,2,1,2,2,2,0,,1,,3,132667,1,3,3,0,2,,650.0,603.0,31,0.0,1.0,6.0,6.0,3.0999999999999996,3,2,312.357141882356,867.0,22280.301384548125,0,6,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.12401088981301665,7187.193995015526,1,1,1_1,1_1_1,1_2_1,1_0_0 -20780,2,73.0,0.0,2,111,659.0,1625.0,0.0,77,74,0.0,0.0,910.8528159725382,2284.0,0.0,2947.1859638771043,41,0,0,0,0,0,0,0,0,0,,1,,2,110165,2,3,4,0,1,,680.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,299.800944020623,659.0,32831.41565401875,5,5,0,1,93.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06956751497008402,21887.6104360125,6,3,6,6_1,6_2,6_0_1 -20781,1,45.0,312.0,2,111,300.0,100.0,0.0,0,67,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,10,2,2,2,2,1,2,2,2,0,,2,,2,107867,2,3,0,1,1,481.0,330.0,288.0,32,1.0,0.0,3.0,2.0,1.5,3,3,294.904136648189,300.0,8122.752176085465,0,4,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04924439295066231,5415.16811739031,1,1,1_1,1_0_1,1_2_1,1_0_1 -20782,2,43.0,0.0,5,111,180.0,90.0,0.0,0,62,0.0,0.0,248.7913609636675,270.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,0,,2,,3,102004,2,1,0,1,1,421.0,120.0,295.0,12,1.0,1.0,4.0,1.0,1.0,2,1,290.48292601894,180.0,24375.277315036594,0,1,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011076797055902322,24375.277315036594,7,4,7,7_0,7_2,7_0_0 -20783,1,29.0,296.0,2,111,600.0,450.0,0.0,85,63,0.0,0.0,829.3045365455583,1050.0,0.0,816.143805381352,20,2,1,2,1,1,2,2,2,0,,2,,2,112384,1,1,0,1,1,617.0,480.0,260.0,42,1.0,0.0,3.0,4.0,2.1,2,2,279.058234330673,600.0,13176.480078892944,6,4,2,3,55.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07968744260327668,6274.514323282354,1,1,1_1,1_0_1,1_2_1,1_0_1 -20784,2,66.0,0.0,2,111,269.0,962.0,0.0,0,78,0.0,93.1655254337512,371.80486721792533,1321.0,0.0,1744.7340906152458,60,0,0,0,0,0,0,0,0,0,,1,,2,125089,2,1,2,0,2,,199.0,,11,0.0,4.0,4.0,1.0,1.0,3,3,342.204917410436,269.0,19876.91694107452,0,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06645899884353938,19876.91694107452,5,3,5,5_1,5_2,5_0_1 -20785,2,81.0,0.0,2,111,800.0,1200.0,0.0,78,78,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,2,130819,2,1,1,0,1,,300.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,299.800944020623,800.0,30362.57708137455,5,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06587056146913395,20241.7180542497,5,3,5,5_1,5_2,5_0_1 -20786,2,38.0,0.0,9,111,2400.0,0.0,0.0,22,48,0.0,538.289702506118,3317.2181461822333,2920.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,104149,1,2,1,0,1,,450.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,304.893052208639,2400.0,50880.45430041758,1,1,1,2,120.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05738942468475631,19569.40550016061,5,3,5,5_1,5_2,5_0_0 -20787,2,53.0,0.0,9,111,1300.0,1500.0,0.0,85,22,0.0,0.0,1796.8264958487098,2800.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,105405,2,1,1,0,1,,650.0,970.0,42,1.0,0.0,5.0,4.0,2.5,1,1,325.411279478995,1300.0,29813.978741932813,6,1,2,3,200.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.093915677080089,11925.591496773126,2,1,2_0,2_1_0,2_2_0,2_0_0 -20788,1,42.0,324.0,2,111,450.0,0.0,0.0,0,67,0.0,336.43106406632376,621.9784024091688,1096.0,552.2249683450515,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105227,1,3,3,0,2,,650.0,342.0,12,1.0,2.0,3.0,1.0,1.0,1,1,437.378647884979,450.0,9405.248144707844,0,4,2,3,48.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1165306840539554,9405.248144707844,1,1,1_1,1_1_1,1_2_1,1_0_1 -20789,2,67.0,0.0,2,111,360.0,2000.0,0.0,0,78,0.0,0.0,497.582721927335,2360.0,0.0,3627.3058016948976,12,0,0,0,0,0,0,0,0,0,,1,,2,105013,1,1,2,0,2,,200.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,303.528126989773,360.0,31528.482351692815,0,5,0,1,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0748529527579144,21018.988234461878,5,3,5,5_1,5_2,5_0_1 -20790,2,61.0,0.0,1,111,320.0,1100.0,0.0,77,75,0.0,155.27587572291867,442.2957528242978,1570.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,1,,1,127211,2,2,2,0,1,,350.0,,41,0.0,2.0,5.0,3.0,2.0,2,2,242.26712741464,320.0,21476.06085085496,6,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07310465410315219,10738.03042542748,2,1,2_0,2_1_0,2_2_0,2_1_0 -20791,2,67.0,0.0,1,111,1050.0,0.0,0.0,75,75,0.0,0.0,1451.2829389547271,1150.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132193,2,1,2,0,1,,220.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,227.222765258955,1050.0,20367.52702879512,5,5,0,1,80.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056462426605554894,13578.35135253008,3,2,3_0,3_1_0,3_2_0,3_1_0 -20792,2,42.0,0.0,7,111,341.0,396.0,0.0,55,55,0.0,0.0,471.32141160339233,737.0,0.0,718.2065487355898,31,0,0,0,0,0,0,0,0,2,5.0,2,,5,108652,2,1,0,0,1,,400.0,506.0,43,2.0,0.0,4.0,3.0,1.8,2,2,348.943574183953,341.0,33059.92569244254,1,1,2,3,77.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02229285107463134,18366.625384690302,4,2,4_0,4_0_0,4_2_0,4_0_0 -20793,2,53.0,0.0,5,120,1500.0,0.0,0.0,85,52,1941.6603401234008,0.0,2073.261341363896,2800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,105242,2,2,2,0,1,,150.0,,42,1.0,0.0,4.0,3.0,2.0,2,2,181.444710672546,1500.0,35666.611702779126,7,1,0,1,150.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07850479387650454,17833.305851389563,4,2,4_0,4_1_0,4_0_0,4_0_0 -20794,2,77.0,0.0,1,120,600.0,0.0,0.0,71,33,0.0,517.5862524097289,829.3045365455583,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,109098,2,1,2,0,1,,60.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,213.2534228917,600.0,28157.940423647582,5,1,0,1,60.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03906535717634372,18771.960282431723,5,3,5,5_1,5_0,5_1_0 -20795,1,35.0,340.0,9,120,1292.0,0.0,0.0,67,65,0.0,558.9931526025072,1785.7691020281022,1912.0,137.62616033521533,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,2009.0,6,103315,2,1,1,0,1,,130.0,640.0,43,2.0,0.0,5.0,5.0,2.4,2,2,241.19971628776,1292.0,31183.291504636523,4,1,2,3,130.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.061314887163714325,12993.038126931886,2,1,2_1,2_1_1,2_0_1,2_0_0 -20796,2,67.0,0.0,1,120,1500.0,0.0,0.0,22,74,2389.735803228801,0.0,2073.261341363896,3100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,123042,2,2,2,0,1,,200.0,,41,0.0,0.0,8.0,2.0,1.5,1,1,202.887799879896,1500.0,56516.94344942374,5,5,0,1,200.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05485080775421177,37677.96229961583,9,5,9,9_1,9_0,9_1_0 -20797,2,68.0,0.0,2,120,790.0,0.0,0.0,0,78,2091.018827825201,0.0,1091.917639784985,2250.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119668,1,2,3,0,2,,110.0,,11,0.0,0.0,5.0,1.0,1.0,4,3,266.405300337139,790.0,27912.89306507005,0,5,0,1,90.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08060791100208922,27912.89306507005,7,4,7,7_1,7_0,7_0_1 -20798,2,75.0,0.0,1,120,450.0,0.0,0.0,0,78,0.0,0.0,621.9784024091688,450.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,114372,1,1,3,0,2,,100.0,,11,0.0,0.0,4.0,1.0,1.0,5,4,244.216549384017,450.0,10431.208295507593,0,5,0,1,70.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043139777027921246,10431.208295507593,2,1,2_0,2_1_0,2_0_0,2_1_0 -20799,2,51.0,0.0,1,120,1800.0,0.0,0.0,56,46,373.3962192545002,0.0,2487.913609636675,2050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109746,2,1,3,0,1,,500.0,,43,2.0,0.0,7.0,6.0,2.9,1,1,266.923277478164,1800.0,53349.14923971874,1,1,0,1,99.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03842610480606809,18396.258358523704,4,2,4_0,4_1_0,4_0_0,4_1_0 -20800,0,44.0,0.0,1,120,900.0,0.0,0.0,56,47,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,109726,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,232.56138558954,900.0,32150.9499786823,1,1,5,0,140.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02985914881633446,13396.229157784292,3,2,3_0,3_1_0,3_0_0,3_1_0 -20801,2,52.0,0.0,6,120,1600.0,0.0,0.0,0,46,0.0,517.5862524097289,2211.478764121489,2220.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,132057,2,1,2,0,1,,418.0,,32,2.0,1.0,4.0,2.0,1.5,4,3,286.087891232232,1600.0,25304.85277040983,0,1,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08773020812023659,16869.901846939887,4,2,4_0,4_1_0,4_0_0,4_0_0 -20802,2,46.0,0.0,5,120,715.0,0.0,0.0,47,43,2539.0942909306013,0.0,988.2545727167903,2535.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,3,60.0,1,,3,131729,2,1,2,0,1,,500.0,,43,2.0,2.0,5.0,4.0,2.5,3,3,288.916785756144,715.0,67888.96013524564,1,1,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03734038634484717,27155.584054098254,7,4,7,7_1,7_0,7_0_0 -20803,2,42.0,0.0,9,120,1060.0,0.0,0.0,56,48,0.0,414.0690019277831,1465.1046812304864,1460.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,107611,2,1,1,0,1,,480.0,,43,3.0,0.0,6.0,5.0,3.0,1,1,294.675850551781,1060.0,62998.75485346584,1,1,1,2,110.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023175061211859475,20999.58495115528,5,3,5,5_1,5_0,5_0_0 -20804,2,34.0,0.0,2,120,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1654.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,123734,1,1,3,0,1,,807.0,600.0,43,2.0,0.0,5.0,4.0,2.3,2,2,261.080987465023,0.0,58779.318511803715,1,1,2,3,90.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02813914897070223,25556.22543991466,7,4,7,7_1,7_0,7_0_1 -20805,2,52.0,0.0,5,120,1200.0,0.0,0.0,46,62,0.0,0.0,1658.6090730911167,1300.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,119931,1,1,2,0,1,,500.0,,43,3.0,5.0,5.0,3.0,2.0,1,1,249.056800435699,1200.0,55147.199365978435,1,1,0,1,115.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023573273256773938,27573.599682989217,7,4,7,7_1,7_0,7_0_0 -20806,2,48.0,0.0,8,120,600.0,0.0,0.0,21,21,0.0,0.0,829.3045365455583,720.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,119525,2,1,1,0,1,,360.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,319.350879066902,600.0,30896.56806766092,1,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023303559101556515,20597.71204510728,5,3,5,5_1,5_0,5_0_0 -20807,2,62.0,0.0,5,120,1485.0,0.0,0.0,77,21,0.0,0.0,2052.528727950257,1575.0,154.82943037711726,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,113774,2,1,4,0,1,,114.0,,42,1.0,2.0,4.0,2.0,1.5,4,4,318.842425656306,1485.0,14496.429388665125,6,1,0,1,95.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10864744398586215,9664.286259110084,1,1,1_0,1_1_0,1_0_0,1_0_0 -20808,2,58.0,0.0,1,120,450.0,0.0,0.0,77,37,1941.6603401234008,0.0,621.9784024091688,1800.0,86.01635020950958,0.0,60,2,2,1,2,1,2,2,2,2,25.0,1,,1,109543,2,1,2,0,1,,400.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,238.682916650354,450.0,40239.14166637905,6,1,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04473256449960391,20119.570833189526,5,3,5,5_1,5_0,5_1_0 -20809,1,53.0,150.0,2,120,720.0,0.0,0.0,85,62,0.0,1345.724256265295,995.16544385467,2140.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,110721,2,1,2,0,2,,300.0,,42,1.0,0.0,4.0,5.0,2.8,4,4,321.913633694962,720.0,27443.132118247748,6,1,1,2,90.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07797943728795631,9801.11861365991,2,1,2_1,2_1_1,2_0_1,2_0_1 -20810,2,65.0,0.0,2,120,268.0,0.0,0.0,0,78,1493.5848770180007,0.0,370.4226929903494,1348.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114711,1,1,2,0,2,,147.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,385.494803262566,268.0,17065.34152835702,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07899050820401482,17065.34152835702,4,2,4_0,4_1_0,4_0_0,4_0_1 -20811,2,76.0,0.0,1,120,610.0,0.0,0.0,72,72,1493.5848770180007,828.1380038555662,843.1262788213177,2470.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,129486,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,252.61462547799,610.0,32842.00829798893,5,5,0,1,110.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07520855538396688,21894.672198659286,6,3,6,6_1,6_0,6_1_0 -20812,2,45.0,0.0,8,120,1200.0,0.0,0.0,52,47,0.0,931.655254337512,1658.6090730911167,2220.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,105440,1,1,1,0,1,,460.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,351.14123749257,1200.0,62158.467250745205,1,1,1,2,168.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03571516638344046,41438.97816716347,9,5,9,9_1,9_0,9_0_0 -20813,2,33.0,0.0,9,120,0.0,0.0,0.0,52,62,0.0,0.0,0.0,557.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,132261,2,1,1,0,1,,262.0,610.0,43,2.0,0.0,5.0,2.0,1.5,2,2,217.325722685375,0.0,5736.903577191529,1,1,2,3,110.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09709070276420376,3824.6023847943525,1,1,1_0,1_1_0,1_0_0,1_0_0 -20814,2,24.0,0.0,7,111,800.0,0.0,0.0,0,46,2688.452778632401,0.0,1105.7393820607444,2720.0,206.439240502823,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,127055,2,1,2,0,1,,400.0,,22,1.0,2.0,6.0,2.0,1.5,2,2,371.310713869442,800.0,64164.95968239766,0,1,0,1,200.0,6,5,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042390738082956764,42776.63978826511,9,5,9,9_1,9_2,9_0_0 -20815,2,59.0,0.0,6,111,2500.0,0.0,0.0,0,52,0.0,569.3448776507017,3455.435568939826,3170.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112238,2,1,3,0,1,,500.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,431.848190333827,2500.0,27887.906911610808,0,4,0,1,127.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11366934098163556,27887.906911610808,7,4,7,7_1,7_2,7_0_0 -20816,2,57.0,0.0,5,111,730.0,0.0,0.0,62,52,0.0,828.1380038555662,1008.9871861304293,1650.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,104757,2,1,2,0,2,,500.0,,43,2.0,1.0,5.0,2.0,1.5,4,3,396.3710594248,730.0,14205.21613021846,4,1,0,1,130.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11615451569863759,9470.144086812306,1,1,1_0,1_1_0,1_2_0,1_0_0 -20817,2,50.0,0.0,2,111,410.0,0.0,0.0,0,21,1493.5848770180007,0.0,566.6914333061316,1460.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,2,109596,2,1,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,330.885441176584,410.0,34079.27229962791,0,1,1,2,120.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04284129036452286,34079.27229962791,9,5,9,9_1,9_2,9_0_1 -20818,1,33.0,411.0,1,111,1300.0,0.0,0.0,85,43,2987.1697540360015,0.0,1796.8264958487098,3480.0,309.6588607542345,0.0,50,1,2,1,2,1,2,2,2,0,,1,,1,104188,1,2,2,0,2,,850.0,721.0,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,334.145680938492,1300.0,35464.5376162224,6,1,2,3,130.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.09812619122963435,13135.013931934223,2,1,2_1,2_1_1,2_2_1,2_1_0 -20819,2,58.0,0.0,1,111,800.0,0.0,0.0,11,11,4480.754631054002,0.0,1105.7393820607444,3960.0,275.25232067043066,0.0,60,0,0,0,0,0,0,0,0,0,,5,,1,103211,2,2,4,0,2,,400.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,291.712674711435,800.0,29639.850839682553,1,1,0,1,100.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13360391121463594,14819.925419841276,3,2,3_0,3_1_0,3_2_0,3_1_0 -20820,1,49.0,87.0,7,111,1050.0,0.0,0.0,0,52,0.0,1035.1725048194578,1451.2829389547271,2050.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,1,,5,114912,1,3,3,0,1,,360.0,424.0,12,1.0,3.0,4.0,1.0,1.0,1,1,368.12885992441,1050.0,12265.155699169054,0,1,2,3,90.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.16714015298956902,12265.155699169054,2,1,2_1,2_1_1,2_2_1,2_0_0 -20821,2,57.0,0.0,7,111,600.0,0.0,0.0,78,62,0.0,517.5862524097289,829.3045365455583,1220.0,206.439240502823,0.0,70,2,2,2,2,1,2,2,2,2,15.0,1,,5,111858,2,1,4,0,1,,200.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,308.032630682601,600.0,21045.10531719033,6,1,0,1,90.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.057970724385183484,14030.070211460219,3,2,3_0,3_1_0,3_2_0,3_0_0 -20822,2,49.0,0.0,7,111,660.0,0.0,0.0,52,62,0.0,1138.6897553014035,912.2349902001142,1880.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,133599,2,1,2,0,1,,500.0,,43,3.0,1.0,4.0,4.0,2.3,1,1,387.92031139883,660.0,38064.729324358086,1,1,1,2,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04938955388281101,16549.8823149383,4,2,4_0,4_1_0,4_2_0,4_0_0 -20823,1,35.0,459.0,7,111,1800.0,0.0,0.0,0,55,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,112157,2,2,5,0,1,,700.0,590.0,32,1.0,0.0,4.0,4.0,1.9,2,2,311.099316943282,1800.0,15478.367247047263,0,4,2,3,78.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11629133559570876,8146.509077393297,1,1,1_1,1_1_1,1_2_1,1_0_0 -20824,2,44.0,0.0,6,111,1400.0,0.0,0.0,62,22,0.0,931.655254337512,1935.0439186063027,2400.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,4,133084,2,1,2,0,1,,600.0,,43,4.0,0.0,6.0,5.0,3.0,1,1,420.00798671168,1400.0,35547.92102653624,1,1,1,2,110.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.067514496788952,11849.307008845413,2,1,2_0,2_1_0,2_2_0,2_0_0 -20825,2,56.0,0.0,1,111,550.0,0.0,0.0,0,52,0.0,828.1380038555662,760.1958251667618,1500.0,258.04905062852873,0.0,71,2,2,2,2,1,2,2,2,1,10.0,1,,1,128577,1,2,3,0,2,,500.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,370.787117187628,550.0,13155.02596088227,0,1,0,1,90.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.11402486049517452,13155.02596088227,2,1,2_0,2_1_0,2_2_0,2_1_0 -20826,2,36.0,0.0,9,111,2000.0,0.0,0.0,42,38,0.0,0.0,2764.3484551518613,2120.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,123055,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,352.504513880654,2000.0,77293.07650377689,1,1,1,2,150.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027428071127384965,36806.22690656042,9,5,9,9_1,9_2,9_0_0 -20827,2,59.0,0.0,2,111,600.0,0.0,0.0,0,68,2688.452778632401,0.0,829.3045365455583,2400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,120426,2,1,1,0,1,,430.0,,12,1.0,1.0,6.0,1.0,1.0,2,2,286.653671486877,600.0,14682.004073963466,0,1,0,1,80.0,7,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16346542256149302,14682.004073963466,3,2,3_0,3_1_0,3_2_0,3_0_1 -20828,2,50.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,835.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,,2,100155,2,1,0,0,1,,0.0,469.0,12,1.0,0.0,2.0,1.0,1.0,2,2,434.524281998713,0.0,19889.60551068223,0,1,2,3,50.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041981727568781664,19889.60551068223,5,3,5,5_0,5_2,5_0_1 -20829,2,93.0,0.0,2,111,350.0,1300.0,0.0,0,78,0.0,0.0,483.76097965157567,1650.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,2,110002,2,1,3,0,1,,280.0,,21,1.0,2.0,6.0,2.0,1.5,1,1,265.237839724293,350.0,21085.74491597938,0,5,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07825191884729588,14057.163277319587,3,2,3_0,3_1_0,3_2_0,3_0_1 -20830,2,62.0,0.0,1,111,1164.0,300.0,0.0,78,77,0.0,776.3793786145933,1608.850800898383,2214.0,0.0,544.0958702542347,20,0,0,0,0,0,0,0,0,0,,1,,1,121192,2,1,1,0,1,,552.0,,41,1.0,4.0,9.0,4.0,2.5,2,2,231.004336577559,1164.0,23136.58955388824,5,5,0,1,150.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09569258229884293,9254.635821555295,1,1,1_0,1_1_0,1_2_0,1_1_0 -20831,2,48.0,0.0,2,111,600.0,1800.0,0.0,55,33,0.0,0.0,829.3045365455583,2400.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,1,5.0,1,,2,117503,2,1,3,0,1,,630.0,,43,3.0,0.0,4.0,5.0,3.0,3,2,243.689997300599,600.0,56355.16916555833,1,1,1,2,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042587042777732786,18785.056388519442,5,3,5,5_1,5_2,5_0_1 -20832,1,67.0,33.0,2,111,800.0,0.0,0.0,78,78,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115725,1,2,0,0,1,,0.0,535.0,41,0.0,5.0,2.0,2.0,1.5,1,1,329.514425256236,800.0,18765.829844509157,5,5,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.042630675362010616,12510.55322967277,2,1,2_1,2_0_1,2_2_1,2_0_1 -20833,2,81.0,0.0,2,111,290.0,1100.0,0.0,77,71,0.0,0.0,400.8305259970199,1390.0,0.0,1995.0181909321939,12,0,0,0,0,0,0,0,0,0,,1,,2,109792,2,2,3,0,1,,231.0,,41,0.0,4.0,3.0,2.0,1.5,3,2,241.425936651937,290.0,31818.896415379426,5,5,0,1,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043684733180380006,21212.59761025295,5,3,5,5_1,5_2,5_0_1 -20834,2,50.0,0.0,2,111,800.0,1000.0,0.0,22,53,0.0,113.86897553014036,1105.7393820607444,1910.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,132370,2,1,2,0,2,,400.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,250.965960556814,800.0,33541.28949182375,1,1,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05694473972044499,16770.644745911875,4,2,4_0,4_1_0,4_2_0,4_0_1 -20835,2,77.0,0.0,2,111,300.0,1300.0,0.0,78,77,0.0,0.0,414.65226827277917,1600.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,1,,2,125678,2,1,2,0,1,,330.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,249.123228958179,300.0,33737.01608942772,5,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04742565245719515,22491.34405961848,6,3,6,6_1,6_2,6_0_1 -20836,1,81.0,78.0,1,111,275.0,1037.0,0.0,0,77,0.0,0.0,380.0979125833809,1312.0,0.0,1880.7580581788045,71,2,2,2,2,1,2,2,2,0,,1,,1,121462,1,2,5,0,1,,114.0,546.0,11,0.0,2.0,4.0,1.0,1.0,1,1,215.76825580473,275.0,12641.1161011261,0,5,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.10378830393647948,12641.1161011261,2,1,2_1,2_1_1,2_2_1,2_1_0 -20837,2,49.0,0.0,7,111,1400.0,1500.0,0.0,22,22,0.0,113.86897553014036,1935.0439186063027,3010.0,0.0,2720.4793512711735,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,130457,2,1,2,0,1,,800.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,265.237839724293,1400.0,32179.928507811004,1,1,1,2,140.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0935365657903617,21453.285671874004,6,3,6,6_1,6_2,6_0_0 -20838,2,77.0,0.0,2,111,410.0,1200.0,0.0,0,86,0.0,0.0,566.6914333061316,1610.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,2,120859,2,1,1,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,272.738687123383,410.0,15135.34216400762,0,6,0,1,128.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10637354494889696,15135.34216400762,3,2,3_0,3_1_0,3_2_0,3_0_1 -20839,2,38.0,0.0,2,111,650.0,1380.0,0.0,85,33,0.0,0.0,898.4132479243549,2030.0,0.0,2502.8410031694793,71,0,0,0,0,0,0,0,0,3,130.0,1,,2,128883,2,1,2,0,1,,600.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,254.347810666997,650.0,37368.050117152496,6,1,1,2,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054324482910822244,15570.020882146873,3,2,3_0,3_1_0,3_2_0,3_0_1 -20840,2,64.0,0.0,2,111,600.0,1800.0,0.0,72,74,0.0,455.47590212056144,829.3045365455583,2840.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,,2,111384,2,1,1,0,1,,400.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,265.237839724293,600.0,50756.07769405297,6,5,0,1,180.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05595389023397211,33837.385129368646,9,5,9,9_1,9_2,9_0_1 -20841,1,86.0,268.0,2,111,600.0,550.0,0.0,0,86,0.0,0.0,829.3045365455583,1150.0,0.0,997.5090954660969,50,0,0,0,0,0,0,0,0,0,,1,,2,126970,1,1,2,0,1,,160.0,608.0,11,0.0,2.0,3.0,1.0,1.0,1,1,309.247127553659,600.0,9594.994718852857,0,5,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11985415664069171,9594.994718852857,1,1,1_1,1_1_1,1_2_1,1_0_1 -20842,1,41.0,170.0,5,111,330.0,1250.0,0.0,0,67,0.0,0.0,456.1174951000571,1580.0,0.0,2267.066126059311,50,2,2,2,2,1,2,2,2,2,10.0,2,,3,109408,2,3,0,0,1,,600.0,380.0,32,2.0,1.0,4.0,3.0,2.0,2,2,257.586362710163,330.0,25558.24836327921,0,1,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.06181957298255476,12779.124181639605,2,1,2_1,2_0_1,2_2_1,2_0_0 -20843,1,34.0,106.0,2,111,350.0,900.0,0.0,0,52,0.0,0.0,483.76097965157567,1250.0,0.0,1632.287610762704,44,2,2,2,2,1,2,2,2,3,1.0,2,,2,107767,1,3,0,0,1,,400.0,372.0,32,1.0,0.0,4.0,3.0,1.8,1,1,270.977373248159,350.0,24938.964612346135,0,1,2,3,63.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05012236953017618,13854.980340192296,3,2,3_1,3_0_1,3_2_1,3_0_1 -20844,2,46.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,103587,2,2,0,0,1,,442.0,321.0,12,1.0,0.0,3.0,1.0,1.0,1,1,293.629410055721,0.0,18887.75514536596,0,1,2,3,56.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09529983770684486,18887.75514536596,5,3,5,5_0,5_2,5_0_1 -20845,1,36.0,194.0,2,111,0.0,0.0,1750.0,0,68,0.0,0.0,894.0983359656689,1750.0,0.0,2000.680105642105,71,2,2,2,2,1,2,2,2,2,20.0,2,,2,118122,1,3,0,0,1,,370.0,344.0,32,1.0,0.0,4.0,3.0,1.8,1,1,270.977373248159,0.0,18055.604683607504,0,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.09692281320208604,10030.891490893058,2,1,2_1,2_0_1,2_2_1,2_0_1 -20846,1,64.0,359.0,2,111,370.0,700.0,0.0,78,78,0.0,0.0,511.40446420309434,1070.0,0.0,1269.5570305932142,12,1,2,2,2,2,2,1,2,0,,1,,2,127525,2,3,3,0,1,,500.0,366.0,41,2.0,8.0,4.0,5.0,3.0,3,3,214.142397653494,370.0,19741.627755576228,6,5,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.05420019125311323,6580.542585192076,1,1,1_1,1_1_1,1_2_1,1_0_1 -20847,2,83.0,0.0,2,111,330.0,1450.0,0.0,77,78,0.0,0.0,456.1174951000571,1780.0,0.0,2629.7967062288008,71,0,0,0,0,0,0,0,0,0,,1,,2,113370,2,1,1,0,1,,270.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,220.743259223228,330.0,32737.359336650865,5,5,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054372131291823965,21824.90622443391,6,3,6,6_1,6_2,6_0_1 -20848,2,48.0,0.0,2,111,300.0,750.0,0.0,0,62,0.0,0.0,414.65226827277917,1050.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,2,50.0,1,,2,102064,2,2,4,0,1,,300.0,610.0,12,1.0,2.0,5.0,1.0,1.0,2,2,277.675634470917,300.0,31675.68839778509,0,1,2,3,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03314845085019276,31675.68839778509,8,4,8,8_1,8_2,8_0_1 -20849,2,59.0,0.0,2,111,193.0,1126.0,0.0,0,54,0.0,0.0,266.7596259221546,1319.0,0.0,2042.1731663542275,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,100239,2,1,2,0,1,,215.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,286.653671486877,193.0,30846.57635778914,0,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04276001280339613,30846.57635778914,8,4,8,8_1,8_2,8_0_1 -20850,2,67.0,0.0,6,112,608.0,0.0,0.0,75,75,0.0,248.44140115666985,840.3619303661658,905.0,98.05863923884093,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114922,2,1,2,0,1,,74.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,278.6714423496,608.0,40577.35779970857,5,5,1,2,96.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02230307859045716,27051.57186647238,7,4,7,7_1,7_0,7_0_0 -20851,1,43.0,24.0,9,112,994.0,0.0,0.0,56,48,0.0,538.289702506118,1373.881182210475,1640.0,216.76120252796414,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,101291,2,1,1,0,1,,249.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,325.021108292205,994.0,35218.02529440267,1,1,1,2,102.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.046567062925605064,13545.39434400103,3,2,3_1,3_1_1,3_0_1,3_0_0 -20852,2,48.0,0.0,8,112,500.0,1200.0,0.0,56,62,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,8.0,1,2001.0,6,131002,1,2,3,0,1,,215.0,462.0,43,3.0,0.0,4.0,4.0,2.3,2,2,223.575846156883,500.0,38518.512885508026,1,1,2,3,85.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044134621838933914,16747.179515438274,4,2,4_0,4_1_0,4_0_0,4_0_0 -20853,2,38.0,0.0,6,112,2000.0,0.0,0.0,0,37,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,113811,2,1,2,0,1,,200.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,329.64630612146,2000.0,111837.91930900421,0,1,0,1,85.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017883022255395068,111837.91930900421,10,5,10,10_1,10_0,10_0_0 -20854,2,58.0,0.0,1,112,0.0,0.0,0.0,75,52,0.0,0.0,0.0,1549.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,100626,2,1,2,0,1,,140.0,,42,2.0,1.0,6.0,4.0,2.5,2,2,334.208311712276,0.0,59363.937162078,5,1,0,1,120.0,6,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026093282791720046,23745.5748648312,6,3,6,6_1,6_0,6_1_0 -20855,2,62.0,0.0,9,112,1600.1,0.0,0.0,0,72,0.0,0.0,2211.6169815442463,1720.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,124471,2,1,1,0,1,,152.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,316.240133229794,1600.1,17154.695580061794,0,5,1,2,98.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10026409340653565,17154.695580061794,4,2,4_0,4_1_0,4_0_0,4_0_0 -20856,2,82.0,0.0,1,112,1200.0,3680.0,0.0,0,90,0.0,0.0,1658.6090730911167,4880.0,0.0,6674.242675118612,42,0,0,0,0,0,0,0,0,0,,1,,1,103954,2,1,4,0,1,,165.0,,11,0.0,2.0,7.0,1.0,1.0,4,3,284.96242484175,1200.0,61518.68704957098,0,5,0,1,185.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07932549009161652,61518.68704957098,10,5,10,10_1,10_0,10_1_0 -20857,1,27.0,255.0,2,112,500.0,1500.0,0.0,0,52,0.0,0.0,691.0871137879653,2180.0,309.6588607542345,2720.4793512711735,20,0,0,0,0,0,0,0,0,0,,1,,2,110392,2,2,5,0,1,,0.0,618.0,22,1.0,3.0,4.0,2.0,1.5,2,2,336.011064231363,500.0,9690.143750593505,0,4,2,3,80.0,6,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.2249708627765691,6460.095833729003,1,1,1_1,1_1_1,1_0_1,1_0_1 -20858,2,63.0,0.0,5,112,840.0,1800.0,0.0,77,77,0.0,232.913813584378,1161.0263511637818,2865.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,,3,101447,2,1,2,0,1,,130.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,338.067134127464,840.0,53019.77174976244,5,5,0,1,99.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054036445375924065,35346.51449984163,9,5,9,9_1,9_0,9_0_0 -20859,2,74.0,0.0,8,112,500.0,1000.0,0.0,86,74,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,115009,2,2,1,0,1,,100.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,287.805918331649,500.0,28218.590431602635,6,5,0,1,98.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05315644676284455,18812.393621068422,5,3,5,5_1,5_0,5_0_0 -20860,2,78.0,0.0,6,112,166.0,0.0,0.0,0,75,0.0,0.0,229.44092177760447,216.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131643,2,1,3,0,1,,114.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,344.524675525854,166.0,37217.28819395809,0,5,0,1,206.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005803754396997301,37217.28819395809,9,5,9,9_1,9_0,9_0_0 -20861,0,44.0,0.0,6,112,0.0,0.0,0.0,68,68,0.0,0.0,0.0,132.0,227.0831645531053,0.0,41,0,0,0,0,0,0,0,0,2,2.0,1,,4,100952,2,1,1,0,1,,0.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,248.223930240152,0.0,45978.07265708271,1,1,5,0,80.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002870933738012309,21894.32031289653,6,3,6,6_1,6_0,6_0_0 -20862,2,51.0,0.0,2,112,300.0,0.0,0.0,0,43,0.0,25.879312620486445,414.65226827277917,2825.0,4300.817510475479,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,133534,2,1,2,0,1,,275.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,300.936460235492,300.0,20695.667161596964,0,1,1,2,60.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13650200198629456,10347.833580798482,2,1,2_0,2_1_0,2_0_0,2_0_1 -20863,2,66.0,0.0,5,112,268.0,713.0,0.0,0,78,0.0,0.0,370.4226929903494,981.0,0.0,1293.134518304231,50,0,0,0,0,0,0,0,0,0,,1,,3,107327,2,2,1,0,1,,106.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,328.422139210774,268.0,21349.441948533287,0,5,0,1,72.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04594967879558065,21349.441948533287,6,3,6,6_1,6_0,6_0_0 -20864,2,63.0,0.0,5,112,1040.0,0.0,0.0,0,72,0.0,0.0,1437.4611966789678,2746.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,132970,2,1,2,0,1,,391.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,343.250171867648,1040.0,18869.11352115508,0,5,0,1,150.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14552882926488975,18869.11352115508,5,3,5,5_1,5_0,5_0_0 -20865,2,58.0,0.0,6,112,507.0,1350.0,0.0,52,53,0.0,0.0,700.7623333809968,1857.0,0.0,2448.431416144056,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,115541,2,1,2,0,1,,107.0,,43,2.0,5.0,4.0,2.0,1.5,1,1,318.863393192613,507.0,47331.37665725021,1,1,1,2,130.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0392340162308705,31554.251104833475,8,4,8,8_1,8_0,8_0_0 -20866,2,64.0,0.0,8,112,1750.0,0.0,0.0,74,74,0.0,258.79312620486445,2418.8048982578784,2000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2001.0,6,103982,2,1,2,0,1,,334.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,300.840996884038,1750.0,69017.16879477496,5,5,0,1,120.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028978296776372734,46011.445863183304,10,5,10,10_1,10_0,10_0_0 -20867,2,31.0,0.0,2,112,1141.0,0.0,0.0,0,56,0.0,0.0,1577.0607936641368,1261.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109302,2,1,2,0,1,,96.0,,22,2.0,4.0,4.0,2.0,1.5,1,1,278.6714423496,1141.0,30791.250495386463,0,1,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04095319221247409,20527.50033025764,5,3,5,5_1,5_0,5_0_1 -20868,2,52.0,0.0,5,112,1800.0,0.0,0.0,38,43,0.0,155.27587572291867,2487.913609636675,1950.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,3.0,1,,3,102464,2,1,1,0,1,,159.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,299.287469637676,1800.0,93930.06600639707,1,1,0,1,130.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0207601259416468,46965.033003198536,10,5,10,10_1,10_0,10_0_0 -20869,2,60.0,0.0,7,112,335.0,1269.0,0.0,75,77,0.0,0.0,463.0283662379367,1604.0,0.0,2301.5255311754127,70,0,0,0,0,0,0,0,0,0,,1,,5,124510,2,1,2,0,1,,131.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,311.045664551189,335.0,37490.68645596017,6,5,0,1,135.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04278395920768745,24993.79097064011,7,4,7,7_1,7_0,7_0_0 -20870,2,61.0,0.0,5,112,1429.0,0.0,0.0,77,78,0.0,258.79312620486445,1975.1269712060048,1729.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122785,2,1,2,0,1,,501.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,290.218391315455,1429.0,37354.55473326351,5,5,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04628618952484418,24903.03648884234,7,4,7,7_1,7_0,7_0_0 -20871,2,26.0,0.0,6,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1437.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,102548,2,2,5,0,1,,315.0,325.0,12,1.0,0.0,2.0,1.0,1.0,1,1,258.680841978268,0.0,18912.13959877211,0,1,2,3,65.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07598294167061344,18912.13959877211,5,3,5,5_1,5_0,5_0_0 -20872,2,81.0,0.0,6,112,541.0,2429.0,0.0,74,74,0.0,1293.9656310243222,747.7562571185784,4220.0,0.0,4405.362896158454,50,0,0,0,0,0,0,0,0,0,,1,,4,123578,1,1,1,0,2,,260.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,302.237528799259,541.0,40094.32479119692,5,5,0,1,150.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10525180363996402,26729.54986079795,7,4,7,7_1,7_0,7_0_0 -20873,2,42.0,0.0,9,112,1580.0,0.0,0.0,23,23,0.0,0.0,2183.83527956997,2103.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,130642,2,1,1,0,1,,215.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,290.351891320193,1580.0,157371.17538138927,1,1,1,2,180.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013363311260168048,74938.6549435187,10,5,10,10_1,10_0,10_0_0 -20874,1,38.0,251.0,6,112,1200.0,0.0,0.0,0,64,0.0,0.0,1658.6090730911167,1230.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,7,,4,125287,2,2,0,0,1,,110.0,300.0,12,1.0,0.0,1.0,1.0,1.0,2,2,372.908981648616,1200.0,14847.371465976521,0,4,2,3,18.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08284294649855062,14847.371465976521,3,2,3_1,3_1_1,3_0_1,3_0_0 -20875,2,43.0,0.0,9,112,1560.0,0.0,0.0,52,62,0.0,0.0,2156.1917950184516,1610.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,2004.0,6,126039,2,1,1,0,1,,381.0,,43,2.0,0.0,6.0,6.0,3.3,1,1,326.363297944013,1560.0,56385.0837650368,1,1,1,2,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028553650939121725,17086.38901970812,4,2,4_0,4_1_0,4_0_0,4_0_0 -20876,2,77.0,0.0,1,112,580.0,0.0,0.0,71,78,0.0,0.0,801.6610519940398,802.0,381.91259493022255,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125014,2,1,3,0,1,,241.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,242.39471126186,580.0,41871.58378991362,5,5,0,1,60.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019153801394854154,27914.389193275743,7,4,7,7_1,7_0,7_1_0 -20877,2,60.0,0.0,1,112,1080.0,0.0,0.0,74,52,3285.8867294396014,0.0,1492.748165782005,3326.0,79.13504219274881,0.0,50,1,2,2,2,2,2,2,1,2,10.0,1,,1,119930,1,3,3,0,2,,444.0,612.0,42,1.0,6.0,5.0,2.0,1.5,1,1,191.78721872567,1080.0,47033.79896288185,5,1,2,3,115.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07071510431519287,31355.865975254565,8,4,8,8_1,8_0,8_1_0 -20878,2,65.0,0.0,2,112,930.0,0.0,0.0,75,74,3584.6037048432017,0.0,1285.4220316456153,3330.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,106647,2,2,2,0,1,,350.0,,41,0.0,2.0,5.0,3.0,2.0,2,2,231.870375695278,930.0,57221.408714626734,5,5,0,1,100.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058195002094535944,28610.704357313367,8,4,8,8_1,8_0,8_0_1 -20879,2,58.0,0.0,6,112,1600.0,0.0,0.0,77,77,0.0,0.0,2211.478764121489,1678.0,134.18550632683494,0.0,30,0,0,0,0,0,0,0,0,0,,1,,4,128249,2,1,3,0,1,,540.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,205.404679769732,1600.0,25765.28705030095,6,5,0,1,99.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06512638484190302,17176.85803353397,4,2,4_0,4_1_0,4_0_0,4_0_0 -20880,2,51.0,0.0,6,112,800.0,0.0,0.0,52,64,0.0,517.5862524097289,1105.7393820607444,1380.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,121676,2,2,1,0,1,,450.0,,43,3.0,0.0,5.0,4.0,2.3,1,1,206.230475773225,800.0,55400.64077763856,1,1,0,1,96.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02490945918006442,24087.23512071242,6,3,6,6_1,6_0,6_0_0 -20881,2,37.0,0.0,9,112,860.0,1500.0,0.0,37,37,0.0,0.0,1188.6698357153002,2360.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,114534,2,1,1,0,1,,600.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,197.035215087436,860.0,106308.5148228413,1,1,1,2,110.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022199538803950383,44295.21450951721,10,5,10,10_1,10_0,10_0_0 -20882,2,56.0,0.0,1,112,1051.0,0.0,0.0,0,52,1493.5848770180007,0.0,1452.665113182303,2111.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117313,2,2,5,0,1,,350.0,,22,1.0,0.0,5.0,2.0,1.5,3,3,183.795525411309,1051.0,20912.14152893924,0,4,0,1,81.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1009461416028911,13941.427685959492,3,2,3_0,3_1_0,3_0_0,3_1_0 -20883,2,42.0,0.0,1,111,1100.0,1200.0,0.0,85,64,0.0,0.0,1520.3916503335236,2300.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,118750,2,1,2,0,1,,600.0,,42,2.0,0.0,7.0,6.0,3.3,1,1,260.887546437683,1100.0,65630.85903396383,6,1,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0350444902573918,19888.139101201163,5,3,5,5_1,5_3,5_1_0 -20884,2,34.0,0.0,1,111,550.0,0.0,0.0,46,54,2539.0942909306013,0.0,760.1958251667618,2253.0,5.160981012570575,0.0,71,1,2,2,2,1,2,2,2,2,30.0,1,,1,100621,2,2,5,0,1,,340.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,202.689531555519,550.0,50409.61805164728,1,1,1,2,90.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.044693851829856836,28005.343362026266,7,4,7,7_1,7_3,7_1_0 -20885,1,67.0,153.0,1,111,283.0,800.0,0.0,0,78,0.0,0.0,391.15530640398833,1083.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,1,,1,116048,1,2,3,0,2,,140.0,328.0,11,0.0,0.0,5.0,1.0,1.0,4,4,276.287374102044,283.0,10326.673395776243,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10487404399203354,10326.673395776243,2,1,2_1,2_1_1,2_3_1,2_1_0 -20886,2,47.0,0.0,2,111,780.0,2600.0,0.0,85,85,0.0,0.0,1078.0958975092258,3380.0,0.0,4715.497542203367,71,0,0,0,0,0,0,0,0,0,,1,,2,107738,2,1,1,0,1,,308.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,291.94583849463,780.0,21886.88855095497,7,7,0,1,157.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15443035642690855,14591.25903396998,3,2,3_0,3_1_0,3_3_0,3_0_1 -20887,2,71.0,0.0,5,111,1290.0,0.0,0.0,78,77,0.0,0.0,1783.0047535729504,1418.0,220.20185653634454,0.0,70,2,2,2,1,2,2,2,2,0,,1,,3,103048,2,1,4,0,1,,420.0,351.0,41,0.0,2.0,2.0,2.0,1.5,1,1,250.877915002755,1290.0,32525.06398683012,5,5,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04359714712857042,21683.37599122008,6,3,6,6_1,6_3,6_0_0 -20888,2,75.0,0.0,6,111,700.0,0.0,0.0,0,77,0.0,51.75862524097289,967.5219593031513,850.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,102814,2,1,2,0,1,,208.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,269.104534261677,700.0,15464.67566012796,0,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054963972001787646,15464.67566012796,3,2,3_0,3_1_0,3_3_0,3_0_0 -20889,2,47.0,0.0,1,111,0.0,2880.0,0.0,56,11,0.0,0.0,0.0,3027.0,0.0,5223.320354440652,31,2,2,2,2,1,2,2,2,1,3.0,1,,1,111404,2,2,2,0,1,,451.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,227.121603997616,0.0,60127.95883796697,4,1,0,1,100.0,9,7,3,0,1,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05034263691134385,26142.59079911608,7,4,7,7_1,7_3,7_1_0 -20891,2,66.0,0.0,2,111,510.0,1100.0,0.0,78,75,0.0,0.0,704.9088560637246,1610.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,0,,1,,2,111442,2,1,2,0,1,,280.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,279.98300314491,510.0,30332.95321804137,5,5,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05307758820669026,20221.96881202758,5,3,5,5_1,5_3,5_0_1 -20892,2,73.0,0.0,2,111,300.0,1090.0,0.0,78,78,0.0,0.0,414.65226827277917,1390.0,0.0,1976.8816619237193,31,0,0,0,0,0,0,0,0,0,,1,,2,129298,2,1,2,0,2,,360.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,269.292695754137,300.0,19274.91714299188,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07211444748053751,12849.944761994586,2,1,2_0,2_1_0,2_3_0,2_0_1 -20894,2,48.0,0.0,5,111,600.0,1700.0,0.0,52,38,0.0,0.0,829.3045365455583,2300.0,0.0,3083.2099314406632,60,2,2,2,2,1,2,2,2,0,,1,,3,133513,2,1,2,0,1,,500.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,257.384753711029,600.0,71396.92142120287,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03221427414819828,35698.46071060144,9,5,9,9_1,9_3,9_0_0 -20895,2,69.0,0.0,5,111,431.0,1317.0,0.0,77,78,0.0,219.45657102172504,595.7170920852261,1960.0,0.0,2388.5808704160904,50,0,0,0,0,0,0,0,0,0,,1,,3,132132,2,1,2,0,1,,230.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,280.94825024363,431.0,24641.632775887727,5,5,0,1,108.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07954018379487801,16427.75518392515,4,2,4_0,4_1_0,4_3_0,4_0_0 -20896,2,72.0,0.0,6,111,1800.0,0.0,0.0,0,86,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,130889,1,1,1,0,1,,320.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,349.14225336195,1800.0,10855.976978158878,0,6,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1658072786651461,10855.976978158878,2,1,2_0,2_1_0,2_3_0,2_0_0 -20897,1,38.0,150.0,1,300,1200.0,0.0,0.0,55,55,0.0,414.0690019277831,1658.6090730911167,1900.0,516.0981012570575,0.0,10,2,2,2,2,1,2,2,1,2,15.0,1,,1,129479,1,3,4,0,1,,170.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,254.031751824973,1200.0,20470.648873404163,1,1,1,2,110.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.09281581701440418,11372.582707446758,2,1,2_1,2_1_1,2_0_1,2_1_0 -20898,2,53.0,0.0,7,300,700.0,0.0,0.0,64,46,1045.5094139126004,1242.2070057833494,967.5219593031513,2680.0,137.62616033521533,0.0,31,0,0,0,0,0,0,0,0,2,70.0,1,,5,121473,2,1,2,0,1,,150.0,,43,2.0,2.0,4.0,3.0,2.0,4,3,261.376956607084,700.0,49434.08110967778,1,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05421361012160763,24717.04055483889,7,4,7,7_1,7_0,7_0_0 -20899,2,63.0,0.0,1,211,229.0,0.0,0.0,0,78,2837.8112663342013,258.79312620486445,316.5178981148881,2431.0,89.45700421788997,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133256,2,1,4,0,1,,80.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,558.4151412869,229.0,22900.168777635176,0,5,1,2,100.0,1,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10615642284585124,22900.168777635176,6,3,6,6_1,6_1,6_1_0 -20900,1,34.0,400.0,9,211,2131.0,0.0,0.0,0,54,0.0,0.0,2945.413278964308,2203.0,123.8635443016938,0.0,50,2,2,2,2,1,1,2,2,0,,1,2009.0,6,108019,1,3,4,0,1,,130.0,530.0,32,1.0,0.0,4.0,3.0,1.6,2,2,557.942223055431,2131.0,13591.242178160523,0,4,2,3,83.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.16208967297631954,8494.526361350327,1,1,1_1,1_1_1,1_1_1,1_0_0 -20901,2,55.0,0.0,6,211,1787.0,0.0,0.0,85,77,0.0,1035.1725048194578,2469.945344678188,2917.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,130150,2,2,3,0,1,,200.0,,41,0.0,4.0,5.0,2.0,1.5,3,2,564.896025676753,1787.0,37345.62391375804,7,7,0,1,95.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07810821441184664,24897.082609172026,7,4,7,7_1,7_1,7_0_0 -20902,2,38.0,0.0,1,211,898.0,0.0,0.0,52,63,1493.5848770180007,569.3448776507017,1241.1924563631856,2496.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,101598,2,1,1,0,1,,179.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,473.687059283562,898.0,50234.27226175586,1,1,1,2,200.0,1,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049687193376547506,20930.94677573161,5,3,5,5_1,5_1,5_1_0 -20903,2,51.0,0.0,9,211,950.0,0.0,0.0,85,53,0.0,931.655254337512,1313.065516197134,1940.0,154.82943037711726,0.0,71,2,1,2,2,1,2,2,2,2,25.0,1,2008.0,6,111107,2,1,1,0,1,,180.0,,42,1.0,3.0,5.0,3.0,2.0,1,1,655.022808564612,950.0,29717.878224433018,6,1,1,2,120.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06528056900122159,14858.939112216509,3,2,3_0,3_1_0,3_1_0,3_0_0 -20904,2,56.0,0.0,9,211,549.0,0.0,0.0,78,45,0.0,347.81796161933784,758.8136509391859,1065.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,132422,2,1,1,0,1,,140.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,617.991158993534,549.0,26664.524652316693,6,1,1,2,132.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03994070825888395,17776.34976821113,4,2,4_0,4_1_0,4_1_0,4_0_0 -20906,2,38.0,0.0,5,211,1520.0,0.0,0.0,63,68,0.0,310.55175144583734,2100.904825915414,2090.0,464.48829113135173,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,3,105916,1,1,2,0,2,,300.0,,43,2.0,1.0,5.0,4.0,2.3,5,3,474.409426870687,1520.0,17864.976830160595,1,1,0,1,55.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1169886767763142,7767.381230504607,1,1,1_0,1_1_0,1_1_0,1_0_0 -20907,2,79.0,0.0,2,211,1121.0,0.0,0.0,75,74,4480.754631054002,0.0,1549.417309112618,4241.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106448,2,1,2,0,2,,178.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,616.515535676092,1121.0,49792.282463852265,5,5,0,1,240.0,1,2,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08517384201213997,33194.85497590151,8,4,8,8_1,8_1,8_0_1 -20908,2,59.0,0.0,6,211,463.0,0.0,0.0,52,63,0.0,409.9283119085053,639.9466673676559,987.0,220.20185653634454,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,104621,2,1,2,0,1,,103.0,,43,2.0,1.0,5.0,2.0,1.5,4,2,528.965696576141,463.0,45093.150234949724,1,1,0,1,104.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02188802500728857,30062.10015663315,8,4,8,8_1,8_1,8_0_0 -20909,2,69.0,0.0,1,300,450.0,0.0,0.0,0,75,0.0,0.0,621.9784024091688,4950.0,7741.471518855863,0.0,71,1,2,2,1,1,2,2,2,0,,1,,1,133069,1,2,3,0,1,,80.0,,11,0.0,1.0,5.0,1.0,1.0,3,3,389.903623158366,450.0,21850.20748616331,0,5,0,1,170.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.22654247119321858,21850.20748616331,6,3,6,6_1,6_0,6_1_0 -20910,1,31.0,62.0,1,300,1440.0,0.0,0.0,0,53,0.0,828.1380038555662,1990.33088770934,2300.0,103.2196202514115,0.0,71,2,2,2,1,1,2,2,2,2,45.0,1,,1,133682,2,1,2,0,2,,150.0,500.0,12,1.0,1.0,4.0,1.0,1.0,3,2,264.540090621329,1440.0,16769.868461360278,0,1,2,3,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.13715074780100195,16769.868461360278,4,2,4_1,4_1_1,4_0_1,4_1_0 -20911,2,33.0,0.0,2,211,1200.0,0.0,0.0,52,62,0.0,292.9538188639066,1658.6090730911167,1583.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,117661,2,1,1,0,1,,146.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,490.099093354238,1200.0,25836.633836012505,1,1,1,2,125.0,1,2,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061269591466421164,14353.685464451391,3,2,3_0,3_1_0,3_1_0,3_0_1 -20912,2,42.0,0.0,8,111,0.0,0.0,1400.0,52,31,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,50,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,115794,2,1,2,0,1,,300.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,372.861770518526,0.0,62009.77664220592,1,1,1,2,168.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02257708503092903,23849.914093156127,6,3,6,6_1,6_2,6_0_0 -20913,2,78.0,0.0,1,111,706.0,0.0,0.0,77,78,0.0,724.6207533736205,975.815004668607,1568.0,278.692974678811,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120074,2,1,2,0,2,,690.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,332.067947415499,706.0,28614.259057333973,5,5,0,1,100.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054797854344514785,19076.172704889315,5,3,5,5_1,5_2,5_1_0 -20914,2,41.0,0.0,2,111,276.0,1600.0,0.0,0,46,0.0,0.0,381.48008681095683,1876.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,125283,2,1,1,0,1,,300.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,280.722170725384,276.0,22571.792466707757,0,1,0,1,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08311258411431012,17362.91728208289,4,2,4_0,4_1_0,4_2_0,4_0_1 -20915,2,59.0,0.0,5,111,864.0,0.0,0.0,75,64,0.0,931.655254337512,1194.198532625604,1866.0,175.47335442739956,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,133536,2,1,3,0,1,,581.0,,42,1.0,2.0,3.0,3.0,2.0,1,1,378.553490731674,864.0,27246.27721330063,6,4,0,1,87.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06848642056277279,13623.138606650315,3,2,3_0,3_1_0,3_2_0,3_0_0 -20916,2,45.0,0.0,1,111,400.0,1030.0,0.0,0,65,0.0,0.0,552.8696910303722,1430.0,0.0,1868.0624878728725,20,0,0,0,0,0,0,0,0,0,,1,,1,112711,2,3,4,0,1,,320.0,331.0,22,1.0,6.0,4.0,2.0,1.5,3,2,289.086581337946,400.0,34306.58130087323,0,1,2,3,66.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04168296419449994,22871.05420058215,6,3,6,6_1,6_2,6_1_0 -20917,2,40.0,0.0,1,111,740.0,2200.0,0.0,42,42,0.0,0.0,1022.8089284061887,2940.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,130163,2,2,1,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,361.513277960053,740.0,47701.83070920224,1,1,1,2,170.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06163285467852788,19875.762795500934,5,3,5,5_1,5_2,5_1_0 -20918,2,22.0,0.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,777.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,10.0,2,,1,113598,2,2,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,2,2,415.71309711945,0.0,22287.36451818475,0,1,2,3,32.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03486280306341419,22287.36451818475,6,3,6,6_0,6_2,6_1_0 -20919,2,64.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,411.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,127414,2,1,0,2,1,,0.0,287.0,11,0.0,3.0,1.0,1.0,1.0,2,2,532.668938397791,0.0,20097.262216587405,0,5,3,4,13.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020450546724756297,20097.262216587405,5,3,5,5_0,5_2,5_1_0 -20920,2,33.0,0.0,1,111,700.0,700.0,0.0,56,62,0.0,0.0,967.5219593031513,1400.0,0.0,1269.5570305932142,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,106833,2,1,4,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,288.444326990998,700.0,31943.758492943234,1,1,0,1,110.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04382702806588264,17746.532496079573,4,2,4_0,4_1_0,4_2_0,4_1_0 -20921,2,55.0,0.0,1,111,600.0,3500.0,0.0,68,62,0.0,0.0,829.3045365455583,4100.0,0.0,6347.785152966071,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,107386,2,2,2,0,2,,400.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,288.187721949892,600.0,34174.914793022464,1,1,1,2,200.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11997103796253215,22783.276528681643,6,3,6,6_1,6_2,6_1_0 -20922,1,57.0,19.0,7,111,300.0,900.0,0.0,63,63,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,60,0,0,0,0,0,0,0,0,2,12.0,2,,5,108335,2,1,0,0,1,,300.0,375.0,43,2.0,1.0,3.0,2.0,1.5,4,3,382.339585068525,300.0,28735.169316479278,1,1,2,3,60.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04176067267200038,19156.779544319517,5,3,5,5_0,5_2,5_0_0 -20923,2,60.0,0.0,1,111,600.0,600.0,0.0,0,77,0.0,0.0,829.3045365455583,1260.0,103.2196202514115,1088.1917405084694,41,1,2,2,2,1,2,2,2,0,,1,,1,114322,1,2,3,0,2,,130.0,,21,1.0,1.0,7.0,2.0,1.5,2,2,346.74316038837,600.0,21523.991080790118,0,5,0,1,200.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05853932921968796,14349.327387193413,3,2,3_0,3_1_0,3_2_0,3_1_0 -20925,2,57.0,0.0,1,111,1250.0,3650.0,0.0,23,43,0.0,0.0,1727.717784469913,4900.0,0.0,6619.833088093188,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,107435,2,1,2,0,1,,378.0,,43,5.0,0.0,9.0,6.0,3.5,3,3,332.320998729213,1250.0,185150.5809602104,1,1,0,1,591.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026464945314176622,52900.16598863155,10,5,10,10_1,10_2,10_1_0 -20926,2,31.0,0.0,1,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,1153.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,1,119735,2,1,0,0,1,,0.0,325.0,12,1.0,1.0,2.0,1.0,1.0,1,1,422.565973200928,0.0,8795.282530481212,0,1,2,3,33.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.13109300309616279,8795.282530481212,1,1,1_0,1_0_0,1_2_0,1_1_0 -20927,2,23.0,0.0,5,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,969.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,75.0,2,,3,132102,1,3,0,0,1,,0.0,326.0,42,1.0,0.0,3.0,2.0,1.5,2,2,357.412602061805,0.0,18923.805123611928,7,1,2,3,70.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.051205346581747614,12615.870082407951,2,1,2_0,2_0_0,2_2_0,2_0_0 -20928,2,26.0,0.0,1,111,136.0,291.0,0.0,67,55,0.0,0.0,187.97569495032656,427.0,0.0,527.7729941466076,43,0,0,0,0,0,0,0,0,2,15.0,2,,1,104233,1,1,0,0,1,,178.0,499.0,43,2.0,0.0,3.0,2.0,1.5,2,2,387.798842328187,136.0,21910.794026209547,4,1,2,3,51.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019488111635261846,14607.196017473032,3,2,3_0,3_0_0,3_2_0,3_1_0 -20929,1,52.0,86.0,2,111,310.0,120.0,0.0,0,46,0.0,0.0,428.47401054853844,430.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,133562,2,1,0,1,1,804.0,0.0,453.0,12,1.0,3.0,4.0,1.0,1.0,1,1,379.867876943334,310.0,17993.843160953315,0,4,2,3,78.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023897062798296537,17993.843160953315,4,2,4_1,4_0_1,4_2_1,4_0_1 -20930,2,75.0,0.0,1,111,520.0,0.0,0.0,0,75,2987.1697540360015,0.0,718.7305983394839,2520.0,0.0,0.0,43,2,2,1,1,1,1,2,2,0,,2,,1,111735,1,3,0,2,2,,400.0,960.0,11,0.0,4.0,5.0,1.0,1.0,3,2,397.070223669728,520.0,56900.782370615874,0,5,2,3,100.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04428761600475555,56900.782370615874,10,5,10,10_0,10_2,10_1_0 -20931,2,87.0,0.0,1,111,420.0,1400.0,0.0,0,75,0.0,0.0,580.5131755818909,1820.0,0.0,2539.1140611864284,70,0,0,0,0,0,0,0,0,0,,2,,1,130985,2,2,0,0,2,,420.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,588.3538389647,420.0,23773.738790244894,0,5,0,1,75.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07655506002054682,23773.738790244894,6,3,6,6_0,6_2,6_1_0 -20932,2,53.0,0.0,7,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1605.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,118907,1,2,0,0,1,,149.0,372.0,12,1.0,0.0,2.0,1.0,1.0,2,2,451.976711636695,0.0,17329.78590332871,0,1,2,3,75.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09261510840083208,17329.78590332871,4,2,4_0,4_0_0,4_2_0,4_0_0 -20933,2,58.0,0.0,5,111,239.0,607.0,0.0,0,54,0.0,0.0,330.3396403906474,846.0,0.0,1100.8873108144014,50,0,0,0,0,0,0,0,0,1,15.0,2,,3,130787,1,2,0,0,1,,220.0,372.0,12,1.0,1.0,3.0,1.0,1.0,2,2,420.783061194973,239.0,19063.77478817556,0,1,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.044377360171330676,19063.77478817556,5,3,5,5_0,5_2,5_0_0 -20934,2,35.0,0.0,2,111,400.0,1250.0,0.0,43,38,0.0,0.0,552.8696910303722,1650.0,0.0,2267.066126059311,50,0,0,0,0,0,0,0,0,2,7.0,1,,2,114896,2,2,2,0,1,,389.0,,43,2.0,0.0,5.0,2.0,1.5,4,4,372.421490252522,400.0,62565.34706975518,1,1,1,2,145.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02637242622757909,41710.23137983679,9,5,9,9_1,9_2,9_0_1 -20935,2,28.0,0.0,9,111,720.0,550.0,0.0,34,42,0.0,0.0,995.16544385467,1270.0,0.0,997.5090954660969,71,2,2,2,2,1,2,2,1,0,,2,2010.0,6,105778,1,1,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,2.0,1.5,1,1,461.756946291304,720.0,43930.44655449015,1,1,2,3,64.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.02890933508778988,29286.964369660098,8,4,8,8_0,8_2,8_0_0 -20936,2,36.0,0.0,1,111,824.5,715.0,0.0,43,22,0.0,0.0,1139.6026506363548,1540.0,0.0,1296.761824105926,31,2,2,2,1,1,2,2,2,0,,1,,1,117370,2,2,1,0,1,,500.0,,43,2.0,0.0,8.0,6.0,2.6999999999999997,1,1,332.320998729213,824.5,105373.30398807902,1,1,1,2,200.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.014614707347263417,39027.14962521446,9,5,9,9_1,9_2,9_1_0 -20937,1,34.0,351.0,5,111,350.0,350.0,0.0,63,64,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,2,7.0,2,,3,114424,2,1,0,0,1,,400.0,338.0,43,2.0,0.0,3.0,3.0,1.8,2,2,405.114907458415,350.0,24493.266181591913,4,1,2,3,65.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028579283579831014,13607.370100884396,3,2,3_1,3_0_1,3_2_1,3_0_0 -20938,1,51.0,224.0,2,111,270.0,700.0,0.0,0,85,0.0,0.0,373.1870414455012,970.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,109059,2,1,0,0,2,,320.0,359.0,11,0.0,0.0,2.0,1.0,1.0,2,2,505.045705364042,270.0,5968.699755403609,0,7,2,3,60.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16251445704264741,5968.699755403609,1,1,1_1,1_0_1,1_2_1,1_0_1 -20939,2,78.0,0.0,1,120,534.0,0.0,0.0,77,78,0.0,0.0,738.0810375255469,1797.0,928.9765822627035,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,117189,1,2,1,0,2,,224.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,233.239927529201,534.0,21952.38119123907,5,5,0,1,72.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.081859001278511,14634.92079415938,3,2,3_0,3_1_0,3_0_0,3_1_0 -20940,0,62.0,0.0,6,120,567.0,0.0,0.0,0,78,0.0,0.0,783.6927870355527,607.0,68.81308016760767,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,107213,2,2,2,0,1,,152.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,331.684217980395,567.0,20394.823136668994,0,5,0,1,70.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029762454713747468,20394.823136668994,5,3,5,5_1,5_0,5_0_0 -20941,2,77.0,0.0,1,120,500.0,0.0,0.0,77,78,0.0,0.0,691.0871137879653,2036.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,124410,2,1,2,0,1,,150.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,245.73432253998,500.0,34451.60374308163,5,5,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059097393990224845,22967.735828721085,6,3,6,6_1,6_0,6_1_0 -20942,1,35.0,336.0,2,112,700.0,1500.0,0.0,0,52,0.0,0.0,967.5219593031513,2200.0,0.0,2720.4793512711735,12,2,2,2,2,1,2,2,2,1,10.0,1,,2,104425,1,2,2,0,1,,720.0,520.0,32,1.0,0.0,3.0,2.0,1.3,2,2,403.929144362291,700.0,16114.912607462142,0,1,2,3,75.0,7,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.1365195116839338,12396.086621124725,2,1,2_1,2_1_1,2_1_1,2_0_1 -20943,2,85.0,0.0,2,112,730.0,0.0,0.0,78,78,3733.962192545002,0.0,1008.9871861304293,3320.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129668,2,1,1,0,1,,250.0,,41,0.0,1.0,5.0,2.0,1.5,4,4,511.45045510578,730.0,26026.76321032877,5,5,0,1,130.0,7,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1275610022333646,17351.175473552514,4,2,4_0,4_1_0,4_1_0,4_0_1 -20944,2,27.0,0.0,9,112,340.0,900.0,0.0,43,53,0.0,0.0,469.9392373758164,1240.0,0.0,1632.287610762704,44,0,0,0,0,0,0,0,0,2,110.0,1,2007.0,6,102260,1,1,1,0,1,,350.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,530.867947834324,340.0,48495.116371331016,1,1,1,2,110.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025569584997079293,32330.077580887344,8,4,8,8_1,8_1,8_0_0 -20945,2,67.0,0.0,5,112,1600.0,0.0,0.0,0,75,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126974,2,1,2,0,1,,180.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,533.705941478201,1600.0,30121.99292201414,0,5,1,2,91.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0531173353682939,30121.99292201414,8,4,8,8_1,8_1,8_0_0 -20946,0,67.0,0.0,1,112,500.0,1000.0,0.0,0,72,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,0,,1,,1,117005,2,1,2,0,1,,180.0,,11,0.0,2.0,8.0,1.0,1.0,2,2,503.356357337637,500.0,20683.001984138595,0,5,0,1,120.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07252332138005507,20683.001984138595,5,3,5,5_1,5_1,5_1_0 -20947,1,41.0,113.0,8,112,590.0,1160.0,0.0,55,67,0.0,0.0,815.482794269799,1750.0,0.0,2103.8373649830405,12,0,0,0,0,0,0,0,0,2,3.0,1,2003.0,6,129062,1,1,1,0,1,,620.0,562.0,43,2.0,0.0,4.0,4.0,2.1,3,3,399.410654415927,590.0,24372.37232733919,4,1,2,3,89.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07180261225686983,11605.891584447234,2,1,2_1,2_1_1,2_1_1,2_0_0 -20948,2,47.0,0.0,5,112,800.0,900.0,0.0,85,62,0.0,0.0,1105.7393820607444,1754.0,92.89765822627035,1632.287610762704,20,0,0,0,0,0,0,0,0,2,25.0,1,,3,117180,2,1,3,0,1,,650.0,488.0,42,1.0,2.0,5.0,4.0,2.3,2,2,373.464461806426,800.0,38243.38571492987,6,1,2,3,75.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045864140091426434,16627.55900649125,4,2,4_0,4_1_0,4_1_0,4_0_0 -20949,2,50.0,0.0,8,112,620.0,450.0,0.0,56,37,0.0,621.1035028916747,856.9480210970769,1670.0,0.0,816.143805381352,60,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,107845,1,2,1,0,1,,800.0,486.0,43,3.0,1.0,4.0,3.0,2.0,4,4,436.430465631903,620.0,24929.576121746213,1,1,2,3,78.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06698870417388482,12464.788060873107,2,1,2_0,2_1_0,2_1_0,2_0_0 -20950,2,58.0,0.0,2,112,1500.0,0.0,0.0,90,31,4779.471606457602,155.27587572291867,2073.261341363896,4910.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107388,2,1,2,0,2,,750.0,,42,1.0,2.0,6.0,3.0,2.0,3,3,530.944349004208,1500.0,93524.83846670603,6,1,0,1,103.0,7,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05249942240475416,46762.419233353015,10,5,10,10_1,10_1,10_0_1 -20951,2,38.0,0.0,1,112,600.0,2070.0,0.0,31,31,0.0,46.5827627168756,829.3045365455583,2715.0,0.0,3754.261504754219,31,0,0,0,0,0,0,0,0,0,,1,,1,127790,1,2,1,0,2,,1000.0,,43,2.0,0.0,8.0,6.0,2.6999999999999997,1,1,479.293683354756,600.0,115535.17410319319,1,1,1,2,208.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023499337072665234,42790.80522340489,9,5,9,9_1,9_1,9_1_0 -20952,2,49.0,0.0,7,112,1370.0,0.0,0.0,85,47,0.0,414.0690019277831,1893.578691779025,1890.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,5,115578,2,1,2,0,1,,460.0,,42,2.0,2.0,7.0,3.0,2.0,2,2,507.212626432611,1370.0,52361.869644270155,7,1,0,1,169.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03609496782372473,26180.934822135077,7,4,7,7_1,7_1,7_0_0 -20953,2,35.0,0.0,9,112,1500.0,0.0,0.0,42,62,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,113077,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,419.691073712083,1500.0,49247.30719568155,1,1,1,2,113.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03045851814881634,23451.09866461026,6,3,6,6_1,6_1,6_0_0 -20954,2,65.0,0.0,5,112,900.0,0.0,0.0,78,78,0.0,258.79312620486445,1243.9568048183376,1240.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,110724,2,1,1,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,477.507085355221,900.0,32472.214197499365,5,5,0,1,90.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03818649361137469,21648.14279833291,6,3,6,6_1,6_1,6_0_0 -20955,2,85.0,0.0,8,112,450.0,950.0,0.0,71,71,0.0,0.0,621.9784024091688,1400.0,0.0,1722.9702558050765,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,119679,2,1,1,0,1,,550.0,,41,0.0,0.0,3.0,3.0,2.0,2,2,462.408966571125,450.0,28915.255847054403,5,5,0,1,70.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04841734783206554,14457.627923527201,3,2,3_0,3_1_0,3_1_0,3_0_0 -20956,2,60.0,0.0,2,112,1100.0,0.0,0.0,85,78,0.0,455.47590212056144,1520.3916503335236,1924.0,660.6055696090336,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,104452,2,1,3,0,1,,475.0,,41,1.0,2.0,6.0,3.0,2.0,2,2,583.735230330971,1100.0,41607.430029573174,7,7,0,1,120.0,7,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.04624174092541849,20803.715014786587,5,3,5,5_1,5_1,5_0_1 -20957,2,33.0,0.0,1,112,300.0,600.0,0.0,0,42,0.0,0.0,414.65226827277917,951.0,87.73667721369978,1088.1917405084694,50,0,0,0,0,0,0,0,0,1,7.0,2,,1,125821,2,1,0,0,1,,500.0,500.0,12,1.0,0.0,3.0,1.0,1.0,2,2,517.393039362521,300.0,14434.464994021331,0,1,2,3,80.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06588397979377127,14434.464994021331,3,2,3_0,3_0_0,3_1_0,3_1_0 -20958,2,64.0,0.0,2,112,500.0,0.0,0.0,78,78,0.0,828.1380038555662,691.0871137879653,1384.0,144.50746835197612,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,106633,2,1,3,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,563.694880042201,500.0,31576.640204395168,5,5,0,1,93.0,7,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04382986888539714,21051.093469596777,5,3,5,5_1,5_1,5_0_1 -20959,1,48.0,254.0,6,112,1200.0,0.0,0.0,0,56,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,31,2,2,2,2,1,2,2,2,1,5.0,1,,4,113662,1,3,3,0,2,,750.0,275.0,12,1.0,2.0,2.0,1.0,1.0,2,2,477.586052033063,1200.0,7544.420722135008,0,1,2,3,51.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.17496373129446194,7544.420722135008,1,1,1_1,1_1_1,1_1_1,1_0_0 -20960,2,58.0,0.0,6,112,700.0,0.0,0.0,56,68,0.0,983.4138795784849,967.5219593031513,1830.0,309.6588607542345,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,126080,2,1,3,0,1,,500.0,540.0,43,2.0,4.0,4.0,2.0,1.5,4,3,451.277214880453,700.0,29119.092645668483,1,1,2,3,100.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06284536480130386,19412.728430445655,5,3,5,5_1,5_1,5_0_0 -20961,2,41.0,0.0,5,112,1600.0,0.0,0.0,67,56,0.0,0.0,2211.478764121489,1996.0,681.2494936593159,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,122057,1,1,3,0,1,,350.0,425.0,43,2.0,0.0,3.0,3.0,2.0,1,1,389.703264334686,1600.0,24959.414832065482,1,1,2,3,98.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07996982354873677,12479.707416032741,2,1,2_0,2_1_0,2_1_0,2_0_0 -20962,2,79.0,0.0,1,112,420.0,1380.0,0.0,78,78,0.0,0.0,580.5131755818909,1800.0,0.0,2502.8410031694793,71,0,0,0,0,0,0,0,0,0,,1,,1,125510,2,2,1,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,453.339309722458,420.0,24273.25235108419,5,5,0,1,64.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07415569920194898,16182.168234056126,4,2,4_0,4_1_0,4_1_0,4_1_0 -20963,2,42.0,0.0,2,112,800.0,450.0,0.0,54,45,0.0,0.0,1105.7393820607444,1250.0,0.0,816.143805381352,20,2,2,2,2,1,2,2,2,2,20.0,1,,2,104075,1,3,2,0,1,,600.0,530.0,43,2.0,0.0,4.0,2.0,1.5,2,2,518.346706931589,800.0,42617.77742472773,1,1,2,3,85.0,7,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.029330483087903213,28411.85161648515,8,4,8,8_1,8_1,8_0_1 -20964,2,73.0,0.0,5,112,1400.0,0.0,0.0,77,74,0.0,0.0,1935.0439186063027,1550.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,133160,2,1,2,0,1,,250.0,,41,0.0,6.0,4.0,2.0,1.5,1,1,477.507085355221,1400.0,50251.41445932897,5,5,0,1,99.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03084490290824538,33500.942972885976,8,4,8,8_1,8_1,8_0_0 -20965,0,75.0,0.0,1,112,1200.0,0.0,0.0,0,72,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104715,2,1,2,0,2,,130.0,,11,0.0,0.0,5.0,1.0,1.0,3,3,485.148461600167,1200.0,18613.405495550705,0,5,5,0,100.0,7,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06446966409703181,18613.405495550705,4,2,4_0,4_1_0,4_1_0,4_1_0 -20966,2,52.0,0.0,2,112,1200.0,0.0,0.0,56,53,0.0,776.3793786145933,1658.6090730911167,1950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,1,,2,107082,2,2,2,0,2,,700.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,530.944349004208,1200.0,43613.04575876816,1,1,1,2,106.0,7,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04471139233856336,21806.52287938408,6,3,6,6_1,6_1,6_0_1 -20967,2,82.0,0.0,1,112,350.0,800.0,0.0,0,78,0.0,0.0,483.76097965157567,1150.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,1,118726,2,1,3,0,1,,300.0,,11,0.0,1.0,5.0,1.0,1.0,5,3,461.104865454064,350.0,17148.86224555735,0,5,0,1,72.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06705984242761781,17148.86224555735,4,2,4_0,4_1_0,4_1_0,4_1_0 -20968,1,33.0,173.0,1,112,650.0,1000.0,0.0,85,63,0.0,0.0,898.4132479243549,1650.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,0,,1,,1,111566,1,3,4,0,1,,735.0,620.0,42,1.0,0.0,5.0,5.0,2.4,2,2,433.999304135734,650.0,27770.0882837932,6,1,2,3,150.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05941644776703683,11570.870118247167,2,1,2_1,2_1_1,2_1_1,2_1_0 -20969,2,67.0,0.0,5,112,900.0,0.0,0.0,77,74,1792.3018524216009,0.0,1243.9568048183376,2220.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101978,2,1,1,0,1,,300.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,531.255460310994,900.0,38425.02430426866,5,5,0,1,139.0,7,1,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0577748495985565,25616.682869512442,7,4,7,7_1,7_1,7_0_0 -20970,2,31.0,0.0,9,112,1200.0,0.0,0.0,43,47,0.0,0.0,1658.6090730911167,1270.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,0,,1,2008.0,6,122740,2,2,1,0,1,,400.0,650.0,43,2.0,0.0,4.0,2.0,1.5,1,1,440.207642803564,1200.0,44271.811829614446,1,1,2,3,90.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02868642478170427,29514.541219742965,8,4,8,8_1,8_1,8_0_0 -20971,2,26.0,0.0,9,112,1200.0,0.0,0.0,55,55,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,119843,1,2,1,0,1,,0.0,620.0,43,2.0,0.0,3.0,2.0,1.5,3,3,474.77156842147,1200.0,46920.244733219486,1,1,2,3,87.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025575314170311673,31280.16315547966,8,4,8,8_1,8_1,8_0_0 -20972,2,46.0,0.0,8,112,500.0,1200.0,0.0,0,34,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,109627,2,1,1,0,1,,600.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,610.326764332542,500.0,41433.95706153716,0,1,1,2,169.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041029149049780174,41433.95706153716,9,5,9,9_1,9_1,9_0_0 -20973,2,69.0,0.0,1,112,279.0,0.0,0.0,0,77,3217.1818250967735,0.0,385.6266094936846,3229.0,1369.3802953353925,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,125004,2,2,2,0,1,,260.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,423.563160407867,279.0,18992.90823493424,0,5,0,1,80.0,7,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17001082509632734,18992.90823493424,5,3,5,5_1,5_1,5_1_0 -20974,2,76.0,0.0,2,112,1000.0,1200.0,0.0,75,75,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,2,112582,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,517.160617096594,1000.0,49131.388848568495,5,5,0,1,130.0,7,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04477789151820608,32754.259232378998,8,4,8,8_1,8_1,8_0_1 -20975,2,49.0,0.0,5,112,300.0,0.0,0.0,0,52,0.0,207.03450096389156,414.65226827277917,680.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,130316,2,1,1,0,2,,180.0,259.0,12,1.0,0.0,3.0,1.0,1.0,1,1,627.947820721959,300.0,21379.20822721231,0,1,2,3,60.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03180660353616224,21379.20822721231,6,3,6,6_1,6_1,6_0_0 -20976,2,52.0,0.0,1,112,1000.0,0.0,0.0,56,47,0.0,1138.6897553014035,1382.1742275759307,2100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,1,129209,1,1,1,0,2,,700.0,,43,3.0,1.0,5.0,4.0,2.5,1,1,396.954437033281,1000.0,47904.18353189611,1,1,1,2,109.0,7,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04383750739852928,19161.673412758442,5,3,5,5_1,5_1,5_1_0 -20977,2,32.0,0.0,9,112,0.0,0.0,0.0,48,22,0.0,0.0,0.0,1218.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,115.0,1,2008.0,6,100540,2,1,1,0,1,,359.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,530.55691419429,0.0,47116.189791655,1,1,1,2,100.0,7,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02585098679213926,26175.660995363887,7,4,7,7_1,7_1,7_0_0 -20978,2,61.0,0.0,6,112,600.0,0.0,0.0,72,72,0.0,828.1380038555662,829.3045365455583,1520.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,118244,2,1,2,0,1,,350.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,565.352980022592,600.0,21512.92892629791,5,5,0,1,120.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07065518624671865,14341.95261753194,3,2,3_0,3_1_0,3_1_0,3_0_0 -20979,2,49.0,0.0,8,112,670.0,0.0,0.0,56,64,2240.377315527001,455.47590212056144,926.0567324758734,2610.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111681,2,1,2,0,1,,650.0,,43,2.0,3.0,6.0,3.0,1.8,1,1,462.217924600344,670.0,25942.15180320958,1,1,0,1,137.0,7,1,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10060846223546842,14412.306557338656,3,2,3_0,3_1_0,3_1_0,3_0_0 -20980,1,42.0,350.0,5,112,1500.0,0.0,0.0,0,56,0.0,0.0,2073.261341363896,1620.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,127005,2,3,3,0,1,,500.0,373.0,32,1.0,0.0,5.0,3.0,1.8,4,4,388.500060482393,1500.0,11344.090370025962,0,4,2,3,120.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14280563246220793,6302.272427792201,1,1,1_1,1_1_1,1_1_1,1_0_0 -20981,2,53.0,0.0,2,111,887.0,0.0,0.0,0,31,6519.497988183573,0.0,1225.9885398598503,5252.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,117682,1,1,2,0,1,,505.0,,32,1.0,1.0,7.0,3.0,2.0,1,1,405.246959015816,887.0,90179.87272860677,0,1,0,1,180.0,6,4,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058239159593911974,45089.93636430339,10,5,10,10_1,10_2,10_0_1 -20982,2,67.0,0.0,2,111,543.0,1766.0,0.0,78,78,0.0,0.0,750.5206055737303,2309.0,0.0,3202.9110228965947,50,0,0,0,0,0,0,0,0,0,,1,,2,114532,1,1,1,0,2,,456.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,354.19074045776,543.0,25439.81212278082,5,5,0,1,120.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09076324891300352,16959.874748520546,4,2,4_0,4_1_0,4_2_0,4_0_1 -20983,2,70.0,0.0,1,111,500.0,2000.0,0.0,77,74,0.0,238.0896761084753,691.0871137879653,2730.0,0.0,3627.3058016948976,31,0,0,0,0,0,0,0,0,0,,1,,1,115074,2,2,2,0,2,,300.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,338.189960751843,500.0,45560.716658097925,5,5,1,2,190.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05992004077738255,30373.811105398618,8,4,8,8_1,8_2,8_1_0 -20984,2,50.0,0.0,8,111,2338.0,0.0,0.0,56,21,0.0,0.0,3231.5233440725256,2478.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,114611,2,1,2,0,1,,320.0,,43,3.0,3.0,5.0,4.0,2.5,2,2,367.334873715397,2338.0,63641.37980686794,4,1,1,2,100.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038936930775542104,25456.551922747174,7,4,7,7_1,7_2,7_0_0 -20985,2,40.0,0.0,6,111,1320.0,0.0,0.0,0,43,0.0,910.9518042411229,1824.4699804002285,2270.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,104014,1,2,2,0,2,,500.0,900.0,32,1.0,2.0,6.0,3.0,1.8,2,2,375.050806552075,1320.0,65934.45269318848,0,1,2,3,110.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03442813138319275,36630.25149621582,9,5,9,9_1,9_2,9_0_0 -20986,1,82.0,68.0,2,111,0.0,1000.0,0.0,0,77,0.0,0.0,0.0,2398.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,1,,2,127772,2,2,5,0,1,,360.0,571.0,11,0.0,3.0,2.0,1.0,1.0,2,2,439.400284081429,0.0,13550.948655983018,0,5,2,3,50.0,6,4,3,0,1,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.17696178037994664,13550.948655983018,3,2,3_1,3_1_1,3_2_1,3_0_1 -20987,2,39.0,0.0,9,111,1420.0,0.0,0.0,55,46,0.0,0.0,1962.6874031578213,1420.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,13.0,2,2007.0,6,120680,2,1,0,0,1,,265.0,690.0,43,2.0,0.0,4.0,3.0,1.8,1,1,471.503920468476,1420.0,39603.79324934903,1,1,2,3,85.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03585515132501457,22002.10736074946,6,3,6,6_0,6_2,6_0_0 -20988,0,43.0,0.0,6,111,1330.0,0.0,0.0,52,63,0.0,0.0,1838.2917226759876,1330.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,10.0,1,,4,130582,2,2,2,0,1,,191.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,376.892152030577,1330.0,49965.23872246125,1,1,5,0,60.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02661850586540108,24982.619361230623,7,4,7,7_1,7_2,7_0_0 -20989,2,76.0,0.0,2,111,392.0,0.0,0.0,78,78,0.0,1130.4083752628478,541.8122972097648,1868.0,660.6055696090336,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,114644,2,2,2,0,1,,320.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,437.858910448256,392.0,22532.322910551702,5,5,0,1,69.0,6,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0829031257636216,15021.548607034469,3,2,3_0,3_1_0,3_2_0,3_0_1 -20990,2,89.0,0.0,5,111,416.0,0.0,0.0,0,72,2845.2791907192914,0.0,574.9844786715871,2367.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,128615,2,1,2,0,1,,161.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,421.618686668935,416.0,15061.298827627761,0,5,0,1,80.0,6,4,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15715776090028058,15061.298827627761,3,2,3_0,3_1_0,3_2_0,3_0_0 -20991,2,64.0,0.0,6,111,240.0,0.0,0.0,0,75,0.0,455.47590212056144,331.72181461822333,800.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,107175,2,1,2,0,1,,127.0,,11,0.0,0.0,4.0,1.0,1.0,3,2,485.201239095844,240.0,34592.97386130754,0,5,0,1,100.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023126083441320004,34592.97386130754,9,5,9,9_1,9_2,9_0_0 -20992,2,56.0,0.0,8,111,426.0,1042.0,0.0,63,56,0.0,0.0,588.8062209473464,1468.0,0.0,1889.8263226830418,50,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,125732,2,2,5,0,1,,267.0,640.0,43,3.0,1.0,4.0,3.0,2.0,2,2,415.707398393131,426.0,56914.04526167009,1,1,2,3,90.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02579328166273667,28457.022630835047,8,4,8,8_1,8_2,8_0_0 -20993,2,79.0,0.0,6,111,324.0,1506.0,0.0,0,75,0.0,0.0,447.8244497346015,1830.0,0.0,2731.361268676258,50,0,0,0,0,0,0,0,0,0,,1,,4,131433,2,2,1,0,1,,229.0,,21,1.0,0.0,5.0,2.0,1.5,1,1,390.39243583002,324.0,42576.50968153681,0,5,0,1,100.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042981447133360835,28384.339787691206,8,4,8,8_1,8_2,8_0_0 -20994,2,44.0,0.0,2,111,960.0,0.0,0.0,42,38,2016.339583974301,0.0,1326.8872584728933,3274.0,154.82943037711726,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,132270,2,2,1,0,1,,235.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,443.050529496302,960.0,148846.44238723948,1,1,1,2,125.0,6,4,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021995822993755867,57248.63168739981,10,5,10,10_1,10_2,10_0_1 -20995,2,84.0,0.0,1,111,565.0,3300.0,0.0,78,75,0.0,0.0,780.9284385804008,3865.0,0.0,5985.054572796581,70,0,0,0,0,0,0,0,0,0,,1,,1,111547,2,1,2,0,1,,319.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,373.591346331691,565.0,45590.05531469417,5,5,0,1,104.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08477726059600259,30393.37020979611,8,4,8,8_1,8_2,8_1_0 -20996,2,57.0,0.0,2,111,500.0,0.0,0.0,52,47,4659.9848162961625,0.0,691.0871137879653,3725.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,118504,2,1,1,0,1,,200.0,,43,2.0,1.0,3.0,2.0,1.5,1,1,389.064713824454,500.0,39807.94378488101,1,1,0,1,85.0,6,4,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09357428809007584,26538.629189920674,7,4,7,7_1,7_2,7_0_1 -20997,2,72.0,0.0,1,111,412.0,1004.0,0.0,78,74,0.0,155.27587572291867,569.4557817612833,1566.0,0.0,1820.9075124508388,70,0,0,0,0,0,0,0,0,0,,1,,1,119992,2,1,2,0,1,,191.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,342.80062622382,412.0,30001.78284483081,5,5,0,1,80.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0521968980343385,20001.18856322054,5,3,5,5_1,5_2,5_1_0 -20999,2,74.0,0.0,9,111,983.0,0.0,0.0,77,74,0.0,0.0,1358.6772657071397,983.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,113460,2,1,0,0,1,,374.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,418.298869712596,983.0,44155.46087102996,5,5,0,1,64.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022262252065971263,29436.97391401997,8,4,8,8_0,8_2,8_0_0 -21000,2,56.0,0.0,6,111,1910.0,0.0,0.0,47,37,0.0,310.55175144583734,2639.9527746700273,2402.0,330.3027848045168,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,,4,117061,2,2,2,0,1,,233.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,376.152884588917,1910.0,76628.7414761978,1,1,1,2,120.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031345940879716816,30651.49659047912,8,4,8,8_1,8_2,8_0_0 -21001,2,60.0,0.0,5,112,724.0,0.0,0.0,0,77,0.0,0.0,1000.6941407649738,1904.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,131326,2,2,3,0,2,,90.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,312.872280269679,724.0,24101.496264331876,0,5,0,1,107.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07899924465759227,24101.496264331876,6,3,6,6_1,6_0,6_0_0 -21002,0,81.0,0.0,1,112,372.0,0.0,0.0,78,78,0.0,1138.6897553014035,514.1688126582462,1572.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106211,2,2,2,0,1,,95.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,247.042424534119,372.0,42074.58260609215,5,5,5,0,70.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03736222447450693,28049.721737394768,8,4,8,8_1,8_0,8_1_0 -21003,2,63.0,0.0,5,112,1177.0,0.0,0.0,0,77,0.0,0.0,1626.8190658568703,1247.0,120.42289029331342,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,129538,1,1,2,0,1,,144.0,,11,0.0,1.0,7.0,1.0,1.0,3,2,296.350761885275,1177.0,10275.08791328243,0,5,0,1,120.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.1213614920401824,10275.08791328243,2,1,2_0,2_1_0,2_0_0,2_0_0 -21004,2,66.0,0.0,9,112,1800.0,0.0,0.0,86,74,0.0,145.95932317954356,2487.913609636675,1941.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,120123,1,1,1,0,1,,150.0,,41,0.0,5.0,6.0,2.0,1.5,1,1,266.110602611705,1800.0,38599.071646476565,6,5,0,1,180.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050286183506622756,25732.714430984375,7,4,7,7_1,7_0,7_0_0 -21005,2,61.0,0.0,1,120,300.0,0.0,0.0,0,78,0.0,724.6207533736205,414.65226827277917,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104889,2,1,2,0,2,,0.0,350.0,11,0.0,3.0,3.0,1.0,1.0,2,2,257.990748709291,300.0,20468.434379899987,0,5,2,3,50.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048855715168034566,20468.434379899987,5,3,5,5_1,5_0,5_1_0 -21006,2,34.0,0.0,6,120,2619.0,0.0,0.0,42,54,0.0,0.0,3619.9143020213623,2659.0,68.81308016760767,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,4,119251,2,1,1,0,1,,190.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,213.578855419586,2619.0,50301.33156010466,1,1,1,2,110.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0528614236945752,23953.015028621267,6,3,6,6_1,6_0,6_0_0 -21007,0,49.0,0.0,2,120,600.0,0.0,0.0,0,65,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,107723,2,2,3,0,2,,90.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,330.826277780314,600.0,32744.807371507144,0,1,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018323515945373656,32744.807371507144,8,4,8,8_1,8_0,8_0_1 -21008,2,47.0,0.0,8,120,400.0,0.0,0.0,43,45,1344.2263893162005,207.03450096389156,552.8696910303722,1800.0,516.0981012570575,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,131555,2,1,2,0,1,,148.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,276.907236481266,400.0,43365.673611868864,1,1,1,2,200.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04150748391712641,21682.836805934432,6,3,6,6_1,6_0,6_0_0 -21009,2,86.0,0.0,1,120,4000.0,0.0,0.0,0,72,0.0,0.0,5528.696910303723,4000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122006,2,2,5,0,2,,156.0,,21,0.0,1.0,6.0,2.0,1.5,2,2,286.340727036612,4000.0,87586.81211079597,0,5,0,1,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04566897576932086,58391.208073863985,10,5,10,10_1,10_0,10_1_0 -21010,2,37.0,0.0,8,120,1614.0,0.0,0.0,43,47,0.0,0.0,2230.829203307552,1710.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,128000,2,1,2,0,1,,196.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,313.917001326337,1614.0,49815.987713374954,1,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03432632932701818,23721.89891113093,6,3,6,6_1,6_0,6_0_0 -21011,2,56.0,0.0,2,120,1300.0,0.0,0.0,68,62,0.0,414.0690019277831,1796.8264958487098,1810.0,189.2359704609211,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,2,101916,2,2,2,0,1,,194.0,,43,4.0,1.0,5.0,4.0,2.5,2,2,297.73356455769,1300.0,57311.37402653051,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03158186364825448,22924.549610612205,6,3,6,6_1,6_0,6_0_1 -21012,2,29.0,0.0,5,120,1570.0,0.0,0.0,42,43,0.0,207.03450096389156,2170.013537294211,1830.0,103.2196202514115,0.0,60,2,2,2,2,1,2,2,2,0,,1,,3,105800,1,3,3,0,1,,88.0,657.0,43,2.0,0.0,4.0,2.0,1.5,1,1,319.824870947334,1570.0,32846.99720003741,1,1,2,3,130.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.05571285523773588,21897.998133358273,6,3,6,6_1,6_0,6_0_0 -21013,2,30.0,0.0,9,120,2000.0,0.0,0.0,42,42,0.0,103.51725048194578,2764.3484551518613,2100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,126014,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,267.100940900066,2000.0,48763.84175505505,1,1,1,2,141.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04306469556989541,23220.87702621669,6,3,6,6_1,6_0,6_0_0 -21014,2,57.0,0.0,1,120,800.0,0.0,0.0,33,33,3733.962192545002,362.31037668681023,1105.7393820607444,9260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,104493,2,1,2,0,1,,260.0,,43,2.0,7.0,5.0,2.0,1.5,1,1,221.908255344926,800.0,138060.76444805868,1,1,1,2,135.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0670719160292916,92040.50963203912,10,5,10,10_1,10_0,10_1_0 -21015,2,40.0,0.0,8,120,2200.0,0.0,0.0,55,46,0.0,0.0,3040.783300667047,2260.0,103.2196202514115,0.0,50,2,2,1,2,1,2,2,2,2,35.0,1,2001.0,6,108100,2,1,2,0,1,,120.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,266.096275721101,2200.0,51037.59517711306,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04428108323202224,24303.616751006215,7,4,7,7_1,7_0,7_0_0 -21016,2,56.0,0.0,6,120,539.0,0.0,0.0,56,63,2091.018827825201,0.0,744.9919086634266,2029.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,108058,2,1,2,0,1,,109.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,271.747215738039,539.0,36008.844154260536,1,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05634726822410184,24005.896102840357,6,3,6,6_1,6_0,6_0_0 -21017,2,67.0,0.0,1,112,2200.0,0.0,0.0,75,74,0.0,144.92415067472407,3040.783300667047,2400.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105914,2,1,3,0,1,,180.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,213.305284363807,2200.0,48834.022382616764,5,5,0,1,96.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04914606421719456,32556.01492174451,8,4,8,8_1,8_0,8_1_0 -21018,2,38.0,0.0,9,112,1845.0,0.0,0.0,46,46,0.0,1242.2070057833494,2550.111449877592,3125.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,125576,1,2,1,0,1,,230.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,303.724989206433,1845.0,64007.47084396879,1,1,1,2,164.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04882242586365929,30479.748020937517,8,4,8,8_1,8_0,8_0_0 -21019,2,38.0,0.0,8,112,760.0,0.0,0.0,55,47,448.0754631054002,0.0,1050.452412957707,1120.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,103911,2,1,1,0,1,,271.0,,43,2.0,0.0,4.0,5.0,2.4,3,3,315.116600060647,760.0,47833.60613500463,1,1,1,2,97.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023414500609444625,19930.669222918597,5,3,5,5_1,5_0,5_0_0 -21020,1,47.0,236.0,9,112,0.0,0.0,0.0,55,62,0.0,0.0,0.0,869.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,126011,2,1,1,0,1,,334.0,640.0,43,2.0,1.0,4.0,5.0,2.4,3,2,287.459922292401,0.0,41276.1495866946,4,1,2,3,105.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021053320348468813,17198.39566112275,4,2,4_1,4_1_1,4_0_1,4_0_0 -21021,2,72.0,0.0,2,112,1200.0,0.0,0.0,0,71,0.0,310.55175144583734,1658.6090730911167,1560.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116632,2,2,1,0,1,,189.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,293.5644060932,1200.0,8488.448443501773,0,5,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18377916887676202,8488.448443501773,1,1,1_0,1_1_0,1_0_0,1_0_1 -21022,2,31.0,0.0,9,112,1600.0,0.0,0.0,48,64,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,107520,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,246.293480108087,1600.0,42567.60032084812,1,1,1,2,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037587272666069836,20270.285867070532,5,3,5,5_1,5_0,5_0_0 -21023,1,25.0,113.0,9,112,1800.0,0.0,0.0,55,67,0.0,465.827627168756,2487.913609636675,2340.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,117508,2,1,1,0,1,,120.0,485.0,43,2.0,0.0,4.0,3.0,1.8,2,2,235.502136318391,1800.0,38088.037301628916,1,1,2,3,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06143661279968146,21160.020723127174,5,3,5,5_1,5_0,5_0_0 -21024,2,77.0,0.0,2,112,720.0,0.0,0.0,0,71,0.0,517.5862524097289,995.16544385467,1310.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119331,2,1,2,0,1,,200.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,359.453677664473,720.0,11421.053009494211,0,5,0,1,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11470045703412896,11421.053009494211,2,1,2_0,2_1_0,2_0_0,2_0_1 -21025,0,42.0,0.0,1,112,886.0,0.0,0.0,22,47,1220.2588445237066,155.27587572291867,1224.6063656322744,1913.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,124107,2,1,2,0,1,,256.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,220.39719967284,886.0,46067.94252138984,1,1,5,0,120.0,6,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04152562270632715,21937.115486376115,6,3,6,6_1,6_0,6_1_0 -21026,2,47.0,0.0,1,112,1000.0,0.0,0.0,56,48,0.0,0.0,1382.1742275759307,1200.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,119095,2,1,3,0,1,,300.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,258.920932365067,1000.0,35211.86920418844,4,1,0,1,100.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03407941773955188,17605.93460209422,4,2,4_0,4_1_0,4_0_0,4_1_0 -21027,2,78.0,0.0,6,112,450.0,0.0,0.0,72,72,0.0,517.5862524097289,621.9784024091688,1050.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,104458,2,1,2,0,2,,132.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,271.410627816569,450.0,21373.20273172899,5,5,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049126937744395784,14248.80182115266,3,2,3_0,3_1_0,3_0_0,3_0_0 -21028,2,36.0,0.0,9,112,893.0,0.0,0.0,85,47,0.0,621.1035028916747,1234.281585225306,1553.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,102021,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,5.0,2.4,1,1,297.856624446601,893.0,40614.78533276378,6,1,1,2,80.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03823730661816896,16922.82722198491,4,2,4_0,4_1_0,4_0_0,4_0_0 -21029,2,40.0,0.0,1,112,1200.0,0.0,0.0,54,63,0.0,0.0,1658.6090730911167,2100.0,1548.2943037711725,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,115398,2,2,1,0,1,,296.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,311.420306350122,1200.0,40296.43548425283,1,1,0,1,180.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0521137905813194,19188.778802025154,5,3,5,5_1,5_0,5_1_0 -21030,2,56.0,0.0,2,112,420.0,0.0,0.0,56,62,0.0,517.5862524097289,580.5131755818909,1100.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,2,111297,2,1,3,0,1,,150.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,257.039074135211,420.0,18389.325321817578,1,1,0,1,180.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05981731144290167,12259.550214545052,2,1,2_0,2_1_0,2_0_0,2_0_1 -21031,1,39.0,150.0,9,112,610.0,0.0,0.0,85,62,0.0,258.79312620486445,843.1262788213177,960.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,118574,2,1,1,0,1,,210.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,308.816576661763,610.0,29990.507763144535,6,1,1,2,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032010128257306404,12496.044901310222,2,1,2_1,2_1_1,2_0_1,2_0_0 -21032,2,51.0,0.0,8,112,2100.0,0.0,0.0,42,42,448.0754631054002,0.0,2902.5658779094542,2500.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,80.0,1,2003.0,6,132720,2,1,1,0,1,,225.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,313.917001326337,2100.0,86028.20510993227,1,1,1,2,143.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02906023666081772,37403.56743910099,9,5,9,9_1,9_0,9_0_0 -21034,1,31.0,319.0,8,112,1000.0,0.0,0.0,85,11,2987.1697540360015,0.0,1382.1742275759307,3160.0,275.25232067043066,0.0,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107407,2,1,1,0,1,,250.0,680.0,42,1.0,0.0,7.0,6.0,2.6999999999999997,2,2,284.411268205972,1000.0,35910.33891887576,6,1,2,3,166.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08799694169243809,13300.12552550954,3,2,3_1,3_1_1,3_0_1,3_0_0 -21035,2,88.0,0.0,6,112,480.0,0.0,0.0,0,74,0.0,0.0,663.4436292364467,3180.0,4644.882911313518,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,108994,2,1,2,0,1,,255.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,325.038626506652,480.0,34656.3194584589,0,5,0,1,150.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09175815694484622,34656.3194584589,9,5,9,9_1,9_0,9_0_0 -21036,1,48.0,180.0,2,112,0.0,0.0,0.0,56,42,0.0,0.0,0.0,1578.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,,2,105144,2,1,2,0,1,,309.0,680.0,43,2.0,1.0,5.0,4.0,2.1,2,2,292.404917979764,0.0,25854.78794379499,4,1,2,3,98.0,6,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06103318284529623,12311.803782759518,2,1,2_1,2_1_1,2_0_1,2_0_1 -21037,2,52.0,0.0,6,112,1254.0,0.0,0.0,0,47,0.0,0.0,1733.246481380217,1304.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,23.0,1,,4,127168,2,1,2,0,1,,249.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,317.252298531587,1254.0,33318.382797288155,0,1,0,1,167.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0391375538222742,22212.255198192102,6,3,6,6_1,6_0,6_0_0 -21038,2,74.0,0.0,2,120,1200.0,0.0,0.0,86,11,0.0,0.0,1658.6090730911167,1600.0,688.1308016760767,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,124567,2,1,4,0,2,,90.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,247.90007591583,1200.0,17360.508002308274,5,1,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09216320166364153,11573.67200153885,2,1,2_0,2_1_0,2_0_0,2_0_1 -21039,2,87.0,0.0,2,120,1525.0,0.0,0.0,72,75,0.0,0.0,2107.815697053294,1625.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,122848,2,1,1,0,1,,221.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,304.682507105013,1525.0,49558.07173771542,5,5,0,1,76.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03278981491855177,33038.71449181028,8,4,8,8_1,8_0,8_0_1 -21040,2,32.0,0.0,2,120,0.0,0.0,0.0,52,64,0.0,0.0,0.0,5141.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,121265,1,2,3,0,2,,121.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,307.491298040224,0.0,34932.536010855474,1,1,1,2,140.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1471693895456776,23288.357340570317,6,3,6,6_1,6_0,6_0_1 -21041,2,33.0,0.0,9,120,1488.0,0.0,0.0,22,22,0.0,0.0,2056.675250632985,1538.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,120347,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,282.443831019838,1488.0,27798.842877079882,1,1,1,2,148.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05532604385012296,18532.561918053256,4,2,4_0,4_1_0,4_0_0,4_0_0 -21042,2,65.0,0.0,8,120,0.0,0.0,0.0,77,75,0.0,0.0,0.0,3130.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2000.0,6,117829,2,1,2,0,1,,170.0,,41,0.0,4.0,4.0,2.0,1.5,3,2,303.585770708923,0.0,31408.61418258363,5,5,0,1,100.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0996541898284584,20939.07612172242,5,3,5,5_1,5_0,5_0_0 -21043,2,69.0,0.0,1,120,600.0,0.0,0.0,71,71,746.7924385090004,828.1380038555662,829.3045365455583,2000.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,0,,5,,1,100158,2,3,4,0,1,,373.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,262.445424921509,600.0,19006.249761940748,5,5,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10522854456037507,12670.833174627165,2,1,2_0,2_1_0,2_0_0,2_1_0 -21044,0,84.0,0.0,1,120,500.0,0.0,0.0,0,71,0.0,0.0,691.0871137879653,700.0,344.06540083803833,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,101024,2,1,4,0,2,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,250.796879904862,500.0,18481.555874223013,0,5,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037875599043926754,18481.555874223013,4,2,4_0,4_1_0,4_0_0,4_1_0 -21045,2,62.0,0.0,7,120,966.0,0.0,0.0,0,46,0.0,0.0,1335.180303838349,4166.0,5505.046413408613,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,5,110160,2,1,3,0,1,,185.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,321.212898075112,966.0,29243.612926230064,0,1,1,2,182.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14245845786938677,29243.612926230064,8,4,8,8_1,8_0,8_0_0 -21046,2,81.0,0.0,2,120,700.0,0.0,0.0,77,78,2987.1697540360015,0.0,967.5219593031513,2900.0,344.06540083803833,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,109599,2,1,4,0,1,,350.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,286.340727036612,700.0,23378.794371834716,5,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12404403554247158,15585.862914556477,3,2,3_0,3_1_0,3_0_0,3_0_1 -21047,1,70.0,50.0,1,112,500.0,0.0,0.0,0,75,0.0,621.1035028916747,691.0871137879653,1130.0,51.60981012570575,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,131166,2,1,1,0,1,,400.0,459.0,11,0.0,7.0,3.0,1.0,1.0,2,2,223.528125538783,500.0,14790.168305092491,0,5,2,3,80.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07640210555351983,14790.168305092491,3,2,3_1,3_1_1,3_0_1,3_1_0 -21048,2,51.0,0.0,6,112,900.0,1700.0,0.0,52,62,0.0,621.1035028916747,1243.9568048183376,3320.0,206.439240502823,3083.2099314406632,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,110924,2,1,2,0,1,,250.0,,43,4.0,0.0,7.0,5.0,2.8,2,2,311.558829109471,900.0,79416.07865759244,1,1,0,1,120.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041805136392019486,28362.885234854446,8,4,8,8_1,8_0,8_0_0 -21049,2,46.0,0.0,5,112,1500.0,0.0,0.0,52,62,0.0,517.5862524097289,2073.261341363896,2120.0,206.439240502823,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,,3,117582,1,3,3,0,1,,230.0,350.0,43,2.0,2.0,4.0,3.0,1.8,2,2,228.899798260609,1500.0,34657.15588347819,1,1,2,3,80.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.061170628286051874,19253.975490821216,5,3,5,5_1,5_0,5_0_0 -21050,2,52.0,0.0,9,112,1500.0,0.0,0.0,71,11,0.0,310.55175144583734,2073.261341363896,1860.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,1,5.0,1,2008.0,6,132568,2,1,1,0,1,,240.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,272.189960141381,1500.0,43065.12814868266,5,1,1,2,120.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04319039742731838,28710.085432455107,8,4,8,8_1,8_0,8_0_0 -21051,2,55.0,0.0,6,112,2300.0,0.0,0.0,78,75,0.0,310.55175144583734,3179.0007234246405,2720.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,122412,1,2,2,0,1,,350.0,,41,0.0,3.0,9.0,2.0,1.5,1,1,275.94718421794,2300.0,32435.262466927714,7,5,0,1,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0838593491504322,21623.508311285143,6,3,6,6_1,6_0,6_0_0 -21052,2,51.0,0.0,8,112,520.0,0.0,0.0,54,43,2240.377315527001,414.0690019277831,718.7305983394839,2420.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,20.0,1,2000.0,6,109400,2,2,2,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,297.629481914717,520.0,57092.9068326351,1,1,0,1,120.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04238705181177944,24823.002970710913,7,4,7,7_1,7_0,7_0_0 -21054,2,48.0,0.0,1,111,990.0,1830.0,0.0,85,38,0.0,258.79312620486445,1368.3524853001713,3070.0,0.0,3318.9848085508315,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,103969,2,1,1,0,1,,600.0,,42,1.0,1.0,10.0,4.0,2.3,2,2,352.390233717972,990.0,106794.47549189834,6,1,1,2,330.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028746805355422126,46432.38064865145,10,5,10,10_1,10_3,10_1_0 -21055,0,29.0,0.0,2,111,0.0,0.0,0.0,54,54,0.0,0.0,0.0,60.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,75.0,1,,2,100381,2,1,3,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,459.985926392781,0.0,43624.44018800747,1,1,5,0,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0013753758155157767,24235.800104448597,7,4,7,7_1,7_3,7_0_1 -21056,2,73.0,0.0,5,111,270.0,1200.0,0.0,77,78,0.0,0.0,373.1870414455012,1470.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,3,120521,2,1,3,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,428.899417394155,270.0,25725.077518584363,5,5,0,1,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05714268495160178,17150.051679056243,4,2,4_0,4_1_0,4_3_0,4_0_0 -21057,2,52.0,0.0,2,111,400.0,600.0,0.0,77,52,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,3,40.0,1,,2,126582,2,3,4,0,1,,120.0,655.0,42,1.0,3.0,4.0,2.0,1.5,1,1,469.543371019708,400.0,48748.534515170795,5,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02051343717191734,32499.023010113862,8,4,8,8_1,8_3,8_0_1 -21058,2,59.0,0.0,2,111,570.0,1470.0,0.0,0,54,0.0,0.0,787.8393097182804,2040.0,0.0,2666.06976424575,71,1,2,2,1,1,2,2,2,2,25.0,1,,2,109416,1,2,4,0,1,,270.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,488.505174390835,570.0,30404.13151895998,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06709614444102303,30404.13151895998,8,4,8,8_1,8_3,8_0_1 -21059,2,29.0,0.0,2,111,500.0,1130.0,0.0,43,47,0.0,0.0,691.0871137879653,1630.0,0.0,2049.4277779576173,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,115419,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,423.403900474613,500.0,24328.57504886171,1,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06699940283088075,13515.875027145394,3,2,3_0,3_1_0,3_3_0,3_0_1 -21060,1,35.0,48.0,5,111,550.0,1016.0,0.0,85,46,0.0,0.0,760.1958251667618,1566.0,0.0,1842.6713472610081,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,117175,2,2,2,0,1,,480.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,416.345986841823,550.0,41398.72567118781,7,1,1,2,82.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03782725131295252,17249.469029661588,4,2,4_1,4_1_1,4_3_1,4_0_0 -21061,2,56.0,0.0,2,111,0.0,0.0,1600.0,68,62,0.0,0.0,817.4613357400401,1600.0,0.0,1829.1932394442103,70,0,0,0,0,0,0,0,0,2,45.0,1,,2,101890,2,2,1,0,1,,300.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,399.399216231607,0.0,29379.14021984389,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05446040925728976,19586.093479895924,5,3,5,5_1,5_3,5_0_1 -21062,2,59.0,0.0,2,111,420.0,1420.0,0.0,55,62,0.0,0.0,580.5131755818909,1840.0,0.0,2575.3871192033776,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,118563,1,2,4,0,1,,285.0,,43,2.0,1.0,6.0,2.0,1.5,1,1,404.296586400564,420.0,34045.82454440021,1,1,0,1,151.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054044806510719086,22697.216362933472,6,3,6,6_1,6_3,6_0_1 -21063,2,30.0,0.0,1,111,534.0,1324.0,0.0,62,62,0.0,0.0,738.0810375255469,1858.0,0.0,2401.2764407220225,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,112137,2,1,1,0,1,,277.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,328.152423264516,534.0,53646.026863951025,1,1,1,2,170.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03463443816094675,25545.727078071915,7,4,7,7_1,7_3,7_1_0 -21064,2,52.0,0.0,2,111,500.0,920.0,0.0,52,63,0.0,0.0,691.0871137879653,1420.0,0.0,1668.560668779653,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,105009,2,1,3,0,1,,500.0,,43,2.0,2.0,4.0,3.0,2.0,1,1,473.458401385537,500.0,43351.25533046175,1,1,0,1,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03275568352462921,21675.627665230873,6,3,6,6_1,6_3,6_0_1 -21065,2,43.0,0.0,2,111,2000.0,0.0,0.0,65,43,0.0,0.0,2764.3484551518613,2090.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,119457,2,2,1,0,1,,550.0,,43,2.0,1.0,6.0,4.0,2.5,1,1,429.438658097171,2000.0,30006.645683574574,4,1,1,2,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06965123733053746,12002.65827342983,2,1,2_0,2_1_0,2_3_0,2_0_1 -21066,2,49.0,0.0,7,111,580.0,693.0,0.0,0,63,0.0,0.0,801.6610519940398,1273.0,0.0,1256.8614602872822,42,0,0,0,0,0,0,0,0,2,10.0,1,,5,126209,2,1,1,0,1,,680.0,,32,1.0,2.0,5.0,2.0,1.5,1,1,429.20188061552,580.0,28207.487884947965,0,1,1,2,115.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04512986073741421,18804.991923298643,5,3,5,5_1,5_3,5_0_0 -21067,2,62.0,0.0,2,111,697.0,1103.0,0.0,78,78,0.0,0.0,963.3754366204236,1800.0,0.0,2000.4591496347361,50,0,0,0,0,0,0,0,0,0,,1,,2,108178,2,1,1,0,1,,320.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,428.899417394155,697.0,24824.0,6,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07251047373509507,16549.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_1 -21068,2,32.0,0.0,1,111,895.0,805.0,0.0,47,62,0.0,0.0,1237.045933680458,1700.0,0.0,1459.9905851821964,50,0,0,0,0,0,0,0,0,1,30.0,1,,1,117119,2,1,2,0,1,,310.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,283.443076723053,895.0,38338.20067188399,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04434219577881039,21299.000373268882,6,3,6,6_1,6_3,6_1_0 -21069,2,69.0,0.0,1,111,1335.0,0.0,0.0,0,77,0.0,0.0,1845.2025938138672,1395.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,108537,2,1,2,0,1,,85.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,337.716292151035,1335.0,19731.86057399095,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0706978439650432,19731.86057399095,5,3,5,5_1,5_3,5_1_0 -21070,2,44.0,0.0,2,111,800.0,1380.0,0.0,42,62,0.0,0.0,1105.7393820607444,2180.0,0.0,2502.8410031694793,30,2,2,2,2,1,2,2,2,2,10.0,1,,2,122638,2,1,4,0,1,,270.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,325.525493691261,800.0,39119.67726941405,1,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.055726431099789406,21733.154038563363,6,3,6,6_1,6_3,6_0_1 -21071,2,39.0,0.0,1,111,300.0,700.0,0.0,64,62,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,126388,2,1,1,0,1,,250.0,670.0,43,2.0,0.0,4.0,4.0,2.1,3,3,326.628059428332,300.0,49067.254440335804,1,1,2,3,93.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020380190646614796,23365.359257302764,6,3,6,6_1,6_3,6_1_0 -21072,2,48.0,0.0,1,111,297.0,0.0,0.0,0,54,1402.4761995199026,0.0,410.5057455900514,1266.0,51.60981012570575,0.0,33,0,0,0,0,0,0,0,0,4,60.0,1,,1,105138,2,1,3,0,1,,103.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,350.374616091482,297.0,27976.355005271627,0,1,1,2,80.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04525249982570802,27976.355005271627,7,4,7,7_1,7_3,7_1_0 -21073,2,85.0,0.0,5,111,0.0,0.0,1380.0,86,78,0.0,0.0,705.0604020757846,1380.0,0.0,1577.6791690206314,71,0,0,0,0,0,0,0,0,0,,1,,3,114676,2,1,2,0,1,,176.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,430.378056860239,0.0,22380.00484602669,6,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06166218503947299,14920.00323068446,3,2,3_0,3_1_0,3_3_0,3_0_0 -21074,2,77.0,0.0,1,111,451.0,0.0,0.0,0,77,3733.962192545002,541.3952200205764,623.3605766367447,3719.0,421.480116026597,0.0,41,2,2,2,1,1,2,2,2,0,,1,,1,131784,2,1,1,0,2,,265.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,403.886925300698,451.0,15354.770200262203,0,5,0,1,120.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.2422048621695747,15354.770200262203,3,2,3_0,3_1_0,3_3_0,3_1_0 -21075,2,42.0,0.0,9,111,1200.0,0.0,0.0,52,47,0.0,372.6621017350048,1658.6090730911167,1650.0,154.82943037711726,0.0,12,1,2,2,1,1,2,2,2,2,10.0,1,2007.0,6,125578,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,445.091082512407,1200.0,54563.97872554367,1,1,0,1,222.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0302397302861561,25982.84701216365,7,4,7,7_1,7_3,7_0_0 -21076,2,41.0,0.0,2,111,1133.0,1553.0,0.0,65,65,0.0,0.0,1566.0033998435292,2686.0,0.0,2816.6029550160883,44,0,0,0,0,0,0,0,0,2,40.0,1,,2,128683,2,2,2,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,429.438658097171,1133.0,48013.82350754964,1,1,1,2,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055942222547172404,22863.725479785542,6,3,6,6_1,6_3,6_0_1 -21077,2,45.0,0.0,8,111,2445.0,0.0,0.0,0,52,0.0,0.0,3379.41598642315,2445.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,123902,2,1,2,0,1,,214.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,463.229407241319,2445.0,19046.821550003428,0,1,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12836787458638,19046.821550003428,5,3,5,5_1,5_3,5_0_0 -21078,1,49.0,210.0,5,111,625.0,850.0,0.0,52,63,0.0,0.0,863.8588922349566,1475.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,133557,2,1,4,0,1,,506.0,566.0,43,2.0,6.0,4.0,2.0,1.5,1,1,388.36460774822,625.0,36001.417879605084,1,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04097060857249159,24000.945253070055,6,3,6,6_1,6_3,6_0_0 -21079,1,69.0,237.0,5,111,480.0,1500.0,0.0,0,78,0.0,0.0,663.4436292364467,1980.0,0.0,2720.4793512711735,50,2,2,2,1,1,2,2,2,0,,1,,3,123679,1,3,4,0,1,,380.0,392.0,11,0.0,2.0,3.0,1.0,1.0,2,2,410.043611101064,480.0,16845.762107656676,0,5,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,1,1,0,1,0.11753697976656441,16845.762107656676,4,2,4_1,4_1_1,4_3_1,4_0_0 -21080,1,53.0,377.0,6,111,700.0,1250.0,0.0,85,67,0.0,0.0,967.5219593031513,1950.0,0.0,2267.066126059311,70,0,0,0,0,0,0,0,0,0,,2,,4,125529,1,3,0,0,1,,700.0,364.0,42,3.0,0.0,3.0,4.0,2.5,1,1,407.047296109025,700.0,11511.559825269505,6,4,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16939494122416612,4604.623930107802,1,1,1_1,1_0_1,1_3_1,1_0_0 -21081,2,68.0,0.0,2,111,882.0,0.0,0.0,86,72,2580.9146674871054,362.31037668681023,1219.0776687219707,2960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132838,2,1,2,0,1,,398.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,412.523185408052,882.0,35823.118795849216,5,5,0,1,87.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08262820489942857,23882.07919723281,6,3,6,6_1,6_3,6_0_1 -21082,2,60.0,0.0,6,111,110.0,0.0,0.0,46,75,0.0,0.0,152.03916503335236,110.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,125600,2,1,2,0,1,,300.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,414.004647748294,110.0,51790.48773558725,1,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0021239421524971414,34526.991823724835,9,5,9,9_1,9_3,9_0_0 -21083,1,43.0,55.0,7,111,550.0,860.0,0.0,55,48,0.0,0.0,760.1958251667618,1410.0,0.0,1559.741494728806,50,2,2,2,2,1,1,2,2,2,60.0,1,,5,121465,1,1,2,0,1,,624.0,558.0,43,5.0,0.0,4.0,6.0,3.5,1,1,404.443991882387,550.0,42047.70744942487,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.03353333833232056,12013.630699835678,2,1,2_1,2_1_1,2_3_1,2_0_0 -21084,2,75.0,0.0,1,111,271.0,997.0,0.0,77,72,0.0,0.0,374.56921567307717,1268.0,0.0,1808.2119421449065,70,0,0,0,0,0,0,0,0,0,,1,,1,102855,2,1,2,0,1,,198.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,353.195647024274,271.0,17500.480712480494,5,5,0,1,95.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0724551525659363,11666.987141653663,2,1,2_0,2_1_0,2_3_0,2_1_0 -21085,2,55.0,0.0,1,111,0.0,0.0,1407.0,22,54,0.0,0.0,718.8550621163978,1407.0,0.0,1608.5468049362526,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,119596,1,3,4,0,1,,487.0,4300.0,43,3.0,0.0,5.0,3.0,2.0,3,3,346.403845513876,0.0,63239.04211311611,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022248913851087265,31619.521056558056,8,4,8,8_1,8_3,8_1_0 -21086,2,93.0,0.0,1,111,432.0,0.0,0.0,0,77,0.0,0.0,597.099266312802,432.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,110335,2,2,4,0,1,,131.0,160.0,11,0.0,3.0,3.0,1.0,1.0,3,3,355.808017732266,432.0,16654.67043895857,0,5,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02593866997148539,16654.67043895857,4,2,4_0,4_1_0,4_3_0,4_1_0 -21087,2,70.0,0.0,1,111,563.0,0.0,0.0,0,77,0.0,1837.4311960545376,778.1640901252489,2478.0,240.84578058662683,0.0,33,2,2,1,1,1,2,2,2,0,,1,,1,101952,2,1,1,0,1,,381.0,,21,1.0,1.0,5.0,3.0,1.8,4,4,351.68653019453,563.0,25621.489826830173,0,5,0,1,160.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.0967156873682303,14234.16101490565,3,2,3_0,3_1_0,3_3_0,3_1_0 -21088,2,89.0,0.0,2,111,680.0,1340.0,0.0,0,78,0.0,0.0,939.8784747516328,2020.0,0.0,2430.2948871355816,31,0,0,0,0,0,0,0,0,0,,1,,2,132789,2,2,4,0,2,,250.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,488.505174390835,680.0,20056.393902959328,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10071601155090738,20056.393902959328,5,3,5,5_1,5_3,5_0_1 -21089,2,66.0,0.0,1,111,423.0,1040.0,0.0,52,78,0.0,0.0,584.6596982646187,1463.0,0.0,1886.1990168813468,50,0,0,0,0,0,0,0,0,0,,1,,1,117106,2,1,1,0,1,,258.0,,42,1.0,2.0,5.0,2.0,1.5,3,3,289.337393530365,423.0,20880.23122784658,4,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07006627388536263,13920.15415189772,3,2,3_0,3_1_0,3_3_0,3_1_0 -21090,2,33.0,0.0,6,111,2100.0,0.0,0.0,45,64,0.0,31.055175144583732,2902.5658779094542,2130.0,0.0,0.0,43,1,2,2,1,1,2,2,2,2,30.0,1,,4,117416,1,2,1,0,1,,410.0,450.0,43,2.0,0.0,4.0,2.0,1.5,3,2,389.91012463433,2100.0,46021.807371102856,1,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.046282406573572105,30681.20491406857,8,4,8,8_1,8_3,8_0_0 -21091,2,42.0,0.0,6,111,1200.0,2400.0,0.0,54,21,0.0,0.0,1658.6090730911167,3600.0,0.0,4352.7669620338775,44,0,0,0,0,0,0,0,0,2,8.0,1,,4,115491,2,1,2,0,1,,600.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,2,2,1687.92629769209,1200.0,110944.84565507385,1,1,1,2,160.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032448555665148746,42671.09448272071,9,5,9,9_1,9_3,9_0_0 -21092,2,56.0,0.0,2,111,150.0,1200.0,0.0,78,34,0.0,0.0,207.32613413638958,1350.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,124673,2,2,2,0,1,,120.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1474.95655869928,150.0,22979.299132227203,6,1,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0587485280657102,15319.532754818136,3,2,3_0,3_1_0,3_3_0,3_0_1 -21093,2,43.0,0.0,5,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,1430.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,,3,121158,2,1,2,0,1,,245.0,,43,2.0,0.0,7.0,5.0,2.8,1,1,1618.36333911614,0.0,37602.213353752566,4,1,1,2,140.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0380296762466322,13429.361912054488,3,2,3_0,3_1_0,3_3_0,3_0_0 -21094,2,57.0,0.0,1,111,1230.0,0.0,0.0,78,62,0.0,517.5862524097289,1700.0742999183947,1790.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,100496,2,1,3,0,1,,390.0,,42,1.0,0.0,5.0,3.0,2.0,2,2,1452.86296222597,1230.0,27607.44304372254,7,1,0,1,125.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06483758735516129,13803.72152186127,3,2,3_0,3_1_0,3_3_0,3_1_0 -21095,2,52.0,0.0,2,111,1000.0,0.0,0.0,0,42,3733.962192545002,0.0,1382.1742275759307,3550.0,86.01635020950958,0.0,31,2,2,2,2,2,2,2,1,2,20.0,1,,2,109297,1,2,3,0,2,,400.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,1563.37043801856,1000.0,41358.67874264997,0,1,0,1,100.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0858344634771701,20679.339371324986,5,3,5,5_1,5_3,5_0_1 -21096,2,27.0,0.0,5,111,0.0,0.0,1900.0,63,52,0.0,0.0,970.7353361912976,1900.0,0.0,2172.16697184,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,111674,1,1,3,0,1,,360.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1563.37043801856,0.0,35773.921398478524,1,1,1,2,82.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05311131477134647,19874.400776932514,5,3,5,5_1,5_3,5_0_0 -21097,2,56.0,0.0,5,111,1800.0,0.0,0.0,52,63,0.0,103.51725048194578,2487.913609636675,2080.0,309.6588607542345,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,119240,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1671.84402725711,1800.0,34571.747877085756,1,1,1,2,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06016473356785728,13828.699150834302,3,2,3_0,3_1_0,3_3_0,3_0_0 -21098,2,47.0,0.0,2,111,420.0,1500.0,0.0,68,48,0.0,0.0,580.5131755818909,1920.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,127310,2,1,1,0,1,,460.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,1192.15911193813,420.0,57777.55625455377,1,1,0,1,105.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033230896639881234,28888.778127276884,8,4,8,8_1,8_3,8_0_1 -21099,2,88.0,0.0,1,111,200.0,1500.0,0.0,0,77,0.0,0.0,276.4348455151861,1700.0,0.0,2720.4793512711735,10,0,0,0,0,0,0,0,0,0,,1,,1,101761,2,1,2,0,1,,240.0,,11,0.0,6.0,5.0,1.0,1.0,2,2,1853.9680579518,200.0,25762.082076886032,0,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06598845523923143,25762.082076886032,7,4,7,7_1,7_3,7_1_0 -21100,1,40.0,369.0,1,111,780.0,0.0,0.0,63,56,0.0,414.0690019277831,1078.0958975092258,1540.0,619.317721508469,0.0,50,2,2,2,1,1,2,2,2,1,20.0,1,,1,117439,1,3,3,0,1,,430.0,324.0,43,2.0,0.0,4.0,5.0,3.0,3,3,1608.88607596634,780.0,14934.266993253215,4,1,2,3,84.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.10311855283528269,4978.0889977510715,1,1,1_1,1_1_1,1_3_1,1_1_0 -21101,1,49.0,222.0,2,111,400.0,0.0,0.0,85,64,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,125280,1,2,0,1,1,,400.0,404.0,42,1.0,3.0,3.0,2.0,1.5,3,3,2637.55393562659,400.0,14177.039478074776,6,4,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.028214635405270066,9451.35965204985,1,1,1_1,1_0_1,1_3_1,1_0_1 -21102,2,64.0,0.0,2,111,0.0,0.0,1500.0,78,78,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,50,0,0,0,0,0,0,0,0,0,,1,,2,106790,1,1,1,0,1,,250.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,1717.13797393851,0.0,23977.314042143167,5,5,0,1,95.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06255913391147816,15984.876028095445,3,2,3_0,3_1_0,3_3_0,3_0_1 -21103,1,61.0,71.0,6,111,1000.0,0.0,0.0,54,78,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,105299,2,1,2,0,1,,450.0,430.0,42,2.0,0.0,3.0,4.0,2.5,2,2,1160.4009675898,1000.0,32332.58924631093,4,5,2,3,85.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030928546810215566,12933.035698524372,2,1,2_1,2_1_1,2_3_1,2_0_0 -21104,2,31.0,0.0,2,111,380.0,0.0,0.0,43,65,0.0,0.0,525.2262064788536,1819.0,0.0,0.0,20,2,1,2,1,1,2,2,2,2,10.0,2,,2,103741,1,3,0,1,1,,350.0,648.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1473.51028868789,380.0,50860.63510798737,1,1,2,3,82.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03576439806813062,33907.09007199158,9,5,9,9_0,9_3,9_0_1 -21105,1,27.0,218.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,124351,2,1,1,0,1,,292.0,459.0,32,1.0,0.0,4.0,2.0,1.3,2,2,1480.99945598438,0.0,22561.35571225006,0,2,2,3,72.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04875593532718146,17354.889009423125,4,2,4_1,4_1_1,4_3_1,4_1_0 -21106,1,36.0,434.0,1,111,0.0,0.0,0.0,63,52,0.0,0.0,0.0,1834.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,25.0,1,,1,106266,1,2,5,0,1,,635.0,603.0,43,2.0,0.0,5.0,4.0,2.1,4,4,1460.42574768358,0.0,14733.751728817499,1,1,2,3,105.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1244761031511689,7016.072251817856,1,1,1_1,1_1_1,1_3_1,1_1_0 -21107,2,44.0,0.0,9,111,700.0,1000.0,0.0,0,54,0.0,0.0,967.5219593031513,1700.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,133673,1,3,1,0,1,,500.0,550.0,32,1.0,0.0,4.0,4.0,2.1,2,2,1370.95131561266,700.0,18658.019801917988,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09111363467548926,8884.771334246661,1,1,1_0,1_1_0,1_3_0,1_0_0 -21108,2,76.0,0.0,2,111,200.0,800.0,0.0,0,78,0.0,0.0,276.4348455151861,1000.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,2,109583,2,1,2,0,1,,120.0,,11,0.0,5.0,6.0,1.0,1.0,2,2,1875.63480492935,200.0,11834.666368099115,0,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0844975235377607,11834.666368099115,2,1,2_0,2_1_0,2_3_0,2_0_1 -21109,1,39.0,521.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1617.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,1,,2,112922,2,1,2,0,1,,357.0,765.0,42,1.0,0.0,7.0,8.0,3.499999999999999,2,2,1432.76285406374,0.0,43639.972045042334,6,1,2,3,170.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03705318597204962,12468.56344144067,2,1,2_1,2_1_1,2_3_1,2_0_1 -21110,2,35.0,0.0,1,111,600.0,1120.0,0.0,56,46,0.0,165.62760077111324,829.3045365455583,1880.0,0.0,2031.2912489491428,43,0,0,0,0,0,0,0,0,2,25.0,1,,1,130402,2,1,2,0,1,,430.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1227.99653802084,600.0,48369.61428409987,1,1,1,2,95.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03886737630277106,23033.149659095176,6,3,6,6_1,6_3,6_1_0 -21111,2,56.0,0.0,2,111,360.0,1900.0,0.0,47,52,0.0,0.0,497.582721927335,2260.0,0.0,3445.940511610153,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,122749,2,1,2,0,1,,240.0,,43,2.0,2.0,3.0,2.0,1.5,3,2,1349.75654682531,360.0,42372.82544343344,1,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05333607037881007,28248.55029562229,8,4,8,8_1,8_3,8_0_1 -21112,1,22.0,434.0,8,111,0.0,0.0,0.0,62,64,0.0,0.0,0.0,780.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,100572,2,1,1,0,1,,411.0,468.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1416.18538684409,0.0,20741.85707119138,4,1,2,3,88.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03760511883400024,9877.07479580542,2,1,2_1,2_1_1,2_3_1,2_0_0 -21113,2,65.0,0.0,1,111,360.0,1100.0,0.0,68,78,0.0,41.40690019277831,497.582721927335,1500.0,0.0,1995.0181909321939,60,2,2,1,1,2,2,2,2,0,,1,,1,127089,2,1,1,0,1,,240.0,500.0,42,1.0,4.0,5.0,2.0,1.5,4,4,1212.82091557933,360.0,26181.79601082817,1,5,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05729171518178645,17454.530673885445,4,2,4_0,4_1_0,4_3_0,4_1_0 -21114,1,31.0,308.0,9,111,0.0,0.0,1100.0,55,63,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,20,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,120117,1,1,1,0,1,,444.0,566.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,1596.84658149913,0.0,42012.384338974305,1,1,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02618275580659071,15560.142347768262,3,2,3_1,3_1_1,3_3_1,3_0_0 -21115,0,68.0,0.0,1,111,146.0,1321.0,0.0,77,78,0.0,0.0,201.79743722608586,1467.0,0.0,2395.83548201948,41,2,2,2,2,2,2,2,1,0,,1,,1,114473,2,2,1,0,1,,180.0,,41,0.0,5.0,6.0,2.0,1.5,4,4,1337.18262645582,146.0,33806.0,5,5,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.043394663669171156,22537.333333333332,6,3,6,6_1,6_3,6_1_0 -21116,1,25.0,243.0,1,111,0.0,0.0,0.0,47,52,0.0,0.0,0.0,860.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,117086,2,1,2,0,1,,200.0,560.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1138.67400597085,0.0,33200.95622727988,1,1,2,3,90.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.025902868402729103,22133.970818186586,6,3,6,6_1,6_3,6_1_0 -21117,1,67.0,25.0,5,111,1090.0,0.0,0.0,0,77,0.0,0.0,1506.5699080577642,1090.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,3,133114,2,2,0,0,1,,399.0,292.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2011.33167200724,1090.0,21494.473247132777,0,5,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.050710710026141206,21494.473247132777,6,3,6,6_0,6_3,6_0_0 -21118,2,48.0,0.0,1,111,0.0,0.0,1500.0,85,22,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,107703,2,1,1,0,1,,800.0,,42,1.0,0.0,8.0,4.0,2.3,2,2,1542.95776705658,0.0,54848.946695565806,6,1,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027347836018175815,23847.368128506874,6,3,6,6_1,6_3,6_1_0 -21119,1,31.0,370.0,1,111,0.0,0.0,1600.0,85,21,0.0,0.0,817.4613357400401,1600.0,0.0,1829.1932394442103,50,0,0,0,0,0,0,0,0,0,,1,,1,100960,2,1,2,0,1,,600.0,518.0,42,1.0,0.0,5.0,4.0,2.1,1,1,1356.65656383553,0.0,18843.879786131663,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08490820458202751,8973.276088634126,1,1,1_1,1_1_1,1_3_1,1_1_0 -21120,2,78.0,0.0,1,111,207.0,1144.0,0.0,0,86,0.0,0.0,286.1100651082176,1351.0,0.0,2074.8189185694814,41,0,0,0,0,0,0,0,0,0,,1,,1,106626,2,1,2,0,1,,120.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1621.16044994185,207.0,16732.299461096227,0,6,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08074204045541798,16732.299461096227,4,2,4_0,4_1_0,4_3_0,4_1_0 -21121,2,63.0,0.0,1,111,400.0,800.0,0.0,86,78,0.0,207.03450096389156,552.8696910303722,1400.0,0.0,1450.922320677959,60,0,0,0,0,0,0,0,0,0,,1,,1,128168,2,1,1,0,1,,400.0,,41,1.0,5.0,5.0,3.0,2.0,1,1,1161.92108958564,400.0,35204.29441249504,6,5,0,1,140.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.039767875577790275,17602.14720624752,4,2,4_0,4_1_0,4_3_0,4_1_0 -21122,2,62.0,0.0,9,111,680.0,1000.0,0.0,0,78,0.0,0.0,939.8784747516328,1680.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,111067,2,1,1,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1769.70863809004,680.0,31473.060013734226,0,5,0,1,140.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053378985051560954,31473.060013734226,8,4,8,8_1,8_3,8_0_0 -21123,2,26.0,0.0,2,111,420.0,1500.0,0.0,62,56,0.0,0.0,580.5131755818909,1920.0,0.0,2720.4793512711735,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,120235,2,1,1,0,1,,1200.0,300.0,43,2.0,0.0,6.0,4.0,2.1,1,1,1572.35026306664,420.0,32433.311057238014,1,1,2,3,130.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05919839626030168,15444.433836780006,3,2,3_0,3_1_0,3_3_0,3_0_1 -21124,0,76.0,0.0,1,111,620.0,1200.0,0.0,75,78,0.0,0.0,856.9480210970769,1820.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,1,,1,122098,2,1,1,0,1,,350.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1390.18688546757,620.0,33275.017335491095,5,5,5,0,85.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05469568901046943,22183.344890327397,6,3,6,6_1,6_3,6_1_0 -21125,2,54.0,0.0,6,111,0.0,0.0,1250.0,54,33,0.0,0.0,638.6416685469063,1250.0,0.0,1429.0572183157892,42,0,0,0,0,0,0,0,0,2,90.0,1,,4,131556,2,1,2,0,1,,273.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1558.47326506011,0.0,82329.50525155943,4,1,0,1,170.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015182892162179286,54886.33683437295,10,5,10,10_1,10_3,10_0_0 -21126,1,25.0,470.0,1,111,1000.0,0.0,0.0,0,48,0.0,0.0,1382.1742275759307,1156.0,268.3710126536699,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,127614,2,1,0,0,1,,900.0,550.0,32,1.0,0.0,4.0,4.0,1.9,1,1,1448.81480339024,1000.0,11146.43995063407,0,1,2,3,88.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10371024337095544,5866.547342438985,1,1,1_1,1_0_1,1_3_1,1_1_0 -21127,2,74.0,0.0,1,111,1500.0,3500.0,0.0,90,72,0.0,0.0,2073.261341363896,5000.0,0.0,6347.785152966071,41,0,0,0,0,0,0,0,0,0,,1,,1,121366,2,1,2,0,1,,600.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1297.72109857665,1500.0,72013.6189313819,5,5,0,1,220.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06943131138520124,48009.079287587934,10,5,10,10_1,10_3,10_1_0 -21128,2,50.0,0.0,1,111,700.0,0.0,0.0,54,48,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,1,2,2,1,1,2,2,2,2,30.0,1,,1,129932,1,1,2,0,1,,400.0,,43,2.0,4.0,5.0,4.0,2.5,2,2,1549.1367625596,700.0,59174.69935117,1,1,1,2,110.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.011829379915322876,23669.879740468,6,3,6,6_1,6_3,6_1_0 -21129,2,87.0,0.0,2,111,240.0,1666.0,0.0,0,77,0.0,0.0,331.72181461822333,1906.0,0.0,3021.54573281185,71,0,0,0,0,0,0,0,0,0,,1,,2,102655,2,1,1,0,1,,192.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1488.29192607056,240.0,19544.589297866023,0,5,0,1,88.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09752059615845224,19544.589297866023,5,3,5,5_1,5_3,5_0_1 -21130,2,26.0,0.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1107.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,2,,3,114959,2,1,0,0,1,,205.0,520.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1749.43101495344,0.0,19229.553041664356,0,1,2,3,47.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05756764068314439,19229.553041664356,5,3,5,5_0,5_3,5_0_0 -21131,2,55.0,0.0,6,111,758.0,562.0,0.0,45,65,0.0,0.0,1047.6880645025553,1320.0,0.0,1019.2729302762663,70,0,0,0,0,0,0,0,0,2,15.0,1,,4,113509,2,1,2,0,1,,650.0,,43,5.0,0.0,5.0,5.0,3.0,2,2,1488.62479904743,758.0,42155.0,4,1,0,1,88.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03131301150515953,14051.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0 -21132,0,58.0,0.0,1,111,720.0,0.0,0.0,0,77,0.0,465.827627168756,995.16544385467,1302.0,227.0831645531053,0.0,41,2,2,2,1,2,2,2,2,0,,1,,1,131470,1,3,3,0,1,,630.0,,31,3.0,1.0,6.0,5.0,3.0,2,2,1420.71833660107,720.0,29899.4990337727,0,6,5,0,100.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.043545880100845105,9966.499677924234,2,1,2_0,2_1_0,2_3_0,2_1_0 -21133,2,52.0,0.0,1,111,460.0,940.0,0.0,67,52,0.0,0.0,635.800144684928,1400.0,0.0,1704.833726796602,12,2,2,2,2,2,2,2,1,1,60.0,1,,1,106072,2,2,2,0,1,,350.0,414.0,43,2.0,3.0,3.0,2.0,1.5,2,2,1128.60416877295,460.0,31538.393520601305,1,1,2,3,64.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0443903396374803,21025.59568040087,5,3,5,5_1,5_3,5_1_0 -21134,2,69.0,0.0,2,111,0.0,0.0,1730.0,78,78,0.0,0.0,883.8800692689184,1790.0,103.2196202514115,1977.8151901490526,20,0,0,0,0,0,0,0,0,0,,1,,2,105524,2,1,2,0,1,,200.0,,41,1.0,3.0,6.0,4.0,2.3,1,1,1434.3672611307,0.0,44421.15302051163,5,5,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040296117463980756,19313.544791526798,5,3,5,5_1,5_3,5_0_1 -21135,2,72.0,0.0,2,111,1560.0,0.0,0.0,78,78,0.0,0.0,2156.1917950184516,1740.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,105727,2,1,2,0,1,,350.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1442.70818403647,1560.0,33013.000756898466,5,5,0,1,94.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052706508348424094,22008.667171265643,6,3,6,6_1,6_3,6_0_1 -21136,2,35.0,0.0,1,111,0.0,0.0,0.0,43,65,0.0,0.0,0.0,1550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,1,128439,2,2,5,0,2,,133.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1177.71395492526,0.0,32484.33930407724,1,1,1,2,75.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04771530014789167,21656.22620271816,6,3,6,6_1,6_3,6_1_0 -21137,1,34.0,377.0,1,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1615.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,114033,1,1,1,0,1,,438.0,515.0,42,1.0,1.0,5.0,4.0,2.1,1,1,1369.80835022379,0.0,23359.805704303508,6,1,2,3,110.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06913584900676092,11123.717002049289,2,1,2_1,2_1_1,2_3_1,2_1_0 -21138,2,44.0,0.0,1,111,750.0,960.0,0.0,67,48,0.0,258.79312620486445,1036.630670681948,1960.0,0.0,1741.106784813551,71,2,2,2,2,2,1,2,2,2,15.0,1,,1,130921,1,1,2,0,1,,750.0,500.0,43,2.0,2.0,7.0,3.0,1.8,1,1,1103.32381216128,750.0,27285.19049069693,4,1,2,3,130.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.07183383970393299,15158.439161498292,3,2,3_0,3_1_0,3_3_0,3_1_0 -21139,1,56.0,270.0,1,111,210.0,350.0,0.0,0,69,0.0,0.0,290.25658779094545,610.0,86.01635020950958,634.7785152966071,44,0,0,0,0,0,0,0,0,0,,1,,1,122337,2,2,1,0,1,,150.0,392.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1140.56445685275,210.0,6026.1598096696325,0,4,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10122532745002684,6026.1598096696325,1,1,1_1,1_1_1,1_3_1,1_1_0 -21140,2,26.0,0.0,1,111,180.0,0.0,0.0,68,62,0.0,414.0690019277831,248.7913609636675,640.0,103.2196202514115,0.0,43,2,2,2,2,1,2,2,2,2,60.0,1,,1,124871,2,2,4,0,1,,155.0,361.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1167.00186918772,180.0,36387.560688039506,1,1,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.017588428240268558,24258.373792026337,7,4,7,7_1,7_3,7_1_0 -21141,2,63.0,0.0,1,111,350.0,1200.0,0.0,78,78,0.0,0.0,483.76097965157567,1630.0,137.62616033521533,2176.3834810169387,42,2,2,2,1,2,2,2,2,0,,1,,1,122061,2,1,1,0,1,,170.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1226.38610960162,350.0,27051.64655646799,7,5,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06025511225712324,18034.431037645325,4,2,4_0,4_1_0,4_3_0,4_1_0 -21142,2,60.0,0.0,6,111,1000.0,1000.0,0.0,55,55,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,111771,2,2,4,0,1,,0.0,570.0,43,2.0,1.0,6.0,3.0,1.8,2,2,225.271639221858,1000.0,48622.785236772965,1,1,2,3,86.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04113297891638298,27012.658464873868,7,4,7,7_1,7_2,7_0_0 -21144,1,57.0,227.0,1,120,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,1078.0,1424.4307594694787,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,105508,2,1,0,0,1,,66.0,259.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1959.29114486215,250.0,9365.0,0,7,2,3,42.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11510945008008543,9365.0,1,1,1_1,1_0_1,1_0_1,1_1_0 -21145,2,63.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,2605.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,127081,2,2,5,0,1,,0.0,400.0,11,0.0,8.0,3.0,1.0,1.0,2,2,226.958480976751,0.0,17569.0129420659,0,5,2,3,70.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14827241624728885,17569.0129420659,4,2,4_0,4_1_0,4_2_0,4_0_1 -21146,1,26.0,260.0,9,120,470.0,0.0,0.0,0,56,0.0,0.0,649.6218869606873,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2012.0,6,111454,1,2,0,0,1,,220.0,398.0,12,1.0,0.0,2.0,1.0,1.0,2,2,4725.65907562503,470.0,10630.0,0,1,2,3,65.0,0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04421448730009407,10630.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -21147,2,42.0,0.0,1,120,1500.0,0.0,0.0,52,48,0.0,51.75862524097289,2073.261341363896,1710.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131073,2,1,1,0,1,,220.0,,43,2.0,0.0,7.0,4.0,2.1,3,3,1233.53650458463,1500.0,42493.32599229452,1,1,1,2,85.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04024161347855145,20234.917139187866,5,3,5,5_1,5_0,5_1_0 -21148,2,79.0,0.0,2,111,1570.0,0.0,0.0,78,78,0.0,0.0,2170.013537294211,1690.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,132847,1,3,0,0,1,,0.0,320.0,41,0.0,0.0,3.0,2.0,1.5,3,3,311.117437261772,1570.0,20684.388280461935,5,5,2,3,70.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08170413246382252,13789.592186974623,3,2,3_0,3_0_0,3_2_0,3_0_1 -21149,2,29.0,0.0,9,111,560.0,330.0,0.0,52,48,0.0,0.0,774.0175674425211,890.0,0.0,598.5054572796581,71,0,0,0,0,0,0,0,0,0,,2,2011.0,6,128805,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,6103.6650783098,560.0,43324.41284016053,1,1,1,2,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02054269040606581,20630.67278102882,5,3,5,5_0,5_3,5_0_0 -21150,1,40.0,295.0,7,120,450.0,850.0,0.0,85,42,0.0,36.23103766868102,621.9784024091688,1335.0,0.0,1541.6049657203316,70,0,0,0,0,0,0,0,0,2,17.0,1,,5,130372,2,1,1,0,1,,250.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,1226.58522329511,450.0,39835.570792188904,6,1,1,2,137.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03351276192236139,16598.154496745377,4,2,4_1,4_1_1,4_0_1,4_0_0 -21151,2,34.0,0.0,9,111,1400.0,0.0,0.0,43,65,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,150.0,1,2011.0,6,102674,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,475.903822027598,1400.0,46213.562063675265,1,1,1,2,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030294137423793752,25674.20114648626,7,4,7,7_1,7_3,7_0_0 -21152,2,34.0,0.0,1,120,957.0,1406.0,0.0,43,48,0.0,817.7862788073717,1322.7407357901654,3153.0,0.0,2549.995978591513,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,115064,2,2,1,0,1,,290.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1439.60307418808,957.0,37951.87677214255,1,1,1,2,150.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08307889538454569,21084.375984523638,5,3,5,5_1,5_0,5_1_0 -21153,2,46.0,0.0,9,111,800.0,1500.0,0.0,54,48,0.0,0.0,1105.7393820607444,2300.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,102103,2,1,1,0,1,,1200.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,622.044928238254,800.0,38399.19286090076,1,1,1,2,150.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05989709232513402,15359.677144360303,3,2,3_0,3_1_0,3_2_0,3_0_0 -21154,1,35.0,172.0,1,120,539.0,1198.0,0.0,0,52,0.0,0.0,744.9919086634266,1737.0,0.0,2172.7561752152437,50,2,2,2,2,2,1,2,2,2,20.0,1,,1,124617,1,2,3,0,1,,253.0,,32,1.0,0.0,5.0,2.0,1.3,2,2,1446.55826901759,539.0,18803.366070203883,0,1,1,2,104.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.09237707724855063,14464.127746310678,3,2,3_1,3_1_1,3_0_1,3_1_0 -21155,2,63.0,0.0,5,300,760.0,0.0,0.0,75,22,0.0,698.741440753134,1050.452412957707,1528.0,159.99041138968784,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,123976,2,1,3,0,1,,274.0,,42,2.0,2.0,5.0,3.0,2.0,1,1,1434.04208540028,760.0,63021.089383955456,5,1,0,1,107.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02424585190349016,31510.544691977728,8,4,8,8_1,8_0,8_0_0 -21156,2,43.0,0.0,9,400,0.0,0.0,0.0,43,31,0.0,0.0,0.0,1221.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,2.0,1,2012.0,6,128607,2,1,1,0,1,,391.0,,43,2.0,0.0,8.0,5.0,2.4,3,3,1402.97688673996,0.0,9873.241410726383,1,1,1,2,210.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1236675929622762,4113.85058780266,1,1,1_0,1_1_0,1_0_0,1_0_0 -21157,2,58.0,0.0,5,111,900.0,0.0,0.0,85,67,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,110984,2,1,0,0,1,,0.0,257.0,42,1.0,6.0,3.0,2.0,1.5,3,3,312.954539878696,900.0,22490.80597691026,6,1,2,3,64.0,3,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04001635161158596,14993.870651273506,3,2,3_0,3_0_0,3_2_0,3_0_0 -21158,2,33.0,0.0,9,112,1600.0,0.0,0.0,42,48,0.0,207.03450096389156,2211.478764121489,1800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,120556,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1406.71132050343,1600.0,51238.612258181165,1,1,1,2,150.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035129757045919946,24399.33917056246,7,4,7,7_1,7_0,7_0_0 -21159,2,65.0,0.0,2,211,900.0,0.0,0.0,77,78,2987.1697540360015,0.0,1243.9568048183376,3485.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,132225,2,1,2,0,1,,270.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,252.817677965536,900.0,30903.737723104423,5,5,0,1,100.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.11276953070290022,20602.491815402947,5,3,5,5_1,5_1,5_0_1 -21160,1,40.0,150.0,9,111,2000.0,0.0,0.0,52,69,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,15.0,1,2011.0,6,106225,2,1,1,0,1,,350.0,,43,2.0,1.0,5.0,3.0,1.8,3,3,324.632128314711,2000.0,30029.988961459803,4,1,1,2,156.0,5,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06660009108117824,16683.327200811,4,2,4_1,4_1_1,4_2_1,4_0_0 -21161,2,63.0,0.0,1,300,580.0,0.0,0.0,68,77,0.0,1552.7587572291866,801.6610519940398,2180.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111324,2,3,4,0,1,,220.0,480.0,42,1.0,2.0,5.0,2.0,1.5,2,2,1617.87340105081,580.0,32750.84255598142,1,5,2,3,110.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06656317303207387,21833.895037320948,6,3,6,6_1,6_0,6_1_0 -21162,2,26.0,0.0,9,112,1045.0,0.0,0.0,22,45,0.0,414.0690019277831,1444.3720678168474,1445.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2012.0,6,120053,2,1,1,0,1,,311.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,542.980018293412,1045.0,36532.52092366357,1,1,1,2,140.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03955379928528326,24355.01394910905,7,4,7,7_1,7_0,7_0_0 -21163,1,20.0,351.0,1,300,0.0,0.0,0.0,67,62,0.0,0.0,0.0,444.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,2,,1,101601,2,1,0,0,1,,268.0,367.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1603.92336865345,0.0,38657.807421384365,4,1,2,3,67.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.011485390135044033,21476.55967854687,6,3,6,6_0,6_0,6_1_0 -21164,2,64.0,0.0,5,211,713.0,0.0,0.0,78,77,1493.5848770180007,517.5862524097289,985.4902242616384,2213.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131300,2,2,2,0,1,,375.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,244.005007272282,713.0,33248.10436632867,5,5,0,1,84.0,2,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06656018567606428,22165.40291088578,6,3,6,6_1,6_1,6_0_0 -21165,2,41.0,0.0,9,112,0.0,0.0,0.0,56,53,0.0,0.0,0.0,983.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,117750,2,1,1,0,1,,797.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,4,3,635.896949750684,0.0,46321.0,1,1,1,2,120.0,5,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021221476220288853,17815.769230769234,4,2,4_0,4_1_0,4_1_0,4_0_0 -21166,2,54.0,0.0,7,300,500.0,0.0,0.0,52,47,3733.962192545002,51.75862524097289,691.0871137879653,3170.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,4,80.0,1,,5,104699,1,1,2,0,1,,150.0,,43,2.0,0.0,8.0,4.0,2.5,3,3,1327.81981890824,500.0,89226.419012093,1,1,0,1,170.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035527594126246,35690.5676048372,9,5,9,9_1,9_0,9_0_0 -21167,2,50.0,0.0,9,120,1450.0,0.0,0.0,52,46,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,107452,2,1,1,0,1,,600.0,,43,3.0,0.0,4.0,3.0,2.0,5,2,481.133881098127,1450.0,43851.52219262054,1,1,1,2,95.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033066126955200885,21925.76109631027,6,3,6,6_1,6_1,6_0_0 -21168,1,44.0,168.0,2,211,720.0,0.0,0.0,0,67,0.0,1449.241506747241,995.16544385467,2420.0,516.0981012570575,0.0,71,2,2,2,1,1,2,2,2,2,5.0,2,,2,108264,2,1,0,1,1,,450.0,411.0,32,1.0,1.0,5.0,3.0,2.0,1,1,370.347397772234,720.0,23364.876157392453,0,1,2,3,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10357427035770236,11682.438078696227,2,1,2_1,2_0_1,2_1_1,2_0_1 -21169,2,32.0,0.0,9,112,0.0,0.0,0.0,43,45,0.0,0.0,0.0,2374.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,117457,2,1,1,0,1,,392.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1413.0543898695,0.0,44042.48949360651,1,1,1,2,107.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053902493417058654,24468.04971867028,7,4,7,7_1,7_0,7_0_0 -21170,2,52.0,0.0,1,300,840.0,0.0,0.0,0,48,0.0,0.0,1161.0263511637818,875.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,133428,2,1,2,0,1,,40.0,,12,1.0,3.0,6.0,1.0,1.0,2,2,1388.52717734268,840.0,19034.28559068036,0,1,1,2,98.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045969679073661736,19034.28559068036,5,3,5,5_1,5_0,5_1_0 -21171,2,56.0,0.0,2,211,468.0,1300.0,0.0,0,78,0.0,0.0,646.8575385055356,1884.0,199.55793248606224,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,2,104670,1,2,2,0,2,,400.0,,21,1.0,0.0,7.0,2.0,1.5,2,2,243.067338547446,468.0,27837.00228452983,0,5,0,1,100.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06767970131061908,18558.001523019888,4,2,4_0,4_1_0,4_1_0,4_0_1 -21172,2,76.0,0.0,2,211,813.0,0.0,0.0,77,75,5512.82178107344,0.0,1123.7076470192314,4666.0,278.692974678811,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113463,1,1,2,0,2,,281.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,243.067338547446,813.0,36653.23476383763,5,5,0,1,95.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12730117901090443,24435.48984255842,7,4,7,7_1,7_1,7_0_1 -21173,0,54.0,0.0,5,211,406.0,920.0,0.0,85,78,0.0,0.0,561.1627363958278,1326.0,0.0,1668.560668779653,30,2,2,1,2,1,2,2,2,0,,1,,3,104703,2,3,3,0,1,,596.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,243.468541113239,406.0,28298.999951475183,6,5,5,0,75.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.046856779471844114,18865.99996765012,5,3,5,5_1,5_1,5_0_0 -21174,2,33.0,0.0,9,111,1700.0,0.0,0.0,46,47,0.0,569.3448776507017,2349.696186879082,2250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,109724,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,389.165500494688,1700.0,47321.22786018804,1,1,1,2,130.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04754737148088573,22533.91802866097,6,3,6,6_1,6_2,6_0_0 -21175,2,80.0,0.0,1,300,1131.0,0.0,0.0,78,78,0.0,0.0,1563.2390513883774,3271.0,3681.4997889670103,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,128466,1,1,1,0,1,,104.0,,41,0.0,4.0,6.0,2.0,1.5,3,2,1521.47377005566,1131.0,22514.17722389621,5,5,0,1,170.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14528623309086372,15009.451482597475,3,2,3_0,3_1_0,3_0_0,3_1_0 -21176,1,21.0,230.0,9,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,276.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2006.0,6,118942,2,1,0,0,1,,189.0,460.0,12,1.0,0.0,3.0,1.0,1.0,2,2,392.013665708953,0.0,7347.928934867941,0,4,2,3,54.0,5,4,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037561604425745625,7347.928934867941,1,1,1_1,1_0_1,1_2_1,1_0_0 -21177,2,35.0,0.0,9,112,0.0,0.0,0.0,33,46,0.0,0.0,0.0,1977.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2013.0,6,106378,2,1,1,0,1,,311.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1033.05362598538,0.0,33268.54594751069,1,1,1,2,138.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05942550068521791,15842.164736909852,3,2,3_0,3_1_0,3_0_0,3_0_0 -21179,2,70.0,0.0,2,111,350.0,0.0,0.0,0,78,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133288,2,1,0,1,1,720.0,150.0,364.0,11,0.0,0.0,4.0,1.0,1.0,2,2,312.839434527743,350.0,15336.946410928302,0,5,2,3,50.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022820709587314487,15336.946410928302,3,2,3_0,3_0_0,3_2_0,3_0_1 -21180,2,26.0,0.0,9,111,0.0,0.0,0.0,43,37,0.0,0.0,0.0,261.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,2011.0,6,114607,2,1,0,0,1,,0.0,720.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2434.23816422867,0.0,47528.99202096171,1,1,2,3,57.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005491385129415141,31685.994680641143,8,4,8,8_0,8_3,8_0_0 -21181,2,49.0,0.0,1,300,1180.0,0.0,0.0,43,11,1792.3018524216009,0.0,1630.965588539598,2450.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,133595,1,1,2,0,1,,190.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,1406.61495841268,1180.0,137198.9131423064,1,1,0,1,150.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01785728431725107,48999.61183653801,10,5,10,10_1,10_0,10_1_0 -21182,2,75.0,0.0,2,111,600.0,700.0,0.0,78,78,0.0,828.1380038555662,829.3045365455583,2100.0,0.0,1269.5570305932142,43,0,0,0,0,0,0,0,0,0,,1,,2,124809,2,1,1,0,1,,700.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,290.901932030918,600.0,23265.861947608355,5,5,0,1,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09026100149347238,15510.574631738904,3,2,3_0,3_1_0,3_3_0,3_0_1 -21183,2,37.0,0.0,9,120,1200.0,0.0,0.0,33,33,0.0,181.15518834340511,1658.6090730911167,1375.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,114547,2,1,1,0,1,,360.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1523.86624316015,1200.0,58961.50399739953,1,1,1,2,146.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023320300650075745,32756.391109666405,8,4,8,8_1,8_0,8_0_0 -21184,2,83.0,0.0,1,300,147.0,0.0,0.0,0,78,3281.4059748085474,258.79312620486445,203.17961145366178,2660.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131715,2,2,3,0,1,,98.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1482.09572265174,147.0,17703.77976347657,0,5,0,1,115.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15025040050981994,17703.77976347657,4,2,4_0,4_1_0,4_0_0,4_1_0 -21185,2,61.0,0.0,2,111,500.0,1090.0,0.0,0,78,0.0,103.51725048194578,691.0871137879653,1690.0,0.0,1976.8816619237193,42,0,0,0,0,0,0,0,0,0,,1,,2,129014,2,1,2,0,1,,300.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,280.016535290322,500.0,32854.672394568785,0,5,0,1,112.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051438650177482045,32854.672394568785,8,4,8,8_1,8_3,8_0_1 -21186,2,45.0,0.0,9,300,1190.0,0.0,0.0,52,62,0.0,144.92415067472407,1644.7873308153573,1480.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,128797,2,1,1,0,1,,217.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1200.49516790919,1190.0,36676.06953307002,4,1,1,2,130.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04035328809335788,17464.795015747626,4,2,4_0,4_1_0,4_0_0,4_0_0 -21187,2,63.0,0.0,1,111,360.0,980.0,0.0,0,78,0.0,0.0,497.582721927335,1340.0,0.0,1777.3798428305,50,0,0,0,0,0,0,0,0,0,,2,,1,107940,2,2,0,0,1,,290.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,419.358413703428,360.0,14989.13223976015,0,5,0,1,70.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08939810381054067,14989.13223976015,3,2,3_0,3_0_0,3_3_0,3_1_0 -21188,2,30.0,0.0,9,300,1045.0,0.0,0.0,54,64,0.0,486.53107726514514,1444.3720678168474,1515.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,100141,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,1346.82266342692,1045.0,36853.55272571278,4,1,1,2,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04110865541988797,17549.31082176799,4,2,4_0,4_1_0,4_0_0,4_0_0 -21189,1,45.0,351.0,2,111,320.0,280.0,0.0,0,56,0.0,1578.638069849673,442.2957528242978,2125.0,0.0,507.8228122372857,43,2,2,2,2,1,2,2,2,0,,2,,2,117159,1,2,0,1,1,,360.0,443.0,32,1.0,1.0,4.0,2.0,1.3,2,1,282.248148539212,320.0,9964.39111111111,0,4,2,3,74.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.21325939300299557,7664.916239316239,1,1,1_1,1_0_1,1_2_1,1_0_1 -21190,2,27.0,0.0,9,111,1250.0,0.0,0.0,45,63,0.0,0.0,1727.717784469913,1298.0,82.5756962011292,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,118916,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,3.0,1.8,4,4,1056.21509298035,1250.0,44973.80592288168,1,1,1,2,140.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028861244303533724,24985.447734934263,7,4,7,7_1,7_2,7_0_0 -21191,2,45.0,0.0,7,300,1075.0,0.0,0.0,42,43,8513.433799002603,414.0690019277831,1485.8372946441254,7175.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,5,109084,2,1,2,0,1,,533.0,,43,2.0,0.0,8.0,5.0,2.8,1,1,1353.87981973,1075.0,154209.17512293576,1,1,1,2,320.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046527711430140783,55074.705401048486,10,5,10,10_1,10_0,10_0_0 -21192,1,42.0,251.0,2,111,270.0,0.0,0.0,0,81,0.0,0.0,373.1870414455012,330.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117677,2,1,0,1,1,142.0,0.0,256.0,12,1.0,0.0,3.0,1.0,1.0,4,3,307.121532000088,270.0,4827.223969130187,0,4,2,3,70.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0683622724179219,4827.223969130187,1,1,1_1,1_0_1,1_2_1,1_0_1 -21193,1,82.0,81.0,2,111,720.0,0.0,0.0,0,77,0.0,1080.720095031514,995.16544385467,1764.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,2,114275,2,1,0,1,1,329.0,0.0,199.0,11,0.0,1.0,2.0,1.0,1.0,1,1,308.495522992329,720.0,10745.353924801198,0,5,2,3,50.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.16416397378298883,10745.353924801198,2,1,2_1,2_0_1,2_2_1,2_0_1 -21194,2,72.0,0.0,1,300,1200.0,0.0,0.0,0,75,0.0,155.27587572291867,1658.6090730911167,1395.0,77.41471518855863,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108387,2,1,1,0,1,,104.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1544.84537314789,1200.0,19824.014419080424,0,5,0,1,130.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07036919821130305,19824.014419080424,5,3,5,5_1,5_0,5_1_0 -21195,1,47.0,353.0,2,111,900.0,150.0,0.0,0,56,0.0,0.0,1243.9568048183376,1050.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,2,,2,109442,2,1,0,1,1,1150.0,0.0,375.0,32,2.0,0.0,6.0,5.0,3.0,2,2,245.373605605138,900.0,25971.252069517155,0,1,2,3,117.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.040429317662062224,8657.084023172385,1,1,1_1,1_0_1,1_2_1,1_0_1 -21196,2,81.0,0.0,1,300,730.0,0.0,0.0,78,78,0.0,93.1655254337512,1008.9871861304293,820.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,103555,2,1,4,0,1,,175.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1187.93856709148,730.0,28265.479508924676,5,5,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029010652366293285,18843.653005949785,5,3,5,5_1,5_0,5_1_0 -21197,2,36.0,0.0,7,120,1360.0,0.0,0.0,0,62,0.0,0.0,1879.7569495032656,1420.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,106481,2,2,5,0,1,,370.0,497.0,32,1.0,0.0,4.0,2.0,1.3,1,1,917.740060202087,1360.0,27471.285946946395,0,1,2,3,104.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051690335965428,21131.758420727994,5,3,5,5_1,5_0,5_0_0 -21198,2,56.0,0.0,2,120,220.0,0.0,0.0,0,62,0.0,745.3242034700096,304.0783300667047,1090.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107293,1,2,1,0,2,,300.0,,22,1.0,1.0,6.0,3.0,2.0,1,1,803.142778949759,220.0,14901.510521251255,0,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07314694697866606,7450.755260625628,1,1,1_0,1_1_0,1_0_0,1_0_1 -21199,2,78.0,0.0,2,111,447.0,1517.0,0.0,0,78,0.0,0.0,617.831879726441,1964.0,0.0,2751.31145058558,50,0,0,0,0,0,0,0,0,0,,1,,2,105990,2,1,1,0,1,,170.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,264.815557660966,447.0,19243.27265424119,0,5,0,1,82.0,4,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10206164176378477,19243.27265424119,5,3,5,5_1,5_2,5_0_1 -21200,2,40.0,0.0,2,111,1000.0,1000.0,0.0,55,63,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,118215,2,1,0,0,1,,0.0,340.0,43,2.0,0.0,4.0,5.0,2.4,2,2,318.371819705551,1000.0,15509.705236438316,1,1,2,3,96.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12895151580967662,6462.377181849299,1,1,1_0,1_0_0,1_3_0,1_0_1 -21201,2,38.0,0.0,8,120,650.0,1738.0,0.0,0,54,0.0,207.03450096389156,898.4132479243549,2588.0,0.0,3152.128741672866,60,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,110340,2,1,1,0,1,,617.0,,32,1.0,0.0,7.0,3.0,1.6,2,2,740.955357524514,650.0,74274.94283865258,0,1,1,2,165.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03484351385664357,46421.839274157865,10,5,10,10_1,10_0,10_0_0 -21202,1,20.0,267.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,663.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107610,2,1,0,0,1,,0.0,250.0,12,1.0,0.0,2.0,1.0,1.0,3,3,418.175196204225,0.0,6584.93310519463,0,4,2,3,39.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10068439411738014,6584.93310519463,1,1,1_1,1_0_1,1_3_1,1_0_1 -21203,2,32.0,0.0,8,120,3021.0,0.0,0.0,85,37,0.0,0.0,4175.548341506887,3021.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,60.0,1,2001.0,6,112459,1,1,4,0,1,,690.0,,42,1.0,0.0,7.0,4.0,2.1,3,2,668.679636556161,3021.0,72135.76769851311,6,1,1,2,140.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04187936298988428,34350.365570720525,9,5,9,9_1,9_0,9_0_0 -21204,2,36.0,0.0,9,120,820.0,1400.0,0.0,54,52,0.0,0.0,1133.3828666122631,2220.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,116782,2,1,1,0,1,,770.0,,43,2.0,3.0,7.0,4.0,2.1,2,2,648.583879812288,820.0,95408.56043737121,1,1,1,2,156.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0232683523346657,45432.647827319626,10,5,10,10_1,10_0,10_0_0 -21205,2,52.0,0.0,1,120,500.0,0.0,0.0,62,56,2613.773534781501,0.0,691.0871137879653,2350.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,114485,2,2,4,0,1,,600.0,,43,2.0,3.0,6.0,2.0,1.5,3,3,738.982519020221,500.0,12882.030295900451,4,1,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.18242466024535425,8588.020197266967,1,1,1_0,1_1_0,1_0_0,1_1_0 -21206,1,37.0,215.0,2,111,180.0,180.0,0.0,0,43,0.0,0.0,248.7913609636675,360.0,0.0,326.4575221525408,20,0,0,0,0,0,0,0,0,0,,2,,2,122355,2,3,0,1,1,672.0,0.0,265.0,12,1.0,1.0,1.0,1.0,1.0,2,2,409.669723745813,180.0,6108.373063275512,0,4,2,3,25.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0589354966160099,6108.373063275512,1,1,1_1,1_0_1,1_3_1,1_0_1 -21207,1,47.0,150.0,8,120,850.0,0.0,0.0,52,43,2987.1697540360015,0.0,1174.848093439541,2880.0,51.60981012570575,0.0,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,107395,2,2,5,0,1,,950.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,602.212591061511,850.0,63888.158710153744,1,1,1,2,113.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04507877606969258,25555.2634840615,7,4,7,7_1,7_0,7_0_0 -21208,1,25.0,335.0,2,111,0.0,0.0,0.0,38,68,0.0,0.0,0.0,1027.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112908,2,3,0,1,1,600.0,698.0,500.0,43,2.0,0.0,5.0,3.0,1.8,2,2,461.197974711088,0.0,10522.021564554077,4,1,2,3,85.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09760481801897201,5845.567535863376,1,1,1_1,1_0_1,1_3_1,1_0_1 -21209,2,29.0,0.0,1,120,1000.0,0.0,0.0,0,68,0.0,0.0,1382.1742275759307,1090.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,124889,1,3,0,0,1,,1000.0,480.0,12,1.0,3.0,3.0,1.0,1.0,2,2,1067.96358167917,1000.0,9835.0,0,4,2,3,60.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11082867310625318,9835.0,2,1,2_0,2_0_0,2_0_0,2_1_0 -21210,2,53.0,0.0,2,111,318.0,150.0,0.0,67,48,0.0,0.0,439.5314043691459,468.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,0,,2,,2,108457,2,2,0,1,1,780.0,0.0,334.0,43,2.0,2.0,3.0,2.0,1.5,1,1,344.551790453706,318.0,48327.48315737416,1,1,2,3,67.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009683930745493192,32218.322104916107,8,4,8,8_0,8_3,8_0_1 -21211,2,43.0,0.0,9,120,624.0,1250.0,0.0,56,46,0.0,0.0,862.4767180073807,1874.0,0.0,2267.066126059311,50,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,126779,2,1,1,0,1,,677.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,679.270957061791,624.0,30931.922197954733,1,1,1,2,150.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060584660339146716,14729.486760930824,3,2,3_0,3_1_0,3_0_0,3_0_0 -21212,2,29.0,0.0,2,111,480.0,120.0,0.0,81,21,0.0,0.0,663.4436292364467,600.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,124730,2,3,0,1,1,804.0,0.0,323.0,43,2.0,0.0,3.0,2.0,1.5,1,1,343.072607075511,480.0,9447.729436683181,4,4,2,3,56.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06350732247584794,6298.486291122121,1,1,1_0,1_0_0,1_3_0,1_0_1 -21213,1,38.0,206.0,2,111,360.0,360.0,0.0,0,68,0.0,0.0,497.582721927335,720.0,0.0,652.9150443050816,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,100780,1,2,0,0,1,,0.0,270.0,12,1.0,0.0,3.0,1.0,1.0,1,1,358.403518774122,360.0,18359.26922166023,0,1,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03921724722847603,18359.26922166023,4,2,4_1,4_0_1,4_3_1,4_0_1 -21214,1,37.0,359.0,2,111,324.0,120.0,0.0,85,63,0.0,0.0,447.8244497346015,444.0,0.0,217.63834810169388,30,2,1,1,2,1,1,2,2,2,30.0,2,,2,118271,1,3,0,1,1,1200.0,0.0,325.0,42,1.0,0.0,3.0,4.0,2.1,1,1,333.663427757086,324.0,21556.270263544597,7,1,2,3,66.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.020597255210280104,10264.890601687903,2,1,2_1,2_0_1,2_3_1,2_0_1 -21215,2,66.0,0.0,1,120,640.0,890.0,0.0,78,72,0.0,0.0,884.5915056485956,1530.0,0.0,1614.1510817542296,20,0,0,0,0,0,0,0,0,0,,1,,1,104926,2,1,1,0,1,,370.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,690.348468941855,640.0,26174.513257582836,5,5,0,1,160.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0584538090524665,17449.675505055224,4,2,4_0,4_1_0,4_0_0,4_1_0 -21216,2,58.0,0.0,6,120,0.0,0.0,1200.0,56,21,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,70,0,0,0,0,0,0,0,0,0,,1,,4,112161,2,1,3,0,1,,700.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,771.346218787309,0.0,35246.054605131874,1,4,0,1,100.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034046363868064776,17623.027302565937,4,2,4_0,4_1_0,4_0_0,4_0_0 -21217,2,78.0,0.0,1,120,616.0,0.0,0.0,71,71,0.0,310.55175144583734,851.4193241867732,916.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,105979,2,1,4,0,1,,313.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,779.315962440242,616.0,45737.96127750246,5,5,0,1,140.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020027127891477776,30491.97418500164,8,4,8,8_1,8_0,8_1_0 -21218,2,40.0,0.0,1,120,380.0,700.0,0.0,47,34,0.0,207.03450096389156,525.2262064788536,1280.0,0.0,1269.5570305932142,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,103606,2,1,1,0,1,,450.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,750.709765637263,380.0,52132.98790632482,1,1,1,2,95.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024552592349012654,34755.325270883215,9,5,9,9_1,9_0,9_1_0 -21219,2,51.0,0.0,1,120,430.0,250.0,0.0,54,62,0.0,331.2552015422265,594.3349178576501,1000.0,0.0,453.4132252118622,60,0,0,0,0,0,0,0,0,2,35.0,1,,1,126364,2,1,2,0,1,,446.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,728.615646842374,430.0,52170.497056508895,1,1,0,1,160.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019167921649602876,34780.33137100593,9,5,9,9_1,9_0,9_1_0 -21220,2,46.0,0.0,8,120,951.0,1508.0,0.0,54,37,0.0,0.0,1314.44769042471,2459.0,0.0,2734.988574477953,41,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,123358,2,1,1,0,1,,930.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,648.677029507624,951.0,53374.67962257974,1,1,1,2,130.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04607053414442865,23206.382444599887,6,3,6,6_1,6_0,6_0_0 -21222,2,42.0,0.0,9,120,800.0,0.0,0.0,55,63,0.0,1035.1725048194578,1105.7393820607444,1800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2008.0,6,126534,1,1,1,0,1,,600.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,756.944634975467,800.0,13485.152795313714,1,1,1,2,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13348013384212645,7491.751552952063,1,1,1_0,1_1_0,1_0_0,1_0_0 -21223,1,45.0,472.0,2,111,0.0,0.0,588.0,85,68,0.0,0.0,300.41704088446477,588.0,0.0,672.2285154957473,50,0,0,0,0,0,0,0,0,0,,2,,2,123606,2,2,0,1,1,1000.0,0.0,465.0,42,1.0,0.0,5.0,8.0,3.8999999999999995,3,3,358.200718507711,0.0,29534.427748399197,6,1,2,3,140.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019908968780743358,7572.930191897231,1,1,1_1,1_0_1,1_3_1,1_0_1 -21224,2,65.0,0.0,1,120,0.0,0.0,2100.0,78,78,0.0,103.51725048194578,1072.9180031588025,2200.0,0.0,2400.8161267705264,31,0,0,0,0,0,0,0,0,0,,1,,1,128662,2,1,1,0,1,,1000.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,769.147033468841,0.0,12498.65204213325,6,5,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17601898129364257,8332.4346947555,1,1,1_0,1_1_0,1_0_0,1_1_0 -21225,2,36.0,0.0,9,120,450.0,600.0,0.0,52,62,0.0,0.0,621.9784024091688,1050.0,0.0,1088.1917405084694,10,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,100604,2,1,0,0,1,,450.0,560.0,43,2.0,0.0,3.0,2.0,1.5,2,2,976.909243170081,450.0,37510.20310574203,1,1,2,3,66.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027992383753295828,25006.802070494687,7,4,7,7_0,7_0,7_0_0 -21226,1,46.0,273.0,2,111,400.0,250.0,0.0,56,47,0.0,0.0,552.8696910303722,650.0,0.0,453.4132252118622,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,125269,2,2,0,1,1,550.0,300.0,315.0,43,2.0,0.0,4.0,7.0,2.9999999999999996,1,1,319.53021883078,400.0,29727.276893505936,4,1,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021865440360667395,9909.092297835314,2,1,2_1,2_0_1,2_3_1,2_0_1 -21227,2,71.0,0.0,2,120,1000.0,0.0,0.0,78,75,0.0,517.5862524097289,1382.1742275759307,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123185,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,637.539526603937,1000.0,24486.013100346412,5,5,0,1,87.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061259462447105326,16324.008733564275,4,2,4_0,4_1_0,4_0_0,4_0_1 -21228,2,42.0,0.0,5,111,460.0,942.0,0.0,56,63,0.0,0.0,635.800144684928,1402.0,0.0,1708.461032598297,50,0,0,0,0,0,0,0,0,0,,2,,3,110662,2,1,0,0,1,,790.0,376.0,43,2.0,1.0,5.0,5.0,2.8,1,1,286.12134825896,460.0,41536.91326378941,1,4,2,3,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033753109940940655,14834.611879924789,3,2,3_0,3_0_0,3_3_0,3_0_0 -21229,2,52.0,0.0,1,120,0.0,0.0,0.0,11,11,0.0,351.95865163861566,0.0,1511.0,722.5373417598805,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,127946,1,1,1,0,1,,350.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,744.254123791818,0.0,49683.26011620508,1,1,0,1,150.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030412658035440805,19873.30404648203,5,3,5,5_1,5_0,5_1_0 -21231,2,65.0,0.0,1,300,1700.0,0.0,0.0,0,52,448.0754631054002,0.0,2349.696186879082,2000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,131338,1,1,1,0,1,,300.0,,12,1.0,3.0,7.0,1.0,1.0,2,2,799.53122852284,1700.0,31157.95740032463,0,1,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06418906009477894,31157.95740032463,8,4,8,8_1,8_0,8_1_0 -21232,1,33.0,429.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,864.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,120873,2,1,0,0,1,,241.0,339.0,32,1.0,2.0,4.0,4.0,2.1,1,1,330.061708450499,0.0,14360.663872045945,0,4,2,3,75.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06016434948260557,6838.411367640926,1,1,1_1,1_0_1,1_3_1,1_0_1 -21233,2,75.0,0.0,2,300,570.0,0.0,0.0,77,75,2987.1697540360015,310.55175144583734,787.8393097182804,2990.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,120284,2,1,1,0,1,,280.0,,41,0.0,3.0,5.0,2.0,1.5,4,2,621.350383473446,570.0,28403.704570681446,5,5,0,1,88.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10526795871149514,18935.803047120964,5,3,5,5_1,5_0,5_0_1 -21234,1,51.0,28.0,5,111,360.0,480.0,0.0,85,53,0.0,0.0,497.582721927335,840.0,0.0,870.5533924067755,12,2,2,2,2,1,2,2,2,3,20.0,2,,3,113536,2,1,0,0,1,,450.0,,42,1.0,0.0,4.0,4.0,2.5,4,2,340.88514269464,360.0,19391.78105067114,6,1,1,2,70.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.04331732076620822,7756.712420268455,1,1,1_1,1_0_1,1_3_1,1_0_0 -21235,2,78.0,0.0,7,300,410.0,0.0,0.0,86,78,448.0754631054002,1035.1725048194578,566.6914333061316,1830.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,118224,2,1,1,0,1,,270.0,,41,0.0,5.0,3.0,2.0,1.5,5,4,665.741170289322,410.0,23081.25300981166,6,5,0,1,90.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07928512369853064,15387.502006541106,3,2,3_0,3_1_0,3_0_0,3_0_0 -21236,1,64.0,200.0,2,111,200.0,0.0,0.0,85,21,0.0,0.0,276.4348455151861,200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,,2,122872,2,2,0,1,1,300.0,0.0,392.0,42,1.0,0.0,1.0,2.0,1.5,4,3,345.991529404822,200.0,13306.053915304781,6,1,2,3,33.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015030752263070091,8870.702610203187,1,1,1_1,1_0_1,1_3_1,1_0_1 -21237,2,63.0,0.0,2,300,1413.0,0.0,0.0,75,56,0.0,0.0,1953.01218356479,1413.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,1,,2,129246,2,3,3,0,1,,600.0,,42,1.0,1.0,6.0,3.0,2.0,2,2,791.351820685326,1413.0,30966.728146589274,5,1,0,1,150.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.04562961877377511,15483.364073294637,3,2,3_0,3_1_0,3_0_0,3_0_1 -21238,2,83.0,0.0,2,111,322.0,1416.0,0.0,0,77,0.0,0.0,445.06010127944967,1738.0,0.0,2568.1325075999875,20,0,0,0,0,0,0,0,0,0,,2,,2,110898,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,4,3,419.358413703428,322.0,16978.346682163596,0,5,0,1,70.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10236567980001467,16978.346682163596,4,2,4_0,4_0_0,4_3_0,4_0_1 -21239,2,62.0,0.0,5,300,635.0,0.0,0.0,0,77,1493.5848770180007,82.81380038555662,877.6806345107159,2015.0,516.0981012570575,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,129690,2,2,3,0,1,,460.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,786.172539008794,635.0,9686.491067200823,0,6,0,1,107.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20802166501995129,9686.491067200823,1,1,1_0,1_1_0,1_0_0,1_0_0 -21240,2,59.0,0.0,1,300,750.0,0.0,0.0,74,11,0.0,0.0,1036.630670681948,1738.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,127848,2,1,4,0,1,,250.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,677.4442711875,750.0,52575.82514171794,5,1,0,1,240.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033057018036620964,35050.550094478625,9,5,9,9_1,9_0,9_1_0 -21241,2,75.0,0.0,2,111,240.0,1400.0,0.0,0,86,0.0,0.0,331.72181461822333,1640.0,0.0,2539.1140611864284,44,1,2,2,2,1,2,1,2,0,,2,,2,128290,1,3,0,0,1,,360.0,365.0,11,0.0,1.0,5.0,1.0,1.0,1,1,415.652843959781,240.0,9569.527858119265,0,6,2,3,118.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.171377316030126,9569.527858119265,1,1,1_0,1_0_0,1_3_0,1_0_1 -21242,1,56.0,271.0,2,111,306.0,50.0,0.0,0,54,0.0,0.0,422.9453136382348,356.0,0.0,90.68264504237244,41,0,0,0,0,0,0,0,0,0,,2,,2,115709,2,1,0,1,1,557.0,155.0,282.0,12,1.0,1.0,2.0,1.0,1.0,2,2,369.806182742421,306.0,6060.0,0,4,2,3,53.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.058745874587458745,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -21243,2,81.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1364.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,100901,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,2497.74383574073,0.0,25505.35843453991,0,5,0,1,200.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.05347895829422423,25505.35843453991,7,4,7,7_0,7_3,7_0_1 -21244,2,82.0,0.0,5,111,250.0,0.0,0.0,0,74,0.0,0.0,345.54355689398267,483.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,100310,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,2428.46666679548,250.0,42385.86321451152,0,5,0,1,72.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011395308798020108,42385.86321451152,9,5,9,9_0,9_3,9_0_0 -21245,2,62.0,0.0,2,111,300.0,930.0,0.0,78,77,0.0,0.0,414.65226827277917,1230.0,0.0,1686.6971977881274,50,2,2,2,2,1,2,2,2,0,,2,,2,119495,2,2,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,316.241999824103,300.0,39036.75393475718,5,5,0,1,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03150876740560245,26024.502623171455,7,4,7,7_0,7_3,7_0_1 -21246,2,38.0,0.0,2,111,0.0,0.0,0.0,43,42,0.0,0.0,0.0,1898.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,101543,2,1,1,0,1,,904.0,,43,2.0,0.0,3.0,2.0,1.5,3,2,1773.37360875526,0.0,48608.0,1,1,1,2,76.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039047070441079655,32405.333333333332,8,4,8,8_1,8_3,8_0_1 -21247,2,87.0,0.0,2,111,166.0,836.0,0.0,0,77,0.0,0.0,229.44092177760447,1002.0,0.0,1516.2138251084673,10,0,0,0,0,0,0,0,0,0,,1,,2,132499,2,2,1,0,1,,121.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,1796.20542658189,166.0,26421.604896814475,0,5,0,1,104.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037923510093847715,26421.604896814475,7,4,7,7_1,7_3,7_0_1 -21248,2,78.0,0.0,2,111,404.0,1014.0,0.0,78,77,0.0,0.0,558.398387940676,1418.0,0.0,1839.0440414593131,41,0,0,0,0,0,0,0,0,0,,2,,2,100835,2,1,0,0,1,,328.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2328.36120672389,404.0,30373.348448944744,5,5,0,1,95.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04668566596743683,20248.898965963162,5,3,5,5_0,5_3,5_0_1 -21249,2,63.0,0.0,6,111,848.0,1570.0,0.0,78,64,0.0,0.0,1172.083744984389,2418.0,0.0,2847.435054330495,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,103856,2,1,3,0,1,,100.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1850.12075863213,848.0,70831.89736522832,5,5,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034137162633553944,47221.26491015221,10,5,10,10_1,10_3,10_0_0 -21250,1,76.0,156.0,2,111,270.0,0.0,0.0,77,77,0.0,0.0,373.1870414455012,270.0,0.0,0.0,42,2,1,2,2,1,2,2,2,0,,2,,2,127769,2,1,0,1,1,606.0,0.0,292.0,41,0.0,6.0,2.0,2.0,1.5,2,2,344.60134060232,270.0,29561.357625642995,5,5,2,3,70.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.00913354533371595,19707.571750428662,5,3,5,5_0,5_3,5_0_1 -21251,2,45.0,0.0,1,111,1700.0,1500.0,0.0,46,38,0.0,77.63793786145933,2349.696186879082,3275.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,1,116474,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1700.75656278914,1700.0,76383.33624269675,1,1,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04287584388294028,33210.14619247685,8,4,8,8_1,8_3,8_1_0 -21252,1,70.0,78.0,2,111,0.0,0.0,1200.0,0,78,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,10,2,2,2,1,1,2,2,2,0,,2,,2,106044,1,1,0,0,1,,0.0,287.0,21,0.0,4.0,4.0,2.0,1.5,3,2,739.765458801291,0.0,28102.151307967084,0,5,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,1,0,1,0.042701357161214724,18734.767538644723,5,3,5,5_0,5_3,5_0_1 -21253,2,86.0,0.0,2,111,600.0,1463.0,0.0,0,90,0.0,0.0,829.3045365455583,2063.0,0.0,2653.374193939818,50,0,0,0,0,0,0,0,0,0,,1,,2,104574,2,1,1,0,1,,160.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,1793.17918891992,600.0,29875.722816227695,0,5,0,1,72.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06905272259653693,29875.722816227695,8,4,8,8_1,8_3,8_0_1 -21254,2,39.0,0.0,1,111,1089.0,0.0,0.0,0,31,9409.584725213404,0.0,1505.1877338301883,7389.0,0.0,0.0,50,1,2,2,2,1,2,2,2,0,,1,,1,106620,1,1,4,0,1,,420.0,,32,1.0,0.0,10.0,4.0,1.9,2,2,1717.35782588185,1089.0,119897.80894130457,0,1,1,2,366.0,8,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.06162748147980963,63104.10996910767,10,5,10,10_1,10_3,10_1_0 -21255,1,30.0,330.0,5,111,0.0,0.0,0.0,52,67,0.0,0.0,0.0,748.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,121711,2,1,0,1,1,640.0,0.0,560.0,43,2.0,0.0,4.0,3.0,1.8,2,2,880.32369753155,0.0,34995.975043328624,1,4,2,3,100.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02137388654192086,19442.20835740479,5,3,5,5_0,5_3,5_0_0 -21256,1,22.0,91.0,2,111,100.0,666.0,0.0,55,52,0.0,0.0,138.21742275759306,766.0,0.0,1207.892831964401,30,0,0,0,0,0,0,0,0,2,20.0,2,,2,106350,2,1,0,1,1,660.0,0.0,415.0,43,2.0,0.0,3.0,3.0,1.8,2,2,683.297422905194,100.0,28698.94952873613,1,1,2,3,68.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02669087240398843,15943.860849297851,3,2,3_1,3_0_1,3_3_1,3_0_1 -21257,1,69.0,278.0,2,111,0.0,0.0,0.0,85,78,0.0,0.0,0.0,301.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,106628,2,1,0,1,1,744.0,138.0,295.0,41,0.0,6.0,4.0,2.0,1.5,2,2,361.436188193131,0.0,14562.190462626975,6,5,2,3,72.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020669967253381227,9708.12697508465,1,1,1_1,1_0_1,1_3_1,1_0_1 -21258,2,36.0,0.0,2,111,192.0,0.0,0.0,67,43,0.0,0.0,265.37745169457867,588.0,0.0,0.0,20,2,2,1,2,2,2,2,1,0,,2,,2,108241,2,1,0,1,1,590.0,0.0,318.0,43,2.0,0.0,3.0,2.0,1.5,1,1,560.872905853589,192.0,30199.175854792265,1,1,2,3,66.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019470730023471522,20132.783903194842,5,3,5,5_0,5_3,5_0_1 -21259,1,46.0,410.0,2,111,410.0,120.0,0.0,0,85,0.0,0.0,566.6914333061316,530.0,0.0,217.63834810169388,12,2,1,1,2,1,2,2,2,0,,2,,2,133623,1,3,0,1,1,1108.0,0.0,381.0,31,0.0,0.0,4.0,3.0,1.8,2,1,738.440477862254,410.0,8144.313481538389,0,7,2,3,130.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06507608053169973,4524.61860085466,1,1,1_1,1_0_1,1_3_1,1_0_1 -21260,2,28.0,0.0,2,111,260.0,0.0,0.0,56,64,0.0,0.0,359.36529916974195,260.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,114945,2,1,0,1,1,760.0,0.0,300.0,43,2.0,0.0,4.0,2.0,1.5,1,1,374.765058176883,260.0,28913.054768325415,4,1,2,3,69.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008992477691593937,19275.369845550278,5,3,5,5_0,5_3,5_0_1 -21261,1,53.0,271.0,6,111,276.0,300.0,0.0,0,56,0.0,0.0,381.48008681095683,576.0,0.0,544.0958702542347,44,2,1,2,1,1,2,1,2,0,,2,,4,133028,2,1,0,1,1,564.0,0.0,507.0,12,1.0,4.0,4.0,1.0,1.0,2,2,2689.59409454064,276.0,7999.383729295916,0,1,2,3,105.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07200554686363295,7999.383729295916,1,1,1_1,1_0_1,1_3_1,1_0_0 -21262,1,36.0,420.0,2,111,384.0,1044.0,0.0,85,62,0.0,0.0,530.7549033891573,1428.0,0.0,1893.4536284847366,50,0,0,0,0,0,0,0,0,0,,2,,2,125933,2,3,0,1,2,1044.0,720.0,381.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,2,2,333.742190670505,384.0,10714.382603652011,6,4,2,3,77.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1332787947588566,4120.916386020005,1,1,1_1,1_0_1,1_3_1,1_0_1 -21263,2,58.0,0.0,7,111,650.0,1200.0,0.0,54,37,0.0,0.0,898.4132479243549,1850.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,132985,2,1,1,0,1,,450.0,,43,3.0,0.0,7.0,4.0,2.5,2,2,1689.29645748234,650.0,79059.78241431157,1,1,1,2,135.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023400013806072772,31623.91296572463,8,4,8,8_1,8_3,8_0_0 -21264,2,81.0,0.0,5,111,1500.0,0.0,0.0,74,74,0.0,51.75862524097289,2073.261341363896,1550.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,120953,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,1845.56281098485,1500.0,66802.21515664058,5,5,0,1,120.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02320282338490567,44534.81010442705,10,5,10,10_1,10_3,10_0_0 -21265,2,55.0,0.0,2,111,600.0,60.0,0.0,56,54,0.0,0.0,829.3045365455583,660.0,0.0,108.81917405084694,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,130142,2,2,0,1,1,960.0,0.0,358.0,43,3.0,1.0,4.0,3.0,2.0,2,2,386.196354090767,600.0,32008.24402082484,1,1,2,3,87.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020619687839501546,16004.12201041242,4,2,4_0,4_0_0,4_3_0,4_0_1 -21266,2,52.0,0.0,9,111,0.0,0.0,0.0,85,46,0.0,0.0,0.0,943.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,125825,2,2,5,0,1,,0.0,920.0,42,1.0,0.0,4.0,5.0,2.6,3,3,1899.01856787236,0.0,35712.84382630729,6,1,2,3,95.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02640506604812452,13735.709163964342,3,2,3_0,3_1_0,3_3_0,3_0_0 -21267,2,51.0,0.0,8,111,0.0,0.0,1779.0,46,48,0.0,0.0,908.9148226759571,1829.0,86.01635020950958,2033.8342331070314,50,1,2,2,2,1,2,2,2,2,30.0,1,2000.0,6,129025,2,1,2,0,1,,578.0,524.0,43,2.0,0.0,4.0,4.0,2.3,2,2,1437.14884422977,0.0,52354.332664727954,1,1,2,3,84.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03493502651848774,22762.753332490418,6,3,6,6_1,6_3,6_0_0 -21268,1,46.0,180.0,2,111,240.0,816.0,0.0,0,56,0.0,0.0,331.72181461822333,1056.0,0.0,1479.9407670915184,31,0,0,0,0,0,0,0,0,1,30.0,2,,2,130383,2,1,0,1,1,816.0,0.0,322.0,32,1.0,0.0,3.0,2.0,1.5,4,4,346.087115230226,240.0,15249.697969513825,0,1,2,3,72.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06924727310082367,10166.465313009217,2,1,2_1,2_0_1,2_3_1,2_0_1 -21269,2,59.0,0.0,2,111,279.0,100.0,0.0,0,56,0.0,0.0,385.6266094936846,379.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,101636,2,1,0,1,1,925.0,0.0,306.0,12,1.0,2.0,4.0,1.0,1.0,1,1,389.075962139148,279.0,11875.290149271812,0,1,2,3,63.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031915009674373315,11875.290149271812,2,1,2_0,2_0_0,2_3_0,2_0_1 -21270,2,84.0,0.0,2,111,600.0,0.0,0.0,0,77,1792.3018524216009,828.1380038555662,829.3045365455583,2660.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,116595,2,1,1,0,1,,350.0,,21,1.0,8.0,5.0,2.0,1.5,1,1,1850.12075863213,600.0,41004.20063293502,0,5,0,1,110.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06487140241586514,27336.13375529001,7,4,7,7_1,7_3,7_0_1 -21271,1,75.0,119.0,2,111,180.0,500.0,0.0,0,77,0.0,0.0,248.7913609636675,680.0,0.0,906.8264504237244,41,0,0,0,0,0,0,0,0,0,,2,,2,123322,2,2,0,1,2,500.0,240.0,250.0,11,0.0,0.0,2.0,1.0,1.0,2,2,433.41484106493,180.0,10229.70848056537,0,5,2,3,52.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06647305749639681,10229.70848056537,2,1,2_1,2_0_1,2_3_1,2_0_1 -21272,1,37.0,309.0,9,111,1100.0,683.0,0.0,0,46,0.0,0.0,1520.3916503335236,1783.0,0.0,1238.7249312788076,20,0,0,0,0,0,0,0,0,2,25.0,2,2006.0,6,124674,2,2,0,0,1,,261.0,535.0,32,1.0,0.0,4.0,4.0,1.9,2,2,2074.09228689719,1100.0,22505.0,0,1,2,3,86.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07922683848033771,11844.736842105263,2,1,2_1,2_0_1,2_3_1,2_0_0 -21273,1,45.0,238.0,2,111,400.0,412.0,0.0,0,52,0.0,0.0,552.8696910303722,812.0,0.0,747.224995149149,50,0,0,0,0,0,0,0,0,0,,2,,2,132112,2,3,0,0,1,,0.0,225.0,32,2.0,0.0,3.0,2.0,1.5,2,2,300.986727123459,400.0,7929.227985235851,0,4,2,3,52.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10240593428665899,5286.151990157234,1,1,1_1,1_0_1,1_2_1,1_0_1 -21274,2,57.0,0.0,5,111,680.0,1400.0,0.0,0,54,0.0,0.0,939.8784747516328,2080.0,0.0,2539.1140611864284,44,0,0,0,0,0,0,0,0,2,12.0,2,,3,113354,2,2,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,2307.85561167927,680.0,39434.08629486308,0,1,0,1,79.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05274624558173047,26289.390863242053,7,4,7,7_0,7_3,7_0_0 -21275,1,41.0,373.0,2,111,0.0,0.0,1100.0,0,85,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,71,0,0,0,0,0,0,0,0,0,,2,,2,131769,2,2,0,0,1,,365.0,327.0,31,1.0,4.0,4.0,5.0,2.6,2,2,283.170357218384,0.0,14317.169351060922,0,6,2,3,70.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07683082968621088,5506.603596561893,1,1,1_1,1_0_1,1_2_1,1_0_1 -21276,1,43.0,338.0,2,111,650.0,0.0,0.0,0,85,0.0,0.0,898.4132479243549,685.0,60.21144514665671,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,117670,2,2,0,1,1,936.0,0.0,322.0,31,1.0,0.0,4.0,5.0,2.8,4,3,269.972472141661,650.0,11779.238532110092,0,6,2,3,61.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05815316483596936,4206.870904325033,1,1,1_1,1_0_1,1_2_1,1_0_1 -21277,1,50.0,349.0,6,111,1500.0,0.0,0.0,85,52,0.0,0.0,2073.261341363896,2561.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,106300,2,1,2,0,2,,1079.0,812.0,42,1.0,0.0,6.0,8.0,3.499999999999999,2,2,1312.01548180915,1500.0,44464.172318065524,6,1,2,3,130.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.057596934036698154,12704.04923373301,2,1,2_1,2_1_1,2_2_1,2_0_0 -21278,1,34.0,194.0,2,111,400.0,0.0,0.0,54,63,0.0,0.0,552.8696910303722,400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,,2,127736,1,2,0,1,1,1200.0,530.0,335.0,43,2.0,0.0,3.0,4.0,2.1,2,2,331.748874898404,400.0,28269.0809781996,1,1,2,3,63.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014149734839575078,13461.467132475998,3,2,3_1,3_0_1,3_2_1,3_0_1 -21279,2,48.0,0.0,5,111,0.0,0.0,1280.0,0,53,0.0,0.0,653.969068592032,1280.0,0.0,1463.3545915553682,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,105655,1,1,0,0,1,,0.0,530.0,12,1.0,3.0,4.0,1.0,1.0,3,3,2032.58013783983,0.0,15065.02036586211,0,1,2,3,72.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08496503615093193,15065.02036586211,3,2,3_0,3_0_0,3_2_0,3_0_0 -21280,2,38.0,0.0,1,111,630.0,1000.0,0.0,85,63,0.0,0.0,870.7697633728362,1630.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,2,60.0,1,,1,115267,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,5.0,2.4,5,4,1288.45187562918,630.0,29448.55194990142,6,1,1,2,80.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055350769123486784,12270.229979125592,2,1,2_0,2_1_0,2_2_0,2_1_0 -21281,2,64.0,0.0,1,111,739.0,805.0,0.0,77,75,0.0,0.0,1021.4267541786127,1544.0,0.0,1459.9905851821964,33,0,0,0,0,0,0,0,0,0,,1,,1,133597,1,2,3,0,1,,244.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1310.60800313189,739.0,14882.849844413473,6,5,0,1,75.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10374357170441831,9921.899896275649,2,1,2_0,2_1_0,2_2_0,2_1_0 -21282,1,34.0,150.0,2,111,250.0,180.0,0.0,84,47,0.0,0.0,345.54355689398267,520.0,154.82943037711726,326.4575221525408,20,1,2,2,2,1,2,2,2,2,30.0,2,,2,116687,2,1,0,1,2,50.0,330.0,330.0,42,1.0,0.0,2.0,2.0,1.5,3,2,337.244601316516,250.0,12473.234985504152,3,1,2,3,49.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04168926510278378,8315.489990336102,1,1,1_1,1_0_1,1_2_1,1_0_1 -21283,2,65.0,0.0,1,111,450.0,1050.0,0.0,78,78,0.0,0.0,621.9784024091688,1500.0,0.0,1904.3355458898213,20,0,0,0,0,0,0,0,0,0,,1,,1,124752,2,1,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1524.20431854616,450.0,15605.030384569767,6,5,0,1,80.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09612285032672528,10403.353589713179,2,1,2_0,2_1_0,2_2_0,2_1_0 -21284,0,73.0,0.0,2,111,450.0,240.0,0.0,77,78,0.0,0.0,621.9784024091688,690.0,0.0,435.27669620338776,10,0,0,0,0,0,0,0,0,0,,2,,2,110792,2,1,0,1,1,,400.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,429.307436819631,450.0,61973.07005136378,5,5,5,0,64.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011133868298409655,30986.53502568189,8,4,8,8_0,8_2,8_0_1 -21285,1,59.0,115.0,2,111,500.0,1200.0,0.0,0,56,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,2,,2,112139,2,1,0,0,1,,0.0,324.0,12,1.0,1.0,4.0,1.0,1.0,2,2,1739.61404531754,500.0,11469.2,0,1,2,3,80.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14822306699682627,11469.2,2,1,2_1,2_0_1,2_2_1,2_0_1 -21286,1,51.0,301.0,2,111,0.0,0.0,924.0,0,56,0.0,0.0,472.0839213898731,1117.0,0.0,1056.3590957790313,50,1,2,2,1,1,2,2,2,2,5.0,2,,2,109212,1,3,0,1,1,,500.0,459.0,32,1.0,3.0,4.0,2.0,1.5,4,3,325.036440930697,0.0,13316.13175603335,0,1,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08388321927604112,8877.4211706889,1,1,1_1,1_0_1,1_2_1,1_0_1 -21287,2,74.0,0.0,2,111,500.0,1000.0,0.0,77,75,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,1,,2,113628,2,1,2,0,1,,500.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,1419.21037323273,500.0,22551.760830276304,5,5,0,1,75.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06651365324814071,15034.507220184203,3,2,3_0,3_1_0,3_2_0,3_0_1 -21288,2,87.0,0.0,1,111,413.0,1200.0,0.0,0,75,0.0,0.0,570.8379559888593,1613.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,0,,1,,1,121147,2,1,2,0,1,,250.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1576.04617191451,413.0,23177.915557484743,0,5,0,1,65.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06959210788388263,23177.915557484743,6,3,6,6_1,6_2,6_1_0 -21289,0,60.0,0.0,2,111,0.0,0.0,0.0,22,78,0.0,0.0,0.0,628.0,0.0,0.0,12,1,2,2,1,1,2,2,2,0,,2,,2,100975,1,1,0,1,1,726.0,230.0,,42,1.0,0.0,4.0,3.0,2.0,2,2,362.5701956995,0.0,11523.732372154343,4,5,5,0,70.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05449623261969216,5761.866186077172,1,1,1_0,1_0_0,1_2_0,1_0_1 -21290,2,41.0,0.0,1,111,500.0,1200.0,0.0,55,55,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,100440,2,1,2,0,1,,350.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,1374.12818609135,500.0,50969.65478514336,1,1,1,2,90.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03335317861512212,24271.264183401596,7,4,7,7_1,7_2,7_1_0 -21291,0,74.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,894.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,116234,2,2,0,1,1,,298.0,,21,1.0,5.0,4.0,2.0,1.5,2,2,359.508357935034,0.0,23458.5959008086,0,7,5,0,64.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03810969777475832,15639.0639338724,3,2,3_0,3_0_0,3_2_0,3_0_1 -21292,0,55.0,0.0,2,120,0.0,0.0,972.0,62,77,0.0,0.0,496.60776146207434,972.0,0.0,1111.2348929623577,43,2,2,2,2,1,2,2,2,0,,2,,2,132864,2,3,0,1,1,,828.0,,42,2.0,0.0,4.0,4.0,2.5,1,1,272.724524078444,0.0,42693.82859617671,4,7,5,0,70.0,0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.022766756506982462,17077.531438470683,4,2,4_0,4_0_0,4_1_0,4_0_1 -21293,2,64.0,0.0,1,111,400.0,1500.0,0.0,52,78,0.0,0.0,552.8696910303722,1900.0,0.0,2720.4793512711735,12,0,0,0,0,0,0,0,0,0,,8,,1,100893,1,1,0,0,1,,480.0,330.0,42,1.0,2.0,4.0,2.0,1.5,2,2,2007.89749615481,400.0,21465.479663912054,1,5,2,3,70.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08851421117760047,14310.319775941369,3,2,3_0,3_0_0,3_2_0,3_1_0 -21294,1,32.0,289.0,2,120,0.0,450.0,0.0,0,67,0.0,0.0,0.0,1662.0,0.0,816.143805381352,71,2,2,2,2,1,1,2,2,0,,2,,2,128295,1,3,0,1,1,550.0,480.0,417.0,32,1.0,0.0,3.0,2.0,1.3,1,1,410.021988223008,0.0,10482.174454532933,0,4,2,3,60.0,0,2,4,0,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.15855488832102782,8063.211118871486,1,1,1_1,1_0_1,1_1_1,1_0_1 -21295,1,44.0,377.0,2,111,450.0,1520.0,0.0,0,54,0.0,0.0,621.9784024091688,1970.0,0.0,2756.752409288122,70,1,2,2,1,2,2,2,2,0,,2,,2,105644,1,2,0,0,1,,0.0,410.0,32,1.0,2.0,6.0,2.0,1.5,1,1,1767.41860016138,450.0,7477.52590266876,0,4,2,3,100.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.26345612514654065,4985.01726844584,1,1,1_1,1_0_1,1_2_1,1_0_1 -21296,0,83.0,0.0,2,120,200.0,170.0,0.0,86,78,0.0,0.0,276.4348455151861,370.0,0.0,308.32099314406634,50,2,1,2,1,2,2,2,2,0,,2,,2,102268,2,2,0,1,1,,520.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,317.221727866635,200.0,23998.01642930682,6,5,5,0,70.0,0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015417940940658296,15998.677619537879,3,2,3_0,3_0_0,3_1_0,3_0_1 -21297,2,56.0,0.0,2,111,560.0,1200.0,0.0,85,62,0.0,0.0,774.0175674425211,1760.0,0.0,2176.3834810169387,60,2,2,2,1,2,2,2,2,2,10.0,2,,2,108439,1,3,0,0,1,,0.0,352.0,42,1.0,3.0,4.0,2.0,1.5,1,1,1690.09291711421,560.0,27330.617911445202,6,1,2,3,80.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06439664136766433,18220.41194096347,4,2,4_0,4_0_0,4_2_0,4_0_1 -21298,0,56.0,0.0,2,120,300.0,200.0,0.0,0,77,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,50,2,1,2,2,2,2,2,1,0,,2,,2,123199,2,1,0,1,1,,300.0,,31,0.0,2.0,4.0,2.0,1.5,2,2,269.54220636868,300.0,29910.712175393033,0,5,5,0,75.0,0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016716419089858395,19940.474783595357,5,3,5,5_0,5_1,5_0_1 -21299,1,30.0,375.0,1,111,0.0,0.0,1000.0,0,55,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,31,1,2,2,2,2,2,2,1,0,,2,,1,101138,1,2,0,0,1,,550.0,353.0,32,1.0,0.0,4.0,3.0,1.6,2,2,1792.30143783142,0.0,12544.840449259747,0,4,2,3,67.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.07971404690595396,7840.525280787342,1,1,1_1,1_0_1,1_2_1,1_1_0 -21300,2,27.0,0.0,2,111,450.0,1300.0,0.0,68,67,0.0,0.0,621.9784024091688,1750.0,0.0,2357.7487711016834,50,2,2,2,2,2,2,2,1,0,,2,,2,132413,1,3,0,0,2,,380.0,600.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2234.68837305455,450.0,6094.561687614956,1,1,2,3,70.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.28714123996090757,4063.0411250766374,1,1,1_0,1_0_0,1_2_0,1_0_1 -21301,0,82.0,0.0,2,120,0.0,0.0,0.0,0,86,0.0,0.0,0.0,447.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130252,2,1,0,1,1,,188.0,,11,0.0,6.0,4.0,1.0,1.0,2,2,341.810888076329,0.0,17412.259657410017,0,7,5,0,70.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025671567550382426,17412.259657410017,4,2,4_0,4_0_0,4_1_0,4_0_1 -21302,1,37.0,324.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1301.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,103256,2,2,0,1,1,744.0,0.0,301.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1630.14526845274,0.0,7812.0,0,4,2,3,75.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16653865847414234,6009.230769230769,1,1,1_1,1_0_1,1_2_1,1_0_1 -21303,0,70.0,0.0,2,120,0.0,0.0,0.0,86,78,0.0,0.0,0.0,616.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,117653,2,1,0,1,1,,191.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,335.237859311885,0.0,41406.933801322055,6,5,5,0,60.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014876735451015987,27604.622534214705,7,4,7,7_0,7_1,7_0_1 -21304,1,40.0,100.0,2,111,0.0,0.0,900.0,0,53,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,115405,2,1,0,0,1,,0.0,250.0,32,1.0,1.0,3.0,2.0,1.3,2,2,1671.44486335379,0.0,16765.739029826316,0,1,2,3,60.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.053680902368747146,12896.722330635628,2,1,2_1,2_0_1,2_2_1,2_0_1 -21305,2,82.0,0.0,2,111,330.0,990.0,0.0,77,78,0.0,0.0,456.1174951000571,1320.0,0.0,1795.5163718389745,70,0,0,0,0,0,0,0,0,0,,2,,2,100039,2,1,0,0,1,,0.0,255.0,41,0.0,3.0,3.0,2.0,1.5,2,2,1730.2867916592,330.0,23004.45223605964,5,5,2,3,60.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05738019694861027,15336.301490706426,3,2,3_0,3_0_0,3_2_0,3_0_1 -21306,2,75.0,0.0,2,111,2000.0,160.0,0.0,75,75,2240.377315527001,0.0,2764.3484551518613,3660.0,0.0,290.18446413559184,20,0,0,0,0,0,0,0,0,0,,1,,2,110374,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1381.36982619941,2000.0,31225.941548377254,5,5,0,1,100.0,6,4,4,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11721023669789718,20817.294365584836,5,3,5,5_1,5_2,5_0_1 -21307,1,47.0,200.0,2,111,1200.0,0.0,0.0,85,67,0.0,0.0,1658.6090730911167,1532.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,109093,2,3,0,1,1,,1000.0,630.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,325.737582191066,1200.0,22515.326954763255,6,1,2,3,90.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0680425384484988,8339.00998324565,1,1,1_1,1_0_1,1_2_1,1_0_1 -21308,0,54.0,0.0,2,111,700.0,120.0,0.0,0,52,0.0,0.0,967.5219593031513,820.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,116675,2,2,0,1,1,,800.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,363.222265414736,700.0,45950.68726587105,0,1,5,0,91.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017845217314280272,22975.343632935525,6,3,6,6_0,6_2,6_0_1 -21309,2,28.0,0.0,1,111,220.0,1300.0,0.0,0,55,0.0,0.0,304.0783300667047,1520.0,0.0,2357.7487711016834,41,0,0,0,0,0,0,0,0,2,15.0,2,,1,118073,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2098.82585540768,220.0,15189.510971321452,0,1,1,2,79.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10006905441984507,15189.510971321452,3,2,3_0,3_0_0,3_2_0,3_1_0 -21310,2,54.0,0.0,2,111,700.0,0.0,0.0,0,62,0.0,0.0,967.5219593031513,790.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,,2,116453,2,2,0,0,1,,0.0,367.0,12,1.0,2.0,5.0,1.0,1.0,1,1,2182.4562199162,700.0,21118.75060089775,0,1,2,3,65.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.037407515952502295,21118.75060089775,5,3,5,5_0,5_2,5_0_1 -21311,1,34.0,322.0,2,111,630.0,0.0,0.0,0,85,0.0,0.0,870.7697633728362,630.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,2,110066,1,3,0,1,1,,0.0,497.0,31,0.0,0.0,3.0,2.0,1.5,1,1,330.096501467608,630.0,8970.404775757333,0,6,2,3,69.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.07023094450571343,5980.269850504889,1,1,1_1,1_0_1,1_2_1,1_0_1 -21312,2,25.0,0.0,9,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1025.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,113079,2,1,0,0,1,,368.0,650.0,22,2.0,0.0,3.0,2.0,1.5,1,1,1996.02031084557,0.0,42792.99470670144,0,1,2,3,70.0,6,4,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023952518561162622,28528.66313780096,8,4,8,8_0,8_2,8_0_0 -21313,1,46.0,121.0,2,111,700.0,170.0,0.0,63,67,0.0,0.0,967.5219593031513,870.0,0.0,308.32099314406634,10,0,0,0,0,0,0,0,0,0,,2,,2,101360,2,3,0,1,1,,600.0,495.0,43,2.0,0.0,4.0,5.0,2.4,1,1,281.077478193332,700.0,35315.67425738466,1,1,2,3,84.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024634953693913386,14714.864273910274,3,2,3_1,3_0_1,3_2_1,3_0_1 -21314,1,26.0,336.0,2,111,600.0,0.0,0.0,85,63,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,2,,2,109489,1,3,0,1,2,,0.0,451.0,42,1.0,0.0,3.0,4.0,2.1,2,2,273.13855112533,600.0,16262.408376569301,6,4,2,3,60.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03689490425443217,7744.003988842524,1,1,1_1,1_0_1,1_2_1,1_0_1 -21315,0,84.0,0.0,2,111,408.0,0.0,0.0,0,86,0.0,0.0,563.9270848509797,509.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,100900,2,2,0,0,1,,120.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,379.95277668413,408.0,11604.741721239694,0,7,5,0,60.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.043861381168733615,11604.741721239694,2,1,2_0,2_0_0,2_2_0,2_0_1 -21316,2,44.0,0.0,2,111,1000.0,0.0,0.0,68,62,2240.377315527001,0.0,1382.1742275759307,2500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,75.0,1,,2,133162,2,3,3,0,1,,700.0,,43,3.0,0.0,6.0,5.0,2.8,1,1,1346.45691970874,1000.0,18299.654402396372,1,1,1,2,110.0,6,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13661460184038343,6535.590857998704,1,1,1_0,1_1_0,1_2_0,1_0_1 -21317,0,88.0,0.0,2,111,410.0,0.0,0.0,0,86,0.0,0.0,566.6914333061316,847.0,0.0,0.0,50,2,1,1,2,1,2,2,2,0,,2,,2,102269,2,3,0,1,1,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,484.878329180912,410.0,22276.214723531088,0,7,5,0,60.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03802261786897244,22276.214723531088,6,3,6,6_0,6_2,6_0_1 -21318,2,33.0,0.0,5,111,0.0,0.0,0.0,46,63,0.0,0.0,0.0,6591.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,3,109586,1,1,3,0,1,,102.0,850.0,43,2.0,0.0,8.0,2.0,1.5,1,1,1595.47347591163,0.0,27478.942943655544,1,1,2,3,120.0,6,4,4,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2398563879809561,18319.295295770364,4,2,4_0,4_1_0,4_2_0,4_0_0 -21319,2,69.0,0.0,5,111,2500.0,0.0,0.0,77,74,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,105822,2,1,2,0,1,,300.0,,41,0.0,0.0,6.0,2.0,1.5,1,1,1309.41623049329,2500.0,110572.2047630345,5,5,0,1,80.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022609660405684316,73714.80317535634,10,5,10,10_1,10_2,10_0_0 -21320,1,43.0,270.0,2,111,700.0,800.0,0.0,0,85,0.0,0.0,967.5219593031513,1500.0,0.0,1450.922320677959,12,0,0,0,0,0,0,0,0,0,,2,,2,106489,2,1,0,0,1,,0.0,395.0,11,0.0,0.0,5.0,1.0,1.0,2,2,407.284678168066,700.0,15224.124449213712,0,7,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09852783357124167,15224.124449213712,3,2,3_1,3_0_1,3_3_1,3_0_1 -21321,2,83.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2068.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,116005,2,1,2,0,1,,110.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,1576.04617191451,0.0,14072.554809046162,0,5,0,1,70.0,6,4,4,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14695270532331783,14072.554809046162,3,2,3_0,3_1_0,3_2_0,3_1_0 -21322,2,57.0,0.0,2,111,174.0,650.0,0.0,0,67,0.0,0.0,240.49831559821192,824.0,0.0,1178.8743855508417,20,2,2,2,2,1,2,2,2,0,,2,,2,133598,2,2,0,0,1,,120.0,285.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1752.44549818964,174.0,12062.570866018783,0,4,2,3,75.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.06831047951156691,12062.570866018783,2,1,2_0,2_0_0,2_2_0,2_0_1 -21323,2,76.0,0.0,1,111,331.0,1350.0,0.0,78,75,0.0,0.0,457.499669327633,1681.0,0.0,2448.431416144056,31,0,0,0,0,0,0,0,0,0,,1,,1,133117,2,2,2,0,1,,249.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1304.30129483784,331.0,31651.559278175722,5,5,0,1,100.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053109547786452264,21101.039518783815,5,3,5,5_1,5_2,5_1_0 -21324,2,40.0,0.0,1,111,420.0,740.0,0.0,56,64,0.0,0.0,580.5131755818909,1160.0,0.0,1342.1031466271122,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,130473,2,1,4,0,1,,540.0,,43,2.0,2.0,5.0,4.0,2.1,2,2,1355.86358784556,420.0,26978.674517495838,4,1,1,2,50.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042996923338384646,12846.987865474208,2,1,2_0,2_1_0,2_2_0,2_1_0 -21325,1,60.0,271.0,2,111,400.0,50.0,0.0,0,77,0.0,0.0,552.8696910303722,450.0,0.0,90.68264504237244,20,1,2,2,2,1,2,2,2,0,,2,,2,125670,2,1,0,1,1,619.0,0.0,284.0,21,0.0,3.0,3.0,2.0,1.5,1,1,395.64301423405,400.0,8393.242737169836,0,7,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05361455805479754,5595.495158113224,1,1,1_1,1_0_1,1_3_1,1_0_1 -21326,2,80.0,0.0,5,111,350.0,0.0,0.0,0,86,0.0,0.0,483.76097965157567,500.0,258.04905062852873,0.0,12,2,2,2,1,2,2,2,2,0,,2,,3,116764,1,2,0,1,2,,0.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,374.718785162931,350.0,10227.764984633135,0,6,0,1,80.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.048886535890415236,10227.764984633135,2,1,2_0,2_0_0,2_3_0,2_0_0 -21327,2,32.0,0.0,2,111,1300.0,0.0,0.0,56,47,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,116784,2,2,0,0,1,,250.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1974.06420901612,1300.0,52306.090181557614,1,1,1,2,95.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02485370241758887,29058.938989754228,8,4,8,8_0,8_2,8_0_1 -21328,2,33.0,0.0,2,111,1400.0,0.0,0.0,54,54,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,,2,124922,2,1,0,0,1,,330.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2098.88104781643,1400.0,65295.398951640236,1,1,1,2,101.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021441020691777727,36275.22163980013,9,5,9,9_0,9_2,9_0_1 -21329,2,55.0,0.0,2,111,400.0,0.0,0.0,0,52,0.0,51.75862524097289,552.8696910303722,450.0,0.0,0.0,12,2,2,2,1,2,2,2,2,2,15.0,2,,2,121047,1,2,0,1,1,,0.0,,22,2.0,1.0,5.0,2.0,1.5,3,3,360.303255682416,400.0,32359.223721257084,0,1,1,2,88.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.013906390458445723,21572.81581417139,6,3,6,6_0,6_3,6_0_1 -21330,1,51.0,260.0,2,111,200.0,90.0,0.0,0,62,0.0,0.0,276.4348455151861,290.0,0.0,163.2287610762704,20,0,0,0,0,0,0,0,0,0,,2,,2,126294,2,1,0,1,1,816.0,0.0,315.0,12,1.0,3.0,3.0,1.0,1.0,1,1,368.101586624861,200.0,7225.09262166405,0,4,2,3,76.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04013789375245525,7225.09262166405,1,1,1_1,1_0_1,1_3_1,1_0_1 -21331,2,45.0,0.0,1,111,500.0,1600.0,0.0,52,62,0.0,0.0,691.0871137879653,2100.0,0.0,2901.844641355918,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,128011,2,1,0,0,1,,390.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1801.26856952235,500.0,48865.094671660336,1,1,1,2,100.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04297546160732008,32576.72978110689,8,4,8,8_0,8_2,8_1_0 -21332,2,74.0,0.0,2,111,297.0,31.0,0.0,78,77,0.0,0.0,410.5057455900514,328.0,0.0,56.223239926270914,20,0,0,0,0,0,0,0,0,0,,2,,2,112364,2,3,0,1,1,546.0,0.0,295.0,41,0.0,8.0,3.0,2.0,1.5,1,1,360.435760817377,297.0,27227.485388665344,5,5,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012046650482697334,18151.656925776897,4,2,4_0,4_0_0,4_3_0,4_0_1 -21333,2,36.0,0.0,1,111,750.0,1519.0,0.0,67,63,0.0,0.0,1036.630670681948,2269.0,0.0,2754.9387563872747,20,0,0,0,0,0,0,0,0,2,60.0,1,,1,112996,2,2,3,0,1,,559.0,,43,2.0,0.0,6.0,3.0,1.8,3,2,1496.10244758995,750.0,45428.15080452848,1,1,1,2,95.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04994700334079669,25237.861558071378,7,4,7,7_1,7_2,7_1_0 -21334,1,30.0,377.0,2,111,330.0,0.0,0.0,0,56,0.0,0.0,456.1174951000571,330.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,40.0,2,,2,104933,2,1,0,1,1,609.0,0.0,360.0,32,1.0,0.0,4.0,2.0,1.3,2,2,282.454731536859,330.0,9477.162425338303,0,1,2,3,82.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034820549146409724,7290.124942567925,1,1,1_1,1_0_1,1_3_1,1_0_1 -21335,2,57.0,0.0,1,111,336.0,1100.0,0.0,77,62,0.0,0.0,464.41054046551267,1436.0,0.0,1995.0181909321939,10,0,0,0,0,0,0,0,0,0,,1,,1,113373,2,2,1,0,1,,198.0,505.0,42,1.0,3.0,3.0,2.0,1.5,3,2,1536.42670145231,336.0,20834.35327619828,6,4,2,3,70.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06892462563935328,13889.568850798853,3,2,3_0,3_1_0,3_2_0,3_1_0 -21336,1,31.0,137.0,2,111,220.0,110.0,0.0,85,63,0.0,0.0,304.0783300667047,330.0,0.0,199.50181909321938,12,0,0,0,0,0,0,0,0,0,,2,,2,128438,1,1,0,1,1,504.0,0.0,298.0,42,1.0,0.0,3.0,3.0,1.8,1,1,383.595498640338,220.0,19882.18811573877,6,1,2,3,68.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016597770732224966,11045.660064299316,2,1,2_1,2_0_1,2_3_1,2_0_1 -21337,2,55.0,0.0,1,111,800.0,1300.0,0.0,85,62,0.0,0.0,1105.7393820607444,2100.0,0.0,2357.7487711016834,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,100833,2,1,2,0,1,,600.0,,42,1.0,0.0,4.0,3.0,2.0,2,2,1508.0336766975,800.0,28216.63828665683,7,1,0,1,70.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07442417408713972,14108.319143328416,3,2,3_0,3_1_0,3_2_0,3_1_0 -21338,2,83.0,0.0,1,111,1200.0,0.0,0.0,78,78,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,131342,2,1,2,0,1,,380.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1376.79749945529,1200.0,35263.17857817016,5,5,0,1,70.0,6,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034029830786237336,23508.78571878011,6,3,6,6_1,6_2,6_1_0 -21339,2,81.0,0.0,1,111,600.0,1519.0,0.0,78,78,0.0,0.0,829.3045365455583,2119.0,0.0,2754.9387563872747,10,0,0,0,0,0,0,0,0,0,,1,,1,133643,2,1,2,0,1,,461.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1329.18986892776,600.0,19922.23938473436,5,5,0,1,96.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10636354473401759,13281.49292315624,3,2,3_0,3_1_0,3_2_0,3_1_0 -21340,2,55.0,0.0,7,111,540.0,780.0,0.0,52,62,0.0,51.75862524097289,746.3740828910024,1370.0,0.0,1414.6492626610102,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,108285,2,1,2,0,1,,600.0,,43,3.0,1.0,6.0,3.0,2.0,1,1,1372.62361377392,540.0,20476.569017645696,1,1,0,1,115.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0669057398639099,10238.284508822848,2,1,2_0,2_1_0,2_2_0,2_0_0 -21341,2,40.0,0.0,2,111,345.0,0.0,0.0,48,55,0.0,0.0,476.85010851369606,345.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,120396,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,366.314158241595,345.0,58355.52918922575,1,1,1,2,84.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00591203618223203,38903.686126150504,9,5,9,9_0,9_3,9_0_1 -21342,2,55.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,3212.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,106351,2,1,1,0,1,,726.0,650.0,42,1.0,3.0,4.0,2.0,1.5,1,1,1580.11412460358,0.0,35755.4033990452,6,1,2,3,90.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08983257618863201,23836.935599363467,6,3,6,6_1,6_2,6_0_1 -21343,1,40.0,189.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,2043.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,35.0,1,,2,132936,2,2,2,0,1,,366.0,444.0,32,1.0,0.0,4.0,3.0,2.0,2,2,1424.38149886416,0.0,10055.885198404527,0,1,2,3,98.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.20316461054310203,5027.942599202263,1,1,1_1,1_1_1,1_2_1,1_0_1 -21344,1,49.0,296.0,2,111,510.0,1300.0,0.0,0,55,0.0,0.0,704.9088560637246,1810.0,0.0,2357.7487711016834,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,100536,2,3,3,0,1,,410.0,594.0,32,1.0,0.0,6.0,3.0,1.8,1,1,1350.24277417297,510.0,16250.10037991742,0,1,2,3,110.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11138392734095826,9027.833544398567,1,1,1_1,1_1_1,1_2_1,1_0_1 -21345,2,68.0,0.0,2,111,348.0,188.0,0.0,77,78,0.0,0.0,480.99663119642383,536.0,0.0,340.9667453593204,50,0,0,0,0,0,0,0,0,0,,2,,2,111715,2,1,0,1,1,417.0,0.0,359.0,41,0.0,4.0,5.0,2.0,1.5,4,2,321.41617422179,348.0,30115.934907813706,5,5,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017797886787865667,20077.28993854247,5,3,5,5_0,5_3,5_0_1 -21346,2,55.0,0.0,2,111,1000.0,1500.0,0.0,78,43,0.0,0.0,1382.1742275759307,2500.0,0.0,2720.4793512711735,12,0,0,0,0,0,0,0,0,2,15.0,1,,2,125776,2,3,4,0,1,,518.0,,42,3.0,0.0,6.0,4.0,2.5,2,2,1259.96573091823,1000.0,6676.400396439288,5,1,0,1,100.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3744532759499146,2670.560158575715,1,1,1_0,1_1_0,1_2_0,1_0_1 -21347,2,50.0,0.0,2,111,480.0,120.0,0.0,0,52,0.0,0.0,663.4436292364467,600.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,117334,2,1,0,1,1,1131.0,0.0,238.0,32,1.0,2.0,3.0,2.0,1.5,2,2,344.551790453706,480.0,18802.893545017454,0,1,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031909982288816016,12535.26236334497,2,1,2_0,2_0_0,2_3_0,2_0_1 -21348,2,67.0,0.0,2,111,149.0,290.0,0.0,0,78,0.0,0.0,205.94395990881367,593.0,0.0,525.9593412457601,50,0,0,0,0,0,0,0,0,0,,2,,2,126465,1,1,0,1,1,775.0,0.0,332.0,21,0.0,3.0,3.0,2.0,1.5,1,1,462.932096756256,149.0,19608.902350799588,0,5,2,3,59.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030241366364691973,13072.601567199725,2,1,2_0,2_0_0,2_3_0,2_0_1 -21349,2,27.0,0.0,2,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,880.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,119030,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1967.13320377306,0.0,39076.724425294524,4,1,2,3,65.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02251979952112804,26051.149616863015,7,4,7,7_0,7_3,7_0_1 -21350,2,64.0,0.0,2,111,400.0,1400.0,0.0,0,74,0.0,0.0,552.8696910303722,1800.0,0.0,2539.1140611864284,43,0,0,0,0,0,0,0,0,0,,2,,2,129683,2,2,0,0,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,412.570008092825,400.0,30246.041785244786,0,5,1,2,74.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05951191937049135,30246.041785244786,8,4,8,8_0,8_3,8_0_1 -21351,2,74.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2078.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,124882,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1941.57280895,0.0,27800.5401762404,0,5,0,1,73.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07474674904971641,27800.5401762404,7,4,7,7_0,7_3,7_0_1 -21352,2,71.0,0.0,6,111,300.0,0.0,0.0,77,78,0.0,0.0,414.65226827277917,300.0,0.0,0.0,33,1,2,2,2,1,2,2,2,0,,2,,4,113647,2,1,0,1,1,,0.0,,41,1.0,5.0,4.0,3.0,2.0,2,2,414.828504980253,300.0,16937.045823724387,6,5,0,1,85.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01771265208362241,8468.522911862194,1,1,1_0,1_0_0,1_3_0,1_0_0 -21353,2,93.0,0.0,2,111,390.0,1100.0,0.0,75,75,0.0,0.0,539.0479487546129,1490.0,0.0,1995.0181909321939,12,0,0,0,0,0,0,0,0,0,,1,,2,114046,2,1,2,0,1,,240.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1380.32089420336,390.0,39939.827749441116,5,5,0,1,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037306119829744376,26626.551832960744,7,4,7,7_1,7_3,7_0_1 -21354,0,43.0,0.0,1,111,900.0,0.0,0.0,0,22,0.0,0.0,1243.9568048183376,940.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,114291,1,3,3,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1804.49255458347,900.0,12196.00326337756,0,1,5,0,70.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07707443001615567,12196.00326337756,2,1,2_0,2_1_0,2_3_0,2_1_0 -21355,2,67.0,0.0,1,111,0.0,0.0,1300.0,77,74,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,41,0,0,0,0,0,0,0,0,0,,2,,1,100636,2,1,0,0,1,,230.0,,41,0.0,1.0,6.0,2.0,1.5,3,3,1733.83215897735,0.0,75040.43696503843,5,5,0,1,111.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01732399293737687,50026.95797669229,10,5,10,10_0,10_3,10_1_0 -21356,2,76.0,0.0,5,111,400.0,0.0,0.0,0,77,0.0,0.0,552.8696910303722,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,103561,2,1,0,1,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,415.22892903615,400.0,14861.885450695876,0,5,0,1,99.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02691448546868398,14861.885450695876,3,2,3_0,3_0_0,3_3_0,3_0_0 -21357,1,48.0,216.0,6,111,447.0,699.0,0.0,0,56,0.0,0.0,617.831879726441,1146.0,0.0,1267.7433776923667,12,0,0,0,0,0,0,0,0,0,,2,,4,116125,2,1,0,0,1,,0.0,653.0,32,1.0,1.0,5.0,3.0,1.8,2,2,1665.29029357686,447.0,19326.06920621683,0,1,2,3,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059298142202210136,10736.705114564906,2,1,2_1,2_0_1,2_3_1,2_0_0 -21358,2,37.0,0.0,1,111,487.0,1530.0,0.0,55,46,0.0,0.0,673.1188488294782,2017.0,0.0,2774.8889382965967,71,2,2,2,2,1,2,2,1,2,20.0,1,,1,101592,2,2,4,0,1,,450.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1392.48377474248,487.0,58954.45819294697,1,1,1,2,78.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03421284940654928,32752.476773859427,8,4,8,8_1,8_3,8_1_0 -21359,1,74.0,44.0,2,111,300.0,1100.0,0.0,0,77,0.0,0.0,414.65226827277917,1400.0,0.0,1995.0181909321939,12,0,0,0,0,0,0,0,0,0,,1,,2,109763,1,3,2,0,1,,0.0,289.0,11,0.0,6.0,5.0,1.0,1.0,1,1,294.710582505485,300.0,14483.110995377287,0,5,2,3,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09666431476268127,14483.110995377287,3,2,3_1,3_1_1,3_3_1,3_0_1 -21361,2,30.0,0.0,9,111,400.0,668.0,0.0,45,43,0.0,0.0,552.8696910303722,1068.0,0.0,1211.5201377660958,71,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,132267,2,1,0,0,1,,0.0,,43,2.0,2.0,3.0,2.0,1.5,1,1,1532.56155830553,400.0,51712.18832538642,1,1,1,2,52.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020652771321141326,34474.79221692428,9,5,9,9_0,9_3,9_0_0 -21362,2,73.0,0.0,1,111,340.0,1300.0,0.0,77,74,0.0,0.0,469.9392373758164,1640.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,1,106756,2,2,4,0,1,,350.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,275.336537713939,340.0,39279.92504734362,5,5,0,1,120.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04175160716379494,26186.616698229078,7,4,7,7_1,7_2,7_1_0 -21363,1,43.0,210.0,1,111,159.0,1056.0,0.0,0,46,0.0,0.0,219.76570218457294,1215.0,0.0,1915.217463294906,12,2,2,2,1,1,1,2,2,0,,2,,1,120418,1,3,0,0,1,,0.0,615.0,12,1.0,1.0,1.0,1.0,1.0,2,2,2067.41822367127,159.0,4848.0,0,4,2,3,40.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.2506188118811881,4848.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -21364,1,23.0,270.0,5,111,720.0,0.0,0.0,0,38,0.0,0.0,995.16544385467,720.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,,3,103000,1,1,0,0,1,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2675.09845397485,720.0,17091.01663830084,0,2,3,4,29.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04212739448082248,17091.01663830084,4,2,4_1,4_0_1,4_3_1,4_0_0 -21365,2,64.0,0.0,1,111,262.0,686.0,0.0,0,75,0.0,0.0,362.1296476248938,948.0,0.0,1244.16588998135,31,0,0,0,0,0,0,0,0,0,,2,,1,128282,1,2,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1774.53229053644,262.0,22682.78356168696,0,5,0,1,75.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041793812360897714,22682.78356168696,6,3,6,6_0,6_3,6_1_0 -21367,1,35.0,377.0,6,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,512.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,118093,1,1,0,1,1,,258.0,520.0,32,2.0,0.0,4.0,3.0,1.8,2,2,1934.49853849519,0.0,5757.277983533776,0,4,2,3,65.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08893091517629623,3198.4877686298755,1,1,1_1,1_0_1,1_3_1,1_0_0 -21368,2,62.0,0.0,1,111,480.0,972.0,0.0,0,56,0.0,0.0,663.4436292364467,1452.0,0.0,1762.8706196237204,20,2,2,2,2,1,1,2,2,0,,2,,1,106789,1,2,0,0,1,,120.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1680.84919492881,480.0,28794.2084671897,0,1,1,2,55.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.05042680723988363,28794.2084671897,8,4,8,8_0,8_3,8_1_0 -21369,1,47.0,360.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,548.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114254,2,2,0,1,1,926.0,188.0,480.0,32,1.0,1.0,4.0,3.0,1.8,1,1,375.571261778246,0.0,10645.498113509855,0,4,2,3,62.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0514771590917433,5914.1656186165865,1,1,1_1,1_0_1,1_2_1,1_0_1 -21370,2,57.0,0.0,6,111,1000.0,0.0,0.0,62,47,0.0,258.79312620486445,1382.1742275759307,1310.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,103120,2,1,1,0,1,,300.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,233.846662298524,1000.0,48593.91895109717,1,1,0,1,100.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026958105628778935,32395.945967398115,8,4,8,8_1,8_2,8_0_0 -21371,2,39.0,0.0,1,111,350.0,1700.0,0.0,85,34,0.0,0.0,483.76097965157567,2050.0,0.0,3083.2099314406632,70,1,2,2,2,1,2,2,2,1,15.0,1,,1,126661,1,1,1,0,1,,480.0,,42,1.0,0.0,8.0,5.0,2.4,2,2,1189.81218320897,350.0,72000.37535202912,7,1,1,2,100.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.028472073790962907,30000.1563966788,8,4,8,8_1,8_3,8_1_0 -21372,2,79.0,0.0,5,111,1600.0,0.0,0.0,86,74,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,106015,2,1,0,0,1,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1837.71411158139,1600.0,65590.47345658664,6,5,0,1,132.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024393786409531198,43726.982304391095,10,5,10,10_0,10_3,10_0_0 -21373,2,86.0,0.0,2,111,300.0,1000.0,0.0,0,77,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,2,,2,125607,2,1,0,0,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,361.998304730989,300.0,20149.34973494608,0,5,0,1,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0645182111135498,20149.34973494608,5,3,5,5_0,5_2,5_0_1 -21374,2,34.0,0.0,9,111,1100.0,0.0,0.0,43,21,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,30,0,0,0,0,0,0,0,0,1,5.0,2,2009.0,6,117978,1,2,0,0,1,,0.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1965.66017691987,1100.0,35060.60341035714,4,1,2,3,72.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03137424610538941,23373.735606904756,6,3,6,6_0,6_3,6_0_0 -21375,1,87.0,270.0,7,111,120.0,1400.0,0.0,0,86,0.0,0.0,165.86090730911167,1520.0,0.0,2539.1140611864284,31,0,0,0,0,0,0,0,0,0,,2,,5,111995,2,1,0,0,1,,0.0,333.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1519.64463674014,120.0,7714.813186813187,0,6,2,3,48.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.19702356534026164,7714.813186813187,1,1,1_1,1_0_1,1_3_1,1_0_0 -21376,1,28.0,206.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2299.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,122078,2,1,0,0,1,,0.0,,22,1.0,4.0,4.0,3.0,2.0,2,2,332.376540982282,0.0,21956.710441555177,0,1,2,3,60.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1047060308109234,10978.355220777588,2,1,2_1,2_0_1,2_2_1,2_0_1 -21377,1,64.0,184.0,2,111,250.0,900.0,0.0,0,90,0.0,0.0,345.54355689398267,1150.0,0.0,1632.287610762704,44,0,0,0,0,0,0,0,0,0,,2,,2,120487,2,1,0,0,1,,0.0,330.0,11,0.0,4.0,3.0,1.0,1.0,2,2,1641.6976777721,250.0,9878.910692167341,0,5,2,3,54.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11640959573729082,9878.910692167341,2,1,2_1,2_0_1,2_3_1,2_0_1 -21378,1,27.0,345.0,2,111,420.0,100.0,0.0,0,56,0.0,0.0,580.5131755818909,520.0,0.0,181.36529008474488,42,1,2,2,2,1,2,2,2,0,,2,,2,111950,1,3,0,1,1,450.0,600.0,320.0,32,1.0,0.0,3.0,2.0,1.3,2,1,334.076278055856,420.0,10686.615212276878,0,4,2,3,73.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04865899910035307,8220.473240212983,1,1,1_1,1_0_1,1_2_1,1_0_1 -21379,1,77.0,327.0,9,111,376.0,1004.0,0.0,86,86,0.0,0.0,519.6975095685499,1380.0,0.0,1820.9075124508388,43,0,0,0,0,0,0,0,0,0,,2,2006.0,6,127739,2,2,0,0,1,,460.0,481.0,41,0.0,2.0,4.0,2.0,1.5,1,1,1602.21774458465,376.0,17254.10437970821,6,5,2,3,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07998096972352602,11502.736253138806,2,1,2_1,2_0_1,2_3_1,2_0_0 -21380,2,62.0,0.0,2,111,500.0,280.0,0.0,0,48,0.0,0.0,691.0871137879653,780.0,0.0,507.8228122372857,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,112463,2,1,0,1,1,744.0,0.0,298.0,22,2.0,2.0,4.0,2.0,1.5,2,2,334.076278055856,500.0,41055.83807509823,0,1,2,3,68.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018998516083711288,27370.558716732154,7,4,7,7_0,7_2,7_0_1 -21382,2,77.0,0.0,2,111,150.0,120.0,0.0,0,75,0.0,0.0,207.32613413638958,270.0,0.0,217.63834810169388,20,2,1,2,2,1,2,2,2,0,,2,,2,113289,2,1,0,1,1,316.0,0.0,252.0,11,0.0,0.0,2.0,1.0,1.0,2,2,355.970299407887,150.0,14183.05614932383,0,5,2,3,44.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019036799767084906,14183.05614932383,3,2,3_0,3_0_0,3_2_0,3_0_1 -21383,1,44.0,228.0,2,111,270.0,240.0,0.0,0,85,0.0,0.0,373.1870414455012,510.0,0.0,435.27669620338776,10,0,0,0,0,0,0,0,0,0,,2,,2,128299,2,1,0,1,1,,180.0,214.0,11,0.0,0.0,2.0,1.0,1.0,2,2,368.501959467904,270.0,11161.967704834256,0,7,2,3,60.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04569086862517248,11161.967704834256,2,1,2_1,2_0_1,2_2_1,2_0_1 -21384,2,24.0,0.0,1,111,300.0,650.0,0.0,0,53,0.0,0.0,414.65226827277917,950.0,0.0,1178.8743855508417,41,0,0,0,0,0,0,0,0,2,30.0,2,,1,123043,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1688.57748759921,300.0,18139.39950308493,0,1,1,2,42.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05237218574068207,18139.39950308493,4,2,4_0,4_0_0,4_3_0,4_1_0 -21385,1,50.0,254.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,773.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,123416,2,1,0,0,1,,114.0,350.0,11,0.0,0.0,2.0,1.0,1.0,1,1,486.754843352005,0.0,9309.01223976173,0,7,2,3,45.0,6,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08303781111150256,9309.01223976173,1,1,1_1,1_0_1,1_2_1,1_0_1 -21386,2,83.0,0.0,5,111,230.0,0.0,0.0,0,72,0.0,0.0,317.900072342464,1549.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,132942,2,1,0,1,1,,465.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2111.77180074928,230.0,30008.455745815616,0,5,0,1,89.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05161878415606217,30008.455745815616,8,4,8,8_0,8_3,8_0_0 -21387,2,32.0,0.0,1,111,0.0,0.0,0.0,48,46,0.0,0.0,0.0,2364.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,3,,1,121293,2,2,0,0,1,,370.0,450.0,43,2.0,0.0,3.0,2.0,1.5,2,2,309.552515825038,0.0,19294.188305392523,4,4,2,3,57.0,6,5,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12252394154043199,12862.792203595016,2,1,2_0,2_0_0,2_2_0,2_1_0 -21388,2,68.0,0.0,1,111,300.0,2000.0,0.0,0,74,0.0,0.0,414.65226827277917,2300.0,0.0,3627.3058016948976,10,0,0,0,0,0,0,0,0,0,,1,,1,118871,2,2,2,0,1,,300.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,297.057667267742,300.0,55944.586824340164,0,5,0,1,80.0,6,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04111210986724679,37296.39121622677,9,5,9,9_1,9_2,9_1_0 -21389,2,64.0,0.0,2,111,300.0,300.0,0.0,0,75,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,100686,1,2,0,1,1,576.0,0.0,219.0,11,0.0,4.0,2.0,1.0,1.0,3,3,411.353213200567,300.0,23848.046109510087,0,5,2,3,50.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02515929385765205,23848.046109510087,6,3,6,6_0,6_2,6_0_1 -21391,2,73.0,0.0,1,111,270.0,1270.0,0.0,0,78,0.0,0.0,373.1870414455012,1540.0,0.0,2303.33918407626,41,0,0,0,0,0,0,0,0,0,,1,,1,129986,1,2,2,0,1,,220.0,376.0,11,0.0,1.0,4.0,1.0,1.0,1,1,271.129215611121,270.0,16737.2227368134,0,5,2,3,86.0,6,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09201048610130408,16737.2227368134,4,2,4_0,4_1_0,4_2_0,4_1_0 -21392,2,61.0,0.0,2,111,300.0,0.0,0.0,0,67,0.0,0.0,414.65226827277917,537.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,2,,2,129093,2,2,0,1,1,63.0,0.0,258.0,12,1.0,0.0,2.0,1.0,1.0,2,2,347.818607292024,300.0,26073.402104521032,0,1,2,3,53.0,6,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020595701237886642,26073.402104521032,7,4,7,7_0,7_2,7_0_1 -21393,2,55.0,0.0,2,111,0.0,0.0,0.0,78,54,0.0,0.0,0.0,3927.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,117017,2,1,1,0,1,,91.0,,42,1.0,2.0,3.0,2.0,1.5,4,3,282.140485239841,0.0,30958.16322330565,5,1,1,2,75.0,6,5,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12684861087119376,20638.775482203768,5,3,5,5_1,5_2,5_0_1 -21394,2,82.0,0.0,2,111,343.0,0.0,0.0,77,72,2748.1961737131214,155.27587572291867,474.08576005854417,2333.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,133501,2,2,2,0,1,,424.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,269.040635483042,343.0,20367.788939093807,5,5,0,1,103.0,6,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11454360642563682,13578.52595939587,3,2,3_0,3_1_0,3_2_0,3_0_1 -21395,2,69.0,0.0,2,111,192.0,0.0,0.0,0,72,0.0,0.0,265.37745169457867,216.0,41.2878481005646,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,131312,2,1,0,1,1,,0.0,,11,0.0,1.0,1.0,1.0,1.0,2,2,453.022232398321,192.0,28298.69256011001,0,5,0,1,37.0,6,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007632861466698104,28298.69256011001,8,4,8,8_0,8_2,8_0_1 -21397,2,66.0,0.0,5,111,420.0,1090.0,0.0,0,75,0.0,0.0,580.5131755818909,1510.0,0.0,1976.8816619237193,42,0,0,0,0,0,0,0,0,0,,2,,3,114279,1,2,0,0,1,,0.0,500.0,21,0.0,3.0,2.0,2.0,1.5,2,2,1404.16866666413,420.0,35562.180229693084,0,5,2,3,47.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0424608387406801,23708.120153128722,6,3,6,6_0,6_3,6_0_0 -21398,2,44.0,0.0,2,111,882.0,1500.0,0.0,35,35,0.0,0.0,1219.0776687219707,2382.0,0.0,2720.4793512711735,43,0,0,0,0,0,0,0,0,1,20.0,1,,2,121224,2,1,2,0,1,,580.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1189.81218320897,882.0,73629.0,1,1,1,2,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0323513832864768,26296.07142857143,7,4,7,7_1,7_3,7_0_1 -21399,2,54.0,0.0,6,111,672.0,1300.0,0.0,52,52,0.0,517.5862524097289,928.8210809310253,2472.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,117170,2,1,1,0,1,,500.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,1798.76548242729,672.0,61389.23856846167,1,1,1,2,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0402676439331172,30694.619284230834,8,4,8,8_1,8_3,8_0_0 -21400,2,74.0,0.0,6,111,240.0,240.0,0.0,78,75,0.0,0.0,331.72181461822333,480.0,0.0,435.27669620338776,10,0,0,0,0,0,0,0,0,0,,1,,4,124424,2,1,2,0,1,,500.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1467.93156969747,240.0,48405.0,5,5,0,1,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009916330957545709,32270.0,8,4,8,8_1,8_3,8_0_0 -21401,1,44.0,330.0,6,111,410.0,792.0,0.0,0,56,0.0,0.0,566.6914333061316,1202.0,0.0,1436.4130974711795,50,0,0,0,0,0,0,0,0,3,60.0,2,,4,128256,2,1,0,0,1,,0.0,308.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1925.19138707737,410.0,18543.0,0,1,2,3,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06482230491290514,14263.846153846154,3,2,3_1,3_0_1,3_3_1,3_0_0 -21402,2,41.0,0.0,6,111,320.0,1600.0,0.0,0,62,0.0,0.0,442.2957528242978,1920.0,0.0,2901.844641355918,20,2,2,2,2,1,2,2,2,0,,2,,4,119849,2,1,0,0,1,,0.0,308.0,12,1.0,3.0,3.0,1.0,1.0,2,2,2028.37612852504,320.0,13489.128617363343,0,4,2,3,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.1423368443183614,13489.128617363343,3,2,3_0,3_0_0,3_3_0,3_0_0 -21403,2,38.0,0.0,6,111,300.0,1284.0,0.0,0,52,0.0,0.0,414.65226827277917,1584.0,0.0,2328.7303246881243,50,2,2,2,2,1,2,2,2,2,10.0,2,,4,117479,1,3,0,0,1,,0.0,293.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2204.02173019759,300.0,20223.844353504574,0,1,2,3,70.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.07832338759695359,20223.844353504574,5,3,5,5_0,5_3,5_0_0 -21404,2,39.0,0.0,6,111,552.0,3228.0,0.0,52,38,0.0,0.0,762.9601736219137,3780.0,0.0,5854.471563935565,71,0,0,0,0,0,0,0,0,0,,1,,4,133118,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1440.72577613911,552.0,80686.85440305201,1,1,1,2,98.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04684777995084438,33619.52266793834,9,5,9,9_1,9_3,9_0_0 -21405,2,62.0,0.0,5,111,456.0,1300.0,0.0,72,75,0.0,0.0,630.2714477746243,1756.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,3,118117,2,2,2,0,1,,498.0,,41,0.0,2.0,4.0,2.0,1.5,5,4,1695.83477489896,456.0,36549.975233716155,5,5,0,1,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04804380820428429,24366.65015581077,7,4,7,7_1,7_3,7_0_0 -21406,2,32.0,0.0,8,111,399.0,0.0,0.0,42,53,0.0,0.0,551.4875168027963,399.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2001.0,6,112003,1,1,0,1,1,,460.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1916.47150868175,399.0,36830.93793957909,1,1,1,2,50.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01083328370986796,24553.95862638606,7,4,7,7_0,7_3,7_0_0 -21407,2,44.0,0.0,8,111,230.0,600.0,0.0,0,46,0.0,0.0,317.900072342464,830.0,0.0,1088.1917405084694,70,1,2,2,2,1,2,2,2,2,10.0,2,2001.0,6,131819,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2139.4117527332,230.0,26121.04871387697,0,1,1,2,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03177514077216422,26121.04871387697,7,4,7,7_0,7_3,7_0_0 -21408,2,67.0,0.0,6,111,461.0,1534.0,0.0,77,75,0.0,0.0,637.182318912504,1995.0,0.0,2782.1435498999867,33,0,0,0,0,0,0,0,0,0,,1,,4,117287,2,1,2,0,1,,441.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,1558.38099799702,461.0,40485.137015300694,5,5,0,1,115.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04927734341731442,26990.091343533797,7,4,7,7_1,7_3,7_0_0 -21409,1,65.0,107.0,6,111,144.0,960.0,0.0,0,78,0.0,0.0,199.033088770934,1104.0,0.0,1741.106784813551,50,2,2,2,2,1,2,2,2,0,,2,,4,110627,2,3,0,0,1,,0.0,203.0,11,0.0,2.0,1.0,1.0,1.0,1,1,2415.0281771551,144.0,8492.344773459292,0,5,2,3,30.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.12999943236528466,8492.344773459292,1,1,1_1,1_0_1,1_3_1,1_0_0 -21410,2,52.0,0.0,2,111,636.0,1100.0,0.0,46,46,0.0,207.03450096389156,879.0628087382918,1936.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,109723,2,1,3,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.8,3,3,1617.82645005473,636.0,40530.58277590852,1,1,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04776639928184707,14475.208134253046,3,2,3_0,3_1_0,3_3_0,3_0_1 -21411,2,51.0,0.0,6,111,1850.0,0.0,0.0,0,43,0.0,0.0,2557.0223210154713,1850.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,4,122630,2,1,2,0,1,,160.0,,12,1.0,2.0,7.0,1.0,1.0,2,2,1654.80980602024,1850.0,54375.040643412736,0,1,0,1,130.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03402296307477093,54375.040643412736,10,5,10,10_1,10_3,10_0_0 -21412,2,77.0,0.0,6,111,340.0,1600.0,0.0,75,74,0.0,0.0,469.9392373758164,1940.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,4,101888,2,1,2,0,2,,340.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1509.29418528967,340.0,74284.22475055994,5,5,0,1,92.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02611590827681589,49522.816500373294,10,5,10,10_1,10_3,10_0_0 -21413,2,46.0,0.0,6,111,360.0,950.0,0.0,53,62,0.0,191.50691339159968,497.582721927335,1495.0,0.0,1722.9702558050765,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,104271,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1639.24662537091,360.0,46292.45231095398,1,1,0,1,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03229468143009232,30861.63487396932,8,4,8,8_1,8_3,8_0_0 -21414,2,48.0,0.0,6,111,210.0,800.0,0.0,0,43,0.0,0.0,290.25658779094545,1010.0,0.0,1450.922320677959,70,2,2,2,2,1,2,2,2,2,30.0,2,,4,107745,1,1,0,0,1,,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2412.38682145252,210.0,32896.84875815167,0,1,2,3,57.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03070202886073479,32896.84875815167,8,4,8,8_0,8_3,8_0_0 -21415,1,58.0,263.0,6,111,400.0,0.0,0.0,0,77,0.0,0.0,552.8696910303722,400.0,0.0,0.0,41,2,2,2,2,1,1,2,2,0,,2,,4,102629,1,2,0,0,1,,0.0,345.0,11,0.0,1.0,2.0,1.0,1.0,2,2,2970.67595087101,400.0,5331.252747560277,0,6,2,3,29.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07502926965581412,5331.252747560277,1,1,1_1,1_0_1,1_3_1,1_0_0 -21416,2,73.0,0.0,6,111,235.0,774.0,0.0,0,77,0.0,0.0,324.81094348034367,1009.0,0.0,1403.7673452559254,70,2,2,2,2,1,2,2,2,0,,2,,4,109773,2,1,0,0,1,,92.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,2431.7913416098,235.0,25233.562130980077,0,5,0,1,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.039986427392318794,25233.562130980077,7,4,7,7_0,7_3,7_0_0 -21417,2,33.0,0.0,6,111,249.0,859.0,0.0,52,52,0.0,0.0,344.1613826664067,1108.0,0.0,1557.9278418279587,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,111183,2,1,0,0,1,,0.0,640.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1890.16015860661,249.0,34275.50348941112,1,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032326293918404414,16321.66832829101,4,2,4_0,4_0_0,4_3_0,4_0_0 -21418,2,58.0,0.0,6,111,530.0,0.0,0.0,0,54,0.0,0.0,732.5523406152432,530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,4,117780,2,1,0,0,1,,0.0,437.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2204.02173019759,530.0,8548.712216553971,0,1,2,3,65.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06199764205112588,8548.712216553971,1,1,1_0,1_0_0,1_3_0,1_0_0 -21419,2,52.0,0.0,2,111,267.0,1000.0,0.0,52,90,0.0,0.0,369.04051876277344,1267.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,3,25.0,1,,2,112023,2,2,1,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1518.11572443638,267.0,49405.917470591216,1,1,0,1,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02564470138125012,32937.278313727475,8,4,8,8_1,8_3,8_0_1 -21420,2,70.0,0.0,1,111,500.0,1500.0,0.0,0,74,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,10,0,0,0,0,0,0,0,0,0,,1,,1,102844,2,1,2,0,1,,250.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1742.39539146765,500.0,82123.70499420947,0,5,0,1,140.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024353504267020338,82123.70499420947,10,5,10,10_1,10_3,10_1_0 -21421,2,51.0,0.0,2,111,442.0,900.0,0.0,0,63,0.0,0.0,610.9210085885613,1342.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,1,,2,111476,2,1,2,0,1,,270.0,,22,2.0,0.0,5.0,2.0,1.5,1,1,1660.98080449591,442.0,16751.30610023293,0,1,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08011315607093701,11167.537400155286,2,1,2_0,2_1_0,2_3_0,2_0_1 -21422,1,47.0,247.0,1,111,241.0,1100.0,0.0,0,52,0.0,0.0,333.1039888457993,1341.0,0.0,1995.0181909321939,12,2,2,2,2,1,2,2,2,1,20.0,2,,1,109606,2,3,0,0,1,,363.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,2389.99849439592,241.0,23135.067474498548,0,1,1,2,53.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.05796395456715936,23135.067474498548,6,3,6,6_0,6_3,6_1_0 -21423,1,68.0,45.0,2,111,300.0,780.0,0.0,0,77,0.0,0.0,414.65226827277917,1080.0,0.0,1414.6492626610102,50,2,2,1,2,1,2,2,2,0,,2,,2,121266,1,3,0,0,1,,0.0,302.0,11,0.0,1.0,2.0,1.0,1.0,3,3,2659.22337597976,300.0,13047.933321373705,0,5,2,3,46.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08277172893203413,13047.933321373705,2,1,2_1,2_0_1,2_3_1,2_0_1 -21424,2,74.0,0.0,6,111,204.0,390.0,0.0,0,75,0.0,0.0,281.96354242548983,594.0,0.0,707.3246313305051,31,0,0,0,0,0,0,0,0,0,,2,,4,122864,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,2114.12005495328,204.0,36090.93010681003,0,5,0,1,56.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016458428703335568,36090.93010681003,9,5,9,9_0,9_3,9_0_0 -21425,2,49.0,0.0,1,120,920.0,0.0,0.0,63,43,0.0,724.6207533736205,1271.600289369856,1620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,128710,2,1,1,0,1,,300.0,,43,2.0,1.0,7.0,5.0,2.8,2,2,1131.41415021713,920.0,64335.52978964984,1,1,0,1,180.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025180487442890725,22976.974924874943,6,3,6,6_1,6_0,6_1_0 -21426,1,43.0,459.0,7,120,700.0,0.0,0.0,85,21,448.0754631054002,0.0,967.5219593031513,1093.0,159.99041138968784,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,109304,2,1,4,0,1,,200.0,523.0,42,1.0,0.0,4.0,5.0,2.8,3,3,1293.36544496088,700.0,18258.19966049957,6,1,2,3,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05986351449341605,6520.785593035561,1,1,1_1,1_1_1,1_0_1,1_0_0 -21427,2,73.0,0.0,1,120,250.0,0.0,0.0,0,78,1941.6603401234008,0.0,345.54355689398267,1676.0,216.76120252796414,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,122791,2,1,1,0,1,,150.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1465.57792086793,250.0,13841.397408677545,0,5,0,1,90.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12108603997955224,13841.397408677545,3,2,3_0,3_1_0,3_0_0,3_1_0 -21428,2,65.0,0.0,5,400,1240.0,0.0,0.0,71,11,1941.6603401234008,310.55175144583734,1713.8960421941538,2966.0,216.76120252796414,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,,3,104955,2,1,2,0,1,,283.0,,42,1.0,2.0,6.0,3.0,2.0,1,1,1295.10465070435,1240.0,166272.55618192255,5,1,0,1,200.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017838181285640624,83136.27809096128,10,5,10,10_1,10_0,10_0_0 -21429,2,29.0,0.0,1,400,674.0,0.0,0.0,21,54,746.7924385090004,207.03450096389156,931.5854293861772,1498.0,213.32054851958378,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,117971,2,2,1,0,1,,216.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1236.9540948255,674.0,47489.6917444569,1,1,1,2,85.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03154368758720886,31659.7944963046,8,4,8,8_1,8_0,8_1_0 -21430,2,32.0,0.0,1,400,900.0,0.0,0.0,67,55,746.7924385090004,207.03450096389156,1243.9568048183376,1672.0,123.8635443016938,0.0,70,2,1,2,1,1,2,2,2,2,30.0,1,,1,103149,2,1,3,0,1,,180.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1352.72612012768,900.0,33109.479876609505,4,1,1,2,160.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05049913215885943,18394.15548700528,4,2,4_0,4_1_0,4_0_0,4_1_0 -21431,2,37.0,0.0,9,400,1500.0,0.0,0.0,63,63,0.0,207.03450096389156,2073.261341363896,1828.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,2009.0,6,108380,2,1,1,0,1,,200.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,1153.25306711068,1500.0,39552.73847386249,1,1,1,2,165.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046216774628841224,18834.637368505948,5,3,5,5_1,5_0,5_0_0 -21432,2,38.0,0.0,1,400,600.0,0.0,0.0,63,54,2412.139576384071,434.77245202417225,829.3045365455583,2669.0,58.49111814246652,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,109920,1,2,3,0,1,,120.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1276.68812599003,600.0,45692.80035658881,1,1,1,2,125.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05841182810357422,25384.889086993782,7,4,7,7_1,7_0,7_1_0 -21433,2,50.0,0.0,1,400,650.0,0.0,0.0,85,85,1493.5848770180007,0.0,898.4132479243549,1774.0,213.32054851958378,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113645,2,1,2,0,2,,160.0,,41,0.0,9.0,4.0,2.0,1.5,2,2,1219.30365187775,650.0,6970.525751990338,6,7,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.25450017159659133,4647.017167993558,1,1,1_0,1_1_0,1_0_0,1_1_0 -21434,2,63.0,0.0,8,222,770.0,0.0,0.0,77,78,0.0,351.95865163861566,1064.2741552334664,1242.0,227.0831645531053,0.0,43,2,2,2,1,2,2,2,2,0,,1,2001.0,6,126599,2,1,1,0,1,,160.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,1102.02450723601,770.0,15022.930924881795,6,5,0,1,66.0,1,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.08267361450374054,10015.28728325453,2,1,2_0,2_1_0,2_0_0,2_0_0 -21436,2,53.0,0.0,1,112,1000.0,0.0,0.0,0,46,0.0,103.51725048194578,1382.1742275759307,1132.0,55.050464134086134,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,106919,2,3,3,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1220.6270666859,1000.0,25003.2671208874,0,1,1,2,100.0,5,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045274083363863356,25003.2671208874,7,4,7,7_1,7_0,7_1_0 -21437,2,48.0,0.0,1,112,500.0,0.0,0.0,34,42,1493.5848770180007,155.27587572291867,691.0871137879653,1712.0,106.66027425979189,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121870,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,2.0,1.5,2,2,1237.09477563334,500.0,53608.22968128139,1,1,0,1,250.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03193539518425445,35738.81978752092,9,5,9,9_1,9_0,9_1_0 -21438,2,40.0,0.0,1,112,1000.0,0.0,0.0,42,42,1194.8679016144006,331.2552015422265,1382.1742275759307,2120.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,1,112672,2,1,4,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1336.26298626453,1000.0,63644.92630522772,1,1,1,2,150.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03330980367284777,35358.29239179318,9,5,9,9_1,9_0,9_1_0 -21439,2,30.0,0.0,1,112,1190.0,0.0,0.0,52,53,2987.1697540360015,0.0,1644.7873308153573,3286.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,103033,2,2,2,0,1,,250.0,580.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1428.86862144543,1190.0,33382.10093036241,4,1,2,3,160.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09843598540591693,18545.611627979117,4,2,4_0,4_1_0,4_0_0,4_1_0 -21440,2,89.0,0.0,1,112,1700.0,0.0,0.0,0,71,0.0,279.4965763012536,2349.696186879082,2063.0,159.99041138968784,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131329,2,1,3,0,1,,120.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1357.42862543857,1700.0,17510.134426911707,0,5,0,1,200.0,5,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1178174849891118,17510.134426911707,4,2,4_0,4_1_0,4_0_0,4_1_0 -21441,2,68.0,0.0,7,112,600.0,0.0,0.0,56,71,1493.5848770180007,155.27587572291867,829.3045365455583,1750.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,125854,2,2,3,0,1,,120.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1214.94389671725,600.0,32574.474062199595,5,5,0,1,180.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053723046967955594,21716.316041466398,6,3,6,6_1,6_0,6_0_0 -21442,2,64.0,0.0,5,112,480.0,0.0,0.0,77,75,1493.5848770180007,429.59658950007497,663.4436292364467,1927.0,55.050464134086134,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,120619,2,1,1,0,1,,150.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1208.722757165,480.0,34564.4184827886,5,5,0,1,120.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05575097411112391,23042.945655192398,6,3,6,6_1,6_0,6_0_0 -21443,2,46.0,0.0,7,112,0.0,0.0,0.0,45,43,2987.1697540360015,0.0,0.0,2496.0,110.10092826817227,0.0,41,0,0,0,0,0,0,0,0,2,50.0,1,,5,109335,1,2,3,0,1,,563.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1081.32678811473,0.0,67916.27176584989,1,1,1,2,110.0,5,0,4,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036751133934519876,29528.813811239084,8,4,8,8_1,8_0,8_0_0 -21444,2,42.0,0.0,9,112,650.0,0.0,0.0,0,64,1792.3018524216009,414.0690019277831,898.4132479243549,2250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,118317,2,1,1,0,1,,66.0,470.0,32,1.0,0.0,4.0,2.0,1.5,2,2,1286.85500605115,650.0,34366.3017147846,0,1,2,3,100.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06547111233188167,22910.867809856398,6,3,6,6_1,6_0,6_0_0 -21445,2,60.0,0.0,5,112,1000.0,0.0,0.0,78,72,0.0,155.27587572291867,1382.1742275759307,1210.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,115616,2,1,1,0,1,,200.0,,41,0.0,4.0,5.0,2.0,1.5,4,2,1116.86162846006,1000.0,31533.842335031866,6,5,0,1,104.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03837147364232794,21022.56155668791,5,3,5,5_1,5_0,5_0_0 -21446,2,61.0,0.0,6,112,1764.0,0.0,0.0,0,75,0.0,0.0,2438.1553374439413,1828.0,110.10092826817227,0.0,70,2,2,2,2,1,2,2,2,0,,1,,4,116319,2,2,1,0,1,,120.0,,21,0.0,1.0,3.0,2.0,1.5,2,2,1169.46220155421,1764.0,33932.829172193364,0,5,0,1,71.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.053871134373256885,22621.886114795576,6,3,6,6_1,6_0,6_0_0 -21447,0,72.0,0.0,2,112,0.0,0.0,0.0,0,77,0.0,828.1380038555662,0.0,3313.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,123238,2,1,2,0,1,,600.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1203.30001423156,0.0,21434.8303846879,0,5,0,1,89.0,5,0,4,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15456152162354694,21434.8303846879,6,3,6,6_1,6_0,6_0_1 -21448,2,81.0,0.0,1,400,400.0,0.0,0.0,0,77,3733.962192545002,0.0,552.8696910303722,2993.0,159.99041138968784,0.0,20,2,2,2,1,2,2,2,2,0,,1,,1,126325,2,2,3,0,1,,142.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1357.42862543857,400.0,22230.705647310977,0,5,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.13463360306612818,22230.705647310977,6,3,6,6_1,6_0,6_1_0 -21449,2,51.0,0.0,1,400,2568.7,0.0,0.0,42,11,4480.754631054002,0.0,3550.3909383742925,5569.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,,1,111622,2,2,1,0,1,,1440.0,,43,2.0,0.0,7.0,4.0,2.5,3,2,1179.38483304575,2568.7,71134.92308189326,1,1,0,1,161.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07828784735718,28453.969232757303,8,4,8,8_1,8_0,8_1_0 -21450,0,42.0,0.0,1,400,0.0,0.0,0.0,0,69,0.0,0.0,0.0,428.0,0.0,0.0,12,2,1,2,2,1,2,2,2,1,1.0,1,,1,129403,2,1,1,1,1,733.0,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1538.78189368254,0.0,17252.540202321972,0,1,5,0,60.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.024807941032497734,17252.540202321972,4,2,4_0,4_1_0,4_0_0,4_1_0 -21451,2,48.0,0.0,2,112,450.0,0.0,0.0,67,54,1642.9433647198007,331.2552015422265,621.9784024091688,1970.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,100095,2,2,2,0,1,,700.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1088.7543346851,450.0,47243.12541908369,1,1,0,1,100.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04169918866553705,31495.416946055793,8,4,8,8_1,8_0,8_0_1 -21452,2,54.0,0.0,1,112,1000.0,0.0,0.0,77,45,4032.679167948602,0.0,1382.1742275759307,3760.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,127980,2,1,2,0,2,,480.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1244.28903733185,1000.0,64297.00766286552,5,1,0,1,176.0,4,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0584786156723678,42864.67177524368,9,5,9,9_1,9_0,9_1_0 -21453,1,26.0,24.0,1,112,1300.0,0.0,0.0,46,52,0.0,41.40690019277831,1796.8264958487098,1340.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,102672,2,2,1,0,1,,500.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1250.27649912961,1300.0,38546.65895244986,4,1,1,2,95.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03476306472249614,21414.810529138813,6,3,6,6_1,6_0,6_1_0 -21454,2,79.0,0.0,1,112,660.0,0.0,0.0,0,71,0.0,517.5862524097289,912.2349902001142,1260.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101049,2,2,1,0,1,,208.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1411.65966804896,660.0,14402.47365614031,0,5,0,1,90.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08748497168490325,14402.47365614031,3,2,3_0,3_1_0,3_0_0,3_1_0 -21455,2,41.0,0.0,8,112,750.0,0.0,0.0,22,53,1493.5848770180007,517.5862524097289,1036.630670681948,2250.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,75.0,1,2001.0,6,117896,2,1,2,0,1,,650.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1157.1386680178,750.0,63681.43218204553,1,1,1,2,150.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03533211994303058,22743.368636444833,6,3,6,6_1,6_0,6_0_0 -21456,2,72.0,0.0,5,112,393.0,0.0,0.0,0,75,1418.9056331671006,103.51725048194578,543.1944714373407,1503.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,108035,2,1,2,0,1,,432.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1250.0470773574,393.0,22677.68196901475,0,5,0,1,120.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06627661513436857,22677.68196901475,6,3,6,6_1,6_0,6_0_0 -21457,2,71.0,0.0,2,112,2600.0,0.0,0.0,0,74,0.0,0.0,3593.6529916974196,2660.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122351,2,1,2,0,1,,360.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,1407.11645631899,2600.0,39172.32363497467,0,5,0,1,130.0,4,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06790508586590564,39172.32363497467,9,5,9,9_1,9_0,9_0_1 -21458,2,84.0,0.0,6,112,1083.0,0.0,0.0,72,75,0.0,362.31037668681023,1496.8946884647328,1493.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116244,1,1,3,0,1,,800.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,1225.28826023452,1083.0,15310.370829271,5,5,0,1,85.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0975156001542184,10206.913886180666,2,1,2_0,2_1_0,2_0_0,2_0_0 -21459,2,27.0,0.0,7,112,1230.0,0.0,0.0,55,55,0.0,0.0,1700.0742999183947,1230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,112041,2,1,0,0,1,,880.0,470.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1730.43444616166,1230.0,28648.083197563694,4,1,2,3,78.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04293480968753268,19098.722131709128,5,3,5,5_0,5_0,5_0_0 -21460,2,62.0,0.0,8,112,1200.0,0.0,0.0,0,71,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110928,2,1,1,0,1,,270.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1340.49995924887,1200.0,10103.781778356872,0,5,0,1,90.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12470578122530548,10103.781778356872,2,1,2_0,2_1_0,2_0_0,2_0_0 -21461,2,66.0,0.0,2,112,3118.0,0.0,0.0,78,77,0.0,0.0,4309.619241581751,3268.0,258.04905062852873,0.0,10,2,2,2,2,1,2,2,2,0,,1,,2,111865,1,2,1,0,1,,231.0,,41,0.0,0.0,6.0,2.0,1.5,1,1,1087.24441605764,3118.0,46300.26308923259,5,5,0,1,97.0,4,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0705827522772758,30866.842059488394,8,4,8,8_1,8_0,8_0_1 -21462,2,59.0,0.0,8,112,480.0,0.0,0.0,52,53,3733.962192545002,0.0,663.4436292364467,3150.0,292.4555907123326,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,126018,2,1,1,0,1,,750.0,,43,2.0,1.0,6.0,4.0,2.3,2,2,1127.87870734992,480.0,50969.776467634765,1,1,1,2,180.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061801330480627366,22160.772377232508,6,3,6,6_1,6_0,6_0_0 -21463,2,46.0,0.0,1,112,500.0,0.0,0.0,54,62,3733.962192545002,103.51725048194578,691.0871137879653,3200.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,116692,2,1,2,0,2,,800.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1082.01447340878,500.0,46594.85437786086,1,1,1,2,100.0,4,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06867711129751813,20258.632338200376,5,3,5,5_1,5_0,5_1_0 -21464,2,34.0,0.0,1,112,600.0,0.0,0.0,45,37,5227.547069563002,0.0,829.3045365455583,4160.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,125684,1,1,3,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1199.63907186126,600.0,59510.046528262974,1,1,1,2,120.0,4,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06990416312352067,28338.11739441094,8,4,8,8_1,8_0,8_1_0 -21465,2,28.0,0.0,7,112,700.0,0.0,0.0,53,46,1194.8679016144006,414.0690019277831,967.5219593031513,1945.0,77.41471518855863,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,124253,2,1,2,0,2,,500.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1158.74035701336,700.0,63814.17734867628,1,1,1,2,110.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030479120484036854,42542.78489911752,9,5,9,9_1,9_0,9_0_0 -21466,2,55.0,0.0,2,112,1998.0,0.0,0.0,65,42,0.0,310.55175144583734,2761.584106696709,2298.0,0.0,0.0,50,1,2,2,2,1,2,2,2,1,5.0,1,,2,129482,2,1,1,0,1,,900.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,1179.27558751928,1998.0,93170.57685364567,1,1,1,2,120.0,4,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.02466443889909308,37268.23074145827,9,5,9,9_1,9_0,9_0_1 -21467,2,58.0,0.0,6,112,700.0,0.0,0.0,0,74,0.0,0.0,967.5219593031513,700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,101864,2,2,3,0,1,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1329.96831794122,700.0,28297.244892387236,0,5,0,1,90.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024737390606826178,28297.244892387236,8,4,8,8_1,8_0,8_0_0 -21468,2,57.0,0.0,5,112,2100.0,0.0,0.0,75,45,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,109294,2,3,1,0,1,,507.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1129.25671215653,2100.0,58096.12149907671,5,1,0,1,100.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03614699132769774,38730.74766605114,9,5,9,9_1,9_0,9_0_0 -21469,2,64.0,0.0,5,112,480.0,0.0,0.0,78,78,2688.452778632401,0.0,663.4436292364467,2455.0,301.05722573328353,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115050,1,2,2,0,1,,438.0,319.0,41,0.0,1.0,4.0,2.0,1.5,1,1,1148.59277780171,480.0,23936.31613009134,5,5,2,3,70.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10256381920498273,15957.544086727561,3,2,3_0,3_1_0,3_0_0,3_0_0 -21470,2,75.0,0.0,2,112,625.0,0.0,0.0,75,74,1642.9433647198007,46.5827627168756,863.8588922349566,1770.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101146,2,2,1,0,1,,480.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1148.88461686154,625.0,51193.75818484519,5,5,0,1,100.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03457452749628314,34129.17212323013,9,5,9,9_1,9_0,9_0_1 -21471,2,56.0,0.0,2,112,525.0,0.0,0.0,75,33,5526.264044966602,0.0,725.6414694773636,4225.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,7.0,1,,2,124550,1,3,2,0,2,,730.0,,42,2.0,3.0,8.0,3.0,2.0,2,2,1492.01428806461,525.0,93554.27486309787,5,1,0,1,170.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04516095075487069,46777.13743154894,10,5,10,10_1,10_0,10_0_1 -21472,2,76.0,0.0,2,112,360.0,0.0,0.0,0,77,3733.962192545002,0.0,497.582721927335,2866.0,10.32196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106732,2,1,2,0,1,,280.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1204.27920932673,360.0,10917.303872725543,0,5,0,1,90.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.26251902790395565,10917.303872725543,2,1,2_0,2_1_0,2_0_0,2_0_1 -21473,2,59.0,0.0,2,112,420.0,0.0,0.0,55,77,1493.5848770180007,621.1035028916747,580.5131755818909,2020.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102542,1,3,4,0,1,,300.0,400.0,42,1.0,3.0,8.0,2.0,1.5,2,2,1392.22553670873,420.0,44406.94547145352,1,5,3,4,120.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04548837976929832,29604.630314302343,8,4,8,8_1,8_0,8_0_1 -21474,2,48.0,0.0,1,112,550.0,0.0,0.0,0,45,0.0,993.7656046266794,760.1958251667618,1570.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,116461,2,2,3,0,1,,350.0,,32,2.0,0.0,5.0,2.0,1.5,1,1,1121.79877416639,550.0,47503.131211283246,0,1,1,2,110.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033050452885242304,31668.754140855497,8,4,8,8_1,8_0,8_1_0 -21475,2,83.0,0.0,1,112,365.0,0.0,0.0,0,71,0.0,0.0,504.49359306521467,445.0,137.62616033521533,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,130340,2,2,3,0,1,,170.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1440.35792998509,365.0,13103.282265200041,0,5,0,1,90.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033960956575120105,13103.282265200041,2,1,2_0,2_1_0,2_0_0,2_1_0 -21476,2,60.0,0.0,1,112,1127.0,0.0,0.0,21,75,0.0,372.6621017350048,1557.7103544780737,1547.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,113159,2,1,2,0,1,,344.0,,42,1.0,2.0,6.0,2.0,1.5,3,2,1151.08770050377,1127.0,26170.112933221586,1,5,0,1,110.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05911323363210117,17446.74195548106,4,2,4_0,4_1_0,4_0_0,4_1_0 -21477,2,42.0,0.0,1,111,0.0,0.0,2200.0,47,46,0.0,0.0,1124.0093366425551,2200.0,0.0,2515.1407042357896,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,125540,2,1,2,0,1,,600.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,1413.43834754488,0.0,51357.04895044992,4,1,0,1,100.0,5,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04283735231988493,34238.03263363328,9,5,9,9_1,9_2,9_1_0 -21478,2,51.0,0.0,9,111,757.0,1610.0,0.0,0,31,0.0,0.0,1046.3058902749794,2367.0,0.0,2919.9811703643927,42,0,0,0,0,0,0,0,0,2,7.0,1,2007.0,6,120606,2,1,1,0,1,,95.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,1543.32453756804,757.0,64132.95202578974,0,1,0,1,200.0,5,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036907703843854875,64132.95202578974,10,5,10,10_1,10_2,10_0_0 -21479,2,45.0,0.0,7,111,1800.0,0.0,0.0,62,52,0.0,0.0,2487.913609636675,1960.0,275.25232067043066,0.0,12,0,0,0,0,0,0,0,0,1,20.0,1,,5,122069,1,2,3,0,1,,500.0,505.0,43,3.0,1.0,4.0,4.0,2.5,1,1,1291.29489806937,1800.0,48038.53016449506,1,1,2,3,98.0,5,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04080058222615275,19215.412065798024,5,3,5,5_1,5_2,5_0_0 -21480,0,50.0,0.0,2,111,665.0,0.0,0.0,78,56,0.0,0.0,919.1458613379938,893.0,392.2345569553637,0.0,41,2,1,2,1,1,2,2,2,0,,2,,2,123537,1,2,0,1,1,,0.0,,42,2.0,1.0,4.0,3.0,2.0,1,1,732.545241355224,665.0,46616.10410532198,5,1,5,0,77.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019156470004065604,23308.05205266099,6,3,6,6_0,6_2,6_0_1 -21481,2,61.0,0.0,2,111,300.0,400.0,0.0,0,52,0.0,0.0,414.65226827277917,731.0,53.330137129895945,725.4611603389795,31,1,1,2,2,1,2,2,2,2,5.0,2,,2,113208,1,2,0,1,1,405.0,100.0,339.0,12,1.0,2.0,2.0,1.0,1.0,1,1,561.322503469072,300.0,23876.56217268082,0,1,2,3,68.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.030615797815164467,23876.56217268082,6,3,6,6_0,6_2,6_0_1 -21482,1,62.0,304.0,1,111,600.0,1000.0,0.0,62,78,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,2,,1,112766,2,1,0,0,1,,0.0,456.0,42,1.0,7.0,4.0,2.0,1.5,1,1,2249.05254137995,600.0,17809.03105492356,4,5,2,3,60.0,5,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08984205794608109,11872.687369949039,2,1,2_1,2_0_1,2_2_1,2_1_0 -21483,2,35.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,2007.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,129442,2,1,0,0,1,,119.0,475.0,12,1.0,2.0,3.0,1.0,1.0,2,2,2279.79941711888,0.0,21099.0,0,1,2,3,65.0,5,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09512299161097683,21099.0,5,3,5,5_0,5_2,5_0_1 -21484,2,63.0,0.0,2,111,1000.0,0.0,0.0,0,56,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,120910,2,1,0,0,1,,450.0,,21,0.0,0.0,4.0,2.0,1.5,1,1,2002.5105183096,1000.0,55532.43030792737,0,5,0,1,65.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018007495700350214,37021.62020528491,9,5,9,9_0,9_2,9_0_1 -21485,2,70.0,0.0,2,111,320.0,743.0,0.0,0,77,0.0,414.0690019277831,442.2957528242978,1463.0,0.0,1347.5441053296545,10,0,0,0,0,0,0,0,0,0,,1,,2,109903,2,1,2,0,1,,81.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1459.99833907688,320.0,19866.64327661148,0,5,0,1,95.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07364102629870817,19866.64327661148,5,3,5,5_1,5_2,5_0_1 -21486,2,53.0,0.0,6,111,270.0,1200.0,0.0,0,52,0.0,0.0,373.1870414455012,5497.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,133358,2,1,2,0,1,,220.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,1622.03330240099,270.0,18126.887996894373,0,1,0,1,90.0,5,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3032511703576359,18126.887996894373,4,2,4_0,4_1_0,4_2_0,4_0_0 -21487,0,72.0,0.0,2,111,1000.0,1800.0,0.0,0,75,0.0,0.0,1382.1742275759307,2800.0,0.0,3264.575221525408,60,0,0,0,0,0,0,0,0,0,,1,,2,130596,2,1,2,0,1,,331.0,,11,0.0,6.0,7.0,1.0,1.0,2,2,1596.3265264065,1000.0,74234.11293399292,0,5,0,1,150.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037718508234747664,74234.11293399292,10,5,10,10_1,10_2,10_0_1 -21488,2,58.0,0.0,1,111,530.0,1500.0,0.0,54,62,0.0,15.527587572291866,732.5523406152432,2045.0,0.0,2720.4793512711735,42,2,2,2,1,2,2,2,2,2,15.0,1,,1,130790,1,1,3,0,1,,540.0,474.0,43,2.0,3.0,4.0,2.0,1.5,1,1,1533.91603414611,530.0,36111.97742211484,1,1,2,3,88.0,5,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05662941068266313,24074.651614743227,6,3,6,6_1,6_2,6_1_0 -21489,1,71.0,105.0,1,111,900.0,0.0,0.0,78,78,0.0,0.0,1243.9568048183376,1157.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107030,2,3,4,0,1,,303.0,325.0,41,0.0,8.0,4.0,2.0,1.5,1,1,1544.37213258182,900.0,24228.102593180072,5,5,2,3,64.0,5,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04775446180938998,16152.068395453382,4,2,4_1,4_1_1,4_2_1,4_1_0 -21490,1,28.0,305.0,5,111,180.0,600.0,0.0,69,69,0.0,0.0,248.7913609636675,876.0,165.1513924022584,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,,3,101503,1,1,0,1,1,,250.0,483.0,43,2.0,0.0,4.0,3.0,1.8,1,1,505.82065819847,180.0,14096.90532637944,4,4,2,3,75.0,5,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06214129837140549,7831.6140702108,1,1,1_1,1_0_1,1_2_1,1_0_0 -21491,2,86.0,0.0,2,111,489.0,3143.0,0.0,86,74,0.0,0.0,675.88319728463,3632.0,0.0,5700.311067363532,71,0,0,0,0,0,0,0,0,0,,1,,2,108453,1,3,2,0,2,,349.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1491.28626600857,489.0,41552.92343160336,6,5,0,1,90.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08740660584274697,27701.94895440224,7,4,7,7_1,7_2,7_0_1 -21492,2,68.0,0.0,2,111,0.0,0.0,3300.0,0,74,0.0,0.0,1686.0140049638328,3300.0,0.0,3772.7110563536835,12,0,0,0,0,0,0,0,0,0,,1,,2,105366,2,1,1,0,1,,150.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1739.16641247246,0.0,43281.8700916685,0,5,0,1,200.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07624439500906016,43281.8700916685,9,5,9,9_1,9_2,9_0_1 -21493,2,27.0,0.0,9,111,785.0,0.0,0.0,56,43,0.0,0.0,1085.0067686471054,825.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,2009.0,6,118998,1,2,0,0,1,,530.0,370.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1940.1411122206,785.0,45663.93770483906,1,1,2,3,48.0,5,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018066773070088825,30442.625136559374,8,4,8,8_0,8_2,8_0_0 -21494,2,47.0,0.0,1,120,506.0,0.0,0.0,0,52,448.0754631054002,0.0,699.3801591534209,806.0,0.0,0.0,70,2,2,2,2,2,2,1,2,1,5.0,8,,1,123509,2,1,0,1,1,300.0,216.0,370.0,32,1.0,0.0,3.0,2.0,1.5,1,1,3164.72745906546,506.0,25100.0,0,1,2,3,77.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03211155378486056,16733.333333333332,4,2,4_0,4_0_0,4_0_0,4_1_0 -21495,2,50.0,0.0,5,120,1667.0,0.0,0.0,0,69,0.0,0.0,2304.084437369076,1717.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,100012,2,2,2,0,1,,230.0,,22,1.0,2.0,5.0,2.0,1.5,2,2,2064.72165019351,1667.0,49438.53793704872,0,1,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03472999145294906,32959.02529136581,8,4,8,8_1,8_0,8_0_0 -21496,2,47.0,0.0,7,120,1800.0,0.0,0.0,46,22,3733.962192545002,124.22070057833493,2487.913609636675,4420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,125146,2,1,2,0,1,,80.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,2188.12052062922,1800.0,61986.72816349648,1,1,1,2,140.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07130558638845702,41324.48544233099,9,5,9,9_1,9_0,9_0_0 -21497,2,74.0,0.0,6,120,320.0,0.0,0.0,0,86,0.0,621.1035028916747,442.2957528242978,2620.0,2924.555907123326,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,107562,2,2,2,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2369.9521721855,320.0,27532.092356400957,0,6,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09516167409597093,27532.092356400957,7,4,7,7_1,7_0,7_0_0 -21498,2,56.0,0.0,9,120,408.0,0.0,0.0,0,43,0.0,0.0,563.9270848509797,408.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,7.0,1,2009.0,6,124692,2,1,1,0,1,,80.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,2319.05393937186,408.0,38307.165873714235,0,1,1,2,140.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010650748774916891,38307.165873714235,9,5,9,9_1,9_0,9_0_0 -21499,2,68.0,0.0,1,120,1000.0,0.0,0.0,0,74,5974.339508072003,517.5862524097289,1382.1742275759307,5600.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123173,2,2,1,0,1,,200.0,,11,0.0,4.0,12.0,1.0,1.0,1,1,2554.4191792802,1000.0,54131.6679521005,0,5,0,1,220.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10345145848739176,54131.6679521005,10,5,10,10_1,10_0,10_1_0 -21500,2,71.0,0.0,2,120,600.0,0.0,0.0,77,72,2987.1697540360015,414.0690019277831,829.3045365455583,3105.0,180.63433543997013,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120066,1,1,3,0,1,,220.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,2178.75315526931,600.0,52526.4359754272,5,5,0,1,125.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05911309119569,35017.623983618134,9,5,9,9_1,9_0,9_0_1 -21501,1,47.0,150.0,1,120,0.0,0.0,0.0,56,63,0.0,0.0,0.0,970.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,105327,2,2,2,0,1,,570.0,560.0,43,2.0,4.0,4.0,3.0,1.8,2,2,2592.5870792946,0.0,21857.603278693503,4,1,2,3,80.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04437815013988944,12143.1129326075,2,1,2_1,2_1_1,2_0_1,2_1_0 -21502,2,83.0,0.0,1,120,1050.0,0.0,0.0,86,72,4604.722175846496,0.0,1451.2829389547271,4133.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,131764,2,1,1,0,1,,744.0,,41,0.0,2.0,10.0,2.0,1.5,2,2,2327.9740549483,1050.0,75151.66379945957,6,5,0,1,360.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0549954557364001,50101.10919963971,10,5,10,10_1,10_0,10_1_0 -21503,2,35.0,0.0,1,120,1000.0,0.0,0.0,54,21,1642.9433647198007,0.0,1382.1742275759307,2220.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,132077,2,1,1,0,1,,550.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,2219.37506018844,1000.0,38333.659286121096,1,1,1,2,250.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05791255104110978,18254.123469581475,4,2,4_0,4_1_0,4_0_0,4_1_0 -21504,2,82.0,0.0,2,120,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1452.0,197.83760548187203,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,102475,2,1,1,0,1,,201.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,2634.13279001066,0.0,30340.583092975023,0,5,0,1,142.0,0,0,4,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047856693971586595,30340.583092975023,8,4,8,8_1,8_0,8_0_1 -21505,2,65.0,0.0,2,120,625.0,0.0,0.0,77,75,0.0,621.1035028916747,863.8588922349566,1225.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,111448,2,3,0,0,1,,140.0,390.0,41,0.0,0.0,3.0,2.0,1.5,2,2,3026.74440100652,625.0,27815.216120591802,5,5,2,3,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04404064288729807,18543.47741372787,4,2,4_0,4_0_0,4_0_0,4_0_1 -21506,2,38.0,0.0,9,120,700.0,0.0,0.0,46,46,0.0,186.3310508675024,967.5219593031513,880.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,115791,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,2170.20011069785,700.0,28945.852287493657,1,1,1,2,110.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03040159229929508,13783.739184520788,3,2,3_0,3_1_0,3_0_0,3_0_0 -21507,2,78.0,0.0,7,120,537.0,0.0,0.0,90,75,0.0,258.79312620486445,742.2275602082747,2987.0,3784.719409218422,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,126801,2,1,2,0,1,,200.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,2242.13614645914,537.0,64942.80346746452,5,5,0,1,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04599431870070788,43295.202311643014,9,5,9,9_1,9_0,9_0_0 -21508,2,29.0,0.0,2,120,900.0,0.0,0.0,65,52,0.0,517.5862524097289,1243.9568048183376,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,103907,2,2,1,0,1,,300.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,2464.72493572503,900.0,39995.98880572148,1,1,1,2,318.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03500351014699075,22219.993780956374,6,3,6,6_1,6_0,6_0_1 -21509,2,61.0,0.0,6,120,800.0,0.0,0.0,72,46,3733.962192545002,0.0,1105.7393820607444,3415.0,197.83760548187203,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,4,116047,2,1,2,0,1,,250.0,,42,2.0,0.0,4.0,3.0,2.0,2,2,2373.63902012167,800.0,91983.61900336728,5,1,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037126175693032754,45991.80950168364,10,5,10,10_1,10_0,10_0_0 -21510,2,45.0,0.0,1,120,400.0,0.0,0.0,34,34,2987.1697540360015,124.22070057833493,552.8696910303722,2655.0,232.24414556567586,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,112198,2,2,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,2219.37506018844,400.0,71289.97576309464,1,1,0,1,150.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03724226262641597,30995.641636128108,8,4,8,8_1,8_0,8_1_0 -21511,2,62.0,0.0,8,120,830.0,0.0,0.0,77,77,0.0,227.73795106028072,1147.2046088880224,1050.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,1999.0,6,117123,2,1,2,0,1,,200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2308.69734612158,830.0,36443.29504881791,5,5,0,1,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028811884287451614,24295.530032545274,7,4,7,7_1,7_0,7_0_0 -21512,2,68.0,0.0,2,120,2000.0,0.0,0.0,78,78,0.0,258.79312620486445,2764.3484551518613,2550.0,516.0981012570575,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,119276,2,1,1,0,1,,500.0,,41,1.0,4.0,7.0,3.0,2.0,1,1,2373.63902012167,2000.0,53330.00920230744,5,5,0,1,125.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04781548021727453,26665.00460115372,7,4,7,7_1,7_0,7_0_1 -21513,2,66.0,0.0,7,111,720.0,0.0,0.0,78,78,1941.6603401234008,0.0,995.16544385467,2074.0,92.89765822627035,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,109909,2,1,2,0,1,,400.0,,41,2.0,1.0,5.0,4.0,2.5,4,3,819.3175473838,720.0,14957.467477884467,6,5,0,1,100.0,7,6,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13865983683845787,5982.986991153787,1,1,1_0,1_1_0,1_2_0,1_0_0 -21514,2,42.0,0.0,5,111,2120.0,0.0,0.0,52,38,0.0,0.0,2930.209362460973,2120.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,3,106505,2,1,2,0,1,,550.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,743.61945798522,2120.0,81858.52910013801,1,1,1,2,120.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025898339773569493,38980.25195244667,9,5,9,9_1,9_2,9_0_0 -21515,2,68.0,0.0,2,111,416.0,1265.0,0.0,54,74,0.0,0.0,574.9844786715871,1681.0,0.0,2294.2709195720226,12,0,0,0,0,0,0,0,0,0,,2,,2,107843,2,2,0,0,1,,0.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,1232.63531541857,416.0,35272.490674776825,4,5,0,1,130.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.047657536166054594,23514.99378318455,6,3,6,6_0,6_2,6_0_1 -21516,2,33.0,0.0,2,111,400.0,453.0,0.0,55,47,0.0,0.0,552.8696910303722,853.0,0.0,821.5847640838944,50,0,0,0,0,0,0,0,0,0,,2,,2,127985,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1223.83598836786,400.0,32106.506624906244,1,1,1,2,92.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026567823462247845,21404.337749937495,6,3,6,6_0,6_2,6_0_1 -21517,2,77.0,0.0,1,111,1500.0,0.0,0.0,78,78,0.0,0.0,2073.261341363896,1610.0,189.2359704609211,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,122860,2,3,0,0,1,,389.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1043.14682716371,1500.0,27233.795731117254,5,5,0,1,85.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05911772328381015,18155.863820744835,4,2,4_0,4_0_0,4_2_0,4_1_0 -21518,2,29.0,0.0,1,111,600.0,800.0,0.0,56,62,0.0,258.79312620486445,829.3045365455583,1650.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,112880,2,1,2,0,1,,390.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,905.248698753803,600.0,20612.78825579235,4,1,1,2,125.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08004739482715723,11451.549030995751,2,1,2_0,2_1_0,2_2_0,2_1_0 -21519,1,55.0,280.0,1,111,1500.0,0.0,0.0,0,56,0.0,0.0,2073.261341363896,1800.0,516.0981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107789,1,3,4,0,2,,1680.0,410.0,22,2.0,1.0,5.0,2.0,1.5,2,2,964.521165923621,1500.0,9208.60838468025,0,4,2,3,90.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.19546927448826473,6139.0722564535,1,1,1_1,1_1_1,1_2_1,1_1_0 -21520,2,55.0,0.0,1,111,350.0,900.0,0.0,0,68,0.0,0.0,483.76097965157567,1250.0,0.0,1632.287610762704,30,0,0,0,0,0,0,0,0,2,40.0,2,,1,101647,2,1,0,0,1,,250.0,300.0,12,1.0,1.0,2.0,1.0,1.0,3,3,1006.66394853801,350.0,16735.481909290433,0,1,2,3,44.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07469160474584736,16735.481909290433,4,2,4_0,4_0_0,4_2_0,4_1_0 -21521,2,35.0,0.0,2,111,800.0,0.0,0.0,0,63,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,2,,2,126596,2,1,0,0,1,,360.0,530.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1415.20421585095,800.0,21036.221861782695,0,1,2,3,80.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03802964264478454,21036.221861782695,5,3,5,5_0,5_2,5_0_1 -21522,2,33.0,0.0,1,111,850.0,1200.0,0.0,55,63,0.0,0.0,1174.848093439541,2050.0,0.0,2176.3834810169387,41,0,0,0,0,0,0,0,0,2,3.0,2,,1,115393,2,3,0,0,1,,180.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1212.41902005957,850.0,17639.253002666803,1,1,1,2,103.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11621807338950631,9799.585001481557,2,1,2_0,2_0_0,2_2_0,2_1_0 -21523,2,55.0,0.0,2,111,50.0,120.0,0.0,85,47,0.0,0.0,69.10871137879653,170.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,122456,2,1,1,0,1,,1200.0,,42,2.0,4.0,8.0,7.0,3.8,2,2,758.496735166293,50.0,66941.14245965707,6,1,1,2,100.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0025395443482676243,17616.090120962388,4,2,4_0,4_1_0,4_2_0,4_0_1 -21524,2,67.0,0.0,2,111,820.0,1950.0,0.0,72,72,0.0,0.0,1133.3828666122631,2770.0,0.0,3536.6231566525253,31,0,0,0,0,0,0,0,0,0,,2,,2,101401,1,3,0,0,2,,450.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1498.97184570998,820.0,31427.77483624476,5,5,0,1,75.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08813859760778983,20951.84989082984,5,3,5,5_0,5_2,5_0_1 -21525,2,53.0,0.0,2,111,0.0,1260.0,0.0,56,37,0.0,0.0,0.0,1777.0,0.0,2285.2026550677856,50,0,0,0,0,0,0,0,0,0,,2,,2,120199,1,2,0,0,1,,600.0,613.0,43,3.0,6.0,4.0,3.0,2.0,1,1,1370.62333240284,0.0,33581.68512079459,4,4,2,3,90.0,7,6,4,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0529157483791556,16790.842560397294,4,2,4_0,4_0_0,4_2_0,4_0_1 -21526,2,34.0,0.0,1,111,0.0,0.0,2000.0,85,63,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,115734,2,1,0,0,1,,0.0,610.0,42,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,1156.41844846065,0.0,33199.374485387845,6,1,2,3,81.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.060242098864852614,12768.990186687635,2,1,2_0,2_0_0,2_2_0,2_1_0 -21527,2,53.0,0.0,2,111,500.0,1500.0,0.0,52,52,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,126363,2,3,0,0,1,,250.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,1208.94322966357,500.0,31469.77405542812,1,1,1,2,85.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06355304605865215,20979.849370285414,5,3,5,5_0,5_2,5_0_1 -21528,2,54.0,0.0,1,111,1600.0,0.0,0.0,68,62,2987.1697540360015,0.0,2211.478764121489,3600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,108455,2,1,2,0,1,,480.0,,43,3.0,2.0,7.0,3.0,2.0,2,2,888.673786928194,1600.0,9066.497155266927,1,1,0,1,105.0,7,6,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.39706624712375066,4533.248577633463,1,1,1_0,1_1_0,1_2_0,1_1_0 -21529,2,34.0,0.0,1,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,748.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,2,,1,107656,1,3,0,0,1,,0.0,630.0,42,1.0,0.0,4.0,2.0,1.5,4,4,1301.67115582184,0.0,20443.132932467044,6,1,2,3,86.0,7,6,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.036589303727123615,13628.755288311362,3,2,3_0,3_0_0,3_2_0,3_1_0 -21530,2,33.0,0.0,2,111,500.0,1200.0,0.0,62,54,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,45.0,2,,2,103488,2,2,0,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1112.62637225224,500.0,12596.63843671027,4,1,1,2,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13495664010214864,5998.399255576318,1,1,1_0,1_0_0,1_2_0,1_0_1 -21531,2,82.0,0.0,2,111,300.0,2000.0,0.0,0,72,0.0,0.0,414.65226827277917,2300.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,2,,2,108978,2,1,0,0,1,,210.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1167.45314274439,300.0,29773.493690606214,0,5,0,1,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07724991980788835,29773.493690606214,8,4,8,8_0,8_2,8_0_1 -21532,2,42.0,0.0,1,111,550.0,1100.0,0.0,0,31,0.0,0.0,760.1958251667618,1650.0,0.0,1995.0181909321939,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,104946,2,2,0,0,1,,250.0,630.0,32,1.0,0.0,5.0,2.0,1.3,2,2,1350.05769647113,550.0,22621.92636480446,0,4,2,3,120.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0729380855278132,17401.481819080356,4,2,4_0,4_0_0,4_2_0,4_1_0 -21533,0,68.0,0.0,1,111,300.0,1300.0,0.0,0,44,0.0,0.0,414.65226827277917,1600.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,2,,1,108923,2,3,0,1,1,,210.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1217.10428720619,300.0,34910.67464385151,0,1,5,0,90.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045831254088405105,34910.67464385151,9,5,9,9_0,9_2,9_1_0 -21534,2,28.0,0.0,1,111,240.0,0.0,0.0,55,47,0.0,0.0,331.72181461822333,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,2,,1,106693,2,2,0,1,1,350.0,0.0,460.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1271.16179578926,240.0,14223.051016484187,1,1,2,3,62.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01687401667348627,9482.034010989459,1,1,1_0,1_0_0,1_2_0,1_1_0 -21535,2,83.0,0.0,1,111,400.0,4000.0,0.0,0,74,0.0,0.0,552.8696910303722,4400.0,0.0,7254.611603389795,33,0,0,0,0,0,0,0,0,0,,1,,1,105636,1,2,4,0,2,,210.0,,11,0.0,2.0,13.0,1.0,1.0,1,1,948.121813447029,400.0,47574.0024897762,0,5,0,1,342.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09248748832822241,47574.0024897762,10,5,10,10_1,10_2,10_1_0 -21536,2,43.0,0.0,1,111,1060.0,1800.0,0.0,55,47,0.0,0.0,1465.1046812304864,2860.0,0.0,3264.575221525408,31,2,2,2,2,1,2,2,1,2,40.0,1,,1,126589,1,1,1,0,1,,600.0,,43,3.0,0.0,6.0,5.0,2.8,2,2,757.782751262428,1060.0,23584.376658724108,1,1,1,2,100.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.12126671997252284,8422.991663830038,1,1,1_0,1_1_0,1_2_0,1_1_0 -21537,1,47.0,89.0,2,111,300.0,1100.0,0.0,85,68,0.0,0.0,414.65226827277917,1400.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,35.0,2,,2,100421,1,2,0,0,1,,400.0,300.0,42,1.0,0.0,2.0,2.0,1.5,1,1,1331.95236955739,300.0,19885.07414266778,6,1,2,3,60.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07040456525107912,13256.716095111855,3,2,3_1,3_0_1,3_2_1,3_0_1 -21538,2,38.0,0.0,2,111,0.0,0.0,2900.0,85,64,0.0,0.0,1481.6486710288227,2900.0,0.0,3315.4127464926314,50,1,2,2,1,2,2,2,2,2,45.0,1,,2,117009,2,1,2,0,1,,600.0,,42,1.0,0.0,6.0,5.0,2.4,4,3,866.621912567509,0.0,63774.18434154678,7,1,1,2,110.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04547294536091378,26572.576808977825,7,4,7,7_1,7_2,7_0_1 -21539,2,43.0,0.0,1,111,640.0,2500.0,0.0,52,53,0.0,0.0,884.5915056485956,3140.0,0.0,4534.132252118622,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,116869,2,3,1,0,2,,450.0,,43,2.0,0.0,10.0,5.0,2.4,4,3,780.736584495009,640.0,24845.330032913458,1,1,1,2,140.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1263818993686272,10352.220847047274,2,1,2_0,2_1_0,2_2_0,2_1_0 -21540,1,36.0,180.0,1,111,660.0,0.0,0.0,85,68,0.0,0.0,912.2349902001142,810.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,114038,2,2,0,0,1,,0.0,400.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1494.55619727978,660.0,12642.148495889502,6,1,3,4,30.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06407138788658948,8428.098997259667,1,1,1_1,1_0_1,1_2_1,1_1_0 -21541,2,29.0,0.0,1,111,300.0,1200.0,0.0,53,55,0.0,0.0,414.65226827277917,1550.0,86.01635020950958,2176.3834810169387,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,126835,2,3,0,0,1,,0.0,569.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1526.34642958308,300.0,40843.095663364365,1,1,2,3,83.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03795011065702168,22690.608701869092,6,3,6,6_0,6_2,6_1_0 -21542,2,62.0,0.0,6,111,1500.0,0.0,0.0,77,78,0.0,103.51725048194578,2073.261341363896,1700.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119323,2,1,2,0,1,,500.0,,41,0.0,1.0,5.0,3.0,2.0,2,2,856.803784206006,1500.0,41072.73451118031,5,5,0,1,100.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04138998827889697,20536.367255590154,5,3,5,5_1,5_2,5_0_0 -21543,2,82.0,0.0,1,111,600.0,250.0,0.0,0,86,3733.962192545002,0.0,829.3045365455583,3350.0,0.0,453.4132252118622,33,0,0,0,0,0,0,0,0,0,,1,,1,102997,2,1,2,0,1,,550.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,972.949606948286,600.0,13857.315104471543,0,5,0,1,150.0,7,6,4,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24174957231931649,13857.315104471543,3,2,3_0,3_1_0,3_2_0,3_1_0 -21544,1,58.0,59.0,1,111,513.0,682.0,0.0,0,78,0.0,0.0,709.0553787464523,1195.0,0.0,1236.9112783779601,41,0,0,0,0,0,0,0,0,0,,2,,1,108725,2,2,0,0,1,,0.0,380.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1481.81100991983,513.0,5957.445650094552,0,7,2,3,35.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.2005893247185619,5957.445650094552,1,1,1_1,1_0_1,1_2_1,1_1_0 -21545,2,40.0,0.0,2,111,0.0,0.0,0.0,85,54,0.0,0.0,0.0,2265.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,126087,2,1,0,0,1,,0.0,,42,1.0,0.0,7.0,5.0,2.4,2,2,1031.47939007622,0.0,49986.149941627424,6,1,0,1,130.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04531255162970164,20827.562475678093,5,3,5,5_0,5_2,5_0_1 -21546,1,49.0,113.0,1,111,2500.0,0.0,0.0,64,56,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,1,,1,107715,1,3,4,0,2,,600.0,624.0,42,2.0,0.0,7.0,4.0,2.5,1,1,833.786379854199,2500.0,26800.793303678092,5,1,2,3,110.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.09328082089483913,10720.317321471237,2,1,2_1,2_1_1,2_2_1,2_1_0 -21547,2,46.0,0.0,2,111,350.0,1120.0,0.0,56,62,0.0,0.0,483.76097965157567,1470.0,0.0,2031.2912489491428,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,109053,2,2,2,0,1,,360.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,720.611669840773,350.0,39255.713920939255,1,1,1,2,100.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03744677788717765,26170.475947292838,7,4,7,7_1,7_2,7_0_1 -21548,2,68.0,0.0,1,111,500.0,0.0,0.0,86,78,2240.377315527001,0.0,691.0871137879653,2360.0,619.317721508469,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,125811,2,2,0,1,2,,480.0,,41,0.0,1.0,2.0,2.0,1.5,1,1,971.416814045582,500.0,19887.69162654794,6,5,0,1,80.0,7,6,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11866636130105981,13258.461084365294,3,2,3_0,3_0_0,3_2_0,3_1_0 -21549,2,46.0,0.0,2,111,500.0,1100.0,0.0,0,54,0.0,0.0,691.0871137879653,1600.0,0.0,1995.0181909321939,43,0,0,0,0,0,0,0,0,0,,2,,2,105607,2,3,0,0,1,,360.0,610.0,22,1.0,0.0,6.0,2.0,1.3,2,2,1310.09203662361,500.0,39819.8429794489,0,4,2,3,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040180972105434046,30630.64844572992,8,4,8,8_0,8_2,8_0_1 -21550,2,68.0,0.0,2,111,220.0,1020.0,0.0,0,77,0.0,0.0,304.0783300667047,1240.0,0.0,1849.925958864398,33,0,0,0,0,0,0,0,0,0,,2,,2,111967,1,2,0,0,1,,0.0,414.0,11,0.0,2.0,5.0,1.0,1.0,2,2,1077.36883508417,220.0,26262.357936651486,0,5,2,3,100.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04721586702119646,26262.357936651486,7,4,7,7_0,7_2,7_0_1 -21551,2,41.0,0.0,2,111,1200.0,1200.0,0.0,46,47,0.0,0.0,1658.6090730911167,2400.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,2,30.0,1,,2,111909,2,2,1,0,1,,600.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,856.803784206006,1200.0,28447.254564885454,1,1,1,2,120.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08436666513901475,15804.030313825251,3,2,3_0,3_1_0,3_2_0,3_0_1 -21552,1,33.0,127.0,9,300,1500.0,0.0,0.0,85,65,0.0,776.3793786145933,2073.261341363896,2250.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,2004.0,6,124699,2,1,1,0,1,,280.0,,42,1.0,0.0,5.0,4.0,2.1,4,2,1213.15489647259,1500.0,33014.43916074601,7,1,1,2,125.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06815199825278988,15721.161505117148,3,2,3_1,3_1_1,3_0_1,3_0_0 -21553,2,59.0,0.0,2,300,883.0,0.0,0.0,0,74,0.0,0.0,1220.4598429495468,915.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106598,2,1,1,0,1,,170.0,,11,0.0,0.0,5.0,1.0,1.0,2,1,1502.43114295612,883.0,32326.026821243526,0,5,0,1,150.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028305365365801596,32326.026821243526,8,4,8,8_1,8_0,8_0_1 -21554,0,66.0,0.0,2,300,600.0,0.0,0.0,0,71,2987.1697540360015,465.827627168756,829.3045365455583,3143.0,159.99041138968784,0.0,10,2,2,2,1,2,2,2,2,0,,1,,2,130622,1,2,3,0,1,,225.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1534.80947365076,600.0,15584.028265116976,0,5,0,1,150.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.2016808457050375,15584.028265116976,3,2,3_0,3_1_0,3_0_0,3_0_1 -21555,2,74.0,0.0,6,300,850.0,0.0,0.0,86,75,0.0,51.75862524097289,1174.848093439541,1100.0,344.06540083803833,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,108908,2,1,2,0,1,,120.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1356.73241803517,850.0,31388.164093960695,5,5,0,1,88.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03504505700642899,20925.44272930713,5,3,5,5_1,5_0,5_0_0 -21556,2,42.0,0.0,1,112,1000.0,0.0,0.0,35,45,2091.018827825201,0.0,1382.1742275759307,2400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,50.0,1,,1,127357,2,1,1,0,1,,502.0,,43,2.0,0.0,5.0,4.0,2.3,4,4,1156.88702397198,1000.0,30955.15608753046,1,1,1,2,80.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07753151020184267,13458.763516317593,3,2,3_0,3_1_0,3_0_0,3_1_0 -21557,2,35.0,0.0,1,112,1200.0,0.0,0.0,54,64,0.0,258.79312620486445,1658.6090730911167,1570.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,118011,2,1,1,0,1,,359.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1365.45531619082,1200.0,30725.074734316633,1,1,1,2,140.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051098329738038926,14630.987968722206,3,2,3_0,3_1_0,3_0_0,3_1_0 -21558,1,34.0,24.0,9,112,1500.0,0.0,0.0,68,46,0.0,517.5862524097289,2073.261341363896,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,125135,1,1,1,0,1,,300.0,,43,2.0,0.0,6.0,5.0,2.4,3,3,1187.40378974594,1500.0,42619.90041484295,1,1,1,2,120.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04692643531619969,17758.291839517897,4,2,4_1,4_1_1,4_0_1,4_0_0 -21559,2,43.0,0.0,2,300,4900.0,0.0,0.0,43,46,0.0,362.31037668681023,6772.65371512206,5250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101910,2,1,1,0,1,,195.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1342.1159817866,4900.0,67930.82696382485,1,4,1,2,370.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0772845000517332,32348.01283991659,8,4,8,8_1,8_0,8_0_1 -21560,2,66.0,0.0,5,300,264.0,0.0,0.0,75,74,0.0,0.0,364.89399608004567,1215.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,118705,2,1,2,0,1,,275.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1373.90296416959,264.0,52841.34410071731,5,5,0,1,132.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02299335909556295,35227.56273381154,9,5,9,9_1,9_0,9_0_0 -21561,2,43.0,0.0,2,300,600.0,400.0,0.0,56,52,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,33,0,0,0,0,0,0,0,0,1,5.0,1,,2,116620,2,1,1,0,1,,230.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1204.96127807164,600.0,37740.16961964901,1,1,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026496966231952516,13478.632007017504,3,2,3_0,3_1_0,3_0_0,3_0_1 -21562,2,42.0,0.0,2,300,833.0,2267.0,0.0,52,65,0.0,0.0,1151.35113157075,3160.0,103.2196202514115,4111.551126221167,33,2,2,2,2,1,1,1,1,2,20.0,1,,2,123561,2,1,3,0,1,,800.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,2,2,1425.63065834603,833.0,46520.46231532023,1,1,1,2,190.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.06792709794200265,16041.53872942077,4,2,4_0,4_1_0,4_0_0,4_0_1 -21563,2,52.0,0.0,1,300,840.0,0.0,0.0,75,52,2240.377315527001,51.75862524097289,1161.0263511637818,2510.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,1,103923,2,1,2,0,1,,400.0,,42,3.0,1.0,8.0,4.0,2.5,3,3,1366.34647278509,840.0,47243.389692273304,5,1,0,1,240.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05312912592320852,18897.35587690932,5,3,5,5_1,5_0,5_1_0 -21564,1,27.0,251.0,1,300,840.0,80.0,0.0,52,63,0.0,0.0,1161.0263511637818,1020.0,172.03270041901916,145.09223206779592,71,1,2,1,2,1,1,2,1,1,2.0,2,,1,102055,1,1,0,1,1,362.0,0.0,350.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1879.11701849903,840.0,31114.058753400055,1,1,2,3,83.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.0327826082763483,17285.588196333363,4,2,4_1,4_0_1,4_0_1,4_1_0 -21565,2,27.0,0.0,2,300,870.0,0.0,0.0,53,67,1622.0331764415487,316.7627864747541,1202.4915779910596,2306.0,75.69438818436844,0.0,20,1,2,2,1,1,2,2,2,0,,1,,2,118250,1,3,4,0,1,,440.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1676.85926416383,870.0,32615.452295855426,1,1,1,2,96.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.07070268347292036,18119.69571991968,4,2,4_0,4_1_0,4_0_0,4_0_1 -21566,2,48.0,0.0,7,300,736.0,0.0,0.0,42,37,2240.377315527001,0.0,1017.2802314958849,2236.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,70.0,1,,5,118255,2,1,2,0,1,,172.0,,43,2.0,0.0,7.0,5.0,3.0,2,2,1308.81452462595,736.0,92180.04622912768,1,1,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024256876530980232,30726.68207637589,8,4,8,8_1,8_0,8_0_0 -21567,2,34.0,0.0,6,300,600.0,1600.0,0.0,52,48,0.0,0.0,829.3045365455583,2200.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,124303,2,1,1,0,1,,700.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1293.73024998874,600.0,57761.28593130088,1,1,1,2,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03808779469724061,27505.37425300042,7,4,7,7_1,7_0,7_0_0 -21568,2,49.0,0.0,8,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1782.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,118835,2,2,1,0,1,,209.0,370.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1506.03027226881,0.0,19388.182395457177,0,1,2,3,55.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09191165853780797,19388.182395457177,5,3,5,5_1,5_0,5_0_0 -21569,2,51.0,0.0,1,300,900.0,0.0,0.0,0,62,0.0,0.0,1243.9568048183376,1005.0,180.63433543997013,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123863,2,1,2,0,2,,123.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1286.15768425297,900.0,9304.50290051776,0,4,0,1,102.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1080122184651128,9304.50290051776,1,1,1_0,1_1_0,1_0_0,1_1_0 -21570,2,57.0,0.0,6,300,1000.0,2000.0,0.0,43,37,0.0,414.0690019277831,1382.1742275759307,3400.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,2,3.0,1,,4,124245,2,1,2,0,1,,450.0,,43,2.0,3.0,6.0,2.0,1.5,3,2,1407.54252674622,1000.0,89603.05615923453,1,1,0,1,200.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03794513430387714,59735.37077282302,10,5,10,10_1,10_0,10_0_0 -21571,2,61.0,0.0,6,300,400.0,0.0,0.0,67,78,0.0,1606.5877274797986,552.8696910303722,2002.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,120383,1,3,3,0,1,,480.0,412.0,42,1.0,0.0,3.0,2.0,1.5,4,4,1181.09568943022,400.0,22773.566656020812,1,5,2,3,73.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08790893540036325,15182.377770680541,3,2,3_0,3_1_0,3_0_0,3_0_0 -21572,2,67.0,0.0,1,300,600.0,1030.0,0.0,75,74,0.0,0.0,829.3045365455583,1630.0,0.0,1868.0624878728725,20,0,0,0,0,0,0,0,0,0,,1,,1,122048,2,1,1,0,1,,450.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1398.7510988524,600.0,94740.24456984607,5,5,0,1,175.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017204937641873013,63160.16304656404,10,5,10,10_1,10_0,10_1_0 -21573,2,48.0,0.0,1,300,500.0,0.0,0.0,0,64,0.0,0.0,691.0871137879653,525.0,43.00817510475479,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,129634,1,2,0,0,1,,0.0,440.0,12,1.0,0.0,2.0,1.0,1.0,5,5,1948.14283015056,500.0,23585.52348885392,0,1,2,3,90.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022259416893930944,23585.52348885392,6,3,6,6_0,6_0,6_1_0 -21574,2,56.0,0.0,1,300,850.0,0.0,0.0,0,78,0.0,1656.2760077111325,1174.848093439541,2549.0,170.31237341482898,0.0,60,2,1,1,2,1,2,2,2,0,,1,,1,113868,2,2,3,0,1,,750.0,,21,0.0,0.0,4.0,2.0,1.5,1,1,1318.14736310701,850.0,18680.698881344346,0,7,0,1,290.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.13645099769503713,12453.799254229563,2,1,2_0,2_1_0,2_0_0,2_1_0 -21575,2,80.0,0.0,2,300,410.0,1200.0,0.0,77,77,0.0,0.0,566.6914333061316,1610.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,0,,1,,2,119306,2,1,1,0,1,,267.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1397.24603504264,410.0,24127.87736781136,5,5,0,1,102.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06672779272941252,16085.251578540907,4,2,4_0,4_1_0,4_0_0,4_0_1 -21576,2,25.0,0.0,7,300,1000.0,0.0,0.0,54,47,0.0,279.4965763012536,1382.1742275759307,1270.0,0.0,0.0,43,2,1,2,1,1,2,2,2,2,40.0,1,,5,123613,1,2,3,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1348.81611410074,1000.0,41739.42848231494,1,1,1,2,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.030426866063537523,23188.57137906386,6,3,6,6_1,6_0,6_0_0 -21577,2,33.0,0.0,2,300,1400.0,1600.0,0.0,52,43,0.0,0.0,1935.0439186063027,3070.0,120.42289029331342,2901.844641355918,50,2,1,2,1,1,2,1,2,1,2.0,1,,2,103380,1,2,1,0,1,,244.0,460.0,43,2.0,0.0,3.0,2.0,1.5,3,2,1609.73323959587,1400.0,31921.891223788927,4,1,2,3,80.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0961722467656354,21281.260815859285,6,3,6,6_1,6_0,6_0_1 -21578,2,63.0,0.0,6,300,452.0,1884.0,0.0,77,77,0.0,0.0,624.7427508643207,2396.0,103.2196202514115,3416.922065196594,20,0,0,0,0,0,0,0,0,0,,1,,4,116996,2,1,1,0,1,,235.0,,41,0.0,1.0,5.0,2.0,1.5,4,3,1407.38340325077,452.0,33262.63521090598,5,5,0,1,130.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07203277746359711,22175.09014060399,6,3,6,6_1,6_0,6_0_0 -21579,2,45.0,0.0,1,300,0.0,0.0,0.0,54,46,0.0,0.0,0.0,2165.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,7.0,2,,1,119245,2,2,0,0,1,,630.0,340.0,43,2.0,5.0,3.0,2.0,1.5,1,1,1847.5767304383,0.0,40869.87074470094,1,1,2,3,80.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05297300824668518,27246.58049646729,7,4,7,7_0,7_0,7_1_0 -21580,2,27.0,0.0,1,300,0.0,0.0,0.0,0,43,0.0,0.0,0.0,659.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,5.0,1,,1,120924,2,1,2,0,1,,231.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,1630.01160684168,0.0,22043.85536942883,0,1,0,1,70.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029894952083287737,22043.85536942883,6,3,6,6_1,6_0,6_1_0 -21581,2,49.0,0.0,1,300,600.0,0.0,0.0,52,64,4480.754631054002,0.0,829.3045365455583,3690.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,116780,2,1,1,0,1,,520.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1260.0832130802,600.0,43227.159598613674,1,1,0,1,166.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08536299942590586,18794.417216788555,5,3,5,5_1,5_0,5_1_0 -21582,2,67.0,0.0,1,300,800.0,0.0,0.0,0,86,2688.452778632401,0.0,1105.7393820607444,2740.0,240.84578058662683,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,131605,2,1,2,0,1,,450.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1234.09665588522,800.0,13674.476963779834,0,5,0,1,160.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20037329451485084,13674.476963779834,3,2,3_0,3_1_0,3_0_0,3_1_0 -21583,2,53.0,0.0,1,300,1600.0,0.0,0.0,0,46,0.0,0.0,2211.478764121489,2150.0,946.1798523046054,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,121215,2,3,3,0,1,,240.0,,22,1.0,0.0,8.0,2.0,1.5,2,2,1470.82993635533,1600.0,48249.6824624532,0,1,0,1,270.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04455987874475818,32166.4549749688,8,4,8,8_1,8_0,8_1_0 -21584,2,46.0,0.0,9,300,2300.0,0.0,0.0,0,48,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,60.0,1,2006.0,6,129217,2,1,1,0,1,,250.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,1395.32657643694,2300.0,23930.82753521485,0,1,1,2,173.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09611034121638665,23930.82753521485,6,3,6,6_1,6_0,6_0_0 -21585,2,32.0,0.0,1,300,0.0,0.0,0.0,43,37,0.0,0.0,0.0,4119.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,50.0,1,,1,130698,2,2,1,0,1,,0.0,600.0,43,2.0,0.0,9.0,3.0,1.8,2,2,1707.17874699854,0.0,45193.26337216691,1,1,2,3,220.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09114190241319817,25107.368540092728,7,4,7,7_1,7_0,7_1_0 -21586,2,56.0,0.0,2,300,400.0,500.0,0.0,0,68,0.0,0.0,552.8696910303722,900.0,0.0,906.8264504237244,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,131624,2,1,0,0,1,,480.0,450.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1934.33451079312,400.0,18732.28323084081,0,1,2,3,54.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04804539782519629,18732.28323084081,5,3,5,5_0,5_0,5_0_1 -21587,2,53.0,0.0,2,300,400.0,1500.0,0.0,85,43,0.0,0.0,552.8696910303722,1900.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,1,5.0,1,,2,126216,2,1,2,0,1,,250.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,1349.6822819216,400.0,33683.12729359842,5,1,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05640806399710696,22455.418195732283,6,3,6,6_1,6_0,6_0_1 -21588,2,52.0,0.0,1,300,500.0,1200.0,0.0,0,52,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,123167,2,1,4,0,2,,200.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1545.2941265216,500.0,28257.49719633416,0,1,0,1,100.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0601610251675276,28257.49719633416,8,4,8,8_1,8_0,8_1_0 -21589,2,64.0,0.0,6,300,900.0,0.0,0.0,77,77,0.0,0.0,1243.9568048183376,2631.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,118000,2,1,2,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1271.1349220016,900.0,74080.41896940151,5,5,0,1,104.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0355154578848524,49386.945979601005,10,5,10,10_1,10_0,10_0_0 -21590,2,54.0,0.0,2,300,750.0,900.0,0.0,43,62,0.0,41.40690019277831,1036.630670681948,1690.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,133204,2,2,2,0,1,,300.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1366.74367944489,750.0,61987.130713025545,1,1,0,1,150.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027263723623924332,41324.753808683694,9,5,9,9_1,9_0,9_0_1 -21591,2,42.0,0.0,9,300,1800.0,0.0,0.0,52,64,0.0,0.0,2487.913609636675,1920.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,118840,2,1,1,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1283.80631192237,1800.0,41122.86150875039,1,1,0,1,125.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04668935792786331,17879.50500380452,4,2,4_0,4_1_0,4_0_0,4_0_0 -21592,0,55.0,0.0,2,211,720.0,1800.0,0.0,75,54,0.0,0.0,995.16544385467,2520.0,0.0,3264.575221525408,50,2,2,2,2,1,2,2,2,2,15.0,1,,2,120498,2,3,4,0,1,,450.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,286.976746833043,720.0,50504.315287280624,5,1,5,0,130.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.04989672636220563,33669.54352485375,9,5,9,9_1,9_1,9_0_1 -21593,0,66.0,0.0,6,211,780.0,1600.0,0.0,86,78,0.0,0.0,1078.0958975092258,2380.0,0.0,2901.844641355918,50,2,2,2,2,1,2,2,2,0,,2,,4,107539,2,2,0,0,1,,420.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,355.777039056935,780.0,25101.417155065385,6,5,5,0,80.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.09481536382178819,16734.278103376924,4,2,4_0,4_0_0,4_1_0,4_0_0 -21594,1,53.0,254.0,2,211,450.0,770.0,0.0,0,56,0.0,0.0,621.9784024091688,1220.0,0.0,1396.5127336525356,60,0,0,0,0,0,0,0,0,0,,2,,2,110913,2,1,0,0,1,,0.0,376.0,12,1.0,3.0,3.0,1.0,1.0,2,2,312.953975098315,450.0,15600.548822130098,0,4,2,3,70.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07820237697467243,15600.548822130098,3,2,3_1,3_0_1,3_1_1,3_0_1 -21595,2,24.0,0.0,2,211,240.0,650.0,0.0,0,67,0.0,0.0,331.72181461822333,890.0,0.0,1178.8743855508417,70,0,0,0,0,0,0,0,0,2,5.0,2,,2,109465,2,2,0,0,1,,210.0,313.0,12,1.0,0.0,2.0,1.0,1.0,2,2,314.375437338921,240.0,9211.129654490283,0,1,2,3,65.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09662224215529729,9211.129654490283,1,1,1_0,1_0_0,1_1_0,1_0_1 -21596,1,34.0,390.0,2,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,821.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,128881,1,2,0,0,1,,437.0,327.0,31,0.0,2.0,4.0,3.0,1.6,2,2,345.07100825767,0.0,16701.659596711896,0,6,2,3,90.0,2,3,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04915679158983893,10438.537247944934,2,1,2_1,2_0_1,2_1_1,2_0_1 -21597,1,28.0,459.0,5,211,283.0,1210.0,0.0,0,85,0.0,0.0,391.15530640398833,1493.0,0.0,2194.5200100254133,41,2,2,2,2,1,2,2,2,0,,1,,3,102682,1,3,3,0,1,,256.0,442.0,31,0.0,0.0,5.0,4.0,1.9,1,1,247.513531564574,283.0,13396.136918637401,0,6,3,4,80.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.11145004034132115,7050.598378230212,1,1,1_1,1_1_1,1_1_1,1_0_0 -21598,2,67.0,0.0,1,211,1061.0,0.0,0.0,78,78,0.0,193.5772584012386,1466.4868554580623,1248.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107167,2,1,3,0,1,,271.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,759.520430966397,1061.0,30648.631493719568,5,5,0,1,110.0,2,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040719599511506305,20432.420995813045,5,3,5,5_1,5_1,5_1_0 -21599,2,34.0,0.0,7,211,300.0,900.0,0.0,0,62,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,114274,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1094.07228306883,300.0,33886.5331376658,0,1,1,2,60.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03541229771499308,33886.5331376658,9,5,9,9_0,9_1,9_0_0 -21600,2,86.0,0.0,2,211,444.0,0.0,0.0,0,86,2688.452778632401,0.0,613.6853570437131,2592.0,598.6737974581868,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111539,1,2,3,0,1,,240.0,,21,0.0,8.0,5.0,2.0,1.5,3,3,857.127123514374,444.0,45823.55588519292,0,6,0,1,90.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05656479402196631,30549.037256795284,8,4,8,8_1,8_1,8_0_1 -21601,1,46.0,290.0,2,211,900.0,0.0,0.0,85,85,0.0,0.0,1243.9568048183376,996.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125254,2,2,0,1,1,720.0,0.0,390.0,41,1.0,0.0,4.0,3.0,2.0,2,2,319.027139063073,900.0,18684.153598275105,7,7,2,3,56.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0533072046727313,9342.076799137552,1,1,1_1,1_0_1,1_1_1,1_0_1 -21602,1,44.0,110.0,2,211,600.0,3000.0,0.0,85,62,0.0,0.0,829.3045365455583,3600.0,0.0,5440.958702542347,20,0,0,0,0,0,0,0,0,2,23.0,1,,2,122519,2,2,2,0,1,,650.0,,42,1.0,0.0,7.0,5.0,2.5999999999999996,1,1,238.524026868553,600.0,28739.057671015842,6,1,1,2,145.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.12526506753318856,11053.48371962148,2,1,2_1,2_1_1,2_1_1,2_0_1 -21603,2,79.0,0.0,2,211,720.0,0.0,0.0,72,78,0.0,494.8124573037008,995.16544385467,1288.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129877,1,2,0,1,1,,245.0,274.0,41,0.0,3.0,4.0,2.0,1.5,3,3,355.191249074493,720.0,23027.884025673095,5,5,2,3,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055932190667802896,15351.922683782062,3,2,3_0,3_0_0,3_1_0,3_0_1 -21604,2,57.0,0.0,2,211,600.0,0.0,0.0,0,68,0.0,710.1283383061481,829.3045365455583,1316.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,105602,2,1,0,1,1,,0.0,318.0,12,1.0,3.0,5.0,1.0,1.0,2,2,357.026512913207,600.0,19603.05481023149,0,1,2,3,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06713239404468407,19603.05481023149,5,3,5,5_0,5_1,5_0_1 -21605,2,54.0,0.0,2,211,450.0,0.0,0.0,0,42,2987.1697540360015,0.0,621.9784024091688,2450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,5.0,1,,2,119652,1,2,2,0,1,,150.0,414.0,12,1.0,1.0,4.0,1.0,1.0,1,1,342.50688830676,450.0,36255.780221737514,0,1,2,3,90.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06757543169712503,36255.780221737514,9,5,9,9_1,9_1,9_0_1 -21606,2,54.0,0.0,6,211,1150.0,2000.0,0.0,46,37,0.0,0.0,1589.5003617123202,3150.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,105945,2,1,1,0,1,,340.0,,43,4.0,0.0,6.0,4.0,2.5,1,1,216.644993253682,1150.0,105049.40264547666,1,1,0,1,140.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029985891596458654,42019.76105819066,9,5,9,9_1,9_1,9_0_0 -21607,2,29.0,0.0,6,211,0.0,0.0,0.0,67,67,0.0,0.0,0.0,766.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,4,123501,1,2,0,1,1,,404.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,381.469339850547,0.0,33976.91603370184,1,1,1,2,83.0,2,3,4,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02254471827991103,18876.064463167688,5,3,5,5_0,5_1,5_0_0 -21608,2,42.0,0.0,2,211,840.0,0.0,0.0,55,21,5974.339508072003,0.0,1161.0263511637818,4840.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,1,,2,105720,1,1,3,0,1,,480.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,949.135697573811,840.0,35888.5415156093,1,1,1,2,110.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.13486198646146985,19938.078619782944,5,3,5,5_1,5_1,5_0_1 -21609,0,78.0,0.0,2,211,470.0,2100.0,0.0,0,77,0.0,82.81380038555662,649.6218869606873,2650.0,0.0,3808.6710917796427,70,2,2,2,1,1,2,2,2,0,,1,,2,114068,1,2,1,0,1,,462.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,854.812332593512,470.0,15536.344250859936,0,5,0,1,96.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.1705677962081281,15536.344250859936,3,2,3_0,3_1_0,3_1_0,3_0_1 -21610,2,40.0,0.0,2,211,840.0,0.0,0.0,85,63,0.0,0.0,1161.0263511637818,1002.0,278.692974678811,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,128920,1,2,0,1,1,880.0,0.0,230.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,2,2,1273.78006837997,840.0,35478.40287864852,6,1,2,3,90.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028242534012234803,13645.539568710972,3,2,3_0,3_0_0,3_1_0,3_0_1 -21611,2,80.0,0.0,2,211,540.0,0.0,0.0,0,77,0.0,1490.6484069400192,746.3740828910024,1980.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,107310,2,1,2,0,1,,372.0,,21,1.0,1.0,8.0,2.0,1.5,2,2,921.717612274109,540.0,34433.09437782794,0,5,1,2,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057502819185340365,22955.396251885293,6,3,6,6_1,6_1,6_0_1 -21612,2,32.0,0.0,2,211,727.0,1628.0,0.0,42,53,0.0,0.0,1004.8406634477016,2355.0,0.0,2952.626922579647,50,0,0,0,0,0,0,0,0,2,90.0,1,,2,113097,2,1,1,0,1,,369.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,823.142247569149,727.0,48278.175707860115,1,1,1,2,160.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04877980506659006,22989.607479933387,6,3,6,6_1,6_1,6_0_1 -21613,2,54.0,0.0,8,211,660.0,1470.0,0.0,52,75,0.0,0.0,912.2349902001142,2130.0,0.0,2666.06976424575,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,114218,2,1,1,0,1,,360.0,,42,2.0,1.0,7.0,3.0,2.0,1,1,897.922740076413,660.0,79081.82431020863,1,5,0,1,120.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026934128272569954,39540.91215510431,9,5,9,9_1,9_1,9_0_0 -21614,2,56.0,0.0,2,211,690.0,0.0,0.0,42,34,5227.547069563002,0.0,953.7002170273921,4216.0,44.72850210894499,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,2,128018,2,1,2,0,1,,321.0,,43,3.0,0.0,8.0,3.0,2.0,2,2,964.078026947052,690.0,105222.85141917599,1,1,0,1,200.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04006734224683507,52611.425709587995,10,5,10,10_1,10_1,10_0_1 -21615,2,57.0,0.0,2,211,600.0,1300.0,0.0,77,52,0.0,0.0,829.3045365455583,1900.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,4.0,1,,2,117586,2,2,1,0,1,,510.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,752.308354509897,600.0,44385.99330980325,7,1,1,2,85.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04280629672379911,29590.6622065355,8,4,8,8_1,8_1,8_0_1 -21616,2,68.0,0.0,5,211,1200.0,0.0,0.0,55,77,2987.1697540360015,621.1035028916747,1658.6090730911167,3800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125398,2,1,1,0,1,,500.0,,42,1.0,3.0,7.0,2.0,1.5,1,1,247.991245668229,1200.0,36004.58060129261,1,5,0,1,160.0,2,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10554212648886056,24003.053734195073,6,3,6,6_1,6_1,6_0_0 -21617,2,53.0,0.0,7,211,595.0,1584.0,0.0,54,38,0.0,0.0,822.3936654076787,2179.0,0.0,2872.826194942359,70,0,0,0,0,0,0,0,0,2,20.0,1,,5,106557,2,1,2,0,1,,348.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,262.891581373715,595.0,92699.14016868181,1,1,0,1,105.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023506151146978706,46349.57008434091,10,5,10,10_1,10_1,10_0_0 -21618,2,32.0,0.0,6,211,1020.0,2640.0,0.0,85,37,0.0,0.0,1409.817712127449,3660.0,0.0,4788.043658237265,50,0,0,0,0,0,0,0,0,2,7.0,1,,4,100593,1,3,2,0,1,,360.0,600.0,42,1.0,0.0,5.0,3.0,1.8,3,2,294.15577003537,1020.0,60367.39979641637,6,1,2,3,170.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06062875015891062,33537.44433134243,8,4,8,8_1,8_1,8_0_0 -21619,2,72.0,0.0,5,211,394.0,0.0,0.0,77,75,2240.377315527001,0.0,544.5766456649167,1894.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128331,1,1,2,0,1,,418.0,,41,0.0,1.0,6.0,2.0,1.5,3,3,229.674525840559,394.0,58068.50322774829,5,5,0,1,135.0,2,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03261664921121893,38712.335485165524,9,5,9,9_1,9_1,9_0_0 -21620,2,72.0,0.0,2,211,540.0,1920.0,0.0,0,78,0.0,0.0,746.3740828910024,2460.0,0.0,3482.213569627102,70,0,0,0,0,0,0,0,0,0,,1,,2,108514,2,1,1,0,2,,135.0,,21,0.0,0.0,5.0,2.0,1.5,1,1,247.96334801055,540.0,37903.249756041536,0,5,0,1,80.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06490208665044325,25268.833170694357,7,4,7,7_1,7_1,7_0_1 -21621,2,59.0,0.0,6,211,580.0,1360.0,0.0,52,33,0.0,0.0,801.6610519940398,1940.0,0.0,2466.5679451525307,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,115119,2,1,2,0,1,,296.0,,43,2.0,1.0,7.0,2.0,1.5,1,1,236.313735911068,580.0,75359.78195957985,1,1,0,1,175.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025743174270866958,50239.8546397199,10,5,10,10_1,10_1,10_0_0 -21622,2,60.0,0.0,5,211,480.0,700.0,0.0,0,55,0.0,621.1035028916747,663.4436292364467,1780.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,3.0,1,,3,103670,2,1,1,0,1,,250.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,233.696559302485,480.0,26476.70816078669,0,1,0,1,86.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06722890131169205,26476.70816078669,7,4,7,7_1,7_1,7_0_0 -21623,2,62.0,0.0,2,211,551.0,1600.0,0.0,56,78,0.0,0.0,761.5779993943378,2151.0,0.0,2901.844641355918,10,0,0,0,0,0,0,0,0,0,,1,,2,103783,2,2,1,0,1,,350.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,243.690953241427,551.0,27647.379994784475,1,5,0,1,70.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07780122385577853,18431.58666318965,4,2,4_0,4_1_0,4_1_0,4_0_1 -21624,2,42.0,0.0,8,211,600.0,1200.0,0.0,45,48,0.0,207.03450096389156,829.3045365455583,2000.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,2,7.0,1,2001.0,6,114373,2,1,1,0,1,,462.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,762.730402905644,600.0,68664.70792793034,1,1,1,2,124.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029127044450537473,29854.220838230587,8,4,8,8_1,8_1,8_0_0 -21625,0,74.0,0.0,2,211,552.0,0.0,0.0,0,77,0.0,0.0,762.9601736219137,876.0,557.385949357622,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129393,2,1,0,1,1,,240.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1411.9508800342,552.0,11770.109064985434,0,5,5,0,70.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07442581841539496,11770.109064985434,2,1,2_0,2_0_0,2_1_0,2_0_1 -21626,2,69.0,0.0,2,211,780.0,0.0,0.0,78,78,0.0,1010.3283647037908,1078.0958975092258,1972.0,371.5906329050814,0.0,41,1,2,2,1,1,2,2,2,0,,2,,2,108826,2,1,0,1,1,,204.0,327.0,41,0.0,2.0,4.0,2.0,1.5,2,2,291.625837520758,780.0,16445.87814425434,7,7,2,3,60.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.11990846476561991,10963.918762836227,2,1,2_0,2_0_0,2_1_0,2_0_1 -21627,0,78.0,0.0,2,211,378.0,0.0,0.0,0,86,0.0,0.0,522.4618580237018,714.0,578.0298734079045,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105400,2,1,0,1,1,,200.0,,21,1.0,4.0,5.0,2.0,1.5,2,2,370.72038890048,378.0,23059.685522695916,0,6,5,0,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030963128239423016,15373.123681797277,3,2,3_0,3_0_0,3_1_0,3_0_1 -21628,1,30.0,80.0,5,211,0.0,0.0,0.0,85,62,0.0,0.0,0.0,2064.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,125420,2,3,3,0,1,,445.0,,42,1.0,0.0,4.0,4.0,2.1,4,2,235.89307118728,0.0,27121.406263919416,6,1,1,2,100.0,2,3,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07610224853074132,12914.95536377115,2,1,2_1,2_1_1,2_1_1,2_0_0 -21630,1,49.0,62.0,5,211,786.0,0.0,0.0,85,65,0.0,657.3345405603557,1086.3889428746813,1595.0,299.3368987290934,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,3,126566,2,1,0,1,1,,564.0,309.0,42,1.0,3.0,5.0,4.0,2.1,1,1,282.393213440482,786.0,28667.119073806894,6,1,2,3,125.0,2,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05563865681422272,13651.009082765187,3,2,3_1,3_0_1,3_1_1,3_0_0 -21631,1,48.0,300.0,2,211,700.0,0.0,0.0,85,68,0.0,517.5862524097289,967.5219593031513,1630.0,739.7406118017824,0.0,71,2,2,2,1,1,2,2,2,0,,8,,2,115663,1,3,0,1,1,,500.0,420.0,42,2.0,0.0,5.0,8.0,3.8999999999999995,2,2,299.311221460976,700.0,14035.812953304778,6,4,2,3,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,1,0,0,1,0.11613149914599077,3598.9263982832767,1,1,1_1,1_0_1,1_1_1,1_0_1 -21632,0,71.0,0.0,2,120,200.0,0.0,0.0,0,75,3733.962192545002,0.0,276.4348455151861,5492.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119370,2,1,2,0,1,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,858.440298367901,200.0,12014.781781348891,0,5,0,1,125.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.45710359954481145,12014.781781348891,2,1,2_0,2_1_0,2_0_0,2_0_1 -21633,2,49.0,0.0,1,120,3500.0,0.0,0.0,56,48,0.0,0.0,4837.609796515757,3600.0,172.03270041901916,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,,1,110238,2,1,1,0,1,,440.0,,43,4.0,1.0,5.0,5.0,2.8,2,1,813.585776729605,3500.0,54375.85360226002,1,1,1,2,130.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06620585722355214,19419.947715092865,5,3,5,5_1,5_0,5_1_0 -21634,2,40.0,0.0,1,120,540.0,0.0,0.0,0,67,0.0,0.0,746.3740828910024,5050.0,103.2196202514115,0.0,60,2,2,2,1,2,2,2,2,0,,1,,1,122383,2,2,3,0,1,,480.0,,22,1.0,1.0,4.0,2.0,1.5,3,3,900.566972391004,540.0,28158.01867152335,0,1,1,2,100.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.1793450050200849,18772.012447682235,5,3,5,5_1,5_0,5_1_0 -21635,0,78.0,0.0,2,120,0.0,0.0,2300.0,0,78,0.0,0.0,1175.1006701263077,2300.0,0.0,2629.4652817010524,50,0,0,0,0,0,0,0,0,0,,1,,2,100652,2,3,2,0,1,,180.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,962.827282350894,0.0,19578.042078271,0,5,0,1,150.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11747855024546563,19578.042078271,5,3,5,5_1,5_0,5_0_1 -21636,2,68.0,0.0,2,120,550.0,0.0,0.0,77,78,3733.962192545002,0.0,760.1958251667618,3150.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,121772,2,1,3,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,2,1,873.164372276188,550.0,33610.35699193201,5,5,0,1,128.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09372111104788745,22406.904661288005,6,3,6,6_1,6_0,6_0_1 -21637,2,44.0,0.0,7,120,574.0,1350.0,0.0,52,37,0.0,0.0,793.3680066285841,1924.0,0.0,2448.431416144056,71,0,0,0,0,0,0,0,0,3,100.0,1,,5,119544,2,1,3,0,1,,450.0,,43,3.0,0.0,4.0,5.0,2.8,2,2,754.064649423929,574.0,90674.0,1,1,1,2,117.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021218872002999756,32383.57142857143,8,4,8,8_1,8_0,8_0_0 -21638,2,70.0,0.0,2,120,456.0,1550.0,0.0,77,77,0.0,0.0,630.2714477746243,2006.0,0.0,2811.161996313546,41,0,0,0,0,0,0,0,0,0,,1,,2,101248,2,1,2,0,1,,388.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,894.543514986331,456.0,30396.87500340197,5,5,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06599362598212782,20264.583335601314,5,3,5,5_1,5_0,5_0_1 -21639,2,38.0,0.0,9,120,1250.0,0.0,0.0,42,47,0.0,0.0,1727.717784469913,1380.0,223.64251054472493,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,115742,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,853.614453568367,1250.0,68191.91051831571,1,1,1,2,160.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02023700449966635,32472.338342055096,8,4,8,8_1,8_0,8_0_0 -21640,2,37.0,0.0,7,120,500.0,759.0,0.0,56,62,0.0,99.37656046266795,691.0871137879653,1355.0,0.0,1376.5625517432138,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,108643,2,2,3,0,1,,164.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,856.673653962609,500.0,50238.710150456,1,1,1,2,125.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026971233854173726,19322.580827098463,5,3,5,5_1,5_0,5_0_0 -21641,2,72.0,0.0,6,120,1600.0,0.0,0.0,0,75,0.0,0.0,2211.478764121489,1640.0,68.81308016760767,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,108799,2,1,2,0,1,,89.0,,11,0.0,1.0,7.0,1.0,1.0,2,2,924.386739918655,1600.0,53028.15692360287,0,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03092696588272399,53028.15692360287,10,5,10,10_1,10_0,10_0_0 -21642,1,53.0,30.0,6,120,550.0,0.0,0.0,85,52,2389.735803228801,0.0,760.1958251667618,2270.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,130366,1,1,4,0,1,,200.0,,42,1.0,0.0,5.0,4.0,2.5,3,2,837.335914949738,550.0,36638.0,6,1,1,2,106.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06195753043288389,14655.2,3,2,3_1,3_1_1,3_0_1,3_0_0 -21643,2,54.0,0.0,7,120,710.0,0.0,0.0,55,53,0.0,362.31037668681023,981.3437015789107,1190.0,223.64251054472493,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,127992,2,1,2,0,1,,629.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,922.373466894295,710.0,40210.98184054966,4,1,0,1,138.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029593905583274693,20105.49092027483,5,3,5,5_1,5_0,5_0_0 -21644,2,66.0,0.0,2,120,500.0,1300.0,0.0,77,75,0.0,155.27587572291867,691.0871137879653,1950.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,1,,2,121525,2,2,2,0,1,,268.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,801.057074892807,500.0,36267.9417643431,5,5,0,1,92.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05376649197989907,24178.6278428954,7,4,7,7_1,7_0,7_0_1 -21645,2,70.0,0.0,2,120,548.0,1888.0,0.0,77,78,0.0,155.27587572291867,757.43147671161,2586.0,0.0,3424.1766767999834,41,0,0,0,0,0,0,0,0,0,,1,,2,110015,2,1,1,0,1,,286.0,,41,0.0,6.0,5.0,2.0,1.5,1,1,856.855598893201,548.0,28214.536513831,5,5,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09165488147332568,18809.691009220667,5,3,5,5_1,5_0,5_0_1 -21646,0,75.0,0.0,2,111,228.0,240.0,0.0,0,77,0.0,0.0,315.13572388731217,468.0,0.0,435.27669620338776,70,0,0,0,0,0,0,0,0,0,,2,,2,132922,2,1,0,1,1,14.0,260.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,417.332875943113,228.0,16300.0,0,5,5,0,70.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028711656441717793,16300.0,4,2,4_0,4_0_0,4_2_0,4_0_1 -21647,0,74.0,0.0,2,111,120.0,0.0,0.0,0,77,0.0,0.0,165.86090730911167,240.0,206.439240502823,0.0,60,2,1,2,2,1,2,2,2,0,,2,,2,127764,2,3,0,1,1,,216.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,362.267854472797,120.0,17135.183014222377,0,5,5,0,59.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014006270011869586,17135.183014222377,4,2,4_0,4_0_0,4_2_0,4_0_1 -21648,1,24.0,105.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1196.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,2.0,2,2008.0,6,121795,2,1,0,0,1,,0.0,408.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1341.69307394813,0.0,15020.572762524844,0,1,2,3,63.0,7,5,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07962412744898295,15020.572762524844,3,2,3_1,3_0_1,3_2_1,3_0_0 -21649,2,53.0,0.0,2,111,210.0,816.0,0.0,0,47,0.0,0.0,290.25658779094545,1026.0,0.0,1479.9407670915184,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,124397,2,2,0,0,1,,279.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1510.11464615419,210.0,54303.82993850442,0,1,2,3,67.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018893694996501696,54303.82993850442,10,5,10,10_0,10_2,10_0_1 -21650,0,84.0,0.0,2,111,460.0,0.0,0.0,0,77,5556.135742506963,0.0,635.800144684928,4180.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,118481,2,1,2,0,1,,170.0,,11,0.0,7.0,8.0,1.0,1.0,4,4,1034.30943395531,460.0,27758.926627507164,0,5,0,1,160.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15058219131059308,27758.926627507164,7,4,7,7_1,7_2,7_0_1 -21651,2,63.0,0.0,6,111,1070.0,0.0,0.0,77,75,1374.0980868565607,0.0,1478.9264235062458,2050.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,118713,2,1,2,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,221.495334121126,1070.0,22485.070771602714,6,5,0,1,120.0,7,5,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09117160540980045,14990.047181068476,3,2,3_0,3_1_0,3_2_0,3_0_0 -21652,2,29.0,0.0,5,111,303.0,999.0,0.0,43,47,0.0,0.0,418.79879095550695,1302.0,0.0,1811.8392479466015,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,125547,2,1,0,0,1,,773.0,233.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1310.64061861786,303.0,32995.940548480554,1,1,2,3,33.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03945939950058361,21997.293698987036,6,3,6,6_0,6_2,6_0_0 -21653,2,46.0,0.0,5,111,540.0,0.0,0.0,0,53,3733.962192545002,0.0,746.3740828910024,3400.0,619.317721508469,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,3,133490,1,2,2,0,1,,600.0,,22,2.0,0.0,7.0,2.0,1.5,2,2,854.670705225471,540.0,44664.44229978351,0,1,1,2,110.0,7,5,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07612319386368963,29776.29486652234,8,4,8,8_1,8_2,8_0_0 -21654,0,77.0,0.0,5,111,1747.0,0.0,0.0,77,86,0.0,0.0,2414.658375575151,1747.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,119791,2,1,2,0,1,,360.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,722.256087198218,1747.0,28693.70004061239,6,5,5,0,80.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06088444493137299,19129.13336040826,5,3,5,5_1,5_2,5_0_0 -21655,2,49.0,0.0,2,111,596.0,1295.0,0.0,0,46,0.0,0.0,823.7758396352547,1891.0,0.0,2348.6805065974463,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,111190,2,1,0,0,1,,426.0,368.0,32,1.0,0.0,2.0,2.0,1.5,1,1,1016.24506221887,596.0,34206.90894961425,0,1,2,3,62.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055281229963963896,22804.605966409497,6,3,6,6_0,6_2,6_0_1 -21656,0,82.0,0.0,5,111,0.0,0.0,700.0,0,86,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,71,0,0,0,0,0,0,0,0,0,,2,,3,126619,2,1,0,0,1,,180.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1232.52986255603,0.0,17528.055284135487,0,5,5,0,50.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.039935976276476305,17528.055284135487,4,2,4_0,4_0_0,4_2_0,4_0_0 -21657,0,82.0,0.0,5,111,270.0,530.0,0.0,0,77,0.0,0.0,373.1870414455012,800.0,0.0,961.236037449148,33,0,0,0,0,0,0,0,0,0,,2,,3,112383,2,1,0,0,1,,121.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1376.76963504352,270.0,21953.84486949318,0,5,5,0,70.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03644008622433473,21953.84486949318,6,3,6,6_0,6_2,6_0_0 -21658,0,79.0,0.0,2,111,1188.0,0.0,0.0,0,56,0.0,0.0,1642.0229823602056,1188.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,106451,2,2,0,0,1,,360.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1393.72981767493,1188.0,15365.36314523135,0,5,5,0,60.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.07731675384246917,15365.36314523135,3,2,3_0,3_0_0,3_2_0,3_0_1 -21659,2,26.0,0.0,5,111,960.0,0.0,0.0,56,47,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,9.0,2,,3,115858,2,2,0,1,1,,350.0,377.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1109.73012722815,960.0,34449.83904462659,1,1,2,3,72.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02786660334628584,22966.559363084394,6,3,6,6_0,6_2,6_0_0 -21660,2,48.0,0.0,1,111,360.0,0.0,0.0,0,85,3584.6037048432017,0.0,497.582721927335,2908.0,254.60839662014837,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123013,2,2,2,0,1,,600.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,939.005687650263,360.0,16510.182211475443,0,5,0,1,180.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17613373146050365,16510.182211475443,4,2,4_0,4_1_0,4_2_0,4_1_0 -21661,1,34.0,202.0,5,111,180.0,440.0,0.0,0,67,0.0,0.0,248.7913609636675,620.0,0.0,798.0072763728775,50,0,0,0,0,0,0,0,0,0,,2,,3,107705,1,2,0,1,1,,259.0,188.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1294.84802070735,180.0,8039.71179148211,0,4,2,3,63.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0771171922676228,8039.71179148211,1,1,1_1,1_0_1,1_2_1,1_0_0 -21662,1,53.0,187.0,2,111,164.0,0.0,0.0,0,56,0.0,710.1283383061481,226.6765733224526,900.0,86.01635020950958,0.0,12,2,2,1,2,1,2,2,2,0,,2,,2,100786,2,1,0,1,1,,385.0,238.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1014.68710365265,164.0,19668.014640486024,0,1,2,3,80.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.045759575455439044,19668.014640486024,5,3,5,5_0,5_2,5_0_1 -21663,1,76.0,202.0,5,111,96.0,900.0,0.0,0,74,0.0,0.0,132.68872584728933,996.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,2,,3,117962,2,3,0,1,1,,300.0,238.0,11,0.0,0.0,2.0,1.0,1.0,4,4,1044.93172971454,96.0,9577.388973687795,0,5,2,3,46.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10399494086920101,9577.388973687795,1,1,1_1,1_0_1,1_2_1,1_0_0 -21664,1,63.0,118.0,5,111,390.0,576.0,0.0,86,67,0.0,0.0,539.0479487546129,1128.0,278.692974678811,1044.6640708881305,31,0,0,0,0,0,0,0,0,0,,2,,3,113564,2,1,0,1,1,,384.0,268.0,42,1.0,5.0,3.0,2.0,1.5,2,2,1130.1482051745,390.0,14345.244618199109,6,4,2,3,66.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07863232939011452,9563.49641213274,1,1,1_1,1_0_1,1_2_1,1_0_0 -21665,1,44.0,107.0,5,111,384.0,1056.0,0.0,52,64,0.0,28.98483013494482,530.7549033891573,1587.0,204.71891349863282,1915.217463294906,20,2,2,2,1,1,2,2,2,0,,2,,3,124329,1,2,0,1,1,,378.0,276.0,43,3.0,0.0,3.0,4.0,2.5,2,2,987.429620607887,384.0,19956.031508742664,4,4,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07952482933817483,7982.412603497066,1,1,1_1,1_0_1,1_2_1,1_0_0 -21666,2,64.0,0.0,5,111,250.0,700.0,0.0,0,77,0.0,0.0,345.54355689398267,950.0,0.0,1269.5570305932142,71,2,2,2,1,1,2,2,2,0,,2,,3,123327,1,1,0,1,1,,536.0,276.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1090.11566950203,250.0,16454.453537555317,0,5,2,3,92.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.057735129144929606,16454.453537555317,4,2,4_0,4_0_0,4_2_0,4_0_0 -21667,2,62.0,0.0,2,111,420.0,0.0,0.0,75,74,4480.754631054002,51.75862524097289,580.5131755818909,3470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102329,2,1,3,0,1,,381.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,916.093995718812,420.0,95287.87166542615,5,5,0,1,120.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03641596710422739,63525.24777695077,10,5,10,10_1,10_2,10_0_1 -21668,2,50.0,0.0,2,111,500.0,1600.0,0.0,64,64,0.0,0.0,691.0871137879653,2100.0,0.0,2901.844641355918,41,1,2,2,1,1,2,2,2,1,10.0,1,,2,133471,2,1,2,0,1,,528.0,,43,2.0,5.0,6.0,3.0,2.0,2,2,891.548615279894,500.0,30234.74247935002,1,1,0,1,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.0694565201418294,15117.37123967501,3,2,3_0,3_1_0,3_2_0,3_0_1 -21669,2,81.0,0.0,1,111,416.0,2397.0,0.0,86,78,0.0,0.0,574.9844786715871,2913.0,172.03270041901916,4347.326003331335,71,0,0,0,0,0,0,0,0,0,,1,,1,115116,2,1,1,0,1,,358.0,,41,0.0,6.0,8.0,2.0,1.5,2,2,929.494177781586,416.0,26996.91641246855,6,5,0,1,220.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10790121195673401,17997.944274979032,4,2,4_0,4_1_0,4_2_0,4_1_0 -21670,2,58.0,0.0,6,111,952.0,1066.0,0.0,68,78,0.0,0.0,1315.8298646522858,2122.0,178.91400843577995,1933.3539923033804,60,1,2,2,1,1,2,2,2,0,,1,,4,116726,2,2,2,0,1,,274.0,,42,2.0,4.0,6.0,3.0,2.0,2,2,971.654954223116,952.0,40576.86780717225,1,5,0,1,108.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05229580582917544,20288.433903586127,5,3,5,5_1,5_2,5_0_0 -21671,1,22.0,153.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,559.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109784,2,1,0,0,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1398.52177616338,0.0,1598.9801402847434,0,4,2,3,65.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.3495978379696788,1598.9801402847434,1,1,1_1,1_0_1,1_2_1,1_0_1 -21672,1,29.0,285.0,5,111,350.0,1266.0,0.0,0,55,0.0,0.0,483.76097965157567,1736.0,206.439240502823,2296.08457247287,50,2,2,2,1,1,2,2,2,2,2.0,2,,3,104037,2,1,0,0,1,,300.0,495.0,32,1.0,0.0,3.0,2.0,1.3,4,4,1362.65210358636,350.0,16801.904530619868,0,1,2,3,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.10332162028633753,12924.541946630667,2,1,2_1,2_0_1,2_2_1,2_0_0 -21673,2,52.0,0.0,1,111,400.0,0.0,0.0,55,21,2688.452778632401,0.0,552.8696910303722,2260.0,103.2196202514115,0.0,70,2,2,2,2,1,2,2,2,2,15.0,1,,1,109117,2,2,2,0,1,,560.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,826.688861577346,400.0,13644.888083269418,1,1,0,1,110.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.16562979382521156,9096.592055512945,1,1,1_0,1_1_0,1_2_0,1_1_0 -21674,2,85.0,0.0,2,111,480.0,0.0,0.0,0,77,5974.339508072003,0.0,663.4436292364467,4680.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110031,2,2,2,0,1,,300.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,938.716855811265,480.0,28714.021138138873,0,5,0,1,120.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16298657640060993,28714.021138138873,8,4,8,8_1,8_2,8_0_1 -21675,1,43.0,60.0,8,111,780.0,1800.0,0.0,0,43,0.0,414.0690019277831,1078.0958975092258,2980.0,0.0,3264.575221525408,41,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,119519,2,1,1,0,1,,360.0,,32,1.0,0.0,7.0,3.0,1.6,2,1,900.845114741914,780.0,29206.748884768604,0,1,1,2,186.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10203121243508476,18254.218052980377,4,2,4_1,4_1_1,4_2_1,4_0_0 -21676,0,64.0,0.0,2,111,492.0,1326.0,0.0,21,21,0.0,414.0690019277831,680.0297199673578,2278.0,103.2196202514115,2404.903746523717,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,105190,2,1,0,0,1,,480.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,1269.39638989347,492.0,27738.203645281763,1,1,5,0,85.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08212500092404092,18492.135763521175,4,2,4_0,4_0_0,4_2_0,4_0_1 -21677,1,23.0,254.0,1,111,768.0,1308.0,0.0,0,52,0.0,0.0,1061.5098067783147,2076.0,0.0,2372.2579943084634,60,0,0,0,0,0,0,0,0,0,,1,,1,113297,2,3,1,0,1,,600.0,381.0,22,3.0,1.0,4.0,3.0,2.0,1,1,802.286035125512,768.0,19873.059123599727,0,1,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10446303143810914,9936.529561799864,2,1,2_1,2_1_1,2_2_1,2_1_0 -21678,0,79.0,0.0,1,111,480.0,1790.0,0.0,86,78,0.0,0.0,663.4436292364467,2426.0,268.3710126536699,3246.4386925169333,41,0,0,0,0,0,0,0,0,0,,1,,1,100341,2,3,1,0,1,,560.0,,41,0.0,7.0,7.0,2.0,1.5,2,2,1016.78062202497,480.0,26059.26473056979,6,5,5,0,100.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.093095489265823,17372.843153713195,4,2,4_0,4_1_0,4_2_0,4_1_0 -21679,2,82.0,0.0,2,111,300.0,0.0,0.0,0,78,3883.3206802468017,103.51725048194578,414.65226827277917,3120.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,118288,2,1,1,0,2,,420.0,,11,0.0,1.0,7.0,1.0,1.0,2,2,1034.30943395531,300.0,15220.881184025193,0,5,0,1,180.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20498156199225448,15220.881184025193,3,2,3_0,3_1_0,3_2_0,3_0_1 -21680,2,65.0,0.0,5,111,492.0,0.0,0.0,75,74,2016.339583974301,0.0,680.0297199673578,1842.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,120162,2,1,2,0,1,,328.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,835.749418064927,492.0,54811.076514574495,5,5,0,1,100.0,7,5,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03360634596385284,36540.717676383,9,5,9,9_1,9_2,9_0_0 -21681,1,47.0,252.0,1,111,240.0,1380.0,0.0,0,64,0.0,0.0,331.72181461822333,1620.0,0.0,2502.8410031694793,50,0,0,0,0,0,0,0,0,0,,2,,1,115546,2,1,0,0,1,,130.0,280.0,12,1.0,0.0,3.0,1.0,1.0,4,4,1132.60523509789,240.0,7204.897959183673,0,1,2,3,45.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.22484704282800816,7204.897959183673,1,1,1_1,1_0_1,1_2_1,1_1_0 -21682,2,47.0,0.0,1,111,1025.0,0.0,0.0,46,21,1418.9056331671006,517.5862524097289,1416.7285832653288,2575.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117467,2,2,3,0,1,,423.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,766.298706681335,1025.0,23058.61549567494,1,1,1,2,165.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11167192585708312,9223.446198269976,1,1,1_0,1_1_0,1_2_0,1_1_0 -21683,1,46.0,157.0,1,111,600.0,1100.0,0.0,0,55,0.0,0.0,829.3045365455583,1700.0,0.0,1995.0181909321939,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,113049,2,1,3,0,1,,240.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,866.023712582818,600.0,14877.760132444386,0,1,1,2,90.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11426451192022904,11444.430871111066,2,1,2_1,2_1_1,2_2_1,2_1_0 -21684,2,47.0,0.0,6,111,370.0,0.0,0.0,0,52,0.0,610.7517778434801,511.40446420309434,1000.0,68.81308016760767,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,4,129547,2,1,0,1,1,590.0,0.0,420.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1249.72269095252,370.0,21570.526269653434,0,1,2,3,66.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04635955504742846,16592.712515118026,4,2,4_0,4_0_0,4_2_0,4_0_0 -21685,2,24.0,0.0,6,111,876.0,0.0,0.0,63,46,0.0,699.7766132579535,1210.784623356515,1642.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,2,2.0,2,,4,107648,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1109.4803961746,876.0,32739.75716312982,4,1,1,2,66.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05015309037933713,21826.50477541988,6,3,6,6_0,6_2,6_0_0 -21686,2,46.0,0.0,1,111,660.0,0.0,0.0,63,85,1493.5848770180007,0.0,912.2349902001142,1768.0,185.7953164525407,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,100143,2,1,3,0,1,,130.0,,42,2.0,1.0,4.0,4.0,2.5,3,2,833.163698284868,660.0,16350.346788419389,4,7,0,1,100.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0.10813226305708927,6540.138715367755,1,1,1_0,1_1_0,1_2_0,1_1_0 -21687,2,66.0,0.0,1,111,280.0,0.0,0.0,86,78,3733.962192545002,0.0,387.00878372126056,2867.0,149.6684493645467,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123918,2,3,3,0,1,,280.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,896.11679759196,280.0,22288.454541648818,6,5,0,1,90.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1286316193275153,14858.969694432546,3,2,3_0,3_1_0,3_2_0,3_1_0 -21688,0,64.0,0.0,1,111,308.0,1110.0,0.0,0,77,0.0,0.0,425.7096620933866,1418.0,0.0,2013.1547199406682,50,2,2,2,2,1,2,2,2,0,,1,,1,123852,2,3,3,0,1,,186.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,918.734799630947,308.0,32726.123301872984,0,5,5,0,80.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.043329299560478186,32726.123301872984,8,4,8,8_1,8_2,8_1_0 -21689,2,58.0,0.0,1,111,540.0,0.0,0.0,22,62,4661.777118148583,0.0,746.3740828910024,3661.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120421,2,2,2,0,1,,261.0,,43,2.0,4.0,5.0,2.0,1.5,4,2,883.943799628246,540.0,27072.960536295155,1,4,1,2,150.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1352271760264973,18048.640357530105,4,2,4_0,4_1_0,4_2_0,4_1_0 -21690,1,34.0,369.0,2,112,2300.0,0.0,0.0,65,53,0.0,0.0,3179.0007234246405,2408.0,185.7953164525407,0.0,50,2,2,2,2,1,2,2,2,2,35.0,1,,2,100169,1,3,2,0,1,,350.0,555.0,43,2.0,0.0,5.0,5.0,2.4,2,2,2165.31612187551,2300.0,35583.829729047764,1,1,2,3,110.0,8,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.06767118711885875,14826.59572043657,3,2,3_1,3_1_1,3_0_1,3_0_1 -21691,2,68.0,0.0,5,112,1100.0,0.0,0.0,75,90,5227.547069563002,0.0,1520.3916503335236,4600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,121209,1,1,1,0,1,,600.0,,41,0.0,3.0,4.0,3.0,2.0,2,2,2244.63087624006,1100.0,41370.1774772437,5,5,0,1,100.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11119120778561563,20685.08873862185,5,3,5,5_1,5_0,5_0_0 -21692,0,87.0,0.0,1,112,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1538.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,109370,2,1,1,0,1,,280.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2466.42449846875,0.0,11817.516820929646,0,6,0,1,110.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1301457847113951,11817.516820929646,2,1,2_0,2_1_0,2_0_0,2_1_0 -21693,2,68.0,0.0,7,112,600.0,1500.0,0.0,77,86,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,5,110133,2,1,1,0,1,,550.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1951.7530721694,600.0,28837.514540924676,6,5,1,2,75.0,8,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07282180983454004,19225.009693949785,5,3,5,5_1,5_0,5_0_0 -21694,2,33.0,0.0,9,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,484.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,122256,2,1,0,0,1,,168.0,680.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2984.09417682162,0.0,20164.670835563567,0,1,2,3,80.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024002375439047083,20164.670835563567,5,3,5,5_0,5_0,5_0_0 -21695,2,52.0,0.0,9,112,850.0,1398.0,0.0,52,52,0.0,0.0,1174.848093439541,2248.0,0.0,2535.4867553847334,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,124246,2,1,1,0,1,,1200.0,880.0,43,2.0,3.0,6.0,5.0,2.5999999999999996,2,2,1988.68130675688,850.0,89905.5882101334,1,1,2,3,135.0,8,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025004007478887997,34579.072388512854,9,5,9,9_1,9_0,9_0_0 -21696,2,50.0,0.0,7,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1590.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,102958,2,2,5,0,1,,545.0,650.0,32,1.0,0.0,5.0,2.0,1.5,2,2,2068.35043682335,0.0,29578.121043767136,0,1,2,3,90.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053755950137848715,19718.747362511425,5,3,5,5_1,5_0,5_0_0 -21697,1,52.0,242.0,9,112,421.0,0.0,0.0,0,52,0.0,0.0,581.8953498094668,461.0,68.81308016760767,0.0,70,1,1,2,1,1,2,2,2,0,,2,2010.0,6,102767,1,3,0,1,1,408.0,0.0,320.0,12,1.0,3.0,2.0,1.0,1.0,1,1,2962.67526864019,421.0,7102.09195428028,0,4,2,3,35.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1,1,0,0,1,0.06491045215518014,7102.09195428028,1,1,1_1,1_0_1,1_0_1,1_0_0 -21698,2,86.0,0.0,1,112,280.0,0.0,0.0,0,71,1344.2263893162005,0.0,387.00878372126056,1180.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,111579,2,1,4,0,2,,130.0,,11,0.0,4.0,5.0,1.0,1.0,3,3,2236.35485707694,280.0,11991.39082332172,0,5,0,1,100.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09840393140260686,11991.39082332172,2,1,2_0,2_1_0,2_0_0,2_1_0 -21699,2,67.0,0.0,7,112,400.0,2000.0,0.0,0,86,0.0,0.0,552.8696910303722,2400.0,0.0,3627.3058016948976,70,1,2,2,1,1,2,1,2,0,,1,,5,131042,1,3,1,0,2,,200.0,750.0,11,0.0,10.0,7.0,1.0,1.0,1,1,2573.95133763454,400.0,21310.533058776567,0,5,2,3,100.0,8,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.11262036446392784,21310.533058776567,6,3,6,6_1,6_0,6_0_0 -21700,0,75.0,0.0,1,112,1100.0,0.0,0.0,0,72,2404.671651998981,517.5862524097289,1520.3916503335236,3280.0,120.42289029331342,0.0,60,2,2,2,2,1,2,2,2,0,,1,,1,118523,2,1,2,0,1,,200.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1904.79375177268,1100.0,15840.069084553397,0,5,0,1,110.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.20706980395675956,15840.069084553397,3,2,3_0,3_1_0,3_0_0,3_1_0 -21701,0,75.0,0.0,1,112,400.0,0.0,0.0,78,72,2987.1697540360015,51.75862524097289,552.8696910303722,2500.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123334,2,1,2,0,1,,200.0,,41,1.0,2.0,5.0,3.0,2.0,2,2,2267.71353693485,400.0,52795.58941310755,5,5,0,1,110.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047352440379789106,26397.794706553774,7,4,7,7_1,7_0,7_1_0 -21702,2,59.0,0.0,7,112,1100.0,0.0,0.0,52,63,0.0,414.0690019277831,1520.3916503335236,1500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,127699,2,1,2,0,1,,180.0,,43,2.0,1.0,8.0,3.0,2.0,1,1,2162.72653248932,1100.0,68279.15909002745,1,1,0,1,234.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02196863611079656,34139.57954501372,9,5,9,9_1,9_0,9_0_0 -21703,2,50.0,0.0,1,112,1200.0,0.0,0.0,52,48,0.0,931.655254337512,1658.6090730911167,2230.0,223.64251054472493,0.0,50,2,2,2,1,1,2,2,2,2,30.0,1,,1,133517,1,3,4,0,1,,506.0,,43,2.0,0.0,5.0,5.0,2.8,4,4,1705.84921493954,1200.0,56137.64245179911,1,1,0,1,85.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03972379142773447,20049.158018499682,5,3,5,5_1,5_0,5_1_0 -21704,2,66.0,0.0,1,112,724.0,0.0,0.0,21,21,0.0,248.44140115666985,1000.6941407649738,2764.0,3096.588607542345,0.0,31,2,2,2,1,1,2,2,2,2,35.0,1,,1,100082,2,2,1,0,1,,200.0,,43,3.0,0.0,7.0,3.0,2.0,1,1,2093.95312956638,724.0,97833.93410189821,1,1,0,1,140.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.028251955984118723,48916.967050949104,10,5,10,10_1,10_0,10_1_0 -21705,2,35.0,0.0,2,112,2340.0,36.0,0.0,62,62,0.0,0.0,3234.2876925276773,2376.0,0.0,65.29150443050816,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,131642,2,1,1,0,1,,291.0,,43,2.0,0.0,2.0,2.0,1.5,4,3,2067.08665185859,2340.0,42001.599159730125,1,1,1,2,88.0,8,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056569274683189626,28001.06610648675,7,4,7,7_1,7_0,7_0_1 -21706,2,69.0,0.0,2,112,687.0,0.0,0.0,78,75,2240.377315527001,310.55175144583734,949.5536943446643,2487.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126962,2,1,1,0,1,,234.0,,41,0.0,2.0,6.0,2.0,1.5,4,4,2082.08388068048,687.0,23407.159671129855,6,5,0,1,100.0,8,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10624954223162068,15604.77311408657,3,2,3_0,3_1_0,3_0_0,3_0_1 -21707,2,82.0,0.0,1,112,500.0,0.0,0.0,0,86,0.0,517.5862524097289,691.0871137879653,4000.0,5160.981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,131194,2,1,1,0,1,,200.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,2035.46906907633,500.0,17192.40736230852,0,6,0,1,120.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23266084357501507,11461.60490820568,2,1,2_0,2_1_0,2_0_0,2_1_0 -21708,2,48.0,0.0,9,112,1300.0,0.0,0.0,55,53,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,4,40.0,1,2008.0,6,130900,2,1,1,0,1,,250.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1779.57441764051,1300.0,61230.859542837,1,1,1,2,111.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02123112446413597,40820.573028558,9,5,9,9_1,9_0,9_0_0 -21709,2,64.0,0.0,1,112,635.0,0.0,0.0,75,38,2987.1697540360015,0.0,877.6806345107159,2700.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,,1,110093,2,1,2,0,1,,306.0,,42,2.0,1.0,4.0,3.0,2.0,2,2,2212.66764258124,635.0,40839.30951186284,6,1,0,1,140.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06611277301874349,20419.65475593142,5,3,5,5_1,5_0,5_1_0 -21710,1,47.0,220.0,8,112,960.0,0.0,0.0,0,55,0.0,0.0,1326.8872584728933,1060.0,172.03270041901916,0.0,70,2,2,2,1,1,2,2,2,0,,2,2002.0,6,128949,2,1,0,0,1,,250.0,750.0,32,1.0,0.0,4.0,3.0,1.6,2,2,3004.36665881974,960.0,28855.725921523725,0,1,2,3,100.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.03673447699367484,18034.828700952326,4,2,4_1,4_0_1,4_0_1,4_0_0 -21711,2,53.0,0.0,5,112,790.0,0.0,0.0,48,46,0.0,310.55175144583734,1091.917639784985,1090.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,131921,2,1,3,0,1,,190.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1810.65146187242,790.0,61346.23169653509,1,1,0,1,90.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01776800253016298,40897.48779769006,9,5,9,9_1,9_0,9_0_0 -21712,2,60.0,0.0,5,112,1900.0,0.0,0.0,52,78,0.0,31.055175144583732,2626.131032394268,2050.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131876,2,1,2,0,1,,429.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,2007.15078170091,1900.0,34280.36232959689,1,5,0,1,88.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05980100152646509,22853.574886397924,6,3,6,6_1,6_0,6_0_0 -21713,2,33.0,0.0,1,111,600.0,1600.0,0.0,37,37,0.0,0.0,829.3045365455583,2200.0,0.0,2901.844641355918,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,130313,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,1272.94989519331,600.0,66087.425666447,1,1,1,2,140.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033289237367237226,44058.28377763133,10,5,10,10_1,10_3,10_1_0 -21714,2,65.0,0.0,1,111,280.0,1300.0,0.0,0,77,0.0,0.0,387.00878372126056,1580.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,1,108192,1,2,1,0,2,,156.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1392.14970264508,280.0,24877.90363113997,0,5,0,1,62.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06351017446752608,24877.90363113997,7,4,7,7_1,7_3,7_1_0 -21715,1,95.0,135.0,7,111,298.0,0.0,0.0,0,86,0.0,0.0,411.88791981762733,298.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,123087,1,3,0,1,2,,0.0,738.0,11,0.0,5.0,3.0,1.0,1.0,1,1,2159.58863511884,298.0,20384.633622008154,0,6,2,3,75.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014618854845557095,20384.633622008154,5,3,5,5_0,5_3,5_0_0 -21716,2,40.0,0.0,6,111,1200.0,0.0,0.0,46,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,100578,1,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,3,3,1695.0437914261,1200.0,58668.07725146561,1,1,1,2,54.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020454053656071065,39112.051500977075,9,5,9,9_0,9_3,9_0_0 -21717,1,85.0,81.0,1,111,170.0,300.0,0.0,0,77,0.0,0.0,234.9696186879082,470.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,0,,2,,1,113744,2,1,0,0,1,,0.0,486.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1973.27895252516,170.0,16459.937418602683,0,5,2,3,176.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.028554179037692796,16459.937418602683,4,2,4_1,4_0_1,4_3_1,4_1_0 -21718,1,84.0,172.0,2,111,275.0,0.0,0.0,0,86,0.0,0.0,380.0979125833809,275.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,103924,2,1,0,1,1,708.0,0.0,215.0,11,0.0,6.0,2.0,1.0,1.0,2,2,1857.85016043618,275.0,12512.926310231964,0,6,2,3,55.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021977273195889387,12512.926310231964,2,1,2_1,2_0_1,2_3_1,2_0_1 -21719,1,48.0,200.0,2,111,700.0,0.0,0.0,72,52,0.0,0.0,967.5219593031513,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,5.0,2,,2,121100,2,1,0,1,1,1045.0,0.0,250.0,42,1.0,3.0,5.0,7.0,3.8,1,1,1462.90322759612,700.0,22319.560051363525,5,1,2,3,80.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0313626253559257,5873.568434569349,1,1,1_1,1_0_1,1_3_1,1_0_1 -21720,2,57.0,0.0,5,111,250.0,400.0,0.0,78,52,0.0,0.0,345.54355689398267,650.0,0.0,725.4611603389795,70,0,0,0,0,0,0,0,0,1,2.0,2,,3,124489,2,1,0,0,1,,0.0,375.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1494.68230201313,250.0,29162.456854329357,5,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022288931390343516,19441.63790288624,5,3,5,5_0,5_3,5_0_0 -21721,2,57.0,0.0,7,111,1200.0,0.0,0.0,0,43,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,3.0,2,,5,112830,2,1,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,2010.69613970359,1200.0,55176.03755781989,0,1,1,2,85.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021748571537825636,55176.03755781989,10,5,10,10_0,10_3,10_0_0 -21722,2,64.0,0.0,1,111,0.0,660.0,0.0,0,74,0.0,0.0,0.0,733.0,0.0,1197.0109145593162,30,0,0,0,0,0,0,0,0,0,,2,,1,127260,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,2110.1620447129,0.0,34707.965340486546,0,5,0,1,91.0,8,7,4,0,1,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02111907145259713,34707.965340486546,9,5,9,9_0,9_3,9_1_0 -21723,2,35.0,0.0,1,111,600.0,0.0,0.0,0,63,0.0,0.0,829.3045365455583,600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,101286,2,3,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,3,3,1898.34968519281,600.0,70744.21830557904,0,4,1,2,31.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008481258459996055,70744.21830557904,10,5,10,10_0,10_3,10_1_0 -21724,2,79.0,0.0,2,111,368.0,256.0,0.0,77,78,0.0,0.0,508.64011574794245,624.0,0.0,464.2951426169469,60,0,0,0,0,0,0,0,0,0,,2,,2,105974,2,1,0,3,1,920.0,0.0,486.0,41,0.0,3.0,4.0,2.0,1.5,1,1,1662.64226016584,368.0,20702.694653066555,5,5,2,3,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030141003886543383,13801.796435377704,3,2,3_0,3_0_0,3_3_0,3_0_1 -21725,1,25.0,270.0,1,111,350.0,0.0,0.0,0,68,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,110807,2,2,0,1,1,672.0,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2581.74863657632,350.0,5160.972468784765,0,4,2,3,30.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06781667643393052,5160.972468784765,1,1,1_1,1_0_1,1_3_1,1_1_0 -21726,2,64.0,0.0,2,111,1380.0,0.0,0.0,54,75,0.0,745.3242034700096,1907.4004340547842,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128799,2,1,2,0,1,,250.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1348.94990773506,1380.0,45109.06540705941,1,5,0,1,110.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04655383526680997,30072.71027137294,8,4,8,8_1,8_3,8_0_1 -21727,2,48.0,0.0,2,111,350.0,70.0,0.0,0,43,0.0,0.0,483.76097965157567,420.0,0.0,126.95570305932142,50,2,2,2,1,1,2,2,2,2,15.0,2,,2,120482,1,2,0,1,1,737.0,0.0,331.0,32,1.0,0.0,4.0,2.0,1.5,5,5,1553.44041055987,350.0,29821.70284443968,0,1,2,3,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.014083702804996259,19881.135229626452,5,3,5,5_0,5_3,5_0_1 -21728,2,30.0,0.0,1,111,550.0,700.0,0.0,0,35,0.0,0.0,760.1958251667618,1250.0,0.0,1269.5570305932142,60,0,0,0,0,0,0,0,0,0,,2,,1,132084,1,1,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2052.03941895897,550.0,19042.891965938332,0,1,2,3,59.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06564129031640004,19042.891965938332,5,3,5,5_0,5_3,5_1_0 -21729,1,32.0,340.0,1,111,330.0,1300.0,0.0,0,54,0.0,0.0,456.1174951000571,1630.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,127626,2,1,0,0,1,,0.0,600.0,32,1.0,0.0,3.0,4.0,1.9,1,1,1957.21598892392,330.0,35175.674448325386,0,1,2,3,74.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04633884141708617,18513.512867539677,4,2,4_1,4_0_1,4_3_1,4_1_0 -21730,2,62.0,0.0,6,111,450.0,990.0,0.0,56,78,0.0,0.0,621.9784024091688,1440.0,0.0,1795.5163718389745,20,0,0,0,0,0,0,0,0,0,,2,,4,121689,1,1,0,1,1,796.0,0.0,574.0,42,1.0,4.0,3.0,2.0,1.5,3,2,1454.89538789733,450.0,28559.421449926354,1,5,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05042118946718766,19039.614299950903,5,3,5,5_0,5_3,5_0_0 -21731,2,45.0,0.0,1,111,550.0,1400.0,0.0,55,38,0.0,0.0,760.1958251667618,1950.0,0.0,2539.1140611864284,70,0,0,0,0,0,0,0,0,2,40.0,2,,1,101859,1,3,0,0,1,,0.0,665.0,43,2.0,0.0,5.0,4.0,2.3,2,2,1900.41634988446,550.0,63147.911381527985,1,1,2,3,99.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030879881176409163,27455.613644142606,7,4,7,7_0,7_3,7_1_0 -21732,2,26.0,0.0,1,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1823.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,105731,2,1,0,0,1,,0.0,550.0,43,2.0,0.0,4.0,2.0,1.5,2,2,2203.26993869124,0.0,51607.16050983034,1,1,2,3,84.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03532455539096648,34404.773673220225,9,5,9,9_0,9_3,9_1_0 -21733,2,58.0,0.0,2,111,190.0,450.0,0.0,0,54,0.0,0.0,262.6131032394268,640.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,0,,2,,2,101368,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1826.3395203933,190.0,28887.25367628039,0,4,0,1,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02215510021035715,28887.25367628039,8,4,8,8_0,8_3,8_0_1 -21734,1,59.0,208.0,1,111,380.0,1300.0,0.0,85,78,0.0,0.0,525.2262064788536,1680.0,0.0,2357.7487711016834,41,0,0,0,0,0,0,0,0,0,,2,,1,100284,2,1,0,0,2,,0.0,195.0,41,0.0,2.0,2.0,2.0,1.5,3,2,2333.63803942761,380.0,9329.973190724144,7,7,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.18006482608870253,6219.982127149429,1,1,1_1,1_0_1,1_3_1,1_1_0 -21735,0,31.0,0.0,5,111,290.0,800.0,0.0,55,53,0.0,0.0,400.8305259970199,1090.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,0,,2,,3,128991,2,1,0,0,1,,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,1741.28342276253,290.0,48555.61554331875,1,1,5,0,52.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02244848485192325,32370.4103622125,8,4,8,8_0,8_3,8_0_0 -21736,2,85.0,0.0,2,111,275.0,88.0,0.0,74,74,0.0,0.0,380.0979125833809,363.0,0.0,159.6014552745755,31,0,0,0,0,0,0,0,0,0,,2,,2,108848,1,2,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1926.01695554964,275.0,76327.94232134715,5,5,0,1,108.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004755794391413554,50885.294880898095,10,5,10,10_0,10_3,10_0_1 -21737,2,84.0,0.0,9,111,321.0,1072.0,0.0,77,75,0.0,0.0,443.6779270518737,1393.0,0.0,1944.2359097084652,43,0,0,0,0,0,0,0,0,0,,2,2005.0,6,101232,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,1579.99181972502,321.0,29672.774456948682,5,5,0,1,92.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04694539103584874,19781.849637965788,5,3,5,5_0,5_3,5_0_0 -21738,2,24.0,0.0,7,111,0.0,0.0,0.0,63,46,0.0,0.0,0.0,472.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,2,,5,107022,2,1,0,0,1,,0.0,530.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1851.36240327457,0.0,20509.47895329329,4,1,2,3,52.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023013748963340148,13672.985968862193,3,2,3_0,3_0_0,3_3_0,3_0_0 -21739,2,41.0,0.0,9,111,290.0,300.0,0.0,0,38,0.0,0.0,400.8305259970199,590.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,110957,2,1,0,0,1,,0.0,390.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1978.60476950795,290.0,35732.12833416268,0,1,2,3,25.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016511750838975756,35732.12833416268,9,5,9,9_0,9_3,9_0_0 -21740,2,81.0,0.0,2,111,429.0,2825.0,0.0,78,74,0.0,0.0,592.9527436300742,3254.0,0.0,5123.569444894043,60,0,0,0,0,0,0,0,0,0,,1,,2,107914,2,1,1,0,1,,329.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1249.1068463947,429.0,44448.53205435147,5,5,0,1,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07320826694616199,29632.35470290098,8,4,8,8_1,8_3,8_0_1 -21741,1,66.0,333.0,2,111,120.0,65.0,0.0,0,78,0.0,0.0,165.86090730911167,185.0,0.0,117.88743855508417,71,0,0,0,0,0,0,0,0,0,,2,,2,121429,2,1,0,1,1,717.0,0.0,309.0,21,0.0,3.0,3.0,2.0,1.5,3,2,480.781899678326,120.0,13669.855305466237,0,5,2,3,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013533427813681618,9113.236870310824,1,1,1_1,1_0_1,1_3_1,1_0_1 -21742,1,47.0,56.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1952.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,20.0,2,,2,117855,1,1,0,1,1,620.0,0.0,400.0,32,1.0,3.0,3.0,2.0,1.5,2,2,2015.72760787361,0.0,15676.85572218679,0,1,2,3,65.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12451476460534219,10451.237148124526,2,1,2_1,2_0_1,2_3_1,2_0_1 -21743,2,71.0,0.0,5,111,850.0,1267.0,0.0,86,74,0.0,0.0,1174.848093439541,2117.0,0.0,2297.8982253737177,71,0,0,0,0,0,0,0,0,0,,1,,3,122284,2,1,1,0,1,,280.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1172.49675120382,850.0,52067.75288659579,6,5,0,1,106.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040658562788581494,34711.83525773053,9,5,9,9_1,9_3,9_0_0 -21745,1,45.0,210.0,7,111,850.0,1000.0,0.0,64,52,0.0,0.0,1174.848093439541,1850.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,5,125206,2,1,2,0,1,,550.0,600.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,1086.03858492823,850.0,30754.228642245216,4,1,2,3,103.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06015432939386967,11828.549477786622,2,1,2_1,2_1_1,2_3_1,2_0_0 -21746,2,52.0,0.0,6,111,680.0,1050.0,0.0,65,67,0.0,0.0,939.8784747516328,1730.0,0.0,1904.3355458898213,41,1,2,2,2,1,2,2,2,2,10.0,1,,4,114767,1,2,3,0,1,,620.0,710.0,43,3.0,0.0,6.0,5.0,2.8,1,1,1093.0179044157,680.0,49064.1016243825,1,1,2,3,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03525999544930571,17522.893437279465,4,2,4_0,4_1_0,4_3_0,4_0_0 -21747,2,88.0,0.0,2,111,270.0,2008.0,0.0,0,77,0.0,0.0,373.1870414455012,2278.0,0.0,3641.8150249016776,12,0,0,0,0,0,0,0,0,0,,1,,2,129606,2,2,5,0,1,,100.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,2548.44009354756,270.0,27943.057470734355,0,5,0,1,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08152293292836052,27943.057470734355,7,4,7,7_1,7_3,7_0_1 -21748,2,41.0,0.0,1,111,844.0,1200.0,0.0,0,37,0.0,0.0,1166.5550480740853,2044.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,2,,1,119330,2,2,0,0,1,,0.0,463.0,12,1.0,0.0,2.0,1.0,1.0,2,2,4467.14253434587,844.0,28044.75932620091,0,4,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0728834922855047,28044.75932620091,8,4,8,8_0,8_3,8_1_0 -21749,2,48.0,0.0,2,111,500.0,2600.0,0.0,0,22,0.0,0.0,691.0871137879653,3100.0,0.0,4715.497542203367,70,0,0,0,0,0,0,0,0,0,,1,,2,110506,2,2,2,0,1,,500.0,,32,1.0,0.0,5.0,3.0,2.0,2,2,2861.20713400471,500.0,12873.52751734406,0,4,0,1,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.24080423922840702,6436.76375867203,1,1,1_0,1_1_0,1_3_0,1_0_1 -21750,2,50.0,0.0,1,111,300.0,600.0,0.0,0,35,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,43,0,0,0,0,0,0,0,0,3,30.0,2,,1,119590,2,1,0,0,1,,80.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,4125.71339813427,300.0,28702.459988239632,0,1,1,2,63.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03135619735621129,28702.459988239632,8,4,8,8_0,8_3,8_1_0 -21751,1,47.0,20.0,2,111,564.0,1344.0,0.0,0,68,0.0,0.0,779.5462643528249,1908.0,0.0,2437.549498738971,41,0,0,0,0,0,0,0,0,0,,2,,2,117347,2,2,0,0,1,,0.0,254.0,12,1.0,0.0,2.0,1.0,1.0,2,2,3336.90351022141,564.0,13909.058306408038,0,1,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13717679212840497,13909.058306408038,3,2,3_1,3_0_1,3_3_1,3_0_1 -21752,2,53.0,0.0,6,111,2000.0,0.0,0.0,44,48,0.0,0.0,2764.3484551518613,2200.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,133105,2,1,2,0,1,,700.0,,43,3.0,2.0,7.0,6.0,3.3,2,2,2424.42013389424,2000.0,52278.94762431578,1,1,1,2,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042081948852710736,15842.105340701752,3,2,3_0,3_1_0,3_3_0,3_0_0 -21753,1,40.0,70.0,2,111,250.0,729.0,0.0,0,52,0.0,0.0,345.54355689398267,979.0,0.0,1322.1529647177902,20,2,2,2,2,1,2,2,2,2,20.0,1,,2,110646,2,3,4,0,1,,0.0,500.0,32,1.0,0.0,4.0,2.0,1.5,1,1,2748.70839948733,250.0,21511.816533214165,0,1,2,3,59.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.04550987121373165,14341.211022142777,3,2,3_1,3_1_1,3_3_1,3_0_1 -21754,2,39.0,0.0,2,111,3600.0,370.0,0.0,38,38,0.0,0.0,4975.82721927335,3970.0,0.0,671.0515733135561,70,0,0,0,0,0,0,0,0,2,60.0,1,,2,131375,2,1,1,0,1,,127.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,2729.89703031055,3600.0,107573.09667302092,1,1,1,2,180.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03690513820632317,51225.28413000996,10,5,10,10_1,10_3,10_0_1 -21755,1,33.0,241.0,2,111,680.0,180.0,0.0,85,62,0.0,0.0,939.8784747516328,860.0,0.0,326.4575221525408,50,2,1,2,2,1,2,2,2,0,,2,,2,102991,1,3,0,1,1,45.0,0.0,395.0,42,1.0,0.0,3.0,3.0,1.8,2,2,3838.59872626287,680.0,4785.498569112602,6,1,2,3,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.17970959296712816,2658.610316173668,1,1,1_1,1_0_1,1_3_1,1_0_1 -21756,1,33.0,75.0,2,111,550.0,720.0,0.0,85,63,0.0,0.0,760.1958251667618,1270.0,0.0,1305.830088610163,43,2,2,2,1,1,2,2,2,0,,8,,2,105284,1,3,0,0,1,,0.0,550.0,42,1.0,1.0,3.0,4.0,2.1,3,3,4045.20870516398,550.0,24641.87615508878,6,1,2,3,72.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05153828353032012,11734.226740518467,2,1,2_1,2_0_1,2_3_1,2_0_1 -21757,2,81.0,0.0,9,111,250.0,700.0,0.0,0,78,0.0,0.0,345.54355689398267,950.0,0.0,1269.5570305932142,31,0,0,0,0,0,0,0,0,0,,2,2010.0,6,119037,2,1,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,3924.0387410808,250.0,19316.761464633943,0,5,0,1,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0491800865139483,19316.761464633943,5,3,5,5_0,5_3,5_0_0 -21758,2,39.0,0.0,2,111,480.0,1700.0,0.0,43,43,0.0,0.0,663.4436292364467,2180.0,0.0,3083.2099314406632,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,120731,2,1,1,0,1,,460.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1703.73013073901,480.0,54821.102416339025,1,1,1,2,85.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039765708895162004,26105.286864923342,7,4,7,7_1,7_3,7_0_1 -21759,2,68.0,0.0,2,111,583.0,2000.0,0.0,77,21,0.0,569.3448776507017,805.8075746767676,3133.0,0.0,3627.3058016948976,20,0,0,0,0,0,0,0,0,0,,1,,2,108714,2,1,1,0,1,,495.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1804.65644367573,583.0,56033.83576980495,5,5,0,1,160.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055912645582051786,37355.8905132033,9,5,9,9_1,9_3,9_0_1 -21760,2,64.0,0.0,2,111,560.0,1420.0,0.0,52,77,0.0,0.0,774.0175674425211,1980.0,0.0,2575.3871192033776,50,0,0,0,0,0,0,0,0,0,,1,,2,106463,2,1,2,0,1,,420.0,816.0,42,1.0,2.0,3.0,2.0,1.5,2,2,1930.38957963866,560.0,43627.163409820176,1,5,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04538456881554476,29084.775606546784,8,4,8,8_1,8_3,8_0_1 -21761,2,81.0,0.0,5,111,454.0,1454.0,0.0,77,75,0.0,0.0,627.5070993194724,1908.0,0.0,2637.0513178321908,10,0,0,0,0,0,0,0,0,0,,1,,3,103037,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1782.72315662611,454.0,38978.311415244025,5,5,0,1,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04895029904383699,25985.540943496017,7,4,7,7_1,7_3,7_0_0 -21762,2,58.0,0.0,6,111,576.0,1651.0,0.0,0,45,0.0,0.0,796.132355083736,2227.0,0.0,2994.340939299138,50,1,2,2,1,2,2,2,2,2,15.0,1,,4,125920,2,1,2,0,1,,271.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1860.93386054544,576.0,42388.54550830479,0,1,0,1,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05253777814961083,42388.54550830479,9,5,9,9_1,9_3,9_0_0 -21763,2,82.0,0.0,7,111,0.0,0.0,0.0,75,71,0.0,0.0,0.0,4348.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,110199,2,1,2,0,1,,659.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,1755.70053532259,0.0,34505.66479250389,5,5,0,1,120.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12600829533777225,23003.77652833593,6,3,6,6_1,6_3,6_0_0 -21764,1,62.0,200.0,9,111,230.4,540.0,0.0,0,56,0.0,0.0,318.4529420334944,770.0,0.0,979.3725664576224,50,2,2,2,2,1,2,2,2,0,,8,2007.0,6,114044,2,2,0,0,1,,0.0,653.0,11,0.0,1.0,3.0,1.0,1.0,2,2,2199.3570265598,230.4,13330.742420629356,0,5,2,3,73.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.057761224071693346,13330.742420629356,3,2,3_1,3_0_1,3_3_1,3_0_0 -21765,2,81.0,0.0,1,111,349.0,3847.0,0.0,90,72,0.0,0.0,482.3788054239998,4196.0,0.0,6977.122709560136,60,0,0,0,0,0,0,0,0,0,,1,,1,114159,2,1,2,0,1,,359.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,1982.99158526318,349.0,45492.13305622248,5,5,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09223572776449673,30328.088704148322,8,4,8,8_1,8_3,8_1_0 -21766,2,44.0,0.0,8,111,450.0,1380.0,0.0,43,34,0.0,621.1035028916747,621.9784024091688,2430.0,0.0,2502.8410031694793,43,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,114774,2,2,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1695.27929162743,450.0,72291.57022274923,1,1,1,2,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033613877697116476,34424.557248928206,9,5,9,9_1,9_3,9_0_0 -21767,2,87.0,0.0,5,111,400.0,0.0,0.0,75,72,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118621,2,2,0,1,1,,0.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,2872.62403961312,400.0,208204.9822101686,5,5,0,1,125.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0019211836131578616,104102.4911050843,10,5,10,10_0,10_3,10_0_0 -21768,2,46.0,0.0,7,111,400.0,930.0,0.0,55,67,0.0,0.0,552.8696910303722,1330.0,0.0,1686.6971977881274,44,0,0,0,0,0,0,0,0,2,45.0,2,,5,124244,1,2,0,0,1,,0.0,680.0,43,2.0,3.0,5.0,2.0,1.5,3,2,2831.40946945699,400.0,34842.0,1,1,2,3,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03817232076229837,23228.0,6,3,6,6_0,6_3,6_0_0 -21769,1,42.0,29.0,1,111,331.0,864.0,0.0,0,54,0.0,0.0,457.499669327633,1195.0,0.0,1566.996106332196,33,0,0,0,0,0,0,0,0,3,20.0,2,,1,120405,2,1,0,0,1,,230.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,2327.1918969618,331.0,21484.10740259299,0,1,1,2,49.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05562251098483018,14322.738268395326,3,2,3_1,3_0_1,3_3_1,3_1_0 -21770,2,69.0,0.0,1,111,222.0,763.0,0.0,0,77,0.0,0.0,306.84267852185656,985.0,0.0,1383.8171633466036,20,0,0,0,0,0,0,0,0,0,,2,,1,125635,2,2,0,0,1,,0.0,440.0,11,0.0,0.0,4.0,1.0,1.0,2,2,3410.68412744691,222.0,22631.544821571602,0,5,2,3,100.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0435233214420755,22631.544821571602,6,3,6,6_0,6_3,6_1_0 -21771,2,75.0,0.0,2,111,460.0,1793.0,0.0,75,75,0.0,0.0,635.800144684928,2253.0,0.0,3251.879651219476,10,0,0,0,0,0,0,0,0,0,,1,,2,121453,2,1,2,0,1,,215.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1995.02027056571,460.0,49299.77122983185,5,5,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04570000922512769,32866.51415322124,8,4,8,8_1,8_3,8_0_1 -21772,0,77.0,0.0,1,111,638.0,2200.0,0.0,86,74,0.0,103.51725048194578,881.8271571934437,2938.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,0,,1,,1,133320,2,2,1,0,1,,216.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1895.47178302539,638.0,30777.00786513721,6,5,0,1,135.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0954608717284708,20518.005243424806,5,3,5,5_1,5_3,5_1_0 -21773,2,57.0,0.0,2,111,600.0,0.0,0.0,34,31,2987.1697540360015,0.0,829.3045365455583,2600.0,0.0,0.0,50,1,2,2,1,2,2,2,2,2,12.0,1,,2,123473,2,1,1,0,1,,115.0,,43,2.0,0.0,6.0,4.0,2.5,3,2,1852.88550188438,600.0,259826.01576308275,1,1,1,2,150.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.010006696182305158,103930.4063052331,10,5,10,10_1,10_3,10_0_1 -21774,2,47.0,0.0,2,111,500.0,0.0,0.0,0,37,2240.377315527001,517.5862524097289,691.0871137879653,2500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,117669,2,1,1,0,1,,192.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1977.51075534849,500.0,61956.93440499028,0,1,1,2,130.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040350608434858895,61956.93440499028,10,5,10,10_1,10_3,10_0_1 -21775,2,69.0,0.0,5,111,5018.0,0.0,0.0,75,74,0.0,165.62760077111324,6935.750273976019,5178.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,131704,2,1,1,0,1,,1570.0,,41,0.0,2.0,9.0,2.0,1.5,4,3,1893.8340496583,5018.0,102377.37597149526,5,5,0,1,180.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05057758074832569,68251.58398099685,10,5,10,10_1,10_3,10_0_0 -21776,2,83.0,0.0,2,111,500.0,2544.0,0.0,0,75,0.0,0.0,691.0871137879653,3044.0,0.0,4613.93297975591,12,0,0,0,0,0,0,0,0,0,,1,,2,110573,2,2,4,0,2,,400.0,,11,0.0,0.0,8.0,1.0,1.0,2,2,1913.0621618734,500.0,29909.0,0,5,0,1,145.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10177538533551773,29909.0,8,4,8,8_1,8_3,8_0_1 -21777,2,60.0,0.0,7,111,855.0,2200.0,0.0,54,38,0.0,0.0,1181.7589645774206,3055.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,129009,2,1,1,0,1,,500.0,,43,2.0,3.0,9.0,3.0,2.0,2,2,2012.8512296723,855.0,72776.58942279094,1,1,1,2,200.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04197778467265308,36388.29471139547,9,5,9,9_1,9_3,9_0_0 -21778,2,55.0,0.0,7,120,552.0,0.0,0.0,85,46,3360.5659732905015,0.0,762.9601736219137,2872.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,111460,2,1,2,0,1,,300.0,,42,1.0,1.0,5.0,2.0,1.5,3,2,1002.74770703077,552.0,20477.605837199444,6,4,0,1,113.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14025077066298197,13651.73722479963,3,2,3_0,3_1_0,3_0_0,3_0_0 -21779,2,60.0,0.0,2,120,936.0,0.0,0.0,77,75,2987.1697540360015,0.0,1293.7150770110711,2996.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,127712,2,2,4,0,1,,360.0,,41,1.0,1.0,5.0,3.0,2.0,2,2,1223.03310144225,936.0,57314.79281798541,6,5,0,1,150.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052272717961563554,28657.396408992707,8,4,8,8_1,8_0,8_0_1 -21780,2,38.0,0.0,5,120,1392.0,0.0,0.0,43,67,0.0,0.0,1923.9865247856953,1392.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,113758,2,1,2,0,1,,349.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1111.76131807006,1392.0,49148.446338770016,1,1,1,2,108.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02832236019029439,27304.692410427786,7,4,7,7_1,7_0,7_0_0 -21781,2,52.0,0.0,6,120,500.0,0.0,0.0,0,54,2539.0942909306013,258.79312620486445,691.0871137879653,2450.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,4,109348,2,1,3,0,1,,200.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,1153.02067120466,500.0,23534.53813785712,0,1,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10410231913831298,23534.53813785712,6,3,6,6_1,6_0,6_0_0 -21782,2,55.0,0.0,6,120,1000.0,150.0,0.0,85,75,0.0,310.55175144583734,1382.1742275759307,1450.0,0.0,272.04793512711734,42,0,0,0,0,0,0,0,0,0,,1,,4,100377,2,2,1,0,1,,360.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,971.201813710302,1000.0,27569.002612678916,6,5,0,1,140.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052595301337929015,18379.335075119277,4,2,4_0,4_1_0,4_0_0,4_0_0 -21783,2,56.0,0.0,6,120,1003.0,0.0,0.0,52,34,698.2509300059153,0.0,1386.3207502586583,1531.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,118384,1,1,2,0,1,,480.0,,43,2.0,1.0,6.0,4.0,2.5,3,3,1012.6678730173,1003.0,71566.42255332315,1,1,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021392713864651722,28626.569021329262,8,4,8,8_1,8_0,8_0_0 -21784,2,41.0,0.0,2,120,486.0,80.0,0.0,11,47,0.0,1759.7932581930781,671.7366746019022,2266.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,121587,2,3,1,0,1,,292.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,1,1,1071.27955699992,486.0,92858.29516236568,1,1,1,2,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024402774098294902,35714.72890860219,9,5,9,9_1,9_0,9_0_1 -21785,2,51.0,0.0,8,120,1000.0,0.0,0.0,55,67,2539.0942909306013,0.0,1382.1742275759307,2700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,112763,2,1,1,0,1,,750.0,,43,2.0,1.0,4.0,5.0,2.4,3,3,923.979656902851,1000.0,70168.66245648393,1,1,1,2,150.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03847871550458073,29236.94269020164,8,4,8,8_1,8_0,8_0_0 -21786,2,55.0,0.0,5,120,700.0,0.0,0.0,0,78,4032.679167948602,207.03450096389156,967.5219593031513,3660.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,126151,2,1,1,0,1,,450.0,,11,0.0,5.0,5.0,1.0,1.0,4,2,1181.42165498157,700.0,23954.709253018947,0,5,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.152788329064722,23954.709253018947,6,3,6,6_1,6_0,6_0_0 -21787,2,31.0,0.0,5,120,0.0,0.0,0.0,55,65,0.0,0.0,0.0,2405.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,3,107820,2,1,1,0,1,,122.0,550.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1056.61756573289,0.0,37444.535030227424,1,1,2,3,180.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06422833126539142,24963.02335348495,7,4,7,7_1,7_0,7_0_0 -21788,1,56.0,93.0,5,120,540.0,0.0,0.0,0,77,1493.5848770180007,1242.2070057833494,746.3740828910024,2830.0,154.82943037711726,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,103363,2,1,2,0,1,,250.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1105.45152037914,540.0,14583.771119820498,0,6,0,1,104.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.19405131750551174,14583.771119820498,3,2,3_1,3_1_1,3_0_1,3_0_0 -21789,2,52.0,0.0,9,120,473.36,0.0,0.0,21,35,1493.5848770180007,0.0,654.2659923653425,1473.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,128654,1,1,1,0,1,,285.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,1199.05328737834,473.36,31399.950291351102,1,1,1,2,98.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04691090228909463,15699.975145675551,3,2,3_0,3_1_0,3_0_0,3_0_0 -21790,2,46.0,0.0,2,112,300.0,0.0,0.0,0,67,0.0,2091.0484597353047,414.65226827277917,2560.0,412.878481005646,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,102421,2,1,1,0,1,,315.0,,22,1.0,0.0,6.0,4.0,2.5,2,2,912.749680418383,300.0,82457.82234505242,0,1,0,1,170.0,5,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031046175210490547,32983.12893802097,8,4,8,8_1,8_0,8_0_1 -21791,2,49.0,0.0,7,112,2518.0,0.0,0.0,43,37,0.0,144.92415067472407,3480.314705036193,2658.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,5,125704,2,1,2,0,1,,602.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,1113.35684030473,2518.0,73492.02238505882,1,1,0,1,150.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03616719085608373,36746.01119252941,9,5,9,9_1,9_0,9_0_0 -21792,1,80.0,93.0,2,112,528.0,0.0,0.0,86,78,3733.962192545002,103.51725048194578,729.7879921600913,3278.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106795,1,1,2,0,1,,690.0,,41,0.0,3.0,7.0,2.0,1.5,2,1,1101.68803285953,528.0,26351.75963587628,6,5,0,1,105.0,5,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.12439397009136374,17567.83975725085,4,2,4_1,4_1_1,4_0_1,4_0_1 -21793,2,42.0,0.0,1,112,0.0,0.0,0.0,54,62,0.0,0.0,0.0,3623.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,122595,2,2,1,0,1,,301.0,,43,2.0,0.0,6.0,5.0,2.4,3,2,1064.43569354347,0.0,51696.67434898594,1,1,1,2,187.0,5,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07008187752160633,21540.28097874414,6,3,6,6_1,6_0,6_1_0 -21794,2,44.0,0.0,9,112,476.0,0.0,0.0,85,11,0.0,1552.7587572291866,657.9149323261429,2276.0,516.0981012570575,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,2006.0,6,130576,2,1,1,0,1,,577.0,,42,1.0,0.0,8.0,6.0,2.6999999999999997,2,2,1085.85178765064,476.0,112103.89479595327,6,1,1,2,300.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020302595232241292,41519.961035538254,9,5,9,9_1,9_0,9_0_0 -21795,2,61.0,0.0,5,112,1370.0,0.0,0.0,0,75,2987.1697540360015,0.0,1893.578691779025,3370.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,123052,2,1,1,0,1,,271.0,,11,0.0,0.0,7.0,1.0,1.0,3,2,1181.42165498157,1370.0,38048.019944731364,0,5,0,1,150.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08857228325929363,38048.019944731364,9,5,9,9_1,9_0,9_0_0 -21796,2,60.0,0.0,1,112,699.3,0.0,0.0,0,56,825.2056445524454,0.0,966.5544373438481,1308.0,96.33831223465073,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,124495,2,2,0,1,1,,403.0,406.0,12,1.0,3.0,5.0,1.0,1.0,2,2,1740.66825738975,699.3,18548.47240394664,0,1,2,3,90.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07051793654563657,18548.47240394664,4,2,4_0,4_0_0,4_0_0,4_1_0 -21797,2,73.0,0.0,2,112,517.0,0.0,0.0,0,86,2755.664098098211,0.0,714.5840756567561,2362.0,0.0,0.0,50,1,2,2,2,1,2,1,2,0,,1,,2,127273,1,2,3,0,1,,214.0,,11,0.0,2.0,4.0,1.0,1.0,4,2,1159.68394640501,517.0,16072.50733839408,0,6,0,1,100.0,5,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.14695902451745307,16072.50733839408,4,2,4_0,4_1_0,4_0_0,4_0_1 -21798,1,54.0,150.0,1,112,550.0,100.0,0.0,56,78,1493.5848770180007,517.5862524097289,760.1958251667618,2150.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,106114,1,2,2,0,1,,360.0,,42,1.0,3.0,9.0,2.0,1.5,1,1,1068.49624141227,550.0,27141.590959859277,1,5,0,1,140.0,5,0,4,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07921422156791458,18094.39397323952,4,2,4_1,4_1_1,4_0_1,4_1_0 -21799,2,44.0,0.0,1,112,563.0,0.0,0.0,54,38,3075.2912617800635,465.827627168756,778.1640901252489,3072.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,20.0,1,,1,126680,2,2,4,0,1,,323.0,,43,2.0,0.0,7.0,2.0,1.5,1,1,1101.81259340946,563.0,70491.76810075698,1,1,0,1,165.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.043579556631478666,46994.512067171316,10,5,10,10_1,10_0,10_1_0 -21800,1,60.0,84.0,8,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,560.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2000.0,6,101698,2,1,0,0,1,,396.0,460.0,11,0.0,3.0,5.0,1.0,1.0,2,2,1524.57056198155,0.0,12386.641513776805,0,6,2,3,70.0,5,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04520999492696634,12386.641513776805,2,1,2_1,2_0_1,2_0_1,2_0_0 -21801,2,63.0,0.0,6,112,398.0,0.0,0.0,0,33,0.0,0.0,550.1053425752203,2598.0,3784.719409218422,0.0,31,0,0,0,0,0,0,0,0,1,5.0,1,,4,128348,2,1,1,0,1,,220.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1168.05237641447,398.0,37453.73100616004,0,1,0,1,106.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06936558602326443,37453.73100616004,9,5,9,9_1,9_0,9_0_0 -21802,2,53.0,0.0,7,112,1900.0,0.0,0.0,42,38,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,5,104622,2,1,2,0,1,,500.0,,43,2.0,3.0,8.0,2.0,1.5,2,1,1054.5024286156,1900.0,127098.3648608741,1,1,0,1,240.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01494905148527914,84732.24324058274,10,5,10,10_1,10_0,10_0_0 -21803,2,55.0,0.0,7,112,798.0,0.0,0.0,75,46,0.0,0.0,1102.9750336055927,923.0,215.04087552377396,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,115774,2,1,2,0,1,,1085.0,,42,2.0,0.0,5.0,4.0,2.5,1,1,1070.58256922588,798.0,95070.74818829607,5,1,0,1,138.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009708559337009912,38028.29927531843,9,5,9,9_1,9_0,9_0_0 -21804,2,58.0,0.0,6,112,740.0,0.0,0.0,54,75,0.0,0.0,1022.8089284061887,2540.0,3096.588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112281,2,2,2,0,1,,340.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,1069.7627367242,740.0,62562.64181815359,1,5,0,1,125.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04059930856792842,41708.427878769064,9,5,9,9_1,9_0,9_0_0 -21805,2,40.0,0.0,2,112,39.0,0.0,0.0,55,47,0.0,0.0,53.90479487546129,39.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,119360,2,2,1,0,1,,410.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1050.54182402412,39.0,62794.316049711386,1,1,1,2,175.0,5,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.000621075321039017,29902.055261767324,8,4,8,8_1,8_0,8_0_1 -21806,2,71.0,0.0,5,112,850.0,0.0,0.0,77,72,3155.9448451390354,0.0,1174.848093439541,3188.0,387.0735759427931,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,132348,1,1,2,0,2,,320.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1075.42309725686,850.0,141541.22639372566,5,5,0,1,240.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02252347306311965,94360.8175958171,10,5,10,10_1,10_0,10_0_0 -21807,2,49.0,0.0,7,112,566.1,25.0,0.0,0,42,2109.0912048371188,289.84830134944815,782.4488302307343,2283.0,0.0,45.34132252118622,50,0,0,0,0,0,0,0,0,2,6.0,1,,5,118741,2,1,2,0,1,,317.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1049.90504552734,566.1,29619.732193014774,0,1,1,2,103.0,5,0,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07707699668325833,29619.732193014774,8,4,8,8_1,8_0,8_0_0 -21808,2,27.0,0.0,9,112,1050.0,0.0,0.0,43,53,0.0,124.22070057833493,1451.2829389547271,1170.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,55.0,1,2010.0,6,106310,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1129.45442619601,1050.0,53515.682869187825,1,1,1,2,135.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021862750081315673,29730.93492732657,8,4,8,8_1,8_0,8_0_0 -21809,2,36.0,0.0,9,112,2400.0,0.0,0.0,52,54,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,104406,2,1,1,0,1,,550.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,990.128347605017,2400.0,45513.75705467766,1,1,1,2,120.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05273130928560293,21673.217645084602,6,3,6,6_1,6_0,6_0_0 -21810,1,46.0,110.0,9,112,1500.0,0.0,0.0,85,67,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,103630,2,1,1,0,1,,626.0,,42,2.0,0.0,4.0,5.0,2.8,2,2,1040.61057974574,1500.0,51364.345925495785,5,1,1,2,107.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029203136396903733,18344.40925910564,4,2,4_1,4_1_1,4_0_1,4_0_0 -21811,2,66.0,0.0,5,112,2073.0,0.0,0.0,56,46,298.71697540360015,0.0,2865.247173764904,2323.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,113762,2,1,2,0,1,,373.0,,42,2.0,1.0,5.0,3.0,2.0,1,1,1084.97771553821,2073.0,62818.176267164155,1,5,0,1,119.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03697974277572686,31409.088133582078,8,4,8,8_1,8_0,8_0_0 -21812,2,53.0,0.0,6,112,1550.0,0.0,0.0,85,77,788.6128150655044,0.0,2142.370052742692,2161.0,142.7871413477859,0.0,33,2,2,2,2,1,2,2,2,0,,1,,4,109181,2,1,2,0,1,,491.0,,41,0.0,2.0,5.0,3.0,2.0,2,2,1116.34974322496,1550.0,42231.88548927929,5,5,0,1,121.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.051169867860827035,21115.942744639644,5,3,5,5_1,5_0,5_0_0 -21813,2,48.0,0.0,8,112,700.0,0.0,0.0,55,64,2240.377315527001,51.75862524097289,967.5219593031513,2275.0,43.00817510475479,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,109695,2,2,2,0,1,,250.0,,43,2.0,0.0,5.0,3.0,2.0,4,3,1038.72195261096,700.0,24465.17619950867,4,1,1,2,130.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09298931597499341,12232.588099754335,2,1,2_0,2_1_0,2_0_0,2_0_0 -21814,2,46.0,0.0,6,112,593.0,0.0,0.0,54,64,0.0,844.7007639326775,819.6293169525268,1409.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,113754,1,3,1,0,1,,439.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,947.969677552646,593.0,47498.44774850364,1,1,1,2,150.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02966412728812571,18999.379099401456,5,3,5,5_1,5_0,5_0_0 -21815,1,25.0,74.0,8,112,432.0,0.0,0.0,46,55,365.9282948694102,0.0,597.099266312802,677.0,0.0,0.0,33,1,2,2,1,2,2,2,2,2,30.0,2,1999.0,6,105006,2,1,0,1,1,245.0,0.0,530.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1589.94728359973,432.0,28160.48542940268,4,1,2,3,70.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02404077876062238,15644.714127445934,3,2,3_1,3_0_1,3_0_1,3_0_0 -21816,2,42.0,0.0,9,112,440.0,0.0,0.0,38,38,1308.3803522677686,0.0,608.1566601334094,1316.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,114011,2,1,0,1,1,876.0,0.0,665.0,43,2.0,0.0,5.0,4.0,2.1,1,1,1528.60825116436,440.0,115479.21525278478,1,1,2,3,106.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011395990153892777,54990.10250132608,10,5,10,10_0,10_0,10_0_0 -21817,2,58.0,0.0,2,112,460.0,0.0,0.0,0,43,1875.942605534609,672.8621281326475,635.800144684928,2391.0,43.00817510475479,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,100717,2,2,1,0,1,,200.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1176.0285808464,460.0,46665.16863699096,0,1,0,1,115.0,5,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05123735903752164,46665.16863699096,10,5,10,10_1,10_0,10_0_1 -21818,2,46.0,0.0,6,112,1475.0,0.0,0.0,0,43,0.0,82.81380038555662,2038.7069856744977,1605.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,4,117274,2,1,0,0,1,,552.0,,32,1.0,2.0,4.0,2.0,1.5,2,1,1357.7083314947,1475.0,34232.0,0,1,1,2,90.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.046885954662304274,22821.333333333332,6,3,6,6_0,6_0,6_0_0 -21819,1,63.0,67.0,7,112,510.0,0.0,0.0,77,78,3733.962192545002,113.86897553014036,704.9088560637246,3300.0,309.6588607542345,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,124298,1,1,2,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1035.01574518577,510.0,25367.822916407276,6,5,0,1,95.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1300860547187769,16911.881944271518,4,2,4_1,4_1_1,4_0_1,4_0_0 -21820,2,48.0,0.0,7,112,1270.0,0.0,0.0,85,65,2091.018827825201,222.5620885361834,1755.3612690214318,2885.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,119409,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,3.0,2.0,1,1,1146.69884528349,1270.0,23174.165249718237,6,1,0,1,150.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12449207852416938,11587.082624859118,2,1,2_0,2_1_0,2_0_0,2_0_0 -21821,2,69.0,0.0,5,112,1900.0,25.0,0.0,77,78,0.0,51.75862524097289,2626.131032394268,1975.0,0.0,45.34132252118622,50,0,0,0,0,0,0,0,0,0,,1,,3,119439,2,1,3,0,1,,480.0,,41,1.0,2.0,8.0,3.0,2.0,2,2,1146.21379242601,1900.0,58401.389047471384,5,5,0,1,130.0,5,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03381768879494677,29200.694523735692,8,4,8,8_1,8_0,8_0_0 -21822,2,60.0,0.0,5,112,2787.0,0.0,0.0,42,74,0.0,103.51725048194578,3852.1195722541183,3067.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,122232,2,1,2,0,1,,345.0,,42,1.0,0.0,9.0,2.0,1.5,1,1,1101.75447838055,2787.0,44421.14692455631,1,5,0,1,190.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06904369230287796,29614.09794970421,8,4,8,8_1,8_0,8_0_0 -21823,2,64.0,0.0,7,112,300.0,0.0,0.0,78,78,2240.377315527001,0.0,414.65226827277917,1980.0,309.6588607542345,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,111242,2,1,2,0,1,,554.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1144.1941757039,300.0,23067.321677344713,5,5,0,1,92.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08583571286234902,15378.214451563143,3,2,3_0,3_1_0,3_0_0,3_0_0 -21824,2,36.0,0.0,7,112,1300.0,0.0,0.0,37,38,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,115806,2,1,1,0,1,,780.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1004.75560338688,1300.0,80629.96223438611,1,1,1,2,172.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016123038681588164,38395.220111612434,9,5,9,9_1,9_0,9_0_0 -21825,2,32.0,0.0,5,112,1000.0,0.0,0.0,42,54,1941.6603401234008,0.0,1382.1742275759307,3405.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,10.0,1,,3,102608,1,2,3,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1126.71107590362,1000.0,32783.302943677656,4,1,1,2,120.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.1038638481866777,21855.535295785103,6,3,6,6_1,6_0,6_0_0 -21826,2,71.0,0.0,5,112,1800.0,0.0,0.0,90,74,6721.131946581003,0.0,2487.913609636675,6300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104657,2,1,1,0,1,,1200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1069.7627367242,1800.0,71122.49098039516,5,5,0,1,149.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08857957466276861,47414.99398693011,10,5,10,10_1,10_0,10_0_0 -21827,2,51.0,0.0,1,112,632.0,0.0,0.0,52,62,3435.2452171414016,0.0,873.5341118279881,2932.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,108099,2,1,1,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,988.462362540408,632.0,39912.85947401898,1,1,1,2,110.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07346003364926952,26608.57298267932,7,4,7,7_1,7_0,7_1_0 -21828,2,40.0,0.0,1,112,510.0,0.0,0.0,62,43,4480.754631054002,0.0,704.9088560637246,3510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,116448,2,2,1,0,1,,480.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,975.922135756044,510.0,53094.27290182076,1,1,1,2,120.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06610882507969389,25282.987096105124,7,4,7,7_1,7_0,7_1_0 -21829,2,74.0,0.0,2,221,500.0,0.0,0.0,77,72,1941.6603401234008,0.0,691.0871137879653,1925.0,215.04087552377396,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,123963,2,1,4,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,3012.40912212001,500.0,30811.972547226847,5,5,0,1,135.0,1,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062475714498624484,20541.315031484566,5,3,5,5_1,5_1,5_0_1 -21830,1,41.0,240.0,1,221,180.0,890.0,0.0,0,55,0.0,0.0,248.7913609636675,1100.0,51.60981012570575,1614.1510817542296,20,2,1,2,2,1,2,2,1,2,5.0,2,,1,107118,1,2,0,0,1,,220.0,234.0,32,1.0,0.0,3.0,2.0,1.3,4,4,2999.16616169308,180.0,10880.439705976982,0,1,2,3,101.0,1,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.10109885535193343,8369.569004597677,1,1,1_1,1_0_1,1_1_1,1_1_0 -21831,1,49.0,96.0,1,221,360.0,0.0,0.0,0,22,0.0,0.0,497.582721927335,400.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,132869,2,1,0,1,1,,168.0,223.0,12,1.0,1.0,3.0,1.0,1.0,1,1,3030.2111165545,360.0,7899.588593398569,0,4,2,3,58.0,1,1,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.050635548328968306,7899.588593398569,1,1,1_1,1_0_1,1_1_1,1_1_0 -21832,2,76.0,0.0,5,221,1216.0,0.0,0.0,0,77,0.0,0.0,1680.7238607323316,1376.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128928,2,1,2,0,1,,261.0,308.0,21,1.0,5.0,5.0,2.0,1.5,2,2,2595.76804012689,1216.0,30884.004519944163,0,5,2,3,137.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044553807752210746,20589.336346629443,5,3,5,5_1,5_1,5_0_0 -21833,2,80.0,0.0,5,221,302.0,955.0,0.0,77,78,0.0,0.0,417.416616727931,1257.0,0.0,1732.0385203093138,50,0,0,0,0,0,0,0,0,0,,1,,3,125448,2,1,1,0,1,,350.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2474.84555611949,302.0,22770.89695975711,5,5,0,1,58.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05520204154546436,15180.597973171405,3,2,3_0,3_1_0,3_1_0,3_0_0 -21834,0,93.0,0.0,2,221,500.0,0.0,0.0,78,78,3499.4693668531754,0.0,691.0871137879653,2883.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132462,2,1,4,0,1,,180.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2807.01139337179,500.0,28518.673478004468,5,5,0,1,100.0,1,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10109165849609256,19012.448985336312,5,3,5,5_1,5_1,5_0_1 -21835,2,79.0,0.0,2,221,610.0,744.0,0.0,0,86,0.0,0.0,843.1262788213177,1354.0,0.0,1349.357758230502,71,0,0,0,0,0,0,0,0,0,,2,,2,118751,2,2,0,0,1,,265.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,3361.39310747995,610.0,17905.340114363415,0,5,0,1,63.0,1,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07561989838516611,17905.340114363415,4,2,4_0,4_0_0,4_1_0,4_0_1 -21836,2,52.0,0.0,7,221,0.0,0.0,2000.0,52,48,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,70,0,0,0,0,0,0,0,0,2,45.0,1,,5,105692,2,2,3,0,1,,331.0,425.0,43,2.0,0.0,4.0,4.0,2.5,1,1,2187.76034270145,0.0,41650.337456562615,1,1,2,3,181.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04801881862507865,16660.134982625044,4,2,4_0,4_1_0,4_1_0,4_0_0 -21837,2,92.0,0.0,1,221,313.0,0.0,0.0,72,72,4480.754631054002,0.0,432.6205332312663,3429.0,199.55793248606224,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,101566,2,1,2,0,1,,631.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2495.25588878677,313.0,19155.15040214949,5,5,0,1,100.0,1,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17901190687676435,12770.10026809966,2,1,2_0,2_1_0,2_1_0,2_1_0 -21838,1,26.0,302.0,1,221,0.0,0.0,0.0,52,21,0.0,0.0,0.0,1566.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101433,2,1,1,0,1,,270.0,500.0,43,2.0,0.0,5.0,4.0,2.1,1,1,3088.87342140506,0.0,15513.434048905721,4,1,2,3,130.0,1,1,4,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10094476793875704,7387.349547097962,1,1,1_1,1_1_1,1_1_1,1_1_0 -21839,2,71.0,0.0,1,221,600.0,0.0,0.0,0,77,4480.754631054002,0.0,829.3045365455583,3690.0,154.82943037711726,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,108129,2,3,2,0,1,,191.0,,21,1.0,5.0,5.0,2.0,1.5,2,2,2784.0256083117,600.0,34035.34674534038,0,5,0,1,90.0,1,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.10841670066150216,22690.231163560253,6,3,6,6_1,6_1,6_1_0 -21840,2,56.0,0.0,2,221,1011.0,0.0,0.0,0,42,0.0,0.0,1397.378144079266,1071.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,127603,2,2,0,0,1,,100.0,,22,2.0,2.0,7.0,2.0,1.5,2,2,3319.8335720002,1011.0,27633.350448355835,0,1,0,1,100.0,1,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03875751519894772,18422.233632237225,4,2,4_0,4_0_0,4_1_0,4_0_1 -21841,2,71.0,0.0,2,221,1180.0,0.0,0.0,0,75,0.0,0.0,1630.965588539598,1240.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,113333,2,1,1,0,1,,179.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2920.16713085388,1180.0,20886.41996768139,0,5,0,1,100.0,1,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05936871909684448,20886.41996768139,5,3,5,5_1,5_1,5_0_1 -21842,1,32.0,280.0,6,221,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1781.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,112965,2,1,1,0,1,,136.0,650.0,42,1.0,0.0,6.0,3.0,1.8,2,1,2999.65565908269,0.0,21480.312230619544,6,4,2,3,100.0,1,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08291313370488337,11933.506794788635,2,1,2_1,2_1_1,2_1_1,2_0_0 -21843,2,64.0,0.0,2,221,1066.0,0.0,0.0,77,75,0.0,0.0,1473.397726595942,1146.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122676,2,2,1,0,1,,338.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,2763.35080007927,1066.0,30260.980974497048,5,5,0,1,77.0,1,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03787055022987559,20173.987316331364,5,3,5,5_1,5_1,5_0_1 -21844,2,62.0,0.0,1,112,1120.0,0.0,0.0,77,31,3733.962192545002,31.055175144583732,1548.0351348850422,3650.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,105670,2,1,3,0,1,,107.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,2476.41173367874,1120.0,84169.35119688243,5,4,0,1,240.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043364953490757016,56112.90079792162,10,5,10,10_1,10_0,10_1_0 -21845,2,39.0,0.0,9,112,1200.0,0.0,0.0,62,42,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,109002,2,1,1,0,1,,160.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,2164.59595398221,1200.0,58639.06907095834,1,1,1,2,155.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020464172078651116,27923.366224265876,7,4,7,7_1,7_0,7_0_0 -21846,2,61.0,0.0,5,112,821.0,0.0,0.0,55,75,0.0,434.77245202417225,1134.765040839839,1241.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,109311,2,1,1,0,1,,157.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,2111.72821690057,821.0,69425.8787856728,1,5,0,1,100.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017875178848382127,46283.919190448534,10,5,10,10_1,10_0,10_0_0 -21847,2,32.0,0.0,1,112,615.0,0.0,0.0,37,46,0.0,0.0,850.0371499591973,3615.0,5160.981012570575,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,115783,2,2,4,0,1,,318.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,2101.57022730664,615.0,55008.897929977174,1,1,1,2,80.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06571664105326497,26194.71329998913,7,4,7,7_1,7_0,7_1_0 -21848,2,67.0,0.0,1,112,1979.0,0.0,0.0,75,75,0.0,1604.5173824701596,2735.322796372767,3599.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,126448,2,2,1,0,1,,126.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,2422.41340233951,1979.0,50461.98611238594,5,5,0,1,270.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07132101364350822,33641.324074923956,9,5,9,9_1,9_0,9_1_0 -21849,2,51.0,0.0,1,300,370.0,0.0,0.0,54,62,2987.1697540360015,258.79312620486445,511.40446420309434,2680.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,109351,2,1,2,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,2361.22725569062,370.0,51607.17274161441,1,1,0,1,115.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05193076577587696,20642.869096645765,5,3,5,5_1,5_0,5_1_0 -21850,2,59.0,0.0,5,112,580.0,0.0,0.0,11,54,0.0,1242.2070057833494,801.6610519940398,1840.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,18.0,1,,3,132601,2,1,1,0,1,,69.0,,43,2.0,5.0,4.0,2.0,1.5,1,1,2114.6608948925,580.0,35485.14524534612,1,1,0,1,92.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05185268334899422,23656.763496897413,6,3,6,6_1,6_0,6_0_0 -21851,2,77.0,0.0,5,111,2140.0,0.0,0.0,75,74,0.0,31.055175144583732,2957.8528470124916,2170.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119877,2,1,2,0,1,,303.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1723.57491073967,2140.0,85264.90146677429,5,5,0,1,115.0,6,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025450096847242563,56843.26764451619,10,5,10,10_1,10_2,10_0_0 -21852,1,40.0,73.0,2,111,150.0,120.0,0.0,85,63,0.0,0.0,207.32613413638958,270.0,0.0,217.63834810169388,30,0,0,0,0,0,0,0,0,0,,2,,2,112106,2,1,0,1,1,760.0,0.0,309.0,42,2.0,0.0,3.0,3.0,2.0,2,2,631.572279772223,150.0,19243.326270090463,6,1,2,3,68.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014030838338985909,9621.663135045232,1,1,1_1,1_0_1,1_2_1,1_0_1 -21853,2,77.0,0.0,5,111,470.0,1720.0,0.0,0,77,0.0,0.0,649.6218869606873,2190.0,0.0,3119.482989457612,50,0,0,0,0,0,0,0,0,0,,2,,3,117523,2,2,0,0,1,,0.0,380.0,11,0.0,4.0,3.0,1.0,1.0,3,2,655.17700135996,470.0,23013.81135763323,0,5,2,3,35.0,6,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09516024816435371,23013.81135763323,6,3,6,6_0,6_2,6_0_0 -21854,1,40.0,459.0,9,111,600.0,900.0,0.0,0,85,0.0,0.0,829.3045365455583,1500.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,108541,2,1,1,0,1,,430.0,741.0,31,0.0,0.0,5.0,4.0,1.9,1,1,1641.9911997397,600.0,21882.80089720013,0,6,2,3,93.0,6,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06854698386402276,11517.263630105332,2,1,2_1,2_1_1,2_2_1,2_0_0 -21855,1,41.0,346.0,2,111,0.0,0.0,117.0,0,56,0.0,1018.6097447423465,59.77686017599043,1101.0,0.0,133.7597556343579,50,2,2,2,2,1,2,2,2,0,,2,,2,109362,1,2,0,1,1,,0.0,324.0,32,1.0,0.0,3.0,2.0,1.5,4,4,580.327601602007,0.0,8343.623623310921,0,4,2,3,68.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.13195705483693673,5562.415748873947,1,1,1_1,1_0_1,1_2_1,1_0_1 -21856,2,70.0,0.0,6,111,160.0,772.0,0.0,0,78,0.0,0.0,221.1478764121489,932.0,0.0,1400.1400394542306,10,0,0,0,0,0,0,0,0,0,,2,,4,113252,1,2,0,0,1,,0.0,237.0,11,0.0,2.0,2.0,1.0,1.0,2,2,2141.86596777344,160.0,17062.52900067496,0,5,2,3,59.0,6,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05462261778210791,17062.52900067496,4,2,4_0,4_0_0,4_2_0,4_0_0 -21857,2,70.0,0.0,5,111,350.0,1360.0,0.0,77,75,0.0,0.0,483.76097965157567,1710.0,0.0,2466.5679451525307,30,0,0,0,0,0,0,0,0,0,,1,,3,133523,2,2,1,0,1,,280.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1524.49461122481,350.0,24013.656528947995,5,5,0,1,71.0,6,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0712094802363242,16009.104352631997,4,2,4_0,4_1_0,4_2_0,4_0_0 -21858,2,32.0,0.0,1,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1832.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,40.0,1,,1,120783,2,1,2,0,2,,225.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1790.26971591211,0.0,76114.84205391392,0,1,1,2,150.0,6,5,4,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02406889314310541,76114.84205391392,10,5,10,10_1,10_2,10_1_0 -21859,2,35.0,0.0,1,111,520.0,1040.0,0.0,52,54,0.0,0.0,718.7305983394839,1560.0,0.0,1886.1990168813468,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,103830,2,1,2,0,1,,348.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,2015.0369592615,520.0,44286.01322200881,1,1,1,2,90.0,6,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035225568672881284,24603.340678893783,7,4,7,7_1,7_2,7_1_0 -21860,1,28.0,120.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1436.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,111041,2,3,3,0,1,,480.0,321.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1366.81304785745,0.0,18366.507703076386,0,1,2,3,72.0,6,5,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07818579466576928,14128.082848520296,3,2,3_1,3_1_1,3_2_1,3_0_1 -21861,2,50.0,0.0,2,111,0.0,0.0,1300.0,0,63,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,70,0,0,0,0,0,0,0,0,0,,2,,2,108206,1,2,0,0,1,,0.0,325.0,12,1.0,2.0,3.0,1.0,1.0,2,2,631.378002169456,0.0,14553.136372277648,0,1,2,3,72.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08932782369004508,14553.136372277648,3,2,3_0,3_0_0,3_2_0,3_0_1 -21862,1,46.0,130.0,2,111,372.0,1200.0,0.0,85,63,0.0,0.0,514.1688126582462,1572.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,2,10.0,3,,2,119431,2,1,0,0,1,,1000.0,335.0,42,3.0,3.0,4.0,5.0,2.8,1,1,473.679217137091,372.0,27276.59611379861,6,1,2,3,136.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05763182449311412,9741.64146921379,1,1,1_1,1_0_1,1_2_1,1_0_1 -21863,2,37.0,0.0,1,111,1000.0,0.0,0.0,34,34,1792.3018524216009,621.1035028916747,1382.1742275759307,2830.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,100870,2,2,1,0,1,,113.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1712.54870277271,1000.0,92744.23313702177,1,1,1,2,150.0,6,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030514026632997373,61829.488758014515,10,5,10,10_1,10_2,10_1_0 -21864,2,59.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,502.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,127248,1,1,0,0,1,,146.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2403.34987679788,0.0,22348.391227109685,0,5,0,1,80.0,6,5,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022462466980220464,22348.391227109685,6,3,6,6_0,6_2,6_1_0 -21865,1,81.0,151.0,2,111,180.0,700.0,0.0,0,77,0.0,0.0,248.7913609636675,880.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,101089,2,1,0,0,1,,50.0,280.0,11,0.0,3.0,3.0,1.0,1.0,2,2,607.130285296405,180.0,10264.773881408073,0,5,2,3,59.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0857300911025315,10264.773881408073,2,1,2_1,2_0_1,2_2_1,2_0_1 -21866,2,44.0,0.0,2,111,800.0,1080.0,0.0,42,35,0.0,62.110350289167464,1105.7393820607444,1940.0,0.0,1958.7451329152448,31,0,0,0,0,0,0,0,0,2,7.0,1,,2,119814,2,2,3,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,1582.75656380548,800.0,55526.191025792345,1,1,1,2,115.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03493846712984247,22210.476410316936,6,3,6,6_1,6_2,6_0_1 -21867,2,70.0,0.0,2,111,140.0,108.0,0.0,0,90,0.0,0.0,193.50439186063028,248.0,0.0,195.8745132915245,50,0,0,0,0,0,0,0,0,0,,2,,2,130088,2,3,0,1,1,808.0,0.0,396.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2667.3472380283,140.0,13872.253899591977,0,5,2,3,60.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017877412120267954,13872.253899591977,3,2,3_0,3_0_0,3_2_0,3_0_1 -21868,2,63.0,0.0,2,111,190.0,469.0,0.0,0,75,0.0,0.0,262.6131032394268,659.0,0.0,850.6032104974536,10,0,0,0,0,0,0,0,0,0,,2,,2,125414,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,2508.91175434962,190.0,22522.47440546565,0,5,0,1,63.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029259662510264718,22522.47440546565,6,3,6,6_0,6_2,6_0_1 -21869,2,69.0,0.0,2,111,523.0,1309.0,0.0,0,37,0.0,0.0,722.8771210222117,2231.0,0.0,2374.0716472093104,50,0,0,0,0,0,0,0,0,2,1.0,1,,2,123716,2,2,2,0,1,,199.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1806.91080901272,523.0,49492.08566161736,0,1,0,1,100.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04507791438117164,49492.08566161736,10,5,10,10_1,10_2,10_0_1 -21870,2,60.0,0.0,2,111,397.0,740.0,0.0,85,78,0.0,0.0,548.7231683476444,1137.0,0.0,1342.1031466271122,71,0,0,0,0,0,0,0,0,0,,2,,2,101005,2,1,0,0,1,,210.0,445.0,41,0.0,2.0,3.0,2.0,1.5,1,1,2612.35981837565,397.0,23061.50286423444,7,5,2,3,90.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.049302944682037504,15374.335242822961,3,2,3_0,3_0_0,3_2_0,3_0_1 -21871,1,52.0,254.0,2,111,0.0,0.0,1300.0,0,85,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,31,0,0,0,0,0,0,0,0,0,,2,,2,131351,1,2,0,1,1,,0.0,270.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2607.0034777227,0.0,6046.957107914801,0,7,2,3,51.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2149841609259049,6046.957107914801,1,1,1_1,1_0_1,1_2_1,1_0_1 -21872,2,57.0,0.0,2,111,456.0,884.0,0.0,0,52,0.0,0.0,630.2714477746243,1340.0,0.0,1603.2691643491448,70,0,0,0,0,0,0,0,0,1,20.0,2,,2,132402,1,2,0,0,1,,0.0,311.0,32,2.0,1.0,3.0,2.0,1.5,2,2,1927.08615757408,456.0,31896.0,0,1,2,3,70.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04201153749686481,21264.0,5,3,5,5_0,5_2,5_0_1 -21874,2,60.0,0.0,2,111,300.0,0.0,0.0,0,53,448.0754631054002,132.5020806168906,414.65226827277917,758.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,108533,1,1,4,0,1,,126.0,100.0,12,1.0,3.0,4.0,1.0,1.0,3,2,1768.214199207,300.0,28026.313498807038,0,1,2,3,96.0,6,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027046011600215095,28026.313498807038,7,4,7,7_1,7_2,7_0_1 -21875,1,44.0,24.0,9,111,822.0,0.0,0.0,0,47,0.0,0.0,1136.147215067415,872.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,101581,2,1,1,0,1,,288.0,,32,1.0,0.0,6.0,3.0,1.6,2,2,1813.09565353381,822.0,18742.323512196373,0,1,1,2,170.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04652571488441948,11713.952195122733,2,1,2_1,2_1_1,2_2_1,2_0_0 -21876,2,63.0,0.0,5,111,570.0,0.0,0.0,72,78,0.0,672.8621281326475,787.8393097182804,1220.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,108467,2,1,3,0,1,,140.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1504.24831742082,570.0,23946.222984597658,5,5,0,1,70.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050947491835547955,15964.148656398438,3,2,3_0,3_1_0,3_2_0,3_0_0 -21877,2,79.0,0.0,2,111,390.0,0.0,0.0,71,78,141.89056331671006,0.0,539.0479487546129,665.0,309.6588607542345,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,105130,1,2,4,0,2,,135.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1717.44393510089,390.0,27601.735716018506,5,5,0,1,120.0,6,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024092687751302216,18401.157144012337,4,2,4_0,4_1_0,4_2_0,4_0_1 -21878,0,49.0,0.0,1,111,500.0,0.0,0.0,23,23,7467.924385090004,724.6207533736205,691.0871137879653,6200.0,0.0,0.0,41,1,2,1,1,1,2,2,2,2,13.0,1,,1,107164,2,1,2,0,1,,230.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1804.32179557565,500.0,107843.0,1,1,5,0,160.0,6,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05749098226125015,71895.33333333333,10,5,10,10_1,10_2,10_1_0 -21879,2,87.0,0.0,2,111,2300.0,0.0,0.0,0,77,0.0,0.0,3179.0007234246405,2370.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,124462,2,3,3,0,1,,139.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1908.96386313275,2300.0,11307.995411239426,0,5,0,1,90.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20958621876025624,11307.995411239426,2,1,2_0,2_1_0,2_2_0,2_0_1 -21880,2,70.0,0.0,2,111,352.0,0.0,0.0,62,75,2434.5433495393413,0.0,486.52532810672756,2162.0,309.6588607542345,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,109953,1,2,1,0,2,,350.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1512.22097359394,352.0,45773.379242916126,1,5,0,1,130.0,6,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047232693669532616,30515.586161944084,8,4,8,8_1,8_2,8_0_1 -21881,2,67.0,0.0,2,111,1649.0,0.0,0.0,75,31,0.0,0.0,2279.2053012727097,1769.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,106607,2,1,2,0,1,,415.0,,41,0.0,2.0,5.0,2.0,1.5,3,1,1541.57486831363,1649.0,56700.59245940863,5,5,0,1,140.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031198968533995633,37800.39497293909,9,5,9,9_1,9_2,9_0_1 -21882,2,42.0,0.0,9,112,2150.0,0.0,0.0,55,62,0.0,124.22070057833493,2971.674589288251,2270.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,100084,2,1,1,0,1,,107.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,2382.34414701811,2150.0,28788.479242600537,4,1,1,2,100.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07885098691287956,15993.59957922252,3,2,3_0,3_1_0,3_0_0,3_0_0 -21883,0,82.0,0.0,6,112,142.0,0.0,0.0,0,78,0.0,0.0,196.26874031578214,3395.0,344.06540083803833,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,107574,2,1,2,0,1,,121.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,2417.25147908745,142.0,26028.0,0,5,5,0,90.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13043645305056092,26028.0,7,4,7,7_1,7_0,7_0_0 -21884,2,52.0,0.0,6,112,2300.0,0.0,0.0,0,45,0.0,0.0,3179.0007234246405,2599.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,104143,2,1,1,0,1,,118.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,2452.21798041333,2300.0,22773.145339234907,0,1,0,1,160.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11412564936835014,22773.145339234907,6,3,6,6_1,6_0,6_0_0 -21885,2,52.0,0.0,7,112,680.0,0.0,0.0,52,67,0.0,0.0,939.8784747516328,770.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,112608,2,1,2,0,1,,140.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,2549.75289936567,680.0,49494.69440912874,1,1,0,1,112.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015557223035566054,24747.34720456437,7,4,7,7_1,7_0,7_0_0 -21886,2,81.0,0.0,1,111,279.0,0.0,0.0,0,78,978.2980944467904,0.0,385.6266094936846,1004.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,111736,2,1,0,1,1,655.0,0.0,280.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2961.45338563525,279.0,12898.893752705924,0,5,2,3,35.0,6,4,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07783613224889005,12898.893752705924,2,1,2_0,2_0_0,2_2_0,2_1_0 -21887,1,40.0,22.0,8,111,300.0,900.0,0.0,0,52,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,30,0,0,0,0,0,0,0,0,2,2.0,2,2000.0,6,105113,2,3,0,0,1,,500.0,405.0,32,1.0,0.0,4.0,3.0,1.8,2,2,2261.04092743875,300.0,25962.80450503601,0,1,2,3,84.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04621996825370833,14423.78028057556,3,2,3_1,3_0_1,3_2_1,3_0_0 -21888,2,65.0,0.0,2,111,520.0,1356.0,0.0,77,78,0.0,0.0,718.7305983394839,1988.0,192.67662446930146,2459.3133335491407,41,0,0,0,0,0,0,0,0,0,,2,,2,120848,2,3,0,1,1,798.0,600.0,175.0,41,0.0,3.0,4.0,2.0,1.5,1,1,2370.26760833257,520.0,20166.30982675719,5,5,2,3,90.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09858025672908532,13444.20655117146,3,2,3_0,3_0_0,3_2_0,3_0_1 -21889,2,49.0,0.0,2,111,480.0,0.0,0.0,21,21,0.0,0.0,663.4436292364467,516.0,61.9317721508469,0.0,50,2,2,2,2,2,2,2,1,2,5.0,1,,2,132485,2,1,4,0,1,,480.0,,43,2.0,3.0,8.0,2.0,1.5,2,2,1756.45286705988,480.0,13376.03362387478,1,1,1,2,160.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03857645805248243,8917.355749249853,1,1,1_0,1_1_0,1_2_0,1_0_1 -21890,2,79.0,0.0,1,111,700.0,0.0,0.0,0,71,0.0,703.9173032772313,967.5219593031513,1380.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,105479,2,2,2,0,2,,167.0,,11,0.0,0.0,8.0,1.0,1.0,2,2,1866.95411331335,700.0,9500.40274042061,0,5,0,1,130.0,6,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14525699990892213,9500.40274042061,1,1,1_0,1_1_0,1_2_0,1_1_0 -21891,2,37.0,0.0,5,111,1008.0,0.0,0.0,64,43,0.0,791.9069661868851,1393.231621396538,1878.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,128672,2,1,1,0,1,,463.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1435.2186814186,1008.0,76709.62332742332,1,1,1,2,140.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02448193484126553,31962.343053093053,8,4,8,8_1,8_2,8_0_0 -21892,2,67.0,0.0,7,111,392.0,632.0,0.0,78,78,0.0,253.61726368076717,541.8122972097648,1269.0,0.0,1146.2286333355878,50,0,0,0,0,0,0,0,0,0,,1,,5,116819,2,1,2,0,1,,360.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1777.1803831106,392.0,30762.29722089354,5,5,1,2,140.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04125179569288161,20508.19814726236,5,3,5,5_1,5_2,5_0_0 -21893,2,44.0,0.0,1,111,850.0,0.0,0.0,52,47,1941.6603401234008,0.0,1174.848093439541,2255.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,1,119498,2,2,4,0,1,,750.0,,43,3.0,0.0,7.0,5.0,2.8,2,2,1546.14796851537,850.0,62781.66336944378,1,1,1,2,180.0,6,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03591813085184236,22422.022631944208,6,3,6,6_1,6_2,6_1_0 -21894,2,60.0,0.0,2,111,518.0,0.0,0.0,67,78,0.0,854.0173164760527,715.966249884332,1343.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104927,2,1,4,0,2,,565.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1597.95478201412,518.0,30242.020669521153,1,7,0,1,68.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04440840824348477,20161.3471130141,5,3,5,5_1,5_2,5_0_1 -21895,2,91.0,0.0,1,111,360.0,2800.0,0.0,0,77,0.0,0.0,497.582721927335,3160.0,0.0,5078.228122372857,70,0,0,0,0,0,0,0,0,0,,1,,1,124719,2,1,2,0,1,,400.0,,11,0.0,5.0,10.0,1.0,1.0,1,1,1883.22250420698,360.0,36809.60073682802,0,5,0,1,120.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08584716858497242,36809.60073682802,9,5,9,9_1,9_2,9_1_0 -21896,2,55.0,0.0,2,111,700.0,0.0,0.0,0,34,0.0,0.0,967.5219593031513,770.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,1,7.0,2,,2,124631,2,3,0,0,1,,180.0,270.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2586.14947540829,700.0,21989.808971410053,0,1,2,3,50.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03501622051383493,21989.808971410053,6,3,6,6_0,6_2,6_0_1 -21897,2,34.0,0.0,9,111,1298.0,0.0,0.0,67,68,0.0,0.0,1794.0621473935578,1298.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,1,2007.0,6,112900,2,1,1,0,1,,311.0,340.0,43,2.0,0.0,5.0,2.0,1.5,2,2,2215.88548751454,1298.0,32258.203773095796,1,1,2,3,120.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04023782629467319,21505.469182063865,6,3,6,6_1,6_2,6_0_0 -21898,2,82.0,0.0,2,111,475.0,1600.0,0.0,77,75,0.0,260.86347121450336,656.532758098567,2327.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,2,124377,2,1,4,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1715.77826743902,475.0,25343.568473894913,5,5,0,1,80.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09181816690088143,16895.71231592994,4,2,4_0,4_1_0,4_2_0,4_0_1 -21899,2,86.0,0.0,5,111,670.0,0.0,0.0,86,72,1941.6603401234008,1523.7739270942418,926.0567324758734,3562.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131868,2,1,2,0,1,,550.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1582.06698979682,670.0,14785.90623173545,5,5,0,1,200.0,6,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2409050851651398,9857.270821156966,2,1,2_0,2_1_0,2_2_0,2_0_0 -21900,0,89.0,0.0,5,111,1785.0,0.0,0.0,0,78,0.0,0.0,2467.180996223036,1785.0,0.0,0.0,50,1,2,2,1,2,2,2,2,0,,1,,3,117154,2,2,4,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1820.8151404997,1785.0,14621.398516931946,0,5,5,0,50.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.12208134522377768,14621.398516931946,3,2,3_0,3_1_0,3_2_0,3_0_0 -21901,2,82.0,0.0,1,111,1120.0,0.0,0.0,86,78,0.0,0.0,1548.0351348850422,1520.0,688.1308016760767,0.0,50,2,2,1,1,2,2,2,2,0,,1,,1,125104,2,1,1,0,1,,0.0,,41,1.0,6.0,5.0,4.0,2.5,2,2,1511.99801461893,1120.0,51740.45060936997,5,5,0,1,143.0,6,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.029377401667327857,20696.180243747986,5,3,5,5_1,5_2,5_1_0 -21902,1,59.0,230.0,5,111,0.0,0.0,0.0,0,71,0.0,0.0,0.0,656.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,121634,1,2,3,0,1,,175.0,212.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1735.23360164586,0.0,4878.784039721006,0,7,2,3,40.0,6,4,4,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13445973313414247,4878.784039721006,1,1,1_1,1_1_1,1_2_1,1_0_0 -21903,2,81.0,0.0,5,111,420.0,2300.0,0.0,0,78,0.0,0.0,580.5131755818909,2825.0,180.63433543997013,4171.401671949133,42,0,0,0,0,0,0,0,0,0,,2,,3,109593,1,1,0,1,1,,130.0,242.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2392.80730511801,420.0,16685.23625168833,0,5,2,3,35.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.16931135750110501,16685.23625168833,4,2,4_0,4_0_0,4_2_0,4_0_0 -21904,2,74.0,0.0,6,111,2340.0,0.0,0.0,77,78,0.0,51.75862524097289,3234.2876925276773,2530.0,240.84578058662683,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,127025,2,1,2,0,1,,360.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1528.76886347496,2340.0,26931.21338147099,5,5,0,1,80.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09394303792270539,17954.142254313992,4,2,4_0,4_1_0,4_2_0,4_0_0 -21905,2,34.0,0.0,2,111,1424.0,0.0,0.0,56,45,0.0,0.0,1968.2161000681251,1499.0,129.02452531426437,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,108906,2,1,0,0,1,,123.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,2248.49475268487,1424.0,42791.91517271426,1,1,1,2,123.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035029981573617884,20377.102463197265,5,3,5,5_0,5_2,5_0_1 -21906,2,68.0,0.0,9,112,276.0,0.0,0.0,0,75,0.0,0.0,381.48008681095683,276.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,121371,2,1,1,0,1,,63.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2945.60042600322,276.0,17191.764865922418,0,5,0,1,25.0,6,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01605419816711711,17191.764865922418,4,2,4_0,4_1_0,4_1_0,4_0_0 -21907,2,67.0,0.0,1,112,613.0,2608.0,0.0,77,75,0.0,0.0,847.2728015040454,3311.0,154.82943037711726,4730.006765410147,60,0,0,0,0,0,0,0,0,0,,1,,1,114205,2,1,2,0,1,,160.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,2630.49969525647,613.0,20397.777604674036,6,5,0,1,180.0,6,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16232160503805584,13598.518403116024,3,2,3_0,3_1_0,3_1_0,3_1_0 -21908,2,49.0,0.0,9,112,0.0,0.0,0.0,67,67,0.0,0.0,0.0,1071.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,2.0,1,2006.0,6,123646,2,1,1,0,1,,190.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,2522.85081636225,0.0,31375.189173391715,1,1,0,1,100.0,6,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03413525235118839,20916.792782261142,5,3,5,5_1,5_1,5_0_0 -21909,0,63.0,0.0,2,112,1100.0,0.0,0.0,86,78,0.0,0.0,1520.3916503335236,1205.0,180.63433543997013,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,124794,2,3,2,0,1,,130.0,,41,0.0,3.0,4.0,2.0,1.5,4,2,2568.16645973926,1100.0,25141.003053493252,5,5,0,1,84.0,6,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04792967080255653,16760.668702328836,4,2,4_0,4_1_0,4_1_0,4_0_1 -21910,2,83.0,0.0,2,111,960.0,0.0,0.0,0,74,3808.6414363959016,0.0,1326.8872584728933,3510.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,132279,1,2,2,0,2,,60.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1923.10230205949,960.0,29530.67281574841,0,5,0,1,60.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11885946594918598,29530.67281574841,8,4,8,8_1,8_3,8_0_1 -21911,2,61.0,0.0,6,111,450.0,850.0,0.0,86,86,0.0,0.0,621.9784024091688,1300.0,0.0,1541.6049657203316,71,0,0,0,0,0,0,0,0,0,,1,,4,118029,2,1,2,0,1,,225.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,215.209929091661,450.0,50944.271578772066,5,5,0,1,100.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025518080045366594,33962.84771918138,9,5,9,9_1,9_2,9_0_0 -21912,2,65.0,0.0,6,111,2160.0,0.0,0.0,77,72,0.0,0.0,2985.49633156401,2160.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101749,2,1,2,0,1,,700.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1896.76228240174,2160.0,56012.33375329549,5,5,0,1,180.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038562935254825306,37341.55583553033,9,5,9,9_1,9_3,9_0_0 -21913,1,61.0,262.0,2,111,250.0,120.0,0.0,0,78,0.0,0.0,345.54355689398267,370.0,0.0,217.63834810169388,31,0,0,0,0,0,0,0,0,0,,2,,2,108489,2,1,0,1,1,,180.0,314.0,11,0.0,2.0,3.0,1.0,1.0,2,2,264.111610044583,250.0,9463.35260087033,0,7,2,3,60.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03909819443544475,9463.35260087033,1,1,1_1,1_0_1,1_2_1,1_0_1 -21914,2,65.0,0.0,5,111,832.0,0.0,0.0,0,75,0.0,0.0,1149.9689573431742,832.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,123480,1,2,0,1,1,,0.0,600.0,11,0.0,1.0,2.0,1.0,1.0,4,3,2659.97603846182,832.0,21960.812095446283,0,5,2,3,49.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037885666358054244,21960.812095446283,6,3,6,6_0,6_3,6_0_0 -21915,2,86.0,0.0,2,111,290.0,60.0,0.0,0,74,0.0,0.0,400.8305259970199,350.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,2,,2,127557,2,1,0,1,1,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,287.33227696415,290.0,37803.44627432054,0,5,0,1,111.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009258415157714103,37803.44627432054,9,5,9,9_0,9_2,9_0_1 -21916,2,40.0,0.0,9,112,0.0,0.0,0.0,38,22,0.0,0.0,0.0,666.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,123047,2,1,1,0,1,,528.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,938.203397084528,0.0,16090.068610842765,1,1,1,2,179.0,9,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0413919925457121,7661.93743373465,1,1,1_0,1_1_0,1_0_0,1_0_0 -21917,2,29.0,0.0,7,111,1200.0,0.0,0.0,43,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,33,1,2,2,1,2,2,2,2,2,20.0,2,,5,129233,2,2,0,1,1,816.0,0.0,700.0,43,2.0,0.0,3.0,2.0,1.5,3,3,2596.19532128137,1200.0,50318.34880623929,1,1,2,3,70.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02384815933886933,33545.5658708262,9,5,9,9_0,9_3,9_0_0 -21918,2,51.0,0.0,2,111,450.0,0.0,0.0,21,64,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132094,2,1,0,1,1,710.0,0.0,400.0,43,2.0,0.0,3.0,2.0,1.5,1,1,270.392238693787,450.0,21046.80926165991,1,1,2,3,45.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021380913106850172,14031.20617443994,3,2,3_0,3_0_0,3_2_0,3_0_1 -21919,2,24.0,0.0,2,111,300.0,420.0,0.0,52,47,0.0,0.0,414.65226827277917,720.0,0.0,761.7342183559285,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,120291,2,1,0,1,1,573.0,0.0,750.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2593.01314378659,300.0,37082.807383454754,1,1,2,3,80.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019416005712697,24721.871588969836,7,4,7,7_0,7_3,7_0_1 -21920,1,38.0,512.0,2,111,0.0,0.0,860.0,85,64,0.0,0.0,439.3854679602715,860.0,0.0,983.191366201263,41,2,1,2,2,1,2,2,2,2,20.0,2,,2,105547,1,2,0,1,1,917.0,0.0,478.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,2,2,239.31994179266,0.0,25526.40920410206,6,1,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03369059835732004,8802.210070380022,1,1,1_1,1_0_1,1_2_1,1_0_1 -21921,2,32.0,0.0,9,120,0.0,0.0,0.0,54,47,0.0,0.0,0.0,5460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,125889,2,1,1,0,1,,693.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1075.04996953895,0.0,47345.209883024174,1,1,1,2,133.0,0,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11532317658935347,26302.894379457874,7,4,7,7_1,7_1,7_0_0 -21922,2,71.0,0.0,1,111,0.0,0.0,0.0,52,75,0.0,0.0,0.0,625.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,126549,2,3,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,1,1,2363.35515823425,0.0,50642.16167538122,1,5,0,1,76.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012341495294104568,33761.44111692081,9,5,9,9_0,9_3,9_1_0 -21923,2,41.0,0.0,9,400,1560.0,0.0,0.0,65,62,0.0,207.03450096389156,2156.1917950184516,1760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,116138,2,1,1,0,1,,300.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,600.330697786902,1560.0,49189.6559829302,1,1,1,2,110.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03577988023764093,23423.645706157236,6,3,6,6_1,6_0,6_0_0 -21924,2,32.0,0.0,2,111,289.0,78.0,0.0,63,43,0.0,0.0,399.44835176944395,367.0,0.0,141.464926266101,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,127687,2,2,0,1,1,660.0,300.0,321.0,43,2.0,0.0,3.0,3.0,1.8,2,2,310.63121139479,289.0,44540.4763109263,1,1,2,3,85.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00823969634806017,24744.709061625723,7,4,7,7_0,7_2,7_0_1 -21925,2,68.0,0.0,7,111,1080.0,0.0,0.0,46,74,0.0,393.36555183139393,1492.748165782005,1460.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,112963,2,1,2,0,1,,180.0,,42,1.0,3.0,7.0,2.0,1.5,3,1,1896.76228240174,1080.0,61604.49287386391,1,5,0,1,122.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02369957014319347,41069.66191590927,9,5,9,9_1,9_3,9_0_0 -21926,0,24.0,0.0,5,111,0.0,0.0,0.0,38,31,0.0,0.0,0.0,820.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,102543,2,1,0,1,1,703.0,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,338.782732365169,0.0,11593.211478354624,4,1,5,0,87.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0707310482113606,7728.807652236416,1,1,1_0,1_0_0,1_3_0,1_0_0 -21927,2,31.0,0.0,9,120,0.0,0.0,0.0,53,53,0.0,0.0,0.0,1588.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,2013.0,6,126417,2,1,1,0,1,,198.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,5686.67240594428,0.0,43493.57058948558,1,1,1,2,120.0,0,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03651114356621467,20711.224090231226,5,3,5,5_1,5_1,5_0_0 -21928,0,50.0,0.0,6,111,0.0,0.0,0.0,52,47,0.0,0.0,0.0,1375.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,115568,2,1,2,0,1,,0.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,2318.62460865329,0.0,107841.90649919999,1,1,5,0,110.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01275014551055067,53920.953249599996,10,5,10,10_1,10_3,10_0_0 -21929,2,90.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,527.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116877,2,2,0,1,1,,0.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,271.444901793152,0.0,18561.55009403359,0,5,0,1,95.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028392025306625573,18561.55009403359,4,2,4_0,4_0_0,4_3_0,4_0_1 -21930,2,49.0,0.0,9,111,600.0,620.0,0.0,54,38,0.0,0.0,829.3045365455583,1220.0,0.0,1124.4647985254182,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,115257,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,293.401855844893,600.0,75961.68734252975,1,1,1,2,146.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016060728015410225,33026.82058370859,8,4,8,8_1,8_2,8_0_0 -21931,2,54.0,0.0,1,111,0.0,0.0,0.0,56,75,0.0,0.0,0.0,3370.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107585,2,2,4,0,2,,0.0,812.0,42,1.0,1.0,3.0,2.0,1.5,3,3,2053.29167990844,0.0,43881.702354305904,4,5,2,3,69.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0767973852242612,29254.468236203935,8,4,8,8_1,8_3,8_1_0 -21932,2,48.0,0.0,2,111,240.0,160.0,0.0,0,53,0.0,0.0,331.72181461822333,400.0,0.0,290.18446413559184,30,0,0,0,0,0,0,0,0,3,20.0,2,,2,129395,1,2,0,1,1,648.0,0.0,254.0,22,2.0,0.0,3.0,2.0,1.5,2,2,267.37681948572,240.0,21506.240765022805,0,1,2,3,57.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018599252392382293,14337.493843348537,3,2,3_0,3_0_0,3_3_0,3_0_1 -21933,2,79.0,0.0,2,111,759.0,0.0,0.0,0,77,2987.1697540360015,0.0,1049.0702387301312,2759.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129103,2,2,2,0,1,,100.0,,11,0.0,2.0,6.0,1.0,1.0,4,2,2020.76154211507,759.0,38754.220146547166,0,5,0,1,115.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07119224666544645,38754.220146547166,9,5,9,9_1,9_3,9_0_1 -21934,2,78.0,0.0,2,111,360.0,0.0,0.0,0,75,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,2,1,1,1,1,2,2,2,0,,2,,2,119088,1,3,0,1,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,300.675534565229,360.0,36335.57964863442,0,5,0,1,105.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009907644338722685,36335.57964863442,9,5,9,9_0,9_3,9_0_1 -21935,2,31.0,0.0,9,120,1600.0,0.0,0.0,54,37,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,107392,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1197.93110715237,1600.0,53973.68632244301,1,1,1,2,167.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029644074900526066,29985.381290246118,8,4,8,8_1,8_0,8_0_0 -21936,2,43.0,0.0,6,111,408.0,1960.0,0.0,46,46,0.0,0.0,563.9270848509797,2368.0,0.0,3554.759685661,50,0,0,0,0,0,0,0,0,2,3.0,2,,4,122475,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,2177.74580342044,408.0,86184.87548085708,1,1,1,2,105.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02747581854458869,41040.41689564623,9,5,9,9_0,9_3,9_0_0 -21937,2,49.0,0.0,2,111,324.0,900.0,0.0,0,64,0.0,0.0,447.8244497346015,1374.0,258.04905062852873,1632.287610762704,50,0,0,0,0,0,0,0,0,2,7.0,2,,2,132997,2,2,0,0,1,,0.0,880.0,12,1.0,0.0,4.0,1.0,1.0,3,3,2671.84568730124,324.0,30021.647752828074,0,1,2,3,77.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04576697492796902,30021.647752828074,8,4,8,8_0,8_3,8_0_1 -21938,1,83.0,38.0,2,111,204.0,252.0,0.0,0,77,0.0,0.0,281.96354242548983,456.0,0.0,457.04053101355714,41,0,0,0,0,0,0,0,0,0,,2,,2,102177,2,1,0,1,1,915.0,0.0,304.0,11,0.0,3.0,4.0,1.0,1.0,1,1,267.217844026221,204.0,17771.96805504998,0,5,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02565838508079164,17771.96805504998,4,2,4_1,4_0_1,4_3_1,4_0_1 -21939,1,40.0,24.0,9,111,1837.0,0.0,0.0,85,23,0.0,0.0,2539.0540560569843,1837.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,100861,2,1,1,0,1,,500.0,,42,1.0,0.0,6.0,5.0,2.4,3,3,67.8981632393182,1837.0,33107.88289510452,6,1,1,2,220.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05548527538955464,13794.951206293552,3,2,3_1,3_1_1,3_3_1,3_0_0 -21940,1,51.0,303.0,2,111,528.0,0.0,0.0,0,52,1642.9433647198007,0.0,729.7879921600913,1808.0,309.6588607542345,0.0,50,2,2,2,2,2,1,2,2,0,,2,,2,103108,1,3,0,1,1,866.0,0.0,260.0,32,3.0,2.0,3.0,3.0,2.0,3,3,305.052576348754,528.0,11484.8,0,4,2,3,90.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.15742546670381724,5742.4,1,1,1_1,1_0_1,1_3_1,1_0_1 -21941,2,52.0,0.0,6,111,532.0,0.0,0.0,86,47,0.0,0.0,735.3166890703951,532.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,30.0,2,,4,130675,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,1,1,2218.23607437873,532.0,37396.45075831461,5,1,0,1,80.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01422594896607178,24930.96717220974,7,4,7,7_0,7_3,7_0_0 -21942,2,60.0,0.0,6,111,400.0,0.0,0.0,78,75,0.0,0.0,552.8696910303722,400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,100176,2,1,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,232.333326566091,400.0,17834.282162741347,5,5,0,1,95.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022428713213681437,11889.521441827565,2,1,2_0,2_0_0,2_3_0,2_0_0 -21943,2,34.0,0.0,9,112,0.0,0.0,0.0,43,62,0.0,0.0,0.0,1476.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,131262,2,2,1,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,810.727937601447,0.0,38488.41289693111,1,1,1,2,102.0,8,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03834920405662374,21382.451609406173,6,3,6,6_1,6_1,6_0_0 -21944,2,57.0,0.0,7,111,1037.0,2423.0,0.0,0,31,0.0,0.0,1433.31467399624,3460.0,0.0,4394.480978753369,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,118968,2,1,4,0,1,,540.0,,32,2.0,0.0,7.0,3.0,2.0,3,3,2009.33609620413,1037.0,144241.73170120202,0,1,0,1,220.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023987510127564327,72120.86585060101,10,5,10,10_1,10_3,10_0_0 -21945,2,28.0,0.0,2,111,540.0,540.0,0.0,43,54,0.0,0.0,746.3740828910024,1080.0,0.0,979.3725664576224,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,127250,2,1,0,1,1,660.0,0.0,406.0,43,2.0,0.0,3.0,2.0,1.5,1,1,247.164150077863,540.0,28832.78174325129,1,1,2,3,72.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.037457363969149074,19221.85449550086,5,3,5,5_0,5_3,5_0_1 -21946,2,42.0,0.0,9,111,0.0,0.0,0.0,52,47,0.0,0.0,0.0,1314.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,122364,2,1,1,0,1,,778.0,,43,2.0,0.0,6.0,4.0,2.3,4,3,346.821190894735,0.0,45826.27612906834,1,1,1,2,125.0,4,4,4,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02867350592265359,19924.46788220363,5,3,5,5_1,5_2,5_0_0 -21947,2,59.0,0.0,5,111,300.0,0.0,0.0,0,77,746.7924385090004,1138.6897553014035,414.65226827277917,1900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130881,1,2,2,0,1,,180.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1864.59880881807,300.0,9458.0,0,7,0,1,133.0,9,7,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20088813702685557,9458.0,1,1,1_0,1_1_0,1_3_0,1_0_0 -21948,2,82.0,0.0,2,111,276.0,378.0,0.0,0,77,0.0,0.0,381.48008681095683,654.0,0.0,685.5607965203357,43,0,0,0,0,0,0,0,0,0,,2,,2,107504,1,1,0,1,1,569.0,0.0,294.0,11,0.0,3.0,3.0,1.0,1.0,2,2,272.496564921283,276.0,18998.71048778927,0,5,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03442338891475475,18998.71048778927,5,3,5,5_0,5_3,5_0_1 -21949,2,30.0,0.0,9,111,1400.0,0.0,0.0,81,37,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,7.0,2,2009.0,6,111227,2,1,0,0,1,,0.0,965.0,43,2.0,0.0,3.0,4.0,2.1,2,2,2876.0201125808,1400.0,62455.04216903761,4,1,2,3,88.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02241612448536712,29740.49627097029,8,4,8,8_0,8_3,8_0_0 -21950,2,25.0,0.0,5,111,500.0,0.0,0.0,0,67,0.0,0.0,691.0871137879653,919.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,132497,1,3,0,1,1,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,340.125884932311,500.0,16076.180288082302,0,1,2,3,40.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05716532058808018,16076.180288082302,4,2,4_0,4_0_0,4_3_0,4_0_0 -21951,2,56.0,0.0,9,111,1500.0,0.0,0.0,54,37,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,2008.0,6,117238,1,2,0,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,2574.24849531796,1500.0,56354.0,1,1,1,2,94.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026617453951804662,37569.333333333336,9,5,9,9_0,9_3,9_0_0 -21952,1,42.0,122.0,5,111,420.0,0.0,0.0,0,46,0.0,0.0,580.5131755818909,476.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,3,133354,2,1,0,1,1,,0.0,481.0,32,1.0,1.0,3.0,2.0,1.3,2,2,254.156677547786,420.0,20456.795275605724,0,1,2,3,65.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023268551773973096,15735.996365850557,3,2,3_1,3_0_1,3_3_1,3_0_0 -21953,2,81.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,117151,2,2,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,4,3,287.880180698454,300.0,18907.802240737798,0,5,0,1,97.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01586646592662341,18907.802240737798,5,3,5,5_0,5_3,5_0_1 -21954,2,63.0,0.0,6,111,440.0,1080.0,0.0,77,78,0.0,0.0,608.1566601334094,1520.0,0.0,1958.7451329152448,50,0,0,0,0,0,0,0,0,0,,1,,4,131929,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1921.9413246019,440.0,43503.94545006017,5,5,0,1,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03493935973565583,29002.630300040113,8,4,8,8_1,8_3,8_0_0 -21955,2,58.0,0.0,2,111,360.0,80.0,0.0,0,55,0.0,0.0,497.582721927335,440.0,0.0,145.09223206779592,31,0,0,0,0,0,0,0,0,3,20.0,2,,2,109994,2,2,0,1,1,50.0,0.0,396.0,12,1.0,0.0,2.0,1.0,1.0,2,2,322.334912876681,360.0,29392.50806755537,0,1,2,3,40.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014969801113559604,29392.50806755537,8,4,8,8_0,8_3,8_0_1 -21956,2,23.0,0.0,2,111,240.0,0.0,0.0,0,54,0.0,0.0,331.72181461822333,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,117545,1,2,0,1,1,648.0,0.0,263.0,22,2.0,0.0,3.0,2.0,1.5,2,2,243.953717495602,240.0,19696.187616353338,0,1,2,3,57.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012185099201671544,13130.79174423556,2,1,2_0,2_0_0,2_3_0,2_0_1 -21957,2,55.0,0.0,7,111,600.0,0.0,0.0,0,37,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,106658,2,2,0,0,1,,0.0,600.0,12,1.0,1.0,3.0,1.0,1.0,2,2,2798.51790760497,600.0,43881.0,0,1,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01367334381623026,43881.0,10,5,10,10_0,10_3,10_0_0 -21958,2,35.0,0.0,7,111,900.0,0.0,0.0,0,38,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,2,,5,109354,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2306.11151310372,900.0,42885.25304497424,0,1,1,2,46.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020986235036462533,42885.25304497424,9,5,9,9_0,9_3,9_0_0 -21959,2,72.0,0.0,2,111,320.0,320.0,0.0,77,75,0.0,0.0,442.2957528242978,640.0,0.0,580.3689282711837,42,0,0,0,0,0,0,0,0,0,,2,,2,117562,2,3,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,244.318179381892,320.0,30036.71053874215,5,5,0,1,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021307259966916514,20024.47369249477,5,3,5,5_0,5_3,5_0_1 -21960,1,34.0,167.0,7,111,200.0,780.0,0.0,0,52,0.0,0.0,276.4348455151861,980.0,0.0,1414.6492626610102,50,2,2,2,2,1,2,2,2,1,15.0,2,,5,129798,2,3,0,0,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3678.18335983898,200.0,9466.0,0,1,3,4,28.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.10352841749418973,9466.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -21961,2,50.0,0.0,2,111,360.0,600.0,0.0,0,53,0.0,0.0,497.582721927335,960.0,0.0,1088.1917405084694,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,116809,2,2,2,0,1,,400.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,1898.12777190556,360.0,34519.053145706086,0,1,0,1,120.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027810728062204013,34519.053145706086,9,5,9,9_1,9_3,9_0_1 -21962,0,72.0,0.0,8,111,264.0,0.0,0.0,0,77,0.0,0.0,364.89399608004567,264.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2000.0,6,101546,1,1,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,2213.02534825672,264.0,20956.522492248692,0,5,0,1,48.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012597509920725024,20956.522492248692,5,3,5,5_0,5_3,5_0_0 -21963,1,29.0,360.0,2,111,800.0,4200.0,0.0,85,63,0.0,0.0,1105.7393820607444,5000.0,0.0,7617.342183559285,10,1,2,2,2,1,2,2,1,2,30.0,2,,2,122086,1,2,0,0,1,,0.0,560.0,42,1.0,0.0,3.0,3.0,1.8,5,4,2694.72066591132,800.0,24094.040419906247,6,1,2,3,87.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.20752019639964792,13385.578011059026,3,2,3_1,3_0_1,3_3_1,3_0_1 -21964,2,37.0,0.0,6,111,450.0,600.0,0.0,54,37,0.0,0.0,621.9784024091688,1150.0,172.03270041901916,1088.1917405084694,12,1,2,2,1,1,2,2,2,2,20.0,2,,4,116734,1,3,0,0,1,,0.0,585.0,43,2.0,0.0,4.0,3.0,1.8,1,1,2532.79003713971,450.0,38710.26336917364,1,1,2,3,95.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.029707883643999847,21505.701871763133,6,3,6,6_0,6_3,6_0_0 -21965,2,31.0,0.0,2,111,455.0,0.0,0.0,56,63,0.0,0.0,628.8892735470484,455.0,0.0,0.0,60,2,1,2,1,2,2,2,2,2,15.0,2,,2,100205,1,3,0,1,1,1131.0,0.0,370.0,43,2.0,0.0,3.0,2.0,1.5,1,1,249.099975156162,455.0,35828.360467330545,1,1,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.012699436816677215,23885.57364488703,6,3,6,6_0,6_3,6_0_1 -21966,2,60.0,0.0,7,111,1133.0,0.0,0.0,77,75,0.0,0.0,1566.0033998435292,1133.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,5,132114,1,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,2136.77505865811,1133.0,47896.55537118724,5,5,0,1,78.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023655145786988473,31931.036914124827,8,4,8,8_0,8_3,8_0_0 -21967,1,39.0,468.0,2,111,480.0,540.0,0.0,0,52,0.0,0.0,663.4436292364467,1020.0,0.0,979.3725664576224,50,0,0,0,0,0,0,0,0,0,,2,,2,129785,1,1,0,1,1,,0.0,560.0,32,1.0,0.0,5.0,4.0,2.1,2,2,246.478430129935,480.0,13068.88048301378,0,4,2,3,105.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07804800122900661,6223.276420482752,1,1,1_1,1_0_1,1_3_1,1_0_1 -21968,2,40.0,0.0,7,111,1080.0,0.0,0.0,0,46,0.0,0.0,1492.748165782005,1095.0,25.804905062852875,0.0,50,2,2,2,2,1,2,2,2,2,20.0,2,,5,133033,2,3,0,0,1,,0.0,540.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2990.75394685686,1080.0,25441.941623107607,0,1,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.043039168009310576,25441.941623107607,7,4,7,7_0,7_3,7_0_0 -21969,2,55.0,0.0,2,111,660.0,768.0,0.0,67,52,0.0,0.0,912.2349902001142,1428.0,0.0,1392.8854278508406,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,122386,2,2,0,1,1,609.0,0.0,314.0,43,2.0,4.0,4.0,3.0,2.0,1,1,262.385128343365,660.0,30239.494920194815,4,1,2,3,80.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04722301095863675,15119.747460097407,3,2,3_0,3_0_0,3_3_0,3_0_1 -21970,2,48.0,0.0,7,111,1200.0,0.0,0.0,0,47,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,110158,2,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2544.16531196995,1200.0,38207.03307242387,0,1,0,1,83.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03140783001195941,38207.03307242387,9,5,9,9_0,9_3,9_0_0 -21971,1,42.0,306.0,2,111,600.0,600.0,0.0,85,55,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,101507,1,3,0,1,2,97.0,0.0,391.0,42,1.0,0.0,5.0,5.0,2.8,1,1,245.640353514708,600.0,22907.033577625283,6,1,2,3,83.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05238565683040314,8181.083420580459,1,1,1_1,1_0_1,1_3_1,1_0_1 -21972,2,32.0,0.0,9,111,0.0,0.0,0.0,46,48,0.0,0.0,0.0,422.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,118849,2,1,0,1,1,800.0,0.0,795.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1970.24727751676,0.0,46542.598210267635,1,1,2,3,93.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00906696265845562,22163.14200488935,6,3,6,6_0,6_3,6_0_0 -21973,2,57.0,0.0,2,111,190.0,0.0,0.0,0,62,0.0,0.0,262.6131032394268,190.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,107582,2,1,0,1,1,744.0,0.0,259.0,12,1.0,1.0,4.0,1.0,1.0,2,2,264.48010690762,190.0,19271.048374900678,0,1,2,3,70.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009859349439829282,19271.048374900678,5,3,5,5_0,5_3,5_0_1 -21974,1,37.0,237.0,7,111,480.0,0.0,0.0,0,45,0.0,0.0,663.4436292364467,660.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,5,110406,2,1,0,1,1,834.0,0.0,504.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2219.80112879282,480.0,37923.67952741373,0,1,2,3,77.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017403374572947453,23702.29970463358,6,3,6,6_0,6_3,6_0_0 -21975,2,69.0,0.0,6,111,780.0,2300.0,0.0,75,75,0.0,51.75862524097289,1078.0958975092258,3130.0,0.0,4171.401671949133,70,0,0,0,0,0,0,0,0,0,,1,,4,113715,2,2,2,0,1,,400.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1843.53831954214,780.0,49103.27069902646,5,5,0,1,210.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06374320804789194,32735.513799350974,8,4,8,8_1,8_3,8_0_0 -21976,2,41.0,0.0,2,111,600.0,930.0,0.0,52,67,0.0,0.0,829.3045365455583,1530.0,0.0,1686.6971977881274,71,0,0,0,0,0,0,0,0,0,,2,,2,102257,2,1,0,1,1,906.0,0.0,282.0,43,3.0,0.0,3.0,5.0,2.8,1,1,232.784037437373,600.0,54996.50493720338,1,1,2,3,69.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027819949681293362,19641.608906144065,5,3,5,5_0,5_3,5_0_1 -21977,2,49.0,0.0,2,111,240.0,860.0,0.0,0,67,0.0,0.0,331.72181461822333,1100.0,0.0,1559.741494728806,31,2,2,2,2,1,2,2,2,2,10.0,2,,2,120806,1,3,0,0,2,,0.0,491.0,12,1.0,0.0,3.0,1.0,1.0,1,1,328.536476491304,240.0,25372.774156743904,0,1,2,3,65.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.043353556580159276,25372.774156743904,7,4,7,7_0,7_3,7_0_1 -21978,2,28.0,0.0,6,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,281.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,4,118135,2,1,0,0,1,,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2440.04253657162,0.0,22932.832794854792,0,1,2,3,72.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01225317441214873,22932.832794854792,6,3,6,6_0,6_3,6_0_0 -21979,1,19.0,384.0,2,111,600.0,240.0,0.0,0,67,0.0,0.0,829.3045365455583,840.0,0.0,435.27669620338776,10,0,0,0,0,0,0,0,0,0,,2,,2,113930,1,3,0,1,1,1045.0,0.0,346.0,22,2.0,2.0,5.0,5.0,2.8,2,2,227.928468706355,600.0,20017.39028744243,0,1,2,3,85.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041963512123104264,7149.067959800868,1,1,1_1,1_0_1,1_3_1,1_0_1 -21980,2,54.0,0.0,1,111,0.0,0.0,0.0,23,23,0.0,0.0,0.0,611.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,124745,2,2,0,0,1,,699.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,2225.24107040087,0.0,136843.138492817,1,1,0,1,100.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004464966287162961,91228.75899521133,10,5,10,10_0,10_3,10_1_0 -21981,2,36.0,0.0,2,111,240.0,130.0,0.0,52,68,1194.8679016144006,0.0,331.72181461822333,1170.0,0.0,235.77487711016835,20,0,0,0,0,0,0,0,0,0,,2,,2,116456,2,1,0,1,1,800.0,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,1,1,296.610968222941,240.0,38887.80733641042,1,1,2,3,72.0,9,7,4,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030086551033298707,21604.3374091169,6,3,6,6_0,6_3,6_0_1 -21982,2,44.0,0.0,7,111,450.0,0.0,0.0,46,64,2240.377315527001,0.0,621.9784024091688,1950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,108227,2,1,2,0,1,,220.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,1444.82657387875,450.0,41214.21762021312,1,1,1,2,105.0,9,7,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04731376967941376,16485.68704808525,4,2,4_0,4_1_0,4_3_0,4_0_0 -21983,1,27.0,407.0,2,111,300.0,840.0,0.0,0,55,0.0,0.0,414.65226827277917,1140.0,0.0,1523.468436711857,42,2,2,2,2,2,2,1,2,0,,2,,2,109439,2,2,0,1,1,840.0,0.0,378.0,32,1.0,0.0,4.0,3.0,1.6,2,2,291.28625864432,300.0,9498.993155390841,0,4,2,3,80.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.12001271938521511,5936.870722119275,1,1,1_1,1_0_1,1_3_1,1_0_1 -21984,1,40.0,377.0,2,111,315.0,0.0,0.0,0,52,0.0,0.0,435.3848816864181,435.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131597,1,2,0,1,1,1128.0,0.0,496.0,32,1.0,0.0,5.0,2.0,1.3,2,2,2468.11927211623,315.0,12980.128477186237,0,1,2,3,80.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03351276536010813,9984.714213220183,2,1,2_1,2_0_1,2_3_1,2_0_1 -21985,2,51.0,0.0,5,111,0.0,200.0,0.0,68,52,0.0,0.0,0.0,509.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,3,35.0,2,,3,124988,2,1,0,1,1,912.0,0.0,400.0,43,2.0,5.0,3.0,2.0,1.5,2,2,285.733240961963,0.0,36020.49479309036,1,1,2,3,50.0,9,7,4,0,1,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014130844201996888,24013.663195393572,6,3,6,6_0,6_3,6_0_0 -21986,0,75.0,0.0,5,111,250.0,0.0,0.0,0,77,5227.547069563002,0.0,345.54355689398267,3830.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,131045,2,2,3,0,1,,250.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1622.97969691214,250.0,18501.902051368896,0,5,0,1,85.0,9,7,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2070057440238492,18501.902051368896,4,2,4_0,4_1_0,4_3_0,4_0_0 -21987,1,76.0,218.0,5,111,240.0,0.0,0.0,0,77,896.1509262108004,0.0,331.72181461822333,840.0,0.0,0.0,10,2,1,2,2,1,2,2,2,0,,2,,3,105910,2,2,0,1,1,550.0,0.0,378.0,11,0.0,5.0,3.0,1.0,1.0,2,2,270.179954241759,240.0,10346.329167026242,0,5,2,3,50.0,9,7,4,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,0,0,1,0.08118821530220405,10346.329167026242,2,1,2_1,2_0_1,2_3_1,2_0_0 -21988,2,56.0,0.0,5,111,2400.0,0.0,0.0,56,63,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,3,110814,2,1,2,0,1,,300.0,,43,3.0,3.0,5.0,3.0,2.0,2,2,1562.5822707974,2400.0,47898.441136266294,1,1,0,1,120.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050106014790173216,23949.220568133147,6,3,6,6_1,6_3,6_0_0 -21989,2,49.0,0.0,2,111,520.0,0.0,0.0,46,47,2987.1697540360015,248.44140115666985,718.7305983394839,2760.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,131533,2,3,3,0,1,,400.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,1719.10198577649,520.0,45069.869521969755,1,1,0,1,100.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06123825139219918,22534.934760984877,6,3,6,6_1,6_3,6_0_1 -21990,2,47.0,0.0,2,111,138.0,150.0,0.0,0,67,0.0,0.0,190.74004340547842,288.0,0.0,272.04793512711734,50,2,2,2,2,1,2,2,2,0,,2,,2,127845,1,1,0,1,1,307.0,0.0,345.0,22,1.0,2.0,4.0,3.0,2.0,1,1,268.862329568028,138.0,47552.27590458942,0,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.006056492450074387,23776.13795229471,6,3,6,6_0,6_3,6_0_1 -21991,2,46.0,0.0,9,111,200.0,0.0,0.0,0,63,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,105676,2,1,0,1,1,380.0,0.0,322.0,12,1.0,1.0,2.0,1.0,1.0,2,2,2096.54152224574,200.0,17269.497489338,0,1,2,3,45.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011581112891297377,17269.497489338,4,2,4_0,4_0_0,4_3_0,4_0_0 -21992,1,24.0,270.0,2,111,600.0,600.0,0.0,0,67,0.0,0.0,829.3045365455583,1252.0,89.45700421788997,1088.1917405084694,12,2,1,2,1,1,2,2,2,0,,2,,2,119615,1,1,0,1,1,609.0,0.0,352.0,22,3.0,0.0,4.0,4.0,2.5,2,2,235.493618032576,600.0,42818.864648456656,0,1,2,3,96.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.0292394487868591,17127.545859382662,4,2,4_1,4_0_1,4_3_1,4_0_1 -21993,2,58.0,0.0,2,111,1021.0,0.0,0.0,54,48,567.5622532668402,15.527587572291866,1411.199886355025,1511.0,163.4310653980682,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,121480,2,1,2,0,1,,478.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,1536.44822006502,1021.0,52040.04295817606,1,1,0,1,140.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02903533344917436,34693.361972117375,9,5,9,9_1,9_3,9_0_1 -21994,1,48.0,380.0,2,111,720.0,240.0,0.0,65,68,0.0,0.0,995.16544385467,960.0,0.0,435.27669620338776,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,133167,2,2,0,1,1,636.0,0.0,323.0,43,3.0,0.0,4.0,6.0,3.3,4,4,271.344401832477,720.0,38211.35551075672,4,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025123421746442737,11579.19863962325,2,1,2_1,2_0_1,2_3_1,2_0_1 -21995,2,65.0,0.0,5,111,540.0,0.0,0.0,0,77,0.0,0.0,746.3740828910024,720.0,309.6588607542345,0.0,70,2,2,2,1,2,2,2,2,0,,2,,3,131148,1,2,0,1,1,811.0,0.0,465.0,31,1.0,0.0,3.0,2.0,1.5,5,3,268.670118633132,540.0,36883.7007198143,0,5,2,3,72.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.019520817758213963,24589.13381320953,7,4,7,7_0,7_3,7_0_0 -21996,2,60.0,0.0,2,111,735.0,0.0,0.0,0,77,0.0,0.0,1015.898057268309,735.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,103968,1,1,2,0,1,,191.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,1581.94435433519,735.0,18059.11086771974,0,5,0,1,80.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04069967815047839,18059.11086771974,4,2,4_0,4_1_0,4_3_0,4_0_1 -21997,1,41.0,321.0,2,111,270.0,0.0,0.0,56,64,0.0,0.0,373.1870414455012,382.0,192.67662446930146,0.0,71,1,2,2,1,1,2,2,2,1,15.0,2,,2,108047,1,3,0,1,1,783.0,0.0,353.0,43,2.0,0.0,4.0,4.0,2.1,2,2,248.075876367633,270.0,14460.177743046062,4,1,2,3,69.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.026417379287312342,6885.798925260029,1,1,1_1,1_0_1,1_3_1,1_0_1 -21998,2,51.0,0.0,8,111,1400.0,0.0,0.0,85,55,0.0,0.0,1935.0439186063027,2900.0,2580.4905062852877,0.0,42,0,0,0,0,0,0,0,0,3,30.0,1,2000.0,6,108201,2,1,1,0,1,,700.0,,42,2.0,1.0,5.0,4.0,2.5,1,1,1518.61870074624,1400.0,15702.784461086194,7,1,1,2,120.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18468062191050422,6281.113784434478,1,1,1_0,1_1_0,1_3_0,1_0_0 -21999,2,56.0,0.0,2,111,300.0,0.0,0.0,62,65,0.0,0.0,414.65226827277917,300.0,0.0,0.0,41,1,2,2,1,1,2,2,2,2,20.0,2,,2,118699,1,1,0,1,1,768.0,0.0,315.0,43,2.0,1.0,3.0,2.0,1.5,1,1,249.099975156162,300.0,37244.824226585915,1,1,2,3,45.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.008054810466412552,24829.882817723945,7,4,7,7_0,7_3,7_0_1 -22000,1,70.0,38.0,2,111,330.0,180.0,0.0,78,78,0.0,0.0,456.1174951000571,510.0,0.0,326.4575221525408,60,1,1,2,2,1,2,2,2,0,,2,,2,112200,1,1,0,1,1,531.0,0.0,284.0,41,0.0,7.0,3.0,2.0,1.5,2,2,270.670587429505,330.0,17079.04476769486,5,5,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.029861154820828666,11386.029845129908,2,1,2_1,2_0_1,2_3_1,2_0_1 -22001,2,63.0,0.0,2,111,330.0,336.0,0.0,0,77,0.0,0.0,456.1174951000571,666.0,0.0,609.3873746847428,31,2,2,2,1,1,2,2,2,0,,2,,2,122658,2,1,0,1,1,380.0,0.0,304.0,11,0.0,1.0,3.0,1.0,1.0,1,1,287.38254933677,330.0,18713.4014804806,0,5,2,3,63.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0.03558946783109875,18713.4014804806,5,3,5,5_0,5_3,5_0_1 -22002,0,70.0,0.0,5,111,645.0,0.0,0.0,0,78,0.0,507.23452736153433,891.5023767864752,1195.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131019,2,1,2,0,1,,120.0,,11,0.0,5.0,7.0,1.0,1.0,2,2,1643.89987616758,645.0,19218.810800416148,0,5,0,1,107.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06217866508026212,19218.810800416148,5,3,5,5_1,5_3,5_0_0 -22003,2,37.0,0.0,2,111,270.0,0.0,0.0,0,53,0.0,0.0,373.1870414455012,768.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,15.0,2,,2,109725,2,1,0,1,1,50.0,0.0,250.0,12,1.0,1.0,2.0,1.0,1.0,3,2,272.033250931265,270.0,33162.79690990703,0,1,2,3,49.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023158480935320875,33162.79690990703,8,4,8,8_0,8_3,8_0_1 -22004,2,23.0,0.0,9,111,600.0,816.0,0.0,47,63,0.0,0.0,829.3045365455583,1416.0,0.0,1479.9407670915184,50,0,0,0,0,0,0,0,0,1,5.0,2,2004.0,6,109024,2,1,0,1,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1900.29503467629,600.0,30918.808427161457,1,1,1,2,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045797366458536506,20612.538951440973,5,3,5,5_0,5_3,5_0_0 -22005,2,84.0,0.0,2,111,192.0,0.0,0.0,0,77,0.0,0.0,265.37745169457867,192.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109694,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,301.196761670772,192.0,14851.554292616484,0,5,0,1,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012927939811353864,14851.554292616484,3,2,3_0,3_0_0,3_3_0,3_0_1 -22006,0,63.0,0.0,1,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,857.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,8,,1,125786,2,1,0,0,1,,0.0,,43,2.0,4.0,3.0,2.0,1.5,2,2,2141.71723246977,0.0,22922.09783004572,1,1,5,0,70.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.037387502939485125,15281.398553363813,3,2,3_0,3_0_0,3_3_0,3_1_0 -22007,2,51.0,0.0,2,111,390.0,1500.0,0.0,0,62,0.0,0.0,539.0479487546129,1890.0,0.0,2720.4793512711735,70,2,2,2,2,1,2,2,2,0,,2,,2,115823,1,2,0,0,1,,0.0,530.0,12,1.0,2.0,4.0,1.0,1.0,1,1,283.39718563858,390.0,19606.54701530125,0,4,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.09639637201415502,19606.54701530125,5,3,5,5_0,5_3,5_0_1 -22008,2,75.0,0.0,5,111,139.0,100.0,0.0,0,77,0.0,0.0,192.12221763305433,239.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,3,115857,2,2,0,1,1,339.0,0.0,260.0,11,0.0,5.0,2.0,1.0,1.0,3,3,275.103890549778,139.0,15677.534071483838,0,5,2,3,45.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015244744416452686,15677.534071483838,3,2,3_0,3_0_0,3_3_0,3_0_0 -22009,2,61.0,0.0,5,111,1200.0,0.0,0.0,78,74,0.0,621.1035028916747,1658.6090730911167,2000.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,103600,2,1,2,0,1,,250.0,,41,0.0,1.0,6.0,2.0,1.5,3,2,1580.80632324822,1200.0,46236.29202822384,5,5,0,1,135.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04325606384653743,30824.194685482562,8,4,8,8_1,8_3,8_0_0 -22010,1,31.0,170.0,2,111,420.0,0.0,0.0,85,54,0.0,0.0,580.5131755818909,1110.0,412.878481005646,0.0,70,2,1,2,1,1,2,2,2,2,15.0,2,,2,117754,2,1,0,1,1,1045.0,0.0,351.0,42,1.0,0.0,5.0,5.0,2.4,1,1,262.250624348408,420.0,27012.39324972615,6,1,2,3,80.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.041092249388574746,11255.163854052562,2,1,2_1,2_0_1,2_3_1,2_0_1 -22011,1,63.0,33.0,2,111,203.0,120.0,0.0,0,77,0.0,0.0,280.5813681979139,323.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,2,123615,2,1,0,1,1,329.0,0.0,247.0,11,0.0,2.0,2.0,1.0,1.0,3,2,273.56007104595,203.0,13788.471453044906,0,5,2,3,44.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023425366698545252,13788.471453044906,3,2,3_1,3_0_1,3_3_1,3_0_1 -22012,2,33.0,0.0,1,111,344.0,0.0,0.0,64,46,2987.1697540360015,0.0,475.4679342861201,2344.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,112059,2,1,1,0,1,,135.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1523.6997456744,344.0,56516.99598541034,1,1,1,2,120.0,9,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041474249632890876,24572.60695017841,7,4,7,7_1,7_3,7_1_0 -22013,1,45.0,160.0,5,111,400.0,0.0,0.0,63,62,0.0,0.0,552.8696910303722,1056.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,101230,1,2,0,1,1,,0.0,554.0,43,2.0,0.0,4.0,4.0,2.1,3,3,234.475667150579,400.0,21838.975637507785,1,1,2,3,75.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04835391629753694,10399.51220833704,2,1,2_1,2_0_1,2_3_1,2_0_0 -22014,2,71.0,0.0,5,111,2500.0,0.0,0.0,75,74,0.0,414.0690019277831,3455.435568939826,2900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,103613,2,1,2,0,1,,300.0,,41,1.0,0.0,5.0,3.0,2.0,2,2,1721.4872692973,2500.0,90718.79908950433,5,5,0,1,170.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031966913463424736,45359.39954475217,10,5,10,10_1,10_3,10_0_0 -22015,1,48.0,31.0,6,111,600.0,240.0,0.0,68,53,0.0,0.0,829.3045365455583,840.0,0.0,435.27669620338776,50,2,1,2,2,1,2,2,2,2,15.0,2,,4,105574,2,1,0,1,1,720.0,0.0,281.0,43,2.0,3.0,3.0,3.0,1.8,1,1,298.366727873271,600.0,26481.249130620363,1,1,2,3,63.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03172055803926201,14711.805072566867,3,2,3_1,3_0_1,3_3_1,3_0_0 -22016,2,57.0,0.0,5,111,600.0,0.0,0.0,77,68,0.0,0.0,829.3045365455583,979.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,4,25.0,2,,3,122209,2,2,0,1,1,,103.0,395.0,42,1.0,2.0,4.0,3.0,2.0,2,2,309.104799988758,600.0,29435.209871984873,5,1,2,3,84.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033259487676755746,14717.604935992436,3,2,3_0,3_0_0,3_3_0,3_0_0 -22017,2,67.0,0.0,2,111,836.0,1309.0,0.0,46,46,0.0,0.0,1155.497654253478,2145.0,0.0,2374.0716472093104,70,0,0,0,0,0,0,0,0,0,,1,,2,120443,2,1,2,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1539.40184855685,836.0,54698.29534072867,1,5,0,1,120.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03921511605870504,36465.53022715245,9,5,9,9_1,9_3,9_0_1 -22018,1,22.0,271.0,2,111,300.0,300.0,0.0,0,64,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,70,2,2,2,2,1,2,2,2,0,,2,,2,115548,1,3,0,1,1,1131.0,0.0,304.0,22,1.0,3.0,3.0,2.0,1.5,1,1,242.273322925712,300.0,19431.297351065678,0,1,2,3,68.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.030878020605613038,12954.198234043784,2,1,2_1,2_0_1,2_3_1,2_0_1 -22019,2,63.0,0.0,2,111,1990.0,0.0,0.0,78,78,0.0,0.0,2750.526712876102,1990.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,132808,2,1,2,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1543.82191064184,1990.0,29845.017983576214,5,5,0,1,120.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06667779530557166,19896.678655717475,5,3,5,5_1,5_3,5_0_1 -22020,1,44.0,266.0,2,111,328.0,150.0,0.0,0,55,0.0,0.0,453.3531466449052,478.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,0,,2,,2,121594,1,1,0,1,1,796.0,0.0,508.0,32,2.0,0.0,4.0,3.0,2.0,2,2,263.405355658539,328.0,18717.47478614305,0,4,2,3,77.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025537632905154154,9358.737393071526,1,1,1_1,1_0_1,1_3_1,1_0_1 -22021,2,44.0,0.0,8,111,1900.0,0.0,0.0,48,46,0.0,0.0,2626.131032394268,1960.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,129389,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1573.45835976964,1900.0,61785.68121576291,1,1,1,2,130.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03172256033166403,29421.7529598871,8,4,8,8_1,8_3,8_0_0 -22022,1,46.0,432.0,2,111,540.0,240.0,0.0,85,68,0.0,0.0,746.3740828910024,1092.0,0.0,435.27669620338776,10,1,1,2,2,1,2,2,1,0,,2,,2,124858,2,1,0,1,1,33.0,1200.0,348.0,42,1.0,2.0,4.0,7.0,3.1999999999999993,4,2,257.581977965965,540.0,24035.29106628242,6,1,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.045433192258357846,7511.028458213258,1,1,1_1,1_0_1,1_3_1,1_0_1 -22023,1,38.0,250.0,2,111,385.0,0.0,0.0,0,34,0.0,0.0,532.1370776167332,1303.0,0.0,0.0,71,2,1,2,2,2,1,2,2,0,,2,,2,131613,1,3,0,1,1,720.0,0.0,318.0,22,2.0,1.0,3.0,2.0,1.5,2,1,249.099975156162,385.0,14788.908825517306,0,4,2,3,67.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08810656792688841,9859.272550344871,2,1,2_1,2_0_1,2_3_1,2_0_1 -22024,2,53.0,0.0,1,111,500.0,870.0,0.0,54,64,0.0,1345.724256265295,691.0871137879653,2670.0,0.0,1577.8780237372805,31,0,0,0,0,0,0,0,0,0,,1,,1,131661,2,1,1,0,1,,240.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,1617.14131587525,500.0,72542.32194544422,1,1,0,1,100.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03680610060990308,36271.16097272211,9,5,9,9_1,9_3,9_1_0 -22025,2,41.0,0.0,5,111,600.0,0.0,0.0,85,65,0.0,0.0,829.3045365455583,617.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,117843,2,2,0,1,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,1,1,265.94409862012,600.0,51473.27383299324,6,1,1,2,85.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01198680313208515,21447.19743041385,6,3,6,6_0,6_3,6_0_0 -22026,2,73.0,0.0,2,111,960.0,2400.0,0.0,77,78,0.0,0.0,1326.8872584728933,3455.0,163.4310653980682,4352.7669620338775,70,0,0,0,0,0,0,0,0,0,,1,,2,124288,1,2,3,0,1,,400.0,,41,0.0,5.0,6.0,2.0,1.5,1,1,1579.26730980054,960.0,24255.071569378517,5,5,1,2,182.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14244443641889146,16170.047712919011,4,2,4_0,4_1_0,4_3_0,4_0_1 -22027,2,41.0,0.0,8,112,900.0,0.0,0.0,85,12,0.0,414.0690019277831,1243.9568048183376,1390.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111154,2,1,1,0,1,,240.0,,42,2.0,0.0,6.0,5.0,2.8,2,2,938.480115232898,900.0,50759.439864470616,6,1,1,2,140.0,9,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027384068928091917,18128.37138016808,4,2,4_0,4_1_0,4_0_0,4_0_0 -22028,2,65.0,0.0,5,111,480.0,0.0,0.0,78,75,0.0,0.0,663.4436292364467,721.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,102728,2,1,2,1,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,217.614969940269,480.0,30798.357086293567,5,5,0,1,120.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02341033964830781,20532.238057529044,5,3,5,5_1,5_3,5_0_0 -22029,2,65.0,0.0,1,112,600.0,0.0,0.0,0,75,2987.1697540360015,414.0690019277831,829.3045365455583,3000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106762,2,2,4,0,1,,0.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1144.18306663271,600.0,36394.135176018004,0,5,0,1,130.0,9,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08243086380513465,36394.135176018004,9,5,9,9_1,9_0,9_1_0 -22030,1,42.0,89.0,5,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,1456.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,110851,1,3,0,1,1,100.0,0.0,333.0,42,1.0,0.0,4.0,4.0,2.1,1,1,254.903585866164,0.0,25093.037511512208,6,4,2,3,79.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05802406342125838,11949.06548167248,2,1,2_1,2_0_1,2_3_1,2_0_0 -22031,2,71.0,0.0,1,112,1272.0,0.0,0.0,77,74,0.0,362.31037668681023,1758.1256174765836,1982.0,619.317721508469,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117904,2,1,4,0,1,,650.0,,41,0.0,0.0,7.0,3.0,2.0,2,2,1231.19983130308,1272.0,71222.30878682461,5,5,0,1,165.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027828359312702448,35611.154393412304,9,5,9,9_1,9_0,9_1_0 -22032,1,39.0,270.0,5,111,420.0,100.0,0.0,0,22,0.0,0.0,580.5131755818909,520.0,0.0,181.36529008474488,10,2,1,2,2,1,2,2,2,0,,2,,3,106542,2,1,0,1,1,866.0,0.0,341.0,12,1.0,0.0,3.0,1.0,1.0,1,1,318.951664134108,420.0,6060.0,0,4,2,3,96.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0858085808580858,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -22033,2,66.0,0.0,2,111,250.0,0.0,0.0,0,75,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127941,1,3,0,1,1,651.0,0.0,350.0,21,0.0,0.0,3.0,2.0,1.5,4,3,275.25943258784,250.0,39305.740928006264,0,5,2,3,63.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006360394031444631,26203.82728533751,7,4,7,7_0,7_3,7_0_1 -22034,2,74.0,0.0,2,112,500.0,0.0,0.0,75,77,3733.962192545002,931.655254337512,691.0871137879653,3930.0,51.60981012570575,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,129409,2,2,4,0,2,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1067.43345087066,500.0,31870.449763023968,5,5,0,1,100.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12331172070748679,21246.966508682646,5,3,5,5_1,5_0,5_0_1 -22035,2,34.0,0.0,1,112,540.0,0.0,0.0,0,47,0.0,0.0,746.3740828910024,540.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,102887,1,2,0,1,1,609.0,0.0,300.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1844.42382646086,540.0,21953.9112992311,0,1,2,3,90.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02459698377386232,21953.9112992311,6,3,6,6_0,6_0,6_1_0 -22036,2,36.0,0.0,1,112,1300.0,0.0,0.0,42,64,0.0,828.1380038555662,1796.8264958487098,2160.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,106990,2,1,1,0,1,,250.0,,43,2.0,0.0,10.0,4.0,2.1,2,2,1107.3725854763,1300.0,49624.85564350378,1,1,1,2,200.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043526574979221286,23630.883639763706,6,3,6,6_1,6_0,6_1_0 -22037,0,69.0,0.0,2,112,550.0,0.0,0.0,0,78,2389.735803228801,0.0,760.1958251667618,2150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130303,2,2,2,0,2,,400.0,,11,0.0,1.0,5.0,1.0,1.0,3,2,1111.31845759985,550.0,12685.038602959807,0,5,0,1,110.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16949100962911845,12685.038602959807,2,1,2_0,2_1_0,2_0_0,2_0_1 -22038,2,57.0,0.0,2,111,576.0,0.0,0.0,78,52,0.0,0.0,796.132355083736,576.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,10.0,2,,2,123938,2,1,0,1,1,504.0,0.0,310.0,42,1.0,4.0,3.0,2.0,1.5,2,2,253.591062408501,576.0,34505.057469446234,5,1,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016693205061606993,23003.371646297488,6,3,6,6_0,6_3,6_0_1 -22039,2,38.0,0.0,2,111,392.0,0.0,0.0,0,54,0.0,0.0,541.8122972097648,392.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,121605,1,2,0,1,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,3,1,280.960657621418,392.0,28054.957370721484,0,1,1,2,81.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013972575143140166,21580.736439016524,6,3,6,6_0,6_3,6_0_1 -22040,2,77.0,0.0,1,112,720.0,0.0,0.0,0,77,5227.547069563002,0.0,995.16544385467,4250.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105434,1,1,1,0,1,,240.0,,11,0.0,3.0,7.0,1.0,1.0,2,2,1221.2501634625,720.0,21682.116425132488,0,5,0,1,160.0,9,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.19601407522531697,21682.116425132488,6,3,6,6_1,6_0,6_1_0 -22041,2,42.0,0.0,7,112,700.0,0.0,0.0,52,63,1344.2263893162005,828.1380038555662,967.5219593031513,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,126677,2,1,1,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1143.19789852054,700.0,38269.126007896266,1,1,1,2,130.0,9,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0627137395169358,18223.39333709346,4,2,4_0,4_1_0,4_0_0,4_0_0 -22042,2,80.0,0.0,2,111,180.0,348.0,0.0,0,77,0.0,0.0,248.7913609636675,528.0,0.0,631.1512094949122,71,0,0,0,0,0,0,0,0,0,,2,,2,115926,2,2,0,1,1,561.0,0.0,208.0,11,0.0,4.0,3.0,1.0,1.0,3,2,270.975680550572,180.0,16811.5750594377,0,5,2,3,64.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03140693231498204,16811.5750594377,4,2,4_0,4_0_0,4_3_0,4_0_1 -22043,2,45.0,0.0,5,111,261.0,132.0,0.0,0,63,0.0,0.0,360.7474733973179,393.0,0.0,239.40218291186326,50,2,2,2,2,1,2,2,2,0,,2,,3,129919,2,2,0,1,1,,104.0,,22,1.0,2.0,3.0,2.0,1.5,2,2,283.201605044435,261.0,37863.23362924262,0,1,1,2,67.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.010379462141249272,25242.155752828414,7,4,7,7_0,7_3,7_0_0 -22044,2,44.0,0.0,2,112,235.0,0.0,0.0,85,62,2837.8112663342013,155.27587572291867,324.81094348034367,2355.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,2,129980,2,1,4,0,1,,340.0,,42,1.0,2.0,6.0,4.0,2.1,1,1,1012.82358547196,235.0,24836.93557848432,5,1,0,1,120.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09481846069770715,11827.112180230628,2,1,2_0,2_1_0,2_0_0,2_0_1 -22045,2,61.0,0.0,2,111,276.0,108.0,0.0,0,78,0.0,0.0,381.48008681095683,384.0,0.0,195.8745132915245,70,2,2,1,2,2,2,2,1,0,,2,,2,102739,2,1,0,1,1,122.0,0.0,466.0,11,0.0,1.0,5.0,1.0,1.0,1,1,233.185750540489,276.0,21719.268649139274,0,5,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01768015333311961,21719.268649139274,6,3,6,6_0,6_3,6_0_1 -22046,2,53.0,0.0,1,112,388.0,0.0,0.0,74,45,0.0,258.79312620486445,536.2836002994611,698.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,1,7.0,1,,1,109882,2,1,2,0,1,,475.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,1133.54635980873,388.0,79495.8469722592,5,1,0,1,130.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008780332892655052,52997.23131483947,10,5,10,10_1,10_0,10_1_0 -22047,2,58.0,0.0,2,111,0.0,0.0,0.0,56,46,0.0,0.0,0.0,1968.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,130376,2,1,0,0,1,,0.0,550.0,43,2.0,1.0,4.0,2.0,1.5,1,1,310.602939039304,0.0,28346.82421058807,1,1,2,3,70.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06942576654724218,18897.882807058715,5,3,5,5_0,5_3,5_0_1 -22048,0,93.0,0.0,2,112,0.0,0.0,0.0,77,78,3733.962192545002,0.0,0.0,3100.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,122793,2,1,3,0,1,,300.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1064.29459999037,0.0,22709.852753457155,5,5,0,1,100.0,9,0,4,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1365046279099314,15139.901835638104,3,2,3_0,3_1_0,3_0_0,3_0_1 -22049,0,49.0,0.0,5,111,120.0,0.0,0.0,0,56,0.0,0.0,165.86090730911167,147.0,46.448829113135176,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,111382,2,1,0,0,1,1250.0,0.0,,12,1.0,3.0,2.0,1.0,1.0,3,3,332.22533905767,120.0,18734.439138680333,0,1,5,0,47.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007846511919136896,18734.439138680333,5,3,5,5_0,5_3,5_0_0 -22050,1,37.0,25.0,8,112,400.0,0.0,0.0,62,56,0.0,51.75862524097289,552.8696910303722,450.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2001.0,6,116155,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,2,1,968.641840986463,400.0,36475.96143439554,1,1,1,2,98.0,9,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.012336892087391724,11766.439172385659,2,1,2_1,2_1_1,2_0_1,2_0_0 -22051,1,22.0,377.0,2,111,420.0,114.0,0.0,0,55,0.0,0.0,580.5131755818909,534.0,0.0,206.7564306966092,71,2,2,1,2,1,1,2,2,0,,2,,2,123565,1,3,0,1,1,720.0,0.0,361.0,22,3.0,0.0,4.0,4.0,2.5,3,2,248.075876367633,420.0,36358.93323846544,0,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.014686899543990524,14543.573295386177,3,2,3_1,3_0_1,3_3_1,3_0_1 -22052,2,53.0,0.0,2,111,180.0,1445.0,0.0,48,48,0.0,0.0,248.7913609636675,1625.0,0.0,2620.7284417245637,60,2,2,2,2,1,2,2,2,2,15.0,2,,2,129146,2,1,0,0,1,,0.0,700.0,43,2.0,2.0,3.0,2.0,1.5,3,3,325.726497709651,180.0,38879.62564390196,1,1,2,3,83.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04179566991933914,25919.750429267977,7,4,7,7_0,7_3,7_0_1 -22053,2,66.0,0.0,1,111,210.0,200.0,0.0,0,77,0.0,0.0,290.25658779094545,410.0,0.0,362.73058016948977,10,0,0,0,0,0,0,0,0,0,,2,,1,126587,2,1,0,1,1,1064.0,0.0,470.0,11,0.0,5.0,5.0,1.0,1.0,2,2,312.055123018012,210.0,18066.625465725556,0,5,2,3,100.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022693778690315834,18066.625465725556,4,2,4_0,4_0_0,4_3_0,4_1_0 -22054,2,58.0,0.0,1,112,1100.0,0.0,0.0,0,33,1792.3018524216009,310.55175144583734,1520.3916503335236,2630.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,105.0,1,,1,109665,1,2,3,0,1,,240.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1144.18306663271,1100.0,56951.722461150166,0,1,0,1,120.0,9,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04617946369917195,56951.722461150166,10,5,10,10_1,10_0,10_1_0 -22055,2,40.0,0.0,1,111,660.0,1314.0,0.0,54,35,0.0,0.0,912.2349902001142,1974.0,0.0,2383.139911713548,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,103258,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,306.587435347159,660.0,54127.52484714698,1,1,1,2,88.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03646943039746344,30070.847137303877,8,4,8,8_0,8_3,8_1_0 -22056,2,62.0,0.0,2,112,1200.0,0.0,0.0,77,75,1792.3018524216009,0.0,1658.6090730911167,2600.0,344.06540083803833,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,109296,1,2,0,1,2,,206.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,1437.95250158723,1200.0,16091.22543832682,7,5,1,2,127.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1615787442643865,10727.483625551213,2,1,2_0,2_0_0,2_0_0,2_0_1 -22057,2,55.0,0.0,2,111,186.0,222.0,0.0,53,46,0.0,0.0,257.0844063291231,408.0,0.0,402.63094398813365,71,2,1,2,1,2,2,2,2,2,45.0,2,,2,114778,1,3,0,1,1,698.0,0.0,426.0,43,2.0,2.0,4.0,2.0,1.5,2,2,239.385496600987,186.0,39592.36609293055,1,1,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010305016857096875,26394.910728620365,7,4,7,7_0,7_3,7_0_1 -22058,2,47.0,0.0,2,112,1500.0,0.0,0.0,55,37,0.0,0.0,2073.261341363896,1600.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,2,127254,2,2,1,0,1,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1034.17835388153,1500.0,104046.91225991468,1,1,0,1,110.0,9,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015377678830133041,69364.60817327646,10,5,10,10_1,10_0,10_0_1 -22059,2,72.0,0.0,7,111,190.0,0.0,0.0,0,77,0.0,0.0,262.6131032394268,190.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,110568,2,1,0,1,1,720.0,0.0,395.0,11,0.0,6.0,2.0,1.0,1.0,2,2,257.244099517492,190.0,20557.021882471297,0,5,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009242583925155545,20557.021882471297,5,3,5,5_0,5_3,5_0_0 -22060,2,52.0,0.0,2,111,293.0,145.0,0.0,0,34,0.0,0.0,404.97704867974767,438.0,0.0,262.97967062288006,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,132457,2,1,0,1,1,299.0,0.0,189.0,12,1.0,0.0,1.0,1.0,1.0,1,1,332.133846786888,293.0,32682.907288239694,0,1,2,3,35.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013401500550032332,32682.907288239694,8,4,8,8_0,8_3,8_0_1 -22061,1,40.0,105.0,8,112,876.0,0.0,0.0,47,56,1493.5848770180007,0.0,1210.784623356515,1996.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,119056,2,1,1,0,1,,600.0,,43,2.0,1.0,7.0,3.0,1.8,1,1,1133.50461116956,876.0,29445.46951920921,4,1,1,2,150.0,9,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06778631934185592,16358.594177338451,4,2,4_1,4_1_1,4_0_1,4_0_0 -22062,2,57.0,0.0,6,112,600.0,0.0,0.0,55,47,1642.9433647198007,414.0690019277831,829.3045365455583,2100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,122734,2,1,3,0,1,,450.0,,43,3.0,0.0,7.0,3.0,2.0,2,2,1199.15198798643,600.0,47859.81938059982,1,1,0,1,140.0,9,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04387814302640774,23929.90969029991,6,3,6,6_1,6_0,6_0_0 -22063,2,50.0,0.0,1,112,855.0,0.0,0.0,54,21,5675.6225326684025,0.0,1181.7589645774206,4655.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,1,123033,2,1,2,0,1,,500.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,1144.10519880626,855.0,144845.83639677402,1,1,0,1,150.0,9,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03213761690221201,72422.91819838701,10,5,10,10_1,10_0,10_1_0 -22064,1,70.0,150.0,2,111,270.0,300.0,0.0,81,86,0.0,0.0,373.1870414455012,702.0,227.0831645531053,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,105484,2,1,0,1,1,1320.0,0.0,354.0,42,1.0,0.0,3.0,2.0,1.5,2,2,270.670587429505,270.0,18834.139238125106,4,5,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037272741330220856,12556.092825416737,2,1,2_1,2_0_1,2_3_1,2_0_1 -22065,2,25.0,0.0,2,111,540.0,720.0,0.0,46,54,0.0,0.0,746.3740828910024,1260.0,0.0,1305.830088610163,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,132496,2,1,0,1,1,912.0,0.0,359.0,43,2.0,0.0,3.0,3.0,1.8,1,1,252.990581335775,540.0,33388.97877842631,1,1,2,3,58.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03773700322976414,18549.432654681284,4,2,4_0,4_0_0,4_3_0,4_0_1 -22066,2,53.0,0.0,1,112,1000.0,0.0,0.0,63,69,0.0,414.0690019277831,1382.1742275759307,1400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,124829,2,2,2,0,1,,400.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1100.66210810338,1000.0,51607.040967414665,1,1,1,2,150.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027128081241549532,34404.693978276446,9,5,9,9_1,9_0,9_1_0 -22067,2,73.0,0.0,1,112,2600.0,0.0,0.0,0,78,0.0,0.0,3593.6529916974196,2600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124474,2,1,2,0,1,,320.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1186.98136027853,2600.0,19661.928885753412,0,5,0,1,110.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13223524584527926,19661.928885753412,5,3,5,5_1,5_0,5_1_0 -22068,1,35.0,283.0,1,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1253.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114171,2,1,0,1,1,744.0,0.0,390.0,32,1.0,0.0,4.0,2.0,1.5,2,2,1564.6777430523,0.0,11173.11288724947,0,4,2,3,80.0,9,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11214421734071069,7448.74192483298,1,1,1_1,1_0_1,1_0_1,1_1_0 -22069,2,56.0,0.0,1,112,0.0,0.0,0.0,0,81,0.0,0.0,0.0,180.0,309.6588607542345,0.0,60,0,0,0,0,0,0,0,0,0,,3,,1,102621,2,1,0,0,1,,0.0,300.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1262.94216200694,0.0,10477.40371998819,0,4,3,4,48.0,9,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017179828592135505,10477.40371998819,2,1,2_0,2_0_0,2_0_0,2_1_0 -22070,1,60.0,336.0,2,111,374.0,230.0,0.0,0,77,0.0,0.0,516.933161113398,604.0,0.0,417.14016719491326,71,2,2,2,1,1,2,2,2,0,,2,,2,105504,1,2,0,1,1,881.0,0.0,301.0,21,0.0,7.0,3.0,3.0,2.0,1,1,275.567596659465,374.0,9902.114902985624,0,7,2,3,63.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.060997070415521604,4951.057451492812,1,1,1_1,1_0_1,1_3_1,1_0_1 -22071,2,65.0,0.0,2,112,480.0,0.0,0.0,54,75,1941.6603401234008,0.0,663.4436292364467,1860.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127847,2,2,2,0,1,,420.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1075.05871800801,480.0,59378.631352173834,1,5,0,1,130.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031324400001211984,39585.75423478256,9,5,9,9_1,9_0,9_0_1 -22072,2,53.0,0.0,2,111,396.0,552.0,0.0,65,54,0.0,0.0,547.3409941200684,948.0,0.0,1001.1364012677918,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,102236,2,1,0,1,1,688.0,0.0,400.0,43,2.0,1.0,4.0,2.0,1.5,2,2,243.876594364307,396.0,27960.54411519053,1,1,2,3,74.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03390491959292617,18640.36274346035,4,2,4_0,4_0_0,4_3_0,4_0_1 -22073,2,66.0,0.0,5,112,290.0,10.0,0.0,72,22,1344.2263893162005,0.0,400.8305259970199,1200.0,0.0,18.13652900847449,42,0,0,0,0,0,0,0,0,0,,8,,3,116728,2,1,0,1,1,,150.0,,42,1.0,1.0,6.0,2.0,1.5,3,2,1443.42046279413,290.0,20069.518478789952,5,1,0,1,80.0,9,0,4,1,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.059792166975415714,13379.678985859968,3,2,3_0,3_0_0,3_0_0,3_0_0 -22074,2,70.0,0.0,2,111,286.0,252.0,0.0,0,77,0.0,0.0,395.3018290867161,538.0,0.0,457.04053101355714,10,0,0,0,0,0,0,0,0,0,,2,,2,107373,2,1,0,1,1,550.0,0.0,359.0,11,0.0,6.0,3.0,1.0,1.0,2,2,272.496564921283,286.0,16748.35714798703,0,5,2,3,57.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0321225535881686,16748.35714798703,4,2,4_0,4_0_0,4_3_0,4_0_1 -22075,1,41.0,416.0,6,111,420.0,415.0,0.0,85,63,0.0,0.0,580.5131755818909,835.0,0.0,752.6659538516913,20,0,0,0,0,0,0,0,0,0,,2,,4,110939,2,1,0,1,1,1108.0,0.0,375.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,4,3,218.36369963361,420.0,27200.06656115452,6,1,3,4,76.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030698454289538255,10461.564061982508,2,1,2_1,2_0_1,2_3_1,2_0_0 -22076,2,60.0,0.0,9,112,1800.0,0.0,0.0,74,74,0.0,310.55175144583734,2487.913609636675,2100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,102199,2,1,1,0,1,,160.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1108.83033572845,1800.0,41374.4275547911,5,5,0,1,168.0,9,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05075598924526565,27582.951703194067,7,4,7,7_1,7_0,7_0_0 -22077,2,51.0,0.0,1,112,780.0,0.0,0.0,56,62,0.0,279.4965763012536,1078.0958975092258,1150.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,110997,2,1,4,0,1,,360.0,,43,4.0,1.0,6.0,4.0,2.5,2,2,1008.59512057673,780.0,57184.682341994136,1,1,1,2,120.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020110280461512437,22873.872936797656,6,3,6,6_1,6_0,6_1_0 -22078,1,28.0,160.0,2,111,420.0,450.0,0.0,85,64,0.0,0.0,580.5131755818909,870.0,0.0,816.143805381352,71,2,1,2,2,1,2,2,2,0,,2,,2,111804,2,2,0,1,1,90.0,0.0,398.0,42,1.0,0.0,3.0,4.0,2.1,1,1,285.500314610873,420.0,20635.341877691673,7,4,2,3,58.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04216067779039485,9826.353275091273,2,1,2_1,2_0_1,2_3_1,2_0_1 -22079,2,61.0,0.0,2,112,1000.0,0.0,0.0,77,63,149.35848770180007,828.1380038555662,1382.1742275759307,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,127559,1,2,2,0,2,,289.0,520.0,42,1.0,2.0,5.0,2.0,1.5,2,2,1244.95113813737,1000.0,20693.146569141765,6,4,2,3,100.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09181783899570578,13795.43104609451,3,2,3_0,3_1_0,3_0_0,3_0_1 -22080,1,41.0,388.0,2,111,500.0,0.0,0.0,0,85,0.0,0.0,691.0871137879653,1011.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,119864,2,1,0,1,1,1133.0,0.0,352.0,31,2.0,0.0,4.0,3.0,2.0,2,1,272.97308332263,500.0,13782.938123379863,0,6,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0733515590761487,6891.469061689932,1,1,1_1,1_0_1,1_3_1,1_0_1 -22081,2,81.0,0.0,2,112,400.0,0.0,0.0,86,86,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132978,2,1,2,0,1,,200.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1231.1624507237,400.0,35611.30818856385,5,5,0,1,100.0,9,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011232387136186567,23740.872125709237,6,3,6,6_1,6_0,6_0_1 -22082,1,52.0,466.0,2,111,444.0,0.0,0.0,0,85,0.0,0.0,613.6853570437131,624.0,309.6588607542345,0.0,43,1,2,2,1,2,2,2,2,0,,2,,2,111320,1,3,0,1,1,1346.0,0.0,432.0,31,4.0,4.0,5.0,6.0,3.3,2,2,237.261165468321,444.0,20982.86978677406,0,6,2,3,111.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.029738544171556563,6358.445389931533,1,1,1_1,1_0_1,1_3_1,1_0_1 -22083,2,60.0,0.0,2,112,740.0,0.0,0.0,37,46,2091.018827825201,517.5862524097289,1022.8089284061887,2640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,35.0,1,,2,128341,2,1,4,0,1,,260.0,,43,2.0,1.0,6.0,2.0,1.5,1,1,1107.34554169508,740.0,39969.426986793034,4,1,0,1,160.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06605048405803582,26646.284657862023,7,4,7,7_1,7_0,7_0_1 -22084,1,49.0,327.0,2,111,480.0,180.0,0.0,68,85,0.0,0.0,663.4436292364467,660.0,0.0,326.4575221525408,50,1,2,2,2,1,2,2,2,0,,2,,2,127807,2,1,0,1,1,576.0,0.0,347.0,42,2.0,2.0,4.0,3.0,2.0,1,1,282.717034797209,480.0,5548.718630260212,4,7,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.11894638095373178,2774.359315130106,1,1,1_1,1_0_1,1_3_1,1_0_1 -22085,2,53.0,0.0,8,112,600.0,0.0,0.0,54,37,2240.377315527001,517.5862524097289,829.3045365455583,2670.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,103753,2,1,1,0,1,,360.0,,43,2.0,3.0,5.0,4.0,2.3,3,2,1033.97403701761,600.0,42773.55212871698,1,1,1,2,140.0,9,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0624217505239046,18597.19657770304,4,2,4_0,4_1_0,4_0_0,4_0_0 -22086,1,43.0,309.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,489.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,118333,1,1,0,1,1,392.0,0.0,273.0,42,1.0,0.0,3.0,6.0,3.1,5,2,263.927430270449,0.0,20753.344003823702,6,4,2,3,59.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02356246780807489,6694.627098007646,1,1,1_1,1_0_1,1_3_1,1_0_1 -22087,2,58.0,0.0,1,112,780.0,0.0,0.0,0,21,0.0,517.5862524097289,1078.0958975092258,1280.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,,1,100365,2,2,2,0,1,,250.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1192.3520343617,780.0,56292.552080410926,0,1,1,2,130.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022738354412704328,56292.552080410926,10,5,10,10_1,10_0,10_1_0 -22088,1,54.0,373.0,2,111,770.0,228.0,0.0,0,55,0.0,0.0,1064.2741552334664,998.0,0.0,413.5128613932184,60,0,0,0,0,0,0,0,0,0,,2,,2,116570,1,2,0,1,1,1175.0,0.0,351.0,32,3.0,4.0,5.0,3.0,2.0,2,2,278.683141233202,770.0,8323.3839247035,0,4,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11990315585923803,4161.69196235175,1,1,1_1,1_0_1,1_3_1,1_0_1 -22089,1,26.0,377.0,2,111,900.0,600.0,0.0,0,46,0.0,0.0,1243.9568048183376,1500.0,0.0,1088.1917405084694,50,2,1,2,2,1,2,2,1,0,,2,,2,126212,1,2,0,1,1,1100.0,0.0,372.0,22,3.0,1.0,4.0,4.0,2.5,2,2,257.923070415551,900.0,23363.15695618889,0,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06420365204979932,9345.262782475556,1,1,1_1,1_0_1,1_3_1,1_0_1 -22090,1,32.0,303.0,2,111,400.0,180.0,0.0,85,68,1613.0716671794407,0.0,552.8696910303722,1660.0,0.0,326.4575221525408,50,1,2,2,1,1,2,2,2,0,,2,,2,104337,1,2,0,1,1,929.0,0.0,318.0,42,1.0,0.0,3.0,5.0,2.4,2,2,252.89199841165,400.0,23664.963612640553,6,1,2,3,70.0,9,7,4,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07014589277091966,9860.401505266898,2,1,2_1,2_0_1,2_3_1,2_0_1 -22091,2,63.0,0.0,2,112,2010.0,0.0,0.0,0,77,0.0,0.0,2778.17019742762,2010.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,130538,2,1,0,0,1,,0.0,467.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1059.93349107673,2010.0,16675.665638079397,0,5,2,3,70.0,9,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12053491858280625,16675.665638079397,4,2,4_0,4_0_0,4_1_0,4_0_1 -22092,2,50.0,0.0,1,111,1800.0,0.0,0.0,85,52,1493.5848770180007,1242.2070057833494,2487.913609636675,4180.0,309.6588607542345,0.0,44,2,2,2,1,1,2,2,2,2,2.0,1,,1,110079,1,2,3,0,1,,650.0,,42,1.0,0.0,5.0,4.0,2.5,1,1,222.990728905668,1800.0,27645.50939344098,7,1,0,1,150.0,9,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0.1511999630938876,11058.203757376392,2,1,2_0,2_1_0,2_3_0,2_1_0 -22093,2,80.0,0.0,1,112,625.0,1089.0,0.0,75,78,0.0,0.0,863.8588922349566,1714.0,0.0,1975.0680090228718,70,0,0,0,0,0,0,0,0,0,,1,,1,104373,2,1,2,0,1,,363.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,642.547448082177,625.0,51368.93006183008,5,5,0,1,120.0,9,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033366472650626526,34245.953374553384,9,5,9,9_1,9_1,9_1_0 -22094,2,56.0,0.0,6,112,1450.0,0.0,0.0,54,65,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,121228,2,1,2,0,1,,400.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,647.181914267047,1450.0,36407.55415283633,1,1,0,1,115.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039826899492149424,24271.702768557556,7,4,7,7_1,7_1,7_0_0 -22095,1,34.0,270.0,2,111,840.0,300.0,0.0,0,55,0.0,0.0,1161.0263511637818,1140.0,0.0,544.0958702542347,41,2,2,2,2,1,2,2,2,0,,2,,2,108867,2,3,0,1,1,816.0,0.0,330.0,12,1.0,1.0,3.0,1.0,1.0,2,2,312.055123018012,840.0,9725.835113476776,0,4,2,3,67.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.11721358492088137,9725.835113476776,1,1,1_1,1_0_1,1_3_1,1_0_1 -22096,2,66.0,0.0,7,112,1200.0,2600.0,0.0,72,74,0.0,134.5724256265295,1658.6090730911167,3930.0,0.0,4715.497542203367,50,0,0,0,0,0,0,0,0,0,,1,,5,116562,2,1,2,0,1,,610.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,652.502174626416,1200.0,65744.35512836705,6,5,0,1,201.0,9,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05977699518577075,43829.57008557804,10,5,10,10_1,10_1,10_0_0 -22097,1,49.0,120.0,6,111,780.0,0.0,0.0,78,68,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,4,121304,2,2,0,1,1,,0.0,600.0,42,1.0,0.0,4.0,4.0,2.3,3,2,234.801296946682,780.0,19658.361311303484,7,1,2,3,70.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03967777311893758,8547.11361361021,1,1,1_1,1_0_1,1_3_1,1_0_0 -22098,2,77.0,0.0,2,112,630.0,0.0,0.0,75,74,5376.905557264802,20.703450096389155,870.7697633728362,4250.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,128850,2,2,2,0,1,,500.0,,41,0.0,1.0,7.0,2.0,1.5,4,3,673.843415199876,630.0,70284.972069987,5,5,0,1,138.0,9,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06046811821690728,46856.648046657996,10,5,10,10_1,10_1,10_0_1 -22099,1,48.0,190.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,893.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,114405,1,3,0,1,1,245.0,0.0,352.0,42,1.0,0.0,4.0,5.0,2.4,2,2,232.784037437373,0.0,34495.59647956557,6,1,2,3,72.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025887362189228807,14373.165199818986,3,2,3_1,3_0_1,3_3_1,3_0_1 -22100,1,45.0,377.0,1,111,500.0,0.0,0.0,0,67,0.0,0.0,691.0871137879653,558.0,99.77896624303112,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,129856,2,1,0,0,1,,0.0,505.0,32,2.0,0.0,3.0,3.0,2.0,1,1,345.686374707399,500.0,17794.458776452866,0,4,2,3,90.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03135807652314735,8897.229388226433,1,1,1_1,1_0_1,1_3_1,1_1_0 -22101,2,34.0,0.0,9,112,360.0,0.0,0.0,67,68,0.0,0.0,497.582721927335,455.0,163.4310653980682,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,106410,2,2,0,1,1,1200.0,0.0,560.0,43,2.0,0.0,3.0,3.0,1.8,2,2,997.472079905076,360.0,38703.569337373614,1,1,2,3,65.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011756021674224112,21501.982965207564,6,3,6,6_0,6_1,6_0_0 -22102,1,70.0,315.0,8,111,996.0,1248.0,0.0,75,77,0.0,0.0,1376.645530665627,2244.0,0.0,2263.438820257616,50,0,0,0,0,0,0,0,0,0,,2,,6,112316,1,3,0,0,1,,0.0,304.0,41,0.0,4.0,3.0,2.0,1.5,3,3,227.525801156982,996.0,12886.402996982937,5,5,2,3,64.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17413703424651414,8590.935331321958,1,1,1_1,1_0_1,1_3_1,1_0_0 -22103,2,77.0,0.0,7,112,120.0,0.0,0.0,0,75,0.0,0.0,165.86090730911167,370.0,430.0817510475479,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,128478,2,1,2,0,1,,440.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,701.809583771234,120.0,29779.54968149605,0,5,0,1,110.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01242463381606824,29779.54968149605,8,4,8,8_1,8_1,8_0_0 -22104,2,75.0,0.0,1,111,0.0,0.0,650.0,0,78,0.0,0.0,332.0936676443913,650.0,0.0,743.1097535242104,71,0,0,0,0,0,0,0,0,0,,2,,1,121744,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,309.703155890177,0.0,17261.086325359873,0,5,0,1,45.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.037656957838454484,17261.086325359873,4,2,4_0,4_0_0,4_3_0,4_1_0 -22105,2,81.0,0.0,7,112,230.0,0.0,0.0,0,75,0.0,0.0,317.900072342464,936.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,123034,2,3,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,847.56960289136,230.0,22001.988179874847,0,5,0,1,62.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04254160998305401,22001.988179874847,6,3,6,6_0,6_1,6_0_0 -22106,2,43.0,0.0,7,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,258.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,20.0,2,,5,115605,2,1,0,1,1,906.0,0.0,414.0,32,1.0,0.0,3.0,2.0,1.5,2,2,245.282038702275,0.0,16456.127435506354,0,1,2,3,67.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015678050684229,10970.751623670903,2,1,2_0,2_0_0,2_3_0,2_0_0 -22107,1,47.0,434.0,7,111,300.0,350.0,0.0,0,85,0.0,0.0,414.65226827277917,650.0,0.0,634.7785152966071,71,2,2,2,2,1,2,2,2,0,,2,2001.0,5,102895,2,1,0,0,1,,0.0,456.0,31,0.0,1.0,4.0,3.0,2.0,1,1,282.805667823256,300.0,12503.438322953432,0,6,2,3,86.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.05198570050981495,6251.719161476716,1,1,1_1,1_0_1,1_3_1,1_0_0 -22108,0,81.0,0.0,2,112,0.0,0.0,0.0,0,74,0.0,0.0,0.0,906.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,125706,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,964.149115463772,0.0,65848.18188781601,0,5,0,1,101.0,9,3,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013758922023747455,65848.18188781601,10,5,10,10_0,10_1,10_0_1 -22109,2,54.0,0.0,2,111,600.0,0.0,0.0,0,48,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,10.0,2,,2,125164,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,290.750240044296,600.0,28654.981440317522,0,1,0,1,70.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.020938767706050604,28654.981440317522,8,4,8,8_0,8_3,8_0_1 -22110,2,81.0,0.0,1,112,330.0,330.0,0.0,0,77,0.0,0.0,456.1174951000571,1787.0,0.0,598.5054572796581,71,0,0,0,0,0,0,0,0,0,,2,,1,118100,2,1,0,1,1,,0.0,450.0,11,0.0,0.0,3.0,1.0,1.0,2,2,883.821710785108,330.0,16276.669255484703,0,5,2,3,75.0,9,3,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10978904663789489,16276.669255484703,4,2,4_0,4_0_0,4_1_0,4_1_0 -22111,1,37.0,220.0,2,112,700.0,1200.0,0.0,85,62,0.0,0.0,967.5219593031513,1900.0,0.0,2176.3834810169387,12,0,0,0,0,0,0,0,0,0,,8,,2,104364,2,2,0,1,2,,0.0,480.0,42,1.0,0.0,4.0,5.0,2.8,2,2,757.898382868066,700.0,19413.350363434878,6,1,2,3,57.0,9,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0978707932649615,6933.339415512457,1,1,1_1,1_0_1,1_1_1,1_0_1 -22112,1,38.0,220.0,1,112,360.0,0.0,0.0,0,42,896.1509262108004,0.0,497.582721927335,1200.0,412.878481005646,0.0,50,1,2,2,2,1,1,2,2,0,,8,,1,126882,2,3,0,1,1,1200.0,0.0,308.0,32,1.0,0.0,3.0,2.0,1.3,2,2,782.070954313077,360.0,8075.58691878823,0,1,2,3,68.0,9,3,4,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.14859601067609637,6211.989937529407,1,1,1_1,1_0_1,1_1_1,1_1_0 -22113,1,43.0,270.0,1,111,420.0,900.0,0.0,0,52,0.0,0.0,580.5131755818909,1320.0,0.0,1632.287610762704,50,2,2,2,2,1,2,2,2,3,25.0,2,,1,120650,2,2,0,0,1,,300.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,407.614635282344,420.0,11223.51659690417,0,1,2,3,45.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.11761019717867226,11223.51659690417,2,1,2_1,2_0_1,2_3_1,2_1_0 -22114,2,34.0,0.0,2,112,800.0,1621.0,0.0,42,38,0.0,672.8621281326475,1105.7393820607444,3071.0,0.0,2939.9313522737148,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,109486,1,2,2,0,1,,500.0,,43,2.0,0.0,8.0,4.0,2.1,3,2,679.661400565015,800.0,78494.76786077407,1,1,1,2,155.0,9,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03912362675493255,37378.46088608289,9,5,9,9_1,9_1,9_0_1 -22115,2,51.0,0.0,2,112,600.0,0.0,0.0,46,23,3733.962192545002,0.0,829.3045365455583,3100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,133253,2,2,2,0,1,,850.0,,43,3.0,0.0,7.0,4.0,2.5,1,1,682.099003780679,600.0,145602.15024500014,1,1,0,1,180.0,9,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021290894363742072,58240.860098000056,10,5,10,10_1,10_1,10_0_1 -22116,1,36.0,265.0,7,111,530.0,0.0,0.0,55,21,0.0,0.0,732.5523406152432,530.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,131453,2,2,0,1,1,550.0,0.0,375.0,43,2.0,3.0,3.0,2.0,1.5,1,1,253.073880927577,530.0,7570.913520013072,4,4,2,3,76.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07000476212005191,5047.2756800087145,1,1,1_1,1_0_1,1_3_1,1_0_0 -22117,2,49.0,0.0,2,112,420.0,0.0,0.0,54,38,0.0,0.0,580.5131755818909,420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,8,,2,101660,2,1,0,1,1,,0.0,,43,2.0,1.0,8.0,4.0,2.1,1,1,834.198342111147,420.0,60858.618445307155,1,1,1,2,123.0,9,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006901241118009415,28980.29449776531,8,4,8,8_0,8_1,8_0_1 -22118,2,30.0,0.0,1,111,250.0,0.0,0.0,0,52,0.0,0.0,345.54355689398267,250.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,15.0,2,,1,131525,2,1,0,0,1,,0.0,349.0,12,1.0,0.0,3.0,1.0,1.0,1,1,272.033250931265,250.0,14119.914142212754,0,1,2,3,50.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.017705490095906638,14119.914142212754,3,2,3_0,3_0_0,3_3_0,3_1_0 -22119,1,44.0,100.0,1,111,1600.0,0.0,0.0,55,21,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,2,2,1,2,2,2,2,1,0,,2,,1,112025,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,257.215332697404,1600.0,31869.21074337141,4,1,1,2,80.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.050205196886866414,11381.860979775505,2,1,2_1,2_0_1,2_3_1,2_1_0 -22120,2,74.0,0.0,2,112,550.0,0.0,0.0,77,75,4032.679167948602,362.31037668681023,760.1958251667618,3600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,119908,2,1,1,0,1,,700.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,666.790312327385,550.0,42452.77603246762,5,5,0,1,130.0,9,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08480010817777246,28301.850688311748,8,4,8,8_1,8_1,8_0_1 -22121,2,54.0,0.0,7,112,500.0,0.0,0.0,0,67,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,8,,5,107296,2,1,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,847.691330940334,500.0,14245.254449924276,0,1,0,1,65.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03509940814027775,14245.254449924276,3,2,3_0,3_0_0,3_1_0,3_0_0 -22122,1,34.0,180.0,2,111,500.0,800.0,0.0,0,90,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,60,2,2,1,2,1,2,2,2,0,,2,,2,111459,2,2,0,0,1,,0.0,500.0,22,2.0,1.0,3.0,3.0,2.0,2,2,326.750670204551,500.0,9798.327531795823,0,1,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.13267570366284112,4899.163765897912,1,1,1_1,1_0_1,1_3_1,1_0_1 -22123,2,43.0,0.0,1,111,2560.0,60.0,0.0,52,47,0.0,0.0,3538.3660225943822,2620.0,0.0,108.81917405084694,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,113499,2,2,4,0,1,,1200.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,5,4,212.571871950483,2560.0,48002.89638322804,1,1,1,2,120.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05458003990183005,18462.65245508771,4,2,4_0,4_1_0,4_3_0,4_1_0 -22124,1,52.0,47.0,2,111,410.0,0.0,0.0,56,52,0.0,0.0,566.6914333061316,410.0,0.0,0.0,41,1,2,1,2,1,2,2,2,2,20.0,2,,2,106562,1,3,0,1,1,960.0,0.0,374.0,43,2.0,0.0,4.0,3.0,2.0,5,5,322.634014949639,410.0,23644.78981412648,4,1,2,3,78.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.017339972282394627,11822.39490706324,2,1,2_1,2_0_1,2_3_1,2_0_1 -22125,2,66.0,0.0,2,111,956.0,0.0,0.0,68,78,1493.5848770180007,0.0,1321.3585615625896,2154.0,340.62474682965797,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,102758,2,1,1,0,1,,480.0,,42,1.0,0.0,4.0,5.0,2.8,2,2,202.15466936486,956.0,42986.04597353854,1,5,1,2,76.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050109284332082206,15352.159276263765,3,2,3_0,3_1_0,3_3_0,3_0_1 -22126,2,39.0,0.0,7,112,0.0,0.0,0.0,0,42,0.0,0.0,0.0,283.0,0.0,0.0,71,2,2,2,2,1,1,2,2,2,5.0,8,,5,132296,1,2,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1072.20286613878,0.0,20330.62398978655,0,1,2,3,20.0,9,3,4,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.013919887561846114,20330.62398978655,5,3,5,5_0,5_1,5_0_0 -22127,1,32.0,300.0,2,111,2000.0,0.0,0.0,85,63,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,10,2,2,2,2,1,2,2,1,0,,2,,2,103745,2,3,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.1,5,4,292.764955713607,2000.0,23688.006817514866,6,4,1,2,80.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08443091119516244,11280.00324643565,2,1,2_1,2_0_1,2_3_1,2_0_1 -22128,1,36.0,135.0,2,111,286.0,1159.0,0.0,85,64,0.0,0.0,395.3018290867161,1535.0,154.82943037711726,2102.0237120821935,41,2,2,2,2,1,2,2,1,0,,2,,2,121381,1,3,0,0,1,,0.0,282.0,42,1.0,0.0,4.0,5.0,2.4,2,2,245.640353514708,286.0,27000.525594876864,6,1,2,3,69.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0568507451681331,11250.21899786536,2,1,2_1,2_0_1,2_3_1,2_0_1 -22129,2,71.0,0.0,7,112,1224.0,0.0,0.0,0,75,0.0,0.0,1691.7812545529391,1224.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,126099,1,2,0,0,1,,0.0,377.0,11,0.0,3.0,3.0,1.0,1.0,2,2,804.47027447626,1224.0,23403.526382181026,0,5,2,3,62.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05229981072134193,23403.526382181026,6,3,6,6_0,6_1,6_0_0 -22130,2,65.0,0.0,2,111,0.0,0.0,1567.0,78,78,0.0,0.0,800.6011956904018,1567.0,0.0,1791.4661288806735,50,1,2,2,2,1,2,2,2,0,,2,,2,101552,2,1,0,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,4,2,275.422618535136,0.0,22979.92201511505,5,5,1,2,57.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06818996160950003,15319.948010076701,3,2,3_0,3_0_0,3_3_0,3_0_1 -22131,2,66.0,0.0,6,112,530.0,1000.0,0.0,0,78,0.0,67.28621281326475,732.5523406152432,1595.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,4,117811,2,1,2,0,1,,150.0,,31,0.0,2.0,8.0,2.0,1.5,2,2,657.193200869301,530.0,31369.180216209126,0,5,0,1,120.0,9,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0508460848835262,20912.786810806083,5,3,5,5_1,5_1,5_0_0 -22132,2,77.0,0.0,2,112,699.0,0.0,0.0,86,72,6721.131946581003,0.0,966.1397850755754,5199.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,108433,2,1,2,0,1,,535.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,703.376594091243,699.0,104329.61402329196,6,5,0,1,145.0,9,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049832447370497364,69553.07601552797,10,5,10,10_1,10_1,10_0_1 -22133,1,44.0,253.0,1,111,400.0,0.0,0.0,0,68,0.0,0.0,552.8696910303722,400.0,0.0,0.0,60,2,2,2,2,2,2,2,1,0,,2,,1,123221,1,3,0,1,1,,0.0,342.0,12,1.0,1.0,3.0,1.0,1.0,2,2,272.496564921283,400.0,6149.603024574668,0,4,2,3,53.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.065044848976681,6149.603024574668,1,1,1_1,1_0_1,1_3_1,1_1_0 -22134,2,72.0,0.0,1,112,1898.0,0.0,0.0,0,74,0.0,56.93448776507018,2623.3666839391162,1953.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128718,2,2,1,0,1,,182.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,762.927714083469,1898.0,32207.40719802393,0,5,0,1,200.0,9,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06063822486523614,32207.40719802393,8,4,8,8_1,8_1,8_1_0 -22135,1,26.0,270.0,2,111,300.0,780.0,0.0,0,67,0.0,0.0,414.65226827277917,1080.0,0.0,1414.6492626610102,70,0,0,0,0,0,0,0,0,0,,2,,2,122065,2,1,0,0,1,,0.0,309.0,22,2.0,2.0,4.0,2.0,1.5,2,2,278.650305053996,300.0,13991.382136523203,0,4,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0771903725780429,9327.588091015468,1,1,1_1,1_0_1,1_3_1,1_0_1 -22136,2,69.0,0.0,1,112,500.0,0.0,0.0,0,74,0.0,0.0,691.0871137879653,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,102984,1,2,0,0,1,,0.0,420.0,11,0.0,3.0,2.0,1.0,1.0,2,2,970.985139998125,500.0,42575.65819455682,0,5,2,3,45.0,9,3,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0117437996546093,42575.65819455682,9,5,9,9_0,9_1,9_1_0 -22137,1,39.0,113.0,2,111,400.0,160.0,0.0,85,68,0.0,0.0,552.8696910303722,560.0,0.0,290.18446413559184,50,0,0,0,0,0,0,0,0,0,,2,,2,113743,2,2,0,1,1,780.0,0.0,287.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,3,2,264.839989550443,400.0,34226.161908648675,6,1,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016361752787083395,12676.356262462474,2,1,2_1,2_0_1,2_3_1,2_0_1 -22138,1,51.0,226.0,2,111,474.0,119.0,0.0,0,67,0.0,629.3848829302303,655.1505838709911,1201.0,0.0,215.8246952008464,50,0,0,0,0,0,0,0,0,0,,2,,2,113362,2,1,0,1,1,608.0,0.0,355.0,22,1.0,2.0,4.0,3.0,2.0,1,1,239.816455515564,474.0,41300.887549290936,0,1,2,3,79.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029079278225356664,20650.443774645468,5,3,5,5_0,5_3,5_0_1 -22139,2,49.0,0.0,5,112,700.0,0.0,0.0,0,52,0.0,0.0,967.5219593031513,780.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,100940,2,1,0,0,1,,0.0,334.0,32,1.0,0.0,3.0,2.0,1.5,2,2,751.531282259489,700.0,18649.34225508837,0,1,2,3,70.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.041824531360465614,12432.89483672558,2,1,2_0,2_0_0,2_1_0,2_0_0 -22140,2,49.0,0.0,2,111,360.0,0.0,0.0,0,67,0.0,0.0,497.582721927335,430.0,120.42289029331342,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,129609,2,1,0,1,1,620.0,0.0,341.0,32,3.0,2.0,3.0,3.0,2.0,2,2,295.942653981587,360.0,40526.51409317415,0,1,2,3,76.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010610337691798283,20263.257046587074,5,3,5,5_0,5_3,5_0_1 -22141,0,69.0,0.0,5,112,420.0,0.0,0.0,0,75,9708.301700617005,0.0,580.5131755818909,7040.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,108795,1,1,4,0,2,,310.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,745.373934381946,420.0,29600.167742288933,0,5,0,1,92.0,9,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2378364900257693,29600.167742288933,8,4,8,8_1,8_1,8_0_0 -22142,2,24.0,0.0,7,112,0.0,0.0,0.0,42,38,0.0,0.0,0.0,841.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,2,,5,121471,2,3,0,0,1,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,928.89344062951,0.0,24942.591592992387,1,1,2,3,43.0,9,3,4,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03371742654986496,16628.394395328258,4,2,4_0,4_0_0,4_1_0,4_0_0 -22143,2,36.0,0.0,2,111,600.0,0.0,0.0,85,63,0.0,1109.7049251664587,829.3045365455583,1672.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114156,2,3,0,1,1,,0.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,272.47895303872,600.0,27568.077991931295,6,1,1,2,85.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060649857436175486,11486.699163304707,2,1,2_0,2_0_0,2_3_0,2_0_1 -22144,1,60.0,270.0,2,111,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,550.0,86.01635020950958,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,102735,2,2,0,1,1,960.0,0.0,377.0,21,1.0,2.0,5.0,2.0,1.5,2,2,264.585511550358,500.0,12622.329606118972,0,7,2,3,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04357357295862204,8414.886404079314,1,1,1_1,1_0_1,1_3_1,1_0_1 -22145,2,64.0,0.0,6,112,700.0,0.0,0.0,74,74,0.0,362.31037668681023,967.5219593031513,1050.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,118239,2,1,2,0,1,,540.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,703.376594091243,700.0,96377.69357656137,5,5,0,1,147.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010894637140967599,64251.79571770758,10,5,10,10_1,10_1,10_0_0 -22146,2,27.0,0.0,1,112,0.0,0.0,0.0,31,55,0.0,0.0,0.0,646.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,6.0,2,,1,126412,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,943.134898737796,0.0,16723.22691387805,1,1,2,3,75.0,9,3,4,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03862890836360691,11148.817942585367,2,1,2_0,2_0_0,2_1_0,2_1_0 -22147,2,68.0,0.0,2,111,260.0,50.0,0.0,0,77,0.0,422.3503819663388,359.36529916974195,718.0,0.0,90.68264504237244,60,0,0,0,0,0,0,0,0,0,,2,,2,124367,1,2,0,1,1,408.0,0.0,274.0,11,0.0,5.0,2.0,1.0,1.0,1,1,278.807580052301,260.0,17071.290389795548,0,5,2,3,53.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04205891784426491,17071.290389795548,4,2,4_0,4_0_0,4_3_0,4_0_1 -22148,2,58.0,0.0,1,112,450.0,1200.0,0.0,85,78,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,33,0,0,0,0,0,0,0,0,0,,1,,1,109240,2,2,4,0,2,,700.0,,41,0.0,0.0,4.0,4.0,2.5,1,1,678.607175276182,450.0,15057.049079716806,6,7,0,1,100.0,9,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10958322519003394,6022.819631886722,1,1,1_0,1_1_0,1_1_0,1_1_0 -22149,2,56.0,0.0,5,111,295.0,0.0,0.0,0,56,0.0,451.3352121012836,407.7413971348995,731.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,25.0,2,,3,115755,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,293.801727586682,295.0,20262.46915595108,0,1,1,2,57.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036076550906694684,20262.46915595108,5,3,5,5_0,5_3,5_0_0 -22150,1,43.0,123.0,9,112,408.0,0.0,0.0,0,67,0.0,0.0,563.9270848509797,610.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,8,2009.0,6,117484,2,2,0,1,1,,0.0,517.0,32,1.0,1.0,3.0,3.0,2.0,2,2,837.88819474723,408.0,31366.424996277092,0,1,2,3,84.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01944754622410432,15683.212498138546,3,2,3_1,3_0_1,3_1_1,3_0_0 -22151,2,40.0,0.0,2,112,600.0,0.0,0.0,65,62,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,1,2,1,2,2,2,2,1,20.0,2,,2,132295,2,1,0,1,1,,200.0,272.0,43,2.0,0.0,4.0,4.0,2.3,2,2,761.1619112572,600.0,39998.14354126727,1,1,2,3,67.0,9,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015000696204336639,17390.49719185534,4,2,4_0,4_0_0,4_1_0,4_0_1 -22152,2,47.0,0.0,2,111,334.0,300.0,0.0,52,31,0.0,0.0,461.6461920103608,634.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,119554,2,2,0,1,1,1150.0,0.0,675.0,43,2.0,0.0,6.0,6.0,3.0999999999999996,2,2,259.520740501311,334.0,30742.114329251504,1,1,2,3,105.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020623174880224197,9916.8110739521,2,1,2_0,2_0_0,2_3_0,2_0_1 -22153,2,41.0,0.0,2,112,492.0,0.0,0.0,67,62,0.0,0.0,680.0297199673578,1362.0,91.17733122208016,0.0,70,0,0,0,0,0,0,0,0,2,5.0,2,,2,103126,1,3,0,1,1,245.0,0.0,318.0,43,3.0,1.0,4.0,4.0,2.3,1,1,760.107249398257,492.0,34752.52977006089,4,1,2,3,70.0,9,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03919139150478062,15109.79555220039,3,2,3_0,3_0_0,3_1_0,3_0_1 -22154,1,55.0,399.0,2,111,49.0,210.0,0.0,81,68,0.0,1117.9863052050143,67.7265371512206,1339.0,0.0,380.86710917796427,41,2,1,2,2,1,2,2,2,0,,2,,2,130563,2,1,0,1,1,500.0,0.0,370.0,43,4.0,0.0,6.0,6.0,3.3,2,2,247.643765470026,49.0,8230.218758138712,4,4,2,3,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.1626931238827507,2494.0056842844583,1,1,1_1,1_0_1,1_3_1,1_0_1 -22155,2,44.0,0.0,7,112,150.0,0.0,0.0,0,42,0.0,0.0,207.32613413638958,250.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,,5,122022,2,1,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,926.853406973045,150.0,25827.5022611708,0,1,2,3,55.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009679604224673762,25827.5022611708,7,4,7,7_0,7_1,7_0_0 -22156,2,69.0,0.0,2,111,147.0,64.0,0.0,0,77,0.0,380.94348177356045,203.17961145366178,579.0,0.0,116.07378565423673,70,0,0,0,0,0,0,0,0,0,,2,,2,117886,2,1,0,1,1,368.0,0.0,274.0,11,0.0,0.0,2.0,1.0,1.0,2,2,260.026999114292,147.0,16133.949145150527,0,5,2,3,53.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03588705993746319,16133.949145150527,4,2,4_0,4_0_0,4_3_0,4_0_1 -22157,2,51.0,0.0,7,112,439.0,0.0,0.0,0,43,0.0,0.0,606.7744859058336,439.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,5,133649,2,1,0,0,1,,0.0,380.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1096.58265877536,439.0,19234.486237274934,0,1,2,3,25.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022823588557788054,19234.486237274934,5,3,5,5_0,5_1,5_0_0 -22158,2,37.0,0.0,2,111,228.0,130.0,0.0,56,62,0.0,0.0,315.13572388731217,358.0,0.0,235.77487711016835,12,0,0,0,0,0,0,0,0,1,5.0,2,,2,102784,1,1,0,1,1,541.0,0.0,323.0,43,2.0,1.0,3.0,3.0,1.8,2,2,287.236445663766,228.0,27109.016596421705,1,1,2,3,74.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013205938279858324,15060.564775789835,3,2,3_0,3_0_0,3_3_0,3_0_1 -22159,2,52.0,0.0,6,112,500.0,900.0,0.0,43,38,0.0,0.0,691.0871137879653,1400.0,0.0,1632.287610762704,41,0,0,0,0,0,0,0,0,2,5.0,1,,4,116454,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,691.883240225283,500.0,120001.13946034943,1,1,0,1,150.0,9,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011666555886851272,48000.45578413977,10,5,10,10_1,10_1,10_0_0 -22160,2,24.0,0.0,9,112,864.0,0.0,0.0,53,43,0.0,0.0,1194.198532625604,864.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,133587,2,1,0,0,1,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1040.68839744527,864.0,41783.43057211977,4,1,2,3,60.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02067805319404551,23213.01698451098,6,3,6,6_0,6_1,6_0_0 -22161,2,49.0,0.0,6,112,708.0,999.0,0.0,0,63,0.0,0.0,978.5793531237589,1707.0,0.0,1811.8392479466015,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,129714,2,2,4,0,1,,204.0,,32,1.0,0.0,6.0,2.0,1.5,1,1,659.760774939768,708.0,20767.434559233403,0,1,1,2,120.0,9,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08219599754275143,13844.95637282227,3,2,3_0,3_1_0,3_1_0,3_0_0 -22162,2,53.0,0.0,1,111,520.0,0.0,0.0,0,52,0.0,0.0,718.7305983394839,520.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,8.0,2,,1,120596,1,3,0,0,1,,0.0,360.0,12,1.0,1.0,1.0,1.0,1.0,1,1,391.304183317328,520.0,15708.55933605778,0,1,2,3,30.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.033102972008793974,15708.55933605778,3,2,3_0,3_0_0,3_3_0,3_1_0 -22163,2,77.0,0.0,5,112,750.0,0.0,0.0,0,75,0.0,0.0,1036.630670681948,750.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,118872,2,1,2,0,1,,392.0,,11,0.0,4.0,8.0,1.0,1.0,4,4,752.691396560916,750.0,37047.720351125135,0,5,0,1,200.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020244160582399306,37047.720351125135,9,5,9,9_1,9_1,9_0_0 -22164,2,41.0,0.0,9,120,2800.0,0.0,0.0,42,37,0.0,0.0,3870.0878372126053,2800.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,123126,2,2,4,0,1,,731.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,815.827400926519,2800.0,84084.51339112835,1,1,1,2,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03329982998147938,40040.24447196588,9,5,9,9_1,9_0,9_0_0 -22166,2,65.0,0.0,2,120,365.0,0.0,0.0,0,77,2688.452778632401,0.0,504.49359306521467,2165.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122509,2,2,4,0,1,,210.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,872.701086448582,365.0,28547.911657759814,0,5,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07583742117303055,28547.911657759814,8,4,8,8_1,8_0,8_0_1 -22167,2,56.0,0.0,1,120,1060.0,0.0,0.0,54,63,2987.1697540360015,0.0,1465.1046812304864,3210.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,100227,2,1,2,0,1,,800.0,,43,3.0,0.0,6.0,5.0,3.0,1,1,838.022334250416,1060.0,79327.38438538482,1,1,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040465219228776265,26442.46146179494,7,4,7,7_1,7_0,7_1_0 -22168,1,40.0,319.0,2,111,276.0,237.0,0.0,55,68,0.0,0.0,381.48008681095683,513.0,0.0,429.83573750084537,41,0,0,0,0,0,0,0,0,3,20.0,2,,2,124511,2,1,0,1,2,776.0,0.0,296.0,43,2.0,1.0,3.0,3.0,1.8,2,2,279.677242610819,276.0,14579.911585854601,4,1,2,3,55.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03518539855191656,8099.950881030334,1,1,1_1,1_0_1,1_3_1,1_0_1 -22169,2,68.0,0.0,2,120,660.0,0.0,0.0,77,78,2688.452778632401,0.0,912.2349902001142,2660.0,344.06540083803833,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,107954,2,1,1,0,1,,360.0,,41,2.0,3.0,6.0,4.0,2.5,1,1,771.031266920802,660.0,53230.35803460925,5,5,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049971484284785844,21292.1432138437,6,3,6,6_1,6_0,6_0_1 -22170,2,58.0,0.0,1,111,600.0,1300.0,0.0,46,62,0.0,0.0,829.3045365455583,1900.0,0.0,2357.7487711016834,60,0,0,0,0,0,0,0,0,2,60.0,2,,1,117623,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,301.516794708603,600.0,81262.37795402095,1,1,1,2,92.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023381053420256034,40631.188977010475,9,5,9,9_0,9_3,9_1_0 -22171,2,45.0,0.0,9,120,599.0,0.0,0.0,46,46,2539.0942909306013,155.27587572291867,827.9223623179824,2449.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,6.0,1,2007.0,6,103492,2,1,1,0,1,,530.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,916.581426708276,599.0,71204.0413646168,4,1,1,2,145.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03439411518033545,35602.0206823084,9,5,9,9_1,9_0,9_0_0 -22172,2,59.0,0.0,6,120,2000.0,0.0,0.0,77,23,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,17.0,1,,4,118307,2,1,1,0,1,,600.0,,42,2.0,1.0,6.0,3.0,2.0,2,2,973.233854619342,2000.0,109170.27497655785,5,1,0,1,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018320005151855303,54585.137488278924,10,5,10,10_1,10_0,10_0_0 -22173,1,27.0,270.0,8,111,125.0,0.0,0.0,0,46,0.0,0.0,172.77177844699133,125.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,2000.0,6,112836,2,1,0,1,1,170.0,0.0,288.0,12,1.0,0.0,2.0,1.0,1.0,1,1,281.406183915022,125.0,10155.074549905908,0,1,2,3,46.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012309116923337424,10155.074549905908,2,1,2_1,2_0_1,2_3_1,2_0_0 -22174,2,61.0,0.0,1,120,472.0,0.0,0.0,0,78,0.0,527.9379774579235,652.3862354158392,1042.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121975,2,1,2,0,1,,243.0,,11,0.0,0.0,6.0,1.0,1.0,3,2,891.93678135968,472.0,18642.45042703976,0,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0558939396984337,18642.45042703976,4,2,4_0,4_1_0,4_0_0,4_1_0 -22175,2,62.0,0.0,1,111,630.0,1500.0,0.0,52,78,0.0,0.0,870.7697633728362,2130.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,0,,2,,1,132009,2,1,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,294.640904829443,630.0,42460.92515801209,1,5,1,2,95.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.050163768030807576,28307.283438674727,8,4,8,8_0,8_3,8_1_0 -22176,2,52.0,0.0,6,120,853.0,0.0,0.0,67,47,1493.5848770180007,414.0690019277831,1178.9946161222688,2253.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,131663,2,1,3,0,1,,626.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,791.847102935961,853.0,107244.34835147278,1,1,0,1,117.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02100810005032829,42897.73934058911,9,5,9,9_1,9_0,9_0_0 -22177,0,26.0,0.0,1,111,480.0,1200.0,0.0,0,67,0.0,0.0,663.4436292364467,1680.0,0.0,2176.3834810169387,31,2,2,2,1,1,2,2,2,0,,2,,1,116158,2,2,0,0,2,,0.0,,22,3.0,0.0,4.0,5.0,3.0,2,2,311.592454465174,480.0,19277.84837175483,0,1,5,0,80.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.08714665493797907,6425.94945725161,1,1,1_0,1_0_0,1_3_0,1_1_0 -22178,2,54.0,0.0,1,120,540.0,0.0,0.0,85,45,0.0,207.03450096389156,746.3740828910024,3080.0,4025.5651898050487,0.0,12,2,2,2,1,2,2,2,2,2,40.0,1,,1,127379,1,3,4,0,1,,210.0,350.0,42,1.0,3.0,2.0,2.0,1.5,2,2,977.500361685647,540.0,37078.14585294715,7,1,2,3,52.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08306779988986927,24718.763901964765,7,4,7,7_1,7_0,7_1_0 -22179,1,41.0,450.0,1,111,675.0,1100.0,0.0,85,63,0.0,0.0,932.9676036137531,1775.0,0.0,1995.0181909321939,31,1,2,2,1,2,2,2,2,2,60.0,2,,1,125419,2,2,0,0,1,,0.0,550.0,42,1.0,0.0,3.0,5.0,2.8,1,1,300.245337495534,675.0,23657.544518873256,6,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.07502891936159985,8449.123042454734,1,1,1_1,1_0_1,1_3_1,1_1_0 -22180,2,43.0,0.0,2,120,1080.0,0.0,0.0,85,65,2987.1697540360015,0.0,1492.748165782005,3180.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,116075,2,1,1,0,1,,500.0,,42,1.0,0.0,7.0,4.0,2.1,1,1,825.132636177135,1080.0,43107.16728786843,6,1,1,2,160.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07376963507632155,20527.222518032588,5,3,5,5_1,5_0,5_0_1 -22181,2,44.0,0.0,7,120,1456.0,0.0,0.0,67,22,149.35848770180007,652.1586780362584,2012.445675350555,2186.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,127516,2,1,1,0,1,,660.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,929.534512469844,1456.0,66056.55215568643,1,1,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033092856479216344,33028.27607784321,8,4,8,8_1,8_0,8_0_0 -22182,0,83.0,0.0,1,120,200.0,0.0,0.0,71,78,746.7924385090004,0.0,276.4348455151861,700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,128324,2,1,1,1,1,,0.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,929.875192944265,200.0,31924.295543578544,5,5,0,1,50.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02192687381447333,21282.86369571903,6,3,6,6_1,6_0,6_1_0 -22183,2,50.0,0.0,2,120,600.0,0.0,0.0,52,65,4480.754631054002,0.0,829.3045365455583,3900.0,516.0981012570575,0.0,50,2,2,1,2,1,2,2,2,2,10.0,2,,2,114731,2,2,0,1,1,,450.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1126.33170046932,600.0,36892.99879255272,1,1,0,1,60.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.1057111139685197,24595.33252836848,7,4,7,7_0,7_0,7_0_1 -22184,2,47.0,0.0,7,120,405.0,0.0,0.0,55,54,1747.4943061110607,0.0,559.7805621682519,1575.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,5,120205,2,1,2,0,1,,335.0,550.0,43,3.0,0.0,5.0,3.0,2.0,1,1,979.825441766219,405.0,37234.72111410725,1,1,2,3,120.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04229922913007328,18617.360557053624,4,2,4_0,4_1_0,4_0_0,4_0_0 -22185,2,71.0,0.0,9,120,1542.0,0.0,0.0,75,74,0.0,310.55175144583734,2131.312658922085,1842.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,112631,2,1,1,0,1,,279.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,781.527455532772,1542.0,53023.347879122215,5,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03473941336558422,35348.89858608148,9,5,9,9_1,9_0,9_0_0 -22186,0,70.0,0.0,2,120,563.0,0.0,0.0,77,74,1717.6226085707008,0.0,778.1640901252489,1773.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130972,2,2,1,0,1,,230.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,811.277777808538,563.0,43524.804195481134,5,5,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04073539290462972,29016.536130320757,8,4,8,8_1,8_0,8_0_1 -22187,0,47.0,0.0,2,120,760.0,0.0,0.0,21,38,4630.113118755802,0.0,1050.452412957707,3860.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,115162,2,1,3,0,1,,360.0,,43,2.0,0.0,4.0,2.0,1.5,4,4,977.500361685647,760.0,77988.20275982076,1,1,5,0,90.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04949466539045131,51992.13517321384,10,5,10,10_1,10_0,10_0_1 -22188,2,39.0,0.0,2,120,0.0,0.0,0.0,55,47,0.0,0.0,0.0,1282.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,116270,2,1,1,0,1,,310.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,910.364824207034,0.0,54960.80213106309,1,1,1,2,115.0,0,0,4,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023325714878448457,26171.81053860147,7,4,7,7_1,7_0,7_0_1 -22189,2,37.0,0.0,2,120,1200.0,0.0,0.0,37,46,2688.452778632401,0.0,1658.6090730911167,3030.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,109613,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,970.854263400688,1200.0,94056.599757079,1,1,1,2,170.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0322146453074597,52253.66653171056,10,5,10,10_1,10_0,10_0_1 -22190,2,61.0,0.0,5,120,660.0,0.0,0.0,0,78,2688.452778632401,0.0,912.2349902001142,2540.0,137.62616033521533,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,102321,2,1,3,0,1,,600.0,,21,1.0,3.0,5.0,2.0,1.5,1,1,764.212194296017,660.0,40948.874439158,0,5,0,1,101.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06202856695790118,27299.24962610533,7,4,7,7_1,7_0,7_0_0 -22191,2,59.0,0.0,1,120,920.0,0.0,0.0,77,62,2987.1697540360015,0.0,1271.600289369856,3010.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,125892,2,1,1,0,1,,750.0,,42,2.0,0.0,5.0,4.0,2.5,4,4,820.064665440857,920.0,33442.365212768425,6,1,0,1,132.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09000559562248815,13376.94608510737,3,2,3_0,3_1_0,3_0_0,3_1_0 -22192,2,51.0,0.0,9,120,1200.0,0.0,0.0,0,33,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,2007.0,6,132151,2,1,0,0,1,,0.0,890.0,12,1.0,2.0,4.0,1.0,1.0,3,2,1380.54068256017,1200.0,55528.6338036387,0,1,2,3,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021610472251909894,55528.6338036387,10,5,10,10_0,10_0,10_0_0 -22193,2,59.0,0.0,5,120,1126.0,0.0,0.0,67,62,4182.037655650402,0.0,1556.3281802504978,3926.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,3,118855,2,2,3,0,1,,540.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,869.581217429266,1126.0,54743.26766025041,1,1,0,1,138.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.071716581194343,36495.51177350027,9,5,9,9_1,9_0,9_0_0 -22194,2,53.0,0.0,6,120,1600.0,0.0,0.0,55,48,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,133032,2,1,1,0,1,,250.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,836.189350046476,1600.0,61271.08975564981,1,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02611345752753588,40847.393170433206,9,5,9,9_1,9_0,9_0_0 -22195,0,66.0,0.0,2,120,636.0,0.0,0.0,75,75,2240.377315527001,724.6207533736205,879.0628087382918,2936.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,103422,2,1,1,0,1,,400.0,,41,1.0,2.0,6.0,3.0,2.0,2,2,896.561524246072,636.0,75566.89222268507,5,5,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038852993865991184,37783.446111342535,9,5,9,9_1,9_0,9_0_1 -22196,2,56.0,0.0,6,120,2200.0,0.0,0.0,45,54,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,30.0,1,,4,129757,2,2,2,0,1,,450.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,941.67539068225,2200.0,85387.45726793924,1,1,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02576490822412676,42693.72863396962,9,5,9,9_1,9_0,9_0_0 -22197,0,82.0,0.0,1,120,383.0,0.0,0.0,0,78,0.0,931.655254337512,529.3727291615814,2283.0,1720.3270041901917,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116199,2,3,4,0,1,,225.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,960.359412760818,383.0,16431.07647677719,0,5,0,1,280.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13894403103939482,16431.07647677719,4,2,4_0,4_1_0,4_0_0,4_1_0 -22198,2,55.0,0.0,9,120,1200.0,0.0,0.0,0,62,0.0,0.0,1658.6090730911167,1230.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,130.0,1,2011.0,6,100100,2,3,1,0,1,,378.0,,22,2.0,1.0,7.0,3.0,1.8,2,2,973.685852401719,1200.0,32076.40167185218,0,1,1,2,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03834594704802424,17820.22315102899,4,2,4_0,4_1_0,4_0_0,4_0_0 -22199,2,46.0,0.0,2,120,4000.0,0.0,0.0,56,62,746.7924385090004,0.0,5528.696910303723,4500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,116013,2,1,2,0,1,,520.0,,43,3.0,0.0,4.0,4.0,2.5,1,1,844.246598412323,4000.0,38135.27907769607,1,1,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1180009720351538,15254.111631078427,3,2,3_0,3_1_0,3_0_0,3_0_1 -22200,2,50.0,0.0,1,400,690.0,0.0,0.0,0,21,1493.5848770180007,0.0,953.7002170273921,1690.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108811,2,1,2,0,1,,264.0,,32,2.0,0.0,5.0,3.0,2.0,2,2,1059.54406860092,690.0,28513.42292569415,0,1,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05927033048273903,14256.711462847075,3,2,3_0,3_1_0,3_0_0,3_1_0 -22201,2,79.0,0.0,2,400,420.0,0.0,0.0,0,78,4032.679167948602,72.46207533736204,580.5131755818909,3340.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,127556,2,2,2,0,1,,180.0,,11,0.0,3.0,6.0,1.0,1.0,4,2,1106.71043657649,420.0,18202.946765904093,0,5,0,1,134.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1834867751333618,18202.946765904093,4,2,4_0,4_1_0,4_0_0,4_0_1 -22202,2,49.0,0.0,7,400,1440.0,0.0,0.0,38,46,2987.1697540360015,36.23103766868102,1990.33088770934,3475.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,126712,2,1,2,0,1,,380.0,,43,2.0,0.0,8.0,4.0,2.5,2,2,899.322978044492,1440.0,140518.60760284448,1,1,0,1,160.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024729820906150626,56207.44304113779,10,5,10,10_1,10_0,10_0_0 -22203,0,59.0,0.0,6,400,1000.0,0.0,0.0,0,65,3045.4195642397035,0.0,1382.1742275759307,3119.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,4,110517,2,1,2,0,1,,380.0,,22,1.0,3.0,4.0,2.0,1.5,1,1,981.79827681838,1000.0,48974.44179197618,0,1,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0636862797384861,32649.627861317455,8,4,8,8_1,8_0,8_0_0 -22204,2,87.0,0.0,6,400,1700.0,0.0,0.0,0,78,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,112439,2,1,1,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,999.051620395855,1700.0,17390.72444490905,0,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09775325952552005,17390.72444490905,4,2,4_0,4_1_0,4_0_0,4_0_0 -22205,2,24.0,0.0,9,400,324.0,240.0,0.0,63,63,0.0,0.0,447.8244497346015,654.0,154.82943037711726,435.27669620338776,50,0,0,0,0,0,0,0,0,2,20.0,2,2010.0,6,116543,2,2,0,0,1,,0.0,378.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1067.10469359723,324.0,32339.128052231783,1,1,2,3,67.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020223179763650623,21559.418701487855,6,3,6,6_0,6_0,6_0_0 -22206,2,34.0,0.0,9,400,0.0,0.0,0.0,54,47,0.0,0.0,0.0,1192.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,8,2010.0,6,132208,2,1,0,0,1,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1288.77817240352,0.0,44191.84604942693,1,1,2,3,64.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026973301786641646,29461.230699617954,8,4,8,8_0,8_0,8_0_0 -22207,2,67.0,0.0,8,400,270.0,0.0,0.0,0,77,0.0,0.0,373.1870414455012,538.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,2,2001.0,6,122888,2,1,0,1,1,50.0,0.0,400.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1435.16547035138,270.0,16448.773918402636,0,5,2,3,42.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032707604996509425,16448.773918402636,4,2,4_0,4_0_0,4_0_0,4_0_0 -22208,2,43.0,0.0,7,400,1350.0,0.0,0.0,63,63,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,118832,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,899.322978044492,1350.0,46730.838319769326,1,1,0,1,170.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028888846178239586,22252.780152271105,6,3,6,6_1,6_0,6_0_0 -22209,2,38.0,0.0,2,400,0.0,0.0,0.0,52,64,0.0,0.0,0.0,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,22.0,1,,2,115197,2,2,1,0,1,,217.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,953.581403389532,0.0,34674.61386268606,1,1,1,2,120.0,0,0,4,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028839542495269627,19263.674368158925,5,3,5,5_1,5_0,5_0_1 -22210,2,31.0,0.0,9,400,0.0,0.0,0.0,0,42,0.0,0.0,0.0,984.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,8.0,8,2008.0,6,110026,2,1,0,0,1,,0.0,560.0,12,1.0,0.0,2.0,1.0,1.0,4,4,1316.38085585804,0.0,22721.124613102427,0,1,2,3,60.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04330771547428439,22721.124613102427,6,3,6,6_0,6_0,6_0_0 -22211,2,54.0,0.0,1,400,770.0,0.0,0.0,21,45,2240.377315527001,0.0,1064.2741552334664,2270.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,37.0,1,,1,117177,1,1,2,0,1,,270.0,,43,2.0,2.0,5.0,2.0,1.5,3,1,1043.86393526034,770.0,72850.82143403788,1,1,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031159566293365012,48567.214289358584,10,5,10,10_1,10_0,10_1_0 -22212,2,53.0,0.0,2,400,0.0,0.0,0.0,78,31,3285.8867294396014,0.0,0.0,4283.0,127.30419831007418,0.0,31,0,0,0,0,0,0,0,0,1,1.0,1,,2,111978,2,1,2,0,1,,556.0,,42,3.0,0.0,7.0,5.0,3.0,2,2,931.78591346151,0.0,165886.4823779011,5,1,1,2,240.0,0,0,4,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025818860817381276,55295.49412596703,10,5,10,10_1,10_0,10_0_1 -22213,2,59.0,0.0,1,400,540.0,0.0,0.0,85,78,0.0,828.1380038555662,746.3740828910024,1340.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,131113,2,1,2,0,1,,260.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,916.699902551849,540.0,50892.55383551037,6,5,0,1,140.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02632998148080776,33928.36922367358,9,5,9,9_1,9_0,9_1_0 -22214,2,40.0,0.0,1,400,800.0,0.0,0.0,85,62,0.0,776.3793786145933,1105.7393820607444,1585.0,60.21144514665671,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,124884,1,1,1,0,2,,250.0,,42,1.0,0.0,3.0,2.0,1.5,1,1,869.759818185194,800.0,47558.38754838074,6,1,1,2,96.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03332745456072481,31705.591698920496,8,4,8,8_1,8_0,8_1_0 -22215,1,37.0,324.0,2,400,1200.0,0.0,0.0,85,68,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,43,2,2,2,1,1,2,2,1,2,15.0,1,,2,129562,1,2,2,0,2,,0.0,520.0,42,1.0,0.0,5.0,5.0,2.4,1,1,1049.32205753293,1200.0,17268.60476768839,6,1,2,3,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.06949026954657868,7195.2519865368295,1,1,1_1,1_1_1,1_0_1,1_0_1 -22216,2,50.0,0.0,1,400,0.0,0.0,0.0,0,43,0.0,0.0,0.0,692.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,107169,2,1,1,0,1,,104.0,,32,2.0,1.0,4.0,3.0,2.0,2,2,955.6049900564,0.0,38700.441461269824,0,1,1,2,80.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01788093297831064,19350.220730634912,5,3,5,5_1,5_0,5_1_0 -22217,1,35.0,64.0,1,400,0.0,0.0,0.0,0,68,0.0,0.0,0.0,577.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,132856,2,2,5,0,1,,450.0,250.0,32,1.0,0.0,2.0,3.0,1.6,1,1,1097.05673459006,0.0,18387.874430196684,0,1,2,3,57.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.031379374608543495,11492.421518872927,2,1,2_1,2_1_1,2_0_1,2_1_0 -22218,2,44.0,0.0,6,400,1578.0,0.0,0.0,54,47,0.0,0.0,2181.0709311148184,1578.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,4,103436,2,1,1,0,1,,290.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,960.78464121525,1578.0,48831.23798562613,1,1,1,2,178.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03231537976703554,32554.15865708409,8,4,8,8_1,8_0,8_0_0 -22219,2,50.0,0.0,2,400,360.0,0.0,0.0,0,63,2987.1697540360015,0.0,497.582721927335,2360.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,120697,2,1,4,0,1,,275.0,,22,2.0,0.0,4.0,3.0,2.0,2,2,1105.10437304765,360.0,41703.23510340038,0,1,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05659033391890432,20851.61755170019,5,3,5,5_1,5_0,5_0_1 -22220,2,78.0,0.0,1,400,840.0,2300.0,0.0,77,75,0.0,0.0,1161.0263511637818,3157.0,29.24555907123326,4171.401671949133,43,0,0,0,0,0,0,0,0,0,,1,,1,127133,2,1,1,0,1,,280.0,,41,1.0,2.0,6.0,3.0,2.0,4,2,1100.61226190363,840.0,31699.27756860971,5,5,1,2,140.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09959217503197068,15849.638784304854,3,2,3_0,3_1_0,3_0_0,3_1_0 -22221,2,48.0,0.0,6,400,1253.0,0.0,0.0,62,64,0.0,341.60692659042104,1731.864307152641,1583.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,103109,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,996.824058987874,1253.0,40544.110715132076,1,1,1,2,134.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03904389495979708,22524.505952851152,6,3,6,6_1,6_0,6_0_0 -22222,2,61.0,0.0,6,400,620.0,0.0,0.0,56,48,1493.5848770180007,372.6621017350048,856.9480210970769,1980.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,103487,2,1,2,0,1,,463.0,,43,2.0,1.0,7.0,2.0,1.5,3,3,960.78464121525,620.0,66465.8808202023,1,1,0,1,210.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02978972031313514,44310.58721346821,10,5,10,10_1,10_0,10_0_0 -22223,0,81.0,0.0,1,400,1400.0,0.0,0.0,0,78,0.0,362.31037668681023,1935.0439186063027,1854.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104604,2,1,1,0,1,,82.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,1058.43148846099,1400.0,17277.347059005144,0,5,0,1,70.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10730814132912117,17277.347059005144,4,2,4_0,4_1_0,4_0_0,4_1_0 -22224,2,42.0,0.0,7,400,1000.0,0.0,0.0,43,48,1344.2263893162005,274.3207137771563,1382.1742275759307,2165.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,101171,2,1,2,0,1,,390.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1105.13098146966,1000.0,83769.66347027282,1,1,1,2,128.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025844678255968992,46538.701927929345,10,5,10,10_1,10_0,10_0_0 -22225,2,71.0,0.0,2,400,440.0,0.0,0.0,78,78,2763.132022483301,0.0,608.1566601334094,2290.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115549,2,2,2,0,1,,90.0,,41,0.0,3.0,5.0,2.0,1.5,4,4,953.789380329456,440.0,36179.869498030916,5,5,0,1,140.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06329486622732658,24119.912998687276,6,3,6,6_1,6_0,6_0_1 -22226,2,56.0,0.0,6,400,520.0,0.0,0.0,55,65,2987.1697540360015,170.80346329521052,718.7305983394839,2685.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,1,,4,103755,2,2,2,0,1,,220.0,,43,3.0,1.0,6.0,3.0,2.0,1,1,1072.67940755586,520.0,54664.36717363039,1,1,0,1,183.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04911791974965404,27332.183586815194,7,4,7,7_1,7_0,7_0_0 -22227,2,52.0,0.0,5,400,900.0,0.0,0.0,0,48,3733.962192545002,362.31037668681023,1243.9568048183376,3870.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,127128,2,1,2,0,1,,700.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,926.155049620747,900.0,46562.86098759825,0,1,1,2,90.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08311344960162032,31041.907325065502,8,4,8,8_1,8_0,8_0_0 -22228,2,43.0,0.0,7,400,720.0,0.0,0.0,56,62,2987.1697540360015,0.0,995.16544385467,2720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,122751,2,1,2,0,1,,575.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,823.211282514604,720.0,47516.96668112276,1,1,1,2,107.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057242711182584484,20659.55073092294,5,3,5,5_1,5_0,5_0_0 -22229,2,44.0,0.0,8,400,814.0,0.0,0.0,42,48,1941.6603401234008,0.0,1125.0898212468076,2114.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,2003.0,6,114352,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.5,1,1,874.885623196786,814.0,67133.10130866949,1,1,1,2,160.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03148968182298172,26853.240523467794,7,4,7,7_1,7_0,7_0_0 -22230,1,42.0,266.0,1,111,400.0,0.0,0.0,0,85,0.0,0.0,552.8696910303722,400.0,0.0,0.0,70,2,2,2,2,1,1,1,1,0,,2,,1,122537,2,3,0,0,1,,0.0,476.0,11,0.0,0.0,1.0,1.0,1.0,5,4,2001.11012884173,400.0,11707.784891323781,0,7,2,3,22.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.03416530143942306,11707.784891323781,2,1,2_1,2_0_1,2_3_1,2_1_0 -22231,2,69.0,0.0,2,111,200.0,0.0,0.0,0,74,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105586,2,1,0,1,1,50.0,0.0,575.0,11,0.0,3.0,2.0,1.0,1.0,2,2,1446.21741616251,200.0,58683.59662445657,0,5,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003408107401458236,58683.59662445657,10,5,10,10_0,10_3,10_0_1 -22232,2,60.0,0.0,1,111,600.0,0.0,0.0,0,34,0.0,0.0,829.3045365455583,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,20.0,2,,1,110794,2,1,0,1,1,1000.0,0.0,990.0,32,1.0,0.0,5.0,2.0,1.5,2,2,1715.46820186157,600.0,52895.06578529121,0,1,2,3,135.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011343213040616824,35263.37719019414,9,5,9,9_0,9_3,9_1_0 -22233,2,65.0,0.0,1,111,350.0,0.0,0.0,0,75,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,105302,2,2,0,0,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,2,2,1657.19586714158,350.0,12461.367486466366,0,5,1,2,17.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028086805110283164,12461.367486466366,2,1,2_0,2_0_0,2_3_0,2_1_0 -22236,2,26.0,0.0,2,111,276.0,0.0,0.0,0,31,0.0,0.0,381.48008681095683,276.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,2,117539,1,2,0,1,2,809.0,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1446.21741616251,276.0,33401.027614412145,0,1,2,3,43.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008263218820276934,33401.027614412145,8,4,8,8_0,8_3,8_0_1 -22237,1,42.0,260.0,1,111,0.0,540.0,0.0,0,54,0.0,0.0,0.0,1661.0,0.0,979.3725664576224,50,2,2,1,2,1,2,2,2,0,,2,,1,103398,2,2,0,0,1,,0.0,324.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1134.04294964365,0.0,20767.319717070666,0,1,2,3,50.0,9,7,4,0,1,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.07998143345550093,15974.86132082359,3,2,3_1,3_0_1,3_3_1,3_1_0 -22238,1,24.0,327.0,8,111,0.0,0.0,0.0,33,38,0.0,0.0,0.0,1178.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,2,2003.0,6,106029,2,2,0,0,1,,0.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1346.58102766828,0.0,52544.874465643705,1,1,2,3,51.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02241893261673375,35029.91631042914,9,5,9,9_0,9_3,9_0_0 -22239,2,38.0,0.0,1,111,336.0,960.0,0.0,85,34,0.0,0.0,464.41054046551267,1296.0,0.0,1741.106784813551,50,0,0,0,0,0,0,0,0,3,140.0,2,,1,129521,2,1,0,0,1,,0.0,770.0,42,1.0,0.0,4.0,4.0,2.1,2,1,1535.29589483804,336.0,15216.89617889115,7,1,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08516848539702918,7246.141037567214,1,1,1_0,1_0_0,1_3_0,1_1_0 -22240,1,21.0,170.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,870.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,1,107276,1,1,0,0,1,,0.0,440.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1520.06560612968,0.0,15197.100006394214,0,1,2,3,50.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05724776435201095,15197.100006394214,3,2,3_1,3_0_1,3_3_1,3_1_0 -22241,0,67.0,0.0,1,111,0.0,0.0,0.0,0,22,1344.2263893162005,0.0,0.0,2038.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,126848,2,2,0,1,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,1532.35088186632,0.0,79359.25320692454,0,1,0,1,85.0,9,7,4,1,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02568068520864273,79359.25320692454,10,5,10,10_0,10_3,10_1_0 -22242,2,34.0,0.0,9,111,1500.0,0.0,0.0,0,67,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,20.0,2,2005.0,6,115366,1,2,0,0,1,,0.0,500.0,22,2.0,0.0,3.0,3.0,2.0,3,2,1169.82762083223,1500.0,22578.867816424045,0,1,2,3,69.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.06643380049857453,11289.433908212022,2,1,2_0,2_0_0,2_3_0,2_0_0 -22243,1,32.0,295.0,5,111,1800.0,0.0,0.0,85,68,0.0,0.0,2487.913609636675,1915.0,197.83760548187203,0.0,12,0,0,0,0,0,0,0,0,1,10.0,2,,3,101370,2,2,0,0,1,,0.0,260.0,42,1.0,0.0,2.0,4.0,2.1,1,1,1291.52233180193,1800.0,19503.96822946736,6,1,2,3,56.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09818514763096994,9287.60391879398,1,1,1_1,1_0_1,1_3_1,1_0_0 -22244,2,28.0,0.0,8,111,570.0,0.0,0.0,0,54,0.0,0.0,787.8393097182804,570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,113555,2,3,0,0,2,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,4,3,1634.36753574285,570.0,18899.205401546962,0,1,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030159998152797664,18899.205401546962,5,3,5,5_0,5_3,5_0_0 -22245,1,41.0,384.0,5,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,642.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,3,130782,1,1,0,0,1,,0.0,539.0,43,3.0,0.0,5.0,5.0,3.0,5,3,1189.27487816508,0.0,23898.848155874442,4,1,2,3,120.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02686321934064398,7966.282718624814,1,1,1_1,1_0_1,1_3_1,1_0_0 -22246,2,36.0,0.0,1,111,530.0,1200.0,0.0,34,34,0.0,0.0,732.5523406152432,1730.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,2,,1,101255,1,1,0,0,1,,0.0,900.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1594.56057120484,530.0,54660.194080523375,1,1,2,3,106.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03165008886451131,26028.663847868273,7,4,7,7_0,7_3,7_1_0 -22247,2,83.0,0.0,1,111,226.0,150.0,0.0,86,77,0.0,0.0,312.37137543216033,1966.0,0.0,272.04793512711734,12,0,0,0,0,0,0,0,0,0,,2,,1,122501,1,1,0,1,2,796.0,0.0,700.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1638.85728602048,226.0,35766.66757729931,6,5,2,3,88.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05496737977478778,23844.445051532875,6,3,6,6_0,6_3,6_1_0 -22248,2,83.0,0.0,2,111,180.0,0.0,0.0,0,74,0.0,0.0,248.7913609636675,803.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117743,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1529.41712112553,180.0,37315.67097790601,0,5,0,1,98.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02151910923631637,37315.67097790601,9,5,9,9_0,9_3,9_0_1 -22249,2,59.0,0.0,1,111,670.0,0.0,0.0,52,53,0.0,0.0,926.0567324758734,670.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,1,124427,1,2,0,1,1,,0.0,822.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,1347.9922429397,670.0,46679.84103215198,1,1,2,3,117.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014353090867180111,15058.013236178058,3,2,3_0,3_0_0,3_3_0,3_1_0 -22250,0,63.0,0.0,1,111,360.0,180.0,0.0,77,22,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,10,0,0,0,0,0,0,0,0,1,2.0,2,,1,103709,2,1,0,1,1,856.0,0.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,1432.70725406826,360.0,50619.13714475682,6,1,5,0,120.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010667902110929871,33746.091429837885,9,5,9,9_0,9_3,9_1_0 -22251,1,31.0,270.0,2,111,180.0,0.0,0.0,0,55,0.0,0.0,248.7913609636675,460.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,116572,1,3,0,1,2,672.0,0.0,334.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1701.17072523825,180.0,5293.616352783102,0,4,2,3,30.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08689711708294774,5293.616352783102,1,1,1_1,1_0_1,1_3_1,1_0_1 -22253,2,31.0,0.0,1,111,180.0,0.0,0.0,0,54,0.0,0.0,248.7913609636675,180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,3.0,2,,1,125809,2,1,0,0,1,,0.0,490.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1652.21358189436,180.0,20206.36204883046,0,1,2,3,35.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008908085461648866,20206.36204883046,5,3,5,5_0,5_3,5_1_0 -22254,2,37.0,0.0,1,111,240.0,300.0,0.0,0,33,0.0,0.0,331.72181461822333,628.0,0.0,544.0958702542347,43,0,0,0,0,0,0,0,0,2,5.0,2,,1,118032,2,1,0,1,1,564.0,0.0,807.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1873.72731075549,240.0,40290.82036110728,0,1,2,3,110.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015586676924707351,40290.82036110728,9,5,9,9_0,9_3,9_1_0 -22255,2,80.0,0.0,1,111,150.0,700.0,0.0,77,77,0.0,0.0,207.32613413638958,850.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,2,,1,117899,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1277.29024733206,150.0,30060.27207834076,5,5,0,1,84.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028276523838001055,20040.181385560507,5,3,5,5_0,5_3,5_1_0 -22257,1,70.0,81.0,2,111,180.0,130.0,0.0,0,78,0.0,0.0,248.7913609636675,310.0,0.0,235.77487711016835,71,0,0,0,0,0,0,0,0,0,,2,,2,106180,2,2,0,1,1,578.0,0.0,284.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1206.74042354407,180.0,12190.633826465955,0,5,2,3,61.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025429358670997708,12190.633826465955,2,1,2_1,2_0_1,2_3_1,2_0_1 -22259,1,54.0,120.0,2,111,938.0,137.0,0.0,0,52,0.0,0.0,1296.479425466223,1075.0,0.0,248.4704474161005,60,0,0,0,0,0,0,0,0,1,10.0,2,,2,112307,2,2,0,0,1,,0.0,343.0,32,2.0,1.0,4.0,2.0,1.5,2,2,1141.63175962216,938.0,25975.244258277256,0,1,2,3,67.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041385558854078575,17316.82950551817,4,2,4_1,4_0_1,4_3_1,4_0_1 -22260,2,81.0,0.0,2,111,420.0,264.0,0.0,77,75,0.0,0.0,580.5131755818909,684.0,0.0,478.8043658237265,50,1,2,2,1,1,2,2,2,0,,2,,2,114262,1,2,0,1,1,515.0,0.0,393.0,41,0.0,3.0,4.0,2.0,1.5,1,1,1133.94976580767,420.0,27753.72301468892,5,5,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0.024645342163211275,18502.482009792613,4,2,4_0,4_0_0,4_3_0,4_0_1 -22261,2,65.0,0.0,2,111,276.0,234.0,0.0,0,75,0.0,0.0,381.48008681095683,510.0,0.0,424.39477879830304,44,0,0,0,0,0,0,0,0,0,,2,,2,112244,2,2,0,1,1,858.0,0.0,500.0,11,0.0,0.0,4.0,1.0,1.0,2,2,1248.06806054537,276.0,35696.52439692306,0,5,2,3,73.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014287105218679513,35696.52439692306,9,5,9,9_0,9_3,9_0_1 -22262,1,39.0,270.0,2,111,240.0,0.0,0.0,0,85,0.0,0.0,331.72181461822333,240.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,102979,1,1,0,1,1,809.0,0.0,540.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1528.55052852409,240.0,23437.4256935976,0,7,2,3,66.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010240032465065512,23437.4256935976,6,3,6,6_0,6_3,6_0_1 -22264,2,66.0,0.0,6,111,204.0,0.0,0.0,0,74,0.0,0.0,281.96354242548983,512.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,2,,4,113300,1,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1253.78711078246,204.0,33600.09248457298,0,5,0,1,49.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.015238053295093689,33600.09248457298,9,5,9,9_0,9_3,9_0_0 -22266,1,48.0,50.0,2,111,250.0,0.0,0.0,0,85,0.0,0.0,345.54355689398267,250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,109964,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1433.67481797488,250.0,12519.409795685542,0,5,1,2,38.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019968992474881313,12519.409795685542,2,1,2_1,2_0_1,2_3_1,2_0_1 -22269,2,31.0,0.0,1,111,564.0,0.0,0.0,46,45,0.0,0.0,779.5462643528249,564.0,0.0,0.0,20,2,2,2,2,1,1,1,2,1,6.0,2,,1,104175,1,2,0,0,1,,0.0,850.0,43,2.0,0.0,4.0,3.0,1.8,3,2,1567.70789172404,564.0,25117.34785077383,4,1,2,3,72.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.02245460003782302,13954.082139318794,3,2,3_0,3_0_0,3_3_0,3_1_0 -22270,2,51.0,0.0,1,111,854.0,0.0,0.0,46,22,0.0,0.0,1180.3767903498447,854.0,0.0,0.0,50,2,2,2,2,1,1,1,2,2,35.0,2,,1,113452,1,3,0,0,1,,0.0,563.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1503.94439438432,854.0,56364.80002695386,4,1,2,3,45.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.01515130009494603,37576.533351302576,9,5,9,9_0,9_3,9_1_0 -22271,1,47.0,215.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,867.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,120135,2,2,0,1,2,,0.0,257.0,11,0.0,0.0,1.0,1.0,1.0,2,2,2055.25831877214,0.0,5429.0,0,7,3,4,10.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.15969791858537483,5429.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -22272,2,38.0,0.0,7,111,631.0,0.0,0.0,0,31,0.0,0.0,872.1519376004122,631.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,118415,2,1,0,0,1,,0.0,509.0,12,1.0,0.0,2.0,1.0,1.0,4,4,1463.3334478379,631.0,28234.15919567673,0,1,2,3,45.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022348814980706774,28234.15919567673,8,4,8,8_0,8_3,8_0_0 -22273,2,41.0,0.0,2,111,240.0,240.0,0.0,52,64,0.0,0.0,331.72181461822333,480.0,0.0,435.27669620338776,41,0,0,0,0,0,0,0,0,0,,2,,2,124262,2,3,0,1,1,573.0,0.0,630.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1571.80992865855,240.0,40844.35641920003,1,1,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011751929570724308,19449.69353295239,5,3,5,5_0,5_3,5_0_1 -22274,2,28.0,0.0,5,111,700.0,0.0,0.0,33,33,0.0,0.0,967.5219593031513,700.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,3,102885,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1265.6423854789,700.0,51641.74587791777,1,1,1,2,71.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013554925150184029,34427.83058527851,9,5,9,9_0,9_3,9_0_0 -22275,2,57.0,0.0,2,111,480.0,2300.0,0.0,77,47,0.0,0.0,663.4436292364467,2780.0,0.0,4171.401671949133,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,111467,2,1,0,0,1,,0.0,800.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1441.4194681598,480.0,22599.716422224796,5,1,2,3,75.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12301039305369864,15066.477614816531,3,2,3_0,3_0_0,3_3_0,3_0_1 -22276,1,46.0,249.0,5,111,600.0,0.0,0.0,56,54,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,2,2,2,2,1,1,2,2,3,45.0,2,,3,114929,1,2,0,1,1,707.0,0.0,355.0,43,2.0,0.0,4.0,5.0,3.0,2,2,331.058495855356,600.0,24243.40759981719,1,1,2,3,72.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,1,0,1,0.02474899609428356,8081.13586660573,1,1,1_1,1_0_1,1_3_1,1_0_0 -22277,1,37.0,397.0,2,111,360.0,0.0,0.0,0,56,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,2,1,2,2,1,1,2,2,0,,2,,2,129262,2,2,0,1,1,638.0,0.0,366.0,32,1.0,0.0,4.0,3.0,1.6,2,2,362.802904973673,360.0,10209.466666666665,0,4,2,3,82.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03526139138838464,6380.916666666665,1,1,1_1,1_0_1,1_3_1,1_0_1 -22278,2,58.0,0.0,2,111,300.0,0.0,0.0,37,21,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,117273,2,1,0,1,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,393.301554254618,300.0,67853.5092376105,1,1,1,2,87.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004421289383124684,45235.67282507367,10,5,10,10_0,10_3,10_0_1 -22279,2,45.0,0.0,2,111,1200.0,1800.0,0.0,46,47,0.0,0.0,1658.6090730911167,3000.0,0.0,3264.575221525408,12,2,2,1,2,1,2,2,2,2,30.0,1,,2,109680,2,3,4,0,1,,250.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,1128.81333582705,1200.0,53683.859160741646,1,1,1,2,96.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.055882718696085534,26841.929580370823,7,4,7,7_1,7_3,7_0_1 -22280,2,35.0,0.0,2,111,720.0,300.0,0.0,54,35,0.0,0.0,995.16544385467,1020.0,0.0,544.0958702542347,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,101539,1,2,0,1,1,800.0,0.0,332.0,43,2.0,0.0,3.0,4.0,2.1,1,1,360.088741560615,720.0,24657.750514704247,4,1,2,3,68.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041366303848022944,11741.785959382974,2,1,2_0,2_0_0,2_3_0,2_0_1 -22281,2,33.0,0.0,2,111,468.0,0.0,0.0,46,38,0.0,0.0,646.8575385055356,468.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,2,,2,128958,2,1,0,1,1,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1669.5629896501,468.0,36662.382454533654,4,1,2,3,62.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012765127868609841,20367.990252518695,5,3,5,5_0,5_3,5_0_1 -22282,2,59.0,0.0,5,111,258.0,0.0,0.0,78,52,0.0,0.0,356.6009507145901,298.0,68.81308016760767,0.0,50,2,2,1,2,1,2,2,2,3,20.0,2,,3,105873,2,2,0,1,1,1400.0,0.0,427.0,42,1.0,7.0,2.0,2.0,1.5,2,2,1185.60994026377,258.0,29669.61021494137,5,1,2,3,68.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010043947252462711,19779.740143294246,5,3,5,5_0,5_3,5_0_0 -22283,2,33.0,0.0,7,111,960.0,920.0,0.0,37,46,0.0,0.0,1326.8872584728933,1880.0,0.0,1668.560668779653,10,0,0,0,0,0,0,0,0,1,2.0,2,,5,123826,2,1,0,0,1,,0.0,600.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1349.24146066503,960.0,69853.94657367538,1,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026913296845972084,46569.297715783585,10,5,10,10_0,10_3,10_0_0 -22284,2,33.0,0.0,9,111,402.0,0.0,0.0,56,38,0.0,0.0,555.6340394855241,402.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,2010.0,6,109174,2,2,0,1,1,,600.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,1379.15474686823,402.0,50549.359329401734,1,1,1,2,82.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007952623046721367,28082.977405223184,8,4,8,8_0,8_3,8_0_0 -22285,1,28.0,330.0,7,111,0.0,0.0,0.0,55,67,0.0,0.0,0.0,158.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,5,105418,2,1,0,1,1,380.0,0.0,478.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1077.15241706395,0.0,21585.06835909353,4,1,2,3,48.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0073198748955287185,14390.04557272902,3,2,3_1,3_0_1,3_3_1,3_0_0 -22286,2,28.0,0.0,7,111,290.0,1010.0,0.0,54,52,0.0,0.0,400.8305259970199,1300.0,0.0,1831.7894298559233,60,0,0,0,0,0,0,0,0,2,15.0,2,,5,129339,1,2,0,0,1,,0.0,590.0,43,2.0,0.0,3.0,3.0,1.8,1,1,454.420583635732,290.0,39058.13515893283,4,1,2,3,75.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03328371912048858,21698.963977184907,6,3,6,6_0,6_3,6_0_0 -22287,2,61.0,0.0,2,111,360.0,0.0,0.0,56,22,0.0,0.0,497.582721927335,360.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,5.0,2,,2,109256,2,2,0,1,2,,0.0,,43,2.0,2.0,4.0,3.0,2.0,1,1,453.314537961236,360.0,53400.579611401816,1,1,0,1,106.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006741499860483437,26700.289805700908,7,4,7,7_0,7_3,7_0_1 -22288,0,65.0,0.0,1,111,26.0,81.0,0.0,77,77,0.0,0.0,35.936529916974195,107.0,0.0,146.90588496864336,71,0,0,0,0,0,0,0,0,0,,1,,1,109782,2,2,1,0,1,,533.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,299.020292328335,26.0,48611.456765184834,5,5,0,1,140.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0022011272058119562,32407.637843456556,8,4,8,8_1,8_3,8_1_0 -22289,2,67.0,0.0,2,111,850.0,0.0,0.0,77,78,0.0,0.0,1174.848093439541,850.0,0.0,0.0,60,2,1,2,2,1,2,2,2,0,,2,,2,120022,1,3,0,1,1,2000.0,0.0,600.0,41,4.0,6.0,6.0,6.0,3.5,2,2,336.981215382989,850.0,19959.033025991037,6,5,2,3,90.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.04258723350440443,5702.580864568868,1,1,1_0,1_0_0,1_3_0,1_0_1 -22290,1,89.0,192.0,5,111,180.0,0.0,0.0,0,77,0.0,0.0,248.7913609636675,497.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,130690,2,1,0,1,1,,139.0,380.0,11,0.0,1.0,3.0,1.0,1.0,4,2,383.797980422112,180.0,10925.823823169225,0,5,2,3,70.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04548856068373218,10925.823823169225,2,1,2_1,2_0_1,2_3_1,2_0_0 -22291,1,42.0,300.0,5,111,0.0,0.0,0.0,31,31,0.0,0.0,0.0,326.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,113140,2,3,1,1,1,,252.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,2,2,288.95426322295,0.0,47199.286493503445,1,1,1,2,85.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.006906884070056248,16275.61603224257,4,2,4_1,4_1_1,4_3_1,4_0_0 -22292,1,43.0,350.0,6,111,1050.0,0.0,0.0,85,63,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,4,106848,1,3,0,0,2,,150.0,500.0,42,1.0,3.0,2.0,3.0,1.8,2,2,1421.54669875652,1050.0,13279.133523596607,6,1,2,3,46.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07907142421108898,7377.296401998115,1,1,1_1,1_0_1,1_3_1,1_0_0 -22293,2,45.0,0.0,6,111,360.0,0.0,0.0,0,42,0.0,0.0,497.582721927335,1554.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,3.0,2,,4,128967,2,1,0,1,1,,680.0,,22,1.0,0.0,5.0,2.0,1.5,1,1,391.12817660076,360.0,49988.09983944996,0,1,0,1,103.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03108739890076004,33325.39989296664,8,4,8,8_0,8_3,8_0_0 -22294,2,26.0,0.0,2,111,0.0,0.0,0.0,21,43,0.0,0.0,0.0,292.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106651,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,4,3,1256.4086629392,0.0,69877.65181085067,1,1,1,2,73.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004178732290409592,46585.10120723378,10,5,10,10_0,10_3,10_0_1 -22295,1,30.0,320.0,2,111,600.0,0.0,0.0,0,56,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,1,1,1,2,2,0,,2,,2,132842,1,3,0,1,1,560.0,0.0,315.0,32,1.0,0.0,4.0,3.0,1.6,4,4,371.04337998738,600.0,5172.725857789822,0,1,2,3,73.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.11599300185151609,3232.9536611186386,1,1,1_1,1_0_1,1_3_1,1_0_1 -22296,1,54.0,263.0,2,111,1000.0,1200.0,0.0,68,47,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,4,10.0,2,,2,127714,2,1,0,1,1,750.0,0.0,500.0,43,5.0,1.0,6.0,7.0,4.0,4,3,351.611445232463,1000.0,25986.47743340045,1,1,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08465941586882174,6496.619358350113,1,1,1_1,1_0_1,1_3_1,1_0_1 -22297,2,36.0,0.0,1,111,360.0,750.0,0.0,46,37,0.0,0.0,497.582721927335,1110.0,0.0,1360.2396756355868,20,2,2,2,2,1,2,2,2,0,,2,,1,124066,1,3,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1218.83501810466,360.0,51336.232170841664,1,1,1,2,75.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.021622155601642813,34224.15478056111,9,5,9,9_0,9_3,9_1_0 -22298,2,47.0,0.0,1,111,400.0,700.0,0.0,45,67,0.0,0.0,552.8696910303722,1100.0,0.0,1269.5570305932142,43,0,0,0,0,0,0,0,0,1,20.0,2,,1,131594,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.5,2,2,1324.56962084117,400.0,39257.79660000714,1,1,1,2,85.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02801991184598985,15703.118640002856,3,2,3_0,3_0_0,3_3_0,3_1_0 -22300,1,53.0,268.0,2,111,564.0,0.0,0.0,0,75,0.0,0.0,779.5462643528249,564.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,113644,2,1,0,0,1,,0.0,400.0,11,0.0,1.0,2.0,1.0,1.0,2,2,1530.09953588341,564.0,9468.275317958238,0,7,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.059567342632113315,9468.275317958238,1,1,1_1,1_0_1,1_3_1,1_0_1 -22301,1,23.0,270.0,2,111,0.0,0.0,0.0,67,55,0.0,0.0,0.0,318.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,2,129509,1,2,0,0,1,,0.0,580.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1755.81030001255,0.0,29126.12314577252,4,1,2,3,42.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010918033904081593,19417.41543051501,5,3,5,5_0,5_3,5_0_1 -22302,1,39.0,255.0,1,111,200.0,2000.0,0.0,0,67,0.0,0.0,276.4348455151861,2200.0,0.0,3627.3058016948976,10,2,2,2,2,1,2,2,2,0,,2,,1,111830,1,3,0,0,1,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1787.97867323871,200.0,4563.039119341131,0,4,2,3,40.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.482134810257262,4563.039119341131,1,1,1_1,1_0_1,1_3_1,1_1_0 -22303,1,46.0,265.0,2,111,210.0,230.0,0.0,0,56,0.0,0.0,290.25658779094545,440.0,0.0,417.14016719491326,20,0,0,0,0,0,0,0,0,3,15.0,2,,2,124849,1,2,0,1,1,808.0,0.0,254.0,32,2.0,0.0,3.0,2.0,1.5,1,1,360.318151523872,210.0,1136.1208983934937,0,1,2,3,58.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.38728272723631096,757.4139322623291,1,1,1_1,1_0_1,1_3_1,1_0_1 -22304,2,38.0,0.0,2,111,700.0,2100.0,0.0,37,37,0.0,0.0,967.5219593031513,2800.0,0.0,3808.6710917796427,60,0,0,0,0,0,0,0,0,2,60.0,1,,2,115224,2,2,1,0,1,,500.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,1061.09055402468,700.0,77891.77851906871,1,1,1,2,200.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035947311169875665,28848.80685891434,8,4,8,8_1,8_3,8_0_1 -22305,2,66.0,0.0,8,111,0.0,0.0,0.0,86,31,0.0,0.0,0.0,1471.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,114045,2,1,0,0,1,,0.0,,42,1.0,4.0,5.0,2.0,1.5,2,1,1433.73467456942,0.0,201225.40475909619,6,1,0,1,118.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007310210168348562,134150.26983939746,10,5,10,10_0,10_3,10_0_0 -22306,2,59.0,0.0,1,111,288.0,1900.0,0.0,0,54,0.0,0.0,398.066177541868,2188.0,0.0,3445.940511610153,71,0,0,0,0,0,0,0,0,3,30.0,1,,1,122548,2,2,2,0,1,,134.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1083.65254123614,288.0,30378.60632290216,0,1,0,1,120.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07202437059630633,30378.60632290216,8,4,8,8_1,8_3,8_1_0 -22307,2,65.0,0.0,7,111,420.0,0.0,0.0,0,75,0.0,0.0,580.5131755818909,420.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,108909,2,1,0,0,1,,0.0,623.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1463.3334478379,420.0,27342.364808438295,0,5,2,3,46.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015360778152970192,27342.364808438295,7,4,7,7_0,7_3,7_0_0 -22308,2,43.0,0.0,2,111,558.0,510.0,0.0,33,45,0.0,0.0,771.2532189873692,1068.0,0.0,924.962979432199,70,0,0,0,0,0,0,0,0,1,20.0,2,,2,112548,2,1,0,0,2,,0.0,995.0,43,2.0,0.0,5.0,3.0,1.8,1,1,1482.84462376141,558.0,20766.963696972787,1,1,2,3,96.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.051427835844663365,11537.20205387377,2,1,2_0,2_0_0,2_3_0,2_0_1 -22309,2,77.0,0.0,6,111,1000.0,0.0,0.0,0,75,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,112910,2,1,0,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1322.22728724639,1000.0,42541.99222991081,0,5,0,1,72.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023506186419189626,42541.99222991081,9,5,9,9_0,9_3,9_0_0 -22310,2,61.0,0.0,5,111,320.0,960.0,0.0,77,75,0.0,0.0,442.2957528242978,1280.0,0.0,1741.106784813551,42,0,0,0,0,0,0,0,0,0,,2,,3,120141,2,1,0,1,1,417.0,0.0,468.0,41,0.0,4.0,5.0,2.0,1.5,4,4,1149.7428310786,320.0,31360.9487477144,5,5,2,3,98.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04081509173389682,20907.299165142933,5,3,5,5_0,5_3,5_0_0 -22311,1,59.0,31.0,1,111,260.0,204.0,0.0,0,77,0.0,0.0,359.36529916974195,464.0,0.0,369.9851917728796,31,0,0,0,0,0,0,0,0,0,,2,,1,129569,2,1,0,0,1,,0.0,359.0,11,0.0,1.0,4.0,1.0,1.0,3,2,1220.44335612054,260.0,18015.54013131799,0,5,2,3,86.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025755541971977193,18015.54013131799,4,2,4_1,4_0_1,4_3_1,4_1_0 -22312,2,38.0,0.0,9,111,480.0,840.0,0.0,55,52,0.0,0.0,663.4436292364467,1320.0,0.0,1523.468436711857,10,0,0,0,0,0,0,0,0,3,35.0,2,2006.0,6,122459,2,1,0,0,1,,0.0,542.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1159.27538770572,480.0,39162.12707962324,1,1,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03370603433557672,18648.631942677734,4,2,4_0,4_0_0,4_3_0,4_0_0 -22313,2,61.0,0.0,6,111,72.0,0.0,0.0,0,74,0.0,0.0,99.516544385467,72.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,113926,2,2,0,0,2,,0.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,1425.67305243347,72.0,60433.02174625025,0,5,0,1,40.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0011914016198348954,60433.02174625025,10,5,10,10_0,10_3,10_0_0 -22314,2,36.0,0.0,6,111,968.0,0.0,0.0,0,34,0.0,0.0,1337.944652293501,968.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,4,109275,2,3,0,0,1,,0.0,528.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1446.21741616251,968.0,32407.758400020404,0,1,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02986939078141827,32407.758400020404,8,4,8,8_0,8_3,8_0_0 -22316,2,25.0,0.0,1,111,450.0,0.0,0.0,34,37,0.0,0.0,621.9784024091688,450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,126146,2,1,0,1,1,412.0,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1391.02445918878,450.0,51935.186040009794,1,1,2,3,64.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00866464596185964,34623.45736000653,9,5,9,9_0,9_3,9_1_0 -22317,1,52.0,115.0,2,111,250.0,0.0,0.0,0,46,0.0,0.0,345.54355689398267,250.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,2,105899,1,3,0,1,1,710.0,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1560.79564021054,250.0,18444.80662065593,0,4,2,3,62.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.013553950721284902,18444.80662065593,4,2,4_1,4_0_1,4_3_1,4_0_1 -22318,2,79.0,0.0,2,111,178.0,0.0,0.0,0,77,0.0,0.0,246.02701250851564,178.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117808,2,1,0,1,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,6,4,1557.17375268274,178.0,10377.0,0,5,0,1,36.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017153319841958177,10377.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -22319,0,35.0,0.0,2,111,0.0,0.0,0.0,48,34,0.0,0.0,0.0,1429.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,1.0,2,,2,132947,2,1,0,1,1,,0.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,1526.60251272504,0.0,58615.0,1,1,5,0,140.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024379425061844238,27911.90476190476,7,4,7,7_0,7_3,7_0_1 -22320,2,31.0,0.0,9,111,300.0,1200.0,0.0,46,48,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,121509,1,2,0,0,1,,0.0,640.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1419.46256002221,300.0,37281.97792754578,1,1,2,3,67.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0402339168515983,24854.651951697186,7,4,7,7_0,7_3,7_0_0 -22321,1,44.0,95.0,2,111,600.0,330.0,0.0,56,62,0.0,0.0,829.3045365455583,930.0,0.0,598.5054572796581,42,0,0,0,0,0,0,0,0,2,7.0,2,,2,101289,2,2,0,1,1,1152.0,0.0,697.0,43,2.0,0.0,5.0,7.0,3.1999999999999993,2,2,1229.06336813929,600.0,49449.96038497338,1,1,2,3,100.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018806890698391823,15453.112620304186,3,2,3_1,3_0_1,3_3_1,3_0_1 -22322,2,29.0,0.0,2,111,312.0,0.0,0.0,42,42,0.0,0.0,431.23835900369033,312.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,,2,129689,1,2,0,1,1,620.0,0.0,605.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1474.90527406144,312.0,40691.2523564868,1,1,2,3,65.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007667495639274972,27127.5015709912,7,4,7,7_0,7_3,7_0_1 -22323,2,51.0,0.0,1,111,529.0,1488.0,0.0,65,45,0.0,0.0,731.1701663876672,2017.0,0.0,2698.715516461004,44,2,1,2,2,1,2,2,2,3,30.0,2,,1,112005,2,2,0,0,1,,0.0,750.0,43,3.0,0.0,4.0,4.0,2.5,2,2,1493.22069535909,529.0,52607.511326824075,1,1,2,3,91.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.038340532542385265,21043.00453072963,5,3,5,5_0,5_3,5_1_0 -22324,2,39.0,0.0,2,111,1200.0,1800.0,0.0,0,45,0.0,0.0,1658.6090730911167,3000.0,0.0,3264.575221525408,50,2,2,2,2,1,2,2,2,2,20.0,2,,2,121412,2,1,0,0,1,,500.0,,32,1.0,0.0,4.0,3.0,1.6,2,2,1542.84851978436,1200.0,46845.975472290906,0,1,1,2,98.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06403965270772258,29278.734670181813,8,4,8,8_0,8_3,8_0_1 -22325,1,45.0,300.0,1,111,300.0,2200.0,0.0,0,85,0.0,0.0,414.65226827277917,2500.0,0.0,3990.0363818643877,31,2,2,2,2,1,2,2,1,0,,1,,1,118324,1,3,4,0,2,,250.0,,31,0.0,0.0,4.0,2.0,1.3,2,2,1040.75008549043,300.0,8938.059644087183,0,7,1,2,85.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.27970276542670325,6875.430495451679,1,1,1_1,1_1_1,1_3_1,1_1_0 -22326,2,68.0,0.0,5,111,600.0,0.0,0.0,75,77,0.0,0.0,829.3045365455583,600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,120912,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1226.31643874875,600.0,34988.23466485633,6,5,0,1,77.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017148621693756545,23325.48977657089,6,3,6,6_0,6_3,6_0_0 -22327,2,77.0,0.0,5,111,260.0,0.0,0.0,0,78,0.0,0.0,359.36529916974195,260.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,111420,1,3,0,1,1,605.0,0.0,455.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1530.09953588341,260.0,14014.000940929247,0,5,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018552874450054074,14014.000940929247,3,2,3_0,3_0_0,3_3_0,3_0_0 -22328,1,39.0,372.0,2,111,600.0,700.0,0.0,0,56,0.0,0.0,829.3045365455583,1300.0,0.0,1269.5570305932142,12,0,0,0,0,0,0,0,0,3,25.0,2,,2,128010,1,3,0,1,1,686.0,0.0,338.0,32,1.0,0.0,4.0,4.0,2.3,2,2,317.214452102877,600.0,12789.731769746235,0,1,2,3,56.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1016440394062927,5560.752943367928,1,1,1_1,1_0_1,1_3_1,1_0_1 -22329,1,72.0,207.0,2,111,108.0,0.0,0.0,0,86,0.0,0.0,149.2748165782005,195.0,149.6684493645467,0.0,10,2,2,2,2,2,1,2,2,0,,2,,2,116265,1,3,0,1,2,263.0,0.0,193.0,11,0.0,1.0,1.0,1.0,1.0,3,2,364.331979096824,108.0,9412.71828769044,0,5,2,3,40.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.020716651028960767,9412.71828769044,1,1,1_1,1_0_1,1_3_1,1_0_1 -22330,1,37.0,298.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,442.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,106870,2,1,0,1,1,100.0,0.0,269.0,32,1.0,0.0,4.0,2.0,1.3,2,2,345.721239711783,0.0,11830.847283504323,0,4,2,3,68.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03735996158248766,9100.651756541787,1,1,1_1,1_0_1,1_3_1,1_0_1 -22331,2,45.0,0.0,1,111,1640.0,1800.0,0.0,46,33,0.0,207.03450096389156,2266.7657332245262,3640.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,118595,1,1,2,0,1,,320.0,,43,2.0,0.0,6.0,5.0,2.8,3,3,290.643789043238,1640.0,32485.607505727177,4,1,1,2,140.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.112049620723832,11602.00268061685,2,1,2_0,2_1_0,2_3_0,2_1_0 -22332,2,67.0,0.0,2,111,0.0,2400.0,0.0,64,64,0.0,0.0,0.0,2441.0,0.0,4352.7669620338775,50,2,2,2,1,1,2,1,2,0,,2,,2,115949,1,3,0,0,1,,508.0,316.0,43,2.0,6.0,3.0,2.0,1.5,3,2,1155.50355749232,0.0,21899.2336658557,1,1,2,3,70.0,9,7,4,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.11146508764851884,14599.489110570466,3,2,3_0,3_0_0,3_3_0,3_0_1 -22333,2,63.0,0.0,1,111,432.0,972.0,0.0,77,75,0.0,0.0,597.099266312802,1404.0,0.0,1762.8706196237204,41,0,0,0,0,0,0,0,0,0,,2,,1,107397,2,1,0,0,1,,0.0,380.0,41,0.0,2.0,3.0,2.0,1.5,1,1,1150.89258346144,432.0,13519.506115642094,5,5,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10384994747519433,9013.004077094729,1,1,1_0,1_0_0,1_3_0,1_1_0 -22334,2,58.0,0.0,5,111,636.0,0.0,0.0,78,77,0.0,0.0,879.0628087382918,779.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,125239,1,3,0,1,1,624.0,0.0,388.0,41,0.0,0.0,2.0,2.0,1.5,1,1,1342.20473801745,636.0,30313.14468204321,5,5,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025698422521681204,20208.76312136214,5,3,5,5_0,5_3,5_0_0 -22335,2,69.0,0.0,2,120,320.0,0.0,0.0,78,86,0.0,517.5862524097289,442.2957528242978,945.0,215.04087552377396,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,103908,2,2,3,0,2,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1568.01834409358,320.0,24040.691868668095,5,5,0,1,110.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039308352902755084,16027.127912445396,4,2,4_0,4_1_0,4_1_0,4_0_1 -22336,2,69.0,0.0,1,120,400.0,0.0,0.0,0,86,1045.5094139126004,0.0,552.8696910303722,1158.0,99.77896624303112,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,130617,2,3,4,0,1,,100.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1553.35317117093,400.0,17884.01765939695,0,5,0,1,70.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06475055113757071,17884.01765939695,4,2,4_0,4_1_0,4_1_0,4_1_0 -22337,2,49.0,0.0,7,120,1400.0,0.0,0.0,55,47,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,102453,2,1,1,0,1,,310.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1545.34004924345,1400.0,47609.45367233585,1,1,1,2,90.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02940592449632519,31739.63578155723,8,4,8,8_1,8_1,8_0_0 -22338,2,75.0,0.0,9,120,600.0,0.0,0.0,0,75,0.0,621.1035028916747,829.3045365455583,1200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,103372,2,1,1,0,1,,320.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1877.123080657,600.0,16338.095253891752,0,5,0,1,90.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07344797428048773,16338.095253891752,4,2,4_0,4_1_0,4_1_0,4_0_0 -22339,2,43.0,0.0,7,120,629.0,1517.0,0.0,52,48,0.0,0.0,869.3875891452603,2146.0,0.0,2751.31145058558,10,0,0,0,0,0,0,0,0,2,25.0,1,,5,123884,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1519.99583836612,629.0,47795.59522119791,1,1,1,2,120.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04489953498995706,22759.807248189478,6,3,6,6_1,6_1,6_0_0 -22340,2,45.0,0.0,7,120,550.0,1200.0,0.0,64,52,0.0,0.0,760.1958251667618,1750.0,0.0,2176.3834810169387,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,111398,2,1,1,0,1,,148.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1716.48815533406,550.0,43035.252925273366,1,1,1,2,90.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04066433635323833,28690.16861684891,8,4,8,8_1,8_1,8_0_0 -22341,2,32.0,0.0,9,120,280.0,850.0,0.0,45,38,0.0,0.0,387.00878372126056,1130.0,0.0,1541.6049657203316,42,0,0,0,0,0,0,0,0,2,45.0,2,2006.0,6,108735,2,1,0,0,1,,320.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,2287.75797603203,280.0,58610.233042160384,1,1,1,2,72.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019279909690636303,32561.24057897799,8,4,8,8_0,8_1,8_0_0 -22342,2,74.0,0.0,2,120,360.0,0.0,0.0,78,78,0.0,0.0,497.582721927335,360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,103508,2,2,2,0,1,,120.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1617.24210827163,360.0,15408.009468539247,5,5,0,1,96.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02336447162335043,10272.006312359497,2,1,2_0,2_1_0,2_1_0,2_0_1 -22343,2,63.0,0.0,2,120,450.0,0.0,0.0,0,78,0.0,0.0,621.9784024091688,610.0,275.25232067043066,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,111960,2,1,0,1,1,,560.0,332.0,11,0.0,2.0,4.0,1.0,1.0,4,3,2648.03481032754,450.0,14477.37430969857,0,5,2,3,90.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04213471220339682,14477.37430969857,3,2,3_0,3_0_0,3_1_0,3_0_1 -22344,2,57.0,0.0,1,120,1400.0,0.0,0.0,0,55,1493.5848770180007,0.0,1935.0439186063027,2465.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,133462,2,2,2,0,1,,164.0,,22,1.0,0.0,4.0,2.0,1.5,1,1,1714.10979855873,1400.0,35634.177592700486,0,1,0,1,90.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06917516178358345,23756.118395133657,6,3,6,6_1,6_1,6_1_0 -22345,2,52.0,0.0,1,120,170.0,0.0,0.0,52,63,1433.8414819372806,0.0,234.9696186879082,1205.0,129.02452531426437,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,107682,2,1,2,0,1,,303.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1804.02670219844,170.0,59820.76164571589,1,1,0,1,110.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02014350815418441,39880.507763810594,9,5,9,9_1,9_1,9_1_0 -22346,2,40.0,0.0,1,120,700.0,0.0,0.0,0,65,0.0,0.0,967.5219593031513,725.0,43.00817510475479,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,114441,1,1,0,0,2,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2185.63149424952,700.0,17200.062128231904,0,1,2,3,44.0,0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04215101053675828,17200.062128231904,4,2,4_0,4_0_0,4_1_0,4_1_0 -22347,2,64.0,0.0,2,120,1000.0,0.0,0.0,86,75,2091.018827825201,0.0,1382.1742275759307,2400.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,102136,2,2,2,0,1,,350.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1804.23290107632,1000.0,45178.84705483787,5,5,0,1,120.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05312220555533193,30119.231369891913,8,4,8,8_1,8_1,8_0_1 -22348,2,66.0,0.0,9,120,520.0,0.0,0.0,77,86,0.0,621.1035028916747,718.7305983394839,1120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,105291,2,1,1,0,1,,120.0,650.0,41,0.0,0.0,3.0,2.0,1.5,3,3,1901.82939992727,520.0,29344.764284711884,5,5,2,3,82.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03816694484690411,19563.176189807924,5,3,5,5_1,5_1,5_0_0 -22350,1,69.0,232.0,2,120,500.0,0.0,0.0,86,78,2091.018827825201,0.0,691.0871137879653,2050.0,258.04905062852873,0.0,71,2,2,2,2,2,2,2,1,0,,1,,2,109332,1,3,4,0,2,,0.0,230.0,41,0.0,4.0,2.0,2.0,1.5,2,2,1794.34729214243,500.0,9054.273945794666,5,5,2,3,60.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.22641241167130136,6036.182630529777,1,1,1_1,1_1_1,1_1_1,1_0_1 -22351,2,53.0,0.0,7,120,540.0,0.0,0.0,11,11,0.0,0.0,746.3740828910024,540.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,122273,2,1,1,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1674.39301123445,540.0,43149.91332211511,1,1,0,1,150.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012514509495509002,28766.608881410077,8,4,8,8_1,8_1,8_0_0 -22352,2,48.0,0.0,7,120,1200.0,0.0,0.0,85,62,0.0,310.55175144583734,1658.6090730911167,1560.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,5,126434,2,1,1,0,1,,250.0,,42,1.0,0.0,5.0,5.0,2.8,4,4,1676.82692090198,1200.0,51684.57257039618,6,1,1,2,115.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030183087958698427,18458.775917998635,4,2,4_0,4_1_0,4_1_0,4_0_0 -22353,2,41.0,0.0,7,120,320.0,1560.0,0.0,0,56,0.0,0.0,442.2957528242978,1880.0,0.0,2829.2985253220204,50,0,0,0,0,0,0,0,0,0,,1,,5,125758,2,1,1,0,1,,500.0,,32,2.0,0.0,5.0,4.0,2.3,2,2,1569.88729114615,320.0,25566.11446044527,0,1,1,2,110.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07353483466987722,11115.701939324032,2,1,2_0,2_1_0,2_1_0,2_0_0 -22354,1,46.0,200.0,9,120,1300.0,0.0,0.0,85,67,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,130365,2,1,1,0,1,,320.0,,42,1.0,0.0,4.0,5.0,2.4,3,3,1644.04326415691,1300.0,30168.32383145799,6,1,1,2,93.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04309155547596006,12570.134929774164,2,1,2_1,2_1_1,2_1_1,2_0_0 -22355,2,30.0,0.0,9,120,1400.0,0.0,0.0,55,64,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109166,1,1,1,0,1,,360.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1702.22009575948,1400.0,51320.81364874485,4,1,1,2,83.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027279380439718334,24438.4826898785,7,4,7,7_1,7_1,7_0_0 -22356,2,75.0,0.0,1,120,480.0,0.0,0.0,77,71,0.0,0.0,663.4436292364467,570.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107150,2,3,4,0,1,,193.0,,41,0.0,0.0,5.0,2.0,1.5,5,5,1851.38064908439,480.0,15866.94711384122,5,5,0,1,120.0,0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03592373478718989,10577.964742560813,2,1,2_0,2_1_0,2_1_0,2_1_0 -22357,2,66.0,0.0,5,120,355.0,0.0,0.0,0,77,2442.011273924431,0.0,490.67185078945533,2090.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,133209,2,1,4,0,1,,140.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1761.64459403679,355.0,22974.51637880747,0,5,0,1,106.0,0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09097035887675493,22974.51637880747,6,3,6,6_1,6_1,6_0_0 -22358,2,45.0,0.0,7,120,500.0,500.0,0.0,0,47,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,70,0,0,0,0,0,0,0,0,2,40.0,1,,5,111471,2,2,3,0,1,,0.0,374.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1749.71585026178,500.0,39334.53540436675,0,1,2,3,65.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025422951859474217,39334.53540436675,9,5,9,9_1,9_1,9_0_0 -22359,2,83.0,0.0,2,120,550.0,800.0,0.0,77,90,0.0,414.0690019277831,760.1958251667618,1750.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,2,124292,2,3,4,0,1,,240.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,1742.79264509814,550.0,34680.1666439071,5,5,0,1,140.0,0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050461118539851496,23120.111095938064,6,3,6,6_1,6_1,6_0_1 -22360,2,40.0,0.0,2,120,520.0,1880.0,0.0,0,46,0.0,0.0,718.7305983394839,2400.0,0.0,3409.667453593204,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,128186,2,2,1,0,1,,180.0,,32,1.0,0.0,6.0,2.0,1.5,2,2,1619.48605946354,520.0,17396.25552965343,0,1,0,1,90.0,0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13796072355392752,11597.50368643562,2,1,2_0,2_1_0,2_1_0,2_0_1 -22361,0,51.0,0.0,1,120,600.0,0.0,0.0,56,47,1194.8679016144006,0.0,829.3045365455583,1500.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103904,2,1,2,0,1,,582.0,,43,3.0,0.0,7.0,4.0,2.5,2,2,1780.72590058794,600.0,39350.50469080922,1,1,5,0,120.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03811895201309433,15740.201876323688,3,2,3_0,3_1_0,3_1_0,3_1_0 -22362,2,29.0,0.0,2,120,750.0,0.0,0.0,69,55,2240.377315527001,0.0,1036.630670681948,2250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,,2,105575,2,1,1,0,1,,220.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,1571.86160133924,750.0,40101.515384446524,1,1,1,2,95.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0561076053717578,26734.343589631015,7,4,7,7_1,7_1,7_0_1 -22363,2,64.0,0.0,2,120,560.0,0.0,0.0,77,78,2389.735803228801,0.0,774.0175674425211,2160.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,133584,2,2,2,0,2,,164.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1738.53145540101,560.0,33161.34515780111,5,5,0,1,110.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06513607906197576,22107.56343853407,6,3,6,6_1,6_1,6_0_1 -22364,2,45.0,0.0,2,120,1200.0,0.0,0.0,0,63,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,112916,2,1,0,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,2190.20705594953,1200.0,17365.460159712416,0,1,1,2,76.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06910268941700609,17365.460159712416,4,2,4_0,4_0_0,4_1_0,4_0_1 -22365,2,44.0,0.0,2,120,900.0,0.0,0.0,64,62,0.0,414.0690019277831,1243.9568048183376,1550.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,117000,1,1,0,0,1,,230.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,2355.49681251774,900.0,32769.945392123875,4,1,0,1,82.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04729943798968113,14247.802344401685,3,2,3_0,3_0_0,3_1_0,3_0_1 -22366,2,51.0,0.0,2,120,500.0,0.0,0.0,56,47,0.0,258.79312620486445,691.0871137879653,840.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,111683,2,2,2,0,1,,350.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1804.02670219844,500.0,53628.31153821992,1,1,0,1,110.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01566336839453443,35752.207692146614,9,5,9,9_1,9_1,9_0_1 -22367,2,62.0,0.0,5,120,1400.0,0.0,0.0,77,78,0.0,0.0,1935.0439186063027,1600.0,344.06540083803833,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,107797,2,1,2,0,1,,3300.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,1751.36145720031,1400.0,34889.50611583767,5,5,0,1,127.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045859061308801366,23259.67074389178,6,3,6,6_1,6_1,6_0_0 -22368,2,28.0,0.0,5,120,800.0,0.0,0.0,55,53,0.0,724.6207533736205,1105.7393820607444,1600.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,107186,2,1,2,0,1,,250.0,,43,2.0,6.0,5.0,4.0,2.5,1,1,1893.51288870204,800.0,52400.39011590805,4,1,0,1,100.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030534123819705335,20960.15604636322,5,3,5,5_1,5_1,5_0_0 -22369,2,57.0,0.0,5,120,1100.0,0.0,0.0,52,37,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,123367,2,1,2,0,1,,350.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1930.54908971582,1100.0,85423.51904491226,1,1,0,1,160.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012877015748106374,56949.01269660817,10,5,10,10_1,10_1,10_0_0 -22370,2,46.0,0.0,9,120,800.0,0.0,0.0,78,65,0.0,103.51725048194578,1105.7393820607444,1020.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,132600,2,1,1,0,1,,180.0,,42,1.0,0.0,5.0,2.0,1.5,3,3,1549.07976880459,800.0,31878.364243799704,5,1,1,2,85.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03199662291952099,21252.242829199804,5,3,5,5_1,5_1,5_0_0 -22371,2,63.0,0.0,1,120,600.0,0.0,0.0,78,78,0.0,1552.7587572291866,829.3045365455583,2100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,110521,2,1,2,0,1,,400.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1679.05454131377,600.0,17104.881532637017,5,5,0,1,120.0,0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12277196986094813,11403.254355091345,2,1,2_0,2_1_0,2_1_0,2_1_0 -22372,0,78.0,0.0,1,120,0.0,0.0,1500.0,78,78,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,41,0,0,0,0,0,0,0,0,0,,1,,1,123793,2,2,4,0,1,,320.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1606.66460401655,0.0,25424.648523612417,5,5,0,1,100.0,0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.058997865736744315,16949.765682408277,4,2,4_0,4_1_0,4_1_0,4_1_0 -22373,2,64.0,0.0,5,120,491.0,0.0,0.0,78,65,1866.981096272501,0.0,678.6475457397819,1781.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,129963,2,1,1,0,1,,311.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1808.65512687236,491.0,23431.209414302535,5,4,0,1,90.0,0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07600973421853624,15620.80627620169,3,2,3_0,3_1_0,3_1_0,3_0_0 -22374,2,56.0,0.0,1,120,1060.0,0.0,0.0,78,52,1194.8679016144006,724.6207533736205,1465.1046812304864,2560.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,130270,2,2,3,0,1,,500.0,,42,1.0,1.0,6.0,3.0,2.0,2,2,1940.40651371819,1060.0,49127.99177297258,5,1,0,1,120.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052108785798331086,24563.99588648629,7,4,7,7_1,7_1,7_1_0 -22376,1,38.0,180.0,9,120,0.0,0.0,1040.0,0,42,0.0,0.0,531.3498682310261,1040.0,0.0,1188.9756056387366,70,1,2,2,1,1,2,2,2,2,20.0,2,2005.0,6,109372,2,1,0,0,1,,0.0,500.0,32,1.0,0.0,3.0,2.0,1.3,3,3,2251.7192052962,0.0,22480.31704410581,0,1,2,3,65.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.046262692735140096,17292.551572389086,4,2,4_1,4_0_1,4_1_1,4_0_0 -22377,2,47.0,0.0,2,120,800.0,1600.0,0.0,47,38,0.0,0.0,1105.7393820607444,2460.0,103.2196202514115,2901.844641355918,42,0,0,0,0,0,0,0,0,2,40.0,1,,2,103698,2,2,3,0,1,,210.0,,43,2.0,0.0,8.0,4.0,2.5,2,2,1762.3462757433,800.0,68191.2040656627,1,1,0,1,150.0,0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03607503392418787,27276.481626265082,7,4,7,7_1,7_1,7_0_1 -22378,2,28.0,0.0,2,120,700.0,0.0,0.0,52,64,2688.452778632401,517.5862524097289,967.5219593031513,3000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,124320,2,1,4,0,1,,200.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1785.2315922331,700.0,44297.08528538942,1,1,1,2,110.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0677245462240265,24609.49182521634,7,4,7,7_1,7_1,7_0_1 -22379,2,52.0,0.0,7,120,2000.0,0.0,0.0,0,48,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,103510,2,1,1,0,1,,290.0,,12,1.0,2.0,5.0,1.0,1.0,3,2,1684.32524325073,2000.0,47398.47808078023,0,1,1,2,110.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04219544763845459,47398.47808078023,10,5,10,10_1,10_1,10_0_0 -22380,2,52.0,0.0,5,120,1400.0,0.0,0.0,78,13,0.0,0.0,1935.0439186063027,1520.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,133007,2,1,1,0,1,,350.0,,42,1.0,0.0,5.0,5.0,2.8,4,4,1581.8019726781,1400.0,29600.23311991774,7,1,0,1,110.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05135094692809042,10571.51182854205,2,1,2_0,2_1_0,2_1_0,2_0_0 -22381,2,67.0,0.0,2,120,500.0,0.0,0.0,78,78,0.0,0.0,691.0871137879653,600.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,101225,2,2,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,1571.86160133924,500.0,25521.16795012892,5,5,0,1,88.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023509895831274802,17014.111966752615,4,2,4_0,4_1_0,4_1_0,4_0_1 -22382,1,30.0,459.0,1,120,336.0,956.0,0.0,0,85,0.0,0.0,464.41054046551267,1292.0,0.0,1733.8521732101613,41,2,2,2,2,1,2,2,2,0,,2,,1,115069,1,2,0,0,1,,300.0,528.0,31,0.0,0.0,3.0,4.0,1.9,1,1,2308.31084717775,336.0,14380.982900217736,0,6,2,3,63.0,0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.08984086894230564,7568.938368535651,1,1,1_1,1_0_1,1_1_1,1_1_0 -22383,2,41.0,0.0,1,111,600.0,0.0,0.0,0,62,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,1,15.0,2,,1,111711,2,2,0,0,2,,0.0,532.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1095.86901068631,600.0,26559.18291837658,0,1,2,3,75.0,7,5,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02485016207118853,26559.18291837658,7,4,7,7_0,7_2,7_1_0 -22384,2,41.0,0.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,918.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,5,131483,2,1,0,0,1,,183.0,380.0,22,2.0,0.0,3.0,2.0,1.5,2,2,969.610125627665,0.0,26846.868041225058,0,1,3,4,85.0,7,5,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03419393273697152,17897.912027483373,4,2,4_0,4_0_0,4_2_0,4_0_0 -22385,2,45.0,0.0,7,111,250.0,1000.0,0.0,43,55,0.0,0.0,345.54355689398267,1250.0,0.0,1813.6529008474488,44,0,0,0,0,0,0,0,0,2,20.0,2,,5,130774,2,1,0,0,1,,0.0,600.0,43,2.0,0.0,4.0,2.0,1.5,2,2,913.89693801723,250.0,48077.431906422615,1,1,2,3,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025999724827918975,32051.62127094841,8,4,8,8_0,8_2,8_0_0 -22387,2,49.0,0.0,1,111,340.0,1740.0,0.0,0,63,0.0,0.0,469.9392373758164,2080.0,0.0,3155.756047474561,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,105029,2,2,0,0,1,,280.0,,32,2.0,3.0,3.0,2.0,1.5,2,2,1031.86188568329,340.0,34842.60428782797,0,1,0,1,90.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05969703018802857,23228.40285855198,6,3,6,6_0,6_2,6_1_0 -22388,2,78.0,0.0,2,111,220.0,80.0,0.0,0,78,0.0,0.0,304.0783300667047,300.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,0,,2,,2,107686,2,1,0,1,1,744.0,0.0,301.0,11,0.0,1.0,4.0,1.0,1.0,2,2,896.708488187952,220.0,28501.33485651219,0,5,2,3,67.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010525822790768477,28501.33485651219,8,4,8,8_0,8_2,8_0_1 -22389,2,60.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,809.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,8,,1,126488,2,2,0,1,2,,0.0,241.0,12,1.0,2.0,3.0,1.0,1.0,2,2,965.779677494807,0.0,19274.376135595165,0,1,2,3,60.0,7,5,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0419728241427213,19274.376135595165,5,3,5,5_0,5_2,5_1_0 -22390,2,56.0,0.0,5,111,1400.0,0.0,0.0,52,63,0.0,0.0,1935.0439186063027,1500.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,1,5.0,1,,3,123166,2,2,2,0,1,,256.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,746.539799833594,1400.0,44583.44600525869,1,1,0,1,140.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03364477478531096,29722.297336839125,8,4,8,8_1,8_2,8_0_0 -22391,2,45.0,0.0,1,111,622.0,1945.0,0.0,54,46,0.0,0.0,859.7123695522288,2567.0,0.0,3527.554892148288,50,0,0,0,0,0,0,0,0,2,12.0,1,,1,119121,2,1,1,0,1,,445.0,,43,4.0,0.0,6.0,4.0,2.5,1,1,710.439690028121,622.0,63985.3768251015,1,1,1,2,126.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040118541569531936,25594.1507300406,7,4,7,7_1,7_2,7_1_0 -22392,2,44.0,0.0,7,111,150.0,750.0,0.0,0,52,0.0,0.0,207.32613413638958,900.0,0.0,1360.2396756355868,31,0,0,0,0,0,0,0,0,1,20.0,2,,5,124328,2,1,0,0,1,,0.0,481.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1044.02926041176,150.0,21076.056581111898,0,1,2,3,48.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.042702485473803904,21076.056581111898,5,3,5,5_0,5_2,5_0_0 -22393,2,39.0,0.0,2,111,350.0,1350.0,0.0,33,37,0.0,0.0,483.76097965157567,1700.0,0.0,2448.431416144056,10,0,0,0,0,0,0,0,0,2,50.0,2,,2,112458,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,997.961498659537,350.0,65076.91530123295,1,1,1,2,115.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02612293456336877,30989.007286301403,8,4,8,8_0,8_2,8_0_1 -22394,2,26.0,0.0,8,111,220.0,920.0,0.0,34,38,0.0,0.0,304.0783300667047,1140.0,0.0,1668.560668779653,50,0,0,0,0,0,0,0,0,2,30.0,2,2003.0,6,133613,2,1,0,0,1,,0.0,790.0,43,2.0,0.0,3.0,2.0,1.5,3,2,950.605989378581,220.0,44060.02008108415,1,1,2,3,72.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025873796650615347,29373.346720722766,8,4,8,8_0,8_2,8_0_0 -22395,2,58.0,0.0,1,111,620.0,1300.0,0.0,77,63,0.0,0.0,856.9480210970769,1920.0,0.0,2357.7487711016834,12,0,0,0,0,0,0,0,0,1,15.0,1,,1,110958,2,2,4,0,1,,204.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,700.52679834804,620.0,32241.449862169335,5,1,1,2,70.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059550671827970164,21494.29990811289,6,3,6,6_1,6_2,6_1_0 -22396,2,83.0,0.0,2,111,350.0,1400.0,0.0,86,75,0.0,0.0,483.76097965157567,1750.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,2,100584,2,1,1,0,1,,280.0,,41,0.0,0.0,5.0,2.0,1.5,3,3,700.957965902095,350.0,39451.455990654555,5,5,0,1,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04435831216000109,26300.97066043637,7,4,7,7_1,7_2,7_0_1 -22397,2,67.0,0.0,1,111,2400.0,0.0,0.0,0,86,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,127371,2,1,2,0,1,,340.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,669.312893245208,2400.0,17020.433309940123,0,5,0,1,60.0,7,5,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14100698591488697,17020.433309940123,4,2,4_0,4_1_0,4_2_0,4_1_0 -22398,2,56.0,0.0,1,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,1027.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,20.0,1,,1,120436,2,1,1,0,1,,571.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,742.020305001888,0.0,55588.03880300761,1,1,1,2,110.0,7,5,4,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018475197580534786,22235.21552120304,6,3,6,6_1,6_2,6_1_0 -22399,2,42.0,0.0,8,111,1450.0,0.0,0.0,0,34,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,1999.0,6,109193,2,1,0,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,6,5,1093.51901132284,1450.0,27836.78589562556,0,1,0,1,110.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.052089347004240956,27836.78589562556,7,4,7,7_0,7_2,7_0_0 -22400,2,46.0,0.0,6,111,748.0,1041.0,0.0,52,46,0.0,0.0,1033.866322226796,1789.0,0.0,1888.0126697821943,12,2,2,2,2,2,2,2,1,2,10.0,1,,4,107115,2,2,1,0,1,,362.0,653.0,43,2.0,0.0,5.0,3.0,2.0,5,3,698.772236271445,748.0,47656.64784131121,1,1,2,3,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03753935874711699,23828.323920655606,6,3,6,6_1,6_2,6_0_0 -22402,2,40.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,737.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,106656,2,1,0,0,1,,0.0,430.0,12,1.0,1.0,2.0,1.0,1.0,3,2,1092.38827646204,0.0,14141.972381243751,0,1,2,3,60.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05211437132895763,14141.972381243751,3,2,3_0,3_0_0,3_2_0,3_0_1 -22403,2,49.0,0.0,5,111,150.0,0.0,0.0,45,46,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,3,132521,2,1,0,1,2,586.0,0.0,450.0,43,2.0,0.0,4.0,4.0,2.3,3,3,787.436649018459,150.0,49804.26398161099,1,1,2,3,75.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00301179031689704,21654.027818091734,6,3,6,6_0,6_2,6_0_0 -22404,1,38.0,350.0,9,111,650.0,150.0,0.0,0,56,0.0,0.0,898.4132479243549,800.0,0.0,272.04793512711734,20,0,0,0,0,0,0,0,0,0,,2,2009.0,6,110746,2,1,0,0,1,,0.0,450.0,32,1.0,0.0,3.0,2.0,1.3,2,2,848.908729094635,650.0,10721.276593295532,0,4,2,3,69.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07461797977493406,8247.135840996563,1,1,1_1,1_0_1,1_2_1,1_0_0 -22405,2,66.0,0.0,1,111,510.0,0.0,0.0,0,77,0.0,0.0,704.9088560637246,708.0,340.62474682965797,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,104280,2,1,0,1,1,755.0,0.0,418.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1137.92183742801,510.0,15765.623763039235,0,5,2,3,70.0,7,5,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04490783305763187,15765.623763039235,3,2,3_0,3_0_0,3_2_0,3_1_0 -22406,1,35.0,345.0,2,111,0.0,0.0,1800.0,0,63,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,70,0,0,0,0,0,0,0,0,0,,2,,2,133434,1,2,0,0,1,,0.0,450.0,32,1.0,0.0,4.0,4.0,1.9,2,2,955.612937612767,0.0,12777.967552524786,0,4,2,3,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14086747306259514,6725.246080276203,1,1,1_1,1_0_1,1_2_1,1_0_1 -22407,1,65.0,344.0,1,111,637.0,1100.0,0.0,0,21,0.0,0.0,880.4449829658678,1737.0,0.0,1995.0181909321939,31,0,0,0,0,0,0,0,0,0,,2,,1,131780,2,3,0,0,1,,0.0,550.0,32,1.0,2.0,3.0,2.0,1.5,2,2,949.004542163225,637.0,14580.486009766084,0,1,2,3,96.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11913183132829376,9720.324006510722,1,1,1_1,1_0_1,1_2_1,1_1_0 -22408,2,33.0,0.0,5,111,400.0,0.0,0.0,0,47,0.0,0.0,552.8696910303722,430.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,127822,2,1,0,0,1,,180.0,,12,1.0,0.0,2.0,1.0,1.0,4,4,918.211092451441,400.0,29259.159589695188,0,1,1,2,44.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014696252593373944,29259.159589695188,8,4,8,8_0,8_2,8_0_0 -22409,0,40.0,0.0,1,111,0.0,0.0,1200.0,85,68,0.0,0.0,613.09600180503,1420.0,378.4719409218422,1371.8949295831578,50,0,0,0,0,0,0,0,0,0,,2,,1,130649,2,1,0,0,1,,0.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,1015.92573502472,0.0,10519.841741541924,6,4,5,0,68.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.13498301922095896,7013.227827694616,1,1,1_0,1_0_0,1_2_0,1_1_0 -22410,2,83.0,0.0,5,111,1200.0,0.0,0.0,0,86,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,125429,2,1,2,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,3,2,796.963270306716,1200.0,14779.081587429659,0,5,0,1,130.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08119584379456024,14779.081587429659,3,2,3_0,3_1_0,3_2_0,3_0_0 -22411,2,63.0,0.0,2,111,0.0,0.0,650.0,0,78,0.0,0.0,332.0936676443913,650.0,0.0,743.1097535242104,20,0,0,0,0,0,0,0,0,0,,2,,2,113526,1,2,0,1,1,1100.0,0.0,460.0,11,0.0,3.0,5.0,1.0,1.0,2,2,1087.33468721192,0.0,30066.45488698331,0,5,2,3,83.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0216187775527006,30066.45488698331,8,4,8,8_0,8_2,8_0_1 -22412,2,69.0,0.0,2,111,760.0,47.0,0.0,77,77,3733.962192545002,0.0,1050.452412957707,3307.0,0.0,85.2416863398301,10,0,0,0,0,0,0,0,0,0,,1,,2,110378,2,2,3,0,1,,220.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,747.858908679568,760.0,40087.43911198948,5,5,0,1,110.0,7,5,4,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08249466848609274,26724.959407992985,7,4,7,7_1,7_2,7_0_1 -22413,1,32.0,40.0,2,111,400.0,300.0,0.0,85,63,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,20,1,2,2,1,1,1,2,2,2,45.0,2,,2,117554,1,3,0,1,1,914.0,350.0,310.0,42,1.0,0.0,3.0,2.0,1.5,2,2,913.517312342531,400.0,15469.864510148507,6,1,2,3,45.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.045249265081849135,10313.243006765671,2,1,2_1,2_0_1,2_2_1,2_0_1 -22414,1,56.0,229.0,2,111,0.0,0.0,3500.0,63,56,0.0,0.0,1788.1966719313377,3500.0,0.0,4001.36021128421,50,2,2,2,1,1,1,2,2,0,,2,,2,111098,1,3,0,0,1,,0.0,293.0,43,2.0,5.0,3.0,2.0,1.5,1,1,854.082601062478,0.0,8338.005536615057,4,4,2,3,63.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.41976465290533727,5558.670357743372,1,1,1_1,1_0_1,1_2_1,1_0_1 -22415,1,75.0,141.0,2,111,160.0,1194.0,0.0,0,78,0.0,0.0,221.1478764121489,1354.0,0.0,2165.501563611854,50,1,2,2,1,2,2,2,2,0,,2,,2,106024,1,3,0,0,1,,156.0,198.0,11,0.0,4.0,2.0,1.0,1.0,2,2,914.755412161158,160.0,9400.957619099476,0,5,2,3,50.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.14402788044157788,9400.957619099476,1,1,1_1,1_0_1,1_2_1,1_0_1 -22416,2,36.0,0.0,7,111,980.0,0.0,0.0,0,63,0.0,0.0,1354.530743024412,980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,124989,2,1,0,0,1,,145.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1177.15877322338,980.0,12015.081257237283,0,1,2,3,35.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08156415916119561,12015.081257237283,2,1,2_0,2_0_0,2_2_0,2_0_0 -22417,1,48.0,200.0,2,111,120.0,380.0,0.0,0,85,0.0,0.0,165.86090730911167,500.0,0.0,689.1881023220305,20,0,0,0,0,0,0,0,0,0,,2,,2,107306,2,1,0,1,1,,0.0,320.0,11,0.0,3.0,4.0,1.0,1.0,2,2,273.448372628183,120.0,1823.1254127650107,0,7,2,3,70.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2742543088364305,1823.1254127650107,1,1,1_1,1_0_1,1_2_1,1_0_1 -22418,2,59.0,0.0,7,111,500.0,400.0,0.0,52,78,0.0,0.0,691.0871137879653,900.0,0.0,725.4611603389795,41,1,2,2,2,1,2,2,2,0,,1,,5,128980,1,2,4,0,1,,270.0,539.0,42,2.0,1.0,5.0,3.0,2.0,3,2,217.931810338811,500.0,47977.47499485777,1,5,2,3,96.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.01875880296110752,23988.737497428883,6,3,6,6_1,6_2,6_0_0 -22419,1,38.0,200.0,2,111,470.0,800.0,0.0,85,63,0.0,0.0,649.6218869606873,1410.0,240.84578058662683,1450.922320677959,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,124132,1,2,0,1,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4,3,3,832.752689855215,470.0,25513.068964143058,6,1,1,2,75.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05526579346379937,10630.445401726274,2,1,2_1,2_0_1,2_2_1,2_0_1 -22420,2,39.0,0.0,2,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,695.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,126255,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,984.370672475891,0.0,36618.1098770004,1,1,1,2,77.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018979679790532417,24412.0732513336,7,4,7,7_0,7_2,7_0_1 -22421,2,28.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,404.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,,2,107166,2,1,0,1,1,885.0,0.0,340.0,32,1.0,0.0,4.0,4.0,1.9,2,2,240.868261538323,0.0,35117.108107406886,0,1,2,3,82.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011504364162457571,18482.68847758257,4,2,4_0,4_0_0,4_2_0,4_0_1 -22422,2,55.0,0.0,5,111,160.0,0.0,0.0,0,56,0.0,0.0,221.1478764121489,260.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,113371,2,1,0,1,1,816.0,0.0,336.0,22,1.0,0.0,3.0,2.0,1.5,2,2,867.463106664507,160.0,31662.054378696048,0,1,2,3,70.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008211722362998093,21108.036252464033,5,3,5,5_0,5_2,5_0_0 -22423,2,83.0,0.0,1,111,540.0,0.0,0.0,78,75,4122.294260569682,0.0,746.3740828910024,3300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126172,2,1,2,0,1,,279.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,742.77953436881,540.0,29820.129795223118,5,5,0,1,160.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11066350222689596,19880.086530148747,5,3,5,5_1,5_2,5_1_0 -22424,2,44.0,0.0,1,111,393.0,931.0,0.0,0,48,0.0,0.0,543.1944714373407,1324.0,0.0,1688.5108506889749,60,0,0,0,0,0,0,0,0,2,25.0,2,,1,126511,2,1,0,0,1,,190.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,978.736474338023,393.0,33053.14435587546,0,1,1,2,62.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.040056703403004636,33053.14435587546,8,4,8,8_0,8_2,8_1_0 -22425,1,51.0,243.0,1,111,770.0,0.0,0.0,0,85,0.0,0.0,1064.2741552334664,770.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,133391,1,3,0,0,1,,0.0,395.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1085.20426960968,770.0,14420.420692446438,0,7,2,3,50.0,7,5,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.0533965004504573,14420.420692446438,3,2,3_1,3_0_1,3_2_1,3_1_0 -22426,2,54.0,0.0,1,111,0.0,0.0,1700.0,52,63,0.0,0.0,868.5526692237926,1700.0,0.0,1943.5178169094734,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,120077,1,1,3,0,1,,1300.0,,43,3.0,1.0,4.0,3.0,2.0,3,2,744.781893243734,0.0,60710.19969162364,1,1,1,2,89.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028001884504335668,30355.09984581182,8,4,8,8_1,8_2,8_1_0 -22427,1,64.0,126.0,2,111,224.0,1050.0,0.0,77,78,0.0,0.0,309.60702697700845,1274.0,0.0,1904.3355458898213,70,2,2,2,2,1,2,2,2,0,,2,,2,132971,2,2,0,0,1,,0.0,280.0,41,0.0,1.0,3.0,2.0,1.5,2,2,825.77582279655,224.0,12479.287082608082,6,5,2,3,52.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.10208916515555816,8319.52472173872,1,1,1_1,1_0_1,1_2_1,1_0_1 -22428,2,74.0,0.0,1,211,230.0,0.0,0.0,0,75,3112.6308837055135,0.0,317.900072342464,2381.0,115.26190928074284,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100392,2,1,4,0,1,,106.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,970.687925976266,230.0,26082.24651804557,0,5,0,1,150.0,4,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09128814875484953,26082.24651804557,7,4,7,7_1,7_2,7_1_0 -22429,2,48.0,0.0,1,211,398.0,0.0,0.0,0,63,2240.377315527001,0.0,550.1053425752203,1924.0,44.72850210894499,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,106175,2,1,4,0,1,,188.0,,32,1.0,1.0,3.0,2.0,1.5,1,1,978.221170453294,398.0,21196.346936599282,0,1,1,2,85.0,4,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09077035801286447,14130.897957732856,3,2,3_0,3_1_0,3_2_0,3_1_0 -22430,2,58.0,0.0,7,211,704.0,0.0,0.0,52,34,1844.577323117231,258.79312620486445,973.0506562134551,2288.0,170.31237341482898,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,5,113755,2,1,2,0,1,,212.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,941.556988912032,704.0,64804.24250368203,1,1,0,1,140.0,4,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03530633044387489,43202.82833578802,9,5,9,9_1,9_2,9_0_0 -22431,2,58.0,0.0,1,211,432.0,0.0,0.0,52,67,3441.219556649474,0.0,597.099266312802,2736.0,0.0,0.0,12,2,2,2,2,1,2,2,2,3,45.0,1,,1,130581,2,2,2,0,1,,92.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1001.51424388113,432.0,27491.085245940994,1,1,0,1,120.0,4,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09952317180362914,18327.390163960663,4,2,4_0,4_1_0,4_2_0,4_1_0 -22432,2,37.0,0.0,1,211,455.0,0.0,0.0,85,63,0.0,517.5862524097289,628.8892735470484,955.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,121566,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,3,1116.01553844699,455.0,48865.46287640984,6,1,1,2,90.0,4,4,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019543455516125546,18794.40879861917,5,3,5,5_0,5_2,5_1_0 -22433,2,31.0,0.0,1,211,1300.0,0.0,0.0,52,43,0.0,1060.0166449351248,1796.8264958487098,2394.0,120.42289029331342,0.0,71,1,2,2,1,1,2,2,2,2,25.0,1,,1,115862,2,2,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,931.500791730055,1300.0,44258.033262012934,1,1,1,2,200.0,4,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05409187493324046,21075.25393429187,5,3,5,5_1,5_2,5_1_0 -22434,2,49.0,0.0,7,211,636.0,0.0,0.0,42,34,2204.531278478569,0.0,879.0628087382918,2181.0,118.70256328912323,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,5,105595,2,1,3,0,1,,548.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,919.424435439377,636.0,91039.89850142106,1,1,0,1,101.0,4,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02395652934483397,36415.95940056843,9,5,9,9_1,9_2,9_0_0 -22435,2,60.0,0.0,1,211,6200.0,0.0,0.0,54,78,0.0,745.3242034700096,8569.480210970769,6920.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,113719,2,2,3,0,1,,260.0,,42,2.0,1.0,7.0,3.0,2.0,2,2,1029.55549447745,6200.0,46325.37326139652,1,5,0,1,149.0,4,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14937818117412813,23162.68663069826,6,3,6,6_1,6_2,6_1_0 -22436,2,39.0,0.0,9,211,1700.0,0.0,0.0,55,63,0.0,0.0,2349.696186879082,1868.0,289.01493670395223,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,119016,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,927.85984576108,1700.0,53389.08642729353,1,1,1,2,99.0,4,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03498842413315847,25423.374489187394,7,4,7,7_1,7_2,7_0_0 -22437,2,58.0,0.0,6,211,819.0,0.0,0.0,52,47,4480.754631054002,0.0,1132.0006923846872,3883.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,107707,1,2,3,0,1,,590.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,918.120116090728,819.0,47398.12746046181,1,1,0,1,86.0,4,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08192306759880102,31598.751640307873,8,4,8,8_1,8_2,8_0_0 -22438,2,62.0,0.0,5,211,480.0,0.0,0.0,67,78,2987.1697540360015,124.22070057833493,663.4436292364467,2699.0,170.31237341482898,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,106186,2,1,2,0,1,,320.0,,42,2.0,1.0,4.0,3.0,2.0,2,2,1036.77027716175,480.0,58723.53834791502,1,5,0,1,120.0,4,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045961126933622996,29361.76917395751,8,4,8,8_1,8_2,8_0_0 -22439,2,75.0,0.0,1,400,340.0,0.0,0.0,78,78,0.0,103.51725048194578,469.9392373758164,1811.0,2358.568322744753,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131058,2,1,2,0,1,,228.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1111.52636236026,340.0,35288.376904773126,5,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05132001409095818,23525.584603182084,6,3,6,6_1,6_0,6_1_0 -22440,0,73.0,0.0,8,400,0.0,0.0,1372.0,72,72,0.0,0.0,700.9730953970844,4516.0,5408.708101173963,1568.5332028234104,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,100022,2,2,2,0,1,,472.0,,41,0.0,1.0,5.0,3.0,2.0,2,2,1328.88356270208,0.0,60934.71590518691,5,5,0,1,127.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07411210396101292,30467.357952593455,8,4,8,8_1,8_0,8_0_0 -22441,2,75.0,0.0,1,400,320.0,0.0,0.0,75,72,0.0,0.0,442.2957528242978,3420.0,5333.013712989594,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,133181,2,1,2,0,1,,286.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1235.16443133934,320.0,32051.786700024808,5,5,0,1,240.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10670231996762143,21367.85780001654,6,3,6,6_1,6_0,6_1_0 -22442,2,59.0,0.0,1,400,2000.0,0.0,0.0,74,37,0.0,414.0690019277831,2764.3484551518613,2400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,127791,2,1,2,0,1,,100.0,,42,1.0,0.0,7.0,2.0,1.5,2,2,1197.6778838579,2000.0,77641.65059011253,5,1,0,1,225.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03091124392331806,51761.10039340836,10,5,10,10_1,10_0,10_1_0 -22443,2,58.0,0.0,2,400,370.0,0.0,0.0,52,65,0.0,0.0,511.40446420309434,2890.0,4335.224050559283,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,2,124481,2,1,2,0,1,,219.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1278.91541263142,370.0,28232.591038828337,1,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1023639663828721,18821.72735921889,5,3,5,5_1,5_0,5_0_1 -22446,2,62.0,0.0,1,120,1006.0,0.0,0.0,77,74,2987.1697540360015,0.0,1390.4672729413862,3006.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127263,2,1,4,0,1,,383.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1272.58759676741,1006.0,35467.98846401801,6,5,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08475248048108404,23645.325642678672,6,3,6,6_1,6_0,6_1_0 -22447,2,41.0,0.0,5,120,672.0,0.0,0.0,0,52,5227.547069563002,265.0041612337812,928.8210809310253,4527.0,170.31237341482898,0.0,31,2,2,2,2,1,2,2,2,2,7.0,1,,3,114178,2,1,2,0,1,,384.0,,32,1.0,0.0,6.0,4.0,2.3,1,1,1105.15061534488,672.0,22191.55279514827,0,1,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.20399654056609037,9648.501215281856,1,1,1_0,1_1_0,1_0_0,1_0_0 -22448,2,37.0,0.0,9,120,410.0,770.0,0.0,62,62,0.0,227.73795106028072,566.6914333061316,1400.0,0.0,1396.5127336525356,42,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,132397,2,2,1,0,1,,424.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1389.90934066701,410.0,54362.21341288743,1,1,1,2,125.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025753182442496126,30201.22967382635,8,4,8,8_1,8_0,8_0_0 -22449,1,56.0,127.0,1,120,931.0,0.0,0.0,85,62,2867.682963874561,579.6966026988963,1286.8042058731914,3579.0,289.01493670395223,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,108240,2,2,3,0,1,,454.0,,42,2.0,2.0,6.0,5.0,3.0,3,3,1205.65110791353,931.0,38379.05385246374,6,1,1,2,150.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09325399249701011,12793.017950821246,2,1,2_1,2_1_1,2_0_1,2_1_0 -22450,2,70.0,0.0,5,120,0.0,0.0,0.0,52,78,597.4339508072003,0.0,0.0,3700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122407,2,1,4,0,1,,127.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1198.36525272937,0.0,42532.25764661304,1,5,0,1,106.0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08699279569737679,28354.83843107536,8,4,8,8_1,8_0,8_0_0 -22451,2,74.0,0.0,5,221,2000.0,0.0,0.0,86,74,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,130168,2,1,4,0,1,,280.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1443.59296654553,2000.0,40972.879940881976,6,5,0,1,106.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048812775740580475,27315.253293921316,7,4,7,7_1,7_1,7_0_0 -22452,2,38.0,0.0,8,221,1500.0,0.0,0.0,54,62,149.35848770180007,0.0,2073.261341363896,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,1,2001.0,6,117564,2,2,2,0,1,,130.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1707.7636300775,1500.0,71975.42382449374,1,1,1,2,125.0,1,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022229810051573585,39986.34656916319,9,5,9,9_1,9_1,9_0_0 -22453,2,56.0,0.0,6,221,1000.0,0.0,0.0,78,65,0.0,351.95865163861566,1382.1742275759307,1560.0,378.4719409218422,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,120882,2,1,2,0,1,,150.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1591.73509205067,1000.0,32754.287541065518,5,4,0,1,85.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04762735254259944,21836.19169404368,6,3,6,6_1,6_1,6_0_0 -22454,2,48.0,0.0,1,221,435.0,0.0,0.0,38,31,1463.7131794776408,0.0,601.2457889955298,1415.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,127959,2,1,1,0,1,,320.0,,43,2.0,0.0,9.0,4.0,2.5,3,3,1452.34408575399,435.0,184741.74852772037,1,1,1,2,265.0,1,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007659340735251731,73896.69941108815,10,5,10,10_1,10_1,10_1_0 -22455,2,56.0,0.0,9,221,1200.0,0.0,0.0,54,64,0.0,517.5862524097289,1658.6090730911167,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,105514,2,1,1,0,1,,400.0,,43,2.0,2.0,3.0,3.0,2.0,1,1,1733.23505962978,1200.0,43571.11040040874,1,1,1,2,110.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03901667835355539,21785.55520020437,6,3,6,6_1,6_1,6_0_0 -22456,2,40.0,0.0,9,221,1200.0,0.0,0.0,33,55,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,106577,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,1471.96504116594,1200.0,79519.0,1,1,1,2,140.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015090733032357046,37866.19047619047,9,5,9,9_1,9_1,9_0_0 -22457,2,46.0,0.0,1,221,700.0,1800.0,0.0,67,65,0.0,0.0,967.5219593031513,2500.0,0.0,3264.575221525408,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,128988,2,1,2,0,1,,200.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,1674.43102902284,700.0,51857.73586756413,1,1,1,2,120.0,1,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04820881510107916,20743.094347025653,5,3,5,5_1,5_1,5_1_0 -22458,2,70.0,0.0,2,221,760.0,0.0,0.0,77,72,2688.452778632401,124.22070057833493,1050.452412957707,2680.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119550,2,1,1,0,1,,255.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1447.13125367678,760.0,51222.66684648373,5,5,0,1,120.0,1,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05232058705635264,34148.44456432248,9,5,9,9_1,9_1,9_0_1 -22459,2,52.0,0.0,8,221,150.0,150.0,0.0,56,38,0.0,144.92415067472407,207.32613413638958,440.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,100709,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1552.15049063322,150.0,75041.05351942785,4,1,1,2,150.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005863457125986187,32626.545008446894,8,4,8,8_1,8_1,8_0_0 -22460,2,60.0,0.0,5,221,800.0,0.0,0.0,52,78,0.0,0.0,1105.7393820607444,1000.0,344.06540083803833,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,124579,2,2,3,0,1,,140.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,1537.28022957153,800.0,30085.710080282795,1,5,0,1,120.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03323837121781506,20057.140053521864,5,3,5,5_1,5_1,5_0_0 -22461,0,87.0,0.0,1,221,400.0,0.0,0.0,0,71,0.0,362.31037668681023,552.8696910303722,750.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,103477,2,2,4,0,1,,150.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,1581.04809678348,400.0,10966.194578967898,0,5,0,1,80.0,1,1,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06839200185617968,10966.194578967898,2,1,2_0,2_1_0,2_1_0,2_1_0 -22462,2,50.0,0.0,9,221,1200.0,0.0,0.0,65,47,0.0,207.03450096389156,1658.6090730911167,1460.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,123630,2,2,1,0,1,,150.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1405.19909970103,1200.0,72731.86930360302,1,1,1,2,110.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02007373128147655,48487.91286906868,10,5,10,10_1,10_1,10_0_0 -22463,2,56.0,0.0,9,221,740.0,1100.0,0.0,52,62,0.0,0.0,1022.8089284061887,1840.0,0.0,1995.0181909321939,41,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,104828,2,1,1,0,1,,200.0,,43,4.0,3.0,7.0,5.0,3.0,2,2,1510.13275623914,740.0,69896.309417941,1,1,1,2,130.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02632470891986335,23298.769805980333,6,3,6,6_1,6_1,6_0_0 -22464,2,78.0,0.0,2,221,800.0,1700.0,0.0,86,74,0.0,0.0,1105.7393820607444,2500.0,0.0,3083.2099314406632,71,0,0,0,0,0,0,0,0,0,,1,,2,107521,2,2,3,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1603.12833580969,800.0,39197.997896277855,6,5,0,1,110.0,1,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06377876764561473,26131.99859751857,7,4,7,7_1,7_1,7_0_1 -22465,2,46.0,0.0,7,221,650.0,1600.0,0.0,54,21,0.0,0.0,898.4132479243549,2250.0,0.0,2901.844641355918,60,0,0,0,0,0,0,0,0,1,1.0,1,,5,128086,2,1,2,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1493.77218316606,650.0,50458.12478908743,1,1,1,2,180.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04459143119973034,20183.249915634973,5,3,5,5_1,5_1,5_0_0 -22466,2,48.0,0.0,6,221,1200.0,0.0,0.0,69,67,0.0,0.0,1658.6090730911167,1373.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,122465,2,1,1,0,1,,200.0,,43,2.0,2.0,6.0,4.0,2.3,1,1,1452.83512302024,1200.0,63654.73587043523,1,1,0,1,120.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021569487033842157,27675.972117580535,7,4,7,7_1,7_1,7_0_0 -22467,2,48.0,0.0,8,120,438.0,1540.0,0.0,54,48,0.0,0.0,605.3923116782576,1978.0,0.0,2793.0254673050713,70,0,0,0,0,0,0,0,0,2,12.0,1,2001.0,6,114609,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1218.90879300501,438.0,51953.21919551022,1,1,1,2,110.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03807271292576492,34635.47946367348,9,5,9,9_1,9_0,9_0_0 -22468,2,27.0,0.0,8,120,0.0,0.0,0.0,0,46,0.0,0.0,0.0,3319.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,112306,2,1,2,0,1,,124.0,,12,1.0,0.0,5.0,1.0,1.0,4,2,1436.93725499029,0.0,20951.719889969056,0,1,1,2,117.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15841181618646114,20951.719889969056,5,3,5,5_1,5_0,5_0_0 -22469,2,27.0,0.0,1,120,0.0,0.0,0.0,54,63,0.0,0.0,0.0,612.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,17.0,2,,1,121112,2,2,0,0,1,,0.0,450.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1871.11229244556,0.0,36211.135929272576,1,1,2,3,68.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01690087826008429,24140.757286181717,6,3,6,6_0,6_0,6_1_0 -22470,2,65.0,0.0,2,120,350.0,0.0,0.0,77,75,2271.742597944379,165.62760077111324,483.76097965157567,2211.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,107301,2,1,2,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1226.31395222959,350.0,35703.54699056845,5,5,0,1,98.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0619266203602702,23802.364660378968,6,3,6,6_1,6_0,6_0_1 -22471,2,61.0,0.0,6,120,500.0,0.0,0.0,56,46,0.0,0.0,691.0871137879653,1101.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,124705,2,1,3,0,1,,145.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,1350.89410467602,500.0,43063.41405627641,1,1,0,1,108.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025566946423736494,28708.942704184272,8,4,8,8_1,8_0,8_0_0 -22472,2,66.0,0.0,5,120,1589.0,0.0,0.0,0,75,0.0,310.55175144583734,2196.2748476181537,1889.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,125079,2,1,1,0,1,,180.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1400.14821213217,1589.0,23544.035162387627,0,5,0,1,113.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08023263586599377,23544.035162387627,6,3,6,6_1,6_0,6_0_0 -22473,0,44.0,0.0,5,120,2400.0,0.0,0.0,0,55,0.0,0.0,3317.2181461822333,2610.0,361.26867087994026,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,133617,1,1,0,0,1,,0.0,,32,1.0,0.0,4.0,4.0,2.3,4,3,1684.00515248724,2400.0,12617.203680232575,0,4,5,0,70.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.20686041583755185,5485.740730535903,1,1,1_0,1_0_0,1_0_0,1_0_0 -22474,0,69.0,0.0,5,120,700.0,0.0,0.0,0,75,1493.5848770180007,0.0,967.5219593031513,1760.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104805,2,1,4,0,1,,101.0,,11,0.0,2.0,7.0,1.0,1.0,2,1,1358.88059107905,700.0,21653.65892237559,0,5,0,1,171.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08127956602204174,21653.65892237559,6,3,6,6_1,6_0,6_0_0 -22475,1,37.0,281.0,1,120,0.0,0.0,1450.0,0,52,0.0,0.0,740.8243355144114,1450.0,0.0,1657.7063732463157,10,1,2,2,1,1,2,2,2,2,20.0,2,,1,121206,1,2,0,0,1,,0.0,492.0,32,1.0,0.0,4.0,3.0,1.8,2,2,1864.72934907418,0.0,25876.0,0,1,2,3,91.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.05603648168186737,14375.555555555555,3,2,3_1,3_0_1,3_0_1,3_1_0 -22476,0,78.0,0.0,1,120,600.0,2500.0,0.0,0,78,0.0,0.0,829.3045365455583,3100.0,0.0,4534.132252118622,50,0,0,0,0,0,0,0,0,0,,1,,1,119833,2,1,3,0,1,,150.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1491.79545041607,600.0,27663.27223743275,0,5,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11206194167460831,27663.27223743275,7,4,7,7_1,7_0,7_1_0 -22477,2,74.0,0.0,5,120,650.0,0.0,0.0,75,75,2539.0942909306013,0.0,898.4132479243549,2350.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,101626,1,1,2,0,1,,330.0,,41,0.0,0.0,6.0,2.0,1.5,1,1,1264.87389500286,650.0,35303.24738470833,5,5,0,1,105.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06656611428380685,23535.49825647222,6,3,6,6_1,6_0,6_0_0 -22478,2,45.0,0.0,8,120,1296.0,2880.0,0.0,46,38,0.0,0.0,1791.297798938406,4176.0,0.0,5223.320354440652,31,0,0,0,0,0,0,0,0,4,90.0,1,2000.0,6,110875,2,1,2,0,1,,340.0,,43,2.0,0.0,8.0,4.0,2.5,2,2,1267.72363004629,1296.0,187442.90354724418,1,1,1,2,160.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02227878421093417,74977.16141889767,10,5,10,10_1,10_0,10_0_0 -22479,2,59.0,0.0,5,120,920.0,970.0,0.0,75,46,0.0,0.0,1271.600289369856,2454.0,0.0,1759.2433138220254,41,0,0,0,0,0,0,0,0,3,10.0,1,,3,130269,2,1,2,0,1,,270.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,1229.38099120868,920.0,103253.15089036242,7,1,0,1,112.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023766829184764904,68835.43392690828,10,5,10,10_1,10_0,10_0_0 -22480,2,46.0,0.0,7,120,955.0,788.0,0.0,67,67,0.0,258.79312620486445,1319.9763873350137,1993.0,0.0,1429.1584858677898,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,102740,2,1,2,0,1,,345.0,,43,3.0,0.0,5.0,5.0,2.8,2,2,1191.03286655752,955.0,64554.47678071734,1,1,0,1,110.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030873149305662352,23055.170278827623,6,3,6,6_1,6_0,6_0_0 -22481,2,84.0,0.0,1,120,400.0,0.0,0.0,0,78,0.0,0.0,552.8696910303722,460.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130914,2,2,2,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1360.46365438349,400.0,18044.69287083345,0,5,0,1,70.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025492259873456827,18044.69287083345,4,2,4_0,4_1_0,4_0_0,4_1_0 -22482,1,42.0,460.0,6,120,1223.0,0.0,0.0,85,65,2837.8112663342013,0.0,1690.399080325363,3183.0,103.2196202514115,0.0,20,1,2,2,1,2,2,2,2,0,,1,,4,130355,2,1,1,0,1,,450.0,760.0,42,2.0,0.0,6.0,6.0,3.0999999999999996,2,2,1587.99000920084,1223.0,18432.559661139425,6,4,2,3,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.17268355879572073,5945.986987464331,1,1,1_1,1_1_1,1_0_1,1_0_0 -22483,2,58.0,0.0,7,120,100.0,0.0,0.0,56,78,0.0,0.0,138.21742275759306,100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,101285,2,1,2,0,1,,220.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1183.06416783482,100.0,37458.710616382305,1,5,0,1,122.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002669606037007203,24972.47374425487,7,4,7,7_1,7_0,7_0_0 -22484,2,39.0,0.0,9,120,2160.0,0.0,0.0,46,46,0.0,398.54141435549127,2985.49633156401,2545.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,127333,2,2,3,0,1,,290.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1630.09863687441,2160.0,41317.18693764675,1,1,1,2,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06159664267174701,22953.992743137085,6,3,6,6_1,6_0,6_0_0 -22485,2,63.0,0.0,5,120,2000.0,0.0,0.0,77,72,0.0,62.110350289167464,2764.3484551518613,2060.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126643,2,1,2,0,1,,230.0,,41,0.0,1.0,7.0,2.0,1.5,1,1,1354.362584733,2000.0,139408.55098949614,5,5,0,1,126.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01477671194039749,92939.03399299743,10,5,10,10_1,10_0,10_0_0 -22486,2,74.0,0.0,6,120,1500.0,0.0,0.0,0,75,0.0,248.44140115666985,2073.261341363896,1740.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,103926,2,1,2,0,1,,350.0,,21,1.0,0.0,7.0,2.0,1.5,2,2,1354.362584733,1500.0,58148.43149719398,0,5,0,1,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02992342106569058,38765.62099812932,9,5,9,9_1,9_0,9_0_0 -22487,2,35.0,0.0,9,120,1330.0,0.0,0.0,42,48,0.0,0.0,1838.2917226759876,1330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,2008.0,6,106933,2,1,1,0,1,,280.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1471.9082773052,1330.0,64387.0,1,1,1,2,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020656343671859225,35770.555555555555,9,5,9,9_1,9_0,9_0_0 -22488,0,87.0,0.0,2,120,385.0,0.0,0.0,0,78,5078.188581861203,0.0,532.1370776167332,3785.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112178,2,3,2,0,1,,140.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1191.64148848817,385.0,17595.402051819143,0,5,0,1,85.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.21511301582385148,17595.402051819143,4,2,4_0,4_1_0,4_0_0,4_0_1 -22489,2,44.0,0.0,8,120,1280.0,0.0,0.0,43,48,3435.2452171414016,0.0,1769.1830112971911,3580.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,10.0,1,2003.0,6,117695,2,1,1,0,1,,320.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,1267.72363004629,1280.0,72964.81390575766,1,1,1,2,170.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049064745160920666,34745.14947893222,9,5,9,9_1,9_0,9_0_0 -22490,2,31.0,0.0,9,120,650.0,0.0,0.0,0,62,0.0,0.0,898.4132479243549,650.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,132707,2,1,0,0,1,,0.0,550.0,12,1.0,0.0,3.0,1.0,1.0,4,2,2088.48829367144,650.0,24494.71086450788,0,1,2,3,68.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02653634099195802,24494.71086450788,7,4,7,7_0,7_0,7_0_0 -22491,2,84.0,0.0,1,120,1800.0,0.0,0.0,77,78,0.0,0.0,2487.913609636675,1860.0,103.2196202514115,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,110306,1,1,2,0,1,,450.0,627.0,41,0.0,0.0,6.0,2.0,1.5,2,2,1272.05185899344,1800.0,33836.18134905582,5,5,2,3,92.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05497074214173705,22557.45423270388,6,3,6,6_1,6_0,6_1_0 -22492,2,24.0,0.0,8,120,0.0,0.0,0.0,81,65,0.0,0.0,0.0,505.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,8,2000.0,6,124755,2,1,0,0,1,,324.0,530.0,43,2.0,0.0,4.0,2.0,1.5,4,3,1889.39718399425,0.0,17943.38796883597,4,1,2,3,60.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02814407183732987,11962.258645890646,2,1,2_0,2_0_0,2_0_0,2_0_0 -22493,2,48.0,0.0,7,120,625.0,0.0,0.0,85,62,1792.3018524216009,0.0,863.8588922349566,1925.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,115297,2,1,2,0,1,,520.0,,42,1.0,0.0,4.0,4.0,2.5,4,4,1203.99714035261,625.0,60840.63159526569,6,1,1,2,96.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03164003971565926,24336.252638106274,7,4,7,7_1,7_0,7_0_0 -22494,2,78.0,0.0,2,120,450.0,0.0,0.0,78,78,2688.452778632401,62.110350289167464,621.9784024091688,2310.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,113949,2,2,2,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,1344.5017697202,450.0,34140.47332152198,5,5,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06766162783524701,22760.315547681323,6,3,6,6_1,6_0,6_0_1 -22495,2,65.0,0.0,6,120,220.0,0.0,0.0,78,78,0.0,10.351725048194577,304.0783300667047,230.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,128767,2,1,1,0,1,,280.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1354.362584733,220.0,41291.158275352704,5,5,0,1,160.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005570199762046645,27527.438850235136,7,4,7,7_1,7_0,7_0_0 -22496,2,51.0,0.0,7,120,280.0,0.0,0.0,56,47,0.0,0.0,387.00878372126056,280.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,5,120279,2,1,2,0,1,,980.0,,43,3.0,1.0,8.0,4.0,2.5,2,2,1267.72363004629,280.0,51496.63273456388,1,1,0,1,150.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0054372487118379605,20598.653093825553,5,3,5,5_1,5_0,5_0_0 -22497,1,51.0,141.0,9,120,627.0,0.0,0.0,78,54,1792.3018524216009,0.0,866.6232406901084,1827.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,115045,2,1,1,0,1,,0.0,690.0,42,1.0,6.0,3.0,2.0,1.5,2,2,1516.52484021863,627.0,25479.5575971029,5,1,2,3,87.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07170454169140422,16986.371731401934,4,2,4_1,4_1_1,4_0_1,4_0_0 -22498,2,37.0,0.0,7,111,272.0,0.0,0.0,0,63,0.0,0.0,375.9513899006531,332.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,117949,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,907.687449528449,272.0,28975.077146021064,0,1,1,2,59.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011458123073387266,28975.077146021064,8,4,8,8_0,8_3,8_0_0 -22499,2,67.0,0.0,2,111,157.0,0.0,0.0,0,77,0.0,0.0,217.0013537294211,190.0,56.77079113827632,0.0,41,2,1,2,2,2,2,2,1,0,,2,,2,113734,1,1,0,1,1,790.0,0.0,456.0,11,0.0,3.0,5.0,1.0,1.0,1,1,1042.3993022351,157.0,28702.484090370854,0,5,2,3,87.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006619636105424807,28702.484090370854,8,4,8,8_0,8_3,8_0_1 -22500,2,83.0,0.0,2,111,260.0,0.0,0.0,0,86,0.0,0.0,359.36529916974195,260.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,106338,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1054.98890377235,260.0,14225.097970393288,0,6,0,1,90.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018277554259460167,14225.097970393288,3,2,3_0,3_0_0,3_3_0,3_0_1 -22501,1,51.0,111.0,5,111,492.0,0.0,0.0,81,62,0.0,0.0,680.0297199673578,492.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,3,101369,1,2,0,1,1,,0.0,,43,2.0,1.0,5.0,3.0,1.8,5,4,1003.46131538288,492.0,24270.150260825398,4,1,1,2,80.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020271815160293437,13483.416811569665,3,2,3_1,3_0_1,3_3_1,3_0_0 -22502,1,39.0,425.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,414.65226827277917,380.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,126767,2,2,0,1,1,885.0,0.0,522.0,32,1.0,0.0,4.0,3.0,1.8,1,1,1116.72139139212,300.0,12488.35455792387,0,1,2,3,82.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030428348125245187,6937.97475440215,1,1,1_1,1_0_1,1_3_1,1_0_1 -22503,2,45.0,0.0,2,111,1440.0,0.0,0.0,55,65,0.0,1035.1725048194578,1990.33088770934,2440.0,0.0,0.0,20,2,2,2,1,2,2,2,1,2,20.0,1,,2,118843,2,3,3,0,1,,880.0,,43,2.0,1.0,5.0,4.0,2.3,2,2,689.880531402536,1440.0,41547.711704193505,4,1,1,2,110.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.058727662725976924,18064.222480084136,4,2,4_0,4_1_0,4_3_0,4_0_1 -22504,2,72.0,0.0,2,111,590.0,300.0,0.0,86,78,0.0,0.0,815.482794269799,890.0,0.0,544.0958702542347,70,0,0,0,0,0,0,0,0,0,,2,,2,123179,2,1,0,1,1,122.0,0.0,383.0,41,3.0,6.0,5.0,5.0,3.0,2,2,229.92251880064,590.0,50533.12802880946,6,5,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01761220875724538,16844.37600960315,4,2,4_0,4_0_0,4_3_0,4_0_1 -22505,1,35.0,230.0,2,111,600.0,0.0,0.0,85,48,0.0,0.0,829.3045365455583,850.0,430.0817510475479,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,112464,2,3,0,1,1,33.0,0.0,459.0,42,1.0,0.0,4.0,7.0,2.9999999999999996,3,3,1130.58300427757,600.0,26091.07714597091,6,1,2,3,85.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03257818737204801,8697.025715323638,1,1,1_1,1_0_1,1_3_1,1_0_1 -22506,2,60.0,0.0,2,111,540.0,120.0,0.0,56,62,0.0,0.0,746.3740828910024,660.0,0.0,217.63834810169388,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,101506,1,3,0,1,1,33.0,0.0,333.0,43,3.0,0.0,4.0,4.0,2.5,2,2,816.397256673261,540.0,55641.17800708404,1,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011861718670226054,22256.471202833614,6,3,6,6_0,6_3,6_0_1 -22507,2,34.0,0.0,5,111,288.0,0.0,0.0,0,47,0.0,0.0,398.066177541868,288.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,55.0,2,,3,133370,2,3,0,1,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1054.77691919853,288.0,57830.14080238617,0,1,1,2,82.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004980102002243726,57830.14080238617,10,5,10,10_0,10_3,10_0_0 -22508,2,46.0,0.0,2,111,564.0,180.0,0.0,85,47,0.0,0.0,779.5462643528249,744.0,0.0,326.4575221525408,70,2,1,2,2,1,2,2,2,0,,2,,2,105314,1,2,0,1,1,,0.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1093.36562169425,564.0,38435.75523694833,7,1,1,2,73.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.019356976216894837,21353.197353860185,6,3,6,6_0,6_3,6_0_1 -22509,2,63.0,0.0,2,111,480.0,96.0,0.0,0,55,0.0,0.0,663.4436292364467,576.0,0.0,174.11067848135508,71,2,2,2,2,1,2,2,2,3,10.0,2,,2,101188,1,3,0,1,2,1055.0,0.0,480.0,12,1.0,2.0,4.0,1.0,1.0,4,3,1270.83020847654,480.0,19735.041042131088,0,1,2,3,77.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02918666339585178,19735.041042131088,5,3,5,5_0,5_3,5_0_1 -22510,1,46.0,139.0,7,111,169.0,444.0,0.0,0,54,0.0,0.0,233.58744446033228,613.0,0.0,805.2618879762673,50,0,0,0,0,0,0,0,0,0,,2,,5,128721,2,1,0,0,1,,0.0,382.0,12,1.0,0.0,2.0,1.0,1.0,1,1,887.073916572114,169.0,12491.953589965777,0,1,2,3,47.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04907158800945236,12491.953589965777,2,1,2_1,2_0_1,2_3_1,2_0_0 -22511,1,52.0,270.0,2,111,612.0,120.0,0.0,0,56,0.0,0.0,845.8906272764696,732.0,0.0,217.63834810169388,50,2,1,2,1,1,2,2,2,0,,2,,2,106625,1,3,0,1,2,707.0,0.0,398.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1168.52337523081,612.0,18253.177904123593,0,1,2,3,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0401026059048399,18253.177904123593,4,2,4_1,4_0_1,4_3_1,4_0_1 -22512,2,27.0,0.0,2,111,660.0,0.0,0.0,52,62,0.0,0.0,912.2349902001142,660.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,40.0,2,,2,123587,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,5,3,1026.3074315977,660.0,47254.503677771645,1,1,1,2,72.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.013966922698004374,26252.50204320647,7,4,7,7_0,7_3,7_0_1 -22513,2,71.0,0.0,1,111,1401.0,0.0,0.0,0,78,0.0,1211.1518306387657,1936.4260928338788,3087.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121613,2,3,2,0,2,,1500.0,,21,0.0,0.0,8.0,2.0,1.5,2,2,775.237787106726,1401.0,56249.74613875281,0,5,0,1,160.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05488024767943328,37499.83075916854,9,5,9,9_1,9_3,9_1_0 -22514,2,60.0,0.0,2,111,450.0,0.0,0.0,75,38,1045.5094139126004,105.5875954915847,621.9784024091688,1288.0,61.9317721508469,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116022,2,2,2,0,1,,300.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,692.907213562083,450.0,25983.662292555895,5,4,0,1,82.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04956960976086121,17322.441528370597,4,2,4_0,4_1_0,4_3_0,4_0_1 -22515,1,56.0,130.0,9,111,370.0,700.0,0.0,85,75,0.0,0.0,511.40446420309434,1070.0,0.0,1269.5570305932142,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,127092,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,4.0,2.1,2,2,875.363963834108,370.0,16398.31250237459,6,7,1,2,76.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06525061647929058,7808.720239225994,1,1,1_1,1_0_1,1_3_1,1_0_0 -22516,2,61.0,0.0,2,111,678.0,1172.0,0.0,52,62,0.0,0.0,937.1141262964809,1850.0,0.0,2125.60119979321,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,123666,1,1,3,0,1,,342.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,696.948998599103,678.0,38950.70866900114,1,1,0,1,99.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04749592660100481,25967.139112667428,7,4,7,7_1,7_3,7_0_1 -22517,2,50.0,0.0,2,111,357.0,346.0,0.0,85,64,0.0,0.0,493.4361992446072,1920.0,309.6588607542345,627.5239036932173,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,126452,1,2,0,1,1,1174.0,0.0,322.0,42,1.0,3.0,4.0,4.0,2.3,3,2,816.514507746097,357.0,39567.089237748594,7,1,2,3,76.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04852517678172401,17203.082277282,4,2,4_0,4_0_0,4_3_0,4_0_1 -22518,1,64.0,183.0,1,111,440.0,463.0,0.0,77,78,0.0,0.0,608.1566601334094,903.0,0.0,839.7212930923688,31,1,2,2,2,1,2,2,2,0,,2,,1,105739,2,1,0,1,1,1174.0,0.0,322.0,41,0.0,4.0,4.0,3.0,2.0,2,2,956.059528441054,440.0,25627.80311093579,7,5,2,3,66.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.035235170025739566,12813.901555467895,2,1,2_1,2_0_1,2_3_1,2_1_0 -22519,1,46.0,368.0,2,111,300.0,600.0,0.0,85,62,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,10,1,2,2,2,1,1,2,2,0,,2,,2,110655,1,2,0,1,1,100.0,450.0,322.0,42,1.0,0.0,4.0,5.0,2.4,2,2,813.378131276705,300.0,18850.6023158979,6,4,2,3,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04774383252682453,7854.4176316241255,1,1,1_1,1_0_1,1_3_1,1_0_1 -22520,1,43.0,123.0,5,111,488.0,194.0,0.0,85,67,0.0,0.0,674.5010230570541,682.0,0.0,351.8486627644051,71,2,2,2,2,1,2,2,2,2,7.0,2,,3,105682,1,3,0,1,1,880.0,0.0,367.0,42,1.0,5.0,5.0,8.0,3.2999999999999994,2,2,743.164276754012,488.0,40063.00435402295,6,1,2,3,85.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.017023186628077145,12140.304349703927,2,1,2_1,2_0_1,2_3_1,2_0_0 -22521,1,57.0,153.0,2,111,740.0,140.0,0.0,22,21,0.0,0.0,1022.8089284061887,880.0,0.0,253.91140611864284,33,0,0,0,0,0,0,0,0,0,,2,,2,129365,2,2,0,1,1,834.0,0.0,348.0,43,2.0,3.0,4.0,2.0,1.5,1,1,837.88537342359,740.0,13510.33118971061,1,1,2,3,96.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0651353388487029,9006.887459807074,1,1,1_1,1_0_1,1_3_1,1_0_1 -22522,2,43.0,0.0,2,111,780.0,960.0,0.0,62,43,0.0,0.0,1078.0958975092258,1740.0,0.0,1741.106784813551,50,0,0,0,0,0,0,0,0,0,,2,,2,112720,2,1,0,0,1,,360.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,855.281125835427,780.0,59080.458565884706,1,1,1,2,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029451362468008023,23632.183426353884,6,3,6,6_0,6_3,6_0_1 -22523,2,43.0,0.0,2,111,311.0,876.0,0.0,0,46,0.0,0.0,429.8561847761144,1187.0,0.0,1588.7599411423653,70,2,2,2,2,1,2,2,2,2,10.0,2,,2,118729,2,1,0,0,1,,0.0,585.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1173.151089149,311.0,21513.819715184138,0,1,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.05517383782677294,21513.819715184138,6,3,6,6_0,6_3,6_0_1 -22524,1,24.0,229.0,6,111,840.0,0.0,0.0,85,42,0.0,0.0,1161.0263511637818,1138.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,104129,2,3,0,1,1,550.0,0.0,416.0,42,1.0,0.0,4.0,5.0,2.4,2,2,833.457065861464,840.0,26646.815476530224,6,1,2,3,77.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04270679177413597,11102.839781887595,2,1,2_1,2_0_1,2_3_1,2_0_0 -22525,2,56.0,0.0,2,111,250.0,512.0,0.0,0,47,0.0,0.0,345.54355689398267,797.0,60.21144514665671,928.5902852338938,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,128075,2,1,0,1,1,512.0,0.0,298.0,12,1.0,0.0,3.0,1.0,1.0,4,4,900.086359968544,250.0,29284.226454197356,0,1,2,3,69.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027216016828942556,29284.226454197356,8,4,8,8_0,8_3,8_0_1 -22526,0,85.0,0.0,2,111,272.0,88.0,0.0,0,77,0.0,0.0,375.9513899006531,360.0,0.0,159.6014552745755,50,0,0,0,0,0,0,0,0,0,,2,,2,100643,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1054.98890377235,272.0,18598.513505633273,0,5,0,1,74.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019356385653668515,18598.513505633273,4,2,4_0,4_0_0,4_3_0,4_0_1 -22527,2,46.0,0.0,2,111,720.0,119.0,0.0,67,47,0.0,0.0,995.16544385467,839.0,0.0,215.8246952008464,50,0,0,0,0,0,0,0,0,0,,2,,2,114460,2,3,0,1,1,688.0,0.0,395.0,43,2.0,0.0,3.0,3.0,2.0,2,2,1074.74836816026,720.0,44406.45240590948,1,1,2,3,77.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01889365068686163,22203.22620295474,6,3,6,6_0,6_3,6_0_1 -22528,2,32.0,0.0,9,111,720.0,1660.0,0.0,43,47,0.0,0.0,995.16544385467,2380.0,0.0,3010.663815406765,43,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,115730,2,1,0,0,1,,0.0,720.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1054.52173976291,720.0,78204.3766236144,1,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030433079358903055,37240.17934457828,9,5,9,9_0,9_3,9_0_0 -22529,0,75.0,0.0,2,111,0.0,0.0,0.0,0,44,0.0,0.0,0.0,1158.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,2,128947,2,1,2,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,3,3,910.20207907351,0.0,31344.9051240096,0,1,5,0,90.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.03694380300143241,31344.9051240096,8,4,8,8_1,8_3,8_0_1 -22530,2,66.0,0.0,2,111,514.0,1921.0,0.0,77,78,0.0,0.0,710.4375529740283,2435.0,0.0,3484.0272225279496,50,0,0,0,0,0,0,0,0,0,,1,,2,115765,1,1,1,0,1,,1333.0,,41,0.0,1.0,6.0,2.0,1.5,3,3,739.797694796695,514.0,56841.6277609512,5,5,0,1,140.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042838322826370304,37894.418507300805,9,5,9,9_1,9_3,9_0_1 -22531,2,44.0,0.0,5,111,400.0,0.0,0.0,90,46,2240.377315527001,0.0,552.8696910303722,2044.0,247.7270886033876,0.0,70,1,1,2,1,1,1,1,2,0,,1,,3,101234,1,2,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,751.030799952654,400.0,23895.392070615635,1,1,1,2,120.0,8,7,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.08553950460237579,11378.758128864587,2,1,2_0,2_1_0,2_3_0,2_0_0 -22532,2,50.0,0.0,2,111,600.0,690.0,0.0,62,47,0.0,0.0,829.3045365455583,1390.0,172.03270041901916,1251.4205015847397,70,2,1,2,2,1,2,2,2,2,20.0,2,,2,116727,2,1,0,1,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,830.715984118354,600.0,65699.33475986167,1,1,1,2,76.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021156987434965722,26279.733903944667,7,4,7,7_0,7_3,7_0_1 -22533,1,82.0,47.0,2,111,166.0,0.0,0.0,0,77,232.9992408148081,0.0,229.44092177760447,322.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109745,2,1,0,1,1,214.0,0.0,279.0,11,0.0,4.0,1.0,1.0,1.0,3,3,1308.18918852079,166.0,15668.483528777517,0,5,2,3,35.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02055080821373675,15668.483528777517,3,2,3_1,3_0_1,3_3_1,3_0_1 -22534,2,36.0,0.0,2,111,720.0,0.0,0.0,42,45,2987.1697540360015,0.0,995.16544385467,2720.0,0.0,0.0,10,2,2,1,1,1,1,2,2,2,15.0,1,,2,102240,2,2,4,0,2,,640.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,707.546032882052,720.0,67966.57785391572,1,1,1,2,113.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04001966975365811,28319.40743913155,8,4,8,8_1,8_3,8_0_1 -22535,2,82.0,0.0,1,111,272.0,0.0,0.0,75,72,3233.6112587439716,1009.2931921989714,375.9513899006531,3532.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,101420,1,2,4,0,2,,552.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,751.540979867127,272.0,23296.38989582454,5,5,0,1,162.0,8,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1516114735284821,15530.926597216361,3,2,3_0,3_1_0,3_3_0,3_1_0 -22536,2,47.0,0.0,8,111,1022.0,1436.0,0.0,85,62,0.0,0.0,1412.5820605826011,2458.0,0.0,2604.4055656169367,10,2,2,1,2,1,2,2,2,2,45.0,1,2002.0,6,120215,2,1,2,0,1,,350.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,765.871912455706,1022.0,85258.95808260396,6,1,1,2,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.028829815133543425,56839.30538840264,10,5,10,10_1,10_3,10_0_0 -22537,2,48.0,0.0,2,111,400.0,0.0,0.0,54,45,1825.160719715997,227.73795106028072,552.8696910303722,1842.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,106032,2,1,3,0,1,,350.0,,43,2.0,1.0,4.0,3.0,2.0,5,4,757.313993360877,400.0,60790.7012692611,1,1,1,2,120.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030300686808023544,30395.35063463055,8,4,8,8_1,8_3,8_0_1 -22538,2,41.0,0.0,6,111,336.0,756.0,0.0,0,47,0.0,124.22070057833493,464.41054046551267,1212.0,0.0,1371.1215930406713,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,117607,2,1,4,0,1,,216.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,749.939715033903,336.0,36445.867657587594,0,1,1,2,93.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033254798908530746,36445.867657587594,9,5,9,9_1,9_3,9_0_0 -22539,2,53.0,0.0,2,111,1421.0,1600.0,0.0,55,63,0.0,0.0,1964.0695773853972,3021.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,105277,2,3,2,0,1,,654.0,,43,4.0,1.0,6.0,5.0,3.0,1,1,713.380534029198,1421.0,84534.10064700116,1,1,1,2,98.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0357370573162556,28178.03354900039,8,4,8,8_1,8_3,8_0_1 -22540,2,92.0,0.0,2,111,2292.0,0.0,0.0,0,77,0.0,0.0,3167.943329604033,2292.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,128184,2,1,2,0,1,,218.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,799.338429641512,2292.0,12624.34989425094,0,5,0,1,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1815539033058458,12624.34989425094,2,1,2_0,2_1_0,2_3_0,2_0_1 -22541,2,42.0,0.0,8,111,535.0,1288.0,0.0,47,47,0.0,310.55175144583734,739.4632117531229,2123.0,0.0,2335.9849362915143,50,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,115700,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,700.744724198843,535.0,130233.1666571816,1,1,1,2,138.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016301530973200282,56623.11593790505,10,5,10,10_1,10_3,10_0_0 -22542,2,71.0,0.0,2,111,300.0,600.0,0.0,77,75,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,102149,2,1,0,1,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,4,3,978.60482330335,300.0,31048.086500832076,5,5,0,1,85.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02898729362841347,20698.72433388805,5,3,5,5_0,5_3,5_0_1 -22543,1,32.0,231.0,8,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,641.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2002.0,6,131238,2,1,0,0,1,,0.0,454.0,32,1.0,0.0,4.0,3.0,1.6,1,1,886.203913119189,0.0,18353.210560391002,0,1,2,3,76.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03492576941188561,11470.756600244376,2,1,2_1,2_0_1,2_3_1,2_0_0 -22544,2,64.0,0.0,2,111,259.0,1396.0,0.0,0,75,0.0,0.0,357.983124942166,1655.0,0.0,2531.8594495830384,41,0,0,0,0,0,0,0,0,0,,2,,2,130144,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1013.62241279849,259.0,20578.297368620966,0,5,0,1,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08042453514757952,20578.297368620966,5,3,5,5_0,5_3,5_0_1 -22545,2,63.0,0.0,5,111,556.0,834.0,0.0,0,75,0.0,186.3310508675024,768.4888705322173,1570.0,0.0,1512.5865193067723,50,0,0,0,0,0,0,0,0,0,,1,,3,131677,2,2,2,0,1,,550.0,,21,1.0,4.0,7.0,2.0,1.5,3,2,719.577588927936,556.0,48500.420586965294,0,5,0,1,129.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03237085330393907,32333.61372464353,8,4,8,8_1,8_3,8_0_0 -22546,2,55.0,0.0,5,111,329.0,70.0,0.0,0,43,0.0,0.0,454.73532087248117,399.0,0.0,126.95570305932142,30,0,0,0,0,0,0,0,0,2,10.0,2,,3,113400,2,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,968.240204455388,329.0,37895.57304507792,0,1,1,2,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010528934330281205,37895.57304507792,9,5,9,9_0,9_3,9_0_0 -22547,1,35.0,50.0,1,111,1100.0,0.0,0.0,0,52,0.0,0.0,1520.3916503335236,1170.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,113712,2,2,0,0,1,,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,4,4,1185.93293723933,1100.0,15090.453122096678,0,1,2,3,66.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07753246310985785,15090.453122096678,3,2,3_1,3_0_1,3_3_1,3_1_0 -22548,2,61.0,0.0,2,111,198.0,82.0,0.0,0,33,0.0,0.0,273.6704970600342,280.0,0.0,148.7195378694908,41,0,0,0,0,0,0,0,0,1,5.0,2,,2,119332,2,2,0,1,1,573.0,0.0,548.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1698.49919962972,198.0,39876.19618031495,0,1,2,3,81.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007021732933950785,39876.19618031495,9,5,9,9_0,9_3,9_0_1 -22549,1,57.0,300.0,6,111,300.0,0.0,0.0,85,53,0.0,0.0,414.65226827277917,510.0,361.26867087994026,0.0,50,2,1,2,2,1,2,2,2,0,,2,,4,130866,2,1,0,1,1,450.0,0.0,446.0,42,1.0,3.0,3.0,3.0,1.8,3,3,1186.81490371516,300.0,17876.560765459366,7,4,2,3,76.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.028528977508101502,9931.422647477426,2,1,2_1,2_0_1,2_3_1,2_0_0 -22550,2,64.0,0.0,7,111,206.0,0.0,0.0,0,77,0.0,0.0,284.72789088064167,206.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,5,107598,1,2,0,1,1,529.0,0.0,432.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1297.48676200789,206.0,15161.481719385301,0,5,2,3,95.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01358706251887048,15161.481719385301,3,2,3_0,3_0_0,3_3_0,3_0_0 -22551,2,57.0,0.0,7,111,596.0,1523.0,0.0,47,47,0.0,0.0,823.7758396352547,2119.0,0.0,2762.1933679906647,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,122434,2,2,0,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.5,3,3,1281.70345223801,596.0,195800.3376982237,1,1,0,1,150.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010822248954779118,78320.13507928948,10,5,10,10_0,10_3,10_0_0 -22553,2,25.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,546.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,119650,2,1,0,0,1,,0.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1409.26818907894,0.0,13216.198521451464,0,1,2,3,50.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041312938748141306,13216.198521451464,2,1,2_0,2_0_0,2_3_0,2_1_0 -22554,2,42.0,0.0,2,111,500.0,900.0,0.0,0,65,0.0,0.0,691.0871137879653,1400.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,123512,2,1,2,0,1,,400.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,1017.24585155289,500.0,31127.56267775585,0,1,1,2,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04497621656065149,31127.56267775585,8,4,8,8_1,8_3,8_0_1 -22555,2,77.0,0.0,1,111,0.0,0.0,2196.0,77,75,0.0,0.0,1121.965683303205,2196.0,0.0,2510.567721137179,70,0,0,0,0,0,0,0,0,0,,1,,1,109966,1,3,4,0,2,,0.0,389.0,41,0.0,4.0,6.0,2.0,1.5,1,1,1084.58969360642,0.0,31020.60079591662,5,5,2,3,114.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07079166565623285,20680.40053061108,5,3,5,5_1,5_3,5_1_0 -22556,1,28.0,112.0,1,111,0.0,0.0,900.0,0,63,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,60,0,0,0,0,0,0,0,0,2,10.0,2,,1,113075,2,2,0,0,1,,0.0,282.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1274.0432624931,0.0,16452.270378667563,0,1,2,3,38.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.054703696163841506,16452.270378667563,4,2,4_1,4_0_1,4_3_1,4_1_0 -22557,2,67.0,0.0,1,111,0.0,0.0,1690.0,0,75,0.0,0.0,863.4435358754174,1690.0,0.0,1932.0853591629473,50,2,2,2,2,1,2,2,2,0,,2,,1,119024,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,4,3,1541.16301602183,0.0,16212.435408479567,0,5,0,1,130.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.10424097042916092,16212.435408479567,4,2,4_0,4_0_0,4_3_0,4_1_0 -22559,2,72.0,0.0,6,111,200.0,0.0,0.0,0,75,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,116215,2,1,0,1,2,,0.0,400.0,11,0.0,6.0,1.0,1.0,1.0,3,2,1389.26391699164,200.0,16931.40410521959,0,5,2,3,40.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011812369414675082,16931.40410521959,4,2,4_0,4_0_0,4_3_0,4_0_0 -22560,2,51.0,0.0,1,111,0.0,0.0,0.0,77,22,0.0,0.0,0.0,781.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,111274,2,1,0,0,1,,0.0,720.0,42,2.0,2.0,4.0,3.0,2.0,3,3,1525.49995526828,0.0,17442.96376023977,5,1,2,3,98.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04477450109598029,8721.481880119885,1,1,1_0,1_0_0,1_3_0,1_1_0 -22561,0,30.0,0.0,2,111,240.0,0.0,0.0,0,48,0.0,0.0,331.72181461822333,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,105349,1,1,0,1,2,1250.0,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1389.26391699164,240.0,29331.0,0,1,5,0,55.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008182469060038867,29331.0,8,4,8,8_0,8_3,8_0_1 -22562,2,54.0,0.0,6,111,1660.0,0.0,0.0,0,43,0.0,0.0,2294.409217776045,1660.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,2,,4,116379,2,2,0,0,1,,0.0,,32,1.0,1.0,3.0,2.0,1.5,2,2,1339.69829796538,1660.0,36812.42608844051,0,1,1,2,120.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045093469145769165,24541.617392293672,7,4,7,7_0,7_3,7_0_0 -22563,1,28.0,320.0,1,111,0.0,0.0,0.0,81,67,0.0,0.0,0.0,2003.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,1,112366,2,3,0,0,1,,0.0,445.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1407.63911859247,0.0,12137.72076421341,4,1,2,3,70.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.16502274511913317,8091.8138428089405,1,1,1_1,1_0_1,1_3_1,1_1_0 -22564,2,63.0,0.0,1,111,680.0,2000.0,0.0,74,74,0.0,0.0,939.8784747516328,2680.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,1,,1,126876,2,1,4,0,1,,500.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1023.45153870731,680.0,82033.58985353903,5,5,0,1,150.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032669544326718036,54689.05990235935,10,5,10,10_1,10_3,10_1_0 -22565,1,22.0,270.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,2231.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104355,2,2,5,0,1,703.0,0.0,830.0,22,1.0,0.0,4.0,3.0,2.0,2,2,1167.73907263983,0.0,15553.808105948716,0,1,3,4,90.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.14343754177774193,7776.904052974358,1,1,1_1,1_1_1,1_3_1,1_0_1 -22566,2,58.0,0.0,2,111,330.0,0.0,0.0,62,75,0.0,0.0,456.1174951000571,330.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,120365,1,3,0,1,1,,0.0,,42,2.0,2.0,3.0,3.0,2.0,4,3,1273.8951676159,330.0,81564.91762441047,1,5,0,1,58.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.004045857086738953,40782.45881220524,9,5,9,9_0,9_3,9_0_1 -22567,2,66.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,353.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,101430,1,1,0,1,1,700.0,0.0,348.0,11,0.0,4.0,3.0,1.0,1.0,2,2,352.41169010123,0.0,16849.88473189467,0,5,2,3,65.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020949698209615425,16849.88473189467,4,2,4_0,4_0_0,4_3_0,4_0_1 -22568,1,24.0,112.0,2,111,300.0,0.0,0.0,22,65,0.0,494.8124573037008,414.65226827277917,778.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,133507,2,1,0,1,1,478.0,0.0,293.0,43,2.0,0.0,2.0,2.0,1.5,2,2,350.613905146957,300.0,16200.006974667258,1,1,2,3,58.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04802467068172234,10800.004649778171,2,1,2_1,2_0_1,2_3_1,2_0_1 -22569,2,65.0,0.0,6,111,810.0,0.0,0.0,77,75,0.0,0.0,1119.5611243365038,842.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131932,2,1,1,0,1,,420.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,973.15104866123,810.0,33441.69002055984,5,5,0,1,150.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02517815336133853,22294.46001370656,6,3,6,6_1,6_3,6_0_0 -22570,1,24.0,270.0,2,111,198.0,724.0,0.0,0,54,0.0,0.0,273.6704970600342,922.0,0.0,1313.084700213553,50,0,0,0,0,0,0,0,0,2,7.0,2,,2,117186,1,1,0,0,1,,0.0,440.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1488.9919278928,198.0,12050.02310631036,0,1,2,3,67.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07651437610249616,12050.02310631036,2,1,2_1,2_0_1,2_3_1,2_0_1 -22571,2,56.0,0.0,2,111,216.0,0.0,0.0,0,46,0.0,0.0,298.549633156401,216.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,75.0,2,,2,105236,2,1,0,1,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1325.70450955556,216.0,17990.391370680518,0,1,1,2,94.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012006409174178483,17990.391370680518,4,2,4_0,4_0_0,4_3_0,4_0_1 -22572,1,40.0,80.0,1,111,700.0,1600.0,0.0,37,42,0.0,0.0,967.5219593031513,2360.0,103.2196202514115,2901.844641355918,41,2,2,2,2,1,2,1,2,2,7.0,1,,1,111559,1,1,2,0,1,,816.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,905.207139822234,700.0,50484.59643810833,1,1,1,2,92.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.04674693206458024,21035.248515878473,5,3,5,5_1,5_3,5_1_0 -22573,2,53.0,0.0,1,111,570.0,0.0,0.0,0,52,0.0,0.0,787.8393097182804,605.0,60.21144514665671,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,1,107929,2,2,0,0,2,,0.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,447.326316755416,570.0,24347.682035771977,0,1,2,3,75.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024848361298259316,24347.682035771977,7,4,7,7_0,7_3,7_1_0 -22574,1,27.0,369.0,1,111,280.0,1110.0,0.0,0,56,0.0,0.0,387.00878372126056,1390.0,0.0,2013.1547199406682,71,2,2,2,2,1,2,2,2,0,,2,,1,131750,1,3,0,0,1,,0.0,460.0,32,1.0,0.0,3.0,2.0,1.3,1,1,394.748876370906,280.0,5771.261417219696,0,4,2,3,70.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.24084855970181163,4439.431859399766,1,1,1_1,1_0_1,1_3_1,1_1_0 -22575,2,46.0,0.0,1,111,260.0,324.0,0.0,52,63,0.0,129.39656310243222,359.36529916974195,709.0,0.0,587.6235398745735,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,114596,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,4,2,1169.21231475198,260.0,39886.83113079499,1,1,0,1,58.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017775290237398933,26591.220753863327,7,4,7,7_0,7_3,7_1_0 -22576,2,95.0,0.0,5,111,280.0,0.0,0.0,0,72,0.0,0.0,387.00878372126056,280.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,103353,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,383.494682061493,280.0,23120.829923845307,0,5,0,1,67.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012110291928198753,23120.829923845307,6,3,6,6_0,6_3,6_0_0 -22577,1,60.0,270.0,2,111,270.0,1320.0,0.0,0,78,0.0,0.0,373.1870414455012,1590.0,0.0,2394.0218291186325,41,0,0,0,0,0,0,0,0,0,,2,,2,125941,2,3,0,0,1,,0.0,282.0,11,0.0,3.0,4.0,1.0,1.0,1,1,385.060053324298,270.0,11151.178449292125,0,7,2,3,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14258582689087296,11151.178449292125,2,1,2_1,2_0_1,2_3_1,2_0_1 -22578,2,62.0,0.0,8,111,340.0,777.0,0.0,0,65,0.0,0.0,469.9392373758164,1117.0,0.0,1409.2083039584677,70,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,124916,2,1,0,0,1,,0.0,589.0,32,2.0,1.0,5.0,4.0,2.5,2,2,1047.96287775324,340.0,37906.59632312389,0,1,2,3,99.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029467166887748357,15162.638529249558,3,2,3_0,3_0_0,3_3_0,3_0_0 -22579,2,51.0,0.0,2,111,534.0,0.0,0.0,0,67,0.0,0.0,738.0810375255469,604.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,2,35.0,2,,2,112557,2,1,0,1,1,,0.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,1225.43102340555,534.0,35647.98177158694,0,1,1,2,105.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016943455701646914,23765.321181057963,6,3,6,6_0,6_3,6_0_1 -22580,1,24.0,270.0,2,111,240.0,42.0,0.0,0,55,0.0,0.0,331.72181461822333,282.0,0.0,76.17342183559285,31,0,0,0,0,0,0,0,0,0,,2,,2,110511,1,1,0,1,1,648.0,0.0,289.0,22,1.0,0.0,3.0,2.0,1.5,2,2,346.128459627913,240.0,10338.814921712583,0,1,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02727585338700384,6892.543281141722,1,1,1_1,1_0_1,1_3_1,1_0_1 -22581,1,65.0,103.0,2,111,220.0,160.0,0.0,0,77,0.0,0.0,304.0783300667047,380.0,0.0,290.18446413559184,33,0,0,0,0,0,0,0,0,0,,2,,2,128471,2,1,0,1,1,500.0,0.0,260.0,11,0.0,2.0,2.0,1.0,1.0,1,1,359.64830742399,220.0,11635.562380866719,0,5,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03265849879545696,11635.562380866719,2,1,2_1,2_0_1,2_3_1,2_0_1 -22583,2,80.0,0.0,5,111,2400.0,0.0,0.0,77,74,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131847,2,1,1,0,1,,328.0,,41,1.0,2.0,4.0,3.0,2.0,1,1,2153.45848586584,2400.0,50134.244153208296,5,5,0,1,94.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04787147069906337,25067.122076604148,7,4,7,7_1,7_3,7_0_0 -22584,2,72.0,0.0,6,111,300.0,0.0,0.0,75,75,0.0,155.27587572291867,414.65226827277917,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,119081,2,1,1,0,1,,370.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1989.03610285407,300.0,59187.93440898563,5,5,0,1,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007602900903595026,39458.62293932375,9,5,9,9_1,9_3,9_0_0 -22585,2,55.0,0.0,1,111,652.0,1422.0,0.0,54,63,0.0,0.0,901.1775963795067,2074.0,0.0,2579.0144250050726,50,2,2,2,2,1,2,2,2,1,10.0,1,,1,131086,2,3,3,0,1,,522.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,1798.28081062955,652.0,50807.43818133257,1,1,0,1,80.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04082079463636526,20322.975272533025,5,3,5,5_1,5_3,5_1_0 -22586,2,42.0,0.0,8,111,294.0,1160.0,0.0,0,65,0.0,0.0,406.35922290732356,1454.0,0.0,2103.8373649830405,43,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,104549,2,1,1,0,1,,754.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,2025.44736607493,294.0,48135.540065846326,0,1,1,2,115.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030206371384033946,48135.540065846326,10,5,10,10_1,10_3,10_0_0 -22587,1,28.0,270.0,7,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,999.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,106220,2,1,0,0,1,,0.0,381.0,11,0.0,0.0,2.0,1.0,1.0,2,2,2671.18939890527,0.0,11132.170758160824,0,7,2,3,52.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08973990982555206,11132.170758160824,2,1,2_1,2_0_1,2_3_1,2_0_0 -22588,2,57.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1351.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,106914,2,1,0,0,1,,0.0,365.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2975.10871595162,0.0,11040.516087805316,0,7,2,3,55.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1223674680835104,11040.516087805316,2,1,2_0,2_0_0,2_3_0,2_1_0 -22589,2,86.0,0.0,8,111,452.0,860.0,0.0,74,74,0.0,0.0,624.7427508643207,1312.0,0.0,1559.741494728806,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,126577,2,2,0,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2665.3299535671,452.0,64655.91866997956,5,5,0,1,99.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02029203245408646,43103.945779986374,9,5,9,9_0,9_3,9_0_0 -22590,2,80.0,0.0,6,111,120.0,0.0,0.0,78,75,0.0,0.0,165.86090730911167,120.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,124211,2,1,0,0,1,,0.0,450.0,41,0.0,5.0,2.0,2.0,1.5,1,1,2638.39599650987,120.0,31385.111297376694,5,5,2,3,50.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0038234689965885235,20923.407531584464,5,3,5,5_0,5_3,5_0_0 -22591,2,56.0,0.0,5,111,240.0,0.0,0.0,0,37,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,129027,1,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2481.75681462551,240.0,41654.02479841637,0,1,0,1,45.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00576174814226174,41654.02479841637,9,5,9,9_0,9_3,9_0_0 -22592,2,61.0,0.0,6,111,459.0,937.0,0.0,75,75,0.0,0.0,634.4179704573521,1396.0,0.0,1699.3927680940596,41,0,0,0,0,0,0,0,0,0,,1,,4,102748,2,1,2,0,1,,663.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1993.47300985931,459.0,45884.030572968695,5,5,0,1,102.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030424528590180452,30589.353715312463,8,4,8,8_1,8_3,8_0_0 -22593,2,52.0,0.0,8,111,893.0,680.0,0.0,56,47,0.0,563.133842621785,1234.281585225306,2117.0,0.0,1233.2839725762653,50,0,0,0,0,0,0,0,0,2,75.0,1,2001.0,6,108217,2,1,2,0,1,,745.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1930.01049864861,893.0,65130.390665482104,1,1,1,2,130.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0325040273575692,28317.561158905264,8,4,8,8_1,8_3,8_0_0 -22594,2,67.0,0.0,1,111,400.0,1200.0,0.0,55,75,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,1,107178,2,2,1,0,1,,500.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1994.47629713687,400.0,41200.444640321155,4,5,0,1,140.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038834532344686076,27466.963093547438,7,4,7,7_1,7_3,7_1_0 -22595,2,84.0,0.0,2,111,54.0,64.0,0.0,75,75,0.0,0.0,74.63740828910025,118.0,0.0,116.07378565423673,70,0,0,0,0,0,0,0,0,0,,1,,2,130331,2,1,2,0,1,,280.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,2218.9582921735,54.0,44565.41695549623,5,5,0,1,102.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0026477930211634007,29710.27797033082,8,4,8,8_1,8_3,8_0_1 -22596,2,58.0,0.0,1,111,633.0,1465.0,0.0,43,47,0.0,0.0,874.916286055564,2098.0,0.0,2657.001499741513,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,103521,2,1,1,0,1,,452.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,1866.20133003458,633.0,61209.684058917956,1,1,0,1,90.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03427562210549152,24483.873623567182,7,4,7,7_1,7_3,7_1_0 -22597,2,39.0,0.0,1,111,0.0,0.0,1850.0,55,53,0.0,0.0,945.1896694494214,1850.0,0.0,2115.0046831073682,50,1,2,2,1,2,2,2,2,2,20.0,2,,1,127298,2,1,0,0,1,,0.0,720.0,43,2.0,2.0,6.0,3.0,1.8,1,1,3044.04479182702,0.0,45471.01566055211,1,1,2,3,120.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04068525791925399,25261.675366973395,7,4,7,7_0,7_3,7_1_0 -22598,2,24.0,0.0,9,111,0.0,0.0,0.0,67,55,0.0,0.0,0.0,929.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,121493,2,1,0,0,1,,0.0,580.0,43,2.0,0.0,2.0,2.0,1.5,1,1,2547.72178095582,0.0,30251.35158065385,1,1,2,3,59.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030709371696109874,20167.567720435898,5,3,5,5_0,5_3,5_0_0 -22599,2,81.0,0.0,1,111,503.0,0.0,0.0,0,75,5227.547069563002,0.0,695.2336364706931,4003.0,0.0,0.0,43,2,2,2,1,1,2,2,2,0,,1,,1,103104,2,1,2,0,1,,522.0,,21,1.0,2.0,7.0,2.0,1.5,3,3,2108.81834424551,503.0,71472.28743758323,0,5,0,1,180.0,8,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05600772192293161,47648.191625055486,10,5,10,10_1,10_3,10_1_0 -22600,2,65.0,0.0,2,111,312.0,1112.0,0.0,0,77,0.0,0.0,431.23835900369033,1459.0,60.21144514665671,2016.7820257423632,71,0,0,0,0,0,0,0,0,0,,2,,2,104428,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2864.83606517312,312.0,55756.51815161813,0,5,0,1,91.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026167344166516213,55756.51815161813,10,5,10,10_0,10_3,10_0_1 -22601,2,76.0,0.0,8,111,389.0,790.0,0.0,78,75,0.0,0.0,537.665774527037,1179.0,0.0,1432.7857916694845,60,0,0,0,0,0,0,0,0,0,,2,2000.0,6,115923,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2581.46927670011,389.0,35535.33930446386,5,5,0,1,92.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0331782395518564,23690.226202975904,6,3,6,6_0,6_3,6_0_0 -22602,2,26.0,0.0,1,111,800.0,0.0,0.0,34,37,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,132791,2,3,0,0,1,,0.0,393.0,43,2.0,0.0,2.0,2.0,1.5,1,1,2722.11533632322,800.0,15999.476145900728,1,1,2,3,60.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05000163709766024,10666.317430600486,2,1,2_0,2_0_0,2_3_0,2_1_0 -22603,2,70.0,0.0,2,111,210.0,900.0,0.0,0,77,0.0,0.0,290.25658779094545,1110.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,2,,2,117215,1,3,0,0,1,,211.0,493.0,11,0.0,0.0,4.0,1.0,1.0,1,1,2407.50874426278,210.0,30436.116767905783,0,5,2,3,67.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03646982985590562,30436.116767905783,8,4,8,8_0,8_3,8_0_1 -22604,0,45.0,0.0,2,111,867.0,0.0,0.0,0,62,0.0,0.0,1198.345055308332,867.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,102845,1,3,0,0,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,4092.9632236864,867.0,5103.394070668692,0,4,5,0,23.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.16988693955322914,5103.394070668692,1,1,1_0,1_0_0,1_3_0,1_0_1 -22607,2,45.0,0.0,2,111,0.0,0.0,0.0,0,42,1344.2263893162005,0.0,0.0,1936.0,0.0,0.0,31,1,1,2,1,1,2,2,2,2,25.0,1,,2,133538,2,1,2,0,1,,242.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,734.828428512344,0.0,33588.1368679219,0,1,0,1,90.0,4,4,4,1,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05763939832723983,33588.1368679219,9,5,9,9_1,9_2,9_0_1 -22608,2,65.0,0.0,1,111,385.0,1946.0,0.0,78,75,0.0,0.0,532.1370776167332,2331.0,0.0,3529.3685450491357,50,0,0,0,0,0,0,0,0,0,,2,,1,133121,2,1,0,1,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,972.595519023793,385.0,46547.74071754078,5,5,0,1,120.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05007761846369484,31031.827145027186,8,4,8,8_0,8_2,8_1_0 -22609,2,75.0,0.0,1,111,909.0,0.0,0.0,0,72,0.0,0.0,1256.3963728665208,909.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,8,,1,108168,2,1,0,0,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,854.65191544564,909.0,39743.08903091176,0,5,0,1,130.0,4,4,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022871901056633753,39743.08903091176,9,5,9,9_0,9_2,9_1_0 -22610,2,61.0,0.0,1,111,388.0,0.0,0.0,0,52,1657.8792134899807,0.0,536.2836002994611,1498.0,0.0,0.0,44,2,2,2,2,1,2,2,2,2,10.0,2,,1,129089,1,3,0,1,1,1110.0,0.0,575.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1121.96762035935,388.0,31919.259334886436,0,1,2,3,90.0,4,4,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0469309135366668,31919.259334886436,8,4,8,8_0,8_2,8_1_0 -22611,2,51.0,0.0,2,111,500.0,0.0,0.0,54,47,2688.452778632401,0.0,691.0871137879653,2450.0,258.04905062852873,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,2,122472,2,2,2,0,1,,465.0,,43,2.0,0.0,5.0,4.0,2.5,3,3,692.828123583334,500.0,56453.44871561557,1,1,0,1,100.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04339858867333125,22581.379486246227,6,3,6,6_1,6_2,6_0_1 -22612,1,40.0,120.0,1,111,0.0,0.0,950.0,0,22,0.0,0.0,485.3676680956488,950.0,0.0,1086.08348592,60,0,0,0,0,0,0,0,0,2,20.0,2,,1,130701,2,2,0,1,1,876.0,0.0,700.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1154.1765540865,0.0,21783.0,0,1,2,3,112.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.043611991002157645,13614.375,3,2,3_1,3_0_1,3_2_1,3_1_0 -22613,2,47.0,0.0,2,111,750.0,0.0,0.0,52,48,3943.064075327522,310.55175144583734,1036.630670681948,3800.0,189.2359704609211,0.0,71,2,2,2,2,2,2,2,1,1,5.0,1,,2,107187,2,3,1,0,1,,600.0,,43,2.0,3.0,8.0,3.0,2.0,4,3,776.678715827732,750.0,78510.67341521036,1,1,1,2,220.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.04840106236133497,39255.33670760518,9,5,9,9_1,9_2,9_0_1 -22614,2,46.0,0.0,1,111,486.0,472.0,0.0,78,52,0.0,455.47590212056144,671.7366746019022,1398.0,0.0,856.0441691999958,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,120376,2,1,1,0,1,,190.0,,42,2.0,2.0,6.0,4.0,2.5,2,2,689.281987372261,486.0,59414.20527787384,5,1,0,1,150.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023529726493213273,23765.682111149537,6,3,6,6_1,6_2,6_1_0 -22615,2,38.0,0.0,2,111,742.0,1874.0,0.0,42,62,0.0,0.0,1025.5732768613404,2616.0,0.0,3398.7855361881193,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,115894,2,1,2,0,1,,324.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,776.678715827732,742.0,50686.66377756501,1,1,1,2,150.0,4,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05161120904465401,28159.257654202782,8,4,8,8_1,8_2,8_0_1 -22616,2,63.0,0.0,1,111,450.0,1306.0,0.0,77,75,0.0,0.0,621.9784024091688,1756.0,0.0,2368.6306885067684,71,0,0,0,0,0,0,0,0,0,,1,,1,109993,2,2,2,0,1,,371.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,720.771628378402,450.0,42367.14892573355,6,5,0,1,200.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041447207200044,28244.765950489033,8,4,8,8_1,8_2,8_1_0 -22617,1,55.0,265.0,8,111,0.0,1200.0,0.0,85,21,0.0,0.0,0.0,1477.0,0.0,2176.3834810169387,41,2,2,2,1,1,2,2,2,0,,2,2000.0,6,101037,1,3,0,0,1,,0.0,254.0,42,1.0,2.0,2.0,3.0,1.8,2,2,881.362260903546,0.0,15724.345105514658,6,4,2,3,62.0,4,4,4,0,1,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09393077995229218,8735.747280841477,1,1,1_1,1_0_1,1_2_1,1_0_0 -22618,1,40.0,406.0,5,111,0.0,0.0,1300.0,85,63,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,102607,1,2,0,0,1,,0.0,650.0,42,1.0,0.0,5.0,4.0,2.1,2,2,816.240857126864,0.0,16240.85761716471,6,1,2,3,80.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08004503399044952,7733.741722459385,1,1,1_1,1_0_1,1_2_1,1_0_0 -22619,1,43.0,406.0,5,111,360.0,1360.0,0.0,0,54,0.0,0.0,497.582721927335,1720.0,0.0,2466.5679451525307,20,2,2,2,2,1,1,2,2,0,,2,,3,103992,1,3,0,0,1,,0.0,514.0,32,1.0,1.0,4.0,3.0,1.6,4,4,886.206014457829,360.0,17366.385396359306,0,4,2,3,90.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09904191118323225,10853.990872724566,2,1,2_1,2_0_1,2_2_1,2_0_0 -22620,1,55.0,255.0,7,111,450.0,653.0,0.0,0,54,0.0,207.03450096389156,621.9784024091688,1303.0,0.0,1184.3153442533842,50,1,2,2,1,2,2,2,2,0,,2,,5,133000,1,2,0,0,1,,700.0,430.0,12,1.0,1.0,3.0,1.0,1.0,2,2,844.264233264537,450.0,8209.596054579677,0,4,2,3,75.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.15871670071673366,8209.596054579677,1,1,1_1,1_0_1,1_2_1,1_0_0 -22621,1,41.0,460.0,2,111,0.0,0.0,0.0,67,67,0.0,414.0690019277831,0.0,1153.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,129476,2,3,4,0,1,,280.0,700.0,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,782.422075704665,0.0,43920.51870150254,1,1,2,3,120.0,4,4,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.026251966827535566,16266.858778334274,4,2,4_1,4_1_1,4_2_1,4_0_1 -22622,2,39.0,0.0,9,111,580.0,1200.0,0.0,55,67,0.0,0.0,801.6610519940398,1780.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,118394,2,2,5,0,1,,564.0,606.0,43,2.0,0.0,4.0,4.0,2.1,2,2,696.33305997975,580.0,54759.43365686502,4,1,2,3,95.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03250581463559105,26075.92078898334,7,4,7,7_1,7_2,7_0_0 -22623,2,73.0,0.0,1,111,230.0,1549.0,0.0,78,78,0.0,0.0,317.900072342464,1779.0,0.0,2809.3483434126983,50,0,0,0,0,0,0,0,0,0,,1,,1,123621,2,2,1,0,1,,348.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,696.717538816745,230.0,25770.2356912772,5,5,0,1,75.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06903312881232833,17180.157127518134,4,2,4_0,4_1_0,4_2_0,4_1_0 -22624,2,77.0,0.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,497.582721927335,390.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133283,2,1,0,1,1,818.0,0.0,283.0,11,0.0,5.0,3.0,1.0,1.0,2,2,858.436298781786,360.0,18466.15820764251,0,5,2,3,50.0,4,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02111971508175384,18466.15820764251,4,2,4_0,4_0_0,4_2_0,4_0_1 -22625,2,90.0,0.0,2,111,180.0,0.0,0.0,0,77,0.0,0.0,248.7913609636675,180.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,113937,1,2,0,1,1,630.0,0.0,286.0,11,0.0,0.0,3.0,1.0,1.0,5,5,858.391020618676,180.0,19501.652333239817,0,5,2,3,53.0,4,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009229987127459805,19501.652333239817,5,3,5,5_0,5_2,5_0_1 -22626,2,59.0,0.0,2,111,1200.0,0.0,0.0,68,64,3733.962192545002,0.0,1658.6090730911167,3820.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119835,2,1,2,0,1,,480.0,,43,2.0,2.0,3.0,3.0,2.0,2,2,763.940471750631,1200.0,42917.149828335176,1,1,1,2,65.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08900870666574234,21458.574914167588,6,3,6,6_1,6_2,6_0_1 -22627,2,70.0,0.0,2,111,245.0,0.0,0.0,78,78,1792.3018524216009,0.0,338.632685756103,1565.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,112843,2,1,2,0,1,,378.0,,41,0.0,2.0,8.0,2.0,1.5,1,1,708.210664595905,245.0,27256.051313336764,5,5,0,1,160.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05741844194555885,18170.700875557843,4,2,4_0,4_1_0,4_2_0,4_0_1 -22628,2,52.0,0.0,2,111,320.0,1355.0,0.0,47,21,0.0,207.03450096389156,442.2957528242978,1875.0,0.0,2457.499680648293,33,0,0,0,0,0,0,0,0,0,,1,,2,129822,2,1,1,0,1,,316.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,729.879884195947,320.0,88646.58478029764,1,1,0,1,100.0,4,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021151407069398265,59097.72318686509,10,5,10,10_1,10_2,10_0_1 -22629,2,58.0,0.0,2,111,724.0,1366.0,0.0,52,38,0.0,0.0,1000.6941407649738,2090.0,0.0,2477.4498625576152,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,106992,2,1,1,0,1,,468.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,718.26043912563,724.0,72235.60511083825,1,1,0,1,130.0,4,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02893310019059307,48157.070073892166,10,5,10,10_1,10_2,10_0_1 -22630,2,50.0,0.0,1,111,1100.0,756.0,0.0,0,63,0.0,0.0,1520.3916503335236,1926.0,120.42289029331342,1371.1215930406713,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,131665,2,1,0,0,1,,320.0,490.0,32,2.0,1.0,3.0,2.0,1.5,2,2,933.693312685404,1100.0,46623.21713355149,0,1,2,3,72.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04130989061700746,31082.144755700992,8,4,8,8_0,8_2,8_1_0 -22631,2,78.0,0.0,5,111,1219.0,0.0,0.0,0,75,0.0,0.0,1684.8703834150595,1219.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118154,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,854.990861818471,1219.0,23869.57050790795,0,5,0,1,50.0,4,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.051069205438621,23869.57050790795,6,3,6,6_0,6_2,6_0_0 -22632,2,37.0,0.0,1,111,936.0,1817.0,0.0,56,48,0.0,0.0,1293.7150770110711,2753.0,0.0,3295.4073208398145,33,0,0,0,0,0,0,0,0,3,25.0,1,,1,104882,2,1,1,0,1,,703.0,,43,2.0,2.0,6.0,5.0,2.5999999999999996,2,2,699.120206604976,936.0,51117.11791315026,1,1,1,2,100.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05385671400092317,19660.429966596257,5,3,5,5_1,5_2,5_1_0 -22633,2,54.0,0.0,6,111,1436.0,0.0,0.0,85,62,0.0,0.0,1984.8021907990362,1436.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,15.0,1,,4,113951,2,1,3,0,1,,298.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,679.764897612302,1436.0,50534.10167002241,7,1,0,1,98.0,4,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028416454484078753,33689.40111334828,9,5,9,9_1,9_2,9_0_0 -22634,2,55.0,0.0,6,111,508.0,1051.0,0.0,0,37,0.0,0.0,702.1445076085727,1559.0,0.0,1906.1491987906688,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,105557,2,1,1,0,1,,432.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,690.266919318032,508.0,62653.330087256414,0,1,0,1,90.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024882955109150662,41768.88672483761,9,5,9,9_1,9_2,9_0_0 -22635,2,49.0,0.0,2,111,276.0,0.0,0.0,0,62,3898.256529016982,0.0,381.48008681095683,2956.0,120.42289029331342,0.0,70,2,2,2,2,1,1,2,2,2,5.0,1,,2,114446,2,1,1,0,1,,280.0,,12,1.0,0.0,7.0,1.0,1.0,2,2,765.230232499717,276.0,29696.670818422113,0,1,0,1,130.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.09953977730615739,29696.670818422113,8,4,8,8_1,8_2,8_0_1 -22637,2,52.0,0.0,5,111,1290.0,0.0,0.0,54,38,0.0,217.38622601208613,1783.0047535729504,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,3,127123,2,1,2,0,1,,420.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,710.761994731741,1290.0,68960.95903890074,1,1,0,1,110.0,4,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021751437638125842,24628.91394246455,7,4,7,7_1,7_2,7_0_0 -22638,2,33.0,0.0,7,111,600.0,1045.0,0.0,43,53,0.0,0.0,829.3045365455583,1645.0,0.0,1895.267281385584,70,0,0,0,0,0,0,0,0,2,25.0,1,,5,133266,2,1,1,0,1,,441.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,693.144503399975,600.0,56534.52104203468,1,1,1,2,123.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029097266054078814,26921.200496206988,7,4,7,7_1,7_2,7_0_0 -22639,2,63.0,0.0,7,111,399.0,1123.0,0.0,68,75,0.0,0.0,551.4875168027963,1522.0,0.0,2036.732207651685,20,0,0,0,0,0,0,0,0,0,,1,,5,106517,2,1,1,0,1,,283.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,690.266919318032,399.0,41331.45438338362,1,5,0,1,92.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03682425461930722,27554.30292225575,7,4,7,7_1,7_2,7_0_0 -22640,2,47.0,0.0,1,300,299.6,0.0,0.0,69,11,0.0,0.0,414.0993985817488,360.0,103.2196202514115,0.0,50,2,2,2,2,1,2,2,2,0,,3,,1,107773,1,3,0,0,2,,218.0,,43,2.0,0.0,3.0,2.0,1.5,4,4,1208.45065334824,299.6,28737.86702139505,1,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.012527025743837692,19158.578014263367,5,3,5,5_0,5_0,5_1_0 -22641,2,42.0,0.0,1,300,400.0,0.0,0.0,52,11,0.0,0.0,552.8696910303722,400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,127073,2,1,2,0,1,,147.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1120.79415286602,400.0,51087.74102733684,1,1,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007829666999485486,24327.495727303256,7,4,7,7_1,7_0,7_1_0 -22642,2,31.0,0.0,9,111,700.0,1300.0,0.0,84,38,0.0,0.0,967.5219593031513,2000.0,0.0,2357.7487711016834,41,1,2,2,2,1,2,2,2,2,5.0,1,2012.0,6,115819,2,2,1,0,1,,200.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,317.242935026347,700.0,37041.572875393285,3,1,1,2,140.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05399338755748679,20578.651597440712,5,3,5,5_1,5_2,5_0_0 -22643,2,48.0,0.0,5,300,1474.0,0.0,0.0,75,37,0.0,27.94965763012536,2037.3248114469216,1501.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,35.0,1,,3,131315,2,1,1,0,1,,262.0,,42,1.0,1.0,7.0,4.0,2.5,2,2,1178.11265251641,1474.0,60117.12893748771,5,1,0,1,196.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024967925556804323,24046.851574995082,6,3,6,6_1,6_0,6_0_0 -22644,2,72.0,0.0,2,211,396.0,0.0,0.0,72,72,0.0,0.0,547.3409941200684,456.0,103.2196202514115,0.0,31,2,1,2,2,1,2,2,2,0,,2,,2,120193,1,2,0,1,1,818.0,210.0,300.0,41,0.0,2.0,3.0,2.0,1.5,4,3,318.682626390135,396.0,18221.375397425658,5,5,2,3,58.0,1,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02502555323372704,12147.583598283773,2,1,2_0,2_0_0,2_1_0,2_0_1 -22645,2,26.0,0.0,9,112,1410.0,0.0,0.0,47,62,0.0,0.0,1948.865660882062,1410.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,110519,2,1,1,0,1,,412.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1804.66694128634,1410.0,75306.09929030477,1,1,1,2,138.0,7,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01872358299378188,41836.7218279471,9,5,9,9_1,9_0,9_0_0 -22646,2,43.0,0.0,7,300,0.0,0.0,0.0,63,69,0.0,124.22070057833493,0.0,1911.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119110,2,1,2,0,1,,398.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1161.32757828676,0.0,49742.191134161294,1,1,0,1,140.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03841809048672141,19896.876453664518,5,3,5,5_1,5_0,5_0_0 -22647,1,32.0,22.0,2,211,460.0,360.0,0.0,52,67,0.0,0.0,635.800144684928,820.0,0.0,652.9150443050816,31,2,1,2,2,1,2,2,2,2,15.0,2,,2,110471,2,2,0,1,1,586.0,250.0,339.0,43,2.0,0.0,4.0,5.0,2.4,2,2,321.68839447493,460.0,33689.904946889896,1,1,2,3,61.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.024339635308935438,14037.460394537457,3,2,3_1,3_0_1,3_1_1,3_0_1 -22648,2,31.0,0.0,9,112,1200.0,0.0,0.0,54,47,0.0,0.0,1658.6090730911167,2143.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,126002,2,1,1,0,1,,281.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2048.42474249237,1200.0,34295.45421766235,1,1,1,2,143.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06248641544150604,19053.03012092353,5,3,5,5_1,5_0,5_0_0 -22649,2,41.0,0.0,2,211,288.0,48.0,0.0,56,62,0.0,0.0,398.066177541868,336.0,0.0,87.05533924067754,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,128220,1,1,0,1,1,660.0,0.0,300.0,43,2.0,0.0,3.0,2.0,1.5,3,3,338.74069902044,288.0,25450.3034035272,4,1,2,3,80.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01320220017311987,16966.8689356848,4,2,4_0,4_0_0,4_1_0,4_0_1 -22650,2,30.0,0.0,1,300,690.0,0.0,0.0,55,48,3733.962192545002,31.055175144583732,953.7002170273921,3241.0,36.12686708799403,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,130726,1,3,4,0,2,,170.0,500.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1456.89720769964,690.0,34133.5829858582,1,1,2,3,160.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09495047740352282,18963.101658810112,5,3,5,5_1,5_0,5_1_0 -22651,1,37.0,169.0,6,300,1360.0,0.0,0.0,85,62,0.0,465.827627168756,1879.7569495032656,1810.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,4,104980,2,1,2,0,1,,461.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1117.31561748513,1360.0,33315.88982773742,7,1,1,2,95.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.054328430348363974,13881.620761557258,3,2,3_1,3_1_1,3_0_1,3_0_0 -22652,2,62.0,0.0,9,211,855.0,0.0,0.0,77,75,0.0,0.0,1181.7589645774206,951.0,165.1513924022584,0.0,70,0,0,0,0,0,0,0,0,0,,1,2012.0,6,104436,2,1,1,0,1,,139.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1300.43663318269,855.0,29143.537604121753,5,5,0,1,96.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03263159102090271,19429.025069414503,5,3,5,5_1,5_1,5_0_0 -22653,2,43.0,0.0,9,300,2000.0,0.0,0.0,63,48,0.0,0.0,2764.3484551518613,2081.0,139.3464873394055,0.0,50,2,2,1,1,1,2,2,2,2,40.0,1,2006.0,6,107487,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,1262.63585499956,2000.0,51615.22794884519,1,1,1,2,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04031755903630683,24578.679975640567,7,4,7,7_1,7_0,7_0_0 -22654,2,82.0,0.0,1,300,120.0,0.0,0.0,0,71,0.0,434.77245202417225,165.86090730911167,540.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,112141,2,1,2,0,1,,307.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1463.20703072385,120.0,16372.917336466646,0,5,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03298129398096226,16372.917336466646,4,2,4_0,4_1_0,4_0_0,4_1_0 -22655,2,47.0,0.0,9,112,718.0,0.0,0.0,52,48,0.0,28.98483013494482,992.4010953995181,746.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,126348,2,1,1,0,1,,238.0,,43,4.0,0.0,6.0,5.0,3.0,2,2,1707.67179684972,718.0,19919.133690365576,1,1,1,2,122.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037451427938395884,6639.7112301218585,1,1,1_0,1_1_0,1_0_0,1_0_0 -22656,1,33.0,130.0,2,111,410.0,510.0,0.0,0,56,0.0,0.0,566.6914333061316,1022.0,175.47335442739956,924.962979432199,70,0,0,0,0,0,0,0,0,3,30.0,2,,2,125750,1,2,0,0,1,,0.0,214.0,32,1.0,0.0,3.0,2.0,1.3,1,1,344.350572718546,410.0,20711.118761793365,0,1,2,3,48.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04934547533401839,15931.629816764125,3,2,3_1,3_0_1,3_2_1,3_0_1 -22657,1,40.0,195.0,9,300,375.0,0.0,0.0,0,22,0.0,496.8828023133397,518.315335340974,855.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102101,2,2,1,0,1,,340.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,1290.51930340925,375.0,14656.94160627159,0,4,1,2,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05833413429402982,7328.470803135795,1,1,1_1,1_1_1,1_0_1,1_0_0 -22658,1,30.0,208.0,2,111,160.0,480.0,0.0,0,85,0.0,0.0,221.1478764121489,640.0,0.0,870.5533924067755,70,0,0,0,0,0,0,0,0,0,,2,,2,104417,1,3,0,0,1,,0.0,247.0,31,0.0,0.0,3.0,2.0,1.3,1,1,333.658970567267,160.0,11314.76001495971,0,7,2,3,47.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05656328540365237,8703.661549969007,1,1,1_1,1_0_1,1_2_1,1_0_1 -22659,2,50.0,0.0,7,300,640.0,0.0,0.0,46,21,2987.1697540360015,0.0,884.5915056485956,2808.0,289.01493670395223,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,119342,2,1,2,0,1,,594.0,,43,4.0,0.0,6.0,5.0,3.0,1,1,1100.9706379124,640.0,97197.02986580327,1,1,1,2,140.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02888977167179813,32399.009955267757,8,4,8,8_1,8_0,8_0_0 -22660,1,52.0,327.0,2,111,250.0,0.0,0.0,0,85,0.0,0.0,345.54355689398267,280.0,51.60981012570575,0.0,42,2,2,2,2,1,2,2,2,0,,2,,2,127466,2,1,0,1,1,840.0,0.0,342.0,31,0.0,0.0,4.0,3.0,2.0,2,2,378.714128383217,250.0,13204.389211357717,0,7,2,3,70.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.021205070186749633,6602.194605678858,1,1,1_1,1_0_1,1_2_1,1_0_1 -22661,2,37.0,0.0,9,400,912.0,0.0,0.0,56,64,0.0,0.0,1260.5428955492487,912.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,112616,1,1,1,0,1,,720.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,948.575608968617,912.0,26968.96233896857,1,1,1,2,81.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03381665147280114,12842.363018556462,2,1,2_0,2_1_0,2_0_0,2_0_0 -22662,1,29.0,120.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,962.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,119594,1,2,0,0,1,,0.0,280.0,12,1.0,0.0,3.0,1.0,1.0,1,1,359.791274045249,0.0,11351.039171383673,0,1,2,3,60.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08474994980417584,11351.039171383673,2,1,2_1,2_0_1,2_2_1,2_0_1 -22663,2,69.0,0.0,5,300,1152.0,0.0,0.0,77,72,0.0,0.0,1592.264710167472,1152.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,128294,2,1,2,0,1,,230.0,,41,0.0,2.0,9.0,2.0,1.5,1,1,1235.33503539879,1152.0,42580.92248503805,5,5,0,1,340.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02705436925197631,28387.281656692034,8,4,8,8_1,8_0,8_0_0 -22664,2,63.0,0.0,2,111,310.0,0.0,0.0,0,75,0.0,0.0,428.47401054853844,310.0,0.0,0.0,70,2,1,2,2,2,2,2,1,0,,2,,2,101069,2,1,0,1,1,631.0,0.0,284.0,11,0.0,0.0,3.0,1.0,1.0,2,2,338.305630648591,310.0,20090.15865869294,0,5,2,3,48.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015430440608584447,20090.15865869294,5,3,5,5_0,5_2,5_0_1 -22665,2,48.0,0.0,6,300,1586.0,0.0,0.0,46,22,0.0,0.0,2192.128324935426,1586.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,4,107576,2,1,2,0,1,,450.0,,43,2.0,0.0,9.0,4.0,2.5,2,2,1213.11813266394,1586.0,112485.2507871244,1,1,1,2,160.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014099626296797492,44994.10031484976,10,5,10,10_1,10_0,10_0_0 -22666,1,62.0,160.0,1,111,600.0,500.0,0.0,68,21,0.0,0.0,829.3045365455583,1100.0,0.0,906.8264504237244,70,2,2,2,2,2,2,2,1,2,20.0,2,,1,115508,2,3,0,0,1,,0.0,321.0,42,1.0,3.0,4.0,2.0,1.5,1,1,308.711837974916,600.0,19682.396531921146,4,5,2,3,54.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.055887503242605996,13121.597687947431,2,1,2_1,2_0_1,2_2_1,2_1_0 -22667,2,45.0,0.0,9,300,567.0,0.0,0.0,63,43,2822.8754175640215,0.0,783.6927870355527,2529.0,123.8635443016938,0.0,70,1,2,1,1,1,2,2,2,0,,1,2004.0,6,101000,2,1,1,0,1,,366.0,,43,2.0,1.0,6.0,5.0,2.5999999999999996,2,2,1113.90905415165,567.0,57191.87606725239,1,1,1,2,120.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04421956707673181,21996.875410481694,6,3,6,6_1,6_0,6_0_0 -22668,2,80.0,0.0,2,300,454.0,0.0,0.0,77,78,0.0,0.0,627.5070993194724,1414.0,1651.513924022584,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127554,2,1,1,0,1,,325.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,1069.87348828282,454.0,27766.122697681756,5,5,0,1,72.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05092536741250003,18510.74846512117,4,2,4_0,4_1_0,4_0_0,4_0_1 -22669,2,65.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,360.0,103.2196202514115,0.0,44,2,1,2,1,1,2,2,2,0,,2,,2,122942,1,2,0,1,1,755.0,0.0,333.0,11,0.0,4.0,3.0,1.0,1.0,3,2,359.791274045249,300.0,13399.270096463022,0,5,2,3,62.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02686713510574195,13399.270096463022,3,2,3_0,3_0_0,3_2_0,3_0_1 -22670,1,50.0,230.0,1,222,2900.0,0.0,0.0,0,85,0.0,268.10967874823956,4008.3052599701987,3222.0,108.38060126398207,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,124152,2,1,4,0,1,,300.0,550.0,31,0.0,0.0,4.0,4.0,2.1,2,2,1408.92975718446,2900.0,42893.0,0,7,2,3,108.0,1,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.07511715198284102,20425.238095238095,5,3,5,5_1,5_0,5_1_0 -22671,1,58.0,318.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,235.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130398,1,2,0,1,1,545.0,0.0,289.0,31,0.0,1.0,3.0,2.0,1.5,1,1,299.466771498077,0.0,4875.874078051573,0,7,2,3,65.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04819648666848003,3250.5827187010486,1,1,1_1,1_0_1,1_2_1,1_0_1 -22672,1,40.0,185.0,2,111,420.0,0.0,0.0,85,22,0.0,0.0,580.5131755818909,540.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,120871,1,2,0,1,1,710.0,0.0,310.0,42,1.0,0.0,3.0,5.0,2.4,3,2,334.951699088428,420.0,28753.510082646262,7,1,2,3,58.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018780315810065524,11980.629201102609,2,1,2_1,2_0_1,2_2_1,2_0_1 -22673,2,32.0,0.0,1,222,811.0,0.0,0.0,47,37,0.0,0.0,1120.9432985640797,1601.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,3,50.0,1,,1,124040,2,2,1,0,2,,106.0,,43,2.0,0.0,8.0,4.0,2.1,4,2,1122.35066393562,811.0,67909.76146800086,1,1,1,2,162.0,1,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02357540308478911,32337.981651428978,8,4,8,8_1,8_0,8_1_0 -22674,1,38.0,385.0,5,111,170.0,0.0,0.0,0,85,0.0,0.0,234.9696186879082,204.0,58.49111814246652,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,108237,2,2,0,1,1,855.0,0.0,344.0,31,0.0,0.0,3.0,3.0,1.6,2,2,409.563275602698,170.0,11443.350980990414,0,6,2,3,60.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017826946000247906,7152.094363119008,1,1,1_1,1_0_1,1_2_1,1_0_0 -22676,2,70.0,0.0,1,120,823.0,0.0,0.0,77,78,0.0,207.03450096389156,1137.5293892949908,1023.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,125176,2,2,3,0,1,,267.0,,41,1.0,3.0,6.0,3.0,2.0,1,1,1316.40663632699,823.0,48606.79623259838,5,5,0,1,140.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021046439578215198,24303.39811629919,7,4,7,7_1,7_0,7_1_0 -22677,1,25.0,189.0,5,111,240.0,0.0,0.0,0,63,0.0,0.0,331.72181461822333,345.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,116694,2,1,0,1,1,900.0,0.0,320.0,22,2.0,0.0,2.0,3.0,2.0,1,1,389.51576471166,240.0,14460.9116333504,0,4,2,3,52.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023857417066593892,7230.4558166752,1,1,1_1,1_0_1,1_2_1,1_0_0 -22678,2,62.0,0.0,5,120,448.0,0.0,0.0,55,78,389.82565290169816,124.22070057833493,619.2140539540169,829.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,127777,2,1,2,0,1,,295.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1141.88508409494,448.0,41572.554531173686,1,5,0,1,98.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01994104065407778,27715.03635411579,7,4,7,7_1,7_0,7_0_0 -22679,2,54.0,0.0,1,120,486.0,0.0,0.0,0,65,5824.981020370203,0.0,671.7366746019022,4510.0,213.32054851958378,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,102562,2,1,1,0,1,,190.0,,22,1.0,2.0,6.0,2.0,1.5,1,1,1361.24763099044,486.0,38511.650948758936,0,1,1,2,174.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11710741785650033,25674.43396583929,7,4,7,7_1,7_0,7_1_0 -22680,1,20.0,346.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,595.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,124918,2,2,0,1,1,881.0,0.0,324.0,31,0.0,0.0,3.0,2.0,1.3,2,2,352.290722076165,0.0,9396.568479717096,0,6,2,3,71.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06332098800581654,7228.129599782382,1,1,1_1,1_0_1,1_2_1,1_0_1 -22681,2,61.0,0.0,9,120,1968.0,0.0,0.0,78,77,673.6067795351183,0.0,2720.118879869431,2479.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,0,,1,2004.0,6,123205,2,1,1,0,1,,312.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1188.77516299504,1968.0,16153.051274359612,7,5,0,1,160.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15346945650664878,10768.700849573075,2,1,2_0,2_1_0,2_0_0,2_0_0 -22683,2,68.0,0.0,1,120,0.0,0.0,0.0,71,71,0.0,0.0,0.0,105.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109189,2,1,4,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1198.05355646149,0.0,28543.650531136293,5,5,0,1,174.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0036785764275477926,19029.10035409086,5,3,5,5_1,5_0,5_1_0 -22684,1,74.0,121.0,2,111,840.0,0.0,0.0,0,78,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,109648,1,3,0,1,1,452.0,0.0,184.0,11,0.0,4.0,1.0,1.0,1.0,1,1,413.87313973924,840.0,11516.0,0,5,2,3,35.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0729419937478291,11516.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -22685,1,41.0,301.0,5,111,240.0,0.0,0.0,85,67,0.0,0.0,331.72181461822333,310.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,107165,1,2,0,1,1,710.0,0.0,289.0,42,1.0,1.0,2.0,2.0,1.5,2,2,348.114848315641,240.0,23348.482808409848,6,4,2,3,60.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01327709395697187,15565.655205606565,3,2,3_1,3_0_1,3_2_1,3_0_0 -22686,2,55.0,0.0,2,111,152.0,0.0,0.0,0,77,0.0,0.0,210.09048259154144,184.0,55.050464134086134,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,130653,2,3,0,1,1,624.0,0.0,251.0,11,0.0,0.0,2.0,1.0,1.0,1,1,373.040830465548,152.0,12294.934825858769,0,7,2,3,46.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014965512433055788,12294.934825858769,2,1,2_0,2_0_0,2_2_0,2_0_1 -22687,2,61.0,0.0,6,111,1070.0,0.0,0.0,45,37,0.0,0.0,1478.9264235062458,1070.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,,4,104056,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1868.42745211011,1070.0,82384.12614462245,1,1,0,1,82.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01298793894010179,54922.75076308163,10,5,10,10_0,10_2,10_0_0 -22688,1,41.0,271.0,6,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,456.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,110678,1,2,0,1,2,720.0,0.0,277.0,11,0.0,2.0,2.0,1.0,1.0,1,1,362.069493916683,0.0,5122.840950423335,0,7,2,3,51.0,8,6,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08901310901762774,5122.840950423335,1,1,1_1,1_0_1,1_2_1,1_0_0 -22689,2,55.0,0.0,1,111,400.0,1500.0,0.0,34,31,0.0,0.0,552.8696910303722,1900.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,1,15.0,1,,1,130838,2,2,2,0,1,,0.0,,43,2.0,1.0,9.0,3.0,2.0,1,1,1425.67189958998,400.0,182137.35975218227,1,1,1,2,230.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010431687395629085,91068.67987609113,10,5,10,10_1,10_2,10_1_0 -22690,0,61.0,0.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,414.65226827277917,364.0,110.10092826817227,0.0,33,2,2,1,1,1,2,2,2,0,,2,,2,117443,1,2,0,1,1,984.0,0.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,452.860811995778,300.0,34145.40206581589,0,1,5,0,62.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010660293274578618,34145.40206581589,9,5,9,9_0,9_2,9_0_1 -22692,1,32.0,323.0,2,111,206.0,0.0,0.0,0,55,0.0,0.0,284.72789088064167,386.0,309.6588607542345,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,121764,1,2,0,1,1,1067.0,0.0,301.0,32,1.0,0.0,3.0,2.0,1.3,1,1,333.658970567267,206.0,14146.053145762613,0,4,2,3,64.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027286763030126504,10881.579342894318,2,1,2_1,2_0_1,2_2_1,2_0_1 -22693,1,41.0,244.79999999999998,2,111,0.0,0.0,0.0,81,68,0.0,0.0,0.0,538.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,130174,2,1,0,1,1,1175.0,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,328.078633466441,0.0,10668.519744269408,4,4,2,3,80.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050428739215577355,5080.247497271146,1,1,1_1,1_0_1,1_2_1,1_0_1 -22694,2,60.0,0.0,2,111,310.0,0.0,0.0,0,75,0.0,0.0,428.47401054853844,397.0,149.6684493645467,0.0,71,2,2,2,2,1,2,1,2,0,,2,,2,116239,1,3,0,1,1,915.0,0.0,241.0,11,0.0,2.0,4.0,1.0,1.0,2,2,373.935937440129,310.0,28086.768129571996,0,5,2,3,70.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014134769731018168,28086.768129571996,8,4,8,8_0,8_2,8_0_1 -22695,2,43.0,0.0,1,111,341.0,1228.0,0.0,52,33,0.0,0.0,471.32141160339233,1569.0,0.0,2227.1657622406674,60,0,0,0,0,0,0,0,0,3,50.0,2,,1,108855,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1643.22968926376,341.0,61576.48991430836,1,1,1,2,78.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025480504039503814,41050.993276205576,9,5,9,9_0,9_2,9_1_0 -22696,1,35.0,289.0,5,111,650.0,0.0,0.0,0,56,0.0,0.0,898.4132479243549,650.0,0.0,0.0,71,2,2,2,2,1,2,1,2,2,12.0,2,,3,107856,1,3,0,1,2,885.0,0.0,257.0,32,1.0,0.0,4.0,4.0,2.3,4,3,340.411666492675,650.0,31493.404470416208,0,1,2,3,82.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.020639242118475537,13692.784552354875,3,2,3_1,3_0_1,3_2_1,3_0_0 -22698,1,34.0,16.0,5,111,340.0,0.0,0.0,52,63,0.0,0.0,469.9392373758164,430.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,127180,1,2,0,1,2,866.0,0.0,309.0,43,2.0,0.0,3.0,3.0,1.8,5,4,411.329138504883,340.0,38689.096911614004,1,4,2,3,80.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01111424236606875,21493.942728674447,6,3,6,6_0,6_2,6_0_0 -22699,0,61.0,0.0,1,111,0.0,0.0,0.0,0,44,0.0,0.0,0.0,613.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,1,119832,2,1,0,1,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,2073.22680262586,0.0,8005.0,0,1,5,0,90.0,8,6,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07657713928794503,8005.0,1,1,1_0,1_0_0,1_2_0,1_1_0 -22700,2,58.0,0.0,2,111,210.0,0.0,0.0,0,55,0.0,0.0,290.25658779094545,240.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,12.0,2,,2,124183,1,2,0,1,1,783.0,0.0,343.0,12,1.0,2.0,4.0,1.0,1.0,2,2,373.935937440129,210.0,21180.256974470274,0,1,2,3,75.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011331307277776901,21180.256974470274,5,3,5,5_0,5_2,5_0_1 -22702,2,44.0,0.0,7,111,350.0,0.0,0.0,0,38,0.0,0.0,483.76097965157567,530.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,5,121969,2,1,0,0,1,,0.0,627.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1987.57702613808,350.0,49319.170944152225,0,1,2,3,60.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01074632825033005,49319.170944152225,10,5,10,10_0,10_2,10_0_0 -22703,2,62.0,0.0,5,111,260.0,0.0,0.0,0,75,0.0,0.0,359.36529916974195,290.0,51.60981012570575,0.0,71,1,2,2,2,1,2,2,2,0,,2,,3,129599,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,422.964227770564,260.0,20248.909968746135,0,5,0,1,60.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014321758576022626,20248.909968746135,5,3,5,5_0,5_2,5_0_0 -22704,2,28.0,0.0,2,111,0.0,0.0,1040.0,63,31,0.0,0.0,531.3498682310261,1040.0,0.0,1188.9756056387366,70,2,2,1,2,1,2,2,1,2,20.0,2,,2,110341,2,3,0,0,1,,95.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,1598.95027250169,0.0,38065.69860965049,4,1,1,2,50.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.027321185161076674,25377.132406433662,7,4,7,7_0,7_2,7_0_1 -22705,2,24.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1718.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,133416,1,1,0,1,1,,0.0,,22,1.0,0.0,3.0,2.0,1.5,1,1,1789.10266714953,0.0,24614.383297410808,0,1,1,2,63.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06979658922353406,16409.58886494054,4,2,4_0,4_0_0,4_2_0,4_0_1 -22707,1,42.0,252.0,2,111,360.0,0.0,0.0,0,81,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,112165,1,3,0,1,1,49.0,0.0,240.0,12,1.0,2.0,2.0,1.0,1.0,1,1,405.622165687888,360.0,6484.6511981603035,0,4,2,3,50.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05551570763006221,6484.6511981603035,1,1,1_1,1_0_1,1_2_1,1_0_1 -22708,1,55.0,150.0,2,111,590.0,0.0,0.0,0,65,0.0,0.0,815.482794269799,590.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,113935,2,2,0,1,1,686.0,0.0,311.0,32,1.0,1.0,4.0,2.0,1.5,2,2,308.711837974916,590.0,19877.011946698178,0,1,2,3,58.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029682529828031143,13251.341297798785,2,1,2_1,2_0_1,2_2_1,2_0_1 -22709,2,70.0,0.0,2,111,226.0,87.0,0.0,72,77,0.0,0.0,312.37137543216033,313.0,0.0,157.78780237372806,71,0,0,0,0,0,0,0,0,0,,2,,2,123533,1,2,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1897.83346970178,226.0,44832.859317063856,5,5,0,1,85.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0069814864536393495,29888.57287804257,8,4,8,8_0,8_2,8_0_1 -22710,2,58.0,0.0,1,111,900.0,1000.0,0.0,31,31,0.0,0.0,1243.9568048183376,1900.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,103323,2,2,0,0,1,,220.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1899.43966695145,900.0,219348.1225851643,5,1,1,2,90.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0086620299166787,146232.08172344285,10,5,10,10_0,10_2,10_1_0 -22711,2,68.0,0.0,2,111,660.0,0.0,0.0,0,77,1792.3018524216009,207.03450096389156,912.2349902001142,2252.0,330.3027848045168,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,131130,1,3,3,0,1,,240.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,282.129206358265,660.0,20920.751834081315,0,5,0,1,90.0,7,6,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10764431497778872,20920.751834081315,5,3,5,5_1,5_2,5_0_1 -22712,2,72.0,0.0,2,111,175.0,85.0,0.0,0,78,0.0,0.0,241.88048982578783,260.0,0.0,154.16049657203317,50,0,0,0,0,0,0,0,0,0,,2,,2,103143,1,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1893.70498660649,175.0,24980.93346674757,0,5,0,1,60.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010407937731633976,24980.93346674757,7,4,7,7_0,7_2,7_0_1 -22713,2,45.0,0.0,2,111,506.0,107.0,0.0,0,46,0.0,0.0,699.3801591534209,613.0,0.0,194.06086039067702,12,0,0,0,0,0,0,0,0,2,10.0,2,,2,104826,2,3,0,1,1,800.0,0.0,580.0,32,2.0,0.0,3.0,2.0,1.5,3,3,2003.50818889737,506.0,65428.911081173865,0,1,2,3,70.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009368946997138411,43619.27405411591,10,5,10,10_0,10_2,10_0_1 -22714,1,47.0,128.0,2,111,250.0,1500.0,0.0,67,62,0.0,0.0,345.54355689398267,1942.0,330.3027848045168,2720.4793512711735,31,2,2,2,2,1,2,1,2,2,10.0,2,,2,110155,1,3,0,0,1,,0.0,268.0,43,2.0,1.0,3.0,2.0,1.5,1,1,342.687473821468,250.0,25111.63851418109,4,1,2,3,56.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.07733465894323503,16741.092342787393,4,2,4_1,4_0_1,4_2_1,4_0_1 -22716,2,68.0,0.0,1,111,608.0,2480.0,0.0,74,74,0.0,0.0,840.3619303661658,3088.0,0.0,4497.859194101673,50,0,0,0,0,0,0,0,0,0,,1,,1,122433,2,1,2,0,1,,155.0,,41,2.0,2.0,7.0,4.0,2.5,1,1,1259.625465767,608.0,138929.37312651268,5,5,0,1,240.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022227121094025144,55571.74925060508,10,5,10,10_1,10_2,10_1_0 -22717,2,45.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,808.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,118221,2,1,0,0,1,,0.0,420.0,12,1.0,1.0,3.0,1.0,1.0,3,2,2156.27812390128,0.0,20217.253241844275,0,1,2,3,70.0,8,6,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03996586432066139,20217.253241844275,5,3,5,5_0,5_2,5_1_0 -22718,2,29.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1203.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,112821,1,2,0,0,1,,0.0,359.0,12,1.0,0.0,3.0,1.0,1.0,1,1,359.791274045249,0.0,23128.296752081107,0,1,2,3,65.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05201420635921895,23128.296752081107,6,3,6,6_0,6_2,6_0_1 -22719,2,51.0,0.0,2,111,800.0,650.0,0.0,34,35,0.0,0.0,1105.7393820607444,1450.0,0.0,1178.8743855508417,42,0,0,0,0,0,0,0,0,2,60.0,2,,2,127093,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,2151.55384528438,800.0,40213.46144270966,1,1,1,2,90.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036057577437489455,20106.73072135483,5,3,5,5_0,5_2,5_0_1 -22720,2,65.0,0.0,2,111,380.0,0.0,0.0,56,78,0.0,0.0,525.2262064788536,450.0,120.42289029331342,0.0,20,2,1,2,1,1,1,2,2,0,,2,,2,117975,2,2,0,1,1,1165.0,0.0,356.0,42,1.0,3.0,5.0,2.0,1.5,3,3,328.31799247592,380.0,22570.795051779463,1,5,2,3,79.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.019937268446577044,15047.196701186309,3,2,3_0,3_0_0,3_2_0,3_0_1 -22721,2,87.0,0.0,2,111,764.0,2975.0,0.0,0,86,0.0,0.0,1055.981109868011,3739.0,0.0,5395.617380021161,60,0,0,0,0,0,0,0,0,0,,1,,2,128038,2,1,2,0,1,,90.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,1465.9234552572,764.0,14686.072383239547,0,5,0,1,142.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2545949592531715,14686.072383239547,3,2,3_0,3_1_0,3_2_0,3_0_1 -22722,2,61.0,0.0,7,111,608.0,1758.0,0.0,33,46,0.0,0.0,840.3619303661658,2366.0,0.0,3188.401799689815,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,122496,2,1,2,0,1,,262.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1267.93231406151,608.0,156421.6473572595,1,1,0,1,150.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01512578367491662,104281.098238173,10,5,10,10_1,10_2,10_0_0 -22723,2,53.0,0.0,2,111,403.0,0.0,0.0,74,38,0.0,0.0,557.0162137131,403.0,0.0,0.0,31,1,2,2,2,2,2,2,1,2,10.0,2,,2,104775,2,1,0,0,1,,0.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,345.034141369809,403.0,77581.09133587655,5,1,0,1,100.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0051945647200974205,51720.72755725103,10,5,10,10_0,10_2,10_0_1 -22724,2,55.0,0.0,2,111,260.0,1300.0,0.0,0,53,0.0,0.0,359.36529916974195,1560.0,0.0,2357.7487711016834,60,0,0,0,0,0,0,0,0,0,,2,,2,116365,2,2,0,1,1,,0.0,,22,1.0,1.0,4.0,2.0,1.5,1,1,1815.57186563153,260.0,33466.01777315001,0,1,0,1,78.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04661444963588102,22310.678515433337,6,3,6,6_0,6_2,6_0_1 -22725,2,67.0,0.0,6,111,250.0,720.0,0.0,0,74,0.0,0.0,345.54355689398267,970.0,0.0,1305.830088610163,43,0,0,0,0,0,0,0,0,0,,2,,4,113737,2,1,0,0,1,,50.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1656.55394544308,250.0,40918.27948443736,0,5,0,1,60.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023705786563409263,40918.27948443736,9,5,9,9_0,9_2,9_0_0 -22726,1,69.0,326.0,2,111,310.0,0.0,0.0,85,78,0.0,0.0,428.47401054853844,868.0,959.942468338127,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113731,1,1,0,1,1,920.0,0.0,317.0,41,0.0,3.0,4.0,3.0,1.8,3,3,366.955586041395,310.0,17334.77319283298,6,5,2,3,90.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0500727635916732,9630.429551573878,1,1,1_1,1_0_1,1_2_1,1_0_1 -22727,2,78.0,0.0,2,111,239.0,0.0,0.0,0,77,0.0,0.0,330.3396403906474,287.0,82.5756962011292,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,100950,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1896.62200679634,239.0,21533.93636372857,0,5,0,1,71.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013327800136133881,21533.93636372857,6,3,6,6_0,6_2,6_0_1 -22728,2,77.0,0.0,2,111,220.0,1500.0,0.0,86,78,0.0,0.0,304.0783300667047,1720.0,0.0,2720.4793512711735,31,2,2,2,2,1,2,2,2,0,,2,,2,112378,2,3,0,1,1,515.0,0.0,362.0,41,0.0,4.0,4.0,2.0,1.5,1,1,383.040592433888,220.0,26007.20957290395,6,5,2,3,74.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06613550735531469,17338.1397152693,4,2,4_0,4_0_0,4_2_0,4_0_1 -22729,1,60.0,181.0,2,111,203.0,766.0,0.0,0,75,0.0,0.0,280.5813681979139,969.0,0.0,1389.2581220491459,42,0,0,0,0,0,0,0,0,0,,2,,2,100997,2,2,0,0,1,,0.0,573.0,11,0.0,0.0,3.0,1.0,1.0,2,2,2055.96625504538,203.0,4850.49254826059,0,7,2,3,55.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.19977352616436614,4850.49254826059,1,1,1_1,1_0_1,1_2_1,1_0_1 -22730,2,49.0,0.0,2,111,550.0,1600.0,0.0,0,37,0.0,0.0,760.1958251667618,2150.0,0.0,2901.844641355918,71,2,2,2,2,2,2,2,1,2,20.0,1,,2,104543,1,1,3,0,1,,300.0,713.0,32,1.0,1.0,5.0,2.0,1.5,2,2,1372.89027093485,550.0,46189.62609629493,0,1,2,3,120.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04654724841283053,30793.08406419662,8,4,8,8_1,8_2,8_0_1 -22731,1,41.0,151.0,2,111,137.0,0.0,0.0,0,67,0.0,0.0,189.3578691779025,207.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,7.0,2,,2,114917,2,1,0,1,1,596.0,0.0,327.0,32,1.0,0.0,4.0,2.0,1.3,3,3,1510.10652628373,137.0,18936.641789016176,0,1,2,3,63.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01093118844968944,14566.647530012442,3,2,3_1,3_0_1,3_2_1,3_0_1 -22732,2,56.0,0.0,5,111,330.0,0.0,0.0,0,52,0.0,0.0,456.1174951000571,660.0,567.7079113827633,0.0,20,1,1,2,2,1,2,2,2,2,30.0,2,,3,120483,1,1,0,1,1,,0.0,,32,2.0,4.0,4.0,2.0,1.5,3,2,372.746143259397,330.0,18307.53586346959,0,1,1,2,72.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03605072823136989,12205.023908979727,2,1,2_0,2_0_0,2_2_0,2_0_0 -22733,2,43.0,0.0,2,111,570.0,0.0,0.0,68,65,0.0,0.0,787.8393097182804,570.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,127099,1,3,0,1,1,,0.0,,43,3.0,0.0,4.0,5.0,3.0,1,1,338.279588512323,570.0,51228.478794843555,1,1,1,2,82.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011126623577535818,17076.159598281185,4,2,4_0,4_0_0,4_2_0,4_0_1 -22735,2,77.0,0.0,5,111,237.0,60.0,0.0,0,75,0.0,0.0,327.57529193549556,297.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,2,,3,124038,2,2,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,414.995220368138,237.0,21564.292285877727,0,5,0,1,97.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013772768244033808,21564.292285877727,6,3,6,6_0,6_2,6_0_0 -22736,2,74.0,0.0,5,111,446.0,0.0,0.0,75,74,0.0,0.0,616.449705498865,446.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,118695,2,2,0,1,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1689.39308979447,446.0,45271.0,5,5,0,1,90.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009851781493671446,30180.666666666668,8,4,8,8_0,8_2,8_0_0 -22737,2,48.0,0.0,2,111,431.0,75.0,0.0,52,47,0.0,0.0,595.7170920852261,506.0,0.0,136.02396756355867,44,0,0,0,0,0,0,0,0,2,8.0,2,,2,115095,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1682.26288342106,431.0,37787.73974192009,1,1,0,1,65.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013390586562092396,25191.826494613397,7,4,7,7_0,7_2,7_0_1 -22738,2,44.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,2424.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,2,102557,2,2,2,0,1,,441.0,,32,1.0,0.0,5.0,3.0,1.8,2,2,1401.85514964449,0.0,54423.27592326444,0,1,1,2,130.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044539766467159826,30235.153290702467,8,4,8,8_1,8_2,8_0_1 -22740,2,66.0,0.0,5,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,859.0,619.317721508469,0.0,10,2,1,2,2,1,1,2,2,0,,2,,3,131562,1,3,0,1,2,,0.0,,41,1.0,3.0,5.0,3.0,2.0,1,1,414.056472150612,0.0,71174.81610422705,6,5,1,2,140.0,7,6,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012068875580122282,35587.408052113526,9,5,9,9_0,9_2,9_0_0 -22741,2,61.0,0.0,2,111,700.0,144.0,0.0,78,52,0.0,0.0,967.5219593031513,844.0,0.0,261.1660177220326,10,0,0,0,0,0,0,0,0,3,45.0,2,,2,104068,2,1,0,1,1,,0.0,458.0,42,3.0,0.0,4.0,4.0,2.5,2,2,1874.27091549999,700.0,31727.139461932755,5,1,2,3,80.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02660183093444836,12690.855784773103,2,1,2_0,2_0_0,2_2_0,2_0_1 -22742,2,58.0,0.0,2,111,960.0,0.0,0.0,85,67,0.0,0.0,1326.8872584728933,1115.0,266.6506856494797,0.0,42,1,2,2,2,1,2,2,2,3,15.0,2,,2,125966,2,2,0,1,1,1234.0,0.0,421.0,42,2.0,2.0,5.0,3.0,2.0,1,1,349.64813166556,960.0,37216.89718083862,6,1,2,3,60.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.029959509912450884,18608.44859041931,4,2,4_0,4_0_0,4_2_0,4_0_1 -22743,2,38.0,0.0,2,111,290.0,56.0,0.0,0,38,0.0,0.0,400.8305259970199,346.0,0.0,101.56456244745713,71,0,0,0,0,0,0,0,0,2,50.0,2,,2,117309,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1927.56388052209,290.0,44441.50496023291,0,1,1,2,60.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007785514921459282,44441.50496023291,10,5,10,10_0,10_2,10_0_1 -22744,1,40.0,412.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,201.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,106783,2,1,0,1,1,796.0,0.0,383.0,42,1.0,1.0,4.0,4.0,2.1,1,1,414.414356499643,0.0,11495.0,7,4,2,3,76.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017485863418877774,5473.809523809524,1,1,1_1,1_0_1,1_2_1,1_0_1 -22745,2,77.0,0.0,5,111,189.0,700.0,0.0,0,75,0.0,0.0,261.2309290118509,940.0,87.73667721369978,1269.5570305932142,10,0,0,0,0,0,0,0,0,0,,2,,3,101600,1,2,0,0,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,416.784503509195,189.0,20847.049757161505,0,5,0,1,78.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045090313063462874,20847.049757161505,5,3,5,5_0,5_2,5_0_0 -22746,1,80.0,112.0,2,111,254.0,0.0,0.0,0,77,0.0,0.0,351.07225380428633,254.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,106383,2,1,0,1,1,738.0,0.0,478.0,11,0.0,5.0,2.0,1.0,1.0,2,2,580.365897613482,254.0,11354.999212335122,0,5,2,3,58.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022369001992010324,11354.999212335122,2,1,2_1,2_0_1,2_2_1,2_0_1 -22747,2,71.0,0.0,5,111,457.0,0.0,0.0,78,77,0.0,0.0,631.6536220022002,517.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,102884,2,1,0,1,1,,614.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,494.346853365524,457.0,32679.10301374291,5,5,0,1,72.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015820507673744294,21786.068675828607,6,3,6,6_0,6_2,6_0_0 -22748,2,35.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,221.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,120607,2,1,0,1,1,299.0,0.0,224.0,12,1.0,3.0,1.0,1.0,1.0,2,2,483.550496172563,0.0,20163.79139279612,0,1,2,3,39.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010960240348397784,20163.79139279612,5,3,5,5_0,5_2,5_0_1 -22749,2,55.0,0.0,5,111,330.0,0.0,0.0,67,65,0.0,0.0,456.1174951000571,420.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,2,7.0,2,,3,103331,2,2,0,1,1,1055.0,0.0,358.0,43,3.0,0.0,4.0,3.0,2.0,3,2,523.069869845818,330.0,27189.42457668706,4,1,2,3,75.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015447182371050222,13594.71228834353,3,2,3_0,3_0_0,3_2_0,3_0_0 -22750,2,38.0,0.0,5,111,230.0,0.0,0.0,0,54,0.0,0.0,317.900072342464,230.0,0.0,0.0,20,1,2,2,2,1,2,2,2,0,,2,,3,123678,1,2,0,1,1,427.0,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,655.18399745557,230.0,15983.456342609788,0,1,3,4,39.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014389878826574594,15983.456342609788,3,2,3_0,3_0_0,3_2_0,3_0_0 -22751,1,50.0,314.0,6,111,535.0,0.0,0.0,0,54,0.0,0.0,739.4632117531229,535.0,0.0,0.0,10,2,2,2,1,1,2,2,2,1,8.0,2,,4,126394,1,3,0,1,1,1152.0,0.0,436.0,32,2.0,0.0,5.0,4.0,2.5,2,2,1541.40377121816,535.0,28894.85073547298,0,1,2,3,101.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.01851540971427145,11557.940294189193,2,1,2_1,2_0_1,2_2_1,2_0_0 -22752,2,69.0,0.0,2,111,220.0,240.0,0.0,78,78,0.0,0.0,304.0783300667047,460.0,0.0,435.27669620338776,71,2,2,2,1,1,2,2,2,0,,2,,2,117486,2,2,0,1,1,894.0,300.0,208.0,41,0.0,5.0,3.0,2.0,1.5,1,1,304.813333739868,220.0,17545.530532299148,5,5,2,3,60.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.026217503036069328,11697.0203548661,2,1,2_0,2_0_0,2_2_0,2_0_1 -22753,2,68.0,0.0,7,111,1191.0,0.0,0.0,77,74,0.0,0.0,1646.1695050429332,1191.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,103486,1,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1793.56762097935,1191.0,30603.850427292295,5,5,1,2,80.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03891667170539674,20402.566951528195,5,3,5,5_0,5_2,5_0_0 -22754,2,56.0,0.0,5,111,300.0,0.0,0.0,0,62,0.0,0.0,414.65226827277917,486.0,0.0,0.0,12,2,2,1,2,1,2,1,2,1,3.0,2,,3,108774,1,2,0,1,1,,220.0,234.0,12,1.0,1.0,4.0,1.0,1.0,2,2,279.485343647641,300.0,19710.082993718584,0,1,2,3,50.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02465743042050526,19710.082993718584,5,3,5,5_0,5_2,5_0_0 -22755,2,31.0,0.0,9,111,500.0,300.0,0.0,46,46,0.0,0.0,691.0871137879653,860.0,103.2196202514115,544.0958702542347,70,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,131898,1,3,0,1,1,917.0,0.0,700.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1905.33821986634,500.0,56526.979508950164,1,1,2,3,85.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015213974061073481,26917.609289976266,7,4,7,7_0,7_2,7_0_0 -22756,1,74.0,296.0,2,111,116.0,173.0,0.0,85,78,0.0,0.0,160.33221039880794,289.0,0.0,313.76195184660867,41,0,0,0,0,0,0,0,0,0,,2,,2,133645,2,1,0,1,1,920.0,0.0,303.0,41,2.0,0.0,4.0,5.0,3.0,2,2,294.57340662554,116.0,20029.37231934132,6,5,2,3,86.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014428809619806596,6676.45743978044,1,1,1_1,1_0_1,1_2_1,1_0_1 -22757,2,69.0,0.0,9,111,359.0,535.0,0.0,0,75,0.0,0.0,496.20054769975906,894.0,0.0,970.3043019533851,20,2,2,2,1,1,1,2,2,0,,2,2005.0,6,101861,2,1,0,1,1,630.0,0.0,395.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1558.01964274777,359.0,26839.91098870372,0,5,2,3,65.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.033308605247471326,26839.91098870372,7,4,7,7_0,7_2,7_0_0 -22758,1,39.0,253.0,2,111,280.0,0.0,0.0,52,68,0.0,0.0,387.00878372126056,500.0,378.4719409218422,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,129064,1,2,0,1,1,926.0,225.0,228.0,43,2.0,3.0,4.0,3.0,1.8,2,2,357.300398705815,280.0,9489.34351422234,4,4,2,3,66.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05269068394990814,5271.8575079013,1,1,1_1,1_0_1,1_2_1,1_0_1 -22759,2,59.0,0.0,6,111,800.0,0.0,0.0,75,48,0.0,641.8069529880638,1105.7393820607444,1482.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,4,109622,2,1,2,0,1,,800.0,,42,2.0,1.0,8.0,3.0,2.0,2,2,1638.05066480274,800.0,118745.62732072794,6,1,0,1,150.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01248045956249966,59372.81366036397,10,5,10,10_1,10_2,10_0_0 -22760,2,61.0,0.0,5,111,2400.0,0.0,0.0,0,86,0.0,0.0,3317.2181461822333,2425.0,43.00817510475479,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104206,2,1,2,0,1,,149.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1749.42621082363,2400.0,34014.27346745498,0,5,0,1,110.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07129359979775113,34014.27346745498,9,5,9,9_1,9_2,9_0_0 -22761,2,64.0,0.0,2,111,390.0,0.0,0.0,75,75,1642.9433647198007,227.73795106028072,539.0479487546129,1710.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105275,2,1,1,0,1,,165.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1568.18796619525,390.0,71952.89379463888,5,5,0,1,100.0,7,6,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023765548678007585,47968.59586309258,10,5,10,10_1,10_2,10_0_1 -22762,1,83.0,182.0,2,111,191.0,0.0,0.0,0,78,0.0,0.0,263.9952774670027,251.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108027,2,3,0,1,2,700.0,0.0,250.0,11,0.0,2.0,3.0,1.0,1.0,1,1,316.824217337637,191.0,10367.990150230047,0,5,2,3,77.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024209127937339984,10367.990150230047,2,1,2_1,2_0_1,2_2_1,2_0_1 -22763,2,74.0,0.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,497.582721927335,390.0,51.60981012570575,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,112995,1,3,0,1,1,720.0,0.0,277.0,11,0.0,1.0,2.0,1.0,1.0,2,2,2222.64599428243,360.0,21334.884745310796,0,5,2,3,50.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01827992063963309,21334.884745310796,6,3,6,6_0,6_2,6_0_1 -22764,2,50.0,0.0,2,111,405.0,852.0,0.0,56,33,0.0,0.0,559.7805621682519,1347.0,154.82943037711726,1545.2322715220264,60,0,0,0,0,0,0,0,0,2,25.0,2,,2,127592,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,2167.2226246806,405.0,44327.442691454125,1,1,0,1,80.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030387496282515927,29551.628460969416,8,4,8,8_0,8_2,8_0_1 -22765,1,30.0,259.0,2,111,240.0,0.0,0.0,0,55,0.0,0.0,331.72181461822333,268.0,48.169156117325365,0.0,70,1,2,2,2,1,2,2,2,1,15.0,2,,2,101620,1,1,0,1,1,804.0,0.0,128.0,32,1.0,0.0,4.0,3.0,1.6,1,1,349.168487056058,240.0,16921.0,0,1,2,3,85.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01583830742863897,10575.625,2,1,2_1,2_0_1,2_2_1,2_0_1 -22766,2,75.0,0.0,5,111,1870.0,0.0,0.0,77,74,0.0,0.0,2584.66580556699,1945.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102955,2,1,2,0,1,,253.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1513.4854996245,1870.0,33464.277587003446,5,5,0,1,98.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0581216790036245,22309.51839133563,6,3,6,6_1,6_2,6_0_0 -22767,2,55.0,0.0,6,111,280.0,0.0,0.0,0,68,0.0,0.0,387.00878372126056,280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,115867,2,1,0,1,1,,0.0,,32,2.0,1.0,4.0,2.0,1.5,1,1,317.780847560336,280.0,16393.948514480173,0,4,0,1,87.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017079472937998205,10929.299009653449,2,1,2_0,2_0_0,2_2_0,2_0_0 -22768,2,64.0,0.0,7,111,400.0,900.0,0.0,0,77,0.0,672.8621281326475,552.8696910303722,1950.0,0.0,1632.287610762704,10,2,2,1,2,2,2,2,1,0,,1,,5,104922,2,1,2,0,1,,400.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1646.56411130784,400.0,22178.607115123898,0,5,0,1,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.08792256384172423,22178.607115123898,6,3,6,6_1,6_2,6_0_0 -22769,2,66.0,0.0,2,111,621.0,1321.0,0.0,75,75,0.0,0.0,858.3301953246529,1942.0,0.0,2395.83548201948,10,0,0,0,0,0,0,0,0,0,,1,,2,107441,2,2,2,0,1,,138.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,240.83717867075,621.0,49495.834281665564,5,5,1,2,110.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039235625142687275,32997.22285444371,8,4,8,8_1,8_2,8_0_1 -22770,2,75.0,0.0,2,111,0.0,1200.0,0.0,77,75,0.0,0.0,0.0,2463.0,129.02452531426437,2176.3834810169387,42,0,0,0,0,0,0,0,0,0,,1,,2,101392,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1513.4854996245,0.0,51535.44208895304,5,5,0,1,94.0,7,6,4,0,1,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04779235221750354,34356.961392635356,9,5,9,9_1,9_2,9_0_1 -22771,1,65.0,158.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1354.0,0.0,0.0,71,2,2,1,2,2,2,2,1,0,,2,,2,119566,2,2,0,1,1,811.0,0.0,254.0,11,0.0,2.0,3.0,1.0,1.0,1,1,344.562885693302,0.0,10222.583481365315,0,5,2,3,65.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.13245184081579753,10222.583481365315,2,1,2_1,2_0_1,2_2_1,2_0_1 -22772,2,62.0,0.0,7,111,1000.0,1200.0,0.0,42,75,0.0,258.79312620486445,1382.1742275759307,2450.0,0.0,2176.3834810169387,41,0,0,0,0,0,0,0,0,0,,1,,5,130629,1,3,3,0,1,,270.0,,42,2.0,1.0,7.0,3.0,2.0,3,3,1860.29464736652,1000.0,115623.61443552413,1,5,0,1,172.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021189443107802238,57811.80721776206,10,5,10,10_1,10_2,10_0_0 -22773,1,22.0,269.0,2,111,249.0,572.0,0.0,0,67,0.0,0.0,344.1613826664067,821.0,0.0,1037.4094592847407,10,0,0,0,0,0,0,0,0,0,,2,,2,113960,1,2,0,0,2,,159.0,390.0,22,2.0,0.0,3.0,2.0,1.5,2,2,385.436938841433,249.0,22541.73121903612,0,1,2,3,60.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036421337475032935,15027.820812690747,3,2,3_1,3_0_1,3_2_1,3_0_1 -22774,2,36.0,0.0,1,111,950.0,0.0,0.0,81,62,0.0,0.0,1313.065516197134,950.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,4.0,1,,1,113689,2,1,3,0,1,,280.0,,43,2.0,0.0,4.0,5.0,3.0,2,2,1520.7114401991,950.0,51918.51336739589,4,1,1,2,75.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018297904511969075,17306.171122465297,4,2,4_0,4_1_0,4_2_0,4_1_0 -22775,2,46.0,0.0,9,111,448.0,590.0,0.0,67,52,0.0,445.1241770723668,619.2140539540169,1468.0,0.0,1070.0552114999948,71,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,110488,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1740.26773256549,448.0,38961.0466076641,1,1,1,2,165.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037678659271725694,21645.02589314672,6,3,6,6_1,6_2,6_0_0 -22776,1,33.0,321.0,2,111,190.0,90.0,0.0,0,43,0.0,0.0,262.6131032394268,280.0,0.0,163.2287610762704,71,2,2,2,2,2,2,2,1,0,,2,,2,132719,1,2,0,1,1,744.0,0.0,384.0,32,1.0,0.0,3.0,2.0,1.3,1,1,311.816192104489,190.0,9259.469918205963,0,4,2,3,60.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03023931202038512,7122.66916785074,1,1,1_1,1_0_1,1_2_1,1_0_1 -22777,2,59.0,0.0,2,111,150.0,800.0,0.0,0,62,0.0,0.0,207.32613413638958,980.0,51.60981012570575,1450.922320677959,42,0,0,0,0,0,0,0,0,2,5.0,2,,2,104400,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2162.00471344006,150.0,20139.557880450062,0,1,0,1,56.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.048660452519233746,20139.557880450062,5,3,5,5_0,5_2,5_0_1 -22778,2,49.0,0.0,7,111,800.0,0.0,0.0,68,64,2987.1697540360015,0.0,1105.7393820607444,3100.0,516.0981012570575,0.0,44,0,0,0,0,0,0,0,0,2,60.0,1,,5,124238,2,1,2,0,1,,1000.0,,43,2.0,1.0,6.0,5.0,2.5999999999999996,1,1,228.558727267414,800.0,33004.81442717618,1,1,0,1,150.0,7,5,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0939256909576034,12694.159395067762,2,1,2_0,2_1_0,2_2_0,2_0_0 -22779,2,50.0,0.0,2,111,370.0,100.0,0.0,67,55,0.0,0.0,511.40446420309434,470.0,0.0,181.36529008474488,12,0,0,0,0,0,0,0,0,2,35.0,8,,2,113322,1,2,0,1,2,720.0,0.0,340.0,43,2.0,2.0,5.0,2.0,1.5,1,1,2712.79144091988,370.0,38702.0,1,1,2,3,95.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012144075241589582,25801.333333333332,7,4,7,7_0,7_2,7_0_1 -22780,2,64.0,0.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,444.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,127877,2,1,0,1,1,,0.0,480.0,11,0.0,2.0,2.0,1.0,1.0,2,2,2750.52643011111,0.0,19547.8253771899,0,5,2,3,65.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022713523956383288,19547.8253771899,5,3,5,5_0,5_2,5_0_1 -22781,2,68.0,0.0,2,111,200.0,0.0,0.0,0,78,2240.377315527001,0.0,276.4348455151861,1720.0,34.40654008380383,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,125656,2,1,0,1,1,,140.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,425.334070128993,200.0,10268.511836064448,0,5,0,1,45.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1675023632888185,10268.511836064448,2,1,2_0,2_0_0,2_2_0,2_0_1 -22782,2,60.0,0.0,2,111,920.0,0.0,0.0,77,21,2446.492028555485,198.7531209253359,1271.600289369856,2750.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,2.0,1,,2,105686,2,1,1,0,1,,516.0,,42,2.0,1.0,5.0,3.0,2.0,2,2,1846.91494268966,920.0,61021.59847737774,7,1,1,2,140.0,7,6,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04506601053755573,30510.79923868887,8,4,8,8_1,8_2,8_0_1 -22783,1,49.0,270.0,1,111,252.0,516.0,0.0,0,54,0.0,0.0,348.3079053491345,768.0,0.0,935.8448968372836,31,0,0,0,0,0,0,0,0,0,,2,,1,103098,1,1,0,0,1,,200.0,357.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2963.41174990958,252.0,5351.0,0,4,2,3,28.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1435245748458232,5351.0,1,1,1_1,1_0_1,1_2_1,1_1_0 -22784,1,40.0,210.0,2,111,840.0,360.0,0.0,0,56,1792.3018524216009,0.0,1161.0263511637818,2400.0,0.0,652.9150443050816,31,2,2,2,2,1,1,2,2,0,,2,,2,115645,1,2,0,1,1,1100.0,0.0,329.0,32,1.0,0.0,5.0,5.0,2.2,2,2,352.970025329415,840.0,22609.115808345687,0,1,2,3,150.0,7,5,4,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10615187344540425,10276.870821975312,2,1,2_1,2_0_1,2_2_1,2_0_1 -22785,2,28.0,0.0,2,111,1522.0,307.0,0.0,63,68,0.0,108.69311300604306,2103.6691743705665,1934.0,0.0,556.7914405601668,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,119553,1,3,3,0,1,,227.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,1450.69775104418,1522.0,49229.90775514905,1,1,1,2,105.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03928506243844666,23442.813216737643,6,3,6,6_1,6_2,6_0_1 -22786,1,71.0,100.0,2,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,384.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,111266,2,1,0,1,1,,358.0,300.0,41,0.0,6.0,4.0,3.0,2.0,2,2,385.210591295786,0.0,14321.065485832192,5,5,2,3,80.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026813647376997932,7160.532742916096,1,1,1_1,1_0_1,1_2_1,1_0_1 -22787,2,27.0,0.0,9,111,0.0,0.0,1296.0,63,43,0.0,0.0,662.1436819494324,1296.0,0.0,1481.6465239498104,44,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,129353,2,1,0,0,1,,480.0,620.0,43,2.0,0.0,3.0,3.0,1.8,1,1,2672.52502116314,0.0,43792.74393697466,1,1,2,3,75.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029593943733353827,24329.30218720814,7,4,7,7_0,7_2,7_0_0 -22788,1,70.0,81.0,2,111,300.0,100.0,0.0,0,78,1493.5848770180007,0.0,414.65226827277917,1400.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,2,111639,2,2,0,1,1,,200.0,350.0,11,0.0,0.0,3.0,1.0,1.0,1,1,365.634708085742,300.0,10682.354823824222,0,5,2,3,60.0,7,5,4,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1310572456250623,10682.354823824222,2,1,2_1,2_0_1,2_2_1,2_0_1 -22789,0,49.0,0.0,2,111,0.0,0.0,0.0,11,11,0.0,72.46207533736204,0.0,1687.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113710,2,1,2,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1762.79218227667,0.0,29904.359720508444,1,1,5,0,107.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05641317907378748,13001.895530655846,2,1,2_0,2_1_0,2_2_0,2_0_1 -22790,2,60.0,0.0,2,111,500.0,0.0,0.0,78,52,0.0,543.4655650302153,691.0871137879653,1075.0,86.01635020950958,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,103962,1,2,2,0,1,,160.0,,42,1.0,4.0,5.0,2.0,1.5,1,1,1595.67921456183,500.0,41682.16721912208,5,1,1,2,93.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02579040562715352,27788.111479414718,7,4,7,7_1,7_2,7_0_1 -22791,2,57.0,0.0,6,111,0.0,0.0,0.0,42,11,0.0,0.0,0.0,769.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109999,2,1,2,0,1,,163.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,1805.89694517628,0.0,81671.43433437578,1,1,0,1,200.0,7,6,4,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009415776841283236,40835.71716718789,9,5,9,9_1,9_2,9_0_0 -22792,0,75.0,0.0,2,111,0.0,0.0,1365.0,0,77,0.0,0.0,697.3967020532217,3021.0,0.0,1560.530482400842,31,0,0,0,0,0,0,0,0,0,,1,,2,132986,2,1,2,0,2,,158.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,1828.60010774506,0.0,19364.675023135474,0,5,0,1,80.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15600571640839486,19364.675023135474,5,3,5,5_1,5_2,5_0_1 -22793,2,61.0,0.0,6,111,2000.0,0.0,0.0,77,74,0.0,207.03450096389156,2764.3484551518613,2200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111710,2,1,2,0,1,,550.0,,41,1.0,1.0,6.0,3.0,2.0,2,2,1805.89694517628,2000.0,75855.07586710775,5,5,0,1,120.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029002673517250586,37927.537933553875,9,5,9,9_1,9_2,9_0_0 -22794,2,44.0,0.0,1,111,0.0,0.0,1440.0,0,42,0.0,0.0,735.7152021660361,1440.0,0.0,1646.2739154997894,50,0,0,0,0,0,0,0,0,2,5.0,8,,1,132008,2,2,0,0,1,,390.0,442.0,32,1.0,0.0,5.0,3.0,1.8,2,2,2825.33121191868,0.0,33711.73031346768,0,1,2,3,100.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04271510203155389,18728.7390630376,5,3,5,5_0,5_2,5_1_0 -22795,2,58.0,0.0,1,111,1000.0,0.0,0.0,56,56,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,103281,2,1,0,0,1,,330.0,440.0,42,1.0,5.0,2.0,2.0,1.5,2,2,2277.59211982284,1000.0,22043.477246411316,5,1,2,3,50.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045364893606465846,14695.651497607543,3,2,3_0,3_0_0,3_2_0,3_1_0 -22796,1,46.0,109.0,1,111,170.0,0.0,0.0,0,35,0.0,0.0,234.9696186879082,378.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,125654,2,1,0,1,1,299.0,0.0,347.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2715.48110047759,170.0,10616.92589598909,0,1,2,3,32.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03560352626580944,10616.92589598909,2,1,2_1,2_0_1,2_2_1,2_1_0 -22797,1,41.0,200.0,1,111,1752.0,0.0,0.0,85,62,0.0,0.0,2421.56924671303,1872.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,119079,2,2,4,0,1,,590.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,1,1,1627.04457079631,1752.0,34989.63521490732,6,1,1,2,125.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.053501558061469445,12959.12415366938,2,1,2_1,2_1_1,2_2_1,2_1_0 -22798,2,56.0,0.0,2,111,200.0,0.0,0.0,0,65,746.7924385090004,0.0,276.4348455151861,780.0,137.62616033521533,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,,2,112397,2,1,3,0,2,,160.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,1667.09850160703,200.0,21063.87536008684,0,1,1,2,60.0,7,6,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03703022291320586,21063.87536008684,5,3,5,5_1,5_2,5_0_1 -22799,2,51.0,0.0,1,111,849.0,0.0,0.0,0,55,3435.2452171414016,0.0,1173.465919211965,3460.0,535.0216983031496,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,1,113924,1,1,0,0,2,,419.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,2360.62014706699,849.0,46116.99436139345,0,1,0,1,80.0,7,6,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07502657204599866,30744.662907595633,8,4,8,8_0,8_2,8_1_0 -22800,2,76.0,0.0,1,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,3764.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,120793,2,1,2,0,1,,341.0,,41,0.0,4.0,10.0,2.0,1.5,2,2,1742.99454002835,0.0,30165.427984573453,5,5,0,1,120.0,7,6,4,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.124778604232796,20110.285323048967,5,3,5,5_1,5_2,5_1_0 -22801,2,30.0,0.0,1,111,273.0,593.0,0.0,67,46,0.0,0.0,377.33356412822906,866.0,0.0,1075.496170202537,70,0,0,0,0,0,0,0,0,2,15.0,2,,1,103366,1,2,0,0,1,,200.0,400.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2455.00244811959,273.0,50533.201576553256,1,1,2,3,50.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01713724784858699,33688.8010510355,9,5,9,9_0,9_2,9_1_0 -22802,2,67.0,0.0,1,111,0.0,0.0,2880.0,0,78,0.0,0.0,1471.4304043320722,2880.0,0.0,3292.5478309995788,44,0,0,0,0,0,0,0,0,0,,1,,1,104915,2,1,2,0,1,,300.0,,21,0.0,1.0,5.0,2.0,1.5,4,2,1466.35295170433,0.0,24211.129672279974,0,5,0,1,50.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11895355726822593,16140.753114853316,4,2,4_0,4_1_0,4_2_0,4_1_0 -22803,2,34.0,0.0,2,111,854.0,0.0,0.0,54,46,0.0,142.85380566508516,1180.3767903498447,992.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,113675,2,3,3,0,1,,394.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1778.19010347864,854.0,50226.474847712765,1,1,1,2,85.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019750539989273688,27903.597137618202,7,4,7,7_1,7_2,7_0_1 -22804,1,33.0,225.0,2,111,0.0,0.0,750.0,0,47,0.0,0.0,383.18500112814377,750.0,0.0,857.4343309894736,20,2,2,1,2,1,2,2,2,0,,2,,2,130189,1,3,0,0,1,,0.0,260.0,32,1.0,0.0,2.0,2.0,1.3,2,2,2603.2584962802,0.0,5715.130894324655,0,4,2,3,45.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.1312305901418249,4396.254534095889,1,1,1_1,1_0_1,1_2_1,1_0_1 -22805,2,61.0,0.0,5,111,1650.0,0.0,0.0,54,47,0.0,0.0,2280.5874755002856,1650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,1,,3,133553,2,1,2,0,1,,290.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,1402.69352469715,1650.0,40865.30894496778,4,1,0,1,100.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04037654535346866,27243.539296645187,7,4,7,7_1,7_2,7_0_0 -22806,2,64.0,0.0,1,112,410.0,0.0,0.0,11,11,4854.150850308502,0.0,566.6914333061316,3660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106325,2,1,1,0,1,,663.0,,43,2.0,4.0,9.0,2.0,1.5,1,1,1412.01671796577,410.0,72667.34545271187,1,1,0,1,110.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050366501998916936,48444.89696847458,10,5,10,10_1,10_0,10_1_0 -22807,2,27.0,0.0,1,112,400.0,0.0,0.0,52,63,0.0,0.0,552.8696910303722,442.0,72.25373417598806,0.0,43,0,0,0,0,0,0,0,0,2,13.0,2,,1,131662,1,2,0,0,1,,250.0,280.0,43,2.0,0.0,3.0,2.0,1.5,3,2,1912.54534407366,400.0,27533.351959598906,1,1,2,3,55.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016053257905124272,18355.567973065936,4,2,4_0,4_0_0,4_0_0,4_1_0 -22808,2,59.0,0.0,2,112,700.0,0.0,0.0,0,54,0.0,103.51725048194578,967.5219593031513,2410.0,2769.726476746209,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,101934,2,2,2,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1406.05255202683,700.0,13913.591962831832,0,4,0,1,107.0,6,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1732119215827207,13913.591962831832,3,2,3_0,3_1_0,3_0_0,3_0_1 -22809,2,50.0,0.0,1,112,780.0,0.0,0.0,52,11,1866.981096272501,155.27587572291867,1078.0958975092258,2300.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,103635,1,2,3,0,1,,404.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,1430.88462625296,780.0,80798.0858391489,1,1,0,1,107.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028466020897806796,28856.459228267468,8,4,8,8_1,8_0,8_1_0 -22810,2,54.0,0.0,1,112,2400.0,0.0,0.0,56,38,0.0,517.5862524097289,3317.2181461822333,3020.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120664,2,2,3,0,1,,412.0,,43,2.0,2.0,6.0,2.0,1.5,2,1,1258.34762575448,2400.0,48344.863916917755,1,4,0,1,140.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.062467856051678414,32229.90927794517,8,4,8,8_1,8_0,8_1_0 -22811,2,51.0,0.0,1,112,1120.0,0.0,0.0,62,21,0.0,579.6966026988963,1548.0351348850422,1680.0,0.0,0.0,30,2,2,2,2,1,2,2,2,0,,1,,1,105669,2,1,4,0,1,,302.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1181.32409741123,1120.0,34590.27915491489,1,1,1,2,80.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.048568558596361916,23060.186103276592,6,3,6,6_1,6_0,6_1_0 -22812,2,28.0,0.0,1,112,0.0,0.0,0.0,0,65,0.0,0.0,0.0,38.0,65.37242615922729,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,102306,2,2,5,0,1,,273.0,340.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1645.9976507432,0.0,19370.81077100014,0,1,2,3,50.0,6,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0019617144810938655,19370.81077100014,5,3,5,5_1,5_0,5_1_0 -22813,2,71.0,0.0,5,112,1064.0,0.0,0.0,77,77,0.0,8.281380038555662,1470.6333781407902,1112.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130725,2,1,2,0,1,,348.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1391.48355784144,1064.0,38228.914262276645,5,5,0,1,103.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029087930469877205,25485.942841517764,7,4,7,7_1,7_0,7_0_0 -22814,2,53.0,0.0,1,112,786.0,0.0,0.0,67,67,0.0,310.55175144583734,1086.3889428746813,1306.0,378.4719409218422,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130299,2,1,2,0,1,,515.0,,43,4.0,0.0,5.0,4.0,2.5,1,1,1276.08748244926,786.0,67150.69939728029,1,1,0,1,90.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01944879221991983,26860.279758912115,7,4,7,7_1,7_0,7_1_0 -22815,2,66.0,0.0,5,112,1500.0,0.0,0.0,77,75,0.0,0.0,2073.261341363896,1630.0,223.64251054472493,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,108116,2,1,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1490.97257338287,1500.0,43715.530134197346,5,5,0,1,98.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037286520259419205,29143.686756131563,8,4,8,8_1,8_0,8_0_0 -22816,2,59.0,0.0,7,112,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,118978,2,1,2,0,1,,430.0,550.0,11,0.0,2.0,4.0,1.0,1.0,4,2,1640.37509097793,1000.0,11285.246800787541,0,5,2,3,90.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09392794138326048,11285.246800787541,2,1,2_0,2_1_0,2_0_0,2_0_0 -22817,2,36.0,0.0,6,112,760.0,0.0,0.0,42,64,0.0,310.55175144583734,1050.452412957707,1060.0,0.0,0.0,50,2,2,1,2,2,2,2,1,0,,1,,4,103560,2,2,1,0,1,,440.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1391.48355784144,760.0,51315.08898595347,1,1,1,2,90.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.020656692231210097,34210.059323968984,9,5,9,9_1,9_0,9_0_0 -22818,2,58.0,0.0,2,112,410.0,0.0,0.0,78,47,0.0,1242.2070057833494,566.6914333061316,1700.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,2,114828,2,1,1,0,1,,320.0,,42,1.0,2.0,5.0,2.0,1.5,3,2,1209.28528242975,410.0,38913.446385198185,6,1,0,1,107.0,6,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04368669850446971,25942.297590132122,7,4,7,7_1,7_0,7_0_1 -22819,2,30.0,0.0,9,112,374.0,0.0,0.0,43,21,1493.5848770180007,439.94831454826954,516.933161113398,1865.0,113.54158227655265,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,110072,2,1,2,0,1,,494.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1326.3285040782,374.0,41780.126783734864,1,1,1,2,140.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044638447596239715,19895.298468445173,5,3,5,5_1,5_0,5_0_0 -22820,2,30.0,0.0,9,112,750.0,0.0,0.0,55,46,0.0,258.79312620486445,1036.630670681948,1028.0,48.169156117325365,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,132176,2,1,1,0,1,,280.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1452.71806789125,750.0,48378.00902590474,1,1,1,2,87.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021249324242540484,32252.00601726983,8,4,8,8_1,8_0,8_0_0 -22821,2,75.0,0.0,6,112,320.0,0.0,0.0,0,78,2837.8112663342013,465.827627168756,442.2957528242978,2770.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,102539,1,2,5,0,1,,100.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,1462.71582863533,320.0,13948.473898542132,0,5,0,1,92.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19858803336826084,13948.473898542132,3,2,3_0,3_1_0,3_0_0,3_0_0 -22822,2,73.0,0.0,5,112,725.0,0.0,0.0,0,86,0.0,1308.4580460917946,1002.0763149925497,2159.0,292.4555907123326,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102033,1,2,1,0,1,,120.0,,21,2.0,2.0,4.0,4.0,2.5,2,2,1394.74807793509,725.0,33977.17666470134,0,6,0,1,82.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06354265456796974,13590.870665880537,3,2,3_0,3_1_0,3_0_0,3_0_0 -22823,2,52.0,0.0,6,112,1632.0,0.0,0.0,52,48,0.0,414.0690019277831,2255.7083394039187,2032.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,4.0,1,,4,109946,2,1,2,0,1,,232.0,,43,2.0,2.0,7.0,3.0,2.0,1,1,1442.99143863683,1632.0,59745.2070942634,1,1,0,1,144.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0340110964347985,29872.6035471317,8,4,8,8_1,8_0,8_0_0 -22824,2,36.0,0.0,7,112,650.0,0.0,0.0,38,11,0.0,0.0,898.4132479243549,2250.0,2752.5232067043066,0.0,20,0,0,0,0,0,0,0,0,1,1.0,1,,5,128464,1,1,2,0,1,,180.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1570.7546838216,650.0,98681.7506622261,1,1,1,2,160.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02280056834116611,54823.19481234783,10,5,10,10_1,10_0,10_0_0 -22825,2,45.0,0.0,1,112,940.0,0.0,0.0,52,53,0.0,776.3793786145933,1299.2437739213747,1690.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,106090,2,1,1,0,1,,262.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1350.56891109153,940.0,45258.401637157905,1,1,1,2,100.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03734113311267453,19677.565929199092,5,3,5,5_1,5_0,5_1_0 -22826,0,79.0,0.0,5,112,352.0,0.0,0.0,0,78,0.0,724.6207533736205,486.52532810672756,2378.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117709,2,1,2,0,1,,127.0,,11,0.0,8.0,5.0,1.0,1.0,3,3,1554.2564879027,352.0,8510.82072368866,0,5,0,1,80.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2794090108585151,8510.82072368866,1,1,1_0,1_1_0,1_0_0,1_0_0 -22827,0,59.0,0.0,5,112,650.0,0.0,0.0,0,54,0.0,828.1380038555662,898.4132479243549,1510.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,1,3.0,1,,3,109734,2,1,2,0,1,,73.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1357.52301130933,650.0,35782.187119586364,0,1,0,1,100.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042199768140317506,35782.187119586364,9,5,9,9_1,9_0,9_0_0 -22828,2,45.0,0.0,7,112,485.0,0.0,0.0,52,47,1493.5848770180007,175.97932581930783,670.3545003743263,1655.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,100737,2,2,2,0,1,,150.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1250.73433973459,485.0,45519.82058073437,1,1,1,2,115.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036357788297180935,16257.078778833704,4,2,4_0,4_1_0,4_0_0,4_0_0 -22829,0,59.0,0.0,7,111,0.0,0.0,2600.0,0,75,0.0,0.0,1328.3746705775652,2600.0,0.0,2972.4390140968417,44,0,0,0,0,0,0,0,0,0,,1,,5,106969,2,1,2,0,1,,280.0,,21,1.0,2.0,6.0,2.0,1.5,2,2,1468.02749986798,0.0,44691.092025162696,0,5,0,1,130.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05817714184598815,29794.061350108463,8,4,8,8_1,8_2,8_0_0 -22830,2,47.0,0.0,8,111,696.0,1703.0,0.0,37,43,0.0,0.0,961.9932623928477,2399.0,0.0,3088.6508901432053,41,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,103077,2,1,1,0,1,,350.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,1420.04880554557,696.0,93449.21509525756,1,1,1,2,180.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025671697697563074,33374.7196768777,8,4,8,8_1,8_2,8_0_0 -22831,1,20.0,333.0,1,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1238.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128143,1,2,0,0,2,,0.0,390.0,32,1.0,0.0,3.0,2.0,1.3,2,2,2144.15963225634,0.0,4883.204157913945,0,4,2,3,75.0,6,4,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.2535220646045774,3756.3108907030346,1,1,1_1,1_0_1,1_2_1,1_1_0 -22832,1,46.0,30.0,2,111,610.0,1500.0,0.0,85,62,0.0,0.0,843.1262788213177,2420.0,533.3013712989595,2720.4793512711735,71,2,2,2,2,1,1,2,2,2,30.0,1,,2,101403,1,2,3,0,1,,0.0,510.0,42,1.0,0.0,5.0,4.0,2.3,2,2,1526.17985341138,610.0,45001.5400947293,7,1,2,3,100.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0.053775937332496686,19565.886997708392,5,3,5,5_1,5_2,5_0_1 -22833,2,83.0,0.0,2,111,212.0,628.0,0.0,0,75,0.0,0.0,293.0209362460973,840.0,0.0,1138.9740217321978,43,0,0,0,0,0,0,0,0,0,,2,,2,112794,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,627.37368663829,212.0,34186.20479629808,0,5,0,1,82.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024571314803887242,34186.20479629808,9,5,9,9_0,9_2,9_0_1 -22834,2,46.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,558.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,30.0,2,,2,133488,2,1,0,0,1,,0.0,250.0,12,1.0,2.0,4.0,1.0,1.0,2,2,1670.78720788898,0.0,23626.054789102916,0,1,2,3,77.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02361799314278096,23626.054789102916,6,3,6,6_0,6_2,6_0_1 -22835,1,65.0,97.0,2,111,270.0,651.0,0.0,0,78,0.0,0.0,373.1870414455012,921.0,0.0,1180.6880384516892,31,2,2,1,2,1,2,2,2,0,,2,,2,116550,1,2,0,0,1,,0.0,226.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1947.44330265388,270.0,10870.604845485661,0,5,2,3,75.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08472389651643647,10870.604845485661,2,1,2_1,2_0_1,2_2_1,2_0_1 -22836,1,46.0,175.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,385.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,1,30.0,2,,2,122040,2,2,0,1,1,50.0,0.0,212.0,42,1.0,0.0,2.0,2.0,1.5,2,2,521.294522232214,0.0,23838.81657996944,7,1,2,3,55.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01615013055318762,15892.544386646294,3,2,3_1,3_0_1,3_2_1,3_0_1 -22837,2,54.0,0.0,2,111,240.0,0.0,0.0,62,65,0.0,0.0,331.72181461822333,300.0,103.2196202514115,0.0,31,2,2,1,2,1,2,2,2,2,3.0,2,,2,131641,2,2,0,1,1,917.0,0.0,293.0,43,2.0,1.0,4.0,3.0,2.0,2,2,633.467452940543,240.0,42336.44953283393,1,1,2,3,90.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007086092558785208,21168.224766416966,5,3,5,5_0,5_2,5_0_1 -22838,2,38.0,0.0,2,111,548.0,118.0,0.0,68,63,0.0,0.0,757.43147671161,666.0,0.0,214.01104229999896,10,2,1,1,2,1,2,2,2,2,15.0,2,,2,109634,1,2,0,1,2,925.0,0.0,221.0,43,2.0,0.0,4.0,5.0,2.4,2,2,523.147981630149,548.0,41527.167282584705,1,1,2,3,74.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016037693962316114,17302.98636774363,4,2,4_0,4_0_0,4_2_0,4_0_1 -22839,1,33.0,400.0,2,111,522.0,0.0,0.0,68,64,0.0,0.0,721.4949467946358,812.0,498.8948312151556,0.0,43,1,2,2,1,2,2,2,2,0,,2,,2,112166,2,3,0,1,1,97.0,0.0,357.0,43,2.0,0.0,5.0,5.0,2.4,1,1,1603.83602132773,522.0,34028.34387743069,1,1,2,3,97.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02386246015747358,14178.476615596122,3,2,3_1,3_0_1,3_2_1,3_0_1 -22840,2,47.0,0.0,1,111,300.0,0.0,0.0,0,52,0.0,0.0,414.65226827277917,400.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,1,132861,2,1,0,0,1,,0.0,308.0,32,2.0,1.0,3.0,2.0,1.5,2,2,1794.43487340705,300.0,28551.59639484359,0,1,2,3,70.0,6,4,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014009724516568184,19034.397596562394,5,3,5,5_0,5_2,5_1_0 -22841,2,58.0,0.0,1,111,0.0,0.0,470.0,77,31,0.0,0.0,240.12926737363676,470.0,0.0,537.3255140867368,33,2,2,2,2,1,2,2,2,2,50.0,2,,1,113340,2,1,0,0,1,,60.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1948.92786473783,0.0,114926.63197619005,6,1,1,2,74.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.0040895655943121376,76617.75465079337,10,5,10,10_0,10_2,10_1_0 -22842,2,59.0,0.0,2,111,445.0,0.0,0.0,37,75,0.0,0.0,615.0675312712891,445.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120118,2,2,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2156.82172187585,445.0,29052.075432287184,1,5,0,1,88.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015317322200858904,19368.050288191454,5,3,5,5_0,5_2,5_0_1 -22843,2,69.0,0.0,5,400,2600.0,0.0,0.0,75,90,0.0,155.27587572291867,3593.6529916974196,2750.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,125160,2,2,1,0,1,,324.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1107.56994853914,2600.0,34876.48639279983,5,5,0,1,114.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07884968597546946,23250.99092853322,6,3,6,6_1,6_0,6_0_0 -22844,2,85.0,0.0,2,400,780.0,0.0,0.0,90,90,3285.8867294396014,0.0,1078.0958975092258,2980.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132850,2,1,4,0,1,,197.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1115.16990927257,780.0,82169.93902575687,5,5,0,1,98.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03626630414154127,54779.959350504585,10,5,10,10_1,10_0,10_0_1 -22845,2,45.0,0.0,9,400,603.0,0.0,0.0,62,47,0.0,279.4965763012536,833.4510592282861,1005.0,227.0831645531053,0.0,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,119886,2,1,1,0,1,,198.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1205.88619921899,603.0,60669.403034838346,1,1,1,2,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016565186893678453,33705.223908243526,9,5,9,9_1,9_0,9_0_0 -22846,2,65.0,0.0,2,400,2213.0,0.0,0.0,77,72,5556.135742506963,0.0,3058.751565625534,5933.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129493,2,1,2,0,1,,727.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1196.72527019027,2213.0,140407.10796632012,6,5,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042255695498145056,93604.73864421342,10,5,10,10_1,10_0,10_0_1 -22847,2,60.0,0.0,5,400,1763.0,0.0,0.0,85,78,0.0,0.0,2436.7731632163654,1793.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,115746,2,2,3,0,2,,260.0,,41,0.0,6.0,4.0,2.0,1.5,1,1,1097.41803148854,1763.0,19734.525143319366,7,5,0,1,85.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09085599916788348,13156.350095546244,2,1,2_0,2_1_0,2_0_0,2_0_0 -22848,2,65.0,0.0,2,400,2384.0,0.0,0.0,78,74,0.0,0.0,3295.1033585410187,2418.0,58.49111814246652,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116593,2,2,3,0,1,,234.0,,41,0.0,2.0,5.0,4.0,2.5,3,3,1169.95476814107,2384.0,50967.0,5,5,0,1,156.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047442462770027664,20386.8,5,3,5,5_1,5_0,5_0_1 -22849,2,56.0,0.0,1,400,1116.0,0.0,0.0,67,62,1493.5848770180007,1076.579405012236,1542.5064379747384,3261.0,180.63433543997013,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,108374,2,1,3,0,1,,290.0,,43,2.0,2.0,5.0,6.0,2.8999999999999995,1,1,1152.40949043755,1116.0,50412.25080186595,1,1,0,1,200.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0646866574717449,17383.534759264123,4,2,4_0,4_1_0,4_0_0,4_1_0 -22850,2,32.0,0.0,1,400,1500.0,0.0,0.0,46,62,0.0,103.51725048194578,2073.261341363896,1630.0,51.60981012570575,0.0,41,2,2,2,1,1,2,2,2,0,,1,,1,123835,1,1,2,0,2,,310.0,,43,2.0,0.0,4.0,2.0,1.5,4,4,1206.53051924827,1500.0,59812.92434939662,1,1,1,2,60.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.027251635290031478,39875.28289959775,9,5,9,9_1,9_0,9_1_0 -22851,2,66.0,0.0,5,400,602.0,0.0,0.0,78,78,298.71697540360015,155.27587572291867,832.0688850007102,1042.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119010,2,1,2,0,1,,324.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1167.89478881299,602.0,32175.383588526965,5,5,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03238500629318229,21450.255725684645,6,3,6,6_1,6_0,6_0_0 -22852,2,94.0,0.0,2,400,456.0,0.0,0.0,77,72,0.0,0.0,630.2714477746243,576.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,131759,2,2,0,1,1,,184.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1511.2754476767,456.0,57557.94594040353,5,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010007306386444021,38371.96396026902,9,5,9,9_0,9_0,9_0_1 -22853,2,51.0,0.0,7,400,700.0,0.0,0.0,54,46,0.0,82.81380038555662,967.5219593031513,2180.0,2408.4578058662682,0.0,70,0,0,0,0,0,0,0,0,1,1.0,1,,5,125860,2,1,2,0,1,,634.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,1120.00694821591,700.0,106888.50237325848,1,1,0,1,160.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020395084144666578,42755.400949303395,9,5,9,9_1,9_0,9_0_0 -22854,2,64.0,0.0,6,400,590.0,0.0,0.0,74,74,0.0,207.03450096389156,815.482794269799,790.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,121367,2,1,2,0,1,,77.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1125.33394928466,590.0,47264.53086370993,5,5,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016714436503728593,31509.687242473286,8,4,8,8_1,8_0,8_0_0 -22855,2,32.0,0.0,7,400,1170.0,0.0,0.0,62,54,0.0,0.0,1617.1438462638387,1170.0,0.0,0.0,70,2,1,2,2,2,2,2,1,2,5.0,1,,5,121496,1,1,2,0,1,,0.0,450.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1133.32595138939,1170.0,44620.496262438675,1,1,2,3,62.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02622113373904585,29746.99750829245,8,4,8,8_1,8_0,8_0_0 -22856,2,63.0,0.0,5,400,934.0,0.0,0.0,78,48,1291.9509186205705,0.0,1290.950728555919,1859.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,106360,2,1,2,0,1,,308.0,320.0,42,2.0,1.0,4.0,3.0,2.0,1,1,1222.61155579019,934.0,41065.07986348614,6,1,2,3,95.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04526960634631489,20532.53993174307,5,3,5,5_1,5_0,5_0_0 -22857,2,59.0,0.0,5,400,666.0,0.0,0.0,90,78,0.0,821.9269688266495,920.5280355655698,1610.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119921,2,1,3,0,1,,265.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,1064.24634427354,666.0,27709.64032540987,5,7,0,1,75.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058102522482892806,18473.093550273246,4,2,4_0,4_1_0,4_0_0,4_0_0 -22858,2,50.0,0.0,7,400,454.0,0.0,0.0,52,38,664.6452702730103,476.1793522169506,627.5070993194724,1461.0,175.47335442739956,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,129654,2,1,2,0,1,,259.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1146.64259110118,454.0,58472.49920777403,1,1,0,1,132.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024986104917604706,38981.66613851602,9,5,9,9_1,9_0,9_0_0 -22859,1,52.0,213.0,9,400,498.0,0.0,0.0,54,62,0.0,569.3448776507017,688.3227653328134,1967.0,1580.9805168507862,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,112837,2,1,1,0,1,,329.0,550.0,43,2.0,0.0,5.0,4.0,2.5,3,3,1303.84505830537,498.0,50195.294565496035,1,4,2,3,119.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03918694007131308,20078.117826198413,5,3,5,5_1,5_0,5_0_0 -22860,2,42.0,0.0,8,400,539.0,0.0,0.0,0,63,0.0,390.26003431693556,744.9919086634266,972.0,96.33831223465073,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,115367,1,1,1,0,1,,303.0,445.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1289.52405737945,539.0,20414.0,0,1,2,3,75.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047614382286666014,20414.0,5,3,5,5_1,5_0,5_0_0 -22861,2,69.0,0.0,5,400,336.0,0.0,0.0,78,75,1735.5456270949169,465.827627168756,464.41054046551267,4025.0,292.4555907123326,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119954,2,1,2,0,1,,174.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1154.65426976588,336.0,31843.577811894487,5,5,0,1,85.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1263991133086982,21229.051874596324,5,3,5,5_1,5_0,5_0_0 -22862,0,63.0,0.0,1,400,0.0,0.0,0.0,77,78,0.0,0.0,0.0,111.0,190.95629746511128,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130025,2,1,2,0,1,,272.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1210.00388993907,0.0,39012.640712304514,5,5,5,0,130.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0028452316473155533,26008.427141536344,7,4,7,7_1,7_0,7_1_0 -22863,2,44.0,0.0,8,400,520.0,0.0,0.0,46,47,2598.8376860113212,279.4965763012536,718.7305983394839,2630.0,172.03270041901916,0.0,33,2,2,2,2,2,2,2,1,2,30.0,1,2001.0,6,106524,2,1,2,0,1,,222.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,1060.58613592192,520.0,54201.02545919152,1,1,1,2,166.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.048523067187726046,23565.66324312675,6,3,6,6_1,6_0,6_0_0 -22864,2,47.0,0.0,1,400,490.0,0.0,0.0,23,33,2061.147130284841,517.5862524097289,677.265371512206,2430.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,129728,2,2,4,0,1,,210.0,,43,2.0,1.0,4.0,4.0,2.3,1,1,1134.56048892377,490.0,66057.13179530241,1,1,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03678633834012162,28720.492084914094,8,4,8,8_1,8_0,8_1_0 -22865,2,40.0,0.0,2,400,626.0,0.0,0.0,0,52,1792.3018524216009,0.0,865.2410664625326,1826.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,126802,2,2,1,0,1,,142.0,,12,1.0,0.0,6.0,1.0,1.0,3,3,1345.44904223369,626.0,22606.709450839022,0,1,1,2,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08077248057577129,22606.709450839022,6,3,6,6_1,6_0,6_0_1 -22866,2,92.0,0.0,2,400,480.0,0.0,0.0,78,78,4480.754631054002,0.0,663.4436292364467,3592.0,192.67662446930146,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,106943,2,1,1,0,1,,165.0,,41,0.0,1.0,6.0,3.0,2.0,1,1,1291.8362234975,480.0,39105.17608411452,5,5,0,1,90.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09185484786652472,19552.58804205726,5,3,5,5_1,5_0,5_0_1 -22867,2,73.0,0.0,2,400,1915.0,0.0,0.0,78,75,1344.2263893162005,0.0,2646.8636458079072,2815.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109807,2,1,1,0,1,,259.0,,41,1.0,4.0,7.0,3.0,2.0,3,2,1285.75807252105,1915.0,58078.142224622796,5,5,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04846918121300638,29039.071112311398,8,4,8,8_1,8_0,8_0_1 -22868,0,74.0,0.0,1,400,354.0,0.0,0.0,0,78,3397.9055952159515,0.0,489.28967656187945,2683.0,92.89765822627035,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,120761,2,2,2,0,1,,71.0,,11,0.0,1.0,4.0,1.0,1.0,2,1,1200.54596230904,354.0,19856.266378056444,0,5,0,1,52.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1351210720543635,19856.266378056444,5,3,5,5_1,5_0,5_1_0 -22869,1,26.0,120.0,1,400,442.0,0.0,0.0,0,43,1365.1365775944525,0.0,610.9210085885613,1356.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,111953,2,1,0,1,1,1045.0,114.0,417.0,12,1.0,0.0,5.0,1.0,1.0,1,1,1621.76697523729,442.0,16165.214500256177,0,1,2,3,80.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08388382350129105,16165.214500256177,4,2,4_1,4_0_1,4_0_1,4_1_0 -22870,1,52.0,254.0,2,400,200.0,0.0,0.0,0,56,0.0,0.0,276.4348455151861,270.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131287,2,1,0,1,1,,200.0,255.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1491.65559127421,200.0,8765.281529141728,0,1,2,3,98.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030803346030853346,8765.281529141728,1,1,1_1,1_0_1,1_0_1,1_0_1 -22871,2,30.0,0.0,9,400,1100.0,0.0,0.0,46,38,0.0,15.527587572291866,1520.3916503335236,1205.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,125253,2,1,1,0,1,,133.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1129.04640490838,1100.0,56930.92823869531,1,1,1,2,123.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021165999523980624,27109.96582795015,7,4,7,7_1,7_0,7_0_0 -22872,2,90.0,0.0,2,400,267.0,0.0,0.0,78,72,2624.228628920627,383.01382678319936,369.04051876277344,2499.0,180.63433543997013,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,104492,2,2,2,0,1,,128.0,,41,0.0,1.0,6.0,2.0,1.5,3,2,1216.06265468826,267.0,26213.105589192764,5,5,0,1,81.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09533399205587823,17475.40372612851,4,2,4_0,4_1_0,4_0_0,4_0_1 -22873,2,86.0,0.0,5,400,360.0,0.0,0.0,86,78,2598.8376860113212,931.655254337512,497.582721927335,3150.0,258.04905062852873,0.0,70,2,2,2,2,1,1,2,2,0,,1,,3,130387,2,1,2,0,1,,163.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1115.16990927257,360.0,29240.48750121148,6,5,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.10772734209268879,19493.658334140986,5,3,5,5_1,5_0,5_0_0 -22874,0,76.0,0.0,1,400,843.0,0.0,0.0,78,78,866.2792286704404,0.0,1165.1728738465094,1500.0,132.46517932264476,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,133359,2,2,0,1,1,,370.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1551.19805032846,843.0,33103.4595256195,5,5,5,0,50.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04531248460116734,22068.97301707967,6,3,6,6_0,6_0,6_1_0 -22875,2,65.0,0.0,1,400,350.0,0.0,0.0,0,90,1493.5848770180007,258.79312620486445,483.76097965157567,2910.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,114877,2,2,4,1,1,,113.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1189.92494702781,350.0,10918.250779115493,0,5,0,1,70.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2665262100011724,10918.250779115493,2,1,2_0,2_1_0,2_0_0,2_1_0 -22876,2,52.0,0.0,7,400,425.0,0.0,0.0,43,46,3363.5531430445376,0.0,587.4240467197704,2677.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,119507,2,1,2,0,1,,112.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,1164.15314679322,425.0,67205.04558914398,1,1,0,1,143.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039833318711897894,33602.52279457199,9,5,9,9_1,9_0,9_0_0 -22877,2,57.0,0.0,1,300,420.0,0.0,0.0,67,65,0.0,0.0,580.5131755818909,612.0,330.3027848045168,0.0,50,2,2,2,1,1,2,1,2,2,5.0,1,,1,107678,2,1,4,0,1,,490.0,359.0,43,2.0,4.0,5.0,2.0,1.5,3,3,1398.70492607042,420.0,42974.24521836482,1,1,2,3,120.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.014241087816440927,28649.496812243215,8,4,8,8_1,8_0,8_1_0 -22878,2,53.0,0.0,1,300,680.0,0.0,0.0,46,62,0.0,465.827627168756,939.8784747516328,2330.0,2064.39240502823,0.0,70,2,2,2,2,1,2,1,2,2,10.0,1,,1,111222,1,3,4,0,1,,470.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,1005.1383603361,680.0,69227.12425337588,1,1,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.033657327602863364,27690.84970135035,7,4,7,7_1,7_0,7_1_0 -22879,1,64.0,230.0,1,300,410.0,0.0,0.0,0,56,0.0,0.0,566.6914333061316,514.0,178.91400843577995,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,113685,2,1,0,0,2,,200.0,410.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1587.74212715184,410.0,4962.038000329187,0,4,2,3,75.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10358646990730436,4962.038000329187,1,1,1_1,1_0_1,1_0_1,1_1_0 -22880,2,57.0,0.0,6,300,420.0,0.0,0.0,77,67,0.0,1035.1725048194578,580.5131755818909,1484.0,110.10092826817227,0.0,12,0,0,0,0,0,0,0,0,3,45.0,1,,4,122909,1,1,3,0,1,,338.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1139.40396767663,420.0,22070.250336996556,6,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06723983540469215,14713.50022466437,3,2,3_0,3_1_0,3_0_0,3_0_0 -22881,1,63.0,250.0,2,300,600.0,0.0,0.0,0,67,896.1509262108004,0.0,829.3045365455583,1276.0,130.74485231845458,0.0,20,2,2,2,1,1,1,2,2,0,,1,,2,133237,1,3,3,0,1,,160.0,300.0,12,1.0,4.0,4.0,1.0,1.0,2,2,1303.64845727678,600.0,10418.90086919671,0,4,2,3,65.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.12246973227017359,10418.90086919671,2,1,2_1,2_1_1,2_0_1,2_0_1 -22882,2,63.0,0.0,1,300,1200.0,0.0,0.0,68,78,0.0,621.1035028916747,1658.6090730911167,1880.0,137.62616033521533,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,113418,2,1,2,0,1,,380.0,,42,1.0,7.0,5.0,2.0,1.5,3,2,1010.59279111032,1200.0,28736.157896030072,1,5,0,1,86.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06542280310408942,19157.438597353383,5,3,5,5_1,5_0,5_1_0 -22883,2,80.0,0.0,2,300,120.0,0.0,0.0,0,78,2987.1697540360015,0.0,165.86090730911167,2280.0,275.25232067043066,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,110112,2,2,2,0,1,,120.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1106.47563703925,120.0,20939.0899270221,0,5,0,1,56.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.10888725383702744,20939.0899270221,5,3,5,5_1,5_0,5_0_1 -22884,2,44.0,0.0,1,300,530.0,0.0,0.0,85,62,1493.5848770180007,621.1035028916747,732.5523406152432,2226.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,109365,2,2,2,0,1,,528.0,,42,1.0,0.0,7.0,5.0,2.8,3,3,1062.22203424199,530.0,40726.41511078032,6,1,1,2,140.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0546574009508334,14545.148253850115,3,2,3_0,3_1_0,3_0_0,3_1_0 -22885,2,68.0,0.0,8,300,1488.0,0.0,0.0,77,78,448.0754631054002,0.0,2056.675250632985,1788.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,108869,2,1,1,0,1,,268.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1041.19395304965,1488.0,34119.65800761797,5,5,0,1,101.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05240380778731104,22746.438671745313,6,3,6,6_1,6_0,6_0_0 -22886,2,50.0,0.0,9,300,1300.0,0.0,0.0,52,52,0.0,186.3310508675024,1796.8264958487098,1582.0,175.47335442739956,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,115052,2,1,1,0,1,,500.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,986.246458561968,1300.0,63907.94256932872,1,1,1,2,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02475435660104082,27786.061986664663,7,4,7,7_1,7_0,7_0_0 -22887,1,51.0,75.0,2,300,570.0,0.0,0.0,85,65,3381.4761615687535,0.0,787.8393097182804,2898.0,110.10092826817227,0.0,10,2,2,2,2,1,1,2,2,1,5.0,1,,2,118356,1,3,4,0,1,,177.0,250.0,42,1.0,0.0,4.0,3.0,1.8,3,3,1055.87686728004,570.0,21926.976842601725,6,1,2,3,74.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.13216596254023957,12181.653801445404,2,1,2_1,2_1_1,2_0_1,2_0_1 -22888,1,81.0,93.0,1,300,120.0,0.0,0.0,0,78,0.0,817.7862788073717,165.86090730911167,1060.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117796,1,3,4,0,2,,92.0,110.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1531.85595354485,120.0,9328.625387733056,0,5,2,3,25.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1136287454949019,9328.625387733056,1,1,1_1,1_1_1,1_0_1,1_1_0 -22889,2,42.0,0.0,8,120,1200.0,0.0,0.0,67,64,0.0,362.31037668681023,1658.6090730911167,1646.0,165.1513924022584,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,122730,2,2,4,0,1,,360.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1066.40911975959,1200.0,35295.03685453292,1,1,1,2,112.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04663545208307681,15345.668197623008,3,2,3_0,3_1_0,3_0_0,3_0_0 -22890,2,59.0,0.0,2,120,430.0,0.0,0.0,0,62,2300.120710607721,0.0,594.3349178576501,2034.0,110.10092826817227,0.0,70,2,2,2,1,1,2,2,2,3,40.0,1,,2,113124,2,2,2,0,1,,108.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1064.11832479674,430.0,25329.04930887994,0,1,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.08030305343070708,25329.04930887994,7,4,7,7_1,7_0,7_0_1 -22891,2,30.0,0.0,1,120,900.0,0.0,0.0,47,34,2688.452778632401,362.31037668681023,1243.9568048183376,3146.0,165.1513924022584,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,118681,1,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,888.72246592878,900.0,72733.66949807946,1,1,1,2,110.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04325369559531258,34635.08071337117,9,5,9,9_1,9_0,9_1_0 -22892,2,46.0,0.0,9,120,570.0,0.0,0.0,54,53,1493.5848770180007,289.84830134944815,787.8393097182804,1946.0,165.1513924022584,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,113798,2,1,1,0,1,,223.0,,43,2.0,0.0,4.0,3.0,1.8,4,2,1295.06448565384,570.0,46420.60173581357,1,1,1,2,140.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04192104210701469,25789.223186563097,7,4,7,7_1,7_0,7_0_0 -22893,2,36.0,0.0,9,211,600.0,1320.0,0.0,0,38,0.0,0.0,829.3045365455583,1920.0,0.0,2394.0218291186325,20,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,116604,2,1,1,0,1,,194.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1016.30850599181,600.0,42722.91619168818,0,1,1,2,108.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044940752437998124,42722.91619168818,9,5,9,9_1,9_1,9_0_0 -22894,2,61.0,0.0,2,211,700.0,0.0,0.0,71,74,0.0,828.1380038555662,967.5219593031513,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113213,2,1,1,0,1,,290.0,650.0,41,0.0,10.0,3.0,2.0,1.5,2,2,945.846037448827,700.0,45458.0,5,5,3,4,65.0,1,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032997492190593516,30305.333333333332,8,4,8,8_1,8_1,8_0_1 -22895,2,44.0,0.0,2,211,1200.0,0.0,0.0,62,62,0.0,745.3242034700096,1658.6090730911167,2112.0,330.3027848045168,0.0,71,2,2,2,2,2,2,2,1,2,60.0,1,,2,129184,2,3,3,0,1,,630.0,,43,2.0,1.0,3.0,3.0,1.8,3,3,985.606713584214,1200.0,81262.69714561393,1,1,1,2,98.0,1,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.02598978466362648,45145.9428586744,10,5,10,10_1,10_1,10_0_1 -22896,1,38.0,274.0,9,211,576.0,1144.0,0.0,0,48,0.0,0.0,796.132355083736,1720.0,0.0,2074.8189185694814,10,2,2,2,2,1,2,2,2,2,40.0,1,2004.0,6,120165,2,1,2,0,1,,360.0,,32,1.0,0.0,2.0,3.0,1.6,3,2,863.401824980973,576.0,26096.46713732216,0,1,1,2,75.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.06590930454107799,16310.29196082635,4,2,4_1,4_1_1,4_1_1,4_0_0 -22897,1,41.0,178.0,6,211,1230.0,0.0,0.0,0,56,0.0,0.0,1700.0742999183947,1358.0,220.20185653634454,0.0,43,2,2,2,1,1,2,2,2,2,25.0,2,,4,122855,2,2,0,0,1,,300.0,460.0,32,1.0,0.0,5.0,3.0,1.6,2,2,1544.62064546412,1230.0,22921.096595551026,0,1,2,3,105.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.05924672907070193,14325.68537221939,3,2,3_1,3_0_1,3_1_1,3_0_0 -22898,2,86.0,0.0,2,211,252.0,1450.0,0.0,0,78,0.0,0.0,348.3079053491345,1702.0,0.0,2629.7967062288008,60,0,0,0,0,0,0,0,0,0,,1,,2,109662,1,2,2,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1019.015233104,252.0,16158.418266595563,0,5,0,1,60.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10533209203518139,16158.418266595563,4,2,4_0,4_1_0,4_1_0,4_0_1 -22899,2,41.0,0.0,2,211,600.0,1000.0,0.0,43,45,0.0,414.0690019277831,829.3045365455583,2140.0,240.84578058662683,1813.6529008474488,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,102631,2,2,3,0,1,,343.0,,43,2.0,0.0,6.0,3.0,1.8,4,2,986.767746045374,600.0,61252.252261460264,1,1,1,2,180.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034937490802219556,34029.02903414459,9,5,9,9_1,9_1,9_0_1 -22900,2,52.0,0.0,1,211,315.0,0.0,0.0,67,52,2016.339583974301,186.3310508675024,435.3848816864181,1909.0,110.10092826817227,0.0,44,1,2,2,1,2,2,2,2,2,5.0,1,,1,111790,1,1,1,0,2,,190.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,845.052718776492,315.0,41269.846468002695,1,1,0,1,98.0,1,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.046256532635276085,27513.230978668464,7,4,7,7_1,7_1,7_1_0 -22901,2,74.0,0.0,1,211,0.0,0.0,1156.0,0,78,0.0,181.15518834340511,590.615815072179,1331.0,0.0,1321.5921154984421,41,0,0,0,0,0,0,0,0,0,,1,,1,110891,2,2,2,0,1,,172.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,1017.06693571947,0.0,23785.42018469943,0,5,0,1,90.0,1,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055958649864684726,23785.42018469943,6,3,6,6_1,6_1,6_1_0 -22902,1,66.0,240.0,9,211,353.0,918.0,0.0,0,77,0.0,0.0,487.9075023343035,1271.0,0.0,1664.933362977958,50,1,2,2,1,2,2,2,2,0,,1,2010.0,6,127570,2,1,1,0,1,,274.0,407.0,11,0.0,2.0,3.0,1.0,1.0,1,1,835.691729838815,353.0,9883.795789181715,0,5,2,3,80.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.12859432014886124,9883.795789181715,2,1,2_1,2_1_1,2_1_1,2_0_0 -22903,2,74.0,0.0,5,211,1280.0,0.0,0.0,72,75,0.0,0.0,1769.1830112971911,1280.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,116039,2,1,1,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,958.583854544957,1280.0,37768.62605820204,5,5,0,1,110.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033890562977522666,25179.08403880136,7,4,7,7_1,7_1,7_0_0 -22904,2,46.0,0.0,9,211,1309.0,0.0,0.0,34,48,0.0,0.0,1809.266063896893,1309.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,2006.0,6,119086,2,1,1,0,1,,410.0,720.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1148.34361705904,1309.0,56619.65915890589,1,1,2,3,108.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023119178381597574,31455.36619939216,8,4,8,8_1,8_1,8_0_0 -22905,2,33.0,0.0,1,211,650.0,0.0,0.0,53,52,1941.6603401234008,103.51725048194578,898.4132479243549,2146.0,165.1513924022584,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,111225,2,3,3,0,1,,398.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1033.02649411486,650.0,36753.751974210114,1,1,1,2,90.0,1,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05838859666642565,20418.751096783395,5,3,5,5_1,5_1,5_1_0 -22906,2,49.0,0.0,1,211,959.0,0.0,0.0,0,62,0.0,0.0,1325.5050842453174,959.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128571,2,1,1,0,1,,126.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,843.848466269412,959.0,17148.58758077847,0,4,1,2,90.0,1,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05592297298437133,17148.58758077847,4,2,4_0,4_1_0,4_1_0,4_1_0 -22907,2,50.0,0.0,7,211,727.0,989.0,0.0,43,53,0.0,0.0,1004.8406634477016,1716.0,0.0,1793.702718938127,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,120631,2,1,2,0,1,,360.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,897.688742635713,727.0,56122.58127840717,1,1,0,1,127.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03057592792262071,37415.05418560478,9,5,9,9_1,9_1,9_0_0 -22908,2,51.0,0.0,6,211,1505.0,0.0,0.0,34,34,0.0,496.8828023133397,2080.1722125017754,1985.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,130439,2,1,3,0,1,,622.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,834.329462635495,1505.0,58594.04480137574,1,1,0,1,120.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033877162887949216,25475.671652772064,7,4,7,7_1,7_1,7_0_0 -22909,2,67.0,0.0,2,211,460.0,0.0,0.0,77,75,3051.3939037477753,0.0,635.800144684928,2663.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100468,2,2,1,0,1,,250.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,880.866343975492,460.0,39747.108781466566,5,5,0,1,90.0,1,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06699858383766806,26498.072520977712,7,4,7,7_1,7_1,7_0_1 -22910,2,63.0,0.0,9,211,1500.0,0.0,0.0,0,75,0.0,0.0,2073.261341363896,2421.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,106642,1,2,1,0,1,,240.0,,11,0.0,0.0,4.0,1.0,1.0,3,2,994.470131453377,1500.0,17741.85234888686,0,5,1,2,90.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13645700304522576,17741.85234888686,4,2,4_0,4_1_0,4_1_0,4_0_0 -22911,1,44.0,35.0,8,211,800.0,0.0,0.0,55,55,2987.1697540360015,0.0,1105.7393820607444,2800.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,1,2000.0,6,102296,1,3,3,0,1,,426.0,600.0,43,2.0,0.0,4.0,4.0,2.3,2,2,978.347379729083,800.0,30402.926764188123,4,4,2,3,100.0,1,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,1,0.09209639656462762,13218.663810516577,2,1,2_1,2_1_1,2_1_1,2_0_0 -22912,2,83.0,0.0,2,211,1100.0,680.0,0.0,77,77,0.0,465.827627168756,1520.3916503335236,2230.0,0.0,1233.2839725762653,70,0,0,0,0,0,0,0,0,0,,1,,2,118593,2,1,1,0,1,,513.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,830.03803904497,1100.0,45453.18856709452,5,5,0,1,114.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049061464559482876,30302.125711396347,8,4,8,8_1,8_1,8_0_1 -22913,2,87.0,0.0,1,211,228.0,0.0,0.0,0,77,2240.377315527001,0.0,315.13572388731217,1766.0,65.37242615922729,0.0,50,2,2,2,2,1,2,1,2,0,,1,,1,128077,2,3,2,0,1,,252.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,960.428166351675,228.0,14893.958216548926,0,5,0,1,60.0,1,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.11857156937890209,14893.958216548926,3,2,3_0,3_1_0,3_1_0,3_1_0 -22914,2,56.0,0.0,6,211,565.0,2042.0,0.0,56,65,0.0,0.0,780.9284385804008,2607.0,0.0,3703.479223530491,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,102279,2,1,2,0,1,,405.0,,43,2.0,3.0,8.0,2.0,1.5,3,3,881.838978357523,565.0,22101.742208976946,1,1,0,1,120.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11795450219942973,14734.49480598463,3,2,3_0,3_1_0,3_1_0,3_0_0 -22915,2,43.0,0.0,2,211,800.0,800.0,0.0,55,38,0.0,165.62760077111324,1105.7393820607444,1824.0,110.10092826817227,1450.922320677959,44,0,0,0,0,0,0,0,0,2,60.0,1,,2,114951,2,2,3,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,856.403903796188,800.0,102629.83067381088,1,1,0,1,125.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01777261043913472,48871.34793990994,10,5,10,10_1,10_1,10_0_1 -22916,2,49.0,0.0,9,120,800.0,0.0,0.0,22,53,0.0,207.03450096389156,1105.7393820607444,1000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,112832,2,1,1,0,1,,166.0,,43,2.0,1.0,4.0,2.0,1.5,3,3,994.429852803853,800.0,50068.363691985716,1,1,1,2,95.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019972691860909903,33378.909127990475,8,4,8,8_1,8_0,8_0_0 -22917,2,85.0,0.0,1,120,460.0,0.0,0.0,77,78,0.0,590.048327747091,635.800144684928,3330.0,3956.7521096374408,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,130594,2,2,4,0,1,,243.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1143.62936566492,460.0,26755.753402921066,5,5,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12445921256085603,17837.16893528071,4,2,4_0,4_1_0,4_0_0,4_1_0 -22918,1,29.0,200.0,8,112,458.0,0.0,0.0,54,65,2240.377315527001,0.0,633.0357962297762,2058.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,131387,2,1,0,0,1,,0.0,500.0,43,2.0,0.0,4.0,3.0,1.8,4,3,2564.26329330178,458.0,33331.909721248696,1,1,2,3,90.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.061742636926921994,18517.727622915943,4,2,4_1,4_0_1,4_0_1,4_0_0 -22919,2,60.0,0.0,7,112,1200.0,0.0,0.0,0,75,0.0,1035.1725048194578,1658.6090730911167,2200.0,0.0,0.0,50,2,2,1,1,2,2,2,2,0,,1,,5,100076,2,1,2,0,1,,100.0,,31,0.0,2.0,5.0,2.0,1.5,2,2,1633.85120408466,1200.0,33367.326748032174,0,5,0,1,150.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0659327616087718,22244.884498688116,6,3,6,6_1,6_0,6_0_0 -22920,2,52.0,0.0,7,112,750.0,0.0,0.0,52,47,2987.1697540360015,310.55175144583734,1036.630670681948,3140.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108931,2,1,3,0,1,,350.0,,43,2.0,2.0,7.0,3.0,2.0,2,2,2025.2944397123,750.0,48117.13896650023,1,4,1,2,250.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06525741279393417,24058.569483250114,6,3,6,6_1,6_0,6_0_0 -22921,2,49.0,0.0,1,112,420.0,0.0,0.0,56,64,0.0,414.0690019277831,580.5131755818909,940.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,111014,2,3,4,0,1,,170.0,,43,2.0,4.0,3.0,3.0,1.8,3,3,1818.05958973536,420.0,35722.155791587866,1,1,1,2,80.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026314201345635432,19845.642106437703,5,3,5,5_1,5_0,5_1_0 -22922,1,70.0,154.0,9,112,720.0,0.0,0.0,0,77,0.0,0.0,995.16544385467,720.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,2008.0,6,120231,2,1,0,0,1,,283.0,400.0,11,0.0,2.0,2.0,1.0,1.0,2,2,2929.25338882883,720.0,10053.113492800416,0,5,2,3,50.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.07161960327172585,10053.113492800416,2,1,2_1,2_0_1,2_0_1,2_0_0 -22923,2,62.0,0.0,6,112,1450.0,0.0,0.0,45,75,0.0,0.0,2004.1526299850993,1540.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101148,2,1,2,0,1,,256.0,,42,3.0,0.0,5.0,4.0,2.5,2,2,1524.1211036457,1450.0,89916.97587526671,1,5,0,1,78.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017126910519502967,35966.79035010668,9,5,9,9_1,9_0,9_0_0 -22924,2,63.0,0.0,1,112,0.0,0.0,0.0,0,78,0.0,62.110350289167464,0.0,1433.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,5,,1,112758,2,1,2,0,1,,160.0,420.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2073.82552321879,0.0,15481.907378749032,0,5,2,3,70.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09255965463060335,15481.907378749032,3,2,3_0,3_1_0,3_0_0,3_1_0 -22925,2,41.0,0.0,9,112,750.0,0.0,0.0,85,21,3136.5282417378016,0.0,1036.630670681948,2950.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,101239,2,1,1,0,1,,239.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,2011.34386821105,750.0,45267.78055644219,6,1,1,2,156.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0651677631140274,25148.766975801213,7,4,7,7_1,7_0,7_0_0 -22926,2,47.0,0.0,9,112,1635.0,0.0,0.0,52,62,0.0,207.03450096389156,2259.8548620866463,1835.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,122701,2,1,1,0,1,,216.0,,43,2.0,1.0,6.0,4.0,2.3,2,2,1598.89187656938,1635.0,54029.55292234763,1,1,1,2,125.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03396289439295008,23491.109966238102,6,3,6,6_1,6_0,6_0_0 -22927,2,34.0,0.0,9,112,1056.0,0.0,0.0,85,64,0.0,165.62760077111324,1459.5759843201827,1306.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,109303,2,1,1,0,1,,170.0,650.0,42,1.0,0.0,5.0,4.0,2.1,2,2,1777.85701394494,1056.0,31789.214860931585,6,1,2,3,120.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041083115947133764,15137.721362348373,3,2,3_0,3_1_0,3_0_0,3_0_0 -22928,2,71.0,0.0,5,112,400.0,0.0,0.0,0,86,0.0,1521.7035820846029,552.8696910303722,1870.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,121379,1,2,3,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1980.72178118642,400.0,17029.12680782169,0,5,0,1,150.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10981185477702156,17029.12680782169,4,2,4_0,4_1_0,4_0_0,4_0_0 -22929,2,45.0,0.0,1,112,402.0,0.0,0.0,0,52,4480.754631054002,0.0,555.6340394855241,3432.0,51.60981012570575,0.0,70,2,2,2,2,2,1,2,1,2,10.0,1,,1,106132,1,1,3,0,2,,121.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,2178.71698924262,402.0,19306.12496487359,0,1,1,2,70.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.17776741869455062,19306.12496487359,5,3,5,5_1,5_0,5_1_0 -22930,2,39.0,0.0,8,112,1000.0,0.0,0.0,56,46,0.0,82.81380038555662,1382.1742275759307,1113.0,56.77079113827632,0.0,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,106026,2,1,1,0,1,,313.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,1641.975355408,1000.0,51726.90473843798,1,1,1,2,140.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02151684902910759,24631.85939925618,7,4,7,7_1,7_0,7_0_0 -22931,1,59.0,180.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,694.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,117813,2,1,2,0,1,,149.0,550.0,11,0.0,2.0,4.0,1.0,1.0,3,2,1824.1682290516,0.0,5116.933018527592,0,7,2,3,100.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1356281189312304,5116.933018527592,1,1,1_1,1_1_1,1_0_1,1_1_0 -22933,2,33.0,0.0,1,112,1152.0,0.0,0.0,53,46,0.0,1340.5483937411977,1592.264710167472,2447.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,25.0,1,,1,107922,2,1,2,0,1,,261.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1944.44712709432,1152.0,46187.177893132895,1,1,1,2,140.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.052980071777968915,25659.543273962718,7,4,7,7_1,7_0,7_1_0 -22934,2,44.0,0.0,1,112,780.0,0.0,0.0,56,62,3733.962192545002,0.0,1078.0958975092258,3590.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,125215,2,1,1,0,1,,324.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,2131.60279508076,780.0,61418.061353578996,1,1,0,1,87.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05845186124212957,30709.030676789498,8,4,8,8_1,8_0,8_1_0 -22935,2,29.0,0.0,1,112,1122.0,0.0,0.0,54,48,0.0,142.85380566508516,1550.799483340194,1290.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,130893,2,1,1,0,1,,176.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,2138.61607480073,1122.0,79975.92822727379,1,1,1,2,120.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016129853427072544,44431.07123737433,10,5,10,10_1,10_0,10_1_0 -22936,2,59.0,0.0,6,112,642.0,0.0,0.0,77,78,0.0,828.1380038555662,887.3558541037474,1442.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,127681,2,1,2,0,1,,190.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1614.09885539687,642.0,18472.420071128035,5,7,0,1,90.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0780623217990702,12314.946714085358,2,1,2_0,2_1_0,2_0_0,2_0_0 -22937,2,55.0,0.0,1,112,512.0,0.0,0.0,0,43,0.0,0.0,707.6732045188764,4212.0,6365.209915503709,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,119797,2,1,1,0,1,,85.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1823.00780031348,512.0,28334.29300763819,0,1,0,1,90.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14865378849807737,28334.29300763819,8,4,8,8_1,8_0,8_1_0 -22938,2,65.0,0.0,1,112,362.0,0.0,0.0,78,75,2220.960712125767,31.055175144583732,500.3470703824869,1978.0,170.31237341482898,0.0,71,2,2,2,2,1,1,2,2,0,,1,,1,108590,1,1,2,0,1,,137.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1716.75409994162,362.0,23945.49554861015,6,5,0,1,108.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08260426250041869,15963.663699073433,3,2,3_0,3_1_0,3_0_0,3_1_0 -22939,1,44.0,57.0,8,112,678.0,0.0,0.0,0,54,1344.2263893162005,0.0,937.1141262964809,1653.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,111418,2,1,2,0,1,,272.0,,32,1.0,0.0,6.0,3.0,1.8,2,2,1919.29465142812,678.0,23462.547952582245,0,1,1,2,150.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07045270630200562,13034.748862545692,2,1,2_1,2_1_1,2_0_1,2_0_0 -22940,2,43.0,0.0,1,300,241.0,0.0,0.0,0,45,3285.8867294396014,0.0,333.1039888457993,2540.0,170.31237341482898,0.0,50,2,2,2,2,1,2,1,2,2,10.0,5,,1,125364,2,1,3,0,1,,360.0,,22,1.0,0.0,5.0,3.0,2.0,1,1,1932.23532411321,241.0,40772.35674370818,0,1,1,2,124.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06229711017114462,20386.17837185409,5,3,5,5_1,5_0,5_1_0 -22941,2,31.0,0.0,8,300,392.0,0.0,0.0,0,33,0.0,31.055175144583732,541.8122972097648,455.0,56.77079113827632,0.0,71,0,0,0,0,0,0,0,0,2,75.0,1,2001.0,6,110967,2,1,1,0,1,,230.0,,12,1.0,1.0,4.0,1.0,1.0,2,1,1983.59590737428,392.0,35478.58954301122,0,1,1,2,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012824636093506387,35478.58954301122,9,5,9,9_1,9_0,9_0_0 -22942,2,52.0,0.0,7,300,1100.0,0.0,0.0,43,11,0.0,103.51725048194578,1520.3916503335236,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,5,,5,107156,2,1,4,0,1,,271.0,,43,3.0,1.0,9.0,5.0,3.0,2,2,1684.1363533068,1100.0,58644.846132059436,1,1,0,1,200.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02046215616795684,19548.282044019812,5,3,5,5_1,5_0,5_0_0 -22943,2,51.0,0.0,1,300,735.0,0.0,0.0,69,11,0.0,82.81380038555662,1015.898057268309,947.0,227.0831645531053,0.0,43,0,0,0,0,0,0,0,0,1,5.0,5,,1,104110,2,2,2,0,1,,278.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,1808.36785410081,735.0,81891.28778169256,5,1,0,1,140.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011564111710204529,54594.19185446171,10,5,10,10_1,10_0,10_1_0 -22944,2,36.0,0.0,9,300,1475.0,0.0,0.0,43,53,0.0,41.40690019277831,2038.7069856744977,1515.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,180.0,1,2009.0,6,131224,2,1,1,0,1,,380.0,,43,2.0,3.0,6.0,4.0,2.1,4,4,1718.62781606264,1475.0,43939.51865231365,1,1,1,2,190.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03447921248268447,20923.580310625548,5,3,5,5_1,5_0,5_0_0 -22945,2,56.0,0.0,1,112,1245.0,0.0,0.0,77,22,0.0,362.31037668681023,1720.8069133320334,1595.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,,1,117110,2,1,3,0,1,,231.0,,42,1.0,6.0,7.0,2.0,1.5,2,2,1841.44611377646,1245.0,88385.30758061442,5,1,0,1,120.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018045985737451142,58923.53838707628,10,5,10,10_1,10_0,10_1_0 -22946,2,42.0,0.0,1,112,840.0,0.0,0.0,52,64,2987.1697540360015,181.15518834340511,1161.0263511637818,3069.0,92.89765822627035,0.0,50,2,2,1,2,2,2,2,1,2,30.0,5,,1,129658,2,1,2,0,1,,613.0,,43,2.0,3.0,5.0,3.0,2.0,2,2,1810.36573570919,840.0,46167.2705645042,1,1,1,2,120.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06647566473985159,23083.6352822521,6,3,6,6_1,6_0,6_1_0 -22947,2,44.0,0.0,9,112,929.0,0.0,0.0,37,42,0.0,310.55175144583734,1284.0398574180394,1329.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,113455,2,2,1,0,1,,211.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,1692.285261143,929.0,62273.0,1,1,1,2,148.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021341512372938513,29653.809523809523,8,4,8,8_1,8_0,8_0_0 -22948,2,76.0,0.0,1,112,0.0,0.0,0.0,86,86,0.0,0.0,0.0,3923.0,619.317721508469,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131332,2,1,1,0,1,,172.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1633.85120408466,0.0,34288.53376467639,5,5,0,1,150.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11441142473235251,22859.02250978426,6,3,6,6_1,6_0,6_1_0 -22949,0,74.0,0.0,1,112,479.0,0.0,0.0,0,71,0.0,39.336555183139396,662.0614550088708,517.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104788,2,1,2,0,2,,401.0,,21,2.0,3.0,4.0,3.0,2.0,3,3,1818.05958973536,479.0,19438.447735285572,0,5,0,1,80.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026596773931774276,9719.223867642786,1,1,1_0,1_1_0,1_0_0,1_1_0 -22950,2,47.0,0.0,8,112,1200.0,0.0,0.0,21,46,0.0,0.0,1658.6090730911167,1929.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,112546,2,2,2,0,1,,379.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1571.54168571911,1200.0,55003.14928074845,4,1,1,2,125.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03507071913562531,26191.97584797545,7,4,7,7_1,7_0,7_0_0 -22951,1,44.0,450.0,1,112,560.0,0.0,0.0,0,52,522.7547069563002,0.0,774.0175674425211,1290.0,344.06540083803833,0.0,71,1,2,2,2,1,2,2,2,2,20.0,2,,1,106587,2,3,0,1,1,350.0,350.0,530.0,32,1.0,1.0,2.0,4.0,1.9,2,2,2395.14602082226,560.0,16731.156737888377,0,1,2,3,65.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.07710166249765285,8805.871967309673,1,1,1_1,1_0_1,1_0_1,1_1_0 -22952,2,41.0,0.0,7,112,810.0,0.0,0.0,46,64,2987.1697540360015,36.23103766868102,1119.5611243365038,2945.0,172.03270041901916,0.0,30,0,0,0,0,0,0,0,0,2,20.0,5,,5,128866,1,3,3,0,1,,460.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1641.975355408,810.0,47030.92974758995,1,1,1,2,159.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06261836658993358,20448.230325039112,5,3,5,5_1,5_0,5_0_0 -22953,2,83.0,0.0,1,112,0.0,0.0,0.0,86,86,0.0,993.7656046266794,0.0,1229.0,227.0831645531053,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123568,2,1,2,0,2,,190.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1664.65418206866,0.0,15079.203848909212,5,5,0,1,80.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08150297670317007,10052.802565939475,2,1,2_0,2_1_0,2_0_0,2_1_0 -22954,2,79.0,0.0,5,112,912.0,0.0,0.0,0,77,0.0,0.0,1260.5428955492487,3010.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,104921,2,2,5,0,1,,113.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1806.42126098884,912.0,37191.393182643085,0,5,0,1,125.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08093270357521165,37191.393182643085,9,5,9,9_1,9_0,9_0_0 -22955,0,58.0,0.0,1,112,0.0,0.0,0.0,53,53,0.0,0.0,0.0,505.0,103.2196202514115,0.0,50,1,2,2,1,2,2,2,2,0,,5,,1,129539,1,2,3,1,2,,0.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,1828.39553207713,0.0,52691.62106491232,1,1,5,0,70.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.00958406649470655,35127.74737660821,9,5,9,9_1,9_0,9_1_0 -22956,1,35.0,70.0,5,112,1800.0,0.0,0.0,54,47,2240.377315527001,0.0,2487.913609636675,3300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,35.0,1,,3,109809,2,2,1,0,1,,556.0,,43,2.0,0.0,5.0,4.0,2.1,4,4,1636.42304326879,1800.0,45981.36099985925,1,1,1,2,110.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07176821060190239,21895.886190409165,6,3,6,6_1,6_0,6_0_0 -22957,2,74.0,0.0,1,112,916.0,0.0,0.0,0,75,0.0,398.54141435549127,1266.0715924595524,1361.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,128485,2,1,2,0,1,,78.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1803.82037100048,916.0,19370.068867945574,0,5,1,2,90.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07026304394055312,19370.068867945574,5,3,5,5_1,5_0,5_1_0 -22958,2,28.0,0.0,1,112,0.0,0.0,0.0,85,64,0.0,0.0,0.0,1711.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,130718,1,1,2,0,2,,408.0,650.0,42,1.0,0.0,5.0,4.0,2.1,2,2,1997.11215513543,0.0,31184.632102548785,6,1,2,3,110.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054866768810145954,14849.824810737517,3,2,3_0,3_1_0,3_0_0,3_1_0 -22959,2,75.0,0.0,2,112,0.0,0.0,0.0,0,77,2688.452778632401,0.0,0.0,4767.0,56.77079113827632,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,121361,2,1,2,0,1,,150.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1847.45116747895,0.0,10170.017904031145,0,5,0,1,80.0,8,0,4,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4687307382330643,10170.017904031145,2,1,2_0,2_1_0,2_0_0,2_0_1 -22960,1,57.0,169.0,1,112,420.0,0.0,0.0,0,52,0.0,39.336555183139396,580.5131755818909,458.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,5,,1,127118,1,3,4,0,2,,0.0,542.0,22,2.0,3.0,4.0,2.0,1.5,3,3,2079.2403708775,420.0,22380.85722784683,0,1,2,3,86.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.020463916790021106,14920.571485231221,3,2,3_1,3_1_1,3_0_1,3_1_0 -22961,2,75.0,0.0,1,112,800.0,0.0,0.0,77,75,2091.018827825201,108.69311300604306,1105.7393820607444,2503.0,340.62474682965797,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,115839,2,1,2,0,1,,363.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1715.13534146166,800.0,24651.074916590474,5,5,0,1,110.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10153715440276605,16434.04994439365,4,2,4_0,4_1_0,4_0_0,4_1_0 -22962,2,50.0,0.0,7,112,361.0,0.0,0.0,52,46,0.0,621.1035028916747,498.96489615491095,1021.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,116373,2,1,2,0,1,,154.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1505.88235020124,361.0,46694.8419277414,1,1,1,2,89.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021865370089055255,31129.894618494265,8,4,8,8_1,8_0,8_0_0 -22963,2,49.0,0.0,6,112,988.0,0.0,0.0,0,46,0.0,72.46207533736204,1365.5881368450193,1058.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,128771,2,1,1,0,1,,764.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,1874.27839976672,988.0,38246.44101872256,0,1,0,1,130.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027662704602555918,19123.22050936128,5,3,5,5_1,5_0,5_0_0 -22964,2,48.0,0.0,9,112,1200.0,0.0,0.0,47,38,0.0,51.75862524097289,1658.6090730911167,1250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,27.0,1,2010.0,6,106210,1,1,1,0,1,,251.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1718.62781606264,1200.0,69351.91880353034,1,1,1,2,211.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01802401464249565,33024.72323977635,8,4,8,8_1,8_0,8_0_0 -22965,2,32.0,0.0,1,112,0.0,0.0,0.0,55,46,0.0,0.0,0.0,2857.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,1,118165,2,1,1,0,1,,441.0,480.0,43,2.0,0.0,4.0,3.0,1.8,1,1,2055.13757130024,0.0,35253.83874605956,1,1,2,3,80.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08104081999635675,19585.46597003309,5,3,5,5_1,5_0,5_1_0 -22966,2,44.0,0.0,9,112,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1069.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,110411,2,1,2,0,1,,248.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1896.04943323731,0.0,22898.85972879827,0,1,0,1,89.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04668354724473877,22898.85972879827,6,3,6,6_1,6_0,6_0_0 -22967,2,71.0,0.0,1,112,1192.0,0.0,0.0,0,75,0.0,362.31037668681023,1647.5516792705093,1642.0,172.03270041901916,0.0,10,2,2,2,2,1,2,2,1,0,,1,,1,114600,2,3,3,0,1,,191.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,2071.41187292223,1192.0,25040.445190655406,0,5,1,2,80.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.06557391402181466,25040.445190655406,7,4,7,7_1,7_0,7_1_0 -22968,2,63.0,0.0,6,112,0.0,0.0,0.0,77,77,0.0,0.0,0.0,1289.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,105718,2,1,2,0,1,,252.0,600.0,41,0.0,7.0,5.0,2.0,1.5,2,2,1789.80872071771,0.0,33471.318932244125,5,5,2,3,80.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038510582824934934,22314.212621496084,6,3,6,6_1,6_0,6_0_0 -22969,2,67.0,0.0,6,112,888.0,0.0,0.0,75,75,0.0,579.6966026988963,1227.3707140874262,1580.0,227.0831645531053,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,122348,2,1,3,0,1,,182.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1715.13534146166,888.0,46512.32357548355,5,5,0,1,80.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033969491922626965,31008.21571698903,8,4,8,8_1,8_0,8_0_0 -22970,2,38.0,0.0,7,112,600.0,0.0,0.0,0,64,0.0,310.55175144583734,829.3045365455583,930.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,131790,2,1,2,0,1,,273.0,612.0,32,1.0,0.0,5.0,2.0,1.3,2,2,1293.98406814514,600.0,23709.35616469523,0,1,2,3,98.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03922502127598177,18237.96628053479,4,2,4_0,4_1_0,4_0_0,4_0_0 -22971,2,36.0,0.0,8,112,833.0,0.0,0.0,52,21,2837.8112663342013,310.55175144583734,1151.35113157075,3125.0,158.27008438549763,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,111146,2,1,1,0,1,,301.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1121.51107528544,833.0,39840.990002820174,1,1,1,2,170.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07843680590715227,18971.90000134294,5,3,5,5_1,5_0,5_0_0 -22972,1,44.0,100.0,1,112,300.0,0.0,0.0,0,63,0.0,1200.800105590571,414.65226827277917,1550.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,103034,2,2,2,0,1,,200.0,,32,1.0,1.0,8.0,2.0,1.5,2,2,1199.22026052103,300.0,18707.63015620881,0,1,1,2,180.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08285389368174868,12471.753437472538,2,1,2_1,2_1_1,2_0_1,2_1_0 -22973,0,83.0,0.0,1,112,112.0,0.0,0.0,0,78,1493.5848770180007,0.0,154.80351348850422,1202.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,130840,2,1,0,0,1,,238.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1697.90351952198,112.0,13214.26702115117,0,5,0,1,60.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09096229083883663,13214.26702115117,2,1,2_0,2_0_0,2_0_0,2_1_0 -22974,2,79.0,0.0,9,112,1200.0,0.0,0.0,0,77,0.0,155.27587572291867,1658.6090730911167,1350.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,108497,2,1,1,0,1,,400.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1480.30363209211,1200.0,26811.40483700552,0,5,0,1,65.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050351706977200573,26811.40483700552,7,4,7,7_1,7_0,7_0_0 -22975,2,86.0,0.0,5,112,240.0,0.0,0.0,0,75,2165.698071676101,0.0,331.72181461822333,1750.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,127588,2,1,2,0,1,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1352.88352979432,240.0,21184.88304087317,0,5,0,1,100.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08260607323739423,21184.88304087317,5,3,5,5_1,5_0,5_0_0 -22976,2,47.0,0.0,1,112,450.0,0.0,0.0,0,21,2509.222593390241,0.0,621.9784024091688,2190.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106031,2,2,1,0,1,,300.0,,32,2.0,0.0,6.0,3.0,1.8,2,2,1297.62928317624,450.0,34454.74922873024,0,1,1,2,130.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06356162935511542,19141.527349294574,5,3,5,5_1,5_0,5_1_0 -22977,2,80.0,0.0,1,112,2000.0,0.0,0.0,0,78,0.0,62.110350289167464,2764.3484551518613,2110.0,86.01635020950958,0.0,44,2,2,2,1,2,2,2,2,0,,1,,1,123765,2,2,4,0,1,,223.0,320.0,11,0.0,4.0,3.0,1.0,1.0,2,2,1458.99887484342,2000.0,20834.264146551548,0,5,2,3,70.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.10127547510955617,20834.264146551548,5,3,5,5_1,5_0,5_1_0 -22978,2,71.0,0.0,1,112,1200.0,0.0,0.0,54,74,0.0,1552.7587572291866,1658.6090730911167,2820.0,206.439240502823,0.0,31,2,2,2,2,1,2,2,2,0,,1,,1,119721,2,3,4,0,1,,500.0,,42,1.0,3.0,10.0,2.0,1.5,2,2,1257.75469427095,1200.0,72530.65250092887,1,5,1,2,181.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03888011347979925,48353.76833395258,10,5,10,10_1,10_0,10_1_0 -22979,1,26.0,50.0,1,112,168.0,650.0,0.0,0,22,0.0,0.0,232.20527023275633,818.0,0.0,1178.8743855508417,71,0,0,0,0,0,0,0,0,1,5.0,2,,1,130501,2,1,0,0,1,,240.0,362.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1635.86349399293,168.0,10338.905070700252,0,1,2,3,87.0,6,0,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07911862952665616,10338.905070700252,2,1,2_1,2_0_1,2_0_1,2_1_0 -22980,2,58.0,0.0,2,112,700.0,0.0,0.0,0,67,2987.1697540360015,0.0,967.5219593031513,2850.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,112376,1,1,3,0,1,,230.0,,22,2.0,2.0,5.0,2.0,1.5,2,2,1179.23039130348,700.0,42063.22823573334,0,1,0,1,100.0,6,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0677551419503005,28042.15215715556,8,4,8,8_1,8_0,8_0_1 -22981,2,59.0,0.0,1,112,700.0,0.0,0.0,0,21,0.0,0.0,967.5219593031513,720.0,34.40654008380383,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,120725,2,2,4,0,2,,278.0,,12,1.0,0.0,5.0,1.0,1.0,3,2,1242.81795503227,700.0,11124.449876534909,0,1,0,1,130.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0647223015961189,11124.449876534909,2,1,2_0,2_1_0,2_0_0,2_1_0 -22982,2,43.0,0.0,1,112,1253.0,0.0,0.0,43,45,716.9207409686403,0.0,1731.864307152641,1733.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,103758,2,1,1,0,1,,343.0,,43,2.0,0.0,7.0,4.0,2.3,4,2,1199.87036367534,1253.0,49482.40577452258,1,1,0,1,140.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035022549386478787,21514.08946718373,6,3,6,6_1,6_0,6_1_0 -22983,2,61.0,0.0,5,112,1000.0,0.0,0.0,0,75,0.0,331.2552015422265,1382.1742275759307,1400.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,113916,2,1,2,0,1,,200.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1286.96819645139,1000.0,69774.35777829784,0,5,0,1,150.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020064677692174286,69774.35777829784,10,5,10,10_1,10_0,10_0_0 -22984,2,77.0,0.0,1,112,310.0,0.0,0.0,86,72,2770.5999468683913,0.0,428.47401054853844,2255.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,112435,1,1,0,0,2,,218.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1564.50414693952,310.0,21657.369532684548,7,5,0,1,165.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10412160149905705,14438.246355123032,3,2,3_0,3_0_0,3_0_0,3_1_0 -22985,2,51.0,0.0,6,112,834.0,0.0,0.0,52,46,448.0754631054002,414.0690019277831,1152.733305798326,1624.0,154.82943037711726,0.0,33,0,0,0,0,0,0,0,0,2,25.0,1,,4,118941,2,1,2,0,1,,420.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1074.47549918209,834.0,62411.86308697398,1,1,0,1,100.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026020694138498585,41607.90872464932,9,5,9,9_1,9_0,9_0_0 -22986,2,74.0,0.0,1,112,300.0,0.0,0.0,0,77,2987.1697540360015,0.0,414.65226827277917,2370.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107277,2,3,4,0,1,,240.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,1252.62432541399,300.0,20867.868322401227,0,5,0,1,70.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11357173446680482,20867.868322401227,5,3,5,5_1,5_0,5_1_0 -22987,1,28.0,389.0,7,112,1500.0,0.0,0.0,85,62,0.0,0.0,2073.261341363896,1650.0,258.04905062852873,0.0,31,2,2,1,2,1,2,1,2,2,25.0,1,,5,111961,2,3,3,0,2,,540.0,470.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,1,1,1460.70878415664,1500.0,28459.64688452913,6,1,2,3,118.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.057976826160023504,10540.609957233013,2,1,2_1,2_1_1,2_0_1,2_0_0 -22988,1,52.0,360.0,1,112,1254.4,0.0,0.0,0,56,2688.452778632401,629.3848829302303,1733.7993510712474,3764.0,175.33572826706433,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,132442,2,1,2,0,1,,1037.0,650.0,32,1.0,0.0,7.0,4.0,2.5,1,1,1364.21578742894,1254.4,25748.294667520455,0,1,2,3,150.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1461844385658676,10299.317867008182,2,1,2_1,2_1_1,2_0_1,2_1_0 -22989,2,72.0,0.0,1,112,500.0,0.0,0.0,86,78,1418.9056331671006,621.1035028916747,691.0871137879653,2150.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,119695,2,1,4,0,1,,300.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1370.21894869358,500.0,25766.276914768463,7,5,0,1,90.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08344240058864244,17177.517943178977,4,2,4_0,4_1_0,4_0_0,4_1_0 -22990,1,59.0,207.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,787.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,122375,2,1,0,0,1,,319.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1724.11946794402,0.0,9526.434322463765,0,7,2,3,40.0,6,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08261223175015422,9526.434322463765,1,1,1_1,1_0_1,1_0_1,1_1_0 -22991,2,71.0,0.0,2,112,421.0,0.0,0.0,72,72,2240.377315527001,0.0,581.8953498094668,2015.0,161.71073839387802,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115413,2,1,2,0,1,,641.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1102.52886710474,421.0,19331.088500660473,5,5,0,1,85.0,6,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10423624101307874,12887.392333773649,2,1,2_0,2_1_0,2_0_0,2_0_1 -22992,2,47.0,0.0,1,112,84.0,0.0,0.0,0,68,0.0,0.0,116.10263511637817,1584.0,2580.4905062852877,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,111367,2,2,4,0,1,,132.0,,12,1.0,0.0,5.0,1.0,1.0,3,3,1340.76033156468,84.0,3453.903716849799,0,4,0,1,140.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.45861151029557895,3453.903716849799,1,1,1_0,1_1_0,1_0_0,1_1_0 -22993,2,40.0,0.0,9,112,480.0,0.0,0.0,43,48,2240.377315527001,124.22070057833493,663.4436292364467,2100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,110146,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,3,1075.79943659554,480.0,45706.44442612313,1,1,1,2,137.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045945380927503575,17579.401702355055,4,2,4_0,4_1_0,4_0_0,4_0_0 -22994,2,59.0,0.0,6,112,902.5,0.0,0.0,56,62,0.0,207.03450096389156,1247.4122403872773,1188.0,147.0879588582614,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,106514,2,1,2,0,1,,304.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1257.44289288383,902.5,23347.61539576841,1,1,0,1,89.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050883140734591534,15565.076930512274,3,2,3_0,3_1_0,3_0_0,3_0_0 -22995,0,81.0,0.0,1,112,850.0,0.0,0.0,71,71,1344.2263893162005,517.5862524097289,1174.848093439541,2355.0,180.63433543997013,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,125224,2,2,4,0,1,,474.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1207.53798692006,850.0,22578.813793836525,5,5,0,1,180.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10430131633588557,15052.54252922435,3,2,3_0,3_1_0,3_0_0,3_1_0 -22996,2,44.0,0.0,1,112,200.0,0.0,0.0,0,62,0.0,51.75862524097289,276.4348455151861,310.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,112275,2,1,2,0,1,,200.0,500.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,3,3,1243.31764650478,200.0,27774.163964021718,0,1,2,3,90.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011161452074725629,10682.37075539297,2,1,2_0,2_1_0,2_0_0,2_1_0 -22997,2,51.0,0.0,5,112,1000.0,0.0,0.0,54,38,0.0,258.79312620486445,1382.1742275759307,1340.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,106726,2,2,2,0,1,,364.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1089.33629462056,1000.0,59887.24723108497,1,1,0,1,123.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02237538143687563,23954.898892433986,6,3,6,6_1,6_0,6_0_0 -22998,2,67.0,0.0,5,112,720.0,0.0,0.0,77,77,0.0,776.3793786145933,995.16544385467,1530.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104134,2,2,2,0,1,,410.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1074.47549918209,720.0,46374.54135340192,5,5,0,1,80.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032992240038353784,30916.360902267945,8,4,8,8_1,8_0,8_0_0 -22999,1,49.0,333.0,1,111,213.0,2297.0,0.0,0,68,0.0,0.0,294.4031104736732,2510.0,0.0,4165.96071324659,50,2,2,2,2,1,1,2,2,0,,2,,1,105193,2,1,0,0,1,,0.0,305.0,32,1.0,0.0,5.0,2.0,1.5,2,2,1187.15760059933,213.0,6589.7122102005615,0,4,2,3,84.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.3808967554174277,4393.141473467041,1,1,1_1,1_0_1,1_2_1,1_1_0 -23000,2,45.0,0.0,2,111,0.0,0.0,677.0,0,52,0.0,0.0,345.88832768500447,677.0,0.0,773.9773894398314,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,117833,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1293.5876335241,0.0,18805.180512241288,0,1,1,2,43.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03600071797020533,18805.180512241288,5,3,5,5_0,5_2,5_0_1 -23001,2,41.0,0.0,9,111,1800.0,0.0,0.0,55,21,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,107346,2,1,1,0,1,,0.0,,43,2.0,1.0,5.0,4.0,2.3,1,1,1009.86101560422,1800.0,21144.873949252742,1,1,1,2,120.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08512701491245409,9193.423456196844,1,1,1_0,1_1_0,1_2_0,1_0_0 -23002,1,32.0,255.0,5,111,0.0,0.0,400.0,0,67,0.0,0.0,204.36533393501003,400.0,0.0,457.2983098610526,31,2,2,2,2,1,2,2,2,0,,2,,3,132635,1,3,0,1,1,1129.0,0.0,333.0,12,1.0,2.0,4.0,1.0,1.0,2,2,1211.55649404267,0.0,5154.232367321762,0,4,2,3,77.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07760612473275971,5154.232367321762,1,1,1_1,1_0_1,1_2_1,1_0_0 -23003,2,67.0,0.0,5,111,600.0,0.0,0.0,0,74,0.0,0.0,829.3045365455583,875.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,129918,2,1,0,1,1,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1276.36582521591,600.0,37350.655911343034,0,5,0,1,100.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0234266300992661,37350.655911343034,9,5,9,9_0,9_2,9_0_0 -23004,2,75.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,501.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,101516,2,1,0,1,1,894.0,0.0,281.0,41,1.0,0.0,3.0,3.0,2.0,1,1,1278.3963165305,0.0,4514.86212970783,6,5,2,3,70.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11096684363923671,2257.431064853915,1,1,1_0,1_0_0,1_2_0,1_0_1 -23005,2,76.0,0.0,6,111,508.0,1090.0,0.0,75,75,0.0,0.0,702.1445076085727,1598.0,0.0,1976.8816619237193,42,2,2,2,2,1,2,2,2,0,,2,,4,104962,2,2,0,0,1,,0.0,444.0,41,0.0,1.0,5.0,2.0,1.5,2,2,1166.44259371599,508.0,38322.68376840518,5,5,2,3,82.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.041698540990948496,25548.455845603454,7,4,7,7_0,7_2,7_0_0 -23006,2,78.0,0.0,1,111,727.0,1083.0,0.0,86,54,0.0,0.0,1004.8406634477016,1810.0,0.0,1964.1860916177873,31,2,2,1,1,2,2,2,2,0,,1,,1,130356,2,1,1,0,1,,1300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,932.131869947068,727.0,26839.910110029763,5,5,0,1,90.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06743688755215406,17893.27340668651,4,2,4_0,4_1_0,4_2_0,4_1_0 -23007,2,63.0,0.0,2,111,290.0,430.0,0.0,0,77,0.0,0.0,400.8305259970199,782.0,106.66027425979189,779.870747364403,50,1,2,2,1,2,2,2,2,0,,8,,2,101704,1,3,0,0,1,,0.0,336.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1209.55008880199,290.0,20752.299737220765,0,5,2,3,62.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03768257060191868,20752.299737220765,5,3,5,5_0,5_2,5_0_1 -23008,2,46.0,0.0,1,111,1000.0,1110.0,0.0,0,67,0.0,0.0,1382.1742275759307,2110.0,0.0,2013.1547199406682,10,0,0,0,0,0,0,0,0,0,,2,,1,129677,1,1,0,0,1,,0.0,276.0,22,1.0,4.0,4.0,2.0,1.5,3,3,1075.58568565382,1000.0,28401.05874358602,0,1,2,3,85.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07429300502667048,18934.03916239068,5,3,5,5_0,5_2,5_1_0 -23009,2,32.0,0.0,5,111,300.0,600.0,0.0,63,62,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,129978,2,2,0,1,1,,300.0,476.0,43,2.0,0.0,3.0,2.0,1.5,2,2,349.82119212565,300.0,25797.938445540876,1,1,2,3,60.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03488650854407955,17198.625630360584,4,2,4_0,4_0_0,4_2_0,4_0_0 -23010,1,69.0,59.0,2,111,280.0,300.0,0.0,0,77,1045.5094139126004,0.0,387.00878372126056,1280.0,0.0,544.0958702542347,42,0,0,0,0,0,0,0,0,0,,2,,2,105477,2,1,0,1,1,700.0,160.0,269.0,11,0.0,3.0,3.0,1.0,1.0,2,2,395.786174205731,280.0,14229.009248629049,0,5,2,3,70.0,7,5,4,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08995707133462766,14229.009248629049,3,2,3_1,3_0_1,3_2_1,3_0_1 -23011,1,29.0,220.0,2,111,0.0,0.0,300.0,0,62,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,70,0,0,0,0,0,0,0,0,0,,2,,2,100319,2,2,0,0,1,600.0,300.0,160.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1288.15639836149,0.0,6850.92292283218,0,4,2,3,64.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.043789720506150376,6850.92292283218,1,1,1_1,1_0_1,1_2_1,1_0_1 -23012,2,67.0,0.0,2,111,550.0,1600.0,0.0,52,78,0.0,0.0,760.1958251667618,2150.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,2,109802,2,1,2,0,1,,380.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,860.463625773998,550.0,59823.09370508627,1,5,0,1,96.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03593929813457981,39882.06247005751,9,5,9,9_1,9_2,9_0_1 -23013,2,53.0,0.0,1,111,210.0,440.0,0.0,0,47,0.0,0.0,290.25658779094545,650.0,0.0,798.0072763728775,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,113745,1,3,0,0,2,,0.0,442.0,12,1.0,0.0,3.0,1.0,1.0,3,2,1531.37256778339,210.0,26025.7728872038,0,1,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02497524291851437,26025.7728872038,7,4,7,7_0,7_2,7_1_0 -23014,0,78.0,0.0,1,111,169.0,1049.0,0.0,0,77,0.0,0.0,233.58744446033228,1218.0,0.0,1902.5218929889738,41,0,0,0,0,0,0,0,0,0,,2,,1,126992,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1441.15463576883,169.0,25326.429394707913,0,5,5,0,61.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.048092053602096285,25326.429394707913,7,4,7,7_0,7_2,7_1_0 -23015,2,26.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,390.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,7.0,2,,2,127896,2,2,0,0,1,,0.0,540.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1448.68396116072,0.0,29410.226576639943,0,1,2,3,49.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013260693486454488,29410.226576639943,8,4,8,8_0,8_2,8_0_1 -23016,2,62.0,0.0,1,111,380.0,1220.0,0.0,75,78,0.0,0.0,525.2262064788536,1600.0,0.0,2212.656539033888,10,2,2,2,2,1,2,2,2,0,,1,,1,119089,1,3,2,0,1,,440.0,219.0,41,0.0,3.0,5.0,2.0,1.5,4,3,851.659808246863,380.0,27416.407671251647,5,5,2,3,87.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.05835921391254082,18277.605114167764,4,2,4_0,4_1_0,4_2_0,4_1_0 -23017,2,28.0,0.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,444.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,116283,2,2,0,0,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1607.07607745122,0.0,33237.0,0,1,3,4,35.0,7,5,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013358606372416284,33237.0,8,4,8,8_0,8_2,8_0_0 -23018,2,53.0,0.0,1,111,223.0,842.0,0.0,55,62,0.0,0.0,308.2248527494325,1065.0,0.0,1527.095742513552,60,0,0,0,0,0,0,0,0,2,25.0,2,,1,107157,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1235.87220448137,223.0,39330.04296173383,1,1,0,1,75.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027078536401198235,26220.028641155888,7,4,7,7_0,7_2,7_1_0 -23019,2,55.0,0.0,8,111,500.0,1300.0,0.0,77,46,0.0,0.0,691.0871137879653,1800.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,111315,2,1,0,0,1,,164.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1357.23479652773,500.0,64413.758218569914,5,1,1,2,103.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0279443406157456,42942.50547904661,9,5,9,9_0,9_2,9_0_0 -23020,1,59.0,225.0,1,111,200.0,700.0,0.0,0,63,0.0,0.0,276.4348455151861,900.0,0.0,1269.5570305932142,50,2,2,2,1,2,2,2,2,0,,2,,1,105764,1,3,0,0,1,,0.0,514.0,32,1.0,2.0,3.0,2.0,1.5,4,2,1609.54527439354,200.0,15008.401373877066,0,4,2,3,78.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.05996641331611098,10005.600915918045,2,1,2_1,2_0_1,2_2_1,2_1_0 -23021,2,63.0,0.0,1,111,360.0,1584.0,0.0,0,77,0.0,0.0,497.582721927335,1944.0,0.0,2872.826194942359,50,0,0,0,0,0,0,0,0,0,,2,,1,100831,2,1,0,0,1,,0.0,430.0,11,0.0,3.0,3.0,1.0,1.0,4,4,1441.15463576883,360.0,22341.538194994217,0,5,2,3,55.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0870128091912475,22341.538194994217,6,3,6,6_0,6_2,6_1_0 -23022,2,81.0,0.0,2,111,600.0,110.0,0.0,0,77,0.0,0.0,829.3045365455583,710.0,0.0,199.50181909321938,50,0,0,0,0,0,0,0,0,0,,2,,2,103834,2,2,0,1,1,700.0,200.0,450.0,21,0.0,2.0,5.0,2.0,1.5,1,1,1056.93097259714,600.0,39757.253937182184,0,5,2,3,100.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017858376263155,26504.835958121457,7,4,7,7_0,7_2,7_0_1 -23023,2,77.0,0.0,1,111,450.0,1000.0,0.0,75,78,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,2,,1,103180,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1207.06559541588,450.0,33054.0,5,5,0,1,75.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04386761057663218,22036.0,6,3,6,6_0,6_2,6_1_0 -23024,2,53.0,0.0,2,111,300.0,0.0,0.0,68,37,0.0,0.0,414.65226827277917,751.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,20.0,2,,2,115562,2,2,0,1,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,3,2,1235.09616794535,300.0,42328.74357238161,1,1,0,1,90.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017742081068761222,28219.16238158774,8,4,8,8_0,8_2,8_0_1 -23025,2,29.0,0.0,9,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,474.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,2006.0,6,114569,1,2,0,0,1,,50.0,420.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1410.31615409571,0.0,29900.382899714117,0,1,2,3,52.0,7,5,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.015852639800292726,29900.382899714117,8,4,8,8_0,8_2,8_0_0 -23027,1,39.0,300.0,2,111,315.0,850.0,0.0,85,62,0.0,0.0,435.3848816864181,1165.0,0.0,1541.6049657203316,42,0,0,0,0,0,0,0,0,0,,2,,2,116132,1,2,0,1,1,70.0,420.0,288.0,42,1.0,0.0,3.0,3.0,1.8,5,4,390.465366880299,315.0,7963.291167716878,6,4,2,3,60.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14629629577314732,4424.050648731599,1,1,1_1,1_0_1,1_2_1,1_0_1 -23028,2,55.0,0.0,5,120,840.0,0.0,0.0,56,62,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,31,2,1,2,1,1,2,2,2,2,25.0,2,,3,115892,2,3,0,1,1,768.0,0.0,303.0,43,2.0,1.0,3.0,2.0,1.5,3,2,655.466775070115,840.0,22862.17607305138,1,1,2,3,68.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03674190931414196,15241.450715367588,3,2,3_0,3_0_0,3_1_0,3_0_0 -23029,1,43.0,336.0,2,120,530.0,0.0,0.0,52,67,0.0,0.0,732.5523406152432,626.0,165.1513924022584,0.0,43,0,0,0,0,0,0,0,0,3,20.0,2,,2,115362,1,2,0,1,1,1128.0,0.0,403.0,43,2.0,1.0,5.0,4.0,2.1,3,2,666.612119386631,530.0,29255.896157650015,1,1,2,3,96.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021397396156545682,13931.379122690483,3,2,3_1,3_0_1,3_1_1,3_0_1 -23030,2,76.0,0.0,5,120,216.0,767.0,0.0,0,78,0.0,0.0,298.549633156401,1047.0,110.10092826817227,1391.0717749499934,31,2,1,2,2,1,2,2,2,0,,2,,3,130059,2,3,0,1,1,,0.0,286.0,11,0.0,2.0,3.0,1.0,1.0,1,1,734.979904007027,216.0,18041.08266763801,0,5,2,3,62.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.058034211099653274,18041.08266763801,4,2,4_0,4_0_0,4_1_0,4_0_0 -23031,1,43.0,254.0,2,120,480.0,0.0,0.0,0,52,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,117478,1,3,0,1,1,767.0,0.0,287.0,12,1.0,0.0,3.0,1.0,1.0,1,1,650.144298424817,480.0,6060.0,0,4,2,3,62.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.07920792079207921,6060.0,1,1,1_1,1_0_1,1_1_1,1_0_1 -23032,1,46.0,255.0,2,120,180.0,0.0,0.0,0,55,0.0,0.0,248.7913609636675,246.0,113.54158227655265,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,129828,2,3,0,1,1,768.0,0.0,286.0,12,1.0,2.0,3.0,1.0,1.0,3,2,690.739288574749,180.0,15745.70282985425,0,1,2,3,58.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015623310223636241,15745.70282985425,3,2,3_1,3_0_1,3_1_1,3_0_1 -23033,2,66.0,0.0,6,120,360.0,0.0,0.0,0,75,0.0,776.3793786145933,497.582721927335,1210.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,123857,2,2,2,0,1,,160.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,576.077939289763,360.0,29872.91796314431,0,5,1,2,86.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04050491490295111,29872.91796314431,8,4,8,8_1,8_1,8_0_0 -23034,2,40.0,0.0,7,120,1500.0,0.0,0.0,46,38,0.0,0.0,2073.261341363896,1530.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,125425,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,535.879865138288,1500.0,66146.47312670226,1,1,1,2,90.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023130484932572526,31498.320536524883,8,4,8,8_1,8_1,8_0_0 -23035,2,47.0,0.0,9,120,1600.0,0.0,0.0,43,62,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,16.0,1,2008.0,6,106786,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,601.632830679089,1600.0,51610.2347130662,1,1,1,2,151.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03100160285833629,21504.264463777585,6,3,6,6_1,6_1,6_0_0 -23036,2,28.0,0.0,9,120,0.0,0.0,0.0,53,47,0.0,0.0,0.0,2160.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,109092,2,2,1,0,1,,484.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,599.497740033215,0.0,57975.44405460759,1,1,1,2,140.0,0,2,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0372571531830869,32208.58003033755,8,4,8,8_1,8_1,8_0_0 -23037,2,42.0,0.0,9,120,600.0,1400.0,0.0,46,38,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123103,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,597.996229050317,600.0,92064.42625856462,1,1,1,2,116.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021723917492115396,51146.90347698034,10,5,10,10_1,10_1,10_0_0 -23038,2,69.0,0.0,5,120,449.0,0.0,0.0,77,78,2643.6452323218614,139.7482881506268,620.5962281815928,2490.0,233.96447256986607,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,122418,2,1,2,0,1,,260.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,527.504823949994,449.0,20468.525572048944,6,5,0,1,82.0,0,2,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12165018878547125,13645.683714699297,3,2,3_0,3_1_0,3_1_0,3_0_0 -23039,1,56.0,351.0,2,120,202.0,0.0,0.0,0,52,0.0,0.0,279.199193970338,270.0,116.98223628493304,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,118017,2,1,0,1,1,926.0,0.0,333.0,32,1.0,2.0,4.0,2.0,1.5,1,1,712.737054036279,202.0,10121.053333333333,0,4,2,3,75.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026677065232999463,6747.368888888889,1,1,1_1,1_0_1,1_1_1,1_0_1 -23040,2,65.0,0.0,1,120,2328.0,0.0,0.0,21,77,1403.9697843969207,0.0,3217.701601796766,3268.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,130378,2,2,1,0,1,,295.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,544.461703021895,2328.0,25461.921519329066,7,5,0,1,100.0,0,2,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12834852222441825,16974.614346219376,4,2,4_0,4_1_0,4_1_0,4_1_0 -23041,1,37.0,300.0,7,120,420.0,980.0,0.0,0,63,0.0,0.0,580.5131755818909,1464.0,110.10092826817227,1777.3798428305,42,0,0,0,0,0,0,0,0,1,5.0,2,,5,116046,2,1,0,0,1,,380.0,540.0,32,1.0,0.0,3.0,3.0,1.6,3,2,916.198895967364,420.0,23501.54734757008,0,1,2,3,90.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0622937706334204,14688.467092231298,3,2,3_1,3_0_1,3_1_1,3_0_0 -23042,2,54.0,0.0,9,120,0.0,0.0,1440.0,0,42,0.0,0.0,735.7152021660361,1440.0,0.0,1646.2739154997894,50,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,118450,2,1,0,0,1,,220.0,600.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1008.26461959931,0.0,25338.8481240016,0,1,2,3,100.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05682973404919679,25338.8481240016,7,4,7,7_0,7_1,7_0_0 -23043,2,57.0,0.0,7,120,0.0,0.0,0.0,64,47,0.0,258.79312620486445,0.0,1102.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,120896,2,1,1,0,1,,220.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,574.011391740871,0.0,78244.87879348929,1,1,0,1,180.0,0,2,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014083988843646809,31297.951517395715,8,4,8,8_1,8_1,8_0_0 -23044,2,32.0,0.0,2,120,802.0,0.0,0.0,46,56,2240.377315527001,0.0,1108.5037305158962,2302.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,133426,2,1,2,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,671.831242469559,802.0,49624.97669920044,1,1,1,2,96.0,0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046387931100773494,27569.431499555798,7,4,7,7_1,7_1,7_0_1 -23045,2,49.0,0.0,1,120,500.0,1900.0,0.0,38,42,0.0,0.0,691.0871137879653,2400.0,0.0,3445.940511610153,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,116118,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.5,5,4,578.209367559195,500.0,132217.25840919296,1,1,0,1,150.0,0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018151941954297323,52886.903363677186,10,5,10,10_1,10_1,10_1_0 -23046,2,57.0,0.0,6,120,1000.0,0.0,0.0,21,75,0.0,465.827627168756,1382.1742275759307,1520.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,121310,2,1,2,0,1,,290.0,,42,1.0,2.0,7.0,2.0,1.5,3,2,608.471708134904,1000.0,135544.64269860587,1,6,0,1,140.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011214017535018621,90363.0951324039,10,5,10,10_1,10_1,10_0_0 -23047,2,46.0,0.0,7,120,600.0,1200.0,0.0,56,81,0.0,51.75862524097289,829.3045365455583,1850.0,0.0,2176.3834810169387,42,1,2,2,1,1,2,2,2,0,,1,,5,102684,2,1,3,0,1,,0.0,350.0,43,2.0,7.0,4.0,3.0,2.0,1,1,608.868689268666,600.0,13208.634788261954,4,4,2,3,110.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.14005989488361276,6604.317394130977,1,1,1_0,1_1_0,1_1_0,1_0_0 -23048,2,45.0,0.0,7,120,458.0,930.0,0.0,64,64,0.0,0.0,633.0357962297762,1388.0,0.0,1686.6971977881274,70,1,2,1,1,1,2,2,2,2,25.0,1,,5,120826,1,3,4,0,1,,0.0,545.0,43,2.0,0.0,5.0,4.0,2.1,1,1,518.843295266219,458.0,38785.66919013967,1,1,2,3,90.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0357864136156987,18469.36628101889,4,2,4_0,4_1_0,4_1_0,4_0_0 -23049,2,51.0,0.0,1,120,233.0,767.0,0.0,0,52,0.0,0.0,322.04659502519183,1000.0,0.0,1391.0717749499934,31,0,0,0,0,0,0,0,0,1,2.0,2,,1,113696,2,1,0,0,1,,0.0,543.0,12,1.0,1.0,3.0,1.0,1.0,4,2,909.193349666656,233.0,20136.60969334565,0,1,2,3,70.0,0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04966079271678292,20136.60969334565,5,3,5,5_0,5_1,5_1_0 -23050,2,61.0,0.0,1,120,0.0,0.0,0.0,77,77,0.0,310.55175144583734,0.0,1417.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129420,2,1,4,0,1,,116.0,420.0,41,0.0,2.0,5.0,2.0,1.5,2,2,657.803609120704,0.0,46516.91723167524,5,5,2,3,90.0,0,2,4,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0304620358426312,31011.27815445016,8,4,8,8_1,8_1,8_1_0 -23051,1,53.0,247.0,2,120,387.0,0.0,0.0,0,85,0.0,0.0,534.9014260718851,489.0,175.47335442739956,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118304,2,2,0,0,1,,162.0,400.0,11,0.0,0.0,2.0,1.0,1.0,2,2,872.947752752788,387.0,7041.902025569951,0,7,2,3,50.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06944146598807895,7041.902025569951,1,1,1_1,1_0_1,1_1_1,1_0_1 -23052,2,25.0,0.0,1,120,0.0,0.0,0.0,0,53,0.0,0.0,0.0,433.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,1,104410,2,1,0,0,1,,219.0,572.0,12,1.0,1.0,5.0,1.0,1.0,1,1,881.326733137887,0.0,15692.129547187054,0,1,2,3,78.0,0,2,4,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027593450506379416,15692.129547187054,3,2,3_0,3_0_0,3_1_0,3_1_0 -23053,2,43.0,0.0,2,120,0.0,0.0,0.0,0,47,0.0,517.5862524097289,0.0,590.0,154.82943037711726,0.0,71,2,2,2,2,1,2,2,2,2,45.0,1,,2,112208,2,3,4,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,557.550181338375,0.0,28699.085989970146,0,1,1,2,48.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.020558146005283762,28699.085989970146,8,4,8,8_1,8_1,8_0_1 -23054,2,43.0,0.0,8,120,350.0,739.0,0.0,0,46,0.0,0.0,483.76097965157567,1089.0,0.0,1340.2894937262647,71,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,128015,2,1,0,0,1,,0.0,,32,2.0,1.0,3.0,2.0,1.5,5,2,665.693397455798,350.0,40476.652249838975,0,1,1,2,56.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02690439894283333,26984.434833225983,7,4,7,7_0,7_1,7_0_0 -23055,2,78.0,0.0,2,120,337.0,0.0,0.0,0,86,2663.061835723095,0.0,465.7927146930886,2240.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,116514,2,1,2,0,1,,130.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,593.249007881847,337.0,12803.886877171299,0,6,0,1,90.0,0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1749468752331614,12803.886877171299,2,1,2_0,2_1_0,2_1_0,2_0_1 -23056,2,43.0,0.0,2,120,220.0,0.0,0.0,63,45,3733.962192545002,0.0,304.0783300667047,2720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,100818,2,3,3,0,1,,320.0,650.0,43,2.0,0.0,4.0,2.0,1.5,2,2,615.096951786756,220.0,48456.926989541964,1,1,2,3,107.0,0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056132325530816964,32304.617993027976,8,4,8,8_1,8_1,8_0_1 -23057,2,50.0,0.0,7,120,250.0,890.0,0.0,55,64,0.0,0.0,345.54355689398267,1140.0,0.0,1614.1510817542296,42,0,0,0,0,0,0,0,0,2,10.0,2,,5,111542,2,2,0,0,1,,0.0,617.0,43,2.0,1.0,3.0,2.0,1.5,3,3,801.206291850134,250.0,49344.273112100964,1,1,2,3,70.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023102984968694,32896.18207473397,8,4,8,8_0,8_1,8_0_0 -23058,0,76.0,0.0,1,120,1176.0,0.0,0.0,0,78,0.0,0.0,1625.4368916292942,1326.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,133402,2,1,0,0,1,,92.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1095.36576421303,1176.0,15650.172676355734,0,5,0,1,40.0,0,2,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08472749965266003,15650.172676355734,3,2,3_0,3_0_0,3_1_0,3_1_0 -23059,2,36.0,0.0,2,120,0.0,0.0,0.0,21,46,0.0,0.0,0.0,7225.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,124499,1,2,2,0,1,,737.0,,43,2.0,1.0,8.0,5.0,2.5999999999999996,3,3,579.124095153563,0.0,74751.12190568795,1,1,1,2,120.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09665406773580794,28750.431502187676,8,4,8,8_1,8_1,8_0_1 -23060,1,23.0,130.0,2,120,0.0,0.0,0.0,84,63,0.0,0.0,0.0,587.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,107086,2,2,0,1,1,405.0,0.0,400.0,42,1.0,0.0,2.0,2.0,1.5,1,1,867.72522095243,0.0,17362.654275816538,3,1,2,3,65.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033808194915082725,11575.10285054436,2,1,2_1,2_0_1,2_1_1,2_0_1 -23061,2,49.0,0.0,2,120,672.0,0.0,0.0,85,64,716.9207409686403,1325.020806168906,928.8210809310253,2562.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115477,2,1,1,0,1,,576.0,,42,1.0,1.0,5.0,5.0,2.6,2,2,575.07143817875,672.0,52397.657809114105,6,1,1,2,120.0,0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048895315308432795,20152.94531119773,5,3,5,5_1,5_1,5_0_1 -23062,2,85.0,0.0,1,120,772.0,0.0,0.0,71,71,4480.754631054002,0.0,1067.0385036886184,3892.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123097,2,1,2,0,1,,362.0,,41,0.0,4.0,9.0,2.0,1.5,1,1,553.63292600228,772.0,21959.92860088124,5,5,0,1,200.0,0,2,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17723190592904822,14639.952400587494,3,2,3_0,3_1_0,3_1_0,3_1_0 -23063,2,29.0,0.0,8,120,0.0,0.0,0.0,62,62,0.0,0.0,0.0,245.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,2001.0,6,118743,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,5.0,4.0,2.1,1,1,819.376481279111,0.0,75428.98286357358,1,1,2,3,100.0,0,2,4,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0032480883434836327,35918.563268368365,9,5,9,9_0,9_1,9_0_0 -23064,2,73.0,0.0,2,111,441.0,1100.0,0.0,90,75,0.0,0.0,609.5388343609853,1541.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,1,,2,125019,2,1,1,0,2,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1085.28448893662,441.0,58921.808627112405,5,5,0,1,90.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02615330445391184,39281.20575140827,9,5,9,9_1,9_3,9_0_1 -23065,2,75.0,0.0,2,111,300.0,62.0,0.0,0,77,0.0,0.0,414.65226827277917,362.0,0.0,112.44647985254183,71,0,0,0,0,0,0,0,0,0,,2,,2,117135,2,1,0,1,1,,127.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,331.201462812347,300.0,17741.25642981565,0,5,0,1,80.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02040441732140397,17741.25642981565,4,2,4_0,4_0_0,4_2_0,4_0_1 -23066,2,28.0,0.0,9,111,589.0,0.0,0.0,43,38,0.0,289.84830134944815,814.1006200422231,869.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,130377,2,1,1,0,1,,110.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1454.47720042269,589.0,54850.2122836346,1,1,1,2,104.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015843147434076194,36566.80818908974,9,5,9,9_1,9_3,9_0_0 -23067,2,42.0,0.0,5,111,278.0,920.0,0.0,0,45,0.0,0.0,384.24443526610867,1198.0,0.0,1668.560668779653,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,111070,2,3,1,0,1,,180.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,250.299137315661,278.0,27625.797674274778,0,1,2,3,56.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04336526366134872,27625.797674274778,7,4,7,7_1,7_2,7_0_0 -23068,2,47.0,0.0,9,111,0.0,0.0,0.0,31,33,0.0,0.0,0.0,3089.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,2012.0,6,103732,2,1,1,0,1,,208.0,,43,2.0,0.0,8.0,5.0,2.4,1,1,1072.23340203007,0.0,51498.63109631683,4,1,1,2,160.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05998217688976445,21457.76295679868,6,3,6,6_1,6_3,6_0_0 -23069,1,59.0,150.0,9,111,622.0,0.0,0.0,0,56,0.0,0.0,859.7123695522288,622.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,108667,2,1,0,0,1,,200.0,528.0,12,1.0,4.0,3.0,1.0,1.0,2,2,1641.89371720753,622.0,15144.801512560936,0,1,2,3,63.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.041070198211849776,15144.801512560936,3,2,3_1,3_0_1,3_3_1,3_0_0 -23070,2,44.0,0.0,9,211,1900.0,0.0,0.0,42,34,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,131024,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,5.0,3.0,2,2,1474.91125682985,1900.0,51892.814641939374,1,1,1,2,180.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03661393225844479,17297.604880646457,4,2,4_0,4_1_0,4_1_0,4_0_0 -23071,2,45.0,0.0,1,111,605.0,0.0,0.0,52,62,0.0,72.46207533736204,836.215407683438,795.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,102899,2,1,1,0,1,,467.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1120.17871300305,605.0,38508.406447889625,1,1,1,2,95.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020644842862449022,16742.785412125926,4,2,4_0,4_1_0,4_3_0,4_1_0 -23072,2,30.0,0.0,9,211,800.0,0.0,0.0,85,21,0.0,0.0,1105.7393820607444,900.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,126361,2,1,1,0,1,,600.0,866.0,42,1.0,0.0,4.0,3.0,1.8,2,1,1659.75732182279,800.0,22082.44425112131,6,1,2,3,101.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040756357845409236,12268.024583956283,2,1,2_0,2_1_0,2_2_0,2_0_0 -23073,2,70.0,0.0,9,111,1300.0,0.0,0.0,77,74,0.0,155.27587572291867,1796.8264958487098,1490.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,101328,2,1,1,0,1,,318.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,934.022383495364,1300.0,66452.5214446917,5,5,0,1,170.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022422023538115468,44301.680963127794,10,5,10,10_1,10_2,10_0_0 -23074,2,56.0,0.0,2,111,16.0,20.0,0.0,0,75,0.0,0.0,22.11478764121489,36.0,0.0,36.27305801694898,50,0,0,0,0,0,0,0,0,0,,1,,2,106590,2,1,1,0,1,,260.0,465.0,11,0.0,1.0,6.0,1.0,1.0,2,2,1041.17758136344,16.0,34350.42764534101,0,5,2,3,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0010480218869962953,34350.42764534101,9,5,9,9_1,9_3,9_0_1 -23075,1,51.0,131.0,5,111,400.0,120.0,0.0,56,62,0.0,0.0,552.8696910303722,520.0,0.0,217.63834810169388,31,0,0,0,0,0,0,0,0,2,10.0,2,,3,101090,2,1,0,1,1,363.0,500.0,460.0,43,2.0,0.0,3.0,4.0,2.5,1,1,272.16794251608,400.0,23343.39987780715,4,1,2,3,79.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.022276103854707567,9337.35995112286,1,1,1_1,1_0_1,1_2_1,1_0_0 -23076,2,52.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,655.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,2011.0,6,114491,2,1,0,0,1,,66.0,590.0,12,1.0,3.0,3.0,1.0,1.0,2,2,391.782482016448,0.0,31147.767500490223,0,1,2,3,52.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021028794438949474,31147.767500490223,8,4,8,8_0,8_2,8_0_0 -23077,2,81.0,0.0,6,111,1700.0,100.0,0.0,75,78,0.0,0.0,2349.696186879082,1800.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,1,,4,123926,2,1,1,0,1,,170.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,1034.78225794478,1700.0,25544.533065752625,5,5,0,1,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07046517528297463,17029.68871050175,4,2,4_0,4_1_0,4_3_0,4_0_0 -23078,2,28.0,0.0,9,112,917.0,0.0,0.0,55,38,0.0,0.0,1267.4537666871283,917.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,120107,2,1,1,0,1,,332.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1229.25543232347,917.0,33562.40240372136,1,1,1,2,150.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027322239599222614,18645.779113178534,4,2,4_0,4_1_0,4_1_0,4_0_0 -23079,1,29.0,153.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,472.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,3.0,2,,2,128862,2,2,0,1,1,504.0,0.0,490.0,32,1.0,0.0,4.0,2.0,1.3,1,1,335.511850950723,0.0,17334.78716780199,0,1,2,3,80.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02722848543976952,13334.451667539992,3,2,3_1,3_0_1,3_2_1,3_0_1 -23080,2,53.0,0.0,9,112,0.0,0.0,0.0,46,47,0.0,0.0,0.0,3285.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,120726,2,1,1,0,1,,403.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,965.73775774285,0.0,59932.4484454371,1,1,1,2,118.0,9,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054811710270617195,39954.9656302914,9,5,9,9_1,9_1,9_0_0 -23081,2,42.0,0.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,492.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,120.0,1,,4,121728,2,2,1,0,1,,424.0,387.0,32,1.0,0.0,3.0,4.0,1.9,4,3,1130.63464369162,0.0,46572.78700033427,0,1,2,3,83.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010564109036387897,24511.99315807067,7,4,7,7_1,7_3,7_0_0 -23082,1,39.0,244.0,2,111,381.0,260.0,0.0,0,63,0.0,0.0,526.6083807064296,641.0,0.0,471.5497542203367,43,0,0,0,0,0,0,0,0,0,,2,,2,124433,2,2,0,1,1,848.0,274.0,263.0,32,1.0,0.0,3.0,2.0,1.5,1,1,279.699935581274,381.0,11213.083926305191,0,4,2,3,67.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05716536184093425,7475.389284203461,1,1,1_1,1_0_1,1_2_1,1_0_1 -23083,2,42.0,0.0,9,111,496.0,0.0,0.0,52,34,0.0,0.0,685.5584168776616,496.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,108879,2,1,1,0,1,,437.0,,43,2.0,0.0,4.0,4.0,2.1,3,1,1125.99136149122,496.0,59807.71284605535,1,1,1,2,125.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008293244740468518,28479.863260026355,8,4,8,8_1,8_3,8_0_0 -23084,1,43.0,540.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,1664.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,110718,1,3,4,0,2,,255.0,1355.0,42,3.0,0.0,11.0,10.0,4.499999999999999,4,3,1295.72138143596,0.0,38089.74743970182,7,1,2,3,300.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04368629649314961,8464.38831993374,1,1,1_1,1_1_1,1_3_1,1_0_1 -23085,2,62.0,0.0,2,111,430.0,200.0,0.0,0,77,0.0,0.0,594.3349178576501,630.0,0.0,362.73058016948977,71,2,1,2,2,1,2,2,2,0,,2,,2,115130,2,2,0,1,2,,0.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,315.854993805718,430.0,28753.75956564604,0,5,0,1,54.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.02191017833899889,28753.75956564604,8,4,8,8_0,8_3,8_0_1 -23087,2,70.0,0.0,5,111,1490.0,0.0,0.0,77,75,0.0,0.0,2059.4395990881367,1610.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,129764,2,1,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1085.28448893662,1490.0,31092.880769630792,5,5,0,1,110.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05178034199946272,20728.58717975386,5,3,5,5_1,5_3,5_0_0 -23088,1,33.0,223.0,2,111,250.0,330.0,0.0,0,52,0.0,0.0,345.54355689398267,580.0,0.0,598.5054572796581,41,2,2,2,2,1,2,2,2,3,22.0,2,,2,131138,2,3,0,1,1,,225.0,291.0,12,1.0,2.0,3.0,1.0,1.0,3,2,305.566330591947,250.0,5192.4376340192075,0,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.1117009082978722,5192.4376340192075,1,1,1_1,1_0_1,1_3_1,1_0_1 -23089,2,42.0,0.0,9,111,590.0,990.0,0.0,34,90,0.0,0.0,815.482794269799,1580.0,0.0,1795.5163718389745,50,0,0,0,0,0,0,0,0,3,2.0,1,2012.0,6,122997,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1393.67713619511,590.0,61582.2827764714,1,1,1,2,122.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02565672996785476,29324.896560224475,8,4,8,8_1,8_3,8_0_0 -23090,2,47.0,0.0,9,111,740.0,740.0,0.0,62,52,0.0,0.0,1022.8089284061887,1480.0,0.0,1342.1031466271122,70,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,125319,2,2,1,0,1,,400.0,580.0,43,4.0,0.0,5.0,5.0,3.0,3,3,958.880956990073,740.0,46828.932872114325,1,1,2,3,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03160439303713687,15609.644290704775,3,2,3_0,3_1_0,3_3_0,3_0_0 -23091,2,36.0,0.0,2,111,310.0,475.0,0.0,54,64,0.0,0.0,428.47401054853844,785.0,0.0,861.4851279025382,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,112487,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,300.584973383389,310.0,43490.62979803096,1,1,1,2,76.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018049865077730855,20709.823713348076,5,3,5,5_0,5_3,5_0_1 -23092,2,27.0,0.0,9,111,950.0,0.0,0.0,47,38,0.0,0.0,1313.065516197134,950.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,125963,2,2,1,0,1,,190.0,810.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1177.88685793203,950.0,62365.92673350821,1,1,2,3,80.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015232676715594771,41577.28448900548,9,5,9,9_1,9_3,9_0_0 -23093,2,35.0,0.0,9,112,330.0,720.0,0.0,53,53,0.0,0.0,456.1174951000571,1050.0,0.0,1305.830088610163,70,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,112528,2,1,1,0,1,,474.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,2228.30425501966,330.0,48447.034139036536,1,1,1,2,150.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02167315334488051,23070.016256684063,6,3,6,6_1,6_1,6_0_0 -23094,2,51.0,0.0,6,111,1500.0,0.0,0.0,65,45,0.0,65.21586780362584,2073.261341363896,1643.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,122425,2,2,3,0,1,,240.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,1061.46333496282,1500.0,49617.002839684596,1,1,1,2,85.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03311364866815168,33078.001893123066,8,4,8,8_1,8_3,8_0_0 -23095,2,78.0,0.0,2,111,240.0,74.0,0.0,0,77,0.0,0.0,331.72181461822333,314.0,0.0,134.21031466271123,43,2,1,2,1,1,2,2,2,0,,2,,2,116875,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,307.994105646785,240.0,22137.42087021634,0,5,0,1,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.014184127493481195,22137.42087021634,6,3,6,6_0,6_3,6_0_1 -23096,2,45.0,0.0,1,111,408.0,995.0,0.0,21,21,0.0,0.0,563.9270848509797,1403.0,0.0,1804.5846363432117,50,0,0,0,0,0,0,0,0,0,,1,,1,109238,2,2,1,0,1,,445.0,,43,3.0,0.0,6.0,4.0,2.5,3,3,1064.15338206256,408.0,54899.35750850085,1,1,0,1,123.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02555585463423235,21959.74300340034,6,3,6,6_1,6_3,6_1_0 -23097,2,80.0,0.0,5,111,480.0,1500.0,0.0,75,75,0.0,41.40690019277831,663.4436292364467,2020.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,1,,3,104593,2,1,1,0,1,,171.0,,41,0.0,2.0,10.0,2.0,1.5,2,2,1148.23595850693,480.0,64823.84502459291,5,5,0,1,162.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03116137278240208,43215.89668306194,9,5,9,9_1,9_3,9_0_0 -23098,1,75.0,34.0,2,111,150.0,155.0,0.0,0,77,0.0,0.0,207.32613413638958,305.0,0.0,281.11619963135456,71,0,0,0,0,0,0,0,0,0,,2,,2,130845,2,2,0,1,1,490.0,120.0,326.0,11,0.0,1.0,3.0,1.0,1.0,3,3,347.283885129709,150.0,14131.021846408148,0,5,2,3,63.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.021583718666284953,14131.021846408148,3,2,3_1,3_0_1,3_3_1,3_0_1 -23099,1,46.0,190.0,9,111,0.0,0.0,0.0,34,43,0.0,0.0,0.0,1340.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,116815,2,1,1,0,1,,656.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,505.628562043117,0.0,48725.33064698445,1,1,1,2,107.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.027501096087132065,23202.538403325925,6,3,6,6_1,6_3,6_0_0 -23100,2,80.0,0.0,1,111,345.0,1828.0,0.0,77,74,0.0,0.0,476.85010851369606,2173.0,0.0,3315.3575027491365,50,0,0,0,0,0,0,0,0,0,,1,,1,129865,2,1,2,0,2,,421.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1149.81409961407,345.0,88176.15267608977,5,5,0,1,130.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024643851359475794,58784.10178405984,10,5,10,10_1,10_3,10_1_0 -23101,2,49.0,0.0,1,111,725.0,634.0,0.0,47,85,0.0,0.0,1002.0763149925497,1359.0,0.0,1149.8559391372826,71,0,0,0,0,0,0,0,0,0,,1,,1,108270,2,2,1,0,1,,410.0,,42,1.0,2.0,5.0,3.0,2.0,1,1,1145.91699531558,725.0,39381.88313024597,1,6,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03450825333835457,19690.941565122987,5,3,5,5_1,5_3,5_1_0 -23102,2,50.0,0.0,2,111,1300.0,0.0,0.0,62,52,0.0,0.0,1796.8264958487098,1470.0,292.4555907123326,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,128737,1,3,0,1,2,65.0,800.0,450.0,43,2.0,4.0,5.0,7.0,3.3999999999999995,1,1,250.415218397176,1300.0,45306.782197229324,1,1,2,3,100.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03244547347460699,13325.524175655686,3,2,3_0,3_0_0,3_3_0,3_0_1 -23103,2,44.0,0.0,2,111,937.0,0.0,0.0,0,34,0.0,0.0,1295.097251238647,937.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,108902,1,2,1,0,2,,192.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,1071.69400034936,937.0,34045.16155847072,0,1,1,2,85.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027522266222492535,26188.585814208243,7,4,7,7_1,7_3,7_0_1 -23104,2,63.0,0.0,6,111,285.0,672.0,0.0,0,75,0.0,0.0,393.9196548591402,957.0,0.0,1218.7747493694856,71,0,0,0,0,0,0,0,0,0,,1,,4,117169,2,1,1,0,1,,227.0,475.0,11,0.0,3.0,5.0,1.0,1.0,2,2,203.352559746055,285.0,16835.991958423765,0,5,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056842507549498565,16835.991958423765,4,2,4_0,4_1_0,4_3_0,4_0_0 -23105,2,89.0,0.0,9,211,1200.0,0.0,0.0,72,72,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,113268,2,1,1,0,1,,407.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1337.09517216009,1200.0,45695.40421152034,5,5,0,1,90.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02626084659291549,30463.60280768023,8,4,8,8_1,8_1,8_0_0 -23106,2,37.0,0.0,5,111,500.0,1000.0,0.0,64,64,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,60,2,2,2,2,2,2,2,1,0,,1,,3,100812,2,3,3,0,1,,450.0,447.0,43,2.0,0.0,3.0,5.0,2.4,1,1,1013.76907984795,500.0,58372.43236896073,1,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.02569706176571148,24321.846820400307,7,4,7,7_1,7_3,7_0_0 -23107,1,48.0,201.0,2,111,380.0,378.0,0.0,62,55,0.0,0.0,525.2262064788536,758.0,0.0,685.5607965203357,70,2,2,2,2,1,2,2,2,2,5.0,2,,2,112047,2,2,0,1,1,520.0,312.0,303.0,43,2.0,0.0,3.0,4.0,2.1,2,2,281.577346776769,380.0,23107.813267295598,4,1,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03280275771800504,11003.720603474094,2,1,2_1,2_0_1,2_3_1,2_0_1 -23108,2,77.0,0.0,5,111,250.0,911.0,0.0,0,86,0.0,0.0,345.54355689398267,1161.0,0.0,1652.237792672026,71,0,0,0,0,0,0,0,0,0,,1,,3,118722,2,1,2,0,1,,125.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1117.50709047638,250.0,18129.137451542803,0,5,0,1,83.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06404055367240861,18129.137451542803,4,2,4_0,4_1_0,4_3_0,4_0_0 -23109,1,61.0,16.0,2,111,210.0,270.0,0.0,0,77,0.0,0.0,290.25658779094545,480.0,0.0,489.6862832288112,31,2,2,2,1,2,2,2,2,0,,2,,2,113477,2,1,0,1,1,480.0,190.0,253.0,11,0.0,2.0,3.0,1.0,1.0,1,1,294.141237725232,210.0,11528.6,0,5,2,3,64.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.04163558454625887,11528.6,2,1,2_1,2_0_1,2_3_1,2_0_1 -23110,2,46.0,0.0,9,111,1800.0,0.0,0.0,0,52,0.0,0.0,2487.913609636675,1866.0,113.54158227655265,0.0,42,0,0,0,0,0,0,0,0,0,,1,2012.0,6,113840,2,1,1,0,1,,600.0,830.0,32,2.0,2.0,6.0,3.0,2.0,1,1,2423.61602447212,1800.0,12750.780452074352,0,4,2,3,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14634398317919678,6375.390226037176,1,1,1_0,1_1_0,1_3_0,1_0_0 -23111,2,54.0,0.0,9,111,410.0,707.0,0.0,54,55,0.0,0.0,566.6914333061316,1117.0,0.0,1282.2526008991463,71,0,0,0,0,0,0,0,0,3,40.0,1,2009.0,6,131922,2,1,1,0,1,,231.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,942.666206214691,410.0,37332.487747588064,1,1,1,2,79.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02992032054097884,16231.516411994811,4,2,4_0,4_1_0,4_3_0,4_0_0 -23112,2,37.0,0.0,9,211,1504.0,0.0,0.0,42,38,0.0,0.0,2078.7900382741996,1504.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,132019,2,1,1,0,1,,107.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1518.53315930905,1504.0,46769.94516255102,1,1,1,2,146.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03215740353709591,22271.40245835763,6,3,6,6_1,6_1,6_0_0 -23113,2,41.0,0.0,9,111,700.0,0.0,0.0,22,37,0.0,207.03450096389156,967.5219593031513,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,103042,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1290.66205342778,700.0,10037.650956082682,1,1,1,2,180.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08966241244467782,4779.8337886108,1,1,1_0,1_1_0,1_3_0,1_0_0 -23114,2,46.0,0.0,2,111,128.0,127.0,0.0,0,52,0.0,0.0,176.9183011297191,255.0,0.0,230.33391840762602,31,1,2,2,2,1,2,2,2,1,2.0,2,,2,121154,2,1,0,1,1,,80.0,400.0,12,1.0,0.0,3.0,1.0,1.0,2,2,349.72080275422,128.0,19469.439133315074,0,1,2,3,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.013097449713569688,19469.439133315074,5,3,5,5_0,5_3,5_0_1 -23115,2,61.0,0.0,9,120,0.0,0.0,0.0,54,75,0.0,0.0,0.0,1359.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,111211,2,1,1,0,1,,83.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,2570.59353337372,0.0,28379.952482960354,4,5,0,1,152.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04788591527120981,18919.96832197357,5,3,5,5_1,5_0,5_0_0 -23116,2,69.0,0.0,2,111,465.0,1231.0,0.0,34,74,0.0,0.0,642.7110158228077,1696.0,0.0,2232.6067209432094,70,0,0,0,0,0,0,0,0,0,,1,,2,101995,2,2,3,0,1,,258.0,,42,1.0,3.0,8.0,2.0,1.5,1,1,1148.23595850693,465.0,31088.869295715915,1,5,0,1,175.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.054553286704245335,20725.91286381061,5,3,5,5_1,5_3,5_0_1 -23117,2,44.0,0.0,7,111,0.0,0.0,0.0,68,64,0.0,0.0,0.0,1757.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,116652,2,1,1,0,1,,192.0,920.0,43,4.0,3.0,5.0,5.0,2.8,1,1,1045.61133712107,0.0,60292.8392635964,1,1,2,3,92.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02914110566793031,21533.15687985586,6,3,6,6_1,6_3,6_0_0 -23118,1,53.0,447.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,556.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,110590,1,3,0,1,1,1188.0,333.0,403.0,32,1.0,4.0,4.0,3.0,2.0,1,1,288.38865287236,0.0,9270.052318599804,0,1,2,3,91.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05997808651893143,4635.026159299902,1,1,1_1,1_0_1,1_3_1,1_0_1 -23119,2,29.0,0.0,9,300,850.0,0.0,0.0,52,52,0.0,0.0,1174.848093439541,910.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,133057,2,1,1,0,1,,253.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,2077.68929630491,850.0,28207.097427483903,1,1,1,2,67.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0322613839420901,13431.951155944715,3,2,3_0,3_1_0,3_1_0,3_0_0 -23120,2,70.0,0.0,2,111,610.0,0.0,0.0,72,72,2389.735803228801,0.0,843.1262788213177,2360.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,113160,2,2,2,0,1,,242.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,1176.39933486152,610.0,16133.616601932215,5,5,0,1,185.0,9,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14627842338322075,10755.744401288144,2,1,2_0,2_1_0,2_3_0,2_0_1 -23121,1,29.0,350.0,2,111,0.0,0.0,0.0,63,85,0.0,0.0,0.0,742.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117731,2,3,0,1,1,40.0,424.0,454.0,42,1.0,0.0,4.0,5.0,2.4,1,1,258.6264915405,0.0,27497.558766314036,4,6,2,3,95.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0269842136280472,11457.316152630849,2,1,2_1,2_0_1,2_3_1,2_0_1 -23122,2,33.0,0.0,9,120,345.0,574.0,0.0,65,63,0.0,0.0,476.85010851369606,919.0,0.0,1041.0367650864357,71,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,131357,2,1,1,0,1,,397.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,2357.04441019882,345.0,47395.33599685849,1,1,1,2,110.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01939009357504954,22569.207617551663,6,3,6,6_1,6_1,6_0_0 -23123,2,77.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1521.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126398,2,2,1,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,5,5,1195.46070716084,0.0,12850.522498728906,0,5,0,1,64.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11836094603549761,12850.522498728906,2,1,2_0,2_1_0,2_3_0,2_1_0 -23124,2,46.0,0.0,9,111,300.0,900.0,0.0,46,47,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,70,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,101062,1,2,4,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1114.63887430605,300.0,63824.45088696244,1,1,1,2,68.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018801571863505475,35458.02827053469,9,5,9,9_1,9_3,9_0_0 -23125,2,32.0,0.0,9,400,979.0,0.0,0.0,46,62,0.0,0.0,1353.1485687968361,979.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,117525,2,1,1,0,1,,208.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,2051.44193948936,979.0,35690.46443697129,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02743029589118674,23793.64295798086,6,3,6,6_1,6_0,6_0_0 -23126,2,53.0,0.0,2,111,1336.0,0.0,0.0,72,64,0.0,0.0,1846.584768041443,1336.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,132283,2,1,2,0,1,,435.0,,42,2.0,1.0,4.0,4.0,2.5,3,3,1063.65025460595,1336.0,44918.86205906978,6,1,1,2,97.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0297425165900934,17967.54482362791,4,2,4_0,4_1_0,4_3_0,4_0_1 -23127,2,58.0,0.0,2,111,240.0,56.0,0.0,0,77,0.0,0.0,331.72181461822333,324.0,48.169156117325365,101.56456244745713,50,0,0,0,0,0,0,0,0,0,,2,,2,122287,2,2,0,1,2,328.0,0.0,518.0,11,0.0,3.0,2.0,1.0,1.0,2,2,392.698853425848,240.0,30956.338571861976,0,5,2,3,47.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010466354063413124,30956.338571861976,8,4,8,8_0,8_3,8_0_1 -23128,2,34.0,0.0,9,112,870.0,0.0,0.0,34,64,0.0,0.0,1202.4915779910596,870.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,113572,2,1,1,0,1,,380.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2402.34760780011,870.0,36187.875984377235,1,1,1,2,106.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024041200991613602,20104.375546876243,5,3,5,5_1,5_0,5_0_0 -23129,2,42.0,0.0,6,111,300.0,800.0,0.0,0,23,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,117997,2,1,1,0,1,,350.0,950.0,32,1.0,0.0,5.0,3.0,1.6,2,2,1355.48377253989,300.0,57445.87674100975,0,1,2,3,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019148458730280402,35903.67296313109,9,5,9,9_1,9_3,9_0_0 -23130,2,42.0,0.0,9,300,800.0,0.0,0.0,68,63,0.0,155.27587572291867,1105.7393820607444,1160.0,361.26867087994026,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,108732,2,1,1,0,1,,240.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,2415.43886360353,800.0,26907.254696347718,1,1,1,2,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04311104990422727,13453.627348173859,3,2,3_0,3_1_0,3_0_0,3_0_0 -23131,2,58.0,0.0,1,111,1090.0,0.0,0.0,0,64,0.0,0.0,1506.5699080577642,1160.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,4,45.0,1,,1,118234,2,1,1,0,1,,160.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,1088.56141943032,1090.0,20303.77303005209,0,1,0,1,70.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05713223834225574,20303.77303005209,5,3,5,5_1,5_3,5_1_0 -23132,1,30.0,243.0,2,111,120.0,500.0,0.0,0,55,0.0,0.0,165.86090730911167,620.0,0.0,906.8264504237244,10,2,2,1,2,1,2,2,2,0,,2,,2,117915,2,2,0,0,2,32.0,200.0,353.0,12,1.0,0.0,2.0,1.0,1.0,2,2,288.902295099795,120.0,9106.6997346038,0,4,2,3,54.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.06808174399822506,9106.6997346038,1,1,1_1,1_0_1,1_3_1,1_0_1 -23133,2,27.0,0.0,9,111,0.0,0.0,0.0,46,31,0.0,0.0,0.0,1192.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,114415,2,1,1,0,1,,94.0,650.0,43,2.0,0.0,3.0,2.0,1.5,4,3,1310.98464770984,0.0,38946.74027537172,1,1,2,3,88.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030605899019327445,25964.493516914477,7,4,7,7_1,7_2,7_0_0 -23134,2,37.0,0.0,9,300,1643.0,0.0,0.0,38,38,0.0,0.0,2270.912255907254,1703.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,126946,2,1,1,0,1,,870.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,2524.77252339302,1643.0,33802.78798274747,4,1,1,2,157.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05038045976767332,18779.326657081925,5,3,5,5_1,5_0,5_0_0 -23135,2,55.0,0.0,6,111,1020.0,0.0,0.0,52,90,0.0,134.5724256265295,1409.817712127449,1230.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,120571,2,1,1,0,1,,320.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,1028.99558712986,1020.0,32934.856647427216,1,1,0,1,90.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03734645069712439,21956.57109828481,6,3,6,6_1,6_3,6_0_0 -23136,2,73.0,0.0,2,111,260.0,991.0,0.0,0,77,0.0,0.0,359.36529916974195,1251.0,0.0,1797.330024739822,71,0,0,0,0,0,0,0,0,0,,1,,2,106324,2,1,1,0,1,,141.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,246.597220701388,260.0,25407.999009038238,0,5,0,1,130.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.049236462877497326,25407.999009038238,7,4,7,7_1,7_3,7_0_1 -23137,2,24.0,0.0,9,120,0.0,0.0,0.0,55,48,0.0,0.0,0.0,2271.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2013.0,6,122068,2,1,1,0,1,,127.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,2216.31080661223,0.0,32447.001097460634,1,1,1,2,90.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06999105998050874,21631.334064973755,6,3,6,6_1,6_0,6_0_0 -23138,2,60.0,0.0,1,111,780.0,0.0,0.0,63,46,1493.5848770180007,0.0,1078.0958975092258,1830.0,86.01635020950958,0.0,71,1,2,2,1,2,2,2,2,4,20.0,1,,1,106386,2,2,2,0,1,,260.0,625.0,43,2.0,2.0,4.0,2.0,1.5,2,1,1233.22159852734,780.0,49791.767668795794,1,1,2,3,80.0,9,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03675306352192132,33194.51177919719,8,4,8,8_1,8_3,8_1_0 -23139,1,66.0,109.0,2,111,265.0,403.0,0.0,0,78,0.0,0.0,366.2761703076216,668.0,0.0,730.9021190415219,33,0,0,0,0,0,0,0,0,0,,2,,2,132229,2,1,0,1,1,328.0,280.0,370.0,11,0.0,0.0,2.0,1.0,1.0,2,2,290.961783716471,265.0,11408.617798444971,0,5,2,3,49.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.058552228832755744,11408.617798444971,2,1,2_1,2_0_1,2_3_1,2_0_1 -23140,2,78.0,0.0,2,111,480.0,540.0,0.0,78,78,0.0,0.0,663.4436292364467,1020.0,0.0,979.3725664576224,20,1,2,2,2,1,2,2,2,0,,2,,2,103231,2,1,0,1,1,730.0,179.0,364.0,41,1.0,5.0,4.0,3.0,2.0,1,1,288.38865287236,480.0,37989.789076760906,5,5,2,3,120.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0268493199038042,18994.894538380453,5,3,5,5_0,5_3,5_0_1 -23141,2,64.0,0.0,5,111,600.0,600.0,0.0,0,77,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,42,0,0,0,0,0,0,0,0,0,,1,,3,100073,2,1,1,0,1,,180.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1091.92069294504,600.0,26174.990296788746,0,5,0,1,83.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04584528920139546,26174.990296788746,7,4,7,7_1,7_3,7_0_0 -23142,2,51.0,0.0,5,111,750.0,180.0,0.0,0,47,0.0,0.0,1036.630670681948,930.0,0.0,326.4575221525408,50,1,2,2,2,1,2,2,2,2,20.0,2,,3,102091,2,1,0,1,2,,0.0,,32,1.0,1.0,3.0,2.0,1.3,5,4,287.604023018573,750.0,25366.61523692667,0,1,0,1,87.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.036662360796413274,19512.780951482055,5,3,5,5_0,5_3,5_0_0 -23143,2,39.0,0.0,9,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,1199.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,129335,2,1,1,0,1,,386.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1094.23232440954,0.0,48673.10736657139,1,1,1,2,100.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024633726196480136,23177.670174557803,6,3,6,6_1,6_3,6_0_0 -23144,2,50.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,191.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,100760,2,1,0,1,1,204.0,173.0,188.0,12,1.0,0.0,1.0,1.0,1.0,2,2,318.859770669981,0.0,15362.082458717827,0,1,2,3,30.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012433210179236437,15362.082458717827,3,2,3_0,3_0_0,3_3_0,3_0_1 -23145,2,59.0,0.0,2,111,0.0,0.0,1000.0,0,63,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,41,0,0,0,0,0,0,0,0,1,8.0,1,,2,110767,1,2,3,0,2,,443.0,680.0,12,1.0,3.0,4.0,1.0,1.0,4,4,1105.13577395231,0.0,23430.119072941652,0,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04268010746709577,23430.119072941652,6,3,6,6_1,6_3,6_0_1 -23146,2,64.0,0.0,2,111,200.0,150.0,0.0,0,77,0.0,0.0,276.4348455151861,350.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,2,,2,128082,2,2,0,1,1,480.0,210.0,283.0,21,1.0,2.0,3.0,2.0,1.5,2,2,295.215212415132,200.0,24498.630366740756,0,5,2,3,86.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014286512950338589,16332.420244493836,4,2,4_0,4_0_0,4_3_0,4_0_1 -23147,2,68.0,0.0,5,111,1772.0,0.0,0.0,77,74,0.0,0.0,2449.212731264549,1799.0,46.448829113135176,0.0,31,2,2,1,2,1,2,2,2,0,,1,,3,107551,2,1,2,0,1,,121.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1151.05031726994,1772.0,53325.843909690666,5,5,0,1,132.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03373598743316045,35550.562606460444,9,5,9,9_1,9_3,9_0_0 -23148,1,77.0,270.0,9,111,250.0,0.0,0.0,0,78,0.0,0.0,345.54355689398267,250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2009.0,6,107622,2,1,0,1,1,268.0,120.0,341.0,11,0.0,2.0,3.0,1.0,1.0,3,3,282.012738937365,250.0,10835.530611173166,0,5,2,3,60.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02307224343422647,10835.530611173166,2,1,2_1,2_0_1,2_3_1,2_0_0 -23149,2,58.0,0.0,2,111,483.0,1303.0,0.0,74,33,0.0,0.0,667.5901519191744,1786.0,0.0,2363.189729804226,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,125278,2,2,1,0,1,,305.0,,42,1.0,1.0,6.0,4.0,2.5,2,2,1125.11494727032,483.0,89036.2063755128,5,1,0,1,95.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020059255360313676,35614.482550205124,9,5,9,9_1,9_3,9_0_1 -23150,2,70.0,0.0,2,111,250.0,350.0,0.0,0,78,0.0,0.0,345.54355689398267,600.0,0.0,634.7785152966071,31,0,0,0,0,0,0,0,0,0,,2,,2,127084,2,1,0,1,1,550.0,180.0,324.0,11,0.0,2.0,4.0,1.0,1.0,1,1,313.048021779266,250.0,24529.296351878304,0,5,2,3,73.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02446054674348845,24529.296351878304,7,4,7,7_0,7_3,7_0_1 -23151,2,73.0,0.0,7,111,1370.0,0.0,0.0,0,78,0.0,0.0,1893.578691779025,1445.0,129.02452531426437,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,107544,2,1,2,0,1,,47.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1053.92673895293,1370.0,16808.959223137004,0,5,0,1,64.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08596606017170907,16808.959223137004,4,2,4_0,4_1_0,4_3_0,4_0_0 -23152,1,33.0,379.0,2,111,456.0,150.0,0.0,46,63,0.0,0.0,630.2714477746243,606.0,0.0,272.04793512711734,10,0,0,0,0,0,0,0,0,0,,2,,2,114558,2,1,0,1,1,51.0,0.0,371.0,43,2.0,0.0,4.0,4.0,2.1,2,2,252.186393786463,456.0,11739.438658301464,4,1,2,3,85.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.051620866860739655,5590.208884905459,1,1,1_1,1_0_1,1_3_1,1_0_1 -23153,2,61.0,0.0,5,112,863.0,0.0,0.0,77,78,0.0,103.51725048194578,1192.8163583980281,1001.0,65.37242615922729,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,101906,2,2,2,0,1,,234.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,932.002765201194,863.0,29843.032776920998,5,5,0,1,80.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033542167362230015,19895.355184614,5,3,5,5_1,5_0,5_0_0 -23154,1,38.0,110.0,2,111,372.0,192.0,0.0,85,62,0.0,0.0,514.1688126582462,564.0,0.0,348.22135696271016,50,0,0,0,0,0,0,0,0,0,,2,,2,111036,2,2,0,1,1,43.0,0.0,338.0,42,1.0,0.0,3.0,3.0,1.8,4,4,312.44008492587,372.0,22204.999067664503,6,4,2,3,67.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025399685822158465,12336.110593146946,2,1,2_1,2_0_1,2_3_1,2_0_1 -23155,2,51.0,0.0,9,112,1368.0,0.0,0.0,54,64,0.0,465.827627168756,1890.814343323873,1874.0,96.33831223465073,0.0,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100517,2,1,1,0,1,,365.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,1048.35531627357,1368.0,51467.89310075997,1,1,1,2,113.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036411049434862695,25733.946550379984,7,4,7,7_1,7_0,7_0_0 -23156,1,40.0,270.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,239.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2013.0,2,104752,2,1,0,1,1,52.0,0.0,303.0,12,1.0,0.0,2.0,1.0,1.0,2,2,338.003415210786,0.0,11661.403669724772,0,1,2,3,55.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.020494959849515337,11661.403669724772,2,1,2_1,2_0_1,2_3_1,2_0_1 -23157,2,37.0,0.0,9,112,1274.0,0.0,0.0,54,53,0.0,310.55175144583734,1760.8899659317356,1574.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,128276,2,1,1,0,1,,442.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,787.44886037442,1274.0,61946.84779797114,1,1,1,2,98.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025408879643615233,29498.498951414826,8,4,8,8_1,8_0,8_0_0 -23158,2,54.0,0.0,2,111,250.0,170.0,0.0,0,52,0.0,0.0,345.54355689398267,570.0,0.0,308.32099314406634,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,122440,1,3,0,1,1,,215.0,312.0,22,1.0,1.0,3.0,2.0,1.5,2,2,286.60373490052,250.0,33188.62574663465,0,1,2,3,58.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017174558668124378,22125.750497756435,6,3,6,6_0,6_3,6_0_1 -23159,2,32.0,0.0,8,112,1430.0,0.0,0.0,63,63,0.0,0.0,1976.5091454335807,1430.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,105627,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,936.37348558822,1430.0,44842.52628633268,1,1,1,2,104.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03188937195172793,24912.514603518153,7,4,7,7_1,7_0,7_0_0 -23160,2,58.0,0.0,5,111,0.0,0.0,804.0,68,78,0.0,0.0,410.77432120937016,804.0,0.0,919.1696028207157,50,0,0,0,0,0,0,0,0,0,,2,,3,107092,1,3,0,1,1,562.0,372.0,386.0,42,2.0,2.0,5.0,3.0,2.0,2,2,307.508936916609,0.0,43776.70163420208,1,7,2,3,85.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018365933704147477,21888.35081710104,6,3,6,6_0,6_3,6_0_0 -23161,2,40.0,0.0,6,112,1347.0,0.0,0.0,52,64,0.0,207.03450096389156,1861.7886845447786,1597.0,86.01635020950958,0.0,70,2,2,2,1,1,2,1,2,2,60.0,1,,4,129406,2,1,3,0,1,,475.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,852.246546685543,1347.0,44006.25525277981,1,1,1,2,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,0,0,0.036290295341572375,20955.359644180862,5,3,5,5_1,5_0,5_0_0 -23162,2,57.0,0.0,5,111,250.0,607.0,0.0,0,34,0.0,0.0,345.54355689398267,857.0,0.0,1100.8873108144014,71,0,0,0,0,0,0,0,0,2,40.0,1,,3,100237,1,2,3,0,1,,133.0,,12,1.0,3.0,6.0,1.0,1.0,2,2,240.447931431341,250.0,34241.68394134902,0,1,1,2,120.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025027974718413823,34241.68394134902,9,5,9,9_1,9_3,9_0_0 -23163,2,68.0,0.0,1,112,1837.0,0.0,0.0,77,75,0.0,0.0,2539.0540560569843,1877.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107695,2,1,2,0,1,,255.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,867.153493498466,1837.0,26591.186491194192,5,5,0,1,107.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07058729781093365,17727.457660796128,4,2,4_0,4_1_0,4_0_0,4_1_0 -23164,2,32.0,0.0,8,112,840.0,0.0,0.0,85,62,0.0,652.1586780362584,1161.0263511637818,1520.0,86.01635020950958,0.0,20,2,2,2,2,1,2,2,1,2,45.0,1,1999.0,6,114357,2,3,1,0,1,,300.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,863.502806692346,840.0,31406.034790029065,7,1,1,2,106.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.04839834159779307,13085.847829178778,2,1,2_0,2_1_0,2_0_0,2_0_0 -23165,2,64.0,0.0,2,111,250.0,105.0,0.0,0,77,0.0,0.0,345.54355689398267,355.0,0.0,190.43355458898213,43,0,0,0,0,0,0,0,0,0,,2,,2,115533,1,3,0,1,1,504.0,0.0,265.0,11,0.0,1.0,3.0,1.0,1.0,1,1,322.396001889947,250.0,14761.045297530945,0,5,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024049787318204372,14761.045297530945,3,2,3_0,3_0_0,3_3_0,3_0_1 -23166,2,26.0,0.0,8,112,600.0,0.0,0.0,0,47,0.0,0.0,829.3045365455583,650.0,86.01635020950958,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,126739,2,1,1,0,1,,160.0,445.0,12,1.0,0.0,2.0,1.0,1.0,2,2,952.795249713,600.0,32249.950888100047,0,1,2,3,50.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020155069452829598,32249.950888100047,8,4,8,8_1,8_0,8_0_0 -23167,2,43.0,0.0,2,111,1400.0,2400.0,0.0,85,35,0.0,93.1655254337512,1935.0439186063027,3890.0,0.0,4352.7669620338775,50,0,0,0,0,0,0,0,0,4,150.0,1,,2,113678,2,1,1,0,1,,400.0,,42,1.0,0.0,10.0,7.0,3.6,3,3,238.303164827923,1400.0,64665.7523090069,6,1,1,2,250.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06015548974689939,17962.708974724137,4,2,4_0,4_1_0,4_3_0,4_0_1 -23168,2,51.0,0.0,2,112,912.0,0.0,0.0,0,67,0.0,586.9428102326326,1260.5428955492487,1529.0,86.01635020950958,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,100554,1,3,2,0,2,,250.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,899.184894392247,912.0,25833.424798122716,0,1,1,2,75.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.05918688721872876,25833.424798122716,7,4,7,7_1,7_0,7_0_1 -23169,2,43.0,0.0,6,111,1000.0,0.0,0.0,56,21,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131582,2,1,2,0,1,,500.0,260.0,43,3.0,0.0,4.0,5.0,2.5999999999999996,1,1,215.182210663052,1000.0,37192.00762780826,1,1,2,3,60.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028500747004779697,14304.618318387795,3,2,3_0,3_1_0,3_3_0,3_0_0 -23170,2,41.0,0.0,1,112,982.0,0.0,0.0,56,63,0.0,155.27587572291867,1357.2950914795638,1182.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,1,110174,2,1,2,0,1,,197.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,816.314485407357,982.0,45981.34201289851,1,1,1,2,108.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025706078775787577,21895.87714899929,6,3,6,6_1,6_0,6_1_0 -23171,2,58.0,0.0,5,111,400.0,1360.0,0.0,77,47,0.0,0.0,552.8696910303722,1760.0,0.0,2466.5679451525307,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,108222,1,2,0,0,1,,332.0,309.0,42,1.0,2.0,3.0,2.0,1.5,1,1,279.51528928664,400.0,41010.09311414319,5,1,2,3,72.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04291626442060009,27340.06207609546,7,4,7,7_0,7_3,7_0_0 -23172,1,64.0,47.0,1,112,1199.0,0.0,0.0,0,77,0.0,0.0,1657.2268988635408,1224.0,43.00817510475479,0.0,30,2,2,2,2,1,2,2,2,0,,1,,1,133454,2,2,3,0,1,,242.0,500.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1026.12915374238,1199.0,12542.550998320661,0,5,2,3,60.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0.09758780332357293,12542.550998320661,2,1,2_1,2_1_1,2_0_1,2_1_0 -23173,1,39.0,175.0,2,111,156.0,244.0,0.0,0,85,0.0,0.0,215.61917950184517,400.0,0.0,442.53130780677753,50,0,0,0,0,0,0,0,0,0,,2,,2,123983,2,2,0,0,1,,120.0,160.0,11,0.0,0.0,1.0,1.0,1.0,2,2,390.181030934524,156.0,9902.114902985624,0,7,2,3,25.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.040395410871206364,9902.114902985624,2,1,2_1,2_0_1,2_3_1,2_0_1 -23174,1,41.0,157.0,2,111,50.0,276.0,0.0,0,85,0.0,0.0,69.10871137879653,326.0,0.0,500.5682006338959,71,2,2,2,2,1,2,2,2,0,,2,,2,121004,2,2,0,1,1,,0.0,143.0,11,0.0,0.0,1.0,1.0,1.0,2,2,296.709666239329,50.0,9902.114902985624,0,7,2,3,35.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.032922259860033186,9902.114902985624,2,1,2_1,2_0_1,2_3_1,2_0_1 -23175,2,70.0,0.0,1,112,1680.0,0.0,0.0,77,78,0.0,186.3310508675024,2322.0527023275636,2000.0,240.84578058662683,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,112037,2,1,1,0,1,,166.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,828.383660865934,1680.0,29930.6239132655,5,5,0,1,70.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06682119309626498,19953.749275510334,5,3,5,5_1,5_0,5_1_0 -23176,1,40.0,17.0,2,111,183.0,1860.0,0.0,0,55,0.0,0.0,252.93788364639528,2043.0,0.0,3373.3943955762547,50,2,2,2,2,1,2,2,2,3,20.0,2,,2,108167,1,3,0,0,1,,400.0,218.0,12,1.0,0.0,2.0,1.0,1.0,1,1,302.712629777738,183.0,14521.805934395003,0,1,2,3,54.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.14068498155323367,14521.805934395003,3,2,3_1,3_0_1,3_3_1,3_0_1 -23177,2,57.0,0.0,8,112,950.0,0.0,0.0,52,63,0.0,289.84830134944815,1313.065516197134,1294.0,110.10092826817227,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,117853,2,2,1,0,1,,247.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,834.883219122145,950.0,38931.15319971474,1,1,1,2,109.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03323816259338245,25954.10213314316,7,4,7,7_1,7_0,7_0_0 -23178,2,67.0,0.0,2,111,369.0,280.0,0.0,0,78,0.0,0.0,510.0222899755184,649.0,0.0,507.8228122372857,71,0,0,0,0,0,0,0,0,0,,2,,2,105380,2,2,0,1,1,,117.0,162.0,11,0.0,0.0,2.0,1.0,1.0,2,2,302.712629777738,369.0,11401.867182483746,0,5,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05692050166985228,11401.867182483746,2,1,2_0,2_0_0,2_3_0,2_0_1 -23179,1,57.0,169.0,2,111,440.0,60.0,0.0,0,52,0.0,0.0,608.1566601334094,500.0,0.0,108.81917405084694,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,126570,1,1,0,1,1,564.0,0.0,347.0,32,1.0,3.0,3.0,2.0,1.3,1,1,272.446618025505,440.0,21428.28296200167,0,1,2,3,83.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.023333647445604466,16483.29458615513,4,2,4_1,4_0_1,4_3_1,4_0_1 -23180,2,76.0,0.0,2,112,2038.0,0.0,0.0,77,75,0.0,372.6621017350048,2816.8710757997464,2485.0,149.6684493645467,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133689,2,1,2,0,1,,188.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,847.925316846527,2038.0,28594.53635294392,5,5,0,1,50.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08690471387007327,19063.024235295947,5,3,5,5_1,5_0,5_0_1 -23181,2,86.0,0.0,2,111,128.0,0.0,0.0,0,77,0.0,0.0,176.9183011297191,128.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,2,103271,2,2,0,1,1,,0.0,387.0,11,0.0,1.0,1.0,1.0,1.0,2,2,329.104539681547,128.0,15460.599381899949,0,5,2,3,30.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.00827910980927766,15460.599381899949,3,2,3_0,3_0_0,3_3_0,3_0_1 -23183,1,79.0,41.0,2,111,0.0,0.0,840.0,0,78,0.0,0.0,429.16720126352106,840.0,0.0,960.3264507082105,12,0,0,0,0,0,0,0,0,0,,2,,2,123315,2,1,0,0,1,,140.0,209.0,11,0.0,6.0,2.0,1.0,1.0,2,2,295.43551880628,0.0,17382.18639146015,0,5,2,3,41.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.048325336127605395,17382.18639146015,4,2,4_1,4_0_1,4_3_1,4_0_1 -23184,1,51.0,167.0,2,111,300.0,550.0,0.0,0,85,0.0,0.0,414.65226827277917,850.0,0.0,997.5090954660969,50,0,0,0,0,0,0,0,0,0,,2,,2,101246,2,2,0,1,1,,300.0,350.0,31,3.0,0.0,4.0,5.0,3.0,4,4,275.862357413754,300.0,5393.508214446348,0,6,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1575968676052631,1797.8360714821158,1,1,1_1,1_0_1,1_3_1,1_0_1 -23185,2,38.0,0.0,8,112,1185.0,0.0,0.0,45,47,0.0,170.80346329521052,1637.8764596774777,1458.0,185.7953164525407,0.0,71,2,2,2,2,1,2,2,2,0,,1,2002.0,6,113238,2,1,1,0,1,,215.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,840.066857612377,1185.0,44666.08456464251,1,1,1,2,120.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.032642216442543226,21269.564078401192,6,3,6,6_1,6_0,6_0_0 -23186,2,28.0,0.0,5,111,410.0,467.0,0.0,0,53,0.0,0.0,566.6914333061316,877.0,0.0,846.9759046957587,70,0,0,0,0,0,0,0,0,2,10.0,2,,3,122875,1,3,0,0,1,,280.0,313.0,12,1.0,1.0,3.0,1.0,1.0,1,1,301.50290328319,410.0,15447.897492289634,0,1,2,3,67.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.056771479771776635,15447.897492289634,3,2,3_0,3_0_0,3_3_0,3_0_0 -23187,2,37.0,0.0,9,112,1211.0,0.0,0.0,63,54,0.0,0.0,1673.812989594452,1261.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2006.0,6,131526,2,1,1,0,1,,609.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,917.470648637901,1211.0,41884.55104748236,1,1,1,2,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030106565988267827,19945.024308324933,5,3,5,5_1,5_0,5_0_0 -23188,1,86.0,198.0,2,111,75.0,144.0,0.0,0,78,0.0,0.0,103.66306706819479,219.0,0.0,261.1660177220326,60,0,0,0,0,0,0,0,0,0,,2,,2,111761,2,2,0,1,1,24.0,0.0,220.0,11,0.0,0.0,2.0,1.0,1.0,2,2,311.751982993679,75.0,9544.322829265091,0,5,2,3,41.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02294557758759957,9544.322829265091,1,1,1_1,1_0_1,1_3_1,1_0_1 -23189,1,63.0,250.0,2,111,300.0,100.0,0.0,85,78,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,2,120913,2,2,0,1,1,,0.0,400.0,41,0.0,4.0,4.0,3.0,2.0,3,3,334.405390618052,300.0,17952.066038200843,6,5,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02228155796379234,8976.033019100421,1,1,1_1,1_0_1,1_3_1,1_0_1 -23190,2,30.0,0.0,2,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1298.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,121241,2,2,5,0,1,,225.0,380.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1037.32309092335,0.0,21468.648080056788,0,1,2,3,60.0,9,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.060460257914692436,21468.648080056788,6,3,6,6_1,6_0,6_0_1 -23191,2,69.0,0.0,2,111,120.0,92.0,0.0,0,77,0.0,0.0,165.86090730911167,212.0,0.0,166.8560668779653,50,2,2,2,2,2,2,2,1,0,,2,,2,118903,1,3,0,1,1,55.0,0.0,345.0,11,0.0,3.0,4.0,1.0,1.0,2,2,322.534678048612,120.0,17630.093431173034,0,5,2,3,84.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.012024893732278672,17630.093431173034,4,2,4_0,4_0_0,4_3_0,4_0_1 -23192,2,39.0,0.0,5,112,1663.0,0.0,0.0,34,37,0.0,0.0,2298.5557404587726,1663.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,118223,2,2,1,0,1,,503.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,878.417379920442,1663.0,76548.30349449467,1,1,0,1,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02172484462858935,36451.573092616505,9,5,9,9_1,9_0,9_0_0 -23193,1,26.0,270.0,6,111,250.0,562.0,0.0,0,55,0.0,0.0,345.54355689398267,812.0,0.0,1019.2729302762663,71,0,0,0,0,0,0,0,0,0,,2,,4,104497,1,2,0,1,1,561.0,0.0,330.0,22,1.0,0.0,3.0,2.0,1.5,2,2,290.010854147501,250.0,10750.693807757954,0,4,2,3,71.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07553000899477219,7167.129205171969,1,1,1_1,1_0_1,1_3_1,1_0_0 -23194,1,27.0,271.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,313.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,122031,1,2,0,1,1,432.0,77.0,259.0,12,1.0,1.0,3.0,1.0,1.0,5,5,404.243036306305,0.0,7069.846153846153,0,4,2,3,55.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04427253340296819,7069.846153846153,1,1,1_1,1_0_1,1_3_1,1_1_0 -23195,1,39.0,78.0,2,111,220.0,260.0,0.0,0,42,0.0,0.0,304.0783300667047,480.0,0.0,471.5497542203367,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,122380,1,1,0,1,2,456.0,250.0,444.0,32,1.0,0.0,4.0,3.0,1.6,2,2,299.174437630464,220.0,22832.21630583275,0,1,2,3,78.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.021022926270954194,14270.135191145468,3,2,3_1,3_0_1,3_3_1,3_0_1 -23196,2,33.0,0.0,8,112,1397.0,0.0,0.0,43,38,0.0,0.0,1930.897395923575,1447.0,86.01635020950958,0.0,50,2,2,2,2,1,2,2,2,2,30.0,1,2001.0,6,126424,2,1,1,0,1,,418.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,842.12588520572,1397.0,56544.80205843855,1,1,1,2,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.02559032744520952,26926.096218304072,7,4,7,7_1,7_0,7_0_0 -23197,2,25.0,0.0,2,111,230.0,150.0,0.0,69,63,0.0,0.0,317.900072342464,380.0,0.0,272.04793512711734,60,2,2,2,2,1,2,1,2,2,5.0,2,,2,114862,2,3,0,0,1,,110.0,313.0,43,2.0,0.0,3.0,2.0,1.5,2,2,264.546937038164,230.0,21336.525926480248,4,1,2,3,58.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.017809834708301372,14224.3506176535,3,2,3_0,3_0_0,3_3_0,3_0_1 -23198,2,89.0,0.0,2,111,481.0,766.0,0.0,0,77,0.0,0.0,664.8258034640226,1247.0,0.0,1389.2581220491459,50,0,0,0,0,0,0,0,0,0,,2,,2,109472,2,1,0,1,1,,192.0,,21,1.0,1.0,3.0,2.0,1.5,1,1,292.770394174407,481.0,42855.914345114936,0,5,0,1,71.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.029097500754692057,28570.60956340996,8,4,8,8_0,8_3,8_0_1 -23199,1,40.0,142.0,9,112,2340.0,0.0,0.0,56,63,0.0,0.0,3234.2876925276773,2490.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,119418,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,6.0,2.6999999999999997,1,1,948.551520347312,2340.0,34029.44264971544,1,1,1,2,140.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07317193013212109,12603.497277672386,2,1,2_1,2_1_1,2_0_1,2_0_0 -23200,2,89.0,0.0,2,111,120.0,75.0,0.0,0,77,0.0,0.0,165.86090730911167,195.0,0.0,136.02396756355867,31,0,0,0,0,0,0,0,0,0,,2,,2,118110,1,2,0,1,2,504.0,60.0,542.0,11,0.0,0.0,3.0,1.0,1.0,1,1,380.004594775494,120.0,14285.224618623091,0,5,2,3,63.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01365046789294346,14285.224618623091,3,2,3_0,3_0_0,3_3_0,3_0_1 -23201,1,51.0,270.0,2,111,152.0,209.0,0.0,0,85,0.0,0.0,210.09048259154144,361.0,0.0,379.0534562771168,71,2,2,2,2,1,2,2,2,0,,2,,2,115478,2,1,0,1,1,31.0,150.0,334.0,11,0.0,2.0,3.0,1.0,1.0,1,1,277.645908331778,152.0,9793.42149441577,0,7,2,3,63.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.036861478922952814,9793.42149441577,2,1,2_1,2_0_1,2_3_1,2_0_1 -23202,2,50.0,0.0,6,111,100.0,600.0,0.0,0,43,0.0,0.0,138.21742275759306,700.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,2,5.0,2,,4,129259,1,1,0,0,1,,200.0,406.0,12,1.0,1.0,3.0,1.0,1.0,1,1,284.635607998993,100.0,11753.959103695917,0,1,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.059554401527557796,11753.959103695917,2,1,2_0,2_0_0,2_3_0,2_0_0 -23203,2,64.0,0.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,772.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128897,2,1,2,0,1,,0.0,400.0,11,0.0,3.0,2.0,1.0,1.0,2,2,1026.12915374238,0.0,14772.182233494488,0,5,2,3,52.0,9,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.052260389683628804,14772.182233494488,3,2,3_0,3_1_0,3_0_0,3_1_0 -23204,2,41.0,0.0,2,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,137.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,128453,1,1,0,1,1,110.0,155.0,235.0,12,1.0,0.0,2.0,1.0,1.0,1,1,303.085713454358,0.0,11456.0,0,4,2,3,43.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011958798882681565,11456.0,2,1,2_0,2_0_0,2_3_0,2_0_1 -23205,1,58.0,267.0,6,111,200.0,600.0,0.0,0,75,0.0,0.0,276.4348455151861,800.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,,4,106081,2,1,0,0,1,,250.0,254.0,11,0.0,3.0,1.0,1.0,1.0,2,2,296.870671616725,200.0,6322.5601263491535,0,5,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.12653102287885165,6322.5601263491535,1,1,1_1,1_0_1,1_3_1,1_0_0 -23206,2,83.0,0.0,2,111,290.0,1180.0,0.0,0,77,0.0,0.0,400.8305259970199,1470.0,0.0,2140.1104229999896,50,0,0,0,0,0,0,0,0,0,,1,,2,107793,2,2,5,0,1,,218.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,212.138857660689,290.0,27991.66164085792,0,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05251563908068681,27991.66164085792,7,4,7,7_1,7_2,7_0_1 -23207,2,44.0,0.0,8,112,1353.0,0.0,0.0,46,67,0.0,0.0,1870.0817299102341,1353.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,131860,2,1,1,0,1,,487.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,787.44886037442,1353.0,60789.536386283304,1,1,1,2,88.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02225711989975456,26430.233211427527,7,4,7,7_1,7_0,7_0_0 -23208,1,42.0,429.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1187.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,109127,1,3,0,1,1,562.0,302.0,382.0,31,0.0,0.0,5.0,4.0,2.1,1,1,251.193037487724,0.0,19020.40372766603,0,7,2,3,86.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06240666691388129,9057.335108412395,1,1,1_1,1_0_1,1_2_1,1_0_1 -23209,2,56.0,0.0,5,112,1570.0,0.0,0.0,63,56,0.0,0.0,2170.013537294211,1619.0,84.29602320531939,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,113296,2,3,2,0,1,,400.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,842.943964076789,1570.0,22437.50597626463,1,1,0,1,98.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0721559696390788,14958.337317509753,3,2,3_0,3_1_0,3_0_0,3_0_0 -23210,2,33.0,0.0,2,111,310.0,0.0,0.0,42,43,0.0,0.0,428.47401054853844,310.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,1.0,2,,2,107881,1,3,0,1,1,430.0,480.0,240.0,43,2.0,0.0,4.0,4.0,2.1,2,2,242.790197179976,310.0,30500.58627817907,1,1,2,3,71.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01016373905644503,14524.088703894795,3,2,3_0,3_0_0,3_2_0,3_0_1 -23211,2,25.0,0.0,9,112,1578.0,0.0,0.0,46,21,0.0,0.0,2181.0709311148184,1628.0,86.01635020950958,0.0,31,1,2,2,1,2,2,2,1,2,20.0,1,2011.0,6,128264,2,1,1,0,1,,226.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1018.98894702934,1578.0,57899.854617261386,1,1,1,2,145.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.02811751446979718,32166.58589847855,8,4,8,8_1,8_0,8_0_0 -23212,1,51.0,189.0,5,111,120.0,150.0,0.0,0,67,0.0,0.0,165.86090730911167,270.0,0.0,272.04793512711734,10,0,0,0,0,0,0,0,0,0,,2,,3,104473,2,1,0,1,1,32.0,160.0,175.0,12,1.0,5.0,2.0,1.0,1.0,4,2,273.13983007797,120.0,6060.0,0,4,2,3,50.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04455445544554455,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -23213,1,22.0,223.0,2,111,0.0,0.0,1300.0,0,62,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,71,2,2,2,2,1,2,2,2,0,,2,,2,127308,1,3,0,0,1,,330.0,227.0,22,2.0,1.0,4.0,4.0,2.3,1,1,227.785884594382,0.0,14541.268356993985,0,1,2,3,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.08940072957079652,6322.290589997386,1,1,1_1,1_0_1,1_2_1,1_0_1 -23214,2,27.0,0.0,2,112,363.0,0.0,0.0,0,69,1194.8679016144006,0.0,501.7292446100628,1223.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,12.0,1,,2,125530,2,2,2,0,1,,98.0,460.0,12,1.0,0.0,4.0,1.0,1.0,4,2,1142.02405610795,363.0,22443.10492744785,0,1,2,3,90.0,9,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.054493351252137785,22443.10492744785,6,3,6,6_1,6_0,6_0_1 -23215,1,66.0,220.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,987.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,2,125803,1,3,0,1,1,,166.0,330.0,11,0.0,2.0,3.0,1.0,1.0,1,1,270.195689063876,250.0,9981.120819055248,0,5,2,3,65.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.09888668997129958,9981.120819055248,2,1,2_1,2_0_1,2_2_1,2_0_1 -23216,2,41.0,0.0,2,112,1621.0,0.0,0.0,56,38,0.0,201.85863843979428,2240.5044229005834,1891.0,129.02452531426437,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,113018,2,1,1,0,1,,253.0,,43,2.0,0.0,9.0,4.0,2.1,5,5,938.63613120421,1621.0,55079.621402150886,1,1,1,2,240.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03433211688572274,26228.391143881374,7,4,7,7_1,7_0,7_0_1 -23217,1,53.0,271.0,7,111,140.0,590.0,0.0,0,65,0.0,0.0,193.50439186063028,730.0,0.0,1070.0552114999948,31,0,0,0,0,0,0,0,0,0,,2,,5,109605,2,1,0,0,1,,159.0,362.0,12,1.0,0.0,2.0,1.0,1.0,5,4,268.089993546936,140.0,9345.254457179739,0,4,2,3,50.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07811451291614196,9345.254457179739,1,1,1_1,1_0_1,1_2_1,1_0_0 -23218,1,48.0,44.0,8,112,1157.0,0.0,0.0,52,67,0.0,0.0,1599.1755813053517,1197.0,68.81308016760767,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,118144,2,2,1,0,1,,201.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,810.080650875304,1157.0,35782.57827894909,1,1,1,2,87.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.033452033295884545,15557.642729977866,3,2,3_1,3_1_1,3_0_1,3_0_0 -23219,2,54.0,0.0,2,111,261.0,75.0,0.0,85,62,0.0,0.0,360.7474733973179,336.0,0.0,136.02396756355867,71,2,2,2,2,1,2,2,2,2,40.0,2,,2,126035,2,1,0,1,1,503.0,0.0,313.0,42,1.0,0.0,3.0,2.0,1.5,1,1,277.524593781458,261.0,26912.965645509335,6,1,2,3,68.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.012484688771416187,17941.977097006224,4,2,4_0,4_0_0,4_2_0,4_0_1 -23220,2,76.0,0.0,5,112,600.0,0.0,0.0,71,72,5302.226313413902,0.0,829.3045365455583,4210.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,108808,2,2,2,0,1,,136.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,967.887425429328,600.0,78761.88681643225,5,5,0,1,136.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05345224918001405,52507.924544288166,10,5,10,10_1,10_0,10_0_0 -23221,1,47.0,355.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1317.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,124396,1,3,0,1,1,829.0,446.0,321.0,32,1.0,1.0,5.0,4.0,2.3,2,2,255.044029220222,0.0,24106.20723050794,0,4,2,3,77.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05463323149123404,10480.959665438235,2,1,2_1,2_0_1,2_2_1,2_0_1 -23222,2,33.0,0.0,2,111,450.0,0.0,0.0,55,90,0.0,0.0,621.9784024091688,450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,109291,2,2,0,1,1,458.0,0.0,287.0,43,2.0,0.0,2.0,2.0,1.5,1,1,251.780712948492,450.0,13604.494914897148,1,1,2,3,60.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03307730296603974,9069.6632765981,1,1,1_0,1_0_0,1_2_0,1_0_1 -23224,1,53.0,270.0,2,111,240.0,180.0,0.0,0,62,0.0,0.0,331.72181461822333,420.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,2,,2,125102,2,1,0,1,1,157.0,0.0,310.0,12,1.0,3.0,3.0,1.0,1.0,1,1,284.85017241527,240.0,6060.0,0,4,2,3,60.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06930693069306931,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -23225,2,57.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,228.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,119310,1,1,0,1,1,110.0,543.0,553.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1488.18781898302,0.0,40043.82633978929,0,4,2,3,45.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005693761581755969,30802.94333829945,8,4,8,8_0,8_3,8_0_1 -23226,1,55.0,271.0,2,111,294.0,348.0,0.0,0,55,0.0,0.0,406.35922290732356,642.0,0.0,631.1512094949122,71,0,0,0,0,0,0,0,0,0,,2,,2,124596,2,3,0,1,1,450.0,357.0,260.0,22,2.0,2.0,3.0,2.0,1.5,1,1,260.687250842815,294.0,22002.29547055821,0,4,2,3,60.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02917877368109502,14668.196980372139,3,2,3_1,3_0_1,3_2_1,3_0_1 -23227,1,54.0,301.0,5,111,352.0,0.0,0.0,0,68,0.0,0.0,486.52532810672756,352.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,107963,2,2,0,1,1,554.0,0.0,344.0,32,2.0,2.0,4.0,3.0,2.0,3,3,287.079818382105,352.0,21816.73599520042,0,1,2,3,79.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.016134402509955584,10908.36799760021,2,1,2_1,2_0_1,2_2_1,2_0_0 -23228,2,74.0,0.0,1,111,380.0,820.0,0.0,74,74,0.0,0.0,525.2262064788536,1200.0,0.0,1487.1953786949082,71,0,0,0,0,0,0,0,0,0,,2,,1,110765,2,1,0,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,3,3,1696.65056713296,380.0,65965.71930161736,5,5,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.01819126680804007,43977.146201078234,10,5,10,10_0,10_3,10_1_0 -23229,1,60.0,321.0,2,111,390.0,0.0,0.0,0,55,0.0,0.0,539.0479487546129,390.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,117800,1,2,0,1,1,540.0,0.0,311.0,12,1.0,3.0,3.0,1.0,1.0,2,2,260.638037643518,390.0,11501.6,0,1,2,3,86.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03390832579814982,11501.6,2,1,2_1,2_0_1,2_2_1,2_0_1 -23230,2,30.0,0.0,1,111,0.0,0.0,1900.0,37,37,0.0,0.0,970.7353361912976,1900.0,0.0,2172.16697184,71,2,2,2,2,1,2,2,2,3,90.0,2,,1,100231,2,2,0,0,1,,0.0,717.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1627.22106970699,0.0,53805.07554949208,1,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.03531265369662576,35870.050366328054,9,5,9,9_0,9_3,9_1_0 -23231,1,20.0,297.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,237.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133399,2,1,0,0,1,,0.0,353.0,31,0.0,0.0,3.0,2.0,1.3,1,1,251.431535566228,0.0,9378.790332861568,0,6,3,4,45.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025269783371699363,7214.454102201206,1,1,1_1,1_0_1,1_2_1,1_0_1 -23232,2,20.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,279.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,119738,2,1,0,1,1,420.0,0.0,672.0,22,1.0,0.0,1.0,2.0,1.5,1,1,1549.98204524083,0.0,15440.253953010644,0,1,2,3,53.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018069650981718387,10293.50263534043,2,1,2_0,2_0_0,2_3_0,2_0_1 -23233,1,39.0,327.0,5,111,162.0,72.0,0.0,0,62,0.0,0.0,223.91222486730075,234.0,0.0,130.5830088610163,43,2,2,2,1,1,2,2,2,0,,2,,3,129731,1,3,0,1,1,561.0,0.0,305.0,32,1.0,0.0,3.0,2.0,1.5,2,2,261.504996085921,162.0,8977.49261254519,0,4,2,3,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.026065184355931113,5984.995075030126,1,1,1_1,1_0_1,1_2_1,1_0_0 -23234,2,32.0,0.0,7,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,291.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,114648,2,1,0,1,1,,0.0,697.0,43,2.0,0.0,5.0,3.0,1.8,5,3,1916.55401381509,0.0,72256.73958687189,4,1,2,3,83.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.004027305987839935,40142.633103817716,9,5,9,9_0,9_3,9_0_0 -23235,2,56.0,0.0,1,111,601.0,0.0,0.0,56,47,0.0,0.0,830.6867107731342,601.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,109643,1,2,0,0,2,,0.0,642.0,43,2.0,2.0,3.0,2.0,1.5,1,1,1539.9726791426,601.0,64159.60464783822,1,1,2,3,55.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.009367264703372045,42773.06976522548,9,5,9,9_0,9_3,9_1_0 -23236,2,29.0,0.0,1,111,445.0,700.0,0.0,46,62,0.0,0.0,615.0675312712891,1145.0,0.0,1269.5570305932142,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,101703,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,211.099460275831,445.0,54756.18966145239,1,1,1,2,68.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02091087796793984,36504.126440968255,9,5,9,9_1,9_2,9_1_0 -23237,2,39.0,0.0,1,111,1000.0,0.0,0.0,55,85,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,117964,1,1,0,0,1,,0.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,1635.49379181314,1000.0,20421.40322936374,1,7,1,2,96.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.048968231456402056,13614.268819575826,3,2,3_0,3_0_0,3_3_0,3_1_0 -23238,2,26.0,0.0,2,111,414.0,0.0,0.0,0,63,0.0,0.0,572.2201302164352,414.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,114618,2,1,0,1,1,274.0,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,2,2,265.924539807065,414.0,16350.638276561516,0,1,2,3,57.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025320112462732726,16350.638276561516,4,2,4_0,4_0_0,4_2_0,4_0_1 -23240,1,66.0,95.0,2,111,176.0,74.0,0.0,0,77,0.0,0.0,243.26266405336378,250.0,0.0,134.21031466271123,31,2,2,2,2,1,2,2,2,0,,2,,2,130054,2,1,0,1,1,390.0,0.0,221.0,11,0.0,0.0,2.0,1.0,1.0,4,2,271.399431969731,176.0,11188.200049865702,0,5,2,3,45.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.022344970494427376,11188.200049865702,2,1,2_1,2_0_1,2_2_1,2_0_1 -23242,1,34.0,193.0,2,111,0.0,0.0,1375.0,56,62,0.0,0.0,702.505835401597,1375.0,0.0,1571.9629401473683,31,0,0,0,0,0,0,0,0,2,45.0,2,,2,114140,2,2,0,0,1,,407.0,,43,2.0,0.0,4.0,4.0,2.1,3,1,248.40981159005,0.0,38733.456648575266,1,1,1,2,78.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.035499026396617166,18444.503165988222,4,2,4_1,4_0_1,4_2_1,4_0_1 -23243,2,67.0,0.0,8,111,0.0,0.0,970.0,0,74,0.0,0.0,495.5859347923993,970.0,0.0,1108.9484014130526,41,0,0,0,0,0,0,0,0,0,,2,2001.0,6,105842,2,1,0,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1694.2459444786,0.0,72575.1998671574,0,5,0,1,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013365447174454922,72575.1998671574,10,5,10,10_0,10_3,10_0_0 -23244,2,72.0,0.0,2,111,844.0,921.0,0.0,86,75,0.0,0.0,1166.5550480740853,1765.0,0.0,1670.3743216805005,42,0,0,0,0,0,0,0,0,0,,1,,2,110618,2,1,2,0,1,,256.0,,41,1.0,3.0,3.0,3.0,2.0,3,3,225.809303922338,844.0,62860.9187523761,5,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02807785878779069,31430.45937618805,8,4,8,8_1,8_2,8_0_1 -23245,2,44.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,187.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,113615,2,1,0,0,1,,69.0,454.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1758.20984905678,0.0,14756.0,0,1,2,3,37.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.012672811059907835,14756.0,3,2,3_0,3_0_0,3_3_0,3_1_0 -23246,1,33.0,271.0,2,111,0.0,0.0,550.0,0,63,0.0,0.0,281.0023341606388,550.0,0.0,628.7851760589474,10,0,0,0,0,0,0,0,0,0,,2,,2,125570,2,1,0,0,1,,150.0,308.0,12,1.0,0.0,2.0,1.0,1.0,4,2,271.023046733175,0.0,6065.990556644509,0,4,2,3,47.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09066944547045924,6065.990556644509,1,1,1_1,1_0_1,1_2_1,1_0_1 -23248,2,52.0,0.0,2,111,2000.0,0.0,0.0,55,47,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,2,118589,2,2,1,0,1,,600.0,,43,2.0,4.0,5.0,3.0,2.0,1,1,227.330142477952,2000.0,61359.51049335376,4,1,1,2,110.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03259478414868764,30679.75524667688,8,4,8,8_1,8_2,8_0_1 -23249,2,33.0,0.0,2,111,330.0,300.0,0.0,55,38,716.9207409686403,0.0,456.1174951000571,1110.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,124628,2,1,0,1,1,,120.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,413.852464424363,330.0,54285.98532105535,1,1,1,2,62.0,9,7,5,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020447266332835185,25850.469200502546,7,4,7,7_0,7_3,7_0_1 -23250,2,64.0,0.0,6,111,400.0,690.0,0.0,0,78,0.0,0.0,552.8696910303722,1090.0,0.0,1251.4205015847397,50,2,2,2,2,1,2,2,2,0,,1,,4,102612,1,3,3,0,1,,240.0,498.0,11,0.0,2.0,4.0,1.0,1.0,1,1,205.10511747718,400.0,20814.009657779516,0,5,2,3,86.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.0523685737597704,20814.009657779516,5,3,5,5_1,5_2,5_0_0 -23251,1,39.0,393.0,2,111,260.0,200.0,0.0,0,52,0.0,0.0,359.36529916974195,460.0,0.0,362.73058016948977,41,2,1,2,2,1,2,2,1,3,15.0,2,,2,118278,1,1,0,1,1,490.0,400.0,351.0,32,1.0,0.0,4.0,4.0,1.9,2,2,384.726337044441,260.0,15416.599282992234,0,1,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.029837968254612234,8113.9996226274925,1,1,1_1,1_0_1,1_3_1,1_0_1 -23252,1,44.0,270.0,2,111,190.0,111.0,0.0,0,62,0.0,0.0,262.6131032394268,301.0,0.0,201.31547199406683,60,0,0,0,0,0,0,0,0,0,,2,,2,107101,2,1,0,1,1,442.0,110.0,273.0,12,1.0,1.0,3.0,1.0,1.0,2,2,435.209416378247,190.0,9344.453423932311,0,4,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.032211621840727615,9344.453423932311,1,1,1_1,1_0_1,1_3_1,1_0_1 -23253,1,43.0,340.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1730.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,107422,1,3,0,1,1,,0.0,400.0,32,1.0,0.0,4.0,3.0,2.0,2,2,283.085669384459,0.0,11647.970678856227,0,4,2,3,60.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.14852372552245105,5823.985339428114,1,1,1_1,1_0_1,1_3_1,1_0_1 -23254,1,45.0,225.0,5,111,300.0,90.0,0.0,0,55,0.0,0.0,414.65226827277917,390.0,0.0,163.2287610762704,44,2,1,2,2,1,1,2,2,0,,2,,3,106010,2,1,0,1,1,,153.0,297.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1458.60158337368,300.0,12504.442064899193,0,4,2,3,64.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.03118891654468584,12504.442064899193,2,1,2_1,2_0_1,2_3_1,2_0_0 -23255,2,71.0,0.0,1,111,450.0,1000.0,0.0,77,74,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,1,,1,115300,2,1,2,0,2,,240.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1125.58432938594,450.0,55593.8603556139,5,5,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02608201680410161,37062.573570409266,9,5,9,9_1,9_3,9_1_0 -23256,2,67.0,0.0,6,111,407.0,970.0,0.0,86,86,0.0,0.0,562.5449106234038,1377.0,0.0,1759.2433138220254,12,2,2,2,2,1,1,2,2,0,,1,,4,105708,1,3,4,0,1,,240.0,520.0,41,0.0,4.0,5.0,2.0,1.5,2,2,207.091715960909,407.0,27450.758864789,5,5,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.05016254766516759,18300.505909859334,4,2,4_0,4_1_0,4_3_0,4_0_0 -23257,1,44.0,251.0,1,111,200.0,450.0,0.0,0,56,0.0,0.0,276.4348455151861,650.0,0.0,816.143805381352,41,2,2,2,2,1,2,2,2,4,20.0,2,,1,119846,2,3,0,0,1,,200.0,238.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1427.4735999106,200.0,9414.257243879943,0,1,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.0690442148712852,9414.257243879943,1,1,1_1,1_0_1,1_3_1,1_1_0 -23258,2,70.0,0.0,5,111,700.0,0.0,0.0,74,75,0.0,0.0,967.5219593031513,1487.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,3,106361,2,2,0,1,1,,290.0,,41,0.0,1.0,3.0,2.0,1.5,4,4,287.20516474738,700.0,33472.31791352308,5,5,0,1,75.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.044424769262819415,22314.878609015388,6,3,6,6_0,6_3,6_0_0 -23259,1,33.0,283.0,6,111,1000.0,0.0,0.0,63,52,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,4,114296,1,2,0,0,1,,300.0,454.0,43,2.0,0.0,3.0,4.0,2.1,5,5,1475.68564718714,1000.0,25492.243589843438,4,1,2,3,73.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03922761825477055,12139.16361421116,2,1,2_1,2_0_1,2_3_1,2_0_0 -23260,2,53.0,0.0,1,111,400.0,900.0,0.0,56,62,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,5.0,3,,1,131177,1,3,0,0,2,,280.0,310.0,43,2.0,0.0,4.0,2.0,1.5,2,2,226.705800963071,400.0,29613.376643311483,1,1,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04389908032637743,19742.25109554099,5,3,5,5_0,5_3,5_1_0 -23261,2,57.0,0.0,1,111,700.0,2500.0,0.0,0,22,0.0,0.0,967.5219593031513,6215.0,0.0,4534.132252118622,12,0,0,0,0,0,0,0,0,0,,1,,1,117864,2,1,2,0,1,,450.0,,12,1.0,3.0,9.0,1.0,1.0,4,2,1305.92464068964,700.0,33422.1443029195,0,1,1,2,250.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18595455586783238,33422.1443029195,8,4,8,8_1,8_3,8_1_0 -23262,1,77.0,179.0,2,111,250.0,600.0,0.0,0,78,0.0,0.0,345.54355689398267,850.0,0.0,1088.1917405084694,31,2,2,2,1,1,1,2,2,0,,2,,2,133301,1,3,0,0,1,,400.0,394.0,21,1.0,0.0,5.0,3.0,2.0,2,2,321.074355756853,250.0,21852.35338956247,0,5,2,3,85.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.03889741232200614,10926.176694781236,2,1,2_1,2_0_1,2_3_1,2_0_1 -23263,2,73.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,592.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,109929,2,2,0,1,1,328.0,306.0,512.0,11,0.0,4.0,2.0,1.0,1.0,1,1,1779.83591167698,0.0,17116.152210362445,0,5,2,3,52.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03458721286911622,17116.152210362445,4,2,4_0,4_0_0,4_3_0,4_0_1 -23264,2,54.0,0.0,8,111,900.0,870.0,0.0,34,47,0.0,0.0,1243.9568048183376,1770.0,0.0,1577.8780237372805,50,0,0,0,0,0,0,0,0,2,7.0,1,2001.0,6,114979,2,1,2,0,1,,270.0,,43,2.0,3.0,6.0,2.0,1.5,3,3,1111.20713308798,900.0,71064.09011173864,1,1,1,2,145.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024907094387853487,47376.06007449242,10,5,10,10_1,10_3,10_0_0 -23265,1,70.0,220.0,6,111,790.0,0.0,0.0,0,77,0.0,0.0,1091.917639784985,790.0,0.0,0.0,10,2,2,2,1,1,2,2,2,0,,2,,4,112764,2,1,0,1,1,648.0,0.0,320.0,21,2.0,1.0,4.0,5.0,2.5999999999999996,5,5,253.052511752027,790.0,36721.109244180705,0,5,2,3,78.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.02151351133613137,14123.50355545412,3,2,3_1,3_0_1,3_3_1,3_0_0 -23266,2,32.0,0.0,6,111,330.0,1200.0,0.0,35,47,0.0,0.0,456.1174951000571,1530.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,20.0,2,,4,109062,2,1,0,0,1,,50.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,326.731980810142,330.0,43312.78503022769,1,1,1,2,74.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03532444286213005,24062.658350126494,6,3,6,6_0,6_3,6_0_0 -23267,2,38.0,0.0,2,111,992.0,1550.0,0.0,37,31,0.0,0.0,1371.1168337553231,2542.0,0.0,2811.161996313546,12,0,0,0,0,0,0,0,0,0,,1,,2,130440,2,1,1,0,1,,460.0,,43,2.0,0.0,8.0,3.0,1.8,4,2,1317.85063099825,992.0,162881.2518515585,1,1,1,2,200.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01560646158538029,90489.58436197694,10,5,10,10_1,10_3,10_0_1 -23268,1,59.0,153.0,6,111,550.0,825.0,0.0,68,75,119.48679016144006,0.0,760.1958251667618,1455.0,0.0,1496.2636431991452,20,2,2,2,1,1,1,2,2,0,,2,,4,106750,1,3,0,0,1,,0.0,385.0,42,1.0,3.0,3.0,2.0,1.5,2,2,264.244205662743,550.0,26579.96976675133,1,7,2,3,80.0,8,7,5,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,1,1,0,1,0.054740468584732846,17719.979844500886,4,2,4_1,4_0_1,4_3_1,4_0_0 -23269,1,71.0,179.0,2,111,280.0,240.0,0.0,0,78,716.9207409686403,0.0,387.00878372126056,1000.0,0.0,435.27669620338776,31,0,0,0,0,0,0,0,0,0,,2,,2,124910,2,1,0,1,1,480.0,290.0,256.0,11,0.0,2.0,4.0,1.0,1.0,4,4,478.449250230574,280.0,9500.802463109934,0,5,2,3,92.0,9,7,5,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10525426708773673,9500.802463109934,1,1,1_1,1_0_1,1_3_1,1_0_1 -23270,1,46.0,270.0,2,111,467.0,704.0,0.0,0,62,0.0,0.0,645.4753642779596,1171.0,0.0,1276.811642196604,70,0,0,0,0,0,0,0,0,0,,2,,2,103002,1,3,0,1,2,,155.0,273.0,12,1.0,0.0,2.0,1.0,1.0,1,1,278.907657618606,467.0,6060.0,0,4,2,3,53.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.19323432343234323,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_1 -23271,2,80.0,0.0,2,111,220.0,162.0,0.0,0,75,0.0,0.0,304.0783300667047,382.0,0.0,293.8117699372867,12,2,2,2,2,1,2,2,2,0,,2,,2,109177,2,1,0,1,1,576.0,112.0,324.0,11,0.0,3.0,4.0,1.0,1.0,3,2,417.640292609736,220.0,21461.283363949853,0,5,2,3,85.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.01779949472367875,21461.283363949853,6,3,6,6_0,6_3,6_0_1 -23272,1,23.0,239.0,7,111,0.0,0.0,0.0,54,54,0.0,0.0,0.0,307.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,10.0,2,,5,133302,2,1,0,1,1,,219.0,403.0,43,2.0,0.0,3.0,2.0,1.5,1,1,249.494034438367,0.0,36445.45097797641,1,1,2,3,70.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.00842354784374919,24296.967318650943,7,4,7,7_0,7_3,7_0_0 -23273,2,34.0,0.0,2,111,0.0,0.0,872.0,0,43,0.0,0.0,445.5164279783218,872.0,0.0,996.9103154970948,50,0,0,0,0,0,0,0,0,2,2.0,2,,2,102580,2,2,0,0,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1720.44862195599,0.0,20359.555799899576,0,1,2,3,46.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.042830011055756984,20359.555799899576,5,3,5,5_0,5_3,5_0_1 -23274,2,75.0,0.0,2,111,610.0,1600.0,0.0,86,78,0.0,0.0,843.1262788213177,2210.0,0.0,2901.844641355918,50,2,2,2,2,1,2,2,2,0,,1,,2,123409,1,3,4,0,2,,114.0,333.0,41,0.0,5.0,4.0,2.0,1.5,1,1,212.808396845473,610.0,16001.962998923646,5,5,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.1381080558771854,10667.975332615764,2,1,2_0,2_1_0,2_3_0,2_0_1 -23275,2,60.0,0.0,9,111,505.0,0.0,0.0,0,74,0.0,0.0,697.9979849258449,505.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2008.0,6,103719,1,1,0,0,1,,0.0,648.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1629.6728960444,505.0,31034.74045192463,0,5,2,3,49.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016272087107745806,31034.74045192463,8,4,8,8_0,8_3,8_0_0 -23276,1,59.0,270.0,5,111,180.0,0.0,0.0,0,77,0.0,0.0,248.7913609636675,180.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,111144,1,2,0,1,2,,0.0,282.0,11,0.0,2.0,2.0,1.0,1.0,1,1,296.234011357034,180.0,11126.246102377707,0,7,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01617796320014291,11126.246102377707,2,1,2_1,2_0_1,2_3_1,2_0_0 -23277,1,45.0,268.0,2,111,350.0,250.0,0.0,85,22,0.0,0.0,483.76097965157567,600.0,0.0,453.4132252118622,50,0,0,0,0,0,0,0,0,1,1.0,2,,2,124620,2,2,0,1,1,630.0,0.0,384.0,42,2.0,2.0,4.0,4.0,2.5,2,2,1447.7027746667,350.0,8647.93328937615,6,1,2,3,87.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06938073871789582,3459.1733157504596,1,1,1_1,1_0_1,1_3_1,1_0_1 -23278,1,22.0,274.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,165.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,2,,1,117191,2,1,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1905.48506839169,0.0,12728.181906425605,0,1,2,3,31.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.01296335967014288,12728.181906425605,2,1,2_1,2_0_1,2_3_1,2_1_0 -23281,2,27.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,1811.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,1,112619,2,2,0,0,1,,135.0,500.0,12,1.0,0.0,2.0,1.0,1.0,5,4,1860.96316517715,0.0,24601.868182220216,0,1,2,3,40.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.07361229588689572,24601.868182220216,7,4,7,7_0,7_3,7_1_0 -23282,1,38.0,390.0,2,111,400.0,1000.0,0.0,67,67,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,43,0,0,0,0,0,0,0,0,2,80.0,2,,2,126693,1,2,0,0,1,,0.0,359.0,43,2.0,0.0,4.0,4.0,2.1,2,2,255.072969103124,400.0,16011.366798897308,1,1,2,3,60.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08743788194874262,7624.460380427289,1,1,1_1,1_0_1,1_3_1,1_0_1 -23283,2,89.0,0.0,1,111,192.0,61.0,0.0,0,77,0.0,0.0,265.37745169457867,253.0,0.0,110.63282695169438,60,0,0,0,0,0,0,0,0,0,,2,,1,104613,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1528.96775282747,192.0,33924.41541981783,0,5,0,1,53.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.007457755627299726,33924.41541981783,9,5,9,9_0,9_3,9_1_0 -23284,1,47.0,271.0,2,111,115.0,200.0,0.0,0,68,0.0,0.0,158.950036171232,315.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,2,107775,2,2,0,1,1,450.0,0.0,268.0,12,1.0,0.0,2.0,1.0,1.0,2,2,294.311312620932,115.0,11136.19777796716,0,4,2,3,45.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.028286135562644543,11136.19777796716,2,1,2_1,2_0_1,2_3_1,2_0_1 -23285,1,29.0,323.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,674.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,119343,2,2,0,0,1,,0.0,294.0,31,0.0,0.0,3.0,2.0,1.3,2,2,264.546937038164,0.0,7815.1683239252925,0,7,2,3,57.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08624254425034224,6011.667941480994,1,1,1_1,1_0_1,1_3_1,1_0_1 -23286,2,42.0,0.0,1,111,2651.0,0.0,0.0,52,37,0.0,0.0,3664.143877303792,2651.0,0.0,0.0,31,2,2,1,2,2,2,2,1,2,20.0,2,,1,104174,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1390.0744342761,2651.0,64159.132365744605,1,1,1,2,90.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.041319137311392376,30551.967793211716,8,4,8,8_0,8_3,8_1_0 -23287,2,63.0,0.0,2,111,253.0,352.0,0.0,0,77,0.0,0.0,349.69007957671045,605.0,0.0,638.405821098302,50,0,0,0,0,0,0,0,0,0,,2,,2,102044,2,1,0,1,1,330.0,0.0,284.0,11,0.0,1.0,3.0,1.0,1.0,2,2,284.484829033884,253.0,15241.187226940689,0,5,2,3,60.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.039695070403084315,15241.187226940689,3,2,3_0,3_0_0,3_3_0,3_0_1 -23288,2,76.0,0.0,9,111,500.0,0.0,0.0,86,74,0.0,0.0,691.0871137879653,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2004.0,6,129187,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1600.70982673116,500.0,76781.2003882314,6,5,0,1,89.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.006512010719705252,51187.4669254876,10,5,10,10_0,10_3,10_0_0 -23289,2,80.0,0.0,2,111,109.0,1105.0,0.0,0,77,0.0,0.0,150.65699080577645,1214.0,0.0,2004.086455436431,31,0,0,0,0,0,0,0,0,0,,1,,2,109696,2,1,2,0,1,,177.0,392.0,11,0.0,5.0,5.0,1.0,1.0,2,2,202.430284875509,109.0,19730.561052422327,0,5,2,3,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061528914295671124,19730.561052422327,5,3,5,5_1,5_3,5_0_1 -23290,2,67.0,0.0,2,111,190.0,250.0,0.0,0,77,0.0,0.0,262.6131032394268,920.0,0.0,453.4132252118622,60,2,2,2,2,1,2,2,2,0,,2,,2,126158,2,3,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,296.765163729287,190.0,17081.762571394775,0,5,0,1,62.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.05385861067643205,17081.762571394775,4,2,4_0,4_0_0,4_3_0,4_0_1 -23291,1,42.0,176.0,2,111,455.0,0.0,0.0,85,63,0.0,0.0,628.8892735470484,455.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,2,,2,110580,2,2,0,1,1,509.0,0.0,369.0,42,1.0,0.0,4.0,4.0,2.3,2,2,229.467886928468,455.0,23449.95001372339,6,1,2,3,76.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.019403026434330336,10195.6304407493,2,1,2_1,2_0_1,2_3_1,2_0_1 -23292,2,24.0,0.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,726.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,2,,1,111522,1,2,0,0,1,,0.0,285.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2155.93479162451,0.0,1505.7173093792853,0,1,2,3,16.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.4821622196129798,1505.7173093792853,1,1,1_0,1_0_0,1_3_0,1_1_0 -23293,2,66.0,0.0,1,111,473.0,1161.0,0.0,0,74,0.0,0.0,653.7684096434151,1634.0,0.0,2105.651017883888,50,0,0,0,0,0,0,0,0,0,,1,,1,126724,1,2,3,0,2,,192.0,,11,0.0,0.0,6.0,1.0,1.0,3,3,1305.92464068964,473.0,42244.59963301636,0,5,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038679500201084724,42244.59963301636,9,5,9,9_1,9_3,9_1_0 -23294,1,36.0,111.0,2,111,520.0,1050.0,0.0,85,67,0.0,0.0,718.7305983394839,1570.0,0.0,1904.3355458898213,31,0,0,0,0,0,0,0,0,0,,2,,2,112351,2,2,0,0,1,,0.0,295.0,42,1.0,0.0,3.0,4.0,2.1,2,2,249.01529533354,520.0,24555.310089811155,6,4,2,3,61.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06393729072276905,11693.004804671978,2,1,2_1,2_0_1,2_3_1,2_0_1 -23295,0,42.0,0.0,1,111,600.0,1374.0,0.0,22,23,0.0,0.0,829.3045365455583,1974.0,0.0,2491.959085764395,41,0,0,0,0,0,0,0,0,3,20.0,2,,1,113377,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,4,4,1575.47239283467,600.0,128002.69646482055,1,1,5,0,150.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015421550127598459,85335.13097654704,10,5,10,10_0,10_3,10_1_0 -23296,2,56.0,0.0,2,111,506.0,300.0,0.0,54,22,0.0,0.0,699.3801591534209,806.0,0.0,544.0958702542347,42,0,0,0,0,0,0,0,0,0,,2,,2,131627,1,2,0,1,1,421.0,0.0,371.0,43,2.0,1.0,4.0,2.0,1.5,2,2,239.288646409968,506.0,23230.834517036757,4,1,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034695266733052794,15487.223011357839,3,2,3_0,3_0_0,3_3_0,3_0_1 -23297,2,63.0,0.0,2,111,350.0,1150.0,0.0,0,75,0.0,0.0,483.76097965157567,1500.0,0.0,2085.7008359745664,31,2,2,2,2,1,2,2,2,0,,2,,2,106213,1,2,0,0,1,,240.0,,21,1.0,2.0,3.0,2.0,1.5,2,2,1542.42673772136,350.0,27598.551601341285,0,6,0,1,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.054350678313390195,18399.03440089419,4,2,4_0,4_0_0,4_3_0,4_0_1 -23298,1,44.0,369.0,2,111,410.0,350.0,0.0,85,53,0.0,0.0,566.6914333061316,760.0,0.0,634.7785152966071,31,1,2,2,2,1,2,2,2,0,,2,,2,102759,1,3,0,1,1,663.0,0.0,299.0,42,1.0,0.0,4.0,7.0,3.1999999999999997,4,3,288.916789411193,410.0,27010.311151347854,6,1,2,3,74.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.028137402628998404,8440.722234796205,1,1,1_1,1_0_1,1_3_1,1_0_1 -23299,2,27.0,0.0,6,111,720.0,0.0,0.0,43,37,0.0,0.0,995.16544385467,720.0,0.0,0.0,70,2,2,2,2,2,1,2,2,2,25.0,2,,4,109730,1,2,0,0,1,,0.0,648.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1578.55832770979,720.0,53547.99749146282,1,1,2,3,71.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,1,1,0,0,0.013445880961557712,35698.66499430854,9,5,9,9_0,9_3,9_0_0 -23300,2,45.0,0.0,6,111,670.0,380.0,0.0,0,54,0.0,0.0,926.0567324758734,1050.0,0.0,689.1881023220305,31,0,0,0,0,0,0,0,0,2,20.0,2,,4,114065,1,2,0,0,1,,0.0,432.0,32,2.0,1.0,4.0,2.0,1.5,3,2,259.620908103743,670.0,18642.908792716175,0,1,2,3,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.056321683041770675,12428.605861810784,2,1,2_0,2_0_0,2_3_0,2_0_0 -23301,2,36.0,0.0,1,111,0.0,0.0,0.0,31,38,0.0,0.0,0.0,4193.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,105929,2,1,4,0,2,,255.0,950.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1293.14535678897,0.0,71059.01655630396,1,1,2,3,100.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05900729004147778,33837.626931573315,9,5,9,9_1,9_3,9_1_0 -23302,2,83.0,0.0,1,111,250.0,1750.0,0.0,0,75,0.0,0.0,345.54355689398267,2000.0,0.0,3173.8925764830356,50,2,2,2,2,1,2,2,2,0,,1,,1,132372,1,2,3,0,2,,400.0,265.0,11,0.0,0.0,4.0,1.0,1.0,2,2,222.349881346912,250.0,23231.2217724176,0,5,2,3,79.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.08609103815515193,23231.2217724176,6,3,6,6_1,6_3,6_1_0 -23303,2,82.0,0.0,1,111,154.0,0.0,0.0,0,78,1493.5848770180007,0.0,212.8548310466933,1224.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,112564,2,1,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,4,2,232.095127320305,154.0,17440.39870387554,0,5,0,1,80.0,8,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07018188177819623,17440.39870387554,4,2,4_0,4_1_0,4_3_0,4_1_0 -23304,2,52.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,368.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,106038,2,3,0,0,1,,0.0,700.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1627.22106970699,0.0,28157.06540808604,0,1,2,3,75.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.013069543813124756,21659.28108314311,6,3,6,6_0,6_3,6_1_0 -23305,2,43.0,0.0,2,111,240.0,0.0,0.0,0,43,0.0,0.0,331.72181461822333,260.0,34.40654008380383,0.0,31,0,0,0,0,0,0,0,0,1,5.0,2,,2,128415,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,298.141965181491,240.0,30841.186975387587,0,1,1,2,54.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008430285131616031,30841.186975387587,8,4,8,8_0,8_3,8_0_1 -23306,2,53.0,0.0,1,111,1294.0,0.0,0.0,0,90,0.0,0.0,1788.5334504832542,1294.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,10.0,2,,1,132215,2,1,0,0,1,,130.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,1819.67712335366,1294.0,49596.110708609725,0,1,0,1,115.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.026090755535299784,49596.110708609725,10,5,10,10_0,10_3,10_1_0 -23307,2,53.0,0.0,2,111,550.0,816.0,0.0,64,56,0.0,21.738622601208615,760.1958251667618,1447.0,103.2196202514115,1479.9407670915184,31,0,0,0,0,0,0,0,0,0,,1,,2,110292,2,1,2,0,1,,350.0,313.0,43,2.0,4.0,4.0,3.0,2.0,1,1,200.966093952158,550.0,37124.26274520183,4,1,2,3,108.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038977205013640825,18562.131372600914,4,2,4_0,4_1_0,4_3_0,4_0_1 -23308,2,21.0,0.0,7,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,451.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,5,110403,2,1,0,0,1,540.0,0.0,310.0,12,1.0,0.0,1.0,1.0,1.0,2,2,418.924883974235,0.0,4934.254788869024,0,1,2,3,20.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0914018467423676,4934.254788869024,1,1,1_0,1_0_0,1_3_0,1_0_0 -23310,1,52.0,209.0,2,111,300.0,400.0,0.0,0,52,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,3,10.0,2,,2,113864,2,2,0,1,1,938.0,0.0,380.0,32,1.0,7.0,5.0,2.0,1.5,2,2,233.569767412121,300.0,18557.2499198531,0,1,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03772110646907434,12371.499946568734,2,1,2_1,2_0_1,2_3_1,2_0_1 -23311,1,34.0,88.0,6,111,0.0,0.0,740.0,0,67,0.0,0.0,378.07586777976854,740.0,0.0,846.0018732429473,31,0,0,0,0,0,0,0,0,0,,2,,4,123770,2,3,0,0,1,,0.0,347.0,22,2.0,0.0,2.0,2.0,1.5,2,2,251.462975106218,0.0,35404.86167692079,0,1,2,3,43.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.020901084341260978,23603.241117947193,6,3,6,6_0,6_3,6_0_0 -23312,2,98.0,0.0,1,111,276.0,120.0,0.0,0,77,4585.305572445262,0.0,381.48008681095683,3466.0,0.0,217.63834810169388,20,0,0,0,0,0,0,0,0,0,,1,,1,115589,1,2,3,0,2,,140.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1259.30069518351,276.0,35508.78320988745,0,5,0,1,80.0,9,7,5,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0976096527868319,35508.78320988745,9,5,9,9_1,9_3,9_1_0 -23313,2,87.0,0.0,2,111,301.0,1640.0,0.0,0,78,0.0,0.0,416.0344425003551,1941.0,0.0,2974.3907573898164,44,0,0,0,0,0,0,0,0,0,,1,,2,101684,2,1,1,0,1,,223.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,229.49758347911,301.0,28742.865857754405,0,5,0,1,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06752980059837514,28742.865857754405,8,4,8,8_1,8_3,8_0_1 -23314,2,76.0,0.0,6,111,1800.0,0.0,0.0,75,74,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,122155,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1674.20801055229,1800.0,70711.86443104922,5,5,0,1,90.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02545541705741857,47141.242954032816,10,5,10,10_0,10_3,10_0_0 -23315,1,82.0,60.0,2,111,251.0,280.0,0.0,0,77,0.0,0.0,346.92573112155856,531.0,0.0,507.8228122372857,50,0,0,0,0,0,0,0,0,0,,2,,2,121589,2,1,0,1,1,,0.0,299.0,11,0.0,7.0,3.0,1.0,1.0,4,4,277.645908331778,251.0,13769.751695180303,0,5,2,3,65.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03856278687914619,13769.751695180303,3,2,3_1,3_0_1,3_3_1,3_0_1 -23316,2,59.0,0.0,2,111,522.0,0.0,0.0,0,45,0.0,0.0,721.4949467946358,522.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,2,102463,2,2,0,0,1,,0.0,433.0,12,1.0,0.0,1.0,1.0,1.0,3,3,2166.47002187518,522.0,38644.775680461134,0,1,3,4,25.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01350764730312367,38644.775680461134,9,5,9,9_0,9_3,9_0_1 -23317,2,33.0,0.0,2,111,500.0,900.0,0.0,43,54,0.0,0.0,691.0871137879653,1400.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,2,8.0,1,,2,112044,2,2,3,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,242.710969264575,500.0,49013.328138709556,1,1,1,2,95.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028563659175274682,27229.62674372753,7,4,7,7_1,7_3,7_0_1 -23318,2,50.0,0.0,2,111,200.0,375.0,0.0,0,52,0.0,0.0,276.4348455151861,575.0,0.0,680.1198378177934,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,105286,2,2,0,0,1,,148.0,240.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1436.79910514491,200.0,25433.785841382094,0,1,2,3,44.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022607723584132922,25433.785841382094,7,4,7,7_0,7_3,7_0_1 -23319,2,36.0,0.0,2,111,582.0,0.0,0.0,54,46,0.0,0.0,804.4254004491916,582.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,2,,2,110221,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1442.80698073785,582.0,52728.0,1,1,1,2,68.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011037778789258079,35152.0,9,5,9,9_0,9_3,9_0_1 -23320,2,50.0,0.0,1,111,1364.0,0.0,0.0,69,67,0.0,0.0,1885.2856464135693,1484.0,206.439240502823,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,1,102704,2,1,2,0,1,,305.0,,43,3.0,3.0,5.0,3.0,2.0,2,2,247.289448897085,1364.0,39871.70636745589,4,1,0,1,122.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.03721937522120376,19935.853183727944,5,3,5,5_1,5_3,5_1_0 -23321,2,52.0,0.0,6,111,1560.0,0.0,0.0,0,38,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,4,109361,2,2,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,1544.3240252788,1560.0,48874.121561240594,0,1,1,2,80.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03191873224862524,48874.121561240594,10,5,10,10_0,10_3,10_0_0 -23322,2,38.0,0.0,5,111,270.0,833.0,0.0,67,67,0.0,0.0,373.1870414455012,1103.0,0.0,1510.772866405925,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,118557,2,1,2,0,1,,282.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,239.929308360651,270.0,44847.436457980344,1,1,0,1,117.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024594493846564723,24915.242476655745,7,4,7,7_1,7_2,7_0_0 -23323,2,66.0,0.0,7,111,1053.0,0.0,0.0,78,74,0.0,0.0,1455.4294616374548,1053.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,128138,2,2,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1431.15894105799,1053.0,58525.193043559906,6,5,0,1,67.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017992251631126773,39016.79536237327,9,5,9,9_0,9_3,9_0_0 -23324,2,56.0,0.0,1,111,535.0,1034.0,0.0,75,46,0.0,0.0,739.4632117531229,1569.0,0.0,1875.3170994762622,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,133261,2,1,3,0,1,,300.0,,42,2.0,1.0,6.0,3.0,2.0,1,1,1193.1004224,535.0,55423.47189160915,7,1,0,1,130.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028309305542396725,27711.735945804576,7,4,7,7_1,7_3,7_1_0 -23325,2,57.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,602.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,105111,2,1,0,0,1,,170.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,319.059442066587,0.0,16006.98105366488,0,1,1,2,50.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03760859077559594,16006.98105366488,4,2,4_0,4_0_0,4_2_0,4_0_1 -23326,2,28.0,0.0,5,111,0.0,0.0,0.0,53,42,0.0,0.0,0.0,674.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,40.0,2,,3,123194,2,2,0,0,2,,0.0,505.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1892.94386759197,0.0,18422.196881237807,1,1,2,3,34.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.036586298819031686,12281.464587491871,2,1,2_0,2_0_0,2_3_0,2_0_0 -23327,1,41.0,220.0,5,111,480.0,100.0,0.0,0,43,0.0,0.0,663.4436292364467,581.0,0.0,181.36529008474488,42,0,0,0,0,0,0,0,0,2,15.0,2,,3,126567,2,1,0,1,1,221.0,0.0,270.0,32,1.0,0.0,3.0,2.0,1.3,5,3,283.920681576933,480.0,12797.959108234465,0,1,2,3,66.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04539786344731895,9844.583929411127,2,1,2_1,2_0_1,2_2_1,2_0_0 -23329,1,27.0,346.0,5,111,420.0,156.0,0.0,0,56,0.0,0.0,580.5131755818909,576.0,0.0,282.929852532202,70,0,0,0,0,0,0,0,0,2,5.0,2,,3,132977,2,1,0,1,1,1188.0,0.0,311.0,32,1.0,0.0,4.0,3.0,1.6,3,3,323.675836170257,420.0,9376.729413326339,0,1,2,3,75.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.061428668207208874,5860.455883328961,1,1,1_1,1_0_1,1_2_1,1_0_0 -23330,1,24.0,354.0,9,111,220.0,0.0,0.0,0,56,0.0,0.0,304.0783300667047,220.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,103953,2,1,0,1,1,396.0,0.0,333.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1311.17506661723,220.0,16462.094570946894,0,1,2,3,65.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.013364034512853954,12663.14966995915,2,1,2_1,2_0_1,2_3_1,2_0_0 -23331,2,26.0,0.0,2,111,450.0,70.0,0.0,0,67,0.0,0.0,621.9784024091688,1503.0,0.0,126.95570305932142,31,0,0,0,0,0,0,0,0,0,,2,,2,123406,2,1,0,1,1,840.0,0.0,319.0,22,4.0,0.0,4.0,4.0,2.5,2,2,233.817255013388,450.0,62219.64790824569,0,1,2,3,75.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024156356561458685,24887.85916329828,7,4,7,7_0,7_2,7_0_1 -23332,2,39.0,0.0,1,111,1550.0,0.0,0.0,0,55,0.0,0.0,2142.370052742692,1550.0,0.0,0.0,50,2,2,1,2,1,2,2,2,3,20.0,2,,1,115142,2,3,0,0,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1858.18808091624,1550.0,22419.613976380315,0,1,2,3,39.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.06913589152930857,22419.613976380315,6,3,6,6_0,6_3,6_1_0 -23333,2,44.0,0.0,2,111,473.0,961.0,0.0,0,62,0.0,0.0,653.7684096434151,1434.0,0.0,1742.9204377143983,70,0,0,0,0,0,0,0,0,0,,2,,2,107519,2,1,0,0,1,,0.0,322.0,22,2.0,4.0,5.0,4.0,2.5,2,2,245.531138462004,473.0,53459.90398159723,0,1,2,3,83.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02682384166820863,21383.96159263889,6,3,6,6_0,6_2,6_0_1 -23335,1,44.0,255.0,5,111,165.0,0.0,0.0,0,68,0.0,0.0,228.05874755002856,165.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,111432,2,3,0,1,1,481.0,0.0,245.0,12,1.0,2.0,3.0,1.0,1.0,2,2,312.820978411401,165.0,7645.394034536892,0,4,2,3,63.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02158162146445793,7645.394034536892,1,1,1_1,1_0_1,1_2_1,1_0_0 -23337,2,65.0,0.0,2,111,235.0,490.0,0.0,0,56,0.0,0.0,324.81094348034367,725.0,0.0,888.68992141525,50,0,0,0,0,0,0,0,0,0,,1,,2,128481,2,1,1,0,1,,336.0,,12,1.0,3.0,6.0,1.0,1.0,2,2,246.015827086331,235.0,12331.593808996337,0,1,0,1,102.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.058792075965970164,12331.593808996337,2,1,2_0,2_1_0,2_2_0,2_0_1 -23338,2,70.0,0.0,5,111,290.0,1100.0,0.0,0,77,0.0,0.0,400.8305259970199,1588.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,1,,3,107264,2,2,1,0,1,,130.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,214.307707234664,290.0,18329.84014134767,0,5,0,1,105.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0866346889964336,18329.84014134767,4,2,4_0,4_1_0,4_2_0,4_0_0 -23340,1,61.0,148.0,5,111,600.0,0.0,0.0,0,78,0.0,0.0,829.3045365455583,600.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,3,107813,2,2,0,1,1,554.0,0.0,320.0,21,0.0,0.0,3.0,2.0,1.5,2,2,264.333310182616,600.0,14237.03800501832,0,5,2,3,70.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.0421435975508747,9491.358670012212,1,1,1_1,1_0_1,1_2_1,1_0_0 -23341,2,87.0,0.0,1,111,201.0,244.0,0.0,0,77,0.0,0.0,277.81701974276206,445.0,0.0,442.53130780677753,20,0,0,0,0,0,0,0,0,0,,2,,1,101448,2,2,0,1,1,1049.0,0.0,326.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1661.42517234001,201.0,18785.659496107102,0,5,2,3,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.023688282015982248,18785.659496107102,5,3,5,5_0,5_3,5_1_0 -23342,1,66.0,325.0,2,111,0.0,0.0,0.0,67,78,0.0,0.0,0.0,382.0,0.0,0.0,44,2,1,2,2,1,2,2,2,0,,2,,2,127675,2,2,0,1,1,320.0,0.0,353.0,42,1.0,1.0,5.0,6.0,3.5,1,1,282.546362787118,0.0,20560.154682280114,4,5,2,3,85.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.01857962675393823,5874.32990922289,1,1,1_1,1_0_1,1_2_1,1_0_1 -23343,1,71.0,205.0,5,111,270.0,0.0,0.0,0,72,0.0,0.0,373.1870414455012,312.0,0.0,0.0,10,2,2,2,1,1,2,2,2,0,,2,,3,116885,1,2,0,1,1,328.0,0.0,410.0,11,0.0,3.0,2.0,1.0,1.0,2,2,1380.42568814233,270.0,28559.160182008487,0,5,2,3,60.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.010924690992718747,28559.160182008487,8,4,8,8_0,8_3,8_0_0 -23344,1,44.0,230.0,5,111,0.0,0.0,0.0,52,67,0.0,0.0,0.0,2873.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,100285,2,2,0,0,1,,0.0,522.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,245.904172336681,0.0,35661.30814613279,1,1,2,3,120.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08056350564110072,13715.887748512612,3,2,3_1,3_0_1,3_2_1,3_0_0 -23345,2,77.0,0.0,2,111,170.0,660.0,0.0,86,78,0.0,0.0,234.9696186879082,830.0,0.0,1197.0109145593162,42,0,0,0,0,0,0,0,0,0,,2,,2,113845,2,1,0,0,2,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1646.12586853977,170.0,33029.980068293284,6,5,0,1,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025128686068955523,22019.98671219552,6,3,6,6_0,6_3,6_0_1 -23346,2,72.0,0.0,2,111,214.0,650.0,0.0,0,78,0.0,0.0,295.7852847012491,864.0,0.0,1178.8743855508417,43,0,0,0,0,0,0,0,0,0,,1,,2,100905,2,1,2,0,1,,115.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,219.483300691913,214.0,18066.751628701913,0,5,0,1,90.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04782265333339715,18066.751628701913,4,2,4_0,4_1_0,4_2_0,4_0_1 -23347,1,22.0,270.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,709.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109989,1,1,0,0,2,,0.0,590.0,22,1.0,0.0,4.0,2.0,1.5,2,2,1635.32560776103,0.0,8569.543020038624,0,1,2,3,65.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08273486676501969,5713.028680025749,1,1,1_1,1_0_1,1_3_1,1_0_1 -23348,2,57.0,0.0,6,111,220.0,0.0,0.0,0,52,0.0,0.0,304.0783300667047,220.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,25.0,2,,4,126744,2,1,0,1,1,408.0,120.0,353.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1374.96104034531,220.0,25730.103166568908,0,1,2,3,55.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008550296070551544,25730.103166568908,7,4,7,7_0,7_3,7_0_0 -23349,2,49.0,0.0,2,111,690.0,1006.0,0.0,56,62,0.0,0.0,953.7002170273921,1696.0,0.0,1824.5348182525336,20,0,0,0,0,0,0,0,0,2,8.0,1,,2,110053,2,1,2,0,1,,690.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,206.171846750426,690.0,31861.724570269245,1,1,1,2,130.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05323001258954352,11379.187346524732,2,1,2_0,2_1_0,2_2_0,2_0_1 -23350,2,64.0,0.0,6,111,294.0,0.0,0.0,0,77,0.0,0.0,406.35922290732356,294.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,125874,2,2,0,0,1,300.0,139.0,406.0,11,0.0,1.0,4.0,1.0,1.0,2,2,1662.68963868223,294.0,20175.0,0,5,2,3,100.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.014572490706319703,20175.0,5,3,5,5_0,5_3,5_0_0 -23351,1,53.0,237.0,5,111,150.0,122.0,0.0,0,85,0.0,0.0,207.32613413638958,272.0,0.0,221.26565390338877,50,0,0,0,0,0,0,0,0,0,,2,,3,104049,2,1,0,1,1,534.0,0.0,288.0,11,0.0,4.0,3.0,1.0,1.0,1,1,281.461005056671,150.0,8049.171676693381,0,6,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.033792297012074445,8049.171676693381,1,1,1_1,1_0_1,1_2_1,1_0_0 -23352,2,24.0,0.0,7,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,604.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,30.0,2,,5,117206,2,1,0,1,1,503.0,0.0,610.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1637.83186998154,0.0,38809.217889694424,1,1,2,3,64.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015563312863369733,25872.81192646295,7,4,7,7_0,7_3,7_0_0 -23353,1,48.0,277.0,5,111,750.0,125.0,0.0,0,65,0.0,0.0,1036.630670681948,979.0,0.0,226.7066126059311,44,2,2,2,1,1,2,2,2,0,,2,,3,111205,2,1,0,1,1,576.0,90.0,347.0,32,1.0,0.0,4.0,3.0,2.0,2,2,270.694917053847,750.0,20071.499461102787,0,4,2,3,76.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.04877562844257032,10035.749730551393,2,1,2_1,2_0_1,2_2_1,2_0_0 -23354,1,22.0,250.0,9,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,277.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2007.0,6,130775,2,2,0,0,1,,0.0,350.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2117.06702896998,0.0,9432.51565815697,0,7,2,3,28.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02936650306649195,9432.51565815697,1,1,1_1,1_0_1,1_3_1,1_0_0 -23355,2,72.0,0.0,2,111,685.0,2260.0,0.0,75,74,0.0,165.62760077111324,946.7893458895124,3105.0,0.0,4098.855555915235,50,0,0,0,0,0,0,0,0,0,,1,,2,124398,2,1,1,0,1,,490.0,,41,0.0,2.0,8.0,2.0,1.5,3,2,1226.22294940863,685.0,217297.89813143213,5,5,0,1,235.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014289139594539235,144865.26542095476,10,5,10,10_1,10_3,10_0_1 -23356,2,30.0,0.0,2,111,480.0,120.0,0.0,0,42,0.0,0.0,663.4436292364467,600.0,0.0,217.63834810169388,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,113117,2,1,0,1,1,541.0,140.0,385.0,12,1.0,0.0,4.0,1.0,1.0,1,1,246.548733718251,480.0,20475.005157011274,0,1,2,3,73.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.02930402192326391,20475.005157011274,5,3,5,5_0,5_2,5_0_1 -23357,1,41.0,131.0,2,111,0.0,0.0,840.0,0,68,0.0,0.0,429.16720126352106,840.0,0.0,960.3264507082105,50,2,2,2,1,1,2,2,2,2,15.0,2,,2,104662,2,2,0,1,1,809.0,452.0,315.0,32,1.0,0.0,4.0,3.0,1.6,2,2,1579.20244174377,0.0,20108.981624871463,0,1,2,3,72.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.041772378913562676,12568.113515544665,2,1,2_1,2_0_1,2_3_1,2_0_1 -23359,2,71.0,0.0,2,111,223.0,106.0,0.0,0,72,0.0,0.0,308.2248527494325,329.0,0.0,192.24720748982958,71,1,2,2,1,1,1,2,2,0,,2,,2,115759,2,1,0,1,1,456.0,89.0,275.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1430.27498474829,223.0,18348.301711706164,0,5,2,3,59.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01793081480615173,18348.301711706164,4,2,4_0,4_0_0,4_3_0,4_0_1 -23360,2,52.0,0.0,1,111,740.0,1290.0,0.0,22,38,0.0,0.0,1022.8089284061887,2030.0,0.0,2339.6122420932093,50,2,2,1,2,1,2,2,2,2,30.0,1,,1,118576,2,1,1,0,1,,600.0,,43,3.0,0.0,5.0,4.0,2.5,5,5,1232.34259179504,740.0,86143.87096536324,1,1,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.023565228463162783,34457.548386145296,9,5,9,9_1,9_3,9_1_0 -23361,1,35.0,342.0,5,111,550.0,100.0,0.0,0,85,0.0,0.0,760.1958251667618,650.0,0.0,181.36529008474488,12,2,2,2,1,1,2,2,2,0,,2,,3,112829,1,3,0,1,2,480.0,360.0,307.0,21,0.0,2.0,4.0,3.0,2.0,2,2,339.954850302609,550.0,14559.052146782027,0,7,2,3,80.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.04464576357353517,7279.526073391014,1,1,1_1,1_0_1,1_2_1,1_0_0 -23362,2,56.0,0.0,5,111,63.0,60.0,0.0,84,37,0.0,0.0,87.07697633728363,123.0,0.0,108.81917405084694,42,0,0,0,0,0,0,0,0,2,10.0,1,,3,112468,1,2,2,0,1,,480.0,,42,1.0,2.0,6.0,3.0,1.8,3,3,1317.85063099825,63.0,81223.7406543983,3,1,0,1,140.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.001514335574907304,45124.300363554605,10,5,10,10_1,10_3,10_0_0 -23363,1,33.0,459.0,2,111,800.0,1270.0,0.0,69,69,0.0,0.0,1105.7393820607444,2070.0,0.0,2303.33918407626,50,2,2,2,1,1,1,1,2,0,,2,,2,131832,1,3,0,0,1,,891.0,438.0,43,2.0,0.0,3.0,5.0,2.4,2,2,289.76124063285,800.0,23332.97420385398,4,4,2,3,65.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.0887156511602405,9722.072584939158,1,1,1_1,1_0_1,1_2_1,1_0_1 -23364,1,63.0,96.0,2,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,326.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,117221,2,1,0,1,1,,0.0,252.0,41,0.0,4.0,2.0,2.0,1.5,2,2,268.197785536051,0.0,31111.008581672366,5,5,2,3,61.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.010478605961751045,20740.67238778158,5,3,5,5_0,5_2,5_0_1 -23365,2,86.0,0.0,2,111,115.0,1100.0,0.0,0,78,0.0,0.0,158.950036171232,1215.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,1,,2,130795,2,1,2,0,1,,158.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,219.787837539967,115.0,24485.99594971162,0,5,0,1,90.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.049620199337422066,24485.99594971162,7,4,7,7_1,7_2,7_0_1 -23367,2,59.0,0.0,2,111,225.0,83.0,0.0,0,54,0.0,0.0,310.9892012045844,308.0,0.0,150.53319077033825,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,126428,2,1,0,1,1,1103.0,0.0,311.0,12,1.0,3.0,4.0,1.0,1.0,3,3,282.855462915766,225.0,26002.594168184987,0,1,2,3,60.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011844972005787328,26002.594168184987,7,4,7,7_0,7_2,7_0_1 -23368,2,55.0,0.0,2,111,600.0,1000.0,0.0,62,46,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,0,,1,,2,107249,2,1,1,0,1,,110.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,225.514498594781,600.0,45940.95392749802,1,1,0,1,110.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034827313392861825,30627.302618332014,8,4,8,8_1,8_2,8_0_1 -23369,2,29.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,100659,2,1,0,1,1,,0.0,273.0,12,1.0,0.0,3.0,1.0,1.0,2,2,287.674492702971,0.0,11049.459171556677,0,4,2,3,60.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04344104019458324,11049.459171556677,2,1,2_0,2_0_0,2_2_0,2_0_1 -23370,2,33.0,0.0,2,111,210.0,240.0,0.0,56,65,0.0,0.0,290.25658779094545,450.0,0.0,435.27669620338776,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,103041,2,1,0,1,1,326.0,0.0,290.0,43,2.0,0.0,4.0,3.0,1.8,2,2,285.16939882276,210.0,36827.877054925455,1,1,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01221900462328756,20459.931697180808,5,3,5,5_0,5_2,5_0_1 -23371,1,73.0,188.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,627.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,,2,108949,2,1,0,1,1,,0.0,369.0,21,1.0,2.0,4.0,2.0,1.5,1,1,278.793185878003,0.0,14127.848216638035,0,5,2,3,60.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04438043149852055,9418.56547775869,1,1,1_1,1_0_1,1_2_1,1_0_1 -23372,2,60.0,0.0,5,111,300.0,800.0,0.0,0,55,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,43,0,0,0,0,0,0,0,0,2,15.0,2,,3,129933,1,2,0,0,2,,0.0,600.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1776.65004202127,300.0,19790.40940806377,0,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05558247822562962,19790.40940806377,5,3,5,5_0,5_3,5_0_0 -23373,2,71.0,0.0,5,111,300.0,632.0,0.0,0,75,0.0,0.0,414.65226827277917,932.0,0.0,1146.2286333355878,10,0,0,0,0,0,0,0,0,0,,2,,3,121880,2,2,0,0,1,,266.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1603.53370356152,300.0,43279.6654234625,0,5,0,1,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02153436240509267,43279.6654234625,9,5,9,9_0,9_3,9_0_0 -23374,1,79.0,126.0,2,111,291.0,0.0,0.0,0,77,0.0,0.0,402.2127002245958,291.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,8,,2,117897,2,1,0,1,1,,0.0,265.0,11,0.0,6.0,4.0,1.0,1.0,2,2,298.964767448995,291.0,10951.701034960262,0,5,2,3,70.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0265712147429028,10951.701034960262,2,1,2_1,2_0_1,2_2_1,2_0_1 -23375,2,58.0,0.0,5,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,303.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,3,123481,2,1,0,1,1,66.0,0.0,282.0,12,1.0,3.0,2.0,1.0,1.0,2,2,403.873795903024,0.0,25468.20785527032,0,1,2,3,45.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011897185766736155,25468.20785527032,7,4,7,7_0,7_3,7_0_0 -23376,2,55.0,0.0,2,111,255.0,56.0,0.0,0,47,0.0,0.0,352.4544280318623,311.0,0.0,101.56456244745713,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,122754,2,3,0,1,1,,0.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,302.435244805053,255.0,29603.67028362485,0,1,1,2,65.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010505454121748829,29603.67028362485,8,4,8,8_0,8_2,8_0_1 -23377,2,64.0,0.0,2,111,310.0,62.0,0.0,0,78,0.0,0.0,428.47401054853844,372.0,0.0,112.44647985254183,50,0,0,0,0,0,0,0,0,0,,2,,2,123041,2,1,0,1,1,,0.0,412.0,11,0.0,3.0,3.0,1.0,1.0,1,1,307.203167125588,310.0,15548.18288336714,0,5,2,3,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02392562544385502,15548.18288336714,3,2,3_0,3_0_0,3_2_0,3_0_1 -23378,1,27.0,191.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,724.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,112929,2,1,0,1,1,44.0,256.0,267.0,12,1.0,2.0,3.0,1.0,1.0,1,1,287.674492702971,0.0,15055.531168025638,0,4,2,3,67.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.048088638781314044,15055.531168025638,3,2,3_1,3_0_1,3_2_1,3_0_1 -23380,2,31.0,0.0,5,111,552.0,0.0,0.0,0,63,1120.1886577635005,0.0,762.9601736219137,1302.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,105196,2,2,0,1,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,318.107732611488,552.0,15059.196254111324,0,1,1,2,80.0,8,7,5,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08645879753672377,15059.196254111324,3,2,3_0,3_0_0,3_3_0,3_0_0 -23381,1,30.0,313.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1246.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,108063,2,2,0,1,1,616.0,0.0,285.0,32,1.0,1.0,4.0,2.0,1.3,3,2,298.947127955353,0.0,8695.42271667539,0,4,2,3,67.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1432937811764482,6688.786705134915,1,1,1_1,1_0_1,1_3_1,1_0_1 -23382,1,25.0,100.0,2,111,160.0,210.0,0.0,0,63,0.0,0.0,221.1478764121489,370.0,0.0,380.86710917796427,41,0,0,0,0,0,0,0,0,0,,2,,2,115673,2,3,0,1,1,,120.0,162.0,12,1.0,0.0,1.0,1.0,1.0,1,1,318.859770669981,160.0,1792.364016599122,0,4,2,3,20.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.20643128101960428,1792.364016599122,1,1,1_1,1_0_1,1_3_1,1_0_1 -23384,2,53.0,0.0,2,111,492.0,468.0,0.0,0,62,0.0,0.0,680.0297199673578,1844.0,0.0,848.7895575966061,33,2,1,2,2,1,2,2,2,2,10.0,2,,2,130157,2,2,0,1,1,457.0,242.0,474.0,32,2.0,2.0,4.0,2.0,1.5,3,3,239.288646409968,492.0,16316.394768125814,0,1,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.11301516212406593,10877.596512083875,2,1,2_0,2_0_0,2_3_0,2_0_1 -23385,1,49.0,30.0,2,111,330.0,0.0,0.0,0,52,0.0,547.6062550494931,456.1174951000571,859.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,10.0,2,,2,129571,2,1,0,1,1,529.0,204.0,321.0,32,1.0,0.0,3.0,2.0,1.5,2,2,271.999828512404,330.0,23376.313354972976,0,1,2,3,85.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03674659844586914,15584.208903315317,3,2,3_1,3_0_1,3_3_1,3_0_1 -23386,2,53.0,0.0,7,111,1510.0,0.0,0.0,45,33,0.0,242.23036612775311,2087.0830836396553,1744.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,7.0,1,,5,128612,2,2,3,0,1,,543.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,1125.20165101476,1510.0,79864.15297097349,1,1,1,2,140.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021837081282685793,31945.661188389397,8,4,8,8_1,8_3,8_0_0 -23388,2,51.0,0.0,2,111,272.0,71.0,0.0,0,52,725.8822502307484,0.0,375.9513899006531,829.0,0.0,128.76935596016887,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,128226,2,2,0,1,1,952.0,100.0,228.0,32,1.0,0.0,3.0,2.0,1.5,1,1,258.22439752419,272.0,20010.398615949518,0,1,2,3,80.0,8,7,5,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04142846006771879,13340.265743966345,3,2,3_0,3_0_0,3_3_0,3_0_1 -23389,1,58.0,87.0,2,111,247.0,90.0,0.0,0,63,0.0,0.0,341.39703421125483,337.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,106605,2,1,0,1,1,337.0,132.0,225.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1429.04046311877,247.0,11122.825347324519,0,1,2,3,48.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03029805732597086,11122.825347324519,2,1,2_1,2_0_1,2_3_1,2_0_1 -23390,2,82.0,0.0,2,111,544.0,1600.0,0.0,0,75,0.0,0.0,751.9027798013062,2144.0,0.0,2901.844641355918,31,0,0,0,0,0,0,0,0,0,,1,,2,115689,1,2,5,0,2,,0.0,162.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1045.47187899958,544.0,11911.171596788237,0,5,2,3,42.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.17999908594869998,11911.171596788237,2,1,2_0,2_1_0,2_3_0,2_0_1 -23391,2,54.0,0.0,9,111,168.0,48.0,0.0,0,52,0.0,0.0,232.20527023275633,216.0,0.0,87.05533924067754,10,2,2,1,2,1,2,2,2,2,20.0,2,2006.0,6,123330,2,1,0,1,1,548.0,220.0,296.0,12,1.0,0.0,3.0,1.0,1.0,2,2,286.730450332042,168.0,21956.732177948983,0,1,2,3,76.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.009837529476127031,21956.732177948983,6,3,6,6_0,6_3,6_0_0 -23392,2,43.0,0.0,8,111,0.0,0.0,0.0,55,56,0.0,0.0,0.0,1150.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2001.0,6,124632,1,2,5,0,1,,411.0,980.0,43,2.0,1.0,7.0,5.0,2.4,2,2,1243.28994389271,0.0,22126.554425107748,1,4,2,3,114.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.051973749636095905,9219.397677128229,1,1,1_0,1_1_0,1_3_0,1_0_0 -23393,2,36.0,0.0,8,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,528.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2003.0,6,102592,2,2,0,0,1,,0.0,460.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1745.27973721092,0.0,20247.797946501574,0,4,2,3,33.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026076909765450722,20247.797946501574,5,3,5,5_0,5_3,5_0_0 -23394,2,43.0,0.0,2,111,276.0,150.0,0.0,0,43,0.0,0.0,381.48008681095683,426.0,0.0,272.04793512711734,50,2,2,1,1,1,1,2,2,2,20.0,2,,2,132699,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1480.47053152061,276.0,27435.156862739477,0,1,1,2,44.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015527521935861923,27435.156862739477,7,4,7,7_0,7_3,7_0_1 -23395,1,43.0,366.0,2,111,0.0,0.0,744.0,0,69,0.0,0.0,380.11952111911864,744.0,0.0,850.5748563415578,60,0,0,0,0,0,0,0,0,0,,2,,2,124264,2,1,0,1,1,1140.0,240.0,343.0,32,1.0,2.0,4.0,2.0,1.5,1,1,267.673827409269,0.0,8251.944407912151,0,4,2,3,84.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09016056861539638,5501.2962719414345,1,1,1_1,1_0_1,1_3_1,1_0_1 -23396,1,55.0,218.0,2,111,435.0,548.0,0.0,0,68,0.0,0.0,601.2457889955298,983.0,0.0,993.881789664402,60,0,0,0,0,0,0,0,0,3,60.0,2,,2,133226,1,2,0,1,1,455.0,0.0,278.0,32,1.0,1.0,5.0,2.0,1.5,2,2,1255.50598843171,435.0,20111.082465587442,0,1,2,3,84.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04887852265943591,13407.388310391629,3,2,3_1,3_0_1,3_3_1,3_0_1 -23397,2,82.0,0.0,1,111,250.0,0.0,0.0,77,72,2329.9924081480813,0.0,345.54355689398267,1966.0,268.3710126536699,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114397,2,2,1,0,2,,340.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1057.59739801048,250.0,22038.40599026355,5,5,0,1,70.0,9,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08920790373262787,14692.2706601757,3,2,3_0,3_1_0,3_3_0,3_1_0 -23398,1,32.0,127.0,2,111,360.0,960.0,0.0,56,46,0.0,0.0,497.582721927335,1320.0,0.0,1741.106784813551,50,0,0,0,0,0,0,0,0,2,18.0,1,,2,114182,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,211.07098109267,360.0,26057.77814861862,1,1,1,2,88.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05065665969183854,12408.465785056485,2,1,2_1,2_1_1,2_3_1,2_0_1 -23399,2,31.0,0.0,9,111,476.0,0.0,0.0,0,46,0.0,0.0,657.9149323261429,476.0,0.0,0.0,10,2,2,1,2,1,2,2,2,2,20.0,2,2006.0,6,103626,2,2,0,0,1,,94.0,523.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1627.41281460637,476.0,23741.341656544002,0,1,2,3,53.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.020049414514398203,23741.341656544002,6,3,6,6_0,6_3,6_0_0 -23400,2,68.0,0.0,5,111,120.0,0.0,0.0,75,75,0.0,0.0,165.86090730911167,120.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,100244,2,1,0,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,297.29826449092,120.0,55630.07955358655,5,5,0,1,110.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0021571063885394612,37086.719702391034,9,5,9,9_0,9_3,9_0_0 -23401,1,64.0,246.0,2,111,131.0,108.0,0.0,0,77,0.0,0.0,181.0648238124469,239.0,0.0,195.8745132915245,10,2,1,2,2,1,2,2,2,0,,2,,2,113593,2,3,0,1,1,504.0,444.0,328.0,11,0.0,0.0,3.0,1.0,1.0,3,2,1456.58055284834,131.0,9887.459611942497,0,5,2,3,73.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.024172032997366238,9887.459611942497,2,1,2_1,2_0_1,2_3_1,2_0_1 -23402,2,49.0,0.0,2,111,440.0,110.0,0.0,78,46,0.0,0.0,608.1566601334094,550.0,0.0,199.50181909321938,12,1,2,2,1,2,2,2,2,1,15.0,2,,2,122545,2,2,0,1,1,541.0,360.0,340.0,42,1.0,2.0,4.0,3.0,2.0,5,3,288.38865287236,440.0,28769.133974870147,5,1,2,3,60.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01911771138055199,14384.566987435073,3,2,3_0,3_0_0,3_3_0,3_0_1 -23403,2,39.0,0.0,7,111,215.0,0.0,0.0,0,55,0.0,0.0,297.16745892882506,215.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,5,105233,2,1,0,1,1,66.0,150.0,326.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1325.2008587048,215.0,17972.96988219829,0,1,2,3,45.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011962408072187965,17972.96988219829,4,2,4_0,4_0_0,4_3_0,4_0_0 -23404,1,42.0,107.0,2,111,530.0,180.0,0.0,85,63,0.0,0.0,732.5523406152432,710.0,0.0,326.4575221525408,20,0,0,0,0,0,0,0,0,0,,2,,2,115325,2,1,0,1,1,385.0,700.0,304.0,42,1.0,0.0,3.0,6.0,2.9,1,1,272.932666289517,530.0,36763.367511505385,6,1,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.01931270305359812,12677.023279829444,2,1,2_1,2_0_1,2_3_1,2_0_1 -23405,2,55.0,0.0,6,111,1700.0,0.0,0.0,78,75,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,117524,2,1,2,0,1,,432.0,,41,1.0,2.0,5.0,3.0,2.0,1,1,1312.29593521332,1700.0,43958.9224207641,5,5,0,1,94.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038672467530664514,21979.46121038205,6,3,6,6_1,6_3,6_0_0 -23406,1,53.0,35.0,2,111,240.0,0.0,0.0,0,85,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,128203,1,3,0,1,1,415.0,37.0,326.0,31,1.0,2.0,2.0,2.0,1.5,1,1,265.668557092648,240.0,18225.261351957557,0,5,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.013168535439093817,12150.17423463837,2,1,2_1,2_0_1,2_3_1,2_0_1 -23407,2,83.0,0.0,2,111,900.0,0.0,0.0,0,75,298.71697540360015,0.0,1243.9568048183376,1220.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124180,2,1,1,0,1,,250.0,,21,0.0,2.0,6.0,2.0,1.5,1,1,221.004370247971,900.0,24755.516681684923,0,5,0,1,90.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.049281944533300835,16503.677787789948,4,2,4_0,4_1_0,4_3_0,4_0_1 -23408,1,35.0,200.0,2,111,0.0,0.0,300.0,85,56,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,12,2,1,2,1,1,2,2,2,2,10.0,2,,2,119777,2,2,0,1,1,780.0,300.0,357.0,42,1.0,1.0,3.0,3.0,1.8,2,2,311.764697218689,0.0,16487.89571588001,7,1,2,3,42.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.018195166027830983,9159.942064377783,1,1,1_1,1_0_1,1_3_1,1_0_1 -23409,2,67.0,0.0,2,111,268.0,562.0,0.0,0,74,0.0,0.0,370.4226929903494,830.0,0.0,1019.2729302762663,30,2,2,2,2,1,2,2,2,0,,2,,2,108556,2,3,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1531.45893224837,268.0,23506.53714919356,0,5,0,1,79.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.03530932670907994,23506.53714919356,6,3,6,6_0,6_3,6_0_1 -23410,1,73.0,89.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,235.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,115837,2,2,0,1,1,310.0,252.0,299.0,11,0.0,1.0,3.0,1.0,1.0,1,1,286.338489712901,0.0,17859.018310660205,0,5,2,3,77.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.013158618010919807,17859.018310660205,4,2,4_1,4_0_1,4_3_1,4_0_0 -23411,2,41.0,0.0,2,111,688.0,1257.0,0.0,0,38,0.0,0.0,950.9358685722402,1945.0,0.0,2279.761696365243,10,2,2,2,2,1,2,2,2,2,15.0,1,,2,128215,1,3,3,0,1,,249.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,1063.96106166943,688.0,30530.182639741633,0,1,1,2,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.06370744724822451,23484.75587672433,6,3,6,6_1,6_3,6_0_1 -23412,2,80.0,0.0,9,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1640.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,114539,2,1,0,0,1,,59.0,550.0,21,0.0,0.0,3.0,2.0,1.5,2,2,310.336513674699,0.0,37831.67452455422,0,5,2,3,59.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04334991830550817,25221.116349702814,7,4,7,7_0,7_3,7_0_0 -23413,0,45.0,0.0,1,111,0.0,0.0,0.0,81,67,0.0,0.0,0.0,500.0,860.1635020950959,0.0,50,2,2,1,1,1,2,2,2,0,,2,,1,120672,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,1622.08032881909,0.0,1728.8090039004783,4,4,5,0,60.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.2892164483594877,823.2423828097516,1,1,1_0,1_0_0,1_3_0,1_1_0 -23414,2,85.0,0.0,2,111,0.0,0.0,2000.0,77,75,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,71,0,0,0,0,0,0,0,0,0,,1,,2,105609,1,2,4,0,2,,220.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,221.036110922381,0.0,28356.406387779847,5,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07053079902472752,18904.270925186564,5,3,5,5_1,5_3,5_0_1 -23415,1,34.0,125.0,6,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,710.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,25.0,2,,4,129469,1,2,0,0,1,,228.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1589.93213113519,0.0,22044.659819839224,0,1,1,2,80.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03220734662283295,13777.912387399514,3,2,3_1,3_0_1,3_3_1,3_0_0 -23416,2,64.0,0.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,331.72181461822333,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,115172,2,2,0,1,1,748.0,0.0,350.0,11,0.0,2.0,2.0,1.0,1.0,1,1,374.465752369213,240.0,81715.03983233651,0,5,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.002937035831989236,81715.03983233651,10,5,10,10_0,10_3,10_0_1 -23417,2,59.0,0.0,6,111,950.0,0.0,0.0,54,46,0.0,0.0,1313.065516197134,950.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,124067,2,1,1,0,1,,400.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,316.234121019753,950.0,60857.96764321608,1,1,0,1,90.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015610117077347026,40571.97842881072,9,5,9,9_1,9_3,9_0_0 -23418,1,20.0,358.0,2,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,499.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,129898,2,2,0,1,1,874.0,628.0,304.0,43,2.0,1.0,3.0,3.0,1.8,2,2,296.322983198495,0.0,12615.614573227112,4,4,2,3,63.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03955415704114638,7008.674762903951,1,1,1_1,1_0_1,1_3_1,1_0_1 -23419,2,30.0,0.0,5,111,290.0,225.0,0.0,52,48,0.0,0.0,400.8305259970199,515.0,0.0,408.071902690676,70,0,0,0,0,0,0,0,0,2,25.0,2,,3,105107,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,1385.10204224298,290.0,49959.49412254743,1,1,1,2,69.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010308350976027461,23790.235296451156,6,3,6,6_0,6_3,6_0_0 -23420,2,34.0,0.0,5,111,386.0,340.0,0.0,55,46,0.0,0.0,533.5192518443092,726.0,0.0,616.6419862881327,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,111138,2,1,0,1,2,,172.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,260.86393988615,386.0,50949.31708873425,1,1,1,2,96.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014249454977690581,24261.579566063927,7,4,7,7_0,7_3,7_0_0 -23421,1,42.0,362.0,2,111,225.0,280.0,0.0,85,62,0.0,0.0,310.9892012045844,505.0,0.0,507.8228122372857,30,0,0,0,0,0,0,0,0,0,,2,,2,111626,2,2,0,1,1,329.0,280.0,304.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,1,1,365.21882757543,225.0,16280.970123440831,6,4,2,3,61.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.031017807671848547,6029.988934607716,1,1,1_1,1_0_1,1_3_1,1_0_1 -23422,1,37.0,423.0,2,111,600.0,110.0,0.0,85,67,0.0,0.0,829.3045365455583,710.0,0.0,199.50181909321938,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,117489,2,1,0,1,1,835.0,350.0,383.0,42,1.0,0.0,5.0,5.0,2.4,2,2,253.459929201239,600.0,20809.856388957513,6,1,2,3,95.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.034118447851314945,8670.773495398964,1,1,1_1,1_0_1,1_3_1,1_0_1 -23423,1,25.0,150.0,6,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,962.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,6.0,1,,4,112409,2,2,5,0,1,,0.0,747.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1247.76898792273,0.0,29638.39462877155,1,1,2,3,72.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03245789834602364,16465.77479376197,4,2,4_1,4_1_1,4_3_1,4_0_0 -23424,2,72.0,0.0,2,111,300.0,90.0,0.0,77,75,0.0,0.0,414.65226827277917,390.0,0.0,163.2287610762704,71,0,0,0,0,0,0,0,0,0,,2,,2,133198,2,1,0,1,1,548.0,120.0,346.0,41,0.0,1.0,4.0,2.0,1.5,1,1,274.227733108645,300.0,24707.190151474606,5,5,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01578487871785467,16471.46010098307,4,2,4_0,4_0_0,4_3_0,4_0_1 -23425,1,56.0,260.0,2,111,0.0,0.0,750.0,63,56,0.0,0.0,383.18500112814377,750.0,0.0,857.4343309894736,20,0,0,0,0,0,0,0,0,0,,2,,2,132825,2,1,0,1,1,457.0,200.0,332.0,43,2.0,2.0,4.0,4.0,2.5,2,2,274.165396049165,0.0,34199.32893713448,1,1,2,3,89.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.021930254870750735,13679.731574853791,3,2,3_1,3_0_1,3_3_1,3_0_1 -23426,1,56.0,280.0,2,111,0.0,0.0,480.0,0,22,0.0,0.0,245.23840072201202,480.0,0.0,548.7579718332631,42,0,0,0,0,0,0,0,0,2,15.0,2,,2,112403,2,1,0,1,1,508.0,160.0,280.0,32,2.0,1.0,4.0,2.0,1.5,1,1,280.471161294552,0.0,10758.703632193088,0,1,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.044615040660075815,7172.469088128725,1,1,1_1,1_0_1,1_3_1,1_0_1 -23427,2,61.0,0.0,6,111,395.0,1180.0,0.0,75,54,0.0,0.0,545.9588198924926,1575.0,0.0,2140.1104229999896,71,0,0,0,0,0,0,0,0,2,8.0,1,,4,127174,2,1,2,0,1,,233.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1069.94436470861,395.0,70547.50159997333,5,1,0,1,95.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022325383100463978,47031.66773331555,10,5,10,10_1,10_3,10_0_0 -23428,1,27.0,322.0,2,111,130.0,80.0,0.0,0,81,0.0,0.0,179.68264958487097,210.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,0,,2,,2,119649,2,2,0,1,1,536.0,250.0,299.0,32,1.0,1.0,3.0,2.0,1.3,2,2,257.829254369518,130.0,9489.226489860765,0,4,2,3,50.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02213036017470812,7299.404992200588,1,1,1_1,1_0_1,1_3_1,1_0_1 -23429,2,54.0,0.0,1,111,0.0,0.0,1740.0,35,34,0.0,0.0,888.9892026172936,1740.0,0.0,1989.247647895579,50,0,0,0,0,0,0,0,0,3,20.0,1,,1,123426,2,1,1,0,1,,370.0,,43,2.0,3.0,6.0,4.0,2.5,2,2,1157.05748134687,0.0,138146.68755526564,1,1,1,2,144.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012595307428590441,55258.675022106254,10,5,10,10_1,10_3,10_1_0 -23430,1,70.0,141.0,2,111,287.0,76.0,0.0,0,77,0.0,0.0,396.68400331429206,363.0,0.0,137.83762046440611,71,2,1,2,2,1,2,2,2,0,,2,,2,113020,2,1,0,1,1,429.0,140.0,321.0,11,0.0,1.0,3.0,1.0,1.0,1,1,345.962382917274,287.0,10535.431734069147,0,5,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.034455161322543816,10535.431734069147,2,1,2_1,2_0_1,2_3_1,2_0_1 -23431,2,47.0,0.0,6,111,320.0,450.0,0.0,0,47,0.0,0.0,442.2957528242978,770.0,0.0,816.143805381352,43,2,2,1,2,1,2,2,2,2,15.0,2,,4,102746,2,3,0,0,1,,0.0,408.0,32,2.0,0.0,3.0,2.0,1.5,1,1,1312.46533474004,320.0,45126.976905567164,0,1,2,3,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.017062964390708115,30084.651270378108,8,4,8,8_0,8_3,8_0_0 -23432,2,68.0,0.0,2,111,270.0,0.0,0.0,77,75,0.0,0.0,373.1870414455012,474.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,132458,2,1,0,1,1,,130.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,258.314483924432,270.0,40360.44352046719,5,5,0,1,89.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011744172230407473,26906.962346978125,7,4,7,7_0,7_3,7_0_1 -23433,2,25.0,0.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,752.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,,1,121625,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,4,4,1680.88071247318,0.0,15523.856859682179,0,1,2,3,31.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04844157008127655,15523.856859682179,3,2,3_0,3_0_0,3_3_0,3_1_0 -23434,1,47.0,396.0,2,111,560.0,220.0,0.0,0,56,0.0,0.0,774.0175674425211,780.0,0.0,399.00363818643876,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,123596,2,2,0,1,1,508.0,460.0,341.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,2,1,251.040539314715,560.0,20951.291933784905,0,1,2,3,83.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03722920774838781,8058.189205301887,1,1,1_1,1_0_1,1_3_1,1_0_1 -23435,2,26.0,0.0,2,111,0.0,0.0,1100.0,0,33,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,42,0,0,0,0,0,0,0,0,3,20.0,1,,2,131604,2,1,2,0,1,,159.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1231.29296226549,0.0,39525.91954961736,0,1,1,2,95.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027829839571958767,39525.91954961736,9,5,9,9_1,9_3,9_0_1 -23436,1,70.0,331.0,2,111,337.0,360.0,0.0,85,77,0.0,0.0,465.7927146930886,697.0,0.0,652.9150443050816,20,0,0,0,0,0,0,0,0,0,,2,,2,115443,2,3,0,1,1,696.0,480.0,603.0,41,0.0,4.0,5.0,5.0,2.4,2,2,287.996117072334,337.0,28749.265809033925,6,5,2,3,86.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.024244097384253222,11978.860753764136,2,1,2_1,2_0_1,2_3_1,2_0_1 -23437,1,57.0,201.0,1,211,0.0,0.0,0.0,0,78,0.0,0.0,0.0,462.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,133350,1,3,4,0,2,,0.0,275.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1789.96412580614,0.0,9332.20050232717,0,7,2,3,20.0,2,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0495060087794718,9332.20050232717,1,1,1_1,1_1_1,1_1_1,1_1_0 -23438,1,66.0,266.0,2,111,700.0,0.0,0.0,0,86,0.0,0.0,967.5219593031513,880.0,0.0,0.0,20,1,2,2,2,1,2,2,2,0,,2,,2,121906,2,2,0,1,1,668.0,600.0,,21,0.0,4.0,3.0,2.0,1.5,1,1,257.829254369518,700.0,9506.230386267216,0,6,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.09257086818254014,6337.486924178144,1,1,1_1,1_0_1,1_3_1,1_0_1 -23439,2,68.0,0.0,1,211,1150.0,1800.0,0.0,75,71,0.0,0.0,1589.5003617123202,2950.0,0.0,3264.575221525408,20,1,2,2,1,1,2,2,2,0,,1,,1,103018,2,2,2,0,1,,280.0,,41,0.0,1.0,6.0,2.0,1.5,5,3,1523.04908885268,1150.0,84158.21760081749,5,5,0,1,170.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.035053023746208056,56105.47840054499,10,5,10,10_1,10_1,10_1_0 -23440,1,63.0,194.0,2,111,250.0,108.0,0.0,0,75,0.0,0.0,345.54355689398267,358.0,0.0,195.8745132915245,41,0,0,0,0,0,0,0,0,0,,2,,2,122424,2,1,0,1,1,610.0,130.0,296.0,21,1.0,2.0,3.0,2.0,1.5,1,1,264.546937038164,250.0,19041.938998364207,0,5,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.018800606389441428,12694.62599890947,2,1,2_1,2_0_1,2_3_1,2_0_1 -23441,2,63.0,0.0,1,211,0.0,0.0,0.0,21,74,0.0,0.0,0.0,5372.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,132794,2,1,2,0,1,,231.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1437.20066802048,0.0,35582.8684876914,1,5,0,1,135.0,2,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15097152726341465,23721.9123251276,6,3,6,6_1,6_1,6_1_0 -23442,2,90.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,929.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111636,2,1,2,0,1,,203.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,222.842847360468,0.0,19533.338885518133,0,5,0,1,100.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04755971344401102,19533.338885518133,5,3,5,5_1,5_3,5_0_1 -23443,1,29.0,195.0,2,111,0.0,0.0,537.0,0,56,0.0,0.0,274.36046080775094,537.0,0.0,613.9229809884631,50,0,0,0,0,0,0,0,0,0,,2,,2,104402,2,2,0,1,1,,130.0,254.0,32,1.0,1.0,1.0,2.0,1.3,2,2,275.926499979562,0.0,8932.533668497064,0,4,2,3,35.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06011732168375386,6871.179744997741,1,1,1_1,1_0_1,1_3_1,1_0_1 -23444,2,51.0,0.0,1,211,960.0,1200.0,0.0,0,43,0.0,0.0,1326.8872584728933,2160.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,0,,1,,1,103196,2,2,5,0,1,,820.0,708.0,22,2.0,1.0,8.0,2.0,1.5,1,1,1889.56575717127,960.0,86442.39574600988,0,1,2,3,240.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024987738728882977,57628.26383067325,10,5,10,10_1,10_1,10_1_0 -23445,2,58.0,0.0,1,211,700.0,0.0,0.0,56,62,0.0,517.5862524097289,967.5219593031513,1284.0,144.50746835197612,0.0,60,0,0,0,0,0,0,0,0,2,90.0,1,,1,108968,2,3,2,0,1,,288.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1437.20066802048,700.0,40974.538546670745,1,1,0,1,102.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03133653350452015,27316.35903111383,7,4,7,7_1,7_1,7_1_0 -23446,2,66.0,0.0,1,211,720.0,0.0,0.0,0,86,0.0,186.3310508675024,995.16544385467,966.0,113.54158227655265,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,109299,2,1,1,0,1,,260.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1431.38778273933,720.0,9783.059157743366,0,5,0,1,45.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09874211986497124,9783.059157743366,2,1,2_0,2_1_0,2_1_0,2_1_0 -23447,1,66.0,192.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1670.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,100389,2,2,0,1,1,980.0,173.0,178.0,11,0.0,4.0,2.0,1.0,1.0,5,4,285.777657486871,0.0,16729.06747076465,0,5,2,3,50.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09982624571982002,16729.06747076465,4,2,4_1,4_0_1,4_3_1,4_0_1 -23448,0,80.0,0.0,1,211,2500.0,0.0,0.0,0,75,0.0,0.0,3455.435568939826,2600.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,126893,2,1,3,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1683.37631443975,2500.0,32410.518716926585,0,5,0,1,135.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08022086973394026,32410.518716926585,8,4,8,8_1,8_1,8_1_0 -23449,2,42.0,0.0,2,211,2400.0,0.0,0.0,85,37,0.0,155.27587572291867,3317.2181461822333,2550.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,50.0,1,,2,127309,2,3,3,0,1,,500.0,,42,1.0,0.0,6.0,4.0,2.3,1,1,1451.2464588635,2400.0,59488.63494698251,6,1,1,2,125.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04286533053368282,25864.623889992396,7,4,7,7_1,7_1,7_0_1 -23450,1,43.0,236.0,2,111,200.0,200.0,0.0,0,63,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,70,2,2,2,2,1,2,2,2,0,,2,,2,120220,2,2,0,1,1,,0.0,350.0,12,1.0,0.0,3.0,1.0,1.0,1,1,300.557636550908,200.0,9477.884565334745,0,4,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.04220351041866404,9477.884565334745,1,1,1_1,1_0_1,1_3_1,1_0_1 -23451,0,68.0,0.0,1,211,444.0,1000.0,0.0,0,77,0.0,0.0,613.6853570437131,1444.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,1,,1,105907,2,1,2,0,1,,370.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1484.11783170812,444.0,14704.165813289499,0,5,0,1,85.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09820346276936874,14704.165813289499,3,2,3_0,3_1_0,3_1_0,3_1_0 -23452,1,62.0,41.0,2,111,180.0,50.0,0.0,0,72,0.0,0.0,248.7913609636675,230.0,0.0,90.68264504237244,50,0,0,0,0,0,0,0,0,0,,2,,2,117690,2,2,0,1,1,504.0,60.0,277.0,11,0.0,2.0,2.0,1.0,1.0,2,2,278.907657618606,180.0,14914.420268126376,0,5,2,3,55.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.015421316810518828,14914.420268126376,3,2,3_1,3_0_1,3_3_1,3_0_1 -23453,2,34.0,0.0,7,211,960.0,0.0,0.0,0,22,0.0,0.0,1326.8872584728933,975.0,25.804905062852875,0.0,70,0,0,0,0,0,0,0,0,2,3.0,1,,5,128410,2,1,2,0,1,,277.0,560.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1664.91479187643,960.0,15849.578223467503,0,1,2,3,83.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061515832551075525,15849.578223467503,3,2,3_0,3_1_0,3_1_0,3_0_0 -23454,1,72.0,202.0,2,111,360.0,220.0,0.0,0,86,0.0,0.0,497.582721927335,580.0,0.0,399.00363818643876,70,2,2,2,2,1,2,2,2,0,,2,,2,109255,2,2,0,1,1,1545.0,200.0,268.0,11,0.0,4.0,3.0,1.0,1.0,1,1,277.26086028607,360.0,10687.356143044759,0,5,2,3,58.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05426973633488008,10687.356143044759,2,1,2_1,2_0_1,2_3_1,2_0_1 -23455,0,70.0,0.0,2,211,450.0,0.0,0.0,0,77,1194.8679016144006,0.0,621.9784024091688,1294.0,75.69438818436844,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132569,2,1,1,0,1,,350.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1656.01161486471,450.0,19029.77467155202,0,5,0,1,90.0,2,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06799870320768568,19029.77467155202,5,3,5,5_1,5_1,5_0_1 -23456,2,47.0,0.0,7,211,750.0,0.0,0.0,52,48,1194.8679016144006,0.0,1036.630670681948,1614.0,110.10092826817227,0.0,70,0,0,0,0,0,0,0,0,2,23.0,1,,5,122347,2,1,2,0,1,,398.0,,43,2.0,2.0,7.0,2.0,1.5,1,1,1428.70295846386,750.0,65479.762991728974,1,1,0,1,120.0,2,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02464883692697347,43653.175327819314,10,5,10,10_1,10_1,10_0_0 -23457,2,47.0,0.0,9,211,450.0,0.0,0.0,0,22,0.0,0.0,621.9784024091688,510.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,2008.0,6,112259,2,1,1,0,1,,250.0,,32,1.0,1.0,2.0,2.0,1.5,3,2,1346.18545287188,450.0,13290.319162733944,0,1,1,2,42.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03837379627646867,8860.212775155962,1,1,1_0,1_1_0,1_1_0,1_0_0 -23458,2,56.0,0.0,1,211,0.0,0.0,0.0,0,63,0.0,0.0,0.0,138.0,237.40512657824647,0.0,50,0,0,0,0,0,0,0,0,0,,7,,1,128701,1,3,0,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,1536.2294752447,0.0,7200.504983565699,0,1,0,1,25.0,2,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019165322475988653,7200.504983565699,1,1,1_0,1_1_0,1_1_0,1_1_0 -23459,2,59.0,0.0,2,211,530.0,750.0,0.0,75,74,0.0,0.0,732.5523406152432,1280.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,0,,1,,2,116845,2,3,1,0,1,,421.0,,41,0.0,7.0,3.0,2.0,1.5,2,2,1360.65843331246,530.0,30469.768635264,6,5,0,1,45.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04200885196478321,20313.179090176,5,3,5,5_1,5_1,5_0_1 -23460,2,43.0,0.0,7,211,1200.0,0.0,0.0,55,37,0.0,155.27587572291867,1658.6090730911167,1400.0,86.01635020950958,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,104539,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1419.01950841693,1200.0,67979.94895829169,1,1,1,2,100.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02059430790186315,32371.404265853183,8,4,8,8_1,8_1,8_0_0 -23461,2,55.0,0.0,7,211,850.0,900.0,0.0,63,21,0.0,0.0,1174.848093439541,1807.0,98.05863923884093,1632.287610762704,31,0,0,0,0,0,0,0,0,0,,1,,5,112114,2,1,2,0,1,,630.0,,43,3.0,0.0,6.0,3.0,2.0,1,1,1675.88792258509,850.0,52766.85577652712,1,1,0,1,80.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03424498150226773,26383.42788826356,7,4,7,7_1,7_1,7_0_0 -23462,2,74.0,0.0,5,211,1827.0,0.0,0.0,77,74,0.0,20.703450096389155,2525.232313781225,1847.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,129474,2,3,3,0,1,,679.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,1573.06810448899,1827.0,69198.24620692858,5,5,0,1,104.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026691427908111725,46132.164137952386,10,5,10,10_1,10_1,10_0_0 -23463,2,56.0,0.0,7,211,1100.0,0.0,0.0,0,54,0.0,0.0,1520.3916503335236,1130.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,130000,2,2,2,0,1,,177.0,,32,2.0,2.0,7.0,2.0,1.5,1,1,1398.40659224937,1100.0,16010.60599872164,0,1,0,1,110.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07057821547105865,10673.737332481092,2,1,2_0,2_1_0,2_1_0,2_0_0 -23464,2,58.0,0.0,2,211,410.0,0.0,0.0,74,37,0.0,534.1490124868402,566.6914333061316,926.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,124825,2,1,3,0,1,,348.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,1416.79523903025,410.0,55073.609494554235,5,1,1,2,63.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.016813860731092346,36715.739663036155,9,5,9,9_1,9_1,9_0_1 -23465,2,85.0,0.0,2,211,229.0,608.0,0.0,0,77,0.0,0.0,316.5178981148881,837.0,0.0,1102.700963715249,31,0,0,0,0,0,0,0,0,0,,1,,2,103771,1,3,4,0,1,,304.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,1578.142196343,229.0,15365.367721253235,0,5,0,1,75.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05447315125704862,15365.367721253235,3,2,3_0,3_1_0,3_1_0,3_0_1 -23466,2,71.0,0.0,8,211,1600.0,1300.0,0.0,75,72,0.0,310.55175144583734,2211.478764121489,3200.0,0.0,2357.7487711016834,41,0,0,0,0,0,0,0,0,0,,1,1999.0,6,121294,2,1,1,0,1,,427.0,,41,0.0,0.0,7.0,2.0,1.5,1,1,1512.69906738995,1600.0,61549.02198927806,5,5,0,1,200.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05199107795014916,41032.681326185375,9,5,9,9_1,9_1,9_0_0 -23467,2,81.0,0.0,5,211,1330.0,0.0,0.0,77,78,0.0,0.0,1838.2917226759876,1392.0,106.66027425979189,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115295,2,1,2,0,1,,418.0,,41,0.0,6.0,6.0,2.0,1.5,1,1,1444.29074732729,1330.0,29429.420470376048,5,5,0,1,107.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04729960623591624,19619.613646917365,5,3,5,5_1,5_1,5_0_0 -23468,2,57.0,0.0,6,211,857.0,0.0,0.0,0,52,0.0,0.0,1184.5233130325726,925.0,116.98223628493304,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,131887,2,1,1,0,1,,250.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1689.8515931153,857.0,17840.316013475618,0,1,1,2,81.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05184885734654614,17840.316013475618,4,2,4_0,4_1_0,4_1_0,4_0_0 -23469,0,87.0,0.0,1,211,247.0,0.0,0.0,0,77,3883.3206802468017,0.0,341.39703421125483,2879.0,55.050464134086134,0.0,71,1,2,2,1,1,2,2,2,0,,1,,1,121178,1,3,3,0,2,,159.0,,11,0.0,4.0,8.0,1.0,1.0,2,2,1683.37631443975,247.0,18090.46585963686,0,5,0,1,172.0,2,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.1591446025955349,18090.46585963686,4,2,4_0,4_1_0,4_1_0,4_1_0 -23470,2,42.0,0.0,2,211,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1238.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,2,122661,2,2,2,0,1,,315.0,,32,1.0,0.0,4.0,3.0,1.6,3,3,1593.67092624699,0.0,44020.643825038685,0,1,1,2,78.0,2,3,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028123168868689576,27512.90239064918,7,4,7,7_1,7_1,7_0_1 -23471,2,78.0,0.0,2,211,2220.0,0.0,0.0,75,77,0.0,0.0,3068.426785218566,2220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124712,2,1,2,0,1,,360.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,1521.95506553801,2220.0,46091.23848859821,5,5,0,1,85.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04816533625038457,30727.49232573214,8,4,8,8_1,8_1,8_0_1 -23472,2,67.0,0.0,8,211,1089.0,0.0,0.0,77,75,0.0,0.0,1505.1877338301883,1161.0,123.8635443016938,0.0,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,115175,2,1,1,0,1,,393.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,1432.20474976476,1089.0,44888.47329244694,5,5,1,2,100.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02586410084468952,29925.648861631296,8,4,8,8_1,8_1,8_0_0 -23473,2,38.0,0.0,2,211,720.0,0.0,0.0,0,31,0.0,0.0,995.16544385467,720.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,8,,2,101715,2,2,0,0,1,,420.0,,12,1.0,0.0,1.0,1.0,1.0,4,2,2061.24442072746,720.0,37577.52994053032,0,1,1,2,36.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01916038656983208,37577.52994053032,9,5,9,9_0,9_1,9_0_1 -23474,2,34.0,0.0,9,211,800.0,0.0,0.0,0,64,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,108987,2,1,1,0,1,,580.0,450.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1696.23508460213,800.0,33354.9734044864,0,1,3,4,27.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02398442925732917,33354.9734044864,8,4,8,8_1,8_1,8_0_0 -23475,2,66.0,0.0,9,211,1084.0,0.0,0.0,77,75,0.0,0.0,1498.2768626923087,1148.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,129655,2,1,1,0,1,,186.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1417.23876893048,1084.0,33693.724884572766,5,5,0,1,110.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034071626213272456,22462.483256381845,6,3,6,6_1,6_1,6_0_0 -23476,2,67.0,0.0,6,211,840.0,0.0,0.0,72,72,0.0,310.55175144583734,1161.0263511637818,1202.0,106.66027425979189,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,117655,2,1,2,0,1,,390.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1684.18283692206,840.0,20661.29173850381,6,5,0,1,116.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058176420681383935,13774.194492335873,3,2,3_0,3_1_0,3_1_0,3_0_0 -23477,2,79.0,0.0,1,211,528.0,1650.0,0.0,78,72,0.0,0.0,729.7879921600913,2178.0,0.0,2992.5272863982905,71,0,0,0,0,0,0,0,0,0,,1,,1,125683,2,2,2,0,1,,466.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1440.7232874475,528.0,21221.40752331838,5,5,0,1,101.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10263221219453908,14147.605015545587,3,2,3_0,3_1_0,3_1_0,3_1_0 -23478,1,55.0,300.0,1,211,600.0,0.0,0.0,78,68,0.0,198.7531209253359,829.3045365455583,811.0,32.686213079613644,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,127114,2,1,2,0,1,,1200.0,500.0,42,1.0,4.0,3.0,2.0,1.5,1,1,1453.31960004427,600.0,17715.768472711126,7,1,2,3,40.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04577842622233643,11810.512315140752,2,1,2_1,2_1_1,2_1_1,2_1_0 -23479,2,48.0,0.0,2,211,386.0,867.0,0.0,78,37,0.0,124.22070057833493,533.5192518443092,1373.0,0.0,1572.4370650347382,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,118682,2,1,1,0,1,,304.0,,42,1.0,2.0,6.0,2.0,1.5,4,2,1400.43875342199,386.0,36083.64141560068,5,1,0,1,100.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038050483436141966,24055.760943733785,6,3,6,6_1,6_1,6_0_1 -23480,2,60.0,0.0,8,211,1550.0,0.0,0.0,77,74,0.0,0.0,2142.370052742692,1616.0,113.54158227655265,0.0,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,126102,2,1,1,0,1,,380.0,,41,0.0,4.0,4.0,2.0,1.5,3,3,1401.83412630105,1550.0,69637.48457750009,5,5,0,1,119.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02320589277175199,46424.98971833339,10,5,10,10_1,10_1,10_0_0 -23481,0,43.0,0.0,6,211,450.0,0.0,0.0,85,35,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,125191,1,3,3,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,1,1,1435.19792639342,450.0,7618.446959316409,6,4,5,0,50.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05906715665319507,5078.964639544273,1,1,1_0,1_1_0,1_1_0,1_0_0 -23482,1,28.0,459.0,2,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1405.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,114018,2,3,1,0,1,,638.0,704.0,31,0.0,0.0,5.0,4.0,1.9,1,1,1516.95549744566,0.0,18730.213277641535,0,6,2,3,120.0,2,3,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07501249340695786,9858.006988232388,2,1,2_1,2_1_1,2_1_1,2_0_1 -23483,2,30.0,0.0,7,211,1572.0,0.0,0.0,63,43,0.0,77.63793786145933,2172.7778857493627,1647.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,127632,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1470.49289637557,1572.0,45456.79944702678,1,1,1,2,97.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03623220332349479,30304.53296468452,8,4,8,8_1,8_1,8_0_0 -23484,2,55.0,0.0,1,211,1885.0,0.0,0.0,46,63,0.0,269.144851253059,2605.3984189806292,2265.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,117799,2,1,1,0,1,,610.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,1438.74652194141,1885.0,22607.297863392963,1,1,0,1,120.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1001888865129529,9419.707443080402,1,1,1_0,1_1_0,1_1_0,1_1_0 -23485,2,61.0,0.0,2,211,312.0,0.0,0.0,22,75,0.0,0.0,431.23835900369033,1508.0,2057.5110970114692,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,126585,2,1,2,0,1,,649.0,,42,1.0,1.0,3.0,3.0,2.0,2,2,1456.3144935943,312.0,40727.59502562366,1,5,0,1,80.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03702649270233722,20363.79751281183,5,3,5,5_1,5_1,5_0_1 -23486,2,84.0,0.0,5,211,58.0,0.0,0.0,0,86,0.0,0.0,80.16610519940397,58.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,117203,2,1,2,0,1,,297.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1689.8515931153,58.0,29141.227619581572,0,5,0,1,76.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0019903073664963465,29141.227619581572,8,4,8,8_1,8_1,8_0_0 -23487,2,77.0,0.0,7,211,70.0,0.0,0.0,72,74,0.0,0.0,96.75219593031514,126.0,96.33831223465073,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,122305,2,1,2,0,1,,461.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1516.25618893077,70.0,49949.35795144946,5,5,0,1,120.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0025225549470019493,33299.571967632975,8,4,8,8_1,8_1,8_0_0 -23488,2,54.0,0.0,9,211,850.0,0.0,0.0,63,43,0.0,62.110350289167464,1174.848093439541,910.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,131497,2,1,1,0,1,,570.0,,43,2.0,1.0,5.0,4.0,2.5,2,2,1419.01950841693,850.0,37909.80487275341,1,1,1,2,114.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024004344075483134,15163.921949101365,3,2,3_0,3_1_0,3_1_0,3_0_0 -23489,2,65.0,0.0,1,211,1372.0,0.0,0.0,56,63,0.0,517.5862524097289,1896.3430402341767,1968.0,165.1513924022584,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,122518,2,1,1,0,1,,232.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1523.04908885268,1372.0,53031.317554870606,5,5,0,1,130.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03711014718734348,35354.21170324707,9,5,9,9_1,9_1,9_1_0 -23490,2,69.0,0.0,6,211,1000.0,0.0,0.0,72,72,0.0,258.79312620486445,1382.1742275759307,1280.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,110435,2,1,2,0,1,,697.0,,41,0.0,1.0,8.0,2.0,1.5,4,4,1573.23539927035,1000.0,56120.63976235116,5,5,0,1,160.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022808007988153675,37413.75984156744,9,5,9,9_1,9_1,9_0_0 -23491,2,67.0,0.0,8,211,980.0,0.0,0.0,74,75,0.0,0.0,1354.530743024412,1044.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,122192,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1613.40492030211,980.0,49770.63162691375,5,5,1,2,120.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02097622565503973,33180.42108460917,8,4,8,8_1,8_1,8_0_0 -23492,2,31.0,0.0,9,211,0.0,0.0,0.0,52,69,0.0,0.0,0.0,1681.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2010.0,6,129999,2,1,1,0,1,,915.0,760.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1796.47032920558,0.0,35221.99063300917,4,1,2,3,80.0,2,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047725865852244274,19567.77257389398,5,3,5,5_1,5_1,5_0_0 -23493,2,72.0,0.0,6,211,1200.0,0.0,0.0,74,75,0.0,103.51725048194578,1658.6090730911167,1348.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131269,2,1,2,0,1,,520.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1531.6595505547,1200.0,60559.41272151643,5,5,0,1,148.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022259132633911143,40372.94181434429,9,5,9,9_1,9_1,9_0_0 -23494,2,50.0,0.0,8,211,748.0,0.0,0.0,0,63,0.0,0.0,1033.866322226796,783.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,126617,2,1,1,0,1,,350.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1431.38778273933,748.0,28078.36209170607,0,1,0,1,115.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027886241990991583,28078.36209170607,8,4,8,8_1,8_1,8_0_0 -23495,2,55.0,0.0,8,111,750.0,0.0,0.0,77,45,0.0,0.0,1036.630670681948,750.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,60.0,2,1999.0,6,104245,2,1,0,0,1,,260.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,1287.89159089963,750.0,51147.404747243396,5,1,0,1,75.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014663500596096647,34098.2698314956,9,5,9,9_0,9_2,9_0_0 -23497,2,78.0,0.0,5,111,700.0,0.0,0.0,77,86,0.0,0.0,967.5219593031513,700.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,110558,2,1,0,0,2,,260.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1348.19244233579,700.0,42873.034821806905,5,5,0,1,60.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016327278974054633,28582.023214537938,8,4,8,8_0,8_2,8_0_0 -23498,1,61.0,265.0,2,111,327.0,0.0,0.0,0,75,0.0,0.0,451.9709724173293,327.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,117938,2,1,0,0,1,,120.0,479.0,11,0.0,2.0,1.0,1.0,1.0,2,2,1606.46474260014,327.0,5323.264816497705,0,7,3,4,28.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.061428467542432086,5323.264816497705,1,1,1_1,1_0_1,1_2_1,1_0_1 -23499,2,55.0,0.0,5,111,420.0,624.0,0.0,63,52,0.0,0.0,580.5131755818909,1044.0,0.0,1131.719410128808,70,2,2,2,1,2,2,2,2,1,10.0,2,,3,129291,1,3,0,0,1,,467.0,555.0,43,2.0,2.0,5.0,3.0,2.0,2,2,1359.14990529281,420.0,36204.4677687076,1,1,2,3,99.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.028836220067357397,18102.2338843538,4,2,4_0,4_0_0,4_2_0,4_0_0 -23500,1,56.0,159.0,5,111,570.0,490.0,0.0,22,22,0.0,0.0,787.8393097182804,1060.0,0.0,888.68992141525,60,1,2,2,2,1,2,2,2,0,,2,,3,121419,1,2,0,0,2,,460.0,511.0,43,2.0,2.0,3.0,4.0,2.3,4,4,1364.7634690236,570.0,12885.397637974036,1,1,2,3,110.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.08226366230841932,5602.346799119146,1,1,1_1,1_0_1,1_2_1,1_0_0 -23501,2,73.0,0.0,5,111,0.0,0.0,1200.0,22,22,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,12,0,0,0,0,0,0,0,0,0,,2,,3,124011,1,1,0,0,2,,0.0,535.0,43,2.0,2.0,2.0,2.0,1.5,2,2,1453.05383185985,0.0,23202.46241049206,1,1,2,3,55.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.051718648597287024,15468.308273661372,3,2,3_0,3_0_0,3_2_0,3_0_0 -23502,2,39.0,0.0,2,111,546.0,1200.0,0.0,22,22,0.0,0.0,754.6671282564581,1746.0,0.0,2176.3834810169387,12,0,0,0,0,0,0,0,0,1,2.0,1,,2,113245,2,1,3,0,1,,369.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,1190.72792006288,546.0,27339.390111147855,1,1,1,2,77.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06386389721576322,15188.550061748809,3,2,3_0,3_1_0,3_2_0,3_0_1 -23503,2,66.0,0.0,7,111,470.0,0.0,0.0,0,74,0.0,0.0,649.6218869606873,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,104360,2,1,0,0,1,,215.0,650.0,11,0.0,2.0,3.0,1.0,1.0,3,2,1574.13820498119,470.0,26311.047989136216,0,5,2,3,63.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017863218530636337,26311.047989136216,7,4,7,7_0,7_2,7_0_0 -23504,2,60.0,0.0,1,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,3455.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115896,2,2,3,0,2,,187.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,999.071091373456,0.0,80171.08163572462,1,1,0,1,93.0,8,6,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.043095339734825724,53447.38775714975,10,5,10,10_1,10_2,10_1_0 -23505,2,68.0,0.0,1,111,350.0,1000.0,0.0,75,74,0.0,0.0,483.76097965157567,1350.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,101158,2,1,2,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1035.53342593433,350.0,79921.28664088559,5,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01689161995184117,53280.85776059039,10,5,10,10_1,10_2,10_1_0 -23506,0,58.0,0.0,2,111,300.0,500.0,0.0,0,42,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,41,0,0,0,0,0,0,0,0,0,,8,,2,132345,2,2,0,0,1,,0.0,,32,2.0,1.0,4.0,2.0,1.5,3,3,1439.24788980576,300.0,37448.38679413678,0,1,5,0,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.021362735981066465,24965.591196091187,7,4,7,7_0,7_2,7_0_1 -23507,2,30.0,0.0,5,111,737.0,0.0,0.0,0,54,0.0,113.86897553014036,1018.6624057234608,847.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,3,121789,1,1,0,0,1,,0.0,461.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1606.46474260014,737.0,21791.0289074618,0,1,2,3,42.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03886920638749489,21791.0289074618,6,3,6,6_0,6_2,6_0_0 -23508,2,47.0,0.0,2,111,570.0,1270.0,0.0,0,46,0.0,0.0,787.8393097182804,1840.0,0.0,2303.33918407626,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,117147,2,1,2,0,1,,348.0,,32,1.0,0.0,5.0,2.0,1.5,3,3,1086.98768168976,570.0,47023.758425501874,0,1,0,1,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039129156443652814,31349.172283667915,8,4,8,8_1,8_2,8_0_1 -23509,2,84.0,0.0,1,111,1470.0,92.0,0.0,0,72,0.0,0.0,2031.796114536618,1562.0,0.0,166.8560668779653,10,0,0,0,0,0,0,0,0,0,,1,,1,109769,2,1,1,0,1,,180.0,,11,0.0,3.0,4.0,1.0,1.0,3,2,1185.68410890968,1470.0,10633.275256457118,0,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1468973540444621,10633.275256457118,2,1,2_0,2_1_0,2_2_0,2_1_0 -23510,2,70.0,0.0,7,111,600.0,1500.0,0.0,77,74,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,43,0,0,0,0,0,0,0,0,0,,1,,5,103358,2,1,2,0,1,,350.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1109.19382704164,600.0,79415.50837364726,5,5,0,1,185.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026443197846440416,52943.67224909817,10,5,10,10_1,10_2,10_0_0 -23511,2,71.0,0.0,2,111,0.0,0.0,1700.0,0,77,0.0,0.0,868.5526692237926,1700.0,0.0,1943.5178169094734,70,0,0,0,0,0,0,0,0,0,,1,,2,122781,1,2,4,0,2,,241.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1124.7134634984,0.0,15295.710034858213,0,5,0,1,110.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11114227427989802,15295.710034858213,3,2,3_0,3_1_0,3_2_0,3_0_1 -23512,2,85.0,0.0,2,111,1790.0,0.0,0.0,0,77,0.0,0.0,2474.091867360916,1964.0,299.3368987290934,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,117249,1,2,2,0,2,,301.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1187.10565795345,1790.0,16983.757433483668,0,5,0,1,70.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1156398993386441,16983.757433483668,4,2,4_0,4_1_0,4_2_0,4_0_1 -23513,2,39.0,0.0,6,111,0.0,0.0,0.0,56,21,0.0,0.0,0.0,1537.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,127169,2,1,1,0,1,,633.0,1150.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1078.13955346487,0.0,40319.988763456204,1,1,2,3,120.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03812005030599243,19199.99464926486,5,3,5,5_1,5_2,5_0_0 -23514,2,56.0,0.0,7,111,530.0,630.0,0.0,56,56,0.0,0.0,732.5523406152432,1160.0,0.0,1142.6013275338928,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,123913,2,1,0,0,1,,540.0,624.0,43,2.0,3.0,5.0,3.0,2.0,1,1,1338.56509992265,530.0,35954.43188527644,1,1,2,3,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03226306018966822,17977.21594263822,4,2,4_0,4_0_0,4_2_0,4_0_0 -23515,2,54.0,0.0,2,111,700.0,1614.0,0.0,56,21,0.0,0.0,967.5219593031513,2314.0,0.0,2927.2357819677827,31,2,2,2,1,1,2,2,2,0,,1,,2,130258,1,3,4,0,2,,420.0,671.0,43,2.0,2.0,5.0,2.0,1.5,1,1,1178.05873025879,700.0,13077.293919195368,1,1,3,4,110.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.17694792319406535,8718.195946130245,1,1,1_0,1_1_0,1_2_0,1_0_1 -23516,2,65.0,0.0,5,111,978.0,0.0,0.0,0,77,0.0,0.0,1351.76639456926,1013.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122979,2,1,2,0,1,,184.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1226.60075756712,978.0,22163.775865646327,0,5,0,1,100.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04570520863144722,22163.775865646327,6,3,6,6_1,6_2,6_0_0 -23517,2,72.0,0.0,5,111,504.0,600.0,0.0,0,77,0.0,0.0,696.615810698269,1104.0,0.0,1088.1917405084694,60,0,0,0,0,0,0,0,0,0,,1,,3,103434,2,1,2,0,1,,360.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1159.97779742369,504.0,43020.1506658703,0,5,0,1,150.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02566239269068506,43020.1506658703,9,5,9,9_1,9_2,9_0_0 -23518,2,53.0,0.0,2,111,2233.0,0.0,0.0,55,38,0.0,0.0,3086.395050177053,2233.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,130238,2,2,2,0,1,,546.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,1014.39341200489,2233.0,52210.980782801875,1,4,0,1,160.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04276878094455454,18646.778851000672,4,2,4_0,4_1_0,4_2_0,4_0_1 -23519,2,32.0,0.0,2,111,800.0,0.0,0.0,22,22,0.0,621.1035028916747,1105.7393820607444,1450.0,86.01635020950958,0.0,10,2,2,2,2,1,2,2,2,2,7.0,1,,2,132604,1,3,3,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1124.27246110421,800.0,57468.87230454662,1,1,1,2,105.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.02523105016426926,31927.151280303675,8,4,8,8_1,8_2,8_0_1 -23520,2,43.0,0.0,1,111,458.0,1500.0,0.0,63,37,0.0,258.79312620486445,633.0357962297762,2208.0,0.0,2720.4793512711735,71,2,2,2,1,1,2,2,2,2,15.0,1,,1,112749,2,2,1,0,1,,440.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1191.65397264016,458.0,136846.63414620975,4,1,0,1,134.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.016134850621469635,76025.90785900541,10,5,10,10_1,10_2,10_1_0 -23521,2,56.0,0.0,7,111,680.0,1720.0,0.0,52,38,0.0,72.46207533736204,939.8784747516328,2470.0,0.0,3119.482989457612,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,130166,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,1057.71150307142,680.0,79378.17900700688,1,1,0,1,150.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031116863990820046,31751.271602802753,8,4,8,8_1,8_2,8_0_0 -23523,2,67.0,0.0,8,111,696.0,1007.0,0.0,55,75,0.0,0.0,961.9932623928477,1703.0,0.0,1826.348471153381,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,120751,2,1,2,0,1,,542.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1076.57560556391,696.0,41862.79147358445,1,5,1,2,156.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040680516995016874,27908.5276490563,7,4,7,7_1,7_2,7_0_0 -23524,2,67.0,0.0,2,111,1840.0,1100.0,0.0,71,71,0.0,0.0,2543.200578739712,2940.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,1,,2,127671,2,1,2,0,1,,340.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1039.592434774,1840.0,57869.60620259533,5,5,0,1,130.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.050803870855926914,38579.73746839689,9,5,9,9_1,9_2,9_0_1 -23525,2,77.0,0.0,7,111,400.0,0.0,0.0,75,72,0.0,362.31037668681023,552.8696910303722,840.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,103593,2,1,2,0,1,,88.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1082.4904747488,400.0,33767.50964612941,5,5,0,1,120.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0248759831211386,22511.673097419607,6,3,6,6_1,6_2,6_0_0 -23526,2,44.0,0.0,7,111,1680.0,0.0,0.0,56,47,0.0,217.38622601208613,2322.0527023275636,1942.0,89.45700421788997,0.0,20,1,2,2,1,1,2,2,2,0,,1,,5,119538,2,1,2,0,1,,140.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,992.594769974096,1680.0,47262.01827078812,1,1,1,2,90.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04109007763640764,22505.72298608958,6,3,6,6_1,6_2,6_0_0 -23527,2,48.0,0.0,9,111,1500.0,0.0,0.0,21,22,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2010.0,6,128113,2,1,1,0,1,,775.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1063.46493228956,1500.0,27318.614079038416,1,1,0,1,148.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054907617043097025,9756.647885370863,2,1,2_0,2_1_0,2_2_0,2_0_0 -23528,2,46.0,0.0,7,111,484.0,900.0,0.0,33,42,0.0,82.81380038555662,668.9723261467504,1464.0,0.0,1632.287610762704,44,0,0,0,0,0,0,0,0,2,15.0,1,,5,107747,2,1,2,0,1,,310.0,,43,2.0,2.0,8.0,3.0,2.0,2,2,1182.88194200533,484.0,60174.650973777665,1,1,1,2,130.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024329181412917008,30087.325486888833,8,4,8,8_1,8_2,8_0_0 -23529,2,47.0,0.0,8,111,936.0,0.0,0.0,0,21,0.0,0.0,1293.7150770110711,936.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,105171,2,1,2,0,1,,500.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1178.1340424908,936.0,10513.612894866146,0,1,1,2,130.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08902743608308557,10513.612894866146,2,1,2_0,2_1_0,2_2_0,2_0_0 -23530,1,44.0,60.0,9,111,230.0,650.0,0.0,0,54,89.61509262108004,0.0,317.900072342464,940.0,0.0,1178.8743855508417,50,2,2,1,1,2,2,2,2,0,,1,2005.0,6,107000,2,1,1,0,1,,400.0,435.0,32,1.0,0.0,3.0,2.0,1.3,2,2,985.069564747432,230.0,24405.413221692812,0,4,2,3,55.0,8,6,5,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,1,0.03851604525034137,18773.394785917546,5,3,5,5_1,5_2,5_0_0 -23531,2,36.0,0.0,1,111,820.0,1600.0,0.0,85,65,0.0,207.03450096389156,1133.3828666122631,2620.0,0.0,2901.844641355918,20,0,0,0,0,0,0,0,0,2,7.0,1,,1,126270,2,1,3,0,1,,530.0,,42,1.0,0.0,5.0,4.0,2.3,2,2,292.461826339019,820.0,46571.5065412774,6,1,1,2,100.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05625757452526973,20248.481104903218,5,3,5,5_1,5_2,5_1_0 -23532,2,50.0,0.0,2,111,0.0,0.0,0.0,52,21,0.0,0.0,0.0,1754.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119160,2,1,1,0,2,,435.0,,43,4.0,0.0,4.0,4.0,2.5,3,2,1067.80919830677,0.0,45941.23009581959,1,1,1,2,96.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03817921279734311,18376.492038327837,4,2,4_0,4_1_0,4_2_0,4_0_1 -23533,2,60.0,0.0,1,111,664.0,1040.0,0.0,43,43,0.0,0.0,917.7636871104179,1704.0,0.0,1886.1990168813468,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,103239,2,2,2,0,1,,323.0,,43,2.0,0.0,7.0,5.0,2.8,3,3,1050.42815900426,664.0,56217.006852218845,1,1,0,1,130.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030311112160051692,20077.502447221017,5,3,5,5_1,5_2,5_1_0 -23534,2,31.0,0.0,2,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,616.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,127657,2,1,0,0,1,,185.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,1459.63305715829,0.0,18811.7681264669,0,1,1,2,45.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03274545996201862,18811.7681264669,5,3,5,5_0,5_2,5_0_1 -23535,2,43.0,0.0,2,111,189.0,508.0,0.0,0,43,0.0,0.0,261.2309290118509,697.0,0.0,921.3356736305041,43,0,0,0,0,0,0,0,0,1,10.0,2,,2,103564,2,2,0,0,1,,205.0,480.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1631.21743270404,189.0,25093.96470503702,0,1,2,3,50.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02777560294647636,25093.96470503702,7,4,7,7_0,7_2,7_0_1 -23536,2,80.0,0.0,2,111,326.0,805.0,0.0,77,75,0.0,0.0,450.58879818975333,1131.0,0.0,1459.9905851821964,71,0,0,0,0,0,0,0,0,0,,2,,2,100911,2,1,0,0,1,,316.0,,41,0.0,4.0,3.0,2.0,1.5,4,4,1467.92003814695,326.0,41574.46405935759,5,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02720419915420255,27716.30937290506,7,4,7,7_0,7_2,7_0_1 -23537,2,47.0,0.0,9,111,900.0,0.0,0.0,52,47,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,126391,2,1,0,0,1,,370.0,650.0,43,2.0,0.0,3.0,3.0,1.8,4,4,1724.13970683656,900.0,44922.313305138334,1,1,2,3,70.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02003458713015689,24956.84072507685,7,4,7,7_0,7_2,7_0_0 -23538,2,34.0,0.0,5,111,350.0,0.0,0.0,46,37,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,128300,1,2,0,1,1,440.0,0.0,680.0,43,2.0,0.0,3.0,3.0,1.8,3,3,2133.66910952659,350.0,50954.946115453684,1,1,2,3,70.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0068688130727676605,28308.30339747427,8,4,8,8_0,8_2,8_0_0 -23539,1,62.0,139.0,9,111,175.0,263.0,0.0,0,75,0.0,0.0,241.88048982578783,508.0,120.42289029331342,476.9907129228791,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,100115,2,2,0,0,1,,130.0,423.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1325.83569520959,175.0,11019.370750092465,0,5,2,3,69.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04610063600916026,11019.370750092465,2,1,2_1,2_0_1,2_2_1,2_0_0 -23540,2,67.0,0.0,5,111,1200.0,0.0,0.0,72,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118612,2,1,2,0,1,,496.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1104.17520360751,1200.0,33558.961117474224,5,5,0,1,125.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03575796031943186,22372.640744982815,6,3,6,6_1,6_2,6_0_0 -23541,0,44.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,713.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,2,107412,2,1,2,0,1,,558.0,,32,2.0,1.0,2.0,2.0,1.5,1,1,1126.77015826736,0.0,32202.57084349339,0,1,5,0,40.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02214108940137813,21468.380562328926,6,3,6,6_1,6_2,6_0_1 -23542,1,20.0,120.0,2,111,360.0,500.0,0.0,0,68,0.0,0.0,497.582721927335,860.0,0.0,906.8264504237244,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,124702,2,1,0,0,1,,120.0,262.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1368.29350021463,360.0,14356.804223046904,0,1,2,3,43.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05990191038611827,14356.804223046904,3,2,3_1,3_0_1,3_2_1,3_0_1 -23543,2,72.0,0.0,2,111,774.0,1300.0,0.0,0,74,0.0,227.73795106028072,1069.8028521437702,2294.0,0.0,2357.7487711016834,41,0,0,0,0,0,0,0,0,0,,1,,2,127563,2,1,1,0,1,,380.0,,21,0.0,3.0,6.0,2.0,1.5,2,2,1172.21410069017,774.0,35107.65074527034,0,5,0,1,160.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06534188278915373,23405.10049684689,6,3,6,6_1,6_2,6_0_1 -23544,2,64.0,0.0,5,111,700.0,0.0,0.0,0,78,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,116762,2,1,0,0,1,,169.0,,11,0.0,2.0,4.0,1.0,1.0,4,4,1459.62025885499,700.0,4711.704671410954,0,7,0,1,73.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.1485661875726986,4711.704671410954,1,1,1_0,1_0_0,1_2_0,1_0_0 -23545,2,55.0,0.0,2,111,197.0,0.0,0.0,0,34,0.0,0.0,272.28832283245833,197.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,90.0,2,,2,109765,2,2,0,1,2,,182.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1545.16166359341,197.0,53840.23451055448,0,1,0,1,50.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0036589736614423816,53840.23451055448,10,5,10,10_0,10_2,10_0_1 -23546,1,60.0,220.0,2,111,240.0,130.0,0.0,0,78,0.0,0.0,331.72181461822333,370.0,0.0,235.77487711016835,10,0,0,0,0,0,0,0,0,0,,2,,2,105362,2,1,0,1,1,,0.0,294.0,11,0.0,1.0,2.0,1.0,1.0,3,2,1318.7746185079,240.0,6060.0,0,7,2,3,40.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06105610561056106,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -23547,2,45.0,0.0,2,111,0.0,0.0,1757.0,67,62,0.0,0.0,897.6747293095315,1757.0,0.0,2008.6828260646735,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,112757,2,2,5,0,2,,310.0,347.0,43,2.0,3.0,4.0,4.0,2.1,1,1,272.08670154565,0.0,46534.877443173835,4,1,2,3,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03775662678268712,22159.465449130395,6,3,6,6_1,6_2,6_0_1 -23548,2,67.0,0.0,2,111,280.0,800.0,0.0,74,86,0.0,0.0,387.00878372126056,1080.0,0.0,1450.922320677959,44,0,0,0,0,0,0,0,0,0,,1,,2,104515,2,2,1,0,2,,500.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1054.90406095801,280.0,80598.93758080635,5,5,0,1,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.013399680348357207,53732.6250538709,10,5,10,10_1,10_2,10_0_1 -23549,2,45.0,0.0,7,111,555.0,982.0,0.0,52,48,0.0,0.0,767.1066963046414,1537.0,0.0,1781.007148632195,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,100889,2,1,2,0,1,,630.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,1034.61360431961,555.0,65299.74681260646,1,1,1,2,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023537610404689564,23321.338147359453,6,3,6,6_1,6_2,6_0_0 -23550,2,73.0,0.0,5,111,0.0,0.0,840.0,0,77,0.0,0.0,429.16720126352106,840.0,0.0,960.3264507082105,50,0,0,0,0,0,0,0,0,0,,1,,3,111441,2,1,2,0,1,,240.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1175.49874551361,0.0,33504.82241812986,0,5,0,1,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025071017822958706,33504.82241812986,8,4,8,8_1,8_2,8_0_0 -23551,1,85.0,65.0,2,111,210.0,0.0,0.0,0,77,0.0,0.0,290.25658779094545,240.0,51.60981012570575,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,131578,2,2,0,1,1,364.0,0.0,221.0,11,0.0,3.0,2.0,1.0,1.0,2,2,384.617367783658,210.0,14284.707323432393,0,5,2,3,35.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.01680118427111965,14284.707323432393,3,2,3_1,3_0_1,3_2_1,3_0_1 -23552,2,61.0,0.0,6,111,720.0,0.0,0.0,0,77,0.0,0.0,995.16544385467,720.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,125173,1,1,0,0,1,,180.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,432.336231755523,720.0,28544.056157537936,0,5,0,1,76.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.025224165620549407,28544.056157537936,8,4,8,8_0,8_2,8_0_0 -23553,1,49.0,100.0,2,111,250.0,360.0,0.0,0,56,0.0,0.0,345.54355689398267,610.0,0.0,652.9150443050816,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,124739,2,2,0,1,1,440.0,320.0,380.0,32,1.0,0.0,3.0,2.0,1.5,4,4,1414.72311142203,250.0,18985.37994678516,0,1,2,3,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.032129986426913344,12656.91996452344,2,1,2_1,2_0_1,2_2_1,2_0_1 -23554,1,43.0,110.0,5,111,480.0,0.0,0.0,0,56,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,105810,2,1,0,0,1,,53.0,280.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1927.11089982474,480.0,12942.800208294377,0,4,3,4,14.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.037086255854617355,12942.800208294377,2,1,2_1,2_0_1,2_2_1,2_0_0 -23555,2,64.0,0.0,5,111,200.0,71.0,0.0,55,74,0.0,0.0,276.4348455151861,271.0,0.0,128.76935596016887,43,0,0,0,0,0,0,0,0,0,,2,,3,108474,2,2,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1512.69113219576,200.0,52838.87306209288,1,5,0,1,80.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005128799769850088,35225.91537472859,9,5,9,9_0,9_2,9_0_0 -23556,2,35.0,0.0,2,111,515.0,740.0,0.0,48,31,0.0,0.0,711.8197272016042,1255.0,0.0,1342.1031466271122,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,109666,2,1,1,0,1,,192.0,,43,2.0,0.0,8.0,4.0,2.1,4,3,1115.92913714878,515.0,66868.11750310862,1,1,1,2,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018768286694203058,31841.960715766007,8,4,8,8_1,8_2,8_0_1 -23557,2,59.0,0.0,6,111,568.0,955.0,0.0,74,52,0.0,0.0,785.0749612631286,1523.0,0.0,1732.0385203093138,70,0,0,0,0,0,0,0,0,2,15.0,1,,4,126955,2,1,1,0,1,,424.0,,42,1.0,2.0,8.0,2.0,1.5,1,1,1137.85320155795,568.0,62407.14323431069,5,1,0,1,200.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024404257606886786,41604.76215620713,9,5,9,9_1,9_2,9_0_0 -23558,2,42.0,0.0,1,111,471.0,1263.0,0.0,21,46,0.0,0.0,651.0040611882633,1734.0,0.0,2290.643613770328,60,0,0,0,0,0,0,0,0,0,,1,,1,111216,2,1,1,0,2,,355.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,1106.01579732451,471.0,74486.66865099584,1,1,1,2,150.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023279333488849988,31036.111937914935,8,4,8,8_1,8_2,8_1_0 -23559,2,55.0,0.0,1,111,690.0,0.0,0.0,85,63,2240.377315527001,393.36555183139393,953.7002170273921,2722.0,261.48970463690915,0.0,71,2,2,2,2,1,2,2,2,2,3.0,1,,1,108746,2,1,2,0,1,,222.0,,42,2.0,0.0,5.0,4.0,2.5,2,2,999.079493934905,690.0,45718.84266630714,7,1,1,2,164.0,8,6,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.059537815072602425,18287.537066522855,4,2,4_0,4_1_0,4_2_0,4_1_0 -23560,2,69.0,0.0,5,111,422.0,0.0,0.0,77,75,0.0,0.0,583.2775240370427,1422.0,1720.3270041901917,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,132682,2,1,2,0,2,,147.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,1076.15696238511,422.0,32357.030516544684,5,5,0,1,130.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043947172447512076,21571.353677696457,6,3,6,6_1,6_2,6_0_0 -23561,2,34.0,0.0,2,111,500.0,820.0,0.0,46,46,0.0,0.0,691.0871137879653,1320.0,0.0,1487.1953786949082,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,116296,2,3,3,0,2,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,1,1136.71042763878,500.0,50951.820574217054,1,1,1,2,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025906826981329775,28306.56698567614,8,4,8,8_1,8_2,8_0_1 -23562,2,47.0,0.0,7,111,566.0,1159.0,0.0,46,53,0.0,0.0,782.3106128079767,1725.0,0.0,2102.0237120821935,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,125663,1,1,2,0,1,,472.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1010.83358533795,566.0,49938.10126406998,4,1,1,2,136.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03454276306738803,19975.24050562799,5,3,5,5_1,5_2,5_0_0 -23563,2,61.0,0.0,9,111,539.0,509.0,0.0,56,75,0.0,0.0,744.9919086634266,1048.0,0.0,923.1493265313514,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,121802,2,1,1,0,1,,239.0,618.0,42,1.0,2.0,3.0,2.0,1.5,1,1,955.80833008357,539.0,39931.0,1,5,2,3,71.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026245273096090756,26620.666666666668,7,4,7,7_1,7_2,7_0_0 -23564,2,57.0,0.0,2,112,1000.0,0.0,0.0,37,37,0.0,0.0,1382.1742275759307,1040.0,68.81308016760767,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,113733,2,1,2,0,1,,200.0,,43,2.0,2.0,7.0,2.0,1.5,1,1,1430.44239988524,1000.0,93052.47105711681,1,1,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011176489868405907,62034.98070474454,10,5,10,10_1,10_0,10_0_1 -23565,2,34.0,0.0,9,112,900.0,0.0,0.0,47,54,0.0,310.55175144583734,1243.9568048183376,1200.0,0.0,0.0,42,2,2,1,2,2,2,2,1,2,40.0,1,2008.0,6,129295,2,1,1,0,1,,431.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,1266.97363341689,900.0,47047.38343457748,1,1,1,2,90.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.025506200608768816,22403.515921227372,6,3,6,6_1,6_0,6_0_0 -23566,2,41.0,0.0,1,112,610.0,0.0,0.0,64,54,2658.581081092041,0.0,843.1262788213177,2494.0,178.91400843577995,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,105188,2,2,2,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1488.55512403199,610.0,48003.696971523634,1,1,0,1,120.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05195433179822526,22858.90331977316,6,3,6,6_1,6_0,6_1_0 -23567,2,59.0,0.0,6,112,1500.0,0.0,0.0,77,74,0.0,155.27587572291867,2073.261341363896,1650.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,126001,2,1,1,0,1,,280.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1426.94491759216,1500.0,23447.03541722078,6,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07037136979748622,15631.356944813853,3,2,3_0,3_1_0,3_0_0,3_0_0 -23568,2,33.0,0.0,2,112,100.0,0.0,0.0,46,46,0.0,0.0,138.21742275759306,100.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,2,104709,2,1,2,0,1,,260.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1492.09474149524,100.0,56906.85223672628,1,1,1,2,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0017572576248640664,31614.917909292377,8,4,8,8_1,8_0,8_0_1 -23569,2,44.0,0.0,8,112,430.0,435.0,0.0,52,42,0.0,0.0,594.3349178576501,865.0,0.0,788.9390118686403,50,0,0,0,0,0,0,0,0,2,40.0,1,2002.0,6,104536,2,1,1,0,1,,420.0,,43,2.0,0.0,6.0,5.0,2.4,5,4,1287.47641154664,430.0,67649.77158524016,1,1,1,2,125.0,9,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012786443763673045,28187.4048271834,8,4,8,8_1,8_0,8_0_0 -23570,2,64.0,0.0,6,112,2000.0,0.0,0.0,0,74,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,20,2,2,2,1,2,2,2,2,0,,1,,4,115479,2,2,2,0,1,,300.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1540.01519010698,2000.0,40351.56304629213,0,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.0495643749340158,40351.56304629213,9,5,9,9_1,9_0,9_0_0 -23571,2,37.0,0.0,8,112,200.0,300.0,0.0,0,62,0.0,0.0,276.4348455151861,500.0,0.0,544.0958702542347,50,2,2,2,1,2,2,2,2,2,20.0,1,2003.0,6,103043,2,2,2,0,1,,300.0,415.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1340.79429838391,200.0,18006.77931041338,0,1,2,3,70.0,9,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.027767319817755987,18006.77931041338,4,2,4_0,4_1_0,4_0_0,4_0_0 -23572,2,29.0,0.0,7,112,915.0,0.0,0.0,64,43,0.0,403.71727687958855,1264.6894182319766,1349.0,75.69438818436844,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,103832,2,1,2,0,1,,370.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1591.52254798478,915.0,35212.283536361,1,1,1,2,112.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03831049464903326,19562.379742422778,5,3,5,5_1,5_0,5_0_0 -23573,2,87.0,0.0,1,112,1060.0,0.0,0.0,0,72,0.0,0.0,1465.1046812304864,1130.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112083,1,1,2,0,2,,202.0,,11,0.0,2.0,2.0,1.0,1.0,4,4,1661.94130892921,1060.0,11268.60614339764,0,5,0,1,60.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10027859573937416,11268.60614339764,2,1,2_0,2_1_0,2_0_0,2_1_0 -23574,2,31.0,0.0,9,112,1100.0,0.0,0.0,43,47,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,118272,2,2,4,0,1,,450.0,680.0,43,2.0,0.0,4.0,3.0,1.8,3,2,1752.43032525399,1100.0,41438.801414239286,1,1,2,3,107.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026545169320993336,23021.556341244046,6,3,6,6_1,6_0,6_0_0 -23575,0,50.0,0.0,1,112,400.0,0.0,0.0,0,52,0.0,0.0,552.8696910303722,470.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114227,1,2,3,0,2,,64.0,,22,1.0,2.0,5.0,2.0,1.5,6,5,1339.12722354229,400.0,39108.536195045104,0,1,5,0,100.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012017836659904114,26072.3574633634,7,4,7,7_1,7_0,7_1_0 -23576,2,65.0,0.0,5,112,621.0,0.0,0.0,52,75,0.0,0.0,858.3301953246529,2621.0,3440.6540083803834,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131648,2,1,2,0,1,,140.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,1534.76204801769,621.0,42941.95164654053,1,5,0,1,166.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06103588447897551,28627.967764360354,8,4,8,8_1,8_0,8_0_0 -23577,2,67.0,0.0,5,112,414.0,0.0,0.0,56,77,0.0,0.0,572.2201302164352,2614.0,3784.719409218422,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,130514,2,2,4,0,1,,219.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1333.3732658137,414.0,65640.10177591801,5,5,0,1,98.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03982321674216267,43760.06785061201,10,5,10,10_1,10_0,10_0_0 -23578,2,55.0,0.0,6,112,710.0,0.0,0.0,52,63,0.0,703.9173032772313,981.3437015789107,1600.0,361.26867087994026,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,102381,1,2,2,0,1,,278.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,1527.99152282413,710.0,64050.150541041,1,1,0,1,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02498042528369669,32025.0752705205,8,4,8,8_1,8_0,8_0_0 -23579,2,44.0,0.0,8,112,1542.0,0.0,0.0,52,54,0.0,0.0,2131.312658922085,1542.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,75.0,1,2002.0,6,128278,2,1,2,0,1,,385.0,,43,2.0,0.0,3.0,2.0,1.5,4,4,1436.44420160622,1542.0,54128.30421603098,1,1,1,2,80.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.028487868266586332,36085.536144020654,9,5,9,9_1,9_0,9_0_0 -23581,2,80.0,0.0,2,111,400.0,0.0,0.0,86,74,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116661,1,1,0,1,2,,0.0,,41,0.0,3.0,7.0,2.0,1.5,3,3,1518.33430809043,400.0,92324.15644555508,6,5,0,1,140.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.004332560571359089,61549.437630370056,10,5,10,10_0,10_3,10_0_1 -23582,2,28.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,413.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112574,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,4,3,1408.43075887486,0.0,29985.045682271655,0,1,1,2,59.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013773532459354629,29985.045682271655,8,4,8,8_0,8_3,8_0_1 -23583,2,82.0,0.0,2,111,0.0,0.0,1290.0,0,75,0.0,0.0,659.0782019404073,1290.0,0.0,1474.7870493018945,50,0,0,0,0,0,0,0,0,0,,1,,2,108953,2,1,2,0,1,,500.0,,21,1.0,3.0,5.0,2.0,1.5,3,3,1101.2016184404,0.0,36653.41249972999,0,5,0,1,120.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03519454020848681,24435.608333153326,7,4,7,7_1,7_3,7_0_1 -23584,2,36.0,0.0,7,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,586.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,5,104396,1,2,0,0,1,,0.0,360.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1682.16324053171,0.0,22217.406854777186,0,1,2,3,35.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02637571539425621,22217.406854777186,6,3,6,6_0,6_3,6_0_0 -23585,2,75.0,0.0,2,111,480.0,0.0,0.0,0,77,0.0,0.0,663.4436292364467,480.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,118300,2,1,0,1,1,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1582.07883267757,480.0,79150.50225311445,0,5,0,1,150.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006064396135668397,79150.50225311445,10,5,10,10_0,10_3,10_0_1 -23586,2,36.0,0.0,6,111,307.0,0.0,0.0,0,56,0.0,0.0,424.32748786581067,307.0,0.0,0.0,50,1,2,2,2,2,2,2,1,1,1.0,2,,4,102995,2,1,0,0,2,,0.0,391.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1547.16198945879,307.0,17130.693769556667,0,1,2,3,45.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.01792104885708578,17130.693769556667,4,2,4_0,4_0_0,4_3_0,4_0_0 -23587,2,24.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,886.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,127803,2,2,0,0,1,,0.0,450.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1547.16198945879,0.0,17873.814028949968,0,4,2,3,48.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04956972241990199,17873.814028949968,4,2,4_0,4_0_0,4_3_0,4_0_1 -23588,2,60.0,0.0,1,111,1870.0,2542.0,0.0,37,35,0.0,0.0,2584.66580556699,4412.0,0.0,4610.305673954215,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,117229,1,2,2,0,2,,439.0,,43,2.0,0.0,11.0,3.0,2.0,4,2,1206.34369863545,1870.0,130837.50381350901,1,1,1,2,280.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03372121808658703,65418.75190675451,10,5,10,10_1,10_3,10_1_0 -23589,1,32.0,289.0,2,111,210.0,490.0,0.0,0,56,0.0,0.0,290.25658779094545,700.0,0.0,888.68992141525,20,2,1,2,1,1,2,2,2,0,,2,,2,103012,1,2,0,0,1,,0.0,265.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1224.82952726676,210.0,9377.619043032097,0,4,2,3,47.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.07464581326964063,7213.55311002469,1,1,1_1,1_0_1,1_3_1,1_0_1 -23590,2,80.0,0.0,5,111,245.0,741.0,0.0,0,77,0.0,0.0,338.632685756103,986.0,0.0,1343.9167995279597,71,0,0,0,0,0,0,0,0,0,,2,,3,111130,1,1,0,0,1,,0.0,382.0,11,0.0,4.0,2.0,1.0,1.0,5,4,1277.58287694542,245.0,21724.137041990194,0,5,2,3,58.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04538730344474343,21724.137041990194,6,3,6,6_0,6_3,6_0_0 -23591,1,35.0,300.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,452.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,1,129214,2,2,0,1,2,,0.0,375.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1711.9426596906,0.0,10391.603038555673,0,7,2,3,34.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.04349665766898111,10391.603038555673,2,1,2_1,2_0_1,2_3_1,2_1_0 -23592,2,85.0,0.0,8,111,300.0,630.0,0.0,0,74,0.0,0.0,414.65226827277917,930.0,0.0,1142.6013275338928,50,0,0,0,0,0,0,0,0,0,,2,2001.0,6,122393,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,3,2,1352.55046670903,300.0,42843.11896314118,0,5,0,1,55.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021707103089298848,42843.11896314118,9,5,9,9_0,9_3,9_0_0 -23593,2,49.0,0.0,1,111,500.0,2000.0,0.0,34,34,0.0,0.0,691.0871137879653,2500.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,1,15.0,1,,1,131193,1,1,3,0,1,,560.0,,43,2.0,2.0,7.0,3.0,2.0,2,2,1206.34369863545,500.0,91013.41794470695,1,1,1,2,180.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027468477247155097,45506.708972353474,10,5,10,10_1,10_3,10_1_0 -23598,2,83.0,0.0,2,111,222.0,61.0,0.0,0,74,0.0,0.0,306.84267852185656,283.0,0.0,110.63282695169438,12,0,0,0,0,0,0,0,0,0,,2,,2,108229,2,1,0,1,1,888.0,0.0,712.0,11,0.0,2.0,4.0,1.0,1.0,3,3,1808.9967585629,222.0,55316.337903348365,0,5,2,3,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005116029200893099,55316.337903348365,10,5,10,10_0,10_3,10_0_1 -23599,2,24.0,0.0,2,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,635.0,0.0,0.0,31,2,2,2,1,1,2,2,2,0,,2,,2,100782,2,1,0,1,1,,0.0,1440.0,22,2.0,0.0,5.0,4.0,2.5,2,2,1306.77100913909,0.0,45902.940087681185,0,1,3,4,73.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.01383353656186421,18361.176035072473,4,2,4_0,4_0_0,4_3_0,4_0_1 -23600,2,36.0,0.0,9,111,898.0,0.0,0.0,47,45,0.0,0.0,1241.1924563631856,898.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,10.0,2,2009.0,6,125894,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1290.47151800019,898.0,42418.26557960846,1,1,1,2,66.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021170125362968435,28278.843719738972,8,4,8,8_0,8_3,8_0_0 -23603,2,33.0,0.0,5,111,0.0,0.0,0.0,46,33,0.0,0.0,0.0,873.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,15.0,2,,3,118482,2,3,0,1,2,625.0,0.0,600.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1456.33856877497,0.0,74903.03282622295,1,1,2,3,73.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011655068787740325,49935.35521748196,10,5,10,10_0,10_3,10_0_0 -23604,2,81.0,0.0,1,111,150.0,1111.0,0.0,0,75,0.0,0.0,207.32613413638958,1261.0,0.0,2014.9683728415157,71,0,0,0,0,0,0,0,0,0,,1,,1,109565,2,1,1,0,1,,140.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,988.392342883052,150.0,35661.549987840015,0,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.035360212902411134,35661.549987840015,9,5,9,9_1,9_3,9_1_0 -23605,1,62.0,271.0,6,111,240.0,90.0,0.0,0,78,0.0,0.0,331.72181461822333,330.0,0.0,163.2287610762704,71,2,2,2,2,1,2,2,2,0,,2,,4,109749,2,1,0,1,1,500.0,0.0,386.0,11,0.0,1.0,4.0,1.0,1.0,2,2,1368.83880401372,240.0,8333.11320302039,0,5,2,3,86.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.03960104608688016,8333.11320302039,1,1,1_1,1_0_1,1_3_1,1_0_0 -23606,2,50.0,0.0,9,111,740.0,738.0,0.0,52,63,0.0,0.0,1022.8089284061887,1478.0,0.0,1338.4758408254172,41,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,133280,2,2,1,0,1,,439.0,740.0,43,2.0,3.0,5.0,3.0,1.8,1,1,1094.55909082446,740.0,32480.247913009138,1,1,2,3,106.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0455045787814946,18044.582173893967,4,2,4_0,4_1_0,4_3_0,4_0_0 -23607,1,87.0,126.0,5,111,400.0,0.0,0.0,78,86,0.0,0.0,552.8696910303722,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,108839,1,1,0,1,2,634.0,0.0,456.0,41,0.0,0.0,3.0,2.0,1.5,3,3,1506.62018509459,400.0,17954.35086263457,5,5,2,3,63.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02227872247013141,11969.567241756378,2,1,2_1,2_0_1,2_3_1,2_0_0 -23608,2,53.0,0.0,2,111,800.0,1200.0,0.0,34,43,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,71,2,2,2,2,1,2,2,2,3,40.0,1,,2,108415,2,1,2,0,1,,350.0,,43,2.0,2.0,5.0,3.0,2.0,4,2,320.167735164865,800.0,61792.76795562141,1,1,1,2,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03236624715430078,30896.383977810707,8,4,8,8_1,8_3,8_0_1 -23609,2,70.0,0.0,5,111,180.0,0.0,0.0,78,78,0.0,0.0,248.7913609636675,250.0,120.42289029331342,0.0,44,2,2,2,2,1,2,2,2,0,,2,,3,128560,1,2,0,1,1,,192.0,376.0,41,0.0,2.0,4.0,2.0,1.5,4,3,398.867470583783,180.0,26625.467103402993,5,5,2,3,90.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.009389506633971787,17750.31140226866,4,2,4_0,4_0_0,4_3_0,4_0_0 -23611,1,52.0,216.0,2,111,400.0,550.0,0.0,0,62,0.0,0.0,552.8696910303722,950.0,0.0,997.5090954660969,43,0,0,0,0,0,0,0,0,0,,2,,2,111149,2,3,0,1,1,,0.0,238.0,12,1.0,4.0,3.0,1.0,1.0,2,2,421.042621492546,400.0,7160.722135007849,0,4,2,3,40.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.13266818375140857,7160.722135007849,1,1,1_1,1_0_1,1_3_1,1_0_1 -23612,2,36.0,0.0,6,111,1100.0,0.0,0.0,85,46,0.0,0.0,1520.3916503335236,1375.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,30.0,2,,4,126326,1,2,0,0,1,,146.0,390.0,42,1.0,0.0,3.0,2.0,1.5,5,5,350.186921394153,1100.0,20919.996205536147,6,1,2,3,70.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.06572658935932923,13946.664137024098,3,2,3_0,3_0_0,3_3_0,3_0_0 -23613,1,76.0,202.0,2,111,192.0,720.0,0.0,0,77,0.0,0.0,265.37745169457867,912.0,0.0,1305.830088610163,70,2,2,2,2,1,2,2,2,0,,2,,2,110853,1,3,0,1,2,,0.0,305.0,11,0.0,8.0,1.0,1.0,1.0,1,1,373.607483221309,192.0,9972.3328,0,5,2,3,50.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.09145302491308753,9972.3328,2,1,2_1,2_0_1,2_3_1,2_0_1 -23614,2,57.0,0.0,8,111,700.0,0.0,0.0,0,52,0.0,0.0,967.5219593031513,700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,102701,2,1,0,0,1,,0.0,517.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1555.13782920475,700.0,25801.591839372835,0,1,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027130109039699275,25801.591839372835,7,4,7,7_0,7_3,7_0_0 -23615,1,42.0,340.0,6,111,0.0,0.0,1400.0,22,45,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,70,0,0,0,0,0,0,0,0,1,15.0,1,,4,104444,2,1,2,0,1,,420.0,835.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,324.043226112731,0.0,29109.240994044096,1,1,2,3,95.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.048094692688361314,11195.861920786192,2,1,2_1,2_1_1,2_3_1,2_0_0 -23616,2,49.0,0.0,2,111,1451.0,0.0,0.0,0,52,0.0,113.86897553014036,2005.5348042126752,1586.0,43.00817510475479,0.0,31,0,0,0,0,0,0,0,0,1,10.0,1,,2,104855,2,1,2,0,1,,183.0,,12,1.0,2.0,8.0,1.0,1.0,2,2,330.005241442727,1451.0,20707.30423910805,0,1,1,2,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07659133133344621,20707.30423910805,5,3,5,5_1,5_3,5_0_1 -23619,0,61.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,772.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,114200,2,2,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1696.81006046986,0.0,61711.580411791656,0,1,5,0,90.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012509807638186635,61711.580411791656,10,5,10,10_0,10_3,10_0_1 -23620,2,24.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,264.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,122655,2,1,0,1,1,609.0,0.0,285.0,12,1.0,0.0,2.0,1.0,1.0,2,2,372.034188303538,0.0,15132.471530352097,0,1,2,3,45.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017445927419752913,15132.471530352097,3,2,3_0,3_0_0,3_3_0,3_0_1 -23621,2,48.0,0.0,2,111,580.0,760.0,0.0,0,62,0.0,0.0,801.6610519940398,1340.0,0.0,1378.376204644061,41,0,0,0,0,0,0,0,0,1,10.0,2,,2,126447,2,2,0,0,1,,0.0,407.0,12,1.0,3.0,5.0,1.0,1.0,2,2,397.747805991656,580.0,20055.048101981796,0,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06681609503931253,20055.048101981796,5,3,5,5_0,5_3,5_0_1 -23623,2,59.0,0.0,7,111,1150.0,0.0,0.0,0,47,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,123441,2,1,1,0,1,,118.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1139.6187932098,1150.0,30383.554174893474,0,1,0,1,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03784942319059788,30383.554174893474,8,4,8,8_1,8_3,8_0_0 -23624,2,60.0,0.0,7,111,300.0,859.0,0.0,0,75,0.0,207.03450096389156,414.65226827277917,1359.0,0.0,1557.9278418279587,42,0,0,0,0,0,0,0,0,0,,1,,5,114365,2,1,2,0,1,,240.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1030.70878720659,300.0,63455.690225548955,0,5,0,1,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021416519072907828,63455.690225548955,10,5,10,10_1,10_3,10_0_0 -23625,1,86.0,138.0,2,111,140.0,87.0,0.0,0,77,0.0,0.0,193.50439186063028,227.0,0.0,157.78780237372806,41,0,0,0,0,0,0,0,0,0,,2,,2,116674,2,1,0,1,1,548.0,0.0,312.0,11,0.0,3.0,4.0,1.0,1.0,3,2,1369.03539680847,140.0,15878.369917726326,0,5,2,3,73.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.014296177830356584,15878.369917726326,3,2,3_1,3_0_1,3_3_1,3_0_1 -23626,2,77.0,0.0,1,111,284.0,977.0,0.0,78,78,0.0,0.0,392.5374806315643,1261.0,0.0,1771.9388841279576,20,0,0,0,0,0,0,0,0,0,,1,,1,103184,1,2,2,0,2,,210.0,304.0,41,0.0,2.0,4.0,2.0,1.5,4,2,967.13537097043,284.0,28934.0,5,5,2,3,75.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04358194511647197,19289.333333333332,5,3,5,5_1,5_3,5_1_0 -23627,2,79.0,0.0,1,111,290.0,1600.0,0.0,0,75,0.0,0.0,400.8305259970199,1890.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,1,112656,2,2,5,0,2,,150.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1203.14414116538,290.0,18160.393229104353,0,5,0,1,150.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10407263632216032,18160.393229104353,4,2,4_0,4_1_0,4_3_0,4_1_0 -23628,2,70.0,0.0,1,111,460.0,1282.0,0.0,74,75,0.0,0.0,635.800144684928,1742.0,0.0,2325.1030188864297,50,0,0,0,0,0,0,0,0,0,,1,,1,131243,2,1,1,0,1,,190.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,1005.77663421705,460.0,39726.73039404713,5,5,0,1,70.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04384956886009,26484.486929364753,7,4,7,7_1,7_3,7_1_0 -23629,2,53.0,0.0,6,111,0.0,0.0,1084.0,0,52,0.0,0.0,553.8300549638772,1084.0,0.0,1239.2784197234525,10,0,0,0,0,0,0,0,0,2,10.0,2,,4,115642,2,3,0,0,1,,0.0,462.0,12,1.0,2.0,5.0,1.0,1.0,2,2,1433.87373838248,0.0,11489.6,0,1,2,3,87.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09434619133825373,11489.6,2,1,2_0,2_0_0,2_3_0,2_0_0 -23630,2,29.0,0.0,2,111,543.0,722.0,0.0,54,48,0.0,0.0,750.5206055737303,1265.0,0.0,1309.457394411858,10,0,0,0,0,0,0,0,0,2,8.0,1,,2,121573,2,1,1,0,1,,454.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,914.340431831049,543.0,45471.09074695109,1,1,1,2,88.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027819873665221463,18946.287811229624,5,3,5,5_1,5_3,5_0_1 -23631,2,58.0,0.0,1,111,210.0,0.0,0.0,0,62,0.0,0.0,290.25658779094545,210.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,112791,2,1,0,0,1,,0.0,350.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1967.73207613321,210.0,27570.521230187675,0,1,2,3,30.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.00761683097126454,27570.521230187675,7,4,7,7_0,7_3,7_1_0 -23632,2,49.0,0.0,7,111,0.0,0.0,1494.0,52,64,0.0,0.0,763.3045222472625,1494.0,0.0,1708.0091873310314,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,131321,2,2,0,0,1,,0.0,450.0,43,2.0,0.0,5.0,4.0,2.3,1,1,1277.90588979617,0.0,37714.04357205669,1,1,2,3,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03961389070216123,16397.4102487203,4,2,4_0,4_0_0,4_3_0,4_0_0 -23633,2,57.0,0.0,5,111,501.0,0.0,0.0,0,77,0.0,0.0,692.4692880155412,501.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,109591,2,2,0,1,1,310.0,0.0,337.0,21,1.0,1.0,3.0,2.0,1.5,3,3,1245.80564618432,501.0,35620.82290710917,0,5,2,3,72.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014064807017695566,23747.215271406112,6,3,6,6_0,6_3,6_0_0 -23634,2,69.0,0.0,2,111,170.0,0.0,0.0,0,75,0.0,0.0,234.9696186879082,170.0,0.0,0.0,20,2,1,2,1,2,2,2,2,0,,2,,2,116429,2,2,0,1,1,459.0,0.0,283.0,11,0.0,4.0,2.0,1.0,1.0,2,2,1277.58287694542,170.0,19180.220054068996,0,5,2,3,45.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.00886329768484253,19180.220054068996,5,3,5,5_0,5_3,5_0_1 -23635,1,26.0,175.0,5,111,0.0,0.0,0.0,46,43,0.0,0.0,0.0,238.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,104637,2,1,0,1,1,433.0,0.0,380.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1431.65305867634,0.0,18811.0,4,1,2,3,47.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.012652171601722396,12540.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0 -23636,1,49.0,549.0,2,111,1490.0,1931.0,0.0,0,85,0.0,0.0,2059.4395990881367,3421.0,0.0,3502.1637515364237,70,1,2,2,2,1,2,2,2,0,,1,,2,117881,1,2,5,0,1,,850.0,568.0,31,1.0,4.0,8.0,5.0,2.4,2,2,1016.52223258513,1490.0,18998.71048778927,0,6,2,3,200.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0.1800648524118899,7916.129369912196,1,1,1_1,1_1_1,1_3_1,1_0_1 -23637,1,70.0,43.0,2,111,200.0,0.0,0.0,77,78,0.0,0.0,276.4348455151861,260.0,103.2196202514115,0.0,10,2,2,2,1,1,2,2,2,0,,2,,2,125746,1,3,0,1,1,800.0,0.0,316.0,41,0.0,5.0,3.0,2.0,1.5,4,4,1244.07946456743,200.0,19135.8551112106,5,5,2,3,74.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.0135870593965608,12757.236740807066,2,1,2_1,2_0_1,2_3_1,2_0_1 -23638,2,49.0,0.0,2,111,808.0,964.0,0.0,38,52,0.0,0.0,1116.796775881352,1772.0,0.0,1748.3613964169408,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,106328,1,2,3,0,2,,368.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1105.51598685773,808.0,33603.24818611224,4,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05273299742292006,18668.4712145068,4,2,4_0,4_1_0,4_3_0,4_0_1 -23639,2,42.0,0.0,5,111,195.0,0.0,0.0,0,63,0.0,0.0,269.52397437730644,195.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118733,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,8,5,1360.94611410924,195.0,18897.87556177965,0,1,0,1,47.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010318620173072855,18897.87556177965,5,3,5,5_0,5_3,5_0_0 -23640,2,58.0,0.0,5,111,750.0,0.0,0.0,0,52,0.0,0.0,1036.630670681948,750.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,103188,2,1,0,1,1,,0.0,410.0,22,2.0,1.0,3.0,2.0,1.5,2,2,1209.17006140665,750.0,31216.241756720472,0,1,2,3,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024025954368402925,20810.82783781365,5,3,5,5_0,5_3,5_0_0 -23641,2,47.0,0.0,7,112,1500.0,0.0,0.0,56,48,0.0,93.1655254337512,2073.261341363896,1590.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,125569,1,1,2,0,1,,240.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,752.771584268659,1500.0,39374.4667804025,1,1,0,1,115.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04038149923064803,26249.644520268335,7,4,7,7_1,7_0,7_0_0 -23642,2,78.0,0.0,2,112,385.0,0.0,0.0,0,74,1642.9433647198007,0.0,532.1370776167332,1535.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133343,2,1,2,0,1,,425.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,854.914365418461,385.0,26386.324722932914,0,5,0,1,80.0,8,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05817407373395579,26386.324722932914,7,4,7,7_1,7_0,7_0_1 -23643,2,51.0,0.0,6,112,850.0,0.0,0.0,0,43,0.0,393.36555183139393,1174.848093439541,1310.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,4,132331,2,2,2,0,1,,450.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,779.366011861112,850.0,50109.34236622278,0,1,1,2,80.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026142829622985277,33406.22824414852,8,4,8,8_1,8_0,8_0_0 -23644,2,59.0,0.0,2,112,1397.0,0.0,0.0,75,37,1424.8799726751727,0.0,1930.897395923575,2351.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,104939,2,1,1,0,1,,370.0,,42,1.0,2.0,8.0,2.0,1.5,1,1,904.816323575312,1397.0,67884.7462622461,6,4,1,2,200.0,8,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034632227848622035,45256.497508164066,10,5,10,10_1,10_0,10_0_1 -23645,2,62.0,0.0,1,112,400.0,0.0,0.0,0,43,0.0,248.44140115666985,552.8696910303722,640.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,125764,1,2,5,0,2,,260.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,933.426656680441,400.0,12128.240180172226,0,1,0,1,100.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05276940351546631,12128.240180172226,2,1,2_0,2_1_0,2_0_0,2_1_0 -23646,1,99.0,161.0,7,112,600.0,0.0,0.0,0,78,0.0,0.0,829.3045365455583,700.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,102228,2,1,2,0,1,,216.0,317.0,11,0.0,3.0,2.0,1.0,1.0,1,1,731.907135626208,600.0,11830.89168763369,0,5,2,3,50.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.059167137903196186,11830.89168763369,2,1,2_1,2_1_1,2_0_1,2_0_0 -23647,2,57.0,0.0,2,112,1500.0,0.0,0.0,75,54,0.0,0.0,2073.261341363896,1530.0,51.60981012570575,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,2,126455,2,1,2,0,1,,200.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,786.087913683707,1500.0,46694.07140501362,5,1,0,1,90.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03276647235853846,31129.38093667575,8,4,8,8_1,8_0,8_0_1 -23648,2,45.0,0.0,1,112,480.0,0.0,0.0,0,62,0.0,207.03450096389156,663.4436292364467,740.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,111153,2,1,4,0,1,,420.0,,22,1.0,4.0,5.0,2.0,1.5,1,1,898.923242523677,480.0,36842.74895022801,0,1,0,1,159.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020085363364163965,24561.832633485337,7,4,7,7_1,7_0,7_1_0 -23649,2,57.0,0.0,6,112,1200.0,0.0,0.0,54,42,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,4,114562,2,1,2,0,1,,430.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,904.710397051169,1200.0,45602.66329088891,1,1,0,1,170.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027629965205381746,30401.775527259273,8,4,8,8_1,8_0,8_0_0 -23650,2,45.0,0.0,7,112,670.0,0.0,0.0,37,53,1792.3018524216009,393.36555183139393,926.0567324758734,2320.0,120.42289029331342,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,126154,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,840.13507680625,670.0,73227.81704894977,1,1,1,2,144.0,8,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03168194947623764,26152.79180319635,7,4,7,7_1,7_0,7_0_0 -23651,2,51.0,0.0,2,112,681.0,0.0,0.0,52,38,0.0,0.0,941.2606489792087,2706.0,3483.662183485138,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,129370,2,1,1,0,1,,568.0,,43,2.0,0.0,8.0,4.0,2.5,2,2,796.711029497793,681.0,58230.924807087955,1,1,1,2,170.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04647015325558803,23292.369922835183,6,3,6,6_1,6_0,6_0_1 -23652,2,44.0,0.0,9,112,2500.0,0.0,0.0,46,21,0.0,0.0,3455.435568939826,2540.0,68.81308016760767,0.0,20,0,0,0,0,0,0,0,0,0,,1,2010.0,6,107647,2,1,1,0,1,,330.0,,43,3.0,1.0,7.0,6.0,3.0999999999999996,2,2,913.923052353519,2500.0,45195.87960706925,1,1,1,2,155.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05619981339189844,14579.316002280404,3,2,3_0,3_1_0,3_0_0,3_0_0 -23653,2,31.0,0.0,1,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,753.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,123470,1,2,3,0,1,,99.0,430.0,22,2.0,0.0,3.0,2.0,1.5,2,2,841.44009624957,0.0,14538.768864442885,0,4,2,3,65.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05179255595991995,9692.512576295258,1,1,1_0,1_1_0,1_0_0,1_1_0 -23654,0,67.0,0.0,1,112,200.0,0.0,0.0,71,71,0.0,0.0,276.4348455151861,200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,112110,2,1,2,0,1,,0.0,,41,0.0,4.0,2.0,2.0,1.5,1,1,751.739375082096,200.0,23410.920349282365,5,5,0,1,47.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.008543021676041488,15607.28023285491,3,2,3_0,3_1_0,3_0_0,3_1_0 -23655,2,45.0,0.0,2,112,210.0,0.0,0.0,67,54,1194.8679016144006,196.68277591569696,290.25658779094545,1350.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,121533,2,1,2,0,1,,250.0,,43,2.0,1.0,5.0,4.0,2.3,2,2,796.711029497793,210.0,43311.263444413366,1,1,1,2,110.0,8,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031169721052645344,18830.984106266682,5,3,5,5_1,5_0,5_0_1 -23656,2,61.0,0.0,1,112,1220.0,0.0,0.0,0,56,0.0,0.0,1686.2525576426353,1290.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,110611,2,2,3,0,1,,230.0,435.0,11,0.0,3.0,3.0,1.0,1.0,3,2,965.421162882721,1220.0,23642.124278779414,0,5,2,3,65.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.054563624858273506,23642.124278779414,6,3,6,6_1,6_0,6_1_0 -23657,2,46.0,0.0,1,112,720.0,0.0,0.0,54,46,2837.8112663342013,0.0,995.16544385467,2620.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,123924,2,1,2,0,1,,488.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,763.120433391237,720.0,55479.64936676112,1,1,0,1,120.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04722452340460699,22191.85974670445,6,3,6,6_1,6_0,6_1_0 -23658,2,88.0,0.0,1,112,300.0,0.0,0.0,0,78,0.0,0.0,414.65226827277917,390.0,154.82943037711726,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,116926,2,2,3,0,2,,170.0,,11,0.0,0.0,2.0,1.0,1.0,2,1,976.102126511049,300.0,9771.880477993302,0,5,0,1,35.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039910434934022875,9771.880477993302,2,1,2_0,2_1_0,2_0_0,2_1_0 -23659,2,53.0,0.0,1,112,200.0,0.0,0.0,69,54,746.7924385090004,155.27587572291867,276.4348455151861,905.0,94.61798523046055,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,107550,2,1,2,0,1,,300.0,750.0,43,2.0,4.0,5.0,3.0,2.0,2,2,1052.79955823167,200.0,69518.46261788748,1,1,2,3,130.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013018124479742718,34759.23130894374,9,5,9,9_1,9_0,9_1_0 -23660,2,53.0,0.0,1,112,1788.0,0.0,0.0,43,35,0.0,383.01382678319936,2471.327518905764,2248.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108267,2,1,1,0,1,,467.0,,43,2.0,1.0,4.0,4.0,2.1,1,1,791.558389873171,1788.0,66928.03566051781,1,1,1,2,175.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0335883158352747,31870.493171675145,8,4,8,8_1,8_0,8_1_0 -23661,2,73.0,0.0,2,112,2100.0,0.0,0.0,0,72,0.0,0.0,2902.5658779094542,2220.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,111484,2,1,2,0,1,,240.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,973.608547579475,2100.0,16121.213210186135,0,5,0,1,80.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1377067576153202,16121.213210186135,4,2,4_0,4_1_0,4_0_0,4_0_1 -23662,2,47.0,0.0,1,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,3627.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,101854,2,1,2,0,1,,133.0,850.0,12,1.0,2.0,4.0,1.0,1.0,3,2,1060.98204423143,0.0,44095.69517576213,0,1,2,3,100.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08225292708376748,44095.69517576213,10,5,10,10_1,10_0,10_1_0 -23663,2,47.0,0.0,1,112,480.0,0.0,0.0,55,85,1344.2263893162005,496.8828023133397,663.4436292364467,1920.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105012,2,1,1,0,1,,456.0,,42,1.0,0.0,6.0,5.0,2.4,5,4,873.275958951656,480.0,18922.581595528784,1,7,0,1,200.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10146607059438849,7884.408998136993,1,1,1_0,1_1_0,1_0_0,1_1_0 -23664,2,41.0,0.0,1,112,0.0,0.0,0.0,68,64,0.0,0.0,0.0,1989.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,121538,2,2,2,0,1,,280.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,787.827453786285,0.0,30771.767139066775,1,1,1,2,79.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0646371718273805,13379.029190898598,3,2,3_0,3_1_0,3_0_0,3_1_0 -23665,2,55.0,0.0,1,112,500.0,0.0,0.0,0,64,0.0,310.55175144583734,691.0871137879653,830.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,132030,1,2,4,0,2,,140.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,875.928629730757,500.0,20178.00956780426,0,1,1,2,60.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04113388871240977,20178.00956780426,5,3,5,5_1,5_0,5_1_0 -23666,2,86.0,0.0,1,221,600.0,0.0,0.0,72,72,2688.452778632401,0.0,829.3045365455583,2400.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,1,,1,116475,1,2,4,0,1,,280.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,2626.04139072255,600.0,22668.024210192427,5,5,0,1,100.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.10587601185465766,15112.016140128284,3,2,3_0,3_1_0,3_1_0,3_1_0 -23667,2,21.0,0.0,1,221,250.0,0.0,0.0,55,63,0.0,86.95449040483446,345.54355689398267,434.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,,1,122928,2,3,0,0,1,,72.0,325.0,43,2.0,0.0,3.0,2.0,1.5,1,1,3106.06479054314,250.0,9200.904647138941,1,1,2,3,55.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04716927483157366,6133.936431425961,1,1,1_0,1_0_0,1_1_0,1_1_0 -23668,1,31.0,438.0,1,221,0.0,0.0,0.0,85,81,0.0,0.0,0.0,785.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,108085,1,2,0,0,2,,271.0,360.0,42,1.0,3.0,3.0,2.0,1.5,2,2,3024.39702117278,0.0,11046.024960527317,7,4,2,3,60.0,1,1,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07106628880571764,7364.016640351544,1,1,1_1,1_0_1,1_1_1,1_1_0 -23669,2,54.0,0.0,1,221,440.0,0.0,0.0,0,67,5227.547069563002,41.40690019277831,608.1566601334094,4070.0,154.82943037711726,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,101944,1,1,2,0,1,,366.0,,22,1.0,4.0,9.0,2.0,1.5,3,1,2626.04139072255,440.0,32249.9603101538,0,1,0,1,200.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12620170570314077,21499.973540102535,6,3,6,6_1,6_1,6_1_0 -23670,2,76.0,0.0,1,221,863.0,0.0,0.0,0,86,0.0,0.0,1192.8163583980281,903.0,68.81308016760767,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,127990,2,1,0,0,1,,135.0,425.0,11,0.0,8.0,3.0,1.0,1.0,4,4,3327.22575153497,863.0,18979.64618507394,0,5,2,3,60.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.047577283116591575,18979.64618507394,5,3,5,5_0,5_1,5_1_0 -23671,2,66.0,0.0,9,221,1319.0,0.0,0.0,77,72,0.0,20.703450096389155,1823.0878061726523,1414.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,106661,2,1,1,0,1,,382.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,2414.18269632052,1319.0,29091.659071118378,5,5,1,2,80.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04860499693548902,19394.439380745585,5,3,5,5_1,5_1,5_0_0 -23672,2,44.0,0.0,1,221,860.0,0.0,0.0,0,52,0.0,0.0,1188.6698357153002,940.0,137.62616033521533,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,109978,1,2,1,0,1,,0.0,460.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2915.19270916498,860.0,25124.642869372237,0,1,2,3,90.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03741346712417914,25124.642869372237,7,4,7,7_1,7_1,7_1_0 -23673,2,30.0,0.0,1,221,800.0,0.0,0.0,0,52,0.0,0.0,1105.7393820607444,1000.0,344.06540083803833,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,123475,2,1,2,0,1,,150.0,,22,2.0,1.0,3.0,3.0,2.0,2,2,2786.25292721551,800.0,41540.772594409485,0,1,0,1,150.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024072734750594866,20770.386297204743,5,3,5,5_1,5_1,5_1_0 -23674,2,48.0,0.0,9,221,1270.0,0.0,0.0,22,64,1792.3018524216009,0.0,1755.3612690214318,2570.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,3.0,1,2004.0,6,121814,2,1,1,0,1,,450.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,2778.21007297348,1270.0,51290.64992183803,1,1,1,2,218.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05010659845247488,25645.324960919013,7,4,7,7_1,7_1,7_0_0 -23675,2,76.0,0.0,1,221,400.0,0.0,0.0,71,72,2837.8112663342013,253.61726368076717,552.8696910303722,2665.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110820,2,1,2,0,1,,110.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2559.860215288,400.0,21206.73517159069,5,5,0,1,140.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12566762297150436,14137.823447727127,3,2,3_0,3_1_0,3_1_0,3_1_0 -23676,2,48.0,0.0,1,221,1800.0,0.0,0.0,56,48,0.0,20.703450096389155,2487.913609636675,1924.0,178.91400843577995,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,,1,127617,2,1,2,0,1,,363.0,,43,2.0,0.0,5.0,4.0,2.1,4,4,2527.30057203431,1800.0,35961.578206486396,1,1,1,2,104.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.053501545147786864,17124.561050707805,4,2,4_0,4_1_0,4_1_0,4_1_0 -23678,2,69.0,0.0,2,221,705.0,0.0,0.0,71,72,2044.717696637643,0.0,974.432830441031,2214.0,240.84578058662683,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,106236,2,1,1,0,1,,271.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,2626.04139072255,705.0,52499.352859853534,5,5,0,1,170.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04217194840306412,34999.56857323569,9,5,9,9_1,9_1,9_0_1 -23679,2,78.0,0.0,2,221,1009.0,0.0,0.0,0,72,609.3826298233442,0.0,1394.613795624114,1483.0,113.54158227655265,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,103847,2,1,1,0,2,,101.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2581.8906937628,1009.0,29010.317567909984,0,5,0,1,108.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05111974374387523,29010.317567909984,8,4,8,8_1,8_1,8_0_1 -23680,2,60.0,0.0,5,221,600.0,0.0,0.0,67,78,0.0,207.03450096389156,829.3045365455583,940.0,240.84578058662683,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,127320,2,1,2,0,1,,220.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2326.11707126937,600.0,16972.422206717943,4,5,0,1,90.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05538396279276706,11314.948137811962,2,1,2_0,2_1_0,2_1_0,2_0_0 -23681,2,83.0,0.0,1,221,800.0,0.0,0.0,0,71,0.0,0.0,1105.7393820607444,900.0,172.03270041901916,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,117925,2,1,1,0,1,,140.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,2469.7764983492,800.0,15353.419767801355,0,5,0,1,65.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05861886235192031,15353.419767801355,3,2,3_0,3_1_0,3_1_0,3_1_0 -23682,2,74.0,0.0,2,221,1037.0,0.0,0.0,0,77,0.0,0.0,1433.31467399624,1092.0,94.61798523046055,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,103158,2,1,0,0,1,,164.0,450.0,11,0.0,7.0,3.0,1.0,1.0,2,2,3184.56690569769,1037.0,15370.403290179453,0,5,2,3,65.0,1,1,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07104563096907854,15370.403290179453,3,2,3_0,3_0_0,3_1_0,3_0_1 -23683,1,22.0,384.0,6,221,0.0,0.0,0.0,0,52,0.0,0.0,0.0,767.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,5.0,1,,4,121712,2,2,5,0,1,,354.0,344.0,32,1.0,0.0,5.0,3.0,1.6,3,3,2430.03689818725,0.0,15897.670556784522,0,1,2,3,86.0,1,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04824606204162871,9936.044097990325,2,1,2_1,2_1_1,2_1_1,2_0_0 -23684,2,73.0,0.0,2,221,1100.0,0.0,0.0,77,75,0.0,0.0,1520.3916503335236,1180.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,133503,2,1,2,0,1,,290.0,,41,0.0,3.0,8.0,2.0,1.5,3,3,2640.12934240414,1100.0,29793.21457921632,5,5,0,1,150.0,1,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03960633374631435,19862.14305281088,5,3,5,5_1,5_1,5_0_1 -23685,2,24.0,0.0,1,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1165.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,116147,2,2,0,0,1,,143.0,330.0,12,1.0,0.0,2.0,1.0,1.0,2,2,3216.92538902655,0.0,18453.52762601502,0,1,2,3,48.0,1,1,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06313156072975615,18453.52762601502,4,2,4_0,4_0_0,4_1_0,4_1_0 -23686,2,42.0,0.0,1,221,600.0,0.0,0.0,0,67,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,109109,2,2,5,0,1,,125.0,280.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2838.00795508169,600.0,16643.46045202441,0,1,2,3,51.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03965521484564357,16643.46045202441,4,2,4_0,4_1_0,4_1_0,4_1_0 -23687,2,80.0,0.0,1,221,451.0,0.0,0.0,77,71,2240.377315527001,0.0,623.3605766367447,2101.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107637,2,1,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,2543.44914046658,451.0,20243.263819787066,5,5,0,1,100.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10378761145948943,13495.509213191377,3,2,3_0,3_1_0,3_1_0,3_1_0 -23688,2,65.0,0.0,5,221,1300.0,0.0,0.0,75,75,0.0,0.0,1796.8264958487098,1420.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119205,1,1,2,0,1,,283.0,,41,0.0,5.0,9.0,2.0,1.5,3,3,2640.12934240414,1300.0,56459.81070656501,5,5,0,1,150.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025150633383807748,37639.87380437667,9,5,9,9_1,9_1,9_0_0 -23689,2,73.0,0.0,8,221,960.0,0.0,0.0,74,72,0.0,0.0,1326.8872584728933,1070.0,189.2359704609211,0.0,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,100824,2,1,1,0,1,,190.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,2309.53567600125,960.0,24763.171180672267,5,5,0,1,100.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043209328570774426,16508.780787114843,4,2,4_0,4_1_0,4_1_0,4_0_0 -23690,2,44.0,0.0,7,221,1315.0,0.0,0.0,67,63,0.0,31.055175144583732,1817.5591092623488,1405.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,102182,1,2,5,0,1,,340.0,392.0,43,2.0,6.0,4.0,2.0,1.5,1,1,2306.30457266677,1315.0,39194.76475512426,1,1,2,3,88.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035846624128961314,26129.84317008284,7,4,7,7_1,7_1,7_0_0 -23691,2,42.0,0.0,9,221,2180.0,0.0,0.0,54,56,0.0,0.0,3013.1398161155284,2180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2007.0,6,126405,2,1,1,0,1,,314.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,2348.4990915879,2180.0,44802.07581809461,1,1,1,2,116.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04865845968502076,17231.567622344082,4,2,4_0,4_1_0,4_1_0,4_0_0 -23692,1,41.0,260.0,9,221,1186.0,0.0,0.0,85,63,0.0,0.0,1639.2586339050536,1296.0,189.2359704609211,0.0,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,123673,2,1,1,0,1,,362.0,680.0,42,1.0,0.0,5.0,8.0,3.8999999999999995,2,2,2633.48806692964,1186.0,35439.35619582937,6,1,2,3,124.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03656951308140631,9087.01440918702,1,1,1_1,1_1_1,1_1_1,1_0_0 -23693,1,48.0,406.0,9,221,850.0,0.0,0.0,0,63,0.0,0.0,1174.848093439541,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,114616,1,2,5,0,1,,396.0,432.0,32,1.0,2.0,4.0,3.0,1.8,1,1,2594.28069687387,850.0,10102.439999999999,0,4,2,3,86.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08413808941206284,5612.466666666666,1,1,1_1,1_1_1,1_1_1,1_0_0 -23694,2,49.0,0.0,9,221,1100.0,0.0,0.0,67,69,0.0,0.0,1520.3916503335236,1220.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,131385,1,1,1,0,1,,349.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,2597.39225374573,1100.0,42763.65409606412,1,1,1,2,102.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02852889973479339,21381.82704803206,6,3,6,6_1,6_1,6_0_0 -23695,2,36.0,0.0,9,221,2257.0,0.0,0.0,48,46,0.0,0.0,3119.5672316388755,2277.0,34.40654008380383,0.0,30,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,133545,2,1,1,0,1,,510.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,2290.81750121447,2257.0,84871.65835134473,4,1,1,2,150.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026828744061696806,40415.07540540225,9,5,9,9_1,9_1,9_0_0 -23696,2,34.0,0.0,9,221,850.0,0.0,0.0,67,62,0.0,0.0,1174.848093439541,936.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,108445,2,1,1,0,1,,276.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,2255.40448810919,850.0,44863.58911427127,1,1,1,2,106.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020863243857194097,21363.6138639387,6,3,6,6_1,6_1,6_0_0 -23697,2,55.0,0.0,2,221,646.0,0.0,0.0,0,21,1493.5848770180007,0.0,892.8845510140511,1701.0,94.61798523046055,0.0,20,0,0,0,0,0,0,0,0,1,5.0,1,,2,104207,2,3,4,0,1,,400.0,,32,1.0,1.0,6.0,2.0,1.5,2,2,2395.05651739887,646.0,20889.084287752266,0,1,0,1,80.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08143008935041418,13926.056191834845,3,2,3_0,3_1_0,3_1_0,3_0_1 -23698,2,77.0,0.0,5,221,0.0,0.0,0.0,0,71,0.0,0.0,0.0,1611.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104399,2,1,2,0,1,,441.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2720.03764107321,0.0,25455.41697393251,0,5,0,1,90.0,1,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06328711887335164,25455.41697393251,7,4,7,7_1,7_1,7_0_0 -23699,2,29.0,0.0,1,221,0.0,0.0,0.0,11,52,0.0,0.0,0.0,1379.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,132940,1,2,3,0,1,,273.0,450.0,43,2.0,0.0,4.0,3.0,1.8,1,1,2656.80852203445,0.0,28486.903894970503,1,1,2,3,80.0,1,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.048408209087385905,15826.057719428056,3,2,3_0,3_1_0,3_1_0,3_1_0 -23700,2,58.0,0.0,1,221,1100.0,0.0,0.0,77,78,0.0,558.9931526025072,1520.3916503335236,1690.0,86.01635020950958,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,111001,2,2,1,0,1,,288.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,2396.70351449421,1100.0,21027.081934452894,7,7,0,1,90.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08037254076757715,14018.054622968595,3,2,3_0,3_1_0,3_1_0,3_1_0 -23701,2,75.0,0.0,5,221,500.0,0.0,0.0,77,72,2987.1697540360015,155.27587572291867,691.0871137879653,2705.0,94.61798523046055,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,114029,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,2557.99926962146,500.0,38683.778409125895,5,5,0,1,100.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0699259511672175,25789.18560608393,7,4,7,7_1,7_1,7_0_0 -23702,2,31.0,0.0,5,221,1200.0,0.0,0.0,55,67,0.0,0.0,1658.6090730911167,1280.0,137.62616033521533,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,103420,2,1,2,0,1,,234.0,340.0,43,2.0,0.0,4.0,4.0,2.1,1,1,2106.45885209796,1200.0,44636.74694702825,1,4,3,4,80.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02867592482756447,21255.593784299166,5,3,5,5_1,5_1,5_0_0 -23703,2,60.0,0.0,6,221,980.0,0.0,0.0,62,62,0.0,0.0,1354.530743024412,1075.0,163.4310653980682,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,124258,2,1,1,0,1,,263.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,2557.99926962146,980.0,25064.975823607383,4,4,0,1,110.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042888531294233846,16709.983882404922,4,2,4_0,4_1_0,4_1_0,4_0_0 -23704,2,69.0,0.0,5,221,365.0,0.0,0.0,77,78,746.7924385090004,0.0,504.49359306521467,929.0,110.10092826817227,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,105691,2,1,1,0,1,,492.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,2326.11707126937,365.0,18613.037128171094,6,5,0,1,88.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049911252720489414,12408.691418780729,2,1,2_0,2_1_0,2_1_0,2_0_0 -23705,2,73.0,0.0,6,221,675.0,0.0,0.0,71,77,0.0,0.0,932.9676036137531,785.0,189.2359704609211,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,111141,2,2,5,0,1,,200.0,379.0,41,0.0,2.0,2.0,2.0,1.5,3,3,2086.08137117191,675.0,16742.529349810608,5,5,2,3,51.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04688658347843243,11161.686233207072,2,1,2_0,2_1_0,2_1_0,2_0_0 -23706,0,74.0,0.0,1,221,490.0,0.0,0.0,0,74,3883.3206802468017,0.0,677.265371512206,3090.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,107112,1,1,1,0,2,,0.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,2815.1294912002,490.0,80602.30068259049,0,5,5,0,135.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038336374691937514,80602.30068259049,10,5,10,10_1,10_1,10_1_0 -23707,1,41.0,459.0,6,221,1200.0,0.0,0.0,0,85,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,126503,1,3,3,0,1,,215.0,582.0,31,0.0,0.0,4.0,4.0,2.1,1,1,2609.73275086661,1200.0,13171.805776179146,0,6,2,3,85.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09565886571746114,6272.288464847212,1,1,1_1,1_1_1,1_1_1,1_0_0 -23708,2,48.0,0.0,7,221,0.0,0.0,0.0,64,62,0.0,0.0,0.0,2736.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,,5,112233,2,1,2,0,1,,204.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,2474.09741530124,0.0,38068.18788119641,1,1,0,1,140.0,1,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07187103332941763,25378.79192079761,7,4,7,7_1,7_1,7_0_0 -23709,2,73.0,0.0,2,221,1200.0,0.0,0.0,72,72,4480.754631054002,62.110350289167464,1658.6090730911167,4320.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,101881,2,2,2,0,1,,800.0,,41,0.0,4.0,9.0,2.0,1.5,2,2,2640.12934240414,1200.0,33749.247880248244,5,5,0,1,145.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12800285254736835,22499.498586832164,6,3,6,6_1,6_1,6_0_1 -23710,2,51.0,0.0,1,221,560.0,0.0,0.0,52,67,2539.0942909306013,0.0,774.0175674425211,2315.0,94.61798523046055,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,111293,1,2,1,0,1,,373.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,2396.70351449421,560.0,36352.09620010088,1,1,0,1,80.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06368270999441225,24234.730800067253,7,4,7,7_1,7_1,7_1_0 -23711,2,81.0,0.0,1,112,448.0,0.0,0.0,0,72,2688.452778632401,0.0,619.2140539540169,2368.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,122883,2,2,4,0,1,,167.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,1220.15373066312,448.0,17805.63763625029,0,5,0,1,100.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13299158661855595,17805.63763625029,4,2,4_0,4_1_0,4_0_0,4_1_0 -23712,2,23.0,0.0,1,112,769.0,0.0,0.0,52,62,0.0,155.27587572291867,1062.8919810058906,964.0,77.41471518855863,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,104474,2,1,1,0,1,,385.0,250.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1114.60431319747,769.0,23577.550999675153,1,1,2,3,100.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.040886349901789285,15718.367333116768,3,2,3_0,3_1_0,3_0_0,3_1_0 -23713,2,32.0,0.0,7,112,1500.0,0.0,0.0,54,69,0.0,103.51725048194578,2073.261341363896,1690.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,111411,2,1,2,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1036.4352393325,1500.0,38716.35275359519,1,1,1,2,120.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04365080592058267,18436.358454092944,4,2,4_0,4_1_0,4_0_0,4_0_0 -23714,2,73.0,0.0,1,112,1122.0,0.0,0.0,78,74,0.0,0.0,1550.799483340194,1222.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,119545,2,1,4,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,998.714273766269,1122.0,28122.46437856956,5,5,0,1,111.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.043452806395274976,18748.30958571304,5,3,5,5_1,5_0,5_1_0 -23715,0,46.0,0.0,1,112,0.0,0.0,0.0,56,46,0.0,51.75862524097289,0.0,180.0,223.64251054472493,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,119316,1,2,4,0,2,,0.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1216.40178548549,0.0,38952.789439336244,1,1,5,0,90.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.004620978435455204,25968.52629289083,7,4,7,7_1,7_0,7_1_0 -23716,2,73.0,0.0,1,112,2200.0,0.0,0.0,72,74,0.0,2070.3450096389156,3040.783300667047,4260.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,131940,1,1,3,0,2,,320.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,1137.70819862951,2200.0,92918.20768641843,5,5,0,1,150.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.045846773265114014,61945.47179094562,10,5,10,10_1,10_0,10_1_0 -23717,1,32.0,51.0,9,112,1740.0,0.0,0.0,46,55,0.0,0.0,2404.983155982119,1740.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,107619,2,1,1,0,1,,210.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,1004.60235631176,1740.0,40682.42424596705,1,1,1,2,117.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04277031254282961,16951.01010248627,4,2,4_1,4_1_1,4_0_1,4_0_0 -23718,0,56.0,0.0,1,112,660.0,0.0,0.0,62,62,0.0,207.03450096389156,912.2349902001142,1115.0,438.68338606849886,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,106495,2,2,2,0,1,,0.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1125.53863382134,660.0,48066.83652302394,1,1,5,0,140.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023196866710084335,32044.557682015962,8,4,8,8_1,8_0,8_1_0 -23719,2,53.0,0.0,6,112,1600.0,0.0,0.0,68,37,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,4,124824,2,1,2,0,1,,250.0,,43,3.0,2.0,7.0,3.0,2.0,2,1,1190.69615784431,1600.0,53184.97460415165,1,1,0,1,120.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03008368457273087,26592.487302075824,7,4,7,7_1,7_0,7_0_0 -23720,2,51.0,0.0,1,112,600.0,0.0,0.0,62,65,1493.5848770180007,0.0,829.3045365455583,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,26.0,1,,1,119540,2,1,1,0,1,,326.0,,43,2.0,1.0,6.0,2.0,1.5,1,1,1060.28651365465,600.0,40815.0,1,1,0,1,120.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039201274041406345,27210.0,7,4,7,7_1,7_0,7_1_0 -23721,2,24.0,0.0,8,112,1200.0,0.0,0.0,52,54,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,103325,2,1,1,0,1,,200.0,540.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1284.81792371551,1200.0,32362.0,4,1,2,3,80.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03708052654347692,17978.888888888887,4,2,4_0,4_1_0,4_0_0,4_0_0 -23722,2,74.0,0.0,1,112,190.0,0.0,0.0,0,71,0.0,569.3448776507017,262.6131032394268,845.0,180.63433543997013,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,118765,2,1,4,0,1,,160.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1077.49748162236,190.0,11768.775246467236,0,5,0,1,75.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07180016461387119,11768.775246467236,2,1,2_0,2_1_0,2_0_0,2_1_0 -23723,2,34.0,0.0,2,112,0.0,0.0,0.0,52,11,1792.3018524216009,0.0,0.0,2515.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,119373,2,1,4,0,1,,150.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1084.41621100907,0.0,43389.31156324217,1,1,1,2,125.0,8,0,5,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.057963583873283105,20661.576934877223,5,3,5,5_1,5_0,5_0_1 -23724,2,63.0,0.0,1,112,620.0,0.0,0.0,71,71,1941.6603401234008,0.0,856.9480210970769,2025.0,180.63433543997013,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102613,2,2,4,0,2,,118.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,1103.64462343716,620.0,22769.618933967522,5,5,0,1,150.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08893429467891192,15179.745955978347,3,2,3_0,3_1_0,3_0_0,3_1_0 -23725,2,77.0,0.0,8,300,1060.0,0.0,0.0,78,78,0.0,0.0,1465.1046812304864,1060.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,1999.0,6,127039,2,2,2,0,1,,360.0,400.0,41,0.0,4.0,3.0,2.0,1.5,3,2,905.472269681641,1060.0,23901.960948895787,5,5,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044347825781590085,15934.640632597191,3,2,3_0,3_1_0,3_0_0,3_0_0 -23726,2,39.0,0.0,9,300,750.0,0.0,0.0,62,52,0.0,310.55175144583734,1036.630670681948,1085.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,127633,2,1,1,0,1,,303.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1004.60235631176,750.0,49668.093851062105,1,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02184500986193571,20695.03910460921,5,3,5,5_1,5_0,5_0_0 -23727,2,48.0,0.0,6,300,1800.0,0.0,0.0,52,52,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,2,2,1,1,2,2,2,2,2,5.0,1,,4,126122,1,1,3,0,1,,200.0,,43,3.0,2.0,7.0,3.0,2.0,1,1,1273.82033112339,1800.0,55953.12481909305,1,1,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.032169785080274564,27976.562409546525,7,4,7,7_1,7_0,7_0_0 -23728,2,85.0,0.0,1,300,240.0,0.0,0.0,0,71,2688.452778632401,0.0,331.72181461822333,2110.0,120.42289029331342,0.0,31,2,2,2,2,1,2,2,2,0,,1,,1,117409,1,3,4,0,2,,100.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,986.633564811878,240.0,19122.118052235193,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.11034342504508077,19122.118052235193,5,3,5,5_1,5_0,5_1_0 -23729,2,51.0,0.0,1,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,773.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131471,2,2,5,0,1,,351.0,350.0,32,2.0,1.0,2.0,2.0,1.5,1,1,1069.85906246905,0.0,16145.88335856011,0,1,2,3,60.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047875980696353564,10763.922239040074,2,1,2_0,2_1_0,2_0_0,2_1_0 -23730,1,51.0,45.0,1,300,2256.0,0.0,0.0,0,54,0.0,0.0,3118.1850574112996,2256.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130496,2,3,1,0,1,,270.0,,32,1.0,0.0,5.0,3.0,2.0,2,2,1151.22078987532,2256.0,22807.76070612631,0,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.09891369999309156,11403.880353063156,2,1,2_1,2_1_1,2_0_1,2_1_0 -23731,1,31.0,328.0,9,300,0.0,0.0,0.0,56,63,0.0,0.0,0.0,1272.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,109183,2,2,5,0,1,,465.0,590.0,43,2.0,0.0,5.0,5.0,2.4,1,1,1028.98476143656,0.0,35792.19001076522,4,1,2,3,95.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03553847919385264,14913.412504485508,3,2,3_1,3_1_1,3_0_1,3_0_0 -23732,2,68.0,0.0,1,300,751.0,0.0,0.0,86,86,1493.5848770180007,103.51725048194578,1038.012844909524,1881.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100928,2,1,2,0,1,,147.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1140.49675355573,751.0,30725.6255283698,5,5,0,1,210.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06121925811610318,20483.750352246534,5,3,5,5_1,5_0,5_1_0 -23733,2,31.0,0.0,1,112,1830.0,0.0,0.0,42,21,0.0,0.0,2529.378836463953,1860.0,51.60981012570575,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,1,131596,2,2,2,0,1,,450.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1096.27011985312,1830.0,45075.94955250067,1,1,1,2,80.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0412636898049952,25042.194195833705,7,4,7,7_1,7_0,7_1_0 -23734,2,34.0,0.0,1,112,1500.0,0.0,0.0,52,21,0.0,93.1655254337512,2073.261341363896,1590.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,1,101744,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,4,4,1052.94365338836,1500.0,62864.10124364453,1,1,1,2,200.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02529265460803429,29935.286306497394,8,4,8,8_1,8_0,8_1_0 -23735,2,50.0,0.0,1,112,1736.0,0.0,0.0,85,46,2240.377315527001,207.03450096389156,2399.4544590718156,3496.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,108282,2,1,2,0,1,,700.0,,42,1.0,1.0,7.0,4.0,2.5,2,2,1118.03889229621,1736.0,50000.431070023056,6,1,1,2,191.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06991939719687676,20000.172428009224,5,3,5,5_1,5_0,5_1_0 -23736,2,71.0,0.0,1,112,850.0,0.0,0.0,0,78,896.1509262108004,0.0,1174.848093439541,1505.0,94.61798523046055,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,126086,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1059.4526311454,850.0,28556.39222501342,0,5,0,1,120.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05270273598083319,28556.39222501342,8,4,8,8_1,8_0,8_1_0 -23737,2,39.0,0.0,1,112,1697.0,0.0,0.0,46,21,0.0,0.0,2345.549664196354,1697.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,110978,2,2,1,0,1,,350.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,1068.55253754669,1697.0,42355.77020572424,1,1,1,2,130.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04006537932748195,20169.41438367821,5,3,5,5_1,5_0,5_1_0 -23738,2,56.0,0.0,2,112,950.0,0.0,0.0,78,52,2987.1697540360015,0.0,1313.065516197134,3078.0,220.20185653634454,0.0,20,2,2,2,2,1,2,2,2,1,5.0,1,,2,115453,2,2,3,0,1,,500.0,300.0,42,1.0,7.0,5.0,2.0,1.5,2,2,1207.62968682716,950.0,30820.215899878036,5,1,2,3,100.0,8,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.09986951454198542,20546.810599918692,5,3,5,5_1,5_0,5_0_1 -23739,2,44.0,0.0,1,112,1500.0,0.0,0.0,46,46,0.0,331.2552015422265,2073.261341363896,2120.0,516.0981012570575,0.0,44,0,0,0,0,0,0,0,0,2,3.0,1,,1,133588,2,2,1,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1069.23151292539,1500.0,67960.3190536703,1,1,0,1,105.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031194674032147676,32362.056692223952,8,4,8,8_1,8_0,8_1_0 -23740,2,58.0,0.0,1,112,238.0,0.0,0.0,56,63,0.0,414.0690019277831,328.95746616307144,713.0,129.02452531426437,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,131279,2,2,2,0,1,,60.0,,43,3.0,2.0,8.0,6.0,3.3,2,2,1182.65123814078,238.0,27723.174348223052,1,1,1,2,200.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025718555568139713,8400.961923703955,1,1,1_0,1_1_0,1_0_0,1_1_0 -23741,2,71.0,0.0,8,112,1100.0,0.0,0.0,0,77,0.0,0.0,1520.3916503335236,1152.0,89.45700421788997,0.0,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,105564,2,2,1,0,1,,190.0,428.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1456.95732933433,1100.0,19778.50284425308,0,5,2,3,70.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05824505570879091,19778.50284425308,5,3,5,5_1,5_0,5_0_0 -23742,2,33.0,0.0,7,112,0.0,0.0,0.0,46,68,0.0,0.0,0.0,1269.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,114901,2,1,2,0,1,,430.0,500.0,43,2.0,1.0,4.0,2.0,1.5,2,2,1787.17806248135,0.0,39800.09460772683,1,1,2,3,96.0,8,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03188434631895661,26533.39640515122,7,4,7,7_1,7_0,7_0_0 -23743,2,56.0,0.0,1,112,0.0,0.0,0.0,47,64,0.0,0.0,0.0,2223.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,133020,2,1,1,0,1,,284.0,600.0,43,2.0,5.0,3.0,3.0,2.0,2,2,1916.72264987672,0.0,40206.898772688735,1,1,2,3,80.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05528901924437935,20103.449386344368,5,3,5,5_1,5_0,5_1_0 -23744,2,47.0,0.0,1,112,996.0,0.0,0.0,46,52,0.0,621.1035028916747,1376.645530665627,1596.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,1,124616,2,2,2,0,1,,200.0,,43,2.0,2.0,5.0,3.0,1.8,1,1,1750.82242665132,996.0,42933.38370435513,1,1,1,2,90.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03717386942967887,23851.87983575285,6,3,6,6_1,6_0,6_1_0 -23745,2,21.0,0.0,1,112,460.0,1032.0,0.0,54,63,0.0,0.0,635.800144684928,1492.0,0.0,1871.6897936745672,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,112142,2,2,5,0,1,,77.0,455.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1989.34693876451,460.0,31919.59958597477,1,1,2,3,70.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0467424409877489,21279.733057316513,6,3,6,6_1,6_1,6_1_0 -23746,2,34.0,0.0,1,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,433.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,102743,2,1,0,0,1,,818.0,420.0,32,1.0,0.0,3.0,3.0,1.6,1,1,2555.45301926477,0.0,21240.971954501605,0,1,2,3,65.0,8,1,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.020385131194913808,13275.607471563502,3,2,3_0,3_0_0,3_1_0,3_1_0 -23747,2,44.0,0.0,1,112,1200.0,4500.0,0.0,37,56,0.0,155.27587572291867,1658.6090730911167,5850.0,0.0,8161.43805381352,70,1,2,2,2,1,2,2,2,2,40.0,1,,1,105351,2,3,1,0,1,,480.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,1986.95605487421,1200.0,84460.79408054745,1,1,1,2,240.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.06926290551354572,36722.08438284672,9,5,9,9_1,9_1,9_1_0 -23748,2,50.0,0.0,5,112,610.0,0.0,0.0,0,34,0.0,0.0,843.1262788213177,657.0,80.85536919693901,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,130268,2,2,2,0,1,,70.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,2099.85005978486,610.0,28399.79343807586,0,1,1,2,83.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023133971077379533,28399.79343807586,8,4,8,8_1,8_1,8_0_0 -23749,1,82.0,145.0,6,112,804.0,0.0,0.0,0,77,0.0,0.0,1111.2680789710482,869.0,111.82125527236246,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,107997,2,2,2,0,1,,55.0,310.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1834.3133778753,804.0,10753.221585395051,0,5,2,3,90.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08081299107425347,10753.221585395051,2,1,2_1,2_1_1,2_1_1,2_0_0 -23750,2,67.0,0.0,1,112,460.0,1462.0,0.0,78,74,0.0,0.0,635.800144684928,1922.0,0.0,2651.5605410389703,50,0,0,0,0,0,0,0,0,0,,1,,1,114900,2,1,3,0,1,,126.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1976.19420589801,460.0,47597.17654697788,5,5,0,1,153.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04038054648268911,31731.451031318586,8,4,8,8_1,8_1,8_1_0 -23751,2,57.0,0.0,1,112,1200.0,1700.0,0.0,75,31,0.0,51.75862524097289,1658.6090730911167,2950.0,0.0,3083.2099314406632,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,121928,2,1,1,0,1,,224.0,,42,1.0,5.0,10.0,2.0,1.5,3,3,2027.28561106623,1200.0,157311.69134847246,6,1,0,1,240.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.018752579510859384,104874.46089898165,10,5,10,10_1,10_1,10_1_0 -23752,2,48.0,0.0,7,112,695.0,985.0,0.0,54,22,0.0,207.03450096389156,960.6110881652718,1880.0,0.0,1786.4481073347372,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,102016,1,2,3,0,1,,181.0,,43,2.0,0.0,7.0,5.0,3.0,4,2,1785.46780891327,695.0,60525.54852105102,1,1,0,1,170.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031061263316698874,20175.182840350342,5,3,5,5_1,5_1,5_0_0 -23753,2,53.0,0.0,1,112,1054.0,0.0,0.0,47,42,0.0,0.0,1456.811635865031,1054.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,107330,2,3,1,0,1,,149.0,,43,2.0,2.0,7.0,2.0,1.5,1,1,2038.16141136183,1054.0,65008.36702277957,1,1,0,1,190.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.016213297584150486,43338.91134851971,10,5,10,10_1,10_1,10_1_0 -23754,2,47.0,0.0,1,112,663.0,0.0,0.0,53,67,0.0,362.31037668681023,916.381512882842,1863.0,1462.277953561663,0.0,20,1,2,2,1,1,2,2,2,2,25.0,1,,1,126013,2,1,2,0,1,,150.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,1986.95605487421,663.0,47776.99713465377,3,1,1,2,150.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03899366037487364,22750.951016501796,6,3,6,6_1,6_1,6_1_0 -23755,2,61.0,0.0,1,112,2500.0,0.0,0.0,75,74,0.0,0.0,3455.435568939826,2680.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,122077,2,1,2,0,1,,0.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1903.35097010497,2500.0,57656.77220562542,5,5,0,1,141.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04648196382624623,38437.848137083616,9,5,9,9_1,9_1,9_1_0 -23756,2,36.0,0.0,1,112,0.0,0.0,0.0,69,67,0.0,0.0,0.0,1332.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,111619,2,1,1,0,1,,671.0,600.0,43,2.0,0.0,4.0,2.0,1.5,1,1,2614.28994798262,0.0,26018.53469829308,1,1,2,3,80.0,8,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05119427421435015,17345.68979886205,4,2,4_0,4_1_0,4_1_0,4_1_0 -23757,2,42.0,0.0,1,112,0.0,0.0,0.0,0,90,0.0,0.0,0.0,1305.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117450,2,1,1,0,1,,198.0,600.0,32,1.0,0.0,4.0,2.0,1.3,2,2,2614.28994798262,0.0,35706.812171450096,0,1,2,3,90.0,8,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03654764793154601,27466.77859342315,7,4,7,7_1,7_1,7_1_0 -23758,2,68.0,0.0,1,112,1630.0,0.0,0.0,72,77,1194.8679016144006,0.0,2252.943990948767,2530.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,121317,2,1,1,0,1,,76.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,2027.28561106623,1630.0,19256.406045881464,5,5,0,1,150.0,8,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13138484896776018,12837.604030587643,2,1,2_0,2_1_0,2_1_0,2_1_0 -23759,2,55.0,0.0,5,112,946.0,100.0,0.0,64,64,0.0,372.6621017350048,1307.5368192868302,1406.0,0.0,181.36529008474488,60,0,0,0,0,0,0,0,0,2,25.0,1,,3,115424,2,1,4,0,1,,340.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,2038.16141136183,946.0,42484.177519617646,1,1,1,2,135.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03309467387831059,28322.78501307843,8,4,8,8_1,8_1,8_0_0 -23760,2,71.0,0.0,2,112,600.0,1800.0,0.0,75,75,0.0,0.0,829.3045365455583,2400.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,2,124536,2,3,3,0,1,,410.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1914.79351156924,600.0,69279.79834398367,5,5,0,1,140.0,8,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03464213316678077,46186.532229322445,10,5,10,10_1,10_1,10_0_1 -23761,2,43.0,0.0,1,112,1600.0,0.0,0.0,21,52,0.0,207.03450096389156,2211.478764121489,1865.0,111.82125527236246,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,111033,2,1,2,0,1,,127.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1986.95605487421,1600.0,49708.00624124314,1,1,0,1,120.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037519106900984374,19883.20249649726,5,3,5,5_1,5_1,5_1_0 -23762,1,54.0,306.0,8,112,980.0,0.0,0.0,68,64,0.0,703.9173032772313,1354.530743024412,1700.0,68.81308016760767,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,121205,2,1,2,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,1668.51253461922,980.0,35991.37179048188,1,1,1,2,120.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0472335428028774,13842.835304031492,3,2,3_1,3_1_1,3_1_1,3_0_0 -23763,2,29.0,0.0,9,112,443.0,469.0,0.0,63,43,0.0,310.55175144583734,612.3031828161372,1212.0,0.0,850.6032104974536,71,0,0,0,0,0,0,0,0,2,35.0,1,2008.0,6,116293,2,1,1,0,1,,206.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1821.59352702438,443.0,52829.08072083627,1,1,1,2,101.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02294190971076232,25156.705105160127,7,4,7,7_1,7_1,7_0_0 -23764,2,27.0,0.0,1,112,749.0,0.0,0.0,0,46,0.0,0.0,1035.248496454372,781.0,55.050464134086134,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,1,133656,1,1,2,0,1,,79.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1847.55760986521,749.0,20254.631671397034,0,1,1,2,82.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03855908182733849,20254.631671397034,5,3,5,5_1,5_1,5_1_0 -23765,1,32.0,142.0,9,112,1500.0,0.0,0.0,0,54,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,133476,2,1,1,0,1,,300.0,,32,1.0,0.0,4.0,4.0,1.9,2,2,1882.59011056831,1500.0,44000.58146152219,0,1,1,2,103.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03545407692769231,23158.200769222207,6,3,6,6_1,6_1,6_0_0 -23766,2,51.0,0.0,7,112,840.0,830.0,0.0,56,37,0.0,74.53242034700096,1161.0263511637818,1742.0,0.0,1505.3319077033825,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,100071,2,2,2,0,1,,600.0,,43,3.0,1.0,7.0,4.0,2.5,2,2,1920.990770897,840.0,72418.30792768105,1,1,0,1,170.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024054690724610826,28967.323171072418,8,4,8,8_1,8_1,8_0_0 -23767,2,67.0,0.0,1,112,309.0,1291.0,0.0,78,78,0.0,0.0,427.09183632096256,1600.0,0.0,2341.4258949940563,50,0,0,0,0,0,0,0,0,0,,1,,1,125813,2,1,4,0,1,,110.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,2059.71748201027,309.0,29126.95254866955,5,5,0,1,107.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05493193966401007,19417.9683657797,5,3,5,5_1,5_1,5_1_0 -23768,2,35.0,0.0,9,112,0.0,0.0,0.0,46,54,0.0,0.0,0.0,4654.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,102484,2,1,1,0,1,,571.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1948.21587191232,0.0,53788.8469389808,4,1,1,2,156.0,8,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08652351304871055,25613.736637609905,7,4,7,7_1,7_1,7_0_0 -23769,2,34.0,0.0,2,112,827.1,1472.4,0.0,47,46,0.0,289.84830134944815,1143.1963036280522,2612.0,55.050464134086134,2670.422531207784,20,0,0,0,0,0,0,0,0,0,,1,,2,123348,1,1,1,0,1,,200.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,2108.15766629805,827.1,65614.18701864939,1,1,1,2,200.0,8,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03980846397224424,27339.244591103914,7,4,7,7_1,7_1,7_0_1 -23770,2,61.0,0.0,1,112,1740.0,0.0,0.0,67,75,0.0,331.2552015422265,2404.983155982119,2160.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129470,2,3,4,0,1,,120.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1702.8422128059,1740.0,33182.03977275378,4,5,0,1,80.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06509545569810345,22121.359848502518,6,3,6,6_1,6_1,6_1_0 -23771,2,50.0,0.0,8,112,625.0,0.0,0.0,67,52,0.0,0.0,863.8588922349566,1485.0,1479.4812236035648,0.0,30,1,2,2,1,2,2,2,2,2,30.0,1,1999.0,6,110877,2,2,1,0,1,,216.0,,43,2.0,3.0,7.0,2.0,1.5,1,1,1962.44525893864,625.0,38919.850774154555,1,1,1,2,155.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.038155336427603714,25946.567182769704,7,4,7,7_1,7_1,7_0_0 -23772,2,40.0,0.0,1,112,484.0,0.0,0.0,46,46,1829.641474347051,186.3310508675024,668.9723261467504,2029.0,240.84578058662683,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,105519,2,1,2,0,1,,42.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1922.08480201006,484.0,48995.56357100743,1,1,1,2,100.0,8,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041411912673673945,23331.220748098774,6,3,6,6_1,6_1,6_1_0 -23773,2,28.0,0.0,5,112,800.0,0.0,0.0,56,64,0.0,828.1380038555662,1105.7393820607444,1690.0,154.82943037711726,0.0,50,1,2,2,1,1,2,2,2,2,30.0,1,,3,112807,2,1,2,0,1,,82.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1872.85485905527,800.0,35601.449405949235,1,1,1,2,157.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04746997743630039,16953.07114569011,4,2,4_0,4_1_0,4_1_0,4_0_0 -23774,2,47.0,0.0,9,112,486.0,741.0,0.0,47,43,0.0,113.86897553014036,671.7366746019022,1337.0,0.0,1343.9167995279597,31,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,108884,2,1,1,0,1,,238.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,1920.990770897,486.0,58501.93535357379,1,1,1,2,135.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022853944778398257,27858.064454082756,7,4,7,7_1,7_1,7_0_0 -23775,2,58.0,0.0,6,112,1050.0,0.0,0.0,56,64,0.0,465.827627168756,1451.2829389547271,1580.0,137.62616033521533,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,112477,2,2,1,0,1,,150.0,,43,3.0,2.0,6.0,3.0,2.0,2,2,2053.61891968134,1050.0,56129.035896655885,1,1,0,1,120.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02814942346255648,28064.517948327943,8,4,8,8_1,8_1,8_0_0 -23776,2,31.0,0.0,1,112,700.0,0.0,0.0,47,46,1045.5094139126004,0.0,967.5219593031513,1495.0,163.4310653980682,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,122571,2,2,3,0,1,,0.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,2200.80961506392,700.0,38588.38259740697,1,1,1,2,129.0,8,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0387422301576449,21437.99033189276,6,3,6,6_1,6_1,6_1_0 -23777,2,69.0,0.0,1,112,1300.0,0.0,0.0,0,78,0.0,0.0,1796.8264958487098,1340.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130853,2,1,1,0,1,,120.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,2089.4548262268,1300.0,23125.247938303663,0,5,0,1,120.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.057945324676086256,23125.247938303663,6,3,6,6_1,6_1,6_1_0 -23778,2,38.0,0.0,9,112,1524.0,0.0,0.0,55,54,0.0,0.0,2106.4335228257182,1524.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,130502,2,1,1,0,1,,290.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1948.01271651458,1524.0,42450.28241763906,1,1,1,2,95.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03590082122437761,20214.42019887574,5,3,5,5_1,5_1,5_0_0 -23779,2,37.0,0.0,1,112,2050.0,0.0,0.0,45,21,0.0,0.0,2833.4571665306576,2050.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,110638,2,2,1,0,1,,198.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1986.95605487421,2050.0,67167.84520240077,1,1,1,2,146.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030520556284374105,31984.688191619414,8,4,8,8_1,8_1,8_1_0 -23780,2,43.0,0.0,8,112,980.0,1334.0,0.0,0,48,0.0,0.0,1354.530743024412,2314.0,0.0,2419.412969730497,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,129782,2,1,1,0,1,,340.0,,32,1.0,0.0,5.0,3.0,1.6,2,2,2144.58089872529,980.0,26989.678722525903,0,4,1,2,120.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08573647814743006,16868.549201578688,4,2,4_0,4_1_0,4_1_0,4_0_0 -23781,2,48.0,0.0,1,112,500.0,1500.0,0.0,46,33,0.0,155.27587572291867,691.0871137879653,2150.0,0.0,2720.4793512711735,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,130498,2,2,3,0,1,,600.0,,43,2.0,1.0,7.0,4.0,2.5,3,3,1986.95605487421,500.0,81591.26248644006,1,1,1,2,250.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026350860796611846,32636.504994576022,8,4,8,8_1,8_1,8_1_0 -23782,2,60.0,0.0,5,112,1600.0,0.0,0.0,54,75,0.0,67.28621281326475,2211.478764121489,1665.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,130730,2,1,2,0,1,,190.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,2180.1835209046,1600.0,67889.36570839447,1,5,0,1,80.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024525195995374043,33944.682854197235,9,5,9,9_1,9_1,9_0_0 -23783,2,47.0,0.0,1,112,610.0,0.0,0.0,54,65,0.0,372.6621017350048,843.1262788213177,1100.0,223.64251054472493,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,118588,2,1,4,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1922.08480201006,610.0,28459.376678687804,1,4,1,2,100.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03865158441167653,13552.084132708478,3,2,3_0,3_1_0,3_1_0,3_1_0 -23784,1,45.0,345.0,9,112,630.0,1100.0,0.0,0,52,0.0,0.0,870.7697633728362,1730.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,106468,2,1,1,0,1,,320.0,779.0,32,1.0,0.0,6.0,5.0,2.8,2,2,1942.19002898247,630.0,31027.445765839042,0,1,2,3,120.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05575708722709993,11081.2306306568,2,1,2_1,2_1_1,2_1_1,2_0_0 -23785,2,31.0,0.0,7,112,1500.0,0.0,0.0,53,52,0.0,25.879312620486445,2073.261341363896,1705.0,309.6588607542345,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,5,117548,1,2,3,0,1,,0.0,570.0,43,2.0,0.0,5.0,3.0,1.8,2,2,2065.11567380452,1500.0,50027.266501511745,1,1,2,3,87.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03408141438126502,27792.92583417319,7,4,7,7_1,7_1,7_0_0 -23786,2,62.0,0.0,5,112,1280.0,0.0,0.0,78,75,0.0,207.03450096389156,1769.1830112971911,1550.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,119546,2,2,2,0,1,,120.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1987.36689885254,1280.0,31440.40171187082,5,5,0,1,150.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0492996245469336,20960.267807913882,5,3,5,5_1,5_1,5_0_0 -23787,1,31.0,33.0,1,112,1500.0,0.0,0.0,64,63,0.0,0.0,2073.261341363896,1566.0,113.54158227655265,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,1,110254,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1986.95605487421,1500.0,37079.71187269081,1,1,1,2,130.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04223333787966563,17657.00565366229,4,2,4_1,4_1_1,4_1_1,4_1_0 -23788,1,40.0,450.0,7,112,1267.2,0.0,0.0,11,47,0.0,931.655254337512,1751.4911811842192,2167.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124545,2,1,2,0,1,,300.0,780.0,43,2.0,0.0,6.0,5.0,2.4,1,1,1942.19002898247,1267.2,18536.786420758483,1,1,2,3,130.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.11690267939718385,7723.661008649368,1,1,1_1,1_1_1,1_1_1,1_0_0 -23789,2,70.0,0.0,7,221,1100.0,0.0,0.0,78,78,0.0,0.0,1520.3916503335236,1170.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,117253,2,1,1,0,1,,989.0,365.0,41,0.0,4.0,3.0,2.0,1.5,1,1,1566.47738308174,1100.0,26853.681703690276,5,5,2,3,60.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04356944470073229,17902.45446912685,4,2,4_0,4_1_0,4_1_0,4_0_0 -23790,2,85.0,0.0,1,221,289.0,0.0,0.0,78,72,2588.382591872195,0.0,399.44835176944395,2022.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,133439,2,2,2,0,1,,147.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,1713.43262967019,289.0,24770.32056785664,5,5,0,1,250.0,1,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08162994881155719,16513.54704523776,4,2,4_0,4_1_0,4_1_0,4_1_0 -23791,2,76.0,0.0,1,221,1010.0,0.0,0.0,78,78,0.0,0.0,1395.9959698516898,1138.0,220.20185653634454,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,116611,2,1,3,0,1,,308.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1562.85701938938,1010.0,30816.61074494341,5,5,0,1,110.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03692813623856188,20544.407163295607,5,3,5,5_1,5_1,5_1_0 -23792,2,54.0,0.0,6,221,1000.0,0.0,0.0,56,47,2688.452778632401,103.51725048194578,1382.1742275759307,3000.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,105782,2,1,2,0,1,,150.0,,43,2.0,3.0,7.0,2.0,1.5,3,3,1717.94445299696,1000.0,37803.51118828498,1,1,0,1,155.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07935770794035865,25202.34079218999,7,4,7,7_1,7_1,7_0_0 -23793,1,18.0,250.0,1,221,1128.0,0.0,0.0,0,63,0.0,0.0,1559.0925287056498,1218.0,154.82943037711726,0.0,43,2,2,2,1,1,2,2,2,2,45.0,1,,1,130262,1,3,3,0,2,,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1799.27328236072,1128.0,8730.08939726328,0,1,2,3,59.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0.13951747165175882,8730.08939726328,1,1,1_1,1_1_1,1_1_1,1_1_0 -23794,1,33.0,137.0,2,221,0.0,0.0,0.0,85,47,0.0,0.0,0.0,851.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,100837,2,2,2,0,2,,377.0,,42,1.0,0.0,7.0,4.0,2.1,4,3,1742.28048730115,0.0,21365.671816699556,6,1,1,2,107.0,1,2,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.03983024766554977,10174.129436523597,2,1,2_1,2_1_1,2_1_1,2_0_1 -23795,2,39.0,0.0,2,221,450.0,0.0,0.0,65,47,1299.4188430056606,310.55175144583734,621.9784024091688,1680.0,103.2196202514115,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,2,102858,2,2,1,0,1,,329.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1642.31558785792,450.0,50535.529589642996,1,1,0,1,90.0,1,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033243937753138886,21971.969386801306,6,3,6,6_1,6_1,6_0_1 -23796,2,49.0,0.0,1,221,275.0,0.0,0.0,0,65,1389.0339356267407,0.0,380.0979125833809,1240.0,60.21144514665671,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,,1,106792,2,1,2,0,1,,210.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1683.15822029521,275.0,19578.071099113135,0,1,1,2,80.0,1,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06333616798726258,19578.071099113135,5,3,5,5_1,5_1,5_1_0 -23797,2,30.0,0.0,1,221,1560.0,0.0,0.0,0,63,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,116468,2,2,1,0,1,,138.0,,12,1.0,0.0,3.0,1.0,1.0,4,3,1791.42854140602,1560.0,21642.73618810703,0,1,1,2,90.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07207961074982935,21642.73618810703,6,3,6,6_1,6_1,6_1_0 -23798,2,64.0,0.0,5,221,1189.0,0.0,0.0,77,75,0.0,0.0,1643.4051565877814,1309.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109837,2,2,2,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1670.09654325281,1189.0,37788.246558726714,5,5,0,1,99.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03464040063265923,25192.164372484476,7,4,7,7_1,7_1,7_0_0 -23799,2,65.0,0.0,5,221,680.0,0.0,0.0,78,72,1642.9433647198007,0.0,939.8784747516328,1780.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,105919,2,1,2,0,1,,258.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1564.65048651911,680.0,30729.006648842096,5,5,0,1,104.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.057925725368902295,20486.004432561396,5,3,5,5_1,5_1,5_0_0 -23800,2,77.0,0.0,2,221,421.0,0.0,0.0,78,78,2416.620331015125,0.0,581.8953498094668,2187.0,254.60839662014837,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105100,2,1,2,0,1,,157.0,,41,0.0,8.0,7.0,2.0,1.5,2,2,1634.50503201342,421.0,23617.83911220831,5,5,0,1,120.0,1,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09259949606776333,15745.22607480554,3,2,3_0,3_1_0,3_1_0,3_0_1 -23801,2,76.0,0.0,2,221,399.0,0.0,0.0,77,72,1965.557698155689,0.0,551.4875168027963,1803.0,151.38877636873687,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112255,2,1,1,0,1,,229.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1670.09654325281,399.0,22099.55750626845,5,5,0,1,90.0,1,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08158534393679992,14733.0383375123,3,2,3_0,3_1_0,3_1_0,3_0_1 -23802,2,73.0,0.0,2,221,1000.0,0.0,0.0,78,78,0.0,0.0,1382.1742275759307,1070.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,128813,2,1,2,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1560.99081469386,1000.0,24201.357395074916,5,5,0,1,83.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.044212396128563834,16134.238263383277,4,2,4_0,4_1_0,4_1_0,4_0_1 -23803,2,80.0,0.0,2,221,874.0,0.0,0.0,0,78,0.0,0.0,1208.0202749013633,874.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,107091,2,1,1,0,1,,154.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1643.1367734119,874.0,14454.719761247314,0,5,0,1,58.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06046467966422765,14454.719761247314,3,2,3_0,3_1_0,3_1_0,3_0_1 -23804,2,38.0,0.0,9,221,540.0,0.0,0.0,47,53,2016.339583974301,0.0,746.3740828910024,1890.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,111976,2,1,1,0,1,,420.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1634.37540104586,540.0,57502.95318878273,1,1,1,2,125.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03286787712963389,27382.35866132511,7,4,7,7_1,7_1,7_0_0 -23805,1,37.0,249.0,9,221,475.0,0.0,0.0,85,68,0.0,0.0,656.532758098567,1320.0,1453.676318540712,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,127887,2,1,1,0,1,,323.0,456.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1541.63873725703,475.0,31367.930843739785,7,1,2,3,91.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0420811945351326,14937.109925590374,3,2,3_1,3_1_1,3_1_1,3_0_0 -23806,2,49.0,0.0,8,221,440.0,0.0,0.0,85,53,1493.5848770180007,0.0,608.1566601334094,1540.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,55.0,1,2000.0,6,114935,2,1,1,0,1,,200.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1623.67838556947,440.0,34825.20225407695,6,1,1,2,100.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0442208487050413,23216.801502717964,6,3,6,6_1,6_1,6_0_0 -23807,2,31.0,0.0,9,221,0.0,0.0,0.0,11,46,0.0,0.0,0.0,721.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,128610,2,1,1,0,1,,275.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1946.29117386384,0.0,39474.0,1,1,1,2,100.0,1,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018265187211835638,21930.0,6,3,6,6_1,6_1,6_0_0 -23808,1,54.0,53.0,9,221,1404.0,0.0,0.0,55,63,0.0,0.0,1940.5726155166064,1404.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,132801,2,1,1,0,1,,468.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1573.31465080274,1404.0,36456.04906196586,1,1,1,2,101.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03851212723610183,15190.020442485775,3,2,3_1,3_1_1,3_1_1,3_0_0 -23809,2,37.0,0.0,9,221,1380.0,0.0,0.0,43,63,0.0,0.0,1907.4004340547842,1380.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,116949,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1613.75533860164,1380.0,55069.65466644359,1,1,1,2,140.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025059172939410058,22945.689444351498,6,3,6,6_1,6_1,6_0_0 -23810,1,55.0,116.0,9,221,925.0,0.0,0.0,0,69,0.0,0.0,1278.5111605077357,925.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,112646,2,1,1,0,1,,186.0,367.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1605.67066192073,925.0,18634.100746590702,0,1,2,3,70.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04964017381784512,18634.100746590702,4,2,4_1,4_1_1,4_1_1,4_0_0 -23811,2,54.0,0.0,9,221,872.0,0.0,0.0,0,65,0.0,0.0,1205.2559264462116,928.0,96.33831223465073,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,106462,2,1,1,0,1,,198.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1734.37128494961,872.0,19060.327138867684,0,1,1,2,92.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04868751691609893,19060.327138867684,5,3,5,5_1,5_1,5_0_0 -23812,2,58.0,0.0,6,221,1754.0,0.0,0.0,52,63,0.0,0.0,2424.333595168182,1808.0,92.89765822627035,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,130742,2,2,2,0,1,,319.0,,43,2.0,2.0,5.0,3.0,2.0,2,2,1681.69207965368,1754.0,30868.326593566675,1,1,0,1,95.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05857136422733095,15434.163296783338,3,2,3_0,3_1_0,3_1_0,3_0_0 -23813,2,64.0,0.0,5,221,670.0,0.0,0.0,75,75,1792.3018524216009,0.0,926.0567324758734,1870.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107782,2,1,1,0,1,,243.0,,41,0.0,3.0,8.0,2.0,1.5,3,2,1630.50860936272,670.0,35735.23384511869,5,5,0,1,126.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05232930636762674,23823.489230079125,6,3,6,6_1,6_1,6_0_0 -23814,2,75.0,0.0,5,221,308.0,0.0,0.0,77,78,0.0,0.0,425.7096620933866,2688.0,4094.378269972656,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,108770,2,1,1,0,1,,230.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1564.65048651911,308.0,25311.068152351087,5,5,0,1,96.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10619859990975204,16874.045434900723,4,2,4_0,4_1_0,4_1_0,4_0_0 -23815,2,90.0,0.0,1,221,1138.0,0.0,0.0,0,75,0.0,0.0,1572.914270981409,1222.0,144.50746835197612,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,113449,2,1,2,0,1,,147.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1649.96766775797,1138.0,24896.046662488057,0,5,0,1,80.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.049084098233204226,24896.046662488057,7,4,7,7_1,7_1,7_1_0 -23816,2,44.0,0.0,1,221,450.0,0.0,0.0,47,43,3851.955397829424,144.92415067472407,621.9784024091688,3265.0,165.1513924022584,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,127846,2,1,2,0,1,,320.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1643.25626674754,450.0,67231.71950790573,1,1,0,1,120.0,1,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04856338680458814,29231.182394741623,8,4,8,8_1,8_1,8_1_0 -23817,1,94.0,44.0,8,111,750.0,0.0,0.0,0,77,0.0,0.0,1036.630670681948,750.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,100963,2,1,0,0,1,,0.0,645.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1655.56611925046,750.0,19230.80008005097,0,5,2,3,70.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.038999937437756996,19230.80008005097,5,3,5,5_0,5_3,5_0_0 -23818,2,77.0,0.0,2,111,900.0,0.0,0.0,77,74,3435.2452171414016,0.0,1243.9568048183376,3270.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126627,2,3,1,0,1,,270.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1139.42117812197,900.0,48454.19958873315,5,5,0,1,150.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0674864104196318,32302.7997258221,8,4,8,8_1,8_3,8_0_1 -23819,2,59.0,0.0,8,111,250.0,500.0,0.0,0,48,0.0,0.0,345.54355689398267,750.0,0.0,906.8264504237244,50,2,2,2,2,1,2,2,2,0,,2,2002.0,6,114564,2,1,0,0,1,,220.0,375.0,12,1.0,1.0,3.0,1.0,1.0,3,2,1331.95287364085,250.0,15915.35268385356,0,4,2,3,71.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.0471243091433902,15915.35268385356,3,2,3_0,3_0_0,3_3_0,3_0_0 -23820,1,29.0,297.0,7,111,0.0,0.0,1050.0,56,46,0.0,0.0,536.4590015794013,1050.0,0.0,1200.4080633852632,31,0,0,0,0,0,0,0,0,0,,2,,5,130748,2,1,0,0,1,,500.0,495.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1089.73389878573,0.0,28354.58895431167,1,1,2,3,87.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03703104290074127,11814.412064296528,2,1,2_1,2_0_1,2_3_1,2_0_0 -23821,1,41.0,491.0,8,111,270.0,500.0,0.0,85,68,0.0,0.0,373.1870414455012,770.0,0.0,906.8264504237244,50,2,2,2,2,1,2,2,2,0,,2,2000.0,6,114315,2,1,0,0,1,,240.0,467.0,42,1.0,0.0,4.0,5.0,2.4,1,1,1184.35262510079,270.0,22400.26585335153,6,4,2,3,89.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.03437459202676349,9333.444105563138,1,1,1_1,1_0_1,1_3_1,1_0_0 -23822,2,81.0,0.0,8,111,225.0,549.0,0.0,0,72,0.0,0.0,310.9892012045844,774.0,0.0,995.6954425652494,50,0,0,0,0,0,0,0,0,0,,2,2002.0,6,118860,2,1,0,0,1,,140.0,404.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1418.84534567857,225.0,14797.263764689758,0,5,2,3,72.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05230696784948658,14797.263764689758,3,2,3_0,3_0_0,3_3_0,3_0_0 -23823,2,67.0,0.0,5,111,561.0,806.0,0.0,77,75,0.0,0.0,775.399741670097,1367.0,0.0,1461.8042380830439,71,2,2,1,2,1,2,2,2,0,,1,,3,102570,2,2,2,0,1,,241.0,,41,0.0,2.0,5.0,2.0,1.5,5,4,1072.44762231386,561.0,48500.00320926876,5,5,0,1,98.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.028185565145256625,32333.33547284584,8,4,8,8_1,8_3,8_0_0 -23824,2,54.0,0.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,318.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,110606,1,2,0,3,1,,0.0,164.0,22,1.0,0.0,3.0,2.0,1.5,1,1,1730.89210065044,0.0,26643.90750594671,0,1,2,3,62.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011935186305875927,17762.605003964472,4,2,4_0,4_0_0,4_3_0,4_0_1 -23825,1,46.0,197.0,6,111,580.0,1090.0,0.0,0,56,0.0,0.0,801.6610519940398,1770.0,172.03270041901916,1976.8816619237193,60,0,0,0,0,0,0,0,0,2,20.0,2,,4,109514,2,2,0,0,1,,700.0,448.0,32,3.0,0.0,4.0,4.0,2.5,2,2,1411.51578036845,580.0,30868.782901138246,0,1,2,3,78.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.057339481302799714,12347.513160455299,2,1,2_1,2_0_1,2_3_1,2_0_0 -23826,2,52.0,0.0,7,111,1800.0,0.0,0.0,42,62,0.0,186.3310508675024,2487.913609636675,1980.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,109640,2,1,1,0,1,,280.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,1081.99856650389,1800.0,49583.9564490755,1,1,0,1,165.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03993227127878613,19833.5825796302,5,3,5,5_1,5_3,5_0_0 -23827,2,38.0,0.0,5,111,420.0,500.0,0.0,0,43,0.0,0.0,580.5131755818909,920.0,0.0,906.8264504237244,50,2,2,2,2,1,2,2,2,2,4.0,2,,3,129457,2,3,0,0,1,,0.0,329.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1355.79157879095,420.0,20157.558300378023,0,1,2,3,65.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.045640448425876404,20157.558300378023,5,3,5,5_0,5_3,5_0_0 -23828,2,69.0,0.0,2,111,255.0,0.0,0.0,0,78,0.0,0.0,352.4544280318623,265.0,17.203270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,112739,2,1,0,1,1,574.0,0.0,314.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1430.58743715498,255.0,23197.89526916902,0,5,2,3,62.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011423450141711613,23197.89526916902,6,3,6,6_0,6_3,6_0_1 -23829,2,57.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,756.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,2,123730,2,1,1,0,1,,170.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1172.41710548103,0.0,30900.828984438143,0,1,1,2,110.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.024465363061318725,30900.828984438143,8,4,8,8_1,8_3,8_0_1 -23830,2,80.0,0.0,2,111,750.0,2050.0,0.0,71,71,0.0,0.0,1036.630670681948,2800.0,0.0,3717.9884467372704,50,0,0,0,0,0,0,0,0,0,,1,,2,117546,2,1,2,0,1,,1300.0,,41,0.0,2.0,7.0,2.0,1.5,3,3,1102.1373429834,750.0,27662.051797233667,5,5,0,1,106.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10122170331124941,18441.367864822445,4,2,4_0,4_1_0,4_3_0,4_0_1 -23831,1,35.0,379.0,2,111,800.0,950.0,0.0,85,48,0.0,0.0,1105.7393820607444,1750.0,0.0,1722.9702558050765,20,2,2,2,2,1,2,2,2,0,,1,,2,126866,2,2,2,0,1,,500.0,310.0,42,1.0,0.0,4.0,7.0,2.9999999999999996,1,1,1025.26960820983,800.0,18675.992176567328,6,4,2,3,72.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,0.09370318767833476,6225.330725522444,1,1,1_1,1_1_1,1_3_1,1_0_1 -23832,2,42.0,0.0,2,111,1199.0,0.0,0.0,43,34,0.0,455.47590212056144,1657.2268988635408,1729.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,1,20.0,1,,2,105101,2,2,1,0,1,,330.0,,43,2.0,0.0,6.0,5.0,2.4,3,3,1079.04845057549,1199.0,54464.93119714993,1,1,1,2,110.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031745197542643294,22693.721332145804,6,3,6,6_1,6_3,6_0_1 -23833,2,59.0,0.0,5,111,2000.0,60.0,0.0,21,77,0.0,0.0,2764.3484551518613,2060.0,0.0,108.81917405084694,31,0,0,0,0,0,0,0,0,0,,1,,3,132340,2,1,2,0,1,,380.0,,42,1.0,2.0,5.0,2.0,1.5,3,3,1050.85088745263,2000.0,34494.2561147682,1,5,0,1,101.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05972008769071677,22996.170743178798,6,3,6,6_1,6_3,6_0_0 -23837,2,63.0,0.0,2,111,476.0,395.0,0.0,0,75,0.0,0.0,657.9149323261429,871.0,0.0,716.3928958347423,50,0,0,0,0,0,0,0,0,0,,1,,2,116616,2,1,1,0,1,,160.0,263.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1277.96437794819,476.0,18580.301711129297,0,5,2,3,35.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04687760261063389,18580.301711129297,4,2,4_0,4_1_0,4_3_0,4_0_1 -23838,2,49.0,0.0,6,111,470.0,816.0,0.0,54,64,0.0,0.0,649.6218869606873,1286.0,0.0,1479.9407670915184,44,0,0,0,0,0,0,0,0,3,30.0,1,,4,126184,2,2,2,0,1,,368.0,,43,2.0,1.0,6.0,4.0,2.5,2,2,1055.18807718349,470.0,42491.79205887522,1,1,0,1,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030264668485107928,16996.716823550087,4,2,4_0,4_1_0,4_3_0,4_0_0 -23839,2,48.0,0.0,6,111,528.0,796.0,0.0,0,37,0.0,103.51725048194578,729.7879921600913,1424.0,0.0,1443.6677090745693,70,0,0,0,0,0,0,0,0,0,,1,,4,129054,2,1,2,0,2,,261.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,1166.87229040141,528.0,191824.2230775825,0,4,0,1,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007423462882599917,127882.81538505499,10,5,10,10_1,10_3,10_0_0 -23840,2,54.0,0.0,1,111,437.0,430.0,0.0,0,62,0.0,0.0,604.0101374506817,867.0,0.0,779.870747364403,10,0,0,0,0,0,0,0,0,2,7.0,2,,1,108097,2,1,0,0,1,,0.0,321.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2005.94948353317,437.0,25485.496975748785,0,1,2,3,40.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03401934836997727,25485.496975748785,7,4,7,7_0,7_3,7_1_0 -23841,2,59.0,0.0,6,111,528.0,800.0,0.0,75,54,0.0,0.0,729.7879921600913,1328.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,2,10.0,1,,4,108076,2,1,1,0,1,,167.0,,42,1.0,3.0,7.0,2.0,1.5,3,3,1136.63525301575,528.0,45487.98844801188,5,1,0,1,136.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02919452025269854,30325.32563200792,8,4,8,8_1,8_3,8_0_0 -23842,2,36.0,0.0,1,111,654.0,0.0,0.0,0,37,1403.9697843969207,0.0,903.9419448346586,1644.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,108208,1,3,3,0,2,,160.0,,32,1.0,0.0,7.0,3.0,1.8,3,2,1207.31280885936,654.0,34318.6708649728,0,1,1,2,120.0,8,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04790395311252981,19065.928258318225,5,3,5,5_1,5_3,5_1_0 -23843,1,43.0,156.0,7,111,490.0,0.0,0.0,0,64,0.0,0.0,677.265371512206,523.0,56.77079113827632,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,103085,2,1,0,0,1,,0.0,380.0,12,1.0,3.0,1.0,1.0,1.0,1,1,2005.94948353317,490.0,11618.283036320372,0,4,2,3,20.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04501525727726111,11618.283036320372,2,1,2_1,2_0_1,2_3_1,2_0_0 -23844,2,57.0,0.0,7,111,0.0,0.0,1000.0,0,45,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,41,0,0,0,0,0,0,0,0,3,20.0,1,,5,124522,1,1,2,0,1,,250.0,735.0,22,1.0,0.0,3.0,2.0,1.5,3,3,1192.39922188368,0.0,43182.797951065266,0,1,2,3,66.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023157369310186887,28788.531967376843,8,4,8,8_1,8_3,8_0_0 -23845,1,47.0,240.0,1,111,0.0,0.0,1800.0,67,56,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,10,2,2,2,2,1,2,2,2,0,,2,,1,102713,1,2,0,0,1,,0.0,737.0,43,3.0,1.0,4.0,4.0,2.5,1,1,1711.19696547621,0.0,21001.77867092471,4,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.0857070264478102,8400.711468369884,1,1,1_1,1_0_1,1_3_1,1_1_0 -23846,2,90.0,0.0,1,111,216.0,1700.0,0.0,78,78,0.0,0.0,298.549633156401,1916.0,0.0,3083.2099314406632,41,2,2,2,1,2,2,2,2,0,,1,,1,131399,2,1,3,0,2,,137.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1219.11447535163,216.0,19300.98769301516,5,5,0,1,70.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.09926953120090232,12867.325128676772,2,1,2_0,2_1_0,2_3_0,2_1_0 -23847,2,65.0,0.0,8,111,421.0,1135.0,0.0,77,77,0.0,0.0,581.8953498094668,1556.0,0.0,2058.4960424618544,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,120981,2,1,2,0,1,,240.0,,41,0.0,2.0,5.0,2.0,1.5,4,3,1077.63233431756,421.0,47183.239013951395,5,5,0,1,127.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03297781230194717,31455.4926759676,8,4,8,8_1,8_3,8_0_0 -23848,2,87.0,0.0,5,111,1260.0,0.0,0.0,74,72,0.0,0.0,1741.5395267456724,1380.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,129716,2,1,2,0,1,,480.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1139.42117812197,1260.0,33220.754421756974,5,5,0,1,140.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04154029684215145,22147.169614504648,6,3,6,6_1,6_3,6_0_0 -23849,2,74.0,0.0,1,111,1860.0,0.0,0.0,0,78,0.0,0.0,2570.8440632912307,1860.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125844,2,1,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,1103.87043828489,1860.0,15832.79073330498,0,5,0,1,90.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11747771011003177,15832.79073330498,3,2,3_0,3_1_0,3_3_0,3_1_0 -23850,2,39.0,0.0,9,111,1265.0,0.0,0.0,46,64,0.0,0.0,1748.4503978835521,1265.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,128359,2,1,1,0,1,,176.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1061.3154064513,1265.0,56384.931031415756,1,1,1,2,87.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022435072223378004,26849.967157817024,7,4,7,7_1,7_3,7_0_0 -23851,2,65.0,0.0,1,111,534.0,832.0,0.0,68,78,0.0,0.0,738.0810375255469,1366.0,0.0,1508.9592135050775,71,0,0,0,0,0,0,0,0,0,,1,,1,131969,2,1,1,0,1,,170.0,,42,1.0,2.0,3.0,2.0,1.5,4,2,1120.82773298297,534.0,32643.255714325307,1,5,1,2,60.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04184631618716079,21762.17047621687,6,3,6,6_1,6_3,6_1_0 -23852,2,72.0,0.0,2,111,0.0,0.0,1800.0,0,75,0.0,0.0,919.644002707545,1850.0,86.01635020950958,2057.8423943747366,71,0,0,0,0,0,0,0,0,0,,1,,2,129228,2,2,1,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1147.95923434852,0.0,23830.95157605077,0,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07763013550240193,23830.95157605077,6,3,6,6_1,6_3,6_0_1 -23853,2,61.0,0.0,9,111,1562.0,0.0,0.0,78,62,0.0,0.0,2158.9561434736033,1562.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,122994,2,1,1,0,1,,368.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,1151.07329634584,1562.0,50938.480981734436,5,1,1,2,125.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03066444012258833,33958.98732115629,9,5,9,9_1,9_3,9_0_0 -23854,2,50.0,0.0,7,111,677.0,693.0,0.0,46,38,0.0,0.0,935.731952068905,1370.0,0.0,1256.8614602872822,50,0,0,0,0,0,0,0,0,2,2.0,1,,5,101815,2,1,2,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1160.02706802573,677.0,77607.53773592917,1,1,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01765292444480873,51738.35849061945,10,5,10,10_1,10_3,10_0_0 -23855,2,76.0,0.0,1,111,285.0,840.0,0.0,78,78,0.0,0.0,393.9196548591402,1125.0,0.0,1523.468436711857,43,0,0,0,0,0,0,0,0,0,,1,,1,111965,2,2,2,0,1,,310.0,310.0,41,0.0,1.0,2.0,2.0,1.5,4,4,1147.67098899497,285.0,20147.912626969995,5,5,2,3,58.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055837049764354996,13431.94175131333,3,2,3_0,3_1_0,3_3_0,3_1_0 -23856,2,54.0,0.0,1,111,475.0,776.0,0.0,0,43,0.0,0.0,656.532758098567,1251.0,0.0,1407.3946510576204,71,0,0,0,0,0,0,0,0,0,,1,,1,100303,2,1,2,0,1,,170.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1107.23199907978,475.0,17857.024478959214,0,1,1,2,100.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07005646441679257,17857.024478959214,4,2,4_0,4_1_0,4_2_0,4_1_0 -23857,2,39.0,0.0,1,111,500.0,980.0,0.0,42,34,0.0,0.0,691.0871137879653,1685.0,352.6670358589893,1777.3798428305,31,2,2,2,1,1,2,2,2,1,10.0,2,,1,133362,1,2,0,1,2,,624.0,510.0,43,2.0,0.0,5.0,4.0,2.1,4,2,1516.07242405542,500.0,63078.58347169896,1,1,2,3,105.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.026712711466578786,30037.420700809027,8,4,8,8_0,8_2,8_1_0 -23858,2,75.0,0.0,1,111,600.0,1800.0,0.0,75,74,0.0,144.92415067472407,829.3045365455583,2540.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,,1,112917,2,1,1,0,1,,300.0,,41,0.0,1.0,11.0,2.0,1.5,1,1,1069.2767311562,600.0,62550.42010131595,5,5,0,1,330.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.040607241260503746,41700.280067543965,9,5,9,9_1,9_2,9_1_0 -23859,2,25.0,0.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,836.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,1,123799,1,1,0,0,1,,0.0,350.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1576.51061635179,0.0,15519.930847923355,0,1,2,3,47.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.053866219391812624,15519.930847923355,3,2,3_0,3_0_0,3_2_0,3_1_0 -23860,1,49.0,255.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1127.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,129483,1,2,0,0,2,,126.0,240.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1460.54208221741,0.0,4852.287604538618,0,4,2,3,42.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.2322615829584902,4852.287604538618,1,1,1_1,1_0_1,1_2_1,1_1_0 -23861,2,49.0,0.0,1,111,1450.0,1467.0,0.0,52,47,0.0,0.0,2004.1526299850993,2917.0,0.0,2660.6288055432074,31,0,0,0,0,0,0,0,0,1,10.0,1,,1,114781,2,2,3,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,962.270682953515,1450.0,41870.44113495919,1,1,1,2,121.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06966728605981866,18204.5396238953,4,2,4_0,4_1_0,4_2_0,4_1_0 -23862,1,57.0,255.0,2,111,244.0,1172.0,0.0,0,42,0.0,0.0,337.25051152852706,1416.0,0.0,2125.60119979321,50,2,2,2,2,1,1,1,2,2,5.0,2,,2,105047,1,3,0,0,1,,212.0,239.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1264.56235065632,244.0,9117.64161328159,0,1,2,3,70.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.1553033185618225,9117.64161328159,1,1,1_1,1_0_1,1_2_1,1_0_1 -23863,1,81.0,34.0,5,111,140.0,1010.0,0.0,0,78,0.0,0.0,193.50439186063028,1150.0,0.0,1831.7894298559233,70,2,2,2,2,1,2,2,2,0,,2,,3,132260,2,1,0,0,1,,0.0,355.0,11,0.0,5.0,2.0,1.0,1.0,2,2,1500.74914438737,140.0,16340.85017419112,0,5,2,3,52.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.07037577529572604,16340.85017419112,4,2,4_1,4_0_1,4_2_1,4_0_0 -23864,2,26.0,0.0,2,111,0.0,0.0,0.0,47,47,0.0,0.0,0.0,2696.0,0.0,0.0,10,0,0,0,0,0,0,0,0,4,80.0,2,,2,112783,2,1,0,0,1,,0.0,450.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1633.34413034389,0.0,45680.10340965538,1,1,2,3,60.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05901913084176924,30453.402273103584,8,4,8,8_0,8_2,8_0_1 -23865,1,62.0,174.0,2,111,60.0,330.0,0.0,0,69,0.0,0.0,82.93045365455583,390.0,0.0,598.5054572796581,50,2,2,2,2,1,2,2,2,0,,2,,2,124708,1,3,0,0,1,,110.0,160.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1537.29832487255,60.0,6577.51452148411,0,4,2,3,30.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.059292913565776935,6577.51452148411,1,1,1_1,1_0_1,1_2_1,1_0_1 -23866,2,87.0,0.0,2,111,201.0,1517.0,0.0,0,78,0.0,0.0,277.81701974276206,1718.0,0.0,2751.31145058558,41,0,0,0,0,0,0,0,0,0,,1,,2,108775,2,1,2,0,1,,175.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1088.07723246409,201.0,16245.91132500151,0,5,0,1,90.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10574968468257599,16245.91132500151,4,2,4_0,4_1_0,4_2_0,4_0_1 -23867,2,58.0,0.0,2,111,510.0,283.0,0.0,0,69,0.0,0.0,704.9088560637246,793.0,0.0,513.2637709398281,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,131756,2,1,0,1,1,529.0,0.0,270.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1261.47045095433,510.0,16315.533892939238,0,1,2,3,80.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04860398716974755,16315.533892939238,4,2,4_0,4_0_0,4_2_0,4_0_1 -23868,1,76.0,130.0,2,111,343.0,598.0,0.0,0,77,0.0,0.0,474.08576005854417,941.0,0.0,1084.5644347067744,50,2,1,2,1,1,2,2,2,0,,2,,2,102142,2,1,0,1,1,579.0,118.0,368.0,11,0.0,5.0,5.0,1.0,1.0,4,3,1290.96620414716,343.0,11388.90304456677,0,5,2,3,85.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.08262428754707124,11388.90304456677,2,1,2_1,2_0_1,2_2_1,2_0_1 -23869,2,35.0,0.0,1,111,1150.0,0.0,0.0,0,42,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,100538,2,1,1,0,1,,190.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,996.092511445191,1150.0,20811.368315451084,0,1,1,2,55.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05525825993604659,20811.368315451084,5,3,5,5_1,5_2,5_1_0 -23870,2,61.0,0.0,2,111,146.0,69.0,0.0,0,56,0.0,0.0,201.79743722608586,215.0,0.0,125.14205015847398,50,2,1,2,2,1,2,2,2,2,45.0,2,,2,111403,1,3,0,1,1,508.0,191.0,358.0,12,1.0,2.0,4.0,1.0,1.0,2,2,417.578119942784,146.0,16146.200828856914,0,1,2,3,90.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.01331582595056952,16146.200828856914,4,2,4_0,4_0_0,4_2_0,4_0_1 -23871,1,32.0,208.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,863.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,2,111597,2,2,0,1,1,350.0,163.0,246.0,12,1.0,0.0,2.0,1.0,1.0,2,2,348.438424644688,0.0,11551.892998541527,0,1,2,3,65.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07470637064496331,11551.892998541527,2,1,2_1,2_0_1,2_2_1,2_0_1 -23872,1,56.0,305.0,2,111,0.0,0.0,0.0,78,77,0.0,0.0,0.0,2439.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106416,2,1,2,0,1,,236.0,455.0,41,0.0,0.0,3.0,2.0,1.5,1,1,302.019455487513,0.0,11956.72083815819,6,7,2,3,82.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.20398569415589893,7971.147225438793,1,1,1_1,1_1_1,1_2_1,1_0_1 -23873,2,46.0,0.0,6,111,496.0,1145.0,0.0,85,37,0.0,31.055175144583732,685.5584168776616,1671.0,0.0,2076.632571470329,50,0,0,0,0,0,0,0,0,1,3.0,1,,4,122329,2,1,1,0,1,,338.0,,42,1.0,0.0,6.0,5.0,2.5999999999999996,3,3,1003.34333890941,496.0,45380.239018665125,6,1,1,2,127.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03682219477320754,17453.938084101974,4,2,4_0,4_1_0,4_2_0,4_0_0 -23874,2,42.0,0.0,9,111,2300.0,0.0,0.0,55,37,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,106753,1,1,1,0,1,,432.0,757.0,43,2.0,0.0,5.0,4.0,2.1,4,3,988.006796434062,2300.0,67393.41804608269,1,1,3,4,120.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03412796184973571,32092.103831467946,8,4,8,8_1,8_2,8_0_0 -23875,2,40.0,0.0,1,111,1400.0,2800.0,0.0,55,22,0.0,103.51725048194578,1935.0439186063027,4300.0,0.0,5078.228122372857,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,106107,2,3,3,0,1,,285.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,966.334456818548,1400.0,37731.59969389773,1,1,1,2,100.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11396283313944497,17967.42842566559,4,2,4_0,4_1_0,4_2_0,4_1_0 -23876,2,76.0,0.0,7,111,550.0,1200.0,0.0,72,75,0.0,0.0,760.1958251667618,1750.0,0.0,2176.3834810169387,44,0,0,0,0,0,0,0,0,0,,1,,5,122592,2,1,2,0,1,,140.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1040.25934217116,550.0,70771.87316710645,5,5,0,1,149.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02472733759452576,47181.24877807096,10,5,10,10_1,10_2,10_0_0 -23877,1,67.0,195.0,7,111,1900.0,0.0,0.0,74,77,0.0,0.0,2626.131032394268,1960.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,121229,2,1,2,0,1,,800.0,533.0,41,0.0,0.0,5.0,2.0,1.5,3,1,1115.75608644772,1900.0,21193.333279195554,5,5,2,3,85.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09248191278735916,14128.888852797036,3,2,3_1,3_1_1,3_2_1,3_0_0 -23878,2,58.0,0.0,5,111,260.0,61.0,0.0,0,90,0.0,0.0,359.36529916974195,321.0,0.0,110.63282695169438,31,2,1,2,2,1,2,2,2,2,10.0,2,,3,109862,1,1,0,1,2,,0.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,1328.05193798931,260.0,24313.052578420942,0,1,1,2,81.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.013202784757883659,24313.052578420942,7,4,7,7_0,7_2,7_0_0 -23879,2,68.0,0.0,2,111,1000.0,0.0,0.0,0,78,0.0,310.55175144583734,1382.1742275759307,1300.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,116398,2,2,5,0,1,,104.0,392.0,11,0.0,7.0,2.0,1.0,1.0,2,2,345.638204696623,1000.0,18601.695163290005,0,5,2,3,42.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,0,0,0,0.0698861038517349,18601.695163290005,4,2,4_0,4_1_0,4_2_0,4_0_1 -23880,2,33.0,0.0,6,111,772.0,858.0,0.0,63,47,0.0,0.0,1067.0385036886184,1630.0,0.0,1556.1141889271112,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,106013,1,1,3,0,1,,298.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1052.50402390585,772.0,52145.81465627148,1,1,1,2,96.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031258501008075874,28969.897031261935,8,4,8,8_1,8_2,8_0_0 -23881,2,74.0,0.0,1,111,1490.0,0.0,0.0,77,75,0.0,82.81380038555662,2059.4395990881367,1690.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,103799,1,2,3,0,1,,138.0,,41,0.0,4.0,5.0,2.0,1.5,4,4,976.075181843905,1490.0,40257.690440938735,5,5,0,1,85.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0419795567378453,26838.460293959157,7,4,7,7_1,7_2,7_1_0 -23882,2,47.0,0.0,9,111,445.0,1300.0,0.0,34,34,0.0,0.0,615.0675312712891,1745.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,133355,2,2,1,0,1,,536.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1131.83575041092,445.0,80707.0,1,1,0,1,157.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02162142069461137,44837.22222222222,10,5,10,10_1,10_2,10_0_0 -23883,2,44.0,0.0,5,111,1200.0,0.0,0.0,45,43,3733.962192545002,207.03450096389156,1658.6090730911167,3900.0,0.0,0.0,41,2,2,1,1,2,2,2,2,0,,1,,3,103476,2,2,1,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,1006.27842057366,1200.0,95928.95995937151,1,1,1,2,136.0,5,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04065508477994294,45680.45712351024,10,5,10,10_1,10_2,10_0_0 -23884,2,23.0,0.0,6,120,0.0,0.0,0.0,85,47,0.0,0.0,0.0,917.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,,4,115711,1,2,2,0,1,,148.0,316.0,42,1.0,0.0,3.0,3.0,1.8,2,2,796.565458254554,0.0,15991.868874310663,6,1,2,3,62.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05734164075551349,8884.371596839257,1,1,1_0,1_1_0,1_0_0,1_0_0 -23885,1,65.0,148.0,5,120,247.0,0.0,0.0,0,78,1941.6603401234008,0.0,341.39703421125483,1582.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,107960,2,2,2,0,1,,297.0,327.0,11,0.0,4.0,4.0,1.0,1.0,2,2,755.57584461924,247.0,10597.582091045939,0,5,2,3,77.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.14927933432444523,10597.582091045939,2,1,2_1,2_1_1,2_0_1,2_0_0 -23887,2,88.0,0.0,2,120,0.0,0.0,0.0,0,71,2240.377315527001,0.0,0.0,4383.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127680,2,2,3,0,1,,305.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,821.208455591588,0.0,15064.709307871848,0,5,0,1,70.0,0,0,5,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.29094487722439666,15064.709307871848,3,2,3_0,3_1_0,3_0_0,3_0_1 -23888,2,65.0,0.0,2,120,660.0,0.0,0.0,0,77,2240.377315527001,175.97932581930783,912.2349902001142,2350.0,34.40654008380383,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114827,2,2,2,0,1,,700.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,846.102510761819,660.0,13836.535704711328,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1698402006218816,13836.535704711328,3,2,3_0,3_1_0,3_0_0,3_0_1 -23889,2,41.0,0.0,9,120,1595.0,0.0,0.0,55,63,0.0,0.0,2204.5678929836095,1595.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,13.0,1,2010.0,6,127565,2,1,1,0,1,,530.0,,43,2.0,3.0,6.0,3.0,1.8,1,1,939.09972479139,1595.0,46896.10207800989,1,1,1,2,113.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034011355514084685,26053.390043338826,7,4,7,7_1,7_0,7_0_0 -23890,2,24.0,0.0,6,120,0.0,0.0,0.0,68,52,0.0,0.0,0.0,3349.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,4,102412,1,1,3,0,1,,125.0,450.0,43,2.0,0.0,4.0,2.0,1.5,1,1,976.028623816469,0.0,19126.35004044955,1,1,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.17509875082895243,12750.900026966367,2,1,2_0,2_1_0,2_0_0,2_0_0 -23891,2,69.0,0.0,1,120,550.0,0.0,0.0,71,71,2016.339583974301,248.44140115666985,760.1958251667618,2260.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117614,2,2,2,0,1,,629.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,778.685979461495,550.0,26104.35533321262,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08657559135829712,17402.90355547508,4,2,4_0,4_1_0,4_0_0,4_1_0 -23892,1,81.0,80.0,2,120,800.0,0.0,0.0,0,72,0.0,0.0,1105.7393820607444,900.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123738,2,2,2,0,1,,100.0,300.0,11,0.0,3.0,2.0,1.0,1.0,1,1,938.913549116129,800.0,12264.144076351276,0,5,2,3,50.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0733846564747599,12264.144076351276,2,1,2_1,2_1_1,2_0_1,2_0_1 -23893,1,41.0,459.0,9,120,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1970.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,125012,2,1,1,0,1,,303.0,590.0,31,0.0,2.0,4.0,4.0,2.1,1,1,776.033243239202,0.0,11170.528043097604,0,6,2,3,87.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.17635692712103127,5319.299068141716,1,1,1_1,1_1_1,1_0_1,1_0_0 -23894,2,71.0,0.0,2,120,560.0,0.0,0.0,0,86,2105.954676595381,0.0,774.0175674425211,2066.0,165.1513924022584,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,116285,2,2,3,0,1,,410.0,,11,0.0,11.0,5.0,1.0,1.0,5,5,839.311835053856,560.0,19017.621189117395,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10863608962735274,19017.621189117395,5,3,5,5_1,5_0,5_0_1 -23895,2,76.0,0.0,1,120,480.0,0.0,0.0,0,71,2688.452778632401,0.0,663.4436292364467,2370.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126665,1,3,4,0,1,,500.0,,11,0.0,5.0,7.0,1.0,1.0,3,3,929.596212769967,480.0,19869.0,0,5,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11928129246565,19869.0,5,3,5,5_1,5_0,5_1_0 -23896,2,49.0,0.0,7,120,1400.0,0.0,0.0,11,11,0.0,103.51725048194578,1935.0439186063027,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,121917,1,1,2,0,1,,334.0,,43,2.0,0.0,6.0,5.0,3.0,2,2,727.321270354766,1400.0,87954.82746162506,1,1,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017054208885287785,29318.275820541687,8,4,8,8_1,8_0,8_0_0 -23897,1,79.0,95.0,9,120,830.0,0.0,0.0,0,77,0.0,0.0,1147.2046088880224,875.0,77.41471518855863,0.0,71,2,2,2,2,2,1,2,2,0,,1,2008.0,6,103405,2,2,1,0,1,,300.0,393.0,11,0.0,1.0,3.0,1.0,1.0,2,2,767.979709267764,830.0,11938.432357580836,0,5,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.07329270492070762,11938.432357580836,2,1,2_1,2_1_1,2_0_1,2_0_0 -23898,2,24.0,0.0,1,120,0.0,0.0,0.0,42,46,0.0,0.0,0.0,2454.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,105123,2,1,2,0,1,,335.0,520.0,43,2.0,0.0,3.0,2.0,1.5,2,2,969.938899295354,0.0,32957.92306258739,1,1,2,3,100.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07445857541871896,21971.948708391592,6,3,6,6_1,6_0,6_1_0 -23899,2,89.0,0.0,1,120,250.0,0.0,0.0,0,71,0.0,621.1035028916747,345.54355689398267,2150.0,2236.4251054472493,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,111187,1,3,3,0,2,,340.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,833.769991104781,250.0,11585.446998410196,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18557764756897444,11585.446998410196,2,1,2_0,2_1_0,2_0_0,2_1_0 -23900,2,31.0,0.0,6,120,1300.0,0.0,0.0,67,63,0.0,0.0,1796.8264958487098,1500.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,133635,2,1,2,0,1,,607.0,435.0,43,2.0,0.0,3.0,3.0,1.8,3,2,781.372392054011,1300.0,29248.81419511488,1,1,2,3,78.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05128413035802761,16249.341219508266,4,2,4_0,4_1_0,4_0_0,4_0_0 -23901,2,35.0,0.0,9,120,1600.0,0.0,0.0,34,63,0.0,0.0,2211.478764121489,1670.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,2,36.0,1,2006.0,6,119742,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,764.277480358651,1600.0,37920.05449567326,1,1,1,2,118.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044040021097294296,18057.16880746346,4,2,4_0,4_1_0,4_0_0,4_0_0 -23902,1,33.0,222.0,6,120,0.0,0.0,0.0,64,55,0.0,0.0,0.0,1368.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,127511,2,2,2,0,1,,203.0,550.0,43,2.0,0.0,5.0,4.0,2.1,1,1,835.313412277524,0.0,33147.34445758893,1,1,2,3,90.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04127027435788458,15784.449741709013,3,2,3_1,3_1_1,3_0_1,3_0_0 -23903,2,44.0,0.0,8,120,1403.0,0.0,0.0,52,46,0.0,0.0,1939.1904412890306,1523.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,2001.0,6,121052,2,1,1,0,1,,263.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,727.321270354766,1403.0,56256.59138509615,1,1,1,2,119.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027072383208832,21637.15053272929,6,3,6,6_1,6_0,6_0_0 -23904,2,34.0,0.0,1,120,1700.0,0.0,0.0,54,38,0.0,0.0,2349.696186879082,1855.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,114670,2,1,1,0,2,,558.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,836.795115273723,1700.0,64744.43270099822,1,1,1,2,115.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02865111211286279,26976.846958749262,7,4,7,7_1,7_0,7_1_0 -23905,2,72.0,0.0,1,120,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1948.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,130106,2,3,3,0,1,,43.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,809.251197753866,0.0,12122.025206524599,0,5,0,1,90.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1606992203704957,12122.025206524599,2,1,2_0,2_1_0,2_0_0,2_1_0 -23906,2,41.0,0.0,2,120,1248.0,0.0,0.0,43,47,0.0,0.0,1724.9534360147613,1248.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,1,,2,129523,1,2,2,0,2,,498.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,661.856876379415,1248.0,57816.481936036296,1,1,0,1,72.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02158554028556582,27531.65806477919,7,4,7,7_1,7_0,7_0_1 -23907,2,39.0,0.0,1,120,560.0,0.0,0.0,45,52,2240.377315527001,983.4138795784849,774.0175674425211,3075.0,111.82125527236246,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,115066,1,2,3,0,1,,490.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,1,1,836.795115273723,560.0,49282.28438281165,1,1,1,2,280.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06239564660019043,18954.72476261987,5,3,5,5_1,5_0,5_1_0 -23908,1,34.0,395.0,9,120,1100.0,0.0,0.0,0,52,0.0,258.79312620486445,1520.3916503335236,1350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,105705,2,2,3,0,2,,800.0,425.0,32,1.0,0.0,5.0,3.0,1.6,2,2,753.832975165967,1100.0,9134.406818620875,0,4,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.1477928481626161,5709.004261638047,1,1,1_1,1_1_1,1_0_1,1_0_0 -23909,2,30.0,0.0,1,120,800.0,0.0,0.0,52,63,2987.1697540360015,248.44140115666985,1105.7393820607444,3040.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,109226,2,2,1,0,1,,480.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1019.52190453517,800.0,36645.5286193716,1,1,1,2,270.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08295691492339373,20358.627010762,5,3,5,5_1,5_0,5_1_0 -23910,2,64.0,0.0,5,120,560.0,0.0,0.0,77,78,1403.9697843969207,393.36555183139393,774.0175674425211,1940.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,126262,2,1,2,0,1,,370.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,781.89954075294,560.0,34796.58924741425,5,5,0,1,104.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05575259075554832,23197.726164942836,6,3,6,6_1,6_0,6_0_0 -23911,2,36.0,0.0,1,120,890.0,0.0,0.0,62,64,2091.018827825201,414.0690019277831,1230.1350625425782,2755.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,123708,2,2,1,0,1,,336.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,731.241304059195,890.0,47266.45433167475,1,1,1,2,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05828658059832059,22507.835396035596,6,3,6,6_1,6_0,6_1_0 -23912,2,24.0,0.0,1,212,2000.0,0.0,0.0,65,62,0.0,465.827627168756,2764.3484551518613,2505.0,94.61798523046055,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,101500,2,3,3,0,1,,210.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,796.364849369447,2000.0,39787.02051278749,1,1,1,2,120.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.062960230942523,22103.900284881936,6,3,6,6_1,6_0,6_1_0 -23913,2,68.0,0.0,1,212,1000.0,0.0,0.0,75,75,1493.5848770180007,517.5862524097289,1382.1742275759307,2550.0,86.01635020950958,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,130898,2,1,2,0,1,,142.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,682.720215751022,1000.0,59470.84624220905,5,5,0,1,120.0,1,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04287815225656153,39647.23082813937,9,5,9,9_1,9_0,9_1_0 -23914,2,70.0,0.0,1,212,1500.0,0.0,0.0,77,75,1493.5848770180007,465.827627168756,2073.261341363896,3050.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,115080,2,1,4,0,1,,125.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,792.73291000613,1500.0,35800.00457774256,5,5,0,1,80.0,1,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08519551983231405,23866.669718495043,6,3,6,6_1,6_0,6_1_0 -23915,2,66.0,0.0,1,212,2400.0,0.0,0.0,77,74,0.0,51.75862524097289,3317.2181461822333,2520.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,114252,2,1,1,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,1,783.833512070409,2400.0,69632.61169097906,5,5,0,1,155.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036189939437909484,46421.74112731937,10,5,10,10_1,10_0,10_1_0 -23916,2,57.0,0.0,1,212,980.0,0.0,0.0,0,67,0.0,0.0,1354.530743024412,1060.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,105084,2,1,1,0,1,,201.0,339.0,12,1.0,1.0,2.0,1.0,1.0,1,1,795.666453082674,980.0,32562.732839178694,0,1,2,3,80.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032552550341371646,32562.732839178694,8,4,8,8_1,8_0,8_1_0 -23917,2,70.0,0.0,1,212,1500.0,0.0,0.0,77,74,0.0,51.75862524097289,2073.261341363896,1550.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,128840,2,2,1,0,1,,400.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,760.365129044905,1500.0,66291.94808511471,5,5,0,1,180.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023381421798163136,44194.63205674314,10,5,10,10_1,10_0,10_1_0 -23918,2,90.0,0.0,1,212,570.0,0.0,0.0,0,77,0.0,0.0,787.8393097182804,2670.0,3612.6867087994024,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103872,2,1,3,0,1,,280.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,739.487535249257,570.0,31821.26287413021,0,5,0,1,100.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08390616081332947,31821.26287413021,8,4,8,8_1,8_0,8_1_0 -23919,0,77.0,0.0,1,212,210.0,0.0,0.0,0,77,2389.735803228801,0.0,290.25658779094545,1910.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,124541,1,2,4,0,2,,170.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,729.91868894263,210.0,12747.461328569887,0,5,0,1,80.0,1,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14983375519008374,12747.461328569887,2,1,2_0,2_1_0,2_0_0,2_1_0 -23920,2,26.0,0.0,1,212,470.0,0.0,0.0,0,37,0.0,0.0,649.6218869606873,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,1,118111,2,1,0,0,1,,210.0,285.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1068.3444201254,470.0,30960.32744844421,0,1,2,3,45.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015180717994105647,30960.32744844421,8,4,8,8_0,8_0,8_1_0 -23921,2,71.0,0.0,1,212,2600.0,0.0,0.0,75,77,0.0,41.40690019277831,3593.6529916974196,2640.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122933,2,1,1,0,1,,335.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,783.833512070409,2600.0,38740.45292772514,5,5,0,1,200.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0681458217570463,25826.968618483428,7,4,7,7_1,7_0,7_1_0 -23922,2,69.0,0.0,1,212,3194.0,0.0,0.0,74,74,0.0,755.6759285182042,4414.6644828775225,3980.0,96.33831223465073,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,130125,2,1,2,0,1,,527.0,,41,0.0,0.0,8.0,2.0,1.5,2,2,783.833512070409,3194.0,69410.08552579187,5,5,0,1,205.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05734037020486143,46273.390350527916,10,5,10,10_1,10_0,10_1_0 -23923,2,49.0,0.0,9,212,701.0,0.0,0.0,67,21,0.0,0.0,968.9041335307273,1551.0,1462.277953561663,0.0,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,106657,2,1,1,0,1,,339.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,658.002585785117,701.0,79280.71459439021,1,1,1,2,90.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01956339581366168,52853.80972959348,10,5,10,10_1,10_0,10_0_0 -23924,2,38.0,0.0,2,212,0.0,0.0,0.0,54,53,0.0,0.0,0.0,4348.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,35.0,1,,2,121413,2,1,2,0,1,,220.0,637.0,43,2.0,0.0,5.0,2.0,1.5,2,2,804.211689375085,0.0,36436.65828089685,1,1,2,3,110.0,1,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11933037235414055,24291.105520597903,7,4,7,7_1,7_0,7_0_1 -23925,2,34.0,0.0,1,212,910.0,0.0,0.0,0,46,0.0,0.0,1257.778547094097,962.0,89.45700421788997,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,1,102808,2,1,2,0,1,,245.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,742.350838540551,910.0,30926.972306383966,0,1,1,2,96.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03110553436882741,30926.972306383966,8,4,8,8_1,8_0,8_1_0 -23926,2,60.0,0.0,6,212,1080.0,0.0,0.0,0,72,0.0,403.71727687958855,1492.748165782005,1515.0,77.41471518855863,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,116377,2,1,3,0,1,,294.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,768.056915438857,1080.0,9355.664551683898,0,7,0,1,120.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.16193398038489096,9355.664551683898,1,1,1_0,1_1_0,1_0_0,1_0_0 -23927,2,87.0,0.0,1,212,300.0,0.0,0.0,0,78,0.0,0.0,414.65226827277917,2200.0,3268.621307961364,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,122992,2,1,2,0,1,,172.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,707.093663562855,300.0,22984.605216722768,0,5,0,1,70.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09571624046861416,22984.605216722768,6,3,6,6_1,6_0,6_1_0 -23928,2,63.0,0.0,1,212,1000.0,0.0,0.0,72,72,0.0,310.55175144583734,1382.1742275759307,1390.0,154.82943037711726,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,109254,2,1,1,0,1,,800.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,706.858972610993,1000.0,29624.388241622662,5,5,0,1,120.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.046920800141520946,19749.592161081775,5,3,5,5_1,5_0,5_1_0 -23929,2,56.0,0.0,5,212,840.0,0.0,0.0,68,52,0.0,517.5862524097289,1161.0263511637818,1400.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,111743,2,1,2,0,2,,250.0,,43,2.0,5.0,6.0,2.0,1.5,2,1,733.546758576012,840.0,53792.78612721749,1,1,0,1,130.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026025794549645813,35861.857418144995,9,5,9,9_1,9_0,9_0_0 -23930,2,44.0,0.0,7,212,600.0,0.0,0.0,52,62,1194.8679016144006,207.03450096389156,829.3045365455583,1630.0,51.60981012570575,0.0,42,0,0,0,0,0,0,0,0,1,10.0,1,,5,133590,2,2,3,0,1,,210.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,708.783832649968,600.0,38187.42645564323,1,1,1,2,89.0,1,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04268420659070423,18184.488788401537,4,2,4_0,4_1_0,4_0_0,4_0_0 -23931,2,48.0,0.0,8,212,1700.0,0.0,0.0,62,48,0.0,0.0,2349.696186879082,1800.0,172.03270041901916,0.0,50,2,2,2,2,2,2,2,1,2,25.0,1,2002.0,6,107495,2,1,2,0,1,,150.0,425.0,43,3.0,3.0,4.0,3.0,2.0,2,2,760.324439082139,1700.0,47463.619666565304,1,1,2,3,95.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.03792378273391505,23731.809833282652,6,3,6,6_1,6_0,6_0_0 -23932,2,65.0,0.0,5,212,720.0,0.0,0.0,71,77,2288.1720315915773,0.0,995.16544385467,2342.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126930,1,1,2,0,1,,303.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,711.515792125343,720.0,25666.948849150598,5,5,0,1,120.0,1,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09124575007977641,17111.299232767065,4,2,4_0,4_1_0,4_0_0,4_0_0 -23933,2,53.0,0.0,5,212,1200.0,0.0,0.0,56,62,0.0,134.5724256265295,1658.6090730911167,1360.0,51.60981012570575,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,3,121395,2,2,2,0,1,,260.0,510.0,43,2.0,3.0,5.0,2.0,1.5,1,1,780.562121229738,1200.0,43750.56568093653,1,1,2,3,120.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03108531235728899,29167.043787291022,8,4,8,8_1,8_0,8_0_0 -23934,2,40.0,0.0,9,212,1124.0,0.0,0.0,34,42,0.0,0.0,1553.563831795346,1204.0,137.62616033521533,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,122372,2,1,1,0,1,,370.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,736.188145032186,1124.0,46603.99627275784,4,1,1,2,151.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02583469436726809,22192.37917750373,6,3,6,6_1,6_0,6_0_0 -23935,2,79.0,0.0,2,212,250.0,0.0,0.0,86,86,2389.735803228801,0.0,345.54355689398267,1980.0,223.64251054472493,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,108940,2,2,2,0,1,,210.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,617.990696642554,250.0,24672.66495981203,5,5,0,1,160.0,1,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08025075536935775,16448.443306541354,4,2,4_0,4_1_0,4_0_0,4_0_1 -23936,2,39.0,0.0,1,212,809.0,0.0,0.0,0,21,0.0,517.5862524097289,1118.178950108928,1309.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,104773,2,1,1,0,1,,1200.0,,32,1.0,3.0,6.0,3.0,1.6,2,2,759.200080991425,809.0,36508.875799833164,0,1,1,2,160.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03585429491657976,22818.047374895727,6,3,6,6_1,6_0,6_1_0 -23937,2,32.0,0.0,9,212,1720.0,0.0,0.0,67,67,0.0,0.0,2377.3396714306004,1810.0,154.82943037711726,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,131364,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,675.094756357718,1720.0,37987.418897379626,1,1,1,2,102.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04764735411188608,18089.247093990296,4,2,4_0,4_1_0,4_0_0,4_0_0 -23938,2,60.0,0.0,9,212,0.0,0.0,0.0,71,71,0.0,0.0,0.0,1584.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,2007.0,6,128093,2,1,1,0,1,,192.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,768.14666119128,0.0,18195.126610143456,6,5,1,2,120.0,1,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08705627797703526,12130.084406762304,2,1,2_0,2_1_0,2_0_0,2_0_0 -23939,2,41.0,0.0,6,212,1466.0,0.0,0.0,67,52,0.0,124.22070057833493,2026.2674176263142,1666.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,128814,2,1,2,0,1,,369.0,,43,3.0,0.0,5.0,4.0,2.3,1,1,686.457752276462,1466.0,33268.27573052155,1,1,1,2,103.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050077738127905135,14464.467708922413,3,2,3_0,3_1_0,3_0_0,3_0_0 -23940,2,43.0,0.0,2,300,580.0,0.0,0.0,0,63,0.0,0.0,801.6610519940398,704.0,213.32054851958378,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,132239,2,1,1,0,1,,110.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1174.81313006538,580.0,6704.349447479601,0,1,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10500645968933768,6704.349447479601,1,1,1_0,1_1_0,1_0_0,1_0_1 -23941,2,76.0,0.0,1,300,610.0,0.0,0.0,0,71,0.0,0.0,843.1262788213177,674.0,110.10092826817227,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,129438,2,1,2,0,1,,110.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,961.265227444849,610.0,10230.29186811591,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06588277330587335,10230.29186811591,2,1,2_0,2_1_0,2_0_0,2_1_0 -23942,2,65.0,0.0,1,300,105.0,0.0,0.0,0,77,0.0,0.0,145.12829389547272,142.0,63.65209915503709,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,125428,2,1,2,0,1,,92.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1046.59695711237,105.0,9716.088025820409,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014614935519587348,9716.088025820409,1,1,1_0,1_1_0,1_0_0,1_1_0 -23943,0,60.0,0.0,1,300,200.0,0.0,0.0,0,63,0.0,517.5862524097289,276.4348455151861,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,105894,2,3,4,0,2,,190.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,1115.90218508709,200.0,11730.0,0,1,5,0,65.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.059676044330775786,11730.0,2,1,2_0,2_1_0,2_0_0,2_1_0 -23944,2,40.0,0.0,1,300,1440.0,0.0,0.0,52,63,0.0,41.40690019277831,1990.33088770934,1480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,124032,2,1,2,0,1,,224.0,,43,3.0,0.0,7.0,6.0,2.9,1,1,1114.95409153792,1440.0,49813.42784916403,1,1,1,2,112.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029710864397476663,17177.04408591863,4,2,4_0,4_1_0,4_0_0,4_1_0 -23945,2,73.0,0.0,1,400,400.0,0.0,0.0,0,77,298.71697540360015,0.0,552.8696910303722,672.0,123.8635443016938,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,129576,2,3,2,0,1,,200.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,1139.69241731468,400.0,18488.770311527132,0,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03634638695149078,18488.770311527132,4,2,4_0,4_1_0,4_0_0,4_1_0 -23946,2,59.0,0.0,1,400,876.0,0.0,0.0,62,67,0.0,517.5862524097289,1210.784623356515,1437.0,104.9399472556017,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,103208,1,1,3,0,2,,290.0,,43,2.0,9.0,5.0,3.0,1.8,1,1,1042.69383197824,876.0,32116.37776615064,1,1,1,2,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.044743526510469055,17842.43209230591,4,2,4_0,4_1_0,4_0_0,4_1_0 -23947,2,60.0,0.0,1,400,881.0,0.0,0.0,90,21,0.0,745.3242034700096,1217.6954944943948,1601.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100134,2,1,2,0,1,,186.0,,43,2.0,1.0,4.0,2.0,1.5,3,3,970.073097873654,881.0,17688.19391471821,1,1,1,2,62.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09051235008611141,11792.129276478807,2,1,2_0,2_1_0,2_0_0,2_1_0 -23948,2,79.0,0.0,1,400,348.0,0.0,0.0,0,78,3733.962192545002,0.0,480.99663119642383,2885.0,63.65209915503709,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113383,2,3,3,0,1,,170.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,998.807600914684,348.0,13707.740055178367,0,5,0,1,70.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2104650356942051,13707.740055178367,3,2,3_0,3_1_0,3_0_0,3_1_0 -23949,2,69.0,0.0,6,400,542.0,0.0,0.0,77,71,0.0,0.0,749.1384313461543,662.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,126758,1,1,2,0,1,,236.0,,41,0.0,1.0,5.0,2.0,1.5,5,5,929.92952177626,542.0,22383.359865454997,5,5,0,1,75.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02957554200885128,14922.239910303331,3,2,3_0,3_1_0,3_0_0,3_0_0 -23950,2,61.0,0.0,1,400,360.0,0.0,0.0,71,71,0.0,0.0,497.582721927335,431.0,122.14321729750361,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104511,1,3,4,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,941.546019571724,360.0,19935.57058555581,5,5,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021619647060028384,13290.380390370541,3,2,3_0,3_1_0,3_0_0,3_1_0 -23951,2,56.0,0.0,1,400,576.0,0.0,0.0,0,21,0.0,284.67243882535087,796.132355083736,889.0,65.37242615922729,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,123065,2,3,3,0,1,,20.0,207.0,12,1.0,1.0,4.0,1.0,1.0,2,2,1102.27958586302,576.0,7457.331240188383,0,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11921154785361827,7457.331240188383,1,1,1_0,1_1_0,1_0_0,1_1_0 -23952,2,79.0,0.0,1,400,0.0,0.0,0.0,0,72,2987.1697540360015,0.0,0.0,2593.0,46.448829113135176,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,110310,2,2,2,0,1,,151.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1046.59695711237,0.0,12276.652528099554,0,5,0,1,76.0,0,0,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.21121392774333092,12276.652528099554,2,1,2_0,2_1_0,2_0_0,2_1_0 -23953,2,33.0,0.0,2,400,690.0,0.0,0.0,62,62,2315.056559377901,0.0,953.7002170273921,2352.0,192.67662446930146,0.0,50,2,2,2,2,1,2,2,2,2,5.0,1,,2,127701,1,3,2,0,2,,320.0,412.0,43,2.0,2.0,5.0,2.0,1.5,3,1,1021.6835814425,690.0,34133.735816105895,1,1,2,3,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.06890543750239657,22755.82387740393,6,3,6,6_1,6_0,6_0_1 -23954,2,76.0,0.0,5,400,2400.0,0.0,0.0,0,72,0.0,0.0,3317.2181461822333,2432.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106217,2,2,2,0,1,,170.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1123.62113302009,2400.0,15005.54404208825,0,5,0,1,115.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.16207343053864712,15005.54404208825,3,2,3_0,3_1_0,3_0_0,3_0_0 -23955,2,62.0,0.0,2,400,510.0,0.0,0.0,71,75,0.0,124.22070057833493,704.9088560637246,662.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104232,2,2,2,0,1,,320.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1006.23246010002,510.0,38199.07589792607,5,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.017330262170974185,25466.05059861738,7,4,7,7_1,7_0,7_0_1 -23956,2,55.0,0.0,1,400,3800.0,0.0,0.0,64,56,0.0,517.5862524097289,5252.262064788536,4374.0,127.30419831007418,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107063,2,1,3,0,1,,245.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1072.58367482232,3800.0,27459.42453305063,1,1,0,1,180.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15928957268333788,18306.283022033753,4,2,4_0,4_1_0,4_0_0,4_1_0 -23957,2,56.0,0.0,6,400,468.0,0.0,0.0,62,63,2129.852034627669,0.0,646.8575385055356,2026.0,227.0831645531053,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,128706,2,1,1,0,1,,258.0,,43,2.0,4.0,5.0,2.0,1.5,3,2,1039.58822814731,468.0,36413.60363143411,1,1,0,1,88.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055638547079999844,24275.735754289406,7,4,7,7_1,7_0,7_0_0 -23958,2,54.0,0.0,8,400,552.0,0.0,0.0,52,48,2240.377315527001,0.0,762.9601736219137,2160.0,185.7953164525407,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,120397,2,1,1,0,1,,568.0,,43,2.0,2.0,6.0,5.0,2.5999999999999996,2,2,1002.4383900656,552.0,49563.52693284514,4,1,1,2,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043580433711399066,19062.89497417121,5,3,5,5_1,5_0,5_0_0 -23959,1,39.0,220.0,5,400,1250.0,0.0,0.0,0,62,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,115656,2,1,2,0,1,,220.0,363.0,32,1.0,0.0,3.0,3.0,1.8,3,2,1157.54488141001,1250.0,22425.645898549203,0,1,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05573975463872222,12458.692165860668,2,1,2_1,2_1_1,2_0_1,2_0_0 -23960,2,63.0,0.0,1,400,150.0,0.0,0.0,0,11,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128579,1,3,4,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,965.665906573062,150.0,11458.911483825468,0,5,0,1,50.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013090248599243362,11458.911483825468,2,1,2_0,2_1_0,2_0_0,2_1_0 -23961,2,81.0,0.0,1,400,480.0,0.0,0.0,0,71,2105.954676595381,0.0,663.4436292364467,1964.0,127.30419831007418,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,103813,2,1,1,0,1,,125.0,,11,0.0,2.0,5.0,1.0,1.0,6,6,1157.40996719737,480.0,14434.795513878425,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1360601193215172,14434.795513878425,3,2,3_0,3_1_0,3_0_0,3_1_0 -23962,2,49.0,0.0,1,400,0.0,0.0,0.0,0,11,0.0,0.0,0.0,2010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,117921,1,1,1,0,2,,176.0,480.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1092.7883493495,0.0,48113.37178066942,0,1,2,3,105.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04177632798555101,48113.37178066942,10,5,10,10_1,10_0,10_1_0 -23963,2,44.0,0.0,5,400,1060.0,0.0,0.0,63,54,679.5811190431904,0.0,1465.1046812304864,1643.0,220.20185653634454,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,3,131954,2,1,2,0,1,,285.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,943.803212100719,1060.0,45335.726119567975,1,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03624073419860462,19711.185269377384,5,3,5,5_1,5_0,5_0_0 -23964,2,39.0,0.0,7,400,480.0,0.0,0.0,0,64,1792.3018524216009,0.0,663.4436292364467,1750.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,112309,2,1,2,0,1,,118.0,380.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1101.96668550311,480.0,19612.496738385762,0,1,2,3,70.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08922882299706818,19612.496738385762,5,3,5,5_1,5_0,5_0_0 -23965,2,46.0,0.0,1,300,2600.0,0.0,0.0,56,62,0.0,0.0,3593.6529916974196,2671.0,122.14321729750361,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,132078,2,1,2,0,1,,330.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,946.792251287307,2600.0,37793.21441206069,1,1,0,1,97.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07067406256789902,16431.832353069865,4,2,4_0,4_1_0,4_0_0,4_1_0 -23966,2,82.0,0.0,7,300,750.0,0.0,0.0,71,71,0.0,0.0,1036.630670681948,2274.0,2621.7783543858523,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,113385,2,1,1,0,1,,178.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,995.972661257182,750.0,29820.45963618547,5,5,0,1,112.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07625636987971263,19880.306424123646,5,3,5,5_1,5_0,5_0_0 -23967,2,81.0,0.0,1,300,420.0,0.0,0.0,71,78,2987.1697540360015,0.0,580.5131755818909,2528.0,185.7953164525407,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125178,1,1,2,0,2,,90.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,806.023317471346,420.0,24580.617273504886,5,5,0,1,60.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10284526103927004,16387.07818233659,4,2,4_0,4_1_0,4_0_0,4_1_0 -23968,2,43.0,0.0,1,300,1200.0,0.0,0.0,46,48,0.0,776.3793786145933,1658.6090730911167,2004.0,92.89765822627035,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126912,2,1,3,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,1049.55351026646,1200.0,51568.238074225264,1,1,1,2,170.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038861129928765885,24556.303844869173,7,4,7,7_1,7_0,7_1_0 -23969,0,90.0,0.0,2,300,0.0,0.0,0.0,0,71,0.0,0.0,0.0,1699.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117037,2,2,2,0,1,,100.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1005.44037344609,0.0,13780.468262757513,0,5,0,1,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12329044032499553,13780.468262757513,3,2,3_0,3_1_0,3_0_0,3_0_1 -23970,2,26.0,0.0,1,300,1250.0,0.0,0.0,46,63,0.0,0.0,1727.717784469913,1287.0,63.65209915503709,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,129235,2,1,1,0,1,,170.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,999.593750445133,1250.0,34034.96048930524,1,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037814058882319326,22689.973659536827,6,3,6,6_1,6_0,6_1_0 -23971,2,60.0,0.0,5,300,1270.0,0.0,0.0,55,77,0.0,0.0,1755.3612690214318,1270.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,119291,2,1,2,0,1,,210.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1039.58822814731,1270.0,31941.15904834805,1,5,0,1,88.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03976061100593288,21294.106032232034,6,3,6,6_1,6_0,6_0_0 -23972,2,52.0,0.0,9,300,1025.0,0.0,0.0,52,62,0.0,0.0,1416.7285832653288,1079.0,92.89765822627035,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,107183,2,1,1,0,1,,300.0,,43,4.0,0.0,7.0,4.0,2.5,3,3,954.014926278047,1025.0,42850.74856477835,1,1,1,2,108.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025180423589773557,17140.29942591134,4,2,4_0,4_1_0,4_0_0,4_0_0 -23973,2,78.0,0.0,1,300,540.0,0.0,0.0,0,86,0.0,776.3793786145933,746.3740828910024,1290.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127574,1,3,4,0,2,,240.0,,21,2.0,4.0,3.0,3.0,2.0,5,4,999.030514324338,540.0,28106.477821113695,0,5,0,1,50.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04589689281632247,14053.238910556847,3,2,3_0,3_1_0,3_0_0,3_1_0 -23974,2,63.0,0.0,1,300,320.0,0.0,0.0,0,77,1792.3018524216009,0.0,442.2957528242978,1574.0,92.89765822627035,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127181,2,1,2,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1007.68383473886,320.0,16878.12181928778,0,5,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09325682186991227,16878.12181928778,4,2,4_0,4_1_0,4_0_0,4_1_0 -23975,1,49.0,170.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,3830.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,4.0,1,,1,126176,1,3,1,0,2,,322.0,580.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1771.99815974887,0.0,21326.67036101163,0,1,2,3,102.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.17958733994415826,14217.780240674421,3,2,3_1,3_1_1,3_3_1,3_1_0 -23976,2,74.0,0.0,2,111,1180.0,0.0,0.0,75,75,0.0,51.75862524097289,1630.965588539598,1240.0,17.203270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105837,2,1,2,0,1,,224.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1431.76828101535,1180.0,66700.35945326279,5,5,0,1,98.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018590604460968056,44466.90630217519,10,5,10,10_1,10_3,10_0_1 -23977,2,80.0,0.0,2,111,380.0,2700.0,0.0,77,74,0.0,0.0,525.2262064788536,3080.0,0.0,4896.862832288112,70,0,0,0,0,0,0,0,0,0,,1,,2,122596,2,2,3,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1404.01693863787,380.0,50245.43908970499,5,5,0,1,130.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061299096113005706,33496.95939313666,8,4,8,8_1,8_3,8_0_1 -23978,2,28.0,0.0,5,111,0.0,0.0,0.0,65,43,0.0,0.0,0.0,2394.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,107863,2,2,1,0,1,,161.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1473.10421691889,0.0,31290.400051163997,4,1,1,2,100.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07650908892457396,20860.266700776,5,3,5,5_1,5_3,5_0_0 -23979,2,54.0,0.0,1,111,210.0,1050.0,0.0,0,69,0.0,0.0,290.25658779094545,1260.0,0.0,1904.3355458898213,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,113704,2,1,2,0,1,,100.0,575.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1590.97497260088,210.0,19906.50479115099,0,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06329589313740833,19906.50479115099,5,3,5,5_1,5_3,5_1_0 -23980,2,36.0,0.0,2,111,900.0,0.0,0.0,52,42,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,119207,2,3,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1234.87204208339,900.0,46944.705787708604,1,1,1,2,90.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020449590297599737,22354.62180367076,6,3,6,6_1,6_3,6_0_1 -23981,1,31.0,425.0,6,111,0.0,0.0,1800.0,0,68,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,33,0,0,0,0,0,0,0,0,0,,1,,4,117264,2,2,5,0,1,,300.0,665.0,32,1.0,0.0,5.0,3.0,1.6,3,2,1779.60126443038,0.0,5863.406131220597,0,1,2,3,89.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.30698879793020417,3664.628832012873,1,1,1_1,1_1_1,1_3_1,1_0_0 -23982,2,60.0,0.0,5,111,1040.0,0.0,0.0,54,75,0.0,414.0690019277831,1437.4611966789678,1440.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,131348,2,1,3,0,1,,240.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1431.76828101535,1040.0,31779.21030830066,4,5,0,1,96.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04531264263743757,21186.14020553377,5,3,5,5_1,5_3,5_0_0 -23983,2,78.0,0.0,9,111,0.0,800.0,0.0,72,72,0.0,0.0,0.0,2320.0,0.0,1450.922320677959,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,109356,2,1,1,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1425.96373428697,0.0,26319.60492616192,5,5,0,1,80.0,8,7,5,0,1,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08814721978193144,17546.403284107946,4,2,4_0,4_1_0,4_3_0,4_0_0 -23984,2,50.0,0.0,2,111,350.0,480.0,0.0,0,48,0.0,0.0,483.76097965157567,830.0,0.0,870.5533924067755,12,0,0,0,0,0,0,0,0,0,,1,,2,113000,2,1,1,0,1,,68.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1474.62167137051,350.0,25393.18181313256,0,1,0,1,154.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03268593932449812,25393.18181313256,7,4,7,7_1,7_3,7_0_1 -23985,2,45.0,0.0,7,111,1400.0,0.0,0.0,0,21,0.0,0.0,1935.0439186063027,1446.0,79.13504219274881,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,118086,2,1,2,0,1,,230.0,,32,2.0,0.0,5.0,4.0,2.5,3,3,1324.38096427318,1400.0,32691.749898010807,0,1,1,2,100.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04423134290795442,13076.699959204323,2,1,2_0,2_1_0,2_3_0,2_0_0 -23986,1,51.0,172.0,6,111,720.0,600.0,0.0,0,52,0.0,0.0,995.16544385467,1320.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,103989,2,1,3,0,1,,120.0,390.0,32,1.0,0.0,3.0,2.0,1.3,3,3,1321.57007304363,720.0,18369.773336133592,0,1,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07185717405688083,14130.594873948916,3,2,3_1,3_1_1,3_3_1,3_0_0 -23987,2,50.0,0.0,7,111,490.0,720.0,0.0,78,52,0.0,0.0,677.265371512206,1210.0,0.0,1305.830088610163,50,0,0,0,0,0,0,0,0,1,1.0,1,,5,123094,2,1,2,0,1,,240.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1389.82758315519,490.0,37724.00078211175,7,1,0,1,106.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03207507090747827,25149.333854741166,7,4,7,7_1,7_3,7_0_0 -23988,2,50.0,0.0,6,111,2059.0,0.0,0.0,21,52,0.0,0.0,2845.896734578841,2129.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,116477,2,1,2,0,1,,579.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,1486.25913316715,2059.0,49953.39922362524,1,1,0,1,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04261972224290792,27751.888457569577,7,4,7,7_1,7_3,7_0_0 -23989,1,48.0,230.0,7,111,750.0,1500.0,0.0,0,46,0.0,0.0,1036.630670681948,2250.0,0.0,2720.4793512711735,42,0,0,0,0,0,0,0,0,2,30.0,1,,5,104753,2,1,2,0,1,,400.0,,32,2.0,0.0,6.0,4.0,2.3,2,2,1302.90215088531,750.0,23945.271549236542,0,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0939642716255493,10410.987630102845,2,1,2_1,2_1_1,2_3_1,2_0_0 -23990,2,56.0,0.0,5,111,1120.0,0.0,0.0,68,67,0.0,0.0,1548.0351348850422,3320.0,3784.719409218422,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,118380,2,1,3,0,1,,180.0,422.0,43,3.0,1.0,4.0,3.0,2.0,2,2,1530.6204979128,1120.0,40279.2077085625,1,1,2,3,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0824246599888865,20139.60385428125,5,3,5,5_1,5_3,5_0_0 -23991,2,45.0,0.0,7,111,590.0,1200.0,0.0,47,37,0.0,0.0,815.482794269799,1790.0,0.0,2176.3834810169387,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,108142,2,1,2,0,1,,490.0,,43,2.0,0.0,8.0,4.0,2.5,1,1,1367.85166904354,590.0,58464.706290438524,1,1,0,1,115.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0306167620360173,23385.88251617541,6,3,6,6_1,6_3,6_0_0 -23992,2,32.0,0.0,9,111,1300.0,0.0,0.0,0,63,0.0,0.0,1796.8264958487098,1335.0,60.21144514665671,0.0,60,2,1,1,2,1,2,2,2,2,20.0,1,2009.0,6,125440,2,1,1,0,1,,500.0,730.0,32,1.0,0.0,6.0,3.0,1.6,2,2,1667.8172224658,1300.0,22990.0,0,1,2,3,101.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.058068725532840364,14368.75,3,2,3_0,3_1_0,3_3_0,3_0_0 -23993,2,54.0,0.0,9,111,1305.0,650.0,0.0,85,31,0.0,0.0,1803.7373669865894,2124.0,0.0,1178.8743855508417,71,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,103285,2,1,1,0,1,,250.0,,42,1.0,0.0,7.0,6.0,2.8999999999999995,3,2,1487.16740558877,1305.0,277801.9396212784,6,1,0,1,150.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007645734953814956,95793.77228319946,10,5,10,10_1,10_3,10_0_0 -23994,2,34.0,0.0,9,111,0.0,0.0,1200.0,0,42,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,33,0,0,0,0,0,0,0,0,0,,1,2009.0,6,107305,2,1,1,0,1,,200.0,375.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1344.59309830332,0.0,17483.048051750637,0,1,2,3,65.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06863791693805017,17483.048051750637,4,2,4_0,4_1_0,4_3_0,4_0_0 -23995,2,41.0,0.0,1,111,658.0,993.0,0.0,65,64,0.0,155.27587572291867,909.4706417449623,1801.0,0.0,1800.9573305415167,42,0,0,0,0,0,0,0,0,2,5.0,1,,1,101483,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1334.59295499719,658.0,38510.643952569146,1,1,1,2,119.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04676629147562853,18338.40188217578,4,2,4_0,4_1_0,4_3_0,4_1_0 -23996,2,84.0,0.0,7,111,460.0,950.0,0.0,77,75,0.0,113.86897553014036,635.800144684928,1520.0,0.0,1722.9702558050765,41,0,0,0,0,0,0,0,0,0,,1,,5,107087,2,1,2,0,1,,156.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1355.77746177959,460.0,61997.5343446381,5,5,0,1,150.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024517104044016844,41331.68956309207,9,5,9,9_1,9_3,9_0_0 -23997,2,48.0,0.0,7,111,530.0,2100.0,0.0,42,46,0.0,310.55175144583734,732.5523406152432,2930.0,0.0,3808.6710917796427,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,108704,2,1,3,0,1,,360.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,1523.36644124721,530.0,89323.76562399724,1,1,0,1,150.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03280202059923951,44661.88281199862,10,5,10,10_1,10_3,10_0_0 -23998,1,33.0,95.0,9,111,650.0,1200.0,0.0,85,33,0.0,0.0,898.4132479243549,1850.0,0.0,2176.3834810169387,42,2,2,2,2,1,2,2,2,1,25.0,1,2005.0,6,122722,2,3,1,0,1,,370.0,1116.0,42,1.0,0.0,6.0,5.0,2.4,3,3,1378.32153640088,650.0,59749.7752084303,6,1,2,3,140.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.030962459583261784,24895.739670179293,7,4,7,7_1,7_3,7_0_0 -23999,2,84.0,0.0,8,111,220.0,300.0,0.0,0,77,0.0,0.0,304.0783300667047,520.0,0.0,544.0958702542347,33,0,0,0,0,0,0,0,0,0,,1,2002.0,6,130700,2,2,2,0,1,,820.0,310.0,11,0.0,1.0,2.0,1.0,1.0,2,2,1266.40314055252,220.0,18749.62017880035,0,5,2,3,50.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027733895142470613,18749.62017880035,5,3,5,5_1,5_3,5_0_0 -24000,2,63.0,0.0,2,111,500.0,0.0,0.0,77,43,2688.452778632401,207.03450096389156,691.0871137879653,2650.0,258.04905062852873,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,105788,2,2,2,0,1,,490.0,650.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1652.69206238751,500.0,36821.26469604642,5,5,2,3,90.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07196928247509479,24547.50979736428,7,4,7,7_1,7_3,7_0_1 -24001,2,50.0,0.0,1,111,1900.0,0.0,0.0,52,63,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,90.0,1,,1,109229,2,1,2,0,1,,175.0,,43,2.0,0.0,6.0,4.0,2.5,3,3,1297.31370026342,1900.0,44686.352394057525,1,1,0,1,90.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04251857442391439,17874.54095762301,4,2,4_0,4_1_0,4_3_0,4_1_0 -24002,2,52.0,0.0,6,111,1210.0,0.0,0.0,90,38,0.0,828.1380038555662,1672.430815366876,2050.0,68.81308016760767,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,110288,2,1,1,0,1,,323.0,,43,4.0,0.0,7.0,4.0,2.5,2,2,1333.95811899636,1210.0,152036.50258695634,1,1,0,1,248.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013483604036652415,60814.601034782536,10,5,10,10_1,10_3,10_0_0 -24003,2,44.0,0.0,8,111,800.0,1000.0,0.0,52,38,0.0,129.39656310243222,1105.7393820607444,1925.0,0.0,1813.6529008474488,33,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,112570,2,1,2,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1397.08419530877,800.0,99970.34925975476,1,1,1,2,135.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01925570946039448,43465.369243371635,10,5,10,10_1,10_3,10_0_0 -24004,2,50.0,0.0,9,111,860.0,1170.0,0.0,47,46,0.0,0.0,1188.6698357153002,2030.0,0.0,2121.973893991515,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,111013,2,1,1,0,1,,200.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,1410.73833709385,860.0,72975.5914249115,1,1,1,2,200.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027817520356635626,29190.2365699646,8,4,8,8_1,8_3,8_0_0 -24005,2,60.0,0.0,5,111,800.0,0.0,0.0,71,77,0.0,207.03450096389156,1105.7393820607444,1120.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,104883,2,1,2,0,1,,200.0,,41,1.0,1.0,7.0,3.0,2.0,2,2,1640.29353594856,800.0,69794.64426784554,5,5,0,1,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0160470765593684,34897.32213392277,9,5,9,9_1,9_3,9_0_0 -24006,2,30.0,0.0,1,111,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1788.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,,1,111156,2,1,1,0,1,,501.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,1325.22747554373,0.0,37349.10899376996,1,1,1,2,120.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047872627973487895,24899.40599584664,7,4,7,7_1,7_3,7_1_0 -24007,2,57.0,0.0,6,111,2000.0,0.0,0.0,21,37,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,25.0,1,,4,109709,2,1,3,0,1,,400.0,,43,2.0,3.0,4.0,2.0,1.5,3,3,1436.92281677874,2000.0,53081.95847832033,1,1,0,1,140.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037677584952274086,35387.97231888022,9,5,9,9_1,9_3,9_0_0 -24008,2,69.0,0.0,6,111,1340.0,0.0,0.0,0,77,0.0,0.0,1852.113464951747,1415.0,129.02452531426437,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,101393,2,2,3,0,1,,220.0,432.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1369.29872176685,1340.0,21338.35826963486,0,5,2,3,85.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06631250549455758,21338.35826963486,6,3,6,6_1,6_3,6_0_0 -24009,2,64.0,0.0,2,111,550.0,670.0,0.0,77,78,0.0,0.0,760.1958251667618,1220.0,0.0,1215.1474435677908,60,0,0,0,0,0,0,0,0,0,,1,,2,111762,2,2,3,0,1,,220.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1328.47508750632,550.0,26139.36982585496,6,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046672892580343475,17426.246550569973,4,2,4_0,4_1_0,4_3_0,4_0_1 -24010,2,58.0,0.0,6,111,892.0,0.0,0.0,48,54,0.0,0.0,1232.89941099773,992.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,130519,2,1,2,0,1,,195.0,,43,2.0,1.0,7.0,2.0,1.5,4,4,1522.51527626067,892.0,35692.568739848,4,1,0,1,160.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027792900175674623,23795.045826565332,6,3,6,6_1,6_3,6_0_0 -24011,2,57.0,0.0,9,111,900.0,0.0,0.0,46,62,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,120414,2,2,1,0,1,,180.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1485.31276295868,900.0,49986.53187538629,1,1,1,2,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018004849831223562,33324.35458359086,8,4,8,8_1,8_3,8_0_0 -24012,2,50.0,0.0,2,111,1860.0,0.0,0.0,33,37,5974.339508072003,258.79312620486445,2570.8440632912307,6110.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,114114,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,1438.62760381491,1860.0,157981.24641439004,1,1,1,2,200.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03867547660671867,56421.87371942502,10,5,10,10_1,10_3,10_0_1 -24014,2,57.0,0.0,9,111,2300.0,0.0,0.0,37,37,0.0,0.0,3179.0007234246405,2545.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,20.0,1,2010.0,6,103019,2,1,1,0,1,,40.0,,43,2.0,3.0,8.0,2.0,1.5,2,2,1485.45675174769,2300.0,128841.64017364121,1,1,1,2,200.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019752930780530868,85894.42678242747,10,5,10,10_1,10_3,10_0_0 -24015,2,70.0,0.0,2,111,420.0,0.0,0.0,75,74,2091.018827825201,0.0,580.5131755818909,1880.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105372,2,2,2,0,1,,130.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1375.86315378253,420.0,52215.473272042385,5,5,0,1,86.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03600465306912394,34810.31551469492,9,5,9,9_1,9_3,9_0_1 -24016,2,52.0,0.0,5,111,1990.0,0.0,0.0,37,48,0.0,0.0,2750.526712876102,2060.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,119660,2,1,3,0,1,,500.0,,43,2.0,2.0,9.0,2.0,1.5,2,2,1474.12931922998,1990.0,92356.4023116326,1,1,0,1,156.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022304896557675202,61570.934874421735,10,5,10,10_1,10_3,10_0_0 -24017,2,70.0,0.0,5,111,2800.0,0.0,0.0,75,78,0.0,0.0,3870.0878372126053,2950.0,258.04905062852873,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,133087,2,1,2,0,1,,240.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1436.92281677874,2800.0,35216.21271263686,5,5,0,1,160.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08376823550198038,23477.475141757906,6,3,6,6_1,6_3,6_0_0 -24019,2,37.0,0.0,2,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,797.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,125153,2,2,5,0,1,,585.0,780.0,32,1.0,0.0,6.0,4.0,2.1,4,2,1568.20995355853,0.0,16223.961536351751,0,1,2,3,150.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04912486991627938,7725.69596969131,1,1,1_0,1_1_0,1_3_0,1_0_1 -24020,2,51.0,0.0,7,111,840.0,0.0,0.0,43,65,0.0,134.5724256265295,1161.0263511637818,970.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,104222,1,2,2,0,1,,240.0,,43,3.0,0.0,7.0,5.0,2.8,3,2,1391.92439946345,840.0,56879.57837711374,1,1,1,2,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017053572260484484,20314.13513468348,5,3,5,5_1,5_3,5_0_0 -24021,2,65.0,0.0,1,111,980.0,0.0,0.0,11,78,0.0,207.03450096389156,1354.530743024412,1300.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,106565,2,1,1,0,1,,180.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1511.84590853435,980.0,27588.312729887075,1,5,0,1,176.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04712140291898602,18392.208486591382,4,2,4_0,4_1_0,4_3_0,4_1_0 -24022,2,66.0,0.0,1,111,540.0,0.0,0.0,56,78,1792.3018524216009,62.110350289167464,746.3740828910024,1880.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117703,2,1,2,0,1,,140.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1393.31090704328,540.0,22242.86939026781,1,5,0,1,110.0,8,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08452146919599227,14828.579593511873,3,2,3_0,3_1_0,3_3_0,3_1_0 -24023,1,33.0,481.0,7,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,2227.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,100328,2,1,3,0,1,,270.0,650.0,31,0.0,0.0,5.0,4.0,1.9,2,2,1498.46212233646,0.0,16192.353393523095,0,6,2,3,98.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.1375340536287205,8522.291259748998,1,1,1_1,1_1_1,1_3_1,1_0_0 -24024,2,24.0,0.0,1,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,1230.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,103577,2,1,1,0,1,,194.0,,43,2.0,0.0,3.0,2.0,1.5,2,1,1431.76828101535,0.0,40352.25008249926,1,1,1,2,92.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030481571597254006,26901.500054999506,7,4,7,7_1,7_3,7_1_0 -24025,2,44.0,0.0,5,111,1500.0,0.0,0.0,0,55,0.0,124.22070057833493,2073.261341363896,1720.0,172.03270041901916,0.0,20,2,2,1,1,1,2,2,2,2,20.0,1,,3,114479,1,3,3,0,2,,250.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1353.05317230368,1500.0,21221.80094578439,0,1,1,2,55.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.08104872929465817,21221.80094578439,5,3,5,5_1,5_3,5_0_0 -24026,2,60.0,0.0,6,111,1240.0,0.0,0.0,72,63,0.0,993.7656046266794,1713.8960421941538,2290.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,108446,2,1,3,0,1,,189.0,,42,1.0,2.0,4.0,2.0,1.5,3,3,1431.76828101535,1240.0,13141.176083670816,6,1,0,1,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1742614196339357,8760.784055780545,1,1,1_0,1_1_0,1_3_0,1_0_0 -24027,2,75.0,0.0,2,211,0.0,0.0,1456.0,77,78,0.0,0.0,743.8898155234365,1456.0,0.0,1664.5658478942314,50,1,2,2,1,2,2,2,2,0,,1,,2,100735,2,1,1,0,1,,72.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,1042.56466132655,0.0,23049.158315392076,5,5,0,1,73.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.0631693348658069,15366.105543594718,3,2,3_0,3_1_0,3_1_0,3_0_1 -24028,2,29.0,0.0,1,211,693.0,0.0,0.0,0,65,0.0,0.0,957.8467397101199,693.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,2,,1,118634,1,2,0,0,2,,186.0,340.0,12,1.0,0.0,2.0,1.0,1.0,2,1,1760.8957239017,693.0,15496.932951750367,0,1,2,3,37.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04471852605658504,15496.932951750367,3,2,3_0,3_0_0,3_1_0,3_1_0 -24029,2,80.0,0.0,1,211,837.0,3316.0,0.0,72,72,0.0,20.703450096389155,1156.879828481054,4173.0,0.0,6014.073019210141,70,0,0,0,0,0,0,0,0,0,,1,,1,104346,2,1,1,0,1,,270.0,,41,0.0,0.0,11.0,2.0,1.5,1,1,1153.69399484173,837.0,51934.130034977985,5,5,0,1,525.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08035178402313578,34622.75335665199,9,5,9,9_1,9_1,9_1_0 -24030,2,74.0,0.0,1,211,405.0,1080.0,0.0,72,72,0.0,0.0,559.7805621682519,1485.0,0.0,1958.7451329152448,71,0,0,0,0,0,0,0,0,0,,1,,1,115703,2,1,2,0,2,,530.0,,41,1.0,2.0,7.0,3.0,2.0,3,3,1283.81050544257,405.0,58113.010566368,5,5,0,1,120.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025553658045371005,29056.505283184,8,4,8,8_1,8_1,8_1_0 -24031,2,53.0,0.0,1,211,487.0,0.0,0.0,0,63,0.0,0.0,673.1188488294782,487.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,112474,2,2,0,0,1,,107.0,348.0,12,1.0,3.0,2.0,1.0,1.0,3,3,1632.37886222693,487.0,31481.8340739673,0,1,2,3,50.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015469238509287045,31481.8340739673,8,4,8,8_0,8_1,8_1_0 -24032,2,67.0,0.0,1,211,706.0,1407.0,0.0,0,77,0.0,0.0,975.815004668607,2113.0,0.0,2551.8096314923605,50,0,0,0,0,0,0,0,0,0,,1,,1,117647,2,1,4,0,1,,196.0,,11,0.0,2.0,6.0,1.0,1.0,4,4,1206.14716605017,706.0,19659.19205525498,0,5,0,1,128.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10748152793162152,19659.19205525498,5,3,5,5_1,5_1,5_1_0 -24033,1,57.0,239.0,2,211,116.0,1180.0,0.0,0,78,0.0,0.0,160.33221039880794,1296.0,0.0,2140.1104229999896,50,0,0,0,0,0,0,0,0,0,,2,,2,132797,2,2,0,0,1,,165.0,225.0,11,0.0,4.0,3.0,1.0,1.0,2,2,1385.53074211161,116.0,9902.114902985624,0,7,2,3,70.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1308811312227086,9902.114902985624,2,1,2_1,2_0_1,2_1_1,2_0_1 -24034,2,43.0,0.0,1,211,300.0,1450.0,0.0,43,46,0.0,0.0,414.65226827277917,1750.0,0.0,2629.7967062288008,50,2,2,2,2,1,1,2,2,0,,1,,1,104781,2,3,3,0,1,,232.0,650.0,43,2.0,0.0,6.0,3.0,1.8,5,5,1267.0986216171,300.0,42327.21248338932,1,1,2,3,120.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04134456056341441,23515.1180463274,6,3,6,6_1,6_1,6_1_0 -24035,2,53.0,0.0,1,211,276.0,1339.0,0.0,0,62,0.0,0.0,381.48008681095683,1615.0,0.0,2428.481234234734,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,102139,2,1,1,0,1,,209.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,1135.33932987359,276.0,41192.7254585824,0,1,0,1,84.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039205951585403506,27461.816972388264,7,4,7,7_1,7_1,7_1_0 -24036,2,55.0,0.0,5,211,1236.0,0.0,0.0,74,43,0.0,207.03450096389156,1708.3673452838502,1436.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,3,117765,2,1,2,0,1,,376.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,1065.40248616312,1236.0,69670.13971330397,5,1,0,1,100.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02061141266415153,46446.75980886931,10,5,10,10_1,10_1,10_0_0 -24037,2,63.0,0.0,5,211,600.0,1100.0,0.0,56,47,0.0,0.0,829.3045365455583,1700.0,0.0,1995.0181909321939,42,0,0,0,0,0,0,0,0,0,,2,,3,119275,2,1,0,0,1,,270.0,382.0,43,2.0,1.0,3.0,2.0,1.5,1,1,1286.81584960527,600.0,48136.52042626575,1,1,2,3,75.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03531622113409745,32091.0136175105,8,4,8,8_0,8_1,8_0_0 -24038,2,77.0,0.0,6,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1370.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,129012,2,1,0,0,1,,97.0,404.0,11,0.0,3.0,2.0,1.0,1.0,2,2,1395.35749306924,0.0,15572.164174288668,0,5,2,3,77.0,2,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08797749527082553,15572.164174288668,3,2,3_0,3_0_0,3_1_0,3_0_0 -24039,2,66.0,0.0,6,211,111.0,446.0,0.0,0,78,0.0,0.0,153.42133926092828,557.0,0.0,808.8891937779622,50,0,0,0,0,0,0,0,0,0,,2,,4,128373,2,1,0,0,1,,175.0,399.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1388.92671709096,111.0,18882.836740653544,0,5,2,3,70.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02949768658438986,18882.836740653544,5,3,5,5_0,5_1,5_0_0 -24040,2,66.0,0.0,5,211,308.0,1418.0,0.0,78,67,0.0,0.0,425.7096620933866,1726.0,0.0,2571.7598134016825,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,125937,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,3.0,2.0,1,1,1244.93614876367,308.0,35924.73408474486,6,5,0,1,90.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048044892856505005,17962.36704237243,4,2,4_0,4_1_0,4_1_0,4_0_0 -24041,2,49.0,0.0,7,211,1429.0,0.0,0.0,43,47,0.0,155.27587572291867,1975.1269712060048,1579.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,109858,2,1,2,0,1,,359.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,1236.24357668775,1429.0,59085.71550305108,1,1,0,1,129.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02672388726372389,29542.85775152554,8,4,8,8_1,8_1,8_0_0 -24042,2,42.0,0.0,7,211,881.0,881.0,0.0,52,48,0.0,310.55175144583734,1217.6954944943948,2062.0,0.0,1597.8282056466026,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,125081,2,1,2,0,1,,311.0,,43,2.0,0.0,5.0,4.0,2.5,5,5,1036.04893958928,881.0,56845.90757206546,1,1,1,2,130.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03627349950189349,22738.363028826185,6,3,6,6_1,6_1,6_0_0 -24043,2,46.0,0.0,2,211,246.0,0.0,0.0,78,45,1045.5094139126004,41.40690019277831,340.0148599836789,1036.0,86.01635020950958,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,100539,2,2,2,0,2,,170.0,,42,1.0,0.0,4.0,3.0,2.0,2,2,1131.92521992388,246.0,30221.992776881114,6,1,0,1,72.0,2,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03427967201396818,15110.996388440557,3,2,3_0,3_1_0,3_1_0,3_0_1 -24044,2,66.0,0.0,7,211,917.0,0.0,0.0,0,77,0.0,0.0,1267.4537666871283,917.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,113247,1,2,3,0,1,,106.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1072.84872480914,917.0,17325.719411528145,0,5,1,2,58.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05292709515945691,17325.719411528145,4,2,4_0,4_1_0,4_1_0,4_0_0 -24045,0,87.0,0.0,1,211,3639.0,0.0,0.0,0,74,0.0,0.0,5029.732014148812,3689.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129042,1,1,2,0,2,,407.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1357.58408725702,3639.0,44072.75087760264,0,5,5,0,133.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08370251292561626,44072.75087760264,10,5,10,10_1,10_1,10_1_0 -24046,1,57.0,252.0,1,211,1300.0,0.0,0.0,0,72,0.0,0.0,1796.8264958487098,1340.0,68.81308016760767,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,118554,2,1,1,0,1,,100.0,515.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1307.14436466461,1300.0,11946.41524022134,0,7,2,3,90.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.11216753922034044,11946.41524022134,2,1,2_1,2_1_1,2_1_1,2_1_0 -24047,2,36.0,0.0,6,211,1160.0,0.0,0.0,0,42,0.0,0.0,1603.3221039880796,1160.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,130500,2,2,2,0,1,,149.0,571.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1235.7240563899,1160.0,25936.090858823893,0,1,2,3,75.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04472532141848773,25936.090858823893,7,4,7,7_1,7_1,7_0_0 -24048,2,59.0,0.0,2,211,1100.0,0.0,0.0,0,13,0.0,0.0,1520.3916503335236,1200.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118194,2,1,3,0,1,,0.0,,22,2.0,1.0,5.0,2.0,1.5,1,1,1242.36244324801,1100.0,23474.945070964463,0,1,0,1,100.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.051118330474146594,15649.963380642976,3,2,3_0,3_1_0,3_1_0,3_0_1 -24049,2,50.0,0.0,9,211,933.0,0.0,0.0,54,62,0.0,0.0,1289.5685543283432,1018.0,146.2277953561663,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,113993,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,931.76967739186,933.0,44020.11533287799,1,1,1,2,92.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02312579129568228,17608.046133151198,4,2,4_0,4_1_0,4_1_0,4_0_0 -24050,1,34.0,255.0,2,211,253.0,1000.0,0.0,0,67,0.0,0.0,349.69007957671045,1253.0,0.0,1813.6529008474488,71,2,2,1,2,2,2,2,1,0,,2,,2,125293,2,1,0,0,1,,198.0,245.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1407.04308133487,253.0,6065.861552841339,0,4,2,3,80.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.20656587511679628,6065.861552841339,1,1,1_1,1_0_1,1_1_1,1_0_1 -24051,2,75.0,0.0,9,211,468.0,1012.0,0.0,77,72,0.0,0.0,646.8575385055356,1480.0,0.0,1835.4167356576183,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,111474,2,1,1,0,1,,249.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1032.76713122776,468.0,33580.89495365326,5,5,1,2,150.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044072678886093564,22387.263302435505,6,3,6,6_1,6_1,6_0_0 -24052,1,39.0,236.0,7,211,500.0,800.0,0.0,55,67,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,120915,2,1,2,0,1,,500.0,351.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1011.20323952654,500.0,27973.82081005963,4,1,2,3,81.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.046472021424134834,11655.75867085818,2,1,2_1,2_1_1,2_1_1,2_0_0 -24053,2,58.0,0.0,1,211,1910.0,0.0,0.0,56,62,0.0,0.0,2639.9527746700273,2060.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,110920,2,1,2,0,1,,20.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,1234.45563372274,1910.0,37805.67304907558,1,1,0,1,120.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05448917672556476,25203.782032717052,7,4,7,7_1,7_1,7_1_0 -24054,2,70.0,0.0,2,211,477.0,0.0,0.0,78,72,1389.0339356267407,0.0,659.2971065537189,1486.0,135.90583333102515,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101525,2,1,1,0,1,,39.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1122.69272212219,477.0,19485.71339521148,5,5,0,1,85.0,2,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07626100055259857,12990.475596807652,2,1,2_0,2_1_0,2_1_0,2_0_1 -24055,1,82.0,83.0,1,211,0.0,0.0,1134.0,0,71,0.0,0.0,579.3757217057534,1134.0,0.0,1296.440708456084,50,0,0,0,0,0,0,0,0,0,,1,,1,127269,1,3,2,0,2,,120.0,358.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1211.02640962699,0.0,12108.22209278769,0,5,2,3,60.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0936553683364853,12108.22209278769,2,1,2_1,2_1_1,2_1_1,2_1_0 -24056,2,59.0,0.0,1,211,690.0,1025.0,0.0,62,52,0.0,0.0,953.7002170273921,1715.0,0.0,1858.9942233686352,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,112269,2,1,1,0,1,,35.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1156.52173140594,690.0,47477.556918823335,1,1,0,1,107.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036122330450412396,31651.70461254889,8,4,8,8_1,8_1,8_1_0 -24057,2,61.0,0.0,6,211,830.0,0.0,0.0,77,78,1299.4188430056606,0.0,1147.2046088880224,1790.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,126615,2,1,2,0,1,,120.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1132.5633850308,830.0,24599.785971524252,7,5,0,1,80.0,2,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0727648607216353,16399.8573143495,4,2,4_0,4_1_0,4_1_0,4_0_0 -24058,1,22.0,307.0,2,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,2514.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,109456,2,3,0,0,1,,412.0,279.0,31,0.0,0.0,5.0,2.0,1.3,1,1,1276.66840759831,0.0,16138.0,0,6,2,3,82.0,2,3,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.15578138554963442,12413.846153846154,2,1,2_1,2_0_1,2_1_1,2_0_1 -24059,0,73.0,0.0,6,211,1286.0,0.0,0.0,77,78,0.0,0.0,1777.4760566626467,1346.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,119932,2,1,2,0,1,,223.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1122.69272212219,1286.0,33379.89737402839,5,5,0,1,88.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04032367100826591,22253.26491601893,6,3,6,6_1,6_1,6_0_0 -24060,2,48.0,0.0,1,211,0.0,0.0,640.0,0,68,0.0,0.0,326.984534296016,640.0,0.0,731.6772957776841,71,0,0,0,0,0,0,0,0,3,20.0,2,,1,101382,2,1,0,0,1,,88.0,221.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1421.56815922732,0.0,14783.0,0,1,2,3,60.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.043292971656632616,14783.0,3,2,3_0,3_0_0,3_1_0,3_1_0 -24061,2,38.0,0.0,1,211,800.0,1600.0,0.0,46,46,0.0,0.0,1105.7393820607444,2400.0,0.0,2901.844641355918,50,0,0,0,0,0,0,0,0,0,,1,,1,125526,2,1,4,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.4,4,4,1124.88602808924,800.0,28026.99057142262,1,1,0,1,180.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08563174108486449,11677.912738092758,2,1,2_0,2_1_0,2_1_0,2_1_0 -24063,2,79.0,0.0,1,111,960.0,0.0,0.0,0,72,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123603,2,1,2,0,1,,116.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1050.48999305539,960.0,15310.519970539226,0,5,0,1,60.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06270198542226188,15310.519970539226,3,2,3_0,3_1_0,3_3_0,3_1_0 -24064,2,61.0,0.0,1,111,400.0,650.0,0.0,42,46,0.0,0.0,552.8696910303722,1050.0,0.0,1178.8743855508417,42,0,0,0,0,0,0,0,0,2,25.0,1,,1,104968,2,1,1,0,1,,200.0,,43,2.0,4.0,7.0,2.0,1.5,3,2,1069.84285005888,400.0,57566.812702026014,1,1,0,1,135.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01823967579089273,38377.87513468401,9,5,9,9_1,9_3,9_1_0 -24065,1,56.0,250.0,9,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,525.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2006.0,6,115612,2,1,0,0,1,,87.0,486.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1577.14544626135,0.0,17626.83595139991,0,7,2,3,50.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02978413150536554,17626.83595139991,4,2,4_1,4_0_1,4_3_1,4_0_0 -24066,1,31.0,24.0,1,111,0.0,0.0,1500.0,85,42,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,10,2,2,2,2,1,2,2,2,4,75.0,1,,1,117581,2,1,1,0,1,,276.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1013.89113348218,0.0,51510.92558263071,7,1,1,2,90.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0.02912003585712687,21462.885659429463,6,3,6,6_1,6_3,6_1_0 -24068,1,22.0,45.0,2,111,0.0,0.0,0.0,54,52,0.0,0.0,0.0,505.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,106548,2,1,0,1,2,468.0,382.0,470.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1634.8132984862,0.0,25115.53876002961,2,1,2,3,100.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02010707414342581,16743.692506686406,4,2,4_1,4_0_1,4_3_1,4_0_1 -24069,1,23.0,270.0,2,111,170.0,72.0,0.0,0,54,0.0,0.0,234.9696186879082,242.0,0.0,130.5830088610163,50,0,0,0,0,0,0,0,0,0,,2,,2,129879,2,1,0,1,1,250.0,116.0,290.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1680.95538268605,170.0,7961.852668269768,0,4,2,3,36.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030394935711940307,7961.852668269768,1,1,1_1,1_0_1,1_3_1,1_0_1 -24070,2,49.0,0.0,1,111,300.0,500.0,0.0,0,63,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,106471,2,2,3,0,1,,180.0,300.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1197.70750432104,300.0,29874.52644061544,0,1,2,3,50.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026778667156121767,29874.52644061544,8,4,8,8_1,8_3,8_1_0 -24071,1,88.0,97.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,458.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101914,2,1,0,1,1,748.0,105.0,292.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1517.97427302979,0.0,14988.175956191775,0,5,2,3,68.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030557420818828545,14988.175956191775,3,2,3_1,3_0_1,3_3_1,3_0_1 -24072,2,87.0,0.0,1,111,0.0,0.0,3000.0,74,74,0.0,0.0,1532.740004512575,3000.0,0.0,3429.737323957894,50,0,0,0,0,0,0,0,0,0,,1,,1,131723,2,1,2,0,2,,333.0,,41,0.0,0.0,5.0,2.0,1.5,3,3,1006.70978525067,0.0,51416.0032047835,5,5,0,1,110.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05834759244220863,34277.335469855665,9,5,9,9_1,9_3,9_1_0 -24074,2,55.0,0.0,5,111,1200.0,0.0,0.0,0,54,0.0,0.0,1658.6090730911167,1300.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,113947,2,2,2,0,1,,340.0,,22,1.0,0.0,4.0,2.0,1.5,3,3,956.399173099607,1200.0,31427.060424879543,0,1,0,1,100.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04136562511493573,20951.373616586363,5,3,5,5_1,5_3,5_0_0 -24075,2,56.0,0.0,2,111,450.0,0.0,0.0,53,46,0.0,0.0,621.9784024091688,450.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,15.0,2,,2,120431,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1275.2853692786,450.0,39561.08091395552,4,1,1,2,72.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01137481559158457,26374.053942637012,7,4,7,7_0,7_3,7_0_1 -24076,2,59.0,0.0,2,111,550.0,1000.0,0.0,68,46,0.0,0.0,760.1958251667618,1550.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,130022,2,2,2,0,1,,250.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,1015.05929589625,550.0,47005.26688724428,1,1,0,1,105.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03297502817541964,31336.84459149619,8,4,8,8_1,8_3,8_0_1 -24077,2,72.0,0.0,2,111,207.0,0.0,0.0,0,74,0.0,0.0,286.1100651082176,207.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111221,2,1,0,1,1,,116.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1399.8594439119,207.0,37016.03372370252,0,5,0,1,70.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005592171261381023,37016.03372370252,9,5,9,9_0,9_3,9_0_1 -24078,2,59.0,0.0,2,111,240.0,0.0,0.0,0,52,0.0,0.0,331.72181461822333,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,106986,2,1,0,1,1,541.0,130.0,340.0,32,2.0,0.0,4.0,2.0,1.5,2,2,1194.25866287749,240.0,47165.393752553144,0,1,2,3,73.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005088476548274515,31443.59583503543,8,4,8,8_0,8_3,8_0_1 -24079,2,59.0,0.0,1,111,1731.0,2612.0,0.0,31,31,0.0,0.0,2392.5435879339357,4343.0,0.0,4737.261377013537,10,0,0,0,0,0,0,0,0,2,6.0,1,,1,115417,2,1,1,0,2,,400.0,,43,2.0,4.0,9.0,2.0,1.5,4,3,1063.8197088997,1731.0,134584.89294452436,1,1,0,1,250.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032269595085907425,89723.26196301624,10,5,10,10_1,10_3,10_1_0 -24080,2,30.0,0.0,2,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,417.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,180.0,2,,2,126015,2,2,0,1,1,612.0,0.0,358.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1631.25013403383,0.0,24954.707222039728,4,1,2,3,56.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016710274189540887,13863.726234466514,3,2,3_0,3_0_0,3_3_0,3_0_1 -24081,2,57.0,0.0,2,111,600.0,1400.0,0.0,56,75,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,1,,2,104182,2,1,1,0,1,,480.0,,42,1.0,3.0,8.0,3.0,2.0,1,1,1108.36749047166,600.0,68308.24287418726,1,7,1,2,155.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029279043287406423,34154.12143709363,9,5,9,9_1,9_3,9_0_1 -24082,1,49.0,128.0,2,111,266.0,162.0,0.0,0,56,0.0,0.0,367.65834453519756,428.0,0.0,293.8117699372867,70,1,2,2,1,1,2,2,2,0,,2,,2,115905,1,3,0,1,1,780.0,180.0,262.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1309.32652188538,266.0,10964.121311009194,0,1,2,3,56.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03903641594791919,10964.121311009194,2,1,2_1,2_0_1,2_3_1,2_0_1 -24083,2,88.0,0.0,1,111,398.0,53.0,0.0,0,78,2987.1697540360015,0.0,550.1053425752203,2451.0,0.0,96.12360374491479,50,0,0,0,0,0,0,0,0,0,,1,,1,105443,2,1,3,0,1,,180.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1102.52372145517,398.0,34506.82654736658,0,5,0,1,100.0,8,7,5,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07102942360218431,34506.82654736658,9,5,9,9_1,9_3,9_1_0 -24084,2,40.0,0.0,2,111,350.0,700.0,0.0,0,46,0.0,0.0,483.76097965157567,1080.0,51.60981012570575,1269.5570305932142,31,0,0,0,0,0,0,0,0,0,,1,,2,111215,2,1,2,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,5,4,1106.81453803049,350.0,43819.12917536992,0,1,1,2,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.024646770036841625,43819.12917536992,10,5,10,10_1,10_3,10_0_1 -24085,2,39.0,0.0,1,111,400.0,1200.0,0.0,54,37,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,3,80.0,1,,1,128154,2,1,2,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,923.40800364151,400.0,82220.5066133226,1,1,1,2,181.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01945986549954855,39152.62219682029,9,5,9,9_1,9_3,9_1_0 -24086,2,78.0,0.0,1,111,320.0,800.0,0.0,77,74,0.0,0.0,442.2957528242978,1120.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,1,105667,2,1,2,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,986.757085264145,320.0,34694.77184317303,5,5,0,1,160.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032281520831513554,23129.84789544869,6,3,6,6_1,6_3,6_1_0 -24087,2,37.0,0.0,5,111,270.0,600.0,0.0,0,67,0.0,0.0,373.1870414455012,870.0,0.0,1088.1917405084694,50,2,1,2,1,1,2,2,2,1,10.0,2,,3,124945,2,1,0,1,1,552.0,0.0,386.0,12,1.0,0.0,3.0,1.0,1.0,4,2,1285.68033361293,270.0,26320.684016211908,0,1,2,3,63.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.03305385222755358,26320.684016211908,7,4,7,7_0,7_3,7_0_0 -24088,2,74.0,0.0,2,111,1310.0,0.0,0.0,77,75,0.0,0.0,1810.6482381244691,1310.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103298,2,1,2,0,1,,380.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1011.2826538721,1310.0,48984.130757909435,5,5,0,1,90.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026743355036232323,32656.087171939624,8,4,8,8_1,8_3,8_0_1 -24089,2,36.0,0.0,2,111,240.0,700.0,0.0,0,46,0.0,0.0,331.72181461822333,940.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,119773,2,1,0,0,1,,150.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1399.8594439119,240.0,27067.669463147773,0,1,1,2,67.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034727777405431814,27067.669463147773,7,4,7,7_0,7_3,7_0_1 -24090,1,43.0,377.0,2,111,580.0,580.0,0.0,0,52,0.0,0.0,801.6610519940398,1160.0,0.0,1051.9186824915203,70,0,0,0,0,0,0,0,0,3,10.0,2,,2,101789,1,3,0,0,1,,156.0,400.0,32,1.0,0.0,2.0,2.0,1.5,2,2,1508.20533517475,580.0,8741.640393858,0,1,2,3,45.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1326982062560057,5827.760262572,1,1,1_1,1_0_1,1_3_1,1_0_1 -24091,1,77.0,270.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,3204.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121394,2,2,5,0,1,,247.0,440.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1080.17536385913,0.0,12996.835458694546,0,5,2,3,50.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.2465215482786317,12996.835458694546,2,1,2_1,2_1_1,2_3_1,2_1_0 -24092,2,49.0,0.0,2,111,0.0,0.0,660.0,0,45,0.0,0.0,337.2028009927665,660.0,0.0,754.5422112707369,12,0,0,0,0,0,0,0,0,2,30.0,2,,2,128658,1,2,0,1,2,,200.0,514.0,12,1.0,2.0,4.0,1.0,1.0,3,2,1482.78557864565,0.0,34849.69449041096,0,1,2,3,115.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018938473052657657,34849.69449041096,9,5,9,9_0,9_3,9_0_1 -24093,2,68.0,0.0,5,111,367.0,1709.0,0.0,75,74,0.0,0.0,507.2579415203665,2076.0,0.0,3099.5328075482903,50,0,0,0,0,0,0,0,0,0,,1,,3,127927,2,1,2,0,1,,227.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,1069.84285005888,367.0,96866.94332159936,5,5,0,1,130.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02143145978197801,64577.96221439957,10,5,10,10_1,10_3,10_0_0 -24094,1,64.0,131.0,2,111,407.0,101.0,0.0,0,77,0.0,0.0,562.5449106234038,508.0,0.0,183.17894298559233,50,2,2,2,2,1,2,2,2,0,,2,,2,102528,1,3,0,1,1,619.0,156.0,288.0,11,0.0,2.0,3.0,1.0,1.0,2,2,375.472572454205,407.0,12780.483065414704,0,5,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03974810634307713,12780.483065414704,2,1,2_1,2_0_1,2_3_1,2_0_1 -24095,2,51.0,0.0,8,111,2200.0,0.0,0.0,38,43,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,122319,2,1,1,0,1,,360.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,994.995314035053,2200.0,78634.51692574235,1,1,0,1,110.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02797753564223642,52423.01128382824,10,5,10,10_1,10_3,10_0_0 -24096,2,51.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1078.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,80.0,1,2004.0,6,111064,2,1,1,0,1,,204.0,660.0,12,1.0,3.0,4.0,1.0,1.0,2,2,1187.47207473101,0.0,38516.940790735265,0,1,2,3,85.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027987684843841454,38516.940790735265,9,5,9,9_1,9_3,9_0_0 -24098,2,60.0,0.0,8,111,517.0,1250.0,0.0,74,77,0.0,0.0,714.5840756567561,1767.0,0.0,2267.066126059311,43,0,0,0,0,0,0,0,0,0,,1,1999.0,6,122414,2,1,2,0,1,,235.0,,41,0.0,3.0,6.0,2.0,1.5,2,1,1006.19502459161,517.0,70725.27246046753,5,5,0,1,140.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02498399707102831,47150.18164031169,10,5,10,10_1,10_3,10_0_0 -24099,2,82.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1366.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124323,2,1,2,0,1,,162.0,,11,0.0,2.0,4.0,1.0,1.0,2,1,1148.12531790291,0.0,46009.3859438472,0,5,0,1,150.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02968959424207821,46009.3859438472,10,5,10,10_1,10_3,10_0_1 -24100,2,53.0,0.0,2,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,990.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,114421,1,2,0,1,2,612.0,168.0,370.0,43,2.0,2.0,2.0,2.0,1.5,1,1,392.91139834355,0.0,20630.94187156393,4,1,2,3,46.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04798617562703418,13753.961247709287,3,2,3_0,3_0_0,3_3_0,3_0_1 -24101,2,93.0,0.0,2,111,420.0,40.0,0.0,0,74,0.0,0.0,580.5131755818909,460.0,0.0,72.54611603389796,20,2,1,2,1,2,2,2,2,0,,2,,2,118447,1,1,0,1,2,,0.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,395.812753281795,420.0,30387.56069535991,0,5,0,1,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015137773137224557,30387.56069535991,8,4,8,8_0,8_3,8_0_1 -24102,2,54.0,0.0,2,111,350.0,0.0,0.0,63,48,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,103452,2,1,0,1,1,,230.0,,43,2.0,0.0,5.0,2.0,1.5,3,3,1250.47848836401,350.0,51755.193816824394,1,1,1,2,96.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006762606304571953,34503.4625445496,9,5,9,9_0,9_3,9_0_1 -24103,2,39.0,0.0,2,111,0.0,0.0,1500.0,0,35,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,20,0,0,0,0,0,0,0,0,2,60.0,1,,2,114076,2,3,1,0,1,,130.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1008.12191998506,0.0,31970.04413732805,0,1,1,2,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04691892177429334,31970.04413732805,8,4,8,8_1,8_3,8_0_1 -24104,2,56.0,0.0,2,111,300.0,100.0,0.0,54,63,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,130970,1,3,0,1,1,700.0,240.0,318.0,43,2.0,0.0,4.0,3.0,2.0,2,2,375.373695464163,300.0,56406.68155299731,1,1,2,3,72.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.007091358487809234,28203.340776498655,8,4,8,8_0,8_3,8_0_1 -24105,1,32.0,275.0,2,111,410.0,150.0,0.0,85,22,0.0,0.0,566.6914333061316,560.0,0.0,272.04793512711734,20,2,1,2,2,2,2,2,1,2,20.0,2,,2,118308,2,1,0,1,1,736.0,150.0,293.0,42,1.0,0.0,3.0,4.0,2.1,1,1,345.832158601675,410.0,20054.03373229799,6,1,2,3,60.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.027924556599208915,9549.539872522852,1,1,1_1,1_0_1,1_3_1,1_0_1 -24106,2,72.0,0.0,1,111,0.0,796.0,0.0,0,77,0.0,0.0,0.0,796.0,0.0,1443.6677090745693,50,0,0,0,0,0,0,0,0,0,,1,,1,133258,2,2,3,0,1,,150.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1045.31416879625,0.0,13194.0,0,5,0,1,70.0,8,7,5,0,1,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06033045323631954,13194.0,2,1,2_0,2_1_0,2_3_0,2_1_0 -24107,2,49.0,0.0,2,111,630.0,846.0,0.0,56,38,0.0,0.0,870.7697633728362,1476.0,0.0,1534.3503541169418,50,2,2,2,1,1,2,2,2,2,10.0,1,,2,125059,1,3,3,0,2,,340.0,436.0,43,2.0,1.0,4.0,4.0,2.3,2,2,910.879143555508,630.0,33157.91124084082,1,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.04451426355777203,14416.48314819166,3,2,3_0,3_1_0,3_3_0,3_0_1 -24108,2,41.0,0.0,5,111,0.0,0.0,720.0,0,54,0.0,0.0,367.85760108301804,720.0,0.0,823.1369577498947,70,0,0,0,0,0,0,0,0,2,10.0,2,,3,132815,2,2,0,0,1,,120.0,323.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1313.67451196547,0.0,22224.527641671342,0,1,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03239663904712146,22224.527641671342,6,3,6,6_0,6_3,6_0_0 -24109,2,37.0,0.0,2,111,0.0,0.0,3500.0,55,62,0.0,0.0,1788.1966719313377,3500.0,0.0,4001.36021128421,31,2,2,2,2,1,1,2,2,0,,1,,2,102082,2,3,4,0,1,,300.0,650.0,43,2.0,0.0,7.0,4.0,2.1,2,2,340.629394918312,0.0,36918.600544932626,4,1,2,3,140.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09480316015067378,17580.28597377744,4,2,4_0,4_1_0,4_3_0,4_0_1 -24110,1,24.0,258.0,2,111,0.0,0.0,0.0,64,63,0.0,0.0,0.0,1156.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111727,2,1,0,1,1,,201.0,279.0,43,2.0,0.0,3.0,3.0,1.8,1,1,440.449969247283,0.0,21072.460354903502,4,4,2,3,88.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.054858330756379955,11706.922419390834,2,1,2_1,2_0_1,2_3_1,2_0_1 -24111,1,50.0,150.0,1,111,0.0,0.0,720.0,0,42,0.0,0.0,367.85760108301804,720.0,0.0,823.1369577498947,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,113561,2,1,2,0,1,,120.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,302.413881356205,0.0,25348.256809805567,0,1,1,2,54.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.028404320084112433,25348.256809805567,7,4,7,7_1,7_3,7_1_0 -24112,1,53.0,84.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,936.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133036,2,1,2,0,1,,119.0,277.0,12,1.0,2.0,3.0,1.0,1.0,3,3,1090.13630965552,0.0,14095.910901154222,0,1,2,3,56.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06640223583729925,14095.910901154222,3,2,3_1,3_1_1,3_3_1,3_0_1 -24113,1,56.0,215.0,5,111,0.0,0.0,1450.0,0,78,0.0,22.77379510602807,740.8243355144114,1472.0,0.0,1657.7063732463157,50,2,2,2,1,2,2,2,2,0,,2,,3,113820,2,2,0,0,1,,240.0,347.0,21,1.0,1.0,3.0,2.0,1.5,2,2,1158.33707862428,0.0,12134.601910921463,0,7,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.1213059984007519,8089.734607280975,1,1,1_1,1_0_1,1_3_1,1_0_0 -24114,1,36.0,450.0,9,111,0.0,0.0,1300.0,0,68,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,50,0,0,0,0,0,0,0,0,0,,2,2007.0,6,126632,2,1,0,1,1,,272.0,399.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,4,4,1114.51721260447,0.0,21036.394058003472,0,4,2,3,72.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.061797663440584016,8090.920791539798,1,1,1_1,1_0_1,1_3_1,1_0_0 -24115,2,62.0,0.0,2,111,524.0,1514.0,0.0,77,75,0.0,51.75862524097289,724.2592952497876,2088.0,0.0,2745.8704918830376,50,0,0,0,0,0,0,0,0,0,,1,,2,107318,2,2,1,0,1,,184.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1016.46770809702,524.0,40655.74599044924,5,5,0,1,95.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.051358054049494214,27103.830660299496,7,4,7,7_1,7_3,7_0_1 -24116,2,61.0,0.0,6,111,1400.0,0.0,0.0,78,75,0.0,0.0,1935.0439186063027,1500.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,103454,2,1,1,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1036.55887837194,1400.0,43101.30259049622,5,5,0,1,87.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034801732426777005,28734.20172699748,8,4,8,8_1,8_3,8_0_0 -24117,2,41.0,0.0,1,111,400.0,400.0,0.0,0,38,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,107017,2,1,1,0,1,,430.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,1106.81453803049,400.0,25960.434158898926,0,1,1,2,90.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03081612561266698,25960.434158898926,7,4,7,7_1,7_3,7_1_0 -24118,2,71.0,0.0,2,112,300.0,0.0,0.0,86,86,1792.3018524216009,621.1035028916747,414.65226827277917,2200.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,119469,2,1,2,0,2,,500.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,851.252185152634,300.0,27455.455084972942,5,5,0,1,82.0,4,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08012979545198343,18303.636723315296,4,2,4_0,4_1_0,4_0_0,4_0_1 -24119,2,51.0,0.0,5,112,892.0,0.0,0.0,55,62,3584.6037048432017,0.0,1232.89941099773,3412.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,3,110720,1,3,2,0,2,,493.0,,43,2.0,1.0,4.0,2.0,1.5,3,3,961.859527799828,892.0,38869.99926399179,1,1,0,1,90.0,4,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0877797804117993,25913.332842661195,7,4,7,7_1,7_0,7_0_0 -24120,2,40.0,0.0,8,112,1151.0,0.0,0.0,68,62,0.0,0.0,1590.8825359398961,1151.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,133661,2,1,1,0,1,,427.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,1,875.955460753026,1151.0,43475.467038110946,1,1,1,2,91.0,4,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026474701214618906,16721.33347619652,4,2,4_0,4_1_0,4_0_0,4_0_0 -24121,2,53.0,0.0,1,112,700.0,0.0,0.0,35,35,0.0,155.27587572291867,967.5219593031513,882.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110497,2,1,3,0,1,,270.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,973.441215877368,700.0,11573.828400911458,1,1,0,1,140.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07620641756970763,7715.8856006076385,1,1,1_0,1_1_0,1_0_0,1_1_0 -24122,2,66.0,0.0,1,112,1220.0,0.0,0.0,0,78,0.0,0.0,1686.2525576426353,1260.0,68.81308016760767,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114224,2,2,5,0,1,,254.0,392.0,11,0.0,2.0,4.0,1.0,1.0,2,2,967.153375002244,1220.0,13547.870022370242,0,5,2,3,60.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09300354948191031,13547.870022370242,3,2,3_0,3_1_0,3_0_0,3_1_0 -24123,0,91.0,0.0,1,112,760.0,0.0,0.0,86,86,3070.8105071490095,0.0,1050.452412957707,2906.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133122,2,2,3,0,1,,481.0,,41,0.0,3.0,6.0,2.0,1.5,3,2,1061.41472484544,760.0,26482.0,5,5,5,0,150.0,4,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10973491428139868,17654.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0 -24124,2,60.0,0.0,1,112,720.0,0.0,0.0,55,74,2091.018827825201,207.03450096389156,995.16544385467,2410.0,154.82943037711726,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,116148,1,1,1,0,2,,200.0,,42,1.0,2.0,4.0,2.0,1.5,3,3,1044.46925600167,720.0,55097.35225485284,4,5,0,1,160.0,4,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0.043740758881707115,36731.5681699019,9,5,9,9_1,9_0,9_1_0 -24125,2,55.0,0.0,6,112,1500.0,0.0,0.0,37,37,1493.5848770180007,0.0,2073.261341363896,2590.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,4,114422,2,2,3,0,1,,320.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,913.223063531428,1500.0,40660.076387631525,1,1,0,1,100.0,4,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06369884737323951,27106.71759175435,7,4,7,7_1,7_0,7_0_0 -24126,2,63.0,0.0,1,112,2970.0,0.0,0.0,77,78,0.0,0.0,4105.057455900514,2970.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,106403,2,2,3,0,1,,360.0,,41,1.0,2.0,4.0,3.0,2.0,2,2,1154.99263659925,2970.0,44055.382513137345,5,5,0,1,120.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.06741514499651306,22027.691256568673,6,3,6,6_1,6_0,6_1_0 -24127,2,86.0,0.0,1,112,380.0,0.0,0.0,71,71,0.0,931.655254337512,525.2262064788536,1330.0,86.01635020950958,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,133514,2,1,2,0,1,,269.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,866.12445129761,380.0,25808.85087760072,5,5,0,1,90.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.051532708926389885,17205.900585067146,4,2,4_0,4_1_0,4_0_0,4_1_0 -24128,2,29.0,0.0,1,112,965.0,0.0,0.0,56,64,0.0,310.55175144583734,1333.798129610773,1295.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,131491,2,1,2,0,1,,156.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,938.863811241082,965.0,30878.972936282033,1,1,1,2,110.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04193792334583794,20585.981957521355,5,3,5,5_1,5_0,5_1_0 -24129,2,64.0,0.0,1,112,1200.0,0.0,0.0,75,77,0.0,517.5862524097289,1658.6090730911167,1800.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104777,2,2,1,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,946.610375454211,1200.0,53619.35853705152,5,5,0,1,120.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.033569965197479595,35746.23902470101,9,5,9,9_1,9_0,9_1_0 -24130,2,53.0,0.0,1,112,2000.0,0.0,0.0,54,11,2389.735803228801,0.0,2764.3484551518613,3690.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,123156,2,2,1,0,1,,255.0,,43,2.0,0.0,8.0,5.0,2.4,1,1,945.667851341583,2000.0,90522.01168452497,1,1,1,2,170.0,4,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04076356602480165,37717.504868552074,9,5,9,9_1,9_0,9_1_0 -24131,2,54.0,0.0,1,112,1000.0,0.0,0.0,52,62,2240.377315527001,0.0,1382.1742275759307,2620.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,127820,2,1,2,0,1,,400.0,,43,3.0,0.0,7.0,5.0,3.0,1,1,945.667851341583,1000.0,59530.64872007424,1,1,0,1,180.0,4,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04401094320876288,19843.54957335808,5,3,5,5_1,5_0,5_1_0 -24132,1,71.0,109.0,1,300,213.0,0.0,0.0,0,78,0.0,0.0,294.4031104736732,333.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,133695,1,2,4,0,1,,179.0,225.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1043.44024948949,213.0,9843.842756183745,0,5,2,3,75.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.03382825267000681,9843.842756183745,2,1,2_1,2_1_1,2_0_1,2_1_0 -24133,2,52.0,0.0,1,300,2700.0,0.0,0.0,48,31,0.0,0.0,3731.8704144550125,2740.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111051,2,2,1,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,950.323389961703,2700.0,114178.87303127014,1,1,0,1,250.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02399743426482758,45671.54921250806,10,5,10,10_1,10_0,10_1_0 -24134,2,42.0,0.0,1,300,780.0,0.0,0.0,47,42,4480.754631054002,0.0,1078.0958975092258,6436.0,232.24414556567586,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,127880,2,1,3,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,917.186363239406,780.0,65410.096933288194,1,1,1,2,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09839459505103747,27254.20705553675,7,4,7,7_1,7_0,7_1_0 -24135,2,41.0,0.0,1,300,2500.0,0.0,0.0,0,55,0.0,310.55175144583734,3455.435568939826,2800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,117075,2,1,4,0,1,,424.0,,22,1.0,2.0,3.0,3.0,2.0,2,2,932.12968921481,2500.0,42386.480138994404,0,1,0,1,57.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06605879966485059,21193.240069497202,5,3,5,5_1,5_0,5_1_0 -24136,2,83.0,0.0,2,300,1200.0,0.0,0.0,78,78,1493.5848770180007,0.0,1658.6090730911167,2320.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111389,2,1,1,0,1,,522.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,886.116795381961,1200.0,32632.20173778176,5,5,0,1,70.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07109541730106093,21754.801158521175,6,3,6,6_1,6_0,6_0_1 -24137,2,46.0,0.0,9,300,1530.0,0.0,0.0,0,52,0.0,0.0,2114.7265681911736,1530.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,110130,2,1,1,0,1,,247.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1005.23215208508,1530.0,9719.443138093156,0,1,1,2,95.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1574164258447597,9719.443138093156,1,1,1_0,1_1_0,1_0_0,1_0_0 -24138,1,44.0,184.0,9,300,1920.0,0.0,0.0,56,62,0.0,0.0,2653.7745169457867,1920.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,109431,2,1,1,0,1,,960.0,,43,2.0,1.0,6.0,5.0,2.4,2,2,861.660532290549,1920.0,29294.622761197512,1,1,1,2,105.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06554103856026286,12206.09281716563,2,1,2_1,2_1_1,2_0_1,2_0_0 -24139,1,35.0,140.0,5,300,0.0,0.0,0.0,85,65,0.0,0.0,0.0,871.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,3,104166,1,2,2,0,1,,157.0,426.0,42,1.0,0.0,4.0,3.0,1.8,2,2,987.609633709372,0.0,27965.838535107538,6,1,2,3,81.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.031145141559283867,15536.576963948632,3,2,3_1,3_1_1,3_0_1,3_0_0 -24140,2,38.0,0.0,7,300,1492.0,0.0,0.0,55,62,0.0,0.0,2062.2039475432885,1597.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,112605,2,1,2,0,1,,509.0,421.0,43,2.0,0.0,4.0,4.0,2.1,1,1,824.664043061846,1492.0,36025.446401789086,1,1,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04432977685241647,17154.974477042422,4,2,4_0,4_1_0,4_0_0,4_0_0 -24141,2,38.0,0.0,8,300,100.0,0.0,0.0,52,48,0.0,465.827627168756,138.21742275759306,550.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,133324,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,914.270533192337,100.0,48679.5304891995,1,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011298383416455265,23180.728804380713,6,3,6,6_1,6_0,6_0_0 -24142,2,68.0,0.0,2,300,1448.0,0.0,0.0,77,75,0.0,41.40690019277831,2001.3882815299476,1488.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,107408,2,1,4,0,1,,247.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,979.708107724436,1448.0,41103.590889921215,5,5,0,1,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03620121667678588,27402.393926614142,7,4,7,7_1,7_0,7_0_1 -24143,2,81.0,0.0,2,300,1120.0,0.0,0.0,77,78,1372.6045019795426,165.62760077111324,1548.0351348850422,2349.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101029,2,1,2,0,1,,78.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,991.002067298306,1120.0,32136.97497514572,5,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07309337614435345,21424.64998343048,6,3,6,6_1,6_0,6_0_1 -24144,2,67.0,0.0,1,300,1250.0,0.0,0.0,72,77,0.0,155.27587572291867,1727.717784469913,1520.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,114982,2,2,3,0,1,,762.0,370.0,41,0.0,2.0,3.0,2.0,1.5,2,2,963.052902426663,1250.0,34639.10680228035,5,5,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04388103910057911,23092.7378681869,6,3,6,6_1,6_0,6_1_0 -24145,2,58.0,0.0,1,300,2070.0,0.0,0.0,52,21,2240.377315527001,0.0,2861.1006510821762,3720.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107040,2,1,1,0,1,,160.0,,43,3.0,2.0,4.0,3.0,2.0,1,1,1152.16863872596,2070.0,78257.33234613338,1,1,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04753548183250591,39128.66617306669,9,5,9,9_1,9_0,9_1_0 -24146,1,41.0,300.0,7,300,408.0,1080.0,0.0,0,64,0.0,0.0,563.9270848509797,2553.0,0.0,1958.7451329152448,71,0,0,0,0,0,0,0,0,0,,1,,5,132508,2,1,1,0,1,,1000.0,425.0,32,1.0,1.0,4.0,3.0,1.6,4,3,844.622875982549,408.0,29081.015898786536,0,1,2,3,80.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08778923022790718,18175.634936741582,4,2,4_1,4_1_1,4_0_1,4_0_0 -24147,2,73.0,0.0,8,300,604.0,0.0,0.0,77,75,1892.372039181807,0.0,834.833233455862,2600.0,1254.1183860546498,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,132253,2,1,2,0,1,,340.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,936.679526696119,604.0,54211.10232358083,5,5,0,1,166.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047960655448045515,36140.73488238722,9,5,9,9_1,9_0,9_0_0 -24148,2,39.0,0.0,8,300,1200.0,0.0,0.0,46,64,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,125494,2,1,1,0,1,,477.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,821.950714598084,1200.0,42665.65020878969,1,1,1,2,107.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028125670044348326,17777.35425366237,4,2,4_0,4_1_0,4_0_0,4_0_0 -24149,2,70.0,0.0,5,300,1300.0,0.0,0.0,77,78,0.0,828.1380038555662,1796.8264958487098,2220.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,113104,2,1,2,0,1,,650.0,,41,0.0,3.0,5.0,2.0,1.5,4,2,883.629989196261,1300.0,37234.18809907572,5,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.059622624081203154,24822.79206605048,7,4,7,7_1,7_0,7_0_0 -24150,2,41.0,0.0,8,300,410.0,0.0,0.0,0,85,1045.5094139126004,93.1655254337512,566.6914333061316,1260.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119411,2,1,3,0,1,,221.0,,31,0.0,0.0,5.0,2.0,1.5,1,1,817.172049030202,410.0,7295.387197653786,0,7,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.17271187475905583,4863.591465102524,1,1,1_0,1_1_0,1_0_0,1_0_0 -24151,2,61.0,0.0,2,300,1600.0,0.0,0.0,71,71,0.0,0.0,2211.478764121489,1635.0,60.21144514665671,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,102744,2,1,1,0,1,,300.0,400.0,41,0.0,3.0,6.0,2.0,1.5,1,1,1067.85180462613,1600.0,38323.10838561751,6,5,2,3,125.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04266355389412014,25548.738923745008,7,4,7,7_1,7_0,7_0_1 -24152,2,30.0,0.0,2,300,0.0,0.0,0.0,69,47,0.0,0.0,0.0,1293.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,110535,2,1,1,0,1,,87.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,819.112251263629,0.0,32216.233366583707,1,1,1,2,91.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04013504574812164,21477.488911055803,6,3,6,6_1,6_0,6_0_1 -24153,2,40.0,0.0,1,300,600.0,0.0,0.0,55,22,3733.962192545002,62.110350289167464,829.3045365455583,3160.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,124146,1,1,3,0,2,,160.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1086.06488361462,600.0,50458.05007529649,1,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06262628054957457,28032.25004183138,7,4,7,7_1,7_0,7_1_0 -24154,2,42.0,0.0,1,300,879.0,0.0,0.0,48,37,2165.698071676101,0.0,1214.931146039243,2414.0,146.2277953561663,0.0,31,1,2,2,1,1,2,2,2,0,,1,,1,125975,1,2,1,0,1,,332.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,950.323389961703,879.0,67212.00996110622,4,1,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03591620011657019,32005.719029098196,8,4,8,8_1,8_0,8_1_0 -24155,2,29.0,0.0,9,300,1000.0,0.0,0.0,54,38,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,111940,2,1,1,0,1,,200.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1080.31240610785,1000.0,72256.79001672454,1,1,1,2,101.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013839529818146368,40142.66112040252,9,5,9,9_1,9_0,9_0_0 -24156,2,71.0,0.0,5,300,1040.0,0.0,0.0,71,78,522.7547069563002,0.0,1437.4611966789678,4327.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,120273,2,2,1,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,982.109399965579,1040.0,27112.31313958068,5,5,0,1,113.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15959538301743448,18074.87542638712,4,2,4_0,4_1_0,4_0_0,4_0_0 -24157,2,49.0,0.0,1,300,1850.0,0.0,0.0,0,63,0.0,175.97932581930783,2557.0223210154713,2095.0,129.02452531426437,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,121899,2,1,3,0,1,,120.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1034.34687519443,1850.0,29148.188143988176,0,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07187410722241047,29148.188143988176,8,4,8,8_1,8_0,8_1_0 -24158,2,73.0,0.0,9,300,800.0,0.0,0.0,0,77,0.0,0.0,1105.7393820607444,900.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,7,2004.0,6,100974,2,1,0,0,1,,70.0,,11,0.0,1.0,3.0,1.0,1.0,5,4,889.707206656423,800.0,13053.569558266565,0,5,0,1,37.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06894665830543248,13053.569558266565,2,1,2_0,2_1_0,2_0_0,2_0_0 -24159,2,36.0,0.0,1,300,1600.0,0.0,0.0,68,62,0.0,0.0,2211.478764121489,1625.0,43.00817510475479,0.0,50,0,0,0,0,0,0,0,0,2,13.0,1,,1,113756,2,2,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,914.851475317033,1600.0,28531.97847084145,1,1,1,2,64.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.056953638937471,13586.656414686406,3,2,3_0,3_1_0,3_0_0,3_1_0 -24160,2,51.0,0.0,1,300,1500.0,0.0,0.0,0,37,0.0,0.0,2073.261341363896,1525.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111515,2,1,1,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,921.923969501811,1500.0,12292.417260211978,0,4,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1240602208433089,12292.417260211978,2,1,2_0,2_1_0,2_0_0,2_1_0 -24161,2,72.0,0.0,2,300,320.0,0.0,0.0,0,78,0.0,207.03450096389156,442.2957528242978,586.0,113.54158227655265,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114492,2,1,3,0,2,,141.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,940.151357471821,320.0,12880.902726988972,0,5,0,1,49.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04549370586986669,12880.902726988972,2,1,2_0,2_1_0,2_0_0,2_0_1 -24162,2,69.0,0.0,2,300,500.0,0.0,0.0,78,75,3733.962192545002,0.0,691.0871137879653,3100.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,129128,2,2,2,0,2,,340.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,883.629989196261,500.0,37396.73789264371,5,5,0,1,104.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08289493080651292,24931.158595095807,7,4,7,7_1,7_0,7_0_1 -24163,2,60.0,0.0,1,300,700.0,0.0,0.0,11,75,0.0,414.0690019277831,967.5219593031513,1220.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,116597,2,1,1,0,1,,105.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,944.295879584358,700.0,37774.73768685658,1,5,0,1,138.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03229671666057629,25183.158457904385,7,4,7,7_1,7_0,7_1_0 -24164,2,80.0,0.0,5,300,1400.0,0.0,0.0,0,72,0.0,0.0,1935.0439186063027,1435.0,60.21144514665671,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,110881,2,1,2,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,953.848293182777,1400.0,12296.867455463018,0,5,0,1,104.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11669638671778035,12296.867455463018,2,1,2_0,2_1_0,2_0_0,2_0_0 -24165,2,64.0,0.0,9,111,1130.0,0.0,0.0,78,77,0.0,0.0,1561.8568771608016,1210.0,137.62616033521533,0.0,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,122332,2,1,1,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1046.20837052482,1130.0,55424.42849940853,5,5,0,1,80.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021831528673550735,36949.618999605686,9,5,9,9_1,9_2,9_0_0 -24166,2,35.0,0.0,9,111,500.0,0.0,0.0,0,56,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,2006.0,6,131474,2,1,0,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1381.13466547579,500.0,21048.83585877756,0,1,1,2,35.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023754282818994735,21048.83585877756,5,3,5,5_0,5_2,5_0_0 -24168,2,66.0,0.0,1,111,1400.0,0.0,0.0,0,75,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120244,2,1,1,0,1,,250.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1066.14108033783,1400.0,33664.50810550877,0,5,0,1,96.0,3,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04158682478330666,33664.50810550877,9,5,9,9_1,9_2,9_1_0 -24169,2,73.0,0.0,1,111,200.0,1000.0,0.0,0,78,0.0,0.0,276.4348455151861,1200.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,1,,1,116722,2,2,1,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1046.20764257772,200.0,12430.045561775942,0,5,0,1,40.0,3,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09654027364872748,12430.045561775942,2,1,2_0,2_1_0,2_2_0,2_1_0 -24170,2,47.0,0.0,5,111,150.0,150.0,0.0,0,69,0.0,0.0,207.32613413638958,350.0,86.01635020950958,272.04793512711734,50,2,2,2,2,1,2,2,2,1,10.0,2,,3,114350,2,3,0,1,1,274.0,100.0,233.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1222.94960812162,150.0,15042.27878532432,0,1,2,3,50.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.023267751182850703,15042.27878532432,3,2,3_0,3_0_0,3_2_0,3_0_0 -24171,2,71.0,0.0,2,111,180.0,0.0,0.0,0,77,0.0,0.0,248.7913609636675,180.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128401,2,1,0,1,1,32.0,180.0,276.0,11,0.0,4.0,3.0,1.0,1.0,2,2,1328.18466213867,180.0,17219.035567260024,0,5,2,3,70.0,3,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010453547139553442,17219.035567260024,4,2,4_0,4_0_0,4_2_0,4_0_1 -24172,2,76.0,0.0,7,111,420.0,910.0,0.0,77,78,0.0,0.0,580.5131755818909,1330.0,0.0,1650.4241397711785,71,0,0,0,0,0,0,0,0,0,,1,,5,104583,2,2,1,0,1,,340.0,678.0,41,0.0,5.0,4.0,2.0,1.5,3,3,1065.13451785107,420.0,38854.229461606825,5,5,2,3,74.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03423050768035994,25902.819641071215,7,4,7,7_1,7_2,7_0_0 -24173,1,58.0,346.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1527.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,122445,2,1,1,0,1,,601.0,510.0,32,1.0,4.0,3.0,2.0,1.5,5,4,1054.51880772021,0.0,11405.146368381182,0,1,2,3,54.0,3,4,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.13388692706595562,7603.430912254121,1,1,1_1,1_1_1,1_2_1,1_1_0 -24174,2,59.0,0.0,5,111,350.0,900.0,0.0,52,90,0.0,0.0,483.76097965157567,1250.0,0.0,1632.287610762704,41,0,0,0,0,0,0,0,0,2,25.0,1,,3,106007,2,1,1,0,1,,250.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,1000.57015139908,350.0,80743.84606210313,1,1,0,1,97.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015481055968507842,53829.23070806875,10,5,10,10_1,10_2,10_0_0 -24175,2,65.0,0.0,5,111,750.0,670.0,0.0,0,21,0.0,0.0,1036.630670681948,1420.0,0.0,1215.1474435677908,60,0,0,0,0,0,0,0,0,2,2.0,1,,3,132450,2,1,1,0,1,,280.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1098.32663979464,750.0,51146.09832980445,0,1,0,1,100.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027763603605566154,51146.09832980445,10,5,10,10_1,10_2,10_0_0 -24176,2,76.0,0.0,5,111,0.0,0.0,883.0,78,78,0.0,0.0,451.13647466153463,958.0,129.02452531426437,1009.4860190182735,70,1,2,2,1,2,2,2,2,0,,1,,3,103391,2,2,2,0,1,,322.0,560.0,41,0.0,1.0,4.0,2.0,1.5,2,2,1064.58381933652,0.0,21534.507895855262,5,5,2,3,70.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04448673750210869,14356.338597236841,3,2,3_0,3_1_0,3_2_0,3_0_0 -24177,2,52.0,0.0,7,111,800.0,0.0,0.0,55,63,0.0,414.0690019277831,1105.7393820607444,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,131038,2,1,1,0,1,,200.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1034.56614249863,800.0,37062.24573119466,1,1,1,2,98.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03237796243388405,24708.16382079644,7,4,7,7_1,7_2,7_0_0 -24178,2,89.0,0.0,5,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,446.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,117916,2,2,3,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1065.75961586978,0.0,50806.46811308863,5,5,0,1,90.0,3,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00877840984748756,33870.97874205909,9,5,9,9_1,9_2,9_0_0 -24179,2,31.0,0.0,1,111,300.0,0.0,0.0,42,52,0.0,0.0,414.65226827277917,320.0,34.40654008380383,0.0,71,2,1,2,2,2,2,2,1,2,7.0,1,,1,126009,2,1,3,0,1,,0.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1196.75965877349,300.0,37150.714905303335,1,1,1,2,180.0,3,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.008613562371967151,20639.286058501853,5,3,5,5_1,5_2,5_1_0 -24180,2,75.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1492.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123782,2,2,2,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1131.70714689105,0.0,8082.7633271037585,0,5,0,1,90.0,3,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.184590336203079,8082.7633271037585,1,1,1_0,1_1_0,1_2_0,1_0_1 -24181,2,63.0,0.0,9,111,1200.0,0.0,0.0,77,74,0.0,72.46207533736204,1658.6090730911167,1300.0,51.60981012570575,0.0,71,2,2,1,2,2,2,2,1,0,,1,2010.0,6,111178,2,1,1,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1037.14255010204,1200.0,61555.43612941111,6,5,1,2,129.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.021119174548076373,41036.9574196074,9,5,9,9_1,9_2,9_0_0 -24182,1,36.0,409.0,2,111,1000.0,0.0,0.0,54,22,0.0,0.0,1382.1742275759307,1167.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,2,109772,2,2,5,0,1,,300.0,728.0,43,2.0,0.0,5.0,5.0,2.4,2,2,1117.92051101004,1000.0,12508.916677673315,1,1,2,3,83.0,3,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.09329345058976478,5212.048615697215,1,1,1_1,1_1_1,1_2_1,1_0_1 -24183,2,42.0,0.0,8,111,1200.0,0.0,0.0,54,21,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,105944,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,984.747695965174,1200.0,60847.28568424234,1,1,1,2,101.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020707579406887215,28974.897944877306,8,4,8,8_1,8_2,8_0_0 -24184,2,43.0,0.0,8,111,600.0,1300.0,0.0,54,37,0.0,0.0,829.3045365455583,1900.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,2,55.0,1,2001.0,6,127585,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,984.747695965174,600.0,59802.08998352461,1,1,1,2,110.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03177146485220579,28477.18570644029,8,4,8,8_1,8_2,8_0_0 -24185,2,55.0,0.0,5,111,1200.0,0.0,0.0,52,67,0.0,207.03450096389156,1658.6090730911167,1430.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,123198,2,1,1,0,1,,600.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,988.290024464288,1200.0,26501.993343716145,1,1,0,1,90.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05395820538680595,10600.797337486458,2,1,2_0,2_1_0,2_2_0,2_0_0 -24186,2,73.0,0.0,9,111,850.0,0.0,0.0,0,77,0.0,0.0,1174.848093439541,850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,100423,2,1,1,0,1,,170.0,540.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1229.97440854776,850.0,19110.800662688336,0,5,2,3,80.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044477466695549195,19110.800662688336,5,3,5,5_1,5_2,5_0_0 -24187,2,40.0,0.0,6,111,1400.0,0.0,0.0,52,37,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128031,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,1005.29629816051,1400.0,22919.973068538904,1,4,0,1,116.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06108209620550164,9549.988778557878,1,1,1_0,1_1_0,1_2_0,1_0_0 -24188,2,84.0,0.0,2,111,400.0,0.0,0.0,77,78,1493.5848770180007,0.0,552.8696910303722,1580.0,309.6588607542345,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,113519,2,2,4,0,1,,100.0,,41,0.0,1.0,5.0,2.0,1.5,4,2,1033.4122797797,400.0,12912.948168722667,5,5,0,1,80.0,3,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12235780546436528,8608.632112481779,1,1,1_0,1_1_0,1_2_0,1_0_1 -24189,2,57.0,0.0,5,111,400.0,1600.0,0.0,0,77,0.0,0.0,552.8696910303722,2000.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,0,,1,,3,111517,2,2,2,0,1,,250.0,590.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1144.16721776777,400.0,21638.042901810666,0,5,2,3,78.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0924298010257037,21638.042901810666,6,3,6,6_1,6_2,6_0_0 -24190,2,54.0,0.0,5,111,1400.0,0.0,0.0,53,52,0.0,51.75862524097289,1935.0439186063027,1510.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,115110,2,1,1,0,1,,298.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1021.95854682025,1400.0,36993.57670433717,1,1,0,1,100.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04081789690324715,24662.38446955811,7,4,7,7_1,7_2,7_0_0 -24191,2,32.0,0.0,1,111,600.0,0.0,0.0,0,46,0.0,103.51725048194578,829.3045365455583,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,121286,2,1,1,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1050.18212783762,600.0,21549.55161604261,0,1,1,2,65.0,3,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03248327447699114,21549.55161604261,6,3,6,6_1,6_2,6_1_0 -24192,2,71.0,0.0,5,111,300.0,1100.0,0.0,0,77,0.0,0.0,414.65226827277917,1400.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,0,,1,,3,125205,2,2,1,0,2,,250.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1025.29090367806,300.0,27872.420789771906,0,5,1,2,80.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0502288628088503,27872.420789771906,7,4,7,7_1,7_2,7_0_0 -24193,2,54.0,0.0,5,111,1460.0,0.0,0.0,0,43,0.0,0.0,2017.9743722608587,1520.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,2,3.0,1,,3,114442,2,1,1,0,1,,260.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1128.9400828642,1460.0,43292.2741570685,0,1,0,1,100.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03511019066555143,43292.2741570685,9,5,9,9_1,9_2,9_0_0 -24194,2,82.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2169.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131319,2,2,5,0,1,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1165.99575065882,0.0,10302.244235175316,0,5,0,1,90.0,3,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.21053665109144926,10302.244235175316,2,1,2_0,2_1_0,2_2_0,2_0_1 -24195,2,66.0,0.0,5,111,500.0,1000.0,0.0,77,78,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,3,118074,2,1,2,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1000.57015139908,500.0,47901.6125200407,5,5,0,1,100.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03131418591331225,31934.4083466938,8,4,8,8_1,8_2,8_0_0 -24196,2,76.0,0.0,5,111,500.0,0.0,0.0,72,72,1418.9056331671006,414.0690019277831,691.0871137879653,1910.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,109693,2,1,2,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1068.37182278767,500.0,17757.447658390458,5,5,0,1,90.0,3,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10756050287990111,11838.298438926971,2,1,2_0,2_1_0,2_2_0,2_0_0 -24197,2,77.0,0.0,1,111,500.0,0.0,0.0,77,78,0.0,0.0,691.0871137879653,560.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105393,2,1,1,0,1,,60.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1046.20837052482,500.0,18987.902609633376,5,5,0,1,84.0,3,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029492462201480222,12658.601739755584,2,1,2_0,2_1_0,2_2_0,2_1_0 -24198,2,49.0,0.0,7,111,1000.0,0.0,0.0,0,42,0.0,0.0,1382.1742275759307,1030.0,51.60981012570575,0.0,70,1,2,2,1,2,2,2,2,0,,1,,5,124431,2,1,1,0,1,,100.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1052.01089660383,1000.0,23560.52869904585,0,1,2,3,60.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04371718534659677,18123.483614650653,4,2,4_0,4_1_0,4_2_0,4_0_0 -24199,2,64.0,0.0,7,111,562.0,875.0,0.0,75,77,0.0,103.51725048194578,776.781915897673,1537.0,0.0,1586.9462882415178,50,0,0,0,0,0,0,0,0,0,,1,,5,113080,2,1,1,0,1,,230.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1060.46643874456,562.0,45176.76479476911,5,5,0,1,115.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03402191385289203,30117.84319651274,8,4,8,8_1,8_2,8_0_0 -24200,2,46.0,0.0,5,120,616.0,738.0,0.0,52,62,0.0,0.0,851.4193241867732,1354.0,0.0,1338.4758408254172,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,111172,2,2,5,0,1,,632.0,338.0,43,4.0,2.0,5.0,5.0,3.0,2,2,1437.17872963602,616.0,49607.2382330675,1,1,2,3,80.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027294403966585713,16535.746077689168,4,2,4_0,4_1_0,4_1_0,4_0_0 -24201,1,23.0,28.0,6,120,0.0,0.0,0.0,0,65,0.0,0.0,0.0,5978.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,,4,124304,2,2,5,0,1,,416.0,255.0,12,1.0,1.0,3.0,1.0,1.0,4,3,1794.91088250019,0.0,14519.542548874275,0,1,2,3,63.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.4117209602077639,14519.542548874275,3,2,3_1,3_1_1,3_1_1,3_0_0 -24202,2,91.0,0.0,2,120,220.0,0.0,0.0,0,77,1493.5848770180007,207.03450096389156,304.0783300667047,1480.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112526,2,2,2,0,1,,300.0,,21,0.0,3.0,6.0,2.0,1.5,2,2,1881.92592079785,220.0,32296.922286989517,0,5,0,1,120.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04582479986324278,21531.281524659677,6,3,6,6_1,6_1,6_0_1 -24203,2,31.0,0.0,9,120,1340.0,0.0,0.0,62,42,0.0,0.0,1852.113464951747,1400.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,2004.0,6,107424,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1823.1744589706,1340.0,54797.89374019611,1,1,1,2,105.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02554842721943987,26094.2351143791,7,4,7,7_1,7_1,7_0_0 -24204,2,28.0,0.0,9,120,0.0,0.0,0.0,43,42,0.0,0.0,0.0,1545.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,2007.0,6,117790,2,1,1,0,1,,167.0,620.0,43,2.0,0.0,4.0,3.0,1.8,1,1,2040.69096266089,0.0,42294.0322166812,1,1,2,3,85.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03652997642988119,23496.68456482289,6,3,6,6_1,6_1,6_0_0 -24205,2,35.0,0.0,8,120,1600.0,0.0,0.0,56,63,0.0,0.0,2211.478764121489,1675.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,110770,2,1,3,0,1,,720.0,550.0,43,2.0,0.0,4.0,5.0,2.4,1,1,1972.02260029958,1600.0,43529.567731493036,1,1,2,3,85.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038479591856552274,18137.3198881221,4,2,4_0,4_1_0,4_1_0,4_0_0 -24206,2,38.0,0.0,8,120,1500.0,0.0,0.0,46,46,0.0,0.0,2073.261341363896,1530.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,122687,2,1,2,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1711.26941396517,1500.0,47950.6636536705,1,1,1,2,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031907796126673264,22833.64935889071,6,3,6,6_1,6_1,6_0_0 -24207,2,36.0,0.0,8,120,630.0,0.0,0.0,45,42,0.0,0.0,870.7697633728362,680.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,124272,2,1,1,0,1,,200.0,603.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2085.92857923177,630.0,39347.62130706773,1,1,2,3,83.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017281857896651466,21859.78961503763,6,3,6,6_1,6_1,6_0_0 -24208,1,54.0,154.0,9,120,1000.0,0.0,0.0,0,75,0.0,0.0,1382.1742275759307,1050.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,120993,2,1,1,0,1,,340.0,675.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1960.93407890382,1000.0,10682.162083494251,0,7,2,3,97.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09829470773734353,10682.162083494251,2,1,2_1,2_1_1,2_1_1,2_0_0 -24209,2,44.0,0.0,9,120,924.0,0.0,0.0,56,63,0.0,0.0,1277.1289862801598,984.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,101426,2,2,1,0,1,,481.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2050.35180336685,924.0,29218.296104399637,1,1,1,2,97.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03367752850761996,16232.386724666465,4,2,4_0,4_1_0,4_1_0,4_0_0 -24210,2,69.0,0.0,5,120,570.0,0.0,0.0,78,78,0.0,0.0,787.8393097182804,790.0,378.4719409218422,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115103,2,1,1,0,1,,273.0,,41,0.0,2.0,3.0,2.0,1.5,3,1,1778.65419756692,570.0,31709.371033553572,5,5,0,1,64.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024913770732445432,21139.580689035716,5,3,5,5_1,5_1,5_0_0 -24211,1,69.0,44.0,5,120,0.0,0.0,1000.0,0,78,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,71,2,2,2,2,2,2,2,1,0,,1,,3,118530,1,2,1,0,1,,208.0,274.0,11,0.0,2.0,3.0,1.0,1.0,3,2,1799.31025976543,0.0,13158.245584619111,0,5,2,3,62.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.07599797355727396,13158.245584619111,2,1,2_1,2_1_1,2_1_1,2_0_0 -24212,2,32.0,0.0,5,120,1080.0,0.0,0.0,55,63,0.0,0.0,1492.748165782005,1130.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,111198,2,2,1,0,1,,468.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1723.74284454037,1080.0,41526.47247086236,1,1,1,2,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027211557658620787,19774.510700410647,5,3,5,5_1,5_1,5_0_0 -24213,2,60.0,0.0,5,120,400.0,605.0,0.0,78,54,0.0,0.0,552.8696910303722,1005.0,0.0,1097.2600050127066,20,0,0,0,0,0,0,0,0,2,25.0,1,,3,132364,2,1,1,0,1,,380.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,1881.92592079785,400.0,48326.59244009716,5,1,0,1,112.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020796003799476232,32217.728293398108,8,4,8,8_1,8_1,8_0_0 -24214,2,79.0,0.0,5,120,210.0,0.0,0.0,71,71,1045.5094139126004,0.0,290.25658779094545,1030.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,113212,2,1,1,0,1,,196.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,2029.90944656457,210.0,20049.99310164793,5,5,0,1,95.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05137158874709753,13366.662067765288,3,2,3_0,3_1_0,3_1_0,3_0_0 -24215,2,42.0,0.0,9,120,1084.0,0.0,0.0,62,53,0.0,0.0,1498.2768626923087,1084.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,124314,2,1,1,0,1,,306.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1970.74978937878,1084.0,41803.46460861302,1,1,1,2,104.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025930865064630475,23224.147004785013,6,3,6,6_1,6_1,6_0_0 -24216,2,55.0,0.0,6,120,826.0,0.0,0.0,68,64,0.0,248.44140115666985,1141.6759119777187,1066.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,107363,2,1,1,0,1,,307.0,,43,2.0,2.0,5.0,2.0,1.5,5,5,1881.92592079785,826.0,29866.23363841346,1,1,0,1,99.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035692481780793685,19910.822425608974,5,3,5,5_1,5_1,5_0_0 -24217,2,58.0,0.0,5,120,550.0,920.0,0.0,52,37,0.0,0.0,760.1958251667618,1470.0,0.0,1668.560668779653,70,0,0,0,0,0,0,0,0,2,50.0,1,,3,122960,2,1,1,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1764.92199884848,550.0,57577.98454954956,1,1,0,1,97.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02553059144914964,38385.32303303304,9,5,9,9_1,9_1,9_0_0 -24218,1,28.0,300.0,9,120,1300.0,0.0,0.0,63,56,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,128761,2,2,1,0,1,,750.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1914.57491531199,1300.0,30852.065994440974,1,1,1,2,86.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04213656227217452,14691.459997352844,3,2,3_1,3_1_1,3_1_1,3_0_0 -24219,2,32.0,0.0,9,120,960.0,0.0,0.0,63,42,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,124900,2,1,1,0,1,,420.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1914.77458353034,960.0,46369.67382945914,1,1,1,2,131.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020703186387092978,22080.79706164721,6,3,6,6_1,6_1,6_0_0 -24220,1,33.0,406.0,9,120,377.0,976.0,0.0,0,56,0.0,0.0,521.0796837961258,1353.0,0.0,1770.1252312271101,50,2,2,2,2,2,2,2,1,0,,1,2010.0,6,113684,2,2,1,0,1,,276.0,471.0,32,1.0,0.0,4.0,3.0,1.6,2,2,1968.38892145788,377.0,12708.747808431499,0,1,2,3,88.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.10646210156931156,7942.967380269686,1,1,1_1,1_1_1,1_1_1,1_0_0 -24221,2,73.0,0.0,2,120,240.0,0.0,0.0,86,72,1306.8867673907505,15.527587572291866,331.72181461822333,1210.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125877,2,1,2,0,1,,240.0,,41,0.0,4.0,7.0,2.0,1.5,1,1,2003.17620027253,240.0,23849.206606917338,5,5,0,1,133.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05073544038354072,15899.471071278225,3,2,3_0,3_1_0,3_1_0,3_0_1 -24222,2,83.0,0.0,2,120,267.0,976.0,0.0,78,78,0.0,0.0,369.04051876277344,1243.0,0.0,1770.1252312271101,70,0,0,0,0,0,0,0,0,0,,1,,2,132118,2,1,3,0,1,,252.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1568.34811254249,267.0,21890.369173285715,5,5,0,1,83.0,0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.056782961957394316,14593.579448857143,3,2,3_0,3_1_0,3_1_0,3_0_1 -24223,2,79.0,0.0,6,120,551.0,0.0,0.0,0,78,0.0,258.79312620486445,761.5779993943378,856.0,94.61798523046055,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131402,2,2,1,0,1,,186.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1880.58998648709,551.0,29770.053551493445,0,5,0,1,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028753727248739123,29770.053551493445,8,4,8,8_1,8_1,8_0_0 -24224,2,84.0,0.0,7,120,1260.0,0.0,0.0,0,77,0.0,0.0,1741.5395267456724,1310.0,86.01635020950958,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,115744,2,1,2,0,1,,306.0,,11,0.0,0.0,3.0,1.0,1.0,4,4,1997.10808157276,1260.0,25270.77676556941,0,5,0,1,81.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05183853318608042,25270.77676556941,7,4,7,7_1,7_1,7_0_0 -24225,2,93.0,0.0,5,120,1500.0,0.0,0.0,86,75,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,102280,2,1,2,0,1,,507.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,2002.98500881405,1500.0,30883.709934117,5,5,0,1,120.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04856929440147867,20589.139956078,5,3,5,5_1,5_1,5_0_0 -24226,2,63.0,0.0,6,120,1200.0,0.0,0.0,72,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,103859,2,1,3,0,1,,400.0,610.0,41,0.0,5.0,4.0,2.0,1.5,2,2,2084.78500947057,1200.0,40969.36568423453,5,5,2,3,92.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029290177671990988,27312.910456156354,7,4,7,7_1,7_1,7_0_0 -24227,2,33.0,0.0,7,120,380.0,600.0,0.0,68,47,0.0,0.0,525.2262064788536,980.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,1,15.0,1,,5,112939,2,2,2,0,1,,360.0,435.0,43,2.0,0.0,3.0,3.0,1.8,3,2,1843.1972103388,380.0,34244.552799038196,1,1,2,3,73.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028617690111214553,19024.75155502122,5,3,5,5_1,5_1,5_0_0 -24228,2,25.0,0.0,9,120,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1264.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,127634,2,1,1,0,1,,288.0,580.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2014.3811399106,0.0,14397.671020589085,0,1,2,3,70.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08779197678516501,14397.671020589085,3,2,3_0,3_1_0,3_1_0,3_0_0 -24229,2,64.0,0.0,5,120,1300.0,0.0,0.0,0,74,0.0,0.0,1796.8264958487098,1380.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102274,1,1,3,0,1,,310.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2063.805957886,1300.0,19380.536601936394,0,5,0,1,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07120545877259757,19380.536601936394,5,3,5,5_1,5_1,5_0_0 -24230,2,54.0,0.0,7,120,670.0,0.0,0.0,0,46,0.0,0.0,926.0567324758734,670.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,101375,2,2,0,0,1,,0.0,370.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2403.0612542157,670.0,24967.915573067523,0,1,2,3,36.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026834438703514277,24967.915573067523,7,4,7,7_0,7_1,7_0_0 -24231,2,47.0,0.0,1,120,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1731.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,4.0,1,,1,124204,2,2,5,0,1,,307.0,550.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1960.93407890382,0.0,33151.526392661144,0,1,2,3,85.0,0,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05221479033867945,33151.526392661144,8,4,8,8_1,8_1,8_1_0 -24232,2,22.0,0.0,5,120,842.0,0.0,0.0,55,69,0.0,255.68760869040608,1163.7906996189336,1115.0,44.72850210894499,0.0,41,0,0,0,0,0,0,0,0,2,3.0,1,,3,100773,1,2,2,0,2,,199.0,480.0,43,2.0,0.0,3.0,2.0,1.5,5,5,2084.78500947057,842.0,33511.231450315594,1,1,2,3,70.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03327242693701426,22340.82096687706,6,3,6,6_1,6_1,6_0_0 -24233,2,81.0,0.0,6,120,1194.0,0.0,0.0,0,78,0.0,0.0,1650.3160277256611,1244.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132974,2,3,3,0,1,,181.0,508.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2096.05609036474,1194.0,16381.873967811614,0,5,2,3,65.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07593758824199895,16381.873967811614,4,2,4_0,4_1_0,4_1_0,4_0_0 -24234,2,77.0,0.0,2,120,250.0,280.0,0.0,77,75,0.0,0.0,345.54355689398267,530.0,0.0,507.8228122372857,50,0,0,0,0,0,0,0,0,0,,1,,2,126318,2,1,1,0,1,,370.0,,41,0.0,3.0,6.0,2.0,1.5,4,2,1940.8606900123,250.0,46541.632727698,5,5,0,1,110.0,0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011387653783030796,31027.75515179867,8,4,8,8_1,8_1,8_0_1 -24235,2,48.0,0.0,9,120,800.0,0.0,0.0,55,63,0.0,0.0,1105.7393820607444,950.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,2007.0,6,125996,2,1,1,0,1,,290.0,,43,2.0,2.0,5.0,5.0,3.0,1,1,1854.62101814169,800.0,51490.389989380135,1,1,1,2,123.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01845004475972967,17163.46332979338,4,2,4_0,4_1_0,4_1_0,4_0_0 -24236,2,77.0,0.0,9,120,468.0,807.0,0.0,0,72,0.0,0.0,646.8575385055356,1275.0,0.0,1463.6178909838914,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,104863,2,1,1,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2029.55817662604,468.0,22534.0,0,5,0,1,150.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056581166237685276,22534.0,6,3,6,6_1,6_1,6_0_0 -24237,2,50.0,0.0,7,120,1419.0,0.0,0.0,56,67,0.0,0.0,1961.3052289302454,1499.0,137.62616033521533,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,5,104956,2,1,3,0,1,,560.0,,43,4.0,0.0,4.0,4.0,2.5,3,2,1715.46378362881,1419.0,40419.17171129112,1,1,0,1,99.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03708636116314213,16167.668684516448,4,2,4_0,4_1_0,4_1_0,4_0_0 -24238,2,62.0,0.0,9,120,1117.0,1511.0,0.0,77,74,0.0,51.75862524097289,1543.8886122023143,2678.0,0.0,2740.429533180495,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,131846,2,1,1,0,1,,110.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1904.04002105595,1117.0,64001.34007628763,6,5,1,2,165.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04184287386495199,42667.560050858425,9,5,9,9_1,9_1,9_0_0 -24239,2,82.0,0.0,1,120,0.0,0.0,149.0,0,78,0.0,0.0,76.12608689079124,149.0,0.0,170.34362042324207,70,0,0,0,0,0,0,0,0,0,,1,,1,133236,2,1,3,0,1,,200.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1897.97068964165,0.0,23303.889727399343,0,5,0,1,100.0,0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.006393782400403936,23303.889727399343,6,3,6,6_1,6_1,6_1_0 -24240,1,30.0,249.0,6,120,0.0,0.0,0.0,0,21,0.0,0.0,0.0,26.0,44.72850210894499,0.0,60,2,2,2,2,2,2,2,1,0,,1,,4,103730,1,2,5,0,1,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2153.31495336016,0.0,5356.4445599001,0,4,2,3,33.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.004853966042072675,5356.4445599001,1,1,1_1,1_1_1,1_1_1,1_0_0 -24241,2,21.0,0.0,1,120,0.0,0.0,0.0,54,63,0.0,0.0,0.0,3541.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,126183,2,1,2,0,1,,339.0,505.0,43,2.0,0.0,5.0,2.0,1.5,1,1,1912.34816243474,0.0,33584.46763503116,1,1,2,3,90.0,0,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10543564478915447,22389.64509002077,6,3,6,6_1,6_1,6_1_0 -24242,0,45.0,0.0,2,120,0.0,0.0,0.0,0,22,0.0,0.0,0.0,100.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,8,,2,132285,1,3,0,1,1,,0.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,2338.7197621201,0.0,31746.0,0,1,5,0,110.0,0,1,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.00315000315000315,15873.0,3,2,3_0,3_0_0,3_1_0,3_0_1 -24243,2,36.0,0.0,1,120,720.0,960.0,0.0,21,21,0.0,0.0,995.16544385467,1680.0,0.0,1741.106784813551,42,0,0,0,0,0,0,0,0,0,,8,,1,103009,2,1,0,1,1,,495.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2239.14673475758,720.0,41468.75143668081,1,1,1,2,95.0,0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04051243265824423,19747.02449365753,5,3,5,5_0,5_1,5_1_0 -24244,2,54.0,0.0,6,120,762.0,0.0,0.0,68,45,0.0,87.98966290965392,1053.2167614128591,901.0,92.89765822627035,0.0,70,0,0,0,0,0,0,0,0,3,30.0,1,,4,100311,2,2,2,0,1,,248.0,,43,2.0,2.0,4.0,2.0,1.5,3,1,1940.8606900123,762.0,58838.793112535845,1,1,0,1,95.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015313026531267145,39225.8620750239,9,5,9,9_1,9_1,9_0_0 -24245,2,63.0,0.0,1,120,360.0,0.0,0.0,72,72,1792.3018524216009,0.0,497.582721927335,1680.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129535,2,1,2,0,1,,600.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1992.48708399861,360.0,33419.2673842021,5,5,0,1,175.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050270401821979095,22279.511589468068,6,3,6,6_1,6_1,6_1_0 -24246,2,88.0,0.0,5,120,1000.0,0.0,0.0,0,75,2987.1697540360015,0.0,1382.1742275759307,3050.0,86.01635020950958,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,114243,2,1,2,0,2,,580.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1895.57885162321,1000.0,18225.035396593958,0,5,0,1,100.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.16735221269145018,18225.035396593958,4,2,4_0,4_1_0,4_1_0,4_0_0 -24247,2,68.0,0.0,9,120,1000.0,0.0,0.0,78,77,0.0,186.3310508675024,1382.1742275759307,1180.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,133293,2,1,1,0,1,,433.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1891.42049867624,1000.0,45211.30885867427,5,5,1,2,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026099664658870068,30140.872572449513,8,4,8,8_1,8_1,8_0_0 -24248,1,38.0,258.0,9,120,0.0,0.0,0.0,22,22,0.0,0.0,0.0,974.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,132337,2,1,1,0,1,,181.0,650.0,43,2.0,0.0,4.0,4.0,2.3,2,2,2001.02119849776,0.0,29923.358156211827,1,1,2,3,98.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03254982261400384,13010.1557200921,2,1,2_1,2_1_1,2_1_1,2_0_0 -24249,2,53.0,0.0,2,120,866.0,0.0,0.0,52,63,0.0,0.0,1196.9628810807558,1066.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,105160,2,1,2,0,1,,396.0,,43,2.0,1.0,5.0,4.0,2.5,2,2,1900.28694051101,866.0,44902.74079570158,1,1,0,1,120.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023740198952444464,17961.096318280634,4,2,4_0,4_1_0,4_1_0,4_0_1 -24250,2,45.0,0.0,6,120,2073.0,0.0,0.0,46,38,0.0,0.0,2865.247173764904,2233.0,275.25232067043066,0.0,20,2,2,2,2,1,2,2,2,0,,1,,4,131626,2,2,2,0,1,,261.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,2066.17981468515,2073.0,57217.02284000804,4,4,1,2,105.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.039026847066894445,31787.234911115575,8,4,8,8_1,8_1,8_0_0 -24251,2,66.0,0.0,8,120,1260.0,0.0,0.0,75,74,0.0,310.55175144583734,1741.5395267456724,1614.0,92.89765822627035,0.0,43,0,0,0,0,0,0,0,0,0,,1,2002.0,6,130776,2,1,2,0,1,,350.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1928.75972193826,1260.0,65004.32052160507,5,5,0,1,144.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024829118850085746,43336.21368107005,10,5,10,10_1,10_1,10_0_0 -24252,2,74.0,0.0,1,120,600.0,0.0,0.0,0,71,2091.018827825201,0.0,829.3045365455583,2060.0,103.2196202514115,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,115570,2,2,3,0,1,,0.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1940.55763109413,600.0,27223.911927933794,0,5,0,1,170.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07566877256483791,27223.911927933794,7,4,7,7_1,7_1,7_1_0 -24253,1,32.0,112.0,6,112,0.0,0.0,0.0,21,21,0.0,0.0,0.0,1629.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,131566,2,1,2,0,1,,346.0,240.0,43,2.0,0.0,7.0,6.0,2.6999999999999997,1,1,902.70847291644,0.0,30823.157129401752,1,1,2,3,120.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05284987495476643,11415.98412200065,2,1,2_1,2_1_1,2_0_1,2_0_0 -24254,2,64.0,0.0,1,112,1188.0,0.0,0.0,78,78,0.0,0.0,1642.0229823602056,1267.0,135.90583333102515,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,101034,2,1,1,0,1,,216.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,784.420882581884,1188.0,21800.101213622147,5,5,1,2,85.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05811899621861822,14533.400809081431,3,2,3_0,3_1_0,3_0_0,3_1_0 -24255,2,39.0,0.0,9,112,440.0,671.0,0.0,69,52,0.0,0.0,608.1566601334094,1111.0,0.0,1216.9610964686383,70,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,126267,2,2,1,0,1,,312.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,798.991460425415,440.0,49237.96112476444,1,1,1,2,97.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022563891246122656,20515.817135318517,5,3,5,5_1,5_0,5_0_0 -24256,2,40.0,0.0,9,112,600.0,600.0,0.0,37,67,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,60,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,103866,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.4,4,4,759.949323398293,600.0,52317.150028883545,1,1,1,2,113.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02293702924065048,21798.812512034812,6,3,6,6_1,6_0,6_0_0 -24257,2,70.0,0.0,9,112,260.0,0.0,0.0,0,75,0.0,82.81380038555662,359.36529916974195,400.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,130227,2,1,1,0,1,,200.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,904.605918573588,260.0,17357.35789707606,0,5,0,1,82.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023044981982389273,17357.35789707606,4,2,4_0,4_1_0,4_0_0,4_0_0 -24258,2,25.0,0.0,9,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1352.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,106093,2,1,1,0,1,,110.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,809.630860336786,0.0,47403.703354819336,1,1,1,2,96.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02852097841133224,31602.46890321289,8,4,8,8_1,8_0,8_0_0 -24259,1,44.0,270.0,9,112,825.0,0.0,0.0,0,52,0.0,0.0,1140.2937377501428,825.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,102034,2,2,1,0,1,,340.0,600.0,32,1.0,0.0,4.0,4.0,2.3,1,1,880.769054374121,825.0,30190.73572096104,0,1,2,3,90.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02732626351424795,13126.406835200454,2,1,2_1,2_1_1,2_0_1,2_0_0 -24260,2,34.0,0.0,9,112,800.0,0.0,0.0,0,33,0.0,0.0,1105.7393820607444,830.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,106073,2,1,1,0,1,,208.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,802.654773546585,800.0,34183.32615387231,0,1,1,2,93.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024280843714969413,34183.32615387231,9,5,9,9_1,9_0,9_0_0 -24261,2,36.0,0.0,1,112,720.0,0.0,0.0,63,52,0.0,414.0690019277831,995.16544385467,1220.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,124004,2,1,3,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,747.705513621962,720.0,29736.45449468096,4,1,1,2,110.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04102708344796872,14160.21642603855,3,2,3_0,3_1_0,3_0_0,3_1_0 -24262,2,57.0,0.0,1,112,750.0,0.0,0.0,0,43,1941.6603401234008,621.1035028916747,1036.630670681948,2720.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,1,100899,2,1,2,0,1,,400.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,940.968147816925,750.0,46760.28690899283,0,1,1,2,240.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0581690186224434,46760.28690899283,10,5,10,10_1,10_0,10_1_0 -24263,2,82.0,0.0,1,112,1300.0,0.0,0.0,0,71,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132886,2,1,1,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,909.818449941735,1300.0,12890.925071659793,0,5,0,1,83.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10084613732322442,12890.925071659793,2,1,2_0,2_1_0,2_0_0,2_1_0 -24264,1,44.0,268.0,7,112,350.0,654.0,0.0,0,64,0.0,0.0,483.76097965157567,1032.0,48.169156117325365,1186.1289971542317,33,0,0,0,0,0,0,0,0,2,20.0,1,,5,109206,2,3,3,0,1,,337.0,434.0,32,1.0,0.0,4.0,3.0,1.8,4,3,689.585775349267,350.0,19881.52841351816,0,1,2,3,85.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.051907478063824626,11045.293563065645,2,1,2_1,2_1_1,2_0_1,2_0_0 -24265,2,41.0,0.0,7,112,340.0,550.0,0.0,0,65,0.0,0.0,469.9392373758164,920.0,51.60981012570575,997.5090954660969,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,123607,2,1,2,0,1,,122.0,312.0,12,1.0,0.0,2.0,1.0,1.0,3,2,756.545396619118,340.0,20829.773396809185,0,1,2,3,53.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04416754721589676,20829.773396809185,5,3,5,5_1,5_0,5_0_0 -24266,2,56.0,0.0,6,112,495.0,0.0,0.0,54,48,0.0,0.0,684.1762426500857,555.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,103410,2,2,1,0,1,,320.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,793.404575351608,495.0,59564.60522812864,1,1,0,1,102.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009317614007083324,39709.736818752426,9,5,9,9_1,9_0,9_0_0 -24267,2,37.0,0.0,6,112,0.0,0.0,0.0,34,42,0.0,0.0,0.0,719.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,102929,2,2,2,0,2,,298.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,817.971099067358,0.0,52550.49666533401,1,1,1,2,120.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013682078108203738,35033.66444355601,9,5,9,9_1,9_0,9_0_0 -24268,2,32.0,0.0,2,112,1082.0,0.0,0.0,65,63,1045.5094139126004,0.0,1495.512514237157,1882.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,106698,2,2,3,0,1,,257.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,828.925545287282,1082.0,40580.124502498125,1,1,1,2,120.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046377383585507324,19323.868810713393,5,3,5,5_1,5_0,5_0_1 -24269,1,32.0,127.0,9,112,1496.0,0.0,0.0,55,52,0.0,0.0,2067.732644453592,1546.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,132965,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,833.948310789729,1496.0,38048.512241765544,4,1,1,2,102.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04063233774231436,18118.339162745495,4,2,4_1,4_1_1,4_0_1,4_0_0 -24270,2,66.0,0.0,8,112,486.0,0.0,0.0,71,78,1150.0603553038604,0.0,671.7366746019022,1316.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,123115,2,1,2,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,857.974017107236,486.0,30282.901941079537,5,5,1,2,85.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043456865612169486,20188.601294053024,5,3,5,5_1,5_0,5_0_0 -24271,2,44.0,0.0,5,112,330.0,0.0,0.0,55,68,0.0,0.0,456.1174951000571,2160.0,103.2196202514115,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,,3,114036,2,1,2,0,1,,190.0,,43,2.0,0.0,3.0,2.0,1.5,4,2,861.534631046645,330.0,34312.113179463835,1,1,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06295152935356901,22874.742119642557,6,3,6,6_1,6_0,6_0_0 -24272,2,49.0,0.0,1,112,192.0,0.0,0.0,11,11,0.0,0.0,265.37745169457867,372.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100797,2,3,2,0,2,,250.0,,43,2.0,1.0,7.0,4.0,2.5,3,2,793.212323021972,192.0,33204.66573812398,1,1,1,2,180.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01120324483715214,13281.86629524959,3,2,3_0,3_1_0,3_0_0,3_1_0 -24273,2,29.0,0.0,2,112,384.0,0.0,0.0,52,62,2987.1697540360015,0.0,530.7549033891573,2414.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,125068,2,1,1,0,1,,185.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,764.332793970108,384.0,42583.149246150424,1,1,1,2,107.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05668909046735732,28388.76616410028,8,4,8,8_1,8_0,8_0_1 -24274,2,60.0,0.0,1,112,555.0,0.0,0.0,0,38,1926.7244913532209,0.0,767.1066963046414,1890.0,77.41471518855863,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,111974,2,3,3,0,1,,45.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,909.818449941735,555.0,58436.343817640925,0,1,0,1,100.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03234288589132165,58436.343817640925,10,5,10,10_1,10_0,10_1_0 -24275,2,50.0,0.0,1,112,450.0,0.0,0.0,0,63,0.0,0.0,621.9784024091688,465.0,25.804905062852875,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,115183,2,1,2,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,790.110143527023,450.0,20316.05996294267,0,1,1,2,75.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0228882962960426,20316.05996294267,5,3,5,5_1,5_0,5_1_0 -24276,2,53.0,0.0,1,112,825.0,0.0,0.0,11,11,0.0,0.0,1140.2937377501428,2100.0,2193.416930342494,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103694,2,1,2,0,1,,288.0,,43,2.0,3.0,7.0,2.0,1.5,3,3,814.566103719671,825.0,43831.812962855714,1,1,0,1,190.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04791040703197921,29221.20864190381,8,4,8,8_1,8_0,8_1_0 -24277,2,49.0,0.0,2,112,990.0,0.0,0.0,65,63,0.0,0.0,1368.3524853001713,1060.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,126856,2,1,2,0,1,,80.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,774.661913206656,990.0,49427.88637731914,1,1,0,1,152.0,7,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021445383925750863,19771.154550927655,5,3,5,5_1,5_0,5_0_1 -24278,1,23.0,108.0,1,112,0.0,0.0,0.0,0,69,0.0,0.0,0.0,961.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,124063,2,1,2,0,1,,89.0,420.0,12,1.0,0.0,3.0,1.0,1.0,1,1,917.490903450301,0.0,11591.328595230298,0,2,2,3,75.0,7,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08290680331462959,11591.328595230298,2,1,2_1,2_1_1,2_0_1,2_1_0 -24279,2,52.0,0.0,8,112,1395.0,0.0,0.0,0,85,0.0,0.0,1928.1330474684232,1395.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,115674,2,1,1,0,1,,511.0,,11,0.0,1.0,4.0,1.0,1.0,3,3,788.178296262995,1395.0,15446.241003498606,0,7,1,2,96.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09031323541332999,15446.241003498606,3,2,3_0,3_1_0,3_0_0,3_0_0 -24280,2,57.0,0.0,5,112,545.0,0.0,0.0,65,42,0.0,207.03450096389156,753.2849540288821,1215.0,808.5536919693901,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,3,130333,2,1,1,0,1,,400.0,,43,3.0,1.0,4.0,3.0,2.0,3,2,855.317090776675,545.0,61677.90041173435,1,1,0,1,87.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019699114137952136,30838.950205867175,8,4,8,8_1,8_0,8_0_0 -24281,2,58.0,0.0,5,112,1566.0,0.0,0.0,78,56,0.0,0.0,2164.4848403839073,1566.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,102988,2,1,2,0,1,,278.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,787.642042241101,1566.0,65770.0093665023,5,4,0,1,85.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02381024444247059,43846.67291100154,10,5,10,10_1,10_0,10_0_0 -24282,2,44.0,0.0,8,112,1500.0,0.0,0.0,62,47,0.0,0.0,2073.261341363896,1585.0,146.2277953561663,0.0,50,0,0,0,0,0,0,0,0,2,14.0,1,2002.0,6,125932,2,1,1,0,2,,650.0,,43,2.0,0.0,5.0,5.0,3.0,2,2,712.572797823597,1500.0,57636.092899433424,1,1,1,2,89.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027500129177138948,19212.030966477807,5,3,5,5_1,5_0,5_0_0 -24283,2,42.0,0.0,1,112,1010.0,0.0,0.0,31,37,2240.377315527001,310.55175144583734,1395.9959698516898,2870.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,115999,2,1,1,0,1,,756.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,849.107894923075,1010.0,131163.2424052974,1,1,1,2,217.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02188113031798676,54651.35100220726,10,5,10,10_1,10_0,10_1_0 -24284,2,35.0,0.0,9,112,1100.0,0.0,0.0,55,62,0.0,362.31037668681023,1520.3916503335236,1510.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,120058,2,1,1,0,1,,227.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,728.050480696008,1100.0,35195.22124407813,4,1,1,2,93.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042903551863708464,16759.629163846726,4,2,4_0,4_1_0,4_0_0,4_0_0 -24285,2,27.0,0.0,8,112,290.0,600.0,0.0,0,56,0.0,0.0,400.8305259970199,890.0,0.0,1088.1917405084694,12,2,2,2,1,2,2,2,2,2,7.0,1,2003.0,6,104239,2,3,1,0,1,,250.0,404.0,12,1.0,0.0,3.0,1.0,1.0,2,2,745.984829423664,290.0,14283.738789604062,0,1,2,3,75.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.06230861633004354,14283.738789604062,3,2,3_0,3_1_0,3_0_0,3_0_0 -24286,2,67.0,0.0,5,112,750.0,0.0,0.0,75,75,2987.1697540360015,207.03450096389156,1036.630670681948,3070.0,206.439240502823,0.0,42,2,2,2,2,1,2,2,2,0,,1,,3,127493,1,2,3,0,2,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,764.332793970108,750.0,35570.69285514239,5,5,1,2,100.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.08630700595296882,23713.795236761594,6,3,6,6_1,6_0,6_0_0 -24287,2,42.0,0.0,9,112,960.0,0.0,0.0,43,47,358.46037048432015,0.0,1326.8872584728933,1200.0,0.0,0.0,71,2,1,2,1,2,2,2,2,2,15.0,1,2004.0,6,113127,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,763.591007403195,960.0,54196.732182091044,1,1,0,1,115.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.0221415563574612,25807.967705757637,7,4,7,7_1,7_0,7_0_0 -24288,2,38.0,0.0,9,112,819.0,0.0,0.0,0,68,0.0,0.0,1132.0006923846872,834.0,25.804905062852875,0.0,50,0,0,0,0,0,0,0,0,2,18.0,1,2007.0,6,132304,2,1,1,0,2,,211.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,904.605918573588,819.0,20774.70649011455,0,1,1,2,71.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040144971501611885,20774.70649011455,5,3,5,5_1,5_0,5_0_0 -24289,2,30.0,0.0,9,112,1451.0,0.0,0.0,48,46,0.0,0.0,2005.5348042126752,1451.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,112599,2,1,1,0,1,,430.0,,43,2.0,0.0,4.0,4.0,2.1,4,2,804.886793469462,1451.0,50064.47433517384,1,1,1,2,96.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028982627287480967,23840.225873892305,6,3,6,6_1,6_0,6_0_0 -24290,2,25.0,0.0,9,112,0.0,0.0,0.0,84,46,0.0,0.0,0.0,1187.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,108293,2,1,1,0,1,,192.0,,42,1.0,0.0,4.0,2.0,1.5,6,5,824.585532364925,0.0,31094.66350815561,3,1,1,2,87.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0381737528591898,20729.77567210374,5,3,5,5_1,5_0,5_0_0 -24291,2,29.0,0.0,1,112,900.0,0.0,0.0,11,47,1194.8679016144006,0.0,1243.9568048183376,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,120331,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,956.81426502755,900.0,29417.055991663823,1,1,1,2,90.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05778960343556284,16342.80888425768,4,2,4_0,4_1_0,4_0_0,4_1_0 -24292,2,62.0,0.0,5,112,712.0,0.0,0.0,71,71,1493.5848770180007,0.0,984.1080500340626,1712.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111283,2,1,2,0,1,,0.0,,41,2.0,1.0,5.0,4.0,2.5,2,2,774.661913206656,712.0,59792.396499288036,5,5,0,1,100.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028632403118687262,23916.958599715213,6,3,6,6_1,6_0,6_0_0 -24293,1,72.0,191.0,1,112,320.0,0.0,0.0,0,74,0.0,0.0,442.2957528242978,350.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102486,2,2,3,0,1,,104.0,410.0,11,0.0,3.0,2.0,1.0,1.0,3,2,936.896979700751,320.0,8900.404444288633,0,5,2,3,60.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.03932405568654738,8900.404444288633,1,1,1_1,1_1_1,1_0_1,1_1_0 -24294,2,49.0,0.0,1,112,1600.0,0.0,0.0,56,62,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,106432,2,1,3,0,1,,0.0,,43,3.0,2.0,5.0,3.0,2.0,1,1,890.195521512017,1600.0,37228.864281408554,1,1,1,2,145.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04297740559329961,18614.432140704277,4,2,4_0,4_1_0,4_0_0,4_1_0 -24295,2,53.0,0.0,8,300,260.0,0.0,0.0,0,62,1493.5848770180007,0.0,359.36529916974195,1350.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,110717,2,1,2,0,1,,119.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1234.21750154564,260.0,22577.154347006828,0,1,1,2,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05979495817988136,22577.154347006828,6,3,6,6_1,6_0,6_0_0 -24296,2,60.0,0.0,6,300,1320.0,0.0,0.0,62,63,0.0,0.0,1824.4699804002285,1500.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,101827,2,1,3,0,2,,360.0,,43,3.0,3.0,8.0,3.0,2.0,2,2,1328.50823459876,1320.0,42578.82927429071,4,1,0,1,182.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03522877508766327,21289.414637145353,6,3,6,6_1,6_0,6_0_0 -24297,1,48.0,180.0,5,300,1500.0,0.0,0.0,69,69,1792.3018524216009,0.0,2073.261341363896,2790.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,126958,1,1,3,0,2,,600.0,470.0,43,3.0,4.0,6.0,5.0,2.8,2,2,1267.02810355009,1500.0,33570.076918615974,1,1,2,3,130.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08310972914252786,11989.313185219991,2,1,2_1,2_1_1,2_0_1,2_0_0 -24298,1,61.0,459.0,7,300,0.0,0.0,0.0,85,77,0.0,0.0,0.0,436.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,105972,2,2,5,0,1,,552.0,460.0,41,0.0,6.0,5.0,5.0,2.4,1,1,1000.53749767451,0.0,19603.62247094391,6,5,2,3,85.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.022240787418051453,8168.176029559962,1,1,1_1,1_1_1,1_0_1,1_0_0 -24299,2,75.0,0.0,7,300,1775.0,0.0,0.0,0,86,0.0,0.0,2453.3592539472766,1825.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111387,2,2,5,0,1,,126.0,,11,0.0,4.0,7.0,1.0,1.0,2,2,1231.34107534162,1775.0,21285.08053636859,0,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08574080783400033,21285.08053636859,6,3,6,6_1,6_0,6_0_0 -24300,2,68.0,0.0,9,300,1205.0,0.0,0.0,71,71,0.0,0.0,1665.5199442289963,1295.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100492,2,1,1,0,1,,398.0,,41,0.0,5.0,5.0,2.0,1.5,4,3,1119.40872743703,1205.0,21996.446137742947,5,5,0,1,93.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05887314668427069,14664.297425161965,3,2,3_0,3_1_0,3_0_0,3_0_0 -24301,2,67.0,0.0,8,300,1000.0,0.0,0.0,0,74,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,121752,2,1,2,0,1,,150.0,480.0,11,0.0,3.0,4.0,1.0,1.0,2,2,1334.20275101084,1000.0,42015.77827501234,0,5,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025228617522251258,42015.77827501234,9,5,9,9_1,9_0,9_0_0 -24302,2,52.0,0.0,6,300,1000.0,0.0,0.0,0,64,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,119312,2,2,1,0,1,,155.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1239.97381120469,1000.0,26493.75043565667,0,1,1,2,88.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037744750499881956,26493.75043565667,7,4,7,7_1,7_0,7_0_0 -24303,2,43.0,0.0,8,300,500.0,0.0,0.0,55,64,448.0754631054002,0.0,691.0871137879653,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,115145,2,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,974.059432490536,500.0,36205.683890452194,1,1,1,2,94.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02209597814587803,17240.801852596283,4,2,4_0,4_1_0,4_0_0,4_0_0 -24304,2,54.0,0.0,1,300,1200.0,0.0,0.0,69,38,4480.754631054002,0.0,1658.6090730911167,4200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,110470,2,1,1,0,1,,300.0,,43,2.0,2.0,9.0,3.0,2.0,2,2,1320.73530493213,1200.0,79625.98821323866,1,1,1,2,210.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0527465981175943,39812.99410661933,9,5,9,9_1,9_0,9_1_0 -24305,2,66.0,0.0,5,300,652.0,0.0,0.0,71,71,0.0,0.0,901.1775963795067,772.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110332,2,1,1,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1150.05108676507,652.0,24307.157301369403,5,5,0,1,83.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03176019270490785,16204.771534246269,4,2,4_0,4_1_0,4_0_0,4_0_0 -24306,2,32.0,0.0,7,300,800.0,0.0,0.0,0,64,0.0,258.79312620486445,1105.7393820607444,1080.0,51.60981012570575,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,,5,115038,1,2,2,0,1,,130.0,303.0,12,1.0,0.0,2.0,1.0,1.0,2,2,995.367010739644,800.0,21087.42458454343,0,1,2,3,58.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05121535802867144,21087.42458454343,5,3,5,5_1,5_0,5_0_0 -24307,2,31.0,0.0,1,300,1050.0,0.0,0.0,0,62,0.0,0.0,1451.2829389547271,1065.0,25.804905062852875,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,100270,2,1,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1104.9372586185,1050.0,21751.559243243566,0,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0489620071871771,21751.559243243566,6,3,6,6_1,6_0,6_1_0 -24308,2,51.0,0.0,1,300,700.0,0.0,0.0,55,63,2688.452778632401,0.0,967.5219593031513,2590.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,2,12.0,1,,1,131248,2,2,2,0,1,,125.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1186.55250942404,700.0,43756.87508732115,1,1,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05919069848638415,29171.250058214096,8,4,8,8_1,8_0,8_1_0 -24309,1,27.0,565.0,2,300,0.0,0.0,0.0,0,68,0.0,0.0,0.0,2078.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,119521,2,2,5,0,1,,790.0,570.0,32,1.0,0.0,6.0,6.0,2.5,2,1,1217.77501145275,0.0,23691.966406090432,0,1,2,3,130.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.08770905565127823,9476.786562436173,1,1,1_1,1_1_1,1_0_1,1_0_1 -24310,2,35.0,0.0,1,300,0.0,0.0,0.0,85,64,0.0,0.0,0.0,490.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,120079,2,1,1,0,1,,0.0,,42,1.0,0.0,3.0,8.0,3.2999999999999994,1,1,1188.41891646049,0.0,32491.687447485758,6,1,1,2,110.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.015080780300867899,9845.965893177505,2,1,2_0,2_1_0,2_0_0,2_1_0 -24311,2,53.0,0.0,7,300,540.0,60.0,0.0,11,52,0.0,0.0,746.3740828910024,600.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,122590,2,1,2,0,1,,240.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,996.072006807368,540.0,28458.35210926988,1,1,0,1,100.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021083441433861486,18972.234739513253,5,3,5,5_1,5_0,5_0_0 -24312,2,44.0,0.0,2,300,600.0,0.0,0.0,43,11,0.0,0.0,829.3045365455583,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,102068,2,2,1,0,1,,0.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,1078.6362721614,600.0,30340.526147488683,1,1,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01977553049289037,11669.433133649494,2,1,2_0,2_1_0,2_0_0,2_0_1 -24313,2,60.0,0.0,5,300,440.0,0.0,0.0,75,75,746.7924385090004,828.1380038555662,608.1566601334094,1840.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,126052,2,1,1,0,2,,180.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1194.33120484461,440.0,46106.31007837735,5,5,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03990776960620216,30737.540052251567,8,4,8,8_1,8_0,8_0_0 -24314,2,57.0,0.0,6,300,980.0,0.0,0.0,71,68,522.7547069563002,0.0,1354.530743024412,1510.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,2,18.0,1,,4,123849,2,2,1,0,1,,275.0,,42,2.0,1.0,5.0,3.0,2.0,2,2,1283.55145705499,980.0,37908.463024448436,5,1,0,1,99.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03983279403931915,18954.231512224218,5,3,5,5_1,5_0,5_0_0 -24315,2,62.0,0.0,1,300,755.0,0.0,0.0,0,71,3011.0671120682896,0.0,1043.5415418198277,2796.0,43.00817510475479,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113594,2,1,1,0,1,,92.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1149.38450675859,755.0,30300.7107116716,0,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09227506333450464,30300.7107116716,8,4,8,8_1,8_0,8_1_0 -24316,2,72.0,0.0,8,300,214.0,0.0,0.0,0,78,0.0,0.0,295.7852847012491,304.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,115646,2,2,2,0,1,,170.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1271.61197677716,214.0,22098.581699398877,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013756538955089112,22098.581699398877,6,3,6,6_1,6_0,6_0_0 -24317,2,65.0,0.0,5,300,355.0,0.0,0.0,0,78,2270.249013067361,0.0,490.67185078945533,1935.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,133685,2,1,2,0,1,,260.0,,11,0.0,4.0,4.0,1.0,1.0,3,3,1239.97381120469,355.0,10202.885731530268,0,6,0,1,95.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.18965222692048922,10202.885731530268,2,1,2_0,2_1_0,2_0_0,2_0_0 -24318,2,77.0,0.0,2,300,497.0,0.0,0.0,0,86,2389.735803228801,0.0,686.9405911052374,2157.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126175,2,1,2,0,1,,0.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,1162.67019253523,497.0,19682.344578297278,0,6,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10959060245182449,19682.344578297278,5,3,5,5_1,5_0,5_0_1 -24319,2,50.0,0.0,1,300,808.0,0.0,0.0,54,37,3285.8867294396014,1242.2070057833494,1116.796775881352,4328.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,112146,2,1,1,0,2,,0.0,,43,3.0,0.0,9.0,5.0,3.0,1,1,1152.69884178847,808.0,46909.38863345298,1,1,0,1,440.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09226298031335944,15636.462877817661,3,2,3_0,3_1_0,3_0_0,3_1_0 -24320,2,56.0,0.0,2,300,800.0,0.0,0.0,67,62,0.0,0.0,1105.7393820607444,860.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,118441,2,1,1,0,1,,420.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,1185.59932061185,800.0,39407.27301746143,4,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021823382694329863,15762.909206984574,3,2,3_0,3_1_0,3_0_0,3_0_1 -24321,2,40.0,0.0,8,300,1150.0,0.0,0.0,54,47,1194.8679016144006,0.0,1589.5003617123202,1980.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,2,2.0,1,1999.0,6,118392,2,1,2,0,1,,530.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,1067.72461772477,1150.0,50381.16640242532,1,1,1,2,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039300400157164364,19377.37169324051,5,3,5,5_1,5_0,5_0_0 -24322,2,63.0,0.0,1,300,920.0,0.0,0.0,68,78,0.0,0.0,1271.600289369856,984.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110007,2,2,5,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,3,3,1039.04454268758,920.0,16834.523923237644,4,5,1,2,79.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058451311393589764,11223.015948825096,2,1,2_0,2_1_0,2_0_0,2_1_0 -24323,2,39.0,0.0,1,300,1562.0,0.0,0.0,67,62,0.0,621.1035028916747,2158.9561434736033,2332.0,292.4555907123326,0.0,44,0,0,0,0,0,0,0,0,1,5.0,1,,1,100595,2,1,1,0,1,,798.0,,43,2.0,3.0,6.0,4.0,2.1,2,2,1039.90930266624,1562.0,43965.662196101104,4,1,1,2,160.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0530413937494794,20936.029617191,5,3,5,5_1,5_0,5_1_0 -24324,2,57.0,0.0,5,300,1000.0,0.0,0.0,78,68,0.0,621.1035028916747,1382.1742275759307,1960.0,619.317721508469,0.0,71,2,2,2,1,1,2,2,2,2,20.0,1,,3,123757,1,1,3,0,2,,294.0,,42,3.0,1.0,4.0,4.0,2.5,1,1,1252.18973250865,1000.0,45391.26185334278,5,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.04318011705276394,18156.504741337114,4,2,4_0,4_1_0,4_0_0,4_0_0 -24325,2,74.0,0.0,6,300,750.0,0.0,0.0,71,77,0.0,0.0,1036.630670681948,930.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,118112,2,1,1,0,1,,0.0,,41,0.0,5.0,6.0,2.0,1.5,1,1,1150.05108676507,750.0,23933.784577156905,5,5,0,1,115.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03885720609717608,15955.85638477127,3,2,3_0,3_1_0,3_0_0,3_0_0 -24326,2,36.0,0.0,9,300,1700.0,0.0,0.0,42,38,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,113779,2,1,1,0,1,,220.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1084.66372358331,1700.0,66724.72225556051,1,4,1,2,98.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02547781305838752,27801.967606483548,7,4,7,7_1,7_0,7_0_0 -24327,2,56.0,0.0,7,300,650.0,0.0,0.0,69,11,0.0,0.0,898.4132479243549,1650.0,1720.3270041901917,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,130719,2,1,2,0,1,,380.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,1107.34237456195,650.0,56990.05943003013,1,1,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028952417605842242,37993.37295335342,9,5,9,9_1,9_0,9_0_0 -24328,0,63.0,0.0,2,300,430.0,0.0,0.0,0,78,2240.377315527001,0.0,594.3349178576501,1980.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109234,2,1,1,0,1,,150.0,,11,0.0,5.0,3.0,1.0,1.0,3,2,1213.78187972801,430.0,21921.13423773853,0,5,5,0,60.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09032379340076814,21921.13423773853,6,3,6,6_1,6_0,6_0_1 -24329,2,68.0,0.0,1,300,700.0,0.0,0.0,75,71,1642.9433647198007,0.0,967.5219593031513,1860.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103460,2,3,2,1,1,,100.0,,41,0.0,3.0,7.0,2.0,1.5,4,3,1105.80694153465,700.0,29579.32370849148,5,5,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0628817622177765,19719.54913899432,5,3,5,5_1,5_0,5_1_0 -24330,2,29.0,0.0,1,300,0.0,0.0,0.0,55,62,0.0,0.0,0.0,814.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,114219,2,1,1,0,1,,565.0,390.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1082.95570968802,0.0,34758.417994076226,1,1,2,3,60.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023418787360769053,16551.627616226775,4,2,4_0,4_1_0,4_0_0,4_1_0 -24331,2,28.0,0.0,1,300,841.0,0.0,0.0,0,67,0.0,0.0,1162.4085253913577,856.0,25.804905062852875,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,1,100256,2,2,5,0,1,,120.0,350.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1266.19897760496,841.0,20407.19304313236,0,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041945994149747604,20407.19304313236,5,3,5,5_1,5_0,5_1_0 -24332,2,86.0,0.0,1,300,0.0,0.0,0.0,0,71,0.0,0.0,0.0,1509.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128296,2,1,1,0,1,,0.0,,11,0.0,5.0,5.0,1.0,1.0,2,2,1108.07688400992,0.0,12433.12551187378,0,5,0,1,90.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12136932089673569,12433.12551187378,2,1,2_0,2_1_0,2_0_0,2_1_0 -24333,2,67.0,0.0,2,300,364.0,0.0,0.0,0,77,3127.5667324756932,0.0,503.1114188376387,2518.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,119417,2,2,3,0,1,,201.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1119.42239917779,364.0,17248.734203937867,0,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14598172655620975,17248.734203937867,4,2,4_0,4_1_0,4_0_0,4_0_1 -24334,2,39.0,0.0,1,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1893.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,115586,2,1,1,0,1,,682.0,350.0,32,1.0,0.0,4.0,4.0,2.1,2,2,1125.08277722206,0.0,16550.247578243998,0,1,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11437895361084681,7881.070275354285,1,1,1_0,1_1_0,1_0_0,1_1_0 -24335,2,32.0,0.0,9,300,1238.0,0.0,0.0,42,47,0.0,0.0,1711.131693739002,1238.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,107528,2,1,1,0,1,,454.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,985.941858582955,1238.0,51489.50064103061,1,1,1,2,87.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024043736773268896,24518.809829062193,7,4,7,7_1,7_0,7_0_0 -24336,2,35.0,0.0,9,300,982.0,0.0,0.0,67,47,0.0,0.0,1357.2950914795638,1042.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,129583,2,1,1,0,1,,403.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1248.48869805332,982.0,46074.19592155456,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02261569581754825,25596.775511974753,7,4,7,7_1,7_0,7_0_0 -24337,2,22.0,0.0,9,300,0.0,0.0,0.0,54,63,0.0,0.0,0.0,791.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,111065,2,1,1,0,1,,993.0,430.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1147.3821169861,0.0,29456.271187685732,1,1,2,3,75.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026853364940864596,19637.51412512382,5,3,5,5_1,5_0,5_0_0 -24338,2,32.0,0.0,9,300,800.0,0.0,0.0,52,38,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,103910,2,1,1,0,1,,223.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1293.76605405205,800.0,66420.47541180531,1,1,1,2,122.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01204447867980498,36900.26411766961,9,5,9,9_1,9_0,9_0_0 -24339,2,54.0,0.0,6,300,610.0,0.0,0.0,68,64,0.0,310.55175144583734,843.1262788213177,1030.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,104568,2,1,2,0,1,,370.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1150.05108676507,610.0,37637.32766357394,1,1,0,1,89.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027366448787405594,25091.551775715958,7,4,7,7_1,7_0,7_0_0 -24340,1,47.0,89.0,8,300,367.0,0.0,0.0,0,62,1941.6603401234008,0.0,507.2579415203665,1697.0,51.60981012570575,0.0,42,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,110615,2,2,3,0,1,,570.0,,32,1.0,0.0,7.0,4.0,2.1,1,1,1114.42784398035,367.0,31628.98666699272,0,1,1,2,140.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05365331548136349,15061.422222377485,3,2,3_1,3_1_1,3_0_1,3_0_0 -24341,2,32.0,0.0,9,300,778.0,0.0,0.0,68,63,0.0,0.0,1075.331549054074,898.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,131268,2,1,1,0,1,,345.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,985.941858582955,778.0,39062.66966813083,4,1,1,2,82.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02298870014848552,18601.27127053849,4,2,4_0,4_1_0,4_0_0,4_0_0 -24342,2,59.0,0.0,7,300,1228.0,0.0,0.0,0,68,0.0,0.0,1697.3099514632427,1258.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,105750,2,1,2,0,1,,216.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1113.95027467945,1228.0,17192.517048344802,0,4,1,2,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07317136847749196,17192.517048344802,4,2,4_0,4_1_0,4_0_0,4_0_0 -24343,2,32.0,0.0,2,300,650.0,0.0,0.0,46,11,2240.377315527001,0.0,898.4132479243549,2180.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126189,2,1,1,0,1,,0.0,,43,2.0,0.0,7.0,4.0,2.1,3,3,1166.03875658608,650.0,40274.60441842673,1,1,1,2,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05412840253752041,19178.38305639368,5,3,5,5_1,5_0,5_0_1 -24344,2,26.0,0.0,1,300,1230.0,0.0,0.0,46,46,0.0,0.0,1700.0742999183947,1290.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,111376,2,2,1,0,1,,180.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1295.73877058374,1230.0,47595.9018518282,1,1,1,2,98.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027103173798784734,26442.167695460113,7,4,7,7_1,7_0,7_1_0 -24345,2,59.0,0.0,2,300,601.0,0.0,0.0,0,68,1792.3018524216009,0.0,830.6867107731342,6725.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119635,2,2,5,0,1,,0.0,,22,1.0,4.0,6.0,2.0,1.5,1,1,1040.15637953531,601.0,31718.922470801048,0,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.21201855158196875,21145.948313867364,5,3,5,5_1,5_0,5_0_1 -24346,2,58.0,0.0,5,300,1418.0,0.0,0.0,68,62,0.0,0.0,1959.9230547026696,1418.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,3,105187,2,2,3,0,1,,0.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1037.61316037475,1418.0,41352.00353214883,1,1,0,1,98.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03429096244145911,27568.00235476589,7,4,7,7_1,7_0,7_0_0 -24347,2,56.0,0.0,5,300,600.0,0.0,0.0,78,62,2031.275432744481,0.0,829.3045365455583,2050.0,154.82943037711726,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,3,126234,2,1,1,0,1,,330.0,,42,1.0,3.0,4.0,2.0,1.5,3,2,1152.8698944587,600.0,30081.006236945923,5,1,0,1,95.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06814931601198103,20054.004157963947,5,3,5,5_1,5_0,5_0_0 -24348,1,38.0,171.0,9,300,1200.0,0.0,0.0,69,64,0.0,0.0,1658.6090730911167,1300.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,100431,2,1,1,0,1,,190.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,994.990985306914,1200.0,44165.27886104143,1,1,1,2,88.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.029434887167592214,18402.19952543393,4,2,4_1,4_1_1,4_0_1,4_0_0 -24349,2,41.0,0.0,5,300,366.0,0.0,0.0,67,64,896.1509262108004,248.44140115666985,505.87576729279056,1266.0,103.2196202514115,0.0,60,1,2,2,2,1,2,2,2,2,15.0,1,,3,127891,2,1,2,0,1,,264.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1122.54907374847,366.0,47364.482501458064,4,1,1,2,85.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.02672888909872556,22554.51547688479,6,3,6,6_1,6_0,6_0_0 -24353,2,24.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,756.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,2,,1,118601,2,1,0,0,1,,164.0,385.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1845.42699166078,0.0,18244.0,0,1,2,3,35.0,7,5,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04143828107871081,18244.0,4,2,4_0,4_0_0,4_2_0,4_1_0 -24354,2,60.0,0.0,2,111,399.0,0.0,0.0,0,54,0.0,0.0,551.4875168027963,434.0,60.21144514665671,0.0,44,0,0,0,0,0,0,0,0,2,15.0,2,,2,130192,2,1,0,1,1,289.0,186.0,263.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1487.75552530248,399.0,23370.331176604683,0,1,2,3,63.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018570554123531806,23370.331176604683,6,3,6,6_0,6_2,6_0_1 -24356,2,68.0,0.0,1,111,900.0,2400.0,0.0,77,72,0.0,0.0,1243.9568048183376,3300.0,0.0,4352.7669620338775,50,0,0,0,0,0,0,0,0,0,,1,,1,124500,2,1,3,0,1,,350.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1136.67685500494,900.0,54676.32449104077,5,5,0,1,130.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06035519085670684,36450.882994027175,9,5,9,9_1,9_2,9_1_0 -24357,2,66.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2841.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115503,2,2,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1695.80702984701,0.0,12893.710642544056,0,5,0,1,83.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.22033998425758394,12893.710642544056,2,1,2_0,2_0_0,2_2_0,2_0_1 -24358,2,47.0,0.0,1,111,477.0,709.0,0.0,0,55,0.0,0.0,659.2971065537189,1186.0,0.0,1285.8799067008413,70,0,0,0,0,0,0,0,0,0,,2,,1,126722,2,1,0,0,1,,240.0,510.0,32,2.0,1.0,3.0,2.0,1.5,1,1,1616.02180211911,477.0,33928.41019203468,0,1,2,3,57.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0349559555925917,22618.94012802312,6,3,6,6_0,6_2,6_1_0 -24359,1,28.0,406.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1045.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,113793,2,2,5,0,2,,508.0,650.0,32,1.0,0.0,5.0,3.0,1.6,2,2,1433.70998383903,0.0,9837.75868258148,0,4,2,3,110.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.10622338214600183,6148.599176613425,1,1,1_1,1_1_1,1_2_1,1_0_0 -24360,2,77.0,0.0,2,111,323.0,1310.0,0.0,77,77,0.0,0.0,446.44227550702556,1633.0,0.0,2375.885300110158,31,0,0,0,0,0,0,0,0,0,,1,,2,123712,2,2,3,0,1,,367.0,,41,0.0,2.0,7.0,3.0,2.0,4,3,1268.78570659201,323.0,47550.45563680675,5,5,0,1,125.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034342467977025344,23775.227818403375,6,3,6,6_1,6_2,6_0_1 -24361,2,67.0,0.0,2,111,310.0,0.0,0.0,78,75,1881.916945042681,165.62760077111324,428.47401054853844,1780.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128098,2,2,2,0,1,,193.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1217.85308417236,310.0,42897.0,5,5,0,1,108.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04149474322213675,28598.0,8,4,8,8_1,8_2,8_0_1 -24362,1,63.0,99.0,6,111,233.0,570.0,0.0,0,77,0.0,0.0,322.04659502519183,803.0,0.0,1033.782153483046,70,2,2,2,1,2,2,1,2,0,,2,,4,108297,2,2,0,0,1,,135.0,343.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1386.91691697867,233.0,10805.995667506526,0,5,2,3,53.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.07431059799650018,10805.995667506526,2,1,2_1,2_0_1,2_2_1,2_0_0 -24363,1,46.0,326.0,2,111,409.0,215.0,0.0,0,68,0.0,0.0,565.3092590785556,624.0,0.0,389.9353736822015,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,102431,2,1,0,1,1,543.0,180.0,303.0,32,1.0,1.0,4.0,2.0,1.5,2,2,348.52209657817,409.0,12154.794370729065,0,1,2,3,80.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.051337766889969313,8103.19624715271,1,1,1_1,1_0_1,1_2_1,1_0_1 -24364,1,36.0,360.0,6,111,1100.0,720.0,0.0,53,85,0.0,0.0,1520.3916503335236,1820.0,0.0,1305.830088610163,50,2,2,2,1,2,2,2,2,0,,1,,4,131102,1,2,5,0,1,,350.0,608.0,42,1.0,3.0,5.0,6.0,2.6999999999999997,2,2,1114.41301642103,1100.0,31138.02179822491,1,6,2,3,116.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.05844944202922207,11532.600666009226,2,1,2_1,2_1_1,2_2_1,2_0_0 -24365,2,27.0,0.0,9,111,550.0,0.0,0.0,0,64,0.0,0.0,760.1958251667618,550.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,119988,2,1,0,0,1,,240.0,272.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1387.36069950457,550.0,10847.51065882374,0,1,2,3,55.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.050702877120716264,10847.51065882374,2,1,2_0,2_0_0,2_2_0,2_0_0 -24366,2,84.0,0.0,7,111,640.0,0.0,0.0,0,74,0.0,0.0,884.5915056485956,640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,109096,2,2,0,0,1,,140.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1463.90704879054,640.0,20201.55140233633,0,5,0,1,48.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03168073516997231,20201.55140233633,5,3,5,5_0,5_2,5_0_0 -24367,2,89.0,0.0,7,111,380.0,0.0,0.0,0,86,0.0,0.0,525.2262064788536,380.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,109562,2,1,0,0,1,,98.0,609.0,11,0.0,3.0,2.0,1.0,1.0,2,2,1656.05106730519,380.0,28345.28329380604,0,5,2,3,49.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013406110500332764,28345.28329380604,8,4,8,8_0,8_2,8_0_0 -24368,2,86.0,0.0,7,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,630.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,104839,2,1,0,0,1,,342.0,652.0,41,0.0,3.0,2.0,2.0,1.5,4,4,1482.04828214331,0.0,30058.204326234372,5,5,2,3,49.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02095933586592014,20038.80288415625,5,3,5,5_0,5_2,5_0_0 -24369,1,59.0,250.0,9,111,434.0,0.0,0.0,0,77,0.0,0.0,599.8636147679539,434.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,117779,2,1,0,0,1,,147.0,336.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1804.46747163027,434.0,9291.17551286361,0,7,2,3,30.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04671098930368155,9291.17551286361,1,1,1_1,1_0_1,1_2_1,1_0_0 -24370,2,62.0,0.0,5,111,311.0,694.0,0.0,0,45,0.0,0.0,429.8561847761144,1005.0,0.0,1258.6751131881294,60,0,0,0,0,0,0,0,0,2,8.0,1,,3,132092,2,1,2,0,1,,180.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,1263.77928363607,311.0,41719.36304679623,0,1,0,1,98.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02408953365066242,41719.36304679623,9,5,9,9_1,9_2,9_0_0 -24371,2,93.0,0.0,6,111,350.0,1755.0,0.0,78,74,0.0,0.0,483.76097965157567,2105.0,0.0,3182.9608409872726,50,0,0,0,0,0,0,0,0,0,,1,,4,110845,2,1,2,0,1,,162.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1220.83807647651,350.0,54370.05737737314,5,5,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038716162931180305,36246.70491824876,9,5,9,9_1,9_2,9_0_0 -24372,2,45.0,0.0,7,111,255.0,600.0,0.0,0,38,0.0,0.0,352.4544280318623,855.0,0.0,1088.1917405084694,70,0,0,0,0,0,0,0,0,2,50.0,2,,5,116828,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1559.7058525533,255.0,31538.697646256187,0,1,1,2,63.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027109553146101233,31538.697646256187,8,4,8,8_0,8_2,8_0_0 -24373,2,60.0,0.0,7,111,476.0,975.0,0.0,56,75,0.0,0.0,657.9149323261429,1451.0,0.0,1768.3115783262626,60,0,0,0,0,0,0,0,0,0,,1,,5,122732,2,2,2,0,1,,240.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,1133.1924432949,476.0,36361.373226250726,4,5,0,1,82.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039904983537653226,24240.91548416715,7,4,7,7_1,7_2,7_0_0 -24374,2,76.0,0.0,2,111,482.0,1149.0,0.0,77,78,0.0,0.0,666.2079776915986,1631.0,0.0,2083.887183073719,50,0,0,0,0,0,0,0,0,0,,1,,2,132908,2,1,1,0,1,,308.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1217.85308417236,482.0,40950.4576394442,5,5,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03982861472173127,27300.305092962797,7,4,7,7_1,7_2,7_0_1 -24375,2,35.0,0.0,2,111,159.0,333.0,0.0,0,43,0.0,0.0,219.76570218457294,492.0,0.0,603.9464159822005,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,130105,2,1,0,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,1606.96201429036,159.0,17481.397485448702,0,1,1,2,68.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028144203025503807,17481.397485448702,4,2,4_0,4_0_0,4_2_0,4_0_1 -24376,2,46.0,0.0,2,111,460.0,447.0,0.0,54,52,0.0,0.0,635.800144684928,907.0,0.0,810.7028466788097,33,0,0,0,0,0,0,0,0,1,5.0,1,,2,119942,2,1,3,0,1,,340.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,1151.05019745196,460.0,58045.899494167264,4,1,0,1,110.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015625565421570214,23218.359797666904,6,3,6,6_1,6_2,6_0_1 -24377,2,76.0,0.0,5,111,419.0,0.0,0.0,0,77,0.0,0.0,579.1310013543149,469.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,129310,2,2,0,1,1,111.0,275.0,237.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1651.27193336772,419.0,17441.291698875815,0,5,2,3,61.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02689021020330906,17441.291698875815,4,2,4_0,4_0_0,4_2_0,4_0_0 -24378,1,77.0,139.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,331.72181461822333,280.0,68.81308016760767,0.0,44,2,2,2,2,2,2,2,1,0,,2,,2,119238,2,2,0,1,1,361.0,119.0,259.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1506.64832196511,240.0,9705.816469125586,0,5,2,3,65.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.02884868067417987,9705.816469125586,1,1,1_1,1_0_1,1_2_1,1_0_1 -24379,2,54.0,0.0,6,111,649.0,0.0,0.0,0,63,0.0,331.2552015422265,897.0310736967789,1019.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,109555,2,2,1,0,1,,170.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,1273.01978352221,649.0,30360.839703438356,0,1,0,1,130.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03356297157632958,30360.839703438356,8,4,8,8_1,8_2,8_0_0 -24380,2,67.0,0.0,2,111,200.0,692.0,0.0,0,77,0.0,0.0,276.4348455151861,892.0,0.0,1255.0478073864347,71,0,0,0,0,0,0,0,0,0,,1,,2,126320,2,2,1,0,1,,146.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1187.73599930045,200.0,14621.133985299282,0,5,0,1,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06100757991116525,14621.133985299282,3,2,3_0,3_1_0,3_2_0,3_0_1 -24381,1,44.0,388.0,7,111,200.0,609.0,0.0,0,56,0.0,0.0,276.4348455151861,809.0,0.0,1104.5146166160964,60,0,0,0,0,0,0,0,0,0,,2,,5,116380,2,2,0,0,1,,346.0,466.0,32,1.0,1.0,4.0,3.0,1.8,2,2,1588.36616696677,200.0,13394.932563823131,0,1,2,3,80.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.060395974085374435,7441.6292021239615,1,1,1_1,1_0_1,1_2_1,1_0_0 -24382,2,39.0,0.0,7,111,0.0,0.0,0.0,42,34,0.0,0.0,0.0,1132.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,5,113462,2,2,2,0,1,,1634.0,670.0,42,1.0,0.0,4.0,5.0,2.4,1,1,1163.2265669716,0.0,46269.17471733573,6,1,2,3,100.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024465532547652557,19278.822798889887,5,3,5,5_1,5_2,5_0_0 -24383,2,42.0,0.0,8,111,1360.0,0.0,0.0,48,38,0.0,0.0,1879.7569495032656,1360.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,1,2002.0,6,110505,2,1,2,0,1,,300.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,2,2,1139.01652995388,1360.0,115272.44232941316,1,1,1,2,100.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011798136419401428,44335.554742081986,10,5,10,10_1,10_2,10_0_0 -24384,2,35.0,0.0,9,111,1100.0,0.0,0.0,46,47,0.0,0.0,1520.3916503335236,1125.0,43.00817510475479,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,106593,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1272.53590727163,1100.0,58884.01783659277,1,1,1,2,85.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0191053539030226,32713.34324255154,8,4,8,8_1,8_2,8_0_0 -24385,2,28.0,0.0,9,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,481.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,2,2008.0,6,104048,2,1,0,0,1,,186.0,370.0,12,1.0,0.0,2.0,1.0,1.0,4,4,471.234123473576,0.0,18791.755334165195,0,1,2,3,43.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02559633155320495,18791.755334165195,5,3,5,5_0,5_2,5_0_0 -24386,2,78.0,0.0,2,111,266.0,0.0,0.0,0,77,1626.5139310726026,0.0,367.65834453519756,1385.0,51.60981012570575,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,103354,2,1,1,0,1,,109.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1266.87684235217,266.0,40475.707129626746,0,5,0,1,90.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03421805567384962,40475.707129626746,9,5,9,9_1,9_2,9_0_1 -24387,2,50.0,0.0,6,111,1659.0,0.0,0.0,11,46,0.0,0.0,2293.027043548469,1779.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,2,8.0,1,,4,123674,2,1,1,0,1,,0.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1260.64976896507,1659.0,66151.96055171035,1,1,0,1,114.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02689262699341122,33075.980275855174,8,4,8,8_1,8_2,8_0_0 -24388,2,36.0,0.0,9,111,675.0,890.0,0.0,55,43,0.0,41.40690019277831,932.9676036137531,1605.0,0.0,1614.1510817542296,50,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,110885,2,1,1,0,1,,340.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1114.8174083866,675.0,57492.50483730318,1,1,0,1,145.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027916682436118508,27377.38325585866,7,4,7,7_1,7_2,7_0_0 -24389,1,50.0,254.0,1,111,516.0,0.0,0.0,0,85,0.0,0.0,713.2019014291802,516.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,3,,1,121083,2,2,0,0,1,,80.0,340.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1300.49420600976,516.0,9003.600661711953,0,7,2,3,30.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.057310404957685815,9003.600661711953,1,1,1_1,1_0_1,1_2_1,1_1_0 -24390,2,59.0,0.0,6,120,1040.0,0.0,0.0,67,62,0.0,182.19036084822457,1437.4611966789678,1216.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,4,109506,2,1,1,0,1,,470.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,522.862533052857,1040.0,41662.527276736015,1,1,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02918689958299778,27775.018184490677,7,4,7,7_1,7_0,7_0_0 -24391,2,32.0,0.0,1,120,1630.0,0.0,0.0,64,67,2240.377315527001,0.0,2252.943990948767,3220.0,154.82943037711726,0.0,70,1,2,2,1,1,2,2,2,2,10.0,1,,1,108572,2,2,3,0,1,,189.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,584.703817572027,1630.0,46702.025743667364,1,1,1,2,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.06894775866198098,19459.177393194735,5,3,5,5_1,5_0,5_1_0 -24392,2,23.0,0.0,1,120,1300.0,0.0,0.0,67,67,0.0,0.0,1796.8264958487098,1330.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,130868,2,2,5,0,1,,400.0,475.0,43,2.0,0.0,5.0,2.0,1.5,1,1,586.796012792645,1300.0,19101.979150224015,4,1,2,3,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0696262931469278,12734.65276681601,2,1,2_0,2_1_0,2_0_0,2_1_0 -24393,2,41.0,0.0,8,120,1592.0,0.0,0.0,54,23,0.0,258.79312620486445,2200.4213703008813,1842.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,1999.0,6,131452,2,1,1,0,1,,533.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,510.796673514519,1592.0,42353.91655717853,1,1,1,2,82.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043490665084379335,20168.531693894536,5,3,5,5_1,5_0,5_0_0 -24394,2,34.0,0.0,9,120,1300.0,0.0,0.0,67,62,0.0,0.0,1796.8264958487098,1390.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,124807,2,2,1,0,1,,260.0,530.0,43,2.0,0.0,3.0,3.0,1.8,2,2,646.574048231534,1300.0,40826.21645365138,1,1,2,3,77.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03404675036634903,22681.231363139657,6,3,6,6_1,6_0,6_0_0 -24395,2,81.0,0.0,1,120,720.0,0.0,0.0,71,71,2240.377315527001,103.51725048194578,995.16544385467,2410.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,122654,2,1,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,516.352962242238,720.0,29744.980589826806,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08102207337880238,19829.987059884537,5,3,5,5_1,5_0,5_1_0 -24396,2,49.0,0.0,9,120,1546.0,0.0,0.0,62,63,0.0,0.0,2136.8413558323887,1636.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,107748,2,1,1,0,1,,454.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,580.815135314961,1546.0,54333.43818018717,1,1,1,2,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03011037134396865,27166.719090093586,7,4,7,7_1,7_0,7_0_0 -24397,2,59.0,0.0,2,120,292.0,60.0,0.0,0,68,1792.3018524216009,0.0,403.5948744521717,1552.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,117989,2,2,1,0,1,,223.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,564.086938699592,292.0,19290.747790628815,0,1,1,2,108.0,0,0,5,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08045307609868502,19290.747790628815,5,3,5,5_1,5_0,5_0_1 -24398,2,30.0,0.0,5,120,825.0,0.0,0.0,0,67,0.0,0.0,1140.2937377501428,885.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,117722,2,2,5,0,1,,228.0,513.0,12,1.0,2.0,5.0,1.0,1.0,4,3,585.040749483985,825.0,18753.98073236212,0,1,2,3,88.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04718998129676182,18753.98073236212,5,3,5,5_1,5_0,5_0_0 -24399,2,23.0,0.0,1,120,661.0,0.0,0.0,0,67,0.0,0.0,913.6171644276901,691.0,51.60981012570575,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,1,128179,1,2,5,0,1,,0.0,230.0,12,1.0,0.0,2.0,1.0,1.0,2,2,614.294031820285,661.0,19391.349534914414,0,1,3,4,30.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03563444610989267,19391.349534914414,5,3,5,5_1,5_0,5_1_0 -24400,2,37.0,0.0,9,120,1078.0,0.0,0.0,46,64,0.0,0.0,1489.983817326853,1108.0,51.60981012570575,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,106827,2,1,1,0,1,,330.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,635.162167178298,1078.0,43065.120528199375,1,1,1,2,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025728477858885195,23925.066960110762,6,3,6,6_1,6_0,6_0_0 -24401,2,41.0,0.0,8,120,980.0,0.0,0.0,0,67,0.0,569.3448776507017,1354.530743024412,1590.0,103.2196202514115,0.0,43,2,2,2,2,1,2,2,2,0,,1,2000.0,6,120676,2,1,3,0,1,,250.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,553.849901264359,980.0,29882.266622493447,0,1,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.0532088151172291,19921.5110816623,5,3,5,5_1,5_0,5_0_0 -24402,2,68.0,0.0,1,120,544.0,0.0,0.0,0,68,746.7924385090004,0.0,751.9027798013062,1134.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,1,133116,2,2,5,0,1,,101.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,664.749406033307,544.0,14153.58248608539,0,1,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08012105776857932,14153.58248608539,3,2,3_0,3_1_0,3_0_0,3_1_0 -24403,2,52.0,0.0,5,120,0.0,0.0,0.0,0,67,0.0,0.0,0.0,861.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,8,,3,125352,2,1,0,0,1,,166.0,350.0,12,1.0,3.0,2.0,1.0,1.0,2,2,786.428616916681,0.0,16813.561936798316,0,1,2,3,55.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05120866139111234,16813.561936798316,4,2,4_0,4_0_0,4_0_0,4_0_0 -24404,2,52.0,0.0,2,120,0.0,0.0,0.0,22,22,0.0,0.0,0.0,1532.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,132297,2,1,1,0,1,,413.0,,43,2.0,0.0,4.0,6.0,3.3,2,2,582.1814218309,0.0,38950.73038814686,1,1,0,1,100.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03933173998878862,11803.251632771777,2,1,2_0,2_1_0,2_0_0,2_0_1 -24405,2,67.0,0.0,2,120,589.0,0.0,0.0,75,78,1194.8679016144006,0.0,814.1006200422231,1449.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111966,2,2,1,0,1,,130.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,579.521007760734,589.0,36792.59579884858,5,5,0,1,95.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039382923888326093,24528.39719923239,7,4,7,7_1,7_0,7_0_1 -24406,2,42.0,0.0,8,120,2220.0,0.0,0.0,54,37,0.0,0.0,3068.426785218566,2250.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,112182,2,1,2,0,1,,452.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,507.222832846124,2220.0,68630.93331542274,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03278405073786721,32681.396816867968,8,4,8,8_1,8_0,8_0_0 -24407,2,40.0,0.0,9,120,1530.0,0.0,0.0,42,42,0.0,0.0,2114.7265681911736,1560.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,114790,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,561.503382469726,1530.0,47513.48083473263,1,1,1,2,140.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032832787086809916,22625.467064158394,6,3,6,6_1,6_0,6_0_0 -24408,2,56.0,0.0,6,120,1261.0,0.0,0.0,69,69,0.0,0.0,1742.9217009732483,1261.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,6.0,1,,4,120609,2,1,1,0,1,,277.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,528.271695254168,1261.0,38249.20623700686,1,1,0,1,78.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03296800441259766,25499.47082467124,7,4,7,7_1,7_0,7_0_0 -24409,2,56.0,0.0,6,120,1500.0,0.0,0.0,56,62,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,124421,2,1,1,0,1,,324.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,589.356080303712,1500.0,25181.353147133443,1,1,0,1,112.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06195060253057072,16787.56876475563,4,2,4_0,4_1_0,4_0_0,4_0_0 -24410,2,60.0,0.0,5,120,650.0,0.0,0.0,52,42,2240.377315527001,258.79312620486445,898.4132479243549,2500.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,106905,2,1,1,0,1,,420.0,,43,2.0,3.0,5.0,3.0,2.0,2,2,625.761843138139,650.0,71864.09142351625,1,1,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03478788850563439,35932.045711758125,9,5,9,9_1,9_0,9_0_0 -24411,2,83.0,0.0,2,120,486.0,0.0,0.0,71,71,1795.2890221756368,0.0,671.7366746019022,1718.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128110,2,1,1,0,1,,0.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,601.834154497021,486.0,22203.510174194726,5,5,0,1,98.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07737515314117707,14802.340116129817,3,2,3_0,3_1_0,3_0_0,3_0_1 -24412,2,40.0,0.0,7,120,790.0,0.0,0.0,67,47,1045.5094139126004,103.51725048194578,1091.917639784985,1710.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,112913,2,1,2,0,1,,370.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,507.222832846124,790.0,51982.68086071373,1,1,0,1,107.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032895571595891744,24753.657552720822,7,4,7,7_1,7_0,7_0_0 -24413,2,57.0,0.0,5,120,600.0,0.0,0.0,62,65,2389.735803228801,0.0,829.3045365455583,2320.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,111722,2,1,1,0,1,,160.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,522.862533052857,600.0,35444.08056519099,1,1,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0654552174299714,23629.38704346066,6,3,6,6_1,6_0,6_0_0 -24414,2,46.0,0.0,1,120,1130.0,0.0,0.0,52,64,0.0,517.5862524097289,1561.8568771608016,1690.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,113901,2,1,1,0,1,,200.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,563.361120863268,1130.0,39710.09980499393,1,1,0,1,125.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04255844251963996,15273.115309613053,3,2,3_0,3_1_0,3_0_0,3_1_0 -24415,2,46.0,0.0,2,120,2400.0,0.0,0.0,46,46,0.0,310.55175144583734,3317.2181461822333,2790.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,108680,2,1,2,0,1,,340.0,,43,2.0,0.0,8.0,5.0,2.4,1,1,584.703817572027,2400.0,107451.49272287799,1,1,1,2,180.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025965204663982937,44771.45530119916,10,5,10,10_1,10_0,10_0_1 -24416,2,76.0,0.0,1,120,515.0,0.0,0.0,0,71,0.0,0.0,711.8197272016042,573.0,99.77896624303112,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107985,2,1,1,0,1,,128.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,554.622697241377,515.0,12199.007113782536,0,5,0,1,63.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.046971035810989895,12199.007113782536,2,1,2_0,2_1_0,2_0_0,2_1_0 -24417,2,36.0,0.0,9,120,1429.0,0.0,0.0,21,63,0.0,0.0,1975.1269712060048,1429.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,105045,2,1,1,0,1,,233.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,610.40480246499,1429.0,45920.10009938332,1,1,1,2,113.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03111927014329811,19133.37504140972,5,3,5,5_1,5_0,5_0_0 -24418,2,33.0,0.0,7,120,1250.0,0.0,0.0,0,46,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,120984,1,3,3,0,2,,299.0,402.0,12,1.0,0.0,4.0,1.0,1.0,2,2,502.2365503984,1250.0,21680.775571281607,0,1,2,3,79.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05765476405077281,21680.775571281607,6,3,6,6_1,6_0,6_0_0 -24419,2,68.0,0.0,7,120,990.0,0.0,0.0,56,75,0.0,0.0,1368.3524853001713,1062.0,123.8635443016938,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,107436,2,1,2,0,1,,484.0,,42,1.0,3.0,5.0,3.0,2.0,3,3,580.815135314961,990.0,27348.238178928896,1,5,0,1,104.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038832483213424814,13674.119089464448,3,2,3_0,3_1_0,3_0_0,3_0_0 -24420,1,47.0,202.0,8,120,315.0,0.0,0.0,56,62,1523.4565745583607,41.40690019277831,435.3848816864181,1403.0,48.169156117325365,0.0,12,0,0,0,0,0,0,0,0,0,,1,2000.0,6,114445,2,1,2,0,1,,313.0,,43,2.0,0.0,4.0,6.0,3.0999999999999996,1,1,669.123384813293,315.0,21658.249582359054,1,4,1,2,106.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06477901155699872,6986.532123341632,1,1,1_1,1_1_1,1_0_1,1_0_0 -24421,2,93.0,0.0,1,120,1413.0,0.0,0.0,0,71,0.0,740.1483409459123,1953.01218356479,2184.0,96.33831223465073,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120466,2,3,4,0,2,,162.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,583.452054483193,1413.0,17799.24080645851,0,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12270186261020351,17799.24080645851,4,2,4_0,4_1_0,4_0_0,4_1_0 -24422,2,81.0,0.0,7,120,792.0,0.0,0.0,77,72,2419.607500769161,0.0,1094.681988240137,2540.0,220.20185653634454,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,104214,2,1,2,0,1,,402.0,,41,0.0,2.0,7.0,2.0,1.5,4,3,575.334358641639,792.0,112685.13504437511,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022540683817787985,75123.42336291674,10,5,10,10_1,10_0,10_0_0 -24423,2,67.0,0.0,2,120,455.0,0.0,0.0,0,75,0.0,0.0,628.8892735470484,615.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131931,2,2,1,0,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,565.4695317174,455.0,34523.32647701944,0,5,0,1,92.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01781404235218691,34523.32647701944,9,5,9,9_1,9_0,9_0_1 -24424,2,39.0,0.0,1,120,530.0,0.0,0.0,55,38,0.0,0.0,732.5523406152432,660.0,223.64251054472493,0.0,70,2,2,2,1,1,1,2,2,2,60.0,1,,1,124105,2,2,3,0,1,,295.0,450.0,43,2.0,0.0,3.0,4.0,2.1,1,1,560.402137995176,530.0,49194.92009711774,1,1,2,3,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.013416019351125411,23426.152427198922,6,3,6,6_1,6_0,6_1_0 -24425,2,64.0,0.0,5,120,282.0,0.0,0.0,0,78,2446.492028555485,0.0,389.77313217641245,1984.0,110.10092826817227,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,118972,1,2,2,0,1,,294.0,,11,0.0,5.0,6.0,1.0,1.0,2,2,603.894096187556,282.0,10813.468068514592,0,5,0,1,123.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.18347490254091398,10813.468068514592,2,1,2_0,2_1_0,2_0_0,2_0_0 -24426,2,31.0,0.0,1,120,792.0,0.0,0.0,65,62,0.0,0.0,1094.681988240137,825.0,56.77079113827632,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,118564,2,1,1,0,1,,283.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,543.948329391462,792.0,41947.649263757696,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01966737146133218,19975.071077979854,5,3,5,5_1,5_0,5_1_0 -24427,2,50.0,0.0,7,120,1237.0,0.0,0.0,62,62,0.0,41.40690019277831,1709.7495195114261,1367.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,5,109581,2,2,1,0,1,,327.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,585.102803615126,1237.0,54301.49575009666,1,1,0,1,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02517426050823962,27150.74787504833,7,4,7,7_1,7_0,7_0_0 -24428,2,55.0,0.0,1,120,840.0,0.0,0.0,78,43,1403.9697843969207,0.0,1161.0263511637818,1832.0,89.45700421788997,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,124658,2,1,2,0,1,,206.0,,42,2.0,2.0,4.0,4.0,2.5,2,2,583.645646758005,840.0,55858.27335298396,5,1,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03279729017800251,22343.309341193584,6,3,6,6_1,6_0,6_1_0 -24429,2,37.0,0.0,8,120,2100.0,0.0,0.0,33,62,0.0,0.0,2902.5658779094542,2250.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,101373,2,1,1,0,1,,250.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,558.811739398172,2100.0,54564.216665513646,1,1,1,2,108.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0412358160255982,22735.090277297353,6,3,6,6_1,6_0,6_0_0 -24430,2,23.0,0.0,9,120,1068.0,0.0,0.0,63,21,0.0,31.055175144583732,1476.1620750510938,1128.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,107774,2,1,1,0,1,,320.0,575.0,43,2.0,0.0,4.0,2.0,1.5,2,2,625.885426650435,1068.0,23435.769661904822,4,1,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0481315534447149,15623.846441269881,3,2,3_0,3_1_0,3_0_0,3_0_0 -24431,2,47.0,0.0,9,120,373.0,0.0,0.0,0,63,1159.0218645659686,0.0,515.5509868858221,1149.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,12.0,1,2004.0,6,119511,2,1,1,0,1,,261.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,544.822389851797,373.0,24585.43558326791,0,1,1,2,67.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04673498649671979,24585.43558326791,7,4,7,7_1,7_0,7_0_0 -24432,1,32.0,84.0,9,120,504.0,0.0,0.0,0,68,0.0,0.0,696.615810698269,533.0,49.88948312151556,0.0,70,0,0,0,0,0,0,0,0,2,14.0,1,2008.0,6,114366,2,1,1,0,1,,162.0,235.0,12,1.0,0.0,2.0,1.0,1.0,1,1,492.684346956299,504.0,14255.036571135855,0,1,2,3,44.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.037390293412451765,14255.036571135855,3,2,3_1,3_1_1,3_0_1,3_0_0 -24433,2,43.0,0.0,5,120,325.0,0.0,0.0,48,48,1003.6890373560965,434.77245202417225,449.20662396217745,1417.0,0.0,0.0,31,2,2,2,2,1,2,2,2,1,1.0,1,,3,128158,1,3,3,0,2,,252.0,440.0,43,2.0,0.0,5.0,4.0,2.3,2,2,579.826721806353,325.0,18056.662223688385,1,1,2,3,145.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.07847519006813172,7850.722705951473,1,1,1_0,1_1_0,1_0_0,1_0_0 -24434,1,27.0,57.0,9,120,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1911.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,101440,2,1,1,0,1,,379.0,600.0,43,2.0,1.0,4.0,3.0,1.8,2,2,684.528634012527,0.0,31108.064048250224,4,1,2,3,90.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06143101663401296,17282.257804583456,4,2,4_1,4_1_1,4_0_1,4_0_0 -24435,2,40.0,0.0,9,120,1233.0,0.0,0.0,56,48,0.0,0.0,1704.2208226011223,1233.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,103546,2,1,1,0,1,,553.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,507.222832846124,1233.0,61388.629912955876,1,4,1,2,111.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020085152604778677,29232.68091093137,8,4,8,8_1,8_0,8_0_0 -24436,2,44.0,0.0,9,120,759.0,1727.0,0.0,52,62,0.0,0.0,1049.0702387301312,2486.0,0.0,3132.1785597635444,33,0,0,0,0,0,0,0,0,2,12.0,1,2006.0,6,105283,2,1,1,0,1,,620.0,,43,3.0,0.0,5.0,5.0,2.8,2,2,529.362621171936,759.0,28207.487884947965,1,1,1,2,108.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08813262670322994,10074.102816052846,2,1,2_0,2_1_0,2_0_0,2_0_0 -24437,2,38.0,0.0,9,120,550.0,1196.0,0.0,54,63,0.0,0.0,760.1958251667618,1746.0,0.0,2169.1288694135487,50,0,0,0,0,0,0,0,0,2,13.0,1,2008.0,6,101677,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,608.147174481105,550.0,46975.24438713056,1,1,1,2,117.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03716851338996627,26097.35799285031,7,4,7,7_1,7_0,7_0_0 -24438,2,41.0,0.0,9,120,840.0,0.0,0.0,46,55,0.0,0.0,1161.0263511637818,898.0,99.77896624303112,0.0,44,0,0,0,0,0,0,0,0,2,12.0,1,2007.0,6,110710,2,1,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,549.258346215012,840.0,42041.7808832475,1,1,1,2,105.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02135970411181674,20019.895658689285,5,3,5,5_1,5_0,5_0_0 -24439,2,58.0,0.0,9,120,716.0,0.0,0.0,0,63,0.0,0.0,989.6367469443662,776.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,133616,2,1,1,0,1,,201.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,608.714377665983,716.0,30361.77377494363,0,4,0,1,101.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0255584540531819,30361.77377494363,8,4,8,8_1,8_0,8_0_0 -24440,2,37.0,0.0,9,120,1186.0,0.0,0.0,43,53,0.0,0.0,1639.2586339050536,1186.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,108131,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,567.748975196859,1186.0,55932.20034665333,1,1,1,2,145.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021204243577929677,23305.08347777222,6,3,6,6_1,6_0,6_0_0 -24442,2,54.0,0.0,7,212,350.0,0.0,0.0,69,11,746.7924385090004,0.0,483.76097965157567,970.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,115496,2,2,5,0,1,,130.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,694.440042689919,350.0,69409.15012816616,1,1,0,1,100.0,2,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013975102680393935,27763.660051266466,7,4,7,7_1,7_0,7_0_0 -24443,1,43.0,250.0,2,111,902.0,0.0,0.0,0,56,0.0,0.0,1246.7211532734893,902.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131127,2,1,0,1,1,60.0,332.0,356.0,32,1.0,0.0,4.0,4.0,2.3,2,2,243.313536396349,902.0,25205.809109138077,0,1,2,3,77.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.035785401535592454,10959.047438755686,2,1,2_1,2_0_1,2_2_1,2_0_1 -24444,2,41.0,0.0,9,212,1200.0,0.0,0.0,45,64,0.0,0.0,1658.6090730911167,1350.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,116966,2,1,1,0,1,,590.0,,43,2.0,4.0,5.0,5.0,2.8,2,2,878.610272026831,1200.0,44208.9563482285,1,1,1,2,140.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03053679868319479,15788.91298151018,3,2,3_0,3_1_0,3_0_0,3_0_0 -24445,1,87.0,44.0,2,111,75.0,600.0,0.0,0,78,0.0,0.0,103.66306706819479,675.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,132086,2,1,0,1,1,,0.0,263.0,11,0.0,0.0,3.0,1.0,1.0,1,1,260.817940107005,75.0,18162.045586349865,0,5,2,3,72.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03716541712169873,18162.045586349865,4,2,4_1,4_0_1,4_2_1,4_0_1 -24446,1,29.0,313.0,9,112,1500.0,0.0,0.0,85,47,0.0,0.0,2073.261341363896,1572.0,123.8635443016938,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,122415,2,1,1,0,1,,330.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,1319.66368653091,1500.0,21518.944623485088,7,1,1,2,111.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0730519097244374,8966.22692645212,1,1,1_1,1_1_1,1_0_1,1_0_0 -24447,2,22.0,0.0,2,111,0.0,0.0,0.0,63,54,0.0,0.0,0.0,351.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,117451,2,2,0,1,1,157.0,263.0,263.0,43,2.0,0.0,3.0,2.0,1.5,2,2,248.49699091932,0.0,17095.092759988052,1,4,2,3,64.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02053220798085013,11396.728506658701,2,1,2_0,2_0_0,2_2_0,2_0_1 -24448,2,26.0,0.0,9,120,911.0,0.0,0.0,46,63,0.0,186.3310508675024,1259.1607213216728,1126.0,60.21144514665671,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,123987,2,1,1,0,1,,253.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,1278.99989312115,911.0,14834.499019454737,1,1,1,2,115.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0759041473880112,9889.666012969825,2,1,2_0,2_1_0,2_1_0,2_0_0 -24449,2,25.0,0.0,9,212,0.0,0.0,0.0,56,48,0.0,0.0,0.0,1199.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2006.0,6,116574,2,2,5,0,1,,302.0,530.0,43,2.0,0.0,4.0,4.0,2.1,2,2,845.838272187214,0.0,20350.482456359183,1,1,2,3,98.0,2,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058917522106476286,9690.70593159961,1,1,1_0,1_1_0,1_0_0,1_0_0 -24450,2,27.0,0.0,7,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,790.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,5,122999,1,1,1,0,1,,151.0,400.0,12,1.0,0.0,3.0,1.0,1.0,3,3,228.255198615935,0.0,9722.678116673816,0,1,2,3,90.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08125333272580493,9722.678116673816,1,1,1_0,1_1_0,1_2_0,1_0_0 -24451,2,36.0,0.0,9,111,2400.0,0.0,0.0,0,54,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,107603,2,1,1,0,1,,361.0,,32,1.0,0.0,6.0,3.0,1.6,2,2,1296.66819782405,2400.0,33503.31867568516,0,1,1,2,150.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07163469455764053,20939.574172303222,5,3,5,5_1,5_2,5_0_0 -24452,2,86.0,0.0,1,212,0.0,0.0,0.0,0,77,0.0,0.0,0.0,811.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106998,2,2,5,0,1,,203.0,390.0,11,0.0,2.0,3.0,1.0,1.0,2,2,822.070374526081,0.0,12577.70093182593,0,5,2,3,65.0,2,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06447919253254701,12577.70093182593,2,1,2_0,2_1_0,2_0_0,2_1_0 -24453,1,23.0,250.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,447.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121073,2,1,0,1,1,648.0,0.0,268.0,42,1.0,0.0,3.0,3.0,1.8,5,5,260.328478753573,0.0,19247.4386774691,6,1,2,3,60.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02322386928933327,10693.021487482834,2,1,2_1,2_0_1,2_2_1,2_0_1 -24454,2,35.0,0.0,9,111,0.0,0.0,0.0,46,45,0.0,0.0,0.0,889.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,2012.0,6,118092,2,1,1,0,1,,284.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,232.256293888899,0.0,51331.0927755223,1,1,1,2,86.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017318937741842264,28517.273764179055,8,4,8,8_1,8_3,8_0_0 -24455,2,54.0,0.0,1,212,420.0,0.0,0.0,0,43,2688.452778632401,0.0,580.5131755818909,2379.0,273.53199366624045,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,110250,2,3,4,0,1,,380.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,964.771766345079,420.0,28600.00181301068,0,1,1,2,136.0,2,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08318181290875822,17875.001133131675,4,2,4_0,4_1_0,4_0_0,4_1_0 -24456,1,62.0,187.0,2,111,240.0,132.0,0.0,67,78,0.0,0.0,331.72181461822333,372.0,0.0,239.40218291186326,50,0,0,0,0,0,0,0,0,0,,2,,2,117382,1,1,0,1,1,,296.0,400.0,42,1.0,4.0,4.0,2.0,1.5,3,3,247.041356945291,240.0,22585.10688041157,4,5,2,3,40.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.016471031196343005,15056.737920274381,3,2,3_1,3_0_1,3_2_1,3_0_1 -24457,1,40.0,70.0,9,400,930.0,0.0,0.0,21,62,0.0,0.0,1285.4220316456153,930.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,3.0,1,2011.0,6,105583,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,5,4,1899.24571104739,930.0,27346.18885914587,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03400839527548877,10517.764945825336,2,1,2_1,2_1_1,2_0_1,2_0_0 -24458,1,40.0,245.0,6,111,1200.0,0.0,0.0,0,68,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,108557,1,3,0,0,1,,140.0,307.0,12,1.0,1.0,2.0,1.0,1.0,2,2,273.903503206171,1200.0,6060.0,0,4,2,3,49.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.19801980198019803,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_0 -24459,2,31.0,0.0,9,112,270.0,528.0,0.0,55,47,0.0,0.0,373.1870414455012,798.0,0.0,957.608731647453,33,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,122446,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1527.57218021874,270.0,32332.490759507433,1,1,1,2,110.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024681055534372852,15396.424171194016,3,2,3_0,3_1_0,3_1_0,3_0_0 -24460,1,49.0,236.0,5,111,330.0,720.0,0.0,0,56,0.0,0.0,456.1174951000571,1050.0,0.0,1305.830088610163,10,0,0,0,0,0,0,0,0,0,,2,,3,131536,1,1,0,0,1,,0.0,291.0,32,1.0,1.0,3.0,2.0,1.3,1,1,263.218740345194,330.0,13971.546950460002,0,1,2,3,60.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07515273746873316,10747.343808046155,2,1,2_1,2_0_1,2_2_1,2_0_0 -24461,2,30.0,0.0,9,221,1420.0,0.0,0.0,52,62,0.0,0.0,1962.6874031578213,1420.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,110106,2,1,1,0,1,,111.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,2296.98264153905,1420.0,36858.539440242326,1,1,1,2,168.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03852567197629207,24572.359626828216,7,4,7,7_1,7_1,7_0_0 -24462,2,47.0,0.0,7,212,2093.0,0.0,0.0,56,38,0.0,103.51725048194578,2892.8906583164226,2257.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,104112,2,1,1,0,1,,322.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,874.923932281374,2093.0,67316.85027520068,1,1,0,1,120.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03352800956629832,37398.25015288926,9,5,9,9_1,9_0,9_0_0 -24463,1,52.0,304.0,2,111,287.0,562.0,0.0,0,56,0.0,0.0,396.68400331429206,849.0,0.0,1019.2729302762663,20,0,0,0,0,0,0,0,0,0,,2,,2,120845,2,1,0,0,1,,0.0,352.0,32,2.0,0.0,4.0,3.0,2.0,1,1,290.724260238122,287.0,24188.967139094446,0,4,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03509864621825203,12094.483569547223,2,1,2_1,2_0_1,2_2_1,2_0_1 -24464,2,45.0,0.0,9,211,1500.0,0.0,0.0,52,53,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,1,2011.0,6,116322,2,1,1,0,1,,1500.0,,43,2.0,0.0,5.0,4.0,2.5,3,3,754.449272586482,1500.0,51232.50440720154,1,1,1,2,120.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.029278287629233117,20493.001762880616,5,3,5,5_1,5_2,5_0_0 -24465,2,43.0,0.0,8,212,584.0,0.0,0.0,63,54,1087.3297904691044,621.1035028916747,807.1897489043434,2024.0,192.67662446930146,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,133505,2,1,1,0,1,,497.0,,43,2.0,0.0,6.0,4.0,2.3,4,2,712.957529162495,584.0,43738.273330124655,1,1,1,2,135.0,2,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046275260678980065,19016.64057831507,5,3,5,5_1,5_0,5_0_0 -24466,1,53.0,254.0,2,111,186.0,390.0,0.0,0,77,0.0,0.0,257.0844063291231,576.0,0.0,707.3246313305051,70,2,2,2,2,1,2,2,2,0,,2,,2,107244,2,2,0,0,1,,0.0,1514.0,11,0.0,1.0,3.0,1.0,1.0,1,1,287.185086888679,186.0,11793.183486238533,0,7,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.04884177378162007,11793.183486238533,2,1,2_1,2_0_1,2_2_1,2_0_1 -24467,2,35.0,0.0,9,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,977.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,112513,2,1,1,0,1,,866.0,680.0,42,1.0,0.0,5.0,4.0,2.1,4,3,552.823218159024,0.0,30779.39302042086,7,1,2,3,100.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03174201646380098,14656.853819248028,3,2,3_0,3_1_0,3_2_0,3_0_0 -24468,2,63.0,0.0,1,212,850.0,0.0,0.0,0,78,0.0,496.8828023133397,1174.848093439541,1330.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,110059,2,1,0,0,1,,80.0,360.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1184.2313243109,850.0,16578.191081476278,0,5,2,3,80.0,2,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.08022588191096929,16578.191081476278,4,2,4_0,4_0_0,4_0_0,4_1_0 -24469,2,65.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1456.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,117820,1,2,0,0,1,,0.0,222.0,11,0.0,4.0,2.0,1.0,1.0,2,2,286.485114729964,0.0,17798.883254775104,0,5,2,3,56.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08180288499894411,17798.883254775104,4,2,4_0,4_0_0,4_2_0,4_0_1 -24470,2,52.0,0.0,9,112,1200.0,0.0,0.0,0,54,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,101352,2,1,1,0,1,,500.0,,22,3.0,0.0,4.0,3.0,2.0,1,1,2304.71834173054,1200.0,83203.88290493304,0,1,1,2,105.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015143524028075095,41601.94145246652,9,5,9,9_1,9_0,9_0_0 -24471,2,48.0,0.0,6,212,1310.0,0.0,0.0,0,62,0.0,0.0,1810.6482381244691,1341.0,53.330137129895945,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114131,1,2,1,0,2,,238.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,807.2844311611,1310.0,17773.572904357316,0,1,1,2,56.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07544909553167245,17773.572904357316,4,2,4_0,4_1_0,4_0_0,4_0_0 -24472,2,35.0,0.0,9,112,919.0,0.0,0.0,31,43,0.0,0.0,1270.21811514228,919.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,2.0,1,2012.0,6,101518,2,1,1,0,1,,190.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,1218.66521586174,919.0,35174.8364729156,1,1,1,2,98.0,9,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026126631767218706,23449.890981943736,6,3,6,6_1,6_1,6_0_0 -24473,2,58.0,0.0,6,212,1980.0,0.0,0.0,52,43,0.0,269.144851253059,2736.7049706003427,2304.0,110.10092826817227,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,118382,2,1,2,0,1,,235.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,816.432081129441,1980.0,42554.87016104897,1,1,0,1,107.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05414186416925979,28369.913440699314,8,4,8,8_1,8_0,8_0_0 -24474,1,30.0,326.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2012.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117825,2,1,2,0,1,,497.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,234.679208139742,0.0,10974.478350865187,0,4,1,2,80.0,7,5,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.18333445432888218,6859.048969290741,1,1,1_1,1_1_1,1_2_1,1_1_0 -24475,1,57.0,254.0,2,111,170.0,400.0,0.0,0,78,0.0,0.0,234.9696186879082,570.0,0.0,725.4611603389795,20,0,0,0,0,0,0,0,0,0,,2,,2,130064,2,1,0,0,1,,0.0,277.0,11,0.0,2.0,3.0,1.0,1.0,1,1,301.164206889019,170.0,11134.0,0,7,2,3,71.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.051194539249146756,11134.0,2,1,2_1,2_0_1,2_2_1,2_0_1 -24476,2,57.0,0.0,9,212,1063.0,0.0,0.0,46,48,0.0,167.69794578075215,1469.251203913214,1255.0,51.60981012570575,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,117816,2,1,1,0,1,,228.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,681.642275374822,1063.0,43659.78653936636,1,1,1,2,80.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0287449870802372,29106.524359577572,8,4,8,8_1,8_0,8_0_0 -24477,2,28.0,0.0,2,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1320.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118973,2,2,0,0,1,,296.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,404.446514281452,0.0,18395.237659251285,0,4,2,3,40.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0717577029691785,18395.237659251285,4,2,4_0,4_0_0,4_2_0,4_0_1 -24479,1,38.0,416.0,9,112,0.0,0.0,1800.0,85,67,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,50,2,2,2,2,1,2,2,2,2,30.0,2,2011.0,6,112153,1,3,0,0,1,,287.0,362.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,8270.30854006821,0.0,20119.237558582987,6,2,2,3,90.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.08946661098656342,7451.569466141847,1,1,1_1,1_0_1,1_1_1,1_0_0 -24480,2,40.0,0.0,2,212,4800.0,0.0,0.0,43,23,7467.924385090004,0.0,6634.436292364467,9800.0,0.0,0.0,71,2,2,1,2,2,2,2,1,2,10.0,1,,2,129397,2,1,2,0,1,,0.0,,43,2.0,0.0,11.0,4.0,2.1,1,1,774.695229689075,4800.0,207625.1860992085,1,1,1,2,450.0,2,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.04720043933069524,98869.13623771834,10,5,10,10_1,10_0,10_0_1 -24481,1,65.0,100.0,2,111,1300.0,700.0,0.0,78,78,0.0,51.75862524097289,1796.8264958487098,2050.0,0.0,1269.5570305932142,70,0,0,0,0,0,0,0,0,0,,1,,2,120668,1,3,4,0,2,,1080.0,590.0,41,0.0,8.0,5.0,2.0,1.5,1,1,228.617803799045,1300.0,15040.370546769085,7,5,2,3,90.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.13629983341337112,10026.913697846057,2,1,2_1,2_1_1,2_2_1,2_0_1 -24482,2,25.0,0.0,9,112,0.0,0.0,0.0,56,46,0.0,0.0,0.0,1109.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2012.0,6,126202,2,1,1,0,1,,397.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1889.02983656151,0.0,39420.73159882417,1,1,1,2,137.0,5,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028132405336512806,26280.487732549445,7,4,7,7_1,7_0,7_0_0 -24483,2,58.0,0.0,6,212,1941.0,0.0,0.0,46,46,0.0,155.27587572291867,2682.8001757248812,2091.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,4,129687,2,1,2,0,1,,286.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,816.335433444782,1941.0,56043.322938337325,4,1,0,1,120.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03731042148055105,37362.215292224886,9,5,9,9_1,9_0,9_0_0 -24485,2,38.0,0.0,9,221,1500.0,0.0,0.0,56,48,0.0,414.0690019277831,2073.261341363896,1900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,3.0,1,2010.0,6,117944,2,1,1,0,1,,680.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,1044.33273854792,1500.0,47200.254582627895,1,1,1,2,95.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040254020170037326,16857.233779509963,4,2,4_0,4_1_0,4_1_0,4_0_0 -24486,0,50.0,0.0,2,212,750.0,0.0,0.0,0,56,0.0,0.0,1036.630670681948,862.0,192.67662446930146,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109319,2,1,2,0,2,,160.0,,22,1.0,0.0,4.0,2.0,1.5,1,1,861.809950364173,750.0,11638.726547264356,0,1,5,0,110.0,2,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07406308555317079,7759.15103150957,1,1,1_0,1_1_0,1_0_0,1_0_1 -24487,0,25.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,696.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,116803,1,2,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,279.378936659369,0.0,27110.21833595999,0,1,5,0,70.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0256729765645893,27110.21833595999,7,4,7,7_0,7_2,7_0_1 -24488,2,64.0,0.0,9,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,1137.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2013.0,6,130300,2,1,1,0,1,,210.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,861.826978357891,0.0,31424.27180803167,5,5,1,2,135.0,4,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03618222267633888,20949.51453868778,5,3,5,5_1,5_1,5_0_0 -24489,2,36.0,0.0,9,212,1615.0,0.0,0.0,46,46,0.0,0.0,2232.2113775351277,1675.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,118821,2,1,3,0,1,,486.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,833.499038320631,1615.0,85604.83515513733,1,1,1,2,120.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019566651778074005,40764.207216732066,9,5,9,9_1,9_0,9_0_0 -24490,1,64.0,98.0,2,111,360.0,600.0,0.0,0,77,0.0,0.0,497.582721927335,960.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,113503,2,1,0,0,1,,0.0,177.0,11,0.0,1.0,1.0,1.0,1.0,3,3,339.260459479085,360.0,11682.667674126787,0,5,2,3,39.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08217301277225234,11682.667674126787,2,1,2_1,2_0_1,2_2_1,2_0_1 -24491,2,77.0,0.0,2,212,600.0,0.0,0.0,77,78,2067.121469792913,0.0,829.3045365455583,2104.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,120047,2,1,4,0,1,,110.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,829.476681894298,600.0,25036.239946205977,5,5,0,1,80.0,2,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08403817843736726,16690.826630803986,4,2,4_0,4_1_0,4_0_0,4_0_1 -24492,2,57.0,0.0,5,111,390.0,0.0,0.0,52,68,0.0,0.0,539.0479487546129,540.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,123862,2,2,0,1,1,809.0,340.0,308.0,43,2.0,2.0,4.0,2.0,1.5,1,1,308.949704316635,390.0,29757.98979765659,1,1,2,3,70.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018146387026536464,19838.659865104393,5,3,5,5_0,5_2,5_0_0 -24493,2,52.0,0.0,7,212,850.0,0.0,0.0,0,67,0.0,0.0,1174.848093439541,882.0,55.050464134086134,0.0,31,2,2,2,2,1,2,2,2,2,10.0,1,,5,107034,2,2,3,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,806.513743521335,850.0,21712.53636180818,0,1,1,2,72.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.04062169362909699,21712.53636180818,6,3,6,6_1,6_0,6_0_0 -24494,2,38.0,0.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,647.0,0.0,0.0,12,2,2,1,2,2,1,1,2,0,,2,,3,106182,1,3,0,0,1,,0.0,262.0,12,1.0,0.0,3.0,1.0,1.0,2,2,290.332448899981,0.0,20911.504091801507,0,1,2,3,60.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.030939907390672133,20911.504091801507,5,3,5,5_0,5_2,5_0_0 -24495,0,77.0,0.0,9,300,960.0,0.0,0.0,71,71,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,132081,2,1,1,0,1,,470.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1463.28846033905,960.0,15699.08771416748,5,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061150050084353494,10466.058476111653,2,1,2_0,2_1_0,2_0_0,2_0_0 -24496,2,40.0,0.0,9,212,1600.0,0.0,0.0,62,69,0.0,0.0,2211.478764121489,1792.0,330.3027848045168,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,126646,2,1,1,0,1,,544.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,730.949477341742,1600.0,53713.022981694,1,1,1,2,156.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033362486423650625,25577.629991282854,7,4,7,7_1,7_0,7_0_0 -24497,1,49.0,170.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,354.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,2,,2,101655,1,3,0,1,2,,0.0,230.0,12,1.0,1.0,1.0,1.0,1.0,1,1,476.962242431477,0.0,5631.841614444656,0,4,3,4,16.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.06285688132493888,5631.841614444656,1,1,1_1,1_0_1,1_2_1,1_0_1 -24498,2,68.0,0.0,2,212,388.0,0.0,0.0,75,78,1493.5848770180007,0.0,536.2836002994611,1463.0,129.02452531426437,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,116241,2,2,2,0,1,,208.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,740.37922257492,388.0,46646.11727921722,5,5,1,2,110.0,2,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03136381086645827,31097.411519478148,8,4,8,8_1,8_0,8_0_1 -24499,2,59.0,0.0,2,111,372.0,75.0,0.0,0,52,0.0,0.0,514.1688126582462,447.0,0.0,136.02396756355867,41,2,1,2,2,1,2,2,2,1,30.0,2,,2,103744,2,3,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,306.08592516541,372.0,27037.41684123115,0,1,1,2,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.016532644469139525,27037.41684123115,7,4,7,7_0,7_2,7_0_1 -24500,2,70.0,0.0,2,212,377.0,0.0,0.0,78,78,1941.6603401234008,1242.2070057833494,521.0796837961258,2975.0,168.59204641063877,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,126310,2,2,2,0,2,,314.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,708.072596983889,377.0,28339.592928041144,5,5,0,1,81.0,2,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10497680780221548,18893.06195202743,5,3,5,5_1,5_0,5_0_1 -24501,1,52.0,256.0,2,111,282.0,282.0,0.0,0,85,0.0,0.0,389.77313217641245,564.0,0.0,511.4501180389806,31,0,0,0,0,0,0,0,0,0,,2,,2,107508,2,1,0,1,1,390.0,0.0,243.0,11,0.0,3.0,3.0,1.0,1.0,2,2,293.373265739808,282.0,10112.432592247258,0,7,2,3,62.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05577293048483637,10112.432592247258,2,1,2_1,2_0_1,2_3_1,2_0_1 -24502,2,52.0,0.0,9,112,720.0,0.0,0.0,0,68,0.0,0.0,995.16544385467,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,113032,2,1,1,0,1,,300.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,1331.72229682564,720.0,30520.994141706757,0,1,1,2,72.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023590319393172198,23477.687801312888,6,3,6,6_1,6_0,6_0_0 -24503,1,40.0,271.0,2,111,180.0,90.0,0.0,0,85,0.0,0.0,248.7913609636675,270.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,0,,2,,2,120740,2,1,0,1,1,409.0,0.0,303.0,21,1.0,0.0,3.0,2.0,1.5,3,3,256.938481092764,180.0,14447.017461575038,0,7,2,3,98.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.018688978588011215,9631.344974383359,1,1,1_1,1_0_1,1_3_1,1_0_1 -24504,2,75.0,0.0,7,212,598.0,0.0,0.0,72,78,0.0,0.0,826.5401880904064,1593.0,1711.7253691692408,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,121731,1,1,1,0,1,,262.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,686.57009040794,598.0,39727.34285898443,5,5,0,1,90.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04009832738259109,26484.895239322956,7,4,7,7_1,7_0,7_0_0 -24505,2,32.0,0.0,2,111,160.0,0.0,0.0,0,53,0.0,0.0,221.1478764121489,160.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,117639,2,1,0,1,1,274.0,0.0,217.0,12,1.0,0.0,3.0,1.0,1.0,2,2,299.012415140078,160.0,16329.737872948215,0,1,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009798075219875723,16329.737872948215,4,2,4_0,4_0_0,4_3_0,4_0_1 -24506,2,64.0,0.0,9,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,616.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,2012.0,6,123998,2,1,0,0,1,,196.0,380.0,41,0.0,2.0,3.0,2.0,1.5,1,1,6809.2195596182,0.0,26920.19843779162,5,5,2,3,71.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022882446480603773,17946.798958527746,4,2,4_0,4_0_0,4_2_0,4_0_0 -24507,0,51.0,0.0,5,212,324.0,0.0,0.0,0,64,3763.833890085362,0.0,447.8244497346015,3036.0,330.3027848045168,0.0,31,2,2,2,2,2,2,2,1,0,,1,,3,100791,2,1,2,0,1,,254.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,708.072596983889,324.0,41530.62362744239,0,1,0,1,70.0,2,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.07310268266701123,27687.08241829493,7,4,7,7_1,7_0,7_0_0 -24508,1,50.0,73.0,2,111,145.0,264.0,0.0,67,63,0.0,0.0,200.41526299850995,409.0,0.0,478.8043658237265,70,2,2,2,2,1,2,2,2,2,25.0,2,,2,119182,2,1,0,1,1,444.0,0.0,254.0,43,2.0,2.0,3.0,2.0,1.5,1,1,269.693510302569,145.0,26425.040587026993,1,1,2,3,68.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.015477743493071223,17616.69372468466,4,2,4_1,4_0_1,4_3_1,4_0_1 -24509,2,46.0,0.0,9,300,950.0,0.0,0.0,22,22,0.0,0.0,1313.065516197134,950.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,132845,2,1,1,0,1,,770.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,1735.73154594721,950.0,8157.850839359731,1,1,1,2,105.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11645223953059686,4078.9254196798656,1,1,1_0,1_1_0,1_0_0,1_0_0 -24510,2,66.0,0.0,5,212,0.0,0.0,0.0,71,71,0.0,0.0,0.0,2753.0,330.3027848045168,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,113349,2,1,2,0,1,,105.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,733.994930373728,0.0,29272.172254725578,5,5,0,1,100.0,2,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09404836703075793,19514.781503150385,5,3,5,5_1,5_0,5_0_0 -24511,1,51.0,121.0,9,212,885.0,0.0,0.0,0,85,0.0,0.0,1223.2241914046986,950.0,111.82125527236246,0.0,12,0,0,0,0,0,0,0,0,0,,1,2009.0,6,126778,2,1,1,0,1,,188.0,327.0,11,0.0,0.0,2.0,1.0,1.0,1,1,702.401305383112,885.0,24177.369453947762,0,7,2,3,56.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03929294300645601,24177.369453947762,7,4,7,7_1,7_0,7_0_0 -24513,2,23.0,0.0,2,111,600.0,0.0,0.0,65,63,0.0,0.0,829.3045365455583,600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,2,118807,1,3,0,1,1,412.0,0.0,294.0,43,2.0,1.0,3.0,2.0,1.5,1,1,275.790448533795,600.0,39199.620999522864,1,1,2,3,70.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015306270435811183,26133.080666348575,7,4,7,7_0,7_3,7_0_1 -24514,2,34.0,0.0,9,111,1200.0,0.0,0.0,43,54,0.0,310.55175144583734,1658.6090730911167,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,124540,2,1,1,0,1,,390.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,539.294551503252,1200.0,43632.4692383853,1,1,1,2,107.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03437806812639399,24240.260687991835,7,4,7,7_1,7_2,7_0_0 -24515,1,39.0,158.0,2,111,840.0,0.0,0.0,85,67,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,8.0,2,,2,114139,2,1,0,1,1,515.0,0.0,323.0,42,3.0,0.0,4.0,5.0,2.8,1,1,265.226892614853,840.0,28522.97295996727,7,1,2,3,82.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.029449945529134068,10186.776057131168,2,1,2_1,2_0_1,2_3_1,2_0_1 -24516,2,30.0,0.0,9,300,2135.0,0.0,0.0,62,43,0.0,0.0,2950.9419758746117,2191.0,96.33831223465073,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,123356,2,1,1,0,1,,247.0,460.0,43,2.0,0.0,3.0,2.0,1.5,4,4,906.333117144682,2135.0,40612.13813524591,1,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05394938805495948,27074.758756830604,7,4,7,7_1,7_0,7_0_0 -24517,2,51.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1433.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,23.0,1,,2,126040,2,1,1,0,1,,293.0,,32,1.0,1.0,5.0,3.0,2.0,2,2,247.074094332547,0.0,46005.37231068159,0,1,1,2,80.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03114853609536563,23002.686155340794,6,3,6,6_1,6_3,6_0_1 -24518,2,38.0,0.0,9,300,1690.0,0.0,0.0,63,64,0.0,0.0,2335.8744446033224,1690.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,2.0,1,2008.0,6,111791,2,1,1,0,1,,370.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,753.095875437469,1690.0,52258.60498924851,1,1,1,2,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03233917170861515,24885.049994880243,7,4,7,7_1,7_0,7_0_0 -24519,1,84.0,99.0,2,111,220.0,200.0,0.0,0,77,0.0,0.0,304.0783300667047,420.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,0,,2,,2,127679,2,1,0,1,1,328.0,0.0,235.0,11,0.0,0.0,2.0,1.0,1.0,2,2,299.012415140078,220.0,13550.554789044789,0,5,2,3,69.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030995040907074684,13550.554789044789,3,2,3_1,3_0_1,3_3_1,3_0_1 -24520,2,31.0,0.0,9,300,2000.0,0.0,0.0,43,54,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,129053,2,2,1,0,1,,180.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,783.436147221692,2000.0,55341.615743696006,1,1,1,2,135.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03613916892601426,30745.342079831113,8,4,8,8_1,8_0,8_0_0 -24521,2,63.0,0.0,2,111,350.0,300.0,0.0,0,77,0.0,0.0,483.76097965157567,650.0,0.0,544.0958702542347,50,2,2,2,2,1,2,2,2,0,,2,,2,100715,2,2,0,1,1,900.0,0.0,303.0,21,1.0,3.0,5.0,2.0,1.5,1,1,257.081555380273,350.0,33592.8254657552,0,5,2,3,92.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.01934936972368148,22395.216977170134,6,3,6,6_0,6_3,6_0_1 -24522,2,55.0,0.0,6,300,660.0,0.0,0.0,0,62,0.0,207.03450096389156,912.2349902001142,980.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,4,130351,2,1,2,0,1,,355.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,796.273008985923,660.0,28593.241504791953,0,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03427383355034305,28593.241504791953,8,4,8,8_1,8_0,8_0_0 -24523,1,61.0,331.0,2,111,1440.0,1200.0,0.0,85,78,0.0,0.0,1990.33088770934,2640.0,0.0,2176.3834810169387,50,1,1,2,2,1,2,2,2,0,,2,,2,102960,2,2,0,1,1,879.0,0.0,308.0,41,0.0,6.0,5.0,3.0,1.8,1,1,273.883607823682,1440.0,15192.468324894198,6,5,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.173770314575817,8440.260180496776,1,1,1_1,1_0_1,1_3_1,1_0_1 -24524,2,38.0,0.0,9,300,864.0,0.0,0.0,52,48,896.1509262108004,0.0,1194.198532625604,1489.0,43.00817510475479,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,106725,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,695.403590172103,864.0,49615.74397565507,1,1,1,2,130.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030010635348541925,23626.544750311936,6,3,6,6_1,6_0,6_0_0 -24525,2,73.0,0.0,2,111,417.0,309.0,0.0,78,78,0.0,0.0,576.366652899163,726.0,0.0,560.4187463618617,31,2,2,1,1,2,2,2,2,0,,2,,2,113879,2,1,0,1,1,612.0,0.0,320.0,41,0.0,3.0,4.0,2.0,1.5,2,2,250.938258152961,417.0,24512.762408025195,6,5,2,3,92.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0296172250159091,16341.84160535013,4,2,4_0,4_0_0,4_3_0,4_0_1 -24526,1,46.0,44.0,5,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,577.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,5.0,2,,3,128105,2,1,0,1,1,430.0,0.0,307.0,32,1.0,2.0,4.0,2.0,1.5,2,2,254.891158610773,0.0,26471.604281518943,0,1,2,3,75.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.021796941124676394,17647.736187679297,4,2,4_1,4_0_1,4_3_1,4_0_0 -24527,1,49.0,255.0,7,300,290.0,0.0,0.0,0,67,0.0,207.03450096389156,400.8305259970199,550.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,130678,2,1,2,0,1,,180.0,366.0,12,1.0,0.0,3.0,1.0,1.0,3,3,704.505496916242,290.0,15101.659422558903,0,4,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03641983868199334,15101.659422558903,3,2,3_1,3_1_1,3_0_1,3_0_0 -24528,1,59.0,271.0,2,111,860.0,410.0,0.0,0,85,0.0,0.0,1188.6698357153002,1270.0,0.0,743.5976893474541,41,0,0,0,0,0,0,0,0,0,,2,,2,105959,2,1,0,1,1,607.0,0.0,313.0,31,1.0,6.0,5.0,3.0,2.0,3,3,259.992396965806,860.0,20244.976071488923,0,6,2,3,92.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06273161279694205,10122.488035744462,2,1,2_1,2_0_1,2_3_1,2_0_1 -24529,1,43.0,24.0,6,300,1212.0,0.0,0.0,85,47,1792.3018524216009,0.0,1675.1951638220278,2472.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,3,1.0,1,,4,105753,2,3,1,0,1,,400.0,,42,1.0,0.0,7.0,6.0,2.6999999999999997,2,2,739.924619112555,1212.0,32449.67243535289,6,1,1,2,200.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07617950550732938,12018.39719827885,2,1,2_1,2_1_1,2_0_1,2_0_0 -24530,1,45.0,428.0,2,111,250.0,163.0,0.0,0,64,0.0,0.0,345.54355689398267,413.0,0.0,295.62542283813417,50,0,0,0,0,0,0,0,0,0,,2,,2,128872,2,1,0,1,1,476.0,0.0,389.0,32,1.0,0.0,3.0,4.0,2.1,2,2,263.061359384598,250.0,13824.005652366666,0,4,2,3,87.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.029875566488161448,6582.859834460317,1,1,1_1,1_0_1,1_2_1,1_0_1 -24531,1,43.0,196.0,2,111,400.0,0.0,0.0,0,90,0.0,0.0,552.8696910303722,400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,129333,2,1,0,0,1,,100.0,181.0,12,1.0,1.0,1.0,1.0,1.0,1,1,306.203250915551,400.0,10975.348315602056,0,4,2,3,37.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.036445312576674965,10975.348315602056,2,1,2_1,2_0_1,2_2_1,2_0_1 -24532,2,46.0,0.0,2,300,700.0,0.0,0.0,54,62,0.0,724.6207533736205,967.5219593031513,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,111499,2,2,1,0,1,,290.0,,43,2.0,2.0,6.0,4.0,2.3,2,2,798.167042025475,700.0,37098.77985670857,1,1,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03773709015249023,16129.904285525467,4,2,4_0,4_1_0,4_0_0,4_0_1 -24533,2,67.0,0.0,5,300,411.0,0.0,0.0,78,75,2718.3244761727615,0.0,568.0736075337074,2346.0,197.83760548187203,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,126148,2,2,1,0,1,,305.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,709.055059869215,411.0,38455.81958789199,5,5,0,1,71.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06100507088759721,25637.213058594658,7,4,7,7_1,7_0,7_0_0 -24534,1,27.0,283.0,5,111,0.0,0.0,1130.0,0,56,0.0,0.0,577.3320683664033,1130.0,0.0,1291.8677253574735,41,2,2,2,2,1,2,2,2,0,,2,,3,111957,2,1,0,0,1,,120.0,246.0,32,1.0,0.0,3.0,3.0,1.6,1,1,316.973980544227,0.0,11163.088945680383,0,4,2,3,64.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.10122646209293705,6976.930591050239,1,1,1_1,1_0_1,1_2_1,1_0_0 -24535,2,53.0,0.0,7,111,750.0,650.0,0.0,45,52,0.0,0.0,1036.630670681948,1400.0,0.0,1178.8743855508417,41,0,0,0,0,0,0,0,0,2,2.0,2,,5,100631,2,1,0,0,1,,450.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,302.206114169404,750.0,48648.11139362803,1,1,0,1,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02877809559084699,24324.055696814015,7,4,7,7_0,7_3,7_0_0 -24536,2,75.0,0.0,2,300,467.0,0.0,0.0,0,75,2807.9395687938413,1656.2760077111325,645.4753642779596,4007.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,121627,2,1,2,0,1,,222.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,762.320584950708,467.0,32113.064151543877,0,5,0,1,60.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12477787797173999,32113.064151543877,8,4,8,8_1,8_0,8_0_1 -24537,1,22.0,270.0,9,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,275.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,109672,2,1,0,0,1,,163.0,286.0,12,1.0,0.0,1.0,1.0,1.0,2,1,337.427353271815,0.0,10023.333333333332,0,4,2,3,37.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.027435982707016963,10023.333333333332,2,1,2_1,2_0_1,2_3_1,2_0_0 -24538,2,45.0,0.0,7,300,1300.0,0.0,0.0,52,37,0.0,0.0,1796.8264958487098,1360.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,128859,2,1,2,0,1,,450.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,712.957529162495,1300.0,92703.13851205562,1,1,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014670484967702988,37081.25540482225,9,5,9,9_1,9_0,9_0_0 -24539,1,66.0,65.0,2,111,170.0,250.0,0.0,0,77,0.0,0.0,234.9696186879082,420.0,0.0,453.4132252118622,50,0,0,0,0,0,0,0,0,0,,2,,2,127442,1,1,0,1,2,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,302.207473132044,170.0,10798.429934176396,0,5,1,2,66.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0388945432400987,10798.429934176396,2,1,2_1,2_0_1,2_3_1,2_0_1 -24540,0,39.0,0.0,7,111,222.0,430.0,0.0,0,38,0.0,0.0,306.84267852185656,652.0,0.0,779.870747364403,31,0,0,0,0,0,0,0,0,2,5.0,2,,5,116084,1,1,0,0,2,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,317.536734053935,222.0,52988.75472710695,0,1,5,0,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01230449749872047,52988.75472710695,10,5,10,10_0,10_3,10_0_0 -24541,2,56.0,0.0,9,300,580.0,0.0,0.0,0,65,0.0,0.0,801.6610519940398,600.0,34.40654008380383,0.0,43,0,0,0,0,0,0,0,0,0,,1,2004.0,6,103791,2,1,1,0,1,,250.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,795.780913452093,580.0,12457.135433258469,0,4,1,2,55.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04816516631890349,12457.135433258469,2,1,2_0,2_1_0,2_0_0,2_0_0 -24542,1,60.0,148.0,5,111,485.0,86.0,0.0,56,78,0.0,0.0,670.3545003743263,571.0,0.0,155.9741494728806,70,0,0,0,0,0,0,0,0,0,,2,,3,132915,2,1,0,1,2,,180.0,630.0,42,1.0,0.0,4.0,4.0,2.3,1,1,237.049369767398,485.0,28488.356629642385,1,5,2,3,78.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02004327618553713,12386.242012887995,2,1,2_1,2_0_1,2_3_1,2_0_0 -24543,2,81.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,539.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,127572,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,300.506151956063,0.0,17977.684649400904,0,5,0,1,60.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02998161390142984,17977.684649400904,4,2,4_0,4_0_0,4_3_0,4_0_1 -24544,2,32.0,0.0,8,300,0.0,0.0,0.0,47,90,0.0,0.0,0.0,1863.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127110,2,1,1,0,1,,326.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,796.509294213852,0.0,20842.412207258738,1,1,1,2,140.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08938504725240859,11579.11789292152,2,1,2_0,2_1_0,2_0_0,2_0_0 -24545,2,55.0,0.0,2,111,500.0,300.0,0.0,0,62,0.0,31.055175144583732,691.0871137879653,830.0,0.0,544.0958702542347,10,0,0,0,0,0,0,0,0,2,1.0,2,,2,133312,2,1,0,1,1,,150.0,420.0,12,1.0,3.0,3.0,1.0,1.0,1,1,297.776521334165,500.0,21280.021493041775,0,1,2,3,42.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03900372000429589,21280.021493041775,6,3,6,6_0,6_3,6_0_1 -24546,2,61.0,0.0,5,300,550.0,0.0,0.0,46,74,0.0,0.0,760.1958251667618,2050.0,2580.4905062852877,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,102275,1,2,1,0,2,,320.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,787.368334535244,550.0,86816.17448839646,1,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02361311140557104,57877.44965893097,10,5,10,10_1,10_0,10_0_0 -24547,2,40.0,0.0,2,111,350.0,650.0,0.0,85,68,0.0,0.0,483.76097965157567,1000.0,0.0,1178.8743855508417,42,0,0,0,0,0,0,0,0,0,,2,,2,126877,1,3,0,0,1,,325.0,297.0,42,1.0,0.0,3.0,4.0,2.1,1,1,245.291283498788,350.0,26968.13449079206,7,4,2,3,58.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.037080799947116765,12841.968805139077,2,1,2_0,2_0_0,2_3_0,2_0_1 -24548,2,45.0,0.0,8,300,570.0,0.0,0.0,42,38,1792.3018524216009,0.0,787.8393097182804,1820.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,116598,2,1,1,0,1,,396.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,841.119579677313,570.0,59934.455712024224,1,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03036650585007092,33296.919840013456,8,4,8,8_1,8_0,8_0_0 -24549,1,53.0,80.0,2,111,200.0,80.0,0.0,0,62,0.0,0.0,276.4348455151861,280.0,0.0,145.09223206779592,43,2,2,2,2,2,2,2,1,2,5.0,2,,2,106512,1,2,0,1,1,,0.0,,32,1.0,1.0,4.0,3.0,1.8,2,2,323.554880569187,200.0,30983.46879357761,0,1,1,2,78.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.009037077218998785,17213.038218654227,4,2,4_1,4_0_1,4_3_1,4_0_1 -24550,2,38.0,0.0,5,120,200.0,0.0,0.0,0,46,1493.5848770180007,0.0,276.4348455151861,1436.0,56.77079113827632,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,122123,2,1,2,0,2,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1585.87097221325,200.0,29105.0,0,1,1,2,60.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04933860161484281,29105.0,8,4,8,8_1,8_0,8_0_0 -24551,1,38.0,200.0,2,111,100.0,0.0,0.0,0,85,0.0,0.0,138.21742275759306,100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129793,2,1,0,1,1,360.0,60.0,185.0,11,0.0,0.0,1.0,1.0,1.0,2,2,264.415500297723,100.0,11018.304619866656,0,7,2,3,45.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.009075806437561553,11018.304619866656,2,1,2_1,2_0_1,2_3_1,2_0_1 -24552,2,67.0,0.0,5,120,431.0,0.0,0.0,0,78,1499.5592165260728,0.0,595.7170920852261,1510.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,112371,2,1,2,0,1,,128.0,400.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1838.09102317042,431.0,14815.18664249218,0,5,2,3,80.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10192244191302276,14815.18664249218,3,2,3_0,3_1_0,3_0_0,3_0_0 -24553,2,48.0,0.0,5,120,420.0,0.0,0.0,0,62,597.4339508072003,0.0,580.5131755818909,853.0,56.77079113827632,0.0,41,1,2,2,2,2,2,2,1,2,30.0,1,,3,127020,2,3,2,0,1,,400.0,300.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1567.36516215559,420.0,18199.210050999474,0,1,2,3,80.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04687016621104137,18199.210050999474,4,2,4_0,4_1_0,4_0_0,4_0_0 -24554,2,88.0,0.0,2,111,200.0,700.0,0.0,0,78,0.0,0.0,276.4348455151861,900.0,0.0,1269.5570305932142,60,0,0,0,0,0,0,0,0,0,,2,,2,106578,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,3,3,301.847013585811,200.0,13290.528989280027,0,5,0,1,52.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06771739490022773,13290.528989280027,3,2,3_0,3_0_0,3_3_0,3_0_1 -24555,2,83.0,0.0,2,120,240.0,0.0,0.0,0,71,2240.377315527001,0.0,331.72181461822333,1806.0,113.54158227655265,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,131849,2,2,2,0,1,,222.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1772.15210663884,240.0,10528.033837822075,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1715420018419703,10528.033837822075,2,1,2_0,2_1_0,2_0_0,2_0_1 -24556,2,44.0,0.0,2,111,192.0,210.0,0.0,68,68,0.0,0.0,265.37745169457867,402.0,0.0,380.86710917796427,10,0,0,0,0,0,0,0,0,2,3.0,2,,2,100542,2,1,0,0,1,,250.0,448.0,43,2.0,0.0,4.0,4.0,2.1,2,2,269.290424228496,192.0,37409.1168834416,1,1,2,3,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010746043571478622,17813.86518259124,4,2,4_0,4_0_0,4_3_0,4_0_1 -24557,1,43.0,450.0,7,120,320.0,0.0,0.0,85,63,2688.452778632401,0.0,442.2957528242978,2220.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,126443,2,3,4,0,1,,700.0,408.0,42,1.0,0.0,4.0,5.0,2.4,1,1,1753.31265157572,320.0,13699.778514229558,6,4,2,3,101.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.16204641539964687,5708.241047595649,1,1,1_1,1_1_1,1_0_1,1_0_0 -24558,2,64.0,0.0,5,111,600.0,0.0,0.0,72,72,0.0,0.0,829.3045365455583,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,127012,2,2,0,1,1,,0.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,323.884557505949,600.0,46577.27972739327,5,5,0,1,78.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01288181713298136,23288.639863696633,6,3,6,6_0,6_3,6_0_0 -24559,2,70.0,0.0,5,120,700.0,0.0,0.0,0,77,0.0,0.0,967.5219593031513,700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,114305,2,1,1,0,1,,252.0,409.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2147.1465258102,700.0,17812.91699584908,0,5,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03929732565211639,17812.91699584908,4,2,4_0,4_1_0,4_0_0,4_0_0 -24560,2,47.0,0.0,2,111,0.0,0.0,650.0,0,52,0.0,20.703450096389155,332.0936676443913,670.0,0.0,743.1097535242104,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,110574,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,302.207473132044,0.0,18582.73233060929,0,1,1,2,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03605497771155982,18582.73233060929,4,2,4_0,4_0_0,4_3_0,4_0_1 -24561,2,76.0,0.0,1,120,480.0,0.0,0.0,0,71,896.1509262108004,0.0,663.4436292364467,1180.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,101526,2,1,1,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1829.26043415078,480.0,34156.485400542864,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03454687993107294,34156.485400542864,9,5,9,9_1,9_0,9_1_0 -24562,2,28.0,0.0,9,120,1010.0,0.0,0.0,68,52,0.0,0.0,1395.9959698516898,1060.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,115470,2,1,1,0,1,,300.0,515.0,43,2.0,0.0,4.0,2.0,1.5,3,2,1902.20574568882,1010.0,32362.92366062905,1,1,2,3,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0327535302779068,21575.282440419367,6,3,6,6_1,6_0,6_0_0 -24563,1,41.0,270.0,2,111,140.0,0.0,0.0,0,69,0.0,0.0,193.50439186063028,215.0,129.02452531426437,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,,2,121799,2,2,0,1,2,500.0,140.0,420.0,12,1.0,0.0,2.0,1.0,1.0,2,2,358.235122986033,140.0,9777.672115231124,0,1,2,3,44.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.021988873984134193,9777.672115231124,2,1,2_1,2_0_1,2_3_1,2_0_1 -24564,1,30.0,100.0,1,120,600.0,0.0,0.0,69,63,2016.339583974301,0.0,829.3045365455583,1983.0,56.77079113827632,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,108944,2,1,2,0,1,,550.0,450.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1831.10650140482,600.0,35224.47830414043,4,1,2,3,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05629607862118174,16773.561097209727,4,2,4_1,4_1_1,4_0_1,4_1_0 -24565,1,27.0,197.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,284.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,119678,2,3,0,1,1,52.0,0.0,244.0,12,1.0,0.0,2.0,1.0,1.0,1,1,287.650023921228,0.0,13655.374893247625,0,1,2,3,47.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02079767140925832,13655.374893247625,3,2,3_1,3_0_1,3_3_1,3_0_1 -24566,2,71.0,0.0,2,120,250.0,0.0,0.0,77,78,896.1509262108004,103.51725048194578,345.54355689398267,1070.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,105162,2,1,2,0,1,,200.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1621.63272259357,250.0,21921.09273224869,5,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04881143531799832,14614.061821499126,3,2,3_0,3_1_0,3_0_0,3_0_1 -24567,1,28.0,270.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,590.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,111026,2,2,0,1,1,,0.0,1440.0,22,4.0,0.0,5.0,4.0,2.5,2,1,310.577496237791,0.0,9127.04022950945,0,1,2,3,80.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06464308090726041,3650.81609180378,1,1,1_1,1_0_1,1_3_1,1_0_1 -24568,2,80.0,0.0,2,120,600.0,0.0,0.0,86,78,1344.2263893162005,0.0,829.3045365455583,1530.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,131837,2,1,2,0,1,,360.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1670.64795067971,600.0,19357.505166614734,6,5,0,1,82.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07903911102339478,12905.003444409822,2,1,2_0,2_1_0,2_0_0,2_0_1 -24570,2,78.0,0.0,1,120,240.0,0.0,0.0,0,77,896.1509262108004,0.0,331.72181461822333,890.0,86.01635020950958,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,129847,2,1,2,0,1,,273.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1605.87870124265,240.0,21023.24303959113,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04233409651993012,21023.24303959113,5,3,5,5_1,5_0,5_1_0 -24571,1,60.0,219.0,2,111,444.0,144.0,0.0,75,56,0.0,0.0,613.6853570437131,686.0,0.0,261.1660177220326,71,0,0,0,0,0,0,0,0,0,,2,,2,101756,1,1,0,1,1,528.0,0.0,340.0,42,1.0,4.0,4.0,3.0,2.0,1,1,304.570196015388,444.0,18939.0,5,1,2,3,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.036221553408310896,9469.5,1,1,1_1,1_0_1,1_3_1,1_0_1 -24572,2,53.0,0.0,9,120,960.0,0.0,0.0,0,52,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,101059,2,1,1,0,1,,266.0,,12,1.0,1.0,3.0,1.0,1.0,2,1,1876.43819652851,960.0,18988.569610986116,0,1,1,2,78.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0505567306894237,18988.569610986116,5,3,5,5_1,5_0,5_0_0 -24573,1,29.0,327.0,5,111,0.0,0.0,0.0,84,21,0.0,0.0,0.0,803.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,126277,2,1,0,1,2,485.0,0.0,480.0,42,1.0,0.0,3.0,2.0,1.5,2,2,334.078873206577,0.0,11297.267754449027,3,1,2,3,63.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07107913324297081,7531.511836299352,1,1,1_1,1_0_1,1_3_1,1_0_0 -24574,1,42.0,200.0,8,120,550.0,0.0,0.0,68,67,0.0,155.27587572291867,760.1958251667618,800.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,103016,2,1,1,0,1,,110.0,,43,2.0,0.0,5.0,6.0,2.8999999999999995,2,2,1604.08612300541,550.0,49838.06877162601,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.016051986357373843,17185.540955733108,4,2,4_1,4_1_1,4_0_1,4_0_0 -24575,2,84.0,0.0,2,111,276.0,140.0,0.0,77,78,0.0,0.0,381.48008681095683,564.0,0.0,253.91140611864284,70,0,0,0,0,0,0,0,0,0,,2,,2,116646,2,1,0,1,1,905.0,0.0,360.0,41,0.0,4.0,5.0,2.0,1.5,1,1,280.40633130677,276.0,23913.7016030095,5,5,2,3,99.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02358480545433508,15942.467735339667,3,2,3_0,3_0_0,3_3_0,3_0_1 -24576,2,40.0,0.0,5,120,500.0,0.0,0.0,0,52,1792.3018524216009,0.0,691.0871137879653,1766.0,113.54158227655265,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,3,127154,2,1,2,0,1,,520.0,,32,1.0,0.0,7.0,4.0,2.1,2,2,1700.61223814507,500.0,24370.390600661456,0,1,1,2,148.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07246498543819267,11604.947905076884,2,1,2_0,2_1_0,2_0_0,2_0_0 -24577,2,42.0,0.0,2,111,240.0,168.0,0.0,0,63,0.0,0.0,331.72181461822333,576.0,0.0,304.6936873423714,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,107913,2,1,0,1,1,408.0,0.0,225.0,12,1.0,0.0,2.0,1.0,1.0,2,2,281.941589260187,240.0,15075.279893553081,0,1,2,3,49.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03820824582144743,15075.279893553081,3,2,3_0,3_0_0,3_3_0,3_0_1 -24578,2,59.0,0.0,1,120,123.0,0.0,0.0,0,21,1792.3018524216009,207.03450096389156,170.00742999183944,1598.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115123,1,1,3,0,2,,200.0,,12,1.0,3.0,4.0,1.0,1.0,3,3,2000.27531138929,123.0,11179.150021090805,0,1,1,2,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14294467799297636,11179.150021090805,2,1,2_0,2_1_0,2_0_0,2_1_0 -24579,2,59.0,0.0,2,111,620.0,230.0,0.0,69,68,0.0,0.0,856.9480210970769,912.0,0.0,417.14016719491326,50,2,2,1,2,1,2,2,2,0,,2,,2,110616,2,3,0,1,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,3,2,295.351238707415,620.0,23721.03948492961,4,4,0,1,73.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.038446881747294825,15814.026323286407,3,2,3_0,3_0_0,3_3_0,3_0_1 -24580,2,30.0,0.0,2,120,1300.0,0.0,0.0,52,54,0.0,196.68277591569696,1796.8264958487098,1515.0,43.00817510475479,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,104987,2,2,3,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1636.90741138669,1300.0,33630.372666898125,1,1,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04504856413593037,22420.24844459875,6,3,6,6_1,6_0,6_0_1 -24581,2,54.0,0.0,5,111,389.0,246.0,0.0,69,69,0.0,0.0,537.665774527037,1012.0,0.0,446.1586136084724,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,113721,1,1,0,1,2,430.0,0.0,340.0,43,3.0,5.0,4.0,4.0,2.5,2,2,271.192055010096,389.0,38020.49037184821,4,1,2,3,76.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02661722639825084,15208.196148739284,3,2,3_0,3_0_0,3_3_0,3_0_0 -24582,2,29.0,0.0,5,120,720.0,0.0,0.0,31,63,0.0,0.0,995.16544385467,2570.0,3182.6049577518547,0.0,42,2,2,2,2,1,2,2,2,2,18.0,1,,3,101838,2,2,3,0,1,,150.0,500.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1791.51853446373,720.0,68095.41977341518,1,1,2,3,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.0377411580478037,32426.39036829294,8,4,8,8_1,8_0,8_0_0 -24583,2,51.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,272.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,124876,1,2,0,1,2,441.0,0.0,495.0,22,2.0,2.0,3.0,2.0,1.5,1,1,337.412737463069,0.0,1087.7559276504298,0,4,2,3,57.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.25005609538485746,725.1706184336199,1,1,1_0,1_0_0,1_3_0,1_0_1 -24584,2,59.0,0.0,6,120,960.0,0.0,0.0,78,56,0.0,258.79312620486445,1326.8872584728933,1276.0,113.54158227655265,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,126557,2,1,1,0,1,,400.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1625.28168307501,960.0,36984.69976045569,5,1,0,1,96.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034500753237540364,24656.46650697046,7,4,7,7_1,7_0,7_0_0 -24585,1,64.0,190.0,2,111,171.0,167.0,0.0,0,69,0.0,0.0,236.3517929154841,829.0,0.0,302.88003444152395,33,0,0,0,0,0,0,0,0,0,,2,,2,128732,2,1,0,1,1,329.0,0.0,239.0,12,1.0,2.0,4.0,1.0,1.0,2,2,332.831625530057,171.0,11317.773347461949,0,4,2,3,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07324762341047465,11317.773347461949,2,1,2_1,2_0_1,2_3_1,2_0_1 -24586,2,50.0,0.0,1,120,700.0,0.0,0.0,63,56,149.35848770180007,807.4345537591771,967.5219593031513,1580.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111594,2,1,1,0,1,,350.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,2006.09169724863,700.0,17508.163337246453,4,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09024361776650469,8754.081668623227,1,1,1_0,1_1_0,1_0_0,1_1_0 -24587,1,43.0,270.0,2,111,0.0,0.0,270.0,0,56,0.0,0.0,137.94660040613178,270.0,0.0,308.6763591562105,12,0,0,0,0,0,0,0,0,0,,2,,2,128882,2,1,0,1,1,441.0,0.0,273.0,12,1.0,1.0,3.0,1.0,1.0,2,2,313.417510099052,0.0,10075.55533819064,0,4,2,3,58.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.026797530353149388,10075.55533819064,2,1,2_1,2_0_1,2_3_1,2_0_1 -24588,2,71.0,0.0,1,120,1000.0,0.0,0.0,75,74,0.0,341.60692659042104,1382.1742275759307,1396.0,113.54158227655265,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120955,2,1,1,0,1,,357.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1614.80119719989,1000.0,48820.34858233219,5,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02859463401097477,32546.899054888127,8,4,8,8_1,8_0,8_1_0 -24589,1,35.0,247.0,2,111,360.0,61.0,0.0,0,22,0.0,0.0,497.582721927335,421.0,0.0,110.63282695169438,42,2,2,2,1,2,1,2,2,0,,2,,2,110156,1,3,0,3,1,360.0,206.0,233.0,12,1.0,0.0,3.0,1.0,1.0,4,4,266.535451812535,360.0,5354.438117607012,0,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.0786263639158747,5354.438117607012,1,1,1_1,1_0_1,1_3_1,1_0_1 -24590,1,54.0,270.0,2,111,202.0,45.0,0.0,0,85,0.0,0.0,279.199193970338,247.0,0.0,81.6143805381352,41,0,0,0,0,0,0,0,0,0,,2,,2,133500,2,1,0,1,1,,0.0,329.0,11,0.0,3.0,4.0,1.0,1.0,2,2,282.352144780655,202.0,10320.514963642188,0,7,2,3,72.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.023932914284815088,10320.514963642188,2,1,2_1,2_0_1,2_3_1,2_0_1 -24591,2,64.0,0.0,1,120,700.0,0.0,0.0,78,75,746.7924385090004,621.1035028916747,967.5219593031513,1940.0,240.84578058662683,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,127754,2,1,2,0,1,,300.0,,41,1.0,2.0,5.0,3.0,2.0,2,2,1851.24943803329,700.0,31253.171938650856,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06207369939307819,15626.585969325428,3,2,3_0,3_1_0,3_0_0,3_1_0 -24592,2,55.0,0.0,6,120,360.0,0.0,0.0,67,62,2987.1697540360015,0.0,497.582721927335,2360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,123895,2,2,2,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1623.38536821279,360.0,41474.63805491746,1,1,1,2,102.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05690224461694092,27649.758703278305,7,4,7,7_1,7_0,7_0_0 -24593,2,32.0,0.0,2,111,460.0,200.0,0.0,52,65,0.0,0.0,635.800144684928,660.0,0.0,362.73058016948977,50,2,1,2,1,2,2,2,2,2,20.0,2,,2,117589,1,3,0,1,2,274.0,270.0,233.0,43,2.0,0.0,3.0,3.0,1.8,2,2,290.323924656832,460.0,41200.820878601306,4,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.016019098307402602,22889.34493255628,6,3,6,6_0,6_3,6_0_1 -24594,2,50.0,0.0,7,120,420.0,0.0,0.0,52,11,2240.377315527001,0.0,580.5131755818909,1986.0,113.54158227655265,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,116090,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1615.34069213748,420.0,52856.87457494496,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037573163679666316,25169.94027378331,7,4,7,7_1,7_0,7_0_0 -24595,2,64.0,0.0,2,111,169.0,183.0,0.0,0,77,0.0,0.0,233.58744446033228,352.0,0.0,331.89848085508316,50,0,0,0,0,0,0,0,0,0,,2,,2,121309,2,3,0,1,1,490.0,156.0,222.0,11,0.0,1.0,3.0,1.0,1.0,1,1,297.776521334165,169.0,17832.57497764766,0,5,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01973915715712489,17832.57497764766,4,2,4_0,4_0_0,4_3_0,4_0_1 -24596,2,74.0,0.0,1,120,1200.0,0.0,0.0,77,75,0.0,455.47590212056144,1658.6090730911167,1740.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132292,2,1,4,0,1,,280.0,,41,0.0,1.0,2.0,2.0,1.5,3,2,1552.69644800569,1200.0,20442.001248817876,5,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0851188677087387,13628.00083254525,3,2,3_0,3_1_0,3_0_0,3_1_0 -24597,2,48.0,0.0,2,111,340.0,59.0,0.0,52,53,0.0,0.0,469.9392373758164,399.0,0.0,107.00552114999948,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,100172,1,2,0,1,2,412.0,0.0,317.0,43,2.0,0.0,3.0,2.0,1.5,1,1,298.592585821944,340.0,36624.65151442985,1,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010894301611110126,24416.43434295323,7,4,7,7_0,7_3,7_0_1 -24598,2,35.0,0.0,1,120,1000.0,0.0,0.0,45,37,0.0,20.703450096389155,1382.1742275759307,1020.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,132759,2,2,1,0,1,,260.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1699.78611635592,1000.0,56631.46087814803,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01801118996726394,26967.36232292763,7,4,7,7_1,7_0,7_1_0 -24599,1,26.0,324.0,2,111,100.0,150.0,0.0,0,55,0.0,0.0,138.21742275759306,250.0,0.0,272.04793512711734,60,0,0,0,0,0,0,0,0,0,,2,,2,119337,2,1,0,1,1,430.0,150.0,300.0,32,1.0,0.0,4.0,2.0,1.3,2,2,241.173095433382,100.0,9334.489865487538,0,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02678239556768136,7180.376819605798,1,1,1_1,1_0_1,1_3_1,1_0_1 -24600,2,52.0,0.0,2,120,1148.0,0.0,0.0,42,34,0.0,414.0690019277831,1586.7360132571682,1623.0,129.02452531426437,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,2,121980,2,2,2,0,1,,213.0,,43,2.0,1.0,6.0,3.0,1.8,3,3,1809.27989027052,1148.0,56971.26628509101,1,1,1,2,135.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028488045041483095,31650.703491717228,8,4,8,8_1,8_0,8_0_1 -24601,1,30.0,19.0,2,111,500.0,80.0,0.0,64,21,0.0,0.0,691.0871137879653,580.0,0.0,145.09223206779592,50,2,2,2,2,1,2,2,2,2,30.0,2,,2,124843,1,3,0,1,2,274.0,0.0,320.0,43,2.0,0.0,3.0,2.0,1.5,3,3,264.726350546757,500.0,23289.416590636785,4,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.024904015853844174,15526.27772709119,3,2,3_1,3_0_1,3_3_1,3_0_1 -24602,2,60.0,0.0,5,120,812.0,0.0,0.0,77,38,2819.8882478099854,0.0,1122.3254727916556,2800.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,120412,1,1,2,0,2,,268.0,,42,1.0,3.0,5.0,2.0,1.5,3,3,1794.71979696285,812.0,201043.77756639192,5,1,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013927314905706738,134029.18504426128,10,5,10,10_1,10_0,10_0_0 -24603,2,61.0,0.0,2,111,320.0,150.0,0.0,0,52,0.0,0.0,442.2957528242978,470.0,0.0,272.04793512711734,60,2,2,2,2,1,2,2,2,3,20.0,2,,2,115237,1,3,0,1,1,360.0,110.0,252.0,12,1.0,3.0,3.0,1.0,1.0,2,2,282.352144780655,320.0,17894.373821066474,0,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.026265238711325235,17894.373821066474,4,2,4_0,4_0_0,4_3_0,4_0_1 -24604,2,66.0,0.0,5,120,600.0,0.0,0.0,75,75,1792.3018524216009,0.0,829.3045365455583,1866.0,113.54158227655265,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,114447,2,1,2,0,1,,730.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1794.71979696285,600.0,57790.91088379307,5,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032288814477283184,38527.273922528715,9,5,9,9_1,9_0,9_0_0 -24605,2,59.0,0.0,5,120,300.0,0.0,0.0,11,11,2240.377315527001,0.0,414.65226827277917,1920.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109337,2,1,2,0,1,,270.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1566.46233518534,300.0,63615.27276283681,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03018143154330132,42410.18184189121,9,5,9,9_1,9_0,9_0_0 -24606,2,64.0,0.0,1,120,0.0,0.0,0.0,74,74,0.0,186.3310508675024,0.0,2305.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,122642,2,1,2,0,1,,85.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1777.98235231587,0.0,55934.110662861814,5,5,0,1,201.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041209200837985877,37289.407108574545,9,5,9,9_1,9_0,9_1_0 -24607,2,29.0,0.0,7,111,430.0,0.0,0.0,0,38,0.0,0.0,594.3349178576501,430.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,2,,5,112264,2,1,0,0,1,,0.0,514.0,12,1.0,0.0,2.0,1.0,1.0,3,3,351.817487157694,430.0,28312.57734799084,0,1,2,3,41.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015187596477525009,28312.57734799084,8,4,8,8_0,8_3,8_0_0 -24608,2,58.0,0.0,1,120,1200.0,0.0,0.0,56,65,74.67924385090004,0.0,1658.6090730911167,1316.0,113.54158227655265,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,126413,2,1,2,0,1,,300.0,,43,2.0,2.0,5.0,4.0,2.5,2,2,1816.91995720676,1200.0,35052.18029621025,1,1,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03754402690158142,14020.872118484102,3,2,3_0,3_1_0,3_0_0,3_1_0 -24609,1,63.0,295.0,2,111,350.0,400.0,0.0,78,78,0.0,0.0,483.76097965157567,750.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,0,,2,,2,112191,2,1,0,1,1,900.0,360.0,308.0,41,1.0,4.0,5.0,3.0,2.0,4,2,288.207791759794,350.0,16605.572376795684,6,5,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04516556147429377,8302.786188397842,1,1,1_1,1_0_1,1_3_1,1_0_1 -24610,2,78.0,0.0,2,120,210.0,0.0,0.0,77,78,2987.1697540360015,0.0,290.25658779094545,2540.0,567.7079113827633,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126411,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,1728.43225867798,210.0,20508.03751107237,5,5,0,1,89.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12385387917437951,13672.025007381579,3,2,3_0,3_1_0,3_0_0,3_0_1 -24611,2,77.0,0.0,1,120,408.0,0.0,0.0,72,72,1941.6603401234008,227.73795106028072,563.9270848509797,2027.0,170.31237341482898,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115974,2,1,1,0,1,,146.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1820.86857182736,408.0,19912.633404674332,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10179467269879924,13275.088936449554,3,2,3_0,3_1_0,3_0_0,3_1_0 -24612,1,26.0,98.0,1,120,0.0,0.0,0.0,55,67,0.0,0.0,0.0,2560.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,1,103571,2,2,2,0,1,,248.0,495.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1800.95155423842,0.0,26473.712275980564,4,1,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0966996986789296,14707.617931100312,3,2,3_1,3_1_1,3_0_1,3_1_0 -24613,2,62.0,0.0,2,111,169.0,0.0,0.0,0,74,0.0,0.0,233.58744446033228,169.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109588,2,2,0,1,1,,119.0,,31,0.0,1.0,5.0,2.0,1.5,2,2,321.529576089131,169.0,51980.67281282453,0,5,1,2,72.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0032512083983319427,34653.78187521635,9,5,9,9_0,9_3,9_0_1 -24614,2,64.0,0.0,5,120,900.0,0.0,0.0,0,74,4480.754631054002,0.0,1243.9568048183376,3966.0,113.54158227655265,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110838,2,2,2,0,2,,238.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1875.7621412547,900.0,42606.588738932456,0,5,0,1,130.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09308419466062542,42606.588738932456,9,5,9,9_1,9_0,9_0_0 -24615,2,74.0,0.0,1,120,600.0,0.0,0.0,71,71,0.0,621.1035028916747,829.3045365455583,1530.0,567.7079113827633,0.0,44,2,2,2,1,1,2,2,2,0,,1,,1,126814,1,2,2,0,1,,140.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,1627.31378253248,600.0,25108.147051143627,5,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.060936396337152705,16738.76470076242,4,2,4_0,4_1_0,4_0_0,4_1_0 -24617,2,49.0,0.0,2,111,450.0,150.0,0.0,33,33,0.0,0.0,621.9784024091688,600.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,110712,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,4,3,321.749024553838,450.0,94762.735233706,1,1,0,1,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0063316028027290095,52645.96401872556,10,5,10,10_0,10_3,10_0_1 -24618,2,52.0,0.0,2,300,802.0,0.0,0.0,54,69,0.0,901.6352516977478,1108.5037305158962,1673.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112425,2,2,3,0,1,,461.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1726.03735221716,802.0,45540.0219367146,1,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03673691686677074,30360.0146244764,8,4,8,8_1,8_0,8_0_1 -24619,2,46.0,0.0,2,111,308.0,96.0,0.0,78,52,0.0,0.0,425.7096620933866,404.0,0.0,174.11067848135508,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,113705,2,1,0,1,1,,190.0,503.0,42,1.0,1.0,4.0,2.0,1.5,2,2,313.131947881916,308.0,23699.1185099265,6,1,2,3,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01704704754443852,15799.412339950999,3,2,3_0,3_0_0,3_3_0,3_0_1 -24620,1,27.0,100.0,7,300,716.0,0.0,0.0,46,63,0.0,0.0,989.6367469443662,749.0,56.77079113827632,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,5,133642,2,1,1,0,1,,112.0,478.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2146.39653849051,716.0,26809.975171142367,1,1,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.027937362687534533,14894.430650634647,3,2,3_1,3_1_1,3_0_1,3_0_0 -24621,2,54.0,0.0,2,111,500.0,0.0,0.0,56,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,105106,2,1,0,1,1,,0.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,285.410389527842,500.0,58134.00061125574,1,1,0,1,100.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008600818707515398,23253.600244502297,6,3,6,6_0,6_3,6_0_1 -24622,2,53.0,0.0,6,300,700.0,0.0,0.0,54,52,1045.5094139126004,0.0,967.5219593031513,1466.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,4,106569,2,1,2,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1586.40700793034,700.0,35613.07048145203,4,1,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041164661743039566,23742.046987634687,6,3,6,6_1,6_0,6_0_0 -24624,2,45.0,0.0,1,300,805.0,0.0,0.0,52,21,0.0,0.0,1112.6502531986241,2605.0,3096.588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100200,2,1,1,0,1,,410.0,,43,2.0,0.0,7.0,5.0,2.8,1,1,1560.50155664698,805.0,73320.720243941,1,1,1,2,160.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03552883811469745,26185.971515693218,7,4,7,7_1,7_0,7_1_0 -24626,2,66.0,0.0,2,111,150.0,0.0,0.0,0,75,0.0,0.0,207.32613413638958,150.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,101770,2,2,0,1,1,,37.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,275.899056024442,150.0,27681.95304786708,0,5,0,1,69.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005418692811906118,18454.635365244718,4,2,4_0,4_0_0,4_3_0,4_0_1 -24627,2,52.0,0.0,7,300,500.0,0.0,0.0,0,21,0.0,0.0,691.0871137879653,533.0,56.77079113827632,0.0,42,2,2,2,2,2,2,2,1,0,,1,,5,119324,2,2,3,0,1,,80.0,,12,1.0,1.0,4.0,1.0,1.0,2,1,2037.73511943767,500.0,18958.0,0,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.028114780040088615,18958.0,5,3,5,5_1,5_0,5_0_0 -24628,2,69.0,0.0,2,111,394.0,30.0,0.0,77,75,0.0,0.0,544.5766456649167,424.0,0.0,54.40958702542347,20,0,0,0,0,0,0,0,0,0,,2,,2,122733,1,1,0,1,2,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,296.487052187887,394.0,45441.816788894255,5,5,0,1,43.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009330612857530455,30294.544525929505,8,4,8,8_0,8_3,8_0_1 -24629,2,39.0,0.0,9,300,1500.0,0.0,0.0,21,37,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,102600,2,1,1,0,1,,286.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,1644.42415488483,1500.0,78655.69363903573,1,1,1,2,156.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019070456703156845,30252.189861167593,8,4,8,8_1,8_0,8_0_0 -24631,2,60.0,0.0,5,300,520.0,0.0,0.0,0,72,1774.3788338973848,0.0,718.7305983394839,1808.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,111573,1,1,2,0,2,,218.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1683.72093577618,520.0,37010.86501377994,0,5,0,1,85.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04885051995750012,37010.86501377994,9,5,9,9_1,9_0,9_0_0 -24632,1,45.0,222.0,7,300,900.0,0.0,0.0,0,52,0.0,0.0,1243.9568048183376,933.0,56.77079113827632,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,109042,2,1,2,0,1,,150.0,380.0,12,1.0,4.0,3.0,1.0,1.0,3,2,1531.46037987701,900.0,8018.24770879279,0,4,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.1163595880153309,8018.24770879279,1,1,1_1,1_1_1,1_0_1,1_0_0 -24633,2,87.0,0.0,5,300,350.0,0.0,0.0,71,71,2688.452778632401,0.0,483.76097965157567,2250.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,131449,2,1,2,0,1,,120.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1577.66732550116,350.0,17473.94050746415,5,5,0,1,72.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12876317159480383,11649.293671642767,2,1,2_0,2_1_0,2_0_0,2_0_0 -24634,2,33.0,0.0,9,300,966.0,0.0,0.0,52,64,0.0,0.0,1335.180303838349,999.0,56.77079113827632,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,131454,2,1,1,0,1,,188.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1524.43592008492,966.0,50452.07359695159,1,1,1,2,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01980097008461435,24024.796950929325,6,3,6,6_1,6_0,6_0_0 -24635,1,26.0,377.0,6,111,492.0,156.0,0.0,35,81,0.0,0.0,680.0297199673578,648.0,0.0,282.929852532202,43,2,1,2,1,1,2,2,2,0,,2,,4,128009,1,3,0,1,1,,0.0,538.0,43,2.0,3.0,4.0,3.0,1.8,3,1,272.985626462326,492.0,18350.0,1,4,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.0353133514986376,10194.444444444443,2,1,2_1,2_0_1,2_3_1,2_0_0 -24636,2,39.0,0.0,1,300,1027.0,0.0,0.0,0,54,0.0,0.0,1419.4929317204808,1060.0,56.77079113827632,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,1,116839,2,2,5,0,1,,270.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1966.7672838626,1027.0,25474.07921979773,0,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04161092500553261,25474.07921979773,7,4,7,7_1,7_0,7_1_0 -24637,2,41.0,0.0,2,111,500.0,450.0,0.0,52,65,0.0,0.0,691.0871137879653,950.0,0.0,816.143805381352,41,2,1,2,1,1,2,2,2,2,15.0,2,,2,126594,2,2,0,1,1,430.0,240.0,370.0,43,2.0,0.0,4.0,5.0,2.4,3,3,265.226892614853,500.0,36143.02446727862,1,1,2,3,74.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0262844632955403,15059.59352803276,3,2,3_0,3_0_0,3_3_0,3_0_1 -24638,1,28.0,415.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,195.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112522,2,1,0,1,1,,0.0,385.0,31,0.0,1.0,3.0,3.0,1.6,1,1,299.443395433813,0.0,16711.547480053505,0,6,3,4,64.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.01166857828293563,10444.71717503344,2,1,2_1,2_0_1,2_3_1,2_0_1 -24639,2,36.0,0.0,1,300,300.0,0.0,0.0,0,65,0.0,0.0,414.65226827277917,333.0,56.77079113827632,0.0,41,0,0,0,0,0,0,0,0,2,15.0,8,,1,127432,2,1,0,1,1,260.0,0.0,270.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2797.01258836212,300.0,19331.427660176432,0,1,2,3,30.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.017225835869639067,19331.427660176432,5,3,5,5_0,5_0,5_1_0 -24640,2,74.0,0.0,2,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,605.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,109652,1,2,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,291.68430116513,0.0,41647.0547654,5,5,0,1,63.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014526837573701098,27764.70317693333,7,4,7,7_0,7_3,7_0_1 -24641,2,44.0,0.0,1,300,620.0,0.0,0.0,55,48,0.0,0.0,856.9480210970769,1820.0,2064.39240502823,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,105319,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,4,4,1532.12779135381,620.0,56787.04433619946,1,1,1,2,165.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03204956379178592,27041.449683904506,7,4,7,7_1,7_0,7_1_0 -24642,1,51.0,68.0,2,111,400.0,800.0,0.0,0,56,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,20,0,0,0,0,0,0,0,0,0,,2,,2,109512,2,2,0,0,1,,400.0,345.0,22,1.0,0.0,4.0,2.0,1.5,2,2,259.604494332804,400.0,23237.448562721765,0,4,2,3,70.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05164078133453417,15491.632375147843,3,2,3_1,3_0_1,3_2_1,3_0_1 -24643,2,67.0,0.0,2,300,0.0,0.0,0.0,74,33,0.0,0.0,0.0,3098.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,2,109678,1,2,2,0,2,,299.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1794.71979696285,0.0,321043.4466450771,5,5,0,1,120.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.009649784265569917,214028.9644300514,10,5,10,10_1,10_0,10_0_1 -24644,0,57.0,0.0,8,112,0.0,0.0,0.0,0,56,0.0,1863.310508675024,0.0,1900.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,110217,1,1,1,0,1,,0.0,,12,1.0,1.0,6.0,1.0,1.0,2,2,1215.96649667667,0.0,16332.798393364887,0,1,5,0,110.0,6,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11633034059686091,16332.798393364887,4,2,4_0,4_1_0,4_0_0,4_0_0 -24645,1,76.0,254.0,2,111,240.0,300.0,0.0,0,78,0.0,0.0,331.72181461822333,540.0,0.0,544.0958702542347,60,0,0,0,0,0,0,0,0,0,,2,,2,106778,2,1,0,0,1,,220.0,277.0,11,0.0,1.0,3.0,1.0,1.0,2,2,272.292597630345,240.0,18784.701710116395,0,5,2,3,60.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.028746796639798972,18784.701710116395,5,3,5,5_0,5_2,5_0_1 -24646,2,55.0,0.0,2,112,1727.0,0.0,0.0,43,63,0.0,0.0,2387.014891023632,1827.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,105802,2,1,2,0,1,,300.0,,43,3.0,1.0,6.0,4.0,2.5,2,2,1022.40817320035,1727.0,70314.04612894499,1,1,0,1,120.0,6,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025983428640268647,28125.618451577997,8,4,8,8_1,8_0,8_0_1 -24647,2,51.0,0.0,5,111,300.0,800.0,0.0,0,52,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,2,,3,121896,2,1,0,0,1,,400.0,450.0,11,0.0,2.0,5.0,1.0,1.0,2,2,229.145367683747,300.0,22529.27518456563,0,5,2,3,100.0,6,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04882536126832827,22529.27518456563,6,3,6,6_0,6_2,6_0_0 -24648,2,61.0,0.0,1,112,735.0,0.0,0.0,0,86,2132.839204381705,207.03450096389156,1015.898057268309,2463.0,172.03270041901916,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,125436,2,1,2,0,1,,115.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1293.94309463427,735.0,13245.129895814329,0,5,0,1,150.0,6,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18595514120086865,13245.129895814329,2,1,2_0,2_1_0,2_0_0,2_1_0 -24649,2,92.0,0.0,2,111,308.0,825.0,0.0,0,77,0.0,0.0,425.7096620933866,1133.0,0.0,1496.2636431991452,31,0,0,0,0,0,0,0,0,0,,1,,2,114184,2,2,2,0,1,,60.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,215.781251194206,308.0,16264.586046725937,0,5,0,1,75.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06966054941361836,16264.586046725937,4,2,4_0,4_1_0,4_2_0,4_0_1 -24650,2,55.0,0.0,1,112,469.8,0.0,0.0,56,34,4177.631580263199,0.0,649.3454521151722,3363.0,165.1513924022584,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,1,102550,1,3,3,0,1,,220.0,355.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1141.22221360445,469.8,60324.56842940735,1,1,2,3,91.0,6,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0557484303254557,40216.378952938234,9,5,9,9_1,9_0,9_1_0 -24651,2,51.0,0.0,2,111,230.0,450.0,0.0,69,90,0.0,0.0,317.900072342464,680.0,0.0,816.143805381352,70,1,2,2,2,1,2,2,2,2,20.0,2,,2,132306,2,3,0,0,1,,200.0,184.0,43,2.0,0.0,2.0,2.0,1.5,1,1,274.201537643394,230.0,26565.6237114762,1,1,2,3,71.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.025596989831119372,17710.4158076508,4,2,4_0,4_0_0,4_2_0,4_0_1 -24652,2,52.0,0.0,1,112,500.0,0.0,0.0,11,11,1344.2263893162005,0.0,691.0871137879653,1600.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108053,2,1,2,0,1,,373.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,1045.33874986993,500.0,46999.61670147142,1,1,0,1,100.0,6,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03404283082057366,16785.577393382653,4,2,4_0,4_1_0,4_0_0,4_1_0 -24653,2,40.0,0.0,2,111,1000.0,600.0,0.0,43,54,0.0,0.0,1382.1742275759307,1600.0,0.0,1088.1917405084694,71,2,2,2,2,2,2,1,2,3,1.0,1,,2,132853,2,3,1,0,1,,340.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,231.252998002255,1000.0,50459.98071767827,1,1,1,2,83.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03170829590585737,28033.322620932373,7,4,7,7_1,7_2,7_0_1 -24654,2,76.0,0.0,5,112,600.0,0.0,0.0,0,71,2240.377315527001,0.0,829.3045365455583,2228.0,220.20185653634454,0.0,42,2,2,2,2,1,2,2,2,0,,1,,3,104243,1,3,1,0,2,,110.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1084.49437395891,600.0,16152.520676032058,0,5,0,1,120.0,6,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.13793512756841855,16152.520676032058,4,2,4_0,4_1_0,4_0_0,4_0_0 -24655,0,43.0,0.0,1,111,414.0,1382.0,0.0,31,47,0.0,0.0,572.2201302164352,1796.0,0.0,2506.4683089711743,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,114813,1,2,3,0,1,,311.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,223.270701709832,414.0,51150.45889185755,1,1,5,0,50.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.035112099459305116,34100.30592790503,9,5,9,9_1,9_2,9_1_0 -24656,1,63.0,114.0,2,111,0.0,0.0,153.0,0,77,0.0,0.0,78.16974023014133,153.0,0.0,174.9166035218526,50,2,1,2,2,2,2,2,1,0,,2,,2,132929,1,2,0,1,2,328.0,50.0,224.0,11,0.0,0.0,2.0,1.0,1.0,3,2,288.163894195098,0.0,10608.733348289159,0,5,2,3,65.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.014422079901242299,10608.733348289159,2,1,2_1,2_0_1,2_2_1,2_0_1 -24657,2,64.0,0.0,8,112,1390.0,0.0,0.0,77,74,0.0,0.0,1921.2221763305436,1390.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2002.0,6,108573,2,1,1,0,1,,200.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,1114.70312529492,1390.0,56953.2007468852,5,5,0,1,110.0,6,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024406003205641076,37968.80049792347,9,5,9,9_1,9_0,9_0_0 -24658,1,44.0,260.0,2,111,235.0,306.0,0.0,0,63,0.0,0.0,324.81094348034367,541.0,0.0,554.9777876593193,60,2,2,2,2,1,2,2,2,0,,2,,2,118005,2,3,0,1,1,450.0,270.0,247.0,32,1.0,3.0,2.0,2.0,1.5,2,2,277.165953384539,235.0,8009.981410896433,0,4,2,3,54.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.06754073102642248,5339.987607264288,1,1,1_1,1_0_1,1_2_1,1_0_1 -24659,2,67.0,0.0,1,112,530.0,0.0,0.0,46,46,0.0,434.77245202417225,732.5523406152432,1050.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100151,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,1083.03722332015,530.0,20366.934921701162,1,1,0,1,160.0,6,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05155414911652784,13577.95661446744,3,2,3_0,3_1_0,3_0_0,3_1_0 -24660,1,57.0,327.0,2,111,564.0,207.0,0.0,77,78,0.0,0.0,779.5462643528249,771.0,0.0,375.42615047542193,50,2,1,1,2,1,2,2,2,0,,2,,2,120486,1,3,0,1,2,607.0,321.0,363.0,41,1.0,2.0,5.0,3.0,2.0,2,2,267.528920489404,564.0,14452.685167933243,6,7,2,3,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.053346488285142254,7226.3425839666215,1,1,1_1,1_0_1,1_2_1,1_0_1 -24661,0,79.0,0.0,5,111,217.0,0.0,0.0,0,77,0.0,0.0,299.93180738397695,217.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,3,117421,2,1,0,1,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,308.173759489598,217.0,41382.32777130506,0,5,0,1,103.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.005243784283939437,41382.32777130506,9,5,9,9_0,9_2,9_0_0 -24662,2,41.0,0.0,1,120,540.0,0.0,0.0,67,64,0.0,0.0,746.3740828910024,568.0,48.169156117325365,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114612,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1016.55340262569,540.0,38057.529020159855,4,4,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014924773484350987,16546.75174789559,4,2,4_0,4_1_0,4_0_0,4_1_0 -24663,2,64.0,0.0,5,120,600.0,0.0,0.0,72,72,2987.1697540360015,0.0,829.3045365455583,2670.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,126935,2,1,2,0,1,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1082.13629251502,600.0,13758.65474374366,6,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1940596700570674,9172.436495829106,1,1,1_0,1_1_0,1_0_0,1_0_0 -24664,1,28.0,350.0,2,111,0.0,0.0,1087.0,0,52,0.0,0.0,555.3627949683897,1087.0,0.0,1242.7081570474104,71,2,2,2,2,1,2,2,2,0,,2,,2,123137,1,1,0,1,2,611.0,184.0,315.0,32,1.0,0.0,4.0,3.0,1.6,1,1,286.170016249318,0.0,8052.003224526733,0,4,2,3,81.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.13499746208359098,5032.502015329208,1,1,1_1,1_0_1,1_2_1,1_0_1 -24665,2,65.0,0.0,1,120,440.0,0.0,0.0,54,52,1493.5848770180007,0.0,608.1566601334094,1440.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,127625,2,2,2,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1093.10841000668,440.0,58772.88790451657,1,1,0,1,85.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024501093128849624,39181.92526967771,9,5,9,9_1,9_0,9_1_0 -24666,2,66.0,0.0,1,120,450.0,0.0,0.0,0,75,0.0,0.0,621.9784024091688,2450.0,3440.6540083803834,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132311,2,1,3,0,1,,320.0,430.0,11,0.0,0.0,5.0,1.0,1.0,4,3,1206.23228887818,450.0,22262.40199773566,0,5,3,4,72.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11005101786631978,22262.40199773566,6,3,6,6_1,6_0,6_1_0 -24667,2,67.0,0.0,2,111,192.0,700.0,0.0,77,77,0.0,179.0848433337662,265.37745169457867,1065.0,0.0,1269.5570305932142,12,0,0,0,0,0,0,0,0,0,,1,,2,132721,2,1,3,0,1,,120.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,222.620123016023,192.0,35542.57027514008,5,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029964068207664327,23695.04685009339,6,3,6,6_1,6_2,6_0_1 -24668,2,50.0,0.0,5,120,650.0,0.0,0.0,0,63,0.0,0.0,898.4132479243549,694.0,75.69438818436844,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,112946,2,3,0,0,2,,325.0,260.0,12,1.0,1.0,2.0,1.0,1.0,3,2,1280.74362699489,650.0,14947.920848288031,0,4,2,3,41.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0464278615764468,14947.920848288031,3,2,3_0,3_0_0,3_0_0,3_0_0 -24669,2,40.0,0.0,2,120,540.0,0.0,0.0,63,52,149.35848770180007,0.0,746.3740828910024,680.0,68.81308016760767,0.0,70,0,0,0,0,0,0,0,0,2,16.0,1,,2,107969,2,2,1,0,1,,265.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1066.19605886747,540.0,44325.67510658434,1,1,1,2,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015340995898311532,19272.032655036674,5,3,5,5_1,5_0,5_0_1 -24670,1,38.0,310.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,288.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,122832,1,3,0,1,1,110.0,369.0,282.0,32,1.0,3.0,4.0,2.0,1.3,1,1,268.974782320131,0.0,9412.799948743015,0,4,2,3,47.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030596634536831892,7240.615345186934,1,1,1_1,1_0_1,1_2_1,1_0_1 -24671,2,83.0,0.0,1,120,250.0,0.0,0.0,0,72,4480.754631054002,0.0,345.54355689398267,3400.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116998,2,1,2,0,1,,140.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1076.03620161382,250.0,17781.96839457924,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.19120492875448347,17781.96839457924,4,2,4_0,4_1_0,4_0_0,4_1_0 -24672,1,63.0,309.0,2,111,480.0,312.0,0.0,0,78,0.0,0.0,663.4436292364467,792.0,0.0,565.859705064404,70,2,1,2,1,2,1,2,2,0,,2,,2,109245,2,2,0,1,1,550.0,112.0,286.0,31,1.0,0.0,4.0,2.0,1.5,1,1,262.508717984115,480.0,15680.000168182876,0,5,2,3,65.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.0505102035398628,10453.333445455251,2,1,2_1,2_0_1,2_2_1,2_0_1 -24673,1,27.0,30.0,6,120,1455.0,0.0,0.0,52,63,0.0,0.0,2011.063501122979,1731.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,112895,1,3,4,0,1,,420.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,963.051670003169,1455.0,36527.1193405747,1,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04738944738183028,17393.86635265462,4,2,4_1,4_1_1,4_0_1,4_0_0 -24674,1,67.0,299.0,2,111,300.0,720.0,0.0,86,78,0.0,0.0,414.65226827277917,1020.0,0.0,1305.830088610163,30,0,0,0,0,0,0,0,0,0,,2,,2,100188,2,3,0,1,1,780.0,600.0,93.0,41,0.0,3.0,5.0,2.0,1.5,2,2,300.853875859909,300.0,14254.0,5,5,2,3,84.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07155886067068892,9502.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_1 -24675,2,72.0,0.0,9,120,1310.0,0.0,0.0,0,71,0.0,0.0,1810.6482381244691,1400.0,154.82943037711726,0.0,50,2,2,2,2,1,2,2,2,0,,1,2004.0,6,113626,2,1,1,0,1,,350.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1081.78397482928,1310.0,9784.337594831077,0,5,0,1,104.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.14308582327940111,9784.337594831077,2,1,2_0,2_1_0,2_0_0,2_0_0 -24676,2,43.0,0.0,9,120,1132.0,0.0,0.0,52,62,0.0,0.0,1564.6212256159533,1252.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,2,7.0,1,2006.0,6,131923,2,1,1,0,1,,714.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1065.67812316409,1132.0,47956.371470555845,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02610706276576201,22836.367366931354,6,3,6,6_1,6_0,6_0_0 -24677,1,57.0,213.0,2,111,580.0,0.0,0.0,0,68,0.0,0.0,801.6610519940398,691.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120528,2,2,0,1,1,485.0,130.0,326.0,22,1.0,1.0,3.0,5.0,2.8,2,2,246.776617955255,580.0,22741.863690038885,0,1,2,3,60.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030384493083680887,8122.094175013888,1,1,1_1,1_0_1,1_2_1,1_0_1 -24678,2,48.0,0.0,1,120,392.0,0.0,0.0,0,52,0.0,0.0,541.8122972097648,417.0,43.00817510475479,0.0,20,0,0,0,0,0,0,0,0,2,7.0,1,,1,124946,2,1,2,0,1,,141.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1122.03182262347,392.0,26985.732925281765,0,1,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.015452609760668415,26985.732925281765,7,4,7,7_1,7_0,7_1_0 -24679,2,32.0,0.0,1,120,529.0,0.0,0.0,22,37,0.0,207.03450096389156,731.1701663876672,789.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,112676,2,1,2,0,1,,284.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1200.67078256754,529.0,71374.70220421407,1,1,1,2,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.011054336839718768,47583.134802809385,10,5,10,10_1,10_0,10_1_0 -24680,2,61.0,0.0,1,120,918.0,0.0,0.0,52,78,0.0,10.351725048194577,1268.8359409147042,1128.0,344.06540083803833,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,128223,1,1,2,0,1,,270.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,985.353084156949,918.0,33431.57194773926,1,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03374056122049261,13929.82164489136,3,2,3_0,3_1_0,3_0_0,3_1_0 -24681,2,62.0,0.0,1,120,600.0,0.0,0.0,71,71,2987.1697540360015,0.0,829.3045365455583,2780.0,309.6588607542345,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,130704,2,1,1,0,1,,310.0,,41,1.0,1.0,8.0,5.0,2.5999999999999996,2,2,994.866700971152,600.0,52462.212793501014,5,5,0,1,200.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.052990521214621444,20177.774151346548,5,3,5,5_1,5_0,5_1_0 -24682,2,70.0,0.0,1,120,680.0,0.0,0.0,0,75,1642.9433647198007,0.0,939.8784747516328,1840.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,131171,2,1,1,0,1,,184.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,1113.41499475466,680.0,53337.828346541675,0,5,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034497092533376496,53337.828346541675,10,5,10,10_1,10_0,10_1_0 -24683,0,90.0,0.0,2,120,500.0,0.0,0.0,0,77,2987.1697540360015,0.0,691.0871137879653,2620.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,110855,2,2,3,0,1,,300.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1054.14344237266,500.0,26707.056142633766,0,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0981014150720104,26707.056142633766,7,4,7,7_1,7_0,7_0_1 -24684,2,50.0,0.0,1,120,574.0,0.0,0.0,63,54,0.0,20.703450096389155,793.3680066285841,714.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,106017,2,1,4,0,2,,567.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,981.879674263784,574.0,37910.897342659315,1,1,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01883363491891209,15164.358937063726,3,2,3_0,3_1_0,3_0_0,3_1_0 -24685,2,49.0,0.0,7,111,1100.0,1300.0,0.0,63,42,0.0,0.0,1520.3916503335236,2400.0,0.0,2357.7487711016834,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,120339,2,1,2,0,1,,601.0,,43,3.0,0.0,9.0,6.0,3.0999999999999996,2,2,1285.93051623008,1100.0,67680.22039717884,1,1,1,2,155.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03546087743089029,21832.32916038027,6,3,6,6_1,6_2,6_0_0 -24686,2,78.0,0.0,6,111,171.0,0.0,0.0,0,74,0.0,77.63793786145933,236.3517929154841,246.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,116967,2,1,2,0,1,,315.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1423.7862112174,171.0,60230.13928747954,0,5,0,1,300.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.004084333905087577,60230.13928747954,10,5,10,10_1,10_2,10_0_0 -24687,2,68.0,0.0,6,111,1210.0,0.0,0.0,78,75,0.0,0.0,1672.430815366876,1270.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,107491,2,2,1,0,1,,311.0,,41,0.0,3.0,6.0,2.0,1.5,2,1,1200.3658217813,1210.0,28371.569374303384,7,5,0,1,110.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04476312125159564,18914.37958286892,5,3,5,5_1,5_2,5_0_0 -24688,2,37.0,0.0,6,111,600.0,1240.0,0.0,52,21,0.0,0.0,829.3045365455583,1840.0,0.0,2248.9295970508365,60,2,2,2,1,2,2,2,2,0,,1,,4,105115,1,3,3,0,2,,170.0,390.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1171.97081959468,600.0,51674.20256555217,1,1,2,3,90.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.0356077096238851,21530.91773564674,6,3,6,6_1,6_2,6_0_0 -24689,2,34.0,0.0,5,111,180.0,400.0,0.0,0,55,0.0,0.0,248.7913609636675,580.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,2,3.0,2,,3,100408,1,2,0,0,2,,223.0,267.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1548.34573916728,180.0,20388.82340785316,0,1,2,3,55.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0284469578453753,20388.82340785316,5,3,5,5_0,5_2,5_0_0 -24690,2,61.0,0.0,6,111,356.0,1225.0,0.0,78,77,0.0,0.0,492.0540250170313,1581.0,0.0,2221.724803538125,50,0,0,0,0,0,0,0,0,0,,1,,4,106596,2,1,2,0,1,,314.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1256.1230856684,356.0,38674.553025258356,5,5,0,1,140.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04087959333279039,25783.03535017224,7,4,7,7_1,7_2,7_0_0 -24691,2,59.0,0.0,5,111,465.0,1305.0,0.0,77,75,0.0,0.0,642.7110158228077,1770.0,0.0,2366.817035605921,20,0,0,0,0,0,0,0,0,0,,1,,3,103216,2,1,1,0,2,,240.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1200.3658217813,465.0,37941.732805940876,5,5,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046650478749954594,25294.488537293917,7,4,7,7_1,7_2,7_0_0 -24692,2,57.0,0.0,9,111,175.0,0.0,0.0,0,34,0.0,0.0,241.88048982578783,175.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,104424,2,3,0,0,1,,133.0,315.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1984.10183820774,175.0,32510.737020582113,0,1,2,3,30.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005382837057468425,32510.737020582113,8,4,8,8_0,8_2,8_0_0 -24693,2,44.0,0.0,9,111,600.0,0.0,0.0,56,62,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,125929,2,1,0,0,1,,220.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1467.77743813978,600.0,34843.45885846827,4,1,1,2,55.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01721987482463089,23228.97257231218,6,3,6,6_0,6_2,6_0_0 -24694,2,54.0,0.0,5,111,416.0,1027.0,0.0,46,38,0.0,103.51725048194578,574.9844786715871,1543.0,0.0,1862.62152917033,71,0,0,0,0,0,0,0,0,2,60.0,1,,3,112478,2,2,3,0,1,,335.0,,43,2.0,2.0,7.0,2.0,1.5,3,2,1231.48660368798,416.0,82018.760345754,1,1,0,1,116.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018812769096916485,54679.173563836,10,5,10,10_1,10_2,10_0_0 -24695,2,57.0,0.0,6,111,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1030.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,109338,1,3,3,0,1,,180.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1300.41878569858,1000.0,21641.44510488516,0,5,0,1,90.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047593864227093434,21641.44510488516,6,3,6,6_1,6_2,6_0_0 -24696,2,74.0,0.0,1,111,1180.0,0.0,0.0,0,74,0.0,0.0,1630.965588539598,1180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111071,2,2,2,0,1,,166.0,,11,0.0,1.0,5.0,1.0,1.0,4,2,1375.12822605577,1180.0,26180.241282101542,0,5,0,1,200.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.045072159086888254,26180.241282101542,7,4,7,7_1,7_2,7_1_0 -24697,2,88.0,0.0,2,111,320.0,1669.0,0.0,0,74,0.0,0.0,442.2957528242978,1989.0,0.0,3026.986691514392,50,0,0,0,0,0,0,0,0,0,,1,,2,118191,2,2,5,0,1,,480.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1310.91793945537,320.0,35075.80122935726,0,5,0,1,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05670576096021648,35075.80122935726,9,5,9,9_1,9_2,9_0_1 -24698,2,60.0,0.0,7,111,450.0,867.0,0.0,55,46,0.0,0.0,621.9784024091688,1317.0,0.0,1572.4370650347382,12,0,0,0,0,0,0,0,0,2,7.0,1,,5,128751,1,2,2,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,2,1,1246.2264010766,450.0,48943.25958006846,1,1,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026908710439390762,32628.83972004564,8,4,8,8_1,8_2,8_0_0 -24699,2,29.0,0.0,6,111,1810.0,0.0,0.0,47,43,0.0,0.0,2501.7353519124345,1870.0,103.2196202514115,0.0,12,0,0,0,0,0,0,0,0,2,7.0,1,,4,120656,2,3,3,0,1,,500.0,640.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1246.19297158485,1810.0,35775.5422389403,1,1,2,3,86.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05227034680594098,17035.972494733476,4,2,4_0,4_1_0,4_2_0,4_0_0 -24700,2,69.0,0.0,2,111,323.0,0.0,0.0,0,75,1642.9433647198007,0.0,446.44227550702556,1453.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111721,2,2,3,0,1,,242.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1292.95143596092,323.0,23551.585305377113,0,5,0,1,120.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061694360747268355,23551.585305377113,6,3,6,6_1,6_2,6_0_1 -24701,2,38.0,0.0,9,111,1000.0,0.0,0.0,22,47,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,2.0,1,2009.0,6,121352,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1537.61792840247,1000.0,60268.63874384524,1,1,1,2,170.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016592377409588036,33482.57707991402,8,4,8,8_1,8_2,8_0_0 -24702,0,67.0,0.0,2,111,290.0,0.0,0.0,0,77,1941.6603401234008,207.03450096389156,400.8305259970199,1970.0,309.6588607542345,0.0,70,2,2,2,2,1,2,2,1,0,,1,,2,121069,2,1,1,0,1,,223.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1265.2285874868,290.0,33969.47861603583,0,5,0,1,95.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.05799323628917962,33969.47861603583,9,5,9,9_1,9_2,9_0_1 -24703,2,55.0,0.0,8,111,700.0,1200.0,0.0,56,37,0.0,0.0,967.5219593031513,1900.0,0.0,2176.3834810169387,50,2,2,2,2,1,2,2,2,2,10.0,1,2001.0,6,125545,2,1,2,0,1,,400.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1239.920342554,700.0,69637.57782333838,1,1,1,2,110.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.02728411957147701,46425.05188222558,10,5,10,10_1,10_2,10_0_0 -24704,1,34.0,271.0,1,111,1700.0,0.0,0.0,63,56,0.0,0.0,2349.696186879082,1760.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,123592,1,2,3,0,1,,252.0,580.0,43,2.0,0.0,6.0,4.0,2.1,1,1,1364.13306046137,1700.0,37022.83258304473,4,1,2,3,125.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04753823187494367,17629.920277640347,4,2,4_1,4_1_1,4_2_1,4_1_0 -24705,2,62.0,0.0,7,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,946.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111800,2,2,5,0,1,,261.0,500.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1250.60435795777,0.0,19187.14427851032,0,5,2,3,60.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04930384565146174,19187.14427851032,5,3,5,5_1,5_2,5_0_0 -24706,2,77.0,0.0,5,111,973.0,0.0,0.0,78,78,0.0,0.0,1344.8555234313803,1018.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,1,,3,127276,2,2,2,0,1,,514.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1256.1230856684,973.0,32353.678399222503,5,5,0,1,150.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.0314647375620963,21569.118932815003,6,3,6,6_1,6_2,6_0_0 -24707,2,24.0,0.0,9,111,380.0,0.0,0.0,46,63,0.0,0.0,525.2262064788536,415.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,10.0,8,2009.0,6,128277,2,1,0,0,1,,348.0,395.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1762.79648928832,380.0,18300.463242968104,1,1,2,3,42.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02267702158629577,12200.308828645402,2,1,2_0,2_0_0,2_2_0,2_0_0 -24708,2,79.0,0.0,2,111,2237.0,0.0,0.0,71,71,0.0,0.0,3091.923747087357,2377.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120901,1,2,3,0,2,,0.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1303.28945482304,2237.0,17618.682254546802,5,5,0,1,150.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13491360850137216,11745.788169697867,2,1,2_0,2_1_0,2_2_0,2_0_1 -24709,2,61.0,0.0,1,111,350.0,0.0,0.0,13,13,2240.377315527001,0.0,483.76097965157567,2030.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,121449,2,2,2,0,1,,300.0,,43,2.0,2.0,6.0,3.0,2.0,2,2,1332.42378305658,350.0,110534.63136531264,1,1,0,1,110.0,7,5,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01836528493310779,55267.31568265632,10,5,10,10_1,10_2,10_1_0 -24710,2,42.0,0.0,9,111,441.0,1273.0,0.0,34,34,0.0,0.0,609.5388343609853,1714.0,0.0,2308.7801427788027,50,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,125557,2,1,1,0,1,,332.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1234.4616890871,441.0,69540.83711363228,1,1,1,2,198.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024647388083627195,33114.6843398249,8,4,8,8_1,8_2,8_0_0 -24711,2,74.0,0.0,1,111,1370.0,0.0,0.0,77,75,0.0,414.0690019277831,1893.578691779025,1910.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125308,2,1,2,0,1,,299.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1171.13001262387,1370.0,25739.384446635097,5,5,0,1,80.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.074205348770479,17159.589631090064,4,2,4_0,4_1_0,4_2_0,4_1_0 -24712,2,67.0,0.0,5,111,1520.0,0.0,0.0,0,75,0.0,0.0,2100.904825915414,1550.0,51.60981012570575,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,100834,2,2,3,0,1,,230.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1292.95143596092,1520.0,21352.789364459077,0,5,0,1,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07259004777052301,21352.789364459077,6,3,6,6_1,6_2,6_0_0 -24713,2,37.0,0.0,7,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,1331.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,131360,2,1,2,0,1,,224.0,515.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1388.89398447384,0.0,39391.07410624782,1,1,2,3,69.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03378938072137744,26260.71607083188,7,4,7,7_1,7_2,7_0_0 -24714,2,83.0,0.0,2,111,400.0,0.0,0.0,0,78,2240.377315527001,0.0,552.8696910303722,2040.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106342,2,1,2,0,1,,350.0,,11,0.0,6.0,6.0,1.0,1.0,3,2,1475.03922745806,400.0,14167.67145726301,0,5,0,1,130.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14398978732346315,14167.67145726301,3,2,3_0,3_1_0,3_2_0,3_0_1 -24715,2,63.0,0.0,6,111,2500.0,0.0,0.0,78,90,0.0,155.27587572291867,3455.435568939826,2805.0,266.6506856494797,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,113998,2,1,2,0,1,,457.0,,41,1.0,1.0,7.0,3.0,2.0,2,2,1430.4249202249,2500.0,60652.352381592646,5,5,0,1,140.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04624717574600269,30326.176190796323,8,4,8,8_1,8_2,8_0_0 -24716,2,44.0,0.0,9,111,0.0,0.0,0.0,54,37,0.0,0.0,0.0,2626.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,118434,2,2,1,0,1,,255.0,880.0,43,2.0,0.0,7.0,6.0,2.8999999999999995,4,3,1454.1182332939,0.0,26735.187559923103,1,1,2,3,140.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09822261370391347,9219.030193076933,1,1,1_0,1_1_0,1_2_0,1_0_0 -24717,2,54.0,0.0,9,111,1200.0,0.0,0.0,63,67,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,60,2,2,2,2,1,2,2,2,2,15.0,2,2010.0,6,117125,2,3,0,0,1,,400.0,378.0,43,2.0,3.0,3.0,2.0,1.5,1,1,1475.77197503743,1200.0,28432.56905775472,4,1,2,3,74.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04431537640656311,18955.046038503147,5,3,5,5_0,5_2,5_0_0 -24718,2,42.0,0.0,9,111,210.0,496.0,0.0,0,37,0.0,0.0,290.25658779094545,706.0,0.0,899.5718388203346,60,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,131519,2,1,1,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,1423.68102809037,210.0,37208.89960242441,0,1,1,2,83.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018973955358626067,37208.89960242441,9,5,9,9_1,9_2,9_0_0 -24719,2,57.0,0.0,5,111,302.0,718.0,0.0,67,62,0.0,207.03450096389156,417.416616727931,1220.0,0.0,1302.2027828084683,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,129051,2,1,1,0,2,,315.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1193.99898308644,302.0,40211.42340125565,1,1,0,1,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030339637267401583,26807.6156008371,7,4,7,7_1,7_2,7_0_0 -24720,2,68.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,101471,2,2,3,0,1,,280.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1263.47549354669,300.0,30583.785949003606,0,5,0,1,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.009809119135879047,30583.785949003606,8,4,8,8_1,8_2,8_0_1 -24721,2,48.0,0.0,2,111,1255.0,40.0,0.0,22,22,0.0,0.0,1734.6286556077928,1295.0,0.0,72.54611603389796,41,0,0,0,0,0,0,0,0,0,,2,,2,104513,2,2,0,0,1,,337.0,1052.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1743.23701426265,1255.0,87046.0,1,1,2,3,60.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014877191370080187,58030.666666666664,10,5,10,10_0,10_2,10_0_1 -24722,2,45.0,0.0,5,111,2200.0,0.0,0.0,52,55,0.0,0.0,3040.783300667047,2290.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,110890,1,1,3,0,1,,500.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1232.68680149336,2200.0,51029.15197656708,1,1,1,2,100.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04487630915464915,19626.596914064266,5,3,5,5_1,5_2,5_0_0 -24723,2,86.0,0.0,2,111,252.0,0.0,0.0,0,77,4122.294260569682,0.0,348.3079053491345,3162.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114594,2,2,2,0,1,,304.0,,11,0.0,5.0,8.0,1.0,1.0,2,2,1374.41937572698,252.0,15575.587751687483,0,5,0,1,160.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.2030099955398103,15575.587751687483,3,2,3_0,3_1_0,3_2_0,3_0_1 -24724,2,27.0,0.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,169.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,10.0,2,,5,118251,2,1,0,1,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2058.78732460452,0.0,9915.693445795241,0,1,3,4,22.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017043689473040798,9915.693445795241,2,1,2_0,2_0_0,2_2_0,2_0_0 -24725,1,56.0,345.0,6,111,1800.0,0.0,0.0,52,52,0.0,0.0,2487.913609636675,1860.0,103.2196202514115,0.0,43,2,2,1,2,2,2,2,1,2,10.0,1,,4,100187,2,1,2,0,1,,650.0,620.0,43,2.0,0.0,4.0,4.0,2.5,2,2,1361.32538502794,1800.0,23715.4319564534,1,1,2,3,198.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,1,0.07842994398817434,9486.172782581361,1,1,1_1,1_1_1,1_2_1,1_0_0 -24726,2,60.0,0.0,5,111,341.0,1419.0,0.0,77,78,0.0,0.0,471.32141160339233,1760.0,0.0,2573.57346630253,10,0,0,0,0,0,0,0,0,0,,1,,3,120240,2,1,1,0,1,,334.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1200.3658217813,341.0,32006.663066104527,5,5,0,1,103.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05498855023921138,21337.775377403017,6,3,6,6_1,6_2,6_0_0 -24727,2,37.0,0.0,9,111,500.0,0.0,0.0,0,64,0.0,0.0,691.0871137879653,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2005.0,6,108236,2,1,0,0,1,,200.0,200.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2328.44289013191,500.0,21001.58567342112,0,1,2,3,20.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023807726129593285,21001.58567342112,5,3,5,5_0,5_2,5_0_0 -24728,2,40.0,0.0,8,111,1185.0,0.0,0.0,37,31,0.0,0.0,1637.8764596774777,1185.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,1999.0,6,110866,1,1,2,0,1,,697.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,1199.63881765912,1185.0,120477.89644795057,1,1,1,2,115.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009835829101746886,57370.42687997646,10,5,10,10_1,10_2,10_0_0 -24729,2,49.0,0.0,9,111,0.0,0.0,0.0,52,12,0.0,0.0,0.0,1633.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,117935,2,1,1,0,1,,316.0,690.0,43,2.0,1.0,4.0,3.0,2.0,1,1,1537.08644276896,0.0,45918.60793145284,1,1,2,3,95.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035562924782862264,22959.30396572642,6,3,6,6_1,6_2,6_0_0 -24730,2,47.0,0.0,8,111,707.0,0.0,0.0,34,42,1941.6603401234008,155.27587572291867,977.1971788961829,2157.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,104702,2,1,2,0,1,,430.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1261.12606461067,707.0,72591.59493543331,1,1,1,2,140.0,7,5,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02971418387925691,31561.56301540579,8,4,8,8_1,8_2,8_0_0 -24731,2,66.0,0.0,6,111,500.0,700.0,0.0,75,74,0.0,0.0,691.0871137879653,1200.0,0.0,1269.5570305932142,70,0,0,0,0,0,0,0,0,0,,1,,4,111679,2,1,2,0,1,,300.0,,41,0.0,2.0,8.0,2.0,1.5,1,1,1331.09611592702,500.0,71732.03542723393,5,5,0,1,140.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016728927219935064,47821.35695148929,10,5,10,10_1,10_2,10_0_0 -24732,2,81.0,0.0,2,111,338.0,0.0,0.0,77,77,2539.0942909306013,0.0,467.17488892066456,2188.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,131208,2,1,2,0,1,,392.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,1004.13828126569,338.0,35782.83021305853,5,5,0,1,83.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06114664454913672,23855.22014203902,6,3,6,6_1,6_3,6_0_1 -24733,2,51.0,0.0,9,111,1500.0,3000.0,0.0,54,21,0.0,0.0,2073.261341363896,4500.0,0.0,5440.958702542347,42,0,0,0,0,0,0,0,0,0,,1,2004.0,6,107559,2,1,1,0,1,,600.0,,43,3.0,5.0,7.0,3.0,2.0,3,3,1149.11669381027,1500.0,73878.62142771504,1,1,1,2,294.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.060910719678262115,36939.31071385752,9,5,9,9_1,9_3,9_0_0 -24735,2,35.0,0.0,1,111,0.0,0.0,2000.0,55,22,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,116706,2,2,5,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1033.75577947333,0.0,38609.96974181298,1,1,1,2,140.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05180009239515367,18385.699877053798,4,2,4_0,4_1_0,4_3_0,4_1_0 -24736,1,43.0,118.0,2,111,756.0,1176.0,0.0,85,64,0.0,0.0,1044.9237160474036,1932.0,0.0,2132.8558113966,41,0,0,0,0,0,0,0,0,2,60.0,2,,2,123715,1,3,0,0,2,,0.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1299.25681739583,756.0,20754.514355263473,6,1,1,2,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0930881815362754,9883.102073934986,2,1,2_1,2_0_1,2_3_1,2_0_1 -24737,2,39.0,0.0,6,111,500.0,400.0,0.0,63,33,0.0,0.0,691.0871137879653,900.0,0.0,725.4611603389795,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,116362,2,1,2,0,1,,220.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1051.00504628642,500.0,56545.616187749,1,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015916353214928645,37697.077458499334,9,5,9,9_1,9_3,9_0_0 -24738,1,49.0,203.0,2,111,300.0,216.0,0.0,0,85,0.0,0.0,414.65226827277917,516.0,0.0,391.749026583049,60,2,1,2,2,1,2,2,2,0,,2,,2,109150,1,1,0,1,1,204.0,0.0,392.0,11,0.0,0.0,2.0,1.0,1.0,2,2,378.745561201903,300.0,9914.916994513396,0,7,2,3,48.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05204279574761324,9914.916994513396,2,1,2_1,2_0_1,2_3_1,2_0_1 -24739,2,46.0,0.0,5,111,978.0,0.0,0.0,77,85,0.0,310.55175144583734,1351.76639456926,1378.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106911,2,2,2,0,1,,730.0,,41,0.0,3.0,6.0,3.0,1.8,2,2,1063.39279220828,978.0,22852.00592381987,6,5,0,1,110.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06030105210867449,12695.558846566593,2,1,2_0,2_1_0,2_3_0,2_0_0 -24740,2,28.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,655.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,7.0,2,,2,122788,2,2,0,0,1,,0.0,350.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1800.80142086527,0.0,11620.949366042794,0,1,3,4,25.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.056363725489928955,11620.949366042794,2,1,2_0,2_0_0,2_3_0,2_0_1 -24741,2,83.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2749.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131206,2,2,5,0,2,,97.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1125.45091785464,0.0,35891.22989470826,0,5,0,1,100.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07659252714561636,35891.22989470826,9,5,9,9_1,9_3,9_0_1 -24742,1,30.0,172.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1681.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,10.0,2,,2,110524,1,3,0,0,1,,0.0,287.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1316.84495951306,0.0,16946.661882044118,0,1,2,3,68.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0991935763928298,13035.893755418552,2,1,2_1,2_0_1,2_3_1,2_0_1 -24743,2,49.0,0.0,8,111,520.0,780.0,0.0,77,55,0.0,41.40690019277831,718.7305983394839,1340.0,0.0,1414.6492626610102,60,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,116166,2,1,2,0,1,,370.0,,42,1.0,6.0,7.0,2.0,1.5,2,2,1073.56141133723,520.0,29507.29193145516,5,1,1,2,200.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045412503563959476,19671.527954303438,5,3,5,5_1,5_3,5_0_0 -24744,2,53.0,0.0,2,111,0.0,0.0,1052.0,77,63,0.0,103.51725048194578,537.4808282490764,1152.0,0.0,1202.6945549345685,12,0,0,0,0,0,0,0,0,1,15.0,2,,2,122821,1,1,0,0,2,,0.0,,42,1.0,4.0,2.0,2.0,1.5,2,2,1388.13162015174,0.0,51017.3239311451,5,1,1,2,39.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022580565016596763,34011.54928743007,9,5,9,9_0,9_3,9_0_1 -24745,2,27.0,0.0,2,111,800.0,340.0,0.0,0,53,0.0,0.0,1105.7393820607444,1140.0,0.0,616.6419862881327,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,116112,1,3,0,0,2,,0.0,319.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1277.99154584709,800.0,23569.970779995994,0,1,2,3,67.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04836662763144052,23569.970779995994,6,3,6,6_0,6_3,6_0_1 -24746,2,27.0,0.0,2,111,252.0,240.0,0.0,0,35,0.0,0.0,348.3079053491345,492.0,0.0,435.27669620338776,42,2,2,2,1,1,2,2,2,1,5.0,2,,2,101330,1,2,0,0,2,,0.0,430.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1669.64297273349,252.0,8999.121576948854,0,1,2,3,55.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,0,0.05467200279416742,8999.121576948854,1,1,1_0,1_0_0,1_3_0,1_0_1 -24747,0,26.0,0.0,2,111,311.0,701.0,0.0,0,33,0.0,0.0,429.8561847761144,1012.0,0.0,1271.3706834940617,33,2,2,2,2,1,2,2,2,2,10.0,2,,2,125917,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,1743.28677073812,311.0,20404.0,0,1,5,0,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.04959811801607528,20404.0,5,3,5,5_0,5_3,5_0_1 -24748,2,28.0,0.0,1,111,600.0,0.0,0.0,0,46,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,1,2,2,1,2,2,2,1,5.0,2,,1,133498,2,1,0,1,1,469.0,0.0,445.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1456.78171564577,600.0,27122.947674694253,0,1,3,4,48.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.022121489419079654,27122.947674694253,7,4,7,7_0,7_3,7_1_0 -24749,1,25.0,271.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1223.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129256,1,2,0,0,1,,64.0,420.0,12,1.0,0.0,2.0,1.0,1.0,5,5,1669.64297273349,0.0,11713.176290181464,0,4,2,3,63.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10441232759598916,11713.176290181464,2,1,2_1,2_0_1,2_3_1,2_0_1 -24750,2,30.0,0.0,9,111,500.0,830.0,0.0,85,33,0.0,0.0,691.0871137879653,1330.0,0.0,1505.3319077033825,71,0,0,0,0,0,0,0,0,1,10.0,2,2006.0,6,122269,2,1,0,0,1,,540.0,689.0,42,1.0,0.0,4.0,4.0,2.1,3,2,1587.40437768574,500.0,39092.18400107246,6,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034022146216325815,18615.32571479641,4,2,4_0,4_0_0,4_3_0,4_0_0 -24751,2,29.0,0.0,2,111,0.0,0.0,0.0,54,67,0.0,0.0,0.0,1405.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,133311,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,1469.60808536693,0.0,40049.85334245085,4,1,1,2,89.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03508127702706891,26699.902228300565,7,4,7,7_0,7_3,7_0_1 -24752,2,37.0,0.0,5,111,0.0,0.0,876.0,0,63,0.0,0.0,447.5600813176719,876.0,0.0,1001.4832985957052,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,126156,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1432.14958884958,0.0,35358.3880605974,0,1,1,2,76.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02477488505694056,35358.3880605974,9,5,9,9_0,9_3,9_0_0 -24753,1,61.0,180.0,5,111,220.0,180.0,0.0,0,77,0.0,0.0,304.0783300667047,400.0,0.0,326.4575221525408,12,0,0,0,0,0,0,0,0,0,,2,,3,124717,1,2,0,0,2,,0.0,350.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1578.11089364615,220.0,9029.400265706925,0,5,2,3,68.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04429973068301934,9029.400265706925,1,1,1_1,1_0_1,1_3_1,1_0_0 -24754,2,57.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,936.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,116790,2,1,0,1,1,,159.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,1407.11900441134,0.0,36564.639861487245,0,1,1,2,80.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02559850181885338,36564.639861487245,9,5,9,9_0,9_3,9_0_1 -24755,2,31.0,0.0,5,111,180.0,84.0,0.0,0,47,0.0,0.0,248.7913609636675,264.0,0.0,152.3468436711857,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,103891,2,3,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1659.41485296112,180.0,25603.194313539658,0,1,1,2,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010311213388728988,25603.194313539658,7,4,7,7_0,7_3,7_0_0 -24756,1,24.0,44.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,164.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,5.0,2,,2,101314,2,1,0,1,1,,0.0,282.0,32,1.0,0.0,2.0,2.0,1.3,4,3,1171.21709697725,0.0,17207.916853533705,0,1,2,3,53.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.00953049700297233,13236.85911810285,2,1,2_1,2_0_1,2_3_1,2_0_1 -24757,2,65.0,0.0,1,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,744.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131547,2,1,3,0,1,,159.0,,11,0.0,2.0,5.0,1.0,1.0,4,2,1181.72044290251,0.0,2856.1877725663003,0,5,0,1,65.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2604870755158762,2856.1877725663003,1,1,1_0,1_1_0,1_3_0,1_1_0 -24758,2,70.0,0.0,2,111,21.0,39.0,0.0,75,74,0.0,0.0,29.02565877909454,60.0,0.0,70.7324631330505,50,0,0,0,0,0,0,0,0,0,,2,,2,115150,2,3,0,0,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1377.27257014581,21.0,41478.29410469994,5,5,0,1,101.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0014465397214395409,27652.19606979996,7,4,7,7_0,7_3,7_0_1 -24759,2,66.0,0.0,1,111,443.0,1187.0,0.0,0,75,0.0,0.0,612.3031828161372,1630.0,0.0,2152.8059933059217,60,0,0,0,0,0,0,0,0,0,,1,,1,111510,2,1,1,0,1,,148.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1184.84489401045,443.0,24522.187495960457,0,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0664704158333554,24522.187495960457,7,4,7,7_1,7_3,7_1_0 -24760,2,52.0,0.0,2,111,783.0,631.0,0.0,46,46,0.0,0.0,1082.2424201919537,1414.0,0.0,1144.4149804347403,20,0,0,0,0,0,0,0,0,0,,1,,2,130960,2,1,1,0,1,,520.0,,43,5.0,1.0,5.0,6.0,3.5,3,3,1026.85995347204,783.0,80898.7310406772,1,1,0,1,120.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.017478642517754918,23113.923154479202,6,3,6,6_1,6_3,6_0_1 -24761,2,59.0,0.0,1,111,204.0,408.0,0.0,0,56,0.0,0.0,281.96354242548983,612.0,0.0,739.9703835457592,60,0,0,0,0,0,0,0,0,0,,2,,1,118433,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1469.58255070429,204.0,10246.883086541216,0,1,0,1,67.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.059725478941379966,10246.883086541216,2,1,2_0,2_0_0,2_3_0,2_1_0 -24762,1,37.0,377.0,2,111,300.0,600.0,0.0,22,56,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,20,2,2,2,2,1,2,2,2,0,,2,,2,107319,1,2,0,0,2,,0.0,580.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1697.88214298956,300.0,11164.441460955415,4,4,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.08061307886717882,6202.467478308564,1,1,1_1,1_0_1,1_3_1,1_0_1 -24763,2,27.0,0.0,1,111,152.0,317.0,0.0,42,21,0.0,0.0,210.09048259154144,469.0,0.0,574.9279695686413,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,127860,2,3,0,0,1,,0.0,504.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1461.4636371558,152.0,49458.51882730052,1,1,2,3,51.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.009482694005407973,32972.34588486701,8,4,8,8_0,8_3,8_1_0 -24764,2,36.0,0.0,1,111,615.0,960.0,0.0,54,38,0.0,0.0,850.0371499591973,1575.0,0.0,1741.106784813551,31,0,0,0,0,0,0,0,0,0,,1,,1,110401,2,1,1,0,1,,401.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1001.99402246023,615.0,38109.377664635314,1,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04132841039442022,15878.907360264715,3,2,3_0,3_1_0,3_3_0,3_1_0 -24765,2,49.0,0.0,2,111,305.0,1160.0,0.0,0,52,0.0,0.0,421.56313941065883,1465.0,0.0,2103.8373649830405,50,2,2,2,2,1,2,2,2,3,15.0,2,,2,128121,2,2,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,1,1,1338.27569039285,305.0,24019.766902811152,0,1,0,1,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.06099143284477685,16013.177935207435,4,2,4_0,4_0_0,4_3_0,4_0_1 -24766,1,33.0,400.0,6,111,800.0,0.0,0.0,0,35,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,4,108127,1,3,0,0,1,,0.0,503.0,32,1.0,0.0,3.0,3.0,1.6,2,2,1609.53382539379,800.0,7430.733562064475,0,1,2,3,67.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0.10766097227387825,4644.208476290297,1,1,1_1,1_0_1,1_3_1,1_0_0 -24767,2,64.0,0.0,5,111,271.0,307.0,0.0,0,75,0.0,0.0,374.56921567307717,578.0,0.0,556.7914405601668,60,0,0,0,0,0,0,0,0,0,,2,,3,112496,2,1,0,0,1,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1659.41485296112,271.0,29763.052348585155,0,5,1,2,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019420051183946407,29763.052348585155,8,4,8,8_0,8_3,8_0_0 -24768,2,71.0,0.0,6,111,1700.0,0.0,0.0,75,78,0.0,207.03450096389156,2349.696186879082,1900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100642,2,1,2,0,1,,290.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1051.00504628642,1700.0,37854.60482521368,5,5,0,1,100.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05019204423802289,25236.40321680912,7,4,7,7_1,7_3,7_0_0 -24769,2,45.0,0.0,1,111,604.0,818.0,0.0,38,38,0.0,258.79312620486445,834.833233455862,1672.0,0.0,1483.5680728932132,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,120371,2,1,2,0,1,,325.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1051.64343754617,604.0,65721.44899705863,1,1,1,2,97.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02544070505923919,31295.92809383744,8,4,8,8_1,8_3,8_1_0 -24770,2,62.0,0.0,1,111,550.0,0.0,0.0,0,77,1642.9433647198007,0.0,760.1958251667618,1675.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109448,2,1,3,0,2,,95.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1171.01297334662,550.0,23097.345487288858,0,5,1,2,70.0,8,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07251915597494965,23097.345487288858,6,3,6,6_1,6_3,6_1_0 -24771,2,76.0,0.0,2,111,218.0,958.0,0.0,0,86,0.0,0.0,301.3139816115529,1176.0,0.0,1737.479479011856,50,0,0,0,0,0,0,0,0,0,,2,,2,110491,2,1,0,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1515.19119207822,218.0,19242.547780768884,0,6,0,1,130.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.061114568268101244,19242.547780768884,5,3,5,5_0,5_3,5_0_1 -24772,2,55.0,0.0,5,111,356.0,888.0,0.0,0,54,0.0,0.0,492.0540250170313,1244.0,0.0,1610.5237759525346,50,1,2,2,2,1,2,2,2,2,5.0,2,,3,128505,2,2,0,0,1,,0.0,,32,1.0,2.0,4.0,2.0,1.5,4,3,1390.76036109981,356.0,33933.37513826302,0,1,1,2,98.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.03666007271399522,22622.25009217535,6,3,6,6_0,6_3,6_0_0 -24773,1,40.0,185.0,2,111,213.0,421.0,0.0,0,63,0.0,0.0,294.4031104736732,634.0,0.0,763.547871256776,44,0,0,0,0,0,0,0,0,2,20.0,2,,2,104533,2,2,0,0,1,,0.0,219.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1287.93627893134,213.0,4489.258885054123,0,1,2,3,48.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.14122598322648447,4489.258885054123,1,1,1_1,1_0_1,1_3_1,1_0_1 -24774,2,64.0,0.0,5,111,375.0,0.0,0.0,0,77,0.0,0.0,518.315335340974,375.0,0.0,0.0,50,2,2,2,2,1,2,2,1,0,,2,,3,126929,2,1,0,1,1,456.0,0.0,311.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1277.99154584709,375.0,20088.365437915425,0,5,2,3,58.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.01866752181300988,20088.365437915425,5,3,5,5_0,5_3,5_0_0 -24775,2,72.0,0.0,2,111,1360.0,0.0,0.0,0,75,0.0,0.0,1879.7569495032656,1385.0,43.00817510475479,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130042,2,1,0,0,1,,0.0,,11,0.0,0.0,6.0,1.0,1.0,3,3,1420.75544349219,1360.0,51434.58876830039,0,5,1,2,98.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026927404946097057,51434.58876830039,10,5,10,10_0,10_3,10_0_1 -24776,1,51.0,286.0,2,111,300.0,300.0,0.0,85,56,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,125410,2,1,0,1,1,440.0,0.0,238.0,42,2.0,0.0,3.0,5.0,2.5999999999999996,3,3,342.737495873461,300.0,16580.529506174276,7,1,2,3,68.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.036187022843665595,6377.126733143953,1,1,1_1,1_0_1,1_3_1,1_0_1 -24777,2,40.0,0.0,2,111,357.0,758.0,0.0,52,62,0.0,258.79312620486445,493.4361992446072,1365.0,0.0,1374.7488988423663,12,0,0,0,0,0,0,0,0,3,40.0,1,,2,103274,2,1,2,0,1,,303.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1077.37145370959,357.0,59033.52681893052,1,1,1,2,169.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023122453858919367,28111.20324710977,8,4,8,8_1,8_3,8_0_1 -24778,2,29.0,0.0,2,111,0.0,0.0,0.0,43,63,0.0,0.0,0.0,2011.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,131636,2,1,0,0,1,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,4,4,1536.65832246114,0.0,34260.88718409449,1,1,2,3,60.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05869667032246615,22840.591456062994,6,3,6,6_0,6_3,6_0_1 -24779,2,39.0,0.0,9,111,538.0,949.0,0.0,47,31,0.0,0.0,743.6097344358507,1487.0,0.0,1721.156602904229,71,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,114170,2,2,1,0,1,,325.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1005.18025058192,538.0,87580.89866606017,1,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01697858805571095,41705.18984098103,9,5,9,9_1,9_3,9_0_0 -24780,2,57.0,0.0,2,111,370.0,0.0,0.0,47,54,1493.5848770180007,0.0,511.40446420309434,1464.0,161.71073839387802,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,109676,2,1,2,0,1,,350.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1122.48297250624,370.0,43197.324466985265,4,1,1,2,110.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033890987880948555,28798.21631132351,8,4,8,8_1,8_3,8_0_1 -24781,2,45.0,0.0,2,111,400.0,850.0,0.0,0,62,0.0,0.0,552.8696910303722,1250.0,0.0,1541.6049657203316,70,0,0,0,0,0,0,0,0,1,15.0,2,,2,114819,2,3,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,1345.46533067388,400.0,23379.459921337108,0,1,1,2,56.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.053465734632269925,15586.306614224739,3,2,3_0,3_0_0,3_3_0,3_0_1 -24782,2,47.0,0.0,7,111,316.0,770.0,0.0,0,52,0.0,0.0,436.76705591399406,1086.0,0.0,1396.5127336525356,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,103245,2,1,2,0,1,,223.0,486.0,12,1.0,0.0,3.0,1.0,1.0,3,2,990.956689266062,316.0,24071.74410998467,0,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045115135614520775,24071.74410998467,6,3,6,6_1,6_3,6_0_0 -24783,2,48.0,0.0,5,111,433.0,1546.0,0.0,85,46,0.0,0.0,598.4814405403779,1979.0,0.0,2803.907384710156,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,106053,2,1,2,0,1,,360.0,,42,1.0,0.0,7.0,3.0,1.8,1,1,1156.66589710673,433.0,63240.5675179009,6,1,1,2,120.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031293204309715016,35133.648621056054,9,5,9,9_1,9_3,9_0_0 -24784,1,43.0,111.0,2,111,360.0,960.0,0.0,0,52,0.0,0.0,497.582721927335,1320.0,0.0,1741.106784813551,50,2,2,1,2,1,2,2,2,2,5.0,1,,2,130040,2,2,3,0,1,,310.0,502.0,32,1.0,0.0,5.0,3.0,2.0,2,2,1102.16082260071,360.0,27470.829235857214,0,1,2,3,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,0.04805097030988151,13735.414617928607,3,2,3_1,3_1_1,3_3_1,3_0_1 -24785,2,66.0,0.0,9,111,0.0,0.0,0.0,85,74,0.0,0.0,0.0,1295.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,107894,2,1,1,0,1,,252.0,750.0,41,0.0,3.0,5.0,2.0,1.5,4,3,1291.4149466624,0.0,39437.296926402174,6,5,2,3,98.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03283693612208583,26291.531284268116,7,4,7,7_1,7_2,7_0_0 -24786,2,80.0,0.0,7,111,284.0,1136.0,0.0,0,71,0.0,0.0,392.5374806315643,1420.0,0.0,2060.309695362702,31,0,0,0,0,0,0,0,0,0,,1,,5,126298,2,1,2,0,1,,42.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1197.68085853267,284.0,21729.81569295346,0,5,0,1,115.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06534800018853713,21729.81569295346,6,3,6,6_1,6_2,6_0_0 -24787,2,46.0,0.0,9,111,80.0,160.0,0.0,0,63,0.0,0.0,110.57393820607444,240.0,0.0,290.18446413559184,71,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,113800,1,1,0,0,1,,80.0,300.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1355.21876956,80.0,19302.09814604589,0,1,2,3,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012433881445637812,19302.09814604589,5,3,5,5_0,5_2,5_0_0 -24788,2,60.0,0.0,6,111,420.0,0.0,0.0,56,48,0.0,103.51725048194578,580.5131755818909,660.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,130656,2,2,2,0,1,,295.0,,43,2.0,1.0,7.0,3.0,1.8,2,2,1279.26177852224,420.0,43552.9492829649,1,1,0,1,130.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015153968005977252,24196.082934980503,7,4,7,7_1,7_2,7_0_0 -24789,2,49.0,0.0,5,111,1282.0,0.0,0.0,34,53,0.0,0.0,1771.947359752343,2542.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,4.0,1,,3,121113,1,1,1,0,1,,344.0,,43,2.0,0.0,6.0,4.0,2.3,5,4,1086.83433538563,1282.0,50881.42497128544,1,1,1,2,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04995929263841488,22122.358683167586,6,3,6,6_1,6_2,6_0_0 -24790,2,60.0,0.0,5,111,692.0,0.0,0.0,54,78,0.0,310.55175144583734,956.464565482544,1062.0,120.42289029331342,0.0,31,2,2,2,2,2,2,2,1,0,,1,,3,128775,2,1,2,0,1,,300.0,,42,1.0,2.0,7.0,2.0,1.5,3,2,1126.13308972104,692.0,37740.49354968293,1,5,0,1,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.028139536612099295,25160.32903312195,7,4,7,7_1,7_2,7_0_0 -24791,2,72.0,0.0,2,111,241.0,641.0,0.0,0,86,0.0,196.68277591569696,333.1039888457993,1072.0,0.0,1162.5515094432149,71,0,0,0,0,0,0,0,0,0,,1,,2,132224,2,1,2,0,1,,142.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1167.46247550275,241.0,22470.68433491348,0,6,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04770660225662983,22470.68433491348,6,3,6,6_1,6_2,6_0_1 -24792,2,63.0,0.0,2,111,369.0,0.0,0.0,56,78,1792.3018524216009,0.0,510.0222899755184,1775.0,149.6684493645467,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112235,2,2,5,0,1,,299.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1076.14587065631,369.0,26297.11082470346,4,5,0,1,100.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06749790925064544,17531.407216468975,4,2,4_0,4_1_0,4_2_0,4_0_1 -24793,2,73.0,0.0,2,111,401.0,1563.0,0.0,77,74,0.0,0.0,554.2518652579481,1964.0,0.0,2834.7394840245624,71,0,0,0,0,0,0,0,0,0,,1,,2,128832,2,1,2,0,1,,273.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1164.28033904435,401.0,59106.75809614302,5,5,0,1,200.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033228010861386756,39404.50539742868,9,5,9,9_1,9_2,9_0_1 -24794,2,43.0,0.0,2,111,490.0,1072.0,0.0,65,37,0.0,0.0,677.265371512206,1562.0,0.0,1944.2359097084652,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,130852,2,2,3,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1108.79998376977,490.0,53099.11600394359,1,1,0,1,110.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02941668557879556,23086.57217562765,6,3,6,6_1,6_2,6_0_1 -24795,2,56.0,0.0,2,111,678.0,900.0,0.0,67,62,0.0,207.03450096389156,937.1141262964809,1778.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,117302,2,2,2,0,1,,200.0,,43,2.0,3.0,3.0,2.0,1.5,3,3,1121.91964958717,678.0,27830.797494878585,1,1,1,2,78.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0638860600501005,18553.864996585722,4,2,4_0,4_1_0,4_2_0,4_0_1 -24796,2,77.0,0.0,2,111,310.0,0.0,0.0,77,78,2560.0044792088534,0.0,428.47401054853844,2144.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,118219,2,1,1,0,1,,205.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1155.92950508696,310.0,31814.31781152199,5,5,0,1,100.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06739104112499691,21209.545207681327,5,3,5,5_1,5_2,5_0_1 -24797,1,42.0,35.0,9,111,1450.0,0.0,0.0,0,54,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,127053,2,1,1,0,1,,280.0,,32,1.0,0.0,7.0,2.0,1.5,1,1,1102.51390398427,1450.0,25357.645330137366,0,1,1,2,130.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05718196548307607,16905.096886758245,4,2,4_1,4_1_1,4_2_1,4_0_0 -24798,2,51.0,0.0,8,111,640.0,1560.0,0.0,56,38,0.0,155.27587572291867,884.5915056485956,2350.0,0.0,2829.2985253220204,33,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,131902,2,2,1,0,1,,460.0,,43,2.0,3.0,10.0,6.0,3.0999999999999996,2,2,1123.14953545426,640.0,58208.929114629034,1,1,1,2,168.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040371812980311284,18777.07390794485,5,3,5,5_1,5_2,5_0_0 -24799,2,64.0,0.0,5,111,1350.0,0.0,0.0,78,78,0.0,155.27587572291867,1865.9352072275062,1550.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,104200,2,2,1,0,1,,212.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1094.53331240662,1350.0,41763.039596583,7,5,0,1,192.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03711415679922921,27842.026397722002,7,4,7,7_1,7_2,7_0_0 -24800,2,45.0,0.0,5,111,570.0,0.0,0.0,52,62,2539.0942909306013,0.0,787.8393097182804,2320.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,131595,2,1,2,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1026.02465852147,570.0,52513.96985839419,1,1,1,2,100.0,7,5,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04417872056247058,25006.652313521045,7,4,7,7_1,7_2,7_0_0 -24801,2,50.0,0.0,1,111,740.0,0.0,0.0,0,52,0.0,103.51725048194578,1022.8089284061887,895.0,94.61798523046055,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,117071,2,2,1,0,2,,54.0,478.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1212.35391093197,740.0,16192.891462215426,0,1,2,3,68.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05527116649230914,16192.891462215426,4,2,4_0,4_1_0,4_2_0,4_1_0 -24802,2,60.0,0.0,1,111,350.0,0.0,0.0,0,11,0.0,0.0,483.76097965157567,1074.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,120104,1,1,1,0,2,,300.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1203.35912120359,350.0,28717.010463955838,0,1,0,1,150.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03739943617557375,28717.010463955838,8,4,8,8_1,8_2,8_1_0 -24803,2,61.0,0.0,2,111,917.0,0.0,0.0,77,34,0.0,0.0,1267.4537666871283,2478.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,106071,2,1,3,0,2,,75.0,,42,1.0,4.0,7.0,2.0,1.5,1,1,1234.81079078636,917.0,50851.17015128112,6,1,0,1,300.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.048730442045443675,33900.78010085408,9,5,9,9_1,9_2,9_0_1 -24804,2,48.0,0.0,1,111,350.0,0.0,0.0,62,55,2240.377315527001,0.0,483.76097965157567,1910.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,1,116771,2,1,3,0,1,,350.0,,43,2.0,0.0,6.0,2.0,1.5,3,1,1097.68468501255,350.0,35364.664973382496,1,1,0,1,150.0,7,5,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.054008711843801634,23576.44331558833,6,3,6,6_1,6_2,6_1_0 -24805,2,67.0,0.0,5,111,1900.0,0.0,0.0,72,72,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,111054,2,1,1,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1126.13308972104,1900.0,41765.200692315935,5,5,1,2,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04549241877220445,27843.467128210625,7,4,7,7_1,7_2,7_0_0 -24806,2,89.0,0.0,2,111,0.0,0.0,0.0,0,71,0.0,31.055175144583732,0.0,1702.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111038,2,3,1,0,1,,85.0,,21,1.0,1.0,3.0,2.0,1.5,1,1,1215.34003680168,0.0,23406.24324705091,0,5,0,1,80.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07271564180699716,15604.162164700605,3,2,3_0,3_1_0,3_2_0,3_0_1 -24807,2,43.0,0.0,6,111,600.0,108.0,0.0,52,37,2987.1697540360015,0.0,829.3045365455583,2708.0,0.0,195.8745132915245,50,0,0,0,0,0,0,0,0,0,,1,,4,130364,2,1,2,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1054.87364267626,600.0,54711.74319734131,1,1,0,1,130.0,7,5,5,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04949577260282933,26053.211046353004,7,4,7,7_1,7_2,7_0_0 -24808,2,33.0,0.0,9,111,500.0,0.0,0.0,0,53,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,2009.0,6,116669,2,2,1,0,1,,80.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1103.04594448234,500.0,23324.081198785203,0,1,1,2,75.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02143707165734107,23324.081198785203,6,3,6,6_1,6_2,6_0_0 -24809,2,35.0,0.0,9,111,870.0,0.0,0.0,43,46,0.0,0.0,1202.4915779910596,930.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,124838,2,1,1,0,1,,111.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1143.78444043914,870.0,55897.34685918477,1,1,1,2,106.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016637641180767188,26617.784218659413,7,4,7,7_1,7_2,7_0_0 -24810,2,50.0,0.0,7,111,1300.0,0.0,0.0,47,47,0.0,0.0,1796.8264958487098,1370.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,109660,2,2,2,0,1,,392.0,,43,2.0,1.0,7.0,4.0,2.5,2,2,1097.37007994878,1300.0,36433.33044767838,1,1,0,1,110.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03760293070015782,14573.332179071353,3,2,3_0,3_1_0,3_2_0,3_0_0 -24811,1,44.0,195.0,7,111,1689.0,0.0,0.0,55,55,0.0,67.28621281326475,2334.4922703757466,1808.0,92.89765822627035,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,128592,1,3,3,0,1,,272.0,640.0,43,2.0,2.0,5.0,4.0,2.5,2,2,1125.79984909759,1689.0,46754.07884978689,1,1,2,3,110.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03867042286960255,18701.631539914757,5,3,5,5_1,5_2,5_0_0 -24812,2,77.0,0.0,2,111,361.0,1569.0,0.0,77,75,0.0,0.0,498.96489615491095,1930.0,0.0,2845.6214014296474,50,0,0,0,0,0,0,0,0,0,,1,,2,100457,2,1,2,0,1,,267.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1193.34753006863,361.0,55227.27567674102,5,5,0,1,145.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03494650019126002,36818.18378449401,9,5,9,9_1,9_2,9_0_1 -24813,0,83.0,0.0,1,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,777.0,163.4310653980682,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,123521,1,3,2,0,2,,225.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,1117.51729372352,0.0,19361.990502498655,0,6,0,1,80.0,7,5,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.040130171528579596,12907.993668332436,2,1,2_0,2_1_0,2_2_0,2_1_0 -24814,0,43.0,0.0,9,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,1584.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,7.0,1,2009.0,6,128694,2,1,1,0,1,,0.0,,43,2.0,3.0,5.0,6.0,2.8999999999999995,4,4,1188.61837038456,0.0,30325.0,1,1,5,0,110.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05223413025556472,10456.89655172414,2,1,2_0,2_1_0,2_2_0,2_0_0 -24815,2,75.0,0.0,5,111,415.0,0.0,0.0,77,78,1357.6686532093627,0.0,573.6023044440112,1429.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117241,2,2,2,0,1,,1700.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1155.92950508696,415.0,25316.107758742313,5,5,0,1,100.0,7,5,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056446275771066305,16877.405172494877,4,2,4_0,4_1_0,4_2_0,4_0_0 -24816,2,75.0,0.0,1,111,139.0,1449.0,0.0,0,72,0.0,0.0,192.12221763305433,1588.0,0.0,2627.9830533279533,42,0,0,0,0,0,0,0,0,0,,1,,1,102987,2,1,2,0,1,,246.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1240.0136073285,139.0,18104.999548494823,0,5,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08771057937596137,18104.999548494823,4,2,4_0,4_1_0,4_2_0,4_1_0 -24817,2,43.0,0.0,8,112,1250.0,0.0,0.0,46,37,0.0,144.92415067472407,1727.717784469913,1390.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,113765,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,980.510524314479,1250.0,64524.968906780414,1,1,1,2,80.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02154204835043223,30726.175669895434,8,4,8,8_1,8_2,8_0_0 -24818,2,70.0,0.0,5,112,939.0,0.0,0.0,75,74,0.0,0.0,1297.8615996937988,939.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127375,2,2,3,0,1,,305.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1023.94797154677,939.0,49067.2133292201,5,5,0,1,120.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019137015051164816,32711.4755528134,8,4,8,8_1,8_2,8_0_0 -24819,2,51.0,0.0,9,112,1284.0,0.0,0.0,52,46,0.0,0.0,1774.711708207495,1284.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,22.0,1,2008.0,6,108762,2,1,1,0,1,,189.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1050.48170108997,1284.0,44248.36183292934,1,1,1,2,153.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029018023420800534,19238.41818823015,5,3,5,5_1,5_2,5_0_0 -24820,2,54.0,0.0,8,112,550.0,0.0,0.0,0,52,0.0,0.0,760.1958251667618,608.0,99.77896624303112,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,118199,2,1,1,0,1,,140.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1003.18641720001,550.0,25304.734508702422,0,1,1,2,58.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02402712424391988,25304.734508702422,7,4,7,7_1,7_2,7_0_0 -24821,2,49.0,0.0,1,112,300.0,0.0,0.0,0,63,1120.1886577635005,0.0,414.65226827277917,1230.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105154,2,1,1,0,1,,100.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,1113.13135848422,300.0,16303.1636381756,0,4,0,1,60.0,7,4,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0754454796196625,16303.1636381756,4,2,4_0,4_1_0,4_2_0,4_1_0 -24822,0,80.0,0.0,2,112,616.0,0.0,0.0,72,72,2677.9976844932753,0.0,851.4193241867732,2409.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,109995,2,1,2,0,1,,355.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1076.84670470452,616.0,42818.94897257062,5,5,0,1,120.0,7,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.056260138508845245,28545.965981713747,8,4,8,8_1,8_2,8_0_1 -24823,2,53.0,0.0,9,112,1372.0,1994.0,0.0,0,38,0.0,0.0,1896.3430402341767,3366.0,0.0,3616.423884289813,33,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,109180,2,1,1,0,1,,654.0,,32,1.0,0.0,7.0,3.0,2.0,1,1,1132.05874030884,1372.0,70801.666565203,0,1,1,2,240.0,7,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04754125380509465,35400.8332826015,9,5,9,9_1,9_2,9_0_0 -24824,2,85.0,0.0,5,112,500.0,0.0,0.0,0,75,2728.7795703118873,172.87380830484946,691.0871137879653,2624.0,223.64251054472493,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,126689,2,1,2,0,1,,397.0,,11,0.0,1.0,5.0,1.0,1.0,5,5,1059.85292572739,500.0,18247.004679489746,0,5,0,1,176.0,7,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14380442412827707,18247.004679489746,4,2,4_0,4_1_0,4_2_0,4_0_0 -24825,2,86.0,0.0,1,112,0.0,0.0,1130.0,0,86,0.0,0.0,577.3320683664033,1130.0,0.0,1291.8677253574735,10,0,0,0,0,0,0,0,0,0,,2,,1,121578,2,1,0,0,1,,101.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1357.1910259276,0.0,17578.278282337742,0,6,0,1,75.0,7,4,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06428388388499905,17578.278282337742,4,2,4_0,4_0_0,4_2_0,4_1_0 -24826,2,48.0,0.0,6,112,600.0,1000.0,0.0,62,37,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,4,121264,2,1,2,0,1,,340.0,,43,2.0,2.0,4.0,3.0,2.0,1,1,1063.39561252644,600.0,102545.0,1,1,0,1,110.0,7,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015602906041250184,51272.5,10,5,10,10_1,10_2,10_0_0 -24827,2,68.0,0.0,6,112,3000.0,0.0,0.0,77,74,0.0,103.51725048194578,4146.522682727792,3100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,127185,2,1,1,0,1,,640.0,,41,0.0,4.0,10.0,2.0,1.5,1,1,1053.64728884423,3000.0,77920.97421054837,5,7,0,1,310.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03978389684430235,51947.31614036558,10,5,10,10_1,10_2,10_0_0 -24828,2,67.0,0.0,1,112,925.0,0.0,0.0,0,75,0.0,0.0,1278.5111605077357,976.0,87.73667721369978,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,130385,2,1,0,0,1,,112.0,,11,0.0,0.0,2.0,1.0,1.0,4,4,1297.44045613237,925.0,23306.58383837532,0,5,1,2,36.0,7,4,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0418765790288396,23306.58383837532,6,3,6,6_0,6_2,6_1_0 -24829,1,57.0,234.0,7,112,820.0,0.0,0.0,0,52,0.0,0.0,1133.3828666122631,820.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,1,,5,115450,2,3,2,0,1,,240.0,248.0,12,1.0,2.0,1.0,1.0,1.0,2,2,1068.9189121457,820.0,12658.321915733517,0,4,2,3,35.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,1,0.06477951860118128,12658.321915733517,2,1,2_1,2_1_1,2_2_1,2_0_0 -24830,2,50.0,0.0,8,112,0.0,0.0,0.0,0,54,0.0,155.27587572291867,0.0,1306.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,130696,2,1,1,0,1,,244.0,,12,1.0,0.0,4.0,1.0,1.0,2,1,1144.52786062514,0.0,14594.56455200772,0,1,1,2,80.0,7,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08948536938845075,14594.56455200772,3,2,3_0,3_1_0,3_2_0,3_0_0 -24831,2,49.0,0.0,6,112,1545.0,0.0,0.0,0,54,0.0,0.0,2135.459181604813,1645.0,172.03270041901916,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,4,118979,2,2,2,0,1,,320.0,,32,1.0,0.0,7.0,3.0,2.0,2,2,1171.07086228447,1545.0,36560.4197727405,0,1,0,1,167.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04499401293052205,18280.20988637025,4,2,4_0,4_1_0,4_2_0,4_0_0 -24832,2,35.0,0.0,9,112,1240.0,0.0,0.0,31,31,0.0,0.0,1713.8960421941538,1240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,133410,2,1,1,0,1,,190.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,1050.48170108997,1240.0,121252.06976511373,1,1,1,2,175.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01022662955281584,57739.08084053035,10,5,10,10_1,10_2,10_0_0 -24833,2,64.0,0.0,9,112,816.0,24.0,0.0,0,21,0.0,207.03450096389156,1127.8541697019593,1040.0,0.0,43.52766962033877,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,118091,2,1,1,0,1,,200.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1170.64754116349,816.0,9438.892955168201,0,5,0,1,115.0,7,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11018241280409427,9438.892955168201,1,1,1_0,1_1_0,1_2_0,1_0_0 -24834,2,77.0,0.0,7,112,2360.0,0.0,0.0,77,74,0.0,62.110350289167464,3261.931177079196,2420.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,100053,2,1,1,0,1,,430.0,,41,0.0,2.0,8.0,2.0,1.5,2,1,1053.64728884423,2360.0,101306.07771845532,5,5,0,1,219.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023888004101052462,67537.38514563687,10,5,10,10_1,10_2,10_0_0 -24835,2,49.0,0.0,1,300,1200.0,0.0,0.0,85,62,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,121758,2,3,4,0,1,,300.0,280.0,42,1.0,0.0,3.0,2.0,1.5,3,3,819.973934673514,1200.0,20539.046083642625,6,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06280720120820805,13692.697389095083,3,2,3_0,3_1_0,3_0_0,3_1_0 -24836,1,32.0,200.0,9,300,1350.0,0.0,0.0,52,47,0.0,414.0690019277831,1865.9352072275062,1810.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,2009.0,6,103796,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,714.724923606135,1350.0,38369.502837451815,1,1,1,2,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.047172881224650375,15987.292848938258,3,2,3_1,3_1_1,3_0_1,3_0_0 -24837,2,53.0,0.0,5,300,1654.0,0.0,0.0,77,37,0.0,0.0,2286.116172410589,1774.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,111161,2,1,1,0,1,,636.0,,42,1.0,1.0,5.0,3.0,2.0,1,1,866.550680691495,1654.0,33817.453639910374,6,1,0,1,81.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05245811878356142,16908.726819955187,4,2,4_0,4_1_0,4_0_0,4_0_0 -24838,2,66.0,0.0,2,300,387.0,0.0,0.0,0,78,0.0,0.0,534.9014260718851,492.0,180.63433543997013,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,127811,2,1,3,0,1,,363.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,835.553452295802,387.0,17421.53740705165,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028240905983467054,17421.53740705165,4,2,4_0,4_1_0,4_0_0,4_0_1 -24839,1,25.0,351.0,7,300,548.0,0.0,0.0,0,62,0.0,0.0,757.43147671161,608.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,127412,2,1,1,0,1,,170.0,364.0,32,1.0,0.0,4.0,2.0,1.3,3,3,668.753232490804,548.0,11034.826275353042,0,4,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0550982847240654,8488.327904117725,1,1,1_1,1_1_1,1_0_1,1_0_0 -24840,1,43.0,363.0,2,300,1520.0,0.0,0.0,0,85,0.0,0.0,2100.904825915414,1610.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108748,1,2,3,0,1,,270.0,323.0,31,1.0,1.0,3.0,3.0,1.8,2,2,725.814921494457,1520.0,14181.799922729944,0,7,2,3,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.11352578719007064,7878.7777348499685,1,1,1_1,1_1_1,1_0_1,1_0_1 -24841,2,84.0,0.0,1,300,453.0,0.0,0.0,0,77,2240.377315527001,0.0,626.1249250918966,1988.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107014,2,1,3,0,2,,376.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,730.109559074742,453.0,16252.388657149677,0,5,0,1,50.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12232048112665876,16252.388657149677,4,2,4_0,4_1_0,4_0_0,4_1_0 -24842,2,58.0,0.0,1,300,250.0,0.0,0.0,0,62,1493.5848770180007,0.0,345.54355689398267,1310.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,133382,1,3,4,0,2,,260.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,816.899635302752,250.0,21534.79704547138,0,1,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06083177831831408,21534.79704547138,6,3,6,6_1,6_0,6_1_0 -24843,2,75.0,0.0,2,300,420.0,0.0,0.0,86,74,2987.1697540360015,0.0,580.5131755818909,2560.0,240.84578058662683,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,107325,2,2,2,0,2,,450.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,753.931151436388,420.0,36925.6329834713,6,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06932853395217112,24617.088655647534,7,4,7,7_1,7_0,7_0_1 -24844,2,44.0,0.0,2,300,820.0,0.0,0.0,45,65,0.0,414.0690019277831,1133.3828666122631,1280.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,122043,2,2,4,0,1,,410.0,,43,2.0,5.0,3.0,2.0,1.5,1,1,761.305727905866,820.0,27872.247180956365,1,1,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04592381775641529,18581.498120637578,4,2,4_0,4_1_0,4_0_0,4_0_1 -24845,2,76.0,0.0,2,300,1191.0,0.0,0.0,0,77,0.0,0.0,1646.1695050429332,1281.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100617,2,2,5,0,1,,183.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,786.026488746591,1191.0,20903.623235905696,0,5,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06128124227763799,20903.623235905696,5,3,5,5_1,5_0,5_0_1 -24846,2,60.0,0.0,2,300,620.0,0.0,0.0,75,75,746.7924385090004,227.73795106028072,856.9480210970769,1490.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121032,2,1,1,0,1,,353.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,831.376084346072,620.0,28181.85030932653,5,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052870907468658926,18787.900206217688,5,3,5,5_1,5_0,5_0_1 -24847,2,85.0,0.0,1,300,350.0,0.0,0.0,0,71,0.0,316.7627864747541,483.76097965157567,746.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,125728,2,1,2,0,1,,85.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,927.882153850561,350.0,9786.839222857481,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07622481406026296,9786.839222857481,2,1,2_0,2_1_0,2_0_0,2_1_0 -24848,2,44.0,0.0,2,300,0.0,0.0,0.0,0,62,0.0,0.0,0.0,60.0,103.2196202514115,0.0,71,2,2,1,1,2,2,2,2,2,20.0,1,,2,103083,2,1,1,0,1,,0.0,460.0,12,1.0,0.0,4.0,1.0,1.0,1,1,898.411819650455,0.0,20114.414397960667,0,1,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.0029829354617494207,20114.414397960667,5,3,5,5_1,5_0,5_0_1 -24849,2,53.0,0.0,6,300,810.0,0.0,0.0,62,67,0.0,0.0,1119.5611243365038,970.0,275.25232067043066,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,4,103549,2,1,1,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,684.779985162979,810.0,53676.7206887427,1,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01807114867588087,21470.68827549708,6,3,6,6_1,6_0,6_0_0 -24850,2,68.0,0.0,1,300,700.0,0.0,0.0,77,78,0.0,0.0,967.5219593031513,850.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122165,1,1,3,0,2,,220.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,748.107375960596,700.0,16399.352926529933,5,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.051831313333401026,10932.901951019956,2,1,2_0,2_1_0,2_0_0,2_1_0 -24851,2,59.0,0.0,2,300,1555.0,0.0,0.0,71,11,0.0,0.0,2149.280923880572,1660.0,180.63433543997013,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,129534,2,1,2,0,1,,120.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,830.733876678454,1555.0,39131.55831487882,5,1,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0424210042095059,26087.70554325255,7,4,7,7_1,7_0,7_0_1 -24852,2,68.0,0.0,1,300,700.0,0.0,0.0,71,71,0.0,0.0,967.5219593031513,790.0,154.82943037711726,0.0,70,1,2,2,1,2,2,2,2,0,,1,,1,119371,2,1,2,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,722.435669378489,700.0,17674.95779276843,5,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.044696004893614076,11783.305195178953,2,1,2_0,2_1_0,2_0_0,2_1_0 -24853,2,61.0,0.0,6,300,400.0,0.0,0.0,74,34,2987.1697540360015,155.27587572291867,552.8696910303722,2550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,104822,1,1,2,0,1,,315.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,832.529632937131,400.0,84255.29641414969,5,1,1,2,164.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030265159681661952,56170.197609433126,10,5,10,10_1,10_0,10_0_0 -24854,2,45.0,0.0,7,300,700.0,0.0,0.0,11,11,2987.1697540360015,0.0,967.5219593031513,2700.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,114762,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,723.881126375082,700.0,50343.297802845795,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05363176664694729,19362.806847248386,5,3,5,5_1,5_0,5_0_0 -24855,2,45.0,0.0,2,300,1800.0,0.0,0.0,69,67,0.0,414.0690019277831,2487.913609636675,2320.0,206.439240502823,0.0,71,2,2,2,1,1,2,2,2,0,,1,,2,125013,2,1,2,0,1,,440.0,,43,3.0,1.0,11.0,4.0,2.5,1,1,765.614719528197,1800.0,20141.19380615208,4,4,0,1,210.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.11518681674625271,8056.477522460833,1,1,1_0,1_1_0,1_0_0,1_0_1 -24856,2,77.0,0.0,6,300,390.0,0.0,0.0,0,77,1493.5848770180007,0.0,539.0479487546129,1689.0,154.82943037711726,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,100216,2,2,5,0,1,,236.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,918.403919594777,390.0,18038.584390845033,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.09363262456765752,18038.584390845033,4,2,4_0,4_1_0,4_0_0,4_0_0 -24857,2,87.0,0.0,1,300,480.0,0.0,0.0,71,71,1045.5094139126004,0.0,663.4436292364467,1360.0,309.6588607542345,0.0,50,2,2,2,2,2,2,1,2,0,,1,,1,108029,2,3,3,0,1,,170.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,775.4953710527,480.0,17074.74926550319,5,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0.07964977867919053,11383.166177002126,2,1,2_0,2_1_0,2_0_0,2_1_0 -24858,2,79.0,0.0,1,300,641.0,0.0,0.0,0,77,0.0,0.0,885.9736798761714,746.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129484,2,1,1,0,2,,163.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,768.518901798724,641.0,12868.578307308806,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05797066173007656,12868.578307308806,2,1,2_0,2_1_0,2_0_0,2_1_0 -24859,2,40.0,0.0,9,300,1200.0,0.0,0.0,63,63,0.0,0.0,1658.6090730911167,1280.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,118814,2,2,3,0,1,,90.0,,43,2.0,1.0,4.0,4.0,2.3,1,1,742.962832669093,1200.0,40035.01841401112,1,1,1,2,82.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03197200977312493,17406.52974522223,4,2,4_0,4_1_0,4_0_0,4_0_0 -24860,2,91.0,0.0,1,300,350.0,0.0,0.0,0,86,3285.8867294396014,155.27587572291867,483.76097965157567,2790.0,154.82943037711726,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,121885,2,3,2,0,1,,80.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,848.412432462668,350.0,12503.730749279714,0,6,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.223133403617214,12503.730749279714,2,1,2_0,2_1_0,2_0_0,2_1_0 -24861,1,39.0,200.0,1,300,600.0,0.0,0.0,11,11,0.0,414.0690019277831,829.3045365455583,1180.0,309.6588607542345,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,107485,2,2,3,0,1,,105.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,675.738047257918,600.0,5338.715075055372,4,1,1,2,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.22102696686576054,2542.245273835891,1,1,1_1,1_1_1,1_0_1,1_1_0 -24862,2,77.0,0.0,5,300,343.0,0.0,0.0,72,72,1792.3018524216009,258.79312620486445,474.08576005854417,2033.0,412.878481005646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,109085,2,1,3,0,1,,107.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,814.091018485778,343.0,16862.60272925056,5,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12056264579331369,11241.735152833708,2,1,2_0,2_1_0,2_0_0,2_0_0 -24863,2,77.0,0.0,1,300,160.0,0.0,0.0,86,77,0.0,0.0,221.1478764121489,370.0,361.26867087994026,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,111355,2,1,4,0,2,,61.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,743.828923174822,160.0,38009.544318199565,6,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.009734397153055008,25339.696212133043,7,4,7,7_1,7_0,7_1_0 -24864,2,66.0,0.0,8,300,1400.0,0.0,0.0,72,74,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,131347,2,1,1,0,1,,115.0,,41,0.0,0.0,3.0,2.0,1.5,2,1,749.069492767783,1400.0,47582.228134257566,7,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029422749940372132,31721.485422838377,8,4,8,8_1,8_0,8_0_0 -24865,2,47.0,0.0,1,300,1210.0,0.0,0.0,0,54,0.0,124.22070057833493,1672.430815366876,1365.0,60.21144514665671,0.0,41,2,2,2,2,1,2,1,2,2,60.0,1,,1,102896,2,1,2,0,1,,100.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,810.346916926516,1210.0,40301.265578800434,0,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.03386990409348403,40301.265578800434,9,5,9,9_1,9_0,9_1_0 -24866,0,26.0,0.0,2,300,500.0,0.0,0.0,0,43,0.0,0.0,691.0871137879653,540.0,68.81308016760767,0.0,41,2,2,2,2,1,2,2,2,0,,1,,2,133430,2,2,3,0,1,,70.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1009.62712641471,500.0,16683.992561326126,0,4,5,0,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.032366353438189145,16683.992561326126,4,2,4_0,4_1_0,4_0_0,4_0_1 -24867,2,62.0,0.0,6,300,1400.0,0.0,0.0,77,21,0.0,0.0,1935.0439186063027,1530.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,117702,2,1,2,0,1,,93.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,727.654429834461,1400.0,10509.168088218787,6,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14558716609692385,7006.112058812524,1,1,1_0,1_1_0,1_0_0,1_0_0 -24868,2,52.0,0.0,1,300,900.0,0.0,0.0,0,56,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,100497,2,1,0,0,1,,80.0,193.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1343.14687474754,900.0,24517.221949647115,0,1,2,3,40.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.039156149174307965,24517.221949647115,7,4,7,7_0,7_0,7_1_0 -24869,2,49.0,0.0,1,300,1800.0,0.0,0.0,69,69,0.0,1035.1725048194578,2487.913609636675,2900.0,172.03270041901916,0.0,33,2,2,2,1,1,2,2,2,2,10.0,1,,1,131676,2,1,1,0,1,,140.0,,43,2.0,2.0,5.0,5.0,2.8,1,1,755.387276294886,1800.0,28062.960182981933,4,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.10333906263241008,10022.485779636405,2,1,2_0,2_1_0,2_0_0,2_1_0 -24870,2,48.0,0.0,1,300,250.0,0.0,0.0,0,56,0.0,279.4965763012536,345.54355689398267,1920.0,2408.4578058662682,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,113313,2,2,1,0,1,,110.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,927.882153850561,250.0,13114.863555576003,0,4,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14639877813930285,13114.863555576003,2,1,2_0,2_1_0,2_0_0,2_1_0 -24872,2,51.0,0.0,1,300,2400.0,0.0,0.0,56,63,0.0,0.0,3317.2181461822333,2760.0,619.317721508469,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,130428,2,1,2,0,1,,130.0,,43,3.0,2.0,6.0,3.0,2.0,2,2,859.635260327142,2400.0,42745.78912277223,1,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0645677634368352,21372.894561386114,6,3,6,6_1,6_0,6_1_0 -24873,2,63.0,0.0,2,300,480.0,0.0,0.0,77,75,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132273,2,1,1,0,1,,106.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,800.669411296896,480.0,40756.10332532094,5,5,0,1,83.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011777377149345526,27170.735550213958,7,4,7,7_1,7_0,7_0_1 -24874,2,76.0,0.0,1,300,327.0,0.0,0.0,0,77,2315.056559377901,0.0,451.9709724173293,1997.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116541,2,1,1,0,2,,55.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,816.899635302752,327.0,25365.52872048808,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0787288931370469,25365.52872048808,7,4,7,7_1,7_0,7_1_0 -24875,2,50.0,0.0,1,300,600.0,0.0,0.0,0,34,0.0,0.0,829.3045365455583,670.0,120.42289029331342,0.0,70,2,2,2,1,1,2,2,2,2,30.0,1,,1,105423,2,2,1,0,1,,66.0,,12,1.0,0.0,7.0,1.0,1.0,2,2,804.123724538933,600.0,30726.232597112863,0,1,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.021805471851532993,30726.232597112863,8,4,8,8_1,8_0,8_1_0 -24876,1,46.0,110.0,1,300,140.0,0.0,0.0,0,11,0.0,0.0,193.50439186063028,240.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,116060,2,1,2,0,1,,70.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,810.346916926516,140.0,5552.6653651716915,0,1,1,2,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04322248581831818,5552.6653651716915,1,1,1_1,1_1_1,1_0_1,1_1_0 -24877,1,48.0,223.0,2,300,500.0,0.0,0.0,0,47,0.0,0.0,691.0871137879653,1147.0,344.06540083803833,0.0,50,1,2,2,1,1,2,2,2,0,,1,,2,126734,1,1,2,0,2,,150.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,839.283728566699,500.0,23912.21947093732,0,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0.047967107419453585,11956.10973546866,2,1,2_1,2_1_1,2_0_1,2_0_1 -24878,1,50.0,110.0,1,300,1200.0,0.0,0.0,56,63,0.0,0.0,1658.6090730911167,1280.0,137.62616033521533,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,1,129519,2,2,1,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,803.019205871022,1200.0,23635.79645871451,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05415514565950091,13130.998032619173,2,1,2_1,2_1_1,2_0_1,2_1_0 -24879,1,29.0,277.0,9,300,1000.0,0.0,0.0,0,56,0.0,0.0,1382.1742275759307,1120.0,206.439240502823,0.0,71,2,2,2,1,2,2,2,2,2,20.0,1,2006.0,6,114257,1,2,5,0,1,,163.0,365.0,32,1.0,0.0,3.0,2.0,1.3,2,2,667.32551485209,1000.0,18072.68849892022,0,1,2,3,66.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.06197196394254879,13902.068076092475,3,2,3_1,3_1_1,3_0_1,3_0_0 -24880,2,38.0,0.0,2,112,540.0,0.0,0.0,46,38,1792.3018524216009,0.0,746.3740828910024,1806.0,113.54158227655265,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,119763,2,2,2,0,1,,586.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,1859.24630773783,540.0,64771.94046150075,1,1,1,2,92.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02788244395848312,23132.835879107413,6,3,6,6_1,6_1,6_0_1 -24881,2,79.0,0.0,6,112,480.0,800.0,0.0,71,71,0.0,0.0,663.4436292364467,1280.0,0.0,1450.922320677959,41,0,0,0,0,0,0,0,0,0,,1,,4,122350,2,1,2,0,1,,200.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1938.15647126041,480.0,25469.44538743423,5,5,0,1,80.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050256296536064705,16979.630258289486,4,2,4_0,4_1_0,4_1_0,4_0_0 -24882,2,40.0,0.0,8,112,1590.0,0.0,0.0,0,43,0.0,258.79312620486445,2197.6570218457296,1840.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,130956,2,1,1,0,1,,145.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,2194.13088036498,1590.0,49585.13268634455,0,1,1,2,150.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037107897071468866,30990.70792896534,8,4,8,8_1,8_1,8_0_0 -24883,2,62.0,0.0,5,112,600.0,0.0,0.0,75,74,1792.3018524216009,0.0,829.3045365455583,1866.0,113.54158227655265,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,118790,2,1,2,0,1,,320.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,2010.37099901272,600.0,49346.830491240726,5,5,0,1,160.0,8,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037813978758599764,32897.886994160486,8,4,8,8_1,8_1,8_0_0 -24884,2,67.0,0.0,5,112,550.0,0.0,0.0,77,75,0.0,0.0,760.1958251667618,1850.0,2236.4251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107702,2,1,1,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1971.16429161655,550.0,26126.163598499217,6,5,0,1,99.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07081024326534764,17417.44239899948,4,2,4_0,4_1_0,4_1_0,4_0_0 -24885,2,71.0,0.0,5,112,1100.0,0.0,0.0,77,75,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,128482,2,1,3,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1947.86071412082,1100.0,36202.82949935501,5,5,0,1,96.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03038436539938398,24135.219666236673,6,3,6,6_1,6_1,6_0_0 -24886,2,79.0,0.0,6,112,600.0,0.0,0.0,77,78,0.0,0.0,829.3045365455583,720.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,123677,2,1,2,0,2,,178.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1973.8993159144,600.0,36933.526534031094,5,5,0,1,130.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01949448286062208,24622.351022687395,7,4,7,7_1,7_1,7_0_0 -24887,2,66.0,0.0,5,112,1030.0,0.0,0.0,0,77,0.0,0.0,1423.6394544032084,1030.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,113407,2,1,2,0,1,,140.0,,11,0.0,3.0,9.0,1.0,1.0,4,4,2188.18975556112,1030.0,20083.856188462778,0,5,0,1,140.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05128497188660842,20083.856188462778,5,3,5,5_1,5_1,5_0_0 -24888,2,28.0,0.0,5,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,617.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,2,,3,132051,1,2,0,0,1,,260.0,460.0,12,1.0,0.0,3.0,1.0,1.0,3,3,2818.79183486318,0.0,20268.666161279856,0,1,2,3,56.0,8,2,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03044107565295455,20268.666161279856,5,3,5,5_0,5_1,5_0_0 -24889,2,43.0,0.0,2,112,450.0,0.0,0.0,54,47,2240.377315527001,414.0690019277831,621.9784024091688,2390.0,68.81308016760767,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,2,106971,2,2,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1999.3243270938,450.0,49359.71721087767,1,1,1,2,155.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04842005049966742,23504.62724327508,6,3,6,6_1,6_1,6_0_1 -24890,2,60.0,0.0,5,112,350.0,0.0,0.0,54,75,2688.452778632401,0.0,483.76097965157567,2150.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,116025,2,1,3,0,1,,170.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,2095.40027819601,350.0,34713.564699909526,4,5,0,1,96.0,8,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0619354427753599,23142.37646660635,6,3,6,6_1,6_1,6_0_0 -24891,2,63.0,0.0,5,112,1000.0,0.0,0.0,75,74,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131745,2,1,2,0,1,,283.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,2095.40027819601,1000.0,62139.595771093416,5,5,0,1,158.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01609279860274192,41426.39718072894,9,5,9,9_1,9_1,9_0_0 -24892,1,44.0,246.0,9,112,900.0,0.0,0.0,0,56,0.0,0.0,1243.9568048183376,935.0,60.21144514665671,0.0,50,2,2,2,2,1,2,2,2,0,,1,2004.0,6,131580,2,2,1,0,1,,324.0,550.0,32,2.0,0.0,3.0,3.0,2.0,2,2,2059.75846450807,900.0,19781.489007571694,0,1,2,3,50.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.047266411524537574,9890.744503785847,2,1,2_1,2_1_1,2_1_1,2_0_0 -24893,0,57.0,0.0,9,112,0.0,0.0,0.0,33,34,0.0,0.0,0.0,1627.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,129995,2,1,1,0,1,,0.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,2398.29827541763,0.0,96341.35446405136,1,1,5,0,100.0,8,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016887867199408078,48170.67723202568,10,5,10,10_1,10_1,10_0_0 -24894,2,41.0,0.0,9,112,600.0,1000.0,0.0,37,42,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,104767,2,1,1,0,1,,420.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2194.13088036498,600.0,67369.12330788617,1,1,1,2,129.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023749752430171602,37427.29072660342,9,5,9,9_1,9_1,9_0_0 -24895,2,37.0,0.0,9,112,1000.0,0.0,0.0,0,52,0.0,0.0,1382.1742275759307,1033.0,56.77079113827632,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,109327,2,1,1,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,2111.51299527431,1000.0,24566.0,0,1,1,2,90.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042049987787999676,24566.0,7,4,7,7_1,7_1,7_0_0 -24896,2,71.0,0.0,2,112,360.0,0.0,0.0,0,78,2688.452778632401,0.0,497.582721927335,2160.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120198,2,1,1,0,1,,192.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,2126.87745606928,360.0,9279.511641314739,0,5,0,1,90.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.232770870223723,9279.511641314739,1,1,1_0,1_1_0,1_1_0,1_0_1 -24897,2,60.0,0.0,9,112,320.0,730.0,0.0,54,78,0.0,362.31037668681023,442.2957528242978,1400.0,0.0,1323.9666176186377,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,126071,2,1,1,0,1,,130.0,,42,1.0,2.0,4.0,2.0,1.5,3,3,2133.21641344711,320.0,44681.11127870572,1,5,1,2,120.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031333150853551324,29787.40751913715,8,4,8,8_1,8_1,8_0_0 -24898,2,33.0,0.0,9,112,650.0,1300.0,0.0,85,37,0.0,0.0,898.4132479243549,1950.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,103071,2,1,1,0,1,,392.0,,42,1.0,0.0,5.0,4.0,2.1,1,1,1983.93065016537,650.0,60988.01568345142,7,1,1,2,120.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03197349476200643,29041.91223021496,8,4,8,8_1,8_1,8_0_0 -24899,2,43.0,0.0,8,112,600.0,900.0,0.0,52,63,0.0,0.0,829.3045365455583,1500.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,105184,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1944.36060888244,600.0,40107.33228358656,1,1,1,2,100.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03739964526670493,19098.72965885074,5,3,5,5_1,5_1,5_0_0 -24900,2,36.0,0.0,9,112,390.0,1220.0,0.0,37,38,0.0,0.0,539.0479487546129,1610.0,0.0,2212.656539033888,70,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,102969,2,1,1,0,1,,328.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1993.30998530529,390.0,76413.22159686036,1,1,1,2,110.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02106965216692488,36387.24837945731,9,5,9,9_1,9_1,9_0_0 -24901,2,74.0,0.0,9,112,219.0,599.0,0.0,77,78,0.0,0.0,302.6961558391288,818.0,0.0,1086.3780876076219,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,110272,2,2,1,0,1,,85.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1928.59397482499,219.0,24504.14187241614,5,5,1,2,80.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033382111655205826,16336.094581610761,4,2,4_0,4_1_0,4_1_0,4_0_0 -24902,2,46.0,0.0,7,112,1570.0,0.0,0.0,54,69,0.0,0.0,2170.013537294211,1570.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,3.0,1,,5,109485,2,1,1,0,1,,534.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,2014.08168213349,1570.0,58562.602461190385,1,1,1,2,168.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02680891787622389,23425.040984476153,6,3,6,6_1,6_1,6_0_0 -24903,2,53.0,0.0,6,112,2000.0,0.0,0.0,75,22,0.0,372.6621017350048,2764.3484551518613,2360.0,0.0,0.0,50,2,1,2,2,2,2,2,1,2,25.0,1,,4,131535,2,3,3,0,1,,618.0,,42,1.0,1.0,8.0,3.0,2.0,1,1,2204.97647479324,2000.0,281790.1481001805,7,1,0,1,149.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.00837502664983513,140895.07405009025,10,5,10,10_1,10_1,10_0_0 -24904,2,40.0,0.0,1,112,600.0,0.0,0.0,46,64,1642.9433647198007,351.95865163861566,829.3045365455583,2112.0,123.8635443016938,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,108066,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,2022.62121212264,600.0,52086.36574563311,1,1,1,2,216.0,8,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04054803919924224,24803.03130744434,7,4,7,7_1,7_1,7_1_0 -24905,2,32.0,0.0,2,112,640.0,980.0,0.0,56,45,0.0,0.0,884.5915056485956,1620.0,0.0,1777.3798428305,70,0,0,0,0,0,0,0,0,3,90.0,1,,2,127616,2,1,2,0,1,,406.0,,43,2.0,0.0,7.0,5.0,2.4,3,3,2059.04267290278,640.0,52859.69324758816,1,1,1,2,130.0,8,2,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030647169903391672,22024.872186495068,6,3,6,6_1,6_1,6_0_1 -24906,2,50.0,0.0,2,112,350.0,0.0,0.0,55,63,1344.2263893162005,0.0,483.76097965157567,1250.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,117500,2,1,3,0,1,,336.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,2108.67812079599,350.0,36617.37283218872,1,1,1,2,107.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03413680183252197,15920.596883560313,3,2,3_0,3_1_0,3_1_0,3_0_1 -24907,2,56.0,0.0,1,112,900.0,0.0,0.0,47,46,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109438,2,1,3,0,1,,400.0,525.0,43,2.0,2.0,5.0,3.0,2.0,3,3,2612.67150038814,900.0,62198.12818679027,1,4,2,3,120.0,8,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014469888825225825,31099.064093395136,8,4,8,8_1,8_1,8_1_0 -24908,2,52.0,0.0,6,112,1800.0,0.0,0.0,45,34,0.0,455.47590212056144,2487.913609636675,2240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,125657,2,1,3,0,1,,600.0,,43,3.0,1.0,5.0,4.0,2.5,2,2,1895.62346273667,1800.0,75809.66199961028,1,1,0,1,120.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029547684832198766,30323.864799844112,8,4,8,8_1,8_1,8_0_0 -24909,2,37.0,0.0,1,112,1200.0,0.0,0.0,52,38,0.0,372.6621017350048,1658.6090730911167,1560.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,119774,2,1,1,0,1,,211.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,1990.92684123349,1200.0,61928.6483538978,1,1,1,2,180.0,8,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02519028012827303,25803.60348079075,7,4,7,7_1,7_1,7_1_0 -24910,2,64.0,0.0,6,112,1440.0,0.0,0.0,77,72,0.0,0.0,1990.33088770934,1475.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,107597,2,1,2,0,1,,264.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1977.85012096042,1440.0,59270.806313587906,5,5,0,1,97.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024885775843779174,39513.87087572527,9,5,9,9_1,9_1,9_0_0 -24911,1,54.0,154.0,2,112,300.0,0.0,0.0,0,52,0.0,20.703450096389155,414.65226827277917,352.0,55.050464134086134,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,100215,2,1,0,0,1,,110.0,400.0,12,1.0,1.0,3.0,1.0,1.0,2,2,3220.71581619271,300.0,11532.29927845736,0,4,2,3,60.0,8,2,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.030522967840207315,11532.29927845736,2,1,2_1,2_0_1,2_1_1,2_0_1 -24912,2,27.0,0.0,9,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1913.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,3.0,2,2007.0,6,106643,2,1,0,0,1,,135.0,550.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2958.04232239356,0.0,24363.012410721985,0,1,2,3,68.0,8,2,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07852066763131896,24363.012410721985,7,4,7,7_0,7_1,7_0_0 -24913,2,36.0,0.0,2,112,3000.0,0.0,0.0,21,21,1792.3018524216009,0.0,4146.522682727792,4200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,100532,2,1,2,0,1,,326.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,1983.79203956987,3000.0,73701.60788969167,1,1,1,2,120.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05698654507356326,35096.00375699603,9,5,9,9_1,9_1,9_0_1 -24914,1,37.0,207.0,5,112,1022.0,0.0,0.0,0,85,0.0,0.0,1412.5820605826011,1097.0,129.02452531426437,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,102726,1,2,0,0,1,,188.0,395.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2879.98016076385,1022.0,7350.7626387362725,0,7,2,3,48.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,0,1,0.14923621587495497,7350.7626387362725,1,1,1_1,1_0_1,1_1_1,1_0_0 -24915,2,46.0,0.0,7,112,240.0,140.0,0.0,0,63,0.0,0.0,331.72181461822333,380.0,0.0,253.91140611864284,50,0,0,0,0,0,0,0,0,0,,2,,5,104460,2,1,0,0,1,,80.0,258.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2569.0364813254,240.0,17338.366633264384,0,1,2,3,40.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021916712689126903,17338.366633264384,4,2,4_0,4_0_0,4_1_0,4_0_0 -24916,2,73.0,0.0,5,112,1326.0,0.0,0.0,77,75,0.0,0.0,1832.763025765684,1326.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,120385,2,1,2,0,1,,265.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1945.16176876986,1326.0,28940.0,5,5,0,1,97.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04581893572909468,19293.333333333332,5,3,5,5_1,5_1,5_0_0 -24917,2,74.0,0.0,2,112,550.0,0.0,0.0,78,74,2509.222593390241,0.0,760.1958251667618,2362.0,227.0831645531053,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130727,2,2,2,0,1,,420.0,635.0,41,0.0,2.0,5.0,2.0,1.5,2,2,2107.09310827712,550.0,51052.65222082676,5,5,2,3,100.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04626596067493688,34035.10148055117,9,5,9,9_1,9_1,9_0_1 -24918,2,48.0,0.0,7,112,400.0,600.0,0.0,42,65,0.0,238.0896761084753,552.8696910303722,1230.0,0.0,1088.1917405084694,33,0,0,0,0,0,0,0,0,2,10.0,1,,5,127514,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1921.17160172626,400.0,58877.491476535884,1,1,1,2,100.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020890835685317622,23550.996590614355,6,3,6,6_1,6_1,6_0_0 -24919,2,74.0,0.0,8,112,600.0,843.0,0.0,77,22,0.0,0.0,829.3045365455583,1443.0,0.0,1528.9093954143993,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,128302,2,1,1,0,1,,306.0,914.0,41,0.0,1.0,5.0,2.0,1.5,3,3,2095.5379364475,600.0,52537.023118482364,5,5,2,3,91.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027466344957264185,35024.68207898824,9,5,9,9_1,9_1,9_0_0 -24920,2,53.0,0.0,5,112,600.0,0.0,0.0,0,52,0.0,207.03450096389156,829.3045365455583,827.0,46.448829113135176,0.0,31,2,2,2,2,1,2,2,2,2,30.0,1,,3,111905,1,3,3,0,1,,180.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,2015.96376072451,600.0,21736.4416147858,0,1,1,2,103.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.03804670583419915,21736.4416147858,6,3,6,6_1,6_1,6_0_0 -24921,2,73.0,0.0,5,112,1470.0,0.0,0.0,0,77,0.0,0.0,2031.796114536618,1470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102688,2,1,2,0,1,,200.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2188.18975556112,1470.0,18029.624000616157,0,5,0,1,100.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08153248231631248,18029.624000616157,4,2,4_0,4_1_0,4_1_0,4_0_0 -24922,2,40.0,0.0,5,112,1200.0,0.0,0.0,85,37,0.0,207.03450096389156,1658.6090730911167,1400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,3,100139,2,1,2,0,1,,350.0,,42,1.0,0.0,8.0,4.0,2.1,2,2,2004.22472748482,1200.0,61254.659876735655,6,1,1,2,140.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022855404026685584,29168.885655588405,8,4,8,8_1,8_1,8_0_0 -24923,2,72.0,0.0,6,112,162.0,0.0,0.0,77,75,0.0,0.0,223.91222486730075,298.0,233.96447256986607,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119083,2,2,3,0,1,,52.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,2048.57645723458,162.0,43770.911832186874,5,5,0,1,70.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006808174368002682,29180.60788812458,8,4,8,8_1,8_1,8_0_0 -24924,2,40.0,0.0,7,112,1100.0,0.0,0.0,52,45,0.0,0.0,1520.3916503335236,1270.0,292.4555907123326,0.0,71,0,0,0,0,0,0,0,0,3,40.0,1,,5,124504,1,1,2,0,1,,232.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1954.85329410928,1100.0,39775.10630267258,1,1,1,2,120.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031929518687789545,18940.526810796466,5,3,5,5_1,5_1,5_0_0 -24925,2,35.0,0.0,9,112,1400.0,0.0,0.0,45,38,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,2008.0,6,129280,2,1,1,0,1,,231.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1932.87266369347,1400.0,65917.94579729102,1,1,1,2,119.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021238525913796526,31389.497998710005,8,4,8,8_1,8_1,8_0_0 -24926,2,37.0,0.0,9,112,347.0,1025.0,0.0,42,45,0.0,0.0,479.6144569688479,1372.0,0.0,1858.9942233686352,60,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,115022,2,1,1,0,1,,261.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1944.36060888244,347.0,57522.43006325436,1,1,1,2,100.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023851565354441467,27391.633363454457,7,4,7,7_1,7_1,7_0_0 -24927,2,55.0,0.0,2,112,2000.0,0.0,0.0,75,11,1359.1622380863807,0.0,2764.3484551518613,3060.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132878,2,2,1,0,1,,462.0,,42,1.0,4.0,10.0,4.0,2.5,1,1,2064.94897733257,2000.0,130157.78790236355,5,1,0,1,162.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02350992629265815,52063.11516094542,10,5,10,10_1,10_1,10_0_1 -24928,0,80.0,0.0,5,112,1200.0,0.0,0.0,0,71,1792.3018524216009,0.0,1658.6090730911167,2530.0,223.64251054472493,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,110414,2,1,2,0,1,,0.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,2097.05531484752,1200.0,19229.80461803257,0,5,0,1,120.0,8,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13156659936250814,19229.80461803257,5,3,5,5_1,5_1,5_0_0 -24929,2,41.0,0.0,7,112,1500.0,0.0,0.0,55,45,0.0,414.0690019277831,2073.261341363896,1900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,5,101016,2,1,2,0,1,,249.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,2014.08168213349,1500.0,57219.47643993258,1,1,1,2,175.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03320547684483914,27247.369733301228,7,4,7,7_1,7_1,7_0_0 -24930,2,78.0,0.0,5,112,370.0,0.0,0.0,0,71,1344.2263893162005,0.0,511.40446420309434,1370.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,111596,2,1,2,0,1,,307.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,2015.96376072451,370.0,13299.828608310761,0,5,0,1,90.0,8,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10300884623008737,13299.828608310761,3,2,3_0,3_1_0,3_1_0,3_0_0 -24931,2,59.0,0.0,8,112,1100.0,1200.0,0.0,56,45,0.0,310.55175144583734,1520.3916503335236,2600.0,0.0,2176.3834810169387,44,0,0,0,0,0,0,0,0,3,45.0,1,2000.0,6,107624,2,1,1,0,1,,400.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1967.35600832321,1100.0,47457.129029155956,1,1,1,2,135.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05478628929286163,31638.086019437305,8,4,8,8_1,8_1,8_0_0 -24932,2,46.0,0.0,7,112,500.0,800.0,0.0,55,64,0.0,517.5862524097289,691.0871137879653,1800.0,0.0,1450.922320677959,20,0,0,0,0,0,0,0,0,0,,1,,5,127512,2,1,2,0,1,,404.0,,43,3.0,0.0,6.0,5.0,2.8,2,1,1915.22782531976,500.0,41511.98621977482,1,1,1,2,90.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04336097026218766,14825.709364205295,3,2,3_0,3_1_0,3_1_0,3_0_0 -24933,2,47.0,0.0,9,112,1000.0,0.0,0.0,43,53,0.0,517.5862524097289,1382.1742275759307,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,107501,2,1,1,0,1,,440.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1971.28632216518,1000.0,65957.55125931313,1,1,1,2,130.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022741899469595633,26383.020503725253,7,4,7,7_1,7_1,7_0_0 -24934,2,57.0,0.0,6,111,0.0,0.0,530.0,0,34,0.0,0.0,270.7840674638883,530.0,0.0,605.9202605658948,70,0,0,0,0,0,0,0,0,2,10.0,2,,4,104032,2,1,0,0,2,,0.0,,12,1.0,3.0,2.0,1.0,1.0,2,2,1509.0309626185,0.0,112455.51237754962,0,1,1,2,61.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.004712974835956624,112455.51237754962,10,5,10,10_0,10_2,10_0_0 -24935,2,41.0,0.0,1,111,370.0,1300.0,0.0,63,33,0.0,0.0,511.40446420309434,1670.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,1,5.0,1,,1,118560,2,1,2,0,1,,434.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1114.07924231011,370.0,42952.74035270017,1,1,0,1,189.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03887994075085869,17896.975146958408,4,2,4_0,4_1_0,4_2_0,4_1_0 -24936,2,89.0,0.0,9,111,1020.0,0.0,0.0,77,77,0.0,0.0,1409.817712127449,1020.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,114177,2,1,0,0,1,,143.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1593.34574587475,1020.0,64476.85479390889,5,5,0,1,88.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015819630210876217,42984.569862605924,9,5,9,9_0,9_2,9_0_0 -24937,1,71.0,111.0,6,111,450.0,0.0,0.0,0,77,0.0,0.0,621.9784024091688,450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,109260,2,2,0,0,1,,70.0,460.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1691.58139220324,450.0,10224.266762397116,0,5,2,3,57.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04401293613103028,10224.266762397116,2,1,2_1,2_0_1,2_2_1,2_0_0 -24938,2,67.0,0.0,2,111,600.0,665.0,0.0,0,77,0.0,0.0,829.3045365455583,1265.0,0.0,1206.0791790635535,71,0,0,0,0,0,0,0,0,0,,1,,2,104354,2,1,1,0,1,,170.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1180.16427933773,600.0,30893.063304921365,0,5,0,1,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04094770361599205,30893.063304921365,8,4,8,8_1,8_2,8_0_1 -24939,2,67.0,0.0,2,111,350.0,1330.0,0.0,77,75,0.0,0.0,483.76097965157567,1680.0,0.0,2412.158358127107,41,0,0,0,0,0,0,0,0,0,,1,,2,114595,2,2,3,0,1,,296.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1140.64286544046,350.0,38822.824964029314,5,5,0,1,115.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04327351246480847,25881.883309352877,7,4,7,7_1,7_2,7_0_1 -24940,2,54.0,0.0,9,111,2500.0,0.0,0.0,42,31,0.0,0.0,3455.435568939826,3157.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,112756,2,1,1,0,1,,122.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,1282.57451347817,2500.0,267324.3949070057,1,1,0,1,250.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011809621793395352,133662.19745350286,10,5,10,10_1,10_2,10_0_0 -24941,2,40.0,0.0,2,111,270.0,901.0,0.0,0,67,0.0,0.0,373.1870414455012,1171.0,0.0,1634.1012636635514,50,0,0,0,0,0,0,0,0,0,,2,,2,105181,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,1539.06903422201,270.0,18840.04470856748,0,1,1,2,54.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.062154841886733404,18840.04470856748,5,3,5,5_0,5_2,5_0_1 -24942,2,53.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,856.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,131475,2,1,1,0,2,,160.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,1090.01158099474,0.0,30073.27642367469,0,1,1,2,90.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02846380912876284,20048.850949116462,5,3,5,5_1,5_2,5_0_1 -24944,2,51.0,0.0,6,111,120.0,150.0,0.0,0,45,0.0,0.0,165.86090730911167,270.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,2,10.0,2,,4,121612,2,2,0,1,1,458.0,100.0,340.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1437.8217275457,120.0,27740.678561025048,0,1,2,3,65.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00973299911918316,27740.678561025048,7,4,7,7_0,7_2,7_0_0 -24945,2,36.0,0.0,2,111,496.0,1125.0,0.0,47,38,0.0,0.0,685.5584168776616,1621.0,0.0,2040.35951345338,50,0,0,0,0,0,0,0,0,2,4.0,1,,2,108783,2,2,3,0,1,,270.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,1123.08642933206,496.0,69203.53764925267,1,1,1,2,105.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023423658024764364,32954.06554726318,8,4,8,8_1,8_2,8_0_1 -24946,2,33.0,0.0,2,111,250.0,0.0,0.0,0,48,1493.5848770180007,0.0,345.54355689398267,1357.0,184.07498944835052,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,104957,1,1,1,0,2,,92.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1154.13133914177,250.0,20612.59566802973,0,1,1,2,70.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06583353313938602,20612.59566802973,5,3,5,5_1,5_2,5_0_1 -24947,1,45.0,295.0,7,111,675.0,334.0,0.0,85,52,0.0,0.0,932.9676036137531,1009.0,0.0,605.7600688830479,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,125563,2,1,0,1,1,274.0,270.0,375.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1344.22821633372,675.0,16881.548064337618,6,1,2,3,49.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0597694000665448,9378.637813520898,1,1,1_1,1_0_1,1_2_1,1_0_0 -24948,2,62.0,0.0,6,111,755.0,0.0,0.0,0,75,0.0,0.0,1043.5415418198277,755.0,0.0,0.0,41,2,2,2,2,2,2,1,2,0,,2,,4,110567,1,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1454.62764098104,755.0,26892.75114639841,0,5,1,2,50.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.028074479843655298,26892.75114639841,7,4,7,7_0,7_2,7_0_0 -24949,2,90.0,0.0,5,111,320.0,1500.0,0.0,0,77,0.0,0.0,442.2957528242978,1820.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,3,115457,2,2,2,0,1,,240.0,,21,0.0,0.0,5.0,2.0,1.5,1,1,1207.04853647606,320.0,59446.512781899175,0,5,0,1,130.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030615757171111483,39631.008521266114,9,5,9,9_1,9_2,9_0_0 -24950,2,74.0,0.0,2,111,262.0,1242.0,0.0,75,75,0.0,0.0,362.1296476248938,1504.0,0.0,2252.5569028525315,20,0,0,0,0,0,0,0,0,0,,1,,2,127134,2,2,2,0,1,,220.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,1124.94200071974,262.0,63668.025237612244,5,5,0,1,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023622532572464702,42445.35015840816,9,5,9,9_1,9_2,9_0_1 -24951,1,47.0,254.0,2,111,280.0,280.0,0.0,0,85,0.0,0.0,387.00878372126056,560.0,0.0,507.8228122372857,50,2,2,2,2,2,2,2,1,0,,2,,2,106301,2,2,0,1,1,31.0,60.0,251.0,11,0.0,0.0,3.0,1.0,1.0,3,3,465.940187080924,280.0,9895.216382128716,0,7,2,3,63.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.056593001949041724,9895.216382128716,2,1,2_1,2_0_1,2_2_1,2_0_1 -24952,2,62.0,0.0,1,111,481.0,1207.0,0.0,75,43,0.0,310.55175144583734,664.8258034640226,1988.0,0.0,2189.079051322871,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,129257,2,1,3,0,1,,273.0,,42,1.0,2.0,7.0,3.0,2.0,1,1,1053.22864919812,481.0,68008.27633313928,5,1,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029231736300178533,34004.13816656964,9,5,9,9_1,9_2,9_1_0 -24953,2,76.0,0.0,2,111,0.0,0.0,950.0,0,74,0.0,0.0,485.3676680956488,950.0,0.0,1086.08348592,71,0,0,0,0,0,0,0,0,0,,2,,2,132058,2,2,0,0,1,,140.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1558.95698010177,0.0,33627.82905784916,0,5,0,1,84.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028250411240218258,33627.82905784916,9,5,9,9_0,9_2,9_0_1 -24954,2,24.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,698.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,2,,2,117740,2,2,0,0,1,,192.0,470.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1816.24878551741,0.0,21054.56156957666,0,1,2,3,63.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03315196080874908,21054.56156957666,5,3,5,5_0,5_2,5_0_1 -24955,2,48.0,0.0,7,111,520.0,700.0,0.0,46,42,0.0,103.51725048194578,718.7305983394839,1320.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,3.0,1,,5,131480,2,1,2,0,1,,340.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1070.12711340938,520.0,52395.06861764121,1,1,0,1,130.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02519321063653615,20958.027447056484,5,3,5,5_1,5_2,5_0_0 -24956,2,58.0,0.0,1,111,300.0,1500.0,0.0,0,56,0.0,0.0,414.65226827277917,1800.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,1,116670,2,1,3,0,1,,300.0,,32,3.0,0.0,9.0,4.0,2.5,2,2,1185.22634828196,300.0,29483.562825369198,0,4,0,1,200.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0610509662845491,11793.42513014768,2,1,2_0,2_1_0,2_2_0,2_1_0 -24957,2,54.0,0.0,6,111,1546.0,0.0,0.0,0,37,0.0,0.0,2136.8413558323887,1546.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,102934,2,1,2,0,1,,143.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1290.9587849564,1546.0,52746.66003731555,0,1,0,1,90.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029309912682742082,52746.66003731555,10,5,10,10_1,10_2,10_0_0 -24958,2,88.0,0.0,2,111,261.0,725.0,0.0,0,78,0.0,0.0,360.7474733973179,1311.0,0.0,1314.8983531144004,71,0,0,0,0,0,0,0,0,0,,1,,2,112289,2,2,2,0,2,,90.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1326.07764155573,261.0,21742.010217030846,0,5,0,1,80.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06029801232330734,21742.010217030846,6,3,6,6_1,6_2,6_0_1 -24959,2,53.0,0.0,6,111,648.0,1100.0,0.0,0,43,0.0,0.0,895.648899469203,1748.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,118055,2,1,2,0,1,,360.0,442.0,32,3.0,0.0,4.0,3.0,2.0,2,2,1090.53939576926,648.0,34691.54130288807,0,1,2,3,85.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050386922412538615,17345.770651444036,4,2,4_0,4_1_0,4_2_0,4_0_0 -24960,1,45.0,103.0,6,111,1470.0,0.0,0.0,55,46,0.0,828.1380038555662,2031.796114536618,2270.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,122735,2,1,1,0,1,,279.0,,43,2.0,0.0,7.0,7.0,3.1999999999999993,1,1,1210.69777462515,1470.0,51413.11602676883,1,1,1,2,150.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.044152157570416434,16066.598758365264,4,2,4_1,4_1_1,4_2_1,4_0_0 -24961,2,60.0,0.0,9,111,0.0,0.0,1129.0,0,62,0.0,0.0,576.8211550315658,1129.0,0.0,1290.724479582821,71,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,118720,2,2,5,0,1,,165.0,313.0,12,1.0,6.0,3.0,1.0,1.0,1,1,1112.52720769881,0.0,25040.461232883506,0,1,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0450870289288993,25040.461232883506,7,4,7,7_1,7_2,7_0_0 -24962,2,84.0,0.0,2,300,200.0,0.0,0.0,0,77,3584.6037048432017,0.0,276.4348455151861,2720.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121738,2,1,2,0,1,,300.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1591.42273909834,200.0,16918.359192019394,0,5,0,1,90.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.16077209196995054,16918.359192019394,4,2,4_0,4_1_0,4_1_0,4_0_1 -24963,2,52.0,0.0,7,300,976.0,0.0,0.0,45,46,0.0,0.0,1349.0020461141082,976.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,103074,2,1,2,0,1,,380.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,1637.77590117041,976.0,74075.17933281574,1,1,0,1,110.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013175803403929476,37037.58966640787,9,5,9,9_1,9_1,9_0_0 -24964,2,37.0,0.0,2,300,927.0,0.0,0.0,56,68,448.0754631054002,232.913813584378,1281.2755089628877,1588.0,233.96447256986607,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,122318,2,3,4,0,1,,233.0,460.0,43,2.0,0.0,5.0,4.0,2.5,2,2,1461.2466037195,927.0,36364.9858953739,1,1,2,3,120.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043668379373742974,14545.99435814956,3,2,3_0,3_1_0,3_1_0,3_0_1 -24965,2,54.0,0.0,1,300,200.0,0.0,0.0,0,56,1792.3018524216009,0.0,276.4348455151861,1460.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111720,2,2,4,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1595.83864347219,200.0,12077.373899268407,0,1,0,1,100.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12088720711780235,12077.373899268407,2,1,2_0,2_1_0,2_1_0,2_1_0 -24966,2,64.0,0.0,5,300,400.0,0.0,0.0,78,74,1792.3018524216009,0.0,552.8696910303722,1720.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128458,2,1,4,0,2,,120.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1488.81887234422,400.0,50395.89153183128,6,5,0,1,117.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0341297662908415,33597.26102122085,9,5,9,9_1,9_1,9_0_0 -24967,2,83.0,0.0,2,300,340.0,0.0,0.0,0,77,1792.3018524216009,0.0,469.9392373758164,1540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104693,2,1,2,0,2,,155.0,,11,0.0,5.0,4.0,1.0,1.0,5,5,1591.42273909834,340.0,27248.06433203332,0,5,0,1,74.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0565177761339013,27248.06433203332,7,4,7,7_1,7_1,7_0_1 -24968,2,55.0,0.0,5,300,780.0,0.0,0.0,47,56,1792.3018524216009,0.0,1078.0958975092258,2070.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,109703,2,2,1,0,1,,200.0,,43,2.0,1.0,4.0,2.0,1.5,3,3,1488.81887234422,780.0,32130.92245524528,4,1,0,1,140.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06442392069145461,21420.61497016352,6,3,6,6_1,6_1,6_0_0 -24969,2,52.0,0.0,6,300,500.0,0.0,0.0,62,46,1792.3018524216009,0.0,691.0871137879653,1820.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,120835,2,1,2,0,1,,260.0,,43,2.0,3.0,8.0,2.0,1.5,2,2,1570.80211870063,500.0,72526.2377217463,1,1,0,1,260.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025094366634356522,48350.825147830874,10,5,10,10_1,10_1,10_0_0 -24970,2,55.0,0.0,6,300,700.0,0.0,0.0,0,62,0.0,0.0,967.5219593031513,780.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,125608,1,2,2,0,1,,90.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1755.56076207437,700.0,19939.15681608084,0,1,0,1,104.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039119006244583705,19939.15681608084,5,3,5,5_1,5_1,5_0_0 -24971,2,66.0,0.0,6,300,700.0,0.0,0.0,90,74,2240.377315527001,0.0,967.5219593031513,2320.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,105328,2,1,2,0,1,,320.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1685.22501840498,700.0,45725.84571022915,5,5,0,1,220.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050737169842678315,30483.897140152767,8,4,8,8_1,8_1,8_0_0 -24972,1,64.0,254.0,1,300,1096.0,0.0,0.0,0,78,0.0,0.0,1514.86295342322,1096.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,108070,2,1,0,0,1,,160.0,259.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1953.29116465973,1096.0,10000.570662235117,0,5,2,3,60.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.10959374589880105,10000.570662235117,2,1,2_1,2_0_1,2_1_1,2_1_0 -24973,2,74.0,0.0,8,300,1510.0,0.0,0.0,72,75,0.0,0.0,2087.0830836396553,1510.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2002.0,6,100065,2,1,2,0,1,,392.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1576.7218986008,1510.0,31812.766943247916,5,5,0,1,126.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0474652205730407,21208.51129549861,5,3,5,5_1,5_1,5_0_0 -24974,2,78.0,0.0,6,300,408.0,0.0,0.0,0,77,0.0,0.0,563.9270848509797,498.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,132960,2,1,2,0,1,,80.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1593.63086547223,408.0,15604.177371193313,0,5,0,1,80.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031914530843474766,15604.177371193313,3,2,3_0,3_1_0,3_1_0,3_0_0 -24975,2,28.0,0.0,2,300,330.0,0.0,0.0,0,52,1792.3018524216009,0.0,456.1174951000571,1620.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108865,2,1,2,0,1,,450.0,,22,1.0,0.0,4.0,2.0,1.5,4,4,1488.80068121917,330.0,45443.71784166248,0,1,0,1,120.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0356484917375047,30295.811894441653,8,4,8,8_1,8_1,8_0_1 -24976,2,53.0,0.0,5,300,1160.0,0.0,0.0,0,48,0.0,103.51725048194578,1603.3221039880796,1324.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,130285,2,1,2,0,1,,315.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,1321.88603480719,1160.0,26518.24897469617,0,1,0,1,70.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04992788178674115,17678.832649797445,4,2,4_0,4_1_0,4_1_0,4_0_0 -24977,2,65.0,0.0,7,300,1330.0,0.0,0.0,0,77,0.0,0.0,1838.2917226759876,1330.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,130117,2,1,2,0,1,,477.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1521.66099605894,1330.0,40491.71448891292,0,5,0,1,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03284622587083016,40491.71448891292,9,5,9,9_1,9_1,9_0_0 -24978,2,49.0,0.0,5,300,700.0,0.0,0.0,85,62,0.0,414.0690019277831,967.5219593031513,1100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,3,106705,2,1,2,0,1,,250.0,,42,3.0,0.0,4.0,5.0,3.0,2,2,1307.18039174365,700.0,22447.139211508907,6,1,0,1,140.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04900401737768068,7482.3797371696355,1,1,1_0,1_1_0,1_1_0,1_0_0 -24979,1,42.0,117.0,2,300,1200.0,0.0,0.0,63,45,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,106453,2,2,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,1608.87706843573,1200.0,40337.24783391663,1,1,1,2,135.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.029749178846827727,17537.933840833317,4,2,4_1,4_1_1,4_1_1,4_0_1 -24980,2,66.0,0.0,9,300,2200.0,0.0,0.0,75,74,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,121739,2,1,1,0,1,,500.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1601.45267272123,2200.0,88704.82854343671,5,5,0,1,160.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024801355643483496,59136.55236229114,10,5,10,10_1,10_1,10_0_0 -24981,2,83.0,0.0,2,300,800.0,150.0,0.0,78,78,0.0,0.0,1105.7393820607444,950.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,1,,2,120554,2,1,2,0,2,,180.0,,41,0.0,3.0,6.0,2.0,1.5,4,3,1570.80211870063,800.0,15359.76781099648,5,5,0,1,200.0,0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061849893285487616,10239.845207330987,2,1,2_0,2_1_0,2_1_0,2_0_1 -24982,2,60.0,0.0,5,300,1255.0,0.0,0.0,77,78,0.0,0.0,1734.6286556077928,1255.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,129611,2,2,1,0,1,,115.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1641.71753942253,1255.0,44270.53836346142,5,5,0,1,170.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028348424175383673,29513.692242307614,8,4,8,8_1,8_1,8_0_0 -24983,2,56.0,0.0,8,300,600.0,0.0,0.0,21,42,373.3962192545002,186.3310508675024,829.3045365455583,1150.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,127665,2,1,2,0,1,,203.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,1825.56742261875,600.0,20323.45772112235,1,1,1,2,180.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05658485951456945,10161.728860561176,2,1,2_0,2_1_0,2_1_0,2_0_0 -24984,2,64.0,0.0,2,300,530.0,0.0,0.0,77,75,2688.452778632401,207.03450096389156,732.5523406152432,2555.0,43.00817510475479,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,129871,2,2,3,0,1,,120.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1695.60431399705,530.0,35300.9462122532,5,5,0,1,141.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07237766332487547,23533.964141502132,6,3,6,6_1,6_1,6_0_1 -24985,2,58.0,0.0,1,300,650.0,0.0,0.0,11,55,2539.0942909306013,20.703450096389155,898.4132479243549,2405.0,60.21144514665671,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,121945,2,2,1,0,1,,157.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,990.197900772633,650.0,26759.91750680071,1,1,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08987322174624784,17839.945004533805,4,2,4_0,4_1_0,4_0_0,4_1_0 -24986,2,46.0,0.0,2,300,180.0,0.0,0.0,0,67,1792.3018524216009,0.0,248.7913609636675,1410.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,133078,2,2,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,933.957341833938,180.0,16684.514921842085,0,1,1,2,115.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08450949917364013,16684.514921842085,4,2,4_0,4_1_0,4_0_0,4_0_1 -24987,0,89.0,0.0,2,300,250.0,0.0,0.0,0,71,0.0,0.0,345.54355689398267,280.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128781,1,3,4,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1060.07263106671,250.0,13389.81305606044,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020911419661177988,13389.81305606044,3,2,3_0,3_1_0,3_0_0,3_0_1 -24988,0,51.0,0.0,1,300,850.0,0.0,0.0,11,11,0.0,0.0,1174.848093439541,940.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103898,1,2,1,0,2,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,905.678594497468,850.0,19347.52501500715,1,1,5,0,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.048585025695580035,12898.350010004768,2,1,2_0,2_1_0,2_0_0,2_1_0 -24989,2,72.0,0.0,9,300,486.0,0.0,0.0,71,63,2688.452778632401,0.0,671.7366746019022,2406.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,130278,2,1,1,0,1,,390.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1025.41947500547,486.0,23367.6557264956,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10296283153777973,15578.437150997066,3,2,3_0,3_1_0,3_0_0,3_0_0 -24990,2,57.0,0.0,6,300,1500.0,0.0,0.0,0,38,0.0,0.0,2073.261341363896,1530.0,51.60981012570575,0.0,12,0,0,0,0,0,0,0,0,2,2.0,1,,4,115509,2,2,3,0,1,,295.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1007.12141639833,1500.0,37102.1269562018,0,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04123752802113285,37102.1269562018,9,5,9,9_1,9_0,9_0_0 -24991,2,35.0,0.0,2,300,750.0,0.0,0.0,0,52,0.0,621.1035028916747,1036.630670681948,1400.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130432,2,1,2,0,1,,150.0,300.0,22,2.0,1.0,4.0,3.0,2.0,2,2,1212.26148898585,750.0,52432.93110753582,0,1,2,3,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026700776981716128,26216.46555376791,7,4,7,7_1,7_0,7_0_1 -24992,2,84.0,0.0,1,300,350.0,0.0,0.0,77,75,2987.1697540360015,0.0,483.76097965157567,2380.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,119169,2,1,2,0,1,,250.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,966.532666072199,350.0,35197.45152867567,5,5,0,1,115.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0676185319286822,23464.96768578378,6,3,6,6_1,6_0,6_1_0 -24993,2,76.0,0.0,1,300,1110.0,0.0,0.0,74,72,0.0,25.879312620486445,1534.213392609283,1617.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106576,2,1,3,0,1,,443.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1066.46399673647,1110.0,75589.89109860823,5,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021391749300056502,50393.26073240549,10,5,10,10_1,10_0,10_1_0 -24994,2,82.0,0.0,5,300,0.0,0.0,0.0,71,71,0.0,0.0,0.0,1114.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,130094,2,1,3,0,1,,149.0,400.0,41,0.0,5.0,4.0,2.0,1.5,1,1,1057.49002881182,0.0,22497.459173654548,5,5,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049516702815246796,14998.3061157697,3,2,3_0,3_1_0,3_0_0,3_0_0 -24995,2,49.0,0.0,1,300,750.0,0.0,0.0,0,35,0.0,0.0,1036.630670681948,780.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116861,2,1,2,0,1,,110.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1053.36133793042,750.0,11820.631400699625,0,1,0,1,55.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06598632285867863,11820.631400699625,2,1,2_0,2_1_0,2_0_0,2_1_0 -24996,2,57.0,0.0,2,300,1400.0,0.0,0.0,0,52,0.0,155.27587572291867,1935.0439186063027,1610.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,126715,2,1,2,0,2,,116.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,1034.68284809785,1400.0,17135.382509758194,0,1,1,2,50.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09395763409910127,17135.382509758194,4,2,4_0,4_1_0,4_0_0,4_0_1 -24997,2,64.0,0.0,5,300,2760.0,0.0,0.0,75,56,0.0,0.0,3814.8008681095685,3000.0,412.878481005646,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,110012,2,1,1,0,1,,120.0,,41,0.0,3.0,8.0,3.0,2.0,1,1,1165.9825113565,2760.0,53919.24500917091,5,5,0,1,250.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055638761252865127,26959.622504585455,7,4,7,7_1,7_0,7_0_0 -24998,2,71.0,0.0,2,300,0.0,0.0,0.0,0,71,1493.5848770180007,0.0,0.0,1050.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101417,2,2,4,0,1,,0.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1122.46741271909,0.0,15088.529312591305,0,5,0,1,150.0,0,0,5,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06958928721593695,15088.529312591305,3,2,3_0,3_1_0,3_0_0,3_0_1 -24999,0,77.0,0.0,2,300,299.0,0.0,0.0,0,78,2240.377315527001,51.75862524097289,413.2700940452032,1939.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,117621,1,1,3,0,2,,237.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1106.7525875106,299.0,15773.761693163047,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12292565576418191,15773.761693163047,3,2,3_0,3_1_0,3_0_0,3_0_1 -25000,1,31.0,67.0,9,300,794.0,0.0,0.0,54,11,0.0,51.75862524097289,1097.446336695289,844.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,3.0,1,2010.0,6,117276,2,1,1,0,1,,190.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1018.25890679276,794.0,34143.37983425192,4,1,1,2,160.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02471928684556638,16258.752302024724,4,2,4_1,4_1_1,4_0_1,4_0_0 -25001,2,85.0,0.0,2,300,306.0,0.0,0.0,0,74,2389.735803228801,0.0,422.9453136382348,1966.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,130164,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,997.237418772269,306.0,16370.090748143575,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12009707400204554,16370.090748143575,4,2,4_0,4_1_0,4_0_0,4_0_1 -25002,2,44.0,0.0,2,300,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1095.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,55.0,1,,2,100448,1,3,1,0,2,,384.0,,42,1.0,6.0,3.0,2.0,1.5,2,2,929.745156864192,0.0,23066.969009126762,7,1,1,2,70.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04747047605460207,15377.979339417841,3,2,3_0,3_1_0,3_0_0,3_0_1 -25003,2,47.0,0.0,2,300,515.0,0.0,0.0,0,46,2300.120710607721,0.0,711.8197272016042,2105.0,86.01635020950958,0.0,33,0,0,0,0,0,0,0,0,2,8.0,1,,2,132624,2,1,3,0,1,,240.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1101.28495092131,515.0,30921.354679001553,0,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06807593075569515,30921.354679001553,8,4,8,8_1,8_0,8_0_1 -25004,1,52.0,207.0,2,300,320.0,0.0,0.0,0,85,0.0,103.51725048194578,442.2957528242978,480.0,103.2196202514115,0.0,50,2,2,2,1,1,2,2,2,0,,1,,2,106662,1,2,2,0,1,,180.0,261.0,11,0.0,2.0,2.0,1.0,1.0,2,2,908.300938787916,320.0,7891.716104688645,0,7,2,3,45.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0.060823272610480913,7891.716104688645,1,1,1_1,1_1_1,1_0_1,1_0_1 -25005,2,76.0,0.0,5,300,287.0,0.0,0.0,77,77,3099.1886198123516,0.0,396.68400331429206,2512.0,258.04905062852873,0.0,10,2,2,2,2,1,2,2,1,0,,1,,3,106804,1,2,4,0,2,,247.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1033.86559347251,287.0,22568.726784572355,5,5,0,1,84.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.11130446231983125,15045.817856381569,3,2,3_0,3_1_0,3_0_0,3_0_0 -25006,2,68.0,0.0,1,300,350.0,0.0,0.0,0,11,0.0,103.51725048194578,483.76097965157567,540.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,105250,2,1,4,0,1,,250.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,937.553555595519,350.0,14275.638293150627,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03782667989417251,14275.638293150627,3,2,3_0,3_1_0,3_0_0,3_1_0 -25007,2,56.0,0.0,2,300,350.0,0.0,0.0,69,11,4480.754631054002,0.0,483.76097965157567,3530.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108890,1,3,3,0,2,,240.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1072.02817419006,350.0,31200.84829950713,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1131379495234994,20800.565533004756,5,3,5,5_1,5_0,5_0_1 -25008,2,77.0,0.0,1,300,530.0,0.0,0.0,77,75,4480.754631054002,155.27587572291867,732.5523406152432,3780.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,116584,2,3,1,0,1,,480.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,1108.46731816054,530.0,64800.25288363242,5,5,0,1,135.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05833310568691888,32400.12644181621,8,4,8,8_1,8_0,8_1_0 -25009,2,59.0,0.0,5,300,443.0,0.0,0.0,72,42,5675.6225326684025,0.0,612.3031828161372,4243.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,,3,112433,2,2,3,0,1,,238.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1041.47786066683,443.0,77438.07057395969,5,1,0,1,240.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054792170938034776,51625.38038263979,10,5,10,10_1,10_0,10_0_0 -25010,2,48.0,0.0,7,300,875.0,0.0,0.0,55,47,0.0,20.703450096389155,1209.4024491289392,985.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,110550,2,1,1,0,1,,173.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,1002.69766354338,875.0,53425.38886065229,1,1,1,2,118.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01843692710537201,21370.155544260917,6,3,6,6_1,6_0,6_0_0 -25011,2,75.0,0.0,2,300,364.0,0.0,0.0,78,75,2987.1697540360015,0.0,503.1114188376387,2484.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,127444,2,2,3,0,1,,112.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,963.136801605142,364.0,23354.766322898726,5,5,0,1,115.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10635944567617035,15569.844215265817,3,2,3_0,3_1_0,3_0_0,3_0_1 -25012,2,62.0,0.0,2,300,369.0,0.0,0.0,35,35,746.7924385090004,77.63793786145933,510.0222899755184,989.0,77.41471518855863,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,122529,2,3,2,0,1,,176.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,963.180160670842,369.0,2990.1687263897074,4,4,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.33075056643847195,1993.4458175931384,1,1,1_0,1_1_0,1_0_0,1_0_1 -25013,2,69.0,0.0,2,300,397.0,0.0,0.0,77,74,2658.581081092041,0.0,548.7231683476444,2241.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107229,2,2,1,0,1,,232.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1073.51563168757,397.0,40925.457691199845,5,5,0,1,102.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.054758092552301005,27283.638460799895,7,4,7,7_1,7_0,7_0_1 -25014,0,46.0,0.0,2,300,450.0,0.0,0.0,0,11,2240.377315527001,0.0,621.9784024091688,1950.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,129157,2,1,3,0,1,,150.0,,12,1.0,0.0,7.0,1.0,1.0,2,2,1075.74384085713,450.0,44406.487737231255,0,1,0,1,170.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04391250241493615,44406.487737231255,10,5,10,10_1,10_0,10_0_1 -25015,2,77.0,0.0,2,300,0.0,0.0,0.0,71,71,0.0,362.31037668681023,0.0,410.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133443,2,2,3,0,2,,0.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1139.51579132336,0.0,28381.252196667578,5,5,0,1,180.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014446156115977882,18920.834797778385,5,3,5,5_1,5_0,5_0_1 -25016,2,82.0,0.0,5,300,250.0,0.0,0.0,0,77,2688.452778632401,0.0,345.54355689398267,2130.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,130153,2,1,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1005.72595436917,250.0,20713.492390223284,0,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.102831524490064,20713.492390223284,5,3,5,5_1,5_0,5_0_0 -25017,2,77.0,0.0,2,300,270.0,0.0,0.0,0,77,2987.1697540360015,0.0,373.1870414455012,2330.0,103.2196202514115,0.0,42,2,2,2,1,1,2,2,2,0,,1,,2,105573,2,2,3,0,1,,282.0,,11,0.0,2.0,4.0,1.0,1.0,5,5,1229.91844054041,270.0,11763.00929757029,0,5,0,1,99.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.19807856485170622,11763.00929757029,2,1,2_0,2_1_0,2_0_0,2_0_1 -25018,2,87.0,0.0,2,300,350.0,0.0,0.0,0,75,3733.962192545002,0.0,483.76097965157567,2910.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,129323,2,1,2,0,1,,200.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1075.74384085713,350.0,33673.87164809765,0,5,0,1,125.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08641714948641481,33673.87164809765,9,5,9,9_1,9_0,9_0_1 -25019,2,30.0,0.0,9,300,800.0,0.0,0.0,55,11,0.0,62.110350289167464,1105.7393820607444,860.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,2008.0,6,101381,2,1,1,0,1,,199.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,918.650937404988,800.0,36009.10325820874,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023882849673684994,17147.192027718447,4,2,4_0,4_1_0,4_0_0,4_0_0 -25020,2,38.0,0.0,2,300,656.0,0.0,0.0,48,43,2240.377315527001,0.0,906.7062932898104,2156.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,107677,2,2,1,0,1,,159.0,,43,2.0,0.0,6.0,4.0,2.1,4,4,918.818085839168,656.0,56785.45164483755,1,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03796747120168419,27040.691259446452,7,4,7,7_1,7_0,7_0_1 -25021,2,80.0,0.0,2,300,417.0,0.0,0.0,77,77,2987.1697540360015,0.0,576.366652899163,2517.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117718,2,1,3,0,1,,200.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,969.686106564984,417.0,31524.109065610326,5,5,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07984365219525894,21016.072710406883,5,3,5,5_1,5_0,5_0_1 -25022,2,44.0,0.0,2,300,178.0,0.0,0.0,0,67,2240.377315527001,0.0,246.02701250851564,1708.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,116808,1,1,3,0,2,,112.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1116.13712053855,178.0,24654.45936831206,0,1,0,1,170.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06927752803191711,24654.45936831206,7,4,7,7_1,7_0,7_0_1 -25023,0,76.0,0.0,1,211,677.0,1826.0,0.0,74,74,0.0,0.0,935.731952068905,2503.0,0.0,3311.7301969474415,44,2,2,2,1,1,2,2,2,0,,1,,1,131041,1,2,1,0,2,,232.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,1053.52853698873,677.0,84786.12077485431,5,5,0,1,150.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.02952134119505954,56524.08051656954,10,5,10,10_1,10_2,10_1_0 -25024,2,69.0,0.0,7,211,570.0,1660.0,0.0,74,74,0.0,0.0,787.8393097182804,2230.0,0.0,3010.663815406765,71,0,0,0,0,0,0,0,0,0,,1,,5,123455,2,1,3,0,1,,304.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,987.238882626866,570.0,127980.69914683372,5,5,0,1,140.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01742450240439377,85320.46609788915,10,5,10,10_1,10_2,10_0_0 -25025,0,80.0,0.0,2,211,0.0,0.0,2329.0,0,74,0.0,0.0,1189.917156836596,2329.0,0.0,2662.6194091659786,71,0,0,0,0,0,0,0,0,0,,1,,2,104584,2,1,2,0,1,,990.0,,11,0.0,2.0,5.0,1.0,1.0,2,1,1076.26999220214,0.0,66461.61378743224,0,5,0,1,100.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.035042784357433236,66461.61378743224,10,5,10,10_1,10_2,10_0_1 -25026,0,83.0,0.0,6,211,2283.0,0.0,0.0,0,86,0.0,0.0,3155.5037615558495,2283.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,117389,2,1,2,0,1,,325.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1084.57800107615,2283.0,34966.460982016135,0,6,0,1,94.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0652911371606691,34966.460982016135,9,5,9,9_1,9_2,9_0_0 -25027,1,46.0,195.0,2,211,0.0,0.0,0.0,0,52,0.0,0.0,0.0,567.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,107314,2,2,0,0,1,,230.0,540.0,32,1.0,1.0,5.0,3.0,2.0,2,2,1489.1857855564,0.0,28937.801495232852,0,1,2,3,69.0,4,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.019593748339638253,14468.900747616426,3,2,3_1,3_0_1,3_2_1,3_0_1 -25028,2,82.0,0.0,1,211,210.0,800.0,0.0,0,74,0.0,0.0,290.25658779094545,1010.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,0,,2,,1,112245,2,1,0,0,2,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1261.87732856784,210.0,21618.50364202824,0,5,0,1,56.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04671923722030755,21618.50364202824,6,3,6,6_0,6_2,6_1_0 -25030,2,49.0,0.0,2,211,2000.0,0.0,0.0,0,31,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,131125,2,2,0,0,1,,510.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,1372.73106178297,2000.0,89853.24322679739,0,1,1,2,157.0,4,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02225851764695712,59902.16215119826,10,5,10,10_0,10_2,10_0_1 -25031,1,39.0,280.0,9,211,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1372.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2005.0,6,132238,2,1,1,0,1,,312.0,740.0,32,1.0,0.0,5.0,4.0,2.3,1,1,1071.48262476906,0.0,25983.676531327445,0,1,2,3,120.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05280238146229369,11297.250665794541,2,1,2_1,2_1_1,2_2_1,2_0_0 -25032,2,58.0,0.0,5,211,0.0,0.0,0.0,0,56,0.0,0.0,0.0,117.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,3,,3,116720,1,2,0,1,2,,0.0,270.0,12,1.0,3.0,1.0,1.0,1.0,2,2,1856.91243027623,0.0,19486.730285163012,0,1,3,4,10.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.006004085769539416,19486.730285163012,5,3,5,5_0,5_2,5_0_0 -25033,2,72.0,0.0,6,211,0.0,0.0,636.0,0,75,0.0,0.0,324.9408809566659,636.0,0.0,727.1043126790736,60,0,0,0,0,0,0,0,0,0,,1,,4,131101,1,1,4,0,1,,330.0,404.0,11,0.0,1.0,4.0,1.0,1.0,2,2,1051.86248697946,0.0,28637.499333567837,0,5,2,3,69.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02220864303101018,28637.499333567837,8,4,8,8_1,8_2,8_0_0 -25034,1,46.0,192.0,2,211,0.0,0.0,1200.0,0,55,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,132251,2,1,0,0,1,,440.0,337.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1136.07004649659,0.0,14995.509627255975,0,1,2,3,60.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08002395582600734,14995.509627255975,3,2,3_1,3_0_1,3_2_1,3_0_1 -25035,1,68.0,46.0,2,211,162.0,980.0,0.0,0,77,0.0,0.0,223.91222486730075,1142.0,0.0,1777.3798428305,71,2,2,2,1,2,2,2,2,0,,2,,2,129768,2,3,0,0,1,,185.0,337.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1258.13978804699,162.0,18061.0,0,5,2,3,63.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.06323016444272189,18061.0,4,2,4_1,4_0_1,4_2_1,4_0_1 -25036,1,62.0,254.0,2,211,171.0,1300.0,0.0,0,78,0.0,0.0,236.3517929154841,1471.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,2,,2,114378,2,3,0,0,1,,154.0,337.0,11,0.0,3.0,4.0,1.0,1.0,4,3,1289.03248825205,171.0,13148.610120528601,0,5,2,3,76.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.11187494240956798,13148.610120528601,2,1,2_1,2_0_1,2_2_1,2_0_1 -25037,1,58.0,117.0,2,211,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1662.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,125925,2,3,3,0,1,,126.0,288.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1030.23965886554,0.0,10974.35614537085,0,7,2,3,63.0,4,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.15144396427311654,10974.35614537085,2,1,2_1,2_1_1,2_2_1,2_0_1 -25038,2,82.0,0.0,6,211,210.0,1750.0,0.0,0,74,0.0,0.0,290.25658779094545,1960.0,0.0,3173.8925764830356,71,0,0,0,0,0,0,0,0,0,,1,,4,123045,2,1,2,0,1,,84.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1015.86709431852,210.0,42387.80265475977,0,5,0,1,92.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04623971702340436,42387.80265475977,9,5,9,9_1,9_2,9_0_0 -25039,1,35.0,351.0,2,211,0.0,0.0,1100.0,0,85,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,50,0,0,0,0,0,0,0,0,0,,2,,2,100546,2,1,0,0,1,,200.0,316.0,31,0.0,0.0,4.0,3.0,1.6,3,2,1253.42798068271,0.0,9491.454373227949,0,6,2,3,80.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.11589372468593567,5932.158983267468,1,1,1_1,1_0_1,1_2_1,1_0_1 -25040,2,79.0,0.0,1,211,655.0,1067.0,0.0,86,74,0.0,0.0,905.3241190622346,1722.0,0.0,1935.167645204228,50,0,0,0,0,0,0,0,0,0,,1,,1,124127,2,1,2,0,1,,450.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1048.58002330816,655.0,60836.42224674963,5,5,0,1,90.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028305412060815313,40557.61483116642,9,5,9,9_1,9_2,9_1_0 -25041,2,52.0,0.0,2,211,1200.0,200.0,0.0,0,52,0.0,0.0,1658.6090730911167,1400.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,128122,2,2,3,0,1,,350.0,450.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1080.52744629677,1200.0,23469.273011845096,0,1,2,3,75.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059652465557557356,15646.18200789673,3,2,3_0,3_1_0,3_2_0,3_0_1 -25042,1,47.0,225.0,2,211,400.0,0.0,0.0,0,22,2987.1697540360015,0.0,552.8696910303722,2400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,5.0,1,,2,123214,1,2,5,0,2,,500.0,766.0,32,1.0,0.0,5.0,3.0,2.0,6,4,1066.45465644606,400.0,16340.999981211564,0,1,2,3,80.0,4,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,1,0.1468698367761737,8170.499990605782,1,1,1_1,1_1_1,1_2_1,1_0_1 -25043,0,85.0,0.0,1,211,298.0,1241.0,0.0,0,72,0.0,0.0,411.88791981762733,1539.0,0.0,2250.743249951684,50,2,2,2,1,2,2,2,2,0,,1,,1,119185,2,2,2,0,1,,170.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1060.78483526737,298.0,11194.894276261552,0,5,0,1,90.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.13747338402859283,11194.894276261552,2,1,2_0,2_1_0,2_2_0,2_1_0 -25044,2,61.0,0.0,5,211,400.0,1000.0,0.0,56,72,0.0,62.110350289167464,552.8696910303722,1460.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,3,117556,2,1,2,0,1,,400.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,1039.12908661465,400.0,28716.176572364646,1,5,0,1,112.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05084242313111587,19144.117714909764,5,3,5,5_1,5_2,5_0_0 -25045,1,23.0,255.0,9,211,0.0,0.0,0.0,0,47,0.0,0.0,0.0,447.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,102852,2,2,0,0,1,,239.0,404.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1313.5236763343,0.0,26734.73312091186,0,1,2,3,36.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.016719822785526795,26734.73312091186,7,4,7,7_0,7_2,7_0_0 -25046,0,77.0,0.0,1,211,243.0,1136.0,0.0,0,77,0.0,0.0,335.8683373009511,1379.0,0.0,2060.309695362702,70,2,2,2,2,1,2,2,2,0,,1,,1,102951,2,1,2,0,1,,250.0,,21,1.0,1.0,5.0,2.0,1.5,5,5,1061.77639896055,243.0,14466.854941855676,0,5,0,1,100.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.09532134009377953,9644.569961237117,1,1,1_0,1_1_0,1_2_0,1_1_0 -25047,2,67.0,0.0,7,211,693.0,809.0,0.0,0,77,0.0,0.0,957.8467397101199,1502.0,0.0,1467.2451967855861,20,0,0,0,0,0,0,0,0,0,,1,,5,103509,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1061.70041275178,693.0,17252.61502560128,0,5,0,1,100.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08705926595888051,17252.61502560128,4,2,4_0,4_1_0,4_2_0,4_0_0 -25048,0,87.0,0.0,2,211,1209.0,2736.0,0.0,0,90,0.0,0.0,1671.0486411393001,3945.0,0.0,4962.1543367186205,50,0,0,0,0,0,0,0,0,0,,1,,2,121479,2,1,2,0,1,,500.0,,11,0.0,3.0,8.0,1.0,1.0,6,6,1114.50201293981,1209.0,301125.9323754665,0,5,0,1,250.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01310083116681255,301125.9323754665,10,5,10,10_1,10_2,10_0_1 -25049,2,33.0,0.0,1,211,0.0,0.0,2205.0,52,46,0.0,0.0,1126.5639033167427,2207.0,3.4406540083803834,2520.8569331090525,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,118096,2,1,2,0,1,,583.0,659.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1083.66195051184,0.0,37306.0,1,1,2,3,60.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05915938454940224,24870.666666666668,7,4,7,7_1,7_2,7_1_0 -25050,1,46.0,254.0,5,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1798.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,129243,2,1,0,0,1,,309.0,300.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1205.22822965394,0.0,9963.833954798534,0,7,2,3,50.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.18045262578207577,9963.833954798534,2,1,2_1,2_0_1,2_2_1,2_0_0 -25051,2,22.0,0.0,7,211,0.0,0.0,0.0,0,63,0.0,0.0,0.0,810.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,104824,2,2,1,0,1,,211.0,650.0,22,2.0,1.0,3.0,2.0,1.5,1,1,1141.21133254858,0.0,26213.732245060746,0,1,2,3,85.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03089983495778714,17475.821496707165,4,2,4_0,4_1_0,4_2_0,4_0_0 -25052,1,25.0,250.0,2,111,0.0,0.0,0.0,54,56,0.0,0.0,0.0,772.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116609,2,1,0,0,1,,187.0,280.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1350.88080650892,0.0,2681.590948412282,4,4,2,3,54.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.28788879991450084,1787.7272989415214,1,1,1_1,1_0_1,1_2_1,1_0_1 -25053,2,50.0,0.0,2,111,372.0,0.0,0.0,0,43,0.0,0.0,514.1688126582462,372.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,5.0,2,,2,122940,2,1,0,0,1,,60.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1308.75996165601,372.0,33031.0,0,1,1,2,58.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011262147679452635,33031.0,8,4,8,8_0,8_2,8_0_1 -25054,2,64.0,0.0,7,111,209.0,648.0,0.0,0,77,0.0,0.0,288.8744135633695,857.0,0.0,1175.247079749147,10,0,0,0,0,0,0,0,0,0,,2,,5,118663,2,2,0,0,1,,181.0,386.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1234.6818343641,209.0,23687.706583082425,0,5,2,3,70.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03617910400038739,23687.706583082425,6,3,6,6_0,6_2,6_0_0 -25055,1,52.0,254.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,369.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,101470,2,1,0,0,1,,0.0,300.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1518.06177501027,0.0,9263.063245063568,0,4,2,3,35.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.039835634307759465,9263.063245063568,1,1,1_1,1_0_1,1_2_1,1_0_1 -25056,2,54.0,0.0,1,111,1320.0,0.0,0.0,0,63,0.0,207.03450096389156,1824.4699804002285,1520.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,119067,2,1,0,0,1,,0.0,300.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1669.42987528745,1320.0,7918.674104805357,0,1,2,3,55.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.19195132668455256,7918.674104805357,1,1,1_0,1_0_0,1_2_0,1_1_0 -25057,1,20.0,257.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1484.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,,1,127083,2,1,0,0,1,,130.0,350.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1479.3437005966,0.0,10829.849499144908,0,1,2,3,43.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.1370286817113361,10829.849499144908,2,1,2_1,2_0_1,2_2_1,2_1_0 -25058,2,88.0,0.0,1,111,240.0,2044.0,0.0,0,78,0.0,0.0,331.72181461822333,2284.0,0.0,3707.1065293321853,50,0,0,0,0,0,0,0,0,0,,1,,1,101747,2,1,2,0,2,,30.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1107.05584066825,240.0,21536.02102731977,0,5,0,1,100.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10605487416188,21536.02102731977,6,3,6,6_1,6_2,6_1_0 -25059,1,53.0,341.0,2,111,0.0,0.0,960.0,85,77,0.0,0.0,490.47680144402403,960.0,0.0,1097.5159436665263,70,2,2,2,2,1,2,2,2,0,,2,,2,114977,2,1,0,0,1,,261.0,318.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1155.02382807322,0.0,8855.802632902234,6,6,2,3,74.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.10840349991916969,5903.868421934822,1,1,1_1,1_0_1,1_2_1,1_0_1 -25060,2,44.0,0.0,1,111,647.0,1645.0,0.0,63,47,0.0,0.0,894.2667252416271,2292.0,0.0,2983.4590218940534,10,2,2,2,2,1,2,2,2,2,10.0,1,,1,120457,2,1,1,0,1,,411.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,1059.06975421387,647.0,66238.78075896445,1,1,0,1,92.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.03460208617577568,26495.51230358578,7,4,7,7_1,7_2,7_1_0 -25061,1,56.0,255.0,2,111,234.0,242.0,0.0,0,62,0.0,0.0,323.4287692527678,476.0,0.0,438.90400200508265,44,0,0,0,0,0,0,0,0,0,,2,,2,121582,2,2,0,0,1,,105.0,310.0,12,1.0,3.0,5.0,1.0,1.0,2,2,1249.35741083629,234.0,7207.957108974831,0,4,2,3,76.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06603812880730367,7207.957108974831,1,1,1_1,1_0_1,1_2_1,1_0_1 -25062,2,81.0,0.0,6,111,3061.0,0.0,0.0,78,90,0.0,0.0,4230.835310609923,3802.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,115514,2,1,2,0,1,,297.0,,41,0.0,0.0,7.0,2.0,1.5,1,1,1048.58866269547,3061.0,59533.73409211257,5,5,0,1,200.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06386295195455771,39689.15606140838,9,5,9,9_1,9_2,9_0_0 -25063,1,53.0,117.0,2,111,118.0,0.0,0.0,0,67,0.0,0.0,163.0965588539598,180.0,106.66027425979189,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,114327,2,2,0,1,1,485.0,84.0,261.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1238.65540231587,118.0,16499.189690737556,0,1,2,3,65.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.010909626677063407,16499.189690737556,4,2,4_1,4_0_1,4_2_1,4_0_1 -25064,2,29.0,0.0,1,111,540.0,0.0,0.0,0,48,0.0,0.0,746.3740828910024,590.0,86.01635020950958,0.0,12,2,2,2,2,2,2,2,1,2,15.0,1,,1,103993,1,3,1,0,1,,0.0,310.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1416.9310448544,540.0,28682.503692746883,0,1,3,4,24.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.02057003134455089,28682.503692746883,8,4,8,8_1,8_2,8_1_0 -25066,2,28.0,0.0,1,111,0.0,0.0,0.0,48,47,0.0,0.0,0.0,891.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,126073,2,1,1,0,1,,462.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1101.42262637827,0.0,47044.05651034093,1,1,1,2,95.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0189396932597457,31362.704340227287,8,4,8,8_1,8_2,8_1_0 -25067,1,37.0,154.0,6,111,355.0,69.0,0.0,0,67,0.0,0.0,490.67185078945533,424.0,0.0,125.14205015847398,50,0,0,0,0,0,0,0,0,0,,2,,4,121508,2,1,0,1,1,,118.0,300.0,32,1.0,0.0,4.0,3.0,1.6,2,1,408.771938259238,355.0,17423.34870125957,0,1,2,3,74.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.024335161240809478,10889.59293828723,2,1,2_1,2_0_1,2_2_1,2_0_0 -25068,0,38.0,0.0,6,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,277.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,128404,1,1,0,1,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,362.932720241041,0.0,600.8957052302947,7,7,5,0,50.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.46097849857961476,400.59713682019645,1,1,1_0,1_0_0,1_2_0,1_0_0 -25069,1,73.0,59.0,5,111,294.0,0.0,0.0,0,78,0.0,0.0,406.35922290732356,326.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,132598,2,1,0,1,1,,50.0,253.0,11,0.0,2.0,3.0,1.0,1.0,2,2,379.999066426145,294.0,20125.190668277213,0,5,2,3,70.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01619860429515656,20125.190668277213,5,3,5,5_0,5_2,5_0_0 -25070,2,57.0,0.0,6,111,837.0,0.0,0.0,78,46,0.0,186.3310508675024,1156.879828481054,1273.0,440.4037130726891,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,106604,2,1,2,0,1,,87.0,,42,1.0,2.0,4.0,2.0,1.5,3,3,300.45709761411,837.0,42391.559388521804,5,1,0,1,105.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030029562921544357,28261.039592347868,8,4,8,8_1,8_2,8_0_0 -25071,2,34.0,0.0,7,111,708.0,1200.0,0.0,43,47,0.0,0.0,978.5793531237589,1908.0,0.0,2176.3834810169387,50,2,2,2,2,2,2,2,1,2,45.0,1,,5,118671,2,2,3,0,1,,299.0,,43,2.0,0.0,4.0,3.0,1.8,2,1,1140.51140895273,708.0,58463.513734391076,1,1,1,2,95.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.032635739423195524,32479.729852439486,8,4,8,8_1,8_2,8_0_0 -25072,1,60.0,254.0,9,111,235.0,427.0,0.0,0,78,0.0,0.0,324.81094348034367,662.0,0.0,774.4297886618607,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,108972,2,1,0,0,1,,80.0,275.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1284.88592599481,235.0,8924.040044758687,0,7,2,3,60.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07418164829827374,8924.040044758687,1,1,1_1,1_0_1,1_2_1,1_0_0 -25073,1,34.0,255.0,2,111,432.0,1308.0,0.0,85,63,0.0,0.0,597.099266312802,1740.0,0.0,2372.2579943084634,50,0,0,0,0,0,0,0,0,0,,2,,2,106316,1,3,0,0,1,,208.0,275.0,42,1.0,0.0,3.0,4.0,2.1,3,2,1097.08652438834,432.0,18423.532632424685,6,1,2,3,64.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09444442793439457,8773.110777345088,1,1,1_1,1_0_1,1_2_1,1_0_1 -25074,2,56.0,0.0,5,111,950.0,0.0,0.0,45,45,0.0,124.22070057833493,1313.065516197134,1120.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,2,7.0,1,,3,110098,2,1,2,0,1,,220.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1006.98004643766,950.0,68775.32809250578,1,1,0,1,100.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016284909589868505,45850.21872833718,10,5,10,10_1,10_2,10_0_0 -25076,2,27.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1347.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,100109,2,1,0,0,1,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1453.0595407998,0.0,14842.24302798394,0,1,2,3,48.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09075447676340646,14842.24302798394,3,2,3_0,3_0_0,3_2_0,3_0_1 -25077,1,24.0,42.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1268.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,,2,120226,2,2,0,0,2,,69.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1182.38007252195,0.0,18350.51051120418,0,1,1,2,48.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06909889505394434,18350.51051120418,4,2,4_1,4_0_1,4_2_1,4_0_1 -25078,2,68.0,0.0,2,111,950.0,0.0,0.0,78,77,0.0,0.0,1313.065516197134,950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112813,2,2,2,0,1,,0.0,558.0,41,0.0,6.0,4.0,2.0,1.5,2,2,1221.58420452225,950.0,34525.72357289657,5,5,2,3,70.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027515715868899858,23017.149048597712,6,3,6,6_1,6_2,6_0_1 -25079,1,56.0,255.0,1,111,400.0,0.0,0.0,0,78,0.0,0.0,552.8696910303722,400.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,1,126427,1,3,0,0,1,,0.0,301.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1748.58083831333,400.0,10362.235219874736,0,7,3,4,32.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.03860171010524845,10362.235219874736,2,1,2_1,2_0_1,2_2_1,2_1_0 -25080,1,39.0,120.0,9,111,750.0,0.0,0.0,0,52,0.0,0.0,1036.630670681948,795.0,77.41471518855863,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,130207,2,1,1,0,1,,100.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,1070.98447187598,750.0,19579.029271667467,0,1,1,2,110.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04060466885099524,15060.791747436513,3,2,3_1,3_1_1,3_2_1,3_0_0 -25081,2,23.0,0.0,9,112,0.0,0.0,0.0,54,63,0.0,0.0,0.0,906.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,114831,2,1,1,0,1,,234.0,540.0,43,2.0,0.0,4.0,2.0,1.5,2,2,758.104944936077,0.0,32675.91528170612,1,1,2,3,100.0,9,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02772684382944375,21783.94352113741,6,3,6,6_1,6_0,6_0_0 -25082,2,55.0,0.0,9,112,1000.0,0.0,0.0,0,56,0.0,0.0,1382.1742275759307,1093.0,159.99041138968784,0.0,42,0,0,0,0,0,0,0,0,2,12.0,1,2006.0,6,130292,2,1,1,0,1,,460.0,,32,2.0,2.0,4.0,2.0,1.5,1,1,692.670423327507,1000.0,21868.41171469654,0,1,1,2,96.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04998076743110958,14578.941143131027,3,2,3_0,3_1_0,3_0_0,3_0_0 -25083,1,43.0,250.0,7,112,1812.0,0.0,0.0,0,90,0.0,672.8621281326475,2504.4997003675862,2530.0,116.98223628493304,0.0,20,2,2,2,2,1,2,2,2,0,,1,,5,104943,2,1,2,0,1,,708.0,505.0,32,2.0,0.0,4.0,3.0,2.0,1,1,931.922066581222,1812.0,19565.001805202788,0,1,2,3,80.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,1,1,0.12931253598592637,9782.500902601394,2,1,2_1,2_1_1,2_0_1,2_0_0 -25084,2,27.0,0.0,6,112,610.0,0.0,0.0,0,47,0.0,47.617935221695056,843.1262788213177,749.0,159.99041138968784,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,100124,2,1,2,0,1,,265.0,350.0,12,1.0,0.0,2.0,1.0,1.0,2,2,859.144559929193,610.0,19010.418832438612,0,1,2,3,75.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03939944756619126,19010.418832438612,5,3,5,5_1,5_0,5_0_0 -25085,0,78.0,0.0,2,112,456.0,0.0,0.0,71,78,1680.2829866452507,0.0,630.2714477746243,1767.0,319.98082277937567,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,110455,2,1,4,0,1,,366.0,,41,0.0,1.0,8.0,2.0,1.5,1,1,720.984024437773,456.0,34006.32576745803,5,5,0,1,120.0,9,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05196092080288517,22670.88384497202,6,3,6,6_1,6_0,6_0_1 -25086,2,61.0,0.0,6,112,1113.0,0.0,0.0,11,77,0.0,103.51725048194578,1538.3599152920108,1349.0,233.96447256986607,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,111538,2,3,4,0,1,,82.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,681.070024508428,1113.0,32020.122496738764,1,5,0,1,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042129757627797804,21346.748331159175,6,3,6,6_1,6_0,6_0_0 -25088,0,51.0,0.0,2,112,160.0,0.0,0.0,0,85,1172.4641284591305,51.75862524097289,221.1478764121489,1057.0,106.66027425979189,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,124460,1,1,4,0,2,,210.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,741.700795627999,160.0,10600.220623247535,0,7,5,0,80.0,9,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09971490571449751,10600.220623247535,2,1,2_0,2_1_0,2_0_0,2_0_1 -25089,2,63.0,0.0,5,112,350.0,0.0,0.0,77,90,0.0,683.2138531808421,483.76097965157567,1010.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,115140,2,2,1,0,1,,130.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,704.080206511112,350.0,39245.25929576992,5,5,0,1,105.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025735592479799556,26163.506197179948,7,4,7,7_1,7_0,7_0_0 -25090,2,56.0,0.0,9,112,590.0,0.0,0.0,77,63,0.0,318.833131484393,815.482794269799,991.0,159.99041138968784,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,102358,2,1,1,0,1,,461.0,,42,1.0,0.0,4.0,3.0,2.0,3,2,741.853616118483,590.0,49157.67594271239,5,1,1,2,67.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020159618635244195,24578.837971356195,7,4,7,7_1,7_0,7_0_0 -25091,2,52.0,0.0,9,112,769.0,0.0,0.0,56,63,0.0,310.55175144583734,1062.8919810058906,1193.0,213.32054851958378,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,131159,2,1,1,0,1,,278.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,673.045113729506,769.0,34234.82887928316,1,1,1,2,102.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03484755259641246,22823.21925285544,6,3,6,6_1,6_0,6_0_0 -25092,1,46.0,53.0,9,112,231.0,0.0,0.0,0,52,0.0,134.5724256265295,319.28224657003994,1391.0,1771.9368143158974,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,118810,2,2,1,0,1,,258.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,853.28677172549,231.0,19187.262621138292,0,1,1,2,140.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07249601089357885,19187.262621138292,5,3,5,5_1,5_0,5_0_0 -25093,2,41.0,0.0,2,112,2500.0,0.0,0.0,47,64,0.0,77.63793786145933,3455.435568939826,2725.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,128584,1,3,3,0,1,,300.0,,43,2.0,1.0,4.0,4.0,2.1,1,1,738.371518498646,2500.0,36689.95888635258,1,1,1,2,60.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07427100173212807,17471.408993501227,4,2,4_0,4_1_0,4_0_0,4_0_1 -25094,2,55.0,0.0,7,112,1300.0,0.0,0.0,56,65,0.0,0.0,1796.8264958487098,1393.0,159.99041138968784,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,106863,2,1,2,0,1,,360.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,733.744822783372,1300.0,46417.71544005235,1,1,0,1,150.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0300100939219862,30945.143626701567,8,4,8,8_1,8_0,8_0_0 -25095,2,55.0,0.0,6,112,1360.0,0.0,0.0,63,45,0.0,217.38622601208613,1879.7569495032656,1672.0,175.47335442739956,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,4,114928,2,1,2,0,1,,278.0,,43,2.0,2.0,8.0,2.0,1.5,3,2,684.113804804557,1360.0,53902.933090899205,1,1,0,1,160.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03101872020916604,35935.28872726614,9,5,9,9_1,9_0,9_0_0 -25096,2,43.0,0.0,1,112,1097.0,0.0,0.0,67,67,2539.0942909306013,62.110350289167464,1516.245127650796,2981.0,213.32054851958378,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,125413,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,811.645092513727,1097.0,29488.527829882958,4,1,1,2,120.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10109016011912018,14042.156109468075,3,2,3_0,3_1_0,3_0_0,3_1_0 -25097,2,62.0,0.0,8,112,490.0,0.0,0.0,52,74,1941.6603401234008,0.0,677.265371512206,1883.0,159.99041138968784,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,111697,2,1,1,0,1,,418.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,797.254759052066,490.0,43596.956680802985,1,6,0,1,147.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04319108817127917,29064.63778720199,8,4,8,8_1,8_0,8_0_0 -25098,2,24.0,0.0,9,112,1500.0,0.0,0.0,0,64,0.0,0.0,2073.261341363896,1531.0,53.330137129895945,0.0,50,1,2,2,1,2,2,2,2,0,,1,2007.0,6,122955,1,1,1,0,1,,600.0,612.0,12,1.0,2.0,5.0,1.0,1.0,1,1,834.991725803343,1500.0,18656.33726001053,0,1,2,3,113.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.08206326776058379,18656.33726001053,4,2,4_0,4_1_0,4_0_0,4_0_0 -25099,0,76.0,0.0,1,112,973.0,0.0,0.0,0,71,0.0,517.5862524097289,1344.8555234313803,1503.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,131155,2,1,3,0,1,,207.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,777.039395131806,973.0,19104.913869422144,0,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07867085977318046,19104.913869422144,5,3,5,5_1,5_0,5_1_0 -25100,1,82.0,83.0,1,112,410.0,0.0,0.0,0,86,1493.5848770180007,0.0,566.6914333061316,1510.0,172.03270041901916,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,122836,1,3,4,0,2,,225.0,405.0,11,0.0,5.0,3.0,1.0,1.0,1,1,845.41222617557,410.0,12564.976400141426,0,5,2,3,60.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,1,0.12017531525033379,12564.976400141426,2,1,2_1,2_1_1,2_0_1,2_1_0 -25101,2,66.0,0.0,1,112,1740.0,0.0,0.0,0,77,0.0,0.0,2404.983155982119,1860.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113859,2,1,2,0,1,,398.0,,21,0.0,0.0,4.0,2.0,1.5,3,3,696.209027480261,1740.0,40180.0,0,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04629168740666999,26786.666666666668,7,4,7,7_1,7_0,7_1_0 -25102,2,74.0,0.0,7,112,1330.0,0.0,0.0,71,71,0.0,31.055175144583732,1838.2917226759876,1420.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,120661,2,2,3,0,1,,292.0,,41,0.0,4.0,6.0,2.0,1.5,3,3,701.114096033102,1330.0,25759.657677961248,5,5,0,1,160.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055124956152460255,17173.105118640833,4,2,4_0,4_1_0,4_0_0,4_0_0 -25103,1,48.0,212.0,7,112,1500.0,0.0,0.0,0,64,0.0,0.0,2073.261341363896,1620.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,104614,2,2,2,0,1,,550.0,506.0,32,3.0,2.0,5.0,3.0,2.0,2,1,752.179524925607,1500.0,20209.901061561926,0,1,2,3,124.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08015872987528609,10104.950530780963,2,1,2_1,2_1_1,2_0_1,2_0_0 -25104,1,50.0,309.0,7,112,1140.0,0.0,0.0,85,62,0.0,0.0,1575.678619436561,1230.0,154.82943037711726,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,106117,1,3,4,0,1,,400.0,373.0,42,1.0,0.0,4.0,4.0,2.5,2,2,668.307605092115,1140.0,16425.026917839376,6,4,2,3,78.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07488572202363246,6570.01076713575,1,1,1_1,1_1_1,1_0_1,1_0_0 -25105,0,80.0,0.0,1,112,870.0,0.0,0.0,0,77,0.0,0.0,1202.4915779910596,930.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101625,2,1,2,0,1,,125.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,764.642086751972,870.0,13475.154208818762,0,5,0,1,70.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.069015907765372,13475.154208818762,3,2,3_0,3_1_0,3_0_0,3_1_0 -25106,0,80.0,0.0,2,112,2000.0,0.0,0.0,0,77,0.0,0.0,2764.3484551518613,3583.0,2064.39240502823,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,116624,2,1,2,0,1,,240.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,841.1500538246,2000.0,44350.508684789536,0,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0807882503775842,44350.508684789536,10,5,10,10_1,10_0,10_0_1 -25107,2,42.0,0.0,7,112,2010.0,0.0,0.0,85,56,0.0,0.0,2778.17019742762,2130.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,122683,2,1,2,0,1,,704.0,,42,2.0,0.0,4.0,4.0,2.5,4,4,642.68037565562,2010.0,51029.02310550921,7,1,1,2,96.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04174095192055598,20411.60924220368,5,3,5,5_1,5_0,5_0_0 -25108,2,61.0,0.0,9,112,1287.0,0.0,0.0,54,74,0.0,414.0690019277831,1778.8582308902226,1747.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,131702,2,1,1,0,1,,451.0,,42,1.0,4.0,5.0,2.0,1.5,1,1,731.059886696158,1287.0,75712.92688381895,1,5,0,1,108.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023073999010509282,50475.28458921263,10,5,10,10_1,10_0,10_0_0 -25109,2,29.0,0.0,9,112,1645.0,0.0,0.0,52,45,0.0,0.0,2273.6766043624057,1795.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,103979,2,1,1,0,1,,540.0,665.0,43,2.0,0.0,5.0,3.0,1.8,2,2,878.942190532172,1645.0,39903.43136554274,1,1,2,3,120.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044983600120916206,22168.572980857076,6,3,6,6_1,6_0,6_0_0 -25110,2,75.0,0.0,2,112,339.0,0.0,0.0,0,77,2858.7214546124533,0.0,468.55706314824045,2313.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105017,2,2,1,0,1,,263.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,775.982135983703,339.0,19888.3812663331,0,5,0,1,68.0,9,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1162990576772293,19888.3812663331,5,3,5,5_1,5_0,5_0_1 -25111,2,70.0,0.0,2,112,430.0,0.0,0.0,0,78,0.0,289.84830134944815,594.3349178576501,770.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,126170,1,3,4,0,2,,0.0,122.0,11,0.0,1.0,2.0,1.0,1.0,1,1,679.290914018037,430.0,16439.825860955763,0,5,2,3,65.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046837479089649824,16439.825860955763,4,2,4_0,4_1_0,4_0_0,4_0_1 -25112,2,30.0,0.0,7,112,490.0,0.0,0.0,54,52,2165.698071676101,0.0,677.265371512206,1970.0,51.60981012570575,0.0,33,2,2,2,2,2,2,2,1,2,10.0,1,,5,125015,2,3,3,0,1,,404.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,727.909425059023,490.0,49961.15086262185,1,1,1,2,124.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.03943063692461585,23791.024220296116,6,3,6,6_1,6_0,6_0_0 -25113,2,54.0,0.0,7,112,550.0,0.0,0.0,0,54,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,8,,5,109801,2,2,0,0,1,,255.0,272.0,12,1.0,0.0,2.0,1.0,1.0,1,1,880.353480067684,550.0,22356.6537686987,0,1,2,3,49.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024601177156934318,22356.6537686987,6,3,6,6_0,6_0,6_0_0 -25114,1,45.0,128.0,5,112,1050.0,0.0,0.0,21,56,0.0,0.0,1451.2829389547271,1113.0,108.38060126398207,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,115277,2,1,2,0,1,,414.0,,43,2.0,0.0,6.0,7.0,3.1999999999999993,2,2,729.879853761484,1050.0,19047.21368260777,1,1,1,2,180.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05843374356724381,5952.254275814929,1,1,1_1,1_1_1,1_0_1,1_0_0 -25115,2,61.0,0.0,1,112,876.0,0.0,0.0,52,46,0.0,155.27587572291867,1210.784623356515,1086.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,109863,1,1,2,0,1,,240.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,791.447132693359,876.0,19447.73800318583,1,1,0,1,95.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05584196988987084,12965.158668790553,2,1,2_0,2_1_0,2_0_0,2_1_0 -25116,2,39.0,0.0,1,112,1050.0,0.0,0.0,0,47,0.0,0.0,1451.2829389547271,1110.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,100108,2,1,1,0,1,,130.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,835.51723071911,1050.0,28286.406443959593,0,1,1,2,83.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03924146399434328,28286.406443959593,8,4,8,8_1,8_0,8_1_0 -25117,2,82.0,0.0,1,112,200.0,0.0,0.0,77,78,0.0,0.0,276.4348455151861,290.0,154.82943037711726,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,125815,2,2,2,0,2,,140.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,772.531941968799,200.0,16681.13822066556,5,5,0,1,80.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017384904804681203,11120.758813777042,2,1,2_0,2_1_0,2_0_0,2_1_0 -25118,2,40.0,0.0,9,112,1700.0,0.0,0.0,52,63,0.0,0.0,2349.696186879082,1730.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,130578,2,1,1,0,1,,293.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,713.975786521763,1700.0,50141.72414659155,1,1,1,2,169.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034502204091392395,20892.385061079814,5,3,5,5_1,5_0,5_0_0 -25119,2,52.0,0.0,1,112,400.0,0.0,0.0,38,34,0.0,238.0896761084753,552.8696910303722,1350.0,1238.635443016938,0.0,30,0,0,0,0,0,0,0,0,2,25.0,1,,1,125710,2,2,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,689.446089184734,400.0,60983.68606118891,1,1,1,2,130.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022137067914285418,29039.850505328053,8,4,8,8_1,8_0,8_1_0 -25120,2,45.0,0.0,1,112,630.0,0.0,0.0,63,63,0.0,341.60692659042104,870.7697633728362,2260.0,2236.4251054472493,0.0,50,2,2,2,2,2,2,1,2,2,20.0,1,,1,122850,1,2,3,0,1,,300.0,,43,3.0,0.0,5.0,4.0,2.5,2,1,662.298715823876,630.0,39268.43642701114,1,1,1,2,100.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,0.05755258435615835,15707.374570804455,3,2,3_0,3_1_0,3_0_0,3_1_0 -25121,2,64.0,0.0,5,112,880.0,0.0,0.0,0,77,0.0,1345.724256265295,1216.313320266819,2360.0,309.6588607542345,0.0,10,2,2,2,2,2,1,2,2,0,,1,,3,121580,1,2,3,0,2,,340.0,390.0,11,0.0,7.0,3.0,1.0,1.0,1,1,791.051921138276,880.0,10983.712700141927,0,5,2,3,70.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.21486359525495466,10983.712700141927,2,1,2_0,2_1_0,2_0_0,2_0_0 -25122,2,50.0,0.0,2,112,1203.0,0.0,0.0,55,64,0.0,0.0,1662.7555957738446,1263.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,105431,1,2,2,0,1,,142.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,728.381807538957,1203.0,37608.76145257257,1,1,0,1,85.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03358260020321957,25072.507635048383,7,4,7,7_1,7_0,7_0_1 -25123,0,48.0,0.0,1,112,70.0,0.0,0.0,0,67,0.0,155.27587572291867,96.75219593031514,250.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,117173,2,2,2,0,2,,50.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,800.844064622513,70.0,17485.838161608222,0,1,0,1,30.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014297284333152423,17485.838161608222,4,2,4_0,4_1_0,4_0_0,4_1_0 -25124,2,72.0,0.0,1,112,800.0,0.0,0.0,71,71,2688.452778632401,0.0,1105.7393820607444,2780.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,111823,2,1,3,0,2,,40.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,720.984024437773,800.0,25468.62837362122,5,5,0,1,95.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1091538954991132,16979.085582414147,4,2,4_0,4_1_0,4_0_0,4_1_0 -25125,2,64.0,0.0,7,112,240.0,300.0,0.0,0,56,0.0,0.0,331.72181461822333,540.0,0.0,544.0958702542347,41,0,0,0,0,0,0,0,0,2,5.0,2,,5,105235,2,1,0,0,1,,180.0,420.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1968.81690598463,240.0,16286.73135915447,0,5,2,3,56.0,9,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03315582409336395,16286.73135915447,4,2,4_0,4_0_0,4_1_0,4_0_0 -25126,2,60.0,0.0,2,112,1100.0,1600.0,0.0,77,34,0.0,103.51725048194578,1520.3916503335236,2800.0,0.0,2901.844641355918,30,0,0,0,0,0,0,0,0,2,1.0,1,,2,121893,2,1,2,0,1,,400.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,1707.43627548622,1100.0,68713.00040952342,5,1,0,1,180.0,9,2,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04074920296468277,45808.666939682276,10,5,10,10_1,10_1,10_0_1 -25127,2,60.0,0.0,7,112,1500.0,0.0,0.0,0,77,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,131647,2,1,0,0,1,,600.0,,31,1.0,2.0,3.0,2.0,1.5,2,2,1941.31676951558,1500.0,35050.75930458654,0,5,1,2,56.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04279507861627747,23367.172869724363,6,3,6,6_0,6_1,6_0_0 -25128,2,71.0,0.0,8,112,816.0,0.0,0.0,0,77,0.0,0.0,1127.8541697019593,865.0,84.29602320531939,0.0,10,0,0,0,0,0,0,0,0,0,,2,2001.0,6,102599,2,1,0,0,1,,0.0,436.0,11,0.0,6.0,2.0,1.0,1.0,2,2,2321.4982235855,816.0,20892.424009043265,0,5,2,3,45.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.041402567726252615,20892.424009043265,5,3,5,5_0,5_1,5_0_0 -25129,2,49.0,0.0,2,112,311.0,1271.0,0.0,52,46,0.0,0.0,429.8561847761144,1582.0,0.0,2305.1528369771077,70,0,0,0,0,0,0,0,0,2,5.0,1,,2,116131,2,2,3,0,1,,350.0,,43,2.0,0.0,3.0,4.0,2.3,1,1,1660.17392978652,311.0,45642.337175427136,1,1,1,2,80.0,9,2,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03466080174465113,19844.494424098757,5,3,5,5_1,5_1,5_0_1 -25130,2,71.0,0.0,2,112,457.0,0.0,0.0,90,74,2987.1697540360015,0.0,631.6536220022002,2457.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,102164,1,2,3,0,2,,106.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1611.65056583367,457.0,84923.3103120269,1,5,0,1,100.0,9,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028931985705366904,56615.54020801793,10,5,10,10_1,10_1,10_0_1 -25131,1,24.0,332.0,6,112,430.0,391.0,0.0,0,55,0.0,0.0,594.3349178576501,821.0,0.0,709.1382842313525,70,0,0,0,0,0,0,0,0,0,,2,,4,120190,1,1,0,1,1,,131.0,106.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1841.25456452934,430.0,12639.716560838619,0,4,2,3,61.0,9,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06495398817277975,9722.858892952783,1,1,1_1,1_0_1,1_1_1,1_0_0 -25132,2,74.0,0.0,2,112,525.0,1708.0,0.0,90,75,0.0,0.0,725.6414694773636,2233.0,0.0,3097.719154647443,50,0,0,0,0,0,0,0,0,0,,1,,2,128561,1,1,2,0,1,,280.0,,41,0.0,2.0,5.0,2.0,1.5,4,3,1704.94403462437,525.0,59209.06248457079,5,5,0,1,113.0,9,2,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.037713821268186676,39472.7083230472,9,5,9,9_1,9_1,9_0_1 -25133,2,67.0,0.0,5,112,1400.0,0.0,0.0,0,75,0.0,238.0896761084753,1935.0439186063027,1708.0,134.18550632683494,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,117084,2,1,2,0,1,,150.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1708.78488159525,1400.0,36491.364822667034,0,5,0,1,110.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046805593824735654,36491.364822667034,9,5,9,9_1,9_1,9_0_0 -25134,2,52.0,0.0,8,112,600.0,700.0,0.0,56,62,0.0,0.0,829.3045365455583,1300.0,0.0,1269.5570305932142,31,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,133309,2,1,1,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1603.09944136248,600.0,29801.708656221177,1,1,1,2,110.0,9,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04362165991877187,19867.805770814117,5,3,5,5_1,5_1,5_0_0 -25135,2,55.0,0.0,6,112,900.0,0.0,0.0,77,52,0.0,414.0690019277831,1243.9568048183376,1330.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,125427,2,1,3,0,1,,312.0,,42,1.0,2.0,7.0,2.0,1.5,1,1,1697.30631858988,900.0,47998.58469043049,5,1,0,1,130.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02770915035470125,31999.056460286996,8,4,8,8_1,8_1,8_0_0 -25136,2,52.0,0.0,6,112,600.0,0.0,0.0,85,38,0.0,0.0,829.3045365455583,666.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,103163,2,1,2,0,1,,300.0,,42,1.0,2.0,5.0,3.0,2.0,2,2,1678.47489798746,600.0,52166.81345759413,5,1,0,1,100.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012766737238826837,26083.406728797065,7,4,7,7_1,7_1,7_0_0 -25137,2,75.0,0.0,7,112,0.0,1100.0,0.0,77,78,0.0,0.0,0.0,1941.0,0.0,1995.0181909321939,10,0,0,0,0,0,0,0,0,0,,1,,5,113414,2,1,2,0,1,,202.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1616.13982525269,0.0,46580.62940418822,5,5,0,1,100.0,9,2,5,0,1,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04166968168587001,31053.752936125482,8,4,8,8_1,8_1,8_0_0 -25138,2,67.0,0.0,6,112,800.0,0.0,0.0,77,75,0.0,0.0,1105.7393820607444,1067.0,178.91400843577995,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,125794,2,1,2,0,1,,340.0,,41,1.0,1.0,6.0,3.0,2.0,2,2,1739.08721037354,800.0,45063.45007475275,5,5,0,1,110.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02367772547885315,22531.725037376375,6,3,6,6_1,6_1,6_0_0 -25139,2,83.0,0.0,1,112,268.0,699.0,0.0,0,77,0.0,0.0,370.4226929903494,967.0,0.0,1267.7433776923667,50,0,0,0,0,0,0,0,0,0,,2,,1,124904,2,1,0,0,1,,229.0,320.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1947.74286952647,268.0,18559.1448018534,0,5,2,3,50.0,9,2,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.052103693910693076,18559.1448018534,4,2,4_0,4_0_0,4_1_0,4_1_0 -25140,2,43.0,0.0,2,112,256.0,432.0,0.0,0,47,0.0,0.0,353.8366022594382,688.0,0.0,783.498053166098,31,0,0,0,0,0,0,0,0,2,1.0,2,,2,101098,2,1,0,0,1,,427.0,353.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1964.52069637042,256.0,18939.569464977878,0,1,2,3,53.0,9,2,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03632606333909627,18939.569464977878,5,3,5,5_0,5_1,5_0_1 -25141,2,53.0,0.0,2,112,1190.0,0.0,0.0,43,38,0.0,0.0,1644.7873308153573,1256.0,113.54158227655265,0.0,31,0,0,0,0,0,0,0,0,3,5.0,1,,2,101804,2,1,2,0,1,,360.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,1851.16178506761,1190.0,72933.58710014283,1,1,0,1,115.0,9,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.017221146661488426,36466.793550071416,9,5,9,9_1,9_1,9_0_1 -25142,2,64.0,0.0,6,112,618.0,0.0,0.0,0,86,0.0,414.0690019277831,854.1836726419251,1018.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,122238,2,1,2,0,1,,289.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1796.78170923464,618.0,19321.21947206636,0,5,0,1,80.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05268818572615319,19321.21947206636,5,3,5,5_1,5_1,5_0_0 -25143,2,43.0,0.0,5,112,2000.0,0.0,0.0,56,47,0.0,0.0,2764.3484551518613,2060.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,125734,2,1,2,0,1,,700.0,737.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1629.88115589741,2000.0,40542.84447123288,4,1,2,3,120.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050810445760944824,16892.8518630137,4,2,4_0,4_1_0,4_1_0,4_0_0 -25144,2,69.0,0.0,5,112,1390.0,0.0,0.0,77,78,0.0,0.0,1921.2221763305436,1390.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,114287,2,1,1,0,1,,296.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1644.53043713517,1390.0,24780.14893432742,5,5,0,1,95.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056093286754804864,16520.099289551614,4,2,4_0,4_1_0,4_1_0,4_0_0 -25146,2,63.0,0.0,5,112,2200.0,0.0,0.0,86,34,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,41,2,2,2,2,2,2,2,1,2,10.0,1,,3,126640,2,1,3,0,1,,311.0,,41,0.0,4.0,11.0,2.0,1.5,2,2,1707.43627548622,2200.0,81458.77636231885,6,5,0,1,225.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.027007525747927568,54305.85090821257,10,5,10,10_1,10_1,10_0_0 -25147,2,42.0,0.0,6,112,603.0,0.0,0.0,54,63,0.0,414.0690019277831,833.4510592282861,1069.0,113.54158227655265,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,4,108695,2,1,1,0,1,,187.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1565.46609177959,603.0,40922.273365392066,1,1,0,1,130.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02612269339132201,19486.796840662886,5,3,5,5_1,5_1,5_0_0 -25148,2,55.0,0.0,2,112,400.0,0.0,0.0,0,37,0.0,155.27587572291867,552.8696910303722,2050.0,2580.4905062852877,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,101105,2,1,1,0,1,,250.0,,32,1.0,0.0,5.0,2.0,1.5,1,1,1674.08050172259,400.0,37296.094959660346,0,1,1,2,120.0,9,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05496554001745466,24864.063306440232,7,4,7,7_1,7_1,7_0_1 -25149,2,83.0,0.0,1,112,679.0,0.0,0.0,77,77,4182.037655650402,124.22070057833493,938.4963005240569,3749.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,110815,2,1,1,0,1,,327.0,,41,0.0,5.0,5.0,3.0,2.0,1,1,1677.52625200313,679.0,52034.68077262658,5,5,0,1,140.0,9,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07204810223362036,26017.34038631329,7,4,7,7_1,7_1,7_1_0 -25150,1,62.0,170.0,5,112,480.0,0.0,0.0,0,72,0.0,0.0,663.4436292364467,612.0,227.0831645531053,0.0,42,2,2,2,1,2,2,2,2,0,,1,,3,129077,2,1,2,0,1,,160.0,,11,0.0,0.0,5.0,1.0,1.0,2,1,1711.64736540964,480.0,13006.626589701013,0,5,1,2,72.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.047052938421757846,13006.626589701013,2,1,2_1,2_1_1,2_1_1,2_0_0 -25151,2,52.0,0.0,1,112,800.0,0.0,0.0,0,63,0.0,0.0,1105.7393820607444,866.0,113.54158227655265,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,131068,2,2,3,0,1,,300.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1673.37893062583,800.0,16360.580472066544,0,4,0,1,130.0,9,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05293210723657248,16360.580472066544,4,2,4_0,4_1_0,4_1_0,4_1_0 -25152,2,53.0,0.0,7,112,840.0,0.0,0.0,0,90,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,5.0,2,,5,122166,2,1,0,0,1,,160.0,590.0,12,1.0,3.0,3.0,1.0,1.0,2,2,2650.80035883239,840.0,26396.896509760652,0,1,3,4,75.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03182192269039647,26396.896509760652,7,4,7,7_0,7_1,7_0_0 -25153,2,89.0,0.0,8,112,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2003.0,6,124942,2,1,0,0,1,,210.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,1981.13832808391,1000.0,16489.26518769246,0,5,0,1,52.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06064551625662477,16489.26518769246,4,2,4_0,4_0_0,4_1_0,4_0_0 -25154,2,37.0,0.0,8,112,500.0,0.0,0.0,21,47,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,2,2,2,2,2,2,1,2,2,1.0,2,2003.0,6,111150,2,1,0,0,1,,244.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,2146.90736367786,500.0,39099.25096613974,1,1,1,2,50.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.012787968762700951,26066.16731075983,7,4,7,7_0,7_1,7_0_0 -25155,2,29.0,0.0,1,112,0.0,0.0,0.0,0,33,0.0,0.0,0.0,227.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,2.0,2,,1,114344,2,3,0,0,1,,0.0,405.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2431.25268446112,0.0,21272.081202829486,0,1,3,4,31.0,9,2,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.010671264265849353,21272.081202829486,6,3,6,6_0,6_1,6_1_0 -25156,2,80.0,0.0,9,112,700.0,0.0,0.0,75,77,0.0,0.0,967.5219593031513,700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2008.0,6,115228,2,1,0,0,1,,400.0,666.0,41,0.0,3.0,3.0,2.0,1.5,1,1,2131.3143410452,700.0,48947.0723356264,5,5,2,3,67.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014301161777361321,32631.381557084267,8,4,8,8_0,8_1,8_0_0 -25157,2,71.0,0.0,5,112,1206.0,0.0,0.0,0,90,0.0,0.0,1666.9021184565722,1239.0,56.77079113827632,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,120844,2,1,2,0,1,,358.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,2164.78039584813,1206.0,26569.20685990105,0,5,0,1,85.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04663293136800149,26569.20685990105,7,4,7,7_1,7_0,7_0_0 -25158,2,43.0,0.0,8,112,972.0,0.0,0.0,43,63,1344.2263893162005,0.0,1343.4733492038044,1917.0,77.41471518855863,0.0,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,115530,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,2016.20868807755,972.0,53814.064781300745,1,1,1,2,150.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03562265752997192,25625.745133952736,7,4,7,7_1,7_0,7_0_0 -25159,2,57.0,0.0,2,112,488.0,949.0,0.0,47,77,0.0,0.0,674.5010230570541,1437.0,0.0,1721.156602904229,41,0,0,0,0,0,0,0,0,0,,1,,2,128507,2,1,1,0,1,,516.0,,42,1.0,3.0,9.0,3.0,2.0,1,1,2314.63014432878,488.0,37063.35785251553,1,5,0,1,120.0,9,0,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03877144660551767,18531.678926257766,4,2,4_0,4_1_0,4_0_0,4_0_1 -25160,2,64.0,0.0,1,112,300.0,0.0,0.0,75,75,1792.3018524216009,310.55175144583734,414.65226827277917,1860.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,131818,1,1,2,0,1,,220.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,2140.436237121,300.0,47268.0,5,5,1,2,140.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03935008885503935,31512.0,8,4,8,8_1,8_0,8_1_0 -25161,2,49.0,0.0,5,112,847.0,0.0,0.0,90,48,0.0,0.0,1170.7015707568132,1429.0,56.77079113827632,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,3,122214,2,1,2,0,1,,172.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1943.62651311428,847.0,46985.34695812616,7,1,1,2,99.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03041373731417882,31323.564638750773,8,4,8,8_1,8_0,8_0_0 -25162,2,64.0,0.0,5,112,754.0,0.0,0.0,78,74,1642.9433647198007,465.827627168756,1042.1593675922516,2424.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,100460,2,1,2,0,1,,57.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,2223.75704893053,754.0,47772.52079988198,5,5,0,1,121.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05074046668280457,31848.34719992132,8,4,8,8_1,8_0,8_0_0 -25163,2,42.0,0.0,9,112,920.0,0.0,0.0,55,65,0.0,207.03450096389156,1271.600289369856,1120.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,102075,1,1,1,0,1,,540.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,1883.70872174056,920.0,46577.799749264224,1,1,1,2,91.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024045790183931826,15525.933249754742,3,2,3_0,3_1_0,3_0_0,3_0_0 -25164,0,76.0,0.0,1,112,789.0,0.0,0.0,71,71,0.0,0.0,1090.5354655574092,1007.0,375.03128691346177,0.0,41,2,2,2,2,2,2,2,1,0,,1,,1,108913,2,1,1,0,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,2201.26543095145,789.0,21155.638295766537,5,5,0,1,90.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.04759960375204142,14103.758863844358,3,2,3_0,3_1_0,3_0_0,3_1_0 -25165,1,58.0,251.0,1,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,296.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,129034,2,1,0,0,1,,95.0,140.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2985.92227569673,0.0,10181.475265017667,0,7,2,3,30.0,9,0,5,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.02907240771060169,10181.475265017667,2,1,2_1,2_0_1,2_0_1,2_1_0 -25166,2,60.0,0.0,5,112,1012.0,0.0,0.0,68,78,0.0,0.0,1398.7603183068418,1111.0,170.31237341482898,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,116773,2,1,1,0,1,,270.0,363.0,42,1.0,2.0,3.0,2.0,1.5,1,1,1849.35843688196,1012.0,27343.37133242881,1,5,2,3,74.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04063141982358157,18228.91422161921,4,2,4_0,4_1_0,4_0_0,4_0_0 -25167,2,39.0,0.0,8,112,1800.0,0.0,0.0,52,37,0.0,207.03450096389156,2487.913609636675,2150.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2002.0,6,110251,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1941.91821672405,1800.0,55055.7905228822,1,1,1,2,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03905129650452336,26217.04310613438,7,4,7,7_1,7_0,7_0_0 -25168,2,30.0,0.0,9,112,1050.0,0.0,0.0,0,63,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2009.0,6,120599,2,1,0,0,1,,150.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2322.26337804477,1050.0,17092.818225590403,0,1,1,2,60.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.061429308271002334,17092.818225590403,4,2,4_0,4_0_0,4_0_0,4_0_0 -25169,2,33.0,0.0,9,112,0.0,0.0,0.0,0,90,0.0,0.0,0.0,1053.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,4.0,1,2005.0,6,114289,2,1,1,0,1,,188.0,800.0,32,1.0,0.0,6.0,2.0,1.3,2,2,2326.20212451859,0.0,23956.04690720954,0,1,2,3,130.0,9,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04395549917224035,18427.728390161185,4,2,4_0,4_1_0,4_0_0,4_0_0 -25170,2,71.0,0.0,5,112,0.0,0.0,0.0,77,77,0.0,0.0,0.0,705.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,128834,2,1,1,0,1,,212.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2013.81385849311,0.0,38768.664843332284,5,5,1,2,90.0,9,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018184789258257138,25845.776562221523,7,4,7,7_1,7_0,7_0_0 -25171,2,64.0,0.0,2,112,2400.0,0.0,0.0,0,77,0.0,0.0,3317.2181461822333,2532.0,227.0831645531053,0.0,10,2,2,2,1,2,2,2,2,0,,1,,2,105266,1,2,3,0,1,,200.0,,21,1.0,2.0,6.0,2.0,1.5,1,1,2067.30197446077,2400.0,36200.4991743832,0,5,0,1,117.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.06994378690202527,24133.666116255466,6,3,6,6_1,6_0,6_0_1 -25172,0,85.0,0.0,2,120,620.0,0.0,0.0,0,86,1493.5848770180007,0.0,856.9480210970769,1690.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114169,2,1,2,0,1,,135.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,447.767701380772,620.0,9157.810199950056,0,5,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.18454193339901462,9157.810199950056,1,1,1_0,1_1_0,1_0_0,1_0_1 -25173,2,93.0,0.0,2,120,500.0,0.0,0.0,0,86,0.0,455.47590212056144,691.0871137879653,975.0,60.21144514665671,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,119426,1,1,4,0,2,,152.0,,11,0.0,0.0,5.0,1.0,1.0,4,4,524.296738803627,500.0,12801.1237702898,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07616518811128778,12801.1237702898,2,1,2_0,2_1_0,2_0_0,2_0_1 -25174,2,58.0,0.0,9,120,750.0,0.0,0.0,77,62,0.0,0.0,1036.630670681948,890.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,129588,2,1,1,0,1,,380.0,,42,2.0,2.0,3.0,3.0,2.0,2,2,554.341805011077,750.0,28927.363698169436,6,1,1,2,113.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03076671656934712,14463.681849084718,3,2,3_0,3_1_0,3_0_0,3_0_0 -25175,1,25.0,130.0,5,120,1040.0,0.0,0.0,56,63,0.0,0.0,1437.4611966789678,1130.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,3,111017,2,1,1,0,1,,500.0,446.0,43,2.0,0.0,5.0,4.0,2.1,1,1,524.492998985918,1040.0,27871.663417766526,1,1,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04054296950499525,13272.220675126917,3,2,3_1,3_1_1,3_0_1,3_0_0 -25176,2,48.0,0.0,1,120,0.0,0.0,0.0,43,35,0.0,0.0,0.0,771.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110118,1,2,2,0,2,,494.0,300.0,43,2.0,0.0,1.0,2.0,1.5,2,2,485.514732970311,0.0,24257.24984799629,1,1,2,3,60.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031784312105920226,16171.499898664193,4,2,4_0,4_1_0,4_0_0,4_1_0 -25177,2,73.0,0.0,7,120,2730.0,0.0,0.0,72,72,0.0,0.0,3773.3356412822905,2862.0,227.0831645531053,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,121534,2,1,2,0,1,,344.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,488.337740346589,2730.0,20403.25431680897,5,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14027174075079663,13602.169544539312,3,2,3_0,3_1_0,3_0_0,3_0_0 -25178,1,58.0,87.0,2,120,350.0,0.0,0.0,0,56,0.0,0.0,483.76097965157567,500.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,7,,2,108112,1,3,0,0,2,,0.0,200.0,12,1.0,0.0,1.0,1.0,1.0,1,1,585.793876559235,350.0,9815.875763375341,0,1,2,3,30.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05093789001136127,9815.875763375341,2,1,2_1,2_1_1,2_0_1,2_0_1 -25179,0,78.0,0.0,2,120,1500.0,0.0,0.0,0,71,0.0,0.0,2073.261341363896,1525.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115680,1,2,1,0,2,,100.0,,11,0.0,1.0,3.0,1.0,1.0,4,4,549.887988750339,1500.0,13466.070702160016,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11324758600557351,13466.070702160016,3,2,3_0,3_1_0,3_0_0,3_0_1 -25180,2,37.0,0.0,5,120,904.0,0.0,0.0,67,65,1194.8679016144006,215.3158810024472,1249.4855017286413,1982.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,133452,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,451.004443719021,904.0,37532.398315629325,1,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052807709843968355,17872.570626490153,4,2,4_0,4_1_0,4_0_0,4_0_0 -25181,2,47.0,0.0,9,120,500.0,0.0,0.0,0,46,2240.377315527001,0.0,691.0871137879653,2000.0,0.0,0.0,10,2,1,2,2,2,2,2,1,2,60.0,1,2006.0,6,128940,1,1,1,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,3,3,497.687487874984,500.0,35283.44852900631,0,1,1,2,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.05668380170820922,35283.44852900631,9,5,9,9_1,9_0,9_0_0 -25182,1,41.0,311.0,8,120,1000.0,0.0,0.0,12,56,0.0,0.0,1382.1742275759307,1140.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,126366,2,1,1,0,1,,400.0,,43,3.0,0.0,6.0,6.0,3.0999999999999996,2,2,492.871143026902,1000.0,28126.182071301235,1,1,1,2,125.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.040531629821283416,9072.961958484271,1,1,1_1,1_1_1,1_0_1,1_0_0 -25183,2,44.0,0.0,1,120,0.0,0.0,0.0,56,63,0.0,0.0,0.0,905.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,110933,2,1,3,0,1,,128.0,,43,2.0,2.0,7.0,4.0,2.1,2,2,461.367971849088,0.0,27791.399474342456,1,1,0,1,90.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03256403121532304,13233.999749686884,2,1,2_0,2_1_0,2_0_0,2_1_0 -25184,2,65.0,0.0,1,120,360.0,0.0,0.0,78,77,2987.1697540360015,0.0,497.582721927335,2430.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115155,2,2,2,0,1,,392.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,405.341971596551,360.0,42090.70682508598,5,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05773245885601818,28060.47121672399,8,4,8,8_1,8_0,8_1_0 -25185,2,82.0,0.0,2,120,857.0,0.0,0.0,72,77,0.0,621.1035028916747,1184.5233130325726,1527.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122389,1,2,1,0,1,,114.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,509.574738952204,857.0,34430.59943965153,5,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04435008465874838,22953.732959767687,6,3,6,6_1,6_0,6_0_1 -25186,2,86.0,0.0,2,120,882.0,0.0,0.0,0,71,0.0,0.0,1219.0776687219707,882.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102520,1,2,2,0,1,,150.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,512.531081598167,882.0,14853.049634223024,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059381744606022,14853.049634223024,3,2,3_0,3_1_0,3_0_0,3_0_1 -25187,2,67.0,0.0,1,120,800.0,0.0,0.0,0,74,0.0,227.73795106028072,1105.7393820607444,1090.0,120.42289029331342,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,129574,1,3,3,0,1,,150.0,,11,0.0,2.0,3.0,1.0,1.0,4,4,559.631294700303,800.0,14550.83720873838,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.07490977902944375,14550.83720873838,3,2,3_0,3_1_0,3_0_0,3_1_0 -25188,2,57.0,0.0,5,120,1200.0,0.0,0.0,0,68,0.0,0.0,1658.6090730911167,1270.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102900,1,2,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,482.513278893701,1200.0,28241.19178448427,0,4,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044969773573710826,28241.19178448427,8,4,8,8_1,8_0,8_0_0 -25189,0,83.0,0.0,5,120,1747.0,0.0,0.0,0,75,0.0,0.0,2414.658375575151,1847.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,129253,2,1,2,0,1,,209.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,496.443702016926,1747.0,24471.129562206006,0,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07547669572444117,24471.129562206006,7,4,7,7_1,7_0,7_0_0 -25190,2,63.0,0.0,7,120,370.0,0.0,0.0,0,77,1389.0339356267407,621.1035028916747,511.40446420309434,1975.0,129.02452531426437,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,102006,2,1,2,0,1,,160.0,,11,0.0,3.0,5.0,1.0,1.0,4,4,520.121085911698,370.0,26449.844567408803,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07466962593926062,26449.844567408803,7,4,7,7_1,7_0,7_0_0 -25191,2,78.0,0.0,5,120,420.0,0.0,0.0,71,78,2389.735803228801,0.0,580.5131755818909,2370.0,602.1144514665671,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,113492,1,3,2,0,2,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,462.463708856111,420.0,22733.303926919587,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10425233426776871,15155.535951279724,3,2,3_0,3_1_0,3_0_0,3_0_0 -25193,2,81.0,0.0,2,120,227.0,0.0,0.0,0,71,0.0,451.3352121012836,313.7535496597362,743.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126265,1,3,4,0,2,,106.0,,11,0.0,0.0,1.0,1.0,1.0,2,2,479.437487116982,227.0,8941.487519976745,0,5,0,1,40.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08309579343929258,8941.487519976745,1,1,1_0,1_1_0,1_0_0,1_0_1 -25194,2,60.0,0.0,5,120,1000.0,0.0,0.0,72,45,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,120471,2,1,1,0,1,,346.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,433.90795112619,1000.0,4515.138812966342,6,1,0,1,40.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.221477133134479,3010.0925419775613,1,1,1_0,1_1_0,1_0_0,1_0_0 -25195,2,60.0,0.0,6,120,800.0,0.0,0.0,11,11,746.7924385090004,0.0,1105.7393820607444,1390.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,118624,2,2,3,0,1,,300.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,510.676261416169,800.0,14531.1842670724,1,1,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09565634668536507,9687.456178048267,1,1,1_0,1_1_0,1_0_0,1_0_0 -25196,2,73.0,0.0,7,120,450.0,0.0,0.0,0,72,0.0,0.0,621.9784024091688,520.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,7,,5,120834,1,3,0,0,1,,110.0,,11,0.0,2.0,1.0,1.0,1.0,2,2,488.455059296335,450.0,11762.013081279267,0,5,0,1,38.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04421011916979126,11762.013081279267,2,1,2_0,2_1_0,2_0_0,2_0_0 -25197,0,67.0,0.0,8,120,290.0,0.0,0.0,72,77,0.0,776.3793786145933,400.8305259970199,1240.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104256,2,3,4,0,1,,210.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,500.687097590914,290.0,16568.24635318862,5,5,5,0,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07484195813888037,11045.497568792414,2,1,2_0,2_1_0,2_0_0,2_0_0 -25198,2,20.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1113.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,125162,2,1,0,0,1,,161.0,330.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2158.04476914123,0.0,12369.319521562105,0,4,2,3,13.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0899806976495212,12369.319521562105,2,1,2_0,2_0_0,2_3_0,2_1_0 -25199,2,28.0,0.0,2,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,285.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,131442,2,2,0,1,2,355.0,0.0,750.0,43,2.0,0.0,3.0,3.0,1.8,3,2,1553.12831667286,0.0,27636.762672056844,1,4,2,3,57.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010312351102112247,15353.75704003158,3,2,3_0,3_0_0,3_3_0,3_0_1 -25200,0,36.0,0.0,1,111,578.0,1249.0,0.0,56,67,0.0,0.0,798.8967035388879,1827.0,0.0,2265.2524731584635,70,0,0,0,0,0,0,0,0,2,15.0,2,,1,127725,1,1,0,0,2,,190.0,,43,2.0,0.0,3.0,5.0,2.4,1,1,1350.525895934,578.0,43183.67078164991,1,1,5,0,90.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04230765858784634,17993.196159020797,4,2,4_0,4_0_0,4_3_0,4_1_0 -25201,2,78.0,0.0,1,111,180.0,1136.0,0.0,0,74,0.0,0.0,248.7913609636675,1316.0,0.0,2060.309695362702,31,0,0,0,0,0,0,0,0,0,,2,,1,130472,1,3,0,0,1,,106.0,,11,0.0,2.0,3.0,1.0,1.0,3,2,1479.48915958691,180.0,36585.21773804899,0,5,0,1,71.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03597081229426023,36585.21773804899,9,5,9,9_0,9_3,9_1_0 -25202,2,32.0,0.0,2,111,450.0,84.0,0.0,0,46,0.0,0.0,621.9784024091688,717.0,0.0,152.3468436711857,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,113631,1,1,0,1,1,52.0,110.0,508.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1683.44127765789,450.0,40859.46815432217,0,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017547952344655147,40859.46815432217,9,5,9,9_0,9_3,9_0_1 -25203,1,41.0,446.0,2,111,0.0,0.0,800.0,0,52,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,31,2,2,2,2,1,2,2,2,3,25.0,2,,2,121624,2,2,0,1,1,,450.0,776.0,32,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,1276.93043685446,0.0,34448.07859175512,0,1,2,3,107.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.023223356213297592,12758.547626575972,2,1,2_1,2_0_1,2_3_1,2_0_1 -25208,1,27.0,100.0,1,111,640.0,0.0,0.0,0,55,0.0,0.0,884.5915056485956,755.0,197.83760548187203,0.0,50,2,2,2,1,1,1,2,2,0,,2,,1,110244,1,3,0,0,2,,350.0,450.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1471.46010778979,640.0,23174.605845370734,0,4,2,3,40.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.03257876336873344,15449.737230247156,3,2,3_1,3_0_1,3_3_1,3_1_0 -25209,1,25.0,240.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,580.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,4,129751,2,1,0,0,1,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2140.36956679254,0.0,14578.86502386005,0,1,2,3,24.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0397836182069565,14578.86502386005,3,2,3_1,3_0_1,3_3_1,3_0_0 -25210,2,70.0,0.0,7,111,1400.0,0.0,0.0,0,74,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,119456,2,2,0,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,6,6,1436.92273873016,1400.0,40491.81682392503,0,5,0,1,98.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03457488721950344,40491.81682392503,9,5,9,9_0,9_3,9_0_0 -25211,2,42.0,0.0,2,111,210.0,0.0,0.0,33,38,0.0,0.0,290.25658779094545,1425.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,2,116279,2,1,0,0,1,,330.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,1443.82667076761,210.0,108010.42828261394,1,1,1,2,100.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013193170536009968,45004.34511775581,10,5,10,10_0,10_3,10_0_1 -25212,2,27.0,0.0,9,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,595.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2005.0,6,100494,2,1,0,0,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2084.20745573635,0.0,6839.614628015546,0,4,2,3,18.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08699320537195733,6839.614628015546,1,1,1_0,1_0_0,1_3_0,1_0_0 -25213,1,33.0,164.0,2,111,0.0,0.0,1598.0,42,34,0.0,0.0,816.439509070365,1598.0,0.0,1826.906747894905,50,2,2,2,2,1,2,2,2,3,15.0,2,,2,105931,2,2,0,0,1,,518.0,594.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1448.71914413143,0.0,29147.630966499026,1,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05482435268364243,19431.753977666016,5,3,5,5_0,5_3,5_0_1 -25214,2,50.0,0.0,1,111,331.0,0.0,0.0,0,37,2987.1697540360015,0.0,457.499669327633,2331.0,0.0,0.0,50,1,2,2,2,1,2,2,2,2,10.0,1,,1,120480,2,2,2,0,1,,163.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,1166.55585958788,331.0,52933.49744686532,0,1,1,2,90.0,9,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.04403638739986639,26466.74872343266,7,4,7,7_1,7_3,7_1_0 -25215,2,49.0,0.0,7,111,177.0,0.0,0.0,0,52,0.0,0.0,244.64483828093972,366.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,5,124767,1,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,4,4,1497.90047054976,177.0,25044.628525923625,0,1,0,1,41.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014613912105789648,25044.628525923625,7,4,7,7_0,7_3,7_0_0 -25216,1,70.0,60.0,7,111,413.0,650.0,0.0,77,75,0.0,0.0,570.8379559888593,1063.0,0.0,1178.8743855508417,31,2,2,2,2,2,2,2,1,0,,2,,5,104594,1,2,0,0,1,,150.0,594.0,41,0.0,2.0,4.0,2.0,1.5,1,1,1323.04350123873,413.0,34734.313770709756,5,5,2,3,90.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.030603742656818835,23156.20918047317,6,3,6,6_0,6_3,6_0_0 -25217,2,69.0,0.0,1,111,480.0,1300.0,0.0,78,75,0.0,0.0,663.4436292364467,1780.0,0.0,2357.7487711016834,31,0,0,0,0,0,0,0,0,0,,1,,1,114340,2,1,1,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1037.41149590369,480.0,44865.0562556197,5,5,0,1,110.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03967452954607721,29910.037503746466,8,4,8,8_1,8_3,8_1_0 -25218,2,31.0,0.0,2,111,400.0,0.0,0.0,0,43,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,124851,1,1,0,0,2,,0.0,407.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1644.33294460755,400.0,19139.15181507577,0,1,2,3,30.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.020899567748081865,19139.15181507577,5,3,5,5_0,5_3,5_0_1 -25220,1,43.0,297.0,2,111,480.0,720.0,0.0,85,42,0.0,0.0,663.4436292364467,1200.0,0.0,1305.830088610163,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,109115,2,1,0,0,1,,0.0,703.0,42,1.0,0.0,4.0,5.0,2.8,2,2,1167.1494809848,480.0,27451.61859226713,6,1,2,3,90.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04371326943679849,9804.14949723826,2,1,2_1,2_0_1,2_3_1,2_0_1 -25222,2,29.0,0.0,7,111,360.0,540.0,0.0,46,38,0.0,0.0,497.582721927335,900.0,0.0,979.3725664576224,50,0,0,0,0,0,0,0,0,0,,2,,5,107924,2,1,0,0,1,,240.0,680.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1471.26890681837,360.0,45062.759889834204,1,1,2,3,67.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019972145563215554,30041.839926556135,8,4,8,8_0,8_3,8_0_0 -25224,2,46.0,0.0,8,111,320.0,862.0,0.0,0,46,0.0,0.0,442.2957528242978,1182.0,0.0,1563.368800530501,70,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,115342,2,1,4,0,1,,131.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1028.73269816725,320.0,37023.76967017177,0,1,0,1,78.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03192543629484275,37023.76967017177,9,5,9,9_1,9_3,9_0_0 -25225,2,32.0,0.0,6,111,0.0,0.0,0.0,42,38,0.0,0.0,0.0,888.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,123485,1,2,0,0,2,,0.0,763.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1315.99728432694,0.0,61114.568067312706,1,1,2,3,85.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014530087147502058,40743.04537820847,9,5,9,9_0,9_3,9_0_0 -25226,2,62.0,0.0,7,111,220.0,216.0,0.0,0,78,0.0,0.0,304.0783300667047,436.0,0.0,391.749026583049,10,0,0,0,0,0,0,0,0,0,,2,,5,129958,2,1,0,0,1,,133.0,287.0,11,0.0,0.0,2.0,1.0,1.0,3,2,1400.59467074847,220.0,15309.490700032777,0,5,2,3,48.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028479066256532397,15309.490700032777,3,2,3_0,3_0_0,3_3_0,3_0_0 -25227,1,26.0,380.0,9,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,162.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,101259,2,1,0,1,1,,0.0,453.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2109.43082720074,0.0,10846.689820717427,0,4,3,4,25.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.014935432162038622,10846.689820717427,2,1,2_1,2_0_1,2_3_1,2_0_0 -25228,1,64.0,251.0,2,111,420.0,150.0,0.0,0,78,0.0,0.0,580.5131755818909,570.0,0.0,272.04793512711734,20,2,2,2,2,2,2,2,1,0,,2,,2,128874,2,2,0,1,1,456.0,120.0,237.0,11,0.0,1.0,3.0,1.0,1.0,2,2,404.501787735515,420.0,9898.451080224842,0,5,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.05758476708934268,9898.451080224842,2,1,2_1,2_0_1,2_3_1,2_0_1 -25229,1,28.0,268.0,2,111,168.0,170.0,0.0,69,52,0.0,0.0,232.20527023275633,338.0,0.0,308.32099314406634,44,0,0,0,0,0,0,0,0,3,45.0,2,,2,114384,2,1,0,1,1,337.0,144.0,253.0,43,2.0,0.0,2.0,2.0,1.5,1,1,409.605131682033,168.0,24849.210886678426,1,1,2,3,45.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.013602041591638655,16566.14059111895,4,2,4_1,4_0_1,4_3_1,4_0_1 -25230,1,41.0,637.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,490.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,107239,1,3,0,1,2,504.0,361.0,575.0,41,0.0,0.0,4.0,5.0,2.4,2,1,425.621013399096,0.0,37041.62776184027,6,7,2,3,68.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.013228360350426897,15434.011567433445,3,2,3_1,3_0_1,3_3_1,3_0_1 -25231,1,50.0,258.0,2,111,0.0,0.0,500.0,0,85,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,41,2,2,2,2,1,2,2,2,0,,2,,2,122164,1,2,0,1,1,31.0,56.0,245.0,11,0.0,0.0,3.0,1.0,1.0,1,1,399.631664770093,0.0,14616.58793727275,0,7,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03420770990779487,14616.58793727275,3,2,3_1,3_0_1,3_3_1,3_0_1 -25232,2,42.0,0.0,9,111,412.0,781.0,0.0,33,37,0.0,0.0,569.4557817612833,1193.0,0.0,1416.4629155618577,70,0,0,0,0,0,0,0,0,2,30.0,2,2004.0,6,116583,2,1,0,0,1,,268.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1225.01624283717,412.0,67216.36897753204,1,1,1,2,97.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01774865286755933,32007.794751205733,8,4,8,8_0,8_3,8_0_0 -25233,2,47.0,0.0,5,111,1340.0,0.0,0.0,52,45,0.0,0.0,1852.113464951747,1390.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,3,30.0,2,,3,104506,2,2,0,0,1,,0.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,1614.39207815951,1340.0,49210.04536382835,1,1,0,1,86.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028246265365601837,24605.022681914175,7,4,7,7_0,7_3,7_0_0 -25234,2,71.0,0.0,1,111,404.0,491.0,0.0,22,74,0.0,0.0,558.398387940676,895.0,0.0,890.5035743160975,31,0,0,0,0,0,0,0,0,0,,1,,1,130114,2,2,2,0,1,,160.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,1032.21833137669,404.0,51576.966383269646,5,5,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01735270727923845,34384.6442555131,9,5,9,9_1,9_3,9_1_0 -25235,2,28.0,0.0,2,111,270.0,900.0,0.0,33,46,0.0,0.0,373.1870414455012,1170.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,123236,2,1,0,0,1,,300.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1382.05689364111,270.0,40392.58957114865,1,1,1,2,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028965709116993574,26928.393047432433,7,4,7,7_0,7_3,7_0_1 -25237,2,30.0,0.0,5,111,238.0,1100.0,0.0,0,37,0.0,0.0,328.95746616307144,1338.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,122881,2,2,0,0,1,,697.0,389.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1232.70522502988,238.0,31445.805864535483,0,1,2,3,48.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04254939452860369,31445.805864535483,8,4,8,8_0,8_3,8_0_0 -25239,2,32.0,0.0,6,111,0.0,0.0,774.0,42,38,0.0,0.0,395.4469211642444,774.0,0.0,884.8722295811368,71,0,0,0,0,0,0,0,0,1,5.0,2,,4,132885,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1382.05689364111,0.0,56901.0,1,1,1,2,63.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013602572889755893,37934.0,9,5,9,9_0,9_3,9_0_0 -25240,2,26.0,0.0,8,111,517.0,0.0,0.0,38,38,0.0,0.0,714.5840756567561,517.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,119126,2,1,0,0,1,,173.0,472.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1665.82932960152,517.0,34323.59751903222,1,1,2,3,35.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015062523667961283,22882.39834602148,6,3,6,6_0,6_3,6_0_0 -25241,2,82.0,0.0,2,111,230.0,407.0,0.0,0,77,0.0,0.0,317.900072342464,637.0,0.0,738.1567306449117,50,0,0,0,0,0,0,0,0,0,,2,,2,103828,2,1,0,0,1,,338.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1380.24151916965,230.0,18878.29911031165,0,6,0,1,62.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03374244661967771,18878.29911031165,5,3,5,5_0,5_3,5_0_1 -25242,2,49.0,0.0,7,111,353.0,253.0,0.0,0,52,0.0,0.0,487.9075023343035,606.0,0.0,458.8541839144046,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,112976,2,2,0,0,1,,120.0,325.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1215.55568908739,353.0,18346.575594545404,0,1,2,3,47.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03303068721882731,18346.575594545404,4,2,4_0,4_0_0,4_3_0,4_0_0 -25243,2,86.0,0.0,2,111,214.0,878.0,0.0,75,74,0.0,0.0,295.7852847012491,1092.0,0.0,1592.38724694406,71,0,0,0,0,0,0,0,0,0,,1,,2,131882,2,1,2,0,1,,120.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1015.56473761138,214.0,41326.51131125197,5,5,0,1,87.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026423716044540184,27551.007540834646,7,4,7,7_1,7_3,7_0_1 -25244,2,62.0,0.0,8,111,432.0,0.0,0.0,0,75,0.0,0.0,597.099266312802,780.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,1999.0,6,127573,2,1,0,1,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,1298.59184249162,432.0,29025.017060724946,0,5,0,1,80.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026873369216910917,29025.017060724946,8,4,8,8_0,8_3,8_0_0 -25245,1,42.0,470.0,2,111,500.0,300.0,0.0,62,56,0.0,0.0,691.0871137879653,800.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,131090,2,1,0,1,1,455.0,0.0,700.0,43,2.0,0.0,5.0,5.0,2.8,4,4,1580.06665731372,500.0,25414.790166471772,4,1,2,3,97.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03147773382191416,9076.710773739918,1,1,1_1,1_0_1,1_3_1,1_0_1 -25247,1,37.0,50.0,2,111,0.0,0.0,511.0,85,63,0.0,0.0,261.0767141019753,511.0,0.0,584.1985908474946,10,0,0,0,0,0,0,0,0,0,,2,,2,106838,2,1,0,0,1,441.0,229.0,272.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1285.83546718576,0.0,17975.339402061716,6,4,2,3,56.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.028427835968504154,11983.559601374478,2,1,2_1,2_0_1,2_3_1,2_0_1 -25248,1,54.0,146.0,2,111,0.0,0.0,697.0,0,68,0.0,0.0,356.106594381755,697.0,0.0,796.8423049328841,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,132690,2,1,0,1,1,500.0,200.0,228.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1294.83440801519,0.0,8208.857021739515,0,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08490828846867901,8208.857021739515,1,1,1_1,1_0_1,1_3_1,1_0_1 -25249,2,32.0,0.0,1,111,368.0,971.0,0.0,47,42,0.0,0.0,508.64011574794245,1371.0,55.050464134086134,1761.0569667228729,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,123002,2,1,3,0,1,,291.0,617.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1062.08696824377,368.0,36237.506225983074,1,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037833729270723475,24158.337483988715,6,3,6,6_1,6_3,6_1_0 -25250,2,73.0,0.0,2,111,273.0,183.0,0.0,77,74,0.0,0.0,377.33356412822906,456.0,0.0,331.89848085508316,10,0,0,0,0,0,0,0,0,0,,2,,2,112346,2,1,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1343.26565536391,273.0,39805.41205452597,5,5,0,1,89.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011455728667633568,26536.94136968398,7,4,7,7_0,7_3,7_0_1 -25251,2,40.0,0.0,2,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1687.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,103136,1,3,2,0,2,,279.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1113.17478048675,0.0,65440.45027655558,1,1,1,2,90.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025779162473219985,36355.80570919754,9,5,9,9_1,9_3,9_0_1 -25252,2,65.0,0.0,1,111,1790.0,0.0,0.0,75,74,0.0,0.0,2474.091867360916,1790.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,113118,2,1,2,0,1,,147.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1102.84129048637,1790.0,113456.72260403712,5,5,0,1,140.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.01577694083626127,75637.81506935808,10,5,10,10_1,10_3,10_1_0 -25253,1,26.0,243.0,6,111,300.0,700.0,0.0,42,42,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,31,2,2,2,2,1,2,2,2,1,15.0,2,,4,102691,2,3,0,0,1,,290.0,516.0,42,1.0,0.0,2.0,2.0,1.5,1,1,1337.19319886143,300.0,11883.338972941081,3,1,2,3,45.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.0841514327140753,7922.225981960721,1,1,1_1,1_0_1,1_3_1,1_0_0 -25255,1,21.0,175.0,6,111,610.0,0.0,0.0,0,54,0.0,0.0,843.1262788213177,610.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,17.0,2,,4,121050,2,1,0,0,1,,0.0,335.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2102.50629952893,610.0,16129.462687318057,0,2,2,3,19.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03781899073920288,16129.462687318057,4,2,4_1,4_0_1,4_3_1,4_0_0 -25256,2,58.0,0.0,6,111,316.0,0.0,0.0,0,46,0.0,0.0,436.76705591399406,316.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,20.0,2,,4,104447,1,3,0,1,1,284.0,120.0,447.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1326.21096562575,316.0,32586.123923757645,0,1,2,3,74.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009697379189355293,32586.123923757645,8,4,8,8_0,8_3,8_0_0 -25257,2,40.0,0.0,6,111,200.0,0.0,0.0,0,46,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,2,2,1,2,2,2,2,1,2,1.0,2,,4,100848,1,2,0,1,1,,0.0,502.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1796.97956262652,200.0,32473.056348697006,0,1,2,3,35.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.006158952143352071,32473.056348697006,8,4,8,8_0,8_3,8_0_0 -25258,2,79.0,0.0,7,111,200.0,562.0,0.0,0,78,0.0,0.0,276.4348455151861,762.0,0.0,1019.2729302762663,20,2,2,2,2,2,2,2,1,0,,1,,5,121745,2,2,4,0,1,,68.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1143.77392672646,200.0,18137.02355471699,0,5,0,1,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.04201350887046859,18137.02355471699,4,2,4_0,4_1_0,4_3_0,4_0_0 -25259,2,66.0,0.0,2,111,0.0,0.0,580.0,0,78,0.0,0.0,296.32973420576457,580.0,0.0,663.0825492985263,70,0,0,0,0,0,0,0,0,0,,2,,2,133365,2,1,0,1,1,,170.0,341.0,11,0.0,4.0,2.0,1.0,1.0,1,1,438.648109454016,0.0,16721.052724457466,0,5,2,3,92.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03468681126467884,16721.052724457466,4,2,4_0,4_0_0,4_3_0,4_0_1 -25260,2,19.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,3620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120833,2,2,0,0,1,,212.0,580.0,22,1.0,0.0,3.0,2.0,1.5,3,3,1533.48457634033,0.0,24717.957757687265,0,2,2,3,64.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.146452228597817,16478.638505124844,4,2,4_0,4_0_0,4_3_0,4_0_1 -25261,2,54.0,0.0,7,111,420.0,1000.0,0.0,0,54,0.0,0.0,580.5131755818909,1420.0,0.0,1813.6529008474488,20,2,2,2,1,2,2,2,2,3,1.0,2,,5,100382,2,2,0,0,1,,200.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,404.783840168237,420.0,41360.32868440336,0,1,1,2,67.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.034332415751218884,27573.552456268906,7,4,7,7_0,7_3,7_0_0 -25262,2,82.0,0.0,2,111,186.0,85.0,0.0,75,75,0.0,0.0,257.0844063291231,271.0,0.0,154.16049657203317,50,2,1,2,1,1,2,2,1,0,,2,,2,130492,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,463.552442491901,186.0,52510.44679983431,5,5,0,1,85.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.00516087781604736,35006.964533222876,9,5,9,9_0,9_3,9_0_1 -25265,1,28.0,270.0,9,111,193.0,0.0,0.0,0,81,0.0,0.0,266.7596259221546,193.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2010.0,6,120878,2,1,0,1,1,206.0,150.0,287.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1265.85115877754,193.0,11161.14764320297,0,4,2,3,49.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.017292128566862488,11161.14764320297,2,1,2_1,2_0_1,2_3_1,2_0_0 -25266,2,77.0,0.0,6,111,240.0,106.0,0.0,0,86,0.0,0.0,331.72181461822333,932.0,0.0,192.24720748982958,50,2,2,1,2,1,2,2,2,0,,2,,4,107874,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,421.774785190642,240.0,22275.53318275994,0,5,0,1,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.0418396270182802,22275.53318275994,6,3,6,6_0,6_3,6_0_0 -25267,2,36.0,0.0,2,111,180.0,0.0,0.0,0,37,0.0,0.0,248.7913609636675,206.0,0.0,0.0,20,1,2,2,2,1,2,2,2,3,35.0,2,,2,101363,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1489.2601188089,180.0,32862.4413013095,0,1,1,2,63.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.006268554369142115,32862.4413013095,8,4,8,8_0,8_3,8_0_1 -25268,1,26.0,377.0,6,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,936.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,133674,2,1,0,1,1,611.0,0.0,399.0,32,1.0,0.0,4.0,2.0,1.3,2,2,319.484853470455,0.0,7835.536120587893,0,4,2,3,88.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11945576991734586,6027.335477375302,1,1,1_1,1_0_1,1_3_1,1_0_0 -25269,2,43.0,0.0,2,111,447.0,1230.0,0.0,54,43,0.0,0.0,617.831879726441,1677.0,0.0,2230.793068042362,50,0,0,0,0,0,0,0,0,1,7.0,1,,2,108739,2,2,2,0,1,,717.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1086.35712602761,447.0,50009.120095035476,1,1,1,2,90.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0335338833559377,27782.84449724193,7,4,7,7_1,7_3,7_0_1 -25270,2,51.0,0.0,2,111,155.0,60.0,0.0,0,45,0.0,0.0,214.23700527426922,600.0,0.0,108.81917405084694,44,2,2,1,1,1,2,2,2,2,7.0,2,,2,129792,2,1,0,1,1,408.0,0.0,256.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1302.59217637277,155.0,27377.116341782857,0,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.021916113899997647,27377.116341782857,7,4,7,7_0,7_3,7_0_1 -25271,2,76.0,0.0,2,111,367.0,96.0,0.0,0,77,0.0,0.0,507.2579415203665,463.0,0.0,174.11067848135508,50,2,2,1,2,1,2,2,2,0,,2,,2,112550,2,2,0,1,1,900.0,0.0,423.0,11,0.0,4.0,5.0,1.0,1.0,1,1,1282.66952452972,367.0,18343.379271784233,0,5,2,3,91.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.025240714545557378,18343.379271784233,4,2,4_0,4_0_0,4_3_0,4_0_1 -25272,1,40.0,312.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,1194.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,109927,2,1,0,1,1,,536.0,500.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1181.61108045518,0.0,14246.06592557472,6,1,2,3,64.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08381261228452663,6783.840916940342,1,1,1_1,1_0_1,1_3_1,1_0_1 -25273,2,29.0,0.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,325.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,131285,2,1,0,1,1,360.0,0.0,390.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1821.29339812248,0.0,11261.444470378508,0,4,2,3,40.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028859530485175533,11261.444470378508,2,1,2_0,2_0_0,2_3_0,2_0_0 -25274,2,58.0,0.0,5,111,330.0,0.0,0.0,56,63,0.0,0.0,456.1174951000571,330.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,2,,3,132272,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,2.0,1.5,3,3,1218.86045443463,330.0,26700.934610254106,1,1,0,1,68.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012359117941634459,17800.62307350274,4,2,4_0,4_0_0,4_3_0,4_0_0 -25275,2,50.0,0.0,2,111,360.0,120.0,0.0,0,54,0.0,0.0,497.582721927335,480.0,0.0,217.63834810169388,41,0,0,0,0,0,0,0,0,3,20.0,2,,2,105445,2,2,0,1,2,809.0,120.0,580.0,32,1.0,0.0,4.0,2.0,1.5,2,2,352.618826074562,360.0,27814.79443967359,0,1,2,3,76.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01725700332033922,18543.19629311573,4,2,4_0,4_0_0,4_3_0,4_0_1 -25276,2,67.0,0.0,2,111,220.0,403.0,0.0,0,75,0.0,0.0,304.0783300667047,623.0,0.0,730.9021190415219,50,0,0,0,0,0,0,0,0,0,,2,,2,122900,2,1,0,0,1,,150.0,340.0,11,0.0,4.0,3.0,1.0,1.0,1,1,425.965622210387,220.0,28951.370417222548,0,5,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.021518843185032468,28951.370417222548,8,4,8,8_0,8_3,8_0_1 -25277,2,76.0,0.0,2,111,453.0,2062.0,0.0,72,77,0.0,0.0,626.1249250918966,2515.0,0.0,3739.7522815474395,31,0,0,0,0,0,0,0,0,0,,1,,2,107185,2,2,3,0,1,,275.0,,41,1.0,2.0,7.0,3.0,2.0,2,2,349.531077610419,453.0,68850.78629044349,5,5,0,1,209.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03652826838303055,34425.393145221744,9,5,9,9_1,9_3,9_0_1 -25278,2,45.0,0.0,5,111,300.0,640.0,0.0,37,54,0.0,0.0,414.65226827277917,940.0,0.0,1160.7378565423674,60,0,0,0,0,0,0,0,0,1,1.0,2,,3,114392,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1651.06035561822,300.0,69816.6362219497,1,1,1,2,95.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013463839721691902,38787.02012330539,9,5,9,9_0,9_3,9_0_0 -25279,2,43.0,0.0,2,111,680.0,190.0,0.0,54,62,0.0,0.0,939.8784747516328,870.0,0.0,344.5940511610153,60,0,0,0,0,0,0,0,0,0,,2,,2,102003,1,3,0,1,2,,330.0,,43,2.0,1.0,4.0,4.0,2.3,1,1,1265.07597457293,680.0,46340.099366874194,1,1,1,2,83.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01877423682483322,20147.8692899453,5,3,5,5_0,5_3,5_0_1 -25280,2,33.0,0.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,2413.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113921,2,2,0,0,2,,164.0,367.0,12,1.0,0.0,1.0,1.0,1.0,2,2,438.590784837657,0.0,14556.95993621873,0,4,2,3,40.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1657626324845676,14556.95993621873,3,2,3_0,3_0_0,3_3_0,3_0_1 -25281,2,67.0,0.0,6,112,1710.0,0.0,0.0,0,75,0.0,0.0,2363.517929154841,1710.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,4,110246,1,2,3,0,1,,165.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,2000.19999598357,1710.0,25933.839745444526,0,5,0,1,100.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.06593701575951068,25933.839745444526,7,4,7,7_1,7_1,7_0_0 -25282,2,77.0,0.0,2,112,390.0,1190.0,0.0,77,78,0.0,0.0,539.0479487546129,1580.0,0.0,2158.246952008464,71,0,0,0,0,0,0,0,0,0,,1,,2,124964,2,1,2,0,2,,390.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1877.45928014205,390.0,30900.956385616675,5,5,0,1,70.0,9,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05113110352582599,20600.637590411116,5,3,5,5_1,5_1,5_0_1 -25283,2,61.0,0.0,6,112,694.0,0.0,0.0,0,45,0.0,0.0,959.2289139376958,719.0,43.00817510475479,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,122469,2,1,1,0,1,,200.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1978.40498053714,694.0,28849.0885064739,0,1,1,2,55.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024922797815211815,28849.0885064739,8,4,8,8_1,8_1,8_0_0 -25284,2,75.0,0.0,1,112,250.0,900.0,0.0,78,78,0.0,0.0,345.54355689398267,1150.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,0,,1,,1,111911,2,1,2,0,1,,250.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1922.09809868566,250.0,29491.47120503966,5,5,0,1,90.0,9,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038994324562671594,19660.980803359773,5,3,5,5_1,5_1,5_1_0 -25285,2,80.0,0.0,2,112,600.0,0.0,0.0,71,71,0.0,1035.1725048194578,829.3045365455583,1600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,127945,2,1,3,0,1,,500.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,2070.03991921448,600.0,19066.91385054369,5,5,0,1,85.0,9,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08391499602618577,12711.27590036246,2,1,2_0,2_1_0,2_1_0,2_0_1 -25286,2,56.0,0.0,6,112,1300.0,0.0,0.0,45,47,0.0,0.0,1796.8264958487098,1350.0,86.01635020950958,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,4,101559,2,1,2,0,1,,339.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1997.8929299855,1300.0,46384.475773842365,1,1,0,1,94.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02910456521234,30922.983849228243,8,4,8,8_1,8_1,8_0_0 -25287,2,81.0,0.0,5,112,900.0,1000.0,0.0,86,77,0.0,0.0,1243.9568048183376,1900.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,0,,1,,3,100838,2,1,2,0,1,,600.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1861.80241949585,900.0,45058.41852028282,6,5,0,1,100.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042167480848106655,30038.94568018855,8,4,8,8_1,8_1,8_0_0 -25288,2,64.0,0.0,2,112,0.0,0.0,1160.0,77,78,0.0,0.0,592.6594684115291,1160.0,0.0,1326.1650985970525,50,0,0,0,0,0,0,0,0,0,,1,,2,128385,2,1,1,0,1,,350.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1931.71154003733,0.0,23415.701660022554,5,5,0,1,90.0,9,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04953940807934272,15610.46777334837,3,2,3_0,3_1_0,3_1_0,3_0_1 -25289,2,72.0,0.0,2,112,0.0,0.0,3500.0,78,74,0.0,0.0,1788.1966719313377,3500.0,0.0,4001.36021128421,71,2,2,2,2,1,2,2,2,0,,1,,2,121867,1,3,3,0,1,,600.0,683.0,41,0.0,6.0,6.0,2.0,1.5,3,2,2159.06031279741,0.0,31770.21628173654,5,5,2,3,90.0,9,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.11016607406642094,21180.14418782436,5,3,5,5_1,5_1,5_0_1 -25290,2,46.0,0.0,2,112,0.0,0.0,2400.0,85,33,0.0,0.0,1226.19200361006,2400.0,0.0,2743.7898591663156,71,0,0,0,0,0,0,0,0,0,,1,,2,131251,2,1,2,0,1,,0.0,,42,1.0,0.0,8.0,4.0,2.5,2,2,1847.12205641164,0.0,102036.8113002792,6,1,1,2,200.0,9,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02352092317876493,40814.724520111675,9,5,9,9_1,9_1,9_0_1 -25291,2,55.0,0.0,1,112,650.0,1200.0,0.0,90,90,0.0,207.03450096389156,898.4132479243549,2050.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,0,,1,,1,114458,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,2.0,1.5,3,2,1947.54847079585,650.0,60256.61953943389,1,1,0,1,160.0,9,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03402115843319776,40171.07969295592,9,5,9,9_1,9_1,9_1_0 -25292,2,35.0,0.0,6,112,1000.0,0.0,0.0,0,54,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,,4,131192,2,1,0,0,1,,146.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,2461.01178624309,1000.0,29208.25363602528,0,1,1,2,91.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03423689798306209,22467.887412327138,6,3,6,6_0,6_1,6_0_0 -25293,2,80.0,0.0,7,112,660.0,0.0,0.0,0,77,0.0,0.0,912.2349902001142,660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,115296,2,1,0,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,2430.19681355391,660.0,33784.76774994037,0,5,0,1,43.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019535431022791767,33784.76774994037,9,5,9,9_0,9_1,9_0_0 -25294,2,29.0,0.0,1,112,0.0,0.0,0.0,54,37,0.0,0.0,0.0,1839.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,121340,2,1,4,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,2185.74161703379,0.0,52974.01713671035,1,1,1,2,90.0,9,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03471513204773733,29430.009520394637,8,4,8,8_1,8_1,8_1_0 -25295,2,78.0,0.0,2,112,150.0,0.0,0.0,0,71,2389.735803228801,0.0,207.32613413638958,1850.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,113391,2,1,1,0,2,,220.0,,11,0.0,0.0,4.0,1.0,1.0,4,3,2070.06095314212,150.0,15586.618212813148,0,5,0,1,63.0,9,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11869155802374036,15586.618212813148,3,2,3_0,3_1_0,3_1_0,3_0_1 -25296,0,85.0,0.0,2,112,0.0,0.0,0.0,0,78,1792.3018524216009,0.0,0.0,1922.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111929,2,1,2,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,2043.15855234597,0.0,20374.60789380852,0,5,0,1,64.0,9,3,5,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09433310373467661,20374.60789380852,5,3,5,5_1,5_1,5_0_1 -25297,2,67.0,0.0,2,112,1200.0,0.0,0.0,77,78,448.0754631054002,0.0,1658.6090730911167,1600.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,112491,2,1,2,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,4,4,1951.05659025831,1200.0,36499.81706660642,5,5,0,1,120.0,9,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04383583613803466,24333.21137773761,7,4,7,7_1,7_1,7_0_1 -25298,2,73.0,0.0,8,112,544.0,1561.0,0.0,77,72,0.0,0.0,751.9027798013062,2105.0,0.0,2831.112178222868,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,124601,2,1,1,0,1,,480.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1888.99607948624,544.0,69822.03989694822,5,5,0,1,100.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03014807363272131,46548.02659796548,10,5,10,10_1,10_1,10_0_0 -25299,2,66.0,0.0,6,112,400.0,1200.0,0.0,86,74,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,0,,1,,4,123082,2,1,2,0,1,,380.0,,41,0.0,3.0,8.0,2.0,1.5,3,3,2109.9944046771,400.0,46709.04789264652,6,5,0,1,167.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03425460531067452,31139.36526176435,8,4,8,8_1,8_1,8_0_0 -25300,2,49.0,0.0,7,112,1100.0,0.0,0.0,46,37,0.0,0.0,1520.3916503335236,1130.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,110316,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1840.34094614295,1100.0,63530.39157646624,1,1,1,2,95.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01778676271245571,27621.90938107228,7,4,7,7_1,7_1,7_0_0 -25301,1,46.0,367.0,6,112,400.0,760.0,0.0,0,56,0.0,0.0,552.8696910303722,1160.0,0.0,1378.376204644061,71,2,2,2,2,1,2,2,2,0,,1,,4,132637,1,3,3,0,1,,400.0,516.0,32,1.0,0.0,4.0,3.0,2.0,2,2,2067.33879776527,400.0,18877.09418076987,0,1,2,3,87.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.06145013575138562,9438.547090384935,1,1,1_1,1_1_1,1_1_1,1_0_0 -25302,1,45.0,470.0,7,112,600.0,800.0,0.0,85,34,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,60,2,2,2,2,2,2,2,1,0,,1,,5,132907,2,2,2,0,1,,400.0,870.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,1839.97724232178,600.0,28087.670837538062,6,4,2,3,121.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.04984393359270486,9362.556945846021,1,1,1_1,1_1_1,1_1_1,1_0_0 -25303,2,31.0,0.0,7,112,0.0,0.0,450.0,0,43,0.0,0.0,229.91100067688626,450.0,0.0,514.4605985936842,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,118168,1,2,0,0,1,,100.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2932.37514959938,0.0,22901.50154922079,0,1,1,2,37.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019649366616107798,22901.50154922079,6,3,6,6_0,6_1,6_0_0 -25304,2,45.0,0.0,9,112,300.0,700.0,0.0,0,42,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,10,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,108798,2,1,1,0,1,,160.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,2159.37558671163,300.0,28275.584932039892,0,1,1,2,66.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03536620028917141,28275.584932039892,8,4,8,8_1,8_1,8_0_0 -25305,2,36.0,0.0,7,112,350.0,360.0,0.0,46,52,0.0,0.0,483.76097965157567,710.0,0.0,652.9150443050816,33,0,0,0,0,0,0,0,0,2,20.0,2,,5,100332,2,1,0,0,1,,250.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,2265.02875591055,350.0,20608.76281917268,4,1,0,1,52.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0344513645108029,13739.175212781787,3,2,3_0,3_0_0,3_1_0,3_0_0 -25306,2,28.0,0.0,6,112,0.0,0.0,0.0,43,42,0.0,0.0,0.0,1143.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,105467,2,1,0,0,1,,457.0,619.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2978.04986012407,0.0,49906.409100241086,1,1,2,3,83.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02290287000421512,27725.78283346727,7,4,7,7_0,7_1,7_0_0 -25307,1,51.0,88.0,5,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1237.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,75.0,2,,3,105020,2,1,0,1,1,485.0,0.0,287.0,32,1.0,1.0,3.0,2.0,1.5,3,2,2679.78141664936,0.0,21429.0,0,1,2,3,70.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05772551215642354,14286.0,3,2,3_1,3_0_1,3_1_1,3_0_0 -25308,2,39.0,0.0,7,112,317.0,553.0,0.0,85,34,0.0,0.0,438.14923014157,870.0,0.0,1002.9500541686392,44,0,0,0,0,0,0,0,0,2,15.0,2,,5,129016,2,1,0,0,1,,456.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,4,4,2618.07226252566,317.0,52676.57179603412,6,1,1,2,105.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016515881165704484,19509.841405938565,5,3,5,5_0,5_1,5_0_0 -25309,2,30.0,0.0,7,112,330.0,250.0,0.0,0,67,0.0,0.0,456.1174951000571,580.0,0.0,453.4132252118622,41,0,0,0,0,0,0,0,0,2,5.0,2,,5,105001,2,1,0,0,1,,230.0,331.0,12,1.0,0.0,2.0,1.0,1.0,3,2,2287.25094728842,330.0,19892.80553119096,0,1,2,3,50.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029156269541296624,19892.80553119096,5,3,5,5_0,5_1,5_0_0 -25310,2,73.0,0.0,7,112,541.0,1012.0,0.0,77,74,0.0,0.0,747.7562571185784,1553.0,0.0,1835.4167356576183,42,0,0,0,0,0,0,0,0,0,,1,,5,121260,2,1,2,0,1,,410.0,,41,0.0,2.0,6.0,2.0,1.5,6,5,1933.21720910442,541.0,55448.55114079373,5,5,0,1,113.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028007945528759747,36965.70076052915,9,5,9,9_1,9_1,9_0_0 -25311,2,44.0,0.0,7,112,400.0,900.0,0.0,46,47,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,1,3.0,1,,5,111252,2,2,2,0,1,,300.0,,43,2.0,0.0,6.0,2.0,1.5,4,3,1980.55139716274,400.0,61776.35730133916,1,1,1,2,126.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021043649331065676,41184.238200892774,9,5,9,9_1,9_1,9_0_0 -25312,1,44.0,406.0,7,112,0.0,0.0,0.0,0,68,0.0,0.0,0.0,777.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,131862,2,1,0,0,1,,307.0,504.0,32,2.0,2.0,4.0,3.0,1.8,2,2,2630.26953052773,0.0,12451.68566507054,0,1,2,3,72.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06240118975855935,6917.60314726141,1,1,1_1,1_0_1,1_1_1,1_0_0 -25313,2,30.0,0.0,8,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,867.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,110424,2,2,0,0,1,,85.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,2430.19681355391,0.0,20184.428213104467,0,1,1,2,48.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04295390440820672,20184.428213104467,5,3,5,5_0,5_1,5_0_0 -25314,2,79.0,0.0,8,112,0.0,0.0,1460.0,72,72,0.0,0.0,745.9334688627865,1460.0,0.0,1669.1388309928418,44,0,0,0,0,0,0,0,0,0,,1,2000.0,6,131532,2,1,2,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1947.54847079585,0.0,39687.1918843175,5,5,0,1,130.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03678768717765902,26458.127922878335,7,4,7,7_1,7_1,7_0_0 -25315,1,34.0,137.0,9,112,0.0,0.0,0.0,22,54,0.0,0.0,0.0,635.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,4.0,2,2006.0,6,104685,2,1,0,0,1,,142.0,371.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2185.63841692686,0.0,25535.269767644375,4,1,2,3,76.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02486756575427316,17023.513178429585,4,2,4_1,4_0_1,4_1_1,4_0_0 -25316,2,45.0,0.0,9,112,0.0,0.0,900.0,0,64,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,20,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,108200,2,1,0,0,1,,150.0,565.0,12,1.0,1.0,3.0,1.0,1.0,2,2,2756.35816604404,0.0,19950.411578695177,0,1,2,3,58.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04511185127434163,19950.411578695177,5,3,5,5_0,5_1,5_0_0 -25317,2,51.0,0.0,9,112,636.0,0.0,0.0,0,46,0.0,0.0,879.0628087382918,636.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,20.0,2,2009.0,6,111461,2,1,0,0,1,,0.0,712.0,32,1.0,0.0,4.0,4.0,2.1,2,1,2824.11720430746,636.0,40472.32933763217,0,1,2,3,90.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.01571444022147328,19272.53777982484,5,3,5,5_0,5_1,5_0_0 -25318,2,37.0,0.0,9,112,200.0,400.0,0.0,45,37,0.0,0.0,276.4348455151861,600.0,0.0,725.4611603389795,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,104527,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1821.05745832899,200.0,53088.70067460801,1,1,1,2,92.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011301839984322243,25280.33365457524,7,4,7,7_1,7_1,7_0_0 -25319,0,55.0,0.0,1,112,800.0,0.0,0.0,11,62,0.0,0.0,1105.7393820607444,875.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,,1,131976,2,1,1,0,1,,150.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,2079.66466329515,800.0,23349.70643028737,1,1,5,0,90.0,9,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03747370454581048,15566.470953524913,3,2,3_0,3_1_0,3_1_0,3_1_0 -25320,0,52.0,0.0,1,112,0.0,0.0,0.0,56,69,0.0,0.0,0.0,1559.0,0.0,0.0,70,2,2,2,2,1,2,2,2,1,5.0,1,,1,114726,1,3,4,0,1,,350.0,,43,2.0,0.0,7.0,2.0,1.5,3,3,2201.69558660649,0.0,47587.89084228882,1,1,5,0,120.0,9,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.032760434900691165,31725.26056152588,8,4,8,8_1,8_1,8_1_0 -25321,2,29.0,0.0,9,112,506.0,762.0,0.0,47,47,0.0,0.0,699.3801591534209,1268.0,0.0,1382.003510445756,71,0,0,0,0,0,0,0,0,3,50.0,1,2007.0,6,123523,2,1,1,0,1,,205.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,2028.63358668764,506.0,47732.9492689022,1,1,1,2,83.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026564459548827756,31821.966179268133,8,4,8,8_1,8_1,8_0_0 -25322,2,53.0,0.0,9,112,0.0,0.0,1500.0,54,64,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,30,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,100859,2,1,1,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1967.94340901644,0.0,52540.35588448142,1,1,0,1,144.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028549483054473322,35026.903922987614,9,5,9,9_1,9_1,9_0_0 -25323,2,29.0,0.0,9,112,12.0,25.0,0.0,37,38,0.0,0.0,16.586090730911167,37.0,0.0,45.34132252118622,71,0,0,0,0,0,0,0,0,2,55.0,2,2006.0,6,100357,2,1,0,0,1,,215.0,695.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2837.77785689636,12.0,69511.62651410689,1,1,2,3,69.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0005322850558315034,46341.08434273792,10,5,10,10_0,10_1,10_0_0 -25324,2,29.0,0.0,1,112,1136.0,0.0,0.0,52,65,0.0,403.71727687958855,1570.1499225262571,1586.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,111106,2,1,3,0,1,,420.0,580.0,43,2.0,0.0,5.0,4.0,2.1,3,3,895.014914440382,1136.0,41438.82318752833,1,1,2,3,110.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038273287656424855,19732.772946442063,5,3,5,5_1,5_0,5_1_0 -25325,2,51.0,0.0,5,112,520.0,0.0,0.0,69,52,0.0,0.0,718.7305983394839,1980.0,2511.6774261176797,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,3,122428,2,2,1,0,1,,274.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,788.758558870578,520.0,35639.624057929366,1,1,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055556141579430465,23759.749371952912,6,3,6,6_1,6_0,6_0_0 -25326,2,57.0,0.0,1,112,600.0,0.0,0.0,75,38,2987.1697540360015,186.3310508675024,829.3045365455583,2780.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,123745,2,1,1,0,1,,300.0,,42,1.0,2.0,7.0,2.0,1.5,3,3,868.627480822319,600.0,58908.31330168391,5,1,0,1,170.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047191980964773825,39272.208867789275,9,5,9,9_1,9_0,9_1_0 -25327,1,33.0,260.0,2,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1565.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,108214,2,2,5,0,1,,85.0,540.0,32,1.0,0.0,5.0,2.0,1.3,1,1,887.608466495631,0.0,17878.006506351507,0,1,2,3,90.0,9,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0875377240434499,13752.312697193467,3,2,3_1,3_1_1,3_0_1,3_0_1 -25328,2,52.0,0.0,8,112,750.0,0.0,0.0,65,68,2315.056559377901,207.03450096389156,1036.630670681948,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,2003.0,6,104932,2,2,2,0,1,,500.0,,43,4.0,0.0,5.0,4.0,2.5,1,1,817.878890398878,750.0,84873.5665140636,4,1,1,2,140.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029455578487864637,33949.42660562544,9,5,9,9_1,9_0,9_0_0 -25329,2,45.0,0.0,1,112,2571.0,0.0,0.0,42,42,0.0,0.0,3553.5699390977175,2661.0,154.82943037711726,0.0,50,2,1,2,2,1,2,2,2,2,10.0,1,,1,109340,2,1,1,0,1,,470.0,,43,2.0,1.0,8.0,5.0,2.5999999999999996,2,2,843.391380648776,2571.0,67267.09403156972,1,1,1,2,210.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.039558717948349933,25871.959242911435,7,4,7,7_1,7_0,7_1_0 -25330,1,29.0,101.0,1,112,585.0,0.0,0.0,46,48,2688.452778632401,0.0,808.5719231319193,2457.0,123.8635443016938,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,100945,2,2,1,0,1,,216.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,850.979591427504,585.0,40279.51501149711,1,1,1,2,146.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.06099874835381436,16783.131254790464,4,2,4_1,4_1_1,4_0_1,4_1_0 -25331,2,34.0,0.0,1,112,1900.0,0.0,0.0,43,43,0.0,310.55175144583734,2626.131032394268,2251.0,87.73667721369978,0.0,10,2,2,2,2,1,2,2,1,2,30.0,1,,1,115222,2,1,1,0,1,,276.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,982.694529652033,1900.0,52141.226845620025,1,1,1,2,130.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.04317121280373342,28967.34824756668,8,4,8,8_1,8_0,8_1_0 -25332,2,66.0,0.0,1,112,1572.0,0.0,0.0,0,75,0.0,0.0,2172.7778857493627,1572.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125400,2,1,2,0,1,,171.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,885.498050537374,1572.0,24256.93772883032,0,5,0,1,65.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06480620173797191,24256.93772883032,7,4,7,7_1,7_0,7_1_0 -25333,2,38.0,0.0,9,112,1624.0,0.0,0.0,46,47,0.0,1449.241506747241,2244.650945583311,3078.0,92.89765822627035,0.0,12,0,0,0,0,0,0,0,0,2,19.0,1,2006.0,6,100814,2,1,1,0,1,,384.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,798.16442797225,1624.0,52463.98593997755,1,1,1,2,120.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05866881718673541,24982.850447608358,7,4,7,7_1,7_0,7_0_0 -25334,2,58.0,0.0,9,112,1100.0,0.0,0.0,21,21,0.0,0.0,1520.3916503335236,1131.0,53.330137129895945,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,2005.0,6,129441,2,1,1,0,1,,203.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,889.398549388477,1100.0,39705.630391033876,1,1,0,1,140.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028484625199538368,26470.42026068925,7,4,7,7_1,7_0,7_0_0 -25335,2,79.0,0.0,5,112,1146.0,0.0,0.0,71,71,687.0490434282804,0.0,1583.9716648020164,1702.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114739,2,2,2,0,1,,365.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,901.083465239539,1146.0,23563.110814681742,5,5,0,1,110.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07223154927996668,15708.740543121161,3,2,3_0,3_1_0,3_0_0,3_0_0 -25336,1,44.0,166.0,7,112,1276.0,0.0,0.0,0,67,0.0,0.0,1763.6543143868873,1356.0,137.62616033521533,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,109047,1,1,2,0,1,,860.0,414.0,32,1.0,1.0,4.0,3.0,1.8,2,2,782.123044606554,1276.0,25584.79292047785,0,1,2,3,75.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05300023354555546,14213.773844709915,3,2,3_1,3_1_1,3_0_1,3_0_0 -25337,2,42.0,0.0,8,112,762.0,0.0,0.0,52,22,0.0,621.1035028916747,1053.2167614128591,1362.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,131481,2,1,2,0,1,,673.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,786.973362451522,762.0,46486.14971101958,1,1,1,2,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029299049468860115,20211.36943957373,5,3,5,5_1,5_0,5_0_0 -25338,2,50.0,0.0,1,112,570.6,0.0,0.0,11,11,3584.6037048432017,0.0,788.668614254826,3052.0,139.3464873394055,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,121235,2,2,2,0,1,,132.0,,43,2.0,1.0,7.0,4.0,2.3,2,2,814.973138907199,570.6,21222.572135134116,1,1,0,1,120.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14380914719320909,9227.205276145269,1,1,1_0,1_1_0,1_0_0,1_1_0 -25339,2,39.0,0.0,9,112,1420.0,0.0,0.0,42,45,0.0,82.81380038555662,1962.6874031578213,1500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,133211,2,1,1,0,1,,740.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,912.054085372477,1420.0,51983.290417994125,1,1,1,2,120.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028855426194429042,28879.60578777451,8,4,8,8_1,8_0,8_0_0 -25340,2,25.0,0.0,9,112,0.0,0.0,0.0,65,34,0.0,0.0,0.0,1798.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,70.0,1,2005.0,6,105080,2,1,1,0,1,,192.0,,43,2.0,0.0,5.0,2.0,1.5,3,2,757.846506287243,0.0,45367.10605999954,1,1,1,2,96.0,9,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03963223921803793,30244.737373333028,8,4,8,8_1,8_0,8_0_0 -25341,2,31.0,0.0,1,112,850.0,0.0,0.0,56,38,1045.5094139126004,476.1793522169506,1174.848093439541,2035.0,42.14801160265969,0.0,60,2,2,2,2,1,2,2,2,2,25.0,1,,1,103145,1,2,3,0,2,,342.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,833.677107813936,850.0,30798.948067385634,1,1,1,2,110.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.06607368522936506,20532.632044923757,5,3,5,5_1,5_0,5_1_0 -25342,2,50.0,0.0,1,112,945.0,0.0,0.0,63,52,2180.633920446281,0.0,1306.1546450592543,2585.0,309.6588607542345,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,105189,2,1,3,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,895.164704115406,945.0,45893.5156010022,1,1,0,1,80.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0563260400984306,30595.677067334796,8,4,8,8_1,8_0,8_1_0 -25343,2,34.0,0.0,8,112,590.0,0.0,0.0,22,48,3285.8867294396014,476.1793522169506,815.482794269799,3370.0,206.439240502823,0.0,33,0,0,0,0,0,0,0,0,0,,1,1999.0,6,118435,2,2,3,0,1,,288.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,841.83598826487,590.0,47080.57589168365,1,1,1,2,193.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07157941329675366,22419.32185318269,6,3,6,6_1,6_0,6_0_0 -25344,2,36.0,0.0,9,112,1100.0,0.0,0.0,37,38,0.0,155.27587572291867,1520.3916503335236,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,108900,2,1,1,0,1,,330.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,916.68129735133,1100.0,62795.593413073584,4,1,1,2,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019905855364363182,34886.44078504088,9,5,9,9_1,9_0,9_0_0 -25345,2,77.0,0.0,1,112,431.0,0.0,0.0,0,71,0.0,1035.1725048194578,595.7170920852261,1493.0,106.66027425979189,0.0,50,2,2,1,2,1,1,2,2,0,,1,,1,107493,2,1,3,0,2,,175.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,967.382493826686,431.0,15467.458488932922,0,5,2,3,80.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.09652523076549727,15467.458488932922,3,2,3_0,3_1_0,3_0_0,3_1_0 -25346,1,28.0,170.0,9,112,715.0,0.0,0.0,67,46,0.0,0.0,988.2545727167903,776.0,104.9399472556017,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,118211,1,1,2,0,1,,178.0,550.0,43,2.0,0.0,3.0,2.0,1.5,1,1,843.124973940426,715.0,21096.238022782105,4,1,2,3,70.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03678380947171659,14064.158681854737,3,2,3_1,3_1_1,3_0_1,3_0_0 -25347,2,76.0,0.0,5,112,370.0,0.0,0.0,0,71,4480.754631054002,0.0,511.40446420309434,3490.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,118212,2,2,4,0,2,,400.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,845.453824723124,370.0,15325.888974116151,0,5,0,1,100.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.22771925373426957,15325.888974116151,3,2,3_0,3_1_0,3_0_0,3_0_0 -25348,2,26.0,0.0,1,112,720.0,0.0,0.0,0,62,0.0,0.0,995.16544385467,755.0,60.21144514665671,0.0,50,2,2,2,1,2,2,2,2,2,20.0,1,,1,103938,2,3,3,0,1,,220.0,435.0,12,1.0,0.0,3.0,1.0,1.0,1,1,908.673957933009,720.0,17198.926041875973,0,1,2,3,48.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.043898089808731354,17198.926041875973,4,2,4_0,4_1_0,4_0_0,4_1_0 -25349,2,67.0,0.0,7,112,1524.0,0.0,0.0,0,77,0.0,414.0690019277831,2106.4335228257182,2016.0,158.27008438549763,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,126341,2,1,2,0,1,,363.0,595.0,11,0.0,4.0,4.0,1.0,1.0,2,2,988.764161307144,1524.0,24759.303510675694,0,5,2,3,80.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08142393824328471,24759.303510675694,7,4,7,7_1,7_0,7_0_0 -25350,1,29.0,243.0,9,112,1644.0,0.0,0.0,81,53,0.0,0.0,2272.29443013483,1734.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,2,6.0,1,2006.0,6,128283,2,2,1,0,1,,492.0,595.0,43,2.0,0.0,5.0,3.0,1.8,1,1,1020.22609165857,1644.0,19891.143433498164,4,1,2,3,90.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08717447570559544,11050.635240832313,2,1,2_1,2_1_1,2_0_1,2_0_0 -25351,2,70.0,0.0,1,400,600.0,0.0,0.0,71,71,2091.018827825201,0.0,829.3045365455583,2096.0,165.1513924022584,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,105480,2,1,2,0,1,,280.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1225.53257698417,600.0,22133.867693561,5,5,0,1,132.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09469650894361092,14755.911795707332,3,2,3_0,3_1_0,3_0_0,3_1_0 -25352,2,87.0,0.0,1,400,350.0,0.0,0.0,0,77,1896.852793812861,0.0,483.76097965157567,1700.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,102041,2,2,2,0,2,,100.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1212.49797613528,350.0,15400.204836105218,0,5,0,1,75.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11038814211187711,15400.204836105218,3,2,3_0,3_1_0,3_0_0,3_1_0 -25353,2,58.0,0.0,1,400,3796.0,0.0,0.0,11,11,3474.0784239438694,0.0,5246.7333678782325,6242.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,120343,2,2,1,0,1,,1000.0,,43,2.0,0.0,6.0,3.0,2.0,1,1,1250.88352991053,3796.0,40160.67158489779,1,1,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15542568771054294,20080.335792448896,5,3,5,5_1,5_0,5_1_0 -25354,2,85.0,0.0,1,400,540.0,0.0,0.0,0,77,0.0,310.55175144583734,746.3740828910024,936.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107979,2,1,1,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1332.47968402669,540.0,18800.189713430125,0,5,0,1,85.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.049786731637679056,18800.189713430125,5,3,5,5_1,5_0,5_1_0 -25355,2,28.0,0.0,9,400,0.0,0.0,0.0,0,63,0.0,0.0,0.0,2876.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,128076,2,1,1,0,1,,281.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1237.02177724188,0.0,23593.225364022433,0,1,1,2,146.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12189939932441979,23593.225364022433,6,3,6,6_1,6_0,6_0_0 -25356,2,30.0,0.0,1,400,1900.0,0.0,0.0,52,47,0.0,0.0,2626.131032394268,1950.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,132602,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1153.53321378508,1900.0,50556.17945712983,1,1,1,2,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03857095257076424,24074.371170061822,6,3,6,6_1,6_0,6_1_0 -25357,2,83.0,0.0,1,400,660.0,0.0,0.0,86,72,0.0,558.9931526025072,912.2349902001142,1392.0,330.3027848045168,0.0,10,2,2,2,1,1,2,2,2,0,,1,,1,128176,1,1,2,0,2,,142.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1243.97162024652,660.0,14352.73590415174,5,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.09698499361347153,9568.490602767826,1,1,1_0,1_1_0,1_0_0,1_1_0 -25358,2,32.0,0.0,1,400,1000.0,0.0,0.0,0,38,0.0,0.0,1382.1742275759307,1100.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,126888,2,1,1,0,1,,92.0,,12,1.0,2.0,9.0,1.0,1.0,3,3,1312.46748891491,1000.0,78193.11565640429,0,1,1,2,450.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01406773461788648,78193.11565640429,10,5,10,10_1,10_0,10_1_0 -25359,2,43.0,0.0,1,400,487.0,0.0,0.0,45,33,0.0,517.5862524097289,673.1188488294782,1017.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,126296,2,1,1,0,1,,150.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1171.92143354106,487.0,60136.29403748755,1,1,1,2,240.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01691158419848796,40090.86269165837,9,5,9,9_1,9_0,9_1_0 -25360,2,59.0,0.0,2,400,1700.0,0.0,0.0,52,77,0.0,424.4207269759777,2349.696186879082,2110.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,131172,2,2,2,0,1,,450.0,,42,1.0,3.0,4.0,2.0,1.5,4,3,1172.75321539632,1700.0,46790.14882455814,1,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.045094962358669645,31193.432549705427,8,4,8,8_1,8_0,8_0_1 -25361,2,65.0,0.0,1,400,507.0,0.0,0.0,78,75,2329.9924081480813,0.0,700.7623333809968,2215.0,254.60839662014837,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,110985,2,2,3,0,1,,224.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1131.87931107492,507.0,49583.80753652753,5,5,0,1,125.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.044671841676705605,33055.87169101835,8,4,8,8_1,8_0,8_1_0 -25362,2,70.0,0.0,5,400,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1120.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,121955,1,2,2,0,2,,280.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,1261.83115455452,1000.0,14310.381676557507,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07826485870986401,14310.381676557507,3,2,3_0,3_1_0,3_0_0,3_0_0 -25363,2,42.0,0.0,9,400,1670.0,0.0,0.0,47,46,0.0,0.0,2308.2309600518042,1670.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,126819,2,1,1,0,1,,658.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1220.07190360701,1670.0,42564.0,1,1,1,2,200.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039235034301287476,20268.571428571428,5,3,5,5_1,5_0,5_0_0 -25364,2,32.0,0.0,1,400,1000.0,0.0,0.0,56,47,0.0,186.3310508675024,1382.1742275759307,1248.0,116.98223628493304,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,129162,1,1,1,0,1,,0.0,350.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1481.77691428754,1000.0,35743.0717520662,1,1,2,3,83.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034915857502590186,19857.262084481223,5,3,5,5_1,5_0,5_1_0 -25365,0,81.0,0.0,1,400,1032.0,0.0,0.0,0,71,0.0,0.0,1426.4038028583605,4671.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119298,2,2,4,0,2,,150.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,1248.21657516749,1032.0,19810.80829007753,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.235780384707449,19810.80829007753,5,3,5,5_1,5_0,5_1_0 -25366,2,39.0,0.0,1,400,1200.0,0.0,0.0,47,42,0.0,0.0,1658.6090730911167,1250.0,86.01635020950958,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,110731,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,1206.05109875103,1200.0,54804.899767351606,1,1,1,2,140.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022808179657408122,36536.59984490107,9,5,9,9_1,9_0,9_1_0 -25367,2,63.0,0.0,1,400,900.0,0.0,0.0,71,71,0.0,0.0,1243.9568048183376,1040.0,240.84578058662683,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,127359,2,2,2,0,1,,100.0,,41,0.0,2.0,7.0,2.0,1.5,3,2,1124.96942465741,900.0,26928.722633852183,5,5,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03862047279927837,17952.481755901455,4,2,4_0,4_1_0,4_0_0,4_1_0 -25368,2,51.0,0.0,1,400,720.0,0.0,0.0,54,21,1412.9312936590286,0.0,995.16544385467,1864.0,340.62474682965797,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,111147,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,4.0,2.5,3,3,1068.71101491792,720.0,125964.33552537224,1,1,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01479783934258555,50385.7342101489,10,5,10,10_1,10_0,10_1_0 -25369,2,77.0,0.0,5,400,500.0,0.0,0.0,0,72,1941.6603401234008,0.0,691.0871137879653,2975.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131217,2,1,2,0,1,,0.0,,11,0.0,4.0,7.0,1.0,1.0,2,2,1247.3216792983,500.0,10121.409800104382,0,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.293931384931111,10121.409800104382,2,1,2_0,2_1_0,2_0_0,2_0_0 -25370,2,70.0,0.0,1,400,350.0,0.0,0.0,86,78,74.67924385090004,0.0,483.76097965157567,532.0,227.0831645531053,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,116374,2,1,2,0,2,,150.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1165.38471859282,350.0,25829.287495318513,5,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020596774111419972,17219.52499687901,4,2,4_0,4_1_0,4_0_0,4_1_0 -25371,2,52.0,0.0,1,400,1750.0,0.0,0.0,67,67,0.0,0.0,2418.8048982578784,1988.0,165.1513924022584,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,1,108993,2,1,1,0,1,,345.0,550.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1451.16564958138,1750.0,29878.12782631413,1,1,2,3,180.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06653696682591798,19918.751884209418,5,3,5,5_1,5_0,5_1_0 -25372,2,64.0,0.0,1,400,1280.0,0.0,0.0,72,77,0.0,0.0,1769.1830112971911,1420.0,240.84578058662683,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,106080,2,1,1,0,1,,210.0,500.0,41,0.0,3.0,3.0,2.0,1.5,3,2,1350.91869402626,1280.0,27186.73952646652,5,5,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05223134604344953,18124.49301764435,4,2,4_0,4_1_0,4_0_0,4_1_0 -25373,2,43.0,0.0,1,400,770.0,0.0,0.0,52,63,0.0,0.0,1064.2741552334664,805.0,60.21144514665671,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,100488,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1144.60549874225,770.0,36274.12178585971,4,1,0,1,140.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022192129274754852,15771.357298199875,3,2,3_0,3_1_0,3_0_0,3_1_0 -25374,2,60.0,0.0,1,400,450.0,0.0,0.0,77,62,373.3962192545002,0.0,621.9784024091688,1050.0,602.1144514665671,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,109580,1,2,3,0,1,,150.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,1172.75321539632,450.0,44770.625579681415,5,1,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023452877559891172,29847.08371978761,8,4,8,8_1,8_0,8_1_0 -25375,2,58.0,0.0,7,400,500.0,0.0,0.0,52,64,2837.8112663342013,0.0,691.0871137879653,2500.0,172.03270041901916,0.0,10,1,2,2,1,2,2,2,2,0,,1,,5,107374,2,1,2,0,1,,280.0,,43,2.0,0.0,7.0,5.0,2.8,3,3,1060.64861203374,500.0,46449.84050436722,1,1,1,2,96.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.05382149804723118,16589.22875155972,4,2,4_0,4_1_0,4_0_0,4_0_0 -25376,2,43.0,0.0,1,400,2220.0,0.0,0.0,21,35,0.0,0.0,3068.426785218566,2320.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129178,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1162.6387815468,2220.0,49964.30287852386,1,1,1,2,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04643315059634716,27757.946043624364,7,4,7,7_1,7_0,7_1_0 -25377,2,57.0,0.0,1,111,317.0,1354.0,0.0,54,31,0.0,207.03450096389156,438.14923014157,1871.0,0.0,2455.6860277474457,50,0,0,0,0,0,0,0,0,3,60.0,1,,1,110475,1,2,2,0,1,,170.0,,43,2.0,2.0,10.0,5.0,2.8,2,2,866.672686239787,317.0,50924.84959970805,1,1,0,1,220.0,4,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0367404128771492,18187.44628561002,4,2,4_0,4_1_0,4_1_0,4_1_0 -25378,1,51.0,227.0,2,111,800.0,0.0,0.0,63,65,0.0,0.0,1105.7393820607444,845.0,77.41471518855863,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105631,2,1,1,0,1,,280.0,528.0,43,2.0,2.0,3.0,2.0,1.5,1,1,883.871168563326,800.0,10169.738609900078,4,4,2,3,48.0,4,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.08308964786739022,6779.825739933385,1,1,1_1,1_1_1,1_1_1,1_0_1 -25379,2,77.0,0.0,2,111,620.0,1010.0,0.0,77,74,0.0,0.0,856.9480210970769,1630.0,0.0,1831.7894298559233,20,2,2,2,2,2,2,2,1,0,,1,,2,106809,2,3,1,0,1,,240.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,897.753035363016,620.0,44842.538541312424,5,5,0,1,100.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.036349414039045035,29895.02569420828,8,4,8,8_1,8_1,8_0_1 -25380,1,80.0,40.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,863.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,121218,1,2,0,0,2,,135.0,,11,0.0,1.0,3.0,1.0,1.0,2,1,1237.97993172525,0.0,14372.83496963387,0,5,2,3,60.0,4,3,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.060043825857828234,14372.83496963387,3,2,3_1,3_0_1,3_1_1,3_0_1 -25381,1,36.0,101.0,9,111,720.0,0.0,0.0,52,62,0.0,0.0,995.16544385467,776.0,96.33831223465073,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,2004.0,6,119874,2,2,0,0,1,,197.0,347.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1061.8631732859,720.0,24481.77102079627,1,1,2,3,72.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.031697053262234154,13600.983900442372,3,2,3_1,3_0_1,3_1_1,3_0_0 -25382,2,54.0,0.0,6,111,1500.0,0.0,0.0,62,48,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,110395,2,2,2,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,1,829.002312073147,1500.0,51587.4345314592,1,1,0,1,110.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0290768481438104,34391.6230209728,9,5,9,9_1,9_1,9_0_0 -25383,2,51.0,0.0,8,111,597.0,1593.0,0.0,43,43,0.0,0.0,825.1580138628306,2190.0,0.0,2889.149071049986,50,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,127046,2,2,3,0,1,,344.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,845.423027047529,597.0,69895.1975594187,1,1,1,2,140.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031332624793545455,29122.998983091125,8,4,8,8_1,8_1,8_0_0 -25384,1,27.0,250.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,439.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,132939,2,2,0,0,1,,197.0,355.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1291.98047726594,0.0,5634.294493369121,0,4,2,3,45.0,4,3,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07791570009637402,5634.294493369121,1,1,1_1,1_0_1,1_1_1,1_1_0 -25385,1,69.0,127.0,2,111,630.0,0.0,0.0,0,78,0.0,0.0,870.7697633728362,630.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,115903,1,3,3,0,1,,122.0,430.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1040.37937895305,630.0,12142.07619080873,0,5,2,3,50.0,4,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05188568990177276,12142.07619080873,2,1,2_1,2_1_1,2_1_1,2_0_1 -25386,2,81.0,0.0,1,111,230.0,810.0,0.0,77,78,0.0,0.0,317.900072342464,1040.0,0.0,1469.0588496864336,44,0,0,0,0,0,0,0,0,0,,2,,1,130762,2,1,0,0,1,,111.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1062.81029203473,230.0,25813.079306330666,5,5,0,1,70.0,4,3,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.040289652685680924,17208.719537553778,4,2,4_0,4_0_0,4_1_0,4_1_0 -25387,2,29.0,0.0,1,111,230.0,400.0,0.0,0,55,0.0,0.0,317.900072342464,630.0,0.0,725.4611603389795,43,2,2,2,2,1,2,2,2,2,10.0,2,,1,102393,1,2,0,0,2,,144.0,363.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1236.80425566941,230.0,16721.456444675518,0,1,2,3,47.0,4,3,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.03767614394621743,16721.456444675518,4,2,4_0,4_0_0,4_1_0,4_1_0 -25388,2,70.0,0.0,8,111,0.0,0.0,740.0,0,77,0.0,0.0,378.07586777976854,740.0,0.0,846.0018732429473,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,105969,2,1,2,0,1,,174.0,357.0,11,0.0,1.0,3.0,1.0,1.0,2,2,808.706475765131,0.0,22897.07642272,0,5,2,3,54.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03231853649515371,22897.07642272,6,3,6,6_1,6_1,6_0_0 -25389,1,24.0,254.0,1,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2221.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,123972,2,3,0,0,2,,137.0,252.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1173.15281371147,0.0,17404.712580939675,0,4,2,3,40.0,4,3,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.12760911676486236,17404.712580939675,4,2,4_1,4_0_1,4_1_1,4_1_0 -25390,2,65.0,0.0,1,111,1700.0,0.0,0.0,71,71,0.0,0.0,2349.696186879082,2500.0,1376.2616033521533,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100133,2,1,1,0,1,,0.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,808.395019491392,1700.0,46862.443192160164,5,6,0,1,115.0,4,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05334762401842157,31241.62879477344,8,4,8,8_1,8_1,8_1_0 -25391,2,63.0,0.0,5,111,1316.0,0.0,0.0,72,72,0.0,0.0,1818.9412834899247,1390.0,127.30419831007418,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,131683,2,1,1,0,1,,1682.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,826.534875867794,1316.0,45413.96708920694,5,5,0,1,95.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030607323893761897,30275.978059471294,8,4,8,8_1,8_1,8_0_0 -25392,2,87.0,0.0,1,111,290.0,0.0,0.0,77,78,2987.1697540360015,0.0,400.8305259970199,2380.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127996,2,3,3,0,1,,120.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,837.466093811513,290.0,32684.10341161454,5,5,0,1,100.0,4,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07281827407124924,21789.40227440969,6,3,6,6_1,6_1,6_1_0 -25393,2,52.0,0.0,2,111,0.0,1500.0,0.0,0,85,0.0,0.0,0.0,3092.0,0.0,2720.4793512711735,10,2,2,2,2,1,2,2,2,0,,1,,2,119888,1,3,4,0,2,,90.0,550.0,11,0.0,0.0,7.0,1.0,1.0,2,2,1068.66952772017,0.0,33697.41632031946,0,7,2,3,120.0,4,3,5,0,1,0,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09175777663807214,33697.41632031946,9,5,9,9_1,9_1,9_0_1 -25394,1,47.0,30.0,2,111,500.0,0.0,0.0,85,65,2240.377315527001,0.0,691.0871137879653,2096.0,165.1513924022584,0.0,70,0,0,0,0,0,0,0,0,4,15.0,1,,2,124646,2,1,2,0,1,,260.0,,42,1.0,0.0,7.0,5.0,2.4,1,1,830.878544735351,500.0,33267.22843207622,6,1,1,2,120.0,4,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06300494807613848,13861.345180031758,3,2,3_1,3_1_1,3_1_1,3_0_1 -25395,1,43.0,410.0,2,111,300.0,1190.0,0.0,0,46,0.0,0.0,414.65226827277917,1490.0,0.0,2158.246952008464,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,110994,1,1,2,0,1,,236.0,550.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1060.53562456971,300.0,33970.65946910941,0,1,2,3,100.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04386137988739677,21231.66216819338,5,3,5,5_1,5_1,5_0_1 -25396,2,64.0,0.0,5,111,1957.0,0.0,0.0,74,75,0.0,0.0,2704.914963366096,1957.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,108567,2,1,2,0,1,,372.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,829.002312073147,1957.0,60408.03376752141,5,5,0,1,125.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032396353232277984,40272.02251168094,9,5,9,9_1,9_1,9_0_0 -25397,2,53.0,0.0,8,111,443.0,1233.0,0.0,42,38,0.0,0.0,612.3031828161372,3895.0,0.0,2236.2340267449044,50,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,118638,2,1,1,0,1,,298.0,,43,2.0,2.0,8.0,3.0,2.0,1,1,940.400654228897,443.0,97902.09658378751,1,1,0,1,173.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039784643392866914,48951.048291893756,10,5,10,10_1,10_1,10_0_0 -25398,2,35.0,0.0,2,111,920.0,1400.0,0.0,52,52,0.0,0.0,1271.600289369856,2320.0,0.0,2539.1140611864284,43,0,0,0,0,0,0,0,0,2,1.0,1,,2,103685,2,1,1,0,1,,278.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,808.854623617577,920.0,46623.68536627862,1,1,1,2,152.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04976011616786475,22201.754936323152,6,3,6,6_1,6_1,6_0_1 -25399,2,57.0,0.0,9,111,1000.0,0.0,0.0,85,63,0.0,51.75862524097289,1382.1742275759307,1050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,112654,2,1,1,0,1,,447.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,859.6558937746,1000.0,27150.57799627207,6,1,1,2,115.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03867320983531809,18100.385330848047,4,2,4_0,4_1_0,4_1_0,4_0_0 -25400,1,20.0,194.0,6,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,441.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,45.0,2,,4,108298,2,2,0,1,1,204.0,0.0,224.0,12,1.0,0.0,1.0,1.0,1.0,3,1,1092.85622436676,0.0,17979.29298072992,0,1,2,3,37.0,4,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.024528217014576754,17979.29298072992,4,2,4_1,4_0_1,4_1_1,4_0_0 -25401,2,58.0,0.0,5,111,1200.0,0.0,0.0,48,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,131801,2,2,2,0,1,,80.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,830.152567014421,1200.0,50840.71791393892,1,5,0,1,110.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023603128540224606,33893.81194262594,9,5,9,9_1,9_1,9_0_0 -25402,1,73.0,254.0,6,111,680.0,0.0,0.0,0,77,0.0,0.0,939.8784747516328,680.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,129537,2,2,0,0,1,,186.0,343.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1032.43414317779,680.0,7820.107077339288,0,5,2,3,60.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08695533108113951,7820.107077339288,1,1,1_1,1_0_1,1_1_1,1_0_0 -25403,2,79.0,0.0,6,111,645.0,1630.0,0.0,71,71,0.0,0.0,891.5023767864752,2275.0,0.0,2956.254228381342,60,0,0,0,0,0,0,0,0,0,,1,,4,132277,2,1,1,0,1,,206.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,860.130654134053,645.0,26938.00129243755,5,5,0,1,113.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08445318475200582,17958.667528291702,4,2,4_0,4_1_0,4_1_0,4_0_0 -25404,2,50.0,0.0,7,111,0.0,0.0,1300.0,33,62,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,121031,2,2,2,0,1,,600.0,,43,4.0,0.0,6.0,5.0,3.0,2,2,811.854291275403,0.0,76012.55306319329,1,1,0,1,90.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01710243831593501,25337.5176877311,7,4,7,7_1,7_1,7_0_0 -25405,2,35.0,0.0,8,111,0.0,0.0,0.0,33,47,0.0,0.0,0.0,2433.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,17.0,1,2003.0,6,108969,2,1,2,0,1,,678.0,650.0,43,2.0,0.0,5.0,4.0,2.1,2,2,839.728178530503,0.0,68139.29522418306,1,1,2,3,120.0,4,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03570626893036183,32447.283440087172,8,4,8,8_1,8_1,8_0_0 -25406,2,83.0,0.0,2,111,520.0,0.0,0.0,77,77,2987.1697540360015,0.0,718.7305983394839,2578.0,99.77896624303112,0.0,50,2,2,2,2,2,2,2,1,0,,1,,2,127231,1,2,5,0,2,,460.0,598.0,41,0.0,4.0,4.0,2.0,1.5,4,3,986.436351249037,520.0,39009.34876383664,5,5,2,3,85.0,4,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.06608672232923606,26006.23250922443,7,4,7,7_1,7_1,7_0_1 -25407,2,77.0,0.0,8,111,222.0,1078.0,0.0,77,78,0.0,0.0,306.84267852185656,1300.0,0.0,1955.11782711355,70,0,0,0,0,0,0,0,0,0,,2,2003.0,6,117085,2,1,0,0,1,,234.0,504.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1178.21134593384,222.0,29791.56732010244,5,5,2,3,79.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.043636509151460445,19861.044880068293,5,3,5,5_0,5_1,5_0_0 -25408,2,33.0,0.0,9,111,260.0,622.0,0.0,43,47,0.0,0.0,359.36529916974195,882.0,0.0,1128.0921043271132,70,0,0,0,0,0,0,0,0,1,10.0,2,2004.0,6,117035,2,2,0,0,1,,260.0,541.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1178.21134593384,260.0,57479.86566178336,1,1,2,3,79.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015344503503013845,38319.910441188906,9,5,9,9_0,9_1,9_0_0 -25409,2,70.0,0.0,2,111,325.0,0.0,0.0,77,46,4406.075387203102,0.0,449.20662396217745,3392.0,201.27825949025242,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,2,127581,2,2,2,0,2,,164.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,844.978880857572,325.0,72715.12939783004,5,1,0,1,140.0,4,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04664778881767656,48476.752931886695,10,5,10,10_1,10_1,10_0_1 -25410,2,81.0,0.0,2,111,260.0,920.0,0.0,0,78,0.0,0.0,359.36529916974195,1180.0,0.0,1668.560668779653,70,0,0,0,0,0,0,0,0,0,,1,,2,124357,2,3,3,0,1,,80.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,886.094888833132,260.0,15552.847099739403,0,5,0,1,60.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07587035302493082,15552.847099739403,3,2,3_0,3_1_0,3_1_0,3_0_1 -25411,2,47.0,0.0,7,111,600.0,1360.0,0.0,54,63,0.0,0.0,829.3045365455583,3693.0,0.0,2466.5679451525307,50,1,2,2,2,2,2,2,1,2,20.0,1,,5,130835,2,2,2,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,807.487132071645,600.0,60626.945107460095,1,1,1,2,130.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.060913509553453975,26359.54135106961,7,4,7,7_1,7_1,7_0_0 -25412,2,76.0,0.0,5,111,505.0,1088.0,0.0,71,71,0.0,0.0,697.9979849258449,1593.0,0.0,1973.2543561220243,60,0,0,0,0,0,0,0,0,0,,2,,3,116494,2,1,0,0,2,,204.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,1067.31313761441,505.0,23037.0,5,5,1,2,99.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06914962885792421,15358.0,3,2,3_0,3_0_0,3_1_0,3_0_0 -25413,1,90.0,151.0,5,111,360.0,1115.0,0.0,0,78,0.0,0.0,497.582721927335,1475.0,0.0,2022.2229844449055,50,0,0,0,0,0,0,0,0,0,,2,,3,102441,2,3,0,0,2,,460.0,444.0,11,0.0,3.0,5.0,1.0,1.0,1,1,1317.16655073304,360.0,12139.738692581632,0,5,2,3,70.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.12150179154196664,12139.738692581632,2,1,2_1,2_0_1,2_1_1,2_0_0 -25414,2,87.0,0.0,2,111,670.0,0.0,0.0,75,74,0.0,0.0,926.0567324758734,3644.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128663,2,1,0,0,1,,282.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1075.65841088669,670.0,70107.87914893302,5,5,0,1,80.0,4,3,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05197703944600724,46738.58609928868,10,5,10,10_0,10_1,10_0_1 -25415,1,26.0,147.0,9,111,0.0,0.0,0.0,54,63,0.0,0.0,0.0,1157.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,114854,2,2,0,0,1,,245.0,520.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1107.60911875304,0.0,39873.03187565785,1,1,2,3,67.0,4,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.029017106188665296,26582.021250438567,7,4,7,7_0,7_1,7_0_0 -25416,2,80.0,0.0,7,111,300.0,534.0,0.0,86,75,0.0,0.0,414.65226827277917,834.0,0.0,968.4906490525377,71,0,0,0,0,0,0,0,0,0,,2,,5,132680,2,1,0,0,1,,110.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1130.08447156367,300.0,49776.39677345942,5,5,0,1,100.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016754929124252835,33184.26451563961,8,4,8,8_0,8_1,8_0_0 -25417,2,32.0,0.0,9,111,560.0,350.0,0.0,63,54,0.0,0.0,774.0175674425211,910.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,132269,2,1,0,0,1,,310.0,550.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1079.66386879493,560.0,21315.397817570985,1,1,2,3,77.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04269214244971103,10150.189436938565,2,1,2_0,2_0_0,2_1_0,2_0_0 -25418,2,54.0,0.0,1,111,0.0,0.0,1890.0,0,31,0.0,0.0,965.6262028429223,1890.0,0.0,2160.7345140934735,70,0,0,0,0,0,0,0,0,1,1.0,1,,1,102235,1,1,1,0,1,,260.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,867.914824645384,0.0,18441.438374764577,0,1,1,2,90.0,4,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1024865827486804,18441.438374764577,4,2,4_0,4_1_0,4_1_0,4_1_0 -25419,2,46.0,0.0,2,111,340.0,827.0,0.0,78,68,0.0,0.0,469.9392373758164,1167.0,0.0,1499.8909490008402,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,108952,1,3,3,0,1,,249.0,320.0,42,1.0,0.0,3.0,3.0,2.0,1,1,937.670107905765,340.0,30013.542281801783,5,1,2,3,100.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0388824480976906,15006.771140900892,3,2,3_0,3_1_0,3_1_0,3_0_1 -25420,2,90.0,0.0,2,111,150.0,709.0,0.0,0,77,0.0,0.0,207.32613413638958,859.0,0.0,1285.8799067008413,10,0,0,0,0,0,0,0,0,0,,1,,2,107583,2,1,2,0,1,,146.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,897.714805138101,150.0,21564.330074135712,0,5,0,1,90.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039834300302715446,21564.330074135712,6,3,6,6_1,6_1,6_0_1 -25421,2,69.0,0.0,2,111,243.0,0.0,0.0,0,77,0.0,0.0,335.8683373009511,271.0,48.169156117325365,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,109530,2,1,0,1,1,512.0,130.0,286.0,11,0.0,4.0,3.0,1.0,1.0,2,2,1085.51562198298,243.0,18863.601354144528,0,5,2,3,65.0,4,3,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.014366291722999039,18863.601354144528,5,3,5,5_0,5_1,5_0_1 -25422,2,47.0,0.0,2,111,350.0,132.0,0.0,55,67,0.0,0.0,483.76097965157567,482.0,0.0,239.40218291186326,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,130764,2,1,0,1,1,440.0,194.0,307.0,43,2.0,0.0,3.0,4.0,2.5,1,1,938.36571316974,350.0,38648.17346117034,1,1,2,3,71.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012471482008956087,15459.269384468138,3,2,3_0,3_0_0,3_1_0,3_0_1 -25423,2,63.0,0.0,5,111,140.0,0.0,0.0,0,77,0.0,0.0,193.50439186063028,160.0,34.40654008380383,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,123154,2,2,0,1,1,504.0,45.0,306.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1022.96099084221,140.0,19988.777935072856,0,5,2,3,70.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008004491346079723,19988.777935072856,5,3,5,5_0,5_1,5_0_0 -25424,2,72.0,0.0,8,111,400.0,750.0,0.0,71,71,0.0,0.0,552.8696910303722,1150.0,0.0,1360.2396756355868,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,100399,2,1,1,0,1,,210.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,837.131596028738,400.0,28738.53433413581,5,5,0,1,120.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04001595859514738,19159.02288942387,5,3,5,5_1,5_1,5_0_0 -25425,2,73.0,0.0,2,111,400.0,0.0,0.0,77,78,2987.1697540360015,0.0,552.8696910303722,2400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,124043,2,1,2,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1683.63856960129,400.0,24748.99560874235,5,5,0,1,150.0,4,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09697363230175784,16499.330405828234,4,2,4_0,4_1_0,4_2_0,4_0_1 -25426,2,39.0,0.0,7,111,80.0,0.0,0.0,46,46,0.0,0.0,110.57393820607444,80.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,110419,2,1,1,0,1,,654.0,,43,2.0,0.0,5.0,5.0,2.4,3,3,1725.99527064407,80.0,83387.99036079268,1,1,0,1,110.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0009593707637498643,34744.99598366362,9,5,9,9_1,9_2,9_0_0 -25427,1,38.0,144.0,9,111,1721.0,0.0,0.0,85,56,0.0,0.0,2378.7218456581763,1781.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,110082,2,2,1,0,1,,564.0,660.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1824.42104991113,1721.0,28924.32678857903,7,1,2,3,72.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.061574466815360426,12051.802828574597,2,1,2_1,2_1_1,2_2_1,2_0_0 -25428,2,68.0,0.0,6,111,1200.0,0.0,0.0,75,74,0.0,455.47590212056144,1658.6090730911167,1700.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124681,2,2,5,0,1,,240.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1775.46532711298,1200.0,35799.47166081841,5,5,0,1,190.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04748673433246798,23866.314440545608,6,3,6,6_1,6_2,6_0_0 -25429,2,59.0,0.0,7,111,2280.0,0.0,0.0,75,31,0.0,0.0,3151.357238873122,2280.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,105748,2,2,2,0,1,,710.0,,42,1.0,3.0,6.0,2.0,1.5,1,1,1826.9621898109,2280.0,91048.0,6,1,0,1,162.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025041736227045076,60698.666666666664,10,5,10,10_1,10_2,10_0_0 -25430,2,43.0,0.0,9,111,1190.0,0.0,0.0,46,34,0.0,0.0,1644.7873308153573,1190.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,130650,2,1,1,0,1,,540.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1757.8629244484,1190.0,73844.2917285398,1,1,0,1,120.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016114989691750018,29537.71669141592,8,4,8,8_1,8_2,8_0_0 -25431,2,58.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,816.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,133019,2,3,0,0,1,,47.0,480.0,12,1.0,3.0,3.0,1.0,1.0,4,4,2794.06997600815,0.0,26794.52742816002,0,1,2,3,58.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03045397991018178,26794.52742816002,7,4,7,7_0,7_2,7_0_0 -25432,2,28.0,0.0,7,111,0.0,0.0,0.0,84,42,0.0,0.0,0.0,1022.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,102131,2,2,5,0,1,,252.0,490.0,42,1.0,0.0,3.0,3.0,1.8,1,1,2036.55493342466,0.0,35769.4047558603,3,1,2,3,80.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028571904032944805,19871.8915310335,5,3,5,5_1,5_2,5_0_0 -25433,2,44.0,0.0,8,111,1070.0,0.0,0.0,54,53,0.0,31.055175144583732,1478.9264235062458,1220.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,117620,2,1,1,0,1,,510.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1700.14735822953,1070.0,35218.06503286804,1,1,1,2,70.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03464131260083164,16770.50715850859,4,2,4_0,4_1_0,4_2_0,4_0_0 -25434,2,82.0,0.0,2,111,307.0,1044.0,0.0,86,78,0.0,0.0,424.32748786581067,1351.0,0.0,1893.4536284847366,50,0,0,0,0,0,0,0,0,0,,1,,2,104210,2,1,1,0,1,,234.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1717.13443108079,307.0,25377.368486596923,5,5,0,1,60.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05323641025717587,16918.24565773128,4,2,4_0,4_1_0,4_2_0,4_0_1 -25435,2,45.0,0.0,9,111,1476.0,0.0,0.0,54,38,0.0,0.0,2040.0891599020736,1476.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108520,2,1,1,0,1,,285.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,1725.99527064407,1476.0,64801.79359821582,1,1,1,2,118.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022777147329462785,24923.766768544552,7,4,7,7_1,7_2,7_0_0 -25436,2,63.0,0.0,5,111,879.0,1705.0,0.0,77,74,0.0,0.0,1214.931146039243,2584.0,0.0,3092.2781959449003,71,0,0,0,0,0,0,0,0,0,,1,,3,128995,2,1,2,0,1,,790.0,,41,0.0,3.0,9.0,2.0,1.5,4,4,1877.20342868568,879.0,51952.016957944914,5,5,0,1,150.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049738203659960775,34634.677971963276,9,5,9,9_1,9_2,9_0_0 -25437,2,35.0,0.0,9,111,530.0,860.0,0.0,43,34,0.0,0.0,732.5523406152432,1390.0,0.0,1559.741494728806,71,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,105701,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,1736.68979514513,530.0,49673.285308733546,1,1,1,2,114.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027982848151894044,23653.945385111212,6,3,6,6_1,6_2,6_0_0 -25438,2,45.0,0.0,7,111,1478.0,0.0,0.0,55,47,0.0,0.0,2042.8535083572253,1568.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,2,8.0,1,,5,109800,2,1,2,0,1,,636.0,689.0,43,2.0,0.0,5.0,4.0,2.1,1,1,1792.67035977936,1478.0,47592.586756551435,1,1,2,3,150.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03294630754198614,22663.136550738778,6,3,6,6_1,6_2,6_0_0 -25439,2,68.0,0.0,1,111,1734.0,0.0,0.0,74,75,0.0,0.0,2396.690110616664,1734.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107173,2,1,2,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1834.96588344152,1734.0,40846.68563780182,5,5,0,1,90.0,4,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04245142470984865,27231.123758534548,7,4,7,7_1,7_2,7_1_0 -25440,2,64.0,0.0,9,111,2400.0,0.0,0.0,52,78,0.0,0.0,3317.2181461822333,2540.0,240.84578058662683,0.0,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,113103,2,1,1,0,1,,388.0,,42,2.0,3.0,5.0,3.0,2.0,1,1,1962.92301711126,2400.0,61648.42286666629,1,5,1,2,144.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04120137842769364,30824.211433333145,8,4,8,8_1,8_2,8_0_0 -25441,2,54.0,0.0,6,111,1200.0,0.0,0.0,68,63,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,1,15.0,1,,4,115001,2,1,2,0,1,,230.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1834.11716425006,1200.0,45209.85986472207,1,1,0,1,110.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02853359872956842,30139.906576481382,8,4,8,8_1,8_2,8_0_0 -25442,1,26.0,252.0,9,111,900.0,0.0,0.0,47,43,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,4.0,2,2006.0,6,104998,2,1,0,0,1,,500.0,538.0,43,2.0,0.0,3.0,4.0,2.1,1,1,2341.16928778428,900.0,26174.746517057454,1,1,2,3,60.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03438428713773758,12464.165008122596,2,1,2_1,2_0_1,2_2_1,2_0_0 -25443,2,41.0,0.0,9,111,50.0,100.0,0.0,38,46,0.0,0.0,69.10871137879653,150.0,0.0,181.36529008474488,60,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,126069,2,1,1,0,1,,660.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1774.86370222912,50.0,66688.70032809481,1,1,1,2,99.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.002249256609620979,31756.523965759432,8,4,8,8_1,8_2,8_0_0 -25444,1,31.0,250.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,889.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,115775,1,2,0,0,1,,165.0,550.0,12,1.0,2.0,4.0,1.0,1.0,2,2,2986.06147475646,0.0,5972.0,0,1,2,3,85.0,4,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.148861352980576,5972.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -25445,2,63.0,0.0,5,111,600.0,0.0,0.0,77,74,2987.1697540360015,0.0,829.3045365455583,2840.0,412.878481005646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122113,2,1,2,0,1,,400.0,,41,2.0,0.0,7.0,4.0,2.5,1,1,1730.62864919296,600.0,115634.3550338285,5,5,0,1,231.0,4,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02456017503767947,46253.7420135314,10,5,10,10_1,10_2,10_0_0 -25446,2,44.0,0.0,9,111,678.0,0.0,0.0,34,31,0.0,0.0,937.1141262964809,768.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,123652,2,1,1,0,1,,440.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,1985.61465647983,678.0,172202.49887962465,1,1,1,2,140.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00445986559426677,86101.24943981232,10,5,10,10_1,10_2,10_0_0 -25447,2,77.0,0.0,2,111,1177.0,0.0,0.0,77,75,0.0,103.51725048194578,1626.8190658568703,1347.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121467,2,2,4,0,1,,220.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1717.13443108079,1177.0,29808.404581885934,5,5,0,1,40.0,4,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04518859760842582,19872.26972125729,5,3,5,5_1,5_2,5_0_1 -25448,2,45.0,0.0,5,111,380.0,800.0,0.0,42,47,0.0,0.0,525.2262064788536,1210.0,51.60981012570575,1450.922320677959,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,112851,2,1,2,0,2,,480.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1758.08624663561,380.0,52792.87774273543,4,1,1,2,130.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022919758341199768,21997.032392806428,6,3,6,6_1,6_2,6_0_0 -25449,2,70.0,0.0,6,111,756.0,0.0,0.0,0,74,0.0,310.55175144583734,1044.9237160474036,1056.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,105339,2,1,2,0,1,,340.0,,11,0.0,2.0,4.0,1.0,1.0,2,1,1984.54373554264,756.0,48051.52482060371,0,5,0,1,110.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02197640977976217,48051.52482060371,10,5,10,10_1,10_2,10_0_0 -25450,2,33.0,0.0,9,111,0.0,0.0,1800.0,46,37,0.0,51.75862524097289,919.644002707545,1850.0,0.0,2057.8423943747366,31,0,0,0,0,0,0,0,0,2,27.0,1,2005.0,6,112173,2,1,1,0,1,,550.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1704.80176064227,0.0,78766.94182715759,1,1,1,2,78.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023487010630164513,37508.067536741706,9,5,9,9_1,9_2,9_0_0 -25451,2,65.0,0.0,6,111,1738.0,0.0,0.0,52,77,0.0,0.0,2402.2188075269673,1802.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,106021,2,1,2,0,1,,416.0,,42,2.0,2.0,5.0,3.0,2.0,1,1,1925.63355062284,1738.0,64139.566534831865,1,5,0,1,190.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02809498251007667,32069.783267415933,8,4,8,8_1,8_2,8_0_0 -25452,2,57.0,0.0,6,111,219.0,0.0,0.0,78,68,0.0,0.0,302.6961558391288,219.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,116855,2,1,4,0,1,,340.0,,42,1.0,5.0,6.0,2.0,1.5,1,1,1960.82499236705,219.0,38241.58844790489,5,1,0,1,140.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0057267495647660045,25494.39229860326,7,4,7,7_1,7_2,7_0_0 -25453,1,65.0,83.0,2,111,720.0,0.0,0.0,0,78,0.0,0.0,995.16544385467,750.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132504,2,2,0,0,2,,200.0,242.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2152.25523543029,720.0,12179.132698390515,0,5,2,3,50.0,4,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.061580739661298976,12179.132698390515,2,1,2_1,2_0_1,2_2_1,2_0_1 -25454,2,55.0,0.0,8,120,720.0,0.0,0.0,52,22,0.0,0.0,995.16544385467,755.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,108977,1,1,2,0,2,520.0,240.0,320.0,43,2.0,6.0,3.0,2.0,1.5,1,1,2374.17460538158,720.0,26872.352619352765,4,1,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028095790893137833,17914.901746235177,4,2,4_0,4_1_0,4_0_0,4_0_0 -25455,2,65.0,0.0,7,120,0.0,0.0,0.0,0,74,1194.8679016144006,227.73795106028072,0.0,9189.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,130433,2,1,2,0,1,,180.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,2538.84543210243,0.0,44112.60401392238,0,5,0,1,160.0,0,0,5,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.20830781146131977,44112.60401392238,10,5,10,10_1,10_0,10_0_0 -25456,2,64.0,0.0,1,120,800.0,0.0,0.0,78,78,0.0,0.0,1105.7393820607444,890.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119692,1,2,4,0,2,,350.0,,41,1.0,4.0,5.0,3.0,2.0,2,2,2638.71548798197,800.0,29057.078339617263,5,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030629369876686748,14528.539169808631,3,2,3_0,3_1_0,3_0_0,3_1_0 -25457,2,66.0,0.0,9,120,700.0,0.0,0.0,43,75,0.0,0.0,967.5219593031513,700.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2010.0,6,129137,2,1,1,0,1,,450.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2248.38340164863,700.0,37230.128329891835,4,5,0,1,128.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01880197655504653,24820.085553261222,7,4,7,7_1,7_0,7_0_0 -25458,1,43.0,350.0,1,120,0.0,0.0,0.0,52,56,0.0,0.0,0.0,1587.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,1,100152,2,1,2,0,1,,677.0,650.0,43,2.0,0.0,4.0,3.0,1.8,1,1,2984.20009682155,0.0,19372.205338848635,4,1,2,3,115.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08192149382277411,10762.336299360353,2,1,2_1,2_1_1,2_0_1,2_1_0 -25459,2,32.0,0.0,9,120,700.0,0.0,0.0,42,42,0.0,0.0,967.5219593031513,880.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,8,2006.0,6,111724,2,1,0,0,2,,1080.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,3617.01901139843,700.0,9222.300329183945,1,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09542087858657589,5123.5001828799695,1,1,1_0,1_0_0,1_0_0,1_0_0 -25460,2,81.0,0.0,1,120,600.0,0.0,0.0,71,71,0.0,0.0,829.3045365455583,780.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126340,2,1,2,0,2,,200.0,,41,1.0,3.0,3.0,3.0,2.0,2,2,2411.40112807937,600.0,45425.73899925034,5,5,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017170881909326172,22712.86949962517,6,3,6,6_1,6_0,6_1_0 -25461,2,37.0,0.0,7,120,636.0,0.0,0.0,46,38,1493.5848770180007,0.0,879.0628087382918,1711.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,130664,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,2093.06425534449,636.0,17096.297191518068,1,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10008015073865661,8141.093900722889,1,1,1_0,1_1_0,1_0_0,1_0_0 -25462,2,57.0,0.0,6,120,1465.0,0.0,0.0,78,55,0.0,240.1600211181142,2024.8852433987383,1877.0,309.6588607542345,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,130099,2,2,2,0,1,,187.0,,42,1.0,2.0,7.0,2.0,1.5,4,3,2391.70235862666,1465.0,34225.945285172325,5,1,0,1,268.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054841436353641665,22817.29685678155,6,3,6,6_1,6_0,6_0_0 -25463,2,42.0,0.0,9,120,1500.0,0.0,0.0,52,46,0.0,207.03450096389156,2073.261341363896,1830.0,223.64251054472493,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,115807,2,1,1,0,1,,396.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,2257.80918296833,1500.0,54678.85734008099,1,1,1,2,165.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033468146355329256,22782.857225033746,6,3,6,6_1,6_0,6_0_0 -25464,2,38.0,0.0,8,120,1304.0,0.0,0.0,43,46,0.0,155.27587572291867,1802.3551927590133,1454.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,8.0,1,2002.0,6,120435,2,2,2,0,1,,432.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2151.85814842299,1304.0,55323.689324232044,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026281689051477285,26344.61396392002,7,4,7,7_1,7_0,7_0_0 -25465,2,65.0,0.0,2,120,500.0,0.0,0.0,0,78,2688.452778632401,0.0,691.0871137879653,2330.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,116032,2,2,5,0,1,,184.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2472.7072939332,500.0,27905.13886179634,0,5,0,1,113.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08349716557726568,27905.13886179634,7,4,7,7_1,7_0,7_0_1 -25466,2,82.0,0.0,8,120,1470.0,0.0,0.0,72,75,0.0,0.0,2031.796114536618,1560.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,107248,2,1,2,0,1,,380.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,2391.95652690526,1470.0,34474.50239868446,5,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04525083442711356,22983.001599122974,6,3,6,6_1,6_0,6_0_0 -25467,2,75.0,0.0,2,120,504.0,0.0,0.0,72,72,2688.452778632401,207.03450096389156,696.615810698269,2684.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127159,2,1,2,0,2,,120.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,2387.31395791621,504.0,21649.0,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12397801284123978,14432.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1 -25468,2,51.0,0.0,5,120,1500.0,0.0,0.0,55,42,0.0,0.0,2073.261341363896,1550.0,86.01635020950958,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,3,126706,2,2,1,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,2228.92273928192,1500.0,55937.216989116685,1,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027709637401188064,37291.477992744454,9,5,9,9_1,9_0,9_0_0 -25469,1,36.0,36.0,9,120,1020.0,0.0,0.0,56,63,0.0,0.0,1409.817712127449,1080.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,1,2.0,1,2008.0,6,131569,2,1,1,0,1,,283.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,2259.34605860692,1020.0,52547.78676800806,1,1,1,2,125.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02055272098838464,21894.911153336692,6,3,6,6_1,6_0,6_0_0 -25470,2,76.0,0.0,8,120,150.0,0.0,0.0,74,74,0.0,62.110350289167464,207.32613413638958,210.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,103455,2,1,2,0,1,,427.0,,41,0.0,5.0,9.0,2.0,1.5,1,1,943.583639709232,150.0,136469.63371372377,5,5,0,1,240.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.001538803866364315,90979.75580914918,10,5,10,10_1,10_0,10_0_0 -25471,2,70.0,0.0,2,120,380.0,0.0,0.0,78,78,2688.452778632401,0.0,525.2262064788536,2270.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131856,1,2,2,0,2,,400.0,,41,0.0,5.0,5.0,2.0,1.5,3,3,893.784729944542,380.0,24727.362725008934,5,5,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09180113646750332,16484.908483339288,4,2,4_0,4_1_0,4_0_0,4_0_1 -25472,2,38.0,0.0,9,120,976.0,0.0,0.0,62,43,0.0,207.03450096389156,1349.0020461141082,1176.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,103082,2,1,1,0,1,,733.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,889.355585285334,976.0,46228.40292548331,1,1,1,2,95.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025438906074597107,22013.525202611097,6,3,6,6_1,6_0,6_0_0 -25473,2,43.0,0.0,9,120,1390.0,0.0,0.0,33,22,0.0,0.0,1921.2221763305436,1390.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,108543,2,1,1,0,1,,661.0,,43,2.0,0.0,7.0,5.0,2.4,2,1,932.798974471222,1390.0,118851.70923870272,1,1,1,2,152.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011695246192953885,49521.545516126134,10,5,10,10_1,10_0,10_0_0 -25474,2,29.0,0.0,6,120,1600.0,0.0,0.0,0,63,0.0,0.0,2211.478764121489,1632.0,55.050464134086134,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,100068,2,2,2,0,1,,800.0,,22,1.0,2.0,5.0,2.0,1.5,1,1,892.546306619837,1600.0,42217.75683394531,0,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03865671988256339,28145.171222630204,8,4,8,8_1,8_0,8_0_0 -25475,2,83.0,0.0,6,120,0.0,0.0,0.0,0,75,0.0,0.0,0.0,923.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,113102,2,1,2,0,1,,291.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,886.603013126158,0.0,2779.2673661995327,0,5,0,1,60.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.3321019097425457,2779.2673661995327,1,1,1_0,1_1_0,1_0_0,1_0_0 -25477,2,72.0,0.0,1,120,340.0,0.0,0.0,0,78,0.0,0.0,469.9392373758164,1560.0,2098.798945112034,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,116919,2,2,3,0,1,,178.0,,11,0.0,0.0,3.0,1.0,1.0,3,1,939.443512303503,340.0,12132.168264145519,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12858377546660843,12132.168264145519,2,1,2_0,2_1_0,2_0_0,2_1_0 -25478,2,62.0,0.0,6,120,1253.0,0.0,0.0,85,72,0.0,207.03450096389156,1731.864307152641,1486.0,56.77079113827632,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,112326,2,1,2,0,1,,424.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,943.583639709232,1253.0,27614.99259694417,6,5,0,1,99.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05381134884549773,18409.995064629446,4,2,4_0,4_1_0,4_0_0,4_0_0 -25479,2,47.0,0.0,2,120,1080.0,0.0,0.0,68,63,0.0,0.0,1492.748165782005,1230.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,108448,1,1,3,0,2,,620.0,350.0,43,2.0,2.0,4.0,4.0,2.3,4,3,829.150997078496,1080.0,32641.215561940033,1,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.037682420180276364,14191.832853017406,3,2,3_0,3_1_0,3_0_0,3_0_1 -25480,2,51.0,0.0,2,120,444.0,0.0,0.0,54,45,1642.9433647198007,0.0,613.6853570437131,1589.0,77.41471518855863,0.0,42,1,2,2,2,1,2,2,2,2,40.0,1,,2,111232,2,1,2,0,1,,335.0,,43,2.0,3.0,3.0,2.0,1.5,1,1,1023.6772536026,444.0,42987.13733766435,1,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.03696454563881262,28658.091558442902,8,4,8,8_1,8_0,8_0_1 -25481,2,74.0,0.0,6,120,2000.0,0.0,0.0,72,72,0.0,0.0,2764.3484551518613,2120.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110382,2,1,2,0,1,,272.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,951.620231276742,2000.0,22688.36255391175,5,5,0,1,146.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09343997368529737,15125.575035941167,3,2,3_0,3_1_0,3_0_0,3_0_0 -25482,2,78.0,0.0,1,120,1009.0,0.0,0.0,0,86,0.0,0.0,1394.613795624114,1139.0,223.64251054472493,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,128393,2,2,5,0,1,,344.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,882.838608480933,1009.0,16114.757608620657,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07068055428836777,10743.171739080439,2,1,2_0,2_1_0,2_0_0,2_1_0 -25483,1,43.0,235.0,1,120,600.0,0.0,0.0,0,52,0.0,217.38622601208613,829.3045365455583,888.0,134.18550632683494,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,116045,1,3,1,0,2,,290.0,610.0,32,2.0,1.0,5.0,3.0,1.8,2,2,1075.02115321788,600.0,25336.18315335078,0,1,2,3,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.03504868885045771,14075.6573074171,3,2,3_1,3_1_1,3_0_1,3_1_0 -25484,2,44.0,0.0,7,120,0.0,0.0,0.0,0,12,0.0,0.0,0.0,970.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,104832,2,2,5,0,1,,296.0,490.0,12,1.0,2.0,3.0,1.0,1.0,1,1,958.180382449107,0.0,4989.286994544484,0,1,2,3,60.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.19441655712742978,4989.286994544484,1,1,1_0,1_1_0,1_0_0,1_0_0 -25485,1,33.0,195.0,9,120,1430.0,0.0,0.0,85,63,0.0,0.0,1976.5091454335807,1550.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,2008.0,6,102208,2,1,1,0,1,,560.0,,42,1.0,0.0,7.0,4.0,2.1,1,1,851.887095437979,1430.0,33526.077454328755,6,1,1,2,118.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0462326677527815,15964.798787775597,3,2,3_1,3_1_1,3_0_1,3_0_0 -25486,2,41.0,0.0,8,120,550.0,0.0,0.0,54,63,1792.3018524216009,0.0,760.1958251667618,1750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,103900,2,1,2,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.1,4,2,895.892912375966,550.0,45343.2927781352,1,1,1,2,182.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03859446221876194,21592.04418006438,6,3,6,6_1,6_0,6_0_0 -25487,2,71.0,0.0,8,120,0.0,0.0,0.0,0,78,0.0,331.2552015422265,0.0,1024.0,428.3614240433577,0.0,10,2,2,2,2,1,2,2,2,0,,7,2003.0,6,122665,2,2,0,0,1,,0.0,230.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1198.5326419176,0.0,14696.83278204167,0,5,2,3,28.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.06967487588558838,14696.83278204167,3,2,3_0,3_1_0,3_0_0,3_0_0 -25488,1,46.0,260.0,6,120,0.0,0.0,0.0,0,68,0.0,0.0,0.0,464.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,128529,2,2,5,0,1,,394.0,600.0,32,2.0,0.0,4.0,3.0,1.8,2,2,1204.05699568059,0.0,16180.652769524208,0,1,2,3,85.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.028676222560929717,8989.25153862456,1,1,1_1,1_1_1,1_0_1,1_0_0 -25489,2,69.0,0.0,9,120,1000.0,0.0,0.0,77,74,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,126327,2,1,1,0,1,,300.0,,41,0.0,1.0,8.0,2.0,1.5,4,2,913.627986286845,1000.0,46386.84552139393,5,5,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021557835820907312,30924.56368092929,8,4,8,8_1,8_0,8_0_0 -25490,2,81.0,0.0,2,120,480.0,0.0,0.0,86,78,2240.377315527001,207.03450096389156,663.4436292364467,2372.0,330.3027848045168,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105158,1,3,4,0,2,,96.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,951.630038352988,480.0,19738.098511102737,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12017368332951339,13158.732340735158,2,1,2_0,2_1_0,2_0_0,2_0_1 -25491,2,64.0,0.0,6,120,300.0,0.0,0.0,75,75,1389.0339356267407,103.51725048194578,414.65226827277917,1394.0,110.10092826817227,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,125366,2,1,2,0,1,,290.0,,41,0.0,5.0,8.0,2.0,1.5,2,2,988.116057015188,300.0,34920.132162084796,5,5,0,1,124.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03991966563956944,23280.08810805653,6,3,6,6_1,6_0,6_0_0 -25492,2,72.0,0.0,1,120,734.0,0.0,0.0,0,75,0.0,0.0,1014.515883040733,734.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,113887,2,1,4,0,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,4,4,975.690999233664,734.0,23279.851715068144,0,5,0,1,74.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03152941045259796,23279.851715068144,6,3,6,6_1,6_0,6_1_0 -25493,2,79.0,0.0,7,120,500.0,0.0,0.0,0,77,0.0,207.03450096389156,691.0871137879653,808.0,185.7953164525407,0.0,30,0,0,0,0,0,0,0,0,0,,2,,5,133221,2,1,0,0,1,,180.0,398.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1511.30007811929,500.0,17826.9554916769,0,5,2,3,50.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.045324620930211064,17826.9554916769,4,2,4_0,4_0_0,4_0_0,4_0_0 -25494,2,66.0,0.0,5,120,2530.0,0.0,0.0,0,74,0.0,0.0,3496.9007957671042,2590.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,100678,2,2,3,0,1,,400.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1105.15108615486,2530.0,45291.92289139287,0,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.057184589097942565,45291.92289139287,10,5,10,10_1,10_0,10_0_0 -25495,1,43.0,98.0,9,120,1023.0,0.0,0.0,0,68,0.0,0.0,1413.964234810177,1083.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,121782,2,1,1,0,1,,220.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1058.40292854887,1023.0,14863.309218442137,0,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07286398904062578,14863.309218442137,3,2,3_1,3_1_1,3_0_1,3_0_0 -25496,2,49.0,0.0,5,120,1442.0,0.0,0.0,85,62,0.0,517.5862524097289,1993.0952361644918,2002.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,100263,2,1,2,0,1,,590.0,,42,1.0,1.0,4.0,4.0,2.5,6,5,845.724903573525,1442.0,87796.4049062958,6,4,1,2,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02280275601417523,35118.56196251832,9,5,9,9_1,9_0,9_0_0 -25497,2,46.0,0.0,7,120,0.0,0.0,0.0,54,21,0.0,0.0,0.0,2562.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,110264,2,1,1,0,1,,277.0,,43,3.0,1.0,5.0,4.0,2.3,2,2,862.882288457799,0.0,67712.39060864112,1,1,1,2,110.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037836501960293374,29440.169829843966,8,4,8,8_1,8_0,8_0_0 -25498,2,30.0,0.0,9,120,1666.0,0.0,0.0,52,48,0.0,0.0,2302.7022631415,1666.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,129967,2,1,1,0,1,,255.0,690.0,43,2.0,0.0,5.0,4.0,2.1,1,1,1022.28750750642,1666.0,43780.78628979763,1,1,2,3,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03805322245635943,20847.993471332204,5,3,5,5_1,5_0,5_0_0 -25499,2,67.0,0.0,6,120,550.0,0.0,0.0,86,74,1866.981096272501,93.1655254337512,760.1958251667618,1950.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112990,2,1,3,0,1,,304.0,,41,0.0,2.0,7.0,2.0,1.5,4,3,893.784729944542,550.0,52447.35692534545,5,5,0,1,130.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037180138605948564,34964.904616896965,9,5,9,9_1,9_0,9_0_0 -25500,2,82.0,0.0,1,120,1495.0,0.0,0.0,86,74,2987.1697540360015,0.0,2066.350470226016,3559.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109446,1,2,4,0,2,,200.0,,41,0.0,4.0,10.0,2.0,1.5,2,2,980.265253990968,1495.0,97238.44448799649,5,5,0,1,400.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036600750029884915,64825.62965866432,10,5,10,10_1,10_0,10_1_0 -25501,2,61.0,0.0,6,400,2500.0,0.0,0.0,0,52,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,20,2,2,2,2,1,2,2,2,1,5.0,1,,4,107061,2,2,3,0,1,,400.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,903.986046531207,2500.0,24551.56088991707,0,1,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.10182651975609053,24551.56088991707,7,4,7,7_1,7_0,7_0_0 -25502,1,58.0,120.0,9,400,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1129.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2005.0,6,110431,2,1,2,0,2,,203.0,428.0,12,1.0,3.0,2.0,1.0,1.0,3,2,838.455144280386,0.0,11777.745058417255,0,4,2,3,52.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09585875686731157,11777.745058417255,2,1,2_1,2_1_1,2_0_1,2_0_0 -25503,2,77.0,0.0,5,400,748.0,0.0,0.0,72,72,3911.6987929101438,0.0,1033.866322226796,3542.0,301.05722573328353,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111903,1,1,2,0,2,,673.0,,41,0.0,4.0,7.0,2.0,1.5,5,4,959.058386833782,748.0,40792.52847149085,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08682962622617127,27195.0189809939,7,4,7,7_1,7_0,7_0_0 -25504,2,60.0,0.0,1,400,1200.0,0.0,0.0,77,63,0.0,0.0,1658.6090730911167,1305.0,180.63433543997013,0.0,43,0,0,0,0,0,0,0,0,3,40.0,1,,1,126755,2,1,2,0,2,,400.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,827.024505869952,1200.0,38778.003047377926,5,1,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03365309962984907,25852.002031585285,7,4,7,7_1,7_0,7_1_0 -25505,2,60.0,0.0,1,400,1180.0,0.0,0.0,0,34,0.0,0.0,1630.965588539598,1220.0,68.81308016760767,0.0,44,0,0,0,0,0,0,0,0,2,80.0,1,,1,107780,2,1,2,0,1,,196.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,935.441765356807,1180.0,44299.53455321511,0,1,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027539792738329266,44299.53455321511,10,5,10,10_1,10_0,10_1_0 -25506,2,85.0,0.0,1,400,922.0,0.0,0.0,78,75,0.0,0.0,1274.364637825008,992.0,120.42289029331342,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,105647,2,2,2,0,2,,320.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,812.939019417789,922.0,31617.527466858694,5,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03137500239510533,21078.351644572464,5,3,5,5_1,5_0,5_1_0 -25507,2,42.0,0.0,8,400,450.0,0.0,0.0,56,22,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,109386,2,1,2,0,1,,180.0,350.0,43,2.0,0.0,3.0,3.0,2.0,2,2,1075.06922314993,450.0,71691.51761494938,1,1,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006276893208160575,35845.75880747469,9,5,9,9_1,9_0,9_0_0 -25508,2,77.0,0.0,2,400,700.0,0.0,0.0,77,78,970.8301700617004,0.0,967.5219593031513,1525.0,301.05722573328353,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112229,2,1,2,0,1,,203.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,901.229539995891,700.0,28780.9431867187,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052986449752756154,19187.295457812466,5,3,5,5_1,5_0,5_0_1 -25509,2,77.0,0.0,2,400,330.0,0.0,0.0,86,78,3285.8867294396014,0.0,456.1174951000571,2705.0,301.05722573328353,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100574,2,1,2,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,951.620231276742,330.0,19997.431826847285,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13526736950133958,13331.62121789819,3,2,3_0,3_1_0,3_0_0,3_0_1 -25510,0,27.0,0.0,2,221,517.0,0.0,0.0,42,62,3285.8867294396014,0.0,714.5840756567561,2777.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,118448,2,1,1,0,1,,327.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1517.38305269201,517.0,41563.09110432401,1,1,5,0,100.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0668140873600976,19791.948144916194,5,3,5,5_1,5_1,5_0_1 -25511,2,43.0,0.0,2,221,1700.0,0.0,0.0,0,62,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,117541,2,2,1,0,1,,170.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1648.96044868921,1700.0,21309.330498038118,0,1,1,2,69.0,1,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07977726002027673,21309.330498038118,6,3,6,6_1,6_1,6_0_1 -25512,2,68.0,0.0,9,221,463.0,0.0,0.0,0,75,1651.9048739819088,0.0,639.9466673676559,1569.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,118664,2,1,1,0,1,,365.0,,11,0.0,0.0,7.0,1.0,1.0,3,3,1614.08104092557,463.0,35306.05136947546,0,5,0,1,120.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04443997386115259,35306.05136947546,9,5,9,9_1,9_1,9_0_0 -25513,1,37.0,20.0,2,221,800.0,0.0,0.0,85,63,1493.5848770180007,258.79312620486445,1105.7393820607444,2110.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108837,2,1,2,0,2,,500.0,470.0,42,1.0,0.0,6.0,5.0,2.4,1,1,1541.41912614665,800.0,28368.189080773194,6,1,2,3,85.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07437908687058464,11820.078783655497,2,1,2_1,2_1_1,2_1_1,2_0_1 -25514,2,59.0,0.0,7,221,680.0,0.0,0.0,0,54,0.0,0.0,939.8784747516328,740.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,127441,2,1,0,0,1,,100.0,360.0,12,1.0,3.0,3.0,1.0,1.0,3,1,2552.66034834179,680.0,10988.169685613982,0,1,2,3,75.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06734515585146347,10988.169685613982,2,1,2_0,2_0_0,2_1_0,2_0_0 -25515,1,25.0,59.0,7,221,199.5,0.0,0.0,0,22,1606.3505352328598,0.0,275.74375840139817,1337.0,106.66027425979189,0.0,71,1,2,2,1,1,2,2,2,0,,2,,5,100203,2,1,0,1,1,,91.0,527.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2146.60851024097,199.5,4985.055800245205,0,1,2,3,102.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.26820161169193646,4985.055800245205,1,1,1_1,1_0_1,1_1_1,1_0_0 -25516,2,50.0,0.0,1,221,1100.0,0.0,0.0,37,90,1941.6603401234008,212.21036348798884,1520.3916503335236,2605.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,180.0,1,,1,109343,2,1,1,0,1,,980.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1560.86185812039,1100.0,87930.89220469556,1,1,1,2,245.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02962553813210247,31403.89007310556,8,4,8,8_1,8_1,8_1_0 -25517,2,69.0,0.0,2,221,290.0,0.0,0.0,77,75,1583.1999696390808,103.51725048194578,400.8305259970199,1540.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111270,2,2,2,0,1,,492.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1643.25046206968,290.0,80516.15484898437,5,5,0,1,115.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019126596431342444,53677.43656598958,10,5,10,10_1,10_1,10_0_1 -25518,2,30.0,0.0,1,221,0.0,0.0,0.0,0,63,0.0,0.0,0.0,504.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,1.0,2,,1,108998,2,1,0,0,2,,216.0,380.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2117.39001554314,0.0,17064.97159249044,0,1,2,3,50.0,1,1,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02953418335731591,17064.97159249044,4,2,4_0,4_0_0,4_1_0,4_1_0 -25519,2,77.0,0.0,2,221,437.0,0.0,0.0,77,72,3052.8874886247936,0.0,604.0101374506817,2601.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,102840,2,2,1,0,2,,318.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,1620.0726760261,437.0,29443.874341719827,5,5,0,1,120.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08833755944660354,19629.249561146553,5,3,5,5_1,5_1,5_0_1 -25520,2,71.0,0.0,6,221,1564.0,0.0,0.0,0,77,0.0,0.0,2161.7204919287556,1594.0,51.60981012570575,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,124259,2,1,2,0,1,,310.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1612.97045690788,1564.0,15779.603829564549,0,5,0,1,105.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1010164778036755,15779.603829564549,3,2,3_0,3_1_0,3_1_0,3_0_0 -25521,2,64.0,0.0,1,221,600.0,0.0,0.0,0,78,0.0,72.46207533736204,829.3045365455583,730.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,105435,2,1,0,0,2,,400.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,2033.10840630792,600.0,13452.198254617613,0,5,0,1,67.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.054266223719191736,13452.198254617613,3,2,3_0,3_0_0,3_1_0,3_1_0 -25522,2,76.0,0.0,2,221,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2819.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130329,1,3,4,0,2,,167.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1785.85995251643,0.0,11588.098864467282,0,5,2,3,80.0,1,1,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.24326682339964595,11588.098864467282,2,1,2_0,2_1_0,2_1_0,2_0_1 -25523,0,63.0,0.0,7,221,746.3,0.0,0.0,55,21,0.0,0.0,1031.516626039917,746.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,122358,2,1,2,0,1,,220.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1737.07391463722,746.3,41521.0,1,1,5,0,200.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017966811974663422,27680.666666666668,7,4,7,7_1,7_1,7_0_0 -25524,1,28.0,280.0,6,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1980.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,4,129416,2,1,3,0,1,,240.0,500.0,32,1.0,1.0,5.0,2.0,1.3,1,1,1184.60975567298,0.0,15475.57059288383,0,1,2,3,88.0,1,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.1279435861906422,11904.2850714491,2,1,2_1,2_1_1,2_1_1,2_0_0 -25525,2,69.0,0.0,1,221,519.0,0.0,0.0,72,74,0.0,207.03450096389156,717.348424111908,1719.0,1720.3270041901917,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,127655,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1608.33346742696,519.0,42496.121509680095,5,5,0,1,140.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04045075030219953,28330.747673120062,8,4,8,8_1,8_1,8_1_0 -25526,2,70.0,0.0,2,221,960.0,0.0,0.0,0,72,3733.962192545002,0.0,1326.8872584728933,3460.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,,2,101637,1,1,1,0,2,,600.0,,11,0.0,0.0,7.0,1.0,1.0,2,2,1783.21176793172,960.0,12699.487148969634,0,5,0,1,180.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.27245194702848496,12699.487148969634,2,1,2_0,2_1_0,2_1_0,2_0_1 -25527,2,37.0,0.0,9,221,800.0,0.0,0.0,42,42,1792.3018524216009,0.0,1105.7393820607444,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2010.0,6,126562,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1718.51413099846,800.0,33853.3448534472,4,2,1,2,120.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05907835720984437,18807.413807470664,5,3,5,5_1,5_1,5_0_0 -25528,2,76.0,0.0,2,221,417.0,0.0,0.0,77,75,3164.9063544011433,0.0,576.366652899163,2626.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,109022,1,2,4,0,2,,329.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1439.39324077773,417.0,36496.4741050213,5,5,0,1,70.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07195215604782783,24330.982736680864,7,4,7,7_1,7_1,7_0_1 -25529,0,77.0,0.0,2,221,800.0,0.0,0.0,74,74,4480.754631054002,207.03450096389156,1105.7393820607444,4120.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101223,2,2,1,0,1,,420.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,1667.26880021226,800.0,79141.73766142223,5,5,0,1,210.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05205849810407057,52761.15844094815,10,5,10,10_1,10_1,10_0_1 -25530,2,63.0,0.0,5,221,326.0,0.0,0.0,78,77,2494.286744620061,0.0,450.58879818975333,2086.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100102,1,2,3,0,2,,273.0,,41,0.0,4.0,4.0,2.0,1.5,3,2,1561.23676762595,326.0,41115.80190554332,5,5,0,1,90.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050734751684820265,27410.534603695545,7,4,7,7_1,7_1,7_0_0 -25531,2,53.0,0.0,7,221,1700.0,0.0,0.0,46,38,0.0,113.86897553014036,2349.696186879082,1871.0,104.9399472556017,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,121491,2,1,3,0,1,,450.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,1718.2559327733,1700.0,59622.080664513196,1,1,1,2,130.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03138099139021847,29811.040332256598,8,4,8,8_1,8_1,8_0_0 -25532,2,25.0,0.0,2,221,516.0,1433.0,0.0,0,67,0.0,0.0,713.2019014291802,1949.0,0.0,2598.964606914394,50,1,2,2,1,1,2,2,2,2,25.0,1,,2,125550,2,2,1,0,1,,207.0,338.0,12,1.0,0.0,4.0,1.0,1.0,3,3,1410.41076640062,516.0,16616.925657750042,0,1,2,3,78.0,1,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.11729004751796535,16616.925657750042,4,2,4_0,4_1_0,4_1_0,4_0_1 -25533,2,55.0,0.0,7,221,1498.0,0.0,0.0,62,69,0.0,0.0,2070.496992908744,1558.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,125182,2,2,1,0,1,,434.0,,43,3.0,4.0,4.0,3.0,2.0,2,2,1552.45974126937,1498.0,45403.27491394266,1,1,1,2,70.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03431470533685141,22701.63745697133,6,3,6,6_1,6_1,6_0_0 -25534,2,66.0,0.0,5,221,800.0,0.0,0.0,77,74,0.0,0.0,1105.7393820607444,2900.0,3612.6867087994024,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,120719,2,2,1,0,1,,150.0,,41,0.0,3.0,6.0,2.0,1.5,3,2,1453.25054782277,800.0,28207.36973903777,5,5,0,1,120.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10281001124278973,18804.913159358515,5,3,5,5_1,5_1,5_0_0 -25535,2,37.0,0.0,8,221,1110.0,0.0,0.0,84,63,0.0,45.54759021205614,1534.213392609283,1214.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,1,10.0,1,2003.0,6,113669,2,1,1,0,1,,530.0,395.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1345.49961218388,1110.0,25222.60808443146,3,1,2,3,70.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048131422251663815,14012.560046906367,3,2,3_0,3_1_0,3_1_0,3_0_0 -25536,1,22.0,254.0,7,221,300.0,0.0,0.0,0,43,0.0,0.0,414.65226827277917,300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,7.0,2,,5,132923,2,2,0,0,1,,150.0,255.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2330.56584756076,300.0,17254.0,0,1,2,3,35.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01738727251651791,17254.0,4,2,4_1,4_0_1,4_1_1,4_0_0 -25537,2,43.0,0.0,8,221,610.0,0.0,0.0,43,34,2001.403735204121,517.5862524097289,843.1262788213177,2510.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,114089,2,1,1,0,1,,829.0,,43,2.0,0.0,8.0,5.0,2.4,3,3,1503.28241092243,610.0,72853.97576017925,1,1,1,2,163.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03445247803994142,30355.823233408024,8,4,8,8_1,8_1,8_0_0 -25538,2,67.0,0.0,5,221,639.0,0.0,0.0,77,78,1357.6686532093627,0.0,883.2093314210197,1638.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,114147,2,2,2,0,1,,286.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1508.93876869045,639.0,33952.30974775729,5,5,0,1,125.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04824414044785857,22634.873165171524,6,3,6,6_1,6_1,6_0_0 -25539,2,80.0,0.0,2,221,263.0,0.0,0.0,77,72,2240.377315527001,0.0,363.5118218524697,1883.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,121705,2,2,2,0,1,,310.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1452.1941918468,263.0,28295.99511968036,5,5,0,1,110.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06654651981793497,18863.996746453573,5,3,5,5_1,5_1,5_0_1 -25540,2,75.0,0.0,9,221,1079.0,0.0,0.0,77,75,0.0,0.0,1491.365991554429,1079.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,108024,1,2,0,0,1,,415.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,2052.41554893334,1079.0,29579.250535459094,5,5,0,1,82.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03647827380570422,19719.50035697273,5,3,5,5_0,5_1,5_0_0 -25541,2,62.0,0.0,2,111,160.0,790.0,0.0,0,75,0.0,0.0,221.1478764121489,950.0,0.0,1432.7857916694845,50,0,0,0,0,0,0,0,0,0,,2,,2,112404,2,3,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1475.06194419143,160.0,21084.587527578653,0,5,1,2,74.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04505660823373469,21084.587527578653,5,3,5,5_0,5_2,5_0_1 -25542,1,43.0,372.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,434.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,118967,2,2,0,0,1,,0.0,590.0,32,1.0,0.0,4.0,4.0,2.1,1,1,1450.09427299406,0.0,25306.509011228907,0,1,2,3,96.0,8,6,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.01714973803014186,12050.71857677567,2,1,2_1,2_0_1,2_2_1,2_1_0 -25543,2,36.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,708.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116971,1,3,0,0,1,,0.0,440.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1711.47155656409,0.0,10641.318920444717,0,1,2,3,59.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06653310602689949,10641.318920444717,2,1,2_0,2_0_0,2_2_0,2_0_1 -25545,2,83.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1227.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,123390,2,2,2,0,1,,250.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1271.25432285559,0.0,62332.901899352706,0,5,0,1,95.0,8,6,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019684628223810348,62332.901899352706,10,5,10,10_1,10_2,10_1_0 -25546,2,40.0,0.0,6,111,400.0,600.0,0.0,0,43,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,4,113398,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1476.49859396711,400.0,53484.30687192854,0,1,0,1,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018697073188114068,53484.30687192854,10,5,10,10_0,10_2,10_0_0 -25547,2,90.0,0.0,2,111,284.0,465.0,0.0,0,78,0.0,0.0,392.5374806315643,749.0,0.0,843.3485988940637,50,0,0,0,0,0,0,0,0,0,,2,,2,121250,2,1,0,1,2,,0.0,,21,0.0,3.0,4.0,2.0,1.5,2,2,1439.65880467087,284.0,33864.661416627605,0,5,0,1,80.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0221174513096487,22576.440944418402,6,3,6,6_0,6_2,6_0_1 -25548,2,56.0,0.0,9,111,550.0,250.0,0.0,85,52,0.0,248.44140115666985,760.1958251667618,1040.0,0.0,453.4132252118622,71,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,102938,2,1,1,0,1,,200.0,,42,1.0,1.0,5.0,4.0,2.1,1,1,1037.57180234741,550.0,33661.907235889965,5,1,0,1,85.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030895456775876417,16029.479636138078,4,2,4_0,4_1_0,4_2_0,4_0_0 -25550,0,27.0,0.0,2,111,376.0,311.0,0.0,0,43,0.0,0.0,519.6975095685499,687.0,0.0,564.0460521635566,44,0,0,0,0,0,0,0,0,2,5.0,2,,2,132152,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1668.80285837473,376.0,27956.175696466402,0,1,5,0,55.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0245741766491629,27956.175696466402,7,4,7,7_0,7_2,7_0_1 -25551,2,82.0,0.0,2,111,193.0,452.0,0.0,0,72,0.0,0.0,266.7596259221546,645.0,0.0,819.7711111830469,50,0,0,0,0,0,0,0,0,0,,1,,2,109616,2,2,2,0,1,,118.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1141.30765675826,193.0,19455.904920828827,0,6,0,1,140.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0331518889830452,19455.904920828827,5,3,5,5_1,5_2,5_0_1 -25552,2,32.0,0.0,5,111,370.0,540.0,0.0,0,45,0.0,0.0,511.40446420309434,910.0,0.0,979.3725664576224,10,0,0,0,0,0,0,0,0,2,80.0,2,,3,117527,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1408.92658835245,370.0,20255.68395415926,0,1,1,2,65.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04492566146171245,20255.68395415926,5,3,5,5_0,5_2,5_0_0 -25553,1,56.0,271.0,6,111,600.0,0.0,0.0,0,72,0.0,62.110350289167464,829.3045365455583,660.0,0.0,0.0,43,2,2,2,1,1,1,2,1,0,,2,,4,113030,2,1,0,0,1,,180.0,337.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1845.8630690429,600.0,5379.9817679396865,0,7,2,3,60.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0.12267699566066616,5379.9817679396865,1,1,1_1,1_0_1,1_2_1,1_0_0 -25554,2,47.0,0.0,1,111,740.0,570.0,0.0,0,34,0.0,0.0,1022.8089284061887,1310.0,0.0,1033.782153483046,12,0,0,0,0,0,0,0,0,2,20.0,2,,1,102413,2,1,0,0,1,,400.0,563.0,12,1.0,1.0,5.0,1.0,1.0,2,2,1682.83167660846,740.0,31195.847988314505,0,1,2,3,58.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04199276777123373,31195.847988314505,8,4,8,8_0,8_2,8_1_0 -25555,2,61.0,0.0,5,111,535.0,900.0,0.0,77,63,0.0,0.0,739.4632117531229,1435.0,0.0,1632.287610762704,60,0,0,0,0,0,0,0,0,0,,1,,3,123170,2,3,4,0,1,,942.0,441.0,42,2.0,3.0,5.0,4.0,2.5,2,2,1023.26825173302,535.0,28878.903135361023,6,1,2,3,96.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049690252890626646,11551.56125414441,2,1,2_0,2_1_0,2_2_0,2_0_0 -25556,1,71.0,300.0,2,111,400.0,500.0,0.0,72,86,0.0,0.0,552.8696910303722,900.0,0.0,906.8264504237244,50,2,1,2,2,1,2,2,2,0,,2,,2,131557,1,2,0,1,2,612.0,500.0,330.0,41,0.0,6.0,4.0,2.0,1.5,1,1,351.100929048504,400.0,8127.858312814936,5,5,2,3,80.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.11073027670536513,5418.572208543291,1,1,1_1,1_0_1,1_2_1,1_0_1 -25558,2,58.0,0.0,6,111,356.0,743.0,0.0,56,64,0.0,0.0,492.0540250170313,1099.0,0.0,1347.5441053296545,70,0,0,0,0,0,0,0,0,0,,1,,4,114387,1,2,2,0,1,,210.0,506.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1026.40032070047,356.0,32734.91863472099,4,1,2,3,86.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03357271213236871,21823.279089813994,6,3,6,6_1,6_2,6_0_0 -25559,1,26.0,255.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,644.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,133688,2,3,0,1,1,204.0,0.0,248.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1260.13422111512,0.0,9107.220998889756,0,7,2,3,46.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07071311875252713,9107.220998889756,1,1,1_1,1_0_1,1_2_1,1_0_0 -25560,2,36.0,0.0,5,111,360.0,0.0,0.0,0,62,0.0,0.0,497.582721927335,360.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,3,124212,1,1,0,1,2,,300.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,413.687852741321,360.0,24280.468344399942,0,1,0,1,48.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014826732124507415,24280.468344399942,7,4,7,7_0,7_2,7_0_0 -25561,1,63.0,76.0,2,111,73.0,96.0,0.0,0,78,0.0,0.0,100.89871861304293,169.0,0.0,174.11067848135508,71,2,1,2,2,2,2,2,1,0,,2,,2,101386,2,1,0,1,1,305.0,60.0,194.0,11,0.0,0.0,1.0,1.0,1.0,2,2,431.339000579633,73.0,11004.030119236035,0,5,2,3,74.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.0153580095809237,11004.030119236035,2,1,2_1,2_0_1,2_2_1,2_0_1 -25562,2,56.0,0.0,2,111,410.0,820.0,0.0,0,21,0.0,0.0,566.6914333061316,1230.0,0.0,1487.1953786949082,70,0,0,0,0,0,0,0,0,0,,1,,2,129913,2,2,2,0,1,,350.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1234.27752924068,410.0,17604.64358593751,0,1,0,1,130.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06986792967410696,17604.64358593751,4,2,4_0,4_1_0,4_2_0,4_0_1 -25563,2,43.0,0.0,2,111,470.0,904.0,0.0,34,45,0.0,124.22070057833493,649.6218869606873,1494.0,0.0,1639.5422223660937,70,0,0,0,0,0,0,0,0,2,5.0,1,,2,109018,1,1,2,0,1,,362.0,,43,2.0,0.0,7.0,4.0,2.3,4,4,1060.60148462275,470.0,50640.35393273898,1,1,1,2,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02950216347192884,22017.545188147385,6,3,6,6_1,6_2,6_0_1 -25564,2,54.0,0.0,1,111,310.0,1000.0,0.0,0,56,0.0,0.0,428.47401054853844,1310.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,1,106799,2,1,4,0,1,,290.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1082.86169948025,310.0,13003.76727346392,0,1,1,2,75.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10074003728698265,13003.76727346392,2,1,2_0,2_1_0,2_2_0,2_1_0 -25565,2,86.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1765.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,103683,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1518.10260673269,0.0,41736.025444805564,0,5,0,1,80.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04228960427327108,41736.025444805564,9,5,9,9_0,9_2,9_0_1 -25566,2,55.0,0.0,1,111,0.0,0.0,3000.0,31,35,0.0,258.79312620486445,1532.740004512575,3250.0,0.0,3429.737323957894,60,2,2,2,2,1,2,2,2,2,5.0,1,,1,106000,2,3,2,0,1,,1000.0,,43,2.0,1.0,10.0,7.0,3.8,2,2,1165.66298882823,0.0,46329.24719775652,1,1,0,1,220.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.07015007142523524,12191.90715730435,2,1,2_0,2_1_0,2_2_0,2_1_0 -25567,2,57.0,0.0,2,111,730.0,0.0,0.0,0,56,0.0,0.0,1008.9871861304293,790.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,2,2.0,1,,2,102195,2,2,3,0,1,,200.0,,32,3.0,1.0,7.0,3.0,2.0,3,2,1144.66931844959,730.0,40970.05672472312,0,1,0,1,111.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019282375060107725,20485.02836236156,5,3,5,5_1,5_2,5_0_1 -25568,2,85.0,0.0,9,111,840.0,0.0,0.0,0,75,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,121970,2,1,0,0,1,,171.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1452.92040521534,840.0,34141.7036051811,0,5,0,1,72.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02460334169946129,34141.7036051811,9,5,9,9_0,9_2,9_0_0 -25569,2,61.0,0.0,2,111,220.0,460.0,0.0,0,56,0.0,0.0,304.0783300667047,680.0,0.0,834.2803343898265,50,0,0,0,0,0,0,0,0,0,,2,,2,131943,1,1,0,0,2,,0.0,431.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1711.47155656409,220.0,15272.072844936341,0,1,2,3,63.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.044525717425808575,15272.072844936341,3,2,3_0,3_0_0,3_2_0,3_0_1 -25570,2,67.0,0.0,2,111,0.0,0.0,697.0,0,77,0.0,0.0,356.106594381755,697.0,0.0,796.8423049328841,70,2,2,2,2,1,2,2,2,0,,2,,2,127006,1,2,0,1,1,390.0,55.0,348.0,11,0.0,5.0,2.0,1.0,1.0,2,2,1322.40410824492,0.0,29414.942979552878,0,5,2,3,53.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.023695439439896368,29414.942979552878,8,4,8,8_0,8_2,8_0_1 -25571,1,43.0,369.0,1,111,390.0,800.0,0.0,0,85,0.0,129.39656310243222,539.0479487546129,1315.0,0.0,1450.922320677959,20,1,2,2,2,1,2,2,2,0,,2,,1,119400,1,1,0,0,2,,500.0,550.0,31,0.0,0.0,3.0,2.0,1.5,1,1,1555.1377313554,390.0,10132.33529865358,0,7,2,3,64.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.1297825191567379,6754.890199102386,1,1,1_1,1_0_1,1_2_1,1_1_0 -25572,2,79.0,0.0,9,111,1100.0,0.0,0.0,77,75,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,124543,2,1,0,0,1,,320.0,550.0,41,0.0,4.0,3.0,2.0,1.5,1,1,1524.61454228966,1100.0,51006.55735849361,5,5,2,3,63.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021565854607061185,34004.37157232907,9,5,9,9_0,9_2,9_0_0 -25573,2,43.0,0.0,8,120,680.0,0.0,0.0,54,63,0.0,103.51725048194578,939.8784747516328,1620.0,1445.074683519761,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,100565,2,1,2,0,1,,150.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1234.52980714048,680.0,37807.91492183905,1,1,1,2,151.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04284817090149123,18003.76901039955,4,2,4_0,4_1_0,4_1_0,4_0_0 -25574,2,47.0,0.0,9,120,500.0,0.0,0.0,0,46,0.0,155.27587572291867,691.0871137879653,650.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,128322,2,1,1,0,1,,349.0,,12,1.0,1.0,7.0,1.0,1.0,2,2,1091.13178879209,500.0,31993.47056836915,0,1,0,1,116.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020316645504618456,31993.47056836915,8,4,8,8_1,8_1,8_0_0 -25575,2,77.0,0.0,6,120,1338.0,0.0,0.0,0,77,0.0,0.0,1849.3491164965951,1458.0,206.439240502823,0.0,43,2,2,2,1,2,2,2,2,0,,1,,4,108500,1,2,2,0,1,,412.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1449.00056084632,1338.0,15304.893221254333,0,5,0,1,130.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.09526365058040619,15304.893221254333,3,2,3_0,3_1_0,3_1_0,3_0_0 -25576,2,83.0,0.0,5,120,1512.0,0.0,0.0,86,74,0.0,0.0,2089.847432094807,1532.0,34.40654008380383,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,116124,2,1,1,0,1,,360.0,,41,0.0,2.0,7.0,2.0,1.5,4,3,1281.94363683244,1512.0,66605.33532673084,6,5,0,1,155.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023001160379792572,44403.556884487225,10,5,10,10_1,10_1,10_0_0 -25577,2,33.0,0.0,7,120,1200.0,0.0,0.0,42,43,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,2,2,2,2,2,2,2,1,2,15.0,2,,5,123476,1,3,0,0,1,,540.0,750.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1652.00328820647,1200.0,41079.19632879958,1,1,2,3,110.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.029211866522293923,19561.522061333133,5,3,5,5_0,5_1,5_0_0 -25579,1,65.0,148.0,5,120,365.0,0.0,0.0,0,75,0.0,310.55175144583734,504.49359306521467,725.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,131165,2,2,0,0,1,,290.0,515.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1769.07893595979,365.0,10629.365000692369,0,5,2,3,50.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06820727296059317,10629.365000692369,2,1,2_1,2_0_1,2_1_1,2_0_0 -25580,2,62.0,0.0,7,120,424.0,0.0,0.0,72,78,0.0,77.63793786145933,586.0418724921946,1671.0,2016.2232489109047,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,102919,2,1,1,0,1,,323.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,1226.81607714677,424.0,39291.53009774683,5,5,0,1,224.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042528249621305116,26194.353398497886,7,4,7,7_1,7_1,7_0_0 -25581,2,52.0,0.0,1,120,680.0,0.0,0.0,0,12,0.0,103.51725048194578,939.8784747516328,2180.0,2408.4578058662682,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,102763,2,2,2,0,1,,210.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1247.28405819502,680.0,52091.29022026519,0,1,1,2,60.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04184960654232192,52091.29022026519,10,5,10,10_1,10_1,10_1_0 -25582,2,37.0,0.0,2,120,869.0,0.0,0.0,21,42,0.0,51.75862524097289,1201.1094037634837,919.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,124885,2,2,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1165.7694150937,869.0,44836.382942386444,1,1,1,2,110.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020496747054303877,21350.658543993544,6,3,6,6_1,6_1,6_0_1 -25583,2,70.0,0.0,6,120,833.0,0.0,0.0,0,75,0.0,0.0,1151.35113157075,1542.0,86.01635020950958,0.0,12,2,2,2,2,1,2,2,2,0,,1,,4,107448,2,1,3,0,1,,323.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1369.40447809304,833.0,14809.537478228265,0,5,1,2,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.1041220903939045,14809.537478228265,3,2,3_0,3_1_0,3_1_0,3_0_0 -25584,2,63.0,0.0,7,120,1776.0,0.0,0.0,63,74,0.0,0.0,2454.7414281748524,1776.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,131131,2,1,2,0,1,,305.0,,42,2.0,6.0,4.0,3.0,2.0,2,2,1355.46173394824,1776.0,47344.63339929991,1,5,0,1,82.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03751217133780281,23672.316699649957,6,3,6,6_1,6_1,6_0_0 -25585,2,50.0,0.0,1,120,1250.0,0.0,0.0,46,54,2987.1697540360015,207.03450096389156,1727.717784469913,3510.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,4,3.0,1,,1,119617,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,1143.22957348671,1250.0,60334.64760187463,4,1,0,1,190.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058175528316020894,30167.323800937316,8,4,8,8_1,8_1,8_1_0 -25586,2,69.0,0.0,2,120,1312.0,0.0,0.0,78,71,0.0,0.0,1813.412586579621,1312.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,103435,2,2,1,0,2,,370.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,1029.06711326962,1312.0,22099.206283628828,5,5,0,1,70.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05936864804832083,14732.804189085886,3,2,3_0,3_1_0,3_1_0,3_0_1 -25587,2,69.0,0.0,8,120,500.0,0.0,0.0,72,78,2240.377315527001,0.0,691.0871137879653,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111859,2,1,1,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1352.88086960456,500.0,35833.85882517024,5,5,0,1,126.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05581313499497213,23889.23921678016,6,3,6,6_1,6_1,6_0_0 -25588,2,87.0,0.0,2,120,500.0,0.0,0.0,0,75,0.0,0.0,691.0871137879653,6153.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101126,2,1,2,0,1,,600.0,,11,0.0,6.0,8.0,1.0,1.0,4,3,1365.93932871755,500.0,32532.177979152155,0,5,0,1,157.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1891358151287342,32532.177979152155,8,4,8,8_1,8_1,8_0_1 -25589,2,75.0,0.0,8,120,1414.0,0.0,0.0,77,75,0.0,0.0,1954.3943577923658,1414.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,1999.0,6,103895,2,1,2,0,1,,398.0,,41,0.0,2.0,5.0,2.0,1.5,5,4,1098.34737360164,1414.0,51349.824616574566,5,5,0,1,98.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0275366081687374,34233.21641104971,9,5,9,9_1,9_1,9_0_0 -25590,2,52.0,0.0,5,120,1500.0,0.0,0.0,78,33,0.0,310.55175144583734,2073.261341363896,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,106282,2,2,3,0,1,,500.0,,42,1.0,2.0,7.0,2.0,1.5,1,1,1277.36197013935,1500.0,64404.670844958164,5,1,0,1,140.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02794828350777777,42936.44722997211,9,5,9,9_1,9_1,9_0_0 -25591,2,64.0,0.0,2,120,500.0,0.0,0.0,0,75,2091.018827825201,621.1035028916747,691.0871137879653,2860.0,619.317721508469,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132836,2,2,2,0,2,,700.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1364.04669051493,500.0,26769.84296267461,0,5,0,1,80.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10683663718116386,26769.84296267461,7,4,7,7_1,7_1,7_0_1 -25592,2,68.0,0.0,2,111,157.0,131.0,0.0,0,74,0.0,0.0,217.0013537294211,288.0,0.0,237.58853001101582,71,0,0,0,0,0,0,0,0,0,,2,,2,112920,2,1,0,1,1,512.0,160.0,253.0,11,0.0,2.0,3.0,1.0,1.0,6,4,436.956171595423,157.0,24094.264896542358,0,5,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011953051949774545,24094.264896542358,6,3,6,6_0,6_2,6_0_1 -25593,2,53.0,0.0,2,111,0.0,0.0,468.0,0,52,0.0,0.0,239.10744070396171,468.0,0.0,535.0390225374316,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,116663,2,1,0,1,1,66.0,107.0,178.0,12,1.0,0.0,2.0,1.0,1.0,2,2,426.24826318883,0.0,19918.62262640232,0,1,2,3,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023495600513042586,19918.62262640232,5,3,5,5_0,5_2,5_0_1 -25594,2,80.0,0.0,6,111,333.0,1077.0,0.0,77,72,0.0,0.0,460.2640177827849,1410.0,0.0,1953.3041742127025,71,0,0,0,0,0,0,0,0,0,,1,,4,115310,2,2,1,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,3,2,1021.31607168125,333.0,28924.012666868402,5,5,0,1,75.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04874842284988739,19282.6751112456,5,3,5,5_1,5_2,5_0_0 -25595,2,65.0,0.0,9,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,596.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2007.0,6,131755,2,1,0,0,1,,286.0,430.0,11,0.0,4.0,2.0,1.0,1.0,3,2,1755.15132463407,0.0,15919.383263178956,0,5,2,3,50.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03743863629306103,15919.383263178956,3,2,3_0,3_0_0,3_2_0,3_0_0 -25596,2,58.0,0.0,8,111,300.0,700.0,0.0,0,55,0.0,0.0,414.65226827277917,1017.0,29.24555907123326,1269.5570305932142,60,0,0,0,0,0,0,0,0,0,,2,2002.0,6,125086,1,2,0,1,1,,156.0,500.0,12,1.0,3.0,3.0,1.0,1.0,3,3,1782.5837781825,300.0,32386.26153032425,0,4,2,3,55.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03140220426639091,32386.26153032425,8,4,8,8_0,8_2,8_0_0 -25597,2,59.0,0.0,9,111,600.0,0.0,0.0,0,43,0.0,0.0,829.3045365455583,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,118517,2,1,0,0,1,,140.0,,32,1.0,0.0,3.0,2.0,1.5,3,3,1584.03836341843,600.0,20472.574473753863,0,1,1,2,95.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029307501153272575,13648.382982502575,3,2,3_0,3_0_0,3_2_0,3_0_0 -25598,2,72.0,0.0,5,111,354.0,1331.0,0.0,77,77,0.0,0.0,489.28967656187945,1916.0,0.0,2413.9720110279545,31,0,0,0,0,0,0,0,0,0,,1,,3,116777,2,2,3,0,1,,201.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1082.99659145674,354.0,30498.956669011248,5,5,0,1,89.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0628218211132045,20332.637779340832,5,3,5,5_1,5_2,5_0_0 -25599,2,50.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,2579.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106899,2,1,1,0,1,,364.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1107.8168367113,0.0,87679.71737381589,1,1,0,1,120.0,7,5,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029413872184425816,41752.24636848376,9,5,9,9_1,9_2,9_1_0 -25600,2,56.0,0.0,8,111,792.0,0.0,0.0,0,54,0.0,0.0,1094.681988240137,792.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,131383,2,2,2,0,1,,172.0,,22,1.0,0.0,3.0,2.0,1.5,1,1,1125.05564887701,792.0,22041.646836622407,0,1,0,1,60.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035931979396570515,14694.431224414939,3,2,3_0,3_1_0,3_2_0,3_0_0 -25601,2,28.0,0.0,7,111,154.0,308.0,0.0,84,63,0.0,0.0,212.8548310466933,462.0,0.0,558.6050934610142,42,0,0,0,0,0,0,0,0,2,10.0,2,,5,100778,2,1,0,0,1,,180.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,1473.58306893204,154.0,27015.796219457523,3,1,1,2,33.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017101106191615957,18010.530812971683,4,2,4_0,4_0_0,4_2_0,4_0_0 -25602,2,35.0,0.0,7,111,972.0,0.0,0.0,0,46,0.0,0.0,1343.4733492038044,972.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,2,,5,119914,2,2,0,0,1,,124.0,390.0,12,1.0,0.0,2.0,1.0,1.0,5,3,1687.59216947531,972.0,19729.662192382533,0,1,2,3,35.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04926592206810725,19729.662192382533,5,3,5,5_0,5_2,5_0_0 -25604,1,36.0,36.0,2,111,858.0,50.0,0.0,0,64,0.0,0.0,1185.9054872601484,908.0,0.0,90.68264504237244,71,0,0,0,0,0,0,0,0,0,,2,,2,121606,1,3,0,0,2,,250.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1917.09811099655,858.0,14243.443186515062,0,4,1,2,24.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06374863072853384,14243.443186515062,3,2,3_1,3_0_1,3_2_1,3_0_1 -25605,1,45.0,351.0,1,111,0.0,0.0,752.0,0,56,0.0,0.0,384.20682779781885,752.0,0.0,859.7208225387789,50,0,0,0,0,0,0,0,0,0,,2,,1,124938,1,3,0,0,2,,132.0,550.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1662.58361926606,0.0,14935.353436975998,0,1,2,3,68.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.050350331726214545,11488.73341305846,2,1,2_1,2_0_1,2_2_1,2_1_0 -25606,2,41.0,0.0,1,111,696.0,0.0,0.0,0,46,0.0,0.0,961.9932623928477,696.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,109755,2,2,0,0,1,,189.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,1456.03564354616,696.0,14032.734786510287,0,4,0,1,47.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04959831498198534,14032.734786510287,3,2,3_0,3_0_0,3_2_0,3_1_0 -25607,2,40.0,0.0,5,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,272.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,3,133461,2,3,0,0,2,,235.0,440.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1637.93235632128,0.0,22804.585858554437,0,1,2,3,42.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011927425548838353,22804.585858554437,6,3,6,6_0,6_2,6_0_0 -25608,2,53.0,0.0,1,111,732.0,2220.0,0.0,56,35,0.0,0.0,1011.7515345855811,3012.0,103.2196202514115,4026.3094398813364,50,0,0,0,0,0,0,0,0,0,,1,,1,107958,1,3,3,0,1,,167.0,,43,2.0,3.0,5.0,3.0,1.8,2,2,1282.07764829556,732.0,46540.91325075769,1,1,0,1,150.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06471725176022335,25856.0629170876,7,4,7,7_1,7_2,7_1_0 -25609,2,35.0,0.0,2,111,511.0,0.0,0.0,0,43,0.0,0.0,706.2910302913006,511.0,0.0,0.0,12,2,2,2,2,1,2,2,2,2,44.0,2,,2,133056,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1809.85240686458,511.0,17431.538973288276,0,1,2,3,65.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.029314680750967867,17431.538973288276,4,2,4_0,4_0_0,4_2_0,4_0_1 -25610,2,44.0,0.0,2,111,260.0,250.0,0.0,0,47,0.0,0.0,359.36529916974195,510.0,0.0,453.4132252118622,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,115352,2,3,0,1,1,,150.0,350.0,12,1.0,1.0,3.0,1.0,1.0,2,2,413.512506527281,260.0,22742.45287930557,0,1,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022425021729475497,22742.45287930557,6,3,6,6_0,6_2,6_0_1 -25611,2,71.0,0.0,2,111,1000.0,0.0,0.0,77,74,0.0,0.0,1382.1742275759307,1078.0,134.18550632683494,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108723,2,2,3,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,1082.99659145674,1000.0,53083.03412387089,5,5,0,1,100.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02030780677465523,35388.68941591393,9,5,9,9_1,9_2,9_0_1 -25612,2,73.0,0.0,2,111,233.0,716.0,0.0,0,77,0.0,0.0,322.04659502519183,949.0,0.0,1298.5754770067733,60,1,2,2,2,2,1,2,2,0,,2,,2,123676,2,2,0,1,1,,129.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,523.333461910417,233.0,15439.882004628751,0,5,0,1,83.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.06146420029087642,15439.882004628751,3,2,3_0,3_0_0,3_2_0,3_0_1 -25613,1,46.0,107.0,5,111,1200.0,0.0,0.0,56,62,0.0,0.0,1658.6090730911167,1584.0,660.6055696090336,0.0,20,2,2,2,2,1,2,2,2,2,30.0,2,,3,104321,1,3,0,0,1,,342.0,376.0,43,2.0,0.0,3.0,3.0,1.8,4,4,1472.93827249504,1200.0,34007.530708529164,1,1,2,3,50.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.04657791868442625,18893.072615849534,5,3,5,5_0,5_2,5_0_0 -25614,2,51.0,0.0,7,111,1242.0,0.0,0.0,46,37,0.0,0.0,1716.6603906493058,3716.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,113767,2,3,3,0,1,,582.0,934.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1166.14925964974,1242.0,49410.095804522294,1,1,2,3,98.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07520730206031882,23528.61704977252,6,3,6,6_1,6_2,6_0_0 -25615,2,77.0,0.0,5,111,352.0,1000.0,0.0,0,72,0.0,0.0,486.52532810672756,1352.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,3,110111,2,1,2,0,1,,185.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1144.53162512473,352.0,19731.76721761447,0,5,0,1,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06851895144967426,19731.76721761447,5,3,5,5_1,5_2,5_0_0 -25616,1,25.0,254.0,9,111,426.0,0.0,0.0,0,46,0.0,0.0,588.8062209473464,426.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,12.0,2,2005.0,6,102099,1,1,0,0,1,,114.0,348.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1824.33645320576,426.0,25786.098976021814,0,1,2,3,38.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.016520529157827722,25786.098976021814,7,4,7,7_0,7_2,7_0_0 -25617,2,61.0,0.0,1,111,315.0,686.0,0.0,52,46,0.0,258.79312620486445,435.3848816864181,1251.0,0.0,1244.16588998135,71,0,0,0,0,0,0,0,0,1,20.0,1,,1,122052,2,2,2,0,1,,140.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1077.25228877854,315.0,68378.96097175023,1,1,0,1,70.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01829510104016983,45585.97398116682,10,5,10,10_1,10_2,10_1_0 -25618,2,35.0,0.0,6,111,340.0,0.0,0.0,0,37,0.0,0.0,469.9392373758164,340.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,4,104516,2,1,0,0,1,,150.0,427.0,12,1.0,1.0,2.0,1.0,1.0,2,1,1871.29952011659,340.0,62740.0,0,1,3,4,43.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005419190309212623,62740.0,10,5,10,10_0,10_2,10_0_0 -25619,1,38.0,110.0,2,111,480.0,1000.0,0.0,46,43,0.0,0.0,663.4436292364467,1480.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,120959,1,3,0,1,2,,300.0,749.0,43,2.0,0.0,4.0,4.0,2.5,1,1,1315.51978169914,480.0,20551.62659947241,4,1,2,3,100.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07201376459603416,8220.650639788964,1,1,1_1,1_0_1,1_2_1,1_0_1 -25620,1,59.0,236.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,323.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,101858,2,1,0,1,1,450.0,0.0,220.0,12,1.0,1.0,2.0,1.0,1.0,2,2,263.783575626167,0.0,9387.70724555237,0,4,2,3,49.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0344066971360902,9387.70724555237,1,1,1_1,1_0_1,1_2_1,1_0_1 -25621,2,38.0,0.0,1,111,420.0,840.0,0.0,0,43,0.0,0.0,580.5131755818909,1260.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,100789,2,1,0,0,1,,110.0,368.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1452.3636204655,420.0,18227.28771709272,0,1,2,3,60.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06912712519583643,18227.28771709272,4,2,4_0,4_0_0,4_2_0,4_1_0 -25622,1,33.0,100.0,5,111,0.0,0.0,0.0,55,65,0.0,0.0,0.0,1084.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,105499,2,2,1,0,1,,338.0,610.0,43,2.0,0.0,4.0,4.0,2.1,3,3,237.337597837774,0.0,33915.9608340421,1,4,2,3,75.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.031961353101692715,16150.457540020045,4,2,4_1,4_1_1,4_2_1,4_0_0 -25623,2,87.0,0.0,2,111,400.0,0.0,0.0,0,72,0.0,0.0,552.8696910303722,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117640,2,2,0,1,2,49.0,200.0,546.0,11,0.0,2.0,4.0,1.0,1.0,4,3,1711.71526283503,400.0,37295.54120121805,0,5,2,3,65.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010725142660939217,37295.54120121805,9,5,9,9_0,9_2,9_0_1 -25624,1,49.0,220.0,9,112,200.0,0.0,0.0,62,56,0.0,0.0,276.4348455151861,328.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,131888,2,1,1,0,1,,288.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1602.0806549129,200.0,39590.52329815552,1,1,1,2,120.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.008284810926338051,16496.051374231465,4,2,4_1,4_1_1,4_0_1,4_0_0 -25625,1,53.0,249.0,1,111,700.0,0.0,0.0,0,56,0.0,0.0,967.5219593031513,736.0,61.9317721508469,0.0,44,2,2,2,2,2,2,2,1,0,,1,,1,118182,2,2,5,0,1,,200.0,355.0,12,1.0,2.0,2.0,1.0,1.0,1,1,248.678006966945,700.0,4051.0025360430773,0,4,2,3,52.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1,0,0,0,1,0.18168342119057454,4051.0025360430773,1,1,1_1,1_1_1,1_2_1,1_1_0 -25626,0,56.0,0.0,9,400,0.0,0.0,0.0,0,48,0.0,0.0,0.0,872.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,111346,2,1,1,0,1,,100.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,1253.78104131861,0.0,42713.287578034724,0,4,5,0,35.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020415192775946035,42713.287578034724,9,5,9,9_1,9_0,9_0_0 -25627,1,28.0,270.0,1,111,0.0,0.0,600.0,0,68,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,50,2,2,2,2,1,2,2,2,0,,2,,1,129688,2,2,0,0,2,,144.0,300.0,12,1.0,0.0,2.0,1.0,1.0,4,4,1881.12915006371,0.0,8198.213476388215,0,4,2,3,23.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.07318667679587365,8198.213476388215,1,1,1_1,1_0_1,1_2_1,1_1_0 -25628,1,30.0,254.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,981.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,105745,2,1,0,0,1,,0.0,251.0,12,1.0,1.0,3.0,1.0,1.0,3,3,236.967901397536,0.0,5945.494596925272,0,4,2,3,57.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.16499888848731384,5945.494596925272,1,1,1_1,1_0_1,1_2_1,1_0_1 -25629,2,31.0,0.0,9,112,1400.0,0.0,0.0,52,54,0.0,0.0,1935.0439186063027,1446.0,79.13504219274881,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,117113,2,1,1,0,1,,540.0,,43,2.0,0.0,4.0,4.0,2.1,4,3,1516.192006965,1400.0,44083.76282960172,1,1,1,2,95.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03280119271100489,20992.26801409606,5,3,5,5_1,5_0,5_0_0 -25631,1,26.0,240.0,7,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1327.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,133611,2,1,0,0,1,,0.0,548.0,22,2.0,0.0,3.0,2.0,1.5,1,1,298.131877704554,0.0,28345.379202815668,0,4,3,4,70.0,6,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04681539063228279,18896.91946854378,5,3,5,5_0,5_2,5_0_0 -25632,2,26.0,0.0,9,112,970.0,0.0,0.0,21,52,0.0,0.0,1340.7090007486527,970.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,133367,2,1,1,0,1,,200.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1578.84001695215,970.0,30751.7383276336,1,1,1,2,91.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03154293229428124,20501.158885089066,5,3,5,5_1,5_0,5_0_0 -25633,1,50.0,254.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,390.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,120252,2,1,0,1,1,274.0,0.0,258.0,12,1.0,4.0,3.0,1.0,1.0,1,1,267.580178520474,0.0,4946.740646582001,0,1,2,3,59.0,6,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07883979126123669,4946.740646582001,1,1,1_1,1_0_1,1_2_1,1_0_1 -25634,2,32.0,0.0,9,120,1300.0,0.0,0.0,52,21,0.0,103.51725048194578,1796.8264958487098,1470.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,130988,2,1,1,0,1,,180.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2441.31486457613,1300.0,5773.470250376464,1,1,1,2,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.2546128993916869,3207.4834724313687,1,1,1_0,1_1_0,1_0_0,1_0_0 -25635,2,50.0,0.0,1,111,380.0,1762.0,0.0,33,37,0.0,0.0,525.2262064788536,2142.0,0.0,3195.656411293205,70,0,0,0,0,0,0,0,0,2,7.0,1,,1,105943,1,2,3,0,1,,540.0,,43,2.0,3.0,10.0,3.0,1.8,2,2,1232.67529421193,380.0,89435.2225106861,4,1,1,2,170.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023950295419056678,49686.23472815895,10,5,10,10_1,10_2,10_1_0 -25636,1,74.0,99.0,2,111,208.0,140.0,0.0,0,77,0.0,0.0,287.49223933579356,348.0,0.0,253.91140611864284,71,0,0,0,0,0,0,0,0,0,,2,,2,110492,2,2,0,1,1,,0.0,256.0,11,0.0,5.0,3.0,1.0,1.0,2,2,267.580178520474,208.0,12825.596803001632,0,5,2,3,50.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02713324029635455,12825.596803001632,2,1,2_1,2_0_1,2_2_1,2_0_1 -25637,2,36.0,0.0,9,400,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1283.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,2.0,1,2012.0,6,121912,2,1,1,0,1,,485.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,1604.3380113533,0.0,14789.880858408482,0,1,1,2,75.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08674850137623501,9859.920572272322,2,1,2_0,2_1_0,2_0_0,2_0_0 -25638,2,67.0,0.0,1,111,260.0,1193.0,0.0,77,74,0.0,0.0,359.36529916974195,1453.0,0.0,2163.6879107110067,44,0,0,0,0,0,0,0,0,0,,1,,1,125690,2,3,1,0,1,,285.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1177.51119288577,260.0,26617.376132390593,5,5,0,1,100.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0545884009292655,17744.917421593727,4,2,4_0,4_1_0,4_2_0,4_1_0 -25639,2,64.0,0.0,9,221,270.0,0.0,0.0,71,71,0.0,0.0,373.1870414455012,270.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2011.0,6,130588,2,1,1,0,1,,460.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1791.27029815104,270.0,15812.651013997263,5,5,0,1,170.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017074935743601603,10541.767342664842,2,1,2_0,2_1_0,2_1_0,2_0_0 -25640,0,74.0,0.0,8,111,900.0,0.0,0.0,78,78,0.0,517.5862524097289,1243.9568048183376,1800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,115143,2,1,2,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,215.73952235136,900.0,19104.916752657904,5,5,5,0,80.0,6,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09421658431197201,12736.611168438603,2,1,2_0,2_1_0,2_2_0,2_0_0 -25641,2,73.0,0.0,9,111,0.0,0.0,0.0,72,77,0.0,0.0,0.0,1301.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2013.0,6,113223,2,1,1,0,1,,654.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,482.006300759402,0.0,17365.632194931677,5,5,0,1,138.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07491809024837627,11577.08812995445,2,1,2_0,2_1_0,2_2_0,2_0_0 -25642,2,46.0,0.0,1,111,611.0,1111.0,0.0,45,37,0.0,0.0,844.5084530488936,1722.0,0.0,2014.9683728415157,70,0,0,0,0,0,0,0,0,0,,1,,1,101580,1,2,1,0,2,,225.0,,43,2.0,1.0,7.0,2.0,1.5,1,1,1195.38321190257,611.0,100071.5896110163,1,1,1,2,190.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017207681088044144,66714.39307401086,10,5,10,10_1,10_2,10_1_0 -25643,1,56.0,350.0,2,111,500.0,200.0,0.0,0,52,0.0,0.0,691.0871137879653,700.0,0.0,362.73058016948977,44,0,0,0,0,0,0,0,0,1,15.0,8,,2,118170,2,1,0,1,1,,200.0,400.0,32,1.0,4.0,4.0,2.0,1.5,1,1,252.149854020883,500.0,11269.560027426136,0,1,2,3,100.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06211422613628631,7513.04001828409,1,1,1_1,1_0_1,1_2_1,1_0_1 -25644,2,26.0,0.0,9,221,1000.0,0.0,0.0,47,54,0.0,0.0,1382.1742275759307,1015.0,25.804905062852875,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,122481,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1470.11240869487,1000.0,38643.53888486524,1,1,1,2,99.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026265710369438377,21468.63271381402,6,3,6,6_1,6_1,6_0_0 -25645,2,45.0,0.0,5,111,0.0,0.0,1600.0,0,37,0.0,0.0,817.4613357400401,1600.0,0.0,1829.1932394442103,70,0,0,0,0,0,0,0,0,2,6.0,2,,3,123487,2,1,0,0,1,,600.0,600.0,32,2.0,1.0,4.0,2.0,1.5,1,1,1663.7153604297,0.0,33462.62983361929,0,1,2,3,87.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.047814532448747026,22308.419889079527,6,3,6,6_0,6_2,6_0_0 -25646,2,55.0,0.0,1,111,1250.0,0.0,0.0,0,55,0.0,56.93448776507018,1727.717784469913,1305.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,10.0,1,,1,124248,2,2,4,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,232.014381923819,1250.0,40490.54612260375,0,1,1,2,120.0,6,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.03222974558180846,40490.54612260375,9,5,9,9_1,9_2,9_1_0 -25647,2,67.0,0.0,2,111,300.0,90.0,0.0,0,78,0.0,0.0,414.65226827277917,390.0,0.0,163.2287610762704,20,0,0,0,0,0,0,0,0,0,,2,,2,133569,2,2,0,1,1,748.0,0.0,250.0,11,0.0,5.0,3.0,1.0,1.0,1,1,289.675442193451,300.0,17464.165237257388,0,5,2,3,70.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022331442396570367,17464.165237257388,4,2,4_0,4_0_0,4_2_0,4_0_1 -25648,2,66.0,0.0,2,111,600.0,1300.0,0.0,78,78,0.0,0.0,829.3045365455583,2000.0,172.03270041901916,2357.7487711016834,31,0,0,0,0,0,0,0,0,0,,1,,2,104572,2,1,2,0,1,,230.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,199.439595669167,600.0,53237.3951875857,7,5,0,1,77.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.037567578070881555,35491.5967917238,9,5,9,9_1,9_2,9_0_1 -25649,2,36.0,0.0,1,111,350.0,904.0,0.0,85,38,0.0,0.0,483.76097965157567,1254.0,0.0,1639.5422223660937,41,0,0,0,0,0,0,0,0,1,10.0,1,,1,123764,2,2,2,0,1,,315.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1010.44456560803,350.0,30536.698356682165,6,1,1,2,79.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041065343258551545,12723.624315284236,2,1,2_0,2_1_0,2_2_0,2_1_0 -25651,2,27.0,0.0,9,300,0.0,0.0,0.0,0,54,0.0,0.0,0.0,501.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,112450,2,1,1,0,1,,243.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1888.37976285223,0.0,14854.485534354495,0,1,1,2,69.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03372718623215321,14854.485534354495,3,2,3_0,3_1_0,3_0_0,3_0_0 -25652,2,34.0,0.0,1,111,430.0,1157.0,0.0,47,35,0.0,0.0,594.3349178576501,1587.0,0.0,2098.3964062804985,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,113795,2,1,2,0,1,,431.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1062.04761996218,430.0,43592.451501167285,1,1,1,2,160.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03640538545893673,20758.310238651087,5,3,5,5_1,5_2,5_1_0 -25653,1,74.0,29.0,2,111,300.0,1200.0,0.0,86,78,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,2,111918,2,2,2,0,2,,250.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,242.779865461185,300.0,15356.693093980717,5,5,1,2,85.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0976772792697112,10237.795395987145,2,1,2_1,2_1_1,2_2_1,2_0_1 -25654,2,24.0,0.0,9,111,450.0,0.0,0.0,55,46,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,132355,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,374.775217777755,450.0,36507.813912320235,1,1,1,2,90.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012326128348324335,20282.118840177907,5,3,5,5_1,5_2,5_0_0 -25655,1,70.0,84.0,2,111,600.0,50.0,0.0,0,86,0.0,0.0,829.3045365455583,650.0,0.0,90.68264504237244,50,2,2,2,2,2,2,2,1,0,,2,,2,117407,2,2,0,1,1,720.0,0.0,257.0,11,0.0,2.0,3.0,1.0,1.0,2,2,263.783575626167,600.0,12321.286958631026,0,5,2,3,65.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05275422950397863,12321.286958631026,2,1,2_1,2_0_1,2_2_1,2_0_1 -25657,1,56.0,351.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,2128.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,110733,2,2,1,0,1,,174.0,550.0,32,1.0,1.0,4.0,2.0,1.5,1,1,242.373673564899,0.0,7502.906041446322,0,4,2,3,60.0,6,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.28362343713820376,5001.937360964214,1,1,1_1,1_1_1,1_2_1,1_0_1 -25658,2,33.0,0.0,2,111,0.0,0.0,1300.0,69,43,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,127467,2,2,2,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1228.83401659609,0.0,35431.0,1,1,1,2,108.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03669103327594479,19683.888888888887,5,3,5,5_1,5_2,5_0_1 -25659,0,43.0,0.0,8,111,0.0,0.0,1300.0,45,53,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,71,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,133003,2,2,2,0,1,,500.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1140.02318939588,0.0,61167.5328129883,1,1,5,0,101.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02125310504143725,25486.472005411793,7,4,7,7_1,7_2,7_0_0 -25660,2,51.0,0.0,6,111,429.0,896.0,0.0,0,45,0.0,0.0,592.9527436300742,1325.0,0.0,1625.0329991593142,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,114991,2,1,1,0,1,,240.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,232.506114720669,429.0,18386.5445356573,0,1,1,2,89.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0720635678678181,18386.5445356573,4,2,4_0,4_1_0,4_2_0,4_0_0 -25661,2,67.0,0.0,1,111,500.0,1300.0,0.0,75,75,0.0,0.0,691.0871137879653,1800.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,1,101080,2,2,1,0,1,,250.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1122.1618651542,500.0,24117.285464071887,6,5,0,1,149.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07463526534449759,16078.190309381258,4,2,4_0,4_1_0,4_2_0,4_1_0 -25662,2,78.0,0.0,2,111,230.0,856.0,0.0,77,78,0.0,165.62760077111324,317.900072342464,1246.0,0.0,1552.4868831254162,71,0,0,0,0,0,0,0,0,0,,1,,2,117649,1,2,1,0,2,,280.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,218.331499615732,230.0,23393.947769986873,5,5,0,1,112.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0532616389611055,15595.965179991248,3,2,3_0,3_1_0,3_2_0,3_0_1 -25664,2,73.0,0.0,2,111,250.0,1620.0,0.0,0,75,0.0,0.0,345.54355689398267,1870.0,0.0,2938.1176993728673,71,2,2,2,2,1,2,2,2,0,,1,,2,119410,2,2,3,0,1,,240.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,255.545089342424,250.0,29936.321405361516,0,5,0,1,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.062465924743348326,29936.321405361516,8,4,8,8_1,8_2,8_0_1 -25665,2,35.0,0.0,2,111,1365.0,0.0,0.0,42,33,0.0,0.0,1886.6678206411452,1365.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,122030,1,3,0,0,1,,0.0,580.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1686.79848003286,1365.0,59835.0081088238,1,1,2,3,85.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02281273192973304,28492.861004201808,8,4,8,8_0,8_2,8_0_1 -25666,1,38.0,168.0,5,111,600.0,0.0,0.0,0,62,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,1,2,2,1,2,2,2,1,15.0,2,,3,132772,1,2,0,1,1,,720.0,380.0,32,1.0,0.0,3.0,2.0,1.3,2,2,308.590769068985,600.0,14391.194184828144,0,1,2,3,100.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.04169216204674296,11070.149372944727,2,1,2_1,2_0_1,2_2_1,2_0_0 -25667,1,43.0,141.0,7,111,820.0,0.0,0.0,0,46,0.0,0.0,1133.3828666122631,1413.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,122379,1,1,2,0,1,,400.0,501.0,32,1.0,0.0,4.0,3.0,1.8,2,2,1053.71232583748,820.0,24847.584149769194,0,1,2,3,78.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.056866695429347205,13804.213416538441,3,2,3_1,3_1_1,3_2_1,3_0_0 -25668,1,57.0,270.0,2,111,200.0,200.0,0.0,0,56,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,71,2,1,2,1,1,1,2,2,0,,2,,2,120263,2,3,0,1,1,432.0,0.0,342.0,12,1.0,5.0,4.0,1.0,1.0,3,3,1527.04182319881,200.0,6257.126654064272,0,4,2,3,100.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.06392710618062732,6257.126654064272,1,1,1_1,1_0_1,1_2_1,1_0_1 -25669,2,37.0,0.0,2,111,400.0,1357.0,0.0,62,43,0.0,0.0,552.8696910303722,1757.0,0.0,2461.126986449988,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,125051,2,2,1,0,1,,266.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,1208.20559215093,400.0,47932.33112981065,1,1,1,2,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03665584290573478,26629.072849894805,7,4,7,7_1,7_2,7_0_1 -25670,1,39.0,149.0,6,111,960.0,900.0,0.0,64,64,0.0,0.0,1326.8872584728933,1860.0,0.0,1632.287610762704,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,126163,2,2,1,0,1,,600.0,680.0,43,2.0,0.0,5.0,4.0,2.3,2,2,330.940815899339,960.0,15439.508917836674,1,1,2,3,98.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.12047015289788221,6712.829964276815,1,1,1_1,1_1_1,1_2_1,1_0_0 -25671,1,34.0,446.0,5,111,320.0,0.0,0.0,85,63,0.0,0.0,442.2957528242978,937.0,578.0298734079045,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,3,118364,1,1,0,1,2,57.0,0.0,407.0,42,1.0,0.0,4.0,5.0,2.4,4,4,276.859287749786,320.0,15667.066228127773,6,1,2,3,90.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05980698532554632,6527.944261719906,1,1,1_1,1_0_1,1_2_1,1_0_0 -25672,0,60.0,0.0,2,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1524.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,1.0,1,,2,101303,1,3,1,0,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,1087.74538417312,0.0,40653.38249914591,1,1,5,0,85.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03748765554826878,27102.254999430606,7,4,7,7_1,7_2,7_0_1 -25673,2,52.0,0.0,5,111,300.0,1146.0,0.0,0,54,0.0,0.0,414.65226827277917,1446.0,0.0,2078.4462243711764,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,103221,2,1,0,0,1,,177.0,292.0,12,1.0,0.0,4.0,1.0,1.0,2,2,303.793882830817,300.0,22124.575474947807,0,1,2,3,70.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06535718624917078,22124.575474947807,6,3,6,6_0,6_2,6_0_0 -25674,2,25.0,0.0,6,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,778.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,109121,2,1,1,0,1,,338.0,550.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1285.32024160906,0.0,15403.261092641014,0,1,2,3,80.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050508784816462884,15403.261092641014,3,2,3_0,3_1_0,3_2_0,3_0_0 -25675,2,55.0,0.0,1,111,300.0,0.0,0.0,0,63,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,123273,2,1,0,1,1,,0.0,437.0,12,1.0,3.0,3.0,1.0,1.0,3,2,288.15430474431,300.0,18897.769103152197,0,1,2,3,60.0,7,6,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015874889695311138,18897.769103152197,5,3,5,5_0,5_2,5_1_0 -25676,2,62.0,0.0,7,111,2800.0,0.0,0.0,72,74,0.0,0.0,3870.0878372126053,2800.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,1,,5,109515,2,1,1,0,1,,450.0,,41,0.0,0.0,8.0,3.0,2.0,3,2,1192.02928533182,2800.0,49633.15486589396,6,5,0,1,200.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.0564139033185669,24816.57743294698,7,4,7,7_1,7_2,7_0_0 -25677,2,74.0,0.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,102059,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,334.396342607936,200.0,25194.145548894994,0,5,0,1,82.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.007938352170422066,25194.145548894994,7,4,7,7_0,7_2,7_0_1 -25678,0,84.0,0.0,2,111,233.0,0.0,0.0,0,86,2987.1697540360015,62.110350289167464,322.04659502519183,2393.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102423,2,1,2,0,1,,381.0,,11,0.0,1.0,7.0,1.0,1.0,4,4,326.190321433221,233.0,43421.23888341881,0,6,0,1,120.0,7,6,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05511127875519486,43421.23888341881,10,5,10,10_1,10_2,10_0_1 -25679,2,61.0,0.0,5,111,350.0,700.0,0.0,78,75,0.0,0.0,483.76097965157567,1050.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,1,,3,120753,2,1,1,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,240.284445704602,350.0,53803.97644064631,5,5,0,1,100.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019515286219751887,35869.31762709754,9,5,9,9_1,9_2,9_0_0 -25680,1,42.0,216.0,5,111,300.0,600.0,0.0,0,47,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,20,0,0,0,0,0,0,0,0,0,,2,,3,108438,1,3,0,0,1,,0.0,458.0,32,2.0,0.0,4.0,2.0,1.5,2,2,408.504907650581,300.0,7433.325489649637,0,4,2,3,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.12107636094412713,4955.550326433092,1,1,1_1,1_0_1,1_2_1,1_0_0 -25681,1,57.0,311.0,2,111,300.0,300.0,0.0,81,78,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,44,2,2,2,2,1,2,1,2,0,,2,,2,101799,1,2,0,1,1,456.0,0.0,300.0,42,1.0,2.0,4.0,2.0,1.5,3,3,263.124472348375,300.0,16347.616790523072,4,6,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03670259755219047,10898.411193682048,2,1,2_1,2_0_1,2_2_1,2_0_1 -25682,2,44.0,0.0,2,111,807.0,900.0,0.0,85,46,0.0,0.0,1115.414601653776,1707.0,0.0,1632.287610762704,10,0,0,0,0,0,0,0,0,1,10.0,1,,2,120838,2,1,1,0,1,,530.0,,42,1.0,0.0,5.0,4.0,2.3,3,2,1065.82487393584,807.0,52096.73049420383,6,1,1,2,110.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03276597175690166,22650.752388784276,6,3,6,6_1,6_2,6_0_1 -25683,1,51.0,339.0,2,111,250.0,250.0,0.0,0,68,0.0,0.0,345.54355689398267,500.0,0.0,453.4132252118622,41,0,0,0,0,0,0,0,0,0,,2,,2,121645,1,1,0,1,1,456.0,0.0,317.0,32,1.0,1.0,4.0,2.0,1.3,2,2,292.140560244094,250.0,9953.533333333333,0,1,2,3,70.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05023341794873513,7656.564102564102,1,1,1_1,1_0_1,1_2_1,1_0_1 -25684,2,88.0,0.0,1,400,480.0,0.0,0.0,11,69,3360.5659732905015,0.0,663.4436292364467,2790.0,103.2196202514115,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,103456,2,3,3,0,1,,0.0,,41,0.0,4.0,6.0,2.0,1.5,4,4,983.634257329601,480.0,11491.022270309788,5,5,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.2427982414766292,7660.681513539858,1,1,1_0,1_1_0,1_0_0,1_1_0 -25685,2,55.0,0.0,2,111,250.0,280.0,0.0,0,55,0.0,0.0,345.54355689398267,530.0,0.0,507.8228122372857,33,0,0,0,0,0,0,0,0,2,15.0,2,,2,125883,1,1,0,1,1,456.0,0.0,300.0,12,1.0,2.0,4.0,1.0,1.0,1,1,329.904452537372,250.0,15807.664277106338,0,1,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.033528039988018954,15807.664277106338,3,2,3_0,3_0_0,3_2_0,3_0_1 -25686,2,36.0,0.0,9,400,1020.0,0.0,0.0,52,64,0.0,0.0,1409.817712127449,1116.0,165.1513924022584,0.0,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,115227,2,1,1,0,1,,239.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,1147.90918444941,1020.0,44312.23383321706,1,1,1,2,87.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02518491855320169,22156.11691660853,6,3,6,6_1,6_0,6_0_0 -25687,2,83.0,0.0,1,400,244.0,0.0,0.0,0,71,2082.057318563093,0.0,337.25051152852706,1700.0,106.66027425979189,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,117902,1,3,2,0,2,,147.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1227.23730810288,244.0,11124.636928737082,0,5,0,1,200.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1528139759427629,11124.636928737082,2,1,2_0,2_1_0,2_0_0,2_1_0 -25688,1,24.0,226.0,2,111,0.0,0.0,0.0,85,55,0.0,0.0,0.0,343.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,15.0,2,,2,109568,2,2,0,1,1,,0.0,420.0,42,1.0,0.0,4.0,3.0,1.8,2,2,324.499370018433,0.0,20730.370138559058,6,1,2,3,72.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.016545773071461496,11516.872299199476,2,1,2_1,2_0_1,2_2_1,2_0_1 -25689,2,68.0,0.0,1,400,0.0,0.0,0.0,78,78,0.0,0.0,0.0,3030.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110614,2,1,1,0,1,,0.0,420.0,41,0.0,3.0,5.0,2.0,1.5,2,2,1018.54211694743,0.0,24578.005068351194,5,5,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12328095757054322,16385.33671223413,4,2,4_0,4_1_0,4_0_0,4_1_0 -25690,2,35.0,0.0,1,400,697.0,0.0,0.0,0,64,0.0,258.79312620486445,963.3754366204236,1067.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,115260,2,1,1,0,1,,244.0,,22,1.0,2.0,7.0,2.0,1.5,1,1,1031.5943591803,697.0,41070.304019788906,0,1,0,1,190.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025979841772923992,27380.20267985927,7,4,7,7_1,7_0,7_1_0 -25691,1,62.0,270.0,2,111,180.0,218.0,0.0,0,69,0.0,0.0,248.7913609636675,398.0,0.0,395.3763323847439,50,2,2,2,2,1,2,2,2,3,50.0,2,,2,124229,1,3,0,1,1,481.0,0.0,311.0,12,1.0,1.0,4.0,1.0,1.0,2,2,301.855295305146,180.0,11770.871559633028,0,1,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.033812279573663805,11770.871559633028,2,1,2_1,2_0_1,2_2_1,2_0_1 -25692,2,59.0,0.0,1,400,1050.0,0.0,0.0,56,69,1075.3811114529606,0.0,1451.2829389547271,1870.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,116978,1,3,4,0,2,,0.0,,43,2.0,6.0,5.0,2.0,1.5,1,1,960.075248651865,1050.0,26853.620204060986,1,4,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06963679331836256,17902.41346937399,4,2,4_0,4_1_0,4_0_0,4_1_0 -25693,1,30.0,89.0,2,111,450.0,650.0,0.0,52,52,0.0,0.0,621.9784024091688,1100.0,0.0,1178.8743855508417,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,127837,1,2,0,0,1,,320.0,364.0,43,2.0,0.0,4.0,4.0,2.1,1,1,271.37584095752,450.0,35667.89894313204,1,1,2,3,83.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030840055977331637,16984.713782443825,4,2,4_1,4_0_1,4_2_1,4_0_1 -25694,2,60.0,0.0,2,400,1660.0,0.0,0.0,37,34,0.0,0.0,2294.409217776045,1710.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,125329,2,1,1,0,1,,149.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,1141.57054736292,1660.0,55197.63975429491,4,1,0,1,140.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030979585496985772,27598.819877147456,7,4,7,7_1,7_0,7_0_1 -25695,0,71.0,0.0,5,111,1030.0,0.0,0.0,0,77,0.0,0.0,1423.6394544032084,1030.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,121840,2,1,1,0,1,,210.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,239.057551616334,1030.0,12640.913966152293,0,5,0,1,68.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08148145005637727,12640.913966152293,2,1,2_0,2_1_0,2_2_0,2_0_0 -25696,2,64.0,0.0,6,400,1310.0,0.0,0.0,77,78,0.0,0.0,1810.6482381244691,1434.0,213.32054851958378,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,102298,2,1,2,0,1,,195.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,931.250128716324,1310.0,35677.115864902284,5,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040193831963045865,23784.743909934856,6,3,6,6_1,6_0,6_0_0 -25697,1,62.0,318.0,2,111,420.0,420.0,0.0,85,78,0.0,0.0,580.5131755818909,840.0,0.0,761.7342183559285,71,2,1,2,2,1,2,2,2,0,,2,,2,121034,2,2,0,1,1,650.0,0.0,380.0,41,0.0,0.0,5.0,5.0,2.4,4,4,242.809677997767,420.0,23192.491931217264,6,5,2,3,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03621861775315976,9663.53830467386,1,1,1_1,1_0_1,1_2_1,1_0_1 -25698,2,61.0,0.0,2,111,700.0,500.0,0.0,56,47,0.0,0.0,967.5219593031513,1200.0,0.0,906.8264504237244,60,2,1,2,2,1,2,2,2,2,7.0,2,,2,101380,2,2,0,1,1,400.0,0.0,353.0,43,2.0,3.0,3.0,2.0,1.5,2,2,260.304974383295,700.0,40478.957798850635,1,1,2,3,60.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.029645032017945702,26985.971865900425,7,4,7,7_0,7_2,7_0_1 -25699,2,83.0,0.0,1,400,0.0,0.0,0.0,0,78,0.0,0.0,0.0,3454.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,108550,2,3,3,0,2,,281.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1052.88792352207,0.0,13131.750178611628,0,5,0,1,80.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2630266303440429,13131.750178611628,2,1,2_0,2_1_0,2_0_0,2_1_0 -25700,2,91.0,0.0,2,111,620.0,1310.0,0.0,0,72,0.0,31.055175144583732,856.9480210970769,1960.0,0.0,2375.885300110158,41,0,0,0,0,0,0,0,0,0,,1,,2,111019,2,2,3,0,1,,234.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,229.179998178138,620.0,17797.452881521815,0,5,0,1,75.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11012811850368587,11864.96858768121,2,1,2_0,2_1_0,2_2_0,2_0_1 -25701,2,56.0,0.0,1,400,1419.0,0.0,0.0,42,47,1941.6603401234008,0.0,1961.3052289302454,2784.0,111.82125527236246,0.0,50,0,0,0,0,0,0,0,0,2,9.0,1,,1,104432,2,1,2,0,2,,136.0,,43,2.0,1.0,6.0,2.0,1.5,1,1,994.260703035935,1419.0,71015.71231563116,1,1,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03920259206337945,47343.80821042077,10,5,10,10_1,10_0,10_1_0 -25702,2,67.0,0.0,2,400,653.0,0.0,0.0,78,75,0.0,931.655254337512,902.5597706070827,1636.0,142.7871413477859,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105942,2,1,1,0,1,,231.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,1063.47485065753,653.0,23077.38312971793,5,5,0,1,200.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07089192005887525,15384.92208647862,3,2,3_0,3_1_0,3_0_0,3_0_1 -25703,2,54.0,0.0,2,111,500.0,600.0,0.0,0,43,0.0,0.0,691.0871137879653,1100.0,0.0,1088.1917405084694,70,0,0,0,0,0,0,0,0,0,,1,,2,111793,2,1,1,0,1,,200.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,249.620475839693,500.0,53396.31260407425,0,1,0,1,130.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020600673461411784,35597.5417360495,9,5,9,9_1,9_2,9_0_1 -25704,1,39.0,22.0,5,400,0.0,0.0,0.0,63,63,0.0,517.5862524097289,0.0,860.0,619.317721508469,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,119672,1,1,2,0,2,,384.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,971.142449973494,0.0,32727.3843058302,4,1,1,2,110.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02627768818807789,15584.468717062,3,2,3_1,3_1_1,3_0_1,3_0_0 -25705,1,49.0,270.0,2,111,370.0,160.0,0.0,0,68,0.0,0.0,511.40446420309434,530.0,0.0,290.18446413559184,70,2,2,2,2,1,2,2,2,0,,2,,2,126938,2,2,0,1,1,848.0,0.0,300.0,12,1.0,1.0,3.0,1.0,1.0,1,1,286.532097935422,370.0,6060.0,0,4,2,3,63.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.08745874587458746,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -25706,1,21.0,285.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,102.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,104695,1,2,0,1,2,,218.0,460.0,12,1.0,0.0,1.0,1.0,1.0,2,2,383.584149541352,0.0,5958.2105842714,0,2,2,3,26.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.017119233796345095,5958.2105842714,1,1,1_1,1_0_1,1_2_1,1_0_1 -25707,2,41.0,0.0,1,400,1050.0,0.0,0.0,11,69,0.0,51.75862524097289,1451.2829389547271,1250.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,1,104359,2,1,1,0,1,,0.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,1002.00154504838,1050.0,37800.10860182178,1,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03306868806032361,18000.05171515323,4,2,4_0,4_1_0,4_0_0,4_1_0 -25708,1,60.0,221.0,2,111,60.0,244.0,0.0,0,78,0.0,95.23587044339011,82.93045365455583,396.0,0.0,442.53130780677753,71,2,2,2,1,2,2,2,2,0,,2,,2,111133,1,2,0,1,1,204.0,0.0,208.0,11,0.0,1.0,2.0,1.0,1.0,2,2,391.057928473611,60.0,9902.114902985624,0,7,2,3,52.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0399914567624943,9902.114902985624,2,1,2_1,2_0_1,2_2_1,2_0_1 -25709,2,61.0,0.0,7,400,921.0,0.0,0.0,78,56,0.0,31.055175144583732,1272.9824635974321,1071.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,118119,2,1,2,0,1,,279.0,,42,1.0,2.0,5.0,3.0,2.0,1,1,1012.55119664661,921.0,22992.452536863577,5,1,0,1,115.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04658050280990582,11496.226268431788,2,1,2_0,2_1_0,2_0_0,2_0_0 -25710,1,36.0,181.0,9,111,0.0,0.0,0.0,62,54,0.0,0.0,0.0,2562.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,109970,2,1,3,0,1,,375.0,556.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,2,2,211.388227807225,0.0,40229.207423653,1,4,2,3,92.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06368507271395202,13872.140490914831,3,2,3_1,3_1_1,3_2_1,3_0_0 -25711,2,70.0,0.0,2,111,374.0,1000.0,0.0,77,78,0.0,0.0,516.933161113398,1374.0,0.0,1813.6529008474488,33,0,0,0,0,0,0,0,0,0,,1,,2,109233,2,1,2,0,1,,250.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,233.763938935286,374.0,34485.01522545393,5,5,0,1,100.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039843392587103434,22990.01015030262,6,3,6,6_1,6_2,6_0_1 -25712,2,69.0,0.0,1,300,936.0,0.0,0.0,72,72,0.0,207.03450096389156,1293.7150770110711,1236.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126375,2,2,4,0,1,,174.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,956.835575304989,936.0,20431.54323621164,5,5,0,1,260.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.060494696152436876,13621.028824141094,3,2,3_0,3_1_0,3_0_0,3_1_0 -25713,1,67.0,100.0,1,111,300.0,100.0,0.0,0,77,0.0,0.0,414.65226827277917,400.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,1,109146,2,1,0,1,1,430.0,100.0,308.0,11,0.0,2.0,4.0,1.0,1.0,1,1,283.798531920632,300.0,11608.412844036699,0,5,2,3,72.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.034457768290475824,11608.412844036699,2,1,2_1,2_0_1,2_2_1,2_1_0 -25714,2,81.0,0.0,2,111,221.0,151.0,0.0,0,77,0.0,0.0,305.46050429428067,372.0,0.0,273.8615880279648,50,2,2,2,2,1,2,1,2,0,,2,,2,118738,1,3,0,1,1,468.0,0.0,303.0,11,0.0,3.0,4.0,1.0,1.0,2,2,282.200846572004,221.0,15689.498768435933,0,5,2,3,70.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.02371012646677968,15689.498768435933,3,2,3_0,3_0_0,3_2_0,3_0_1 -25715,0,65.0,0.0,1,300,615.0,0.0,0.0,71,71,0.0,51.75862524097289,850.0371499591973,804.0,239.12545358243665,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,111457,2,2,4,0,2,,73.0,,41,0.0,1.0,8.0,2.0,1.5,1,1,1031.5943591803,615.0,40045.128353837026,5,5,0,1,250.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02007734855775441,26696.752235891352,7,4,7,7_1,7_0,7_1_0 -25716,2,40.0,0.0,2,111,350.0,800.0,0.0,52,22,0.0,0.0,483.76097965157567,1150.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,2,113272,2,3,0,1,1,504.0,0.0,345.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,271.801385064002,350.0,28584.908275072656,1,1,2,3,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.040231019422331066,10994.195490412561,2,1,2_0,2_0_0,2_2_0,2_0_1 -25717,2,58.0,0.0,1,300,658.0,0.0,0.0,11,21,1792.3018524216009,10.351725048194577,909.4706417449623,1928.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132991,1,1,1,0,2,,263.0,,43,2.0,2.0,6.0,2.0,1.5,5,4,994.796980087443,658.0,26774.63959829189,1,1,0,1,149.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07200843891556988,17849.759732194594,4,2,4_0,4_1_0,4_0_0,4_1_0 -25718,1,24.0,327.0,9,111,0.0,0.0,0.0,67,85,0.0,0.0,0.0,1609.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114488,1,2,5,0,1,,237.0,620.0,42,1.0,0.0,3.0,3.0,1.8,3,3,253.225631457344,0.0,21038.866898601904,4,7,2,3,70.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0764775026979672,11688.259388112168,2,1,2_1,2_1_1,2_2_1,2_0_0 -25719,2,39.0,0.0,1,300,840.0,0.0,0.0,0,11,373.3962192545002,155.27587572291867,1161.0263511637818,1365.0,215.04087552377396,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131237,2,3,4,0,1,,125.0,,22,1.0,2.0,7.0,3.0,2.0,2,2,1217.54090058773,840.0,24496.72876034289,0,1,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055721725678318436,12248.364380171444,2,1,2_0,2_1_0,2_0_0,2_1_0 -25720,2,62.0,0.0,1,300,205.0,0.0,0.0,0,78,0.0,0.0,283.3457166530658,311.0,182.3546624441603,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,120450,2,3,3,0,1,,118.0,184.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1263.70575990635,205.0,10300.46287562934,0,5,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.030192817910719226,10300.46287562934,2,1,2_0,2_1_0,2_0_0,2_1_0 -25721,2,39.0,0.0,2,111,180.0,1200.0,0.0,0,54,0.0,0.0,248.7913609636675,1380.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,3,240.0,1,,2,126824,2,2,3,0,1,,158.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,250.620585356361,180.0,39837.8997510006,0,1,0,1,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03464038035703272,39837.8997510006,9,5,9,9_1,9_2,9_0_1 -25722,2,78.0,0.0,1,300,414.0,0.0,0.0,0,71,2764.6256073603195,0.0,572.2201302164352,2370.0,180.63433543997013,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,121091,2,1,4,0,2,,141.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1004.70247385721,414.0,11884.15440443037,0,5,0,1,76.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1994252110286006,11884.15440443037,2,1,2_0,2_1_0,2_0_0,2_1_0 -25723,1,33.0,500.0,2,111,400.0,400.0,0.0,85,21,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,71,2,2,2,1,2,2,2,2,0,,2,,2,124685,2,3,0,1,1,720.0,0.0,400.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,1,1,277.215952075594,400.0,16642.730541508237,6,1,2,3,91.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.04806903518654821,5547.576847169414,1,1,1_1,1_0_1,1_2_1,1_0_1 -25724,2,42.0,0.0,1,300,1210.0,0.0,0.0,0,53,0.0,0.0,1672.430815366876,1306.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,111668,2,2,5,0,1,,124.0,205.0,12,1.0,1.0,3.0,1.0,1.0,3,2,1097.69275957794,1210.0,16805.990641877816,0,1,2,3,45.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07771038481633204,16805.990641877816,4,2,4_0,4_1_0,4_0_0,4_1_0 -25725,1,53.0,219.0,2,300,240.0,0.0,0.0,0,52,875.2407379325484,0.0,331.72181461822333,922.0,165.1513924022584,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,133064,2,3,3,0,2,,118.0,517.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1161.36737869456,240.0,6405.347931027374,0,4,2,3,85.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.14394221983381275,6405.347931027374,1,1,1_1,1_1_1,1_0_1,1_0_1 -25726,2,24.0,0.0,1,300,1900.0,0.0,0.0,55,21,149.35848770180007,517.5862524097289,2626.131032394268,2580.0,137.62616033521533,0.0,50,1,2,2,1,2,2,2,2,0,,1,,1,106475,1,1,3,0,2,,317.0,,43,2.0,0.0,4.0,2.0,1.5,6,6,1102.07136516113,1900.0,15412.373589326417,1,1,1,2,130.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.16739796664329082,10274.91572621761,2,1,2_0,2_1_0,2_0_0,2_1_0 -25727,2,71.0,0.0,1,300,859.0,0.0,0.0,75,75,0.0,0.0,1187.2876614877243,924.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108471,2,1,1,0,2,,260.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,989.028114063423,859.0,40223.5976340769,5,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022971590169676905,26815.731756051264,7,4,7,7_1,7_0,7_1_0 -25728,2,28.0,0.0,1,300,1050.0,0.0,0.0,54,43,0.0,107.6579405012236,1451.2829389547271,1224.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,22.0,1,,1,126288,2,1,1,0,1,,195.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,939.325085568797,1050.0,41932.93594848359,4,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029189465805679254,27955.29063232239,7,4,7,7_1,7_0,7_1_0 -25729,2,73.0,0.0,2,111,185.0,720.0,0.0,0,77,0.0,0.0,255.70223210154717,905.0,0.0,1305.830088610163,71,0,0,0,0,0,0,0,0,0,,2,,2,108151,2,2,0,1,1,564.0,0.0,247.0,11,0.0,3.0,2.0,1.0,1.0,4,3,369.516627845329,185.0,16226.042462942045,0,5,2,3,45.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05577453664791586,16226.042462942045,4,2,4_0,4_0_0,4_2_0,4_0_1 -25731,1,68.0,200.0,2,111,250.0,370.0,0.0,0,75,0.0,0.0,345.54355689398267,620.0,0.0,671.0515733135561,41,2,2,2,2,1,2,2,2,0,,2,,2,115036,2,3,0,1,1,865.0,0.0,400.0,11,0.0,4.0,4.0,1.0,1.0,1,1,297.616957983615,250.0,8775.281617302688,0,5,2,3,82.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.07065300317855476,8775.281617302688,1,1,1_1,1_0_1,1_2_1,1_0_1 -25732,2,69.0,0.0,1,300,1850.0,0.0,0.0,72,72,0.0,0.0,2557.0223210154713,1945.0,163.4310653980682,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131786,2,1,1,0,1,,260.0,,41,0.0,2.0,7.0,2.0,1.5,4,1,1063.62758704432,1850.0,13705.760475519313,6,5,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14191113316726073,9137.173650346209,1,1,1_0,1_1_0,1_0_0,1_1_0 -25733,2,69.0,0.0,2,111,237.0,409.0,0.0,0,78,0.0,0.0,327.57529193549556,646.0,0.0,741.7840364466066,20,0,0,0,0,0,0,0,0,0,,2,,2,123017,2,2,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,312.8850765168,237.0,16452.526997105804,0,5,0,1,75.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03926448503100096,16452.526997105804,4,2,4_0,4_0_0,4_2_0,4_0_1 -25734,2,62.0,0.0,6,111,2689.0,0.0,0.0,77,31,0.0,0.0,3716.6664979516772,2689.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,5.0,1,,4,107788,2,1,1,0,1,,500.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1048.84412924291,2689.0,107350.53558545772,5,1,0,1,110.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.025048780477293364,71567.02372363849,10,5,10,10_1,10_2,10_0_0 -25735,2,82.0,0.0,2,111,150.0,0.0,0.0,0,77,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129099,2,2,0,1,1,310.0,0.0,256.0,11,0.0,3.0,3.0,1.0,1.0,1,1,278.102734676,150.0,22598.526658089297,0,5,2,3,65.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006637600860864373,22598.526658089297,6,3,6,6_0,6_2,6_0_1 -25736,2,55.0,0.0,6,111,810.0,650.0,0.0,0,72,0.0,62.110350289167464,1119.5611243365038,1520.0,0.0,1178.8743855508417,42,0,0,0,0,0,0,0,0,0,,1,,4,111166,1,1,3,0,1,,260.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1185.76703439276,810.0,19481.025544340162,0,7,0,1,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07802463974703872,19481.025544340162,5,3,5,5_1,5_2,5_0_0 -25737,2,56.0,0.0,6,111,636.0,934.0,0.0,54,48,0.0,0.0,879.0628087382918,1570.0,0.0,1693.9518093915174,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,104115,2,1,2,0,1,,568.0,,43,3.0,2.0,5.0,3.0,2.0,1,1,1192.91594028212,636.0,68002.23565704747,1,1,0,1,107.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023087476240015233,34001.11782852373,9,5,9,9_1,9_2,9_0_0 -25738,1,33.0,426.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,742.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110647,1,2,0,1,1,504.0,0.0,398.0,42,1.0,0.0,4.0,4.0,2.1,2,2,276.467767594667,0.0,17485.51412302165,6,1,2,3,81.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.042435126286797215,8326.435296676977,1,1,1_1,1_0_1,1_2_1,1_0_1 -25739,2,61.0,0.0,2,111,370.0,71.0,0.0,77,78,0.0,0.0,511.40446420309434,441.0,0.0,128.76935596016887,60,0,0,0,0,0,0,0,0,0,,2,,2,116729,2,1,0,1,1,111.0,0.0,215.0,41,0.0,3.0,3.0,2.0,1.5,2,2,269.713273414197,370.0,18551.02081543326,6,5,2,3,69.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023772276705825063,12367.34721028884,2,1,2_0,2_0_0,2_2_0,2_0_1 -25740,2,45.0,0.0,7,111,1091.0,820.0,0.0,46,21,0.0,124.22070057833493,1507.9520822853403,2031.0,0.0,1487.1953786949082,71,0,0,0,0,0,0,0,0,0,,1,,5,110336,2,1,2,0,1,,498.0,,43,2.0,0.0,4.0,4.0,2.5,3,3,1036.12940071348,1091.0,39659.06944941548,1,1,1,2,101.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0512114890287708,15863.627779766193,3,2,3_0,3_1_0,3_2_0,3_0_0 -25741,2,55.0,0.0,2,111,429.0,0.0,0.0,0,62,0.0,870.580076553164,592.9527436300742,1270.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,2,115200,2,1,0,1,1,480.0,0.0,343.0,22,2.0,1.0,4.0,2.0,1.5,2,2,275.462053319742,429.0,16816.167350236043,0,1,2,3,75.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07552255954340116,11210.778233490695,2,1,2_0,2_0_0,2_2_0,2_0_1 -25742,1,26.0,297.0,9,111,300.0,0.0,0.0,0,68,0.0,0.0,414.65226827277917,360.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,0,,1,2005.0,6,106348,2,1,1,0,1,,300.0,500.0,22,2.0,0.0,3.0,2.0,1.5,1,1,1132.61542990282,300.0,9790.076226449884,0,4,2,3,75.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0367719302355774,6526.717484299923,1,1,1_1,1_1_1,1_2_1,1_0_0 -25743,2,62.0,0.0,5,111,300.0,1500.0,0.0,72,37,0.0,0.0,414.65226827277917,1800.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,2,5.0,1,,3,104802,2,1,2,0,2,,320.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,244.73324748572,300.0,80599.02146635858,5,1,0,1,110.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022332777337145542,53732.68097757239,10,5,10,10_1,10_2,10_0_0 -25744,1,27.0,322.0,2,111,0.0,0.0,1680.0,0,56,0.0,0.0,858.3344025270421,1680.0,0.0,1920.652901416421,70,2,1,2,2,1,2,2,2,0,,2,,2,123468,2,3,0,1,1,,0.0,407.0,22,3.0,2.0,5.0,6.0,3.5,2,2,221.835488600001,0.0,72310.01339108573,0,1,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.023233296762286425,20660.003826024495,5,3,5,5_0,5_2,5_0_1 -25745,2,44.0,0.0,9,111,0.0,0.0,0.0,67,47,0.0,0.0,0.0,2025.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2010.0,6,113344,1,3,0,0,1,,531.0,388.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1389.87326224999,0.0,31887.93652976353,4,1,2,3,75.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06350363869138749,17715.52029431307,4,2,4_0,4_0_0,4_2_0,4_0_0 -25746,2,48.0,0.0,5,111,400.0,800.0,0.0,42,46,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,30,0,0,0,0,0,0,0,0,4,60.0,1,,3,127793,1,2,3,0,2,,450.0,,43,2.0,0.0,4.0,3.0,2.0,1,1,238.149964853926,400.0,80154.60399017802,1,1,1,2,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014971067665022032,40077.30199508901,9,5,9,9_1,9_2,9_0_0 -25747,2,27.0,0.0,2,111,300.0,0.0,0.0,0,46,2240.377315527001,0.0,414.65226827277917,1860.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,101123,2,1,3,0,1,,170.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1119.04877537949,300.0,21107.635864380434,0,1,1,2,75.0,7,6,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08811976916556477,21107.635864380434,5,3,5,5_1,5_2,5_0_1 -25748,1,45.0,200.0,2,111,250.0,250.0,0.0,0,56,0.0,0.0,345.54355689398267,500.0,0.0,453.4132252118622,31,1,2,2,2,1,2,2,2,3,15.0,2,,2,108170,2,1,0,1,1,533.0,0.0,392.0,32,2.0,0.0,4.0,3.0,2.0,2,2,280.918908075668,250.0,17790.310568270696,0,1,2,3,72.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.028105186701560907,8895.155284135348,1,1,1_1,1_0_1,1_2_1,1_0_1 -25749,2,68.0,0.0,6,111,2200.0,0.0,0.0,78,72,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,126114,2,1,2,0,1,,200.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1153.17219042208,2200.0,51459.056109158264,5,5,0,1,145.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042752435943115986,34306.03740610551,9,5,9,9_1,9_2,9_0_0 -25750,2,68.0,0.0,6,111,5000.0,0.0,0.0,74,74,0.0,0.0,6910.871137879652,5000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116945,2,1,2,0,1,,400.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,1086.31726277965,5000.0,73218.60982127096,5,5,0,1,170.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06828864973269999,48812.40654751397,10,5,10,10_1,10_2,10_0_0 -25751,2,28.0,0.0,9,111,0.0,0.0,0.0,52,37,0.0,0.0,0.0,2736.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,120864,2,1,1,0,1,,433.0,569.0,43,2.0,0.0,4.0,3.0,1.8,3,2,1117.73436195712,0.0,11693.121831654153,4,1,2,3,90.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.23398370763515386,6496.1787953634175,1,1,1_0,1_1_0,1_2_0,1_0_0 -25752,2,48.0,0.0,2,111,0.0,0.0,840.0,0,62,0.0,0.0,429.16720126352106,840.0,0.0,960.3264507082105,41,0,0,0,0,0,0,0,0,0,,2,,2,103175,2,2,0,1,1,450.0,0.0,313.0,32,2.0,1.0,3.0,3.0,2.0,2,2,298.141569181825,0.0,22060.763225149058,0,1,2,3,68.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.038076651810595934,11030.381612574529,2,1,2_0,2_0_0,2_2_0,2_0_1 -25753,2,69.0,0.0,6,111,222.0,946.0,0.0,0,77,0.0,0.0,306.84267852185656,1168.0,0.0,1715.7156442016867,70,0,0,0,0,0,0,0,0,0,,1,,4,133229,2,2,5,0,1,,533.0,464.0,11,0.0,3.0,5.0,1.0,1.0,1,1,238.356154247582,222.0,19812.765218917626,0,5,2,3,91.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05895189223182083,19812.765218917626,5,3,5,5_1,5_2,5_0_0 -25754,2,43.0,0.0,6,111,300.0,600.0,0.0,55,34,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,20,0,0,0,0,0,0,0,0,2,7.0,1,,4,104996,2,1,2,0,1,,320.0,760.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1146.12933173274,300.0,46692.84656673242,4,1,2,3,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019274901107469197,22234.68884130115,6,3,6,6_1,6_2,6_0_0 -25755,2,55.0,0.0,9,111,329.0,987.0,0.0,78,46,0.0,41.40690019277831,454.73532087248117,1356.0,0.0,1790.075413136432,43,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,106611,2,1,1,0,1,,152.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,1114.62101235481,329.0,49090.697374391144,5,1,1,2,163.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027622341350305946,32727.131582927428,8,4,8,8_1,8_2,8_0_0 -25756,2,57.0,0.0,2,111,0.0,0.0,0.0,62,62,0.0,0.0,0.0,886.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,15.0,2,,2,101852,1,2,0,1,2,,178.0,500.0,43,3.0,2.0,5.0,3.0,2.0,3,3,289.395673885456,0.0,37186.81838478108,1,1,2,3,100.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02382564678785751,18593.40919239054,4,2,4_0,4_0_0,4_2_0,4_0_1 -25757,2,65.0,0.0,5,111,471.0,941.0,0.0,74,74,0.0,5.175862524097289,651.0040611882633,1417.0,0.0,1706.6473796974494,71,0,0,0,0,0,0,0,0,0,,1,,3,114396,2,1,1,0,1,,261.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1093.18798392121,471.0,47282.623569332405,5,5,0,1,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029968726204928034,31521.749046221605,8,4,8,8_1,8_2,8_0_0 -25758,1,82.0,80.0,5,111,700.0,0.0,0.0,0,72,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,111402,2,1,0,1,2,49.0,129.0,347.0,11,0.0,3.0,4.0,1.0,1.0,1,1,289.316256583864,700.0,12429.41240941334,0,5,2,3,77.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05631802831402225,12429.41240941334,2,1,2_1,2_0_1,2_2_1,2_0_0 -25759,2,72.0,0.0,6,111,600.0,0.0,0.0,75,75,1792.3018524216009,51.75862524097289,829.3045365455583,1950.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130193,2,1,1,0,1,,150.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,1022.55385716551,600.0,39814.602676342205,5,5,0,1,160.0,7,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04897700514185183,26543.068450894803,7,4,7,7_1,7_2,7_0_0 -25760,2,46.0,0.0,2,111,130.0,270.0,0.0,0,63,134.42263893162007,0.0,179.68264958487097,490.0,0.0,489.6862832288112,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,130162,2,1,0,1,1,52.0,160.0,280.0,12,1.0,0.0,2.0,1.0,1.0,1,1,299.233027736605,130.0,18900.684175852824,0,1,2,3,50.0,7,5,5,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025924987447068993,18900.684175852824,5,3,5,5_0,5_2,5_0_1 -25761,1,49.0,329.0,1,111,210.0,210.0,0.0,0,22,0.0,0.0,290.25658779094545,420.0,0.0,380.86710917796427,41,0,0,0,0,0,0,0,0,0,,2,,1,115107,1,3,0,1,2,,521.0,294.0,32,1.0,1.0,4.0,3.0,2.0,1,1,313.938442998361,210.0,8363.999513346718,0,1,2,3,77.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05021521095616896,4181.999756673359,1,1,1_1,1_0_1,1_2_1,1_1_0 -25762,2,46.0,0.0,7,111,410.0,900.0,0.0,34,34,0.0,0.0,566.6914333061316,1310.0,0.0,1632.287610762704,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,126482,2,2,3,0,1,,120.0,,42,1.0,0.0,7.0,5.0,2.5999999999999996,1,1,1067.62666081348,410.0,69751.63645215268,5,1,0,1,200.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018780921375208405,26827.55248159719,7,4,7,7_1,7_2,7_0_0 -25763,1,47.0,237.0,6,111,2000.0,1800.0,0.0,85,46,0.0,0.0,2764.3484551518613,4460.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,4,102733,2,1,1,0,1,,960.0,,42,1.0,1.0,8.0,10.0,4.299999999999999,2,2,1085.21175567464,2000.0,34098.38613104186,6,1,1,2,170.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.13079797920229977,7929.857239777179,1,1,1_1,1_1_1,1_2_1,1_0_0 -25764,1,47.0,235.0,2,111,0.0,0.0,120.0,0,56,0.0,0.0,61.309600180503004,120.0,0.0,137.18949295831578,71,2,1,2,2,1,2,2,2,0,,2,,2,105141,2,1,0,1,1,355.0,120.0,222.0,12,1.0,0.0,3.0,1.0,1.0,1,1,306.256524747162,0.0,6060.0,0,4,2,3,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.019801980198019802,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -25765,2,62.0,0.0,6,111,230.0,430.0,0.0,0,77,0.0,0.0,317.900072342464,660.0,0.0,779.870747364403,50,0,0,0,0,0,0,0,0,0,,1,,4,104565,2,1,1,0,1,,160.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1072.34586956947,230.0,20241.580670785235,0,5,0,1,93.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03260614922986627,20241.580670785235,5,3,5,5_1,5_2,5_0_0 -25766,1,43.0,80.0,2,111,340.0,433.0,0.0,0,52,0.0,0.0,469.9392373758164,773.0,0.0,785.3117060669454,43,1,2,2,2,2,2,2,1,2,15.0,2,,2,119503,2,1,0,1,1,,115.0,441.0,32,2.0,0.0,4.0,4.0,2.3,2,2,260.464804719486,340.0,23161.387037344168,0,1,2,3,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.033374512448397696,10070.16827710616,2,1,2_1,2_0_1,2_2_1,2_0_1 -25767,2,39.0,0.0,8,111,1200.0,0.0,0.0,0,46,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,132221,2,2,1,0,1,,200.0,,32,1.0,0.0,6.0,2.0,1.3,4,4,1021.90134996392,1200.0,35535.49808737971,0,1,1,2,115.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03376904967109987,27334.998528753622,7,4,7,7_1,7_2,7_0_0 -25768,2,70.0,0.0,2,111,1100.0,1300.0,0.0,90,72,0.0,0.0,1520.3916503335236,2400.0,0.0,2357.7487711016834,42,0,0,0,0,0,0,0,0,0,,1,,2,112120,2,3,1,0,1,,600.0,,41,0.0,2.0,5.0,2.0,1.5,4,2,255.605888096571,1100.0,50315.1478660109,5,5,0,1,125.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04769935301375231,33543.431910673935,8,4,8,8_1,8_2,8_0_1 -25769,2,73.0,0.0,2,111,430.0,830.0,0.0,78,78,0.0,207.03450096389156,594.3349178576501,1690.0,395.67521096374406,1505.3319077033825,50,0,0,0,0,0,0,0,0,0,,1,,2,129404,1,2,2,0,2,,120.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1066.88087495697,430.0,28285.96714421841,5,5,0,1,120.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0597469406431603,18857.31142947894,5,3,5,5_1,5_2,5_0_1 -25770,0,70.0,0.0,5,111,725.0,0.0,0.0,0,74,0.0,0.0,1002.0763149925497,725.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,106976,2,2,2,0,1,,170.0,,11,0.0,1.0,4.0,1.0,1.0,4,2,1128.63096717653,725.0,50059.77913060441,0,5,0,1,86.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014482684753931845,50059.77913060441,10,5,10,10_1,10_2,10_0_0 -25771,2,65.0,0.0,1,111,98.0,400.0,0.0,0,75,0.0,0.0,135.4530743024412,498.0,0.0,725.4611603389795,70,0,0,0,0,0,0,0,0,0,,1,,1,102249,2,1,2,0,1,,132.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,253.436159459788,98.0,22185.405234443526,0,5,0,1,85.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02244718970590808,22185.405234443526,6,3,6,6_1,6_2,6_1_0 -25772,2,72.0,0.0,6,111,1201.0,0.0,0.0,75,74,0.0,0.0,1659.9912473186926,1281.0,137.62616033521533,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,101425,2,1,1,0,1,,326.0,,41,0.0,1.0,5.0,2.0,1.5,4,3,1093.18798392121,1201.0,68706.96580122491,5,5,0,1,100.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018644397770468307,45804.643867483275,10,5,10,10_1,10_2,10_0_0 -25773,1,36.0,248.0,2,111,430.0,0.0,0.0,0,63,0.0,0.0,594.3349178576501,456.0,0.0,0.0,20,2,1,2,2,1,2,2,2,0,,2,,2,118768,2,2,0,1,1,,206.0,53.0,12,1.0,0.0,2.0,1.0,1.0,1,1,332.64632761656,430.0,6060.0,0,4,2,3,44.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.07524752475247524,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -25774,0,64.0,0.0,2,111,585.0,1014.0,0.0,75,75,0.0,31.055175144583732,808.5719231319193,1629.0,0.0,1839.0440414593131,20,0,0,0,0,0,0,0,0,0,,1,,2,132526,2,3,4,0,1,,525.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1027.2133733667,585.0,59206.93366349644,5,5,0,1,101.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02751366941680256,39471.289108997626,9,5,9,9_1,9_2,9_0_1 -25775,2,82.0,0.0,2,111,480.0,1000.0,0.0,77,78,0.0,0.0,663.4436292364467,1480.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,0,,1,,2,110308,2,1,2,0,2,,257.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1145.61719151661,480.0,20648.646989590154,5,5,0,1,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07167539842906559,13765.764659726769,3,2,3_0,3_1_0,3_2_0,3_0_1 -25776,2,28.0,0.0,5,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,277.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,,3,123853,2,1,0,1,1,576.0,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,1,1,286.665199960809,0.0,15430.850787506559,0,1,2,3,60.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017951051683052395,15430.850787506559,3,2,3_0,3_0_0,3_2_0,3_0_0 -25777,2,51.0,0.0,1,112,1400.0,0.0,0.0,42,34,0.0,0.0,1935.0439186063027,1560.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,108897,1,2,2,0,1,,0.0,,43,3.0,2.0,7.0,3.0,2.0,2,2,939.398129176239,1400.0,95123.07602499044,1,1,1,2,180.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01639980607429223,47561.53801249522,10,5,10,10_1,10_0,10_1_0 -25778,2,42.0,0.0,1,111,265.0,350.0,0.0,0,42,0.0,0.0,366.2761703076216,615.0,0.0,634.7785152966071,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,129172,2,2,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,225.23799153974,265.0,25477.643750459298,0,1,1,2,80.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024138809931703874,25477.643750459298,7,4,7,7_1,7_2,7_1_0 -25779,1,42.0,140.0,8,111,236.0,752.0,0.0,0,53,0.0,0.0,326.1931177079196,988.0,0.0,1363.8669814372815,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,103973,2,1,0,0,1,,110.0,331.0,22,1.0,2.0,3.0,2.0,1.5,1,1,291.809112920311,236.0,29931.92710395933,0,1,2,3,64.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03300823219863146,19954.61806930622,5,3,5,5_0,5_2,5_0_0 -25780,2,67.0,0.0,5,112,790.0,0.0,0.0,0,75,0.0,0.0,1091.917639784985,822.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,113156,2,2,2,0,1,,134.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,793.164690686456,790.0,42694.48500805674,0,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01925307214374135,42694.48500805674,9,5,9,9_1,9_0,9_0_0 -25782,2,32.0,0.0,2,112,0.0,0.0,0.0,67,37,0.0,0.0,0.0,3983.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122343,2,1,1,0,1,,226.0,750.0,43,2.0,0.0,6.0,2.0,1.5,4,4,865.543657027144,0.0,52778.733556834166,4,1,2,3,200.0,7,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07546600176965126,35185.82237122278,9,5,9,9_1,9_0,9_0_1 -25783,2,59.0,0.0,8,111,450.0,0.0,0.0,0,63,0.0,0.0,621.9784024091688,450.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,5.0,2,,6,100563,1,2,0,0,1,,0.0,458.0,12,1.0,3.0,2.0,1.0,1.0,2,2,341.587559304812,450.0,19359.35406241549,0,1,2,3,45.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02324457719762645,19359.35406241549,5,3,5,5_0,5_2,5_0_0 -25784,1,57.0,95.0,8,111,480.0,850.0,0.0,85,67,0.0,0.0,663.4436292364467,1330.0,0.0,1541.6049657203316,50,2,2,2,2,2,2,2,1,0,,1,,6,107038,1,2,1,0,1,,280.0,525.0,42,2.0,2.0,5.0,3.0,2.0,4,4,214.006480900246,480.0,23318.801324647375,6,4,2,3,84.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.05703552174417405,11659.400662323687,2,1,2_1,2_1_1,2_2_1,2_0_0 -25785,1,34.0,307.0,1,111,343.0,1580.0,0.0,85,63,0.0,0.0,474.08576005854417,1923.0,0.0,2865.571583338969,50,0,0,0,0,0,0,0,0,0,,2,,1,112683,1,3,0,0,1,,0.0,247.0,42,1.0,1.0,3.0,4.0,2.1,2,2,273.73392250812,343.0,11647.704116043387,6,4,2,3,64.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.16509691359272136,5546.52576954447,1,1,1_1,1_0_1,1_2_1,1_1_0 -25786,2,44.0,0.0,1,112,650.0,0.0,0.0,45,47,1792.3018524216009,0.0,898.4132479243549,1850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,120904,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,768.280257134635,650.0,40430.933205988986,1,1,0,1,150.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0457570442555593,17578.66661129956,4,2,4_0,4_1_0,4_0_0,4_1_0 -25787,1,64.0,270.0,2,111,269.0,0.0,0.0,0,52,0.0,0.0,371.80486721792533,269.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,2,112333,2,2,0,1,1,536.0,0.0,266.0,12,1.0,0.0,3.0,1.0,1.0,1,1,286.532097935422,269.0,6067.263766318056,0,4,2,3,57.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.044336295628571915,6067.263766318056,1,1,1_1,1_0_1,1_2_1,1_0_1 -25788,2,61.0,0.0,9,112,1880.0,0.0,0.0,74,31,0.0,0.0,2598.4875478427493,1880.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,100601,2,1,1,0,1,,432.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,898.606478528489,1880.0,64163.205908087715,5,1,1,2,133.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029300281577155852,42775.47060539181,9,5,9,9_1,9_0,9_0_0 -25789,2,67.0,0.0,2,111,320.0,120.0,0.0,0,77,0.0,0.0,442.2957528242978,440.0,0.0,217.63834810169388,41,0,0,0,0,0,0,0,0,0,,2,,2,126319,1,1,0,1,2,,0.0,249.0,11,0.0,0.0,2.0,1.0,1.0,2,2,339.726484496406,320.0,17349.100108738556,0,5,2,3,40.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025361545973118037,17349.100108738556,4,2,4_0,4_0_0,4_2_0,4_0_1 -25790,2,26.0,0.0,1,112,300.0,0.0,0.0,52,64,2240.377315527001,0.0,414.65226827277917,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,107269,2,1,1,0,1,,198.0,450.0,43,2.0,0.0,6.0,3.0,1.8,2,2,957.446418231529,300.0,34062.16282650525,1,1,2,3,170.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05284455978818062,18923.423792502916,5,3,5,5_1,5_0,5_1_0 -25791,2,66.0,0.0,5,112,314.0,64.0,0.0,75,75,1285.9765791124985,0.0,434.0027074588422,1239.0,0.0,116.07378565423673,70,0,0,0,0,0,0,0,0,0,,1,,3,118570,1,1,2,0,1,,203.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,736.10190587869,314.0,39944.67422228184,5,5,0,1,130.0,7,0,5,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031017902239114117,26629.782814854563,7,4,7,7_1,7_0,7_0_0 -25792,2,46.0,0.0,8,112,1603.0,0.0,0.0,43,63,0.0,0.0,2215.6252868042166,1803.0,344.06540083803833,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,116114,2,1,1,0,1,,226.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,733.355143312834,1603.0,45247.70341709749,1,1,1,2,90.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03984732624725238,21546.525436713087,6,3,6,6_1,6_0,6_0_0 -25793,2,40.0,0.0,9,112,1600.0,0.0,0.0,48,42,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,126194,2,1,1,0,1,,164.0,,43,2.0,1.0,7.0,4.0,2.1,1,1,751.443930568127,1600.0,55434.46183644249,1,1,1,2,144.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028862912112698886,26397.36277925833,7,4,7,7_1,7_0,7_0_0 -25794,2,33.0,0.0,2,112,1460.0,0.0,0.0,54,62,0.0,310.55175144583734,2017.9743722608587,1960.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,109493,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,797.287189962128,1460.0,45842.14003515924,1,1,1,2,130.0,7,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04275542107102225,21829.59049293297,6,3,6,6_1,6_0,6_0_1 -25795,2,84.0,0.0,1,112,674.0,0.0,0.0,71,71,0.0,0.0,931.5854293861772,770.0,165.1513924022584,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105316,2,1,3,0,1,,140.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,681.377880698699,674.0,16705.304322503816,5,5,0,1,90.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04609314413762151,11136.869548335877,2,1,2_0,2_1_0,2_0_0,2_1_0 -25796,2,57.0,0.0,9,112,1650.0,0.0,0.0,33,74,1493.5848770180007,0.0,2280.5874755002856,2716.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,117458,2,1,2,0,1,,240.0,,42,1.0,1.0,7.0,3.0,2.0,5,4,885.909600765568,1650.0,139965.39429536357,1,5,1,2,240.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019404796547556107,69982.69714768179,10,5,10,10_1,10_0,10_0_0 -25797,2,72.0,0.0,1,112,494.0,0.0,0.0,0,78,1995.429395696049,662.510403084453,682.7940684225097,2598.0,220.20185653634454,0.0,10,2,2,2,1,1,2,2,2,0,,1,,1,132540,1,3,4,0,2,,0.0,541.0,11,0.0,2.0,6.0,1.0,1.0,2,2,986.777550765488,494.0,21331.611785929766,0,5,2,3,200.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.12179107823974318,21331.611785929766,6,3,6,6_1,6_0,6_1_0 -25798,2,41.0,0.0,2,112,600.0,0.0,0.0,0,21,2987.1697540360015,0.0,829.3045365455583,2645.0,77.41471518855863,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,114629,2,1,1,0,1,,360.0,,32,1.0,0.0,5.0,4.0,2.1,1,1,773.341763461083,600.0,11364.425595388928,0,1,0,1,180.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.23274383538339136,5411.631235899489,1,1,1_0,1_1_0,1_0_0,1_0_1 -25799,2,61.0,0.0,6,112,1200.0,0.0,0.0,78,54,0.0,0.0,1658.6090730911167,1390.0,326.8621307961364,0.0,30,0,0,0,0,0,0,0,0,1,5.0,1,,4,125793,2,1,2,0,1,,123.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,879.797024687738,1200.0,48518.67313691833,5,1,0,1,90.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028648763664197063,24259.336568459166,7,4,7,7_1,7_0,7_0_0 -25800,2,84.0,0.0,1,112,362.0,0.0,0.0,0,78,4140.217279093898,0.0,500.3470703824869,3198.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105131,1,3,3,0,2,,67.0,,11,0.0,6.0,5.0,1.0,1.0,4,4,857.369454653755,362.0,11425.062541545472,0,5,0,1,180.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2799109403883758,11425.062541545472,2,1,2_0,2_1_0,2_0_0,2_1_0 -25801,2,31.0,0.0,9,112,1100.0,0.0,0.0,42,42,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,105030,2,1,1,0,1,,240.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,774.211272154444,1100.0,55132.01081644131,1,1,1,2,140.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0199521110097432,26253.33848401967,7,4,7,7_1,7_0,7_0_0 -25802,2,67.0,0.0,1,112,600.0,0.0,0.0,77,78,0.0,0.0,829.3045365455583,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,133446,2,1,2,0,1,,120.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,726.255255270748,600.0,20830.651295797117,5,5,0,1,80.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028803708126066065,13887.100863864745,3,2,3_0,3_1_0,3_0_0,3_1_0 -25803,2,66.0,0.0,1,112,1800.0,0.0,0.0,74,74,0.0,103.51725048194578,2487.913609636675,1900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117580,2,3,2,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,815.418490124727,1800.0,66775.5791536073,5,5,0,1,160.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028453515852394667,44517.05276907153,10,5,10,10_1,10_0,10_1_0 -25804,2,46.0,0.0,1,112,1720.0,0.0,0.0,46,62,0.0,0.0,2377.3396714306004,1784.0,110.10092826817227,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,1,131812,2,1,1,0,1,,880.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,792.027001403165,1720.0,33474.18293297404,1,1,1,2,120.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05329480344814197,15940.08711094002,3,2,3_0,3_1_0,3_0_0,3_1_0 -25805,2,41.0,0.0,7,112,1988.0,0.0,0.0,42,23,0.0,207.03450096389156,2747.76236442095,2188.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,1.0,1,,5,110586,2,1,2,0,1,,521.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,739.689121931862,1988.0,106398.0,1,1,1,2,110.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020564296321359424,46260.0,10,5,10,10_1,10_0,10_0_0 -25806,2,43.0,0.0,9,112,597.0,0.0,0.0,0,62,0.0,0.0,825.1580138628306,661.0,110.10092826817227,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,123048,2,1,1,0,1,,165.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,810.61301472886,597.0,19324.722439772147,0,1,1,2,99.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03420488972403547,14865.171107517035,3,2,3_0,3_1_0,3_0_0,3_0_0 -25807,0,51.0,0.0,1,112,400.0,0.0,0.0,34,34,3584.6037048432017,0.0,552.8696910303722,2900.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,,1,105777,1,2,4,0,2,,220.0,,43,2.0,1.0,4.0,2.0,1.5,3,2,903.836756139909,400.0,82083.34969791751,1,1,0,1,150.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.035329942195007354,54722.23313194501,10,5,10,10_1,10_0,10_1_0 -25808,2,24.0,0.0,8,112,0.0,0.0,0.0,55,67,0.0,0.0,0.0,2043.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,104795,2,1,1,0,1,,121.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,718.765001042879,0.0,35876.31043468359,1,1,1,2,75.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05694565509236201,23917.54028978906,6,3,6,6_1,6_0,6_0_0 -25809,2,45.0,0.0,9,112,1000.0,0.0,0.0,52,37,0.0,414.0690019277831,1382.1742275759307,1400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,129132,2,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,760.89201434529,1000.0,58097.03800999244,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024097614060104168,25259.581743474973,7,4,7,7_1,7_0,7_0_0 -25810,2,58.0,0.0,6,112,450.0,0.0,0.0,78,62,0.0,0.0,621.9784024091688,550.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,112785,2,2,1,0,1,,250.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,816.732744158588,450.0,29626.615895075163,7,1,0,1,123.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01856438824966933,19751.077263383442,5,3,5,5_1,5_0,5_0_0 -25811,2,65.0,0.0,1,112,800.0,0.0,0.0,77,74,0.0,0.0,1105.7393820607444,832.0,55.050464134086134,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,115825,2,1,1,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,750.125241092377,800.0,40525.09589911055,5,5,0,1,90.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020530488122009867,27016.730599407034,7,4,7,7_1,7_0,7_1_0 -25812,2,71.0,0.0,5,112,609.0,0.0,0.0,78,78,2646.632402075897,0.0,841.7441045937417,2509.0,220.20185653634454,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,132353,2,2,2,0,1,,140.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,816.82981762217,609.0,22355.692273332475,5,5,0,1,160.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1122309239778238,14903.794848888318,3,2,3_0,3_1_0,3_0_0,3_0_0 -25813,2,48.0,0.0,7,112,600.0,0.0,0.0,56,63,2240.377315527001,0.0,829.3045365455583,2164.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,117105,2,2,2,0,1,,212.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,689.822322536728,600.0,44468.866501555174,1,1,0,1,114.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04866325971956852,17787.54660062207,4,2,4_0,4_1_0,4_0_0,4_0_0 -25814,2,81.0,0.0,1,112,1350.0,0.0,0.0,0,77,0.0,0.0,1865.9352072275062,1478.0,220.20185653634454,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113632,2,2,1,0,1,,146.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,935.142790958595,1350.0,12901.868113083508,0,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11455705383480023,12901.868113083508,2,1,2_0,2_1_0,2_0_0,2_1_0 -25815,2,37.0,0.0,9,112,630.0,0.0,0.0,67,21,746.7924385090004,0.0,870.7697633728362,1194.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,111310,2,2,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.3,5,4,699.812994570225,630.0,40345.279443735315,1,1,1,2,113.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029594540339350668,17541.425845102312,4,2,4_0,4_1_0,4_0_0,4_0_0 -25816,0,82.0,0.0,1,112,360.0,0.0,0.0,0,71,1754.9622304961508,0.0,497.582721927335,1663.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117817,1,2,4,0,2,,226.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,971.550156264685,360.0,13868.013400982276,0,5,0,1,120.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11991623831876375,13868.013400982276,3,2,3_0,3_1_0,3_0_0,3_1_0 -25817,2,58.0,0.0,2,112,1130.0,0.0,0.0,86,11,2987.1697540360015,0.0,1561.8568771608016,3258.0,220.20185653634454,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,128131,2,2,1,0,1,,120.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,763.632242588405,1130.0,64412.35272090568,5,1,0,1,100.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05058036016968191,42941.56848060378,9,5,9,9_1,9_0,9_0_1 -25818,2,52.0,0.0,7,112,458.0,0.0,0.0,67,64,0.0,0.0,633.0357962297762,586.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,132359,2,1,1,0,1,,329.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,871.873402881247,458.0,44011.323858338685,1,1,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013314755127252834,22005.661929169342,6,3,6,6_1,6_0,6_0_0 -25819,2,65.0,0.0,1,112,1100.0,0.0,0.0,67,78,0.0,414.0690019277831,1520.3916503335236,1630.0,223.64251054472493,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,113690,1,2,3,0,2,,0.0,250.0,42,1.0,0.0,4.0,3.0,2.0,1,1,1089.37305446069,1100.0,23285.98984876997,1,5,2,3,106.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06999917163006499,11642.994924384984,2,1,2_0,2_1_0,2_0_0,2_1_0 -25820,0,60.0,0.0,1,112,0.0,0.0,0.0,0,11,2987.1697540360015,0.0,0.0,3040.0,220.20185653634454,0.0,41,2,2,1,2,1,2,2,2,0,,1,,1,117704,2,2,3,0,2,,240.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,809.250593173927,0.0,84236.69572157848,0,1,0,1,100.0,7,0,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03608878498805194,56157.797147718986,10,5,10,10_1,10_0,10_1_0 -25821,0,87.0,0.0,1,112,1200.0,0.0,0.0,0,86,0.0,0.0,1658.6090730911167,1326.0,216.76120252796414,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123552,2,1,4,0,1,,110.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,906.767730302917,1200.0,9790.644791230763,0,5,0,1,120.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1354354108717809,9790.644791230763,2,1,2_0,2_1_0,2_0_0,2_1_0 -25822,1,60.0,250.0,9,400,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1546.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,122970,2,1,1,0,1,,267.0,232.0,11,0.0,8.0,2.0,1.0,1.0,4,4,2058.34017852372,0.0,6672.884688090737,0,6,2,3,50.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.2316839076747699,6672.884688090737,1,1,1_1,1_1_1,1_0_1,1_0_0 -25824,2,53.0,0.0,9,400,0.0,0.0,0.0,52,62,0.0,0.0,0.0,2384.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,125985,2,1,1,0,1,,707.0,550.0,43,2.0,4.0,4.0,2.0,1.5,2,2,1947.54996773588,0.0,39562.365591807844,1,1,2,3,100.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06025928845098316,26374.91039453856,7,4,7,7_1,7_0,7_0_0 -25825,2,56.0,0.0,6,400,378.0,0.0,0.0,54,64,746.7924385090004,0.0,522.4618580237018,1028.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,108148,2,1,1,0,1,,180.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1614.47849578453,378.0,42811.57586189995,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024012197152379663,28541.05057459997,8,4,8,8_1,8_0,8_0_0 -25826,2,80.0,0.0,1,400,500.0,0.0,0.0,0,75,2987.1697540360015,0.0,691.0871137879653,2590.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107172,2,1,3,0,1,,400.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1791.44410001827,500.0,9054.068102435005,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.28605925763949624,9054.068102435005,1,1,1_0,1_1_0,1_0_0,1_1_0 -25827,1,33.0,43.0,2,400,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1071.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,113337,2,2,3,0,1,,0.0,400.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2195.88863599655,0.0,19183.77056328144,0,1,2,3,64.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05582844084102736,19183.77056328144,5,3,5,5_1,5_0,5_0_1 -25828,2,77.0,0.0,5,400,530.0,0.0,0.0,77,78,2091.018827825201,0.0,732.5523406152432,2015.0,146.2277953561663,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,124217,2,1,2,0,2,,148.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1614.47849578453,530.0,18589.431411764577,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1083949237266493,12392.954274509719,2,1,2_0,2_1_0,2_0_0,2_0_0 -25829,2,41.0,0.0,6,400,1320.0,0.0,0.0,0,46,0.0,0.0,1824.4699804002285,1410.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,124068,2,1,2,0,1,,260.0,418.0,12,1.0,1.0,3.0,1.0,1.0,6,6,1787.83553168933,1320.0,16859.4357574432,0,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08363269211886318,16859.4357574432,4,2,4_0,4_1_0,4_0_0,4_0_0 -25830,2,83.0,0.0,2,400,300.0,0.0,0.0,0,86,0.0,465.827627168756,414.65226827277917,780.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104225,2,1,2,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1803.45252911371,300.0,14221.532411638122,0,6,0,1,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.054846410177407524,14221.532411638122,3,2,3_0,3_1_0,3_0_0,3_0_1 -25832,2,76.0,0.0,2,400,385.0,0.0,0.0,0,62,1792.3018524216009,0.0,532.1370776167332,1685.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107930,2,1,1,0,1,,283.0,,22,3.0,0.0,4.0,3.0,2.0,5,4,2072.67086283138,385.0,41665.1900830609,0,4,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.040441433163772876,20832.59504153045,5,3,5,5_1,5_0,5_0_1 -25833,2,90.0,0.0,1,400,400.0,0.0,0.0,0,86,4480.754631054002,0.0,552.8696910303722,3530.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119912,1,3,4,0,2,,184.0,,11,0.0,3.0,4.0,1.0,1.0,3,1,1791.44410001827,400.0,11399.80052117747,0,6,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.30965454118625146,11399.80052117747,2,1,2_0,2_1_0,2_0_0,2_1_0 -25834,2,82.0,0.0,2,400,552.0,0.0,0.0,72,86,1792.3018524216009,0.0,762.9601736219137,1907.0,266.6506856494797,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,110755,2,2,1,0,1,,316.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1616.71861241667,552.0,20618.8676253022,5,6,0,1,99.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0924881052953581,13745.911750201465,3,2,3_0,3_1_0,3_0_0,3_0_1 -25835,0,70.0,0.0,1,400,1000.0,0.0,0.0,0,77,0.0,724.6207533736205,1382.1742275759307,1730.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112415,2,1,4,0,1,,100.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,2024.75118592152,1000.0,21164.4014233711,0,5,5,0,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08174103133810448,21164.4014233711,5,3,5,5_1,5_0,5_1_0 -25836,1,32.0,200.0,1,400,1210.0,0.0,0.0,0,52,0.0,672.8621281326475,1672.430815366876,2060.0,344.06540083803833,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,1,107786,2,1,3,0,1,,340.0,,32,1.0,0.0,5.0,4.0,1.9,3,2,1746.87172672606,1210.0,28009.851057861535,0,1,1,2,135.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07354555351774422,14742.026872558703,3,2,3_1,3_1_1,3_0_1,3_1_0 -25837,2,36.0,0.0,6,400,930.0,0.0,0.0,56,64,0.0,0.0,1285.4220316456153,930.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,114053,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1686.40763564031,930.0,33776.82871970103,4,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027533668353463818,16084.204152238584,4,2,4_0,4_1_0,4_0_0,4_0_0 -25838,2,61.0,0.0,6,400,2000.0,0.0,0.0,0,56,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,133601,2,1,1,0,1,,230.0,,22,1.0,3.0,5.0,5.0,2.8,2,2,1607.84755747958,2000.0,16477.17576898872,0,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12138002458917443,5884.705631781686,1,1,1_0,1_1_0,1_0_0,1_0_0 -25839,2,88.0,0.0,1,400,1100.0,0.0,0.0,86,78,0.0,0.0,1520.3916503335236,1290.0,326.8621307961364,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133047,2,2,3,0,1,,150.0,319.0,41,0.0,3.0,4.0,2.0,1.5,2,2,2169.56411040008,1100.0,14475.458722602423,6,5,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08911634682676789,9650.305815068283,1,1,1_0,1_1_0,1_0_0,1_1_0 -25840,0,73.0,0.0,5,400,700.0,0.0,0.0,0,75,0.0,0.0,967.5219593031513,765.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,133571,2,1,3,0,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,2048.86666484581,700.0,22306.447161103297,0,5,5,0,114.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03429501769039953,22306.447161103297,6,3,6,6_1,6_0,6_0_0 -25841,2,49.0,0.0,1,400,580.0,0.0,0.0,85,85,3733.962192545002,0.0,801.6610519940398,3230.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,118880,2,1,1,0,1,,100.0,,41,1.0,1.0,7.0,4.0,2.3,2,2,1706.33192806397,580.0,22833.49930757687,6,5,0,1,180.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14145882575817825,9927.60839459864,2,1,2_0,2_1_0,2_0_0,2_1_0 -25842,2,64.0,0.0,1,400,488.0,0.0,0.0,0,71,0.0,0.0,674.5010230570541,578.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124777,2,3,4,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1831.54526126314,488.0,10216.465929211612,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05657533671671563,10216.465929211612,2,1,2_0,2_1_0,2_0_0,2_1_0 -25843,2,44.0,0.0,7,400,1591.0,0.0,0.0,22,22,0.0,0.0,2199.0391960733054,1591.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,128616,2,1,1,0,1,,219.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,1924.88416129526,1591.0,53230.56373174528,1,1,1,2,170.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02988884371050105,26615.28186587264,7,4,7,7_1,7_0,7_0_0 -25844,2,66.0,0.0,1,400,756.0,0.0,0.0,75,74,1971.532037663761,103.51725048194578,1044.9237160474036,2176.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120611,2,1,1,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1911.62425431814,756.0,60496.264696624916,5,5,1,2,194.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03596916290472061,40330.843131083275,9,5,9,9_1,9_0,9_1_0 -25845,0,81.0,0.0,5,400,250.0,0.0,0.0,0,71,0.0,0.0,345.54355689398267,285.0,60.21144514665671,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,122597,2,1,1,0,1,,100.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1785.03653961178,250.0,16233.768938187335,0,5,0,1,65.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01755599707530537,16233.768938187335,4,2,4_0,4_1_0,4_0_0,4_0_0 -25846,1,28.0,325.0,5,400,1272.0,0.0,0.0,69,52,0.0,0.0,1758.1256174765836,1404.0,227.0831645531053,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,3,108182,2,2,5,0,1,,499.0,408.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1534.96045941489,1272.0,25981.02160721532,4,1,2,3,75.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05403944545468097,12371.915051054913,2,1,2_1,2_1_1,2_0_1,2_0_0 -25847,2,64.0,0.0,9,400,405.0,0.0,0.0,78,78,0.0,0.0,559.7805621682519,1725.0,2270.8316455310533,0.0,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,116221,2,1,1,0,1,,304.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1913.98583335568,405.0,31834.8511276315,5,5,0,1,119.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05418589812417129,21223.234085087668,5,3,5,5_1,5_0,5_0_0 -25848,2,48.0,0.0,6,400,600.0,0.0,0.0,65,52,1792.3018524216009,0.0,829.3045365455583,1860.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,127747,2,1,3,0,1,,202.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1724.30329499847,600.0,38021.75292803507,1,1,0,1,89.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04891936475207965,25347.835285356716,7,4,7,7_1,7_0,7_0_0 -25849,2,69.0,0.0,9,400,473.0,0.0,0.0,0,77,0.0,0.0,653.7684096434151,533.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,100585,2,1,1,0,1,,155.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1984.75584315587,473.0,22075.474574396372,0,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024144441298588674,22075.474574396372,6,3,6,6_1,6_0,6_0_0 -25850,0,71.0,0.0,1,400,700.0,0.0,0.0,0,72,0.0,0.0,967.5219593031513,890.0,326.8621307961364,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129632,2,2,2,0,1,,120.0,,21,0.0,0.0,5.0,2.0,1.5,6,3,1840.02773457198,700.0,18146.642895803525,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04904488423067033,12097.761930535684,2,1,2_0,2_1_0,2_0_0,2_1_0 -25851,2,59.0,0.0,1,400,1242.0,0.0,0.0,72,56,4501.664819332254,0.0,1716.6603906493058,4376.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107566,2,3,3,0,1,,339.0,,42,1.0,1.0,4.0,2.0,1.5,4,3,1911.3969650716,1242.0,35259.507759528984,5,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12410836900629656,23506.338506352655,6,3,6,6_1,6_0,6_1_0 -25852,2,52.0,0.0,2,400,2015.0,0.0,0.0,54,48,0.0,0.0,2785.0810685655,2105.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,106171,2,1,1,0,1,,145.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1673.70643125001,2015.0,53988.485045303554,1,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03898979566167904,35992.3233635357,9,5,9,9_1,9_0,9_0_1 -25853,2,36.0,0.0,9,400,1300.0,0.0,0.0,0,62,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,131473,2,1,1,0,1,,170.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1784.26327724965,1300.0,20522.51105917141,0,1,1,2,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06334507489126368,15786.546968593393,3,2,3_0,3_1_0,3_0_0,3_0_0 -25854,2,68.0,0.0,1,400,200.0,0.0,0.0,71,11,0.0,0.0,276.4348455151861,570.0,636.5209915503709,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,108499,1,2,4,0,2,,120.0,,42,2.0,1.0,4.0,3.0,2.0,1,1,1872.99548637704,200.0,37777.61846212884,5,1,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.015088298924174147,18888.80923106442,5,3,5,5_1,5_0,5_1_0 -25855,0,76.0,0.0,1,400,250.0,0.0,0.0,0,71,0.0,828.1380038555662,345.54355689398267,1230.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105614,1,1,4,0,2,,170.0,,21,0.0,3.0,4.0,3.0,2.0,3,3,2405.26092172553,250.0,21057.0,0,5,5,0,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05841287932753954,10528.5,2,1,2_0,2_1_0,2_0_0,2_1_0 -25856,2,85.0,0.0,1,112,1000.0,0.0,0.0,0,78,0.0,517.5862524097289,1382.1742275759307,1535.0,60.21144514665671,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,128398,2,1,2,0,1,,100.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1783.04997152414,1000.0,24759.306323258028,0,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06199689037968219,24759.306323258028,7,4,7,7_1,7_0,7_1_0 -25857,2,37.0,0.0,9,112,1100.0,0.0,0.0,46,62,0.0,0.0,1520.3916503335236,1230.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,127924,2,1,1,0,1,,700.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,1507.07482411211,1100.0,44330.59619850619,1,1,1,2,106.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02774607394162336,18471.08174937758,4,2,4_0,4_1_0,4_0_0,4_0_0 -25858,2,35.0,0.0,7,112,1000.0,0.0,0.0,42,21,0.0,0.0,1382.1742275759307,1035.0,60.21144514665671,0.0,31,2,2,2,1,2,2,2,2,0,,1,,5,127374,2,1,1,0,1,,300.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1596.95437344876,1000.0,43495.120477127464,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.02379577269004852,28996.746984751644,8,4,8,8_1,8_0,8_0_0 -25859,2,38.0,0.0,1,112,1600.0,0.0,0.0,43,38,0.0,207.03450096389156,2211.478764121489,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109935,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1402.27252596267,1600.0,22064.52266226642,1,1,1,2,110.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08157892321315724,10506.9155534602,2,1,2_0,2_1_0,2_0_0,2_1_0 -25860,1,35.0,128.0,1,112,1150.0,0.0,0.0,0,63,0.0,0.0,1589.5003617123202,1196.0,79.13504219274881,0.0,41,2,2,1,1,2,2,2,2,2,60.0,1,,1,118279,1,2,4,0,2,,2500.0,500.0,12,1.0,0.0,3.0,1.0,1.0,5,3,1879.59000369304,1150.0,8058.625524764695,0,1,2,3,90.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0.14841240560497718,8058.625524764695,1,1,1_1,1_1_1,1_0_1,1_1_0 -25861,2,54.0,0.0,1,112,350.0,0.0,0.0,0,37,2240.377315527001,207.03450096389156,483.76097965157567,2063.0,22.364251054472494,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,109951,2,1,4,0,1,,300.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,1748.1247749658,350.0,38357.0,0,1,1,2,100.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.053784185415960584,38357.0,9,5,9,9_1,9_0,9_1_0 -25862,2,68.0,0.0,1,112,1200.0,0.0,0.0,77,74,0.0,621.1035028916747,1658.6090730911167,1870.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106735,2,1,2,0,1,,450.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1523.11575577982,1200.0,39424.39350224201,6,5,0,1,120.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04743256227628855,26282.929001494675,7,4,7,7_1,7_0,7_1_0 -25863,2,27.0,0.0,9,112,1200.0,0.0,0.0,67,52,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,103233,2,1,1,0,1,,280.0,750.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1888.54227147786,1200.0,26806.0,4,1,2,3,85.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04700440199955234,14892.222222222223,3,2,3_0,3_1_0,3_0_0,3_0_0 -25864,2,73.0,0.0,5,112,840.0,0.0,0.0,0,78,0.0,0.0,1161.0263511637818,890.0,86.01635020950958,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,128033,2,1,2,0,1,,180.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1555.25347023138,840.0,22703.054124772716,0,5,0,1,105.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039201774136144334,22703.054124772716,6,3,6,6_1,6_0,6_0_0 -25865,2,24.0,0.0,7,112,0.0,0.0,0.0,56,67,0.0,0.0,0.0,441.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,127408,2,2,5,0,1,,149.0,517.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1565.72306831188,0.0,31397.01336586495,4,1,2,3,85.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01404592197547867,17442.785203258307,4,2,4_0,4_1_0,4_0_0,4_0_0 -25866,2,56.0,0.0,7,112,2000.0,0.0,0.0,21,56,0.0,0.0,2764.3484551518613,2075.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,108958,2,1,1,0,1,,500.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,1481.6972900064,2000.0,52505.04400019217,1,1,0,1,150.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03952001259140751,35003.362666794776,9,5,9,9_1,9_0,9_0_0 -25867,2,78.0,0.0,7,112,1000.0,0.0,0.0,78,77,0.0,0.0,1382.1742275759307,1080.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,108434,2,1,1,0,1,,600.0,,41,0.0,1.0,3.0,2.0,1.5,3,2,1334.40788179953,1000.0,22900.97689415471,5,5,0,1,50.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04715956026642956,15267.317929436475,3,2,3_0,3_1_0,3_0_0,3_0_0 -25868,2,90.0,0.0,2,112,250.0,0.0,0.0,72,75,3733.962192545002,0.0,345.54355689398267,2825.0,129.02452531426437,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,105592,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,1782.12645213263,250.0,48049.0354814419,6,5,0,1,120.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05879410422486227,32032.690320961265,8,4,8,8_1,8_0,8_0_1 -25869,2,75.0,0.0,1,112,980.0,0.0,0.0,77,78,0.0,465.827627168756,1354.530743024412,1530.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,130451,2,1,1,0,1,,720.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,1585.60852247917,980.0,31801.374395335297,5,5,0,1,70.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0481111281852153,21200.916263556865,5,3,5,5_1,5_0,5_1_0 -25870,2,38.0,0.0,9,112,1100.0,0.0,0.0,84,63,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,110083,2,2,1,0,1,,500.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1546.84140143398,1100.0,37128.952139386645,3,2,1,2,95.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029626475745139935,17680.453399707927,4,2,4_0,4_1_0,4_0_0,4_0_0 -25871,2,89.0,0.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,875.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127122,2,1,2,0,1,,168.0,,11,0.0,2.0,7.0,1.0,1.0,4,3,1731.8189061925,0.0,11764.735623880817,0,5,0,1,120.0,7,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07437481197825378,11764.735623880817,2,1,2_0,2_1_0,2_0_0,2_1_0 -25872,2,63.0,0.0,1,112,2248.0,0.0,0.0,77,74,0.0,0.0,3107.127663590692,2368.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122473,2,1,1,0,1,,420.0,,41,0.0,3.0,6.0,2.0,1.5,4,3,1531.54869464464,2248.0,48210.71667808201,5,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04911770998576674,32140.477785388008,8,4,8,8_1,8_0,8_1_0 -25873,2,66.0,0.0,1,112,2000.0,0.0,0.0,74,75,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,115073,2,1,3,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1551.62004370619,2000.0,106833.46292334486,5,5,0,1,230.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.018720726121505955,71222.30861556325,10,5,10,10_1,10_0,10_1_0 -25874,2,33.0,0.0,1,112,1500.0,0.0,0.0,56,38,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,50,2,2,2,2,1,2,2,2,2,40.0,1,,1,100672,1,3,4,0,1,,1200.0,550.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1683.18456657273,1500.0,28696.9531129617,1,1,2,3,95.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.05436117185888236,15942.751729423166,3,2,3_0,3_1_0,3_0_0,3_1_0 -25875,2,69.0,0.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2149.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,117244,2,2,1,0,1,,151.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1603.53176764461,0.0,20925.129551250193,0,5,1,2,72.0,7,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10269948363935485,20925.129551250193,5,3,5,5_1,5_0,5_1_0 -25876,2,38.0,0.0,7,112,1380.0,0.0,0.0,47,34,0.0,0.0,1907.4004340547842,1380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,128975,2,2,1,0,1,,520.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1493.10447845317,1380.0,64341.82965326749,1,1,1,2,120.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021447944633167876,30638.966501555944,8,4,8,8_1,8_0,8_0_0 -25877,1,25.0,300.0,9,112,1000.0,0.0,0.0,0,52,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,116918,2,1,1,0,1,,350.0,445.0,32,1.0,0.0,3.0,2.0,1.3,2,1,1539.8602206928,1000.0,16145.0,0,1,2,3,65.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06193868070610096,12419.23076923077,2,1,2_1,2_1_1,2_0_1,2_0_0 -25878,2,43.0,0.0,2,112,1200.0,0.0,0.0,54,37,0.0,0.0,1658.6090730911167,1360.0,275.25232067043066,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,118437,2,3,1,0,1,,500.0,,43,3.0,0.0,5.0,5.0,3.0,2,2,1353.84860408055,1200.0,70690.28425516376,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019238853179468652,23563.428085054587,6,3,6,6_1,6_0,6_0_1 -25879,2,78.0,0.0,5,112,1000.0,0.0,0.0,78,77,0.0,0.0,1382.1742275759307,1240.0,412.878481005646,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,110921,2,1,3,0,1,,402.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1538.34752557757,1000.0,19702.132966418678,5,5,0,1,110.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06293734805838126,13134.755310945786,2,1,2_0,2_1_0,2_0_0,2_0_0 -25880,2,49.0,0.0,9,112,1400.0,0.0,0.0,52,21,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,120771,2,1,1,0,1,,600.0,,43,3.0,1.0,4.0,4.0,2.3,2,2,1370.98460657268,1400.0,60406.11703811464,1,1,1,2,103.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023176460740170365,26263.529147006368,7,4,7,7_1,7_0,7_0_0 -25881,1,40.0,127.0,7,112,0.0,0.0,0.0,81,42,0.0,0.0,0.0,1761.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,5,117528,2,2,2,0,1,,156.0,566.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1262.29748886279,0.0,18400.00279681045,4,1,2,3,84.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09570650719168698,12266.668531206968,2,1,2_1,2_1_1,2_0_1,2_0_0 -25882,2,64.0,0.0,8,112,1500.0,0.0,0.0,77,75,0.0,351.95865163861566,2073.261341363896,1900.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,2003.0,6,111250,2,1,1,0,1,,500.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1584.60602103667,1500.0,54047.02304160377,5,5,0,1,134.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03515457268640749,36031.34869440251,9,5,9,9_1,9_0,9_0_0 -25883,2,31.0,0.0,2,112,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,100009,2,3,3,0,1,,169.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,1534.27205231379,0.0,19905.608255702824,0,1,1,2,71.0,7,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09846471279964394,15312.006350540632,3,2,3_0,3_1_0,3_0_0,3_0_1 -25884,2,36.0,0.0,1,112,900.0,0.0,0.0,45,46,3733.962192545002,0.0,1243.9568048183376,3400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,101241,1,1,2,0,1,,600.0,,43,2.0,0.0,7.0,3.0,1.8,4,3,1840.3493283727,900.0,71427.92932832913,1,1,1,2,170.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047600427899448024,39682.18296018285,9,5,9,9_1,9_0,9_1_0 -25885,0,28.0,0.0,2,112,0.0,0.0,0.0,55,55,0.0,0.0,0.0,1248.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,119653,2,1,1,0,1,,286.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,1636.06524857655,0.0,16968.0,4,4,5,0,110.0,7,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07355021216407355,11312.0,2,1,2_0,2_1_0,2_0_0,2_0_1 -25886,2,40.0,0.0,8,112,1200.0,0.0,0.0,42,42,0.0,828.1380038555662,1658.6090730911167,2075.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,115371,2,1,1,0,1,,800.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1383.41324765295,1200.0,57691.89757746931,1,1,1,2,123.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035966922343188094,24038.29065727888,6,3,6,6_1,6_0,6_0_0 -25887,2,44.0,0.0,7,112,1000.0,75.0,0.0,0,52,0.0,0.0,1382.1742275759307,1075.0,0.0,136.02396756355867,10,2,2,2,2,2,1,1,2,2,20.0,1,,5,120081,1,1,2,0,1,,500.0,495.0,32,2.0,0.0,3.0,2.0,1.5,2,2,1298.69508846119,1000.0,21519.540498653863,0,1,2,3,68.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.04995459824373321,14346.360332435908,3,2,3_0,3_1_0,3_0_0,3_0_0 -25888,2,33.0,0.0,9,112,518.0,0.0,0.0,65,54,0.0,0.0,715.966249884332,1818.0,2236.4251054472493,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,125543,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1120.7338597468,518.0,38045.182548024604,1,1,1,2,90.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04778528786673925,21136.212526680334,5,3,5,5_1,5_1,5_0_0 -25889,2,51.0,0.0,8,112,1600.0,0.0,0.0,52,48,0.0,0.0,2211.478764121489,1730.0,223.64251054472493,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,118274,2,1,1,0,1,,150.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,1073.73246788561,1600.0,45480.83128160848,4,1,1,2,90.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03803800307184747,25267.128489782488,7,4,7,7_1,7_1,7_0_0 -25890,2,39.0,0.0,2,112,1500.0,0.0,0.0,52,64,0.0,0.0,2073.261341363896,1610.0,189.2359704609211,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,132877,1,1,3,0,2,,550.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,921.653127612846,1500.0,39542.73990108732,1,1,1,2,120.0,6,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.040715438637466024,17192.4956091684,4,2,4_0,4_1_0,4_1_0,4_0_1 -25891,2,70.0,0.0,6,112,460.0,0.0,0.0,77,77,2091.018827825201,0.0,635.800144684928,1965.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,122911,2,2,2,0,1,,410.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,979.151684665282,460.0,37311.16407141858,5,5,0,1,165.0,6,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052665202196284365,24874.10938094572,7,4,7,7_1,7_1,7_0_0 -25892,0,41.0,0.0,2,112,0.0,0.0,0.0,22,22,0.0,0.0,0.0,1077.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121329,2,2,3,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1103.16462513212,0.0,89002.26028462958,1,1,5,0,74.0,6,1,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.012100816277651262,42382.02870696646,9,5,9,9_1,9_1,9_0_1 -25893,2,54.0,0.0,7,112,800.0,0.0,0.0,85,63,0.0,621.1035028916747,1105.7393820607444,1600.0,344.06540083803833,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,131652,2,2,3,0,1,,500.0,,42,1.0,5.0,5.0,5.0,3.0,5,5,1045.49665622415,800.0,21186.11335368118,6,4,0,1,122.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07552116677984227,7062.037784560393,1,1,1_0,1_1_0,1_1_0,1_0_0 -25894,2,22.0,0.0,2,112,0.0,0.0,0.0,55,56,0.0,0.0,0.0,1548.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,113863,2,2,2,0,1,,531.0,500.0,43,2.0,0.0,4.0,2.0,1.5,3,2,1211.96214733805,0.0,16860.869665966115,4,1,2,3,80.0,6,1,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09181021090060723,11240.579777310742,2,1,2_0,2_1_0,2_1_0,2_0_1 -25895,2,23.0,0.0,9,112,0.0,0.0,0.0,69,42,0.0,0.0,0.0,1085.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108740,2,1,2,0,1,,265.0,670.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1068.98596275057,0.0,27162.000000000004,1,4,2,3,90.0,6,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03994551211251012,18108.000000000004,4,2,4_0,4_1_0,4_1_0,4_0_0 -25896,2,29.0,0.0,9,112,920.0,0.0,0.0,42,46,0.0,0.0,1271.600289369856,920.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,116064,2,1,1,0,1,,460.0,645.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1271.72435902779,920.0,37234.49243426856,1,1,2,3,90.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024708272890361278,20685.829130149203,5,3,5,5_1,5_1,5_0_0 -25897,2,40.0,0.0,9,112,911.0,0.0,0.0,0,34,0.0,0.0,1259.1607213216728,911.0,0.0,0.0,31,1,2,2,2,1,2,2,2,2,45.0,1,2007.0,6,130975,2,1,1,0,1,,375.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1183.52363810277,911.0,39648.67176724275,0,1,1,2,138.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.022976810051746982,39648.67176724275,9,5,9,9_1,9_1,9_0_0 -25898,2,75.0,0.0,1,112,950.0,0.0,0.0,77,77,0.0,672.8621281326475,1313.065516197134,1700.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121584,2,1,2,0,1,,420.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,936.091495462476,950.0,33708.908799831115,5,5,0,1,75.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050431771912133716,22472.605866554077,6,3,6,6_1,6_1,6_1_0 -25899,2,66.0,0.0,2,112,703.0,0.0,0.0,0,75,0.0,0.0,971.6684819858792,3053.0,4042.7684598469505,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118859,2,2,2,0,1,,330.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1148.13747942612,703.0,50706.09088150676,0,5,0,1,100.0,6,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06020972918489114,50706.09088150676,10,5,10,10_1,10_1,10_0_1 -25900,2,46.0,0.0,7,112,680.0,0.0,0.0,85,65,0.0,0.0,939.8784747516328,750.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,107390,2,1,2,0,1,,330.0,,42,1.0,3.0,5.0,3.0,2.0,2,2,1044.56466786447,680.0,31804.230193505522,7,1,1,2,137.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02358176869670473,15902.115096752761,3,2,3_0,3_1_0,3_1_0,3_0_0 -25901,2,75.0,0.0,1,112,350.0,0.0,0.0,0,75,0.0,285.7076113301703,483.76097965157567,661.0,60.21144514665671,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,100665,2,2,2,0,1,,210.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,1054.52493291855,350.0,16686.315089285534,0,5,0,1,89.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039613299668806765,16686.315089285534,4,2,4_0,4_1_0,4_1_0,4_1_0 -25902,2,67.0,0.0,2,112,0.0,0.0,0.0,0,77,2240.377315527001,0.0,0.0,1639.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,124220,1,1,2,0,1,,433.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1052.87181959524,0.0,14163.013694293833,0,5,0,1,110.0,6,1,5,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11572395786500865,14163.013694293833,3,2,3_0,3_1_0,3_1_0,3_0_1 -25903,2,66.0,0.0,8,112,1100.0,0.0,0.0,77,78,0.0,0.0,1520.3916503335236,1230.0,223.64251054472493,0.0,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,101359,2,1,2,0,1,,517.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,893.894552707584,1100.0,30270.763895313812,5,5,1,2,72.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040633265954362494,20180.509263542543,5,3,5,5_1,5_1,5_0_0 -25904,2,59.0,0.0,1,112,950.0,0.0,0.0,0,52,0.0,569.3448776507017,1313.065516197134,1620.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,117708,2,1,2,0,1,,320.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1084.19410919588,950.0,24377.71755158471,0,1,0,1,100.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06645412953743447,24377.71755158471,7,4,7,7_1,7_1,7_1_0 -25905,2,33.0,0.0,9,112,1060.0,0.0,0.0,64,62,0.0,0.0,1465.1046812304864,1130.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,127545,2,1,1,0,1,,470.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,975.817719324087,1060.0,35144.99772779006,4,1,1,2,90.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03215251310448883,16735.71320370955,4,2,4_0,4_1_0,4_1_0,4_0_0 -25906,2,67.0,0.0,9,112,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1051.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,132344,2,1,1,0,1,,122.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1024.70098255093,0.0,14562.516371622702,0,5,0,1,105.0,6,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07217159268215724,14562.516371622702,3,2,3_0,3_1_0,3_1_0,3_0_0 -25907,2,41.0,0.0,2,112,410.0,0.0,0.0,52,42,0.0,621.1035028916747,566.6914333061316,1210.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,120147,2,2,2,0,2,,350.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,1006.18806620457,410.0,37081.23897547983,1,1,1,2,60.0,6,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032631056389462045,18540.619487739914,4,2,4_0,4_1_0,4_1_0,4_0_1 -25908,2,41.0,0.0,6,112,0.0,0.0,0.0,54,48,0.0,0.0,0.0,494.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,4,113613,2,1,2,0,1,,480.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,926.114707951249,0.0,48057.39382238877,1,1,1,2,130.0,6,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010279375569672641,22884.473248756556,6,3,6,6_1,6_1,6_0_0 -25909,2,27.0,0.0,7,112,780.0,0.0,0.0,43,47,746.7924385090004,0.0,1078.0958975092258,1280.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,115205,2,1,2,0,1,,200.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1152.57110251947,780.0,37895.00000000001,1,1,2,3,85.0,6,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033777543211505466,21052.77777777778,5,3,5,5_1,5_1,5_0_0 -25910,2,61.0,0.0,5,112,1500.0,0.0,0.0,0,72,0.0,0.0,2073.261341363896,1680.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,131443,2,2,3,0,1,,480.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,1011.7745388766,1500.0,20428.650990693415,0,5,0,1,77.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0822374419517642,13619.100660462276,3,2,3_0,3_1_0,3_1_0,3_0_0 -25911,2,38.0,0.0,1,112,1000.0,0.0,0.0,21,46,0.0,207.03450096389156,1382.1742275759307,1215.0,25.804905062852875,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,1,130800,2,1,1,0,1,,220.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,971.853241859365,1000.0,41139.79883171831,1,1,0,1,140.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02953344533768719,27426.532554478876,7,4,7,7_1,7_1,7_1_0 -25912,2,45.0,0.0,1,112,550.0,0.0,0.0,69,11,2987.1697540360015,0.0,760.1958251667618,2680.0,223.64251054472493,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,102812,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,1147.7148858348,550.0,41085.71947207633,1,1,1,2,93.0,6,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06522947716228862,20542.859736038165,5,3,5,5_1,5_1,5_1_0 -25913,2,41.0,0.0,7,112,1250.0,0.0,0.0,21,43,1194.8679016144006,0.0,1727.717784469913,2170.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,113961,2,1,2,0,1,,300.0,,43,2.0,1.0,5.0,3.0,1.8,2,1,1127.47181847601,1250.0,47803.62974840588,1,1,1,2,200.0,6,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045394042490515346,26557.57208244771,7,4,7,7_1,7_1,7_0_0 -25914,2,69.0,0.0,5,112,780.0,0.0,0.0,71,78,746.7924385090004,0.0,1078.0958975092258,1460.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107062,2,2,1,0,1,,110.0,,41,0.0,2.0,7.0,2.0,1.5,2,1,1046.81848346999,780.0,21383.116896388186,5,5,0,1,180.0,6,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06827816576387925,14255.411264258792,3,2,3_0,3_1_0,3_1_0,3_0_0 -25915,1,51.0,300.0,2,112,1200.0,0.0,0.0,0,55,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123067,2,3,0,1,1,,184.0,460.0,32,2.0,3.0,3.0,2.0,1.5,4,3,1324.24738841829,1200.0,11917.3375508713,0,4,2,3,60.0,6,1,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10069363185171051,7944.891700580866,1,1,1_1,1_0_1,1_1_1,1_0_1 -25916,2,43.0,0.0,1,112,290.0,0.0,0.0,31,31,0.0,0.0,400.8305259970199,3590.0,5677.079113827633,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,130068,1,2,1,0,1,,350.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,950.265098019576,290.0,72011.03832393434,1,1,1,2,110.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04985346807319664,34290.97063044492,9,5,9,9_1,9_1,9_1_0 -25917,2,81.0,0.0,1,120,1160.0,0.0,0.0,77,74,0.0,621.1035028916747,1603.3221039880796,1760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117933,2,1,3,0,2,,172.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,2214.67733299347,1160.0,23781.357720749642,5,5,0,1,147.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07400754913435283,15854.238480499762,3,2,3_0,3_1_0,3_0_0,3_1_0 -25918,0,56.0,0.0,1,120,1000.0,0.0,0.0,0,69,2240.377315527001,0.0,1382.1742275759307,2563.0,108.38060126398207,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,132376,2,3,4,0,1,,150.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,2186.35087865234,1000.0,18974.804150243766,0,1,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.135073857927913,18974.804150243766,5,3,5,5_1,5_0,5_1_0 -25919,2,67.0,0.0,1,120,2200.0,0.0,0.0,71,71,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112180,2,2,2,0,1,,220.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1860.95600336883,2200.0,31615.350729346956,5,5,0,1,220.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06958644928009132,21076.900486231305,5,3,5,5_1,5_0,5_1_0 -25920,1,57.0,150.0,2,400,1800.0,0.0,0.0,0,52,0.0,0.0,2487.913609636675,1870.0,120.42289029331342,0.0,31,2,2,2,2,2,2,2,1,0,,1,,2,113650,1,1,1,0,2,,0.0,308.0,12,1.0,6.0,2.0,1.0,1.0,4,4,2461.52541926895,1800.0,5322.413287281699,0,4,2,3,63.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,1,1,0.3513443806531341,5322.413287281699,1,1,1_1,1_1_1,1_1_1,1_0_1 -25921,2,63.0,0.0,6,400,2000.0,0.0,0.0,0,52,0.0,414.0690019277831,2764.3484551518613,2435.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,4,101453,1,3,3,0,1,,300.0,400.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1938.05215444044,2000.0,24637.54400986742,0,1,2,3,70.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0988329031101791,24637.54400986742,7,4,7,7_1,7_1,7_0_0 -25922,2,49.0,0.0,9,400,1100.0,0.0,0.0,55,67,0.0,0.0,1520.3916503335236,1205.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,121857,2,1,1,0,1,,507.0,,43,2.0,2.0,4.0,4.0,2.1,1,1,2125.260882834,1100.0,50291.52170247798,1,1,1,2,89.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02396030104494983,23948.343667846653,6,3,6,6_1,6_1,6_0_0 -25923,2,44.0,0.0,7,400,450.0,0.0,0.0,0,63,0.0,0.0,621.9784024091688,2750.0,3956.7521096374408,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,119187,2,1,1,0,1,,360.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,2375.13007051152,450.0,22283.936942458888,0,1,1,2,200.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12340727794648639,22283.936942458888,6,3,6,6_1,6_1,6_0_0 -25924,1,94.0,40.0,1,400,4000.0,0.0,0.0,0,86,0.0,0.0,5528.696910303723,4140.0,240.84578058662683,0.0,43,2,2,2,1,2,2,2,2,0,,1,,1,110487,1,2,4,0,2,,130.0,475.0,11,0.0,1.0,2.0,1.0,1.0,3,3,2676.90935050229,4000.0,14965.872315919452,0,5,2,3,60.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,1,0.2766293813422564,14965.872315919452,3,2,3_1,3_1_1,3_1_1,3_1_0 -25925,2,47.0,0.0,1,400,500.0,0.0,0.0,52,22,1493.5848770180007,0.0,691.0871137879653,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,129421,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,3.0,1.8,1,1,2398.47471516743,500.0,32267.23767329481,1,1,1,2,120.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04648678065310308,17926.24315183045,4,2,4_0,4_1_0,4_1_0,4_1_0 -25926,1,63.0,304.0,2,400,360.0,0.0,0.0,85,78,896.1509262108004,0.0,497.582721927335,1160.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130568,2,1,1,0,1,,528.0,504.0,41,0.0,6.0,3.0,3.0,2.0,4,3,2618.52881542452,360.0,27078.0453589469,7,5,2,3,100.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04283913349811723,13539.02267947345,3,2,3_1,3_1_1,3_1_1,3_0_1 -25927,2,74.0,0.0,1,400,2000.0,0.0,0.0,77,35,746.7924385090004,0.0,2764.3484551518613,2620.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118460,2,1,2,0,1,,500.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,2302.85522011565,2000.0,55838.40504237014,5,5,0,1,170.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04692111098108812,37225.60336158009,9,5,9,9_1,9_1,9_1_0 -25928,1,35.0,228.0,8,400,1406.0,0.0,0.0,85,52,0.0,0.0,1943.3369639717585,1406.0,0.0,0.0,31,2,2,2,2,2,2,2,1,2,35.0,1,2000.0,6,118745,2,2,1,0,1,,780.0,695.0,42,1.0,0.0,5.0,4.0,2.1,3,1,2502.76135695085,1406.0,28623.730015453864,6,1,2,3,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.04912008320512054,13630.347626406601,3,2,3_1,3_1_1,3_1_1,3_0_0 -25929,2,80.0,0.0,6,400,1590.0,0.0,0.0,0,74,0.0,0.0,2197.6570218457296,1620.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,103357,2,1,1,0,1,,372.0,,11,0.0,1.0,6.0,1.0,1.0,5,5,2393.4295907953,1590.0,46421.81697340378,0,5,0,1,140.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03489738458380762,46421.81697340378,10,5,10,10_1,10_1,10_0_0 -25930,2,56.0,0.0,8,400,1350.0,0.0,0.0,0,52,0.0,0.0,1865.9352072275062,1385.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,124265,2,1,1,0,1,,316.0,,12,1.0,1.0,5.0,1.0,1.0,3,3,2299.33709981441,1350.0,17829.51960304498,0,1,1,2,130.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07768016361828758,17829.51960304498,4,2,4_0,4_1_0,4_1_0,4_0_0 -25931,2,46.0,0.0,6,400,750.0,0.0,0.0,0,54,2240.377315527001,217.38622601208613,1036.630670681948,2490.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,127519,2,1,2,0,1,,700.0,,32,1.0,1.0,7.0,2.0,1.5,3,2,2166.52282536277,750.0,29446.557200524934,0,1,1,2,150.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08455997022142919,19631.03813368329,5,3,5,5_1,5_1,5_0_0 -25932,2,62.0,0.0,1,400,1276.0,0.0,0.0,68,78,0.0,517.5862524097289,1763.6543143868873,1957.0,311.3791877584247,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104605,2,1,3,0,1,,490.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,2285.23299577703,1276.0,18895.059225175744,1,5,0,1,110.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10357204900382089,12596.706150117163,2,1,2_0,2_1_0,2_1_0,2_1_0 -25933,0,23.0,0.0,2,400,0.0,0.0,0.0,22,22,0.0,0.0,0.0,2225.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111028,1,1,2,0,1,,180.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,2053.95855885884,0.0,27333.820309482013,1,1,5,0,80.0,0,1,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08140098876804845,18222.54687298801,4,2,4_0,4_1_0,4_1_0,4_0_1 -25934,2,63.0,0.0,5,400,1200.0,0.0,0.0,77,77,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,109091,2,1,2,0,1,,400.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,2242.63502663812,1200.0,24495.578795467136,6,5,0,1,155.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04898843215829862,16330.385863644757,4,2,4_0,4_1_0,4_1_0,4_0_0 -25935,2,73.0,0.0,1,400,830.0,0.0,0.0,0,77,0.0,0.0,1147.2046088880224,875.0,77.41471518855863,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,110143,2,1,3,0,1,,380.0,330.0,11,0.0,1.0,2.0,1.0,1.0,2,2,2661.96872329047,830.0,17595.738514895427,0,5,2,3,40.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04972794971119177,17595.738514895427,4,2,4_0,4_1_0,4_1_0,4_1_0 -25936,2,81.0,0.0,1,400,496.0,0.0,0.0,0,72,1078.3682812069965,0.0,685.5584168776616,1248.0,51.60981012570575,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,121700,2,1,3,0,1,,279.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,2369.73370100817,496.0,14080.37438434517,0,5,0,1,70.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08863400687609203,14080.37438434517,3,2,3_0,3_1_0,3_1_0,3_1_0 -25937,2,50.0,0.0,2,400,612.0,0.0,0.0,56,64,1792.3018524216009,0.0,845.8906272764696,1842.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,107570,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1811.92724173505,612.0,38709.349437957484,1,1,1,2,85.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.047585403184114944,25806.232958638324,7,4,7,7_1,7_1,7_0_1 -25938,1,26.0,252.0,1,400,0.0,0.0,0.0,0,67,0.0,0.0,0.0,873.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120310,2,2,1,0,1,,0.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2823.14396775245,0.0,9660.739709361364,0,4,2,3,37.0,0,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.09036575109813313,9660.739709361364,1,1,1_1,1_1_1,1_1_1,1_1_0 -25939,2,74.0,0.0,2,400,1800.0,0.0,0.0,78,75,0.0,82.81380038555662,2487.913609636675,1940.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128442,2,1,1,0,1,,700.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2026.43012405797,1800.0,42735.327404933785,5,5,0,1,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04539569760675397,28490.218269955858,8,4,8,8_1,8_1,8_0_1 -25940,1,28.0,459.0,2,400,0.0,0.0,0.0,0,63,0.0,0.0,0.0,741.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,119925,2,3,0,0,1,,232.0,480.0,32,1.0,0.0,3.0,4.0,1.9,2,2,2864.78632485567,0.0,11465.489456350535,0,4,2,3,60.0,0,1,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06462872804698042,6034.468134921334,1,1,1_1,1_0_1,1_1_1,1_0_1 -25941,2,40.0,0.0,2,400,846.0,0.0,0.0,0,68,0.0,0.0,1169.3193965292373,846.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,1.0,1,,2,131701,2,1,3,0,1,,212.0,300.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2421.07185335303,846.0,19355.988059260864,0,1,2,3,55.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04370740452049575,19355.988059260864,5,3,5,5_1,5_1,5_0_1 -25942,2,73.0,0.0,9,400,1110.0,0.0,0.0,0,78,0.0,0.0,1534.213392609283,1607.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,2005.0,6,131244,2,1,1,0,1,,490.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,2480.2255267358,1110.0,11192.703481535933,0,5,0,1,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1435756788028014,11192.703481535933,2,1,2_0,2_1_0,2_1_0,2_0_0 -25943,2,74.0,0.0,1,400,983.0,0.0,0.0,86,72,1950.621849385509,0.0,1358.6772657071397,2489.0,344.06540083803833,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,103081,2,1,2,0,1,,320.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,2013.12553359194,983.0,17274.28806490036,5,5,0,1,150.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1440869800624317,11516.192043266907,2,1,2_0,2_1_0,2_1_0,2_1_0 -25944,1,88.0,185.0,1,400,350.0,0.0,0.0,0,71,1493.5848770180007,0.0,483.76097965157567,1420.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,125457,1,2,3,0,1,,300.0,370.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2461.52541926895,350.0,12408.782443763263,0,5,2,3,50.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.11443507906077453,12408.782443763263,2,1,2_1,2_1_1,2_1_1,2_1_0 -25945,2,78.0,0.0,2,400,460.0,1055.0,0.0,86,78,0.0,0.0,635.800144684928,1515.0,0.0,1913.4038103940586,10,0,0,0,0,0,0,0,0,0,,1,,2,102645,2,1,1,0,1,,306.0,,41,0.0,3.0,5.0,2.0,1.5,5,5,2254.02600725214,460.0,20826.552899841165,5,5,0,1,60.0,0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07274367521528512,13884.36859989411,3,2,3_0,3_1_0,3_1_0,3_0_1 -25946,2,48.0,0.0,9,400,1000.0,0.0,0.0,21,21,0.0,0.0,1382.1742275759307,1030.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,4.0,1,2006.0,6,126730,2,2,1,0,1,,400.0,600.0,43,2.0,0.0,4.0,3.0,1.8,3,3,2637.28383746937,1000.0,23057.961084329134,1,1,2,3,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0446700380936985,12809.978380182853,2,1,2_0,2_1_0,2_1_0,2_0_0 -25947,2,35.0,0.0,9,400,2900.0,0.0,0.0,54,46,0.0,0.0,4008.3052599701987,2972.0,123.8635443016938,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,105454,2,1,1,0,1,,626.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1996.01510635534,2900.0,46148.650621868575,1,1,1,2,130.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06440058289790278,21975.54791517551,6,3,6,6_1,6_1,6_0_0 -25948,0,80.0,0.0,1,400,350.0,0.0,0.0,71,71,1792.3018524216009,0.0,483.76097965157567,1800.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103854,2,1,2,0,1,,360.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2238.70587869784,350.0,21766.08790248814,5,5,0,1,100.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08269745156152922,14510.725268325426,3,2,3_0,3_1_0,3_1_0,3_1_0 -25949,0,60.0,0.0,1,400,120.0,0.0,0.0,0,55,2240.377315527001,0.0,165.86090730911167,1655.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,133372,2,2,2,0,2,,257.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,2328.73353069166,120.0,22708.673824434252,0,1,0,1,95.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07287964118006929,22708.673824434252,6,3,6,6_1,6_1,6_1_0 -25950,1,49.0,383.0,1,400,530.0,0.0,0.0,0,56,2240.377315527001,0.0,732.5523406152432,2180.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117671,2,2,1,0,1,,0.0,520.0,32,1.0,0.0,4.0,3.0,2.0,2,2,2278.91314138251,530.0,15101.46598245163,0,1,2,3,70.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.14435684605277577,7550.732991225815,1,1,1_1,1_1_1,1_1_1,1_1_0 -25951,2,64.0,0.0,1,400,1285.0,0.0,0.0,0,77,0.0,0.0,1776.0938824350708,1315.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100218,1,3,2,0,1,,314.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,2156.75091478781,1285.0,20492.714518852736,0,5,0,1,68.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06416914649302492,20492.714518852736,5,3,5,5_1,5_1,5_1_0 -25952,2,59.0,0.0,1,400,750.0,0.0,0.0,0,75,0.0,0.0,1036.630670681948,841.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,102789,1,2,0,0,1,,260.0,430.0,11,0.0,1.0,2.0,1.0,1.0,2,2,3427.20280016529,750.0,6411.15492980682,0,7,2,3,40.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.13117761295862818,6411.15492980682,1,1,1_0,1_0_0,1_1_0,1_1_0 -25953,0,68.0,0.0,1,400,430.0,0.0,0.0,0,77,4032.679167948602,0.0,594.3349178576501,3130.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101180,2,1,2,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2707.90007057919,430.0,11506.522984917372,0,5,5,0,120.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2720196191414879,11506.522984917372,2,1,2_0,2_1_0,2_1_0,2_1_0 -25954,2,73.0,0.0,1,400,993.0,0.0,0.0,72,72,2987.1697540360015,0.0,1372.499007982899,3063.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,116975,2,3,1,0,1,,370.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,2013.12553359194,993.0,29847.74151671282,5,5,0,1,100.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10262082972961008,19898.494344475213,5,3,5,5_1,5_1,5_1_0 -25955,2,77.0,0.0,9,400,1232.0,0.0,0.0,78,74,0.0,0.0,1702.8386483735464,1232.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,120863,2,1,1,0,1,,144.0,760.0,41,0.0,2.0,5.0,2.0,1.5,1,1,2507.25285553738,1232.0,49119.0,5,5,3,4,144.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025081943850648426,32746.0,8,4,8,8_1,8_1,8_0_0 -25956,2,53.0,0.0,7,400,1730.0,0.0,0.0,78,52,0.0,0.0,2391.16141370636,1730.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,131717,2,1,3,0,1,,209.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,2172.87193480578,1730.0,65490.73892165844,5,5,0,1,118.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02641594870489195,43660.49261443896,10,5,10,10_1,10_1,10_0_0 -25957,2,50.0,0.0,7,400,764.0,0.0,0.0,68,56,0.0,465.827627168756,1055.981109868011,1244.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,103657,2,1,1,0,1,,300.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,2375.79727067773,764.0,32932.91912457249,1,1,1,2,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03777375443987912,16466.459562286243,4,2,4_0,4_1_0,4_1_0,4_0_0 -25958,2,69.0,0.0,2,400,1310.0,0.0,0.0,77,77,1045.5094139126004,0.0,1810.6482381244691,2080.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,122598,2,1,1,0,1,,418.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,2399.88917209558,1310.0,47664.7469083445,5,5,0,1,153.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0436381211464245,31776.497938896337,8,4,8,8_1,8_1,8_0_1 -25959,2,67.0,0.0,1,400,550.0,0.0,0.0,0,77,1941.6603401234008,0.0,760.1958251667618,1950.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,116977,1,1,2,0,2,,400.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,2453.46566561671,550.0,29234.041888749347,0,5,0,1,150.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06670305828461076,29234.041888749347,8,4,8,8_1,8_1,8_1_0 -25960,2,65.0,0.0,9,400,1300.0,0.0,0.0,77,77,0.0,0.0,1796.8264958487098,1500.0,344.06540083803833,0.0,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,132711,2,1,1,0,1,,422.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2253.21670667291,1300.0,32905.90395310197,6,5,0,1,137.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045584524957522035,21937.269302067984,6,3,6,6_1,6_1,6_0_0 -25961,2,47.0,0.0,6,400,1200.0,0.0,0.0,56,62,0.0,0.0,1658.6090730911167,1350.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,121529,1,1,2,0,1,,550.0,,43,3.0,0.0,7.0,5.0,2.5999999999999996,1,1,2185.27599892468,1200.0,38321.17717153477,1,1,1,2,140.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035228562889837035,14738.914296744144,3,2,3_0,3_1_0,3_1_0,3_0_0 -25962,1,47.0,170.0,5,400,1200.0,0.0,0.0,0,56,0.0,0.0,1658.6090730911167,1270.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,117622,2,2,1,0,1,,550.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,2103.59792803385,1200.0,9905.524054100095,0,1,1,2,110.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.12821128827346814,6603.682702733397,1,1,1_1,1_1_1,1_1_1,1_0_0 -25963,2,56.0,0.0,5,221,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1437.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,123063,2,1,2,0,1,,511.0,473.0,32,3.0,2.0,4.0,3.0,2.0,2,2,767.635569548335,0.0,29216.24322980534,0,1,2,3,80.0,1,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04918496839915494,14608.12161490267,3,2,3_0,3_1_0,3_1_0,3_0_0 -25964,0,79.0,0.0,2,221,960.0,0.0,0.0,75,74,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,128417,1,1,2,0,2,,494.0,,41,0.0,3.0,5.0,2.0,1.5,4,4,747.817125505194,960.0,53868.0,5,5,0,1,155.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.017821341055914458,35912.0,9,5,9,9_1,9_1,9_0_1 -25965,0,71.0,0.0,7,221,686.0,0.0,0.0,78,77,0.0,683.2138531808421,948.1715201170883,1474.0,220.20185653634454,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,122090,1,1,2,0,1,,414.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,743.438956800033,686.0,40026.71042985919,5,5,0,1,110.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036825409437104856,26684.473619906126,7,4,7,7_1,7_1,7_0_0 -25966,2,64.0,0.0,9,221,2930.0,0.0,0.0,75,74,0.0,62.110350289167464,4049.7704867974767,2990.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105412,2,1,1,0,1,,1264.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,775.389392655974,2930.0,95266.86173332093,5,5,0,1,209.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03138552006016385,63511.241155547286,10,5,10,10_1,10_1,10_0_0 -25967,2,77.0,0.0,5,221,998.0,0.0,0.0,77,75,0.0,0.0,1379.4098791207787,998.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124816,2,2,3,0,1,,462.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,701.835970595495,998.0,41948.29199111768,5,5,0,1,120.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023791195126879564,27965.527994078453,7,4,7,7_1,7_1,7_0_0 -25968,2,58.0,0.0,1,221,628.0,0.0,0.0,75,35,1853.5388323793388,0.0,868.0054149176844,1959.0,154.82943037711726,0.0,10,2,2,2,1,2,2,2,2,0,,1,,1,105623,1,1,2,0,2,,290.0,,42,1.0,0.0,4.0,2.0,1.5,3,2,787.27169231313,628.0,21377.45653310864,7,1,0,1,100.0,1,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.0916385911937639,14251.637688739094,3,2,3_0,3_1_0,3_1_0,3_1_0 -25969,2,90.0,0.0,2,221,600.0,0.0,0.0,77,75,0.0,0.0,829.3045365455583,2920.0,3991.1586497212447,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124895,2,2,3,0,2,,420.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,810.173343152517,600.0,39810.56230152129,5,5,0,1,100.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0733473689189368,26540.37486768086,7,4,7,7_1,7_1,7_0_1 -25970,0,89.0,0.0,1,221,1250.0,0.0,0.0,0,78,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,111204,1,2,2,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,771.506704023474,1250.0,17554.966284327733,0,5,0,1,50.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07120492171585328,17554.966284327733,4,2,4_0,4_1_0,4_1_0,4_1_0 -25971,2,48.0,0.0,8,221,2538.0,0.0,0.0,55,21,0.0,0.0,3507.958189587712,2638.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,127741,2,1,1,0,1,,545.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,728.041392105261,2538.0,79484.3883364906,1,1,1,2,190.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033188907346587915,26494.796112163534,7,4,7,7_1,7_1,7_0_0 -25972,1,37.0,200.0,1,221,0.0,0.0,0.0,55,56,0.0,0.0,0.0,2019.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114084,1,2,5,0,1,,353.0,646.0,43,2.0,0.0,3.0,4.0,2.1,1,1,824.922936595335,0.0,25791.127492141728,4,4,2,3,98.0,1,2,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07828273504580856,12281.489281972252,2,1,2_1,2_1_1,2_1_1,2_1_0 -25973,1,35.0,344.0,2,221,603.0,0.0,0.0,0,55,1717.6226085707008,0.0,833.4510592282861,1813.0,103.2196202514115,0.0,70,1,2,2,1,1,2,2,2,1,5.0,8,,2,101973,2,1,0,1,1,,736.0,686.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1156.70915551093,603.0,16789.809919944033,0,1,2,3,65.0,1,2,5,1,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.10798216350540099,10493.63119996502,2,1,2_1,2_0_1,2_1_1,2_0_1 -25974,2,74.0,0.0,2,221,982.0,0.0,0.0,77,72,0.0,82.81380038555662,1357.2950914795638,1062.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,103798,2,1,2,0,2,,223.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,763.311565287307,982.0,28984.313475903054,5,5,0,1,85.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03664050904234542,19322.875650602036,5,3,5,5_1,5_1,5_0_1 -25975,0,77.0,0.0,2,221,1046.0,0.0,0.0,0,74,0.0,0.0,1445.7542420444233,1046.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131650,2,2,3,0,2,,180.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,813.29796091675,1046.0,64496.150729114364,0,5,0,1,90.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01621802213271966,64496.150729114364,10,5,10,10_1,10_1,10_0_1 -25976,2,63.0,0.0,7,221,1200.0,0.0,0.0,0,77,0.0,227.73795106028072,1658.6090730911167,1420.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,107219,2,1,1,0,1,,500.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,819.10686275964,1200.0,14922.922522202685,0,5,0,1,100.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09515562369819247,14922.922522202685,3,2,3_0,3_1_0,3_1_0,3_0_0 -25977,2,77.0,0.0,2,221,2182.0,0.0,0.0,72,72,0.0,0.0,3015.9041645706807,2251.0,118.70256328912323,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110049,2,1,1,0,1,,355.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,771.363580416779,2182.0,37812.65148935643,5,5,0,1,100.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05953034001420438,25208.43432623762,7,4,7,7_1,7_1,7_0_1 -25978,0,79.0,0.0,5,221,1282.0,0.0,0.0,0,74,0.0,362.31037668681023,1771.947359752343,1666.0,58.49111814246652,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,125759,2,1,2,0,1,,282.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,776.569239513731,1282.0,38233.929468526454,0,5,0,1,165.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04357386287934187,38233.929468526454,9,5,9,9_1,9_1,9_0_0 -25979,2,66.0,0.0,7,221,400.0,0.0,0.0,77,72,0.0,248.44140115666985,552.8696910303722,760.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,126709,2,1,1,0,1,,195.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,733.647023901968,400.0,40106.21717576767,5,5,0,1,70.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018949680461492015,26737.478117178445,7,4,7,7_1,7_1,7_0_0 -25980,2,66.0,0.0,7,221,1900.0,0.0,0.0,74,78,0.0,0.0,2626.131032394268,1932.0,55.050464134086134,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,120282,2,2,3,0,1,,204.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,767.5607260687,1900.0,50674.84651161344,5,5,0,1,130.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03812542381469735,33783.231007742295,9,5,9,9_1,9_1,9_0_0 -25981,2,30.0,0.0,5,221,1225.0,0.0,0.0,0,62,0.0,0.0,1693.163428780515,1317.0,158.27008438549763,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117014,2,2,3,0,1,,286.0,,22,3.0,1.0,4.0,3.0,2.0,5,4,768.419182135918,1225.0,75628.56832403608,0,1,0,1,100.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01741405436047947,37814.28416201804,9,5,9,9_1,9_1,9_0_0 -25982,2,65.0,0.0,9,221,2195.0,0.0,0.0,77,75,0.0,0.0,3033.8724295291677,2195.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,109843,2,1,2,0,1,,605.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,760.883495663417,2195.0,73735.81680865062,5,5,0,1,115.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029768436765217805,49157.21120576708,10,5,10,10_1,10_1,10_0_0 -25983,2,41.0,0.0,8,221,0.0,0.0,0.0,0,63,0.0,0.0,0.0,2104.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,117498,2,1,1,0,1,,206.0,520.0,32,1.0,1.0,3.0,2.0,1.3,2,2,704.565635283995,0.0,26385.10381543194,0,1,2,3,70.0,1,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07974196405357431,20296.233704178416,5,3,5,5_1,5_1,5_0_0 -25984,0,56.0,0.0,2,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,3216.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,105245,1,3,3,0,2,,0.0,,43,3.0,1.0,4.0,3.0,2.0,3,2,1305.79406313187,0.0,72880.1534996659,4,1,5,0,90.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0441272396608597,36440.07674983295,9,5,9,9_1,9_2,9_0_1 -25985,2,66.0,0.0,1,111,500.0,700.0,0.0,86,74,0.0,0.0,691.0871137879653,1200.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,1,,1,131787,2,2,2,0,1,,330.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1124.09303916138,500.0,34726.99858570137,6,5,0,1,220.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03455524660556449,23151.332390467578,6,3,6,6_1,6_2,6_1_0 -25986,2,53.0,0.0,2,111,238.0,0.0,0.0,0,74,0.0,0.0,328.95746616307144,238.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,130836,2,1,0,1,1,408.0,0.0,660.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1755.51667203399,238.0,76511.35131174946,0,7,2,3,70.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0031106495431018687,76511.35131174946,10,5,10,10_0,10_2,10_0_1 -25987,2,54.0,0.0,2,111,850.0,1300.0,0.0,37,74,0.0,0.0,1174.848093439541,2150.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,1,,2,115973,2,2,2,0,1,,325.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1160.29812815662,850.0,185335.30093547897,1,7,1,2,110.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011600596266053398,123556.86729031931,10,5,10,10_1,10_2,10_0_1 -25988,2,65.0,0.0,2,111,400.0,1400.0,0.0,74,74,0.0,0.0,552.8696910303722,1800.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,1,,2,108996,2,1,1,0,1,,180.0,,41,0.0,3.0,6.0,2.0,1.5,3,2,319.079948876419,400.0,101479.0085153789,5,5,0,1,135.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01773765852005949,67652.67234358593,10,5,10,10_1,10_2,10_0_1 -25989,2,39.0,0.0,7,111,0.0,0.0,0.0,84,54,0.0,0.0,0.0,1255.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,30.0,1,,5,107903,2,2,5,0,1,,409.0,550.0,42,1.0,0.0,4.0,3.0,1.8,2,2,324.827680002033,0.0,35583.11283845229,3,1,2,3,87.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035269539393523924,19768.396021362383,5,3,5,5_1,5_2,5_0_0 -25990,1,46.0,148.0,2,111,1140.0,1200.0,0.0,22,22,0.0,0.0,1575.678619436561,2340.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,5.0,1,,2,106702,2,1,2,0,1,,420.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,340.349400581688,1140.0,26447.62516747662,1,1,1,2,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.08847675302346476,12594.107222607914,2,1,2_1,2_1_1,2_2_1,2_0_1 -25991,1,24.0,200.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1121.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,120917,1,1,0,1,1,750.0,0.0,350.0,22,1.0,1.0,4.0,5.0,3.0,2,2,352.324892036009,0.0,22655.01924881338,0,2,2,3,80.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04948130865343297,7551.673082937793,1,1,1_1,1_0_1,1_2_1,1_0_1 -25992,2,58.0,0.0,2,111,100.0,140.0,0.0,0,56,0.0,0.0,138.21742275759306,240.0,0.0,253.91140611864284,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,125054,2,2,0,1,1,363.0,0.0,346.0,22,2.0,2.0,3.0,2.0,1.5,2,2,392.956158864104,100.0,15831.512037399796,0,1,2,3,60.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015159638538190958,10554.34135826653,2,1,2_0,2_0_0,2_2_0,2_0_1 -25993,1,67.0,117.0,2,111,300.0,300.0,0.0,0,77,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,70,0,0,0,0,0,0,0,0,0,,2,,2,112580,1,3,0,1,2,340.0,0.0,245.0,11,0.0,4.0,3.0,1.0,1.0,2,2,416.699207535929,300.0,11609.11009174312,0,5,2,3,70.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.051683548115091515,11609.11009174312,2,1,2_1,2_0_1,2_2_1,2_0_1 -25994,2,77.0,0.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,379.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,122331,2,1,0,0,1,,0.0,,11,0.0,3.0,1.0,1.0,1.0,1,1,1821.77338496971,0.0,21447.627301845954,0,5,0,1,25.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017670952346667282,21447.627301845954,6,3,6,6_0,6_2,6_0_0 -25995,1,49.0,270.0,2,111,390.0,0.0,0.0,0,56,0.0,0.0,539.0479487546129,390.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,103821,2,2,0,0,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,580.60074966413,390.0,14964.045909170036,0,4,3,4,35.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.026062470161295495,14964.045909170036,3,2,3_1,3_0_1,3_2_1,3_0_1 -25996,2,50.0,0.0,2,111,0.0,0.0,0.0,42,38,0.0,0.0,0.0,1758.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,90.0,1,,2,117885,2,1,1,0,1,,842.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1109.07643427719,0.0,92602.070366468,1,1,0,1,150.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018984456751806995,33072.16798802429,8,4,8,8_1,8_2,8_0_1 -25997,2,34.0,0.0,2,111,0.0,0.0,0.0,34,42,0.0,0.0,0.0,964.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,126985,2,1,0,0,1,,313.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1481.5579272927,0.0,26716.780294627406,1,1,1,2,91.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03608219214176249,17811.18686308494,4,2,4_0,4_0_0,4_2_0,4_0_1 -25998,2,49.0,0.0,7,111,500.0,940.0,0.0,45,33,0.0,142.85380566508516,691.0871137879653,1578.0,0.0,1704.833726796602,30,0,0,0,0,0,0,0,0,1,10.0,1,,5,130288,2,2,1,0,1,,400.0,1097.0,43,2.0,2.0,5.0,4.0,2.3,2,2,1176.22656464167,500.0,70637.64165844936,1,1,2,3,120.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022339364154171853,30712.01811236929,8,4,8,8_1,8_2,8_0_0 -25999,1,54.0,200.0,6,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1022.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,128468,1,3,0,0,1,,0.0,271.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1331.94987799797,0.0,9415.765000312522,0,7,2,3,52.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.10854136652370555,9415.765000312522,1,1,1_1,1_0_1,1_2_1,1_0_0 -26000,2,42.0,0.0,2,111,300.0,1000.0,0.0,42,42,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,2,133544,2,2,1,0,1,,330.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1123.72598159519,300.0,44990.73713423311,1,1,1,2,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028894836644293164,21424.160540111003,6,3,6,6_1,6_2,6_0_1 -26001,2,58.0,0.0,5,111,0.0,0.0,0.0,72,46,0.0,0.0,0.0,1635.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,127789,2,2,5,0,1,,420.0,815.0,42,1.0,0.0,5.0,2.0,1.5,2,2,1144.74707863271,0.0,78220.17015723312,5,1,2,3,100.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020902536989032737,52146.78010482208,10,5,10,10_1,10_2,10_0_0 -26002,2,39.0,0.0,7,111,380.0,360.0,0.0,46,34,0.0,569.3448776507017,525.2262064788536,1290.0,0.0,652.9150443050816,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,111815,2,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1019.46827709112,380.0,58400.90044791682,1,1,1,2,119.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02208870051841837,27809.952594246104,7,4,7,7_1,7_2,7_0_0 -26003,1,69.0,60.0,5,111,0.0,0.0,800.0,0,86,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,71,0,0,0,0,0,0,0,0,0,,2,,3,106339,2,2,0,1,1,504.0,0.0,348.0,21,1.0,4.0,4.0,2.0,1.5,3,3,380.000871879153,0.0,13287.017993928597,0,7,2,3,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06020914552577215,8858.011995952398,1,1,1_1,1_0_1,1_2_1,1_0_0 -26004,2,67.0,0.0,5,111,280.0,1000.0,0.0,0,77,0.0,0.0,387.00878372126056,1280.0,0.0,1813.6529008474488,12,0,0,0,0,0,0,0,0,0,,1,,3,126063,2,2,2,0,1,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,326.05756790566,280.0,22560.97098662817,0,5,0,1,85.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056735146761132435,22560.97098662817,6,3,6,6_1,6_2,6_0_0 -26005,1,30.0,481.0,5,111,250.0,372.0,0.0,85,68,0.0,0.0,345.54355689398267,622.0,0.0,674.678879115251,31,2,1,2,2,2,2,2,1,0,,2,,3,121920,2,1,0,1,1,68.0,0.0,436.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,409.246889757489,250.0,26772.082029934416,6,1,2,3,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.023233157559599923,9915.585937012747,2,1,2_1,2_0_1,2_2_1,2_0_0 -26006,2,78.0,0.0,7,111,900.0,0.0,0.0,56,74,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,114456,2,1,0,0,1,,0.0,830.0,42,2.0,0.0,3.0,3.0,2.0,1,1,1998.66251767001,900.0,52251.756281879694,1,5,2,3,80.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017224301421464555,26125.878140939847,7,4,7,7_0,7_2,7_0_0 -26010,1,82.0,41.0,1,111,0.0,0.0,1830.0,0,72,0.0,0.0,934.9714027526709,1830.0,0.0,2092.1397676143156,20,0,0,0,0,0,0,0,0,0,,1,,1,107873,1,3,3,0,1,,300.0,165.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1139.72772742731,0.0,10944.804766584939,0,5,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.1672026170432099,10944.804766584939,2,1,2_1,2_1_1,2_2_1,2_1_0 -26011,2,56.0,0.0,7,111,240.0,250.0,0.0,0,68,0.0,0.0,331.72181461822333,490.0,0.0,453.4132252118622,71,0,0,0,0,0,0,0,0,0,,2,,5,130930,2,2,0,0,1,,0.0,380.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1411.93773502992,240.0,15408.66921683685,0,1,2,3,51.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03180028029056419,15408.66921683685,3,2,3_0,3_0_0,3_2_0,3_0_0 -26012,2,50.0,0.0,2,221,1704.0,0.0,0.0,85,85,0.0,0.0,2355.224883789386,1914.0,361.26867087994026,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,100171,1,2,3,0,2,,444.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,928.681715392102,1704.0,12255.04150492528,7,7,0,1,70.0,1,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15618062160220075,8170.027669950187,1,1,1_0,1_1_0,1_1_0,1_0_1 -26013,2,51.0,0.0,8,221,0.0,0.0,0.0,52,31,0.0,201.85863843979428,0.0,3079.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,119154,2,1,1,0,1,,449.0,,43,2.0,2.0,7.0,2.0,1.5,1,1,939.683859279441,0.0,137212.99737102355,1,1,1,2,170.0,1,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022439565194209646,91475.33158068237,10,5,10,10_1,10_1,10_0_0 -26014,2,78.0,0.0,5,221,600.0,0.0,0.0,0,86,0.0,621.1035028916747,829.3045365455583,1650.0,774.1471518855863,0.0,44,2,2,2,2,1,2,2,2,0,,1,,3,122401,2,2,3,0,2,,320.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1043.3104255936,600.0,13567.869013103924,0,5,0,1,100.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.12161084385517142,13567.869013103924,3,2,3_0,3_1_0,3_1_0,3_0_0 -26015,2,67.0,0.0,9,221,620.0,0.0,0.0,77,75,0.0,0.0,856.9480210970769,620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,103812,2,1,1,0,1,,110.0,720.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1094.37591029316,620.0,32738.12515716897,5,5,2,3,80.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01893816451075033,21825.41677144598,6,3,6,6_1,6_1,6_0_0 -26016,2,52.0,0.0,1,221,450.0,0.0,0.0,0,63,0.0,0.0,621.9784024091688,630.0,309.6588607542345,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,129866,2,1,2,0,1,,370.0,,12,1.0,2.0,3.0,1.0,1.0,3,3,1108.94627117384,450.0,14698.161773692917,0,4,0,1,108.0,1,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04286250278776952,14698.161773692917,3,2,3_0,3_1_0,3_1_0,3_1_0 -26017,2,64.0,0.0,7,221,1100.0,0.0,0.0,71,71,0.0,0.0,1520.3916503335236,1300.0,344.06540083803833,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,103592,2,2,2,0,1,,420.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,997.36555218731,1100.0,27827.697748436083,5,5,0,1,98.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046716045709281145,18551.79849895739,4,2,4_0,4_1_0,4_1_0,4_0_0 -26018,0,61.0,0.0,5,221,270.0,0.0,0.0,0,77,0.0,0.0,373.1870414455012,2270.0,3440.6540083803834,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,127935,1,2,1,0,1,,200.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,985.972274807081,270.0,18037.177017037106,0,5,0,1,100.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1258511793644793,18037.177017037106,4,2,4_0,4_1_0,4_1_0,4_0_0 -26019,2,61.0,0.0,6,221,2200.0,0.0,0.0,85,12,0.0,672.8621281326475,3040.783300667047,2850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,121516,2,1,1,0,1,,260.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,972.803382413001,2200.0,33364.41728265004,6,1,0,1,116.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08542034395074058,22242.944855100028,6,3,6,6_1,6_1,6_0_0 -26020,2,42.0,0.0,2,221,1000.0,0.0,0.0,54,46,0.0,724.6207533736205,1382.1742275759307,1770.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,114465,2,2,1,0,1,,340.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,906.310102510007,1000.0,45034.26816649542,1,1,1,2,170.0,1,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0393034032096661,21444.889603093055,6,3,6,6_1,6_1,6_0_1 -26021,2,58.0,0.0,1,221,227.0,0.0,0.0,31,11,0.0,207.03450096389156,313.7535496597362,1765.0,2301.7975316064767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122495,2,3,3,0,2,,96.0,,43,2.0,4.0,7.0,2.0,1.5,1,1,968.936491914121,227.0,163870.70359789417,1,1,0,1,168.0,1,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.010770686652636556,109247.13573192945,10,5,10,10_1,10_1,10_1_0 -26022,1,43.0,450.0,6,221,1200.0,0.0,0.0,85,21,0.0,372.6621017350048,1658.6090730911167,1710.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,133129,2,2,2,0,1,,850.0,636.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,970.02520113536,1200.0,17163.768538261902,6,1,2,3,85.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09962847006402034,6356.9513104673715,1,1,1_1,1_1_1,1_1_1,1_0_0 -26023,2,65.0,0.0,6,221,600.0,0.0,0.0,0,75,0.0,155.27587572291867,829.3045365455583,1850.0,1892.359704609211,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,119192,2,1,1,0,2,,220.0,,11,0.0,2.0,4.0,1.0,1.0,4,2,1040.66414648066,600.0,22245.319924436808,0,5,1,2,80.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08316356007843916,22245.319924436808,6,3,6,6_1,6_1,6_0_0 -26024,2,82.0,0.0,2,221,265.0,0.0,0.0,0,78,4032.679167948602,0.0,366.2761703076216,2995.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,116798,2,1,2,0,2,,310.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1068.8555385047,265.0,18758.695865293783,0,5,0,1,100.0,1,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15965928663202913,18758.695865293783,5,3,5,5_1,5_1,5_0_1 -26026,2,44.0,0.0,7,221,806.0,0.0,0.0,56,63,1792.3018524216009,0.0,1114.0324274262,2056.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,111904,2,1,1,0,1,,340.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,903.336854543844,806.0,32243.831033362258,1,1,1,2,165.0,1,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06376413515728588,12897.532413344903,2,1,2_0,2_1_0,2_1_0,2_0_0 -26027,2,70.0,0.0,5,221,1200.0,0.0,0.0,0,74,0.0,134.5724256265295,1658.6090730911167,1420.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,106486,2,1,2,0,1,,330.0,,11,0.0,2.0,6.0,1.0,1.0,2,1,985.972274807081,1200.0,14165.752891351143,0,5,0,1,120.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10024175989028981,14165.752891351143,3,2,3_0,3_1_0,3_1_0,3_0_0 -26028,0,53.0,0.0,1,221,0.0,0.0,0.0,85,55,0.0,621.1035028916747,0.0,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,1,130991,2,1,3,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,1065.91000249595,0.0,29382.22757902179,7,1,5,0,80.0,1,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02042050754614622,19588.15171934786,5,3,5,5_1,5_1,5_1_0 -26029,2,41.0,0.0,9,221,1088.0,0.0,0.0,54,21,0.0,0.0,1503.8055596026124,1088.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2007.0,6,100001,2,1,1,0,1,,194.0,,43,2.0,0.0,5.0,4.0,2.1,4,4,922.90849133766,1088.0,33328.66590824222,1,1,0,1,170.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032644570982690795,15870.793289639152,3,2,3_0,3_1_0,3_1_0,3_0_0 -26030,2,71.0,0.0,9,221,500.0,0.0,0.0,0,86,0.0,0.0,691.0871137879653,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2005.0,6,125777,2,3,0,0,1,,135.0,550.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1342.90897760014,500.0,26573.878575972623,0,5,2,3,40.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01881546943064933,26573.878575972623,7,4,7,7_0,7_1,7_0_0 -26031,2,61.0,0.0,6,221,1400.0,0.0,0.0,0,75,0.0,703.9173032772313,1935.0439186063027,2140.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124994,2,1,1,0,1,,536.0,,11,0.0,2.0,3.0,1.0,1.0,4,3,1043.3104255936,1400.0,24667.67885705942,0,5,0,1,75.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08675319686138903,24667.67885705942,7,4,7,7_1,7_1,7_0_0 -26032,2,39.0,0.0,9,221,528.0,0.0,0.0,52,53,0.0,424.4207269759777,729.7879921600913,938.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,112052,2,1,1,0,1,,430.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,913.264022561008,528.0,55149.31057524439,1,1,1,2,127.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01700837218482025,26261.57646440209,7,4,7,7_1,7_1,7_0_0 -26033,2,54.0,0.0,2,221,695.0,0.0,0.0,0,52,0.0,326.0793390181292,960.6110881652718,1070.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127636,2,1,2,0,1,,234.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,1068.8555385047,695.0,35498.98020601139,0,1,0,1,90.0,1,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030141710939031608,35498.98020601139,9,5,9,9_1,9_1,9_0_1 -26034,2,57.0,0.0,6,221,1400.0,0.0,0.0,0,68,0.0,0.0,1935.0439186063027,1470.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,124978,2,2,2,0,1,,380.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,1012.20870944183,1400.0,8244.12939727759,0,1,0,1,120.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.17830870055065237,8244.12939727759,1,1,1_0,1_1_0,1_1_0,1_0_0 -26035,1,45.0,319.0,7,221,0.0,0.0,0.0,84,63,0.0,0.0,0.0,2038.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,121210,2,1,1,0,1,,688.0,420.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,1,1,1144.5818837893,0.0,24076.800279652773,3,1,2,3,130.0,1,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08464579912316286,9260.307799866452,1,1,1_1,1_1_1,1_1_1,1_0_0 -26036,2,63.0,0.0,7,221,925.0,0.0,0.0,0,74,0.0,0.0,1278.5111605077357,925.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,107827,2,2,2,0,1,,321.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1003.64883452145,925.0,30544.011993465574,0,5,0,1,85.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030284168307617536,30544.011993465574,8,4,8,8_1,8_1,8_0_0 -26037,2,79.0,0.0,1,221,530.0,0.0,0.0,77,75,1120.1886577635005,931.655254337512,732.5523406152432,2180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102205,2,3,2,0,1,,210.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,934.409897751969,530.0,31284.21791201207,5,5,0,1,80.0,1,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06968369821906126,20856.145274674713,5,3,5,5_1,5_1,5_1_0 -26038,2,82.0,0.0,5,221,130.0,0.0,0.0,0,75,0.0,0.0,179.68264958487097,145.0,25.804905062852875,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115697,2,1,2,0,1,,410.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1010.80494668602,130.0,26624.383161346905,0,5,0,1,156.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.005446135563828198,26624.383161346905,7,4,7,7_1,7_1,7_0_0 -26039,2,66.0,0.0,7,221,530.0,0.0,0.0,0,86,0.0,0.0,732.5523406152432,620.0,154.82943037711726,0.0,20,2,2,2,1,1,2,2,2,0,,1,,5,128026,2,1,2,0,1,,400.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,924.69728694256,530.0,3909.3173079087537,0,5,0,1,49.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.1585954659514866,3909.3173079087537,1,1,1_0,1_1_0,1_1_0,1_0_0 -26040,2,72.0,0.0,2,221,1220.0,0.0,0.0,71,71,0.0,0.0,1686.2525576426353,1360.0,240.84578058662683,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,128623,2,2,1,0,1,,420.0,,41,0.0,3.0,4.0,2.0,1.5,2,1,943.630891204192,1220.0,28573.909943309554,5,5,0,1,97.0,1,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.04759586639344181,19049.273295539704,5,3,5,5_1,5_1,5_0_1 -26041,2,77.0,0.0,5,221,600.0,0.0,0.0,0,86,0.0,0.0,829.3045365455583,860.0,447.28502108944986,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,130571,2,1,2,0,2,,320.0,682.0,21,0.0,5.0,4.0,2.0,1.5,1,1,998.309144510814,600.0,31091.792844153802,0,5,2,3,110.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027660032482228057,20727.861896102535,5,3,5,5_1,5_1,5_0_0 -26042,2,75.0,0.0,7,221,420.0,0.0,0.0,0,72,2240.377315527001,0.0,580.5131755818909,1990.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,115383,2,1,2,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,893.756080659748,420.0,11280.540683253905,0,5,0,1,100.0,1,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.17640998387197684,11280.540683253905,2,1,2_0,2_1_0,2_1_0,2_0_0 -26043,2,54.0,0.0,5,221,590.0,0.0,0.0,85,63,0.0,931.655254337512,815.482794269799,1540.0,86.01635020950958,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,104854,2,2,2,0,1,,480.0,,42,1.0,2.0,4.0,4.0,2.3,1,1,961.321867643554,590.0,30591.558257216897,6,1,0,1,100.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05034068506911368,13300.677503137782,3,2,3_0,3_1_0,3_1_0,3_0_0 -26044,2,73.0,0.0,2,221,338.0,0.0,0.0,86,72,3136.5282417378016,0.0,467.17488892066456,2638.0,344.06540083803833,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,110571,1,2,3,0,2,,425.0,,41,0.0,3.0,3.0,2.0,1.5,3,2,953.757025348152,338.0,25352.0,5,5,0,1,100.0,1,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10405490691069738,16901.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_1 -26045,2,62.0,0.0,1,221,552.0,0.0,0.0,0,86,0.0,0.0,762.9601736219137,587.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122288,2,2,2,0,1,,252.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,983.918117458296,552.0,6404.556794344045,0,6,0,1,74.0,1,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09165349279412871,6404.556794344045,1,1,1_0,1_1_0,1_1_0,1_1_0 -26046,1,42.0,121.0,9,221,830.0,0.0,0.0,0,52,0.0,0.0,1147.2046088880224,882.0,89.45700421788997,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,2010.0,6,120688,2,1,1,0,1,,420.0,422.0,32,2.0,0.0,3.0,2.0,1.5,2,2,837.22677845788,830.0,20472.397910047854,0,1,2,3,75.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.043082398255219256,13648.265273365236,3,2,3_1,3_1_1,3_1_1,3_0_0 -26047,2,66.0,0.0,9,221,350.0,0.0,0.0,77,74,0.0,455.47590212056144,483.76097965157567,860.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126232,2,1,1,0,1,,160.0,,41,0.0,3.0,2.0,2.0,1.5,1,1,897.003656217623,350.0,28755.931931314895,6,5,1,2,72.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029906872851631332,19170.621287543265,5,3,5,5_1,5_1,5_0_0 -26048,0,68.0,0.0,5,221,360.0,0.0,0.0,0,86,0.0,0.0,497.582721927335,450.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101086,1,3,3,0,2,,0.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,953.080345070557,360.0,12280.325594703923,0,5,0,1,72.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03664397955328394,12280.325594703923,2,1,2_0,2_1_0,2_1_0,2_0_0 -26049,2,52.0,0.0,8,221,900.0,0.0,0.0,0,53,0.0,455.47590212056144,1243.9568048183376,1370.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125327,2,1,2,0,1,,35.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,1061.95984940068,900.0,29755.628693260063,0,1,1,2,91.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0460417090871388,29755.628693260063,8,4,8,8_1,8_1,8_0_0 -26050,2,59.0,0.0,2,111,620.0,0.0,0.0,0,31,0.0,434.77245202417225,856.9480210970769,1280.0,412.878481005646,0.0,10,2,2,2,1,2,2,2,2,0,,1,,2,123773,2,3,3,0,2,,240.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,960.837067245262,620.0,32492.869244972568,0,1,1,2,80.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03939325857466548,32492.869244972568,8,4,8,8_1,8_2,8_0_1 -26051,2,52.0,0.0,1,111,550.0,0.0,0.0,69,11,3733.962192545002,0.0,760.1958251667618,3190.0,240.84578058662683,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,107275,2,1,2,0,1,,0.0,,43,4.0,0.0,5.0,4.0,2.5,2,2,916.665341375276,550.0,47262.218550731544,1,1,0,1,130.0,5,4,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0674957735336913,18904.887420292616,5,3,5,5_1,5_2,5_1_0 -26052,2,53.0,0.0,5,111,2400.0,0.0,0.0,68,63,0.0,0.0,3317.2181461822333,2550.0,258.04905062852873,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,3,104298,2,3,3,0,1,,320.0,,43,3.0,0.0,6.0,5.0,3.0,1,1,869.460681605439,2400.0,50408.56274991066,1,1,1,2,180.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0505866436353518,16802.85424997022,4,2,4_0,4_1_0,4_2_0,4_0_0 -26053,2,76.0,0.0,8,111,611.0,0.0,0.0,78,74,0.0,0.0,844.5084530488936,641.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,108193,2,1,1,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,953.423158374468,611.0,32742.26892930903,5,5,0,1,154.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019577140526941705,21828.17928620602,6,3,6,6_1,6_2,6_0_0 -26054,2,32.0,0.0,9,111,1670.0,0.0,0.0,22,62,0.0,0.0,2308.2309600518042,1715.0,77.41471518855863,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,131301,2,1,1,0,1,,420.0,650.0,43,2.0,0.0,7.0,3.0,1.8,1,1,1102.46845969983,1670.0,36519.05609691484,1,1,2,3,130.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04696178333439687,20288.364498286024,5,3,5,5_1,5_2,5_0_0 -26055,1,44.0,35.0,2,111,700.0,0.0,0.0,0,56,0.0,698.741440753134,967.5219593031513,1465.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108160,2,3,3,0,1,,550.0,,32,1.0,0.0,3.0,3.0,1.8,3,3,890.576755382776,700.0,13781.55350076155,0,1,1,2,70.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.1063015138256399,7656.4186115341945,1,1,1_1,1_1_1,1_2_1,1_0_1 -26056,2,56.0,0.0,8,111,600.0,0.0,0.0,56,38,2240.377315527001,0.0,829.3045365455583,2160.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2003.0,6,116668,2,1,1,0,1,,600.0,,43,2.0,2.0,8.0,3.0,2.0,5,5,948.364402180715,600.0,61519.03055781652,1,1,1,2,180.0,5,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035111086446168865,30759.51527890826,8,4,8,8_1,8_2,8_0_0 -26057,2,37.0,0.0,7,111,0.0,0.0,0.0,55,68,0.0,0.0,0.0,1512.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,120735,2,1,2,0,1,,149.0,730.0,43,2.0,1.0,4.0,3.0,1.8,4,2,985.11997189177,0.0,18678.36169791431,1,1,2,3,100.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08094928369273602,10376.867609952395,2,1,2_0,2_1_0,2_2_0,2_0_0 -26058,2,59.0,0.0,5,111,1756.0,0.0,0.0,0,75,0.0,0.0,2427.0979436233342,1892.0,233.96447256986607,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117656,1,2,2,0,2,,378.0,,21,1.0,1.0,5.0,2.0,1.5,1,1,832.255981958262,1756.0,24841.69661406322,0,6,0,1,90.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07616226980764725,16561.131076042147,4,2,4_0,4_1_0,4_2_0,4_0_0 -26059,2,72.0,0.0,8,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,740.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,108604,2,2,2,0,1,,2106.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,816.360153515142,0.0,49041.23199555486,5,5,0,1,90.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015089343596977218,32694.15466370324,8,4,8,8_1,8_2,8_0_0 -26060,2,76.0,0.0,9,111,0.0,0.0,0.0,0,77,1493.5848770180007,0.0,0.0,3248.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,124976,2,1,1,0,1,,401.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,883.585872921703,0.0,21440.087540252553,0,5,0,1,100.0,5,4,5,1,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15149191876675241,21440.087540252553,6,3,6,6_1,6_2,6_0_0 -26061,2,63.0,0.0,5,111,1200.0,0.0,0.0,45,77,0.0,0.0,1658.6090730911167,1275.0,129.02452531426437,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,112738,2,1,2,0,1,,400.0,,42,1.0,1.0,5.0,2.0,1.5,4,3,832.255981958262,1200.0,37464.41537163501,1,5,0,1,115.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034032294040956146,24976.276914423343,7,4,7,7_1,7_2,7_0_0 -26062,2,50.0,0.0,9,111,110.0,0.0,0.0,55,47,2240.377315527001,0.0,152.03916503335236,3052.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,6.0,1,2004.0,6,123245,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,820.905410710999,110.0,63754.52365700896,1,1,1,2,110.0,5,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047871112902032845,25501.809462803583,7,4,7,7_1,7_2,7_0_0 -26063,2,77.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1400.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116571,2,2,4,0,2,,150.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,890.235231637156,0.0,11522.902209595903,0,5,0,1,80.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12149716924909117,11522.902209595903,2,1,2_0,2_1_0,2_2_0,2_1_0 -26064,2,80.0,0.0,5,120,600.0,1100.0,0.0,0,72,0.0,0.0,829.3045365455583,1700.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,1,,3,112395,2,1,1,0,1,,220.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2070.77398671982,600.0,10490.76092260713,0,5,0,1,100.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1620473493335049,10490.76092260713,2,1,2_0,2_1_0,2_0_0,2_0_0 -26065,2,76.0,0.0,1,120,1200.0,0.0,0.0,86,72,0.0,0.0,1658.6090730911167,1300.0,172.03270041901916,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,117723,2,2,1,0,1,,254.0,,41,0.0,4.0,7.0,2.0,1.5,3,2,1921.94336167974,1200.0,25047.957334173625,5,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05190043973072302,16698.638222782418,4,2,4_0,4_1_0,4_0_0,4_1_0 -26066,1,57.0,108.0,1,120,480.0,0.0,0.0,0,64,0.0,0.0,663.4436292364467,480.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,130169,2,1,0,0,1,,0.0,385.0,12,1.0,2.0,3.0,1.0,1.0,2,2,3046.4849434856,480.0,17443.895410078214,0,4,2,3,50.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.027516789611263085,17443.895410078214,4,2,4_1,4_0_1,4_0_1,4_1_0 -26067,2,59.0,0.0,9,120,700.0,1000.0,0.0,43,21,0.0,0.0,967.5219593031513,1700.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,113671,2,1,1,0,1,,400.0,,43,2.0,1.0,6.0,2.0,1.5,3,3,2048.1986335947,700.0,56718.744221192486,1,1,1,2,180.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029972454844386508,37812.49614746166,9,5,9,9_1,9_0,9_0_0 -26068,2,46.0,0.0,5,120,1123.0,0.0,0.0,63,37,0.0,0.0,1552.1816575677701,1123.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,3,109078,2,1,2,0,1,,118.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,2303.83650606024,1123.0,44749.569834847134,1,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025095213298017085,29833.046556564757,8,4,8,8_1,8_0,8_0_0 -26069,1,31.0,406.0,7,120,600.0,0.0,0.0,62,67,0.0,0.0,829.3045365455583,690.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,127578,2,1,2,0,2,,0.0,475.0,43,2.0,3.0,4.0,4.0,2.1,4,4,2106.82637111197,600.0,17475.571504585256,4,4,2,3,75.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03948368726132689,8321.70071646917,1,1,1_1,1_1_1,1_0_1,1_0_0 -26070,2,26.0,0.0,5,120,0.0,0.0,0.0,55,63,746.7924385090004,0.0,0.0,530.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,3,128120,2,1,2,0,1,,90.0,,43,2.0,0.0,5.0,2.0,1.5,5,5,2063.06975152426,0.0,30814.495498683955,1,1,1,2,78.0,0,0,5,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01719969746130147,20542.996999122635,5,3,5,5_1,5_0,5_0_0 -26071,2,76.0,0.0,2,120,440.0,1300.0,0.0,78,78,0.0,0.0,608.1566601334094,1740.0,0.0,2357.7487711016834,12,0,0,0,0,0,0,0,0,0,,1,,2,113109,2,1,1,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2041.62885959231,440.0,27502.892765922894,5,5,0,1,120.0,0,0,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06326607222044384,18335.261843948596,4,2,4_0,4_1_0,4_0_0,4_0_1 -26072,2,34.0,0.0,1,120,1200.0,0.0,0.0,54,54,0.0,569.3448776507017,1658.6090730911167,1840.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,110907,2,2,3,0,1,,200.0,,43,2.0,0.0,8.0,4.0,2.1,6,6,1875.78370633041,1200.0,64977.53441883298,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028317479517454537,30941.68305658713,8,4,8,8_1,8_0,8_1_0 -26073,2,70.0,0.0,2,120,1000.0,0.0,0.0,71,71,2987.1697540360015,0.0,1382.1742275759307,3120.0,206.439240502823,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,122626,2,1,1,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,2065.11513900279,1000.0,21270.23190277067,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14668387323006044,14180.154601847113,3,2,3_0,3_1_0,3_0_0,3_0_1 -26074,2,65.0,0.0,9,120,700.0,0.0,0.0,56,74,0.0,207.03450096389156,967.5219593031513,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,123148,2,1,1,0,1,,450.0,,42,1.0,1.0,4.0,2.0,1.5,2,1,2005.8503121074,700.0,22280.070788709636,1,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04039484472625969,14853.380525806424,3,2,3_0,3_1_0,3_0_0,3_0_0 -26075,2,42.0,0.0,1,120,830.0,0.0,0.0,43,43,0.0,414.0690019277831,1147.2046088880224,1350.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,2,4.0,1,,1,130944,1,3,1,0,1,,347.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,1801.93960932953,830.0,60716.318870790274,1,1,0,1,170.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022234549542980694,25298.466196162615,7,4,7,7_1,7_0,7_1_0 -26076,2,53.0,0.0,2,120,940.0,0.0,0.0,77,31,0.0,362.31037668681023,1299.2437739213747,1365.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,116466,2,1,1,0,1,,232.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,2065.57757229525,940.0,77561.4533396008,5,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01759894820463695,51707.63555973387,10,5,10,10_1,10_0,10_0_1 -26077,2,62.0,0.0,9,120,620.0,0.0,0.0,75,75,0.0,517.5862524097289,856.9480210970769,1220.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122170,2,1,1,0,1,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2048.49279613041,620.0,50824.81500134087,5,5,0,1,147.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024004022443914724,33883.21000089391,9,5,9,9_1,9_0,9_0_0 -26079,1,53.0,250.0,1,120,650.0,0.0,0.0,0,11,0.0,0.0,898.4132479243549,710.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,113910,1,3,4,0,2,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2207.62122809579,650.0,11735.328620253422,0,1,2,3,50.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.06050107525533168,11735.328620253422,2,1,2_1,2_1_1,2_0_1,2_1_0 -26080,1,47.0,300.0,1,120,800.0,1200.0,0.0,85,63,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,12,2,2,2,2,1,2,2,2,2,30.0,1,,1,127863,2,2,3,0,1,,400.0,600.0,42,1.0,0.0,6.0,5.0,2.5999999999999996,2,2,2054.34193171177,800.0,27577.639742490683,6,1,2,3,120.0,0,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.07252252254635369,10606.784516342572,2,1,2_1,2_1_1,2_0_1,2_1_0 -26081,2,38.0,0.0,2,120,960.0,0.0,0.0,48,56,4480.754631054002,0.0,1326.8872584728933,4080.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,130180,2,1,2,0,2,,400.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,2019.19611348516,960.0,45048.67732423632,1,1,1,2,132.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09056869684839666,21451.7511067792,6,3,6,6_1,6_0,6_0_1 -26082,2,41.0,0.0,1,120,552.0,1550.0,0.0,65,52,0.0,0.0,762.9601736219137,2102.0,0.0,2811.161996313546,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,127649,2,1,1,0,1,,250.0,,43,3.0,0.0,7.0,4.0,2.5,1,1,1863.7999825526,552.0,62789.76916688854,4,1,1,2,120.0,0,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.033476791329063615,25115.907666755415,7,4,7,7_1,7_0,7_1_0 -26083,2,81.0,0.0,1,120,1000.0,0.0,0.0,86,78,0.0,0.0,1382.1742275759307,1090.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,130507,2,1,4,0,2,,230.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1884.43592698715,1000.0,19781.239135426225,5,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05510271588840553,13187.492756950816,2,1,2_0,2_1_0,2_0_0,2_1_0 -26084,2,21.0,0.0,2,120,1800.0,0.0,0.0,65,34,2240.377315527001,0.0,2487.913609636675,3390.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,2,113320,1,1,1,0,1,,300.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2088.40734578297,1800.0,53895.832561902476,1,1,1,2,113.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06289911183961003,29942.12920105693,8,4,8,8_1,8_0,8_0_1 -26085,2,81.0,0.0,5,120,800.0,0.0,0.0,0,86,0.0,0.0,1105.7393820607444,860.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,119304,2,1,2,0,1,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2268.66279224992,800.0,10181.636510463894,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08446579281397042,10181.636510463894,2,1,2_0,2_1_0,2_0_0,2_0_0 -26086,2,50.0,0.0,1,120,2200.0,0.0,0.0,85,22,0.0,103.51725048194578,3040.783300667047,2400.0,172.03270041901916,0.0,71,2,2,2,2,1,2,2,2,1,2.0,1,,1,132033,2,2,4,0,1,,500.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1866.82595721023,2200.0,33795.86917491704,5,1,1,2,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.0710145961205595,22530.579449944693,6,3,6,6_1,6_0,6_1_0 -26087,2,78.0,0.0,9,120,1300.0,0.0,0.0,77,75,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,116929,2,1,1,0,1,,216.0,,41,0.0,0.0,5.0,2.0,1.5,3,3,2131.87183278814,1300.0,41089.63432685217,5,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03163814965251339,27393.089551234778,7,4,7,7_1,7_0,7_0_0 -26088,1,28.0,350.0,9,120,2000.0,0.0,0.0,85,68,0.0,0.0,2764.3484551518613,2060.0,103.2196202514115,0.0,70,2,2,2,1,2,2,2,2,0,,1,2009.0,6,133522,2,2,1,0,1,,200.0,600.0,42,1.0,0.0,4.0,5.0,2.4,1,1,2211.84353263164,2000.0,11799.152946658292,6,4,2,3,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.17458880390082787,4916.313727774289,1,1,1_1,1_1_1,1_0_1,1_0_0 -26089,1,43.0,280.0,2,120,1450.0,0.0,0.0,85,68,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,10.0,1,,2,111304,1,3,3,0,1,,600.0,362.0,42,1.0,0.0,4.0,4.0,2.3,2,2,1764.1855507045,1450.0,10446.587042095804,6,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0.13880131320947667,4541.994366128611,1,1,1_1,1_1_1,1_0_1,1_0_1 -26090,1,45.0,352.0,5,120,0.0,0.0,0.0,81,68,0.0,0.0,0.0,616.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124029,2,2,3,0,1,,221.0,376.0,43,2.0,2.0,3.0,2.0,1.5,1,1,1680.96057968919,0.0,8262.0,4,4,2,3,78.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07455821834906802,5508.0,1,1,1_1,1_1_1,1_0_1,1_0_0 -26091,2,32.0,0.0,1,120,400.0,0.0,0.0,48,43,0.0,745.3242034700096,552.8696910303722,1210.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,3,60.0,1,,1,133081,2,1,1,0,1,,140.0,,43,2.0,0.0,6.0,3.0,1.8,3,3,2134.27321234966,400.0,37630.399474631195,4,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032154853971606924,20905.77748590622,5,3,5,5_1,5_0,5_1_0 -26092,2,61.0,0.0,6,120,1000.0,0.0,0.0,0,72,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,129938,2,1,2,0,1,,180.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,2264.42886650762,1000.0,9756.889461392033,0,5,0,1,105.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10864118161781121,9756.889461392033,2,1,2_0,2_1_0,2_0_0,2_0_0 -26093,2,61.0,0.0,1,120,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,500.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,1,,1,112328,2,2,4,0,1,,111.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2021.72348859238,500.0,6100.834059801092,0,7,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.08195600717851712,6100.834059801092,1,1,1_0,1_1_0,1_0_0,1_1_0 -26094,1,48.0,350.0,1,120,1290.0,0.0,0.0,0,56,0.0,0.0,1783.0047535729504,1350.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104721,2,2,2,0,2,,500.0,540.0,32,1.0,0.0,6.0,3.0,2.0,1,1,2574.84132116711,1290.0,16408.850295520464,0,1,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0822726745437213,8204.425147760232,1,1,1_1,1_1_1,1_0_1,1_1_0 -26095,2,79.0,0.0,2,120,1700.0,0.0,0.0,0,72,0.0,0.0,2349.696186879082,1850.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128956,2,2,4,0,1,,158.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,2056.8410806081,1700.0,11592.970679218482,0,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15957945993224182,11592.970679218482,2,1,2_0,2_1_0,2_0_0,2_0_1 -26096,2,23.0,0.0,1,120,0.0,0.0,0.0,54,63,0.0,0.0,0.0,2769.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,112087,2,1,1,0,1,,131.0,520.0,43,2.0,0.0,4.0,2.0,1.5,3,2,2152.60633314316,0.0,28843.546006702527,4,1,2,3,127.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09600067895107463,19229.030671135017,5,3,5,5_1,5_0,5_1_0 -26097,2,92.0,0.0,1,120,600.0,1200.0,0.0,71,71,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,0,,1,,1,129472,2,2,2,0,1,,220.0,,41,0.0,2.0,7.0,2.0,1.5,3,1,2028.38043789852,600.0,20463.16149187673,5,5,0,1,120.0,0,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08796294750029446,13642.107661251153,3,2,3_0,3_1_0,3_0_0,3_1_0 -26098,2,67.0,0.0,7,120,1510.0,0.0,0.0,75,75,0.0,0.0,2087.0830836396553,1510.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,125523,2,1,2,0,1,,500.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,2048.49279613041,1510.0,56268.9631072751,5,5,1,2,190.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026835397644012562,37512.64207151673,9,5,9,9_1,9_0,9_0_0 -26099,2,38.0,0.0,5,120,1000.0,0.0,0.0,55,34,0.0,0.0,1382.1742275759307,1035.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,128504,2,2,5,0,1,,200.0,490.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2052.47294776736,1000.0,40506.596794790756,1,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025551393646901076,27004.397863193837,7,4,7,7_1,7_0,7_0_0 -26100,2,85.0,0.0,1,120,500.0,0.0,0.0,0,72,3733.962192545002,0.0,691.0871137879653,3090.0,154.82943037711726,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,127385,2,2,4,0,2,,200.0,,11,0.0,2.0,7.0,1.0,1.0,4,4,2072.95897578205,500.0,14555.427835233007,0,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.21229193912942335,14555.427835233007,3,2,3_0,3_1_0,3_0_0,3_1_0 -26101,2,72.0,0.0,1,112,600.0,0.0,0.0,75,75,2987.1697540360015,0.0,829.3045365455583,2720.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116393,2,1,2,0,1,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2129.24141424308,600.0,50651.4033451401,5,5,0,1,150.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05370038775561346,33767.6022300934,9,5,9,9_1,9_0,9_1_0 -26102,2,36.0,0.0,1,112,600.0,0.0,0.0,43,42,0.0,621.1035028916747,829.3045365455583,1230.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,1,125902,2,1,3,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2349.98127802967,600.0,55013.68712611987,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02235807240442188,30563.159514511037,8,4,8,8_1,8_0,8_1_0 -26103,2,79.0,0.0,1,112,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,126980,2,1,4,0,1,,220.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,1997.0197548774,1000.0,17010.642583390763,0,5,0,1,70.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06231393051753299,17010.642583390763,4,2,4_0,4_1_0,4_0_0,4_1_0 -26104,2,52.0,0.0,1,112,360.0,0.0,0.0,0,48,0.0,0.0,497.582721927335,450.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,1,10.0,1,,1,130438,2,2,3,1,1,,260.0,500.0,12,1.0,3.0,5.0,1.0,1.0,1,1,2267.03428277495,360.0,33545.10922052526,0,1,2,3,80.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013414772241214179,33545.10922052526,8,4,8,8_1,8_0,8_1_0 -26105,2,64.0,0.0,5,112,900.0,0.0,0.0,78,74,597.4339508072003,0.0,1243.9568048183376,1360.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,117337,2,1,2,0,1,,300.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1920.71375876299,900.0,51251.12442713979,5,5,0,1,110.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026536003164836293,34167.416284759856,9,5,9,9_1,9_0,9_0_0 -26106,1,39.0,124.0,9,112,750.0,0.0,0.0,52,48,0.0,0.0,1036.630670681948,850.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,108195,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,1951.19779198618,750.0,53243.457531043816,1,1,1,2,160.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.01596440275322849,20478.252896555317,5,3,5,5_1,5_0,5_0_0 -26107,1,39.0,36.0,1,112,500.0,0.0,0.0,56,62,2987.1697540360015,0.0,691.0871137879653,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113518,2,1,3,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1810.27015320985,500.0,27883.0749212698,1,1,1,2,120.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08966012561595017,13277.65472441419,3,2,3_1,3_1_1,3_0_1,3_1_0 -26108,2,43.0,0.0,2,112,820.0,0.0,0.0,42,54,2389.735803228801,0.0,1133.3828666122631,2420.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,131140,2,2,2,0,1,,360.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,2293.00352476676,820.0,44179.24252069714,1,1,1,2,160.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05477685586995467,22089.62126034857,6,3,6,6_1,6_0,6_0_1 -26109,0,23.0,0.0,1,112,0.0,0.0,0.0,0,69,0.0,0.0,0.0,924.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,131282,2,1,4,0,1,,236.0,,12,1.0,0.0,5.0,1.0,1.0,3,2,2255.24658879141,0.0,21747.46178009596,0,1,5,0,240.0,7,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04248771692730033,21747.46178009596,6,3,6,6_1,6_0,6_1_0 -26110,2,36.0,0.0,9,112,2000.0,0.0,0.0,55,62,0.0,0.0,2764.3484551518613,2060.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,119918,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,4.0,2.1,1,1,1930.20456023535,2000.0,28454.17515861229,1,1,1,2,245.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07239710828083853,13549.607218386804,3,2,3_0,3_1_0,3_0_0,3_0_0 -26111,2,62.0,0.0,5,112,800.0,0.0,0.0,78,78,0.0,0.0,1105.7393820607444,1050.0,430.0817510475479,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,126526,2,1,1,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1991.45166463031,800.0,40237.3197206893,5,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0260951774941438,26824.879813792868,7,4,7,7_1,7_0,7_0_0 -26112,2,40.0,0.0,1,112,500.0,0.0,0.0,54,37,2240.377315527001,0.0,691.0871137879653,2080.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,114429,2,1,1,0,1,,380.0,,43,2.0,0.0,8.0,4.0,2.3,1,1,2005.87424850579,500.0,100876.84065459917,1,1,0,1,190.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020619202450261994,43859.49593678225,10,5,10,10_1,10_0,10_1_0 -26113,2,31.0,0.0,9,112,800.0,0.0,0.0,55,62,0.0,0.0,1105.7393820607444,860.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,2006.0,6,110895,2,1,2,0,1,,250.0,580.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1946.08395029972,800.0,16516.0,1,1,2,3,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05207071930249455,9175.555555555555,1,1,1_0,1_1_0,1_0_0,1_0_0 -26114,1,39.0,210.0,9,112,1200.0,0.0,0.0,0,52,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,132379,2,2,2,0,1,,300.0,446.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2022.06555939774,1200.0,19693.871720125793,0,1,2,3,81.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06093266052777636,12308.66982507862,2,1,2_1,2_1_1,2_0_1,2_0_0 -26115,2,49.0,0.0,9,112,1300.0,0.0,0.0,55,62,0.0,289.84830134944815,1796.8264958487098,1700.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100728,2,1,1,0,1,,380.0,,43,4.0,0.0,5.0,5.0,2.8,1,1,1705.98216737894,1300.0,77458.0146344122,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021947373787253546,27663.57665514722,7,4,7,7_1,7_0,7_0_0 -26116,2,78.0,0.0,1,112,880.0,0.0,0.0,78,78,0.0,517.5862524097289,1216.313320266819,1470.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109747,2,1,2,0,1,,233.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1914.00188245264,880.0,45919.54197681153,5,5,0,1,200.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03201251442669705,30613.027984541022,8,4,8,8_1,8_0,8_1_0 -26117,2,78.0,0.0,5,112,308.0,0.0,0.0,71,71,0.0,0.0,425.7096620933866,368.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,129746,2,1,3,0,1,,180.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,954.446487294094,308.0,31963.19392135837,5,5,0,1,100.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01151324241580551,21308.795947572245,6,3,6,6_1,6_0,6_0_0 -26118,2,54.0,0.0,9,112,1180.0,0.0,0.0,46,37,0.0,0.0,1630.965588539598,1180.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,128424,2,1,1,0,1,,257.0,,43,3.0,1.0,5.0,3.0,2.0,3,2,1172.67760562573,1180.0,86695.40639179418,1,1,1,2,136.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013610871084303358,43347.70319589709,10,5,10,10_1,10_0,10_0_0 -26119,0,73.0,0.0,6,112,1064.0,0.0,0.0,75,75,0.0,724.6207533736205,1470.6333781407902,1904.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,127398,2,1,1,0,1,,400.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1103.34944379737,1064.0,24564.567015876954,5,5,0,1,127.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07751001671510746,16376.378010584636,4,2,4_0,4_1_0,4_0_0,4_0_0 -26120,2,39.0,0.0,9,112,0.0,0.0,0.0,46,62,0.0,0.0,0.0,2271.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,109760,2,1,1,0,1,,433.0,773.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1323.63872706907,0.0,37363.70836362551,1,1,2,3,120.0,8,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06078090477258072,20757.61575756973,5,3,5,5_1,5_0,5_0_0 -26121,2,69.0,0.0,5,112,1500.0,0.0,0.0,77,72,1792.3018524216009,62.110350289167464,2073.261341363896,2835.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103731,2,1,1,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,983.526669608066,1500.0,68417.18380103313,5,5,0,1,102.0,8,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04143695841449104,45611.45586735542,10,5,10,10_1,10_0,10_0_0 -26122,2,66.0,0.0,9,112,2245.0,0.0,0.0,0,43,0.0,31.055175144583732,3102.981140907964,2275.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,104844,2,1,1,0,1,,315.0,,21,1.0,3.0,6.0,2.0,1.5,3,3,1104.59774149756,2245.0,67669.50546463234,0,5,1,2,160.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03361927923633246,45113.003643088225,10,5,10,10_1,10_0,10_0_0 -26123,2,58.0,0.0,5,112,740.0,1420.0,0.0,52,21,0.0,0.0,1022.8089284061887,2160.0,0.0,2575.3871192033776,50,0,0,0,0,0,0,0,0,0,,1,,3,102023,2,2,2,0,1,,438.0,,43,2.0,1.0,5.0,2.0,1.5,3,2,955.770798182259,740.0,48121.00867126452,1,4,0,1,98.0,8,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04488683964951559,32080.67244750968,8,4,8,8_1,8_0,8_0_0 -26124,2,65.0,0.0,1,112,200.0,0.0,0.0,0,78,0.0,0.0,276.4348455151861,275.0,129.02452531426437,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,113253,2,2,4,0,2,,449.0,77.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1656.24682487713,200.0,14880.524682308984,0,5,2,3,30.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.018480531155392617,14880.524682308984,3,2,3_0,3_1_0,3_0_0,3_1_0 -26125,2,41.0,0.0,2,112,1300.0,0.0,0.0,63,46,0.0,0.0,1796.8264958487098,1400.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,113143,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1106.90407260793,1300.0,46721.23382313945,1,1,1,2,125.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029964962083399157,25956.24101285525,7,4,7,7_1,7_0,7_0_1 -26126,2,55.0,0.0,7,112,400.0,0.0,0.0,0,47,1045.5094139126004,155.27587572291867,552.8696910303722,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,131336,2,1,2,0,1,,300.0,,12,1.0,1.0,4.0,1.0,1.0,2,1,1053.14632330938,400.0,47240.68331864679,0,1,0,1,126.0,8,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026460243844665162,47240.68331864679,10,5,10,10_1,10_0,10_0_0 -26127,2,71.0,0.0,5,112,90.0,0.0,0.0,75,74,0.0,0.0,124.39568048183375,96.0,10.32196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,123362,2,1,2,0,1,,261.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,990.833718687134,90.0,64225.48755003278,5,5,0,1,116.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0014947336900356625,42816.991700021856,9,5,9,9_1,9_0,9_0_0 -26128,2,70.0,0.0,1,112,800.0,2200.0,0.0,77,74,0.0,310.55175144583734,1105.7393820607444,3300.0,0.0,3990.0363818643877,50,0,0,0,0,0,0,0,0,0,,1,,1,132028,2,1,1,0,1,,400.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1130.11294936668,800.0,86885.38422751956,5,5,0,1,300.0,8,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03798107160760852,57923.58948501304,10,5,10,10_1,10_0,10_1_0 -26129,2,34.0,0.0,9,112,1439.0,0.0,0.0,52,54,0.0,0.0,1988.9487134817641,1439.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,123701,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1039.12242095325,1439.0,41545.646933308795,1,1,1,2,120.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03463660109349017,19783.64139681371,5,3,5,5_1,5_0,5_0_0 -26130,2,47.0,0.0,6,112,2180.0,0.0,0.0,22,37,0.0,103.51725048194578,3013.1398161155284,2280.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,132832,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,1071.70547214424,2180.0,86444.13399802467,1,1,0,1,140.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026375416058330808,34577.653599209865,9,5,9,9_1,9_0,9_0_0 -26131,2,44.0,0.0,7,112,900.0,920.0,0.0,62,43,0.0,0.0,1243.9568048183376,1820.0,0.0,1668.560668779653,33,1,2,2,2,1,2,2,2,2,15.0,1,,5,120948,2,1,2,0,1,,386.0,,43,2.0,0.0,7.0,5.0,2.8,1,1,989.533026081429,900.0,72529.17681904767,1,1,0,1,122.0,8,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.025093349736213057,25903.27743537417,7,4,7,7_1,7_0,7_0_0 -26132,2,58.0,0.0,5,112,1000.0,0.0,0.0,0,37,0.0,155.27587572291867,1382.1742275759307,1180.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,118277,2,2,2,0,1,,200.0,,22,3.0,0.0,5.0,3.0,2.0,3,3,1148.46739287731,1000.0,50459.022841541606,0,1,0,1,122.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02338531215131928,25229.511420770803,7,4,7,7_1,7_0,7_0_0 -26133,2,55.0,0.0,6,112,2500.0,0.0,0.0,34,37,0.0,0.0,3455.435568939826,2749.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,1,,4,108741,1,2,2,0,1,,150.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1097.97447692323,2500.0,99569.58561245476,1,1,0,1,120.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02760883238682615,66379.72374163651,10,5,10,10_1,10_0,10_0_0 -26134,2,54.0,0.0,7,112,1127.0,0.0,0.0,74,37,1986.467886433941,0.0,1557.7103544780737,2457.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,120866,2,1,1,0,1,,247.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1087.25493507005,1127.0,92512.35414582891,5,1,0,1,130.0,8,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02655861503780334,61674.90276388594,10,5,10,10_1,10_0,10_0_0 -26135,2,33.0,0.0,2,112,1100.0,1500.0,0.0,43,65,0.0,0.0,1520.3916503335236,2600.0,0.0,2720.4793512711735,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,108790,1,3,4,0,2,,320.0,680.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1197.38442961844,1100.0,39242.1643887447,1,1,2,3,124.0,8,0,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0662552649808919,21801.2024381915,6,3,6,6_1,6_0,6_0_1 -26136,2,46.0,0.0,7,112,800.0,0.0,0.0,0,62,0.0,0.0,1105.7393820607444,815.0,25.804905062852875,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,108001,2,2,0,0,1,,0.0,288.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1293.23467056534,800.0,23624.823928035414,0,1,2,3,50.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03449761160051844,23624.823928035414,6,3,6,6_0,6_0,6_0_0 -26137,2,23.0,0.0,7,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1605.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,113579,2,3,1,0,1,,91.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1085.30173336263,0.0,20830.22300142931,0,1,1,2,43.0,8,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0770515034759767,20830.22300142931,5,3,5,5_1,5_0,5_0_0 -26138,2,66.0,0.0,5,112,1048.0,0.0,0.0,75,74,0.0,124.22070057833493,1448.518590499575,1168.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,127969,2,2,2,0,1,,290.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1097.97447692323,1048.0,60331.00996694603,5,5,0,1,124.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01935986154781629,40220.67331129735,9,5,9,9_1,9_0,9_0_0 -26139,2,58.0,0.0,7,112,460.0,1000.0,0.0,45,38,0.0,51.75862524097289,635.800144684928,1510.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,122844,1,2,1,0,1,,230.0,,43,3.0,2.0,4.0,3.0,2.0,2,2,1137.95193370076,460.0,90340.955052165,1,1,0,1,125.0,8,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01671445690526617,45170.4775260825,10,5,10,10_1,10_0,10_0_0 -26140,2,33.0,0.0,8,112,1102.0,0.0,0.0,64,34,0.0,0.0,1523.1559987886756,1162.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,1999.0,6,112144,1,3,3,0,1,,300.0,660.0,43,2.0,0.0,4.0,2.0,1.5,3,2,1173.66976182433,1102.0,39631.33245954576,1,1,2,3,90.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0293202354774755,26420.88830636384,7,4,7,7_1,7_0,7_0_0 -26141,2,53.0,0.0,6,112,1200.0,0.0,0.0,0,46,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,111209,2,2,2,0,1,,130.0,623.0,32,1.0,0.0,4.0,2.0,1.5,2,2,1032.6152929973,1200.0,38997.52798972701,0,1,2,3,70.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030771181196821297,25998.35199315134,7,4,7,7_1,7_0,7_0_0 -26142,2,61.0,0.0,1,112,360.0,1430.0,0.0,0,74,0.0,155.27587572291867,497.582721927335,1940.0,0.0,2593.523648211852,20,0,0,0,0,0,0,0,0,0,,1,,1,102248,2,1,3,0,1,,186.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1305.94800975156,360.0,44653.3303555555,0,5,0,1,175.0,8,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0434458076150783,44653.3303555555,10,5,10,10_1,10_0,10_1_0 -26143,2,81.0,0.0,2,112,390.0,1110.0,0.0,77,74,0.0,0.0,539.0479487546129,1500.0,0.0,2013.1547199406682,71,2,2,2,1,1,2,2,2,0,,1,,2,110726,2,2,1,0,1,,260.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,954.446487294094,390.0,35267.33392826208,5,5,0,1,90.0,8,0,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.04253227655515943,23511.55595217472,6,3,6,6_1,6_0,6_0_1 -26144,2,51.0,0.0,8,112,1106.0,0.0,0.0,74,35,0.0,0.0,1528.684695698979,1136.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,113144,2,1,1,0,1,,251.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1054.81975871796,1106.0,62682.28043720315,5,1,1,2,135.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018123144085960247,41788.18695813543,9,5,9,9_1,9_0,9_0_0 -26145,2,76.0,0.0,2,112,1960.0,0.0,0.0,0,77,0.0,0.0,2709.061486048824,2000.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115189,2,1,3,0,1,,310.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1066.1640498208,1960.0,19722.988118295096,0,5,0,1,96.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10140451274443525,19722.988118295096,5,3,5,5_1,5_0,5_0_1 -26146,2,52.0,0.0,9,112,1200.0,0.0,0.0,52,63,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,15.0,1,2005.0,6,111599,2,1,1,0,1,,160.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,1129.5498633541,1200.0,38619.82364026667,1,1,1,2,90.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.031072125320345298,19309.911820133337,5,3,5,5_1,5_0,5_0_0 -26147,2,60.0,0.0,9,112,1300.0,0.0,0.0,55,62,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,40.0,1,2009.0,6,116086,2,1,1,0,1,,386.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,1034.12287695246,1300.0,46157.75423158236,1,1,1,2,96.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02816428185560435,30771.83615438824,8,4,8,8_1,8_0,8_0_0 -26148,2,72.0,0.0,2,111,800.0,0.0,0.0,0,78,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,108472,2,1,0,0,1,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,2,2,1568.96383722965,800.0,14966.959853461485,0,5,2,3,70.0,6,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.053451068742927106,14966.959853461485,3,2,3_0,3_0_0,3_2_0,3_0_1 -26149,1,67.0,200.0,1,111,1200.0,0.0,0.0,0,77,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,2,,1,124316,2,3,0,0,2,,0.0,263.0,11,0.0,2.0,2.0,1.0,1.0,3,2,1847.98662673215,1200.0,9266.387713206434,0,5,2,3,40.0,6,4,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.12950030121120043,9266.387713206434,1,1,1_1,1_0_1,1_2_1,1_1_0 -26150,2,86.0,0.0,2,111,270.0,890.0,0.0,77,75,0.0,82.81380038555662,373.1870414455012,1240.0,0.0,1614.1510817542296,20,0,0,0,0,0,0,0,0,0,,1,,2,128519,2,2,3,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,279.58269941107,270.0,35026.46977668614,5,5,0,1,70.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03540179778052747,23350.979851124095,6,3,6,6_1,6_2,6_0_1 -26151,1,46.0,190.0,2,111,230.0,180.0,0.0,0,85,0.0,0.0,317.900072342464,480.0,120.42289029331342,326.4575221525408,20,0,0,0,0,0,0,0,0,0,,2,,2,116171,2,1,0,1,2,608.0,0.0,177.0,11,0.0,0.0,3.0,1.0,1.0,2,1,325.793050714469,230.0,6780.634538534974,0,7,2,3,56.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07078983497372046,6780.634538534974,1,1,1_1,1_0_1,1_2_1,1_0_1 -26152,1,44.0,237.0,2,111,500.0,300.0,0.0,0,81,0.0,0.0,691.0871137879653,800.0,0.0,544.0958702542347,60,2,1,2,2,1,2,2,2,0,,2,,2,119367,2,1,0,1,1,,0.0,450.0,32,1.0,0.0,4.0,5.0,2.2,2,2,383.138602763208,500.0,15059.128670832244,0,4,2,3,85.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05312392353413552,6845.058486741928,1,1,1_1,1_0_1,1_2_1,1_0_1 -26153,2,78.0,0.0,2,111,0.0,0.0,0.0,78,77,0.0,0.0,0.0,1360.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,133094,2,1,0,1,1,756.0,0.0,283.0,41,0.0,4.0,4.0,2.0,1.5,2,2,369.239435460667,0.0,28607.899430650876,5,5,2,3,70.0,6,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0475393170091642,19071.93295376725,5,3,5,5_0,5_2,5_0_1 -26154,2,80.0,0.0,2,111,260.0,1900.0,0.0,0,77,0.0,0.0,359.36529916974195,2160.0,0.0,3445.940511610153,42,2,2,2,1,1,2,2,2,0,,1,,2,114843,1,3,3,0,2,,250.0,521.0,11,0.0,2.0,4.0,1.0,1.0,4,4,1180.71983912813,260.0,21230.52119559127,0,5,2,3,80.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0.10174031904824576,21230.52119559127,5,3,5,5_1,5_2,5_0_1 -26155,2,30.0,0.0,1,111,515.0,1880.0,0.0,42,46,0.0,0.0,711.8197272016042,2395.0,0.0,3409.667453593204,71,2,2,2,2,1,2,2,2,2,120.0,1,,1,129570,2,2,3,0,1,,383.0,,43,2.0,0.0,6.0,3.0,1.8,4,4,1154.51160032536,515.0,59529.0,1,1,1,2,100.0,6,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04023249172672143,33071.666666666664,8,4,8,8_1,8_2,8_1_0 -26156,2,89.0,0.0,2,111,454.0,984.0,0.0,0,86,0.0,0.0,627.5070993194724,1438.0,0.0,1784.6344544338897,70,0,0,0,0,0,0,0,0,0,,2,,2,108418,2,1,0,0,1,,120.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,432.158360577775,454.0,15270.826521646635,0,5,0,1,90.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09416648129435644,15270.826521646635,3,2,3_0,3_0_0,3_2_0,3_0_1 -26157,1,45.0,255.0,2,111,250.0,110.0,0.0,0,67,0.0,0.0,345.54355689398267,360.0,0.0,199.50181909321938,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,123528,2,1,0,1,1,1341.0,0.0,257.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1214.80441742159,250.0,14062.53525096257,0,1,2,3,50.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02559993582774189,14062.53525096257,3,2,3_1,3_0_1,3_2_1,3_0_1 -26158,2,87.0,0.0,1,111,256.0,1540.0,0.0,0,90,0.0,0.0,353.8366022594382,1796.0,0.0,2793.0254673050713,50,0,0,0,0,0,0,0,0,0,,1,,1,112931,1,2,3,0,2,,360.0,,11,0.0,4.0,5.0,1.0,1.0,5,4,1200.27969723104,256.0,11853.312088833834,0,5,0,1,85.0,6,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15151883174424172,11853.312088833834,2,1,2_0,2_1_0,2_2_0,2_1_0 -26159,2,79.0,0.0,1,111,236.0,1410.0,0.0,0,78,0.0,0.0,326.1931177079196,1646.0,0.0,2557.250590194903,42,0,0,0,0,0,0,0,0,0,,1,,1,101486,2,1,3,0,1,,251.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1076.39715799999,236.0,18784.91179370618,0,5,0,1,60.0,6,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08762351498245985,18784.91179370618,5,3,5,5_1,5_2,5_1_0 -26160,2,70.0,0.0,5,111,1060.0,0.0,0.0,77,78,0.0,0.0,1465.1046812304864,1210.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,111344,2,2,2,0,1,,250.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,979.604392711398,1060.0,32377.135446047563,5,5,0,1,92.0,6,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0373720523242803,21584.75696403171,6,3,6,6_1,6_2,6_0_0 -26162,2,67.0,0.0,2,111,900.0,0.0,0.0,78,62,2091.018827825201,0.0,1243.9568048183376,2540.0,412.878481005646,0.0,20,0,0,0,0,0,0,0,0,2,18.0,1,,2,130637,1,1,3,0,1,,100.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1045.15065069973,900.0,29791.864739392196,5,1,0,1,78.0,6,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08525817441167062,19861.243159594796,5,3,5,5_1,5_2,5_0_1 -26164,1,42.0,303.0,2,111,850.0,1400.0,0.0,0,62,0.0,0.0,1174.848093439541,2250.0,0.0,2539.1140611864284,50,2,2,2,1,1,1,2,2,0,,1,,2,105817,2,2,5,0,2,,410.0,643.0,32,1.0,1.0,6.0,4.0,2.1,1,1,1096.42176637937,850.0,20588.69350648037,0,4,2,3,110.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,0,0,1,0.10928328207381416,9804.139764990652,2,1,2_1,2_1_1,2_2_1,2_0_1 -26166,2,68.0,0.0,2,111,250.0,900.0,0.0,0,75,0.0,51.75862524097289,345.54355689398267,1200.0,0.0,1632.287610762704,33,0,0,0,0,0,0,0,0,0,,1,,2,101876,2,2,1,0,1,,50.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1013.77184399066,250.0,30118.546071796143,0,5,0,1,100.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039842560697965226,30118.546071796143,8,4,8,8_1,8_2,8_0_1 -26167,2,46.0,0.0,2,111,1500.0,0.0,0.0,0,62,0.0,0.0,2073.261341363896,1540.0,68.81308016760767,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,132937,1,2,5,0,1,,500.0,613.0,32,1.0,0.0,4.0,2.0,1.3,3,2,1141.07091657303,1500.0,35043.58460617598,0,1,2,3,90.0,6,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04394527606997701,26956.60354321229,7,4,7,7_1,7_2,7_0_1 -26168,2,82.0,0.0,1,111,1000.0,0.0,0.0,0,71,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,101735,2,2,2,0,2,,0.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,1103.4351794156,1000.0,19774.201133402636,0,5,0,1,100.0,6,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05057094308152845,19774.201133402636,5,3,5,5_1,5_2,5_1_0 -26169,2,65.0,0.0,6,111,2000.0,0.0,0.0,72,72,0.0,0.0,2764.3484551518613,2150.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,119747,2,1,1,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,980.963610625269,2000.0,21894.55891357687,5,5,0,1,95.0,6,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09819791339421684,14596.372609051248,3,2,3_0,3_1_0,3_2_0,3_0_0 -26170,2,40.0,0.0,2,111,500.0,1500.0,0.0,54,90,0.0,0.0,691.0871137879653,2000.0,0.0,2720.4793512711735,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,117687,2,1,2,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1001.04989753621,500.0,73173.1137064047,1,1,1,2,80.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027332443553306707,34844.33986019272,9,5,9,9_1,9_2,9_0_1 -26171,0,34.0,0.0,2,111,320.0,1000.0,0.0,45,63,0.0,0.0,442.2957528242978,1320.0,0.0,1813.6529008474488,60,2,2,2,2,1,2,2,2,0,,2,,2,132290,2,3,0,0,1,,1000.0,,43,3.0,0.0,4.0,5.0,2.8,2,2,1378.74142440627,320.0,11667.130321795103,4,1,5,0,80.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.11313836081303881,4166.832257783965,1,1,1_0,1_0_0,1_2_0,1_0_1 -26172,2,73.0,0.0,2,111,420.0,1200.0,0.0,77,78,0.0,0.0,580.5131755818909,1620.0,0.0,2176.3834810169387,44,0,0,0,0,0,0,0,0,0,,1,,2,133628,2,1,2,0,1,,230.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1012.19806138743,420.0,24113.38400007439,5,5,0,1,75.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06718260697026192,16075.589333382928,4,2,4_0,4_1_0,4_2_0,4_0_1 -26173,1,81.0,24.0,2,111,390.0,817.0,0.0,0,74,0.0,0.0,539.0479487546129,1207.0,0.0,1481.7544199923657,50,0,0,0,0,0,0,0,0,0,,1,,2,123405,1,1,2,0,2,,310.0,640.0,21,0.0,0.0,4.0,3.0,2.0,4,3,1176.36032605598,390.0,41750.13967266172,0,5,2,3,100.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.02891008292339563,20875.06983633086,5,3,5,5_1,5_2,5_0_1 -26174,2,49.0,0.0,1,111,150.0,1200.0,0.0,0,52,0.0,0.0,207.32613413638958,1350.0,0.0,2176.3834810169387,50,2,2,2,2,1,2,2,2,3,90.0,1,,1,112001,1,3,3,0,1,,189.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,1096.01446590198,150.0,26334.288621743814,0,1,0,1,90.0,6,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.0512639630935512,17556.192414495876,4,2,4_0,4_1_0,4_2_0,4_1_0 -26175,2,66.0,0.0,2,111,1600.0,800.0,0.0,77,78,0.0,0.0,2211.478764121489,2400.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,0,,1,,2,103352,2,2,1,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,1119.21122455005,1600.0,36419.764207300155,5,5,0,1,115.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06589828496250759,24279.84280486677,7,4,7,7_1,7_2,7_0_1 -26176,2,44.0,0.0,5,111,444.0,1089.0,0.0,0,46,0.0,0.0,613.6853570437131,1533.0,0.0,1975.0680090228718,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,110139,1,1,4,0,2,,264.0,,22,1.0,0.0,5.0,2.0,1.5,1,1,1035.07294890863,444.0,47674.24349239931,0,1,1,2,140.0,6,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03215572786685972,31782.828994932876,8,4,8,8_1,8_2,8_0_0 -26177,1,67.0,185.0,9,111,350.0,950.0,0.0,0,78,0.0,0.0,483.76097965157567,1300.0,0.0,1722.9702558050765,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,121618,2,3,1,0,1,,220.0,586.0,21,0.0,8.0,3.0,2.0,1.5,2,2,1125.80111654345,350.0,22978.889194370753,0,5,2,3,72.0,6,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05657366589845723,15319.259462913835,3,2,3_1,3_1_1,3_2_1,3_0_0 -26178,2,54.0,0.0,1,400,960.0,0.0,0.0,78,52,1493.5848770180007,1035.1725048194578,1326.8872584728933,3020.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,113335,2,2,4,0,1,,170.0,416.0,42,3.0,0.0,4.0,5.0,3.0,1,1,729.305041136769,960.0,49924.53037206798,5,1,2,3,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06049130512581936,16641.51012402266,4,2,4_0,4_1_0,4_0_0,4_1_0 -26179,1,54.0,175.0,7,400,1240.0,0.0,0.0,0,77,0.0,931.655254337512,1713.8960421941538,2140.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,116117,1,1,3,0,1,,365.0,450.0,11,0.0,3.0,4.0,1.0,1.0,2,2,841.568553506266,1240.0,16242.690446124761,0,7,2,3,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.13175157201315554,16242.690446124761,4,2,4_1,4_1_1,4_0_1,4_0_0 -26180,2,82.0,0.0,1,400,0.0,0.0,0.0,77,78,5227.547069563002,46.5827627168756,0.0,4698.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110390,1,2,2,0,2,,160.0,400.0,41,0.0,3.0,3.0,2.0,1.5,2,2,846.073197290136,0.0,19397.6033050779,5,5,2,3,100.0,0,0,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.24219486944400798,12931.735536718601,2,1,2_0,2_1_0,2_0_0,2_1_0 -26181,2,41.0,0.0,2,400,393.0,0.0,0.0,67,67,3418.8157834942035,0.0,543.1944714373407,2784.0,175.47335442739956,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103095,2,2,1,0,1,,114.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,728.100839067933,393.0,45360.63815413434,1,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06137479791488021,25200.354530074634,7,4,7,7_1,7_0,7_0_1 -26182,2,79.0,0.0,2,400,0.0,0.0,0.0,86,72,0.0,0.0,0.0,4651.0,6120.923480908702,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,127623,2,2,2,0,2,,260.0,,41,0.0,0.0,4.0,2.0,1.5,3,2,747.187802843227,0.0,16910.235385624655,5,5,0,1,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.27504052391569916,11273.490257083104,2,1,2_0,2_1_0,2_0_0,2_0_1 -26183,2,84.0,0.0,1,400,470.0,0.0,0.0,0,78,3472.5848390668516,0.0,649.6218869606873,2795.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132951,1,2,3,0,2,,284.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,763.257269722415,470.0,17141.02355313793,0,5,0,1,64.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1630591073710025,17141.02355313793,4,2,4_0,4_1_0,4_0_0,4_1_0 -26184,2,62.0,0.0,1,400,2088.0,0.0,0.0,0,77,0.0,0.0,2885.979787178543,2088.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,126883,2,1,1,0,1,,1328.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,852.081426168232,2088.0,23177.64911608536,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09008678962832868,23177.64911608536,6,3,6,6_1,6_0,6_1_0 -26185,2,73.0,0.0,2,400,400.0,0.0,0.0,0,78,746.7924385090004,51.75862524097289,552.8696910303722,1160.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109732,2,1,1,0,2,,80.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,721.087648526675,400.0,12603.4807991482,0,5,0,1,73.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09203806618869909,12603.4807991482,2,1,2_0,2_1_0,2_0_0,2_0_1 -26186,2,70.0,0.0,1,400,0.0,0.0,0.0,71,71,0.0,0.0,0.0,2175.0,89.45700421788997,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133155,2,1,2,0,1,,94.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,743.138418884636,0.0,32343.696370903228,5,5,0,1,220.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06724648831284033,21562.464247268817,6,3,6,6_1,6_0,6_1_0 -26187,1,73.0,188.0,1,400,450.0,0.0,0.0,77,78,0.0,0.0,621.9784024091688,903.0,165.1513924022584,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,100543,2,2,1,0,2,,200.0,270.0,41,0.0,2.0,3.0,2.0,1.5,3,2,889.718999161728,450.0,10407.993872572373,5,5,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08676023555121677,6938.662581714915,1,1,1_1,1_1_1,1_0_1,1_1_0 -26188,2,63.0,0.0,1,400,1000.0,0.0,0.0,75,78,0.0,414.0690019277831,1382.1742275759307,1450.0,86.01635020950958,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,109065,2,1,1,0,2,,200.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,624.859435796339,1000.0,17059.574374898526,5,5,0,1,74.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08499625888284361,11373.049583265683,2,1,2_0,2_1_0,2_0_0,2_1_0 -26189,2,36.0,0.0,1,300,1020.0,0.0,0.0,47,52,0.0,414.0690019277831,1409.817712127449,1516.0,165.1513924022584,0.0,20,2,2,2,2,1,1,1,2,2,25.0,1,,1,102715,1,3,3,0,2,,160.0,,43,2.0,0.0,3.0,4.0,2.1,3,3,652.857571883216,1020.0,37746.39784209059,1,1,1,2,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04016277278542127,17974.475162900282,4,2,4_0,4_1_0,4_0_0,4_1_0 -26190,2,64.0,0.0,1,300,1717.0,0.0,0.0,52,77,0.0,155.27587572291867,2373.193148747873,1867.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104155,2,1,1,0,1,,204.0,,42,1.0,0.0,3.0,2.0,1.5,3,3,731.907267792722,1717.0,44851.41705023147,1,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04162633251718777,29900.944700154312,8,4,8,8_1,8_0,8_1_0 -26191,2,65.0,0.0,1,300,4200.0,0.0,0.0,56,56,0.0,0.0,5805.1317558189085,4250.0,86.01635020950958,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,122570,2,2,3,0,1,,430.0,,41,1.0,3.0,13.0,4.0,2.5,2,2,752.599121103489,4200.0,74762.35100424704,5,5,0,1,245.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05684679444816508,29904.94040169882,8,4,8,8_1,8_0,8_1_0 -26192,2,44.0,0.0,1,300,0.0,0.0,0.0,11,11,3285.8867294396014,0.0,0.0,4619.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,108595,2,1,1,0,1,,359.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,704.590659678397,0.0,115016.77584650728,1,1,0,1,160.0,0,0,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04015935906744742,46006.71033860291,10,5,10,10_1,10_0,10_1_0 -26193,2,59.0,0.0,1,300,380.0,0.0,0.0,0,63,0.0,362.31037668681023,525.2262064788536,820.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,108278,2,1,2,0,1,,285.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,748.07754398548,380.0,33888.18339964538,0,4,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024197225042419383,22592.12226643025,6,3,6,6_1,6_0,6_1_0 -26194,2,61.0,0.0,1,300,530.0,0.0,0.0,64,78,0.0,207.03450096389156,732.5523406152432,790.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100702,2,2,2,0,1,,75.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,708.051733997143,530.0,28366.131636403363,1,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027850114006598002,18910.754424268907,5,3,5,5_1,5_0,5_1_0 -26195,2,68.0,0.0,2,300,550.0,0.0,0.0,71,71,149.35848770180007,0.0,760.1958251667618,4301.0,123.8635443016938,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,127753,2,2,2,0,1,,200.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,739.316313714536,550.0,32437.626074654843,5,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13259293359203583,21625.084049769896,6,3,6,6_1,6_0,6_0_1 -26196,2,76.0,0.0,1,400,300.0,0.0,0.0,77,78,0.0,0.0,414.65226827277917,2360.0,3543.873628631795,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102388,1,2,2,0,2,,85.0,291.0,41,0.0,2.0,3.0,2.0,1.5,3,3,782.363651580056,300.0,19063.429436042486,5,5,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12379724266915162,12708.952957361658,2,1,2_0,2_1_0,2_0_0,2_1_0 -26197,2,77.0,0.0,8,111,661.0,1108.0,0.0,74,72,0.0,0.0,913.6171644276901,1769.0,0.0,2009.5274141389734,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,129952,2,1,0,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1383.44960167133,661.0,78130.52488605847,5,5,0,1,164.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022641598819153185,52087.01659070564,10,5,10,10_0,10_2,10_0_0 -26203,2,30.0,0.0,6,111,420.0,0.0,0.0,0,42,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,20.0,2,,4,127462,2,1,0,1,1,800.0,0.0,460.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1310.33600413759,420.0,25562.085534499452,0,1,2,3,66.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.01643058425077069,25562.085534499452,7,4,7,7_0,7_2,7_0_0 -26204,2,48.0,0.0,7,111,220.0,721.0,0.0,0,33,0.0,0.0,304.0783300667047,941.0,0.0,1307.6437415110106,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,125098,2,2,0,0,1,,0.0,615.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1582.07420117042,220.0,33806.67173969601,0,1,2,3,65.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02783474242142186,33806.67173969601,9,5,9,9_0,9_2,9_0_0 -26205,2,68.0,0.0,1,111,550.0,3389.0,0.0,74,74,0.0,0.0,760.1958251667618,3939.0,0.0,6146.469680972004,71,0,0,0,0,0,0,0,0,0,,1,,1,127787,2,1,3,0,1,,402.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1059.71232280403,550.0,60637.414163246634,5,5,0,1,250.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06495989405807305,40424.94277549776,9,5,9,9_1,9_2,9_1_0 -26206,1,41.0,473.0,7,111,440.0,0.0,0.0,0,85,0.0,0.0,608.1566601334094,440.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,130423,2,1,0,1,1,327.0,0.0,439.0,31,0.0,0.0,4.0,4.0,1.9,2,2,1032.60536435741,440.0,12798.080361122658,0,6,2,3,75.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.034380156053450725,6735.831769011926,1,1,1_1,1_0_1,1_2_1,1_0_0 -26207,2,48.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2069.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104467,2,1,0,0,1,,0.0,440.0,32,2.0,0.0,5.0,4.0,2.1,1,1,1249.2320919446,0.0,24762.38711586734,0,4,2,3,83.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08355414162288975,11791.61291231778,2,1,2_0,2_0_0,2_2_0,2_0_1 -26208,2,47.0,0.0,5,111,1300.0,0.0,0.0,31,31,3285.8867294396014,0.0,1796.8264958487098,3500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,14.0,1,,3,132171,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,989.247284642918,1300.0,161335.22985928613,1,1,1,2,180.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021693959856459378,64534.091943714455,10,5,10,10_1,10_2,10_0_0 -26209,2,47.0,0.0,5,111,232.0,531.0,0.0,43,33,0.0,0.0,320.6644207976159,763.0,0.0,963.0496903499953,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,129691,2,1,2,0,1,,257.0,489.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1105.46487083314,232.0,60239.06919170286,1,1,2,3,60.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012666198369896015,40159.37946113524,9,5,9,9_1,9_2,9_0_0 -26210,0,77.0,0.0,2,111,195.0,1300.0,0.0,78,75,0.0,207.03450096389156,269.52397437730644,1695.0,0.0,2357.7487711016834,50,2,2,2,2,1,2,2,2,0,,1,,2,105099,2,2,3,0,1,,308.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1021.95190695367,195.0,39967.844009126755,5,5,0,1,105.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.04240909265991287,26645.229339417838,7,4,7,7_1,7_2,7_0_1 -26212,1,27.0,94.0,9,111,500.0,0.0,0.0,0,55,0.0,0.0,691.0871137879653,500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2007.0,6,131850,2,1,0,0,1,,0.0,432.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1499.51536467302,500.0,11519.221336056124,0,4,2,3,45.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.043405711672103935,11519.221336056124,2,1,2_1,2_0_1,2_2_1,2_0_0 -26214,1,31.0,270.0,7,111,0.0,0.0,0.0,84,62,0.0,0.0,0.0,1130.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,127491,1,2,0,1,1,44.0,0.0,405.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1308.37224016214,0.0,21717.726541839682,3,4,2,3,65.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0520312288592008,12065.403634355378,2,1,2_1,2_0_1,2_2_1,2_0_0 -26215,1,44.0,461.0,9,111,600.0,600.0,0.0,22,21,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,50,2,2,2,2,1,2,2,2,0,,1,2005.0,6,120121,2,1,1,0,1,,490.0,511.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,4,3,964.097575322869,600.0,12695.749094588778,1,1,2,3,110.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,1,1,0.09451982636546179,4702.129294292141,1,1,1_1,1_1_1,1_2_1,1_0_0 -26216,2,47.0,0.0,2,111,2316.0,0.0,0.0,37,38,0.0,0.0,3201.115511065855,2386.0,120.42289029331342,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,118043,1,1,2,0,1,,381.0,910.0,43,2.0,0.0,7.0,4.0,2.5,1,1,1122.35242941747,2316.0,87994.56049920611,1,1,2,3,160.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027115312429130508,35197.82419968244,9,5,9,9_1,9_2,9_0_1 -26217,0,21.0,0.0,1,111,552.0,0.0,0.0,56,63,0.0,0.0,762.9601736219137,552.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,7.0,1,,1,117561,2,2,3,0,1,,230.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,1263.74637922654,552.0,9468.255511239853,4,1,5,0,30.0,8,6,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05830007432147514,6312.1703408265685,1,1,1_0,1_1_0,1_2_0,1_1_0 -26218,1,45.0,109.0,5,111,786.0,0.0,0.0,0,56,0.0,0.0,1086.3889428746813,786.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,124637,2,1,0,0,1,,0.0,300.0,12,1.0,3.0,1.0,1.0,1.0,3,3,2028.21333361409,786.0,11350.10157353002,0,4,2,3,25.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06925048158450484,11350.10157353002,2,1,2_1,2_0_1,2_2_1,2_0_0 -26219,2,91.0,0.0,2,111,235.0,0.0,0.0,0,86,0.0,0.0,324.81094348034367,235.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,103159,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1409.74164664873,235.0,20949.870682115456,0,5,0,1,70.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011217253011524098,20949.870682115456,5,3,5,5_0,5_2,5_0_1 -26220,2,88.0,0.0,2,111,215.0,0.0,0.0,0,75,0.0,0.0,297.16745892882506,215.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124928,1,1,0,1,2,855.0,0.0,504.0,11,0.0,5.0,3.0,1.0,1.0,3,3,1642.40095853865,215.0,29214.818792039343,0,5,2,3,50.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0073592789169921085,29214.818792039343,8,4,8,8_0,8_2,8_0_1 -26221,2,83.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,644.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131625,1,3,0,4,2,1240.0,0.0,308.0,11,0.0,4.0,3.0,1.0,1.0,3,3,1250.36843478775,0.0,18562.152764906463,0,5,2,3,68.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03469425169356132,18562.152764906463,4,2,4_0,4_0_0,4_2_0,4_0_1 -26222,1,85.0,115.0,2,111,150.0,35.0,0.0,0,77,0.0,0.0,207.32613413638958,185.0,0.0,63.47785152966071,60,2,2,2,2,1,2,2,1,0,,2,,2,115535,2,2,0,1,2,855.0,0.0,303.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1309.82939486963,150.0,18333.945509748053,0,5,2,3,50.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.010090572152166405,18333.945509748053,4,2,4_1,4_0_1,4_2_1,4_0_1 -26223,2,67.0,0.0,2,111,50.0,0.0,0.0,0,77,0.0,0.0,69.10871137879653,50.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,129473,2,1,2,0,1,,94.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1095.54707003114,50.0,23458.062527122096,0,5,0,1,85.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.002131463327041193,23458.062527122096,6,3,6,6_1,6_2,6_0_1 -26224,1,34.0,321.0,2,111,0.0,0.0,0.0,81,47,0.0,0.0,0.0,1055.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128030,1,1,0,1,2,44.0,0.0,292.0,43,2.0,0.0,3.0,3.0,1.8,3,3,1289.69505520038,0.0,17883.64652653703,4,4,2,3,62.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05899244309232548,9935.359181409462,2,1,2_1,2_0_1,2_2_1,2_0_1 -26225,1,27.0,300.0,2,111,300.0,200.0,0.0,0,56,0.0,0.0,414.65226827277917,500.0,0.0,362.73058016948977,71,2,2,2,1,2,2,2,2,0,,2,,2,104964,2,1,0,1,1,,0.0,410.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1328.0475984943,300.0,8151.84824114036,0,4,2,3,60.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.06133578364187692,5094.905150712725,1,1,1_1,1_0_1,1_2_1,1_0_1 -26226,1,31.0,257.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,381.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,101489,2,3,0,0,1,,0.0,240.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1813.15816129666,0.0,8219.864650121066,0,1,2,3,20.0,8,6,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.046351128177565364,8219.864650121066,1,1,1_1,1_0_1,1_2_1,1_1_0 -26227,2,64.0,0.0,1,111,435.0,1323.0,0.0,0,77,0.0,0.0,601.2457889955298,1758.0,0.0,2399.462787821175,71,0,0,0,0,0,0,0,0,0,,1,,1,106770,2,2,1,0,1,,185.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1155.23596215077,435.0,30057.99005171689,0,5,0,1,110.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058486944635194736,30057.99005171689,8,4,8,8_1,8_2,8_1_0 -26228,0,75.0,0.0,1,111,684.0,1830.0,0.0,0,78,0.0,0.0,945.4071716619364,2556.0,72.25373417598806,3318.9848085508315,50,0,0,0,0,0,0,0,0,0,,1,,1,127628,2,1,4,0,1,,140.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,996.906875058736,684.0,20454.117686402256,0,5,0,1,72.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12496261335678192,20454.117686402256,5,3,5,5_1,5_2,5_1_0 -26229,2,77.0,0.0,2,111,200.0,922.0,0.0,0,74,0.0,0.0,276.4348455151861,1122.0,0.0,1672.1879745813478,50,0,0,0,0,0,0,0,0,0,,1,,2,123663,2,1,1,0,1,,108.0,,11,0.0,1.0,4.0,1.0,1.0,4,3,1012.34082930863,200.0,31954.64345374224,0,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.035112267850029834,31954.64345374224,8,4,8,8_1,8_2,8_0_1 -26230,1,57.0,282.0,2,111,180.0,180.0,0.0,0,56,0.0,0.0,248.7913609636675,360.0,0.0,326.4575221525408,42,0,0,0,0,0,0,0,0,0,,2,,2,126205,2,2,0,1,1,1080.0,0.0,258.0,32,1.0,4.0,4.0,2.0,1.5,1,1,377.382295695749,180.0,8997.499233852792,0,4,2,3,79.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.040011117605379946,5998.332822568528,1,1,1_1,1_0_1,1_2_1,1_0_1 -26231,2,54.0,0.0,7,111,396.0,1059.0,0.0,47,77,0.0,0.0,547.3409941200684,1455.0,0.0,1920.6584219974484,42,2,2,1,2,1,2,2,2,0,,1,,5,123775,2,3,1,0,1,,253.0,685.0,42,1.0,1.0,4.0,3.0,2.0,1,1,1789.25215307411,396.0,44299.971481495144,1,5,2,3,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.032844264936102235,22149.985740747572,6,3,6,6_1,6_2,6_0_0 -26232,2,66.0,0.0,6,111,1700.0,0.0,0.0,52,75,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,122298,2,1,2,0,1,,318.0,,42,1.0,2.0,5.0,2.0,1.5,3,2,1429.05610002759,1700.0,31651.71070371946,1,5,0,1,100.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05370957721410709,21101.140469146307,5,3,5,5_1,5_2,5_0_0 -26233,2,33.0,0.0,2,111,702.0,1730.0,0.0,31,47,0.0,0.0,970.2863077583032,2522.0,154.82943037711726,3137.6195184660864,71,2,2,2,1,1,2,2,1,0,,1,,2,120449,2,2,1,0,1,,246.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1883.18770095561,702.0,48838.09217567625,1,1,1,2,130.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.051640018838739137,27132.273430931247,7,4,7,7_1,7_2,7_0_1 -26234,2,66.0,0.0,2,111,241.0,571.0,0.0,75,77,0.0,0.0,333.1039888457993,812.0,0.0,1035.5958063838934,60,0,0,0,0,0,0,0,0,0,,1,,2,116212,2,1,1,0,1,,225.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1558.30080958344,241.0,47963.914642838026,5,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.016929393817133896,31975.94309522535,8,4,8,8_1,8_2,8_0_1 -26235,2,78.0,0.0,5,111,333.0,0.0,0.0,77,78,1045.5094139126004,0.0,460.2640177827849,1098.0,111.82125527236246,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,131946,2,1,3,0,1,,160.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1435.11524589844,333.0,30760.024518885562,5,5,0,1,75.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035695680259483116,20506.683012590376,5,3,5,5_1,5_2,5_0_0 -26236,2,82.0,0.0,2,111,301.0,1662.0,0.0,0,74,0.0,0.0,416.0344425003551,1963.0,0.0,3014.29112120846,71,0,0,0,0,0,0,0,0,0,,1,,2,124390,2,1,1,0,2,,282.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1641.90666530925,301.0,68666.43011085183,0,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02858747712428076,68666.43011085183,10,5,10,10_1,10_2,10_0_1 -26237,2,75.0,0.0,2,111,970.0,1350.0,0.0,72,75,0.0,0.0,1340.7090007486527,2320.0,0.0,2448.431416144056,50,0,0,0,0,0,0,0,0,0,,1,,2,109491,2,1,2,0,1,,350.0,,41,0.0,2.0,6.0,2.0,1.5,4,3,1526.57271019365,970.0,78770.89996770723,5,5,0,1,200.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029452500872163487,52513.933311804816,10,5,10,10_1,10_2,10_0_1 -26238,2,27.0,0.0,2,111,0.0,0.0,1070.0,23,46,0.0,0.0,546.6772682761518,1070.0,0.0,1223.2729788783156,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,129732,1,3,0,0,2,,0.0,508.0,43,2.0,0.0,4.0,4.0,2.1,2,2,2011.99049985373,0.0,25518.314573452826,1,1,2,3,87.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.041930668928783436,12151.57836831087,2,1,2_0,2_0_0,2_2_0,2_0_1 -26239,2,31.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,616.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,118388,2,1,0,0,1,,119.0,380.0,12,1.0,0.0,2.0,1.0,1.0,3,3,2384.60446675031,0.0,15084.0,0,1,2,3,53.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04083797401219835,15084.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -26240,1,35.0,350.0,5,111,0.0,0.0,1400.0,85,37,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,112472,2,1,0,0,1,,0.0,560.0,42,1.0,0.0,4.0,4.0,2.1,3,2,2121.86291259242,0.0,25753.176322711184,6,1,2,3,75.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0543622263311019,12263.417296529135,2,1,2_1,2_0_1,2_2_1,2_0_0 -26241,0,35.0,0.0,2,111,660.0,1190.0,0.0,0,67,0.0,0.0,912.2349902001142,1850.0,0.0,2158.246952008464,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,123349,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2351.9302775756,660.0,13468.07644924026,0,1,5,0,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.13736185764704056,13468.07644924026,3,2,3_0,3_0_0,3_2_0,3_0_1 -26242,2,79.0,0.0,5,111,423.0,0.0,0.0,75,75,5227.547069563002,0.0,584.6596982646187,3983.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,132226,2,2,1,0,2,,300.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,1601.20201222214,423.0,54195.71796783226,5,5,0,1,129.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07349289112405707,36130.478645221505,9,5,9,9_1,9_2,9_0_0 -26243,0,26.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,2632.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103023,1,1,1,0,2,,251.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1727.59253738743,0.0,11686.391210166179,0,4,5,0,60.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.22521922744725342,11686.391210166179,2,1,2_0,2_1_0,2_2_0,2_0_1 -26244,2,46.0,0.0,6,111,774.0,0.0,0.0,54,63,799.0679092046304,165.62760077111324,1069.8028521437702,1529.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,104993,2,1,2,0,1,,533.0,,43,2.0,3.0,5.0,3.0,2.0,2,2,1553.86717082291,774.0,52456.117837760794,1,1,1,2,110.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029148173044924452,26228.058918880397,7,4,7,7_1,7_2,7_0_0 -26245,2,54.0,0.0,7,111,620.0,693.0,0.0,75,21,0.0,0.0,856.9480210970769,1313.0,0.0,1256.8614602872822,60,0,0,0,0,0,0,0,0,3,90.0,1,,5,101822,2,1,2,0,1,,140.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1459.1487413761,620.0,43825.993948963565,5,1,0,1,148.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02995938897652887,29217.329299309044,8,4,8,8_1,8_2,8_0_0 -26246,2,65.0,0.0,6,111,648.0,0.0,0.0,0,75,0.0,621.1035028916747,895.648899469203,1248.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,116536,2,1,2,0,1,,117.0,,11,0.0,1.0,4.0,1.0,1.0,3,3,1607.74601062434,648.0,22302.22688515101,0,5,0,1,90.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05595853752303667,22302.22688515101,6,3,6,6_1,6_2,6_0_0 -26247,2,38.0,0.0,5,111,300.0,750.0,0.0,63,52,0.0,0.0,414.65226827277917,1050.0,0.0,1360.2396756355868,20,0,0,0,0,0,0,0,0,1,2.0,1,,3,112678,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1568.68449373609,300.0,25294.448130852346,1,1,0,1,85.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04151108553814565,14052.471183806858,3,2,3_0,3_1_0,3_2_0,3_0_0 -26248,2,40.0,0.0,9,111,750.0,800.0,0.0,65,45,0.0,0.0,1036.630670681948,1550.0,0.0,1450.922320677959,42,0,0,0,0,0,0,0,0,2,2.0,1,2006.0,6,114870,2,1,1,0,1,,400.0,440.0,43,2.0,0.0,4.0,4.0,2.3,2,2,1484.60874192402,750.0,39809.01088551982,1,1,2,3,74.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03893590836651003,17308.265602399922,4,2,4_0,4_1_0,4_2_0,4_0_0 -26249,1,26.0,377.0,2,111,650.0,120.0,0.0,84,56,0.0,0.0,898.4132479243549,770.0,0.0,217.63834810169388,50,2,2,2,2,1,2,2,2,2,30.0,2,,2,121428,2,2,0,1,1,840.0,0.0,403.0,42,1.0,0.0,4.0,3.0,1.8,2,2,1901.63738765205,650.0,17312.95927562492,3,1,2,3,72.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.044475354429100424,9618.31070868051,1,1,1_1,1_0_1,1_2_1,1_0_1 -26250,2,64.0,0.0,2,111,168.0,270.0,0.0,0,52,0.0,0.0,232.20527023275633,438.0,0.0,489.6862832288112,43,0,0,0,0,0,0,0,0,3,50.0,2,,2,117692,2,2,0,1,2,468.0,0.0,284.0,12,1.0,5.0,3.0,1.0,1.0,2,2,2451.33117300164,168.0,16388.431133398193,0,1,2,3,35.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026726170213291142,16388.431133398193,4,2,4_0,4_0_0,4_2_0,4_0_1 -26252,2,76.0,0.0,1,111,660.0,0.0,0.0,0,78,0.0,62.110350289167464,912.2349902001142,780.0,103.2196202514115,0.0,10,2,2,2,2,1,2,2,2,0,,1,,1,117041,2,2,1,0,1,,146.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1713.08523085151,660.0,15277.073657432513,0,5,0,1,80.0,8,6,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.05105689855861361,15277.073657432513,3,2,3_0,3_1_0,3_2_0,3_1_0 -26253,2,70.0,0.0,5,111,3255.0,0.0,0.0,0,74,0.0,0.0,4498.977110759654,3255.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,123706,2,1,2,0,1,,360.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1661.64307813965,3255.0,64257.026740528025,0,5,0,1,190.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05065593858153127,64257.026740528025,10,5,10,10_1,10_2,10_0_0 -26254,2,69.0,0.0,2,111,600.0,0.0,0.0,72,74,2987.1697540360015,0.0,829.3045365455583,2600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,103902,2,1,2,0,1,,121.0,,41,0.0,2.0,6.0,2.0,1.5,5,5,1506.37111196017,600.0,60424.76848419171,5,5,0,1,120.0,8,6,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04302871264918806,40283.178989461136,9,5,9,9_1,9_2,9_0_1 -26255,2,61.0,0.0,8,111,0.0,0.0,3000.0,33,43,0.0,144.92415067472407,1532.740004512575,3140.0,0.0,3429.737323957894,71,2,2,2,2,1,2,2,2,2,30.0,1,1999.0,6,105870,1,3,3,0,1,,500.0,,43,3.0,1.0,6.0,4.0,2.5,1,1,1526.36525061586,0.0,96254.53378095939,1,1,0,1,220.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.03262183999712167,38501.81351238376,9,5,9,9_1,9_2,9_0_0 -26256,2,87.0,0.0,2,111,504.0,2074.0,0.0,72,72,0.0,0.0,696.615810698269,2578.0,0.0,3761.516116357609,60,0,0,0,0,0,0,0,0,0,,1,,2,102193,2,1,3,0,1,,298.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1637.51234847853,504.0,34677.543142533286,5,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07434206020316324,23118.362095022192,6,3,6,6_1,6_2,6_0_1 -26257,2,79.0,0.0,5,111,5821.0,0.0,0.0,72,74,0.0,0.0,8045.636178719492,5821.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,110305,2,1,2,0,1,,815.0,,41,0.0,0.0,8.0,2.0,1.5,1,1,1601.20201222214,5821.0,90103.97123867058,5,5,0,1,250.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06460314589887642,60069.31415911372,10,5,10,10_1,10_2,10_0_0 -26258,2,62.0,0.0,6,111,1300.0,0.0,0.0,75,75,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,115542,2,1,1,0,1,,150.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1459.1487413761,1300.0,55650.42296171769,5,5,0,1,100.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02336010996527877,37100.28197447846,9,5,9,9_1,9_2,9_0_0 -26259,1,41.0,200.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,60.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,118839,2,2,0,1,1,,0.0,310.0,12,1.0,0.0,1.0,1.0,1.0,2,1,3133.72237421136,0.0,11407.544430530894,0,1,3,4,26.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.005259677081722983,11407.544430530894,2,1,2_1,2_0_1,2_2_1,2_0_1 -26260,2,21.0,0.0,7,111,720.0,0.0,0.0,0,47,0.0,0.0,995.16544385467,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,2,,5,104954,2,1,0,0,1,,0.0,345.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2465.66278837903,720.0,20200.019364111293,0,1,2,3,35.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03564353018785716,20200.019364111293,5,3,5,5_0,5_2,5_0_0 -26261,2,41.0,0.0,7,111,953.0,0.0,0.0,47,54,0.0,0.0,1317.212038879862,953.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,5,103769,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1856.41347106613,953.0,24656.960281647538,1,1,1,2,51.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0386503441265357,16437.97352109836,4,2,4_0,4_0_0,4_2_0,4_0_0 -26262,2,56.0,0.0,9,111,1200.0,0.0,0.0,54,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,126673,2,1,1,0,1,,120.0,,43,2.0,4.0,4.0,2.0,1.5,4,4,1530.13266583198,1200.0,107721.45750913996,1,1,1,2,90.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011139841845327634,71814.3050060933,10,5,10,10_1,10_2,10_0_0 -26263,2,54.0,0.0,7,111,1777.0,0.0,0.0,75,37,4976.624810223978,0.0,2456.123602402429,5169.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,111834,1,2,1,0,1,,366.0,,42,1.0,1.0,8.0,2.0,1.5,2,2,1513.38005290073,1777.0,81731.04821624808,7,1,0,1,270.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06324401941259339,54487.365477498715,10,5,10,10_1,10_2,10_0_0 -26264,2,61.0,0.0,6,111,3000.0,0.0,0.0,72,37,0.0,0.0,4146.522682727792,3100.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,110832,2,1,1,0,1,,600.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,1560.54243352154,3000.0,134583.20236797608,5,4,0,1,250.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023034078142411936,89722.13491198405,10,5,10,10_1,10_2,10_0_0 -26265,2,49.0,0.0,2,111,511.0,0.0,0.0,55,63,2285.184861837541,0.0,706.2910302913006,4311.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,129624,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,3.0,1.8,4,4,1539.6757225218,511.0,25260.177029259325,4,1,1,2,95.0,8,6,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1706638870743657,14033.431682921846,3,2,3_0,3_1_0,3_2_0,3_0_1 -26266,2,60.0,0.0,6,111,840.0,0.0,0.0,0,46,2114.916185857489,207.03450096389156,1161.0263511637818,2552.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,127415,2,1,2,0,1,,420.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1661.71257551834,840.0,46206.31631593835,0,1,1,2,97.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05523054429508194,46206.31631593835,10,5,10,10_1,10_2,10_0_0 -26267,2,67.0,0.0,2,111,312.0,0.0,0.0,0,75,0.0,0.0,431.23835900369033,1812.0,2580.4905062852877,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106840,2,1,2,0,1,,95.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1526.37119088406,312.0,19667.854504698742,0,5,0,1,42.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09213002870074642,19667.854504698742,5,3,5,5_1,5_2,5_0_1 -26268,2,47.0,0.0,5,111,2400.0,0.0,0.0,48,43,0.0,465.827627168756,3317.2181461822333,2950.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,2,7.0,1,,3,121713,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.8,3,3,1405.46368365908,2400.0,62394.04974672907,1,1,0,1,175.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04728014950102914,22283.589195260385,6,3,6,6_1,6_2,6_0_0 -26269,2,63.0,0.0,6,111,1800.0,0.0,0.0,77,74,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,128559,2,1,3,0,1,,300.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1566.34721546758,1800.0,71939.40818468996,5,5,0,1,155.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025021056544958807,47959.605456459976,10,5,10,10_1,10_2,10_0_0 -26270,2,47.0,0.0,7,111,550.0,550.0,0.0,52,62,0.0,0.0,760.1958251667618,1100.0,0.0,997.5090954660969,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,127194,2,1,2,0,1,,350.0,,43,2.0,1.0,4.0,3.0,2.0,4,4,1515.5618554933,550.0,45044.087883613676,1,1,1,2,89.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024420518911210155,22522.043941806838,6,3,6,6_1,6_2,6_0_0 -26271,2,38.0,0.0,9,111,665.0,876.0,0.0,90,47,0.0,0.0,919.1458613379938,1541.0,0.0,1588.7599411423653,71,1,2,2,1,2,2,2,2,0,,1,2007.0,6,117667,2,1,1,0,1,,291.0,730.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1887.85691220068,665.0,49518.22453394311,1,1,2,3,108.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03111985565927743,27510.124741079504,7,4,7,7_1,7_2,7_0_0 -26272,1,44.0,377.0,8,111,220.0,0.0,0.0,0,43,0.0,0.0,304.0783300667047,220.0,0.0,0.0,33,2,1,2,1,2,1,2,2,0,,2,1999.0,6,117983,2,1,0,1,1,856.0,0.0,402.0,32,1.0,0.0,3.0,2.0,1.5,1,1,1730.6554705998,220.0,14122.281077770998,0,4,2,3,63.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.015578219891564705,9414.854051847333,1,1,1_1,1_0_1,1_2_1,1_0_0 -26273,2,35.0,0.0,8,111,250.0,0.0,0.0,0,47,0.0,0.0,345.54355689398267,300.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,110190,2,1,0,1,1,343.0,0.0,325.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1829.88571781582,250.0,27950.0,0,1,2,3,48.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01073345259391771,27950.0,7,4,7,7_0,7_2,7_0_0 -26274,2,46.0,0.0,9,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,1979.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,127255,2,1,1,0,1,,197.0,717.0,42,1.0,1.0,4.0,2.0,1.5,2,2,1588.67695290876,0.0,51350.22516952728,7,1,2,3,94.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038539266253780645,34233.48344635152,9,5,9,9_1,9_2,9_0_0 -26275,2,58.0,0.0,9,111,309.0,714.0,0.0,77,45,0.0,0.0,427.09183632096256,1023.0,0.0,1294.9481712050786,10,0,0,0,0,0,0,0,0,3,20.0,1,2006.0,6,104111,2,1,1,0,1,,160.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1573.95118760944,309.0,49202.67612190571,5,1,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020791552017727474,32801.784081270474,8,4,8,8_1,8_2,8_0_0 -26278,2,53.0,0.0,7,111,319.0,118.0,0.0,0,52,0.0,0.0,440.91357859672183,437.0,0.0,214.01104229999896,70,0,0,0,0,0,0,0,0,2,6.0,2,,5,130107,2,1,0,1,1,583.0,0.0,407.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1937.51863994818,319.0,23029.808754611888,0,1,2,3,64.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0189754072496363,23029.808754611888,6,3,6,6_0,6_2,6_0_0 -26280,1,44.0,140.0,1,112,900.0,0.0,0.0,0,69,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,101748,2,1,2,0,1,,200.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2034.08551914474,900.0,9566.37417040441,0,1,2,3,39.0,6,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.10035150025492019,9566.37417040441,1,1,1_1,1_1_1,1_1_1,1_1_0 -26281,1,33.0,195.0,2,211,0.0,0.0,750.0,0,43,0.0,0.0,383.18500112814377,750.0,0.0,857.4343309894736,41,0,0,0,0,0,0,0,0,2,35.0,2,,2,127834,2,1,0,1,1,1084.0,212.0,353.0,32,1.0,0.0,5.0,3.0,1.6,1,1,325.968250355157,0.0,25660.070962188427,0,1,2,3,70.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.029228290175236368,16037.544351367766,4,2,4_1,4_0_1,4_1_1,4_0_1 -26282,2,67.0,0.0,7,112,439.0,470.0,0.0,77,77,0.0,155.27587572291867,606.7744859058336,1059.0,0.0,852.416863398301,50,0,0,0,0,0,0,0,0,0,,1,,5,118970,2,1,2,0,1,,477.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1741.95934920744,439.0,30014.944982326142,5,5,0,1,84.0,6,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035282423493482214,20009.96332155076,5,3,5,5_1,5_1,5_0_0 -26283,2,44.0,0.0,1,112,560.0,850.0,0.0,37,46,0.0,103.51725048194578,774.0175674425211,1510.0,0.0,1541.6049657203316,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,122966,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,1785.77500862328,560.0,73644.72148222271,1,1,0,1,140.0,6,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020503845620008256,49096.480988148476,10,5,10,10_1,10_1,10_1_0 -26284,2,32.0,0.0,9,112,2000.0,0.0,0.0,63,67,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,131707,2,1,1,0,1,,900.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,5414.69421181159,2000.0,41993.0,1,1,1,2,100.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047626985449955944,17497.083333333336,4,2,4_0,4_1_0,4_0_0,4_0_0 -26285,2,68.0,0.0,1,112,370.0,1173.0,0.0,77,75,0.0,0.0,511.40446420309434,1543.0,0.0,2127.4148526940576,20,0,0,0,0,0,0,0,0,0,,1,,1,102169,2,1,2,0,1,,544.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1780.31130289561,370.0,32122.273774118854,5,5,0,1,150.0,6,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04803520481925554,21414.849182745904,6,3,6,6_1,6_1,6_1_0 -26286,1,49.0,280.0,2,211,380.0,0.0,0.0,0,85,0.0,0.0,525.2262064788536,878.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,108181,2,1,0,1,1,,100.0,370.0,11,0.0,0.0,3.0,1.0,1.0,1,1,379.172066097522,380.0,9902.114902985624,0,7,2,3,49.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08866792686229796,9902.114902985624,2,1,2_1,2_0_1,2_1_1,2_0_1 -26287,2,48.0,0.0,9,112,1200.0,0.0,0.0,63,54,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,129082,2,1,1,0,1,,130.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,5570.72828159925,1200.0,38715.60048289192,1,1,1,2,104.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03254502020591887,25810.400321927944,7,4,7,7_1,7_0,7_0_0 -26288,2,58.0,0.0,7,112,800.0,0.0,0.0,56,22,0.0,0.0,1105.7393820607444,812.0,20.6439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,133323,2,1,1,0,1,,120.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1751.93710284168,800.0,58015.338459616214,1,1,0,1,110.0,6,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013996298592056367,38676.89230641081,9,5,9,9_1,9_1,9_0_0 -26289,2,76.0,0.0,2,211,550.0,460.0,0.0,77,75,0.0,0.0,760.1958251667618,1010.0,0.0,834.2803343898265,71,0,0,0,0,0,0,0,0,0,,1,,2,110757,2,1,2,0,1,,320.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,255.150863990734,550.0,49590.18793129105,5,5,0,1,110.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02036693229312602,33060.12528752737,8,4,8,8_1,8_1,8_0_1 -26290,2,33.0,0.0,9,120,1300.0,0.0,0.0,55,48,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,114899,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,4,4,4523.36382939316,1300.0,33968.63202428004,1,1,1,2,100.0,0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03827060209757014,16175.539059180972,4,2,4_0,4_1_0,4_1_0,4_0_0 -26291,2,60.0,0.0,2,112,1510.0,0.0,0.0,77,74,0.0,0.0,2087.0830836396553,1510.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,112831,2,2,1,0,1,,410.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1726.66173814136,1510.0,68390.79876538033,5,5,0,1,110.0,6,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022078993479520047,45593.865843586886,10,5,10,10_1,10_1,10_0_1 -26292,1,52.0,254.0,2,211,0.0,0.0,135.0,0,85,0.0,0.0,68.97330020306589,135.0,0.0,154.33817957810524,71,0,0,0,0,0,0,0,0,0,,2,,2,106465,1,2,0,1,2,204.0,0.0,240.0,11,0.0,0.0,2.0,1.0,1.0,4,4,357.319351193162,0.0,11126.246102377707,0,7,2,3,48.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.012133472400107181,11126.246102377707,2,1,2_1,2_0_1,2_1_1,2_0_1 -26293,2,55.0,0.0,6,112,1600.0,850.0,0.0,64,21,0.0,258.79312620486445,2211.478764121489,2700.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,0,,1,,4,101795,2,1,3,0,1,,450.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1726.66173814136,1600.0,44918.04052366388,1,1,0,1,110.0,6,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06010947869770891,29945.360349109254,8,4,8,8_1,8_1,8_0_0 -26294,2,43.0,0.0,6,111,600.0,624.0,0.0,0,54,0.0,0.0,829.3045365455583,1224.0,0.0,1131.719410128808,31,2,2,2,2,1,2,2,2,2,5.0,1,,4,128115,2,3,3,0,1,,420.0,673.0,32,1.0,0.0,3.0,3.0,1.6,1,1,284.203571339723,600.0,28336.718038760024,0,1,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.04319483993614811,17710.448774225013,4,2,4_0,4_1_0,4_3_0,4_0_0 -26295,2,46.0,0.0,7,111,60.0,60.0,0.0,0,62,0.0,0.0,82.93045365455583,120.0,0.0,108.81917405084694,70,0,0,0,0,0,0,0,0,2,35.0,1,,5,115729,2,1,2,0,1,,434.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,287.555534539309,60.0,29755.89645720732,0,1,1,2,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.004032814140638476,29755.89645720732,8,4,8,8_1,8_3,8_0_0 -26296,0,55.0,0.0,9,111,1160.0,0.0,0.0,0,37,0.0,0.0,1603.3221039880796,1160.0,0.0,0.0,71,2,1,2,2,2,2,2,1,2,3.0,1,2012.0,6,123374,2,1,1,0,1,,160.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,4545.28337615107,1160.0,34605.0,0,1,5,0,100.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03352116746134952,34605.0,9,5,9,9_1,9_2,9_0_0 -26297,1,56.0,154.0,7,112,280.0,574.0,0.0,0,52,0.0,0.0,387.00878372126056,854.0,0.0,1041.0367650864357,70,0,0,0,0,0,0,0,0,2,25.0,1,,5,117939,2,3,3,0,1,,303.0,457.0,32,1.0,2.0,4.0,2.0,1.3,1,1,1433.0563916009,280.0,16008.117637678459,0,1,2,3,84.0,6,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.053347933800157246,12313.936644368045,2,1,2_1,2_1_1,2_1_1,2_0_0 -26298,1,48.0,134.0,2,111,450.0,451.0,0.0,0,43,0.0,0.0,621.9784024091688,901.0,0.0,817.9574582821995,60,2,2,2,2,2,2,2,1,0,,8,,2,112772,2,2,0,1,1,486.0,0.0,414.0,32,2.0,1.0,4.0,3.0,2.0,3,3,350.863074423346,450.0,24260.67624216044,0,4,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03713828876848179,12130.33812108022,2,1,2_1,2_0_1,2_3_1,2_0_1 -26299,2,85.0,0.0,2,111,320.0,150.0,0.0,0,78,0.0,0.0,442.2957528242978,470.0,0.0,272.04793512711734,50,2,2,2,2,1,2,2,2,0,,2,,2,108779,2,1,0,1,1,525.0,0.0,274.0,11,0.0,2.0,3.0,1.0,1.0,2,2,356.557580387217,320.0,28677.220071415082,0,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.016389315241489785,28677.220071415082,8,4,8,8_0,8_3,8_0_1 -26300,2,39.0,0.0,9,111,1920.0,0.0,0.0,85,33,0.0,0.0,2653.7745169457867,1920.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,1,2011.0,6,115912,2,1,1,0,1,,480.0,1300.0,42,1.0,0.0,6.0,4.0,2.1,2,2,2401.40908704538,1920.0,48839.311147808534,6,1,2,3,108.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03931259378719047,23256.814832289776,6,3,6,6_1,6_3,6_0_0 -26301,2,70.0,0.0,2,112,480.0,900.0,0.0,74,74,0.0,0.0,663.4436292364467,1380.0,0.0,1632.287610762704,33,0,0,0,0,0,0,0,0,0,,1,,2,109865,2,1,2,0,1,,372.0,,41,0.0,6.0,6.0,2.0,1.5,5,4,1694.07177676242,480.0,85126.94371147189,5,5,1,2,116.0,6,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.016211083586852987,56751.295807647926,10,5,10,10_1,10_1,10_0_1 -26302,2,71.0,0.0,5,112,1500.0,0.0,0.0,74,72,0.0,0.0,2073.261341363896,2700.0,2064.39240502823,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,120156,2,2,2,0,1,,550.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1810.80077047742,1500.0,61615.25934686649,5,5,0,1,196.0,6,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04382031380895764,41076.83956457766,9,5,9,9_1,9_1,9_0_0 -26303,2,46.0,0.0,9,112,1100.0,0.0,0.0,55,64,0.0,0.0,1520.3916503335236,1175.0,129.02452531426437,0.0,60,0,0,0,0,0,0,0,0,0,,1,2011.0,6,117809,2,1,1,0,1,,250.0,,43,2.0,1.0,6.0,4.0,2.3,1,1,5529.46548305922,1100.0,39488.19898721577,1,1,1,2,123.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02975572525808037,17168.782168354686,4,2,4_0,4_1_0,4_0_0,4_0_0 -26304,2,27.0,0.0,9,300,1070.0,0.0,0.0,0,54,0.0,0.0,1478.9264235062458,1190.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,13.0,1,2012.0,6,107124,2,1,1,0,1,,128.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,7343.56316895143,1070.0,15912.61674903163,0,1,1,2,114.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07478342618114132,15912.61674903163,3,2,3_0,3_1_0,3_0_0,3_0_0 -26305,2,29.0,0.0,9,300,1530.0,0.0,0.0,43,55,0.0,0.0,2114.7265681911736,1530.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,23.0,1,2011.0,6,126410,2,1,1,0,1,,305.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,6422.10109834568,1530.0,50556.98700981351,1,1,1,2,123.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030262879386048363,24074.75571895881,6,3,6,6_1,6_0,6_0_0 -26306,2,26.0,0.0,9,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,1039.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2013.0,6,112011,2,1,1,0,1,,133.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,3901.92013994194,0.0,16014.250070800506,0,1,1,2,82.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06487971621565064,16014.250070800506,4,2,4_0,4_1_0,4_2_0,4_0_0 -26307,2,47.0,0.0,7,112,1450.0,0.0,0.0,85,68,0.0,0.0,2004.1526299850993,1540.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,124102,2,1,2,0,1,,530.0,,42,1.0,0.0,5.0,9.0,3.599999999999999,2,2,1575.45010270719,1450.0,45503.395421537316,6,1,0,1,110.0,6,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03384362827726695,12639.832061538145,2,1,2_0,2_1_0,2_1_0,2_0_0 -26308,2,30.0,0.0,9,300,712.0,0.0,0.0,0,47,0.0,0.0,984.1080500340626,712.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2012.0,6,104766,2,1,1,0,1,,533.0,660.0,22,2.0,0.0,4.0,2.0,1.5,2,2,5580.51099538461,712.0,33202.63613693395,0,1,2,3,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02144408043576954,22135.090757955968,6,3,6,6_1,6_0,6_0_0 -26309,2,52.0,0.0,1,112,180.0,0.0,0.0,0,21,1493.5848770180007,0.0,248.7913609636675,1250.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104903,2,3,2,0,1,,144.0,,12,1.0,1.0,4.0,1.0,1.0,3,2,1950.91435373027,180.0,13273.63914329046,0,1,1,2,132.0,6,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09417161235936176,13273.63914329046,3,2,3_0,3_1_0,3_1_0,3_1_0 -26310,1,37.0,400.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,623.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,127239,1,3,0,0,2,,0.0,400.0,31,0.0,3.0,2.0,3.0,1.8,1,1,650.122575113073,0.0,8148.291549296695,0,6,2,3,50.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07645774531150314,4526.828638498164,1,1,1_1,1_0_1,1_3_1,1_1_0 -26311,2,54.0,0.0,2,112,595.0,1472.0,0.0,74,47,0.0,0.0,822.3936654076787,2067.0,0.0,2669.697070047445,42,0,0,0,0,0,0,0,0,2,30.0,1,,2,130916,2,1,1,0,1,,311.0,,42,1.0,5.0,5.0,2.0,1.5,2,2,1468.09180415883,595.0,50946.32299690232,5,1,0,1,100.0,6,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.040572113518882985,33964.21533126821,9,5,9,9_1,9_1,9_0_1 -26312,1,46.0,116.0,6,111,408.0,860.0,0.0,78,56,0.0,0.0,563.9270848509797,1268.0,0.0,1559.741494728806,31,0,0,0,0,0,0,0,0,0,,1,,4,102013,2,1,1,0,1,,430.0,515.0,42,1.0,4.0,4.0,5.0,2.4,2,2,261.237762722647,408.0,23114.427312980602,7,1,2,3,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0548575131380355,9631.011380408585,1,1,1_1,1_1_1,1_3_1,1_0_0 -26313,2,59.0,0.0,9,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,1111.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,130289,2,1,1,0,1,,390.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1977.05938636714,0.0,41416.0,5,5,0,1,140.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026825381495074366,27610.666666666668,7,4,7,7_1,7_3,7_0_0 -26314,1,21.0,263.0,2,112,0.0,0.0,0.0,55,55,0.0,0.0,0.0,2242.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,128333,2,1,1,0,1,,201.0,550.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1808.19245107626,0.0,29903.333289574606,4,1,2,3,75.0,6,1,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0749749192937512,19935.555526383072,5,3,5,5_1,5_1,5_0_1 -26315,1,26.0,30.0,9,111,1200.0,0.0,0.0,56,64,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,107231,2,1,0,0,1,,400.0,452.0,43,2.0,0.0,2.0,2.0,1.5,1,1,396.58272070555,1200.0,20765.226964951726,1,4,2,3,47.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05778891808047183,13843.48464330115,3,2,3_1,3_0_1,3_3_1,3_0_0 -26316,2,37.0,0.0,9,111,1200.0,0.0,0.0,52,62,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,129049,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.6,3,3,1878.27386428996,1200.0,41117.532957332,1,1,1,2,136.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029184630343587245,15814.435752819998,3,2,3_0,3_1_0,3_3_0,3_0_0 -26317,2,58.0,0.0,2,112,1200.0,0.0,0.0,52,47,448.0754631054002,0.0,1658.6090730911167,1620.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,105335,2,1,1,0,1,,140.0,,43,2.0,3.0,4.0,2.0,1.5,3,3,1538.55155865528,1200.0,65019.14887248993,1,1,0,1,98.0,6,1,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02491573679589389,43346.09924832662,10,5,10,10_1,10_1,10_0_1 -26318,0,57.0,0.0,8,111,1200.0,1570.0,0.0,0,34,0.0,0.0,1658.6090730911167,2770.0,0.0,2847.435054330495,31,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,132367,2,1,2,0,1,,147.0,,32,1.0,2.0,6.0,2.0,1.5,3,3,271.211136328741,1200.0,87008.61585875774,0,1,0,1,200.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03183592765682629,58005.74390583849,10,5,10,10_1,10_3,10_0_0 -26320,1,84.0,221.0,9,111,830.0,0.0,0.0,0,78,0.0,0.0,1147.2046088880224,830.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,131878,2,1,1,0,1,,70.0,313.0,11,0.0,5.0,3.0,1.0,1.0,2,2,8441.98553718179,830.0,14490.0,0,5,2,3,65.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05728088336783989,14490.0,3,2,3_1,3_1_1,3_2_1,3_0_0 -26321,0,86.0,0.0,1,112,600.0,0.0,0.0,0,77,2987.1697540360015,0.0,829.3045365455583,2780.0,309.6588607542345,0.0,43,2,2,2,2,1,2,2,2,0,,1,,1,132233,1,2,3,0,2,,320.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1972.79127291863,600.0,13575.645057163449,0,5,0,1,80.0,6,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.204778482959311,13575.645057163449,3,2,3_0,3_1_0,3_1_0,3_1_0 -26322,2,46.0,0.0,2,111,900.0,1025.0,0.0,22,37,0.0,0.0,1243.9568048183376,1925.0,0.0,1858.9942233686352,71,1,2,2,2,1,2,2,2,2,25.0,1,,2,102159,2,1,2,0,1,,900.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,252.729514395688,900.0,50515.14059894566,1,1,1,2,125.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.03810738675921211,24054.82885664079,6,3,6,6_1,6_3,6_0_1 -26323,2,54.0,0.0,1,111,500.0,1610.0,0.0,55,46,0.0,0.0,691.0871137879653,2110.0,0.0,2919.9811703643927,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,120975,2,1,1,0,1,,300.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,275.609268471586,500.0,39150.703207733,1,1,1,2,110.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05389430654168264,26100.468805155335,7,4,7,7_1,7_3,7_1_0 -26324,2,42.0,0.0,9,211,0.0,0.0,0.0,43,62,0.0,0.0,0.0,1862.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,2013.0,6,116837,2,1,1,0,1,,532.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,5243.04912292033,0.0,63286.419948648516,1,1,1,2,165.0,1,3,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02942179383050665,27515.834760281967,7,4,7,7_1,7_1,7_0_0 -26325,2,52.0,0.0,7,112,1000.0,0.0,0.0,43,68,0.0,269.144851253059,1382.1742275759307,1260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,103643,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1547.89261805214,1000.0,43807.06270219367,1,1,1,2,109.0,6,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02876248536829895,19046.549000953768,5,3,5,5_1,5_1,5_0_0 -26326,2,65.0,0.0,2,111,250.0,900.0,0.0,0,77,0.0,0.0,345.54355689398267,1150.0,0.0,1632.287610762704,42,2,2,2,1,2,2,2,2,0,,1,,2,132387,1,3,1,0,2,,280.0,255.0,21,1.0,2.0,3.0,2.0,1.5,1,1,273.336951424608,250.0,36392.960196389795,0,5,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.03159951797804238,24261.973464259863,7,4,7,7_1,7_3,7_0_1 -26327,1,24.0,146.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,351.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,20.0,2,2012.0,6,119965,2,1,0,1,1,,0.0,454.0,12,1.0,0.0,1.0,1.0,1.0,1,1,5584.15793280227,0.0,10652.0,0,1,3,4,25.0,8,6,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.032951558392790084,10652.0,2,1,2_1,2_0_1,2_2_1,2_0_0 -26328,2,80.0,0.0,1,111,200.0,1000.0,0.0,0,78,0.0,0.0,276.4348455151861,1200.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,1,133180,1,2,3,0,2,,200.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,297.214146702882,200.0,20911.492331197296,0,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.057384713677739396,20911.492331197296,5,3,5,5_1,5_3,5_1_0 -26329,2,33.0,0.0,9,111,1112.0,0.0,0.0,54,21,0.0,0.0,1536.9777410644347,1112.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,106855,2,1,1,0,1,,254.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,1308.82667097347,1112.0,47701.21718250185,1,1,1,2,140.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023311774115649043,22714.86532500088,6,3,6,6_1,6_3,6_0_0 -26330,0,71.0,0.0,2,112,540.0,70.0,0.0,77,78,0.0,0.0,746.3740828910024,610.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,0,,1,,2,117963,2,1,2,0,1,,281.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1726.66173814136,540.0,41008.97894740341,5,5,0,1,105.0,6,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014874791220292592,27339.31929826894,7,4,7,7_1,7_1,7_0_1 -26331,2,60.0,0.0,5,111,390.0,770.0,0.0,78,56,0.0,0.0,539.0479487546129,1160.0,0.0,1396.5127336525356,50,0,0,0,0,0,0,0,0,0,,1,,3,103061,1,1,2,0,2,,330.0,365.0,42,1.0,2.0,4.0,3.0,2.0,3,2,282.293086456812,390.0,53595.50297093865,5,1,2,3,85.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021643606938981288,26797.751485469325,7,4,7,7_1,7_3,7_0_0 -26332,2,38.0,0.0,9,112,975.0,0.0,0.0,63,38,0.0,0.0,1347.6198718865323,975.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,132959,2,1,1,0,1,,418.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,4483.26328481058,975.0,35458.518345141754,1,1,1,2,130.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0274969188083288,14774.382643809065,3,2,3_0,3_1_0,3_0_0,3_0_0 -26333,2,68.0,0.0,1,112,1250.0,0.0,0.0,74,74,0.0,517.5862524097289,1727.717784469913,1810.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116932,2,1,1,0,1,,265.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1662.21692129929,1250.0,77097.38840269267,5,5,1,2,70.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023476800414380637,51398.25893512845,10,5,10,10_1,10_0,10_1_0 -26334,2,40.0,0.0,9,112,1500.0,0.0,0.0,43,48,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,132408,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,5269.01625736081,1500.0,39168.720209233325,1,1,1,2,110.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03829586445477996,19584.360104616662,5,3,5,5_1,5_0,5_0_0 -26335,2,59.0,0.0,7,112,960.0,0.0,0.0,22,31,0.0,414.0690019277831,1326.8872584728933,2206.0,1456.084776346578,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,102157,2,1,3,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1452.95028953255,960.0,38898.97744169579,1,1,0,1,200.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05671100232150036,15559.590976678315,3,2,3_0,3_1_0,3_0_0,3_0_0 -26336,2,56.0,0.0,2,111,170.0,900.0,0.0,0,52,0.0,0.0,234.9696186879082,1070.0,0.0,1632.287610762704,30,0,0,0,0,0,0,0,0,2,30.0,1,,2,110102,2,2,1,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,292.203614023409,170.0,23542.113257597226,0,1,1,2,40.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04545046522765761,23542.113257597226,6,3,6,6_1,6_3,6_0_1 -26337,2,60.0,0.0,9,112,1750.0,60.0,0.0,21,43,0.0,0.0,2418.8048982578784,1810.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,101211,2,1,1,0,1,,290.0,,43,2.0,0.0,9.0,2.0,1.5,1,1,1511.03405133041,1750.0,83915.22787755019,1,1,1,2,143.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021569386698695108,55943.48525170013,10,5,10,10_1,10_0,10_0_0 -26338,2,53.0,0.0,7,111,1300.0,0.0,0.0,52,64,0.0,0.0,1796.8264958487098,1360.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,119073,2,1,2,0,1,,426.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,271.927709033112,1300.0,47141.84432714081,1,1,1,2,101.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02884910464177601,31427.896218093872,8,4,8,8_1,8_3,8_0_0 -26339,0,85.0,0.0,1,400,228.0,0.0,0.0,0,77,2091.018827825201,0.0,315.13572388731217,1878.0,430.0817510475479,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,118321,2,2,2,0,1,,109.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,909.254119046101,228.0,17934.245633856866,0,5,0,1,83.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10471586250913442,17934.245633856866,4,2,4_0,4_1_0,4_0_0,4_1_0 -26340,1,52.0,126.0,2,111,130.0,0.0,0.0,0,68,0.0,0.0,179.68264958487097,180.0,86.01635020950958,0.0,42,0,0,0,0,0,0,0,0,3,90.0,2,,2,122007,2,1,0,1,1,370.0,0.0,207.0,12,1.0,0.0,1.0,1.0,1.0,1,1,350.995994086302,130.0,11450.0,0,1,2,3,30.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.01572052401746725,11450.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -26341,1,43.0,341.0,1,400,726.0,0.0,0.0,0,56,0.0,248.44140115666985,1003.4584892201256,1466.0,860.1635020950959,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103795,1,2,5,0,2,,225.0,394.0,32,1.0,2.0,6.0,2.0,1.3,1,1,824.076893816304,726.0,10256.0,0,4,2,3,84.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.14294071762870514,7889.230769230769,1,1,1_1,1_1_1,1_0_1,1_1_0 -26342,1,65.0,40.0,2,111,250.0,300.0,0.0,0,78,0.0,0.0,345.54355689398267,550.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,111058,2,2,0,0,1,,200.0,380.0,11,0.0,0.0,3.0,1.0,1.0,2,2,372.55032035687,250.0,13955.797383048424,0,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03941014511059497,13955.797383048424,3,2,3_1,3_0_1,3_3_1,3_0_1 -26343,2,46.0,0.0,1,400,252.0,0.0,0.0,22,62,0.0,0.0,348.3079053491345,1036.0,1348.7363712851102,0.0,60,2,2,2,2,1,2,2,2,2,20.0,8,,1,101396,1,3,0,0,1,,345.0,428.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,1183.24320290456,252.0,43829.218599245716,1,1,2,3,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.023637199865977742,16857.391768940663,4,2,4_0,4_0_0,4_0_0,4_1_0 -26344,2,34.0,0.0,1,400,540.0,0.0,0.0,0,13,0.0,0.0,746.3740828910024,575.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,121470,2,1,1,0,1,,170.0,340.0,12,1.0,0.0,5.0,1.0,1.0,2,2,935.424423688069,540.0,26796.84467798548,0,1,3,4,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021457750228047637,26796.84467798548,7,4,7,7_1,7_0,7_1_0 -26345,2,38.0,0.0,9,400,1133.0,0.0,0.0,43,63,0.0,0.0,1566.0033998435292,1203.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,117383,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,745.194462319248,1133.0,35761.05986689648,1,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033639942565393606,17029.07612709356,4,2,4_0,4_1_0,4_0_0,4_0_0 -26346,2,25.0,0.0,2,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,405.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,5.0,2,,2,127904,2,2,0,0,1,,0.0,337.0,43,2.0,0.0,3.0,2.0,1.5,1,1,414.624567980203,0.0,31604.26080222523,4,1,2,3,70.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01281472781579768,21069.507201483488,5,3,5,5_0,5_3,5_0_1 -26347,2,90.0,0.0,1,400,300.0,0.0,0.0,0,71,0.0,1035.1725048194578,414.65226827277917,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125900,1,2,4,0,2,,150.0,,21,0.0,0.0,3.0,2.0,1.5,2,2,832.811967262031,300.0,21397.233291397057,0,5,0,1,40.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06075551835585567,14264.822194264705,3,2,3_0,3_1_0,3_0_0,3_1_0 -26348,2,64.0,0.0,2,111,300.0,1100.0,0.0,77,78,0.0,77.63793786145933,414.65226827277917,1475.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,0,,1,,2,102505,2,1,1,0,2,,260.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,268.008796149355,300.0,43583.87688729766,5,5,0,1,118.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03384279016330194,29055.917924865105,8,4,8,8_1,8_3,8_0_1 -26349,2,59.0,0.0,6,400,800.0,0.0,0.0,11,11,0.0,0.0,1105.7393820607444,900.0,172.03270041901916,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,113468,2,2,2,0,1,,150.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,817.445299770878,800.0,10021.110602545701,1,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08981040482392935,6680.740401697134,1,1,1_0,1_1_0,1_0_0,1_0_0 -26350,2,68.0,0.0,1,400,744.0,0.0,0.0,0,74,0.0,362.31037668681023,1028.3376253164924,1214.0,206.439240502823,0.0,70,2,1,2,2,1,2,2,2,0,,1,,1,120706,2,1,1,0,1,,324.0,,11,0.0,0.0,5.0,1.0,1.0,3,3,942.117627195847,744.0,24301.942001880594,0,5,0,1,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.049954855455833745,24301.942001880594,7,4,7,7_1,7_0,7_1_0 -26351,2,68.0,0.0,6,111,620.0,0.0,0.0,78,78,0.0,393.36555183139393,856.9480210970769,1120.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124072,2,1,3,0,1,,325.0,,41,1.0,2.0,4.0,3.0,2.0,1,1,325.868227831726,620.0,62732.032798384345,5,5,0,1,105.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0178537176309843,31366.016399192173,8,4,8,8_1,8_3,8_0_0 -26352,1,27.0,318.0,2,111,250.0,260.0,0.0,0,54,0.0,0.0,345.54355689398267,510.0,0.0,471.5497542203367,33,2,1,2,2,1,2,2,2,0,,2,,2,126211,1,2,0,1,2,274.0,0.0,450.0,32,1.0,0.0,3.0,3.0,1.6,2,2,389.98872546659,250.0,18736.0,0,1,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.027220324508966696,11710.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -26353,1,22.0,230.0,6,111,425.0,950.0,0.0,0,68,0.0,0.0,587.4240467197704,1375.0,0.0,1722.9702558050765,50,2,2,2,2,1,2,2,2,0,,2,,4,107516,2,2,0,0,1,,0.0,560.0,22,1.0,0.0,3.0,2.0,1.5,5,3,357.402649546102,425.0,16119.613312233776,0,2,2,3,73.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.08529981292767495,10746.408874822517,2,1,2_1,2_0_1,2_3_1,2_0_0 -26354,2,39.0,0.0,8,400,40.0,0.0,0.0,42,21,0.0,0.0,55.28696910303722,150.0,189.2359704609211,0.0,20,0,0,0,0,0,0,0,0,0,,1,1999.0,6,112318,2,3,2,0,1,,277.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,734.39795695617,40.0,30355.98921988194,1,1,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.004941364253145672,20237.32614658796,5,3,5,5_1,5_0,5_0_0 -26355,2,62.0,0.0,2,111,935.0,0.0,0.0,0,78,0.0,0.0,1292.332902783495,960.0,43.00817510475479,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,130158,2,2,0,0,2,,108.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,400.249773778257,935.0,19141.42622163192,0,5,0,1,63.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05015300264904474,19141.42622163192,5,3,5,5_0,5_3,5_0_1 -26356,2,32.0,0.0,1,400,600.0,0.0,0.0,0,63,0.0,0.0,829.3045365455583,635.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,55.0,1,,1,120182,2,2,5,0,1,,167.0,250.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1013.664098397,600.0,17727.42629548768,0,1,2,3,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03582020251646074,17727.42629548768,4,2,4_0,4_1_0,4_0_0,4_1_0 -26357,2,42.0,0.0,1,400,837.0,0.0,0.0,52,11,0.0,465.827627168756,1156.879828481054,1497.0,361.26867087994026,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,102433,1,1,4,0,2,,15.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,762.126274890877,837.0,35633.15105486859,1,1,0,1,133.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04201144034932222,15492.674371681996,3,2,3_0,3_1_0,3_0_0,3_1_0 -26358,2,81.0,0.0,1,400,198.0,0.0,0.0,0,75,2987.1697540360015,0.0,273.6704970600342,2303.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114554,2,1,2,0,1,,345.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,890.469468535384,198.0,44809.4245272455,0,5,0,1,107.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.051395437997640556,44809.4245272455,10,5,10,10_1,10_0,10_1_0 -26359,2,55.0,0.0,2,400,1000.0,0.0,0.0,55,47,0.0,414.0690019277831,1382.1742275759307,1500.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,2,112172,2,1,3,0,1,,600.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,893.703202141428,1000.0,30331.3315452185,1,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04945381305676517,20220.887696812333,5,3,5,5_1,5_0,5_0_1 -26360,2,56.0,0.0,6,400,1211.0,0.0,0.0,56,23,4480.754631054002,0.0,1673.812989594452,4331.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,108507,2,2,3,0,2,,560.0,,43,3.0,1.0,5.0,3.0,2.0,4,3,902.009957165014,1211.0,98957.38413128316,1,1,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04376631454055232,49478.69206564158,10,5,10,10_1,10_0,10_0_0 -26361,2,58.0,0.0,1,400,608.0,0.0,0.0,78,56,3644.3470999239216,15.527587572291866,840.3619303661658,3203.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,110786,2,2,1,0,2,,414.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,801.069426106947,608.0,31050.251475063928,5,1,1,2,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10315536421894327,20700.16765004262,5,3,5,5_1,5_0,5_1_0 -26362,1,65.0,100.0,2,111,120.0,0.0,0.0,0,74,0.0,0.0,165.86090730911167,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119726,2,1,0,0,2,,130.0,223.0,11,0.0,0.0,1.0,1.0,1.0,2,2,417.262795176038,120.0,9978.582498542446,0,5,2,3,27.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.012025756165019249,9978.582498542446,2,1,2_1,2_0_1,2_3_1,2_0_1 -26363,1,67.0,289.0,1,111,500.0,0.0,0.0,85,77,0.0,0.0,691.0871137879653,632.0,227.0831645531053,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,131953,1,3,0,0,2,,204.0,254.0,41,0.0,0.0,3.0,4.0,2.3,2,2,340.602160958171,500.0,12097.323056745572,6,5,2,3,55.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05224296292952112,5259.7056768459015,1,1,1_1,1_0_1,1_3_1,1_1_0 -26364,2,39.0,0.0,9,400,1070.0,0.0,0.0,55,21,0.0,0.0,1478.9264235062458,1105.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114281,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,793.839120760346,1070.0,54867.30767824767,1,1,1,2,145.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020139497393966005,26127.289370594128,7,4,7,7_1,7_0,7_0_0 -26365,1,32.0,47.0,1,111,564.0,0.0,0.0,0,42,0.0,0.0,779.5462643528249,564.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114776,2,2,0,0,1,,0.0,386.0,12,1.0,0.0,1.0,1.0,1.0,3,3,485.755337079607,564.0,14832.215407539177,0,1,2,3,33.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.038025337719496725,14832.215407539177,3,2,3_1,3_0_1,3_3_1,3_1_0 -26366,1,27.0,200.0,1,111,600.0,0.0,0.0,0,56,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,123604,2,1,0,0,2,,0.0,184.0,22,2.0,0.0,1.0,2.0,1.5,1,1,458.671990338462,600.0,6037.66792182367,0,1,2,3,14.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.09937611802584378,4025.111947882447,1,1,1_1,1_0_1,1_3_1,1_1_0 -26367,2,40.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,432.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,10.0,2,2004.0,1,100853,2,1,0,0,1,,0.0,767.0,32,1.0,0.0,3.0,2.0,1.3,2,2,450.815278985534,0.0,27736.002853735867,0,1,2,3,70.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015575423837318083,21335.38681056605,6,3,6,6_0,6_3,6_1_0 -26368,1,47.0,450.0,1,111,1200.0,0.0,0.0,35,63,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,2,2,2,2,1,1,2,2,0,,2,,1,119151,2,3,0,0,1,,0.0,500.0,43,2.0,0.0,4.0,4.0,2.5,2,2,304.084602622556,1200.0,15975.500703894071,1,4,2,3,75.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.07511501656455104,6390.200281557629,1,1,1_1,1_0_1,1_3_1,1_1_0 -26369,2,39.0,0.0,1,400,800.0,0.0,0.0,0,54,2389.735803228801,0.0,1105.7393820607444,2480.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133420,2,2,1,0,2,,250.0,,32,1.0,0.0,6.0,3.0,1.6,2,2,855.475893318985,800.0,9386.106160430276,0,4,0,1,141.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.26422032284858715,5866.316350268922,1,1,1_0,1_1_0,1_0_0,1_1_0 -26370,1,42.0,240.0,9,111,250.0,770.0,0.0,0,54,0.0,0.0,345.54355689398267,1020.0,0.0,1396.5127336525356,50,0,0,0,0,0,0,0,0,3,15.0,2,2006.0,6,115860,2,1,0,0,1,,450.0,480.0,32,2.0,0.0,4.0,3.0,1.8,2,2,351.428771940706,250.0,24005.455331412104,0,1,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04249034171267266,13336.364073006724,3,2,3_1,3_0_1,3_3_1,3_0_0 -26371,2,54.0,0.0,2,400,450.0,0.0,0.0,85,78,0.0,0.0,621.9784024091688,570.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128521,2,1,2,0,2,,270.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,773.831148442765,450.0,23645.886956815266,6,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02410567220595265,15763.924637876844,3,2,3_0,3_1_0,3_0_0,3_0_1 -26372,2,34.0,0.0,1,111,360.0,600.0,0.0,43,52,0.0,0.0,497.582721927335,960.0,0.0,1088.1917405084694,41,0,0,0,0,0,0,0,0,3,25.0,2,,1,111716,2,2,0,0,1,,0.0,282.0,43,2.0,0.0,2.0,2.0,1.5,1,1,392.099775249257,360.0,29223.321774285258,1,1,2,3,38.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03285047495335529,19482.21451619017,5,3,5,5_0,5_3,5_1_0 -26373,0,91.0,0.0,1,400,600.0,0.0,0.0,0,71,0.0,621.1035028916747,829.3045365455583,1350.0,258.04905062852873,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,120622,1,2,4,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,916.506351713283,600.0,10063.668264762615,0,5,0,1,75.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.13414591622887168,10063.668264762615,2,1,2_0,2_1_0,2_0_0,2_1_0 -26374,2,82.0,0.0,1,400,720.0,0.0,0.0,86,74,0.0,103.51725048194578,995.16544385467,4020.0,5505.046413408613,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,118169,2,3,1,0,1,,119.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,824.946782146066,720.0,58633.956669295556,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06856095389696132,39089.304446197035,9,5,9,9_1,9_0,9_1_0 -26375,2,73.0,0.0,1,111,900.0,0.0,0.0,0,77,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,115438,2,2,0,0,1,,150.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,403.813909024067,900.0,8914.094889102187,0,5,0,1,50.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.10096369975826525,8914.094889102187,1,1,1_0,1_0_0,1_3_0,1_1_0 -26376,2,55.0,0.0,6,400,815.0,0.0,0.0,54,21,1986.467886433941,0.0,1126.4719954743834,2225.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,109904,2,2,2,0,2,,271.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,831.387327710432,815.0,88407.14483719118,1,1,0,1,108.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025167649109102158,58938.09655812746,10,5,10,10_1,10_0,10_0_0 -26377,2,74.0,0.0,1,111,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,100355,2,3,0,0,2,,156.0,350.0,11,0.0,1.0,1.0,1.0,1.0,2,2,628.247058450917,1000.0,16372.26300948052,0,5,2,3,25.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.061078911291673005,16372.26300948052,4,2,4_0,4_0_0,4_3_0,4_1_0 -26378,2,60.0,0.0,6,400,3000.0,0.0,0.0,75,47,0.0,0.0,4146.522682727792,4318.0,86.01635020950958,0.0,33,0,0,0,0,0,0,0,0,2,3.0,1,,4,120632,2,1,3,0,2,,200.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,837.117046841234,3000.0,98206.07494027428,5,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04396876672472722,65470.71662684952,10,5,10,10_1,10_0,10_0_0 -26380,2,69.0,0.0,1,400,750.0,0.0,0.0,77,78,1493.5848770180007,310.55175144583734,1036.630670681948,2350.0,516.0981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132742,2,1,1,0,1,,474.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,956.647846121234,750.0,16851.701880797555,5,5,0,1,95.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13945179048519815,11234.467920531702,2,1,2_0,2_1_0,2_0_0,2_1_0 -26381,2,24.0,0.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,395.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,5.0,2,,1,113513,2,1,0,0,2,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,2,2,551.969507815683,0.0,8057.704962209085,0,1,3,4,23.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04902140272603225,8057.704962209085,1,1,1_0,1_0_0,1_3_0,1_1_0 -26382,0,86.0,0.0,2,400,1892.0,0.0,0.0,0,75,896.1509262108004,0.0,2615.0736385736604,2492.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115504,1,3,2,0,2,,320.0,,11,0.0,2.0,6.0,1.0,1.0,4,4,890.469468535384,1892.0,23916.036918008183,0,5,0,1,115.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10419786558046269,23916.036918008183,6,3,6,6_1,6_0,6_0_1 -26383,2,41.0,0.0,2,400,0.0,0.0,0.0,69,62,0.0,0.0,0.0,210.0,361.26867087994026,0.0,71,0,0,0,0,0,0,0,0,2,20.0,5,,2,107931,2,1,1,0,1,,0.0,278.0,43,2.0,0.0,4.0,4.0,2.3,1,1,948.236360739273,0.0,36626.41610008375,1,1,2,3,120.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.005733566708415128,15924.528739166848,3,2,3_0,3_1_0,3_0_0,3_0_1 -26384,2,55.0,0.0,1,400,300.0,0.0,0.0,0,63,0.0,0.0,414.65226827277917,410.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,1,101342,2,1,0,0,2,,172.0,240.0,12,1.0,2.0,2.0,1.0,1.0,3,2,1238.01748779791,300.0,12552.60334794218,0,1,2,3,42.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03266254725297391,12552.60334794218,2,1,2_0,2_0_0,2_0_0,2_1_0 -26385,2,82.0,0.0,1,400,1211.0,0.0,0.0,0,72,0.0,0.0,1673.812989594452,1281.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,120870,1,1,2,0,2,,150.0,250.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1118.10216984766,1211.0,19910.653767999793,0,5,2,3,40.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06433741528160218,19910.653767999793,5,3,5,5_1,5_0,5_1_0 -26386,1,79.0,46.0,1,400,438.0,0.0,0.0,0,86,0.0,186.3310508675024,605.3923116782576,828.0,361.26867087994026,0.0,41,2,2,2,1,1,2,2,2,0,,1,,1,123628,2,2,4,0,2,,250.0,350.0,21,0.0,2.0,2.0,2.0,1.5,3,3,1181.85165473668,438.0,30996.706624484526,0,5,2,3,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.026712515301414528,20664.471082989683,5,3,5,5_1,5_0,5_1_0 -26387,2,60.0,0.0,2,400,650.0,0.0,0.0,0,75,0.0,621.1035028916747,898.4132479243549,1320.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104433,2,3,4,0,1,,230.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,907.248862276354,650.0,22024.043712927865,0,5,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059934497824537775,22024.043712927865,6,3,6,6_1,6_0,6_0_1 -26388,2,65.0,0.0,6,111,600.0,700.0,0.0,77,78,0.0,0.0,829.3045365455583,1300.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,1,,4,132486,2,1,1,0,2,,230.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,261.49884329109,600.0,23016.070905725748,5,5,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05648227298763651,15344.047270483832,3,2,3_0,3_1_0,3_3_0,3_0_0 -26389,2,43.0,0.0,8,400,366.0,0.0,0.0,0,11,2987.1697540360015,0.0,505.87576729279056,2426.0,103.2196202514115,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,131226,2,1,1,0,1,,270.0,,32,1.0,0.0,7.0,2.0,1.3,2,2,887.408499116222,366.0,29621.152026059288,0,1,1,2,165.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08190093342303904,22785.501558507145,6,3,6,6_1,6_0,6_0_0 -26390,1,25.0,400.0,1,400,670.0,0.0,0.0,69,69,0.0,186.3310508675024,926.0567324758734,970.0,206.439240502823,0.0,44,1,2,2,1,1,2,2,2,2,5.0,1,,1,133038,1,1,1,0,2,,480.0,500.0,43,2.0,0.0,5.0,4.0,2.1,2,2,954.779088538669,670.0,8466.143279067555,1,1,2,3,130.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.11457401180515267,4031.4967995559787,1,1,1_1,1_1_1,1_0_1,1_1_0 -26391,1,25.0,351.0,6,400,1500.0,0.0,0.0,55,67,0.0,207.03450096389156,2073.261341363896,1800.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,133018,1,3,3,0,2,,600.0,470.0,43,2.0,0.0,5.0,3.0,1.8,1,1,903.347078086924,1500.0,8767.999510240827,1,1,2,3,70.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.20529198227003098,4871.110839022681,1,1,1_1,1_1_1,1_0_1,1_0_0 -26392,0,79.0,0.0,1,400,352.0,0.0,0.0,0,78,0.0,0.0,486.52532810672756,492.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,0,,5,,1,119691,2,1,2,0,1,,208.0,,11,0.0,1.0,5.0,1.0,1.0,4,2,883.325591696969,352.0,17954.49953112457,0,5,0,1,70.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027402601734852358,17954.49953112457,4,2,4_0,4_1_0,4_0_0,4_1_0 -26393,2,80.0,0.0,1,400,468.0,0.0,0.0,78,75,0.0,82.81380038555662,646.8575385055356,758.0,361.26867087994026,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,125611,2,1,2,0,1,,350.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,835.447652341873,468.0,32944.52085297729,5,5,0,1,75.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02300837833953494,21963.01390198486,6,3,6,6_1,6_0,6_1_0 -26394,2,53.0,0.0,1,400,0.0,0.0,0.0,85,45,0.0,0.0,0.0,1195.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,,1,131539,2,2,4,0,2,,188.0,,42,1.0,3.0,5.0,3.0,1.8,1,1,985.981576421608,0.0,45813.642210237624,5,1,0,1,150.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026083933569747104,25452.023450132012,7,4,7,7_1,7_0,7_1_0 -26395,2,64.0,0.0,5,400,539.0,0.0,0.0,78,75,0.0,465.827627168756,744.9919086634266,989.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114374,1,1,3,0,2,,187.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,893.656063827944,539.0,32525.441661981706,5,5,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030406966038404974,21683.62777465447,6,3,6,6_1,6_0,6_0_0 -26396,2,61.0,0.0,1,400,240.0,0.0,0.0,0,52,0.0,41.40690019277831,331.72181461822333,2280.0,3440.6540083803834,0.0,20,2,2,2,2,1,2,2,2,2,25.0,1,,1,101726,1,2,3,0,2,,170.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,770.544554331498,240.0,20827.727085741768,0,1,0,1,97.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.1094694582185514,20827.727085741768,5,3,5,5_1,5_0,5_1_0 -26397,0,78.0,0.0,5,400,584.0,0.0,0.0,64,64,2987.1697540360015,0.0,807.1897489043434,2644.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,3,90.0,1,,3,101193,2,3,3,0,2,,300.0,,41,0.0,2.0,7.0,2.0,1.5,3,3,926.793649677791,584.0,34620.202633757624,5,5,0,1,145.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07637159227432934,23080.13508917175,6,3,6,6_1,6_0,6_0_0 -26398,2,75.0,0.0,1,400,1000.0,0.0,0.0,86,74,5974.339508072003,0.0,1382.1742275759307,5100.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,113422,2,2,1,0,2,,400.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,921.07028161489,1000.0,70166.53823255979,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07268421855296,46777.69215503986,10,5,10,10_1,10_0,10_1_0 -26399,2,65.0,0.0,6,111,420.0,1230.0,0.0,77,35,0.0,0.0,580.5131755818909,1650.0,0.0,2230.793068042362,60,2,2,2,2,2,2,2,1,2,45.0,1,,4,128533,2,1,1,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,3,2,258.348042334306,420.0,86529.07292657295,5,1,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.019068735445717314,57686.0486177153,10,5,10,10_1,10_3,10_0_0 -26400,2,74.0,0.0,2,111,400.0,0.0,0.0,77,31,5974.339508072003,0.0,552.8696910303722,4400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,123212,2,1,1,0,1,,900.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1057.60765543457,400.0,176097.9714675755,5,1,0,1,170.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02498609134069532,117398.64764505033,10,5,10,10_1,10_3,10_0_1 -26401,1,38.0,229.0,5,111,700.0,180.0,0.0,54,47,0.0,0.0,967.5219593031513,880.0,0.0,326.4575221525408,31,0,0,0,0,0,0,0,0,0,,2,,3,122132,2,2,0,1,1,543.0,0.0,410.0,43,2.0,0.0,4.0,5.0,3.0,3,2,314.093371942203,700.0,40174.73637841889,1,1,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.021904312991901032,13391.578792806298,3,2,3_1,3_0_1,3_3_1,3_0_0 -26402,2,71.0,0.0,5,111,1500.0,0.0,0.0,75,75,0.0,0.0,2073.261341363896,1600.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,105821,2,1,1,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1110.37659188633,1500.0,50380.10306709989,5,5,0,1,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03175856940723213,33586.735378066594,9,5,9,9_1,9_3,9_0_0 -26403,2,75.0,0.0,6,111,1980.0,0.0,0.0,72,72,0.0,248.44140115666985,2736.7049706003427,2220.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,117784,2,1,2,0,1,,545.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1080.06573411473,1980.0,49536.91637408892,5,5,0,1,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04481506243213004,33024.61091605928,8,4,8,8_1,8_3,8_0_0 -26404,2,30.0,0.0,9,111,600.0,2000.0,0.0,21,46,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,60,2,1,2,2,1,2,2,2,2,10.0,1,2010.0,6,116748,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1114.48013926569,600.0,76686.55837904399,1,1,1,2,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.03390424678010453,42603.64354391333,9,5,9,9_1,9_3,9_0_0 -26405,2,76.0,0.0,2,111,1200.0,1300.0,0.0,75,74,0.0,0.0,1658.6090730911167,3034.0,0.0,2357.7487711016834,33,0,0,0,0,0,0,0,0,0,,1,,2,129892,2,1,1,0,1,,230.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1150.50934400961,1200.0,50802.786354176904,5,5,0,1,145.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059721133774989305,33868.52423611793,9,5,9,9_1,9_3,9_0_1 -26406,1,33.0,119.0,9,111,500.0,0.0,0.0,0,54,0.0,0.0,691.0871137879653,540.0,68.81308016760767,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,109742,2,1,0,0,1,,360.0,390.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1167.5835416081,500.0,20930.684858603843,0,1,2,3,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.025799442476342367,16100.526814310648,4,2,4_1,4_0_1,4_3_1,4_0_0 -26407,2,33.0,0.0,7,111,0.0,0.0,0.0,43,21,0.0,0.0,0.0,1544.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,119345,2,2,5,0,1,,621.0,950.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,1,1,1129.06904494632,0.0,45229.660597061455,1,1,2,3,100.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0341368911377662,16751.7261470598,4,2,4_0,4_1_0,4_3_0,4_0_0 -26408,2,66.0,0.0,2,111,0.0,0.0,2700.0,78,78,0.0,0.0,1379.4660040613178,2700.0,0.0,3086.763591562105,41,0,0,0,0,0,0,0,0,0,,1,,2,132627,2,1,1,0,1,,500.0,,41,0.0,2.0,5.0,3.0,2.0,2,2,1178.96981641911,0.0,53509.62355570475,5,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.050458213319128246,26754.811777852374,7,4,7,7_1,7_3,7_0_1 -26409,2,61.0,0.0,5,111,1550.0,0.0,0.0,75,33,0.0,0.0,2142.370052742692,1550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,112461,1,2,0,0,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,419.199748218907,1550.0,39066.018115852865,5,1,0,1,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03967642659160635,26044.012077235242,7,4,7,7_0,7_3,7_0_0 -26410,2,27.0,0.0,2,111,620.0,1890.0,0.0,55,68,0.0,0.0,856.9480210970769,2510.0,0.0,3427.8039826016784,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,104578,2,3,3,0,1,,440.0,720.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1246.60224196003,620.0,30078.62928542975,1,1,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08344795157324066,16710.349603016526,4,2,4_0,4_1_0,4_3_0,4_0_1 -26411,2,52.0,0.0,9,111,0.0,0.0,470.0,56,21,0.0,0.0,240.12926737363676,470.0,0.0,537.3255140867368,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,108584,2,1,0,0,1,,300.0,411.0,43,2.0,1.0,3.0,2.0,1.5,4,4,1239.13510769723,0.0,19416.295670476604,1,1,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024206471099152926,12944.19711365107,2,1,2_0,2_0_0,2_3_0,2_0_0 -26412,2,78.0,0.0,2,111,0.0,0.0,2000.0,0,77,0.0,51.75862524097289,1021.8266696750501,2050.0,0.0,2286.491549305263,71,0,0,0,0,0,0,0,0,0,,1,,2,101629,2,1,1,0,1,,160.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1116.12355656274,0.0,31395.62739588762,0,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06529571695288118,31395.62739588762,8,4,8,8_1,8_3,8_0_1 -26413,2,71.0,0.0,5,111,750.0,0.0,0.0,77,78,0.0,414.0690019277831,1036.630670681948,1210.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,104816,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1043.35360162329,750.0,26316.21581157684,5,5,0,1,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04597925509744853,17544.14387438456,4,2,4_0,4_1_0,4_3_0,4_0_0 -26414,1,60.0,250.0,7,111,400.0,0.0,0.0,0,52,0.0,0.0,552.8696910303722,450.0,86.01635020950958,0.0,41,1,2,2,1,2,2,2,2,2,120.0,1,,5,129144,2,2,5,0,1,,400.0,650.0,22,2.0,1.0,3.0,2.0,1.5,3,2,1102.92319540035,400.0,23968.455929098953,0,1,2,3,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,1,0.018774676238266837,15978.970619399302,3,2,3_1,3_1_1,3_3_1,3_0_0 -26415,2,53.0,0.0,9,111,1836.0,0.0,0.0,85,37,0.0,0.0,2537.6718818294084,1976.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,133361,2,1,1,0,1,,547.0,,42,1.0,0.0,5.0,4.0,2.5,4,3,893.413350919169,1836.0,31231.642986719315,6,1,1,2,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0632691658533705,12492.657194687727,2,1,2_0,2_1_0,2_3_0,2_0_0 -26416,0,34.0,0.0,1,111,900.0,1300.0,0.0,0,35,0.0,0.0,1243.9568048183376,2200.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,1,,1,112915,2,1,1,0,1,,300.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1446.52320772132,900.0,17355.55939120818,0,1,5,0,180.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12676053536565673,17355.55939120818,4,2,4_0,4_1_0,4_3_0,4_1_0 -26417,2,57.0,0.0,5,111,0.0,0.0,0.0,78,46,0.0,0.0,0.0,3593.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,126344,2,1,2,0,1,,388.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1079.9464208962,0.0,59321.08573249541,5,1,0,1,110.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0605686823771635,39547.390488330275,9,5,9,9_1,9_3,9_0_0 -26418,2,52.0,0.0,6,111,1200.0,0.0,0.0,75,56,2240.377315527001,62.110350289167464,1658.6090730911167,2860.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,121665,1,2,2,0,2,,250.0,,42,1.0,2.0,8.0,5.0,2.5999999999999996,2,2,967.382079927264,1200.0,36379.41949784102,5,1,0,1,130.0,9,7,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07861587786384909,13992.08442224655,3,2,3_0,3_1_0,3_3_0,3_0_0 -26419,0,88.0,0.0,1,111,500.0,0.0,0.0,71,71,0.0,0.0,691.0871137879653,600.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,104172,2,2,0,0,1,,650.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,1690.6514689645,500.0,16185.330781356897,5,5,0,1,100.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0370706047411222,10790.220520904599,2,1,2_0,2_0_0,2_3_0,2_1_0 -26420,2,29.0,0.0,9,111,1172.0,0.0,0.0,43,43,0.0,0.0,1619.9081947189907,1172.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,128500,2,1,1,0,1,,413.0,710.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1117.53093992854,1172.0,47802.65325504169,1,1,2,3,70.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024517467550326626,31868.435503361125,8,4,8,8_1,8_3,8_0_0 -26421,2,50.0,0.0,7,111,800.0,1200.0,0.0,54,37,0.0,310.55175144583734,1105.7393820607444,2300.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,5,107973,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,1126.65836866834,800.0,99079.98600477038,1,4,0,1,245.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023213568075082916,49539.99300238519,10,5,10,10_1,10_3,10_0_0 -26422,2,62.0,0.0,2,111,623.0,120.0,0.0,0,77,0.0,0.0,861.0945437798048,743.0,0.0,217.63834810169388,42,0,0,0,0,0,0,0,0,0,,2,,2,124434,2,1,0,1,1,504.0,0.0,412.0,21,0.0,0.0,4.0,2.0,1.5,2,2,386.159950947988,623.0,26973.90716852236,0,7,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02754513817216128,17982.604779014906,4,2,4_0,4_0_0,4_3_0,4_0_1 -26423,2,59.0,0.0,7,111,0.0,0.0,0.0,86,90,0.0,0.0,0.0,2624.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,18.0,1,,5,106727,2,1,2,0,1,,220.0,,42,1.0,4.0,6.0,2.0,1.5,1,1,1065.79758840113,0.0,27337.829595313684,7,1,0,1,120.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0959842108478799,18225.219730209123,4,2,4_0,4_1_0,4_3_0,4_0_0 -26425,2,70.0,0.0,9,111,1300.0,0.0,0.0,71,71,0.0,0.0,1796.8264958487098,1500.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,104690,2,1,1,0,1,,350.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1199.28353884466,1300.0,42789.42871307953,5,5,0,1,180.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03505538739622135,28526.285808719684,8,4,8,8_1,8_3,8_0_0 -26426,2,50.0,0.0,6,111,1964.0,0.0,0.0,52,47,0.0,144.92415067472407,2714.5901829591276,2104.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,1.0,1,,4,112538,1,2,3,0,1,,420.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1029.20717209366,1964.0,63066.7444453567,1,1,0,1,150.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03336148105477335,42044.496296904465,9,5,9,9_1,9_3,9_0_0 -26427,2,35.0,0.0,2,111,660.0,0.0,0.0,55,53,2688.452778632401,0.0,912.2349902001142,2460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,130487,2,2,1,0,1,,550.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1108.56548047909,660.0,43287.7899966343,4,1,1,2,102.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.056828958008511614,24048.77222035239,6,3,6,6_1,6_3,6_0_1 -26428,2,61.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,5689.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,133646,2,2,5,0,1,,313.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,987.215015843463,0.0,67361.18212672239,0,5,0,1,120.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0844551686948967,44907.45475114826,10,5,10,10_1,10_3,10_0_1 -26429,1,40.0,340.0,2,111,180.0,0.0,0.0,0,85,0.0,0.0,248.7913609636675,180.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,106393,2,1,0,1,1,,0.0,530.0,31,0.0,0.0,4.0,3.0,2.0,4,3,493.255268393897,180.0,34294.570088023516,0,6,2,3,70.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.005248644305439487,17147.285044011758,4,2,4_1,4_0_1,4_3_1,4_0_1 -26430,2,79.0,0.0,2,111,240.0,112.0,0.0,77,77,0.0,0.0,331.72181461822333,352.0,0.0,203.12912489491427,12,0,0,0,0,0,0,0,0,0,,2,,2,116301,2,1,0,1,1,,0.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,364.627879469418,240.0,34629.90376625678,5,5,0,1,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010164625416689353,23086.602510837853,6,3,6,6_0,6_3,6_0_1 -26431,2,45.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,414.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2005.0,6,123217,2,1,0,0,1,,93.0,500.0,12,1.0,2.0,2.0,1.0,1.0,4,3,2224.47146452552,0.0,23869.88981778138,0,1,2,3,38.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017344026434994237,23869.88981778138,6,3,6,6_0,6_3,6_0_0 -26432,2,43.0,0.0,2,111,404.0,497.0,0.0,43,38,0.0,155.27587572291867,558.398387940676,1051.0,0.0,901.3854917211821,30,0,0,0,0,0,0,0,0,2,15.0,1,,2,111081,2,1,1,0,1,,333.0,,43,2.0,0.0,6.0,3.0,1.8,2,1,377.920778737239,404.0,83050.02874360289,4,1,1,2,136.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.012655022712210145,46138.90485755716,10,5,10,10_1,10_3,10_0_1 -26433,2,28.0,0.0,8,111,0.0,0.0,0.0,22,31,0.0,0.0,0.0,280.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,20.0,2,2002.0,6,125619,2,1,0,0,1,,309.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,472.74494516244,0.0,39728.484079966176,1,1,1,2,47.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007047840019176447,26485.656053310784,7,4,7,7_0,7_3,7_0_0 -26434,2,37.0,0.0,9,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,1006.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,2008.0,6,125016,1,1,0,0,1,,238.0,398.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1643.54410183936,0.0,25974.00831485228,1,1,2,3,69.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03873102633237997,14430.004619362377,3,2,3_0,3_0_0,3_3_0,3_0_0 -26436,1,73.0,140.0,2,111,100.0,0.0,0.0,0,86,0.0,0.0,138.21742275759306,160.0,103.2196202514115,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,108703,2,2,0,1,1,504.0,0.0,440.0,11,0.0,8.0,4.0,1.0,1.0,1,1,376.875852419,100.0,11339.883342375164,0,6,2,3,80.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.014109492590819514,11339.883342375164,2,1,2_1,2_0_1,2_3_1,2_0_1 -26437,2,63.0,0.0,5,111,640.0,1180.0,0.0,75,75,0.0,51.75862524097289,884.5915056485956,1950.0,137.62616033521533,2140.1104229999896,42,0,0,0,0,0,0,0,0,0,,1,,3,106439,2,1,3,0,1,,375.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,261.49884329109,640.0,40817.603791438494,5,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0477735050289506,27211.735860958997,7,4,7,7_1,7_3,7_0_0 -26440,2,81.0,0.0,2,111,300.0,0.0,0.0,0,77,970.8301700617004,0.0,414.65226827277917,950.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,127579,2,2,0,1,2,156.0,0.0,320.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1820.92611518019,300.0,8773.404646870373,0,5,2,3,35.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1082817946096766,8773.404646870373,1,1,1_0,1_0_0,1_3_0,1_0_1 -26441,1,32.0,355.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,311.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,1,101574,2,2,0,0,1,,0.0,314.0,32,1.0,0.0,4.0,3.0,1.6,1,1,363.895103536948,0.0,9666.408972042007,0,1,2,3,75.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03217327147025334,6041.505607526254,1,1,1_1,1_0_1,1_3_1,1_1_0 -26442,2,85.0,0.0,2,111,268.0,87.0,0.0,77,74,881.2150774406205,0.0,370.4226929903494,945.0,0.0,157.78780237372806,50,2,1,2,2,2,2,2,1,0,,2,,2,105212,2,2,0,1,1,525.0,0.0,384.0,41,0.0,3.0,3.0,2.0,1.5,2,2,1520.37416144482,268.0,27891.758649400115,5,5,2,3,60.0,9,7,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03388097580646191,18594.505766266742,4,2,4_0,4_0_0,4_3_0,4_0_1 -26443,0,35.0,0.0,1,111,960.0,1640.0,0.0,0,55,0.0,0.0,1326.8872584728933,2600.0,0.0,2974.3907573898164,70,0,0,0,0,0,0,0,0,0,,1,,1,110055,2,1,2,0,2,,670.0,,22,1.0,0.0,5.0,3.0,2.0,1,1,1361.23639803776,960.0,54497.154679802894,0,1,0,1,112.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0477089127914339,27248.577339901447,7,4,7,7_1,7_3,7_1_0 -26444,1,39.0,359.0,2,111,460.0,510.0,0.0,85,81,0.0,0.0,635.800144684928,970.0,0.0,924.962979432199,50,2,2,2,2,1,2,2,2,0,,2,,2,129841,2,1,0,1,1,416.0,0.0,325.0,42,1.0,1.0,3.0,4.0,2.1,1,1,337.469289570237,460.0,18255.592782722513,7,4,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05313440168965803,8693.139420344054,1,1,1_1,1_0_1,1_3_1,1_0_1 -26445,2,80.0,0.0,1,111,420.0,850.0,0.0,77,72,0.0,0.0,580.5131755818909,1270.0,0.0,1541.6049657203316,50,0,0,0,0,0,0,0,0,0,,1,,1,104711,2,2,2,0,2,,310.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1216.20995692408,420.0,43250.61802657328,5,5,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02936374225264733,28833.745351048852,8,4,8,8_1,8_3,8_1_0 -26446,2,61.0,0.0,5,111,406.0,1100.0,0.0,0,34,0.0,0.0,561.1627363958278,1506.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,100470,2,2,0,0,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1957.3490934704,406.0,55887.77117601309,0,1,0,1,115.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026946860973521374,55887.77117601309,10,5,10,10_0,10_3,10_0_0 -26447,1,82.0,144.0,2,111,198.0,200.0,0.0,0,86,0.0,0.0,273.6704970600342,398.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,2,118578,2,1,0,1,1,408.0,0.0,237.0,11,0.0,5.0,3.0,1.0,1.0,2,1,394.396553698236,198.0,13376.572459429772,0,6,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0297535113129396,13376.572459429772,3,2,3_1,3_0_1,3_3_1,3_0_1 -26448,2,80.0,0.0,2,111,210.0,90.0,0.0,77,74,1194.8679016144006,0.0,290.25658779094545,1100.0,0.0,163.2287610762704,60,0,0,0,0,0,0,0,0,0,,2,,2,108899,2,2,0,1,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,4,3,1849.27907650542,210.0,79737.08524407883,5,5,0,1,83.0,9,7,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013795337472304764,53158.05682938589,10,5,10,10_0,10_3,10_0_1 -26449,1,36.0,64.0,2,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,731.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,60.0,2,,2,103475,2,2,0,1,1,684.0,0.0,295.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1553.37434310655,0.0,19014.88341913598,0,1,2,3,44.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03844356990715729,19014.88341913598,5,3,5,5_0,5_3,5_0_1 -26450,2,58.0,0.0,2,111,570.0,530.0,0.0,0,56,0.0,0.0,787.8393097182804,1100.0,0.0,961.236037449148,50,0,0,0,0,0,0,0,0,0,,2,,2,122162,1,3,0,1,2,531.0,0.0,847.0,32,2.0,2.0,5.0,3.0,2.0,4,4,494.270314654611,570.0,28872.88274029134,0,1,2,3,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03809803163384788,14436.44137014567,3,2,3_0,3_0_0,3_3_0,3_0_1 -26451,1,24.0,308.0,2,111,360.0,0.0,0.0,0,68,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,105156,1,3,0,1,1,726.0,0.0,390.0,32,1.0,0.0,4.0,3.0,1.6,1,1,324.21125142458,360.0,11754.773678748983,0,2,2,3,72.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03062585548974291,7346.733549218114,1,1,1_1,1_0_1,1_3_1,1_0_1 -26452,2,67.0,0.0,2,111,470.0,1530.0,0.0,77,74,0.0,0.0,649.6218869606873,2000.0,0.0,2774.8889382965967,71,0,0,0,0,0,0,0,0,0,,1,,2,122908,2,1,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,265.067431668965,470.0,49959.57763660639,5,5,0,1,150.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04003236405534701,33306.38509107092,8,4,8,8_1,8_3,8_0_1 -26453,1,46.0,265.0,7,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,307.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,104630,2,2,0,0,1,,0.0,306.0,11,0.0,0.0,2.0,1.0,1.0,1,1,407.166534708021,0.0,1620.1001980701444,0,7,2,3,34.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.18949445248244332,1620.1001980701444,1,1,1_1,1_0_1,1_3_1,1_0_0 -26455,2,29.0,0.0,2,111,0.0,0.0,0.0,81,46,0.0,0.0,0.0,560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,101968,1,1,0,0,1,,667.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,336.863637761326,0.0,19810.54446815788,4,1,0,1,85.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028267774310802303,13207.029645438588,2,1,2_0,2_0_0,2_3_0,2_0_1 -26456,1,27.0,140.0,5,111,300.0,0.0,0.0,0,90,0.0,0.0,414.65226827277917,300.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,3,113194,1,1,0,1,1,274.0,0.0,243.0,12,1.0,0.0,3.0,1.0,1.0,3,2,365.145983474356,300.0,11366.575540947544,0,1,2,3,45.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.026393173468936566,11366.575540947544,2,1,2_1,2_0_1,2_3_1,2_0_0 -26457,2,52.0,0.0,2,111,415.0,904.0,0.0,56,47,0.0,0.0,573.6023044440112,1319.0,0.0,1639.5422223660937,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,121446,2,1,3,0,1,,432.0,,43,2.0,3.0,4.0,2.0,1.5,4,3,311.549048896676,415.0,40958.999414763275,1,1,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032202935102085994,27305.999609842183,7,4,7,7_1,7_3,7_0_1 -26458,2,30.0,0.0,2,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,228.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,102867,1,3,0,1,2,192.0,0.0,279.0,22,1.0,0.0,2.0,2.0,1.5,2,2,348.632340881443,0.0,27598.88593043633,0,1,2,3,50.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008261203027349713,18399.257286957552,4,2,4_0,4_0_0,4_3_0,4_0_1 -26459,1,64.0,138.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,287.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,107056,2,1,0,1,1,1200.0,0.0,473.0,21,0.0,1.0,3.0,2.0,1.5,3,3,347.622719043502,0.0,14997.114956154872,0,5,2,3,80.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.019137014074978077,9998.076637436581,2,1,2_1,2_0_1,2_3_1,2_0_0 -26460,2,39.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1180.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,1.0,2,,2,129985,2,1,0,1,1,41.0,0.0,317.0,12,1.0,1.0,3.0,1.0,1.0,1,1,383.381172773918,0.0,18350.631302373113,0,1,2,3,62.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06430296487115415,18350.631302373113,4,2,4_0,4_0_0,4_3_0,4_0_1 -26461,2,27.0,0.0,1,111,0.0,0.0,0.0,46,52,0.0,0.0,0.0,275.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,20.0,2,,1,132313,1,2,0,0,2,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2007.59395374583,0.0,9481.1106818297,1,1,2,3,70.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.029005040572623028,6320.740454553133,1,1,1_0,1_0_0,1_3_0,1_1_0 -26462,1,56.0,44.0,2,111,360.0,110.0,0.0,0,77,0.0,0.0,497.582721927335,470.0,0.0,199.50181909321938,71,2,2,2,2,1,2,2,2,0,,2,,2,115004,1,3,0,1,1,408.0,0.0,317.0,31,0.0,0.0,3.0,2.0,1.5,2,2,365.64898414152,360.0,15507.852179401581,0,7,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.030307227239648373,10338.568119601054,2,1,2_1,2_0_1,2_3_1,2_0_1 -26463,2,32.0,0.0,1,111,1300.0,0.0,0.0,46,43,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,2,2,2,1,2,2,2,2,3,15.0,2,,1,105447,1,3,0,0,2,,0.0,773.0,43,2.0,0.0,2.0,3.0,1.8,1,1,2133.00615694626,1300.0,46292.34040034432,4,1,2,3,65.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.02808239956669658,25717.966889080177,7,4,7,7_0,7_3,7_1_0 -26464,2,73.0,0.0,5,111,230.0,600.0,0.0,0,75,0.0,0.0,317.900072342464,830.0,0.0,1088.1917405084694,60,2,2,2,2,2,2,2,1,0,,2,,3,125685,1,1,0,0,2,,87.0,330.0,11,0.0,2.0,2.0,1.0,1.0,1,1,376.846539811288,230.0,20036.330092411663,0,5,2,3,45.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.041424751747044984,20036.330092411663,5,3,5,5_0,5_3,5_0_0 -26466,2,45.0,0.0,1,111,630.0,0.0,0.0,0,21,0.0,0.0,870.7697633728362,630.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,117578,1,3,0,0,2,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2100.97428996942,630.0,16845.98526251278,0,1,2,3,42.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.037397634521379605,16845.98526251278,4,2,4_0,4_0_0,4_3_0,4_1_0 -26467,2,87.0,0.0,5,111,220.0,0.0,0.0,0,72,0.0,0.0,304.0783300667047,282.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,119028,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,425.035773913593,220.0,21972.876945005904,0,5,0,1,86.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012834004427631142,21972.876945005904,6,3,6,6_0,6_3,6_0_0 -26468,1,49.0,267.0,1,111,650.0,0.0,0.0,0,85,0.0,0.0,898.4132479243549,650.0,0.0,0.0,10,2,2,2,1,2,2,2,2,0,,2,,1,118031,1,2,0,0,2,,0.0,367.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2064.80699714441,650.0,10381.222153585364,0,7,2,3,40.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,1,0.06261305175667678,10381.222153585364,2,1,2_1,2_0_1,2_3_1,2_1_0 -26469,2,69.0,0.0,2,111,250.0,50.0,0.0,0,77,0.0,0.0,345.54355689398267,300.0,0.0,90.68264504237244,70,2,2,2,2,1,2,2,2,0,,2,,2,131924,2,2,0,1,1,724.0,0.0,223.0,11,0.0,6.0,1.0,1.0,1.0,2,2,417.262795176038,250.0,12591.903873095878,0,5,2,3,35.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.02382483244976053,12591.903873095878,2,1,2_0,2_0_0,2_3_0,2_0_1 -26470,2,48.0,0.0,6,111,0.0,0.0,0.0,45,45,0.0,0.0,0.0,1599.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,120312,2,2,2,0,1,,281.0,,43,3.0,2.0,4.0,4.0,2.5,2,2,242.706312304012,0.0,93604.28705923948,1,1,1,2,100.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01708255091978895,37441.71482369579,9,5,9,9_1,9_3,9_0_0 -26471,2,48.0,0.0,1,111,60.0,0.0,0.0,0,37,0.0,0.0,82.93045365455583,60.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,15.0,2,,1,131830,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,1904.87429078732,60.0,78046.6411353754,0,1,0,1,95.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0007687710723633489,78046.6411353754,10,5,10,10_0,10_3,10_1_0 -26472,2,63.0,0.0,6,111,1370.0,0.0,0.0,0,52,0.0,0.0,1893.578691779025,1430.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,101466,2,1,2,0,1,,150.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,277.650097695246,1370.0,26973.48602502885,0,1,0,1,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05301502366705938,26973.48602502885,7,4,7,7_1,7_3,7_0_0 -26473,2,45.0,0.0,1,111,2160.0,0.0,0.0,85,22,0.0,0.0,2985.49633156401,2160.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,110326,2,1,0,0,2,,0.0,1400.0,42,1.0,0.0,4.0,4.0,2.3,1,1,2147.59245858225,2160.0,39068.28863199249,6,1,2,3,160.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05528780695633557,16986.212448692386,4,2,4_0,4_0_0,4_3_0,4_1_0 -26474,1,47.0,300.0,2,111,360.0,1100.0,0.0,0,68,0.0,0.0,497.582721927335,1460.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,0,,2,,2,123031,2,1,0,0,1,,0.0,650.0,32,1.0,2.0,4.0,3.0,2.0,2,2,465.801601737051,360.0,25076.221858346635,0,1,2,3,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.058222486953872526,12538.110929173317,2,1,2_1,2_0_1,2_3_1,2_0_1 -26475,2,44.0,0.0,1,111,510.0,1740.0,0.0,31,34,0.0,0.0,704.9088560637246,2250.0,0.0,3155.756047474561,31,2,2,2,1,2,1,2,2,0,,2,,1,130855,1,2,0,0,2,,0.0,1417.0,43,2.0,0.0,5.0,5.0,2.4,2,2,2128.15188145292,510.0,73430.12784690819,1,1,2,3,157.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.03064137386075295,30595.886602878414,8,4,8,8_0,8_3,8_1_0 -26476,2,52.0,0.0,7,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,808.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,5,122653,2,1,0,0,1,,202.0,550.0,22,2.0,1.0,3.0,2.0,1.5,1,1,1453.75688278222,0.0,35249.33271477304,0,1,2,3,67.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022922419738781785,23499.555143182024,6,3,6,6_0,6_3,6_0_0 -26477,2,56.0,0.0,2,111,850.0,600.0,0.0,0,64,0.0,0.0,1174.848093439541,1450.0,0.0,1088.1917405084694,43,2,2,2,1,2,2,2,2,0,,2,,2,106526,2,1,0,0,1,,547.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,400.249773778257,850.0,24540.245714517314,0,1,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.05908661294056323,24540.245714517314,7,4,7,7_0,7_3,7_0_1 -26478,2,32.0,0.0,7,111,650.0,0.0,0.0,0,42,0.0,0.0,898.4132479243549,650.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,5,112286,2,2,0,0,1,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1806.93412878965,650.0,19502.646774219393,0,1,2,3,50.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03332880954698092,19502.646774219393,5,3,5,5_0,5_3,5_0_0 -26479,1,39.0,400.0,6,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,526.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,107567,2,1,0,1,1,,0.0,451.0,31,0.0,0.0,4.0,4.0,2.1,2,1,291.107791608523,0.0,13132.160186098756,0,6,2,3,71.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04005433931249218,6253.409612427979,1,1,1_1,1_0_1,1_2_1,1_0_0 -26481,2,61.0,0.0,5,111,730.0,0.0,0.0,0,78,0.0,0.0,1008.9871861304293,730.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,3,118311,2,2,0,0,1,,0.0,437.0,11,0.0,0.0,2.0,1.0,1.0,4,4,2001.3665350662,730.0,8056.60948295983,0,7,2,3,47.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.0906088350867682,8056.60948295983,1,1,1_0,1_0_0,1_3_0,1_0_0 -26482,2,47.0,0.0,2,111,1000.0,0.0,0.0,0,55,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,20.0,2,,2,100301,2,2,0,0,1,,280.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,1839.78203100497,1000.0,18991.57409653459,0,1,1,2,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.052654929755531474,18991.57409653459,5,3,5,5_0,5_3,5_0_1 -26483,1,24.0,327.0,1,111,0.0,0.0,0.0,84,46,0.0,0.0,0.0,785.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,,1,124193,2,2,0,0,2,,0.0,550.0,42,1.0,0.0,2.0,2.0,1.5,6,5,1920.36072879388,0.0,14117.405757895052,3,1,2,3,47.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.055605117077618504,9411.603838596702,1,1,1_1,1_0_1,1_3_1,1_1_0 -26484,1,29.0,305.0,2,111,199.0,200.0,0.0,0,85,0.0,0.0,275.05267128761017,399.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,0,,2,,2,121918,2,2,0,1,1,,574.0,306.0,31,0.0,0.0,3.0,4.0,1.9,2,2,354.848088819317,199.0,12213.406896630018,0,6,2,3,65.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03266901720191554,6428.108892963168,1,1,1_1,1_0_1,1_2_1,1_0_1 -26485,1,24.0,50.0,1,111,480.0,1200.0,0.0,84,46,0.0,0.0,663.4436292364467,1680.0,0.0,2176.3834810169387,31,2,2,2,2,2,1,2,2,1,7.0,2,,1,119731,1,3,0,0,2,,0.0,537.0,42,1.0,0.0,2.0,2.0,1.5,4,2,2024.98627597306,480.0,20973.737895286788,3,1,2,3,64.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,1,0.08010017138516493,13982.491930191192,3,2,3_1,3_0_1,3_3_1,3_1_0 -26486,1,57.0,188.0,2,111,300.0,600.0,0.0,0,78,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,71,2,2,2,2,1,2,2,2,0,,2,,2,117118,1,3,0,0,1,,100.0,345.0,11,0.0,3.0,4.0,1.0,1.0,2,2,367.496935663675,300.0,9546.90081340565,0,7,2,3,70.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.09427143086437331,9546.90081340565,1,1,1_1,1_0_1,1_2_1,1_0_1 -26487,2,57.0,0.0,1,111,392.0,1218.0,0.0,0,34,0.0,0.0,541.8122972097648,1610.0,0.0,2209.029233232193,50,0,0,0,0,0,0,0,0,2,12.0,1,,1,105039,2,1,2,0,1,,307.0,,32,1.0,1.0,6.0,2.0,1.5,2,2,287.022022819298,392.0,68929.96212494804,0,1,0,1,142.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02335704170389044,45953.308083298696,10,5,10,10_1,10_2,10_1_0 -26488,1,69.0,100.0,6,111,800.0,600.0,0.0,85,78,0.0,0.0,1105.7393820607444,1400.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,4,115345,2,1,0,0,1,,1000.0,470.0,41,1.0,0.0,4.0,3.0,2.0,3,3,350.925404033187,800.0,25726.835492171904,6,5,2,3,90.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05441788596292725,12863.417746085952,2,1,2_1,2_0_1,2_2_1,2_0_0 -26489,2,52.0,0.0,1,111,960.0,1800.0,0.0,13,13,0.0,0.0,1326.8872584728933,2760.0,0.0,3264.575221525408,10,0,0,0,0,0,0,0,0,2,40.0,1,,1,125778,2,1,2,0,1,,534.0,,43,2.0,1.0,8.0,6.0,3.0999999999999996,2,2,1267.00594023684,960.0,45127.830581740185,1,1,0,1,250.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06115959850985531,14557.364703787158,3,2,3_0,3_1_0,3_3_0,3_1_0 -26490,2,31.0,0.0,8,111,0.0,0.0,0.0,56,53,0.0,0.0,0.0,3313.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,2000.0,6,120175,2,2,2,0,1,,183.0,763.0,43,2.0,0.0,6.0,6.0,2.6999999999999997,3,2,266.289380148377,0.0,35961.27783411395,1,1,2,3,140.0,7,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09212687088825271,13318.991790412576,3,2,3_0,3_1_0,3_2_0,3_0_0 -26491,2,45.0,0.0,7,111,390.0,690.0,0.0,47,43,0.0,0.0,539.0479487546129,1080.0,0.0,1251.4205015847397,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,112236,2,1,0,0,1,,450.0,724.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1652.52268175861,390.0,71296.53625122561,1,1,2,3,64.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01514800096591557,33950.73154820267,9,5,9,9_0,9_3,9_0_0 -26492,2,48.0,0.0,6,111,0.0,1830.0,0.0,21,56,0.0,0.0,0.0,2269.0,0.0,3318.9848085508315,44,0,0,0,0,0,0,0,0,0,,1,,4,123220,2,1,3,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,282.318684893387,0.0,24789.701595413713,1,1,0,1,200.0,7,5,7,0,1,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09152994404820841,16526.46773027581,4,2,4_0,4_1_0,4_2_0,4_0_0 -26493,1,27.0,180.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,490.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,100246,2,2,0,0,2,,0.0,255.0,31,0.0,0.0,2.0,2.0,1.3,2,2,2177.03391879254,0.0,5904.333333333333,0,6,3,4,35.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08298989442782138,4541.794871794871,1,1,1_1,1_0_1,1_3_1,1_0_1 -26494,2,49.0,0.0,2,111,432.0,432.0,0.0,0,55,0.0,0.0,597.099266312802,864.0,0.0,783.498053166098,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,107572,2,1,0,1,1,,0.0,292.0,22,3.0,0.0,4.0,3.0,2.0,2,2,359.452662030021,432.0,13898.680865401842,0,1,2,3,70.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06216417287130938,6949.340432700921,1,1,1_0,1_0_0,1_3_0,1_0_1 -26495,0,58.0,0.0,2,111,0.0,0.0,951.0,0,56,0.0,0.0,485.87858143048635,951.0,0.0,1087.2267316946525,31,0,0,0,0,0,0,0,0,1,2.0,2,,2,118081,2,2,0,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,5,3,422.821732754713,0.0,27001.723673824228,0,1,5,0,72.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.035219973787151596,27001.723673824228,7,4,7,7_0,7_3,7_0_1 -26496,2,63.0,0.0,5,111,277.0,1610.0,0.0,0,74,0.0,0.0,382.8622610385328,1887.0,0.0,2919.9811703643927,70,0,0,0,0,0,0,0,0,0,,2,,3,101615,1,3,0,0,2,,0.0,947.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2279.41255630695,277.0,33768.11347432512,0,5,2,3,83.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05588111996350466,33768.11347432512,9,5,9,9_0,9_3,9_0_0 -26497,2,65.0,0.0,6,111,302.0,1080.0,0.0,0,74,0.0,0.0,417.416616727931,1382.0,0.0,1958.7451329152448,42,0,0,0,0,0,0,0,0,0,,2,,4,111670,2,1,0,0,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,1743.92127109801,302.0,51213.0203902647,0,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02698532501048718,51213.0203902647,10,5,10,10_0,10_3,10_0_0 -26499,1,34.0,385.0,2,111,0.0,0.0,960.0,0,56,0.0,0.0,490.47680144402403,960.0,0.0,1097.5159436665263,31,2,2,2,2,2,2,2,1,0,,2,,2,104666,2,3,0,0,1,,600.0,385.0,32,1.0,0.0,4.0,5.0,2.4,2,2,333.666543264965,0.0,18905.746432781263,0,4,2,3,60.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.05077821197979394,7877.394346992193,1,1,1_1,1_0_1,1_3_1,1_0_1 -26500,0,64.0,0.0,2,111,0.0,0.0,0.0,72,72,0.0,0.0,0.0,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120520,2,2,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,2119.96152268702,0.0,30933.819569607294,5,5,5,0,110.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022628954643795593,20622.546379738196,5,3,5,5_0,5_3,5_0_1 -26501,1,39.0,483.0,2,111,870.0,1560.0,0.0,85,62,0.0,0.0,1202.4915779910596,2430.0,0.0,2829.2985253220204,71,2,2,2,2,2,1,2,2,1,20.0,2,,2,120867,1,3,0,0,2,,0.0,520.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,3,2,2143.37880509884,870.0,22781.496047452056,6,1,2,3,145.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.10666551463251149,7855.688292224848,1,1,1_1,1_0_1,1_3_1,1_0_1 -26502,1,72.0,206.0,2,111,302.0,216.0,0.0,0,77,0.0,0.0,417.416616727931,518.0,0.0,391.749026583049,50,2,1,2,2,1,2,2,2,0,,2,,2,114043,2,1,0,1,1,,0.0,430.0,11,0.0,1.0,3.0,1.0,1.0,2,2,335.367958527411,302.0,9856.92775560265,0,5,2,3,50.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05255187141912147,9856.92775560265,2,1,2_1,2_0_1,2_3_1,2_0_1 -26503,2,50.0,0.0,1,111,390.0,900.0,0.0,0,42,0.0,0.0,539.0479487546129,1290.0,0.0,1632.287610762704,70,0,0,0,0,0,0,0,0,0,,1,,1,110000,2,2,2,0,1,,300.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1407.00758611605,390.0,26594.98680682749,0,1,1,2,80.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04850538221244125,26594.98680682749,7,4,7,7_1,7_3,7_1_0 -26504,2,56.0,0.0,2,111,467.0,520.0,0.0,68,63,0.0,0.0,645.4753642779596,987.0,0.0,943.0995084406734,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,108960,1,2,0,1,1,480.0,0.0,353.0,42,1.0,4.0,4.0,2.0,1.5,2,2,379.734848428035,467.0,30750.508296975844,5,1,2,3,75.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03209703041224416,20500.338864650563,5,3,5,5_0,5_3,5_0_1 -26505,2,40.0,0.0,2,111,610.0,700.0,0.0,0,22,0.0,93.1655254337512,843.1262788213177,1400.0,0.0,1269.5570305932142,50,2,2,2,1,2,2,2,2,0,,1,,2,116870,2,2,3,0,2,,250.0,942.0,12,1.0,0.0,3.0,1.0,1.0,4,2,1561.08778006224,610.0,24179.8146091619,0,1,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.05789953407953469,24179.8146091619,7,4,7,7_1,7_3,7_0_1 -26506,2,48.0,0.0,2,111,468.0,588.0,0.0,68,63,0.0,0.0,646.8575385055356,1056.0,0.0,1066.4279056983,12,0,0,0,0,0,0,0,0,2,5.0,2,,2,124442,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,428.206781688317,468.0,36730.37201514987,1,1,1,2,72.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028750049130034417,18365.186007574936,4,2,4_0,4_0_0,4_3_0,4_0_1 -26508,1,83.0,70.0,5,111,0.0,0.0,1200.0,0,78,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,12,2,1,2,2,2,2,2,1,0,,2,,3,124526,2,1,0,1,1,466.0,0.0,300.0,11,0.0,2.0,2.0,1.0,1.0,4,3,376.766393464682,0.0,16331.787097054945,0,5,2,3,50.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.07347634357885989,16331.787097054945,4,2,4_1,4_0_1,4_3_1,4_0_0 -26509,2,62.0,0.0,1,111,272.0,387.0,0.0,74,47,0.0,745.3242034700096,375.9513899006531,1379.0,0.0,701.8836726279627,31,0,0,0,0,0,0,0,0,0,,1,,1,133104,2,1,1,0,1,,610.0,,42,1.0,0.0,6.0,3.0,2.0,3,3,1396.08729252676,272.0,83016.51059141282,5,1,0,1,145.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01661115349435854,41508.25529570641,9,5,9,9_1,9_3,9_1_0 -26510,1,24.0,101.0,5,111,447.0,937.0,0.0,0,48,0.0,0.0,617.831879726441,1384.0,0.0,1699.3927680940596,50,0,0,0,0,0,0,0,0,0,,2,,3,126548,2,1,0,1,1,504.0,100.0,387.0,22,2.0,2.0,4.0,4.0,2.5,1,1,343.245856875172,447.0,48267.92110752121,0,1,2,3,83.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.028673287936246798,19307.168443008482,5,3,5,5_0,5_3,5_0_0 -26511,2,42.0,0.0,9,111,0.0,0.0,1300.0,52,63,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,71,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,106988,1,3,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,327.596309333024,0.0,39969.54101171592,1,1,1,2,79.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03252476678726289,19033.11476748377,5,3,5,5_0,5_3,5_0_0 -26512,2,44.0,0.0,6,111,0.0,0.0,0.0,21,43,0.0,0.0,0.0,923.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,1,,4,110617,2,1,2,0,1,,189.0,1245.0,43,2.0,1.0,5.0,2.0,1.5,1,1,1514.69359120737,0.0,23038.29052833377,1,1,2,3,140.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040063736450620904,15358.860352222515,3,2,3_0,3_1_0,3_3_0,3_0_0 -26513,2,63.0,0.0,9,111,800.0,0.0,0.0,0,75,0.0,0.0,1105.7393820607444,850.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100376,2,1,2,0,1,,200.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,292.188212729095,800.0,27481.259370587602,0,5,1,2,70.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030930169121351492,27481.259370587602,7,4,7,7_1,7_2,7_0_0 -26514,2,41.0,0.0,7,111,490.0,800.0,0.0,56,46,0.0,0.0,677.265371512206,1290.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,5,114185,2,1,1,0,2,,420.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1143.33249242559,490.0,55823.3313089117,1,1,1,2,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02310861730665047,24271.013612570307,7,4,7,7_1,7_3,7_0_0 -26515,2,52.0,0.0,5,111,310.0,900.0,0.0,37,43,0.0,0.0,428.47401054853844,1210.0,0.0,1632.287610762704,70,2,2,2,1,2,2,2,2,2,20.0,2,,3,111889,1,2,0,0,2,,0.0,725.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1984.02469893881,310.0,59588.261400330855,1,1,2,3,71.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.02030601282139911,33104.58966685047,8,4,8,8_0,8_3,8_0_0 -26516,2,25.0,0.0,6,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,759.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,105005,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,485.364088679856,0.0,14170.001442643901,0,4,2,3,40.0,8,6,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0535638618720128,14170.001442643901,3,2,3_0,3_0_0,3_2_0,3_0_0 -26517,0,54.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,883.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,130685,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2064.9239865293,0.0,19505.413776834586,0,1,5,0,60.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.045269483134404785,19505.413776834586,5,3,5,5_0,5_3,5_0_0 -26518,2,53.0,0.0,6,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,414.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,126264,1,2,0,0,2,,0.0,830.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1766.60585419193,0.0,127694.12553662735,1,1,2,3,72.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.003242122519420438,85129.41702441823,10,5,10,10_0,10_3,10_0_0 -26519,2,82.0,0.0,2,111,400.0,0.0,0.0,0,77,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,124056,2,1,0,1,1,457.0,0.0,336.0,11,0.0,4.0,4.0,1.0,1.0,1,1,379.942311695193,400.0,26877.83069766233,0,5,2,3,75.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.014882153418534239,26877.83069766233,7,4,7,7_0,7_2,7_0_1 -26520,2,50.0,0.0,1,111,320.0,790.0,0.0,0,52,0.0,0.0,442.2957528242978,1110.0,0.0,1432.7857916694845,50,0,0,0,0,0,0,0,0,3,20.0,1,,1,132921,2,1,1,0,1,,260.0,517.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1520.5835733671,320.0,20147.592508878482,0,1,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055093431113958355,20147.592508878482,5,3,5,5_1,5_3,5_1_0 -26521,2,43.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,719.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,109941,2,1,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,376.346677367694,0.0,23670.294239071543,0,1,1,2,64.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.030375625783864463,15780.196159381028,3,2,3_0,3_0_0,3_2_0,3_0_1 -26522,1,34.0,147.0,2,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114783,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1942.74928729282,0.0,33870.91907645906,1,1,2,3,63.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03838100752641002,16129.009084028123,4,2,4_1,4_0_1,4_3_1,4_0_1 -26523,2,35.0,0.0,2,111,300.0,1000.0,0.0,0,47,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,119909,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,377.166711341395,300.0,23496.699004736103,0,1,1,2,69.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.055326920591610165,23496.699004736103,6,3,6,6_0,6_2,6_0_1 -26524,2,38.0,0.0,2,111,0.0,0.0,0.0,85,33,0.0,0.0,0.0,1379.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,113903,2,1,1,0,1,,1115.0,1450.0,42,1.0,0.0,6.0,5.0,2.4,2,2,1336.17219996542,0.0,92432.11412407673,6,1,2,3,132.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014919057224514979,38513.38088503198,9,5,9,9_1,9_3,9_0_1 -26525,2,54.0,0.0,2,111,120.0,360.0,0.0,0,54,0.0,0.0,165.86090730911167,480.0,0.0,652.9150443050816,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,101135,2,1,0,1,1,,0.0,409.0,22,2.0,0.0,3.0,2.0,1.5,1,1,327.381627776665,120.0,39505.750497853754,0,1,2,3,60.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01215012989124399,26337.16699856917,7,4,7,7_0,7_2,7_0_1 -26526,2,63.0,0.0,1,111,920.0,0.0,0.0,21,78,0.0,0.0,1271.600289369856,920.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107875,2,1,2,0,1,,350.0,660.0,42,1.0,2.0,5.0,2.0,1.5,1,1,1350.3414517662,920.0,42068.92517400762,1,5,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021868873430795993,28045.950116005082,8,4,8,8_1,8_3,8_1_0 -26527,2,58.0,0.0,2,111,350.0,1500.0,0.0,0,52,0.0,0.0,483.76097965157567,1850.0,0.0,2720.4793512711735,10,2,2,2,2,1,2,2,2,1,5.0,2,,2,100746,1,2,0,0,1,,0.0,370.0,32,2.0,0.0,4.0,3.0,2.0,1,1,1795.76188783266,350.0,36927.0084308889,0,1,2,3,92.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.05009883222634689,18463.50421544445,4,2,4_0,4_0_0,4_3_0,4_0_1 -26529,2,50.0,0.0,1,111,860.0,240.0,0.0,0,56,0.0,414.0690019277831,1188.6698357153002,1500.0,0.0,435.27669620338776,70,0,0,0,0,0,0,0,0,0,,1,,1,126816,2,1,1,0,2,,180.0,,22,1.0,3.0,3.0,2.0,1.5,1,1,1189.32303236599,860.0,15949.987454940067,0,1,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09404396111518047,10633.324969960044,2,1,2_0,2_1_0,2_3_0,2_1_0 -26530,2,67.0,0.0,5,111,0.0,0.0,300.0,0,75,0.0,0.0,153.2740004512575,300.0,0.0,342.97373239578945,71,0,0,0,0,0,0,0,0,0,,2,,3,118013,2,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,413.787766593464,0.0,16786.649724115432,0,5,0,1,64.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01787134448686475,16786.649724115432,4,2,4_0,4_0_0,4_2_0,4_0_0 -26531,2,38.0,0.0,2,111,250.0,400.0,0.0,0,52,0.0,0.0,345.54355689398267,650.0,0.0,725.4611603389795,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,115788,2,1,0,0,1,,0.0,380.0,12,1.0,0.0,3.0,1.0,1.0,1,1,364.025082282164,250.0,18602.057064939967,0,1,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03494237211136615,18602.057064939967,4,2,4_0,4_0_0,4_2_0,4_0_1 -26532,2,31.0,0.0,2,111,0.0,0.0,0.0,42,37,0.0,0.0,0.0,2811.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,2,126789,2,1,2,0,2,,313.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1528.84994422362,0.0,29656.76534409978,4,1,0,1,100.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09478444352864157,16475.9807467221,4,2,4_0,4_1_0,4_3_0,4_0_1 -26533,2,52.0,0.0,2,111,700.0,90.0,0.0,0,38,0.0,0.0,967.5219593031513,790.0,0.0,163.2287610762704,71,2,2,1,2,1,2,2,2,2,15.0,2,,2,132555,2,1,0,1,1,,0.0,,12,1.0,3.0,7.0,1.0,1.0,3,3,420.168300727513,700.0,31963.373997175164,0,1,1,2,110.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.02471578876716263,31963.373997175164,8,4,8,8_0,8_2,8_0_1 -26534,2,84.0,0.0,5,111,309.0,1754.0,0.0,0,77,0.0,0.0,427.09183632096256,2063.0,0.0,3181.1471880864256,50,0,0,0,0,0,0,0,0,0,,1,,3,131426,1,3,1,0,2,,324.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1154.72749340279,309.0,18486.171683999637,0,5,0,1,41.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11159692960038835,18486.171683999637,4,2,4_0,4_1_0,4_3_0,4_0_0 -26535,1,70.0,270.0,2,111,504.0,960.0,0.0,0,86,0.0,0.0,696.615810698269,1464.0,0.0,1741.106784813551,71,0,0,0,0,0,0,0,0,0,,2,,2,104499,2,1,0,0,1,,0.0,379.0,11,0.0,1.0,3.0,1.0,1.0,4,4,364.025082282164,504.0,10188.876073761126,0,7,2,3,75.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1436861131101753,10188.876073761126,2,1,2_1,2_0_1,2_2_1,2_0_1 -26536,2,30.0,0.0,9,111,330.0,450.0,0.0,34,38,0.0,0.0,456.1174951000571,780.0,0.0,816.143805381352,31,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,100224,2,1,0,0,1,,345.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1709.67594624386,330.0,65296.360240287446,1,1,0,1,77.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011945535664310197,43530.9068268583,10,5,10,10_0,10_3,10_0_0 -26537,2,53.0,0.0,2,111,300.0,0.0,0.0,0,85,0.0,0.0,414.65226827277917,300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,112765,2,1,1,0,1,,100.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,308.410350294285,300.0,18027.333198160257,0,7,0,1,80.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.016641396522843206,18027.333198160257,4,2,4_0,4_1_0,4_2_0,4_0_1 -26538,2,37.0,0.0,5,111,440.0,0.0,0.0,0,46,0.0,0.0,608.1566601334094,440.0,0.0,0.0,70,2,2,2,2,2,2,2,1,1,10.0,2,,3,120105,1,2,0,1,1,,0.0,392.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2380.6903520783,440.0,23818.771216497324,0,1,2,3,39.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.01847282531918556,23818.771216497324,6,3,6,6_0,6_3,6_0_0 -26539,2,82.0,0.0,8,111,227.0,0.0,0.0,0,86,0.0,0.0,313.7535496597362,227.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,107016,2,1,0,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1758.40627959686,227.0,22004.395753205485,0,5,0,1,48.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010316120585448561,22004.395753205485,6,3,6,6_0,6_3,6_0_0 -26540,2,35.0,0.0,1,111,360.0,960.0,0.0,0,46,0.0,0.0,497.582721927335,1320.0,0.0,1741.106784813551,41,0,0,0,0,0,0,0,0,2,20.0,2,,1,114106,2,2,0,0,1,,0.0,700.0,12,1.0,0.0,3.0,1.0,1.0,3,3,2083.07637350528,360.0,25488.756379831564,0,1,2,3,82.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05178754036993636,25488.756379831564,7,4,7,7_0,7_3,7_1_0 -26541,2,28.0,0.0,2,111,563.0,0.0,0.0,0,63,0.0,0.0,778.1640901252489,563.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105072,2,3,0,0,1,,0.0,524.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1884.41711915557,563.0,16174.180814925163,0,4,2,3,47.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034808563502670656,16174.180814925163,4,2,4_0,4_0_0,4_3_0,4_0_1 -26542,1,74.0,69.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,678.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,122002,2,1,0,1,2,,0.0,260.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2947.49655915313,0.0,9437.927192867788,0,5,3,4,20.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.0718378078305544,9437.927192867788,1,1,1_1,1_0_1,1_3_1,1_1_0 -26543,1,50.0,214.0,1,111,220.0,700.0,0.0,0,62,0.0,0.0,304.0783300667047,920.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,3,40.0,2,,1,110526,2,3,0,0,1,,0.0,296.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1992.10851100632,220.0,15390.702353091185,0,1,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05977634931099946,15390.702353091185,3,2,3_1,3_0_1,3_3_1,3_1_0 -26544,2,35.0,0.0,1,111,600.0,700.0,0.0,34,34,0.0,0.0,829.3045365455583,1300.0,0.0,1269.5570305932142,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,103625,2,1,1,0,1,,1000.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1522.4358450993,600.0,131228.50467781746,1,1,1,2,110.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.009906384311790065,72904.7248210097,10,5,10,10_1,10_3,10_1_0 -26545,2,58.0,0.0,1,111,1200.0,2000.0,0.0,0,75,0.0,0.0,1658.6090730911167,3200.0,0.0,3627.3058016948976,20,0,0,0,0,0,0,0,0,0,,1,,1,127827,2,1,3,0,2,,800.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1430.13667734998,1200.0,32311.5179943005,0,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09903589180070262,32311.5179943005,8,4,8,8_1,8_3,8_1_0 -26546,1,46.0,270.0,2,111,630.0,0.0,0.0,0,56,0.0,0.0,870.7697633728362,630.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,110608,1,2,0,0,1,,0.0,410.0,12,1.0,1.0,1.0,1.0,1.0,2,2,2617.14697812527,630.0,10383.953856390162,0,4,2,3,23.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0606705315444276,10383.953856390162,2,1,2_1,2_0_1,2_3_1,2_0_1 -26547,2,34.0,0.0,1,111,1000.0,0.0,0.0,0,35,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,60,2,2,2,1,1,2,2,2,0,,2,,1,107467,1,3,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,2,564.342932380979,1000.0,23631.543206180744,0,4,2,3,45.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.04485530169366006,23631.543206180744,6,3,6,6_0,6_3,6_1_0 -26550,2,71.0,0.0,1,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,190.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,106510,1,1,0,0,2,,100.0,,11,0.0,0.0,2.0,1.0,1.0,3,2,1827.27684509493,0.0,54608.017155740876,0,7,0,1,40.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.003479342592830722,54608.017155740876,10,5,10,10_0,10_3,10_1_0 -26552,2,26.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,299.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,20.0,2,,1,113681,2,2,0,0,2,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2306.1968075163,0.0,22920.54339264222,0,1,3,4,43.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.013045065942720308,22920.54339264222,6,3,6,6_0,6_3,6_1_0 -26553,2,69.0,0.0,2,111,250.0,1000.0,0.0,75,74,0.0,0.0,345.54355689398267,1250.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,133103,2,3,0,0,1,,500.0,600.0,41,0.0,1.0,3.0,2.0,1.5,1,1,1956.72512058815,250.0,30413.66263842608,5,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.041099949547697356,20275.775092284053,5,3,5,5_0,5_3,5_0_1 -26554,2,52.0,0.0,1,111,710.0,3190.0,0.0,34,34,0.0,0.0,981.3437015789107,3900.0,0.0,5785.552753703362,10,0,0,0,0,0,0,0,0,1,5.0,1,,1,118802,2,1,1,0,1,,1400.0,,43,2.0,1.0,9.0,4.0,2.5,1,1,1225.1562582579,710.0,198434.18456174328,1,1,1,2,273.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019653871678478388,79373.67382469731,10,5,10,10_1,10_3,10_1_0 -26555,0,43.0,0.0,1,111,745.0,1680.0,0.0,85,85,0.0,0.0,1029.7197995440683,2425.0,0.0,3046.936873423714,12,2,2,2,2,2,2,1,2,0,,1,,1,112561,1,3,3,0,2,,669.0,,41,0.0,0.0,4.0,10.0,4.499999999999999,1,1,1541.31132977762,745.0,31039.405039954174,6,7,5,0,120.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.07812649749176959,6897.645564434262,1,1,1_0,1_1_0,1_3_0,1_1_0 -26556,2,33.0,0.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,542.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,3,123868,1,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1660.51546276487,0.0,29153.8233765273,0,1,1,2,50.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018591043548558436,29153.8233765273,8,4,8,8_0,8_3,8_0_0 -26558,2,74.0,0.0,2,112,800.0,0.0,0.0,0,78,0.0,414.0690019277831,1105.7393820607444,1290.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,102962,2,1,1,0,1,,300.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,830.935717204448,800.0,19968.383257596255,0,5,0,1,95.0,9,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06460212543793528,19968.383257596255,5,3,5,5_1,5_0,5_0_1 -26559,2,46.0,0.0,8,112,750.0,0.0,0.0,56,64,0.0,0.0,1036.630670681948,750.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,124652,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,717.829157600651,750.0,46841.78105712256,1,1,1,2,100.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0160113467736291,18736.71242284902,5,3,5,5_1,5_0,5_0_0 -26560,2,74.0,0.0,1,112,2000.0,0.0,0.0,77,74,0.0,0.0,2764.3484551518613,5000.0,5160.981012570575,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,132265,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,853.814393804551,2000.0,53904.22976858683,5,5,0,1,214.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09275709942364846,35936.15317905789,9,5,9,9_1,9_0,9_1_0 -26561,2,67.0,0.0,1,112,533.0,0.0,0.0,0,75,0.0,0.0,736.698863297971,653.0,206.439240502823,0.0,41,1,2,2,1,2,2,2,2,0,,1,,1,109625,2,2,2,0,2,,140.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,848.420124001307,533.0,18108.56456231423,0,5,0,1,70.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.036060285052022266,18108.56456231423,4,2,4_0,4_1_0,4_0_0,4_1_0 -26562,2,70.0,0.0,6,112,362.0,1113.0,0.0,0,86,0.0,0.0,500.3470703824869,1475.0,0.0,2018.5956786432107,41,0,0,0,0,0,0,0,0,0,,1,,4,115243,2,1,2,0,1,,200.0,,11,0.0,12.0,5.0,1.0,1.0,1,1,1009.56208912248,362.0,12922.552083204042,0,5,0,1,100.0,9,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11414154034767765,12922.552083204042,2,1,2_0,2_1_0,2_0_0,2_0_0 -26563,2,44.0,0.0,9,112,1176.0,0.0,0.0,54,21,0.0,0.0,1625.4368916292942,1206.0,51.60981012570575,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,105536,2,1,1,0,1,,204.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,839.041342287583,1176.0,74604.4715487262,1,1,1,2,95.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016165250888645847,35525.93883272676,9,5,9,9_1,9_0,9_0_0 -26564,2,42.0,0.0,7,112,700.0,0.0,0.0,63,69,0.0,0.0,967.5219593031513,774.0,127.30419831007418,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,5,115551,1,1,1,0,1,,200.0,,43,5.0,0.0,4.0,5.0,3.0,1,1,863.891060372285,700.0,42895.62197844732,4,1,1,2,72.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018043799443889452,14298.54065948244,3,2,3_0,3_1_0,3_0_0,3_0_0 -26565,1,52.0,147.0,2,112,800.0,0.0,0.0,0,22,0.0,621.1035028916747,1105.7393820607444,1700.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104350,2,1,2,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,858.020164809814,800.0,4345.812361178163,0,1,1,2,50.0,9,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.3911811782732204,4345.812361178163,1,1,1_1,1_1_1,1_0_1,1_0_1 -26566,2,41.0,0.0,1,112,350.0,0.0,0.0,43,43,0.0,517.5862524097289,483.76097965157567,2250.0,2408.4578058662682,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,,1,116682,2,1,1,0,1,,400.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,853.910221002696,350.0,55180.85742558658,1,1,0,1,150.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04077500975830627,36787.238283724386,9,5,9,9_1,9_0,9_1_0 -26567,2,59.0,0.0,6,112,1400.0,0.0,0.0,55,47,0.0,0.0,1935.0439186063027,1428.0,48.169156117325365,0.0,30,0,0,0,0,0,0,0,0,2,40.0,1,,4,101199,2,1,2,0,1,,216.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,946.794365744705,1400.0,68278.88050537407,1,1,0,1,110.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020914226909265237,34139.44025268703,9,5,9,9_1,9_0,9_0_0 -26568,2,27.0,0.0,9,112,1100.0,0.0,0.0,90,43,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2010.0,6,127994,2,1,1,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,922.666990881883,1100.0,42887.19679716574,1,1,1,2,100.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02564868030900763,23826.220442869857,6,3,6,6_1,6_0,6_0_0 -26569,2,67.0,0.0,1,112,730.0,0.0,0.0,0,75,0.0,0.0,1008.9871861304293,850.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126024,1,1,1,0,2,,220.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,916.209820214524,730.0,14906.821428108937,0,5,0,1,180.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.057020874912823725,14906.821428108937,3,2,3_0,3_1_0,3_0_0,3_1_0 -26570,1,47.0,171.0,6,112,1480.0,0.0,0.0,56,63,0.0,0.0,2045.6178568123773,1555.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,125675,2,2,3,0,1,,250.0,,43,4.0,0.0,4.0,5.0,2.8,1,1,829.30361026135,1480.0,35639.27181977024,1,1,1,2,99.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.043631643425929706,12728.311364203659,2,1,2_1,2_1_1,2_0_1,2_0_0 -26571,2,41.0,0.0,6,112,2100.0,0.0,0.0,62,55,0.0,0.0,2902.5658779094542,2205.0,180.63433543997013,0.0,31,1,2,2,1,2,2,2,2,2,12.0,1,,4,128755,2,3,3,0,1,,330.0,,43,2.0,1.0,6.0,4.0,2.3,2,2,809.110806563344,2100.0,28865.949504151202,4,1,0,1,180.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.07638757906379971,12550.412827891827,2,1,2_0,2_1_0,2_0_0,2_0_0 -26572,2,55.0,0.0,1,112,1409.0,2376.0,0.0,0,42,0.0,124.22070057833493,1947.4834866544861,3905.0,0.0,4309.239292413538,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,133082,2,1,1,0,1,,482.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,961.484586295782,1409.0,48865.539556918535,0,1,1,2,200.0,9,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07991316652610496,48865.539556918535,10,5,10,10_1,10_0,10_1_0 -26573,0,54.0,0.0,1,112,260.0,0.0,0.0,0,69,0.0,45.54759021205614,359.36529916974195,336.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114732,2,1,3,0,2,,70.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1119.40682351663,260.0,19267.9337687147,0,1,5,0,84.0,9,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017438299510119885,19267.9337687147,5,3,5,5_1,5_1,5_1_0 -26574,2,69.0,0.0,1,112,1200.0,0.0,0.0,0,31,3733.962192545002,0.0,1658.6090730911167,3700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,127976,2,1,2,0,1,,600.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,1093.95631996222,1200.0,50892.037519836194,0,1,0,1,300.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07270292525737156,50892.037519836194,10,5,10,10_1,10_1,10_1_0 -26575,2,72.0,0.0,1,112,200.0,0.0,0.0,77,75,1792.3018524216009,0.0,276.4348455151861,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129467,2,2,1,0,1,,220.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1040.07554363437,200.0,28028.5056969434,5,5,0,1,90.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.049949148739409054,18685.670464628933,5,3,5,5_1,5_1,5_1_0 -26576,2,56.0,0.0,1,112,1300.0,0.0,0.0,0,42,2987.1697540360015,0.0,1796.8264958487098,3300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,120963,2,1,3,0,2,,160.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,1029.16695429978,1300.0,40396.858733598514,0,1,1,2,210.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0816895200134795,40396.858733598514,9,5,9,9_1,9_1,9_1_0 -26577,2,69.0,0.0,5,112,1100.0,0.0,0.0,77,74,0.0,0.0,1520.3916503335236,1132.0,55.050464134086134,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,115678,2,1,3,0,2,,150.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,929.654366941563,1100.0,40578.011627895496,5,5,0,1,110.0,9,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027896881946324906,27052.00775193033,7,4,7,7_1,7_1,7_0_0 -26578,1,66.0,56.0,9,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,807.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,129849,2,1,1,0,1,,141.0,407.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1156.32206184675,0.0,12112.310269677357,0,5,2,3,90.0,9,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06662643063398808,12112.310269677357,2,1,2_1,2_1_1,2_1_1,2_0_0 -26579,2,75.0,0.0,1,112,504.0,0.0,0.0,74,72,4480.754631054002,0.0,696.615810698269,3718.0,368.14997889670104,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,113637,2,1,3,0,1,,50.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,933.208254529852,504.0,43338.6822355638,5,5,0,1,120.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08578941048071376,28892.4548237092,8,4,8,8_1,8_1,8_1_0 -26580,2,49.0,0.0,8,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1209.0,154.82943037711726,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,120785,2,1,1,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1110.64233968217,0.0,19926.54178271722,0,1,1,2,70.0,9,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06067284595506659,19926.54178271722,5,3,5,5_1,5_1,5_0_0 -26581,2,67.0,0.0,1,112,1043.0,0.0,0.0,71,74,0.0,0.0,1441.6077193616957,3661.0,4503.816096969922,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113402,2,1,1,0,1,,264.0,,41,0.0,2.0,5.0,2.0,1.5,4,4,1015.30509108558,1043.0,20976.540063812696,5,5,0,1,100.0,9,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1745283058532474,13984.360042541797,3,2,3_0,3_1_0,3_1_0,3_1_0 -26582,0,82.0,0.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,64.0,110.10092826817227,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,128171,2,1,1,0,2,,185.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1233.86456902274,0.0,19405.0,0,5,0,1,50.0,9,1,7,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0032981190414841537,19405.0,5,3,5,5_1,5_1,5_1_0 -26583,2,60.0,0.0,1,112,900.0,0.0,0.0,45,33,1493.5848770180007,0.0,1243.9568048183376,2000.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,1,133234,2,1,1,0,1,,200.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1052.5570987091,900.0,106716.92495410159,1,1,0,1,140.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.018741169695998924,71144.61663606773,10,5,10,10_1,10_1,10_1_0 -26584,2,55.0,0.0,6,112,572.0,0.0,0.0,52,52,0.0,621.1035028916747,790.6036581734322,1712.0,928.9765822627035,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,113008,1,2,1,0,2,,150.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,1003.49748471331,572.0,31960.58629264918,1,1,0,1,85.0,9,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053565976053253875,15980.29314632459,3,2,3_0,3_1_0,3_1_0,3_0_0 -26585,2,59.0,0.0,1,112,1200.0,0.0,0.0,74,54,0.0,0.0,1658.6090730911167,1296.0,165.1513924022584,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,1,124076,2,1,1,0,1,,400.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,999.46198114728,1200.0,51130.31265610294,5,1,1,2,120.0,9,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02534699931754297,34086.875104068626,9,5,9,9_1,9_1,9_1_0 -26586,2,64.0,0.0,5,112,550.0,0.0,0.0,52,72,746.7924385090004,0.0,760.1958251667618,1314.0,454.1663291062106,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,126531,1,2,3,0,2,,200.0,,42,1.0,4.0,5.0,2.0,1.5,3,3,906.005206793253,550.0,28203.75452231134,1,5,0,1,140.0,9,1,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04658954179169744,18802.503014874226,5,3,5,5_1,5_1,5_0_0 -26587,2,41.0,0.0,9,112,1600.0,0.0,0.0,21,21,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2008.0,6,118559,2,1,1,0,1,,837.0,,43,2.0,1.0,5.0,4.0,2.3,1,1,922.394554193637,1600.0,39808.50582207595,1,1,1,2,100.0,9,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04019241533834998,17308.04600959824,4,2,4_0,4_1_0,4_1_0,4_0_0 -26588,2,51.0,0.0,1,112,281.0,0.0,0.0,0,52,0.0,25.879312620486445,388.3909579488365,2020.0,2948.6404851819884,0.0,10,2,2,2,1,2,2,2,2,2,5.0,1,,1,121967,1,3,3,0,1,,200.0,312.0,32,2.0,1.0,3.0,2.0,1.5,2,2,1113.89678754383,281.0,20185.944208637342,0,1,2,3,84.0,9,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.10006963157738563,13457.29613909156,3,2,3_0,3_1_0,3_1_0,3_1_0 -26589,2,52.0,0.0,1,112,660.0,0.0,0.0,85,35,1493.5848770180007,0.0,912.2349902001142,2146.0,836.0789240364331,0.0,60,2,2,1,2,1,2,2,1,0,,1,,1,100105,2,3,2,0,1,,460.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1024.08053675613,660.0,26025.9617211928,6,1,0,1,60.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.08245612680865982,17350.64114746187,4,2,4_0,4_1_0,4_1_0,4_1_0 -26590,2,56.0,0.0,6,120,550.0,0.0,0.0,54,22,1194.8679016144006,0.0,760.1958251667618,1514.0,282.13362868719145,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,108120,2,1,3,0,1,,165.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,620.743216873884,550.0,99980.84011192052,1,1,0,1,170.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015142901362953128,66653.89340794702,10,5,10,10_1,10_0,10_0_0 -26591,2,56.0,0.0,6,120,1700.0,0.0,0.0,47,62,0.0,0.0,2349.696186879082,1762.0,106.66027425979189,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,103117,2,2,3,0,1,,200.0,,43,3.0,1.0,7.0,3.0,2.0,3,2,644.009273650202,1700.0,47584.0,4,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03702925353059852,23792.0,6,3,6,6_1,6_0,6_0_0 -26592,2,48.0,0.0,7,120,740.0,0.0,0.0,21,52,0.0,0.0,1022.8089284061887,815.0,129.02452531426437,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,119512,2,2,3,0,1,,200.0,,43,3.0,1.0,4.0,3.0,2.0,5,3,664.072830829668,740.0,41108.164810007576,1,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019825745171713243,20554.082405003788,5,3,5,5_1,5_0,5_0_0 -26593,1,25.0,192.0,2,120,620.0,0.0,0.0,0,63,2389.735803228801,0.0,856.9480210970769,2284.0,110.10092826817227,0.0,70,2,2,2,1,1,2,2,2,2,20.0,1,,2,125180,2,1,3,0,2,,350.0,552.0,12,1.0,0.0,5.0,1.0,1.0,1,1,729.968574574213,620.0,10660.658721386371,0,1,2,3,147.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,1,0.21424567277611678,10660.658721386371,2,1,2_1,2_1_1,2_0_1,2_0_1 -26594,2,35.0,0.0,8,120,1300.0,0.0,0.0,63,43,0.0,0.0,1796.8264958487098,1370.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,125177,2,1,1,0,1,,120.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,549.484696133852,1300.0,47944.37177937275,1,1,1,2,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02857478258979752,22830.653228272735,6,3,6,6_1,6_0,6_0_0 -26595,2,42.0,0.0,9,120,1600.0,0.0,0.0,55,11,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,126224,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,518.137554138227,1600.0,51307.89291584836,1,1,0,1,117.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03118428586853506,24432.32995992779,7,4,7,7_1,7_0,7_0_0 -26596,2,61.0,0.0,8,120,800.0,0.0,0.0,0,34,0.0,0.0,1105.7393820607444,847.0,80.85536919693901,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,116693,2,1,1,0,1,,188.0,,12,1.0,4.0,4.0,1.0,1.0,2,2,671.800369677675,800.0,31925.668221113992,0,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026530376565143836,31925.668221113992,8,4,8,8_1,8_0,8_0_0 -26597,2,53.0,0.0,6,120,1423.0,0.0,0.0,55,64,0.0,0.0,1966.8339258405492,1474.0,87.73667721369978,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,113677,2,1,2,0,2,,280.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,567.160874632914,1423.0,41933.33677550699,1,1,0,1,169.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03515103050089147,27955.557850337995,7,4,7,7_1,7_0,7_0_0 -26598,2,37.0,0.0,5,120,1000.0,0.0,0.0,54,38,0.0,465.827627168756,1382.1742275759307,2050.0,1032.196202514115,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,3,125122,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,606.513657592396,1000.0,69490.53878384388,1,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02950041884661013,33090.73275421137,8,4,8,8_1,8_0,8_0_0 -26599,2,60.0,0.0,6,120,460.0,0.0,0.0,69,74,0.0,569.3448776507017,635.800144684928,1138.0,220.20185653634454,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,124796,2,1,1,0,1,,90.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,546.677652249024,460.0,36657.87142271231,1,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031043810124090382,24438.580948474875,7,4,7,7_1,7_0,7_0_0 -26600,2,43.0,0.0,9,120,2400.0,0.0,0.0,42,21,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,115306,2,1,1,0,1,,700.0,,43,2.0,1.0,8.0,4.0,2.1,3,2,575.378556131532,2400.0,77262.6961605506,4,1,1,2,170.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031062855935195945,36791.760076452665,9,5,9,9_1,9_0,9_0_0 -26601,2,81.0,0.0,1,120,450.0,0.0,0.0,0,75,0.0,0.0,621.9784024091688,514.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100314,2,1,1,0,1,,75.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,571.120742286033,450.0,15854.647847367847,0,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032419515396889316,15854.647847367847,3,2,3_0,3_1_0,3_0_0,3_1_0 -26602,2,50.0,0.0,1,120,1600.0,0.0,0.0,0,42,0.0,0.0,2211.478764121489,3000.0,2408.4578058662682,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132066,2,1,2,0,1,,455.0,,32,2.0,0.0,7.0,3.0,1.8,5,4,644.089905157398,1600.0,25614.564802765955,0,4,0,1,164.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1171208655349104,14230.31377931442,3,2,3_0,3_1_0,3_0_0,3_1_0 -26603,2,55.0,0.0,6,120,746.0,0.0,0.0,52,63,0.0,0.0,1031.1019737716442,1046.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,130808,2,2,1,0,1,,154.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,602.865473524762,746.0,62185.01946230534,1,1,0,1,127.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016820771450173033,41456.679641536895,9,5,9,9_1,9_0,9_0_0 -26604,2,65.0,0.0,1,120,900.0,0.0,0.0,85,72,0.0,0.0,1243.9568048183376,1900.0,1720.3270041901917,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,119297,2,2,3,0,1,,200.0,,41,0.0,2.0,8.0,2.0,1.5,3,3,616.877309161363,900.0,51400.08929328442,6,5,0,1,230.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036964916328428264,34266.72619552295,9,5,9,9_1,9_0,9_1_0 -26605,2,44.0,0.0,2,120,500.0,0.0,0.0,42,55,0.0,310.55175144583734,691.0871137879653,2324.0,2621.7783543858523,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,116383,2,1,3,0,1,,180.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,668.790006530895,500.0,50448.35536461399,1,1,1,2,170.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046066913048073796,28026.86409145222,7,4,7,7_1,7_0,7_0_1 -26606,2,55.0,0.0,7,120,540.0,0.0,0.0,85,21,0.0,0.0,746.3740828910024,1340.0,1376.2616033521533,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,133467,2,2,2,0,2,,312.0,,42,2.0,0.0,4.0,3.0,2.0,5,4,664.107859152692,540.0,62348.9026133452,6,1,1,2,92.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021491958059149312,31174.4513066726,8,4,8,8_1,8_0,8_0_0 -26607,2,42.0,0.0,9,120,3000.0,0.0,0.0,43,64,0.0,0.0,4146.522682727792,3060.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,122641,2,1,1,0,1,,420.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,574.431097895574,3000.0,51780.93798701356,1,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.059095105630713664,24657.589517625504,7,4,7,7_1,7_0,7_0_0 -26608,1,35.0,399.0,2,120,1200.0,0.0,0.0,67,67,0.0,0.0,1658.6090730911167,1284.0,144.50746835197612,0.0,31,0,0,0,0,0,0,0,0,0,,3,,2,116346,1,3,0,0,2,,330.0,375.0,43,2.0,0.0,4.0,5.0,2.4,2,2,555.537501558653,1200.0,19654.648838746063,4,4,2,3,73.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06532805600010493,8189.437016144193,1,1,1_1,1_0_1,1_0_1,1_0_1 -26609,2,54.0,0.0,1,120,350.0,0.0,0.0,56,69,1792.3018524216009,0.0,483.76097965157567,1640.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,122110,2,2,2,0,2,,342.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,594.263720002249,350.0,36173.50250254965,1,1,1,2,110.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04533705299575031,24115.6683350331,6,3,6,6_1,6_0,6_1_0 -26610,2,65.0,0.0,1,120,850.0,120.0,0.0,86,72,448.0754631054002,465.827627168756,1174.848093439541,1720.0,0.0,217.63834810169388,41,0,0,0,0,0,0,0,0,0,,1,,1,114283,2,2,2,0,1,,56.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,574.508299603713,850.0,31695.79288020324,6,5,0,1,120.0,0,0,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0542658770676877,21130.52858680216,5,3,5,5_1,5_0,5_1_0 -26611,1,44.0,406.0,9,120,800.0,0.0,0.0,0,56,298.71697540360015,0.0,1105.7393820607444,1070.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,124147,2,3,2,0,1,,190.0,624.0,32,1.0,0.0,3.0,3.0,1.8,4,2,684.236889427063,800.0,10178.097915478951,0,1,2,3,61.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.10512769761948679,5654.49884193275,1,1,1_1,1_1_1,1_0_1,1_0_0 -26612,2,71.0,0.0,6,120,1280.0,0.0,0.0,74,74,0.0,0.0,1769.1830112971911,1280.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,131841,2,1,2,0,1,,145.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,583.318684067291,1280.0,62615.7122745466,5,5,0,1,105.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020442153470804202,41743.80818303106,9,5,9,9_1,9_0,9_0_0 -26613,2,61.0,0.0,1,120,1200.0,0.0,0.0,77,77,0.0,414.0690019277831,1658.6090730911167,3800.0,3784.719409218422,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124101,2,1,2,0,1,,300.0,,41,2.0,1.0,8.0,4.0,2.5,2,2,602.755076670637,1200.0,68609.66672517173,5,5,0,1,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055385781353837184,27443.86669006869,7,4,7,7_1,7_0,7_1_0 -26614,2,53.0,0.0,1,120,252.0,0.0,0.0,77,56,0.0,569.3448776507017,348.3079053491345,1270.0,805.1130379610097,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,112553,2,1,1,0,2,,201.0,,42,1.0,3.0,7.0,3.0,1.8,3,2,701.984645940954,252.0,9487.222640849293,7,4,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13386425596588614,5270.679244916274,1,1,1_0,1_1_0,1_0_0,1_1_0 -26615,2,77.0,0.0,7,120,750.0,0.0,0.0,78,74,0.0,414.0690019277831,1036.630670681948,1206.0,96.33831223465073,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,103688,2,1,1,0,1,,150.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,552.084276482331,750.0,44330.777602618764,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02720457580984904,29553.851735079177,8,4,8,8_1,8_0,8_0_0 -26616,2,31.0,0.0,9,120,1530.0,0.0,0.0,55,67,0.0,0.0,2114.7265681911736,1596.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,125577,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,558.161454262472,1530.0,31451.11446853386,1,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05074541958113321,14976.721175492314,3,2,3_0,3_1_0,3_0_0,3_0_0 -26617,2,41.0,0.0,9,120,250.0,0.0,0.0,0,85,0.0,621.1035028916747,345.54355689398267,955.0,180.63433543997013,0.0,50,2,2,2,2,1,2,2,2,0,,1,2010.0,6,128432,1,3,3,0,2,,238.0,,31,3.0,0.0,3.0,7.0,3.3999999999999995,2,2,715.972448237879,250.0,20932.60190352824,0,7,0,1,56.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.04562261320409636,6156.647618684778,1,1,1_0,1_1_0,1_0_0,1_0_0 -26618,2,39.0,0.0,9,120,1400.0,0.0,0.0,52,67,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,31,2,2,2,2,1,2,2,2,4,90.0,1,2005.0,6,126500,2,2,2,0,1,,260.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,679.592406619502,1400.0,35659.33806057682,1,1,1,2,118.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.039260403477533144,19810.74336698712,5,3,5,5_1,5_0,5_0_0 -26619,2,69.0,0.0,7,120,502.0,0.0,0.0,74,75,0.0,258.79312620486445,693.8514622431171,2205.0,2499.6351370883485,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,121939,2,1,2,0,1,,198.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,602.865473524762,502.0,39954.41869723266,5,5,0,1,200.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055187888396252,26636.279131488438,7,4,7,7_1,7_0,7_0_0 -26620,2,32.0,0.0,9,120,1626.0,0.0,0.0,21,63,0.0,0.0,2247.415294038463,1696.0,120.42289029331342,0.0,20,2,2,1,2,1,2,2,2,2,25.0,1,2007.0,6,128318,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,531.665553103161,1626.0,43133.76320347765,1,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03931954631455065,20539.88723975126,5,3,5,5_1,5_0,5_0_0 -26621,2,59.0,0.0,5,120,800.0,0.0,0.0,77,48,0.0,414.0690019277831,1105.7393820607444,1262.0,106.66027425979189,0.0,41,0,0,0,0,0,0,0,0,2,75.0,1,,3,115805,1,1,2,0,2,,190.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,584.212664797155,800.0,38060.92877465994,6,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03315736217241787,25373.952516439957,7,4,7,7_1,7_0,7_0_0 -26622,2,56.0,0.0,1,120,1100.0,0.0,0.0,52,47,0.0,0.0,1520.3916503335236,1278.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122243,2,1,1,0,1,,210.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,584.610746852456,1100.0,27152.394064739718,4,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04706767281562179,18101.59604315981,4,2,4_0,4_1_0,4_0_0,4_1_0 -26623,2,51.0,0.0,2,120,1600.0,0.0,0.0,0,85,0.0,621.1035028916747,2211.478764121489,2850.0,1118.2125527236246,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,128810,2,1,2,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,657.757152757616,1600.0,24256.086264982307,0,7,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11749628397860906,24256.086264982307,7,4,7,7_1,7_0,7_0_1 -26624,1,37.0,284.0,5,120,1452.0,0.0,0.0,0,52,0.0,0.0,2006.9169784402511,1508.0,96.33831223465073,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,3,118313,2,2,2,0,1,,752.0,650.0,32,1.0,0.0,4.0,4.0,2.3,2,2,637.115603512619,1452.0,31953.686916113234,0,1,2,3,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04719330210497754,13892.907354831843,3,2,3_1,3_1_1,3_0_1,3_0_0 -26626,2,69.0,0.0,1,300,4000.0,136.0,0.0,75,74,2240.377315527001,0.0,5528.696910303723,7231.0,0.0,246.65679451525304,20,0,0,0,0,0,0,0,0,0,,1,,1,117889,2,1,2,0,1,,385.0,,41,0.0,4.0,10.0,2.0,1.5,1,1,616.877309161363,4000.0,63977.8057679229,5,5,0,1,400.0,0,0,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11302356986468373,42651.870511948604,9,5,9,9_1,9_0,9_1_0 -26627,2,84.0,0.0,5,300,142.0,0.0,0.0,86,75,0.0,0.0,196.26874031578214,142.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,120660,2,1,2,0,1,,461.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,588.457290157963,142.0,30261.897480186806,6,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.004692369343097895,20174.598320124536,5,3,5,5_1,5_0,5_0_0 -26628,0,46.0,0.0,1,300,0.0,64.0,0.0,11,45,0.0,0.0,0.0,2700.0,0.0,116.07378565423673,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,112466,1,2,3,0,2,,605.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,585.074329345282,0.0,34003.14362769599,1,1,5,0,50.0,0,0,7,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07940442300166671,16191.973156045708,4,2,4_0,4_1_0,4_0_0,4_1_0 -26629,1,47.0,150.0,9,300,1400.0,0.0,0.0,0,56,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2009.0,6,100201,2,1,1,0,1,,240.0,,32,1.0,1.0,7.0,4.0,2.1,2,2,566.374548581386,1400.0,8494.933040203703,0,1,1,2,162.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.16480412422019855,4045.206209620811,1,1,1_1,1_1_1,1_0_1,1_0_0 -26630,0,54.0,0.0,1,300,900.0,0.0,0.0,77,64,0.0,0.0,1243.9568048183376,975.0,129.02452531426437,0.0,12,0,0,0,0,0,0,0,0,2,75.0,1,,1,116589,2,2,1,0,1,,130.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,610.204917322615,900.0,33635.60558482065,5,1,5,0,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028987139760016864,22423.737056547103,6,3,6,6_1,6_0,6_1_0 -26631,2,83.0,0.0,2,300,508.0,0.0,0.0,0,75,0.0,0.0,702.1445076085727,3098.0,3440.6540083803834,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,103052,2,1,2,0,1,,104.0,,11,0.0,4.0,6.0,1.0,1.0,2,2,622.769278560976,508.0,30962.399085087534,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10005684609536908,30962.399085087534,8,4,8,8_1,8_0,8_0_1 -26632,2,38.0,0.0,7,300,770.0,0.0,0.0,63,47,0.0,0.0,1064.2741552334664,814.0,75.69438818436844,0.0,50,0,0,0,0,0,0,0,0,1,30.0,1,,5,112099,2,1,3,0,1,,125.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,642.399739318798,770.0,39881.54516708873,1,1,1,2,109.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020410442890054663,22156.41398171596,6,3,6,6_1,6_0,6_0_0 -26633,2,85.0,0.0,1,300,0.0,0.0,0.0,86,75,0.0,724.6207533736205,0.0,1173.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115962,2,1,2,0,1,,131.0,,41,0.0,3.0,4.0,2.0,1.5,4,3,647.948773765761,0.0,19015.02953630613,7,5,0,1,80.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.061688045120326836,12676.686357537421,2,1,2_0,2_1_0,2_0_0,2_1_0 -26634,2,68.0,0.0,6,300,477.0,0.0,0.0,0,69,0.0,0.0,659.2971065537189,827.0,602.1144514665671,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,4,113539,2,1,2,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,988.868916666027,477.0,11524.053056855133,0,5,0,1,89.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07176294624121463,11524.053056855133,2,1,2_0,2_1_0,2_0_0,2_0_0 -26635,2,33.0,0.0,1,300,1000.0,0.0,0.0,54,62,0.0,621.1035028916747,1382.1742275759307,1750.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124828,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,2.0,1.5,3,3,1021.25460841402,1000.0,36350.306728456184,1,1,1,2,260.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0481426474079803,24233.537818970788,7,4,7,7_1,7_0,7_1_0 -26636,2,81.0,0.0,1,300,700.0,0.0,0.0,35,71,2788.522965392607,0.0,967.5219593031513,2747.0,309.6588607542345,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,126419,2,1,3,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1100.39039364289,700.0,27432.27713026708,5,5,0,1,200.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1001375127174233,18288.18475351139,4,2,4_0,4_1_0,4_0_0,4_1_0 -26637,1,85.0,157.0,1,300,980.0,0.0,0.0,0,78,0.0,0.0,1354.530743024412,1130.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,103656,1,2,5,0,2,,150.0,274.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1463.4243931463,980.0,13327.874828871716,0,5,2,3,70.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08478470982876579,13327.874828871716,3,2,3_1,3_1_1,3_0_1,3_1_0 -26638,2,44.0,0.0,9,300,300.0,0.0,0.0,0,85,0.0,0.0,414.65226827277917,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,7,2007.0,6,122391,2,2,0,0,2,,180.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1193.33376261784,300.0,10566.146606227643,0,7,0,1,27.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028392564591445405,10566.146606227643,2,1,2_0,2_1_0,2_0_0,2_0_0 -26639,2,49.0,0.0,1,300,2296.0,0.0,0.0,47,43,7452.988536319824,0.0,3173.4720265143364,7386.0,172.03270041901916,0.0,31,2,2,2,2,1,2,2,1,0,,1,,1,126457,2,1,1,0,1,,486.0,,43,3.0,0.0,7.0,4.0,2.5,2,2,997.874926914861,2296.0,219218.68493382283,4,1,1,2,185.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,1,0,0.03369238348560327,87687.47397352914,10,5,10,10_1,10_0,10_1_0 -26640,2,92.0,0.0,1,300,154.0,0.0,0.0,0,71,0.0,310.55175144583734,212.8548310466933,789.0,576.3095464037142,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106197,2,2,2,0,2,,185.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1112.68421388979,154.0,11159.235613568906,0,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07070376747316162,11159.235613568906,2,1,2_0,2_1_0,2_0_0,2_1_0 -26641,2,46.0,0.0,9,300,550.0,0.0,0.0,69,69,0.0,0.0,760.1958251667618,650.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,132705,2,1,1,0,1,,205.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1058.02474093034,550.0,33418.73418766097,1,1,1,2,88.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019450168170642327,22279.156125107314,6,3,6,6_1,6_0,6_0_0 -26642,1,49.0,150.0,9,300,978.0,0.0,0.0,56,55,0.0,103.51725048194578,1351.76639456926,1228.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,108123,2,1,1,0,1,,295.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,843.876810481294,978.0,30933.226199747805,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03969841335237162,10311.075399915935,2,1,2_1,2_1_1,2_0_1,2_0_0 -26643,2,79.0,0.0,1,300,3100.0,0.0,0.0,0,71,0.0,0.0,4284.740105485384,3240.0,240.84578058662683,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,116351,2,1,1,0,1,,500.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1056.76875976249,3100.0,9217.717314321106,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3514970018625082,9217.717314321106,1,1,1_0,1_1_0,1_0_0,1_1_0 -26644,0,54.0,0.0,1,300,650.0,0.0,0.0,0,31,1941.6603401234008,569.3448776507017,898.4132479243549,2830.0,567.7079113827633,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,122849,1,2,3,0,2,,468.0,,32,1.0,0.0,7.0,3.0,1.8,1,1,1018.32147545759,650.0,29225.04052667232,0,1,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09683476734334011,16236.133625929067,4,2,4_0,4_1_0,4_0_0,4_1_0 -26645,2,51.0,0.0,1,300,842.0,0.0,0.0,0,67,0.0,51.75862524097289,1163.7906996189336,927.0,60.21144514665671,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,116979,2,2,1,0,1,,240.0,400.0,32,1.0,0.0,4.0,3.0,2.0,1,1,1412.29254156561,842.0,16752.903542301225,0,1,2,3,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05533369171853208,8376.451771150612,1,1,1_0,1_1_0,1_0_0,1_1_0 -26646,2,66.0,0.0,1,300,327.0,0.0,0.0,0,78,0.0,310.55175144583734,451.9709724173293,697.0,120.42289029331342,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,132857,2,2,4,0,1,,203.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1216.69833005642,327.0,21535.459602716706,0,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.032365225208013354,21535.459602716706,6,3,6,6_1,6_0,6_1_0 -26647,2,40.0,0.0,9,300,0.0,0.0,0.0,68,62,0.0,0.0,0.0,1643.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,129582,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,946.860100311789,0.0,34509.198175568505,1,1,1,2,220.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04761049479159431,15003.999206768916,3,2,3_0,3_1_0,3_0_0,3_0_0 -26648,2,77.0,0.0,2,300,840.0,0.0,0.0,78,71,0.0,310.55175144583734,1161.0263511637818,1335.0,335.4637658170874,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,119474,1,1,4,0,1,,166.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1084.28936983893,840.0,19203.009481396773,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06952035311409406,12802.006320931183,2,1,2_0,2_1_0,2_0_0,2_0_1 -26649,2,52.0,0.0,8,300,1500.0,0.0,0.0,52,69,746.7924385090004,0.0,2073.261341363896,2080.0,137.62616033521533,0.0,12,0,0,0,0,0,0,0,0,2,11.0,1,2001.0,6,131628,2,1,1,0,1,,570.0,,43,2.0,2.0,8.0,3.0,2.0,1,1,1053.23710875985,1500.0,54423.08022507015,1,1,1,2,267.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03821907895323135,27211.540112535076,7,4,7,7_1,7_0,7_0_0 -26650,0,76.0,0.0,2,300,400.0,0.0,0.0,0,86,3733.962192545002,0.0,552.8696910303722,3000.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127221,2,1,2,0,1,,0.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,1355.42891270966,400.0,10541.337808789403,0,5,5,0,100.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.28459385842834767,10541.337808789403,2,1,2_0,2_1_0,2_0_0,2_0_1 -26651,2,78.0,0.0,1,300,1763.0,0.0,0.0,71,72,0.0,0.0,2436.7731632163654,2457.0,1193.906940907993,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,123396,2,1,2,0,1,,510.0,,41,0.0,2.0,5.0,3.0,2.0,4,2,1126.84107863998,1763.0,35553.23896353885,5,5,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06910762764877043,17776.619481769427,4,2,4_0,4_1_0,4_0_0,4_1_0 -26652,2,36.0,0.0,1,300,1218.0,0.0,0.0,11,11,0.0,364.38072169644914,1683.4882091874833,1570.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,105742,2,1,3,0,1,,1134.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,872.809478057306,1218.0,23603.49224666877,1,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06651558098236834,11239.758212699415,2,1,2_0,2_1_0,2_0_0,2_1_0 -26653,2,61.0,0.0,1,300,818.4,0.0,0.0,11,11,0.0,103.51725048194578,1131.1713878481416,1268.0,602.1144514665671,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129224,2,1,1,0,1,,0.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1118.14843659543,818.4,18719.071454059995,1,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06773840268262785,12479.38096937333,2,1,2_0,2_1_0,2_0_0,2_1_0 -26654,2,86.0,0.0,2,300,1900.0,0.0,0.0,0,71,0.0,0.0,2626.131032394268,2050.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110520,2,3,4,0,1,,470.0,,21,1.0,3.0,6.0,3.0,2.0,4,4,1245.00647521461,1900.0,34701.13751510638,0,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05907587320754479,17350.56875755319,4,2,4_0,4_1_0,4_0_0,4_0_1 -26655,2,75.0,0.0,1,300,500.0,0.0,0.0,77,75,2240.377315527001,248.44140115666985,691.0871137879653,2330.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102821,2,2,3,0,1,,340.0,,41,1.0,1.0,5.0,3.0,2.0,1,1,1120.21349554504,500.0,56601.4621418142,5,5,0,1,127.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041165014327054245,28300.7310709071,8,4,8,8_1,8_0,8_1_0 -26656,2,77.0,0.0,1,300,287.0,0.0,0.0,78,75,2987.1697540360015,0.0,396.68400331429206,2497.0,361.26867087994026,0.0,12,2,2,2,1,1,2,2,2,0,,1,,1,111121,1,3,4,0,2,,248.0,178.0,41,1.0,3.0,3.0,3.0,2.0,2,2,1201.49241120504,287.0,37819.790647646754,5,5,2,3,80.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.06602363358548548,18909.895323823377,5,3,5,5_1,5_0,5_1_0 -26657,2,52.0,0.0,5,300,0.0,0.0,0.0,85,85,0.0,0.0,0.0,436.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,101397,2,3,3,0,2,,511.0,,41,0.0,5.0,3.0,2.0,1.5,1,1,908.106469755322,0.0,23957.52697067294,6,7,0,1,70.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018198873386794864,15971.684647115295,3,2,3_0,3_1_0,3_0_0,3_0_0 -26658,2,52.0,0.0,1,300,600.0,0.0,0.0,0,42,0.0,51.75862524097289,829.3045365455583,685.0,60.21144514665671,0.0,50,2,2,2,2,1,1,2,2,0,,1,,1,103800,2,2,1,0,1,,320.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,1179.29006156752,600.0,11565.44817755636,0,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.059228141398730665,11565.44817755636,2,1,2_0,2_1_0,2_0_0,2_1_0 -26659,2,65.0,0.0,7,300,920.0,0.0,0.0,0,74,0.0,0.0,1271.600289369856,957.0,63.65209915503709,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,125407,2,1,1,0,1,,410.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,865.132067572735,920.0,16704.87076935219,0,5,0,1,78.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05728868024263753,16704.87076935219,4,2,4_0,4_1_0,4_0_0,4_0_0 -26660,2,31.0,0.0,9,300,594.0,0.0,0.0,63,46,0.0,0.0,821.0114911801028,654.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,100752,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1098.03524968993,594.0,35922.64059740255,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018205788581346347,19957.022554112526,5,3,5,5_1,5_0,5_0_0 -26661,1,39.0,233.0,1,300,800.0,0.0,0.0,85,85,0.0,25.879312620486445,1105.7393820607444,918.0,159.99041138968784,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,104047,2,1,1,0,1,,380.0,485.0,41,0.0,0.0,4.0,2.0,1.5,3,3,1111.77821110954,800.0,20480.7492961549,7,7,2,3,114.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04482257883857537,13653.832864103266,3,2,3_1,3_1_1,3_0_1,3_1_0 -26662,2,55.0,0.0,1,120,960.0,0.0,0.0,11,78,0.0,258.79312620486445,1326.8872584728933,1310.0,172.03270041901916,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,132026,1,2,2,0,2,,230.0,,42,2.0,0.0,7.0,4.0,2.5,2,2,992.369942630371,960.0,13318.566928946246,1,7,0,1,460.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09835893058080282,5327.426771578498,1,1,1_0,1_1_0,1_0_0,1_1_0 -26663,1,51.0,405.0,7,120,1880.0,0.0,0.0,85,68,0.0,0.0,2598.4875478427493,1970.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,123203,2,3,3,0,1,,450.0,462.0,42,1.0,2.0,4.0,4.0,2.3,2,2,834.013857442836,1880.0,34506.85717086033,7,4,2,3,87.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.057090102127978985,15002.981378634926,3,2,3_1,3_1_1,3_0_1,3_0_0 -26664,2,54.0,0.0,1,120,900.0,0.0,0.0,62,45,3733.962192545002,0.0,1243.9568048183376,3977.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,1,103642,2,2,3,0,1,,300.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,1028.99815361188,900.0,83306.94590989886,4,1,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047739116547392685,41653.47295494943,9,5,9,9_1,9_0,9_1_0 -26665,2,69.0,0.0,5,120,594.0,0.0,0.0,56,72,2592.863346503249,310.55175144583734,821.0114911801028,2700.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,128525,2,1,2,0,1,,336.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1097.59755896689,594.0,46058.013983111516,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05862172001141934,30705.342655407676,8,4,8,8_1,8_0,8_0_0 -26666,2,58.0,0.0,9,120,224.0,0.0,0.0,0,75,0.0,0.0,309.60702697700845,869.0,1109.6109177026735,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,131076,2,1,1,0,1,,160.0,,11,0.0,0.0,3.0,1.0,1.0,4,4,1071.42163124244,224.0,9713.996080430128,0,7,0,1,42.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08945854958194727,9713.996080430128,1,1,1_0,1_1_0,1_0_0,1_0_0 -26667,2,36.0,0.0,1,120,0.0,0.0,0.0,0,63,0.0,0.0,0.0,389.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,8,,1,131820,2,1,0,0,1,,102.0,312.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1506.26363759028,0.0,14586.865795288653,0,1,2,3,70.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.026667826074443037,14586.865795288653,3,2,3_0,3_0_0,3_0_0,3_1_0 -26668,2,52.0,0.0,1,120,900.0,0.0,0.0,0,69,0.0,51.75862524097289,1243.9568048183376,1310.0,619.317721508469,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119006,1,2,2,0,2,,400.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,1056.07994027058,900.0,27897.58665383277,0,1,0,1,85.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04695746683235135,18598.39110255518,4,2,4_0,4_1_0,4_0_0,4_1_0 -26669,2,60.0,0.0,9,120,900.0,0.0,0.0,67,64,0.0,362.31037668681023,1243.9568048183376,1430.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2004.0,6,120677,2,2,1,0,1,,400.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,824.209963336463,900.0,36650.35964925517,1,1,1,2,77.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03901735245397684,24433.57309950345,7,4,7,7_1,7_0,7_0_0 -26670,2,29.0,0.0,9,120,1395.0,0.0,0.0,54,55,0.0,0.0,1928.1330474684232,1395.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,23.0,1,2011.0,6,129181,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,1107.47991158022,1395.0,59505.819115100734,1,1,1,2,127.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023443085411557544,33058.788397278186,8,4,8,8_1,8_0,8_0_0 -26671,2,52.0,0.0,1,120,340.0,0.0,0.0,0,45,2240.377315527001,0.0,469.9392373758164,1990.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,104667,2,2,3,0,2,,210.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,1216.69833005642,340.0,27095.108973021695,0,1,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07344498972052194,27095.108973021695,7,4,7,7_1,7_0,7_1_0 -26672,2,69.0,0.0,2,120,1220.0,0.0,0.0,77,75,0.0,362.31037668681023,1686.2525576426353,1570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,125332,2,1,1,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,892.852694416655,1220.0,46215.70713723376,5,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03397113443137446,30810.471424822506,8,4,8,8_1,8_0,8_0_1 -26674,2,68.0,0.0,1,111,0.0,0.0,1215.0,0,78,0.0,0.0,620.759701827593,1242.0,46.448829113135176,1389.043616202947,50,0,0,0,0,0,0,0,0,0,,1,,1,106632,1,1,1,0,2,,150.0,370.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1905.95375490404,0.0,17781.54782313046,0,5,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06984768774652964,17781.54782313046,4,2,4_0,4_1_0,4_3_0,4_1_0 -26675,2,43.0,0.0,8,111,650.0,700.0,0.0,46,46,0.0,0.0,898.4132479243549,1350.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,128289,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1520.04543325625,650.0,59991.30708821768,1,1,1,2,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022503260314278774,28567.289089627466,8,4,8,8_1,8_3,8_0_0 -26676,2,84.0,0.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1429.0,92.89765822627035,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,103227,2,1,2,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,4,3,1799.64835225771,0.0,22151.500280093842,0,5,0,1,80.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06451030322691742,22151.500280093842,6,3,6,6_1,6_3,6_0_0 -26677,2,67.0,0.0,5,111,1440.0,0.0,0.0,77,72,0.0,0.0,1990.33088770934,1615.0,301.05722573328353,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,105759,1,2,1,0,2,,280.0,,41,1.0,2.0,6.0,3.0,2.0,2,2,1826.63963706076,1440.0,56228.56443195667,5,5,0,1,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028722056419461756,28114.282215978335,8,4,8,8_1,8_3,8_0_0 -26678,2,67.0,0.0,8,111,0.0,0.0,2300.0,74,74,0.0,0.0,1175.1006701263077,2300.0,0.0,2629.4652817010524,20,0,0,0,0,0,0,0,0,0,,1,1999.0,6,130508,2,1,1,0,1,,600.0,,41,0.0,2.0,7.0,3.0,2.0,3,2,1962.58640085597,0.0,138451.3596309755,6,5,1,2,175.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016612332346394847,69225.67981548775,10,5,10,10_1,10_3,10_0_0 -26679,2,49.0,0.0,5,111,1100.0,0.0,0.0,77,43,0.0,269.144851253059,1520.3916503335236,1360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,113394,2,1,1,0,1,,600.0,,42,1.0,0.0,4.0,4.0,2.3,2,2,1497.01226709494,1100.0,54282.72077344594,5,1,1,2,91.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025054013148605583,23601.182944976495,6,3,6,6_1,6_3,6_0_0 -26681,2,58.0,0.0,5,111,2500.0,0.0,0.0,54,78,0.0,155.27587572291867,3455.435568939826,2710.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104531,1,1,3,0,1,,750.0,,42,2.0,1.0,5.0,3.0,2.0,2,2,1865.17300446261,2500.0,33465.127611861215,4,7,0,1,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08097981969264868,16732.563805930607,4,2,4_0,4_1_0,4_3_0,4_0_0 -26682,1,94.0,80.0,5,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,739.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,1,,3,125468,1,1,1,1,2,,0.0,302.0,11,0.0,0.0,1.0,1.0,1.0,4,4,2076.02357800642,0.0,11165.097834015209,0,5,2,3,30.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.06618840345031171,11165.097834015209,2,1,2_1,2_1_1,2_3_1,2_0_0 -26683,1,60.0,246.0,9,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,186.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,130777,1,3,0,1,2,,0.0,380.0,11,0.0,4.0,1.0,1.0,1.0,2,2,3081.90205753002,0.0,11018.304619866656,0,7,2,3,33.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01688099997386449,11018.304619866656,2,1,2_1,2_0_1,2_3_1,2_0_0 -26684,2,53.0,0.0,1,111,365.0,2200.0,0.0,85,55,0.0,0.0,504.49359306521467,2565.0,0.0,3990.0363818643877,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,100181,2,2,2,0,2,,672.0,,42,1.0,0.0,6.0,3.0,1.8,1,1,2007.87102100873,365.0,23861.55955425733,6,1,0,1,150.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10749506938838616,13256.421974587403,3,2,3_0,3_1_0,3_3_0,3_1_0 -26685,2,31.0,0.0,5,111,900.0,0.0,0.0,0,63,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,125115,2,1,1,0,2,,100.0,605.0,12,1.0,0.0,4.0,1.0,1.0,2,2,2172.29405511477,900.0,14957.47586946476,0,1,2,3,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06017058010685634,14957.47586946476,3,2,3_0,3_1_0,3_3_0,3_0_0 -26686,2,41.0,0.0,1,111,1000.0,0.0,0.0,55,68,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104809,2,1,1,0,1,,700.0,,43,2.0,1.0,4.0,4.0,2.3,1,1,1791.48982662442,1000.0,34206.81030358563,1,1,1,2,90.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02923394467724393,14872.526218950276,3,2,3_0,3_1_0,3_3_0,3_1_0 -26687,2,67.0,0.0,1,111,2665.0,3640.0,0.0,75,22,0.0,0.0,3683.494316489855,6305.0,0.0,6601.696559084714,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,102312,1,3,3,0,2,,600.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1787.04467287989,2665.0,16469.220116538017,6,1,0,1,185.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3828353714010211,10979.480077692011,2,1,2_0,2_1_0,2_3_0,2_1_0 -26688,2,32.0,0.0,7,111,1500.0,0.0,0.0,52,48,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,107410,2,1,2,0,1,,200.0,790.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2258.3054917043,1500.0,42968.602271087526,1,1,2,3,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03490921092886728,23871.445706159735,6,3,6,6_1,6_3,6_0_0 -26689,1,42.0,232.0,1,111,800.0,0.0,0.0,0,46,1194.8679016144006,0.0,1105.7393820607444,1652.0,89.45700421788997,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,117672,2,1,1,0,1,,500.0,540.0,32,1.0,0.0,4.0,3.0,1.8,1,1,2096.32653559036,800.0,29580.69814719336,0,1,2,3,120.0,9,7,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.055847228208734584,16433.7211928852,4,2,4_1,4_1_1,4_3_1,4_1_0 -26690,2,63.0,0.0,6,111,500.0,0.0,0.0,55,33,0.0,186.3310508675024,691.0871137879653,740.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,4,45.0,1,,4,103817,2,2,1,0,1,,120.0,,43,2.0,2.0,7.0,2.0,1.5,1,1,1654.86512296335,500.0,59032.68320485222,1,1,0,1,224.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012535428847645119,39355.12213656815,9,5,9,9_1,9_3,9_0_0 -26691,2,28.0,0.0,9,111,960.0,0.0,0.0,46,34,0.0,0.0,1326.8872584728933,990.0,51.60981012570575,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,112104,2,1,1,0,1,,200.0,750.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1832.34058042845,960.0,50091.0759785897,1,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01976399948811547,33394.05065239313,8,4,8,8_1,8_3,8_0_0 -26692,2,51.0,0.0,1,111,450.0,0.0,0.0,22,22,2389.735803228801,0.0,621.9784024091688,2110.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,131176,2,1,2,0,1,,120.0,,43,3.0,0.0,7.0,3.0,2.0,2,2,1994.04046496974,450.0,29237.29061150669,1,1,1,2,140.0,9,7,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07216810983058683,14618.645305753345,3,2,3_0,3_1_0,3_3_0,3_1_0 -26693,1,47.0,200.0,9,111,800.0,0.0,0.0,21,12,0.0,0.0,1105.7393820607444,900.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,2,1.0,1,2009.0,6,104392,2,1,1,0,1,,500.0,,43,2.0,2.0,5.0,3.0,1.8,3,3,1891.53212899015,800.0,5991.8654394866235,1,1,1,2,184.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.15020364009995374,3328.814133048124,1,1,1_1,1_1_1,1_3_1,1_0_0 -26694,2,56.0,0.0,8,111,1070.0,0.0,0.0,0,54,3285.8867294396014,0.0,1478.9264235062458,3330.0,103.2196202514115,0.0,71,2,2,1,2,2,2,2,1,2,70.0,1,2000.0,6,120445,2,1,2,0,1,,260.0,,32,1.0,1.0,6.0,2.0,1.5,1,1,1725.84158262793,1070.0,35776.10724171814,0,1,0,1,192.0,9,7,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.09307888020072017,23850.73816114543,6,3,6,6_1,6_3,6_0_0 -26695,2,81.0,0.0,1,111,280.0,1085.0,0.0,0,77,0.0,0.0,387.00878372126056,1365.0,0.0,1967.813397419482,20,0,0,0,0,0,0,0,0,0,,1,,1,121934,2,1,1,0,2,,310.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1799.49934533197,280.0,24117.214618754802,0,5,0,1,64.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05659857581308353,24117.214618754802,6,3,6,6_1,6_3,6_1_0 -26697,2,81.0,0.0,2,111,800.0,1500.0,0.0,78,72,0.0,0.0,1105.7393820607444,2300.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,2,118367,1,2,2,0,2,,700.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1154.10049527532,800.0,75433.07668906823,5,5,0,1,90.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03049060307430515,50288.71779271215,10,5,10,10_1,10_2,10_0_1 -26698,2,67.0,0.0,9,111,1000.0,0.0,0.0,77,74,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108061,2,1,1,0,1,,600.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1126.51255169468,1000.0,42999.02751707232,5,5,1,2,125.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023256339916128577,28666.018344714877,8,4,8,8_1,8_2,8_0_0 -26699,2,75.0,0.0,5,111,1900.0,0.0,0.0,75,74,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117924,2,1,1,0,1,,540.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1212.80185532686,1900.0,31029.91970375146,5,5,0,1,123.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06123122515751446,20686.61313583431,5,3,5,5_1,5_2,5_0_0 -26700,1,66.0,140.0,1,111,471.0,0.0,0.0,0,75,0.0,0.0,651.0040611882633,471.0,0.0,0.0,71,2,1,2,2,2,1,2,2,0,,2,,1,124381,1,2,0,1,2,,0.0,410.0,21,1.0,5.0,3.0,2.0,1.5,4,4,2032.81895767495,471.0,36509.412418874446,0,5,2,3,69.0,5,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.012900782806258062,24339.60827924963,7,4,7,7_0,7_2,7_1_0 -26701,2,47.0,0.0,2,111,400.0,600.0,0.0,0,55,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,2,2,2,2,1,2,2,2,2,10.0,2,,2,114428,2,1,0,0,1,,0.0,520.0,32,1.0,0.0,3.0,2.0,1.5,1,1,1392.01876989578,400.0,9369.574703689774,0,1,2,3,79.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.10672843022492752,6246.383135793182,1,1,1_0,1_0_0,1_2_0,1_0_1 -26702,2,58.0,0.0,2,111,160.0,170.0,0.0,0,69,0.0,0.0,221.1478764121489,330.0,0.0,308.32099314406634,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,113451,2,3,0,0,1,,0.0,296.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2590.21867740919,160.0,15519.785223475817,0,1,3,4,15.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.021263180852582254,15519.785223475817,3,2,3_0,3_0_0,3_2_0,3_0_1 -26703,1,92.0,197.0,1,111,520.0,0.0,0.0,0,77,0.0,0.0,718.7305983394839,580.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,125074,2,2,0,0,1,,0.0,380.0,11,0.0,0.0,1.0,1.0,1.0,4,4,2271.68894408609,520.0,11213.983663732153,0,5,2,3,20.0,5,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05172113830304696,11213.983663732153,2,1,2_1,2_0_1,2_2_1,2_1_0 -26705,2,74.0,0.0,5,111,750.0,400.0,0.0,86,75,0.0,0.0,1036.630670681948,1150.0,0.0,725.4611603389795,70,0,0,0,0,0,0,0,0,0,,1,,3,108530,2,2,2,0,1,,114.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1119.6051539803,750.0,49756.84038530873,7,5,0,1,107.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02311240004579452,33171.22692353915,8,4,8,8_1,8_2,8_0_0 -26706,2,76.0,0.0,7,111,267.0,527.0,0.0,0,75,0.0,0.0,369.04051876277344,794.0,0.0,955.7950787466056,50,0,0,0,0,0,0,0,0,0,,2,,5,106954,2,1,0,0,1,,215.0,570.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1764.20820397735,267.0,43481.264666099756,0,5,2,3,70.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018260738414516343,43481.264666099756,10,5,10,10_0,10_2,10_0_0 -26707,2,73.0,0.0,7,111,450.0,1000.0,0.0,74,77,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,0,,2,,5,126251,2,1,0,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1657.0758830052,450.0,53131.573040971896,5,5,0,1,90.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027290741022891352,35421.04869398126,9,5,9,9_0,9_2,9_0_0 -26708,2,47.0,0.0,6,111,300.0,450.0,0.0,0,22,0.0,0.0,414.65226827277917,750.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,0,,2,,4,109826,2,2,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1578.54118545528,300.0,9019.196676546635,0,1,0,1,64.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08315596464930045,9019.196676546635,1,1,1_0,1_0_0,1_2_0,1_0_0 -26709,2,24.0,0.0,9,111,550.0,0.0,0.0,0,46,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,106047,2,2,0,0,1,,190.0,457.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1729.89722906887,550.0,34180.9050781184,0,1,2,3,52.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016090855369189555,34180.9050781184,9,5,9,9_0,9_2,9_0_0 -26710,2,28.0,0.0,9,111,400.0,0.0,0.0,55,47,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2009.0,6,104376,2,1,0,0,1,,0.0,521.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1651.79210576817,400.0,18977.800858682716,4,4,2,3,64.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021077257738058314,12651.867239121812,2,1,2_0,2_0_0,2_2_0,2_0_0 -26711,2,28.0,0.0,9,111,400.0,0.0,0.0,47,43,0.0,0.0,552.8696910303722,400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,2009.0,6,117733,2,1,0,0,1,,0.0,352.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1948.35529069963,400.0,28414.45272980002,4,4,2,3,40.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014077343097320854,18942.968486533347,5,3,5,5_0,5_2,5_0_0 -26712,0,89.0,0.0,2,111,250.0,1400.0,0.0,0,75,0.0,0.0,345.54355689398267,1650.0,0.0,2539.1140611864284,60,0,0,0,0,0,0,0,0,0,,1,,2,100805,2,1,1,0,1,,190.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1311.61386748116,250.0,35765.748554223304,0,5,0,1,120.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04613352346025942,35765.748554223304,9,5,9,9_1,9_2,9_0_1 -26713,2,66.0,0.0,1,111,2653.2,0.0,0.0,0,31,119.48679016144006,0.0,3667.1846606044587,2733.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100519,2,1,2,0,2,,266.0,,12,1.0,2.0,10.0,1.0,1.0,1,1,1291.44232695191,2653.2,170448.16556223383,0,1,0,1,344.0,5,4,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.016034200139291792,170448.16556223383,10,5,10,10_1,10_2,10_1_0 -26714,2,88.0,0.0,2,111,330.0,2000.0,0.0,0,75,0.0,0.0,456.1174951000571,2330.0,0.0,3627.3058016948976,60,0,0,0,0,0,0,0,0,0,,1,,2,125312,2,2,1,0,1,,150.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1230.57622398653,330.0,26171.993108987044,0,5,0,1,60.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08902646391114612,26171.993108987044,7,4,7,7_1,7_2,7_0_1 -26716,2,66.0,0.0,1,111,220.0,794.0,0.0,0,75,0.0,0.0,304.0783300667047,1014.0,0.0,1440.0404032728745,71,0,0,0,0,0,0,0,0,0,,1,,1,133200,2,1,2,0,1,,220.0,,11,0.0,0.0,3.0,1.0,1.0,2,1,1227.86839398021,220.0,30510.85609827722,0,5,0,1,60.0,5,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.033234072381772825,30510.85609827722,8,4,8,8_1,8_2,8_1_0 -26717,2,38.0,0.0,9,111,734.0,0.0,0.0,0,53,0.0,0.0,1014.515883040733,734.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,2007.0,6,103886,2,1,1,0,1,,200.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,1078.09106228643,734.0,26928.299407454877,0,1,1,2,63.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027257569774227858,20714.076467272982,5,3,5,5_1,5_2,5_0_0 -26718,2,32.0,0.0,2,111,1300.0,0.0,0.0,68,34,0.0,155.27587572291867,1796.8264958487098,1550.0,172.03270041901916,0.0,71,2,2,2,1,2,2,2,2,2,45.0,1,,2,111390,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,1098.85894526673,1300.0,39448.918497146704,1,1,1,2,75.0,5,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.039291317963814645,18785.19928435557,5,3,5,5_1,5_2,5_0_1 -26719,2,54.0,0.0,7,111,500.0,644.0,0.0,62,45,0.0,0.0,691.0871137879653,1144.0,0.0,1167.9924681457571,42,0,0,0,0,0,0,0,0,2,3.0,1,,5,132701,2,1,3,0,1,,288.0,504.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1024.23788649457,500.0,40895.769489027276,1,1,2,3,75.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02797355360453472,27263.846326018185,7,4,7,7_1,7_2,7_0_0 -26720,2,39.0,0.0,2,111,400.0,0.0,0.0,69,52,0.0,0.0,552.8696910303722,600.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,123504,2,2,0,1,1,400.0,0.0,295.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1280.09539350686,400.0,29331.432029836782,1,1,2,3,63.0,5,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020455871346126663,13967.348585636562,3,2,3_0,3_0_0,3_2_0,3_0_1 -26721,1,47.0,362.0,2,111,500.0,130.0,0.0,85,69,0.0,0.0,691.0871137879653,630.0,0.0,235.77487711016835,50,0,0,0,0,0,0,0,0,0,,2,,2,127355,2,1,0,1,1,740.0,289.0,347.0,42,1.0,0.0,4.0,4.0,2.1,3,3,1248.18625373809,500.0,19251.980792577226,6,4,2,3,89.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03272390549251442,9167.60990122725,1,1,1_1,1_0_1,1_2_1,1_0_1 -26722,2,68.0,0.0,5,111,1040.0,0.0,0.0,0,77,0.0,0.0,1437.4611966789678,1110.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119096,2,1,2,0,1,,240.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1491.91088112228,1040.0,22768.57193164434,0,5,0,1,100.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04875141064325136,22768.57193164434,6,3,6,6_1,6_2,6_0_0 -26723,2,63.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1599.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114480,2,2,5,0,1,,332.0,750.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1465.74326842936,0.0,67500.69172901586,0,5,2,3,85.0,5,4,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02368864613149814,67500.69172901586,10,5,10,10_1,10_2,10_0_0 -26724,2,59.0,0.0,1,111,330.0,1100.0,0.0,0,54,0.0,103.51725048194578,456.1174951000571,1530.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,100092,2,1,2,0,1,,210.0,,32,2.0,0.0,3.0,2.0,1.5,1,1,1149.38626459497,330.0,24917.30658863829,0,1,0,1,90.0,5,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.061403105289784585,16611.53772575886,4,2,4_0,4_1_0,4_2_0,4_1_0 -26725,2,58.0,0.0,2,111,370.0,1285.0,0.0,0,52,0.0,0.0,511.40446420309434,1655.0,0.0,2330.5439775889718,50,2,2,2,2,1,2,1,2,2,25.0,2,,2,128892,1,3,0,0,2,,0.0,487.0,12,1.0,2.0,4.0,1.0,1.0,3,2,1871.90974345267,370.0,26934.54212081415,0,1,2,3,80.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.061445262094174204,26934.54212081415,7,4,7,7_0,7_2,7_0_1 -26726,2,69.0,0.0,2,111,180.0,100.0,0.0,0,77,0.0,0.0,248.7913609636675,280.0,0.0,181.36529008474488,43,0,0,0,0,0,0,0,0,0,,2,,2,112488,1,3,0,1,2,360.0,0.0,675.0,11,0.0,3.0,1.0,1.0,1.0,3,3,1519.63874028458,180.0,27625.14310142459,0,5,2,3,52.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01013569410199945,27625.14310142459,7,4,7,7_0,7_3,7_0_1 -26727,2,49.0,0.0,5,111,250.0,0.0,0.0,0,47,0.0,0.0,345.54355689398267,250.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,17.0,2,,3,122879,1,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1329.8437685704,250.0,15902.629347032798,0,1,0,1,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015720670748491438,15902.629347032798,3,2,3_0,3_0_0,3_3_0,3_0_0 -26728,1,80.0,37.0,9,111,1320.0,0.0,0.0,0,77,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,8,2007.0,6,102560,2,2,0,0,1,,240.0,300.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1548.78693572548,1320.0,13770.959070429757,0,5,2,3,63.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09585389029544229,13770.959070429757,3,2,3_1,3_0_1,3_3_1,3_0_0 -26729,2,53.0,0.0,1,111,0.0,0.0,0.0,46,46,0.0,336.43106406632376,0.0,3284.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,116368,2,2,2,0,2,,163.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,971.132069361085,0.0,37738.128772791184,1,1,1,2,140.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08702074286120226,25158.752515194123,7,4,7,7_1,7_3,7_1_0 -26730,2,44.0,0.0,2,111,570.0,643.0,0.0,64,34,0.0,0.0,787.8393097182804,1213.0,0.0,1166.1788152449096,50,1,2,2,2,1,2,2,2,2,15.0,2,,2,128524,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1189.46725021122,570.0,51813.97380684522,4,1,0,1,85.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.023410673045883016,21589.155752852177,6,3,6,6_0,6_3,6_0_1 -26731,2,52.0,0.0,2,111,453.0,102.0,0.0,77,63,0.0,0.0,626.1249250918966,555.0,0.0,184.9925958864398,60,0,0,0,0,0,0,0,0,2,18.0,2,,2,121137,1,1,0,1,1,,0.0,,42,2.0,4.0,4.0,3.0,2.0,3,3,1432.1253035613,453.0,38612.89536390882,5,1,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014373436510507168,19306.44768195441,5,3,5,5_0,5_3,5_0_1 -26732,2,33.0,0.0,7,111,778.0,0.0,0.0,0,38,0.0,0.0,1075.331549054074,778.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,118287,2,2,0,0,1,,0.0,411.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1338.58847719012,778.0,32942.44856071836,0,1,2,3,35.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02361694512677216,32942.44856071836,8,4,8,8_0,8_3,8_0_0 -26733,2,38.0,0.0,7,111,720.0,30.0,0.0,0,64,0.0,0.0,995.16544385467,750.0,0.0,54.40958702542347,70,0,0,0,0,0,0,0,0,2,20.0,2,,5,132757,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1332.08737592644,720.0,19051.119051285903,0,1,0,1,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.039367766165388424,19051.119051285903,5,3,5,5_0,5_3,5_0_0 -26734,2,47.0,0.0,7,111,400.0,350.0,0.0,0,21,0.0,0.0,552.8696910303722,750.0,0.0,634.7785152966071,70,0,0,0,0,0,0,0,0,0,,1,,5,103550,2,1,2,0,1,,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1050.94410247834,400.0,23807.0,0,1,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031503339353971524,23807.0,6,3,6,6_1,6_3,6_0_0 -26735,2,51.0,0.0,1,111,245.0,522.0,0.0,0,65,0.0,0.0,338.632685756103,767.0,0.0,946.7268142423683,71,2,2,2,2,2,2,2,1,0,,2,,1,132640,1,1,0,0,2,,0.0,656.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1565.7628498472,245.0,22823.630581514648,0,4,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.03360552114005955,22823.630581514648,6,3,6,6_0,6_3,6_1_0 -26736,2,66.0,0.0,2,111,300.0,1300.0,0.0,86,75,0.0,0.0,414.65226827277917,1600.0,0.0,2357.7487711016834,70,2,2,2,2,1,2,2,2,0,,1,,2,121528,1,3,1,0,2,,500.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1029.31218988189,300.0,17164.213819249213,6,5,0,1,150.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.09321720277136389,11442.809212832808,2,1,2_0,2_1_0,2_3_0,2_0_1 -26737,2,40.0,0.0,5,111,0.0,0.0,0.0,52,38,0.0,0.0,0.0,1146.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,40.0,2,,3,116708,1,3,0,0,1,,168.0,410.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1465.22931112349,0.0,43279.02170206602,1,1,2,3,33.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026479341605480263,28852.68113471068,8,4,8,8_0,8_3,8_0_0 -26738,2,89.0,0.0,5,111,444.0,1800.0,0.0,77,78,0.0,124.22070057833493,613.6853570437131,2364.0,0.0,3264.575221525408,20,0,0,0,0,0,0,0,0,0,,1,,3,129115,2,1,2,0,1,,348.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,983.455930799928,444.0,29130.831009133755,5,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08115113500396831,19420.55400608917,5,3,5,5_1,5_3,5_0_0 -26739,2,45.0,0.0,7,111,660.0,1300.0,0.0,78,43,0.0,0.0,912.2349902001142,1960.0,0.0,2357.7487711016834,41,0,0,0,0,0,0,0,0,0,,2,,5,117446,2,1,0,0,1,,0.0,880.0,42,1.0,0.0,4.0,4.0,2.5,2,2,1575.4598874685,660.0,62157.69106285284,7,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031532702815779946,24863.07642514114,7,4,7,7_0,7_3,7_0_0 -26740,2,58.0,0.0,5,111,912.0,1644.0,0.0,78,43,0.0,0.0,1260.5428955492487,2556.0,0.0,2981.645368993206,41,0,0,0,0,0,0,0,0,2,18.0,1,,3,114954,2,2,1,0,1,,420.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,943.997912556852,912.0,72813.05302920841,5,1,0,1,99.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0351035960403237,48542.03535280561,10,5,10,10_1,10_3,10_0_0 -26741,2,80.0,0.0,2,111,450.0,670.0,0.0,0,90,0.0,0.0,621.9784024091688,1120.0,0.0,1215.1474435677908,10,0,0,0,0,0,0,0,0,0,,1,,2,110953,2,2,2,0,2,,150.0,280.0,11,0.0,1.0,2.0,1.0,1.0,1,1,914.41533771916,450.0,18471.400325388397,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.060634276788457286,18471.400325388397,4,2,4_0,4_1_0,4_3_0,4_0_1 -26742,2,65.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,930.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,109368,2,1,1,0,1,,457.0,905.0,41,0.0,5.0,5.0,2.0,1.5,2,2,1029.80309481043,0.0,110079.37265412473,5,5,2,3,95.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.008448449310499885,73386.24843608316,10,5,10,10_1,10_3,10_0_1 -26743,2,35.0,0.0,6,111,426.0,800.0,0.0,45,33,0.0,0.0,588.8062209473464,1226.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,112854,2,1,3,0,1,,336.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,836.434581128433,426.0,53347.28221268539,1,1,1,2,105.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02298148938707267,25403.46772032638,7,4,7,7_1,7_3,7_0_0 -26744,1,70.0,193.0,2,111,750.0,1017.0,0.0,0,77,0.0,103.51725048194578,1036.630670681948,1867.0,0.0,1844.4850001618556,50,2,2,2,1,2,2,2,2,0,,1,,2,132963,2,2,3,0,1,,178.0,352.0,11,0.0,4.0,2.0,1.0,1.0,2,2,936.53919629987,750.0,9416.368102885554,0,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.19827177310834695,9416.368102885554,1,1,1_1,1_1_1,1_3_1,1_0_1 -26745,2,78.0,0.0,5,111,310.0,680.0,0.0,77,75,0.0,0.0,428.47401054853844,990.0,0.0,1233.2839725762653,20,2,2,2,2,1,2,2,2,0,,2,,3,127268,2,3,0,0,1,,0.0,345.0,41,0.0,2.0,4.0,2.0,1.5,1,1,1095.57513382197,310.0,31717.498584412962,5,5,2,3,78.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.031213054124215177,21144.99905627531,5,3,5,5_0,5_3,5_0_0 -26746,2,49.0,0.0,6,111,730.0,910.0,0.0,38,38,0.0,155.27587572291867,1008.9871861304293,1790.0,0.0,1650.4241397711785,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,127843,2,1,2,0,1,,375.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,886.458443610995,730.0,115195.28574635266,1,1,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015538830329753103,50084.906846240294,10,5,10,10_1,10_3,10_0_0 -26747,2,29.0,0.0,2,111,250.0,1242.0,0.0,0,35,0.0,0.0,345.54355689398267,1492.0,0.0,2252.5569028525315,20,2,2,2,1,2,2,2,2,0,,1,,2,128826,1,1,2,0,2,,126.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,1073.70209848972,250.0,16264.781027456713,0,1,1,2,95.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09173194508314267,16264.781027456713,4,2,4_0,4_1_0,4_3_0,4_0_1 -26748,2,62.0,0.0,5,111,425.0,1304.0,0.0,43,33,0.0,0.0,587.4240467197704,1729.0,0.0,2365.0033827050734,10,0,0,0,0,0,0,0,0,2,30.0,1,,3,105326,2,1,2,0,2,,312.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,970.597396880893,425.0,79354.68500524516,1,1,0,1,95.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021788253584343723,52903.12333683011,10,5,10,10_1,10_3,10_0_0 -26749,2,69.0,0.0,9,111,330.0,800.0,0.0,52,78,0.0,0.0,456.1174951000571,1130.0,0.0,1450.922320677959,60,0,0,0,0,0,0,0,0,0,,2,2006.0,6,117148,2,3,0,1,1,,0.0,400.0,42,1.0,3.0,3.0,2.0,1.5,2,1,1231.11259656289,330.0,23090.0,1,5,2,3,72.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04893893460372455,15393.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_0 -26750,1,43.0,205.0,9,111,350.0,110.0,0.0,85,52,1045.5094139126004,0.0,483.76097965157567,1160.0,0.0,199.50181909321938,50,2,2,2,2,2,1,2,2,2,10.0,2,2006.0,6,106293,2,3,0,1,1,670.0,0.0,411.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1001.53910567902,350.0,22605.01700913769,6,1,2,3,68.0,9,7,7,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.05131604190039273,10764.29381387509,2,1,2_1,2_0_1,2_3_1,2_0_0 -26751,2,39.0,0.0,2,111,1200.0,0.0,0.0,54,34,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,127327,2,2,0,0,1,,1100.0,457.0,43,2.0,0.0,4.0,4.0,2.3,2,2,1104.70527583116,1200.0,64340.79155670667,1,1,2,3,80.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01865068754931903,27974.257198568117,7,4,7,7_0,7_3,7_0_1 -26752,2,37.0,0.0,5,111,390.0,1054.0,0.0,43,38,0.0,0.0,539.0479487546129,1444.0,0.0,1911.590157493211,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,122104,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,1277.09516145576,390.0,61702.46531084925,1,1,1,2,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02340263055495935,29382.126338499642,8,4,8,8_0,8_3,8_0_0 -26753,2,70.0,0.0,1,111,660.0,1500.0,0.0,77,75,0.0,82.81380038555662,912.2349902001142,2240.0,0.0,2720.4793512711735,60,0,0,0,0,0,0,0,0,0,,1,,1,112451,2,1,1,0,1,,170.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1066.25322985569,660.0,32863.142619621365,5,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06816146665969124,21908.761746414242,6,3,6,6_1,6_3,6_1_0 -26754,0,54.0,0.0,7,111,1550.0,0.0,0.0,0,54,0.0,0.0,2142.370052742692,1550.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,5,120641,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1673.96490531901,1550.0,17548.527601352245,0,1,5,0,70.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08832649867904364,17548.527601352245,4,2,4_0,4_0_0,4_3_0,4_0_0 -26755,2,64.0,0.0,7,111,348.0,946.0,0.0,0,56,0.0,0.0,480.99663119642383,1294.0,0.0,1715.7156442016867,70,0,0,0,0,0,0,0,0,0,,2,,5,108621,2,1,0,0,1,,0.0,550.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1196.93759600593,348.0,16119.020436191664,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0802778310954065,16119.020436191664,4,2,4_0,4_0_0,4_3_0,4_0_0 -26756,2,84.0,0.0,2,111,922.0,55.0,0.0,0,77,2374.799954458621,0.0,1274.364637825008,2567.0,0.0,99.75090954660969,12,0,0,0,0,0,0,0,0,0,,1,,2,120748,2,1,2,0,1,,1230.0,,11,0.0,3.0,8.0,1.0,1.0,2,2,1081.58079260038,922.0,36887.63861802445,0,5,0,1,240.0,9,7,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06958970799355217,36887.63861802445,9,5,9,9_1,9_3,9_0_1 -26757,1,72.0,54.0,5,111,180.0,490.0,0.0,0,77,0.0,0.0,248.7913609636675,670.0,0.0,888.68992141525,70,0,0,0,0,0,0,0,0,0,,2,,3,132693,2,2,0,0,1,,0.0,381.0,11,0.0,0.0,2.0,1.0,1.0,3,3,1242.21681639062,180.0,13216.929033662253,0,5,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05069256241700127,13216.929033662253,2,1,2_1,2_0_1,2_3_1,2_0_0 -26758,2,65.0,0.0,5,111,440.0,0.0,0.0,77,75,0.0,621.1035028916747,608.1566601334094,1040.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,102018,2,2,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,970.597396880893,440.0,34368.83157215193,5,5,0,1,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030259975461100104,22912.55438143462,6,3,6,6_1,6_3,6_0_0 -26760,2,32.0,0.0,7,111,660.0,0.0,0.0,0,33,0.0,0.0,912.2349902001142,660.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,,5,111145,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1333.34071640981,660.0,36318.48480940497,0,1,1,2,44.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01817256428685284,36318.48480940497,9,5,9,9_0,9_3,9_0_0 -26761,2,40.0,0.0,2,111,480.0,0.0,0.0,54,37,0.0,0.0,663.4436292364467,480.0,0.0,0.0,43,2,2,2,1,2,2,2,2,0,,2,,2,116231,1,3,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1387.68419120839,480.0,61765.94040411362,1,1,1,2,85.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.007771273243142136,29412.352573387438,8,4,8,8_0,8_3,8_0_1 -26762,2,29.0,0.0,2,111,0.0,0.0,0.0,54,63,0.0,0.0,0.0,536.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,124402,1,2,0,0,2,,0.0,605.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1452.72469027748,0.0,34472.26502303297,1,1,2,3,60.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015548731701901995,22981.51001535531,6,3,6,6_0,6_3,6_0_1 -26763,2,79.0,0.0,5,111,550.0,2070.0,0.0,77,75,0.0,0.0,760.1958251667618,2620.0,0.0,3754.261504754219,60,0,0,0,0,0,0,0,0,0,,1,,3,110236,2,1,2,0,2,,624.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,958.402403786955,550.0,38585.09026266247,5,5,0,1,95.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06790187562513722,25723.393508441644,7,4,7,7_1,7_3,7_0_0 -26764,2,31.0,0.0,5,111,330.0,0.0,0.0,0,64,0.0,0.0,456.1174951000571,330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,132564,2,2,0,1,1,552.0,0.0,281.0,12,1.0,0.0,3.0,1.0,1.0,2,2,335.745954424932,330.0,21531.07375258935,0,1,2,3,65.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015326685691200787,21531.07375258935,6,3,6,6_0,6_3,6_0_0 -26765,2,61.0,0.0,6,111,900.0,0.0,0.0,78,56,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,102668,2,1,1,0,1,,283.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1245.9219188036,900.0,34142.27347095975,5,1,0,1,102.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02636028326483616,22761.5156473065,6,3,6,6_1,6_3,6_0_0 -26766,2,43.0,0.0,2,111,2733.0,0.0,0.0,42,23,0.0,0.0,3777.482163965018,2733.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,2.0,1,,2,116410,2,1,1,0,1,,460.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1333.19300462755,2733.0,88464.43960124879,1,1,1,2,200.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03089376943231572,42125.92361964228,9,5,9,9_1,9_3,9_0_1 -26767,2,42.0,0.0,9,111,450.0,400.0,0.0,38,37,0.0,310.55175144583734,621.9784024091688,1150.0,0.0,725.4611603389795,31,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,129811,2,1,1,0,1,,467.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1251.20837273715,450.0,91670.40045235341,1,1,1,2,150.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012544943562210397,43652.57164397781,10,5,10,10_1,10_3,10_0_0 -26768,2,74.0,0.0,1,111,520.0,1780.0,0.0,74,74,0.0,0.0,718.7305983394839,2340.0,68.81308016760767,3228.302163508459,60,0,0,0,0,0,0,0,0,0,,1,,1,124327,2,1,1,0,1,,330.0,,41,0.0,4.0,7.0,2.0,1.5,1,1,1427.15409837447,520.0,133128.55735070488,5,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017576995098321856,88752.3715671366,10,5,10,10_1,10_3,10_1_0 -26769,2,79.0,0.0,2,111,440.0,1800.0,0.0,74,75,0.0,0.0,608.1566601334094,2240.0,0.0,3264.575221525408,31,0,0,0,0,0,0,0,0,0,,1,,2,100123,1,2,2,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1289.26242315166,440.0,73680.6689857149,5,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030401461208696242,49120.445990476604,10,5,10,10_1,10_3,10_0_1 -26770,2,68.0,0.0,6,111,280.0,1156.0,0.0,0,77,0.0,0.0,387.00878372126056,1436.0,0.0,2096.582753379651,50,2,2,2,2,1,2,2,2,0,,1,,4,124115,1,1,1,0,2,,220.0,,11,0.0,0.0,2.0,1.0,1.0,4,2,1309.33949168743,280.0,12510.709493811732,0,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.11478165972204052,12510.709493811732,2,1,2_0,2_1_0,2_3_0,2_0_0 -26771,2,56.0,0.0,1,111,411.0,1139.0,0.0,34,33,0.0,0.0,568.0736075337074,3230.0,0.0,2065.7506540652444,20,2,2,2,2,1,2,2,2,0,,1,,1,116187,2,2,2,0,1,,200.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1338.32711088629,411.0,86839.00202957977,1,1,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.037195268537284346,57892.66801971985,10,5,10,10_1,10_3,10_1_0 -26772,2,59.0,0.0,2,111,485.0,1421.0,0.0,75,43,0.0,0.0,670.3545003743263,1906.0,0.0,2577.200772104225,50,0,0,0,0,0,0,0,0,3,75.0,1,,2,115875,2,1,2,0,1,,313.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1319.63789315337,485.0,81266.43115243688,5,1,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02345371850309002,54177.62076829126,10,5,10,10_1,10_3,10_0_1 -26773,2,29.0,0.0,9,111,0.0,0.0,0.0,84,47,0.0,0.0,0.0,1530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,122513,2,1,0,0,1,,0.0,745.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1968.77488720373,0.0,29792.787245390668,3,1,2,3,71.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05135471170918092,19861.858163593777,5,3,5,5_0,5_3,5_0_0 -26774,2,75.0,0.0,5,111,1308.0,1440.0,0.0,77,74,0.0,0.0,1807.883889669317,2748.0,0.0,2611.660177220326,20,0,0,0,0,0,0,0,0,0,,1,,3,118214,2,1,1,0,1,,262.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1327.3295616836,1308.0,33713.28953836525,5,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08151088302649359,22475.526358910167,6,3,6,6_1,6_3,6_0_0 -26775,0,35.0,0.0,2,111,960.0,0.0,0.0,84,33,0.0,0.0,1326.8872584728933,990.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106059,1,1,1,0,2,,300.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1347.71370862065,960.0,41924.996959259544,3,1,5,0,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02361359741926824,27949.997972839697,7,4,7,7_1,7_3,7_0_1 -26776,2,56.0,0.0,7,111,1557.0,1616.0,0.0,54,37,0.0,0.0,2152.045272335724,3173.0,0.0,2930.8630877694773,70,0,0,0,0,0,0,0,0,2,10.0,1,,5,133526,2,2,2,0,1,,793.0,,43,2.0,0.0,8.0,4.0,2.5,2,2,1281.37163984593,1557.0,88986.47863561584,1,1,0,1,143.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035657102614352044,35594.591454246336,9,5,9,9_1,9_3,9_0_0 -26777,2,84.0,0.0,5,111,259.0,1140.0,0.0,0,74,0.0,0.0,357.983124942166,1399.0,0.0,2067.564306966092,60,0,0,0,0,0,0,0,0,0,,1,,3,121156,1,3,4,0,2,,206.0,1124.0,11,0.0,1.0,4.0,1.0,1.0,2,2,1732.72957885098,259.0,30828.245510197245,0,5,2,3,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04538046122466633,30828.245510197245,8,4,8,8_1,8_3,8_0_0 -26778,2,52.0,0.0,5,111,862.0,1525.0,0.0,52,47,0.0,0.0,1191.4341841704522,2387.0,0.0,2765.8206737923597,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,123081,2,3,2,0,1,,1570.0,,43,3.0,0.0,5.0,4.0,2.5,2,2,1222.68958224864,862.0,100789.12095798217,1,1,0,1,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023683111602839684,40315.64838319287,9,5,9,9_1,9_3,9_0_0 -26779,1,47.0,126.0,5,111,456.0,720.0,0.0,85,90,0.0,0.0,630.2714477746243,1176.0,0.0,1305.830088610163,10,0,0,0,0,0,0,0,0,2,10.0,2,,3,104860,1,2,0,0,1,,432.0,332.0,42,1.0,2.0,4.0,3.0,1.8,5,4,548.675804317842,456.0,25886.090231594026,6,1,2,3,78.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04542980378569065,14381.161239774457,3,2,3_1,3_0_1,3_3_1,3_0_0 -26781,2,49.0,0.0,6,111,564.0,846.0,0.0,0,52,0.0,0.0,779.5462643528249,1410.0,0.0,1534.3503541169418,41,0,0,0,0,0,0,0,0,2,5.0,1,,4,120965,2,1,2,0,1,,516.0,486.0,32,1.0,0.0,4.0,2.0,1.5,2,2,348.723256954542,564.0,23650.66643001337,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05961777035638496,15767.110953342248,3,2,3_0,3_1_0,3_3_0,3_0_0 -26782,2,91.0,0.0,2,111,250.0,2180.0,0.0,75,74,0.0,0.0,345.54355689398267,2430.0,0.0,3953.7633238474386,50,0,0,0,0,0,0,0,0,0,,1,,2,130362,2,2,3,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1312.49065038396,250.0,61844.299669348395,5,5,0,1,99.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03929222277545443,41229.53311289893,9,5,9,9_1,9_3,9_0_1 -26783,1,79.0,90.0,2,111,120.0,130.0,0.0,0,86,0.0,0.0,165.86090730911167,250.0,0.0,235.77487711016835,60,0,0,0,0,0,0,0,0,0,,2,,2,109818,2,1,0,1,1,466.0,0.0,259.0,11,0.0,11.0,2.0,1.0,1.0,2,2,522.3103275531,120.0,12847.2457925462,0,5,2,3,45.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.019459423757973607,12847.2457925462,2,1,2_1,2_0_1,2_3_1,2_0_1 -26784,1,55.0,270.0,2,111,360.0,180.0,0.0,0,56,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,43,0,0,0,0,0,0,0,0,2,3.0,2,,2,122727,2,1,0,1,1,400.0,0.0,334.0,12,1.0,0.0,3.0,1.0,1.0,2,2,560.941453209765,360.0,7463.642072213501,0,1,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07235073637981297,7463.642072213501,1,1,1_1,1_0_1,1_3_1,1_0_1 -26785,1,27.0,377.0,2,111,0.0,0.0,0.0,81,56,0.0,0.0,0.0,233.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104264,1,2,0,2,1,480.0,0.0,387.0,43,2.0,0.0,4.0,3.0,1.8,1,1,516.283518823,0.0,17835.64891187526,4,1,2,3,65.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.013063724294598828,9908.6938399307,2,1,2_1,2_0_1,2_3_1,2_0_1 -26786,1,39.0,377.0,2,111,520.0,600.0,0.0,0,56,0.0,0.0,718.7305983394839,1120.0,0.0,1088.1917405084694,50,2,2,2,1,1,2,2,2,2,25.0,2,,2,132767,1,2,0,1,1,1084.0,0.0,377.0,32,1.0,0.0,5.0,2.0,1.3,2,2,490.218310316195,520.0,11904.500961786016,0,1,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0940820622044763,9157.308432143089,1,1,1_1,1_0_1,1_3_1,1_0_1 -26787,2,70.0,0.0,6,111,739.0,1226.0,0.0,77,74,0.0,0.0,1021.4267541786127,1965.0,0.0,2223.5384564389724,50,0,0,0,0,0,0,0,0,0,,1,,4,108912,2,1,1,0,1,,414.0,,41,0.0,2.0,6.0,2.0,1.5,5,4,1462.14959861227,739.0,130923.75738662643,5,5,0,1,200.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015008735154134221,87282.50492441762,10,5,10,10_1,10_3,10_0_0 -26789,2,61.0,0.0,1,111,498.0,1244.0,0.0,42,21,0.0,0.0,688.3227653328134,1742.0,0.0,2256.1842086542265,50,2,2,1,1,2,2,2,2,0,,1,,1,107107,2,3,2,0,1,,400.0,,43,2.0,3.0,3.0,3.0,2.0,2,2,1400.85480773464,498.0,59403.112901994726,1,1,0,1,85.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.02932506252448438,29701.556450997363,8,4,8,8_1,8_3,8_1_0 -26790,2,61.0,0.0,1,111,447.0,1111.0,0.0,0,77,0.0,0.0,617.831879726441,1558.0,0.0,2014.9683728415157,60,0,0,0,0,0,0,0,0,0,,1,,1,106309,2,2,3,0,1,,238.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1370.28091587969,447.0,33369.93186348985,0,5,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04668873782462267,33369.93186348985,8,4,8,8_1,8_3,8_1_0 -26791,2,64.0,0.0,2,111,444.0,340.0,0.0,0,75,0.0,0.0,613.6853570437131,784.0,0.0,616.6419862881327,33,1,2,2,2,1,2,2,2,0,,2,,2,106280,1,3,0,1,2,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1962.47162260312,444.0,26614.855062403913,0,5,1,2,85.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0294572334946688,26614.855062403913,7,4,7,7_0,7_3,7_0_1 -26792,2,41.0,0.0,5,111,430.0,990.0,0.0,63,52,0.0,0.0,594.3349178576501,1420.0,0.0,1795.5163718389745,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,126186,1,2,4,0,2,,310.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,350.021152657998,430.0,41005.273256972745,1,1,1,2,74.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034629692408123046,19526.32059855845,5,3,5,5_1,5_3,5_0_0 -26793,2,30.0,0.0,7,111,1680.0,0.0,0.0,0,43,0.0,0.0,2322.0527023275636,1680.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,129810,2,2,5,0,1,,300.0,810.0,22,3.0,0.0,4.0,3.0,2.0,3,3,521.77645450628,1680.0,62100.302663279945,0,1,2,3,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027053008245536105,31050.151331639972,8,4,8,8_1,8_3,8_0_0 -26796,2,54.0,0.0,5,111,155.0,0.0,0.0,0,38,0.0,0.0,214.23700527426922,155.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,12.0,8,,3,111825,1,3,0,1,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,540.157021135457,155.0,34147.642423222766,0,1,1,2,75.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00453911277618947,34147.642423222766,9,5,9,9_0,9_3,9_0_0 -26797,2,48.0,0.0,7,111,1105.0,552.0,0.0,85,47,0.0,0.0,1527.3025214714032,1657.0,0.0,1001.1364012677918,42,0,0,0,0,0,0,0,0,2,20.0,1,,5,123719,2,1,2,0,1,,715.0,,42,3.0,2.0,10.0,5.0,3.0,3,2,1247.73189102237,1105.0,80499.90243678108,6,1,0,1,197.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02058387587862346,26833.30081226036,7,4,7,7_1,7_3,7_0_0 -26798,2,44.0,0.0,1,300,750.0,0.0,0.0,12,13,0.0,621.1035028916747,1036.630670681948,1530.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125859,2,1,2,0,1,,120.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,1393.22655239431,750.0,6491.698153828128,1,1,0,1,360.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.23568563475148105,2822.477458186143,1,1,1_0,1_1_0,1_0_0,1_1_0 -26799,2,69.0,0.0,1,300,360.0,0.0,0.0,77,71,0.0,0.0,497.582721927335,2060.0,2924.555907123326,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125648,2,1,2,0,1,,120.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1427.95633234146,360.0,31819.62342781153,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06473992392378483,21213.082285207685,5,3,5,5_1,5_0,5_1_0 -26800,2,68.0,0.0,2,300,0.0,0.0,0.0,0,77,0.0,0.0,0.0,851.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104028,1,1,3,0,1,,162.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1202.9591154317,0.0,17391.253158048705,0,5,0,1,60.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04893264402894139,17391.253158048705,4,2,4_0,4_1_0,4_0_0,4_0_1 -26801,2,59.0,0.0,1,300,800.0,0.0,0.0,71,52,0.0,0.0,1105.7393820607444,992.0,330.3027848045168,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,119887,2,1,2,0,1,,300.0,,42,1.0,4.0,5.0,2.0,1.5,1,1,1270.71392559144,800.0,20295.30648335482,7,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04887829611312291,13530.204322236546,3,2,3_0,3_1_0,3_0_0,3_1_0 -26802,2,50.0,0.0,1,300,1100.0,0.0,0.0,69,65,448.0754631054002,0.0,1520.3916503335236,1820.0,722.5373417598805,0.0,70,0,0,0,0,0,0,0,0,2,9.0,1,,1,133231,2,1,2,0,1,,150.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1408.54396403604,1100.0,40075.99325794272,1,1,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04541372158353908,26717.32883862848,7,4,7,7_1,7_0,7_1_0 -26803,2,45.0,0.0,1,300,930.0,0.0,0.0,0,63,0.0,0.0,1285.4220316456153,994.0,110.10092826817227,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,1,131737,2,1,3,0,1,,300.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1524.37450638632,930.0,20952.007106045236,0,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04744175557830941,20952.007106045236,5,3,5,5_1,5_0,5_1_0 -26804,2,31.0,0.0,6,300,360.0,0.0,0.0,55,55,0.0,0.0,497.582721927335,2160.0,3096.588607542345,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,115254,2,1,2,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1535.03925364839,360.0,28565.0,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07561701382811133,15869.444444444443,3,2,3_0,3_1_0,3_0_0,3_0_0 -26805,2,56.0,0.0,1,300,671.0,0.0,0.0,56,63,0.0,1770.1449832412727,927.4389067034494,3316.0,1608.5057489178291,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130095,2,1,1,0,1,,361.0,,43,2.0,2.0,8.0,3.0,2.0,2,2,1477.75329308418,671.0,59515.71001870728,1,1,0,1,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05571638142194218,29757.85500935364,8,4,8,8_1,8_0,8_1_0 -26807,1,28.0,210.0,9,300,1200.0,0.0,0.0,0,54,0.0,0.0,1658.6090730911167,1230.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,2008.0,6,114548,1,1,1,0,1,,170.0,650.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1603.55582613983,1200.0,22153.591505687415,0,1,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05552147152682789,17041.224235144164,4,2,4_1,4_1_1,4_0_1,4_0_0 -26808,2,54.0,0.0,7,300,2000.0,0.0,0.0,90,90,0.0,0.0,2764.3484551518613,2095.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,125951,2,1,1,0,2,,193.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,1563.09701303332,2000.0,100554.93604971872,1,1,0,1,200.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020834382500766958,50277.46802485936,10,5,10,10_1,10_0,10_0_0 -26809,2,49.0,0.0,2,300,150.0,0.0,0.0,43,33,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,104985,2,2,2,0,1,,300.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,1584.25012811991,150.0,79665.48380810278,1,1,1,2,240.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0018828731444262374,39832.74190405139,9,5,9,9_1,9_0,9_0_1 -26810,2,42.0,0.0,1,112,2300.0,0.0,0.0,54,22,0.0,414.0690019277831,3179.0007234246405,2700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,123438,2,1,1,0,1,,275.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1393.22655239431,2300.0,60223.44552071141,1,1,1,2,150.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04483303764264774,28677.831200338765,8,4,8,8_1,8_0,8_1_0 -26811,2,32.0,0.0,9,112,1139.0,0.0,0.0,13,55,0.0,0.0,1574.296445208985,1207.0,116.98223628493304,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,100930,2,1,1,0,1,,190.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,1546.25632675958,1139.0,44741.339679984805,1,1,1,2,135.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02697728786471621,24856.29982221378,7,4,7,7_1,7_0,7_0_0 -26812,0,80.0,0.0,1,112,390.0,0.0,0.0,0,77,0.0,0.0,539.0479487546129,750.0,619.317721508469,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122952,2,1,2,0,1,,130.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1289.52885474647,390.0,15528.142725460326,0,5,0,1,76.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04829940149701751,15528.142725460326,3,2,3_0,3_1_0,3_0_0,3_1_0 -26813,2,52.0,0.0,1,112,810.0,0.0,0.0,52,69,597.4339508072003,0.0,1119.5611243365038,2130.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,132012,1,2,2,0,2,,304.0,,43,3.0,0.0,6.0,5.0,3.0,2,2,1370.99986477999,810.0,42838.17736131117,1,1,0,1,90.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04972200339045438,14279.392453770392,3,2,3_0,3_1_0,3_0_0,3_1_0 -26814,1,37.0,171.0,9,112,1200.0,0.0,0.0,54,62,0.0,0.0,1658.6090730911167,1305.0,180.63433543997013,0.0,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,106612,2,1,1,0,1,,190.0,,43,2.0,0.0,4.0,5.0,2.4,3,3,1334.77090007106,1200.0,29354.53179073453,4,1,1,2,100.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04445650877020326,12231.054912806056,2,1,2_1,2_1_1,2_0_1,2_0_0 -26815,2,53.0,0.0,6,112,2000.0,0.0,0.0,52,67,0.0,0.0,2764.3484551518613,2132.0,227.0831645531053,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,105482,2,1,2,0,1,,330.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1294.80070627311,2000.0,45677.36059795301,1,1,0,1,108.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0466752012833146,30451.573731968674,8,4,8,8_1,8_0,8_0_0 -26816,2,52.0,0.0,9,112,1200.0,0.0,0.0,74,52,0.0,0.0,1658.6090730911167,1310.0,189.2359704609211,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,124901,2,1,1,0,1,,127.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1418.35610370437,1200.0,38298.519106988424,5,1,1,2,88.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034204977908949,25532.346071325617,7,4,7,7_1,7_0,7_0_0 -26817,0,79.0,0.0,1,112,840.0,0.0,0.0,77,77,0.0,165.62760077111324,1161.0263511637818,1114.0,196.11727847768185,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110358,2,2,3,0,1,,150.0,,41,0.0,9.0,5.0,2.0,1.5,2,2,1726.14297773015,840.0,30834.81285107992,5,5,5,0,70.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03612799615097987,20556.54190071995,5,3,5,5_1,5_0,5_1_0 -26818,2,72.0,0.0,7,112,1000.0,0.0,0.0,77,72,0.0,414.0690019277831,1382.1742275759307,1472.0,123.8635443016938,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,115223,2,1,1,0,1,,200.0,,41,1.0,3.0,5.0,3.0,2.0,1,1,1399.90083993491,1000.0,34093.30333426128,5,5,0,1,110.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0431756343927151,17046.65166713064,4,2,4_0,4_1_0,4_0_0,4_0_0 -26819,1,48.0,200.0,1,112,1500.0,0.0,0.0,0,85,0.0,108.69311300604306,2073.261341363896,4405.0,4816.9156117325365,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,126857,2,2,1,0,1,,500.0,,31,0.0,2.0,9.0,3.0,2.0,1,1,1575.62441881538,1500.0,32025.202716751293,0,7,1,2,275.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0.13754791933591398,16012.601358375647,4,2,4_1,4_1_1,4_0_1,4_1_0 -26820,2,65.0,0.0,1,112,1000.0,0.0,0.0,0,75,7467.924385090004,465.827627168756,1382.1742275759307,6700.0,430.0817510475479,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,129282,2,1,2,0,2,,350.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1621.00319721689,1000.0,32494.401521337764,0,5,0,1,320.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.2061893645156191,32494.401521337764,8,4,8,8_1,8_0,8_1_0 -26821,0,35.0,0.0,7,112,0.0,0.0,0.0,0,85,0.0,0.0,0.0,823.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124841,2,2,5,0,1,,249.0,,31,0.0,0.0,3.0,2.0,1.3,1,1,1637.79183885271,0.0,7399.699488629729,0,7,5,0,98.0,9,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11122073285065291,5692.076529715176,1,1,1_0,1_1_0,1_0_0,1_0_0 -26822,2,42.0,0.0,7,112,2400.0,0.0,0.0,55,63,0.0,310.55175144583734,3317.2181461822333,2820.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,114240,2,1,2,0,1,,200.0,,43,3.0,0.0,5.0,5.0,2.8,2,2,1240.96822216393,2400.0,51318.919877198015,1,1,1,2,130.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054950494023413385,18328.185670427865,4,2,4_0,4_1_0,4_0_0,4_0_0 -26823,0,81.0,0.0,1,112,1766.0,0.0,0.0,0,77,0.0,0.0,2440.9196858990936,1968.0,347.50605484641875,0.0,44,2,2,2,2,1,2,2,2,0,,1,,1,109423,2,1,3,0,2,,133.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1592.24104347515,1766.0,36063.64529416229,0,5,0,1,96.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.05457019067117336,36063.64529416229,9,5,9,9_1,9_0,9_1_0 -26824,2,48.0,0.0,1,112,600.0,0.0,0.0,69,69,0.0,0.0,829.3045365455583,728.0,220.20185653634454,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,114317,2,1,1,0,1,,100.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,1286.8890320073,600.0,27178.429842738566,1,1,1,2,60.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026785947687647763,18118.953228492377,4,2,4_0,4_1_0,4_0_0,4_1_0 -26825,2,71.0,0.0,9,221,0.0,0.0,1192.0,0,75,0.0,207.03450096389156,609.0086951263299,1392.0,0.0,1362.7489633859366,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,121029,2,1,1,0,1,,139.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1262.93862977539,0.0,21844.201811809442,0,5,0,1,100.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06372400383370634,21844.201811809442,6,3,6,6_1,6_1,6_0_0 -26826,1,31.0,250.0,2,221,0.0,0.0,0.0,0,69,0.0,0.0,0.0,404.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,104235,1,1,2,0,2,,201.0,340.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1534.8287524774,0.0,10790.713113651016,0,1,2,3,20.0,1,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.03743960160417122,10790.713113651016,2,1,2_1,2_1_1,2_1_1,2_0_1 -26827,2,92.0,0.0,5,221,356.0,0.0,0.0,0,75,0.0,0.0,492.0540250170313,1373.0,1749.5725632614249,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,113749,2,1,3,0,2,,190.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,1240.91684196978,356.0,36291.39672843964,0,5,0,1,100.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03783265797880005,36291.39672843964,9,5,9,9_1,9_1,9_0_0 -26828,2,49.0,0.0,2,221,0.0,0.0,0.0,45,43,0.0,0.0,0.0,895.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,20.0,1,,2,103351,1,2,3,0,2,,326.0,380.0,43,3.0,1.0,6.0,4.0,2.5,1,1,1258.4219915845,0.0,72594.91336448677,1,1,2,3,110.0,1,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.012328687486771375,29037.965345794706,8,4,8,8_1,8_1,8_0_1 -26829,2,37.0,0.0,2,221,800.0,0.0,0.0,0,55,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,128284,1,3,0,0,1,,95.0,232.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1725.13482152984,800.0,15907.425189363154,0,1,2,3,45.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05029097987114454,15907.425189363154,3,2,3_0,3_0_0,3_1_0,3_0_1 -26830,2,46.0,0.0,7,221,150.0,0.0,0.0,0,48,0.0,0.0,207.32613413638958,150.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,122185,2,2,3,0,1,,500.0,374.0,12,1.0,1.0,5.0,1.0,1.0,2,2,1271.01667778205,150.0,26656.86655210445,0,1,2,3,92.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.005627067971653935,26656.86655210445,7,4,7,7_1,7_1,7_0_0 -26831,2,46.0,0.0,2,221,0.0,0.0,0.0,55,63,0.0,0.0,0.0,3516.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,2,124186,2,1,2,0,2,,323.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,1111.57817106031,0.0,19125.4877236506,1,1,1,2,84.0,1,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1838384490269553,10625.270957583667,2,1,2_0,2_1_0,2_1_0,2_0_1 -26832,1,45.0,180.0,2,221,300.0,0.0,0.0,0,52,1045.5094139126004,0.0,414.65226827277917,1090.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,114103,1,1,2,0,2,,170.0,180.0,22,1.0,1.0,4.0,2.0,1.5,1,1,1155.75965168062,300.0,19587.934910910677,0,1,2,3,84.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05564649897794274,13058.623273940451,2,1,2_1,2_1_1,2_1_1,2_0_1 -26833,0,81.0,0.0,1,221,125.0,1320.0,0.0,0,72,0.0,0.0,172.77177844699133,1514.0,118.70256328912323,2394.0218291186325,31,0,0,0,0,0,0,0,0,0,,1,,1,129007,2,1,2,0,1,,192.0,,11,0.0,1.0,8.0,1.0,1.0,2,2,1291.87375833707,125.0,9152.950489293324,0,5,0,1,120.0,1,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.16541114275347643,9152.950489293324,1,1,1_0,1_1_0,1_1_0,1_1_0 -26834,2,63.0,0.0,5,221,426.0,975.0,0.0,0,77,0.0,0.0,588.8062209473464,1461.0,103.2196202514115,1768.3115783262626,50,0,0,0,0,0,0,0,0,0,,1,,3,115813,2,1,2,0,2,,180.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1233.44606538453,426.0,21701.928971350648,0,5,0,1,240.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06732120457719261,21701.928971350648,6,3,6,6_1,6_1,6_0_0 -26835,0,74.0,0.0,7,221,444.0,1632.0,0.0,0,72,0.0,0.0,613.6853570437131,2076.0,0.0,2959.881534183037,71,0,0,0,0,0,0,0,0,0,,1,,5,114747,2,1,2,0,1,,290.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1299.69269744689,444.0,11216.539170430959,0,5,0,1,119.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.18508382741378476,11216.539170430959,2,1,2_0,2_1_0,2_1_0,2_0_0 -26836,2,63.0,0.0,5,221,750.0,800.0,0.0,0,77,0.0,0.0,1036.630670681948,1550.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,3,130609,2,3,3,0,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1151.93140541014,750.0,21094.833005021297,0,5,0,1,60.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0734777089551288,21094.833005021297,5,3,5,5_1,5_1,5_0_0 -26837,2,79.0,0.0,6,221,518.0,0.0,0.0,0,77,0.0,0.0,715.966249884332,608.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,105450,2,1,1,0,1,,145.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,1066.26161807603,518.0,15891.966531530165,0,5,0,1,56.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03825832371303506,15891.966531530165,3,2,3_0,3_1_0,3_1_0,3_0_0 -26838,2,86.0,0.0,5,221,807.0,0.0,0.0,0,78,0.0,0.0,1115.414601653776,871.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125535,2,1,1,0,1,,116.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1176.231653344,807.0,14633.221165830668,0,5,0,1,80.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05952209634019817,14633.221165830668,3,2,3_0,3_1_0,3_1_0,3_0_0 -26839,2,76.0,0.0,5,221,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1348.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,105909,2,2,5,0,1,,735.0,495.0,11,0.0,7.0,3.0,1.0,1.0,2,2,1181.3107728651,0.0,14430.770893467983,0,5,2,3,57.0,1,3,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09341150309649539,14430.770893467983,3,2,3_0,3_1_0,3_1_0,3_0_0 -26840,2,49.0,0.0,6,221,1000.0,0.0,0.0,55,63,0.0,621.1035028916747,1382.1742275759307,1720.0,206.439240502823,0.0,33,0,0,0,0,0,0,0,0,2,8.0,1,,4,110942,2,2,3,0,1,,450.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,1016.55907205468,1000.0,51513.231302713175,1,1,1,2,110.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03338947987736519,34342.154201808786,9,5,9,9_1,9_1,9_0_0 -26842,2,44.0,0.0,8,300,1680.0,0.0,0.0,55,67,0.0,0.0,2322.0527023275636,1752.0,123.8635443016938,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,122880,2,1,2,0,1,,540.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1674.3338981864,1680.0,42317.393945300035,1,1,1,2,119.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04140141527298812,15113.354980464299,3,2,3_0,3_1_0,3_0_0,3_0_0 -26843,2,48.0,0.0,1,300,480.0,0.0,0.0,0,64,0.0,310.55175144583734,663.4436292364467,815.0,60.21144514665671,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126614,1,3,4,0,2,,500.0,525.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2079.428202882,480.0,21490.9941448627,0,1,2,3,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03792286175811095,21490.9941448627,6,3,6,6_1,6_0,6_1_0 -26844,2,65.0,0.0,5,300,879.0,70.0,0.0,78,75,0.0,103.51725048194578,1214.931146039243,1049.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,0,,1,,3,112265,2,1,2,0,2,,186.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1894.69838684535,879.0,31301.395333286782,5,5,0,1,54.0,0,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03351288301465794,20867.596888857854,5,3,5,5_1,5_0,5_0_0 -26845,1,43.0,250.0,7,300,240.0,0.0,0.0,0,64,0.0,0.0,331.72181461822333,744.0,867.0448101118566,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,109184,2,1,1,0,2,,140.0,430.0,32,1.0,0.0,3.0,3.0,1.8,2,2,2423.17731935999,240.0,15314.149970493696,0,1,2,3,52.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.048582520181237,8507.861094718719,1,1,1_1,1_1_1,1_0_1,1_0_0 -26846,2,67.0,0.0,7,300,900.0,0.0,0.0,0,75,0.0,0.0,1243.9568048183376,970.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,109545,2,2,1,0,1,,180.0,500.0,11,0.0,2.0,3.0,1.0,1.0,4,3,2002.25250704584,900.0,17923.0,0,5,2,3,55.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054120403950231544,17923.0,4,2,4_0,4_1_0,4_0_0,4_0_0 -26847,2,53.0,0.0,2,221,200.0,1400.0,0.0,0,55,0.0,0.0,276.4348455151861,1600.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,1,6.0,2,,2,110698,2,1,0,1,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,2672.41374744231,200.0,17206.932016293387,0,1,0,1,89.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09298578029395052,17206.932016293387,4,2,4_0,4_0_0,4_1_0,4_0_1 -26848,2,49.0,0.0,2,221,442.0,795.0,0.0,0,63,0.0,0.0,610.9210085885613,1237.0,0.0,1441.8540561737218,33,0,0,0,0,0,0,0,0,0,,1,,2,100103,2,2,3,0,1,,308.0,507.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1984.76378897184,442.0,22015.212470290724,0,1,2,3,68.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05618841978787701,16934.778823300556,4,2,4_0,4_1_0,4_1_0,4_0_1 -26849,2,63.0,0.0,2,221,414.0,1320.0,0.0,0,75,0.0,0.0,572.2201302164352,1734.0,0.0,2394.0218291186325,50,0,0,0,0,0,0,0,0,0,,1,,2,110591,2,1,1,0,1,,385.0,625.0,11,0.0,1.0,4.0,1.0,1.0,1,1,2061.40291628317,414.0,22695.63170324794,0,5,2,3,90.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07640236776277304,22695.63170324794,6,3,6,6_1,6_1,6_0_1 -26850,2,76.0,0.0,2,221,384.0,950.0,0.0,77,75,0.0,0.0,530.7549033891573,1334.0,0.0,1722.9702558050765,20,0,0,0,0,0,0,0,0,0,,1,,2,127261,2,2,2,0,1,,700.0,700.0,41,0.0,4.0,6.0,2.0,1.5,2,2,2028.05162347214,384.0,36955.18070270693,5,5,2,3,96.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03609778046362755,24636.787135137954,7,4,7,7_1,7_1,7_0_1 -26851,2,50.0,0.0,8,221,600.0,0.0,0.0,0,45,0.0,0.0,829.3045365455583,635.0,60.21144514665671,0.0,41,0,0,0,0,0,0,0,0,3,30.0,1,2002.0,6,100537,2,1,3,0,1,,250.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2078.68699007673,600.0,31908.220541433533,0,1,1,2,77.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01990082772480021,31908.220541433533,8,4,8,8_1,8_1,8_0_0 -26852,2,48.0,0.0,6,221,1230.0,0.0,0.0,85,47,0.0,155.27587572291867,1700.0742999183947,1520.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,120062,2,1,2,0,1,,464.0,,42,2.0,0.0,7.0,5.0,3.0,1,1,2108.58332823937,1230.0,47797.51953175347,5,1,1,2,150.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03180081340811449,15932.50651058449,3,2,3_0,3_1_0,3_1_0,3_0_0 -26853,0,81.0,0.0,1,221,625.0,0.0,0.0,86,75,2987.1697540360015,0.0,863.8588922349566,2715.0,154.82943037711726,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,101484,2,1,2,0,2,,354.0,,41,0.0,1.0,9.0,2.0,1.5,1,1,2107.03969090334,625.0,34400.966741200165,6,5,0,1,128.0,1,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07892220065863417,22933.977827466777,6,3,6,6_1,6_1,6_1_0 -26854,2,58.0,0.0,2,221,0.0,0.0,0.0,0,77,0.0,0.0,0.0,913.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124361,2,1,2,0,2,,148.0,180.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2460.07652885029,0.0,12276.069322932713,0,5,3,4,55.0,1,1,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07437233987384223,12276.069322932713,2,1,2_0,2_1_0,2_1_0,2_0_1 -26855,2,49.0,0.0,9,221,1000.0,0.0,0.0,85,53,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,8.0,1,2005.0,6,125462,2,1,1,0,1,,880.0,,42,2.0,0.0,4.0,5.0,3.0,2,2,2006.89803980704,1000.0,52419.073275262235,6,1,1,2,135.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019077025546575678,17473.024425087413,4,2,4_0,4_1_0,4_1_0,4_0_0 -26856,2,92.0,0.0,7,221,2338.0,0.0,0.0,75,78,0.0,0.0,3231.5233440725256,2398.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,100403,2,1,2,0,1,,348.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1903.21232877362,2338.0,34169.70504528162,5,5,0,1,85.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0701791249535861,22779.803363521078,6,3,6,6_1,6_1,6_0_0 -26857,2,55.0,0.0,7,221,875.0,0.0,0.0,56,21,0.0,0.0,1209.4024491289392,875.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,130668,2,1,2,0,1,,381.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1969.54453505305,875.0,32256.17911260725,1,1,0,1,99.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027126585481353816,21504.119408404833,6,3,6,6_1,6_1,6_0_0 -26858,2,41.0,0.0,1,221,480.0,0.0,0.0,52,33,0.0,0.0,663.4436292364467,830.0,602.1144514665671,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,131725,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,2344.50537093656,480.0,43033.712989146574,1,1,1,2,140.0,1,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01928720396981158,23907.61832730365,6,3,6,6_1,6_1,6_1_0 -26859,2,30.0,0.0,7,221,540.0,0.0,0.0,54,62,0.0,0.0,746.3740828910024,690.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,5,122467,2,1,0,0,1,,200.0,567.0,43,2.0,0.0,3.0,3.0,1.8,3,3,2873.10612371834,540.0,29645.698584947975,4,1,2,3,67.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02327487739993194,16469.83254719332,4,2,4_0,4_0_0,4_1_0,4_0_0 -26860,2,67.0,0.0,2,221,800.0,0.0,0.0,0,77,0.0,517.5862524097289,1105.7393820607444,1370.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111118,2,1,1,0,1,,294.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,2237.29603976425,800.0,23655.65484566936,0,5,0,1,110.0,1,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05791427077110934,23655.65484566936,6,3,6,6_1,6_1,6_0_1 -26861,2,64.0,0.0,5,221,751.0,0.0,0.0,72,72,0.0,465.827627168756,1038.012844909524,1321.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,105558,2,1,1,0,1,,403.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,2231.62870461772,751.0,23696.77886974766,5,5,1,2,101.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05574597320847038,15797.852579831773,3,2,3_0,3_1_0,3_1_0,3_0_0 -26862,2,75.0,0.0,5,221,378.0,2086.0,0.0,77,75,0.0,164.59242826629378,522.4618580237018,2623.0,0.0,3783.2799511677786,50,0,0,0,0,0,0,0,0,0,,1,,3,132818,2,2,1,0,1,,349.0,,41,0.0,2.0,4.0,3.0,2.0,2,2,2083.59260690122,378.0,66686.3250708551,5,5,0,1,100.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039333401521421785,33343.16253542755,8,4,8,8_1,8_1,8_0_0 -26863,2,47.0,0.0,5,221,640.0,0.0,0.0,0,64,0.0,0.0,884.5915056485956,700.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,129490,2,1,1,0,2,,350.0,630.0,32,2.0,1.0,4.0,3.0,2.0,1,1,2311.86408068373,640.0,37567.970632099,0,1,2,3,75.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018632893611823225,18783.9853160495,5,3,5,5_1,5_1,5_0_0 -26864,2,26.0,0.0,5,221,0.0,0.0,0.0,46,53,0.0,0.0,0.0,1255.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,116433,2,2,2,0,1,,114.0,529.0,43,2.0,0.0,5.0,3.0,1.8,1,1,2185.12344568226,0.0,46844.155749479345,1,1,2,3,95.0,1,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02679096207244484,26024.530971932967,7,4,7,7_1,7_1,7_0_0 -26865,2,62.0,0.0,5,221,524.0,1680.0,0.0,75,72,0.0,0.0,724.2592952497876,2204.0,0.0,3046.936873423714,41,0,0,0,0,0,0,0,0,0,,1,,3,119591,2,1,1,0,1,,120.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1985.46231297794,524.0,18852.317905464846,6,5,0,1,150.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1169087011502767,12568.211936976564,2,1,2_0,2_1_0,2_1_0,2_0_0 -26866,2,44.0,0.0,8,221,2000.0,0.0,0.0,85,69,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,105417,2,1,1,0,1,,720.0,,42,2.0,0.0,6.0,4.0,2.5,1,1,2039.88896672465,2000.0,35281.83450053576,5,1,0,1,135.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05668639480664277,14112.733800214304,3,2,3_0,3_1_0,3_1_0,3_0_0 -26867,2,34.0,0.0,9,221,720.0,0.0,0.0,0,63,0.0,0.0,995.16544385467,735.0,25.804905062852875,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,104308,2,1,1,0,1,,544.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2157.46368434529,720.0,23950.76301729984,0,1,1,2,69.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03068795760156381,23950.76301729984,6,3,6,6_1,6_1,6_0_0 -26868,2,80.0,0.0,6,221,311.0,0.0,0.0,0,77,0.0,301.23519890246223,429.8561847761144,952.0,602.1144514665671,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,113072,2,1,2,0,1,,264.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,2260.29876491849,311.0,23238.244461420723,0,5,0,1,85.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04096695004566611,23238.244461420723,6,3,6,6_1,6_1,6_0_0 -26869,1,21.0,520.0,9,221,750.0,0.0,0.0,55,67,0.0,0.0,1036.630670681948,820.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,107069,2,1,1,0,1,,480.0,580.0,43,3.0,0.0,4.0,4.0,2.3,1,1,1936.92199529188,750.0,35309.578233128515,1,1,2,3,88.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02322316042933221,15351.990536142834,3,2,3_1,3_1_1,3_1_1,3_0_0 -26870,2,37.0,0.0,8,221,800.0,841.0,0.0,68,63,0.0,186.3310508675024,1105.7393820607444,1821.0,0.0,1525.2820896127046,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,107893,2,1,1,0,1,,291.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1975.51329195273,800.0,32007.2582949298,1,4,0,1,95.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05689334535374623,15241.551569014191,3,2,3_0,3_1_0,3_1_0,3_0_0 -26871,2,41.0,0.0,2,221,880.0,0.0,0.0,0,47,0.0,0.0,1216.313320266819,895.0,25.804905062852875,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,2,127722,2,2,1,0,1,,280.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2347.12278887451,880.0,35841.86745386637,0,1,1,2,72.0,1,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02497079710347106,35841.86745386637,9,5,9,9_1,9_1,9_0_1 -26872,1,49.0,190.0,2,221,42.0,70.0,0.0,0,68,0.0,0.0,58.05131755818908,112.0,0.0,126.95570305932142,31,2,1,2,2,1,2,2,2,0,,2,,2,125965,2,2,0,0,1,,277.0,190.0,32,1.0,2.0,4.0,2.0,1.5,2,2,2475.9276487609,42.0,9386.269648596022,0,4,2,3,74.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.011932322870859853,6257.513099064015,1,1,1_1,1_0_1,1_1_1,1_0_1 -26873,1,24.0,265.0,8,221,0.0,0.0,0.0,85,63,0.0,0.0,0.0,930.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,124766,2,3,1,0,1,,551.0,238.0,42,1.0,0.0,4.0,4.0,2.1,2,1,2020.71254730024,0.0,18846.715581937897,6,4,2,3,86.0,1,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04934546796531927,8974.626467589474,1,1,1_1,1_1_1,1_1_1,1_0_0 -26874,2,78.0,0.0,1,221,364.0,221.0,0.0,86,86,0.0,0.0,503.1114188376387,585.0,0.0,400.8172910872862,71,0,0,0,0,0,0,0,0,0,,1,,1,114816,2,1,1,0,2,,252.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1816.75360676778,364.0,20789.81724885734,6,5,0,1,72.0,1,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028138775487896752,13859.878165904893,3,2,3_0,3_1_0,3_1_0,3_1_0 -26875,1,68.0,40.0,7,221,244.0,601.0,0.0,0,77,0.0,0.0,337.25051152852706,845.0,0.0,1090.0053934093169,71,0,0,0,0,0,0,0,0,0,,1,,5,121623,2,1,2,0,1,,227.0,445.0,11,0.0,6.0,3.0,1.0,1.0,3,2,1817.23162137146,244.0,14719.008966876507,0,5,2,3,74.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0574087563844535,14719.008966876507,3,2,3_1,3_1_1,3_1_1,3_0_0 -26876,2,81.0,0.0,1,221,489.0,0.0,0.0,86,77,3136.5282417378016,124.22070057833493,675.88319728463,2849.0,240.84578058662683,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,118879,1,1,2,0,2,,374.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1828.77048438632,489.0,24520.520001765344,6,5,0,1,70.0,1,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11618840056389047,16347.01333451023,4,2,4_0,4_1_0,4_1_0,4_1_0 -26877,2,52.0,0.0,5,221,0.0,0.0,0.0,22,22,0.0,0.0,0.0,4415.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,2.0,1,,3,100273,1,1,3,0,2,,449.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,2239.37621983949,0.0,31237.051600198756,1,1,1,2,170.0,1,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1413385634632658,15618.525800099378,3,2,3_0,3_1_0,3_1_0,3_0_0 -26878,2,51.0,0.0,2,221,640.0,0.0,0.0,0,65,1120.1886577635005,0.0,884.5915056485956,1754.0,626.1990295252298,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,133150,1,3,3,0,2,,340.0,374.0,12,1.0,2.0,3.0,1.0,1.0,3,2,2282.88347117594,640.0,13474.0,0,1,2,3,80.0,1,1,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13017663648508238,13474.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -26879,2,32.0,0.0,9,221,1660.0,0.0,0.0,47,63,0.0,0.0,2294.409217776045,1724.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,115355,2,1,1,0,1,,263.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,2007.97784155153,1660.0,44272.72574300147,1,4,1,2,122.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03894045309086319,21082.250353810225,5,3,5,5_1,5_1,5_0_0 -26880,2,74.0,0.0,2,221,126.0,0.0,0.0,0,74,0.0,388.18968930729665,174.15395267456725,611.0,189.2359704609211,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118833,1,2,3,0,2,,204.0,,11,0.0,1.0,8.0,1.0,1.0,1,1,2279.74529481916,126.0,60821.361175528975,0,5,0,1,135.0,1,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.010045812658428818,60821.361175528975,10,5,10,10_1,10_1,10_0_1 -26881,2,82.0,0.0,1,221,303.0,996.0,0.0,77,78,0.0,0.0,418.79879095550695,1299.0,0.0,1806.398289244059,71,0,0,0,0,0,0,0,0,0,,1,,1,120775,2,2,2,0,1,,337.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,2081.10183254988,303.0,33140.94461004833,5,5,0,1,80.0,1,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039196227364205645,22093.963073365554,6,3,6,6_1,6_1,6_1_0 -26882,2,54.0,0.0,9,221,1100.0,0.0,0.0,0,55,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,41,2,2,2,2,1,2,2,2,1,10.0,1,2007.0,6,124927,2,2,1,0,1,,331.0,,32,3.0,1.0,4.0,3.0,2.0,1,1,2569.03850569147,1100.0,33548.48349530445,0,1,1,2,90.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.032788367323785574,16774.241747652224,4,2,4_0,4_1_0,4_1_0,4_0_0 -26883,2,65.0,0.0,7,221,1569.0,0.0,0.0,75,75,0.0,0.0,2168.631363066635,1569.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,120868,2,1,2,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1972.11787495127,1569.0,46852.83481928508,5,5,0,1,140.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033487834963492634,31235.223212856723,8,4,8,8_1,8_1,8_0_0 -26884,2,56.0,0.0,6,221,757.0,0.0,0.0,52,62,0.0,0.0,1046.3058902749794,897.0,240.84578058662683,0.0,12,0,0,0,0,0,0,0,0,2,75.0,1,,4,130945,2,1,2,0,1,,399.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,2091.39141846004,757.0,52637.77021805857,1,1,0,1,85.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017040995397108672,35091.846812039046,9,5,9,9_1,9_1,9_0_0 -26885,2,27.0,0.0,2,221,976.0,0.0,0.0,0,47,0.0,0.0,1349.0020461141082,976.0,0.0,0.0,70,2,2,2,2,1,2,2,2,1,6.0,1,,2,126997,2,3,4,0,1,,476.0,550.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2424.25774609085,976.0,19563.22601658244,0,1,2,3,57.0,1,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.04988952226860283,19563.22601658244,5,3,5,5_1,5_1,5_0_1 -26886,2,75.0,0.0,5,300,1500.0,0.0,0.0,77,75,0.0,0.0,2073.261341363896,1640.0,240.84578058662683,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,117384,2,1,2,0,2,,180.0,600.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1927.6875176999,1500.0,35694.23650133035,5,5,2,3,82.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04594579295564638,23796.157667553565,6,3,6,6_1,6_0,6_0_0 -26887,2,31.0,0.0,9,300,749.0,0.0,0.0,85,68,0.0,0.0,1035.248496454372,749.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,1.0,1,2009.0,6,112444,2,1,1,0,1,,368.0,,41,0.0,0.0,7.0,4.0,2.1,2,2,1838.41823694087,749.0,40138.80701158479,7,7,1,2,126.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018660245676554985,19113.717624564182,5,3,5,5_1,5_0,5_0_0 -26888,2,67.0,0.0,9,300,980.0,0.0,0.0,75,74,0.0,72.46207533736204,1354.530743024412,1050.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2004.0,6,106707,2,1,1,0,1,,235.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1764.24296723056,980.0,119065.74048662797,5,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008818657623163428,79377.16032441864,10,5,10,10_1,10_0,10_0_0 -26889,2,62.0,0.0,5,300,365.0,0.0,0.0,0,68,0.0,0.0,504.49359306521467,749.0,660.6055696090336,0.0,20,2,2,2,1,1,2,2,2,0,,1,,3,112006,1,2,2,0,2,,137.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1785.18436191138,365.0,13480.718089930531,0,1,0,1,40.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.05556083845114068,13480.718089930531,3,2,3_0,3_1_0,3_0_0,3_0_0 -26890,2,67.0,0.0,1,300,617.0,0.0,0.0,0,78,0.0,0.0,852.8014984143491,697.0,137.62616033521533,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,100738,2,1,1,0,2,,220.0,,21,1.0,4.0,5.0,2.0,1.5,2,2,1835.90127516315,617.0,39233.06906093492,0,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017765625190256033,26155.379373956614,7,4,7,7_1,7_0,7_1_0 -26891,2,32.0,0.0,9,300,1140.0,0.0,0.0,42,63,0.0,0.0,1575.678619436561,1140.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,104545,2,1,1,0,1,,196.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2209.53922261762,1140.0,39276.053773309344,1,1,1,2,136.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029025319258899295,21820.029874060747,6,3,6,6_1,6_0,6_0_0 -26892,2,58.0,0.0,5,111,1200.0,240.0,0.0,75,33,0.0,258.79312620486445,1658.6090730911167,1690.0,0.0,435.27669620338776,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,113806,2,2,2,0,1,,600.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1082.91727862041,1200.0,44922.21988804615,5,1,0,1,90.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037620580732915,29948.146592030767,8,4,8,8_1,8_2,8_0_0 -26893,2,67.0,0.0,2,111,350.0,1500.0,0.0,74,74,0.0,0.0,483.76097965157567,1850.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,2,120453,2,2,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1201.6400797343,350.0,66331.88958194124,5,5,0,1,124.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027890054265899578,44221.25972129416,10,5,10,10_1,10_2,10_0_1 -26894,2,45.0,0.0,5,111,300.0,1700.0,0.0,55,33,0.0,0.0,414.65226827277917,2000.0,0.0,3083.2099314406632,20,2,2,2,2,1,2,2,2,1,20.0,1,,3,119783,1,3,2,0,2,,300.0,700.0,43,2.0,1.0,6.0,2.0,1.5,2,2,1288.7530409308,300.0,71532.98582293431,1,1,2,3,143.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.027959129302257878,47688.65721528954,10,5,10,10_1,10_2,10_0_0 -26895,2,82.0,0.0,1,111,250.0,1000.0,0.0,0,77,0.0,0.0,345.54355689398267,1250.0,0.0,1813.6529008474488,41,0,0,0,0,0,0,0,0,0,,1,,1,121051,2,1,2,0,2,,100.0,,11,0.0,0.0,2.0,1.0,1.0,3,3,1416.04640626661,250.0,9580.275457317988,0,5,0,1,30.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13047641537751142,9580.275457317988,1,1,1_0,1_1_0,1_2_0,1_1_0 -26896,2,57.0,0.0,1,111,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,600.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,1,116832,1,1,0,0,1,,80.0,375.0,11,0.0,3.0,2.0,1.0,1.0,2,2,2408.93823984078,600.0,21344.0,0,5,3,4,27.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02811094452773613,21344.0,6,3,6,6_0,6_2,6_1_0 -26897,1,60.0,225.0,1,111,1400.0,0.0,0.0,0,78,0.0,0.0,1935.0439186063027,1460.0,103.2196202514115,0.0,31,2,2,2,2,1,2,2,2,0,,1,,1,123073,1,2,2,0,1,,150.0,450.0,11,0.0,0.0,3.0,1.0,1.0,3,2,1347.20668830813,1400.0,12829.243412233922,0,7,2,3,70.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.11380250207177059,12829.243412233922,2,1,2_1,2_1_1,2_2_1,2_1_0 -26898,2,65.0,0.0,5,111,270.0,1500.0,0.0,75,74,0.0,0.0,373.1870414455012,1770.0,0.0,2720.4793512711735,60,0,0,0,0,0,0,0,0,0,,1,,3,103442,2,1,2,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1104.58726083324,270.0,56848.251368405006,5,5,0,1,95.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031135522331716375,37898.834245603335,9,5,9,9_1,9_2,9_0_0 -26899,1,20.0,165.0,7,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,772.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,5,131046,2,1,0,0,1,,269.0,425.0,22,1.0,0.0,3.0,2.0,1.5,2,2,1475.54358811426,0.0,7034.606276635364,0,1,2,3,50.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.1097431710661774,4689.737517756909,1,1,1_1,1_0_1,1_2_1,1_0_0 -26900,2,85.0,0.0,2,111,600.0,0.0,0.0,0,86,3285.8867294396014,0.0,829.3045365455583,3000.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123705,1,2,3,0,2,,150.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1389.23706397781,600.0,14188.136296810988,0,5,0,1,90.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.21144426140551653,14188.136296810988,3,2,3_0,3_1_0,3_2_0,3_0_1 -26901,2,66.0,0.0,2,111,300.0,1300.0,0.0,77,78,0.0,0.0,414.65226827277917,1600.0,0.0,2357.7487711016834,10,0,0,0,0,0,0,0,0,0,,1,,2,121193,2,2,2,0,1,,500.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1231.1122613649,300.0,34524.31873811471,5,5,0,1,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046344144026037114,23016.212492076473,6,3,6,6_1,6_2,6_0_1 -26902,2,37.0,0.0,2,111,2000.0,0.0,0.0,46,43,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,2,129166,2,1,2,0,2,,160.0,817.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1399.48434029129,2000.0,31353.121362367412,1,1,2,3,100.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0637895020685425,20902.08090824494,5,3,5,5_1,5_2,5_0_1 -26903,2,21.0,0.0,9,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,271.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,123202,2,1,0,0,1,,165.0,322.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1970.14673751841,0.0,17695.057252249873,1,1,2,3,30.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01531501119983905,11796.704834833248,2,1,2_0,2_0_0,2_2_0,2_0_0 -26904,1,51.0,310.0,9,111,1000.0,0.0,0.0,0,46,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,8,2009.0,6,109892,1,1,0,0,1,,200.0,523.0,32,1.0,1.0,3.0,2.0,1.5,1,1,1701.60647039072,1000.0,13209.183300033917,0,1,2,3,66.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07570490750911393,8806.122200022612,1,1,1_1,1_0_1,1_2_1,1_0_0 -26905,2,73.0,0.0,1,111,700.0,0.0,0.0,0,78,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,1,113515,2,1,0,0,1,,0.0,330.0,11,0.0,3.0,2.0,1.0,1.0,2,1,2012.37387656944,700.0,21463.173863721648,0,5,2,3,40.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.032614002218152006,21463.173863721648,6,3,6,6_0,6_2,6_1_0 -26906,0,83.0,0.0,2,111,367.0,1710.0,0.0,77,78,0.0,0.0,507.2579415203665,2077.0,0.0,3101.346460449138,10,0,0,0,0,0,0,0,0,0,,1,,2,114059,2,1,1,0,1,,388.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1061.47448334805,367.0,39208.48548194152,5,5,0,1,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05297322695508389,26138.990321294346,7,4,7,7_1,7_2,7_0_1 -26907,2,28.0,0.0,6,111,900.0,0.0,0.0,54,53,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,4,120548,1,2,0,0,2,,400.0,540.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1729.5056134822,900.0,28984.170230860935,1,1,2,3,77.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031051432310514233,19322.78015390729,5,3,5,5_0,5_2,5_0_0 -26908,0,56.0,0.0,2,111,0.0,0.0,0.0,62,55,0.0,0.0,0.0,1276.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,132638,2,1,2,0,1,,338.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,1280.58244939314,0.0,58518.02863986256,1,1,5,0,77.0,6,4,7,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021805245830355726,39012.01909324171,9,5,9,9_1,9_2,9_0_1 -26909,2,56.0,0.0,1,111,550.0,1400.0,0.0,22,22,0.0,0.0,760.1958251667618,1950.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,1,,1,118417,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1057.77890700065,550.0,71222.73351768484,1,1,1,2,64.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027378898614103437,33915.58738937373,9,5,9,9_1,9_2,9_1_0 -26910,2,34.0,0.0,5,111,170.0,255.0,0.0,85,53,0.0,0.0,234.9696186879082,425.0,0.0,462.4814897160995,41,2,2,2,1,2,2,2,2,1,10.0,2,,3,118976,2,3,0,0,1,,100.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,1323.73083539497,170.0,21028.811699204023,6,1,1,2,45.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.020210366904188266,14019.207799469348,3,2,3_0,3_0_0,3_2_0,3_0_0 -26911,2,28.0,0.0,6,111,0.0,0.0,0.0,37,33,0.0,0.0,0.0,537.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,4,131935,2,1,0,0,1,,183.0,500.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1741.87141507346,0.0,22212.664822518505,4,1,2,3,70.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024175397427129326,14808.443215012338,3,2,3_0,3_0_0,3_2_0,3_0_0 -26912,2,70.0,0.0,2,111,315.0,940.0,0.0,72,74,0.0,0.0,435.3848816864181,1255.0,0.0,1704.833726796602,71,0,0,0,0,0,0,0,0,0,,1,,2,106793,2,1,2,0,1,,440.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1104.58726083324,315.0,41063.30944560158,5,5,0,1,120.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0305625634403032,27375.539630401054,7,4,7,7_1,7_2,7_0_1 -26913,2,63.0,0.0,2,111,493.0,1420.0,0.0,0,78,0.0,0.0,681.4118941949338,1913.0,0.0,2575.3871192033776,71,0,0,0,0,0,0,0,0,0,,1,,2,131933,2,1,2,0,2,,150.0,730.0,11,0.0,4.0,6.0,1.0,1.0,1,1,1297.83484871199,493.0,28661.163261443577,0,5,2,3,130.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06674537186609808,28661.163261443577,8,4,8,8_1,8_2,8_0_1 -26914,2,72.0,0.0,5,111,320.0,760.0,0.0,75,78,0.0,0.0,442.2957528242978,1080.0,0.0,1378.376204644061,71,0,0,0,0,0,0,0,0,0,,1,,3,119619,2,1,2,0,1,,230.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1139.03303070363,320.0,29204.96117977459,5,5,0,1,117.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03698001833838889,19469.974119849725,5,3,5,5_1,5_2,5_0_0 -26915,2,51.0,0.0,7,111,580.0,0.0,0.0,63,54,0.0,238.0896761084753,801.6610519940398,1660.0,1462.277953561663,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,106336,1,1,3,0,1,,290.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1258.87933271336,580.0,34813.61893285681,1,1,1,2,95.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047682488947832585,23209.079288571204,6,3,6,6_1,6_2,6_0_0 -26916,2,67.0,0.0,6,111,1230.0,0.0,0.0,77,77,0.0,0.0,1700.0742999183947,1230.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,118583,2,1,2,0,1,,169.0,469.0,41,0.0,0.0,4.0,2.0,1.5,1,1,1110.71856613981,1230.0,26162.52570623906,5,5,2,3,83.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047013809515595736,17441.683804159373,4,2,4_0,4_1_0,4_2_0,4_0_0 -26917,1,49.0,280.0,2,111,700.0,600.0,0.0,85,69,597.4339508072003,0.0,967.5219593031513,1700.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,113309,2,1,0,1,2,948.0,650.0,334.0,42,1.0,5.0,4.0,3.0,1.8,3,2,463.392610489823,700.0,28815.061694632197,6,4,2,3,82.0,6,4,7,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.058996923831562846,16008.367608128998,4,2,4_1,4_0_1,4_2_1,4_0_1 -26918,1,45.0,240.0,2,111,700.0,1400.0,0.0,85,67,0.0,0.0,967.5219593031513,2100.0,0.0,2539.1140611864284,50,2,1,2,2,1,2,2,2,0,,1,,2,106563,2,2,3,0,1,,603.0,475.0,42,1.0,0.0,5.0,7.0,4.0,1,1,1061.2757688103,700.0,35076.37869540151,7,1,2,3,100.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0.05986935020391112,8769.094673850377,1,1,1_1,1_1_1,1_2_1,1_0_1 -26919,2,67.0,0.0,7,111,1194.0,60.0,0.0,77,75,0.0,0.0,1650.3160277256611,1254.0,0.0,108.81917405084694,20,0,0,0,0,0,0,0,0,0,,1,,5,112149,2,1,1,0,1,,419.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1189.86587023959,1194.0,38971.70875299882,5,5,0,1,96.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03217718801984802,25981.13916866588,7,4,7,7_1,7_2,7_0_0 -26920,2,65.0,0.0,5,111,234.0,691.0,0.0,0,52,0.0,0.0,323.4287692527678,925.0,0.0,1253.2341544855872,12,0,0,0,0,0,0,0,0,2,15.0,2,,3,100087,2,2,0,0,1,,120.0,315.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1365.00679256195,234.0,20750.122291151332,0,1,2,3,63.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04457805053006634,20750.122291151332,5,3,5,5_0,5_2,5_0_0 -26921,2,79.0,0.0,5,111,294.0,659.0,0.0,86,75,0.0,0.0,406.35922290732356,953.0,0.0,1195.1972616584687,50,0,0,0,0,0,0,0,0,0,,1,,3,124883,2,1,1,0,1,,140.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1166.67835165778,294.0,28964.08249246001,6,5,0,1,92.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032902820251533495,19309.38832830667,5,3,5,5_1,5_2,5_0_0 -26922,2,53.0,0.0,6,112,1050.0,0.0,0.0,42,31,0.0,126.29104558797385,1451.2829389547271,4972.0,6537.242615922728,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,117894,1,1,3,0,2,,470.0,,43,2.0,1.0,6.0,4.0,2.5,1,1,778.071984878432,1050.0,115147.64342361683,1,1,1,2,175.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0431793465517006,46059.05736944673,10,5,10,10_1,10_0,10_0_0 -26923,1,26.0,333.0,5,112,0.0,0.0,0.0,85,69,0.0,0.0,0.0,599.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,118803,2,2,2,0,1,,130.0,550.0,42,1.0,0.0,4.0,4.0,2.1,1,1,921.975786999961,0.0,13342.373944346595,6,1,2,3,90.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04489455943136769,6353.5114020698065,1,1,1_1,1_1_1,1_0_1,1_0_0 -26924,2,52.0,0.0,8,112,1150.0,0.0,0.0,0,52,0.0,0.0,1589.5003617123202,1185.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,108419,2,1,2,0,1,,520.0,,32,1.0,0.0,6.0,3.0,1.8,2,2,878.193489829319,1150.0,35447.39945342705,0,1,0,1,170.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033429814831887034,19692.99969634836,5,3,5,5_1,5_0,5_0_0 -26925,2,52.0,0.0,5,112,499.0,0.0,0.0,0,64,2135.826374135741,0.0,689.7049395603893,2049.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,116104,2,1,1,0,1,,380.0,,22,1.0,2.0,6.0,2.0,1.5,1,1,717.624999606125,499.0,33669.85836190607,0,1,0,1,121.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.060855616853982074,22446.57224127071,6,3,6,6_1,6_0,6_0_0 -26926,2,60.0,0.0,5,112,1300.0,0.0,0.0,74,74,0.0,465.827627168756,1796.8264958487098,1820.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,132646,2,1,1,0,1,,2315.0,,41,0.0,0.0,7.0,3.0,2.0,1,1,833.339457056019,1300.0,93352.28575758671,5,7,0,1,125.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019496041100976354,46676.142878793355,10,5,10,10_1,10_0,10_0_0 -26927,2,63.0,0.0,9,112,700.0,0.0,0.0,0,75,0.0,310.55175144583734,967.5219593031513,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,101071,2,1,1,0,1,,600.0,450.0,11,0.0,2.0,5.0,1.0,1.0,2,2,957.40663928971,700.0,23438.132601331603,0,5,2,3,138.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04266551508216941,23438.132601331603,6,3,6,6_1,6_0,6_0_0 -26928,2,57.0,0.0,9,112,1850.0,0.0,0.0,55,33,0.0,56.93448776507018,2557.0223210154713,1905.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,101458,2,1,1,0,1,,681.0,,43,3.0,1.0,7.0,3.0,2.0,2,2,912.103966940709,1850.0,124060.38662435654,1,1,1,2,153.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015355425304034921,62030.19331217827,10,5,10,10_1,10_0,10_0_0 -26929,2,43.0,0.0,9,112,1400.0,0.0,0.0,0,54,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,2007.0,6,110883,2,1,1,0,1,,700.0,,32,1.0,1.0,7.0,2.0,1.5,1,1,822.927710252318,1400.0,9361.194648069086,0,4,0,1,190.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.14955356155197297,6240.796432046057,1,1,1_0,1_1_0,1_0_0,1_0_0 -26930,2,88.0,0.0,1,112,1000.0,400.0,0.0,77,71,0.0,0.0,1382.1742275759307,1400.0,0.0,725.4611603389795,41,0,0,0,0,0,0,0,0,0,,1,,1,102330,1,3,1,0,2,,200.0,,41,0.0,4.0,11.0,2.0,1.5,1,1,801.113332539049,1000.0,45803.05587841529,5,5,0,1,200.0,6,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03056564618125732,30535.37058561019,8,4,8,8_1,8_0,8_1_0 -26931,2,46.0,0.0,5,112,1200.0,0.0,0.0,43,11,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,3,125018,2,1,2,0,1,,418.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,807.287935836077,1200.0,73097.35681375567,1,1,0,1,150.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018058108494445568,29238.942725502267,8,4,8,8_1,8_0,8_0_0 -26932,2,48.0,0.0,7,112,1640.0,0.0,0.0,52,52,0.0,0.0,2266.7657332245262,1730.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,124861,2,1,2,0,1,,220.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,744.39103626583,1640.0,50367.43556575607,1,1,1,2,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034347589480537226,21898.8850285896,6,3,6,6_1,6_0,6_0_0 -26933,2,33.0,0.0,9,112,1200.0,0.0,0.0,52,47,0.0,51.75862524097289,1658.6090730911167,1250.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,112677,2,1,1,0,1,,120.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,824.276474107711,1200.0,47421.90149263573,1,1,1,2,95.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02635912860208939,26345.500829242068,7,4,7,7_1,7_0,7_0_0 -26934,2,67.0,0.0,5,112,1300.0,0.0,0.0,78,72,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,119303,2,1,1,0,1,,500.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,846.316476264575,1300.0,36505.918690381855,5,5,0,1,168.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03561066387688275,24337.279126921236,7,4,7,7_1,7_0,7_0_0 -26935,2,43.0,0.0,6,112,1600.0,0.0,0.0,42,33,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,103915,2,2,3,0,1,,360.0,700.0,43,2.0,0.0,6.0,5.0,2.4,2,2,837.20422164363,1600.0,115184.15821150341,1,1,2,3,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01389079908942034,47993.39925479309,10,5,10,10_1,10_0,10_0_0 -26936,2,52.0,0.0,7,112,1195.0,0.0,0.0,85,34,0.0,414.0690019277831,1651.698201953237,1735.0,240.84578058662683,0.0,10,0,0,0,0,0,0,0,0,1,20.0,1,,5,113265,2,1,1,0,1,,680.0,,42,1.0,0.0,8.0,2.0,1.5,2,2,810.351294746548,1195.0,77370.576483265,7,1,1,2,220.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022424545335723002,51580.384322176666,10,5,10,10_1,10_0,10_0_0 -26937,2,59.0,0.0,6,112,1380.0,0.0,0.0,68,78,0.0,0.0,1907.4004340547842,1380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121122,2,1,2,0,1,,690.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,795.334109014668,1380.0,27109.852496115258,1,5,0,1,88.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05090400252814909,18073.23499741017,4,2,4_0,4_1_0,4_0_0,4_0_0 -26938,2,64.0,0.0,5,112,1050.0,0.0,0.0,33,31,3763.833890085362,0.0,1451.2829389547271,3640.0,120.42289029331342,0.0,50,2,2,2,2,2,2,2,1,0,,1,,3,118351,2,3,3,0,1,,315.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,802.340414158547,1050.0,217164.98923132714,1,1,0,1,200.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.016761449499222095,144776.65948755143,10,5,10,10_1,10_0,10_0_0 -26939,1,59.0,254.0,7,112,810.0,0.0,0.0,0,78,0.0,0.0,1119.5611243365038,810.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,102811,2,2,5,0,1,,190.0,395.0,11,0.0,1.0,2.0,1.0,1.0,2,2,681.5780750519,810.0,9902.114902985624,0,7,2,3,46.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08180070701419288,9902.114902985624,2,1,2_1,2_1_1,2_0_1,2_0_0 -26940,2,51.0,0.0,7,112,2400.0,0.0,0.0,21,47,0.0,414.0690019277831,3317.2181461822333,2920.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,6.0,1,,5,111307,1,1,2,0,2,,300.0,,43,3.0,1.0,5.0,4.0,2.5,2,1,670.999365964147,2400.0,70436.79247779443,1,1,1,2,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041455607180303465,28174.71699111777,8,4,8,8_1,8_0,8_0_0 -26941,2,65.0,0.0,1,112,0.0,0.0,0.0,0,86,0.0,0.0,0.0,2508.0,1720.3270041901917,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124008,2,1,2,0,1,,100.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,964.223612729469,0.0,16570.004879474396,0,5,0,1,120.0,6,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15135783110762452,16570.004879474396,4,2,4_0,4_1_0,4_0_0,4_1_0 -26942,2,27.0,0.0,2,112,0.0,0.0,0.0,54,46,0.0,0.0,0.0,2144.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,108706,2,3,1,0,1,,494.0,750.0,43,2.0,0.0,4.0,2.0,1.5,2,2,815.623035986341,0.0,38510.64407207998,1,1,2,3,105.0,6,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05567291982930997,25673.762714719986,7,4,7,7_1,7_0,7_0_1 -26943,2,79.0,0.0,2,112,460.0,0.0,0.0,86,78,0.0,0.0,635.800144684928,710.0,430.0817510475479,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122573,1,1,2,0,2,,124.0,229.0,41,0.0,3.0,6.0,2.0,1.5,3,3,889.223974776305,460.0,20627.124601751446,5,5,2,3,90.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03442069671405941,13751.416401167631,3,2,3_0,3_1_0,3_0_0,3_0_1 -26944,0,50.0,0.0,8,112,0.0,0.0,0.0,75,46,0.0,0.0,0.0,891.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110436,2,1,1,0,1,,386.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,803.010300589457,0.0,20784.657656500076,7,4,0,1,100.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04286815855835632,13856.438437666717,3,2,3_0,3_1_0,3_0_0,3_0_0 -26945,2,47.0,0.0,6,112,1000.0,0.0,0.0,45,62,0.0,0.0,1382.1742275759307,1120.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,128946,2,1,2,0,1,,250.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,803.883740269156,1000.0,53465.82087684628,1,1,0,1,82.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020947962298751937,26732.91043842314,7,4,7,7_1,7_0,7_0_0 -26946,2,67.0,0.0,9,112,2000.0,0.0,0.0,75,75,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,129413,2,1,1,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,730.959513862225,2000.0,35275.825407683966,5,5,0,1,140.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056696051102587366,23517.21693845598,6,3,6,6_1,6_0,6_0_0 -26947,2,65.0,0.0,6,112,1500.0,0.0,0.0,77,75,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,133100,2,1,2,0,1,,156.0,,41,0.0,0.0,4.0,2.0,1.5,3,2,882.187456841263,1500.0,49805.0299028125,5,5,0,1,155.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030117440004092732,33203.353268541665,8,4,8,8_1,8_0,8_0_0 -26948,2,39.0,0.0,8,112,1007.0,0.0,0.0,63,63,0.0,0.0,1391.8494471689621,1037.0,51.60981012570575,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,107209,2,1,1,0,1,,114.0,695.0,43,2.0,0.0,4.0,2.0,1.5,2,2,927.407972797418,1007.0,35099.91921278712,1,1,2,3,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029544227544039885,23399.94614185808,6,3,6,6_1,6_0,6_0_0 -26949,2,59.0,0.0,8,112,800.0,0.0,0.0,52,33,0.0,289.84830134944815,1105.7393820607444,1080.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,112604,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,3.0,2.0,2,2,842.192907321841,800.0,93773.8616795986,1,1,0,1,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011517068622918451,46886.9308397993,10,5,10,10_1,10_0,10_0_0 -26950,2,48.0,0.0,7,112,650.0,0.0,0.0,54,48,2240.377315527001,0.0,898.4132479243549,2150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,5,100860,1,2,3,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,670.999365964147,650.0,40379.60015367418,1,1,0,1,70.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05324470752106666,16151.840061469673,4,2,4_0,4_1_0,4_0_0,4_0_0 -26951,2,57.0,0.0,6,112,800.0,0.0,0.0,62,75,0.0,828.1380038555662,1105.7393820607444,1800.0,344.06540083803833,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,127505,2,1,1,0,2,,350.0,,42,1.0,0.0,7.0,4.0,2.5,2,2,807.079789288929,800.0,43675.55358398549,1,5,0,1,144.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041212986494577726,17470.221433594197,4,2,4_0,4_1_0,4_0_0,4_0_0 -26952,2,44.0,0.0,1,112,90.0,0.0,0.0,0,33,0.0,776.3793786145933,124.39568048183375,840.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,115380,2,1,1,0,1,,220.0,680.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1002.59863770688,90.0,41921.22653885028,0,1,2,3,110.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020037581658578964,41921.22653885028,9,5,9,9_1,9_0,9_1_0 -26953,0,65.0,0.0,2,112,600.0,0.0,0.0,75,77,1493.5848770180007,0.0,829.3045365455583,1700.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118030,2,1,2,0,1,,450.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,768.421682191966,600.0,45233.757203909445,5,5,0,1,120.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03758255128656598,30155.83813593963,8,4,8,8_1,8_0,8_0_1 -26954,2,52.0,0.0,8,112,1500.0,0.0,0.0,46,21,0.0,465.827627168756,2073.261341363896,2050.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,100287,2,1,1,0,1,,180.0,,43,3.0,0.0,4.0,4.0,2.5,1,1,779.182410838691,1500.0,56724.5494147266,1,1,1,2,125.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03613955546851443,22689.81976589064,6,3,6,6_1,6_0,6_0_0 -26955,0,85.0,0.0,1,400,1050.0,0.0,0.0,0,77,0.0,724.6207533736205,1451.2829389547271,4850.0,5333.013712989594,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106223,2,2,2,0,1,,245.0,,21,0.0,2.0,6.0,2.0,1.5,2,2,1502.70739114719,1050.0,20647.118842716933,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2348996020677621,13764.745895144622,3,2,3_0,3_1_0,3_0_0,3_1_0 -26956,2,42.0,0.0,9,400,400.0,0.0,0.0,0,69,0.0,0.0,552.8696910303722,440.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,115159,2,1,1,0,1,,105.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1483.88649457016,400.0,43786.92619335283,0,1,0,1,108.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010048661512732426,43786.92619335283,10,5,10,10_1,10_0,10_0_0 -26957,2,40.0,0.0,5,400,380.0,0.0,0.0,38,38,2987.1697540360015,0.0,525.2262064788536,2420.0,68.81308016760767,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,3,125633,1,2,2,0,2,,200.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,1449.32802923185,380.0,114733.4226737845,1,1,1,2,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02109237172223702,47805.592780743544,10,5,10,10_1,10_0,10_0_0 -26958,2,67.0,0.0,2,400,2200.0,0.0,0.0,86,78,0.0,0.0,3040.783300667047,2450.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100248,2,1,2,0,1,,165.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,1509.33774369335,2200.0,38769.08920679511,5,5,0,1,123.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06319467519424173,19384.544603397557,5,3,5,5_1,5_0,5_0_1 -26959,2,69.0,0.0,1,400,350.0,0.0,0.0,90,78,0.0,1221.5035556869602,483.76097965157567,1930.0,688.1308016760767,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,108288,2,3,3,0,1,,156.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1287.98980494223,350.0,24357.62450974531,5,5,0,1,92.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07923596979778635,16238.416339830206,4,2,4_0,4_1_0,4_0_0,4_1_0 -26960,2,59.0,0.0,9,400,480.0,0.0,0.0,0,64,0.0,0.0,663.4436292364467,520.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,121107,2,1,1,0,1,,140.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1600.73330379718,480.0,30347.152486734172,0,1,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017135050816623094,30347.152486734172,8,4,8,8_1,8_0,8_0_0 -26961,2,65.0,0.0,5,400,800.0,0.0,0.0,0,75,0.0,0.0,1105.7393820607444,879.0,135.90583333102515,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,121628,2,1,0,0,2,,120.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1961.02801511586,800.0,14206.406217830223,0,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06187349471232083,14206.406217830223,3,2,3_0,3_0_0,3_0_0,3_0_0 -26962,2,57.0,0.0,1,112,980.0,0.0,0.0,0,64,0.0,0.0,1354.530743024412,980.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,,1,106429,2,1,1,0,1,,110.0,585.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1785.25297901326,980.0,22453.486749339805,0,1,2,3,70.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.04364578254327536,22453.486749339805,6,3,6,6_1,6_0,6_1_0 -26963,2,76.0,0.0,9,112,1600.0,0.0,0.0,86,78,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108384,2,1,1,0,2,,380.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,1528.91440637375,1600.0,32565.657543258232,5,5,0,1,142.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04913151217274387,21710.438362172154,6,3,6,6_1,6_0,6_0_0 -26964,2,40.0,0.0,2,112,600.0,0.0,0.0,56,64,0.0,414.0690019277831,829.3045365455583,1035.0,60.21144514665671,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,100432,2,1,2,0,1,,300.0,700.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1620.80110198636,600.0,31406.92862722469,1,1,2,3,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032954511798483334,20937.952418149795,5,3,5,5_1,5_0,5_0_1 -26965,2,30.0,0.0,1,112,540.0,0.0,0.0,0,64,0.0,0.0,746.3740828910024,575.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114136,2,2,2,0,2,,148.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1461.93325730142,540.0,22741.50158200101,0,1,1,2,89.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025284170349379638,22741.50158200101,6,3,6,6_1,6_0,6_1_0 -26966,2,80.0,0.0,6,112,720.0,0.0,0.0,0,86,0.0,414.0690019277831,995.16544385467,1190.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106420,2,1,1,0,1,,148.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1544.00211492569,720.0,14807.550002161719,0,5,0,1,89.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08036440868518253,14807.550002161719,3,2,3_0,3_1_0,3_0_0,3_0_0 -26967,2,72.0,0.0,5,112,1142.0,0.0,0.0,56,75,0.0,621.1035028916747,1578.4429678917127,1742.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,131500,2,1,2,0,1,,478.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1454.52052285367,1142.0,41100.74342876611,5,5,0,1,153.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042383661575833856,27400.495619177407,7,4,7,7_1,7_0,7_0_0 -26968,2,58.0,0.0,6,112,2106.0,0.0,0.0,0,43,0.0,103.51725048194578,2910.8589232749096,2346.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,115778,2,1,2,0,1,,598.0,,32,1.0,0.0,6.0,2.0,1.5,2,2,1591.32492636981,2106.0,50165.806341514784,0,1,0,1,130.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046764921588802695,33443.87089434319,8,4,8,8_1,8_0,8_0_0 -26969,2,48.0,0.0,5,112,1080.0,0.0,0.0,0,35,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,126798,2,1,0,0,1,,300.0,401.0,32,1.0,0.0,3.0,3.0,2.0,2,2,1839.02660089063,1080.0,27672.321922019724,0,1,2,3,80.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03902816695481598,13836.160961009862,3,2,3_0,3_0_0,3_0_0,3_0_0 -26970,0,79.0,0.0,1,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,3100.0,5333.013712989594,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107282,1,1,2,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,1745.42293518656,0.0,19073.45022978218,0,5,5,0,70.0,6,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.16252958760232666,19073.45022978218,5,3,5,5_1,5_0,5_1_0 -26971,2,55.0,0.0,7,112,2200.0,0.0,0.0,86,48,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,5,131743,2,2,1,0,1,,200.0,,42,1.0,1.0,5.0,2.0,1.5,3,3,1390.34317054354,2200.0,28367.004744947506,5,1,1,2,125.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07755489237515799,18911.33649663167,5,3,5,5_1,5_0,5_0_0 -26972,2,58.0,0.0,1,112,1500.0,0.0,0.0,0,56,0.0,776.3793786145933,2073.261341363896,2315.0,111.82125527236246,0.0,71,1,2,2,1,2,2,2,2,2,7.0,1,,1,132620,1,2,2,0,1,,270.0,,12,1.0,3.0,4.0,1.0,1.0,2,2,1692.97160213399,1500.0,10399.346077421937,0,1,0,1,105.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.2226101509426738,10399.346077421937,2,1,2_0,2_1_0,2_0_0,2_1_0 -26973,2,53.0,0.0,9,112,1005.0,0.0,0.0,52,52,0.0,0.0,1389.08509871381,1005.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,123939,2,1,1,0,1,,268.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1381.30605359654,1005.0,58909.498969279826,1,1,1,2,159.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017060067010994072,23563.799587711932,6,3,6,6_1,6_0,6_0_0 -26974,1,39.0,300.0,1,112,1320.0,0.0,0.0,0,55,0.0,558.9931526025072,1824.4699804002285,1860.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,112835,2,2,5,0,1,,310.0,550.0,32,1.0,0.0,6.0,3.0,1.6,2,2,1801.50604825459,1320.0,22192.354080870147,0,1,2,3,220.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08381264976315982,13870.22130054384,3,2,3_1,3_1_1,3_0_1,3_1_0 -26975,2,78.0,0.0,2,112,640.0,0.0,0.0,77,75,0.0,258.79312620486445,884.5915056485956,1030.0,240.84578058662683,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119279,2,1,2,0,1,,420.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1335.1784386724,640.0,47799.978263811936,5,5,0,1,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021548126953433888,31866.652175874624,8,4,8,8_1,8_0,8_0_1 -26976,2,77.0,0.0,1,112,925.0,0.0,0.0,75,72,0.0,289.84830134944815,1278.5111605077357,1415.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115723,2,2,2,0,1,,350.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1258.61269592589,925.0,42319.02900367747,5,5,0,1,80.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03343649496015228,28212.686002451646,8,4,8,8_1,8_0,8_1_0 -26977,2,67.0,0.0,6,120,710.0,0.0,0.0,78,75,0.0,517.5862524097289,981.3437015789107,1450.0,412.878481005646,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,116490,2,1,2,0,2,,140.0,,41,0.0,2.0,8.0,2.0,1.5,3,2,1490.13397986161,710.0,43499.440855390225,5,5,0,1,185.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03333376180214334,28999.627236926815,8,4,8,8_1,8_0,8_0_0 -26978,2,50.0,0.0,6,120,1960.0,0.0,0.0,52,68,0.0,517.5862524097289,2709.061486048824,2710.0,430.0817510475479,0.0,50,2,2,2,1,2,2,2,2,0,,1,,4,122197,2,2,3,0,1,,250.0,657.0,43,3.0,1.0,5.0,4.0,2.5,3,3,1391.09223558459,1960.0,41585.66903734486,1,1,2,3,126.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.06516668031879827,16634.267614937944,4,2,4_0,4_1_0,4_0_0,4_0_0 -26979,2,26.0,0.0,7,120,0.0,0.0,0.0,55,69,0.0,0.0,0.0,2759.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,13.0,1,,5,128688,2,1,1,0,2,,154.0,440.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1625.13357377554,0.0,28814.0,1,1,2,3,80.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09575206496841814,19209.333333333332,5,3,5,5_1,5_0,5_0_0 -26980,2,43.0,0.0,8,120,600.0,0.0,0.0,0,48,0.0,0.0,829.3045365455583,680.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,2003.0,6,115348,2,1,1,0,1,,163.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1581.88546519795,600.0,26489.64936159535,0,1,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02567040396487327,26489.64936159535,7,4,7,7_1,7_0,7_0_0 -26981,2,67.0,0.0,1,120,322.0,0.0,0.0,78,78,0.0,0.0,445.06010127944967,522.0,344.06540083803833,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,114909,2,2,2,0,2,,272.0,,41,0.0,4.0,4.0,2.0,1.5,2,1,1470.24875116486,322.0,29904.249951606478,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01745571284498837,19936.16663440432,5,3,5,5_1,5_0,5_1_0 -26982,1,41.0,110.0,1,120,480.0,0.0,0.0,0,64,0.0,828.1380038555662,663.4436292364467,1400.0,206.439240502823,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,129332,1,3,4,0,2,,170.0,300.0,32,1.0,0.0,4.0,3.0,1.8,1,1,1835.34468780457,480.0,19094.295774325183,0,4,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.07332032647585181,10607.942096847324,2,1,2_1,2_1_1,2_0_1,2_1_0 -26983,2,56.0,0.0,7,300,569.0,0.0,0.0,56,34,1783.340343159493,62.110350289167464,786.4571354907044,1827.0,6.881308016760767,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,131129,2,1,2,0,1,,546.0,,43,2.0,2.0,6.0,2.0,1.5,4,4,986.632402700104,569.0,48426.13232825191,1,1,0,1,210.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0377275638619218,32284.088218834604,8,4,8,8_1,8_0,8_0_0 -26984,2,55.0,0.0,6,300,303.0,0.0,0.0,48,64,0.0,62.110350289167464,418.79879095550695,888.0,903.1716771998506,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,4,108038,2,1,2,0,1,,300.0,,43,2.0,1.0,5.0,2.0,1.5,3,3,806.253725849834,303.0,46878.2022468758,1,1,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0189427059366207,31252.134831250532,8,4,8,8_1,8_0,8_0_0 -26985,2,72.0,0.0,1,300,400.0,0.0,0.0,0,71,2987.1697540360015,0.0,552.8696910303722,2460.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,103232,1,3,4,0,2,,209.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1151.20051053328,400.0,17346.880935013483,0,5,0,1,130.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14181223755532094,17346.880935013483,4,2,4_0,4_1_0,4_0_0,4_1_0 -26986,2,84.0,0.0,1,112,0.0,0.0,0.0,86,78,746.7924385090004,207.03450096389156,0.0,1667.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107403,2,2,4,0,1,,230.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1076.88539716302,0.0,17146.365431980208,5,5,0,1,200.0,7,0,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09722177021206066,11430.910287986806,2,1,2_0,2_1_0,2_0_0,2_1_0 -26987,2,80.0,0.0,1,112,360.0,0.0,0.0,71,71,1792.3018524216009,0.0,497.582721927335,1740.0,309.6588607542345,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113105,2,1,2,0,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,870.371250811493,360.0,18910.015253757912,5,5,0,1,150.0,7,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09201473275671825,12606.676835838609,2,1,2_0,2_1_0,2_0_0,2_1_0 -26988,2,78.0,0.0,1,112,720.0,0.0,0.0,78,72,0.0,0.0,995.16544385467,1120.0,688.1308016760767,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,106928,1,1,2,0,2,,250.0,,41,0.0,1.0,5.0,2.0,1.5,4,4,917.235026435704,720.0,12744.359336734076,5,5,0,1,150.0,7,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.0878820166951614,8496.239557822717,1,1,1_0,1_1_0,1_0_0,1_1_0 -26989,2,58.0,0.0,6,112,450.0,0.0,0.0,0,54,896.1509262108004,0.0,621.9784024091688,1110.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,128496,2,1,2,0,1,,300.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,979.880508286661,450.0,10867.671439452452,0,4,0,1,70.0,7,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10213779521990457,10867.671439452452,2,1,2_0,2_1_0,2_0_0,2_0_0 -26990,2,67.0,0.0,1,112,414.0,0.0,0.0,56,72,0.0,51.75862524097289,572.2201302164352,674.0,361.26867087994026,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106945,2,2,2,0,1,,120.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,994.503253029907,414.0,25206.169416217068,5,5,0,1,170.0,7,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02673948543590935,16804.112944144712,4,2,4_0,4_1_0,4_0_0,4_1_0 -26991,1,43.0,151.0,2,112,1586.0,0.0,0.0,0,46,0.0,0.0,2192.128324935426,1766.0,309.6588607542345,0.0,70,2,2,2,1,2,2,2,2,2,20.0,1,,2,116680,2,2,5,0,1,,486.0,500.0,32,1.0,0.0,4.0,3.0,1.6,2,2,1152.78333804266,1586.0,29060.445957514563,0,1,2,3,90.0,7,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.06076988641474516,18162.7787234466,4,2,4_1,4_1_1,4_0_1,4_0_1 -26993,2,50.0,0.0,1,112,0.0,60.0,0.0,54,45,0.0,0.0,0.0,1425.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,1,35.0,1,,1,129899,2,1,1,0,1,,311.0,,43,2.0,4.0,5.0,3.0,1.8,3,2,1068.39056865015,0.0,46761.64951788327,1,1,0,1,100.0,7,0,7,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03047368975842118,25978.694176601817,7,4,7,7_1,7_0,7_1_0 -26994,2,35.0,0.0,1,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,2162.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,1,127735,2,2,5,0,1,,472.0,420.0,12,1.0,1.0,4.0,1.0,1.0,2,2,1103.17542656116,0.0,19882.29620093417,0,1,2,3,60.0,7,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10873995529240824,19882.29620093417,5,3,5,5_1,5_0,5_1_0 -26995,2,48.0,0.0,9,300,1700.0,0.0,0.0,52,46,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,115168,2,1,1,0,1,,300.0,,43,3.0,0.0,4.0,4.0,2.3,4,4,927.613910267024,1700.0,64702.21481537081,1,1,1,2,95.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026274216498631264,28131.3977458134,8,4,8,8_1,8_0,8_0_0 -26996,2,59.0,0.0,1,300,1560.0,0.0,0.0,72,22,4480.754631054002,0.0,2156.1917950184516,4590.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,2,60.0,1,,1,116364,2,1,4,0,2,,750.0,,42,2.0,1.0,7.0,3.0,2.0,2,2,1165.40341239275,1560.0,85067.89896141541,5,1,0,1,240.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.053956898619089026,42533.949480707706,9,5,9,9_1,9_0,9_1_0 -26997,2,40.0,0.0,9,300,1600.0,0.0,0.0,45,31,0.0,0.0,2211.478764121489,2022.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,2005.0,6,124629,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,912.098842377461,1600.0,63560.228722144624,1,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031812346189615384,30266.77558197363,8,4,8,8_1,8_0,8_0_0 -26998,2,68.0,0.0,1,300,800.0,0.0,0.0,81,86,2987.1697540360015,175.97932581930783,1105.7393820607444,3030.0,103.2196202514115,0.0,50,1,2,2,1,2,2,2,2,0,,1,,1,109344,2,1,3,0,1,,278.0,,42,1.0,6.0,6.0,2.0,1.5,1,1,970.544531483432,800.0,118876.2528226714,4,5,0,1,170.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.02548869036543298,79250.83521511428,10,5,10,10_1,10_0,10_1_0 -26999,2,59.0,0.0,9,300,1284.0,0.0,0.0,74,75,0.0,62.110350289167464,1774.711708207495,1344.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2004.0,6,112109,2,1,1,0,1,,280.0,,41,0.0,5.0,7.0,2.0,1.5,3,2,1053.63128586814,1284.0,63004.05575835833,5,5,0,1,175.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02133196004325008,42002.70383890555,9,5,9,9_1,9_0,9_0_0 -27000,2,61.0,0.0,5,300,1850.0,0.0,0.0,0,21,0.0,0.0,2557.0223210154713,1940.0,154.82943037711726,0.0,42,0,0,0,0,0,0,0,0,1,5.0,1,,3,124483,2,1,1,0,2,,400.0,,12,1.0,2.0,5.0,1.0,1.0,3,3,1087.1710337276,1850.0,23704.429860098924,0,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08184124281620263,23704.429860098924,6,3,6,6_1,6_0,6_0_0 -27001,2,66.0,0.0,1,300,800.0,0.0,0.0,75,86,0.0,517.5862524097289,1105.7393820607444,6300.0,8601.635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111749,2,2,5,0,2,,200.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1076.88539716302,800.0,22956.590290901382,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2744309986878558,15304.393527267588,3,2,3_0,3_1_0,3_0_0,3_1_0 -27002,2,64.0,0.0,1,300,1200.0,0.0,0.0,78,78,0.0,414.0690019277831,1658.6090730911167,1700.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111331,2,1,1,0,1,,260.0,,41,0.0,3.0,3.0,2.0,1.5,3,3,978.254981657208,1200.0,11470.905358270993,6,5,0,1,68.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14820103094776477,7647.270238847329,1,1,1_0,1_1_0,1_0_0,1_1_0 -27003,1,47.0,98.0,1,300,1100.0,0.0,0.0,0,54,0.0,82.81380038555662,1520.3916503335236,1280.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,125895,2,1,1,0,1,,360.0,,32,1.0,0.0,6.0,3.0,2.0,2,2,1057.04896489876,1100.0,57071.22839312366,0,1,0,1,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.022428113710519386,28535.61419656183,8,4,8,8_1,8_0,8_1_0 -27004,2,72.0,0.0,5,300,1800.0,0.0,0.0,0,75,0.0,0.0,2487.913609636675,1950.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122914,2,1,3,0,1,,380.0,,11,0.0,0.0,7.0,1.0,1.0,2,2,1033.89361372069,1800.0,18994.240267447578,0,5,0,1,200.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10266270051042366,18994.240267447578,5,3,5,5_1,5_0,5_0_0 -27005,0,92.0,0.0,1,300,500.0,0.0,0.0,0,71,2987.1697540360015,0.0,691.0871137879653,2700.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130165,2,2,1,0,1,,300.0,,11,0.0,3.0,6.0,1.0,1.0,3,3,1080.42370921515,500.0,15161.66790504336,0,5,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.17808067139512238,15161.66790504336,3,2,3_0,3_1_0,3_0_0,3_1_0 -27006,2,66.0,0.0,2,300,0.0,0.0,0.0,77,75,0.0,0.0,0.0,1746.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118742,2,1,1,0,2,,156.0,650.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1149.93072869334,0.0,31681.18858389424,5,5,2,3,91.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05511156866404986,21120.792389262828,5,3,5,5_1,5_0,5_0_1 -27007,2,39.0,0.0,9,300,1600.0,0.0,0.0,54,47,0.0,0.0,2211.478764121489,1690.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,105518,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,4,4,950.3597338789,1600.0,55409.734627040154,1,1,1,2,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03050005583631281,21311.436395015447,6,3,6,6_1,6_0,6_0_0 -27008,2,42.0,0.0,1,300,700.0,0.0,0.0,52,62,0.0,931.655254337512,967.5219593031513,1750.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,118975,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1117.68228611496,700.0,41246.411562910645,1,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04242793333259625,22914.673090505912,6,3,6,6_1,6_0,6_1_0 -27009,0,52.0,0.0,2,111,350.0,0.0,0.0,0,56,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,110557,2,2,3,0,1,,450.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,1173.75925136287,350.0,15562.157816076116,0,1,0,1,100.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.022490454353215776,15562.157816076116,3,2,3_0,3_1_0,3_2_0,3_0_1 -27010,2,59.0,0.0,5,111,1350.0,0.0,0.0,75,67,0.0,0.0,1865.9352072275062,1470.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,100048,2,1,1,0,1,,681.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1114.71109594165,1350.0,29683.46630124798,5,1,0,1,97.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04952251819519464,19788.97753416532,5,3,5,5_1,5_2,5_0_0 -27011,1,35.0,233.0,2,111,2000.0,0.0,0.0,0,52,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,125037,2,1,3,0,1,,440.0,,32,1.0,0.0,6.0,4.0,2.1,4,3,1092.28336329145,2000.0,35412.33446758557,0,1,1,2,110.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05647749661436994,16863.016413135985,4,2,4_1,4_1_1,4_2_1,4_0_1 -27012,2,63.0,0.0,1,111,750.0,1500.0,0.0,67,78,0.0,0.0,1036.630670681948,2250.0,0.0,2720.4793512711735,43,0,0,0,0,0,0,0,0,0,,1,,1,125247,2,1,2,0,1,,1200.0,,42,2.0,4.0,6.0,4.0,2.5,2,2,1066.53114045588,750.0,27209.248343734358,1,5,0,1,90.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0826924717498902,10883.699337493743,2,1,2_0,2_1_0,2_2_0,2_1_0 -27013,2,54.0,0.0,2,111,640.0,1200.0,0.0,67,65,0.0,0.0,884.5915056485956,1840.0,0.0,2176.3834810169387,70,2,2,2,2,2,1,2,2,2,5.0,1,,2,106776,1,2,3,0,2,,780.0,,43,3.0,0.0,4.0,6.0,3.3,1,1,1184.78809738636,640.0,54910.169376773505,1,1,0,1,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03350927562023334,16639.44526568894,4,2,4_0,4_1_0,4_2_0,4_0_1 -27014,1,95.0,120.0,2,111,805.0,874.0,0.0,0,75,0.0,0.0,1112.6502531986241,1739.0,103.2196202514115,1585.1326353406703,50,0,0,0,0,0,0,0,0,0,,1,,2,111844,1,3,3,0,2,,310.0,300.0,11,0.0,2.0,4.0,1.0,1.0,3,2,1500.22581321141,805.0,18251.452642559852,0,5,3,4,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.09528008723781764,18251.452642559852,4,2,4_1,4_1_1,4_2_1,4_0_1 -27015,2,64.0,0.0,5,111,840.0,0.0,0.0,72,77,0.0,0.0,1161.0263511637818,960.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,112445,2,1,1,0,2,,560.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1137.01729614586,840.0,40123.84696547096,5,5,0,1,120.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023925921181638915,26749.231310313975,7,4,7,7_1,7_2,7_0_0 -27016,2,55.0,0.0,2,111,300.0,800.0,0.0,0,52,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,131388,2,3,0,0,2,,330.0,258.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1769.35988098604,300.0,22335.698410839133,0,1,2,3,60.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04924851597504508,22335.698410839133,6,3,6,6_0,6_2,6_0_1 -27017,2,66.0,0.0,5,111,1600.0,0.0,0.0,74,72,0.0,62.110350289167464,2211.478764121489,1660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102773,2,1,1,0,1,,550.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1113.68474140984,1600.0,86834.07469327834,5,5,0,1,110.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019116919318407817,57889.38312885223,10,5,10,10_1,10_2,10_0_0 -27018,2,31.0,0.0,7,111,1200.0,0.0,0.0,0,64,0.0,724.6207533736205,1658.6090730911167,2230.0,567.7079113827633,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,120275,2,1,2,0,1,,0.0,,22,1.0,2.0,4.0,3.0,2.0,3,2,1265.01931900262,1200.0,24521.394363251555,0,4,0,1,110.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09094099491103737,12260.697181625777,2,1,2_0,2_1_0,2_2_0,2_0_0 -27019,2,60.0,0.0,9,111,903.0,769.0,0.0,75,75,0.0,372.6621017350048,1248.1033275010652,2032.0,0.0,1394.6990807516881,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,124625,2,1,1,0,1,,317.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1165.42150179275,903.0,49897.981306352194,5,5,1,2,125.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04072309032953442,33265.320870901465,8,4,8,8_1,8_2,8_0_0 -27020,2,52.0,0.0,1,111,500.0,0.0,0.0,0,85,2688.452778632401,724.6207533736205,691.0871137879653,3060.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,115201,2,3,3,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1354.5515409399,500.0,8903.255953130945,0,7,0,1,130.0,6,4,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.34369448841060346,8903.255953130945,1,1,1_0,1_1_0,1_2_0,1_1_0 -27021,2,46.0,0.0,2,111,700.0,0.0,0.0,56,64,866.2792286704404,0.0,967.5219593031513,1340.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102178,2,1,1,0,1,,0.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,1336.50539775962,700.0,47104.12772514659,1,1,1,2,120.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028447613080087662,23552.063862573294,6,3,6,6_1,6_2,6_0_1 -27022,2,84.0,0.0,2,111,450.0,1384.0,0.0,0,78,0.0,0.0,621.9784024091688,1834.0,0.0,2510.0956147728693,50,0,0,0,0,0,0,0,0,0,,1,,2,129169,2,2,1,0,1,,752.0,,21,0.0,9.0,5.0,2.0,1.5,2,2,1306.71311183704,450.0,13231.239685558887,0,5,0,1,90.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.138611350378733,8820.826457039258,1,1,1_0,1_1_0,1_2_0,1_0_1 -27023,2,73.0,0.0,2,111,1200.0,0.0,0.0,72,72,1493.5848770180007,0.0,1658.6090730911167,2350.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124119,1,2,2,0,2,,0.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1207.30522345022,1200.0,16763.60210530207,5,5,0,1,120.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14018466826152662,11175.734736868048,2,1,2_0,2_1_0,2_2_0,2_0_1 -27024,2,69.0,0.0,1,111,500.0,1700.0,0.0,72,75,0.0,0.0,691.0871137879653,2200.0,0.0,3083.2099314406632,60,0,0,0,0,0,0,0,0,0,,1,,1,111787,2,1,4,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1228.6982827452,500.0,21112.0236499241,5,5,0,1,100.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1042060219560198,14074.682433282733,3,2,3_0,3_1_0,3_2_0,3_1_0 -27026,2,60.0,0.0,1,111,1200.0,0.0,0.0,68,63,0.0,0.0,1658.6090730911167,1421.0,380.19226792603234,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,119581,1,2,3,0,2,,446.0,237.0,43,2.0,3.0,2.0,2.0,1.5,4,3,1437.12470585021,1200.0,32916.63684645553,1,1,2,3,40.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.043169659361874134,21944.424564303685,6,3,6,6_1,6_2,6_1_0 -27027,1,49.0,100.0,1,111,462.0,0.0,0.0,0,56,0.0,186.3310508675024,638.5644931400799,662.0,34.40654008380383,0.0,50,2,2,2,2,1,2,2,2,2,15.0,2,,1,113168,2,3,0,0,1,,360.0,450.0,32,2.0,1.0,4.0,3.0,2.0,2,2,1868.73581917117,462.0,28699.766739641167,0,1,2,3,90.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,1,1,0,1,0.023066389563564688,14349.883369820584,3,2,3_1,3_0_1,3_2_1,3_1_0 -27028,1,79.0,126.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,621.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128517,2,1,1,0,1,,281.0,400.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1552.10338942769,0.0,10337.594167088017,0,5,2,3,70.0,6,4,7,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.060072004178408245,10337.594167088017,2,1,2_1,2_1_1,2_2_1,2_1_0 -27029,2,74.0,0.0,2,111,420.0,820.0,0.0,77,75,0.0,0.0,580.5131755818909,1240.0,0.0,1487.1953786949082,44,0,0,0,0,0,0,0,0,0,,1,,2,103995,2,1,1,0,1,,230.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1236.98477366781,420.0,42891.57378083477,5,5,0,1,100.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028910107293709724,28594.38252055651,8,4,8,8_1,8_2,8_0_1 -27030,2,62.0,0.0,1,111,500.0,0.0,0.0,69,77,0.0,0.0,691.0871137879653,650.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109817,2,1,1,0,1,,450.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,1230.14358396391,500.0,23042.80666708705,4,5,0,1,110.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02820836929246213,15361.871111391367,3,2,3_0,3_1_0,3_2_0,3_1_0 -27031,2,31.0,0.0,5,111,900.0,0.0,0.0,0,46,2240.377315527001,0.0,1243.9568048183376,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,3,102532,2,3,1,0,1,,400.0,,32,1.0,0.0,6.0,2.0,1.3,3,2,1108.14483415562,900.0,22102.268112134407,0,1,1,2,100.0,6,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10858614092561711,17001.744701641852,4,2,4_0,4_1_0,4_2_0,4_0_0 -27032,2,58.0,0.0,9,111,1600.0,0.0,0.0,69,46,0.0,310.55175144583734,2211.478764121489,1900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,124485,2,1,1,0,1,,258.0,,43,2.0,2.0,8.0,2.0,1.5,1,1,1163.98391423046,1600.0,48413.725729621954,4,1,0,1,220.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0392450688594182,32275.8171530813,8,4,8,8_1,8_2,8_0_0 -27033,2,49.0,0.0,1,111,1130.0,0.0,0.0,56,48,0.0,931.655254337512,1561.8568771608016,2130.0,172.03270041901916,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,1,105453,2,2,2,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1149.76287336821,1130.0,34685.875390591595,1,1,0,1,120.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06140828149828832,15080.815387213737,3,2,3_0,3_1_0,3_2_0,3_1_0 -27035,2,40.0,0.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,264.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122395,2,2,5,0,1,,0.0,394.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1308.69933315891,0.0,9972.860832155162,0,4,3,4,35.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026471842377344085,9972.860832155162,2,1,2_0,2_1_0,2_2_0,2_0_0 -27036,1,50.0,406.0,5,111,770.0,0.0,0.0,0,85,0.0,166.6627732759327,1064.2741552334664,931.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106205,2,1,1,0,1,,410.0,472.0,31,0.0,1.0,5.0,3.0,1.8,4,2,1373.92535533359,770.0,5970.960058144976,0,6,2,3,100.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.15592132436558917,3317.200032302764,1,1,1_1,1_1_1,1_2_1,1_0_0 -27037,1,36.0,565.0,2,111,850.0,0.0,0.0,85,85,1493.5848770180007,724.6207533736205,1174.848093439541,2750.0,344.06540083803833,0.0,31,2,2,2,2,1,2,2,1,0,,1,,2,122356,1,2,5,0,1,,696.0,680.0,41,0.0,0.0,7.0,7.0,3.1999999999999993,4,3,1435.58047440478,850.0,15832.718817645658,7,6,2,3,120.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.173690951735662,4947.724630514269,1,1,1_1,1_1_1,1_2_1,1_0_1 -27039,2,78.0,0.0,2,111,520.0,0.0,0.0,78,78,2389.735803228801,0.0,718.7305983394839,2210.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129084,2,1,2,0,1,,100.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1205.51023363009,520.0,33463.372190915274,5,5,0,1,116.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06604235781712331,22308.914793943517,6,3,6,6_1,6_2,6_0_1 -27040,2,69.0,0.0,2,111,900.0,1200.0,0.0,77,77,0.0,0.0,1243.9568048183376,2100.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,0,,1,,2,118507,2,2,3,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1140.09007055028,900.0,51523.6560676425,5,5,0,1,78.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04075797721425336,34349.104045095,9,5,9,9_1,9_2,9_0_1 -27041,2,41.0,0.0,9,111,1040.0,0.0,0.0,0,47,0.0,0.0,1437.4611966789678,1040.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,106645,2,1,1,0,1,,180.0,,12,1.0,0.0,5.0,1.0,1.0,3,3,1168.38343983523,1040.0,25362.32263890805,0,1,1,2,143.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04100570814459035,25362.32263890805,7,4,7,7_1,7_2,7_0_0 -27042,2,77.0,0.0,1,111,1493.0,0.0,0.0,0,78,0.0,0.0,2063.5861217708643,1493.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,117290,2,1,2,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,4,3,1384.00375141097,1493.0,14926.2812933388,0,5,0,1,110.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10002491381870754,14926.2812933388,3,2,3_0,3_1_0,3_2_0,3_1_0 -27043,2,49.0,0.0,2,111,1000.0,0.0,0.0,22,69,746.7924385090004,0.0,1382.1742275759307,1568.0,116.98223628493304,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,132875,2,3,2,0,1,,245.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,1091.91857425103,1000.0,37562.34279907177,1,1,0,1,100.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04174393509977626,25041.561866047847,7,4,7,7_1,7_2,7_0_1 -27044,2,58.0,0.0,2,221,410.0,1400.0,0.0,0,56,0.0,0.0,566.6914333061316,1810.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,116183,2,1,1,0,1,,140.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,3142.79256152038,410.0,13330.505676021447,0,1,0,1,120.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13577879519272695,13330.505676021447,3,2,3_0,3_1_0,3_1_0,3_0_1 -27045,2,80.0,0.0,2,221,600.0,2000.0,0.0,77,75,0.0,0.0,829.3045365455583,2600.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,1,,2,100077,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,2328.11113305793,600.0,31767.975601711136,5,5,0,1,110.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0818434272487906,21178.650401140756,5,3,5,5_1,5_1,5_0_1 -27046,2,52.0,0.0,1,221,800.0,0.0,0.0,0,48,0.0,0.0,1105.7393820607444,915.0,197.83760548187203,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,124886,1,2,1,0,2,,200.0,416.0,12,1.0,2.0,4.0,1.0,1.0,2,2,3424.76577594287,800.0,16964.627055883437,0,1,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05393575685371005,16964.627055883437,4,2,4_0,4_1_0,4_1_0,4_1_0 -27047,2,70.0,0.0,5,221,1250.0,0.0,0.0,72,75,0.0,0.0,1727.717784469913,1370.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,111429,2,1,1,0,1,,290.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,2594.78498927802,1250.0,46510.90445841149,5,5,0,1,120.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029455458154442227,31007.269638940994,8,4,8,8_1,8_1,8_0_0 -27048,2,95.0,0.0,2,221,240.0,2000.0,0.0,0,75,0.0,0.0,331.72181461822333,2240.0,0.0,3627.3058016948976,33,0,0,0,0,0,0,0,0,0,,1,,2,113274,2,1,1,0,2,,200.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,2652.24065747069,240.0,45328.83176460969,0,5,0,1,120.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04941667174729333,30219.22117640646,8,4,8,8_1,8_1,8_0_1 -27049,2,81.0,0.0,2,221,330.0,1200.0,0.0,75,75,0.0,0.0,456.1174951000571,1530.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,2,113634,2,1,2,0,1,,389.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,2438.22972380701,330.0,31068.85760501949,5,5,0,1,100.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04924545406371211,20712.57173667966,5,3,5,5_1,5_1,5_0_1 -27050,2,65.0,0.0,2,221,1369.0,0.0,0.0,72,72,2987.1697540360015,0.0,1892.196517551449,3849.0,825.756962011292,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,123645,2,1,3,0,1,,570.0,,41,0.0,4.0,5.0,2.0,1.5,5,3,2580.72680878833,1369.0,26116.405188357403,5,5,0,1,130.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14737862934198426,17410.93679223827,4,2,4_0,4_1_0,4_1_0,4_0_1 -27051,2,46.0,0.0,1,221,600.0,1000.0,0.0,56,63,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,31,2,2,2,2,2,2,2,1,2,7.0,1,,1,104510,1,2,1,0,2,,455.0,431.0,43,2.0,2.0,4.0,2.0,1.5,3,2,2661.43905751601,600.0,23441.146271325753,1,1,2,3,100.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.0682560477836867,15627.430847550502,3,2,3_0,3_1_0,3_1_0,3_1_0 -27052,2,52.0,0.0,2,221,960.0,1015.0,0.0,85,67,0.0,155.27587572291867,1326.8872584728933,2125.0,0.0,1840.8576943601606,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,119136,2,2,4,0,1,,900.0,,42,1.0,0.0,6.0,7.0,3.3999999999999995,2,2,2496.82588275452,960.0,34153.0,6,1,0,1,95.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06222000995520159,10045.000000000002,2,1,2_0,2_1_0,2_1_0,2_0_1 -27053,2,65.0,0.0,1,221,300.0,600.0,0.0,77,78,0.0,232.913813584378,414.65226827277917,1125.0,0.0,1088.1917405084694,42,0,0,0,0,0,0,0,0,0,,1,,1,113045,2,1,1,0,1,,400.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2638.2061179026,300.0,24376.78418562553,5,5,0,1,80.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04615046806146762,16251.189457083687,4,2,4_0,4_1_0,4_1_0,4_1_0 -27054,0,84.0,0.0,2,221,800.0,1200.0,0.0,72,72,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,2,116235,2,1,1,0,1,,1000.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,2559.2266793364,800.0,23280.503584500228,5,5,0,1,64.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08590879457313659,15520.335723000151,3,2,3_0,3_1_0,3_1_0,3_0_1 -27055,1,70.0,110.0,1,221,516.0,0.0,0.0,0,74,0.0,0.0,713.2019014291802,546.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,100999,2,2,5,0,1,,170.0,450.0,11,0.0,2.0,3.0,1.0,1.0,2,2,3109.60107556768,516.0,8627.261178446148,0,5,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.06328775595250262,8627.261178446148,1,1,1_1,1_1_1,1_1_1,1_1_0 -27056,2,65.0,0.0,2,221,250.0,1200.0,0.0,0,77,0.0,0.0,345.54355689398267,1450.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,0,,2,,2,119883,2,2,0,1,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,3845.23438230273,250.0,15249.051108989814,0,5,0,1,80.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09508788380577843,15249.051108989814,3,2,3_0,3_0_0,3_1_0,3_0_1 -27057,2,77.0,0.0,1,221,1258.0,1170.0,0.0,77,72,0.0,0.0,1738.7751782905207,2428.0,0.0,2121.973893991515,60,0,0,0,0,0,0,0,0,0,,1,,1,126190,2,1,1,0,1,,360.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,2512.17764901119,1258.0,17194.929526910528,5,5,0,1,120.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14120441704632256,11463.286351273686,2,1,2_0,2_1_0,2_1_0,2_1_0 -27058,2,73.0,0.0,5,221,260.0,643.0,0.0,77,78,0.0,0.0,359.36529916974195,903.0,0.0,1166.1788152449096,31,0,0,0,0,0,0,0,0,0,,1,,3,127587,2,1,1,0,1,,250.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,2472.99372196636,260.0,32729.32700662958,5,5,0,1,70.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027589934856194577,21819.551337753055,6,3,6,6_1,6_1,6_0_0 -27059,1,77.0,24.0,5,221,900.0,0.0,0.0,0,77,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,125374,2,1,4,0,2,,300.0,390.0,11,0.0,4.0,3.0,1.0,1.0,2,2,2514.52208323625,900.0,15148.856972006568,0,5,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06337111781925032,15148.856972006568,3,2,3_1,3_1_1,3_1_1,3_0_0 -27060,1,54.0,148.0,2,221,850.0,0.0,0.0,0,56,0.0,0.0,1174.848093439541,940.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,109089,1,3,1,0,2,,230.0,366.0,32,1.0,2.0,4.0,2.0,1.3,2,2,2188.31396451935,850.0,19221.181835985382,0,1,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04890438101158573,14785.524489219524,3,2,3_1,3_1_1,3_1_1,3_0_1 -27061,2,46.0,0.0,5,221,300.0,1200.0,0.0,45,53,0.0,139.7482881506268,414.65226827277917,1635.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,1,4.0,1,,3,123744,2,2,3,0,1,,770.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,2777.3998236591,300.0,41916.45445444429,4,1,1,2,95.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03900616169187099,20958.227227222145,5,3,5,5_1,5_1,5_0_0 -27062,1,69.0,80.0,2,221,730.0,1130.0,0.0,77,75,0.0,0.0,1008.9871861304293,1860.0,0.0,2049.4277779576173,10,0,0,0,0,0,0,0,0,0,,1,,2,130418,2,1,1,0,1,,470.0,530.0,41,0.0,5.0,3.0,2.0,1.5,3,2,2779.82544020553,730.0,27003.901471318717,7,5,2,3,85.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06887893595581128,18002.600980879146,4,2,4_1,4_1_1,4_1_1,4_0_1 -27063,1,49.0,109.0,2,221,0.0,0.0,950.0,0,69,0.0,0.0,485.3676680956488,950.0,0.0,1086.08348592,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,108542,1,2,0,0,1,,220.0,345.0,32,1.0,3.0,4.0,2.0,1.5,2,2,2642.45537274177,0.0,14110.393252902417,0,1,2,3,70.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06732625965648344,9406.928835268278,1,1,1_1,1_0_1,1_1_1,1_0_1 -27064,2,64.0,0.0,2,221,180.0,0.0,0.0,0,22,0.0,0.0,248.7913609636675,216.0,61.9317721508469,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107474,1,2,3,0,2,,78.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,2624.28560124212,180.0,15629.448761269588,0,1,0,1,70.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.013820065141085257,15629.448761269588,3,2,3_0,3_1_0,3_1_0,3_0_1 -27065,2,79.0,0.0,1,221,360.0,0.0,0.0,72,72,2987.1697540360015,0.0,497.582721927335,2420.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123288,2,1,1,0,1,,305.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2512.17764901119,360.0,25626.80895164408,5,5,0,1,120.0,1,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09443235810460691,17084.539301096054,4,2,4_0,4_1_0,4_1_0,4_1_0 -27066,1,25.0,350.0,1,221,0.0,0.0,900.0,85,85,0.0,0.0,459.8220013537725,960.0,103.2196202514115,1028.9211971873683,71,0,0,0,0,0,0,0,0,0,,1,,1,117415,2,2,5,0,1,,210.0,500.0,41,0.0,1.0,5.0,3.0,1.8,1,1,3525.38971392824,0.0,5951.793635419923,6,6,2,3,100.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.16129591494686762,3306.5520196777347,1,1,1_1,1_1_1,1_1_1,1_1_0 -27067,2,60.0,0.0,7,221,100.0,150.0,0.0,0,56,0.0,0.0,138.21742275759306,250.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,2,10.0,8,,5,116681,2,1,0,0,1,,92.0,255.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3268.67999059916,100.0,20489.978011682775,0,1,2,3,35.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012201086787768023,20489.978011682775,5,3,5,5_0,5_1,5_0_0 -27068,1,82.0,180.0,1,221,1695.0,0.0,0.0,0,78,0.0,0.0,2342.7853157412023,1785.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,130858,2,2,0,0,2,,298.0,370.0,11,0.0,6.0,2.0,1.0,1.0,1,1,3766.66107764342,1695.0,14337.137323031631,0,5,2,3,55.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.12450184160073012,14337.137323031631,3,2,3_1,3_0_1,3_1_1,3_1_0 -27069,1,21.0,310.0,8,221,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,104441,2,2,0,0,1,,221.0,310.0,31,0.0,0.0,2.0,3.0,1.6,1,1,4043.36001072351,0.0,11435.0,0,6,2,3,45.0,1,2,7,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.10319195452557936,7146.875,1,1,1_1,1_0_1,1_1_1,1_0_0 -27070,1,81.0,95.0,2,221,180.0,0.0,0.0,0,86,0.0,0.0,248.7913609636675,240.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,8,,2,129924,2,2,0,1,1,,223.0,324.0,11,0.0,6.0,2.0,1.0,1.0,3,2,3717.7236597397,180.0,11865.0,0,5,2,3,35.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.020227560050568902,11865.0,2,1,2_1,2_0_1,2_1_1,2_0_1 -27071,2,30.0,0.0,1,221,3998.4,0.0,0.0,54,21,0.0,414.0690019277831,5526.4854315396005,4548.0,258.04905062852873,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,100372,2,3,4,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,3130.7243160469,3998.4,24249.68011789561,1,1,0,1,60.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.18754886571240578,13472.044509942005,3,2,3_0,3_1_0,3_1_0,3_1_0 -27072,2,61.0,0.0,2,221,765.0,0.0,0.0,0,52,0.0,310.55175144583734,1057.3632840955868,1065.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,122698,1,1,1,0,2,,0.0,,12,1.0,3.0,5.0,1.0,1.0,2,1,2578.68635138826,765.0,6980.660664928464,0,4,0,1,100.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15256435617199762,6980.660664928464,1,1,1_0,1_1_0,1_1_0,1_0_1 -27073,2,49.0,0.0,1,221,750.0,0.0,0.0,0,52,2987.1697540360015,56.93448776507018,1036.630670681948,2930.0,215.04087552377396,0.0,50,2,2,1,1,1,2,2,2,2,15.0,1,,1,132068,2,1,2,0,1,,345.0,,22,1.0,0.0,6.0,3.0,2.0,1,1,2871.19611876958,750.0,46735.0,0,1,0,1,120.0,1,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.0626939124852894,23367.5,6,3,6,6_1,6_1,6_1_0 -27074,2,68.0,0.0,6,221,656.0,0.0,0.0,77,78,0.0,465.827627168756,906.7062932898104,1256.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,113529,2,1,1,0,1,,430.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,2575.33805083341,656.0,18694.24094787807,5,5,0,1,88.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06718646686441501,12462.827298585378,2,1,2_0,2_1_0,2_1_0,2_0_0 -27075,2,47.0,0.0,5,221,700.0,1300.0,0.0,67,65,0.0,0.0,967.5219593031513,2000.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,106086,1,3,3,0,2,,600.0,547.0,43,2.0,0.0,4.0,3.0,2.0,4,4,2485.17899363588,700.0,39555.178742983095,1,1,2,3,100.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05056227941719997,19777.589371491547,5,3,5,5_1,5_1,5_0_0 -27076,2,56.0,0.0,7,221,1240.0,0.0,0.0,52,42,0.0,207.03450096389156,1713.8960421941538,1620.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,117992,2,1,1,0,1,,326.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,2392.0896501612,1240.0,47129.90796289307,1,1,0,1,110.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03437307794607788,31419.938641928715,8,4,8,8_1,8_1,8_0_0 -27077,1,40.0,40.0,8,221,580.0,0.0,0.0,0,45,0.0,517.5862524097289,801.6610519940398,1140.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,115832,2,1,2,0,1,,274.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,2636.62411027182,580.0,23089.533052935403,0,1,1,2,101.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04937302098688697,15393.022035290269,3,2,3_1,3_1_1,3_1_1,3_0_0 -27078,2,59.0,0.0,2,221,1251.0,0.0,0.0,78,63,0.0,0.0,1729.0999586974892,1251.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,7.0,1,,2,116983,2,1,2,0,1,,234.0,,42,1.0,2.0,5.0,2.0,1.5,2,1,2575.38733765706,1251.0,38284.87440243773,5,1,0,1,86.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03267608995787497,25523.249601625153,7,4,7,7_1,7_1,7_0_1 -27079,2,52.0,0.0,6,221,580.0,0.0,0.0,0,54,0.0,0.0,801.6610519940398,620.0,68.81308016760767,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,4,105879,2,1,3,0,1,,200.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,2780.81703052486,580.0,22606.388353979237,0,1,1,2,100.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027425875831725503,22606.388353979237,6,3,6,6_1,6_1,6_0_0 -27080,2,35.0,0.0,2,221,1521.0,0.0,0.0,47,46,0.0,0.0,2102.2870001429906,1611.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,2,131527,1,2,1,0,1,,271.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2364.52677380028,1521.0,48481.79045089043,1,1,1,2,70.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03322897081599865,23086.566881376395,6,3,6,6_1,6_1,6_0_1 -27081,2,66.0,0.0,1,221,557.0,0.0,0.0,75,75,2972.2339052658212,569.3448776507017,769.8710447597933,3287.0,326.8621307961364,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109087,2,2,1,0,1,,417.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,2643.44344556444,557.0,65360.0,5,5,0,1,160.0,1,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05029069767441861,43573.333333333336,10,5,10,10_1,10_1,10_1_0 -27082,2,66.0,0.0,6,221,966.0,0.0,0.0,72,74,0.0,0.0,1335.180303838349,1116.0,258.04905062852873,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,121385,2,1,3,0,2,,238.0,,41,0.0,2.0,5.0,2.0,1.5,4,4,2591.00113031408,966.0,83196.04346137392,6,5,0,1,135.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013414099439934714,55464.02897424928,10,5,10,10_1,10_1,10_0_0 -27083,2,64.0,0.0,8,221,1200.0,0.0,0.0,0,47,0.0,0.0,1658.6090730911167,1360.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,124168,2,1,1,0,1,,250.0,,12,1.0,1.0,2.0,1.0,1.0,2,2,2534.6013127202,1200.0,30983.392591626114,0,1,1,2,80.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04389448301951179,30983.392591626114,8,4,8,8_1,8_1,8_0_0 -27084,2,40.0,0.0,2,221,2200.0,0.0,0.0,63,52,0.0,0.0,3040.783300667047,2260.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,102737,2,2,3,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2340.50521047611,2200.0,21355.94795754868,4,1,1,2,110.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10582531875861584,10169.499027404134,2,1,2_0,2_1_0,2_1_0,2_0_1 -27085,2,77.0,0.0,1,221,700.0,0.0,0.0,71,78,0.0,0.0,967.5219593031513,898.0,340.62474682965797,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126842,2,1,1,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,2879.83754316718,700.0,19454.390121735887,5,5,0,1,116.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04615924705841525,12969.593414490591,2,1,2_0,2_1_0,2_1_0,2_1_0 -27086,2,86.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,792.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111712,2,1,0,0,2,,255.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,2084.49597389275,0.0,38852.21006427598,0,5,0,1,93.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020384940745706303,38852.21006427598,9,5,9,9_0,9_3,9_0_1 -27087,2,46.0,0.0,1,111,834.0,1797.0,0.0,22,31,0.0,0.0,1152.733305798326,2631.0,0.0,3259.134262822866,50,0,0,0,0,0,0,0,0,0,,1,,1,114806,1,1,3,0,2,,797.0,,43,2.0,0.0,8.0,5.0,2.8,1,1,1277.04693147432,834.0,102419.29789875109,1,1,0,1,255.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02568851821851908,36578.32067812539,9,5,9,9_1,9_3,9_1_0 -27088,1,41.0,274.0,1,111,312.0,0.0,0.0,0,53,0.0,0.0,431.23835900369033,337.0,43.00817510475479,0.0,50,2,2,2,2,2,2,2,1,0,,2,,1,128023,2,3,0,0,1,,157.0,455.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2161.73679527658,312.0,4839.267902296582,0,4,2,3,55.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.06963863270311386,4839.267902296582,1,1,1_1,1_0_1,1_3_1,1_1_0 -27090,2,59.0,0.0,2,111,600.0,0.0,0.0,0,55,0.0,0.0,829.3045365455583,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,107179,2,1,0,1,2,,330.0,,12,1.0,4.0,3.0,1.0,1.0,2,2,1825.78748764983,600.0,18488.08756710962,0,4,0,1,66.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0324533296276356,18488.08756710962,4,2,4_0,4_0_0,4_3_0,4_0_1 -27091,1,71.0,206.0,6,111,480.0,0.0,0.0,0,77,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,2,2,1,2,2,2,2,1,0,,2,,4,114679,1,2,0,0,1,,180.0,358.0,11,0.0,1.0,1.0,1.0,1.0,3,3,2711.19828664145,480.0,9283.196743396622,0,5,2,3,25.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.05170632630849243,9283.196743396622,1,1,1_1,1_0_1,1_3_1,1_0_0 -27092,1,46.0,172.0,2,111,468.0,0.0,0.0,0,42,0.0,0.0,646.8575385055356,468.0,0.0,0.0,20,2,2,1,2,2,2,2,1,0,,2,,2,131313,2,1,0,0,1,,180.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2155.66820011241,468.0,8845.393501832257,0,1,1,2,36.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05290889544971145,8845.393501832257,1,1,1_1,1_0_1,1_3_1,1_0_1 -27093,2,65.0,0.0,1,111,1300.0,0.0,0.0,0,78,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,1,,1,131879,2,2,2,0,1,,343.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1350.34156984317,1300.0,16042.29436778885,0,5,0,1,70.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.0810357901554441,16042.29436778885,4,2,4_0,4_1_0,4_3_0,4_1_0 -27094,2,74.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,249.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109457,2,1,0,0,1,,98.0,,11,0.0,1.0,1.0,1.0,1.0,4,4,2327.12255641107,0.0,34559.391403932736,0,5,0,1,28.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0072049879897961595,34559.391403932736,9,5,9,9_0,9_3,9_0_1 -27095,2,77.0,0.0,1,111,390.0,300.0,0.0,0,74,0.0,0.0,539.0479487546129,690.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,1,132070,1,2,0,0,1,,39.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1796.68780505551,390.0,56055.0,0,5,0,1,79.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.01230933904201231,56055.0,10,5,10,10_0,10_3,10_1_0 -27096,2,74.0,0.0,5,111,270.0,0.0,0.0,0,74,0.0,0.0,373.1870414455012,270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,101654,1,2,0,1,2,,0.0,596.0,11,0.0,0.0,2.0,1.0,1.0,2,2,2098.17540891287,270.0,24005.834232849655,0,5,2,3,60.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011247265868000171,24005.834232849655,6,3,6,6_0,6_3,6_0_0 -27097,2,82.0,0.0,1,111,270.0,742.0,0.0,77,78,0.0,0.0,373.1870414455012,1012.0,0.0,1345.730452428807,33,0,0,0,0,0,0,0,0,0,,1,,1,123049,2,1,1,0,2,,260.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1307.2493254866,270.0,24124.206812643806,5,5,0,1,85.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041949565756068626,16082.804541762538,4,2,4_0,4_1_0,4_3_0,4_1_0 -27098,2,42.0,0.0,6,111,348.0,417.0,0.0,0,56,0.0,0.0,480.99663119642383,765.0,0.0,756.2932596533861,71,2,2,1,2,1,2,2,2,2,25.0,2,,4,106134,2,3,0,0,1,,209.0,562.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2161.73679527658,348.0,11070.0,0,1,2,3,42.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.06910569105691057,11070.0,2,1,2_0,2_0_0,2_3_0,2_0_0 -27099,2,51.0,0.0,1,111,1080.0,0.0,0.0,0,22,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,111851,2,2,0,0,1,,160.0,543.0,12,1.0,2.0,2.0,1.0,1.0,4,3,2085.32401570692,1080.0,21723.15283460288,0,1,2,3,40.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04971654014603555,21723.15283460288,6,3,6,6_0,6_3,6_1_0 -27100,2,81.0,0.0,7,111,420.0,0.0,0.0,77,78,0.0,0.0,580.5131755818909,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,112240,2,1,0,0,1,,350.0,487.0,41,0.0,1.0,2.0,2.0,1.5,2,2,1926.8399907218,420.0,24288.271008222728,5,5,2,3,55.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017292297169189612,16192.180672148485,4,2,4_0,4_0_0,4_3_0,4_0_0 -27102,2,61.0,0.0,5,111,550.0,1400.0,0.0,74,31,0.0,124.22070057833493,760.1958251667618,2070.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,101165,2,1,2,0,1,,403.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1300.13919913653,550.0,97601.87070826083,5,1,0,1,120.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021208609886048006,65067.91380550722,10,5,10,10_1,10_3,10_0_0 -27103,2,83.0,0.0,2,111,152.0,0.0,0.0,0,78,0.0,0.0,210.09048259154144,152.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103981,2,1,4,0,1,,1008.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1365.7214992604,152.0,30054.97722030751,0,5,0,1,80.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.005057398609415576,30054.97722030751,8,4,8,8_1,8_3,8_0_1 -27104,2,69.0,0.0,6,111,371.0,0.0,0.0,0,75,0.0,0.0,512.7866384306702,371.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,131724,2,1,0,0,1,,84.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1825.78748764983,371.0,28756.08825352866,0,5,0,1,84.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012901615711047715,28756.08825352866,8,4,8,8_0,8_3,8_0_0 -27105,2,50.0,0.0,8,111,750.0,720.0,0.0,37,34,0.0,0.0,1036.630670681948,1470.0,0.0,1305.830088610163,50,0,0,0,0,0,0,0,0,3,90.0,2,2003.0,6,115336,2,1,0,0,1,,360.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1862.25987375165,750.0,77557.94964375964,1,1,0,1,100.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01895356964375704,43087.749802088685,9,5,9,9_0,9_3,9_0_0 -27106,2,61.0,0.0,6,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,908.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,102427,1,2,0,0,1,,161.0,550.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2165.40829846341,0.0,31676.19820109642,0,5,2,3,53.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02866505614832815,31676.19820109642,8,4,8,8_0,8_3,8_0_0 -27107,1,46.0,100.0,6,111,360.0,300.0,0.0,56,67,0.0,0.0,497.582721927335,660.0,0.0,544.0958702542347,10,2,2,1,2,2,2,2,1,2,15.0,2,,4,125411,2,3,0,1,1,720.0,0.0,400.0,43,2.0,2.0,5.0,3.0,2.0,1,1,1485.34201690455,360.0,22731.03427627743,4,1,2,3,80.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.029035194438503373,11365.517138138715,2,1,2_1,2_0_1,2_3_1,2_0_0 -27108,2,70.0,0.0,7,111,1621.0,0.0,0.0,77,78,0.0,0.0,2240.5044229005834,1621.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,100612,2,1,2,0,1,,370.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,1349.0969487324,1621.0,8494.726707713133,5,5,0,1,106.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1908242673102299,5663.151138475422,1,1,1_0,1_1_0,1_3_0,1_0_0 -27109,2,62.0,0.0,7,111,396.0,672.0,0.0,77,78,0.0,0.0,547.3409941200684,1068.0,0.0,1218.7747493694856,71,0,0,0,0,0,0,0,0,0,,2,,5,130672,2,1,0,0,1,,400.0,443.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1490.68961761229,396.0,22542.74738057482,5,5,2,3,80.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04737665653478866,15028.498253716547,3,2,3_0,3_0_0,3_3_0,3_0_0 -27110,0,44.0,0.0,2,111,1560.0,0.0,0.0,0,62,0.0,0.0,2156.1917950184516,1586.0,44.72850210894499,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,118555,2,1,0,0,1,,312.0,,32,1.0,0.0,4.0,2.0,1.3,2,1,2140.13296657759,1560.0,14274.174608895932,0,4,0,1,80.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1111097519440161,10980.134314535331,2,1,2_0,2_0_0,2_3_0,2_0_1 -27111,1,84.0,135.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,775.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,124597,2,1,0,0,1,,180.0,250.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1656.81036441742,0.0,12146.950090047638,0,5,2,3,40.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0638020239035131,12146.950090047638,2,1,2_1,2_0_1,2_3_1,2_0_1 -27112,2,79.0,0.0,5,111,150.0,886.0,0.0,77,75,0.0,0.0,207.32613413638958,1036.0,0.0,1606.8964701508398,33,0,0,0,0,0,0,0,0,0,,1,,3,122455,2,2,3,0,2,,790.0,,41,0.0,1.0,5.0,2.0,1.5,3,2,1340.11034077018,150.0,61401.322669684734,5,5,0,1,90.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016872600702321636,40934.21511312316,9,5,9,9_1,9_3,9_0_0 -27113,2,58.0,0.0,6,111,0.0,0.0,982.0,85,78,0.0,310.55175144583734,501.7168948104496,1282.0,0.0,1122.667350708884,71,0,0,0,0,0,0,0,0,0,,1,,4,109758,2,1,3,0,1,,240.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1739.63096995533,0.0,10352.1302490657,7,7,0,1,83.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12383924556162756,6901.4201660438,1,1,1_0,1_1_0,1_3_0,1_0_0 -27114,2,51.0,0.0,9,111,215.0,475.0,0.0,0,46,0.0,0.0,297.16745892882506,690.0,0.0,861.4851279025382,41,0,0,0,0,0,0,0,0,2,5.0,2,2004.0,6,127949,2,1,0,0,1,,142.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,2639.09292290085,215.0,25330.6969138512,0,1,1,2,67.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027239676916378002,25330.6969138512,7,4,7,7_0,7_3,7_0_0 -27115,2,30.0,0.0,9,111,0.0,0.0,0.0,46,22,0.0,0.0,0.0,632.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,124409,2,1,0,0,1,,65.0,635.0,43,2.0,0.0,2.0,2.0,1.5,3,2,2626.63411245956,0.0,42585.501003180005,1,1,2,3,52.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014840731824496004,28390.334002120002,8,4,8,8_0,8_3,8_0_0 -27116,2,64.0,0.0,2,111,200.0,800.0,0.0,0,78,0.0,0.0,276.4348455151861,1000.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,0,,1,,2,106055,2,1,2,0,1,,700.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1768.64069311197,200.0,15665.743418269903,0,5,0,1,56.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06383354899287877,15665.743418269903,3,2,3_0,3_1_0,3_3_0,3_0_1 -27117,2,43.0,0.0,7,111,216.0,185.0,0.0,0,56,0.0,0.0,298.549633156401,401.0,0.0,335.52578665677805,50,0,0,0,0,0,0,0,0,0,,2,,5,109876,2,1,0,0,1,,107.0,290.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2422.92982796872,216.0,24602.787342639756,0,1,2,3,47.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016298966227497973,24602.787342639756,7,4,7,7_0,7_3,7_0_0 -27118,1,43.0,50.0,9,111,428.0,0.0,0.0,68,63,0.0,155.27587572291867,591.5705694024982,578.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,2,2008.0,6,131093,2,1,0,0,1,,288.0,665.0,43,2.0,0.0,3.0,4.0,2.3,3,3,2523.23025476847,428.0,35506.68398091511,1,1,2,3,49.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01627862518253396,15437.688687354399,3,2,3_1,3_0_1,3_3_1,3_0_0 -27119,2,46.0,0.0,9,111,3800.0,0.0,0.0,46,21,0.0,0.0,5252.262064788536,4000.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,124697,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,1683.59288291156,3800.0,43513.0,1,1,1,2,240.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09192655068600189,15540.357142857143,3,2,3_0,3_1_0,3_3_0,3_0_0 -27120,2,62.0,0.0,9,111,1926.0,0.0,0.0,78,75,0.0,103.51725048194578,2662.0675623112425,2026.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,107897,2,1,1,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1731.07974525689,1926.0,54469.747330092694,5,5,1,2,110.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03719495865699938,36313.16488672846,9,5,9,9_1,9_3,9_0_0 -27121,2,37.0,0.0,6,111,850.0,0.0,0.0,0,22,0.0,0.0,1174.848093439541,940.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,132164,2,1,2,0,1,,120.0,,32,1.0,0.0,2.0,2.0,1.3,3,3,2001.4597553681,850.0,12828.872648198932,0,1,1,2,39.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07327222163453062,9868.36357553764,2,1,2_0,2_1_0,2_3_0,2_0_0 -27122,2,64.0,0.0,6,111,2000.0,0.0,0.0,0,74,0.0,0.0,2764.3484551518613,2075.0,129.02452531426437,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,121664,2,1,1,0,1,,160.0,,11,0.0,2.0,6.0,1.0,1.0,3,2,1993.64619193481,2000.0,20277.971263771913,0,5,0,1,180.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10232779073452679,20277.971263771913,5,3,5,5_1,5_3,5_0_0 -27123,2,32.0,0.0,9,111,0.0,0.0,0.0,37,56,0.0,0.0,0.0,1304.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2008.0,6,110776,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,1888.48675719463,0.0,65712.0,1,1,3,4,61.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01984416849281714,31291.42857142857,8,4,8,8_1,8_3,8_0_0 -27124,2,52.0,0.0,9,111,360.0,500.0,0.0,0,63,0.0,0.0,497.582721927335,860.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,106040,2,1,1,0,1,,230.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1782.8626049707,360.0,8248.423510305834,0,1,0,1,80.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10426234769898629,8248.423510305834,1,1,1_0,1_1_0,1_3_0,1_0_0 -27125,1,46.0,270.0,6,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,504.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,4,123993,2,2,0,0,1,,143.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3015.77073919065,0.0,12023.260336478495,0,1,2,3,34.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04191874632131746,12023.260336478495,2,1,2_1,2_0_1,2_3_1,2_0_0 -27126,0,82.0,0.0,2,111,500.0,770.0,0.0,0,77,0.0,0.0,691.0871137879653,1270.0,0.0,1396.5127336525356,71,0,0,0,0,0,0,0,0,0,,1,,2,112955,1,2,2,0,2,,255.0,,21,1.0,1.0,4.0,2.0,1.5,3,3,1882.18586429277,500.0,23113.93671591717,0,5,0,1,90.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05494520538015611,15409.29114394478,3,2,3_0,3_1_0,3_3_0,3_0_1 -27127,2,53.0,0.0,7,111,1370.0,0.0,0.0,56,21,0.0,0.0,1893.578691779025,1370.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,121693,2,1,1,0,1,,420.0,,43,3.0,0.0,4.0,4.0,2.5,3,3,1785.49676347792,1370.0,47342.464296916136,1,1,1,2,90.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028938079593994456,18936.985718766453,5,3,5,5_1,5_3,5_0_0 -27128,2,36.0,0.0,9,111,680.0,0.0,0.0,34,34,0.0,0.0,939.8784747516328,680.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,115152,2,1,0,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,2610.39976543938,680.0,57120.31754396051,1,1,1,2,61.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011904695723665462,31733.509746644726,8,4,8,8_0,8_3,8_0_0 -27129,2,52.0,0.0,9,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,1116.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,119236,2,1,0,0,1,,243.0,750.0,12,1.0,2.0,3.0,1.0,1.0,2,2,2870.85841968572,0.0,26134.20176403923,0,1,2,3,63.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04270266259043047,26134.20176403923,7,4,7,7_0,7_3,7_0_0 -27130,2,44.0,0.0,7,111,106.0,0.0,0.0,55,48,0.0,0.0,146.51046812304864,106.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,5,108616,2,1,3,0,1,,491.0,,43,2.0,0.0,7.0,4.0,2.1,3,3,1685.98262599131,106.0,55509.27796192284,1,1,0,1,150.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0019095906827091462,26432.989505677542,7,4,7,7_1,7_3,7_0_0 -27131,1,39.0,57.0,7,111,500.0,0.0,0.0,0,55,0.0,0.0,691.0871137879653,650.0,258.04905062852873,0.0,71,2,2,2,2,1,2,2,2,2,25.0,2,,5,116458,2,2,0,0,1,,600.0,568.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2842.67672539592,500.0,13759.921850661554,0,1,2,3,48.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0.04723864038288481,13759.921850661554,3,2,3_1,3_0_1,3_3_1,3_0_0 -27132,0,92.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,322.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,105687,2,1,0,1,1,,0.0,,11,0.0,1.0,1.0,1.0,1.0,2,2,3579.52815681841,0.0,6611.06210409909,0,5,5,0,20.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04870624340381687,6611.06210409909,1,1,1_0,1_0_0,1_3_0,1_0_1 -27133,1,46.0,341.0,9,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1163.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,2007.0,6,129979,2,1,0,0,1,,293.0,487.0,32,1.0,0.0,5.0,3.0,1.8,3,3,2620.57561688421,0.0,14629.749427364823,0,1,2,3,80.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07949555156594947,8127.638570758235,1,1,1_1,1_0_1,1_3_1,1_0_0 -27134,2,35.0,0.0,9,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,729.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,125748,2,1,0,0,1,,107.0,365.0,12,1.0,0.0,2.0,1.0,1.0,3,3,2193.02499195181,0.0,25000.0,0,1,2,3,47.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02916,25000.0,7,4,7,7_0,7_3,7_0_0 -27135,2,51.0,0.0,2,111,1100.0,0.0,0.0,31,38,746.7924385090004,310.55175144583734,1520.3916503335236,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119013,2,1,1,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1798.71444866504,1100.0,65380.75520354969,1,1,1,2,90.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029060539207366697,28426.415305891172,8,4,8,8_1,8_3,8_0_1 -27136,1,33.0,160.0,6,111,300.0,400.0,0.0,35,63,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,41,0,0,0,0,0,0,0,0,2,5.0,2,,4,118134,1,3,0,0,2,,290.0,420.0,43,2.0,0.0,3.0,3.0,1.8,1,1,2364.61867810394,300.0,23710.483455979956,4,1,2,3,73.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02952280586347365,13172.490808877754,2,1,2_1,2_0_1,2_3_1,2_0_0 -27137,2,64.0,0.0,9,111,1140.0,0.0,0.0,77,74,0.0,0.0,1575.678619436561,1140.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2007.0,6,100114,2,1,1,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1824.46501992588,1140.0,44638.1801383297,5,5,0,1,90.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025538675556826974,29758.786758886465,8,4,8,8_1,8_3,8_0_0 -27138,2,54.0,0.0,2,111,1052.0,0.0,0.0,0,55,0.0,362.31037668681023,1454.047287409879,1402.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,123555,1,3,0,0,1,,187.0,822.0,22,1.0,0.0,5.0,2.0,1.5,4,4,2660.51611586595,1052.0,32129.30165193694,0,4,2,3,87.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.04363618030631797,21419.534434624627,6,3,6,6_0,6_3,6_0_1 -27139,2,71.0,0.0,6,111,213.0,0.0,0.0,75,74,0.0,0.0,294.4031104736732,213.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130056,2,1,2,0,1,,426.0,,41,0.0,3.0,6.0,2.0,1.5,3,2,1839.26822217194,213.0,38374.18684795344,5,5,0,1,150.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00555060621463982,25582.79123196896,7,4,7,7_1,7_3,7_0_0 -27140,2,38.0,0.0,1,111,200.0,2000.0,0.0,46,37,0.0,0.0,276.4348455151861,2200.0,0.0,3627.3058016948976,10,0,0,0,0,0,0,0,0,0,,1,,1,132979,2,1,1,0,1,,397.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,1700.91512229788,200.0,104575.56781473127,1,4,1,2,135.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021037418643497837,45467.63818031795,10,5,10,10_1,10_3,10_1_0 -27141,2,40.0,0.0,8,111,700.0,0.0,0.0,0,46,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,111754,2,1,2,0,1,,250.0,,32,1.0,0.0,3.0,2.0,1.5,3,2,1913.0549174531,700.0,29886.19350227866,0,1,1,2,85.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02342218656740708,19924.129001519108,5,3,5,5_1,5_3,5_0_0 -27142,2,51.0,0.0,1,111,750.0,0.0,0.0,65,62,746.7924385090004,0.0,1036.630670681948,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,114560,2,1,2,0,1,,480.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1762.54728738961,750.0,40634.435848887944,1,1,0,1,125.0,8,7,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030762085750335552,27089.62389925863,7,4,7,7_1,7_3,7_1_0 -27143,1,82.0,128.0,2,111,477.0,0.0,0.0,0,78,0.0,0.0,659.2971065537189,477.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,109369,2,1,0,0,1,,0.0,390.0,11,0.0,8.0,1.0,1.0,1.0,2,2,3271.84017603535,477.0,10889.501831981444,0,5,2,3,30.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04380365671082361,10889.501831981444,2,1,2_1,2_0_1,2_3_1,2_0_1 -27144,1,85.0,200.0,5,111,660.0,0.0,0.0,0,78,0.0,0.0,912.2349902001142,660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119340,2,1,2,0,1,,60.0,550.0,11,0.0,0.0,2.0,1.0,1.0,4,3,2168.77176764449,660.0,9278.74648805177,0,5,2,3,34.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07113029770237621,9278.74648805177,1,1,1_1,1_1_1,1_3_1,1_0_0 -27145,0,64.0,0.0,9,111,3000.0,0.0,0.0,77,72,0.0,0.0,4146.522682727792,3075.0,129.02452531426437,0.0,20,0,0,0,0,0,0,0,0,0,,1,2010.0,6,101981,2,1,1,0,1,,500.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1883.17086072106,3000.0,49088.58157450077,5,5,0,1,180.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06264185888796019,32725.72104966718,8,4,8,8_1,8_3,8_0_0 -27146,2,57.0,0.0,6,111,1200.0,0.0,0.0,52,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,130747,2,1,2,0,1,,199.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1812.57478091287,1200.0,52626.31876544882,1,1,0,1,90.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02280227893857257,35084.212510299214,9,5,9,9_1,9_3,9_0_0 -27147,2,46.0,0.0,8,111,900.0,480.0,0.0,54,54,0.0,62.110350289167464,1243.9568048183376,1440.0,0.0,870.5533924067755,10,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,131448,2,1,1,0,1,,529.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1685.98262599131,900.0,72982.8561407075,1,1,0,1,136.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019730661091472604,31731.67658291631,8,4,8,8_1,8_3,8_0_0 -27148,2,54.0,0.0,9,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,2374.0,0.0,0.0,20,1,2,2,2,2,2,2,1,0,,2,2009.0,6,103894,2,1,0,1,1,,0.0,850.0,12,1.0,3.0,5.0,1.0,1.0,4,2,3041.92217443798,0.0,44335.49011714717,0,1,2,3,180.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.05354626719423212,44335.49011714717,10,5,10,10_0,10_3,10_0_0 -27149,2,56.0,0.0,1,111,900.0,2400.0,0.0,0,75,0.0,0.0,1243.9568048183376,3300.0,0.0,4352.7669620338775,71,0,0,0,0,0,0,0,0,0,,1,,1,119523,1,1,3,0,2,,300.0,,11,0.0,1.0,14.0,1.0,1.0,3,3,1967.02850485985,900.0,32028.630806456404,0,5,0,1,400.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.103032815231514,32028.630806456404,8,4,8,8_1,8_3,8_1_0 -27150,2,77.0,0.0,2,111,400.0,1253.0,0.0,75,77,0.0,0.0,552.8696910303722,1653.0,0.0,2272.5070847618535,71,0,0,0,0,0,0,0,0,0,,1,,2,113888,2,1,2,0,2,,216.0,,41,0.0,1.0,5.0,2.0,1.5,4,2,1836.3845648306,400.0,43294.76160157175,5,5,0,1,100.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038180138632291034,28863.174401047832,8,4,8,8_1,8_3,8_0_1 -27151,2,58.0,0.0,5,111,1080.0,1344.0,0.0,74,52,0.0,0.0,1492.748165782005,2424.0,0.0,2437.549498738971,43,0,0,0,0,0,0,0,0,2,13.0,1,,3,113612,2,1,2,0,1,,456.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1839.26822217194,1080.0,43101.79892361399,5,1,0,1,120.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056238951981931636,28734.53261574266,8,4,8,8_1,8_3,8_0_0 -27152,2,44.0,0.0,7,211,1500.0,0.0,0.0,46,47,0.0,77.63793786145933,2073.261341363896,1665.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,110185,2,1,1,0,1,,385.0,,43,5.0,0.0,6.0,5.0,3.0,2,2,1089.19602113501,1500.0,60333.614329749864,1,1,0,1,120.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027596556554693362,20111.204776583287,5,3,5,5_1,5_1,5_0_0 -27153,0,69.0,0.0,5,211,695.0,1083.0,0.0,75,75,0.0,103.51725048194578,960.6110881652718,1878.0,0.0,1964.1860916177873,71,0,0,0,0,0,0,0,0,0,,1,,3,119816,2,1,1,0,1,,313.0,,41,0.0,2.0,7.0,2.0,1.5,3,2,1158.44414860642,695.0,50315.23096428636,5,5,0,1,109.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03732468208946512,33543.487309524244,8,4,8,8_1,8_1,8_0_0 -27154,2,83.0,0.0,2,211,430.0,1270.0,0.0,0,86,0.0,0.0,594.3349178576501,1700.0,0.0,2303.33918407626,71,0,0,0,0,0,0,0,0,0,,1,,2,122693,2,1,2,0,2,,190.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1160.3374548548,430.0,13786.343551724962,0,5,0,1,93.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12331043351863187,13786.343551724962,3,2,3_0,3_1_0,3_1_0,3_0_1 -27155,2,83.0,0.0,2,211,308.0,1170.0,0.0,86,72,0.0,0.0,425.7096620933866,1478.0,0.0,2121.973893991515,42,0,0,0,0,0,0,0,0,0,,1,,2,119564,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1126.84753242014,308.0,15106.987725491937,5,5,0,1,110.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09783552001607726,10071.325150327959,2,1,2_0,2_1_0,2_1_0,2_0_1 -27156,0,87.0,0.0,2,211,434.0,0.0,0.0,74,75,4894.477641987988,20.703450096389155,599.8636147679539,3830.0,170.31237341482898,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,112382,2,1,3,0,1,,430.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1209.35454660324,434.0,49725.09931145963,5,5,0,1,120.0,3,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07702347613245168,33150.06620763975,8,4,8,8_1,8_1,8_0_1 -27157,2,76.0,0.0,5,211,350.0,700.0,0.0,75,78,0.0,569.3448776507017,483.76097965157567,1600.0,0.0,1269.5570305932142,60,2,2,2,1,1,2,2,2,0,,1,,3,111395,2,2,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1239.00220444566,350.0,30796.968331587857,5,5,0,1,84.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.051953165739333854,20531.31222105857,5,3,5,5_1,5_1,5_0_0 -27158,0,78.0,0.0,2,211,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124875,2,2,1,0,1,,400.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1119.8618727159,1000.0,24902.29535443236,0,5,0,1,100.0,3,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04015694078666567,24902.29535443236,7,4,7,7_1,7_1,7_0_1 -27159,0,84.0,0.0,2,211,0.0,0.0,0.0,0,78,0.0,0.0,0.0,5079.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116854,2,1,2,0,1,,230.0,,11,0.0,4.0,5.0,1.0,1.0,2,1,1380.08537357608,0.0,15698.0,0,5,0,1,100.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.323544400560581,15698.0,3,2,3_0,3_1_0,3_1_0,3_0_1 -27160,2,60.0,0.0,2,211,600.0,600.0,0.0,0,78,0.0,165.62760077111324,829.3045365455583,1360.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,1,,2,122450,2,1,3,0,2,,224.0,458.0,11,0.0,1.0,5.0,1.0,1.0,1,1,1357.61029218786,600.0,13004.904768685199,0,7,2,3,100.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10457592917364335,13004.904768685199,2,1,2_0,2_1_0,2_1_0,2_0_1 -27161,2,77.0,0.0,2,211,350.0,0.0,0.0,77,78,1344.2263893162005,0.0,483.76097965157567,1500.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121983,2,2,3,0,1,,150.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,1086.73473054835,350.0,20694.981479780334,5,5,0,1,68.0,3,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07248134053492865,13796.654319853556,3,2,3_0,3_1_0,3_1_0,3_0_1 -27162,2,47.0,0.0,2,211,1700.0,0.0,0.0,34,46,0.0,0.0,2349.696186879082,1760.0,103.2196202514115,0.0,50,2,2,2,1,1,2,2,2,0,,1,,2,110569,2,3,1,0,1,,225.0,526.0,43,2.0,2.0,5.0,2.0,1.5,3,1,1251.34130128908,1700.0,52961.87438523203,1,4,2,3,80.0,3,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03323145225560146,35307.91625682136,9,5,9,9_1,9_1,9_0_1 -27163,2,73.0,0.0,5,211,420.0,1383.0,0.0,75,77,0.0,62.110350289167464,580.5131755818909,1863.0,0.0,2508.281961872022,71,0,0,0,0,0,0,0,0,0,,1,,3,114164,2,2,1,0,1,,188.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1239.14313558207,420.0,42556.78664804375,5,5,0,1,160.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043776801463125466,28371.191098695836,8,4,8,8_1,8_1,8_0_0 -27164,2,43.0,0.0,2,211,0.0,0.0,0.0,0,68,0.0,0.0,0.0,547.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,125221,2,1,0,1,1,480.0,0.0,455.0,12,1.0,2.0,5.0,1.0,1.0,4,3,1903.45561226025,0.0,22409.833350177927,0,1,2,3,95.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024408927610149185,22409.833350177927,6,3,6,6_0,6_1,6_0_1 -27165,2,64.0,0.0,2,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1636.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133653,2,2,5,0,1,,373.0,,11,0.0,2.0,5.0,1.0,1.0,4,3,1166.79972358415,0.0,13910.19028354962,0,5,0,1,84.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11761161901104658,13910.19028354962,3,2,3_0,3_1_0,3_1_0,3_0_1 -27166,2,70.0,0.0,8,211,300.0,0.0,0.0,78,78,0.0,621.1035028916747,414.65226827277917,1284.0,660.6055696090336,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,122530,1,1,1,0,1,,400.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1159.13188267873,300.0,20386.56389098154,5,5,1,2,70.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06298265891526755,13591.042593987693,3,2,3_0,3_1_0,3_1_0,3_0_0 -27167,2,83.0,0.0,2,211,400.0,0.0,0.0,78,78,2987.1697540360015,0.0,552.8696910303722,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130737,1,2,1,0,2,,200.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1192.2058655209,400.0,32658.739994445234,5,5,0,1,90.0,3,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07348721966641103,21772.493329630157,6,3,6,6_1,6_1,6_0_1 -27168,2,67.0,0.0,2,211,460.0,999.0,0.0,0,72,0.0,0.0,635.800144684928,1459.0,0.0,1811.8392479466015,71,0,0,0,0,0,0,0,0,0,,2,,2,105055,1,1,0,0,2,,0.0,430.0,11,0.0,2.0,3.0,1.0,1.0,2,2,2089.66515313637,460.0,26180.60444703321,0,5,2,3,70.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.055728277891816745,26180.60444703321,7,4,7,7_0,7_1,7_0_1 -27169,1,56.0,251.0,2,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,586.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107153,2,1,0,0,1,,0.0,260.0,11,0.0,2.0,1.0,1.0,1.0,2,2,1841.78719456787,0.0,10428.816320673379,0,7,2,3,25.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05619046131231147,10428.816320673379,2,1,2_1,2_0_1,2_1_1,2_0_1 -27170,2,61.0,0.0,2,211,320.0,360.0,0.0,0,72,0.0,0.0,442.2957528242978,680.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,2,,2,112846,1,2,0,0,2,,0.0,309.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1680.61228777612,320.0,18629.415859430224,0,5,3,4,29.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.036501412880092184,18629.415859430224,4,2,4_0,4_0_0,4_1_0,4_0_1 -27171,2,44.0,0.0,5,211,465.0,1165.0,0.0,56,48,0.0,0.0,642.7110158228077,1630.0,0.0,2112.905629487278,71,0,0,0,0,0,0,0,0,0,,2,,3,124438,1,1,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,1718.99569754224,465.0,28528.791542110634,1,4,1,2,70.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.057135262725517055,15849.328634505908,3,2,3_0,3_0_0,3_1_0,3_0_0 -27172,2,41.0,0.0,9,211,2160.0,0.0,0.0,85,22,0.0,0.0,2985.49633156401,2160.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,2005.0,6,125492,2,1,1,0,1,,700.0,450.0,42,1.0,0.0,5.0,4.0,2.3,1,1,1207.89723288893,2160.0,62341.818088722765,6,1,2,3,110.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03464769020572934,27105.138299444683,7,4,7,7_1,7_1,7_0_0 -27173,2,69.0,0.0,2,211,1260.0,1700.0,0.0,75,75,0.0,0.0,1741.5395267456724,2960.0,0.0,3083.2099314406632,71,0,0,0,0,0,0,0,0,0,,1,,2,120032,2,2,2,0,1,,621.0,600.0,41,0.0,2.0,6.0,3.0,2.0,2,2,1395.5303438795,1260.0,37640.72197084092,5,5,2,3,130.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0786382365963389,18820.36098542046,5,3,5,5_1,5_1,5_0_1 -27174,2,66.0,0.0,2,211,560.0,1120.0,0.0,78,75,0.0,0.0,774.0175674425211,1680.0,0.0,2031.2912489491428,50,0,0,0,0,0,0,0,0,0,,1,,2,102581,2,1,2,0,1,,359.0,,41,0.0,1.0,15.0,2.0,1.5,1,1,1158.44414860642,560.0,48415.71865180032,5,5,0,1,200.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034699474608284674,32277.14576786688,8,4,8,8_1,8_1,8_0_1 -27175,2,34.0,0.0,5,211,384.0,775.0,0.0,52,62,0.0,0.0,530.7549033891573,1159.0,0.0,1405.580998156773,50,0,0,0,0,0,0,0,0,1,5.0,1,,3,106845,2,1,2,0,1,,430.0,350.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1271.85485820138,384.0,45192.86525510294,4,1,2,3,75.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025645641042180478,25107.147363946075,7,4,7,7_1,7_1,7_0_0 -27176,2,46.0,0.0,8,211,1554.0,0.0,0.0,55,48,0.0,41.40690019277831,2147.8987496529962,1594.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,107690,2,1,1,0,1,,447.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1134.34762638789,1554.0,52199.0,4,1,1,2,135.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030536983467116228,22695.217391304348,6,3,6,6_1,6_1,6_0_0 -27177,2,67.0,0.0,5,211,1960.0,0.0,0.0,0,72,0.0,51.75862524097289,2709.061486048824,2070.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110523,2,2,3,0,1,,500.0,,21,0.0,2.0,6.0,2.0,1.5,3,2,1209.35454660324,1960.0,94276.92018005413,0,5,0,1,150.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02195659336396039,62851.28012003609,10,5,10,10_1,10_1,10_0_0 -27179,2,76.0,0.0,2,211,553.0,1000.0,0.0,0,75,0.0,51.75862524097289,764.3423478494896,1843.0,412.878481005646,1813.6529008474488,10,0,0,0,0,0,0,0,0,0,,1,,2,128211,2,1,2,0,1,,267.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,1201.91336182175,553.0,23721.36939941285,0,5,0,1,75.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07769365962681808,23721.36939941285,6,3,6,6_1,6_1,6_0_1 -27180,2,44.0,0.0,1,212,1920.0,0.0,0.0,85,65,0.0,0.0,2653.7745169457867,2020.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,105129,2,1,1,0,1,,600.0,,42,1.0,0.0,8.0,4.0,2.1,2,2,1420.69152387335,1920.0,35653.29304917275,6,1,0,1,177.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05665675810686074,16977.758594844167,4,2,4_0,4_1_0,4_0_0,4_1_0 -27181,2,56.0,0.0,1,212,600.0,0.0,0.0,0,11,0.0,0.0,829.3045365455583,960.0,619.317721508469,0.0,31,0,0,0,0,0,0,0,0,1,1.0,5,,1,104966,2,1,4,0,1,,0.0,,22,1.0,0.0,9.0,2.0,1.5,2,2,1534.95583597517,600.0,9350.637087119081,0,1,0,1,120.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10266680131586357,6233.758058079387,1,1,1_0,1_1_0,1_0_0,1_1_0 -27182,2,55.0,0.0,7,212,900.0,0.0,0.0,74,37,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,5,101298,2,1,2,0,1,,150.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,1395.86934304638,900.0,134978.1655459055,5,1,0,1,130.0,3,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006667745085733246,89985.44369727034,10,5,10,10_1,10_0,10_0_0 -27183,2,46.0,0.0,1,212,400.0,0.0,0.0,0,46,0.0,155.27587572291867,552.8696910303722,1250.0,1204.2289029331341,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,101803,2,1,3,0,1,,300.0,400.0,32,1.0,1.0,9.0,4.0,2.1,3,3,1679.0956548218,400.0,19486.411089518577,0,1,2,3,270.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06414726622863635,9279.243375961227,1,1,1_0,1_1_0,1_0_0,1_1_0 -27184,2,56.0,0.0,1,212,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1725.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104689,1,3,4,0,2,,384.0,,12,1.0,2.0,6.0,1.0,1.0,3,3,1605.63285978192,0.0,30548.329018413307,0,1,1,2,150.0,3,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05646790038696516,30548.329018413307,8,4,8,8_1,8_0,8_1_0 -27185,2,61.0,0.0,5,212,1400.0,0.0,0.0,78,78,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,120248,2,1,2,0,1,,260.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1404.56216688066,1400.0,29034.25690428392,6,5,0,1,100.0,3,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048218902402610966,19356.171269522612,5,3,5,5_1,5_0,5_0_0 -27186,2,77.0,0.0,2,212,435.0,0.0,0.0,77,78,0.0,0.0,601.2457889955298,615.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121552,2,1,2,0,2,,299.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1610.04180942337,435.0,27435.863175679297,5,5,0,1,100.0,3,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02241591584204906,18290.575450452863,4,2,4_0,4_1_0,4_0_0,4_0_1 -27187,2,60.0,0.0,6,212,1600.0,0.0,0.0,90,38,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,113703,2,1,1,0,2,,760.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,1544.57524897116,1600.0,41253.48097494949,4,4,0,1,154.0,3,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038784605860813885,27502.320649966325,7,4,7,7_1,7_0,7_0_0 -27188,2,54.0,0.0,2,212,1060.0,0.0,0.0,43,22,0.0,207.03450096389156,1465.1046812304864,1660.0,688.1308016760767,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,122527,1,2,2,0,2,,1952.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1362.43689829289,1060.0,47645.8072007004,1,1,1,2,120.0,3,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03484042138288294,31763.871467133602,8,4,8,8_1,8_0,8_0_1 -27189,2,67.0,0.0,1,212,600.0,0.0,0.0,0,77,0.0,724.6207533736205,829.3045365455583,1350.0,86.01635020950958,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,125027,2,1,2,0,2,,262.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1515.34422769506,600.0,24844.454010999725,0,5,0,1,100.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.054338082833387924,24844.454010999725,7,4,7,7_1,7_0,7_1_0 -27190,2,40.0,0.0,1,212,900.0,0.0,0.0,85,69,0.0,0.0,1243.9568048183376,1020.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125488,2,2,2,0,1,,159.0,,42,1.0,0.0,4.0,3.0,1.8,1,1,1652.93848766733,900.0,32027.799562529955,7,1,0,1,80.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031847333064782914,17793.22197918331,4,2,4_0,4_1_0,4_0_0,4_1_0 -27191,1,35.0,127.0,9,111,1100.0,0.0,0.0,56,21,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,1,2010.0,6,130660,2,1,1,0,1,,485.0,522.0,43,2.0,0.0,4.0,3.0,2.0,2,2,1353.4515816857,1100.0,25925.372180126975,1,1,2,3,97.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.042429477669879014,12962.686090063487,2,1,2_1,2_1_1,2_2_1,2_0_0 -27192,2,51.0,0.0,1,111,1160.0,2520.0,0.0,85,38,0.0,0.0,1603.3221039880796,3732.0,0.0,4570.405310135571,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,123231,1,1,2,0,2,,528.0,,42,1.0,0.0,9.0,5.0,3.0,3,3,1227.07009815639,1160.0,190549.5367468765,6,1,0,1,244.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019585458268300805,63516.51224895883,10,5,10,10_1,10_2,10_1_0 -27193,2,70.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,1429.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,107578,2,1,2,0,1,,424.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,1452.27105351366,0.0,45179.88658423135,5,5,0,1,130.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0316291187968309,22589.943292115677,6,3,6,6_1,6_2,6_0_1 -27194,2,63.0,0.0,2,111,450.0,900.0,0.0,0,77,0.0,0.0,621.9784024091688,1350.0,0.0,1632.287610762704,70,0,0,0,0,0,0,0,0,0,,1,,2,121703,2,1,2,0,1,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1350.9069136284,450.0,19633.59319036593,0,5,1,2,90.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06875970113623601,19633.59319036593,5,3,5,5_1,5_2,5_0_1 -27195,2,92.0,0.0,2,111,300.0,2500.0,0.0,0,77,0.0,0.0,414.65226827277917,2800.0,0.0,4534.132252118622,71,0,0,0,0,0,0,0,0,0,,1,,2,116540,1,2,3,0,2,,330.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1524.09906517506,300.0,19896.818517439657,0,5,0,1,100.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14072601594801634,19896.818517439657,5,3,5,5_1,5_2,5_0_1 -27196,1,33.0,398.0,9,111,360.0,1080.0,0.0,52,56,0.0,0.0,497.582721927335,1440.0,0.0,1958.7451329152448,42,0,0,0,0,0,0,0,0,0,,2,2006.0,6,101513,2,1,0,0,1,,300.0,435.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1495.16935993235,360.0,18084.721386017594,4,1,2,3,73.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07962522447889919,8611.772088579806,1,1,1_1,1_0_1,1_2_1,1_0_0 -27197,2,46.0,0.0,9,111,0.0,0.0,750.0,0,63,0.0,0.0,383.18500112814377,750.0,0.0,857.4343309894736,20,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,123336,1,2,0,0,1,,200.0,410.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1488.8058571133,0.0,21628.034889329054,0,1,2,3,41.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03467721426554748,21628.034889329054,6,3,6,6_0,6_2,6_0_0 -27198,2,28.0,0.0,9,111,530.0,0.0,0.0,0,62,0.0,0.0,732.5523406152432,1218.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2006.0,6,124659,2,1,0,0,1,,150.0,456.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1608.84826296496,530.0,23125.40443878853,0,1,2,3,67.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05266934912312424,17788.772645221947,4,2,4_0,4_0_0,4_2_0,4_0_0 -27199,2,48.0,0.0,9,111,600.0,900.0,0.0,55,64,0.0,0.0,829.3045365455583,1500.0,0.0,1632.287610762704,71,2,2,1,2,1,2,2,1,0,,2,2006.0,6,121359,1,1,0,0,1,,600.0,452.0,43,2.0,0.0,3.0,3.0,2.0,1,1,1769.83847644022,600.0,25442.98468675695,4,1,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.05895534735674107,12721.492343378475,2,1,2_0,2_0_0,2_2_0,2_0_0 -27200,1,47.0,333.0,9,111,500.0,800.0,0.0,0,68,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,71,2,2,2,2,1,2,2,2,0,,2,2006.0,6,101705,1,3,0,0,1,,440.0,292.0,32,2.0,0.0,4.0,3.0,1.8,4,4,2046.80564158175,500.0,19073.0109052431,0,1,2,3,104.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.06815913892455411,10596.1171695795,2,1,2_1,2_0_1,2_2_1,2_0_0 -27201,2,27.0,0.0,9,111,700.0,0.0,0.0,63,56,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,118701,2,1,0,0,1,,0.0,617.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1853.42525061043,700.0,36077.27737905696,1,1,2,3,57.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01940279452479841,24051.51825270464,6,3,6,6_0,6_2,6_0_0 -27202,2,40.0,0.0,9,111,550.0,0.0,0.0,0,54,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,120464,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2054.83716109889,550.0,27074.17897836627,0,1,2,3,32.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02031455876979611,27074.17897836627,7,4,7,7_0,7_2,7_0_0 -27203,2,42.0,0.0,9,111,580.0,0.0,0.0,0,55,0.0,0.0,801.6610519940398,580.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,108480,2,2,0,0,1,,0.0,633.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1958.05845114124,580.0,30690.401100608993,0,1,2,3,63.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01889841706853714,23608.0008466223,6,3,6,6_0,6_2,6_0_0 -27204,2,81.0,0.0,2,111,300.0,1150.0,0.0,0,78,0.0,0.0,414.65226827277917,1450.0,0.0,2085.7008359745664,10,0,0,0,0,0,0,0,0,0,,1,,2,124418,2,1,2,0,2,,120.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1421.21469127218,300.0,18667.99742600928,0,5,0,1,92.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0776730340652276,18667.99742600928,4,2,4_0,4_1_0,4_2_0,4_0_1 -27205,2,57.0,0.0,2,111,210.0,880.0,0.0,75,64,0.0,0.0,290.25658779094545,1090.0,0.0,1596.014552745755,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,108050,2,1,2,0,1,,320.0,620.0,42,1.0,0.0,3.0,2.0,1.5,1,1,1327.05423741004,210.0,39202.29717894284,5,1,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027804493063877993,26134.864785961894,7,4,7,7_1,7_2,7_0_1 -27206,2,82.0,0.0,2,111,320.0,856.0,0.0,0,78,0.0,0.0,442.2957528242978,1176.0,0.0,1552.4868831254162,50,0,0,0,0,0,0,0,0,0,,1,,2,122737,2,1,1,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1429.26092471578,320.0,14747.489832915317,0,5,0,1,90.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07974238418359537,14747.489832915317,3,2,3_0,3_1_0,3_2_0,3_0_1 -27207,2,91.0,0.0,2,111,276.0,965.0,0.0,0,74,0.0,0.0,381.48008681095683,1241.0,0.0,1750.175049317788,70,0,0,0,0,0,0,0,0,0,,1,,2,128714,2,1,2,0,2,,160.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1413.2824694036,276.0,32191.887555085785,0,5,0,1,93.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038550084951571674,32191.887555085785,8,4,8,8_1,8_2,8_0_1 -27208,2,70.0,0.0,1,111,1700.0,1700.0,0.0,74,74,0.0,0.0,2349.696186879082,3400.0,0.0,3083.2099314406632,30,0,0,0,0,0,0,0,0,0,,1,,1,118226,2,2,2,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1356.005593228,1700.0,98568.39597023113,5,5,0,1,195.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034493814843317955,65712.26398015408,10,5,10,10_1,10_2,10_1_0 -27209,1,79.0,137.0,2,111,214.0,763.0,0.0,0,77,0.0,0.0,295.7852847012491,977.0,0.0,1383.8171633466036,71,0,0,0,0,0,0,0,0,0,,2,,2,113867,2,1,0,0,1,,114.0,568.0,11,0.0,2.0,4.0,1.0,1.0,2,2,2143.44778541418,214.0,11191.34833955469,0,5,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08729957913533012,11191.34833955469,2,1,2_1,2_0_1,2_2_1,2_0_1 -27210,2,39.0,0.0,2,111,0.0,0.0,0.0,46,53,0.0,0.0,0.0,1649.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,2,114452,2,2,2,0,1,,597.0,880.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1277.60112193469,0.0,56951.46797520134,1,1,2,3,120.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028954477533714006,27119.74665485778,7,4,7,7_1,7_2,7_0_1 -27211,2,32.0,0.0,2,111,480.0,1116.0,0.0,56,53,0.0,0.0,663.4436292364467,1596.0,0.0,2024.036637345753,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,111396,1,3,0,0,1,,0.0,650.0,43,2.0,0.0,5.0,4.0,2.1,3,2,2237.17792895847,480.0,22898.353204161085,4,1,2,3,102.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06969933539631029,10903.977716267183,2,1,2_0,2_0_0,2_2_0,2_0_1 -27212,2,68.0,0.0,2,111,250.0,420.0,0.0,0,74,0.0,0.0,345.54355689398267,670.0,0.0,761.7342183559285,60,0,0,0,0,0,0,0,0,0,,2,,2,106414,2,2,0,0,1,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1750.18281255767,250.0,48978.3463969148,0,5,1,2,68.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013679514505663345,48978.3463969148,10,5,10,10_0,10_2,10_0_1 -27213,2,26.0,0.0,2,111,756.0,1260.0,0.0,52,47,0.0,0.0,1044.9237160474036,2016.0,0.0,2285.2026550677856,70,2,2,2,2,2,2,2,1,2,20.0,1,,2,118210,1,1,3,0,2,,660.0,613.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1506.92363158137,756.0,36131.06622494165,4,1,2,3,65.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.05579685878764171,20072.81456941203,5,3,5,5_1,5_3,5_0_1 -27214,2,60.0,0.0,6,111,740.0,766.0,0.0,0,54,0.0,0.0,1022.8089284061887,1506.0,0.0,1389.2581220491459,50,0,0,0,0,0,0,0,0,0,,2,,4,133243,2,1,0,0,2,,272.0,700.0,12,1.0,3.0,4.0,1.0,1.0,2,2,1924.24340783898,740.0,38487.79929419519,0,1,2,3,75.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03912928324345991,38487.79929419519,9,5,9,9_0,9_3,9_0_0 -27215,1,29.0,90.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,131.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,13.0,2,,5,126995,2,1,0,1,1,360.0,0.0,500.0,32,1.0,0.0,2.0,2.0,1.3,1,1,2137.69666641113,0.0,23463.978806795,0,1,3,4,38.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0055830258405306496,18049.214466765385,4,2,4_1,4_0_1,4_3_1,4_0_0 -27216,2,42.0,0.0,6,111,568.0,0.0,0.0,42,46,0.0,0.0,785.0749612631286,620.0,89.45700421788997,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,,4,123589,2,1,1,0,1,,407.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1107.83055454069,568.0,38157.28826867242,1,1,0,1,95.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01624853411056014,18170.13727079639,4,2,4_0,4_1_0,4_3_0,4_0_0 -27217,2,49.0,0.0,1,111,960.0,0.0,0.0,42,63,0.0,0.0,1326.8872584728933,990.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108753,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,1254.81716785131,960.0,15116.3365066595,1,1,0,1,60.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06549205884400996,7558.16825332975,1,1,1_0,1_1_0,1_3_0,1_1_0 -27218,0,74.0,0.0,2,111,318.0,1591.0,0.0,0,74,0.0,0.0,439.5314043691459,1909.0,0.0,2885.521765248291,50,0,0,0,0,0,0,0,0,0,,1,,2,125355,2,3,3,0,1,,288.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1414.12442175768,318.0,43658.26618033453,0,5,0,1,100.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043725969146706324,43658.26618033453,10,5,10,10_1,10_3,10_0_1 -27219,1,31.0,220.0,1,111,0.0,0.0,950.0,0,68,0.0,0.0,485.3676680956488,950.0,0.0,1086.08348592,31,0,0,0,0,0,0,0,0,0,,2,,1,108743,1,3,0,0,2,,0.0,400.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1925.31223597601,0.0,14831.803921195158,0,4,2,3,71.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.06405154794707185,14831.803921195158,3,2,3_1,3_0_1,3_3_1,3_1_0 -27220,2,66.0,0.0,8,111,1560.0,2850.0,0.0,72,72,0.0,0.0,2156.1917950184516,4410.0,0.0,5168.910767415229,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,106613,2,1,1,0,1,,901.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1345.40891407791,1560.0,44170.52434771183,5,5,0,1,220.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09984033617722837,29447.016231807884,8,4,8,8_1,8_3,8_0_0 -27221,2,68.0,0.0,1,111,388.0,1043.0,0.0,68,78,0.0,0.0,536.2836002994611,1431.0,0.0,1891.6399755838893,50,0,0,0,0,0,0,0,0,0,,1,,1,114832,1,1,4,0,2,,228.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,1297.42701998533,388.0,17117.168565405907,5,5,0,1,100.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08360027504152034,11411.445710270606,2,1,2_0,2_1_0,2_3_0,2_1_0 -27222,2,78.0,0.0,5,111,400.0,0.0,0.0,72,72,1941.6603401234008,0.0,552.8696910303722,1748.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103644,2,1,2,0,2,,180.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1330.59894251086,400.0,18268.17293308809,5,5,0,1,187.0,8,7,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09568554044252275,12178.781955392062,2,1,2_0,2_1_0,2_3_0,2_0_0 -27223,2,54.0,0.0,9,111,588.0,1488.0,0.0,52,63,0.0,0.0,812.7184458146471,2076.0,0.0,2698.715516461004,42,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,108353,2,1,1,0,1,,244.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,1333.87249824308,588.0,60925.82273291338,1,1,1,2,175.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03407422184679834,30462.91136645669,8,4,8,8_1,8_3,8_0_0 -27224,2,76.0,0.0,2,111,2.0,0.0,0.0,0,74,2240.377315527001,0.0,2.764348455151861,1528.0,44.72850210894499,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,123012,2,1,1,0,1,,136.0,,21,1.0,1.0,7.0,2.0,1.5,2,2,1417.53932127267,2.0,72120.91526718243,0,5,0,1,185.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02118664182698322,48080.61017812162,10,5,10,10_1,10_3,10_0_1 -27225,2,58.0,0.0,7,111,400.0,1000.0,0.0,22,31,0.0,0.0,552.8696910303722,2511.0,0.0,1813.6529008474488,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,111917,2,1,2,0,2,,300.0,,43,2.0,3.0,7.0,2.0,1.5,3,2,1286.02897370694,400.0,203225.98501105703,1,1,0,1,300.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012355703429674028,135483.99000737135,10,5,10,10_1,10_3,10_0_0 -27226,2,75.0,0.0,2,111,401.0,0.0,0.0,0,75,1792.3018524216009,0.0,554.2518652579481,1601.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126512,2,2,1,0,1,,40.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1442.28203518719,401.0,25767.528395330384,0,5,0,1,132.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06213246282053714,25767.528395330384,7,4,7,7_1,7_3,7_0_1 -27227,2,66.0,0.0,1,111,200.0,0.0,0.0,75,74,0.0,0.0,276.4348455151861,1464.0,2174.4933332964024,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105054,2,1,2,0,1,,60.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1282.17081703379,200.0,33352.86423368198,5,5,0,1,130.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04389428115506654,22235.242822454657,6,3,6,6_1,6_3,6_1_0 -27228,2,59.0,0.0,8,111,2325.0,0.0,0.0,75,38,0.0,0.0,3213.5550791140386,2325.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,1999.0,6,100207,2,1,1,0,1,,230.0,,42,1.0,2.0,10.0,3.0,2.0,3,2,1429.95785951959,2325.0,93908.83011009496,6,1,0,1,200.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024758055203906414,46954.41505504748,10,5,10,10_1,10_3,10_0_0 -27229,2,55.0,0.0,2,111,1338.0,0.0,0.0,22,65,1941.6603401234008,0.0,1849.3491164965951,2938.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,2,6.0,1,,2,131111,1,2,1,0,2,,688.0,,43,4.0,1.0,7.0,7.0,3.6,2,2,1316.51555146034,1338.0,89166.89230976462,1,1,0,1,154.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032949449329168344,24768.581197156836,7,4,7,7_1,7_3,7_0_1 -27230,2,65.0,0.0,6,111,2125.0,0.0,0.0,77,75,0.0,0.0,2937.1202335988523,2230.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100550,2,2,3,0,2,,600.0,,41,0.0,6.0,6.0,2.0,1.5,1,1,1300.97914522594,2125.0,39781.90837400112,5,5,1,2,280.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056055631596029304,26521.27224933408,7,4,7,7_1,7_3,7_0_0 -27231,2,65.0,0.0,5,111,1154.0,0.0,0.0,77,75,0.0,0.0,1595.0290586226238,1776.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,105981,2,1,2,0,1,,366.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1360.07337103382,1154.0,44126.23636748294,5,5,0,1,168.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04024816404484367,29417.49091165529,8,4,8,8_1,8_3,8_0_0 -27232,2,26.0,0.0,2,111,0.0,0.0,0.0,43,63,0.0,0.0,0.0,533.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,,2,133409,2,1,0,1,1,733.0,0.0,575.0,43,2.0,0.0,2.0,2.0,1.5,3,2,1986.59463187686,0.0,18029.247671057517,1,1,2,3,60.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02956307493937358,12019.498447371678,2,1,2_0,2_0_0,2_3_0,2_0_1 -27233,2,37.0,0.0,9,111,750.0,710.0,0.0,43,53,0.0,0.0,1036.630670681948,1460.0,0.0,1287.6935596016888,70,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,104876,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1267.91086721322,750.0,49784.86425991514,1,1,1,2,120.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029326182198221556,23707.07821900721,6,3,6,6_1,6_3,6_0_0 -27234,2,73.0,0.0,6,111,1400.0,0.0,0.0,72,72,2987.1697540360015,0.0,1935.0439186063027,3592.0,330.3027848045168,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,111850,1,2,3,0,1,,182.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1247.03257881264,1400.0,34137.43743955398,5,5,0,1,90.0,8,7,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1052217234044071,22758.29162636932,6,3,6,6_1,6_3,6_0_0 -27235,2,75.0,0.0,9,111,0.0,0.0,0.0,75,90,0.0,0.0,0.0,1302.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,120766,2,3,0,0,1,,519.0,620.0,41,0.0,2.0,3.0,2.0,1.5,3,1,1997.66565250098,0.0,59206.23432282913,5,5,2,3,66.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02199092738951591,39470.82288188609,9,5,9,9_0,9_3,9_0_0 -27236,2,38.0,0.0,8,111,750.0,1003.0,0.0,65,52,0.0,0.0,1036.630670681948,1753.0,0.0,1819.0938595499913,71,0,0,0,0,0,0,0,0,2,25.0,8,2003.0,6,109517,2,1,0,0,1,,732.0,423.0,43,2.0,0.0,3.0,4.0,2.1,3,2,1468.0021810144,750.0,39628.8853788802,1,1,2,3,63.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.044235410187293406,18870.897799466762,5,3,5,5_0,5_3,5_0_0 -27237,2,59.0,0.0,6,211,720.0,0.0,0.0,75,63,0.0,284.67243882535087,995.16544385467,995.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,8.0,1,,4,130697,2,1,2,0,1,,230.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,1184.74279873119,720.0,43247.43617476371,5,1,0,1,110.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0230071441918357,28831.624116509138,8,4,8,8_1,8_1,8_0_0 -27238,2,47.0,0.0,8,211,700.0,0.0,0.0,34,34,0.0,103.51725048194578,967.5219593031513,900.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,124496,2,1,1,0,1,,150.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,1,1,1252.86752876077,700.0,74901.89378202119,1,1,0,1,145.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012015717554741297,28808.420685392768,8,4,8,8_1,8_1,8_0_0 -27239,2,38.0,0.0,9,211,900.0,0.0,0.0,46,37,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,115954,2,1,1,0,1,,320.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1256.81487917859,900.0,47604.9677492732,1,1,1,2,110.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018905589953135522,26447.204305151776,7,4,7,7_1,7_1,7_0_0 -27240,2,67.0,0.0,1,211,0.0,0.0,1610.0,78,77,0.0,0.0,822.5704690884154,1610.0,0.0,1840.6256971907367,70,0,0,0,0,0,0,0,0,0,,1,,1,124162,2,1,2,0,2,,250.0,710.0,41,0.0,3.0,6.0,2.0,1.5,2,2,1374.99631329436,0.0,34006.242407705155,5,5,2,3,77.0,1,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047344248761668685,22670.828271803435,6,3,6,6_1,6_1,6_1_0 -27241,1,43.0,270.0,2,211,330.0,550.0,0.0,0,62,0.0,0.0,456.1174951000571,880.0,0.0,997.5090954660969,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,114577,2,1,0,0,1,,300.0,290.0,12,1.0,1.0,3.0,1.0,1.0,4,3,1680.07650202303,330.0,17679.71573096631,0,1,2,3,50.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04977455595955458,17679.71573096631,4,2,4_1,4_0_1,4_1_1,4_0_1 -27242,2,70.0,0.0,2,211,600.0,0.0,0.0,77,78,1167.9833738280765,0.0,829.3045365455583,1592.0,361.26867087994026,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,126765,1,2,5,0,2,,282.0,347.0,41,0.0,2.0,5.0,2.0,1.5,4,4,1393.65134998846,600.0,14446.873296908914,5,5,2,3,100.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11019685486828683,9631.248864605943,1,1,1_0,1_1_0,1_1_0,1_0_1 -27243,2,50.0,0.0,2,211,400.0,0.0,0.0,0,63,0.0,0.0,552.8696910303722,1753.0,0.0,0.0,20,1,2,2,1,2,2,2,2,0,,1,,2,105015,2,2,5,0,1,,550.0,,22,1.0,4.0,5.0,2.0,1.5,2,1,1220.12060452553,400.0,23210.063549815957,0,1,0,1,100.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.07552758294855683,15473.375699877304,3,2,3_0,3_1_0,3_1_0,3_0_1 -27244,2,51.0,0.0,2,211,0.0,0.0,1561.0,43,63,0.0,0.0,797.5357156813767,1561.0,0.0,1784.6066542327578,20,0,0,0,0,0,0,0,0,2,12.0,1,,2,130232,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1189.48666653279,0.0,58494.799828311094,1,1,0,1,90.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026686132862779478,23397.91993132444,6,3,6,6_1,6_1,6_0_1 -27245,2,49.0,0.0,8,211,250.0,0.0,0.0,0,63,0.0,0.0,345.54355689398267,310.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,1,8.0,1,2000.0,6,123595,2,1,3,0,1,,260.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1385.65119478954,250.0,20640.019928915965,0,1,0,1,80.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015019365343039257,20640.019928915965,5,3,5,5_1,5_1,5_0_0 -27246,0,81.0,0.0,2,211,250.0,1200.0,0.0,0,72,0.0,0.0,345.54355689398267,1450.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,1,,2,100904,2,1,3,0,1,,170.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1516.2546492921,250.0,14198.344935935915,0,5,0,1,95.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10212457906485001,14198.344935935915,3,2,3_0,3_1_0,3_1_0,3_0_1 -27247,2,46.0,0.0,5,211,800.0,0.0,0.0,71,43,4480.754631054002,0.0,1105.7393820607444,3800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,128349,2,1,2,0,1,,190.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,1254.3987452156,800.0,32339.946345458317,5,1,0,1,185.0,1,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11750174101737976,21559.964230305544,6,3,6,6_1,6_1,6_0_0 -27248,2,83.0,0.0,2,211,500.0,1800.0,0.0,72,72,0.0,0.0,691.0871137879653,2300.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,,2,133251,2,1,2,0,1,,310.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1258.26930761982,500.0,52477.991685447785,5,5,0,1,120.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04382789672642509,34985.32779029852,9,5,9,9_1,9_1,9_0_1 -27249,2,71.0,0.0,2,211,0.0,0.0,0.0,0,75,0.0,0.0,0.0,580.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102434,2,2,0,1,1,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1943.11991822825,0.0,25842.329421713912,0,5,0,1,83.0,1,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02244379717227261,25842.329421713912,7,4,7,7_0,7_1,7_0_1 -27250,2,41.0,0.0,2,211,920.0,0.0,0.0,0,55,0.0,0.0,1271.600289369856,950.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,118047,2,1,0,0,1,,110.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,1857.98371630141,920.0,16516.931627788807,0,1,1,2,50.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05751673624425971,16516.931627788807,4,2,4_0,4_0_0,4_1_0,4_0_1 -27251,1,25.0,340.0,2,211,0.0,0.0,1080.0,62,55,0.0,0.0,551.7864016245271,1080.0,0.0,1234.705436624842,10,0,0,0,0,0,0,0,0,1,15.0,2,,2,121874,1,2,0,0,1,,0.0,341.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2003.252179323,0.0,15216.325515242235,4,1,2,3,83.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07097639958596844,8453.514175134575,1,1,1_1,1_0_1,1_1_1,1_0_1 -27252,2,33.0,0.0,2,211,0.0,0.0,2090.0,43,62,0.0,0.0,1067.8088698104273,2090.0,0.0,2389.3836690239996,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,120301,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,3.0,1.8,3,2,1500.42642778657,0.0,67121.60791880674,1,1,0,1,167.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031137513906522567,37289.78217711485,9,5,9,9_1,9_1,9_0_1 -27253,2,72.0,0.0,2,211,800.0,900.0,0.0,0,74,0.0,0.0,1105.7393820607444,1700.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,2,121108,2,1,2,0,1,,300.0,,21,0.0,0.0,5.0,2.0,1.5,1,1,1291.78842016562,800.0,49048.00358675319,0,5,0,1,100.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034659922436866185,32698.66905783546,8,4,8,8_1,8_1,8_0_1 -27254,2,75.0,0.0,2,211,251.0,629.0,0.0,77,75,0.0,0.0,346.92573112155856,880.0,0.0,1140.7876746330453,60,0,0,0,0,0,0,0,0,0,,2,,2,101688,1,1,0,0,2,,140.0,301.0,41,0.0,0.0,3.0,2.0,1.5,2,2,1951.96535360851,251.0,28165.872370289493,5,5,2,3,65.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03124348461254336,18777.24824685966,5,3,5,5_0,5_1,5_0_1 -27255,2,100.0,0.0,7,211,960.0,0.0,0.0,78,78,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,127605,2,1,0,0,1,,242.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,1605.08830223629,960.0,29446.0,5,5,0,1,70.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03260205121238878,19630.666666666668,5,3,5,5_0,5_1,5_0_0 -27256,2,74.0,0.0,5,211,974.0,0.0,0.0,86,75,0.0,331.2552015422265,1346.2376976589564,1414.0,206.439240502823,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,112095,2,1,2,0,1,,470.0,,41,0.0,5.0,8.0,2.0,1.5,1,1,1291.78842016562,974.0,50552.9662974819,5,5,0,1,150.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02797066331734589,33701.9775316546,9,5,9,9_1,9_1,9_0_0 -27257,2,73.0,0.0,2,211,950.0,0.0,0.0,77,75,0.0,0.0,1313.065516197134,950.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,127210,1,1,0,0,1,,0.0,495.0,41,0.0,5.0,4.0,2.0,1.5,2,2,2072.91146804523,950.0,35237.03190161103,5,5,2,3,60.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026960273006324524,23491.35460107402,6,3,6,6_0,6_1,6_0_1 -27258,2,27.0,0.0,6,211,290.0,0.0,0.0,43,63,0.0,0.0,400.8305259970199,290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,126748,1,1,0,0,1,,0.0,318.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2206.57030851428,290.0,23420.251711915906,4,1,2,3,33.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01238244590908696,15613.501141277271,3,2,3_0,3_0_0,3_1_0,3_0_0 -27259,2,26.0,0.0,2,211,270.0,1050.0,0.0,0,46,0.0,0.0,373.1870414455012,1320.0,0.0,1904.3355458898213,20,2,2,2,2,2,2,2,1,0,,2,,2,101017,1,3,0,0,2,,300.0,427.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2222.87459600433,270.0,28103.522951558618,0,1,2,3,88.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.046969200348129056,28103.522951558618,8,4,8,8_0,8_1,8_0_1 -27260,2,70.0,0.0,1,111,0.0,0.0,920.0,0,75,0.0,0.0,470.040268050523,920.0,0.0,1051.786112680421,20,2,2,2,1,1,2,1,2,0,,2,,1,102397,1,1,0,0,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1974.52820317439,0.0,41187.25472503456,0,5,0,1,103.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0.022337007070315926,41187.25472503456,9,5,9,9_0,9_2,9_1_0 -27261,2,38.0,0.0,2,111,700.0,200.0,0.0,52,64,0.0,0.0,967.5219593031513,900.0,0.0,362.73058016948977,71,2,2,2,1,2,2,2,1,0,,2,,2,102353,1,1,0,1,1,,0.0,535.0,43,2.0,1.0,5.0,3.0,1.8,1,1,526.862830643478,700.0,30086.292986539695,1,1,2,3,84.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.0299139545175157,16714.607214744276,4,2,4_0,4_0_0,4_2_0,4_0_1 -27262,2,59.0,0.0,2,111,299.0,745.0,0.0,0,62,0.0,0.0,413.2700940452032,1044.0,0.0,1351.1714111313495,50,2,2,2,2,2,1,2,1,2,15.0,2,,2,126924,1,1,0,0,1,,0.0,419.0,12,1.0,3.0,4.0,1.0,1.0,4,3,573.021242516818,299.0,15393.985598721258,0,1,2,3,80.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.0678186940805455,15393.985598721258,3,2,3_0,3_0_0,3_2_0,3_0_1 -27263,1,24.0,214.0,1,111,900.0,0.0,0.0,42,42,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,106950,2,1,0,0,1,,0.0,440.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1918.17999010294,900.0,34701.66104143606,1,1,2,3,55.0,8,6,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.02593535793359692,23134.440694290708,6,3,6,6_0,6_2,6_1_0 -27264,1,83.0,109.0,7,111,211.0,0.0,0.0,0,78,0.0,0.0,291.63876201852133,841.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,126517,2,1,0,0,1,,0.0,432.0,11,0.0,3.0,2.0,1.0,1.0,4,2,1643.11405907034,211.0,16955.85683210301,0,5,2,3,50.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04959938081145569,16955.85683210301,4,2,4_1,4_0_1,4_2_1,4_0_0 -27265,1,32.0,89.0,2,111,350.0,675.0,0.0,53,55,0.0,0.0,483.76097965157567,1025.0,0.0,1224.215708072028,41,0,0,0,0,0,0,0,0,0,,2,,2,111478,2,1,0,0,1,,619.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1873.75282598605,350.0,37481.29478162786,1,4,1,2,104.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.027346974163294444,17848.23561029898,4,2,4_1,4_0_1,4_2_1,4_0_1 -27266,2,84.0,0.0,1,111,0.0,1700.0,0.0,0,86,0.0,0.0,0.0,1710.0,0.0,3083.2099314406632,31,0,0,0,0,0,0,0,0,0,,1,,1,106808,2,1,2,0,1,,170.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,1293.81576414051,0.0,10988.321851971923,0,5,0,1,100.0,8,6,7,0,1,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15561975914394333,10988.321851971923,2,1,2_0,2_1_0,2_2_0,2_1_0 -27267,2,54.0,0.0,5,111,700.0,0.0,0.0,75,34,0.0,0.0,967.5219593031513,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,3,127209,1,2,0,0,2,,0.0,537.0,42,1.0,5.0,3.0,3.0,2.0,2,2,1991.89133571614,700.0,13267.971315840672,6,1,2,3,70.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0527586307911495,6633.985657920336,1,1,1_0,1_0_0,1_2_0,1_0_0 -27268,2,51.0,0.0,2,111,1140.0,0.0,0.0,0,56,0.0,0.0,1575.678619436561,1140.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,106922,2,1,0,0,1,,0.0,,32,2.0,0.0,4.0,3.0,2.0,1,1,1952.54823848101,1140.0,37355.42082033836,0,1,1,2,91.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03051765915000269,18677.71041016918,4,2,4_0,4_0_0,4_2_0,4_0_1 -27269,2,89.0,0.0,5,111,0.0,0.0,1300.0,86,74,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,50,0,0,0,0,0,0,0,0,0,,1,,3,120477,2,1,2,0,1,,240.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,1329.1243174912,0.0,68213.39125433292,5,5,0,1,100.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019057841519020267,45475.59416955528,10,5,10,10_1,10_2,10_0_0 -27271,2,59.0,0.0,6,111,1979.0,0.0,0.0,46,46,0.0,0.0,2735.322796372767,4983.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,4,122514,2,1,2,0,1,,240.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1157.3016941286,1979.0,91898.39849788799,1,1,0,1,142.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054222925333290976,61265.598998591995,10,5,10,10_1,10_2,10_0_0 -27272,1,49.0,112.0,2,111,344.0,265.0,0.0,68,56,0.0,129.39656310243222,475.4679342861201,734.0,0.0,480.618018724574,41,0,0,0,0,0,0,0,0,0,,2,,2,115311,2,1,0,1,1,486.0,0.0,333.0,43,2.0,2.0,4.0,2.0,1.5,1,1,517.739424623984,344.0,16251.56442364323,1,4,2,3,66.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.045164882645522805,10834.37628242882,2,1,2_1,2_0_1,2_2_1,2_0_1 -27273,2,70.0,0.0,1,111,120.0,400.0,0.0,0,77,0.0,0.0,165.86090730911167,520.0,0.0,725.4611603389795,10,2,2,2,2,1,2,2,1,0,,2,,1,129316,1,3,0,0,2,,363.0,556.0,11,0.0,1.0,3.0,1.0,1.0,2,2,2191.20336061068,120.0,17820.719231603092,0,5,2,3,50.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.02917951813515119,17820.719231603092,4,2,4_0,4_0_0,4_3_0,4_1_0 -27274,0,54.0,0.0,2,111,750.0,1000.0,0.0,77,22,0.0,0.0,1036.630670681948,1750.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,1,1.0,2,,2,103958,2,1,0,0,1,,260.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,2304.22734067954,750.0,52965.27575699895,5,1,0,1,120.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03304051522414195,35310.1838379993,9,5,9,9_0,9_3,9_0_1 -27275,2,59.0,0.0,1,111,2040.0,0.0,0.0,0,68,0.0,0.0,2819.635424254898,2040.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,101666,2,1,0,0,1,,564.0,,22,1.0,0.0,4.0,3.0,2.0,1,1,2073.06838818559,2040.0,37627.45006225811,0,1,0,1,93.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05421573868610896,18813.725031129055,5,3,5,5_0,5_3,5_1_0 -27276,2,61.0,0.0,1,111,1140.0,718.2,0.0,54,35,0.0,0.0,1575.678619436561,1858.0,0.0,1302.5655133886378,71,0,0,0,0,0,0,0,0,0,,2,,1,131984,2,1,0,0,2,,485.0,600.0,43,2.0,1.0,3.0,2.0,1.5,1,1,2028.40243222766,1140.0,18601.2641323928,1,1,3,4,128.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.09988568447691805,12400.842754928533,2,1,2_0,2_0_0,2_3_0,2_1_0 -27277,0,90.0,0.0,2,111,0.0,2100.0,0.0,0,86,0.0,0.0,0.0,6718.0,0.0,3808.6710917796427,71,0,0,0,0,0,0,0,0,0,,1,,2,126806,2,2,2,0,1,,270.0,,11,0.0,1.0,5.0,1.0,1.0,3,2,1410.87898788408,0.0,15060.111571075844,0,5,0,1,120.0,8,7,7,0,1,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.44607903256855413,15060.111571075844,3,2,3_0,3_1_0,3_3_0,3_0_1 -27278,1,62.0,332.0,7,111,284.0,611.0,0.0,78,78,0.0,0.0,392.5374806315643,895.0,0.0,1108.1419224177912,41,0,0,0,0,0,0,0,0,0,,2,,5,100116,2,1,0,0,1,,0.0,367.0,41,0.0,3.0,2.0,2.0,1.5,2,1,1563.07341913486,284.0,14402.238719543193,7,5,2,3,50.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06214311659655558,9601.492479695462,1,1,1_1,1_0_1,1_3_1,1_0_0 -27279,2,46.0,0.0,7,111,250.0,580.0,0.0,0,54,0.0,0.0,345.54355689398267,830.0,0.0,1051.9186824915203,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,106375,2,1,0,0,1,,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1582.26117483402,250.0,29710.640874557823,0,1,2,3,54.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027936119032381954,29710.640874557823,8,4,8,8_0,8_3,8_0_0 -27280,2,66.0,0.0,7,111,356.0,560.0,0.0,0,56,0.0,0.0,492.0540250170313,916.0,0.0,1015.6456244745714,42,0,0,0,0,0,0,0,0,1,1.0,2,,5,117003,2,1,0,0,1,,151.0,510.0,22,2.0,1.0,3.0,2.0,1.5,3,3,1763.86738264455,356.0,39329.52382859292,0,1,2,3,70.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023290391309900876,26219.682552395283,7,4,7,7_0,7_3,7_0_0 -27281,2,62.0,0.0,2,111,500.0,270.0,0.0,0,75,0.0,0.0,691.0871137879653,770.0,0.0,489.6862832288112,71,0,0,0,0,0,0,0,0,0,,2,,2,117591,2,1,0,0,1,,350.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,2122.12581723604,500.0,20502.543188900978,0,5,0,1,50.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03755631644843155,20502.543188900978,5,3,5,5_0,5_3,5_0_1 -27282,2,68.0,0.0,2,111,540.0,948.0,0.0,77,74,0.0,0.0,746.3740828910024,1488.0,0.0,1719.3429500033815,41,0,0,0,0,0,0,0,0,0,,2,,2,117258,2,2,0,0,1,,600.0,,41,1.0,1.0,5.0,3.0,2.0,4,4,2041.59764382071,540.0,56154.81512533602,5,5,0,1,110.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026498172893612497,28077.40756266801,8,4,8,8_0,8_3,8_0_1 -27283,0,66.0,0.0,2,111,960.0,0.0,0.0,0,77,1792.3018524216009,0.0,1326.8872584728933,2230.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129219,2,1,0,0,1,,936.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2028.65360884135,960.0,17989.68858004862,0,5,0,1,140.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.12395990014375075,17989.68858004862,4,2,4_0,4_0_0,4_3_0,4_0_1 -27284,2,43.0,0.0,2,111,1350.0,0.0,0.0,54,46,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,101116,2,1,0,0,1,,312.0,,43,2.0,0.0,4.0,4.0,2.5,3,2,1794.88824158747,1350.0,53040.72019296668,1,4,0,1,75.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02545214309097962,21216.28807718667,5,3,5,5_0,5_3,5_0_1 -27285,2,47.0,0.0,7,111,600.0,300.0,0.0,0,62,0.0,0.0,829.3045365455583,900.0,0.0,544.0958702542347,43,0,0,0,0,0,0,0,0,2,15.0,2,,5,126579,2,1,0,0,1,,450.0,570.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1726.70766447526,600.0,31182.551072671795,0,1,2,3,65.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028862295387652063,20788.367381781198,5,3,5,5_0,5_3,5_0_0 -27286,2,61.0,0.0,5,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,344.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,133284,2,2,0,0,2,,0.0,400.0,12,1.0,2.0,2.0,1.0,1.0,4,2,2251.94153455907,0.0,31521.033669037417,0,1,3,4,35.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010913347690685202,31521.033669037417,8,4,8,8_0,8_3,8_0_0 -27287,2,63.0,0.0,7,111,1500.0,0.0,0.0,22,46,0.0,517.5862524097289,2073.261341363896,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,118159,2,2,3,0,1,,600.0,,43,2.0,2.0,4.0,3.0,2.0,2,2,1433.25724018799,1500.0,35777.17720089793,1,1,0,1,140.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05590155949893678,17888.588600448966,4,2,4_0,4_1_0,4_3_0,4_0_0 -27288,0,70.0,0.0,7,111,376.0,1173.0,0.0,0,78,0.0,0.0,519.6975095685499,1549.0,0.0,2127.4148526940576,41,0,0,0,0,0,0,0,0,0,,1,,5,127566,2,1,2,0,1,,372.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1539.37229152086,376.0,20617.14511738668,0,5,0,1,160.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07513164364806794,20617.14511738668,5,3,5,5_1,5_3,5_0_0 -27289,2,52.0,0.0,6,111,300.0,600.0,0.0,77,53,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,13.0,1,,4,112241,2,1,2,0,1,,400.0,866.0,42,1.0,5.0,4.0,2.0,1.5,2,2,1264.2565132988,300.0,51561.32014169324,7,1,2,3,70.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01745494486034788,34374.2134277955,9,5,9,9_1,9_3,9_0_0 -27290,2,45.0,0.0,6,111,390.0,708.0,0.0,56,62,0.0,0.0,539.0479487546129,1098.0,0.0,1284.0662537999938,71,2,2,2,2,1,2,2,2,2,15.0,2,,4,120308,1,2,0,0,2,,200.0,539.0,43,2.0,0.0,4.0,4.0,2.5,1,1,2017.31084424702,390.0,39109.76109469414,1,1,2,3,85.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.02807483270842483,15643.904437877656,3,2,3_0,3_0_0,3_3_0,3_0_0 -27291,2,78.0,0.0,5,111,470.0,410.0,0.0,78,74,0.0,0.0,649.6218869606873,880.0,0.0,743.5976893474541,50,0,0,0,0,0,0,0,0,0,,2,,3,102914,1,1,0,0,2,,300.0,,41,0.0,3.0,7.0,2.0,1.5,3,3,1727.73425971885,470.0,30085.873422855497,5,5,0,1,140.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029249607868505015,20057.24894857033,5,3,5,5_0,5_3,5_0_0 -27292,2,79.0,0.0,2,111,280.0,246.0,0.0,0,86,0.0,0.0,387.00878372126056,526.0,0.0,446.1586136084724,71,0,0,0,0,0,0,0,0,0,,2,,2,102233,2,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1771.56021214,280.0,17779.155450959122,0,6,0,1,60.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02958520732049869,17779.155450959122,4,2,4_0,4_0_0,4_3_0,4_0_1 -27293,2,75.0,0.0,2,111,200.0,1000.0,0.0,78,77,0.0,0.0,276.4348455151861,1200.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,2,,2,118649,2,1,0,0,1,,324.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1767.25916434213,200.0,27155.932554868195,5,5,0,1,80.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04418923922334157,18103.955036578798,4,2,4_0,4_0_0,4_3_0,4_0_1 -27294,2,70.0,0.0,7,111,150.0,700.0,0.0,0,72,0.0,0.0,207.32613413638958,850.0,0.0,1269.5570305932142,20,0,0,0,0,0,0,0,0,0,,2,,5,105312,2,2,0,0,1,,170.0,,11,0.0,2.0,1.0,1.0,1.0,3,2,2056.87528236107,150.0,28972.70645714229,0,5,0,1,34.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029337956440395295,28972.70645714229,8,4,8,8_0,8_3,8_0_0 -27295,2,87.0,0.0,2,111,555.0,1500.0,0.0,0,86,0.0,144.92415067472407,767.1066963046414,2195.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,2,114811,2,1,1,0,1,,490.0,,21,0.0,0.0,5.0,2.0,1.5,3,3,1337.37549294619,555.0,51919.37193828418,0,5,0,1,83.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04227709076699089,34612.91462552279,9,5,9,9_1,9_3,9_0_1 -27296,0,44.0,0.0,7,111,1700.0,0.0,0.0,85,54,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,210.0,2,,5,103355,2,1,0,0,1,,852.0,,42,1.0,0.0,4.0,4.0,2.3,2,2,1757.37058845484,1700.0,80851.0,5,1,5,0,90.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02102633238920978,35152.608695652176,9,5,9,9_0,9_3,9_0_0 -27297,2,62.0,0.0,1,112,460.0,0.0,0.0,22,22,298.71697540360015,10.351725048194577,635.800144684928,680.0,17.203270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,108261,2,1,1,0,1,,200.0,,42,1.0,1.0,2.0,2.0,1.5,3,2,883.765970765131,460.0,42273.76944105663,1,5,0,1,30.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01608562493931706,28182.512960704422,8,4,8,8_1,8_0,8_1_0 -27298,1,58.0,260.0,1,112,1200.0,0.0,0.0,0,55,0.0,0.0,1658.6090730911167,1300.0,172.03270041901916,0.0,71,2,2,2,2,1,2,2,2,0,,8,,1,127222,1,1,0,0,2,,250.0,420.0,32,1.0,3.0,4.0,2.0,1.5,2,2,986.291650166225,1200.0,12135.630925848645,0,4,2,3,100.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,1,1,1,0,1,0.1071225721961457,8090.42061723243,1,1,1_1,1_0_1,1_0_1,1_1_0 -27299,2,52.0,0.0,1,112,720.0,0.0,0.0,0,22,0.0,414.0690019277831,995.16544385467,1270.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,8,,1,112572,2,1,0,0,1,,400.0,,32,1.0,2.0,4.0,2.0,1.5,2,1,1109.0593862252,720.0,37149.6528386694,0,1,0,1,100.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03418605297646405,24766.435225779598,7,4,7,7_0,7_0,7_1_0 -27300,1,61.0,231.0,6,112,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,128603,2,2,0,0,2,,170.0,247.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1026.24297813657,1200.0,18577.31746149867,0,5,2,3,50.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06943951960090652,18577.31746149867,4,2,4_1,4_0_1,4_0_1,4_0_0 -27301,2,47.0,0.0,1,112,600.0,0.0,0.0,0,54,0.0,51.75862524097289,829.3045365455583,650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,1,110363,2,1,0,0,1,,220.0,,12,1.0,0.0,3.0,1.0,1.0,5,4,1300.33513971255,600.0,24263.153217926276,0,1,1,2,80.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02678959301628456,24263.153217926276,7,4,7,7_0,7_0,7_1_0 -27302,2,82.0,0.0,1,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1764.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,120855,2,1,2,0,1,,237.0,,11,0.0,0.0,9.0,1.0,1.0,1,1,923.128203159052,0.0,32171.96393130142,0,5,0,1,300.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05483034867771104,32171.96393130142,8,4,8,8_1,8_0,8_1_0 -27303,2,63.0,0.0,1,112,600.0,0.0,0.0,0,77,0.0,0.0,829.3045365455583,900.0,516.0981012570575,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,107872,2,1,0,1,1,,200.0,550.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1227.95734289519,600.0,20734.31498997659,0,5,2,3,100.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0434063049796957,20734.31498997659,5,3,5,5_0,5_0,5_1_0 -27304,2,30.0,0.0,1,112,0.0,0.0,0.0,67,64,0.0,0.0,0.0,1663.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,105662,2,2,0,0,1,,317.0,600.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1154.82009177341,0.0,28951.59499978673,1,1,2,3,110.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.057440704044535384,19301.063333191152,5,3,5,5_0,5_0,5_1_0 -27305,2,59.0,0.0,1,112,600.0,0.0,0.0,21,21,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113191,2,1,1,0,1,,500.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,844.034248874163,600.0,5429.3986764437095,1,1,0,1,75.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11050947549738672,3619.5991176291395,1,1,1_0,1_1_0,1_0_0,1_1_0 -27306,2,48.0,0.0,7,112,1200.0,0.0,0.0,52,63,0.0,0.0,1658.6090730911167,1265.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,132189,2,1,3,0,2,,400.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,753.285171839012,1200.0,57901.09427774107,1,1,0,1,120.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021847600909440917,27571.949656067172,7,4,7,7_1,7_0,7_0_0 -27307,2,54.0,0.0,1,112,850.0,0.0,0.0,34,52,0.0,0.0,1174.848093439541,1850.0,1720.3270041901917,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,122689,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,838.746319803302,850.0,49767.07269454649,1,1,0,1,140.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03717317294016218,17773.954533766606,4,2,4_0,4_1_0,4_0_0,4_1_0 -27308,1,86.0,210.0,1,112,2000.0,0.0,0.0,0,86,0.0,0.0,2764.3484551518613,2200.0,344.06540083803833,0.0,71,2,2,1,1,1,2,2,2,0,,1,,1,113945,1,3,3,0,2,,250.0,415.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1013.03697915666,2000.0,15562.98402625352,0,5,2,3,70.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0.14136106522301728,15562.98402625352,3,2,3_1,3_1_1,3_0_1,3_1_0 -27309,2,31.0,0.0,1,112,1200.0,0.0,0.0,85,38,0.0,0.0,1658.6090730911167,1270.0,120.42289029331342,0.0,71,2,2,2,2,1,2,2,2,2,30.0,1,,1,107010,2,2,5,0,2,,500.0,585.0,42,1.0,0.0,4.0,4.0,2.1,3,3,898.373867135895,1200.0,37381.092207749454,6,1,2,3,78.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.03397439520872846,17800.52009892831,4,2,4_0,4_1_0,4_0_0,4_1_0 -27310,2,77.0,0.0,2,112,1000.0,0.0,0.0,72,74,4107.3584117995015,0.0,1382.1742275759307,3750.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,111585,2,2,2,0,2,,300.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,889.257536428598,1000.0,88372.0760791217,5,5,0,1,230.0,8,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04243421866249394,58914.71738608114,10,5,10,10_1,10_0,10_0_1 -27311,0,23.0,0.0,1,112,0.0,0.0,0.0,0,68,0.0,0.0,0.0,657.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,125405,2,1,1,0,1,,201.0,,12,1.0,0.0,3.0,1.0,1.0,4,3,993.242709415664,0.0,15506.107721059503,0,4,5,0,78.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.042370400865182976,15506.107721059503,3,2,3_0,3_1_0,3_0_0,3_1_0 -27312,2,48.0,0.0,1,112,480.0,0.0,0.0,35,63,0.0,310.55175144583734,663.4436292364467,2280.0,2580.4905062852877,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,124932,1,1,3,0,2,,450.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,915.715989057075,480.0,15256.93519459103,1,1,0,1,180.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14944023625454722,6633.450084604796,1,1,1_0,1_1_0,1_0_0,1_1_0 -27313,2,74.0,0.0,2,112,350.0,0.0,0.0,78,74,6631.516853959923,0.0,483.76097965157567,4940.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102265,2,1,2,0,2,,212.0,,41,0.0,2.0,6.0,2.0,1.5,4,2,783.194808530528,350.0,27306.510702125885,5,5,0,1,110.0,8,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.18090923640475998,18204.340468083923,4,2,4_0,4_1_0,4_0_0,4_0_1 -27314,2,55.0,0.0,7,112,700.0,0.0,0.0,52,34,0.0,0.0,967.5219593031513,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,5,118492,2,1,1,0,1,,380.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,862.408217119184,700.0,57501.62049335053,1,1,0,1,112.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012173569961927382,28750.810246675264,8,4,8,8_1,8_0,8_0_0 -27315,1,50.0,284.0,7,112,1270.0,0.0,0.0,0,56,0.0,0.0,1755.3612690214318,1270.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,104010,2,1,0,0,1,,240.0,541.0,32,2.0,3.0,4.0,2.0,1.5,2,2,1017.01207193941,1270.0,14840.708679874242,0,1,2,3,93.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08557542819516903,9893.805786582829,2,1,2_1,2_0_1,2_0_1,2_0_0 -27316,2,42.0,0.0,7,112,1200.0,0.0,0.0,53,54,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,126356,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,827.961637636895,1200.0,46351.740283236584,1,1,1,2,92.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02588899559471315,25750.966824020325,7,4,7,7_1,7_0,7_0_0 -27317,2,44.0,0.0,8,112,1500.0,0.0,0.0,68,37,0.0,155.27587572291867,2073.261341363896,1860.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,132581,2,1,1,0,1,,530.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,827.961637636895,1500.0,50994.24095216087,1,1,1,2,110.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03647470705064359,25497.120476080436,7,4,7,7_1,7_0,7_0_0 -27318,2,85.0,0.0,2,112,400.0,0.0,0.0,0,78,0.0,0.0,552.8696910303722,1600.0,2064.39240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,121683,1,1,2,0,2,,150.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1068.70449777601,400.0,19741.634683075557,0,5,0,1,100.0,8,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08104698651787307,19741.634683075557,5,3,5,5_1,5_0,5_0_1 -27319,2,40.0,0.0,9,112,0.0,0.0,0.0,37,42,0.0,0.0,0.0,1593.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,115192,2,1,1,0,1,,218.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,822.955633689174,0.0,68485.29376217144,1,1,1,2,159.0,8,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023260468233253166,32612.044648653064,8,4,8,8_1,8_0,8_0_0 -27320,2,53.0,0.0,1,112,600.0,0.0,0.0,0,68,0.0,310.55175144583734,829.3045365455583,980.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,125922,2,1,3,0,1,,250.0,,12,1.0,0.0,7.0,1.0,1.0,4,4,923.128203159052,600.0,20408.326868696575,0,1,0,1,250.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04801961504758033,20408.326868696575,5,3,5,5_1,5_0,5_1_0 -27321,2,76.0,0.0,6,112,1000.0,0.0,0.0,0,86,0.0,0.0,1382.1742275759307,1500.0,860.1635020950959,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,100317,2,1,2,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,905.235672056854,1000.0,30162.334466904653,0,5,0,1,120.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04973089870234883,30162.334466904653,8,4,8,8_1,8_0,8_0_0 -27322,2,70.0,0.0,7,112,900.0,0.0,0.0,78,74,1642.9433647198007,414.0690019277831,1243.9568048183376,2550.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,130792,2,1,2,0,1,,900.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,912.400278630235,900.0,94373.69988105427,6,5,1,2,150.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027020239783053353,62915.79992070285,10,5,10,10_1,10_0,10_0_0 -27323,2,57.0,0.0,1,112,0.0,0.0,0.0,0,64,0.0,258.79312620486445,0.0,2130.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129925,2,1,4,0,2,,105.0,,22,1.0,1.0,6.0,2.0,1.5,1,1,929.307185245436,0.0,31328.660365942233,0,1,0,1,200.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0679888630768122,20885.77357729482,5,3,5,5_1,5_0,5_1_0 -27324,2,39.0,0.0,5,112,1500.0,0.0,0.0,54,11,0.0,310.55175144583734,2073.261341363896,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,133089,2,2,1,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,837.380056940533,1500.0,30499.0,1,1,1,2,115.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05901832846978589,14523.333333333332,3,2,3_0,3_1_0,3_0_0,3_0_0 -27325,2,45.0,0.0,8,112,1500.0,0.0,0.0,64,33,0.0,124.22070057833493,2073.261341363896,1770.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,115878,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,731.728867008349,1500.0,71795.01733228711,1,1,1,2,142.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024653521452720772,34188.10349156529,9,5,9,9_1,9_0,9_0_0 -27327,2,35.0,0.0,1,112,800.0,0.0,0.0,68,63,0.0,1035.1725048194578,1105.7393820607444,1865.0,111.82125527236246,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,115031,2,1,3,0,1,,260.0,737.0,43,2.0,0.0,5.0,2.0,1.5,4,2,950.757379226101,800.0,35340.747614959226,1,1,2,3,115.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05277194530006413,23560.498409972817,6,3,6,6_1,6_0,6_1_0 -27328,1,38.0,124.0,2,112,772.0,0.0,0.0,12,54,0.0,0.0,1067.0385036886184,892.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,1,30.0,1,,2,103888,1,1,3,0,1,,250.0,740.0,43,2.0,0.0,5.0,5.0,2.4,1,1,757.382294518206,772.0,36355.12324637681,1,1,2,3,130.0,8,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.02453574408082629,15147.96801932367,3,2,3_1,3_1_1,3_0_1,3_0_1 -27329,2,52.0,0.0,1,112,300.0,0.0,0.0,0,52,0.0,310.55175144583734,414.65226827277917,900.0,516.0981012570575,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,127252,2,2,3,0,1,,120.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,879.386884803389,300.0,21331.79041823039,0,1,1,2,70.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.042190551395575766,21331.79041823039,6,3,6,6_1,6_0,6_1_0 -27330,2,45.0,0.0,8,112,900.0,0.0,0.0,67,62,1941.6603401234008,103.51725048194578,1243.9568048183376,2300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,107818,2,1,1,0,1,,250.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,787.103261041907,900.0,42928.60908385124,1,1,1,2,160.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053577324052299834,17171.443633540497,4,2,4_0,4_1_0,4_0_0,4_0_0 -27331,2,52.0,0.0,1,112,1104.0,0.0,0.0,85,43,3733.962192545002,186.3310508675024,1525.9203472438273,3909.0,215.04087552377396,0.0,31,1,2,2,1,1,2,2,1,2,7.0,1,,1,129672,1,2,3,0,2,,386.0,,42,1.0,0.0,6.0,6.0,3.3,4,2,916.791442916392,1104.0,59271.235814993226,6,1,1,2,150.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,0.06595104600486804,17960.98054999795,4,2,4_0,4_1_0,4_0_0,4_1_0 -27332,2,41.0,0.0,1,112,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1031.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,129568,2,1,1,0,1,,543.0,,32,1.0,0.0,6.0,4.0,1.9,3,3,842.851344849257,0.0,43061.082220403674,0,1,1,2,220.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02394273313250544,22663.727484422987,6,3,6,6_1,6_0,6_1_0 -27333,2,66.0,0.0,1,112,595.0,0.0,0.0,78,78,0.0,310.55175144583734,822.3936654076787,995.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103543,2,1,3,0,2,,500.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,929.307185245436,595.0,31371.615184708884,5,5,0,1,450.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03171656907499559,20914.410123139256,5,3,5,5_1,5_0,5_1_0 -27334,2,56.0,0.0,7,112,1500.0,0.0,0.0,90,90,0.0,0.0,2073.261341363896,1700.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,121252,2,1,1,0,1,,1000.0,,42,2.0,1.0,7.0,4.0,2.5,1,1,772.911845917503,1500.0,57314.668979299255,7,1,1,2,250.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02966081860498926,22925.867591719703,6,3,6,6_1,6_0,6_0_0 -27335,1,54.0,342.0,1,112,360.0,0.0,0.0,0,54,0.0,248.44140115666985,497.582721927335,750.0,258.04905062852873,0.0,71,2,2,2,2,1,1,1,2,0,,1,,1,105241,1,1,3,0,2,,320.0,327.0,32,2.0,2.0,5.0,3.0,2.0,3,3,999.742275818467,360.0,22576.494722624786,0,4,2,3,150.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0.03322039179308007,11288.247361312393,2,1,2_1,2_1_1,2_0_1,2_1_0 -27336,2,53.0,0.0,1,112,0.0,0.0,0.0,0,68,0.0,0.0,0.0,730.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,114932,2,2,5,0,1,,83.0,490.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1013.03697915666,0.0,18724.32759483526,0,1,2,3,70.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0389867137446023,18724.32759483526,5,3,5,5_1,5_0,5_1_0 -27337,2,32.0,0.0,1,112,0.0,0.0,0.0,54,63,0.0,0.0,0.0,693.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,113700,2,1,1,0,1,,401.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1057.73851728427,0.0,46405.40318400407,1,1,1,2,155.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014933605840081935,25780.779546668928,7,4,7,7_1,7_0,7_1_0 -27338,2,81.0,0.0,1,112,300.0,0.0,0.0,0,86,0.0,517.5862524097289,414.65226827277917,890.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101270,2,1,2,0,1,,160.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,929.657326130886,300.0,10082.819055264215,0,5,0,1,200.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08826896477283634,10082.819055264215,2,1,2_0,2_1_0,2_0_0,2_1_0 -27339,2,56.0,0.0,1,112,600.0,0.0,0.0,0,21,0.0,0.0,829.3045365455583,1100.0,860.1635020950959,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130224,1,2,2,0,2,,120.0,,22,1.0,0.0,10.0,2.0,1.5,2,1,910.108250287355,600.0,51872.100215686376,0,1,0,1,140.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021206004681247795,34581.40014379092,9,5,9,9_1,9_0,9_1_0 -27340,2,41.0,0.0,1,112,1600.0,0.0,0.0,56,11,0.0,724.6207533736205,2211.478764121489,2300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,112614,2,1,1,0,1,,800.0,,43,2.0,0.0,10.0,7.0,3.4,2,2,844.606003582323,1600.0,49968.19425236261,1,1,1,2,300.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04602927991321701,14696.527721283122,3,2,3_0,3_1_0,3_0_0,3_1_0 -27341,2,67.0,0.0,1,112,3200.0,0.0,0.0,68,74,112.01886577635005,10.351725048194577,4422.957528242978,4185.0,1548.2943037711725,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125592,2,1,1,0,1,,300.0,,42,2.0,3.0,6.0,3.0,2.0,3,3,929.181239488685,3200.0,75045.0,1,5,1,2,160.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05576654007595443,37522.5,9,5,9,9_1,9_0,9_1_0 -27342,2,56.0,0.0,6,112,800.0,0.0,0.0,11,11,0.0,517.5862524097289,1105.7393820607444,1600.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126658,2,1,2,0,1,,130.0,,43,4.0,2.0,6.0,4.0,2.5,1,1,737.202445360112,800.0,22042.51410021258,1,1,0,1,150.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07258700131599642,8817.005640085032,1,1,1_0,1_1_0,1_0_0,1_0_0 -27344,2,62.0,0.0,1,112,700.0,0.0,0.0,52,78,0.0,258.79312620486445,967.5219593031513,1100.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,125612,2,1,3,0,2,,70.0,,42,1.0,0.0,4.0,4.0,2.5,2,2,824.852669999142,700.0,99664.6881784682,1,5,0,1,120.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.011037008393888164,39865.87527138728,9,5,9,9_1,9_0,9_1_0 -27345,2,79.0,0.0,2,221,0.0,0.0,0.0,0,77,0.0,227.73795106028072,0.0,2540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102042,1,2,4,0,2,,168.0,,11,0.0,2.0,5.0,1.0,1.0,4,2,2119.87745886348,0.0,16399.008383779375,0,5,0,1,100.0,1,2,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15488741395561273,16399.008383779375,4,2,4_0,4_1_0,4_1_0,4_0_1 -27346,2,62.0,0.0,5,211,500.0,1060.0,0.0,77,74,0.0,0.0,691.0871137879653,1560.0,0.0,1922.472074898296,30,0,0,0,0,0,0,0,0,0,,1,,3,125791,2,1,3,0,1,,310.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,256.229497016073,500.0,32272.485119911536,5,5,0,1,85.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048338390867752185,21514.990079941024,6,3,6,6_1,6_1,6_0_0 -27347,2,31.0,0.0,9,221,913.0,0.0,0.0,52,43,0.0,124.22070057833493,1261.9250697768246,1123.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,108669,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,4291.86169267701,913.0,35269.085421840144,1,1,1,2,100.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03184091638805552,16794.80258182864,4,2,4_0,4_1_0,4_1_0,4_0_0 -27348,0,87.0,0.0,2,221,250.0,0.0,0.0,0,72,4217.883692698834,269.144851253059,345.54355689398267,3409.0,129.02452531426437,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,111924,2,1,1,0,2,,180.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2054.05823800172,250.0,22206.69588956575,0,5,0,1,100.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15351225670640112,22206.69588956575,6,3,6,6_1,6_1,6_0_1 -27349,2,55.0,0.0,9,211,550.0,0.0,0.0,85,33,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,125041,2,1,1,0,1,,300.0,,42,1.0,1.0,5.0,6.0,3.1,2,2,4044.36714946916,550.0,42338.00654087961,6,1,0,1,110.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012990691932293639,13657.421464799872,3,2,3_0,3_1_0,3_1_0,3_0_0 -27350,2,75.0,0.0,2,221,0.0,0.0,0.0,0,78,1669.8278925061247,0.0,0.0,2924.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,110626,2,3,4,0,1,,0.0,370.0,11,0.0,2.0,3.0,1.0,1.0,2,2,2437.48680496093,0.0,25807.83091620524,0,5,2,3,65.0,1,2,7,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11329894439768526,25807.83091620524,7,4,7,7_1,7_1,7_0_1 -27351,2,62.0,0.0,5,211,400.0,900.0,0.0,72,21,0.0,112.8338030253209,552.8696910303722,1409.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,133241,2,1,3,0,1,,160.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,264.521161853169,400.0,16630.52443957208,5,1,0,1,100.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08472372624926403,11087.016293048053,2,1,2_0,2_1_0,2_1_0,2_0_0 -27352,1,59.0,317.0,2,111,255.0,311.0,0.0,55,85,0.0,0.0,352.4544280318623,601.0,0.0,564.0460521635566,71,1,2,2,2,1,2,2,2,0,,2,,2,131004,1,3,0,1,1,317.0,0.0,306.0,42,1.0,3.0,3.0,2.0,1.5,2,2,319.654769954117,255.0,15101.659422558903,4,7,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03979695099614182,10067.772948372602,2,1,2_1,2_0_1,2_3_1,2_0_1 -27353,2,36.0,0.0,9,400,770.0,0.0,0.0,0,54,0.0,0.0,1064.2741552334664,770.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,108119,2,1,1,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,5607.98612075888,770.0,2387.065854537039,0,1,1,2,85.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.32257174578425624,2387.065854537039,1,1,1_0,1_1_0,1_0_0,1_0_0 -27354,2,63.0,0.0,5,221,1200.0,0.0,0.0,55,78,0.0,724.6207533736205,1658.6090730911167,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,133457,2,1,2,0,1,,400.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1800.40331839131,1200.0,48421.90706455865,1,5,0,1,90.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039238438037287944,32281.27137637243,8,4,8,8_1,8_1,8_0_0 -27355,2,83.0,0.0,2,111,135.0,117.0,0.0,0,77,0.0,0.0,186.5935207227506,252.0,0.0,212.19738939915152,30,2,2,2,1,1,1,2,2,0,,2,,2,131411,2,2,0,1,1,530.0,0.0,329.0,11,0.0,2.0,3.0,1.0,1.0,1,1,383.273608706866,135.0,14828.966700199388,0,5,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.016993766665927685,14828.966700199388,3,2,3_0,3_0_0,3_3_0,3_0_1 -27356,2,34.0,0.0,9,112,520.0,1500.0,0.0,37,53,0.0,155.27587572291867,718.7305983394839,2170.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,109289,2,2,1,0,1,,194.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,5270.49953807199,520.0,48670.57523238296,1,1,0,1,130.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044585460304076924,23176.464396372838,6,3,6,6_1,6_0,6_0_0 -27357,2,33.0,0.0,2,221,0.0,0.0,0.0,0,63,0.0,0.0,0.0,316.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,129427,1,2,0,0,2,,0.0,420.0,12,1.0,0.0,4.0,1.0,1.0,1,1,3299.7766725507,0.0,31586.51599689627,0,1,2,3,80.0,1,2,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010004268911172431,31586.51599689627,8,4,8,8_0,8_1,8_0_1 -27358,2,68.0,0.0,2,111,260.0,500.0,0.0,0,77,0.0,0.0,359.36529916974195,760.0,0.0,906.8264504237244,41,0,0,0,0,0,0,0,0,0,,2,,2,107945,2,1,0,0,1,,0.0,357.0,11,0.0,1.0,4.0,1.0,1.0,1,1,347.922505199521,260.0,20879.68871454819,0,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.036399010080569845,20879.68871454819,5,3,5,5_0,5_3,5_0_1 -27359,2,46.0,0.0,7,111,1234.0,0.0,0.0,37,47,0.0,207.03450096389156,1705.6029968286982,3524.0,3595.4834387575006,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,121653,2,1,2,0,1,,303.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,3159.26555813771,1234.0,73608.15995572468,1,1,1,2,143.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04787512691690278,32003.54780683682,8,4,8,8_1,8_2,8_0_0 -27360,2,54.0,0.0,1,111,600.0,0.0,0.0,0,53,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128550,2,2,0,1,1,,0.0,328.0,32,2.0,2.0,2.0,2.0,1.5,1,1,370.70839023164,600.0,7218.363988485372,0,1,2,3,38.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.08312132790160086,4812.242658990248,1,1,1_0,1_0_0,1_3_0,1_1_0 -27361,2,44.0,0.0,9,111,0.0,0.0,0.0,45,33,0.0,0.0,0.0,1429.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,2013.0,6,113262,2,1,1,0,1,,171.0,,43,2.0,0.0,5.0,2.0,1.5,3,3,842.07688968468,0.0,57412.48758053772,1,1,1,2,123.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0248900554604155,38274.991720358485,9,5,9,9_1,9_2,9_0_0 -27362,2,53.0,0.0,2,221,280.0,0.0,0.0,0,52,2389.735803228801,0.0,387.00878372126056,1940.0,103.2196202514115,0.0,71,2,2,2,1,1,2,2,2,0,,1,,2,110657,2,3,2,0,1,,180.0,,12,1.0,0.0,6.0,1.0,1.0,3,2,2091.62623900267,280.0,9470.92091196702,0,4,0,1,120.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.20483752509734351,9470.92091196702,1,1,1_0,1_1_0,1_1_0,1_0_1 -27363,1,27.0,343.0,2,111,300.0,600.0,0.0,56,81,0.0,0.0,414.65226827277917,900.0,0.0,1088.1917405084694,42,0,0,0,0,0,0,0,0,0,,2,,2,110321,2,3,0,0,1,,0.0,755.0,43,2.0,0.0,3.0,4.0,2.1,2,2,284.621831367764,300.0,16424.229468668425,1,4,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05479709119486422,7821.061651746869,1,1,1_1,1_0_1,1_3_1,1_0_1 -27364,2,44.0,0.0,5,221,700.0,0.0,0.0,55,85,2688.452778632401,248.44140115666985,967.5219593031513,2840.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,108495,2,1,1,0,1,,270.0,,42,1.0,0.0,6.0,4.0,2.3,3,2,2001.09171792864,700.0,32693.25890385161,1,6,0,1,200.0,1,2,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08686806073240433,14214.460392978961,3,2,3_0,3_1_0,3_1_0,3_0_0 -27365,1,30.0,361.0,2,111,120.0,310.0,0.0,0,55,0.0,0.0,165.86090730911167,430.0,0.0,562.2323992627091,20,2,2,2,2,1,2,1,2,0,,2,,2,117100,2,3,0,1,1,450.0,0.0,339.0,32,1.0,0.0,4.0,2.0,1.3,1,1,328.822049556529,120.0,15247.643354161213,0,4,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.028201079341395357,11728.956426277857,2,1,2_1,2_0_1,2_3_1,2_0_1 -27366,2,49.0,0.0,9,111,403.0,0.0,0.0,46,38,0.0,0.0,557.0162137131,403.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,100753,2,1,1,0,1,,285.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1012.6120411564,403.0,94484.9244626855,4,1,1,2,112.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00426523069465071,41080.40194029805,9,5,9,9_1,9_3,9_0_0 -27367,2,52.0,0.0,1,221,360.0,1700.0,0.0,0,52,0.0,258.79312620486445,497.582721927335,2310.0,0.0,3083.2099314406632,71,2,2,2,1,1,1,2,2,2,25.0,1,,1,119806,2,3,3,0,1,,500.0,,12,1.0,1.0,3.0,1.0,1.0,4,4,2198.14789790656,360.0,22171.0,0,1,1,2,85.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.10419015831491588,22171.0,6,3,6,6_1,6_1,6_1_0 -27368,1,67.0,37.0,2,111,125.0,655.0,0.0,0,56,0.0,0.0,172.77177844699133,780.0,0.0,1187.942650055079,31,0,0,0,0,0,0,0,0,0,,2,,2,127251,2,1,0,0,1,,0.0,470.0,11,0.0,3.0,3.0,1.0,1.0,1,1,383.273608706866,125.0,12208.556946902456,0,5,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06388961475073439,12208.556946902456,2,1,2_1,2_0_1,2_3_1,2_0_1 -27369,2,80.0,0.0,2,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,554.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112009,2,2,0,0,1,,0.0,522.0,11,0.0,2.0,4.0,1.0,1.0,1,1,334.286112267687,0.0,16717.960756278975,0,5,2,3,60.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03313801294765734,16717.960756278975,4,2,4_0,4_0_0,4_3_0,4_0_1 -27370,2,27.0,0.0,9,111,1692.0,0.0,0.0,46,38,0.0,0.0,2338.6387930584747,1692.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,101161,2,1,1,0,1,,432.0,1123.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,2097.78486672544,1692.0,34417.38622245962,1,1,2,3,112.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04916119978035572,13237.45623940755,2,1,2_0,2_1_0,2_3_0,2_0_0 -27371,1,100.0,20.0,1,221,1300.0,0.0,0.0,0,78,0.0,0.0,1796.8264958487098,1360.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,119321,1,3,0,0,2,,0.0,200.0,11,0.0,2.0,4.0,1.0,1.0,2,2,3011.65632354306,1300.0,15385.0,0,5,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.08839779005524862,15385.0,3,2,3_1,3_0_1,3_1_1,3_1_0 -27372,1,80.0,120.0,2,111,0.0,0.0,0.0,56,78,0.0,0.0,0.0,424.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,8,,2,128906,2,1,0,1,1,,149.0,320.0,42,1.0,3.0,2.0,2.0,1.5,1,1,320.701234749827,0.0,12600.905828632882,4,5,2,3,55.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0336483746300643,8400.603885755254,1,1,1_1,1_0_1,1_3_1,1_0_1 -27373,2,72.0,0.0,9,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,992.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,103348,2,1,1,0,1,,290.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,3642.06838622398,0.0,22633.55948397706,0,5,0,1,70.0,9,3,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04382872259673804,22633.55948397706,6,3,6,6_1,6_1,6_0_0 -27374,1,38.0,146.0,1,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,797.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,130494,2,2,0,0,2,,144.0,320.0,12,1.0,1.0,2.0,1.0,1.0,1,1,3481.75805831794,0.0,15294.0402397571,0,4,2,3,50.0,1,2,7,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.0521118022122229,15294.0402397571,3,2,3_1,3_0_1,3_1_1,3_1_0 -27375,2,37.0,0.0,9,112,1632.0,0.0,0.0,38,38,0.0,0.0,2255.7083394039187,1752.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,102369,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,4849.19984706828,1632.0,54975.7808915343,1,1,1,2,97.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03186857870116748,30542.100495296832,8,4,8,8_1,8_0,8_0_0 -27376,1,55.0,133.0,2,111,150.0,0.0,0.0,0,64,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105926,2,3,0,0,1,,110.0,360.0,12,1.0,0.0,1.0,1.0,1.0,2,1,342.785579150197,150.0,10461.31786773534,0,4,2,3,20.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.014338537638993652,10461.31786773534,2,1,2_1,2_0_1,2_3_1,2_0_1 -27377,1,75.0,156.0,9,111,0.0,0.0,1035.0,0,77,0.0,0.0,528.7953015568385,1035.0,0.0,1183.2593767654737,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,132769,2,1,1,0,1,,150.0,360.0,11,0.0,4.0,3.0,1.0,1.0,1,1,5277.81630350862,0.0,10478.914012067597,0,5,2,3,62.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09876977698338646,10478.914012067597,2,1,2_1,2_1_1,2_3_1,2_0_0 -27378,2,85.0,0.0,2,111,762.0,1200.0,0.0,0,86,0.0,0.0,1053.2167614128591,1962.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,2,120112,2,1,3,0,1,,1100.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,302.135820496993,762.0,41766.256354711135,0,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046975720862726805,41766.256354711135,9,5,9,9_1,9_3,9_0_1 -27379,2,56.0,0.0,9,111,1600.0,0.0,0.0,85,22,0.0,72.46207533736204,2211.478764121489,1670.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,100283,2,1,1,0,1,,673.0,,42,2.0,3.0,6.0,3.0,2.0,3,3,1211.09094524323,1600.0,118418.78416564508,6,1,1,2,185.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014102492368643065,59209.39208282254,10,5,10,10_1,10_3,10_0_0 -27380,1,51.0,254.0,9,221,1400.0,0.0,0.0,0,85,0.0,0.0,1935.0439186063027,1530.0,223.64251054472493,0.0,42,0,0,0,0,0,0,0,0,0,,2,2010.0,6,115622,2,1,0,0,1,,0.0,400.0,11,0.0,4.0,3.0,1.0,1.0,1,1,4048.1736375054,1400.0,4010.5815534302274,0,7,2,3,60.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.3814908086562658,4010.5815534302274,1,1,1_1,1_0_1,1_1_1,1_0_0 -27381,1,28.0,368.0,2,111,300.0,343.0,0.0,53,56,0.0,0.0,414.65226827277917,643.0,0.0,622.082944990675,41,1,2,2,1,1,1,2,2,0,,2,,2,116067,2,1,0,1,1,848.0,0.0,334.0,43,2.0,0.0,3.0,4.0,2.1,2,2,314.409738626123,300.0,17002.872899483955,4,4,2,3,62.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03781713853895334,8096.6061426114065,1,1,1_1,1_0_1,1_3_1,1_0_1 -27382,1,68.0,80.0,9,221,1200.0,0.0,0.0,0,77,0.0,0.0,1658.6090730911167,1230.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,110989,2,1,0,0,1,,0.0,330.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2916.47778038306,1200.0,12181.0,0,5,2,3,65.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.10097693128642969,12181.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -27383,2,75.0,0.0,2,111,0.0,0.0,0.0,74,75,0.0,0.0,0.0,968.0,0.0,0.0,71,2,2,2,1,1,1,2,2,0,,2,,2,118495,2,2,0,0,1,,200.0,350.0,41,0.0,1.0,4.0,2.0,1.5,3,2,359.269356535838,0.0,34064.31625433245,5,5,2,3,82.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.028416833403397183,22709.544169554967,6,3,6,6_0,6_3,6_0_1 -27384,2,24.0,0.0,9,300,0.0,0.0,0.0,63,62,0.0,0.0,0.0,624.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2013.0,6,117782,2,1,1,0,1,,124.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,5573.3870397745,0.0,27307.23988214138,1,1,1,2,109.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022851082815150747,15170.688823411878,3,2,3_0,3_1_0,3_0_0,3_0_0 -27385,1,23.0,305.0,1,221,0.0,0.0,0.0,68,67,0.0,0.0,0.0,1420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,1,102898,2,1,0,0,1,,219.0,435.0,43,2.0,0.0,4.0,2.0,1.5,1,1,2665.01454713887,0.0,7801.640850420217,4,1,2,3,87.0,1,2,7,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.18201299280823918,5201.093900280145,1,1,1_1,1_0_1,1_1_1,1_1_0 -27386,2,58.0,0.0,2,111,302.0,307.0,0.0,0,54,0.0,0.0,417.416616727931,609.0,0.0,556.7914405601668,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,119129,2,2,0,1,1,,220.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,353.740195828014,302.0,22555.58894276727,0,1,0,1,72.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026999960034086515,22555.58894276727,6,3,6,6_0,6_3,6_0_1 -27387,2,33.0,0.0,9,221,0.0,0.0,0.0,55,63,0.0,0.0,0.0,1047.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2012.0,6,103852,2,2,1,0,1,,562.0,,43,2.0,0.0,4.0,3.0,1.8,5,3,6884.06979423055,0.0,28894.026266170666,1,1,1,2,88.0,1,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036235863785651606,16052.236814539257,4,2,4_0,4_1_0,4_1_0,4_0_0 -27388,2,82.0,0.0,2,221,550.0,1300.0,0.0,0,78,0.0,0.0,760.1958251667618,1850.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,2,,2,109983,2,3,0,0,1,,0.0,307.0,11,0.0,4.0,2.0,1.0,1.0,1,1,3504.23868022141,550.0,17938.784979717668,0,5,3,4,30.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.10312850073690534,17938.784979717668,4,2,4_0,4_0_0,4_1_0,4_0_1 -27389,2,46.0,0.0,9,211,1418.0,0.0,0.0,45,47,0.0,0.0,1959.9230547026696,1418.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,117801,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,1562.57424682947,1418.0,29865.679628697075,1,1,1,2,124.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04747924767255202,11946.27185147883,2,1,2_0,2_1_0,2_1_0,2_0_0 -27390,2,62.0,0.0,1,221,994.0,0.0,0.0,77,21,4480.754631054002,207.03450096389156,1373.881182210475,4394.0,344.06540083803833,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,103751,2,2,1,0,1,,740.0,,42,1.0,2.0,10.0,2.0,1.5,1,1,1950.66122367349,994.0,56169.77423067554,6,1,0,1,170.0,1,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07822712589078452,37446.51615378369,9,5,9,9_1,9_1,9_1_0 -27391,1,46.0,377.0,2,111,500.0,500.0,0.0,0,68,0.0,0.0,691.0871137879653,1100.0,172.03270041901916,906.8264504237244,71,2,2,2,2,1,1,2,2,0,,2,,2,121388,1,3,0,0,1,,605.0,440.0,32,2.0,1.0,3.0,3.0,2.0,2,2,421.807922702575,500.0,7206.056376598122,0,4,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.15264937470823597,3603.028188299061,1,1,1_1,1_0_1,1_3_1,1_0_1 -27392,1,25.0,130.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1107.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,133634,2,2,1,0,1,,351.0,,32,1.0,0.0,4.0,2.0,1.3,4,4,494.422830171293,0.0,14792.66809391811,0,4,1,2,90.0,7,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07483437017390625,11378.975456860084,2,1,2_1,2_1_1,2_2_1,2_0_0 -27393,2,64.0,0.0,1,221,470.0,2000.0,0.0,0,77,0.0,0.0,649.6218869606873,2470.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,1,,1,125003,1,2,5,0,2,,160.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,2176.17881473239,470.0,12550.768015741884,0,5,0,1,100.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.19680070549483397,12550.768015741884,2,1,2_0,2_1_0,2_1_0,2_1_0 -27394,1,53.0,245.0,2,111,340.0,250.0,0.0,0,52,0.0,0.0,469.9392373758164,590.0,0.0,453.4132252118622,71,2,1,2,2,1,2,2,2,3,30.0,2,,2,133548,2,2,0,1,1,360.0,0.0,319.0,32,1.0,0.0,3.0,2.0,1.5,2,2,361.530060895609,340.0,9747.013072779202,0,1,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.06053136438769247,6498.008715186134,1,1,1_1,1_0_1,1_3_1,1_0_1 -27395,2,34.0,0.0,9,112,1600.0,0.0,0.0,85,38,0.0,496.8828023133397,2211.478764121489,2200.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,110699,2,1,1,0,1,,285.0,,42,1.0,0.0,5.0,4.0,2.1,1,1,4146.7626340903,1600.0,39467.09224616871,6,1,1,2,169.0,6,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05574264215559398,18793.853450556526,5,3,5,5_1,5_1,5_0_0 -27396,2,33.0,0.0,2,221,350.0,1400.0,0.0,42,52,0.0,0.0,483.76097965157567,1810.0,103.2196202514115,2539.1140611864284,42,0,0,0,0,0,0,0,0,0,,1,,2,101092,2,1,3,0,1,,503.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,2080.70688537993,350.0,28723.756692642368,1,1,0,1,75.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06301404162999452,12488.589866366248,2,1,2_0,2_1_0,2_1_0,2_0_1 -27397,2,34.0,0.0,2,111,220.0,220.0,0.0,0,55,0.0,0.0,304.0783300667047,440.0,0.0,399.00363818643876,31,0,0,0,0,0,0,0,0,3,10.0,2,,2,112889,2,1,0,0,1,1600.0,194.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,338.024749577572,220.0,14657.437264473969,0,1,2,3,52.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.030018890209849443,14657.437264473969,3,2,3_0,3_0_0,3_3_0,3_0_1 -27398,2,50.0,0.0,2,221,400.0,1150.0,0.0,0,52,0.0,0.0,552.8696910303722,1550.0,0.0,2085.7008359745664,43,0,0,0,0,0,0,0,0,2,3.0,1,,2,119602,2,2,5,0,1,,600.0,500.0,12,1.0,0.0,4.0,1.0,1.0,2,2,2588.99579554132,400.0,19601.23585021213,0,1,2,3,95.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07907664658722145,19601.23585021213,5,3,5,5_1,5_1,5_0_1 -27399,2,30.0,0.0,9,300,986.0,0.0,0.0,46,52,0.0,289.84830134944815,1362.8237883898676,1266.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,129844,2,1,1,0,1,,164.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,6175.94254526416,986.0,41512.0,1,1,1,2,136.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030497205627288495,23062.222222222223,6,3,6,6_1,6_0,6_0_0 -27400,1,86.0,130.0,2,221,180.0,180.0,0.0,0,77,0.0,0.0,248.7913609636675,360.0,0.0,326.4575221525408,41,2,1,2,1,2,2,2,2,0,,2,,2,115698,2,2,0,1,1,600.0,78.0,303.0,11,0.0,5.0,3.0,1.0,1.0,2,2,2394.41590788361,180.0,19179.0,0,5,2,3,70.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.018770530267480056,19179.0,5,3,5,5_0,5_1,5_0_1 -27401,1,39.0,150.0,2,111,140.0,600.0,0.0,0,68,0.0,0.0,193.50439186063028,740.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,112036,2,2,0,0,1,,0.0,420.0,12,1.0,2.0,3.0,1.0,1.0,5,5,392.976761740386,140.0,12040.759118445336,0,4,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06145791911627798,12040.759118445336,2,1,2_1,2_0_1,2_3_1,2_0_1 -27402,2,85.0,0.0,2,221,1200.0,1200.0,0.0,72,72,0.0,0.0,1658.6090730911167,2640.0,412.878481005646,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,1,,2,119000,2,1,1,0,1,,120.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1970.15246513941,1200.0,13447.941876792485,5,5,0,1,100.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1963125676915608,8965.294584528323,1,1,1_0,1_1_0,1_1_0,1_0_1 -27403,2,34.0,0.0,2,111,200.0,350.0,0.0,0,47,0.0,0.0,276.4348455151861,550.0,0.0,634.7785152966071,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,129386,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,336.269658848685,200.0,20874.415786842103,0,1,1,2,58.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026348042772372335,16057.242912955462,4,2,4_0,4_0_0,4_3_0,4_0_1 -27404,2,39.0,0.0,9,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,2210.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,2012.0,6,126846,2,1,1,0,1,,551.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,2497.19122502686,0.0,35218.808493831304,0,1,1,2,92.0,6,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06275056126294247,27091.391149101004,7,4,7,7_1,7_2,7_0_0 -27405,2,80.0,0.0,2,221,0.0,0.0,0.0,0,78,0.0,0.0,0.0,794.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118964,2,2,0,1,2,,68.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,3504.23868022141,0.0,18252.57509631838,0,5,2,3,70.0,1,2,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0435007113138876,18252.57509631838,4,2,4_0,4_0_0,4_1_0,4_0_1 -27406,1,45.0,285.0,2,111,0.0,450.0,0.0,85,68,0.0,0.0,0.0,582.0,0.0,816.143805381352,41,2,2,2,2,2,1,2,2,0,,2,,2,131611,1,3,0,1,1,,0.0,220.0,42,1.0,0.0,3.0,5.0,2.4000000000000004,1,1,329.964593988503,0.0,16411.067997330403,6,4,2,3,69.0,9,7,7,0,1,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.035463871095694335,6837.944998887667,1,1,1_1,1_0_1,1_3_1,1_0_1 -27407,2,39.0,0.0,2,221,1150.0,2760.0,0.0,22,22,0.0,269.144851253059,1589.5003617123202,4170.0,0.0,5005.682006338959,70,0,0,0,0,0,0,0,0,1,2.0,1,,2,129784,1,1,2,0,1,,324.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2144.44462570213,1150.0,78769.15084266828,1,1,0,1,217.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05293950684233049,37509.11944888966,9,5,9,9_1,9_1,9_0_1 -27408,1,29.0,102.0,1,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2868.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,1,,1,132575,2,1,1,0,1,,0.0,350.0,12,1.0,0.0,4.0,1.0,1.0,2,2,2271.3082236869,0.0,13379.269975237385,0,1,3,4,70.0,1,2,7,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.214361471538294,13379.269975237385,3,2,3_1,3_1_1,3_1_1,3_1_0 -27409,2,57.0,0.0,2,111,480.0,0.0,0.0,0,52,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,2,2,1,1,1,2,2,2,2,10.0,2,,2,122746,1,1,0,0,1,,160.0,327.0,12,1.0,1.0,2.0,1.0,1.0,1,1,340.173635800761,480.0,19181.55447973194,0,1,2,3,47.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.025024040700517194,19181.55447973194,5,3,5,5_0,5_3,5_0_1 -27410,2,64.0,0.0,2,221,456.0,0.0,0.0,0,75,1194.8679016144006,0.0,630.2714477746243,1326.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103980,2,2,2,0,1,,136.0,,11,0.0,1.0,5.0,1.0,1.0,3,2,2046.224017733,456.0,14769.419874008034,0,5,1,2,95.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08978010045835053,14769.419874008034,3,2,3_0,3_1_0,3_1_0,3_0_1 -27411,2,33.0,0.0,2,111,0.0,0.0,750.0,0,64,1075.3811114529606,0.0,383.18500112814377,1470.0,0.0,857.4343309894736,71,0,0,0,0,0,0,0,0,0,,2,,2,104735,2,1,0,1,1,,500.0,450.0,22,1.0,0.0,4.0,2.0,1.5,1,1,370.70839023164,0.0,46231.714131068715,0,1,2,3,70.0,9,7,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0317963551131263,30821.14275404581,8,4,8,8_0,8_3,8_0_1 -27412,1,48.0,121.0,2,111,249.0,385.0,0.0,0,56,0.0,0.0,344.1613826664067,634.0,0.0,698.2563668262678,71,0,0,0,0,0,0,0,0,0,,2,,2,111574,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,360.662980277528,249.0,8696.867520251342,0,4,0,1,46.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07289981117036462,8696.867520251342,1,1,1_1,1_0_1,1_3_1,1_0_1 -27413,1,65.0,46.0,1,221,400.0,0.0,0.0,0,72,0.0,496.8828023133397,552.8696910303722,880.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,119776,2,1,1,0,1,,98.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,2017.07969732557,400.0,12028.621708283996,0,5,1,2,55.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07315883908743696,12028.621708283996,2,1,2_1,2_1_1,2_1_1,2_1_0 -27414,1,25.0,278.0,2,111,400.0,0.0,0.0,0,55,0.0,0.0,552.8696910303722,452.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,100458,2,1,0,1,1,,0.0,280.0,12,1.0,0.0,2.0,1.0,1.0,1,1,338.024749577572,400.0,7900.4365863344365,0,4,2,3,52.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05721202810257785,7900.4365863344365,1,1,1_1,1_0_1,1_3_1,1_0_1 -27415,2,87.0,0.0,2,111,460.0,161.0,0.0,85,78,0.0,0.0,635.800144684928,621.0,0.0,291.9981170364393,41,0,0,0,0,0,0,0,0,0,,2,,2,101897,2,1,0,1,1,,0.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,436.098598972093,460.0,40137.609236083044,6,5,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015471773526603854,20068.804618041522,5,3,5,5_0,5_3,5_0_1 -27416,2,75.0,0.0,2,111,250.0,104.0,0.0,0,75,0.0,461.6869371494782,345.54355689398267,800.0,0.0,188.6199016881347,20,2,1,2,1,2,2,2,2,0,,2,,2,121798,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,372.238202896252,250.0,29032.67753696054,0,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.027555157424992805,29032.67753696054,8,4,8,8_0,8_3,8_0_1 -27417,2,53.0,0.0,6,221,2400.0,0.0,0.0,67,78,0.0,0.0,3317.2181461822333,2450.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100407,2,1,2,0,1,,430.0,,42,2.0,1.0,6.0,3.0,2.0,2,2,1996.85677840619,2400.0,8962.751912178224,4,7,0,1,100.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.27335354409074286,4481.375956089112,1,1,1_0,1_1_0,1_1_0,1_0_0 -27418,2,67.0,0.0,2,111,0.0,0.0,720.0,86,78,0.0,0.0,367.85760108301804,720.0,0.0,823.1369577498947,71,2,2,2,2,1,2,2,2,0,,2,,2,127598,2,2,0,1,1,865.0,0.0,267.0,41,1.0,5.0,4.0,4.0,2.5,2,2,322.948197137359,0.0,22876.289791079103,6,5,2,3,88.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.03147363521687739,9150.515916431641,1,1,1_0,1_0_0,1_3_0,1_0_1 -27419,2,83.0,0.0,2,221,220.0,0.0,0.0,77,78,1941.6603401234008,0.0,304.0783300667047,1640.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,116496,2,1,2,0,1,,360.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2128.17676010063,220.0,14258.528268158801,5,5,0,1,92.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11501888337678855,9505.685512105867,1,1,1_0,1_1_0,1_1_0,1_0_1 -27420,1,65.0,264.0,5,111,268.0,97.0,0.0,0,86,0.0,0.0,370.4226929903494,365.0,0.0,175.92433138220255,71,0,0,0,0,0,0,0,0,0,,2,,3,122304,2,1,0,1,1,488.0,0.0,380.0,11,0.0,4.0,4.0,1.0,1.0,2,2,398.310446170348,268.0,12916.22709900277,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02825902620031981,12916.22709900277,2,1,2_1,2_0_1,2_3_1,2_0_0 -27421,1,32.0,351.0,2,221,636.0,876.0,0.0,62,55,0.0,0.0,879.0628087382918,1512.0,0.0,1588.7599411423653,70,0,0,0,0,0,0,0,0,2,5.0,1,,2,105859,2,2,5,0,1,,450.0,550.0,43,2.0,0.0,5.0,3.0,1.8,1,1,2465.4201964083,636.0,19603.895546681484,4,1,2,3,110.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07712752786299909,10891.053081489714,2,1,2_1,2_1_1,2_1_1,2_0_1 -27422,2,33.0,0.0,6,221,480.0,0.0,0.0,52,38,0.0,931.655254337512,663.4436292364467,1380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,75.0,1,,4,111605,2,1,1,0,1,,210.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,2009.66690289073,480.0,83629.27986521051,1,1,0,1,130.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016501397623227356,46460.71103622806,10,5,10,10_1,10_1,10_0_0 -27423,2,46.0,0.0,6,221,1200.0,0.0,0.0,0,52,0.0,248.44140115666985,1658.6090730911167,1500.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,4,102336,2,1,2,0,1,,640.0,,32,1.0,0.0,5.0,3.0,1.8,3,3,1998.63747603598,1200.0,19677.72973549731,0,1,0,1,104.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07622830581386125,10932.072075276283,2,1,2_0,2_1_0,2_1_0,2_0_0 -27424,2,37.0,0.0,2,111,600.0,400.0,0.0,46,53,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,71,1,2,2,2,1,2,2,2,2,30.0,2,,2,110105,1,3,0,1,2,480.0,0.0,450.0,43,2.0,0.0,5.0,3.0,1.8,1,1,342.324587116415,600.0,27244.15612299391,1,1,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03670511927348727,15135.642290552172,3,2,3_0,3_0_0,3_3_0,3_0_1 -27425,2,42.0,0.0,9,221,539.0,1130.0,0.0,63,45,0.0,0.0,744.9919086634266,1669.0,0.0,2049.4277779576173,71,0,0,0,0,0,0,0,0,2,8.0,1,2004.0,6,114693,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1787.2427926294,539.0,41299.91374327812,1,1,1,2,116.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04041170667751437,17956.48423620788,4,2,4_0,4_1_0,4_1_0,4_0_0 -27426,2,63.0,0.0,9,221,700.0,0.0,0.0,77,78,0.0,517.5862524097289,967.5219593031513,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,132854,2,1,1,0,1,,150.0,,41,0.0,0.0,4.0,2.0,1.5,4,4,1927.87251121426,700.0,25102.355143331042,5,5,0,1,99.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0478042794450227,16734.903428887363,4,2,4_0,4_1_0,4_1_0,4_0_0 -27427,2,56.0,0.0,2,111,334.0,1743.0,0.0,52,67,0.0,0.0,461.6461920103608,2077.0,0.0,3161.1970061771035,43,0,0,0,0,0,0,0,0,2,25.0,1,,2,107936,2,1,2,0,1,,271.0,,43,2.0,2.0,6.0,2.0,1.5,3,3,289.368007304536,334.0,52914.228099088345,1,1,0,1,125.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039252202566586895,35276.152066058894,9,5,9,9_1,9_3,9_0_1 -27428,1,32.0,340.0,1,221,920.0,0.0,0.0,0,55,0.0,621.1035028916747,1271.600289369856,1580.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,125544,2,2,5,0,1,,100.0,400.0,32,1.0,0.0,4.0,2.0,1.3,2,2,2144.05278505547,920.0,11840.0,0,4,2,3,90.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.13344594594594594,9107.692307692307,1,1,1_1,1_1_1,1_1_1,1_1_0 -27429,2,34.0,0.0,2,111,527.0,0.0,0.0,55,37,0.0,0.0,728.4058179325154,527.0,0.0,0.0,70,1,2,2,1,1,2,2,2,2,45.0,2,,2,128796,2,2,0,1,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,318.557124221792,527.0,67784.71346568238,1,1,1,2,107.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.00777461426117566,32278.434983658273,8,4,8,8_0,8_3,8_0_1 -27430,0,76.0,0.0,2,221,0.0,0.0,0.0,0,74,2987.1697540360015,0.0,0.0,3704.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116073,2,1,2,0,1,,124.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,2137.28919308563,0.0,29053.942775994845,0,5,0,1,91.0,1,2,7,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12748699990764575,29053.942775994845,8,4,8,8_1,8_1,8_0_1 -27431,1,42.0,409.0,2,111,420.0,210.0,0.0,0,56,0.0,103.51725048194578,580.5131755818909,730.0,0.0,380.86710917796427,71,2,2,2,1,1,2,1,2,3,30.0,2,,2,129652,1,2,0,1,2,720.0,0.0,342.0,32,1.0,0.0,5.0,6.0,3.0999999999999996,3,3,284.401322260062,420.0,32688.633192056797,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.022331921794068375,10544.720384534452,2,1,2_1,2_0_1,2_3_1,2_0_1 -27432,2,64.0,0.0,6,221,1750.0,0.0,0.0,77,72,0.0,414.0690019277831,2418.8048982578784,2350.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126613,2,1,1,0,1,,800.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1839.72457806636,1750.0,14333.018259911956,7,5,0,1,90.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.16395709245502876,9555.345506607971,1,1,1_0,1_1_0,1_1_0,1_0_0 -27433,2,68.0,0.0,6,221,1640.0,0.0,0.0,77,21,0.0,517.5862524097289,2266.7657332245262,2140.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,127799,2,1,2,0,1,,600.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1884.53421865943,1640.0,39916.16529457271,5,5,0,1,85.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053612364419459144,26610.776863048475,7,4,7,7_1,7_1,7_0_0 -27434,1,45.0,409.0,2,111,1010.0,72.0,0.0,85,53,0.0,0.0,1395.9959698516898,1082.0,0.0,130.5830088610163,71,2,1,2,1,1,2,1,2,0,,2,,2,122555,1,3,0,0,1,,0.0,586.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,1,1,339.330848537807,1010.0,8139.695217416047,7,4,2,3,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.13292881012115854,3014.701932376314,1,1,1_1,1_0_1,1_3_1,1_0_1 -27435,1,75.0,270.0,2,221,800.0,0.0,0.0,86,78,0.0,144.92415067472407,1105.7393820607444,1360.0,722.5373417598805,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107768,2,2,0,0,1,,340.0,400.0,41,0.0,6.0,4.0,2.0,1.5,2,2,2875.45251954235,800.0,12579.15798268074,6,5,2,3,45.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10811534459400843,8386.10532178716,1,1,1_1,1_0_1,1_1_1,1_0_1 -27436,1,74.0,365.0,6,111,220.0,0.0,0.0,0,78,0.0,0.0,304.0783300667047,430.0,361.26867087994026,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,124408,2,1,0,1,2,,0.0,520.0,11,0.0,9.0,2.0,1.0,1.0,2,2,461.024670992069,220.0,5079.162731134245,0,5,2,3,58.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08465962261145651,5079.162731134245,1,1,1_1,1_0_1,1_3_1,1_0_0 -27437,2,74.0,0.0,1,221,0.0,0.0,0.0,72,90,0.0,0.0,0.0,4724.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123428,1,2,5,0,2,,335.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,2194.29631005337,0.0,19919.060726114207,5,5,0,1,116.0,1,2,7,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.23715977700729435,13279.37381740947,3,2,3_0,3_1_0,3_1_0,3_1_0 -27438,2,71.0,0.0,2,300,331.0,0.0,0.0,77,78,1856.526002133375,0.0,457.499669327633,1824.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122324,2,1,2,0,1,,100.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,2492.5993620182,331.0,23023.680033790475,5,5,0,1,65.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07922278268821598,15349.120022526984,3,2,3_0,3_1_0,3_0_0,3_0_1 -27439,1,48.0,415.0,2,111,500.0,120.0,0.0,52,63,0.0,0.0,691.0871137879653,620.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,117507,2,2,0,1,1,600.0,0.0,373.0,43,3.0,0.0,6.0,5.0,2.8,3,2,293.189293473436,500.0,34651.70281259655,4,1,2,3,153.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0178923386060733,12375.608147355912,2,1,2_1,2_0_1,2_3_1,2_0_1 -27440,2,82.0,0.0,2,300,800.0,0.0,0.0,78,78,0.0,0.0,1105.7393820607444,920.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,127272,2,1,4,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,2399.38425327885,800.0,26278.649406805966,5,5,0,1,67.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.035009409568884736,17519.09960453731,4,2,4_0,4_1_0,4_0_0,4_0_1 -27441,2,50.0,0.0,7,300,1800.0,0.0,0.0,43,43,0.0,258.79312620486445,2487.913609636675,3120.0,1840.7498944835052,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,129964,2,1,2,0,1,,649.0,,43,2.0,0.0,5.0,5.0,2.8,5,5,2264.91839054909,1800.0,86717.55075421892,4,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03597887593531011,30970.553840792472,8,4,8,8_1,8_0,8_0_0 -27442,0,91.0,0.0,6,300,2000.0,0.0,0.0,86,78,0.0,0.0,2764.3484551518613,2180.0,309.6588607542345,0.0,71,2,2,2,1,2,2,2,2,0,,1,,4,130092,2,1,2,0,2,,339.0,,41,0.0,0.0,6.0,3.0,2.0,4,4,2724.52295733733,2000.0,38914.58100976063,5,5,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,1,0,0.056020132902194375,19457.290504880315,5,3,5,5_1,5_0,5_0_0 -27443,0,36.0,0.0,1,300,1440.0,0.0,0.0,62,67,0.0,207.03450096389156,1990.33088770934,1700.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,124839,1,1,1,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,2770.61090154508,1440.0,46980.751936042274,1,1,5,0,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036185031740537325,20426.413885235772,5,3,5,5_1,5_0,5_1_0 -27444,2,70.0,0.0,6,111,440.0,793.0,0.0,0,86,0.0,0.0,608.1566601334094,1233.0,0.0,1438.226750372027,50,0,0,0,0,0,0,0,0,0,,1,,4,109287,2,2,2,0,1,,306.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,256.991751739824,440.0,45035.27077777247,0,5,0,1,83.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027378540834899504,45035.27077777247,10,5,10,10_1,10_2,10_0_0 -27445,1,44.0,348.0,2,211,350.0,412.0,0.0,0,85,0.0,103.51725048194578,483.76097965157567,862.0,0.0,747.224995149149,71,1,2,2,1,2,2,2,2,0,,1,,2,108263,1,2,1,0,1,,182.0,277.0,31,0.0,0.0,4.0,3.0,2.0,2,2,1407.93138229528,350.0,11749.697790342165,0,7,2,3,90.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0.07336358903703323,5874.848895171082,1,1,1_1,1_1_1,1_1_1,1_0_1 -27446,2,75.0,0.0,2,111,0.0,0.0,1252.0,72,72,0.0,962.7104294820957,639.6634952165814,2182.0,0.0,1431.3437098650945,41,0,0,0,0,0,0,0,0,0,,1,,2,132191,2,2,2,0,1,,197.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,276.003256296423,0.0,30346.485207633177,5,5,0,1,140.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07190289040297664,20230.99013842212,5,3,5,5_1,5_2,5_0_1 -27447,2,42.0,0.0,5,211,980.0,1050.0,0.0,0,52,0.0,0.0,1354.530743024412,2030.0,0.0,1904.3355458898213,70,0,0,0,0,0,0,0,0,2,5.0,1,,3,113250,2,2,5,0,1,,450.0,515.0,22,1.0,4.0,4.0,2.0,1.3,1,1,1140.20761475496,980.0,19722.225169722944,0,1,2,3,120.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10292956208188943,15170.942438248418,3,2,3_0,3_1_0,3_1_0,3_0_0 -27448,1,86.0,27.0,5,111,266.0,1314.0,0.0,0,78,0.0,0.0,367.65834453519756,1580.0,0.0,2383.139911713548,50,0,0,0,0,0,0,0,0,0,,2,2004.0,3,129002,2,1,0,0,1,,0.0,470.0,11,0.0,3.0,2.0,1.0,1.0,3,3,423.559010105999,266.0,15919.12370604678,0,5,2,3,60.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09925169432535076,15919.12370604678,3,2,3_1,3_0_1,3_2_1,3_0_0 -27449,2,33.0,0.0,2,211,400.0,1000.0,0.0,62,54,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,101990,2,1,1,0,1,,300.0,627.0,43,2.0,0.0,5.0,4.0,2.3,2,2,1071.5776313711,400.0,37879.161004956266,1,1,2,3,100.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03695963592796626,16469.20043693751,4,2,4_0,4_1_0,4_1_0,4_0_1 -27450,2,64.0,0.0,2,211,350.0,1400.0,0.0,77,75,0.0,0.0,483.76097965157567,1810.0,103.2196202514115,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,2,101588,2,3,1,0,1,,180.0,540.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1165.98419124779,350.0,28016.444168726113,5,5,2,3,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06460491520977693,18677.62944581741,4,2,4_0,4_1_0,4_1_0,4_0_1 -27451,2,48.0,0.0,2,211,500.0,700.0,0.0,55,47,0.0,745.3242034700096,691.0871137879653,1920.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,1,,2,110880,2,1,1,0,1,,180.0,,43,2.0,0.0,3.0,2.0,1.5,4,2,1105.65913942739,500.0,31708.113126556596,4,1,0,1,85.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.060552325909041124,21138.742084371064,5,3,5,5_1,5_1,5_0_1 -27452,2,69.0,0.0,2,111,400.0,900.0,0.0,75,74,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,1,,2,104646,2,2,1,0,1,,210.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,282.255791495471,400.0,58203.5112600008,5,5,0,1,130.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022335422242702376,38802.340840000536,9,5,9,9_1,9_2,9_0_1 -27453,2,72.0,0.0,7,211,1000.0,1400.0,0.0,74,72,0.0,569.3448776507017,1382.1742275759307,2950.0,0.0,2539.1140611864284,20,0,0,0,0,0,0,0,0,0,,1,,5,109883,2,3,3,0,1,,400.0,988.0,41,0.0,9.0,6.0,2.0,1.5,3,3,1113.0805904617,1000.0,112092.97794038593,5,5,2,3,150.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026317438025144534,74728.65196025728,10,5,10,10_1,10_1,10_0_0 -27454,2,63.0,0.0,2,111,500.0,1208.0,0.0,53,75,0.0,0.0,691.0871137879653,1708.0,0.0,2190.8927042237183,33,0,0,0,0,0,0,0,0,0,,1,,2,107295,2,1,2,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,249.453321317259,500.0,50674.89115891235,1,5,0,1,110.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033705055125700226,33783.260772608235,9,5,9,9_1,9_2,9_0_1 -27455,2,43.0,0.0,9,211,950.0,0.0,0.0,21,45,0.0,0.0,1313.065516197134,1070.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,103243,2,1,1,0,1,,343.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,1032.71145007247,950.0,82002.095716901,1,1,1,2,144.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013048447001818127,29286.462756036075,8,4,8,8_1,8_1,8_0_0 -27456,2,59.0,0.0,5,211,860.0,0.0,0.0,56,52,0.0,517.5862524097289,1188.6698357153002,1470.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,132255,2,1,2,0,1,,320.0,,43,2.0,2.0,5.0,2.0,1.5,4,3,1018.82523647029,860.0,46682.31000304879,1,1,0,1,110.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03148944428636876,31121.54000203253,8,4,8,8_1,8_1,8_0_0 -27457,2,75.0,0.0,2,211,1200.0,90.0,0.0,0,77,0.0,0.0,1658.6090730911167,1290.0,0.0,163.2287610762704,71,2,2,2,2,1,2,2,2,0,,1,,2,110799,2,2,2,0,1,,350.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1227.25378396695,1200.0,13009.794504532483,0,5,0,1,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.09915606273032036,13009.794504532483,2,1,2_0,2_1_0,2_1_0,2_0_1 -27458,2,46.0,0.0,5,211,1700.0,0.0,0.0,54,63,0.0,258.79312620486445,2349.696186879082,2050.0,172.03270041901916,0.0,50,2,2,2,2,1,2,2,2,2,10.0,1,,3,104979,1,2,5,0,1,,260.0,680.0,43,3.0,0.0,4.0,3.0,2.0,1,1,1254.39224363607,1700.0,38493.838460536426,4,1,2,3,90.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.05325527622041755,19246.919230268213,5,3,5,5_1,5_1,5_0_0 -27459,2,63.0,0.0,1,211,366.0,0.0,0.0,0,77,1792.3018524216009,0.0,505.87576729279056,1626.0,103.2196202514115,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,128604,1,3,4,0,1,,212.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1049.67645559209,366.0,9055.502276212006,0,5,0,1,90.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.1795593386654384,9055.502276212006,1,1,1_0,1_1_0,1_1_0,1_1_0 -27460,2,70.0,0.0,2,211,500.0,1000.0,0.0,86,72,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,2,107066,2,1,3,0,2,,180.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,1103.89180498075,500.0,21098.92242495715,6,5,0,1,100.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07109367814091323,14065.948283304766,3,2,3_0,3_1_0,3_1_0,3_0_1 -27461,2,32.0,0.0,1,211,1500.0,0.0,0.0,55,47,0.0,414.0690019277831,2073.261341363896,1900.0,0.0,0.0,71,1,2,2,2,2,2,1,2,2,25.0,1,,1,114839,2,2,3,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1078.53167785651,1500.0,44908.04174476202,1,1,1,2,145.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.04230868072134568,29938.694496508015,8,4,8,8_1,8_1,8_1_0 -27462,1,63.0,108.0,2,211,285.0,154.0,0.0,0,75,0.0,0.0,393.9196548591402,439.0,0.0,279.3025467305071,43,0,0,0,0,0,0,0,0,0,,2,,2,107713,2,1,0,1,1,848.0,200.0,270.0,11,0.0,0.0,3.0,1.0,1.0,1,1,347.442424813247,285.0,11412.508088220311,0,5,2,3,63.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03846656638544898,11412.508088220311,2,1,2_1,2_0_1,2_1_1,2_0_1 -27463,2,42.0,0.0,9,211,2100.0,0.0,0.0,56,54,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,75.0,1,2006.0,6,115762,2,1,1,0,1,,521.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,985.12179603633,2100.0,49671.79956038321,1,1,1,2,153.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04227750994701024,21596.434591470963,6,3,6,6_1,6_1,6_0_0 -27464,2,85.0,0.0,2,211,402.0,1450.0,0.0,77,75,0.0,0.0,555.6340394855241,1852.0,0.0,2629.7967062288008,71,0,0,0,0,0,0,0,0,0,,1,,2,124913,2,1,1,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1193.67280428507,402.0,33289.0350271283,5,5,0,1,160.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.055633934672205,22192.690018085534,6,3,6,6_1,6_1,6_0_1 -27465,2,78.0,0.0,6,211,350.0,0.0,0.0,86,78,0.0,455.47590212056144,483.76097965157567,850.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106166,2,1,2,0,1,,130.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,1101.52004196193,350.0,11840.602294205797,5,5,0,1,140.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07178688878148942,7893.734862803864,1,1,1_0,1_1_0,1_1_0,1_0_0 -27466,2,31.0,0.0,2,211,615.0,830.0,0.0,55,63,0.0,0.0,850.0371499591973,1445.0,0.0,1505.3319077033825,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,120549,2,1,2,0,1,,312.0,592.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1191.63154928612,615.0,17314.83164951882,4,1,2,3,75.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08345446431413364,11543.221099679213,2,1,2_0,2_1_0,2_1_0,2_0_1 -27467,2,51.0,0.0,9,211,2100.0,0.0,0.0,81,62,0.0,248.44140115666985,2902.5658779094542,2340.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,110350,2,1,1,0,1,,120.0,,43,4.0,1.0,5.0,4.0,2.5,2,2,1023.6103368107,2100.0,48008.838709935415,4,1,1,2,140.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04874102483790631,19203.535483974167,5,3,5,5_1,5_1,5_0_0 -27468,2,71.0,0.0,1,211,600.0,0.0,0.0,0,75,0.0,0.0,829.3045365455583,750.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117481,1,2,4,0,2,,200.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1162.83893861125,600.0,19066.56369431777,0,5,0,1,140.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039335876774875565,19066.56369431777,5,3,5,5_1,5_1,5_1_0 -27469,0,68.0,0.0,5,211,400.0,1000.0,0.0,0,46,0.0,51.75862524097289,552.8696910303722,1450.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,2,20.0,1,,3,125048,2,1,3,0,1,,300.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1078.60106574257,400.0,40596.10439191477,0,1,0,1,250.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035717712862340205,40596.10439191477,9,5,9,9_1,9_1,9_0_0 -27470,2,69.0,0.0,2,211,450.0,0.0,0.0,86,72,1941.6603401234008,207.03450096389156,621.9784024091688,2040.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,101242,2,2,1,0,1,,280.0,,41,0.0,3.0,3.0,2.0,1.5,4,3,1207.52752800709,450.0,16554.244407212747,5,5,0,1,80.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12323123603945126,11036.162938141832,2,1,2_0,2_1_0,2_1_0,2_0_1 -27471,2,61.0,0.0,2,211,284.0,1500.0,0.0,45,75,0.0,0.0,392.5374806315643,1784.0,0.0,2720.4793512711735,44,0,0,0,0,0,0,0,0,0,,1,,2,107339,1,2,1,0,2,,158.0,528.0,42,1.0,1.0,4.0,2.0,1.5,1,1,1192.73261690981,284.0,31766.374164871588,1,5,2,3,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05616001343876419,21177.582776581057,5,3,5,5_1,5_1,5_0_1 -27472,2,51.0,0.0,1,211,600.0,900.0,0.0,75,52,0.0,0.0,829.3045365455583,1500.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,106056,1,2,2,0,1,,600.0,,42,2.0,0.0,6.0,4.0,2.5,2,2,1039.49583469045,600.0,49693.67764001724,5,1,0,1,110.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030184926357555042,19877.471056006896,5,3,5,5_1,5_1,5_1_0 -27473,2,48.0,0.0,6,211,700.0,350.0,0.0,0,54,0.0,0.0,967.5219593031513,1050.0,0.0,634.7785152966071,50,0,0,0,0,0,0,0,0,2,3.0,2,,4,122135,2,1,0,0,1,,0.0,435.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1364.60108718381,700.0,24941.99330742799,0,1,2,3,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.042097677882356695,24941.99330742799,7,4,7,7_0,7_1,7_0_0 -27474,2,45.0,0.0,2,211,349.0,1200.0,0.0,0,38,0.0,0.0,482.3788054239998,1549.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,109045,1,2,4,0,1,,178.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1100.60620719248,349.0,28471.03822157131,0,1,1,2,160.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05440616488746054,28471.03822157131,8,4,8,8_1,8_1,8_0_1 -27475,2,46.0,0.0,1,211,1500.0,0.0,0.0,54,38,0.0,0.0,2073.261341363896,1680.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,124235,2,1,0,0,2,,180.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1546.27717594854,1500.0,82765.68078912939,1,1,0,1,80.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.020298268364158187,45980.93377173855,10,5,10,10_0,10_1,10_1_0 -27476,2,60.0,0.0,2,211,800.0,2000.0,0.0,56,77,0.0,0.0,1105.7393820607444,2800.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,1,,2,113351,2,1,2,0,1,,280.0,,42,2.0,1.0,6.0,5.0,2.8,1,1,979.752441478993,800.0,50552.97508361398,4,5,1,2,180.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05538744248718964,18054.633958433566,4,2,4_0,4_1_0,4_1_0,4_0_1 -27477,2,58.0,0.0,1,211,350.0,0.0,0.0,52,48,0.0,517.5862524097289,483.76097965157567,910.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122796,2,1,2,0,1,,350.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1159.93582821971,350.0,24426.189911590995,1,4,0,1,160.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03725509395012836,16284.12660772733,4,2,4_0,4_1_0,4_1_0,4_1_0 -27478,2,70.0,0.0,2,211,800.0,2500.0,0.0,77,77,0.0,755.6759285182042,1105.7393820607444,4030.0,0.0,4534.132252118622,50,0,0,0,0,0,0,0,0,0,,1,,2,114636,1,1,1,0,1,,750.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1158.69158490126,800.0,57663.77598222176,5,5,0,1,140.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06988789636742629,38442.51732148117,9,5,9,9_1,9_1,9_0_1 -27479,2,66.0,0.0,6,211,330.0,1089.0,0.0,75,75,0.0,0.0,456.1174951000571,1419.0,0.0,1975.0680090228718,43,0,0,0,0,0,0,0,0,0,,1,,4,110894,2,1,2,0,1,,510.0,,41,0.0,3.0,5.0,2.0,1.5,3,2,1013.08961077095,330.0,39101.32759087474,5,5,0,1,120.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03629032791027686,26067.551727249825,7,4,7,7_1,7_1,7_0_0 -27480,2,54.0,0.0,2,211,1713.0,0.0,0.0,78,34,0.0,0.0,2367.6644518375692,1803.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,2,104430,2,2,2,0,1,,400.0,,42,1.0,2.0,7.0,3.0,2.0,2,2,1139.28720763504,1713.0,82885.88369027426,5,1,1,2,260.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021752799387859602,41442.94184513713,9,5,9,9_1,9_1,9_0_1 -27481,2,41.0,0.0,8,211,700.0,0.0,0.0,62,43,0.0,186.3310508675024,967.5219593031513,940.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,105920,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,980.803946425082,700.0,84482.74368334142,1,1,0,1,130.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01112653257952076,40229.87794444829,9,5,9,9_1,9_1,9_0_0 -27482,2,66.0,0.0,2,211,1500.0,0.0,0.0,56,75,0.0,0.0,2073.261341363896,1590.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126911,2,1,1,0,1,,120.0,,42,3.0,3.0,7.0,4.0,2.5,1,1,1093.50790182496,1500.0,64562.49997422856,1,5,1,2,150.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0246272991385817,25824.999989691423,7,4,7,7_1,7_1,7_0_1 -27483,2,75.0,0.0,1,211,240.0,0.0,0.0,86,78,0.0,496.8828023133397,331.72181461822333,1080.0,619.317721508469,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,114175,2,1,2,0,2,,120.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,1262.75014755114,240.0,19300.532501355745,5,5,0,1,120.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05595700532739895,9650.266250677872,1,1,1_0,1_1_0,1_1_0,1_1_0 -27484,2,64.0,0.0,1,211,400.0,1500.0,0.0,0,74,0.0,0.0,552.8696910303722,1900.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,1,132889,2,1,1,0,2,,310.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1162.83893861125,400.0,30793.969102612587,0,5,1,2,150.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06170039314090246,30793.969102612587,8,4,8,8_1,8_1,8_1_0 -27485,2,53.0,0.0,2,211,300.0,0.0,0.0,52,47,0.0,0.0,414.65226827277917,350.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,119871,2,1,1,0,1,,560.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1025.33306671102,300.0,65935.51050932088,1,1,0,1,180.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.005308217033528886,43957.00700621392,10,5,10,10_1,10_1,10_0_1 -27486,1,37.0,30.0,7,211,680.0,0.0,0.0,21,52,0.0,641.8069529880638,939.8784747516328,1400.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,123211,2,2,1,0,2,,300.0,,43,2.0,2.0,4.0,5.0,2.5999999999999996,3,3,1157.63514725266,680.0,23114.840629261136,4,1,1,2,80.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.060567149151257244,8890.323318946592,1,1,1_1,1_1_1,1_1_1,1_0_0 -27487,2,86.0,0.0,6,211,1830.0,0.0,0.0,75,75,0.0,0.0,2529.378836463953,1950.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129366,2,2,2,0,2,,292.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1051.49477536211,1830.0,33113.73616413085,5,5,0,1,120.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05888794880573641,22075.82410942057,6,3,6,6_1,6_1,6_0_0 -27488,2,34.0,0.0,9,211,700.0,1200.0,0.0,62,37,0.0,0.0,967.5219593031513,1900.0,0.0,2176.3834810169387,41,0,0,0,0,0,0,0,0,0,,1,2008.0,6,126065,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,5,4,1061.14391358739,700.0,47908.047232208606,1,1,1,2,140.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03965930798203415,22813.35582486124,6,3,6,6_1,6_1,6_0_0 -27489,2,39.0,0.0,6,211,2100.0,0.0,0.0,52,62,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,71,2,2,2,2,2,2,2,1,2,15.0,1,,4,124386,2,1,2,0,1,,450.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,1720.38541290019,2100.0,41581.26776103344,1,1,0,1,150.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.050503510669002445,27720.845174022295,7,4,7,7_1,7_1,7_0_0 -27490,2,56.0,0.0,1,211,2320.0,0.0,0.0,77,22,298.71697540360015,0.0,3206.644207976159,2570.0,86.01635020950958,0.0,71,2,2,1,2,2,2,2,1,2,8.0,1,,1,103977,2,1,2,0,1,,246.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1780.37585300475,2320.0,21971.77896158662,5,1,0,1,120.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.11696822567226554,14647.852641057747,3,2,3_0,3_1_0,3_1_0,3_1_0 -27491,0,69.0,0.0,1,211,1000.0,0.0,0.0,77,74,2688.452778632401,0.0,1382.1742275759307,2800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101296,2,2,2,0,1,,300.0,,41,0.0,0.0,4.0,3.0,2.0,5,4,1935.99915086593,1000.0,73218.10924749769,5,5,0,1,120.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03824190529880001,36609.054623748845,9,5,9,9_1,9_1,9_1_0 -27492,2,69.0,0.0,5,211,1500.0,0.0,0.0,77,74,0.0,51.75862524097289,2073.261341363896,1700.0,258.04905062852873,0.0,71,2,2,2,1,2,2,2,2,0,,1,,3,121808,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1735.29642803548,1500.0,38229.13871832616,5,5,0,1,92.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.04446869736003389,25486.092478884108,7,4,7,7_1,7_1,7_0_0 -27493,2,54.0,0.0,1,211,1200.0,0.0,0.0,43,31,8961.509262108004,0.0,1658.6090730911167,7200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,1,105466,2,2,3,0,1,,1100.0,,43,2.0,1.0,7.0,4.0,2.5,3,3,1710.39549815962,1200.0,211468.72742477336,1,1,0,1,222.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03404758749759482,84587.49096990934,10,5,10,10_1,10_1,10_1_0 -27495,1,38.0,440.0,2,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,725.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118586,2,1,0,0,1,,0.0,400.0,31,1.0,0.0,5.0,4.0,2.1,1,1,2686.96723723624,0.0,16363.949034151934,0,6,2,3,85.0,2,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04430470899700974,7792.356682929492,1,1,1_1,1_0_1,1_1_1,1_0_1 -27496,2,77.0,0.0,2,211,586.0,1466.0,0.0,75,33,0.0,0.0,809.9540973594953,2052.0,0.0,2658.81515264236,71,0,0,0,0,0,0,0,0,0,,1,,2,115247,2,1,1,0,1,,415.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1732.94522543838,586.0,94148.79836521715,5,5,0,1,150.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021795286138862734,62765.86557681143,10,5,10,10_1,10_1,10_0_1 -27497,2,92.0,0.0,2,211,0.0,0.0,0.0,0,74,0.0,0.0,0.0,2705.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107077,2,1,3,0,1,,220.0,,11,0.0,2.0,5.0,1.0,1.0,6,5,1817.0328682016,0.0,38167.01972694767,0,5,0,1,101.0,2,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07087270683831114,38167.01972694767,9,5,9,9_1,9_1,9_0_1 -27498,2,80.0,0.0,2,211,0.0,0.0,0.0,78,78,0.0,0.0,0.0,861.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111063,2,1,0,0,1,,490.0,300.0,41,0.0,1.0,3.0,3.0,2.0,1,1,3111.49507703423,0.0,25007.72884914754,5,5,2,3,91.0,2,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034429356028040495,12503.86442457377,2,1,2_0,2_0_0,2_1_0,2_0_1 -27499,2,57.0,0.0,1,211,533.0,1635.0,0.0,56,42,0.0,0.0,736.698863297971,2168.0,0.0,2965.322492885579,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,106622,2,2,3,0,1,,623.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,1631.06651767219,533.0,38843.836129272495,1,1,0,1,140.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055813231030655275,16888.62440403152,4,2,4_0,4_1_0,4_1_0,4_1_0 -27500,2,49.0,0.0,1,211,1800.0,120.0,0.0,56,63,0.0,0.0,2487.913609636675,1920.0,0.0,217.63834810169388,71,2,2,2,1,2,2,2,2,2,25.0,1,,1,113386,1,1,2,0,2,,751.0,,43,3.0,0.0,8.0,5.0,3.0,2,2,1686.06945713755,1800.0,50242.822647798916,1,1,1,2,135.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.03821441349860373,16747.607549266304,4,2,4_0,4_1_0,4_1_0,4_1_0 -27501,2,72.0,0.0,2,211,350.0,1274.0,0.0,77,75,0.0,0.0,483.76097965157567,1624.0,0.0,2310.5937956796497,33,0,0,0,0,0,0,0,0,0,,1,,2,108111,2,2,1,0,1,,574.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1773.6622886713,350.0,30886.375608050515,5,5,0,1,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05257981773609932,20590.917072033677,5,3,5,5_1,5_1,5_0_1 -27502,1,41.0,400.0,1,211,660.0,620.0,0.0,46,22,0.0,0.0,912.2349902001142,1346.0,113.54158227655265,1124.4647985254182,71,0,0,0,0,0,0,0,0,1,1.0,1,,1,109808,2,1,2,0,1,,240.0,540.0,43,2.0,0.0,7.0,4.0,2.1,3,3,1835.23405510554,660.0,18291.00803178237,1,1,2,3,110.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07358807112550586,8710.003824658272,1,1,1_1,1_1_1,1_1_1,1_1_0 -27503,0,68.0,0.0,1,211,205.0,1154.0,0.0,0,78,0.0,0.0,283.3457166530658,1359.0,0.0,2092.955447577956,71,2,2,1,2,1,2,2,2,0,,1,,1,116054,2,2,1,0,1,,186.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1793.4000517224,205.0,11761.385311757764,0,5,0,1,70.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.11554761314055569,11761.385311757764,2,1,2_0,2_1_0,2_1_0,2_1_0 -27504,1,51.0,186.0,1,211,0.0,0.0,0.0,85,67,0.0,0.0,0.0,883.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,107811,1,3,0,0,1,,265.0,460.0,42,1.0,0.0,4.0,3.0,2.0,2,2,3314.23496942007,0.0,26838.542146263102,7,1,2,3,101.0,2,3,7,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03290044575401595,13419.271073131551,3,2,3_1,3_0_1,3_1_1,3_1_0 -27505,0,73.0,0.0,5,211,600.0,0.0,0.0,0,64,0.0,828.1380038555662,829.3045365455583,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,105703,2,1,2,0,1,,600.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1776.4573503733,600.0,30240.2357286945,0,5,5,0,110.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046295935407393705,30240.2357286945,8,4,8,8_1,8_1,8_0_0 -27506,1,41.0,258.0,2,211,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1209.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,118422,1,1,0,0,1,,245.0,292.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2160.37884843001,0.0,20798.801980568962,0,4,2,3,98.0,2,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05812834802357819,12999.2512378556,2,1,2_1,2_0_1,2_1_1,2_0_1 -27507,2,53.0,0.0,2,211,500.0,0.0,0.0,0,62,0.0,0.0,691.0871137879653,1046.0,939.2985442878446,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,133393,2,2,0,0,1,,350.0,280.0,12,1.0,1.0,3.0,1.0,1.0,2,2,2197.27412594952,500.0,20938.38188078753,0,1,2,3,64.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04995610482010457,20938.38188078753,5,3,5,5_0,5_1,5_0_1 -27508,1,47.0,277.0,1,211,0.0,0.0,0.0,0,52,0.0,0.0,0.0,553.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,2,,1,105854,2,1,0,0,1,,150.0,485.0,32,1.0,2.0,4.0,2.0,1.3,1,1,2868.42606456979,0.0,17676.652653710524,0,1,2,3,106.0,2,3,7,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03128420356689643,13597.425118238863,3,2,3_1,3_0_1,3_1_1,3_1_0 -27509,0,79.0,0.0,6,211,1800.0,0.0,0.0,0,75,0.0,51.75862524097289,2487.913609636675,1865.0,25.804905062852875,0.0,43,2,2,2,2,1,2,2,2,0,,1,,4,118007,2,2,3,0,1,,500.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1606.07815291457,1800.0,37856.35944201759,0,5,0,1,100.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.04926517043606672,37856.35944201759,9,5,9,9_1,9_1,9_0_0 -27510,2,83.0,0.0,2,211,500.0,0.0,0.0,75,74,2987.1697540360015,0.0,691.0871137879653,2500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,100589,2,1,3,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1631.37611829245,500.0,71758.21782892809,5,5,0,1,100.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03483921529322274,47838.811885952055,10,5,10,10_1,10_1,10_0_1 -27511,2,72.0,0.0,1,211,600.0,1350.0,0.0,78,78,0.0,0.0,829.3045365455583,1950.0,0.0,2448.431416144056,33,2,2,2,2,1,2,2,2,0,,1,,1,112108,2,3,2,0,1,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1867.00557837082,600.0,29929.59958921,5,5,1,2,160.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.06515289301441239,19953.066392806668,5,3,5,5_1,5_1,5_1_0 -27512,0,86.0,0.0,1,211,0.0,1057.0,0.0,0,72,0.0,0.0,0.0,2474.0,0.0,1917.0311161957534,71,2,2,1,2,1,2,2,2,0,,1,,1,117948,2,1,1,0,1,,408.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1836.07782121144,0.0,8481.405626209742,0,5,0,1,80.0,2,3,7,0,1,0,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.2916969319748956,8481.405626209742,1,1,1_0,1_1_0,1_1_0,1_1_0 -27513,2,59.0,0.0,6,211,3000.0,0.0,0.0,85,47,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,71,2,2,1,1,2,2,2,2,2,40.0,1,,4,111316,2,1,2,0,1,,600.0,,42,2.0,0.0,5.0,4.0,2.5,1,1,1730.75239051003,3000.0,69163.22208719411,7,1,0,1,170.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04337565413331811,27665.288834877643,7,4,7,7_1,7_1,7_0_0 -27514,0,90.0,0.0,1,211,0.0,0.0,0.0,0,71,2240.377315527001,0.0,0.0,1860.0,619.317721508469,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115386,1,2,1,0,1,,150.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,2008.67188489156,0.0,14087.686403029258,0,5,0,1,80.0,2,3,7,1,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13203019621447895,14087.686403029258,3,2,3_0,3_1_0,3_1_0,3_1_0 -27515,2,50.0,0.0,6,211,450.0,1400.0,0.0,72,21,0.0,0.0,621.9784024091688,1850.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,1,,4,121167,2,1,2,0,1,,800.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,1601.32976755792,450.0,25601.722406447458,6,1,1,2,110.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07226076318732766,17067.81493763164,4,2,4_0,4_1_0,4_1_0,4_0_0 -27516,2,58.0,0.0,5,211,921.0,0.0,0.0,75,37,0.0,414.0690019277831,1272.9824635974321,1336.0,25.804905062852875,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,123661,2,1,2,0,1,,561.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1601.32976755792,921.0,82595.03146691315,7,1,0,1,93.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016175307113178956,55063.354311275434,10,5,10,10_1,10_1,10_0_0 -27517,2,72.0,0.0,2,211,200.0,0.0,0.0,77,75,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,120830,1,2,3,0,1,,461.0,,41,0.0,5.0,7.0,2.0,1.5,1,1,1830.24020082435,200.0,36437.07747784291,5,5,0,1,150.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.005488914420252787,24291.384985228608,7,4,7,7_1,7_1,7_0_1 -27518,2,62.0,0.0,5,211,1450.0,0.0,0.0,52,72,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,1,,3,101723,1,1,2,0,1,,210.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1711.27681869406,1450.0,17494.5360519375,4,5,0,1,88.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.08288302105841865,11663.024034625,2,1,2_0,2_1_0,2_1_0,2_0_0 -27519,2,43.0,0.0,9,211,1500.0,0.0,0.0,55,21,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2007.0,6,106365,2,1,1,0,1,,192.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1885.29472978643,1500.0,51629.0,1,1,1,2,110.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029053438958724746,34419.333333333336,9,5,9,9_1,9_1,9_0_0 -27520,2,76.0,0.0,1,211,360.0,0.0,0.0,0,78,2688.452778632401,0.0,497.582721927335,2250.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120575,2,2,1,0,1,,298.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,1829.88223086676,360.0,29170.98062216452,0,5,0,1,95.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07713144885813056,29170.98062216452,8,4,8,8_1,8_1,8_1_0 -27521,2,92.0,0.0,1,211,600.0,0.0,0.0,0,78,2539.0942909306013,0.0,829.3045365455583,2420.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104577,2,2,3,0,1,,168.0,,21,0.0,3.0,4.0,2.0,1.5,2,2,1936.47661896596,600.0,21709.16630024746,0,5,0,1,70.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11147364972612582,14472.777533498307,3,2,3_0,3_1_0,3_1_0,3_1_0 -27522,1,56.0,139.0,2,211,1200.0,0.0,0.0,0,72,0.0,0.0,1658.6090730911167,1305.0,180.63433543997013,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,113204,1,2,1,0,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1854.5667207342,1200.0,20767.38833708174,0,7,1,2,65.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0628389077537412,20767.38833708174,5,3,5,5_1,5_1,5_0_1 -27523,2,84.0,0.0,2,211,626.0,0.0,0.0,86,78,2987.1697540360015,0.0,865.2410664625326,2776.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115695,2,1,1,0,1,,288.0,,41,1.0,1.0,6.0,3.0,2.0,2,1,1737.9666527433,626.0,28934.182998820834,6,5,0,1,100.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09594188300091734,14467.091499410417,3,2,3_0,3_1_0,3_1_0,3_0_1 -27524,2,28.0,0.0,1,211,2600.0,0.0,0.0,52,63,0.0,621.1035028916747,3593.6529916974196,3200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122296,2,1,3,0,1,,600.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,3,1617.87727056876,2600.0,53496.63444616094,1,1,1,2,220.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.059816847043349664,20575.628633138826,5,3,5,5_1,5_1,5_1_0 -27525,2,50.0,0.0,7,211,600.0,0.0,0.0,45,67,0.0,103.51725048194578,829.3045365455583,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,113438,1,1,1,0,1,,218.0,300.0,43,2.0,1.0,4.0,3.0,1.8,3,3,1983.91124886686,600.0,37130.74269889994,1,1,2,3,92.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018852302677499058,20628.190388277744,5,3,5,5_1,5_1,5_0_0 -27526,2,57.0,0.0,6,211,1100.0,0.0,0.0,0,78,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,107110,2,1,2,0,1,,120.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1895.49386068233,1100.0,9623.720341211829,0,7,0,1,80.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1143009107703858,9623.720341211829,1,1,1_0,1_1_0,1_1_0,1_0_0 -27527,1,31.0,182.0,2,211,1430.0,0.0,0.0,0,56,0.0,0.0,1976.5091454335807,1430.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,103399,2,1,0,0,1,,250.0,436.0,32,1.0,0.0,3.0,2.0,1.3,2,2,2738.99724311108,1430.0,13580.535190871678,0,4,2,3,80.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.105297764771538,10446.565531439752,2,1,2_1,2_0_1,2_1_1,2_0_1 -27528,2,84.0,0.0,2,211,407.0,0.0,0.0,77,75,2987.1697540360015,0.0,562.5449106234038,2617.0,361.26867087994026,0.0,41,2,2,1,2,2,2,2,1,0,,1,,2,126020,2,1,2,0,1,,294.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1698.18977571459,407.0,40318.635242482356,5,5,0,1,140.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.06490795098249152,26879.090161654905,7,4,7,7_1,7_1,7_0_1 -27529,2,52.0,0.0,1,211,360.0,0.0,0.0,0,85,0.0,103.51725048194578,497.582721927335,492.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123320,2,2,2,0,1,,100.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,2196.10259347137,360.0,18299.567122186516,0,7,0,1,30.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02688588187441308,18299.567122186516,4,2,4_0,4_1_0,4_1_0,4_1_0 -27530,2,84.0,0.0,1,211,500.0,0.0,0.0,0,77,2688.452778632401,0.0,691.0871137879653,2430.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116741,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1838.950077571,500.0,11462.407858013337,0,5,0,1,90.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.21199734210305507,11462.407858013337,2,1,2_0,2_1_0,2_1_0,2_1_0 -27531,2,84.0,0.0,2,211,432.0,0.0,0.0,77,78,1493.5848770180007,0.0,597.099266312802,1630.0,340.62474682965797,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126889,2,2,2,0,1,,195.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,1724.88033656163,432.0,29452.500997981224,5,5,0,1,90.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05534334758571864,19635.000665320815,5,3,5,5_1,5_1,5_0_1 -27532,2,75.0,0.0,1,211,264.0,970.0,0.0,86,78,0.0,0.0,364.89399608004567,1234.0,0.0,1759.2433138220254,71,0,0,0,0,0,0,0,0,0,,2,,1,111327,2,1,0,0,1,,300.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,2441.92240858096,264.0,19428.784703239053,6,5,0,1,80.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06351400866541461,12952.523135492702,2,1,2_0,2_0_0,2_1_0,2_1_0 -27533,2,58.0,0.0,6,211,1600.0,0.0,0.0,78,43,0.0,207.03450096389156,2211.478764121489,1864.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106752,2,1,2,0,1,,600.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1640.50750947338,1600.0,19209.01751025388,5,1,0,1,120.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09703775838639256,12806.011673502588,2,1,2_0,2_1_0,2_1_0,2_0_0 -27534,2,45.0,0.0,9,211,500.0,0.0,0.0,0,42,1493.5848770180007,0.0,691.0871137879653,1510.0,17.203270041901916,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,125586,2,2,1,0,1,,200.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2021.93687731033,500.0,35964.0,0,1,2,3,70.0,2,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041986430875319766,35964.0,9,5,9,9_1,9_1,9_0_0 -27535,2,41.0,0.0,8,300,1980.0,0.0,0.0,34,34,0.0,0.0,2736.7049706003427,1980.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,131861,2,1,2,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1974.25998953156,1980.0,72068.79329404286,1,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027473749864543175,34318.47299716326,9,5,9,9_1,9_0,9_0_0 -27536,0,49.0,0.0,1,300,390.0,0.0,0.0,0,11,0.0,155.27587572291867,539.0479487546129,680.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102617,1,2,3,0,2,,300.0,,32,1.0,0.0,4.0,4.0,2.3,2,2,2150.72055858492,390.0,16622.0,0,1,5,0,85.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04090963782938275,7226.956521739131,1,1,1_0,1_1_0,1_0_0,1_1_0 -27537,2,80.0,0.0,2,300,0.0,0.0,0.0,0,78,1299.4188430056606,0.0,0.0,5654.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117832,1,1,2,0,2,,80.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,2503.73939456962,0.0,19583.555356462588,0,5,0,1,172.0,0,0,7,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.28871162039196197,19583.555356462588,5,3,5,5_1,5_0,5_0_1 -27538,2,86.0,0.0,2,112,550.0,0.0,0.0,72,72,4182.037655650402,0.0,760.1958251667618,3350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106618,2,2,2,0,1,,480.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,942.180613568674,550.0,19980.500910475697,5,5,0,1,70.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.16766346424496337,13320.333940317132,3,2,3_0,3_1_0,3_0_0,3_0_1 -27539,2,42.0,0.0,2,112,2510.0,0.0,0.0,0,48,0.0,0.0,3469.2573112155856,2510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,121036,1,1,3,0,1,,467.0,,22,1.0,0.0,7.0,2.0,1.5,4,4,847.903555228395,2510.0,36889.237903481604,0,1,1,2,150.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0680415249175724,24592.825268987737,7,4,7,7_1,7_0,7_0_1 -27540,2,59.0,0.0,7,112,1440.0,0.0,0.0,75,52,0.0,72.46207533736204,1990.33088770934,1510.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,111928,2,1,2,0,1,,250.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,779.116657651791,1440.0,45737.44768623501,5,1,0,1,135.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033014522593363786,30491.631790823343,8,4,8,8_1,8_0,8_0_0 -27541,2,64.0,0.0,5,112,940.0,0.0,0.0,77,77,0.0,0.0,1299.2437739213747,940.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106124,2,1,1,0,1,,369.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,847.21624883129,940.0,35655.89514625227,5,5,0,1,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026363101981995866,23770.59676416818,6,3,6,6_1,6_0,6_0_0 -27542,2,49.0,0.0,7,112,900.0,0.0,0.0,55,63,0.0,683.2138531808421,1243.9568048183376,1560.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,101707,2,1,2,0,1,,400.0,,43,2.0,2.0,3.0,2.0,1.5,3,2,793.543407651153,900.0,38385.58205583128,1,1,1,2,85.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04064025908819104,25590.38803722085,7,4,7,7_1,7_0,7_0_0 -27543,2,46.0,0.0,9,112,1763.0,0.0,0.0,45,47,0.0,72.46207533736204,2436.7731632163654,1833.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,2007.0,6,131858,2,1,1,0,1,,300.0,,43,2.0,2.0,4.0,4.0,2.1,2,1,764.039895924427,1763.0,64360.629132962946,1,1,1,2,140.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02848014422315848,30647.91863474426,8,4,8,8_1,8_0,8_0_0 -27544,2,69.0,0.0,5,112,1680.0,0.0,0.0,78,75,2987.1697540360015,0.0,2322.0527023275636,3800.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107220,2,1,1,0,1,,150.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,882.467118115575,1680.0,35786.04101580212,5,5,0,1,210.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10618665524700052,23857.360677201414,6,3,6,6_1,6_0,6_0_0 -27545,0,66.0,0.0,7,112,1332.0,0.0,0.0,0,77,0.0,724.6207533736205,1841.0560711311396,2112.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,115754,2,1,2,0,1,,365.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,911.308573162627,1332.0,16111.784612752617,0,5,0,1,70.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13108417538851244,16111.784612752617,4,2,4_0,4_1_0,4_0_0,4_0_0 -27546,2,70.0,0.0,6,112,0.0,0.0,0.0,86,86,1493.5848770180007,0.0,0.0,2583.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129505,2,2,5,0,2,,178.0,,41,0.0,0.0,2.0,2.0,1.5,1,1,842.446721030294,0.0,26989.091468995288,5,5,0,1,60.0,6,0,7,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09570533350362373,17992.72764599686,4,2,4_0,4_1_0,4_0_0,4_0_0 -27547,2,79.0,0.0,1,112,522.0,0.0,0.0,0,78,3435.2452171414016,51.75862524097289,721.4949467946358,2972.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106320,2,1,2,0,1,,350.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,991.156752463724,522.0,26951.382203796133,0,5,0,1,115.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11027263750433514,26951.382203796133,7,4,7,7_1,7_0,7_1_0 -27548,2,80.0,0.0,2,112,450.0,0.0,0.0,75,78,3149.9705056309635,0.0,621.9784024091688,2609.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104040,2,2,2,0,1,,363.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,778.202863614797,450.0,44116.82022001204,5,5,0,1,80.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05913844168706699,29411.213480008028,8,4,8,8_1,8_0,8_0_1 -27549,2,67.0,0.0,2,112,11002.0,0.0,0.0,54,75,4032.679167948602,0.0,15206.680851790388,13782.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109286,2,2,3,0,1,,546.0,1075.0,42,1.0,3.0,6.0,2.0,1.5,1,1,984.046702820272,11002.0,53465.85637040022,1,5,2,3,120.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.25777198637802035,35643.90424693348,9,5,9,9_1,9_0,9_0_1 -27550,2,52.0,0.0,7,112,480.0,0.0,0.0,56,47,2464.4150470797013,0.0,663.4436292364467,2230.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,102664,2,1,1,0,1,,500.0,,43,2.0,0.0,3.0,3.0,2.0,2,2,937.073434261653,480.0,41898.72296536875,1,1,1,2,80.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05322357919698888,20949.361482684373,5,3,5,5_1,5_0,5_0_0 -27551,2,57.0,0.0,2,112,360.0,0.0,0.0,75,54,2091.018827825201,0.0,497.582721927335,1760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,118006,2,1,1,0,1,,600.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,768.194747590971,360.0,52803.67616755318,5,1,1,2,80.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03333101268205802,35202.45077836879,9,5,9,9_1,9_0,9_0_1 -27552,2,55.0,0.0,7,112,1950.0,0.0,0.0,45,62,0.0,0.0,2695.2397437730647,1983.0,56.77079113827632,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,5,122047,2,1,2,0,1,,786.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,937.073434261653,1950.0,68167.10409792169,1,1,0,1,90.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02909027787290818,34083.552048960846,9,5,9,9_1,9_0,9_0_0 -27553,2,50.0,0.0,7,112,600.0,0.0,0.0,54,48,2240.377315527001,124.22070057833493,829.3045365455583,2220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,116640,2,2,3,0,1,,710.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,794.307482744604,600.0,54950.0,1,1,1,2,150.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04040036396724295,23891.304347826088,6,3,6,6_1,6_0,6_0_0 -27554,2,62.0,0.0,6,112,427.0,0.0,0.0,77,78,0.0,683.2138531808421,590.1883951749223,1137.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,104320,2,1,3,0,1,,254.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,768.194747590971,427.0,23391.089508499415,5,5,0,1,78.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048608253137882196,15594.059672332944,3,2,3_0,3_1_0,3_0_0,3_0_0 -27555,2,35.0,0.0,9,112,1420.0,0.0,0.0,42,22,0.0,0.0,1962.6874031578213,1420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,105883,2,1,1,0,1,,571.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,937.811811473442,1420.0,50135.41747560497,1,1,1,2,121.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02832329062964216,27853.009708669426,7,4,7,7_1,7_0,7_0_0 -27556,2,63.0,0.0,7,112,1248.0,0.0,0.0,47,75,0.0,258.79312620486445,1724.9534360147613,1498.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,110884,2,1,1,0,1,,242.0,,42,1.0,2.0,5.0,2.0,1.5,3,3,823.432120487058,1248.0,54646.64124127611,1,5,0,1,145.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027412480730261594,36431.09416085074,9,5,9,9_1,9_0,9_0_0 -27557,1,36.0,85.0,1,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,3448.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,103918,2,2,3,0,1,,409.0,650.0,43,2.0,1.0,4.0,4.0,2.1,1,1,1024.51538712925,0.0,40028.17907359549,1,1,2,3,110.0,6,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08613931684627808,19061.037654093092,5,3,5,5_1,5_0,5_1_0 -27558,1,32.0,283.0,2,112,0.0,0.0,0.0,85,63,0.0,0.0,0.0,4794.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,103375,2,1,2,0,1,,391.0,700.0,42,1.0,0.0,6.0,6.0,2.6999999999999997,1,1,962.609632407171,0.0,39363.66786265019,6,1,2,3,150.0,6,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.12178743141333985,14579.136245425998,3,2,3_1,3_1_1,3_0_1,3_0_1 -27559,2,47.0,0.0,2,112,625.0,0.0,0.0,22,65,1493.5848770180007,0.0,863.8588922349566,1685.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,124116,2,1,1,0,1,,370.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,949.961153371179,625.0,43004.729601281404,1,1,0,1,160.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039181736883884336,23891.516445156336,6,3,6,6_1,6_0,6_0_1 -27560,2,69.0,0.0,5,112,520.0,0.0,0.0,0,74,0.0,414.0690019277831,718.7305983394839,920.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132316,2,1,1,0,1,,352.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,837.123100161729,520.0,64138.59771640444,0,5,0,1,140.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014343936923408847,64138.59771640444,10,5,10,10_1,10_0,10_0_0 -27561,0,64.0,0.0,6,112,529.0,0.0,0.0,0,77,2688.452778632401,0.0,731.1701663876672,2359.0,51.60981012570575,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,109846,2,1,2,0,1,,222.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,924.284581762342,529.0,21696.026247040452,0,5,0,1,90.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10872958822686668,21696.026247040452,6,3,6,6_1,6_0,6_0_0 -27562,2,43.0,0.0,8,112,1101.0,0.0,0.0,0,54,0.0,0.0,1521.7738245610994,1101.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,110516,2,1,1,0,1,,275.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,828.225014613004,1101.0,26078.25810075777,0,1,1,2,73.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04221907750686798,26078.25810075777,7,4,7,7_1,7_0,7_0_0 -27563,2,78.0,0.0,2,400,0.0,0.0,0.0,0,71,2240.377315527001,0.0,0.0,4284.0,137.62616033521533,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,111294,2,2,1,0,1,,217.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,856.28777984895,0.0,41448.93685718685,0,5,0,1,60.0,0,0,7,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10335608883674409,41448.93685718685,9,5,9,9_1,9_0,9_0_1 -27564,2,77.0,0.0,2,400,0.0,0.0,0.0,0,71,1493.5848770180007,0.0,0.0,1150.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,128181,2,1,2,0,1,,194.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,961.737416261173,0.0,21753.23255156443,0,5,0,1,140.0,0,0,7,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052865706155350016,14502.155034376286,3,2,3_0,3_1_0,3_0_0,3_0_1 -27565,2,46.0,0.0,1,400,400.0,0.0,0.0,0,11,1147.0731855498245,0.0,552.8696910303722,1268.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,108718,2,1,2,0,2,,350.0,,22,1.0,0.0,6.0,2.0,1.5,4,3,789.07603896068,400.0,15772.973335289444,0,1,0,1,130.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08039067670031862,10515.315556859628,2,1,2_0,2_1_0,2_0_0,2_1_0 -27566,1,42.0,368.0,9,400,480.0,0.0,0.0,90,11,0.0,0.0,663.4436292364467,580.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,108733,2,1,2,0,1,,259.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,821.955279879375,480.0,15237.930186165459,1,1,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03806291227968631,5442.117923630522,1,1,1_1,1_1_1,1_0_1,1_0_0 -27567,2,67.0,0.0,2,400,500.0,0.0,0.0,77,78,2240.377315527001,0.0,691.0871137879653,2100.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,122991,2,1,1,0,1,,282.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,846.076546452269,500.0,21823.66628925316,5,5,0,1,70.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09622581156467387,14549.110859502107,3,2,3_0,3_1_0,3_0_0,3_0_1 -27568,2,76.0,0.0,5,400,1000.0,0.0,0.0,72,72,0.0,0.0,1382.1742275759307,3000.0,3440.6540083803834,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,104742,2,1,1,0,1,,210.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,874.263414060118,1000.0,52189.71409249747,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05748259119954185,34793.142728331644,9,5,9,9_1,9_0,9_0_0 -27569,2,80.0,0.0,1,400,400.0,0.0,0.0,71,90,1493.5848770180007,165.62760077111324,552.8696910303722,1660.0,172.03270041901916,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,126466,2,1,2,0,2,,200.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,874.538877567734,400.0,19354.147011294765,5,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08576973188388262,12902.764674196509,2,1,2_0,2_1_0,2_0_0,2_1_0 -27570,2,66.0,0.0,6,400,1622.0,0.0,0.0,78,77,1493.5848770180007,0.0,2241.8865971281593,2814.0,330.3027848045168,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,107679,2,1,1,0,1,,382.0,,41,0.0,3.0,4.0,2.0,1.5,5,5,832.086459135165,1622.0,28290.253006749066,5,5,0,1,92.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0994688877235802,18860.168671166044,5,3,5,5_1,5_0,5_0_0 -27571,2,65.0,0.0,1,400,1194.0,0.0,0.0,75,74,597.4339508072003,0.0,1650.3160277256611,1594.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123493,2,1,1,0,1,,259.0,,41,0.0,2.0,7.0,2.0,1.5,3,3,858.937650526027,1194.0,57561.19467727797,6,5,0,1,190.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027692267489180945,38374.12978485198,9,5,9,9_1,9_0,9_1_0 -27572,2,34.0,0.0,9,400,1592.0,0.0,0.0,48,48,0.0,0.0,2200.4213703008813,1692.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,4,30.0,1,2009.0,6,121149,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,821.955279879375,1592.0,64973.7523948413,1,1,1,2,144.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026041284944077498,27072.396831183876,7,4,7,7_1,7_0,7_0_0 -27573,2,66.0,0.0,5,400,500.0,0.0,0.0,71,90,3435.2452171414016,0.0,691.0871137879653,2900.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131097,2,1,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,815.735598480625,500.0,54992.81429926121,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05273416239835828,36661.876199507475,9,5,9,9_1,9_0,9_0_0 -27574,2,54.0,0.0,5,400,800.0,0.0,0.0,52,64,0.0,569.3448776507017,1105.7393820607444,1500.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,102005,2,2,2,0,1,,429.0,,43,2.0,1.0,3.0,2.0,1.5,3,2,817.519669581343,800.0,39385.17213552464,1,1,0,1,50.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038085399115141354,26256.781423683093,7,4,7,7_1,7_0,7_0_0 -27575,1,43.0,459.0,8,400,520.0,0.0,0.0,85,56,0.0,310.55175144583734,718.7305983394839,820.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,3.0,1,1999.0,6,101107,2,1,1,0,1,,273.0,421.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,751.123691778269,520.0,29800.511679004798,7,1,2,3,86.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.027516306056506755,11461.735261155693,2,1,2_1,2_1_1,2_0_1,2_0_0 -27576,2,42.0,0.0,6,400,1820.0,0.0,0.0,12,11,0.0,0.0,2515.557094188194,1820.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,108688,2,1,3,0,1,,273.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1030.73146429658,1820.0,42074.50175472865,1,1,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04325660255252945,23374.72319707147,6,3,6,6_1,6_0,6_0_0 -27577,2,67.0,0.0,2,400,41.0,61.0,0.0,0,75,0.0,0.0,56.66914333061315,102.0,0.0,110.63282695169438,71,0,0,0,0,0,0,0,0,0,,1,,2,102892,2,1,3,0,1,,384.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,971.184018897633,41.0,46611.96709402847,0,5,0,1,100.0,0,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.00218827924155699,46611.96709402847,10,5,10,10_1,10_0,10_0_1 -27578,2,74.0,0.0,5,400,1100.0,0.0,0.0,0,72,0.0,0.0,1520.3916503335236,1170.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102081,2,1,1,0,1,,120.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,843.291735469896,1100.0,15614.133313720009,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07493211288083027,15614.133313720009,3,2,3_0,3_1_0,3_0_0,3_0_0 -27579,2,68.0,0.0,7,400,1400.0,0.0,0.0,75,75,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,130213,2,1,2,0,1,,370.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,817.519669581343,1400.0,46473.99325390863,5,5,0,1,60.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030124374988634208,30982.66216927242,8,4,8,8_1,8_0,8_0_0 -27580,2,32.0,0.0,9,400,1400.0,0.0,0.0,21,52,0.0,0.0,1935.0439186063027,1480.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,105818,1,1,1,0,1,,323.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,802.368843265064,1400.0,43414.93363330786,1,1,1,2,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03408965247996018,20673.77792062279,5,3,5,5_1,5_0,5_0_0 -27581,2,50.0,0.0,7,400,396.0,1381.0,0.0,54,47,0.0,113.86897553014036,547.3409941200684,1887.0,0.0,2504.654656070327,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,111885,2,1,2,0,1,,354.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,794.307482744604,396.0,58977.69716831649,1,1,0,1,130.0,0,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03199514546345696,28084.617699198327,8,4,8,8_1,8_0,8_0_0 -27582,2,51.0,0.0,1,112,1491.0,0.0,0.0,63,67,0.0,207.03450096389156,2060.8217733157126,1691.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,114657,1,2,1,0,2,,275.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1888.46146914447,1491.0,51864.0,1,1,0,1,73.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032604504087613756,24697.142857142855,7,4,7,7_1,7_0,7_1_0 -27583,2,77.0,0.0,7,112,697.0,1666.0,0.0,78,75,0.0,0.0,963.3754366204236,2363.0,0.0,3021.54573281185,71,0,0,0,0,0,0,0,0,0,,1,,5,103499,2,1,1,0,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1692.96990211391,697.0,56513.428154892565,5,5,0,1,120.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0418130712849956,37675.61876992838,9,5,9,9_1,9_0,9_0_0 -27584,2,85.0,0.0,2,112,350.0,0.0,0.0,0,77,2837.8112663342013,0.0,483.76097965157567,2340.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,114500,2,2,3,0,2,,416.0,,11,0.0,0.0,5.0,1.0,1.0,4,3,2225.23511531642,350.0,11980.798754627218,0,5,0,1,100.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.19531252030222496,11980.798754627218,2,1,2_0,2_1_0,2_0_0,2_0_1 -27585,2,81.0,0.0,1,112,300.0,0.0,0.0,0,77,2649.619571829933,0.0,414.65226827277917,2104.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,112977,2,3,2,0,1,,308.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1894.98825987315,300.0,11070.071444179384,0,5,0,1,60.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1900620073329588,11070.071444179384,2,1,2_0,2_1_0,2_0_0,2_1_0 -27586,2,47.0,0.0,9,112,1600.0,0.0,0.0,0,37,0.0,414.0690019277831,2211.478764121489,2000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,118141,2,1,1,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,2110.04476802047,1600.0,40649.37693924784,0,4,0,1,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04920124613445077,40649.37693924784,9,5,9,9_1,9_0,9_0_0 -27587,2,75.0,0.0,2,112,2539.0,0.0,0.0,77,74,0.0,51.75862524097289,3509.3403638152877,2589.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,118259,2,1,2,0,1,,500.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1703.01747488062,2539.0,37572.95579622345,5,5,0,1,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06890594431913784,25048.637197482298,7,4,7,7_1,7_0,7_0_1 -27588,2,61.0,0.0,5,112,596.0,800.0,0.0,0,48,0.0,258.79312620486445,823.7758396352547,1646.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,113638,2,2,2,0,1,,415.0,,12,1.0,1.0,4.0,1.0,1.0,3,2,2118.12612613412,596.0,46111.98470023263,0,1,0,1,90.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03569570927602464,46111.98470023263,10,5,10,10_1,10_0,10_0_0 -27589,2,78.0,0.0,1,112,1152.0,0.0,0.0,0,72,0.0,0.0,1592.264710167472,1308.0,268.3710126536699,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106452,1,3,2,0,2,,510.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,2003.34852615204,1152.0,17171.055014823025,0,5,0,1,120.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07617470207106439,17171.055014823025,4,2,4_0,4_1_0,4_0_0,4_1_0 -27590,2,35.0,0.0,2,112,1003.0,0.0,0.0,0,63,0.0,0.0,1386.3207502586583,1003.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,8,,2,111581,2,1,0,0,1,,0.0,415.0,12,1.0,2.0,3.0,1.0,1.0,2,2,3063.74401605632,1003.0,20558.686575358,0,1,2,3,58.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04878716333961788,20558.686575358,5,3,5,5_0,5_0,5_0_1 -27591,0,81.0,0.0,2,112,167.0,1544.0,0.0,0,77,0.0,0.0,230.8230960051804,1711.0,0.0,2800.2800789084613,50,0,0,0,0,0,0,0,0,0,,1,,2,110478,2,2,2,0,1,,51.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2259.79085356901,167.0,10756.48311952788,0,5,0,1,40.0,6,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1590668605144521,10756.48311952788,2,1,2_0,2_1_0,2_0_0,2_0_1 -27592,1,27.0,230.0,2,112,0.0,1440.0,0.0,67,56,0.0,0.0,0.0,1873.0,206.439240502823,2611.660177220326,31,0,0,0,0,0,0,0,0,2,35.0,2,,2,127690,2,3,0,0,1,,140.0,206.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2520.57585804287,0.0,24971.91598902595,1,1,2,3,53.0,6,0,7,0,1,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07500425681485956,13873.286660569973,3,2,3_1,3_0_1,3_0_1,3_0_1 -27593,2,59.0,0.0,1,112,450.0,0.0,0.0,0,11,2987.1697540360015,0.0,621.9784024091688,2450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109836,2,3,4,0,2,,313.0,,22,1.0,0.0,3.0,2.0,1.5,6,6,1923.95268828599,450.0,12114.035796805965,0,1,0,1,80.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.20224473834277235,8076.02386453731,1,1,1_0,1_1_0,1_0_0,1_1_0 -27594,2,66.0,0.0,7,112,300.0,1200.0,0.0,0,77,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,41,0,0,0,0,0,0,0,0,0,,1,,5,131848,2,2,3,0,1,,240.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2128.67233128308,300.0,15034.014985675074,0,5,0,1,80.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09977374649614568,15034.014985675074,3,2,3_0,3_1_0,3_0_0,3_0_0 -27595,2,61.0,0.0,2,112,700.0,0.0,0.0,0,72,0.0,0.0,967.5219593031513,700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,8,,2,102301,1,3,0,0,2,,360.0,400.0,11,0.0,2.0,3.0,1.0,1.0,2,2,3343.74273753445,700.0,12597.233177844599,0,5,2,3,80.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05556775762721659,12597.233177844599,2,1,2_0,2_0_0,2_0_0,2_0_1 -27596,2,59.0,0.0,2,112,1141.0,0.0,0.0,86,52,0.0,0.0,1577.0607936641368,1291.0,258.04905062852873,0.0,71,2,2,2,2,1,2,2,2,2,30.0,1,,2,126384,2,2,3,0,1,,404.0,300.0,42,1.0,1.0,3.0,2.0,1.5,1,1,2056.3122276333,1141.0,23071.82302532267,6,1,2,3,70.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.05595569966807792,15381.215350215112,3,2,3_0,3_1_0,3_0_0,3_0_1 -27597,2,49.0,0.0,5,112,361.0,561.0,0.0,0,46,0.0,0.0,498.96489615491095,922.0,0.0,1017.4592773754189,30,0,0,0,0,0,0,0,0,1,10.0,1,,3,116981,2,1,1,0,1,,443.0,,32,1.0,0.0,6.0,2.0,1.3,2,2,1757.81234465957,361.0,37767.64352588384,0,1,0,1,100.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024412431222194535,29052.033481449107,8,4,8,8_1,8_0,8_0_0 -27598,2,74.0,0.0,5,112,380.0,1214.0,0.0,0,75,0.0,0.0,525.2262064788536,1594.0,0.0,2201.774621628803,44,0,0,0,0,0,0,0,0,0,,1,,3,129432,2,2,3,0,1,,336.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1940.430755774,380.0,28653.28261404907,0,5,0,1,90.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05563062429777039,28653.28261404907,8,4,8,8_1,8_0,8_0_0 -27599,2,53.0,0.0,2,112,925.0,0.0,0.0,0,45,0.0,51.75862524097289,1278.5111605077357,995.0,34.40654008380383,0.0,50,2,2,2,2,1,2,2,2,1,5.0,1,,2,105565,2,1,3,0,1,,321.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1817.61251646651,925.0,36320.69197117795,0,1,1,2,50.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.0273948525206947,36320.69197117795,9,5,9,9_1,9_0,9_0_1 -27600,2,53.0,0.0,6,112,325.0,720.0,0.0,68,62,0.0,0.0,449.20662396217745,1115.0,120.42289029331342,1305.830088610163,41,0,0,0,0,0,0,0,0,2,2.0,2,,4,109895,2,1,0,1,1,480.0,480.0,306.0,43,2.0,2.0,5.0,2.0,1.5,4,4,2437.98287687368,325.0,31173.47755691549,1,1,2,3,86.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.035767584734948815,20782.318371276993,5,3,5,5_0,5_0,5_0_0 -27601,2,58.0,0.0,2,112,180.0,1.0,0.0,0,63,0.0,0.0,248.7913609636675,231.0,86.01635020950958,1.813652900847449,71,0,0,0,0,0,0,0,0,2,40.0,8,,2,128497,2,1,0,1,1,800.0,100.0,278.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2526.1526572022,180.0,18628.77282750092,0,1,2,3,77.0,6,0,7,0,1,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012400172686575674,18628.77282750092,4,2,4_0,4_0_0,4_0_0,4_0_1 -27602,0,65.0,0.0,6,112,718.0,0.0,0.0,77,75,828.9396067449903,569.3448776507017,992.4010953995181,1823.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,128763,2,1,1,0,1,,486.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1933.67957847455,718.0,36371.3431283685,6,5,0,1,170.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050121877368287715,24247.562085579,7,4,7,7_1,7_0,7_0_0 -27603,2,41.0,0.0,9,112,0.0,0.0,0.0,53,53,0.0,0.0,0.0,1728.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,110805,2,1,1,0,2,,220.0,740.0,43,2.0,2.0,4.0,3.0,1.8,1,1,2444.28441409108,0.0,51885.911244464645,1,1,2,3,102.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03330383833596733,28825.5062469248,8,4,8,8_1,8_0,8_0_0 -27604,2,89.0,0.0,6,112,360.0,0.0,0.0,77,78,3672.7252125872637,0.0,497.582721927335,2969.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,102838,2,2,4,0,2,,560.0,,41,1.0,5.0,8.0,3.0,2.0,1,1,2163.80307324367,360.0,30517.56528758355,5,5,0,1,120.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09728823292492388,15258.782643791776,3,2,3_0,3_1_0,3_0_0,3_0_0 -27605,2,60.0,0.0,1,112,680.0,0.0,0.0,63,43,5227.547069563002,0.0,939.8784747516328,4230.0,86.01635020950958,0.0,10,2,2,2,2,1,2,2,2,2,30.0,1,,1,105147,2,3,1,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,1747.86963017633,680.0,49093.81119518544,1,5,1,2,180.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.08616157305821126,32729.207463456958,8,4,8,8_1,8_0,8_1_0 -27607,0,79.0,0.0,7,112,330.0,1029.0,0.0,0,74,0.0,0.0,456.1174951000571,1359.0,0.0,1866.248834972025,71,0,0,0,0,0,0,0,0,0,,1,,5,108102,2,1,2,0,1,,380.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2209.05502590339,330.0,34998.49141626729,0,5,0,1,100.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038830245105031504,34998.49141626729,9,5,9,9_1,9_0,9_0_0 -27608,2,45.0,0.0,2,112,803.0,0.0,0.0,0,42,0.0,0.0,1109.8859047434723,833.0,51.60981012570575,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,2,130803,2,2,5,0,1,,153.0,550.0,32,1.0,0.0,4.0,3.0,1.6,3,2,2524.5729393682,803.0,32915.441838587474,0,1,2,3,90.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025307270796634314,20572.15114911717,5,3,5,5_1,5_0,5_0_1 -27609,2,78.0,0.0,2,112,742.0,1127.0,0.0,0,74,0.0,0.0,1025.5732768613404,1869.0,0.0,2043.9868192550748,70,0,0,0,0,0,0,0,0,0,,1,,2,111788,2,1,1,0,1,,536.0,,11,0.0,3.0,4.0,1.0,1.0,2,1,2014.77349565598,742.0,29157.544744895007,0,5,0,1,120.0,6,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06410004739261287,29157.544744895007,8,4,8,8_1,8_0,8_0_1 -27610,2,77.0,0.0,5,112,3000.0,0.0,0.0,74,74,0.0,134.5724256265295,4146.522682727792,3130.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,101527,2,1,3,0,1,,200.0,,41,0.0,3.0,9.0,2.0,1.5,1,1,1944.85120195827,3000.0,76144.03927171067,5,5,0,1,360.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041106303657348395,50762.69284780711,10,5,10,10_1,10_0,10_0_0 -27611,2,53.0,0.0,1,112,160.0,0.0,0.0,0,47,0.0,0.0,221.1478764121489,190.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,120649,2,2,1,0,1,,230.0,,12,1.0,1.0,7.0,1.0,1.0,2,2,2072.27564653086,160.0,36632.54327676804,0,1,0,1,160.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.005186645070327288,36632.54327676804,9,5,9,9_1,9_0,9_1_0 -27612,2,55.0,0.0,9,400,1750.0,0.0,0.0,78,64,0.0,0.0,2418.8048982578784,1852.0,175.47335442739956,0.0,71,0,0,0,0,0,0,0,0,4,30.0,1,2004.0,6,110474,2,1,1,0,1,,350.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,1929.53776559528,1750.0,28511.904621537517,7,1,0,1,118.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0649553239105964,19007.936414358344,5,3,5,5_1,5_0,5_0_0 -27614,1,25.0,110.0,9,400,1110.0,0.0,0.0,56,11,0.0,0.0,1534.213392609283,1170.0,103.2196202514115,0.0,20,2,2,2,2,1,1,2,2,2,10.0,1,2006.0,6,110677,1,2,5,0,1,,173.0,370.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1959.45940514458,1110.0,21365.52688438231,1,1,2,3,57.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.05476111150131486,14243.684589588207,3,2,3_1,3_1_1,3_0_1,3_0_0 -27615,2,36.0,0.0,9,400,1000.0,0.0,0.0,37,62,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,103125,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1773.25783595917,1000.0,46957.49618356461,1,1,1,2,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02129585436350428,22360.712468364098,6,3,6,6_1,6_0,6_0_0 -27616,2,76.0,0.0,2,400,1300.0,0.0,0.0,0,72,0.0,310.55175144583734,1796.8264958487098,1650.0,86.01635020950958,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,100193,1,3,3,0,2,,350.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1853.14497893735,1300.0,22821.58916737929,0,5,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07229996070380919,22821.58916737929,6,3,6,6_1,6_0,6_0_1 -27617,2,61.0,0.0,6,400,380.0,0.0,0.0,78,56,2837.8112663342013,0.0,525.2262064788536,2410.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,102277,2,1,3,0,1,,520.0,,42,1.0,2.0,6.0,4.0,2.1,2,2,1757.67446166874,380.0,21883.862945589834,5,1,0,1,108.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11012680923802247,10420.887116947539,2,1,2_0,2_1_0,2_0_0,2_0_0 -27618,2,53.0,0.0,7,400,1130.0,0.0,0.0,52,63,0.0,0.0,1561.8568771608016,1220.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,100990,2,2,2,0,1,,380.0,,43,3.0,1.0,4.0,3.0,2.0,4,3,2284.43005683397,1130.0,54932.06496940366,1,1,0,1,105.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02220925065677982,27466.03248470183,7,4,7,7_1,7_0,7_0_0 -27619,2,51.0,0.0,6,112,923.68,0.0,0.0,43,48,0.0,265.0041612337812,1276.6866905273355,1180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,107857,2,2,2,0,1,,360.0,,43,2.0,1.0,4.0,3.0,2.0,4,4,752.40662898587,923.68,113972.33695339909,1,1,0,1,110.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010353389528921193,56986.168476699546,10,5,10,10_1,10_0,10_0_0 -27620,2,47.0,0.0,2,112,1330.0,0.0,0.0,21,43,1656.3856286129628,0.0,1838.2917226759876,2529.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,132528,2,2,1,0,1,,247.0,,43,2.0,0.0,6.0,4.0,2.5,3,2,680.342597933461,1330.0,62954.39504088316,1,1,1,2,160.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0401719371357257,25181.758016353262,7,4,7,7_1,7_0,7_0_1 -27621,2,39.0,0.0,9,112,1200.0,0.0,0.0,52,48,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,1,2009.0,6,116921,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,671.110678687168,1200.0,52982.683369242106,1,1,1,2,150.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.022648909486842502,22076.118070517547,6,3,6,6_1,6_0,6_0_0 -27622,2,46.0,0.0,7,112,525.0,0.0,0.0,46,52,896.1509262108004,0.0,725.6414694773636,4530.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,127859,2,1,2,0,1,,207.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,788.317603674361,525.0,44182.718505812874,1,1,0,1,110.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10252877489654723,22091.359252906437,6,3,6,6_1,6_0,6_0_0 -27623,2,41.0,0.0,8,112,150.0,0.0,0.0,43,48,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,103273,2,1,2,0,1,,156.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,666.603604579108,150.0,56854.42126226722,1,1,1,2,150.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0026383172437558704,24719.3135922901,7,4,7,7_1,7_0,7_0_0 -27624,2,46.0,0.0,5,112,0.0,0.0,0.0,45,22,0.0,0.0,0.0,2922.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126979,2,3,3,0,1,,1023.0,,43,2.0,0.0,5.0,4.0,2.1,2,1,656.607524693278,0.0,31471.0965670854,1,1,1,2,112.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0928470984088945,14986.236460516855,3,2,3_0,3_1_0,3_0_0,3_0_0 -27625,2,33.0,0.0,9,112,0.0,0.0,0.0,54,62,0.0,0.0,0.0,1064.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,105410,2,1,1,0,1,,210.0,710.0,43,2.0,0.0,4.0,4.0,2.1,1,1,787.145945793185,0.0,45482.04455006837,1,1,2,3,85.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02339384718795366,21658.11645241351,6,3,6,6_1,6_0,6_0_0 -27626,2,51.0,0.0,7,112,1000.0,0.0,0.0,0,22,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,3.0,1,,5,124890,2,1,2,0,1,,120.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,734.134331007043,1000.0,60489.74894864226,0,1,1,2,98.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016531726736856392,60489.74894864226,10,5,10,10_1,10_0,10_0_0 -27627,2,64.0,0.0,5,112,1470.0,0.0,0.0,75,74,0.0,0.0,2031.796114536618,1528.0,99.77896624303112,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,114231,2,2,2,0,2,,234.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,716.022484697092,1470.0,51408.70718022414,5,5,0,1,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029722591440459134,34272.47145348276,9,5,9,9_1,9_0,9_0_0 -27628,2,42.0,0.0,9,112,2167.2,0.0,0.0,47,47,0.0,0.0,2995.4479860025563,2167.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,2009.0,6,132975,2,2,1,0,1,,324.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,700.768261660786,2167.2,54562.89714147158,1,1,1,2,192.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039715633031387004,25982.331972129323,7,4,7,7_1,7_0,7_0_0 -27629,2,64.0,0.0,6,112,678.0,0.0,0.0,22,47,2622.7350440436094,0.0,937.1141262964809,7961.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116072,2,1,1,0,1,,379.0,,43,2.0,2.0,9.0,2.0,1.5,2,2,666.394559912565,678.0,54113.7100499341,1,1,0,1,170.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14711613734585724,36075.80669995607,9,5,9,9_1,9_0,9_0_0 -27630,2,62.0,0.0,1,112,1560.0,0.0,0.0,0,75,0.0,0.0,2156.1917950184516,1590.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,105205,2,1,1,0,1,,124.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,728.739860019986,1560.0,17298.616797782615,0,5,0,1,60.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09191486340132181,17298.616797782615,4,2,4_0,4_1_0,4_0_0,4_1_0 -27631,2,44.0,0.0,1,112,489.0,0.0,0.0,52,62,597.4339508072003,0.0,675.88319728463,979.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,2,8.0,1,,1,108107,2,1,1,0,1,,234.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,686.734769723877,489.0,34477.73055561102,1,1,0,1,120.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028395140405802443,16417.966931243343,4,2,4_0,4_1_0,4_0_0,4_1_0 -27632,2,63.0,0.0,2,112,1345.0,0.0,0.0,37,47,5957.910074424804,207.03450096389156,1859.0243360896266,5534.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,2,119227,1,2,2,0,2,,389.0,,43,2.0,3.0,6.0,5.0,2.4,1,1,673.032137484615,1345.0,619414.8757494953,1,1,0,1,180.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.008934238128045972,258089.53156228975,10,5,10,10_1,10_0,10_0_1 -27633,2,49.0,0.0,7,112,1683.0,0.0,0.0,54,21,0.0,258.79312620486445,2326.1992250102912,1993.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,5,109377,2,1,2,0,1,,246.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,690.696905376819,1683.0,110619.1193058734,1,1,0,1,110.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018016776959588216,48095.26926342322,10,5,10,10_1,10_0,10_0_0 -27634,2,57.0,0.0,7,112,794.0,0.0,0.0,77,63,0.0,983.4138795784849,1097.446336695289,1810.0,113.54158227655265,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,122531,2,2,2,0,1,,211.0,,42,2.0,2.0,6.0,3.0,2.0,2,1,709.451213411313,794.0,44386.75076130489,6,1,0,1,95.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040777934157278005,22193.375380652444,6,3,6,6_1,6_0,6_0_0 -27635,2,53.0,0.0,6,112,943.0,0.0,0.0,45,63,0.0,0.0,1303.3902966041026,972.0,49.88948312151556,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,104566,2,1,2,0,1,,157.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,665.96237278597,943.0,62593.82734141647,1,1,0,1,98.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015528687752200392,41729.21822761098,9,5,9,9_1,9_0,9_0_0 -27636,2,37.0,0.0,5,112,1050.0,0.0,0.0,54,48,0.0,702.8821307724119,1451.2829389547271,1729.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,3,115017,2,1,0,0,1,,140.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,925.615239287636,1050.0,60361.02613974655,1,1,1,2,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028644310916733858,28743.34578083169,8,4,8,8_0,8_0,8_0_0 -27637,2,54.0,0.0,1,112,470.0,0.0,0.0,54,42,3106.6565441974412,0.0,649.6218869606873,2650.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117004,2,1,2,0,1,,709.0,,43,2.0,2.0,7.0,2.0,1.5,1,1,717.715124452664,470.0,51835.97859500641,1,1,0,1,170.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0511227929292973,34557.31906333761,9,5,9,9_1,9_0,9_1_0 -27638,2,33.0,0.0,9,112,1609.0,0.0,0.0,46,46,0.0,0.0,2223.9183321696723,1639.0,51.60981012570575,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,124150,2,1,1,0,1,,170.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,725.867051976702,1609.0,55425.75103986568,1,1,1,2,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029571092303668167,26393.21478088842,7,4,7,7_1,7_0,7_0_0 -27639,2,40.0,0.0,7,112,488.0,0.0,0.0,52,42,1463.7131794776408,0.0,674.5010230570541,4431.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,119739,2,1,2,0,1,,434.0,,43,2.0,1.0,6.0,5.0,2.8,1,1,663.653456284547,488.0,54557.12290485436,1,1,1,2,160.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08121762593176886,19484.6867517337,5,3,5,5_1,5_0,5_0_0 -27640,2,31.0,0.0,2,112,0.0,0.0,0.0,46,63,0.0,0.0,0.0,1503.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,114321,1,1,2,0,1,,198.0,711.0,43,2.0,0.0,6.0,2.0,1.5,1,1,754.041174500536,0.0,38867.08687399946,1,1,2,3,125.0,6,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03867025086990626,25911.391249332974,7,4,7,7_1,7_0,7_0_1 -27641,2,67.0,0.0,5,112,726.0,0.0,0.0,77,78,0.0,0.0,1003.4584892201256,1190.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,103746,2,1,2,0,1,,234.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,773.201773337155,726.0,32057.40667358754,5,5,0,1,140.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03712090663217791,21371.60444905836,6,3,6,6_1,6_0,6_0_0 -27642,2,49.0,0.0,6,112,342.0,0.0,0.0,56,67,1941.6603401234008,0.0,472.7035858309682,1842.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,131632,2,1,2,0,1,,167.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,614.765385194309,342.0,30326.431371286944,1,1,1,2,96.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.060739095129537894,14441.157795850926,3,2,3_0,3_1_0,3_0_0,3_0_0 -27643,2,42.0,0.0,8,112,1277.0,0.0,0.0,0,46,0.0,310.55175144583734,1765.0364886144632,1577.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,127936,2,1,1,0,1,,676.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,666.532017995228,1277.0,37553.50424873675,1,1,1,2,130.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041993417965862624,17882.621070827023,4,2,4_0,4_1_0,4_0_0,4_0_0 -27644,2,52.0,0.0,1,112,150.0,0.0,0.0,45,47,0.0,0.0,207.32613413638958,1352.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,107658,2,1,2,0,1,,287.0,,43,2.0,2.0,6.0,4.0,2.3,1,1,626.504812701499,150.0,67820.56615826779,1,1,1,2,130.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019934955966674453,29487.202677507736,8,4,8,8_1,8_0,8_1_0 -27645,2,73.0,0.0,1,112,481.0,0.0,0.0,78,78,0.0,0.0,664.8258034640226,547.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115824,2,2,2,0,1,,234.0,,41,0.0,0.0,5.0,2.0,1.5,3,3,715.921512921178,481.0,24984.22946150958,5,5,0,1,90.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02189381108761837,16656.152974339722,4,2,4_0,4_1_0,4_0_0,4_1_0 -27646,2,60.0,0.0,6,112,862.0,0.0,0.0,0,52,0.0,0.0,1191.4341841704522,1569.0,20.6439240502823,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,4,103423,2,1,2,0,1,,383.0,,22,4.0,2.0,6.0,4.0,2.5,1,1,645.353294152694,862.0,93624.84634797518,0,1,0,1,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016758371962165924,37449.93853919007,9,5,9,9_1,9_0,9_0_0 -27647,2,40.0,0.0,9,112,1389.0,0.0,0.0,11,34,0.0,0.0,1919.8400021029674,1389.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,119249,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,637.592512569383,1389.0,73437.35651175148,1,1,1,2,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01891407950908107,34970.1697675007,9,5,9,9_1,9_0,9_0_0 -27648,2,70.0,0.0,1,111,1800.0,0.0,0.0,75,75,8065.358335897204,103.51725048194578,2487.913609636675,7480.0,309.6588607542345,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119070,1,1,4,0,2,,759.0,,41,0.0,5.0,11.0,4.0,2.5,1,1,1288.60582136358,1800.0,47409.922890892136,5,5,0,1,400.0,6,4,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1577728784164923,18963.969156356856,5,3,5,5_1,5_2,5_1_0 -27649,2,34.0,0.0,1,111,1089.0,1200.0,0.0,37,37,0.0,0.0,1505.1877338301883,2289.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,132134,2,1,0,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,1854.74217867401,1089.0,85594.71662911607,1,1,1,2,140.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02674230478404749,47552.62034950893,10,5,10,10_0,10_2,10_1_0 -27650,2,39.0,0.0,1,111,200.0,0.0,0.0,0,65,0.0,0.0,276.4348455151861,200.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,129058,1,2,0,0,1,,144.0,355.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1924.94004161242,200.0,20033.971347744002,0,4,2,3,55.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.009983043128516889,20033.971347744002,5,3,5,5_0,5_2,5_1_0 -27651,2,63.0,0.0,2,111,210.0,0.0,0.0,86,34,2688.452778632401,0.0,290.25658779094545,2130.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,112824,2,3,0,1,1,,160.0,,42,1.0,1.0,2.0,2.0,1.5,1,1,1703.26231560178,210.0,33954.53601062494,6,1,0,1,40.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06273094114239958,22636.357340416627,6,3,6,6_0,6_2,6_0_1 -27652,2,45.0,0.0,6,111,300.0,0.0,0.0,0,47,0.0,0.0,414.65226827277917,300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,4,123970,2,1,0,0,1,,0.0,200.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1881.59994735526,300.0,30279.079925458973,0,1,2,3,18.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009907830777505126,30279.079925458973,8,4,8,8_0,8_2,8_0_0 -27654,1,31.0,253.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1213.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,126667,2,1,0,0,1,,0.0,380.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1925.49190622125,0.0,13184.65322821793,0,1,2,3,78.0,6,4,7,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09200090279234079,13184.65322821793,2,1,2_1,2_0_1,2_2_1,2_1_0 -27655,1,78.0,250.0,2,111,758.0,0.0,0.0,0,77,0.0,0.0,1047.6880645025553,758.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,131425,2,3,0,0,1,,131.0,350.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2004.90562588549,758.0,9362.356000074458,0,5,2,3,40.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0809625269530417,9362.356000074458,1,1,1_1,1_0_1,1_2_1,1_0_1 -27656,2,71.0,0.0,5,111,1108.0,0.0,0.0,0,74,0.0,0.0,1531.4490441541311,1108.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,131485,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1663.87943308939,1108.0,32276.61221699336,0,5,0,1,65.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034328261979633894,32276.61221699336,8,4,8,8_0,8_2,8_0_0 -27657,1,26.0,116.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,394.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,4,103024,1,2,0,0,1,,0.0,300.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1772.16694427114,0.0,12366.996020198767,0,1,2,3,51.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03185898979481255,12366.996020198767,2,1,2_1,2_0_1,2_2_1,2_0_0 -27658,2,37.0,0.0,7,111,879.0,0.0,0.0,0,55,0.0,0.0,1214.931146039243,879.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,111890,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1772.4253170064,879.0,20311.894832385613,0,1,0,1,37.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0432751354442082,20311.894832385613,5,3,5,5_0,5_2,5_0_0 -27661,1,31.0,70.0,2,111,1089.0,1324.0,0.0,85,21,0.0,0.0,1505.1877338301883,2413.0,0.0,2401.2764407220225,71,0,0,0,0,0,0,0,0,0,,1,,2,122477,2,1,1,0,1,,221.0,,42,1.0,0.0,3.0,4.0,2.1,1,1,1351.10057999821,1089.0,24738.54962408965,6,1,1,2,85.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.09754007557703762,11780.261725756976,2,1,2_1,2_1_1,2_2_1,2_0_1 -27662,0,45.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,479.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,111646,2,3,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1916.5883522492,0.0,9478.627794732673,0,1,5,0,98.0,6,4,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05053474093224581,9478.627794732673,1,1,1_0,1_0_0,1_2_0,1_0_1 -27663,1,50.0,245.0,1,111,509.0,0.0,0.0,0,85,0.0,0.0,703.5266818361487,538.0,49.88948312151556,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,106295,2,1,0,0,1,,0.0,270.0,11,0.0,1.0,1.0,1.0,1.0,2,2,2325.97428251958,509.0,4942.35368238091,0,7,2,3,25.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.10885501819060954,4942.35368238091,1,1,1_1,1_0_1,1_2_1,1_1_0 -27664,2,65.0,0.0,6,111,484.0,421.0,0.0,77,77,0.0,207.03450096389156,668.9723261467504,1105.0,0.0,763.547871256776,71,0,0,0,0,0,0,0,0,0,,2,,4,127871,2,1,0,0,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1631.94880101259,484.0,32098.42360040635,5,5,1,2,89.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034425366608533736,21398.949066937566,6,3,6,6_0,6_2,6_0_0 -27665,2,45.0,0.0,6,111,450.0,0.0,0.0,46,45,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,4,115137,1,2,0,1,1,1178.0,0.0,537.0,43,2.0,0.0,6.0,2.0,1.5,2,2,2007.08588233425,450.0,27675.081076831346,1,1,2,3,90.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01626011496590429,18450.054051220897,4,2,4_0,4_0_0,4_2_0,4_0_0 -27666,2,74.0,0.0,2,111,1500.0,0.0,0.0,86,74,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107466,2,1,0,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1613.03234278819,1500.0,129025.30839157398,6,5,0,1,160.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011625626155821363,86016.87226104933,10,5,10,10_0,10_2,10_0_1 -27667,2,42.0,0.0,5,111,230.0,55.0,0.0,0,34,0.0,0.0,317.900072342464,285.0,0.0,99.75090954660969,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,110761,1,2,0,1,1,747.0,64.0,439.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1969.98309488309,230.0,30003.96875829024,0,1,2,3,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009498743392780434,30003.96875829024,8,4,8,8_0,8_2,8_0_0 -27669,2,78.0,0.0,2,111,262.0,0.0,0.0,0,74,0.0,0.0,362.1296476248938,1198.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127547,2,2,0,1,1,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,2055.8171427643,262.0,45595.74686179687,0,5,0,1,104.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026274380451124128,45595.74686179687,10,5,10,10_0,10_2,10_0_1 -27670,2,57.0,0.0,2,111,300.0,120.0,0.0,0,52,0.0,0.0,414.65226827277917,420.0,0.0,217.63834810169388,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,100564,2,2,0,1,1,,76.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1979.98659668032,300.0,32816.58124940163,0,1,0,1,85.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012798408122042214,32816.58124940163,8,4,8,8_0,8_2,8_0_1 -27671,1,80.0,35.0,2,111,245.0,120.0,0.0,0,77,0.0,0.0,338.632685756103,365.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,126718,1,3,0,1,2,285.0,121.0,212.0,11,0.0,3.0,3.0,1.0,1.0,4,4,1434.62234904946,245.0,13545.849548382666,0,5,2,3,63.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02694552295862314,13545.849548382666,3,2,3_1,3_0_1,3_2_1,3_0_1 -27672,1,23.0,144.0,8,111,456.0,0.0,0.0,0,56,0.0,0.0,630.2714477746243,456.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,120043,2,1,0,0,1,,100.0,435.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2272.34573516565,456.0,15644.997418658702,0,1,2,3,57.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.029146697042989632,15644.997418658702,3,2,3_1,3_0_1,3_2_1,3_0_0 -27673,2,39.0,0.0,9,111,250.0,520.0,0.0,0,54,0.0,0.0,345.54355689398267,770.0,0.0,943.0995084406734,50,1,2,2,2,2,2,2,1,2,10.0,2,2005.0,6,120760,2,1,0,1,1,,0.0,441.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1870.37589629209,250.0,21867.71337890892,0,1,2,3,50.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.035211729121283133,21867.71337890892,6,3,6,6_0,6_2,6_0_0 -27674,2,60.0,0.0,6,111,2383.0,0.0,0.0,77,21,0.0,0.0,3293.7211843134423,2473.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,122419,2,1,3,0,1,,319.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1244.05675682021,2383.0,319247.22779298405,6,1,0,1,180.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007746347609958315,212831.4851953227,10,5,10,10_1,10_2,10_0_0 -27675,2,42.0,0.0,2,111,0.0,0.0,0.0,68,21,0.0,0.0,0.0,1959.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,126773,2,2,0,0,1,,115.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,1534.82713285404,0.0,27449.17765977968,1,1,1,2,85.0,6,4,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07136825825097318,18299.451773186454,4,2,4_0,4_0_0,4_2_0,4_0_1 -27676,2,56.0,0.0,5,120,558.0,0.0,0.0,56,63,0.0,331.2552015422265,771.2532189873692,998.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,106394,2,1,1,0,1,,91.0,,43,2.0,1.0,4.0,2.0,1.5,3,3,1410.82666390269,558.0,50896.63696408679,1,1,0,1,98.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019608368244530563,33931.091309391195,9,5,9,9_1,9_0,9_0_0 -27677,0,79.0,0.0,1,120,750.0,0.0,0.0,86,86,0.0,310.55175144583734,1036.630670681948,1350.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132761,2,2,1,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,1472.60330126567,750.0,22715.40147835,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05943104291098188,15143.600985566665,3,2,3_0,3_1_0,3_0_0,3_1_0 -27678,2,28.0,0.0,1,120,0.0,0.0,0.0,84,55,0.0,0.0,0.0,3201.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,105993,2,1,0,0,1,,312.0,423.0,42,1.0,0.0,3.0,2.0,1.5,2,2,2249.81654893655,0.0,30786.915301410234,3,1,2,3,74.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.10397274194772524,20524.610200940155,5,3,5,5_0,5_0,5_1_0 -27679,0,40.0,0.0,7,120,950.0,0.0,0.0,56,69,0.0,0.0,1313.065516197134,1020.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,100402,2,2,5,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1626.51494001689,950.0,42812.39907254912,1,1,5,0,132.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02382487368370846,20386.856701213863,5,3,5,5_1,5_0,5_0_0 -27680,2,48.0,0.0,9,120,620.0,0.0,0.0,56,46,1642.9433647198007,0.0,856.9480210970769,1720.0,0.0,0.0,71,1,2,2,1,2,2,2,2,2,45.0,1,2006.0,6,111319,2,1,1,0,1,,256.0,,43,3.0,0.0,5.0,4.0,2.3,1,1,1401.73860928213,620.0,41863.063821085154,1,1,1,2,117.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04108633824201104,18201.33209612398,4,2,4_0,4_1_0,4_0_0,4_0_0 -27681,2,32.0,0.0,2,120,720.0,0.0,0.0,0,63,0.0,155.27587572291867,995.16544385467,1006.0,233.96447256986607,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101395,1,2,2,0,1,,250.0,,22,2.0,2.0,4.0,3.0,2.0,3,3,1474.8086604122,720.0,39019.60610616978,0,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025781910695426815,19509.80305308489,5,3,5,5_1,5_0,5_0_1 -27682,2,83.0,0.0,1,120,421.0,0.0,0.0,0,86,3853.4489827064417,0.0,581.8953498094668,3181.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108077,2,2,3,0,2,,127.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1665.55433368469,421.0,15841.76674793411,0,5,0,1,123.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.20079831060603306,15841.76674793411,3,2,3_0,3_1_0,3_0_0,3_1_0 -27683,0,77.0,0.0,1,120,680.0,0.0,0.0,86,86,1642.9433647198007,0.0,939.8784747516328,1980.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113692,2,1,1,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,1600.85801510347,680.0,19260.483406537307,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10280115811257143,12840.322271024872,2,1,2_0,2_1_0,2_0_0,2_1_0 -27684,2,45.0,0.0,1,400,0.0,0.0,0.0,85,22,0.0,0.0,0.0,459.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,132659,2,2,5,0,2,,593.0,,42,1.0,0.0,3.0,3.0,1.8,4,4,1570.0956031234,0.0,7916.541841125022,6,1,0,1,40.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05797986156222619,4398.078800625012,1,1,1_0,1_1_0,1_0_0,1_1_0 -27685,2,72.0,0.0,2,400,1162.0,0.0,0.0,71,71,4032.679167948602,0.0,1606.0864524432313,4120.0,443.84436708106944,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,109646,2,2,3,0,1,,155.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1463.00459841668,1162.0,40902.09947777486,5,5,0,1,250.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10072832574862572,27268.066318516572,7,4,7,7_1,7_0,7_0_1 -27686,2,61.0,0.0,1,400,402.0,0.0,0.0,56,78,0.0,0.0,555.6340394855241,612.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106340,2,1,1,0,2,,247.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1720.96537344266,402.0,27316.123515070292,1,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022404350297448316,18210.74901004686,4,2,4_0,4_1_0,4_0_0,4_1_0 -27687,0,31.0,0.0,9,400,0.0,0.0,0.0,85,52,0.0,0.0,0.0,105.0,180.63433543997013,0.0,71,2,2,2,2,2,2,2,1,2,10.0,1,2005.0,6,105975,2,1,1,0,1,1500.0,0.0,,42,1.0,0.0,3.0,4.0,2.1,4,4,1310.97882533355,0.0,24261.698515635086,6,1,5,0,80.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.0043278091157688044,11553.18976935004,2,1,2_0,2_1_0,2_0_0,2_0_0 -27688,1,80.0,155.0,1,400,350.0,0.0,0.0,0,71,0.0,0.0,483.76097965157567,560.0,361.26867087994026,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,100465,2,1,4,0,1,,72.0,305.0,11,0.0,0.0,5.0,1.0,1.0,2,2,2079.85476947575,350.0,8955.605237752774,0,5,2,3,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.06253067047208531,8955.605237752774,1,1,1_1,1_1_1,1_0_1,1_1_0 -27689,0,50.0,0.0,1,400,110.0,0.0,0.0,0,11,0.0,207.03450096389156,152.03916503335236,1222.0,1568.9382278214548,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,127323,1,1,1,0,2,,91.0,,22,2.0,2.0,5.0,3.0,2.0,3,3,1474.8086604122,110.0,37758.88969178828,0,1,0,1,124.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032363239755584174,18879.44484589414,5,3,5,5_1,5_0,5_1_0 -27690,2,39.0,0.0,7,400,857.0,0.0,0.0,0,12,0.0,0.0,1184.5233130325726,962.0,180.63433543997013,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,125296,2,1,3,0,1,,288.0,,22,3.0,0.0,6.0,3.0,2.0,3,2,1597.69640169358,857.0,44378.42874473102,0,1,1,2,200.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021677198296801276,22189.21437236551,6,3,6,6_1,6_0,6_0_0 -27691,2,57.0,0.0,1,400,310.0,0.0,0.0,0,56,0.0,0.0,428.47401054853844,310.0,0.0,0.0,10,1,2,2,1,1,2,2,2,0,,5,,1,123421,2,1,4,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,2,1,1575.28570138713,310.0,24043.893180310944,0,4,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.012893086725815796,24043.893180310944,6,3,6,6_1,6_0,6_1_0 -27692,2,92.0,0.0,1,400,700.0,0.0,0.0,71,71,0.0,0.0,967.5219593031513,902.0,347.50605484641875,0.0,33,0,0,0,0,0,0,0,0,0,,5,,1,119754,2,3,4,0,2,,277.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1420.58031192195,700.0,13893.73305063369,5,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06492135675219843,9262.48870042246,1,1,1_0,1_1_0,1_0_0,1_1_0 -27693,2,50.0,0.0,1,400,247.5,0.0,0.0,0,11,0.0,0.0,342.08812132504283,424.0,302.77755273747374,0.0,50,2,2,2,1,2,2,2,2,0,,5,,1,108751,2,2,4,0,2,,268.0,,22,1.0,0.0,5.0,3.0,2.0,3,3,1684.36592699875,247.5,18017.323389771012,0,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,0.023532907237526626,9008.661694885506,1,1,1_0,1_1_0,1_0_0,1_1_0 -27694,2,61.0,0.0,7,400,372.0,0.0,0.0,72,72,0.0,0.0,514.1688126582462,1053.0,1171.5426898535206,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,113416,2,1,2,0,1,,300.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1410.58319006333,372.0,7871.381377102146,5,5,0,1,115.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13377575670049197,5247.587584734764,1,1,1_0,1_1_0,1_0_0,1_0_0 -27695,2,44.0,0.0,9,400,561.0,0.0,0.0,0,67,0.0,0.0,775.399741670097,561.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,132732,2,1,1,0,1,,140.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,1487.83145841385,561.0,23579.176159575774,0,1,1,2,123.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023792179854094327,14736.985099734859,3,2,3_0,3_1_0,3_0_0,3_0_0 -27696,0,87.0,0.0,2,400,0.0,0.0,0.0,71,72,0.0,0.0,0.0,1032.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,130864,2,2,3,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1590.82784196345,0.0,15865.929896545495,5,5,5,0,120.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06504503717898681,10577.286597696997,2,1,2_0,2_1_0,2_0_0,2_0_1 -27697,0,70.0,0.0,1,400,306.0,0.0,0.0,0,77,0.0,258.79312620486445,422.9453136382348,2437.0,3235.9350948817505,0.0,44,2,2,2,2,1,2,2,2,0,,1,,1,102666,2,3,4,0,2,,316.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1425.49544939404,306.0,12567.012181755077,0,5,0,1,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.1939203976851445,12567.012181755077,2,1,2_0,2_1_0,2_0_0,2_1_0 -27698,2,37.0,0.0,5,400,820.0,0.0,0.0,69,52,0.0,25.879312620486445,1133.3828666122631,985.0,240.84578058662683,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,124237,2,2,5,0,1,,300.0,403.0,43,2.0,0.0,4.0,4.0,2.5,1,1,1427.48799033747,820.0,33726.62536267755,1,1,2,3,82.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029205412323582706,13490.65014507102,3,2,3_0,3_1_0,3_0_0,3_0_0 -27699,2,61.0,0.0,1,400,495.0,0.0,0.0,0,11,0.0,0.0,684.1762426500857,615.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,5,,1,114964,2,3,4,0,2,,100.0,,22,1.0,0.0,5.0,3.0,2.0,2,2,1382.73588308601,495.0,17714.07729332324,0,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034718150418808706,8857.03864666162,1,1,1_0,1_1_0,1_0_0,1_1_0 -27700,2,38.0,0.0,1,400,420.0,0.0,0.0,85,69,0.0,0.0,580.5131755818909,660.0,412.878481005646,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,111069,2,1,1,0,1,,400.0,,42,1.0,0.0,6.0,6.0,3.3,3,3,1359.17489096293,420.0,26397.893426830266,6,1,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0250019950201477,7999.36164449402,1,1,1_0,1_1_0,1_0_0,1_1_0 -27701,0,86.0,0.0,2,111,770.0,0.0,0.0,0,71,6721.131946581003,0.0,1064.2741552334664,5270.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,111839,2,1,2,0,1,,750.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1406.32353912281,770.0,59069.189853942036,0,5,0,1,126.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0892174078065217,59069.189853942036,10,5,10,10_1,10_3,10_0_1 -27702,2,63.0,0.0,9,111,500.0,0.0,0.0,0,75,0.0,0.0,691.0871137879653,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2006.0,6,124349,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1691.53138429438,500.0,13541.73547346217,0,5,0,1,44.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03692288931354872,13541.73547346217,3,2,3_0,3_0_0,3_3_0,3_0_0 -27703,2,29.0,0.0,9,111,720.0,0.0,0.0,37,38,0.0,0.0,995.16544385467,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,116102,2,2,1,0,1,,0.0,655.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1373.5836109038,720.0,57045.92871331761,1,1,2,3,65.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012621409033733778,38030.61914221174,9,5,9,9_1,9_3,9_0_0 -27704,1,36.0,368.0,7,111,460.0,640.0,0.0,65,53,0.0,0.0,635.800144684928,1100.0,0.0,1160.7378565423674,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,116012,2,2,5,0,1,,336.0,765.0,43,2.0,0.0,5.0,7.0,2.9999999999999996,5,5,1083.05643060321,460.0,43478.34785478862,1,1,2,3,94.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02529994938339977,14492.782618262876,3,2,3_1,3_1_1,3_3_1,3_0_0 -27705,2,57.0,0.0,9,111,350.0,450.0,0.0,0,52,0.0,0.0,483.76097965157567,800.0,0.0,816.143805381352,43,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,100190,2,1,0,0,1,,48.0,367.0,22,2.0,1.0,3.0,2.0,1.5,1,1,1417.49639425936,350.0,36090.49129043949,0,1,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02216650345826473,24060.32752695966,6,3,6,6_0,6_3,6_0_0 -27706,2,65.0,0.0,1,111,0.0,0.0,2700.0,0,74,0.0,0.0,1379.4660040613178,2700.0,0.0,3086.763591562105,10,0,0,0,0,0,0,0,0,0,,1,,1,106128,1,1,1,0,1,,172.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,1444.09223279683,0.0,47811.744482543036,0,5,0,1,170.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05647148057912467,47811.744482543036,10,5,10,10_1,10_3,10_1_0 -27707,2,56.0,0.0,1,111,1200.0,540.0,0.0,68,78,0.0,0.0,1658.6090730911167,1740.0,0.0,979.3725664576224,70,0,0,0,0,0,0,0,0,0,,1,,1,106653,2,1,1,0,1,,795.0,,42,1.0,2.0,7.0,4.0,2.3,1,1,1363.38890364825,1200.0,60294.4390204825,1,7,0,1,180.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028858382767420858,26214.97348716631,7,4,7,7_1,7_3,7_1_0 -27708,2,40.0,0.0,2,111,1800.0,0.0,0.0,64,38,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,121014,2,1,1,0,1,,730.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1174.34479106895,1800.0,52642.23084402392,1,1,1,2,85.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034193079798105486,20247.011863086125,5,3,5,5_1,5_3,5_0_1 -27709,0,35.0,0.0,5,111,1272.0,0.0,0.0,54,55,0.0,217.38622601208613,1758.1256174765836,1542.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,119878,2,2,1,0,1,,378.0,,43,2.0,0.0,5.0,2.0,1.5,2,1,1318.91922660053,1272.0,48793.36505462267,1,1,5,0,118.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03160265741610111,32528.910036415113,8,4,8,8_1,8_3,8_0_0 -27710,2,51.0,0.0,5,111,920.0,0.0,0.0,0,37,0.0,0.0,1271.600289369856,960.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,118372,2,1,3,0,1,,314.0,,12,1.0,0.0,7.0,1.0,1.0,3,3,1287.45190850387,920.0,32535.914047492384,0,1,0,1,170.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029505856162476227,32535.914047492384,8,4,8,8_1,8_3,8_0_0 -27711,2,80.0,0.0,2,111,192.0,0.0,0.0,72,74,4314.966709705004,0.0,265.37745169457867,3161.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,109274,2,1,2,0,2,,256.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1395.9728449092,192.0,45410.10123445236,5,5,0,1,150.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06961006282896742,30273.40082296824,8,4,8,8_1,8_3,8_0_1 -27712,2,55.0,0.0,7,111,1000.0,0.0,0.0,21,54,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,44,0,0,0,0,0,0,0,0,2,90.0,1,,5,131631,2,1,2,0,1,,590.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1336.57067353185,1000.0,22151.093996222175,1,1,1,2,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04785316698943993,14767.39599748145,3,2,3_0,3_1_0,3_3_0,3_0_0 -27713,2,36.0,0.0,8,111,663.0,848.0,0.0,31,38,0.0,0.0,916.381512882842,1511.0,0.0,1537.9776599186366,71,0,0,0,0,0,0,0,0,1,25.0,1,2003.0,6,111217,2,1,1,0,1,,475.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,1214.96905018209,663.0,82767.86470346633,1,1,1,2,105.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01825587751252835,34486.61029311097,9,5,9,9_1,9_3,9_0_0 -27714,2,33.0,0.0,9,111,1195.0,0.0,0.0,46,38,0.0,0.0,1651.698201953237,1195.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,2010.0,6,123093,2,1,1,0,1,,465.0,917.0,43,2.0,0.0,5.0,4.0,2.1,1,1,1323.91221276122,1195.0,62667.481053052834,1,1,2,3,115.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019068901125742405,29841.65764431087,8,4,8,8_1,8_3,8_0_0 -27715,2,32.0,0.0,9,111,507.0,0.0,0.0,0,47,0.0,0.0,700.7623333809968,507.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,133178,1,2,0,0,1,,0.0,481.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2139.65070096707,507.0,25184.13937417423,0,1,2,3,46.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.020131718319503788,25184.13937417423,7,4,7,7_0,7_3,7_0_0 -27716,2,36.0,0.0,9,111,660.0,0.0,0.0,56,65,0.0,0.0,912.2349902001142,660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,2,2006.0,6,102219,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1684.6879775588,660.0,48060.0,1,1,1,2,62.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01373283395755306,26700.0,7,4,7,7_0,7_3,7_0_0 -27717,2,65.0,0.0,5,111,1828.0,0.0,0.0,75,72,0.0,207.03450096389156,2526.614488008801,2028.0,0.0,0.0,20,1,2,2,1,2,2,2,2,0,,1,,3,122720,2,1,1,0,1,,382.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1411.02356809379,1828.0,36389.23945406794,5,5,0,1,178.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.05573076080800833,24259.492969378625,7,4,7,7_1,7_3,7_0_0 -27718,2,50.0,0.0,9,111,400.0,1080.0,0.0,0,52,0.0,0.0,552.8696910303722,1480.0,0.0,1958.7451329152448,20,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,104419,2,1,1,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1453.06173659425,400.0,20388.86182510039,0,1,1,2,91.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07258865221098298,20388.86182510039,5,3,5,5_1,5_3,5_0_0 -27719,2,56.0,0.0,1,111,110.0,0.0,0.0,0,63,0.0,0.0,152.03916503335236,210.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,126894,2,2,3,0,1,,61.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1348.45356349813,110.0,20685.582552793494,0,1,1,2,70.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.010151998352671023,20685.582552793494,5,3,5,5_1,5_3,5_1_0 -27720,2,77.0,0.0,2,111,404.0,808.0,0.0,75,75,0.0,0.0,558.398387940676,1212.0,0.0,1465.4315438847386,60,0,0,0,0,0,0,0,0,0,,1,,2,126097,2,1,2,0,1,,345.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1384.34744655741,404.0,45584.81739270805,5,5,0,1,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02658779982727049,30389.878261805366,8,4,8,8_1,8_3,8_0_1 -27721,2,53.0,0.0,5,111,845.0,0.0,0.0,21,21,0.0,310.55175144583734,1167.9372223016612,1265.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,1,5.0,1,,3,128360,2,1,2,0,1,,419.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1220.66862996728,845.0,29377.621515395043,1,1,0,1,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04305998698148826,11751.048606158018,2,1,2_0,2_1_0,2_3_0,2_0_0 -27722,2,44.0,0.0,7,111,458.0,450.0,0.0,0,54,0.0,0.0,633.0357962297762,908.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,131303,2,1,2,0,1,,0.0,588.0,32,1.0,0.0,4.0,2.0,1.5,1,1,1111.84252943961,458.0,22806.486251471557,0,1,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039813235146707995,15204.324167647705,3,2,3_0,3_1_0,3_3_0,3_0_0 -27723,2,50.0,0.0,6,111,1219.0,0.0,0.0,54,63,0.0,0.0,1684.8703834150595,1219.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,103412,2,2,3,0,1,,471.0,,43,4.0,0.0,4.0,4.0,2.5,1,1,1155.73017739383,1219.0,82269.52121149703,1,1,0,1,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014817151990786677,32907.80848459881,8,4,8,8_1,8_3,8_0_0 -27724,2,59.0,0.0,7,111,800.0,800.0,0.0,0,56,0.0,0.0,1105.7393820607444,1600.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,5,122918,1,1,2,0,1,,0.0,499.0,12,1.0,2.0,3.0,1.0,1.0,4,3,1396.23678239261,800.0,16412.36399044176,0,1,2,3,68.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0974874796179154,16412.36399044176,4,2,4_0,4_1_0,4_3_0,4_0_0 -27725,2,49.0,0.0,2,111,738.0,741.0,0.0,54,65,0.0,0.0,1020.0445799510368,1479.0,0.0,1343.9167995279597,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,101253,1,2,2,0,1,,496.0,,43,3.0,1.0,4.0,4.0,2.5,3,3,1162.27336531768,738.0,54253.67535330742,1,1,1,2,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027260825932410068,21701.47014132297,6,3,6,6_1,6_3,6_0_1 -27726,1,62.0,270.0,6,111,800.0,450.0,0.0,0,77,0.0,0.0,1105.7393820607444,1250.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,0,,2,,4,118178,2,1,0,0,1,,0.0,309.0,11,0.0,1.0,3.0,1.0,1.0,4,4,1438.38684375742,800.0,6673.038503014495,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.18732096322167507,6673.038503014495,1,1,1_1,1_0_1,1_3_1,1_0_0 -27727,2,37.0,0.0,8,111,1130.0,0.0,0.0,54,67,0.0,26.9144851253059,1561.8568771608016,1192.0,61.9317721508469,0.0,50,0,0,0,0,0,0,0,0,1,20.0,1,2000.0,6,123262,2,1,2,0,1,,398.0,810.0,43,2.0,1.0,4.0,2.0,1.5,1,1,1382.41470549964,1130.0,32285.18813651154,4,1,2,3,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036920955670441305,21523.45875767436,6,3,6,6_1,6_3,6_0_0 -27728,2,74.0,0.0,1,111,368.0,798.0,0.0,77,78,0.0,0.0,508.64011574794245,1166.0,0.0,1447.2950148762643,30,0,0,0,0,0,0,0,0,0,,1,,1,110778,2,1,1,0,1,,308.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1261.77427448403,368.0,37226.17052663325,5,5,0,1,74.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03132205068382717,24817.4470177555,7,4,7,7_1,7_3,7_1_0 -27729,2,27.0,0.0,9,111,0.0,0.0,0.0,55,34,0.0,0.0,0.0,290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,2006.0,6,130167,1,1,0,0,1,,0.0,530.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1718.3598717007,0.0,34442.03132689367,1,1,2,3,55.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00841994472531464,22961.354217929114,6,3,6,6_0,6_3,6_0_0 -27730,2,54.0,0.0,2,111,900.0,1347.0,0.0,0,54,0.0,0.0,1243.9568048183376,2247.0,0.0,2442.9904574415136,71,0,0,0,0,0,0,0,0,0,,1,,2,101520,2,3,3,0,1,,459.0,518.0,12,1.0,2.0,6.0,1.0,1.0,2,2,1531.53718098245,900.0,33710.87162443483,0,4,2,3,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06665505493400814,33710.87162443483,9,5,9,9_1,9_3,9_0_1 -27731,1,24.0,62.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,545.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,2,,5,122447,2,2,0,0,1,,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1837.90977094332,0.0,13765.750964481145,0,1,2,3,37.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.039591011155601125,13765.750964481145,3,2,3_1,3_0_1,3_3_1,3_0_0 -27732,2,59.0,0.0,2,111,850.0,700.0,0.0,0,46,0.0,0.0,1174.848093439541,1550.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,107706,1,1,2,0,1,,370.0,342.0,12,1.0,0.0,4.0,1.0,1.0,3,3,1263.86285443945,850.0,25526.604666307736,0,1,2,3,72.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06072096231606653,25526.604666307736,7,4,7,7_1,7_3,7_0_1 -27733,2,69.0,0.0,2,111,425.0,910.0,0.0,75,75,0.0,1345.724256265295,587.4240467197704,2635.0,0.0,1650.4241397711785,71,0,0,0,0,0,0,0,0,0,,1,,2,113502,2,1,1,0,1,,320.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,1254.08292388139,425.0,45105.90939562245,5,5,0,1,118.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05841806617595272,30070.6062637483,8,4,8,8_1,8_3,8_0_1 -27734,2,63.0,0.0,2,111,276.0,1186.0,0.0,77,77,0.0,0.0,381.48008681095683,1462.0,0.0,2150.992340405074,50,0,0,0,0,0,0,0,0,0,,1,,2,131621,2,2,2,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1233.04188756702,276.0,33562.76598901926,5,5,0,1,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043560176192818045,22375.17732601284,6,3,6,6_1,6_3,6_0_1 -27735,2,53.0,0.0,9,111,1592.0,0.0,0.0,0,52,0.0,248.44140115666985,2200.4213703008813,1832.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,4.0,1,2007.0,6,101596,2,1,1,0,1,,153.0,,32,1.0,0.0,5.0,3.0,2.0,2,2,1359.44030774337,1592.0,42075.03368848365,0,1,1,2,116.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04354126044351656,21037.516844241825,5,3,5,5_1,5_3,5_0_0 -27736,2,38.0,0.0,2,111,0.0,0.0,0.0,46,48,0.0,0.0,0.0,1058.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,121776,1,1,1,0,2,,830.0,,43,2.0,0.0,5.0,4.0,2.3,4,3,1343.56425782082,0.0,46503.78137212534,1,1,1,2,88.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022750838077743328,20219.035379184934,5,3,5,5_1,5_3,5_0_1 -27737,2,69.0,0.0,6,111,503.0,40.0,0.0,78,75,2240.377315527001,0.0,695.2336364706931,2043.0,0.0,72.54611603389796,71,0,0,0,0,0,0,0,0,0,,1,,4,128063,2,1,2,0,1,,168.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1159.40836668826,503.0,39536.922960940115,5,5,0,1,95.0,9,7,7,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05167321700827224,26357.948640626742,7,4,7,7_1,7_3,7_0_0 -27738,2,56.0,0.0,8,111,1039.0,0.0,0.0,45,22,0.0,496.8828023133397,1436.079022451392,1519.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,110437,2,1,2,0,1,,160.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,1341.05014570441,1039.0,67096.69679808925,1,1,1,2,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022638968421516352,33548.348399044626,9,5,9,9_1,9_3,9_0_0 -27739,2,53.0,0.0,9,111,1500.0,0.0,0.0,37,38,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2010.0,6,128167,2,1,1,0,1,,150.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,1384.6325432579,1500.0,99282.48816550583,1,1,1,2,215.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01510840459094328,55156.93786972546,10,5,10,10_1,10_3,10_0_0 -27740,2,67.0,0.0,5,111,1666.0,0.0,0.0,75,77,0.0,0.0,2302.7022631415,1666.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,121358,1,1,2,0,1,,245.0,,41,0.0,1.0,7.0,2.0,1.5,3,2,1248.50702462091,1666.0,48478.400795273774,5,5,0,1,125.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03436582009038591,32318.93386351585,8,4,8,8_1,8_3,8_0_0 -27741,2,76.0,0.0,5,111,1170.0,0.0,0.0,86,72,0.0,0.0,1617.1438462638387,1170.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,129895,2,2,4,0,1,,145.0,800.0,41,0.0,6.0,3.0,2.0,1.5,3,2,1495.48874995433,1170.0,23110.319746671008,6,5,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05062673354697033,15406.879831114005,3,2,3_0,3_1_0,3_3_0,3_0_0 -27742,2,54.0,0.0,5,111,1920.0,0.0,0.0,46,21,0.0,578.6614301940768,2653.7745169457867,2539.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124834,2,1,3,0,1,,181.0,,43,2.0,1.0,7.0,4.0,2.1,3,2,1187.46828085632,1920.0,81250.58709232546,4,1,0,1,168.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031249004971680035,38690.75575825021,9,5,9,9_1,9_3,9_0_0 -27743,2,58.0,0.0,2,111,285.0,590.0,0.0,0,55,0.0,0.0,393.9196548591402,875.0,0.0,1070.0552114999948,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,125997,2,1,0,0,1,,0.0,456.0,12,1.0,1.0,4.0,1.0,1.0,3,2,1354.94608836593,285.0,21744.633590765443,0,1,2,3,72.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04023981348536482,21744.633590765443,6,3,6,6_0,6_3,6_0_1 -27744,2,36.0,0.0,5,111,600.0,920.0,0.0,52,62,0.0,0.0,829.3045365455583,1520.0,0.0,1668.560668779653,60,2,2,2,2,2,2,2,1,2,25.0,2,,3,133401,1,2,0,0,1,,0.0,455.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1436.33885734481,600.0,37985.645434711296,1,1,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04001511577873634,21103.136352617385,5,3,5,5_0,5_3,5_0_0 -27745,1,43.0,331.0,2,111,550.0,220.0,0.0,0,85,0.0,0.0,760.1958251667618,770.0,0.0,399.00363818643876,71,2,2,2,2,1,1,2,2,0,,2,,2,119198,2,3,0,0,1,,260.0,307.0,31,0.0,0.0,4.0,2.0,1.3,1,1,1322.00529310538,550.0,9987.657777777777,0,7,2,3,77.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.07709515255050345,7682.813675213674,1,1,1_1,1_0_1,1_3_1,1_0_1 -27746,2,76.0,0.0,2,111,150.0,1310.0,0.0,0,75,0.0,0.0,207.32613413638958,1460.0,0.0,2375.885300110158,70,1,2,2,1,2,2,2,2,0,,1,,2,111882,1,2,3,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,4,4,1224.80954215917,150.0,24328.134646081413,0,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.06001282142012337,24328.134646081413,7,4,7,7_1,7_3,7_0_1 -27747,1,53.0,336.0,2,111,270.0,730.0,0.0,0,63,0.0,0.0,373.1870414455012,1000.0,0.0,1323.9666176186377,71,2,2,2,2,1,2,2,2,0,,2,,2,116923,2,1,0,0,1,,280.0,384.0,32,1.0,5.0,4.0,2.0,1.3,2,2,1271.55452614223,270.0,8935.824174418622,0,4,2,3,74.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.1119090953985855,6873.710903398939,1,1,1_1,1_0_1,1_3_1,1_0_1 -27748,2,68.0,0.0,2,111,430.0,52.0,0.0,77,74,0.0,0.0,594.3349178576501,482.0,0.0,94.30995084406734,70,2,1,2,2,1,2,2,2,0,,2,,2,108508,2,2,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1269.28558096758,430.0,67577.65316992169,5,5,0,1,84.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.007132535348453542,45051.76877994779,10,5,10,10_0,10_3,10_0_1 -27749,2,83.0,0.0,7,111,440.0,80.0,0.0,74,77,0.0,0.0,608.1566601334094,520.0,0.0,145.09223206779592,41,0,0,0,0,0,0,0,0,0,,2,,5,114736,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1547.039998483,440.0,46946.64817666241,5,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011076403112810438,31297.765451108276,8,4,8,8_0,8_3,8_0_0 -27750,2,61.0,0.0,2,111,294.0,667.0,0.0,77,75,0.0,0.0,406.35922290732356,961.0,0.0,1209.7064848652485,71,0,0,0,0,0,0,0,0,0,,1,,2,120399,2,2,3,0,1,,245.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1056.00390583996,294.0,43895.43381557578,5,5,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021892937749233506,29263.622543717185,8,4,8,8_1,8_3,8_0_1 -27751,2,43.0,0.0,2,111,545.0,1330.0,0.0,54,38,0.0,0.0,753.2849540288821,1875.0,0.0,2412.158358127107,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,132576,2,2,2,0,1,,0.0,900.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1323.77814450918,545.0,47451.30428345615,1,1,2,3,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03951419309360727,26361.835713031192,7,4,7,7_1,7_3,7_0_1 -27752,2,87.0,0.0,5,111,0.0,0.0,364.0,0,77,0.0,0.0,185.97245388085912,364.0,0.0,416.14146197355785,71,0,0,0,0,0,0,0,0,0,,1,,3,129880,2,2,1,0,1,,459.0,,11,0.0,2.0,5.0,1.0,1.0,2,1,1064.76365162223,0.0,45828.83873801979,0,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00794259706384452,45828.83873801979,10,5,10,10_1,10_3,10_0_0 -27753,2,46.0,0.0,1,111,700.0,0.0,0.0,21,52,0.0,898.5297341832893,967.5219593031513,1818.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,4,45.0,1,,1,127238,2,3,2,0,1,,85.0,,43,2.0,0.0,5.0,3.0,1.8,4,4,1157.4146025835,700.0,10182.124682028389,1,1,0,1,160.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1785481966459121,5656.7359344602155,1,1,1_0,1_1_0,1_3_0,1_1_0 -27754,1,57.0,288.0,8,111,580.0,0.0,0.0,0,78,0.0,414.0690019277831,801.6610519940398,1040.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,115456,2,1,1,0,1,,220.0,,31,0.0,3.0,4.0,2.0,1.5,1,1,1085.67804083889,580.0,11846.158317910773,0,7,1,2,92.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0877921746518932,7897.438878607182,1,1,1_1,1_1_1,1_3_1,1_0_0 -27755,2,51.0,0.0,8,111,847.0,1091.0,0.0,65,33,0.0,51.75862524097289,1170.7015707568132,1988.0,0.0,1978.6953148245668,71,1,2,2,2,1,2,2,2,2,30.0,1,2003.0,6,100935,2,1,1,0,1,,293.0,,43,2.0,1.0,7.0,3.0,2.0,2,2,1125.51911116952,847.0,62887.017843736474,1,1,0,1,160.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03161224793549348,31443.508921868237,8,4,8,8_1,8_3,8_0_0 -27756,2,49.0,0.0,8,111,0.0,0.0,1600.0,85,46,0.0,0.0,817.4613357400401,1600.0,0.0,1829.1932394442103,71,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,100744,2,1,2,0,1,,548.0,,42,2.0,0.0,4.0,3.0,2.0,1,1,993.905326161702,0.0,44125.12659344396,6,1,1,2,73.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036260519199002715,22062.56329672198,6,3,6,6_1,6_3,6_0_0 -27757,2,32.0,0.0,8,111,284.0,624.0,0.0,85,46,0.0,0.0,392.5374806315643,908.0,0.0,1131.719410128808,50,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,111264,2,1,2,0,1,,160.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,1094.83994144556,284.0,35393.44641782282,6,1,1,2,95.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025654466911217918,16854.022103725154,4,2,4_0,4_1_0,4_3_0,4_0_0 -27758,2,28.0,0.0,9,111,761.0,0.0,0.0,46,38,74.67924385090004,0.0,1051.8345871852832,811.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,115592,2,1,0,0,1,,0.0,528.0,43,2.0,0.0,3.0,2.0,1.5,4,4,1427.28140103002,761.0,45609.10789007912,1,1,2,3,57.0,9,7,7,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017781536134286208,30406.07192671941,8,4,8,8_0,8_3,8_0_0 -27759,1,66.0,88.0,2,111,277.0,1117.0,0.0,0,78,0.0,0.0,382.8622610385328,1394.0,0.0,2025.8502902466005,71,0,0,0,0,0,0,0,0,0,,8,,2,112423,1,2,0,0,2,,0.0,270.0,11,0.0,0.0,3.0,1.0,1.0,1,1,3588.91898119579,277.0,11997.49635292271,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.11619090841902258,11997.49635292271,2,1,2_1,2_0_1,2_3_1,2_0_1 -27760,2,40.0,0.0,2,111,720.0,516.0,0.0,43,85,0.0,0.0,995.16544385467,1236.0,0.0,935.8448968372836,20,0,0,0,0,0,0,0,0,0,,2,,2,112888,1,3,0,0,1,,0.0,309.0,42,1.0,0.0,3.0,4.0,2.1,1,1,3011.18989203659,720.0,32351.892319246515,1,7,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03820487493600766,15405.663009165006,3,2,3_0,3_0_0,3_3_0,3_0_1 -27761,1,48.0,32.0,2,111,540.0,900.0,0.0,0,47,0.0,0.0,746.3740828910024,1440.0,0.0,1632.287610762704,71,2,2,2,2,1,2,2,2,0,,8,,2,126469,1,3,0,0,2,,0.0,330.0,12,1.0,2.0,3.0,1.0,1.0,1,1,3554.86838009844,540.0,20392.602533412726,0,1,2,3,84.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.07061384134960699,20392.602533412726,5,3,5,5_0,5_3,5_0_1 -27762,2,62.0,0.0,9,111,381.0,0.0,0.0,0,78,0.0,93.1655254337512,526.6083807064296,501.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,117509,2,1,1,0,1,,160.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,3152.75608263687,381.0,13944.763776938333,0,5,0,1,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03592746410151079,13944.763776938333,3,2,3_0,3_1_0,3_3_0,3_0_0 -27763,1,34.0,370.0,7,111,0.0,0.0,2000.0,0,52,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,41,0,0,0,0,0,0,0,0,1,5.0,2,,5,130308,2,3,0,0,1,,0.0,410.0,32,1.0,0.0,3.0,3.0,1.6,3,3,3255.30419262525,0.0,20746.58495819118,0,1,2,3,61.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09640140794402689,12966.615598869486,2,1,2_1,2_0_1,2_3_1,2_0_0 -27764,2,53.0,0.0,7,111,647.0,853.0,0.0,38,38,0.0,155.27587572291867,894.2667252416271,1650.0,0.0,1547.045924422874,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,103681,2,1,2,0,1,,720.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,2764.52875144703,647.0,108943.44095669573,1,1,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015145473518280588,72628.96063779715,10,5,10,10_1,10_3,10_0_0 -27765,2,45.0,0.0,7,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,641.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,13.0,2,,5,111643,2,3,0,0,2,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3987.77358439061,0.0,19038.22179032802,0,1,2,3,47.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.033669110858118426,19038.22179032802,5,3,5,5_0,5_3,5_0_0 -27766,2,42.0,0.0,9,111,1000.0,1121.0,0.0,38,38,0.0,258.79312620486445,1382.1742275759307,2371.0,0.0,2033.1049018499903,71,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,121460,2,1,1,0,1,,634.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,2559.72974985806,1000.0,117503.14632254216,1,1,0,1,223.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02017818308874628,45193.51781636238,10,5,10,10_1,10_3,10_0_0 -27767,2,55.0,0.0,5,111,700.0,0.0,0.0,46,38,0.0,0.0,967.5219593031513,1600.0,1548.2943037711725,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,131738,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,2517.76093313809,700.0,107278.06796782365,1,1,0,1,150.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01491451170130967,42911.22718712946,9,5,9,9_1,9_3,9_0_0 -27768,2,50.0,0.0,8,111,1500.0,0.0,0.0,43,34,0.0,372.6621017350048,2073.261341363896,1860.0,0.0,0.0,50,1,2,2,2,1,2,2,2,1,20.0,1,2001.0,6,120256,1,1,1,0,1,,420.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,2538.39543323915,1500.0,77602.65973223561,1,1,1,2,155.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.023968250655555415,27715.235618655577,7,4,7,7_1,7_3,7_0_0 -27769,2,48.0,0.0,8,111,530.0,933.0,0.0,33,38,0.0,0.0,732.5523406152432,1463.0,0.0,1692.1381564906699,71,0,0,0,0,0,0,0,0,2,75.0,1,2003.0,6,100878,1,1,1,0,1,,498.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,2766.85742531485,530.0,88123.14598941506,1,1,1,2,160.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016601767714644784,35249.258395766024,9,5,9,9_1,9_3,9_0_0 -27770,2,51.0,0.0,8,111,581.0,1249.0,0.0,0,42,0.0,227.73795106028072,803.0432262216157,2050.0,0.0,2265.2524731584635,71,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,118770,2,1,2,0,1,,480.0,,22,2.0,3.0,7.0,2.0,1.5,1,1,2803.36845635047,581.0,123446.37123452593,0,1,0,1,176.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0166064014640444,82297.58082301728,10,5,10,10_1,10_3,10_0_0 -27771,2,55.0,0.0,7,111,560.0,978.4,0.0,47,43,0.0,0.0,774.0175674425211,1538.0,0.0,1774.477998189144,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,122912,2,1,1,0,1,,396.0,,43,2.0,2.0,6.0,4.0,2.5,3,3,2766.85742531485,560.0,45057.95239412203,1,1,0,1,150.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034133819187945114,18023.180957648812,4,2,4_0,4_1_0,4_3_0,4_0_0 -27772,2,58.0,0.0,8,111,657.0,1797.0,0.0,34,33,0.0,0.0,908.0884675173863,2454.0,0.0,3259.134262822866,71,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,125908,2,2,1,0,1,,627.0,,43,2.0,1.0,8.0,3.0,2.0,3,3,3017.37598005068,657.0,107015.29639289288,1,1,0,1,242.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02293130125052829,53507.64819644644,10,5,10,10_1,10_3,10_0_0 -27773,2,56.0,0.0,6,111,1900.0,0.0,0.0,37,38,0.0,155.27587572291867,2626.131032394268,2170.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,2,60.0,1,,4,106248,2,1,2,0,1,,400.0,,43,2.0,2.0,8.0,2.0,1.5,1,1,2708.92696225996,1900.0,142674.69256705284,1,1,0,1,220.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015209424747701242,95116.46171136857,10,5,10,10_1,10_3,10_0_0 -27774,2,70.0,0.0,7,111,662.0,770.0,0.0,0,72,0.0,201.85863843979428,914.999338655266,1627.0,0.0,1396.5127336525356,71,0,0,0,0,0,0,0,0,0,,1,,5,118792,2,1,2,0,2,,250.0,,11,0.0,1.0,5.0,1.0,1.0,3,1,3197.18224593173,662.0,21039.209419485138,0,5,0,1,115.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07733180309014745,21039.209419485138,5,3,5,5_1,5_3,5_0_0 -27775,2,60.0,0.0,7,111,1676.0,0.0,0.0,48,75,0.0,985.4842245881238,2316.5240054172596,2734.0,182.3546624441603,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,125010,2,2,2,0,1,,953.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2922.04553287168,1676.0,56209.3913445501,1,5,0,1,102.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04863955888156189,37472.9275630334,9,5,9,9_1,9_3,9_0_0 -27776,2,60.0,0.0,6,111,0.0,0.0,2000.0,37,45,0.0,144.92415067472407,1021.8266696750501,2140.0,0.0,2286.491549305263,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,127734,2,1,2,0,1,,806.0,,43,2.0,2.0,6.0,2.0,1.5,4,4,2552.38984905492,0.0,96829.42712031567,1,1,0,1,101.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022100719416019442,64552.95141354378,10,5,10,10_1,10_3,10_0_0 -27777,2,57.0,0.0,6,111,821.0,760.0,0.0,47,42,0.0,0.0,1134.765040839839,1581.0,0.0,1378.376204644061,71,0,0,0,0,0,0,0,0,2,50.0,1,,4,125118,2,1,2,0,1,,600.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,2546.59597421194,821.0,71508.89992814323,1,1,0,1,94.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022109136087797337,47672.59995209549,10,5,10,10_1,10_3,10_0_0 -27778,2,59.0,0.0,6,111,635.0,1460.0,0.0,56,48,0.0,0.0,877.6806345107159,2095.0,0.0,2647.9332352372753,12,0,0,0,0,0,0,0,0,0,,1,,4,122124,2,2,2,0,1,,413.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,2720.46512202069,635.0,42106.92791053995,1,1,1,2,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049754282821368984,21053.463955269974,5,3,5,5_1,5_3,5_0_0 -27779,2,48.0,0.0,7,111,406.0,1133.0,0.0,43,38,0.0,0.0,561.1627363958278,1539.0,0.0,2054.86873666016,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,124339,2,1,2,0,1,,427.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,2952.03219912766,406.0,70733.76401415007,1,1,1,2,135.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021757643205472958,35366.88200707504,9,5,9,9_1,9_3,9_0_0 -27780,2,44.0,0.0,6,111,3052.0,0.0,0.0,37,31,0.0,0.0,4218.39574256174,3052.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,4,108390,2,1,2,0,2,,1023.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,2561.98445947078,3052.0,398451.1052866622,1,1,0,1,179.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007659660017266774,173239.61099420095,10,5,10,10_1,10_3,10_0_0 -27781,2,37.0,0.0,6,111,0.0,0.0,0.0,56,21,0.0,0.0,0.0,651.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,120962,2,2,3,0,1,,524.0,890.0,43,2.0,0.0,4.0,3.0,1.8,2,2,3005.13495809449,0.0,33150.32679666278,1,1,2,3,90.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019637815457841448,18416.84822036821,4,2,4_0,4_1_0,4_3_0,4_0_0 -27782,2,60.0,0.0,7,111,600.0,1500.0,0.0,46,22,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,5,123870,2,1,2,0,2,,300.0,,43,2.0,1.0,6.0,2.0,1.5,3,3,2558.53380644298,600.0,33566.18376199683,1,1,0,1,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06256296559925263,22377.45584133122,6,3,6,6_1,6_3,6_0_0 -27783,2,56.0,0.0,6,111,520.0,590.0,0.0,21,54,0.0,362.31037668681023,718.7305983394839,1460.0,0.0,1070.0552114999948,42,0,0,0,0,0,0,0,0,2,60.0,1,,4,129516,2,1,1,0,1,,190.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,2558.53380644298,520.0,30840.060321535006,1,1,0,1,115.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047341022837770225,20560.04021435667,5,3,5,5_1,5_3,5_0_0 -27784,2,41.0,0.0,6,111,240.0,840.0,0.0,0,46,0.0,0.0,331.72181461822333,1080.0,0.0,1523.468436711857,42,0,0,0,0,0,0,0,0,0,,2,,4,107433,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,3.0,1.0,1.0,3,3,4887.83098585893,240.0,17048.222675608245,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06334971219875082,17048.222675608245,4,2,4_0,4_0_0,4_3_0,4_0_0 -27785,2,50.0,0.0,1,111,855.0,1382.0,0.0,0,38,0.0,0.0,1181.7589645774206,2237.0,0.0,2506.4683089711743,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,116337,2,1,1,0,1,,403.0,,32,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,2592.51018397067,855.0,97462.11388702696,0,1,0,1,200.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022952508526472293,37485.4284180873,9,5,9,9_1,9_3,9_1_0 -27786,2,49.0,0.0,1,111,338.0,0.0,0.0,85,64,0.0,0.0,467.17488892066456,423.0,146.2277953561663,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,103548,2,1,0,0,1,,428.0,348.0,42,1.0,0.0,2.0,2.0,1.5,2,2,3847.3423581773,338.0,19768.63870060623,6,1,2,3,48.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02139752799402562,13179.09246707082,2,1,2_0,2_0_0,2_3_0,2_1_0 -27787,2,56.0,0.0,6,111,983.0,0.0,0.0,75,33,0.0,362.31037668681023,1358.6772657071397,1403.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,113430,2,1,2,0,1,,500.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,2647.61954543942,983.0,63670.18262251138,7,1,0,1,93.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022035432320308,42446.788415007584,9,5,9,9_1,9_3,9_0_0 -27788,2,60.0,0.0,6,111,1145.0,0.0,0.0,54,65,0.0,0.0,1582.5894905744406,1205.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,130124,2,1,1,0,1,,314.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,2905.99580323278,1145.0,53201.57365202528,1,1,0,1,73.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022649705963239453,35467.71576801685,9,5,9,9_1,9_3,9_0_0 -27789,2,71.0,0.0,5,111,465.0,997.0,0.0,0,74,0.0,0.0,642.7110158228077,1462.0,0.0,1808.2119421449065,70,0,0,0,0,0,0,0,0,0,,1,,3,110595,2,1,1,0,1,,443.0,,21,0.0,0.0,4.0,2.0,1.5,1,1,2815.76871072016,465.0,43999.1551736661,0,5,0,1,98.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03322791072304544,29332.7701157774,8,4,8,8_1,8_3,8_0_0 -27790,2,62.0,0.0,6,111,1325.0,1519.0,0.0,33,38,0.0,0.0,1831.380851538108,2844.0,0.0,2754.9387563872747,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,132388,2,1,2,0,1,,771.0,,43,2.0,2.0,7.0,2.0,1.5,1,1,2649.04033293828,1325.0,147008.81795216224,1,1,0,1,205.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01934577829831581,98005.87863477482,10,5,10,10_1,10_3,10_0_0 -27791,1,23.0,270.0,6,111,960.0,0.0,0.0,0,56,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,1.0,2,,4,102519,2,1,0,0,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,2,2,4642.47085468184,960.0,15372.0,0,1,3,4,37.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0624512099921936,15372.0,3,2,3_1,3_0_1,3_3_1,3_0_0 -27792,2,60.0,0.0,2,111,200.0,500.0,0.0,0,38,0.0,0.0,276.4348455151861,700.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,126950,2,3,3,0,1,,150.0,980.0,32,1.0,0.0,5.0,2.0,1.5,1,1,2961.49879300365,200.0,60585.36774581297,0,1,2,3,130.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011553944888753716,40390.24516387531,9,5,9,9_1,9_3,9_0_1 -27793,2,57.0,0.0,6,111,1068.0,0.0,0.0,0,37,0.0,0.0,1476.1620750510938,1158.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,128025,2,1,2,0,1,,150.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,3050.17305744562,1068.0,62188.406237568495,0,1,0,1,110.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018620834172470613,62188.406237568495,10,5,10,10_1,10_3,10_0_0 -27794,2,64.0,0.0,8,111,787.0,1032.0,0.0,77,46,0.0,0.0,1087.7711171022574,1819.0,0.0,1871.6897936745672,71,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,111617,2,1,2,0,1,,685.0,,42,1.0,2.0,5.0,2.0,1.5,3,3,2900.00157235458,787.0,66505.8516401315,5,1,1,2,105.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02735097672070655,44337.23442675433,10,5,10,10_1,10_3,10_0_0 -27795,1,44.0,95.0,7,111,460.0,700.0,0.0,54,53,0.0,0.0,635.800144684928,1160.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,114301,2,1,1,0,1,,0.0,705.0,43,2.0,3.0,4.0,3.0,1.8,6,4,3418.4911958231,460.0,42131.939873841344,1,1,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.027532556143236468,23406.633263245192,6,3,6,6_1,6_3,6_0_0 -27796,2,56.0,0.0,5,111,620.0,1068.0,0.0,42,38,0.0,0.0,856.9480210970769,1688.0,0.0,1936.9812981050754,60,0,0,0,0,0,0,0,0,2,30.0,1,,3,112069,2,1,2,0,2,,160.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,2708.92696225996,620.0,96851.17069854322,1,1,0,1,230.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017428803264072364,64567.44713236215,10,5,10,10_1,10_3,10_0_0 -27797,2,48.0,0.0,7,111,1152.0,180.0,0.0,22,38,0.0,41.40690019277831,1592.264710167472,1372.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,115497,2,1,1,0,1,,806.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,2952.9383743366,1152.0,84012.34295890691,1,1,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01633093366615294,42006.17147945346,9,5,9,9_1,9_3,9_0_0 -27798,2,63.0,0.0,5,111,1240.0,0.0,0.0,77,77,0.0,0.0,1713.8960421941538,1300.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123876,2,1,3,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,2675.37174317495,1240.0,39190.39563884992,7,5,0,1,97.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03317139260291861,26126.930425899947,7,4,7,7_1,7_3,7_0_0 -27799,2,72.0,0.0,5,111,576.0,2173.0,0.0,75,77,0.0,155.27587572291867,796.132355083736,2899.0,0.0,3941.0677535415066,70,0,0,0,0,0,0,0,0,0,,1,,3,124389,2,1,2,0,2,,349.0,,41,1.0,1.0,5.0,3.0,2.0,1,1,2665.16586760717,576.0,70657.32240020724,5,5,0,1,112.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04102901017929739,35328.66120010362,9,5,9,9_1,9_3,9_0_0 -27800,2,61.0,0.0,5,111,1100.0,0.0,0.0,0,75,0.0,0.0,1520.3916503335236,1170.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,113940,2,1,3,0,1,,400.0,,21,1.0,0.0,4.0,2.0,1.5,1,1,2506.40443020199,1100.0,33478.798181427184,0,5,0,1,85.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03494749105566977,22319.198787618123,6,3,6,6_1,6_3,6_0_0 -27801,2,47.0,0.0,9,111,1994.0,0.0,0.0,55,22,0.0,0.0,2756.0554097864056,1994.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,104525,2,1,1,0,1,,524.0,,43,2.0,2.0,5.0,4.0,2.5,2,2,2743.38086770085,1994.0,56621.30933286644,1,1,1,2,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035216423348277494,22648.523733146576,6,3,6,6_1,6_3,6_0_0 -27802,2,84.0,0.0,5,111,1560.0,0.0,0.0,0,86,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131852,2,2,1,0,1,,286.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,3086.81058120094,1560.0,15211.543962672917,0,6,0,1,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10255369236863991,15211.543962672917,3,2,3_0,3_1_0,3_3_0,3_0_0 -27803,2,73.0,0.0,2,111,400.0,1700.0,0.0,0,75,0.0,0.0,552.8696910303722,2100.0,0.0,3083.2099314406632,43,0,0,0,0,0,0,0,0,0,,1,,2,125671,2,1,2,0,2,,600.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,3081.0415757767,400.0,36886.21583545221,0,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.056931836254713895,36886.21583545221,9,5,9,9_1,9_3,9_0_1 -27804,2,62.0,0.0,9,111,653.0,0.0,0.0,0,77,0.0,0.0,902.5597706070827,653.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2007.0,6,114148,2,1,0,0,1,,177.0,,21,0.0,1.0,3.0,2.0,1.5,2,2,3294.28950305333,653.0,29221.706034137034,0,5,1,2,67.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022346402336576792,19481.137356091356,5,3,5,5_0,5_3,5_0_0 -27805,2,37.0,0.0,9,111,531.0,0.0,0.0,52,34,0.0,0.0,733.9345148428191,531.0,0.0,0.0,43,0,0,0,0,0,0,0,0,4,120.0,2,2006.0,6,124684,2,1,0,0,1,,832.0,756.0,43,2.0,0.0,4.0,5.0,2.4,3,2,4279.89335779088,531.0,54577.3616145929,1,1,2,3,78.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00972930871502629,22740.56733941371,6,3,6,6_0,6_3,6_0_0 -27806,2,64.0,0.0,6,111,135.0,0.0,0.0,75,75,0.0,0.0,186.5935207227506,180.0,77.41471518855863,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,124018,2,1,2,0,2,,440.0,,41,0.0,2.0,6.0,2.0,1.5,2,1,2600.25085143191,135.0,55654.36691423057,5,5,0,1,167.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0032342475528901364,37102.91127615372,9,5,9,9_1,9_3,9_0_0 -27807,2,72.0,0.0,9,111,926.0,0.0,0.0,74,74,0.0,207.03450096389156,1279.8933347353118,1126.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122678,2,1,1,0,1,,243.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2846.96622084086,926.0,47852.06197026828,5,5,0,1,153.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02353085642787165,31901.37464684552,8,4,8,8_1,8_3,8_0_0 -27808,2,89.0,0.0,1,111,1036.0,0.0,0.0,77,78,0.0,0.0,1431.932499768664,1216.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128317,1,2,2,0,2,,282.0,,41,0.0,1.0,3.0,2.0,1.5,3,2,2675.70810004126,1036.0,16652.180048145696,5,5,0,1,78.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07302347179073455,11101.453365430463,2,1,2_0,2_1_0,2_3_0,2_1_0 -27809,2,48.0,0.0,7,111,1145.0,1090.0,0.0,38,38,0.0,0.0,1582.5894905744406,2235.0,0.0,1976.8816619237193,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,132628,2,1,2,0,1,,431.0,,43,2.0,1.0,10.0,5.0,2.8,2,1,2538.39543323915,1145.0,134252.25046602736,1,1,0,1,220.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016647765622115725,47947.23230929549,10,5,10,10_1,10_3,10_0_0 -27810,2,78.0,0.0,5,111,2803.0,0.0,0.0,74,74,0.0,0.0,3874.2343598953335,2883.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124297,2,1,2,0,1,,212.0,,41,0.0,1.0,8.0,2.0,1.5,1,1,2708.92696225996,2803.0,75581.8474733356,5,5,0,1,191.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03814407951614426,50387.89831555707,10,5,10,10_1,10_3,10_0_0 -27811,2,42.0,0.0,6,111,1750.0,0.0,0.0,34,38,0.0,0.0,2418.8048982578784,1750.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,,4,118698,2,1,2,0,1,,434.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,2491.12765255756,1750.0,86184.75029545087,1,1,1,2,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020305216340487223,41040.35728354803,9,5,9,9_1,9_3,9_0_0 -27812,1,49.0,300.0,9,111,1200.0,0.0,0.0,63,54,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,4,60.0,2,2009.0,6,109541,2,1,0,0,1,,0.0,542.0,43,2.0,1.0,5.0,4.0,2.3,2,1,2968.35792966651,1200.0,19568.813323838534,1,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06132206282218308,8508.179706016756,1,1,1_1,1_0_1,1_3_1,1_0_0 -27814,2,74.0,0.0,1,112,450.0,0.0,0.0,0,75,0.0,993.7656046266794,621.9784024091688,1470.0,103.2196202514115,0.0,70,2,2,2,1,1,2,1,2,0,,1,,1,129888,1,2,2,0,2,,75.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,879.104773931069,450.0,26116.529914771585,0,5,1,2,120.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.056286191343075935,26116.529914771585,7,4,7,7_1,7_0,7_1_0 -27815,2,41.0,0.0,9,112,1065.0,0.0,0.0,37,34,0.0,0.0,1472.0155523683661,1065.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,102556,2,1,1,0,1,,161.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,730.455593057803,1065.0,66922.61451034805,1,1,1,2,117.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015913903062399364,29096.788917542635,8,4,8,8_1,8_0,8_0_0 -27816,2,38.0,0.0,9,112,1200.0,0.0,0.0,21,46,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,110222,1,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,761.899040595932,1200.0,59756.17431081564,1,1,1,2,171.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02008160686054503,28455.3211003884,8,4,8,8_1,8_0,8_0_0 -27817,2,62.0,0.0,6,112,21188.0,0.0,0.0,33,22,4480.754631054002,0.0,29285.507533878816,24228.0,68.81308016760767,0.0,33,2,2,1,2,1,2,2,2,2,10.0,1,,4,117127,2,1,3,0,1,,458.0,,43,2.0,0.0,5.0,2.0,1.5,3,3,799.620992042026,21188.0,173728.74732804231,4,1,1,2,200.0,9,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.1394587848737067,115819.16488536155,10,5,10,10_1,10_0,10_0_0 -27818,2,64.0,0.0,6,112,1450.0,0.0,0.0,77,74,0.0,0.0,2004.1526299850993,1587.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124703,2,1,2,0,1,,198.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,795.349749862581,1450.0,49375.62678564099,5,5,0,1,120.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032141364136799536,32917.08452376066,8,4,8,8_1,8_0,8_0_0 -27819,2,45.0,0.0,1,112,813.0,0.0,0.0,55,46,4226.845201960942,0.0,1123.7076470192314,3767.0,213.32054851958378,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,114016,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,704.453322586184,813.0,51084.5849586707,1,1,0,1,250.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07374044446182035,20433.833983468277,5,3,5,5_1,5_0,5_1_0 -27820,2,34.0,0.0,9,112,850.0,0.0,0.0,48,46,0.0,414.0690019277831,1174.848093439541,1295.0,77.41471518855863,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,119351,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,3,1,927.36896376109,850.0,49399.84914977367,1,1,1,2,115.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02621465494912211,27444.360638763148,7,4,7,7_1,7_0,7_0_0 -27821,2,41.0,0.0,9,112,1247.0,0.0,0.0,0,47,0.0,62.110350289167464,1723.5712617871854,1342.0,60.21144514665671,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,101956,2,1,1,0,1,,150.0,,32,1.0,1.0,5.0,2.0,1.3,1,1,784.893736621169,1247.0,39562.08644598552,0,1,1,2,151.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033921365644661965,30432.37418921963,8,4,8,8_1,8_0,8_0_0 -27822,2,60.0,0.0,7,112,2000.0,0.0,0.0,56,37,0.0,0.0,2764.3484551518613,2200.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,133405,2,2,1,0,1,,460.0,,43,2.0,1.0,5.0,2.0,1.5,3,3,799.620992042026,2000.0,69561.17124560446,4,1,0,1,130.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03162683952276058,46374.11416373631,10,5,10,10_1,10_0,10_0_0 -27823,2,43.0,0.0,6,112,812.0,0.0,0.0,47,46,0.0,231.87864107955855,1122.3254727916556,1036.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,4,119433,2,2,3,0,1,,114.0,,43,2.0,0.0,6.0,4.0,2.1,4,2,755.780628707153,812.0,89860.81961260866,1,1,1,2,210.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011528940025989209,42790.86648219459,9,5,9,9_1,9_0,9_0_0 -27824,2,40.0,0.0,1,112,2300.0,0.0,0.0,38,47,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,111863,2,2,1,0,1,,546.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,872.238776695999,2300.0,82763.79067482673,1,1,1,2,120.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027789930611522407,45979.88370823707,10,5,10,10_1,10_0,10_1_0 -27825,2,27.0,0.0,1,112,1000.0,0.0,0.0,0,63,0.0,724.6207533736205,1382.1742275759307,2300.0,1032.196202514115,0.0,50,2,2,2,1,1,2,2,2,2,30.0,5,,1,118263,1,3,4,0,2,,490.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,832.289694760097,1000.0,19663.111779600247,0,1,1,2,80.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.11697029573854964,19663.111779600247,5,3,5,5_1,5_0,5_1_0 -27826,2,35.0,0.0,9,112,1200.0,0.0,0.0,38,38,0.0,207.03450096389156,1658.6090730911167,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2008.0,6,126182,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,917.077296211867,1200.0,104826.314968027,1,1,1,2,120.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013355425118463937,58236.84164890389,10,5,10,10_1,10_0,10_0_0 -27828,2,65.0,0.0,1,112,330.0,0.0,0.0,0,11,1792.3018524216009,0.0,456.1174951000571,1650.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111057,2,1,4,0,1,,56.0,,12,1.0,0.0,7.0,1.0,1.0,3,2,914.789546907823,330.0,8998.00449042858,0,1,0,1,146.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18337399161726908,8998.00449042858,1,1,1_0,1_1_0,1_0_0,1_1_0 -27829,1,45.0,104.0,1,112,661.0,0.0,0.0,0,85,0.0,0.0,913.6171644276901,686.0,43.00817510475479,0.0,50,2,2,1,2,1,2,2,2,0,,2,,1,121558,1,1,0,0,2,,92.0,400.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1391.69241131339,661.0,10421.400466010575,0,7,2,3,58.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.06582608568180359,10421.400466010575,2,1,2_1,2_0_1,2_0_1,2_1_0 -27830,2,57.0,0.0,1,112,1500.0,0.0,0.0,0,77,0.0,336.43106406632376,2073.261341363896,2025.0,344.06540083803833,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,116831,2,2,1,0,1,,93.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,855.087271884837,1500.0,12851.577194652433,0,5,0,1,90.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.15756820889210443,12851.577194652433,2,1,2_0,2_1_0,2_0_0,2_1_0 -27831,2,46.0,0.0,5,112,1740.0,0.0,0.0,56,65,0.0,0.0,2404.983155982119,1760.0,34.40654008380383,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,3,113180,2,1,1,0,1,,280.0,,43,2.0,1.0,6.0,3.0,1.8,4,4,786.143386097406,1740.0,58583.793330298184,1,1,0,1,120.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030042438359650717,32546.551850165655,8,4,8,8_1,8_0,8_0_0 -27832,2,34.0,0.0,1,112,750.0,0.0,0.0,62,46,4480.754631054002,0.0,1036.630670681948,3850.0,172.03270041901916,0.0,31,2,2,2,2,1,2,2,2,2,5.0,1,,1,130138,2,1,4,0,1,,295.0,800.0,43,2.0,0.0,5.0,4.0,2.1,4,4,928.254049380783,750.0,57747.500789607184,1,1,2,3,160.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,1,0,0.0666695518828909,27498.809899812943,7,4,7,7_1,7_0,7_1_0 -27833,2,52.0,0.0,9,112,400.0,0.0,0.0,0,38,2987.1697540360015,0.0,552.8696910303722,2430.0,51.60981012570575,0.0,50,2,2,2,2,1,2,2,2,2,5.0,1,2006.0,6,127499,2,2,1,0,1,,176.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,867.591094241781,400.0,25692.47660632176,0,1,1,2,150.0,9,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.09458021650595126,25692.47660632176,7,4,7,7_1,7_0,7_0_0 -27834,2,50.0,0.0,1,112,800.0,0.0,0.0,0,38,2389.735803228801,0.0,1105.7393820607444,2650.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107801,2,1,1,0,1,,121.0,,22,1.0,2.0,6.0,2.0,1.5,5,5,795.806563517236,800.0,40566.405150937826,0,1,1,2,280.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06532498973325312,27044.270100625217,7,4,7,7_1,7_0,7_1_0 -27835,2,59.0,0.0,6,112,1280.0,0.0,0.0,0,21,0.0,0.0,1769.1830112971911,1340.0,103.2196202514115,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,120673,1,1,2,0,1,,128.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,844.939646769549,1280.0,14470.179334698045,0,1,0,1,134.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.09260424276752492,14470.179334698045,3,2,3_0,3_1_0,3_0_0,3_0_0 -27836,2,31.0,0.0,6,112,716.0,0.0,0.0,54,38,2987.1697540360015,0.0,989.6367469443662,2716.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,129712,2,1,3,0,1,,346.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,769.637238928015,716.0,68231.0432913618,1,1,1,2,110.0,9,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039805928049525395,32490.97299588657,8,4,8,8_1,8_0,8_0_0 -27837,2,62.0,0.0,7,112,600.0,0.0,0.0,75,74,0.0,0.0,829.3045365455583,605.0,8.601635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,108238,2,1,2,0,1,,142.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,799.620992042026,600.0,157948.39920810552,6,5,0,1,177.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0038303648725358714,105298.93280540367,10,5,10,10_1,10_0,10_0_0 -27838,2,75.0,0.0,5,112,756.0,0.0,0.0,77,75,0.0,621.1035028916747,1044.9237160474036,1476.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131821,2,1,1,0,2,,149.0,,41,0.0,6.0,4.0,2.0,1.5,3,3,790.231135029868,756.0,17840.927864922323,6,5,0,1,89.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08273112313300787,11893.951909948215,2,1,2_0,2_1_0,2_0_0,2_0_0 -27840,1,25.0,347.0,2,111,400.0,759.0,0.0,84,42,0.0,0.0,552.8696910303722,1159.0,0.0,1376.5625517432138,71,2,2,2,2,1,1,2,2,3,60.0,2,,2,126501,1,1,0,0,2,,0.0,719.0,42,1.0,0.0,2.0,2.0,1.5,3,3,2026.21299897051,400.0,25992.892893488166,3,1,2,3,89.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.044589111521725115,17328.595262325445,4,2,4_1,4_0_1,4_3_1,4_0_1 -27841,1,71.0,44.0,1,111,0.0,0.0,1040.0,0,72,0.0,0.0,531.3498682310261,3402.0,0.0,1188.9756056387366,71,0,0,0,0,0,0,0,0,0,,2,,1,119597,2,2,0,0,1,,0.0,419.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1837.77244588156,0.0,13246.645030920154,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.25681974507953476,13246.645030920154,2,1,2_1,2_0_1,2_3_1,2_1_0 -27843,2,51.0,0.0,2,111,0.0,0.0,164.0,0,33,0.0,0.0,83.7897869133541,164.0,0.0,187.4923070430316,70,0,0,0,0,0,0,0,0,1,1.0,2,,2,106322,2,2,0,1,2,1500.0,0.0,969.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2159.64803952377,0.0,52217.30381494951,0,1,2,3,87.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.003140721332169735,52217.30381494951,10,5,10,10_0,10_3,10_0_1 -27844,2,69.0,0.0,1,111,688.0,0.0,0.0,0,75,0.0,0.0,950.9358685722402,688.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,132415,2,1,0,0,1,,0.0,463.0,11,0.0,2.0,2.0,1.0,1.0,2,2,2140.75178282548,688.0,22576.0,0,5,2,3,40.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03047484053862509,22576.0,6,3,6,6_0,6_3,6_1_0 -27845,2,30.0,0.0,1,111,600.0,370.0,0.0,0,54,0.0,0.0,829.3045365455583,970.0,0.0,671.0515733135561,43,2,2,1,2,2,2,2,1,3,20.0,2,,1,116142,2,1,0,0,2,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2140.75178282548,600.0,22606.270322417466,0,1,2,3,48.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.042908449123431974,22606.270322417466,6,3,6,6_0,6_3,6_1_0 -27846,2,72.0,0.0,1,111,249.0,74.0,0.0,0,75,0.0,0.0,344.1613826664067,323.0,0.0,134.21031466271123,41,0,0,0,0,0,0,0,0,0,,2,,1,120508,1,1,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1675.18280534659,249.0,33995.886392864515,0,5,0,1,40.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.009501149529308797,33995.886392864515,9,5,9,9_0,9_3,9_1_0 -27847,2,60.0,0.0,1,111,0.0,0.0,0.0,43,37,0.0,0.0,0.0,874.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,60.0,2,,1,115177,2,1,0,0,1,,163.0,,43,2.0,1.0,4.0,2.0,1.5,4,4,1703.66304783958,0.0,102412.85212708826,4,1,0,1,100.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.008534085145050134,68275.23475139217,10,5,10,10_0,10_3,10_1_0 -27848,2,63.0,0.0,8,111,468.0,0.0,0.0,0,74,0.0,0.0,646.8575385055356,468.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2000.0,6,103318,2,1,0,0,1,,284.0,,11,0.0,0.0,4.0,1.0,1.0,4,3,1767.19252993607,468.0,48423.53366258113,0,5,0,1,103.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009664722183660936,48423.53366258113,10,5,10,10_0,10_3,10_0_0 -27851,1,37.0,226.0,1,111,180.0,0.0,0.0,0,63,0.0,0.0,248.7913609636675,180.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,113319,2,1,0,0,2,,0.0,200.0,12,1.0,1.0,1.0,1.0,1.0,1,1,2140.75178282548,180.0,18870.13559976808,0,4,2,3,25.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.009538882169040282,18870.13559976808,5,3,5,5_0,5_3,5_1_0 -27852,2,74.0,0.0,2,111,300.0,400.0,0.0,0,75,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,,2,100052,2,2,0,0,1,,80.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1677.98394325928,300.0,26951.070677621516,0,5,0,1,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02597299411118521,26951.070677621516,7,4,7,7_0,7_3,7_0_1 -27853,2,40.0,0.0,2,111,436.0,761.0,0.0,31,42,0.0,0.0,602.6279632231058,1197.0,0.0,1380.1898575449086,12,0,0,0,0,0,0,0,0,2,20.0,2,,2,122035,2,1,0,0,1,,0.0,695.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1820.09488077458,436.0,44722.30082350186,4,1,2,3,105.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02676517035033602,21296.333725477074,6,3,6,6_0,6_3,6_0_1 -27854,2,46.0,0.0,7,111,674.0,756.0,0.0,34,31,0.0,0.0,931.5854293861772,1430.0,0.0,1371.1215930406713,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,124529,2,2,0,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1599.41013782355,674.0,135098.89921232197,1,1,1,2,135.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010584838280233553,58738.65183144434,10,5,10,10_0,10_3,10_0_0 -27855,2,53.0,0.0,1,111,247.0,431.0,0.0,0,33,0.0,0.0,341.39703421125483,678.0,0.0,781.6844002652505,10,0,0,0,0,0,0,0,0,1,15.0,2,,1,125500,1,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1963.77118927161,247.0,64931.7520206804,0,1,0,1,87.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.010441732725524807,64931.7520206804,10,5,10,10_0,10_3,10_1_0 -27856,2,27.0,0.0,1,111,480.0,0.0,0.0,0,47,0.0,0.0,663.4436292364467,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,35.0,2,,1,125513,2,2,0,0,2,,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2140.75178282548,480.0,21753.248855322767,0,1,2,3,35.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.022065669509524762,21753.248855322767,6,3,6,6_0,6_3,6_1_0 -27858,2,71.0,0.0,1,111,0.0,0.0,1264.0,0,74,0.0,0.0,645.7944552346316,1264.0,0.0,1445.0626591609262,71,0,0,0,0,0,0,0,0,0,,2,,1,118528,1,1,0,0,2,,0.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1808.88670726196,0.0,35722.55723998542,0,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03538380501452913,35722.55723998542,9,5,9,9_0,9_3,9_1_0 -27860,2,54.0,0.0,2,111,640.0,0.0,0.0,0,34,0.0,0.0,884.5915056485956,640.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,45.0,2,,2,125546,2,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1739.86382840951,640.0,44076.80265460847,0,1,0,1,64.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014520109478337682,44076.80265460847,10,5,10,10_0,10_3,10_0_1 -27861,2,27.0,0.0,6,111,0.0,0.0,0.0,81,38,0.0,0.0,0.0,1329.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,132157,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1460.46340402631,0.0,29791.22637526462,4,1,0,1,63.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.044610449508163126,19860.817583509746,5,3,5,5_0,5_3,5_0_0 -27862,2,64.0,0.0,9,111,1017.0,0.0,0.0,86,74,0.0,0.0,1405.6711894447214,1017.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2009.0,6,122109,2,1,0,0,1,,0.0,,41,0.0,3.0,6.0,3.0,2.0,2,2,1790.02641927059,1017.0,91072.56845822925,5,5,1,2,122.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01116691905385814,45536.28422911462,10,5,10,10_0,10_3,10_0_0 -27865,2,70.0,0.0,2,111,350.0,350.0,0.0,0,77,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,70,0,0,0,0,0,0,0,0,0,,2,,2,104902,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1768.3112439774,350.0,16285.692426927395,0,5,0,1,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.042982513831747976,16285.692426927395,4,2,4_0,4_0_0,4_3_0,4_0_1 -27866,0,54.0,0.0,2,111,0.0,0.0,0.0,54,34,0.0,0.0,0.0,757.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,1.0,2,,2,107800,2,1,0,1,1,,0.0,,43,2.0,3.0,4.0,3.0,2.0,1,1,1895.57509025354,0.0,80805.91795867696,1,1,5,0,80.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.00936812574033401,40402.95897933848,9,5,9,9_0,9_3,9_0_1 -27867,1,23.0,100.0,7,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,1065.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,108941,2,1,0,0,1,,0.0,610.0,22,1.0,0.0,2.0,2.0,1.5,2,2,1646.76926162674,0.0,18558.0,0,1,2,3,45.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.057387649531199486,12372.0,2,1,2_1,2_0_1,2_3_1,2_0_0 -27868,2,49.0,0.0,2,111,600.0,900.0,0.0,43,38,0.0,0.0,829.3045365455583,1500.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,101865,1,1,0,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1596.04591294763,600.0,93232.98315068238,1,1,0,1,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016088726857272306,44396.65864318208,10,5,10,10_0,10_3,10_0_1 -27869,2,30.0,0.0,2,111,420.0,0.0,0.0,0,38,0.0,0.0,580.5131755818909,420.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,129232,2,1,0,0,1,,132.0,580.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1838.15489320874,420.0,31931.560035854673,0,1,2,3,50.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01315313124471209,31931.560035854673,8,4,8,8_0,8_3,8_0_1 -27870,2,40.0,0.0,7,111,720.0,0.0,0.0,34,38,0.0,0.0,995.16544385467,720.0,0.0,0.0,33,2,2,2,1,2,2,2,2,2,30.0,2,,5,115553,2,1,0,0,1,,307.0,560.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1648.52296350924,720.0,59344.729075146715,1,1,2,3,50.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.012132501255305798,39563.152716764474,9,5,9,9_0,9_3,9_0_0 -27871,2,29.0,0.0,6,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1294.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,17.0,2,,4,125442,2,1,0,0,1,,178.0,700.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1772.77919436221,0.0,42316.11582732041,0,1,2,3,53.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030579366151667425,42316.11582732041,9,5,9,9_0,9_3,9_0_0 -27872,2,67.0,0.0,7,111,1200.0,0.0,0.0,75,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,5,113167,2,1,0,0,1,,0.0,517.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1953.04927378013,1200.0,15989.273945060646,6,5,2,3,65.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07505031211068218,10659.515963373764,2,1,2_0,2_0_0,2_3_0,2_0_0 -27874,1,28.0,50.0,7,111,349.0,0.0,0.0,0,34,0.0,0.0,482.3788054239998,349.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,5,107676,2,1,0,0,1,,0.0,378.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2500.97018118088,349.0,21816.622327713732,0,1,2,3,28.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.015996976743584367,21816.622327713732,6,3,6,6_0,6_3,6_0_0 -27875,2,50.0,0.0,1,111,1050.0,2255.0,0.0,0,34,0.0,155.27587572291867,1451.2829389547271,3455.0,0.0,4089.787291410997,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,113399,2,1,3,0,2,,371.0,,32,1.0,1.0,4.0,3.0,1.6,1,1,1430.18953076894,1050.0,44121.39079214938,0,1,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0783066883878637,27575.869245093363,7,4,7,7_1,7_3,7_1_0 -27876,1,53.0,377.0,2,111,387.0,720.0,0.0,0,46,0.0,0.0,534.9014260718851,1107.0,0.0,1305.830088610163,12,2,2,2,1,1,2,2,2,2,30.0,2,,2,100262,1,1,0,0,2,,0.0,738.0,32,2.0,1.0,5.0,2.0,1.5,1,1,1970.6986632672,387.0,28882.33213609545,0,1,2,3,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03832792984942293,19254.8880907303,5,3,5,5_0,5_3,5_0_1 -27877,2,46.0,0.0,1,111,500.0,0.0,0.0,0,54,0.0,0.0,691.0871137879653,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,105231,2,1,0,0,1,,0.0,645.0,32,1.0,0.0,5.0,2.0,1.3,2,2,1791.96149936545,500.0,22747.038284179303,0,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.021980883566180696,17497.721757061,4,2,4_0,4_0_0,4_3_0,4_1_0 -27878,2,45.0,0.0,2,111,300.0,1070.0,0.0,47,47,0.0,0.0,414.65226827277917,1370.0,0.0,1940.6086039067702,60,0,0,0,0,0,0,0,0,3,20.0,2,,2,120903,1,3,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1419.61173282571,300.0,46569.905944795944,1,1,1,2,81.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.029418139723623248,18627.96237791838,4,2,4_0,4_0_0,4_3_0,4_0_1 -27879,2,73.0,0.0,5,111,321.0,1178.0,0.0,74,74,0.0,0.0,443.6779270518737,1499.0,0.0,2136.4831171982946,20,0,0,0,0,0,0,0,0,0,,2,,3,109691,2,2,0,0,1,,0.0,,41,0.0,2.0,6.0,2.0,1.5,4,3,1631.16271634614,321.0,111096.91912083491,5,5,0,1,119.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013492723397393297,74064.61274722328,10,5,10,10_0,10_3,10_0_0 -27880,2,91.0,0.0,2,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,867.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,123060,2,1,0,0,1,,399.0,,41,0.0,4.0,3.0,2.0,1.5,3,3,2039.82717314701,0.0,22958.09208422491,5,5,2,3,70.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.037764462169560586,15305.394722816607,3,2,3_0,3_0_0,3_3_0,3_0_1 -27881,1,30.0,230.0,7,111,530.0,0.0,0.0,0,43,0.0,0.0,732.5523406152432,530.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,15.0,2,,5,116154,2,1,0,0,1,,0.0,444.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2395.41679278557,530.0,10948.079500918617,0,1,2,3,30.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.048410317074837596,10948.079500918617,2,1,2_1,2_0_1,2_3_1,2_0_0 -27882,2,24.0,0.0,1,111,0.0,0.0,0.0,53,53,0.0,0.0,0.0,649.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,108057,2,2,0,0,2,,0.0,550.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1707.37516909777,0.0,29959.785295966103,1,1,2,3,52.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.021662371528656573,19973.190197310734,5,3,5,5_0,5_3,5_1_0 -27883,2,61.0,0.0,2,111,72.0,0.0,0.0,0,75,0.0,0.0,99.516544385467,72.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,112734,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1678.24354912512,72.0,25393.247130420168,0,5,0,1,57.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.002835399491455611,25393.247130420168,7,4,7,7_0,7_3,7_0_1 -27884,1,32.0,250.0,2,111,180.0,958.0,0.0,22,52,0.0,93.1655254337512,248.7913609636675,1228.0,0.0,1737.479479011856,60,2,2,2,1,1,2,1,2,3,45.0,2,,2,110854,2,3,0,0,1,,0.0,578.0,43,2.0,2.0,2.0,2.0,1.5,1,1,1942.99223656672,180.0,15252.404132391597,4,1,2,3,54.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.08051189762223065,10168.269421594397,2,1,2_1,2_0_1,2_3_1,2_0_1 -27885,2,79.0,0.0,1,111,782.0,1799.0,0.0,72,75,0.0,248.44140115666985,1080.8602459643778,2821.0,0.0,3262.7615686245604,20,0,0,0,0,0,0,0,0,0,,1,,1,107716,2,1,2,0,2,,508.0,,41,0.0,1.0,5.0,2.0,1.5,4,2,1187.27756907154,782.0,38111.51811799564,5,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07401961767216955,25407.678745330428,7,4,7,7_1,7_3,7_1_0 -27886,2,39.0,0.0,1,111,513.0,1038.0,0.0,85,38,0.0,0.0,709.0553787464523,1551.0,0.0,1882.571711079652,43,0,0,0,0,0,0,0,0,2,40.0,1,,1,113750,2,2,2,0,1,,587.0,1030.0,42,1.0,0.0,3.0,3.0,1.8,1,1,1649.7938872293,513.0,11894.335326745802,7,1,2,3,100.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13039820699458468,6607.964070414335,1,1,1_0,1_1_0,1_3_0,1_1_0 -27887,2,63.0,0.0,1,111,217.0,945.0,0.0,0,77,0.0,0.0,299.93180738397695,1162.0,0.0,1713.9019913008392,43,0,0,0,0,0,0,0,0,0,,1,,1,118187,2,2,2,0,2,,133.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1390.37197205477,217.0,18812.118323694907,0,5,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06176869505101913,18812.118323694907,5,3,5,5_1,5_3,5_1_0 -27890,2,36.0,0.0,1,111,300.0,0.0,0.0,62,45,0.0,0.0,414.65226827277917,300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,2,,1,123281,2,3,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1839.64144230372,300.0,54001.368802580444,1,1,1,2,29.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.005555414735814336,36000.91253505363,9,5,9,9_0,9_3,9_1_0 -27891,2,65.0,0.0,2,111,204.0,276.0,0.0,78,78,0.0,0.0,281.96354242548983,480.0,0.0,500.5682006338959,71,2,1,2,1,1,2,2,2,0,,2,,2,111509,2,2,0,1,1,,0.0,406.0,41,0.0,0.0,4.0,2.0,1.5,2,2,1689.57883183194,204.0,18455.47995101461,5,5,2,3,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.026008535203312956,12303.653300676408,2,1,2_0,2_0_0,2_3_0,2_0_1 -27892,2,26.0,0.0,2,111,550.0,0.0,0.0,0,38,0.0,0.0,760.1958251667618,550.0,0.0,0.0,70,1,2,2,2,2,2,2,1,0,,2,,2,119347,2,3,0,0,1,,0.0,340.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2500.97018118088,550.0,36426.26852051981,0,1,2,3,30.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015098993730037749,36426.26852051981,9,5,9,9_0,9_3,9_0_1 -27893,2,80.0,0.0,2,111,230.0,350.0,0.0,0,77,0.0,0.0,317.900072342464,580.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,0,,2,,2,121159,1,3,0,1,2,,0.0,,21,0.0,1.0,4.0,3.0,2.0,1,1,1738.46874133227,230.0,27858.491935556478,0,5,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02081950456405473,13929.245967778239,3,2,3_0,3_0_0,3_3_0,3_0_1 -27894,2,29.0,0.0,5,111,350.0,641.0,0.0,0,34,0.0,0.0,483.76097965157567,991.0,0.0,1162.5515094432149,31,0,0,0,0,0,0,0,0,2,40.0,2,,3,113334,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,1768.3112439774,350.0,36232.440224302096,0,1,0,1,74.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02735118015416773,36232.440224302096,9,5,9,9_0,9_3,9_0_0 -27895,1,46.0,219.0,2,111,260.0,1040.0,0.0,0,35,0.0,0.0,359.36529916974195,1300.0,0.0,1886.1990168813468,50,0,0,0,0,0,0,0,0,0,,1,,2,122083,1,1,3,0,2,,186.0,472.0,12,1.0,1.0,4.0,1.0,1.0,3,3,1607.0889825665,260.0,12428.64679279847,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.10459706689494619,12428.64679279847,2,1,2_1,2_1_1,2_3_1,2_0_1 -27896,2,42.0,0.0,1,111,1000.0,2500.0,0.0,37,22,0.0,72.46207533736204,1382.1742275759307,3570.0,0.0,4534.132252118622,50,0,0,0,0,0,0,0,0,0,,1,,1,105306,1,1,2,0,2,,600.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1250.19030698417,1000.0,213027.42764850473,1,1,1,2,170.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.016758405428856326,142018.28509900314,10,5,10,10_1,10_3,10_1_0 -27897,2,38.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,573.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,107289,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,1688.9124556072,0.0,20044.186345929087,0,1,1,2,63.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028586842594205603,20044.186345929087,5,3,5,5_0,5_3,5_0_1 -27898,2,43.0,0.0,2,111,0.0,0.0,530.0,0,54,0.0,0.0,270.7840674638883,530.0,0.0,605.9202605658948,10,1,2,2,2,1,2,2,2,3,45.0,2,,2,108539,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1528.90097563539,0.0,34200.18306708397,0,1,1,2,61.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015496993070487377,34200.18306708397,9,5,9,9_0,9_3,9_0_1 -27899,0,78.0,0.0,1,111,609.0,93.0,0.0,75,74,2571.953158224997,0.0,841.7441045937417,2424.0,0.0,168.66971977881275,20,0,0,0,0,0,0,0,0,0,,1,,1,113036,2,2,2,0,1,,345.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1308.87575818424,609.0,84258.61204591059,5,5,0,1,120.0,9,7,7,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028768572625896306,56172.40803060706,10,5,10,10_1,10_3,10_1_0 -27900,2,51.0,0.0,2,111,0.0,0.0,0.0,85,34,0.0,0.0,0.0,671.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,2,,2,119109,1,1,0,1,2,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1587.94067640902,0.0,133142.74623349396,6,1,0,1,81.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0050397037689402895,88761.83082232931,10,5,10,10_0,10_3,10_0_1 -27901,1,40.0,175.0,2,111,0.0,0.0,912.0,0,52,0.0,0.0,465.9529613718228,912.0,0.0,1042.6401464832,60,2,1,2,2,1,2,2,2,3,20.0,2,,2,105723,2,2,0,0,1,614.0,0.0,343.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1554.4567389583,0.0,25834.724999624057,0,1,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03530132409047401,16146.703124765036,4,2,4_1,4_0_1,4_3_1,4_0_1 -27902,2,59.0,0.0,2,111,229.0,500.0,0.0,0,77,0.0,0.0,316.5178981148881,729.0,0.0,906.8264504237244,10,0,0,0,0,0,0,0,0,0,,2,,2,110386,1,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1678.24354912512,229.0,16900.131103511245,0,5,0,1,56.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04313576004440225,16900.131103511245,4,2,4_0,4_0_0,4_3_0,4_0_1 -27904,2,69.0,0.0,5,111,660.0,980.0,0.0,77,75,0.0,0.0,912.2349902001142,1640.0,0.0,1777.3798428305,50,0,0,0,0,0,0,0,0,0,,1,,3,133095,2,1,2,0,1,,194.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1091.69705212663,660.0,33663.43162563328,5,5,0,1,169.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048717552572721354,22442.287750422187,6,3,6,6_1,6_3,6_0_0 -27905,2,53.0,0.0,7,111,980.0,0.0,0.0,68,56,0.0,0.0,1354.530743024412,980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,103596,1,1,0,0,1,,0.0,706.0,43,2.0,4.0,4.0,3.0,1.8,3,3,1703.75050104788,980.0,12818.445500865775,4,4,2,3,84.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07645232800918095,7121.358611592097,1,1,1_0,1_0_0,1_3_0,1_0_0 -27906,2,30.0,0.0,9,111,548.0,0.0,0.0,54,52,0.0,0.0,757.43147671161,548.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,122213,2,1,0,0,1,,0.0,595.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1980.50938928437,548.0,42830.23451497148,1,1,2,3,58.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012794699963840833,28553.489676647656,8,4,8,8_0,8_3,8_0_0 -27907,2,55.0,0.0,8,111,1200.0,0.0,0.0,74,46,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2003.0,6,133005,2,1,0,0,1,,0.0,860.0,42,1.0,3.0,4.0,2.0,1.5,2,2,1895.37997543678,1200.0,48376.00002560365,5,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024805688758162803,32250.666683735766,8,4,8,8_0,8_3,8_0_0 -27908,2,26.0,0.0,8,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,282.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,2000.0,6,129540,2,1,0,0,1,,314.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1769.69579624262,0.0,20538.549773033203,0,1,2,3,43.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013730278092480591,20538.549773033203,5,3,5,5_0,5_3,5_0_0 -27909,2,61.0,0.0,9,111,720.0,0.0,0.0,74,33,0.0,0.0,995.16544385467,755.0,60.21144514665671,0.0,31,0,0,0,0,0,0,0,0,3,35.0,1,2005.0,6,116418,2,1,1,0,1,,186.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1272.01475837574,720.0,121640.79746222025,5,1,0,1,65.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006206799164026291,81093.86497481349,10,5,10,10_1,10_3,10_0_0 -27910,2,63.0,0.0,2,111,480.0,0.0,0.0,75,78,0.0,0.0,663.4436292364467,2980.0,4300.817510475479,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116038,1,2,3,0,2,,320.0,539.0,41,0.0,1.0,4.0,2.0,1.5,2,2,1493.08675023508,480.0,50257.06639365949,5,5,2,3,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05929514422226526,33504.710929106324,8,4,8,8_1,8_3,8_0_1 -27911,2,42.0,0.0,7,111,1400.0,0.0,0.0,0,62,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,116856,2,1,1,0,1,,300.0,830.0,32,1.0,0.0,4.0,3.0,1.8,1,1,1517.05942444198,1400.0,28047.43487207192,0,1,2,3,89.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049915438127785525,15581.908262262177,3,2,3_0,3_1_0,3_3_0,3_0_0 -27912,1,56.0,270.0,7,111,0.0,0.0,913.0,0,54,0.0,0.0,466.4638747066604,913.0,0.0,1043.7833922578527,43,2,2,1,1,1,2,1,2,0,,2,,5,127428,1,2,0,0,1,,0.0,438.0,12,1.0,1.0,3.0,1.0,1.0,3,1,1454.07782947174,0.0,7227.2765192612715,0,4,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.12632697774421414,7227.2765192612715,1,1,1_1,1_0_1,1_3_1,1_0_0 -27913,2,23.0,0.0,9,111,0.0,0.0,0.0,84,55,0.0,0.0,0.0,374.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,2005.0,6,106028,2,1,0,0,1,,324.0,481.0,42,1.0,0.0,2.0,2.0,1.5,3,2,1637.61414946698,0.0,19374.001445134385,3,1,2,3,40.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019304220713472018,12916.000963422923,2,1,2_0,2_0_0,2_3_0,2_0_0 -27914,2,39.0,0.0,7,111,600.0,0.0,0.0,68,62,0.0,62.110350289167464,829.3045365455583,660.0,0.0,0.0,41,2,2,2,1,1,2,2,2,2,20.0,2,,5,109671,2,2,0,0,1,,0.0,387.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1363.46313219608,600.0,31911.83203322886,1,1,2,3,55.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.020681984014981065,21274.55468881924,6,3,6,6_0,6_3,6_0_0 -27915,2,38.0,0.0,2,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,3739.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133141,2,3,4,0,2,,0.0,850.0,22,2.0,0.0,4.0,2.0,1.5,2,2,1360.22080366865,0.0,45375.57702937262,0,1,3,4,85.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0824011559694252,30250.38468624841,8,4,8,8_1,8_3,8_0_1 -27916,1,27.0,230.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2145.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,107639,2,2,0,0,1,,131.0,740.0,22,2.0,0.0,3.0,2.0,1.5,3,3,1632.68486620113,0.0,41735.92200473409,0,4,2,3,80.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.051394575630956306,27823.948003156063,7,4,7,7_0,7_3,7_0_0 -27920,1,47.0,269.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,358.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,105116,2,3,0,0,2,,0.0,375.0,31,0.0,2.0,1.0,2.0,1.5,2,2,2322.44090069858,0.0,9468.275317958238,0,7,2,3,18.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.037810476351589656,6312.183545305492,1,1,1_1,1_0_1,1_3_1,1_0_1 -27921,2,72.0,0.0,1,111,960.0,1246.0,0.0,74,74,0.0,0.0,1326.8872584728933,2206.0,0.0,2259.8115144559215,43,0,0,0,0,0,0,0,0,0,,1,,1,125211,2,1,2,0,1,,222.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1247.73196679148,960.0,123781.67306231323,5,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017821701269859814,82521.11537487549,10,5,10,10_1,10_3,10_1_0 -27922,1,28.0,140.0,5,111,720.0,1100.0,0.0,0,63,0.0,0.0,995.16544385467,1820.0,0.0,1995.0181909321939,42,0,0,0,0,0,0,0,0,0,,2,,3,105994,1,1,0,0,1,,577.0,945.0,22,2.0,0.0,4.0,3.0,2.0,4,3,2277.1762096001,720.0,9179.758096542992,0,1,2,3,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.1982623050476019,4589.879048271496,1,1,1_1,1_0_1,1_3_1,1_0_0 -27923,2,44.0,0.0,6,111,280.0,0.0,0.0,0,42,0.0,0.0,387.00878372126056,280.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,110501,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1625.4432255785,280.0,26627.313349371136,0,1,1,2,46.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010515518269762384,26627.313349371136,7,4,7,7_0,7_3,7_0_0 -27925,2,71.0,0.0,7,111,634.0,1262.0,0.0,75,74,0.0,0.0,876.29846028314,1896.0,0.0,2288.8299608694806,31,0,0,0,0,0,0,0,0,0,,1,,5,128448,2,1,2,0,1,,612.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1284.33881205601,634.0,65317.75056157832,5,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029027331524721534,43545.16704105221,10,5,10,10_1,10_3,10_0_0 -27926,1,61.0,60.0,2,111,280.0,150.0,0.0,54,52,0.0,0.0,387.00878372126056,430.0,0.0,272.04793512711734,10,0,0,0,0,0,0,0,0,1,5.0,2,,2,127258,2,2,0,1,1,650.0,0.0,380.0,43,3.0,0.0,4.0,4.0,2.5,1,1,426.380474425263,280.0,42741.39952545277,1,1,2,3,69.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.010060503511213579,17096.55981018111,4,2,4_1,4_0_1,4_3_1,4_0_1 -27927,2,25.0,0.0,5,111,1100.0,0.0,0.0,63,52,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,118328,2,1,2,0,1,,360.0,600.0,43,2.0,0.0,3.0,3.0,1.8,3,2,1511.94322439275,1100.0,32762.718797710306,1,1,2,3,80.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033574747162829356,18201.510443172392,4,2,4_0,4_1_0,4_3_0,4_0_0 -27928,2,39.0,0.0,2,111,600.0,0.0,0.0,34,38,1493.5848770180007,0.0,829.3045365455583,1730.0,223.64251054472493,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,2,122199,2,1,1,0,1,,224.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1094.63386681768,600.0,78203.74081230066,1,1,1,2,115.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02212170392401342,32584.892005125275,8,4,8,8_1,8_3,8_0_1 -27929,2,38.0,0.0,2,111,1000.0,0.0,0.0,63,52,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,130011,1,3,0,0,2,,0.0,470.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1500.28355760398,1000.0,27816.135068003132,4,1,2,3,72.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03595035750133019,18544.090045335422,4,2,4_0,4_0_0,4_3_0,4_0_1 -27930,2,55.0,0.0,5,111,303.0,759.0,0.0,52,47,0.0,0.0,418.79879095550695,1062.0,0.0,1376.5625517432138,42,0,0,0,0,0,0,0,0,2,20.0,1,,3,127065,2,1,1,0,1,,160.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1174.96168738225,303.0,79625.1053827397,1,1,0,1,98.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013337501971208811,53083.40358849313,10,5,10,10_1,10_3,10_0_0 -27931,1,44.0,49.0,8,111,360.0,0.0,0.0,0,55,0.0,0.0,497.582721927335,360.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,120125,2,1,0,0,1,,0.0,320.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2395.41679278557,360.0,18883.563299918555,0,1,2,3,30.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.019064198545703112,18883.563299918555,5,3,5,5_0,5_3,5_0_0 -27932,1,42.0,30.0,6,111,1600.0,0.0,0.0,68,63,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,127060,2,1,0,0,1,,561.0,400.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1506.36308020307,1600.0,34593.04467533642,1,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0462520722016915,14413.76861472351,3,2,3_1,3_0_1,3_3_1,3_0_0 -27933,2,64.0,0.0,1,111,1100.0,900.0,0.0,46,38,0.0,0.0,1520.3916503335236,2000.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,1,108483,1,1,1,0,1,,1350.0,,43,2.0,1.0,7.0,3.0,1.8,1,1,1327.58857777839,1100.0,137679.21181678402,1,1,0,1,181.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014526521278037899,76488.45100932446,10,5,10,10_1,10_3,10_1_0 -27934,2,42.0,0.0,9,300,554.2,0.0,0.0,21,21,1919.5552839435345,0.0,766.0009569225808,1909.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107013,2,1,1,0,1,,157.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,908.839233087691,554.2,33957.43243568719,1,1,1,2,170.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05621744234095148,16170.205921755804,4,2,4_0,4_1_0,4_0_0,4_0_0 -27935,2,53.0,0.0,1,300,971.0,0.0,0.0,75,46,0.0,0.0,1342.0911749762286,1091.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101460,2,1,1,0,2,,330.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,871.332302868924,971.0,90206.55185792258,5,1,1,2,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01209446517497255,60137.70123861505,10,5,10,10_1,10_0,10_1_0 -27936,2,67.0,0.0,1,300,150.0,0.0,0.0,0,11,0.0,0.0,207.32613413638958,360.0,361.26867087994026,0.0,12,2,2,2,2,1,2,2,2,0,,1,,1,124108,1,2,3,0,2,,104.0,,11,0.0,0.0,5.0,1.0,1.0,3,3,879.809289071868,150.0,15968.108841669371,0,5,0,1,118.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.022544936508734625,15968.108841669371,3,2,3_0,3_1_0,3_0_0,3_1_0 -27937,2,69.0,0.0,1,300,625.0,0.0,0.0,71,71,0.0,0.0,863.8588922349566,745.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132271,2,1,1,0,2,,599.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,855.135080367147,625.0,20904.272154097314,5,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03563864814369905,13936.181436064877,3,2,3_0,3_1_0,3_0_0,3_1_0 -27938,2,50.0,0.0,7,300,1700.0,0.0,0.0,52,64,0.0,258.79312620486445,2349.696186879082,1950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,111536,2,1,2,0,1,,180.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,728.608923245651,1700.0,68918.6497052149,1,1,1,2,105.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028294228171049735,22972.883235071637,6,3,6,6_1,6_0,6_0_0 -27939,2,53.0,0.0,9,300,727.0,0.0,0.0,47,22,0.0,1035.1725048194578,1004.8406634477016,1727.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,108715,2,1,1,0,1,,450.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,928.938040685901,727.0,28683.62429077522,4,1,1,2,169.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06020856996636268,19122.416193850146,5,3,5,5_1,5_0,5_0_0 -27940,2,68.0,0.0,1,400,450.0,0.0,0.0,0,78,0.0,0.0,621.9784024091688,450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119001,2,1,1,0,1,,240.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1081.98814053529,450.0,20590.675981880755,0,5,0,1,70.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021854552050451767,20590.675981880755,5,3,5,5_1,5_0,5_1_0 -27941,2,64.0,0.0,5,400,1000.0,0.0,0.0,0,75,0.0,414.0690019277831,1382.1742275759307,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121328,2,1,1,0,1,,440.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,928.64793883216,1000.0,31709.927465558383,0,5,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04415021136584449,31709.927465558383,8,4,8,8_1,8_0,8_0_0 -27942,2,55.0,0.0,2,400,463.0,0.0,0.0,0,11,1983.4807166799048,0.0,639.9466673676559,1791.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,114521,2,2,3,0,1,,185.0,,12,1.0,1.0,3.0,1.0,1.0,2,1,885.037152090151,463.0,24854.060490598655,0,1,0,1,80.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07206065989408318,24854.060490598655,7,4,7,7_1,7_0,7_0_1 -27943,2,31.0,0.0,1,400,0.0,0.0,0.0,67,62,0.0,0.0,0.0,783.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,100007,2,3,3,0,1,,505.0,,43,3.0,0.0,6.0,4.0,2.3,2,2,810.474518599879,0.0,33117.874839261094,1,1,1,2,140.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02364282140083931,14399.076017070041,3,2,3_0,3_1_0,3_0_0,3_1_0 -27944,2,40.0,0.0,6,300,700.0,0.0,0.0,42,42,0.0,517.5862524097289,967.5219593031513,1230.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,127702,2,1,3,0,1,,350.0,,43,2.0,3.0,4.0,3.0,1.8,3,2,916.934107819653,700.0,66431.0,1,1,1,2,78.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01851545212325571,36906.11111111111,9,5,9,9_1,9_0,9_0_0 -27945,2,47.0,0.0,7,300,1100.0,0.0,0.0,68,48,0.0,103.51725048194578,1520.3916503335236,1300.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,100909,2,1,4,0,1,,300.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,732.025017143592,1100.0,41149.59685525527,1,1,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03159204705146401,27433.064570170183,7,4,7,7_1,7_0,7_0_0 -27946,2,47.0,0.0,1,300,1300.0,0.0,0.0,56,52,0.0,82.81380038555662,1796.8264958487098,1430.0,86.01635020950958,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,103824,1,1,1,0,1,,70.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,931.190982754479,1300.0,45814.661852297766,1,1,1,2,170.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031212715366320674,30543.107901531843,8,4,8,8_1,8_0,8_1_0 -27947,2,73.0,0.0,1,300,400.0,0.0,0.0,0,77,2091.018827825201,0.0,552.8696910303722,1870.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124832,2,1,1,0,1,,130.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,936.75314314815,400.0,17619.230980149165,0,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10613403060024862,17619.230980149165,4,2,4_0,4_1_0,4_0_0,4_1_0 -27948,2,60.0,0.0,1,300,970.0,0.0,0.0,22,33,2987.1697540360015,569.3448776507017,1340.7090007486527,3690.0,292.4555907123326,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,107955,2,2,1,0,1,,300.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,908.745097773327,970.0,49337.33097669327,1,1,1,2,180.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.07479123671572625,32891.55398446218,8,4,8,8_1,8_0,8_1_0 -27949,0,68.0,0.0,1,300,2450.0,0.0,0.0,71,22,0.0,0.0,3386.32685756103,2650.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125849,2,1,2,0,1,,362.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1030.47447167075,2450.0,117342.63090140866,5,1,5,0,200.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022583437746734446,78228.4206009391,10,5,10,10_1,10_0,10_1_0 -27950,1,41.0,180.0,1,300,912.0,0.0,0.0,0,62,0.0,0.0,1260.5428955492487,912.0,0.0,0.0,44,1,2,2,2,1,1,2,2,2,40.0,1,,1,112981,2,2,4,0,2,,120.0,500.0,22,1.0,0.0,4.0,2.0,1.5,1,1,1078.66039600076,912.0,25259.137662212946,0,1,2,3,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.03610574565909785,16839.425108141964,4,2,4_1,4_1_1,4_0_1,4_1_0 -27951,2,51.0,0.0,2,300,1684.0,0.0,0.0,85,21,0.0,0.0,2327.581399237867,1754.0,120.42289029331342,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,119934,2,2,0,0,1,,193.0,78.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1201.21181465151,1684.0,17792.405823747544,6,1,2,3,50.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.09858138451737282,11861.603882498363,2,1,2_0,2_0_0,2_0_0,2_0_1 -27952,2,57.0,0.0,1,300,1959.0,0.0,0.0,78,52,0.0,0.0,2707.679311821248,2159.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,1,119483,2,2,3,0,1,,490.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,857.447998404132,1959.0,27661.73488132917,5,1,0,1,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07805005757094648,18441.156587552778,4,2,4_0,4_1_0,4_0_0,4_1_0 -27953,2,74.0,0.0,1,400,400.0,0.0,0.0,77,77,2240.377315527001,0.0,552.8696910303722,2040.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112635,2,1,2,0,2,,300.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,825.027169132711,400.0,20358.624467499627,5,5,0,1,70.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10020323343832205,13572.416311666419,3,2,3_0,3_1_0,3_0_0,3_1_0 -27954,2,54.0,0.0,1,400,450.0,0.0,0.0,0,64,0.0,517.5862524097289,621.9784024091688,972.0,37.84719409218422,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125573,2,1,3,0,2,,140.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,921.069085364218,450.0,26378.723050806508,0,4,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03684787918383645,26378.723050806508,7,4,7,7_1,7_0,7_1_0 -27955,2,62.0,0.0,1,400,237.5,0.0,0.0,22,46,0.0,165.62760077111324,328.2663790492835,428.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,123703,2,1,1,0,1,,973.0,,42,1.0,0.0,7.0,2.0,1.5,1,1,866.567754396935,237.5,116930.16016697738,4,5,0,1,230.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0036603045731641174,77953.44011131825,10,5,10,10_1,10_0,10_1_0 -27956,0,49.0,0.0,1,400,0.0,0.0,0.0,0,11,0.0,0.0,0.0,2174.0,232.24414556567586,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,127543,2,1,2,0,2,,520.0,,22,1.0,2.0,5.0,3.0,2.0,1,1,2049.76919563684,0.0,7091.859005924979,0,1,0,1,120.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3065486776011347,3545.9295029624896,1,1,1_0,1_1_0,1_0_0,1_1_0 -27957,2,48.0,0.0,8,400,514.0,0.0,0.0,0,46,0.0,1035.1725048194578,710.4375529740283,3004.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,106759,2,1,2,0,1,,314.0,,32,1.0,1.0,5.0,2.0,1.5,3,3,1456.02556632022,514.0,29650.845096495,0,1,1,2,121.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10131245805048235,19767.23006433,5,3,5,5_1,5_0,5_0_0 -27958,2,76.0,0.0,7,400,607.0,0.0,0.0,77,75,0.0,0.0,838.9797561385899,4107.0,6021.144514665671,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,116226,2,1,2,0,1,,276.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1429.32332477124,607.0,29728.632971414216,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13814964192767007,19819.08864760948,5,3,5,5_1,5_0,5_0_0 -27959,2,53.0,0.0,6,400,341.7,0.0,0.0,78,11,0.0,0.0,472.28893356269543,534.0,330.3027848045168,0.0,70,0,0,0,0,0,0,0,0,1,1.0,1,,4,102524,2,1,1,0,2,,260.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1640.00469432833,341.7,36093.53663261383,5,1,0,1,84.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01479489265447825,18046.768316306916,4,2,4_0,4_1_0,4_0_0,4_0_0 -27960,2,30.0,0.0,9,400,0.0,0.0,0.0,12,43,0.0,0.0,0.0,1120.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,131908,1,3,1,0,1,,215.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1828.62218583157,0.0,15781.577941134561,1,1,1,2,96.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07096882226717828,8767.543300630312,1,1,1_0,1_1_0,1_0_0,1_0_0 -27961,0,66.0,0.0,1,120,1325.0,0.0,0.0,0,77,0.0,445.1241770723668,1831.380851538108,1825.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113854,2,2,4,0,1,,409.0,,11,0.0,4.0,5.0,1.0,1.0,3,3,1843.81944957782,1325.0,12684.457953505987,0,5,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14387686148587606,12684.457953505987,2,1,2_0,2_1_0,2_0_0,2_1_0 -27962,2,37.0,0.0,9,120,1700.0,0.0,0.0,54,63,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,113818,2,1,1,0,1,,170.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1493.15944888112,1700.0,43111.192871569896,1,1,1,2,142.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03943291490598215,17962.99702982079,4,2,4_0,4_1_0,4_0_0,4_0_0 -27963,2,64.0,0.0,5,120,502.0,0.0,0.0,78,77,373.3962192545002,496.8828023133397,693.8514622431171,1424.0,330.3027848045168,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109752,2,2,3,0,2,,526.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1564.23777468486,502.0,28677.583172340142,5,5,0,1,83.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04965550937268188,19118.388781560094,5,3,5,5_1,5_0,5_0_0 -27964,2,43.0,0.0,9,120,1800.0,0.0,0.0,0,64,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,105347,2,1,1,0,1,,364.0,,32,1.0,2.0,4.0,3.0,1.6,2,2,1840.02413262901,1800.0,19713.581251759,0,1,1,2,98.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09130761057630714,12320.988282349374,2,1,2_0,2_1_0,2_0_0,2_0_0 -27966,2,63.0,0.0,5,120,385.0,0.0,0.0,75,75,2561.498064085871,0.0,532.1370776167332,2100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,120017,2,2,2,0,1,,275.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1621.9025810349,385.0,71589.16734781412,5,5,0,1,110.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029334047004586663,47726.11156520941,10,5,10,10_1,10_0,10_0_0 -27967,2,39.0,0.0,9,120,2150.0,0.0,0.0,54,54,0.0,0.0,2971.674589288251,2150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,117261,2,2,1,0,1,,308.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1706.81828973764,2150.0,46827.4227954439,1,1,1,2,131.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045913267731855306,22298.772759735188,6,3,6,6_1,6_0,6_0_0 -27968,2,49.0,0.0,7,120,900.0,0.0,0.0,85,62,3733.962192545002,0.0,1243.9568048183376,3400.0,0.0,0.0,41,2,2,2,2,1,2,2,2,2,20.0,1,,5,120781,2,2,3,0,1,,500.0,,42,1.0,0.0,6.0,5.0,2.8,3,3,1481.68434237105,900.0,47680.12284587593,6,1,0,1,160.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.07130854110821741,17028.615302098548,4,2,4_0,4_1_0,4_0_0,4_0_0 -27969,2,50.0,0.0,1,221,1158.0,0.0,0.0,0,56,0.0,0.0,1600.5577555329276,1204.0,79.13504219274881,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,113524,2,1,2,0,1,,204.0,405.0,32,1.0,4.0,3.0,2.0,1.3,2,2,1993.28066636366,1158.0,22830.907361205183,0,1,2,3,70.0,1,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05273552999675629,17562.236431696296,4,2,4_0,4_1_0,4_1_0,4_1_0 -27970,0,91.0,0.0,2,221,528.0,342.0,0.0,78,75,3630.9048360307597,0.0,729.7879921600913,3301.0,0.0,620.2692920898276,71,0,0,0,0,0,0,0,0,0,,1,,2,125830,1,2,5,0,2,,327.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1870.50165352201,528.0,33745.01408336755,5,5,0,1,90.0,1,1,7,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09782185871503363,22496.676055578366,6,3,6,6_1,6_1,6_0_1 -27971,2,64.0,0.0,1,221,600.0,0.0,0.0,0,77,0.0,165.62760077111324,829.3045365455583,760.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,129496,2,1,1,0,1,,297.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1826.93671698713,600.0,13160.390724793735,0,5,0,1,80.0,1,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05774904528998409,13160.390724793735,2,1,2_0,2_1_0,2_1_0,2_1_0 -27972,2,62.0,0.0,6,221,500.0,0.0,0.0,67,78,0.0,310.55175144583734,691.0871137879653,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124955,2,1,2,0,1,,270.0,,42,1.0,3.0,4.0,2.0,1.5,3,3,1626.3493654158,500.0,30913.761383549157,4,5,0,1,80.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02587844261571231,20609.17425569944,5,3,5,5_1,5_1,5_0_0 -27973,0,35.0,0.0,7,221,1553.0,825.0,0.0,85,37,0.0,0.0,2146.5165754254203,2378.0,0.0,1496.2636431991452,33,0,0,0,0,0,0,0,0,0,,1,,5,116082,2,3,3,0,1,,1100.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,1552.34445285583,1553.0,34800.512864677854,6,4,0,1,160.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06833232628630724,16571.67279270374,4,2,4_0,4_1_0,4_1_0,4_0_0 -27974,2,58.0,0.0,7,221,1188.0,0.0,0.0,0,74,0.0,632.4904004446887,1642.0229823602056,1799.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,109112,2,1,2,0,1,,305.0,,11,0.0,3.0,8.0,1.0,1.0,2,2,2075.26526524228,1188.0,56055.99969069219,0,5,0,1,170.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03209290726999049,56055.99969069219,10,5,10,10_1,10_1,10_0_0 -27975,2,67.0,0.0,6,221,1300.0,0.0,0.0,75,74,0.0,258.79312620486445,1796.8264958487098,1650.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121227,1,3,3,0,1,,180.0,760.0,41,0.0,2.0,4.0,2.0,1.5,2,2,2076.95368152367,1300.0,37882.73225365591,7,5,2,3,100.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04355546450429972,25255.154835770605,7,4,7,7_1,7_1,7_0_0 -27976,2,70.0,0.0,6,221,1527.0,0.0,0.0,75,75,0.0,0.0,2110.580045508446,1707.0,309.6588607542345,0.0,30,1,2,2,2,1,2,2,2,0,,1,,4,132525,1,2,3,0,1,,439.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1688.49954517571,1527.0,47672.17699773762,5,5,0,1,123.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.035807049467890026,31781.45133182508,8,4,8,8_1,8_1,8_0_0 -27977,2,30.0,0.0,5,221,2000.0,0.0,0.0,55,22,0.0,0.0,2764.3484551518613,2060.0,103.2196202514115,0.0,50,1,2,2,1,1,2,2,2,0,,1,,3,119771,1,2,3,0,2,,678.0,609.0,43,2.0,0.0,4.0,3.0,1.8,1,1,2220.32673517993,2000.0,30975.09245055492,1,1,2,3,110.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.06650504766978008,17208.38469475273,4,2,4_0,4_1_0,4_1_0,4_0_0 -27978,1,56.0,80.0,9,221,605.0,0.0,0.0,52,42,0.0,248.44140115666985,836.215407683438,995.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,124516,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,4.0,2.5,1,1,1776.34040137255,605.0,27192.563203446756,1,1,1,2,86.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03659088672721666,10877.025281378703,2,1,2_1,2_1_1,2_1_1,2_0_0 -27979,2,65.0,0.0,5,221,640.0,0.0,0.0,77,71,0.0,0.0,884.5915056485956,820.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107085,2,1,2,0,1,,100.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1483.74713598755,640.0,21762.486548579436,5,5,0,1,79.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03767951783310929,14508.324365719624,3,2,3_0,3_1_0,3_1_0,3_0_0 -27980,2,72.0,0.0,1,300,618.0,0.0,0.0,22,22,0.0,0.0,854.1836726419251,2138.0,301.05722573328353,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131951,2,1,4,0,2,,200.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1553.98675451896,618.0,12012.094381400068,1,1,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1779872794964508,8008.062920933378,1,1,1_0,1_1_0,1_0_0,1_1_0 -27982,2,45.0,0.0,7,300,2697.0,0.0,0.0,62,43,0.0,0.0,3727.723891772285,2697.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,104361,2,1,2,0,1,,192.0,,43,2.0,4.0,5.0,4.0,2.3,1,1,1436.25284837547,2697.0,49694.077845475396,1,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05427206051365655,21606.12080238061,6,3,6,6_1,6_0,6_0_0 -27983,2,35.0,0.0,1,300,1595.0,0.0,0.0,47,47,0.0,0.0,2204.5678929836095,1665.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,126592,2,1,1,0,1,,240.0,,43,2.0,0.0,6.0,5.0,2.4,2,1,1481.68434237105,1595.0,57615.18545325591,1,1,1,2,170.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028898631270584736,24006.327272189963,6,3,6,6_1,6_0,6_1_0 -27984,2,90.0,0.0,1,300,2255.0,0.0,0.0,72,72,0.0,0.0,3116.802883183723,2375.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131057,2,1,2,0,1,,290.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1739.5729937344,2255.0,24862.387062835987,5,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09552582356623845,16574.924708557326,4,2,4_0,4_1_0,4_0_0,4_1_0 -27985,2,86.0,0.0,1,211,451.0,0.0,0.0,86,86,7820.410416066252,0.0,623.3605766367447,5687.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106555,2,2,2,0,2,,296.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1419.11082043707,451.0,68300.47612800017,6,5,0,1,120.0,3,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08326442687371811,45533.65075200011,10,5,10,10_1,10_1,10_1_0 -27986,2,53.0,0.0,2,211,900.0,0.0,0.0,0,22,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,2.0,2,,2,121201,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,3,1,1958.41287630896,900.0,20106.131093998712,0,1,0,1,64.0,3,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04476246552817078,20106.131093998712,5,3,5,5_0,5_1,5_0_1 -27987,2,75.0,0.0,2,211,0.0,0.0,0.0,77,78,0.0,0.0,0.0,997.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,119438,2,2,0,0,2,,600.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,1724.24880733776,0.0,26423.804360224385,5,5,0,1,70.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03773113009801037,17615.869573482923,4,2,4_0,4_0_0,4_1_0,4_0_1 -27988,2,58.0,0.0,2,211,115.0,266.0,0.0,0,34,0.0,0.0,158.950036171232,381.0,0.0,482.4316716254214,71,0,0,0,0,0,0,0,0,1,7.0,2,,2,115851,1,2,0,0,2,,37.0,340.0,12,1.0,1.0,2.0,1.0,1.0,2,1,2125.41240986997,115.0,15083.927013815533,0,1,2,3,50.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025258674326058324,15083.927013815533,3,2,3_0,3_0_0,3_1_0,3_0_1 -27989,2,82.0,0.0,2,211,371.0,2415.0,0.0,86,75,0.0,0.0,512.7866384306702,2786.0,0.0,4379.9717555465895,71,0,0,0,0,0,0,0,0,0,,1,,2,121637,2,2,1,0,2,,250.0,,41,0.0,0.0,9.0,2.0,1.5,3,3,1337.19349493388,371.0,24206.18173426484,5,5,0,1,190.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11509456677573825,16137.454489509893,4,2,4_0,4_1_0,4_1_0,4_0_1 -27990,2,52.0,0.0,1,211,240.0,1293.0,0.0,0,54,0.0,165.62760077111324,331.72181461822333,1693.0,0.0,2345.0532007957513,41,2,2,2,1,1,2,2,2,0,,1,,1,127518,2,3,2,0,1,,130.0,,12,1.0,1.0,5.0,1.0,1.0,3,3,1345.75345569709,240.0,14498.69975514178,0,4,0,1,80.0,3,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.11676909161454971,14498.69975514178,3,2,3_0,3_1_0,3_1_0,3_1_0 -27992,1,55.0,100.0,2,211,0.0,0.0,53.0,56,63,0.0,0.0,27.07840674638883,53.0,0.0,60.592026056589475,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,121325,1,2,0,1,2,,300.0,486.0,43,2.0,0.0,4.0,2.0,1.5,4,4,1985.76285991429,0.0,10417.909324049042,1,1,2,3,65.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.005087393098887227,6945.272882699362,1,1,1_1,1_0_1,1_1_1,1_0_1 -27993,2,77.0,0.0,2,211,350.0,1400.0,0.0,77,72,0.0,0.0,483.76097965157567,1750.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,1,,2,101319,2,1,2,0,1,,217.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,1304.58137464125,350.0,16016.027865044955,5,5,0,1,90.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.109265544162756,10677.351910029969,2,1,2_0,2_1_0,2_1_0,2_0_1 -27994,2,67.0,0.0,5,211,485.0,0.0,0.0,0,75,4391.139538432922,0.0,670.3545003743263,3545.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130925,2,1,3,0,2,,245.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1313.56502491536,485.0,38221.73390598875,0,5,0,1,100.0,3,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0927482779488597,38221.73390598875,9,5,9,9_1,9_1,9_0_0 -27995,2,69.0,0.0,1,211,700.0,0.0,0.0,90,90,0.0,414.0690019277831,967.5219593031513,1460.0,619.317721508469,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126219,2,2,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1332.16812389455,700.0,27979.98838122374,5,5,0,1,70.0,3,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05218015033128992,18653.325587482494,4,2,4_0,4_1_0,4_1_0,4_1_0 -27996,2,58.0,0.0,6,211,849.0,1416.0,0.0,54,64,0.0,0.0,1173.465919211965,2265.0,0.0,2568.1325075999875,50,2,2,1,2,2,2,2,1,1,3.0,1,,4,114261,2,1,2,0,2,,460.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1273.95155015031,849.0,28687.022126413267,4,1,0,1,160.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.07895556360011748,19124.681417608845,5,3,5,5_1,5_1,5_0_0 -27997,0,67.0,0.0,2,211,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1129.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,2,124209,2,2,0,0,1,,93.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,2043.54340478481,0.0,14381.024687081492,0,5,0,1,65.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.07850622779433675,14381.024687081492,3,2,3_0,3_0_0,3_1_0,3_0_1 -27998,2,65.0,0.0,6,211,602.0,0.0,0.0,0,77,0.0,62.110350289167464,832.0688850007102,817.0,266.6506856494797,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126106,2,1,1,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1513.7474974799,602.0,20438.763434559834,0,6,0,1,92.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03997306405624019,20438.763434559834,5,3,5,5_1,5_1,5_0_0 -27999,1,23.0,351.0,2,211,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1155.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,111126,2,1,2,0,1,,269.0,451.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1436.00594537888,0.0,16835.4555470617,0,1,2,3,60.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06860521218278424,12950.350420816692,2,1,2_1,2_1_1,2_1_1,2_0_1 -28000,1,28.0,277.0,6,211,863.0,0.0,0.0,0,55,0.0,0.0,1192.8163583980281,863.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,130602,1,1,0,0,1,,222.0,426.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1634.79121341496,863.0,11811.311926605504,0,4,2,3,70.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0730655498189032,9085.62455892731,1,1,1_1,1_0_1,1_1_1,1_0_0 -28001,2,54.0,0.0,2,211,195.0,560.0,0.0,0,34,0.0,0.0,269.52397437730644,755.0,0.0,1015.6456244745714,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,131153,2,2,0,0,2,,179.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1926.2464395119,195.0,29776.455797522623,0,1,0,1,75.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02535560327038033,29776.455797522623,8,4,8,8_0,8_1,8_0_1 -28002,1,62.0,254.0,2,211,356.0,57.0,0.0,0,52,0.0,0.0,492.0540250170313,413.0,0.0,103.3782153483046,20,1,2,2,1,2,2,2,2,2,13.0,2,,2,100036,2,1,0,1,1,484.0,48.0,275.0,12,1.0,3.0,3.0,1.0,1.0,3,3,1606.04124616725,356.0,9262.474663888894,0,1,2,3,60.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04458851602694695,9262.474663888894,1,1,1_1,1_0_1,1_1_1,1_0_1 -28003,1,60.0,254.0,6,211,110.0,0.0,0.0,0,86,0.0,0.0,152.03916503335236,643.0,0.0,0.0,10,2,2,2,2,2,2,2,1,0,,2,,4,111496,2,2,0,0,1,,182.0,56.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1866.92493976529,110.0,6230.245746691871,0,7,2,3,40.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.10320620183263547,6230.245746691871,1,1,1_1,1_0_1,1_1_1,1_0_0 -28004,2,61.0,0.0,6,211,600.0,850.0,0.0,43,34,0.0,207.03450096389156,829.3045365455583,1650.0,0.0,1541.6049657203316,71,1,2,2,1,2,2,2,2,2,20.0,1,,4,113893,2,1,3,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,1254.31183539981,600.0,164818.3114708302,1,1,0,1,135.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.010011023564526806,109878.8743138868,10,5,10,10_1,10_1,10_0_0 -28005,2,80.0,0.0,8,211,0.0,0.0,0.0,0,78,0.0,471.0034896928533,0.0,1168.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,103712,1,1,1,0,1,,90.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1573.9921509941,0.0,13843.980404667569,0,5,0,1,90.0,3,3,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08436879899123541,13843.980404667569,3,2,3_0,3_1_0,3_1_0,3_0_0 -28006,2,76.0,0.0,1,111,1260.0,0.0,0.0,78,77,0.0,0.0,1741.5395267456724,1356.0,165.1513924022584,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,116895,2,1,4,0,1,,288.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1363.14723191356,1260.0,28021.961319241833,5,5,0,1,120.0,7,5,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0483906170789293,18681.30754616122,4,2,4_0,4_1_0,4_2_0,4_1_0 -28008,1,50.0,250.0,2,111,280.0,720.0,0.0,0,85,0.0,0.0,387.00878372126056,1000.0,0.0,1305.830088610163,71,2,2,2,2,1,2,2,2,0,,8,,2,133475,2,2,0,0,1,,300.0,350.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1740.24755028435,280.0,6100.258610049672,0,7,2,3,52.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.16392747650937006,6100.258610049672,1,1,1_1,1_0_1,1_2_1,1_0_1 -28009,0,43.0,0.0,1,111,710.0,1005.0,0.0,54,38,0.0,0.0,981.3437015789107,1715.0,0.0,1822.721165351686,71,0,0,0,0,0,0,0,0,2,12.0,1,,1,110607,2,3,4,0,1,,510.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,1342.10938047935,710.0,64137.05123344847,1,1,5,0,90.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02673961410788404,27885.674449325423,7,4,7,7_1,7_2,7_1_0 -28010,2,80.0,0.0,2,111,1500.0,0.0,0.0,0,75,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,128050,2,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,3,2,2036.56165837444,1500.0,18499.465185643563,0,5,0,1,38.0,7,5,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08108342511242266,18499.465185643563,4,2,4_0,4_0_0,4_2_0,4_0_1 -28012,2,34.0,0.0,5,111,340.0,0.0,0.0,0,38,0.0,0.0,469.9392373758164,340.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,3,116606,2,1,0,0,1,,101.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1882.78316046102,340.0,30833.750608233488,0,1,1,2,67.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011026877797643286,30833.750608233488,8,4,8,8_0,8_2,8_0_0 -28014,1,21.0,200.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,126075,2,2,0,0,1,,27.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2143.42024126829,0.0,15955.228306511486,0,1,2,3,41.0,7,5,7,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07395694861467011,15955.228306511486,3,2,3_1,3_0_1,3_2_1,3_1_0 -28015,2,59.0,0.0,1,111,126.0,801.6,0.0,0,22,0.0,0.0,174.15395267456725,928.0,0.0,1453.8241653193152,41,0,0,0,0,0,0,0,0,0,,1,,1,103286,1,1,4,0,2,,0.0,325.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1645.23573660121,126.0,5524.234974630284,0,1,2,3,75.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1679870614233073,5524.234974630284,1,1,1_0,1_1_0,1_2_0,1_1_0 -28016,2,45.0,0.0,7,111,0.0,0.0,806.0,0,52,0.0,0.0,411.7961478790452,806.0,0.0,921.456094370021,70,0,0,0,0,0,0,0,0,2,10.0,2,,5,120822,2,3,0,0,1,,0.0,393.0,32,1.0,0.0,3.0,2.0,1.5,1,1,1639.46673866546,0.0,17645.53841390391,0,1,2,3,72.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0456772687290124,11763.692275935939,2,1,2_0,2_0_0,2_2_0,2_0_0 -28018,2,56.0,0.0,1,111,247.5,637.2,0.0,43,34,0.0,0.0,342.08812132504283,885.0,0.0,1155.6596284199945,71,0,0,0,0,0,0,0,0,4,45.0,1,,1,115061,2,2,3,0,1,,180.0,,43,2.0,0.0,5.0,2.0,1.5,3,2,1421.75604483795,247.5,65912.3305111493,1,1,0,1,100.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01342692623879077,43941.55367409953,10,5,10,10_1,10_2,10_1_0 -28019,1,21.0,179.0,2,111,120.0,300.0,0.0,0,38,0.0,0.0,165.86090730911167,420.0,0.0,544.0958702542347,71,1,2,2,2,1,1,2,2,2,10.0,2,,2,120369,2,3,0,0,1,,0.0,508.0,22,2.0,0.0,3.0,2.0,1.5,2,1,1858.66830198607,120.0,18566.37766316082,0,2,2,3,74.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.02262153703968647,12377.58510877388,2,1,2_1,2_0_1,2_2_1,2_0_1 -28020,2,60.0,0.0,5,111,1500.0,0.0,0.0,77,52,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,121654,2,3,0,0,1,,364.0,,42,1.0,3.0,6.0,2.0,1.5,3,3,1784.03701204457,1500.0,47084.13979987734,5,1,0,1,99.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031857861402490945,31389.42653325156,8,4,8,8_0,8_2,8_0_0 -28021,1,31.0,254.0,2,111,0.0,0.0,520.0,0,55,0.0,0.0,265.67493411551305,760.0,412.878481005646,594.4878028193683,43,2,2,2,1,1,2,2,2,0,,2,,2,106424,1,2,0,0,1,,400.0,320.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1818.49582882532,0.0,12361.348433633115,0,4,2,3,60.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.06148196566744854,12361.348433633115,2,1,2_1,2_0_1,2_2_1,2_0_1 -28022,2,73.0,0.0,9,111,384.0,684.0,0.0,0,77,0.0,0.0,530.7549033891573,1068.0,0.0,1240.5385841796551,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,106665,2,1,0,0,1,,161.0,405.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1862.44855264571,384.0,33533.8556532055,0,5,2,3,71.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031848410485357054,33533.8556532055,8,4,8,8_0,8_2,8_0_0 -28023,1,43.0,240.0,2,111,275.0,550.0,0.0,0,85,0.0,0.0,380.0979125833809,825.0,0.0,997.5090954660969,50,2,2,2,1,2,2,2,2,0,,2,,2,117304,2,3,0,0,1,,135.0,340.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2023.42060762443,275.0,9382.332864296453,0,7,2,3,87.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.08793122264287345,9382.332864296453,1,1,1_1,1_0_1,1_2_1,1_0_1 -28024,2,98.0,0.0,2,111,1890.0,0.0,0.0,0,86,0.0,0.0,2612.3092901185087,2285.0,679.5291666551257,0.0,71,2,2,2,2,1,1,2,2,0,,1,,2,123850,1,3,2,0,2,,25.0,0.0,11,0.0,2.0,3.0,1.0,1.0,4,4,1673.83671862301,1890.0,21462.850540942476,0,6,2,3,70.0,7,5,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.10646302529298893,21462.850540942476,6,3,6,6_1,6_2,6_0_1 -28025,2,63.0,0.0,2,111,307.0,834.0,0.0,0,53,0.0,0.0,424.32748786581067,1141.0,0.0,1512.5865193067723,50,0,0,0,0,0,0,0,0,4,15.0,2,,2,124622,2,1,0,0,1,,0.0,450.0,12,1.0,3.0,3.0,1.0,1.0,3,3,2322.23128411592,307.0,32151.7589734058,0,1,2,3,55.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.035487949537808296,32151.7589734058,8,4,8,8_0,8_2,8_0_1 -28026,0,84.0,0.0,1,300,240.0,0.0,0.0,71,71,2213.492787740677,103.51725048194578,331.72181461822333,1922.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129619,1,1,4,0,2,,129.0,,41,0.0,0.0,7.0,2.0,1.5,2,1,1755.66147215536,240.0,18719.702642913064,5,5,0,1,200.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10267257106926503,12479.801761942043,2,1,2_0,2_1_0,2_0_0,2_1_0 -28027,0,81.0,0.0,5,111,1757.0,0.0,0.0,0,77,0.0,0.0,2428.48011785091,1837.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,109054,2,2,2,0,1,,131.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1604.55944431925,1757.0,14345.970674193524,0,5,0,1,85.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12804989231607147,14345.970674193524,3,2,3_0,3_1_0,3_2_0,3_0_0 -28028,2,31.0,0.0,8,111,1000.0,0.0,0.0,55,54,0.0,0.0,1382.1742275759307,1035.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,107391,2,1,2,0,1,,150.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1270.21723407751,1000.0,47995.71927589694,1,1,1,2,97.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02156442315304083,22855.10441709378,6,3,6,6_1,6_2,6_0_0 -28029,2,56.0,0.0,1,111,474.0,0.0,0.0,0,56,2046.2112815146609,0.0,655.1505838709911,1899.0,94.61798523046055,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,131795,2,1,2,0,2,,149.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1435.55974461538,474.0,17144.82792484212,0,1,0,1,100.0,6,5,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11076226651703108,17144.82792484212,4,2,4_0,4_1_0,4_2_0,4_1_0 -28030,2,72.0,0.0,5,111,900.0,0.0,0.0,0,75,0.0,0.0,1243.9568048183376,1050.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,115771,2,1,3,0,1,,116.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1497.35478730584,900.0,25707.709384346985,0,5,0,1,100.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04084377897314057,25707.709384346985,7,4,7,7_1,7_2,7_0_0 -28031,2,66.0,0.0,6,111,1250.0,0.0,0.0,78,74,0.0,82.81380038555662,1727.717784469913,1330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129955,2,1,3,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1325.16883519658,1250.0,49385.51232585332,5,5,0,1,95.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0269309750443501,32923.67488390221,8,4,8,8_1,8_2,8_0_0 -28032,2,60.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,175.97932581930783,0.0,1182.0,53.330137129895945,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,112310,2,1,1,0,1,,203.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1403.24776213387,0.0,12250.01795770831,0,6,0,1,90.0,6,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09648965447076979,12250.01795770831,2,1,2_0,2_1_0,2_2_0,2_0_0 -28033,2,70.0,0.0,5,111,350.0,0.0,0.0,0,78,1941.6603401234008,0.0,483.76097965157567,1650.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,100277,2,1,1,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1481.1085699587,350.0,18458.052626529214,0,5,0,1,86.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08939187862258577,18458.052626529214,4,2,4_0,4_1_0,4_2_0,4_0_0 -28034,2,71.0,0.0,8,111,1140.0,0.0,0.0,74,74,0.0,124.22070057833493,1575.678619436561,1410.0,258.04905062852873,0.0,43,0,0,0,0,0,0,0,0,0,,1,2001.0,6,132684,2,1,3,0,1,,261.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1373.38784690477,1140.0,78753.90846526672,5,5,0,1,108.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01790387331216533,52502.605643511146,10,5,10,10_1,10_2,10_0_0 -28035,2,65.0,0.0,5,111,458.0,0.0,0.0,31,31,0.0,0.0,633.0357962297762,2318.0,3199.8082277937565,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,128858,2,1,1,0,1,,630.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,1294.89743907252,458.0,235751.25724444108,1,1,0,1,183.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009832397193099836,157167.50482962737,10,5,10,10_1,10_2,10_0_0 -28036,2,41.0,0.0,9,111,970.0,0.0,0.0,54,21,1792.3018524216009,0.0,1340.7090007486527,2170.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,104925,2,1,1,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1318.71455063291,970.0,40554.41749967092,1,1,1,2,192.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0535083508477864,19311.627380795675,5,3,5,5_1,5_2,5_0_0 -28037,2,67.0,0.0,2,111,509.0,0.0,0.0,74,77,1167.9833738280765,310.55175144583734,703.5266818361487,1711.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124110,2,2,3,0,1,,97.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1387.28238561608,509.0,37021.168931772394,5,5,0,1,109.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04621680107273927,24680.77928784826,7,4,7,7_1,7_2,7_0_1 -28038,0,74.0,0.0,2,111,413.0,0.0,0.0,72,78,1571.2512906229367,0.0,570.8379559888593,1585.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119923,2,1,2,0,1,,204.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1289.99786936895,413.0,25738.174355020874,5,5,0,1,180.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061581679342801024,17158.782903347248,4,2,4_0,4_1_0,4_2_0,4_0_1 -28039,1,54.0,170.0,8,111,600.0,0.0,0.0,0,52,0.0,372.6621017350048,829.3045365455583,1060.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,117131,2,1,1,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,5,3,1501.29714723231,600.0,16912.85834085824,0,1,1,2,100.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06267420790956678,16912.85834085824,4,2,4_1,4_1_1,4_2_1,4_0_0 -28040,2,59.0,0.0,5,111,1300.0,0.0,0.0,74,38,0.0,362.31037668681023,1796.8264958487098,1700.0,86.01635020950958,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,119196,2,1,3,0,1,,400.0,,42,1.0,2.0,7.0,2.0,1.5,1,1,1369.56283035843,1300.0,76636.1789617181,5,1,0,1,145.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02218273435643493,51090.785974478735,10,5,10,10_1,10_2,10_0_0 -28041,2,44.0,0.0,7,111,1500.0,0.0,0.0,45,68,0.0,0.0,2073.261341363896,1600.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,111030,2,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1259.67013910871,1500.0,50644.13635712828,1,1,0,1,147.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031592996052242805,24116.25540815632,6,3,6,6_1,6_2,6_0_0 -28042,2,76.0,0.0,2,111,937.0,0.0,0.0,75,31,4480.754631054002,0.0,1295.097251238647,3937.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113149,2,1,2,0,1,,431.0,,41,0.0,4.0,7.0,2.0,1.5,1,1,1369.56283035843,937.0,93734.64319415367,5,5,0,1,300.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.042001546769055764,62489.76212943578,10,5,10,10_1,10_2,10_0_1 -28043,2,35.0,0.0,2,111,1627.0,0.0,0.0,62,55,2240.377315527001,0.0,2248.7974682660392,3127.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,122282,1,1,2,0,2,,326.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1247.29176140472,1627.0,40425.234500844184,1,1,0,1,85.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07735267435331018,17576.188913410515,4,2,4_0,4_1_0,4_2_0,4_0_1 -28044,1,55.0,140.0,6,111,0.0,0.0,0.0,31,55,0.0,0.0,0.0,2543.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,130566,2,1,3,0,1,,489.0,650.0,43,2.0,1.0,4.0,2.0,1.5,1,1,1496.6578261743,0.0,26199.801768219637,4,1,2,3,84.0,6,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09706180308145153,17466.534512146423,4,2,4_1,4_1_1,4_2_1,4_0_0 -28046,2,48.0,0.0,8,111,2200.0,0.0,0.0,63,43,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,128041,2,1,1,0,1,,354.0,,43,2.0,1.0,6.0,4.0,2.5,2,2,1266.65731460226,2200.0,75385.81749971579,1,1,1,2,144.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029183208101554302,30154.326999886318,8,4,8,8_1,8_2,8_0_0 -28047,0,91.0,0.0,2,111,400.0,0.0,0.0,0,72,1792.3018524216009,0.0,552.8696910303722,1680.0,137.62616033521533,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,103093,2,1,2,0,1,,80.0,,11,0.0,1.0,4.0,1.0,1.0,2,1,1576.38186616698,400.0,19501.679098188015,0,5,0,1,70.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08614642829171033,19501.679098188015,5,3,5,5_1,5_2,5_0_1 -28048,2,52.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,3086.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131027,2,1,3,0,1,,222.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,1448.44099992428,0.0,15408.507728398778,0,4,1,2,200.0,6,5,7,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.20027896629550454,15408.507728398778,3,2,3_0,3_1_0,3_2_0,3_1_0 -28049,2,72.0,0.0,2,111,550.0,0.0,0.0,77,78,970.8301700617004,0.0,760.1958251667618,1300.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130886,1,3,3,0,2,,180.0,547.0,41,0.0,2.0,5.0,2.0,1.5,1,1,1542.00929821276,550.0,19669.23635352677,5,5,2,3,120.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06609305906108068,13112.824235684513,2,1,2_0,2_1_0,2_2_0,2_0_1 -28050,2,86.0,0.0,2,111,381.0,0.0,0.0,0,77,1807.2377011917808,0.0,526.6083807064296,1591.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,112959,2,1,2,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1454.08293366605,381.0,14765.48206255053,0,5,0,1,80.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10775130762816267,14765.48206255053,3,2,3_0,3_1_0,3_2_0,3_0_1 -28051,1,32.0,166.0,9,111,960.0,0.0,0.0,0,56,0.0,41.40690019277831,1326.8872584728933,1000.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,2006.0,6,117030,2,1,1,0,1,,190.0,520.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1613.07493366315,960.0,17489.448621979056,0,1,2,3,65.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.05717733140788076,13453.422016906965,3,2,3_1,3_1_1,3_2_1,3_0_0 -28052,2,56.0,0.0,5,111,788.0,0.0,0.0,75,52,0.0,186.3310508675024,1089.1532913298333,2576.0,2766.2858227378283,0.0,31,0,0,0,0,0,0,0,0,2,12.0,1,,3,128778,2,1,3,0,2,,135.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1302.22852504023,788.0,49273.0,5,1,0,1,130.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05228015343088507,32848.666666666664,8,4,8,8_1,8_2,8_0_0 -28053,2,53.0,0.0,2,111,0.0,0.0,0.0,21,45,6721.131946581003,144.92415067472407,0.0,5387.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,126736,1,1,3,0,1,,505.0,654.0,43,2.0,1.0,5.0,3.0,2.0,1,1,1743.13908347896,0.0,38712.00017546659,1,1,2,3,250.0,6,5,7,1,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1391558166868879,19356.000087733293,5,3,5,5_1,5_2,5_0_1 -28054,1,31.0,344.0,1,400,754.0,0.0,0.0,22,22,0.0,207.03450096389156,1042.1593675922516,1134.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110730,2,1,2,0,1,,386.0,500.0,43,2.0,0.0,6.0,3.0,1.8,1,1,1959.16045486239,754.0,5968.569439941666,1,1,2,3,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.1899952763238829,3315.8719110787033,1,1,1_1,1_1_1,1_0_1,1_1_0 -28056,2,74.0,0.0,1,400,2500.0,0.0,0.0,72,74,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101480,2,1,1,0,1,,220.0,,41,0.0,3.0,3.0,2.0,1.5,4,4,1573.33556233693,2500.0,78247.05330441931,5,5,0,1,87.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03195008494791206,52164.70220294621,10,5,10,10_1,10_0,10_1_0 -28057,2,43.0,0.0,1,400,1100.0,0.0,0.0,43,23,0.0,0.0,1520.3916503335236,2700.0,2752.5232067043066,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,100390,2,2,2,0,1,,390.0,,43,2.0,0.0,6.0,4.0,2.1,4,4,1482.75705899427,1100.0,57549.45623780042,1,1,0,1,190.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04691616874438075,27404.502970381152,7,4,7,7_1,7_0,7_1_0 -28058,2,56.0,0.0,1,221,311.0,848.0,0.0,0,35,0.0,0.0,429.8561847761144,1159.0,0.0,1537.9776599186366,71,0,0,0,0,0,0,0,0,0,,1,,1,107758,2,1,1,0,1,,350.0,,12,1.0,2.0,6.0,1.0,1.0,3,3,1313.1594417356,311.0,19705.75936737224,0,1,0,1,103.0,1,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058815292442828224,19705.75936737224,5,3,5,5_1,5_1,5_1_0 -28059,2,59.0,0.0,2,221,656.0,0.0,0.0,22,21,3164.9063544011433,0.0,906.7062932898104,2825.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,115573,2,3,1,0,1,,343.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1233.16118119439,656.0,29105.6380778264,1,1,0,1,144.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09706023253797604,19403.758718550933,5,3,5,5_1,5_1,5_0_1 -28060,2,76.0,0.0,1,221,1300.0,0.0,0.0,0,77,0.0,0.0,1796.8264958487098,1360.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119982,2,3,4,0,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1397.81637113553,1300.0,12099.512930447514,0,5,0,1,85.0,1,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11240121877779578,12099.512930447514,2,1,2_0,2_1_0,2_1_0,2_1_0 -28061,2,70.0,0.0,1,221,700.0,0.0,0.0,77,78,2240.377315527001,0.0,967.5219593031513,2550.0,602.1144514665671,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,102218,1,2,1,0,2,,114.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,1453.88217432632,700.0,28562.90378915737,5,5,0,1,120.0,1,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.08927663723630205,19041.935859438247,5,3,5,5_1,5_1,5_1_0 -28062,1,81.0,144.0,8,221,600.0,0.0,0.0,86,78,0.0,0.0,829.3045365455583,1000.0,688.1308016760767,0.0,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,131620,2,1,0,0,1,,240.0,333.0,41,2.0,6.0,3.0,4.0,2.5,1,1,1408.03763632528,600.0,21120.339322999014,6,5,2,3,60.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0473477241395951,8448.135729199606,1,1,1_1,1_0_1,1_1_1,1_0_0 -28064,2,63.0,0.0,6,221,1055.0,0.0,0.0,78,52,0.0,517.5862524097289,1458.1938100926068,1805.0,430.0817510475479,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,120724,2,1,2,0,1,,570.0,,42,1.0,2.0,4.0,2.0,1.5,2,1,1341.21277149924,1055.0,29770.03921652849,5,1,0,1,120.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06063142835894734,19846.692811018995,5,3,5,5_1,5_1,5_0_0 -28065,2,52.0,0.0,2,221,489.0,0.0,0.0,52,31,0.0,0.0,675.88319728463,539.0,86.01635020950958,0.0,60,2,2,1,1,2,2,2,2,0,,1,,2,129186,2,1,3,0,1,,240.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1346.25254396971,489.0,20500.961249940585,1,1,0,1,100.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.026291450114397055,13667.30749996039,3,2,3_0,3_1_0,3_1_0,3_0_1 -28066,2,71.0,0.0,5,221,1027.0,150.0,0.0,75,74,0.0,0.0,1419.4929317204808,1177.0,0.0,272.04793512711734,70,0,0,0,0,0,0,0,0,0,,1,,3,121987,2,1,2,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1319.22526400612,1027.0,36693.43906511847,5,5,0,1,104.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032076579083013236,24462.292710078982,7,4,7,7_1,7_1,7_0_0 -28067,2,75.0,0.0,2,221,1200.0,0.0,0.0,78,72,1194.8679016144006,0.0,1658.6090730911167,2030.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104269,2,2,4,0,1,,244.0,,41,0.0,2.0,6.0,2.0,1.5,4,4,1336.52013928183,1200.0,60292.852643386825,5,5,0,1,150.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033668999077001854,40195.23509559122,9,5,9,9_1,9_1,9_0_1 -28068,2,41.0,0.0,1,221,0.0,0.0,0.0,0,43,0.0,0.0,0.0,2631.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,103310,2,1,1,0,1,,291.0,,12,1.0,2.0,5.0,1.0,1.0,3,2,1340.46889391588,0.0,29028.922511143915,0,1,1,2,120.0,1,3,7,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09063374636071957,29028.922511143915,8,4,8,8_1,8_1,8_1_0 -28069,2,42.0,0.0,5,221,892.0,0.0,0.0,47,54,2198.556938970497,0.0,1232.89941099773,2434.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,3,103879,2,2,1,0,1,,389.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1282.57262712015,892.0,53685.4055598286,1,1,1,2,120.0,1,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045338206438386285,25564.478838013616,7,4,7,7_1,7_1,7_0_0 -28070,2,90.0,0.0,1,221,705.0,0.0,0.0,0,71,1911.7886425830409,672.8621281326475,974.432830441031,2705.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,108149,1,1,3,0,2,,136.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1473.79106183995,705.0,23183.16444246365,0,5,0,1,120.0,1,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11667949846593688,23183.16444246365,6,3,6,6_1,6_1,6_1_0 -28071,1,48.0,200.0,2,221,720.0,950.0,0.0,68,62,0.0,0.0,995.16544385467,1970.0,516.0981012570575,1722.9702558050765,71,2,2,2,2,1,2,2,1,4,30.0,1,,2,115657,1,2,5,0,1,,400.0,600.0,43,3.0,0.0,5.0,5.0,2.8,3,3,1413.82456388932,720.0,30353.33423365948,4,1,2,3,100.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0.06490226031957384,10840.476512021243,2,1,2_1,2_1_1,2_1_1,2_0_1 -28072,2,54.0,0.0,7,221,1700.0,0.0,0.0,85,38,0.0,0.0,2349.696186879082,1800.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,3,135.0,1,,5,117350,2,1,1,0,1,,470.0,,42,1.0,0.0,5.0,6.0,3.0999999999999996,1,1,1275.83511467464,1700.0,50475.604032178344,6,1,1,2,125.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03566079167378551,16282.45291360592,4,2,4_0,4_1_0,4_1_0,4_0_0 -28073,2,66.0,0.0,5,221,1262.0,0.0,0.0,78,78,0.0,0.0,1744.3038752008245,1322.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,100943,1,1,1,0,1,,336.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1217.37972327819,1262.0,24389.020694829564,5,5,0,1,98.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054204718448587076,16259.347129886375,4,2,4_0,4_1_0,4_1_0,4_0_0 -28074,2,36.0,0.0,7,221,1350.0,0.0,0.0,0,31,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,115980,2,1,2,0,1,,481.0,,22,1.0,2.0,5.0,2.0,1.5,1,1,1209.46363682576,1350.0,25032.695900597675,0,1,0,1,100.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05392946909756403,16688.463933731782,4,2,4_0,4_1_0,4_1_0,4_0_0 -28075,2,53.0,0.0,2,221,529.0,0.0,0.0,54,11,4211.909353190762,0.0,731.1701663876672,3424.0,129.02452531426437,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,106253,1,3,3,0,2,,145.0,,43,2.0,2.0,7.0,2.0,1.5,1,1,1284.70050138056,529.0,25820.65234180599,4,1,1,2,135.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13260702923667933,17213.76822787066,4,2,4_0,4_1_0,4_1_0,4_0_1 -28077,1,42.0,130.0,9,221,600.0,0.0,0.0,52,67,0.0,455.47590212056144,829.3045365455583,1220.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,119327,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,5,3,1272.28118210613,600.0,32453.238877461834,4,1,1,2,95.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03759254984091179,15453.923274981826,3,2,3_1,3_1_1,3_1_1,3_0_0 -28078,2,67.0,0.0,2,221,0.0,0.0,0.0,71,71,2837.8112663342013,0.0,0.0,3086.0,567.7079113827633,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,114320,2,1,2,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1336.52013928183,0.0,22010.21350337872,5,5,0,1,140.0,1,3,7,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14020763585624818,14673.475668919147,3,2,3_0,3_1_0,3_1_0,3_0_1 -28079,2,67.0,0.0,1,300,737.0,0.0,0.0,0,74,0.0,31.055175144583732,1018.6624057234608,887.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,117625,1,1,3,0,2,,197.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1275.91041341345,737.0,22685.68298697443,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039099550166036175,22685.68298697443,6,3,6,6_1,6_0,6_1_0 -28080,2,33.0,0.0,9,300,1200.0,0.0,0.0,54,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,102860,2,1,1,0,1,,200.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,1401.2062262705,1200.0,58082.85231728511,1,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020660142402181704,32268.25128738062,8,4,8,8_1,8_0,8_0_0 -28081,0,87.0,0.0,8,300,1200.0,0.0,0.0,0,72,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127948,2,1,1,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1455.79353994586,1200.0,16730.983757726262,0,5,5,0,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07172321827434969,16730.983757726262,4,2,4_0,4_1_0,4_0_0,4_0_0 -28082,2,35.0,0.0,8,300,989.0,0.0,0.0,56,53,0.0,258.79312620486445,1366.9703110725952,1239.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,112068,2,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,4,2,993.817951632291,989.0,52489.262299667134,1,1,1,2,99.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02360482783938568,24994.8868093653,7,4,7,7_1,7_0,7_0_0 -28084,2,45.0,0.0,7,300,750.0,0.0,0.0,38,37,0.0,0.0,1036.630670681948,1950.0,2064.39240502823,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,132612,2,1,2,0,1,,140.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1159.12611465208,750.0,64178.0066970108,1,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03038424065125763,30560.955570005142,8,4,8,8_1,8_0,8_0_0 -28085,2,50.0,0.0,8,300,2400.0,0.0,0.0,47,47,0.0,0.0,3317.2181461822333,2450.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,2003.0,6,130919,2,1,1,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1158.25090951607,2400.0,80026.07399858448,1,1,0,1,144.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030615021799561676,38107.654285040226,9,5,9,9_1,9_0,9_0_0 -28086,1,45.0,128.0,9,300,1440.0,0.0,0.0,0,47,0.0,310.55175144583734,1990.33088770934,1860.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,102533,2,1,1,0,1,,220.0,,32,1.0,1.0,6.0,2.0,1.5,1,1,1280.93220660888,1440.0,20179.385093529865,0,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09217327442729528,13452.923395686577,3,2,3_1,3_1_1,3_0_1,3_0_0 -28087,0,68.0,0.0,1,300,1100.0,0.0,0.0,0,75,0.0,0.0,1520.3916503335236,1220.0,206.439240502823,0.0,44,2,2,2,2,1,2,2,2,0,,1,,1,120669,1,2,3,0,2,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1420.42022436563,1100.0,23239.0,0,5,5,0,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.052497956022204056,23239.0,6,3,6,6_1,6_0,6_1_0 -28088,2,69.0,0.0,1,300,691.0,0.0,0.0,71,78,0.0,0.0,955.082391254968,841.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,114995,2,1,2,0,2,,280.0,,41,0.0,2.0,4.0,2.0,1.5,2,1,1308.77402891448,691.0,22365.618259074872,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037602358685468636,14910.412172716582,3,2,3_0,3_1_0,3_0_0,3_1_0 -28089,2,49.0,0.0,7,300,1727.0,0.0,0.0,11,43,0.0,0.0,2387.014891023632,1787.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,102187,2,2,1,0,1,,355.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1117.03200439681,1727.0,38175.584268430735,1,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046810023585618254,15270.233707372294,3,2,3_0,3_1_0,3_0_0,3_0_0 -28090,2,52.0,0.0,1,300,2200.0,0.0,0.0,0,46,1045.5094139126004,0.0,3040.783300667047,3050.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,118913,2,3,4,0,1,,90.0,,22,1.0,0.0,12.0,2.0,1.5,1,1,1309.32586922717,2200.0,46351.47719808687,0,1,0,1,250.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06580157061587429,30900.984798724578,8,4,8,8_1,8_0,8_1_0 -28091,1,45.0,100.0,8,300,1000.0,0.0,0.0,85,43,2091.018827825201,0.0,1382.1742275759307,2520.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2002.0,6,107665,2,1,1,0,1,,420.0,,42,2.0,3.0,6.0,5.0,2.5999999999999996,2,2,1054.35618248769,1000.0,54549.51230908931,7,1,1,2,130.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.046196563329863265,20980.581657342045,5,3,5,5_1,5_0,5_0_0 -28092,2,67.0,0.0,1,300,650.0,0.0,0.0,77,75,3357.5788035364653,0.0,898.4132479243549,3038.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,116446,2,1,2,0,1,,0.0,322.0,41,0.0,2.0,6.0,2.0,1.5,3,2,1388.55861396693,650.0,22152.282135483318,5,5,2,3,130.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1371416263759913,14768.188090322212,3,2,3_0,3_1_0,3_0_0,3_1_0 -28093,2,60.0,0.0,9,300,1050.0,0.0,0.0,33,33,0.0,517.5862524097289,1451.2829389547271,1550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2010.0,6,127618,2,1,1,0,1,,500.0,,43,2.0,3.0,6.0,2.0,1.5,3,3,1144.89392008278,1050.0,96265.79716075001,1,1,0,1,225.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016101253464007818,64177.198107166674,10,5,10,10_1,10_0,10_0_0 -28094,2,58.0,0.0,8,300,790.0,0.0,0.0,0,43,0.0,0.0,1091.917639784985,850.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,127821,2,1,2,0,1,,144.0,,12,1.0,1.0,4.0,1.0,1.0,3,3,1127.55978798206,790.0,26986.93167433446,0,1,1,2,70.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03149672627690314,26986.93167433446,7,4,7,7_1,7_0,7_0_0 -28095,2,44.0,0.0,1,300,550.0,0.0,0.0,43,43,1493.5848770180007,517.5862524097289,760.1958251667618,2110.0,103.2196202514115,0.0,71,2,2,2,2,1,2,2,2,2,20.0,1,,1,106518,2,1,2,0,1,,350.0,,43,2.0,0.0,8.0,4.0,2.1,2,1,1097.62168141171,550.0,44757.63797392425,1,1,0,1,240.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.047142791610881786,21313.160939963927,6,3,6,6_1,6_0,6_1_0 -28096,2,51.0,0.0,6,300,1100.0,0.0,0.0,77,67,0.0,797.0828287109825,1520.3916503335236,1960.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,4,130625,2,1,2,0,1,,397.0,,42,2.0,0.0,5.0,3.0,2.0,2,2,1185.15843490721,1100.0,43212.79711942523,5,1,0,1,115.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04535693430312409,21606.398559712616,6,3,6,6_1,6_0,6_0_0 -28097,2,39.0,0.0,1,300,1080.0,0.0,0.0,68,55,0.0,0.0,1492.748165782005,1200.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,112049,2,3,1,0,1,,166.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1080.81761799223,1080.0,36173.9739501979,4,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03317302106901736,17225.701881046618,4,2,4_0,4_1_0,4_0_0,4_1_0 -28098,2,40.0,0.0,9,300,715.0,0.0,0.0,0,37,0.0,0.0,988.2545727167903,747.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,117171,2,1,1,0,1,,85.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1380.07991358524,715.0,36298.41896083867,0,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020579408728680908,36298.41896083867,9,5,9,9_1,9_0,9_0_0 -28099,1,37.0,24.0,1,300,1760.0,0.0,0.0,22,47,0.0,0.0,2432.626640533638,1820.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,65.0,1,,1,125810,2,1,2,0,1,,93.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1086.93668706584,1760.0,32078.309804633915,4,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05673615633380689,15275.385621254245,3,2,3_1,3_1_1,3_0_1,3_1_0 -28100,0,58.0,0.0,1,300,400.0,0.0,0.0,71,11,0.0,0.0,552.8696910303722,490.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,119112,1,3,3,0,2,,138.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,1431.6350948128,400.0,41925.726916097585,5,1,5,0,190.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.011687334628224707,27950.484610731724,7,4,7,7_1,7_0,7_1_0 -28102,0,83.0,0.0,1,300,2.0,0.0,0.0,0,78,0.0,0.0,2.764348455151861,32.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,124065,2,2,4,0,2,,145.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1330.42951001638,2.0,16673.47907501947,0,5,5,0,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0019192155312050634,16673.47907501947,4,2,4_0,4_1_0,4_0_0,4_1_0 -28103,2,47.0,0.0,9,300,1200.0,0.0,0.0,54,64,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,128804,2,1,1,0,1,,155.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1120.34840690429,1200.0,44702.14462714521,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02818656712132039,19435.715055280525,5,3,5,5_1,5_0,5_0_0 -28104,2,82.0,0.0,1,300,0.0,0.0,0.0,71,71,0.0,0.0,0.0,1580.0,326.8621307961364,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,101361,1,1,2,0,2,,145.0,,41,1.0,0.0,5.0,4.0,2.5,2,2,1161.28488464759,0.0,39984.27160146017,5,5,0,1,130.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03951553790321644,15993.708640584067,3,2,3_0,3_1_0,3_0_0,3_1_0 -28105,2,35.0,0.0,9,300,1115.0,0.0,0.0,42,46,0.0,0.0,1541.1242637471626,1169.0,92.89765822627035,0.0,41,0,0,0,0,0,0,0,0,0,,1,2007.0,6,111969,2,1,1,0,1,,276.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1130.28318645762,1115.0,40795.23306600139,4,1,1,2,104.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028655308773667496,19426.30146000066,5,3,5,5_1,5_0,5_0_0 -28106,2,50.0,0.0,1,300,1200.0,0.0,0.0,56,63,2987.1697540360015,517.5862524097289,1658.6090730911167,3950.0,430.0817510475479,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,118540,2,2,2,0,1,,500.0,,43,5.0,0.0,10.0,5.0,3.0,4,4,1155.91135730758,1200.0,67572.83821272534,1,1,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05845544015133783,22524.27940424178,6,3,6,6_1,6_0,6_1_0 -28107,2,70.0,0.0,2,300,512.0,0.0,0.0,0,77,2718.3244761727615,0.0,707.6732045188764,2422.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107052,2,1,1,0,1,,115.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1321.56373576259,512.0,24276.182795114513,0,5,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09976856824819337,24276.182795114513,7,4,7,7_1,7_0,7_0_1 -28108,2,36.0,0.0,5,300,800.0,0.0,0.0,0,48,0.0,0.0,1105.7393820607444,860.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,111129,2,1,1,0,1,,60.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1180.55681719204,800.0,23742.37140562916,0,1,0,1,118.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036222161017837484,23742.37140562916,6,3,6,6_1,6_0,6_0_0 -28109,1,36.0,359.0,8,300,588.0,0.0,0.0,55,63,1344.2263893162005,0.0,812.7184458146471,1568.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,103650,2,1,1,0,1,,250.0,610.0,43,2.0,0.0,5.0,4.0,2.1,1,1,1296.09136768988,588.0,23962.93567087729,4,1,2,3,80.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06543438673524574,11410.921748036804,2,1,2_1,2_1_1,2_0_1,2_0_0 -28110,2,44.0,0.0,9,300,1289.0,0.0,0.0,90,21,0.0,0.0,1781.6225793453746,1289.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,116353,2,1,1,0,1,,162.0,,43,2.0,2.0,5.0,3.0,2.0,1,1,1316.36103934901,1289.0,57324.87782123904,1,1,0,1,158.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02248587435318391,28662.43891061952,8,4,8,8_1,8_0,8_0_0 -28111,2,48.0,0.0,7,300,823.0,0.0,0.0,21,34,1335.2648800540926,0.0,1137.5293892949908,1817.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,121348,2,1,2,0,1,,513.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1120.46873407994,823.0,108168.02828038408,1,1,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016797939547258132,43267.21131215363,9,5,9,9_1,9_0,9_0_0 -28112,2,61.0,0.0,1,300,741.0,0.0,0.0,0,72,0.0,0.0,1024.1911026337646,941.0,344.06540083803833,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123004,2,2,2,0,1,,67.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1327.70238951402,741.0,19103.205970714673,0,5,0,1,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.049258747533924854,19103.205970714673,5,3,5,5_1,5_0,5_1_0 -28113,2,39.0,0.0,5,300,2119.0,0.0,0.0,21,52,0.0,0.0,2928.827188233397,2179.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,101108,2,1,2,0,1,,414.0,,43,2.0,0.0,5.0,4.0,2.3,4,4,1096.00932239129,2119.0,33106.43307771837,4,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06581802379267891,14394.101338138424,3,2,3_0,3_1_0,3_0_0,3_0_0 -28114,2,44.0,0.0,9,300,2000.0,0.0,0.0,0,37,0.0,0.0,2764.3484551518613,2030.0,51.60981012570575,0.0,42,2,2,1,2,1,2,2,2,2,20.0,1,2005.0,6,102541,2,2,1,0,1,,280.0,750.0,22,2.0,0.0,5.0,2.0,1.5,1,1,1292.22793115492,2000.0,43878.99586220982,0,1,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04626359286740902,29252.66390813988,8,4,8,8_1,8_0,8_0_0 -28115,2,47.0,0.0,8,300,474.0,0.0,0.0,84,13,1344.2263893162005,0.0,655.1505838709911,1484.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,122160,2,1,1,0,1,,159.0,,42,1.0,0.0,6.0,2.0,1.5,1,1,1153.21573016511,474.0,22261.442787748696,3,1,1,2,130.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06666234592920009,14840.961858499131,3,2,3_0,3_1_0,3_0_0,3_0_0 -28116,2,36.0,0.0,9,300,1515.0,0.0,0.0,52,47,0.0,0.0,2093.993954777535,1515.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,115373,2,1,1,0,1,,119.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1415.41382212971,1515.0,57377.03353169242,1,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02640429291561726,31876.12973982912,8,4,8,8_1,8_0,8_0_0 -28117,2,63.0,0.0,7,300,900.0,0.0,0.0,78,75,0.0,0.0,1243.9568048183376,906.0,10.32196202514115,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,126681,2,1,1,0,1,,150.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1215.79149920806,900.0,43624.05032089898,5,5,0,1,115.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020768360418976558,29082.700213932654,8,4,8,8_1,8_0,8_0_0 -28118,2,33.0,0.0,8,300,1050.0,0.0,0.0,65,38,0.0,600.4000527952855,1451.2829389547271,1690.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,1999.0,6,129908,2,2,3,0,1,,437.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,1122.48394326054,1050.0,54736.239338247295,1,1,1,2,95.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03087534000201402,26064.875875355854,7,4,7,7_1,7_0,7_0_0 -28119,2,45.0,0.0,7,300,0.0,0.0,0.0,0,23,0.0,0.0,0.0,2001.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,122369,2,2,1,0,1,,107.0,,12,1.0,0.0,5.0,1.0,1.0,3,2,1233.12210406199,0.0,62199.49083813964,0,1,1,2,100.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03217068135183226,62199.49083813964,10,5,10,10_1,10_0,10_0_0 -28120,2,26.0,0.0,9,300,1276.0,0.0,0.0,55,48,0.0,0.0,1763.6543143868873,1276.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,7.0,1,2011.0,6,124453,2,1,1,0,1,,199.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1188.61212249091,1276.0,41469.424145729965,1,1,1,2,117.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.030769658038074965,23038.56896984998,6,3,6,6_1,6_0,6_0_0 -28121,2,63.0,0.0,1,300,979.0,0.0,0.0,77,78,0.0,207.03450096389156,1353.1485687968361,1269.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117195,2,1,2,0,1,,127.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1210.53935669916,979.0,30002.708756089745,5,5,0,1,130.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04229618099873823,20001.805837393164,5,3,5,5_1,5_0,5_1_0 -28122,2,60.0,0.0,5,300,1269.0,0.0,0.0,77,21,2987.1697540360015,1552.7587572291866,1753.979094793856,4889.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,116331,2,1,2,0,1,,804.0,,42,1.0,3.0,5.0,2.0,1.5,3,2,1189.33914318223,1269.0,43980.8908175441,6,1,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11116191393853632,29320.593878362735,8,4,8,8_1,8_0,8_0_0 -28123,2,65.0,0.0,9,300,1419.0,0.0,0.0,75,78,0.0,207.03450096389156,1961.3052289302454,1619.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,118365,2,1,1,0,1,,240.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1186.65493119837,1419.0,39090.651961337106,5,5,0,1,135.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041416551496794775,26060.434640891403,7,4,7,7_1,7_0,7_0_0 -28124,2,60.0,0.0,1,300,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1419.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128885,2,1,1,0,1,,369.0,430.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1454.39817081705,0.0,18337.252230446295,0,5,2,3,50.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07738345866475897,18337.252230446295,4,2,4_0,4_1_0,4_0_0,4_1_0 -28125,2,30.0,0.0,1,300,400.0,0.0,0.0,55,68,0.0,414.0690019277831,552.8696910303722,860.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,126092,2,2,1,0,1,,101.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,1283.62436199434,400.0,27453.367782070298,4,1,1,2,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03132584704458967,15251.870990039053,3,2,3_0,3_1_0,3_0_0,3_1_0 -28126,2,66.0,0.0,5,300,443.0,0.0,0.0,78,77,0.0,0.0,612.3031828161372,970.0,906.612331208231,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,112587,2,1,2,0,1,,143.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1047.34621965827,443.0,33774.315902947455,5,5,0,1,92.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02872004877278207,22516.21060196497,6,3,6,6_1,6_0,6_0_0 -28127,2,39.0,0.0,1,400,1074.0,0.0,0.0,47,52,1194.8679016144006,0.0,1484.4551204165493,2054.0,309.6588607542345,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,109147,2,2,1,0,1,,670.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,1069.36784986309,1074.0,31276.59336927453,1,1,1,2,59.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0656721138312271,14893.615890130728,3,2,3_0,3_1_0,3_0_0,3_1_0 -28128,0,83.0,0.0,1,400,443.0,0.0,0.0,86,78,2240.377315527001,0.0,612.3031828161372,2966.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119104,1,3,4,0,2,,120.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,914.260224683101,443.0,18306.266076807147,5,5,0,1,250.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.16202102534485335,12204.177384538098,2,1,2_0,2_1_0,2_0_0,2_1_0 -28129,2,45.0,0.0,1,400,480.0,0.0,0.0,22,22,1493.5848770180007,807.4345537591771,663.4436292364467,2380.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,120213,2,2,1,0,1,,566.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,961.726885777608,480.0,49325.23390973636,1,1,1,2,180.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04825116499914275,20552.180795723485,5,3,5,5_1,5_0,5_1_0 -28130,2,55.0,0.0,1,400,1300.0,0.0,0.0,0,48,0.0,103.51725048194578,1796.8264958487098,1552.0,261.48970463690915,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,,1,110687,1,2,1,0,1,,520.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1046.04590400368,1300.0,38847.44798269791,0,1,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039951144298880026,38847.44798269791,9,5,9,9_1,9_0,9_1_0 -28131,2,82.0,0.0,1,400,468.0,0.0,0.0,0,71,0.0,103.51725048194578,646.8575385055356,688.0,206.439240502823,0.0,71,2,2,1,2,1,2,2,1,0,,1,,1,111060,2,3,4,0,2,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1246.9096432418,468.0,22230.514531304583,0,5,0,1,78.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.030948451464367664,22230.514531304583,6,3,6,6_1,6_0,6_1_0 -28132,1,31.0,240.0,1,400,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1246.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,126931,1,2,2,0,2,,303.0,500.0,42,1.0,0.0,8.0,4.0,2.1,1,1,1171.50481169983,0.0,29650.89004141389,6,1,2,3,100.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0420223473312164,14119.471448292328,3,2,3_1,3_1_1,3_0_1,3_1_0 -28133,2,48.0,0.0,7,400,672.0,0.0,0.0,54,11,0.0,207.03450096389156,928.8210809310253,1082.0,361.26867087994026,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,118468,2,2,3,0,1,,400.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,967.061834929314,672.0,42177.60471154186,1,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025653424546034302,21088.80235577093,5,3,5,5_1,5_0,5_0_0 -28134,2,55.0,0.0,1,400,622.0,0.0,0.0,63,54,0.0,672.8621281326475,859.7123695522288,1362.0,154.82943037711726,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,,1,126141,2,3,4,0,1,,346.0,,43,2.0,4.0,3.0,2.0,1.5,4,4,1132.10543194296,622.0,39874.3723304617,4,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03415727747918708,26582.914886974468,7,4,7,7_1,7_0,7_1_0 -28135,2,54.0,0.0,1,400,150.0,0.0,0.0,0,11,0.0,978.2380170543876,207.32613413638958,1195.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,116992,2,1,1,0,2,,150.0,,12,1.0,2.0,11.0,1.0,1.0,2,1,1117.14748406463,150.0,11645.86083023252,0,1,0,1,210.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10261156452237467,11645.86083023252,2,1,2_0,2_1_0,2_0_0,2_1_0 -28136,1,54.0,142.0,2,400,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1034.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,2,112876,2,2,5,0,2,,184.0,410.0,43,3.0,4.0,5.0,3.0,2.0,2,1,1221.6150489276,0.0,13196.440962356155,4,1,2,3,180.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07835445958115246,6598.2204811780775,1,1,1_1,1_1_1,1_0_1,1_0_1 -28138,2,68.0,0.0,1,400,1284.0,0.0,0.0,0,77,0.0,414.0690019277831,1774.711708207495,1744.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103835,2,1,1,0,1,,468.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,1028.47423561279,1284.0,16777.802439385552,0,5,0,1,75.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10394686707634578,16777.802439385552,4,2,4_0,4_1_0,4_0_0,4_1_0 -28139,2,46.0,0.0,7,400,460.0,0.0,0.0,0,46,0.0,310.55175144583734,635.800144684928,790.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,126053,2,1,3,0,1,,340.0,,12,1.0,0.0,3.0,1.0,1.0,4,3,1114.61046743295,460.0,25772.475513348647,0,1,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030652856749861915,25772.475513348647,7,4,7,7_1,7_0,7_0_0 -28140,2,61.0,0.0,2,400,0.0,0.0,0.0,0,78,0.0,0.0,0.0,624.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,100178,2,1,3,0,2,,89.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1045.8206833437,0.0,65839.80407088484,0,5,0,1,70.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.009477549467312895,65839.80407088484,10,5,10,10_1,10_0,10_0_1 -28141,2,54.0,0.0,1,400,2000.0,0.0,0.0,42,42,896.1509262108004,31.055175144583732,2764.3484551518613,2790.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,132532,2,2,1,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,966.1977006733,2000.0,63584.536416354444,1,1,0,1,170.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.043878593086390576,27645.450615806283,7,4,7,7_1,7_0,7_1_0 -28142,2,73.0,0.0,1,400,808.0,0.0,0.0,77,77,188.1916945042681,155.27587572291867,1116.796775881352,1276.0,330.3027848045168,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115086,2,3,3,0,1,,133.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1062.29944535508,808.0,46550.57432882928,5,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027411047412357257,31033.71621921952,8,4,8,8_1,8_0,8_1_0 -28143,2,41.0,0.0,1,400,1445.0,0.0,0.0,55,37,2825.862587318057,621.1035028916747,1997.2417588472197,3997.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,101921,2,1,1,0,1,,688.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,1008.19380446099,1445.0,51141.14016288102,1,1,1,2,90.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07815625516501645,28411.7445349339,8,4,8,8_1,8_0,8_1_0 -28145,2,61.0,0.0,1,400,1100.0,0.0,0.0,78,72,0.0,258.79312620486445,1520.3916503335236,1500.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132708,2,1,2,0,2,,200.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1018.56485864477,1100.0,23412.57727002324,5,5,0,1,200.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.064068128113369,15608.38484668216,3,2,3_0,3_1_0,3_0_0,3_1_0 -28146,2,81.0,0.0,2,400,624.0,0.0,0.0,0,72,0.0,0.0,862.4767180073807,1224.0,1032.196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,110695,2,1,1,0,2,,166.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1042.89470526101,624.0,21973.547141700878,0,5,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05570334148177295,21973.547141700878,6,3,6,6_1,6_0,6_0_1 -28147,2,67.0,0.0,5,400,781.0,0.0,0.0,77,75,0.0,310.55175144583734,1079.4780717368017,1171.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,104190,2,1,3,0,1,,421.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,886.241079235568,781.0,37807.02334474371,5,5,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030973081094542276,25204.68222982914,7,4,7,7_1,7_0,7_0_0 -28148,2,62.0,0.0,5,400,1400.0,0.0,0.0,71,11,0.0,0.0,1935.0439186063027,1470.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,132503,2,1,2,0,1,,865.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1032.22671291253,1400.0,83522.13613424255,5,5,0,1,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017600124566226543,55681.424089495034,10,5,10,10_1,10_0,10_0_0 -28149,1,51.0,250.0,1,400,1320.0,0.0,0.0,0,56,0.0,0.0,1824.4699804002285,1350.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121718,2,1,1,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,3,3,1051.01015445833,1320.0,12280.837023627453,0,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.1099273606027583,12280.837023627453,2,1,2_1,2_1_1,2_0_1,2_1_0 -28150,2,87.0,0.0,1,400,2200.0,0.0,0.0,71,71,0.0,0.0,3040.783300667047,2380.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127400,2,1,4,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1012.99522507914,2200.0,18993.167499254378,5,5,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1253082193948657,12662.111666169585,2,1,2_0,2_1_0,2_0_0,2_1_0 -28152,2,84.0,0.0,7,400,610.0,0.0,0.0,71,71,2240.377315527001,0.0,843.1262788213177,2350.0,412.878481005646,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,122925,2,1,2,0,1,,480.0,,41,0.0,2.0,4.0,3.0,2.0,1,1,1158.66550066081,610.0,30703.258696583667,5,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07653910691445541,15351.629348291834,3,2,3_0,3_1_0,3_0_0,3_0_0 -28153,0,76.0,0.0,6,400,1871.0,0.0,0.0,0,71,0.0,51.75862524097289,2586.047979794566,2057.0,233.96447256986607,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,115005,2,2,2,0,2,,215.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1028.30679582276,1871.0,14478.34449452127,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14207425446869193,14478.34449452127,3,2,3_0,3_1_0,3_0_0,3_0_0 -28154,2,53.0,0.0,1,400,1100.0,0.0,0.0,0,68,0.0,672.8621281326475,1520.3916503335236,1840.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,114343,1,1,3,0,2,,288.0,566.0,12,1.0,2.0,4.0,1.0,1.0,3,3,1222.03847754724,1100.0,24361.1403502927,0,1,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07553012599337915,24361.1403502927,7,4,7,7_1,7_0,7_1_0 -28155,1,41.0,213.0,1,111,336.0,660.0,0.0,0,63,0.0,0.0,464.41054046551267,996.0,0.0,1197.0109145593162,71,0,0,0,0,0,0,0,0,0,,2,,1,114073,2,1,0,0,1,,0.0,336.0,32,1.0,1.0,2.0,2.0,1.3,2,2,2059.49420524803,336.0,13185.397603035426,0,4,2,3,40.0,6,5,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07553810889788486,10142.613540796481,2,1,2_1,2_0_1,2_2_1,2_1_0 -28158,2,61.0,0.0,2,111,440.0,0.0,0.0,0,77,0.0,0.0,608.1566601334094,440.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113785,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,3,2,2186.7715846718,440.0,40528.92466358159,0,5,1,2,90.0,6,5,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01085644397556332,40528.92466358159,9,5,9,9_0,9_2,9_0_1 -28159,2,69.0,0.0,1,111,1200.0,0.0,0.0,72,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124678,2,1,2,0,2,,320.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1504.23797817464,1200.0,30834.73378722774,5,5,0,1,125.0,6,5,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038917151296991574,20556.489191485158,5,3,5,5_1,5_2,5_1_0 -28160,1,76.0,293.0,1,111,0.0,0.0,700.0,86,78,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,41,0,0,0,0,0,0,0,0,0,,2,,1,108406,1,2,0,0,1,,0.0,290.0,41,0.0,5.0,2.0,2.0,1.5,4,3,2415.93989686767,0.0,14413.822164054738,5,5,2,3,50.0,6,5,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04856449538732783,9609.214776036491,1,1,1_1,1_0_1,1_2_1,1_1_0 -28161,2,54.0,0.0,2,111,500.0,300.0,0.0,68,63,0.0,0.0,691.0871137879653,800.0,0.0,544.0958702542347,71,2,2,2,2,1,2,2,2,2,10.0,2,,2,128526,2,1,0,1,1,,200.0,490.0,43,2.0,0.0,4.0,4.0,2.5,6,4,1851.86322705601,500.0,38483.27132251579,1,1,2,3,80.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.0207882535061913,15393.308529006317,3,2,3_0,3_0_0,3_2_0,3_0_1 -28162,2,91.0,0.0,2,111,342.0,1038.0,0.0,86,86,0.0,0.0,472.7035858309682,1380.0,0.0,1882.571711079652,71,0,0,0,0,0,0,0,0,0,,1,,2,129175,2,2,2,0,1,,365.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1471.06144591149,342.0,39789.39800326687,5,5,0,1,86.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03468260565004518,26526.265335511245,7,4,7,7_1,7_2,7_0_1 -28163,2,76.0,0.0,2,111,139.0,108.0,0.0,0,74,0.0,0.0,192.12221763305433,247.0,0.0,195.8745132915245,71,0,0,0,0,0,0,0,0,0,,2,,2,115463,2,1,0,1,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,3,3,2050.53705864747,139.0,24691.572219782764,0,5,0,1,35.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010003413221378623,24691.572219782764,7,4,7,7_0,7_2,7_0_1 -28164,2,68.0,0.0,1,111,960.0,1200.0,0.0,86,86,0.0,0.0,1326.8872584728933,3017.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,1,128787,2,1,2,0,1,,440.0,,41,0.0,0.0,6.0,2.0,1.5,3,3,1311.31806427805,960.0,57876.520090124366,5,5,0,1,110.0,6,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05212822048219169,38584.34672674958,9,5,9,9_1,9_2,9_1_0 -28165,2,88.0,0.0,5,111,264.0,264.0,0.0,0,78,0.0,0.0,364.89399608004567,528.0,0.0,478.8043658237265,71,0,0,0,0,0,0,0,0,0,,2,,3,103241,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1895.70329385672,264.0,17489.59205165316,0,5,0,1,66.0,6,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030189383402461474,17489.59205165316,4,2,4_0,4_0_0,4_2_0,4_0_0 -28166,2,37.0,0.0,2,111,480.0,1200.0,0.0,0,34,0.0,0.0,663.4436292364467,1680.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,7.0,1,,2,121725,2,1,1,0,1,,300.0,,32,1.0,0.0,6.0,3.0,1.8,3,3,1449.80996203793,480.0,37286.22349764845,0,1,1,2,100.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.045056855921757635,20714.568609804694,5,3,5,5_1,5_2,5_0_1 -28167,2,40.0,0.0,6,111,1250.0,0.0,0.0,54,45,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,121441,2,2,1,0,2,,335.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,1329.5680217532,1250.0,66718.11984966951,1,1,0,1,91.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01873553995251249,33359.05992483476,8,4,8,8_1,8_2,8_0_0 -28168,2,43.0,0.0,5,111,400.0,600.0,0.0,63,47,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,132126,1,3,0,0,2,,0.0,470.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2378.10850627062,400.0,25091.05657904692,4,1,2,3,50.0,6,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.039854838191034234,13939.475877248287,3,2,3_0,3_0_0,3_2_0,3_0_0 -28169,2,46.0,0.0,2,111,80.0,800.0,0.0,0,54,0.0,0.0,110.57393820607444,880.0,0.0,1450.922320677959,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,118820,2,1,0,0,1,,210.0,,32,1.0,0.0,5.0,4.0,2.1,2,2,1603.02970487023,80.0,67086.11314759501,0,1,0,1,90.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013117468857734045,31945.768165521433,8,4,8,8_0,8_2,8_0_1 -28170,2,74.0,0.0,6,111,300.0,0.0,0.0,77,72,0.0,641.8069529880638,414.65226827277917,1070.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126354,1,1,2,0,1,,290.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,1328.13021863906,300.0,22537.07295580075,5,5,0,1,86.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04747732778335777,15024.715303867168,3,2,3_0,3_1_0,3_2_0,3_0_0 -28172,2,38.0,0.0,7,111,1000.0,0.0,0.0,37,67,0.0,207.03450096389156,1382.1742275759307,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,118334,2,2,3,0,1,,350.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1343.42184778383,1000.0,38523.38904329533,4,1,1,2,94.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031149907362806387,25682.259362196884,7,4,7,7_1,7_2,7_0_0 -28173,1,28.0,300.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1742.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111644,2,1,1,0,1,,240.0,500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1668.70209879296,0.0,11175.873047025014,0,7,2,3,47.0,6,5,7,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.15587149144144183,11175.873047025014,2,1,2_1,2_1_1,2_2_1,2_0_1 -28174,2,64.0,0.0,6,111,609.0,0.0,0.0,78,72,1941.6603401234008,0.0,841.7441045937417,1969.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,104567,2,1,2,0,1,,171.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,1268.98305579449,609.0,20611.177985683717,5,5,0,1,140.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09553068734681949,13740.785323789145,3,2,3_0,3_1_0,3_2_0,3_0_0 -28175,2,42.0,0.0,9,111,916.0,0.0,0.0,68,67,0.0,0.0,1266.0715924595524,982.0,113.54158227655265,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,116599,2,1,1,0,1,,401.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1335.63444657162,916.0,26434.6629569222,1,1,1,2,88.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03714819445968585,11493.331720400956,2,1,2_0,2_1_0,2_2_0,2_0_0 -28176,0,85.0,0.0,1,111,849.0,0.0,0.0,75,74,4480.754631054002,0.0,1173.465919211965,3909.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,112774,2,1,2,0,2,,124.0,,41,0.0,2.0,9.0,2.0,1.5,1,1,1471.92107820097,849.0,85718.2739467083,5,5,0,1,400.0,6,5,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04560287812643375,57145.5159644722,10,5,10,10_1,10_2,10_1_0 -28177,0,83.0,0.0,1,111,280.0,1380.0,0.0,0,71,0.0,207.03450096389156,387.00878372126056,1860.0,0.0,2502.8410031694793,60,0,0,0,0,0,0,0,0,0,,1,,1,119643,2,1,2,0,1,,64.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,1684.2467140684,280.0,16264.809073322853,0,5,0,1,180.0,6,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1143573214794588,16264.809073322853,4,2,4_0,4_1_0,4_2_0,4_1_0 -28178,2,94.0,0.0,5,111,330.0,0.0,0.0,0,74,2987.1697540360015,0.0,456.1174951000571,2430.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,106214,2,1,3,0,2,,114.0,,11,0.0,4.0,4.0,1.0,1.0,2,1,1363.39541629908,330.0,39283.17459654006,0,5,0,1,106.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06185854440119579,39283.17459654006,9,5,9,9_1,9_2,9_0_0 -28179,2,76.0,0.0,9,111,1215.0,0.0,0.0,0,77,0.0,0.0,1679.3416865047557,1455.0,412.878481005646,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,111996,2,2,5,0,1,,183.0,644.0,21,0.0,3.0,4.0,2.0,1.5,5,5,1575.72662365907,1215.0,23153.626874270256,0,5,2,3,82.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06284112670127227,15435.751249513503,3,2,3_0,3_1_0,3_2_0,3_0_0 -28180,1,30.0,670.0,9,111,0.0,0.0,0.0,85,22,0.0,0.0,0.0,1360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,6.0,1,2006.0,6,128142,2,1,1,0,1,,439.0,850.0,42,1.0,0.0,5.0,9.0,3.599999999999999,1,1,1562.63148378394,0.0,35404.162228012756,6,1,2,3,107.0,6,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.038413562542201046,9834.489507781323,2,1,2_1,2_1_1,2_2_1,2_0_0 -28181,2,62.0,0.0,5,111,1730.0,0.0,0.0,75,74,0.0,207.03450096389156,2391.16141370636,1990.0,103.2196202514115,0.0,71,2,1,2,2,1,2,2,2,0,,1,,3,125956,2,2,2,0,1,,150.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1455.43656368003,1730.0,56396.80551707769,5,5,0,1,150.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.035285686516364864,37597.87034471846,9,5,9,9_1,9_2,9_0_0 -28182,2,54.0,0.0,8,111,1700.0,0.0,0.0,0,34,0.0,0.0,2349.696186879082,1760.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,110086,2,1,1,0,1,,300.0,460.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1746.27504138767,1700.0,45432.26952809269,0,1,3,4,100.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038738984829091966,45432.26952809269,10,5,10,10_1,10_2,10_0_0 -28183,2,48.0,0.0,5,111,1700.0,0.0,0.0,85,65,1493.5848770180007,0.0,2349.696186879082,3060.0,619.317721508469,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,132753,2,1,1,0,1,,264.0,,42,1.0,1.0,5.0,6.0,3.0999999999999996,2,2,1374.2596547598,1700.0,20246.613404604886,6,1,1,2,98.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15113638705147767,6531.165614388674,1,1,1_0,1_1_0,1_2_0,1_0_0 -28184,2,41.0,0.0,1,400,500.0,0.0,0.0,52,64,0.0,0.0,691.0871137879653,2820.0,3991.1586497212447,0.0,50,1,2,2,1,2,1,2,2,0,,1,,1,122610,1,1,1,0,2,,450.0,532.0,43,2.0,2.0,4.0,3.0,2.0,1,1,1541.39918248745,500.0,20680.407793545433,4,4,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.1363609474316145,10340.203896772717,2,1,2_0,2_1_0,2_0_0,2_1_0 -28185,2,30.0,0.0,9,300,1005.0,0.0,0.0,43,46,0.0,0.0,1389.08509871381,1005.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,126647,2,1,1,0,1,,276.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,4225.97477239243,1005.0,40573.056587860185,1,1,1,2,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02477013280534316,22540.586993255656,6,3,6,6_1,6_0,6_0_0 -28186,2,64.0,0.0,1,400,377.0,0.0,0.0,77,75,219.5569769216461,207.03450096389156,521.0796837961258,725.0,1.7203270041901917,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107991,2,2,1,0,1,,223.0,,41,0.0,0.0,6.0,2.0,1.5,1,1,1412.4925775599,377.0,14456.75214374042,5,5,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050149576667807456,9637.834762493612,1,1,1_0,1_1_0,1_0_0,1_1_0 -28187,2,56.0,0.0,5,111,665.0,200.0,0.0,0,54,0.0,0.0,919.1458613379938,865.0,0.0,362.73058016948977,50,2,2,2,2,1,2,2,2,2,3.0,2,,3,113129,1,3,0,1,2,906.0,0.0,279.0,22,1.0,1.0,4.0,2.0,1.5,2,2,274.44949530221,665.0,23524.60889504294,0,1,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.036770005565630086,15683.072596695294,3,2,3_0,3_0_0,3_2_0,3_0_0 -28188,2,74.0,0.0,2,400,900.0,0.0,0.0,0,78,0.0,0.0,1243.9568048183376,1050.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,128782,1,2,3,0,2,,201.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1322.39573219643,900.0,19531.17052534384,0,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.053760218755834914,19531.17052534384,5,3,5,5_1,5_0,5_0_1 -28189,1,39.0,270.0,5,111,239.0,98.0,0.0,0,81,0.0,0.0,330.3396403906474,337.0,0.0,177.73798428305,71,0,0,0,0,0,0,0,0,0,,2,,3,108610,2,3,0,1,1,,0.0,307.0,12,1.0,2.0,3.0,1.0,1.0,2,2,301.107448803251,239.0,11586.821964284542,0,4,2,3,63.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.029084765524038925,11586.821964284542,2,1,2_1,2_0_1,2_2_1,2_0_0 -28190,2,44.0,0.0,9,111,1600.0,0.0,0.0,63,43,0.0,258.79312620486445,2211.478764121489,1850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,128330,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,5,5,3629.13379040314,1600.0,57545.0,1,1,1,2,150.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03214875314970892,27402.38095238095,7,4,7,7_1,7_2,7_0_0 -28191,2,60.0,0.0,1,400,324.0,0.0,0.0,0,11,0.0,0.0,447.8244497346015,1324.0,1720.3270041901917,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127840,2,1,4,0,1,,386.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1221.363057048,324.0,12783.915870875553,0,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10356764025773592,12783.915870875553,2,1,2_0,2_1_0,2_0_0,2_1_0 -28192,1,26.0,270.0,2,111,252.0,101.0,0.0,84,68,0.0,0.0,348.3079053491345,353.0,0.0,183.17894298559233,71,2,1,2,1,2,2,2,2,0,,2,,2,124197,1,2,0,1,1,500.0,170.0,260.0,42,1.0,0.0,3.0,3.0,1.8,1,1,343.667817990589,252.0,14346.121970297178,3,1,2,3,66.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.02460595279552664,7970.067761276209,1,1,1_1,1_0_1,1_2_1,1_0_1 -28193,2,29.0,0.0,9,112,0.0,0.0,0.0,52,46,0.0,0.0,0.0,1561.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2012.0,6,119064,2,1,1,0,1,,53.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,5260.7927253181,0.0,39978.702714567335,1,1,1,2,100.0,4,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03904578923295595,26652.468476378224,7,4,7,7_1,7_0,7_0_0 -28194,1,42.0,118.0,7,400,750.0,0.0,0.0,56,69,0.0,310.55175144583734,1036.630670681948,1050.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,20.0,7,,5,113697,1,3,0,0,2,,250.0,250.0,43,2.0,0.0,2.0,3.0,1.8,1,1,1520.20994800677,750.0,9251.65378382803,1,1,2,3,35.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.11349322235073356,5139.807657682239,1,1,1_1,1_1_1,1_0_1,1_0_0 -28196,2,74.0,0.0,1,400,1110.0,0.0,0.0,0,72,0.0,0.0,1534.213392609283,1278.0,289.01493670395223,0.0,31,2,2,2,2,2,2,1,2,0,,1,,1,116742,2,3,2,0,1,,87.0,,21,0.0,1.0,9.0,4.0,2.5,1,1,1385.34026375146,1110.0,52807.59922113263,0,5,0,1,138.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.02420106232529821,21123.039688453053,5,3,5,5_1,5_0,5_1_0 -28197,1,35.0,363.0,5,111,640.0,180.0,0.0,85,67,0.0,0.0,884.5915056485956,820.0,0.0,326.4575221525408,60,0,0,0,0,0,0,0,0,2,10.0,2,,3,101887,2,1,0,1,1,,0.0,365.0,42,1.0,0.0,5.0,5.0,2.4,1,1,273.468211873249,640.0,31006.263114937727,6,1,2,3,84.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.026446269805565602,12919.27629789072,2,1,2_1,2_0_1,2_2_1,2_0_0 -28198,2,41.0,0.0,9,111,972.0,0.0,0.0,45,33,0.0,0.0,1343.4733492038044,972.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,120629,2,1,1,0,1,,129.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1041.84907250638,972.0,81077.8254489494,1,1,1,2,126.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011988481371050326,38608.48830902352,9,5,9,9_1,9_2,9_0_0 -28199,1,65.0,115.0,8,111,220.0,460.0,0.0,78,78,0.0,0.0,304.0783300667047,770.0,154.82943037711726,834.2803343898265,71,0,0,0,0,0,0,0,0,0,,2,,6,133549,2,2,0,1,1,420.0,0.0,300.0,41,0.0,4.0,3.0,2.0,1.5,2,2,271.031739457663,220.0,14462.806616208316,6,5,2,3,61.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.053240012152072136,9641.871077472211,1,1,1_1,1_0_1,1_2_1,1_0_0 -28200,2,59.0,0.0,9,400,352.0,0.0,0.0,52,64,0.0,330.220029037407,486.52532810672756,771.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,1,1.0,1,2012.0,6,116615,2,1,1,0,1,,130.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,4792.74288263622,352.0,35802.0,1,1,0,1,102.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021535109770403887,23868.0,6,3,6,6_1,6_0,6_0_0 -28201,2,53.0,0.0,9,400,1125.0,0.0,0.0,72,38,0.0,0.0,1554.946006022922,1165.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114086,2,2,1,0,1,,275.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,1381.50527758596,1125.0,40993.15417838546,5,1,0,1,107.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02841937936589109,27328.769452256976,7,4,7,7_1,7_0,7_0_0 -28202,1,64.0,334.0,2,111,293.0,113.0,0.0,0,86,0.0,0.0,404.97704867974767,406.0,0.0,204.9427777957617,10,0,0,0,0,0,0,0,0,0,,2,,2,131805,2,1,0,1,1,564.0,0.0,312.0,31,1.0,3.0,4.0,2.0,1.5,2,2,279.42593205768,293.0,11718.577981651375,0,6,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03464584189615016,7812.385321100916,1,1,1_1,1_0_1,1_2_1,1_0_1 -28203,2,29.0,0.0,8,400,596.0,0.0,0.0,63,68,0.0,51.75862524097289,823.7758396352547,727.0,139.3464873394055,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,127404,2,1,4,0,1,,313.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1480.91134230479,596.0,30542.590704944465,1,1,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023802826912201255,16968.10594719137,4,2,4_0,4_1_0,4_0_0,4_0_0 -28204,1,30.0,282.0,2,111,460.0,940.0,0.0,0,81,0.0,0.0,635.800144684928,1400.0,0.0,1704.833726796602,71,2,2,2,1,1,2,2,2,0,,2,,2,127498,1,3,0,0,1,,0.0,234.0,32,1.0,0.0,4.0,4.0,1.9,1,1,305.605769215782,460.0,13945.294823474223,0,4,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.10039228411602809,7339.6288544601175,1,1,1_1,1_0_1,1_2_1,1_0_1 -28205,1,42.0,279.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1330.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124429,2,2,0,1,1,500.0,256.0,407.0,42,1.0,1.0,6.0,7.0,3.3999999999999995,5,5,270.686847130352,0.0,29023.356414777503,6,1,2,3,105.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.045825161672990326,8536.281298463973,1,1,1_1,1_0_1,1_2_1,1_0_1 -28206,0,88.0,0.0,1,400,0.0,0.0,0.0,71,71,2837.8112663342013,0.0,0.0,2203.0,309.6588607542345,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,102826,2,1,1,0,1,,59.0,,41,0.0,3.0,7.0,2.0,1.5,2,1,1412.4925775599,0.0,20473.83528979311,5,5,0,1,240.0,0,0,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10760074840976516,13649.22352652874,3,2,3_0,3_1_0,3_0_0,3_1_0 -28207,2,43.0,0.0,2,111,209.0,155.0,0.0,0,67,0.0,0.0,288.8744135633695,364.0,0.0,281.11619963135456,50,2,1,2,2,1,2,2,2,2,10.0,2,,2,110747,2,2,0,1,1,552.0,0.0,264.0,12,1.0,2.0,3.0,1.0,1.0,1,1,252.603658500696,209.0,18877.882588705732,0,1,2,3,60.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.01928182349315882,18877.882588705732,5,3,5,5_0,5_2,5_0_1 -28208,2,54.0,0.0,1,400,1150.0,0.0,0.0,0,22,0.0,414.0690019277831,1589.5003617123202,1615.0,111.82125527236246,0.0,43,2,2,1,2,1,2,2,2,0,,1,,1,118510,1,2,3,0,1,,0.0,,32,1.0,1.0,3.0,2.0,1.5,1,1,1409.03898321768,1150.0,27155.657211367285,0,1,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.05947195412836355,18103.771474244855,4,2,4_0,4_1_0,4_0_0,4_1_0 -28209,1,41.0,363.0,2,111,247.0,352.0,0.0,0,85,0.0,0.0,341.39703421125483,599.0,0.0,638.405821098302,50,0,0,0,0,0,0,0,0,0,,2,,2,129360,2,2,0,0,1,,0.0,293.0,31,2.0,2.0,5.0,7.0,3.1999999999999993,1,1,256.819778024865,247.0,16735.481909290433,0,6,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.035792216994210056,5229.838096653261,1,1,1_1,1_0_1,1_2_1,1_0_1 -28210,0,67.0,0.0,5,400,1400.0,0.0,0.0,0,75,0.0,0.0,1935.0439186063027,1568.0,289.01493670395223,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,100821,2,2,3,0,1,,330.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1322.39573219643,1400.0,49664.91707771125,0,5,0,1,77.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03157158195888121,49664.91707771125,10,5,10,10_1,10_0,10_0_0 -28211,2,78.0,0.0,8,111,750.0,1350.0,0.0,75,75,0.0,0.0,1036.630670681948,2100.0,0.0,2448.431416144056,71,2,2,2,2,1,2,2,2,0,,1,2001.0,6,105281,2,1,2,0,1,,357.0,,41,0.0,0.0,6.0,2.0,1.5,1,1,238.623548930175,750.0,48892.24706011463,5,5,0,1,137.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.04295159511523332,32594.83137340975,8,4,8,8_1,8_2,8_0_0 -28212,2,34.0,0.0,9,400,635.0,0.0,0.0,21,22,0.0,0.0,877.6806345107159,755.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,110466,2,1,1,0,1,,388.0,,43,2.0,0.0,3.0,4.0,2.1,2,1,1181.48100311847,635.0,10592.317777223614,1,1,0,1,70.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07127807302226684,5043.960846296959,1,1,1_0,1_1_0,1_0_0,1_0_0 -28213,2,63.0,0.0,2,111,170.0,60.0,0.0,72,72,0.0,0.0,234.9696186879082,230.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,2,,2,128896,2,1,0,1,1,415.0,0.0,223.0,41,0.0,1.0,2.0,2.0,1.5,3,3,262.517009419619,170.0,18595.22295928243,5,5,2,3,42.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012368768070360123,12396.815306188286,2,1,2_0,2_0_0,2_2_0,2_0_1 -28214,2,61.0,0.0,2,111,450.0,135.0,0.0,56,77,0.0,0.0,621.9784024091688,585.0,0.0,244.8431416144056,71,2,1,2,1,2,2,2,2,0,,2,,2,107724,2,3,0,1,1,756.0,0.0,321.0,42,3.0,0.0,4.0,4.0,2.5,1,1,266.489215203412,450.0,35103.06869136485,1,5,2,3,74.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01666520967564031,14041.22747654594,3,2,3_0,3_0_0,3_2_0,3_0_1 -28215,0,89.0,0.0,1,400,360.0,0.0,0.0,0,77,2688.452778632401,258.79312620486445,497.582721927335,2618.0,357.8280168715599,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105709,2,3,4,0,2,,180.0,,11,0.0,2.0,6.0,1.0,1.0,3,3,1415.62607915779,360.0,8807.680159442656,0,5,0,1,110.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2972405846496662,8807.680159442656,1,1,1_0,1_1_0,1_0_0,1_1_0 -28216,2,69.0,0.0,5,111,198.0,36.0,0.0,0,75,0.0,0.0,273.6704970600342,445.0,0.0,65.29150443050816,10,0,0,0,0,0,0,0,0,0,,2,,3,106903,2,1,0,1,2,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,305.615141398965,198.0,16180.474367012204,0,5,0,1,60.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027502283919885545,16180.474367012204,4,2,4_0,4_0_0,4_2_0,4_0_0 -28217,2,59.0,0.0,1,400,460.0,0.0,0.0,11,11,0.0,931.655254337512,635.800144684928,1440.0,137.62616033521533,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,111822,2,3,4,0,2,,115.0,,43,2.0,2.0,3.0,2.0,1.5,1,1,1237.61963513275,460.0,32443.714394826253,1,1,0,1,75.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.044384560364322354,21629.14292988417,6,3,6,6_1,6_0,6_1_0 -28218,2,77.0,0.0,2,300,650.0,0.0,0.0,0,86,1493.5848770180007,0.0,898.4132479243549,1714.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106666,2,3,4,0,2,,200.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1426.77506326184,650.0,9743.47040523098,0,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.17591268087393216,9743.47040523098,2,1,2_0,2_1_0,2_0_0,2_0_1 -28219,2,40.0,0.0,9,300,900.0,0.0,0.0,85,62,0.0,641.8069529880638,1243.9568048183376,1520.0,0.0,0.0,50,2,2,1,1,1,2,2,2,2,12.0,1,2008.0,6,130083,2,1,1,0,1,,350.0,,42,1.0,0.0,5.0,4.0,2.3,1,1,1305.63097868143,900.0,29898.751960443446,6,1,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.050838242412625974,12999.457374105847,2,1,2_0,2_1_0,2_0_0,2_0_0 -28220,0,59.0,0.0,2,300,860.0,0.0,0.0,0,56,0.0,0.0,1188.6698357153002,875.0,25.804905062852875,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,127460,2,3,2,0,1,,240.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1474.68088825195,860.0,15194.872180798926,0,1,0,1,45.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05758521622220014,15194.872180798926,3,2,3_0,3_1_0,3_0_0,3_0_1 -28221,1,31.0,150.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,545.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,128074,2,1,0,1,1,,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,2,2,338.71894388104,0.0,5850.80195195104,0,1,2,3,40.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09314962367137745,5850.80195195104,1,1,1_1,1_0_1,1_2_1,1_0_1 -28222,2,58.0,0.0,8,300,1500.0,0.0,0.0,56,47,0.0,517.5862524097289,2073.261341363896,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,122707,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,7.0,3.3999999999999995,1,1,1410.32926428248,1500.0,57809.2514905059,1,1,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03459653858912986,17002.721026619383,4,2,4_0,4_1_0,4_0_0,4_0_0 -28223,2,67.0,0.0,2,111,50.0,30.0,0.0,78,77,0.0,0.0,69.10871137879653,80.0,0.0,54.40958702542347,50,2,2,2,2,1,2,2,2,0,,2,,2,117294,2,2,0,1,1,1240.0,0.0,299.0,41,0.0,0.0,3.0,2.0,1.5,1,1,279.411193756251,50.0,42450.57548186469,5,5,2,3,63.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.0018845445342472872,28300.38365457646,8,4,8,8_0,8_2,8_0_1 -28224,2,32.0,0.0,1,300,1900.0,0.0,0.0,22,46,0.0,0.0,2626.131032394268,4900.0,5160.981012570575,0.0,50,2,2,2,1,1,1,2,2,0,,1,,1,124656,1,1,3,0,1,,238.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1510.83928094389,1900.0,19435.380514017765,4,4,1,2,220.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.25211752332123755,12956.92034267851,2,1,2_0,2_1_0,2_0_0,2_1_0 -28225,2,74.0,0.0,2,111,324.0,0.0,0.0,0,75,1335.2648800540926,0.0,447.8244497346015,1218.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,124344,2,2,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,317.133957851522,324.0,22299.033497647295,0,5,0,1,69.0,8,6,7,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05462120141343828,22299.033497647295,6,3,6,6_0,6_2,6_0_1 -28226,2,40.0,0.0,9,300,389.0,0.0,0.0,0,62,0.0,0.0,537.665774527037,1338.0,1632.590326976492,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,127126,2,2,1,0,1,,298.0,482.0,32,1.0,1.0,3.0,2.0,1.3,1,1,1133.91726478994,389.0,24504.684493341418,0,1,2,3,79.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05460180482485178,18849.75730257032,5,3,5,5_1,5_0,5_0_0 -28227,1,43.0,227.0,2,111,384.0,180.0,0.0,56,67,0.0,0.0,530.7549033891573,564.0,0.0,326.4575221525408,50,2,1,2,2,1,2,2,1,3,25.0,2,,2,102278,2,1,0,1,1,435.0,88.0,214.0,43,2.0,1.0,2.0,2.0,1.5,1,1,270.538763608163,384.0,19670.712757850375,4,1,2,3,40.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.028672067298370442,13113.808505233583,2,1,2_1,2_0_1,2_2_1,2_0_1 -28228,2,42.0,0.0,9,300,1500.0,0.0,0.0,62,46,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,113729,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1299.09979201193,1500.0,61347.11601626309,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024451027161608553,29212.91238869671,8,4,8,8_1,8_0,8_0_0 -28229,0,79.0,0.0,1,300,481.0,0.0,0.0,71,71,4032.679167948602,124.22070057833493,664.8258034640226,3441.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103038,2,3,3,0,1,,238.0,,41,0.0,3.0,6.0,2.0,1.5,2,1,1311.96096628845,481.0,22415.941387411403,5,5,0,1,116.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15350682536725563,14943.960924940935,3,2,3_0,3_1_0,3_0_0,3_1_0 -28230,1,64.0,56.0,2,111,155.0,51.0,0.0,0,78,816.9909277288464,0.0,214.23700527426922,753.0,0.0,92.4962979432199,50,0,0,0,0,0,0,0,0,0,,2,,2,127029,2,1,0,1,1,547.0,38.0,294.0,11,0.0,1.0,3.0,1.0,1.0,1,1,322.297493077497,155.0,13011.56164485192,0,5,2,3,64.0,8,6,7,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05787160838591021,13011.56164485192,2,1,2_1,2_0_1,2_2_1,2_0_1 -28231,2,47.0,0.0,7,300,600.0,0.0,0.0,43,37,0.0,0.0,829.3045365455583,2500.0,3268.621307961364,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,118094,2,1,2,0,1,,436.0,,43,3.0,0.0,5.0,4.0,2.3,3,2,1285.09807446084,600.0,68524.21809278593,1,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036483451684408114,29793.138301211275,8,4,8,8_1,8_0,8_0_0 -28232,2,92.0,0.0,2,111,170.0,0.0,0.0,0,77,0.0,0.0,234.9696186879082,170.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128660,2,1,0,0,1,,0.0,504.0,11,0.0,2.0,1.0,1.0,1.0,2,2,475.95756272783,170.0,11748.817519932994,0,5,2,3,20.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014469541271841078,11748.817519932994,2,1,2_0,2_0_0,2_2_0,2_0_1 -28233,2,54.0,0.0,2,300,1500.0,0.0,0.0,22,46,0.0,0.0,2073.261341363896,3750.0,3870.7357594279315,0.0,50,0,0,0,0,0,0,0,0,2,8.0,8,,2,129265,2,1,0,0,2,,553.0,,43,2.0,2.0,7.0,2.0,1.5,3,2,1778.59817462261,1500.0,57918.022493817516,1,1,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06474668572118973,38612.014995878344,9,5,9,9_0,9_0,9_0_1 -28234,2,43.0,0.0,1,300,1100.0,0.0,0.0,85,63,1792.3018524216009,0.0,1520.3916503335236,2475.0,301.05722573328353,0.0,70,1,2,2,1,2,2,2,2,2,10.0,1,,1,116755,2,2,1,0,1,,235.0,,42,1.0,0.0,6.0,4.0,2.1,3,3,1195.78572199113,1100.0,25561.29758004512,6,1,0,1,130.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.0968260704390904,12172.046466688153,2,1,2_0,2_1_0,2_0_0,2_1_0 -28235,2,78.0,0.0,2,111,191.0,81.0,0.0,0,78,0.0,0.0,263.9952774670027,272.0,0.0,146.90588496864336,10,0,0,0,0,0,0,0,0,0,,2,,2,126654,2,2,0,1,1,,167.0,384.0,11,0.0,2.0,3.0,1.0,1.0,3,3,290.020862642418,191.0,16533.44006014424,0,5,2,3,56.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0164515067046263,16533.44006014424,4,2,4_0,4_0_0,4_2_0,4_0_1 -28236,2,56.0,0.0,5,300,2400.0,0.0,0.0,55,63,0.0,331.2552015422265,3317.2181461822333,2860.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,100057,1,3,3,0,1,,440.0,650.0,43,4.0,2.0,4.0,4.0,2.5,2,2,1501.62524708347,2400.0,51815.67450255105,1,1,2,3,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05519565319677915,20726.269801020422,5,3,5,5_1,5_0,5_0_0 -28237,2,53.0,0.0,1,300,200.0,0.0,0.0,0,47,0.0,0.0,276.4348455151861,260.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119690,1,3,4,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1375.90300444293,200.0,21350.1327055727,0,4,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012177910254025547,21350.1327055727,6,3,6,6_1,6_0,6_1_0 -28238,2,42.0,0.0,8,400,600.0,0.0,0.0,52,52,1792.3018524216009,0.0,829.3045365455583,1950.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,103870,2,1,1,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1474.81813254929,600.0,43093.57147066739,1,1,1,2,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04525036875459049,17237.428588266957,4,2,4_0,4_1_0,4_0_0,4_0_0 -28239,2,55.0,0.0,7,400,510.0,0.0,0.0,11,11,0.0,0.0,704.9088560637246,710.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,105617,2,3,2,0,2,,500.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,1334.50795579747,510.0,19758.240874965286,1,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035934373130333014,7903.296349986114,1,1,1_0,1_1_0,1_0_0,1_0_0 -28240,2,54.0,0.0,1,400,507.0,0.0,0.0,85,31,0.0,232.913813584378,700.7623333809968,2232.0,2580.4905062852877,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,116085,2,3,1,0,1,,230.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,1266.68325411242,507.0,15478.279623260289,6,1,0,1,40.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14420207247359831,10318.853082173526,2,1,2_0,2_1_0,2_0_0,2_1_0 -28241,2,39.0,0.0,8,400,600.0,0.0,0.0,67,62,2091.018827825201,797.0828287109825,829.3045365455583,2835.0,111.82125527236246,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,118891,1,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,1278.65361040315,600.0,41653.497451404066,1,1,1,2,140.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06806151160073684,19834.998786382886,5,3,5,5_1,5_0,5_0_0 -28242,2,75.0,0.0,1,400,410.0,0.0,0.0,77,78,2539.0942909306013,0.0,566.6914333061316,2425.0,541.9030063199103,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118939,2,2,2,0,2,,308.0,,41,0.0,5.0,5.0,2.0,1.5,1,1,1311.96096628845,410.0,27186.976429179143,5,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08919712003712574,18124.650952786094,4,2,4_0,4_1_0,4_0_0,4_1_0 -28243,0,86.0,0.0,2,400,788.0,0.0,0.0,71,71,0.0,0.0,1089.1532913298333,916.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101300,2,3,1,0,2,,293.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,1133.94619004355,788.0,14772.795168562174,5,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06200586886558407,9848.530112374783,2,1,2_0,2_1_0,2_0_0,2_0_1 -28244,2,42.0,0.0,9,400,984.0,0.0,0.0,52,54,0.0,372.6621017350048,1360.0594399347156,1484.0,240.84578058662683,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,101387,2,1,1,0,1,,229.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1213.74972795804,984.0,46056.832809436964,1,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03222106057835421,21931.825147350934,6,3,6,6_1,6_0,6_0_0 -28245,2,75.0,0.0,2,400,517.0,0.0,0.0,0,75,1493.5848770180007,517.5862524097289,714.5840756567561,2017.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132186,2,3,3,0,1,,186.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1473.53722792585,517.0,14708.858860855165,0,5,0,1,155.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.137128244895181,14708.858860855165,3,2,3_0,3_1_0,3_0_0,3_0_1 -28246,2,83.0,0.0,1,400,304.0,0.0,0.0,0,72,3584.6037048432017,0.0,420.1809651830829,2704.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,132551,2,2,2,0,1,,190.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1561.3714310199,304.0,12260.065658452393,0,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.22055346809140416,12260.065658452393,2,1,2_0,2_1_0,2_0_0,2_1_0 -28247,0,87.0,0.0,9,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,510.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102630,2,1,1,3,1,681.0,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1397.44646545959,0.0,24887.41373645096,0,5,5,0,80.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020492285996476865,24887.41373645096,7,4,7,7_1,7_0,7_0_0 -28248,0,36.0,0.0,1,400,0.0,0.0,0.0,0,43,2389.735803228801,41.40690019277831,0.0,6265.0,3.4406540083803834,0.0,70,2,2,2,1,1,2,2,2,2,30.0,1,,1,127372,2,2,3,0,1,,394.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1715.21714880554,0.0,25283.874652161976,0,1,5,0,200.0,0,0,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.24778638900048067,25283.874652161976,7,4,7,7_1,7_0,7_1_0 -28249,0,91.0,0.0,1,400,0.0,0.0,0.0,0,71,3868.384831476622,0.0,0.0,5907.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131178,2,1,3,0,2,,170.0,,21,1.0,2.0,6.0,3.0,2.0,1,1,1425.33940555228,0.0,27024.225899388603,0,5,0,1,200.0,0,0,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.21858165417917264,13512.112949694301,3,2,3_0,3_1_0,3_0_0,3_1_0 -28250,2,70.0,0.0,5,400,1260.0,0.0,0.0,0,78,0.0,10.351725048194577,1741.5395267456724,1398.0,220.20185653634454,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,128101,2,2,2,0,1,,84.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1518.18264196623,1260.0,14624.228171078585,0,5,0,1,98.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09559478856906353,14624.228171078585,3,2,3_0,3_1_0,3_0_0,3_0_0 -28251,0,69.0,0.0,1,111,429.0,80.0,0.0,74,74,2240.377315527001,0.0,592.9527436300742,2009.0,0.0,145.09223206779592,71,2,2,1,2,2,2,2,1,0,,2,,1,112586,1,3,0,1,1,,478.0,,41,0.0,2.0,7.0,2.0,1.5,4,4,1589.37114877443,429.0,103241.27364692895,5,5,0,1,136.0,7,5,7,1,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.01945927175279245,68827.5157646193,10,5,10,10_0,10_2,10_1_0 -28252,2,70.0,0.0,1,111,397.0,1300.0,0.0,0,77,0.0,0.0,548.7231683476444,1697.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,1,,1,109675,1,2,3,0,1,,232.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,1403.43995390802,397.0,25525.726281458537,0,5,0,1,110.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0664819477137727,25525.726281458537,7,4,7,7_1,7_2,7_1_0 -28253,2,61.0,0.0,2,111,0.0,0.0,1223.0,78,56,0.0,0.0,624.8470085062932,1223.0,0.0,1398.1895824001683,60,0,0,0,0,0,0,0,0,1,20.0,1,,2,102445,2,3,4,0,1,,89.0,,42,1.0,4.0,5.0,2.0,1.5,1,1,1023.39971658041,0.0,24100.340779703612,5,1,0,1,80.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.050746170403945655,16066.893853135742,4,2,4_0,4_1_0,4_2_0,4_0_1 -28254,2,55.0,0.0,2,111,250.0,0.0,0.0,0,52,0.0,0.0,345.54355689398267,976.0,0.0,0.0,43,1,2,2,1,2,2,2,2,1,20.0,2,,2,129281,2,2,0,1,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1619.23876358879,250.0,18013.285636034245,0,1,1,2,50.0,7,5,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.05418223081121771,18013.285636034245,4,2,4_0,4_0_0,4_2_0,4_0_1 -28255,1,36.0,95.0,1,111,587.0,1470.0,0.0,56,64,0.0,0.0,811.3362715870712,2057.0,0.0,2666.06976424575,70,0,0,0,0,0,0,0,0,0,,1,,1,117715,2,2,2,0,1,,592.0,706.0,43,2.0,0.0,6.0,5.0,2.4,3,3,1256.9491326397,587.0,26948.292117367815,1,1,2,3,118.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07633136790417568,11228.455048903257,2,1,2_1,2_1_1,2_2_1,2_1_0 -28256,2,42.0,0.0,1,111,340.0,180.0,0.0,0,22,0.0,0.0,469.9392373758164,520.0,0.0,326.4575221525408,50,0,0,0,0,0,0,0,0,0,,1,,1,108780,2,1,1,0,2,,230.0,,22,1.0,0.0,3.0,3.0,2.0,2,2,1275.55644554144,340.0,24446.799688765237,0,1,0,1,60.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021270677823689577,12223.399844382619,2,1,2_0,2_1_0,2_2_0,2_1_0 -28257,0,90.0,0.0,2,111,306.0,2063.0,0.0,0,77,0.0,0.0,422.9453136382348,2369.0,0.0,3741.565934448287,71,1,2,2,1,1,2,2,2,0,,1,,2,125415,1,2,1,0,2,,178.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1360.22417334122,306.0,18362.24143914086,0,5,0,1,180.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.129014750614827,18362.24143914086,4,2,4_0,4_1_0,4_2_0,4_0_1 -28258,2,49.0,0.0,7,111,80.0,0.0,0.0,0,52,0.0,0.0,110.57393820607444,80.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,5,107321,2,2,0,0,1,,0.0,414.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1650.76024264085,80.0,21018.512790661407,0,1,2,3,53.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.003806168438118241,21018.512790661407,5,3,5,5_0,5_2,5_0_0 -28259,1,31.0,155.0,2,111,0.0,0.0,518.0,0,53,0.0,0.0,264.653107445838,518.0,0.0,592.2013112700631,20,2,2,2,1,2,2,2,2,1,20.0,2,,2,117930,2,2,0,0,1,,0.0,317.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1659.31168175924,0.0,16522.732210067545,0,1,2,3,84.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03135074716543399,16522.732210067545,4,2,4_1,4_0_1,4_2_1,4_0_1 -28260,2,52.0,0.0,9,111,866.0,764.0,0.0,78,68,0.0,0.0,1196.9628810807558,1630.0,0.0,1385.6308162474509,41,2,2,2,1,2,2,2,2,2,5.0,1,2009.0,6,102903,2,3,1,0,1,,950.0,438.0,42,2.0,0.0,4.0,6.0,3.3,1,1,1151.8539491369,866.0,55158.528464864125,5,1,2,3,80.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.029551187193804614,16714.705595413372,4,2,4_0,4_1_0,4_2_0,4_0_0 -28261,1,58.0,71.0,2,111,0.0,0.0,1300.0,0,63,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,125480,1,2,0,0,2,,0.0,291.0,12,1.0,0.0,3.0,1.0,1.0,2,1,1824.52293125433,0.0,7861.249250892835,0,1,2,3,60.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.16536811879515886,7861.249250892835,1,1,1_1,1_0_1,1_2_1,1_0_1 -28262,2,89.0,0.0,2,111,232.0,1144.0,0.0,0,78,0.0,0.0,320.6644207976159,1376.0,0.0,2074.8189185694814,71,0,0,0,0,0,0,0,0,0,,1,,2,104858,2,1,2,0,2,,148.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1219.00093459659,232.0,10162.36888570754,0,5,0,1,160.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13540150091729308,10162.36888570754,2,1,2_0,2_1_0,2_2_0,2_0_1 -28263,2,59.0,0.0,5,111,500.0,100.0,0.0,85,42,1493.5848770180007,0.0,691.0871137879653,2134.0,0.0,181.36529008474488,31,0,0,0,0,0,0,0,0,2,25.0,1,,3,113336,2,2,4,0,1,,450.0,700.0,42,1.0,0.0,6.0,3.0,2.0,3,3,1493.67819254648,500.0,38441.236769039424,6,1,2,3,100.0,7,5,7,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05551330236384912,19220.618384519712,5,3,5,5_1,5_2,5_0_0 -28264,1,81.0,171.0,9,111,413.0,917.0,0.0,77,78,0.0,0.0,570.8379559888593,1330.0,0.0,1663.1197100771105,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101913,2,1,1,0,1,,395.0,780.0,41,0.0,2.0,4.0,2.0,1.5,1,1,1439.78074848853,413.0,16891.695796039294,5,5,2,3,100.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07873691404695163,11261.130530692863,2,1,2_1,2_1_1,2_2_1,2_0_0 -28265,2,74.0,0.0,6,111,252.0,1276.0,0.0,77,77,0.0,0.0,348.3079053491345,1528.0,0.0,2314.2211014813447,31,0,0,0,0,0,0,0,0,0,,1,,4,102778,1,1,2,0,2,,285.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1245.04577466291,252.0,29988.65834161373,5,5,0,1,58.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05095259623134498,19992.43889440915,5,3,5,5_1,5_2,5_0_0 -28266,1,91.0,333.0,1,111,0.0,0.0,700.0,0,77,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,50,2,2,2,2,2,1,1,2,0,,2,,1,116202,2,3,0,0,1,,0.0,479.0,21,1.0,2.0,4.0,2.0,1.5,1,1,1652.00141647746,0.0,23776.784824375332,0,5,2,3,70.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.029440481762798242,15851.189882916888,3,2,3_1,3_0_1,3_2_1,3_1_0 -28267,2,58.0,0.0,1,111,1250.0,0.0,0.0,34,38,2987.1697540360015,62.110350289167464,1727.717784469913,3410.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,105908,2,2,3,0,1,,836.0,,43,2.0,2.0,6.0,4.0,2.3,1,1,1238.37244856457,1250.0,88582.25492388815,1,1,0,1,150.0,7,5,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038495294604206545,38514.02387995137,9,5,9,9_1,9_2,9_1_0 -28268,2,66.0,0.0,1,111,634.0,2289.0,0.0,0,78,0.0,0.0,876.29846028314,2923.0,0.0,4151.451490039811,71,0,0,0,0,0,0,0,0,0,,1,,1,122094,2,2,2,0,1,,532.0,,21,0.0,2.0,5.0,2.0,1.5,1,1,1142.79831015875,634.0,32609.91216767722,0,5,0,1,90.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0896353226887027,21739.941445118147,6,3,6,6_1,6_2,6_1_0 -28269,2,67.0,0.0,5,111,307.0,860.0,0.0,54,77,0.0,0.0,424.32748786581067,1167.0,0.0,1559.741494728806,71,0,0,0,0,0,0,0,0,0,,2,,3,118193,2,1,0,0,1,,100.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1669.32311647272,307.0,54347.9440920158,5,5,0,1,97.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021472753376358955,36231.962728010534,9,5,9,9_0,9_2,9_0_0 -28270,1,34.0,305.0,5,111,0.0,0.0,1790.0,55,62,0.0,0.0,914.5348693591699,1790.0,0.0,2046.4099366282105,71,1,2,2,2,1,2,2,2,0,,2,,3,122891,1,3,0,0,1,,0.0,306.0,43,2.0,3.0,4.0,7.0,3.3999999999999995,1,1,1653.56083674026,0.0,50990.0,1,1,2,3,108.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.035104922533830164,14997.058823529414,3,2,3_1,3_0_1,3_2_1,3_0_0 -28271,2,54.0,0.0,6,111,394.0,990.0,0.0,78,43,0.0,0.0,544.5766456649167,1384.0,0.0,1795.5163718389745,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,128193,2,1,1,0,1,,235.0,,42,1.0,7.0,5.0,2.0,1.5,1,1,1222.08508213088,394.0,55637.711978541025,5,1,1,2,95.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024875214144927393,37091.80798569402,9,5,9,9_1,9_2,9_0_0 -28272,1,83.0,84.0,2,111,253.0,798.0,0.0,0,77,0.0,0.0,349.69007957671045,1051.0,0.0,1447.2950148762643,33,0,0,0,0,0,0,0,0,0,,2,,2,120888,2,1,0,1,1,798.0,0.0,364.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1814.78743040189,253.0,16129.162241328619,0,5,2,3,86.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0651614748661258,16129.162241328619,4,2,4_1,4_0_1,4_2_1,4_0_1 -28273,2,56.0,0.0,7,111,250.0,670.0,0.0,0,68,0.0,0.0,345.54355689398267,920.0,0.0,1215.1474435677908,71,0,0,0,0,0,0,0,0,0,,2,,5,113303,2,1,0,1,1,600.0,0.0,330.0,12,1.0,1.0,3.0,1.0,1.0,3,1,1566.65978724956,250.0,19631.022354259425,0,1,2,3,50.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04686459947922089,19631.022354259425,5,3,5,5_0,5_2,5_0_0 -28274,1,50.0,422.0,2,111,270.0,820.0,0.0,85,62,0.0,0.0,373.1870414455012,1090.0,0.0,1487.1953786949082,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,133381,2,3,0,1,1,480.0,0.0,358.0,42,1.0,0.0,5.0,7.0,3.1999999999999997,3,3,1614.61111772981,270.0,24609.274100325452,6,1,2,3,97.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.044292245092494825,7690.3981563517045,1,1,1_1,1_0_1,1_2_1,1_0_1 -28275,2,74.0,0.0,2,111,272.0,963.0,0.0,74,75,0.0,20.703450096389155,375.9513899006531,1255.0,0.0,1746.5477435160933,71,0,0,0,0,0,0,0,0,0,,1,,2,109828,2,1,2,0,1,,236.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,1153.55310172694,272.0,59743.49464557854,5,5,0,1,100.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02100647120569602,39828.99643038569,9,5,9,9_1,9_2,9_0_1 -28276,1,76.0,92.0,2,111,425.0,701.0,0.0,0,77,0.0,0.0,587.4240467197704,1126.0,0.0,1271.3706834940617,50,0,0,0,0,0,0,0,0,0,,2,,2,131823,2,3,0,0,1,,0.0,199.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1561.1155836692,425.0,11338.460185572658,0,5,2,3,80.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09930801727669783,11338.460185572658,2,1,2_1,2_0_1,2_2_1,2_0_1 -28277,2,31.0,0.0,2,111,488.0,1654.0,0.0,43,53,0.0,0.0,674.5010230570541,2142.0,0.0,2999.7818980016805,71,0,0,0,0,0,0,0,0,2,12.0,1,,2,126868,1,1,2,0,1,,455.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,1318.46255521601,488.0,48915.15800071006,1,1,1,2,105.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043790106943310016,18116.72518544817,4,2,4_0,4_1_0,4_2_0,4_0_1 -28278,2,65.0,0.0,8,111,500.0,384.0,0.0,0,78,0.0,0.0,691.0871137879653,884.0,0.0,696.4427139254203,71,2,1,2,2,1,2,2,2,0,,2,2000.0,6,112134,2,1,0,0,1,,0.0,435.0,11,0.0,0.0,3.0,1.0,1.0,3,2,1761.90230015254,500.0,15527.998251142471,0,5,2,3,49.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.05692942423759996,15527.998251142471,3,2,3_0,3_0_0,3_2_0,3_0_0 -28279,2,72.0,0.0,8,111,370.0,928.0,0.0,0,77,0.0,0.0,511.40446420309434,1298.0,0.0,1683.0698919864326,30,0,0,0,0,0,0,0,0,0,,2,1999.0,6,123057,2,1,0,1,1,,220.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1599.06499840596,370.0,42262.86803964181,0,5,0,1,81.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030712539404152583,42262.86803964181,9,5,9,9_0,9_2,9_0_0 -28280,2,76.0,0.0,5,111,2630.0,0.0,0.0,75,72,0.0,0.0,3635.1182185246976,2630.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,129192,2,1,2,0,1,,847.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1153.55310172694,2630.0,63604.79425090059,5,5,0,1,150.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041349084309989126,42403.19616726706,9,5,9,9_1,9_2,9_0_0 -28281,2,41.0,0.0,6,111,913.0,0.0,0.0,34,54,0.0,0.0,1261.9250697768246,7350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,70.0,1,,4,120475,2,1,2,0,2,,270.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,972.07800207473,913.0,62083.55514062018,1,1,1,2,100.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11838883877303967,34490.86396701121,9,5,9,9_1,9_2,9_0_0 -28282,2,75.0,0.0,5,111,300.0,0.0,0.0,77,75,0.0,46.5827627168756,414.65226827277917,3810.0,5960.933069519014,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,119614,2,2,2,0,1,,199.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,812.353012169636,300.0,33529.80806425043,5,5,0,1,124.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.113630235899329,22353.205376166952,6,3,6,6_1,6_2,6_0_0 -28283,2,50.0,0.0,6,111,450.0,0.0,0.0,0,68,0.0,258.79312620486445,621.9784024091688,723.0,39.567521096374406,0.0,71,2,2,2,1,1,2,2,2,2,20.0,1,,4,126140,2,1,3,0,1,,900.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,939.501279265189,450.0,19784.69625687174,0,1,0,1,100.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.03654339650268239,19784.69625687174,5,3,5,5_1,5_2,5_0_0 -28284,2,39.0,0.0,5,111,595.0,1153.0,0.0,55,46,0.0,0.0,822.3936654076787,1748.0,0.0,2091.1417946771085,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,123259,2,1,2,0,1,,516.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,767.369930322993,595.0,63404.14244940231,1,1,1,2,95.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027569176594335876,30192.44878542967,8,4,8,8_1,8_2,8_0_0 -28285,2,53.0,0.0,7,111,998.0,0.0,0.0,21,56,1418.9056331671006,0.0,1379.4098791207787,2048.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,127091,2,1,2,0,1,,323.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,804.812237471386,998.0,16280.815441125294,1,1,0,1,96.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12579222505199325,10853.876960750196,2,1,2_0,2_1_0,2_2_0,2_0_0 -28286,2,29.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,2102.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,126851,2,2,2,0,1,,179.0,400.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1019.85907539338,0.0,21363.5585597986,0,1,2,3,90.0,7,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09839184769317832,21363.5585597986,6,3,6,6_1,6_2,6_0_0 -28287,1,65.0,72.0,7,111,1310.0,0.0,0.0,78,78,0.0,0.0,1810.6482381244691,1310.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,5,103029,2,2,2,0,2,,340.0,750.0,41,0.0,1.0,4.0,2.0,1.5,3,3,902.086194356523,1310.0,25067.131729314453,5,5,2,3,95.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.05225966872261003,16711.4211528763,4,2,4_1,4_1_1,4_2_1,4_0_0 -28288,2,57.0,0.0,6,111,1100.0,0.0,0.0,75,52,0.0,0.0,1520.3916503335236,1220.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,118411,2,1,2,0,1,,400.0,,42,1.0,4.0,5.0,2.0,1.5,1,1,843.302425550514,1100.0,45316.353988415955,5,1,1,2,108.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02692184813261596,30210.90265894397,8,4,8,8_1,8_2,8_0_0 -28289,2,51.0,0.0,5,111,825.0,1950.0,0.0,52,48,0.0,0.0,1140.2937377501428,2775.0,0.0,3536.6231566525253,33,0,0,0,0,0,0,0,0,2,25.0,1,,3,103168,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,3.0,2.0,2,2,972.192813011755,825.0,50052.60620228146,1,1,0,1,250.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05544166848745455,25026.30310114073,7,4,7,7_1,7_2,7_0_0 -28290,2,32.0,0.0,8,111,1160.0,0.0,0.0,43,47,0.0,0.0,1603.3221039880796,1285.0,215.04087552377396,0.0,71,0,0,0,0,0,0,0,0,2,17.0,1,2003.0,6,108383,2,2,1,0,1,,153.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,841.155349296458,1160.0,41913.73753883999,1,1,1,2,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030658206007260404,23285.40974379999,6,3,6,6_1,6_2,6_0_0 -28291,2,65.0,0.0,5,111,1320.0,0.0,0.0,0,22,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,129974,2,2,1,0,1,,260.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,939.501279265189,1320.0,23023.16464026569,0,1,0,1,85.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05733356037820381,23023.16464026569,6,3,6,6_1,6_2,6_0_0 -28292,2,33.0,0.0,9,111,1674.0,0.0,0.0,54,38,0.0,0.0,2313.759656962108,1674.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2009.0,6,122504,2,1,1,0,1,,379.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,885.32219102817,1674.0,49948.2712935689,1,1,1,2,144.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033514673414043385,23784.891092175665,6,3,6,6_1,6_2,6_0_0 -28293,2,82.0,0.0,2,111,314.0,0.0,0.0,78,77,1702.6867598005208,0.0,434.0027074588422,2244.0,1359.0583333102513,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102870,2,2,2,0,1,,336.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,877.676980326022,314.0,25755.77000653762,5,5,0,1,80.0,7,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08712610803056568,17170.513337691747,4,2,4_0,4_1_0,4_2_0,4_0_1 -28294,2,69.0,0.0,6,111,1046.0,0.0,0.0,0,75,0.0,0.0,1445.7542420444233,1166.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,128977,2,1,2,0,1,,184.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,939.501279265189,1046.0,37843.787670917794,0,5,0,1,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030810869412420047,37843.787670917794,9,5,9,9_1,9_2,9_0_0 -28295,2,50.0,0.0,8,111,1800.0,0.0,0.0,21,21,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,125363,2,1,2,0,1,,480.0,,43,2.0,2.0,5.0,3.0,1.8,1,1,929.072918850286,1800.0,52424.11595905057,1,1,1,2,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03433534294419028,29124.508866139204,8,4,8,8_1,8_2,8_0_0 -28296,2,44.0,0.0,5,111,824.0,0.0,0.0,38,37,0.0,0.0,1138.9115635225667,2124.0,2236.4251054472493,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,120134,2,2,1,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,848.379772947393,824.0,120987.98437373724,1,1,0,1,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017555462313008453,57613.32589225583,10,5,10,10_1,10_2,10_0_0 -28297,2,72.0,0.0,6,111,1410.0,0.0,0.0,75,78,0.0,0.0,1948.865660882062,1601.0,328.5824578003266,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,125934,2,1,2,0,1,,131.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,834.121686040361,1410.0,48908.140659847726,5,5,0,1,120.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03273483674496704,32605.427106565152,8,4,8,8_1,8_2,8_0_0 -28298,2,46.0,0.0,2,111,480.0,0.0,0.0,0,53,2539.0942909306013,207.03450096389156,663.4436292364467,2410.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,2,7.0,1,,2,115505,2,1,2,0,1,,367.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,816.397537264306,480.0,28338.79270577326,0,1,0,1,92.0,7,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0850424372351271,28338.79270577326,8,4,8,8_1,8_2,8_0_1 -28299,2,39.0,0.0,9,111,2100.0,0.0,0.0,31,22,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,2005.0,6,107743,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,929.183398131263,2100.0,74336.41692130125,1,1,1,2,200.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028249949176636206,41298.00940072291,9,5,9,9_1,9_2,9_0_0 -28300,2,66.0,0.0,5,111,416.0,0.0,0.0,77,78,373.3962192545002,51.75862524097289,574.9844786715871,940.0,385.3532489386029,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,121826,2,2,2,0,1,,283.0,,41,1.0,2.0,5.0,3.0,2.0,1,1,903.73730995784,416.0,23937.094381692343,6,5,0,1,130.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039269594922888146,11968.547190846171,2,1,2_0,2_1_0,2_2_0,2_0_0 -28301,2,54.0,0.0,7,111,1062.4,0.0,0.0,56,47,0.0,207.03450096389156,1468.4218993766688,1397.0,231.21194936316178,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,106640,2,1,2,0,1,,258.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,896.759010130397,1062.4,40722.412323393415,1,1,1,2,100.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034305433305518565,20361.206161696708,5,3,5,5_1,5_2,5_0_0 -28302,2,39.0,0.0,9,111,1750.0,0.0,0.0,47,43,0.0,0.0,2418.8048982578784,1750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,117857,2,1,1,0,1,,310.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,802.211319948937,1750.0,49498.080228599814,1,1,1,2,170.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035354906532089225,23570.51439457134,6,3,6,6_1,6_2,6_0_0 -28303,2,66.0,0.0,5,111,2125.0,0.0,0.0,75,77,0.0,310.55175144583734,2937.1202335988523,2465.0,68.81308016760767,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,118511,2,2,1,0,1,,653.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,843.302425550514,2125.0,67875.94498443349,5,5,0,1,179.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03631625313747481,45250.62998962233,10,5,10,10_1,10_2,10_0_0 -28304,2,41.0,0.0,9,111,3188.0,0.0,0.0,22,31,0.0,51.75862524097289,4406.371437512066,3343.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,126762,1,2,1,0,1,,448.0,,43,2.0,0.0,8.0,5.0,2.4,1,1,809.382039321947,3188.0,121625.03065733117,1,1,0,1,200.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027486118457134338,50677.096107221325,10,5,10,10_1,10_2,10_0_0 -28305,2,70.0,0.0,2,111,0.0,0.0,216.0,0,77,0.0,0.0,110.3572803249054,285.0,118.70256328912323,246.9410873249684,60,0,0,0,0,0,0,0,0,0,,1,,2,109334,1,1,4,0,2,,73.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,842.829346298007,0.0,19563.601926880903,0,5,0,1,120.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014567869509162447,19563.601926880903,5,3,5,5_1,5_2,5_0_1 -28306,2,48.0,0.0,7,111,455.0,893.0,0.0,46,47,0.0,0.0,628.8892735470484,1348.0,0.0,1619.5920404567719,50,1,2,2,1,2,2,2,2,2,15.0,1,,5,129671,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,745.987050834484,455.0,47097.59414959413,1,1,1,2,92.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.028621419508572003,20477.214847649622,5,3,5,5_1,5_2,5_0_0 -28307,2,68.0,0.0,5,111,745.0,0.0,0.0,74,74,2778.0678712534814,0.0,1029.7197995440683,2605.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131810,2,3,1,0,1,,308.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,843.302425550514,745.0,77090.11484031338,5,5,0,1,135.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03379162173251486,51393.40989354226,10,5,10,10_1,10_2,10_0_0 -28308,2,44.0,0.0,8,111,500.0,0.0,0.0,63,43,2987.1697540360015,362.31037668681023,691.0871137879653,2940.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,110604,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,813.042020566193,500.0,51498.430950448565,1,1,0,1,138.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0570891179738825,20599.372380179426,5,3,5,5_1,5_2,5_0_0 -28309,2,63.0,0.0,5,111,1068.0,0.0,0.0,75,75,0.0,0.0,1476.1620750510938,1148.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,113497,2,1,3,0,1,,160.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,765.179779883033,1068.0,91368.01689862483,5,5,0,1,100.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012564571706461962,60912.01126574989,10,5,10,10_1,10_2,10_0_0 -28310,2,64.0,0.0,6,111,1614.0,0.0,0.0,54,77,0.0,0.0,2230.829203307552,1794.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109767,2,1,2,0,1,,221.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,883.081376283644,1614.0,41989.90958462452,1,5,0,1,117.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042724550201387206,27993.273056416347,7,4,7,7_1,7_2,7_0_0 -28311,2,52.0,0.0,7,111,1600.0,0.0,0.0,52,62,0.0,103.51725048194578,2211.478764121489,1700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,118385,2,1,3,0,1,,494.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,839.098694697762,1600.0,38639.09276526724,1,1,0,1,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04399689222331155,19319.54638263362,5,3,5,5_1,5_2,5_0_0 -28312,2,42.0,0.0,9,111,1084.0,0.0,0.0,62,65,0.0,0.0,1498.2768626923087,1214.0,223.64251054472493,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,104909,2,1,1,0,1,,380.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,915.604119322417,1084.0,47155.323091494625,1,1,1,2,120.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02574470749875889,26197.401717497014,7,4,7,7_1,7_2,7_0_0 -28313,2,69.0,0.0,6,111,689.0,0.0,0.0,75,77,0.0,0.0,952.3180427998161,839.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,115600,2,1,2,0,1,,376.0,,41,0.0,2.0,6.0,2.0,1.5,4,2,843.302425550514,689.0,60452.111376642046,5,5,0,1,143.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013878754288211335,40301.40758442803,9,5,9,9_1,9_2,9_0_0 -28314,2,55.0,0.0,8,111,1600.0,0.0,0.0,45,47,0.0,124.22070057833493,2211.478764121489,1720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,109105,2,1,3,0,1,,410.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,833.528484410137,1600.0,58057.62011843478,1,1,0,1,97.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029625740712266226,38705.08007895652,9,5,9,9_1,9_2,9_0_0 -28315,2,66.0,0.0,2,111,1201.0,820.0,0.0,75,64,0.0,578.6614301940768,1659.9912473186926,2580.0,0.0,1487.1953786949082,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,107369,2,2,2,0,1,,159.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,788.429887420844,1201.0,48445.40513909065,5,5,0,1,130.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.053255824625526665,32296.936759393768,8,4,8,8_1,8_2,8_0_1 -28316,2,61.0,0.0,9,111,1259.0,0.0,0.0,78,45,0.0,0.0,1740.1573525180966,1259.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,102933,2,1,1,0,1,,105.0,,42,1.0,1.0,5.0,3.0,2.0,1,1,1014.74012906792,1259.0,52653.44250165725,5,1,1,2,180.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023911067162614742,26326.721250828625,7,4,7,7_1,7_2,7_0_0 -28317,2,82.0,0.0,2,111,905.0,0.0,0.0,0,78,3500.9629517301937,0.0,1250.8676759562172,3284.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,0,,3,,2,111942,2,2,0,0,1,,716.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,1215.35625337227,905.0,18358.06461290271,0,5,0,1,50.0,7,5,7,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.17888595934518534,18358.06461290271,4,2,4_0,4_0_0,4_2_0,4_0_1 -28318,2,51.0,0.0,8,111,436.0,1100.0,0.0,31,33,0.0,0.0,602.6279632231058,1536.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,3,50.0,1,2003.0,6,122085,2,1,2,0,1,,305.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,929.183398131263,436.0,92615.87893123087,1,1,1,2,130.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016584629090876636,46307.93946561543,10,5,10,10_1,10_2,10_0_0 -28319,2,50.0,0.0,7,111,610.0,1680.0,0.0,43,37,0.0,0.0,843.1262788213177,2290.0,0.0,3046.936873423714,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,126809,2,1,1,0,1,,411.0,1241.0,43,2.0,0.0,5.0,4.0,2.3,1,1,862.548315486593,610.0,68344.0,4,1,3,4,116.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033506964766475474,29714.782608695656,8,4,8,8_1,8_2,8_0_0 -28320,2,55.0,0.0,6,111,875.0,0.0,0.0,85,33,2987.1697540360015,41.40690019277831,1209.4024491289392,2915.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,111994,2,2,3,0,2,,350.0,,42,1.0,1.0,8.0,2.0,1.5,2,2,868.64188926161,875.0,63768.6764211927,6,1,1,2,160.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04571209822117677,42512.4509474618,9,5,9,9_1,9_2,9_0_0 -28321,2,50.0,0.0,1,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,2766.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,126663,1,1,3,0,2,,174.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,865.158999666662,0.0,51014.80324519089,1,1,1,2,110.0,7,5,7,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05421955636496056,34009.868830127256,9,5,9,9_1,9_2,9_1_0 -28322,2,82.0,0.0,5,111,2584.0,0.0,0.0,86,78,0.0,0.0,3571.5382040562044,2794.0,361.26867087994026,0.0,41,2,2,2,1,2,2,2,2,0,,1,,3,101485,1,3,3,0,1,,683.0,,41,1.0,6.0,6.0,3.0,2.0,1,1,899.034644445096,2584.0,61517.8826588343,6,5,0,1,120.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.045417687983426824,30758.94132941715,8,4,8,8_1,8_2,8_0_0 -28323,2,40.0,0.0,8,111,1083.0,0.0,0.0,52,42,0.0,0.0,1496.8946884647328,1203.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,127890,2,2,1,0,1,,236.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,814.945800264722,1083.0,47313.34556626555,1,1,1,2,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025426229863942235,22530.164555364547,6,3,6,6_1,6_2,6_0_0 -28324,2,51.0,0.0,6,111,1110.0,0.0,0.0,43,62,0.0,0.0,1534.213392609283,1110.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,4,104792,2,1,2,0,1,,336.0,,43,2.0,1.0,7.0,3.0,2.0,1,1,972.192813011755,1110.0,51714.231204025564,1,1,0,1,130.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0214641110223755,25857.115602012782,7,4,7,7_1,7_2,7_0_0 -28325,1,38.0,459.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,2376.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2009.0,6,101836,2,3,1,0,1,,467.0,634.0,32,1.0,0.0,5.0,4.0,2.1,1,1,718.202562614927,0.0,13152.386337329337,0,4,2,3,104.0,7,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.18065162770168897,6263.04111301397,1,1,1_1,1_1_1,1_2_1,1_0_0 -28326,1,41.0,237.0,9,111,1000.0,456.0,0.0,0,45,0.0,0.0,1382.1742275759307,1456.0,0.0,827.0257227864367,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,130541,2,1,1,0,1,,450.0,450.0,32,2.0,0.0,5.0,4.0,2.3,2,2,691.543762392223,1000.0,18149.395267226544,0,4,2,3,92.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08022305859574214,7891.041420533281,1,1,1_1,1_1_1,1_2_1,1_0_0 -28327,2,71.0,0.0,6,111,780.0,0.0,0.0,77,78,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,71,2,2,1,1,2,2,2,2,0,,1,,4,129831,2,1,1,0,1,,270.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,837.317361122628,780.0,19866.299026298537,5,5,0,1,89.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03926247153369908,13244.19935086569,2,1,2_0,2_1_0,2_2_0,2_0_0 -28328,2,50.0,0.0,7,111,1557.0,0.0,0.0,52,42,0.0,215.3158810024472,2152.045272335724,1815.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,5,130442,2,2,2,0,1,,343.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,809.382039321947,1557.0,61500.3271530947,1,1,1,2,125.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029512038130819422,23653.971981959505,6,3,6,6_1,6_2,6_0_0 -28329,2,67.0,0.0,8,112,2200.0,0.0,0.0,77,74,0.0,51.75862524097289,3040.783300667047,2250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,103899,2,2,3,0,1,,360.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1460.18621480794,2200.0,76376.39222841799,5,5,0,1,203.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029459364789985776,50917.59481894533,10,5,10,10_1,10_0,10_0_0 -28330,2,51.0,0.0,9,112,346.0,1311.0,0.0,45,62,0.0,0.0,478.232282741272,1657.0,0.0,2377.6989530110054,43,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,125978,2,1,1,0,1,,237.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,1153.78819954695,346.0,53806.0,1,1,1,2,105.0,4,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030795822027283204,21522.4,6,3,6,6_1,6_0,6_0_0 -28331,2,21.0,0.0,2,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,125397,2,1,0,1,2,612.0,0.0,228.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1673.26737729997,0.0,12804.612648208258,0,1,2,3,59.0,4,0,7,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02733389986997969,12804.612648208258,2,1,2_0,2_0_0,2_0_0,2_0_1 -28332,2,42.0,0.0,7,112,1500.0,0.0,0.0,0,52,0.0,517.5862524097289,2073.261341363896,2065.0,111.82125527236246,0.0,71,2,2,2,1,1,2,2,2,1,20.0,1,,5,130028,1,3,2,0,1,,150.0,560.0,12,1.0,2.0,4.0,1.0,1.0,2,2,1580.12543043204,1500.0,18803.782697040962,0,1,2,3,80.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.1098183292835519,18803.782697040962,5,3,5,5_1,5_0,5_0_0 -28333,2,59.0,0.0,5,112,1800.0,0.0,0.0,78,54,0.0,0.0,2487.913609636675,1870.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,108179,2,1,1,0,1,,200.0,,42,1.0,5.0,4.0,2.0,1.5,2,2,1316.49623996756,1800.0,35997.230029856764,7,1,0,1,90.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.051948441545335226,23998.15335323784,6,3,6,6_1,6_0,6_0_0 -28334,2,27.0,0.0,2,112,518.0,1800.0,0.0,52,63,0.0,155.27587572291867,715.966249884332,2468.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,105174,2,2,3,0,1,,130.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1514.21436067874,518.0,35611.037025666345,1,1,1,2,100.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0693043563494433,19783.909458703525,5,3,5,5_1,5_0,5_0_1 -28335,1,52.0,255.0,2,112,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1423.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,116181,1,1,0,0,2,,132.0,373.0,31,0.0,0.0,3.0,2.0,1.5,1,1,1532.42053955081,0.0,9097.910531697251,0,7,2,3,56.0,4,0,7,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.15640953986547215,6065.273687798167,1,1,1_1,1_0_1,1_0_1,1_0_1 -28336,2,36.0,0.0,2,112,346.0,10.0,0.0,0,52,0.0,0.0,478.232282741272,386.0,51.60981012570575,18.13652900847449,20,2,2,2,2,1,2,2,2,2,2.0,2,,2,121553,1,2,0,1,2,780.0,74.0,271.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1576.29280030885,346.0,17198.81235678115,0,1,2,3,54.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.022443410160691003,17198.81235678115,4,2,4_0,4_0_0,4_0_0,4_0_1 -28337,1,44.0,200.0,7,112,720.0,0.0,0.0,0,62,0.0,0.0,995.16544385467,845.0,215.04087552377396,0.0,41,2,2,2,1,1,2,2,2,0,,2,,5,101305,2,1,0,0,1,,40.0,200.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1909.32896139354,720.0,9725.075307107618,0,4,2,3,40.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.08688878731688872,9725.075307107618,1,1,1_1,1_0_1,1_0_1,1_0_0 -28338,2,30.0,0.0,9,112,900.0,0.0,0.0,48,46,0.0,517.5862524097289,1243.9568048183376,1400.0,0.0,0.0,10,2,2,2,1,1,2,2,2,2,15.0,1,2006.0,6,118800,2,1,1,0,1,,145.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1450.41148489894,900.0,39314.87009336517,1,1,1,2,100.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.03560993579974377,21841.594496313985,6,3,6,6_1,6_0,6_0_0 -28339,2,47.0,0.0,8,112,310.0,2100.0,0.0,54,43,0.0,0.0,428.47401054853844,2410.0,0.0,3808.6710917796427,41,0,0,0,0,0,0,0,0,0,,1,2001.0,6,131600,2,2,2,0,1,,473.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1279.1890600723,310.0,54343.0,1,1,1,2,105.0,4,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044347938096903,25877.619047619046,7,4,7,7_1,7_0,7_0_0 -28340,2,45.0,0.0,6,112,660.0,0.0,0.0,0,53,0.0,207.03450096389156,912.2349902001142,892.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131573,2,1,1,0,1,,445.0,,12,1.0,2.0,6.0,1.0,1.0,2,2,1281.89199397237,660.0,24816.489293462128,0,1,1,2,110.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035943843202470876,24816.489293462128,7,4,7,7_1,7_0,7_0_0 -28341,2,23.0,0.0,1,112,166.0,740.0,0.0,0,52,0.0,0.0,229.44092177760447,926.0,34.40654008380383,1342.1031466271122,43,2,2,1,2,2,2,2,1,2,20.0,1,,1,113948,1,1,2,0,2,,0.0,330.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1463.11930329731,166.0,17235.934279987385,0,1,2,3,50.0,4,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.05372496697641607,17235.934279987385,4,2,4_0,4_1_0,4_0_0,4_1_0 -28342,2,50.0,0.0,8,112,420.0,0.0,0.0,0,34,2987.1697540360015,590.048327747091,580.5131755818909,3040.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,2002.0,6,124274,2,1,2,0,1,,150.0,,32,1.0,1.0,7.0,3.0,2.0,1,1,1463.99026145704,420.0,85150.1564596996,0,1,1,2,240.0,4,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0357016372769531,42575.0782298498,9,5,9,9_1,9_0,9_0_0 -28343,2,41.0,0.0,6,112,2500.0,0.0,0.0,52,38,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,129694,2,2,2,0,1,,170.0,,43,2.0,1.0,7.0,5.0,2.4,2,2,1328.0297664212,2500.0,81835.87166575508,1,1,1,2,180.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030548950589917724,34098.27986073129,9,5,9,9_1,9_0,9_0_0 -28344,2,51.0,0.0,1,112,240.0,0.0,0.0,0,34,0.0,662.510403084453,331.72181461822333,1080.0,344.06540083803833,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,106984,2,1,1,0,1,,96.0,,32,1.0,0.0,7.0,2.0,1.3,3,3,1357.23310250335,240.0,53868.18592963877,0,1,1,2,160.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020048939487412255,41437.06609972213,9,5,9,9_1,9_0,9_1_0 -28345,2,67.0,0.0,2,112,1800.0,0.0,0.0,74,75,0.0,621.1035028916747,2487.913609636675,2460.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104159,2,1,2,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,1236.42958558521,1800.0,73952.71881707852,5,5,0,1,130.0,4,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03326449709151047,49301.81254471902,10,5,10,10_1,10_0,10_0_1 -28346,2,48.0,0.0,1,112,1500.0,2300.0,0.0,21,33,0.0,175.97932581930783,2073.261341363896,3970.0,0.0,4171.401671949133,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,116483,2,2,3,0,1,,260.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,1325.83219409234,1500.0,116155.71826947333,1,1,1,2,177.0,4,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03417825707719246,46462.28730778933,10,5,10,10_1,10_0,10_1_0 -28347,2,65.0,0.0,5,112,300.0,1100.0,0.0,0,75,0.0,258.79312620486445,414.65226827277917,1650.0,0.0,1995.0181909321939,41,0,0,0,0,0,0,0,0,0,,1,,3,111380,2,2,2,0,1,,183.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1419.3599519475,300.0,23797.450911420572,0,5,0,1,100.0,4,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06933515720409167,23797.450911420572,6,3,6,6_1,6_0,6_0_0 -28348,2,58.0,0.0,6,112,2030.0,0.0,0.0,78,75,0.0,0.0,2805.813681979139,2080.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,112055,2,1,1,0,1,,354.0,,41,0.0,2.0,4.0,2.0,1.5,4,2,1233.40647148948,2030.0,43177.95458744741,5,5,0,1,99.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048172731197523945,28785.303058298276,8,4,8,8_1,8_0,8_0_0 -28349,2,71.0,0.0,6,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1186.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,111543,2,1,3,0,1,,71.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1295.3125281741,0.0,21046.849421128387,0,5,0,1,90.0,4,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0563504767991263,21046.849421128387,5,3,5,5_1,5_0,5_0_0 -28350,2,58.0,0.0,2,112,390.0,1290.0,0.0,0,75,0.0,0.0,539.0479487546129,1745.0,111.82125527236246,2339.6122420932093,43,2,1,1,1,1,2,2,2,0,,1,,2,117115,2,2,2,1,2,1240.0,0.0,224.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1211.46033531633,390.0,26970.803583068388,0,5,2,3,67.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.06469959245468936,26970.803583068388,7,4,7,7_1,7_0,7_0_1 -28351,1,46.0,291.0,2,112,415.0,1238.0,0.0,0,52,0.0,0.0,573.6023044440112,1723.0,120.42289029331342,2245.302291249142,71,0,0,0,0,0,0,0,0,0,,1,,2,120519,1,3,4,1,2,,148.0,267.0,32,1.0,0.0,4.0,2.0,1.5,2,2,1105.28290123843,415.0,12165.496007619065,0,4,2,3,85.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.14163006579599477,8110.330671746044,1,1,1_1,1_1_1,1_0_1,1_0_1 -28352,2,69.0,0.0,6,112,1200.0,0.0,0.0,78,75,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104911,2,1,2,0,1,,195.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1387.65639609094,1200.0,33721.847505939906,5,5,0,1,85.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03825413182871354,22481.231670626603,6,3,6,6_1,6_0,6_0_0 -28353,2,83.0,0.0,7,112,1500.0,0.0,0.0,0,77,0.0,0.0,2073.261341363896,1625.0,215.04087552377396,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,124532,2,1,2,0,1,,220.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1401.56491909239,1500.0,14739.471470715727,0,5,0,1,110.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11024818652612735,14739.471470715727,3,2,3_0,3_1_0,3_0_0,3_0_0 -28354,2,75.0,0.0,2,112,350.0,1900.0,0.0,77,72,0.0,0.0,483.76097965157567,2250.0,0.0,3445.940511610153,44,0,0,0,0,0,0,0,0,0,,1,,2,133349,2,2,2,0,1,,350.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1172.2774238968,350.0,29933.67409865344,5,5,0,1,140.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07516618215941677,19955.782732435626,5,3,5,5_1,5_0,5_0_1 -28355,2,58.0,0.0,5,112,234.0,0.0,0.0,0,43,2528.639196791475,103.51725048194578,323.4287692527678,2078.0,87.73667721369978,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,107450,2,1,2,0,1,,81.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1464.75594162277,234.0,43636.18109458911,0,1,1,2,150.0,4,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04762103254397008,43636.18109458911,10,5,10,10_1,10_0,10_0_0 -28356,2,74.0,0.0,2,112,350.0,0.0,0.0,72,74,4480.754631054002,465.827627168756,483.76097965157567,3920.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122451,2,3,4,0,1,,178.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1273.89108281384,350.0,42035.575362476586,5,5,0,1,220.0,4,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09325434387890456,28023.716908317725,7,4,7,7_1,7_0,7_0_1 -28357,2,63.0,0.0,6,112,1200.0,0.0,0.0,75,75,0.0,517.5862524097289,1658.6090730911167,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124024,2,1,2,0,1,,90.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1365.84473653814,1200.0,76532.26276772353,5,5,0,1,120.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022212854272446163,51021.508511815686,10,5,10,10_1,10_0,10_0_0 -28358,2,79.0,0.0,1,112,700.0,0.0,0.0,0,71,0.0,517.5862524097289,967.5219593031513,1200.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,128397,1,3,4,0,2,,35.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,1182.6186486624,700.0,17437.78579254093,0,5,0,1,100.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,0.06881607643748577,11625.19052836062,2,1,2_0,2_1_0,2_0_0,2_1_0 -28359,2,52.0,0.0,5,112,500.0,0.0,0.0,78,21,2240.377315527001,0.0,691.0871137879653,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,111880,2,1,1,0,1,,160.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,1177.11770307305,500.0,22902.866128575366,5,1,0,1,100.0,4,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0873253150401402,15268.577419050243,3,2,3_0,3_1_0,3_0_0,3_0_0 -28360,2,50.0,0.0,1,112,410.0,0.0,0.0,0,63,0.0,745.3242034700096,566.6914333061316,1195.0,111.82125527236246,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,1,103171,1,1,1,0,2,,150.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1432.65761234929,410.0,23468.7810215395,0,1,1,2,200.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05091870766117918,23468.7810215395,6,3,6,6_1,6_0,6_1_0 -28361,2,75.0,0.0,1,112,380.0,0.0,0.0,0,78,1344.2263893162005,0.0,525.2262064788536,1342.0,106.66027425979189,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,118204,2,1,2,0,1,,84.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1323.9924764183,380.0,17405.584403988967,0,5,0,1,62.0,4,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07710169155207704,17405.584403988967,4,2,4_0,4_1_0,4_0_0,4_1_0 -28363,2,47.0,0.0,1,112,1800.0,0.0,0.0,52,56,0.0,414.0690019277831,2487.913609636675,2200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122554,2,1,1,0,1,,210.0,,43,3.0,3.0,6.0,6.0,3.0999999999999996,2,2,1408.75969234756,1800.0,59183.55278039539,2,1,1,2,130.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037172489596277704,19091.468638837225,5,3,5,5_1,5_0,5_1_0 -28364,2,59.0,0.0,6,112,474.0,0.0,0.0,0,45,0.0,372.6621017350048,655.1505838709911,920.0,147.94812236035648,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,4,105555,1,1,2,0,1,,108.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1217.38328959222,474.0,21849.96037974477,0,1,0,1,70.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04210533950683285,21849.96037974477,6,3,6,6_1,6_0,6_0_0 -28365,2,56.0,0.0,9,112,1185.0,0.0,0.0,0,52,0.0,0.0,1637.8764596774777,1185.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,132987,2,1,1,0,1,,261.0,,22,2.0,1.0,4.0,2.0,1.5,1,1,1179.29645584946,1185.0,28311.40366736926,0,1,1,2,78.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04185592540456727,18874.269111579506,5,3,5,5_1,5_0,5_0_0 -28366,2,58.0,0.0,6,112,630.0,0.0,0.0,63,53,0.0,207.03450096389156,870.7697633728362,950.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,100718,2,1,1,0,1,,159.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,1319.72300943247,630.0,49658.545492112295,1,1,0,1,88.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019130644898789816,33105.69699474153,8,4,8,8_1,8_0,8_0_0 -28367,2,76.0,0.0,2,112,548.0,0.0,0.0,0,78,2860.215039489471,0.0,757.43147671161,2591.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115245,2,1,2,0,1,,234.0,,21,1.0,2.0,6.0,2.0,1.5,1,1,1190.43635709522,548.0,62582.351144907734,0,5,0,1,85.0,4,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04140144869278896,41721.56742993849,9,5,9,9_1,9_0,9_0_1 -28368,2,72.0,0.0,1,112,441.0,0.0,0.0,0,77,0.0,393.36555183139393,609.5388343609853,917.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126045,2,1,1,0,1,,176.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,1331.9231804984,441.0,12989.703112818099,0,5,1,2,72.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07059437710282342,12989.703112818099,2,1,2_0,2_1_0,2_0_0,2_1_0 -28369,1,79.0,114.0,1,112,324.0,0.0,0.0,0,77,0.0,0.0,447.8244497346015,324.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,102863,2,1,0,1,1,1452.0,0.0,311.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1570.12946349017,324.0,14260.046454657837,0,5,2,3,114.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.022720823598310937,14260.046454657837,3,2,3_1,3_0_1,3_0_1,3_1_0 -28370,2,59.0,0.0,5,112,800.0,0.0,0.0,63,52,0.0,207.03450096389156,1105.7393820607444,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,101517,2,1,4,0,1,,150.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1365.69015904957,800.0,44849.86827421992,1,1,0,1,160.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022296609521477866,29899.91218281328,8,4,8,8_1,8_0,8_0_0 -28371,2,56.0,0.0,1,112,562.0,0.0,0.0,0,77,0.0,372.6621017350048,776.781915897673,922.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131618,2,1,1,0,1,,0.0,484.0,11,0.0,2.0,3.0,1.0,1.0,3,3,1616.45856772795,562.0,18857.654680409873,0,7,2,3,110.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04889261234366607,18857.654680409873,5,3,5,5_1,5_0,5_1_0 -28372,0,83.0,0.0,1,112,550.0,0.0,0.0,71,71,0.0,683.2138531808421,760.1958251667618,1338.0,220.20185653634454,0.0,70,2,2,2,2,2,2,2,1,0,,1,,1,125744,2,1,4,0,2,,330.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1216.76149796814,550.0,14591.575073130112,5,5,0,1,80.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.09169674920590865,9727.716715420074,1,1,1_0,1_1_0,1_0_0,1_1_0 -28373,2,70.0,0.0,7,112,600.0,0.0,0.0,75,75,2240.377315527001,134.5724256265295,829.3045365455583,2368.0,237.40512657824647,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,104414,2,1,1,0,1,,350.0,,41,0.0,1.0,5.0,2.0,1.5,3,2,1138.38251212487,600.0,31700.046968136172,5,5,0,1,95.0,4,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07470020477825268,21133.364645424113,5,3,5,5_1,5_0,5_0_0 -28374,2,62.0,0.0,5,112,600.0,0.0,0.0,77,52,0.0,527.9379774579235,829.3045365455583,1270.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,110864,2,1,1,0,1,,200.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1236.42958558521,600.0,37426.097857707275,5,1,0,1,110.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03393354030197046,24950.731905138182,7,4,7,7_1,7_0,7_0_0 -28375,1,45.0,230.0,2,112,2500.0,0.0,0.0,0,52,0.0,414.0690019277831,3455.435568939826,2932.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,123444,1,3,3,0,2,,280.0,625.0,32,1.0,0.0,4.0,2.0,1.5,3,2,1392.79088133011,2500.0,23175.804960616508,0,1,2,3,95.0,4,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.12651124761286414,15450.536640411005,3,2,3_1,3_1_1,3_0_1,3_0_1 -28376,2,78.0,0.0,5,112,240.0,0.0,0.0,0,77,0.0,0.0,331.72181461822333,1440.0,2064.39240502823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,110931,2,1,1,0,1,,110.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1462.36389614796,240.0,27328.60156051982,0,5,0,1,90.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05269204854156503,27328.60156051982,7,4,7,7_1,7_0,7_0_0 -28377,2,63.0,0.0,1,112,720.0,0.0,0.0,75,75,0.0,207.03450096389156,995.16544385467,1124.0,350.9467088547991,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,119226,1,2,3,0,1,,140.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1451.73229030469,720.0,48808.51160622107,5,5,0,1,120.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02302877024950575,32539.007737480715,8,4,8,8_1,8_0,8_1_0 -28378,2,54.0,0.0,1,112,640.0,840.0,0.0,0,46,0.0,0.0,884.5915056485956,1480.0,0.0,1523.468436711857,70,0,0,0,0,0,0,0,0,0,,1,,1,115166,1,1,4,0,2,,500.0,,22,1.0,0.0,4.0,2.0,1.5,1,1,1207.79523095874,640.0,9996.709847285922,0,4,0,1,70.0,4,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14804871028659652,6664.473231523948,1,1,1_0,1_1_0,1_0_0,1_1_0 -28379,2,59.0,0.0,1,112,380.0,0.0,0.0,0,33,0.0,745.3242034700096,525.2262064788536,1953.0,1467.4389345742336,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,105311,2,2,3,0,1,,133.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,1360.55971916884,380.0,53769.15506180064,0,1,1,2,140.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03632193955354666,35846.103374533755,9,5,9,9_1,9_0,9_1_0 -28380,2,58.0,0.0,1,112,390.0,0.0,0.0,0,69,0.0,155.27587572291867,539.0479487546129,610.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129462,2,2,4,0,1,,112.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1463.49888448667,390.0,7560.528147193583,0,4,0,1,120.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08068219417004986,7560.528147193583,1,1,1_0,1_1_0,1_0_0,1_1_0 -28381,2,58.0,0.0,9,112,0.0,0.0,0.0,11,37,0.0,207.03450096389156,0.0,1619.0,172.03270041901916,0.0,12,0,0,0,0,0,0,0,0,0,,7,2005.0,6,104669,1,3,0,0,2,,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,1,1445.36808749143,0.0,41179.55528942423,1,1,0,1,56.0,4,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03931562613100373,27453.036859616153,7,4,7,7_1,7_0,7_0_0 -28382,2,42.0,0.0,9,112,0.0,0.0,1980.0,0,45,0.0,0.0,1011.6084029782996,2100.0,206.439240502823,2263.6266338122105,71,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,102687,2,2,2,0,1,,120.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,668.431458530268,0.0,32224.10557037717,0,1,0,1,137.0,8,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06516860477053794,24787.773515674748,7,4,7,7_1,7_0,7_0_0 -28383,2,64.0,0.0,5,112,200.0,0.0,0.0,0,68,1332.2777103000567,0.0,276.4348455151861,1188.0,165.1513924022584,0.0,50,2,2,1,1,1,2,2,2,1,20.0,2,,3,125712,2,1,0,1,1,892.0,0.0,296.0,12,1.0,4.0,3.0,1.0,1.0,2,2,954.462033373226,200.0,22579.01764522507,0,1,2,3,60.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.05261522085090509,22579.01764522507,6,3,6,6_0,6_0,6_0_0 -28384,1,82.0,114.0,5,112,593.0,0.0,0.0,0,77,1953.609019139545,0.0,819.6293169525268,1901.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,115385,2,1,0,1,1,,168.0,295.0,21,1.0,5.0,4.0,2.0,1.5,1,1,949.654754736145,593.0,22965.827906248654,0,5,2,3,120.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08277515653954573,15310.551937499104,3,2,3_1,3_0_1,3_0_1,3_0_0 -28385,2,66.0,0.0,8,112,2003.0,0.0,0.0,77,72,0.0,0.0,2768.494977834589,2003.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,115808,2,1,2,0,1,,227.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,718.524179501069,2003.0,23514.331048437216,5,5,0,1,115.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08518209579826092,15676.220698958145,3,2,3_0,3_1_0,3_0_0,3_0_0 -28386,2,45.0,0.0,1,112,2400.0,0.0,0.0,22,21,0.0,0.0,3317.2181461822333,2480.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,4.0,1,,1,100551,2,1,1,0,1,,245.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,776.000291899491,2400.0,45094.560729642384,1,1,1,2,120.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05499554624488893,22547.280364821192,6,3,6,6_1,6_0,6_1_0 -28387,2,59.0,0.0,6,112,900.0,0.0,0.0,0,54,0.0,279.4965763012536,1243.9568048183376,1215.0,77.41471518855863,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,4,125198,2,1,2,0,1,,160.0,,12,1.0,3.0,4.0,1.0,1.0,2,2,802.24072564118,900.0,27498.133334625833,0,1,0,1,92.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044184817391588686,27498.133334625833,7,4,7,7_1,7_0,7_0_0 -28388,2,53.0,0.0,7,112,994.0,0.0,0.0,52,62,0.0,553.8172900784099,1373.881182210475,1579.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,9.0,1,,5,128020,2,1,2,0,1,,269.0,,43,3.0,0.0,5.0,4.0,2.5,2,1,653.734517334324,994.0,81727.03208268939,1,1,0,1,115.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019320412839688182,32690.812833075754,8,4,8,8_1,8_0,8_0_0 -28389,1,35.0,350.0,8,112,850.0,800.0,0.0,22,22,0.0,414.0690019277831,1174.848093439541,2050.0,0.0,1450.922320677959,43,2,2,2,2,1,2,2,1,0,,1,2000.0,6,111370,2,3,3,0,1,,210.0,650.0,43,2.0,0.0,6.0,3.0,1.8,1,1,921.336787829486,850.0,18492.059518585436,1,1,2,3,180.0,8,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,1,0.11085839291938512,10273.366399214132,2,1,2_1,2_1_1,2_0_1,2_0_0 -28390,2,35.0,0.0,9,112,489.0,0.0,0.0,54,22,0.0,0.0,675.88319728463,2339.0,3182.6049577518547,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,127069,2,1,1,0,1,,210.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,709.004956923025,489.0,44359.80303646413,1,1,1,2,105.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052727916714989075,21123.715731649587,5,3,5,5_1,5_0,5_0_0 -28391,2,74.0,0.0,2,112,100.0,0.0,0.0,0,75,3733.962192545002,0.0,138.21742275759306,2600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,114538,2,1,3,0,1,,251.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,801.929673336328,100.0,54380.51259176654,0,5,0,1,120.0,8,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04781124480230905,54380.51259176654,10,5,10,10_1,10_0,10_0_1 -28392,2,39.0,0.0,8,112,1596.0,0.0,0.0,0,43,0.0,0.0,2205.9500672111853,1626.0,51.60981012570575,0.0,71,2,2,2,2,1,2,2,2,2,15.0,1,2002.0,6,118233,2,1,2,0,1,,178.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,713.191105554174,1596.0,26851.4301286214,0,1,1,2,97.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.06055543381530426,20654.946252785692,5,3,5,5_1,5_0,5_0_0 -28393,2,55.0,0.0,2,112,242.0,45.0,0.0,0,21,4704.792362606702,0.0,334.4861630733752,3437.0,0.0,81.6143805381352,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,104790,2,1,1,0,1,,39.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,714.057780398593,242.0,12487.667940447947,0,1,0,1,75.0,8,0,7,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.275231533733168,12487.667940447947,2,1,2_0,2_1_0,2_0_0,2_0_1 -28394,2,75.0,0.0,2,112,420.0,2778.0,0.0,0,75,0.0,0.0,580.5131755818909,3198.0,0.0,5038.327758554213,70,0,0,0,0,0,0,0,0,0,,1,,2,124668,2,1,2,0,1,,785.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,698.846100725259,420.0,68070.84869358425,0,5,0,1,102.0,8,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046980463170006204,45380.56579572283,10,5,10,10_1,10_0,10_0_1 -28395,0,95.0,0.0,5,112,1000.0,0.0,0.0,0,71,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,109841,2,3,1,0,1,,0.0,,11,0.0,4.0,2.0,1.0,1.0,2,2,751.857331327241,1000.0,18814.0,0,5,5,0,58.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05315190815350271,18814.0,5,3,5,5_1,5_0,5_0_0 -28396,2,40.0,0.0,1,112,660.0,0.0,0.0,43,35,2240.377315527001,476.1793522169506,912.2349902001142,2748.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124062,2,1,1,0,2,,174.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,728.943025767849,660.0,77759.36872044203,1,1,1,2,120.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03533979307213155,37028.270819258105,9,5,9,9_1,9_0,9_1_0 -28397,2,44.0,0.0,7,112,196.0,0.0,0.0,0,62,0.0,0.0,270.9061486048824,420.0,385.3532489386029,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,122728,2,1,0,0,1,,0.0,244.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1067.08765840966,196.0,15208.865701384704,0,1,2,3,52.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027615471675955475,15208.865701384704,3,2,3_0,3_0_0,3_0_0,3_0_0 -28398,2,64.0,0.0,1,112,2640.0,0.0,0.0,71,78,0.0,51.75862524097289,3648.939960800457,2690.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121314,2,2,3,0,1,,290.0,,41,0.0,4.0,7.0,2.0,1.5,3,3,769.006068465246,2640.0,33045.74801632142,7,5,0,1,120.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0814023032152699,22030.498677547614,6,3,6,6_1,6_0,6_1_0 -28399,2,64.0,0.0,5,112,714.0,0.0,0.0,0,75,2530.132781668493,0.0,986.8723984892144,2462.0,92.89765822627035,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124640,1,2,2,0,2,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,831.876697146839,714.0,29066.909132549838,0,5,0,1,120.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08470112830961418,29066.909132549838,8,4,8,8_1,8_0,8_0_0 -28400,2,54.0,0.0,8,112,1190.0,0.0,0.0,0,46,0.0,0.0,1644.7873308153573,1240.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,109074,2,1,1,0,2,,136.0,,32,1.0,1.0,5.0,2.0,1.3,2,2,667.930896187593,1190.0,27892.959239750373,0,1,1,2,107.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044455663142147744,21456.12249211567,6,3,6,6_1,6_0,6_0_0 -28401,2,64.0,0.0,1,112,1020.0,0.0,0.0,74,34,4480.754631054002,103.51725048194578,1409.817712127449,4120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,1.0,1,,1,102387,2,2,2,0,1,,650.0,,42,1.0,3.0,11.0,2.0,1.5,1,1,770.890924057477,1020.0,142538.3787284638,5,1,0,1,144.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028904496015410817,95025.58581897587,10,5,10,10_1,10_0,10_1_0 -28402,2,77.0,0.0,1,112,420.0,2938.0,0.0,71,71,0.0,144.92415067472407,580.5131755818909,3498.0,0.0,5328.512222689805,71,0,0,0,0,0,0,0,0,0,,1,,1,126991,2,1,2,0,1,,144.0,,41,0.0,2.0,4.0,2.0,1.5,4,2,674.499303796362,420.0,18031.944784038922,5,5,0,1,100.0,8,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.19398905896696592,12021.296522692615,2,1,2_0,2_1_0,2_0_0,2_1_0 -28403,2,76.0,0.0,1,112,444.0,0.0,0.0,0,71,0.0,258.79312620486445,613.6853570437131,790.0,165.1513924022584,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,100965,2,2,3,0,1,,69.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,767.056783829273,444.0,16251.0,0,5,0,1,100.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.048612393083502556,16251.0,4,2,4_0,4_1_0,4_0_0,4_1_0 -28404,2,60.0,0.0,6,112,710.0,0.0,0.0,0,46,0.0,828.1380038555662,981.3437015789107,1600.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100698,2,1,2,0,1,,115.0,,12,1.0,3.0,8.0,1.0,1.0,1,1,829.928334234432,710.0,69742.14710264471,0,4,0,1,160.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022941651016926117,69742.14710264471,10,5,10,10_1,10_0,10_0_0 -28405,2,68.0,0.0,9,112,2000.0,0.0,0.0,71,13,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,3.0,1,2005.0,6,116010,2,1,1,0,1,,120.0,,42,1.0,4.0,4.0,2.0,1.5,1,1,731.72664114454,2000.0,27064.99531241399,5,1,0,1,180.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0738961886715219,18043.330208275995,4,2,4_0,4_1_0,4_0_0,4_0_0 -28406,2,57.0,0.0,5,112,1620.0,0.0,0.0,0,75,0.0,0.0,2239.1222486730076,1665.0,77.41471518855863,0.0,33,2,2,1,2,1,1,2,1,0,,1,,3,133508,2,1,3,0,2,,216.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,733.921971758337,1620.0,6654.006692341818,0,7,0,1,75.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.2502251766467668,6654.006692341818,1,1,1_0,1_1_0,1_0_0,1_0_0 -28407,2,42.0,0.0,8,112,480.0,0.0,0.0,64,43,1493.5848770180007,0.0,663.4436292364467,1600.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,132805,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,697.846118933895,480.0,55399.70077758544,1,1,1,2,110.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028881022416051665,24086.82642503715,6,3,6,6_1,6_0,6_0_0 -28408,2,69.0,0.0,6,112,3600.0,0.0,0.0,74,75,0.0,0.0,4975.82721927335,3675.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111301,1,1,2,0,1,,330.0,,41,0.0,1.0,7.0,2.0,1.5,1,1,773.885406303336,3600.0,59891.85753779931,5,5,0,1,150.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061360594763330084,39927.90502519954,9,5,9,9_1,9_0,9_0_0 -28409,2,84.0,0.0,2,111,397.0,82.0,0.0,72,74,0.0,0.0,548.7231683476444,479.0,0.0,148.7195378694908,20,0,0,0,0,0,0,0,0,0,,2,,2,115829,2,2,0,1,1,,629.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1582.48561103272,397.0,42213.993621154885,5,5,0,1,88.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011346948225243408,28142.662414103255,8,4,8,8_0,8_2,8_0_1 -28410,1,36.0,327.0,1,111,0.0,0.0,0.0,45,52,0.0,0.0,0.0,3043.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,1,119256,2,2,0,0,1,,0.0,420.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1539.57266319535,0.0,12740.349146344168,4,1,2,3,80.0,8,6,7,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.23884745740058358,8493.566097562778,1,1,1_1,1_0_1,1_2_1,1_1_0 -28414,2,42.0,0.0,8,111,490.0,620.0,0.0,0,43,0.0,0.0,677.265371512206,1110.0,0.0,1124.4647985254182,42,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,128269,2,1,0,0,1,,0.0,406.0,32,1.0,0.0,3.0,4.0,2.3,3,3,1210.58550850513,490.0,17264.543969148788,0,1,2,3,69.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06429361829559681,7506.3234648473,1,1,1_0,1_0_0,1_2_0,1_0_0 -28417,2,40.0,0.0,1,111,595.0,959.0,0.0,54,48,0.0,0.0,822.3936654076787,1554.0,0.0,1739.2931319127035,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,120712,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1031.43409008569,595.0,64867.967140000954,1,1,1,2,98.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023956354245633867,27028.319641667065,7,4,7,7_1,7_2,7_1_0 -28418,2,68.0,0.0,1,111,40.0,91.0,0.0,0,77,0.0,0.0,55.28696910303722,131.0,0.0,165.04241397711786,43,0,0,0,0,0,0,0,0,0,,2,,1,102226,2,2,0,0,1,,210.0,470.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1701.89288030516,40.0,20869.61820822682,0,5,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.006277067394954053,20869.61820822682,5,3,5,5_0,5_2,5_1_0 -28419,2,60.0,0.0,2,111,238.0,1096.0,0.0,0,42,0.0,0.0,328.95746616307144,1334.0,0.0,1987.763579328804,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,106119,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1438.24089125799,238.0,36355.167312789294,0,1,0,1,118.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03669354588641146,36355.167312789294,9,5,9,9_0,9_2,9_0_1 -28420,1,28.0,160.0,2,111,0.0,0.0,360.0,0,52,0.0,0.0,183.92880054150902,360.0,0.0,411.56847887494735,20,0,0,0,0,0,0,0,0,0,,2,,2,127684,2,2,0,1,1,856.0,0.0,400.0,22,2.0,0.0,3.0,2.0,1.5,1,1,1433.89322612961,0.0,17076.320387396754,0,4,2,3,64.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02108182511413287,11384.213591597836,2,1,2_1,2_0_1,2_2_1,2_0_1 -28422,1,36.0,319.0,2,111,229.0,74.0,0.0,52,67,0.0,0.0,316.5178981148881,303.0,0.0,134.21031466271123,50,2,2,1,2,1,1,2,2,0,,2,,2,119948,1,1,0,1,1,636.0,0.0,284.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1272.91409496892,229.0,31207.117310830272,1,4,2,3,63.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.009709323580965467,14860.53205277632,3,2,3_1,3_0_1,3_2_1,3_0_1 -28423,2,72.0,0.0,1,111,529.0,1085.0,0.0,75,75,0.0,10.351725048194577,731.1701663876672,1624.0,0.0,1967.813397419482,71,0,0,0,0,0,0,0,0,0,,1,,1,120598,2,2,1,0,1,,305.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,999.976725884421,529.0,20432.631340773587,5,5,0,1,100.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07948070774219307,13621.754227182391,3,2,3_0,3_1_0,3_2_0,3_1_0 -28424,2,74.0,0.0,2,111,455.0,1412.0,0.0,77,78,0.0,0.0,628.8892735470484,1867.0,0.0,2560.877895996598,20,0,0,0,0,0,0,0,0,0,,1,,2,110852,2,2,1,0,1,,186.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,1005.70026770287,455.0,38206.06917418373,5,5,0,1,80.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.048866581680733406,25470.712782789153,7,4,7,7_1,7_2,7_0_1 -28425,2,60.0,0.0,5,111,340.0,650.0,0.0,78,77,0.0,0.0,469.9392373758164,990.0,0.0,1178.8743855508417,71,0,0,0,0,0,0,0,0,0,,2,,3,111046,1,1,0,1,1,648.0,0.0,266.0,41,0.0,2.0,4.0,2.0,1.5,1,1,1303.79440753076,340.0,24310.814222460867,5,5,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04072261796502623,16207.209481640579,4,2,4_0,4_0_0,4_2_0,4_0_0 -28426,1,24.0,367.0,2,111,480.0,104.0,0.0,84,63,0.0,0.0,663.4436292364467,584.0,0.0,188.6199016881347,20,0,0,0,0,0,0,0,0,0,,2,,2,119857,2,3,0,3,1,617.0,0.0,360.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1642.96009395507,480.0,5405.367201457547,3,4,2,3,52.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10804076360298437,3002.981778587526,1,1,1_1,1_0_1,1_2_1,1_0_1 -28427,2,81.0,0.0,2,111,262.0,658.0,0.0,0,77,0.0,0.0,362.1296476248938,920.0,0.0,1193.3836087576215,50,0,0,0,0,0,0,0,0,0,,2,,2,126721,2,1,0,0,1,,0.0,411.0,11,0.0,6.0,3.0,1.0,1.0,2,2,1430.43516033157,262.0,16080.89411136057,0,5,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05721074920517344,16080.89411136057,4,2,4_0,4_0_0,4_2_0,4_0_1 -28428,2,85.0,0.0,2,111,165.0,100.0,0.0,0,77,0.0,0.0,228.05874755002856,265.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,103249,2,2,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1528.78277527891,165.0,31486.435476515166,0,5,0,1,64.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008416322647816261,31486.435476515166,8,4,8,8_0,8_2,8_0_1 -28429,2,63.0,0.0,1,111,1111.0,1650.0,0.0,0,74,0.0,0.0,1535.5955668368588,2761.0,0.0,2992.5272863982905,71,0,0,0,0,0,0,0,0,0,,1,,1,126914,2,3,3,0,1,,200.0,,11,0.0,2.0,6.0,1.0,1.0,3,2,1203.616003713,1111.0,87834.69408620217,0,5,0,1,120.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03143404811418045,87834.69408620217,10,5,10,10_1,10_2,10_1_0 -28430,1,54.0,268.0,1,111,700.0,0.0,0.0,85,85,0.0,0.0,967.5219593031513,1556.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,105674,2,3,0,0,1,534.0,0.0,257.0,41,0.0,0.0,3.0,2.0,1.5,1,1,1238.91202226386,700.0,20906.256614229995,5,7,2,3,60.0,8,6,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07442748018987279,13937.504409486663,3,2,3_1,3_0_1,3_2_1,3_1_0 -28431,2,61.0,0.0,5,111,0.0,0.0,0.0,77,74,0.0,0.0,0.0,876.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,106164,2,1,0,1,1,677.0,0.0,560.0,41,0.0,2.0,2.0,2.0,1.5,2,2,1512.37283960062,0.0,32371.043084105757,5,5,2,3,73.0,8,6,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027061222516802916,21580.695389403838,6,3,6,6_0,6_2,6_0_0 -28432,2,65.0,0.0,2,111,150.0,71.0,0.0,0,78,0.0,0.0,207.32613413638958,221.0,0.0,128.76935596016887,42,0,0,0,0,0,0,0,0,0,,2,,2,117445,2,1,0,1,1,756.0,0.0,327.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1406.46679592077,150.0,15800.57576088141,0,5,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013986832084128552,15800.57576088141,3,2,3_0,3_0_0,3_2_0,3_0_1 -28433,2,62.0,0.0,7,111,1000.0,0.0,0.0,56,77,0.0,0.0,1382.1742275759307,1070.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,132447,2,1,0,0,1,,0.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1395.21847427177,1000.0,28805.12961235938,1,5,1,2,136.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.037146161617717444,19203.419741572918,5,3,5,5_0,5_2,5_0_0 -28434,2,66.0,0.0,6,111,2000.0,0.0,0.0,21,22,0.0,51.75862524097289,2764.3484551518613,2050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,103129,2,1,2,0,1,,286.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1096.77665115867,2000.0,682092.76693833,1,1,0,1,100.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0030054562947525675,454728.51129222004,10,5,10,10_1,10_2,10_0_0 -28435,2,24.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,2,,2,115000,2,1,0,1,2,326.0,0.0,450.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1484.2389264299,0.0,18240.41009319187,0,1,2,3,75.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025766964536363405,18240.41009319187,4,2,4_0,4_0_0,4_2_0,4_0_1 -28436,2,42.0,0.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,827.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,121090,2,1,1,0,1,,0.0,465.0,32,1.0,1.0,3.0,2.0,1.3,2,2,958.487038786679,0.0,27309.82289215611,0,1,2,3,77.0,8,6,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030282144386865644,21007.556070889314,5,3,5,5_1,5_2,5_0_0 -28437,0,87.0,0.0,2,111,335.0,618.0,0.0,0,78,0.0,0.0,463.0283662379367,953.0,0.0,1120.8374927237235,71,0,0,0,0,0,0,0,0,0,,1,,2,126669,2,1,1,0,1,,130.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1069.64835856013,335.0,20821.00131923876,0,5,0,1,50.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.045771093589020664,20821.00131923876,5,3,5,5_1,5_2,5_0_1 -28438,2,44.0,0.0,9,111,230.0,350.0,0.0,0,34,0.0,0.0,317.900072342464,580.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,2,60.0,2,2008.0,6,123950,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,5,5,1448.33799921168,230.0,38849.411319463004,0,1,1,2,68.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014929441149843839,38849.411319463004,9,5,9,9_0,9_2,9_0_0 -28439,2,87.0,0.0,2,111,431.0,0.0,0.0,0,75,0.0,0.0,595.7170920852261,431.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126520,2,1,0,1,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1784.64074609725,431.0,39183.657318919526,0,5,0,1,140.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01099948370036135,39183.657318919526,9,5,9,9_0,9_2,9_0_1 -28440,2,80.0,0.0,2,111,484.0,423.0,0.0,75,75,0.0,0.0,668.9723261467504,907.0,0.0,767.1751770584709,71,0,0,0,0,0,0,0,0,0,,2,,2,113584,2,2,0,0,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1322.3047736331,484.0,55253.66844165107,5,5,0,1,89.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01641519967054874,36835.77896110071,9,5,9,9_0,9_2,9_0_1 -28441,2,78.0,0.0,6,111,310.0,802.0,0.0,0,77,0.0,0.0,428.47401054853844,1112.0,0.0,1454.549626479654,50,2,2,2,2,1,2,2,2,0,,2,,4,127841,1,2,0,0,1,,0.0,431.0,11,0.0,0.0,3.0,1.0,1.0,3,2,1430.43516033157,310.0,26861.81702202972,0,5,2,3,60.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.04139705065699891,26861.81702202972,7,4,7,7_0,7_2,7_0_0 -28442,2,42.0,0.0,1,111,1000.0,1100.0,0.0,52,21,0.0,0.0,1382.1742275759307,2100.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,110204,2,1,1,0,1,,220.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1037.32496751844,1000.0,51229.136503775335,1,1,0,1,150.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04099229741741285,20491.654601510134,5,3,5,5_1,5_2,5_1_0 -28443,2,45.0,0.0,2,111,246.0,517.0,0.0,0,54,0.0,0.0,340.0148599836789,763.0,0.0,937.6585497381311,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,111317,2,2,0,0,1,1341.0,0.0,186.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1321.07658057727,246.0,10610.10556280885,0,1,2,3,46.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07191257386491151,10610.10556280885,2,1,2_0,2_0_0,2_2_0,2_0_1 -28444,2,31.0,0.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,201.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,130062,2,2,0,1,1,534.0,0.0,181.0,31,0.0,0.0,3.0,2.0,1.3,2,2,372.582278880495,0.0,8765.281529141728,0,6,2,3,64.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0229313798229686,6742.524253185945,1,1,1_0,1_0_0,1_2_0,1_0_1 -28445,2,85.0,0.0,1,111,298.0,1330.0,0.0,0,78,0.0,0.0,411.88791981762733,1628.0,0.0,2412.158358127107,71,0,0,0,0,0,0,0,0,0,,1,,1,131655,2,2,2,0,1,,114.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1100.8221587458,298.0,19064.260213457634,0,5,0,1,65.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08539539335760744,19064.260213457634,5,3,5,5_1,5_2,5_1_0 -28447,1,39.0,357.0,6,111,572.0,108.0,0.0,0,56,0.0,0.0,790.6036581734322,680.0,0.0,195.8745132915245,10,2,1,2,2,1,2,2,2,3,20.0,2,,4,108072,2,1,0,1,1,686.0,0.0,333.0,32,3.0,0.0,4.0,5.0,2.8,2,2,335.272757119854,572.0,29739.108503420844,0,1,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.022865513938381193,10621.110179793159,2,1,2_1,2_0_1,2_2_1,2_0_0 -28448,2,61.0,0.0,9,111,1300.0,1100.0,0.0,0,90,0.0,0.0,1796.8264958487098,2400.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,2,3.0,1,2004.0,6,117954,2,1,1,0,1,,180.0,,11,0.0,2.0,6.0,1.0,1.0,3,2,1130.69293373666,1300.0,48083.45927435693,0,5,1,2,250.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049913214153456884,48083.45927435693,10,5,10,10_1,10_2,10_0_0 -28449,2,83.0,0.0,5,111,0.0,0.0,2700.0,78,78,0.0,0.0,1379.4660040613178,2700.0,0.0,3086.763591562105,60,0,0,0,0,0,0,0,0,0,,1,,3,118108,2,1,2,0,2,,500.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1130.00692642611,0.0,28801.79468068239,5,5,0,1,120.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09374415830451403,19201.19645378826,5,3,5,5_1,5_2,5_0_0 -28450,2,58.0,0.0,5,111,1600.0,0.0,0.0,77,43,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,3,110782,2,1,2,0,1,,250.0,,42,1.0,1.0,5.0,3.0,2.0,1,1,1139.57518755884,1600.0,54502.90973368552,5,1,0,1,100.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02935623084745364,27251.45486684276,7,4,7,7_1,7_2,7_0_0 -28451,1,57.0,270.0,5,111,0.0,0.0,336.0,0,56,0.0,0.0,171.66688050540841,336.0,0.0,384.1305802832842,70,2,1,2,2,1,2,2,2,0,,2,,3,119473,2,1,0,1,1,481.0,0.0,311.0,12,1.0,3.0,3.0,1.0,1.0,2,2,385.84357907881,0.0,5978.050638452842,0,4,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.05620561288637043,5978.050638452842,1,1,1_1,1_0_1,1_2_1,1_0_0 -28452,1,45.0,44.0,2,111,352.0,138.0,0.0,0,62,0.0,0.0,486.52532810672756,490.0,0.0,250.28410031694796,71,2,2,2,2,1,2,2,2,2,8.0,2,,2,122913,2,3,0,1,1,552.0,0.0,282.0,32,1.0,1.0,3.0,2.0,1.3,3,3,383.708021546976,352.0,14620.77235839935,0,1,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03351396136870324,11246.7479679995,2,1,2_1,2_0_1,2_2_1,2_0_1 -28454,2,64.0,0.0,2,111,218.0,615.0,0.0,0,74,0.0,0.0,301.3139816115529,833.0,0.0,1115.396534021181,71,0,0,0,0,0,0,0,0,0,,2,,2,103528,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,4,4,1631.70073701026,218.0,35096.42177913472,0,5,0,1,78.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023734613324462306,35096.42177913472,9,5,9,9_0,9_2,9_0_1 -28456,2,51.0,0.0,8,111,442.0,773.0,0.0,54,52,0.0,0.0,610.9210085885613,1215.0,0.0,1401.953692355078,50,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,109152,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,1061.25320767502,442.0,41259.94275844876,1,1,1,2,90.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02944744754283998,22922.19042136042,6,3,6,6_1,6_2,6_0_0 -28457,2,56.0,0.0,8,111,540.0,1057.0,0.0,47,33,0.0,0.0,746.3740828910024,1597.0,0.0,1917.0311161957534,41,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,103253,2,1,1,0,1,,0.0,745.0,43,2.0,5.0,4.0,2.0,1.5,3,2,1307.70563061679,540.0,68852.94494417089,1,1,2,3,120.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023194360114805846,45901.96329611392,10,5,10,10_1,10_2,10_0_0 -28458,2,43.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1582.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,123398,2,1,0,0,1,,335.0,532.0,32,1.0,0.0,3.0,3.0,2.0,1,1,1717.7678840091,0.0,21221.333978367886,0,1,2,3,72.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07454762276549734,10610.666989183943,2,1,2_0,2_0_0,2_2_0,2_0_1 -28459,0,75.0,0.0,2,111,285.0,783.0,0.0,77,75,0.0,0.0,393.9196548591402,1068.0,0.0,1420.0902213635525,50,0,0,0,0,0,0,0,0,0,,1,,2,114008,2,1,3,0,1,,98.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1037.51039228074,285.0,47696.127292717945,5,5,0,1,102.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022391755067356547,31797.418195145296,8,4,8,8_1,8_2,8_0_1 -28460,2,39.0,0.0,6,111,1700.0,0.0,0.0,0,37,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129378,2,1,2,0,1,,150.0,,32,1.0,0.0,4.0,3.0,1.6,3,2,1216.16411494305,1700.0,33186.084733298696,0,1,1,2,135.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05122628998455583,20741.302958311684,5,3,5,5_1,5_2,5_0_0 -28461,2,74.0,0.0,1,400,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,920.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120532,2,2,4,0,1,,160.0,,11,0.0,5.0,5.0,1.0,1.0,3,3,823.520129874821,300.0,24435.10874655793,0,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03765074301662752,24435.10874655793,7,4,7,7_1,7_0,7_1_0 -28462,1,44.0,107.0,8,400,0.0,0.0,0.0,77,52,0.0,0.0,0.0,571.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,132689,2,2,3,1,1,1188.0,435.0,365.0,42,1.0,7.0,4.0,3.0,1.8,2,2,973.622191611179,0.0,24076.42976793559,7,1,2,3,78.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0237161408690438,13375.794315519772,3,2,3_1,3_1_1,3_0_1,3_0_0 -28463,2,62.0,0.0,7,400,300.0,0.0,0.0,0,11,0.0,207.03450096389156,414.65226827277917,596.0,165.1513924022584,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,126644,2,1,2,0,1,,83.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,925.593761151537,300.0,26442.340696743642,0,5,0,1,70.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022539608230424057,26442.340696743642,7,4,7,7_1,7_0,7_0_0 -28464,2,66.0,0.0,1,400,0.0,0.0,0.0,78,78,0.0,0.0,0.0,2147.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121684,2,2,4,0,2,,100.0,,41,0.0,1.0,4.0,3.0,2.0,4,3,901.089443567129,0.0,22903.994630691723,5,5,0,1,80.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09373910685095016,11451.997315345861,2,1,2_0,2_1_0,2_0_0,2_1_0 -28465,2,54.0,0.0,1,400,380.0,0.0,0.0,42,42,2539.0942909306013,258.79312620486445,525.2262064788536,2394.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,112091,2,1,1,0,1,,121.0,,43,2.0,3.0,5.0,2.0,1.5,3,2,973.673312340312,380.0,71586.59203027455,1,1,1,2,135.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.033442016613775355,47724.3946868497,10,5,10,10_1,10_0,10_1_0 -28466,1,39.0,117.0,2,400,960.0,0.0,0.0,56,63,0.0,414.0690019277831,1326.8872584728933,1552.0,330.3027848045168,0.0,42,2,2,2,1,2,2,1,2,2,15.0,1,,2,113263,1,3,1,0,2,,170.0,436.0,43,2.0,0.0,4.0,4.0,2.3,1,1,975.753015237266,960.0,24455.3407339428,1,1,2,3,85.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.06346262016484198,10632.756840844697,2,1,2_1,2_1_1,2_0_1,2_0_1 -28467,2,77.0,0.0,1,400,2268.0,0.0,0.0,0,75,0.0,434.77245202417225,3134.7711481422107,2688.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,112482,2,2,4,0,1,,266.0,,11,0.0,0.0,5.0,1.0,1.0,5,5,1081.4955641801,2268.0,25728.718620726115,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.10447469380906695,25728.718620726115,7,4,7,7_1,7_0,7_1_0 -28468,2,46.0,0.0,1,400,1625.0,0.0,0.0,0,22,0.0,0.0,2246.033119810887,1691.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,109201,2,2,0,0,2,,113.0,300.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1308.10176220594,1625.0,9462.10823270607,0,1,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.17871281520063426,9462.10823270607,1,1,1_0,1_0_0,1_0_0,1_1_0 -28469,2,54.0,0.0,6,400,1125.0,0.0,0.0,56,21,2688.452778632401,0.0,1554.946006022922,3025.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,4,125393,2,1,1,0,1,,242.0,,43,3.0,1.0,7.0,3.0,2.0,1,1,1116.2373283994,1125.0,79721.8794014281,1,1,0,1,115.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03794441403931342,39860.93970071405,9,5,9,9_1,9_0,9_0_0 -28470,2,57.0,0.0,6,400,1760.0,0.0,0.0,85,78,0.0,155.27587572291867,2432.626640533638,2030.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104391,2,1,2,0,1,,242.0,,41,1.0,3.0,4.0,3.0,2.0,4,2,1081.06041283129,1760.0,32169.759990261788,7,5,0,1,88.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06310273998359042,16084.879995130894,4,2,4_0,4_1_0,4_0_0,4_0_0 -28471,2,89.0,0.0,1,400,3000.0,0.0,0.0,0,75,0.0,72.46207533736204,4146.522682727792,3070.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104333,2,1,1,0,1,,401.0,,11,0.0,4.0,4.0,1.0,1.0,4,3,1008.76969594865,3000.0,25461.810998553505,0,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.120572727532005,25461.810998553505,7,4,7,7_1,7_0,7_1_0 -28472,2,71.0,0.0,1,400,632.0,0.0,0.0,86,75,4854.150850308502,207.03450096389156,873.5341118279881,4182.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113465,2,2,3,0,1,,261.0,,41,0.0,1.0,5.0,3.0,2.0,1,1,1110.28518860684,632.0,33154.11406941696,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1261381918166738,16577.05703470848,4,2,4_0,4_1_0,4_0_0,4_1_0 -28473,2,51.0,0.0,1,400,900.0,0.0,0.0,54,67,0.0,207.03450096389156,1243.9568048183376,1200.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,104209,1,1,3,0,1,,140.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,1110.28518860684,900.0,48792.592615699985,1,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02459389705833906,24396.296307849992,7,4,7,7_1,7_0,7_1_0 -28474,2,58.0,0.0,2,400,569.0,0.0,0.0,0,75,920.0482842430885,155.27587572291867,786.4571354907044,1335.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102410,2,1,1,0,1,,81.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1048.87780119117,569.0,23761.53797816783,0,5,0,1,95.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05618323196194631,23761.53797816783,6,3,6,6_1,6_0,6_0_1 -28475,2,43.0,0.0,9,400,1970.0,0.0,0.0,47,33,1389.0339356267407,0.0,2722.8832283245833,2960.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,117015,2,1,1,0,1,,182.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,1089.12715299101,1970.0,67759.62090636446,1,1,1,2,270.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043683833533991565,37644.23383686915,9,5,9,9_1,9_0,9_0_0 -28476,2,72.0,0.0,5,400,240.0,0.0,0.0,78,75,4662.971986050198,0.0,331.72181461822333,3362.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,104803,2,1,4,0,2,,217.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,968.928019481669,240.0,42127.48715559801,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0798053771301963,28084.991437065342,8,4,8,8_1,8_0,8_0_0 -28477,2,52.0,0.0,1,400,450.0,0.0,0.0,22,63,2464.4150470797013,207.03450096389156,621.9784024091688,2400.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,118602,2,1,1,0,1,,238.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,1012.0894733409,450.0,54619.76164249441,1,1,1,2,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04394014048814138,27309.880821247207,7,4,7,7_1,7_0,7_1_0 -28478,2,57.0,0.0,1,400,242.0,0.0,0.0,0,62,0.0,0.0,334.4861630733752,2462.0,3819.1259493022258,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,102615,2,1,1,0,1,,103.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,953.645415373269,242.0,23600.225667494138,0,1,0,1,40.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10432103636157367,23600.225667494138,6,3,6,6_1,6_0,6_1_0 -28479,2,49.0,0.0,7,400,0.0,0.0,0.0,11,11,2539.0942909306013,0.0,0.0,2083.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,111191,1,1,4,0,1,,539.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,742.936281108698,0.0,23119.63882527846,1,1,0,1,80.0,0,0,7,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09009656317478877,9247.855530111385,1,1,1_0,1_1_0,1_0_0,1_0_0 -28480,2,71.0,0.0,1,400,800.0,0.0,0.0,77,78,0.0,766.0276535663987,1105.7393820607444,1540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130976,2,1,2,0,1,,130.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,996.901503068019,800.0,14583.943004387032,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10559558546935824,9722.628669591355,1,1,1_0,1_1_0,1_0_0,1_1_0 -28481,1,40.0,21.0,6,400,1500.0,0.0,0.0,11,54,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,2,2,2,1,1,2,2,2,2,5.0,1,,4,132561,2,3,3,0,1,,205.0,491.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1165.57620885257,1500.0,33039.64424187989,1,1,2,3,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.04540000458293836,18355.357912155494,4,2,4_1,4_1_1,4_0_1,4_0_0 -28482,2,36.0,0.0,1,400,720.0,0.0,0.0,11,11,0.0,181.15518834340511,995.16544385467,1045.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,128768,2,1,1,0,1,,205.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,975.060807550997,720.0,31640.60368249259,1,1,1,2,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03302718274551191,13183.584867705247,2,1,2_0,2_1_0,2_0_0,2_1_0 -28483,2,23.0,0.0,1,400,561.0,0.0,0.0,0,11,0.0,414.0690019277831,775.399741670097,1027.0,113.54158227655265,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,1,116934,1,3,2,0,2,,374.0,110.0,12,1.0,0.0,3.0,1.0,1.0,2,2,996.004049612896,561.0,14336.355647647877,0,1,2,3,44.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07163605767331091,14336.355647647877,3,2,3_0,3_1_0,3_0_0,3_1_0 -28484,2,55.0,0.0,7,112,100.0,100.0,0.0,37,38,0.0,0.0,138.21742275759306,200.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,3,75.0,1,,5,108607,2,1,2,0,1,,250.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,893.253343320836,100.0,130091.01664874438,1,1,1,2,140.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0015373851719524584,86727.34443249625,10,5,10,10_1,10_1,10_0_0 -28485,2,30.0,0.0,9,112,600.0,1000.0,0.0,62,46,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,8.0,1,2007.0,6,118755,2,1,1,0,1,,120.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1488.90069540822,600.0,43355.937253033706,4,1,0,1,75.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036903826819890614,24086.63180724095,6,3,6,6_1,6_1,6_0_0 -28486,2,48.0,0.0,1,112,789.0,1800.0,0.0,53,54,0.0,0.0,1090.5354655574092,2589.0,0.0,3264.575221525408,31,0,0,0,0,0,0,0,0,2,8.0,1,,1,124124,2,2,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,859.359878574271,789.0,52388.39254033973,4,1,1,2,150.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04941934414205278,20955.35701613589,5,3,5,5_1,5_1,5_1_0 -28487,2,35.0,0.0,9,211,1550.0,0.0,0.0,54,52,0.0,491.7069397892424,2142.370052742692,2025.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,101398,2,1,1,0,1,,340.0,,43,2.0,0.0,5.0,5.0,2.4,3,3,736.537566127438,1550.0,17581.43454492239,1,1,1,2,112.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11517831464923495,7325.597727050997,1,1,1_0,1_1_0,1_1_0,1_0_0 -28488,2,43.0,0.0,2,112,50.0,100.0,0.0,47,48,0.0,0.0,69.10871137879653,150.0,0.0,181.36529008474488,41,0,0,0,0,0,0,0,0,2,40.0,1,,2,125927,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,838.701152820424,50.0,60826.278046504696,1,1,1,2,185.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002466039429295963,28964.894307859377,8,4,8,8_1,8_1,8_0_1 -28489,2,88.0,0.0,1,111,500.0,0.0,0.0,77,78,0.0,0.0,691.0871137879653,620.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,132218,2,1,0,1,1,920.0,240.0,402.0,41,0.0,3.0,4.0,2.0,1.5,1,1,347.695063589259,500.0,21774.47823824827,5,5,2,3,80.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02847370179051777,14516.318825498847,3,2,3_0,3_0_0,3_2_0,3_1_0 -28490,2,44.0,0.0,9,120,0.0,0.0,0.0,62,47,0.0,0.0,0.0,3047.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,117980,2,1,1,0,1,,146.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1181.54951418298,0.0,46133.27213767569,4,1,1,2,96.0,0,1,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06604777547334659,30755.51475845046,8,4,8,8_1,8_1,8_0_0 -28491,2,31.0,0.0,1,112,661.0,1045.0,0.0,46,54,0.0,0.0,913.6171644276901,1706.0,0.0,1895.267281385584,71,0,0,0,0,0,0,0,0,3,120.0,2,,1,128528,2,2,0,0,1,,150.0,571.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1287.78042969389,661.0,36748.021395885866,1,1,2,3,63.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04642426817001352,17499.0578075647,4,2,4_0,4_0_0,4_1_0,4_1_0 -28492,2,51.0,0.0,7,111,900.0,0.0,0.0,0,22,0.0,103.51725048194578,1243.9568048183376,1000.0,0.0,0.0,71,2,2,2,1,1,2,1,2,2,10.0,1,,5,100867,1,3,1,0,2,,100.0,790.0,22,2.0,0.0,4.0,2.0,1.5,1,1,269.121328424678,900.0,19801.069215602463,0,1,2,3,98.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.05050232333979417,13200.712810401643,2,1,2_0,2_1_0,2_2_0,2_0_0 -28493,2,63.0,0.0,5,111,350.0,60.0,0.0,0,45,0.0,0.0,483.76097965157567,410.0,0.0,108.81917405084694,71,2,1,2,1,1,2,2,2,2,15.0,2,,3,101720,1,3,0,1,2,62.0,160.0,269.0,12,1.0,0.0,2.0,1.0,1.0,2,2,336.738866720269,350.0,42099.18279009655,0,1,2,3,61.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.00973890638315309,42099.18279009655,9,5,9,9_0,9_2,9_0_0 -28494,2,22.0,0.0,1,112,0.0,0.0,0.0,84,48,0.0,0.0,0.0,692.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,2,,1,132554,2,1,0,0,1,,415.0,295.0,42,1.0,0.0,4.0,2.0,1.5,1,1,1319.30818393967,0.0,26174.510200503835,3,1,2,3,70.0,9,3,8,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026437935025301052,17449.673467002558,4,2,4_0,4_0_0,4_1_0,4_1_0 -28495,1,71.0,120.0,2,111,0.0,0.0,370.0,0,77,0.0,0.0,189.03793388988427,370.0,0.0,423.00093662147367,50,0,0,0,0,0,0,0,0,0,,2,,2,126606,2,1,0,1,1,630.0,69.0,335.0,11,0.0,3.0,3.0,1.0,1.0,3,2,321.673914256396,0.0,11424.55320634781,0,5,2,3,58.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03238638687370438,11424.55320634781,2,1,2_1,2_0_1,2_2_1,2_0_1 -28496,2,48.0,0.0,9,111,1200.0,0.0,0.0,34,34,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,125245,2,1,1,0,1,,237.0,,43,2.0,0.0,9.0,5.0,3.0,1,1,626.912503782849,1200.0,63983.90306786868,1,1,0,1,251.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0187547170845008,21327.967689289562,6,3,6,6_1,6_2,6_0_0 -28497,2,28.0,0.0,2,112,60.0,0.0,0.0,0,38,0.0,0.0,82.93045365455583,60.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,8,,2,129729,2,2,0,0,1,,400.0,422.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1490.92311879762,60.0,57825.6592373322,0,1,2,3,70.0,9,3,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0010376016597362723,57825.6592373322,10,5,10,10_0,10_1,10_0_1 -28498,2,81.0,0.0,1,111,0.0,0.0,390.0,0,77,0.0,0.0,199.25620058663478,390.0,0.0,445.86585211452626,71,0,0,0,0,0,0,0,0,0,,2,,1,126516,2,1,0,1,1,,156.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,361.288280060661,0.0,30190.711854543453,0,5,0,1,90.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012917880236775809,30190.711854543453,8,4,8,8_0,8_2,8_1_0 -28499,2,42.0,0.0,9,112,0.0,0.0,520.0,65,56,0.0,0.0,265.67493411551305,520.0,0.0,594.4878028193683,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,114635,1,1,0,0,1,940.0,0.0,1100.0,43,4.0,0.0,4.0,4.0,2.5,2,2,2206.18135490039,0.0,76247.0,1,1,2,3,85.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006819940456673705,30498.8,8,4,8,8_0,8_0,8_0_0 -28500,2,36.0,0.0,2,111,0.0,0.0,620.0,63,67,0.0,0.0,316.7662675992655,620.0,0.0,708.8123802846314,71,2,1,2,2,1,2,2,2,0,,2,,2,102586,2,2,0,1,2,720.0,200.0,307.0,43,2.0,0.0,3.0,2.0,1.5,2,2,353.598561013616,0.0,21943.68165292383,4,1,2,3,70.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028254146674488858,14629.12110194922,3,2,3_0,3_0_0,3_2_0,3_0_1 -28501,2,49.0,0.0,1,400,456.0,0.0,0.0,46,62,2031.275432744481,149.06484069400193,630.2714477746243,2008.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,101112,2,1,2,0,1,,100.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,2521.62055989399,456.0,18976.70736021269,1,1,0,1,140.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10581393083027942,12651.138240141794,2,1,2_0,2_1_0,2_0_0,2_1_0 -28502,2,54.0,0.0,6,112,600.0,1000.0,0.0,0,48,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,103676,2,2,2,0,1,,160.0,380.0,32,1.0,0.0,2.0,2.0,1.3,3,3,1124.89773149372,600.0,20430.82091243167,0,1,2,3,32.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07831305491138821,15716.0160864859,3,2,3_0,3_1_0,3_1_0,3_0_0 -28503,1,67.0,111.0,2,120,196.0,0.0,0.0,0,77,1285.9765791124985,0.0,270.9061486048824,1107.0,86.01635020950958,0.0,43,0,0,0,0,0,0,0,0,0,,8,,2,126964,1,2,0,1,1,578.0,150.0,263.0,11,0.0,3.0,3.0,1.0,1.0,2,2,420.835404362673,196.0,11098.045908222219,0,5,2,3,57.0,0,1,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0997472896719463,11098.045908222219,2,1,2_1,2_0_1,2_1_1,2_0_1 -28504,2,89.0,0.0,2,112,270.0,658.0,0.0,0,77,0.0,0.0,373.1870414455012,980.0,89.45700421788997,1193.3836087576215,71,0,0,0,0,0,0,0,0,0,,8,,2,130604,1,1,0,1,2,,80.0,548.0,11,0.0,0.0,3.0,1.0,1.0,4,2,1481.55320760664,270.0,26576.789532405524,0,5,2,3,79.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03687428080073666,26576.789532405524,7,4,7,7_0,7_1,7_0_1 -28505,2,68.0,0.0,5,120,650.0,0.0,0.0,77,78,2137.3199590127588,0.0,898.4132479243549,2116.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,130116,2,1,1,0,1,,406.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,318.512783175599,650.0,29315.51108041853,5,5,0,1,105.0,0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07218021866292465,19543.674053612354,5,3,5,5_1,5_1,5_0_0 -28506,2,43.0,0.0,9,300,0.0,0.0,0.0,85,47,0.0,0.0,0.0,1573.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,109757,2,1,1,0,1,,594.0,700.0,42,1.0,0.0,4.0,4.0,2.1,3,2,2421.90663979445,0.0,58611.54248009172,6,1,2,3,100.0,0,1,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02683771717037293,27910.2583238532,7,4,7,7_1,7_1,7_0_0 -28507,2,60.0,0.0,1,112,360.0,1200.0,0.0,0,75,0.0,0.0,497.582721927335,1560.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,1,102209,2,1,2,0,1,,70.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,898.092522592709,360.0,35350.46615000603,0,5,0,1,90.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044129545375167105,35350.46615000603,9,5,9,9_1,9_1,9_1_0 -28508,1,76.0,223.0,2,111,157.0,59.0,0.0,0,78,0.0,0.0,217.0013537294211,216.0,0.0,107.00552114999948,31,0,0,0,0,0,0,0,0,0,,8,,2,103327,1,2,0,3,1,360.0,0.0,210.0,11,0.0,1.0,1.0,1.0,1.0,1,1,331.518541437844,157.0,9833.723544784367,0,5,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02196523005922437,9833.723544784367,2,1,2_1,2_0_1,2_3_1,2_0_1 -28509,1,59.0,254.0,2,111,120.0,0.0,0.0,0,67,0.0,0.0,165.86090730911167,270.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117400,1,2,0,1,2,360.0,0.0,350.0,12,1.0,5.0,1.0,1.0,1.0,1,1,425.498399816692,120.0,19566.890137434602,0,4,2,3,48.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013798820257259311,19566.890137434602,5,3,5,5_0,5_2,5_0_1 -28510,2,59.0,0.0,2,112,400.0,1932.0,0.0,0,75,0.0,0.0,552.8696910303722,2362.0,51.60981012570575,3503.977404437271,71,1,2,2,2,1,2,2,2,0,,2,,2,114944,1,3,0,1,2,,190.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1257.92073294184,400.0,31466.49808514826,0,5,1,2,76.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.07506396147446831,31466.49808514826,8,4,8,8_0,8_1,8_0_1 -28511,2,77.0,0.0,5,111,600.0,0.0,0.0,78,78,0.0,0.0,829.3045365455583,800.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,102636,2,2,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,327.507317724507,600.0,30949.729922756313,5,5,0,1,90.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025848367723938892,20633.15328183754,5,3,5,5_0,5_2,5_0_0 -28512,2,30.0,0.0,9,112,1231.0,0.0,0.0,55,85,0.0,0.0,1701.4564741459706,1231.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,100489,2,1,1,0,1,,257.0,,42,1.0,0.0,4.0,3.0,1.8,3,2,2163.63264838446,1231.0,69814.39560181032,1,7,1,2,110.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017632466619364094,38785.775334339065,9,5,9,9_1,9_0,9_0_0 -28513,2,58.0,0.0,5,111,220.0,0.0,0.0,67,67,1595.1486486552246,0.0,304.0783300667047,1696.0,701.8934177095982,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,120643,1,2,0,1,2,1056.0,0.0,339.0,43,2.0,0.0,3.0,2.0,1.5,2,2,339.830048792421,220.0,34536.51946101749,4,1,2,3,52.0,6,5,8,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04910743834260228,23024.346307344993,6,3,6,6_0,6_2,6_0_0 -28514,2,25.0,0.0,2,112,7.0,7.0,0.0,0,47,0.0,0.0,9.675219593031514,14.0,0.0,12.695570305932142,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,101774,2,3,0,0,1,,50.0,366.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1162.85208480668,7.0,44362.79755988484,0,1,3,4,83.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0003155797373035719,44362.79755988484,10,5,10,10_0,10_1,10_0_1 -28515,2,35.0,0.0,2,111,321.0,0.0,0.0,67,67,0.0,0.0,443.6779270518737,453.0,227.0831645531053,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,131768,1,2,0,1,1,,0.0,572.0,43,2.0,0.0,4.0,5.0,2.4,2,1,294.153052949403,321.0,45197.0799938125,1,1,2,3,70.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010022771383948165,18832.116664088542,5,3,5,5_0,5_2,5_0_1 -28516,2,32.0,0.0,5,112,120.0,0.0,0.0,54,48,0.0,0.0,165.86090730911167,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,1,,3,106781,2,1,2,0,1,,281.0,328.0,43,2.0,0.0,5.0,4.0,2.1,4,4,911.54838798097,120.0,63484.74327281283,4,1,2,3,100.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018902179297524177,30230.83012991087,8,4,8,8_1,8_1,8_0_0 -28517,2,34.0,0.0,9,111,680.0,0.0,0.0,56,64,0.0,362.31037668681023,939.8784747516328,1030.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,113666,2,1,1,0,1,,720.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1374.00790062279,680.0,42649.160192438016,1,1,1,2,85.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024150534157121012,23693.977884687785,6,3,6,6_1,6_2,6_0_0 -28518,2,73.0,0.0,7,112,484.0,715.0,0.0,77,78,0.0,0.0,668.9723261467504,1199.0,0.0,1296.761824105926,71,0,0,0,0,0,0,0,0,0,,2,,5,125672,2,1,0,0,1,,180.0,560.0,41,0.0,3.0,4.0,2.0,1.5,1,1,972.899498237787,484.0,34348.07100723956,5,5,2,3,90.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034907346026718244,22898.714004826372,6,3,6,6_0,6_1,6_0_0 -28519,1,28.0,352.0,2,111,540.0,0.0,0.0,0,62,1344.2263893162005,0.0,746.3740828910024,1580.0,240.84578058662683,0.0,71,2,1,2,2,1,2,2,2,1,15.0,2,,2,123208,1,2,0,1,1,477.0,0.0,342.0,32,1.0,0.0,3.0,2.0,1.3,2,2,342.619821800911,540.0,13993.354451135625,0,1,2,3,60.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.11291073955978981,10764.118808565865,2,1,2_1,2_0_1,2_2_1,2_0_1 -28520,2,62.0,0.0,2,112,461.0,1600.0,0.0,74,74,0.0,0.0,637.182318912504,2061.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,0,,1,,2,126708,2,2,2,0,1,,300.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,938.78209836068,461.0,76609.24722270937,5,5,0,1,200.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026902757496213268,51072.83148180624,10,5,10,10_1,10_1,10_0_1 -28521,2,60.0,0.0,7,112,714.0,1120.0,0.0,54,35,0.0,0.0,986.8723984892144,1834.0,0.0,2031.2912489491428,71,0,0,0,0,0,0,0,0,0,,1,,5,111334,2,1,3,0,1,,300.0,,42,1.0,2.0,6.0,2.0,1.5,4,3,845.328325749047,714.0,35647.68998170959,1,5,0,1,112.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05144793395984435,23765.12665447306,6,3,6,6_1,6_1,6_0_0 -28522,2,75.0,0.0,5,111,0.0,0.0,0.0,72,74,0.0,0.0,0.0,1022.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,127033,1,2,0,0,1,,118.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,83.5034542901919,0.0,30428.768095770676,5,5,0,1,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03358663738155238,20285.845397180452,5,3,5,5_0,5_3,5_0_0 -28523,1,50.0,255.0,1,112,600.0,0.0,0.0,0,35,0.0,0.0,829.3045365455583,1196.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,1,129040,2,3,0,0,1,,180.0,370.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1433.69388832039,600.0,8693.343662711564,0,1,2,3,65.0,9,3,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.13757652364877893,8693.343662711564,1,1,1_1,1_0_1,1_1_1,1_1_0 -28524,2,37.0,0.0,5,112,0.0,0.0,0.0,77,63,0.0,0.0,0.0,279.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,106779,2,1,0,0,1,43.0,119.0,333.0,42,1.0,2.0,3.0,2.0,1.5,3,3,294.354322511153,0.0,12134.601910921463,6,4,2,3,65.0,9,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02299210159905556,8089.734607280975,1,1,1_0,1_0_0,1_2_0,1_0_0 -28525,2,31.0,0.0,9,112,443.0,488.0,0.0,43,38,0.0,465.827627168756,612.3031828161372,1381.0,0.0,885.0626156135551,71,0,0,0,0,0,0,0,0,3,45.0,1,2006.0,6,113352,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,827.183361313011,443.0,59561.03214657761,1,1,1,2,115.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023186300677285235,28362.39626027505,8,4,8,8_1,8_1,8_0_0 -28526,2,47.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,644.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,2,2011.0,6,109638,2,2,0,0,1,660.0,0.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,6898.02914752381,0.0,19739.572731233835,0,1,3,4,30.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03262481963355781,19739.572731233835,5,3,5,5_0,5_2,5_0_0 -28527,2,63.0,0.0,9,112,806.0,106.0,0.0,52,75,0.0,0.0,1114.0324274262,912.0,0.0,192.24720748982958,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,116732,2,2,1,0,1,,360.0,931.0,42,2.0,1.0,5.0,4.0,2.5,2,2,985.926042146082,806.0,53170.18989058851,1,5,2,3,107.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017152468363883542,21268.075956235403,5,3,5,5_1,5_1,5_0_0 -28528,1,53.0,199.0,6,112,1117.0,0.0,0.0,85,48,0.0,0.0,1543.8886122023143,1250.0,228.8034915572955,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,,4,116721,1,3,4,0,2,,942.0,471.0,42,1.0,1.0,4.0,6.0,3.0999999999999996,3,3,210.812434758,1117.0,38724.76009548888,6,1,2,3,83.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.032279089577771584,12491.858095318994,2,1,2_1,2_1_1,2_2_1,2_0_0 -28529,2,43.0,0.0,9,211,900.0,0.0,0.0,63,45,0.0,236.01933109883637,1243.9568048183376,1128.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,129545,2,1,1,0,1,,270.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,1511.86464872026,900.0,40798.53591160031,1,1,1,2,101.0,3,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027648050960556014,15691.744581384737,3,2,3_0,3_1_0,3_2_0,3_0_0 -28530,2,39.0,0.0,9,112,240.0,1200.0,0.0,52,67,0.0,0.0,331.72181461822333,1440.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,25.0,2,2007.0,6,117863,2,2,0,0,1,,500.0,545.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1347.88566017174,240.0,38918.190199346805,1,1,2,3,55.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03700069280262083,18532.47152349848,4,2,4_0,4_0_0,4_1_0,4_0_0 -28531,2,48.0,0.0,9,112,275.0,804.0,0.0,0,53,0.0,0.0,380.0979125833809,1079.0,0.0,1458.1769322813489,60,0,0,0,0,0,0,0,0,1,15.0,8,2006.0,6,100260,2,1,0,0,1,,150.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1217.08827684567,275.0,27597.07884855859,0,1,1,2,67.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.039098341020841657,27597.07884855859,7,4,7,7_0,7_1,7_0_0 -28532,1,68.0,359.0,2,112,1350.0,0.0,0.0,0,78,0.0,0.0,1865.9352072275062,1574.0,385.3532489386029,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,108816,1,3,0,0,1,768.0,300.0,556.0,11,0.0,2.0,4.0,1.0,1.0,1,1,343.818349054184,1350.0,10821.564481219988,0,5,2,3,80.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.145450318457332,10821.564481219988,2,1,2_1,2_0_1,2_2_1,2_0_1 -28533,1,31.0,301.0,9,300,0.0,0.0,0.0,85,65,0.0,0.0,0.0,1685.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,105805,2,1,1,0,1,,260.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,1,1,2307.41819177838,0.0,29113.035975690564,6,1,1,2,100.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0578778524303332,10782.605916922432,2,1,2_1,2_1_1,2_0_1,2_0_0 -28534,1,39.0,218.0,5,112,1400.0,0.0,0.0,0,46,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,30.0,1,,3,127057,1,3,3,0,1,,204.0,496.0,32,1.0,0.0,4.0,3.0,1.6,2,2,218.059086764727,1400.0,23053.700351669573,0,1,2,3,90.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.06072777812862526,14408.562719793483,3,2,3_1,3_1_1,3_2_1,3_0_0 -28535,2,45.0,0.0,9,112,0.0,0.0,0.0,67,62,0.0,0.0,0.0,366.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,2011.0,6,101026,2,1,1,0,1,,257.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1631.19569331711,0.0,31754.816048155255,1,1,1,2,100.0,9,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01152581074458034,15121.340975312025,3,2,3_0,3_1_0,3_0_0,3_0_0 -28536,2,37.0,0.0,5,111,550.0,0.0,0.0,85,62,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,133161,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,4,4,323.337232555607,550.0,34400.398291053214,7,4,1,2,72.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015988186978144463,14333.49928793884,3,2,3_0,3_0_0,3_2_0,3_0_0 -28537,2,38.0,0.0,9,112,1800.0,0.0,0.0,56,62,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,114133,2,1,1,0,1,,260.0,,43,2.0,0.0,6.0,5.0,2.4,3,3,2102.92321209478,1800.0,20771.239503923523,1,1,1,2,148.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08665828534979793,8654.683126634802,1,1,1_0,1_1_0,1_0_0,1_0_0 -28538,1,47.0,236.0,5,111,288.0,0.0,0.0,0,85,0.0,0.0,398.066177541868,288.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,105887,2,2,0,1,1,720.0,0.0,224.0,11,0.0,3.0,2.0,1.0,1.0,2,2,325.48438321672,288.0,6079.712665406427,0,7,2,3,43.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04737065974165529,6079.712665406427,1,1,1_1,1_0_1,1_2_1,1_0_0 -28540,2,90.0,0.0,2,112,354.0,0.0,0.0,0,72,4331.396143352202,0.0,489.28967656187945,3314.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,127748,2,1,2,0,1,,231.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,962.591494633464,354.0,12313.420609288152,0,5,0,1,85.0,9,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2691372369348134,12313.420609288152,2,1,2_0,2_1_0,2_1_0,2_0_1 -28541,1,61.0,78.0,5,111,276.0,0.0,0.0,85,86,0.0,981.3435345688459,381.48008681095683,1518.0,505.7761392319164,0.0,50,2,1,2,2,1,2,2,2,0,,2,,3,101548,1,1,0,1,1,,0.0,268.0,41,1.0,2.0,3.0,3.0,2.0,2,2,262.383065180145,276.0,21486.793145301483,6,7,2,3,90.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07064804830272875,10743.396572650741,2,1,2_1,2_0_1,2_2_1,2_0_0 -28542,2,41.0,0.0,9,112,0.0,0.0,1236.0,54,62,0.0,0.0,631.488881859181,1236.0,0.0,1413.0517774706525,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,105257,2,1,1,0,1,,415.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,2851.81097166893,0.0,39668.24867868811,1,1,1,2,107.0,7,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031158421184952507,19834.124339344056,5,3,5,5_1,5_0,5_0_0 -28543,1,64.0,71.0,6,112,400.0,0.0,0.0,0,78,0.0,0.0,552.8696910303722,472.0,123.8635443016938,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,111027,2,1,0,1,1,661.0,0.0,322.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1240.99997040576,400.0,10192.475483781478,0,5,2,3,60.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04630867160299362,10192.475483781478,2,1,2_1,2_0_1,2_1_1,2_0_0 -28544,2,45.0,0.0,2,111,736.0,0.0,0.0,85,22,0.0,0.0,1017.2802314958849,928.0,330.3027848045168,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101449,2,2,0,1,1,,672.0,408.0,42,1.0,2.0,5.0,3.0,2.0,2,2,274.404765878476,736.0,23189.62294818877,7,4,2,3,92.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040017899474837366,11594.811474094386,2,1,2_0,2_0_0,2_2_0,2_0_1 -28545,2,27.0,0.0,9,111,683.0,1242.0,0.0,21,46,0.0,0.0,944.0249974343606,1925.0,0.0,2252.5569028525315,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,106382,2,1,1,0,1,,150.0,,43,2.0,0.0,6.0,3.0,1.8,4,4,1019.20770575628,683.0,37829.378911389904,1,1,1,2,162.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05088637602295947,21016.321617438836,5,3,5,5_1,5_2,5_0_0 -28546,1,39.0,406.0,2,112,0.0,0.0,0.0,0,67,0.0,0.0,0.0,977.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101149,2,2,0,1,1,,366.0,568.0,32,3.0,0.0,4.0,4.0,2.3,2,2,1177.99252541186,0.0,22644.70129050319,0,4,2,3,120.0,9,3,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04314475105969878,9845.52230021878,2,1,2_1,2_0_1,2_1_1,2_0_1 -28547,2,39.0,0.0,2,111,445.0,0.0,0.0,62,42,0.0,0.0,615.0675312712891,550.0,180.63433543997013,0.0,31,2,1,2,2,1,2,2,2,3,75.0,2,,2,131691,2,1,0,1,1,1570.0,241.0,268.0,43,2.0,0.0,3.0,3.0,1.8,2,2,301.728154168452,445.0,34957.1150255791,1,1,2,3,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015733563813762938,19420.619458655055,5,3,5,5_0,5_2,5_0_1 -28549,1,37.0,205.0,2,111,429.0,0.0,0.0,85,47,0.0,0.0,592.9527436300742,709.0,481.69156117325366,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115194,2,1,0,1,1,111.0,246.0,317.0,42,1.0,0.0,4.0,5.0,2.4,1,1,251.047695234062,429.0,34789.83326485428,6,4,2,3,90.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020379517044603168,14495.76386035595,3,2,3_1,3_0_1,3_2_1,3_0_1 -28550,1,57.0,140.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1701.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,8,,1,105258,2,1,0,0,1,,82.0,390.0,11,0.0,3.0,3.0,1.0,1.0,2,2,316.037809048625,0.0,11026.679253767721,0,5,2,3,46.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.15426221810331364,11026.679253767721,2,1,2_1,2_0_1,2_3_1,2_1_0 -28551,1,91.0,127.0,2,111,380.0,0.0,0.0,0,78,0.0,0.0,525.2262064788536,380.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,110575,2,1,0,1,1,,60.0,240.0,11,0.0,0.0,3.0,1.0,1.0,3,2,331.438554961213,380.0,12586.242575566062,0,5,2,3,53.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030191695235375647,12586.242575566062,2,1,2_1,2_0_1,2_2_1,2_0_1 -28552,2,25.0,0.0,9,111,390.0,0.0,0.0,85,46,0.0,0.0,539.0479487546129,390.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,2012.0,6,109642,2,1,0,0,1,,255.0,660.0,42,1.0,0.0,2.0,2.0,1.5,3,3,511.70541602641,390.0,30554.85010835524,7,1,2,3,43.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012763931049144774,20369.900072236826,5,3,5,5_0,5_3,5_0_0 -28553,1,66.0,270.0,5,111,248.0,0.0,0.0,86,78,0.0,0.0,342.7792084388308,465.0,373.3109599092716,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,103801,2,2,0,1,1,1320.0,0.0,264.0,41,0.0,6.0,3.0,2.0,1.5,4,4,277.584609307354,248.0,13117.934221704838,5,5,2,3,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035447654496590965,8745.289481136559,1,1,1_1,1_0_1,1_2_1,1_0_0 -28554,2,78.0,0.0,2,111,700.0,0.0,0.0,0,77,0.0,0.0,967.5219593031513,790.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124798,1,2,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,329.835721136184,700.0,27039.49071829713,0,5,0,1,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02921652660659845,27039.49071829713,7,4,7,7_0,7_2,7_0_1 -28555,2,44.0,0.0,9,111,1800.0,0.0,0.0,22,31,0.0,62.110350289167464,2487.913609636675,1860.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,105367,2,1,1,0,1,,424.0,,43,2.0,0.0,7.0,7.0,3.3999999999999995,1,1,1713.11065260944,1800.0,16890.0,1,1,1,2,200.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11012433392539965,4967.647058823531,1,1,1_0,1_1_0,1_3_0,1_0_0 -28556,1,53.0,203.0,2,111,447.0,0.0,0.0,0,56,0.0,0.0,617.831879726441,569.0,209.8798945112034,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,114994,2,1,0,2,1,1140.0,366.0,263.0,22,1.0,1.0,3.0,2.0,1.5,2,2,331.481198386246,447.0,14258.386760490343,0,4,2,3,54.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.039906337901892644,9505.591173660228,1,1,1_1,1_0_1,1_2_1,1_0_1 -28557,2,30.0,0.0,9,111,1372.0,0.0,0.0,54,46,0.0,0.0,1896.3430402341767,1372.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,40.0,1,2011.0,6,110938,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1232.13679391834,1372.0,49498.91813398882,1,1,1,2,120.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027717777513563586,27499.39896332712,7,4,7,7_1,7_3,7_0_0 -28558,2,71.0,0.0,2,112,480.0,960.0,0.0,0,77,0.0,0.0,663.4436292364467,1440.0,0.0,1741.106784813551,71,2,2,2,1,1,2,2,2,0,,1,,2,126786,1,2,5,0,2,,125.0,346.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1013.8781081689,480.0,18124.374649924834,0,5,2,3,75.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.07945101708686937,18124.374649924834,4,2,4_0,4_1_0,4_1_0,4_0_1 -28559,2,66.0,0.0,5,111,244.0,0.0,0.0,0,77,0.0,0.0,337.25051152852706,314.0,120.42289029331342,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,111504,2,1,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,349.849151715507,244.0,26175.91591185934,0,5,0,1,85.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.011995759806736627,26175.91591185934,7,4,7,7_0,7_2,7_0_0 -28560,1,51.0,140.0,9,112,1950.0,50.0,0.0,85,47,0.0,0.0,2695.2397437730647,2000.0,0.0,90.68264504237244,42,2,2,2,2,2,2,2,1,0,,1,2012.0,6,127809,2,3,1,0,1,,330.0,445.0,42,1.0,0.0,5.0,2.0,1.5,2,2,9577.27612508069,1950.0,26717.96900328366,7,1,2,3,85.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.0748559892315991,17811.97933552244,4,2,4_1,4_1_1,4_1_1,4_0_0 -28561,1,39.0,250.0,5,112,540.0,1314.0,0.0,0,55,0.0,0.0,746.3740828910024,1854.0,0.0,2383.139911713548,71,2,2,2,2,2,2,1,2,2,15.0,2,,3,105851,2,1,0,0,1,,600.0,416.0,32,1.0,0.0,5.0,5.0,2.4,2,2,1045.13169130361,540.0,17053.807440441866,0,1,2,3,72.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.10871472581561896,7105.753100184111,1,1,1_1,1_0_1,1_1_1,1_0_0 -28562,1,67.0,160.0,2,111,344.0,0.0,0.0,0,78,0.0,0.0,475.4679342861201,414.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118778,2,2,0,1,1,,396.0,260.0,11,0.0,4.0,3.0,1.0,1.0,3,2,301.288699811542,344.0,10081.332186535705,0,5,2,3,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04106600123274628,10081.332186535705,2,1,2_1,2_0_1,2_2_1,2_0_1 -28563,2,51.0,0.0,1,112,321.0,300.0,0.0,0,42,0.0,0.0,443.6779270518737,621.0,0.0,544.0958702542347,20,0,0,0,0,0,0,0,0,1,5.0,8,,1,126046,2,2,0,0,1,,320.0,182.0,12,1.0,5.0,3.0,1.0,1.0,2,2,1505.44978384147,321.0,31305.37719659636,0,1,2,3,70.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0198368477115017,31305.37719659636,8,4,8,8_0,8_1,8_1_0 -28564,2,60.0,0.0,2,111,660.0,0.0,0.0,78,43,4032.679167948602,232.913813584378,912.2349902001142,3760.0,301.05722573328353,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,104897,2,1,2,0,1,,500.0,,42,1.0,3.0,6.0,2.0,1.5,3,3,260.009555948671,660.0,37629.61582115322,5,1,0,1,150.0,5,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09992129650939309,25086.410547435476,7,4,7,7_1,7_2,7_0_1 -28566,1,54.0,272.0,2,111,360.0,0.0,0.0,85,67,0.0,0.0,497.582721927335,786.0,732.8593037850217,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,114978,2,1,0,1,1,1129.0,0.0,277.0,42,1.0,0.0,4.0,6.0,3.0999999999999996,3,3,274.692012577528,360.0,22494.39227901595,6,4,2,3,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03494204200987575,7256.255573876113,1,1,1_1,1_0_1,1_2_1,1_0_1 -28567,2,39.0,0.0,9,111,2267.0,0.0,0.0,43,38,0.0,0.0,3133.388973914635,2267.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,111374,2,1,1,0,1,,690.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,528.88890681889,2267.0,76273.28241917821,1,1,1,2,136.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02972207210830596,42374.04578843234,9,5,9,9_1,9_3,9_0_0 -28568,2,42.0,0.0,9,112,0.0,0.0,0.0,0,67,0.0,0.0,0.0,511.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,128212,1,2,0,0,1,,491.0,421.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1126.16035327672,0.0,18415.107297977338,0,1,2,3,45.0,9,3,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027748955883418976,18415.107297977338,4,2,4_0,4_0_0,4_1_0,4_0_0 -28569,2,28.0,0.0,9,111,0.0,0.0,0.0,37,21,0.0,0.0,0.0,2797.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,114104,2,1,1,0,1,,633.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,611.289430633832,0.0,175204.61367790806,1,1,1,2,145.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015964191474671652,97335.8964877267,10,5,10,10_1,10_3,10_0_0 -28571,2,57.0,0.0,6,112,1020.0,0.0,0.0,56,52,0.0,0.0,1409.817712127449,1100.0,137.62616033521533,0.0,42,2,2,2,2,1,2,2,2,1,4.0,1,,4,132952,2,1,3,0,1,,249.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,854.008182080427,1020.0,51501.94651106835,1,1,0,1,98.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02135841603119986,34334.6310073789,9,5,9,9_1,9_1,9_0_0 -28572,1,42.0,344.0,2,111,500.0,144.0,0.0,0,68,0.0,0.0,691.0871137879653,644.0,0.0,261.1660177220326,71,0,0,0,0,0,0,0,0,0,,2,,2,125837,1,1,0,1,1,686.0,0.0,309.0,32,1.0,0.0,4.0,3.0,2.0,1,1,286.563423687975,500.0,13896.89212565424,0,4,2,3,85.0,5,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.046341296613445625,6948.44606282712,1,1,1_1,1_0_1,1_2_1,1_0_1 -28573,2,83.0,0.0,1,112,500.0,0.0,0.0,0,74,6721.131946581003,0.0,691.0871137879653,5070.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119378,2,3,1,0,2,,700.0,,21,1.0,0.0,8.0,2.0,1.5,3,2,964.183965409509,500.0,265235.65545244986,0,5,0,1,160.0,9,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0191150770862665,176823.77030163325,10,5,10,10_1,10_1,10_1_0 -28574,2,42.0,0.0,8,112,1500.0,0.0,0.0,21,52,0.0,0.0,2073.261341363896,1540.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,132672,2,1,3,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,894.879096689308,1500.0,44405.54007604145,1,1,1,2,110.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0346803573915069,21145.49527430545,5,3,5,5_1,5_1,5_0_0 -28575,1,47.0,364.0,2,111,780.0,740.0,0.0,0,56,0.0,0.0,1078.0958975092258,1620.0,172.03270041901916,1342.1031466271122,71,2,2,2,2,1,2,2,1,0,,2,,2,120485,1,3,0,1,2,740.0,0.0,330.0,32,2.0,2.0,4.0,3.0,2.0,1,1,390.854879503189,780.0,10682.877294207148,0,4,2,3,70.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.15164453876845094,5341.438647103574,1,1,1_1,1_0_1,1_2_1,1_0_1 -28576,2,43.0,0.0,9,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,1567.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,128315,2,1,1,0,1,,517.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1370.01007981203,0.0,47915.9052134098,1,1,1,2,112.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03270312838755381,22817.097720671332,6,3,6,6_1,6_3,6_0_0 -28577,1,32.0,30.0,7,112,120.0,420.0,0.0,0,53,0.0,0.0,165.86090730911167,540.0,0.0,761.7342183559285,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,131401,2,1,0,1,1,,100.0,360.0,12,1.0,0.0,1.0,1.0,1.0,8,6,1610.24720901195,120.0,11388.846330704473,0,1,2,3,30.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0474148113267762,11388.846330704473,2,1,2_1,2_0_1,2_1_1,2_0_0 -28578,2,82.0,0.0,7,112,200.0,0.0,0.0,0,72,0.0,0.0,276.4348455151861,248.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,117575,2,1,0,1,1,,108.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,1255.2461009746,200.0,15120.256438720999,0,5,0,1,57.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01640183822312064,15120.256438720999,3,2,3_0,3_0_0,3_1_0,3_0_0 -28579,2,74.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,315.0,0.0,0.0,41,2,1,2,2,2,2,2,1,0,,2,,2,103556,1,1,0,1,2,,0.0,336.0,11,0.0,3.0,2.0,1.0,1.0,1,1,375.224416211108,0.0,16043.36152557429,0,5,2,3,35.0,6,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019634289204158804,16043.36152557429,4,2,4_0,4_0_0,4_2_0,4_0_1 -28580,2,36.0,0.0,1,111,1200.0,0.0,0.0,0,56,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,1,101549,2,1,0,0,2,,157.0,680.0,12,1.0,1.0,2.0,1.0,1.0,4,3,671.924093432149,1200.0,47612.34296493129,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025203548602593575,47612.34296493129,10,5,10,10_0,10_3,10_1_0 -28581,2,85.0,0.0,7,112,600.0,3000.0,0.0,75,74,0.0,0.0,829.3045365455583,3600.0,0.0,5440.958702542347,60,1,2,2,1,1,2,2,2,0,,2,,5,104367,2,1,0,1,1,,360.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1340.01461111198,600.0,55858.76898992331,5,5,0,1,106.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.06444825163707824,37239.17932661554,9,5,9,9_0,9_1,9_0_0 -28582,2,65.0,0.0,2,111,497.0,1469.0,0.0,56,75,0.0,0.0,686.9405911052374,1966.0,0.0,2664.2561113449024,10,0,0,0,0,0,0,0,0,0,,1,,2,127436,2,2,2,0,1,,340.0,,42,1.0,1.0,4.0,3.0,2.0,2,2,272.630385315515,497.0,44793.60346921911,4,5,0,1,78.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043890195200548654,22396.801734609555,6,3,6,6_1,6_2,6_0_1 -28583,2,52.0,0.0,1,112,648.0,1750.0,0.0,0,31,0.0,0.0,895.648899469203,2398.0,0.0,3173.8925764830356,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,119893,2,2,1,0,2,,324.0,,32,1.0,1.0,4.0,2.0,1.5,1,1,935.492516235356,648.0,68087.92029749026,0,1,0,1,90.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03521916941393775,45391.94686499351,10,5,10,10_1,10_1,10_1_0 -28584,1,62.0,351.0,6,111,200.0,1578.0,0.0,85,78,0.0,0.0,276.4348455151861,1778.0,0.0,2861.9442775372745,42,2,2,2,2,2,2,2,1,0,,8,,4,122550,1,3,0,1,2,856.0,0.0,486.0,41,0.0,4.0,5.0,3.0,2.0,1,1,326.354558633443,200.0,9405.15626324582,6,7,2,3,100.0,1,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.18904523755210773,4702.57813162291,1,1,1_1,1_0_1,1_1_1,1_0_0 -28585,2,52.0,0.0,6,112,0.0,0.0,1495.0,0,67,0.0,0.0,763.8154355821,1495.0,0.0,1709.1524331056842,50,0,0,0,0,0,0,0,0,2,30.0,2,,4,102125,2,1,0,0,1,,230.0,511.0,32,3.0,1.0,3.0,3.0,2.0,1,1,1225.50310114772,0.0,37873.94182062939,0,1,2,3,75.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03947305002157697,18936.970910314696,5,3,5,5_0,5_1,5_0_0 -28586,2,51.0,0.0,9,111,1040.0,0.0,0.0,23,42,0.0,0.0,1437.4611966789678,1040.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,2,2012.0,6,121681,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,9394.6956698715,1040.0,51749.27181728331,1,1,1,2,84.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020096901144271928,28749.595454046284,8,4,8,8_0,8_3,8_0_0 -28587,2,74.0,0.0,2,111,172.0,99.0,0.0,0,86,0.0,0.0,237.73396714306006,271.0,0.0,179.55163718389744,71,2,1,2,2,1,1,2,2,0,,2,,2,113261,2,3,0,1,1,679.0,46.0,306.0,11,0.0,8.0,3.0,1.0,1.0,2,2,394.400105332834,172.0,13641.585209003215,0,5,2,3,55.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.019865726442198566,13641.585209003215,3,2,3_0,3_0_0,3_2_0,3_0_1 -28588,1,25.0,48.0,2,111,300.0,360.0,0.0,85,68,0.0,0.0,414.65226827277917,799.0,0.0,652.9150443050816,71,2,1,2,1,1,2,2,2,2,60.0,2,,2,126281,1,3,0,1,1,807.0,530.0,312.0,42,1.0,0.0,4.0,3.0,1.8,2,2,308.778825603039,300.0,15868.46615184295,6,1,2,3,75.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05035143235360557,8815.814528801639,1,1,1_1,1_0_1,1_2_1,1_0_1 -28589,2,56.0,0.0,7,112,1300.0,0.0,0.0,22,46,0.0,0.0,1796.8264958487098,2000.0,1204.2289029331341,0.0,50,2,2,2,2,2,2,1,2,0,,1,,5,112085,2,2,1,0,2,,200.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,976.842846685958,1300.0,95118.73257999064,4,1,0,1,120.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02102635249390112,47559.36628999532,10,5,10,10_1,10_1,10_0_0 -28590,2,67.0,0.0,9,112,219.0,1335.0,0.0,78,78,0.0,0.0,302.6961558391288,1554.0,0.0,2421.226622631344,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,110787,2,1,1,0,1,,180.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,921.460891084694,219.0,39751.82891478024,5,5,1,2,100.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03909254095783761,26501.21927652016,7,4,7,7_1,7_1,7_0_0 -28591,2,55.0,0.0,2,112,0.0,0.0,0.0,46,37,0.0,0.0,0.0,1703.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,,2,104538,2,1,2,0,1,,1060.0,,43,2.0,6.0,4.0,2.0,1.5,1,1,940.275831924548,0.0,17760.50648743114,1,1,1,2,90.0,9,3,8,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09588690509503145,11840.337658287426,2,1,2_0,2_1_0,2_1_0,2_0_1 -28592,1,47.0,50.0,9,111,1200.0,0.0,0.0,68,21,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,124606,2,1,1,0,1,,700.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,237.008815340527,1200.0,28748.04665149256,1,1,1,2,86.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04174196649071103,10647.424685737986,2,1,2_1,2_1_1,2_2_1,2_0_0 -28593,2,60.0,0.0,9,112,7.0,7.0,0.0,0,54,0.0,0.0,9.675219593031514,14.0,0.0,12.695570305932142,71,0,0,0,0,0,0,0,0,4,25.0,2,2007.0,6,118131,2,1,0,0,1,,120.0,393.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1372.13077378232,7.0,32277.248109210825,0,1,2,3,50.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00043374205733495843,32277.248109210825,8,4,8,8_0,8_1,8_0_0 -28594,2,67.0,0.0,2,111,265.0,749.0,0.0,0,78,0.0,0.0,366.2761703076216,1014.0,0.0,1358.4260227347393,33,0,0,0,0,0,0,0,0,0,,8,,2,120228,2,3,0,0,1,,156.0,355.0,11,0.0,0.0,3.0,1.0,1.0,2,2,444.394400407271,265.0,19302.739320722747,0,5,2,3,75.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05253140412622187,19302.739320722747,5,3,5,5_0,5_2,5_0_1 -28595,2,54.0,0.0,9,111,950.0,0.0,0.0,63,52,0.0,0.0,1313.065516197134,950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,111675,2,1,1,0,1,,301.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,796.962557268811,950.0,36412.93153761993,1,1,1,2,90.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02608963244331234,24275.28769174662,7,4,7,7_1,7_2,7_0_0 -28596,2,49.0,0.0,8,112,1375.0,0.0,0.0,75,48,0.0,0.0,1900.4895629169046,1480.0,180.63433543997013,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,129795,2,1,1,0,1,,385.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,936.373060564134,1375.0,54360.70622700649,5,1,1,2,99.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027225547692843133,36240.47081800433,9,5,9,9_1,9_1,9_0_0 -28597,2,74.0,0.0,8,112,414.0,1262.0,0.0,86,78,0.0,0.0,572.2201302164352,1676.0,0.0,2288.8299608694806,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,112657,2,1,2,0,1,,308.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,909.270569304801,414.0,44574.701096315715,5,5,0,1,100.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037599803448564874,29716.46739754381,8,4,8,8_1,8_1,8_0_0 -28598,1,64.0,125.0,2,111,454.0,474.0,0.0,0,56,0.0,0.0,627.5070993194724,928.0,0.0,859.6714750016907,60,0,0,0,0,0,0,0,0,2,7.0,2,,2,122483,2,2,0,0,1,,0.0,274.0,12,1.0,1.0,4.0,1.0,1.0,4,4,329.288626706419,454.0,13176.363185230768,0,1,2,3,68.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07042914550504986,13176.363185230768,2,1,2_1,2_0_1,2_2_1,2_0_1 -28599,2,27.0,0.0,9,112,0.0,0.0,0.0,0,42,0.0,0.0,0.0,840.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,2.0,1,2010.0,6,128822,2,1,1,0,1,,152.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1032.8814221988,0.0,16632.35165601698,0,1,2,3,40.0,9,3,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05050398268221551,16632.35165601698,4,2,4_0,4_1_0,4_1_0,4_0_0 -28600,1,63.0,150.0,2,111,0.0,0.0,680.0,0,78,0.0,0.0,347.42106768951703,1714.0,0.0,777.4071267637894,12,0,0,0,0,0,0,0,0,0,,2,,2,131318,2,1,0,1,1,1512.0,0.0,382.0,11,0.0,4.0,5.0,1.0,1.0,2,2,287.668294806968,0.0,9844.715013066712,0,5,2,3,95.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.17410356701286311,9844.715013066712,2,1,2_1,2_0_1,2_2_1,2_0_1 -28601,2,32.0,0.0,9,221,650.0,0.0,0.0,52,52,0.0,0.0,898.4132479243549,725.0,129.02452531426437,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,123364,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,512.559298963491,650.0,46949.38608522353,1,1,1,2,83.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015442161451993525,22356.85051677311,6,3,6,6_1,6_1,6_0_0 -28602,2,87.0,0.0,1,112,439.0,1437.0,0.0,86,86,0.0,0.0,606.7744859058336,1876.0,0.0,2606.219218517784,41,2,2,2,1,2,1,2,2,0,,1,,1,116709,2,2,3,0,1,,187.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,866.352056415034,439.0,26465.35787765261,5,5,0,1,80.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07088511739280494,17643.57191843507,4,2,4_0,4_1_0,4_1_0,4_1_0 -28603,2,79.0,0.0,5,211,265.0,0.0,0.0,0,78,0.0,0.0,366.2761703076216,292.0,46.448829113135176,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,113464,2,1,0,1,1,688.0,48.0,336.0,11,0.0,5.0,3.0,1.0,1.0,2,2,2909.53962419989,265.0,18455.281460674756,0,5,2,3,50.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015822029082688614,18455.281460674756,4,2,4_0,4_0_0,4_1_0,4_0_0 -28604,2,67.0,0.0,2,111,140.0,180.0,0.0,0,77,0.0,0.0,193.50439186063028,320.0,0.0,326.4575221525408,31,2,1,2,2,1,1,2,2,0,,2,,2,119593,2,2,0,1,1,852.0,0.0,286.0,11,0.0,1.0,3.0,1.0,1.0,3,3,327.839182431314,140.0,15055.079425920085,0,5,2,3,53.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.021255284741245616,15055.079425920085,3,2,3_0,3_0_0,3_2_0,3_0_1 -28605,2,37.0,0.0,9,300,1400.0,0.0,0.0,67,67,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,118748,2,1,1,0,1,,398.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,660.011330781322,1400.0,46288.36676090903,1,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030245180332919272,22042.07940995668,6,3,6,6_1,6_0,6_0_0 -28606,1,38.0,146.0,2,111,420.0,132.0,0.0,56,21,0.0,0.0,580.5131755818909,552.0,0.0,239.40218291186326,60,0,0,0,0,0,0,0,0,0,,2,,2,116103,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,302.536920952786,420.0,40509.58192689872,1,1,1,2,68.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013626405747561347,15580.608433422585,3,2,3_1,3_0_1,3_2_1,3_0_1 -28607,2,63.0,0.0,5,211,600.0,0.0,0.0,74,34,0.0,0.0,829.3045365455583,725.0,215.04087552377396,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,114684,2,2,2,0,1,,200.0,,42,1.0,3.0,4.0,2.0,1.5,3,3,2395.87775254684,600.0,43154.770688222685,6,1,1,2,120.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0167999965806297,28769.84712548179,8,4,8,8_1,8_1,8_0_0 -28608,1,53.0,347.0,2,111,0.0,0.0,0.0,85,22,0.0,0.0,0.0,876.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,2,,2,107278,2,2,0,1,1,976.0,0.0,405.0,42,2.0,0.0,5.0,5.0,2.8,2,2,267.910259542506,0.0,18130.330691579482,6,1,2,3,88.0,7,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04831682416067858,6475.118104135529,1,1,1_1,1_0_1,1_2_1,1_0_1 -28609,1,72.0,34.0,7,111,180.0,100.0,0.0,0,78,0.0,0.0,248.7913609636675,280.0,0.0,181.36529008474488,71,1,2,2,1,1,2,2,2,0,,2,,5,101076,1,2,0,1,2,1225.0,0.0,308.0,11,0.0,0.0,3.0,1.0,1.0,4,3,316.750512683203,180.0,13690.25803610433,0,5,2,3,65.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.020452499818599198,13690.25803610433,3,2,3_1,3_0_1,3_2_1,3_0_0 -28610,2,68.0,0.0,1,211,1000.0,2400.0,0.0,74,74,0.0,0.0,1382.1742275759307,3400.0,0.0,4352.7669620338775,43,0,0,0,0,0,0,0,0,0,,1,,1,103853,2,2,1,0,1,,320.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,2541.59122047786,1000.0,123391.56844819296,5,5,0,1,140.0,2,2,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027554556950360184,82261.04563212865,10,5,10,10_1,10_1,10_1_0 -28611,2,70.0,0.0,2,111,451.0,0.0,0.0,0,86,0.0,0.0,623.3605766367447,670.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125805,1,1,0,1,2,,0.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,318.258294271134,451.0,13091.944930031907,0,5,0,1,90.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.051176506132642824,13091.944930031907,2,1,2_0,2_0_0,2_2_0,2_0_1 -28612,2,46.0,0.0,9,111,1400.0,0.0,0.0,62,64,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,122767,2,1,1,0,1,,440.0,,43,2.0,2.0,4.0,2.0,1.5,3,2,1058.16803457319,1400.0,63255.27599270675,1,1,1,2,92.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02213254116797179,42170.183995137835,9,5,9,9_1,9_2,9_0_0 -28613,2,53.0,0.0,8,211,1405.0,0.0,0.0,0,62,0.0,0.0,1941.9547897441823,1465.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,118067,2,1,1,0,1,,86.0,,32,1.0,0.0,4.0,3.0,1.8,1,1,2542.26597598169,1405.0,24894.089703234713,0,1,1,2,100.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05884930991510163,13830.049835130396,3,2,3_0,3_1_0,3_1_0,3_0_0 -28614,2,60.0,0.0,2,111,258.0,0.0,0.0,0,68,0.0,0.0,356.6009507145901,258.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119326,2,2,0,1,1,1084.0,0.0,270.0,12,1.0,0.0,5.0,1.0,1.0,1,1,341.305434290838,258.0,21765.4222773667,0,1,2,3,77.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01185366388541368,21765.4222773667,6,3,6,6_0,6_2,6_0_1 -28615,2,32.0,0.0,9,111,2000.0,0.0,0.0,52,62,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,123768,2,1,1,0,1,,292.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1176.23486234738,2000.0,80900.939904583,1,1,1,2,120.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024721591644780147,44944.96661365723,10,5,10,10_1,10_2,10_0_0 -28616,2,58.0,0.0,1,211,300.0,700.0,0.0,0,47,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,70,0,0,0,0,0,0,0,0,2,5.0,8,,1,124924,2,2,0,0,1,,100.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,4177.55391398073,300.0,23049.879384258493,0,1,0,1,80.0,2,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04338417495941138,23049.879384258493,6,3,6,6_0,6_1,6_1_0 -28617,1,33.0,375.0,2,111,400.0,80.0,0.0,0,52,1613.0716671794407,0.0,552.8696910303722,1560.0,0.0,145.09223206779592,71,2,2,2,1,1,1,1,2,3,20.0,2,,2,127961,2,3,0,1,1,973.0,0.0,329.0,32,1.0,0.0,4.0,4.0,1.9,3,2,300.995150460462,400.0,19627.48269493626,0,1,2,3,76.0,7,6,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.07948039105404321,10330.254049966454,2,1,2_1,2_0_1,2_2_1,2_0_1 -28618,1,38.0,433.0,2,211,0.0,0.0,0.0,85,22,0.0,0.0,0.0,393.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132040,2,1,0,1,1,,575.0,387.0,42,1.0,1.0,5.0,7.0,3.1999999999999993,1,1,3107.12066675192,0.0,44705.433137586835,6,4,2,3,90.0,2,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008790877806518303,13970.44785549589,3,2,3_1,3_0_1,3_1_1,3_0_1 -28619,2,53.0,0.0,2,111,310.0,1378.0,0.0,34,34,0.0,0.0,428.47401054853844,1736.0,82.5756962011292,2499.213697367785,50,2,2,2,2,1,1,2,2,1,15.0,1,,2,120729,1,2,2,0,1,,300.0,,43,2.0,1.0,7.0,6.0,3.3,2,2,244.402271900866,310.0,62204.40703827939,1,1,1,2,120.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.027907990489029165,18849.820314630117,5,3,5,5_1,5_2,5_0_1 -28620,2,67.0,0.0,6,211,0.0,0.0,0.0,78,72,0.0,0.0,0.0,1872.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,122260,2,2,2,0,1,,464.0,750.0,41,0.0,7.0,4.0,2.0,1.5,1,1,2326.78702327904,0.0,29160.58654615564,6,5,2,3,85.0,2,2,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06419623957278711,19440.391030770425,5,3,5,5_1,5_1,5_0_0 -28621,2,53.0,0.0,9,211,857.0,0.0,0.0,72,52,0.0,0.0,1184.5233130325726,947.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,102820,2,1,1,0,1,,145.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,2695.63883609391,857.0,41266.847628574,7,1,1,2,156.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022948203083588047,27511.231752382668,7,4,7,7_1,7_1,7_0_0 -28622,2,62.0,0.0,9,211,65.0,0.0,0.0,62,77,0.0,0.0,89.84132479243549,145.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,100754,2,1,1,0,1,,254.0,676.0,42,1.0,2.0,4.0,2.0,1.5,2,2,2864.50542096248,65.0,42986.07786652417,1,5,2,3,82.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003373185161257063,28657.385244349443,8,4,8,8_1,8_1,8_0_0 -28623,2,54.0,0.0,2,211,800.0,0.0,0.0,85,21,0.0,1035.1725048194578,1105.7393820607444,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129275,2,1,1,0,1,,240.0,970.0,42,1.0,3.0,5.0,2.0,1.5,1,1,2827.94888258133,800.0,26080.93062100358,6,1,2,3,127.0,2,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06901594218997761,17387.28708066905,4,2,4_0,4_1_0,4_1_0,4_0_1 -28624,2,66.0,0.0,5,111,420.0,0.0,0.0,68,77,0.0,0.0,580.5131755818909,979.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118915,2,1,0,1,1,865.0,0.0,319.0,41,0.0,3.0,4.0,2.0,1.5,2,2,302.843624758307,420.0,33066.9133736238,5,5,2,3,97.0,7,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029606633946696412,22044.6089157492,6,3,6,6_0,6_2,6_0_0 -28625,2,86.0,0.0,2,211,368.0,0.0,0.0,0,75,3913.1923777871616,0.0,508.64011574794245,3088.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113853,2,1,1,0,1,,157.0,,11,0.0,1.0,5.0,1.0,1.0,5,3,2577.12616054938,368.0,38217.085739189446,0,5,0,1,98.0,2,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08080155616976917,38217.085739189446,9,5,9,9_1,9_1,9_0_1 -28626,2,71.0,0.0,2,111,250.0,1200.0,0.0,77,74,0.0,0.0,345.54355689398267,1450.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,2,104139,2,1,2,0,1,,170.0,700.0,41,0.0,2.0,5.0,2.0,1.5,3,1,297.536537345451,250.0,53398.894036232996,5,5,2,3,110.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027154120439575487,35599.262690822,9,5,9,9_1,9_2,9_0_1 -28627,2,55.0,0.0,1,211,200.0,0.0,0.0,0,63,0.0,0.0,276.4348455151861,235.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,123779,2,1,1,0,1,,108.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2552.95846268621,200.0,22768.086169469214,0,1,1,2,60.0,2,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010321464801689061,22768.086169469214,6,3,6,6_1,6_1,6_1_0 -28628,1,45.0,354.0,2,111,160.0,40.0,0.0,75,52,1205.3229957535266,0.0,221.1478764121489,1007.0,0.0,72.54611603389796,20,2,2,2,2,1,2,2,2,0,,2,,2,103790,1,3,0,1,2,807.0,0.0,320.0,42,1.0,3.0,4.0,4.0,2.1,2,2,327.100430399914,160.0,16089.389763328541,5,1,2,3,75.0,7,6,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06258783054004864,7661.6141730135905,1,1,1_1,1_0_1,1_2_1,1_0_1 -28629,0,43.0,0.0,2,211,2000.0,1440.0,0.0,85,54,0.0,0.0,2764.3484551518613,3440.0,0.0,2611.660177220326,70,0,0,0,0,0,0,0,0,2,45.0,1,,2,118702,2,1,4,0,1,,160.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,2769.18904685924,2000.0,37534.07013221144,7,1,0,1,125.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09165006587036292,20852.26118456191,5,3,5,5_1,5_1,5_0_1 -28630,1,53.0,73.0,5,111,504.0,1080.0,0.0,85,65,0.0,0.0,696.615810698269,1584.0,0.0,1958.7451329152448,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,122552,2,1,0,1,1,1084.0,0.0,335.0,42,1.0,1.0,5.0,3.0,2.0,1,1,326.82706316524,504.0,19136.510784199814,6,1,2,3,75.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08277371031023273,9568.255392099907,1,1,1_1,1_0_1,1_2_1,1_0_0 -28631,2,55.0,0.0,7,211,710.0,1180.0,0.0,52,38,0.0,517.5862524097289,981.3437015789107,2390.0,0.0,2140.1104229999896,41,0,0,0,0,0,0,0,0,2,70.0,1,,5,112073,2,1,2,0,1,,300.0,,43,2.0,0.0,8.0,4.0,2.5,4,4,2383.22121517342,710.0,89565.51032956962,1,1,0,1,185.0,2,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026684378743621732,35826.20413182785,9,5,9,9_1,9_1,9_0_0 -28632,2,73.0,0.0,2,211,1350.0,0.0,0.0,86,74,5481.456498656063,248.44140115666985,1865.9352072275062,5325.0,111.82125527236246,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110963,2,2,2,0,2,,340.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,2553.11044495284,1350.0,48698.34630345521,5,5,0,1,210.0,2,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1093466288735596,32465.564202303474,8,4,8,8_1,8_1,8_0_1 -28633,2,76.0,0.0,9,211,900.0,0.0,0.0,0,77,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2006.0,6,127109,2,2,0,0,1,,130.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,3412.01467049425,900.0,32209.626364168522,0,5,0,1,86.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02794195715977636,32209.626364168522,8,4,8,8_0,8_1,8_0_0 -28634,1,42.0,455.0,2,111,450.0,175.0,0.0,85,62,0.0,0.0,621.9784024091688,625.0,0.0,317.38925764830356,44,0,0,0,0,0,0,0,0,0,,2,,2,118735,2,3,0,1,1,1166.0,0.0,408.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,1,1,273.974012351628,450.0,16207.877813860568,6,4,2,3,99.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03856149504443548,6002.917708837248,1,1,1_1,1_0_1,1_3_1,1_0_1 -28635,2,43.0,0.0,5,111,589.0,0.0,0.0,52,64,0.0,0.0,814.1006200422231,659.0,120.42289029331342,0.0,71,2,1,2,2,1,2,2,2,2,10.0,2,,3,122133,1,2,0,1,1,710.0,0.0,402.0,43,2.0,0.0,5.0,4.0,2.3,2,2,279.714412298258,589.0,46912.15889606812,1,1,2,3,85.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014047530864226188,20396.590824377443,5,3,5,5_0,5_3,5_0_0 -28636,2,30.0,0.0,7,211,300.0,1120.0,0.0,0,52,0.0,0.0,414.65226827277917,1420.0,0.0,2031.2912489491428,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,111246,2,1,2,0,1,,180.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2882.7742512605,300.0,47835.04021929903,0,1,2,3,37.0,2,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029685351856923944,47835.04021929903,10,5,10,10_1,10_1,10_0_0 -28637,1,86.0,147.0,2,111,184.0,0.0,0.0,0,77,0.0,0.0,254.32005787397122,184.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,109057,1,3,0,1,1,105.0,0.0,418.0,11,0.0,5.0,6.0,1.0,1.0,2,2,315.692624603106,184.0,13133.723139806069,0,5,2,3,96.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014009736465536377,13133.723139806069,2,1,2_1,2_0_1,2_3_1,2_0_1 -28638,2,23.0,0.0,9,211,0.0,0.0,0.0,0,21,0.0,0.0,0.0,343.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,110402,2,1,0,0,1,,129.0,440.0,12,1.0,0.0,3.0,1.0,1.0,2,2,3465.66053907378,0.0,18624.480273159603,0,1,2,3,52.0,2,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0184166212946253,18624.480273159603,4,2,4_0,4_0_0,4_1_0,4_0_0 -28639,2,79.0,0.0,1,211,1400.0,0.0,0.0,77,77,0.0,0.0,1935.0439186063027,1520.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106528,1,2,2,0,1,,237.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2501.06821852017,1400.0,35979.63736164066,5,5,0,1,75.0,2,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04224611784499343,23986.424907760444,6,3,6,6_1,6_1,6_1_0 -28640,1,36.0,271.0,2,111,300.0,0.0,0.0,0,64,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120565,1,3,0,1,1,1012.0,0.0,368.0,32,1.0,0.0,4.0,3.0,1.6,2,2,316.526111809849,300.0,7606.03831927871,0,4,2,3,78.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.039442346647084646,4753.773949549193,1,1,1_1,1_0_1,1_3_1,1_0_1 -28641,2,71.0,0.0,5,211,300.0,900.0,0.0,56,86,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,2,,3,124334,1,2,0,0,1,,60.0,,42,1.0,1.0,2.0,2.0,1.5,1,1,3188.79084991656,300.0,24229.63487608924,4,6,0,1,39.0,2,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04952612807154628,16153.089917392826,4,2,4_0,4_0_0,4_1_0,4_0_0 -28642,1,62.0,224.0,2,111,190.0,0.0,0.0,0,78,0.0,0.0,262.6131032394268,250.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111535,1,2,0,1,1,703.0,0.0,345.0,11,0.0,0.0,4.0,1.0,1.0,2,2,320.837096695814,190.0,10016.556289481636,0,7,2,3,73.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02495867769070738,10016.556289481636,2,1,2_1,2_0_1,2_3_1,2_0_1 -28643,1,41.0,101.0,1,211,0.0,0.0,0.0,52,68,0.0,0.0,0.0,1258.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,,1,103202,2,2,5,0,1,,231.0,600.0,43,2.0,0.0,3.0,3.0,1.8,4,2,3198.43238260241,0.0,37282.18689920714,1,2,2,3,90.0,2,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.033742655799699164,20712.326055115078,5,3,5,5_1,5_1,5_1_0 -28644,2,47.0,0.0,2,111,187.0,64.0,0.0,52,34,0.0,0.0,258.466580556699,251.0,0.0,116.07378565423673,71,0,0,0,0,0,0,0,0,1,30.0,2,,2,121643,2,1,0,1,1,833.0,0.0,325.0,43,2.0,0.0,3.0,2.0,1.5,1,1,290.164540720944,187.0,53070.672768547294,1,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004729542455485074,35380.44851236486,9,5,9,9_0,9_3,9_0_1 -28645,2,82.0,0.0,2,111,500.0,0.0,0.0,75,78,0.0,0.0,691.0871137879653,1720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113988,1,3,0,1,2,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,304.870270734803,500.0,29144.6534954836,5,5,0,1,99.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.059015970125242345,19429.768996989067,5,3,5,5_0,5_3,5_0_1 -28646,2,78.0,0.0,2,211,261.0,0.0,0.0,0,77,1120.1886577635005,0.0,360.7474733973179,1071.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115449,2,1,0,1,1,775.0,100.0,250.0,11,0.0,2.0,3.0,1.0,1.0,2,2,2909.53962419989,261.0,17138.99509215817,0,5,2,3,50.0,2,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06248907793258129,17138.99509215817,4,2,4_0,4_0_0,4_1_0,4_0_1 -28647,2,40.0,0.0,2,111,600.0,0.0,0.0,52,65,0.0,0.0,829.3045365455583,725.0,215.04087552377396,0.0,50,2,2,2,2,1,2,2,1,1,12.0,2,,2,128444,1,3,0,1,2,,0.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,1,1,351.530297301908,600.0,64345.29470946649,1,1,1,2,108.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011267335137301623,22188.032658436725,6,3,6,6_0,6_3,6_0_1 -28648,2,54.0,0.0,2,211,120.0,0.0,0.0,0,56,0.0,0.0,165.86090730911167,145.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120974,2,2,0,1,1,468.0,40.0,250.0,12,1.0,2.0,3.0,1.0,1.0,2,2,3482.4369029765,120.0,15432.8033694138,0,1,2,3,35.0,2,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009395571013842814,15432.8033694138,3,2,3_0,3_0_0,3_1_0,3_0_1 -28649,1,90.0,111.0,2,211,200.0,80.0,0.0,0,77,0.0,0.0,276.4348455151861,280.0,0.0,145.09223206779592,71,2,2,2,1,2,2,2,2,0,,2,,2,128173,1,1,0,1,2,915.0,160.0,327.0,11,0.0,6.0,4.0,1.0,1.0,3,3,3229.32270318755,200.0,14527.704634844862,0,5,2,3,70.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01927351959843793,14527.704634844862,3,2,3_1,3_0_1,3_1_1,3_0_1 -28650,2,83.0,0.0,2,211,130.0,50.0,0.0,0,75,0.0,0.0,179.68264958487097,180.0,0.0,90.68264504237244,50,0,0,0,0,0,0,0,0,0,,2,,2,131427,1,1,0,1,2,,40.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,3331.95932091937,130.0,19494.88330094037,0,5,0,1,47.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009233191972547862,19494.88330094037,5,3,5,5_0,5_1,5_0_1 -28651,1,51.0,153.0,2,111,207.0,0.0,0.0,0,67,0.0,0.0,286.1100651082176,277.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,109076,2,2,0,1,2,781.0,0.0,249.0,12,1.0,0.0,2.0,1.0,1.0,3,3,327.459619134309,207.0,14173.792725493417,0,1,2,3,51.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019543110680726925,14173.792725493417,3,2,3_1,3_0_1,3_3_1,3_0_1 -28652,2,68.0,0.0,2,211,0.0,0.0,2024.0,78,77,0.0,0.0,1034.0885897111507,2024.0,0.0,2313.929447896926,71,2,2,2,2,1,2,2,2,0,,1,,2,117065,2,2,3,0,2,,272.0,563.0,41,0.0,4.0,4.0,2.0,1.5,3,2,2596.163842087,0.0,34923.0758823328,5,5,2,3,98.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05795594886371161,23282.050588221868,6,3,6,6_1,6_1,6_0_1 -28653,2,24.0,0.0,5,211,30.0,0.0,0.0,0,47,0.0,0.0,41.46522682727792,30.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,110987,2,1,0,0,1,,170.0,100.0,12,1.0,0.0,3.0,1.0,1.0,3,3,3893.55423010924,30.0,24736.18928409169,0,1,2,3,86.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00121279796396503,24736.18928409169,7,4,7,7_0,7_1,7_0_0 -28654,2,48.0,0.0,9,211,795.0,0.0,0.0,52,47,0.0,0.0,1098.8285109228648,795.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,128492,1,1,0,0,1,,170.0,627.0,43,2.0,1.0,3.0,2.0,1.5,2,2,3569.08418965444,795.0,46808.13833381033,1,1,2,3,66.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016984225997848705,31205.425555873557,8,4,8,8_0,8_1,8_0_0 -28655,2,66.0,0.0,8,211,324.0,1200.0,0.0,77,77,0.0,0.0,447.8244497346015,1524.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,1,2002.0,6,118024,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2404.0485520202,324.0,32017.15096133679,5,5,1,2,123.0,2,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047599488219309365,21344.76730755786,6,3,6,6_1,6_1,6_0_0 -28656,1,19.0,445.0,2,111,600.0,0.0,0.0,0,55,0.0,0.0,829.3045365455583,960.0,619.317721508469,0.0,43,2,1,2,2,1,1,2,2,0,,2,,2,121883,1,2,0,1,1,1164.0,0.0,414.0,22,4.0,0.0,6.0,6.0,3.3,3,3,308.834612401036,600.0,26444.336197110522,0,4,2,3,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03630266960926384,8013.435211245614,1,1,1_1,1_0_1,1_3_1,1_0_1 -28657,1,25.0,98.0,5,111,650.0,0.0,0.0,0,68,0.0,0.0,898.4132479243549,830.0,309.6588607542345,0.0,10,2,1,2,2,1,1,1,2,2,10.0,2,,3,131309,1,3,0,1,2,1891.0,0.0,771.0,22,3.0,0.0,8.0,5.0,3.0,3,3,387.132104061338,650.0,22102.345368908813,0,2,2,3,160.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.0375525758079753,7367.448456302937,1,1,1_1,1_0_1,1_3_1,1_0_0 -28658,2,77.0,0.0,2,211,290.0,960.0,0.0,77,75,0.0,0.0,400.8305259970199,1328.0,134.18550632683494,1741.106784813551,33,2,2,1,1,2,2,2,2,0,,2,,2,102956,2,1,0,1,1,,170.0,307.0,41,0.0,1.0,4.0,2.0,1.5,1,1,2875.45340701586,290.0,32998.37439105469,5,5,2,3,66.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.040244406717198734,21998.91626070313,6,3,6,6_0,6_1,6_0_1 -28659,2,49.0,0.0,2,211,73.0,0.0,0.0,0,62,0.0,0.0,100.89871861304293,73.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111427,2,1,0,0,1,,150.0,64.0,12,1.0,2.0,4.0,1.0,1.0,2,2,4284.89620196483,73.0,23205.179566524577,0,1,2,3,100.0,2,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0031458493906812357,23205.179566524577,6,3,6,6_0,6_1,6_0_1 -28660,2,48.0,0.0,2,111,1400.0,1000.0,0.0,85,31,0.0,0.0,1935.0439186063027,2400.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,2.0,2,,2,122748,2,1,0,1,1,,360.0,,42,1.0,0.0,5.0,5.0,3.0,2,2,297.549555245115,1400.0,108637.01042106457,6,1,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02209191868128436,36212.33680702152,9,5,9,9_0,9_3,9_0_1 -28661,2,74.0,0.0,1,211,1100.0,0.0,0.0,75,74,0.0,931.655254337512,1520.3916503335236,2096.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109487,2,1,2,0,1,,175.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,2685.77727187443,1100.0,59330.58434464155,5,5,0,1,80.0,2,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035327479463621705,39553.7228964277,9,5,9,9_1,9_1,9_1_0 -28662,1,80.0,270.0,2,111,201.0,0.0,0.0,86,78,0.0,0.0,277.81701974276206,425.0,385.3532489386029,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102046,2,2,0,1,1,589.0,0.0,258.0,41,0.0,3.0,2.0,2.0,1.5,2,2,332.210499404858,201.0,9401.821393247883,6,5,2,3,49.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04520400699222203,6267.880928831922,1,1,1_1,1_0_1,1_3_1,1_0_1 -28663,2,45.0,0.0,9,211,1626.0,0.0,0.0,63,62,0.0,0.0,2247.415294038463,1626.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,2007.0,6,116370,2,1,1,0,1,,178.0,,43,2.0,2.0,6.0,5.0,2.5999999999999996,1,1,2269.00698712628,1626.0,65403.0,1,1,1,2,110.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02486124489702307,25155.000000000004,7,4,7,7_1,7_1,7_0_0 -28664,2,35.0,0.0,1,211,300.0,740.0,0.0,37,62,0.0,0.0,414.65226827277917,1040.0,0.0,1342.1031466271122,44,0,0,0,0,0,0,0,0,0,,2,,1,112380,2,1,0,0,1,,240.0,500.0,43,2.0,0.0,3.0,2.0,1.5,1,1,3526.36333124614,300.0,45111.29812554276,1,1,2,3,75.0,2,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023054091618151307,30074.19875036184,8,4,8,8_0,8_1,8_1_0 -28665,2,49.0,0.0,2,111,220.0,79.0,0.0,0,52,0.0,930.6200818326926,304.0783300667047,1198.0,0.0,143.27857916694848,50,0,0,0,0,0,0,0,0,3,15.0,8,,2,115308,1,2,0,1,1,,190.0,451.0,12,1.0,2.0,4.0,1.0,1.0,3,3,338.300505959537,220.0,20088.58927798878,0,1,2,3,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.059635845176677374,20088.58927798878,5,3,5,5_0,5_3,5_0_1 -28666,1,62.0,230.0,2,211,400.0,240.0,0.0,85,78,0.0,0.0,552.8696910303722,1000.0,619.317721508469,435.27669620338776,50,2,2,2,2,1,2,2,2,0,,2,,2,126913,2,1,0,1,1,,160.0,342.0,41,0.0,5.0,4.0,2.0,1.5,2,2,3040.69867834709,400.0,15292.897563140283,6,5,2,3,80.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0653898318399942,10195.265042093522,2,1,2_1,2_0_1,2_1_1,2_0_1 -28667,1,33.0,22.0,2,211,0.0,0.0,0.0,33,52,0.0,0.0,0.0,514.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,128279,2,2,0,1,1,870.0,274.0,256.0,43,2.0,0.0,3.0,3.0,1.8,5,5,3336.96379083392,0.0,20847.125010680516,4,1,2,3,65.0,2,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02465567792857119,11581.736117044731,2,1,2_1,2_0_1,2_1_1,2_0_1 -28668,1,68.0,36.0,1,111,195.0,0.0,0.0,77,78,0.0,0.0,269.52397437730644,399.0,350.9467088547991,0.0,42,2,2,2,2,2,2,2,1,0,,2,,1,118931,1,1,0,1,1,48.0,0.0,253.0,41,0.0,3.0,3.0,2.0,1.5,1,1,299.955071943965,195.0,15217.838953141214,5,5,2,3,74.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.026219228711027973,10145.22596876081,2,1,2_1,2_0_1,2_3_1,2_1_0 -28669,1,40.0,250.0,2,211,400.0,1200.0,0.0,85,67,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,50.0,2,,2,116867,2,2,0,0,1,,320.0,115.0,42,1.0,0.0,3.0,5.0,2.4,2,2,2707.09145767842,400.0,24463.39576006697,6,1,2,3,68.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06540383909464333,10193.081566694571,2,1,2_1,2_0_1,2_1_1,2_0_1 -28670,1,50.0,279.0,2,111,300.0,0.0,0.0,0,52,0.0,0.0,414.65226827277917,380.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119099,1,2,0,1,1,325.0,0.0,335.0,32,2.0,1.0,3.0,3.0,2.0,2,2,291.991628814431,300.0,16125.420911717161,0,4,2,3,75.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02356527634722898,8062.710455858581,1,1,1_1,1_0_1,1_3_1,1_0_1 -28671,2,34.0,0.0,5,211,450.0,0.0,0.0,0,65,0.0,0.0,621.9784024091688,475.0,43.00817510475479,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,104542,2,3,0,1,1,300.0,110.0,152.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3632.95098006851,450.0,15886.852157764046,0,1,2,3,36.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02989893751657173,15886.852157764046,3,2,3_0,3_0_0,3_1_0,3_0_0 -28672,1,35.0,140.0,5,211,500.0,0.0,0.0,85,67,0.0,0.0,691.0871137879653,893.0,430.0817510475479,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,3,113221,2,2,0,1,1,914.0,120.0,300.0,42,1.0,1.0,3.0,4.0,2.1,2,2,3298.26090413993,500.0,9667.630246295601,6,1,2,3,40.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.09237010283281942,4603.633450616952,1,1,1_1,1_0_1,1_1_1,1_0_0 -28673,2,86.0,0.0,6,212,2500.0,0.0,0.0,86,74,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,120020,2,1,2,0,1,,500.0,,41,0.0,5.0,8.0,2.0,1.5,2,2,3376.35902687764,2500.0,47376.26077791499,5,5,0,1,165.0,2,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05276904422067444,31584.173851943327,8,4,8,8_1,8_0,8_0_0 -28674,2,64.0,0.0,1,212,720.0,0.0,0.0,0,77,1493.5848770180007,621.1035028916747,995.16544385467,2360.0,68.81308016760767,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,116917,2,1,2,0,1,,176.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,3455.52986218749,720.0,6951.586329766857,0,7,0,1,110.0,2,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.3394908569133961,6951.586329766857,1,1,1_0,1_1_0,1_0_0,1_1_0 -28675,1,68.0,140.0,2,111,509.0,88.0,0.0,56,64,0.0,0.0,703.5266818361487,597.0,0.0,159.6014552745755,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,121427,1,1,0,1,1,1053.0,0.0,355.0,43,2.0,5.0,5.0,2.0,1.5,1,1,314.801620185442,509.0,16336.942976740622,4,1,2,3,98.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03654294446947426,10891.295317827082,2,1,2_1,2_0_1,2_3_1,2_0_1 -28676,1,37.0,396.0,2,111,465.0,198.0,0.0,85,68,0.0,0.0,642.7110158228077,663.0,0.0,359.1032743677949,20,2,2,2,1,1,1,2,2,2,30.0,2,,2,106597,1,1,0,1,2,1015.0,0.0,366.0,42,1.0,0.0,5.0,4.0,2.1,2,2,335.015413120644,465.0,14401.096154432566,6,1,2,3,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04603816215725584,6857.664835444079,1,1,1_1,1_0_1,1_3_1,1_0_1 -28677,2,80.0,0.0,2,111,294.0,0.0,0.0,86,75,0.0,0.0,406.35922290732356,530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101195,2,1,0,1,2,,0.0,,41,0.0,0.0,3.0,2.0,1.5,4,4,1726.99525024997,294.0,40498.804054478496,5,5,0,1,84.0,7,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013086806200179405,26999.202702985665,7,4,7,7_0,7_2,7_0_1 -28678,1,21.0,71.0,6,111,220.0,0.0,0.0,0,55,0.0,0.0,304.0783300667047,220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,4,109175,2,1,0,1,1,299.0,115.0,315.0,12,1.0,0.0,1.0,1.0,1.0,3,3,2102.79435578419,220.0,11534.19088420472,0,1,2,3,32.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019073726298502208,11534.19088420472,2,1,2_1,2_0_1,2_2_1,2_0_0 -28679,1,58.0,271.0,2,111,0.0,0.0,500.0,0,52,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,71,2,2,2,2,1,2,2,2,0,,2,,2,104612,1,3,0,1,1,840.0,0.0,418.0,22,2.0,3.0,4.0,2.0,1.5,3,3,288.812665712099,0.0,22911.750430750213,0,4,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.021822863404139664,15274.50028716681,3,2,3_1,3_0_1,3_3_1,3_0_1 -28680,2,63.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,273.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,103651,2,3,0,0,1,,201.0,380.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2006.8725833041,0.0,20281.56304077938,0,5,2,3,51.0,7,5,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01346050102011808,20281.56304077938,5,3,5,5_0,5_2,5_1_0 -28681,2,70.0,0.0,2,111,465.0,72.0,0.0,0,75,0.0,0.0,642.7110158228077,537.0,0.0,130.5830088610163,71,0,0,0,0,0,0,0,0,0,,2,,2,117535,2,2,0,1,1,,30.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1851.36007446572,465.0,26723.533241520407,0,5,0,1,74.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020094648231831186,26723.533241520407,7,4,7,7_0,7_2,7_0_1 -28682,2,74.0,0.0,2,111,246.0,108.0,0.0,75,72,0.0,0.0,340.0148599836789,354.0,0.0,195.8745132915245,20,0,0,0,0,0,0,0,0,0,,2,,2,100295,2,1,0,1,1,480.0,0.0,292.0,41,0.0,3.0,2.0,2.0,1.5,2,2,287.295192838128,246.0,22433.264104792757,5,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015780137850040718,14955.509403195172,3,2,3_0,3_0_0,3_3_0,3_0_1 -28683,2,44.0,0.0,2,111,0.0,0.0,1250.0,85,34,0.0,0.0,638.6416685469063,1250.0,0.0,1429.0572183157892,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,123469,2,1,0,0,1,,300.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,1980.6359522695,0.0,37406.4263461332,6,1,1,2,130.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03341671798405345,20781.347970074,5,3,5,5_0,5_2,5_0_1 -28684,1,54.0,98.0,2,111,520.0,240.0,0.0,85,56,0.0,0.0,718.7305983394839,760.0,0.0,435.27669620338776,50,2,2,2,2,1,2,2,2,0,,2,,2,124698,1,3,0,1,1,1056.0,0.0,583.0,42,1.0,1.0,3.0,3.0,1.8,3,2,348.478821418593,520.0,12868.94932901502,7,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.059056880291420796,7149.416293897233,1,1,1_1,1_0_1,1_3_1,1_0_1 -28685,1,56.0,175.0,1,111,925.0,0.0,0.0,67,52,0.0,0.0,1278.5111605077357,925.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,7.0,2,,1,105605,1,1,0,0,2,,140.0,261.0,43,2.0,4.0,2.0,2.0,1.5,1,1,1397.61835236349,925.0,13083.83748665889,4,1,2,3,45.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07069791266844981,8722.55832443926,1,1,1_1,1_0_1,1_2_1,1_1_0 -28686,1,77.0,224.0,2,111,54.0,1150.0,0.0,0,77,0.0,0.0,74.63740828910025,1204.0,0.0,2085.7008359745664,71,0,0,0,0,0,0,0,0,0,,2,,2,121335,2,2,0,0,1,,70.0,246.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1545.56512200325,54.0,9423.390349200703,0,7,2,3,48.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1277671788372986,9423.390349200703,1,1,1_1,1_0_1,1_2_1,1_0_1 -28689,2,67.0,0.0,2,111,547.0,0.0,0.0,0,75,0.0,155.27587572291867,756.049302484034,697.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,127418,2,2,0,0,1,,300.0,340.0,31,0.0,1.0,4.0,2.0,1.5,3,3,326.236912225282,547.0,18954.015936718,0,5,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03677320955765165,12636.010624478666,2,1,2_0,2_0_0,2_3_0,2_0_1 -28690,1,36.0,177.0,6,111,0.0,0.0,1250.0,85,48,0.0,0.0,638.6416685469063,1250.0,0.0,1429.0572183157892,71,2,2,2,2,1,2,2,2,0,,2,,4,117469,2,1,0,0,1,,0.0,340.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1268.79735661363,0.0,14102.354732778918,6,4,2,3,66.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.08863767957095511,6715.407015609008,1,1,1_1,1_0_1,1_2_1,1_0_0 -28691,1,71.0,295.0,6,111,600.0,860.0,0.0,56,72,0.0,0.0,829.3045365455583,1460.0,0.0,1559.741494728806,71,0,0,0,0,0,0,0,0,0,,2,,4,120333,2,1,0,0,1,,150.0,368.0,42,1.0,9.0,2.0,2.0,1.5,2,2,307.29137219431,600.0,15493.894360344708,1,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09423066699981798,10329.262906896472,2,1,2_1,2_0_1,2_3_1,2_0_0 -28692,1,54.0,390.0,2,111,0.0,0.0,0.0,21,35,0.0,0.0,0.0,1041.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109050,2,2,5,0,1,,371.0,590.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1276.34466665133,0.0,13098.0,1,4,2,3,80.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07947778286761338,6237.142857142857,1,1,1_1,1_1_1,1_2_1,1_0_1 -28693,2,77.0,0.0,2,111,265.0,125.0,0.0,0,77,0.0,0.0,366.2761703076216,390.0,0.0,226.7066126059311,71,0,0,0,0,0,0,0,0,0,,2,,2,125524,2,1,0,1,1,,151.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,357.316241404372,265.0,13774.440260979114,0,5,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028313310204321727,13774.440260979114,3,2,3_0,3_0_0,3_3_0,3_0_1 -28694,2,25.0,0.0,1,111,200.0,860.0,0.0,0,52,0.0,0.0,276.4348455151861,1060.0,0.0,1559.741494728806,71,0,0,0,0,0,0,0,0,0,,2,,1,103051,2,1,0,0,1,,0.0,427.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1803.94448822685,200.0,16168.912002454708,0,1,2,3,55.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0655579051849051,16168.912002454708,4,2,4_0,4_0_0,4_2_0,4_1_0 -28695,2,48.0,0.0,2,111,580.0,730.0,0.0,0,37,0.0,0.0,801.6610519940398,1310.0,0.0,1323.9666176186377,60,2,2,2,2,1,2,2,2,3,60.0,2,,2,104044,1,2,0,0,2,,150.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1760.83280557984,580.0,28529.542289586567,0,1,1,2,53.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04591731569693486,28529.542289586567,8,4,8,8_0,8_2,8_0_1 -28696,2,63.0,0.0,2,111,450.0,102.0,0.0,52,78,1182.9192225982565,0.0,621.9784024091688,1344.0,0.0,184.9925958864398,50,2,2,1,2,1,2,2,2,0,,2,,2,115688,2,2,0,1,1,417.0,0.0,365.0,42,2.0,1.0,5.0,4.0,2.5,1,1,282.209991250911,450.0,50494.5813113161,1,5,2,3,94.0,7,5,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026616717380302402,20197.83252452644,5,3,5,5_0,5_2,5_0_1 -28697,2,29.0,0.0,7,111,0.0,0.0,0.0,84,43,0.0,0.0,0.0,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,5,103971,1,1,0,1,1,170.0,59.0,550.0,42,1.0,0.0,2.0,2.0,1.5,3,3,1617.84914583551,0.0,36628.04649392767,3,1,2,3,57.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010920593323651957,24418.697662618448,7,4,7,7_0,7_2,7_0_0 -28698,2,61.0,0.0,2,111,276.0,94.0,0.0,68,78,0.0,0.0,381.48008681095683,370.0,0.0,170.4833726796602,71,2,1,2,1,1,2,2,2,0,,2,,2,129035,2,2,0,1,1,285.0,0.0,249.0,41,0.0,0.0,3.0,2.0,1.5,4,4,315.037577735681,276.0,26305.215721672073,5,5,2,3,79.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014065651615058536,17536.810481114717,4,2,4_0,4_0_0,4_2_0,4_0_1 -28699,2,54.0,0.0,1,111,700.0,1090.0,0.0,0,43,0.0,0.0,967.5219593031513,1790.0,0.0,1976.8816619237193,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,115376,2,1,0,0,1,,181.0,,32,1.0,0.0,4.0,2.0,1.5,1,1,1766.6423684573,700.0,37821.49290428702,0,1,1,2,90.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04732758710846936,25214.328602858015,7,4,7,7_0,7_2,7_1_0 -28700,2,84.0,0.0,2,111,190.0,240.0,0.0,0,78,0.0,0.0,262.6131032394268,430.0,0.0,435.27669620338776,71,2,1,2,1,1,2,2,2,0,,2,,2,121174,2,2,0,1,1,439.0,0.0,224.0,11,0.0,1.0,2.0,1.0,1.0,2,2,362.01337660386,190.0,26151.6505621252,0,5,2,3,55.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016442556808355283,26151.6505621252,7,4,7,7_0,7_2,7_0_1 -28701,2,35.0,0.0,1,111,0.0,0.0,0.0,54,65,0.0,0.0,0.0,1673.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,106207,2,1,0,0,1,,437.0,500.0,43,2.0,1.0,3.0,3.0,1.8,1,1,1971.04903454492,0.0,30695.301910901435,1,1,2,3,73.0,7,5,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.054503454791100595,17052.945506056352,4,2,4_0,4_0_0,4_2_0,4_1_0 -28702,2,66.0,0.0,2,111,155.0,0.0,0.0,0,74,0.0,0.0,214.23700527426922,185.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116404,2,1,0,1,1,,100.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,373.949016762014,155.0,31980.099712910458,0,5,1,2,65.0,7,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005784847503940551,31980.099712910458,8,4,8,8_0,8_2,8_0_1 -28703,2,62.0,0.0,2,111,750.0,1530.0,0.0,78,75,0.0,0.0,1036.630670681948,2280.0,0.0,2774.8889382965967,50,0,0,0,0,0,0,0,0,0,,1,,2,132498,2,2,1,0,1,,440.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1195.08203602896,750.0,71165.53470011707,5,5,1,2,100.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03203798031740566,47443.68980007805,10,5,10,10_1,10_2,10_0_1 -28704,2,29.0,0.0,2,111,0.0,0.0,0.0,56,65,0.0,0.0,0.0,382.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,116250,2,2,0,1,2,325.0,303.0,560.0,43,2.0,0.0,3.0,2.0,1.5,1,1,393.085565069908,0.0,29894.419594777624,1,1,2,3,64.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012778304619325444,19929.613063185083,5,3,5,5_0,5_2,5_0_1 -28705,2,75.0,0.0,5,111,273.0,80.0,0.0,78,75,0.0,0.0,377.33356412822906,353.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,0,,2,,3,115174,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1534.30925937096,273.0,25806.912360878672,5,5,0,1,92.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013678505784175921,17204.60824058578,4,2,4_0,4_0_0,4_2_0,4_0_0 -28706,2,46.0,0.0,8,111,695.0,1520.0,0.0,0,37,0.0,0.0,960.6110881652718,2215.0,0.0,2756.752409288122,71,2,2,1,1,2,2,2,2,0,,1,2001.0,6,121561,2,1,1,0,1,,320.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1418.62644368667,695.0,9927.936878813849,0,1,1,2,150.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.22310778432997447,6204.960549258655,1,1,1_0,1_1_0,1_2_0,1_0_0 -28707,1,45.0,411.0,2,111,270.0,470.0,0.0,85,68,0.0,0.0,373.1870414455012,740.0,0.0,852.416863398301,41,0,0,0,0,0,0,0,0,0,,2,,2,120987,1,1,0,1,1,948.0,0.0,353.0,42,1.0,0.0,6.0,6.0,2.8999999999999995,1,1,326.435421449856,270.0,14068.342658448428,6,1,2,3,110.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05260036793002121,4851.152640844286,1,1,1_1,1_0_1,1_2_1,1_0_1 -28708,2,80.0,0.0,2,111,180.0,2000.0,0.0,0,77,0.0,0.0,248.7913609636675,2180.0,0.0,3627.3058016948976,42,0,0,0,0,0,0,0,0,0,,1,,2,107116,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1110.23547074475,180.0,22441.022010462177,0,5,0,1,110.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09714352577095942,22441.022010462177,6,3,6,6_1,6_2,6_0_1 -28709,2,47.0,0.0,2,111,0.0,0.0,0.0,64,64,0.0,0.0,0.0,1810.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,100163,2,3,0,0,1,,89.0,500.0,43,4.0,0.0,4.0,4.0,2.5,2,1,1802.42609696997,0.0,61225.18139487144,4,1,2,3,75.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029562999386256054,24490.072557948577,7,4,7,7_0,7_2,7_0_1 -28710,0,40.0,0.0,8,111,500.0,1800.0,0.0,42,33,0.0,0.0,691.0871137879653,2300.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,1,10.0,1,2000.0,6,125953,2,1,2,0,1,,1182.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,1183.28880461503,500.0,69238.39178329542,1,1,5,0,113.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03321856474076716,28849.329909706426,8,4,8,8_1,8_2,8_0_0 -28711,2,63.0,0.0,6,111,402.0,628.0,0.0,52,31,0.0,62.110350289167464,555.6340394855241,1090.0,0.0,1138.9740217321978,31,0,0,0,0,0,0,0,0,0,,1,,4,127756,2,1,2,0,1,,300.0,,42,1.0,6.0,4.0,2.0,1.5,2,2,242.921424107418,402.0,56505.0340322648,1,5,1,2,105.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01929031667121202,37670.022688176534,9,5,9,9_1,9_2,9_0_0 -28712,1,43.0,190.0,2,111,300.0,80.0,0.0,0,67,0.0,0.0,414.65226827277917,380.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,3,35.0,2,,2,108666,2,1,0,1,1,300.0,132.0,178.0,12,1.0,0.0,1.0,1.0,1.0,4,3,1745.32382077562,300.0,15720.746608356054,0,1,2,3,30.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024171879966439918,15720.746608356054,3,2,3_1,3_0_1,3_2_1,3_0_1 -28713,2,55.0,0.0,6,111,0.0,0.0,1450.0,0,52,0.0,0.0,740.8243355144114,1450.0,0.0,1657.7063732463157,71,2,2,2,2,1,1,2,2,2,15.0,1,,4,109272,2,2,5,0,1,,140.0,580.0,12,1.0,2.0,5.0,1.0,1.0,2,2,213.257880737874,0.0,19065.523218128426,0,1,2,3,100.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.07605351205999264,19065.523218128426,5,3,5,5_1,5_2,5_0_0 -28714,1,70.0,62.0,5,111,300.0,0.0,0.0,0,78,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,106196,2,1,0,1,1,624.0,193.0,286.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1568.70839861908,300.0,12909.35602972982,0,5,2,3,55.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023238959349258778,12909.35602972982,2,1,2_1,2_0_1,2_2_1,2_0_0 -28715,2,60.0,0.0,1,111,275.0,1800.0,0.0,74,37,0.0,0.0,380.0979125833809,2075.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,2,5.0,2,,1,125408,2,1,0,0,2,,150.0,,42,1.0,1.0,5.0,2.0,1.5,2,1,329.75343461727,275.0,90783.48059237798,5,1,0,1,130.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02285658124650283,60522.32039491865,10,5,10,10_0,10_3,10_1_0 -28716,1,26.0,249.0,2,111,200.0,0.0,0.0,0,64,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114100,2,1,0,1,1,780.0,0.0,329.0,22,1.0,3.0,3.0,2.0,1.5,2,2,1550.63631005454,200.0,18380.523239018097,0,4,2,3,65.0,7,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01088108305727885,12253.682159345399,2,1,2_1,2_0_1,2_2_1,2_0_1 -28717,2,52.0,0.0,2,111,165.0,105.0,0.0,0,52,0.0,0.0,228.05874755002856,270.0,0.0,190.43355458898213,41,0,0,0,0,0,0,0,0,1,20.0,2,,2,130005,1,1,0,1,1,717.0,52.0,203.0,12,1.0,0.0,2.0,1.0,1.0,3,2,337.952572350705,165.0,23868.87668279476,0,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01131180170680685,23868.87668279476,6,3,6,6_0,6_3,6_0_1 -28718,2,65.0,0.0,7,111,0.0,0.0,500.0,0,78,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,50,0,0,0,0,0,0,0,0,0,,2,,5,118303,2,2,0,0,1,,240.0,,11,0.0,3.0,2.0,1.0,1.0,3,1,1682.85375760454,0.0,20237.259483996553,0,5,1,2,50.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02470690265129009,20237.259483996553,5,3,5,5_0,5_2,5_0_0 -28719,2,78.0,0.0,5,111,0.0,0.0,346.0,77,78,0.0,0.0,176.77601385378367,346.0,0.0,395.5630380298105,71,0,0,0,0,0,0,0,0,0,,2,,3,105754,2,1,0,1,1,920.0,220.0,328.0,41,0.0,6.0,4.0,2.0,1.5,4,3,315.609384872001,0.0,18408.925766268592,5,5,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01879523033516652,12272.617177512395,2,1,2_0,2_0_0,2_3_0,2_0_0 -28720,2,30.0,0.0,2,111,0.0,0.0,0.0,65,54,0.0,0.0,0.0,827.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,120400,1,1,0,1,1,72.0,829.0,361.0,43,2.0,0.0,3.0,5.0,2.8,1,1,420.392350613089,0.0,37595.951866339085,1,1,2,3,78.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021997049122207245,13427.125666549673,3,2,3_0,3_0_0,3_2_0,3_0_1 -28721,2,67.0,0.0,2,111,403.0,114.0,0.0,72,72,0.0,0.0,557.0162137131,517.0,0.0,206.7564306966092,43,0,0,0,0,0,0,0,0,0,,2,,2,120093,2,1,0,1,1,,193.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,335.197921639412,403.0,29220.595507231137,5,5,0,1,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01769300012629994,19480.39700482076,5,3,5,5_0,5_3,5_0_1 -28723,2,66.0,0.0,2,111,345.0,117.0,0.0,0,77,0.0,0.0,476.85010851369606,766.0,0.0,212.19738939915152,10,1,2,2,2,2,2,2,1,0,,2,,2,129627,2,1,0,1,1,825.0,180.0,245.0,11,0.0,1.0,3.0,1.0,1.0,2,2,331.219483205132,345.0,14278.565858745915,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05364684433841857,14278.565858745915,3,2,3_0,3_0_0,3_3_0,3_0_1 -28724,2,47.0,0.0,2,111,938.0,1191.0,0.0,67,65,0.0,20.703450096389155,1296.479425466223,2149.0,0.0,2160.0606049093117,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,118673,2,2,5,0,1,,280.0,692.0,43,4.0,1.0,6.0,4.0,2.5,1,1,1262.96554127212,938.0,61950.14508381819,1,1,2,3,120.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03468918429637922,24780.058033527275,7,4,7,7_1,7_2,7_0_1 -28725,1,25.0,329.0,2,111,0.0,0.0,0.0,85,42,0.0,0.0,0.0,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129284,2,2,0,1,1,1416.0,277.0,301.0,42,1.0,0.0,4.0,4.0,2.3,1,1,319.365255032588,0.0,16629.971354773064,6,1,2,3,120.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024052957847410465,7230.422328162203,1,1,1_1,1_0_1,1_3_1,1_0_1 -28726,2,38.0,0.0,5,111,353.0,639.0,0.0,64,42,0.0,414.0690019277831,487.9075023343035,1392.0,0.0,1158.9242036415199,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,133580,2,1,3,0,1,,230.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1109.80770295308,353.0,47873.716239768095,1,1,1,2,80.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029076497697157738,26596.509022093385,7,4,7,7_1,7_2,7_0_0 -28727,2,72.0,0.0,2,111,336.0,138.0,0.0,77,78,0.0,0.0,464.41054046551267,474.0,0.0,250.28410031694796,71,1,2,2,2,1,2,2,2,0,,2,,2,114297,1,2,0,1,1,408.0,260.0,245.0,41,1.0,0.0,3.0,3.0,2.0,1,1,369.654723308972,336.0,50341.60203709737,5,5,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009415671747011613,25170.801018548686,7,4,7,7_0,7_3,7_0_1 -28728,2,45.0,0.0,1,111,1000.0,1950.0,0.0,54,21,0.0,517.5862524097289,1382.1742275759307,3450.0,0.0,3536.6231566525253,71,0,0,0,0,0,0,0,0,0,,1,,1,106390,2,1,1,0,1,,360.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1231.95740297227,1000.0,60393.22794451723,1,1,1,2,240.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05712561022850918,25163.84497688218,7,4,7,7_1,7_2,7_1_0 -28729,1,29.0,292.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,464.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,101631,2,2,0,1,1,638.0,91.0,264.0,32,1.0,0.0,4.0,2.0,1.3,1,1,305.54118552545,0.0,15848.141388899217,0,1,2,3,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029277881147943784,12190.877991460937,2,1,2_1,2_0_1,2_3_1,2_0_1 -28730,1,52.0,67.0,2,111,180.0,0.0,0.0,0,65,0.0,0.0,248.7913609636675,260.0,137.62616033521533,0.0,42,1,2,2,2,1,2,2,2,0,,2,,2,127831,1,2,0,1,1,756.0,240.0,218.0,12,1.0,0.0,3.0,1.0,1.0,1,1,367.564162195515,180.0,14113.566882672529,0,1,2,3,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.018421990851880718,14113.566882672529,3,2,3_1,3_0_1,3_3_1,3_0_1 -28731,1,27.0,370.0,1,111,534.0,1132.0,0.0,85,47,0.0,0.0,738.0810375255469,1666.0,0.0,2053.0550837593123,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,116760,2,2,0,0,1,,463.0,505.0,42,1.0,0.0,4.0,5.0,2.4,6,5,454.918691669916,534.0,26945.679916617166,6,1,2,3,81.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06182809285775685,11227.36663192382,2,1,2_1,2_0_1,2_3_1,2_1_0 -28732,1,85.0,247.0,7,111,75.0,0.0,0.0,0,77,0.0,0.0,103.66306706819479,75.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,100530,2,1,0,1,1,293.0,80.0,344.0,11,0.0,0.0,1.0,1.0,1.0,2,2,318.580042657064,75.0,11622.065145411716,0,5,2,3,48.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00645324209265935,11622.065145411716,2,1,2_1,2_0_1,2_3_1,2_0_0 -28733,1,51.0,29.0,5,111,378.0,1261.0,0.0,0,52,0.0,0.0,522.4618580237018,1639.0,0.0,2287.016307968633,71,1,2,2,2,1,2,2,2,3,15.0,8,,3,112225,1,1,0,0,1,,0.0,347.0,32,2.0,1.0,3.0,2.0,1.5,1,1,281.426370106599,378.0,18379.672689206476,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0891746021659302,12253.11512613765,2,1,2_1,2_0_1,2_3_1,2_0_0 -28734,2,49.0,0.0,7,112,548.0,1582.0,0.0,34,34,0.0,0.0,757.43147671161,2130.0,0.0,2869.198889140664,71,0,0,0,0,0,0,0,0,0,,1,,5,133518,2,1,2,0,1,,260.0,,43,2.0,2.0,6.0,4.0,2.5,1,1,665.395223979526,548.0,456888.12255244737,1,4,0,1,142.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004661972800038136,182755.24902097895,10,5,10,10_1,10_0,10_0_0 -28735,1,75.0,320.0,1,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,293.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,112437,2,1,0,1,1,313.0,412.0,370.0,41,0.0,3.0,2.0,2.0,1.5,2,2,363.90612730017,0.0,13974.71065565307,5,5,2,3,65.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.020966444831648463,9316.473770435381,1,1,1_1,1_0_1,1_3_1,1_1_0 -28736,1,41.0,251.0,5,112,1400.0,0.0,0.0,0,46,0.0,0.0,1935.0439186063027,1849.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,131025,2,1,3,0,1,,480.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,759.327494137544,1400.0,16446.432856885815,0,4,1,2,90.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11242559502657491,16446.432856885815,4,2,4_1,4_1_1,4_0_1,4_0_0 -28737,2,61.0,0.0,7,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,357.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,121520,2,2,0,1,1,519.0,109.0,365.0,12,1.0,1.0,3.0,1.0,1.0,1,1,314.613746131655,0.0,14353.642250579162,0,1,2,3,59.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02487173595159063,14353.642250579162,3,2,3_0,3_0_0,3_3_0,3_0_0 -28738,1,46.0,418.0,5,111,1400.0,0.0,0.0,56,22,0.0,0.0,1935.0439186063027,1656.0,440.4037130726891,0.0,50,2,2,2,1,2,1,2,2,1,15.0,2,,3,107405,1,2,0,0,1,408.0,0.0,377.0,43,2.0,0.0,3.0,5.0,2.4,2,1,324.648583298703,1400.0,23276.248387147956,1,1,2,3,72.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07114548583844658,9698.436827978316,1,1,1_1,1_0_1,1_3_1,1_0_0 -28739,2,44.0,0.0,9,112,700.0,1400.0,0.0,45,34,0.0,0.0,967.5219593031513,3092.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,111042,2,1,1,0,1,,420.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,664.472433032754,700.0,117726.02591711542,1,1,1,2,156.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02626437082125673,56060.01234148353,10,5,10,10_1,10_0,10_0_0 -28740,1,41.0,270.0,2,111,173.0,96.0,0.0,0,85,0.0,0.0,239.116141370636,269.0,0.0,174.11067848135508,71,2,2,2,1,2,2,2,2,0,,2,,2,112148,1,2,0,1,1,660.0,0.0,271.0,11,0.0,5.0,2.0,1.0,1.0,1,1,336.320373670436,173.0,4940.7408899467555,0,7,2,3,42.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05444527571712001,4940.7408899467555,1,1,1_1,1_0_1,1_3_1,1_0_1 -28741,2,26.0,0.0,6,112,528.0,0.0,0.0,46,52,0.0,534.1490124868402,729.7879921600913,1044.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,132017,2,2,2,1,1,500.0,0.0,818.0,43,2.0,0.0,3.0,2.0,1.5,1,1,776.014765986922,528.0,65470.422112579545,1,1,3,4,65.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015946132105346622,43646.94807505303,10,5,10,10_1,10_0,10_0_0 -28742,2,64.0,0.0,5,112,1650.0,0.0,0.0,54,78,0.0,186.3310508675024,2280.5874755002856,1938.0,185.7953164525407,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,106121,2,1,1,0,1,,310.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,659.389294125977,1650.0,70591.36686734519,1,5,0,1,106.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027453782041674816,47060.91124489679,10,5,10,10_1,10_0,10_0_0 -28743,2,50.0,0.0,2,111,600.0,456.0,0.0,62,54,0.0,0.0,829.3045365455583,1056.0,0.0,827.0257227864367,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,119200,2,1,0,1,1,936.0,0.0,371.0,43,2.0,0.0,4.0,5.0,2.8,1,1,306.807335112009,600.0,39574.477428015554,1,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026683864668101385,14133.741938576984,3,2,3_0,3_0_0,3_3_0,3_0_1 -28744,2,47.0,0.0,6,112,800.0,0.0,0.0,0,42,2987.1697540360015,82.81380038555662,1105.7393820607444,2945.0,111.82125527236246,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,4,114401,2,1,2,0,1,,310.0,,32,2.0,0.0,7.0,3.0,2.0,2,2,762.704703182738,800.0,91769.50295263504,0,1,0,1,130.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03209127112217227,45884.75147631752,10,5,10,10_1,10_0,10_0_0 -28745,2,57.0,0.0,1,112,595.0,2000.0,0.0,75,37,0.0,0.0,822.3936654076787,2595.0,0.0,3627.3058016948976,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,105254,1,2,3,0,1,,180.0,,42,1.0,3.0,6.0,2.0,1.5,3,3,708.432929251015,595.0,87397.91893942063,6,1,0,1,170.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029691782498833974,58265.27929294709,10,5,10,10_1,10_0,10_1_0 -28746,1,43.0,150.0,1,111,168.0,96.0,0.0,0,56,0.0,0.0,232.20527023275633,264.0,0.0,174.11067848135508,71,2,1,2,1,1,2,2,2,3,90.0,2,,1,117259,2,3,0,1,1,566.0,0.0,295.0,12,1.0,3.0,2.0,1.0,1.0,2,2,337.952572350705,168.0,8240.958568861697,0,1,2,3,42.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.03203510826974897,8240.958568861697,1,1,1_1,1_0_1,1_3_1,1_1_0 -28747,2,67.0,0.0,9,112,450.0,0.0,0.0,0,75,0.0,465.827627168756,621.9784024091688,970.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,124087,2,2,1,0,1,,120.0,,11,0.0,1.0,2.0,1.0,1.0,6,5,705.118611237908,450.0,24241.38584831365,0,5,0,1,63.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04001421395911975,24241.38584831365,7,4,7,7_1,7_0,7_0_0 -28748,2,35.0,0.0,2,111,360.0,132.0,0.0,0,68,0.0,0.0,497.582721927335,492.0,0.0,239.40218291186326,50,2,1,2,1,1,2,2,2,3,20.0,2,,2,127284,2,2,0,1,1,170.0,0.0,240.0,12,1.0,0.0,1.0,1.0,1.0,2,2,441.629396726582,360.0,18996.037541861475,0,1,2,3,19.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.025900138327047524,18996.037541861475,5,3,5,5_0,5_3,5_0_1 -28749,2,53.0,0.0,7,112,720.0,0.0,0.0,0,21,0.0,0.0,995.16544385467,880.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,127583,2,1,2,0,1,,285.0,,32,2.0,1.0,4.0,2.0,1.5,1,1,646.079045526033,720.0,12015.527047219195,0,1,0,1,100.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07323856844079613,8010.351364812796,1,1,1_0,1_1_0,1_0_0,1_0_0 -28750,0,65.0,0.0,2,111,435.0,69.0,0.0,0,77,0.0,0.0,601.2457889955298,504.0,0.0,125.14205015847398,71,2,2,2,2,1,2,2,2,0,,2,,2,120877,2,3,0,1,1,829.0,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,409.917219191144,435.0,24798.60961439449,0,5,5,0,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.020323720072896765,24798.60961439449,7,4,7,7_0,7_3,7_0_1 -28751,2,63.0,0.0,2,111,160.0,80.0,0.0,77,72,0.0,0.0,221.1478764121489,240.0,0.0,145.09223206779592,20,2,1,2,2,1,1,2,1,0,,2,,2,116697,1,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,347.430378518736,160.0,16680.630831409668,7,5,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.014387945061890551,11120.420554273112,2,1,2_0,2_0_0,2_3_0,2_0_1 -28752,2,61.0,0.0,1,112,700.0,2000.0,0.0,74,74,0.0,0.0,967.5219593031513,2700.0,0.0,3627.3058016948976,20,0,0,0,0,0,0,0,0,0,,1,,1,133473,1,2,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,704.020333209226,700.0,92415.74413164551,5,5,0,1,100.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029215801110186065,61610.49608776367,10,5,10,10_1,10_0,10_1_0 -28753,2,45.0,0.0,8,112,0.0,0.0,0.0,62,54,0.0,0.0,0.0,1530.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,1999.0,6,119972,2,1,2,0,1,,811.0,2100.0,43,3.0,0.0,6.0,5.0,2.8,3,2,759.330750383461,0.0,86017.99016942277,1,1,2,3,134.0,8,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01778697685201062,30720.71077479385,8,4,8,8_1,8_0,8_0_0 -28754,2,43.0,0.0,8,112,3800.0,0.0,0.0,85,37,0.0,0.0,5252.262064788536,4924.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,110407,2,1,1,0,1,,480.0,,42,1.0,1.0,6.0,5.0,2.4,2,2,661.255306720096,3800.0,269340.7381471557,6,1,1,2,235.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018281675597509307,112225.30756131487,10,5,10,10_1,10_0,10_0_0 -28755,2,52.0,0.0,1,112,2069.01,0.0,0.0,56,65,0.0,0.0,2859.7322985968763,2069.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,106913,2,2,2,0,1,,106.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,805.599350364018,2069.01,74243.6779169144,1,1,0,1,170.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02786769268509844,37121.8389584572,9,5,9,9_1,9_0,9_1_0 -28756,2,24.0,0.0,2,111,246.0,420.0,0.0,85,21,0.0,0.0,340.0148599836789,666.0,0.0,761.7342183559285,60,2,1,2,1,1,2,2,2,2,5.0,2,,2,114472,1,2,0,1,2,44.0,0.0,421.0,42,1.0,0.0,3.0,3.0,1.8,1,1,398.73927453736,246.0,15381.454601208325,6,1,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04329889579803986,8545.252556226847,1,1,1_0,1_0_0,1_3_0,1_0_1 -28757,0,37.0,0.0,2,112,594.0,0.0,0.0,37,33,5279.822540258632,0.0,821.0114911801028,4249.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,129059,2,1,2,0,1,,244.0,,43,2.0,0.0,3.0,4.0,2.1,3,3,744.756140691295,594.0,61142.77980379292,2,1,5,0,100.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06949307855539173,29115.60943037758,8,4,8,8_1,8_0,8_0_1 -28758,1,58.0,434.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,118056,1,2,0,0,2,,0.0,480.0,42,1.0,2.0,3.0,4.0,2.5,2,2,355.279742530659,0.0,7678.784453427032,6,4,2,3,53.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15627473427313637,3071.5137813708125,1,1,1_1,1_0_1,1_3_1,1_0_1 -28759,2,40.0,0.0,5,112,4000.0,0.0,0.0,0,37,0.0,0.0,5528.696910303723,4000.0,0.0,0.0,50,2,2,2,1,1,2,2,1,2,23.0,1,,3,123054,2,2,2,0,1,,280.0,,32,1.0,0.0,6.0,3.0,1.6,2,2,796.58961537806,4000.0,122946.34460490932,0,1,1,2,280.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03253451749910975,76841.46537806831,10,5,10,10_1,10_0,10_0_0 -28760,2,63.0,0.0,7,112,456.0,696.0,0.0,62,63,0.0,0.0,630.2714477746243,1152.0,0.0,1262.3024189898244,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,120997,2,1,2,0,1,,150.0,,43,2.0,2.0,4.0,2.0,1.5,3,2,733.104513829083,456.0,111312.31660733614,1,1,0,1,132.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010349259049775957,74208.21107155742,10,5,10,10_1,10_0,10_0_0 -28761,2,51.0,0.0,9,112,526.0,2020.0,0.0,0,46,0.0,155.27587572291867,727.0236437049394,2696.0,0.0,3663.5788597118467,71,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,113417,2,1,1,0,1,,280.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,753.20919320326,526.0,86059.5176075785,0,1,1,2,120.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03132715677414612,43029.75880378925,9,5,9,9_1,9_0,9_0_0 -28762,1,34.0,370.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,274.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106499,2,2,0,1,1,804.0,329.0,342.0,32,1.0,0.0,3.0,2.0,1.3,3,2,312.570159111751,0.0,7955.092990470679,0,4,2,3,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03444334344403286,6119.302300362061,1,1,1_1,1_0_1,1_3_1,1_0_1 -28763,2,56.0,0.0,2,112,1360.0,0.0,0.0,56,46,5974.339508072003,0.0,1879.7569495032656,5500.0,240.84578058662683,0.0,71,2,2,2,2,1,1,2,2,2,30.0,1,,2,102590,2,3,4,0,1,,0.0,822.0,43,3.0,0.0,5.0,6.0,3.3,1,1,717.535965461235,1360.0,83992.05433761758,1,1,2,3,100.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.06548238453475606,25452.137678065934,7,4,7,7_1,7_0,7_0_1 -28764,2,66.0,0.0,2,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,916.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129874,2,1,0,1,1,,393.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,304.870270734803,0.0,29774.803107494172,5,5,0,1,90.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030764267246134947,19849.86873832945,5,3,5,5_0,5_3,5_0_1 -28765,2,86.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,444.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,131096,2,2,0,2,1,,273.0,,41,0.0,0.0,3.0,2.0,1.5,3,2,333.325054248812,0.0,45601.332441554034,5,5,0,1,72.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.00973655760101007,30400.888294369357,8,4,8,8_0,8_3,8_0_1 -28766,2,69.0,0.0,6,112,1000.0,0.0,0.0,77,78,0.0,0.0,1382.1742275759307,1066.0,113.54158227655265,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,124227,2,1,0,0,1,,0.0,299.0,41,0.0,0.0,2.0,2.0,1.5,2,2,897.142670017843,1000.0,24444.13077707234,5,5,2,3,49.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04360965050145564,16296.087184714894,4,2,4_0,4_0_0,4_0_0,4_0_0 -28767,1,48.0,125.0,2,111,900.0,0.0,0.0,0,68,0.0,0.0,1243.9568048183376,926.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,20.0,2,,2,111032,1,3,0,1,2,,700.0,333.0,32,1.0,0.0,4.0,4.0,2.5,3,3,294.125838151581,900.0,32661.597955436977,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.028351337900350784,13064.639182174791,2,1,2_1,2_0_1,2_3_1,2_0_1 -28768,1,63.0,270.0,8,112,1000.0,0.0,0.0,0,62,0.0,0.0,1382.1742275759307,1070.0,120.42289029331342,0.0,71,2,2,2,2,1,2,2,1,0,,2,1999.0,6,128372,2,2,0,0,1,,0.0,314.0,12,1.0,2.0,2.0,1.0,1.0,2,1,840.980502351255,1000.0,7204.897959183673,0,4,2,3,58.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.1485100838431906,7204.897959183673,1,1,1_1,1_0_1,1_0_1,1_0_0 -28769,1,26.0,188.0,2,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,496.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,111472,1,3,0,1,2,380.0,0.0,385.0,42,1.0,0.0,3.0,3.0,1.8,3,3,348.478821418593,0.0,18773.69508944579,6,1,2,3,67.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026419945441579138,10429.830605247662,2,1,2_1,2_0_1,2_3_1,2_0_1 -28770,2,29.0,0.0,5,112,1100.0,0.0,0.0,0,46,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,117233,2,1,0,0,1,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1074.92419068438,1100.0,35819.138617931465,0,1,2,3,50.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030709839556256877,35819.138617931465,9,5,9,9_0,9_0,9_0_0 -28771,2,37.0,0.0,6,112,1343.3,0.0,0.0,31,37,0.0,103.51725048194578,1856.6746399027475,1443.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,4,119265,1,3,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,915.400709018298,1343.3,130500.70853825021,1,1,1,2,111.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011057411229127937,62143.194542023906,10,5,10,10_0,10_0,10_0_0 -28772,2,53.0,0.0,7,112,913.0,0.0,0.0,0,54,0.0,0.0,1261.9250697768246,913.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,107534,2,2,0,0,2,,0.0,,32,1.0,0.0,4.0,2.0,1.5,1,1,968.120468214801,913.0,55178.286627993366,0,1,1,2,76.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016546363720123407,36785.524418662244,9,5,9,9_0,9_0,9_0_0 -28773,1,74.0,126.0,2,111,420.0,0.0,0.0,86,78,0.0,0.0,580.5131755818909,939.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,112643,2,1,0,1,1,,0.0,500.0,41,0.0,4.0,4.0,2.0,1.5,1,1,342.27923569588,420.0,14601.147423315604,6,5,2,3,78.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0643100143280913,9734.098282210403,1,1,1_1,1_0_1,1_3_1,1_0_1 -28774,2,31.0,0.0,5,112,338.0,1102.0,0.0,55,54,0.0,0.0,467.17488892066456,1440.0,0.0,1998.6454967338886,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,130565,1,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,958.380352225633,338.0,66437.38927885226,4,1,1,2,80.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02167454223639049,36909.66071047348,9,5,9,9_0,9_0,9_0_0 -28775,2,53.0,0.0,2,111,478.0,112.0,0.0,52,53,0.0,0.0,660.6792807812948,590.0,0.0,203.12912489491427,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,106924,2,1,0,1,1,,278.0,550.0,43,2.0,0.0,4.0,3.0,2.0,1,1,329.755153457148,478.0,38734.72044568836,1,1,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015231812524044538,19367.36022284418,5,3,5,5_0,5_3,5_0_1 -28776,2,41.0,0.0,9,112,230.0,700.0,0.0,0,37,0.0,0.0,317.900072342464,930.0,0.0,1269.5570305932142,50,2,2,2,1,1,1,2,2,2,15.0,2,2008.0,6,109787,2,3,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,4,3,1046.29781565412,230.0,76790.48144442904,0,1,0,1,85.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.012110876016228822,76790.48144442904,10,5,10,10_0,10_0,10_0_0 -28777,2,44.0,0.0,1,112,465.0,2460.0,0.0,55,46,0.0,0.0,642.7110158228077,2925.0,0.0,4461.586136084724,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,124676,1,2,1,0,1,,440.0,,43,2.0,0.0,6.0,4.0,2.5,2,1,654.884869736775,465.0,87510.25014552913,1,1,1,2,80.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03342465591328717,35004.100058211654,9,5,9,9_1,9_0,9_1_0 -28778,1,40.0,470.0,2,111,400.0,560.0,0.0,0,56,0.0,0.0,552.8696910303722,960.0,0.0,1015.6456244745714,71,1,2,2,2,2,2,2,1,0,,2,,2,133496,2,2,0,1,1,,660.0,533.0,31,1.0,0.0,5.0,8.0,3.8999999999999995,1,1,313.430048998675,400.0,35202.533227225395,0,6,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027270764686262484,9026.290571083437,1,1,1_1,1_0_1,1_3_1,1_0_1 -28779,2,91.0,0.0,2,111,472.0,0.0,0.0,0,75,0.0,0.0,652.3862354158392,472.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,114181,1,2,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,3,2,374.704202441464,472.0,17798.117131691735,0,5,0,1,71.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02651965915875146,17798.117131691735,4,2,4_0,4_0_0,4_3_0,4_0_1 -28780,2,66.0,0.0,2,112,750.0,2300.0,0.0,74,74,0.0,165.62760077111324,1036.630670681948,3210.0,0.0,4171.401671949133,71,0,0,0,0,0,0,0,0,0,,1,,2,102561,2,2,2,0,1,,400.0,,41,0.0,2.0,8.0,2.0,1.5,3,3,730.745650517282,750.0,156816.8192021429,5,5,0,1,360.0,8,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020469743081972518,104544.54613476194,10,5,10,10_1,10_0,10_0_1 -28781,2,71.0,0.0,2,111,400.0,0.0,0.0,0,75,0.0,0.0,552.8696910303722,400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,112732,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,379.45265780115,400.0,25859.433155630562,0,5,0,1,72.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015468243158798904,25859.433155630562,7,4,7,7_0,7_3,7_0_1 -28782,2,58.0,0.0,5,112,665.0,1100.0,0.0,77,45,0.0,310.55175144583734,919.1458613379938,2065.0,0.0,1995.0181909321939,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,123168,2,1,2,0,1,,350.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,730.707107388569,665.0,52488.57821192563,5,1,0,1,110.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03934189247158581,34992.38547461709,9,5,9,9_1,9_0,9_0_0 -28783,2,65.0,0.0,2,111,560.0,0.0,0.0,75,74,0.0,0.0,774.0175674425211,639.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127546,2,1,0,1,1,,0.0,,41,0.0,3.0,9.0,2.0,1.5,1,1,373.389445400991,560.0,64675.500352748975,5,5,0,1,180.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009880093644653804,43117.000235165986,9,5,9,9_0,9_3,9_0_1 -28784,2,86.0,0.0,2,112,600.0,0.0,0.0,77,78,4480.754631054002,0.0,829.3045365455583,3600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118046,2,1,2,0,1,,172.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,642.645316355402,600.0,72272.05215852085,5,5,0,1,100.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049811786056715164,48181.368105680565,10,5,10,10_1,10_0,10_0_1 -28785,2,47.0,0.0,2,111,200.0,0.0,0.0,0,52,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,129041,2,1,0,1,1,388.0,0.0,246.0,12,1.0,0.0,2.0,1.0,1.0,4,3,337.952572350705,200.0,14885.073319595562,0,1,2,3,45.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01343627913049703,14885.073319595562,3,2,3_0,3_0_0,3_3_0,3_0_1 -28786,1,73.0,278.0,2,111,272.0,525.0,0.0,77,78,0.0,0.0,375.9513899006531,797.0,0.0,952.1677729449107,71,2,1,2,2,1,2,2,2,0,,2,,2,103028,2,1,0,1,1,492.0,500.0,271.0,41,0.0,1.0,3.0,2.0,1.5,2,2,331.346530547281,272.0,8131.548098751006,7,5,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0980133168150869,5421.032065834004,1,1,1_1,1_0_1,1_3_1,1_0_1 -28788,2,59.0,0.0,6,112,541.0,0.0,0.0,55,62,2987.1697540360015,0.0,747.7562571185784,2541.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,125288,2,1,2,0,1,,130.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,713.243572896997,541.0,86740.56593123448,1,1,0,1,145.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029294252034445273,57827.04395415632,10,5,10,10_1,10_0,10_0_0 -28789,2,37.0,0.0,7,112,324.0,340.0,0.0,0,33,0.0,0.0,447.8244497346015,692.0,48.169156117325365,616.6419862881327,71,1,2,2,1,2,1,2,2,2,10.0,2,,5,118273,2,1,0,1,1,340.0,0.0,421.0,12,1.0,0.0,2.0,1.0,1.0,1,1,857.625435786481,324.0,22067.930206939858,0,1,2,3,47.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.031357721069028115,22067.930206939858,6,3,6,6_0,6_0,6_0_0 -28790,1,31.0,319.0,2,111,294.0,264.0,0.0,85,22,0.0,0.0,406.35922290732356,558.0,0.0,478.8043658237265,71,2,2,2,2,2,2,1,2,0,,2,,2,108198,2,2,0,1,1,412.0,350.0,284.0,42,1.0,0.0,3.0,4.0,2.1,2,2,298.245671749072,294.0,9284.151507806073,6,1,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06010242287955298,4421.024527526702,1,1,1_1,1_0_1,1_3_1,1_0_1 -28791,2,49.0,0.0,1,112,580.0,1200.0,0.0,0,22,0.0,0.0,801.6610519940398,1780.0,0.0,2176.3834810169387,43,2,2,1,1,1,2,2,2,0,,1,,1,100977,2,1,2,0,1,,350.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,719.661377156345,580.0,5978.463556576199,0,1,0,1,58.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.29773536012309265,3985.6423710507993,1,1,1_0,1_1_0,1_0_0,1_1_0 -28792,2,57.0,0.0,2,400,700.0,0.0,0.0,71,11,0.0,103.51725048194578,967.5219593031513,920.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125113,2,1,2,0,1,,400.0,,42,1.0,2.0,4.0,2.0,1.5,4,4,1031.09773519909,700.0,17605.3188083158,5,1,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0522569349647586,11736.879205543866,2,1,2_0,2_1_0,2_0_0,2_0_1 -28793,0,52.0,0.0,1,400,200.0,0.0,0.0,0,64,1344.2263893162005,0.0,276.4348455151861,1160.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124073,2,2,2,0,1,,180.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1449.12896884728,200.0,9447.256355721838,0,1,5,0,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12278697182779769,9447.256355721838,1,1,1_0,1_1_0,1_0_0,1_1_0 -28794,2,71.0,0.0,1,400,940.0,0.0,0.0,75,74,0.0,103.51725048194578,1299.2437739213747,1043.0,5.160981012570575,0.0,43,2,2,2,1,2,2,2,2,0,,1,,1,102360,2,2,3,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,1082.86866706822,940.0,54190.1723156932,5,5,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.019247032357155885,36126.78154379546,9,5,9,9_1,9_0,9_1_0 -28795,1,36.0,245.0,2,111,344.0,148.0,0.0,0,85,0.0,0.0,475.4679342861201,492.0,0.0,268.42062932542245,71,2,2,2,2,2,2,2,1,0,,2,,2,120518,2,3,0,0,1,,144.0,273.0,11,0.0,1.0,3.0,1.0,1.0,3,3,326.033410884793,344.0,1193.0568553347052,0,7,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.41238604664986583,1193.0568553347052,1,1,1_1,1_0_1,1_3_1,1_0_1 -28796,2,78.0,0.0,1,400,160.0,0.0,0.0,0,78,1493.5848770180007,0.0,221.1478764121489,1190.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114717,2,2,1,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1281.86390632747,160.0,25467.08878840147,0,5,0,1,90.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04672697416997126,25467.08878840147,7,4,7,7_1,7_0,7_1_0 -28797,0,71.0,0.0,1,400,350.0,0.0,0.0,71,71,0.0,1035.1725048194578,483.76097965157567,1350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124099,1,2,4,0,2,,0.0,,41,0.0,3.0,2.0,2.0,1.5,1,1,1041.87925637218,350.0,18561.242203412334,5,5,0,1,60.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0727322010674379,12374.161468941556,2,1,2_0,2_1_0,2_0_0,2_1_0 -28798,2,65.0,0.0,1,111,283.0,1000.0,0.0,56,75,0.0,0.0,391.15530640398833,1283.0,0.0,1813.6529008474488,60,1,2,2,2,1,2,2,2,0,,2,,1,115961,2,2,0,0,1,,540.0,296.0,42,1.0,4.0,3.0,2.0,1.5,2,2,314.087095465104,283.0,33390.896301123605,1,5,2,3,47.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.038423646626006475,22260.597534082404,6,3,6,6_0,6_3,6_1_0 -28799,2,53.0,0.0,6,400,2000.0,0.0,0.0,11,11,0.0,1035.1725048194578,2764.3484551518613,3160.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106273,2,1,2,0,1,,175.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1057.96275252369,2000.0,24628.129407998284,1,1,0,1,198.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12830856731545967,16418.752938665522,4,2,4_0,4_1_0,4_0_0,4_0_0 -28800,2,54.0,0.0,1,400,0.0,0.0,0.0,11,11,0.0,0.0,0.0,1964.0,10.32196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123969,2,1,2,0,1,,1116.0,,43,4.0,0.0,4.0,4.0,2.5,1,1,1001.69617063176,0.0,66709.15902214142,1,1,0,1,100.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029441234588913484,26683.66360885657,7,4,7,7_1,7_0,7_1_0 -28801,2,53.0,0.0,2,111,828.0,780.0,0.0,78,90,0.0,0.0,1144.4402604328704,1608.0,0.0,1414.6492626610102,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,126812,1,3,0,1,1,740.0,552.0,347.0,42,5.0,1.0,4.0,7.0,4.0,1,1,280.167719528323,828.0,44354.601792959744,7,1,2,3,88.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03625328455220699,11088.650448239936,2,1,2_0,2_0_0,2_3_0,2_0_1 -28802,2,50.0,0.0,1,400,510.0,0.0,0.0,63,34,2987.1697540360015,0.0,704.9088560637246,2610.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,35.0,1,,1,108612,2,2,3,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,1068.69594238755,510.0,60949.531907390716,1,1,1,2,108.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04282231410678828,26499.796481474226,7,4,7,7_1,7_0,7_1_0 -28803,0,49.0,0.0,1,400,900.0,0.0,0.0,0,63,0.0,0.0,1243.9568048183376,901.0,1.7203270041901917,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,109373,2,2,1,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1290.77153240314,900.0,26024.560472209247,0,1,5,0,90.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03462114186182501,26024.560472209247,7,4,7,7_1,7_0,7_1_0 -28804,2,37.0,0.0,9,400,1360.0,0.0,0.0,34,62,0.0,0.0,1879.7569495032656,1360.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,1.0,1,2009.0,6,118189,2,1,1,0,1,,308.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1118.83036793006,1360.0,57356.73368442422,1,1,1,2,136.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023711252587755378,23898.639035176762,6,3,6,6_1,6_0,6_0_0 -28805,2,80.0,0.0,1,111,732.0,1008.0,0.0,78,78,0.0,0.0,1011.7515345855811,1740.0,0.0,1828.1621240542286,50,0,0,0,0,0,0,0,0,0,,2,,1,117753,2,2,0,0,1,,0.0,303.0,41,2.0,4.0,3.0,4.0,2.5,1,1,388.210845112293,732.0,35540.915133346156,5,5,2,3,63.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04895765889740555,14216.366053338463,3,2,3_0,3_0_0,3_3_0,3_1_0 -28806,1,34.0,250.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1132.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,120270,1,2,0,0,1,,521.0,990.0,32,1.0,0.0,5.0,3.0,1.6,2,2,449.868767413148,0.0,23215.001820866706,0,1,2,3,90.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.048761572742264725,14509.37613804169,3,2,3_1,3_0_1,3_3_1,3_1_0 -28807,2,74.0,0.0,1,400,500.0,0.0,0.0,0,71,0.0,0.0,691.0871137879653,1486.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,117831,1,1,1,0,2,,300.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1179.70803644455,500.0,15810.904990350813,0,5,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0939857649455794,15810.904990350813,3,2,3_0,3_1_0,3_0_0,3_1_0 -28808,2,67.0,0.0,2,400,1200.0,0.0,0.0,77,78,2987.1697540360015,0.0,1658.6090730911167,3380.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116964,2,3,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1140.33337428637,1200.0,20792.54157892912,5,5,0,1,94.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1625582898160582,13861.694385952746,3,2,3_0,3_1_0,3_0_0,3_0_1 -28809,2,36.0,0.0,1,111,500.0,300.0,0.0,85,46,0.0,0.0,691.0871137879653,800.0,0.0,544.0958702542347,42,2,2,2,1,1,2,2,2,0,,2,,1,107541,2,2,0,0,1,,300.0,800.0,42,1.0,0.0,3.0,4.0,2.1,1,1,373.705361060908,500.0,59950.95288114413,7,1,2,3,82.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.01334424161007151,28548.07280054482,8,4,8,8_0,8_3,8_1_0 -28810,2,63.0,0.0,1,400,2.0,0.0,0.0,71,71,0.0,1035.1725048194578,2.764348455151861,1062.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,111485,2,3,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,4,4,1122.36613999432,2.0,23145.084551003467,5,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04588447269050726,15430.056367335645,3,2,3_0,3_1_0,3_0_0,3_1_0 -28811,2,87.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,555.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,107377,1,1,0,0,2,,315.0,300.0,21,0.0,0.0,4.0,2.0,1.5,3,3,376.451038826325,0.0,35462.40867278373,0,5,2,3,80.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015650375165462038,23641.60578185582,6,3,6,6_0,6_3,6_1_0 -28812,2,44.0,0.0,1,400,460.0,0.0,0.0,85,22,0.0,621.1035028916747,635.800144684928,1066.0,10.32196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124714,2,1,1,0,1,,200.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,1128.56073513849,460.0,43070.9181291431,6,1,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024749878718715118,17946.21588714296,4,2,4_0,4_1_0,4_0_0,4_1_0 -28813,1,63.0,269.0,7,111,240.0,0.0,0.0,0,74,0.0,0.0,331.72181461822333,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,100080,2,3,0,1,1,529.0,0.0,375.0,11,0.0,0.0,2.0,1.0,1.0,3,3,326.053990608059,240.0,15288.6598297684,0,5,2,3,54.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01569790960569993,15288.6598297684,3,2,3_1,3_0_1,3_3_1,3_0_0 -28814,2,48.0,0.0,2,111,390.0,960.0,0.0,54,52,0.0,0.0,539.0479487546129,1350.0,0.0,1741.106784813551,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,118445,1,1,0,0,2,,372.0,380.0,43,2.0,0.0,3.0,4.0,2.1,1,1,298.245671749072,390.0,43727.40253564685,1,1,2,3,69.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030873089223616052,20822.57263602231,5,3,5,5_0,5_3,5_0_1 -28815,2,46.0,0.0,2,400,700.0,0.0,0.0,52,63,0.0,1242.2070057833494,967.5219593031513,2020.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,104644,2,2,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1157.99396647162,700.0,53606.15910288078,1,1,1,2,114.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037682237149713,25526.742429943228,7,4,7,7_1,7_0,7_0_1 -28816,2,40.0,0.0,1,111,0.0,0.0,1560.0,0,38,0.0,0.0,797.0248023465391,1560.0,0.0,1783.463408458105,71,0,0,0,0,0,0,0,0,1,15.0,2,,1,101725,1,3,0,0,2,,213.0,,32,1.0,0.0,4.0,4.0,1.9,1,1,365.63238913489,0.0,101859.49188208225,0,1,1,2,105.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015315214823631122,53610.25888530645,10,5,10,10_0,10_3,10_1_0 -28817,2,58.0,0.0,1,400,700.0,0.0,0.0,22,46,0.0,569.3448776507017,967.5219593031513,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,1.0,1,,1,128557,2,3,1,0,1,,400.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,1313.27833374362,700.0,33968.74247161387,1,1,1,2,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0367985362144203,16984.371235806935,4,2,4_0,4_1_0,4_0_0,4_1_0 -28818,2,27.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,2718.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,10.0,2,,1,115935,1,3,0,0,1,,140.0,600.0,12,1.0,0.0,2.0,1.0,1.0,2,2,429.218280695555,0.0,26475.510902163987,0,1,2,3,47.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10266090841623166,26475.510902163987,7,4,7,7_0,7_3,7_1_0 -28819,2,78.0,0.0,1,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1661.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,1,,1,125984,2,2,3,0,1,,182.0,,11,0.0,1.0,14.0,1.0,1.0,4,4,1332.19527716512,0.0,18799.392131404966,0,5,0,1,200.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.0883539206156165,18799.392131404966,5,3,5,5_1,5_0,5_1_0 -28820,2,28.0,0.0,1,111,518.0,0.0,0.0,0,46,0.0,0.0,715.966249884332,518.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,,1,131235,2,1,0,0,1,,100.0,,12,1.0,0.0,1.0,1.0,1.0,3,3,353.467486238448,518.0,32470.82437251225,0,1,1,2,30.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01595278253663637,32470.82437251225,8,4,8,8_0,8_3,8_1_0 -28821,1,82.0,120.0,9,400,350.0,0.0,0.0,71,71,1493.5848770180007,0.0,483.76097965157567,1530.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,104530,2,1,2,0,1,,0.0,280.0,41,0.0,1.0,2.0,2.0,1.5,1,1,1307.62938564652,350.0,16709.32366724049,5,5,2,3,70.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09156564505358442,11139.54911149366,2,1,2_1,2_1_1,2_0_1,2_0_0 -28822,1,25.0,254.0,1,400,0.0,0.0,0.0,47,63,0.0,0.0,0.0,3128.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,112584,2,1,1,0,1,,251.0,500.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1268.53469798913,0.0,20064.25616724266,3,1,2,3,96.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.15589912598438813,13376.170778161773,3,2,3_1,3_1_1,3_0_1,3_1_0 -28823,1,40.0,171.0,1,400,120.0,0.0,0.0,62,47,2473.376556341809,0.0,165.86090730911167,1896.0,206.439240502823,0.0,20,2,2,1,2,1,2,2,2,0,,1,,1,133106,1,3,4,0,1,,448.0,427.0,43,2.0,1.0,5.0,5.0,2.8,2,2,1252.31685003438,120.0,40526.296572530424,4,1,2,3,180.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.046784437768862125,14473.677347332296,3,2,3_1,3_1_1,3_0_1,3_1_0 -28824,2,45.0,0.0,1,400,2400.0,0.0,0.0,21,55,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,10,2,2,1,2,1,2,2,2,2,45.0,1,,1,133287,1,1,1,0,2,,550.0,,43,2.0,1.0,3.0,2.0,1.5,1,1,1114.01052272143,2400.0,10484.561994416985,1,1,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.22890798883901844,6989.70799627799,1,1,1_0,1_1_0,1_0_0,1_1_0 -28825,2,50.0,0.0,7,111,312.0,882.0,0.0,52,42,0.0,0.0,431.23835900369033,1194.0,0.0,1599.6418585474498,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,104953,1,2,0,0,1,,0.0,825.0,43,2.0,0.0,5.0,4.0,2.1,3,2,300.395910122128,312.0,37233.03661202499,1,1,2,3,105.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032068294951112825,17730.017434297613,4,2,4_0,4_0_0,4_3_0,4_0_0 -28827,1,51.0,178.0,2,111,1068.0,216.0,0.0,0,52,0.0,0.0,1476.1620750510938,1284.0,0.0,391.749026583049,10,2,1,2,2,1,2,2,2,2,20.0,2,,2,100976,1,3,0,1,1,945.0,588.0,385.0,32,2.0,0.0,5.0,4.0,2.5,2,2,283.703127054294,1068.0,34667.91004941346,0,1,2,3,96.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.037037133134644316,13867.164019765385,3,2,3_1,3_0_1,3_3_1,3_0_1 -28828,1,71.0,241.0,2,111,600.0,200.0,0.0,85,78,0.0,0.0,829.3045365455583,800.0,0.0,362.73058016948977,71,2,1,2,2,1,2,2,2,0,,2,,2,101575,2,1,0,1,1,1302.0,400.0,530.0,41,1.0,4.0,4.0,4.0,2.5,1,1,342.166990832604,600.0,18598.80405883918,6,5,2,3,110.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.043013518367585345,7439.521623535673,1,1,1_1,1_0_1,1_3_1,1_0_1 -28829,1,46.0,115.0,7,400,900.0,0.0,0.0,62,11,0.0,0.0,1243.9568048183376,2398.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,100279,1,1,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1001.69617063176,900.0,19132.598641051452,1,1,1,2,94.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1253358231669995,7653.039456420581,1,1,1_1,1_1_1,1_0_1,1_0_0 -28830,2,47.0,0.0,2,111,384.0,106.0,0.0,85,22,0.0,0.0,530.7549033891573,490.0,0.0,192.24720748982958,50,1,2,2,2,1,2,2,2,1,5.0,2,,2,100839,2,1,0,1,1,824.0,498.0,340.0,42,1.0,0.0,3.0,4.0,2.1,2,2,276.646430525856,384.0,4261.478748847798,6,1,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.11498356060850574,2029.2755946894274,1,1,1_0,1_0_0,1_3_0,1_0_1 -28831,1,29.0,406.0,2,400,2400.0,0.0,0.0,52,52,0.0,0.0,3317.2181461822333,2580.0,309.6588607542345,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,125697,2,2,5,0,1,,499.0,397.0,43,2.0,0.0,3.0,4.0,2.1,3,2,1094.1693296991,2400.0,11099.588465667957,4,4,2,3,83.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.2324410502227336,5285.518316984741,1,1,1_1,1_1_1,1_0_1,1_0_1 -28832,2,85.0,0.0,1,400,0.0,0.0,0.0,0,71,0.0,0.0,0.0,2095.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,128230,1,2,4,0,2,,0.0,,11,0.0,5.0,4.0,1.0,1.0,3,3,1254.77037971388,0.0,13436.596340459837,0,5,0,1,90.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15591746205038584,13436.596340459837,3,2,3_0,3_1_0,3_0_0,3_1_0 -28834,2,75.0,0.0,1,111,875.0,0.0,0.0,0,75,0.0,0.0,1209.4024491289392,960.0,146.2277953561663,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,107117,2,1,1,0,1,,300.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1215.67669099265,875.0,30398.654857480593,0,5,0,1,77.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03158034473896335,30398.654857480593,8,4,8,8_1,8_2,8_1_0 -28835,2,44.0,0.0,1,111,180.0,1098.0,0.0,34,34,0.0,0.0,248.7913609636675,1278.0,0.0,1991.3908851304989,33,0,0,0,0,0,0,0,0,1,5.0,2,,1,122487,1,2,0,0,1,,130.0,,43,2.0,2.0,4.0,4.0,2.1,1,1,363.104014092734,180.0,58454.20403902112,4,1,1,2,95.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021863269220924995,27835.33525667672,7,4,7,7_0,7_3,7_1_0 -28836,2,58.0,0.0,1,111,0.0,0.0,800.0,0,37,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,33,0,0,0,0,0,0,0,0,2,45.0,2,,1,130942,2,1,0,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,360.598407828765,0.0,38993.06174115657,0,1,0,1,55.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020516470476479986,38993.06174115657,9,5,9,9_0,9_3,9_1_0 -28837,2,57.0,0.0,1,111,1760.0,0.0,0.0,85,35,0.0,0.0,2432.626640533638,1845.0,146.2277953561663,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,1,124552,2,3,2,0,1,,700.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1089.6755090786,1760.0,15697.096316632182,6,1,0,1,90.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11753766192063765,10464.730877754788,2,1,2_0,2_1_0,2_2_0,2_1_0 -28838,2,43.0,0.0,1,111,310.0,1080.0,0.0,0,43,0.0,0.0,428.47401054853844,1390.0,0.0,1958.7451329152448,71,0,0,0,0,0,0,0,0,2,50.0,2,,1,102401,2,1,0,0,1,,150.0,850.0,32,1.0,0.0,3.0,4.0,2.1,1,1,402.345640620074,310.0,46294.87664864985,0,1,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030024920695852813,22045.179356499928,6,3,6,6_0,6_3,6_1_0 -28839,2,73.0,0.0,2,111,360.0,0.0,0.0,77,74,2389.735803228801,351.95865163861566,497.582721927335,2420.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118924,2,2,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1138.71021891508,360.0,40226.33220644043,5,5,0,1,90.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06015959863257298,26817.554804293617,7,4,7,7_1,7_2,7_0_1 -28840,2,75.0,0.0,1,111,230.0,230.0,0.0,0,74,0.0,0.0,317.900072342464,460.0,0.0,417.14016719491326,71,0,0,0,0,0,0,0,0,0,,2,,1,128745,2,2,0,0,2,,231.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,362.253038617738,230.0,32282.648439352968,0,5,0,1,53.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014249140706784577,32282.648439352968,8,4,8,8_0,8_3,8_1_0 -28841,2,65.0,0.0,2,111,408.0,0.0,0.0,0,72,2398.697312490909,0.0,563.9270848509797,2049.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104891,2,1,1,0,1,,243.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,1137.45827098804,408.0,13800.811618345568,0,5,0,1,80.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14846952894250381,13800.811618345568,3,2,3_0,3_1_0,3_2_0,3_0_1 -28842,2,58.0,0.0,1,111,0.0,0.0,700.0,85,34,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,20,0,0,0,0,0,0,0,0,1,15.0,2,,1,123908,2,1,0,0,1,,274.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,351.664069740918,0.0,56649.66986723414,6,1,1,2,73.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012356647472801536,37766.446578156094,9,5,9,9_0,9_3,9_1_0 -28843,2,53.0,0.0,2,111,600.0,0.0,0.0,56,43,2091.018827825201,0.0,829.3045365455583,2080.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126793,2,2,1,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,1077.17254687473,600.0,48535.44328432611,1,1,0,1,150.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042855279755355795,19414.177313730444,5,3,5,5_1,5_2,5_0_1 -28844,2,49.0,0.0,1,111,0.0,0.0,1400.0,47,47,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,117468,2,1,0,0,1,,384.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,348.139952767794,0.0,68366.88702725823,1,1,0,1,123.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02047774969543096,29724.733490112274,8,4,8,8_0,8_3,8_1_0 -28845,2,61.0,0.0,7,111,707.0,0.0,0.0,78,34,1360.6558229633986,0.0,977.1971788961829,1719.0,173.75302742320937,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,121923,2,1,2,0,1,,301.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1021.53725913818,707.0,79515.67919941318,5,1,0,1,125.0,6,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02161837787600368,53010.452799608785,10,5,10,10_1,10_2,10_0_0 -28846,2,62.0,0.0,6,111,987.0,0.0,0.0,75,75,0.0,207.03450096389156,1364.2059626174434,1277.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,125103,2,1,2,0,1,,502.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1092.65612986458,987.0,51746.043540347215,5,5,0,1,113.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024678215234065243,34497.36236023148,9,5,9,9_1,9_2,9_0_0 -28848,2,77.0,0.0,2,111,690.0,0.0,0.0,0,72,2658.581081092041,0.0,953.7002170273921,2565.0,163.4310653980682,0.0,41,2,2,2,2,2,2,2,1,0,,1,,2,111196,2,2,2,0,1,,240.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1071.32661757669,690.0,10290.88942561999,0,5,0,1,80.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.24924959290828916,10290.88942561999,2,1,2_0,2_1_0,2_2_0,2_0_1 -28849,2,38.0,0.0,2,111,1400.0,750.0,0.0,0,37,0.0,0.0,1935.0439186063027,2150.0,0.0,1360.2396756355868,60,0,0,0,0,0,0,0,0,0,,2,,2,120476,2,3,0,0,1,,450.0,,22,2.0,0.0,3.0,2.0,1.5,1,1,378.755590396065,1400.0,34472.186073233,0,1,1,2,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.062369122614751554,22981.457382155335,6,3,6,6_0,6_3,6_0_1 -28850,2,68.0,0.0,1,111,451.0,1173.0,0.0,86,74,0.0,0.0,623.3605766367447,1624.0,0.0,2127.4148526940576,71,0,0,0,0,0,0,0,0,0,,2,,1,104442,2,2,0,0,1,,241.0,,41,0.0,4.0,4.0,2.0,1.5,3,3,386.713301271594,451.0,94792.43580458163,5,5,1,2,139.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01713216868219254,63194.95720305442,10,5,10,10_0,10_3,10_1_0 -28851,1,58.0,408.0,1,111,450.0,1750.0,0.0,85,68,0.0,0.0,621.9784024091688,2200.0,0.0,3173.8925764830356,31,1,2,2,2,2,2,2,1,1,5.0,2,,1,123193,2,3,0,0,2,,600.0,437.0,42,3.0,0.0,4.0,9.0,4.3999999999999995,2,1,350.63580548537,450.0,32103.29563983538,6,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.0685287898377053,7296.2035545080425,1,1,1_1,1_0_1,1_3_1,1_1_0 -28852,0,87.0,0.0,1,111,850.0,0.0,0.0,0,71,0.0,621.1035028916747,1174.848093439541,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120797,1,1,2,0,2,,254.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1152.86944187165,850.0,15015.150126807837,0,5,0,1,95.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09656913102794693,15015.150126807837,3,2,3_0,3_1_0,3_2_0,3_1_0 -28853,2,47.0,0.0,1,111,400.0,450.0,0.0,0,52,0.0,0.0,552.8696910303722,850.0,0.0,816.143805381352,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,103659,2,1,0,0,2,,270.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,373.973598494813,400.0,13155.569539805778,0,1,1,2,64.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06461141780506668,8222.230962378611,1,1,1_0,1_0_0,1_3_0,1_1_0 -28854,2,34.0,0.0,9,111,1000.0,0.0,0.0,43,52,0.0,0.0,1382.1742275759307,1075.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,115106,2,1,1,0,1,,120.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1192.8697109589,1000.0,41696.80274612107,1,1,1,2,98.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02578135322617761,23164.89041451171,6,3,6,6_1,6_2,6_0_0 -28856,2,74.0,0.0,6,111,1884.0,0.0,0.0,75,75,0.0,165.62760077111324,2604.0162447530533,2044.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101971,2,1,2,0,1,,365.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1008.81045407251,1884.0,60150.46784748098,5,5,0,1,90.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033981448077558055,40100.31189832065,9,5,9,9_1,9_2,9_0_0 -28857,1,58.0,24.0,8,111,600.0,0.0,0.0,56,68,1792.3018524216009,0.0,829.3045365455583,1890.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128386,2,1,1,0,1,,250.0,,43,2.0,1.0,6.0,2.0,1.5,1,1,1062.45242572926,600.0,22919.160599587885,4,1,1,2,110.0,6,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08246375305882644,15279.440399725258,3,2,3_1,3_1_1,3_2_1,3_0_0 -28858,2,25.0,0.0,1,111,0.0,0.0,1000.0,22,55,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,50,2,2,2,2,2,2,2,1,2,30.0,2,,1,121189,1,1,0,0,2,,380.0,590.0,43,2.0,0.0,2.0,2.0,1.5,2,2,405.68516666796,0.0,30676.34831004183,1,1,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.03259840414814472,20450.89887336122,5,3,5,5_0,5_3,5_1_0 -28859,2,32.0,0.0,1,111,370.0,0.0,0.0,22,43,0.0,0.0,511.40446420309434,1635.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,1,117512,2,1,0,0,1,,210.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,349.965649082253,370.0,62758.514784162835,1,1,0,1,75.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026052241765488586,41839.009856108554,9,5,9,9_0,9_3,9_1_0 -28860,2,85.0,0.0,5,111,570.0,0.0,0.0,86,74,2562.991648962889,0.0,787.8393097182804,2426.0,240.84578058662683,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,133680,2,2,2,0,1,,343.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1092.65612986458,570.0,43042.67570518595,6,5,0,1,107.0,6,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05636266705667896,28695.117136790635,8,4,8,8_1,8_2,8_0_0 -28861,2,32.0,0.0,1,111,0.0,0.0,0.0,31,37,0.0,0.0,0.0,1896.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,133551,2,1,0,0,1,,350.0,810.0,43,2.0,0.0,3.0,2.0,1.5,2,2,382.864815933626,0.0,63244.28164975865,1,1,2,3,66.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02997899494692475,42162.85443317243,9,5,9,9_0,9_3,9_1_0 -28862,2,41.0,0.0,1,111,900.0,0.0,0.0,42,37,2016.339583974301,310.55175144583734,1243.9568048183376,2660.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,1,13.0,1,,1,130491,2,3,2,0,1,,590.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,2,2,1123.07032942309,900.0,56731.7670911,1,1,1,2,130.0,6,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04688731087344002,19562.678307275866,5,3,5,5_1,5_2,5_1_0 -28863,2,62.0,0.0,6,111,1650.0,0.0,0.0,74,72,0.0,0.0,2280.5874755002856,1802.0,261.48970463690915,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,100674,2,1,2,0,1,,427.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1066.24368742866,1650.0,19861.728455239798,6,5,0,1,88.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09072724984942625,13241.152303493198,2,1,2_0,2_1_0,2_2_0,2_0_0 -28864,2,67.0,0.0,1,111,350.0,0.0,0.0,86,75,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,119938,1,1,0,1,2,612.0,250.0,359.0,41,1.0,2.0,4.0,3.0,2.0,2,2,360.28296759939,350.0,33394.514288562255,6,5,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01048076330668107,16697.257144281128,4,2,4_0,4_0_0,4_3_0,4_1_0 -28865,2,44.0,0.0,6,112,900.0,0.0,0.0,85,21,0.0,0.0,1243.9568048183376,970.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,101729,2,1,3,0,1,,510.0,,42,1.0,0.0,5.0,4.0,2.3,2,2,1422.80631864338,900.0,14501.280547404536,6,1,0,1,120.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06689064436958378,6304.90458582806,1,1,1_0,1_1_0,1_0_0,1_0_0 -28867,2,72.0,0.0,5,112,634.0,0.0,0.0,0,78,3554.732007302842,0.0,876.29846028314,3089.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,105163,2,2,2,0,1,,248.0,,11,0.0,3.0,7.0,1.0,1.0,3,3,1488.3116529557,634.0,13651.04674973887,0,5,0,1,102.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2262830137959266,13651.04674973887,3,2,3_0,3_1_0,3_0_0,3_0_0 -28868,2,59.0,0.0,1,112,378.0,0.0,0.0,42,54,2987.1697540360015,336.43106406632376,522.4618580237018,2783.0,137.62616033521533,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,111350,2,2,1,0,1,,428.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1430.58551948711,378.0,46534.76118713411,1,1,0,1,98.0,6,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05980475517664076,31023.17412475607,8,4,8,8_1,8_0,8_1_0 -28870,2,35.0,0.0,8,112,1800.0,0.0,0.0,34,46,0.0,0.0,2487.913609636675,1950.0,258.04905062852873,0.0,71,2,2,2,2,1,1,2,2,2,10.0,1,2003.0,6,127138,2,1,1,0,1,,350.0,735.0,43,2.0,0.0,6.0,4.0,2.1,5,4,1500.94076992367,1800.0,49949.95356428508,1,1,2,3,130.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.039039075331478934,23785.692173469084,6,3,6,6_1,6_0,6_0_0 -28871,2,32.0,0.0,1,111,900.0,520.0,0.0,47,47,0.0,0.0,1243.9568048183376,1420.0,0.0,943.0995084406734,60,0,0,0,0,0,0,0,0,3,30.0,2,,1,104496,1,1,0,0,2,,330.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,391.675202321737,900.0,65585.27839265982,1,1,1,2,71.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021651200312034106,36436.2657736999,9,5,9,9_0,9_3,9_1_0 -28872,2,26.0,0.0,1,112,1080.0,0.0,0.0,69,63,0.0,445.1241770723668,1492.748165782005,1580.0,120.42289029331342,0.0,30,0,0,0,0,0,0,0,0,2,30.0,1,,1,107316,2,2,2,0,1,,246.0,556.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1521.15172295711,1080.0,26715.640145311176,1,1,2,3,90.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05914138652138207,17810.426763540785,4,2,4_0,4_1_0,4_0_0,4_1_0 -28874,1,27.0,250.0,9,112,1350.0,0.0,0.0,0,46,0.0,0.0,1865.9352072275062,1400.0,86.01635020950958,0.0,71,2,2,2,2,1,2,2,2,1,2.0,8,2010.0,6,123986,1,2,0,0,1,,310.0,600.0,12,1.0,0.0,4.0,1.0,1.0,2,2,2339.15445788441,1350.0,10344.95074008206,0,1,2,3,75.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.13533172222615095,10344.95074008206,2,1,2_1,2_0_1,2_0_1,2_0_0 -28875,2,40.0,0.0,1,111,1050.0,0.0,0.0,37,37,0.0,0.0,1451.2829389547271,1120.0,120.42289029331342,0.0,71,2,2,1,2,1,2,2,2,3,60.0,2,,1,129450,1,2,0,0,2,,1200.0,,43,2.0,0.0,2.0,2.0,1.5,3,3,334.942716324137,1050.0,45803.0612957191,4,1,0,1,69.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.024452514052912853,30535.374197146066,8,4,8,8_0,8_3,8_1_0 -28876,2,55.0,0.0,9,112,1890.0,0.0,0.0,43,45,0.0,0.0,2612.3092901185087,2020.0,223.64251054472493,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,129226,2,1,1,0,1,,450.0,,43,3.0,0.0,6.0,4.0,2.5,3,2,1383.70296328543,1890.0,69458.63411259264,1,1,1,2,148.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029082057627646037,27783.453645037058,7,4,7,7_1,7_0,7_0_0 -28877,2,53.0,0.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,304.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,128066,1,3,0,0,1,,88.0,470.0,12,1.0,1.0,1.0,1.0,1.0,3,2,437.90377713895,0.0,16258.25437221269,0,1,2,3,30.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018698194347332425,16258.25437221269,4,2,4_0,4_0_0,4_3_0,4_1_0 -28878,2,29.0,0.0,1,111,1020.0,0.0,0.0,0,31,0.0,0.0,1409.817712127449,1020.0,0.0,0.0,71,2,2,2,1,2,2,2,1,0,,2,,1,133469,1,1,0,0,1,,120.0,593.0,12,1.0,0.0,2.0,1.0,1.0,2,2,446.850880171965,1020.0,36304.18713531431,0,1,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.028095932741813455,36304.18713531431,9,5,9,9_0,9_3,9_1_0 -28879,2,62.0,0.0,6,112,650.0,0.0,0.0,77,77,2091.018827825201,0.0,898.4132479243549,2050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,115536,2,1,2,0,1,,150.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1315.56633701659,650.0,37384.06404404802,6,5,0,1,100.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05483619965942103,24922.70936269868,7,4,7,7_1,7_0,7_0_0 -28880,1,52.0,266.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,829.0,0.0,0.0,43,1,2,2,2,1,2,2,2,0,,2,,1,107482,1,1,0,0,2,,231.0,250.0,21,1.0,0.0,3.0,2.0,1.5,2,2,305.54118552545,0.0,11756.926605504588,0,7,2,3,50.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.07051162500341394,7837.951070336392,1,1,1_1,1_0_1,1_3_1,1_1_0 -28881,1,63.0,186.0,5,112,0.0,0.0,0.0,56,78,0.0,0.0,0.0,881.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,108907,2,2,5,0,1,,0.0,490.0,42,1.0,3.0,3.0,3.0,2.0,2,2,1746.68535735123,0.0,16349.922912350215,4,5,2,3,70.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05388404610363762,8174.961456175108,1,1,1_1,1_1_1,1_0_1,1_0_0 -28882,2,76.0,0.0,2,112,468.0,0.0,0.0,0,77,1344.2263893162005,0.0,646.8575385055356,1438.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108462,2,1,0,0,1,,220.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1878.20615319908,468.0,15812.730405594208,0,5,0,1,75.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09093938637512382,15812.730405594208,3,2,3_0,3_0_0,3_0_0,3_0_1 -28883,1,43.0,377.0,6,111,0.0,0.0,180.0,0,67,0.0,0.0,91.96440027075451,213.0,56.77079113827632,205.78423943747367,30,0,0,0,0,0,0,0,0,0,,2,,4,132995,2,2,0,1,1,,0.0,470.0,32,2.0,0.0,3.0,3.0,1.8,1,1,330.103279612408,0.0,9529.751386615437,0,4,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02235105527507875,5294.306325897464,1,1,1_1,1_0_1,1_3_1,1_0_0 -28884,2,54.0,0.0,2,111,600.0,792.0,0.0,0,68,0.0,0.0,829.3045365455583,1392.0,0.0,1436.4130974711795,50,2,2,2,2,2,2,2,1,1,5.0,2,,2,109477,2,2,0,1,1,1330.0,0.0,388.0,32,1.0,4.0,5.0,2.0,1.5,2,2,300.047148124595,600.0,17525.402752499074,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.07942756121832947,11683.601834999383,2,1,2_0,2_0_0,2_3_0,2_0_1 -28885,2,56.0,0.0,8,112,1600.0,0.0,0.0,75,62,0.0,0.0,2211.478764121489,1970.0,636.5209915503709,0.0,10,2,2,2,1,1,2,2,2,2,15.0,1,2000.0,6,128207,2,2,3,0,1,,720.0,584.0,42,3.0,0.0,4.0,4.0,2.5,3,2,1263.28681254831,1600.0,43955.227707888094,5,1,2,3,92.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04481833226054403,17582.09108315524,4,2,4_0,4_1_0,4_0_0,4_0_0 -28886,2,62.0,0.0,5,111,600.0,0.0,0.0,54,90,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,109797,2,1,0,2,1,,432.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,342.857403912994,600.0,23939.625527859887,1,5,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025063048680596372,15959.750351906592,3,2,3_0,3_0_0,3_3_0,3_0_0 -28887,2,53.0,0.0,6,111,386.0,951.0,0.0,46,46,0.0,0.0,533.5192518443092,1337.0,0.0,1724.783908705924,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,127761,1,2,2,0,2,,0.0,517.0,43,3.0,1.0,4.0,3.0,2.0,2,2,227.082606379037,386.0,58896.776790074684,1,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02270073292406915,29448.388395037342,8,4,8,8_1,8_3,8_0_0 -28888,2,81.0,0.0,1,112,725.0,0.0,0.0,0,43,0.0,0.0,1002.0763149925497,725.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104250,2,2,1,0,1,,190.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1623.83711110048,725.0,24776.12153159727,0,4,0,1,65.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02926204567875562,24776.12153159727,7,4,7,7_1,7_0,7_1_0 -28889,2,49.0,0.0,2,111,474.0,180.0,0.0,56,65,0.0,0.0,655.1505838709911,654.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,133377,1,2,0,1,1,684.0,0.0,363.0,43,4.0,0.0,4.0,5.0,3.0,3,3,316.638516807903,474.0,41769.6196910282,1,1,2,3,77.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01565731277511426,13923.206563676067,3,2,3_0,3_0_0,3_3_0,3_0_1 -28890,2,89.0,0.0,1,111,350.0,60.0,0.0,0,72,2837.8112663342013,0.0,483.76097965157567,2310.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,1,,1,105507,2,1,2,0,1,,167.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,261.819053454057,350.0,36283.20727512844,0,5,0,1,120.0,9,7,8,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06366581604773038,36283.20727512844,9,5,9,9_1,9_3,9_1_0 -28891,1,56.0,250.0,2,111,450.0,120.0,0.0,0,78,0.0,0.0,621.9784024091688,570.0,0.0,217.63834810169388,71,2,1,2,1,1,2,2,2,0,,2,,2,113064,1,2,0,1,1,720.0,0.0,362.0,11,0.0,2.0,3.0,1.0,1.0,2,2,354.491398815642,450.0,19792.510250499898,0,5,2,3,57.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.02879877250464496,19792.510250499898,5,3,5,5_0,5_3,5_0_1 -28892,1,32.0,26.0,2,111,305.0,120.0,0.0,42,62,0.0,0.0,421.56313941065883,425.0,0.0,217.63834810169388,41,0,0,0,0,0,0,0,0,2,7.0,2,,2,100813,2,1,0,1,1,330.0,0.0,344.0,43,2.0,0.0,4.0,4.0,2.1,2,2,267.682503126238,305.0,36573.96293402414,1,1,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01162028847589359,17416.17282572578,4,2,4_1,4_0_1,4_3_1,4_0_1 -28893,1,36.0,55.0,9,112,1500.0,0.0,0.0,54,63,0.0,0.0,2073.261341363896,1710.0,361.26867087994026,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,123514,2,1,1,0,1,,450.0,600.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1250.75661314703,1500.0,38161.59181683912,4,1,2,3,80.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04480945156080853,18172.1865794472,4,2,4_1,4_1_1,4_0_1,4_0_0 -28894,1,31.0,162.0,2,111,0.0,0.0,500.0,63,63,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,71,0,0,0,0,0,0,0,0,3,100.0,2,,2,128760,1,1,0,1,1,312.0,0.0,413.0,43,2.0,0.0,3.0,4.0,2.1,2,2,312.647392005988,0.0,31084.35022197704,1,1,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01608526465663398,14802.07153427478,3,2,3_1,3_0_1,3_3_1,3_0_1 -28895,2,89.0,0.0,1,221,0.0,0.0,0.0,0,78,0.0,0.0,0.0,733.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,117398,2,2,2,0,2,,231.0,,11,0.0,4.0,2.0,1.0,1.0,2,2,607.544591519734,0.0,19415.595860418347,0,5,0,1,50.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03775315500331011,19415.595860418347,5,3,5,5_1,5_1,5_1_0 -28896,2,33.0,0.0,1,111,680.0,0.0,0.0,0,37,0.0,0.0,939.8784747516328,680.0,0.0,0.0,71,2,2,2,2,1,2,2,1,2,25.0,2,,1,133441,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,362.253038617738,680.0,30503.132837691115,0,1,1,2,47.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,0,0,0.022292792141001327,30503.132837691115,8,4,8,8_0,8_3,8_1_0 -28897,2,39.0,0.0,1,221,1050.0,0.0,0.0,52,35,0.0,77.63793786145933,1451.2829389547271,1185.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,124276,2,1,0,0,1,,468.0,540.0,43,2.0,0.0,3.0,3.0,1.8,1,1,825.05789730216,1050.0,34548.63065312135,1,1,2,3,70.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03429947808634608,19193.683696178527,5,3,5,5_0,5_1,5_1_0 -28898,1,45.0,23.0,2,111,438.0,184.0,0.0,56,47,0.0,0.0,605.3923116782576,622.0,0.0,333.7121337559306,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,127613,1,2,0,1,1,660.0,0.0,380.0,43,2.0,0.0,5.0,5.0,2.4,1,1,282.706915033374,438.0,38613.75364140288,1,1,2,3,88.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016108250075254845,16089.064017251201,4,2,4_1,4_0_1,4_3_1,4_0_1 -28899,2,31.0,0.0,1,221,0.0,0.0,0.0,47,67,0.0,0.0,0.0,4222.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,3.0,1,,1,128734,2,3,1,0,1,,457.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,516.089337853162,0.0,33956.40081579134,1,1,1,2,160.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12433591012497912,22637.600543860895,6,3,6,6_1,6_1,6_1_0 -28900,1,56.0,43.0,2,111,653.0,327.0,0.0,85,77,0.0,0.0,902.5597706070827,980.0,0.0,593.0644985771158,50,2,1,2,1,1,2,2,2,0,,2,,2,124827,2,1,0,1,1,846.0,358.0,387.0,41,0.0,1.0,5.0,3.0,2.0,1,1,302.27096908175,653.0,31258.0,7,7,2,3,110.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03135197389468296,15629.0,3,2,3_1,3_0_1,3_3_1,3_0_1 -28901,2,90.0,0.0,1,221,2274.0,0.0,0.0,0,74,0.0,0.0,3143.064193507666,2344.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,125982,2,1,2,0,1,,259.0,,11,0.0,1.0,8.0,1.0,1.0,2,2,544.993768489066,2274.0,23853.123140629898,0,5,0,1,122.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0982680542996644,23853.123140629898,6,3,6,6_1,6_1,6_1_0 -28902,2,55.0,0.0,2,111,350.0,280.0,0.0,0,46,0.0,0.0,483.76097965157567,630.0,0.0,507.8228122372857,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,102999,2,1,0,1,1,,209.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,338.587768978906,350.0,23082.50619079004,0,1,1,2,77.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027293396773846467,23082.50619079004,6,3,6,6_0,6_3,6_0_1 -28903,2,43.0,0.0,1,221,1399.0,0.0,0.0,43,62,0.0,0.0,1933.6617443787268,1399.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,102056,2,1,2,0,1,,472.0,480.0,43,3.0,0.0,3.0,3.0,2.0,1,1,590.283580976706,1399.0,39112.60176419586,1,1,2,3,75.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03576852310757453,19556.30088209793,5,3,5,5_1,5_1,5_1_0 -28904,2,47.0,0.0,7,111,0.0,0.0,2000.0,46,46,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,71,2,2,2,1,1,2,2,2,2,30.0,2,,5,113691,2,3,0,0,1,,0.0,450.0,43,2.0,0.0,4.0,3.0,1.8,1,1,343.230577157503,0.0,40233.12362001157,1,1,2,3,79.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04971028396624962,22351.73534445087,6,3,6,6_0,6_3,6_0_0 -28905,2,68.0,0.0,5,221,1869.0,0.0,0.0,75,75,1157.5282796889505,0.0,2583.283631339414,2644.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107428,2,1,2,0,1,,525.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,557.915564434247,1869.0,54986.94529150933,5,5,0,1,115.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048084140444300455,36657.96352767289,9,5,9,9_1,9_1,9_0_0 -28906,1,43.0,309.0,2,111,390.0,900.0,0.0,81,21,0.0,0.0,539.0479487546129,1290.0,0.0,1632.287610762704,20,0,0,0,0,0,0,0,0,0,,2,,2,121392,1,3,0,0,1,,254.0,,43,2.0,0.0,3.0,5.0,2.4,3,3,324.711674020633,390.0,29769.575721471345,4,1,1,2,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04333283121228986,12403.989883946395,2,1,2_1,2_0_1,2_3_1,2_0_1 -28907,2,40.0,0.0,2,111,330.0,1000.0,0.0,85,22,0.0,0.0,456.1174951000571,1330.0,0.0,1813.6529008474488,42,0,0,0,0,0,0,0,0,0,,2,,2,103321,1,2,0,0,2,,400.0,,42,1.0,0.0,3.0,5.0,2.4,1,1,324.711674020633,330.0,11819.343989242865,6,4,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11252739586989535,4924.726662184527,1,1,1_0,1_0_0,1_3_0,1_0_1 -28908,2,26.0,0.0,9,221,0.0,0.0,0.0,84,62,0.0,0.0,0.0,487.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,125394,2,1,0,1,1,,295.0,560.0,42,1.0,0.0,3.0,2.0,1.5,2,2,696.118902856748,0.0,22005.241552029427,3,4,2,3,69.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022131090851628784,14670.161034686285,3,2,3_0,3_0_0,3_1_0,3_0_0 -28909,2,46.0,0.0,2,111,650.0,0.0,0.0,68,63,0.0,0.0,898.4132479243549,740.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,132064,2,2,0,0,1,,0.0,370.0,43,3.0,0.0,3.0,3.0,2.0,2,2,445.012338084215,650.0,52008.053377840704,1,1,2,3,46.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014228565615095584,26004.026688920352,7,4,7,7_0,7_3,7_0_1 -28910,2,66.0,0.0,9,221,1480.0,0.0,0.0,77,74,0.0,0.0,2045.6178568123773,1630.0,258.04905062852873,0.0,42,0,0,0,0,0,0,0,0,0,,1,2009.0,6,132780,2,1,1,0,1,,150.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,527.378371581976,1480.0,97464.25014807872,5,5,1,2,169.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016724080855529278,64976.16676538581,10,5,10,10_1,10_1,10_0_0 -28911,2,30.0,0.0,6,111,576.0,0.0,0.0,55,21,0.0,724.6207533736205,796.132355083736,1396.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,130830,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,256.025440810151,576.0,31232.295542235748,1,1,1,2,92.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04469732293971716,17351.275301242084,4,2,4_0,4_1_0,4_3_0,4_0_0 -28912,0,41.0,0.0,1,221,1900.0,0.0,0.0,52,63,0.0,0.0,2626.131032394268,2000.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,103610,2,1,2,0,1,,790.0,,43,2.0,0.0,4.0,5.0,2.6,2,2,485.360676144188,1900.0,55321.74074959308,1,1,5,0,75.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036152152352774816,21277.59259599734,6,3,6,6_1,6_1,6_1_0 -28913,1,62.0,137.0,2,111,420.0,120.0,0.0,0,86,0.0,0.0,580.5131755818909,540.0,0.0,217.63834810169388,41,2,2,2,2,1,1,2,2,0,,2,,2,102813,1,2,0,1,1,959.0,0.0,267.0,31,3.0,5.0,3.0,4.0,2.5,4,3,308.120925369775,420.0,28475.587435150894,0,5,2,3,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.01896361229526075,11390.234974060357,2,1,2_1,2_0_1,2_3_1,2_0_1 -28914,2,47.0,0.0,7,221,1173.0,0.0,0.0,65,46,0.0,0.0,1621.2903689465666,1173.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,106546,2,1,2,0,1,,844.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,506.300951263466,1173.0,56451.01505941137,1,1,1,2,106.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020779077201100574,22580.40602376455,6,3,6,6_1,6_1,6_0_0 -28916,1,62.0,121.0,1,111,290.0,150.0,0.0,0,77,0.0,0.0,400.8305259970199,440.0,0.0,272.04793512711734,71,1,2,2,2,1,2,2,2,0,,2,,1,106437,1,3,0,1,1,749.0,0.0,266.0,21,1.0,2.0,3.0,2.0,1.5,2,2,315.44130562743,290.0,18890.994186065152,0,5,2,3,64.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.023291521646042524,12593.996124043435,2,1,2_1,2_0_1,2_3_1,2_1_0 -28917,2,42.0,0.0,5,221,1109.0,0.0,0.0,46,38,0.0,55.89931526025072,1532.831218381707,1163.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,4.0,1,,3,110227,2,1,2,0,1,,356.0,,43,2.0,0.0,6.0,4.0,2.1,2,1,498.572060221663,1109.0,92790.5617070015,1,1,1,2,123.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01253360232555038,44185.98176523881,10,5,10,10_1,10_1,10_0_0 -28919,2,64.0,0.0,5,111,450.0,300.0,0.0,56,78,0.0,0.0,621.9784024091688,750.0,0.0,544.0958702542347,71,1,2,2,2,1,2,2,2,0,,2,,3,125784,2,2,0,1,1,,0.0,,42,3.0,3.0,4.0,4.0,2.5,1,1,345.7069986045,450.0,52860.45667306947,4,5,1,2,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014188299670556922,21144.18266922779,5,3,5,5_0,5_3,5_0_0 -28920,2,56.0,0.0,1,221,633.0,0.0,0.0,77,48,4480.754631054002,0.0,874.916286055564,3733.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127403,1,1,1,0,2,,337.0,,42,1.0,1.0,6.0,2.0,1.5,1,1,504.871840684648,633.0,30025.932895331593,6,1,0,1,230.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12432586234749109,20017.288596887727,5,3,5,5_1,5_1,5_1_0 -28921,2,87.0,0.0,2,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,2267.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,124191,2,1,2,0,1,,70.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,276.585477344036,0.0,21292.849535777197,5,5,0,1,60.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10646766634925425,14195.233023851464,3,2,3_0,3_1_0,3_3_0,3_0_1 -28922,2,20.0,0.0,1,221,0.0,0.0,0.0,0,62,0.0,0.0,0.0,2043.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,101310,1,3,2,0,2,,472.0,350.0,22,2.0,0.0,4.0,2.0,1.5,3,2,578.274429495543,0.0,26779.400893594913,0,1,2,3,65.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07628998154654923,17852.933929063274,4,2,4_0,4_1_0,4_1_0,4_1_0 -28923,2,57.0,0.0,1,221,990.0,0.0,0.0,74,74,0.0,0.0,1368.3524853001713,1110.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124754,2,2,1,0,1,,0.0,,41,0.0,6.0,4.0,2.0,1.5,1,1,531.472335214327,990.0,73551.81081422138,5,5,1,2,90.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015091402750146561,49034.54054281425,10,5,10,10_1,10_1,10_1_0 -28924,1,67.0,270.0,2,111,160.0,160.0,0.0,0,78,0.0,0.0,221.1478764121489,320.0,0.0,290.18446413559184,71,0,0,0,0,0,0,0,0,0,,2,,2,122688,1,1,0,0,1,,140.0,258.0,11,0.0,0.0,2.0,1.0,1.0,1,1,356.042094359393,160.0,7734.273969537847,0,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04137427782625099,7734.273969537847,1,1,1_1,1_0_1,1_3_1,1_0_1 -28925,2,33.0,0.0,2,111,360.0,80.0,0.0,34,46,0.0,0.0,497.582721927335,440.0,0.0,145.09223206779592,71,1,2,2,1,2,2,2,2,2,60.0,2,,2,126509,2,1,0,1,1,750.0,210.0,226.0,43,2.0,0.0,2.0,2.0,1.5,4,2,267.656805612816,360.0,51165.87310867606,1,1,2,3,43.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00859948190594622,34110.58207245071,9,5,9,9_0,9_3,9_0_1 -28926,2,35.0,0.0,9,221,2429.0,0.0,0.0,47,38,0.0,0.0,3357.3011987819355,2489.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,112400,2,1,1,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,513.726410520428,2429.0,95314.29318397475,1,1,1,2,151.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026113607066211526,45387.75865903559,10,5,10,10_1,10_1,10_0_0 -28927,1,47.0,58.0,2,111,391.0,0.0,0.0,78,68,0.0,0.0,540.4301229821889,396.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,101982,2,1,0,1,1,1200.0,0.0,308.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,1,1,282.108137168407,391.0,27459.533564920035,7,1,2,3,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014421220923646566,10561.359063430784,2,1,2_1,2_0_1,2_3_1,2_0_1 -28929,2,20.0,0.0,2,221,800.0,0.0,0.0,0,63,3733.962192545002,0.0,1105.7393820607444,3400.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130844,2,1,0,1,1,,340.0,,22,3.0,1.0,6.0,3.0,2.0,1,1,760.006924170602,800.0,55926.21251323697,0,1,0,1,116.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06079439045144111,27963.106256618485,7,4,7,7_0,7_1,7_0_1 -28930,2,54.0,0.0,6,221,384.0,0.0,0.0,0,54,0.0,0.0,530.7549033891573,478.0,161.71073839387802,0.0,71,2,2,1,2,1,1,1,2,0,,1,,4,128776,2,1,3,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,534.191070537512,384.0,25861.695087677006,0,4,0,1,50.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.018482933867229958,25861.695087677006,7,4,7,7_1,7_1,7_0_0 -28931,2,79.0,0.0,2,221,199.0,0.0,0.0,0,78,0.0,0.0,275.05267128761017,906.0,1216.2711919624655,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,105322,2,1,0,1,1,,246.0,216.0,11,0.0,3.0,3.0,1.0,1.0,1,1,640.895146512637,199.0,14026.135934076046,0,5,2,3,60.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06459369881044016,14026.135934076046,3,2,3_0,3_0_0,3_1_0,3_0_1 -28932,1,67.0,333.0,5,111,480.0,500.0,0.0,85,78,0.0,0.0,663.4436292364467,980.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,2,,3,125402,2,2,0,1,1,1080.0,0.0,479.0,41,3.0,2.0,5.0,6.0,3.5,2,2,275.467461303229,480.0,21841.47720119932,6,5,2,3,94.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044868760064735363,6240.42205748552,1,1,1_1,1_0_1,1_3_1,1_0_0 -28933,2,51.0,0.0,1,221,1946.0,0.0,0.0,85,38,0.0,362.31037668681023,2689.7110468627607,2418.0,209.8798945112034,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,1,101174,2,1,2,0,1,,2400.0,,42,1.0,0.0,9.0,6.0,3.3,2,2,526.46259226409,1946.0,67552.69862222255,6,1,0,1,230.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03579427690257454,20470.514734006836,5,3,5,5_1,5_1,5_1_0 -28934,1,48.0,488.0,2,111,350.0,619.0,0.0,0,68,0.0,0.0,483.76097965157567,969.0,0.0,1122.651145624571,71,2,1,2,2,1,2,2,2,0,,2,,2,114438,2,3,0,1,1,876.0,0.0,458.0,32,3.0,0.0,4.0,5.0,2.8,3,3,275.57354017242,350.0,16155.54125420285,0,4,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.059979420358195396,5769.836162215304,1,1,1_1,1_0_1,1_3_1,1_0_1 -28935,2,48.0,0.0,7,221,2413.0,0.0,0.0,62,21,0.0,124.22070057833493,3335.1864111407203,2603.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119350,2,1,2,0,1,,304.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,527.159723423158,2413.0,89965.66687916745,1,1,0,1,148.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028933259656665242,44982.83343958372,10,5,10,10_1,10_1,10_0_0 -28936,2,56.0,0.0,2,111,350.0,300.0,0.0,72,68,0.0,0.0,483.76097965157567,650.0,0.0,544.0958702542347,31,1,2,2,2,1,2,2,2,2,15.0,2,,2,127481,2,3,0,1,1,648.0,0.0,284.0,42,2.0,4.0,4.0,3.0,2.0,3,3,317.495069240351,350.0,22292.662785570843,5,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029157575577768987,11146.331392785421,2,1,2_0,2_0_0,2_3_0,2_0_1 -28937,2,66.0,0.0,8,221,1823.0,0.0,0.0,74,74,0.0,0.0,2519.7036168709215,1823.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,116256,2,1,1,0,1,,448.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,518.234338724812,1823.0,67317.80996248442,5,5,0,1,123.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02708050070279976,44878.53997498961,10,5,10,10_1,10_1,10_0_0 -28938,2,64.0,0.0,5,111,200.0,100.0,0.0,77,78,0.0,0.0,276.4348455151861,300.0,0.0,181.36529008474488,20,0,0,0,0,0,0,0,0,0,,2,,3,131493,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,346.482931167126,200.0,33734.18657702182,5,5,0,1,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008893055693370304,22489.457718014546,6,3,6,6_0,6_3,6_0_0 -28939,2,74.0,0.0,6,221,983.0,0.0,0.0,56,78,0.0,0.0,1358.6772657071397,1091.0,185.7953164525407,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104866,2,1,1,0,1,,2362.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,556.254230329609,983.0,52464.811540981,4,5,0,1,100.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020794890288470865,34976.541027320665,9,5,9,9_1,9_1,9_0_0 -28940,2,34.0,0.0,1,221,1642.0,0.0,0.0,54,47,0.0,207.03450096389156,2269.530081679678,1902.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,104116,2,1,1,0,1,,508.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,527.413852776916,1642.0,38290.927322944364,1,1,1,2,109.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04967234102111441,21272.737401635757,6,3,6,6_1,6_1,6_1_0 -28941,1,51.0,349.0,2,111,850.0,120.0,0.0,85,68,0.0,0.0,1174.848093439541,970.0,0.0,217.63834810169388,60,2,2,2,1,2,1,2,2,1,5.0,2,,2,118686,1,3,0,1,1,315.0,0.0,328.0,42,2.0,2.0,4.0,5.0,2.8,6,4,311.377203667975,850.0,23734.49739765587,7,1,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04086878199897343,8476.606213448526,1,1,1_1,1_0_1,1_3_1,1_0_1 -28942,2,48.0,0.0,5,221,1200.0,0.0,0.0,0,21,0.0,186.3310508675024,1658.6090730911167,1569.0,325.14180379194624,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128916,2,1,2,0,1,,536.0,,22,1.0,3.0,5.0,2.0,1.5,1,1,525.225879878088,1200.0,72349.00534278226,0,1,0,1,95.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021686545551887506,48232.67022852151,10,5,10,10_1,10_1,10_0_0 -28943,1,41.0,384.0,5,111,350.0,245.0,0.0,52,85,0.0,0.0,483.76097965157567,595.0,0.0,444.344960707625,70,2,1,2,2,2,2,2,1,0,,2,,3,107855,2,2,0,1,1,1086.0,0.0,328.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,1,1,307.049498490823,350.0,25971.420033911254,4,7,2,3,73.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.022909798510173877,8955.662080659054,1,1,1_1,1_0_1,1_3_1,1_0_0 -28944,2,23.0,0.0,1,221,0.0,0.0,0.0,64,43,0.0,0.0,0.0,3102.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,113814,2,3,1,0,1,,721.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,503.851957870006,0.0,39310.65703258742,1,1,1,2,96.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0789098996088651,21839.25390699301,6,3,6,6_1,6_1,6_1_0 -28945,2,38.0,0.0,9,111,480.0,0.0,0.0,0,42,0.0,0.0,663.4436292364467,480.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,129437,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,315.5400673151,480.0,42710.53986728567,0,1,1,2,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011238443753965708,42710.53986728567,9,5,9,9_0,9_3,9_0_0 -28946,2,38.0,0.0,9,221,1200.0,0.0,0.0,53,33,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,120300,2,1,1,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,498.166727805032,1200.0,52562.77945074063,1,1,1,2,150.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022829842952361065,25029.894976543157,7,4,7,7_1,7_1,7_0_0 -28947,1,50.0,270.0,9,111,250.0,0.0,0.0,0,67,0.0,0.0,345.54355689398267,326.0,130.74485231845458,0.0,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,133201,2,1,0,1,1,768.0,160.0,462.0,12,1.0,6.0,3.0,1.0,1.0,3,1,319.183736610397,250.0,7828.597645912888,0,4,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04164219630960295,7828.597645912888,1,1,1_1,1_0_1,1_3_1,1_0_0 -28948,2,37.0,0.0,9,221,800.0,0.0,0.0,43,42,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,7.0,1,2011.0,6,131320,2,3,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,493.568867693931,800.0,34060.275092146105,1,1,0,1,140.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0234877727157427,16219.178615307668,4,2,4_0,4_1_0,4_1_0,4_0_0 -28949,2,76.0,0.0,5,111,180.0,60.0,0.0,0,77,0.0,0.0,248.7913609636675,240.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,2,,3,110896,2,2,0,1,1,,0.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,392.358132775888,180.0,34533.634723630166,0,5,0,1,104.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006949746295769334,34533.634723630166,9,5,9,9_0,9_3,9_0_0 -28950,1,35.0,369.0,2,111,600.0,160.0,0.0,85,67,0.0,0.0,829.3045365455583,760.0,0.0,290.18446413559184,31,1,2,2,2,1,2,2,2,2,25.0,2,,2,113625,1,3,0,1,2,577.0,0.0,316.0,42,1.0,0.0,4.0,5.0,2.4,1,1,288.485731812462,600.0,28257.74969429367,6,1,2,3,77.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.026895276808028112,11774.062372622364,2,1,2_1,2_0_1,2_3_1,2_0_1 -28951,2,50.0,0.0,7,112,692.0,1554.0,0.0,52,47,0.0,0.0,956.464565482544,2246.0,0.0,2818.4166079169354,71,0,0,0,0,0,0,0,0,2,8.0,1,,5,118558,2,2,2,0,1,,286.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,642.480269483498,692.0,59329.68830591248,1,1,0,1,100.0,7,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037856258209537495,25795.51665474456,7,4,7,7_1,7_0,7_0_0 -28952,2,47.0,0.0,5,112,1850.0,0.0,0.0,42,45,0.0,87.98966290965392,2557.0223210154713,2185.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,123901,2,1,1,0,1,,200.0,,43,2.0,0.0,8.0,4.0,2.3,2,2,748.283495221948,1850.0,54756.6159690694,1,1,0,1,195.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03990385383264463,23807.224334378,6,3,6,6_1,6_0,6_0_0 -28953,1,41.0,297.0,2,111,240.0,70.0,0.0,68,47,0.0,0.0,331.72181461822333,310.0,0.0,126.95570305932142,20,0,0,0,0,0,0,0,0,0,,2,,2,111893,2,1,0,1,1,564.0,0.0,286.0,43,2.0,0.0,2.0,2.0,1.5,2,2,315.331795353546,240.0,19193.523939738177,1,4,2,3,52.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01615128107653944,12795.682626492118,2,1,2_1,2_0_1,2_3_1,2_0_1 -28954,2,28.0,0.0,1,112,900.0,0.0,0.0,22,42,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,110482,2,1,1,0,1,,100.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1063.63983121791,900.0,27961.67620533318,1,1,1,2,160.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03433270569869833,15534.264558518433,3,2,3_0,3_1_0,3_0_0,3_1_0 -28956,2,83.0,0.0,2,111,390.0,236.0,0.0,86,78,0.0,0.0,539.0479487546129,626.0,0.0,428.0220845999979,42,2,1,2,2,1,2,2,2,0,,2,,2,119039,2,2,0,1,2,,0.0,,41,1.0,4.0,4.0,3.0,2.0,2,2,407.722012940002,390.0,31465.011114245397,5,5,0,1,96.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019895114536177178,15732.505557122699,3,2,3_0,3_0_0,3_3_0,3_0_1 -28957,1,28.0,270.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1945.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,80.0,2,,2,124580,2,1,0,1,1,594.0,0.0,299.0,12,1.0,0.0,2.0,1.0,1.0,1,1,336.320373670436,0.0,9454.578655982266,0,4,2,3,54.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.20572043141968316,9454.578655982266,1,1,1_1,1_0_1,1_3_1,1_0_1 -28958,2,65.0,0.0,6,112,790.0,0.0,0.0,0,77,0.0,517.5862524097289,1091.917639784985,1470.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112311,2,1,2,0,2,,330.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,758.825280366119,790.0,23939.09931652024,0,5,0,1,99.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06140581901448402,23939.09931652024,6,3,6,6_1,6_0,6_0_0 -28959,2,51.0,0.0,7,112,800.0,0.0,0.0,42,42,0.0,248.44140115666985,1105.7393820607444,1040.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,130543,2,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,648.184429495163,800.0,40779.01530018995,1,1,0,1,105.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025503313219903952,17730.006652256503,4,2,4_0,4_1_0,4_0_0,4_0_0 -28960,2,66.0,0.0,1,112,1376.0,0.0,0.0,52,77,0.0,517.5862524097289,1901.8717371444804,1876.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130833,2,1,2,0,1,,400.0,,42,1.0,0.0,3.0,2.0,1.5,1,1,803.412730827628,1376.0,55457.8478871236,1,5,0,1,100.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03382749369968928,36971.89859141573,9,5,9,9_1,9_0,9_1_0 -28961,1,57.0,270.0,2,111,300.0,532.0,0.0,0,71,1278.5086547274086,0.0,414.65226827277917,1688.0,0.0,964.8633432508428,71,2,1,2,1,2,2,2,2,0,,2,,2,119408,1,2,0,1,1,856.0,0.0,326.0,11,0.0,4.0,3.0,1.0,1.0,2,2,354.491398815642,300.0,7979.015932633316,0,6,2,3,68.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.21155491031121543,7979.015932633316,1,1,1_1,1_0_1,1_3_1,1_0_1 -28962,2,70.0,0.0,2,111,240.0,100.0,0.0,0,74,0.0,0.0,331.72181461822333,340.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,2,112340,2,1,0,1,1,771.0,0.0,281.0,11,0.0,0.0,3.0,1.0,1.0,2,2,336.48066339318,240.0,32117.432848688564,0,5,2,3,107.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010586151190906376,32117.432848688564,8,4,8,8_0,8_3,8_0_1 -28963,2,70.0,0.0,2,112,1514.0,0.0,0.0,78,72,0.0,0.0,2092.611780549959,1514.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,114270,2,2,1,0,2,,180.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,690.742912174662,1514.0,28406.367568669004,5,5,0,1,140.0,7,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053297909221940665,18937.57837911267,5,3,5,5_1,5_0,5_0_1 -28964,2,30.0,0.0,2,111,0.0,0.0,0.0,38,38,0.0,0.0,0.0,753.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,125593,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,344.268067486764,0.0,48131.86317129703,4,1,1,2,86.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015644522160302415,32087.908780864687,8,4,8,8_0,8_3,8_0_1 -28965,2,48.0,0.0,1,112,1200.0,0.0,0.0,62,21,0.0,0.0,1658.6090730911167,1300.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125775,2,1,2,0,1,,250.0,640.0,43,2.0,0.0,4.0,3.0,2.0,2,1,854.500771118452,1200.0,30381.186805358528,1,1,2,3,100.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04278963848017651,15190.593402679264,3,2,3_0,3_1_0,3_0_0,3_1_0 -28966,2,78.0,0.0,2,111,210.0,150.0,0.0,0,77,0.0,0.0,290.25658779094545,360.0,0.0,272.04793512711734,43,1,1,2,1,1,2,2,2,0,,2,,2,108722,2,1,0,1,1,948.0,0.0,314.0,11,0.0,8.0,3.0,1.0,1.0,3,2,329.619803109174,210.0,22538.44294815873,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01597270942043537,22538.44294815873,6,3,6,6_0,6_3,6_0_1 -28967,2,33.0,0.0,1,112,1900.0,0.0,0.0,43,62,0.0,0.0,2626.131032394268,2020.0,206.439240502823,0.0,30,0,0,0,0,0,0,0,0,0,,1,,1,122145,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,5,5,742.120560150811,1900.0,47780.542236299756,1,1,1,2,150.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042276623609879604,22752.63916014274,6,3,6,6_1,6_0,6_1_0 -28968,2,31.0,0.0,1,112,1500.0,0.0,0.0,34,53,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,12.0,1,,1,127295,2,2,1,0,1,,200.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,736.871406704478,1500.0,48693.685702509676,1,1,1,2,165.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030804815416194505,32462.45713500645,8,4,8,8_1,8_0,8_1_0 -28969,2,49.0,0.0,7,112,2000.0,0.0,0.0,56,63,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,106695,2,1,2,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,4,4,731.472370949077,2000.0,52193.971244374785,1,1,0,1,112.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038318601790921406,34795.98082958319,9,5,9,9_1,9_0,9_0_0 -28970,1,73.0,122.0,2,111,324.0,108.0,0.0,77,78,0.0,0.0,447.8244497346015,432.0,0.0,195.8745132915245,71,1,1,2,2,1,2,2,2,0,,2,,2,112160,2,1,0,1,1,685.0,0.0,257.0,41,0.0,3.0,3.0,2.0,1.5,2,2,330.899174706107,324.0,18659.158922673745,6,5,2,3,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.023152168958433257,12439.439281782497,2,1,2_1,2_0_1,2_3_1,2_0_1 -28971,2,48.0,0.0,2,112,600.0,0.0,0.0,54,38,2658.581081092041,0.0,829.3045365455583,2440.0,103.2196202514115,0.0,31,2,1,2,1,1,2,2,2,2,30.0,1,,2,123637,1,2,3,0,1,,180.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,666.284488131755,600.0,70696.16597098693,1,1,0,1,150.0,7,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03451389430370742,47130.77731399128,10,5,10,10_1,10_0,10_0_1 -28972,2,60.0,0.0,9,112,900.0,0.0,0.0,0,78,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,101033,2,1,1,0,1,,76.0,,21,1.0,0.0,3.0,2.0,1.5,1,1,763.665705859811,900.0,36828.02638886686,0,7,0,1,75.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024437910152906552,24552.017592577908,7,4,7,7_1,7_0,7_0_0 -28973,2,66.0,0.0,5,111,242.0,140.0,0.0,81,78,0.0,0.0,334.4861630733752,382.0,0.0,253.91140611864284,41,1,2,2,2,1,2,2,2,0,,2,,3,118637,2,1,0,1,1,802.0,0.0,241.0,42,1.0,0.0,3.0,3.0,1.8,1,1,328.132580706263,242.0,37074.48031288623,4,5,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010303583402279697,20596.933507159018,5,3,5,5_0,5_3,5_0_0 -28974,2,37.0,0.0,6,112,1500.0,0.0,0.0,54,47,0.0,155.27587572291867,2073.261341363896,1740.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,126293,2,2,1,0,1,,140.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,797.830381341282,1500.0,39985.09239680451,1,1,1,2,120.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04351621806278621,22213.940220446948,6,3,6,6_1,6_0,6_0_0 -28975,2,38.0,0.0,9,112,1500.0,0.0,0.0,37,45,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,20.0,1,2005.0,6,108575,2,1,1,0,1,,184.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,714.119875888523,1500.0,73717.69785507198,1,1,1,2,110.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02034789533103679,35103.66564527237,9,5,9,9_1,9_0,9_0_0 -28976,2,67.0,0.0,2,111,336.0,108.0,0.0,77,78,0.0,0.0,464.41054046551267,444.0,0.0,195.8745132915245,71,2,2,1,2,1,2,2,2,0,,2,,2,119919,2,2,0,1,1,737.0,0.0,260.0,41,0.0,2.0,3.0,2.0,1.5,3,3,304.335131822202,336.0,39273.41540167764,5,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01130535746532077,26182.27693445176,7,4,7,7_0,7_3,7_0_1 -28977,2,56.0,0.0,5,111,420.0,0.0,0.0,78,48,0.0,0.0,580.5131755818909,420.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,3,106636,2,1,0,1,1,,0.0,,42,3.0,1.0,4.0,4.0,2.5,2,2,329.592586172037,420.0,65334.33574307311,5,1,0,1,85.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00642847279647332,26133.734297229246,7,4,7,7_0,7_3,7_0_0 -28978,2,37.0,0.0,2,111,210.0,90.0,0.0,0,54,0.0,0.0,290.25658779094545,300.0,0.0,163.2287610762704,20,2,1,2,2,1,2,2,2,0,,2,,2,127282,1,1,0,1,1,1200.0,0.0,380.0,22,2.0,0.0,4.0,3.0,2.0,2,2,338.622320220366,210.0,56764.01176875437,0,1,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005285038718231229,28382.005884377184,8,4,8,8_0,8_3,8_0_1 -28979,2,59.0,0.0,1,112,800.0,0.0,0.0,0,47,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,131857,2,1,1,0,1,,110.0,375.0,12,1.0,0.0,2.0,1.0,1.0,3,3,831.540109544031,800.0,18044.28846052774,0,1,2,3,39.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04433535862331268,18044.28846052774,4,2,4_0,4_1_0,4_0_0,4_1_0 -28980,2,32.0,0.0,1,112,500.0,0.0,0.0,0,21,0.0,0.0,691.0871137879653,500.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,107994,1,1,3,0,2,,450.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,841.731979834326,500.0,18609.85588207278,0,1,0,1,160.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.026867483723055547,18609.85588207278,4,2,4_0,4_1_0,4_0_0,4_1_0 -28981,2,72.0,0.0,2,111,228.0,130.0,0.0,0,75,0.0,0.0,315.13572388731217,358.0,0.0,235.77487711016835,71,1,2,2,2,1,2,2,2,0,,2,,2,123647,1,1,0,1,1,693.0,0.0,203.0,11,0.0,1.0,2.0,1.0,1.0,4,3,336.320373670436,228.0,16381.691434439428,0,5,2,3,59.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021853665198904446,16381.691434439428,4,2,4_0,4_0_0,4_3_0,4_0_1 -28982,2,54.0,0.0,1,112,1000.0,0.0,0.0,34,31,7467.924385090004,0.0,1382.1742275759307,6640.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,132305,2,1,2,0,1,,2550.0,,43,2.0,0.0,8.0,3.0,2.0,2,2,871.778723994792,1000.0,286144.892320959,1,1,0,1,300.0,7,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02320502716697853,143072.4461604795,10,5,10,10_1,10_0,10_1_0 -28983,1,41.0,392.0,2,111,250.0,120.0,0.0,85,62,0.0,0.0,345.54355689398267,370.0,0.0,217.63834810169388,71,2,1,2,2,1,2,2,2,0,,2,,2,110178,2,2,0,1,1,1150.0,0.0,336.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,307.508765204964,250.0,18230.14109832494,6,4,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020296057940769153,6751.904110490719,1,1,1_1,1_0_1,1_3_1,1_0_1 -28984,2,46.0,0.0,2,111,600.0,82.0,0.0,0,43,0.0,0.0,829.3045365455583,682.0,0.0,148.7195378694908,31,1,1,2,1,1,2,2,2,0,,2,,2,131295,1,2,0,1,1,823.0,0.0,284.0,32,1.0,0.0,3.0,2.0,1.3,3,2,304.335131822202,600.0,31231.046740869187,0,4,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021837244382447468,24023.88210836091,6,3,6,6_0,6_3,6_0_1 -28985,2,31.0,0.0,9,112,1500.0,0.0,0.0,45,63,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,104324,2,1,1,0,1,,250.0,780.0,43,2.0,0.0,4.0,4.0,2.1,4,4,807.7662396599,1500.0,52536.23098309078,1,1,2,3,95.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028551724627577248,25017.252849090848,7,4,7,7_1,7_0,7_0_0 -28986,2,48.0,0.0,5,111,310.0,310.0,0.0,0,42,0.0,0.0,428.47401054853844,620.0,0.0,562.2323992627091,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,107006,2,1,0,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,340.716438238655,310.0,25964.446664158277,0,1,0,1,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023878806585770903,25964.446664158277,7,4,7,7_0,7_3,7_0_0 -28987,2,47.0,0.0,7,112,1189.0,0.0,0.0,56,64,0.0,0.0,1643.4051565877814,1249.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,111625,2,1,1,0,1,,353.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,788.553598021637,1189.0,29869.31571862943,1,1,1,2,90.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04181548756475199,14934.657859314715,3,2,3_0,3_1_0,3_0_0,3_0_0 -28988,2,51.0,0.0,7,112,500.0,0.0,0.0,0,52,4480.754631054002,724.6207533736205,691.0871137879653,4290.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,114921,1,1,3,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,796.610164677107,500.0,25974.953976891193,0,1,1,2,90.0,7,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16515909917748572,25974.953976891193,7,4,7,7_1,7_0,7_0_0 -28989,2,47.0,0.0,2,111,1300.0,1400.0,0.0,42,22,0.0,0.0,1796.8264958487098,2700.0,0.0,2539.1140611864284,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,126716,2,1,1,0,1,,1200.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,253.065899882153,1300.0,83842.6917370915,1,1,1,2,120.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03220316456998405,29943.81847753268,8,4,8,8_1,8_3,8_0_1 -28990,2,30.0,0.0,9,112,1200.0,0.0,0.0,43,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,114591,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,756.194541850857,1200.0,59449.40809906309,1,1,1,2,80.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02018523040633792,39632.938732708724,9,5,9,9_1,9_0,9_0_0 -28991,2,52.0,0.0,7,112,600.0,0.0,0.0,52,47,0.0,496.8828023133397,829.3045365455583,1140.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,128923,2,1,2,0,1,,150.0,,43,2.0,0.0,5.0,2.0,1.5,3,2,640.312825133903,600.0,53177.2915369717,1,1,1,2,90.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02143772213760475,35451.52769131447,9,5,9,9_1,9_0,9_0_0 -28992,2,75.0,0.0,5,112,1400.0,0.0,0.0,74,77,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,131016,2,1,2,0,1,,225.0,,41,0.0,0.0,5.0,2.0,1.5,2,1,736.871406704478,1400.0,65409.78177093448,5,5,0,1,97.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021403526538321286,43606.521180622985,10,5,10,10_1,10_0,10_0_0 -28993,2,40.0,0.0,9,111,500.0,900.0,0.0,0,42,0.0,0.0,691.0871137879653,1400.0,0.0,1632.287610762704,70,0,0,0,0,0,0,0,0,0,,2,2005.0,6,103444,1,3,0,0,1,,0.0,710.0,32,1.0,0.0,3.0,2.0,1.3,1,1,354.144010768929,500.0,15811.418390400599,0,1,2,3,62.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08854360598350655,12162.629531077384,2,1,2_0,2_0_0,2_3_0,2_0_0 -28994,2,47.0,0.0,1,112,1800.0,0.0,0.0,63,38,0.0,207.03450096389156,2487.913609636675,2100.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,107012,2,1,1,0,1,,240.0,,43,2.0,0.0,7.0,5.0,2.6,6,6,712.929712352509,1800.0,93433.1274960315,1,1,0,1,200.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02247596817402046,35935.818267704424,9,5,9,9_1,9_0,9_1_0 -28995,2,74.0,0.0,2,111,350.0,0.0,0.0,77,74,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120976,2,3,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,328.337781548842,350.0,48577.28341882612,5,5,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007205013853540389,32384.855612550746,8,4,8,8_0,8_3,8_0_1 -28996,2,30.0,0.0,8,112,1400.0,0.0,0.0,54,37,0.0,310.55175144583734,1935.0439186063027,1760.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,124562,2,1,2,0,1,,150.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,839.980779612015,1400.0,51424.402928508476,1,1,1,2,130.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03422499630081845,28569.112738060263,8,4,8,8_1,8_0,8_0_0 -28997,2,83.0,0.0,2,111,400.0,1100.0,0.0,77,78,0.0,51.75862524097289,552.8696910303722,1550.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,2,,2,117749,2,1,0,0,1,,0.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,365.884142249545,400.0,21890.056842767823,5,5,0,1,52.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07080840452509372,14593.371228511882,3,2,3_0,3_0_0,3_3_0,3_0_1 -28998,2,37.0,0.0,9,112,779.0,0.0,0.0,46,53,0.0,258.79312620486445,1076.71372328165,1029.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2010.0,6,122712,1,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,717.066684331825,779.0,52561.135433939504,1,1,1,2,90.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01957720265182018,25029.11211139976,7,4,7,7_1,7_0,7_0_0 -28999,2,56.0,0.0,6,112,800.0,0.0,0.0,0,67,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,103607,2,1,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,816.114902771936,800.0,6087.4239351297765,0,4,0,1,95.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13141847988987562,6087.4239351297765,1,1,1_0,1_1_0,1_0_0,1_0_0 -29000,2,73.0,0.0,2,111,0.0,0.0,350.0,75,75,0.0,0.0,178.81966719313377,350.0,0.0,400.136021128421,71,0,0,0,0,0,0,0,0,0,,2,,2,126490,1,3,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,314.639382102939,0.0,35334.22495236449,5,5,0,1,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00990541041927053,23556.149968242997,6,3,6,6_0,6_3,6_0_1 -29001,2,44.0,0.0,7,112,1500.0,0.0,0.0,56,64,0.0,621.1035028916747,2073.261341363896,2208.0,185.7953164525407,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,131085,1,1,2,0,1,,300.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,718.760140492706,1500.0,42889.09763431865,1,1,1,2,100.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051481614717704405,15317.534869399518,3,2,3_0,3_1_0,3_0_0,3_0_0 -29002,2,35.0,0.0,2,111,150.0,314.0,0.0,34,37,0.0,0.0,207.32613413638958,464.0,0.0,569.4870108660989,20,0,0,0,0,0,0,0,0,0,,2,,2,114582,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,372.368105369821,150.0,46306.299410608866,1,1,0,1,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010020234955196975,25725.721894782702,7,4,7,7_0,7_3,7_0_1 -29003,1,35.0,170.0,2,112,500.0,0.0,0.0,37,63,0.0,372.6621017350048,691.0871137879653,1860.0,1720.3270041901917,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131065,1,1,1,0,1,,200.0,650.0,43,2.0,0.0,5.0,5.0,2.4,3,2,808.017399040423,500.0,37325.895001917306,1,1,2,3,110.0,7,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04983135702183318,15552.456250798878,3,2,3_1,3_1_1,3_0_1,3_0_1 -29004,1,80.0,35.0,1,111,190.0,1000.0,0.0,0,77,0.0,0.0,262.6131032394268,1190.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,0,,2,,1,105270,2,3,0,0,1,,190.0,225.0,11,0.0,2.0,3.0,1.0,1.0,4,2,444.436916967532,190.0,26789.993993950462,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.044419569495563076,26789.993993950462,7,4,7,7_0,7_3,7_1_0 -29005,1,22.0,167.0,2,111,703.0,0.0,0.0,0,42,0.0,0.0,971.6684819858792,703.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,108424,2,2,0,0,1,,0.0,366.0,12,1.0,0.0,1.0,1.0,1.0,1,1,509.702966632211,703.0,4419.214477951828,0,2,2,3,18.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1590780450931676,4419.214477951828,1,1,1_1,1_0_1,1_3_1,1_0_1 -29006,2,48.0,0.0,8,112,950.0,0.0,0.0,46,37,0.0,0.0,1313.065516197134,980.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105838,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,647.285507017482,950.0,89004.38666983618,4,1,1,2,160.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011010693255326083,35601.754667934474,9,5,9,9_1,9_0,9_0_0 -29007,1,37.0,308.0,2,111,350.0,110.0,0.0,0,56,0.0,0.0,483.76097965157567,460.0,0.0,199.50181909321938,42,0,0,0,0,0,0,0,0,4,25.0,2,,2,115944,1,1,0,1,1,448.0,400.0,274.0,32,1.0,0.0,3.0,3.0,1.8,2,2,349.981314097007,350.0,17242.28532532388,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02667859806985066,9579.04740295771,1,1,1_1,1_0_1,1_3_1,1_0_1 -29008,2,48.0,0.0,1,112,2000.0,0.0,0.0,85,31,4480.754631054002,0.0,2764.3484551518613,5000.0,0.0,0.0,41,1,2,1,1,1,2,2,2,2,15.0,1,,1,113652,1,1,2,0,2,,450.0,,42,1.0,0.0,11.0,5.0,2.4,2,2,757.810927817349,2000.0,32149.954304056533,6,1,1,2,250.0,7,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.15552121638223054,13395.814293356889,3,2,3_0,3_1_0,3_0_0,3_1_0 -29009,2,58.0,0.0,5,111,300.0,150.0,0.0,0,62,0.0,0.0,414.65226827277917,450.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,126840,2,1,0,1,1,696.0,0.0,220.0,12,1.0,3.0,2.0,1.0,1.0,2,2,340.082457836616,300.0,23849.034490463004,0,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018868688381491947,23849.034490463004,6,3,6,6_0,6_3,6_0_0 -29010,2,84.0,0.0,2,111,220.0,70.0,0.0,0,74,0.0,0.0,304.0783300667047,747.0,0.0,126.95570305932142,42,0,0,0,0,0,0,0,0,0,,2,,2,106265,2,1,0,1,1,784.0,145.0,330.0,11,0.0,1.0,4.0,1.0,1.0,4,3,288.047231952114,220.0,21456.487860194993,0,5,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03481464463649697,21456.487860194993,6,3,6,6_0,6_3,6_0_1 -29011,2,33.0,0.0,1,112,1128.0,0.0,0.0,46,47,0.0,621.1035028916747,1559.0925287056498,1758.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,129735,1,2,3,0,1,,178.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,825.222474188933,1128.0,43108.49758699683,4,1,1,2,170.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04078082277054999,23949.165326109352,6,3,6,6_1,6_0,6_1_0 -29012,1,92.0,270.0,5,111,350.0,260.0,0.0,0,77,0.0,0.0,483.76097965157567,610.0,0.0,471.5497542203367,71,2,1,2,1,2,2,2,2,0,,2,,3,132045,2,2,0,1,1,828.0,74.0,313.0,11,0.0,7.0,4.0,1.0,1.0,2,2,383.86404165403,350.0,10953.156967979885,0,5,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.05569170621613977,10953.156967979885,2,1,2_1,2_0_1,2_3_1,2_0_0 -29013,2,37.0,0.0,5,112,0.0,0.0,0.0,85,38,0.0,0.0,0.0,611.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,104284,2,2,5,0,1,,257.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,706.131250743612,0.0,59281.23367192925,6,1,1,2,70.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010306803049703057,28229.15889139488,8,4,8,8_1,8_0,8_0_0 -29014,2,57.0,0.0,1,112,2300.0,2.0,0.0,0,43,0.0,0.0,3179.0007234246405,2302.0,0.0,3.627305801694898,71,2,2,2,1,1,1,2,2,1,5.0,1,,1,124158,1,1,3,0,1,,333.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,756.711428240114,2300.0,21676.91585145143,0,1,0,1,130.0,6,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.10619591900320377,14451.277234300955,3,2,3_0,3_1_0,3_0_0,3_1_0 -29015,2,26.0,0.0,8,111,0.0,0.0,1700.0,63,43,0.0,0.0,868.5526692237926,1700.0,0.0,1943.5178169094734,60,0,0,0,0,0,0,0,0,2,20.0,1,,6,126635,2,2,1,0,1,,190.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,279.294279750586,0.0,40043.13273818635,1,1,1,2,74.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04245422083020063,22246.184854547973,6,3,6,6_1,6_3,6_0_0 -29016,2,81.0,0.0,2,111,250.0,1730.0,0.0,0,78,0.0,0.0,345.54355689398267,1980.0,0.0,3137.6195184660864,50,0,0,0,0,0,0,0,0,0,,1,,2,121602,2,1,2,0,1,,130.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,272.048216991121,250.0,17630.58490742442,0,5,0,1,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11230483902812557,17630.58490742442,4,2,4_0,4_1_0,4_3_0,4_0_1 -29017,2,38.0,0.0,9,112,1100.0,0.0,0.0,34,42,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,132241,2,2,1,0,2,,443.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,781.455877860092,1100.0,90937.5366534134,1,1,1,2,125.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012096215055751798,43303.5888825778,9,5,9,9_1,9_0,9_0_0 -29018,1,83.0,234.0,2,111,200.0,400.0,0.0,0,78,0.0,0.0,276.4348455151861,600.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,,2,106719,2,1,0,1,1,506.0,0.0,307.0,11,0.0,11.0,3.0,1.0,1.0,1,1,334.85557354431,200.0,12688.293435416528,0,5,2,3,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04728768317457369,12688.293435416528,2,1,2_1,2_0_1,2_3_1,2_0_1 -29019,1,46.0,180.0,2,111,400.0,200.0,0.0,0,47,0.0,0.0,552.8696910303722,650.0,86.01635020950958,362.73058016948977,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,108756,1,1,0,1,1,810.0,253.0,386.0,32,1.0,0.0,5.0,3.0,1.8,2,2,337.555424705126,400.0,24781.41775323597,0,1,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026229330640904217,13767.454307353317,3,2,3_1,3_0_1,3_3_1,3_0_1 -29020,2,67.0,0.0,5,112,627.0,0.0,0.0,77,74,2987.1697540360015,0.0,866.6232406901084,2717.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,132198,2,1,2,0,1,,244.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,683.644379154422,627.0,33230.31522783561,5,5,0,1,90.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08176269112620653,22153.543485223738,6,3,6,6_1,6_0,6_0_0 -29021,2,74.0,0.0,2,112,360.0,0.0,0.0,86,78,2240.377315527001,0.0,497.582721927335,1950.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132998,2,1,2,0,1,,110.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,752.024956518252,360.0,25576.82773620695,5,5,0,1,150.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07624088569981453,17051.218490804633,4,2,4_0,4_1_0,4_0_0,4_0_1 -29022,2,74.0,0.0,2,111,500.0,360.0,0.0,0,75,0.0,0.0,691.0871137879653,860.0,0.0,652.9150443050816,41,0,0,0,0,0,0,0,0,0,,2,,2,133466,1,3,0,1,2,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,377.620027491577,500.0,26946.684280262423,0,5,0,1,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03191487275597474,26946.684280262423,7,4,7,7_0,7_3,7_0_1 -29023,2,47.0,0.0,1,112,1600.0,0.0,0.0,54,63,0.0,0.0,2211.478764121489,1690.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113601,2,1,1,0,1,,800.0,,43,2.0,0.0,11.0,4.0,2.5,4,3,733.271529572386,1600.0,42842.90949137523,4,1,1,2,400.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03944643396219896,17137.163796550092,4,2,4_0,4_1_0,4_0_0,4_1_0 -29024,2,65.0,0.0,8,112,468.0,0.0,0.0,71,11,1642.9433647198007,0.0,646.8575385055356,1628.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,106639,1,1,2,0,1,,208.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,728.259290737781,468.0,70930.56005954639,5,1,0,1,136.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022952025172694106,47287.0400396976,10,5,10,10_1,10_0,10_0_0 -29025,1,46.0,480.0,2,111,670.0,200.0,0.0,0,52,0.0,0.0,926.0567324758734,870.0,0.0,362.73058016948977,70,2,2,2,1,2,2,2,2,1,10.0,2,,2,111163,1,3,0,1,1,1096.0,0.0,435.0,32,1.0,0.0,6.0,5.0,2.8,2,2,285.194877426475,670.0,17577.399516982598,0,1,2,3,120.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.049495376102673204,6277.642684636642,1,1,1_1,1_0_1,1_3_1,1_0_1 -29026,1,43.0,413.0,2,111,220.0,80.0,0.0,56,52,0.0,0.0,304.0783300667047,300.0,0.0,145.09223206779592,50,1,2,2,2,1,2,2,2,2,8.0,2,,2,121064,2,2,0,1,1,636.0,400.0,388.0,43,4.0,0.0,4.0,5.0,2.8,4,3,298.17308235048,220.0,21939.2116747816,4,1,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01367414674907577,7835.432740993429,1,1,1_1,1_0_1,1_3_1,1_0_1 -29027,1,23.0,434.0,2,111,660.0,200.0,0.0,0,55,0.0,0.0,912.2349902001142,860.0,0.0,362.73058016948977,30,2,2,2,1,1,2,2,2,0,,2,,2,102574,2,2,0,1,1,800.0,250.0,530.0,22,2.0,1.0,5.0,4.0,2.3,1,1,285.522791461187,660.0,27883.12131196505,0,1,2,3,105.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.030843031896538843,12123.0962225935,2,1,2_1,2_0_1,2_3_1,2_0_1 -29028,2,59.0,0.0,1,111,811.0,0.0,0.0,54,37,0.0,0.0,1120.9432985640797,811.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,1,101844,2,1,0,0,1,,278.0,507.0,43,2.0,2.0,3.0,2.0,1.5,1,1,1867.26860620198,811.0,64665.41311264201,1,1,2,3,70.0,6,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012541480228190956,43110.27540842801,9,5,9,9_0,9_2,9_1_0 -29029,1,21.0,69.0,2,111,350.0,600.0,0.0,0,55,0.0,0.0,483.76097965157567,950.0,0.0,1088.1917405084694,42,0,0,0,0,0,0,0,0,0,,2,,2,100714,1,2,0,1,2,590.0,0.0,265.0,22,2.0,0.0,3.0,2.0,1.5,2,1,330.899174706107,350.0,23925.20749279539,0,1,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03970707465279346,15950.13832853026,3,2,3_1,3_0_1,3_3_1,3_0_1 -29030,1,85.0,102.0,2,111,182.0,926.0,0.0,0,78,0.0,0.0,251.55570941881936,1108.0,0.0,1679.4425861847376,10,0,0,0,0,0,0,0,0,0,,2,,2,111207,2,3,0,0,1,,199.0,286.0,21,0.0,0.0,3.0,2.0,1.5,2,2,1516.00527966916,182.0,33276.435338511474,0,5,2,3,75.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03329683569554969,22184.290225674315,6,3,6,6_0,6_2,6_0_1 -29031,1,54.0,275.0,2,111,350.0,1100.0,0.0,0,78,0.0,0.0,483.76097965157567,1450.0,0.0,1995.0181909321939,10,2,2,2,2,1,2,2,2,0,,2,,2,100369,1,3,0,0,2,,120.0,520.0,11,0.0,3.0,4.0,1.0,1.0,2,2,1873.76574262862,350.0,14149.26140345179,0,7,2,3,73.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.10247884738678052,14149.26140345179,3,2,3_1,3_0_1,3_2_1,3_0_1 -29032,1,88.0,270.0,5,111,350.0,80.0,0.0,0,78,0.0,0.0,483.76097965157567,430.0,0.0,145.09223206779592,20,0,0,0,0,0,0,0,0,0,,2,,3,106173,2,1,0,1,1,768.0,240.0,338.0,11,0.0,5.0,2.0,1.0,1.0,1,1,336.956566246282,350.0,9905.356896678195,0,5,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043410853792073094,9905.356896678195,2,1,2_1,2_0_1,2_3_1,2_0_0 -29033,2,63.0,0.0,1,111,1800.0,0.0,0.0,85,78,0.0,0.0,2487.913609636675,1858.0,99.77896624303112,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,101384,2,1,2,0,1,,350.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1198.36248122306,1800.0,37665.218118889745,6,5,0,1,110.0,6,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04932933068740631,25110.145412593163,7,4,7,7_1,7_2,7_1_0 -29034,1,53.0,470.0,2,111,440.0,65.0,0.0,85,85,0.0,0.0,608.1566601334094,505.0,0.0,117.88743855508417,71,0,0,0,0,0,0,0,0,0,,2,,2,115834,2,1,0,1,1,1044.0,720.0,438.0,41,2.0,1.0,5.0,5.0,3.0,4,3,259.947895755412,440.0,32672.55242619878,6,7,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015456398796534218,10890.850808732926,2,1,2_1,2_0_1,2_3_1,2_0_1 -29036,2,45.0,0.0,2,111,200.0,0.0,0.0,52,34,0.0,207.03450096389156,276.4348455151861,400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,2,,2,126213,2,1,0,1,2,,200.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,333.498020480666,200.0,63074.11279632765,1,1,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006341745959893852,42049.4085308851,9,5,9,9_0,9_3,9_0_1 -29037,2,88.0,0.0,1,111,800.0,1750.0,0.0,77,78,0.0,0.0,1105.7393820607444,2550.0,0.0,3173.8925764830356,70,0,0,0,0,0,0,0,0,0,,1,,1,133080,1,3,4,0,2,,80.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1234.66233866853,800.0,26388.514437256483,5,5,0,1,95.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09663295014439298,17592.34295817099,4,2,4_0,4_1_0,4_2_0,4_1_0 -29038,2,52.0,0.0,2,111,240.0,85.0,0.0,0,33,0.0,0.0,331.72181461822333,325.0,0.0,154.16049657203317,50,0,0,0,0,0,0,0,0,0,,2,,2,126810,1,1,0,1,2,,0.0,,22,2.0,0.0,5.0,3.0,2.0,2,2,348.541903219821,240.0,61004.65715965062,0,1,1,2,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005327462117350605,30502.32857982531,8,4,8,8_0,8_3,8_0_1 -29039,2,67.0,0.0,5,111,500.0,1800.0,0.0,75,74,0.0,0.0,691.0871137879653,2300.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,0,,1,,3,110514,2,1,2,0,1,,297.0,,41,0.0,3.0,5.0,2.0,1.5,3,3,1139.60082002967,500.0,64973.45840393878,5,5,0,1,110.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03539906996639986,43315.638935959185,10,5,10,10_1,10_2,10_0_0 -29040,2,57.0,0.0,2,111,650.0,0.0,0.0,0,63,0.0,0.0,898.4132479243549,690.0,68.81308016760767,0.0,70,2,2,2,1,1,2,2,2,2,20.0,1,,2,107024,2,2,2,0,1,,170.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,1561.44521228494,650.0,19258.310359114017,0,1,0,1,100.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.035828688349778134,19258.310359114017,5,3,5,5_1,5_2,5_0_1 -29041,2,86.0,0.0,2,111,468.0,0.0,0.0,77,75,0.0,0.0,646.8575385055356,468.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128984,2,2,0,1,1,,384.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,345.938837173651,468.0,39650.145874511865,5,5,0,1,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011803235263778498,26433.43058300791,7,4,7,7_0,7_3,7_0_1 -29042,2,44.0,0.0,9,111,780.0,1750.0,0.0,54,21,0.0,0.0,1078.0958975092258,2530.0,0.0,3173.8925764830356,70,0,0,0,0,0,0,0,0,0,,1,2009.0,6,110739,2,1,1,0,1,,94.0,645.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,2,2,1069.93893655623,780.0,73121.55584507363,1,1,2,3,88.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03459992023912128,23587.598659701172,6,3,6,6_1,6_2,6_0_0 -29043,2,62.0,0.0,2,111,0.0,0.0,1020.0,0,75,0.0,0.0,521.1316015342755,1020.0,0.0,1166.110690145684,31,0,0,0,0,0,0,0,0,0,,1,,2,124993,2,2,3,0,1,,210.0,,11,0.0,2.0,4.0,1.0,1.0,5,5,1286.66846342072,0.0,19336.64434707299,0,5,1,2,90.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05274958683068495,19336.64434707299,5,3,5,5_1,5_2,5_0_1 -29044,1,43.0,221.0,2,111,350.0,100.0,0.0,0,63,0.0,0.0,483.76097965157567,450.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,125140,2,1,0,1,1,780.0,300.0,407.0,32,1.0,3.0,4.0,3.0,1.6,5,5,314.759485443338,350.0,4774.519684465351,0,4,2,3,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09425031830199498,2984.0748027908444,1,1,1_1,1_0_1,1_3_1,1_0_1 -29045,2,44.0,0.0,2,111,680.0,1750.0,0.0,55,46,0.0,0.0,939.8784747516328,2430.0,0.0,3173.8925764830356,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,104917,2,2,2,0,1,,720.0,,43,3.0,0.0,5.0,5.0,3.0,1,1,1145.11990746193,680.0,60953.29488392133,1,1,1,2,115.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039866589732805435,20317.764961307108,5,3,5,5_1,5_2,5_0_1 -29046,2,35.0,0.0,9,111,1450.0,0.0,0.0,47,54,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,115156,2,1,1,0,1,,185.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1103.80907735222,1450.0,63493.86852197643,1,1,1,2,104.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022836850766119684,42329.24568131762,9,5,9,9_1,9_2,9_0_0 -29047,2,65.0,0.0,5,111,517.0,46.0,0.0,0,75,0.0,0.0,714.5840756567561,563.0,0.0,83.42803343898265,42,0,0,0,0,0,0,0,0,0,,2,,3,110812,1,2,0,1,2,500.0,210.0,403.0,11,0.0,3.0,3.0,1.0,1.0,2,2,338.591852437045,517.0,20605.49398633771,0,5,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027322810138562664,20605.49398633771,5,3,5,5_0,5_3,5_0_0 -29048,2,48.0,0.0,5,111,900.0,0.0,0.0,53,37,0.0,517.5862524097289,1243.9568048183376,1432.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,124234,1,1,2,0,1,,350.0,,43,2.0,4.0,6.0,2.0,1.5,1,1,1139.60082002967,900.0,81477.02104735386,1,1,0,1,130.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017575507567559837,54318.01403156924,10,5,10,10_1,10_2,10_0_0 -29049,2,48.0,0.0,2,111,0.0,0.0,0.0,85,22,0.0,0.0,0.0,2028.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,4.0,2,,2,132308,2,2,0,1,1,,0.0,,42,1.0,2.0,5.0,4.0,2.3,1,1,291.78988662529,0.0,155511.42034890054,6,1,0,1,100.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01304084288761586,67613.66102126111,10,5,10,10_0,10_3,10_0_1 -29050,1,45.0,29.0,2,111,0.0,0.0,0.0,68,52,0.0,0.0,0.0,851.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,110224,1,3,0,0,2,,645.0,454.0,43,2.0,0.0,5.0,4.0,2.3,1,1,1531.35495596631,0.0,35060.50733845732,1,1,2,3,117.0,6,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02427232417902155,15243.698842807531,3,2,3_1,3_0_1,3_2_1,3_0_1 -29051,2,33.0,0.0,2,111,450.0,1110.0,0.0,56,62,0.0,0.0,621.9784024091688,1560.0,0.0,2013.1547199406682,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,101130,2,2,0,0,1,,400.0,311.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1610.84836370151,450.0,30988.957334172468,1,1,2,3,70.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.050340512692233774,17216.087407873594,4,2,4_0,4_0_0,4_2_0,4_0_1 -29052,2,33.0,0.0,9,111,340.0,450.0,0.0,52,45,0.0,0.0,469.9392373758164,790.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,2,25.0,2,2005.0,6,127117,2,1,0,0,1,,216.0,561.0,43,2.0,0.0,2.0,2.0,1.5,1,1,359.030015329064,340.0,37379.83997142058,1,1,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021134386894219145,24919.893314280387,7,4,7,7_0,7_3,7_0_0 -29053,2,92.0,0.0,2,111,0.0,970.0,0.0,86,75,0.0,0.0,0.0,1240.0,0.0,1759.2433138220254,50,0,0,0,0,0,0,0,0,0,,8,,2,122920,2,1,0,0,1,,140.0,,41,0.0,1.0,3.0,2.0,1.5,3,2,1571.05946487779,0.0,23887.46328028319,5,5,0,1,55.0,6,5,8,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05191007456298221,15924.975520188795,3,2,3_0,3_0_0,3_2_0,3_0_1 -29054,2,72.0,0.0,1,111,561.0,0.0,0.0,0,75,0.0,0.0,775.399741670097,625.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103869,2,2,3,0,1,,129.0,196.0,11,0.0,2.0,2.0,1.0,1.0,3,3,1669.52780745314,561.0,30717.37043941801,0,5,2,3,40.0,6,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020346793721573574,30717.37043941801,8,4,8,8_1,8_2,8_1_0 -29055,1,63.0,249.0,2,111,251.0,0.0,0.0,0,68,0.0,0.0,346.92573112155856,356.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,106247,1,3,0,1,2,800.0,131.0,368.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1902.48403179096,251.0,10609.386581814955,0,5,2,3,40.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033555191646065824,10609.386581814955,2,1,2_1,2_0_1,2_2_1,2_0_1 -29056,2,75.0,0.0,5,111,277.0,105.0,0.0,77,78,0.0,0.0,382.8622610385328,382.0,0.0,190.43355458898213,60,0,0,0,0,0,0,0,0,0,,2,,3,130631,2,2,0,1,1,519.0,0.0,285.0,41,0.0,2.0,2.0,2.0,1.5,2,2,331.768033765157,277.0,31975.892645480413,5,5,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01194649995342642,21317.26176365361,6,3,6,6_0,6_3,6_0_0 -29057,0,77.0,0.0,9,111,1010.0,0.0,0.0,77,74,0.0,0.0,1395.9959698516898,1010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,104984,2,1,0,0,1,,446.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1730.5451283999,1010.0,40962.76434689845,5,5,0,1,80.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02465653908136386,27308.509564598968,7,4,7,7_0,7_2,7_0_0 -29058,2,54.0,0.0,2,111,544.0,1200.0,0.0,54,64,0.0,0.0,751.9027798013062,1744.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,35.0,2,,2,112505,2,2,0,0,1,,487.0,,43,4.0,1.0,4.0,4.0,2.5,2,1,338.023113845718,544.0,86445.96268537093,1,1,1,2,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020174452870025512,34578.38507414838,9,5,9,9_0,9_3,9_0_1 -29059,1,33.0,122.0,9,111,620.0,0.0,0.0,0,21,0.0,0.0,856.9480210970769,620.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2010.0,6,108759,1,1,0,0,1,,350.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2097.55941553978,620.0,5726.25890910733,0,1,2,3,38.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10827313431705313,5726.25890910733,1,1,1_1,1_0_1,1_2_1,1_0_0 -29060,2,34.0,0.0,9,111,2000.0,0.0,0.0,54,64,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,25.0,1,2007.0,6,121008,1,2,1,0,1,,300.0,820.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1291.07708683654,2000.0,44026.681516568395,4,1,2,3,90.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.045426998608726565,20965.08643646114,5,3,5,5_1,5_2,5_0_0 -29061,1,46.0,42.0,2,111,260.0,260.0,0.0,85,64,0.0,0.0,359.36529916974195,520.0,0.0,471.5497542203367,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,102990,2,1,0,1,1,740.0,340.0,287.0,42,1.0,1.0,4.0,5.0,2.4,1,1,311.377203667975,260.0,31568.802588926927,6,1,2,3,83.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01647195830552012,13153.66774538622,2,1,2_1,2_0_1,2_3_1,2_0_1 -29062,2,51.0,0.0,2,111,1500.0,0.0,0.0,31,46,5974.339508072003,0.0,2073.261341363896,5500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,75.0,1,,2,100957,1,1,1,0,1,,1000.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1216.1878119098,1500.0,320965.52965129074,1,1,0,1,130.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017135796501186313,139550.2302831699,10,5,10,10_1,10_2,10_0_1 -29063,2,47.0,0.0,2,111,924.0,204.0,0.0,52,48,0.0,492.7421122940619,1277.1289862801598,1604.0,0.0,369.9851917728796,70,2,1,2,2,1,2,2,2,2,2.0,2,,2,117982,2,1,0,1,1,756.0,720.0,362.0,43,2.0,1.0,4.0,3.0,2.0,2,2,285.014110100415,924.0,27836.086015568137,1,1,2,3,82.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05762304366723528,13918.043007784068,3,2,3_0,3_0_0,3_3_0,3_0_1 -29064,2,80.0,0.0,2,111,520.0,0.0,0.0,0,86,4032.679167948602,0.0,718.7305983394839,3262.0,72.25373417598806,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,121301,1,3,3,0,2,,132.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1399.57015001953,520.0,15021.56195027458,0,5,0,1,95.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.21715451500969737,15021.56195027458,3,2,3_0,3_1_0,3_2_0,3_0_1 -29065,2,81.0,0.0,6,111,163.0,66.0,0.0,71,71,4480.754631054002,0.0,225.29439909487667,3229.0,0.0,119.70109145593163,41,0,0,0,0,0,0,0,0,0,,1,,4,133336,2,1,2,0,1,,453.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1239.33106903858,163.0,27213.47205603957,5,5,0,1,146.0,6,5,8,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11865446619051971,18142.31470402638,4,2,4_0,4_1_0,4_2_0,4_0_0 -29066,2,64.0,0.0,5,111,300.0,574.0,0.0,77,68,0.0,0.0,414.65226827277917,874.0,0.0,1041.0367650864357,60,0,0,0,0,0,0,0,0,0,,2,,3,102375,2,1,0,0,1,,230.0,,41,1.0,2.0,4.0,3.0,2.0,1,1,391.252453758996,300.0,49924.956961479525,5,5,0,1,79.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017506274480603958,24962.478480739763,7,4,7,7_0,7_3,7_0_0 -29067,2,69.0,0.0,8,111,636.0,1193.0,0.0,72,74,0.0,0.0,879.0628087382918,1829.0,0.0,2163.6879107110067,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,115706,2,1,0,0,1,,410.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1836.30863678673,636.0,53070.07529558291,5,5,0,1,130.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03446386668594439,35380.05019705527,9,5,9,9_0,9_2,9_0_0 -29068,2,63.0,0.0,2,111,360.0,180.0,0.0,78,78,0.0,0.0,497.582721927335,540.0,0.0,326.4575221525408,70,0,0,0,0,0,0,0,0,0,,2,,2,115831,2,1,0,1,1,80.0,240.0,310.0,41,0.0,4.0,5.0,2.0,1.5,2,2,296.002622433362,360.0,14596.4787544589,6,5,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03699522392241636,9730.985836305934,1,1,1_0,1_0_0,1_3_0,1_0_1 -29069,2,66.0,0.0,2,111,1400.0,0.0,0.0,72,74,6571.773458879203,0.0,1935.0439186063027,5800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109389,2,1,2,0,1,,600.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1272.77816523028,1400.0,30625.02866750296,5,5,0,1,300.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18938757781978946,20416.685778335308,5,3,5,5_1,5_2,5_0_1 -29070,2,52.0,0.0,2,111,0.0,0.0,612.0,56,67,0.0,722.5504083639815,312.6789609205653,1310.0,0.0,699.6664140874104,71,2,2,2,2,1,2,1,2,1,15.0,2,,2,110298,2,2,0,1,1,698.0,276.0,305.0,43,3.0,1.0,4.0,5.0,3.0,1,1,255.160228729402,0.0,43546.5985382309,1,1,2,3,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03008271699682607,14515.532846076967,3,2,3_0,3_0_0,3_3_0,3_0_1 -29071,2,65.0,0.0,6,111,1010.0,0.0,0.0,0,77,0.0,0.0,1395.9959698516898,1010.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,4,123917,1,2,0,0,1,,243.0,549.0,11,0.0,2.0,3.0,1.0,1.0,3,3,652.091184628857,1010.0,14245.556163746842,0,5,2,3,81.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07089930279944588,14245.556163746842,3,2,3_0,3_0_0,3_2_0,3_0_0 -29072,1,72.0,213.0,5,111,110.0,128.0,0.0,0,86,0.0,456.5110746253809,152.03916503335236,679.0,0.0,232.14757130847346,41,0,0,0,0,0,0,0,0,0,,2,,3,103277,2,3,0,1,1,442.0,48.0,232.0,11,0.0,7.0,3.0,1.0,1.0,3,3,351.099566057422,110.0,9972.3328,0,5,2,3,52.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06808838148682723,9972.3328,2,1,2_1,2_0_1,2_3_1,2_0_0 -29073,2,25.0,0.0,2,111,205.0,1025.0,0.0,46,68,0.0,0.0,283.3457166530658,1230.0,0.0,1858.9942233686352,50,2,2,2,1,2,2,2,2,2,15.0,2,,2,116812,2,1,0,0,2,,220.0,611.0,43,2.0,0.0,3.0,2.0,1.5,1,1,397.618420168311,205.0,30513.863958116708,1,1,2,3,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04030954590635576,20342.575972077804,5,3,5,5_0,5_3,5_0_1 -29074,1,53.0,300.0,2,111,440.0,760.0,0.0,85,67,0.0,0.0,608.1566601334094,1200.0,0.0,1378.376204644061,50,2,2,1,1,1,2,2,2,0,,2,,2,132596,1,2,0,0,1,,580.0,350.0,42,1.0,0.0,5.0,8.0,3.499999999999999,3,2,293.069320475011,440.0,21388.729896429086,6,4,2,3,81.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05610431315046639,6111.0656846940265,1,1,1_1,1_0_1,1_3_1,1_0_1 -29075,1,47.0,98.0,2,111,0.0,0.0,1027.0,0,68,0.0,0.0,524.7079948781383,1027.0,0.0,1174.1134105682527,20,0,0,0,0,0,0,0,0,0,,2,,2,115315,1,3,0,1,1,700.0,455.0,373.0,32,3.0,1.0,5.0,5.0,2.8,2,2,277.496109536532,0.0,32134.794989083923,0,1,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03195912718126468,11476.712496101401,2,1,2_1,2_0_1,2_3_1,2_0_1 -29076,2,59.0,0.0,1,112,681.0,0.0,0.0,0,74,5896.673094467067,0.0,941.2606489792087,4689.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123991,1,2,4,0,2,,453.0,,11,0.0,0.0,8.0,1.0,1.0,2,2,1585.61693806721,681.0,33438.82175761389,0,5,0,1,200.0,6,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1402262326701847,33438.82175761389,8,4,8,8_1,8_0,8_1_0 -29077,1,66.0,148.0,2,111,661.0,94.0,0.0,0,77,0.0,0.0,913.6171644276901,755.0,0.0,170.4833726796602,71,2,1,2,2,1,2,2,2,0,,2,,2,129165,2,1,0,1,1,404.0,232.0,235.0,11,0.0,2.0,2.0,1.0,1.0,2,2,337.952572350705,661.0,15421.332101916883,0,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04895815711705949,15421.332101916883,3,2,3_1,3_0_1,3_3_1,3_0_1 -29078,2,49.0,0.0,7,112,860.0,0.0,0.0,46,47,2987.1697540360015,0.0,1188.6698357153002,2895.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,124428,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,1501.37766856929,860.0,41826.61854873515,1,1,0,1,140.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06921429703017544,20913.309274367573,5,3,5,5_1,5_0,5_0_0 -29079,2,56.0,0.0,7,112,868.0,0.0,0.0,75,42,0.0,683.2138531808421,1199.7272295359078,1768.0,412.878481005646,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,129988,2,1,1,0,1,,463.0,,42,2.0,1.0,5.0,3.0,2.0,5,5,1344.22207407177,868.0,59451.9075577148,5,1,0,1,100.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029738322496778737,29725.9537788574,8,4,8,8_1,8_0,8_0_0 -29080,2,54.0,0.0,1,112,2600.0,0.0,0.0,54,33,0.0,414.0690019277831,3593.6529916974196,3100.0,172.03270041901916,0.0,71,2,2,1,2,1,2,2,2,2,15.0,1,,1,121106,2,2,1,0,1,,333.0,,43,2.0,0.0,9.0,5.0,2.8,2,2,1395.8263122056,2600.0,76550.28371965823,1,1,0,1,210.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.040496257484202054,27339.38704273508,7,4,7,7_1,7_0,7_1_0 -29081,1,43.0,376.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,530.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,115437,1,3,0,1,1,,188.0,343.0,31,0.0,0.0,4.0,3.0,1.6,2,2,333.817349109876,0.0,10217.157281781128,0,6,2,3,67.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05187352855427577,6385.723301113205,1,1,1_1,1_0_1,1_3_1,1_0_1 -29082,2,45.0,0.0,7,112,1106.0,0.0,0.0,62,62,0.0,828.1380038555662,1528.684695698979,2010.0,178.91400843577995,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,5,128824,2,1,3,0,1,,247.0,459.0,43,3.0,2.0,5.0,4.0,2.3,2,2,1127.53861959225,1106.0,47311.95834387684,1,1,2,3,99.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042483973827309056,20570.4166712508,5,3,5,5_1,5_0,5_0_0 -29083,1,45.0,212.0,2,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,2784.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,112644,2,1,0,0,1,,453.0,389.0,42,1.0,0.0,3.0,2.0,1.5,2,1,274.681013150947,0.0,18358.234918231898,6,1,2,3,69.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15164856601955556,12238.823278821264,2,1,2_1,2_0_1,2_3_1,2_0_1 -29084,2,53.0,0.0,7,112,1277.0,0.0,0.0,56,62,0.0,0.0,1765.0364886144632,1277.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,114172,2,1,2,0,1,,492.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,1360.17301669137,1277.0,39622.24873875619,1,1,0,1,90.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03222936710179482,19811.124369378096,5,3,5,5_1,5_0,5_0_0 -29085,1,80.0,122.0,2,111,180.0,108.0,0.0,0,78,0.0,0.0,248.7913609636675,679.0,0.0,195.8745132915245,71,1,2,2,1,1,2,2,2,0,,2,,2,125873,2,1,0,1,1,386.0,0.0,259.0,11,0.0,0.0,2.0,1.0,1.0,2,2,337.952572350705,180.0,11411.119466837434,0,5,2,3,49.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05950336441339382,11411.119466837434,2,1,2_1,2_0_1,2_3_1,2_0_1 -29086,1,21.0,255.0,1,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,1,127237,2,1,0,0,1,,177.0,310.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2307.69410018218,0.0,8978.16130717527,0,2,3,4,40.0,6,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.13365765650044292,8978.16130717527,1,1,1_1,1_0_1,1_0_1,1_1_0 -29087,2,63.0,0.0,7,111,540.0,463.0,0.0,54,42,0.0,0.0,746.3740828910024,1003.0,0.0,839.7212930923688,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,104900,2,1,0,1,1,,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,1,315.42163608212,540.0,68344.79805885765,1,1,1,2,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014675586562363232,45563.198705905095,10,5,10,10_0,10_2,10_0_0 -29088,1,80.0,44.0,1,112,973.0,0.0,0.0,0,72,0.0,0.0,1344.8555234313803,1129.0,268.3710126536699,0.0,60,2,2,2,2,2,2,2,1,0,,2,,1,121894,1,2,0,0,1,,184.0,400.0,11,0.0,3.0,4.0,1.0,1.0,2,2,2008.4692409224,973.0,13831.184019457554,0,5,2,3,60.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.08162714041051984,13831.184019457554,3,2,3_1,3_0_1,3_0_1,3_1_0 -29089,2,43.0,0.0,6,111,420.0,0.0,0.0,0,67,0.0,0.0,580.5131755818909,486.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,4,100573,2,3,0,1,1,670.0,208.0,220.0,12,1.0,0.0,3.0,1.0,1.0,2,2,320.860813978706,420.0,18443.225358105447,0,1,2,3,52.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026351139270030785,18443.225358105447,4,2,4_0,4_0_0,4_2_0,4_0_0 -29090,2,52.0,0.0,1,112,300.0,0.0,0.0,46,47,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,112440,2,1,1,0,1,,555.0,,43,3.0,1.0,8.0,4.0,2.5,1,1,1319.632336681,300.0,106452.36452869332,1,1,0,1,250.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.002818161919918064,42580.94581147733,9,5,9,9_1,9_0,9_1_0 -29091,1,41.0,39.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,572.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,128166,2,1,0,1,1,,300.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,342.243209617516,0.0,22768.243952671895,0,1,1,2,69.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025122710437792666,15178.829301781263,3,2,3_1,3_0_1,3_2_1,3_0_1 -29092,2,41.0,0.0,8,112,1300.0,0.0,0.0,42,62,0.0,0.0,1796.8264958487098,1390.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128095,2,1,1,0,1,,327.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1154.94812606023,1300.0,42399.433510109826,1,1,1,2,92.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03278345687492652,18434.536308743405,4,2,4_0,4_1_0,4_0_0,4_0_0 -29093,2,46.0,0.0,1,112,913.0,0.0,0.0,21,65,0.0,0.0,1261.9250697768246,913.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,108838,2,1,1,0,1,,143.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1328.12442068817,913.0,38208.80069120306,1,1,1,2,250.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023895018516249922,16612.522039653508,4,2,4_0,4_1_0,4_0_0,4_1_0 -29094,1,70.0,115.0,2,111,104.0,0.0,0.0,78,77,0.0,0.0,143.74611966789678,236.0,227.0831645531053,0.0,60,1,2,2,2,1,2,2,2,0,,2,,2,113780,1,1,0,0,2,,260.0,163.0,41,0.0,2.0,4.0,2.0,1.5,1,1,333.896670104469,104.0,15319.766890172945,5,5,2,3,42.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.01540493414109226,10213.177926781964,2,1,2_1,2_0_1,2_2_1,2_0_1 -29095,2,57.0,0.0,2,112,1250.0,0.0,0.0,56,68,0.0,362.31037668681023,1727.717784469913,1720.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,109128,2,1,2,0,1,,216.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1113.51410271726,1250.0,32565.082795213348,1,1,0,1,98.0,6,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05281730775310106,21710.0551968089,6,3,6,6_1,6_0,6_0_1 -29096,2,44.0,0.0,2,111,780.0,200.0,0.0,0,63,0.0,0.0,1078.0958975092258,980.0,0.0,362.73058016948977,44,2,1,2,2,1,2,2,2,2,10.0,2,,2,110345,2,1,0,1,1,912.0,184.0,319.0,12,1.0,5.0,4.0,1.0,1.0,2,1,329.187577123841,780.0,19883.533962026788,0,1,2,3,76.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04928701315729821,19883.533962026788,5,3,5,5_0,5_2,5_0_1 -29097,2,70.0,0.0,2,112,478.0,0.0,0.0,0,71,1448.7773307074606,0.0,660.6792807812948,1548.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119707,2,2,2,0,1,,111.0,,11,0.0,5.0,9.0,1.0,1.0,2,2,1595.83439754079,478.0,31714.32914165584,0,5,0,1,140.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04881074397272202,31714.32914165584,8,4,8,8_1,8_0,8_0_1 -29098,2,83.0,0.0,9,112,1015.0,0.0,0.0,86,78,0.0,0.0,1402.9068409895694,1015.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,2006.0,6,128336,2,1,0,1,1,,260.0,405.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1700.79296239261,1015.0,21387.54661944095,5,5,2,3,73.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.04745752367302291,14258.364412960633,3,2,3_0,3_0_0,3_0_0,3_0_0 -29099,2,47.0,0.0,2,111,0.0,0.0,0.0,81,52,0.0,0.0,0.0,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,119189,2,2,2,0,1,,180.0,,43,2.0,1.0,5.0,4.0,2.5,1,1,246.891185511934,0.0,44345.633977404825,4,1,1,2,1.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0383352282406469,17738.25359096193,4,2,4_0,4_1_0,4_2_0,4_0_1 -29100,2,60.0,0.0,1,112,1326.0,0.0,0.0,78,78,0.0,0.0,1832.763025765684,1410.0,144.50746835197612,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112874,2,1,2,0,1,,470.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1507.40481936957,1326.0,29333.589181888292,5,5,0,1,86.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048067762565877525,19555.72612125886,5,3,5,5_1,5_0,5_1_0 -29101,2,83.0,0.0,5,112,340.0,0.0,0.0,77,75,3580.1229502121478,0.0,469.9392373758164,3137.0,688.1308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,123370,2,1,4,0,2,,319.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1357.25741136049,340.0,20506.573860215314,5,5,0,1,90.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15297533470893818,13671.049240143542,3,2,3_0,3_1_0,3_0_0,3_0_0 -29102,2,66.0,0.0,6,111,700.0,900.0,0.0,75,78,0.0,0.0,967.5219593031513,1600.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,1,,4,102308,2,1,2,0,1,,325.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,245.800343695321,700.0,28833.859314872883,5,5,0,1,120.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055490317217948656,19222.572876581922,5,3,5,5_1,5_2,5_0_0 -29103,1,49.0,19.0,2,111,720.0,45.0,0.0,0,65,0.0,0.0,995.16544385467,765.0,0.0,81.6143805381352,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,118717,2,2,0,1,1,756.0,168.0,267.0,12,1.0,2.0,3.0,1.0,1.0,3,3,312.854296979228,720.0,18051.711009993636,0,1,2,3,70.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04237825431486728,18051.711009993636,4,2,4_1,4_0_1,4_2_1,4_0_1 -29104,2,33.0,0.0,9,112,913.0,0.0,0.0,85,37,0.0,0.0,1261.9250697768246,2263.0,2322.441455656759,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,117228,2,1,1,0,1,,286.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1199.71583982207,913.0,37691.378022010365,7,1,1,2,80.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06004025638644711,17948.275248576363,4,2,4_0,4_1_0,4_0_0,4_0_0 -29105,2,52.0,0.0,2,111,300.0,720.0,0.0,55,43,0.0,0.0,414.65226827277917,1086.0,113.54158227655265,1305.830088610163,70,0,0,0,0,0,0,0,0,2,30.0,1,,2,100599,2,2,4,0,1,,160.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,271.054098566592,300.0,51602.8810815267,1,1,1,2,80.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021045336563364422,34401.9207210178,9,5,9,9_1,9_2,9_0_1 -29106,2,81.0,0.0,9,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,791.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,2006.0,6,102094,2,1,0,0,1,,565.0,540.0,11,0.0,1.0,3.0,1.0,1.0,2,2,2358.59471944403,0.0,20040.204508408387,0,5,2,3,70.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03947065508578595,20040.204508408387,5,3,5,5_0,5_0,5_0_0 -29107,1,57.0,270.0,2,111,210.0,102.0,0.0,0,78,0.0,0.0,290.25658779094545,312.0,0.0,184.9925958864398,71,0,0,0,0,0,0,0,0,0,,2,,2,111645,2,1,0,1,1,864.0,84.0,306.0,11,0.0,2.0,4.0,1.0,1.0,2,2,327.839182431314,210.0,17586.806760797655,0,7,2,3,71.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017740571340982263,17586.806760797655,4,2,4_1,4_0_1,4_2_1,4_0_1 -29108,2,44.0,0.0,9,112,1052.0,0.0,0.0,55,52,0.0,530.0083224675624,1454.047287409879,1579.0,25.804905062852875,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,110266,2,2,1,0,1,,350.0,,43,2.0,1.0,6.0,4.0,2.5,2,1,1193.90318698253,1052.0,56935.182132326605,1,1,1,2,113.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027733291452904246,22774.072852930643,6,3,6,6_1,6_0,6_0_0 -29109,1,45.0,448.0,2,111,310.0,216.0,0.0,85,67,0.0,0.0,428.47401054853844,526.0,0.0,391.749026583049,20,0,0,0,0,0,0,0,0,0,,2,,2,124331,2,1,0,1,1,1000.0,220.0,412.0,42,1.0,0.0,5.0,5.0,2.4,2,2,315.903035734788,310.0,19392.569640915004,6,4,2,3,107.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027123790696114352,8080.237350381252,1,1,1_1,1_0_1,1_2_1,1_0_1 -29110,2,77.0,0.0,2,111,200.0,0.0,0.0,0,75,0.0,0.0,276.4348455151861,882.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105336,1,1,0,1,2,,130.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,362.805036928754,200.0,19861.0845353096,0,5,0,1,100.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04440845103055451,19861.0845353096,5,3,5,5_0,5_2,5_0_1 -29111,0,73.0,0.0,1,400,0.0,0.0,0.0,71,71,0.0,0.0,0.0,2353.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104632,1,3,4,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,1402.53706583347,0.0,18577.335723025088,5,5,0,1,110.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12665971240879548,12384.890482016724,2,1,2_0,2_1_0,2_0_0,2_1_0 -29112,0,55.0,0.0,2,400,680.0,0.0,0.0,78,47,642.2414971177403,103.51725048194578,939.8784747516328,1280.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,106993,1,3,4,0,1,,162.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1541.00508499145,680.0,35661.88544865709,7,1,5,0,150.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03589266198061327,23774.59029910473,6,3,6,6_1,6_0,6_0_1 -29113,2,39.0,0.0,6,400,757.3,0.0,0.0,22,22,0.0,10.351725048194577,1046.7205425432521,767.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,4,128853,2,2,0,0,1,,126.0,600.0,43,2.0,0.0,4.0,5.0,2.4,1,1,1765.92479016593,757.3,28644.11925528679,1,1,2,3,70.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026776874972632866,11935.04968970283,2,1,2_0,2_0_0,2_0_0,2_0_0 -29114,2,60.0,0.0,5,111,650.0,0.0,0.0,0,43,0.0,0.0,898.4132479243549,760.0,189.2359704609211,0.0,33,0,0,0,0,0,0,0,0,2,12.0,1,,3,105996,2,2,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,274.545370216326,650.0,39140.176069666566,0,1,1,2,105.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019417388379839102,39140.176069666566,9,5,9,9_1,9_2,9_0_0 -29115,2,64.0,0.0,9,400,0.0,0.0,0.0,0,86,0.0,0.0,0.0,431.0,123.8635443016938,0.0,31,2,2,2,1,1,2,2,2,0,,2,2006.0,6,115924,2,2,0,0,1,,162.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1780.65569415301,0.0,21579.694244462822,0,5,2,3,60.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.019972479457654558,21579.694244462822,6,3,6,6_0,6_0,6_0_0 -29116,2,48.0,0.0,2,111,145.0,65.0,0.0,0,67,0.0,0.0,200.41526299850995,393.0,0.0,117.88743855508417,71,0,0,0,0,0,0,0,0,3,10.0,2,,2,128060,1,1,0,1,2,480.0,180.0,209.0,12,1.0,0.0,2.0,1.0,1.0,2,2,329.22967432765,145.0,19187.852651760008,0,1,2,3,44.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02048170825222342,19187.852651760008,5,3,5,5_0,5_2,5_0_1 -29117,2,73.0,0.0,2,400,539.0,0.0,0.0,0,77,2061.147130284841,129.39656310243222,744.9919086634266,2392.0,598.6737974581868,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,113185,2,1,0,1,1,528.0,471.0,284.0,11,0.0,6.0,4.0,1.0,1.0,2,2,1676.48830446931,539.0,16382.867460971589,0,5,2,3,68.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.14600618638332938,16382.867460971589,4,2,4_0,4_0_0,4_0_0,4_0_1 -29118,2,48.0,0.0,2,111,290.0,80.0,0.0,0,62,0.0,0.0,400.8305259970199,370.0,0.0,145.09223206779592,31,0,0,0,0,0,0,0,0,3,2.0,2,,2,124365,2,3,0,1,1,681.0,168.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,329.22967432765,290.0,14471.570564775591,0,1,2,3,84.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025567370061449688,14471.570564775591,3,2,3_0,3_0_0,3_2_0,3_0_1 -29119,1,22.0,244.0,2,400,308.0,0.0,0.0,0,69,0.0,0.0,425.7096620933866,404.0,165.1513924022584,0.0,44,2,2,2,2,1,2,2,2,2,5.0,2,,2,119214,1,1,0,1,1,772.0,210.0,232.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1815.09563963856,308.0,27103.675198933368,0,1,2,3,44.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.014905727619400446,27103.675198933368,7,4,7,7_0,7_0,7_0_1 -29120,2,62.0,0.0,7,111,420.0,0.0,0.0,78,68,0.0,0.0,580.5131755818909,600.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,5,129740,1,1,0,1,2,600.0,200.0,430.0,42,1.0,0.0,3.0,2.0,1.5,2,2,288.436295137682,420.0,31782.75438212877,7,1,2,3,76.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018878162439482465,21188.502921419178,5,3,5,5_0,5_2,5_0_0 -29122,2,48.0,0.0,2,111,990.0,81.0,0.0,0,52,0.0,0.0,1368.3524853001713,1071.0,0.0,146.90588496864336,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,102000,2,1,0,1,1,,400.0,525.0,32,2.0,1.0,4.0,2.0,1.5,2,2,288.753390990115,990.0,23541.150568360354,0,1,2,3,75.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04549480268137104,15694.100378906902,3,2,3_0,3_0_0,3_2_0,3_0_1 -29123,0,79.0,0.0,2,400,426.0,0.0,0.0,0,71,3332.1878606271594,0.0,588.8062209473464,2777.0,206.439240502823,0.0,10,2,2,2,2,1,2,2,2,0,,1,,2,110319,2,2,2,0,1,,114.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1484.71533138609,426.0,8373.21706522067,0,5,0,1,134.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.3316526943430929,8373.21706522067,1,1,1_0,1_1_0,1_0_0,1_0_1 -29124,2,31.0,0.0,2,400,0.0,0.0,0.0,42,63,0.0,0.0,0.0,1335.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,105429,2,1,1,0,1,,284.0,680.0,43,2.0,0.0,4.0,3.0,1.8,3,3,1846.06638040306,0.0,41195.550430860654,1,1,2,3,84.0,0,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032406412489634245,22886.416906033697,6,3,6,6_1,6_0,6_0_1 -29125,2,60.0,0.0,2,111,300.0,80.0,0.0,0,43,0.0,0.0,414.65226827277917,380.0,0.0,145.09223206779592,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,132440,2,1,0,1,2,,250.0,,12,1.0,2.0,4.0,1.0,1.0,4,2,339.983037001386,300.0,20866.96124475715,0,1,0,1,68.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018210605537760105,20866.96124475715,5,3,5,5_0,5_2,5_0_1 -29126,2,58.0,0.0,5,400,2400.0,0.0,0.0,13,54,0.0,414.0690019277831,3317.2181461822333,2870.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,101692,1,2,2,0,1,,592.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1305.44175410255,2400.0,28868.032808476997,1,4,0,1,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09941792774869074,19245.355205651333,5,3,5,5_1,5_0,5_0_0 -29127,2,43.0,0.0,8,400,1347.0,0.0,0.0,54,47,1314.3546917758406,0.0,1861.7886845447786,2332.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,114533,2,1,2,0,1,,525.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1194.07465550278,1347.0,42443.603217649725,1,1,0,1,130.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05494349732847993,20211.23962745225,5,3,5,5_1,5_0,5_0_0 -29128,2,63.0,0.0,2,111,600.0,156.0,0.0,0,77,0.0,0.0,829.3045365455583,756.0,0.0,282.929852532202,41,0,0,0,0,0,0,0,0,0,,2,,2,129188,2,2,0,1,1,,295.0,488.0,11,0.0,0.0,3.0,1.0,1.0,2,2,371.23403355316,600.0,16523.910615036955,0,5,2,3,63.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04575188147725945,16523.910615036955,4,2,4_0,4_0_0,4_2_0,4_0_1 -29129,2,42.0,0.0,2,111,642.0,84.0,0.0,0,65,0.0,0.0,887.3558541037474,726.0,0.0,152.3468436711857,50,2,1,2,2,1,2,2,2,2,5.0,2,,2,109049,2,3,0,1,1,527.0,270.0,208.0,12,1.0,0.0,2.0,1.0,1.0,1,1,336.848544284456,642.0,22662.617116192745,0,1,2,3,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03203513505425034,22662.617116192745,6,3,6,6_0,6_2,6_0_1 -29130,2,56.0,0.0,6,400,862.0,0.0,0.0,0,52,0.0,0.0,1191.4341841704522,892.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,122076,2,1,2,0,1,,52.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1503.29680010824,862.0,12958.571037182104,0,1,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06883475017735977,12958.571037182104,2,1,2_0,2_1_0,2_0_0,2_0_0 -29131,2,58.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,1571.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,117324,1,2,0,1,1,,170.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,350.805099958297,300.0,55719.43758315062,0,7,0,1,67.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02819482873737881,55719.43758315062,10,5,10,10_0,10_2,10_0_1 -29132,2,47.0,0.0,2,300,850.0,0.0,0.0,47,43,0.0,672.8621281326475,1174.848093439541,1600.0,172.03270041901916,0.0,60,2,2,1,2,2,2,2,1,2,15.0,1,,2,111290,1,2,3,0,1,,351.0,,43,3.0,1.0,5.0,3.0,2.0,4,4,1415.91473445726,850.0,40581.85071962736,4,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03942649168600293,20290.92535981368,5,3,5,5_1,5_0,5_0_1 -29133,1,64.0,66.0,2,111,600.0,0.0,0.0,0,77,0.0,0.0,829.3045365455583,986.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115915,2,1,0,1,1,501.0,0.0,264.0,11,0.0,2.0,3.0,1.0,1.0,2,2,317.6602357826,600.0,13099.886031992644,0,5,2,3,53.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07526783039119447,13099.886031992644,2,1,2_1,2_0_1,2_2_1,2_0_1 -29134,2,63.0,0.0,5,111,420.0,0.0,0.0,78,78,0.0,0.0,580.5131755818909,873.0,412.878481005646,0.0,71,1,1,2,2,1,2,2,2,0,,2,,3,127999,2,2,0,1,1,1060.0,0.0,331.0,41,0.0,4.0,4.0,2.0,1.5,2,2,335.826437435905,420.0,27839.67843917251,5,5,2,3,80.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.031358120816928105,18559.785626115005,4,2,4_0,4_0_0,4_2_0,4_0_0 -29135,2,51.0,0.0,2,300,323.0,0.0,0.0,0,52,0.0,0.0,446.44227550702556,363.0,68.81308016760767,0.0,70,0,0,0,0,0,0,0,0,2,45.0,2,,2,102216,2,2,0,1,1,674.0,135.0,256.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1693.52622455604,323.0,17567.735201700216,0,1,2,3,50.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020662879752699634,17567.735201700216,4,2,4_0,4_0_0,4_0_0,4_0_1 -29136,1,45.0,270.0,5,111,320.0,0.0,0.0,0,56,0.0,0.0,442.2957528242978,536.0,371.5906329050814,0.0,50,1,2,2,2,1,2,2,1,0,,2,,3,131939,2,1,0,1,1,650.0,0.0,275.0,12,1.0,0.0,3.0,1.0,1.0,3,2,329.644169637227,320.0,5042.095283532977,0,4,2,3,48.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.10630501207514405,5042.095283532977,1,1,1_1,1_0_1,1_2_1,1_0_0 -29137,2,43.0,0.0,5,111,230.0,0.0,0.0,0,55,0.0,0.0,317.900072342464,265.0,60.21144514665671,0.0,50,1,2,2,2,1,2,2,2,2,10.0,2,,3,128346,1,3,0,1,1,519.0,0.0,318.0,12,1.0,0.0,3.0,1.0,1.0,3,3,331.243967986547,230.0,17012.891067215354,0,1,2,3,50.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.015576423722048484,17012.891067215354,4,2,4_0,4_0_0,4_2_0,4_0_0 -29138,2,76.0,0.0,1,300,2877.0,0.0,0.0,77,72,0.0,0.0,3976.5152527359523,2967.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,111475,2,1,0,0,1,,191.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1830.06060019263,2877.0,28675.74128726958,5,5,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10346724676711955,19117.16085817972,5,3,5,5_0,5_0,5_1_0 -29139,2,67.0,0.0,2,111,540.0,1200.0,0.0,75,77,0.0,0.0,746.3740828910024,1740.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,2,,2,100435,1,1,0,0,2,,158.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,331.114767897042,540.0,23370.552305398684,5,5,1,2,70.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07445266920790972,15580.368203599122,3,2,3_0,3_0_0,3_2_0,3_0_1 -29140,2,71.0,0.0,2,300,1800.0,0.0,0.0,56,72,1792.3018524216009,0.0,2487.913609636675,3070.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128148,2,3,4,0,1,,265.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,1479.57089098437,1800.0,32909.70267093028,1,5,0,1,200.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09328555869062241,21939.801780620186,6,3,6,6_1,6_0,6_0_1 -29141,1,37.0,412.0,2,111,660.0,249.0,0.0,56,63,0.0,0.0,912.2349902001142,909.0,0.0,451.59957231101475,42,1,2,2,1,1,2,2,2,2,15.0,2,,2,105700,1,1,0,1,1,,0.0,627.0,43,2.0,1.0,5.0,7.0,2.9999999999999996,4,3,301.176811005057,660.0,18611.337907287816,4,1,2,3,90.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0488411958628753,6203.779302429273,1,1,1_1,1_0_1,1_2_1,1_0_1 -29142,2,49.0,0.0,1,300,475.0,0.0,0.0,0,43,0.0,357.13451416271295,656.532758098567,868.0,82.5756962011292,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,1,123971,1,2,0,0,2,,191.0,,12,1.0,2.0,6.0,1.0,1.0,3,3,2051.49994699239,475.0,17926.0,0,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04842128751534085,17926.0,4,2,4_0,4_0_0,4_0_0,4_1_0 -29143,2,44.0,0.0,6,111,240.0,0.0,0.0,0,63,0.0,0.0,331.72181461822333,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,7.0,2,,4,121746,2,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,378.170180211594,240.0,19626.1335753679,0,1,1,2,48.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012228593017486435,19626.1335753679,5,3,5,5_0,5_2,5_0_0 -29144,2,46.0,0.0,1,300,2000.0,0.0,0.0,72,38,0.0,155.27587572291867,2764.3484551518613,2300.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101337,2,1,1,0,1,,221.0,,42,1.0,3.0,4.0,3.0,2.0,4,3,1673.82361241929,2000.0,127637.20745368078,5,1,0,1,190.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018019823889007164,63818.60372684039,10,5,10,10_1,10_0,10_1_0 -29145,2,79.0,0.0,1,300,367.0,0.0,0.0,0,78,2837.8112663342013,0.0,507.2579415203665,2360.0,159.99041138968784,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109437,2,1,1,0,1,,141.0,,11,0.0,1.0,5.0,1.0,1.0,3,2,1344.03354668052,367.0,11441.137722411737,0,5,0,1,110.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2062731921648893,11441.137722411737,2,1,2_0,2_1_0,2_0_0,2_1_0 -29146,1,41.0,278.0,2,111,400.0,300.0,0.0,85,55,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,50,2,2,2,2,1,2,2,2,2,20.0,2,,2,126276,2,3,0,1,1,742.0,550.0,329.0,42,1.0,0.0,4.0,4.0,2.5,2,2,317.994199098747,400.0,22061.754204040426,6,1,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03172911788999085,8824.70168161617,1,1,1_1,1_0_1,1_3_1,1_0_1 -29147,2,60.0,0.0,5,300,389.0,0.0,0.0,74,52,2028.288262990445,0.0,537.665774527037,1782.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,1,7.0,1,,3,114024,2,2,1,0,1,,282.0,,42,1.0,1.0,5.0,2.0,1.5,1,1,1357.25741136049,389.0,38607.410862271754,7,1,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04615694137991057,25738.27390818117,7,4,7,7_1,7_0,7_0_0 -29148,2,68.0,0.0,2,300,950.0,0.0,0.0,78,77,0.0,590.048327747091,1313.065516197134,1610.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110673,2,2,4,0,1,,261.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1259.28396124635,950.0,29320.126620125502,5,5,0,1,75.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05491108619206599,19546.751080083668,5,3,5,5_1,5_0,5_0_1 -29149,1,53.0,270.0,5,111,303.0,108.0,0.0,0,77,0.0,0.0,418.79879095550695,411.0,0.0,195.8745132915245,71,0,0,0,0,0,0,0,0,0,,8,,3,102883,2,1,0,1,1,387.0,720.0,276.0,31,1.0,1.0,3.0,2.0,1.5,3,2,317.235212147616,303.0,6757.111531190925,0,7,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.060824806295236955,4504.74102079395,1,1,1_1,1_0_1,1_3_1,1_0_0 -29150,2,69.0,0.0,1,300,653.0,0.0,0.0,75,72,4107.3584117995015,0.0,902.5597706070827,3467.0,110.10092826817227,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,100980,1,2,2,0,1,,332.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1335.87229499502,653.0,37666.99243253093,7,5,0,1,160.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09204345173589545,25111.328288353954,7,4,7,7_1,7_0,7_1_0 -29151,2,73.0,0.0,2,111,1105.0,0.0,0.0,86,78,0.0,0.0,1527.3025214714032,1105.0,0.0,0.0,20,1,2,2,1,2,2,2,2,0,,8,,2,119241,2,2,0,3,1,,1544.0,648.0,41,0.0,7.0,5.0,2.0,1.5,2,2,298.067235169034,1105.0,17291.249979201806,5,5,2,3,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06390515441793461,11527.499986134537,2,1,2_0,2_0_0,2_3_0,2_0_1 -29152,2,54.0,0.0,1,300,945.0,0.0,0.0,42,35,0.0,357.13451416271295,1306.1546450592543,1371.0,139.3464873394055,0.0,71,2,2,2,2,2,2,2,1,2,20.0,2,,1,123532,2,3,0,0,1,,217.0,333.0,43,2.0,0.0,4.0,4.0,2.5,1,1,2097.6512970246,945.0,64894.93986429696,1,1,2,3,110.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02112645458747514,25957.975945718783,7,4,7,7_0,7_0,7_1_0 -29153,1,35.0,171.0,5,111,408.0,360.0,0.0,85,64,0.0,0.0,563.9270848509797,768.0,0.0,652.9150443050816,50,1,2,2,2,2,1,2,2,2,15.0,2,,3,126815,2,1,0,1,1,900.0,0.0,327.0,42,1.0,0.0,4.0,4.0,2.1,2,2,309.816825205137,408.0,32550.365669694016,6,1,2,3,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.023594204986613885,15500.17412842572,3,2,3_1,3_0_1,3_3_1,3_0_0 -29154,2,65.0,0.0,1,300,285.0,0.0,0.0,78,78,0.0,0.0,393.9196548591402,2011.0,2969.2844092322707,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123614,2,2,3,0,1,,165.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1446.53929263299,285.0,21190.130890211443,5,5,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09490267004103123,14126.753926807629,3,2,3_0,3_1_0,3_0_0,3_1_0 -29155,2,57.0,0.0,5,111,0.0,0.0,1370.0,43,42,0.0,0.0,699.9512687274093,1370.0,0.0,1566.246711274105,71,0,0,0,0,0,0,0,0,2,10.0,8,,3,102442,2,3,0,0,1,,300.0,,43,2.0,4.0,5.0,2.0,1.5,2,1,351.178006941494,0.0,70254.90120519987,1,1,1,2,106.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019500418853319806,46836.60080346658,10,5,10,10_0,10_3,10_0_0 -29156,2,24.0,0.0,1,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1413.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,1,109853,2,1,0,0,1,,620.0,350.0,12,1.0,0.0,3.0,1.0,1.0,3,3,2084.06625595123,0.0,18976.712574610006,0,1,2,3,70.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0744596828583751,18976.712574610006,5,3,5,5_0,5_0,5_1_0 -29157,1,35.0,146.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,608.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,132868,1,1,0,0,1,,240.0,440.0,42,1.0,0.0,2.0,2.0,1.5,1,1,363.90612730017,0.0,18149.41443688389,6,1,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03349970337138815,12099.60962458926,2,1,2_1,2_0_1,2_3_1,2_0_1 -29158,2,56.0,0.0,1,300,1000.0,0.0,0.0,22,22,896.1509262108004,0.0,1382.1742275759307,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128460,2,1,1,0,1,,229.0,,43,5.0,0.0,5.0,5.0,3.0,1,1,1321.47990785126,1000.0,41412.11949426815,1,1,1,2,140.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03863603262859937,13804.039831422715,3,2,3_0,3_1_0,3_0_0,3_1_0 -29159,1,33.0,333.0,2,111,0.0,0.0,0.0,46,56,0.0,0.0,0.0,305.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,121416,1,2,0,1,2,,0.0,380.0,43,2.0,0.0,4.0,5.0,2.4,5,5,276.912327361349,0.0,16064.237746515057,4,1,2,3,80.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018986272788832827,6693.432394381274,1,1,1_1,1_0_1,1_3_1,1_0_1 -29160,1,36.0,320.0,1,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1436.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,102555,2,1,1,0,1,,476.0,410.0,32,1.0,0.0,4.0,3.0,1.6,4,3,1731.15241176371,0.0,16240.641452242297,0,1,2,3,95.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0884201528752878,10150.400907651434,2,1,2_1,2_1_1,2_0_1,2_1_0 -29161,2,41.0,0.0,2,112,560.0,0.0,0.0,0,43,0.0,207.03450096389156,774.0175674425211,820.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,110844,2,1,3,0,1,,194.0,,32,1.0,0.0,5.0,3.0,1.6,8,6,797.07656117807,560.0,33757.95165121988,0,1,1,2,80.0,7,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024290573328384052,21098.719782012424,5,3,5,5_1,5_1,5_0_1 -29162,1,32.0,210.0,2,111,180.0,576.0,0.0,85,53,0.0,0.0,248.7913609636675,756.0,0.0,1044.6640708881305,71,2,1,2,2,1,2,2,2,2,22.0,8,,2,118597,2,1,0,1,1,672.0,360.0,310.0,42,1.0,0.0,4.0,3.0,1.8,3,3,363.495855898871,180.0,14479.435456004217,6,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05221198038398023,8044.130808891232,1,1,1_1,1_0_1,1_3_1,1_0_1 -29163,2,55.0,0.0,2,112,850.0,0.0,0.0,21,35,0.0,0.0,1174.848093439541,950.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126307,2,1,2,0,1,,500.0,,43,2.0,2.0,4.0,4.0,2.1,1,1,723.380090150396,850.0,25533.318264534504,1,1,0,1,65.0,7,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037206288276269185,12158.722983111667,2,1,2_0,2_1_0,2_1_0,2_0_1 -29164,2,81.0,0.0,5,112,400.0,1500.0,0.0,77,77,0.0,0.0,552.8696910303722,1900.0,0.0,2720.4793512711735,42,0,0,0,0,0,0,0,0,0,,1,,3,109950,2,2,3,0,1,,180.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,713.989788869837,400.0,32691.880184539637,6,5,0,1,96.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058118407056273615,21794.58678969309,6,3,6,6_1,6_1,6_0_0 -29165,2,71.0,0.0,2,112,0.0,0.0,1200.0,77,75,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,60,0,0,0,0,0,0,0,0,0,,1,,2,113936,2,1,2,0,1,,205.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,686.059187377151,0.0,44368.770422756934,5,5,0,1,90.0,7,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027046050376562044,29579.180281837955,8,4,8,8_1,8_1,8_0_1 -29166,1,24.0,169.0,5,112,0.0,0.0,0.0,56,46,0.0,0.0,0.0,729.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,124091,2,1,2,0,1,,248.0,570.0,43,2.0,0.0,4.0,2.0,1.5,2,2,760.673143956173,0.0,31113.29049650168,2,1,2,3,75.0,7,2,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023430501511306476,20742.193664334452,5,3,5,5_1,5_1,5_0_0 -29167,2,55.0,0.0,2,112,520.0,0.0,0.0,55,43,2539.0942909306013,0.0,718.7305983394839,2220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,2,111257,2,1,4,0,1,,150.0,,43,2.0,3.0,5.0,2.0,1.5,4,4,753.018563108515,520.0,40334.03989435581,1,1,1,2,108.0,7,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05504035811475107,26889.35992957054,7,4,7,7_1,7_1,7_0_1 -29168,2,57.0,0.0,8,112,498.0,1634.0,0.0,77,64,0.0,0.0,688.3227653328134,2132.0,0.0,2963.5088399847314,31,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,109931,2,1,2,0,1,,500.0,,42,1.0,1.0,5.0,2.0,1.5,4,4,752.668001276491,498.0,31701.37518869098,6,1,0,1,100.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06725260299624355,21134.250125793988,5,3,5,5_1,5_1,5_0_0 -29169,2,36.0,0.0,2,112,1500.0,0.0,0.0,55,62,0.0,0.0,2073.261341363896,1620.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,101147,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,3.0,1.8,3,2,720.03419770206,1500.0,48275.10388234108,1,1,0,1,97.0,7,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033557669890226634,26819.502156856153,7,4,7,7_1,7_1,7_0_1 -29170,2,78.0,0.0,2,112,348.0,1622.0,0.0,86,74,0.0,0.0,480.99663119642383,1970.0,0.0,2941.7450051745623,60,0,0,0,0,0,0,0,0,0,,1,,2,118846,2,1,2,0,1,,300.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,775.504578228187,348.0,40956.36481495081,6,5,0,1,71.0,7,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04809997197995625,27304.243209967204,7,4,7,7_1,7_1,7_0_1 -29171,2,67.0,0.0,5,112,900.0,0.0,0.0,75,74,0.0,201.85863843979428,1243.9568048183376,1191.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123836,2,1,1,0,1,,264.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,700.52678058339,900.0,72351.60849172533,5,5,0,1,100.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016461278813672976,48234.405661150224,10,5,10,10_1,10_1,10_0_0 -29172,2,32.0,0.0,5,112,1700.0,0.0,0.0,53,46,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,12.0,1,,3,104101,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,668.222373559399,1700.0,52723.2207959473,1,1,1,2,145.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03224385715317822,25106.29561711776,7,4,7,7_1,7_1,7_0_0 -29173,2,47.0,0.0,7,112,1200.0,800.0,0.0,56,47,0.0,0.0,1658.6090730911167,2000.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,130741,2,1,1,0,1,,400.0,,43,3.0,1.0,5.0,4.0,2.5,2,2,666.073829994473,1200.0,65995.15630955962,1,1,0,1,110.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030305254382893148,26398.06252382385,7,4,7,7_1,7_1,7_0_0 -29174,2,36.0,0.0,7,112,2300.0,0.0,0.0,43,38,0.0,1009.2931921989714,3179.0007234246405,3355.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,129234,2,1,2,0,1,,470.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,730.224768838539,2300.0,80361.11131334145,1,1,1,2,150.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04174904932459548,29763.374560496835,8,4,8,8_1,8_1,8_0_0 -29175,2,56.0,0.0,7,112,718.0,970.0,0.0,74,77,0.0,67.28621281326475,992.4010953995181,1753.0,0.0,1759.2433138220254,71,0,0,0,0,0,0,0,0,0,,1,,5,123136,2,2,3,0,1,,320.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,701.299644055976,718.0,67248.91696097195,5,5,0,1,120.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02606733430394659,44832.61130731463,10,5,10,10_1,10_1,10_0_0 -29176,2,37.0,0.0,1,112,430.0,0.0,0.0,21,43,2240.377315527001,672.8621281326475,594.3349178576501,2724.0,247.7270886033876,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110021,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,716.131159692653,430.0,42565.67612324639,1,1,1,2,180.0,7,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06399522451171266,20269.36958249828,5,3,5,5_1,5_1,5_1_0 -29177,2,46.0,0.0,8,112,2000.0,0.0,0.0,46,42,0.0,0.0,2764.3484551518613,2061.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,118254,2,1,1,0,1,,456.0,,43,2.0,0.0,7.0,4.0,2.5,3,3,702.969301671127,2000.0,65196.627936454046,1,1,0,1,135.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03161206438481479,26078.651174581617,7,4,7,7_1,7_1,7_0_0 -29178,2,56.0,0.0,6,112,2200.0,0.0,0.0,78,37,0.0,579.6966026988963,3040.783300667047,2888.0,220.20185653634454,0.0,42,0,0,0,0,0,0,0,0,2,12.0,1,,4,110084,2,1,1,0,1,,226.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,733.897042340981,2200.0,72712.52149622353,5,1,0,1,130.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03971805599053519,48475.01433081569,10,5,10,10_1,10_1,10_0_0 -29179,2,64.0,0.0,9,112,540.0,1282.0,0.0,77,75,0.0,0.0,746.3740828910024,1822.0,0.0,2325.1030188864297,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,111021,2,1,1,0,1,,337.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,749.733024972009,540.0,47423.95530336202,5,5,0,1,117.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038419401931893124,31615.970202241344,8,4,8,8_1,8_1,8_0_0 -29180,1,30.0,178.0,6,112,0.0,0.0,0.0,69,21,0.0,0.0,0.0,1138.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,126807,2,3,0,0,1,,923.0,583.0,43,2.0,0.0,4.0,3.0,1.8,4,4,1101.36589247184,0.0,9440.077459712229,1,1,2,3,56.0,7,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12054985828841819,5244.487477617905,1,1,1_1,1_0_1,1_1_1,1_0_0 -29181,2,75.0,0.0,6,112,200.0,0.0,0.0,74,74,0.0,0.0,276.4348455151861,200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,131298,2,2,1,0,1,,270.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,749.683073487907,200.0,121239.2742365925,5,5,0,1,200.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016496304622354455,80826.182824395,10,5,10,10_1,10_1,10_0_0 -29182,0,53.0,0.0,7,112,0.0,0.0,0.0,68,64,0.0,0.0,0.0,2889.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,110553,2,1,2,0,1,,0.0,,43,3.0,3.0,4.0,3.0,2.0,4,4,840.558581102726,0.0,35205.59563912462,1,1,5,0,103.0,7,2,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08206081867251243,17602.79781956231,4,2,4_0,4_1_0,4_1_0,4_0_0 -29183,2,47.0,0.0,2,112,252.0,0.0,0.0,0,47,0.0,0.0,348.3079053491345,492.0,412.878481005646,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,123274,1,3,4,0,2,,200.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,686.059187377151,252.0,39878.834948572796,0,1,0,1,120.0,7,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012337371456174097,26585.889965715196,7,4,7,7_1,7_1,7_0_1 -29184,2,67.0,0.0,6,112,1100.0,0.0,0.0,77,78,0.0,403.71727687958855,1520.3916503335236,1550.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,114882,2,1,2,0,1,,240.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,734.679505906513,1100.0,26855.76021473911,5,5,0,1,170.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05771573724244534,17903.840143159407,4,2,4_0,4_1_0,4_1_0,4_0_0 -29185,2,65.0,0.0,5,112,700.0,0.0,0.0,77,72,2688.452778632401,134.5724256265295,967.5219593031513,2630.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,116758,2,1,1,0,1,,165.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,737.769795051416,700.0,34791.4267716423,5,5,0,1,140.0,7,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0755933356013917,23194.2845144282,6,3,6,6_1,6_1,6_0_0 -29186,2,50.0,0.0,7,112,832.5,0.0,0.0,37,43,0.0,0.0,1150.6600444569622,1537.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,110554,2,1,2,0,1,,99.0,,43,2.0,0.0,7.0,4.0,2.3,1,1,691.10369249683,832.5,65283.03481363243,1,1,0,1,180.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02354363586784484,28383.92817984019,8,4,8,8_1,8_1,8_0_0 -29187,2,46.0,0.0,1,112,0.0,0.0,756.0,0,47,0.0,0.0,386.25048113716895,791.0,60.21144514665671,864.2938056373894,31,0,0,0,0,0,0,0,0,0,,2,,1,101753,2,1,0,0,1,,350.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,998.691588725647,0.0,20993.290840159076,0,1,1,2,50.0,7,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03767870440240165,20993.290840159076,5,3,5,5_0,5_1,5_1_0 -29188,2,78.0,0.0,1,112,2000.0,0.0,0.0,75,74,746.7924385090004,0.0,2764.3484551518613,2545.0,77.41471518855863,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125237,2,1,3,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,753.12057669851,2000.0,63401.02553147617,5,5,0,1,120.0,7,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04014130652723442,42267.350354317445,9,5,9,9_1,9_1,9_1_0 -29189,2,62.0,0.0,5,112,435.0,865.0,0.0,0,77,0.0,0.0,601.2457889955298,1300.0,0.0,1568.8097592330432,20,0,0,0,0,0,0,0,0,0,,1,,3,116352,2,1,2,0,1,,192.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,722.18246604549,435.0,24404.36698815873,0,5,0,1,90.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053269154681650804,24404.36698815873,7,4,7,7_1,7_1,7_0_0 -29190,2,58.0,0.0,1,112,830.0,3800.0,0.0,37,22,0.0,0.0,1147.2046088880224,4630.0,0.0,6891.881023220306,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,110443,2,1,1,0,1,,726.0,,43,2.0,3.0,10.0,2.0,1.5,1,1,749.683073487907,830.0,130449.45295968982,1,1,0,1,290.0,7,2,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035492674710032826,86966.30197312655,10,5,10,10_1,10_1,10_1_0 -29191,2,93.0,0.0,1,111,230.0,0.0,0.0,0,77,4480.754631054002,0.0,317.900072342464,3255.0,43.00817510475479,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,108407,2,3,4,0,1,,110.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2391.02935153459,230.0,20752.264101222503,0,5,0,1,90.0,4,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15685035541776138,20752.264101222503,5,3,5,5_1,5_2,5_1_0 -29192,2,34.0,0.0,2,111,230.0,835.0,0.0,0,42,0.0,0.0,317.900072342464,1065.0,0.0,1514.4001722076198,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,118692,2,2,0,0,1,,120.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,2857.93200802072,230.0,26449.334027849236,0,1,1,2,60.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04026566411383485,26449.334027849236,7,4,7,7_0,7_2,7_0_1 -29193,2,64.0,0.0,2,111,1330.0,0.0,0.0,77,77,0.0,258.79312620486445,1838.2917226759876,1580.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103663,1,3,0,0,2,,300.0,580.0,41,0.0,4.0,4.0,2.0,1.5,1,1,3420.57993249972,1330.0,27523.316320858677,6,5,2,3,77.0,4,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05740587295443716,18348.877547239117,4,2,4_0,4_0_0,4_2_0,4_0_1 -29194,0,80.0,0.0,2,111,500.0,2000.0,0.0,0,77,0.0,248.44140115666985,691.0871137879653,2806.0,113.54158227655265,3627.3058016948976,10,2,2,2,1,2,2,2,2,0,,1,,2,131798,1,3,3,0,2,,200.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,2397.29549977931,500.0,18513.55845512597,0,5,0,1,80.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.15156459558011573,18513.55845512597,4,2,4_0,4_1_0,4_2_0,4_0_1 -29195,2,41.0,0.0,2,111,120.0,800.0,0.0,0,62,0.0,0.0,165.86090730911167,920.0,0.0,1450.922320677959,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,105806,2,2,0,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,3105.41233478488,120.0,18211.50843367253,0,1,1,2,61.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05051750673760487,18211.50843367253,4,2,4_0,4_0_0,4_2_0,4_0_1 -29196,2,63.0,0.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1146.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,131341,2,2,2,0,1,,225.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,2157.36215997398,0.0,14336.158261337432,0,5,0,1,120.0,4,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07993773360402961,14336.158261337432,3,2,3_0,3_1_0,3_2_0,3_0_0 -29197,2,65.0,0.0,2,111,726.0,0.0,0.0,77,77,0.0,662.510403084453,1003.4584892201256,1456.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,118793,2,2,1,0,1,,231.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,2126.46925552768,726.0,32948.379987797634,5,5,0,1,124.0,4,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04419033653670459,21965.586658531756,6,3,6,6_1,6_2,6_0_1 -29198,2,79.0,0.0,5,111,0.0,0.0,1850.0,77,74,0.0,517.5862524097289,945.1896694494214,2350.0,0.0,2115.0046831073682,31,0,0,0,0,0,0,0,0,0,,1,,3,116030,2,2,2,0,1,,250.0,,41,0.0,5.0,6.0,2.0,1.5,3,1,1975.69475880297,0.0,25423.81423832939,5,5,1,2,118.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0924330227545912,16949.209492219594,4,2,4_0,4_1_0,4_2_0,4_0_0 -29199,2,86.0,0.0,5,111,370.0,1421.0,0.0,0,77,0.0,0.0,511.40446420309434,1791.0,0.0,2577.200772104225,33,0,0,0,0,0,0,0,0,0,,1,,3,128970,2,2,2,0,2,,233.0,,11,0.0,4.0,5.0,1.0,1.0,5,5,2098.12891486972,370.0,15890.266958863398,0,5,0,1,80.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1127105041492712,15890.266958863398,3,2,3_0,3_1_0,3_2_0,3_0_0 -29200,2,76.0,0.0,8,111,0.0,0.0,1200.0,78,78,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130393,2,1,1,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2149.42497279922,0.0,37461.51640890658,5,5,0,1,100.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03203287306636356,24974.344272604387,7,4,7,7_1,7_2,7_0_0 -29201,2,65.0,0.0,6,111,521.0,485.0,0.0,0,77,0.0,0.0,720.1127725670598,1006.0,0.0,879.6216569110127,20,0,0,0,0,0,0,0,0,0,,1,,4,107196,2,2,2,0,1,,310.0,,11,0.0,0.0,3.0,1.0,1.0,4,4,2285.17944848308,521.0,21133.0,0,5,0,1,80.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04760327449959779,21133.0,5,3,5,5_1,5_2,5_0_0 -29202,2,50.0,0.0,7,111,603.0,1098.0,0.0,55,56,0.0,0.0,833.4510592282861,1701.0,0.0,1991.3908851304989,60,0,0,0,0,0,0,0,0,1,10.0,2,,5,123642,2,1,0,0,1,,168.0,623.0,43,2.0,0.0,5.0,3.0,2.0,2,1,3168.57341926926,603.0,53209.945810124074,1,1,2,3,92.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03196770780541477,26604.972905062037,7,4,7,7_0,7_2,7_0_0 -29203,2,74.0,0.0,5,111,1272.0,0.0,0.0,77,74,0.0,372.6621017350048,1758.1256174765836,1727.0,163.4310653980682,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126433,2,1,2,0,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2261.22226119287,1272.0,46396.10479475747,5,5,0,1,127.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03722295239308845,30930.736529838312,8,4,8,8_1,8_2,8_0_0 -29204,0,70.0,0.0,9,111,490.0,0.0,0.0,0,78,0.0,134.5724256265295,677.265371512206,650.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,104744,2,2,1,0,1,,300.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,2389.18313751837,490.0,14038.736913191868,0,5,5,0,45.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04630046164546402,14038.736913191868,3,2,3_0,3_1_0,3_2_0,3_0_0 -29205,2,58.0,0.0,1,111,700.0,1362.0,0.0,37,46,0.0,207.03450096389156,967.5219593031513,2262.0,0.0,2470.1952509542252,71,0,0,0,0,0,0,0,0,2,12.0,1,,1,101848,2,1,1,0,1,,357.0,,43,2.0,2.0,7.0,4.0,2.3,1,1,2062.45453191436,700.0,80841.90041364772,1,1,1,2,190.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027980539651169922,35148.65235375988,9,5,9,9_1,9_2,9_1_0 -29206,2,45.0,0.0,6,111,440.0,720.0,0.0,52,42,0.0,0.0,608.1566601334094,1160.0,0.0,1305.830088610163,43,2,2,2,2,1,2,2,2,0,,2,,4,119937,2,1,0,0,1,,210.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,2638.7517403056,440.0,53525.44167366061,1,1,1,2,94.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02167193700282581,23271.931162461136,6,3,6,6_0,6_2,6_0_0 -29207,2,75.0,0.0,2,111,330.0,260.0,0.0,78,78,0.0,465.827627168756,456.1174951000571,1040.0,0.0,471.5497542203367,60,0,0,0,0,0,0,0,0,0,,1,,2,101903,2,2,1,0,1,,120.0,,41,0.0,6.0,5.0,2.0,1.5,1,1,1975.69475880297,330.0,28078.025599863853,5,5,0,1,92.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037039641419980854,18718.683733242568,5,3,5,5_1,5_2,5_0_1 -29208,2,86.0,0.0,2,111,1293.0,0.0,0.0,0,77,0.0,269.144851253059,1787.151276255678,1646.0,159.99041138968784,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117585,1,3,2,0,1,,206.0,,11,0.0,4.0,5.0,1.0,1.0,3,3,2217.31159357372,1293.0,11097.943955607061,0,5,0,1,90.0,4,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1483157607016374,11097.943955607061,2,1,2_0,2_1_0,2_2_0,2_0_1 -29209,2,36.0,0.0,1,111,730.0,0.0,0.0,0,52,0.0,134.5724256265295,1008.9871861304293,860.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,90.0,1,,1,116538,2,2,1,0,1,,150.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,2259.13505766595,730.0,19007.087356521053,0,1,1,2,100.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04524628018321527,19007.087356521053,5,3,5,5_1,5_2,5_1_0 -29210,2,64.0,0.0,1,111,120.0,700.0,0.0,0,78,0.0,0.0,165.86090730911167,860.0,68.81308016760767,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,2,,1,118752,1,3,0,0,2,,120.0,319.0,11,0.0,0.0,2.0,1.0,1.0,2,2,3723.17858931163,120.0,14074.539410206824,0,5,2,3,35.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.061103242879573735,14074.539410206824,3,2,3_0,3_0_0,3_2_0,3_1_0 -29211,1,39.0,451.0,1,111,0.0,0.0,950.0,85,85,0.0,0.0,485.3676680956488,950.0,0.0,1086.08348592,50,0,0,0,0,0,0,0,0,0,,2,,1,131892,1,3,0,0,1,,220.0,572.0,41,0.0,0.0,5.0,6.0,2.6999999999999997,3,3,3187.93851770017,0.0,33500.025194605725,6,7,2,3,102.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.028358187627661003,12407.416738742862,2,1,2_1,2_0_1,2_2_1,2_1_0 -29212,0,81.0,0.0,2,111,0.0,0.0,960.0,0,77,0.0,0.0,490.47680144402403,960.0,0.0,1097.5159436665263,50,0,0,0,0,0,0,0,0,0,,2,,2,117397,1,3,0,0,2,,760.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,3175.72320743825,0.0,17056.32752840865,0,5,5,0,45.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0562840974061412,17056.32752840865,4,2,4_0,4_0_0,4_2_0,4_0_1 -29213,2,37.0,0.0,1,111,850.0,840.0,0.0,85,21,0.0,0.0,1174.848093439541,1690.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,121242,2,1,1,0,1,,280.0,,42,1.0,0.0,5.0,2.0,1.5,4,3,2197.6738467512,850.0,27758.868679528543,7,1,1,2,115.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06088144367520035,18505.912453019027,4,2,4_0,4_1_0,4_2_0,4_1_0 -29214,1,34.0,260.0,2,111,0.0,0.0,1080.0,0,43,0.0,0.0,551.7864016245271,1080.0,0.0,1234.705436624842,60,2,2,2,2,2,1,2,2,2,17.0,2,,2,129458,1,3,0,0,2,,0.0,415.0,32,1.0,0.0,3.0,3.0,1.6,2,2,3108.9591882289,0.0,24061.73062562627,0,1,2,3,60.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.044884552021780856,15038.581641016419,3,2,3_1,3_0_1,3_2_1,3_0_1 -29215,2,27.0,0.0,2,111,0.0,0.0,600.0,0,65,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,109264,2,2,0,0,1,,120.0,286.0,12,1.0,0.0,2.0,1.0,1.0,3,3,2980.79535998924,0.0,20895.590751264,0,1,2,3,45.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028714191770993852,20895.590751264,5,3,5,5_0,5_2,5_0_1 -29216,2,82.0,0.0,1,111,190.0,821.0,0.0,0,77,0.0,0.0,262.6131032394268,1011.0,0.0,1489.0090315957555,71,1,1,2,2,1,2,2,2,0,,2,,1,111773,1,3,0,0,2,,124.0,332.0,11,0.0,1.0,3.0,1.0,1.0,3,2,3477.63974305133,190.0,12553.246904881216,0,5,2,3,60.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.08053693260879637,12553.246904881216,2,1,2_0,2_0_0,2_2_0,2_1_0 -29217,2,64.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1744.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,132052,2,1,0,0,1,,391.0,530.0,11,0.0,2.0,2.0,1.0,1.0,1,1,3240.26915311655,0.0,35998.752655271644,0,5,2,3,66.0,4,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0484461230282269,35998.752655271644,9,5,9,9_0,9_2,9_0_1 -29218,1,83.0,61.0,7,111,281.0,910.0,0.0,0,77,0.0,0.0,388.3909579488365,1191.0,0.0,1650.4241397711785,31,0,0,0,0,0,0,0,0,0,,2,,5,129911,2,1,0,0,1,,0.0,686.0,21,0.0,2.0,3.0,2.0,1.5,2,2,3060.974884102,281.0,21158.04325020697,0,5,2,3,80.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05629064965581586,14105.362166804647,3,2,3_1,3_0_1,3_2_1,3_0_0 -29219,2,76.0,0.0,9,111,810.0,1363.0,0.0,0,75,0.0,0.0,1119.5611243365038,2173.0,0.0,2472.0089038550727,71,0,0,0,0,0,0,0,0,0,,2,2009.0,6,114955,2,1,0,0,1,,422.0,,11,0.0,1.0,4.0,1.0,1.0,3,3,3247.8787204572,810.0,35477.400138571335,0,5,0,1,110.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06125026049012807,35477.400138571335,9,5,9,9_0,9_2,9_0_0 -29220,2,65.0,0.0,1,111,675.0,2500.0,0.0,31,31,0.0,0.0,932.9676036137531,3175.0,0.0,4534.132252118622,71,0,0,0,0,0,0,0,0,1,10.0,1,,1,118758,2,1,1,0,1,,301.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,2169.05325103448,675.0,114471.6883629385,1,1,0,1,70.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027736115762820722,76314.45890862566,10,5,10,10_1,10_2,10_1_0 -29221,1,82.0,240.0,1,111,450.0,0.0,0.0,0,78,0.0,0.0,621.9784024091688,470.0,34.40654008380383,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,103572,2,2,0,0,1,,200.0,342.0,11,0.0,2.0,1.0,1.0,1.0,4,3,3775.37470247469,450.0,2139.0628890602356,0,5,2,3,34.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.2197223851639478,2139.0628890602356,1,1,1_1,1_0_1,1_2_1,1_1_0 -29222,1,72.0,16.0,9,111,460.0,0.0,0.0,0,75,0.0,0.0,635.800144684928,460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,119720,1,1,0,0,1,,0.0,417.0,11,0.0,1.0,2.0,1.0,1.0,3,3,3098.34917544766,460.0,12543.888472914616,0,5,2,3,45.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03667124440664908,12543.888472914616,2,1,2_1,2_0_1,2_2_1,2_0_0 -29223,2,56.0,0.0,2,111,413.0,980.0,0.0,43,37,0.0,0.0,570.8379559888593,1393.0,0.0,1777.3798428305,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,106259,2,2,0,0,2,,470.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,2744.56586876935,413.0,74355.7569572385,1,1,1,2,110.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01873425887925672,49570.504638159,10,5,10,10_0,10_2,10_0_1 -29224,1,67.0,35.0,1,111,850.0,0.0,0.0,0,77,0.0,0.0,1174.848093439541,895.0,77.41471518855863,0.0,70,2,2,2,2,2,1,2,2,0,,2,,1,111910,1,1,0,0,1,,150.0,390.0,11,0.0,2.0,2.0,1.0,1.0,2,2,3169.40793896863,850.0,12286.660275698985,0,5,2,3,50.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07284322834010186,12286.660275698985,2,1,2_1,2_0_1,2_2_1,2_1_0 -29225,2,53.0,0.0,2,111,0.0,0.0,1075.0,0,31,0.0,0.0,549.2318349503395,1075.0,0.0,1228.989207751579,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,109976,2,1,0,0,1,,0.0,,12,1.0,2.0,7.0,1.0,1.0,3,3,2972.471528852,0.0,58090.67198016522,0,1,1,2,110.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01850555284275337,58090.67198016522,10,5,10,10_0,10_2,10_0_1 -29226,2,35.0,0.0,1,111,1300.0,0.0,0.0,46,47,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,130825,2,1,2,0,2,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2112.95305335087,1300.0,53403.345516233814,1,1,1,2,120.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02434304419382901,25430.16453153991,7,4,7,7_1,7_2,7_1_0 -29227,1,23.0,305.0,1,111,0.0,0.0,0.0,68,67,0.0,0.0,0.0,538.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,108009,1,1,0,0,1,,173.0,350.0,43,2.0,0.0,2.0,2.0,1.5,4,2,2940.42582374484,0.0,8593.962750737173,4,1,2,3,35.0,4,4,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06260208655824712,5729.308500491449,1,1,1_1,1_0_1,1_2_1,1_1_0 -29228,2,26.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,986.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,130788,1,1,0,0,1,,153.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3190.41603790997,0.0,15134.123749033379,0,1,2,3,38.0,4,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06515078218935379,15134.123749033379,3,2,3_0,3_0_0,3_2_0,3_0_1 -29229,2,48.0,0.0,7,111,0.0,0.0,900.0,45,67,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,20,0,0,0,0,0,0,0,0,2,23.0,1,,5,130766,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,2028.95163215859,0.0,42994.001270051886,1,1,0,1,97.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020933152844904167,17197.600508020754,4,2,4_0,4_1_0,4_2_0,4_0_0 -29230,2,63.0,0.0,2,111,286.0,682.0,0.0,0,46,0.0,0.0,395.3018290867161,968.0,0.0,1236.9112783779601,71,2,2,2,2,1,2,2,2,2,30.0,1,,2,123080,2,3,4,0,1,,300.0,463.0,32,1.0,0.0,3.0,2.0,1.5,1,1,1977.92508071854,286.0,35293.28143383257,0,1,2,3,75.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.027427316494069702,23528.854289221712,6,3,6,6_1,6_2,6_0_1 -29231,1,47.0,33.0,7,111,860.0,810.0,0.0,56,52,0.0,0.0,1188.6698357153002,1670.0,0.0,1469.0588496864336,33,1,2,2,1,1,2,2,2,2,5.0,1,,5,115028,1,2,3,0,1,,350.0,439.0,43,3.0,0.0,4.0,5.0,3.0,2,2,1946.59381499386,860.0,45856.20370834222,1,1,2,3,83.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.036418191323068276,15285.401236114072,3,2,3_1,3_1_1,3_2_1,3_0_0 -29232,2,34.0,0.0,7,111,0.0,0.0,1120.0,62,56,0.0,0.0,572.2229350180281,1420.0,516.0981012570575,1280.4352676109472,60,2,2,2,2,1,2,2,2,2,25.0,2,,5,132964,1,3,0,0,1,,0.0,395.0,43,2.0,0.0,3.0,4.0,2.1,2,2,2321.07012077787,0.0,21582.098140704224,1,1,2,3,70.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.06579527118922023,10277.189590811535,2,1,2_0,2_0_0,2_2_0,2_0_0 -29233,2,78.0,0.0,5,111,900.0,0.0,0.0,77,78,0.0,414.0690019277831,1243.9568048183376,1390.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,127842,2,1,1,0,1,,180.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,2195.83240652952,900.0,37499.035185222194,5,5,0,1,120.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037067620357010625,24999.35679014813,7,4,7,7_1,7_2,7_0_0 -29234,2,62.0,0.0,7,111,300.0,0.0,0.0,77,74,0.0,414.0690019277831,414.65226827277917,790.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,127071,2,1,2,0,1,,220.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,2020.52389041474,300.0,45004.997138790146,5,5,1,2,120.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01755360627095992,30003.3314258601,8,4,8,8_1,8_2,8_0_0 -29235,1,45.0,80.0,1,111,500.0,570.0,0.0,0,53,0.0,0.0,691.0871137879653,1070.0,0.0,1033.782153483046,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,127198,2,2,0,0,1,,140.0,295.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2170.26811311751,500.0,22780.459465993077,0,1,2,3,40.0,7,6,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.046970079843969254,22780.459465993077,6,3,6,6_0,6_2,6_1_0 -29236,1,58.0,270.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,221.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,108359,2,2,0,1,1,272.0,0.0,385.0,11,0.0,0.0,1.0,1.0,1.0,2,2,2863.71757516816,0.0,12143.751653081568,0,7,3,4,18.0,7,6,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.018198659385785413,12143.751653081568,2,1,2_1,2_0_1,2_2_1,2_1_0 -29237,2,92.0,0.0,1,111,621.0,0.0,0.0,0,75,0.0,0.0,858.3301953246529,1027.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,103267,2,3,0,1,1,2000.0,0.0,646.0,21,1.0,2.0,6.0,3.0,2.0,2,2,2155.7053834573,621.0,49696.57264951209,0,5,2,3,120.0,7,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020665409006028968,24848.286324756045,7,4,7,7_0,7_2,7_1_0 -29238,2,46.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1060.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,1,103501,2,1,0,0,1,,169.0,407.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1932.60178201893,0.0,18122.497315556295,0,1,2,3,60.0,7,6,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05849083498498297,18122.497315556295,4,2,4_0,4_0_0,4_2_0,4_1_0 -29239,2,72.0,0.0,5,111,500.0,320.0,0.0,78,78,0.0,0.0,691.0871137879653,820.0,0.0,580.3689282711837,12,0,0,0,0,0,0,0,0,0,,2,,3,100504,2,1,0,1,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1874.31144661479,500.0,5918.951428436995,5,5,0,1,86.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1385380518685107,3945.967618957997,1,1,1_0,1_0_0,1_2_0,1_0_0 -29240,2,50.0,0.0,2,111,800.0,0.0,0.0,0,63,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,133085,1,2,0,0,1,,110.0,420.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2151.1243728523,800.0,17295.28097749571,0,1,2,3,65.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.046255391921122574,17295.28097749571,4,2,4_0,4_0_0,4_2_0,4_0_1 -29241,2,69.0,0.0,5,111,1800.0,0.0,0.0,75,74,0.0,0.0,2487.913609636675,1920.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128580,2,1,1,0,1,,360.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1155.93639788631,1800.0,87839.2362359876,5,5,0,1,120.0,7,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02185811355237375,58559.490823991735,10,5,10,10_1,10_2,10_0_0 -29242,2,72.0,0.0,2,111,0.0,0.0,1700.0,86,78,0.0,0.0,868.5526692237926,1700.0,0.0,1943.5178169094734,50,0,0,0,0,0,0,0,0,0,,1,,2,101936,2,1,2,0,1,,230.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1449.45649555163,0.0,19277.263814065747,6,5,0,1,100.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0881867891832028,12851.509209377165,2,1,2_0,2_1_0,2_2_0,2_0_1 -29243,1,47.0,377.0,2,111,180.0,520.0,0.0,0,85,0.0,0.0,248.7913609636675,700.0,0.0,943.0995084406734,50,0,0,0,0,0,0,0,0,0,,2,,2,122723,2,2,0,0,1,,600.0,526.0,31,0.0,2.0,4.0,2.0,1.5,1,1,1355.86094122781,180.0,6421.0906040268455,0,7,3,4,70.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10901574875162334,4280.72706935123,1,1,1_1,1_0_1,1_2_1,1_0_1 -29245,2,51.0,0.0,2,111,307.0,0.0,0.0,62,55,0.0,0.0,424.32748786581067,307.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,2,118828,2,1,0,1,1,585.0,200.0,420.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1735.01856404356,307.0,29524.774992639876,1,1,2,3,60.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010398047066456252,19683.183328426585,5,3,5,5_0,5_2,5_0_1 -29246,2,47.0,0.0,1,111,688.0,2071.0,0.0,56,37,0.0,51.75862524097289,950.9358685722402,2809.0,0.0,3756.0751576550665,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,125980,2,1,2,0,1,,900.0,,43,2.0,0.0,7.0,4.0,2.3,2,1,1266.83321603609,688.0,52735.625351332106,4,1,0,1,170.0,7,6,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053265700013720316,22928.532761448743,6,3,6,6_1,6_2,6_1_0 -29247,2,48.0,0.0,2,111,230.0,50.0,0.0,0,46,0.0,0.0,317.900072342464,280.0,0.0,90.68264504237244,31,2,1,2,2,2,2,2,1,2,5.0,2,,2,125588,1,3,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1807.752132245,230.0,21553.31414486404,0,1,1,2,65.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012991041568738117,21553.31414486404,6,3,6,6_0,6_2,6_0_1 -29248,2,27.0,0.0,2,111,270.0,0.0,0.0,46,43,0.0,0.0,373.1870414455012,288.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,10.0,2,,2,122679,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1702.5498822065,270.0,51124.59779375817,1,1,1,2,68.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005633296151528102,28402.55432986565,8,4,8,8_0,8_2,8_0_1 -29249,2,35.0,0.0,2,111,360.0,0.0,0.0,0,55,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,112873,2,1,0,0,1,,180.0,398.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2353.30463917734,360.0,15256.002726685883,0,1,2,3,40.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023597268986474816,15256.002726685883,3,2,3_0,3_0_0,3_2_0,3_0_1 -29250,2,47.0,0.0,2,111,2600.0,0.0,0.0,34,37,0.0,0.0,3593.6529916974196,2600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127916,2,2,5,0,1,,600.0,1030.0,43,2.0,0.0,4.0,4.0,2.3,1,1,1272.61326995455,2600.0,58876.25609647259,1,1,2,3,130.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04416041664979054,25598.37221585765,7,4,7,7_1,7_2,7_0_1 -29252,2,36.0,0.0,2,111,600.0,0.0,0.0,0,46,0.0,0.0,829.3045365455583,898.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125651,2,1,0,1,2,,0.0,,22,2.0,2.0,3.0,3.0,2.0,2,2,1664.76927607683,600.0,51946.228352865524,0,1,0,1,67.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017287106850183153,25973.114176432762,7,4,7,7_0,7_2,7_0_1 -29253,2,59.0,0.0,2,111,270.0,0.0,0.0,75,22,5227.547069563002,0.0,373.1870414455012,3850.0,137.62616033521533,0.0,50,1,2,2,2,1,2,2,2,2,10.0,1,,2,126972,2,2,2,0,1,,600.0,,42,1.0,3.0,6.0,3.0,2.0,2,2,1350.38538510286,270.0,213955.66863601582,6,1,0,1,180.0,7,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.017994381848090553,106977.83431800791,10,5,10,10_1,10_2,10_0_1 -29254,2,83.0,0.0,1,111,800.0,0.0,0.0,0,78,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,124134,1,3,0,0,2,,140.0,350.0,11,0.0,4.0,3.0,1.0,1.0,3,2,1928.12380601495,800.0,20665.15374736872,0,5,2,3,60.0,7,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03871251139865647,20665.15374736872,5,3,5,5_0,5_2,5_1_0 -29255,2,45.0,0.0,2,111,0.0,1100.0,0.0,0,65,0.0,0.0,0.0,1203.0,0.0,1995.0181909321939,33,0,0,0,0,0,0,0,0,0,,2,,2,120579,2,2,0,0,1,,0.0,,22,1.0,4.0,3.0,2.0,1.5,3,3,1650.10884397718,0.0,18034.104195730593,0,4,0,1,57.0,7,6,8,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06670694518249479,12022.736130487063,2,1,2_0,2_0_0,2_2_0,2_0_1 -29256,2,52.0,0.0,2,111,200.0,0.0,0.0,0,85,0.0,0.0,276.4348455151861,398.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,123906,1,2,0,1,2,1014.0,0.0,494.0,11,0.0,0.0,3.0,1.0,1.0,2,2,2065.62291627942,200.0,38437.04357345319,0,7,2,3,86.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010354594500469891,38437.04357345319,9,5,9,9_0,9_2,9_0_1 -29257,2,55.0,0.0,2,111,245.0,972.0,0.0,0,67,0.0,0.0,338.632685756103,1217.0,0.0,1762.8706196237204,31,2,2,2,1,1,2,2,2,2,15.0,2,,2,127509,1,3,0,0,1,,0.0,342.0,12,1.0,2.0,4.0,1.0,1.0,2,2,2016.83733178531,245.0,25917.0,0,1,2,3,70.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04695759540070224,25917.0,7,4,7,7_0,7_2,7_0_1 -29258,2,27.0,0.0,9,111,0.0,0.0,0.0,52,47,0.0,0.0,0.0,524.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,2008.0,6,120115,2,1,0,0,1,,0.0,620.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1824.58361392218,0.0,29310.62112045665,4,1,2,3,71.0,7,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017877478537440022,19540.414080304432,5,3,5,5_0,5_2,5_0_0 -29259,0,54.0,0.0,5,111,500.0,1800.0,0.0,0,62,0.0,0.0,691.0871137879653,2300.0,0.0,3264.575221525408,31,0,0,0,0,0,0,0,0,0,,1,,3,102627,2,1,2,0,1,,500.0,,22,2.0,1.0,6.0,3.0,2.0,2,2,1210.89622797239,500.0,69200.08224275312,0,1,0,1,103.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033236954718227435,34600.04112137656,9,5,9,9_1,9_2,9_0_0 -29260,2,68.0,0.0,8,111,500.0,820.0,0.0,0,77,0.0,0.0,691.0871137879653,1320.0,0.0,1487.1953786949082,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,128802,2,1,2,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1239.30688066772,500.0,19858.0,0,5,1,2,125.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0664719508510424,19858.0,5,3,5,5_1,5_2,5_0_0 -29261,2,60.0,0.0,2,111,500.0,0.0,0.0,0,72,4182.037655650402,0.0,691.0871137879653,3380.0,137.62616033521533,0.0,50,2,2,2,1,2,2,2,2,0,,1,,2,105159,1,2,2,0,2,,350.0,,11,0.0,3.0,7.0,1.0,1.0,3,2,1392.96550040222,500.0,18140.720250126116,0,6,0,1,185.0,7,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.18632115778184175,18140.720250126116,4,2,4_0,4_1_0,4_2_0,4_0_1 -29262,2,79.0,0.0,2,111,350.0,0.0,0.0,77,74,0.0,0.0,483.76097965157567,441.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120627,2,3,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,526.693660998239,350.0,57128.08246781664,5,5,0,1,88.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007719495928266791,38085.38831187776,9,5,9,9_0,9_2,9_0_1 -29263,1,31.0,35.0,2,111,280.0,0.0,0.0,85,65,1856.526002133375,0.0,387.00878372126056,1589.0,113.54158227655265,0.0,50,2,1,2,1,1,2,2,2,2,60.0,2,,2,108055,2,1,0,1,1,,0.0,,42,1.0,0.0,5.0,3.0,1.8,1,1,563.013714028019,280.0,25816.771164185306,6,1,1,2,104.0,7,6,8,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.061549137570091006,14342.650646769614,3,2,3_1,3_0_1,3_2_1,3_0_1 -29264,2,50.0,0.0,2,111,255.0,100.0,0.0,54,62,0.0,0.0,352.4544280318623,2597.0,0.0,181.36529008474488,20,2,1,2,2,1,2,2,2,1,5.0,2,,2,128764,2,3,0,1,1,910.0,0.0,300.0,43,2.0,0.0,3.0,4.0,2.3,2,2,406.719399529126,255.0,37636.341591427736,1,1,2,3,66.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.06900245587609151,16363.626778881626,4,2,4_0,4_0_0,4_2_0,4_0_1 -29265,2,42.0,0.0,5,111,557.0,880.0,0.0,46,38,0.0,0.0,769.8710447597933,1437.0,0.0,1596.014552745755,71,0,0,0,0,0,0,0,0,0,,1,,3,109136,2,1,3,0,1,,298.0,,43,2.0,0.0,5.0,4.0,2.3,4,4,334.024459379541,557.0,65587.72496080969,1,1,1,2,102.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021909587515936,28516.40215687378,8,4,8,8_1,8_2,8_0_0 -29266,2,56.0,0.0,1,111,1190.0,0.0,0.0,0,34,0.0,201.85863843979428,1644.7873308153573,1430.0,77.41471518855863,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,125630,2,1,1,0,1,,150.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,403.336038369295,1190.0,49544.26830603774,0,1,1,2,100.0,7,6,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028863076373775658,49544.26830603774,10,5,10,10_1,10_2,10_1_0 -29267,1,59.0,286.0,2,111,350.0,200.0,0.0,52,53,0.0,0.0,483.76097965157567,1104.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,0,,2,,2,120258,2,2,0,1,1,624.0,0.0,275.0,43,2.0,4.0,4.0,3.0,2.0,3,3,453.418203202471,350.0,14527.668988332542,1,1,2,3,67.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07599292087991846,7263.834494166271,1,1,1_1,1_0_1,1_2_1,1_0_1 -29268,2,70.0,0.0,2,111,0.0,0.0,480.0,77,77,0.0,0.0,245.23840072201202,480.0,0.0,548.7579718332631,20,0,0,0,0,0,0,0,0,0,,2,,2,128234,2,1,0,1,1,500.0,190.0,631.0,41,0.0,3.0,4.0,2.0,1.5,4,1,1505.64910923057,0.0,31944.49278117553,5,5,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015026064219835029,21296.328520783685,6,3,6,6_0,6_3,6_0_1 -29270,2,80.0,0.0,1,111,1100.0,0.0,0.0,0,72,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,8,,1,106866,2,1,0,0,1,,100.0,,11,0.0,1.0,2.0,1.0,1.0,4,4,1722.25200190981,1100.0,17908.934406369863,0,5,0,1,55.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.061421856546012656,17908.934406369863,4,2,4_0,4_0_0,4_3_0,4_1_0 -29271,0,58.0,0.0,1,111,0.0,0.0,1300.0,0,78,0.0,0.0,664.1873352887826,1300.0,0.0,1486.2195070484208,71,2,2,1,1,1,1,2,2,0,,2,,1,111095,1,1,0,0,1,,200.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,1684.52943753869,0.0,35795.40022062606,0,7,5,0,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.03631751543459242,23863.600147084042,6,3,6,6_0,6_3,6_1_0 -29272,2,63.0,0.0,2,111,100.0,1100.0,0.0,0,74,0.0,0.0,138.21742275759306,1200.0,0.0,1995.0181909321939,20,2,2,2,2,1,2,2,2,0,,2,,2,106478,1,2,0,0,2,,80.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,1664.39417259865,100.0,11951.497602650952,0,5,1,2,49.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.1004058269428786,11951.497602650952,2,1,2_0,2_0_0,2_3_0,2_0_1 -29273,2,29.0,0.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,815.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,119719,2,2,0,0,1,,111.0,405.0,12,1.0,0.0,1.0,1.0,1.0,3,3,2451.78661742372,0.0,36200.965913945096,0,4,2,3,23.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022513211441301657,36200.965913945096,9,5,9,9_0,9_3,9_0_1 -29274,1,24.0,287.0,2,111,1036.0,0.0,0.0,84,38,0.0,0.0,1431.932499768664,1071.0,60.21144514665671,0.0,60,2,2,1,2,1,1,2,2,2,60.0,2,,2,109779,2,2,0,0,1,,202.0,579.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1741.96717926033,1036.0,30654.532743814612,3,1,2,3,58.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.034937736906660355,20436.355162543074,5,3,5,5_0,5_3,5_0_1 -29275,2,51.0,0.0,7,111,35.0,0.0,0.0,0,46,0.0,0.0,48.37609796515757,35.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,5,125879,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,3,3,1470.96013465939,35.0,28683.170424970525,0,1,0,1,41.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0012202277322011193,28683.170424970525,8,4,8,8_0,8_3,8_0_0 -29276,1,43.0,210.0,9,111,0.0,0.0,700.0,0,63,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,50,2,2,2,2,1,2,2,2,0,,2,2006.0,6,129387,1,3,0,0,1,,0.0,408.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1743.79713489003,0.0,3299.672428727674,0,4,2,3,37.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,1,1,0.21214227021617238,3299.672428727674,1,1,1_1,1_0_1,1_3_1,1_0_0 -29278,2,48.0,0.0,1,111,2000.0,0.0,0.0,37,33,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,120.0,2,,1,117111,2,1,0,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,4,1,1959.18979350146,2000.0,107619.58942370745,1,1,0,1,195.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018583977236020018,59788.66079094858,10,5,10,10_0,10_3,10_1_0 -29281,2,78.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,336.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,110188,2,1,0,1,2,672.0,0.0,800.0,41,0.0,1.0,3.0,2.0,1.5,5,4,1781.80487144972,0.0,56568.26942091989,5,5,2,3,77.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005939725634875823,37712.179613946595,9,5,9,9_0,9_3,9_0_1 -29282,2,56.0,0.0,2,111,700.0,0.0,0.0,54,52,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,1,2,2,1,2,2,2,2,1,10.0,2,,2,114348,2,3,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1597.79288486573,700.0,55700.46881224158,4,1,0,1,83.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012567219180140138,24217.595135757212,7,4,7,7_0,7_3,7_0_1 -29284,2,79.0,0.0,1,111,900.0,50.0,0.0,74,74,0.0,51.75862524097289,1243.9568048183376,1000.0,0.0,90.68264504237244,43,0,0,0,0,0,0,0,0,0,,2,,1,132790,2,1,0,0,2,,160.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1739.40188114848,900.0,61617.23021935501,5,5,0,1,110.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016229226734795408,41078.153479570006,9,5,9,9_0,9_3,9_1_0 -29285,0,47.0,0.0,5,111,500.0,0.0,0.0,0,56,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,114760,1,2,0,1,2,780.0,300.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1897.17953809092,500.0,17430.607977866668,0,1,5,0,45.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028685172693625974,17430.607977866668,4,2,4_0,4_0_0,4_3_0,4_0_0 -29286,0,93.0,0.0,1,111,0.0,0.0,1160.0,0,77,0.0,0.0,592.6594684115291,1160.0,0.0,1326.1650985970525,70,0,0,0,0,0,0,0,0,0,,2,,1,115059,2,1,0,0,1,,103.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1661.10441482822,0.0,15296.778094219058,0,5,0,1,50.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07583296252682033,15296.778094219058,3,2,3_0,3_0_0,3_3_0,3_1_0 -29287,2,59.0,0.0,9,111,241.0,0.0,0.0,34,37,0.0,0.0,333.1039888457993,241.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,10.0,2,2008.0,6,122560,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1844.79599673902,241.0,145650.4849789815,1,1,1,2,130.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0016546460523957623,97100.32331932099,10,5,10,10_0,10_3,10_0_0 -29288,2,66.0,0.0,2,111,253.0,353.0,0.0,0,78,0.0,0.0,349.69007957671045,606.0,0.0,640.2194739991495,71,0,0,0,0,0,0,0,0,0,,2,,2,103027,2,3,0,0,1,,81.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1785.58679779502,253.0,22801.499388673194,0,5,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026577199581051883,22801.499388673194,6,3,6,6_0,6_3,6_0_1 -29290,2,43.0,0.0,2,111,400.0,600.0,0.0,45,33,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,114737,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1112.52887497321,400.0,75702.34312558429,1,1,1,2,120.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013209630755300109,36048.7348217068,9,5,9,9_1,9_3,9_0_1 -29291,2,66.0,0.0,1,111,700.0,1900.0,0.0,74,74,0.0,103.51725048194578,967.5219593031513,2700.0,0.0,3445.940511610153,71,0,0,0,0,0,0,0,0,0,,1,,1,112742,2,2,2,0,1,,300.0,,41,0.0,5.0,9.0,2.0,1.5,1,1,1252.18075525709,700.0,90529.58875422564,5,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02982450309511621,60353.05916948376,10,5,10,10_1,10_3,10_1_0 -29293,2,61.0,0.0,2,111,100.0,1400.0,0.0,0,21,0.0,0.0,138.21742275759306,1500.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,2,,2,115144,1,2,0,0,2,,60.0,,12,1.0,2.0,3.0,1.0,1.0,5,5,1509.59200643561,100.0,17664.38025376135,0,1,1,2,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08491665025613332,17664.38025376135,4,2,4_0,4_0_0,4_3_0,4_0_1 -29294,2,86.0,0.0,2,111,580.0,871.0,0.0,78,78,0.0,0.0,801.6610519940398,1451.0,0.0,1579.691676638128,10,2,2,2,2,1,2,2,2,0,,2,,2,117579,2,3,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1430.88886338456,580.0,31331.532241532048,5,5,0,1,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.046311172681066715,20887.688161021364,5,3,5,5_0,5_3,5_0_1 -29295,1,36.0,337.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,406.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113565,1,2,0,1,2,829.0,0.0,534.0,32,1.0,0.0,5.0,4.0,1.9,2,2,1709.54049499917,0.0,13131.451345817106,0,4,2,3,75.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030918136107577116,6911.290182009004,1,1,1_1,1_0_1,1_3_1,1_0_1 -29296,2,60.0,0.0,2,111,205.0,0.0,0.0,74,55,0.0,0.0,283.3457166530658,293.0,151.38877636873687,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,128952,2,1,0,1,1,,244.0,386.0,42,1.0,1.0,1.0,2.0,1.5,2,2,2281.38654801777,205.0,19773.916470545097,5,1,2,3,35.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014817499630710386,13182.610980363397,2,1,2_0,2_0_0,2_3_0,2_0_1 -29297,2,53.0,0.0,2,111,324.0,1050.0,0.0,0,63,0.0,0.0,447.8244497346015,1374.0,0.0,1904.3355458898213,70,1,2,2,1,1,2,2,2,2,30.0,2,,2,130406,1,1,0,0,1,,200.0,609.0,22,2.0,0.0,2.0,2.0,1.5,1,1,1784.05379984848,324.0,29953.823658055844,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.04587060455737422,19969.21577203723,5,3,5,5_0,5_3,5_0_1 -29298,2,88.0,0.0,1,111,193.0,719.0,0.0,0,77,0.0,0.0,266.7596259221546,912.0,0.0,1304.0164357093158,71,0,0,0,0,0,0,0,0,0,,2,,1,107548,2,2,0,0,1,,119.0,556.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2124.73900071393,193.0,21240.863331784592,0,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.042936107904582826,21240.863331784592,5,3,5,5_0,5_3,5_1_0 -29299,2,70.0,0.0,2,111,254.0,1608.0,0.0,0,75,0.0,0.0,351.07225380428633,1862.0,0.0,2916.3538645626977,71,0,0,0,0,0,0,0,0,0,,2,,2,123544,2,1,0,0,1,,383.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1777.47303703956,254.0,4983.1516352769895,0,5,0,1,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.37365910899006793,4983.1516352769895,1,1,1_0,1_0_0,1_3_0,1_0_1 -29300,2,43.0,0.0,1,111,480.0,250.0,0.0,0,46,0.0,0.0,663.4436292364467,730.0,0.0,453.4132252118622,41,2,2,2,1,1,2,2,2,1,20.0,2,,1,128502,2,2,0,0,1,,150.0,496.0,12,1.0,1.0,2.0,1.0,1.0,3,3,1721.0780248702,480.0,21848.50234449495,0,1,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.03341190112208923,21848.50234449495,6,3,6,6_0,6_3,6_1_0 -29301,2,41.0,0.0,1,111,450.0,1200.0,0.0,0,46,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,112926,2,3,0,0,1,,200.0,870.0,32,1.0,0.0,3.0,2.0,1.3,3,3,1746.00336794334,450.0,26889.1410036588,0,1,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.061363061013198036,20683.954618199074,5,3,5,5_0,5_3,5_1_0 -29302,2,40.0,0.0,6,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,516.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,103810,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,1759.09133888551,0.0,26423.124481736413,0,4,0,1,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01952834913057529,26423.124481736413,7,4,7,7_0,7_3,7_0_0 -29303,0,56.0,0.0,6,111,269.0,1019.0,0.0,0,46,0.0,0.0,371.80486721792533,1288.0,0.0,1848.1123059635504,71,0,0,0,0,0,0,0,0,0,,2,,4,132649,2,1,0,0,1,,116.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1708.02290646459,269.0,37329.06226167207,0,1,5,0,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03450394737942466,37329.06226167207,9,5,9,9_0,9_3,9_0_0 -29304,2,68.0,0.0,2,111,329.0,82.0,0.0,0,78,0.0,0.0,454.73532087248117,411.0,0.0,148.7195378694908,41,0,0,0,0,0,0,0,0,0,,2,,2,132608,2,2,0,1,1,,184.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1793.28548972539,329.0,12403.817145117944,0,5,0,1,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0331349612132719,12403.817145117944,2,1,2_0,2_0_0,2_3_0,2_0_1 -29306,2,42.0,0.0,2,111,1300.0,0.0,0.0,54,47,0.0,0.0,1796.8264958487098,1375.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,2,35.0,2,,2,122432,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1558.51613362287,1300.0,58412.578427662185,1,1,1,2,56.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02353945052610188,32451.432459812324,8,4,8,8_0,8_3,8_0_1 -29307,2,57.0,0.0,1,111,570.0,1103.0,0.0,0,52,0.0,0.0,787.8393097182804,1673.0,0.0,2000.4591496347361,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,103468,1,1,0,0,1,,320.0,409.0,22,2.0,0.0,3.0,2.0,1.5,1,1,1379.5231726606,570.0,46101.77429757137,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03628927574894082,30734.516198380912,8,4,8,8_0,8_3,8_1_0 -29308,2,32.0,0.0,2,111,511.0,200.0,0.0,52,64,0.0,0.0,706.2910302913006,711.0,0.0,362.73058016948977,60,0,0,0,0,0,0,0,0,0,,2,,2,131699,2,2,0,1,1,726.0,0.0,412.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1677.80241856274,511.0,23859.80103079733,1,4,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029799074983159667,13255.445017109629,3,2,3_0,3_0_0,3_3_0,3_0_1 -29309,2,88.0,0.0,2,111,1500.0,105.0,0.0,0,78,0.0,0.0,2073.261341363896,1605.0,0.0,190.43355458898213,71,0,0,0,0,0,0,0,0,0,,2,,2,126329,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,1823.84596229677,1500.0,19840.10006798445,0,5,0,1,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0808967693963376,19840.10006798445,5,3,5,5_0,5_3,5_0_1 -29310,2,25.0,0.0,2,111,0.0,0.0,0.0,46,47,0.0,0.0,0.0,393.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,121933,2,1,0,1,1,,394.0,,43,2.0,0.0,2.0,2.0,1.5,4,4,1453.54605011448,0.0,30733.429770056708,1,1,1,2,47.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012787378530166399,20488.953180037806,5,3,5,5_0,5_3,5_0_1 -29311,1,23.0,375.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,795.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100481,2,1,0,1,1,572.0,0.0,355.0,31,0.0,0.0,3.0,2.0,1.3,1,1,429.839461079837,0.0,9382.332864296453,0,6,2,3,70.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08473372363767805,7217.179126381887,1,1,1_1,1_0_1,1_3_1,1_0_1 -29312,2,52.0,0.0,7,111,340.0,0.0,0.0,0,46,0.0,414.0690019277831,469.9392373758164,740.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,126519,2,1,0,0,1,,200.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1514.5396694414,340.0,24031.06626256967,0,1,1,2,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03079347341123227,24031.06626256967,6,3,6,6_0,6_3,6_0_0 -29313,1,66.0,434.0,2,111,500.0,0.0,0.0,85,75,0.0,0.0,691.0871137879653,680.0,309.6588607542345,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,128919,2,1,0,0,1,960.0,0.0,582.0,41,0.0,0.0,5.0,4.0,2.1,4,2,1636.86665528704,500.0,16476.32992068457,6,5,2,3,86.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.04127132700507049,7845.8713908021755,1,1,1_1,1_0_1,1_3_1,1_0_1 -29314,1,50.0,251.0,2,111,230.0,0.0,0.0,0,56,0.0,0.0,317.900072342464,230.0,0.0,0.0,44,2,2,2,1,1,2,2,2,0,,2,,2,131465,1,3,0,1,2,585.0,0.0,361.0,12,1.0,0.0,2.0,1.0,1.0,2,1,464.838650229178,230.0,6070.23766616654,0,4,2,3,47.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.037889784988476234,6070.23766616654,1,1,1_1,1_0_1,1_3_1,1_0_1 -29315,2,89.0,0.0,2,111,220.0,0.0,0.0,77,78,0.0,0.0,304.0783300667047,400.0,309.6588607542345,0.0,50,2,1,2,1,1,2,2,2,0,,2,,2,125474,1,2,0,1,2,,0.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,449.842230202535,220.0,26068.485728358133,5,5,0,1,47.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015344197747737499,17378.99048557209,4,2,4_0,4_0_0,4_3_0,4_0_1 -29316,2,36.0,0.0,9,111,504.0,0.0,0.0,85,38,0.0,0.0,696.615810698269,504.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,108757,1,1,0,1,1,340.0,0.0,690.0,42,1.0,0.0,2.0,2.0,1.5,1,1,1610.0155275833,504.0,31357.099601419548,6,1,2,3,57.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016072915110337045,20904.733067613033,5,3,5,5_0,5_3,5_0_0 -29317,2,34.0,0.0,2,111,300.0,0.0,0.0,85,47,0.0,621.1035028916747,414.65226827277917,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,8,,2,103496,2,2,0,1,1,,150.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,458.192336328024,300.0,48818.70985893512,6,1,1,2,67.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018435554782185136,32545.806572623416,8,4,8,8_0,8_3,8_0_1 -29318,2,67.0,0.0,2,111,500.0,0.0,0.0,85,78,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,119802,1,1,0,1,1,1200.0,0.0,350.0,41,0.0,2.0,4.0,3.0,2.0,2,2,443.590602255423,500.0,13809.560442201448,6,5,2,3,73.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03620680050554112,6904.780221100724,1,1,1_0,1_0_0,1_3_0,1_0_1 -29319,2,51.0,0.0,5,300,300.0,0.0,0.0,43,42,0.0,414.0690019277831,414.65226827277917,760.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,1,15.0,1,,3,105259,2,2,3,0,1,,60.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1304.68559436723,300.0,42676.052575798836,1,1,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017808582428052132,28450.701717199223,8,4,8,8_1,8_0,8_0_0 -29320,2,44.0,0.0,1,400,600.0,0.0,0.0,0,69,0.0,0.0,829.3045365455583,635.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,1,126539,2,1,0,0,1,,60.0,236.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2204.33540048956,600.0,15054.864522879881,0,1,2,3,63.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.042179057741432886,15054.864522879881,3,2,3_0,3_0_0,3_0_0,3_1_0 -29321,2,51.0,0.0,8,400,308.0,0.0,0.0,0,52,0.0,0.0,425.7096620933866,3008.0,4644.882911313518,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,102439,2,1,2,0,1,,123.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1486.56549464863,308.0,25967.781365089297,0,1,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11583584895873741,25967.781365089297,7,4,7,7_1,7_0,7_0_0 -29322,2,83.0,0.0,1,400,400.0,0.0,0.0,78,75,3031.9773003465416,103.51725048194578,552.8696910303722,2626.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116179,2,1,2,0,1,,160.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1370.19324384682,400.0,42625.84480793887,5,5,0,1,111.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06160581712414341,28417.229871959247,8,4,8,8_1,8_0,8_1_0 -29323,2,74.0,0.0,1,400,900.0,0.0,0.0,0,86,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,117710,2,1,0,0,1,,300.0,,11,0.0,0.0,4.0,1.0,1.0,2,1,2165.86478438393,900.0,22798.011678160823,0,5,0,1,66.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03947712689620858,22798.011678160823,6,3,6,6_0,6_0,6_1_0 -29324,1,42.0,252.0,7,400,1702.0,0.0,0.0,21,55,0.0,0.0,2352.460535334234,1842.0,240.84578058662683,0.0,50,2,2,1,2,1,2,2,2,1,5.0,1,,5,101464,1,2,2,0,1,,258.0,560.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,4,3,1180.22721493666,1702.0,25277.622030102862,1,1,2,3,80.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.07287077865973235,9722.162319270334,1,1,1_1,1_1_1,1_0_1,1_0_0 -29325,2,42.0,0.0,8,400,1800.0,0.0,0.0,54,37,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,115966,2,1,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1226.12688382969,1800.0,57863.515470041224,1,1,1,2,161.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031107684788559867,25158.05020436575,7,4,7,7_1,7_0,7_0_0 -29326,0,83.0,0.0,1,400,639.0,0.0,0.0,77,77,0.0,248.44140115666985,883.2093314210197,2879.0,3440.6540083803834,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131083,1,1,2,0,1,,200.0,,41,0.0,4.0,8.0,2.0,1.5,1,1,1527.85006182108,639.0,38802.0,5,5,0,1,250.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07419720632957064,25868.0,7,4,7,7_1,7_0,7_1_0 -29327,2,40.0,0.0,2,400,720.0,0.0,0.0,52,68,1904.3207181979508,0.0,995.16544385467,2055.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,17.0,1,,2,127943,2,1,1,0,1,,276.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1443.999660932,720.0,31323.240937128554,1,1,1,2,81.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0656062380047058,17401.800520626974,4,2,4_0,4_1_0,4_0_0,4_0_1 -29328,2,29.0,0.0,1,400,700.0,0.0,0.0,52,21,1792.3018524216009,0.0,967.5219593031513,1930.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,1,1.0,1,,1,108052,2,1,2,0,1,,202.0,800.0,43,2.0,0.0,4.0,3.0,1.8,1,1,1610.72556377701,700.0,38417.91706256534,1,1,2,3,100.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05023697658717172,21343.287256980744,6,3,6,6_1,6_0,6_1_0 -29329,1,57.0,86.0,6,400,900.0,0.0,0.0,0,74,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,71,2,2,2,1,2,2,2,2,0,,2,,4,113495,1,3,0,0,1,,110.0,314.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1883.3255752763,900.0,29088.646465744823,0,5,2,3,80.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03300256686506568,29088.646465744823,8,4,8,8_0,8_0,8_0_0 -29330,0,55.0,0.0,9,400,0.0,0.0,0.0,0,45,0.0,0.0,0.0,367.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,2010.0,6,122039,2,1,1,0,1,,246.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,1796.45553588925,0.0,39715.0684389233,0,1,5,0,140.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00924082506780516,39715.0684389233,9,5,9,9_1,9_0,9_0_0 -29331,2,72.0,0.0,5,400,1800.0,0.0,0.0,77,75,1194.8679016144006,1035.1725048194578,2487.913609636675,3850.0,430.0817510475479,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,127737,2,1,2,0,1,,246.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1256.81471353053,1800.0,41993.70609734299,5,5,0,1,150.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09168040541779178,27995.80406489533,7,4,7,7_1,7_0,7_0_0 -29332,2,54.0,0.0,1,400,900.0,0.0,0.0,43,33,0.0,155.27587572291867,1243.9568048183376,1150.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,108804,2,1,1,0,1,,250.0,,43,2.0,5.0,5.0,2.0,1.5,1,1,1380.4767086446,900.0,28843.139951292036,1,1,1,2,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03987083243856345,19228.759967528025,5,3,5,5_1,5_0,5_1_0 -29333,2,32.0,0.0,1,112,240.0,0.0,0.0,43,42,0.0,621.1035028916747,331.72181461822333,990.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,,1,118623,2,1,2,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,1387.49280469889,240.0,42293.82230225974,1,1,1,2,130.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023407673889694874,20139.915382028445,5,3,5,5_1,5_0,5_1_0 -29334,1,71.0,176.0,1,112,310.0,0.0,0.0,0,72,0.0,0.0,428.47401054853844,910.0,1032.196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,130749,2,3,0,0,1,,100.0,305.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2224.45119190917,310.0,9488.505602517516,0,5,2,3,57.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09590551327266501,9488.505602517516,1,1,1_1,1_0_1,1_0_1,1_1_0 -29335,2,41.0,0.0,1,112,1700.0,0.0,0.0,55,55,0.0,0.0,2349.696186879082,1800.0,172.03270041901916,0.0,50,2,2,1,1,2,2,2,2,2,45.0,1,,1,101634,2,1,2,0,2,,380.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,1153.64106178104,1700.0,37667.75028424556,1,1,1,2,80.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.047786235875967496,14487.59626317137,3,2,3_0,3_1_0,3_0_0,3_1_0 -29336,1,22.0,120.0,2,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,745.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,6.0,2,,2,121424,2,1,0,0,1,,60.0,360.0,12,1.0,0.0,2.0,1.0,1.0,4,4,2759.61792283735,0.0,13903.806870036298,0,1,2,3,60.0,9,0,8,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05358244738033067,13903.806870036298,3,2,3_1,3_0_1,3_0_1,3_0_1 -29337,2,73.0,0.0,2,112,1160.0,0.0,0.0,86,75,1717.6226085707008,0.0,1603.3221039880796,2434.0,213.32054851958378,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122280,2,2,2,0,1,,379.0,,41,0.0,5.0,7.0,2.0,1.5,1,1,1537.92298176499,1160.0,49245.31624407726,5,5,0,1,150.0,9,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04942602029269611,32830.210829384836,8,4,8,8_1,8_0,8_0_1 -29338,2,45.0,0.0,9,112,1520.0,0.0,0.0,56,48,0.0,0.0,2100.904825915414,1520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,109242,2,1,1,0,1,,300.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,1429.0475191995,1520.0,42552.924345812,1,1,1,2,170.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03572022424704628,21276.462172906,6,3,6,6_1,6_0,6_0_0 -29339,2,34.0,0.0,9,112,360.0,0.0,0.0,0,48,0.0,0.0,497.582721927335,410.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,102283,2,1,2,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1768.14718583626,360.0,25166.405320694485,0,1,1,2,140.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016291559909942903,25166.405320694485,7,4,7,7_1,7_0,7_0_0 -29340,1,39.0,40.0,1,112,1300.0,0.0,0.0,54,22,0.0,2587.9312620486444,1796.8264958487098,3875.0,129.02452531426437,0.0,71,1,2,1,1,1,2,2,2,0,,1,,1,102841,2,2,1,0,1,,500.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,1,1,1551.3989503422,1300.0,47218.83376750373,1,1,1,2,200.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08206471212482162,16282.356471553014,4,2,4_1,4_1_1,4_0_1,4_1_0 -29341,2,37.0,0.0,1,112,989.0,0.0,0.0,45,43,0.0,362.31037668681023,1366.9703110725952,1339.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,123289,2,2,1,0,1,,333.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1313.01341857642,989.0,46951.15230238038,1,1,1,2,58.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028519001863392263,31300.76820158692,8,4,8,8_1,8_0,8_1_0 -29342,2,50.0,0.0,5,112,110.0,0.0,0.0,42,38,0.0,0.0,152.03916503335236,170.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,3,116071,2,1,2,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1491.58729956128,110.0,102838.92175534583,1,1,0,1,125.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016530706185779603,68559.28117023055,10,5,10,10_1,10_0,10_0_0 -29343,2,54.0,0.0,1,112,500.0,0.0,0.0,0,77,0.0,517.5862524097289,691.0871137879653,1045.0,77.41471518855863,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,110842,2,2,4,0,1,,220.0,,31,0.0,0.0,3.0,2.0,1.5,1,1,1540.42542864375,500.0,11121.81864023938,0,7,0,1,90.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.09395945337744763,7414.545760159587,1,1,1_0,1_1_0,1_0_0,1_1_0 -29344,2,59.0,0.0,7,112,485.0,0.0,0.0,11,34,0.0,0.0,670.3545003743263,585.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,121303,2,1,2,0,1,,124.0,,43,2.0,2.0,4.0,2.0,1.5,2,1,1513.53796777273,485.0,54868.15694802134,1,1,0,1,114.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010661921823876687,36578.77129868089,9,5,9,9_1,9_0,9_0_0 -29345,2,25.0,0.0,1,112,0.0,0.0,0.0,55,53,0.0,0.0,0.0,1141.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,110381,2,1,4,0,1,,0.0,550.0,43,2.0,0.0,5.0,2.0,1.5,2,1,1776.47696671474,0.0,27057.809399939546,4,1,2,3,100.0,9,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04216897174249994,18038.5395999597,4,2,4_0,4_1_0,4_0_0,4_1_0 -29346,2,79.0,0.0,1,112,190.0,0.0,0.0,0,77,2046.2112815146609,0.0,262.6131032394268,1695.0,232.24414556567586,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,122684,2,1,0,0,1,,113.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,2072.96711706942,190.0,13742.093504806606,0,5,0,1,45.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12334365207216322,13742.093504806606,3,2,3_0,3_0_0,3_0_0,3_1_0 -29347,1,42.0,142.0,2,112,644.0,0.0,0.0,0,46,0.0,0.0,890.1202025588993,674.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115797,2,1,1,0,1,,135.0,335.0,12,1.0,0.0,3.0,1.0,1.0,3,2,1391.95373592882,644.0,8926.637215684914,0,1,2,3,67.0,9,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07550435664795704,8926.637215684914,1,1,1_1,1_1_1,1_0_1,1_0_1 -29348,2,67.0,0.0,5,221,450.0,0.0,0.0,77,74,3360.5659732905015,155.27587572291867,621.9784024091688,2970.0,206.439240502823,0.0,71,2,2,2,1,2,2,2,2,0,,1,,3,113142,2,1,3,0,1,,125.0,740.0,41,0.0,4.0,6.0,2.0,1.5,2,2,1246.41667937368,450.0,41270.59786092037,5,5,2,3,220.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.071964065313731,27513.731907280246,7,4,7,7_1,7_1,7_0_0 -29349,2,46.0,0.0,5,221,780.0,0.0,0.0,63,53,2240.377315527001,70.39173032772312,1078.0958975092258,2404.0,96.33831223465073,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,3,106105,2,1,2,0,1,,383.0,,43,2.0,2.0,7.0,4.0,2.3,4,2,1076.28514761014,780.0,70319.15630916634,1,1,1,2,200.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03418698582546319,30573.546221376673,8,4,8,8_1,8_1,8_0_0 -29350,2,65.0,0.0,5,221,790.0,0.0,0.0,85,72,0.0,0.0,1091.917639784985,880.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,120608,2,3,2,0,2,,207.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1086.48007201923,790.0,36608.156947176525,7,5,0,1,75.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024038358480318735,24405.43796478435,7,4,7,7_1,7_1,7_0_0 -29351,2,42.0,0.0,1,400,600.0,0.0,0.0,12,42,1344.2263893162005,0.0,829.3045365455583,1560.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,131071,2,1,2,0,1,,210.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,1483.88396684188,600.0,40775.558806663554,1,1,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03825821265618227,20387.779403331777,5,3,5,5_1,5_0,5_1_0 -29352,2,77.0,0.0,1,400,500.0,0.0,0.0,72,72,5974.339508072003,0.0,691.0871137879653,4590.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,123466,1,1,4,0,1,,100.0,,41,0.0,2.0,7.0,2.0,1.5,2,1,1463.01912408591,500.0,44730.905458579036,5,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10261361698234243,29820.60363905269,8,4,8,8_1,8_0,8_1_0 -29353,2,72.0,0.0,7,400,1440.0,0.0,0.0,78,75,0.0,140.78346065544625,1990.33088770934,1671.0,163.4310653980682,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,125493,1,2,3,0,1,,504.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1354.6518114332,1440.0,23080.691813011435,5,5,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07239817651644202,15387.127875340957,3,2,3_0,3_1_0,3_0_0,3_0_0 -29354,2,34.0,0.0,9,111,540.0,900.0,0.0,54,47,0.0,0.0,746.3740828910024,1440.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,105003,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,582.061137689623,540.0,43334.0150220625,1,1,1,2,120.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03323024647651176,20635.24524860119,5,3,5,5_1,5_2,5_0_0 -29355,2,67.0,0.0,5,111,477.0,648.0,0.0,77,78,0.0,289.84830134944815,659.2971065537189,1405.0,0.0,1175.247079749147,71,0,0,0,0,0,0,0,0,0,,1,,3,106228,2,1,1,0,1,,333.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,588.168367702098,477.0,47290.9339133647,5,5,0,1,88.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02970971143377946,31527.289275576466,8,4,8,8_1,8_2,8_0_0 -29356,2,72.0,0.0,1,111,380.0,0.0,0.0,0,77,0.0,579.6966026988963,525.2262064788536,1590.0,1118.2125527236246,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131963,2,1,1,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,711.909631314286,380.0,23465.943395802944,0,5,0,1,90.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06775777019407551,23465.943395802944,6,3,6,6_1,6_2,6_1_0 -29357,2,74.0,0.0,5,111,640.0,0.0,0.0,75,74,4182.037655650402,0.0,884.5915056485956,3620.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110398,2,2,1,0,1,,280.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,640.42089068925,640.0,74777.4019656786,5,5,0,1,160.0,7,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04841034730868975,49851.601310452395,10,5,10,10_1,10_2,10_0_0 -29358,1,50.0,31.0,6,111,8626.8,0.0,0.0,0,85,2688.452778632401,0.0,11923.740626452036,10427.0,0.0,0.0,71,2,2,2,2,1,1,2,2,0,,1,,4,110135,1,1,1,0,1,,428.0,,31,1.0,1.0,4.0,3.0,2.0,2,2,693.273249815162,8626.8,41827.9509219672,0,7,1,2,125.0,7,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.24928306957833662,20913.9754609836,5,3,5,5_1,5_2,5_0_0 -29359,2,52.0,0.0,7,111,260.0,0.0,0.0,46,46,0.0,207.03450096389156,359.36529916974195,1960.0,2580.4905062852877,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,116257,2,1,2,0,1,,255.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,682.470232915817,260.0,96630.49126598466,1,1,0,1,120.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020283452710645057,48315.24563299233,10,5,10,10_1,10_2,10_0_0 -29360,2,73.0,0.0,2,111,540.0,0.0,0.0,0,75,1577.2256301310088,303.30554391210114,746.3740828910024,1919.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122542,2,2,1,0,1,,225.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,742.570209459827,540.0,32964.552828667336,0,5,0,1,104.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058214046159642076,32964.552828667336,8,4,8,8_1,8_2,8_0_1 -29361,0,73.0,0.0,2,111,472.0,0.0,0.0,0,74,3629.411251153742,0.0,652.3862354158392,2902.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109154,2,2,3,0,1,,228.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,659.741552525044,472.0,64128.894373670366,0,5,0,1,124.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04525261238858166,64128.894373670366,10,5,10,10_1,10_2,10_0_1 -29362,2,66.0,0.0,5,111,450.0,0.0,0.0,75,74,3435.2452171414016,0.0,621.9784024091688,2750.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,113735,2,2,3,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,640.901899278032,450.0,45828.89885990289,5,5,0,1,105.0,7,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06000580569056743,30552.599239935258,8,4,8,8_1,8_2,8_0_0 -29363,2,44.0,0.0,8,111,650.0,1607.0,0.0,43,62,0.0,0.0,898.4132479243549,2257.0,0.0,2914.54021166185,71,0,0,0,0,0,0,0,0,2,17.0,1,2003.0,6,108974,2,1,1,0,1,,633.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,700.33161862399,650.0,80797.72077700403,1,1,1,2,143.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027933956283608046,44887.62265389112,10,5,10,10_1,10_2,10_0_0 -29364,2,65.0,0.0,2,111,1195.0,1797.0,0.0,77,78,0.0,0.0,1651.698201953237,2992.0,0.0,3259.134262822866,71,0,0,0,0,0,0,0,0,0,,1,,2,101184,2,1,1,0,1,,350.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,604.22884083373,1195.0,82079.67886228696,5,5,0,1,200.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03645238433522588,54719.78590819131,10,5,10,10_1,10_2,10_0_1 -29365,2,66.0,0.0,9,111,521.0,0.0,0.0,0,75,694.5169678133703,103.51725048194578,720.1127725670598,1206.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,110801,2,1,1,0,1,,260.0,,21,1.0,2.0,3.0,2.0,1.5,2,2,648.606128420157,521.0,47370.328728160115,0,5,0,1,92.0,7,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025458974686892396,31580.219152106743,8,4,8,8_1,8_2,8_0_0 -29366,2,30.0,0.0,7,111,1800.0,0.0,0.0,85,22,0.0,0.0,2487.913609636675,2040.0,412.878481005646,0.0,71,2,2,2,2,1,2,1,2,0,,8,,5,108348,1,1,0,0,1,,1000.0,800.0,42,1.0,0.0,5.0,4.0,2.1,3,3,929.194976671468,1800.0,27867.39259039578,6,1,2,3,131.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.07320383467461775,13270.186947807513,3,2,3_0,3_0_0,3_2_0,3_0_0 -29367,2,61.0,0.0,6,111,1008.0,1060.0,0.0,75,72,0.0,289.84830134944815,1393.231621396538,2348.0,0.0,1922.472074898296,71,0,0,0,0,0,0,0,0,0,,1,,4,100518,2,1,2,0,1,,748.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,657.669894245353,1008.0,37334.199680831174,5,5,0,1,150.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06289139770165086,24889.46645388745,7,4,7,7_1,7_2,7_0_0 -29368,2,62.0,0.0,5,111,512.0,50.0,0.0,75,75,1792.3018524216009,0.0,707.6732045188764,1762.0,0.0,90.68264504237244,71,0,0,0,0,0,0,0,0,0,,1,,3,112183,2,1,3,0,1,,270.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,573.232914303187,512.0,70186.55790156788,5,5,0,1,100.0,7,5,8,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025104522186015894,46791.03860104526,10,5,10,10_1,10_2,10_0_0 -29369,2,69.0,0.0,5,111,0.0,0.0,2125.0,52,74,0.0,0.0,1085.6908365297409,2125.0,0.0,2429.397271136842,50,0,0,0,0,0,0,0,0,0,,1,,3,107230,2,1,2,0,1,,432.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,636.397146530736,0.0,53750.81989593698,5,5,0,1,92.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03953428066984014,35833.87993062465,9,5,9,9_1,9_2,9_0_0 -29370,2,34.0,0.0,7,111,800.0,0.0,0.0,42,46,0.0,517.5862524097289,1105.7393820607444,1600.0,516.0981012570575,0.0,33,0,0,0,0,0,0,0,0,2,25.0,1,,5,127731,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,4,3,656.632008656912,800.0,52588.59708680346,1,1,1,2,115.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030424846613782416,29215.887270446365,8,4,8,8_1,8_2,8_0_0 -29371,2,34.0,0.0,2,111,800.0,0.0,0.0,42,38,746.7924385090004,207.03450096389156,1105.7393820607444,1500.0,0.0,0.0,71,1,2,2,1,1,2,2,2,2,25.0,1,,2,130959,2,1,1,0,1,,700.0,,43,2.0,0.0,7.0,5.0,2.4,1,1,625.888263603697,800.0,81984.43994435151,1,1,1,2,140.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.018296154746170776,34160.183310146465,9,5,9,9_1,9_2,9_0_1 -29372,1,33.0,85.0,7,111,286.0,736.0,0.0,0,55,0.0,0.0,395.3018290867161,1022.0,0.0,1334.8485350237224,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,119091,2,2,2,0,1,,150.0,,32,1.0,0.0,3.0,2.0,1.3,3,2,599.072601516322,286.0,19720.1069244908,0,1,1,2,57.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05182527680571334,15169.313018839075,3,2,3_1,3_1_1,3_2_1,3_0_0 -29373,2,29.0,0.0,6,111,444.0,720.0,0.0,46,53,0.0,0.0,613.6853570437131,1164.0,0.0,1305.830088610163,71,1,2,2,1,1,2,2,2,2,30.0,1,,4,130869,1,1,2,0,1,,240.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,569.829511909089,444.0,43122.875804356605,1,1,1,2,67.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02699263391618246,28748.58386957107,8,4,8,8_1,8_2,8_0_0 -29374,2,54.0,0.0,9,111,300.0,730.0,0.0,0,43,0.0,0.0,414.65226827277917,1030.0,0.0,1323.9666176186377,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,109804,2,2,1,0,1,,187.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,635.405823783367,300.0,34655.83081854365,0,1,1,2,84.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029720828376414727,23103.88721236243,6,3,6,6_1,6_2,6_0_0 -29375,2,50.0,0.0,9,111,776.0,1022.0,0.0,56,46,0.0,0.0,1072.5672005989222,1798.0,0.0,1853.5532646660927,71,1,2,2,1,1,2,2,2,2,1.0,1,2005.0,6,118002,2,1,1,0,1,,409.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,548.885556973939,776.0,34194.18560042165,1,1,1,2,97.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05258203897617695,16282.94552401031,4,2,4_0,4_1_0,4_2_0,4_0_0 -29376,2,28.0,0.0,9,111,850.0,1300.0,0.0,38,38,0.0,0.0,1174.848093439541,2150.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,118116,2,1,1,0,1,,550.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,664.021401127075,850.0,75177.64563893441,1,1,1,2,140.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0285989270045259,41765.358688296896,9,5,9,9_1,9_2,9_0_0 -29377,0,79.0,0.0,1,111,1080.0,0.0,0.0,0,77,0.0,0.0,1492.748165782005,5130.0,6967.324366970276,0.0,71,2,2,1,1,1,2,2,2,0,,1,,1,109705,1,1,1,0,1,,1352.0,,11,0.0,1.0,7.0,1.0,1.0,2,2,734.473843087298,1080.0,27656.567959361695,0,5,0,1,200.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.185489392882659,27656.567959361695,7,4,7,7_1,7_2,7_1_0 -29378,2,54.0,0.0,2,111,1850.0,0.0,0.0,0,31,3883.3206802468017,155.27587572291867,2557.0223210154713,4600.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,15.0,1,,2,115603,2,2,5,0,1,,600.0,,32,1.0,2.0,6.0,2.0,1.5,3,2,641.85972865522,1850.0,204571.55203603028,0,1,0,1,160.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.022486019948608604,136381.03469068685,10,5,10,10_1,10_2,10_0_1 -29379,2,68.0,0.0,1,111,1595.0,0.0,0.0,77,78,0.0,207.03450096389156,2204.5678929836095,1840.0,77.41471518855863,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,122516,2,2,1,0,1,,334.0,650.0,41,0.0,3.0,4.0,2.0,1.5,1,1,695.609356061409,1595.0,25238.172595715623,5,5,2,3,65.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07290543691393704,16825.448397143748,4,2,4_0,4_1_0,4_2_0,4_1_0 -29380,2,54.0,0.0,1,111,235.0,0.0,0.0,0,38,1941.6603401234008,0.0,324.81094348034367,1595.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,1,108668,2,1,1,0,1,,250.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,689.667501133931,235.0,42324.22694093056,0,1,1,2,100.0,7,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03768527189465381,42324.22694093056,9,5,9,9_1,9_2,9_1_0 -29381,2,58.0,0.0,2,111,927.0,0.0,0.0,78,78,3435.2452171414016,0.0,1281.2755089628877,3437.0,361.26867087994026,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117738,2,2,1,0,1,,209.0,,41,1.0,0.0,5.0,3.0,2.0,2,2,704.122029933734,927.0,45681.6725524502,5,5,0,1,120.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07523805079714953,22840.8362762251,6,3,6,6_1,6_2,6_0_1 -29383,2,56.0,0.0,1,112,1000.0,0.0,0.0,52,11,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125346,2,1,1,0,1,,0.0,,43,4.0,1.0,5.0,6.0,3.0999999999999996,2,2,1443.58787863069,1000.0,52298.63297422543,1,1,0,1,150.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01912095867769306,16870.526765879174,4,2,4_0,4_1_0,4_0_0,4_1_0 -29384,2,65.0,0.0,2,112,600.0,0.0,0.0,0,78,2837.8112663342013,0.0,829.3045365455583,2640.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101840,2,1,2,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,1622.86294923817,600.0,58740.01228525936,0,5,0,1,138.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044943810824882996,58740.01228525936,10,5,10,10_1,10_0,10_0_1 -29385,2,70.0,0.0,1,212,700.0,0.0,0.0,74,74,3733.962192545002,0.0,967.5219593031513,3200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,132050,1,1,3,0,2,,0.0,,41,0.0,2.0,8.0,2.0,1.5,1,1,1430.56273697076,700.0,61080.78505357501,5,5,0,1,220.0,3,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05238963443566131,40720.52336905001,9,5,9,9_1,9_0,9_1_0 -29386,2,93.0,0.0,2,212,550.0,0.0,0.0,90,72,3435.2452171414016,0.0,760.1958251667618,2970.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108654,2,1,2,0,1,,0.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1290.86631495525,550.0,20838.038939870235,5,5,0,1,92.0,3,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14252780737046147,13892.02595991349,3,2,3_0,3_1_0,3_0_0,3_0_1 -29387,2,33.0,0.0,9,212,1200.0,0.0,0.0,52,52,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,123909,2,1,1,0,1,,275.0,,43,2.0,0.0,6.0,4.0,2.1,5,5,1203.97726243514,1200.0,46427.571280046344,1,1,1,2,110.0,3,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02584671062722026,22108.367276212542,6,3,6,6_1,6_0,6_0_0 -29388,2,82.0,0.0,1,212,500.0,0.0,0.0,78,71,0.0,0.0,691.0871137879653,500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,5,,1,109202,2,1,2,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,3,2,1558.46531964903,500.0,20173.266903762942,5,5,0,1,200.0,3,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02478527659328864,13448.844602508629,3,2,3_0,3_1_0,3_0_0,3_1_0 -29389,2,51.0,0.0,7,212,0.0,0.0,0.0,0,55,2987.1697540360015,0.0,0.0,3556.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,106126,2,1,1,0,1,,328.0,,12,1.0,2.0,5.0,1.0,1.0,3,2,1519.41606195901,0.0,34825.27980216391,0,1,0,1,220.0,3,0,8,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10210973236111785,34825.27980216391,9,5,9,9_1,9_0,9_0_0 -29390,2,66.0,0.0,5,400,500.0,0.0,0.0,86,86,0.0,362.31037668681023,691.0871137879653,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127155,2,1,3,0,1,,214.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1299.44923911399,500.0,22288.587523480404,6,5,0,1,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038136108854118674,14859.058348986937,3,2,3_0,3_1_0,3_0_0,3_0_0 -29391,2,42.0,0.0,1,400,600.0,0.0,0.0,72,42,1493.5848770180007,0.0,829.3045365455583,1667.0,115.26190928074284,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,132138,1,1,4,0,1,,200.0,,42,1.0,3.0,10.0,2.0,1.5,3,2,1369.8599716639,600.0,49082.64047261875,5,1,1,2,200.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03396312798065444,32721.760315079166,8,4,8,8_1,8_0,8_1_0 -29392,2,48.0,0.0,2,400,1200.0,0.0,0.0,56,21,3435.2452171414016,51.75862524097289,1658.6090730911167,3595.0,77.41471518855863,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,2,111948,2,2,4,0,1,,150.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,1569.82798903521,1200.0,46760.09279888248,1,1,0,1,130.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07688179780699488,23380.04639944124,6,3,6,6_1,6_0,6_0_1 -29393,1,44.0,500.0,1,400,600.0,0.0,0.0,0,52,0.0,828.1380038555662,829.3045365455583,1520.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,106333,2,1,1,0,1,,180.0,850.0,32,1.0,0.0,7.0,5.0,2.5999999999999996,3,3,1483.91423031039,600.0,16923.375392016133,0,1,2,3,264.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08981659774072516,6508.990535390821,1,1,1_1,1_1_1,1_0_1,1_1_0 -29394,2,51.0,0.0,1,400,900.0,0.0,0.0,85,12,3733.962192545002,124.22070057833493,1243.9568048183376,3700.0,309.6588607542345,0.0,71,2,2,2,1,1,2,2,2,2,5.0,2,,1,121249,2,1,0,1,1,,600.0,,42,1.0,3.0,5.0,2.0,1.5,3,2,2030.08310224083,900.0,9816.968282051319,6,1,0,1,130.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.3768984368386755,6544.645521367546,1,1,1_0,1_0_0,1_0_0,1_1_0 -29395,2,79.0,0.0,1,400,600.0,0.0,0.0,0,86,0.0,0.0,829.3045365455583,1594.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104053,2,1,2,0,2,,132.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1421.13702377237,600.0,10317.24366190967,0,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1544986289201353,10317.24366190967,2,1,2_0,2_1_0,2_0_0,2_1_0 -29396,2,57.0,0.0,1,300,1260.0,0.0,0.0,0,43,0.0,165.62760077111324,1741.5395267456724,1420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124117,2,2,1,0,1,,200.0,,12,1.0,2.0,7.0,1.0,1.0,3,2,1578.33830366041,1260.0,56644.532382356694,0,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02506861545638416,56644.532382356694,10,5,10,10_1,10_0,10_1_0 -29397,2,36.0,0.0,1,300,400.0,0.0,0.0,0,31,0.0,621.1035028916747,552.8696910303722,1112.0,192.67662446930146,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106275,1,1,1,0,1,,108.0,,32,1.0,0.0,6.0,3.0,1.6,3,2,1598.19567028972,400.0,23751.0,0,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04681908130183992,14844.375,3,2,3_0,3_1_0,3_0_0,3_1_0 -29398,2,60.0,0.0,5,300,500.0,0.0,0.0,77,75,3285.8867294396014,56.93448776507018,691.0871137879653,2785.0,51.60981012570575,0.0,71,2,2,2,2,1,2,2,2,0,,1,,3,126056,2,1,1,0,1,,160.0,,41,1.0,2.0,6.0,3.0,2.0,2,1,1416.80385470807,500.0,58663.170292488605,5,5,0,1,150.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04747442025574603,29331.585146244302,8,4,8,8_1,8_0,8_0_0 -29399,2,57.0,0.0,7,212,920.0,0.0,0.0,0,38,0.0,0.0,1271.600289369856,962.0,72.25373417598806,0.0,31,2,2,1,2,1,2,2,2,2,1.0,1,,5,124450,2,1,2,0,1,,96.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1298.57982097106,920.0,33818.70580150422,0,1,0,1,49.0,3,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0284457958162672,33818.70580150422,9,5,9,9_1,9_0,9_0_0 -29400,2,53.0,0.0,1,212,3000.0,0.0,0.0,55,53,0.0,0.0,4146.522682727792,3120.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,1,115983,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1362.89830949146,3000.0,67850.97529003964,1,1,0,1,200.0,3,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045983126796086134,29500.424039147674,8,4,8,8_1,8_0,8_1_0 -29402,2,60.0,0.0,7,212,380.0,0.0,0.0,0,34,2539.0942909306013,227.73795106028072,525.2262064788536,2300.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,12.0,1,,5,110462,2,1,2,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1406.34361388122,380.0,93171.5187898698,0,1,0,1,170.0,3,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.024685655336232112,93171.5187898698,10,5,10,10_1,10_0,10_0_0 -29403,1,55.0,238.0,5,212,400.0,0.0,0.0,47,42,1493.5848770180007,0.0,552.8696910303722,1520.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,120779,2,2,5,0,2,,200.0,710.0,43,2.0,3.0,2.0,2.0,1.5,3,3,1426.85494686298,400.0,11985.406467875031,1,1,2,3,72.0,3,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12682089706962524,7990.270978583354,1,1,1_1,1_1_1,1_0_1,1_0_0 -29404,2,59.0,0.0,5,212,447.0,0.0,0.0,0,55,746.7924385090004,517.5862524097289,617.831879726441,1567.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,3,109223,2,1,1,0,1,,125.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1460.34615561471,447.0,25358.12206387454,0,1,0,1,90.0,3,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06179479679342523,25358.12206387454,7,4,7,7_1,7_0,7_0_0 -29405,1,47.0,80.0,8,211,1400.0,0.0,0.0,56,46,0.0,569.3448776507017,1935.0439186063027,1950.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,1.0,1,2000.0,6,103629,2,2,4,0,1,,400.0,847.0,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,1026.78124246753,1400.0,38083.10865312044,1,1,2,3,100.0,3,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.051203803181130846,14647.349481969402,3,2,3_1,3_1_1,3_2_1,3_0_0 -29406,2,62.0,0.0,5,211,0.0,0.0,0.0,86,74,0.0,0.0,0.0,1546.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125203,2,1,3,0,1,,297.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1051.86384729786,0.0,56243.73134335817,5,5,0,1,103.0,3,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027487507728851408,37495.82089557211,9,5,9,9_1,9_2,9_0_0 -29407,2,58.0,0.0,1,211,1200.0,0.0,0.0,0,63,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,113306,2,1,2,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,4,3,1107.15072746051,1200.0,21212.956049591623,0,1,0,1,110.0,3,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05656920219863,21212.956049591623,5,3,5,5_1,5_2,5_1_0 -29408,2,40.0,0.0,8,211,1800.0,0.0,0.0,21,38,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,126173,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,4.0,2.1,2,1,1008.96472011483,1800.0,70340.40429560049,1,1,1,2,156.0,3,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02558984438638751,33495.43061695261,8,4,8,8_1,8_2,8_0_0 -29409,2,82.0,0.0,2,211,1200.0,0.0,0.0,86,78,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,114658,2,2,3,0,1,,216.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1085.72770717172,1200.0,19459.576581748326,5,5,0,1,80.0,3,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0647496102860629,12973.051054498885,2,1,2_0,2_1_0,2_2_0,2_0_1 -29410,2,82.0,0.0,1,112,360.0,0.0,0.0,77,78,0.0,1759.7932581930781,497.582721927335,5560.0,6021.144514665671,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,122246,1,2,3,0,1,,423.0,,41,1.0,2.0,4.0,3.0,2.0,2,2,875.005089556291,360.0,32761.760449411784,5,5,0,1,74.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.1697100498791977,16380.880224705892,4,2,4_0,4_1_0,4_0_0,4_1_0 -29411,2,85.0,0.0,7,112,612.0,0.0,0.0,72,72,0.0,0.0,845.8906272764696,707.0,163.4310653980682,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,132190,2,1,2,0,1,,1114.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,794.787108477748,612.0,20678.048532553436,5,5,0,1,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03419084730780907,13785.365688368956,3,2,3_0,3_1_0,3_0_0,3_0_0 -29412,2,77.0,0.0,1,112,250.0,0.0,0.0,0,71,0.0,0.0,345.54355689398267,310.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103930,2,1,2,0,2,,140.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1054.44509527951,250.0,9916.229398126434,0,5,0,1,68.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031261882672719454,9916.229398126434,2,1,2_0,2_1_0,2_0_0,2_1_0 -29413,2,38.0,0.0,9,112,1300.0,0.0,0.0,52,42,0.0,590.048327747091,1796.8264958487098,1915.0,77.41471518855863,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2005.0,6,126575,2,2,1,0,1,,100.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,814.020256017526,1300.0,57503.41648519649,1,1,1,2,121.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03330236909476487,27382.579278664994,7,4,7,7_1,7_0,7_0_0 -29414,2,53.0,0.0,1,112,1800.0,0.0,0.0,22,45,0.0,0.0,2487.913609636675,1920.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,1,125307,2,1,0,0,1,,230.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1536.10951613593,1800.0,28596.44255952505,1,1,0,1,80.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06714121856253327,19064.295039683366,5,3,5,5_0,5_0,5_1_0 -29415,1,44.0,67.0,9,112,1100.0,0.0,0.0,56,62,0.0,683.2138531808421,1520.3916503335236,1835.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,112228,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,755.342441784885,1100.0,48592.21233162368,1,1,1,2,110.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03776325283312501,18689.31243523988,5,3,5,5_1,5_0,5_0_0 -29416,0,50.0,0.0,1,112,150.0,0.0,0.0,55,47,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,110876,2,2,3,0,2,,283.0,,43,2.0,0.0,2.0,2.0,1.5,3,3,907.519203019973,150.0,58348.878833341616,1,1,5,0,35.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.002570743482979955,38899.25255556108,9,5,9,9_1,9_0,9_1_0 -29417,2,52.0,0.0,7,112,600.0,0.0,0.0,56,47,2688.452778632401,0.0,829.3045365455583,2500.0,172.03270041901916,0.0,60,0,0,0,0,0,0,0,0,2,13.0,1,,5,120564,2,1,2,0,1,,350.0,,43,3.0,2.0,5.0,3.0,2.0,1,1,946.606223817681,600.0,53429.18352949165,1,1,0,1,120.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046790907793304734,26714.591764745826,7,4,7,7_1,7_0,7_0_0 -29418,2,57.0,0.0,7,112,330.0,1200.0,0.0,62,52,0.0,0.0,456.1174951000571,1530.0,0.0,2176.3834810169387,71,2,2,2,2,1,1,1,2,2,10.0,1,,5,117569,2,3,3,0,2,,0.0,476.0,43,2.0,1.0,4.0,2.0,1.5,1,1,831.512510656562,330.0,30451.38003760224,1,1,2,3,82.0,9,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.05024402828741134,20300.92002506816,5,3,5,5_1,5_0,5_0_0 -29419,1,33.0,181.0,7,112,700.0,2000.0,0.0,85,63,0.0,0.0,967.5219593031513,2700.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,2,,5,103871,1,2,0,0,2,,0.0,513.0,42,1.0,0.0,4.0,4.0,2.1,3,3,1004.82400358388,700.0,30938.379146004583,6,1,2,3,91.0,9,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.087270247328024,14732.56149809742,3,2,3_1,3_0_1,3_0_1,3_0_0 -29420,2,54.0,0.0,1,112,2600.0,0.0,0.0,34,31,2987.1697540360015,372.6621017350048,3593.6529916974196,5060.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,133670,2,1,2,0,1,,506.0,,43,2.0,2.0,10.0,3.0,2.0,2,2,992.187612257026,2600.0,140881.4745086095,1,1,0,1,300.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035916716641766655,70440.73725430475,10,5,10,10_1,10_0,10_1_0 -29421,2,81.0,0.0,1,112,550.0,0.0,0.0,0,78,2987.1697540360015,0.0,760.1958251667618,2615.0,111.82125527236246,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126269,2,1,2,0,1,,380.0,,21,0.0,1.0,4.0,2.0,1.5,2,2,730.427164024921,550.0,27333.518607731177,0,5,0,1,80.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09567008322376606,18222.345738487453,4,2,4_0,4_1_0,4_0_0,4_1_0 -29422,2,23.0,0.0,2,112,0.0,0.0,0.0,63,56,0.0,0.0,0.0,913.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,105215,2,2,5,0,1,,277.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,841.913756098356,0.0,8587.006975829796,1,1,2,3,71.0,9,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10632342591194567,5724.671317219864,1,1,1_0,1_1_0,1_0_0,1_0_1 -29423,2,59.0,0.0,1,112,770.0,0.0,0.0,0,38,0.0,0.0,1064.2741552334664,770.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,120644,2,1,1,0,1,,292.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,882.214230967034,770.0,39603.61371299427,0,1,1,2,65.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019442670196213853,39603.61371299427,9,5,9,9_1,9_0,9_1_0 -29424,2,82.0,0.0,5,112,480.0,0.0,0.0,86,75,3584.6037048432017,310.55175144583734,663.4436292364467,3280.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,106064,2,1,2,0,1,,499.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,824.897797744654,480.0,28914.679212074134,6,5,0,1,85.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11343719139828272,19276.452808049424,5,3,5,5_1,5_0,5_0_0 -29425,2,52.0,0.0,5,112,903.0,0.0,0.0,63,85,3285.8867294396014,0.0,1248.1033275010652,3203.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,101007,2,1,2,0,1,,465.0,,42,1.0,0.0,5.0,5.0,2.8,1,1,757.591482145259,903.0,76699.40316459101,4,7,1,2,85.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04176042925818613,27392.643987353935,7,4,7,7_1,7_0,7_0_0 -29426,2,47.0,0.0,9,112,570.0,0.0,0.0,0,46,0.0,639.2190217260152,787.8393097182804,1188.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,102775,2,1,1,0,1,,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,922.603282902305,570.0,28926.431333843848,0,1,1,2,100.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04106970494524996,28926.431333843848,8,4,8,8_1,8_0,8_0_0 -29427,2,53.0,0.0,8,112,1500.0,0.0,0.0,52,48,746.7924385090004,0.0,2073.261341363896,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,127388,2,1,2,0,1,,320.0,,43,2.0,2.0,6.0,2.0,1.5,3,2,775.146633837486,1500.0,71643.04957085055,1,1,0,1,118.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027916176265251294,47762.0330472337,10,5,10,10_1,10_0,10_0_0 -29428,2,63.0,0.0,1,112,1500.0,0.0,0.0,52,78,0.0,936.8311168616093,2073.261341363896,2495.0,154.82943037711726,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,127226,2,2,3,0,1,,250.0,,42,2.0,0.0,7.0,3.0,2.0,1,1,1021.81549494648,1500.0,70040.43484464807,1,5,0,1,160.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03562228026616325,35020.217422324036,9,5,9,9_1,9_0,9_1_0 -29429,2,42.0,0.0,9,112,1740.0,0.0,0.0,54,38,0.0,0.0,2404.983155982119,1775.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,120973,1,2,1,0,1,,290.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,826.90762813199,1740.0,82697.17421846886,1,1,1,2,140.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02146385310954902,35955.29313846472,9,5,9,9_1,9_0,9_0_0 -29430,2,42.0,0.0,1,112,3200.0,0.0,0.0,11,22,0.0,0.0,4422.957528242978,3200.0,0.0,0.0,71,2,2,1,1,1,2,2,2,0,,1,,1,113355,2,2,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,813.401034440569,3200.0,39285.17647470042,1,1,1,2,105.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08145566056094451,18707.226892714483,5,3,5,5_1,5_0,5_1_0 -29431,2,58.0,0.0,5,112,400.0,0.0,0.0,0,75,0.0,0.0,552.8696910303722,520.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,116888,2,1,1,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,849.086884054868,400.0,26657.59320792278,0,7,0,1,110.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019506637225053507,26657.59320792278,7,4,7,7_1,7_0,7_0_0 -29432,2,50.0,0.0,1,112,600.0,0.0,0.0,85,38,5227.547069563002,0.0,829.3045365455583,4250.0,258.04905062852873,0.0,71,2,2,1,2,1,1,2,2,2,40.0,1,,1,132459,2,3,2,0,1,,360.0,,42,1.0,0.0,5.0,8.0,3.6999999999999993,4,4,818.548749034303,600.0,43869.30960416891,6,1,0,1,110.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.09687866160529049,11856.570163288898,2,1,2_0,2_1_0,2_0_0,2_1_0 -29433,2,62.0,0.0,9,112,800.0,0.0,0.0,77,74,0.0,0.0,1105.7393820607444,875.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,101915,2,1,1,0,1,,200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,854.384244373528,800.0,38916.49072062034,6,5,0,1,102.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022484041695372377,25944.32714708023,7,4,7,7_1,7_0,7_0_0 -29434,2,44.0,0.0,1,112,1420.0,0.0,0.0,47,47,0.0,967.886292006193,1962.6874031578213,2390.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,126493,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,836.697214312746,1420.0,67149.01473039629,1,1,1,2,190.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03559248053893069,25826.5441270755,7,4,7,7_1,7_0,7_1_0 -29435,2,79.0,0.0,1,112,308.0,0.0,0.0,0,78,0.0,0.0,425.7096620933866,358.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,116878,2,1,1,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,843.872358197242,308.0,21657.54343935363,0,5,0,1,100.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016530037259418952,21657.54343935363,6,3,6,6_1,6_0,6_1_0 -29436,0,71.0,0.0,5,112,958.0,0.0,0.0,56,75,0.0,0.0,1324.1229100177416,1083.0,215.04087552377396,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,121315,2,1,2,0,1,,0.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,860.543228825381,958.0,38970.76279771525,4,5,0,1,90.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027790064198165845,25980.508531810166,7,4,7,7_1,7_0,7_0_0 -29437,2,39.0,0.0,1,300,1148.0,0.0,0.0,52,21,2728.7795703118873,207.03450096389156,1586.7360132571682,3175.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,114666,2,1,1,0,1,,160.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1306.87739935306,1148.0,48599.62315641502,1,1,1,2,238.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06532972467258541,23142.67769353096,6,3,6,6_1,6_0,6_1_0 -29438,2,30.0,0.0,1,300,630.0,0.0,0.0,54,47,2240.377315527001,0.0,870.7697633728362,2190.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,122437,2,2,1,0,1,,168.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1485.66119766084,630.0,44931.95382958343,1,1,1,2,150.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04874036878757079,24962.196571990793,7,4,7,7_1,7_0,7_1_0 -29439,2,77.0,0.0,1,300,420.0,0.0,0.0,71,71,2987.1697540360015,0.0,580.5131755818909,2520.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109313,2,1,2,0,2,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1363.70039251888,420.0,20242.947252164337,5,5,0,1,150.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12448780153446116,13495.298168109557,3,2,3_0,3_1_0,3_0_0,3_1_0 -29440,2,58.0,0.0,6,300,581.0,0.0,0.0,67,62,0.0,207.03450096389156,803.0432262216157,921.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,117871,2,1,2,0,1,,280.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1180.99093860183,581.0,50609.64528414187,1,1,0,1,107.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018198112135130652,33739.76352276125,9,5,9,9_1,9_0,9_0_0 -29441,2,61.0,0.0,1,300,2490.0,0.0,0.0,37,22,0.0,258.79312620486445,3441.613826664067,4552.0,3117.2325315926273,0.0,71,0,0,0,0,0,0,0,0,2,6.0,1,,1,114308,2,1,2,0,1,,180.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1216.25670946406,2490.0,176361.19884539637,1,1,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025810666007041735,117574.13256359758,10,5,10,10_1,10_0,10_1_0 -29442,2,79.0,0.0,2,300,225.0,0.0,0.0,78,75,2150.762222905921,0.0,310.9892012045844,1770.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108244,2,1,2,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,1,1172.65592330214,225.0,26195.288052026488,5,5,0,1,95.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06756940395099306,17463.525368017657,4,2,4_0,4_1_0,4_0_0,4_0_1 -29443,2,44.0,0.0,8,300,630.0,0.0,0.0,46,47,2315.056559377901,0.0,870.7697633728362,2255.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,123755,2,2,1,0,1,,680.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1106.69006514922,630.0,53546.57057212458,1,1,1,2,107.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042112874380304643,23281.11764005417,6,3,6,6_1,6_0,6_0_0 -29444,2,78.0,0.0,5,300,220.0,0.0,0.0,78,74,1863.9939265184648,0.0,304.0783300667047,1573.0,180.63433543997013,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,132472,2,1,2,0,1,,358.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1151.00184687808,220.0,40477.5369856531,5,5,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03886106016177653,26985.02465710207,7,4,7,7_1,7_0,7_0_0 -29445,2,56.0,0.0,6,300,864.0,0.0,0.0,54,48,0.0,0.0,1194.198532625604,2974.0,110.10092826817227,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,4,118113,2,2,2,0,1,,228.0,,43,2.0,2.0,4.0,2.0,1.5,4,3,1174.4089995608,864.0,49938.402311316146,1,1,0,1,101.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05955336699520492,33292.2682075441,8,4,8,8_1,8_0,8_0_0 -29446,2,63.0,0.0,6,300,1324.0,0.0,0.0,46,75,0.0,0.0,1829.998677310532,1324.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,122869,2,1,2,0,1,,307.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1227.86688807028,1324.0,33895.364162034835,1,5,0,1,93.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039061388857505534,22596.909441356558,6,3,6,6_1,6_0,6_0_0 -29447,2,64.0,0.0,2,300,800.0,0.0,0.0,77,75,746.7924385090004,207.03450096389156,1105.7393820607444,1640.0,240.84578058662683,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,120540,2,1,1,0,1,,430.0,,41,1.0,2.0,7.0,3.0,2.0,2,2,1375.08843758731,800.0,84408.50292994938,6,5,0,1,250.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019429322201828837,42204.25146497469,9,5,9,9_1,9_0,9_0_1 -29448,0,37.0,0.0,1,300,1380.0,0.0,0.0,11,11,0.0,776.3793786145933,1907.4004340547842,2290.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125226,2,3,4,0,1,,1580.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1238.4780965512,1380.0,22031.91653748916,1,1,0,1,115.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10394011778790885,10491.38882737579,2,1,2_0,2_1_0,2_0_0,2_1_0 -29449,1,45.0,254.0,1,300,470.0,0.0,0.0,0,52,2240.377315527001,310.55175144583734,649.6218869606873,2430.0,275.25232067043066,0.0,50,2,2,2,2,1,2,1,2,2,10.0,1,,1,100937,1,2,1,0,1,,702.0,,32,1.0,2.0,5.0,3.0,2.0,1,1,1136.47719747416,470.0,13068.541408761834,0,1,1,2,70.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.185942709595028,6534.270704380917,1,1,1_1,1_1_1,1_0_1,1_1_0 -29450,2,36.0,0.0,9,300,1600.0,0.0,0.0,54,47,0.0,0.0,2211.478764121489,1660.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,113122,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1336.63185258785,1600.0,46700.897047726314,1,1,1,2,98.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035545355762728735,25944.942804292397,7,4,7,7_1,7_0,7_0_0 -29451,2,42.0,0.0,8,300,820.0,0.0,0.0,67,62,3136.5282417378016,0.0,1133.3828666122631,2920.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,115636,2,1,2,0,1,,281.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1191.74778406187,820.0,49001.4790227407,1,1,1,2,194.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05959003806078753,19600.59160909628,5,3,5,5_1,5_0,5_0_0 -29452,2,80.0,0.0,1,300,602.0,0.0,0.0,71,72,1291.9509186205705,0.0,832.0688850007102,1572.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125677,1,1,3,0,2,,222.0,,41,0.0,3.0,6.0,2.0,1.5,3,3,1433.83523431789,602.0,31816.8753566052,5,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04940774297855908,21211.2502377368,5,3,5,5_1,5_0,5_1_0 -29453,1,37.0,179.0,9,300,2076.0,0.0,0.0,52,21,0.0,0.0,2869.393696447632,2136.0,103.2196202514115,0.0,71,2,2,1,2,1,2,2,2,0,,1,2007.0,6,119195,2,3,1,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1168.98114963562,2076.0,31435.274632921493,1,1,1,2,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,1,0.06794914391372973,13098.031097050623,2,1,2_1,2_1_1,2_0_1,2_0_0 -29454,2,48.0,0.0,1,300,1260.0,0.0,0.0,68,63,2389.735803228801,0.0,1741.5395267456724,3060.0,344.06540083803833,0.0,31,0,0,0,0,0,0,0,0,1,10.0,1,,1,106178,2,1,2,0,1,,396.0,,43,2.0,2.0,7.0,5.0,2.5999999999999996,1,1,1367.10307459708,1260.0,30760.860865945902,1,1,0,1,172.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09947705993454824,11831.100333056118,2,1,2_0,2_1_0,2_0_0,2_1_0 -29455,2,39.0,0.0,2,300,1300.0,0.0,0.0,55,21,0.0,258.79312620486445,1796.8264958487098,1550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133574,1,2,4,0,2,,300.0,,43,2.0,3.0,4.0,2.0,1.5,3,3,1310.47368349179,1300.0,16287.018911262745,1,1,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0951678148373825,10858.012607508497,2,1,2_0,2_1_0,2_0_0,2_0_1 -29456,2,84.0,0.0,1,300,200.0,0.0,0.0,78,78,1792.3018524216009,258.79312620486445,276.4348455151861,1720.0,120.42289029331342,0.0,41,1,2,2,1,1,2,2,2,0,,1,,1,123952,2,2,4,0,1,,157.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1386.88417891627,200.0,32675.434345557907,5,5,0,1,90.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0526389330225943,21783.622897038604,6,3,6,6_1,6_0,6_1_0 -29457,2,37.0,0.0,1,300,960.0,0.0,0.0,0,67,0.0,465.827627168756,1326.8872584728933,1440.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,113392,2,2,4,0,1,,216.0,100.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1385.62533898463,960.0,18713.431626146947,0,1,2,3,65.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07695007675599116,18713.431626146947,5,3,5,5_1,5_0,5_1_0 -29458,2,66.0,0.0,5,300,2340.0,0.0,0.0,21,77,0.0,672.8621281326475,3234.2876925276773,3025.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,112999,1,2,3,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,5,5,1216.78305428356,2340.0,36985.23777931239,1,5,0,1,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08178938900027911,24656.825186208258,7,4,7,7_1,7_0,7_0_0 -29459,2,76.0,0.0,1,300,1256.0,0.0,0.0,77,72,0.0,0.0,1736.010829835369,1256.0,0.0,0.0,71,2,2,2,2,2,2,1,2,0,,1,,1,107429,2,2,3,0,1,,210.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1269.012156693,1256.0,41719.616262704614,5,5,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.030105741915052206,27813.07750846974,7,4,7,7_1,7_0,7_1_0 -29460,2,64.0,0.0,1,112,863.0,0.0,0.0,0,63,3099.1886198123516,0.0,1192.8163583980281,3088.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114168,2,2,2,0,1,,480.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,1363.70039251888,863.0,26239.16632732603,0,5,0,1,96.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11768666585965769,17492.777551550687,4,2,4_0,4_1_0,4_0_0,4_1_0 -29461,2,32.0,0.0,9,112,1200.0,0.0,0.0,52,48,0.0,517.5862524097289,1658.6090730911167,1770.0,120.42289029331342,0.0,71,2,2,1,2,1,1,2,2,2,45.0,1,2007.0,6,107654,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,2.0,1.5,3,3,1119.10796458146,1200.0,43921.72731621675,1,1,1,2,109.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04029896154258218,29281.151544144497,8,4,8,8_1,8_0,8_0_0 -29462,2,82.0,0.0,2,112,892.0,0.0,0.0,77,77,3031.9773003465416,0.0,1232.89941099773,3163.0,414.5988080098362,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102179,1,1,1,0,1,,496.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,1269.29361500951,892.0,36540.0788707283,5,5,0,1,120.0,9,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08656248420234887,24360.05258048553,7,4,7,7_1,7_0,7_0_1 -29463,2,88.0,0.0,1,112,230.0,0.0,0.0,78,78,0.0,455.47590212056144,317.900072342464,790.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127656,2,2,3,0,1,,235.0,,41,0.0,2.0,3.0,3.0,2.0,1,1,1508.96653907424,230.0,19880.02942921255,5,5,0,1,70.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03973837175709312,9940.014714606275,2,1,2_0,2_1_0,2_0_0,2_1_0 -29464,1,32.0,512.0,1,112,1184.0,0.0,0.0,54,53,0.0,405.78762188922747,1636.4942854499018,1638.0,106.66027425979189,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,106975,2,1,1,0,1,,356.0,530.0,43,2.0,0.0,7.0,5.0,2.4,3,3,1381.66103701842,1184.0,42545.48241823507,4,1,2,3,170.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03849997477753244,17727.28434093128,4,2,4_1,4_1_1,4_0_1,4_1_0 -29465,2,48.0,0.0,7,112,1073.0,0.0,0.0,54,64,1493.5848770180007,0.0,1483.0729461889734,3973.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,2,14.0,1,,5,116955,2,1,2,0,1,,154.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1257.41875175613,1073.0,57716.68621852026,1,1,1,2,100.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06883624581213629,25094.211399356638,7,4,7,7_1,7_0,7_0_0 -29466,2,50.0,0.0,1,112,200.0,0.0,0.0,0,68,0.0,36.23103766868102,276.4348455151861,375.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102770,2,1,2,0,1,,0.0,,22,1.0,3.0,3.0,2.0,1.5,2,1,1120.39019409201,200.0,36195.00241368636,0,1,0,1,70.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010360546345983993,24130.00160912424,6,3,6,6_1,6_0,6_1_0 -29467,2,67.0,0.0,5,112,280.0,0.0,0.0,55,72,0.0,517.5862524097289,387.00878372126056,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131564,2,2,1,0,1,,320.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1308.5682948097,280.0,41780.516850521715,1,5,0,1,75.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018668988772700165,27853.67790034781,7,4,7,7_1,7_0,7_0_0 -29468,2,88.0,0.0,1,112,318.0,0.0,0.0,0,77,2666.0490054771312,62.110350289167464,439.5314043691459,2243.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,115217,2,2,5,0,1,,280.0,,11,0.0,0.0,6.0,1.0,1.0,2,1,1392.33052256578,318.0,10974.810474713895,0,5,0,1,100.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20437710566099532,10974.810474713895,2,1,2_0,2_1_0,2_0_0,2_1_0 -29469,2,49.0,0.0,1,112,480.0,0.0,0.0,63,62,0.0,0.0,663.4436292364467,835.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,105711,1,2,3,0,2,,900.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1084.99267663146,480.0,22653.55658818303,1,1,0,1,50.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03685955433751044,15102.371058788687,3,2,3_0,3_1_0,3_0_0,3_1_0 -29470,1,35.0,110.0,1,112,0.0,0.0,0.0,56,62,0.0,0.0,0.0,2061.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,102587,2,2,5,0,2,,274.0,508.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1184.79259194739,0.0,11426.641403723286,4,1,2,3,97.0,9,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.18036796003140856,5441.257811296803,1,1,1_1,1_1_1,1_0_1,1_1_0 -29471,2,69.0,0.0,7,112,538.0,0.0,0.0,78,78,1666.8407227520888,258.79312620486445,743.6097344358507,2014.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,120801,2,1,2,0,1,,325.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1315.29870341123,538.0,30411.74807018868,5,5,0,1,135.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06622440759905666,20274.49871345912,5,3,5,5_1,5_0,5_0_0 -29472,2,40.0,0.0,9,112,1000.0,0.0,0.0,67,62,0.0,579.6966026988963,1382.1742275759307,1620.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,126872,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1166.08010924295,1000.0,42980.07556086345,1,1,1,2,115.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03769188347996136,20466.702648030212,5,3,5,5_1,5_0,5_0_0 -29473,2,65.0,0.0,6,112,1800.0,0.0,0.0,0,77,0.0,336.43106406632376,2487.913609636675,2165.0,68.81308016760767,0.0,71,2,2,2,2,1,1,2,2,0,,1,,4,101746,2,1,2,0,1,,290.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1411.56229392607,1800.0,17444.48881474019,0,5,0,1,150.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.12410796458366982,17444.48881474019,4,2,4_0,4_1_0,4_0_0,4_0_0 -29474,1,55.0,348.0,1,112,480.0,0.0,0.0,0,53,0.0,0.0,663.4436292364467,515.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127301,2,2,5,0,1,,0.0,503.0,32,1.0,2.0,3.0,2.0,1.5,4,4,1345.91722295775,480.0,7739.3797299323,0,4,2,3,80.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06654280032393564,5159.586486621533,1,1,1_1,1_1_1,1_0_1,1_1_0 -29475,2,55.0,0.0,1,112,630.0,0.0,0.0,55,37,2341.941087164225,0.0,870.7697633728362,2970.0,258.04905062852873,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,122804,2,1,2,0,1,,380.0,,43,2.0,3.0,6.0,2.0,1.5,1,1,1268.82992718525,630.0,44793.70720513692,1,1,0,1,85.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06630395618738612,29862.471470091277,8,4,8,8_1,8_0,8_1_0 -29476,2,38.0,0.0,1,112,0.0,0.0,0.0,22,48,0.0,0.0,0.0,3455.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,80.0,1,,1,101668,2,1,1,0,1,,294.0,590.0,43,2.0,0.0,6.0,2.0,1.5,2,2,1349.04822638443,0.0,38623.21787887209,1,1,2,3,121.0,9,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08945396550943455,25748.811919248063,7,4,7,7_1,7_0,7_1_0 -29477,2,44.0,0.0,7,112,660.0,0.0,0.0,64,43,1493.5848770180007,621.1035028916747,912.2349902001142,2260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,5,126425,2,2,2,0,1,,648.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,1139.73712501851,660.0,55433.92971332776,1,1,0,1,120.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04076925470893753,22173.571885331105,6,3,6,6_1,6_0,6_0_0 -29478,2,63.0,0.0,1,112,874.0,0.0,0.0,75,75,2688.452778632401,569.3448776507017,1208.0202749013633,3392.0,289.01493670395223,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,126537,2,1,2,0,1,,411.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1244.98300125327,874.0,53913.547785074705,5,5,0,1,200.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06291554051538477,35942.3651900498,9,5,9,9_1,9_0,9_1_0 -29479,2,29.0,0.0,1,112,1100.0,0.0,0.0,37,69,0.0,51.75862524097289,1520.3916503335236,1400.0,430.0817510475479,0.0,60,2,2,1,2,1,2,2,2,0,,1,,1,102363,1,1,3,0,1,,78.0,,43,2.0,0.0,5.0,4.0,2.1,4,3,1238.4780965512,1100.0,50459.949975980584,1,1,1,2,120.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02774477582055498,24028.547607609802,6,3,6,6_1,6_0,6_1_0 -29480,2,47.0,0.0,6,112,1400.0,0.0,0.0,67,54,0.0,113.86897553014036,1935.0439186063027,1540.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,130014,1,1,2,0,1,,650.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1087.45595165838,1400.0,48636.94952553402,4,1,0,1,96.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03166316997721068,21146.499793710445,5,3,5,5_1,5_0,5_0_0 -29481,2,59.0,0.0,5,112,416.0,0.0,0.0,68,78,0.0,828.1380038555662,574.9844786715871,1306.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102657,2,1,1,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1367.15002462465,416.0,17116.1541557892,1,5,0,1,122.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07630218728535296,11410.769437192801,2,1,2_0,2_1_0,2_0_0,2_0_0 -29482,1,57.0,245.0,1,112,613.0,0.0,0.0,0,63,0.0,0.0,847.2728015040454,682.0,118.70256328912323,0.0,60,0,0,0,0,0,0,0,0,1,3.0,2,,1,130276,1,2,0,0,1,,300.0,341.0,32,2.0,2.0,4.0,3.0,2.0,3,2,1763.21977260686,613.0,13777.672886338787,0,1,2,3,100.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04950037685074053,6888.8364431693935,1,1,1_1,1_0_1,1_0_1,1_1_0 -29483,1,47.0,145.0,1,112,964.0,0.0,0.0,0,67,0.0,251.54691867112822,1332.4159553831971,1269.0,106.66027425979189,0.0,41,2,2,2,1,1,2,2,2,2,30.0,1,,1,102611,1,2,5,0,2,,300.0,500.0,32,1.0,1.0,5.0,2.0,1.3,2,2,1440.22934625753,964.0,6948.881226653986,0,1,2,3,100.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.18261932512711068,5345.293251272297,1,1,1_1,1_1_1,1_0_1,1_1_0 -29484,2,73.0,0.0,1,112,491.0,0.0,0.0,71,71,0.0,2173.8622601208613,678.6475457397819,2711.0,206.439240502823,0.0,50,2,2,1,1,1,2,2,2,0,,1,,1,125552,1,3,4,0,1,,622.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,1085.21440095101,491.0,22492.550066301475,5,5,0,1,80.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.12052879695760431,14995.033377534317,3,2,3_0,3_1_0,3_0_0,3_1_0 -29485,2,43.0,0.0,8,112,630.0,0.0,0.0,54,54,1902.827133320933,0.0,870.7697633728362,1934.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,113201,2,1,1,0,1,,661.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1189.95545455875,630.0,48542.26803728622,1,1,1,2,127.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03984156649859167,23115.365732041057,6,3,6,6_1,6_0,6_0_0 -29486,2,52.0,0.0,6,112,790.0,0.0,0.0,47,52,0.0,155.27587572291867,1091.917639784985,1080.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,124416,2,1,2,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,3,2,1227.86688807028,790.0,49329.0356485986,1,1,0,1,94.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02189379917526691,32886.023765732396,8,4,8,8_1,8_0,8_0_0 -29487,2,58.0,0.0,6,112,1550.0,0.0,0.0,0,42,0.0,0.0,2142.370052742692,1646.0,165.1513924022584,0.0,71,2,2,2,1,2,2,2,2,2,5.0,1,,4,105025,2,2,1,0,1,,250.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1878.9267702147,1550.0,43883.66981846159,0,1,0,1,105.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03750825778266015,43883.66981846159,10,5,10,10_1,10_2,10_0_0 -29488,2,35.0,0.0,5,112,450.0,0.0,0.0,0,62,298.71697540360015,207.03450096389156,621.9784024091688,914.0,110.10092826817227,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,111920,2,3,1,0,1,,140.0,550.0,12,1.0,0.0,4.0,1.0,1.0,2,2,1928.95876444649,450.0,21634.050618946974,0,1,2,3,88.0,9,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04224821398908645,21634.050618946974,6,3,6,6_1,6_2,6_0_0 -29489,2,51.0,0.0,7,112,880.0,1940.0,0.0,55,37,0.0,64.18069529880638,1216.313320266819,2882.0,0.0,3518.4866276440507,60,0,0,0,0,0,0,0,0,2,60.0,1,,5,101103,2,1,2,0,1,,680.0,,43,2.0,2.0,6.0,4.0,2.5,3,2,1610.6728003207,880.0,125854.98681091313,1,1,1,2,160.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02289937072044646,50341.99472436526,10,5,10,10_1,10_2,10_0_0 -29490,2,61.0,0.0,7,112,2310.0,0.0,0.0,46,74,0.0,0.0,3192.8224657004,2378.0,116.98223628493304,0.0,71,1,2,2,1,2,2,2,2,0,,1,,5,133341,2,1,1,0,1,,430.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1603.67254729415,2310.0,53048.55611586479,1,5,0,1,120.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.044826856263649205,35365.704077243194,9,5,9,9_1,9_2,9_0_0 -29491,2,57.0,0.0,8,112,480.0,1020.0,0.0,22,22,0.0,248.44140115666985,663.4436292364467,1740.0,0.0,1849.925958864398,60,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,130400,2,1,1,0,1,,221.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1833.65772163618,480.0,26234.076497362305,1,1,1,2,110.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06632594824425962,17489.38433157487,4,2,4_0,4_1_0,4_2_0,4_0_0 -29492,2,69.0,0.0,5,112,210.0,450.0,0.0,0,77,0.0,0.0,290.25658779094545,660.0,0.0,816.143805381352,60,0,0,0,0,0,0,0,0,0,,2,,3,130699,2,2,0,0,1,,80.0,366.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2647.95644757435,210.0,15020.808199895087,0,5,2,3,50.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0439390471682216,15020.808199895087,3,2,3_0,3_0_0,3_2_0,3_0_0 -29493,2,56.0,0.0,1,112,1413.0,72.0,0.0,54,54,0.0,1749.4415331448836,1953.01218356479,3175.0,0.0,130.5830088610163,71,1,2,2,1,2,2,2,2,0,,1,,1,112462,1,3,3,0,2,,520.0,,42,2.0,2.0,8.0,3.0,2.0,2,2,1888.29880629142,1413.0,52034.51592225843,1,7,0,1,160.0,9,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06101719106493797,26017.257961129217,7,4,7,7_1,7_2,7_1_0 -29494,2,67.0,0.0,5,112,1685.0,0.0,0.0,77,78,0.0,0.0,2328.963573465443,1815.0,223.64251054472493,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124814,1,1,4,0,1,,192.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,1722.34901134362,1685.0,48008.877610439755,5,5,0,1,120.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03780550786309821,24004.438805219877,6,3,6,6_1,6_2,6_0_0 -29495,2,47.0,0.0,2,112,381.0,0.0,0.0,52,52,2016.339583974301,0.0,526.6083807064296,1827.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,3,60.0,1,,2,108155,2,1,1,0,1,,159.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,1743.81841370733,381.0,60440.17011755986,1,1,0,1,80.0,9,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030228240530203215,40293.4467450399,9,5,9,9_1,9_2,9_0_1 -29496,2,48.0,0.0,1,112,300.0,650.0,0.0,0,63,0.0,0.0,414.65226827277917,950.0,0.0,1178.8743855508417,71,0,0,0,0,0,0,0,0,0,,1,,1,126059,2,3,1,0,1,,180.0,,12,1.0,3.0,2.0,1.0,1.0,3,3,1750.14714033972,300.0,21731.868031223716,0,1,1,2,70.0,9,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0437146037623212,21731.868031223716,6,3,6,6_1,6_2,6_1_0 -29497,2,57.0,0.0,1,112,538.0,1619.0,0.0,52,77,0.0,0.0,743.6097344358507,2157.0,0.0,2936.3040464720198,71,0,0,0,0,0,0,0,0,0,,1,,1,122823,1,2,2,0,1,,259.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1734.21694057296,538.0,35875.2716303366,1,5,0,1,120.0,9,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060124980299132075,23916.847753557737,6,3,6,6_1,6_2,6_1_0 -29498,2,38.0,0.0,2,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1262.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,111201,2,1,0,0,2,,243.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,2215.75093084147,0.0,35155.971310007175,0,1,0,1,78.0,9,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03589717345231678,27043.05485385167,7,4,7,7_0,7_2,7_0_1 -29499,1,52.0,150.0,1,112,672.0,0.0,0.0,0,85,0.0,0.0,928.8210809310253,737.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115748,2,3,4,0,2,,120.0,288.0,11,0.0,0.0,4.0,1.0,1.0,1,1,2056.23843569177,672.0,5889.871346615906,0,7,2,3,70.0,9,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1251300676411976,5889.871346615906,1,1,1_1,1_1_1,1_2_1,1_1_0 -29500,2,36.0,0.0,7,112,630.0,2000.0,0.0,38,47,0.0,122.15035556869601,870.7697633728362,2748.0,0.0,3627.3058016948976,43,0,0,0,0,0,0,0,0,0,,1,,5,102285,2,1,1,0,1,,226.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1460.41456325894,630.0,100984.80067705919,1,1,1,2,210.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027212015883339418,48088.000322409134,10,5,10,10_1,10_2,10_0_0 -29501,2,53.0,0.0,6,112,1554.0,0.0,0.0,77,43,0.0,0.0,2147.8987496529962,1618.0,110.10092826817227,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,117392,1,2,3,0,1,,282.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1674.12065601354,1554.0,47527.13537447906,5,1,0,1,96.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03404370970922913,31684.756916319373,8,4,8,8_1,8_2,8_0_0 -29502,2,69.0,0.0,6,112,503.0,0.0,0.0,0,77,3360.5659732905015,0.0,695.2336364706931,2923.0,292.4555907123326,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,120406,2,1,3,0,1,,384.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1766.33909395351,503.0,18839.04244302491,0,5,0,1,103.0,9,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15515650590204125,18839.04244302491,5,3,5,5_1,5_2,5_0_0 -29503,2,76.0,0.0,6,112,985.0,939.0,0.0,74,74,0.0,0.0,1361.4416141622917,1924.0,0.0,1703.0200738957544,71,0,0,0,0,0,0,0,0,0,,1,,4,110493,2,2,3,0,1,,428.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,1749.85601127502,985.0,124806.26432983266,5,5,0,1,240.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015415892866686043,83204.17621988844,10,5,10,10_1,10_2,10_0_0 -29504,2,56.0,0.0,2,112,10.0,10.0,0.0,0,75,0.0,0.0,13.821742275759306,20.0,0.0,18.13652900847449,71,2,1,2,1,2,2,2,2,0,,2,,2,114493,1,1,0,1,1,700.0,120.0,251.0,11,0.0,2.0,3.0,1.0,1.0,3,3,2034.46896932857,10.0,17950.62212024886,0,5,2,3,60.0,9,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0011141675127481726,17950.62212024886,4,2,4_0,4_0_0,4_2_0,4_0_1 -29505,2,67.0,0.0,5,112,407.0,920.0,0.0,77,72,0.0,0.0,562.5449106234038,1327.0,0.0,1668.560668779653,60,0,0,0,0,0,0,0,0,0,,2,,3,110503,2,1,0,0,1,,300.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,2272.59451467917,407.0,81540.10911473502,5,5,0,1,100.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016274199463392664,54360.072743156685,10,5,10,10_0,10_2,10_0_0 -29506,2,31.0,0.0,7,112,230.0,452.0,0.0,0,47,0.0,0.0,317.900072342464,682.0,0.0,819.7711111830469,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,120407,2,1,0,0,1,,185.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2132.78120389634,230.0,22141.740981480336,0,1,1,2,52.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030801552622733434,22141.740981480336,6,3,6,6_0,6_2,6_0_0 -29507,2,58.0,0.0,2,112,960.0,0.0,0.0,0,77,2091.018827825201,0.0,1326.8872584728933,2459.0,170.31237341482898,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123759,2,1,1,0,1,,240.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1797.16535771368,960.0,14537.28656595009,0,7,1,2,142.0,9,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1691512366385887,14537.28656595009,3,2,3_0,3_1_0,3_2_0,3_0_1 -29508,2,29.0,0.0,8,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1971.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,2001.0,6,114490,2,1,0,0,1,,71.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2419.6224147369,0.0,18243.16232590442,0,1,1,2,56.0,9,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10804047921019011,18243.16232590442,4,2,4_0,4_0_0,4_2_0,4_0_0 -29509,2,74.0,0.0,7,112,1358.0,0.0,0.0,72,78,0.0,558.9931526025072,1876.9926010481138,1978.0,137.62616033521533,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,118359,2,1,1,0,1,,262.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1654.42639209437,1358.0,42054.271535846536,5,5,0,1,110.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04703446113230085,28036.18102389769,7,4,7,7_1,7_2,7_0_0 -29510,2,70.0,0.0,5,112,1888.0,0.0,0.0,77,74,0.0,72.46207533736204,2609.544941663357,1989.0,53.330137129895945,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,100023,2,1,2,0,1,,352.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,1606.10630247832,1888.0,65421.5849060647,5,5,0,1,121.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030402809758520784,43614.389937376465,10,5,10,10_1,10_2,10_0_0 -29511,2,39.0,0.0,9,112,1124.0,1362.0,0.0,46,54,0.0,0.0,1553.563831795346,2486.0,0.0,2470.1952509542252,50,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,114936,2,1,1,0,1,,42.0,,43,2.0,0.0,10.0,5.0,2.4,2,2,1604.42780279828,1124.0,75694.0957935348,1,1,1,2,200.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03284272008190545,31539.2065806395,8,4,8,8_1,8_2,8_0_0 -29512,2,75.0,0.0,2,112,490.0,0.0,0.0,0,78,2987.1697540360015,0.0,677.265371512206,2583.0,159.99041138968784,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,100708,1,3,2,0,2,,96.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1607.69783706206,490.0,25122.913342762542,0,5,0,1,84.0,9,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10281450900057001,25122.913342762542,7,4,7,7_1,7_2,7_0_1 -29513,2,71.0,0.0,5,112,2160.0,0.0,0.0,75,78,0.0,0.0,2985.49633156401,2160.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107514,2,1,2,0,1,,216.0,,41,0.0,5.0,3.0,2.0,1.5,1,1,1693.25581444303,2160.0,49484.105898312635,5,5,0,1,98.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043650379466059104,32989.40393220842,8,4,8,8_1,8_2,8_0_0 -29514,1,44.0,459.0,5,112,600.0,800.0,0.0,0,85,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,70,0,0,0,0,0,0,0,0,0,,1,,3,132167,2,1,1,0,1,,120.0,468.0,31,1.0,1.0,4.0,4.0,2.3,3,2,1438.42119006505,600.0,16318.838357552711,0,6,2,3,72.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08579042020794635,7095.1471119794405,1,1,1_1,1_1_1,1_2_1,1_0_0 -29515,2,54.0,0.0,7,112,488.0,1293.0,0.0,54,65,0.0,0.0,674.5010230570541,1781.0,0.0,2345.0532007957513,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,107517,2,1,2,0,1,,304.0,,43,2.0,2.0,5.0,4.0,2.5,1,1,1460.41456325894,488.0,52788.869710279745,1,1,1,2,90.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03373817264462437,21115.547884111897,5,3,5,5_1,5_2,5_0_0 -29516,2,39.0,0.0,6,112,400.0,1000.0,0.0,56,64,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,4,128942,2,2,3,0,1,,433.0,545.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1535.05045870509,400.0,35802.80131390378,1,1,2,3,90.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039103085474384916,14917.833880793241,3,2,3_0,3_1_0,3_2_0,3_0_0 -29517,2,57.0,0.0,7,112,579.0,1025.0,0.0,52,64,0.0,0.0,800.2788777664638,1604.0,0.0,1858.9942233686352,60,1,2,2,1,1,2,2,2,2,40.0,1,,5,105247,1,3,3,0,1,,349.0,497.0,43,3.0,2.0,4.0,4.0,2.3,3,3,1447.27415425402,579.0,55506.31954562228,1,1,2,3,90.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02889761045463706,24133.182411140126,6,3,6,6_1,6_2,6_0_0 -29518,2,48.0,0.0,5,112,0.0,0.0,0.0,43,43,448.0754631054002,258.79312620486445,0.0,1706.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,104608,2,2,1,0,1,,180.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1561.62429502274,0.0,63437.016974820246,1,1,0,1,90.0,9,5,8,1,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02689281560444676,30208.103321342973,8,4,8,8_1,8_2,8_0_0 -29519,2,83.0,0.0,5,112,1550.0,0.0,0.0,77,78,0.0,124.22070057833493,2142.370052742692,1760.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111363,2,2,1,0,1,,422.0,,41,0.0,2.0,4.0,3.0,2.0,2,2,1565.74310796179,1550.0,48101.08289096706,5,5,0,1,104.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03658961283656489,24050.54144548353,6,3,6,6_1,6_2,6_0_0 -29520,2,37.0,0.0,5,112,408.0,1176.0,0.0,0,47,0.0,0.0,563.9270848509797,1584.0,0.0,2132.8558113966,71,0,0,0,0,0,0,0,0,0,,2,,3,115889,2,1,0,0,1,,303.0,281.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1888.09200711467,408.0,29794.62733874465,0,4,2,3,65.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.053163947378532285,22918.944106726653,6,3,6,6_0,6_2,6_0_0 -29521,2,31.0,0.0,1,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2107.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,114542,2,1,2,0,1,,118.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1813.89173474103,0.0,20840.39905450003,0,1,1,2,75.0,9,5,8,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10110171088806666,20840.39905450003,5,3,5,5_1,5_2,5_1_0 -29522,2,39.0,0.0,1,112,0.0,0.0,0.0,52,43,0.0,0.0,0.0,829.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,122874,2,1,1,0,1,,136.0,680.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1876.11867317082,0.0,39287.10022387607,1,1,2,3,96.0,9,5,8,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02110107376915004,18708.14296375051,5,3,5,5_1,5_2,5_1_0 -29523,1,75.0,87.0,7,112,128.0,670.0,0.0,0,72,0.0,0.0,176.9183011297191,798.0,0.0,1215.1474435677908,10,0,0,0,0,0,0,0,0,0,,2,,5,131394,2,2,0,0,1,,140.0,482.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2403.92716762102,128.0,10902.190758033263,0,5,2,3,47.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07319629767182297,10902.190758033263,2,1,2_1,2_0_1,2_2_1,2_0_0 -29524,2,66.0,0.0,6,112,526.0,1752.0,0.0,77,74,0.0,0.0,727.0236437049394,2278.0,0.0,3177.5198822847306,60,0,0,0,0,0,0,0,0,0,,1,,4,113236,2,2,3,0,1,,357.0,,41,0.0,2.0,9.0,2.0,1.5,3,3,1708.03532758494,526.0,31498.262743310384,6,5,0,1,210.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07232144891812495,20998.84182887359,5,3,5,5_1,5_2,5_0_0 -29525,1,46.0,190.0,6,112,995.0,0.0,0.0,0,56,2240.377315527001,0.0,1375.263356438051,2565.0,120.42289029331342,0.0,10,2,2,2,2,1,2,2,2,2,15.0,2,,4,102658,2,2,0,0,1,,320.0,626.0,32,1.0,0.0,4.0,4.0,2.3,1,1,2471.27775114771,995.0,18792.39248066051,0,1,2,3,100.0,9,5,8,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.13649140217988073,8170.605426374135,1,1,1_1,1_0_1,1_2_1,1_0_0 -29526,2,46.0,0.0,7,112,0.0,0.0,2240.0,35,23,0.0,0.0,1144.4458700360562,2240.0,0.0,2560.8705352218944,70,0,0,0,0,0,0,0,0,2,35.0,1,,5,113842,2,1,1,0,1,,854.0,,43,2.0,0.0,8.0,4.0,2.3,1,1,1610.6728003207,0.0,108524.15567402092,1,1,1,2,180.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020640566020420307,47184.41551044388,10,5,10,10_1,10_2,10_0_0 -29527,2,76.0,0.0,2,112,635.0,0.0,0.0,75,78,1574.2384603769726,0.0,877.6806345107159,1782.0,159.99041138968784,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,128535,2,2,2,0,1,,249.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1749.76354000821,635.0,55279.629330809854,5,5,0,1,120.0,9,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03223610616735468,36853.0862205399,9,5,9,9_1,9_2,9_0_1 -29528,2,58.0,0.0,5,112,1115.0,1548.0,0.0,75,75,0.0,258.79312620486445,1541.1242637471626,2913.0,0.0,2807.534690511851,50,0,0,0,0,0,0,0,0,0,,1,,3,100335,1,2,1,0,1,,351.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1703.96175212578,1115.0,58648.776212656085,5,5,0,1,175.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04966855556265453,39099.184141770726,9,5,9,9_1,9_2,9_0_0 -29529,2,61.0,0.0,6,112,708.0,0.0,0.0,77,75,0.0,0.0,978.5793531237589,848.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,114067,2,2,1,0,1,,553.0,,41,0.0,1.0,7.0,3.0,2.0,1,1,1900.94284946394,708.0,26776.04050350523,6,5,1,2,135.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03167010446854489,13388.020251752616,3,2,3_0,3_1_0,3_2_0,3_0_0 -29530,0,62.0,0.0,8,112,768.0,1185.0,0.0,75,77,0.0,0.0,1061.5098067783147,1953.0,0.0,2149.178687504227,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126688,2,1,1,0,1,,389.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1642.16023657091,768.0,51756.32159774706,5,5,0,1,150.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037734520918600474,34504.21439849804,9,5,9,9_1,9_2,9_0_0 -29531,2,71.0,0.0,5,112,300.0,0.0,0.0,0,72,2688.452778632401,134.5724256265295,414.65226827277917,2295.0,111.82125527236246,0.0,71,1,2,2,1,2,2,2,2,0,,1,,3,131455,2,2,3,0,1,,189.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1768.79211027714,300.0,21672.22037648715,0,5,0,1,98.0,9,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.10589593314074618,21672.22037648715,6,3,6,6_1,6_2,6_0_0 -29532,2,43.0,0.0,1,112,670.0,0.0,0.0,56,23,2987.1697540360015,310.55175144583734,926.0567324758734,3100.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,124337,2,1,1,0,1,,360.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,1662.8934322158,670.0,36565.18981620159,1,1,0,1,100.0,9,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08478008771682699,17411.995150572187,4,2,4_0,4_1_0,4_2_0,4_1_0 -29533,2,68.0,0.0,1,112,480.0,0.0,0.0,77,78,1792.3018524216009,0.0,663.4436292364467,1714.0,58.49111814246652,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111806,2,1,1,0,1,,450.0,,41,0.0,2.0,8.0,2.0,1.5,3,2,1697.81648203998,480.0,34425.21034054227,6,6,0,1,120.0,9,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04978909302353448,22950.14022702818,6,3,6,6_1,6_2,6_1_0 -29534,1,34.0,160.0,1,112,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1457.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,104501,1,2,0,0,1,,285.0,560.0,32,1.0,0.0,3.0,2.0,1.3,2,2,2536.07438742529,0.0,16941.803194361346,0,4,2,3,70.0,9,5,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08600029071786915,13032.156303354881,2,1,2_1,2_0_1,2_2_1,2_1_0 -29535,2,31.0,0.0,7,112,290.0,560.0,0.0,43,54,0.0,0.0,400.8305259970199,850.0,0.0,1015.6456244745714,30,0,0,0,0,0,0,0,0,2,20.0,2,,5,120177,1,1,0,0,1,,180.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2258.68663110247,290.0,38835.22969338264,1,1,1,2,69.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021887343185840267,25890.153128921756,7,4,7,7_0,7_2,7_0_0 -29536,2,24.0,0.0,1,112,980.0,0.0,0.0,0,63,0.0,0.0,1354.530743024412,980.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,2,,1,109419,1,3,0,0,2,,240.0,389.0,12,1.0,0.0,3.0,1.0,1.0,4,3,2724.0077304722,980.0,18871.343686244796,0,1,2,3,65.0,9,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.05193058937898078,18871.343686244796,5,3,5,5_0,5_2,5_1_0 -29537,2,34.0,0.0,7,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1010.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,2,,5,129789,2,1,0,0,1,,152.0,604.0,12,1.0,1.0,3.0,1.0,1.0,2,2,2629.28186485302,0.0,32312.35408107158,0,1,2,3,66.0,9,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03125739453912623,32312.35408107158,8,4,8,8_0,8_2,8_0_0 -29538,2,24.0,0.0,1,112,1860.0,0.0,0.0,21,52,0.0,0.0,2570.8440632912307,1860.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,1,115873,1,3,3,0,2,,75.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1949.60198150307,1860.0,27650.44185692705,1,1,2,3,70.0,9,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06726836444872322,18433.62790461803,4,2,4_0,4_1_0,4_2_0,4_1_0 -29539,2,30.0,0.0,9,112,860.0,0.0,0.0,55,47,0.0,300.2000263976428,1188.6698357153002,1270.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,128712,2,1,1,0,1,,296.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,753.678386531042,860.0,64229.96998467705,1,1,1,2,85.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019772701128507084,30585.699992703358,8,4,8,8_1,8_0,8_0_0 -29540,1,41.0,325.0,1,112,950.0,0.0,0.0,0,52,0.0,310.55175144583734,1313.065516197134,1295.0,77.41471518855863,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,128638,2,2,1,0,1,,500.0,,32,1.0,0.0,4.0,4.0,1.9,3,2,769.062658545353,950.0,16367.583269285231,0,1,1,2,82.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0791198052085152,8614.517510150123,1,1,1_1,1_1_1,1_0_1,1_1_0 -29541,2,56.0,0.0,8,112,1700.0,0.0,0.0,56,31,0.0,0.0,2349.696186879082,1820.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,107815,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,789.268071053401,1700.0,60713.425964766066,1,1,0,1,130.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029976895078465907,26397.141723811335,7,4,7,7_1,7_0,7_0_0 -29542,2,27.0,0.0,5,112,480.0,0.0,0.0,52,47,1493.5848770180007,621.1035028916747,663.4436292364467,2120.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,122792,2,1,2,0,1,,260.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,797.079575336631,480.0,50239.56806583288,1,1,1,2,81.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04219781502145871,33493.04537722192,8,4,8,8_1,8_0,8_0_0 -29543,2,57.0,0.0,1,112,195.0,0.0,0.0,0,46,0.0,1097.2828551086252,269.52397437730644,1285.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,55.0,1,,1,109397,1,3,4,0,2,,225.0,,32,2.0,1.0,3.0,2.0,1.5,1,1,822.929790846227,195.0,38371.64095696171,0,1,0,1,76.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03348827331729905,25581.093971307808,7,4,7,7_1,7_0,7_1_0 -29544,2,81.0,0.0,2,112,350.0,0.0,0.0,0,78,2691.439948386437,0.0,483.76097965157567,2352.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109820,2,1,4,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,3,3,953.066880189427,350.0,15410.779706013935,0,5,0,1,100.0,9,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15262044133186528,15410.779706013935,3,2,3_0,3_1_0,3_0_0,3_0_1 -29545,2,69.0,0.0,1,112,152.0,0.0,0.0,0,72,1792.3018524216009,0.0,210.09048259154144,1452.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111985,2,2,2,0,1,,127.0,208.0,11,0.0,1.0,2.0,1.0,1.0,4,4,1033.95028594892,152.0,19570.41225315867,0,5,2,3,80.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07419363379867723,19570.41225315867,5,3,5,5_1,5_0,5_1_0 -29546,0,48.0,0.0,1,112,1500.0,0.0,0.0,54,62,0.0,0.0,2073.261341363896,1620.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,126370,1,1,2,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,879.920407570963,1500.0,59873.53458613367,1,1,0,1,120.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027057029640858748,26031.971559188554,7,4,7,7_1,7_0,7_1_0 -29547,2,49.0,0.0,1,112,500.0,0.0,0.0,52,46,0.0,414.0690019277831,691.0871137879653,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117544,2,2,1,0,1,,600.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,876.819963568953,500.0,42532.27216396073,1,1,1,2,120.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021160402541640026,17721.780068316973,4,2,4_0,4_1_0,4_0_0,4_1_0 -29548,0,58.0,0.0,1,112,800.0,0.0,0.0,67,67,0.0,258.79312620486445,1105.7393820607444,1200.0,258.04905062852873,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,127621,1,3,4,0,2,,400.0,,43,3.0,3.0,4.0,3.0,2.0,2,2,1247.14343833792,800.0,12214.222222222223,4,4,5,0,100.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,1,0,0.09824612473619096,6107.111111111111,1,1,1_0,1_1_0,1_0_0,1_1_0 -29549,2,46.0,0.0,7,112,800.0,0.0,0.0,37,23,2957.2980564956415,310.55175144583734,1105.7393820607444,3080.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,105334,2,1,2,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,847.995790337715,800.0,133399.3349826024,1,1,0,1,180.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023088570871823956,53359.73399304096,10,5,10,10_1,10_0,10_0_0 -29550,2,68.0,0.0,1,120,1080.0,0.0,0.0,0,78,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,121040,2,1,0,0,1,,200.0,340.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1589.63134371109,1080.0,12726.888923102728,0,5,2,3,36.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08485970188987109,12726.888923102728,2,1,2_0,2_0_0,2_0_0,2_1_0 -29551,2,80.0,0.0,9,120,2097.0,0.0,0.0,90,71,0.0,0.0,2898.4193552267266,2187.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,103122,2,1,0,0,1,,231.0,580.0,41,0.0,7.0,4.0,2.0,1.5,2,2,1498.96365502807,2097.0,28661.26021490706,5,5,2,3,101.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07630508859699461,19107.50680993804,5,3,5,5_0,5_0,5_0_0 -29552,2,70.0,0.0,1,120,801.0,0.0,0.0,90,71,0.0,0.0,1107.1215562883203,925.0,213.32054851958378,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124846,2,1,1,0,1,,262.0,530.0,41,0.0,0.0,6.0,2.0,1.5,2,2,957.696044813414,801.0,24581.59407299027,5,5,2,3,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037629780935011466,16387.72938199351,4,2,4_0,4_1_0,4_0_0,4_1_0 -29553,2,47.0,0.0,9,120,1050.0,0.0,0.0,54,21,1344.2263893162005,165.62760077111324,1451.2829389547271,2238.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,132065,2,1,2,0,1,,405.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,942.240300280469,1050.0,42409.168738994194,1,1,0,1,129.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05277160733269015,16963.667495597678,4,2,4_0,4_1_0,4_0_0,4_0_0 -29554,2,50.0,0.0,7,120,587.0,0.0,0.0,55,47,1941.6603401234008,0.0,811.3362715870712,2007.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,104293,2,1,2,0,1,,360.0,,43,3.0,1.0,6.0,4.0,2.5,2,2,743.572392451397,587.0,45100.424007121896,1,1,0,1,99.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04450069027473158,18040.169602848757,4,2,4_0,4_1_0,4_0_0,4_0_0 -29555,2,76.0,0.0,2,120,200.0,0.0,0.0,0,77,4480.754631054002,0.0,276.4348455151861,3200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,119839,2,3,2,0,1,,190.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,892.59861810027,200.0,15977.658184165106,0,5,0,1,95.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20027966320943122,15977.658184165106,3,2,3_0,3_1_0,3_0_0,3_0_1 -29556,2,72.0,0.0,2,120,500.0,0.0,0.0,0,78,2091.018827825201,0.0,691.0871137879653,1960.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104659,2,1,2,0,1,,180.0,,11,0.0,6.0,7.0,1.0,1.0,1,1,934.517999851846,500.0,18086.131015381634,0,5,0,1,110.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10837033074310294,18086.131015381634,4,2,4_0,4_1_0,4_0_0,4_0_1 -29557,2,53.0,0.0,1,120,490.0,0.0,0.0,62,11,3733.962192545002,0.0,677.265371512206,3080.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108830,2,1,1,0,1,,315.0,,43,2.0,0.0,5.0,4.0,2.3,4,3,818.809657888891,490.0,28980.12014323588,1,1,0,1,110.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1062797526296277,12600.052236189515,2,1,2_0,2_1_0,2_0_0,2_1_0 -29558,2,54.0,0.0,7,120,649.0,0.0,0.0,56,22,2234.402976018929,0.0,897.0310736967789,2215.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,131588,2,1,1,0,1,,249.0,675.0,43,2.0,3.0,6.0,2.0,1.5,2,2,923.598325437622,649.0,37940.59367255013,1,1,2,3,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05838074172261948,25293.72911503342,7,4,7,7_1,7_0,7_0_0 -29559,2,37.0,0.0,1,120,840.0,0.0,0.0,42,21,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101834,2,1,1,0,1,,340.0,,43,2.0,0.0,6.0,3.0,1.8,2,1,887.518007182482,840.0,69061.62485465081,1,1,1,2,180.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012163050055191858,38367.56936369489,9,5,9,9_1,9_0,9_1_0 -29560,2,57.0,0.0,7,120,1095.0,0.0,0.0,75,43,0.0,1200.800105590571,1513.480779195644,2359.0,178.91400843577995,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,116243,2,1,1,0,1,,338.0,,42,2.0,5.0,8.0,5.0,3.0,2,2,844.011312358941,1095.0,43890.400956185724,6,1,0,1,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053747515370272156,14630.133652061908,3,2,3_0,3_1_0,3_0_0,3_0_0 -29562,2,27.0,0.0,9,120,1353.0,0.0,0.0,63,62,0.0,167.69794578075215,1870.0817299102341,1645.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,113918,2,1,1,0,1,,396.0,,43,3.0,0.0,4.0,4.0,2.3,2,2,875.556643916029,1353.0,30222.44188820932,1,1,1,2,96.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054429751443802556,13140.1921253084,2,1,2_0,2_1_0,2_0_0,2_0_0 -29563,2,57.0,0.0,6,120,0.0,0.0,0.0,0,22,0.0,0.0,0.0,1036.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,131061,2,1,1,0,1,,260.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,906.361308669157,0.0,40734.26482849054,0,1,0,1,50.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025433133612746496,40734.26482849054,9,5,9,9_1,9_0,9_0_0 -29564,2,44.0,0.0,1,120,252.0,0.0,0.0,0,67,0.0,0.0,348.3079053491345,284.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,132010,2,3,3,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,870.736928608105,252.0,36676.12301601076,0,1,0,1,50.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00774345750438293,36676.12301601076,9,5,9,9_1,9_0,9_1_0 -29565,2,41.0,0.0,1,120,419.0,0.0,0.0,22,22,2467.402216833737,517.5862524097289,579.1310013543149,2571.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,120012,1,1,1,0,2,,250.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,2,2,876.924000460115,419.0,63864.158199971855,1,1,1,2,160.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04025732229883417,24563.137769219946,7,4,7,7_1,7_0,7_1_0 -29566,2,34.0,0.0,7,111,636.0,0.0,0.0,21,62,0.0,0.0,879.0628087382918,696.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,5,108190,2,1,0,0,2,,250.0,547.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1519.92538852014,636.0,29614.40145007166,1,1,2,3,74.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02350207891837422,19742.93430004777,5,3,5,5_0,5_2,5_0_0 -29568,2,60.0,0.0,7,111,840.0,0.0,0.0,0,34,0.0,0.0,1161.0263511637818,870.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,131062,2,1,0,0,1,,154.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1735.59574436165,840.0,33581.96910618968,0,1,1,2,96.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02590675958425694,33581.96910618968,9,5,9,9_0,9_2,9_0_0 -29569,2,58.0,0.0,1,111,642.0,1813.0,0.0,85,46,0.0,0.0,887.3558541037474,2455.0,0.0,3288.152709236425,70,0,0,0,0,0,0,0,0,3,60.0,1,,1,111930,1,2,1,0,1,,658.0,618.0,42,1.0,5.0,5.0,2.0,1.5,2,2,1242.11428405357,642.0,30349.08946749451,6,1,2,3,100.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08089204793538982,20232.726311663006,5,3,5,5_1,5_2,5_1_0 -29570,2,78.0,0.0,1,111,340.0,1400.0,0.0,78,78,0.0,0.0,469.9392373758164,1740.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,1,,1,125376,2,1,2,0,1,,500.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,1166.28759819455,340.0,22635.957036066942,5,5,0,1,76.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07686885061796042,15090.638024044629,3,2,3_0,3_1_0,3_2_0,3_1_0 -29571,1,93.0,180.0,2,111,1100.0,0.0,0.0,0,77,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,133173,2,1,0,0,1,,210.0,474.0,11,0.0,2.0,2.0,1.0,1.0,3,3,1917.98427178218,1100.0,10014.870190841106,0,5,2,3,60.0,4,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10983667077442326,10014.870190841106,2,1,2_1,2_0_1,2_2_1,2_0_1 -29572,2,28.0,0.0,2,111,270.0,600.0,0.0,0,43,0.0,0.0,373.1870414455012,870.0,0.0,1088.1917405084694,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,106130,2,1,0,0,1,,242.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1651.09540389518,270.0,25120.602084507238,0,1,1,2,81.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034632927868259965,25120.602084507238,7,4,7,7_0,7_2,7_0_1 -29573,2,80.0,0.0,7,111,2210.0,0.0,0.0,0,74,0.0,0.0,3054.6050429428064,2210.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124515,2,1,1,0,1,,227.0,,21,1.0,2.0,5.0,2.0,1.5,1,1,1106.2993591968,2210.0,108131.81597915676,0,5,0,1,120.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020438017987471833,72087.87731943784,10,5,10,10_1,10_2,10_0_0 -29574,2,49.0,0.0,5,111,400.0,0.0,0.0,0,43,2987.1697540360015,0.0,552.8696910303722,2460.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,1,3.0,1,,3,105449,2,1,1,0,1,,485.0,,32,2.0,1.0,6.0,3.0,2.0,3,3,1169.1799321231,400.0,53128.88846713417,0,1,1,2,120.0,4,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04630249325697393,26564.444233567086,7,4,7,7_1,7_2,7_0_0 -29575,1,44.0,16.0,6,111,695.0,0.0,0.0,0,52,0.0,0.0,960.6110881652718,755.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,4,103553,1,3,0,1,2,,314.0,403.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1643.23516373597,695.0,12248.407438639071,0,1,2,3,45.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06164066665665137,12248.407438639071,2,1,2_1,2_0_1,2_2_1,2_0_0 -29576,2,50.0,0.0,1,111,533.0,1168.0,0.0,21,48,0.0,0.0,736.698863297971,2115.0,0.0,2118.3465881898205,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,103207,2,1,3,0,1,,492.0,,43,4.0,1.0,6.0,4.0,2.5,2,2,1080.9942806211,533.0,30648.808103682364,1,1,0,1,110.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06900757748376808,12259.523241472945,2,1,2_0,2_1_0,2_2_0,2_1_0 -29577,2,54.0,0.0,6,111,750.0,0.0,0.0,52,62,0.0,776.3793786145933,1036.630670681948,1650.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,129215,2,1,2,0,1,,680.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1139.17432020744,750.0,32237.331252861746,1,1,0,1,86.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0511828968427257,21491.554168574497,6,3,6,6_1,6_2,6_0_0 -29578,2,49.0,0.0,7,111,744.0,1060.0,0.0,64,62,0.0,155.27587572291867,1028.3376253164924,1954.0,0.0,1922.472074898296,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,118582,2,1,2,0,1,,480.0,,43,3.0,0.0,5.0,5.0,3.0,1,1,1060.93297042542,744.0,54523.51222698927,1,1,1,2,119.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035837749994263306,18174.504075663088,4,2,4_0,4_1_0,4_2_0,4_0_0 -29579,2,39.0,0.0,2,111,390.0,930.0,0.0,67,63,0.0,517.5862524097289,539.0479487546129,1820.0,0.0,1686.6971977881274,42,0,0,0,0,0,0,0,0,1,15.0,1,,2,100482,2,1,1,0,1,,288.0,,43,3.0,5.0,2.0,3.0,2.0,2,2,1221.04872120442,390.0,42699.195862620014,1,1,1,2,70.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042623753521158825,21349.597931310007,6,3,6,6_1,6_2,6_0_1 -29580,2,63.0,0.0,6,111,1237.0,0.0,0.0,0,54,0.0,0.0,1709.7495195114261,1297.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131423,2,1,2,0,1,,321.0,,11,0.0,5.0,6.0,1.0,1.0,2,2,1114.41699673201,1237.0,15036.484934559483,0,5,0,1,95.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08625686160327321,15036.484934559483,3,2,3_0,3_1_0,3_2_0,3_0_0 -29581,1,58.0,240.0,1,111,470.0,0.0,0.0,0,85,0.0,0.0,649.6218869606873,536.0,113.54158227655265,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101109,2,3,3,0,1,,120.0,305.0,11,0.0,3.0,3.0,1.0,1.0,3,3,1297.13205296732,470.0,10381.222153585364,0,6,2,3,55.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.051631685756275005,10381.222153585364,2,1,2_1,2_1_1,2_2_1,2_1_0 -29582,2,54.0,0.0,1,111,1200.0,1350.0,0.0,75,47,0.0,569.3448776507017,1658.6090730911167,3100.0,0.0,2448.431416144056,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,124411,2,1,3,0,1,,638.0,,42,1.0,1.0,6.0,4.0,2.5,1,1,1066.74172135134,1200.0,41030.45105895193,5,1,0,1,110.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07555364174636947,16412.180423580772,4,2,4_0,4_1_0,4_2_0,4_1_0 -29583,2,65.0,0.0,2,111,700.0,1950.0,0.0,77,77,0.0,0.0,967.5219593031513,2650.0,0.0,3536.6231566525253,71,0,0,0,0,0,0,0,0,0,,1,,2,127486,2,2,3,0,1,,400.0,625.0,41,0.0,4.0,7.0,2.0,1.5,1,1,1124.00200090127,700.0,63487.2903099441,5,5,2,3,105.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04174063796175164,42324.860206629404,9,5,9,9_1,9_2,9_0_1 -29584,2,67.0,0.0,5,111,800.0,0.0,0.0,75,75,0.0,207.03450096389156,1105.7393820607444,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,118140,2,1,2,0,1,,302.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,1139.58472734699,800.0,55273.45180193396,5,5,0,1,150.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018091868110270817,36848.96786795597,9,5,9,9_1,9_2,9_0_0 -29585,1,26.0,220.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,710.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,2,,2,113585,2,2,0,0,1,,231.0,229.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1273.39523151871,0.0,13028.0,0,1,2,3,63.0,4,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05449800429843414,10021.538461538461,2,1,2_1,2_0_1,2_2_1,2_0_1 -29586,1,53.0,234.0,1,111,155.0,289.0,0.0,0,77,0.0,0.0,214.23700527426922,444.0,0.0,524.1456883449127,71,0,0,0,0,0,0,0,0,0,,2,,1,112419,1,2,0,0,2,,110.0,219.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1414.41402596889,155.0,10003.678842168436,0,7,2,3,60.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04438367194760491,10003.678842168436,2,1,2_1,2_0_1,2_2_1,2_1_0 -29587,1,39.0,618.0,5,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1450.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,114719,2,2,2,0,2,,257.0,850.0,32,4.0,0.0,7.0,7.0,3.6,3,3,1211.50350228342,0.0,22078.21746292442,0,4,2,3,111.0,4,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.065675591901156,6132.838184145671,1,1,1_1,1_1_1,1_2_1,1_0_0 -29588,2,51.0,0.0,7,111,521.0,808.0,0.0,63,47,0.0,0.0,720.1127725670598,1329.0,0.0,1465.4315438847386,70,0,0,0,0,0,0,0,0,2,35.0,1,,5,124284,2,1,2,0,1,,516.0,,43,2.0,2.0,4.0,2.0,1.5,5,4,1057.18325959135,521.0,52655.672222984875,1,1,1,2,105.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025239446082313512,35103.781481989914,9,5,9,9_1,9_2,9_0_0 -29589,2,32.0,0.0,9,111,450.0,1679.0,0.0,22,47,0.0,0.0,621.9784024091688,2129.0,0.0,3045.1232205228666,71,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,119788,2,1,1,0,1,,204.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1032.59238781148,450.0,31066.596659311028,1,1,1,2,95.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0685301973482156,20711.064439540685,5,3,5,5_1,5_2,5_0_0 -29590,2,60.0,0.0,6,111,507.0,422.0,0.0,75,47,0.0,207.03450096389156,700.7623333809968,1129.0,0.0,765.3615241576234,50,0,0,0,0,0,0,0,0,0,,1,,4,120315,1,1,3,0,1,,401.0,,42,2.0,4.0,5.0,3.0,2.0,1,1,1201.06702220117,507.0,17818.117654032023,6,4,0,1,125.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06336247306934362,8909.058827016011,1,1,1_0,1_1_0,1_2_0,1_0_0 -29591,2,51.0,0.0,8,111,770.0,0.0,0.0,0,33,0.0,0.0,1064.2741552334664,770.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,124388,2,1,0,0,1,,247.0,489.0,12,1.0,1.0,2.0,1.0,1.0,3,3,1614.90212034071,770.0,42170.96547396151,0,1,2,3,57.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018259008095876703,42170.96547396151,9,5,9,9_0,9_2,9_0_0 -29592,1,75.0,61.0,5,111,450.0,450.0,0.0,77,78,0.0,0.0,621.9784024091688,900.0,0.0,816.143805381352,50,0,0,0,0,0,0,0,0,0,,2,,3,119472,2,1,0,0,1,,330.0,386.0,41,0.0,4.0,3.0,3.0,2.0,2,2,1402.67586438614,450.0,30573.18352848166,5,5,2,3,65.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029437562469134735,15286.59176424083,3,2,3_1,3_0_1,3_2_1,3_0_0 -29593,2,60.0,0.0,5,111,200.0,520.0,0.0,0,52,0.0,0.0,276.4348455151861,720.0,0.0,943.0995084406734,20,0,0,0,0,0,0,0,0,2,4.0,2,,3,129095,2,2,0,0,1,,242.0,326.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1395.24067010537,200.0,13366.147406380467,0,1,2,3,63.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05386742926808518,13366.147406380467,3,2,3_0,3_0_0,3_2_0,3_0_0 -29594,2,75.0,0.0,2,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,497.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,133197,2,1,0,0,1,,131.0,400.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1285.4492235735,0.0,14616.58793727275,5,5,2,3,78.0,4,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0340024636483481,9744.391958181834,2,1,2_0,2_0_0,2_2_0,2_0_1 -29595,1,52.0,346.0,5,111,220.0,630.0,0.0,0,85,0.0,0.0,304.0783300667047,850.0,0.0,1142.6013275338928,71,0,0,0,0,0,0,0,0,0,,2,,3,105795,1,2,0,0,1,,100.0,600.0,11,0.0,0.0,4.0,1.0,1.0,2,2,1626.32313374408,220.0,8896.548087543255,0,7,2,3,62.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0955426747133701,8896.548087543255,1,1,1_1,1_0_1,1_2_1,1_0_0 -29596,2,66.0,0.0,2,111,357.0,1218.0,0.0,0,75,0.0,0.0,493.4361992446072,1575.0,0.0,2209.029233232193,71,0,0,0,0,0,0,0,0,0,,1,,2,116529,2,1,2,0,1,,241.0,,11,0.0,1.0,4.0,1.0,1.0,5,5,1115.53978494806,357.0,29128.4048390624,0,5,0,1,72.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05407093209195787,29128.4048390624,8,4,8,8_1,8_2,8_0_1 -29597,1,25.0,406.0,2,300,0.0,0.0,0.0,63,56,0.0,0.0,0.0,910.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,111707,2,1,2,0,1,,266.0,409.0,43,2.0,1.0,5.0,4.0,2.1,3,2,1152.4960539513,0.0,13280.540391029392,4,4,2,3,84.0,0,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06852130810992284,6324.0668528711385,1,1,1_1,1_1_1,1_0_1,1_0_1 -29598,2,83.0,0.0,2,300,286.0,1580.0,0.0,78,78,0.0,0.0,395.3018290867161,1866.0,0.0,2865.571583338969,71,0,0,0,0,0,0,0,0,0,,2,,2,102366,2,3,0,0,1,,470.0,415.0,41,1.0,1.0,4.0,3.0,2.0,1,1,2054.39191007789,286.0,43437.473513251796,5,5,2,3,70.0,0,0,8,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04295829957584263,21718.736756625898,6,3,6,6_0,6_0,6_0_1 -29599,2,79.0,0.0,2,300,220.0,475.0,0.0,0,75,0.0,0.0,304.0783300667047,723.0,48.169156117325365,861.4851279025382,70,0,0,0,0,0,0,0,0,0,,2,,2,127851,2,2,0,0,1,,280.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1622.1510874247,220.0,26800.560845200584,0,5,1,2,78.0,0,0,8,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02697704739001662,26800.560845200584,7,4,7,7_0,7_0,7_0_1 -29600,2,63.0,0.0,2,300,292.0,730.0,0.0,0,74,0.0,0.0,403.5948744521717,1022.0,0.0,1323.9666176186377,71,0,0,0,0,0,0,0,0,0,,1,,2,109347,2,2,1,0,1,,311.0,414.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1454.1386608305,292.0,17478.436361267282,0,5,2,3,68.0,0,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05847204972321102,17478.436361267282,4,2,4_0,4_1_0,4_0_0,4_0_1 -29601,1,23.0,459.0,1,300,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1417.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,108146,2,2,0,0,1,,0.0,490.0,32,1.0,0.0,5.0,4.0,1.9,3,3,1772.53645067342,0.0,17992.49946489665,0,4,2,3,110.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07875503916310048,9469.736560471922,1,1,1_1,1_0_1,1_0_1,1_1_0 -29602,2,72.0,0.0,1,300,605.0,1360.0,0.0,78,77,0.0,0.0,836.215407683438,1965.0,0.0,2466.5679451525307,71,0,0,0,0,0,0,0,0,0,,1,,1,114386,2,1,1,0,1,,555.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,1323.83347080527,605.0,28186.544174535535,5,5,0,1,160.0,0,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06971411563732005,18791.029449690355,5,3,5,5_1,5_0,5_1_0 -29603,2,59.0,0.0,1,300,497.0,0.0,0.0,78,52,0.0,232.913813584378,686.9405911052374,2272.0,2666.506856494797,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,106938,2,1,4,0,1,,716.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1136.35863256501,497.0,33840.844422816306,5,1,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06713780458941986,22560.562948544204,6,3,6,6_1,6_0,6_1_0 -29604,2,56.0,0.0,1,300,300.0,0.0,0.0,0,62,0.0,0.0,414.65226827277917,358.0,99.77896624303112,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,112195,1,1,2,0,2,,348.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1287.54431098718,300.0,6810.777085876654,0,4,0,1,45.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.052563752342207185,6810.777085876654,1,1,1_0,1_1_0,1_0_0,1_1_0 -29605,1,51.0,33.0,1,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,98.0,168.59204641063877,0.0,71,0,0,0,0,0,0,0,0,1,3.0,2,,1,108015,2,1,0,1,1,,0.0,467.0,32,1.0,1.0,4.0,2.0,1.5,2,2,1742.65831926155,0.0,23095.420385693604,0,1,2,3,80.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0042432654770253,15396.946923795736,3,2,3_1,3_0_1,3_0_1,3_1_0 -29606,2,69.0,0.0,1,300,530.0,920.0,0.0,72,78,0.0,103.51725048194578,732.5523406152432,1550.0,0.0,1668.560668779653,50,0,0,0,0,0,0,0,0,0,,1,,1,127562,2,1,2,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1258.95827669577,530.0,24961.978867829,5,5,0,1,125.0,0,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06209443603037579,16641.319245219333,4,2,4_0,4_1_0,4_0_0,4_1_0 -29607,2,58.0,0.0,7,300,1892.0,0.0,0.0,62,52,0.0,0.0,2615.0736385736604,1948.0,96.33831223465073,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,132154,2,1,2,0,1,,960.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1103.08000730983,1892.0,33514.30936574987,1,1,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05812442615901759,22342.87291049991,6,3,6,6_1,6_0,6_0_0 -29608,0,55.0,0.0,6,300,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1404.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,1.0,2,,4,126787,2,1,0,0,1,,0.0,,12,1.0,1.0,5.0,1.0,1.0,2,2,1761.11716805653,0.0,28863.754641950924,0,1,5,0,111.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048642320357013075,28863.754641950924,8,4,8,8_0,8_0,8_0_0 -29609,2,82.0,0.0,2,300,327.0,1710.0,0.0,78,75,0.0,0.0,451.9709724173293,2037.0,0.0,3101.346460449138,60,0,0,0,0,0,0,0,0,0,,1,,2,131077,2,2,2,0,2,,398.0,,41,0.0,6.0,5.0,2.0,1.5,1,1,1304.94515688179,327.0,29466.938448873872,5,5,0,1,108.0,0,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06912832167937173,19644.62563258258,5,3,5,5_1,5_0,5_0_1 -29610,1,44.0,115.0,8,300,1015.0,1022.0,0.0,85,56,209.1018827825201,0.0,1402.9068409895694,2177.0,0.0,1853.5532646660927,71,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,103927,2,1,2,0,1,,648.0,,42,1.0,0.0,6.0,5.0,2.8,2,2,1066.91278760009,1015.0,28171.299853303666,6,1,1,2,128.0,0,0,8,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07727722935527598,10061.178519037025,2,1,2_1,2_1_1,2_0_1,2_0_0 -29611,2,66.0,0.0,1,300,910.0,0.0,0.0,72,72,0.0,0.0,1257.778547094097,2710.0,3096.588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112038,2,1,2,0,1,,1140.0,,41,0.0,2.0,9.0,2.0,1.5,1,1,1258.95827669577,910.0,85038.2726678222,5,5,0,1,230.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03186800384088049,56692.18177854813,10,5,10,10_1,10_0,10_1_0 -29612,0,70.0,0.0,6,300,880.0,0.0,0.0,0,78,0.0,0.0,1216.313320266819,908.0,48.169156117325365,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,121197,2,1,2,0,1,,430.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1316.8250341337,880.0,24102.66810520395,0,5,0,1,99.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03767217786996602,24102.66810520395,6,3,6,6_1,6_0,6_0_0 -29613,2,88.0,0.0,1,300,381.0,0.0,0.0,0,77,0.0,1392.3070189821708,526.6083807064296,1841.0,197.83760548187203,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,107905,2,2,3,0,2,,370.0,,21,0.0,0.0,4.0,2.0,1.5,1,1,1184.83184978009,381.0,20300.345001694917,0,5,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.09068811391364487,13533.563334463279,3,2,3_0,3_1_0,3_0_0,3_1_0 -29614,2,44.0,0.0,9,300,2208.0,0.0,0.0,62,43,0.0,0.0,3051.8406944876547,2208.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2008.0,6,117970,2,1,1,0,1,,420.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,1059.55306979816,2208.0,67914.91657529803,1,1,1,2,121.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03251126720522384,27165.966630119212,7,4,7,7_1,7_0,7_0_0 -29615,2,21.0,0.0,1,300,0.0,0.0,0.0,0,67,0.0,0.0,0.0,920.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,106552,2,1,0,0,1,,351.0,266.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1824.14613265724,0.0,19917.676298994724,0,1,2,3,38.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04619012711068278,19917.676298994724,5,3,5,5_0,5_0,5_1_0 -29616,1,37.0,173.0,5,300,396.0,300.0,0.0,0,52,0.0,0.0,547.3409941200684,736.0,68.81308016760767,544.0958702542347,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,102944,1,2,0,1,1,,500.0,450.0,32,1.0,0.0,4.0,4.0,2.3,1,1,1374.33462603503,396.0,22451.274718682595,0,1,2,3,75.0,0,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03278210298623023,9761.423790731564,2,1,2_1,2_0_1,2_0_1,2_0_0 -29617,2,42.0,0.0,1,300,1435.0,746.0,0.0,55,46,0.0,0.0,1983.4200165714603,2181.0,0.0,1352.985064032197,30,0,0,0,0,0,0,0,0,2,18.0,1,,1,114264,2,1,1,0,1,,804.0,,43,2.0,0.0,7.0,5.0,2.8,1,1,1150.3327406654,1435.0,44512.0,1,1,1,2,160.0,0,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04899802300503235,15897.142857142859,3,2,3_0,3_1_0,3_0_0,3_1_0 -29618,2,53.0,330.0,2,300,1716.0,0.0,0.0,0,67,0.0,0.0,2371.810974520297,2076.0,619.317721508469,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129507,2,3,0,0,1,,480.0,44.0,22,1.0,12.0,4.0,2.0,1.5,2,2,1811.848810381,1716.0,15428.507269499434,0,1,2,3,60.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13455611510155863,10285.671512999623,2,1,2_0,2_0_0,2_0_0,2_0_1 -29619,2,52.0,0.0,1,300,1386.0,0.0,0.0,85,85,0.0,0.0,1915.6934794202398,1536.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109516,2,1,1,0,1,,555.0,,41,1.0,0.0,5.0,5.0,2.8,3,3,1137.54498922871,1386.0,16461.17819908004,6,7,0,1,180.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09331045332379925,5878.992213957158,1,1,1_0,1_1_0,1_0_0,1_1_0 -29620,0,86.0,0.0,6,300,1200.0,0.0,0.0,0,77,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,132234,2,2,3,0,1,,370.0,,11,0.0,2.0,4.0,1.0,1.0,4,4,1214.686065822,1200.0,23242.692442874584,0,5,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051629130443873295,23242.692442874584,6,3,6,6_1,6_0,6_0_0 -29621,2,52.0,0.0,1,300,960.0,2292.0,0.0,54,64,0.0,227.73795106028072,1326.8872584728933,3532.0,103.2196202514115,4156.892448742353,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,130665,2,1,1,0,1,,516.0,,43,2.0,2.0,8.0,3.0,2.0,2,2,1372.75264915462,960.0,43054.0,1,1,1,2,300.0,0,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08203651228689553,21527.0,6,3,6,6_1,6_0,6_1_0 -29622,2,68.0,0.0,5,300,1572.0,0.0,0.0,78,78,0.0,0.0,2172.7778857493627,1872.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,115743,2,1,2,0,1,,555.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1219.94152823988,1572.0,31676.322929801066,5,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05909776851778536,21117.54861986738,5,3,5,5_1,5_0,5_0_0 -29623,2,58.0,0.0,1,300,0.0,0.0,0.0,71,69,0.0,103.51725048194578,0.0,280.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128421,2,1,4,0,1,,0.0,,42,2.0,2.0,6.0,3.0,2.0,1,1,1192.51530299702,0.0,30857.03921864594,5,1,0,1,140.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009074104550860627,15428.51960932297,3,2,3_0,3_1_0,3_0_0,3_1_0 -29624,2,38.0,0.0,1,300,1450.0,0.0,0.0,55,48,0.0,258.79312620486445,2004.1526299850993,1796.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,104126,1,2,3,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,4,4,1211.07501766678,1450.0,54436.78201998803,1,1,1,2,85.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03299239839968033,25922.277152375253,7,4,7,7_1,7_0,7_1_0 -29625,2,47.0,0.0,1,111,728.0,1821.0,0.0,21,35,0.0,0.0,1006.2228376752774,2549.0,0.0,3302.6619324432045,71,1,2,2,2,2,2,2,1,1,5.0,1,,1,122936,2,2,2,0,1,,345.0,,43,2.0,1.0,6.0,4.0,2.1,4,4,1253.29927016615,728.0,78721.59682496072,1,1,0,1,180.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.032379932608173075,37486.474678552724,9,5,9,9_1,9_2,9_1_0 -29626,2,59.0,0.0,1,111,320.0,558.0,0.0,0,77,0.0,0.0,442.2957528242978,878.0,0.0,1012.0183186728765,41,0,0,0,0,0,0,0,0,0,,2,,1,125716,2,1,0,0,1,,175.0,260.0,11,0.0,1.0,1.0,1.0,1.0,4,4,1799.7044834638,320.0,12054.18817054411,0,5,2,3,40.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07283775461092443,12054.18817054411,2,1,2_0,2_0_0,2_2_0,2_1_0 -29627,2,61.0,0.0,6,111,260.0,454.0,0.0,0,77,0.0,0.0,359.36529916974195,714.0,0.0,823.3984169847419,71,0,0,0,0,0,0,0,0,0,,2,,4,107033,2,1,0,0,1,,0.0,484.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2102.22308921469,260.0,17638.960905015832,0,5,2,3,136.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04047857489139092,17638.960905015832,4,2,4_0,4_0_0,4_2_0,4_0_0 -29628,2,32.0,0.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1623.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,130928,2,1,0,0,1,,0.0,596.0,22,2.0,0.0,3.0,2.0,1.5,2,1,1989.43813013824,0.0,30729.0,0,1,2,3,99.0,7,5,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05281655764912623,20486.0,5,3,5,5_0,5_2,5_1_0 -29629,2,48.0,0.0,2,111,1047.0,0.0,0.0,52,62,3584.6037048432017,0.0,1447.1364162719992,3597.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,13.0,1,,2,119311,2,1,2,0,1,,315.0,,43,2.0,1.0,6.0,3.0,2.0,5,4,1475.17200813745,1047.0,47479.69555176186,1,1,0,1,120.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07575869975995504,23739.84777588093,6,3,6,6_1,6_2,6_0_1 -29630,2,34.0,0.0,5,111,383.0,861.0,0.0,43,37,0.0,0.0,529.3727291615814,1244.0,0.0,1561.5551476296534,71,0,0,0,0,0,0,0,0,1,4.0,8,,3,125614,2,1,0,0,1,,253.0,,43,2.0,0.0,4.0,2.0,1.5,4,3,1601.31792683684,383.0,44326.50356789383,1,1,1,2,100.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028064473844515967,29551.002378595887,8,4,8,8_0,8_2,8_0_0 -29631,2,59.0,0.0,1,111,369.0,1888.0,0.0,52,63,0.0,0.0,510.0222899755184,2347.0,154.82943037711726,3424.1766767999834,50,0,0,0,0,0,0,0,0,2,7.0,2,,1,119322,1,1,0,0,2,,0.0,537.0,43,3.0,1.0,3.0,3.0,2.0,1,1,2029.59748918856,369.0,48677.36367957439,1,1,2,3,90.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04821542956700487,24338.681839787194,7,4,7,7_0,7_2,7_1_0 -29632,2,36.0,0.0,2,111,829.5,1973.0,0.0,42,35,0.0,0.0,1146.5135217742345,2803.0,0.0,3578.337173372017,71,2,1,2,1,1,2,2,2,0,,1,,2,100723,2,1,2,0,1,,350.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1228.61776379836,829.5,36839.45437026056,1,4,1,2,150.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0760869032377087,17542.597319171695,4,2,4_0,4_1_0,4_2_0,4_0_1 -29633,2,84.0,0.0,2,111,205.0,1428.0,0.0,0,75,0.0,0.0,283.3457166530658,1633.0,0.0,2589.896342410157,71,0,0,0,0,0,0,0,0,0,,2,,2,123718,2,1,0,0,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,561.07538818662,205.0,13479.642271646639,0,5,0,1,72.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12114564816270283,13479.642271646639,3,2,3_0,3_0_0,3_2_0,3_0_1 -29634,1,41.0,406.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,246.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107950,2,1,0,1,1,,0.0,532.0,31,0.0,2.0,4.0,3.0,1.6,1,1,2016.57575489727,0.0,6605.314311271848,0,6,2,3,65.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03724273946815907,4128.321444544905,1,1,1_1,1_0_1,1_2_1,1_0_1 -29635,1,78.0,81.0,2,111,188.0,160.0,0.0,0,77,0.0,0.0,259.84875478427494,348.0,0.0,290.18446413559184,71,2,2,2,1,2,2,2,1,0,,8,,2,119734,1,2,0,1,1,643.0,0.0,248.0,11,0.0,2.0,5.0,1.0,1.0,2,2,1872.49327392173,188.0,12338.727624912583,0,6,2,3,91.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.028203880544163118,12338.727624912583,2,1,2_1,2_0_1,2_2_1,2_0_1 -29636,1,31.0,208.0,5,111,0.0,0.0,0.0,63,63,0.0,0.0,0.0,1341.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,10.0,2,,3,112812,2,1,0,1,1,,0.0,313.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1553.76471614996,0.0,9455.268218846071,4,1,2,3,60.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14182569642256607,6303.512145897381,1,1,1_1,1_0_1,1_2_1,1_0_0 -29638,2,55.0,0.0,9,111,0.0,0.0,0.0,77,64,0.0,0.0,0.0,1040.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,1,2010.0,6,128512,2,1,1,0,1,,512.0,790.0,42,1.0,3.0,4.0,2.0,1.5,2,2,1470.74106543883,0.0,35907.09743434687,5,1,2,3,97.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02896363321768219,23938.064956231246,6,3,6,6_1,6_2,6_0_0 -29639,2,83.0,0.0,1,111,541.0,0.0,0.0,0,78,0.0,0.0,747.7562571185784,541.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,123937,2,2,0,0,1,,21.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1975.44466090846,541.0,10796.829455264186,0,5,0,1,30.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.050107302541138675,10796.829455264186,2,1,2_0,2_0_0,2_2_0,2_1_0 -29640,0,72.0,0.0,1,111,2375.0,0.0,0.0,0,77,0.0,175.97932581930783,3282.6637904928352,2731.0,319.98082277937567,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,123693,2,2,2,0,1,,235.0,,21,0.0,1.0,5.0,2.0,1.5,3,3,1292.11499249874,2375.0,36749.383163168015,0,5,0,1,77.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.07431417250935353,24499.588775445343,7,4,7,7_1,7_2,7_1_0 -29641,1,68.0,246.0,2,111,276.0,0.0,0.0,0,72,0.0,0.0,381.48008681095683,276.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,127000,1,3,0,1,2,38.0,0.0,402.0,11,0.0,2.0,3.0,1.0,1.0,2,2,2185.23802109294,276.0,14753.89414293064,0,5,2,3,56.0,7,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018706925597147924,14753.89414293064,3,2,3_1,3_0_1,3_2_1,3_0_1 -29642,2,57.0,0.0,5,111,169.0,906.0,0.0,0,54,0.0,0.0,233.58744446033228,1075.0,0.0,1643.1695281677887,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,105632,2,3,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1608.39746267759,169.0,11978.761984618634,0,1,1,2,62.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08974216211828544,11978.761984618634,2,1,2_0,2_0_0,2_2_0,2_0_0 -29643,0,28.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,429.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,107159,2,1,0,1,2,500.0,149.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1934.69014963614,0.0,3459.0,0,1,5,0,68.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12402428447528187,3459.0,1,1,1_0,1_0_0,1_2_0,1_0_0 -29644,2,61.0,0.0,5,111,301.0,103.0,0.0,68,74,0.0,0.0,416.0344425003551,404.0,0.0,186.80624878728725,70,0,0,0,0,0,0,0,0,0,,2,,3,116685,2,1,0,1,1,,0.0,642.0,42,1.0,1.0,4.0,2.0,1.5,1,1,2111.26978150024,301.0,35314.82388341677,1,5,2,3,77.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01143995511159016,23543.215922277846,6,3,6,6_0,6_2,6_0_0 -29646,1,52.0,142.0,6,111,830.0,0.0,0.0,0,52,0.0,0.0,1147.2046088880224,865.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,109549,1,1,0,0,1,,0.0,450.0,32,1.0,1.0,5.0,2.0,1.5,3,2,1584.98229653431,830.0,10627.550345351689,0,1,2,3,93.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0813922279256326,7085.033563567792,1,1,1_1,1_0_1,1_2_1,1_0_0 -29647,1,37.0,147.0,1,111,466.0,1451.0,0.0,85,53,0.0,0.0,644.0931900503837,1997.0,137.62616033521533,2631.6103591296483,71,2,2,2,2,1,2,2,2,0,,1,,1,101847,2,3,4,0,1,,285.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,1,1,1285.60282551108,466.0,44563.96298214209,6,1,1,2,140.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.04481199306265129,16505.171474867442,4,2,4_1,4_1_1,4_2_1,4_1_0 -29648,2,71.0,0.0,1,111,333.0,0.0,0.0,0,77,2837.8112663342013,0.0,460.2640177827849,2333.0,172.03270041901916,0.0,71,1,2,2,1,2,2,2,2,0,,1,,1,101623,2,1,2,0,1,,300.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1443.58179239068,333.0,19497.492952337154,0,5,0,1,75.0,7,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.11965640945239293,19497.492952337154,5,3,5,5_1,5_2,5_1_0 -29649,0,91.0,0.0,2,111,340.0,391.0,0.0,0,78,0.0,0.0,469.9392373758164,731.0,0.0,709.1382842313525,71,2,2,2,2,1,2,2,2,0,,2,,2,120428,1,2,0,1,2,,304.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1792.71382722953,340.0,31546.452295985386,0,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.023172177750492323,31546.452295985386,8,4,8,8_0,8_3,8_0_1 -29650,1,84.0,101.0,2,111,249.0,140.0,0.0,0,77,0.0,0.0,344.1613826664067,389.0,0.0,253.91140611864284,10,2,1,2,2,1,2,2,2,0,,2,,2,129836,2,1,0,1,1,795.0,89.0,274.0,11,0.0,6.0,3.0,1.0,1.0,3,2,1705.34669971784,249.0,15248.707304333297,0,5,2,3,57.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025510359156113913,15248.707304333297,3,2,3_1,3_0_1,3_3_1,3_0_1 -29651,1,36.0,468.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1215.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125806,1,3,0,0,1,,438.0,425.0,31,0.0,0.0,4.0,4.0,1.9,2,2,1367.36042288111,0.0,19938.28070472417,0,6,2,3,84.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06093805268335491,10493.831949854826,2,1,2_1,2_0_1,2_3_1,2_0_1 -29652,2,62.0,0.0,2,111,400.0,70.0,0.0,0,75,0.0,24.84414011566699,552.8696910303722,494.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,122587,2,2,0,1,1,,0.0,,21,0.0,2.0,2.0,2.0,1.5,1,1,1746.41016075185,400.0,38504.315006514684,0,5,0,1,49.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012829730899417854,25669.543337676456,7,4,7,7_0,7_3,7_0_1 -29653,2,56.0,0.0,2,111,0.0,0.0,465.0,56,77,0.0,0.0,237.57470069944915,465.0,0.0,531.6092852134736,71,0,0,0,0,0,0,0,0,0,,2,,2,103223,2,2,0,1,1,733.0,370.0,349.0,42,3.0,1.0,4.0,4.0,2.5,1,1,1416.7814367206,0.0,59085.81868703269,1,5,2,3,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007869908724850275,23634.327474813075,6,3,6,6_0,6_3,6_0_1 -29654,2,74.0,0.0,2,111,200.0,70.0,0.0,0,77,0.0,0.0,276.4348455151861,270.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,118520,1,2,0,1,1,324.0,130.0,276.0,11,0.0,3.0,4.0,1.0,1.0,3,3,1612.50533383029,200.0,21680.096799460214,0,5,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012453818933443248,21680.096799460214,6,3,6,6_0,6_3,6_0_1 -29655,2,56.0,0.0,2,111,225.0,77.0,0.0,0,53,0.0,0.0,310.9892012045844,302.0,0.0,139.65127336525356,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,126797,2,2,0,1,1,21.0,121.0,171.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1856.94952694282,225.0,25046.132888879125,0,1,2,3,31.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012057749647016076,25046.132888879125,7,4,7,7_0,7_3,7_0_1 -29656,2,46.0,0.0,5,111,960.0,500.0,0.0,68,67,0.0,0.0,1326.8872584728933,1460.0,0.0,906.8264504237244,71,1,2,2,2,1,2,2,2,0,,2,,3,127925,2,1,0,0,1,,920.0,224.0,43,5.0,2.0,4.0,6.0,3.3,4,4,1378.69399132229,960.0,30058.0,1,4,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04857275933195821,9108.48484848485,1,1,1_0,1_0_0,1_3_0,1_0_0 -29657,2,82.0,0.0,2,111,444.0,1200.0,0.0,0,77,0.0,0.0,613.6853570437131,1644.0,0.0,2176.3834810169387,70,0,0,0,0,0,0,0,0,0,,1,,2,125464,1,2,3,0,1,,240.0,,21,0.0,2.0,4.0,2.0,1.5,2,2,1206.10491289033,444.0,20558.83360956928,0,5,0,1,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07996562602825807,13705.889073046186,3,2,3_0,3_1_0,3_3_0,3_0_1 -29658,2,59.0,0.0,5,111,729.0,1452.0,0.0,75,90,0.0,0.0,1007.6050119028533,2181.0,0.0,2633.4240120304958,71,0,0,0,0,0,0,0,0,0,,1,,3,122226,2,1,3,0,1,,260.0,,42,1.0,3.0,7.0,2.0,1.5,3,3,1198.11538918315,729.0,54967.0,5,1,0,1,160.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03967835246602507,36644.666666666664,9,5,9,9_1,9_3,9_0_0 -29659,2,42.0,0.0,1,111,1250.0,0.0,0.0,0,37,3733.962192545002,227.73795106028072,1727.717784469913,4228.0,443.84436708106944,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117082,2,2,2,0,1,,685.0,997.0,22,3.0,0.0,9.0,3.0,2.0,5,5,1586.5864282573,1250.0,78945.27463998437,0,1,2,3,240.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053556087039801026,39472.63731999219,9,5,9,9_1,9_3,9_1_0 -29660,2,62.0,0.0,1,111,432.0,0.0,0.0,68,78,1381.5660112416506,0.0,597.099266312802,1457.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108154,2,1,2,0,1,,240.0,,42,1.0,2.0,4.0,2.0,1.5,3,3,1297.11748336782,432.0,12053.86809494739,1,5,0,1,110.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12087406204575356,8035.912063298259,1,1,1_0,1_1_0,1_3_0,1_1_0 -29661,0,78.0,0.0,5,111,410.0,0.0,0.0,72,71,0.0,0.0,566.6914333061316,2686.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,116237,2,1,2,1,1,,300.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1263.73985454955,410.0,22442.200890363332,5,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11968523110197124,14961.467260242222,3,2,3_0,3_1_0,3_3_0,3_0_0 -29662,2,80.0,0.0,1,111,322.0,0.0,0.0,78,78,0.0,0.0,445.06010127944967,322.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,130235,2,1,0,1,1,,188.0,,41,0.0,1.0,4.0,2.0,1.5,5,5,1617.32952286906,322.0,35879.70293666809,5,5,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008974433276896635,23919.801957778724,6,3,6,6_0,6_3,6_1_0 -29663,0,90.0,0.0,6,111,1329.0,0.0,0.0,0,71,0.0,0.0,1836.9095484484117,1419.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,104263,2,1,3,0,1,,195.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1287.58692777246,1329.0,15117.455452746926,0,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09386500290577406,15117.455452746926,3,2,3_0,3_1_0,3_3_0,3_0_0 -29664,1,44.0,100.0,2,111,0.0,0.0,0.0,68,21,0.0,0.0,0.0,1457.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103362,2,1,2,0,1,,374.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1327.17699211394,0.0,23753.77121915629,4,1,1,2,90.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06133762873092752,10327.726617024475,2,1,2_1,2_1_1,2_3_1,2_0_1 -29665,2,68.0,0.0,2,111,712.0,1203.0,0.0,74,74,0.0,0.0,984.1080500340626,1915.0,0.0,2181.8244397194812,43,0,0,0,0,0,0,0,0,0,,1,,2,112221,2,2,2,0,1,,264.0,,41,0.0,4.0,7.0,2.0,1.5,3,3,1259.25346088718,712.0,73068.0,5,5,0,1,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026208463349208955,48712.0,10,5,10,10_1,10_3,10_0_1 -29666,2,48.0,0.0,8,111,0.0,0.0,1768.0,67,64,0.0,0.0,903.2947759927442,1768.0,0.0,2021.2585295858523,71,0,0,0,0,0,0,0,0,2,3.0,1,2000.0,6,102225,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,1236.71891453215,0.0,47034.09502976704,1,1,1,2,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03758975268645148,18813.638011906816,5,3,5,5_1,5_3,5_0_0 -29667,2,39.0,0.0,1,111,0.0,0.0,1260.0,0,63,0.0,0.0,643.7508018952816,1260.0,0.0,1440.4896760623158,71,0,0,0,0,0,0,0,0,0,,2,,1,100558,2,2,0,0,1,,150.0,483.0,12,1.0,0.0,3.0,1.0,1.0,4,4,1862.08708719445,0.0,20134.452005672196,0,1,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06257930435082305,20134.452005672196,5,3,5,5_0,5_3,5_1_0 -29668,2,48.0,0.0,5,111,200.0,0.0,0.0,0,47,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,128922,2,1,0,1,1,477.0,87.0,264.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1639.46729006722,200.0,10858.319951714006,0,1,2,3,67.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018419055700088265,10858.319951714006,2,1,2_0,2_0_0,2_3_0,2_0_0 -29669,1,78.0,209.0,2,111,272.0,0.0,0.0,0,78,0.0,0.0,375.9513899006531,272.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,102061,1,1,0,1,1,808.0,165.0,294.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1799.45984787706,272.0,8954.103885508199,0,5,2,3,65.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030377132483376628,8954.103885508199,1,1,1_1,1_0_1,1_3_1,1_0_1 -29670,2,78.0,0.0,5,111,280.0,240.0,0.0,0,74,0.0,0.0,387.00878372126056,520.0,0.0,435.27669620338776,71,2,1,2,2,1,2,2,2,0,,2,,3,111616,1,3,0,0,2,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1858.80165646397,280.0,24639.513171309463,0,5,0,1,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.021104313075693965,24639.513171309463,7,4,7,7_0,7_3,7_0_0 -29671,2,43.0,0.0,2,111,393.0,0.0,0.0,0,62,0.0,0.0,543.1944714373407,393.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,100336,1,1,0,1,1,918.0,291.0,357.0,32,1.0,0.0,5.0,3.0,1.8,3,2,1628.10096267209,393.0,29514.0,0,1,2,3,93.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01331571457613336,16396.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1 -29672,2,50.0,0.0,2,111,431.0,0.0,0.0,0,43,2837.8112663342013,0.0,595.7170920852261,2376.0,77.41471518855863,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,129174,2,2,0,1,1,,360.0,,32,1.0,1.0,4.0,2.0,1.5,3,3,1808.31338485388,431.0,59768.62473492886,0,1,1,2,85.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0397532988342538,39845.74982328591,9,5,9,9_0,9_3,9_0_1 -29673,1,43.0,220.0,2,111,96.0,35.0,0.0,0,54,0.0,0.0,132.68872584728933,131.0,0.0,63.47785152966071,71,2,1,2,2,1,2,2,2,0,,2,,2,100344,1,2,0,1,1,486.0,146.0,206.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1526.06236794501,96.0,1055.2654009251996,0,4,2,3,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.12413938700647845,1055.2654009251996,1,1,1_1,1_0_1,1_3_1,1_0_1 -29674,2,49.0,0.0,2,111,416.0,1054.0,0.0,63,54,0.0,0.0,574.9844786715871,1470.0,0.0,1911.590157493211,50,2,2,1,1,1,2,2,2,1,10.0,2,,2,102106,1,3,0,0,2,,280.0,476.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1857.77746358608,416.0,34508.857032693086,4,1,2,3,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.04259775971737771,23005.90468846206,6,3,6,6_0,6_3,6_0_1 -29675,1,36.0,244.0,1,111,770.0,0.0,0.0,56,85,4480.754631054002,0.0,1064.2741552334664,3910.0,240.84578058662683,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,101829,1,1,4,0,2,,1200.0,1200.0,42,3.0,0.0,9.0,7.0,3.6,2,2,1298.8325815184,770.0,52689.84921618258,1,6,2,3,260.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.07420784189299076,14636.069226717382,3,2,3_1,3_1_1,3_3_1,3_1_0 -29676,1,36.0,247.0,1,111,0.0,0.0,600.0,0,48,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,71,0,0,0,0,0,0,0,0,2,35.0,2,,1,131741,2,2,0,0,1,,190.0,,32,1.0,0.0,3.0,2.0,1.3,2,1,1530.34742751223,0.0,17419.754856167514,0,1,1,2,56.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03444365348158549,13399.811427821163,3,2,3_1,3_0_1,3_3_1,3_1_0 -29677,2,76.0,0.0,6,111,340.0,1000.0,0.0,77,78,0.0,0.0,469.9392373758164,1340.0,0.0,1813.6529008474488,41,2,2,2,2,1,2,2,2,0,,2,,4,106586,2,2,0,0,1,,569.0,336.0,41,0.0,9.0,3.0,2.0,1.5,2,2,1387.25983828185,340.0,28208.59372660743,5,5,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04750325425602697,18805.72915107162,5,3,5,5_0,5_3,5_0_0 -29678,2,55.0,0.0,1,111,1148.0,0.0,0.0,75,48,2539.0942909306013,310.55175144583734,1586.7360132571682,3148.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,131835,2,3,2,0,1,,600.0,,42,1.0,1.0,5.0,4.0,2.5,2,2,1170.07783593846,1148.0,63687.06594523257,5,1,0,1,90.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04942918869440633,25474.82637809303,7,4,7,7_1,7_3,7_1_0 -29679,2,69.0,0.0,1,111,411.0,1372.0,0.0,77,78,0.0,0.0,568.0736075337074,1783.0,0.0,2488.3317799627,71,0,0,0,0,0,0,0,0,0,,2,,1,126600,2,1,0,0,2,,172.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1768.96928784722,411.0,22059.669158949117,5,5,0,1,130.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08082623484299521,14706.446105966077,3,2,3_0,3_0_0,3_3_0,3_1_0 -29680,2,54.0,0.0,2,111,243.0,267.0,0.0,0,75,0.0,0.0,335.8683373009511,510.0,0.0,484.24532452626886,71,0,0,0,0,0,0,0,0,0,,2,,2,121635,2,3,0,0,1,,155.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1654.28767401228,243.0,31595.753118841887,0,7,1,2,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01614140983067327,31595.753118841887,8,4,8,8_0,8_3,8_0_1 -29681,2,52.0,0.0,7,111,326.0,976.0,0.0,55,52,0.0,0.0,450.58879818975333,1302.0,0.0,1770.1252312271101,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,123437,2,1,2,0,1,,310.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,1303.23739156997,326.0,42665.72709839704,1,1,1,2,133.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030516297003383694,21332.86354919852,6,3,6,6_1,6_3,6_0_0 -29683,2,42.0,0.0,1,111,300.0,690.0,0.0,0,46,0.0,0.0,414.65226827277917,990.0,0.0,1251.4205015847397,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,117664,2,1,0,0,1,,274.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1740.57767235754,300.0,28598.951614135152,0,1,1,2,79.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03461665355280675,28598.951614135152,8,4,8,8_0,8_3,8_1_0 -29684,2,25.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,748.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,132289,2,1,0,0,1,,197.0,560.0,12,1.0,0.0,3.0,1.0,1.0,3,3,1836.79973075258,0.0,15347.67045176606,0,1,2,3,80.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04873703812906196,15347.67045176606,3,2,3_0,3_0_0,3_3_0,3_0_1 -29686,2,32.0,0.0,2,111,810.0,0.0,0.0,43,63,0.0,0.0,1119.5611243365038,810.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,113040,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,5,5,1415.68912247696,810.0,42263.61059340212,1,1,0,1,41.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01916542360265006,28175.740395601413,8,4,8,8_0,8_3,8_0_1 -29687,0,50.0,0.0,1,111,776.0,1150.0,0.0,55,63,0.0,0.0,1072.5672005989222,1926.0,0.0,2085.7008359745664,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,105112,1,1,2,0,2,,380.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,1106.5442039276,776.0,50164.68324525311,1,1,5,0,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03839354452980125,20065.873298101244,5,3,5,5_1,5_3,5_1_0 -29690,2,33.0,0.0,2,111,445.0,947.0,0.0,21,35,0.0,0.0,615.0675312712891,1392.0,0.0,1717.5292971025342,71,0,0,0,0,0,0,0,0,0,,1,,2,123174,1,1,3,0,2,,403.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1089.90500766956,445.0,38846.0,1,1,1,2,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03583380528239716,18498.095238095237,4,2,4_0,4_1_0,4_3_0,4_0_1 -29691,2,58.0,0.0,5,111,724.0,0.0,0.0,86,65,0.0,0.0,1000.6941407649738,724.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,116882,2,1,0,1,1,,200.0,,42,1.0,2.0,3.0,2.0,1.5,3,3,1505.06860855685,724.0,31831.87402704994,5,1,0,1,69.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022744498152536125,21221.249351366627,5,3,5,5_0,5_3,5_0_0 -29692,2,62.0,0.0,1,111,150.0,0.0,0.0,0,75,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,118200,2,3,0,0,1,,0.0,190.0,11,0.0,2.0,1.0,1.0,1.0,3,3,2349.90724826867,150.0,37836.63236359498,0,5,2,3,35.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003964412016338021,37836.63236359498,9,5,9,9_0,9_3,9_1_0 -29693,1,39.0,218.0,1,111,0.0,0.0,1200.0,85,53,0.0,143.88897816990462,613.09600180503,1339.0,0.0,1371.8949295831578,43,1,2,2,1,1,2,2,2,0,,2,,1,128156,2,3,0,0,1,,516.0,530.0,42,1.0,0.0,4.0,4.0,2.1,6,5,1717.41289156209,0.0,26322.02991277101,6,1,2,3,106.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.05086993687178889,12534.299958462385,2,1,2_1,2_0_1,2_3_1,2_1_0 -29694,2,67.0,0.0,1,111,395.0,0.0,0.0,77,78,1493.5848770180007,0.0,545.9588198924926,1485.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,104733,2,1,0,0,1,,266.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1686.74267866104,395.0,27131.62258621172,5,5,0,1,100.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05473318063751471,18087.748390807814,4,2,4_0,4_0_0,4_3_0,4_1_0 -29695,2,58.0,0.0,1,111,488.0,1341.0,0.0,72,47,0.0,0.0,674.5010230570541,1829.0,0.0,2432.108540036429,71,0,0,0,0,0,0,0,0,2,1.0,2,,1,111623,2,1,0,0,1,,0.0,925.0,42,1.0,4.0,7.0,2.0,1.5,2,2,1900.22222886496,488.0,57441.31143745023,5,1,2,3,141.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03184119502549414,38294.207624966824,9,5,9,9_0,9_3,9_1_0 -29696,1,56.0,259.0,7,111,173.0,601.0,0.0,0,77,0.0,0.0,239.116141370636,774.0,0.0,1090.0053934093169,71,0,0,0,0,0,0,0,0,0,,2,,5,100056,1,1,0,0,1,,150.0,311.0,11,0.0,0.0,1.0,1.0,1.0,3,3,1496.95676596921,173.0,11525.072256886924,0,7,2,3,48.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06715793035809285,11525.072256886924,2,1,2_1,2_0_1,2_3_1,2_0_0 -29697,1,26.0,122.0,1,111,0.0,0.0,0.0,84,47,0.0,0.0,0.0,1279.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,119939,1,1,0,1,1,717.0,81.0,320.0,42,1.0,0.0,2.0,2.0,1.5,1,1,1685.37083408145,0.0,19090.0,3,1,2,3,43.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06699842849659507,12726.666666666666,2,1,2_1,2_0_1,2_3_1,2_1_0 -29698,2,56.0,0.0,2,111,444.0,0.0,0.0,0,63,1408.4505390279746,0.0,613.6853570437131,1387.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130453,2,2,0,1,1,,105.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,518.700211024162,444.0,10329.109981892543,0,4,0,1,45.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13428068850379962,10329.109981892543,2,1,2_0,2_0_0,2_3_0,2_0_1 -29699,1,38.0,426.0,2,111,309.0,618.0,0.0,43,21,0.0,0.0,427.09183632096256,927.0,0.0,1120.8374927237235,71,1,2,2,1,1,2,2,2,1,7.0,2,,2,127478,2,1,0,0,1,,419.0,406.0,43,2.0,0.0,5.0,4.0,2.1,2,2,485.959514897066,309.0,18913.86957475139,1,1,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.049011652339903844,9006.604559405423,1,1,1_1,1_0_1,1_3_1,1_0_1 -29700,1,65.0,57.0,2,111,290.0,0.0,0.0,77,77,0.0,0.0,400.8305259970199,290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128463,2,2,0,1,1,690.0,398.0,252.0,41,0.0,5.0,2.0,3.0,2.0,1,1,482.378798747324,290.0,29075.988886957493,5,5,2,3,57.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009973865416150444,14537.994443478747,3,2,3_1,3_0_1,3_3_1,3_0_1 -29701,0,59.0,0.0,5,111,484.0,1490.0,0.0,78,56,0.0,0.0,668.9723261467504,1974.0,0.0,2702.342822262699,71,2,2,1,2,1,2,2,2,0,,2,,3,106145,1,1,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,4,4,553.357728218576,484.0,40084.027960990556,5,1,5,0,82.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04924654782501101,26722.685307327036,7,4,7,7_0,7_3,7_0_0 -29702,2,56.0,0.0,2,111,274.0,0.0,0.0,0,52,0.0,0.0,378.715738355805,274.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,107406,2,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1719.23046136936,274.0,25883.28374613425,0,1,0,1,82.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010585982933518734,25883.28374613425,7,4,7,7_0,7_3,7_0_1 -29703,2,74.0,0.0,2,111,250.0,0.0,0.0,77,74,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108295,1,1,0,1,2,718.0,198.0,680.0,41,0.0,2.0,4.0,2.0,1.5,1,1,1746.38404384112,250.0,25768.248158400685,5,5,2,3,90.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009701862480647435,17178.832105600457,4,2,4_0,4_0_0,4_3_0,4_0_1 -29704,2,76.0,0.0,2,111,0.0,0.0,318.0,0,78,0.0,0.0,162.47044047833296,318.0,0.0,363.5521563395368,41,0,0,0,0,0,0,0,0,0,,2,,2,121846,1,2,0,1,1,576.0,190.0,423.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1822.99837899636,0.0,17524.97200865826,0,5,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018145535401876318,17524.97200865826,4,2,4_0,4_0_0,4_3_0,4_0_1 -29705,2,56.0,0.0,2,111,248.0,0.0,0.0,0,46,0.0,0.0,342.7792084388308,248.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,115171,2,2,0,1,1,,0.0,,32,2.0,1.0,3.0,2.0,1.5,4,4,1505.06860855685,248.0,43685.650592360376,0,1,1,2,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005676921291939499,29123.767061573584,8,4,8,8_0,8_3,8_0_1 -29706,2,66.0,0.0,5,111,563.0,0.0,0.0,52,74,0.0,0.0,778.1640901252489,563.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,124831,2,3,0,0,1,,0.0,,42,1.0,5.0,3.0,2.0,1.5,1,1,1426.14281418299,563.0,59625.89675800341,1,5,1,2,63.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009442205997923716,39750.59783866894,9,5,9,9_0,9_3,9_0_0 -29707,0,35.0,0.0,2,111,0.0,0.0,1380.0,85,63,0.0,0.0,705.0604020757846,1380.0,0.0,1577.6791690206314,71,2,2,2,2,2,2,2,1,0,,2,,2,114265,2,2,0,0,1,,410.0,,42,1.0,0.0,5.0,4.0,2.1,3,3,1705.31579183128,0.0,11527.156342631042,6,1,5,0,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.11971729704891108,5489.122067919544,1,1,1_0,1_0_0,1_3_0,1_0_1 -29708,2,33.0,0.0,2,111,400.0,700.0,0.0,55,48,0.0,0.0,552.8696910303722,1100.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,104385,2,2,0,0,1,,600.0,360.0,43,2.0,0.0,2.0,3.0,1.8,1,1,1378.74424447067,400.0,38002.99958251985,1,1,2,3,58.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02894508360087356,21112.77754584436,5,3,5,5_0,5_3,5_0_1 -29709,2,80.0,0.0,1,111,300.0,1200.0,0.0,0,78,0.0,0.0,414.65226827277917,1500.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,1,104737,2,1,4,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1158.3376676693,300.0,19791.208636021962,0,5,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07579122769035193,19791.208636021962,5,3,5,5_1,5_3,5_1_0 -29710,1,46.0,90.0,2,111,465.0,0.0,0.0,0,67,0.0,0.0,642.7110158228077,465.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116954,2,3,1,1,1,804.0,0.0,700.0,22,1.0,2.0,5.0,2.0,1.5,3,3,1535.96902832761,465.0,24520.61365707974,0,1,2,3,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01896363633076297,16347.075771386493,4,2,4_1,4_1_1,4_3_1,4_0_1 -29711,1,25.0,333.0,2,111,288.0,120.0,0.0,84,46,0.0,0.0,398.066177541868,408.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,107498,1,1,0,1,1,552.0,216.0,308.0,42,1.0,0.0,4.0,3.0,1.8,1,1,1472.94825140771,288.0,17184.25276113693,3,4,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023742667526557393,9546.807089520516,1,1,1_1,1_0_1,1_3_1,1_0_1 -29712,2,52.0,0.0,2,111,107.0,337.0,0.0,0,85,0.0,0.0,147.89264235062456,444.0,0.0,611.2010275855903,71,0,0,0,0,0,0,0,0,0,,2,,2,128046,2,2,0,0,1,,120.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,1491.35766024648,107.0,9514.781236100078,0,7,0,1,43.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04666423630586665,9514.781236100078,1,1,1_0,1_0_0,1_3_0,1_0_1 -29713,2,82.0,0.0,5,111,265.0,0.0,0.0,0,75,0.0,0.0,366.2761703076216,265.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,100525,2,1,0,1,1,,120.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1522.86092759024,265.0,33389.84821969535,0,5,0,1,82.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007936544013509083,33389.84821969535,8,4,8,8_0,8_3,8_0_0 -29714,1,59.0,44.0,2,111,290.0,215.0,0.0,0,68,0.0,0.0,400.8305259970199,505.0,0.0,389.9353736822015,50,2,2,2,1,2,2,2,2,3,35.0,2,,2,120009,2,3,0,1,1,1330.0,196.0,271.0,32,1.0,2.0,5.0,2.0,1.5,2,2,1338.38821941035,290.0,19001.383433717067,0,1,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.02657701223500922,12667.588955811378,2,1,2_1,2_0_1,2_3_1,2_0_1 -29715,2,60.0,0.0,2,111,190.0,70.0,0.0,0,54,0.0,0.0,262.6131032394268,260.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,133356,1,2,0,1,1,576.0,192.0,247.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1430.77577843465,190.0,25076.085968042495,0,1,2,3,59.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010368444275209042,25076.085968042495,7,4,7,7_0,7_3,7_0_1 -29716,2,66.0,0.0,1,111,2521.0,3862.0,0.0,74,34,0.0,0.0,3484.461227718921,6383.0,0.0,7004.327503072847,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,107214,1,3,2,0,2,,437.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,1154.67721690419,2521.0,171774.63234837644,6,1,0,1,200.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03715915390262414,114516.4215655843,10,5,10,10_1,10_3,10_1_0 -29717,2,50.0,0.0,7,111,334.0,0.0,0.0,54,65,0.0,0.0,461.6461920103608,334.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,5,125838,2,1,0,1,1,242.0,223.0,457.0,43,2.0,0.0,4.0,4.0,2.5,1,1,1204.39433622101,334.0,41791.731879626255,1,1,2,3,71.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007992011457242987,16716.692751850504,4,2,4_0,4_0_0,4_3_0,4_0_0 -29718,2,75.0,0.0,2,111,196.0,0.0,0.0,78,77,0.0,0.0,270.9061486048824,376.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101003,1,3,0,1,1,,160.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1605.1587253583,196.0,35819.819118587875,5,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010496982096843795,23879.879412391918,6,3,6,6_0,6_3,6_0_1 -29719,2,91.0,0.0,2,111,200.0,380.0,0.0,0,78,0.0,0.0,276.4348455151861,580.0,0.0,689.1881023220305,71,0,0,0,0,0,0,0,0,0,,2,,2,113984,1,2,0,0,2,,100.0,344.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1933.39326201181,200.0,24809.852024210042,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023377809727926722,24809.852024210042,7,4,7,7_0,7_3,7_0_1 -29720,2,81.0,0.0,2,111,130.0,97.0,0.0,0,75,0.0,0.0,179.68264958487097,227.0,0.0,175.92433138220255,71,0,0,0,0,0,0,0,0,0,,2,,2,109390,2,1,0,1,1,313.0,140.0,255.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1365.17589135085,130.0,30956.030244737434,0,5,2,3,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007332981593742637,30956.030244737434,8,4,8,8_0,8_3,8_0_1 -29721,2,76.0,0.0,5,111,200.0,0.0,0.0,72,75,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,116610,1,3,0,1,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,3,2,1505.06860855685,200.0,26838.134342698777,5,5,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00745208282536261,17892.089561799185,4,2,4_0,4_0_0,4_3_0,4_0_0 -29722,2,58.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,371.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,118319,2,1,0,1,1,747.0,0.0,450.0,43,2.0,1.0,3.0,3.0,2.0,1,1,2154.58311576841,0.0,29873.72629948268,4,1,2,3,82.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012418939514968528,14936.86314974134,3,2,3_0,3_0_0,3_3_0,3_0_1 -29723,1,48.0,291.0,2,111,0.0,0.0,880.0,85,85,0.0,0.0,449.603734657022,880.0,0.0,1006.0562816943158,71,2,1,2,2,1,2,2,2,0,,2,,2,108435,1,3,0,0,1,575.0,330.0,267.0,41,0.0,0.0,3.0,3.0,1.8,2,2,1566.31359116467,0.0,15472.279125244475,6,7,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.056875912906987146,8595.71062513582,1,1,1_1,1_0_1,1_3_1,1_0_1 -29724,1,40.0,259.0,2,111,200.0,316.0,0.0,85,63,0.0,0.0,276.4348455151861,516.0,0.0,573.1143166677939,50,0,0,0,0,0,0,0,0,0,,2,,2,103369,2,1,0,1,1,876.0,960.0,365.0,42,1.0,0.0,5.0,5.0,2.4,3,3,413.644481001285,200.0,27238.701831775477,6,1,2,3,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01894363406842161,11349.459096573117,2,1,2_1,2_0_1,2_3_1,2_0_1 -29725,2,64.0,0.0,5,111,240.0,0.0,0.0,0,68,0.0,0.0,331.72181461822333,257.0,0.0,0.0,41,1,1,2,2,1,2,2,2,3,30.0,2,,3,107453,1,2,0,1,1,670.0,140.0,264.0,22,2.0,0.0,3.0,2.0,1.5,2,2,377.549599285749,240.0,29723.61330413347,0,1,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.00864632430015703,19815.742202755646,5,3,5,5_0,5_3,5_0_0 -29726,2,80.0,0.0,5,111,300.0,0.0,0.0,85,78,0.0,0.0,414.65226827277917,300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,125816,1,2,0,1,2,,0.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,452.90583617277,300.0,17590.607236570653,6,5,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017054556216587212,11727.071491047102,2,1,2_0,2_0_0,2_3_0,2_0_0 -29727,2,55.0,0.0,2,111,720.0,0.0,0.0,56,78,3285.8867294396014,0.0,995.16544385467,3040.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,125995,1,2,3,0,1,,450.0,,42,4.0,1.0,8.0,5.0,3.0,1,1,1097.08380309396,720.0,27695.630867994107,1,5,0,1,160.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10976460563363134,9231.876955998036,1,1,1_0,1_1_0,1_3_0,1_0_1 -29728,1,49.0,322.0,2,111,250.0,400.0,0.0,85,63,0.0,0.0,345.54355689398267,650.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,,2,127484,1,3,0,1,1,700.0,500.0,279.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1303.33827858925,250.0,60927.25078155855,6,1,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010668461019691076,25386.354492316063,7,4,7,7_0,7_3,7_0_1 -29729,2,40.0,0.0,2,111,366.0,379.0,0.0,34,21,0.0,0.0,505.87576729279056,790.0,77.41471518855863,687.3744494211832,71,0,0,0,0,0,0,0,0,0,,2,,2,133334,2,1,0,1,1,,396.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,1324.91763772152,366.0,69888.63354783456,1,1,1,2,74.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011303697896157787,29120.2639782644,8,4,8,8_0,8_3,8_0_1 -29730,2,57.0,0.0,2,111,226.0,450.0,0.0,63,65,0.0,0.0,312.37137543216033,676.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,103637,1,1,0,1,2,,432.0,,43,2.0,4.0,4.0,2.0,1.5,1,1,1403.77185600893,226.0,22592.663204850513,4,1,0,1,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02992121795782211,15061.775469900342,3,2,3_0,3_0_0,3_3_0,3_0_1 -29731,2,63.0,0.0,2,111,196.0,202.0,0.0,0,77,0.0,0.0,270.9061486048824,398.0,0.0,366.35788597118466,71,0,0,0,0,0,0,0,0,0,,2,,2,100265,1,1,0,1,2,,94.0,422.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1766.84566767412,196.0,15298.21179240651,0,5,2,3,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026016112562747568,15298.21179240651,3,2,3_0,3_0_0,3_3_0,3_0_1 -29732,1,21.0,378.0,2,111,200.0,0.0,0.0,0,81,0.0,0.0,276.4348455151861,320.0,206.439240502823,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,122502,2,1,0,1,1,650.0,0.0,360.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1801.47516472308,200.0,6547.615035251789,0,4,2,3,52.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.048872757221850686,5036.626950193684,1,1,1_1,1_0_1,1_3_1,1_0_1 -29733,2,61.0,0.0,5,111,220.0,90.0,0.0,0,77,0.0,0.0,304.0783300667047,310.0,0.0,163.2287610762704,71,0,0,0,0,0,0,0,0,0,,2,,3,128530,2,3,0,1,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1644.67404927409,220.0,31413.668234116223,0,5,1,2,105.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00986831584549971,31413.668234116223,8,4,8,8_0,8_3,8_0_0 -29734,2,81.0,0.0,2,111,180.0,177.0,0.0,0,72,0.0,0.0,248.7913609636675,357.0,0.0,321.01656344999844,71,1,2,2,2,1,2,2,2,0,,2,,2,101818,2,2,0,1,1,,107.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2038.19456798478,180.0,25294.006029749464,0,5,0,1,91.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014114015770381157,25294.006029749464,7,4,7,7_0,7_3,7_0_1 -29735,1,85.0,59.0,2,111,186.0,172.0,0.0,0,78,0.0,0.0,257.0844063291231,358.0,0.0,311.9482989457612,71,2,1,2,1,1,2,2,2,0,,2,,2,115421,2,2,0,0,1,532.0,167.0,259.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1647.17422712416,186.0,16943.220279299327,0,5,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.021129395362780752,16943.220279299327,4,2,4_1,4_0_1,4_3_1,4_0_1 -29736,2,22.0,0.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,118719,1,3,0,0,2,,0.0,370.0,22,2.0,0.0,3.0,2.0,1.5,1,1,1633.03017508061,0.0,10106.336743569918,0,4,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09498990824848508,6737.557829046612,1,1,1_0,1_0_0,1_3_0,1_1_0 -29737,2,51.0,0.0,2,111,420.0,24.0,0.0,0,55,0.0,0.0,580.5131755818909,444.0,0.0,43.52766962033877,70,2,2,2,2,1,2,2,2,2,20.0,2,,2,125084,1,1,0,1,1,432.0,200.0,290.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1466.55208075215,420.0,21399.533237753403,0,1,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.020748116095200057,21399.533237753403,6,3,6,6_0,6_3,6_0_1 -29738,1,42.0,296.0,2,111,250.0,210.0,0.0,85,63,0.0,0.0,345.54355689398267,460.0,0.0,380.86710917796427,71,2,1,2,1,1,2,2,2,0,,2,,2,102214,2,1,0,1,1,540.0,340.0,385.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,1366.34817868515,250.0,33790.53105629923,6,4,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.013613281165471556,12515.011502333049,2,1,2_1,2_0_1,2_3_1,2_0_1 -29739,2,29.0,0.0,2,111,300.0,70.0,0.0,84,64,0.0,0.0,414.65226827277917,370.0,0.0,126.95570305932142,44,2,2,2,2,1,2,2,2,2,15.0,2,,2,127688,2,2,0,1,1,1056.0,247.0,362.0,42,1.0,0.0,3.0,2.0,1.5,1,1,1636.78208290144,300.0,21896.343302938832,3,1,2,3,58.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.016897798636101042,14597.562201959221,3,2,3_0,3_0_0,3_3_0,3_0_1 -29740,2,72.0,0.0,2,111,293.0,0.0,0.0,77,77,0.0,0.0,404.97704867974767,293.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,103235,2,1,0,1,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1402.8221431219,293.0,26464.32848461127,5,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011071507073016285,17642.885656407514,4,2,4_0,4_0_0,4_3_0,4_0_1 -29741,1,70.0,165.0,5,111,240.0,0.0,0.0,0,22,0.0,0.0,331.72181461822333,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,3,101236,2,1,0,1,1,325.0,143.0,388.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1766.84566767412,240.0,11504.28756829637,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020861787274980365,11504.28756829637,2,1,2_1,2_0_1,2_3_1,2_0_0 -29742,2,65.0,0.0,5,111,1816.0,0.0,0.0,75,52,0.0,20.703450096389155,2510.02839727789,1836.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,102487,2,1,2,0,1,,368.0,,42,1.0,2.0,6.0,2.0,1.5,4,3,1076.85528849997,1816.0,53023.02424947494,5,1,0,1,90.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03462646701103966,35348.68283298329,9,5,9,9_1,9_3,9_0_0 -29743,2,37.0,0.0,8,111,660.0,937.0,0.0,38,38,0.0,0.0,912.2349902001142,1597.0,0.0,1699.3927680940596,71,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,111849,2,1,1,0,1,,417.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1091.412594737,660.0,113362.0234489738,1,1,1,2,124.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014087610219121019,53981.915928082766,10,5,10,10_1,10_3,10_0_0 -29744,2,53.0,0.0,2,111,199.0,236.0,0.0,37,37,0.0,0.0,275.05267128761017,435.0,0.0,428.0220845999979,71,2,2,2,2,1,2,2,1,2,45.0,2,,2,132432,1,3,0,1,2,752.0,0.0,555.0,43,2.0,4.0,4.0,2.0,1.5,2,2,1900.66640763538,199.0,33716.34444509317,1,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012901754539505149,22477.56296339545,6,3,6,6_0,6_3,6_0_1 -29745,2,47.0,0.0,8,111,458.0,859.0,0.0,34,38,0.0,0.0,633.0357962297762,1317.0,0.0,1557.9278418279587,71,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,103100,2,3,3,0,1,,380.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,1136.50426447361,458.0,163782.03183093359,1,1,0,1,110.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008041175123285152,58493.582796762,10,5,10,10_1,10_3,10_0_0 -29746,2,75.0,0.0,1,111,334.0,0.0,0.0,0,77,0.0,0.0,461.6461920103608,334.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,102935,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1968.33263563272,334.0,31355.916773962774,0,5,0,1,99.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01065189713340947,31355.916773962774,8,4,8,8_0,8_3,8_1_0 -29747,2,42.0,0.0,1,111,650.0,1300.0,0.0,42,34,0.0,0.0,898.4132479243549,1950.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,2,30.0,2,,1,103987,2,2,0,0,1,,300.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,1677.96782950247,650.0,94407.0,1,1,1,2,130.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020655248021862787,33716.78571428572,9,5,9,9_0,9_3,9_1_0 -29748,2,63.0,0.0,5,111,344.0,0.0,0.0,0,77,0.0,0.0,475.4679342861201,344.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100111,2,1,0,0,1,,0.0,595.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1950.62239186264,344.0,22494.98853014247,0,5,2,3,51.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015292294972235814,22494.98853014247,6,3,6,6_0,6_3,6_0_0 -29749,0,27.0,0.0,1,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,2848.0,0.0,0.0,50,2,2,2,2,2,1,1,2,0,,1,,1,131250,2,2,5,0,1,,0.0,,43,5.0,1.0,5.0,7.0,3.6,1,1,1257.66459183979,0.0,83300.05200528214,1,1,5,0,98.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03418965452529856,23138.903334800594,6,3,6,6_1,6_3,6_1_0 -29750,2,48.0,0.0,2,111,676.0,1335.0,0.0,43,46,0.0,0.0,934.3497778413291,2011.0,0.0,2421.226622631344,71,0,0,0,0,0,0,0,0,0,,1,,2,107961,2,1,1,0,1,,808.0,,43,2.0,0.0,7.0,6.0,3.3,2,2,1246.84972105029,676.0,85638.84169249661,1,1,0,1,140.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023482335354568406,25951.1641492414,7,4,7,7_1,7_3,7_0_1 -29751,2,73.0,0.0,2,111,260.0,0.0,0.0,0,34,0.0,0.0,359.36529916974195,260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,116193,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1692.5031308219,260.0,75538.02426513312,0,5,0,1,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003441975118218851,75538.02426513312,10,5,10,10_0,10_3,10_0_1 -29752,2,92.0,0.0,2,111,416.0,113.0,0.0,0,74,0.0,0.0,574.9844786715871,529.0,0.0,204.9427777957617,71,0,0,0,0,0,0,0,0,0,,2,,2,102031,2,3,0,1,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,2059.44927247344,416.0,46197.25717587396,0,5,0,1,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011450896272609552,46197.25717587396,10,5,10,10_0,10_3,10_0_1 -29753,2,40.0,0.0,8,111,0.0,0.0,1200.0,37,37,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,105950,2,1,1,0,1,,150.0,1650.0,43,2.0,0.0,6.0,4.0,2.1,1,1,1288.962884586,0.0,136862.79505511982,1,1,2,3,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008767905109030652,65172.75955005705,10,5,10,10_1,10_3,10_0_0 -29754,2,66.0,0.0,1,111,974.0,0.0,0.0,77,75,4331.396143352202,0.0,1346.2376976589564,3994.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121130,2,1,2,0,2,,589.0,,41,0.0,2.0,9.0,2.0,1.5,3,3,1260.20471327257,974.0,43670.64699271699,6,5,0,1,185.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09145731229184868,29113.764661811325,8,4,8,8_1,8_3,8_1_0 -29755,2,89.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,339.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106741,2,1,0,1,2,,175.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1743.76197486888,0.0,13608.80112849499,0,6,0,1,105.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02491035005943175,13608.80112849499,3,2,3_0,3_0_0,3_3_0,3_0_1 -29756,2,29.0,0.0,2,111,250.0,360.0,0.0,47,47,0.0,0.0,345.54355689398267,610.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,124039,1,2,0,1,2,466.0,0.0,551.0,43,2.0,0.0,3.0,2.0,1.5,3,3,1691.09751604789,250.0,40723.706472347956,1,1,2,3,61.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014978990196145327,27149.137648231972,7,4,7,7_0,7_3,7_0_1 -29757,0,75.0,0.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,331.72181461822333,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112217,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1695.12186040109,240.0,19132.453939381696,0,5,0,1,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012544130552223145,19132.453939381696,5,3,5,5_0,5_3,5_0_1 -29758,2,53.0,0.0,9,111,360.0,500.0,0.0,0,54,0.0,0.0,497.582721927335,860.0,0.0,906.8264504237244,71,2,2,2,2,1,1,2,2,3,25.0,2,2008.0,6,114041,2,2,0,0,1,,230.0,637.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1951.07481608327,360.0,24116.11061339851,0,1,2,3,47.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.035660808402587035,24116.11061339851,6,3,6,6_0,6_3,6_0_0 -29759,2,93.0,0.0,2,111,240.0,140.0,0.0,0,78,716.9207409686403,0.0,331.72181461822333,860.0,0.0,253.91140611864284,33,0,0,0,0,0,0,0,0,0,,2,,2,123498,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1773.72967624754,240.0,10013.514912065257,0,5,0,1,60.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08588392862568052,10013.514912065257,2,1,2_0,2_0_0,2_3_0,2_0_1 -29760,2,25.0,0.0,7,111,0.0,0.0,448.0,0,46,0.0,0.0,228.8891740072112,448.0,0.0,512.174107044379,71,0,0,0,0,0,0,0,0,0,,2,,5,123994,2,1,0,0,1,,0.0,1250.0,22,3.0,0.0,5.0,3.0,2.0,1,1,2004.36376580676,0.0,22883.79253216804,0,1,2,3,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019577174516428632,11441.89626608402,2,1,2_0,2_0_0,2_3_0,2_0_0 -29761,2,52.0,0.0,6,111,1000.0,0.0,0.0,68,46,0.0,0.0,1382.1742275759307,1068.0,116.98223628493304,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,4,131469,2,2,0,0,1,,0.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,1725.91698280824,1000.0,55764.14815766382,1,1,1,2,76.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019152090281741745,27882.07407883191,7,4,7,7_0,7_3,7_0_0 -29762,2,58.0,0.0,2,111,273.0,96.0,0.0,0,54,0.0,0.0,377.33356412822906,837.0,0.0,174.11067848135508,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,125271,2,1,0,1,1,1020.0,0.0,487.0,22,1.0,1.0,4.0,2.0,1.5,1,1,1613.07261144931,273.0,30298.82126177383,0,1,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027624837044601194,20199.214174515888,5,3,5,5_0,5_3,5_0_1 -29763,2,60.0,0.0,2,111,243.0,226.0,0.0,0,54,1075.3811114529606,0.0,335.8683373009511,1189.0,0.0,409.8855555915234,71,0,0,0,0,0,0,0,0,3,35.0,2,,2,133187,2,1,0,1,1,701.0,188.0,320.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1528.42552169339,243.0,19919.504795006524,0,1,2,3,60.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05969023890082156,19919.504795006524,5,3,5,5_0,5_3,5_0_1 -29764,2,67.0,0.0,2,111,620.0,0.0,0.0,0,77,0.0,0.0,856.9480210970769,620.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116623,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,4,4,1894.23678983714,620.0,20919.315864535143,0,5,0,1,83.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02963768050613434,20919.315864535143,5,3,5,5_0,5_3,5_0_1 -29765,2,75.0,0.0,2,111,333.0,125.0,0.0,0,75,2283.691276960523,0.0,460.2640177827849,1987.0,0.0,226.7066126059311,50,0,0,0,0,0,0,0,0,0,,2,,2,122717,2,1,0,1,1,,746.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,1843.23587434924,333.0,38305.90305636004,0,5,0,1,77.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05187190071139943,38305.90305636004,9,5,9,9_0,9_3,9_0_1 -29766,2,28.0,0.0,2,111,0.0,0.0,0.0,62,63,0.0,0.0,0.0,585.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,111260,2,1,0,1,2,795.0,0.0,600.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1787.71297549774,0.0,36807.440717775775,1,1,2,3,70.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015893525564179754,24538.293811850515,7,4,7,7_0,7_3,7_0_1 -29767,2,51.0,0.0,1,111,551.0,1477.0,0.0,46,37,0.0,0.0,761.5779993943378,2028.0,0.0,2678.765334551682,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,117138,2,1,1,0,1,,888.0,,42,1.0,0.0,9.0,6.0,3.3,3,3,1239.92679780335,551.0,69902.07123670314,6,1,0,1,158.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02901201586906867,21182.445829303982,5,3,5,5_1,5_3,5_1_0 -29768,2,57.0,0.0,2,111,470.0,530.0,0.0,0,77,0.0,0.0,649.6218869606873,1000.0,0.0,961.236037449148,71,0,0,0,0,0,0,0,0,0,,2,,2,133447,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,1874.64758191246,470.0,8325.982799107169,0,7,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1201059411397336,8325.982799107169,1,1,1_0,1_0_0,1_3_0,1_0_1 -29769,0,35.0,0.0,1,111,1200.0,0.0,0.0,0,53,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,1,115098,2,1,0,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1928.11058817046,1200.0,53392.79277283726,0,1,5,0,62.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022474943483579698,53392.79277283726,10,5,10,10_0,10_3,10_1_0 -29770,2,61.0,0.0,2,111,450.0,1500.0,0.0,0,72,0.0,0.0,621.9784024091688,1950.0,0.0,2720.4793512711735,33,0,0,0,0,0,0,0,0,0,,1,,2,123602,2,1,1,0,1,,340.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1401.50337239794,450.0,58433.34795719819,0,5,0,1,150.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033371355025359054,58433.34795719819,10,5,10,10_1,10_3,10_0_1 -29771,1,45.0,401.0,1,111,235.0,552.0,0.0,85,21,0.0,0.0,324.81094348034367,787.0,0.0,1001.1364012677918,60,0,0,0,0,0,0,0,0,1,2.0,2,,1,106352,1,1,0,0,2,,0.0,402.0,42,1.0,0.0,3.0,4.0,2.1,1,1,1438.24341462293,235.0,5121.592775444091,6,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1536631345962018,2438.8537025924243,1,1,1_1,1_0_1,1_3_1,1_1_0 -29772,2,66.0,0.0,6,111,288.0,292.0,0.0,0,75,0.0,0.0,398.066177541868,580.0,0.0,529.5866470474551,71,0,0,0,0,0,0,0,0,0,,2,,4,107149,2,1,0,0,1,,0.0,568.0,11,0.0,2.0,5.0,1.0,1.0,1,1,1698.90181592207,288.0,18457.0,0,5,3,4,113.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03142439182965812,18457.0,4,2,4_0,4_0_0,4_3_0,4_0_0 -29773,2,49.0,0.0,5,111,120.0,0.0,0.0,43,38,0.0,0.0,165.86090730911167,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,1,,3,105165,2,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,927.41437466008,120.0,69102.4177784512,1,1,1,2,105.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0017365528422569989,27640.96711138048,7,4,7,7_1,7_3,7_0_0 -29774,2,66.0,0.0,8,111,236.0,325.0,0.0,0,78,0.0,0.0,326.1931177079196,561.0,0.0,589.4371927754208,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,131373,2,1,0,0,1,,180.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1306.56912393194,236.0,12747.779063753818,0,5,0,1,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04400766574274179,12747.779063753818,2,1,2_0,2_0_0,2_3_0,2_0_0 -29775,1,51.0,250.0,9,111,400.0,800.0,0.0,0,54,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,42,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,111593,2,1,0,0,1,,0.0,750.0,32,1.0,0.0,3.0,3.0,2.0,1,1,1558.39015287077,400.0,22869.459734861033,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05247172490790333,11434.729867430517,2,1,2_1,2_0_1,2_3_1,2_0_0 -29776,2,87.0,0.0,1,111,325.0,935.0,0.0,0,75,0.0,0.0,449.20662396217745,1260.0,0.0,1695.7654622923646,20,0,0,0,0,0,0,0,0,0,,1,,1,129666,2,2,1,0,1,,1263.0,,11,0.0,1.0,4.0,1.0,1.0,2,1,1055.74114529175,325.0,41771.15324830674,0,5,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030164357505525086,41771.15324830674,9,5,9,9_1,9_3,9_1_0 -29777,2,53.0,0.0,8,111,600.0,0.0,0.0,75,33,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,117991,2,1,1,0,1,,350.0,,42,1.0,1.0,5.0,3.0,2.0,5,4,1022.90323557215,600.0,31202.303955254043,6,1,0,1,99.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019229349244864597,15601.151977627022,3,2,3_0,3_1_0,3_3_0,3_0_0 -29778,2,64.0,0.0,2,111,436.0,0.0,0.0,0,72,2282.197692083505,0.0,602.6279632231058,2024.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132466,2,1,1,0,1,,318.0,,11,0.0,1.0,6.0,1.0,1.0,2,1,1037.42384693305,436.0,23568.64087908169,0,5,0,1,120.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08587682295233232,23568.64087908169,6,3,6,6_1,6_3,6_0_1 -29779,2,53.0,0.0,5,111,1600.0,0.0,0.0,42,38,3733.962192545002,0.0,2211.478764121489,4160.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,105483,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,5.0,2.8,1,1,906.244171490292,1600.0,181782.30395959393,1,1,0,1,175.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02288451576081175,64922.251414140694,10,5,10,10_1,10_3,10_0_0 -29780,2,31.0,0.0,1,111,700.0,0.0,0.0,56,47,1493.5848770180007,0.0,967.5219593031513,1820.0,206.439240502823,0.0,31,1,2,2,1,2,2,2,2,2,10.0,2,,1,116174,1,3,0,0,1,,305.0,605.0,43,2.0,0.0,5.0,3.0,1.8,1,1,1436.99485617018,700.0,48828.58992803679,1,1,2,3,85.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.03727324509436587,27126.99440446488,7,4,7,7_0,7_3,7_1_0 -29781,2,25.0,0.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,390.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,1,,1,110837,2,1,2,0,1,,232.0,570.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1206.65671611943,0.0,15343.125027514112,0,1,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025418550608212548,15343.125027514112,3,2,3_0,3_1_0,3_3_0,3_1_0 -29782,2,68.0,0.0,1,111,350.0,0.0,0.0,86,78,0.0,828.1380038555662,483.76097965157567,1374.0,385.3532489386029,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120906,2,1,2,0,1,,157.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,921.612933277814,350.0,26266.6756937508,5,5,0,1,64.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052309626692763914,17511.1171291672,4,2,4_0,4_1_0,4_3_0,4_1_0 -29783,0,72.0,0.0,2,111,646.0,0.0,0.0,0,77,2185.114675077335,0.0,892.8845510140511,2109.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132782,2,1,2,0,1,,230.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,980.2079116732,646.0,25239.748361764432,0,5,0,1,74.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0835586777558731,25239.748361764432,7,4,7,7_1,7_3,7_0_1 -29784,2,72.0,0.0,5,111,390.0,810.0,0.0,75,75,0.0,0.0,539.0479487546129,1200.0,0.0,1469.0588496864336,71,0,0,0,0,0,0,0,0,0,,1,,3,109019,2,2,1,0,1,,215.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,971.127581662857,390.0,70081.02468821804,5,5,0,1,125.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017123037303444895,46720.68312547869,10,5,10,10_1,10_3,10_0_0 -29785,2,56.0,0.0,1,111,2100.0,0.0,0.0,77,72,0.0,3105.517514458373,2902.5658779094542,5160.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128379,2,1,1,0,1,,598.0,,41,0.0,4.0,5.0,2.0,1.5,3,3,1000.20977573992,2100.0,55630.718009115604,7,7,1,2,120.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0927545101818475,37087.1453394104,9,5,9,9_1,9_3,9_1_0 -29786,2,82.0,0.0,5,111,326.0,0.0,0.0,72,72,0.0,0.0,450.58879818975333,1326.0,1720.3270041901917,0.0,12,2,2,1,2,1,2,2,2,0,,1,,3,109041,2,1,2,0,1,,128.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,927.923412700959,326.0,20736.683343484096,5,5,0,1,124.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06394465199839477,13824.45556232273,3,2,3_0,3_1_0,3_3_0,3_0_0 -29787,2,38.0,0.0,2,111,211.0,0.0,0.0,0,63,1792.3018524216009,0.0,291.63876201852133,1441.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,2,102669,2,1,1,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,4,3,986.039237670565,211.0,26190.8120693048,0,1,0,1,64.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055019294407019484,26190.8120693048,7,4,7,7_1,7_3,7_0_1 -29788,2,63.0,0.0,5,111,475.0,0.0,0.0,0,74,0.0,465.827627168756,656.532758098567,948.0,39.567521096374406,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,104682,2,2,1,0,1,,170.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,957.732332937196,475.0,31741.0,0,5,1,2,98.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029866733877319557,31741.0,8,4,8,8_1,8_3,8_0_0 -29789,2,38.0,0.0,1,111,435.0,0.0,0.0,46,37,2240.377315527001,0.0,601.2457889955298,1935.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,1,,1,125703,2,1,2,0,1,,308.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,976.399038379258,435.0,89684.14468885139,1,1,0,1,118.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021575720064156884,59789.42979256759,10,5,10,10_1,10_3,10_1_0 -29790,2,57.0,0.0,5,111,1400.0,1140.0,0.0,52,45,0.0,0.0,1935.0439186063027,2660.0,206.439240502823,2067.564306966092,50,0,0,0,0,0,0,0,0,2,60.0,1,,3,109881,1,1,1,0,1,,405.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,956.781723830988,1400.0,82863.43947035368,1,1,0,1,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03210100880439167,41431.71973517684,9,5,9,9_1,9_3,9_0_0 -29791,2,54.0,0.0,5,111,1200.0,0.0,0.0,54,21,3136.5282417378016,0.0,1658.6090730911167,3360.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,100282,2,1,2,0,1,,300.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,980.065815477282,1200.0,159408.9731431413,1,1,0,1,150.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02107785988297464,63763.58925725652,10,5,10,10_1,10_3,10_0_0 -29792,2,53.0,0.0,7,111,778.0,1972.0,0.0,52,22,0.0,0.0,1075.331549054074,2750.0,0.0,3576.5235204711694,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,119475,2,1,2,0,1,,1027.0,,43,3.0,0.0,7.0,5.0,3.0,3,2,1153.20135914536,778.0,95228.4286226837,1,1,1,2,150.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028877931094464595,31742.809540894566,8,4,8,8_1,8_3,8_0_0 -29793,2,70.0,0.0,7,111,485.0,0.0,0.0,77,78,0.0,0.0,670.3545003743263,485.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,107054,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,1648.10788865203,485.0,50731.69593609522,5,5,0,1,81.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009560098298525955,33821.13062406348,9,5,9,9_0,9_3,9_0_0 -29794,2,47.0,0.0,5,111,4531.0,0.0,0.0,31,37,0.0,0.0,6262.631425146541,4621.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,129149,2,1,2,0,1,,518.0,,43,2.0,1.0,9.0,4.0,2.5,5,5,1166.35144899822,4531.0,185027.21020611457,1,1,1,2,250.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024974705043935695,74010.88408244583,10,5,10,10_1,10_3,10_0_0 -29795,2,39.0,0.0,9,111,2600.0,0.0,0.0,52,37,0.0,0.0,3593.6529916974196,2600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,122871,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1171.75395241668,2600.0,63652.194308387705,1,4,1,2,208.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04084698144738409,30310.568718279857,8,4,8,8_1,8_3,8_0_0 -29796,2,79.0,0.0,9,111,590.0,829.0,0.0,0,77,0.0,0.0,815.482794269799,1419.0,0.0,1503.5182548025352,41,0,0,0,0,0,0,0,0,0,,2,2009.0,6,128825,2,1,0,0,1,,181.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1823.05368291002,590.0,55159.04079520138,0,5,0,1,130.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025725610517205504,55159.04079520138,10,5,10,10_0,10_3,10_0_0 -29797,2,50.0,0.0,9,111,442.0,895.0,0.0,0,52,0.0,0.0,610.9210085885613,1337.0,0.0,1623.2193462584667,20,0,0,0,0,0,0,0,0,0,,2,2010.0,6,130030,2,1,0,0,1,,275.0,503.0,22,2.0,4.0,4.0,3.0,2.0,2,2,1909.46682743096,442.0,58441.8652840177,0,1,2,3,83.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02287743543951589,29220.93264200885,8,4,8,8_0,8_3,8_0_0 -29798,2,56.0,0.0,2,111,800.0,1000.0,0.0,85,37,0.0,0.0,1105.7393820607444,1800.0,0.0,1813.6529008474488,41,0,0,0,0,0,0,0,0,0,,1,,2,133373,2,2,2,0,1,,280.0,,42,1.0,1.0,7.0,5.0,3.0,2,2,1190.69358296229,800.0,77917.22908627692,6,1,0,1,175.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023101437526825797,25972.40969542564,7,4,7,7_1,7_3,7_0_1 -29799,2,52.0,0.0,5,111,1360.0,0.0,0.0,56,62,0.0,0.0,1879.7569495032656,1360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,105888,2,1,2,0,1,,360.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1277.17131068296,1360.0,34494.04380211986,1,1,1,2,115.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03942709668375907,22996.02920141324,6,3,6,6_1,6_3,6_0_0 -29800,2,49.0,0.0,1,111,1395.0,1680.0,0.0,46,37,0.0,124.22070057833493,1928.1330474684232,3195.0,0.0,3046.936873423714,50,0,0,0,0,0,0,0,0,0,,1,,1,109227,2,1,3,0,1,,734.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,1189.91438164777,1395.0,163083.89957029934,1,1,0,1,220.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019591143015456013,65233.55982811974,10,5,10,10_1,10_3,10_1_0 -29801,2,81.0,0.0,1,111,800.0,3000.0,0.0,0,75,0.0,0.0,1105.7393820607444,4163.0,0.0,5440.958702542347,10,0,0,0,0,0,0,0,0,0,,1,,1,106191,2,2,2,0,1,,2000.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,1238.82928489779,800.0,49433.18451499225,0,5,0,1,150.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08421468373613342,32955.456343328166,8,4,8,8_1,8_3,8_1_0 -29802,2,50.0,0.0,6,111,3750.0,0.0,0.0,54,38,0.0,165.62760077111324,5183.15335340974,3910.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,102802,2,1,1,0,1,,650.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,1235.27995110039,3750.0,113430.98412668412,1,1,1,2,150.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03447029954031925,45372.39365067365,10,5,10,10_1,10_3,10_0_0 -29803,2,90.0,0.0,2,111,480.0,0.0,0.0,0,74,1941.6603401234008,0.0,663.4436292364467,1780.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,127465,2,1,1,0,1,,180.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,1381.12042630286,480.0,31808.44692117638,0,5,0,1,63.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05595997831679642,31808.44692117638,8,4,8,8_1,8_3,8_0_1 -29804,2,61.0,0.0,2,111,340.0,0.0,0.0,0,37,0.0,0.0,469.9392373758164,340.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,112935,2,1,1,0,1,,734.0,,32,1.0,2.0,7.0,3.0,2.0,1,1,1373.47151345662,340.0,131467.54928097004,0,1,1,2,237.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0025861895339157667,65733.77464048502,10,5,10,10_1,10_3,10_0_1 -29805,2,42.0,0.0,9,111,525.0,2158.0,0.0,0,31,0.0,0.0,725.6414694773636,2683.0,0.0,3913.8629600287945,33,0,0,0,0,0,0,0,0,0,,2,2004.0,6,104249,2,1,0,0,1,,0.0,,32,1.0,0.0,5.0,3.0,1.6,3,3,2080.10166525695,525.0,23599.63899158908,0,1,1,2,130.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1136881797622507,14749.774369743174,3,2,3_0,3_0_0,3_3_0,3_0_0 -29806,2,70.0,0.0,7,111,1300.0,1500.0,0.0,75,75,0.0,0.0,1796.8264958487098,2800.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,0,,1,,5,114883,2,2,1,0,1,,380.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1250.76644164412,1300.0,130308.98429542866,5,5,0,1,175.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021487390260459777,86872.65619695243,10,5,10,10_1,10_3,10_0_0 -29807,2,70.0,0.0,6,111,780.0,0.0,0.0,0,77,0.0,0.0,1078.0958975092258,846.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,122901,2,1,0,0,1,,0.0,376.0,11,0.0,3.0,2.0,1.0,1.0,2,2,1562.24235986342,780.0,22715.049137700138,0,5,2,3,56.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03724403125309093,22715.049137700138,6,3,6,6_0,6_3,6_0_0 -29808,2,25.0,0.0,1,111,410.0,750.0,0.0,43,37,0.0,0.0,566.6914333061316,1160.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,122782,2,1,0,0,1,,0.0,490.0,43,2.0,0.0,2.0,2.0,1.5,3,2,1864.7061794773,410.0,50730.326093102456,1,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02286600716642583,33820.21739540164,9,5,9,9_0,9_3,9_1_0 -29809,0,64.0,0.0,6,111,1559.0,0.0,0.0,0,74,0.0,0.0,2154.8096207908757,1619.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,103198,2,1,2,0,1,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1284.79740269633,1559.0,57776.31364198838,0,5,0,1,130.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028021863942932615,57776.31364198838,10,5,10,10_1,10_3,10_0_0 -29810,2,60.0,0.0,1,111,380.0,0.0,0.0,54,47,2987.1697540360015,0.0,525.2262064788536,2428.0,82.5756962011292,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,133395,2,2,1,0,1,,270.0,,43,2.0,2.0,5.0,2.0,1.5,7,7,1102.2491669436,380.0,73606.89458899992,1,1,0,1,120.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03298604041859483,49071.26305933328,10,5,10,10_1,10_3,10_1_0 -29811,2,54.0,0.0,1,111,650.0,0.0,0.0,0,21,0.0,0.0,898.4132479243549,710.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108554,2,3,3,0,1,,120.0,200.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1498.78517920226,650.0,19420.0,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036560247167868175,19420.0,5,3,5,5_1,5_3,5_1_0 -29812,2,63.0,0.0,2,111,800.0,2000.0,0.0,75,74,0.0,0.0,1105.7393820607444,2800.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,1,,2,119710,2,2,4,0,1,,260.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1219.09174233968,800.0,72151.41992104606,5,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03880727507599971,48100.94661403071,10,5,10,10_1,10_3,10_0_1 -29813,2,55.0,0.0,7,111,8000.0,0.0,0.0,56,63,0.0,0.0,11057.393820607445,8120.0,206.439240502823,0.0,70,2,2,2,1,2,2,2,2,0,,1,,5,128188,2,1,3,0,1,,750.0,,43,3.0,2.0,6.0,3.0,2.0,2,2,1258.15933416903,8000.0,46511.55257251648,1,1,0,1,174.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.17458028276609458,23255.77628625824,6,3,6,6_1,6_3,6_0_0 -29814,2,51.0,0.0,6,111,1200.0,0.0,0.0,56,38,2240.377315527001,0.0,1658.6090730911167,2820.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,133639,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,5.0,3.0,1,1,374.008931776479,1200.0,54744.7657406725,1,1,0,1,140.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05151177399056596,18248.255246890832,4,2,4_0,4_1_0,4_3_0,4_0_0 -29815,2,33.0,0.0,9,111,582.0,0.0,0.0,56,47,2240.377315527001,0.0,804.4254004491916,2082.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,113421,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,360.484600022071,582.0,47398.056098603345,1,1,1,2,119.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04392585205749291,22570.50290409683,6,3,6,6_1,6_3,6_0_0 -29816,2,63.0,0.0,1,111,670.0,1350.0,0.0,78,78,0.0,0.0,926.0567324758734,2020.0,0.0,2448.431416144056,42,0,0,0,0,0,0,0,0,0,,1,,1,114990,2,1,2,0,1,,320.0,,41,0.0,3.0,4.0,2.0,1.5,5,5,446.279328199451,670.0,26148.25491837231,5,5,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07725180920508412,17432.16994558154,4,2,4_0,4_1_0,4_3_0,4_1_0 -29817,2,37.0,0.0,6,111,1500.0,0.0,0.0,42,38,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,44,2,2,1,1,2,2,2,2,2,20.0,1,,4,112611,2,1,1,0,1,,340.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,382.745920462434,1500.0,51179.0,1,1,1,2,95.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02930889622696809,24370.95238095238,7,4,7,7_1,7_3,7_0_0 -29818,2,53.0,0.0,8,111,550.0,650.0,0.0,52,65,0.0,0.0,760.1958251667618,1200.0,0.0,1178.8743855508417,12,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,109939,2,1,2,0,1,,400.0,521.0,43,2.0,3.0,4.0,2.0,1.5,2,2,383.878305395753,550.0,40090.34850510652,1,1,2,3,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029932391329727394,26726.89900340435,7,4,7,7_1,7_3,7_0_0 -29819,2,40.0,0.0,1,111,560.0,0.0,0.0,54,46,0.0,776.3793786145933,774.0175674425211,1420.0,189.2359704609211,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,121729,2,1,3,0,1,,380.0,,43,2.0,2.0,6.0,3.0,1.8,2,2,390.627965960393,560.0,60074.7154671937,1,1,1,2,100.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02363723221919295,33374.84192621872,8,4,8,8_1,8_3,8_1_0 -29820,2,22.0,0.0,1,111,1500.0,0.0,0.0,64,56,0.0,0.0,2073.261341363896,1503.0,5.160981012570575,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,117391,1,3,3,0,2,,300.0,507.0,43,2.0,0.0,4.0,3.0,1.8,4,3,488.564570384773,1500.0,29785.287162236353,4,1,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05046115526143381,16547.381756797975,4,2,4_0,4_1_0,4_3_0,4_1_0 -29821,2,66.0,0.0,1,111,1000.0,1000.0,0.0,77,74,0.0,517.5862524097289,1382.1742275759307,2500.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,1,132444,1,3,3,0,2,,100.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,386.519532927955,1000.0,57492.035714068305,5,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04348428384817569,38328.02380937887,9,5,9,9_1,9_3,9_1_0 -29822,2,57.0,0.0,1,111,1300.0,0.0,0.0,43,56,2987.1697540360015,51.75862524097289,1796.8264958487098,3450.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,124104,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,2.0,1.5,1,1,394.56349349802,1300.0,20843.54125612978,1,1,0,1,110.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16551889900116687,13895.694170753188,3,2,3_0,3_1_0,3_3_0,3_1_0 -29823,2,53.0,0.0,1,111,1300.0,0.0,0.0,52,53,0.0,414.0690019277831,1796.8264958487098,1780.0,137.62616033521533,0.0,10,2,2,2,1,2,2,1,2,2,10.0,1,,1,131698,2,2,1,0,1,,280.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,401.479248102748,1300.0,56534.60362674023,1,1,0,1,130.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03148514159137184,37689.73575116015,9,5,9,9_1,9_3,9_1_0 -29824,2,42.0,0.0,8,111,1373.0,800.0,0.0,43,43,0.0,414.0690019277831,1897.7252144617526,2573.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,108842,2,1,1,0,1,,430.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,365.472013822128,1373.0,104719.51740077097,1,1,1,2,116.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024570395890509106,43633.13225032124,10,5,10,10_1,10_3,10_0_0 -29825,2,55.0,0.0,6,111,1780.0,0.0,0.0,54,65,0.0,0.0,2460.2701250851565,1780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,101020,2,1,1,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,379.924279001897,1780.0,37111.27788764837,1,1,0,1,113.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04796385630774606,24740.851925098916,7,4,7,7_1,7_3,7_0_0 -29826,2,46.0,0.0,1,111,550.0,2800.0,0.0,22,22,0.0,0.0,760.1958251667618,3950.0,0.0,5078.228122372857,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,108738,2,3,3,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,365.63780254678,550.0,80459.61128272895,1,1,0,1,140.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04909295405517187,34982.43968814302,9,5,9,9_1,9_3,9_1_0 -29827,2,58.0,0.0,6,111,1200.0,0.0,0.0,31,31,0.0,0.0,1658.6090730911167,1265.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,108578,1,1,2,0,1,,700.0,,43,2.0,2.0,7.0,2.0,1.5,3,3,390.629588589142,1200.0,52270.996567559465,1,1,0,1,140.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024200801267773932,34847.331045039646,9,5,9,9_1,9_3,9_0_0 -29828,2,51.0,0.0,7,111,1200.0,0.0,0.0,85,85,0.0,258.79312620486445,1658.6090730911167,1515.0,111.82125527236246,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,122279,2,1,3,0,1,,350.0,,41,1.0,0.0,6.0,4.0,2.5,2,2,366.479221576156,1200.0,9695.720156974374,5,5,0,1,115.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15625450977050143,3878.2880627897493,1,1,1_0,1_1_0,1_3_0,1_0_0 -29829,2,55.0,0.0,6,111,1600.0,0.0,0.0,63,54,0.0,207.03450096389156,2211.478764121489,1800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,,4,113053,2,1,2,0,1,,152.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,389.379489968133,1600.0,56321.87095773433,1,2,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03195916558508462,37547.91397182289,9,5,9,9_1,9_3,9_0_0 -29830,2,42.0,0.0,9,111,1500.0,0.0,0.0,62,46,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,2008.0,6,109292,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,371.184499822496,1500.0,76329.01787557933,1,1,1,2,109.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019651766022262804,36347.15136932349,9,5,9,9_1,9_3,9_0_0 -29832,2,67.0,0.0,5,111,530.0,0.0,0.0,78,78,2688.452778632401,0.0,732.5523406152432,2400.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128287,1,1,3,0,1,,280.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,396.797322064882,530.0,28902.9061261523,5,5,0,1,107.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08303663270138781,19268.60408410153,5,3,5,5_1,5_3,5_0_0 -29833,2,43.0,0.0,8,111,550.0,1300.0,0.0,54,47,0.0,0.0,760.1958251667618,1850.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,128709,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,380.848523017234,550.0,76007.54645937512,1,1,0,1,140.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024339688441183886,33046.7593301631,8,4,8,8_1,8_3,8_0_0 -29834,2,59.0,0.0,1,111,0.0,0.0,0.0,37,47,0.0,0.0,0.0,725.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,112370,2,1,1,0,1,,924.0,1000.0,43,2.0,2.0,4.0,3.0,1.8,2,2,522.092883109773,0.0,49356.93183403865,1,1,2,3,100.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014688919530853191,27420.51768557703,7,4,7,7_1,7_3,7_1_0 -29835,2,59.0,0.0,1,111,1200.0,0.0,0.0,0,11,0.0,0.0,1658.6090730911167,1340.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129247,2,3,4,0,1,,400.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,382.198428938211,1200.0,11273.167004367519,0,1,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11886633095037527,7515.444669578345,1,1,1_0,1_1_0,1_3_0,1_1_0 -29836,2,42.0,0.0,6,111,2586.0,0.0,0.0,34,31,0.0,0.0,3574.302552511356,2586.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,4,105149,2,1,2,0,1,,780.0,,43,2.0,0.0,7.0,5.0,2.8,2,2,374.008931776479,2586.0,162395.19912909166,1,1,1,2,182.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01592411606912301,57998.28540324703,10,5,10,10_1,10_3,10_0_0 -29837,2,33.0,0.0,9,112,0.0,0.0,0.0,34,37,0.0,0.0,0.0,748.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,128546,2,1,1,0,1,,316.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1210.20260641021,0.0,60803.46628692142,1,1,1,2,96.0,9,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012301930229936442,33779.70349273412,9,5,9,9_1,9_0,9_0_0 -29838,2,27.0,0.0,9,112,1200.0,0.0,0.0,52,54,0.0,0.0,1658.6090730911167,1252.0,89.45700421788997,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,114382,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1381.60090800525,1200.0,50256.80002511564,1,1,1,2,96.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024912051690006484,27920.44445839758,7,4,7,7_1,7_0,7_0_0 -29839,2,73.0,0.0,2,112,2400.0,0.0,0.0,0,86,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,130882,1,1,2,0,1,,250.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1344.09808770909,2400.0,70326.7631312863,0,5,0,1,170.0,9,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03412641067412231,70326.7631312863,10,5,10,10_1,10_0,10_0_1 -29840,2,33.0,0.0,1,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1210.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,126337,2,1,1,0,1,,455.0,950.0,12,1.0,0.0,5.0,1.0,1.0,1,1,1460.73406192683,0.0,55903.47230095751,0,1,2,3,150.0,9,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021644451591234615,55903.47230095751,10,5,10,10_1,10_0,10_1_0 -29842,2,68.0,0.0,2,112,400.0,0.0,0.0,90,90,3733.962192545002,0.0,552.8696910303722,3020.0,206.439240502823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,108284,1,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1282.05906965088,400.0,45084.282419946656,5,5,0,1,110.0,9,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06698565082770089,30056.188279964437,8,4,8,8_1,8_0,8_0_1 -29843,2,44.0,0.0,9,112,150.0,0.0,0.0,55,64,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,121288,2,1,1,0,1,,263.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1180.81004083079,150.0,44358.34969375438,1,1,1,2,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003381550509331051,21123.023663692562,5,3,5,5_1,5_0,5_0_0 -29844,2,32.0,0.0,7,112,800.0,0.0,0.0,46,37,0.0,0.0,1105.7393820607444,802.0,3.4406540083803834,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,130708,2,1,2,0,1,,483.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,1221.51462633596,800.0,66833.72791951009,1,1,1,2,105.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01199992915202745,27847.386633129205,7,4,7,7_1,7_0,7_0_0 -29845,2,69.0,0.0,6,112,400.0,0.0,0.0,71,71,0.0,0.0,552.8696910303722,440.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121853,2,1,2,0,1,,0.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1157.06619976618,400.0,40858.55826732024,5,5,0,1,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010768857704700846,27239.038844880157,7,4,7,7_1,7_0,7_0_0 -29846,2,68.0,0.0,7,112,600.0,0.0,0.0,77,77,0.0,0.0,829.3045365455583,2600.0,3440.6540083803834,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,118361,2,1,2,0,1,,600.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1247.09101995865,600.0,38744.898115263255,5,5,0,1,92.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06710560942153439,25829.93207684217,7,4,7,7_1,7_0,7_0_0 -29847,2,70.0,0.0,2,112,1030.0,0.0,0.0,78,78,0.0,155.27587572291867,1423.6394544032084,1250.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,114983,2,1,1,0,1,,240.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1153.89227347379,1030.0,43139.55571381483,5,5,0,1,80.0,9,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028975727248848445,28759.703809209885,8,4,8,8_1,8_0,8_0_1 -29848,2,50.0,0.0,5,112,1200.0,0.0,0.0,46,47,0.0,931.655254337512,1658.6090730911167,2270.0,292.4555907123326,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130208,2,2,3,0,1,,240.0,,43,4.0,0.0,4.0,4.0,2.5,1,1,1163.15097574406,1200.0,57589.36072352398,1,1,0,1,99.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03941700292347151,23035.744289409595,6,3,6,6_1,6_0,6_0_0 -29849,2,52.0,0.0,1,112,800.0,0.0,0.0,37,38,2987.1697540360015,0.0,1105.7393820607444,2890.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,119060,2,1,1,0,1,,0.0,,43,2.0,4.0,6.0,3.0,2.0,1,1,1384.27910634212,800.0,56614.1945744072,1,1,1,2,120.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05104726865277074,28307.0972872036,8,4,8,8_1,8_0,8_1_0 -29850,2,45.0,0.0,5,112,800.0,0.0,0.0,63,38,3733.962192545002,0.0,1105.7393820607444,3300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,3,109168,2,2,3,0,1,,35.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1215.62656845328,800.0,64693.56574379537,1,1,0,1,173.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05100970957558475,28127.637279911032,8,4,8,8_1,8_0,8_0_0 -29851,2,72.0,0.0,1,112,500.0,0.0,0.0,90,75,2987.1697540360015,0.0,691.0871137879653,2620.0,206.439240502823,0.0,10,2,2,2,2,2,2,2,1,0,,1,,1,113896,1,2,3,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1370.88540306973,500.0,25362.26914361491,5,5,0,1,88.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.10330305956317001,16908.17942907661,4,2,4_0,4_1_0,4_0_0,4_1_0 -29852,2,60.0,0.0,9,112,500.0,0.0,0.0,0,56,1642.9433647198007,0.0,691.0871137879653,1600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2004.0,6,101473,2,1,1,0,1,,200.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1251.89050784222,500.0,22202.39579131776,0,1,1,2,105.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07206429499944685,22202.39579131776,6,3,6,6_1,6_0,6_0_0 -29853,2,44.0,0.0,9,112,1600.0,0.0,0.0,52,62,0.0,310.55175144583734,2211.478764121489,2000.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,106871,1,1,1,0,1,,488.0,,43,2.0,2.0,6.0,4.0,2.1,1,1,1216.99368879009,1600.0,50734.89916791809,1,1,1,2,150.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03942059672535406,24159.475794246708,6,3,6,6_1,6_0,6_0_0 -29854,2,55.0,0.0,7,112,900.0,0.0,0.0,45,48,0.0,0.0,1243.9568048183376,1558.0,137.62616033521533,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,129555,2,1,2,0,1,,350.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,1269.32443415065,900.0,75727.75538757698,1,1,0,1,110.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020573698401941377,37863.87769378849,9,5,9,9_1,9_0,9_0_0 -29855,2,66.0,0.0,5,112,690.0,0.0,0.0,0,77,2240.377315527001,0.0,953.7002170273921,2260.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132113,2,2,3,0,1,,400.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1280.48413273728,690.0,27255.591939813796,0,5,0,1,109.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08291876415638177,27255.591939813796,7,4,7,7_1,7_0,7_0_0 -29856,2,56.0,0.0,6,112,1600.0,0.0,0.0,52,78,0.0,124.22070057833493,2211.478764121489,1724.0,6.881308016760767,0.0,70,2,2,1,1,2,1,2,2,0,,1,,4,113359,1,2,3,0,1,,400.0,454.0,42,1.0,1.0,4.0,2.0,1.5,1,1,1125.62284762212,1600.0,25778.35937142478,1,7,2,3,72.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.066877801459741,17185.572914283188,4,2,4_0,4_1_0,4_0_0,4_0_0 -29857,2,49.0,0.0,1,112,900.0,0.0,0.0,0,53,0.0,0.0,1243.9568048183376,930.0,51.60981012570575,0.0,71,2,2,2,1,2,2,2,2,2,30.0,1,,1,125052,2,1,1,0,1,,150.0,415.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1383.72898046424,900.0,17730.34075118182,0,1,2,3,55.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.052452460618277214,17730.34075118182,4,2,4_0,4_1_0,4_0_0,4_1_0 -29858,2,62.0,0.0,6,112,1900.0,0.0,0.0,45,21,0.0,0.0,2626.131032394268,2238.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,106819,2,1,1,0,1,,260.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1245.48590577169,1900.0,47341.49854143259,1,1,0,1,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0472735352481784,31560.99902762173,8,4,8,8_1,8_0,8_0_0 -29859,2,71.0,0.0,6,112,400.0,0.0,0.0,0,72,2688.452778632401,0.0,552.8696910303722,2260.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,105538,2,1,1,0,1,,400.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1461.73079185258,400.0,27514.124335856024,0,5,0,1,99.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08213963026454742,27514.124335856024,7,4,7,7_1,7_0,7_0_0 -29860,2,47.0,0.0,7,112,1000.0,0.0,0.0,56,47,0.0,0.0,1382.1742275759307,1120.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,123246,2,1,1,0,1,,268.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,1081.15624119457,1000.0,33357.24374343587,1,1,1,2,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033575915582665504,11119.081247811957,2,1,2_0,2_1_0,2_0_0,2_0_0 -29861,2,72.0,0.0,2,112,2400.0,0.0,0.0,0,78,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,105604,1,1,3,0,1,,300.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1346.46857257391,2400.0,64347.3895572568,0,5,0,1,110.0,9,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03729755032042849,64347.3895572568,10,5,10,10_1,10_0,10_0_1 -29862,2,80.0,0.0,7,211,563.0,1073.0,0.0,71,67,0.0,0.0,778.1640901252489,1636.0,0.0,1946.0495626093127,71,0,0,0,0,0,0,0,0,0,,1,,5,131020,2,1,2,0,1,,0.0,,41,1.0,4.0,5.0,3.0,2.0,1,1,1501.44070939401,563.0,35379.419301510534,5,5,0,1,97.0,2,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04624157299071753,17689.709650755267,4,2,4_0,4_1_0,4_1_0,4_0_0 -29863,2,70.0,0.0,5,211,1400.0,0.0,0.0,75,75,0.0,745.3242034700096,1935.0439186063027,2210.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,112800,2,1,2,0,1,,700.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1398.63054577927,1400.0,38154.0,5,5,0,1,90.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05792315353567123,25436.0,7,4,7,7_1,7_1,7_0_0 -29864,2,32.0,0.0,1,211,573.0,0.0,0.0,55,54,1049.9901685436546,0.0,791.9858324010082,1352.0,130.74485231845458,0.0,71,1,2,2,1,2,2,2,2,2,30.0,1,,1,100088,2,1,1,0,1,,311.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1478.52117787721,573.0,48065.472076902006,1,1,1,2,150.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.028128299620918677,22888.320036620004,6,3,6,6_1,6_1,6_1_0 -29865,2,42.0,0.0,1,211,1867.0,0.0,0.0,62,52,0.0,0.0,2580.5192828842623,1897.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,110973,2,1,2,0,1,,454.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1717.03489733171,1867.0,33155.330332471895,4,1,1,2,100.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057215536113724166,18419.627962484385,4,2,4_0,4_1_0,4_1_0,4_1_0 -29866,2,73.0,0.0,1,211,300.0,0.0,0.0,86,78,2987.1697540360015,0.0,414.65226827277917,2425.0,215.04087552377396,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102338,2,1,2,0,1,,360.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1579.937045525,300.0,27460.99077403538,5,5,0,1,130.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08830708330789215,18307.327182690253,4,2,4_0,4_1_0,4_1_0,4_1_0 -29867,2,53.0,0.0,1,211,997.0,0.0,0.0,52,63,2822.8754175640215,0.0,1378.0277048932028,2920.0,56.77079113827632,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,1,114701,2,1,2,0,1,,421.0,,43,3.0,1.0,5.0,3.0,2.0,1,1,1641.25315636688,997.0,68504.9252970104,1,1,0,1,105.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04262467242085192,34252.4626485052,9,5,9,9_1,9_1,9_1_0 -29868,2,28.0,0.0,6,211,906.0,0.0,0.0,52,63,0.0,724.6207533736205,1252.2498501837931,1638.0,55.050464134086134,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,4,107833,2,1,2,0,1,,314.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1722.13821288824,906.0,46809.360789359205,1,1,1,2,150.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03499300080962339,31206.24052623947,8,4,8,8_1,8_1,8_0_0 -29869,2,66.0,0.0,7,211,583.0,1018.0,0.0,77,77,0.0,0.0,805.8075746767676,1601.0,0.0,1846.298653062703,50,2,2,2,1,2,2,2,2,0,,1,,5,119980,2,1,3,0,1,,620.0,627.0,41,1.0,2.0,5.0,3.0,2.0,1,1,1435.83487828074,583.0,44347.533257855284,5,5,2,3,111.0,2,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.036101218768834556,22173.766628927642,6,3,6,6_1,6_1,6_0_0 -29870,2,38.0,0.0,9,211,1564.0,100.0,0.0,46,48,0.0,0.0,2161.7204919287556,1664.0,0.0,181.36529008474488,31,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,122436,2,1,1,0,1,,543.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1487.30133524171,1564.0,67308.79445097946,1,1,1,2,160.0,2,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024721880900895943,32051.80688141879,8,4,8,8_1,8_1,8_0_0 -29871,2,58.0,0.0,1,211,710.0,0.0,0.0,52,48,1732.5584573408808,0.0,981.3437015789107,1965.0,163.4310653980682,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,115323,2,1,2,0,1,,581.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,1699.94264766804,710.0,69249.31566163753,1,1,0,1,120.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028375731676559556,34624.65783081877,9,5,9,9_1,9_1,9_1_0 -29872,2,37.0,0.0,1,211,600.0,0.0,0.0,63,52,1344.2263893162005,0.0,829.3045365455583,1566.0,113.54158227655265,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,105293,2,1,2,0,1,,540.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1434.19785638769,600.0,36395.99186551729,4,1,1,2,170.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04302671584789747,17331.424697865375,4,2,4_0,4_1_0,4_1_0,4_1_0 -29873,2,67.0,0.0,5,211,740.0,0.0,0.0,78,75,0.0,672.8621281326475,1022.8089284061887,1490.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132582,2,1,3,0,1,,540.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1470.41532103029,740.0,44326.18726705753,5,5,0,1,97.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03361444085012343,29550.791511371688,8,4,8,8_1,8_1,8_0_0 -29874,2,46.0,0.0,7,211,648.0,348.0,0.0,0,33,0.0,0.0,895.648899469203,996.0,0.0,631.1512094949122,71,0,0,0,0,0,0,0,0,3,75.0,2,,5,123667,2,1,0,0,1,,403.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1850.27752955605,648.0,27272.990939646807,0,1,2,3,45.0,2,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0365196469358303,27272.990939646807,7,4,7,7_0,7_1,7_0_0 -29875,1,30.0,56.0,1,211,1129.0,0.0,0.0,0,43,0.0,0.0,1560.4747029332257,1129.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,122865,2,2,5,0,1,,491.0,384.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1858.40725914589,1129.0,16929.990769817363,0,4,2,3,80.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.06668639193901814,16929.990769817363,4,2,4_1,4_1_1,4_1_1,4_1_0 -29876,2,68.0,0.0,2,211,660.0,1850.0,0.0,77,75,0.0,434.77245202417225,912.2349902001142,2930.0,0.0,3355.2578665677806,71,0,0,0,0,0,0,0,0,0,,1,,2,125365,2,1,2,0,1,,540.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1463.91704751036,660.0,76775.97313311684,5,5,0,1,100.0,2,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03816298094873854,51183.98208874456,10,5,10,10_1,10_1,10_0_1 -29877,2,81.0,0.0,1,211,613.0,0.0,0.0,78,75,2987.1697540360015,0.0,847.2728015040454,2741.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126630,2,1,1,0,1,,276.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1503.22571104996,613.0,37055.53710143212,5,5,0,1,76.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07397005183050136,24703.691400954747,7,4,7,7_1,7_1,7_1_0 -29878,2,57.0,0.0,1,211,0.0,0.0,0.0,63,45,0.0,0.0,0.0,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,106921,2,2,5,0,1,,336.0,,43,2.0,2.0,6.0,2.0,1.5,4,4,1581.26112246112,0.0,53850.277089553696,1,1,0,1,136.0,2,3,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023212508227603623,35900.18472636913,9,5,9,9_1,9_1,9_1_0 -29879,2,37.0,0.0,8,211,1152.0,0.0,0.0,55,47,0.0,517.5862524097289,1592.264710167472,2152.0,860.1635020950959,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,126497,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1429.92820704163,1152.0,49014.08208841168,1,1,1,2,117.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043905749292993373,20422.534203504867,5,3,5,5_1,5_1,5_0_0 -29880,2,54.0,0.0,9,211,2500.0,0.0,0.0,46,22,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2008.0,6,108933,2,1,1,0,1,,200.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,1587.71941286814,2500.0,40985.058227124595,1,1,1,2,210.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060997839411277406,27323.372151416395,7,4,7,7_1,7_1,7_0_0 -29881,2,57.0,0.0,1,211,750.0,0.0,0.0,22,38,0.0,3493.70720376567,1036.630670681948,4125.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,118513,2,1,2,0,1,,362.0,,43,2.0,3.0,11.0,3.0,2.0,1,1,1707.52356116188,750.0,275905.7537094681,1,1,1,2,480.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014950757439961443,137952.87685473406,10,5,10,10_1,10_1,10_1_0 -29882,2,43.0,0.0,1,211,2100.0,0.0,0.0,42,38,0.0,0.0,2902.5658779094542,2170.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,2,50.0,1,,1,112338,2,1,3,0,1,,440.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1508.40269773732,2100.0,72024.73872443888,1,1,1,2,90.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03012853692260174,40013.74373579938,9,5,9,9_1,9_1,9_1_0 -29883,2,63.0,0.0,6,211,450.0,0.0,0.0,77,77,0.0,919.2331842796785,621.9784024091688,1538.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,112953,2,2,1,0,1,,174.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,1398.63054577927,450.0,26465.26976100944,5,5,0,1,98.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058113898474819,17643.513174006293,4,2,4_0,4_1_0,4_1_0,4_0_0 -29884,2,49.0,0.0,1,211,150.0,0.0,0.0,0,62,0.0,0.0,207.32613413638958,200.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,125632,2,2,3,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1595.93098728273,150.0,29710.357706004066,0,1,0,1,60.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006731659106197253,29710.357706004066,8,4,8,8_1,8_1,8_1_0 -29885,2,65.0,0.0,5,211,860.0,0.0,0.0,77,75,0.0,0.0,1188.6698357153002,860.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,131263,2,1,2,0,1,,253.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1398.63054577927,860.0,34928.90931582186,5,5,0,1,96.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02462143871209981,23285.93954388124,6,3,6,6_1,6_1,6_0_0 -29886,2,46.0,0.0,1,211,605.0,0.0,0.0,42,21,3733.962192545002,0.0,836.215407683438,3225.0,206.439240502823,0.0,50,2,2,1,2,1,2,2,2,2,15.0,1,,1,122662,2,1,1,0,1,,334.0,,43,2.0,2.0,4.0,4.0,2.1,1,1,1469.76615380056,605.0,52585.62758776595,1,1,1,2,135.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06132854447001592,25040.77504179331,7,4,7,7_1,7_1,7_1_0 -29887,2,39.0,0.0,1,211,500.0,0.0,0.0,0,11,0.0,0.0,691.0871137879653,533.0,56.77079113827632,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107915,2,1,4,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1581.18859432171,500.0,4819.968141013514,0,1,0,1,80.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1105816437798952,4819.968141013514,1,1,1_0,1_1_0,1_1_0,1_1_0 -29888,2,51.0,0.0,1,211,856.0,0.0,0.0,67,52,2240.377315527001,621.1035028916747,1183.1411388049964,3022.0,113.54158227655265,0.0,20,0,0,0,0,0,0,0,0,2,12.0,1,,1,103762,2,1,1,0,2,,383.0,600.0,43,2.0,2.0,7.0,3.0,2.0,1,1,1912.19199847791,856.0,50656.0,1,1,2,3,130.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059657296272899556,25328.0,7,4,7,7_1,7_1,7_1_0 -29889,0,75.0,0.0,1,211,180.0,0.0,0.0,0,71,0.0,0.0,248.7913609636675,280.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104857,2,2,4,0,1,,170.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1600.04908043246,180.0,14508.563337565587,0,5,0,1,70.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019298947351666703,14508.563337565587,3,2,3_0,3_1_0,3_1_0,3_1_0 -29890,2,54.0,0.0,9,211,1200.0,0.0,0.0,55,47,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,123209,2,1,1,0,1,,267.0,,43,2.0,2.0,4.0,2.0,1.5,6,6,1585.97586129504,1200.0,46567.95975156119,1,1,1,2,90.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025768790524686235,31045.30650104079,8,4,8,8_1,8_1,8_0_0 -29891,2,60.0,0.0,6,211,420.0,0.0,0.0,22,78,2688.452778632401,0.0,580.5131755818909,2280.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,119051,2,2,2,0,1,,400.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1541.97046253244,420.0,29364.332590512182,1,5,0,1,80.0,2,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07764521781559863,19576.22172700812,5,3,5,5_1,5_1,5_0_0 -29892,2,64.0,0.0,2,211,0.0,0.0,400.0,72,78,0.0,310.55175144583734,204.36533393501003,700.0,0.0,457.2983098610526,60,0,0,0,0,0,0,0,0,0,,1,,2,131511,2,1,2,0,1,,420.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1589.78443076157,0.0,23152.78262919635,5,5,0,1,90.0,2,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030233946874155815,15435.188419464233,3,2,3_0,3_1_0,3_1_0,3_0_1 -29893,2,49.0,0.0,1,211,2020.0,0.0,0.0,47,56,0.0,0.0,2791.9919397033796,2020.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130282,2,2,1,0,1,,940.0,,43,5.0,0.0,5.0,5.0,3.0,3,2,1402.44933704828,2020.0,36125.39925966797,4,1,1,2,100.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05591633702039716,12041.799753222656,2,1,2_0,2_1_0,2_1_0,2_1_0 -29894,2,57.0,0.0,1,211,1600.0,0.0,0.0,85,31,0.0,0.0,2211.478764121489,4100.0,4300.817510475479,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,109396,2,1,2,0,1,,400.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1644.45551939614,1600.0,47732.672613460025,6,1,0,1,200.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08589504369893276,31821.781742306684,8,4,8,8_1,8_1,8_1_0 -29895,2,50.0,0.0,7,211,3000.0,0.0,0.0,43,21,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,102880,1,2,2,0,1,,850.0,,43,2.0,2.0,7.0,3.0,2.0,2,2,1602.02168012897,3000.0,205941.18995632004,1,1,0,1,200.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014567265541372746,102970.59497816002,10,5,10,10_1,10_1,10_0_0 -29896,2,57.0,0.0,1,211,1500.0,0.0,0.0,52,64,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,,1,125186,2,1,2,0,1,,297.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1540.87611215258,1500.0,64727.06474270872,1,1,0,1,115.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024101201038561365,43151.37649513914,9,5,9,9_1,9_1,9_1_0 -29897,2,72.0,0.0,2,211,300.0,0.0,0.0,78,77,3733.962192545002,0.0,414.65226827277917,2833.0,56.77079113827632,0.0,10,2,2,2,2,1,2,2,2,0,,1,,2,105202,1,1,2,0,1,,380.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1550.99336693602,300.0,33160.30931798907,5,5,0,1,150.0,2,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.08543346121512597,22106.872878659382,6,3,6,6_1,6_1,6_0_1 -29898,2,65.0,0.0,8,211,1200.0,0.0,0.0,77,78,0.0,124.22070057833493,1658.6090730911167,1320.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,128784,2,1,1,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1439.89006234104,1200.0,33036.06327940662,5,5,0,1,90.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03995633465270773,22024.04218627108,6,3,6,6_1,6_1,6_0_0 -29899,2,75.0,0.0,5,211,724.0,0.0,0.0,77,75,0.0,517.5862524097289,1000.6941407649738,1323.0,170.31237341482898,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,133127,2,1,2,0,1,,500.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1588.01550422631,724.0,36854.65946220853,5,5,0,1,96.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03589776759046246,24569.772974805688,7,4,7,7_1,7_1,7_0_0 -29900,2,54.0,0.0,1,211,1070.0,0.0,0.0,56,64,2091.018827825201,0.0,1478.9264235062458,2590.0,206.439240502823,0.0,41,0,0,0,0,0,0,0,0,2,2.0,1,,1,121614,2,1,2,0,1,,506.0,,43,3.0,3.0,6.0,3.0,2.0,3,2,1554.40515963779,1070.0,39893.28207377782,1,1,0,1,100.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06492321176307597,19946.64103688891,5,3,5,5_1,5_1,5_1_0 -29901,2,41.0,0.0,7,211,682.0,0.0,0.0,38,31,2701.8950425255634,0.0,942.6428232067847,2491.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,110225,2,1,2,0,1,,660.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1397.77904091724,682.0,90275.2807596071,1,1,1,2,136.0,2,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02759337859755044,42988.22893314624,9,5,9,9_1,9_1,9_0_0 -29902,2,65.0,0.0,5,211,874.0,0.0,0.0,68,72,0.0,398.54141435549127,1208.0202749013633,1259.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,120594,2,1,1,0,1,,450.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1513.70800208198,874.0,22653.222901718105,1,5,0,1,99.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055577080818134394,15102.148601145404,3,2,3_0,3_1_0,3_1_0,3_0_0 -29903,2,49.0,0.0,7,211,929.0,0.0,0.0,64,31,4480.754631054002,0.0,1284.0398574180394,3989.0,103.2196202514115,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,,5,105452,2,1,2,0,1,,611.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1499.1368438653,929.0,162082.18397224188,1,1,0,1,165.0,2,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024610971435843648,108054.78931482793,10,5,10,10_1,10_1,10_0_0 -29904,2,86.0,0.0,1,211,350.0,0.0,0.0,0,77,0.0,0.0,483.76097965157567,2850.0,4300.817510475479,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,123942,1,2,2,0,2,,190.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1571.20226875082,350.0,19726.644645138458,0,5,0,1,70.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14447464590499273,19726.644645138458,5,3,5,5_1,5_1,5_1_0 -29905,2,41.0,0.0,1,211,655.0,0.0,0.0,0,54,0.0,0.0,905.3241190622346,688.0,56.77079113827632,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119454,2,1,1,0,1,,370.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1696.10392164049,655.0,28123.022230422877,0,1,1,2,85.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024463942543690644,28123.022230422877,8,4,8,8_1,8_1,8_1_0 -29906,2,52.0,0.0,2,211,373.0,918.0,0.0,0,42,0.0,0.0,515.5509868858221,1291.0,0.0,1664.933362977958,71,0,0,0,0,0,0,0,0,0,,1,,2,119255,2,1,2,0,1,,558.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1706.23759381523,373.0,27952.67925167693,0,1,1,2,108.0,2,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04618519707453627,27952.67925167693,7,4,7,7_1,7_1,7_0_1 -29907,1,54.0,50.0,1,211,537.0,1407.0,0.0,55,52,0.0,0.0,742.2275602082747,1944.0,0.0,2551.8096314923605,31,0,0,0,0,0,0,0,0,4,60.0,1,,1,120454,2,1,2,0,1,,431.0,662.0,43,2.0,4.0,3.0,2.0,1.5,2,1,1712.17396315366,537.0,34874.66145269232,1,1,2,3,70.0,2,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.055742476601157755,23249.77430179488,6,3,6,6_1,6_1,6_1_0 -29908,2,68.0,0.0,6,111,4000.0,0.0,0.0,34,34,0.0,0.0,5528.696910303723,4000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,,4,120925,2,1,2,0,1,,700.0,,43,2.0,3.0,6.0,3.0,1.8,2,2,1331.88914460472,4000.0,178530.6012793289,1,1,1,2,180.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022405122546703363,99183.66737740494,10,5,10,10_1,10_3,10_0_0 -29909,2,59.0,0.0,2,111,406.0,83.0,0.0,33,48,0.0,0.0,561.1627363958278,489.0,0.0,150.53319077033825,44,0,0,0,0,0,0,0,0,2,15.0,2,,2,105103,2,3,0,1,1,773.0,0.0,875.0,43,2.0,3.0,4.0,2.0,1.5,1,1,1581.53376299893,406.0,67970.98567733631,1,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007194246120268462,45313.99045155754,10,5,10,10_0,10_3,10_0_1 -29910,1,60.0,31.0,2,111,350.0,75.0,0.0,0,78,0.0,0.0,483.76097965157567,425.0,0.0,136.02396756355867,71,0,0,0,0,0,0,0,0,0,,2,,2,122134,2,2,0,1,1,828.0,0.0,449.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1543.38100569138,350.0,13895.747907846811,0,7,2,3,79.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03058489566869633,13895.747907846811,3,2,3_1,3_0_1,3_3_1,3_0_1 -29911,2,81.0,0.0,5,111,400.0,1500.0,0.0,0,74,0.0,0.0,552.8696910303722,1900.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,2,,3,133463,1,1,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1981.02543349242,400.0,90567.95094206183,0,5,0,1,103.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02097872349144201,90567.95094206183,10,5,10,10_0,10_3,10_0_0 -29912,2,42.0,0.0,7,111,350.0,500.0,0.0,0,47,0.0,0.0,483.76097965157567,850.0,0.0,906.8264504237244,42,2,2,2,2,1,2,2,2,2,30.0,2,,5,123896,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,1543.48288696626,350.0,27524.148773945424,0,1,0,1,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.030881972299343793,21172.42213380417,5,3,5,5_0,5_3,5_0_0 -29913,2,42.0,0.0,2,111,360.0,0.0,0.0,21,42,0.0,0.0,497.582721927335,360.0,0.0,0.0,70,2,2,2,2,1,2,2,2,1,10.0,2,,2,130443,1,2,0,1,2,806.0,0.0,716.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1808.70082213783,360.0,40901.99064476482,1,1,2,3,76.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.008801527610883594,19477.13840226896,5,3,5,5_0,5_3,5_0_1 -29914,1,40.0,240.0,2,111,480.0,0.0,0.0,0,43,0.0,0.0,663.4436292364467,480.0,0.0,0.0,50,2,1,2,1,1,2,2,2,4,45.0,2,,2,115179,1,2,0,1,2,,0.0,750.0,32,2.0,0.0,5.0,4.0,2.3,1,1,1619.88459450686,480.0,35286.14220985968,0,1,2,3,82.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.013603073896411324,15341.800960808558,3,2,3_1,3_0_1,3_3_1,3_0_1 -29915,1,30.0,270.0,9,111,1100.0,1007.0,0.0,0,85,0.0,0.0,1520.3916503335236,2107.0,0.0,1826.348471153381,71,0,0,0,0,0,0,0,0,0,,2,2009.0,6,127730,2,2,0,0,1,,360.0,456.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1522.0423179272,1100.0,6129.435752069625,0,7,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.34375105396749844,6129.435752069625,1,1,1_1,1_0_1,1_3_1,1_0_0 -29916,2,52.0,0.0,7,111,753.0,859.0,0.0,34,43,0.0,0.0,1040.7771933646757,1612.0,0.0,1557.9278418279587,31,0,0,0,0,0,0,0,0,2,7.0,2,,5,125843,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,1620.2604473713,753.0,96869.37623498427,1,1,0,1,97.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016640966037498112,38747.750493993706,9,5,9,9_0,9_3,9_0_0 -29917,2,52.0,0.0,2,111,800.0,1440.0,0.0,0,56,0.0,0.0,1105.7393820607444,2240.0,0.0,2611.660177220326,42,1,2,2,1,1,2,2,2,0,,1,,2,120024,2,2,5,0,1,,440.0,,32,1.0,0.0,5.0,3.0,2.0,1,1,1365.99241846471,800.0,21942.935055952432,0,1,0,1,110.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.10208297086457256,10971.467527976216,2,1,2_0,2_1_0,2_3_0,2_0_1 -29918,2,32.0,0.0,5,111,385.0,0.0,0.0,38,38,0.0,0.0,532.1370776167332,385.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,3,116656,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1790.53886626067,385.0,75044.89769775543,1,1,1,2,98.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005130262173860159,41691.609832086346,9,5,9,9_0,9_3,9_0_0 -29919,1,69.0,41.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,276.4348455151861,300.0,172.03270041901916,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,115434,2,1,0,1,1,610.0,0.0,450.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1764.79637858051,200.0,13674.895871323184,0,5,2,3,64.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0219380098263938,13674.895871323184,3,2,3_1,3_0_1,3_3_1,3_0_1 -29920,2,49.0,0.0,2,111,562.0,0.0,0.0,53,63,0.0,0.0,776.781915897673,682.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,115486,2,2,0,1,1,,0.0,,43,4.0,1.0,5.0,4.0,2.5,2,2,1576.06784723933,562.0,43552.83093759795,1,1,0,1,96.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01565914282305007,17421.132375039182,4,2,4_0,4_0_0,4_3_0,4_0_1 -29921,2,65.0,0.0,2,111,500.0,140.0,0.0,0,78,0.0,0.0,691.0871137879653,640.0,0.0,253.91140611864284,10,0,0,0,0,0,0,0,0,0,,2,,2,113473,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,1954.47680455913,500.0,21242.757091418865,0,7,0,1,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030127915940748186,21242.757091418865,5,3,5,5_0,5_3,5_0_1 -29922,1,69.0,53.0,2,111,370.0,0.0,0.0,0,75,0.0,0.0,511.40446420309434,370.0,0.0,0.0,60,2,2,2,2,1,2,1,2,0,,2,,2,102303,1,1,0,1,2,535.0,0.0,429.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1893.01337070211,370.0,12745.48932423749,0,5,2,3,62.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.029029877989571466,12745.48932423749,2,1,2_1,2_0_1,2_3_1,2_0_1 -29923,2,70.0,0.0,2,111,270.0,80.0,0.0,0,75,0.0,0.0,373.1870414455012,350.0,0.0,145.09223206779592,71,2,1,2,2,1,2,2,2,0,,2,,2,113028,1,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1886.79037315292,270.0,26306.654892299695,0,5,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013304618220481146,26306.654892299695,7,4,7,7_0,7_3,7_0_1 -29924,2,59.0,0.0,2,111,215.0,86.0,0.0,34,45,0.0,0.0,297.16745892882506,301.0,0.0,155.9741494728806,10,2,1,2,1,1,2,2,2,3,30.0,2,,2,127319,1,2,0,1,2,,0.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,1700.56821526335,215.0,78682.36165679763,1,1,0,1,84.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0038255079494553482,52454.90777119842,10,5,10,10_0,10_3,10_0_1 -29925,2,71.0,0.0,5,111,300.0,120.0,0.0,75,74,0.0,0.0,414.65226827277917,420.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,3,130431,2,1,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1684.72576479128,300.0,126660.35541004725,5,5,0,1,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003315954693481649,84440.23694003151,10,5,10,10_0,10_3,10_0_0 -29927,2,67.0,0.0,7,111,557.0,2000.0,0.0,0,75,0.0,0.0,769.8710447597933,2557.0,0.0,3627.3058016948976,42,0,0,0,0,0,0,0,0,0,,1,,5,105298,2,1,2,0,1,,550.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,1302.41293428184,557.0,34142.04222335297,0,5,0,1,210.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07489300093041963,34142.04222335297,9,5,9,9_1,9_3,9_0_0 -29928,2,38.0,0.0,2,111,300.0,70.0,0.0,0,37,0.0,0.0,414.65226827277917,370.0,0.0,126.95570305932142,44,1,2,2,2,1,2,2,2,2,20.0,2,,2,132469,1,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1549.86920179436,300.0,30370.68009286063,0,1,0,1,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01218280258686,30370.68009286063,8,4,8,8_0,8_3,8_0_1 -29929,2,71.0,0.0,2,111,0.0,0.0,1280.0,0,78,0.0,0.0,653.969068592032,1280.0,0.0,1463.3545915553682,71,0,0,0,0,0,0,0,0,0,,2,,2,112795,2,2,0,1,1,,0.0,,21,1.0,3.0,5.0,2.0,1.5,1,1,1558.20984220788,0.0,16626.563203224276,0,5,0,1,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07698524249147162,11084.375468816184,2,1,2_0,2_0_0,2_3_0,2_0_1 -29930,2,64.0,0.0,2,111,361.0,92.0,0.0,75,75,0.0,0.0,498.96489615491095,453.0,0.0,166.8560668779653,20,2,2,1,2,1,2,2,2,0,,2,,2,126032,2,2,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1592.92031388589,361.0,25933.307700706602,5,5,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017467883589244466,17288.871800471068,4,2,4_0,4_0_0,4_3_0,4_0_1 -29931,2,70.0,0.0,2,111,300.0,0.0,0.0,0,78,0.0,0.0,414.65226827277917,360.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116192,2,1,0,1,2,636.0,237.0,583.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1893.01337070211,300.0,18471.631160692774,0,5,2,3,66.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019489345411252693,18471.631160692774,4,2,4_0,4_0_0,4_3_0,4_0_1 -29932,2,42.0,0.0,2,111,290.0,250.0,0.0,0,34,0.0,0.0,400.8305259970199,540.0,0.0,453.4132252118622,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,113566,2,1,0,1,1,,0.0,,22,2.0,2.0,5.0,2.0,1.5,2,2,1525.61979214442,290.0,13703.283436013524,0,1,1,2,82.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03940661393464496,9135.522290675683,1,1,1_0,1_0_0,1_3_0,1_0_1 -29933,2,48.0,0.0,2,111,0.0,0.0,0.0,34,37,0.0,0.0,0.0,1407.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,45.0,1,,2,103785,2,1,2,0,1,,556.0,,43,2.0,0.0,9.0,5.0,2.8,2,2,1180.93304461239,0.0,207900.09930434407,1,1,1,2,208.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.006767673535067911,74250.03546583717,10,5,10,10_1,10_3,10_0_1 -29934,2,54.0,0.0,5,111,1800.0,0.0,0.0,33,33,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,132179,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,1609.45273022607,1800.0,124882.37337914293,1,1,1,2,132.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014413563350010969,54296.68407788823,10,5,10,10_0,10_3,10_0_0 -29935,2,51.0,0.0,6,111,1198.0,942.0,0.0,85,37,0.0,0.0,1655.844724635965,2140.0,0.0,1708.461032598297,71,2,2,2,1,2,1,2,1,3,60.0,2,,4,106624,2,1,0,0,1,,0.0,1299.0,42,1.0,0.0,5.0,5.0,3.0,3,3,1789.06752268256,1198.0,85780.90483638487,6,1,2,3,130.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02494727706686881,28593.634945461625,8,4,8,8_0,8_3,8_0_0 -29936,2,83.0,0.0,2,111,530.0,0.0,0.0,0,77,0.0,0.0,732.5523406152432,903.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108286,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,5,4,1937.81109463455,530.0,35993.139495239935,0,5,0,1,135.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025088114364667218,35993.139495239935,9,5,9,9_0,9_3,9_0_1 -29937,2,70.0,0.0,6,111,1200.0,0.0,0.0,0,75,0.0,0.0,1658.6090730911167,1270.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101810,1,1,2,0,1,,220.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1304.55677857644,1200.0,43303.752262754104,0,5,0,1,125.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029327712580055953,43303.752262754104,9,5,9,9_1,9_3,9_0_0 -29938,2,53.0,0.0,1,111,1150.0,0.0,0.0,0,43,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,6.0,2,,1,114617,2,1,0,0,1,,0.0,587.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1949.22626519311,1150.0,14056.381287530636,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08181337546813423,14056.381287530636,3,2,3_0,3_0_0,3_3_0,3_1_0 -29939,2,42.0,0.0,1,111,0.0,0.0,1900.0,0,46,0.0,72.46207533736204,970.7353361912976,1970.0,0.0,2172.16697184,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,117133,2,1,2,0,1,,120.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1275.36837989343,0.0,54517.114315323466,0,1,1,2,145.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036135441590060095,54517.114315323466,10,5,10,10_1,10_3,10_1_0 -29940,2,54.0,0.0,1,111,250.0,1100.0,0.0,0,67,0.0,0.0,345.54355689398267,1350.0,0.0,1995.0181909321939,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,111772,2,2,2,0,2,,200.0,,12,1.0,0.0,7.0,1.0,1.0,2,2,1209.26410210038,250.0,37054.07779733646,0,1,0,1,115.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036433237048394206,37054.07779733646,9,5,9,9_1,9_3,9_1_0 -29941,2,75.0,0.0,2,111,625.0,0.0,0.0,77,74,0.0,0.0,863.8588922349566,2078.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,102270,2,2,2,0,1,,401.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1234.99612959438,625.0,81125.25195165093,5,5,0,1,140.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025614712435512034,54083.50130110062,10,5,10,10_1,10_3,10_0_1 -29942,1,29.0,22.0,2,111,300.0,480.0,0.0,85,62,0.0,0.0,414.65226827277917,780.0,0.0,870.5533924067755,31,2,2,2,2,1,2,2,2,2,40.0,2,,2,111167,2,3,0,1,1,1128.0,0.0,340.0,42,1.0,0.0,3.0,5.0,2.4,1,1,1422.60895938609,300.0,23320.105556567087,6,2,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03344753299284905,9716.71064856962,1,1,1_1,1_0_1,1_3_1,1_0_1 -29943,1,53.0,234.0,2,111,320.0,0.0,0.0,0,85,0.0,0.0,442.2957528242978,320.0,0.0,0.0,71,2,1,2,1,1,1,2,2,0,,2,,2,106036,2,2,0,1,1,567.0,0.0,264.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1462.66097994247,320.0,8393.242737169836,0,7,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03812590795007825,8393.242737169836,1,1,1_1,1_0_1,1_3_1,1_0_1 -29944,2,47.0,0.0,2,111,469.0,287.0,0.0,63,34,0.0,0.0,648.2397127331114,756.0,0.0,520.5183825432179,71,2,2,2,1,1,2,2,2,2,10.0,2,,2,101929,1,2,0,1,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1517.03109236155,469.0,58007.77680491412,1,1,0,1,98.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013032735292416095,38671.851203276085,9,5,9,9_0,9_3,9_0_1 -29945,2,38.0,0.0,2,111,0.0,0.0,0.0,48,48,0.0,0.0,0.0,281.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,20.0,2,,2,101070,2,1,0,1,2,,281.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,1535.46624384727,0.0,51037.756286721866,1,1,1,2,42.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005505727924663996,34025.17085781458,9,5,9,9_0,9_3,9_0_1 -29946,2,57.0,0.0,6,111,860.0,0.0,0.0,52,63,0.0,465.827627168756,1188.6698357153002,1460.0,258.04905062852873,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,105374,2,1,2,0,1,,570.0,,43,2.0,4.0,4.0,3.0,2.0,2,2,261.042459448123,860.0,55604.20025524216,1,1,0,1,102.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026257009242073515,27802.10012762108,7,4,7,7_1,7_3,7_0_0 -29947,1,97.0,94.0,1,111,183.0,1358.0,0.0,0,78,0.0,0.0,252.93788364639528,1541.0,0.0,2462.9406393508357,71,1,2,2,1,2,2,2,2,0,,2,,1,126435,2,3,0,0,1,,200.0,306.0,11,0.0,1.0,3.0,1.0,1.0,1,1,423.641219999191,183.0,15178.833855838315,0,5,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.10152295061898164,15178.833855838315,3,2,3_1,3_0_1,3_3_1,3_1_0 -29948,1,28.0,297.0,5,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1286.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,126346,2,2,0,0,1,,285.0,570.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1223.30711777235,0.0,15699.503977397502,0,4,2,3,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08191341598125952,12076.541521075002,2,1,2_1,2_0_1,2_3_1,2_0_0 -29949,2,84.0,0.0,1,111,150.0,1025.0,0.0,0,78,0.0,0.0,207.32613413638958,1175.0,0.0,1858.9942233686352,41,0,0,0,0,0,0,0,0,0,,1,,1,111500,2,2,5,0,1,,250.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1037.57985370677,150.0,13379.592490193489,0,5,0,1,90.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.087820312977485,13379.592490193489,3,2,3_0,3_1_0,3_3_0,3_1_0 -29950,1,35.0,80.0,2,111,0.0,0.0,0.0,42,62,0.0,0.0,0.0,457.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,108180,2,1,0,1,1,990.0,605.0,560.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1254.98279484103,0.0,50902.915669029055,4,1,2,3,64.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00897787472472924,24239.483651918596,7,4,7,7_0,7_3,7_0_1 -29951,1,36.0,491.0,7,111,282.0,499.0,0.0,55,47,0.0,0.0,389.77313217641245,781.0,0.0,905.012797522877,50,2,2,2,1,1,2,2,2,2,45.0,2,,5,104023,1,3,0,0,1,,544.0,514.0,43,2.0,0.0,3.0,5.0,2.4,1,1,1012.00256045459,282.0,35433.43086575783,4,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.022041331615865148,14763.929527399096,3,2,3_1,3_0_1,3_3_1,3_0_0 -29952,2,58.0,0.0,1,111,1000.0,0.0,0.0,78,55,0.0,0.0,1382.1742275759307,2359.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,116303,2,3,1,0,1,,240.0,,42,1.0,0.0,4.0,3.0,2.0,1,1,900.338620315975,1000.0,50114.307757785195,5,1,0,1,63.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04707238522382926,25057.153878892597,7,4,7,7_1,7_3,7_1_0 -29953,1,30.0,371.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1747.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,124382,2,2,0,0,1,,0.0,472.0,31,0.0,0.0,4.0,4.0,1.9,2,2,1076.26273548368,0.0,6221.285444234403,0,6,2,3,85.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.2808101341209216,3274.3607601233703,1,1,1_1,1_0_1,1_3_1,1_0_0 -29954,2,71.0,0.0,8,111,1523.0,0.0,0.0,0,75,0.0,0.0,2105.0513485981423,1523.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,118889,2,1,1,0,1,,360.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1000.1300415793,1523.0,29084.454455108917,0,5,0,1,123.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052364743590109626,29084.454455108917,8,4,8,8_1,8_3,8_0_0 -29955,2,53.0,0.0,5,111,310.0,690.0,0.0,0,47,0.0,0.0,428.47401054853844,1000.0,0.0,1251.4205015847397,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,120265,2,3,0,0,1,,320.0,444.0,22,2.0,2.0,4.0,2.0,1.5,2,2,1141.23278180972,310.0,21471.03415802981,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04657437516236341,14314.022772019875,3,2,3_0,3_0_0,3_3_0,3_0_0 -29956,1,74.0,143.0,2,111,170.0,1240.0,0.0,0,77,0.0,0.0,234.9696186879082,1410.0,0.0,2248.9295970508365,43,2,2,2,2,1,2,2,2,0,,2,,2,114094,1,3,0,0,2,,0.0,501.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1469.29931390767,170.0,11925.661246758074,0,5,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.11823243766741243,11925.661246758074,2,1,2_1,2_0_1,2_3_1,2_0_1 -29957,2,79.0,0.0,1,111,0.0,1800.0,0.0,0,86,0.0,0.0,0.0,2121.0,0.0,3264.575221525408,70,0,0,0,0,0,0,0,0,0,,1,,1,103022,2,2,2,0,1,,583.0,,11,0.0,8.0,7.0,1.0,1.0,2,2,1061.4932607358,0.0,8186.327985201465,0,5,0,1,80.0,9,7,8,0,1,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2590905231056171,8186.327985201465,1,1,1_0,1_1_0,1_3_0,1_1_0 -29958,2,61.0,0.0,1,111,663.0,14008.0,0.0,77,74,0.0,0.0,916.381512882842,14671.0,0.0,25405.649835071064,50,0,0,0,0,0,0,0,0,0,,1,,1,130310,2,1,2,0,1,,570.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,915.34580904296,663.0,62172.89647762234,6,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23597099107776778,41448.59765174823,9,5,9,9_1,9_3,9_1_0 -29959,2,41.0,0.0,9,111,400.0,0.0,0.0,0,46,0.0,0.0,552.8696910303722,400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,2,2008.0,6,128042,1,1,0,0,1,,290.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1185.5600584845,400.0,33146.27096731652,0,1,1,2,44.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012067722501708116,33146.27096731652,8,4,8,8_0,8_3,8_0_0 -29960,2,70.0,0.0,2,111,300.0,300.0,0.0,0,78,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,0,,2,,2,129083,2,1,0,0,1,,200.0,360.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1390.65058192378,300.0,17970.67409877022,0,5,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03338772918045737,17970.67409877022,4,2,4_0,4_0_0,4_3_0,4_0_1 -29961,2,59.0,0.0,2,111,0.0,1100.0,0.0,77,75,0.0,0.0,0.0,1640.0,0.0,1995.0181909321939,50,2,2,2,2,1,2,2,2,0,,2,,2,121940,1,3,0,0,1,,169.0,375.0,41,0.0,5.0,3.0,2.0,1.5,1,1,1309.85425916617,0.0,42055.2574626975,5,7,2,3,53.0,9,7,8,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.038996313396836534,28036.838308464998,8,4,8,8_0,8_3,8_0_1 -29962,2,24.0,0.0,9,111,700.0,0.0,0.0,43,63,0.0,0.0,967.5219593031513,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,100118,2,1,0,0,1,,220.0,440.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1300.37508148111,700.0,24129.583289208338,1,1,2,3,42.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029010032689336433,16086.388859472225,4,2,4_0,4_0_0,4_3_0,4_0_0 -29963,2,45.0,0.0,8,111,448.0,0.0,0.0,0,54,0.0,0.0,619.2140539540169,448.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,124707,2,1,0,0,1,,110.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1315.9209547746,448.0,25728.275654472545,0,1,1,2,45.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01741274876002507,25728.275654472545,7,4,7,7_0,7_3,7_0_0 -29964,2,31.0,0.0,1,111,500.0,0.0,0.0,0,67,0.0,0.0,691.0871137879653,550.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,114188,2,2,0,0,1,,180.0,430.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1451.95783119063,500.0,20702.907538794363,0,1,2,3,45.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026566316782769602,20702.907538794363,5,3,5,5_0,5_3,5_1_0 -29965,0,32.0,0.0,9,111,310.0,690.0,0.0,0,90,0.0,0.0,428.47401054853844,1000.0,0.0,1251.4205015847397,20,0,0,0,0,0,0,0,0,2,18.0,2,2006.0,6,120216,2,1,0,0,1,,245.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1364.11833155565,310.0,23072.956975682107,0,1,5,0,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04334078207028065,23072.956975682107,6,3,6,6_0,6_3,6_0_0 -29966,2,52.0,0.0,2,111,0.0,0.0,0.0,34,33,0.0,0.0,0.0,1417.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,107362,2,1,0,1,1,,220.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,1246.24271953711,0.0,69861.47586277271,1,1,1,2,95.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020282995492156227,27944.590345109085,7,4,7,7_0,7_3,7_0_1 -29967,2,44.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,830.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,119435,2,2,0,0,1,,244.0,737.0,32,1.0,0.0,4.0,3.0,1.8,1,1,1834.62954005721,0.0,41769.16095695933,0,1,2,3,110.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019871119768368493,23205.08942053296,6,3,6,6_0,6_3,6_1_0 -29968,2,35.0,0.0,1,111,392.0,0.0,0.0,0,52,0.0,0.0,541.8122972097648,392.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,7.0,2,,1,124114,2,1,0,0,1,,0.0,416.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1685.62235320691,392.0,19453.59678277899,0,1,2,3,38.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020150515319974773,19453.59678277899,5,3,5,5_0,5_3,5_1_0 -29969,2,28.0,0.0,9,111,560.0,760.0,0.0,47,42,0.0,0.0,774.0175674425211,1320.0,0.0,1378.376204644061,44,0,0,0,0,0,0,0,0,2,50.0,2,2009.0,6,102827,2,1,0,0,1,,440.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1367.2459265644,560.0,48832.06290388288,1,1,1,2,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02703141996270324,27128.92383549049,7,4,7,7_0,7_3,7_0_0 -29970,2,66.0,0.0,6,111,450.0,0.0,0.0,0,75,0.0,0.0,621.9784024091688,450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,132944,2,1,0,0,1,,0.0,445.0,11,0.0,2.0,2.0,1.0,1.0,3,3,1319.1180590787,450.0,22383.102551856726,0,5,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0201044515145945,22383.102551856726,6,3,6,6_0,6_3,6_0_0 -29971,2,68.0,0.0,6,111,1090.0,0.0,0.0,0,37,0.0,0.0,1506.5699080577642,1090.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,75.0,2,,4,124902,2,1,0,0,1,,419.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1393.14029266735,1090.0,30809.865072202087,0,1,0,1,84.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03537827891961274,30809.865072202087,8,4,8,8_0,8_3,8_0_0 -29972,1,44.0,100.0,1,111,450.0,1000.0,0.0,35,37,0.0,0.0,621.9784024091688,1450.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,107368,2,1,0,0,1,,600.0,789.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,2,2,1359.77630523727,450.0,36810.89435116181,6,1,2,3,117.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03939051266094098,11874.482048761876,2,1,2_1,2_0_1,2_3_1,2_1_0 -29973,2,79.0,0.0,6,111,250.0,340.0,0.0,0,75,0.0,0.0,345.54355689398267,590.0,0.0,616.6419862881327,71,0,0,0,0,0,0,0,0,0,,2,,4,100633,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1415.63194434467,250.0,38139.76618500066,0,5,0,1,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015469418379183222,38139.76618500066,9,5,9,9_0,9_3,9_0_0 -29974,2,46.0,0.0,9,111,0.0,0.0,1500.0,45,45,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,71,0,0,0,0,0,0,0,0,3,60.0,2,2005.0,6,119946,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1241.55400405241,0.0,55835.1006516234,1,1,1,2,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026864821277193984,37223.4004344156,9,5,9,9_0,9_3,9_0_0 -29975,2,62.0,0.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1918.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,100026,2,1,0,0,1,,568.0,590.0,12,1.0,2.0,3.0,1.0,1.0,3,2,1460.11728984808,0.0,26893.333037950364,0,1,2,3,64.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07131879106592798,26893.333037950364,7,4,7,7_0,7_3,7_0_0 -29976,2,40.0,0.0,9,111,0.0,0.0,1260.0,63,64,0.0,0.0,643.7508018952816,1260.0,0.0,1440.4896760623158,71,2,2,1,1,2,2,2,1,2,10.0,2,2004.0,6,116345,2,2,0,0,1,,398.0,535.0,43,2.0,2.0,4.0,3.0,1.8,1,1,1432.59257919095,0.0,35953.35460102343,1,1,2,3,89.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03504540852953214,19974.08588945746,5,3,5,5_0,5_3,5_0_0 -29977,2,29.0,0.0,9,111,480.0,0.0,0.0,0,34,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,2008.0,6,125326,2,1,0,0,1,,345.0,510.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1462.133281154,480.0,30272.47128389724,0,1,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01585598993549381,30272.47128389724,8,4,8,8_0,8_3,8_0_0 -29978,2,51.0,0.0,9,111,560.0,0.0,0.0,0,48,0.0,0.0,774.0175674425211,560.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,118522,2,1,0,0,1,,267.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1185.5600584845,560.0,21195.362363280663,0,1,1,2,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0264208740762157,21195.362363280663,5,3,5,5_0,5_3,5_0_0 -29979,2,36.0,0.0,1,111,880.0,0.0,0.0,85,22,1493.5848770180007,0.0,1216.313320266819,2000.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,117047,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,3,3,1494.66325047807,880.0,56445.59988269707,6,1,1,2,107.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03543234555317541,20905.77773433225,5,3,5,5_0,5_3,5_1_0 -29980,1,50.0,133.0,6,111,1000.0,2000.0,0.0,56,62,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,20,2,2,2,2,1,2,1,2,2,15.0,1,,4,124001,1,3,3,0,2,,650.0,623.0,43,3.0,0.0,4.0,5.0,3.0,3,3,852.499014903791,1000.0,20744.317525802046,1,1,2,3,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.144617917473957,6914.772508600682,1,1,1_1,1_1_1,1_3_1,1_0_0 -29981,2,36.0,0.0,2,111,1200.0,0.0,0.0,0,55,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,114311,2,3,0,0,1,,206.0,427.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1696.56594320709,1200.0,17835.28046782385,0,1,2,3,41.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06728237339271943,17835.28046782385,4,2,4_0,4_0_0,4_3_0,4_0_1 -29982,2,80.0,0.0,2,111,245.0,0.0,0.0,0,74,0.0,0.0,338.632685756103,730.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131323,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1268.1288710632,245.0,39733.45183922663,0,5,0,1,66.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018372428425141547,39733.45183922663,9,5,9,9_0,9_3,9_0_1 -29983,2,84.0,0.0,5,111,219.0,107.0,0.0,0,75,0.0,0.0,302.6961558391288,326.0,0.0,194.06086039067702,71,0,0,0,0,0,0,0,0,0,,2,,3,127571,1,2,0,1,2,258.0,0.0,573.0,11,0.0,1.0,4.0,1.0,1.0,3,3,1511.06203620805,219.0,21405.0,0,5,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015230086428404578,21405.0,6,3,6,6_0,6_3,6_0_0 -29984,2,38.0,0.0,9,111,520.0,0.0,0.0,0,54,0.0,0.0,718.7305983394839,550.0,51.60981012570575,0.0,71,2,2,2,2,1,2,2,2,1,15.0,2,2007.0,6,100415,2,1,0,0,1,,300.0,405.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1638.09288922171,520.0,22154.0,0,1,2,3,37.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.024826216484607744,22154.0,6,3,6,6_0,6_3,6_0_0 -29985,2,81.0,0.0,5,111,185.0,75.0,0.0,77,74,0.0,0.0,255.70223210154717,260.0,0.0,136.02396756355867,71,0,0,0,0,0,0,0,0,0,,2,,3,105195,2,1,0,1,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1168.53702375669,185.0,35954.90453210681,5,5,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007231280499377398,23969.936354737874,6,3,6,6_0,6_3,6_0_0 -29986,2,92.0,0.0,2,111,360.0,120.0,0.0,78,77,0.0,0.0,497.582721927335,480.0,0.0,217.63834810169388,71,2,1,2,1,1,2,2,2,0,,2,,2,101605,1,3,0,1,2,689.0,0.0,512.0,41,0.0,1.0,3.0,2.0,1.5,4,2,1522.94497729134,360.0,33980.43244825369,5,5,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01412577667252931,22653.621632169128,6,3,6,6_0,6_3,6_0_1 -29987,2,90.0,0.0,5,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,488.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,132914,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,1268.1288710632,0.0,17559.862361555366,0,5,0,1,55.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027790650629950345,17559.862361555366,4,2,4_0,4_0_0,4_3_0,4_0_0 -29988,1,59.0,270.0,9,111,0.0,0.0,250.0,0,90,0.0,0.0,127.72833370938126,250.0,0.0,285.8114436631579,71,2,1,2,1,1,2,2,2,0,,2,2011.0,6,107268,2,1,0,1,1,468.0,0.0,318.0,11,0.0,3.0,2.0,1.0,1.0,1,1,339.862797170248,0.0,11274.5822482632,0,7,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.022173770565957016,11274.5822482632,2,1,2_1,2_0_1,2_3_1,2_0_0 -29989,2,62.0,0.0,2,111,285.0,100.0,0.0,0,77,0.0,0.0,393.9196548591402,385.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,126478,2,1,0,1,1,384.0,170.0,277.0,11,0.0,0.0,2.0,1.0,1.0,1,1,361.144574462122,285.0,16638.50931716263,0,7,2,3,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02313909213025907,16638.50931716263,4,2,4_0,4_0_0,4_3_0,4_0_1 -29990,2,59.0,0.0,2,111,540.0,280.0,0.0,56,62,0.0,0.0,746.3740828910024,820.0,0.0,507.8228122372857,10,0,0,0,0,0,0,0,0,2,45.0,2,,2,119916,2,3,0,1,1,1212.0,0.0,396.0,43,2.0,1.0,5.0,3.0,2.0,2,2,382.648040307642,540.0,44525.388987069426,1,1,2,3,91.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018416458983393395,22262.694493534713,6,3,6,6_0,6_3,6_0_1 -29991,1,63.0,40.0,2,111,190.0,99.0,0.0,0,68,0.0,0.0,262.6131032394268,289.0,0.0,179.55163718389744,71,0,0,0,0,0,0,0,0,0,,2,,2,118152,2,2,0,1,1,632.0,170.0,338.0,12,1.0,4.0,4.0,1.0,1.0,2,2,395.047590009598,190.0,13645.877075476206,0,1,2,3,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02117855806567235,13645.877075476206,3,2,3_1,3_0_1,3_3_1,3_0_1 -29992,1,31.0,355.0,2,111,120.0,160.0,0.0,85,67,0.0,621.1035028916747,165.86090730911167,880.0,0.0,290.18446413559184,71,2,2,2,2,1,1,2,2,0,,2,,2,117665,2,3,0,1,1,515.0,0.0,308.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,1,1,304.273064797418,120.0,9042.35873954682,6,4,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09731973983196594,3349.0217553877114,1,1,1_1,1_0_1,1_3_1,1_0_1 -29995,1,55.0,300.0,6,111,680.0,0.0,0.0,0,56,0.0,0.0,939.8784747516328,980.0,516.0981012570575,0.0,71,2,2,2,2,2,1,2,2,0,,2,,4,131081,2,2,0,0,1,,0.0,500.0,32,2.0,1.0,4.0,3.0,2.0,1,1,1476.43147423666,680.0,19509.371987331622,0,4,2,3,90.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.050232267888292936,9754.685993665811,2,1,2_1,2_0_1,2_3_1,2_0_0 -29997,2,50.0,0.0,1,111,250.0,0.0,0.0,0,52,0.0,0.0,345.54355689398267,370.0,0.0,0.0,44,2,1,2,1,1,2,2,2,2,15.0,2,,1,118143,1,3,0,1,1,48.0,0.0,224.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1461.48223702378,250.0,20675.79170616596,0,1,2,3,47.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01789532440925385,20675.79170616596,5,3,5,5_0,5_3,5_1_0 -29998,2,40.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,93.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,15.0,2,,2,122003,1,2,0,1,1,,0.0,380.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2132.72730571891,0.0,13121.283451330608,0,1,2,3,35.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007087721284655963,13121.283451330608,2,1,2_0,2_0_0,2_3_0,2_0_1 -30000,1,58.0,125.0,5,111,380.0,0.0,0.0,0,56,0.0,0.0,525.2262064788536,380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,124716,2,1,0,1,1,31.0,0.0,330.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1876.8901603274,380.0,11543.189541081181,0,1,2,3,59.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03291984409054481,11543.189541081181,2,1,2_1,2_0_1,2_3_1,2_0_0 -30001,2,53.0,0.0,7,111,390.0,552.0,0.0,46,37,0.0,0.0,539.0479487546129,942.0,0.0,1001.1364012677918,71,2,2,2,2,1,2,2,2,4,20.0,2,,5,112879,2,2,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1546.79882831965,390.0,70901.92009391921,1,1,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.013285958952200354,47267.94672927947,10,5,10,10_0,10_3,10_0_0 -30002,1,80.0,112.0,7,111,260.0,1260.0,0.0,78,78,0.0,0.0,359.36529916974195,1586.0,113.54158227655265,2285.2026550677856,71,1,2,2,1,2,2,2,2,0,,2,,5,118267,2,1,0,0,1,,320.0,480.0,41,0.0,6.0,3.0,2.0,1.5,1,1,1442.39749510806,260.0,15986.902583224326,5,5,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.09920620906668005,10657.935055482883,2,1,2_1,2_0_1,2_3_1,2_0_0 -30003,2,59.0,0.0,5,111,720.0,0.0,0.0,22,46,0.0,0.0,995.16544385467,720.0,0.0,0.0,50,2,2,2,1,2,2,2,2,3,40.0,2,,3,126050,1,2,0,0,1,,0.0,,43,2.0,1.0,4.0,3.0,2.0,4,3,1760.01772524877,720.0,36188.80249694647,1,1,0,1,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.01989565695247175,18094.401248473234,4,2,4_0,4_0_0,4_3_0,4_0_0 -30004,1,23.0,270.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,453.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130332,2,1,0,1,1,490.0,136.0,290.0,12,1.0,0.0,2.0,1.0,1.0,1,1,466.449112855351,0.0,11544.160707892624,0,4,2,3,42.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03924061795937132,11544.160707892624,2,1,2_1,2_0_1,2_3_1,2_0_1 -30005,2,49.0,0.0,2,111,1000.0,0.0,0.0,56,47,0.0,0.0,1382.1742275759307,1120.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,121313,2,2,0,0,1,,0.0,,43,3.0,0.0,5.0,4.0,2.3,2,2,1606.55419320624,1000.0,50595.741605022784,1,1,1,2,77.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02213625029440846,21998.14852392295,6,3,6,6_0,6_3,6_0_1 -30006,2,41.0,0.0,2,111,350.0,650.0,0.0,55,48,0.0,0.0,483.76097965157567,1000.0,0.0,1178.8743855508417,71,2,2,2,2,1,2,2,2,0,,2,,2,107315,1,3,0,0,1,,380.0,331.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,3,1,393.740637296151,350.0,54464.621094730595,1,1,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.018360542677065446,17569.23261120342,4,2,4_0,4_0_0,4_3_0,4_0_1 -30007,2,47.0,0.0,1,111,600.0,1020.0,0.0,37,48,0.0,310.55175144583734,829.3045365455583,1920.0,0.0,1849.925958864398,42,0,0,0,0,0,0,0,0,1,25.0,1,,1,123513,2,1,2,0,1,,370.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1104.17464986267,600.0,61480.115865468,1,1,1,2,80.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031229609329321725,29276.245650222856,8,4,8,8_1,8_3,8_1_0 -30008,0,79.0,0.0,1,111,300.0,900.0,0.0,78,75,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,1,130797,1,1,2,0,2,,600.0,,41,0.0,6.0,5.0,2.0,1.5,1,1,1244.98563018888,300.0,25793.251465689482,5,5,0,1,160.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046523797187658006,17195.50097712632,4,2,4_0,4_1_0,4_3_0,4_1_0 -30009,2,82.0,0.0,2,111,300.0,250.0,0.0,77,75,0.0,0.0,414.65226827277917,550.0,0.0,453.4132252118622,43,0,0,0,0,0,0,0,0,0,,2,,2,110122,2,1,0,1,1,,0.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1712.02013774156,300.0,26026.95612722936,5,5,0,1,97.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021131937108257958,17351.304084819574,4,2,4_0,4_0_0,4_3_0,4_0_1 -30010,1,43.0,396.0,2,111,650.0,0.0,0.0,0,46,0.0,0.0,898.4132479243549,650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117306,1,2,0,0,2,,0.0,432.0,32,1.0,0.0,3.0,4.0,1.9,3,3,1641.88538912221,650.0,12676.0,0,4,2,3,65.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.051278005680025246,6671.578947368422,1,1,1_1,1_0_1,1_3_1,1_0_1 -30011,2,83.0,0.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,403.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,102837,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,3,2,1700.25632182093,0.0,30757.554274011512,0,5,0,1,54.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0131024722060074,30757.554274011512,8,4,8,8_0,8_3,8_0_0 -30012,2,53.0,0.0,9,111,441.0,852.0,0.0,38,38,0.0,0.0,609.5388343609853,1293.0,0.0,1545.2322715220264,71,2,2,2,2,1,2,2,2,2,40.0,1,2007.0,6,115091,2,2,4,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1142.10009383116,441.0,133501.20335692563,1,1,0,1,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.009685305955955063,53400.481342770254,10,5,10,10_1,10_3,10_0_0 -30014,1,19.0,270.0,2,111,200.0,150.0,0.0,0,62,0.0,0.0,276.4348455151861,350.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,126988,1,2,0,1,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2167.00269367768,200.0,36901.796257387665,0,1,2,3,19.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00948463314790349,36901.796257387665,9,5,9,9_0,9_3,9_0_1 -30015,1,26.0,270.0,1,111,100.0,150.0,0.0,0,85,0.0,0.0,138.21742275759306,250.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,2,,1,107044,2,2,0,1,1,,0.0,360.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1714.49262376733,100.0,10925.7833491429,0,7,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02288165452407693,10925.7833491429,2,1,2_1,2_0_1,2_3_1,2_1_0 -30016,2,35.0,0.0,9,111,300.0,500.0,0.0,54,54,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,71,1,2,2,1,2,2,2,2,2,10.0,2,2006.0,6,109044,2,2,0,0,1,,250.0,506.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1527.59135248325,300.0,34680.1109921865,4,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.023067976921418782,19266.7283289925,5,3,5,5_0,5_3,5_0_0 -30017,2,58.0,0.0,2,111,300.0,0.0,0.0,0,34,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,119437,2,1,0,1,1,,0.0,412.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1580.0246040946,300.0,35859.210306472174,0,1,2,3,66.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008366051495167852,35859.210306472174,9,5,9,9_0,9_3,9_0_1 -30018,2,51.0,0.0,6,111,3100.0,0.0,0.0,56,34,0.0,0.0,4284.740105485384,3200.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128652,1,1,2,0,1,,600.0,,43,2.0,2.0,6.0,2.0,1.5,3,3,1240.92091163266,3100.0,73793.8715837976,1,1,0,1,270.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043364034591493114,49195.914389198406,10,5,10,10_1,10_3,10_0_0 -30019,2,86.0,0.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100288,2,1,0,0,1,,0.0,386.0,11,0.0,3.0,1.0,1.0,1.0,1,1,1891.75232377744,250.0,23028.0,0,5,3,4,18.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010856348792774015,23028.0,6,3,6,6_0,6_3,6_0_1 -30020,2,47.0,0.0,1,111,600.0,0.0,0.0,84,34,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,2,,1,113824,2,1,0,0,1,,0.0,500.0,42,1.0,0.0,3.0,4.0,2.1,1,1,1739.98154457691,600.0,49607.035373481034,3,1,2,3,54.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012095058603738865,23622.39779689573,6,3,6,6_0,6_3,6_1_0 -30021,2,36.0,0.0,7,111,1100.0,0.0,0.0,46,23,0.0,0.0,1520.3916503335236,1400.0,516.0981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,100701,1,2,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1803.05677134914,1100.0,79857.32602651262,1,1,1,2,85.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017531265691706235,44365.18112584034,10,5,10,10_0,10_3,10_0_0 -30022,2,39.0,0.0,2,111,480.0,100.0,0.0,54,47,0.0,0.0,663.4436292364467,580.0,0.0,181.36529008474488,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,107349,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,1670.32332025501,480.0,48022.33920277236,1,1,1,2,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012077712365300943,26679.07733487353,7,4,7,7_0,7_3,7_0_1 -30023,2,57.0,0.0,2,111,1200.0,2500.0,0.0,46,31,0.0,0.0,1658.6090730911167,3700.0,0.0,4534.132252118622,71,0,0,0,0,0,0,0,0,1,5.0,1,,2,119127,2,1,3,0,1,,531.0,,43,2.0,1.0,8.0,4.0,2.5,3,3,1140.04504309287,1200.0,247479.31324769807,1,1,0,1,180.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014950744575150528,98991.72529907923,10,5,10,10_1,10_3,10_0_1 -30024,2,85.0,0.0,1,111,300.0,500.0,0.0,0,78,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,2,,1,129878,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1637.74757554853,300.0,38138.90120623943,0,5,0,1,78.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020975958265654543,38138.90120623943,9,5,9,9_0,9_3,9_1_0 -30025,2,46.0,0.0,2,111,0.0,0.0,210.0,0,52,0.0,0.0,107.29180031588027,210.0,0.0,240.08161267705262,20,0,0,0,0,0,0,0,0,3,40.0,2,,2,104877,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,1516.82311931449,0.0,18939.030277008056,0,1,0,1,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011088212908922774,18939.030277008056,5,3,5,5_0,5_3,5_0_1 -30027,2,82.0,0.0,2,111,321.0,1340.0,0.0,86,78,0.0,0.0,443.6779270518737,1661.0,0.0,2430.2948871355816,71,0,0,0,0,0,0,0,0,0,,1,,2,120368,1,2,2,0,1,,220.0,224.0,41,0.0,3.0,3.0,2.0,1.5,1,1,1055.60678547137,321.0,27720.382516451155,5,5,2,3,59.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059919808069540524,18480.255010967438,4,2,4_0,4_1_0,4_3_0,4_0_1 -30028,2,57.0,0.0,1,111,500.0,0.0,0.0,0,35,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,131978,2,1,0,1,1,,0.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,1714.53612734736,500.0,44926.55023405916,0,1,1,2,48.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011129276505654026,44926.55023405916,10,5,10,10_0,10_3,10_1_0 -30029,2,41.0,0.0,8,111,449.0,1584.0,0.0,0,48,0.0,0.0,620.5962281815928,2033.0,0.0,2872.826194942359,71,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,106231,2,1,2,0,1,,197.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1052.616156095,449.0,30396.09210390518,0,1,1,2,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06688359783390732,23381.60931069629,6,3,6,6_1,6_3,6_0_0 -30030,2,91.0,0.0,1,111,420.0,0.0,0.0,0,77,2240.377315527001,0.0,580.5131755818909,1980.0,103.2196202514115,0.0,71,2,2,2,2,2,2,2,1,0,,1,,1,129079,1,2,3,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1250.36946958774,420.0,25508.894307621555,0,5,0,1,85.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0.07761998525386556,25508.894307621555,7,4,7,7_1,7_3,7_1_0 -30031,2,35.0,0.0,9,111,1420.0,0.0,0.0,63,54,0.0,0.0,1962.6874031578213,1420.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,102993,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1108.53903386313,1420.0,48678.814786991046,1,1,1,2,108.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029170800608306544,27043.785992772802,7,4,7,7_1,7_3,7_0_0 -30032,2,87.0,0.0,2,111,348.0,0.0,0.0,78,78,2539.0942909306013,103.51725048194578,480.99663119642383,2340.0,330.3027848045168,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,108951,1,2,3,0,2,,249.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1039.32606890297,348.0,31243.452183712405,5,5,0,1,60.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07489569290361169,20828.968122474937,5,3,5,5_1,5_3,5_0_1 -30033,2,58.0,0.0,7,111,212.0,0.0,0.0,34,75,0.0,0.0,293.0209362460973,212.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,109312,2,1,2,0,1,,463.0,,42,2.0,0.0,7.0,4.0,2.5,1,1,1062.39776097178,212.0,88345.1063874156,1,5,0,1,158.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0023996801709686836,35338.04255496624,9,5,9,9_1,9_3,9_0_0 -30034,2,32.0,0.0,7,111,0.0,0.0,0.0,55,46,0.0,0.0,0.0,1073.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,132676,2,2,5,0,1,,0.0,1130.0,43,2.0,0.0,5.0,3.0,1.8,1,1,1329.79118170708,0.0,55466.558993169645,4,1,2,3,110.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01934498947612981,30814.754996205356,8,4,8,8_1,8_3,8_0_0 -30035,2,46.0,0.0,5,111,900.0,0.0,0.0,85,38,2688.452778632401,341.60692659042104,1243.9568048183376,3030.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,129288,2,1,2,0,1,,805.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,2,2,1043.31834755415,900.0,65383.647675632645,6,1,0,1,160.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04634186234196947,25147.556798320253,7,4,7,7_1,7_3,7_0_0 -30036,1,41.0,76.0,9,111,1200.0,1080.0,0.0,56,53,0.0,0.0,1658.6090730911167,2280.0,0.0,1958.7451329152448,71,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,108272,2,1,1,0,1,,700.0,,43,2.0,0.0,8.0,6.0,2.9,2,2,1042.53944410356,1200.0,36411.80548922318,1,1,1,2,165.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06261705425936137,12555.794996283856,2,1,2_1,2_1_1,2_3_1,2_0_0 -30037,0,58.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,782.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,103890,1,1,2,0,1,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1149.88516731917,0.0,23322.34716159589,0,1,5,0,50.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03353007287738571,23322.34716159589,6,3,6,6_1,6_3,6_0_0 -30038,2,55.0,0.0,6,111,969.0,0.0,0.0,47,52,0.0,320.9034764940319,1339.3268265210768,1345.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,107372,2,1,1,0,1,,280.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1044.4669968206,969.0,33145.37561527909,1,1,0,1,96.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04057881303297081,22096.917076852726,6,3,6,6_1,6_3,6_0_0 -30039,2,85.0,0.0,5,111,1714.0,0.0,0.0,86,77,0.0,0.0,2369.046626065145,1714.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,120657,2,2,1,0,1,,469.0,,41,1.0,6.0,5.0,3.0,2.0,1,1,1165.38811728453,1714.0,61113.37660638814,5,5,0,1,88.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02804623300458965,30556.68830319407,8,4,8,8_1,8_3,8_0_0 -30040,2,64.0,0.0,5,111,1907.0,0.0,0.0,0,74,0.0,0.0,2635.8062519872997,1977.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,129405,2,2,1,0,1,,232.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1122.58048817109,1907.0,36251.26668075438,0,5,0,1,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05453602538665441,36251.26668075438,9,5,9,9_1,9_3,9_0_0 -30041,2,49.0,0.0,5,111,1800.0,0.0,0.0,54,45,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,118413,2,1,1,0,1,,250.0,,43,3.0,1.0,7.0,3.0,2.0,2,2,1102.37553982688,1800.0,69812.06791483305,1,1,0,1,110.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025783507834145562,34906.03395741653,9,5,9,9_1,9_3,9_0_0 -30042,2,50.0,0.0,8,111,840.0,1500.0,0.0,42,38,0.0,0.0,1161.0263511637818,2340.0,0.0,2720.4793512711735,50,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,116566,2,1,2,0,1,,760.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,2,2,1009.01206372731,840.0,87901.51136761009,1,1,0,1,180.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026620702688648447,33808.27360292696,9,5,9,9_1,9_3,9_0_0 -30043,2,66.0,0.0,5,111,1100.0,0.0,0.0,78,77,0.0,455.47590212056144,1520.3916503335236,2515.0,1677.3188290854368,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110589,2,1,1,0,1,,252.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1117.91103461401,1100.0,37636.127057464895,5,5,0,1,92.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06682409154799485,25090.751371643262,7,4,7,7_1,7_3,7_0_0 -30044,2,81.0,0.0,5,111,1788.0,0.0,0.0,78,78,0.0,103.51725048194578,2471.327518905764,1888.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126631,1,2,1,0,1,,386.0,,41,0.0,4.0,5.0,2.0,1.5,3,3,1116.80160967524,1788.0,33949.86072608058,5,5,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05561142106688002,22633.24048405372,6,3,6,6_1,6_3,6_0_0 -30045,2,56.0,0.0,1,111,420.0,0.0,0.0,68,63,0.0,621.1035028916747,580.5131755818909,1020.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,107693,1,1,3,0,2,,290.0,638.0,43,2.0,3.0,3.0,2.0,1.5,2,1,1244.46045908723,420.0,33643.74338071719,1,1,2,3,65.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03031767269347946,22429.16225381146,6,3,6,6_1,6_3,6_1_0 -30046,2,69.0,0.0,1,111,2177.0,1246.0,0.0,0,78,0.0,0.0,3008.993293432801,3423.0,0.0,2259.8115144559215,50,0,0,0,0,0,0,0,0,0,,1,,1,108101,2,1,4,0,2,,235.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1090.34374626446,2177.0,16414.11887493058,0,5,0,1,51.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20853997866604806,16414.11887493058,4,2,4_0,4_1_0,4_3_0,4_1_0 -30047,1,46.0,21.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2388.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2010.0,6,105522,2,2,0,0,1,,91.0,435.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1270.89656194362,0.0,26685.92479948453,0,1,2,3,55.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08948537545328492,20527.634461141944,5,3,5,5_0,5_3,5_0_0 -30048,2,42.0,0.0,9,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1423.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,2008.0,6,105823,2,1,0,0,1,,764.0,850.0,32,1.0,0.0,4.0,3.0,1.6,2,1,2014.06894046931,0.0,61274.19417159892,0,1,2,3,87.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023223479626918894,38296.37135724932,9,5,9,9_0,9_3,9_0_0 -30049,2,76.0,0.0,9,111,0.0,0.0,1861.0,0,72,0.0,0.0,950.8097161326342,1861.0,0.0,2127.5803866285473,41,0,0,0,0,0,0,0,0,0,,1,2010.0,6,100350,2,1,1,0,1,,835.0,3800.0,11,0.0,2.0,5.0,1.0,1.0,1,1,1323.06531503084,0.0,97019.7313475922,0,5,2,3,130.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019181665153582036,97019.7313475922,10,5,10,10_1,10_3,10_0_0 -30050,2,60.0,0.0,5,111,450.0,0.0,0.0,72,75,2837.8112663342013,0.0,621.9784024091688,2460.0,189.2359704609211,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,125639,2,1,3,0,1,,467.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1149.41095282924,450.0,36504.80298917158,5,5,0,1,101.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06738839271998565,24336.535326114386,7,4,7,7_1,7_3,7_0_0 -30051,2,63.0,0.0,2,111,1787.0,0.0,0.0,74,74,0.0,0.0,2469.945344678188,1867.0,137.62616033521533,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121372,2,2,1,0,1,,248.0,,41,0.0,2.0,5.0,2.0,1.5,3,1,1150.5306425033,1787.0,74082.50958730027,5,5,0,1,140.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02520163005277097,49388.33972486685,10,5,10,10_1,10_3,10_0_1 -30052,2,34.0,0.0,6,111,2000.0,0.0,0.0,37,37,1642.9433647198007,240.1600211181142,2764.3484551518613,3402.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,107918,2,1,2,0,1,,294.0,,43,2.0,0.0,5.0,3.0,1.8,3,3,1134.2982154053,2000.0,87745.09997274434,1,1,1,2,90.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03877139579368808,48747.27776263574,10,5,10,10_1,10_3,10_0_0 -30053,2,52.0,0.0,1,111,663.0,2217.0,0.0,65,64,0.0,0.0,916.381512882842,2880.0,0.0,4020.8684811787944,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,120142,2,1,2,0,1,,535.0,,43,2.0,2.0,6.0,2.0,1.5,4,4,1063.90695239855,663.0,54746.202986150696,1,1,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0526063880764217,36497.4686574338,9,5,9,9_1,9_3,9_1_0 -30054,2,54.0,0.0,7,111,700.0,0.0,0.0,22,46,0.0,0.0,967.5219593031513,3100.0,4128.78481005646,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,112274,2,1,2,0,1,,550.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1135.97924512379,700.0,65372.89959591758,1,1,1,2,135.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04742026159405035,36318.277553287546,9,5,9,9_1,9_3,9_0_0 -30055,2,43.0,0.0,1,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1277.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,105427,2,1,2,0,2,,142.0,450.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1353.76213277534,0.0,3550.3872314972396,0,1,2,3,39.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.35967907631908486,3550.3872314972396,1,1,1_0,1_1_0,1_3_0,1_1_0 -30056,2,49.0,0.0,5,112,1200.0,0.0,0.0,46,46,0.0,51.75862524097289,1658.6090730911167,1330.0,137.62616033521533,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,3,128735,2,1,2,0,1,,280.0,,43,2.0,0.0,4.0,2.0,1.5,3,2,1478.05650176546,1200.0,65660.91218505088,1,1,0,1,90.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020255582137690787,43773.94145670059,10,5,10,10_1,10_2,10_0_0 -30057,2,68.0,0.0,1,112,350.0,0.0,0.0,86,86,0.0,987.5545695977627,483.76097965157567,1379.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122567,2,1,1,0,1,,152.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1676.16582324168,350.0,46332.04826577098,5,5,0,1,200.0,9,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029763415424454105,30888.032177180652,8,4,8,8_1,8_2,8_1_0 -30058,2,72.0,0.0,2,112,630.0,0.0,0.0,0,78,0.0,0.0,870.7697633728362,675.0,77.41471518855863,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109830,2,1,2,0,1,,210.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1662.89644444777,630.0,16935.234680355854,0,5,0,1,70.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039857729328249054,16935.234680355854,4,2,4_0,4_1_0,4_2_0,4_0_1 -30059,2,35.0,0.0,7,112,600.0,0.0,0.0,47,42,3376.9954069376995,0.0,829.3045365455583,2861.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,45.0,1,,5,123344,2,1,3,0,1,,348.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1554.8993303425,600.0,63535.0,1,1,1,2,120.0,9,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.045030298260801134,35297.22222222222,9,5,9,9_1,9_2,9_0_0 -30060,2,40.0,0.0,6,112,1700.0,0.0,0.0,0,45,0.0,13.45724256265295,2349.696186879082,1738.0,43.00817510475479,0.0,43,1,2,2,1,1,2,2,2,2,60.0,1,,4,120823,2,1,3,0,1,,280.0,,12,1.0,2.0,5.0,1.0,1.0,2,1,1595.78191754481,1700.0,38591.48362156381,0,1,1,2,150.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04503584306431939,38591.48362156381,9,5,9,9_1,9_2,9_0_0 -30061,2,31.0,0.0,9,112,437.0,790.0,0.0,54,21,0.0,0.0,604.0101374506817,1227.0,0.0,1432.7857916694845,31,0,0,0,0,0,0,0,0,2,8.0,2,2009.0,6,128048,2,2,0,0,1,,272.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1931.91972215378,437.0,36134.82102404606,1,1,1,2,67.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03395616652379398,24089.880682697374,6,3,6,6_0,6_2,6_0_0 -30062,2,40.0,0.0,8,112,1900.0,0.0,0.0,45,47,0.0,0.0,2626.131032394268,1970.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,110950,2,1,1,0,1,,334.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,1420.83632242215,1900.0,52518.64851002082,1,1,1,2,110.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03751048543498057,25008.880242867057,7,4,7,7_1,7_2,7_0_0 -30063,2,65.0,0.0,5,112,461.0,881.0,0.0,86,77,0.0,0.0,637.182318912504,1342.0,0.0,1597.8282056466026,71,2,2,2,2,1,2,2,2,0,,1,,3,123059,2,2,5,0,1,,134.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1522.53536880613,461.0,29460.75886510413,5,5,0,1,83.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04555211921542119,19640.50591006942,5,3,5,5_1,5_2,5_0_0 -30064,2,38.0,0.0,9,112,452.0,693.0,0.0,37,53,0.0,0.0,624.7427508643207,1145.0,0.0,1256.8614602872822,41,0,0,0,0,0,0,0,0,2,50.0,1,2007.0,6,111337,2,1,1,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1514.94517886412,452.0,68547.30116580929,1,1,1,2,100.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016703794030203403,32641.571983718706,8,4,8,8_1,8_2,8_0_0 -30065,2,45.0,0.0,5,112,961.0,0.0,0.0,54,47,0.0,776.3793786145933,1328.2694327004692,1867.0,268.3710126536699,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,3,131727,1,1,2,0,1,,431.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,1448.63776619993,961.0,57075.615888766726,1,1,1,2,118.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03271099174187714,21952.159957217973,6,3,6,6_1,6_2,6_0_0 -30066,2,59.0,0.0,1,112,1260.0,1404.0,0.0,35,33,0.0,51.75862524097289,1741.5395267456724,2714.0,0.0,2546.3686727898184,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,101372,2,1,1,0,1,,335.0,,43,3.0,0.0,6.0,3.0,2.0,3,2,1694.1834122655,1260.0,86825.20676004977,1,1,0,1,220.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031258203709211,43412.603380024884,10,5,10,10_1,10_2,10_1_0 -30067,2,40.0,0.0,9,112,2600.0,0.0,0.0,56,62,0.0,0.0,3593.6529916974196,2600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,109081,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,2,2,1513.51082405316,2600.0,54160.73747396465,1,1,1,2,170.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04800525475211326,18676.116370332642,4,2,4_0,4_1_0,4_2_0,4_0_0 -30068,2,37.0,0.0,9,112,665.0,0.0,0.0,21,55,2837.8112663342013,0.0,919.1458613379938,2745.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,2005.0,6,102686,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1542.63282161786,665.0,54315.064135217355,1,1,1,2,147.0,9,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050538465593381654,25864.316254865407,7,4,7,7_1,7_2,7_0_0 -30069,2,53.0,0.0,2,112,484.0,0.0,0.0,56,64,2987.1697540360015,0.0,668.9723261467504,2614.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,111936,2,1,2,0,1,,305.0,,43,4.0,0.0,7.0,4.0,2.5,1,1,1657.09186630862,484.0,63436.22881097997,4,4,0,1,140.0,9,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04120673704909065,25374.49152439199,7,4,7,7_1,7_2,7_0_1 -30070,2,77.0,0.0,2,112,800.0,0.0,0.0,56,72,4443.415009128552,0.0,1105.7393820607444,3850.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110259,2,2,2,0,2,,225.0,,42,2.0,0.0,5.0,4.0,2.5,2,1,1487.57249170306,800.0,84994.72901517188,1,5,0,1,110.0,9,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04529692658132672,33997.89160606875,9,5,9,9_1,9_2,9_0_1 -30071,2,66.0,0.0,5,112,750.0,0.0,0.0,77,77,0.0,0.0,1036.630670681948,1852.0,1895.8003586175912,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,123962,2,2,3,0,1,,390.0,,41,1.0,9.0,6.0,5.0,2.5999999999999996,3,3,1448.42974254496,750.0,68062.25479574148,5,5,0,1,110.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02721038269387273,26177.79030605442,7,4,7,7_1,7_2,7_0_0 -30072,2,46.0,0.0,8,112,672.0,0.0,0.0,47,48,0.0,0.0,928.8210809310253,742.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,102045,2,1,1,0,1,,277.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1420.83632242215,672.0,67156.05730020445,1,1,1,2,148.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01104889163881485,31979.074904859262,8,4,8,8_1,8_2,8_0_0 -30073,2,73.0,0.0,5,112,1167.0,0.0,0.0,77,78,0.0,103.51725048194578,1612.997323581111,1447.0,309.6588607542345,0.0,71,2,2,2,2,1,2,2,2,0,,1,,3,107309,2,1,1,0,1,,270.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1511.70787436325,1167.0,35810.955850020735,5,5,0,1,100.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04040662879986104,23873.97056668049,6,3,6,6_1,6_2,6_0_0 -30074,2,64.0,0.0,9,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1778.0,130.74485231845458,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,118773,2,1,1,0,1,,260.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1693.45769334085,0.0,18885.88532919754,0,5,0,1,114.0,9,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0941443818496142,18885.88532919754,5,3,5,5_1,5_2,5_0_0 -30075,2,38.0,0.0,9,112,1363.0,0.0,0.0,56,47,0.0,217.38622601208613,1883.9034721859935,1573.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,126538,2,1,1,0,1,,343.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1467.71486100323,1363.0,51526.42860593445,4,1,1,2,105.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030528023046775512,24536.3945742545,7,4,7,7_1,7_2,7_0_0 -30076,2,33.0,0.0,6,112,650.0,1000.0,0.0,46,53,0.0,165.62760077111324,898.4132479243549,1810.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,2,35.0,1,,4,117465,1,1,2,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,1484.53240825088,650.0,27153.61522559625,4,1,1,2,150.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06665779068320193,12930.292964569642,2,1,2_0,2_1_0,2_2_0,2_0_0 -30077,2,67.0,0.0,6,112,521.0,1475.0,0.0,86,78,0.0,0.0,720.1127725670598,1996.0,0.0,2675.138028749987,50,0,0,0,0,0,0,0,0,0,,1,,4,113023,2,1,2,0,1,,500.0,,41,2.0,3.0,5.0,4.0,2.5,1,1,1544.86945534002,521.0,54333.550943487775,5,5,1,2,115.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03673604918765637,21733.42037739511,6,3,6,6_1,6_2,6_0_0 -30078,2,40.0,0.0,7,112,580.0,990.0,0.0,34,34,0.0,0.0,801.6610519940398,1823.0,0.0,1795.5163718389745,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,119780,2,1,2,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1496.61769545967,580.0,64517.61474022236,1,1,1,2,140.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028255849310924435,30722.67368582017,8,4,8,8_1,8_2,8_0_0 -30079,2,43.0,0.0,5,112,1800.0,0.0,0.0,42,31,0.0,0.0,2487.913609636675,1888.0,151.38877636873687,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,3,101190,2,1,2,0,1,,335.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,3,1443.69448989434,1800.0,71995.16538823368,4,1,1,2,90.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026223983094128146,27690.448226243727,7,4,7,7_1,7_2,7_0_0 -30080,2,67.0,0.0,2,112,575.0,0.0,0.0,0,77,0.0,496.8828023133397,794.7501808561601,1165.0,189.2359704609211,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,103302,2,2,1,0,1,,163.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1604.89117548835,575.0,21279.232061372433,0,5,0,1,112.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054748216319083734,21279.232061372433,6,3,6,6_1,6_2,6_0_1 -30081,2,68.0,0.0,5,112,540.0,912.0,0.0,52,75,0.0,0.0,746.3740828910024,2119.0,0.0,1654.0514455728735,71,0,0,0,0,0,0,0,0,0,,1,,3,114410,2,1,1,0,1,,275.0,,42,1.0,7.0,5.0,2.0,1.5,1,1,1478.05650176546,540.0,58239.32172080398,1,5,0,1,95.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03638435231368879,38826.214480535986,9,5,9,9_1,9_2,9_0_0 -30082,2,49.0,0.0,6,112,1593.0,0.0,0.0,46,21,0.0,569.3448776507017,2201.803544528457,2143.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,1,,4,106303,2,1,2,0,1,,220.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1499.89527304035,1593.0,43633.0760953786,1,1,1,2,80.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04911411689873903,29088.717396919066,8,4,8,8_1,8_2,8_0_0 -30083,2,80.0,0.0,2,112,323.0,0.0,0.0,77,78,2987.1697540360015,0.0,446.44227550702556,2384.0,104.9399472556017,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132248,1,1,2,0,1,,295.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1562.28708479116,323.0,20756.36943300778,5,5,0,1,80.0,9,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11485630990017204,13837.579622005187,3,2,3_0,3_1_0,3_2_0,3_0_1 -30084,2,42.0,0.0,8,112,1200.0,0.0,0.0,37,47,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,131203,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,1566.23093610238,1200.0,65318.23095179215,1,1,1,2,90.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01837159369618652,31103.919500853404,8,4,8,8_1,8_2,8_0_0 -30085,2,39.0,0.0,1,112,563.0,1202.0,0.0,46,46,0.0,0.0,778.1640901252489,1765.0,0.0,2180.0107868186337,71,1,2,2,2,2,2,2,1,2,45.0,1,,1,127695,2,2,3,0,1,,244.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1497.15531664566,563.0,63396.97743608713,1,1,0,1,90.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.027840443998759446,30189.036874327205,8,4,8,8_1,8_2,8_1_0 -30086,2,47.0,0.0,1,112,300.0,1115.0,0.0,52,46,0.0,0.0,414.65226827277917,1415.0,0.0,2022.2229844449055,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,124930,2,2,1,0,1,,300.0,,43,4.0,0.0,6.0,4.0,2.5,1,1,1569.10896697707,300.0,37719.51288934314,1,1,0,1,100.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037513740014383345,15087.805155737256,3,2,3_0,3_1_0,3_2_0,3_1_0 -30087,2,38.0,0.0,1,112,0.0,0.0,0.0,43,53,0.0,0.0,0.0,4140.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,118349,2,2,1,0,1,,530.0,870.0,43,3.0,2.0,4.0,4.0,2.3,1,1,1662.04536365937,0.0,48467.10361270325,1,1,2,3,95.0,9,4,8,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08541876224092962,21072.653744653588,5,3,5,5_1,5_2,5_1_0 -30088,2,34.0,0.0,2,112,1900.0,0.0,0.0,47,53,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,120116,1,1,2,0,2,,324.0,830.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1638.16365679267,1900.0,48739.78936229356,1,1,2,3,150.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03898252382415695,23209.423505854076,6,3,6,6_1,6_2,6_0_1 -30089,2,50.0,0.0,7,112,2000.0,0.0,0.0,54,22,0.0,672.8621281326475,2764.3484551518613,2650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,5,107451,2,1,2,0,1,,400.0,,43,3.0,1.0,5.0,4.0,2.5,1,1,1501.38917229664,2000.0,70338.16609727945,1,1,0,1,120.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03767513637382845,28135.266438911778,8,4,8,8_1,8_2,8_0_0 -30090,2,80.0,0.0,2,112,360.0,0.0,0.0,0,77,2150.762222905921,0.0,497.582721927335,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123672,2,1,2,0,1,,134.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1624.2257455205,360.0,22212.626953005325,0,5,0,1,81.0,9,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08103498986446822,22212.626953005325,6,3,6,6_1,6_2,6_0_1 -30091,2,45.0,0.0,1,112,300.0,2000.0,0.0,0,55,0.0,0.0,414.65226827277917,2300.0,0.0,3627.3058016948976,33,0,0,0,0,0,0,0,0,2,5.0,1,,1,132851,2,1,2,0,1,,100.0,,12,1.0,0.0,8.0,1.0,1.0,1,1,1723.41166768986,300.0,91812.41952154829,0,1,0,1,150.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025051077098128233,91812.41952154829,10,5,10,10_1,10_2,10_1_0 -30092,2,55.0,0.0,6,112,1330.0,0.0,0.0,65,47,0.0,569.3448776507017,1838.2917226759876,1880.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,126917,2,1,1,0,1,,303.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1478.13446586546,1330.0,48691.42835313511,1,1,0,1,105.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0386104918994218,32460.952235423407,8,4,8,8_1,8_2,8_0_0 -30093,0,88.0,0.0,2,112,331.0,0.0,0.0,0,78,0.0,0.0,457.499669327633,331.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,128255,2,2,2,0,1,,87.0,,11,0.0,1.0,3.0,1.0,1.0,3,2,1752.12820399641,331.0,25121.868921894515,0,5,0,1,96.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013175771318173024,25121.868921894515,7,4,7,7_1,7_2,7_0_1 -30094,1,50.0,117.0,2,112,2000.0,0.0,0.0,0,54,0.0,0.0,2764.3484551518613,2045.0,77.41471518855863,0.0,50,2,2,2,2,1,2,2,2,2,40.0,1,,2,124182,1,3,3,0,1,,250.0,,32,1.0,1.0,3.0,2.0,1.5,1,1,1605.11630266303,2000.0,18305.916085308538,0,1,1,2,75.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.11171251908235394,12203.944056872358,2,1,2_1,2_1_1,2_2_1,2_0_1 -30095,2,24.0,0.0,7,112,0.0,0.0,0.0,53,63,0.0,0.0,0.0,1605.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,,5,107212,2,1,0,0,1,,314.0,722.0,43,2.0,0.0,3.0,3.0,1.8,1,1,2663.02707764131,0.0,37363.666830100134,1,1,2,3,83.0,9,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04295616935292372,20757.592683388964,5,3,5,5_0,5_2,5_0_0 -30096,1,69.0,150.0,2,112,800.0,0.0,0.0,0,77,0.0,0.0,1105.7393820607444,826.0,44.72850210894499,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129315,2,1,0,0,1,,100.0,429.0,11,0.0,1.0,1.0,1.0,1.0,2,2,2300.23039258579,800.0,8902.734154884016,0,5,2,3,33.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0927804858181527,8902.734154884016,1,1,1_1,1_0_1,1_2_1,1_0_1 -30097,2,78.0,0.0,1,112,428.0,2490.0,0.0,0,78,0.0,0.0,591.5705694024982,2918.0,0.0,4515.995723110148,71,1,2,2,2,2,2,2,1,0,,1,,1,117144,2,1,3,0,2,,101.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1610.63419695596,428.0,12088.03202306542,0,5,0,1,106.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.24139578671136086,12088.03202306542,2,1,2_0,2_1_0,2_2_0,2_1_0 -30098,2,63.0,0.0,5,112,1280.0,0.0,0.0,75,74,0.0,157.34622073255758,1769.1830112971911,1548.0,199.55793248606224,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,128965,2,1,3,0,1,,300.0,,41,1.0,2.0,8.0,3.0,2.0,4,4,1607.48584638309,1280.0,82860.99778340777,5,5,0,1,127.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018681889446303217,41430.498891703886,9,5,9,9_1,9_2,9_0_0 -30099,1,40.0,35.0,6,112,0.0,0.0,0.0,43,21,0.0,0.0,0.0,2255.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,125508,2,2,2,0,1,,639.0,800.0,43,2.0,0.0,3.0,5.0,2.4,1,1,1610.0211166726,0.0,43983.2312108277,1,1,2,3,75.0,9,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05126953927488777,18326.346337844876,4,2,4_1,4_1_1,4_2_1,4_0_0 -30100,2,40.0,0.0,5,112,600.0,0.0,0.0,38,38,0.0,931.655254337512,829.3045365455583,1558.0,99.77896624303112,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,3,112256,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1607.48584638309,600.0,76912.360823471,1,1,1,2,120.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020256821963584196,42729.08934637278,9,5,9,9_1,9_2,9_0_0 -30101,2,31.0,0.0,6,112,1020.0,0.0,0.0,43,43,0.0,900.6000791929282,1409.817712127449,1960.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119393,2,1,2,0,1,,81.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,1618.50578845939,1020.0,58891.21916141166,1,1,1,2,100.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03328170188883245,32717.343978562032,8,4,8,8_1,8_2,8_0_0 -30102,2,47.0,0.0,7,112,3360.0,0.0,0.0,67,64,3733.962192545002,0.0,4644.105404655127,5988.0,220.20185653634454,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,120027,2,1,2,0,1,,550.0,,43,3.0,0.0,6.0,5.0,3.0,2,2,1492.70181915342,3360.0,45874.1515566835,1,1,1,2,150.0,9,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1305310244833857,15291.383852227833,3,2,3_0,3_1_0,3_2_0,3_0_0 -30103,2,64.0,0.0,1,111,0.0,0.0,0.0,77,33,0.0,0.0,0.0,1779.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,111099,2,1,1,0,1,,284.0,,41,0.0,0.0,7.0,2.0,1.5,3,2,1289.80423543394,0.0,62423.747830130604,5,5,0,1,130.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02849876948819332,41615.83188675374,9,5,9,9_1,9_3,9_1_0 -30104,2,52.0,0.0,2,111,780.0,1020.0,0.0,21,48,0.0,0.0,1078.0958975092258,1800.0,0.0,1849.925958864398,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,118345,2,1,2,0,1,,300.0,,43,2.0,5.0,4.0,2.0,1.5,2,2,1230.63573217043,780.0,51522.01367088783,1,1,0,1,102.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034936522696842456,34348.00911392522,9,5,9,9_1,9_3,9_0_1 -30105,2,60.0,0.0,1,111,400.0,400.0,0.0,0,74,0.0,0.0,552.8696910303722,800.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,1,,1,105146,1,1,2,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,4,3,1254.97558406459,400.0,17183.338554828082,0,5,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04655672688094831,17183.338554828082,4,2,4_0,4_1_0,4_3_0,4_1_0 -30106,1,61.0,320.0,1,111,300.0,300.0,0.0,77,78,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,0,,2,,1,107949,2,1,0,1,1,773.0,0.0,535.0,41,2.0,0.0,4.0,5.0,2.8,3,3,407.384381547995,300.0,8239.63031495988,5,5,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07281880097346594,2942.725112485672,1,1,1_1,1_0_1,1_3_1,1_1_0 -30107,1,54.0,255.0,1,111,0.0,0.0,240.0,52,65,0.0,0.0,122.61920036100601,240.0,0.0,274.37898591663156,71,0,0,0,0,0,0,0,0,0,,2,,1,128564,2,1,0,1,1,600.0,0.0,407.0,43,2.0,0.0,5.0,4.0,2.1,1,1,446.04733512461,0.0,20711.57333970617,4,4,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.011587724218898227,9862.653971288652,2,1,2_1,2_0_1,2_3_1,2_1_0 -30108,1,60.0,341.0,2,111,600.0,300.0,0.0,85,62,0.0,0.0,829.3045365455583,900.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,105125,2,1,0,1,1,945.0,0.0,313.0,42,1.0,0.0,5.0,7.0,3.8,2,2,455.765873748702,600.0,25535.166661351195,6,1,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03524551109988238,6719.780700355578,1,1,1_1,1_0_1,1_3_1,1_0_1 -30109,1,78.0,90.0,2,111,200.0,200.0,0.0,0,77,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,70,0,0,0,0,0,0,0,0,0,,2,,2,101800,2,1,0,1,1,720.0,0.0,240.0,11,0.0,2.0,3.0,1.0,1.0,2,2,478.8698810775,200.0,14240.534309109693,0,5,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028088833699457427,14240.534309109693,3,2,3_1,3_0_1,3_3_1,3_0_1 -30110,1,36.0,311.0,1,111,0.0,0.0,700.0,85,63,0.0,0.0,357.63933438626754,700.0,0.0,800.272042256842,41,0,0,0,0,0,0,0,0,2,15.0,2,,1,133144,2,1,0,1,1,840.0,0.0,406.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,1,1,458.323915830854,0.0,27136.332592767212,6,1,2,3,73.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025795674400990155,10050.493552876746,2,1,2_1,2_0_1,2_3_1,2_1_0 -30111,1,61.0,270.0,2,111,100.0,110.0,0.0,0,43,0.0,0.0,138.21742275759306,210.0,0.0,199.50181909321938,43,0,0,0,0,0,0,0,0,0,,2,,2,114933,1,1,0,1,1,490.0,350.0,300.0,22,2.0,3.0,2.0,2.0,1.5,2,2,440.716875420299,100.0,10332.986059006913,0,4,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020323263653002816,6888.657372671275,1,1,1_1,1_0_1,1_3_1,1_0_1 -30112,2,63.0,0.0,2,111,200.0,200.0,0.0,85,42,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,1,1.0,2,,2,125099,2,1,0,1,2,420.0,0.0,290.0,42,1.0,0.0,4.0,4.0,2.5,1,1,442.567112506425,200.0,19784.123708146948,6,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0202182318459363,7913.64948325878,1,1,1_0,1_0_0,1_3_0,1_0_1 -30113,2,33.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,120.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,2,,2,112950,2,1,0,1,2,,182.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,439.357219970519,0.0,22521.966567870004,0,1,1,2,52.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005328131521658186,22521.966567870004,6,3,6,6_0,6_3,6_0_1 -30114,2,51.0,0.0,2,111,500.0,0.0,0.0,52,64,0.0,0.0,691.0871137879653,500.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,2,129853,2,3,0,1,1,1000.0,350.0,416.0,43,2.0,0.0,3.0,3.0,2.0,1,1,587.305470976137,500.0,44251.090464075925,1,1,2,3,90.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011299156580240926,22125.545232037963,6,3,6,6_0,6_3,6_0_1 -30115,1,46.0,483.0,2,111,642.0,134.0,0.0,56,21,0.0,0.0,887.3558541037474,776.0,0.0,243.02948871355815,43,1,1,2,2,1,2,2,2,0,,2,,2,106541,1,3,0,1,1,1000.0,523.0,545.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,2,2,502.022795394618,642.0,31772.228770139714,1,4,2,3,105.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.02442384528998806,10249.10605488378,2,1,2_1,2_0_1,2_3_1,2_0_1 -30116,2,77.0,0.0,2,111,530.0,0.0,0.0,86,77,0.0,0.0,732.5523406152432,650.0,206.439240502823,0.0,20,2,2,1,1,2,2,2,2,0,,2,,2,128837,2,1,0,1,1,875.0,380.0,387.0,41,1.0,3.0,5.0,3.0,2.0,2,1,444.770690546763,530.0,29032.7702080851,5,5,2,3,97.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.022388493944645583,14516.38510404255,3,2,3_0,3_0_0,3_3_0,3_0_1 -30117,2,81.0,0.0,2,111,180.0,130.0,0.0,0,78,0.0,0.0,248.7913609636675,310.0,0.0,235.77487711016835,71,1,2,2,2,1,2,2,2,0,,2,,2,100339,2,3,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,484.560110924137,180.0,10721.29425000553,0,5,0,1,57.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02891441954406205,10721.29425000553,2,1,2_0,2_0_0,2_3_0,2_0_1 -30118,2,74.0,0.0,2,111,130.0,90.0,0.0,0,90,0.0,0.0,179.68264958487097,220.0,0.0,163.2287610762704,71,0,0,0,0,0,0,0,0,0,,2,,2,113698,2,1,0,1,1,429.0,0.0,228.0,11,0.0,2.0,2.0,1.0,1.0,1,1,470.573072422635,130.0,21522.461933837643,0,5,2,3,48.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0102218789224162,21522.461933837643,6,3,6,6_0,6_3,6_0_1 -30119,1,36.0,402.0,1,111,210.0,300.0,0.0,67,62,0.0,0.0,290.25658779094545,510.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,1,113923,2,1,0,1,1,720.0,0.0,500.0,43,2.0,0.0,4.0,5.0,2.4,1,1,449.21717595302,210.0,15976.405095338174,4,4,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.031922074894609125,6656.835456390906,1,1,1_1,1_0_1,1_3_1,1_1_0 -30120,2,57.0,0.0,1,111,200.0,0.0,0.0,74,38,0.0,0.0,276.4348455151861,200.0,0.0,0.0,50,1,2,2,1,2,2,2,2,0,,1,,1,104371,1,1,1,0,1,,266.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,1170.66184138391,200.0,61545.90675647028,6,1,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.003249606846989449,41030.60450431352,9,5,9,9_1,9_3,9_1_0 -30121,2,39.0,0.0,2,111,450.0,500.0,0.0,85,62,0.0,0.0,621.9784024091688,950.0,0.0,906.8264504237244,12,0,0,0,0,0,0,0,0,1,15.0,2,,2,102074,1,1,0,1,1,945.0,350.0,500.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,2,2,1389.76544543904,450.0,29661.499617004694,7,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03202805024245547,10228.103316208517,2,1,2_0,2_0_0,2_3_0,2_0_1 -30122,2,31.0,0.0,2,111,561.0,810.0,0.0,43,46,0.0,0.0,775.399741670097,1371.0,0.0,1469.0588496864336,20,0,0,0,0,0,0,0,0,2,40.0,2,,2,102057,2,1,0,0,1,,288.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,1754.52319050701,561.0,76111.99343998426,1,1,1,2,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018012929868681724,36243.80639999251,9,5,9,9_0,9_3,9_0_1 -30123,2,57.0,0.0,2,111,700.0,700.0,0.0,85,63,0.0,0.0,967.5219593031513,2086.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,120970,1,2,0,1,1,,180.0,,42,2.0,2.0,4.0,5.0,3.0,3,3,455.685924639913,700.0,17295.249988403906,6,4,1,2,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12061115054125371,5765.083329467969,1,1,1_0,1_0_0,1_3_0,1_0_1 -30124,2,42.0,0.0,2,111,737.0,90.0,0.0,46,48,0.0,0.0,1018.6624057234608,827.0,0.0,163.2287610762704,10,2,1,2,1,1,2,2,2,2,20.0,2,,2,114757,2,3,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1550.80015505545,737.0,74976.89234484486,1,1,1,2,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011030065052527634,35703.28206897374,9,5,9,9_0,9_3,9_0_1 -30125,2,35.0,0.0,5,111,980.0,0.0,0.0,56,37,0.0,0.0,1354.530743024412,980.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,60.0,2,,3,109035,2,1,0,1,2,516.0,463.0,712.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,556.519296022929,980.0,44395.076144905834,1,1,2,3,85.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02207452008419297,17075.029286502246,4,2,4_0,4_0_0,4_3_0,4_0_0 -30126,1,44.0,223.0,2,111,283.0,0.0,0.0,52,67,0.0,25.879312620486445,391.15530640398833,308.0,0.0,0.0,60,2,1,2,1,1,2,2,2,0,,2,,2,119040,1,3,0,1,1,665.0,300.0,336.0,43,2.0,0.0,4.0,4.0,2.1,5,4,1531.46645490274,283.0,12551.740803644134,4,4,2,3,82.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.024538428957247005,5977.01943030673,1,1,1_1,1_0_1,1_3_1,1_0_1 -30127,1,83.0,50.0,6,111,572.0,908.0,0.0,78,78,0.0,0.0,790.6036581734322,1480.0,0.0,1646.7968339694837,50,0,0,0,0,0,0,0,0,0,,2,,4,102646,2,1,0,0,1,,0.0,257.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1396.69870579637,572.0,18973.317501475212,5,5,2,3,69.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07800428153299638,12648.878334316809,2,1,2_1,2_0_1,2_3_1,2_0_0 -30128,2,53.0,0.0,6,111,0.0,0.0,0.0,77,38,0.0,0.0,0.0,273.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,128959,1,3,0,1,1,1236.0,0.0,690.0,42,1.0,0.0,3.0,2.0,1.5,2,1,1674.18068106997,0.0,12008.003373763144,7,4,2,3,70.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022734837050136965,8005.335582508763,1,1,1_0,1_0_0,1_3_0,1_0_0 -30129,1,72.0,84.0,2,111,538.0,766.0,0.0,0,78,0.0,0.0,743.6097344358507,1304.0,0.0,1389.2581220491459,50,0,0,0,0,0,0,0,0,0,,2,,2,116805,2,2,0,0,1,,0.0,326.0,11,0.0,0.0,4.0,1.0,1.0,3,3,1830.00578366117,538.0,11660.349041973273,0,5,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11183198678753486,11660.349041973273,2,1,2_1,2_0_1,2_3_1,2_0_1 -30130,1,43.0,377.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,354.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,101884,1,3,0,1,1,1045.0,362.0,530.0,42,1.0,0.0,3.0,3.0,1.8,2,2,2070.25932365463,0.0,17248.769117036187,7,1,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02052320357458799,9582.649509464549,1,1,1_1,1_0_1,1_3_1,1_0_1 -30131,2,57.0,0.0,6,111,1610.0,0.0,0.0,43,38,0.0,0.0,2225.3005063972482,1700.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,115682,2,1,2,0,1,,345.0,,43,3.0,1.0,7.0,3.0,2.0,1,1,1328.03480048215,1610.0,143380.03218307142,1,1,0,1,150.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011856602165002969,71690.01609153571,10,5,10,10_1,10_3,10_0_0 -30132,2,24.0,0.0,9,111,856.0,0.0,0.0,63,62,0.0,0.0,1183.1411388049964,856.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,104491,2,1,0,0,1,,408.0,680.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1768.31959342738,856.0,34133.53637764746,1,1,2,3,58.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02507797582205858,22755.690918431643,6,3,6,6_0,6_3,6_0_0 -30133,2,72.0,0.0,2,111,576.0,0.0,0.0,0,77,0.0,300.2000263976428,796.132355083736,2426.0,2683.710126536699,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,108334,2,1,2,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1343.51799384782,576.0,34165.27541395394,0,5,0,1,105.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0710077694561526,34165.27541395394,9,5,9,9_1,9_3,9_0_1 -30134,2,48.0,0.0,2,111,800.0,0.0,0.0,37,63,1493.5848770180007,0.0,1105.7393820607444,1956.0,268.3710126536699,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,124352,2,1,2,0,1,,350.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,1150.15084120383,800.0,46373.47624357986,1,1,1,2,98.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04217928347070588,16561.955801278524,4,2,4_0,4_1_0,4_3_0,4_0_1 -30135,2,51.0,0.0,2,111,550.0,450.0,0.0,85,37,0.0,0.0,760.1958251667618,1000.0,0.0,816.143805381352,31,0,0,0,0,0,0,0,0,2,3.0,1,,2,101912,2,1,1,0,1,,400.0,,42,1.0,0.0,4.0,3.0,1.8,2,1,1399.74186613637,550.0,73917.78652078714,5,1,1,2,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013528543630277407,41065.43695599285,9,5,9,9_1,9_3,9_0_1 -30136,2,26.0,0.0,2,111,0.0,0.0,0.0,56,37,0.0,0.0,0.0,1151.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,110704,2,3,0,0,1,,280.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1606.7737577172,0.0,25516.57054753422,1,1,1,2,59.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04510794261540081,17011.04703168948,4,2,4_0,4_0_0,4_3_0,4_0_1 -30137,1,73.0,87.0,2,111,386.0,132.0,0.0,0,77,0.0,0.0,533.5192518443092,518.0,0.0,239.40218291186326,71,0,0,0,0,0,0,0,0,0,,2,,2,132174,2,1,0,1,1,873.0,0.0,290.0,11,0.0,4.0,2.0,1.0,1.0,2,2,1762.84714955084,386.0,13198.556947533385,0,5,2,3,62.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03924671477792173,13198.556947533385,2,1,2_1,2_0_1,2_3_1,2_0_1 -30138,1,41.0,159.0,2,111,672.0,129.0,0.0,56,62,0.0,0.0,928.8210809310253,801.0,0.0,233.9612242093209,41,1,2,2,1,2,2,2,2,0,,2,,2,117265,1,3,0,1,1,861.0,0.0,344.0,43,2.0,0.0,3.0,4.0,2.1,5,5,1393.22091133176,672.0,24512.107855005914,4,1,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03267772827771799,11672.432311907578,2,1,2_1,2_0_1,2_3_1,2_0_1 -30139,2,39.0,0.0,8,111,324.0,652.0,0.0,0,55,0.0,0.0,447.8244497346015,976.0,0.0,1182.5016913525367,31,0,0,0,0,0,0,0,0,2,20.0,2,2003.0,6,123332,2,2,0,0,1,,199.0,242.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1430.77516115523,324.0,26183.44151259209,0,1,2,3,46.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03727546661620566,26183.44151259209,7,4,7,7_0,7_3,7_0_0 -30140,2,35.0,0.0,2,111,516.0,130.0,0.0,0,54,0.0,0.0,713.2019014291802,646.0,0.0,235.77487711016835,71,2,1,2,2,1,2,2,2,0,,2,,2,100459,2,1,0,1,1,756.0,348.0,330.0,22,2.0,2.0,4.0,3.0,2.0,1,1,495.101913581407,516.0,64952.99031904495,0,1,2,3,82.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00994565449299392,32476.495159522474,8,4,8,8_0,8_3,8_0_1 -30141,1,46.0,317.0,5,111,316.0,244.0,0.0,85,52,0.0,0.0,436.76705591399406,560.0,0.0,442.53130780677753,31,2,1,2,1,1,2,1,2,2,20.0,2,,3,132887,1,3,0,1,1,791.0,262.0,340.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,2,1,415.562662941022,316.0,21590.454536911686,6,1,2,3,93.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.02593738816580296,6964.66275384248,1,1,1_1,1_0_1,1_3_1,1_0_0 -30142,1,49.0,153.0,2,111,445.0,200.0,0.0,56,54,0.0,0.0,615.0675312712891,645.0,0.0,362.73058016948977,71,2,1,2,2,1,2,1,2,2,35.0,2,,2,115485,2,2,0,1,1,,300.0,370.0,43,3.0,0.0,5.0,5.0,2.8,2,2,386.984156519967,445.0,33293.05891335449,1,1,2,3,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01937340758260209,11890.37818334089,2,1,2_1,2_0_1,2_3_1,2_0_1 -30143,2,51.0,0.0,2,111,273.0,190.0,0.0,0,64,1075.3811114529606,0.0,377.33356412822906,1183.0,0.0,344.5940511610153,71,2,1,2,2,2,2,2,1,2,10.0,2,,2,118332,2,2,0,1,1,720.0,143.0,325.0,12,1.0,0.0,4.0,1.0,1.0,2,2,477.531351362901,273.0,24962.087852807203,0,1,2,3,82.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04739186910068348,24962.087852807203,7,4,7,7_0,7_3,7_0_1 -30144,2,34.0,0.0,2,111,360.0,1280.0,0.0,55,64,0.0,0.0,497.582721927335,1640.0,0.0,2321.4757130847347,20,0,0,0,0,0,0,0,0,2,7.0,2,,2,106846,2,2,0,0,1,,247.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,461.710175058293,360.0,33844.5791611562,1,1,1,2,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04845679989669501,16116.466267217238,4,2,4_0,4_0_0,4_3_0,4_0_1 -30145,2,57.0,0.0,5,111,528.0,1000.0,0.0,56,78,0.0,0.0,729.7879921600913,1528.0,0.0,1813.6529008474488,33,0,0,0,0,0,0,0,0,0,,2,,3,102322,2,2,0,0,1,,0.0,485.0,42,4.0,1.0,5.0,5.0,3.0,2,2,1309.74115260929,528.0,62540.0,4,7,2,3,102.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024432363287496,20846.666666666668,5,3,5,5_0,5_3,5_0_0 -30146,2,83.0,0.0,2,111,490.0,0.0,0.0,0,90,2561.498064085871,0.0,677.265371512206,2250.0,77.41471518855863,0.0,71,1,2,2,1,1,2,2,2,0,,1,,2,116056,2,1,2,0,1,,220.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1367.35325712939,490.0,18711.487907226678,0,5,0,1,170.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.12024698469494849,18711.487907226678,5,3,5,5_1,5_3,5_0_1 -30147,2,27.0,0.0,5,111,0.0,0.0,0.0,43,62,0.0,0.0,0.0,561.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,101908,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1518.12784546624,0.0,46900.85073517291,1,1,1,2,83.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011961403497085877,31267.23382344861,8,4,8,8_0,8_3,8_0_0 -30148,2,85.0,0.0,6,111,350.0,0.0,0.0,0,75,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,113562,2,1,0,0,1,,160.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,1913.14059550009,350.0,23304.34099778655,0,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015018661116967138,23304.34099778655,6,3,6,6_0,6_3,6_0_0 -30149,2,45.0,0.0,9,111,2400.0,0.0,0.0,54,34,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,127544,2,1,1,0,1,,371.0,,43,2.0,1.0,5.0,4.0,2.1,1,1,1191.27562923563,2400.0,72886.40108662787,4,1,1,2,140.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03292795314653445,34707.81004125137,9,5,9,9_1,9_3,9_0_0 -30150,2,38.0,0.0,6,111,1073.0,0.0,0.0,46,46,0.0,165.62760077111324,1483.0729461889734,1263.0,51.60981012570575,0.0,30,0,0,0,0,0,0,0,0,2,30.0,1,,4,103252,2,1,2,0,1,,196.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1254.56271635157,1073.0,59586.47720427667,1,1,1,2,99.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021196084401333786,33103.598446820375,8,4,8,8_1,8_3,8_0_0 -30151,2,62.0,0.0,1,111,320.0,910.0,0.0,0,68,0.0,0.0,442.2957528242978,1230.0,0.0,1650.4241397711785,43,2,2,2,2,2,2,2,1,3,15.0,2,,1,112588,1,2,0,0,2,,120.0,524.0,12,1.0,1.0,1.0,1.0,1.0,2,2,1933.74867541319,320.0,13562.781285374838,0,1,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.0906893633480875,13562.781285374838,3,2,3_0,3_0_0,3_3_0,3_1_0 -30152,2,38.0,0.0,1,111,270.0,790.0,0.0,0,46,0.0,0.0,373.1870414455012,1060.0,0.0,1432.7857916694845,71,2,2,1,1,1,1,2,2,1,5.0,2,,1,104720,2,1,0,0,1,,240.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1528.46908564815,270.0,28294.439227453004,0,1,1,2,63.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.03746319167094582,28294.439227453004,8,4,8,8_0,8_3,8_1_0 -30153,2,26.0,0.0,1,111,600.0,0.0,0.0,35,46,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,2,2,1,2,2,2,30.0,2,,1,121233,1,1,0,0,1,,195.0,600.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1832.30918251285,600.0,26352.48886311274,1,1,3,4,55.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02276824792969966,17568.325908741826,4,2,4_0,4_0_0,4_3_0,4_1_0 -30154,2,38.0,0.0,1,111,397.0,419.0,0.0,33,47,0.0,0.0,548.7231683476444,816.0,0.0,759.9205654550811,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,111688,1,3,0,0,2,,276.0,669.0,43,2.0,0.0,3.0,3.0,1.8,1,1,2043.18822804102,397.0,63104.89345356407,1,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012930851402204745,35058.274140868925,9,5,9,9_0,9_3,9_1_0 -30155,2,49.0,0.0,1,111,0.0,0.0,0.0,38,38,0.0,0.0,0.0,1016.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,118010,2,1,0,0,1,,1650.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,1,1,428.672923519885,0.0,83986.22918794924,1,1,1,2,105.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012097221292389928,32302.395841518945,8,4,8,8_0,8_3,8_1_0 -30156,0,26.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,789.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,1,119254,2,1,0,0,1,,344.0,,22,2.0,0.0,1.0,2.0,1.5,1,1,489.74034415094,0.0,16547.850440527378,0,1,5,0,58.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04767990880964565,11031.90029368492,2,1,2_0,2_0_0,2_3_0,2_1_0 -30157,1,45.0,122.0,1,111,500.0,1000.0,0.0,0,54,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,70,2,2,2,2,2,1,2,2,2,60.0,2,,1,112700,2,1,0,0,1,,0.0,439.0,32,1.0,0.0,3.0,2.0,1.3,2,2,419.542566938411,500.0,24678.729801711946,0,1,2,3,79.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.06078108606286317,18983.638309009188,5,3,5,5_0,5_3,5_1_0 -30158,2,45.0,0.0,1,111,1200.0,0.0,0.0,0,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,30.0,2,,1,104609,2,1,0,0,2,,160.0,,32,2.0,0.0,4.0,3.0,2.0,1,1,1531.59861526681,1200.0,46300.31804193678,0,1,1,2,57.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025917748532809065,23150.15902096839,6,3,6,6_0,6_3,6_1_0 -30159,2,48.0,0.0,1,111,0.0,0.0,750.0,0,35,0.0,0.0,383.18500112814377,750.0,0.0,857.4343309894736,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,126560,1,2,0,0,1,,484.0,1165.0,32,1.0,0.0,6.0,4.0,2.5,2,2,572.289578873387,0.0,60287.87948292847,0,1,2,3,140.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012440311492667033,24115.151793171386,6,3,6,6_0,6_3,6_1_0 -30160,2,65.0,0.0,6,111,1200.0,0.0,0.0,21,54,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,4,126144,2,2,0,0,1,,0.0,,42,1.0,3.0,2.0,2.0,1.5,1,1,1681.22229765463,1200.0,81738.37029301283,5,1,1,2,55.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014680987591241203,54492.24686200856,10,5,10,10_0,10_3,10_0_0 -30161,1,43.0,265.0,1,111,200.0,520.0,0.0,0,85,0.0,0.0,276.4348455151861,720.0,0.0,943.0995084406734,50,2,2,2,2,2,2,2,1,0,,2,,1,119696,2,1,0,0,1,,350.0,380.0,11,0.0,2.0,3.0,1.0,1.0,3,2,1479.4958176828,200.0,9981.453333333333,0,7,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07213378412495709,9981.453333333333,2,1,2_1,2_0_1,2_3_1,2_1_0 -30162,2,70.0,0.0,1,111,0.0,0.0,900.0,46,74,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,50,0,0,0,0,0,0,0,0,0,,2,,1,119446,2,1,0,0,1,,100.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,1761.54526169903,0.0,104297.88268726254,1,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008629130110902177,69531.92179150836,10,5,10,10_0,10_3,10_1_0 -30163,1,28.0,130.0,1,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,665.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,130161,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2069.60640085176,0.0,20543.833502576406,0,4,2,3,39.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.032369810625490235,20543.833502576406,5,3,5,5_0,5_3,5_1_0 -30164,1,62.0,150.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1573.0,103.2196202514115,0.0,71,2,2,2,1,1,2,2,2,0,,2,,1,117315,2,1,0,0,1,,187.0,658.0,11,0.0,1.0,2.0,1.0,1.0,2,2,2096.07394713333,0.0,14084.573791225648,0,5,2,3,76.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.11168247071700113,14084.573791225648,3,2,3_1,3_0_1,3_3_1,3_1_0 -30166,2,50.0,0.0,1,111,0.0,0.0,0.0,34,31,0.0,0.0,0.0,2986.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,104057,2,1,0,0,1,,335.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,1901.36930551618,0.0,374689.0103651284,1,1,0,1,138.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00796927563231756,187344.5051825642,10,5,10,10_0,10_3,10_1_0 -30167,2,61.0,0.0,1,111,300.0,1000.0,0.0,22,22,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,2,,1,132491,2,2,0,0,1,,390.0,1200.0,43,2.0,3.0,3.0,2.0,1.5,5,4,2125.29998348994,300.0,91741.36713374952,1,1,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014170270627259491,61160.91142249968,10,5,10,10_0,10_3,10_1_0 -30168,2,29.0,0.0,2,111,600.0,84.0,0.0,63,55,0.0,0.0,829.3045365455583,684.0,0.0,152.3468436711857,60,0,0,0,0,0,0,0,0,3,45.0,2,,2,123803,1,2,0,1,2,675.0,0.0,649.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1791.87852759526,600.0,41719.391717282975,1,1,2,3,62.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016395253426397423,19866.37700822999,5,3,5,5_0,5_3,5_0_1 -30169,1,71.0,68.0,2,111,720.0,0.0,0.0,77,78,0.0,0.0,995.16544385467,864.0,247.7270886033876,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,131307,1,2,0,0,1,,0.0,335.0,41,0.0,0.0,3.0,2.0,1.5,1,1,1601.65471733676,720.0,22740.84697171711,7,5,2,3,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03799330786028157,15160.564647811407,3,2,3_1,3_0_1,3_3_1,3_0_1 -30170,2,71.0,0.0,1,111,765.0,2211.0,0.0,43,31,0.0,0.0,1057.3632840955868,2976.0,0.0,4009.9865637737093,31,2,2,2,2,2,2,2,1,1,3.0,2,,1,121692,2,2,0,0,1,,650.0,,43,2.0,2.0,5.0,4.0,2.5,2,2,1696.554446069,765.0,212208.16651581042,1,1,0,1,180.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.014023965471556323,84883.26660632416,10,5,10,10_0,10_3,10_1_0 -30172,1,62.0,335.0,2,111,960.0,1200.0,0.0,85,78,0.0,0.0,1326.8872584728933,2160.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,2,,2,113786,2,2,0,0,1,,76.0,635.0,41,2.0,2.0,6.0,8.0,4.3,2,1,403.418316052307,960.0,55264.2168831462,6,5,2,3,120.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03908496531430504,12852.14346119679,2,1,2_1,2_0_1,2_3_1,2_0_1 -30173,1,21.0,215.0,2,111,0.0,0.0,0.0,47,46,0.0,0.0,0.0,2804.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,108330,2,2,0,0,2,,139.0,500.0,43,2.0,0.0,2.0,2.0,1.5,4,4,542.357397348772,0.0,21889.84072942166,2,2,2,3,44.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12809595257727044,14593.227152947773,3,2,3_1,3_0_1,3_3_1,3_0_1 -30174,2,45.0,0.0,1,111,618.0,0.0,0.0,0,52,0.0,0.0,854.1836726419251,618.0,0.0,0.0,71,2,2,2,2,1,1,2,2,0,,2,,1,100666,1,3,0,0,2,,0.0,392.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1876.81043685685,618.0,10116.991216098699,0,4,2,3,45.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.06108535500323508,10116.991216098699,2,1,2_0,2_0_0,2_3_0,2_1_0 -30175,2,38.0,0.0,5,111,0.0,0.0,0.0,43,34,0.0,0.0,0.0,446.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,2,,3,125766,2,2,0,0,1,,550.0,620.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1742.71033120389,0.0,51388.30962059153,1,1,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008679016750947685,34258.873080394354,9,5,9,9_0,9_3,9_0_0 -30176,2,33.0,0.0,1,111,0.0,0.0,1455.0,45,46,0.0,0.0,743.378902188599,1455.0,0.0,1663.4226021195789,71,2,2,2,1,2,2,2,2,0,,2,,1,117485,2,1,0,0,1,,350.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1863.76240960252,0.0,62966.03193094724,1,1,1,2,90.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.023107697204036142,41977.35462063149,9,5,9,9_0,9_3,9_1_0 -30178,2,27.0,0.0,9,111,324.0,636.0,0.0,52,47,0.0,0.0,447.8244497346015,1060.0,172.03270041901916,1153.4832449389776,60,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,115576,2,1,0,0,1,,56.0,710.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1779.36987571801,324.0,40290.40144985681,1,1,2,3,42.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026308995737339996,26860.267633237872,7,4,7,7_0,7_3,7_0_0 -30180,2,73.0,0.0,2,111,513.0,100.0,0.0,75,74,0.0,0.0,709.0553787464523,613.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,111664,2,1,0,1,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1832.2245821861,513.0,64525.80415522592,5,5,0,1,116.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009500075326846638,43017.20277015061,9,5,9,9_0,9_3,9_0_1 -30181,2,75.0,0.0,5,111,396.0,100.0,0.0,0,75,0.0,0.0,547.3409941200684,496.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,3,112568,2,1,0,1,1,600.0,0.0,876.0,11,0.0,3.0,6.0,1.0,1.0,2,2,1641.90880794905,396.0,32511.798177828503,0,5,2,3,113.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015256000215277184,32511.798177828503,8,4,8,8_0,8_3,8_0_0 -30182,2,38.0,0.0,6,111,840.0,0.0,0.0,47,37,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,104729,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1714.21561362694,840.0,60187.70008069469,1,1,1,2,61.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013956339897915978,33437.61115594149,8,4,8,8_0,8_3,8_0_0 -30183,2,25.0,0.0,7,111,249.0,346.0,0.0,38,47,0.0,0.0,344.1613826664067,595.0,0.0,627.5239036932173,60,0,0,0,0,0,0,0,0,1,5.0,2,,5,117132,2,1,0,0,1,,0.0,630.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1758.71818271951,249.0,64343.36240504516,1,1,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00924726308604205,42895.57493669677,9,5,9,9_0,9_3,9_0_0 -30184,2,27.0,0.0,2,111,0.0,0.0,1036.0,54,46,0.0,0.0,529.306214891676,1036.0,0.0,1184.4026225401262,31,0,0,0,0,0,0,0,0,0,,2,,2,121650,1,2,0,0,2,,425.0,537.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1839.32645873633,0.0,24840.620580056966,1,1,2,3,49.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041705882373636906,16560.413720037977,4,2,4_0,4_0_0,4_3_0,4_0_1 -30185,2,29.0,0.0,1,111,0.0,0.0,0.0,42,42,0.0,0.0,0.0,561.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114206,2,1,0,0,1,,1022.0,670.0,43,2.0,0.0,3.0,3.0,1.8,1,1,2128.75461998966,0.0,22753.87655275627,1,4,2,3,80.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02465513947477419,12641.042529309037,2,1,2_0,2_0_0,2_3_0,2_1_0 -30186,2,31.0,0.0,2,111,530.0,0.0,0.0,31,56,0.0,0.0,732.5523406152432,530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,120303,2,1,0,0,1,,350.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1795.88371080861,530.0,34580.85507907657,1,1,1,2,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01532639950018705,19211.58615504254,5,3,5,5_0,5_3,5_0_1 -30188,2,46.0,0.0,9,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,1795.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2013.0,6,105333,1,2,0,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,4,2,1543.3979967005,0.0,108992.29502353912,1,1,1,2,140.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01646905407040317,51901.09286835196,10,5,10,10_0,10_3,10_0_0 -30189,1,47.0,491.0,5,111,594.0,869.0,0.0,77,85,0.0,0.0,821.0114911801028,1463.0,0.0,1576.064370836433,70,0,0,0,0,0,0,0,0,0,,2,,3,122522,2,1,0,0,1,,0.0,615.0,41,1.0,0.0,4.0,5.0,2.5999999999999996,1,1,1465.0085449208,594.0,24972.866871640377,7,7,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05858358223426115,9604.948796784762,1,1,1_1,1_0_1,1_3_1,1_0_0 -30190,2,43.0,0.0,6,111,1750.0,0.0,0.0,42,37,0.0,0.0,2418.8048982578784,1750.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,4,125262,2,2,0,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1503.20486344568,1750.0,74065.58976690247,1,1,0,1,110.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023627706273690117,35269.328460429744,9,5,9,9_0,9_3,9_0_0 -30191,2,40.0,0.0,1,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,713.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,109450,2,2,3,0,1,,744.0,745.0,32,1.0,0.0,2.0,3.0,1.6,2,2,1545.0309921472,0.0,31823.123915066066,0,1,2,3,58.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022405091401552925,19889.45244691629,5,3,5,5_1,5_3,5_1_0 -30192,2,57.0,0.0,5,111,0.0,0.0,420.0,0,54,0.0,0.0,214.58360063176053,420.0,0.0,480.16322535410524,50,0,0,0,0,0,0,0,0,0,,2,,3,118346,2,1,0,3,2,656.0,0.0,515.0,22,1.0,1.0,2.0,2.0,1.5,4,4,1668.59503021992,0.0,39978.638789821685,0,4,2,3,54.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010505610313749086,26652.425859881125,7,4,7,7_0,7_3,7_0_0 -30193,2,34.0,0.0,2,111,47.0,150.0,0.0,0,52,0.0,0.0,64.96218869606874,197.0,0.0,272.04793512711734,71,2,2,2,1,1,2,2,2,1,20.0,2,,2,126926,2,3,0,0,1,,0.0,387.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2237.72037418082,47.0,17874.120565425987,0,1,2,3,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,1,0,0,0.011021521270314033,17874.120565425987,4,2,4_0,4_0_0,4_3_0,4_0_1 -30194,2,29.0,0.0,7,111,280.0,520.0,0.0,0,54,0.0,0.0,387.00878372126056,800.0,0.0,943.0995084406734,50,0,0,0,0,0,0,0,0,1,10.0,2,,5,111325,2,1,0,0,1,,0.0,463.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2075.04844344409,280.0,16591.69049036688,0,1,2,3,30.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048216907159911115,16591.69049036688,4,2,4_0,4_0_0,4_3_0,4_0_0 -30195,2,41.0,0.0,1,111,60.0,60.0,0.0,38,38,0.0,0.0,82.93045365455583,120.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,1,25.0,1,,1,111066,2,1,3,0,1,,290.0,,43,2.0,0.0,6.0,4.0,2.3,2,1,1188.67239930212,60.0,124825.68765932761,1,1,1,2,140.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0009613405882249349,54272.038112751135,10,5,10,10_1,10_3,10_1_0 -30196,2,49.0,0.0,7,111,0.0,0.0,1400.0,56,68,0.0,0.0,715.2786687725351,1400.0,0.0,1600.544084513684,71,2,2,2,1,2,2,2,2,0,,2,,5,112280,2,1,0,0,2,,0.0,609.0,43,4.0,0.0,4.0,5.0,3.0,1,1,1308.09021020261,0.0,64483.56734575462,1,1,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,0,0,0,0.02171095765365052,21494.522448584874,6,3,6,6_0,6_3,6_0_0 -30197,2,70.0,0.0,2,111,290.0,1380.0,0.0,0,74,0.0,0.0,400.8305259970199,1670.0,0.0,2502.8410031694793,10,0,0,0,0,0,0,0,0,0,,2,,2,101355,2,1,0,0,1,,0.0,,31,0.0,2.0,3.0,2.0,1.5,2,2,1880.20657091895,290.0,100334.2143559751,0,5,0,1,107.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016644372118916662,66889.47623731673,10,5,10,10_0,10_3,10_0_1 -30198,2,44.0,0.0,1,111,460.0,1100.0,0.0,54,37,0.0,0.0,635.800144684928,1560.0,0.0,1995.0181909321939,70,0,0,0,0,0,0,0,0,2,20.0,2,,1,122009,1,1,0,0,1,,330.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,1644.50611491781,460.0,71517.41975813864,1,1,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021812867484253345,34055.91417054221,9,5,9,9_0,9_3,9_1_0 -30199,2,28.0,0.0,1,111,258.0,714.0,0.0,34,38,0.0,0.0,356.6009507145901,972.0,0.0,1294.9481712050786,70,0,0,0,0,0,0,0,0,3,60.0,2,,1,126975,1,2,0,0,1,,194.0,695.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1734.77055696234,258.0,52684.25297417892,3,1,2,3,57.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018449535584691444,35122.83531611928,9,5,9,9_0,9_3,9_1_0 -30200,1,27.0,270.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1270.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,115930,2,2,0,0,1,,188.0,462.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2097.45229669188,0.0,9525.838465494404,0,1,2,3,30.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1333215973166395,9525.838465494404,1,1,1_1,1_0_1,1_3_1,1_1_0 -30202,2,51.0,0.0,5,111,300.0,1000.0,0.0,0,43,0.0,0.0,414.65226827277917,1300.0,0.0,1813.6529008474488,71,2,2,2,2,1,2,2,2,1,2.0,2,,3,122608,1,2,0,0,1,,350.0,,32,1.0,2.0,4.0,3.0,2.0,1,1,1451.80982155669,300.0,19818.357295572278,0,1,1,2,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.06559574946660386,9909.178647786139,2,1,2_0,2_0_0,2_3_0,2_0_0 -30203,2,51.0,0.0,2,111,600.0,204.0,0.0,47,46,0.0,0.0,829.3045365455583,804.0,0.0,369.9851917728796,50,0,0,0,0,0,0,0,0,4,40.0,2,,2,128347,2,1,0,1,1,,250.0,,43,3.0,0.0,3.0,4.0,2.5,1,1,1581.82523916035,600.0,39412.71404830424,1,1,0,1,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02039950862086324,15765.085619321695,3,2,3_0,3_0_0,3_3_0,3_0_1 -30204,2,82.0,0.0,7,111,600.0,0.0,0.0,0,72,0.0,0.0,829.3045365455583,640.0,68.81308016760767,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,107847,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,3,3,1670.4145219,600.0,31444.48405882059,0,5,0,1,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020353331248902193,31444.48405882059,8,4,8,8_0,8_3,8_0_0 -30205,2,53.0,0.0,1,111,340.0,1400.0,0.0,0,31,0.0,0.0,469.9392373758164,1740.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,1,15.0,2,,1,101755,1,1,0,0,1,,310.0,824.0,32,1.0,1.0,3.0,2.0,1.5,2,2,2156.71122179825,340.0,32310.203017067815,0,1,2,3,101.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05385295781276421,21540.135344711878,6,3,6,6_0,6_3,6_1_0 -30206,1,30.0,439.0,1,111,0.0,0.0,625.0,62,68,0.0,0.0,319.32083427345316,625.0,0.0,714.5286091578946,30,2,2,2,2,1,2,1,2,3,25.0,2,,1,125944,1,2,0,0,1,,520.0,402.0,43,2.0,0.0,5.0,5.0,2.4,1,1,1599.30511586511,0.0,24551.227206179836,4,1,2,3,81.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.025456975928383738,10229.678002574932,2,1,2_1,2_0_1,2_3_1,2_1_0 -30207,2,44.0,0.0,1,111,462.0,1000.0,0.0,38,35,0.0,0.0,638.5644931400799,1462.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,3,20.0,2,,1,107990,2,2,0,0,1,,394.0,995.0,43,2.0,0.0,3.0,4.0,2.1,4,4,2043.81109898206,462.0,66334.44351101865,1,1,2,3,109.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022039832138746305,31587.83024334221,8,4,8,8_0,8_3,8_1_0 -30208,2,21.0,0.0,1,111,600.0,400.0,0.0,0,63,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,42,2,2,2,2,1,1,1,2,2,15.0,2,,1,103500,2,1,0,0,1,,680.0,422.0,22,2.0,0.0,1.0,2.0,1.5,3,2,1819.21692344218,600.0,23325.15953369744,0,1,2,3,35.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.042872161219532835,15550.106355798292,3,2,3_0,3_0_0,3_3_0,3_1_0 -30209,2,56.0,0.0,8,111,650.0,850.0,0.0,38,38,0.0,0.0,898.4132479243549,1500.0,0.0,1541.6049657203316,70,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,133010,2,1,1,0,1,,292.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,1221.74651337748,650.0,90627.04801756777,1,1,0,1,136.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016551350097039792,36250.8192070271,9,5,9,9_1,9_3,9_0_0 -30210,1,32.0,248.0,2,111,0.0,0.0,560.0,85,38,0.0,0.0,286.11146750901406,680.0,206.439240502823,640.2176338054736,44,2,1,2,2,1,2,2,2,2,30.0,2,,2,129075,1,2,0,1,2,750.0,0.0,487.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,4,4,1645.70087436097,0.0,49972.38198148593,7,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01360751625271596,18508.28962277257,4,2,4_1,4_0_1,4_3_1,4_0_1 -30211,1,34.0,491.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,266.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120654,1,1,0,1,2,792.0,0.0,629.0,42,1.0,0.0,4.0,5.0,2.4,1,1,1359.2539582981,0.0,19792.405244745554,6,1,2,3,63.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01343949846977881,8246.835518643982,1,1,1_1,1_0_1,1_3_1,1_0_1 -30212,2,37.0,0.0,2,111,331.0,50.0,0.0,0,42,0.0,0.0,457.499669327633,381.0,0.0,90.68264504237244,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,100383,1,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1621.1428292179,331.0,26803.222284739593,0,1,1,2,71.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014214708811967068,26803.222284739593,7,4,7,7_0,7_3,7_0_1 -30213,2,58.0,0.0,6,111,969.0,0.0,0.0,54,37,0.0,0.0,1339.3268265210768,969.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,125989,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,1,1742.38940274114,969.0,74843.44315089122,1,1,0,1,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012947025941155692,49895.628767260816,10,5,10,10_0,10_3,10_0_0 -30214,2,34.0,0.0,6,111,650.0,0.0,0.0,46,37,0.0,0.0,898.4132479243549,650.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,35.0,2,,4,120046,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,1721.18641051785,650.0,69091.98414768628,1,1,1,2,89.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009407748351973865,46061.32276512418,10,5,10,10_0,10_3,10_0_0 -30215,2,67.0,0.0,5,111,980.0,0.0,0.0,75,72,0.0,0.0,1354.530743024412,980.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,130894,2,2,0,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,4,4,1742.38940274114,980.0,65511.41268353924,5,5,1,2,95.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014959225573931796,43674.27512235949,10,5,10,10_0,10_3,10_0_0 -30216,2,61.0,0.0,6,111,0.0,0.0,350.0,0,74,0.0,0.0,178.81966719313377,350.0,0.0,400.136021128421,71,0,0,0,0,0,0,0,0,0,,2,,4,114312,2,1,0,1,1,,0.0,,31,0.0,0.0,3.0,3.0,2.0,1,1,1672.01595281156,0.0,36976.10460160026,0,5,0,1,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009465572530451265,18488.05230080013,4,2,4_0,4_0_0,4_3_0,4_0_0 -30217,2,76.0,0.0,2,111,250.0,920.0,0.0,77,78,0.0,0.0,345.54355689398267,1170.0,0.0,1668.560668779653,71,0,0,0,0,0,0,0,0,0,,2,,2,112991,2,2,0,0,1,,0.0,390.0,41,1.0,3.0,4.0,3.0,2.0,2,2,1662.35128753376,250.0,21181.75657770326,5,5,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055236212148315755,10590.87828885163,2,1,2_0,2_0_0,2_3_0,2_0_1 -30218,2,30.0,0.0,2,111,300.0,60.0,0.0,63,54,0.0,0.0,414.65226827277917,360.0,0.0,108.81917405084694,33,0,0,0,0,0,0,0,0,3,35.0,2,,2,125210,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,1773.2521460023,300.0,58282.59410876458,1,1,1,2,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006176801247524824,32379.218949313654,8,4,8,8_0,8_3,8_0_1 -30219,2,56.0,0.0,2,111,509.0,104.0,0.0,0,52,0.0,0.0,703.5266818361487,613.0,0.0,188.6199016881347,50,1,1,2,1,2,2,2,2,2,15.0,2,,2,102093,2,2,0,1,2,,0.0,,22,2.0,1.0,4.0,2.0,1.5,1,1,1465.59464849677,509.0,47317.89156997835,0,1,1,2,62.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012954930569833937,31545.26104665223,8,4,8,8_0,8_3,8_0_1 -30220,2,57.0,0.0,2,111,300.0,86.0,0.0,0,52,0.0,0.0,414.65226827277917,386.0,0.0,155.9741494728806,71,0,0,0,0,0,0,0,0,4,35.0,2,,2,133140,2,1,0,1,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1972.61757417668,300.0,19534.932698076744,0,1,1,2,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019759474269292084,19534.932698076744,5,3,5,5_0,5_3,5_0_1 -30221,2,58.0,0.0,2,111,420.0,300.0,0.0,75,54,0.0,0.0,580.5131755818909,720.0,0.0,544.0958702542347,33,2,2,1,1,1,2,2,2,2,15.0,2,,2,123819,1,3,0,1,2,800.0,0.0,700.0,42,1.0,0.0,3.0,3.0,2.0,1,1,2175.29798901789,420.0,59884.338075901665,5,1,2,3,73.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012023177063215106,29942.169037950833,8,4,8,8_0,8_3,8_0_1 -30222,2,29.0,0.0,2,111,392.0,0.0,0.0,0,34,0.0,0.0,541.8122972097648,392.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102281,2,1,0,1,1,600.0,108.0,580.0,12,1.0,0.0,3.0,1.0,1.0,2,1,1922.75127700779,392.0,34575.79313933554,0,1,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011337411651564886,34575.79313933554,9,5,9,9_0,9_3,9_0_1 -30223,2,47.0,0.0,1,111,0.0,0.0,600.0,0,55,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,50,2,2,2,2,2,2,2,1,3,30.0,2,,1,106195,1,2,0,0,2,,348.0,447.0,12,1.0,0.0,2.0,1.0,1.0,2,1,2139.4877456083,0.0,14290.908663374237,0,1,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04198473408046634,14290.908663374237,3,2,3_0,3_0_0,3_3_0,3_1_0 -30224,2,65.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,814.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116043,2,1,0,1,2,1200.0,0.0,720.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1949.4832432568,0.0,30735.551961855384,0,5,2,3,63.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02648398834711742,30735.551961855384,8,4,8,8_0,8_3,8_0_1 -30225,1,24.0,330.0,1,111,270.0,790.0,0.0,84,38,0.0,0.0,373.1870414455012,1060.0,0.0,1432.7857916694845,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,111430,2,3,0,0,1,,0.0,660.0,42,1.0,0.0,2.0,2.0,1.5,4,4,1761.94069072126,270.0,23588.518440467557,3,1,2,3,53.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.044937116448208324,15725.678960311705,3,2,3_1,3_0_1,3_3_1,3_1_0 -30226,1,67.0,73.0,7,111,550.0,0.0,0.0,0,77,0.0,0.0,760.1958251667618,550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,119714,2,2,0,0,1,,0.0,296.0,11,0.0,2.0,1.0,1.0,1.0,3,3,1584.23011484232,550.0,19006.729325572658,0,5,2,3,37.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02893711961584053,19006.729325572658,5,3,5,5_0,5_3,5_0_0 -30227,1,26.0,250.0,5,111,0.0,0.0,0.0,84,54,0.0,0.0,0.0,474.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,3,112230,1,1,0,1,1,560.0,354.0,620.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1866.03861846536,0.0,10477.749821575526,3,1,2,3,62.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04523872091543461,6985.166547717017,1,1,1_1,1_0_1,1_3_1,1_0_0 -30228,2,45.0,0.0,1,111,200.0,340.0,0.0,0,81,0.0,0.0,276.4348455151861,540.0,0.0,616.6419862881327,50,0,0,0,0,0,0,0,0,0,,2,,1,117198,2,2,0,1,2,,250.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2016.75449477206,200.0,27436.576593401405,0,4,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019681755781800852,27436.576593401405,7,4,7,7_0,7_3,7_1_0 -30229,2,71.0,0.0,1,111,350.0,790.0,0.0,0,77,0.0,0.0,483.76097965157567,1140.0,0.0,1432.7857916694845,50,2,2,2,1,2,2,2,2,0,,2,,1,119610,2,1,0,0,1,,181.0,305.0,11,0.0,2.0,4.0,1.0,1.0,3,3,1471.22310358067,350.0,23421.16801466023,0,5,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.04867391751284262,23421.16801466023,6,3,6,6_0,6_3,6_1_0 -30230,2,80.0,0.0,5,111,550.0,0.0,0.0,75,72,0.0,0.0,760.1958251667618,550.0,0.0,0.0,10,2,1,2,1,2,2,2,2,0,,2,,3,113922,1,2,0,1,1,,534.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1617.31350751519,550.0,58482.14264292161,5,5,0,1,135.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.009404580187120919,38988.095095281074,9,5,9,9_0,9_3,9_0_0 -30231,2,87.0,0.0,2,111,130.0,120.0,0.0,0,86,0.0,0.0,179.68264958487097,250.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,132142,2,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,1686.82823979257,130.0,15326.040276172356,0,5,0,1,51.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01631210642116601,15326.040276172356,3,2,3_0,3_0_0,3_3_0,3_0_1 -30232,2,42.0,0.0,1,111,440.0,600.0,0.0,0,43,0.0,0.0,608.1566601334094,1040.0,0.0,1088.1917405084694,41,0,0,0,0,0,0,0,0,3,45.0,2,,1,124322,2,2,0,0,1,,216.0,500.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1866.03861846536,440.0,36521.488231183524,0,1,2,3,62.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02847638610498917,28093.452485525788,8,4,8,8_0,8_3,8_1_0 -30233,1,29.0,240.0,1,111,620.0,0.0,0.0,0,64,0.0,0.0,856.9480210970769,620.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,109961,2,3,0,0,1,,320.0,403.0,12,1.0,0.0,1.0,1.0,1.0,5,4,2455.93291131994,620.0,7956.0,0,4,2,3,30.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07792860734037205,7956.0,1,1,1_1,1_0_1,1_3_1,1_1_0 -30234,2,30.0,0.0,6,111,77.0,0.0,0.0,0,38,0.0,0.0,106.42741552334665,77.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,4,106534,2,2,0,0,1,,0.0,951.0,12,1.0,0.0,3.0,1.0,1.0,4,4,1833.06601806554,77.0,52452.56174564937,0,1,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0014679931244041993,52452.56174564937,10,5,10,10_0,10_3,10_0_0 -30237,2,40.0,0.0,7,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,618.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,2,,5,116786,2,2,0,0,1,,195.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1436.48994851867,0.0,57402.30468240686,1,1,1,2,100.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01076611824941952,27334.43080114612,7,4,7,7_0,7_3,7_0_0 -30238,2,29.0,0.0,5,111,450.0,0.0,0.0,0,63,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,102716,1,2,0,0,1,,0.0,950.0,22,3.0,0.0,4.0,3.0,2.0,2,2,1747.68923217858,450.0,56132.62611446722,0,1,2,3,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008016728080427726,28066.31305723361,8,4,8,8_0,8_3,8_0_0 -30239,2,35.0,0.0,2,111,240.0,120.0,0.0,0,85,0.0,0.0,331.72181461822333,360.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,114744,1,1,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1608.06728424993,240.0,30485.290319310396,0,7,0,1,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011808973974965364,30485.290319310396,8,4,8,8_0,8_3,8_0_1 -30240,2,40.0,0.0,2,111,60.0,240.0,0.0,0,34,0.0,0.0,82.93045365455583,300.0,0.0,435.27669620338776,50,2,1,2,2,1,2,2,2,0,,2,,2,133627,1,1,0,1,1,192.0,0.0,650.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1824.57998116518,60.0,3969.0504315830294,0,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0755848294626851,3969.0504315830294,1,1,1_0,1_0_0,1_3_0,1_0_1 -30241,2,46.0,0.0,1,111,200.0,618.0,0.0,43,46,0.0,0.0,276.4348455151861,818.0,0.0,1120.8374927237235,42,0,0,0,0,0,0,0,0,2,20.0,2,,1,109281,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1591.81649557152,200.0,74070.7890239625,1,1,1,2,98.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011043489758633061,35271.804297124996,9,5,9,9_0,9_3,9_1_0 -30242,2,29.0,0.0,1,111,300.0,700.0,0.0,52,34,0.0,0.0,414.65226827277917,1000.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,133408,2,2,0,0,1,,130.0,741.0,43,2.0,0.0,2.0,3.0,1.8,1,1,1972.67530250333,300.0,33161.01550463456,1,1,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030155891934619452,18422.786391463644,4,2,4_0,4_0_0,4_3_0,4_1_0 -30243,2,68.0,0.0,5,111,206.0,0.0,0.0,0,74,0.0,0.0,284.72789088064167,206.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,117597,2,2,0,1,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,2,2,1289.00314290312,206.0,23210.87989985645,0,5,1,2,30.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008875148244650305,23210.87989985645,6,3,6,6_0,6_3,6_0_0 -30244,1,26.0,270.0,7,111,0.0,0.0,0.0,81,47,0.0,0.0,0.0,1378.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,119631,2,1,0,0,1,,0.0,520.0,43,2.0,0.0,2.0,2.0,1.5,3,2,1810.21241462911,0.0,23541.519517853645,4,1,2,3,48.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05853487915064017,15694.346345235763,3,2,3_1,3_0_1,3_3_1,3_0_0 -30245,2,61.0,0.0,7,111,400.0,0.0,0.0,0,77,0.0,0.0,552.8696910303722,400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,117283,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1538.05621267939,400.0,16365.151731969363,0,5,0,1,52.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024442180955682742,16365.151731969363,4,2,4_0,4_0_0,4_3_0,4_0_0 -30247,2,66.0,0.0,2,111,440.0,800.0,0.0,0,74,0.0,0.0,608.1566601334094,1240.0,0.0,1450.922320677959,31,2,2,2,2,1,2,2,2,0,,2,,2,116881,1,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1534.48238421741,440.0,48592.947746858124,0,5,0,1,69.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.02551810617581179,48592.947746858124,10,5,10,10_0,10_3,10_0_1 -30248,2,81.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1123.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,101796,1,1,0,1,2,,0.0,700.0,11,0.0,0.0,2.0,1.0,1.0,3,2,1760.33949638766,0.0,20631.129689566063,0,5,2,3,69.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0544323077261224,20631.129689566063,5,3,5,5_0,5_3,5_0_1 -30249,2,37.0,0.0,5,111,150.0,0.0,0.0,0,34,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,8.0,2,,3,101039,1,1,0,0,1,,0.0,505.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1613.32186695977,150.0,12154.653487339343,0,1,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.012340952389654264,9349.733451799495,1,1,1_0,1_0_0,1_3_0,1_0_0 -30251,2,71.0,0.0,2,111,210.0,230.0,0.0,77,78,0.0,0.0,290.25658779094545,440.0,0.0,417.14016719491326,10,2,1,2,2,1,2,2,2,0,,2,,2,129202,1,3,0,1,1,860.0,350.0,310.0,41,0.0,2.0,3.0,2.0,1.5,1,1,1334.87165995372,210.0,28121.385107012615,5,5,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.015646455475988537,18747.590071341743,5,3,5,5_0,5_3,5_0_1 -30252,2,44.0,0.0,1,111,250.0,500.0,0.0,0,47,0.0,0.0,345.54355689398267,750.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,103816,2,2,0,0,1,,160.0,600.0,32,1.0,0.0,2.0,2.0,1.5,1,1,1711.59803470479,250.0,35389.27909386923,0,1,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021192858944954564,23592.85272924615,6,3,6,6_0,6_3,6_1_0 -30253,2,66.0,0.0,7,111,200.0,410.0,0.0,0,75,0.0,0.0,276.4348455151861,610.0,0.0,743.5976893474541,71,2,2,2,2,1,2,2,2,0,,2,,5,133037,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,4,4,1625.45219933885,200.0,23386.013837762526,0,5,0,1,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02608396643531458,23386.013837762526,6,3,6,6_0,6_3,6_0_0 -30255,2,35.0,0.0,2,111,900.0,0.0,0.0,0,52,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,2,,2,120460,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1555.95066485529,900.0,31221.69663832197,0,1,1,2,59.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02882610802435787,31221.69663832197,8,4,8,8_0,8_3,8_0_1 -30257,1,64.0,58.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,844.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,4,111580,2,1,0,1,1,1200.0,0.0,394.0,11,0.0,2.0,4.0,1.0,1.0,2,2,1660.69891498359,0.0,13172.354896189092,0,5,2,3,90.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.06407358491716456,13172.354896189092,2,1,2_1,2_0_1,2_3_1,2_0_0 -30258,2,52.0,0.0,1,111,365.0,1444.0,0.0,35,37,0.0,0.0,504.49359306521467,1809.0,0.0,2618.914788823716,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,101738,2,1,1,0,1,,352.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1180.89916193289,365.0,90424.38589742519,1,1,1,2,150.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020005665308604665,39314.95039018487,9,5,9,9_1,9_3,9_1_0 -30259,2,33.0,0.0,8,111,0.0,0.0,0.0,33,45,0.0,0.0,0.0,2118.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,1,2002.0,6,102766,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,4,4,1179.60548245237,0.0,52168.92325164919,1,1,1,2,93.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04059888278282693,24842.344405547232,7,4,7,7_1,7_3,7_0_0 -30260,2,60.0,0.0,2,111,410.0,150.0,0.0,0,77,0.0,0.0,566.6914333061316,560.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,2,,2,102025,1,1,0,1,2,568.0,0.0,410.0,11,0.0,2.0,2.0,1.0,1.0,4,4,1901.96101091038,410.0,18404.715846315943,0,5,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030426984294467916,18404.715846315943,4,2,4_0,4_0_0,4_3_0,4_0_1 -30261,0,30.0,0.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1411.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,121500,1,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2145.61400162152,0.0,20000.725300689184,0,4,5,0,85.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07054744159459957,20000.725300689184,5,3,5,5_0,5_3,5_1_0 -30262,0,56.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,694.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,30.0,2,,2,108091,2,2,0,0,1,,168.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,565.217476200891,0.0,11913.263858113656,0,1,5,0,90.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.058254396802211665,11913.263858113656,2,1,2_0,2_0_0,2_3_0,2_0_1 -30263,1,45.0,112.0,2,111,500.0,500.0,0.0,85,67,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,71,2,1,2,2,1,2,2,2,2,25.0,2,,2,107434,1,2,0,1,1,434.0,0.0,333.0,42,1.0,0.0,4.0,5.0,2.4,3,2,419.136298225957,500.0,26820.444332777744,6,1,2,3,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.037284990046860714,11175.185138657394,2,1,2_1,2_0_1,2_3_1,2_0_1 -30264,2,88.0,0.0,2,111,745.0,0.0,0.0,0,86,3435.2452171414016,0.0,1029.7197995440683,3045.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122629,2,1,2,0,1,,563.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1320.72635230435,745.0,43892.67733896697,0,6,0,1,85.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06937375855395166,43892.67733896697,10,5,10,10_1,10_3,10_0_1 -30265,1,51.0,173.0,1,111,280.0,0.0,0.0,85,67,0.0,0.0,387.00878372126056,340.0,103.2196202514115,0.0,71,2,1,2,1,1,2,2,2,2,20.0,2,,1,122480,1,3,0,1,1,21.0,170.0,236.0,42,1.0,0.0,2.0,3.0,1.8,2,2,608.689336225429,280.0,6752.442764116466,6,1,2,3,38.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.05035214838203635,3751.3570911758143,1,1,1_1,1_0_1,1_3_1,1_1_0 -30266,1,56.0,170.0,1,111,600.0,400.0,0.0,0,55,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,71,2,2,2,2,2,2,2,1,0,,2,,1,130681,1,3,0,0,1,,500.0,460.0,12,1.0,3.0,2.0,1.0,1.0,1,1,459.035753007704,600.0,13615.334405144695,0,4,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.07344659853687763,13615.334405144695,3,2,3_1,3_0_1,3_3_1,3_1_0 -30267,2,42.0,0.0,2,111,1500.0,0.0,0.0,46,37,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,33,2,2,2,1,2,2,2,2,2,40.0,2,,2,101937,1,3,0,1,1,,0.0,,43,2.0,0.0,6.0,5.0,2.8,2,2,1598.70748885629,1500.0,79626.3988774004,1,1,1,2,150.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.018837973601060726,28437.999599071572,8,4,8,8_0,8_3,8_0_1 -30268,1,59.0,270.0,2,111,288.0,432.0,0.0,0,53,0.0,0.0,398.066177541868,720.0,0.0,783.498053166098,71,2,1,2,1,2,2,2,2,3,20.0,2,,2,130816,2,2,0,1,1,,580.0,472.0,32,2.0,4.0,5.0,2.0,1.5,1,1,435.378188009499,288.0,18542.092197295045,0,1,2,3,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03883056951388878,12361.394798196698,2,1,2_1,2_0_1,2_3_1,2_0_1 -30269,2,58.0,0.0,2,111,550.0,0.0,0.0,43,33,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,,2,102796,2,2,0,1,1,,207.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,499.816812698518,550.0,81376.27254412833,1,1,1,2,125.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006758726872157344,54250.848362752215,10,5,10,10_0,10_3,10_0_1 -30270,2,20.0,0.0,8,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,998.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,2003.0,6,128194,2,2,0,0,1,,234.0,580.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1777.59580121619,0.0,13818.708895011048,0,1,2,3,52.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07222092943576709,13818.708895011048,3,2,3_0,3_0_0,3_3_0,3_0_0 -30271,2,72.0,0.0,1,111,320.0,940.0,0.0,74,74,0.0,0.0,442.2957528242978,1260.0,0.0,1704.833726796602,71,0,0,0,0,0,0,0,0,0,,2,,1,107605,2,1,0,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,1544.486394702,320.0,84510.77347304003,5,5,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014909341711349446,56340.51564869335,10,5,10,10_0,10_3,10_1_0 -30272,2,71.0,0.0,1,111,249.0,501.0,0.0,0,78,0.0,0.0,344.1613826664067,750.0,0.0,908.6401033245719,71,0,0,0,0,0,0,0,0,0,,2,,1,102340,2,2,0,0,1,,144.0,310.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1847.02765836555,249.0,18106.886118647544,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041420705641242506,18106.886118647544,4,2,4_0,4_0_0,4_3_0,4_1_0 -30273,0,44.0,0.0,1,111,840.0,0.0,0.0,0,37,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,117269,2,1,0,0,1,,169.0,,32,1.0,0.0,2.0,3.0,1.8,6,5,1855.3639472951,840.0,71893.14155212959,0,4,5,0,55.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011684007429149797,39940.63419562755,9,5,9,9_0,9_3,9_1_0 -30274,2,34.0,0.0,2,111,360.0,70.0,0.0,0,52,0.0,0.0,497.582721927335,430.0,0.0,126.95570305932142,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,125240,2,1,0,1,1,586.0,0.0,520.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1608.60547349383,360.0,19731.376246099127,0,1,2,3,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02179270186918718,19731.376246099127,5,3,5,5_0,5_3,5_0_1 -30275,2,52.0,0.0,1,111,660.0,1300.0,0.0,85,21,0.0,0.0,912.2349902001142,1960.0,0.0,2357.7487711016834,50,2,2,2,2,1,2,2,2,0,,2,,1,101041,1,2,0,0,1,,600.0,850.0,42,1.0,1.0,3.0,2.0,1.5,2,2,1770.56081593579,660.0,9409.778237229833,6,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.20829396300172628,6273.185491486555,1,1,1_0,1_0_0,1_3_0,1_1_0 -30276,2,33.0,0.0,9,111,850.0,0.0,0.0,43,38,0.0,0.0,1174.848093439541,910.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,3,50.0,2,2009.0,6,100072,2,3,0,0,1,,312.0,570.0,43,2.0,0.0,2.0,2.0,1.5,3,3,1615.31166034135,850.0,35073.33077691418,1,1,2,3,47.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025945639602583063,23382.220517942787,6,3,6,6_0,6_3,6_0_0 -30277,2,66.0,0.0,7,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,103604,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1662.81026050205,300.0,24970.70843473814,0,5,0,1,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012014076444169014,24970.70843473814,7,4,7,7_0,7_3,7_0_0 -30278,2,33.0,0.0,7,111,350.0,350.0,0.0,54,22,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,131864,1,1,0,0,1,,0.0,550.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1515.03443888727,350.0,43811.0737614439,1,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015977695589283584,29207.382507629267,8,4,8,8_0,8_3,8_0_0 -30279,2,41.0,0.0,5,111,0.0,0.0,110.0,0,56,0.0,0.0,56.20046683212775,110.0,0.0,125.75703521178947,50,0,0,0,0,0,0,0,0,0,,2,,3,130567,1,1,0,1,1,744.0,0.0,425.0,12,1.0,0.0,3.0,1.0,1.0,3,2,1388.91833853848,0.0,11417.775762681718,0,1,2,3,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009634100571455263,11417.775762681718,2,1,2_0,2_0_0,2_3_0,2_0_0 -30280,2,92.0,0.0,6,111,264.0,120.0,0.0,77,75,0.0,0.0,364.89399608004567,384.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,4,126683,2,1,0,1,2,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1680.49523130385,264.0,62586.44209603402,5,5,0,1,88.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006135514132769872,41724.29473068935,9,5,9,9_0,9_3,9_0_0 -30281,2,59.0,0.0,2,111,1092.0,1241.0,0.0,34,34,0.0,715.3042008302453,1509.3342565129162,3024.0,0.0,2250.743249951684,20,2,2,2,2,1,2,2,2,2,15.0,1,,2,132830,1,3,1,0,2,,511.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,4,4,358.926643456678,1092.0,91270.3957687589,1,1,1,2,107.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03313232044771181,35103.998372599584,9,5,9,9_1,9_2,9_0_1 -30282,2,39.0,0.0,5,111,312.0,66.0,0.0,0,47,0.0,0.0,431.23835900369033,378.0,0.0,119.70109145593163,71,2,2,2,1,2,2,2,2,2,10.0,2,,3,117053,1,2,0,1,1,535.0,100.0,347.0,12,1.0,0.0,2.0,1.0,1.0,2,2,407.023762799744,312.0,28187.432929700648,0,1,2,3,53.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01341023146530337,28187.432929700648,8,4,8,8_0,8_2,8_0_0 -30283,1,45.0,192.0,2,111,1000.0,0.0,0.0,0,54,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,2,2,2,1,2,2,2,2,3,30.0,2,,2,116278,2,3,0,1,1,21.0,90.0,178.0,22,2.0,0.0,2.0,2.0,1.5,4,4,487.460731627792,1000.0,17266.181456162078,0,1,2,3,34.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.057916685431515194,11510.787637441385,2,1,2_1,2_0_1,2_2_1,2_0_1 -30284,2,79.0,0.0,2,111,450.0,140.0,0.0,77,74,0.0,0.0,621.9784024091688,590.0,0.0,253.91140611864284,20,0,0,0,0,0,0,0,0,0,,2,,2,100312,2,1,0,1,1,,306.0,443.0,41,1.0,3.0,4.0,3.0,2.0,2,2,443.593540097356,450.0,47925.54709545341,5,5,2,3,75.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012310761916288526,23962.773547726705,6,3,6,6_0,6_2,6_0_1 -30285,1,48.0,468.0,7,111,840.0,0.0,0.0,0,52,0.0,0.0,1161.0263511637818,1203.0,624.4787025210396,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,128423,2,1,0,1,1,1000.0,1200.0,658.0,32,1.0,0.0,5.0,5.0,2.8,6,4,1353.24972026911,840.0,31999.423291932915,0,4,2,3,110.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03759442753155109,11428.365461404614,2,1,2_1,2_0_1,2_2_1,2_0_0 -30286,0,89.0,0.0,2,111,150.0,55.0,0.0,0,78,0.0,0.0,207.32613413638958,205.0,0.0,99.75090954660969,20,2,1,2,1,2,2,2,2,0,,2,,2,111723,2,1,0,1,2,710.0,53.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,1922.06346338596,150.0,15937.0,0,5,5,0,65.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.012863148647800715,15937.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -30287,2,69.0,0.0,2,111,394.0,48.0,0.0,77,74,0.0,0.0,544.5766456649167,442.0,0.0,87.05533924067754,71,0,0,0,0,0,0,0,0,0,,2,,2,133330,2,2,0,1,1,,161.0,,41,0.0,0.0,5.0,2.0,1.5,5,4,1790.34755717359,394.0,110741.94511739368,5,5,0,1,105.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003991260940300906,73827.96341159579,10,5,10,10_0,10_2,10_0_1 -30288,2,63.0,0.0,7,111,512.0,684.0,0.0,0,54,0.0,0.0,707.6732045188764,1196.0,0.0,1240.5385841796551,31,1,2,2,2,1,2,2,2,2,10.0,2,,5,107445,2,1,0,1,1,,415.0,,12,1.0,0.0,3.0,1.0,1.0,5,2,498.894849919356,512.0,29552.81367931083,0,1,0,1,61.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04046991981806758,29552.81367931083,8,4,8,8_0,8_2,8_0_0 -30289,2,81.0,0.0,5,111,250.0,50.0,0.0,0,78,0.0,0.0,345.54355689398267,300.0,0.0,90.68264504237244,41,0,0,0,0,0,0,0,0,0,,2,,3,132501,2,1,0,1,1,,110.0,232.0,11,0.0,0.0,2.0,1.0,1.0,2,2,526.124344050105,250.0,13587.79525846324,0,5,2,3,47.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022078637063149976,13587.79525846324,3,2,3_0,3_0_0,3_2_0,3_0_0 -30290,2,64.0,0.0,6,111,300.0,520.0,0.0,77,78,0.0,414.0690019277831,414.65226827277917,1220.0,0.0,943.0995084406734,50,0,0,0,0,0,0,0,0,0,,1,,4,119293,2,1,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,338.615163681255,300.0,21550.038308780295,5,5,0,1,90.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05661242836412621,14366.69220585353,3,2,3_0,3_1_0,3_2_0,3_0_0 -30291,2,62.0,0.0,2,111,360.0,0.0,0.0,0,78,0.0,0.0,497.582721927335,393.0,56.77079113827632,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105122,2,1,0,1,1,,150.0,458.0,11,0.0,0.0,3.0,1.0,1.0,2,2,471.394900159384,360.0,20532.924913039315,0,5,2,3,66.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019139991095493056,20532.924913039315,5,3,5,5_0,5_2,5_0_1 -30292,1,31.0,145.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1611.0,533.3013712989595,0.0,71,2,1,2,2,1,2,2,2,2,15.0,2,,2,113062,2,2,0,1,1,828.0,256.0,241.0,42,1.0,0.0,3.0,5.0,2.4,4,3,446.140618446606,0.0,26718.178657334684,6,1,2,3,90.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06029602618731452,11132.574440556118,2,1,2_1,2_0_1,2_2_1,2_0_1 -30293,2,68.0,0.0,2,111,300.0,0.0,0.0,62,78,0.0,0.0,414.65226827277917,399.0,170.31237341482898,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,105928,2,1,0,1,1,,300.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1721.62750305256,300.0,22089.876331625906,4,5,0,1,73.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018062572827931805,14726.584221083938,3,2,3_0,3_0_0,3_2_0,3_0_1 -30294,2,79.0,0.0,2,111,219.0,0.0,0.0,86,75,5376.905557264802,0.0,302.6961558391288,3819.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112970,2,1,2,0,1,,494.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1288.50439617775,219.0,77474.9454713015,5,5,0,1,160.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0492933551197483,51649.963647534336,10,5,10,10_1,10_2,10_0_1 -30295,2,81.0,0.0,2,111,198.0,0.0,0.0,55,78,0.0,0.0,273.6704970600342,318.0,206.439240502823,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,111872,1,1,0,1,1,788.0,166.0,379.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1506.78945634439,198.0,37058.52200053934,5,5,2,3,60.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008581022200382732,24705.681333692894,7,4,7,7_0,7_2,7_0_1 -30296,2,50.0,0.0,1,111,1033.0,0.0,0.0,0,37,0.0,0.0,1427.7859770859363,1033.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,112194,2,3,0,0,1,540.0,115.0,630.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1984.61621478777,1033.0,15652.512085131135,0,4,2,3,75.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0.06599579635407422,15652.512085131135,3,2,3_0,3_0_0,3_2_0,3_1_0 -30297,0,88.0,0.0,1,111,363.0,1809.0,0.0,0,77,0.0,0.0,501.7292446100628,2172.0,0.0,3280.898097633035,71,0,0,0,0,0,0,0,0,0,,2,,1,120595,2,1,0,0,1,,107.0,,11,0.0,0.0,7.0,1.0,1.0,3,2,1874.82578615478,363.0,45972.91262519042,0,5,0,1,70.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04724521192964122,45972.91262519042,10,5,10,10_0,10_2,10_1_0 -30298,2,44.0,0.0,1,111,145.0,638.0,0.0,38,47,0.0,0.0,200.41526299850995,783.0,0.0,1157.1105507406724,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,130330,2,2,0,0,2,,80.0,,43,2.0,1.0,4.0,2.0,1.5,5,4,1533.8788618654,145.0,58669.43799043636,1,1,1,2,72.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013345960466293131,39112.958660290904,9,5,9,9_0,9_2,9_1_0 -30299,2,35.0,0.0,2,111,341.0,0.0,0.0,56,62,0.0,0.0,471.32141160339233,341.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,127709,2,1,0,1,1,192.0,320.0,312.0,43,2.0,0.0,1.0,2.0,1.5,1,1,2337.34539708125,341.0,35299.27766905086,1,1,2,3,20.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009660254331464026,23532.85177936724,6,3,6,6_0,6_2,6_0_1 -30300,2,44.0,0.0,7,111,384.0,0.0,0.0,52,56,0.0,0.0,530.7549033891573,516.0,227.0831645531053,0.0,10,0,0,0,0,0,0,0,0,1,3.0,2,,5,130873,2,2,0,1,1,432.0,0.0,670.0,43,2.0,2.0,3.0,4.0,2.1,1,1,1850.85124253159,384.0,42779.09688544242,1,1,2,3,65.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012061965716148464,20370.998516877342,5,3,5,5_0,5_2,5_0_0 -30301,2,43.0,0.0,5,111,316.0,35.0,0.0,85,46,0.0,0.0,436.76705591399406,351.0,0.0,63.47785152966071,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,105243,1,2,0,1,2,833.0,160.0,582.0,42,1.0,0.0,3.0,4.0,2.1,1,1,1622.04940548117,316.0,32085.267359714144,6,1,2,3,65.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010939600286476376,15278.69874272102,3,2,3_0,3_0_0,3_2_0,3_0_0 -30302,0,25.0,0.0,2,111,250.0,0.0,0.0,0,54,0.0,0.0,345.54355689398267,310.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,131098,2,1,0,1,1,1556.0,250.0,,12,1.0,0.0,3.0,1.0,1.0,2,1,1760.17109158568,250.0,22113.0,0,1,5,0,73.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014018902907791796,22113.0,6,3,6,6_0,6_2,6_0_1 -30303,2,34.0,0.0,7,111,242.0,65.0,0.0,52,65,0.0,0.0,334.4861630733752,307.0,0.0,117.88743855508417,50,0,0,0,0,0,0,0,0,2,6.0,2,,5,127233,2,1,0,1,1,376.0,200.0,431.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1355.24223265709,242.0,31549.962471940096,1,1,2,3,56.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009730597945181064,21033.30831462673,5,3,5,5_0,5_2,5_0_0 -30304,2,66.0,0.0,7,111,320.0,400.0,0.0,0,74,0.0,0.0,442.2957528242978,720.0,0.0,725.4611603389795,31,0,0,0,0,0,0,0,0,0,,2,,5,109232,2,1,0,0,1,,100.0,450.0,11,0.0,1.0,2.0,1.0,1.0,2,2,1582.01035031157,320.0,26952.963655491047,0,5,2,3,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026713203386571426,26952.963655491047,7,4,7,7_0,7_2,7_0_0 -30305,2,55.0,0.0,2,111,350.0,420.0,0.0,68,68,0.0,103.51725048194578,483.76097965157567,870.0,0.0,761.7342183559285,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,124440,2,1,0,0,1,63.0,105.0,594.0,43,2.0,4.0,2.0,2.0,1.5,2,2,1411.90883288554,350.0,31455.287670312777,1,1,2,3,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0.027658306899577278,20970.19178020852,5,3,5,5_0,5_2,5_0_1 -30306,2,55.0,0.0,2,111,540.0,1650.0,0.0,55,52,0.0,0.0,746.3740828910024,2190.0,0.0,2992.5272863982905,20,0,0,0,0,0,0,0,0,2,5.0,1,,2,124968,2,1,1,0,1,,220.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1373.46381035093,540.0,32816.72700482852,1,1,0,1,100.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06673426023496408,21877.818003219014,6,3,6,6_1,6_2,6_0_1 -30307,2,63.0,0.0,5,111,1846.0,0.0,0.0,75,11,0.0,0.0,2551.493624105168,1986.0,240.84578058662683,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,3,128107,2,1,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1185.16692083597,1846.0,64309.10993545029,5,5,0,1,125.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030882094340808484,42872.739956966856,9,5,9,9_1,9_2,9_0_0 -30308,2,31.0,0.0,2,111,300.0,0.0,0.0,54,43,0.0,0.0,414.65226827277917,300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,108892,2,1,0,1,1,,150.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1730.48376206096,300.0,47511.22431064401,1,1,1,2,70.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0063142973971477,26395.12461702445,7,4,7,7_0,7_2,7_0_1 -30309,2,55.0,0.0,2,111,253.0,0.0,0.0,0,52,0.0,0.0,349.69007957671045,278.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,124160,2,2,0,1,1,,115.0,,12,1.0,0.0,2.0,1.0,1.0,3,2,1531.48231243406,253.0,20119.51488592255,0,1,0,1,47.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013817430568095566,20119.51488592255,5,3,5,5_0,5_2,5_0_1 -30310,2,56.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,291.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106704,1,2,0,1,2,958.0,368.0,450.0,11,0.0,3.0,2.0,1.0,1.0,3,3,1697.26889704983,0.0,16381.708925954648,0,7,2,3,47.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017763714476634915,16381.708925954648,4,2,4_0,4_0_0,4_2_0,4_0_1 -30311,1,29.0,350.0,5,111,350.0,0.0,0.0,0,56,0.0,0.0,483.76097965157567,425.0,129.02452531426437,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,125661,1,3,0,1,1,729.0,153.0,630.0,32,1.0,0.0,4.0,2.0,1.3,6,6,1867.88379725262,350.0,7510.908083622497,0,1,2,3,84.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05658436972843679,5777.621602786536,1,1,1_1,1_0_1,1_2_1,1_0_0 -30312,2,59.0,0.0,5,111,250.0,0.0,0.0,0,37,0.0,0.0,345.54355689398267,310.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,108705,2,2,0,1,1,732.0,110.0,550.0,12,1.0,3.0,4.0,1.0,1.0,2,2,2234.84215010439,250.0,44030.437667369435,0,1,2,3,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007040584114605298,44030.437667369435,10,5,10,10_0,10_2,10_0_0 -30313,2,29.0,0.0,5,111,240.0,0.0,0.0,42,37,0.0,0.0,331.72181461822333,300.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,101832,2,1,0,1,1,,100.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1822.33207193406,240.0,55302.22694417281,1,1,0,1,83.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005424736336618917,30723.45941342934,8,4,8,8_0,8_2,8_0_0 -30314,1,53.0,113.0,5,111,360.0,0.0,0.0,56,47,0.0,0.0,497.582721927335,811.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,2.0,2,,3,121915,2,2,0,1,1,1000.0,0.0,862.0,43,3.0,1.0,5.0,5.0,2.5999999999999996,3,3,1923.94980108465,360.0,43053.53296116469,1,1,2,3,120.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.01883701392709261,16559.051138909497,4,2,4_1,4_0_1,4_2_1,4_0_0 -30315,2,48.0,0.0,5,111,590.0,0.0,0.0,37,37,0.0,0.0,815.482794269799,690.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,128792,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,1709.6417517771,590.0,74444.6485922853,1,1,0,1,117.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009268631299194616,37222.32429614265,9,5,9,9_0,9_2,9_0_0 -30316,2,29.0,0.0,5,111,300.0,0.0,0.0,54,54,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,2,,3,120510,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,6,3,1437.97813732209,300.0,66351.26404449326,1,1,1,2,78.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004521390878082271,36861.81335805181,9,5,9,9_0,9_2,9_0_0 -30317,2,68.0,0.0,6,111,500.0,0.0,0.0,47,74,0.0,0.0,691.0871137879653,500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,120167,2,2,0,1,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,1619.89693392841,500.0,68289.5670001961,1,5,0,1,116.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0073217626346725,45526.37800013073,10,5,10,10_0,10_2,10_0_0 -30318,2,54.0,0.0,7,111,624.0,1100.0,0.0,54,54,0.0,0.0,862.4767180073807,1724.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,101609,2,1,2,0,1,,150.0,,43,2.0,1.0,4.0,2.0,1.5,4,4,1129.94278698202,624.0,53354.17340344361,1,1,0,1,100.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03231237389742278,35569.44893562907,9,5,9,9_1,9_2,9_0_0 -30319,2,28.0,0.0,9,111,250.0,0.0,0.0,43,53,0.0,0.0,345.54355689398267,282.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,3,240.0,2,2008.0,6,100417,2,1,0,1,1,432.0,0.0,720.0,43,2.0,0.0,3.0,2.0,1.5,5,4,1719.94878940102,250.0,46150.801474887245,1,1,2,3,70.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006110403091340658,30767.200983258164,8,4,8,8_0,8_2,8_0_0 -30320,0,93.0,0.0,1,111,1840.0,0.0,0.0,0,86,0.0,0.0,2543.200578739712,1990.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123044,2,1,2,0,1,,165.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1228.47169837208,1840.0,13284.446080253407,0,6,0,1,80.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1497992455220263,13284.446080253407,3,2,3_0,3_1_0,3_2_0,3_1_0 -30321,2,69.0,0.0,5,111,1000.0,0.0,0.0,0,78,0.0,0.0,1382.1742275759307,1100.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,100955,2,1,2,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1287.15911924023,1000.0,20659.121294733533,0,5,0,1,80.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053245246218696356,20659.121294733533,5,3,5,5_1,5_2,5_0_0 -30322,2,82.0,0.0,2,111,350.0,0.0,0.0,0,78,2987.1697540360015,0.0,483.76097965157567,2350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102512,2,2,3,0,2,,80.0,,11,0.0,2.0,6.0,1.0,1.0,7,5,1315.46984774205,350.0,21065.2593168103,0,5,0,1,100.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11155808550263964,21065.2593168103,5,3,5,5_1,5_2,5_0_1 -30323,2,37.0,0.0,6,111,0.0,0.0,0.0,46,33,0.0,0.0,0.0,1666.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,70.0,1,,4,102097,2,1,2,0,1,,495.0,,43,2.0,0.0,7.0,5.0,2.4,4,2,1184.1788552385,0.0,121345.03630871874,4,1,1,2,158.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01372944498332394,50560.431795299475,10,5,10,10_1,10_2,10_0_0 -30324,2,68.0,0.0,5,111,1150.0,0.0,0.0,74,74,0.0,465.827627168756,1589.5003617123202,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125664,2,1,1,0,1,,340.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1212.75233165954,1150.0,77406.99064526756,5,5,0,1,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020669967746612294,51604.660430178374,10,5,10,10_1,10_2,10_0_0 -30325,2,52.0,0.0,2,111,900.0,0.0,0.0,55,37,4779.471606457602,0.0,1243.9568048183376,4100.0,0.0,0.0,71,2,2,1,1,2,2,2,2,2,5.0,1,,2,110536,2,1,1,0,1,,400.0,,43,2.0,2.0,8.0,3.0,2.0,1,1,1266.797511824,900.0,234198.11746207313,1,1,0,1,160.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.017506545502715104,117099.05873103657,10,5,10,10_1,10_2,10_0_1 -30326,2,67.0,0.0,1,111,730.0,3620.0,0.0,72,21,0.0,0.0,1008.9871861304293,4350.0,0.0,6565.423501067765,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,112751,2,1,4,0,1,,450.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,1270.55870578259,730.0,199821.9670514292,5,5,0,1,277.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021769378333065945,133214.6447009528,10,5,10,10_1,10_2,10_1_0 -30327,2,57.0,0.0,5,111,628.0,982.0,0.0,34,35,0.0,41.40690019277831,868.0054149176844,1650.0,0.0,1781.007148632195,71,0,0,0,0,0,0,0,0,0,,2,,3,100681,2,1,0,0,1,,251.0,,43,2.0,0.0,5.0,4.0,2.5,3,3,1522.06388350944,628.0,76713.80888139886,1,1,1,2,135.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02150851357870829,30685.52355255954,8,4,8,8_0,8_2,8_0_0 -30328,2,31.0,0.0,7,111,150.0,0.0,0.0,0,38,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,125729,2,1,0,1,1,132.0,0.0,436.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2016.42967532974,150.0,30344.895065866724,0,1,2,3,38.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004943170825748764,30344.895065866724,8,4,8,8_0,8_2,8_0_0 -30329,2,56.0,0.0,7,111,210.0,0.0,0.0,0,54,0.0,0.0,290.25658779094545,210.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,5,105638,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,1566.92148214901,210.0,27180.355282267137,0,1,0,1,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007726168323377549,27180.355282267137,7,4,7,7_0,7_2,7_0_0 -30330,2,46.0,0.0,8,111,0.0,0.0,1200.0,42,43,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,31,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,106635,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1107.63493139932,0.0,47792.62602306023,1,1,1,2,118.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025108475927248543,19117.05040922409,5,3,5,5_1,5_2,5_0_0 -30331,2,55.0,0.0,6,111,480.0,0.0,0.0,54,55,0.0,0.0,663.4436292364467,655.0,301.05722573328353,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,4,129622,2,2,2,0,1,,230.0,,43,2.0,4.0,7.0,2.0,1.5,2,2,1098.40891502055,480.0,37937.73982827124,1,1,0,1,150.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01726512973532212,25291.826552180824,7,4,7,7_1,7_2,7_0_0 -30332,0,86.0,0.0,1,111,0.0,0.0,0.0,0,71,0.0,0.0,0.0,595.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,100749,2,1,0,0,1,,387.0,,11,0.0,5.0,2.0,1.0,1.0,2,2,1815.04580550451,0.0,10681.538383087089,0,5,0,1,40.0,8,6,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05570358675507919,10681.538383087089,2,1,2_0,2_0_0,2_2_0,2_1_0 -30333,1,25.0,130.0,1,111,1180.0,0.0,0.0,22,67,0.0,0.0,1630.965588539598,1180.0,0.0,0.0,41,1,2,2,1,2,2,2,2,2,6.0,1,,1,120954,2,1,1,0,1,,160.0,525.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1362.2528868507,1180.0,13164.631357680406,4,1,2,3,65.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08963410884358518,8776.42090512027,1,1,1_1,1_1_1,1_2_1,1_1_0 -30334,2,75.0,0.0,2,111,280.0,0.0,0.0,71,78,0.0,0.0,387.00878372126056,580.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107563,2,1,4,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1185.61657075088,280.0,54703.84042775609,5,5,0,1,120.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010602546283125576,36469.226951837394,9,5,9,9_1,9_2,9_0_1 -30335,2,58.0,0.0,2,111,1033.0,0.0,0.0,77,31,4113.332751307574,0.0,1427.7859770859363,3787.0,0.0,0.0,43,2,2,2,2,2,2,2,1,2,15.0,1,,2,127651,2,1,1,0,1,,530.0,,42,1.0,6.0,7.0,2.0,1.5,1,1,1291.23242653687,1033.0,314080.1234373861,6,1,1,2,280.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.012057432856794463,209386.7489582574,10,5,10,10_1,10_2,10_0_1 -30336,2,63.0,0.0,1,111,1100.0,0.0,0.0,77,74,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127070,2,1,4,0,1,,330.0,,41,0.0,1.0,6.0,2.0,1.5,3,2,1097.89992045265,1100.0,50194.969220191306,5,5,0,1,160.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021914546758154334,33463.31281346087,8,4,8,8_1,8_2,8_1_0 -30337,2,47.0,0.0,9,111,1295.0,0.0,0.0,33,34,0.0,289.84830134944815,1789.9156247108301,1575.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,117932,2,1,1,0,1,,503.0,,43,2.0,0.0,6.0,4.0,2.1,4,2,1030.81010716495,1295.0,72438.24926908394,1,1,1,2,147.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021742656895936293,34494.404413849494,9,5,9,9_1,9_2,9_0_0 -30338,2,75.0,0.0,7,111,1503.0,0.0,0.0,75,75,0.0,0.0,2077.4078640466237,1503.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,126593,2,1,2,0,1,,312.0,,41,0.0,2.0,4.0,2.0,1.5,4,2,1103.14873196055,1503.0,68268.75896726934,5,5,0,1,110.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022015926797799207,45512.505978179564,10,5,10,10_1,10_2,10_0_0 -30339,2,44.0,0.0,8,111,547.0,0.0,0.0,38,53,3584.6037048432017,0.0,756.049302484034,2947.0,0.0,0.0,20,2,2,2,1,1,1,1,2,2,15.0,1,2002.0,6,128029,2,1,3,0,2,,364.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,1060.58492166978,547.0,92731.7137321288,1,1,1,2,90.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.03177985051061287,44157.95892006133,10,5,10,10_1,10_2,10_0_0 -30340,2,51.0,0.0,7,111,410.0,0.0,0.0,56,62,0.0,0.0,566.6914333061316,3110.0,4644.882911313518,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,106690,2,1,2,0,1,,222.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,998.593479721934,410.0,46510.33264177836,1,1,1,2,89.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06686686212186778,31006.888427852242,8,4,8,8_1,8_2,8_0_0 -30341,2,64.0,0.0,5,111,727.0,0.0,0.0,75,74,1829.641474347051,0.0,1004.8406634477016,2042.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117093,2,1,2,0,1,,258.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1036.92861708688,727.0,46076.54013853087,5,5,0,1,120.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04431756364216257,30717.69342568725,8,4,8,8_1,8_2,8_0_0 -30342,2,79.0,0.0,7,111,798.0,0.0,0.0,77,75,0.0,540.360047515757,1102.9750336055927,1440.0,206.439240502823,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,129610,2,1,2,0,1,,270.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1079.42066013673,798.0,61099.16382101635,5,5,0,1,85.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02356824398151062,40732.77588067757,9,5,9,9_1,9_2,9_0_0 -30343,2,36.0,0.0,6,111,980.0,0.0,0.0,52,53,0.0,724.6207533736205,1354.530743024412,1730.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,4,119222,2,2,1,0,1,,472.0,,43,2.0,0.0,6.0,4.0,2.1,2,1,1060.58492166978,980.0,50256.915564568815,1,1,0,1,110.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034423123276981445,23931.864554556578,6,3,6,6_1,6_2,6_0_0 -30344,2,68.0,0.0,5,111,950.0,0.0,0.0,77,72,0.0,0.0,1313.065516197134,1109.0,273.53199366624045,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,116369,2,1,3,0,1,,386.0,,41,0.0,2.0,5.0,2.0,1.5,4,4,1085.54427481306,950.0,31591.447271810604,5,5,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035104437934047196,21060.964847873736,5,3,5,5_1,5_2,5_0_0 -30345,2,77.0,0.0,8,111,655.0,1500.0,0.0,72,72,0.0,0.0,905.3241190622346,2155.0,0.0,2720.4793512711735,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,131012,2,1,2,0,1,,340.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1167.13250989749,655.0,31086.175987088995,5,5,0,1,110.0,5,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06932341890154116,20724.117324725998,5,3,5,5_1,5_2,5_0_0 -30346,2,50.0,0.0,8,111,451.0,1045.0,0.0,52,62,0.0,0.0,623.3605766367447,1496.0,0.0,1895.267281385584,71,2,2,2,2,1,2,2,2,2,20.0,1,1999.0,6,121527,2,2,2,0,1,,466.0,468.0,43,2.0,3.0,4.0,3.0,2.0,2,2,1044.61528606129,451.0,40758.450556340904,1,1,2,3,84.0,5,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03670404491780326,20379.225278170452,5,3,5,5_1,5_2,5_0_0 -30347,1,24.0,35.0,9,111,80.0,700.0,0.0,62,64,0.0,0.0,110.57393820607444,780.0,0.0,1269.5570305932142,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,118716,2,1,1,0,1,,432.0,483.0,43,2.0,0.0,3.0,4.0,2.1,1,1,973.516063585544,80.0,43333.84473991806,1,1,2,3,73.0,5,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01799978757207951,20635.16416186574,5,3,5,5_1,5_2,5_0_0 -30348,2,32.0,0.0,9,111,720.0,740.0,0.0,52,62,0.0,0.0,995.16544385467,1460.0,0.0,1342.1031466271122,71,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,115928,2,1,1,0,2,,457.0,436.0,43,2.0,0.0,4.0,4.0,2.1,1,1,985.984215231428,720.0,50151.01369989381,1,1,2,3,82.0,5,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02911207356119885,23881.435095187528,6,3,6,6_1,6_2,6_0_0 -30349,2,61.0,0.0,5,111,20.0,0.0,0.0,0,75,0.0,0.0,27.64348455151861,20.0,0.0,0.0,70,2,1,2,1,1,2,2,2,0,,2,,3,129263,1,3,0,1,1,214.0,174.0,311.0,11,0.0,1.0,1.0,1.0,1.0,3,2,1908.5615626445,20.0,25732.6046186252,0,5,2,3,35.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0007772240819152853,25732.6046186252,7,4,7,7_0,7_2,7_0_0 -30350,2,52.0,0.0,7,111,1265.0,0.0,0.0,65,52,0.0,0.0,1748.4503978835521,1355.0,154.82943037711726,0.0,30,0,0,0,0,0,0,0,0,2,30.0,1,,5,132162,2,1,2,0,1,,371.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,1026.93201177881,1265.0,35231.467456160666,1,1,0,1,102.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038459936466911517,19573.037475644815,5,3,5,5_1,5_2,5_0_0 -30351,2,80.0,0.0,2,111,1050.0,0.0,0.0,0,78,0.0,0.0,1451.2829389547271,1140.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104520,2,1,3,0,1,,144.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1215.57445183164,1050.0,11508.560055340635,0,5,0,1,70.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09905670166538118,11508.560055340635,2,1,2_0,2_1_0,2_2_0,2_0_1 -30352,2,53.0,0.0,1,111,1847.0,0.0,0.0,55,62,0.0,0.0,2552.8757983327437,2087.0,412.878481005646,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,111897,2,1,1,0,1,,579.0,,43,3.0,4.0,6.0,3.0,2.0,5,3,1195.62792897778,1847.0,38257.37472937934,4,1,0,1,120.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05455157377532522,19128.68736468967,5,3,5,5_1,5_2,5_1_0 -30353,2,67.0,0.0,6,111,1092.0,0.0,0.0,75,75,0.0,745.3242034700096,1509.3342565129162,1962.0,258.04905062852873,0.0,50,2,2,1,2,1,2,2,2,0,,1,,4,122212,2,1,2,0,1,,270.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1054.06855479566,1092.0,47812.50716050616,5,5,0,1,120.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04103528797211122,31875.004773670775,8,4,8,8_1,8_2,8_0_0 -30354,2,65.0,0.0,7,111,1450.0,0.0,0.0,0,72,0.0,0.0,2004.1526299850993,1510.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,105208,2,1,2,0,1,,169.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1122.71616460916,1450.0,42628.53810806032,0,5,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03542227969845593,42628.53810806032,9,5,9,9_1,9_2,9_0_0 -30355,2,67.0,0.0,6,111,1530.0,0.0,0.0,54,72,0.0,527.9379774579235,2114.7265681911736,2110.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,111259,2,1,3,0,1,,304.0,,41,0.0,3.0,6.0,2.0,1.5,4,4,1076.37142871891,1530.0,41319.30754039516,5,5,0,1,172.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05106571541493507,27546.205026930107,7,4,7,7_1,7_2,7_0_0 -30356,2,52.0,0.0,7,111,4000.0,0.0,0.0,54,22,0.0,310.55175144583734,5528.696910303723,4600.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,117923,2,1,1,0,1,,600.0,,43,2.0,0.0,10.0,6.0,3.3,3,2,1072.13237435687,4000.0,1165283.2087528787,1,1,0,1,350.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003947538216845207,353116.1238645087,10,5,10,10_1,10_2,10_0_0 -30358,2,55.0,0.0,6,111,1185.0,0.0,0.0,90,22,0.0,103.51725048194578,1637.8764596774777,1315.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,1,8.0,1,,4,114785,2,1,2,0,1,,245.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1054.06855479566,1185.0,102178.03119930669,1,1,0,1,95.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01286969404837116,68118.68746620446,10,5,10,10_1,10_2,10_0_0 -30359,2,52.0,0.0,1,111,700.0,0.0,0.0,0,42,0.0,0.0,967.5219593031513,750.0,86.01635020950958,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,115426,2,1,3,0,1,,221.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,1082.04183398212,700.0,27730.34998843752,0,1,1,2,70.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027046178656696396,27730.34998843752,7,4,7,7_1,7_2,7_1_0 -30360,0,49.0,0.0,6,111,483.0,0.0,0.0,0,52,0.0,0.0,667.5901519191744,1323.0,1445.074683519761,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,101346,2,1,2,0,1,780.0,170.0,,22,2.0,0.0,3.0,2.0,1.5,3,2,1072.59607730444,483.0,51104.0,0,1,5,0,50.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025888384470882906,34069.333333333336,9,5,9,9_1,9_2,9_0_0 -30361,2,66.0,0.0,6,111,400.0,0.0,0.0,75,74,0.0,0.0,552.8696910303722,2800.0,4128.78481005646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,127332,2,2,3,0,1,,340.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1006.83472085347,400.0,40982.81815811009,5,5,0,1,125.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0683213142931682,27321.878772073393,7,4,7,7_1,7_2,7_0_0 -30362,2,32.0,0.0,9,111,250.0,0.0,0.0,37,65,0.0,0.0,345.54355689398267,306.0,96.33831223465073,0.0,71,2,2,2,2,2,2,2,1,2,30.0,1,2007.0,6,119325,1,3,3,0,1,1686.0,279.0,450.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1005.28271610453,250.0,38776.37496585169,1,1,2,3,74.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.007891402955265367,21542.43053658427,6,3,6,6_1,6_2,6_0_0 -30363,2,58.0,0.0,8,111,4000.0,0.0,0.0,22,23,0.0,0.0,5528.696910303723,4035.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,108216,2,1,2,0,1,,500.0,,43,3.0,1.0,8.0,4.0,2.3,5,4,1056.2565359724,4000.0,118005.77296173619,1,1,1,2,250.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034193242404406465,51306.85780945052,10,5,10,10_1,10_2,10_0_0 -30364,2,65.0,0.0,9,111,580.0,0.0,0.0,0,74,0.0,289.84830134944815,801.6610519940398,860.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,106963,2,1,1,0,1,,152.0,,11,0.0,2.0,5.0,1.0,1.0,7,6,1118.99350744569,580.0,35045.965737078746,0,5,0,1,110.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024539201072439478,35045.965737078746,9,5,9,9_1,9_2,9_0_0 -30365,2,66.0,0.0,6,111,1552.0,0.0,0.0,75,77,0.0,310.55175144583734,2145.1344011978445,1852.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,132909,2,1,1,0,1,,436.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,1144.29802338254,1552.0,50937.71799071377,5,5,0,1,122.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03635812661135762,25468.858995356884,7,4,7,7_1,7_2,7_0_0 -30366,2,45.0,0.0,9,111,1200.0,0.0,0.0,21,38,0.0,207.03450096389156,1658.6090730911167,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,105885,2,1,1,0,1,,356.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1022.44078178348,1200.0,81962.12556158658,1,1,1,2,150.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01708106018978285,35635.70676590721,9,5,9,9_1,9_2,9_0_0 -30367,2,54.0,0.0,6,111,1400.0,0.0,0.0,75,43,0.0,217.38622601208613,1935.0439186063027,1610.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,117330,2,1,2,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,5,5,1010.59772292641,1400.0,36274.383300116395,7,1,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04438393856842864,24182.922200077595,7,4,7,7_1,7_2,7_0_0 -30368,2,62.0,0.0,6,111,128.1,0.0,0.0,0,22,0.0,82.81380038555662,177.0565185524767,208.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,105886,2,1,2,0,1,,225.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1138.63747569166,128.1,43605.8728147887,0,5,0,1,180.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00476999969438653,43605.8728147887,10,5,10,10_1,10_2,10_0_0 -30369,2,74.0,0.0,9,111,674.0,0.0,0.0,46,46,1429.3607273062266,590.048327747091,931.5854293861772,2261.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,110959,2,1,1,0,1,,470.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1044.93241553149,674.0,54694.585217613945,5,5,1,2,130.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041338644236977654,36463.05681174263,9,5,9,9_1,9_2,9_0_0 -30370,2,26.0,0.0,1,111,365.0,0.0,0.0,54,55,1344.2263893162005,141.8186331602657,504.49359306521467,1437.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,121838,2,1,1,0,1,,162.0,,43,2.0,0.0,4.0,2.0,1.5,4,3,1138.74885502465,365.0,35475.19566746917,1,1,1,2,92.0,5,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04050717615400588,23650.130444979444,6,3,6,6_1,6_2,6_1_0 -30371,2,70.0,0.0,2,111,650.0,0.0,0.0,71,71,0.0,0.0,898.4132479243549,770.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,110986,2,1,1,0,1,,380.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1048.42534735361,650.0,24672.414789860795,5,5,0,1,110.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03120894353301947,16448.276526573864,4,2,4_0,4_1_0,4_2_0,4_0_1 -30372,2,57.0,0.0,1,111,1200.0,0.0,0.0,62,69,0.0,0.0,1658.6090730911167,1326.0,216.76120252796414,0.0,50,2,2,2,1,1,2,2,2,0,,5,,1,125893,1,2,4,0,1,,225.0,,43,2.0,1.0,7.0,2.0,1.5,5,5,1071.45025485339,1200.0,18016.183415272844,4,4,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.07360049403559642,12010.78894351523,2,1,2_0,2_1_0,2_2_0,2_1_0 -30373,2,53.0,0.0,7,111,1100.0,0.0,0.0,0,34,0.0,155.27587572291867,1520.3916503335236,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,5,122724,2,1,2,0,1,,140.0,,22,1.0,2.0,8.0,2.0,1.5,2,2,988.869480250997,1100.0,60595.30405444978,0,1,0,1,180.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020628661238778073,40396.86936963318,9,5,9,9_1,9_2,9_0_0 -30374,2,52.0,0.0,1,111,1350.0,0.0,0.0,11,54,0.0,724.6207533736205,1865.9352072275062,2180.0,223.64251054472493,0.0,71,1,2,2,1,1,2,2,2,2,25.0,1,,1,119061,2,1,3,0,1,,270.0,,42,1.0,0.0,3.0,3.0,2.0,4,3,1212.86479751519,1350.0,36075.405160716095,5,1,1,2,100.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06042898174776112,18037.702580358047,4,2,4_0,4_1_0,4_2_0,4_1_0 -30375,1,42.0,231.0,2,111,1152.0,0.0,0.0,48,52,2403.178067121963,0.0,1592.264710167472,2851.0,154.82943037711726,0.0,71,1,2,1,1,2,2,2,2,2,45.0,1,,2,111263,2,3,4,1,1,693.0,500.0,511.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,4,4,1207.37116734017,1152.0,43875.486167622395,1,1,2,3,98.0,5,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.06497933696068935,16875.186987547077,4,2,4_1,4_1_1,4_2_1,4_0_1 -30376,2,79.0,0.0,2,111,200.0,0.0,0.0,0,77,1810.2248709458167,155.27587572291867,276.4348455151861,1626.0,110.10092826817227,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102320,2,1,2,0,1,,62.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1058.94436509459,200.0,11702.892363406061,0,6,0,1,85.0,5,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13894001153803331,11702.892363406061,2,1,2_0,2_1_0,2_2_0,2_0_1 -30377,2,48.0,0.0,8,111,770.0,0.0,0.0,37,21,3435.2452171414016,0.0,1064.2741552334664,3150.0,137.62616033521533,0.0,70,0,0,0,0,0,0,0,0,0,,1,1999.0,6,113358,2,1,2,0,1,,324.0,,43,2.0,1.0,7.0,3.0,2.0,4,4,1130.84185580689,770.0,49680.45820706117,1,1,1,2,155.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06340521230442848,24840.229103530586,7,4,7,7_1,7_2,7_0_0 -30378,2,71.0,0.0,6,111,560.0,0.0,0.0,0,74,0.0,0.0,774.0175674425211,610.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,103638,2,1,3,0,1,,110.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1133.20825419777,560.0,33057.25991512478,0,5,0,1,90.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018452830076243102,33057.25991512478,8,4,8,8_1,8_2,8_0_0 -30379,0,73.0,0.0,2,111,800.0,0.0,0.0,75,74,0.0,310.55175144583734,1105.7393820607444,1360.0,447.28502108944986,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114524,2,2,2,0,1,,171.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1135.56355197027,800.0,58276.1253291515,5,5,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023337172681240123,38850.75021943433,9,5,9,9_1,9_2,9_0_1 -30380,2,44.0,0.0,9,111,550.0,0.0,0.0,52,47,746.7924385090004,0.0,760.1958251667618,1085.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,112968,2,1,1,0,1,,180.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,986.742920497382,550.0,77692.78646192435,1,1,1,2,142.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013965260475394797,31077.11458476974,8,4,8,8_1,8_2,8_0_0 -30381,2,65.0,0.0,1,111,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1320.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,122939,2,1,3,0,2,,230.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1111.07758767291,1200.0,22002.312946152866,0,5,0,1,90.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05999369262815634,22002.312946152866,6,3,6,6_1,6_2,6_1_0 -30382,2,56.0,0.0,6,400,580.0,0.0,0.0,55,38,3136.5282417378016,20.703450096389155,801.6610519940398,2760.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,103142,2,1,2,0,1,,1200.0,,43,2.0,0.0,3.0,3.0,2.0,2,1,2420.8104713815,580.0,60866.80559320016,1,1,0,1,98.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04534491293080671,30433.40279660008,8,4,8,8_1,8_0,8_0_0 -30383,2,69.0,0.0,9,400,2474.0,0.0,0.0,72,37,0.0,0.0,3419.4990390228522,2564.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,130407,2,1,1,0,1,,650.0,,42,1.0,4.0,4.0,2.0,1.5,3,3,2812.24913925187,2474.0,75000.07327214237,5,4,0,1,127.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03418663326762853,50000.04884809491,10,5,10,10_1,10_0,10_0_0 -30384,1,40.0,269.0,2,221,900.0,0.0,0.0,0,67,0.0,0.0,1243.9568048183376,1028.0,220.20185653634454,0.0,71,1,1,2,2,1,2,2,1,2,20.0,2,,2,116905,1,3,0,1,1,1270.0,450.0,268.0,32,1.0,1.0,5.0,5.0,2.8,2,2,2209.02321470969,900.0,30043.69394840116,0,1,2,3,89.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.034216831051652595,10729.890695857557,2,1,2_1,2_0_1,2_1_1,2_0_1 -30385,2,30.0,0.0,2,221,0.0,0.0,0.0,54,68,0.0,0.0,0.0,887.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115043,2,1,0,0,1,,360.0,296.0,43,2.0,0.0,3.0,3.0,1.8,1,1,2606.82983921823,0.0,28487.0,4,1,2,3,65.0,1,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03113700986414856,15826.111111111111,3,2,3_0,3_0_0,3_1_0,3_0_1 -30386,2,57.0,0.0,2,221,170.0,999.0,0.0,0,46,0.0,0.0,234.9696186879082,1169.0,0.0,1811.8392479466015,44,0,0,0,0,0,0,0,0,2,75.0,2,,2,133681,2,1,0,0,1,,90.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,2824.76531004084,170.0,20776.0,0,1,1,2,72.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.056266846361185986,20776.0,5,3,5,5_0,5_1,5_0_1 -30387,2,68.0,0.0,2,221,300.0,7721.0,0.0,0,77,0.0,0.0,414.65226827277917,8021.0,0.0,14003.214047443153,71,2,1,2,1,1,2,2,2,0,,2,,2,117020,2,3,0,1,1,760.0,60.0,206.0,11,0.0,2.0,2.0,1.0,1.0,3,2,2465.23922830675,300.0,23088.755935400193,0,5,2,3,47.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.3473985355660512,23088.755935400193,6,3,6,6_0,6_1,6_0_1 -30388,2,52.0,0.0,2,221,1040.0,2857.0,0.0,54,48,0.0,0.0,1437.4611966789678,3897.0,0.0,5181.606337721161,20,0,0,0,0,0,0,0,0,1,12.0,1,,2,103397,2,1,1,0,1,,173.0,,43,4.0,0.0,8.0,4.0,2.5,2,2,1955.03792420842,1040.0,80377.31382037884,1,1,1,2,180.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04848382976207343,32150.925528151536,8,4,8,8_1,8_1,8_0_1 -30389,1,36.0,227.0,9,221,0.0,0.0,0.0,85,68,0.0,0.0,0.0,690.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,2,2007.0,6,117689,2,1,0,0,1,,130.0,223.0,42,1.0,0.0,2.0,2.0,1.5,2,2,2847.36049070671,0.0,10877.874945464944,7,1,2,3,47.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06343150693120125,7251.916630309963,1,1,1_1,1_0_1,1_1_1,1_0_0 -30390,2,47.0,0.0,2,221,532.0,695.0,0.0,55,46,0.0,0.0,735.3166890703951,1227.0,0.0,1260.488766088977,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,122663,2,2,0,0,1,,200.0,274.0,43,2.0,0.0,3.0,4.0,2.5,1,1,2023.10138374098,532.0,33206.920177628475,1,1,2,3,56.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03695012947411578,13282.76807105139,3,2,3_0,3_0_0,3_1_0,3_0_1 -30391,1,54.0,255.0,2,221,245.0,0.0,0.0,0,52,0.0,0.0,338.632685756103,284.0,67.09275316341747,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,121946,1,1,0,1,2,1014.0,0.0,378.0,12,1.0,0.0,2.0,1.0,1.0,5,3,2838.17358298765,245.0,6610.383058302543,0,4,2,3,51.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0429627144894879,6610.383058302543,1,1,1_1,1_0_1,1_1_1,1_0_1 -30392,2,85.0,0.0,2,221,0.0,0.0,0.0,72,72,0.0,0.0,0.0,500.0,189.2359704609211,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102593,2,1,0,1,1,,131.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,2777.68428711085,0.0,20013.358905162935,5,5,0,1,80.0,1,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02498331251487289,13342.239270108623,3,2,3_0,3_0_0,3_1_0,3_0_1 -30393,2,66.0,0.0,2,221,441.0,927.0,0.0,77,78,0.0,0.0,609.5388343609853,1368.0,0.0,1681.256239085585,71,2,2,2,2,1,2,2,2,0,,2,,2,128150,1,3,0,0,1,79.0,100.0,311.0,41,0.0,1.0,3.0,2.0,1.5,3,2,2527.76663031964,441.0,23706.684366549296,5,5,2,3,72.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.05770524375522884,15804.456244366198,3,2,3_0,3_0_0,3_1_0,3_0_1 -30394,2,47.0,0.0,2,221,210.0,1824.0,0.0,52,38,0.0,0.0,290.25658779094545,2034.0,0.0,3308.102891145747,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,108856,1,2,2,0,1,,211.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,1839.22844955158,210.0,48622.225111243155,1,1,0,1,110.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04183272146320733,23153.440529163407,6,3,6,6_1,6_1,6_0_1 -30396,2,63.0,0.0,7,221,1068.0,0.0,0.0,77,78,0.0,0.0,1476.1620750510938,1524.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111286,2,1,2,0,1,,179.0,,41,0.0,2.0,6.0,2.0,1.5,5,2,1862.25304077045,1068.0,27115.13991234516,6,5,0,1,108.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05620476253954874,18076.75994156344,4,2,4_0,4_1_0,4_1_0,4_0_0 -30397,2,63.0,0.0,5,221,1575.0,0.0,0.0,75,74,0.0,0.0,2176.924408432091,1645.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,132903,2,1,2,0,1,,176.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1826.99878307066,1575.0,65043.969782585526,5,5,0,1,92.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025290584284731375,43362.646521723684,10,5,10,10_1,10_1,10_0_0 -30398,1,21.0,290.0,1,221,0.0,0.0,0.0,63,56,0.0,0.0,0.0,432.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,131975,2,1,0,0,1,,210.0,360.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2614.88977471012,0.0,9838.579865294372,4,4,2,3,60.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.043908776054548446,6559.053243529582,1,1,1_1,1_0_1,1_1_1,1_1_0 -30399,2,28.0,0.0,2,221,0.0,0.0,0.0,56,68,0.0,0.0,0.0,1158.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,108305,1,3,0,0,1,,120.0,180.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2598.11227585193,0.0,27337.0000575113,4,1,2,3,42.0,1,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04236017110742991,18224.666705007534,4,2,4_0,4_0_0,4_1_0,4_0_1 -30400,2,83.0,0.0,2,221,850.0,0.0,0.0,0,78,0.0,0.0,1174.848093439541,985.0,232.24414556567586,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,125548,2,1,0,0,1,,96.0,229.0,11,0.0,3.0,3.0,1.0,1.0,2,2,2487.13496532423,850.0,24738.582426706405,0,5,2,3,63.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03981634771993437,24738.582426706405,7,4,7,7_0,7_1,7_0_1 -30401,2,38.0,0.0,7,221,900.0,950.0,0.0,55,48,0.0,0.0,1243.9568048183376,1850.0,0.0,1722.9702558050765,10,0,0,0,0,0,0,0,0,2,3.0,2,,5,108512,2,1,0,0,2,82.0,450.0,419.0,43,3.0,1.0,4.0,6.0,3.0999999999999996,3,2,2343.36609860926,900.0,51416.98618779128,1,1,2,3,95.0,1,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03598032745916317,16586.124576706865,4,2,4_0,4_0_0,4_1_0,4_0_0 -30402,1,61.0,151.0,6,221,310.0,0.0,0.0,0,77,0.0,0.0,428.47401054853844,310.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,104838,1,1,0,0,1,,95.0,324.0,11,0.0,1.0,3.0,1.0,1.0,4,3,2370.73765432433,310.0,10630.0,0,5,2,3,80.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02916274694261524,10630.0,2,1,2_1,2_0_1,2_1_1,2_0_0 -30403,2,55.0,0.0,2,221,300.0,0.0,0.0,55,67,3435.2452171414016,0.0,414.65226827277917,2750.0,258.04905062852873,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,104636,1,1,0,1,2,,50.0,,43,2.0,1.0,6.0,2.0,1.5,3,3,2535.31381566529,300.0,40228.820168982165,1,1,0,1,122.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06835895232444193,26819.21344598811,7,4,7,7_0,7_1,7_0_1 -30404,2,26.0,0.0,2,221,360.0,0.0,0.0,0,55,1194.8679016144006,0.0,497.582721927335,1340.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103975,2,1,2,0,1,,150.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,2081.96784053541,360.0,11334.025522789832,0,1,1,2,120.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11822807327419566,7556.017015193222,1,1,1_0,1_1_0,1_1_0,1_0_1 -30405,2,28.0,0.0,2,221,425.0,84.0,0.0,0,55,0.0,0.0,587.4240467197704,509.0,0.0,152.3468436711857,44,0,0,0,0,0,0,0,0,1,2.0,2,,2,106777,2,1,0,0,1,,140.0,182.0,12,1.0,0.0,2.0,1.0,1.0,3,2,3302.56634535165,425.0,13005.230128608304,0,1,2,3,42.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039138100207879084,13005.230128608304,2,1,2_0,2_0_0,2_1_0,2_0_1 -30406,2,48.0,0.0,2,221,282.0,1300.0,0.0,55,62,0.0,0.0,389.77313217641245,1582.0,0.0,2357.7487711016834,31,1,2,2,2,1,2,2,2,2,4.0,1,,2,107798,1,3,4,0,1,,230.0,294.0,43,2.0,1.0,3.0,3.0,2.0,3,3,1881.37504083747,282.0,43637.86029252519,1,1,2,3,75.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03625292325047806,21818.930146262595,6,3,6,6_1,6_1,6_0_1 -30407,2,51.0,0.0,7,221,660.0,1000.0,0.0,63,53,0.0,0.0,912.2349902001142,1722.0,106.66027425979189,1813.6529008474488,60,1,2,2,1,2,2,2,2,2,30.0,2,,5,123252,2,1,0,0,1,601.0,600.0,463.0,43,4.0,1.0,5.0,4.0,2.5,2,2,2263.04630106443,660.0,65314.75045537614,1,1,2,3,90.0,1,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.026364641799810476,26125.900182150457,7,4,7,7_0,7_1,7_0_0 -30408,2,67.0,0.0,2,221,221.0,0.0,0.0,0,78,0.0,0.0,305.46050429428067,271.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108927,2,1,0,1,1,646.0,35.0,204.0,11,0.0,0.0,2.0,1.0,1.0,2,2,2628.14021772459,221.0,13929.62081487949,0,5,2,3,49.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019454944510084605,13929.62081487949,3,2,3_0,3_0_0,3_1_0,3_0_1 -30409,0,71.0,0.0,5,221,600.0,0.0,0.0,78,78,0.0,207.03450096389156,829.3045365455583,980.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,126813,2,1,0,0,1,,100.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,2609.74142998101,600.0,28268.87447321946,5,5,0,1,90.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034667103599345765,18845.91631547964,5,3,5,5_0,5_1,5_0_0 -30410,2,41.0,0.0,1,221,1000.0,0.0,0.0,0,43,1941.6603401234008,0.0,1382.1742275759307,2510.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,117850,2,1,1,0,1,,600.0,,32,1.0,0.0,7.0,5.0,2.4,3,2,1940.74225669949,1000.0,43647.46064835086,0,1,1,2,140.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05750620912914061,18186.44193681286,4,2,4_0,4_1_0,4_1_0,4_1_0 -30411,2,49.0,0.0,7,221,1200.0,0.0,0.0,43,38,0.0,124.22070057833493,1658.6090730911167,1410.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,2,7.0,1,,5,117558,2,1,2,0,1,,180.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,2035.16178363332,1200.0,61864.09459556477,1,1,0,1,150.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02279189583582926,41242.729730376515,9,5,9,9_1,9_1,9_0_0 -30412,2,70.0,0.0,5,221,702.0,0.0,0.0,78,75,0.0,51.75862524097289,970.2863077583032,914.0,278.692974678811,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,129076,2,2,1,0,1,,110.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1874.60082144557,702.0,27957.868933312646,5,5,0,1,120.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03269204824517012,18638.5792888751,4,2,4_0,4_1_0,4_1_0,4_0_0 -30413,2,61.0,0.0,2,221,320.0,0.0,0.0,0,75,0.0,0.0,442.2957528242978,390.0,120.42289029331342,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,120204,1,2,0,1,2,366.0,0.0,450.0,11,0.0,2.0,3.0,1.0,1.0,2,2,3163.66624175871,320.0,32688.52659138518,0,5,2,3,60.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011930791646717464,32688.52659138518,8,4,8,8_0,8_1,8_0_1 -30414,2,50.0,0.0,1,221,900.0,0.0,0.0,34,34,0.0,1407.8346065544627,1243.9568048183376,2350.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,113622,2,2,2,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,1946.61444313249,900.0,89850.50223769678,1,1,0,1,140.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02615455608454081,35940.20089507871,9,5,9,9_1,9_1,9_1_0 -30415,1,84.0,117.0,2,221,250.0,897.0,0.0,0,77,0.0,0.0,345.54355689398267,1147.0,0.0,1626.8466520601617,71,2,2,2,2,1,2,2,2,0,,2,,2,112156,1,3,0,0,1,,50.0,268.0,11,0.0,4.0,4.0,1.0,1.0,1,1,2872.79694981354,250.0,14815.797117751716,0,5,2,3,85.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.07741736680679226,14815.797117751716,3,2,3_1,3_0_1,3_1_1,3_0_1 -30416,1,71.0,154.0,5,221,0.0,0.0,0.0,0,74,0.0,0.0,0.0,794.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,128534,1,2,0,0,2,,69.0,475.0,11,0.0,0.0,2.0,1.0,1.0,3,2,2725.59857511698,0.0,8911.143590961925,0,5,2,3,40.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08910191962402107,8911.143590961925,1,1,1_1,1_0_1,1_1_1,1_0_0 -30417,2,68.0,0.0,1,221,390.0,0.0,0.0,86,78,1344.2263893162005,0.0,539.0479487546129,1385.0,163.4310653980682,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128103,2,1,0,1,2,936.0,90.0,450.0,41,0.0,2.0,3.0,2.0,1.5,2,2,3125.25009157924,390.0,22122.04186267537,5,5,3,4,45.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06260724071482715,14748.027908450247,3,2,3_0,3_0_0,3_1_0,3_1_0 -30418,2,60.0,0.0,1,221,1400.0,0.0,0.0,75,44,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,110218,2,1,0,0,1,,327.0,677.0,42,1.0,4.0,4.0,2.0,1.5,5,5,2749.78187145754,1400.0,64836.5424332019,6,1,2,3,71.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021592761542495197,43224.3616221346,9,5,9,9_0,9_1,9_1_0 -30419,2,29.0,0.0,2,221,1194.0,0.0,0.0,53,53,0.0,248.44140115666985,1650.3160277256611,1434.0,0.0,0.0,50,2,2,2,2,1,1,2,2,2,40.0,2,,2,115945,1,2,0,0,1,,0.0,560.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2846.9848871359,1194.0,38132.0522221448,1,1,2,3,60.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.03760615850534316,25421.36814809653,7,4,7,7_0,7_1,7_0_1 -30420,2,81.0,0.0,1,221,250.0,700.0,0.0,0,78,0.0,0.0,345.54355689398267,950.0,0.0,1269.5570305932142,10,0,0,0,0,0,0,0,0,0,,2,,1,121426,2,1,0,1,1,,48.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,3150.1057846669,250.0,20916.07071344164,0,5,0,1,35.0,1,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04541962077941751,20916.07071344164,5,3,5,5_0,5_1,5_1_0 -30421,2,64.0,0.0,2,221,287.0,872.0,0.0,52,78,0.0,0.0,396.68400331429206,1279.0,206.439240502823,1581.5053295389755,20,0,0,0,0,0,0,0,0,0,,2,,2,114455,1,3,0,1,2,672.0,148.0,208.0,42,1.0,3.0,3.0,2.0,1.5,4,4,2484.20507733943,287.0,33696.46174122044,1,5,2,3,64.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03795650741678365,22464.307827480294,6,3,6,6_0,6_1,6_0_1 -30422,1,91.0,197.0,1,221,300.0,936.0,0.0,0,77,0.0,0.0,414.65226827277917,1236.0,0.0,1697.5791151932121,41,0,0,0,0,0,0,0,0,0,,2,,1,122349,2,2,0,0,1,,108.0,266.0,11,0.0,3.0,4.0,1.0,1.0,3,2,2902.42689358097,300.0,11400.769634702396,0,6,2,3,75.0,1,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10841373342355623,11400.769634702396,2,1,2_1,2_0_1,2_1_1,2_1_0 -30423,2,37.0,0.0,1,221,240.0,1042.0,0.0,0,63,0.0,0.0,331.72181461822333,1342.0,103.2196202514115,1889.8263226830418,71,2,2,2,2,1,2,2,2,2,20.0,2,,1,107177,2,2,0,0,1,,116.0,241.0,32,1.0,1.0,3.0,2.0,1.3,4,3,2277.89207626533,240.0,18807.409868973435,0,1,2,3,51.0,1,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.07135485478060943,14467.238360748795,3,2,3_0,3_0_0,3_1_0,3_1_0 -30424,2,64.0,0.0,2,221,105.0,757.0,0.0,0,75,0.0,0.0,145.12829389547272,922.0,103.2196202514115,1372.9352459415188,41,0,0,0,0,0,0,0,0,0,,8,,2,105426,2,2,0,1,1,825.0,60.0,134.0,11,0.0,3.0,3.0,1.0,1.0,2,2,2680.38601718124,105.0,20420.595572501392,0,5,2,3,65.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04515049508358002,20420.595572501392,5,3,5,5_0,5_1,5_0_1 -30425,2,49.0,0.0,5,221,240.0,941.0,0.0,0,62,0.0,0.0,331.72181461822333,1256.0,129.02452531426437,1706.6473796974494,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,124763,2,1,0,1,1,940.0,55.0,165.0,12,1.0,2.0,4.0,1.0,1.0,2,2,2542.47940869862,240.0,13837.507457144457,0,1,2,3,90.0,1,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09076779209622131,13837.507457144457,3,2,3_0,3_0_0,3_1_0,3_0_0 -30426,2,34.0,0.0,9,221,200.0,365.0,0.0,0,47,0.0,0.0,276.4348455151861,565.0,0.0,661.9833088093188,71,0,0,0,0,0,0,0,0,3,15.0,8,2007.0,6,124653,2,1,0,0,1,,30.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2675.45586888804,200.0,24532.851129674153,0,1,1,2,54.0,1,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023030343966690202,24532.851129674153,7,4,7,7_0,7_1,7_0_0 -30427,0,53.0,0.0,1,221,610.0,0.0,0.0,11,11,1583.1999696390808,0.0,843.1262788213177,1790.0,206.439240502823,0.0,71,2,2,2,1,1,2,2,2,2,10.0,1,,1,129637,1,1,2,0,2,,94.0,,43,3.0,1.0,5.0,5.0,3.0,2,2,2019.75387136573,610.0,12825.64058126985,1,1,5,0,100.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.13956417916576097,4275.21352708995,1,1,1_0,1_1_0,1_1_0,1_1_0 -30428,2,56.0,0.0,7,221,1080.0,0.0,0.0,46,46,0.0,0.0,1492.748165782005,1140.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,125822,2,1,2,0,1,,150.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,2049.92448818569,1080.0,77529.14536678669,1,1,0,1,118.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01470414764159613,38764.572683393344,9,5,9,9_1,9_1,9_0_0 -30429,2,52.0,0.0,1,111,350.0,0.0,0.0,0,85,0.0,0.0,483.76097965157567,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,121407,2,1,0,0,1,,80.0,595.0,31,1.0,1.0,2.0,2.0,1.5,1,1,2015.92187252551,350.0,25229.435060957574,0,7,2,3,47.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013872684788793518,16819.623373971717,4,2,4_0,4_0_0,4_2_0,4_1_0 -30430,2,67.0,0.0,5,111,700.0,0.0,0.0,77,75,0.0,807.4345537591771,967.5219593031513,1585.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118938,2,1,2,0,1,,310.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1346.63896982964,700.0,36616.56639209943,5,5,0,1,89.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04328641803896685,24411.044261399617,7,4,7,7_1,7_2,7_0_0 -30431,2,39.0,0.0,8,111,450.0,1200.0,0.0,31,38,0.0,0.0,621.9784024091688,1650.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,116069,2,2,3,0,1,,400.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1253.76609448808,450.0,142469.5885414462,1,1,1,2,130.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011581419002413938,59362.328558935915,10,5,10,10_1,10_2,10_0_0 -30432,2,56.0,0.0,9,111,450.0,660.0,0.0,46,37,0.0,0.0,621.9784024091688,1110.0,0.0,1197.0109145593162,71,0,0,0,0,0,0,0,0,1,20.0,1,2008.0,6,116135,2,1,1,0,1,,200.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1291.66688689294,450.0,152948.41133718524,1,1,0,1,112.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007257348999545533,101965.60755812349,10,5,10,10_1,10_2,10_0_0 -30433,2,51.0,0.0,1,111,394.0,1124.0,0.0,75,52,0.0,0.0,544.5766456649167,1518.0,0.0,2038.5458605525325,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,131813,2,1,2,0,1,,360.0,,42,2.0,0.0,4.0,3.0,2.0,4,4,1403.72870877753,394.0,52943.01181465096,5,1,0,1,80.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028672339331853473,26471.50590732548,7,4,7,7_1,7_2,7_1_0 -30434,2,60.0,0.0,8,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,602.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,2000.0,6,123494,2,1,0,1,1,,121.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1601.24915408192,0.0,34507.617188727185,0,1,0,1,57.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017445423620749422,34507.617188727185,9,5,9,9_0,9_2,9_0_0 -30435,2,37.0,0.0,1,111,700.0,2400.0,0.0,0,22,0.0,0.0,967.5219593031513,3100.0,0.0,4352.7669620338775,71,0,0,0,0,0,0,0,0,1,1.0,2,,1,128218,2,1,0,0,1,,200.0,,12,1.0,0.0,5.0,1.0,1.0,2,2,1610.4145976245,700.0,18889.428354546035,0,1,1,2,80.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.16411296000145695,18889.428354546035,5,3,5,5_0,5_2,5_1_0 -30436,2,62.0,0.0,2,111,365.0,37.0,0.0,0,77,0.0,0.0,504.49359306521467,402.0,0.0,67.10515733135561,50,0,0,0,0,0,0,0,0,0,,2,,2,107217,2,2,0,0,1,,100.0,564.0,11,0.0,0.0,1.0,1.0,1.0,2,2,2348.63588021658,365.0,21492.009343400307,0,5,2,3,33.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01870462615090221,21492.009343400307,6,3,6,6_0,6_2,6_0_1 -30438,2,60.0,0.0,2,111,421.0,91.0,0.0,75,74,0.0,0.0,581.8953498094668,512.0,0.0,165.04241397711786,71,0,0,0,0,0,0,0,0,0,,2,,2,118575,2,1,0,1,1,,211.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,1835.49685639845,421.0,127781.99999999999,6,5,0,1,90.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004006824122333349,85187.99999999999,10,5,10,10_0,10_2,10_0_1 -30439,2,67.0,0.0,2,111,640.0,0.0,0.0,0,74,0.0,0.0,884.5915056485956,640.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129948,2,2,0,1,1,,310.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1764.76401914251,640.0,60069.50936846614,0,5,0,1,106.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010654323744751143,60069.50936846614,10,5,10,10_0,10_2,10_0_1 -30441,2,44.0,0.0,5,111,2000.0,0.0,0.0,53,53,0.0,0.0,2764.3484551518613,2030.0,51.60981012570575,0.0,71,2,2,2,2,2,2,2,1,2,8.0,1,,3,117593,1,2,3,0,2,,240.0,995.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1425.11729735198,2000.0,56993.95269982672,1,1,2,3,75.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03561781388793152,31663.307055459285,8,4,8,8_1,8_2,8_0_0 -30442,2,57.0,0.0,8,111,0.0,0.0,350.0,0,54,0.0,0.0,178.81966719313377,350.0,0.0,400.136021128421,71,0,0,0,0,0,0,0,0,2,10.0,2,1999.0,6,125901,2,1,0,1,1,693.0,100.0,528.0,32,2.0,3.0,4.0,2.0,1.5,1,1,1500.27435915294,0.0,34055.23065070045,0,1,2,3,84.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010277422684048132,22703.487100466966,6,3,6,6_0,6_2,6_0_0 -30443,1,61.0,119.0,2,111,300.0,0.0,0.0,0,46,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,100796,1,3,0,1,1,360.0,60.0,458.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1895.04683640844,300.0,12769.57207062099,0,4,2,3,40.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.023493347963492943,12769.57207062099,2,1,2_1,2_0_1,2_2_1,2_0_1 -30444,2,63.0,0.0,2,111,500.0,1100.0,0.0,85,78,0.0,0.0,691.0871137879653,1600.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,1,,2,125197,2,1,3,0,1,,250.0,,41,2.0,4.0,6.0,4.0,2.5,1,1,1280.97103614871,500.0,42093.09860447212,6,5,0,1,100.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03801098168216132,16837.23944178885,4,2,4_0,4_1_0,4_2_0,4_0_1 -30445,2,38.0,0.0,2,111,340.0,0.0,0.0,0,52,0.0,0.0,469.9392373758164,340.0,0.0,0.0,71,2,1,2,2,1,2,2,2,1,12.0,2,,2,118104,2,1,0,1,1,,140.0,,12,1.0,0.0,3.0,1.0,1.0,2,1,1644.0567790996,340.0,17156.201183748686,0,1,1,2,61.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01981790702723089,17156.201183748686,4,2,4_0,4_0_0,4_2_0,4_0_1 -30446,2,44.0,0.0,2,111,0.0,0.0,175.0,0,38,0.0,0.0,89.40983359656688,189.0,24.084578058662682,200.0680105642105,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,131872,2,2,0,1,2,,60.0,,12,1.0,0.0,3.0,1.0,1.0,4,4,1811.30378897781,0.0,54600.74940219452,0,1,1,2,62.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003461490951485067,54600.74940219452,10,5,10,10_0,10_2,10_0_1 -30447,2,26.0,0.0,8,111,540.0,0.0,0.0,54,38,0.0,0.0,746.3740828910024,540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,128780,2,1,0,0,1,,130.0,560.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1733.74652596811,540.0,63072.25317917009,1,1,2,3,50.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008561609468208083,42048.16878611339,9,5,9,9_0,9_2,9_0_0 -30448,1,43.0,425.0,2,111,400.0,0.0,0.0,0,31,0.0,0.0,552.8696910303722,400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,2,114338,2,2,0,1,1,527.0,80.0,695.0,32,1.0,0.0,4.0,3.0,1.8,2,2,2031.5233287939,400.0,13238.785568707946,0,1,2,3,66.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03021425174718941,7354.880871504414,1,1,1_1,1_0_1,1_2_1,1_0_1 -30449,0,79.0,0.0,2,111,104.0,0.0,0.0,0,78,0.0,0.0,143.74611966789678,144.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117768,2,1,0,1,1,,149.0,,11,0.0,3.0,4.0,1.0,1.0,4,3,1856.48685132703,104.0,16234.68425521534,0,5,0,1,79.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008869898406169524,16234.68425521534,4,2,4_0,4_0_0,4_2_0,4_0_1 -30450,2,68.0,0.0,2,111,400.0,0.0,0.0,0,77,0.0,0.0,552.8696910303722,400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,101436,2,3,0,1,1,,160.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1790.5733315393,400.0,20069.228477621422,0,5,0,1,79.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01993101032488756,20069.228477621422,5,3,5,5_0,5_2,5_0_1 -30451,2,71.0,0.0,2,111,350.0,0.0,0.0,0,77,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132793,2,2,0,1,1,920.0,80.0,350.0,11,0.0,2.0,4.0,1.0,1.0,5,4,1691.52924496095,350.0,23615.74444111946,0,5,2,3,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014820621084914184,23615.74444111946,6,3,6,6_0,6_2,6_0_1 -30452,2,61.0,0.0,5,111,250.0,60.0,0.0,0,34,0.0,0.0,345.54355689398267,310.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,105988,2,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,4,3,1269.55067257654,250.0,75162.95724786169,0,1,0,1,85.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004124372049089635,75162.95724786169,10,5,10,10_0,10_2,10_0_0 -30453,2,71.0,0.0,2,111,260.0,0.0,0.0,77,75,0.0,0.0,359.36529916974195,625.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100934,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1190.64626913532,260.0,23713.74344874134,6,5,0,1,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02635602435992337,15809.162299160895,3,2,3_0,3_0_0,3_2_0,3_0_1 -30454,2,44.0,0.0,5,111,360.0,72.0,0.0,85,22,0.0,0.0,497.582721927335,432.0,0.0,130.5830088610163,71,0,0,0,0,0,0,0,0,0,,2,,3,104537,2,2,0,1,1,,0.0,920.0,42,1.0,0.0,3.0,4.0,2.1,1,1,1391.70458965358,360.0,2449.843775668789,6,1,2,3,65.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.17633777479629992,1166.5922741279946,1,1,1_0,1_0_0,1_2_0,1_0_0 -30455,2,29.0,0.0,9,111,276.0,434.0,0.0,47,55,0.0,0.0,381.48008681095683,710.0,0.0,787.1253589677929,71,0,0,0,0,0,0,0,0,2,50.0,2,2008.0,6,115072,2,1,0,0,1,,256.0,676.0,43,2.0,2.0,2.0,2.0,1.5,2,1,1103.31030240477,276.0,83406.84357117696,1,1,2,3,55.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008512490937198778,55604.562380784635,10,5,10,10_0,10_2,10_0_0 -30456,2,39.0,0.0,7,111,300.0,0.0,0.0,0,67,0.0,0.0,414.65226827277917,420.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,5,105218,2,1,0,1,1,400.0,0.0,578.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1066.54574172515,300.0,54068.688730548,0,1,2,3,70.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007767896907821741,41591.29902349846,9,5,9,9_0,9_2,9_0_0 -30457,2,36.0,0.0,7,111,500.0,0.0,0.0,85,55,0.0,0.0,691.0871137879653,530.0,51.60981012570575,0.0,50,1,2,2,2,1,2,2,2,2,60.0,2,,5,122405,1,1,0,1,1,490.0,0.0,614.0,42,1.0,0.0,4.0,4.0,2.1,3,2,1322.69238497365,500.0,55314.233924274995,7,1,2,3,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009581620541388466,26340.111392511903,7,4,7,7_0,7_2,7_0_0 -30458,2,28.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,709.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,102070,2,2,0,1,1,192.0,148.0,359.0,12,1.0,0.0,1.0,1.0,1.0,3,3,1693.2304053296,0.0,19754.253263407973,0,1,2,3,32.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03589100486594068,19754.253263407973,5,3,5,5_0,5_2,5_0_1 -30459,2,29.0,0.0,9,111,400.0,0.0,0.0,0,52,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,108629,2,1,0,0,1,,0.0,334.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1275.11765626447,400.0,11358.716469702409,0,1,2,3,39.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03521524646441675,11358.716469702409,2,1,2_0,2_0_0,2_2_0,2_0_0 -30460,1,23.0,270.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,653.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,5.0,2,,2,115089,2,2,0,0,1,,411.0,440.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1528.82770397106,0.0,13184.598670196647,0,1,2,3,32.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04952748402392294,13184.598670196647,2,1,2_1,2_0_1,2_2_1,2_0_1 -30461,2,66.0,0.0,2,111,355.0,1320.0,0.0,42,31,0.0,0.0,490.67185078945533,1675.0,0.0,2394.0218291186325,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,106212,2,2,0,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1423.74784796764,355.0,100951.25037495233,1,1,0,1,119.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016592166949678466,67300.83358330156,10,5,10,10_0,10_2,10_0_1 -30462,1,40.0,377.0,5,111,240.0,0.0,0.0,0,56,0.0,0.0,331.72181461822333,529.0,137.62616033521533,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,114597,1,3,0,1,2,,120.0,650.0,32,1.0,0.0,2.0,2.0,1.5,4,4,1296.46288605813,240.0,11551.725004492255,0,4,2,3,45.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04579402641547315,7701.1500029948365,1,1,1_1,1_0_1,1_2_1,1_0_0 -30463,1,45.0,490.0,9,111,480.0,0.0,0.0,54,47,0.0,0.0,663.4436292364467,792.0,536.7420253073398,0.0,71,2,1,2,2,1,2,2,2,0,,2,2006.0,6,114614,2,2,0,1,1,588.0,200.0,800.0,43,3.0,0.0,4.0,5.0,2.5999999999999996,3,2,1163.50013792099,480.0,25454.27960219301,4,4,2,3,80.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03111461068148891,9790.107539305005,2,1,2_1,2_0_1,2_2_1,2_0_0 -30464,1,37.0,266.0,9,111,480.0,0.0,0.0,54,65,0.0,0.0,663.4436292364467,1080.0,233.96447256986607,0.0,50,2,2,2,2,1,1,2,2,0,,2,2005.0,6,123003,1,3,0,1,1,320.0,360.0,493.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1060.69858599827,480.0,36581.068605091765,4,4,2,3,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.029523467771241475,17419.556478615126,4,2,4_1,4_0_1,4_2_1,4_0_0 -30465,1,75.0,125.0,2,111,298.0,830.0,0.0,0,77,0.0,0.0,411.88791981762733,1128.0,0.0,1505.3319077033825,50,0,0,0,0,0,0,0,0,0,,2,,2,127783,2,1,0,0,1,,0.0,600.0,11,0.0,10.0,3.0,1.0,1.0,2,2,1487.766371364,298.0,12349.656887859026,0,5,2,3,47.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09133856998966014,12349.656887859026,2,1,2_1,2_0_1,2_2_1,2_0_1 -30466,2,30.0,0.0,9,111,520.0,0.0,0.0,0,35,0.0,0.0,718.7305983394839,520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,121737,2,1,0,0,1,,170.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1472.14796795142,520.0,65436.52982741261,0,1,1,2,35.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007946631665393755,65436.52982741261,10,5,10,10_0,10_2,10_0_0 -30467,0,42.0,0.0,2,111,384.0,0.0,0.0,46,47,0.0,0.0,530.7549033891573,384.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,119724,2,2,0,1,1,,180.0,,43,2.0,0.0,3.0,2.0,1.5,3,3,1491.74983562781,384.0,68988.24023464863,4,1,5,0,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005566166040674566,45992.16015643242,10,5,10,10_0,10_2,10_0_1 -30468,2,77.0,0.0,2,111,187.0,60.0,0.0,0,77,0.0,0.0,258.466580556699,247.0,0.0,108.81917405084694,33,0,0,0,0,0,0,0,0,0,,2,,2,127311,2,2,0,1,2,,112.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1359.80362356854,187.0,15821.549753667117,0,5,0,1,60.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015611618573758892,15821.549753667117,3,2,3_0,3_0_0,3_2_0,3_0_1 -30469,2,34.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,705.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,131043,1,2,0,0,1,,0.0,750.0,43,2.0,0.0,4.0,4.0,2.1,3,3,1460.24867044094,0.0,10735.46699262656,4,4,2,3,65.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06567017536211654,5112.12713934598,1,1,1_0,1_0_0,1_2_0,1_0_1 -30470,2,66.0,0.0,6,111,1080.0,0.0,0.0,0,77,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,113287,2,1,0,0,1,,150.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1443.20201974481,1080.0,26890.08516677974,0,5,1,2,70.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040163502395085086,26890.08516677974,7,4,7,7_0,7_2,7_0_0 -30471,1,42.0,274.0,6,111,1320.0,0.0,0.0,56,63,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,20.0,2,,4,102194,2,3,0,0,1,,0.0,479.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1471.86252351062,1320.0,29303.75007691345,4,1,2,3,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.04504542922101781,13954.166703292118,3,2,3_1,3_0_1,3_2_1,3_0_0 -30472,2,52.0,0.0,7,111,1000.0,0.0,0.0,0,48,0.0,248.44140115666985,1382.1742275759307,1300.0,103.2196202514115,0.0,50,2,2,2,1,1,1,2,2,2,5.0,2,,5,132802,1,3,0,0,1,,0.0,461.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1481.35974874256,1000.0,28008.06392263496,0,1,2,3,67.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.04641520397807268,28008.06392263496,7,4,7,7_0,7_2,7_0_0 -30473,2,25.0,0.0,2,111,280.0,49.0,0.0,62,62,0.0,0.0,387.00878372126056,329.0,0.0,88.868992141525,50,1,1,2,2,1,1,2,2,2,30.0,2,,2,107402,2,1,0,1,1,576.0,173.0,600.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1416.50560838142,280.0,50915.67607920798,4,1,2,3,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006461664173685618,33943.78405280532,9,5,9,9_0,9_2,9_0_1 -30474,2,45.0,0.0,8,111,342.0,1077.0,0.0,85,62,0.0,0.0,472.7035858309682,1419.0,0.0,1953.3041742127025,60,2,2,1,2,1,1,2,2,2,30.0,2,2003.0,6,129382,2,2,0,0,1,,650.0,566.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1325.20860770058,342.0,51644.705964748784,7,1,2,3,87.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.027476194771417023,24592.71712607085,7,4,7,7_0,7_2,7_0_0 -30475,2,27.0,0.0,8,111,0.0,0.0,1920.0,0,62,0.0,0.0,980.9536028880481,1920.0,0.0,2195.0318873330525,41,2,2,2,2,1,2,2,2,2,30.0,2,2003.0,6,114101,2,2,0,0,1,,0.0,673.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1490.48470373627,0.0,60699.68287957452,0,1,2,3,55.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.03163113724678257,60699.68287957452,10,5,10,10_0,10_2,10_0_0 -30476,2,50.0,0.0,2,111,780.0,0.0,0.0,85,53,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,2,,2,108696,2,2,0,1,1,,1400.0,,42,1.0,2.0,5.0,4.0,2.3,2,2,1277.19488686447,780.0,57215.316046066044,6,1,1,2,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013632713299564662,24876.224367854804,7,4,7,7_0,7_2,7_0_1 -30477,2,37.0,0.0,6,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,1005.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,4,115185,1,1,0,1,1,192.0,90.0,400.0,12,1.0,0.0,1.0,1.0,1.0,2,2,1990.35698026482,0.0,19032.442016973644,0,1,2,3,32.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05280457437378314,19032.442016973644,5,3,5,5_0,5_2,5_0_0 -30478,2,34.0,0.0,5,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,112741,1,3,0,1,2,,236.0,700.0,43,2.0,0.0,3.0,2.0,1.5,1,1,1499.02755742294,0.0,52190.915403062514,1,1,2,3,80.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008047377532208504,34793.943602041676,9,5,9,9_0,9_2,9_0_0 -30479,1,64.0,270.0,2,111,210.0,0.0,0.0,0,72,0.0,0.0,290.25658779094545,681.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,111059,2,1,0,1,1,600.0,0.0,488.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1564.60531494499,210.0,8621.57575714941,0,5,2,3,67.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07898788100716776,8621.57575714941,1,1,1_1,1_0_1,1_2_1,1_0_1 -30480,2,48.0,0.0,2,111,578.0,90.0,0.0,77,52,0.0,0.0,798.8967035388879,817.0,0.0,163.2287610762704,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,125143,1,2,0,1,2,,0.0,,42,2.0,1.0,3.0,3.0,2.0,1,1,1614.82641672455,578.0,49981.129647907976,5,1,1,2,67.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016346169159347855,24990.564823953988,7,4,7,7_0,7_2,7_0_1 -30481,2,72.0,0.0,2,111,406.0,0.0,0.0,0,77,0.0,0.0,561.1627363958278,406.0,0.0,0.0,71,2,2,1,1,1,2,2,2,0,,2,,2,119995,2,1,0,1,1,,160.0,,21,1.0,0.0,3.0,2.0,1.5,1,1,372.780558278427,406.0,77051.30281313903,0,5,0,1,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005269216550232913,51367.53520875936,10,5,10,10_0,10_2,10_0_1 -30482,2,22.0,0.0,2,111,512.0,0.0,0.0,0,67,0.0,0.0,707.6732045188764,1255.0,619.317721508469,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111809,2,1,0,1,1,800.0,0.0,315.0,22,4.0,1.0,4.0,5.0,3.0,1,1,303.821382192381,512.0,71775.83202702597,0,1,2,3,64.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017484994106755195,23925.27734234199,6,3,6,6_0,6_2,6_0_1 -30483,2,32.0,0.0,2,111,480.0,1200.0,0.0,48,54,0.0,0.0,663.4436292364467,1680.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,131463,1,1,1,0,1,,400.0,,43,2.0,0.0,7.0,3.0,1.8,1,1,1020.95300952628,480.0,89296.45696190813,1,1,1,2,160.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0188137363693685,49609.14275661563,10,5,10,10_1,10_2,10_0_1 -30484,2,37.0,0.0,2,111,250.0,80.0,0.0,43,42,0.0,0.0,345.54355689398267,330.0,0.0,145.09223206779592,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,117022,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,1186.13535798434,250.0,59498.1533729746,1,1,0,1,72.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005546390623778475,39665.43558198307,9,5,9,9_0,9_2,9_0_1 -30485,2,28.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,783.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,111587,1,3,0,1,1,,0.0,715.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1416.58925644328,0.0,45122.6857185159,0,1,2,3,55.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017352690504384125,45122.6857185159,10,5,10,10_0,10_2,10_0_1 -30486,0,45.0,0.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,75.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,1,1.0,8,,5,125519,2,1,0,1,1,,230.0,,32,1.0,0.0,6.0,3.0,2.0,1,1,467.714797147831,0.0,34543.46749573606,0,1,5,0,124.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002171177517406374,17271.73374786803,4,2,4_0,4_0_0,4_2_0,4_0_0 -30487,0,81.0,0.0,5,111,1531.0,0.0,0.0,0,78,0.0,0.0,2116.10874241875,1531.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,126238,2,1,0,0,1,,165.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,415.757046491943,1531.0,12436.885964777437,0,5,0,1,82.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12310155486959937,12436.885964777437,2,1,2_0,2_0_0,2_2_0,2_0_0 -30488,2,66.0,0.0,5,111,300.0,1800.0,0.0,78,77,0.0,0.0,414.65226827277917,2170.0,120.42289029331342,3264.575221525408,43,1,2,2,1,2,2,2,2,0,,2,,3,130529,2,2,0,1,2,,340.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,372.780558278427,300.0,44021.740845926426,5,5,0,1,66.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.049293825239553245,29347.82723061762,8,4,8,8_0,8_2,8_0_0 -30489,2,35.0,0.0,2,111,360.0,0.0,0.0,0,52,0.0,0.0,497.582721927335,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,132980,2,1,0,1,1,,480.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,378.586950925926,360.0,27087.6982836982,0,1,1,2,75.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013290165750873474,16929.81142731137,4,2,4_0,4_0_0,4_2_0,4_0_1 -30490,2,40.0,0.0,2,111,1050.0,0.0,0.0,85,63,0.0,0.0,1451.2829389547271,1260.0,361.26867087994026,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,115506,2,2,0,1,1,648.0,0.0,384.0,42,1.0,1.0,5.0,4.0,2.3,1,1,342.325051286673,1050.0,32064.105576378624,6,4,2,3,125.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03929627779569913,13940.915467990708,3,2,3_0,3_0_0,3_2_0,3_0_1 -30491,2,71.0,0.0,2,111,364.0,2189.0,0.0,78,78,0.0,0.0,503.1114188376387,2553.0,0.0,3970.0861999550657,41,0,0,0,0,0,0,0,0,0,,1,,2,123141,2,1,2,0,1,,276.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,997.169953800805,364.0,64230.8603214648,5,5,0,1,180.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0397472490205278,42820.5735476432,9,5,9,9_1,9_2,9_0_1 -30492,2,37.0,0.0,2,111,520.0,0.0,0.0,55,38,0.0,0.0,718.7305983394839,520.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,2,,2,121771,2,2,0,1,1,745.0,0.0,448.0,43,2.0,0.0,4.0,5.0,2.4,1,1,302.125664700317,520.0,17390.118637571162,1,1,2,3,75.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029902038671349006,7245.882765654651,1,1,1_0,1_0_0,1_2_0,1_0_1 -30493,1,64.0,274.0,2,111,364.0,0.0,0.0,85,67,0.0,0.0,503.1114188376387,544.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,114235,2,1,0,1,1,693.0,0.0,415.0,42,1.0,4.0,4.0,3.0,2.0,1,1,403.466654558364,364.0,15456.65401963704,6,4,2,3,82.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03519519808807718,7728.32700981852,1,1,1_1,1_0_1,1_2_1,1_0_1 -30494,2,53.0,0.0,2,111,354.0,0.0,0.0,68,56,0.0,0.0,489.28967656187945,564.0,361.26867087994026,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,114876,2,1,0,1,1,693.0,0.0,440.0,43,3.0,0.0,4.0,6.0,3.5,1,1,379.523165349022,354.0,21913.123814357557,1,1,2,3,82.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02573800087920213,6260.892518387874,1,1,1_0,1_0_0,1_2_0,1_0_1 -30495,2,50.0,0.0,9,111,275.0,615.0,0.0,0,52,0.0,0.0,380.0979125833809,890.0,0.0,1115.396534021181,50,1,2,2,2,1,2,2,2,2,15.0,2,2009.0,6,129489,2,1,0,1,1,,160.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1187.30006491489,275.0,50585.0,0,1,1,2,49.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017594148462983097,50585.0,10,5,10,10_0,10_2,10_0_0 -30496,2,80.0,0.0,1,111,1100.0,0.0,0.0,0,86,0.0,724.6207533736205,1520.3916503335236,1868.0,116.98223628493304,0.0,50,2,2,2,1,2,2,2,2,0,,2,,1,120440,2,3,0,0,1,,180.0,206.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1130.03867326547,1100.0,16547.03664099445,0,5,2,3,35.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.1128903041993709,16547.03664099445,4,2,4_0,4_0_0,4_2_0,4_1_0 -30497,2,71.0,0.0,2,111,1100.0,0.0,0.0,77,72,2987.1697540360015,0.0,1520.3916503335236,3250.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128614,2,1,3,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,711.784168600719,1100.0,27764.184067045768,5,5,0,1,110.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11705728474324346,18509.456044697177,4,2,4_0,4_1_0,4_2_0,4_0_1 -30498,2,76.0,0.0,7,111,1000.0,0.0,0.0,78,74,0.0,455.47590212056144,1382.1742275759307,1560.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,106685,2,1,1,0,1,,200.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,692.666461127861,1000.0,38634.90436440256,5,5,0,1,80.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040377995640578146,25756.602909601705,7,4,7,7_1,7_2,7_0_0 -30499,2,61.0,0.0,6,111,652.0,0.0,0.0,0,45,0.0,672.8621281326475,901.1775963795067,1392.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,116310,1,1,2,0,1,,200.0,,22,2.0,0.0,6.0,2.0,1.5,2,2,595.223607967119,652.0,44515.49970139998,0,1,0,1,90.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031270007285939164,29676.99980093332,8,4,8,8_1,8_2,8_0_0 -30500,2,66.0,0.0,7,111,350.0,0.0,0.0,0,78,0.0,724.6207533736205,483.76097965157567,1110.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,130993,2,1,2,0,1,,106.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,678.655242158601,350.0,24088.126330387986,0,5,0,1,110.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04608079452820278,24088.126330387986,6,3,6,6_1,6_2,6_0_0 -30501,2,68.0,0.0,1,300,600.0,0.0,0.0,77,78,3733.962192545002,310.55175144583734,829.3045365455583,3464.0,110.10092826817227,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,112485,2,1,4,0,1,,200.0,,41,1.0,1.0,6.0,5.0,2.5999999999999996,2,2,701.450593300064,600.0,73405.93008034854,5,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04718964797814537,28233.050030903287,8,4,8,8_1,8_0,8_1_0 -30502,2,79.0,0.0,5,300,2.0,0.0,0.0,0,78,0.0,0.0,2.764348455151861,1413.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,128511,1,1,0,0,1,,125.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1163.21098544069,2.0,14686.211194292695,0,5,0,1,91.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09621269783653358,14686.211194292695,3,2,3_0,3_0_0,3_0_0,3_0_0 -30503,2,76.0,0.0,2,300,407.0,0.0,0.0,77,75,770.6897965412884,0.0,562.5449106234038,923.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123851,1,3,3,0,1,,275.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,802.73581402308,407.0,40585.23792186383,5,5,0,1,88.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02274225918736741,27056.825281242553,7,4,7,7_1,7_0,7_0_1 -30504,2,55.0,0.0,7,300,1000.0,0.0,0.0,78,47,2987.1697540360015,0.0,1382.1742275759307,3035.0,60.21144514665671,0.0,41,1,2,2,2,2,2,2,1,2,15.0,1,,5,102040,2,1,2,0,1,,380.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,767.517149679684,1000.0,63324.155407546255,7,1,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04792799809910016,42216.10360503084,9,5,9,9_1,9_0,9_0_0 -30505,2,45.0,0.0,7,300,2150.8,0.0,0.0,54,42,0.0,517.5862524097289,2972.7803286703115,2711.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,5,104676,1,2,2,0,1,,224.0,,43,3.0,1.0,5.0,3.0,2.0,2,1,872.09129179075,2150.8,82045.57691725994,1,1,1,2,85.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03304260999631885,41022.78845862997,9,5,9,9_1,9_0,9_0_0 -30506,2,45.0,0.0,9,300,1300.0,0.0,0.0,67,47,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,102090,2,1,1,0,1,,700.0,1020.0,43,3.0,0.0,6.0,5.0,3.0,2,2,776.967710854262,1300.0,63054.32682619701,1,1,2,3,98.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020617141843149337,21018.108942065668,5,3,5,5_1,5_0,5_0_0 -30507,2,60.0,0.0,7,300,4200.0,0.0,0.0,55,21,0.0,175.97932581930783,5805.1317558189085,4370.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,118139,2,1,2,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,4,2,761.73862858295,4200.0,99711.90613933982,1,1,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043826260766625574,66474.6040928932,10,5,10,10_1,10_0,10_0_0 -30508,2,64.0,0.0,9,300,2070.0,0.0,0.0,77,74,0.0,724.6207533736205,2861.1006510821762,2770.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,121926,2,1,1,0,1,,336.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,796.854191636029,2070.0,62736.42005398567,5,5,0,1,108.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044152981595321696,41824.28003599044,9,5,9,9_1,9_0,9_0_0 -30509,2,51.0,0.0,7,300,1000.0,0.0,0.0,22,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,126612,2,1,2,0,2,,140.0,,43,2.0,1.0,7.0,2.0,1.5,3,3,736.804913741442,1000.0,67999.19009418224,1,1,0,1,140.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014706057507669585,45332.793396121495,10,5,10,10_1,10_0,10_0_0 -30510,2,73.0,0.0,5,300,620.0,0.0,0.0,78,75,0.0,0.0,856.9480210970769,680.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125418,1,2,3,0,1,,240.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,759.667262105283,620.0,47750.897901851364,5,5,0,1,84.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014240569913422204,31833.931934567576,8,4,8,8_1,8_0,8_0_0 -30511,2,49.0,0.0,1,120,2200.0,0.0,0.0,78,68,0.0,0.0,3040.783300667047,2320.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108332,2,1,1,0,1,,320.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,988.179528949722,2200.0,45076.60086025136,7,1,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051467944692470825,30051.067240167573,8,4,8,8_1,8_0,8_1_0 -30512,0,29.0,0.0,1,120,0.0,0.0,0.0,67,65,0.0,0.0,0.0,740.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,119403,2,2,0,0,2,,0.0,,43,2.0,0.0,2.0,2.0,1.5,3,3,988.179528949722,0.0,46593.912848467604,1,1,5,0,45.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015881902908790314,31062.60856564507,8,4,8,8_0,8_0,8_1_0 -30513,0,26.0,0.0,1,120,0.0,0.0,0.0,0,69,0.0,0.0,0.0,2391.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,1,106668,1,2,2,0,2,,0.0,,12,1.0,0.0,7.0,1.0,1.0,2,2,971.645552456297,0.0,11801.371991577964,0,1,5,0,100.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20260356183216108,11801.371991577964,2,1,2_0,2_1_0,2_0_0,2_1_0 -30514,2,48.0,0.0,5,120,1200.0,0.0,0.0,21,43,0.0,207.03450096389156,1658.6090730911167,1475.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,2,7.0,2,,3,123313,2,1,0,0,1,,446.0,,43,2.0,6.0,7.0,3.0,2.0,1,1,1064.8703796624,1200.0,13279.161092214512,1,1,0,1,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11107629388311158,6639.580546107256,1,1,1_0,1_0_0,1_0_0,1_0_0 -30515,2,68.0,0.0,2,120,650.0,0.0,0.0,78,77,0.0,776.3793786145933,898.4132479243549,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121844,2,1,3,0,1,,220.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,870.330569550532,650.0,28814.557973089944,5,5,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04858655132962535,19209.705315393297,5,3,5,5_1,5_0,5_0_1 -30516,2,58.0,0.0,5,120,2300.0,0.0,0.0,74,56,0.0,621.1035028916747,3179.0007234246405,2900.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,131403,2,1,1,0,1,,90.0,,42,1.0,5.0,4.0,2.0,1.5,2,2,759.667262105283,2300.0,54637.543730088706,5,1,0,1,88.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053077056580839305,36425.02915339247,9,5,9,9_1,9_0,9_0_0 -30517,2,57.0,0.0,8,120,1560.0,0.0,0.0,37,22,0.0,103.51725048194578,2156.1917950184516,1714.0,92.89765822627035,0.0,31,0,0,0,0,0,0,0,0,2,7.0,1,2000.0,6,108442,2,1,2,0,1,,400.0,,43,2.0,4.0,9.0,2.0,1.5,2,2,773.8815539519,1560.0,200962.6587121801,1,1,1,2,160.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00852894767109347,133975.10580812008,10,5,10,10_1,10_0,10_0_0 -30518,2,77.0,0.0,2,120,330.0,0.0,0.0,86,72,2912.4905101851014,414.0690019277831,456.1174951000571,2870.0,326.8621307961364,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,129956,2,3,2,0,1,,321.0,,41,1.0,0.0,5.0,3.0,2.0,1,1,705.330623300246,330.0,50833.10578331431,5,5,0,1,75.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056459269127365846,25416.552891657157,7,4,7,7_1,7_0,7_0_1 -30519,2,56.0,0.0,1,120,1000.0,0.0,0.0,21,65,2240.377315527001,10.351725048194577,1382.1742275759307,2580.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,122457,2,1,2,0,1,,350.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,826.38406791595,1000.0,41174.83380000952,1,1,0,1,150.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06265963361337001,20587.41690000476,5,3,5,5_1,5_0,5_1_0 -30520,0,25.0,0.0,8,120,0.0,0.0,0.0,46,62,0.0,0.0,0.0,1328.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2000.0,6,123699,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1249.35156631823,0.0,28959.710449414168,4,4,5,0,85.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045856812081035994,19306.47363294278,5,3,5,5_0,5_0,5_0_0 -30521,2,29.0,0.0,9,112,700.0,0.0,0.0,84,37,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,125820,2,1,0,0,1,,52.0,908.0,42,1.0,0.0,3.0,2.0,1.5,2,2,752.840887928898,700.0,42799.122425802874,3,1,2,3,74.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01635547554073169,28532.748283868583,8,4,8,8_0,8_1,8_0_0 -30522,2,68.0,0.0,5,112,2500.0,0.0,0.0,77,75,0.0,134.5724256265295,3455.435568939826,2830.0,344.06540083803833,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,118183,1,1,2,0,1,,600.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,483.860183104142,2500.0,49598.92320284237,5,5,0,1,88.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05705769031368449,33065.94880189491,8,4,8,8_1,8_1,8_0_0 -30523,2,53.0,0.0,6,112,700.0,0.0,0.0,55,63,0.0,621.1035028916747,967.5219593031513,1400.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,4,103179,2,1,2,0,1,,170.0,,43,2.0,1.0,4.0,2.0,1.5,3,3,525.06724732235,700.0,65125.95882065717,4,1,0,1,110.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021496804428711717,43417.305880438114,10,5,10,10_1,10_1,10_0_0 -30524,2,52.0,0.0,9,112,400.0,0.0,0.0,0,43,0.0,310.55175144583734,552.8696910303722,800.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,3.0,2,2012.0,6,121072,2,1,0,0,1,,180.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,664.228794050709,400.0,21797.115244346805,0,1,0,1,96.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0367021044313414,21797.115244346805,6,3,6,6_0,6_1,6_0_0 -30525,2,66.0,0.0,2,112,1700.0,0.0,0.0,77,77,0.0,0.0,2349.696186879082,1800.0,172.03270041901916,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,103511,2,1,1,0,1,,166.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,538.537572167761,1700.0,35005.99381128084,5,5,0,1,94.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05141976570366478,23337.329207520557,6,3,6,6_1,6_1,6_0_1 -30526,2,46.0,0.0,1,112,400.0,0.0,0.0,56,47,1493.5848770180007,72.46207533736204,552.8696910303722,1530.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,1,116560,2,1,0,1,1,,200.0,545.0,43,2.0,0.0,3.0,3.0,2.0,1,1,894.064792044343,400.0,12476.391615708424,1,1,2,3,100.0,8,2,8,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12263161073540291,6238.195807854212,1,1,1_0,1_0_0,1_1_0,1_1_0 -30527,2,36.0,0.0,1,112,870.0,0.0,0.0,42,43,0.0,414.0690019277831,1202.4915779910596,1345.0,129.02452531426437,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,1,128968,2,1,3,0,1,,104.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,524.278541661432,870.0,75504.6525894767,1,1,1,2,100.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017813471804351517,41947.029216375944,9,5,9,9_1,9_1,9_1_0 -30528,2,58.0,0.0,7,112,1600.0,0.0,0.0,46,55,0.0,72.46207533736204,2211.478764121489,1740.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,117792,2,1,2,0,1,,170.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,526.263086230619,1600.0,49605.09300909208,1,5,0,1,87.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03507704339312652,33070.06200606139,8,4,8,8_1,8_1,8_0_0 -30529,2,82.0,0.0,6,112,420.0,0.0,0.0,86,75,0.0,0.0,580.5131755818909,1520.0,1892.359704609211,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131884,2,1,3,0,1,,145.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,517.371249286162,420.0,47905.997481823084,6,5,0,1,92.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0317288039055388,31937.33165454872,8,4,8,8_1,8_1,8_0_0 -30530,2,76.0,0.0,5,112,1450.0,0.0,0.0,0,72,4480.754631054002,217.38622601208613,2004.1526299850993,4720.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,106689,2,1,2,0,1,,110.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,553.857442381345,1450.0,19188.030829824515,0,5,0,1,90.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.24598668002260904,19188.030829824515,5,3,5,5_1,5_1,5_0_0 -30531,2,62.0,0.0,8,112,1303.0,0.0,0.0,72,74,0.0,310.55175144583734,1800.9730185314374,1603.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,104972,2,2,1,0,1,,163.0,,41,1.0,0.0,5.0,3.0,2.0,2,2,541.516551659205,1303.0,110899.35762101272,5,5,0,1,110.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014454547207370574,55449.67881050636,10,5,10,10_1,10_1,10_0_0 -30532,2,50.0,0.0,7,112,1485.0,0.0,0.0,31,43,0.0,362.31037668681023,2052.528727950257,1835.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,121858,2,1,2,0,1,,350.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,511.734130762009,1485.0,52624.98095211393,1,1,1,2,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03486937129097979,35083.320634742624,9,5,9,9_1,9_1,9_0_0 -30533,2,39.0,0.0,7,112,1400.0,0.0,0.0,56,43,0.0,0.0,1935.0439186063027,1550.0,258.04905062852873,0.0,41,2,2,2,1,1,2,2,2,2,45.0,1,,5,116591,1,3,3,0,1,,350.0,1250.0,43,2.0,0.0,4.0,4.0,2.1,2,2,574.749862017035,1400.0,69456.0,1,1,2,3,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.022316286569914766,33074.28571428571,8,4,8,8_1,8_1,8_0_0 -30534,2,55.0,0.0,7,112,1800.0,0.0,0.0,43,37,0.0,517.5862524097289,2487.913609636675,2550.0,430.0817510475479,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,126698,1,2,2,0,1,,300.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,588.527097305839,1800.0,78486.40985554307,1,1,0,1,129.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032489701143081494,39243.204927771534,9,5,9,9_1,9_1,9_0_0 -30535,2,42.0,0.0,7,112,1600.0,0.0,0.0,21,38,0.0,248.44140115666985,2211.478764121489,1840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,121660,1,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,490.304590813393,1600.0,60909.91405856446,1,1,1,2,110.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030208546973664298,29004.72098026879,8,4,8,8_1,8_1,8_0_0 -30536,2,53.0,0.0,1,112,311.0,0.0,0.0,0,52,1493.5848770180007,2173.8622601208613,429.8561847761144,3411.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,114202,2,2,2,0,2,,100.0,,12,1.0,3.0,5.0,1.0,1.0,2,2,697.303723484839,311.0,15491.30321769341,0,4,0,1,140.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22018805984664494,15491.30321769341,3,2,3_0,3_1_0,3_0_0,3_1_0 -30537,2,58.0,0.0,5,112,550.0,0.0,0.0,78,54,2987.1697540360015,155.27587572291867,760.1958251667618,2820.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,102079,2,1,2,0,1,,300.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,626.358596362258,550.0,46550.99500105292,7,1,0,1,125.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06057872661875896,31033.996667368614,8,4,8,8_1,8_0,8_0_0 -30538,2,78.0,0.0,1,112,400.0,0.0,0.0,86,72,3733.962192545002,0.0,552.8696910303722,3020.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,113897,1,2,1,0,1,,320.0,,41,0.0,2.0,2.0,2.0,1.5,3,3,593.866543219071,400.0,63387.88376723077,6,5,0,1,56.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04764317438155634,42258.589178153845,9,5,9,9_1,9_0,9_1_0 -30539,2,74.0,0.0,6,112,1400.0,0.0,0.0,0,75,0.0,331.2552015422265,1935.0439186063027,1757.0,63.65209915503709,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,112590,2,2,3,0,1,,130.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,728.904088427671,1400.0,29302.750320164872,0,5,0,1,80.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059960241984210925,29302.750320164872,8,4,8,8_1,8_0,8_0_0 -30540,2,59.0,0.0,6,112,2000.0,0.0,0.0,78,62,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,103724,2,1,2,0,1,,400.0,,42,2.0,1.0,5.0,3.0,2.0,3,2,741.178204816509,2000.0,56937.09926662024,5,1,0,1,110.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512648213135287,28468.54963331012,8,4,8,8_1,8_0,8_0_0 -30541,2,32.0,0.0,9,112,1000.0,0.0,0.0,0,64,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,109261,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1004.54944244038,1000.0,15619.890606891018,0,1,2,3,55.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06402093491991746,15619.890606891018,3,2,3_0,3_0_0,3_0_0,3_0_0 -30542,2,28.0,0.0,5,112,1070.0,0.0,0.0,85,68,0.0,621.1035028916747,1478.9264235062458,1670.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,129641,1,2,2,0,1,,450.0,,42,1.0,0.0,3.0,4.0,2.1,3,1,664.252275564144,1070.0,36612.44127471711,6,4,1,2,80.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04561291030743766,17434.495845103385,4,2,4_0,4_1_0,4_0_0,4_0_0 -30543,2,46.0,0.0,1,112,900.0,0.0,0.0,0,67,0.0,0.0,1243.9568048183376,990.0,154.82943037711726,0.0,41,2,2,1,2,1,2,2,2,0,,1,,1,122484,2,1,2,0,2,,300.0,,22,2.0,2.0,5.0,4.0,2.5,1,1,582.231998617429,900.0,60761.18974131071,0,1,0,1,70.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.016293295180935412,24304.475896524284,7,4,7,7_1,7_0,7_1_0 -30544,2,48.0,0.0,7,111,1100.0,0.0,0.0,63,37,0.0,155.27587572291867,1520.3916503335236,1400.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,105413,2,1,2,0,1,,324.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1226.38885026214,1100.0,76862.7395407649,1,1,0,1,100.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018214287031201853,51241.826360509935,10,5,10,10_1,10_2,10_0_0 -30545,2,56.0,0.0,2,111,471.0,0.0,0.0,47,56,764.7154570332164,0.0,651.0040611882633,1103.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,2,112984,2,2,4,0,1,,353.0,,43,2.0,3.0,7.0,2.0,1.5,3,2,1273.08103375543,471.0,45678.694115767415,1,1,0,1,200.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02414692498004809,30452.462743844942,8,4,8,8_1,8_2,8_0_1 -30546,0,88.0,0.0,6,111,1900.0,886.0,0.0,0,72,0.0,0.0,2626.131032394268,2786.0,0.0,1606.8964701508398,10,0,0,0,0,0,0,0,0,0,,1,,4,119567,2,2,2,0,1,,300.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1507.34039465653,1900.0,12584.128159505108,0,5,5,0,60.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22138998941262883,12584.128159505108,2,1,2_0,2_1_0,2_2_0,2_0_0 -30547,2,36.0,0.0,7,111,300.0,0.0,0.0,52,63,0.0,0.0,414.65226827277917,420.0,206.439240502823,0.0,71,2,1,2,2,1,1,2,2,0,,2,,5,104798,1,3,0,1,1,,0.0,745.0,43,2.0,0.0,3.0,4.0,2.1,4,4,1955.51970205952,300.0,48458.63711711535,1,4,2,3,80.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.008667185562502296,23075.541484340643,6,3,6,6_0,6_2,6_0_0 -30548,2,70.0,0.0,2,111,1000.0,0.0,0.0,78,75,3435.2452171414016,0.0,1382.1742275759307,3400.0,172.03270041901916,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,102418,2,1,4,0,2,,600.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,1291.97376030636,1000.0,79397.99737889826,5,5,0,1,100.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04282223874960886,39698.99868944913,9,5,9,9_1,9_2,9_0_1 -30549,2,61.0,0.0,5,111,0.0,0.0,0.0,78,54,0.0,0.0,0.0,897.0,240.84578058662683,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,3,100214,2,1,0,1,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1692.75661573291,0.0,50008.0,5,1,0,1,63.0,6,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01793713005919053,33338.666666666664,8,4,8,8_0,8_2,8_0_0 -30550,2,34.0,0.0,9,111,0.0,0.0,360.0,0,43,0.0,0.0,183.92880054150902,360.0,0.0,411.56847887494735,50,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,129345,2,2,0,0,1,,100.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1860.5341778446,0.0,19299.47102202644,0,1,1,2,72.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018653360995704645,19299.47102202644,5,3,5,5_0,5_2,5_0_0 -30551,2,46.0,0.0,9,111,0.0,0.0,2400.0,64,46,0.0,0.0,1226.19200361006,2400.0,0.0,2743.7898591663156,50,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,123985,2,1,1,0,1,,320.0,1430.0,43,2.0,2.0,4.0,4.0,2.5,3,3,1530.25534438482,0.0,118271.05079099293,1,1,2,3,100.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020292370651557402,47308.42031639717,10,5,10,10_1,10_2,10_0_0 -30552,2,41.0,0.0,6,111,800.0,1800.0,0.0,85,47,0.0,310.55175144583734,1105.7393820607444,2900.0,0.0,3264.575221525408,50,2,2,2,1,1,2,2,2,2,30.0,2,,4,124751,1,2,0,0,1,,0.0,559.0,42,1.0,0.0,5.0,5.0,2.8,1,1,1343.26112991721,800.0,75633.26072415488,6,1,2,3,100.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.0383429191368161,27011.878830055317,7,4,7,7_0,7_2,7_0_0 -30553,2,42.0,0.0,7,111,1600.0,0.0,0.0,62,54,0.0,1035.1725048194578,2211.478764121489,2600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,1.0,1,,5,111553,2,1,2,0,1,,900.0,,43,2.0,0.0,7.0,4.0,2.3,2,2,1210.05451971863,1600.0,31327.68036730607,1,1,1,2,140.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0829936966132159,13620.730594480901,3,2,3_0,3_1_0,3_2_0,3_0_0 -30554,2,69.0,0.0,1,111,420.0,1623.0,0.0,77,78,0.0,0.0,580.5131755818909,2043.0,0.0,2943.5586580754098,31,0,0,0,0,0,0,0,0,0,,1,,1,110542,2,1,1,0,1,,333.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1302.05765982306,420.0,26528.14189647321,5,5,0,1,110.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07701255549570198,17685.42793098214,4,2,4_0,4_1_0,4_2_0,4_1_0 -30555,2,80.0,0.0,2,111,500.0,0.0,0.0,72,72,5974.339508072003,0.0,691.0871137879653,4650.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,105390,1,1,2,0,2,,500.0,,41,0.0,1.0,8.0,2.0,1.5,1,1,1236.98567644842,500.0,11330.903827048764,5,5,0,1,150.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.41038209051776364,7553.935884699175,1,1,1_0,1_1_0,1_2_0,1_0_1 -30556,2,36.0,0.0,7,111,0.0,0.0,0.0,31,53,0.0,0.0,0.0,1438.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,109209,2,1,0,0,1,,0.0,870.0,43,2.0,1.0,4.0,2.0,1.5,1,1,1680.33333950282,0.0,57709.80341288309,1,1,2,3,80.0,6,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02491777678935884,38473.2022752554,9,5,9,9_0,9_2,9_0_0 -30557,2,39.0,0.0,2,111,0.0,0.0,2000.0,0,54,0.0,0.0,1021.8266696750501,2000.0,0.0,2286.491549305263,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,101695,2,2,0,0,1,,0.0,900.0,32,1.0,0.0,6.0,3.0,1.8,2,2,2227.21027876543,0.0,30551.593082215128,0,1,2,3,130.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06546303476280102,16973.107267897292,4,2,4_0,4_0_0,4_2_0,4_0_1 -30558,2,32.0,0.0,6,111,247.0,0.0,0.0,46,54,0.0,0.0,341.39703421125483,367.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,4,119008,2,1,0,1,1,527.0,0.0,820.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1720.87466371479,247.0,53934.0,1,1,2,3,75.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006804613045574221,35956.0,9,5,9,9_0,9_2,9_0_0 -30559,2,45.0,0.0,2,111,500.0,0.0,0.0,62,37,1493.5848770180007,0.0,691.0871137879653,1600.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,131962,2,2,5,0,1,,230.0,,43,3.0,0.0,3.0,3.0,2.0,2,2,1258.36420870765,500.0,74140.60351335918,1,1,0,1,65.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021580617423915368,37070.30175667959,9,5,9,9_1,9_2,9_0_1 -30560,2,26.0,0.0,9,111,0.0,0.0,1200.0,63,52,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,41,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,116169,2,2,0,0,1,,0.0,816.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2096.76685067208,0.0,69232.48148877214,1,1,2,3,66.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017332904645265552,38462.48971598452,9,5,9,9_0,9_2,9_0_0 -30561,2,52.0,0.0,5,111,1600.0,0.0,0.0,0,45,0.0,0.0,2211.478764121489,1660.0,103.2196202514115,0.0,20,2,2,2,1,2,2,2,2,1,4.0,2,,3,124506,1,3,0,0,1,,433.0,382.0,32,1.0,0.0,4.0,2.0,1.5,2,2,2012.19073475042,1600.0,27900.094973261665,0,1,2,3,105.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.05949800535055087,18600.063315507778,4,2,4_0,4_0_0,4_2_0,4_0_0 -30562,2,66.0,0.0,6,111,300.0,0.0,0.0,0,64,2240.377315527001,0.0,414.65226827277917,1920.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100647,2,1,2,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1283.81150411273,300.0,31343.955137315417,0,5,0,1,100.0,6,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061255830401384576,31343.955137315417,8,4,8,8_1,8_2,8_0_0 -30563,1,65.0,70.0,6,111,876.0,0.0,0.0,86,78,0.0,0.0,1210.784623356515,1176.0,516.0981012570575,0.0,10,2,2,2,2,1,2,2,2,0,,2,,4,106445,1,2,0,0,1,,0.0,714.0,41,1.0,4.0,5.0,3.0,2.0,1,1,1650.44866911588,876.0,24455.777466732095,6,5,2,3,90.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.04808679673339958,12227.888733366048,2,1,2_1,2_0_1,2_2_1,2_0_0 -30564,2,52.0,0.0,8,111,1500.0,0.0,0.0,55,47,0.0,0.0,2073.261341363896,1650.0,258.04905062852873,0.0,44,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,129994,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,2,2,1747.57491062386,1500.0,115420.49244830187,1,1,0,1,70.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014295555018005607,57710.246224150935,10,5,10,10_0,10_2,10_0_0 -30565,2,53.0,0.0,7,111,1800.0,0.0,0.0,56,47,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,100843,1,1,2,0,1,,260.0,870.0,43,2.0,0.0,5.0,4.0,2.5,3,2,1357.65841577389,1800.0,30145.355601898154,1,1,2,3,125.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05971069055448992,12058.142240759262,2,1,2_0,2_1_0,2_2_0,2_0_0 -30566,2,55.0,0.0,6,111,2272.0,0.0,0.0,55,47,0.0,103.51725048194578,3140.2998450525142,2472.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,4,112237,1,2,2,0,1,,423.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1147.42893026831,2272.0,53142.91768417158,1,1,0,1,100.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04651607604029381,35428.61178944772,9,5,9,9_1,9_2,9_0_0 -30567,2,50.0,0.0,7,111,470.0,1200.0,0.0,52,48,0.0,0.0,649.6218869606873,1670.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,124935,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,5.0,3.0,2,2,1122.46519401138,470.0,51429.440991691125,1,1,1,2,110.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03247167318559428,17143.146997230375,4,2,4_0,4_1_0,4_2_0,4_0_0 -30568,2,42.0,0.0,7,111,767.0,620.0,0.0,85,65,0.0,773.2738611001349,1060.1276325507388,2134.0,0.0,1124.4647985254182,71,0,0,0,0,0,0,0,0,2,75.0,1,,5,133567,1,1,3,0,1,,481.0,,42,1.0,0.0,4.0,3.0,1.8,2,1,1304.3104324252,767.0,68317.78466037818,6,1,1,2,90.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031236375866233877,37954.32481132121,9,5,9,9_1,9_2,9_0_0 -30569,1,23.0,83.0,2,111,1200.0,0.0,0.0,0,46,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,31,2,2,2,2,2,2,2,1,2,20.0,2,,2,125128,1,2,0,0,2,,0.0,720.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1980.39468605925,1200.0,11760.990165788762,0,1,2,3,55.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10713383671259084,11760.990165788762,2,1,2_1,2_0_1,2_2_1,2_0_1 -30570,2,33.0,0.0,8,111,500.0,0.0,0.0,0,48,0.0,0.0,691.0871137879653,540.0,68.81308016760767,0.0,41,0,0,0,0,0,0,0,0,2,8.0,2,1999.0,6,121785,2,1,0,0,1,408.0,0.0,767.0,32,1.0,0.0,3.0,2.0,1.3,2,2,1856.72695179618,500.0,34325.50597599091,0,1,2,3,68.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015731741882485425,26404.235366146855,7,4,7,7_0,7_2,7_0_0 -30571,2,36.0,0.0,1,111,0.0,0.0,2160.0,63,43,0.0,0.0,1103.5728032490542,2160.0,0.0,2469.410873249684,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,129819,2,1,1,0,1,,380.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,1205.64019996767,0.0,55821.19071380066,1,1,1,2,160.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038694982539417305,23258.829464083607,6,3,6,6_1,6_2,6_1_0 -30572,2,48.0,0.0,2,111,730.0,1266.0,0.0,37,47,0.0,238.0896761084753,1008.9871861304293,2226.0,0.0,2296.08457247287,33,0,0,0,0,0,0,0,0,2,25.0,1,,2,124907,2,1,2,0,1,,177.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1301.99752532894,730.0,95265.14098046185,1,1,0,1,160.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023366364412944454,63510.09398697456,10,5,10,10_1,10_2,10_0_1 -30573,2,52.0,0.0,6,111,179.0,714.0,0.0,0,52,0.0,0.0,247.40918673609156,893.0,0.0,1294.9481712050786,10,1,2,2,2,1,2,2,2,2,10.0,2,,4,105874,2,1,0,1,1,,0.0,307.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1615.2394316498,179.0,22258.949538710287,0,1,2,3,67.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04011869466018573,22258.949538710287,6,3,6,6_0,6_2,6_0_0 -30574,2,53.0,0.0,7,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,365.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,5,126215,2,2,0,1,2,,0.0,358.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1468.23353431185,0.0,32998.9956549006,0,1,2,3,50.0,6,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011060942697078562,32998.9956549006,8,4,8,8_0,8_2,8_0_0 -30575,2,57.0,0.0,7,111,800.0,0.0,0.0,85,78,0.0,724.6207533736205,1105.7393820607444,1700.0,344.06540083803833,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,112341,2,2,3,0,1,,300.0,,41,3.0,0.0,4.0,5.0,3.0,2,2,1205.18973401014,800.0,75953.4629739336,6,7,1,2,100.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02238212628413561,25317.820991311197,7,4,7,7_1,7_2,7_0_0 -30576,2,29.0,0.0,5,111,200.0,0.0,0.0,84,43,0.0,0.0,276.4348455151861,826.0,84.29602320531939,0.0,41,0,0,0,0,0,0,0,0,2,35.0,2,,3,132429,2,1,0,1,1,432.0,0.0,625.0,42,1.0,0.0,3.0,2.0,1.5,1,1,1735.45140483711,200.0,43001.68410397005,3,1,2,3,60.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019208550018712897,28667.7894026467,8,4,8,8_0,8_2,8_0_0 -30577,2,44.0,0.0,2,111,809.0,1150.0,0.0,67,67,0.0,0.0,1118.178950108928,1959.0,0.0,2085.7008359745664,42,0,0,0,0,0,0,0,0,2,5.0,1,,2,108124,2,2,2,0,1,,549.0,386.0,43,2.0,0.0,4.0,3.0,1.8,2,1,1161.32775531298,809.0,37655.378455409664,4,1,2,3,60.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052024440607330164,20919.654697449812,5,3,5,5_1,5_2,5_0_1 -30578,2,65.0,0.0,6,111,340.0,0.0,0.0,0,77,2987.1697540360015,0.0,469.9392373758164,2460.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,123517,2,1,2,0,1,,157.0,,11,0.0,2.0,6.0,1.0,1.0,2,2,1377.53988987577,340.0,19888.98666115603,0,5,0,1,200.0,6,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12368654280433887,19888.98666115603,5,3,5,5_1,5_2,5_0_0 -30579,2,38.0,0.0,2,111,700.0,0.0,0.0,52,62,0.0,1242.2070057833494,967.5219593031513,1970.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,128210,2,2,1,0,1,,153.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,1186.79021722784,700.0,45949.13091111929,1,1,1,2,120.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04287349860459008,21880.538529104422,6,3,6,6_1,6_2,6_0_1 -30580,2,67.0,0.0,2,111,260.0,0.0,0.0,0,75,2987.1697540360015,0.0,359.36529916974195,2310.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,126535,2,1,2,0,1,,153.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,1318.57074080916,260.0,23515.05304254567,0,5,0,1,170.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09823494745346856,23515.05304254567,6,3,6,6_1,6_2,6_0_1 -30581,2,97.0,0.0,2,111,400.0,1700.0,0.0,0,78,0.0,0.0,552.8696910303722,2100.0,0.0,3083.2099314406632,31,0,0,0,0,0,0,0,0,0,,1,,2,113332,2,1,3,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1348.42680198276,400.0,11388.608693476659,0,5,0,1,70.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18439478047945138,11388.608693476659,2,1,2_0,2_1_0,2_2_0,2_0_1 -30582,2,53.0,0.0,1,111,1700.0,0.0,0.0,52,62,0.0,0.0,2349.696186879082,1850.0,258.04905062852873,0.0,20,2,2,2,1,2,2,1,2,2,17.0,1,,1,115041,1,3,3,0,2,,321.0,400.0,43,2.0,3.0,3.0,3.0,1.8,2,2,1511.0804223049,1700.0,41149.10934365929,1,1,2,3,70.0,6,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.044958445747868135,22860.61630203294,6,3,6,6_1,6_2,6_1_0 -30583,2,66.0,0.0,7,111,335.0,979.0,0.0,77,78,0.0,62.110350289167464,463.0283662379367,1374.0,0.0,1775.5661899296524,31,0,0,0,0,0,0,0,0,0,,1,,5,133090,2,1,1,0,1,,199.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1279.78928634165,335.0,21104.840271432495,5,5,0,1,87.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06510354886977496,14069.89351428833,3,2,3_0,3_1_0,3_2_0,3_0_0 -30584,2,36.0,0.0,6,221,150.0,0.0,0.0,0,62,536.1969708494622,0.0,207.32613413638958,535.0,44.72850210894499,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,4,120923,2,3,0,1,1,,168.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,957.221048251514,150.0,25674.267611653228,0,1,0,1,33.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02083798486844354,25674.267611653228,7,4,7,7_0,7_1,7_0_0 -30585,2,33.0,0.0,5,221,0.0,0.0,0.0,48,52,0.0,0.0,0.0,1052.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,102372,2,1,0,1,1,1686.0,0.0,695.0,43,2.0,0.0,3.0,4.0,2.1,2,2,861.358907909985,0.0,41066.0164407092,4,1,2,3,78.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025617288726284652,19555.24592414724,5,3,5,5_0,5_1,5_0_0 -30586,2,60.0,0.0,5,221,390.0,0.0,0.0,55,64,2389.735803228801,0.0,539.0479487546129,1990.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,3,128918,1,1,0,1,1,,400.0,,43,3.0,3.0,5.0,3.0,2.0,2,2,856.07036957141,390.0,62820.484433608755,1,1,0,1,88.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031677565334649924,31410.242216804378,8,4,8,8_0,8_1,8_0_0 -30587,2,26.0,0.0,9,221,0.0,0.0,0.0,0,52,0.0,0.0,0.0,503.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,2009.0,6,124535,2,1,0,0,1,,28.0,415.0,12,1.0,0.0,2.0,1.0,1.0,7,6,934.896723939725,0.0,21860.194243840946,0,1,2,3,37.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0230098595826393,21860.194243840946,6,3,6,6_0,6_1,6_0_0 -30588,2,87.0,0.0,1,221,271.0,0.0,0.0,0,75,0.0,0.0,374.56921567307717,951.0,1169.8223628493304,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,116092,2,3,4,0,1,,142.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,586.629302584556,271.0,24249.424140236806,0,5,0,1,80.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03921742613351449,24249.424140236806,7,4,7,7_1,7_1,7_1_0 -30589,2,55.0,0.0,9,221,900.0,0.0,0.0,85,22,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,115118,2,1,1,0,1,,627.0,,41,0.0,3.0,3.0,2.0,1.5,3,2,537.303306801294,900.0,23339.51799847075,7,5,1,2,89.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038561207650430904,15559.678665647167,3,2,3_0,3_1_0,3_1_0,3_0_0 -30590,0,24.0,0.0,6,221,600.0,0.0,0.0,43,43,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,113384,2,1,2,1,1,,341.0,,43,2.0,0.0,6.0,2.0,1.5,3,3,601.79328352998,600.0,50183.1594651762,1,1,5,0,120.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01195620216810702,33455.4396434508,8,4,8,8_1,8_1,8_0_0 -30591,0,92.0,0.0,2,221,300.0,0.0,0.0,0,86,0.0,414.0690019277831,414.65226827277917,780.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104274,2,3,0,1,1,,800.0,,11,0.0,1.0,3.0,1.0,1.0,3,2,786.860916600386,300.0,9365.43786410377,0,6,0,1,80.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08328494741176125,9365.43786410377,1,1,1_0,1_0_0,1_1_0,1_0_1 -30592,2,37.0,0.0,7,221,0.0,0.0,0.0,31,38,0.0,0.0,0.0,504.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,119661,2,1,2,0,1,,519.0,,43,2.0,0.0,5.0,2.0,1.5,4,4,553.894630044727,0.0,56748.36684978826,1,1,1,2,140.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008881312854942196,37832.24456652551,9,5,9,9_1,9_1,9_0_0 -30593,0,75.0,0.0,5,221,421.0,0.0,0.0,0,77,2804.952399039805,0.0,581.8953498094668,2349.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110237,2,1,2,0,1,,164.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,636.892800834923,421.0,19878.06384745052,0,5,0,1,85.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11817046257758515,19878.06384745052,5,3,5,5_1,5_1,5_0_0 -30594,2,44.0,0.0,2,221,414.0,0.0,0.0,54,62,0.0,0.0,572.2201302164352,1522.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,132994,1,1,0,1,1,324.0,0.0,401.0,43,4.0,0.0,4.0,4.0,2.5,2,2,847.040762723085,414.0,23837.97165418796,4,1,2,3,83.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06384771414612402,9535.188661675184,1,1,1_0,1_0_0,1_1_0,1_0_1 -30595,2,65.0,0.0,1,221,500.0,0.0,0.0,75,77,2240.377315527001,144.92415067472407,691.0871137879653,2440.0,516.0981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,120722,2,1,4,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,543.535075909999,500.0,34268.56702872626,5,5,0,1,150.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07120227694244188,22845.711352484173,6,3,6,6_1,6_1,6_1_0 -30596,2,66.0,0.0,1,221,1945.0,0.0,0.0,0,72,0.0,0.0,2688.328872635185,1995.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,116592,2,2,4,0,1,,552.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,570.552567793936,1945.0,17660.871371971,0,5,0,1,65.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.112961583716996,17660.871371971,4,2,4_0,4_1_0,4_1_0,4_1_0 -30597,2,59.0,0.0,7,221,700.0,0.0,0.0,43,11,0.0,0.0,967.5219593031513,800.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,114129,2,1,2,0,1,,258.0,,43,2.0,1.0,6.0,3.0,2.0,1,1,579.159145879608,700.0,30580.239756934687,1,1,0,1,135.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026160684362148724,15290.119878467343,3,2,3_0,3_1_0,3_1_0,3_0_0 -30598,2,52.0,0.0,9,221,1200.0,0.0,0.0,31,34,0.0,724.6207533736205,1658.6090730911167,1930.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,114426,2,2,1,0,1,,342.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,569.861526559644,1200.0,148783.05812665372,1,1,1,2,160.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012971907045740784,99188.70541776915,10,5,10,10_1,10_1,10_0_0 -30599,2,57.0,0.0,2,221,600.0,0.0,0.0,0,38,2987.1697540360015,0.0,829.3045365455583,2650.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122601,2,1,1,0,1,,200.0,,32,1.0,2.0,7.0,2.0,1.5,2,2,555.725248135132,600.0,52840.294516207156,0,1,1,2,150.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05015112092509615,35226.86301080477,9,5,9,9_1,9_1,9_0_1 -30601,1,34.0,100.0,5,221,676.0,0.0,0.0,63,31,0.0,165.62760077111324,934.3497778413291,836.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,3,104615,1,2,0,0,1,,331.0,600.0,43,2.0,0.0,2.0,3.0,1.8,2,2,890.336064073622,676.0,62304.35335670334,1,1,3,4,42.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013418002995934385,34613.529642612964,9,5,9,9_0,9_1,9_0_0 -30602,2,68.0,0.0,2,221,0.0,0.0,0.0,0,78,0.0,0.0,0.0,985.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127380,1,2,0,0,2,,75.0,300.0,11,0.0,3.0,2.0,1.0,1.0,6,3,1113.36992703248,0.0,18112.219714610168,0,5,2,3,22.0,1,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.054383174206166056,18112.219714610168,4,2,4_0,4_0_0,4_1_0,4_0_1 -30603,2,41.0,0.0,5,221,960.0,0.0,0.0,54,45,0.0,0.0,1326.8872584728933,1631.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,3,110544,2,1,0,1,1,,317.0,,43,2.0,0.0,5.0,4.0,2.1,3,1,635.424626407589,960.0,52013.63985579615,1,1,1,2,90.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0313571594782027,24768.3999313315,7,4,7,7_0,7_1,7_0_0 -30604,0,81.0,0.0,2,221,760.0,0.0,0.0,0,71,1414.4248785360467,0.0,1050.452412957707,1757.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116026,2,2,0,1,1,,600.0,,11,0.0,4.0,3.0,1.0,1.0,3,1,746.86983955524,760.0,14423.477998814602,0,5,0,1,80.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12181527923739334,14423.477998814602,3,2,3_0,3_0_0,3_1_0,3_0_1 -30605,2,47.0,0.0,1,221,700.0,0.0,0.0,54,63,0.0,760.8517910423014,967.5219593031513,1435.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,128744,1,3,3,0,2,,445.0,,42,1.0,0.0,6.0,4.0,2.3,2,2,558.122024213099,700.0,30092.74083313238,6,1,0,1,200.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0476859189382993,13083.80036223147,2,1,2_0,2_1_0,2_1_0,2_1_0 -30606,2,52.0,0.0,7,221,400.0,0.0,0.0,56,42,2987.1697540360015,82.81380038555662,552.8696910303722,2480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,103778,2,1,2,0,1,,500.0,,43,2.0,1.0,7.0,5.0,3.0,2,2,521.499803611484,400.0,70538.9334270853,1,1,1,2,145.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03515788911897182,23512.977809028434,6,3,6,6_1,6_1,6_0_0 -30607,2,87.0,0.0,2,221,530.0,0.0,0.0,72,72,2858.7214546124533,504.12900984707596,732.5523406152432,3167.0,405.9971729888852,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114295,2,1,2,0,1,,663.0,,41,1.0,2.0,5.0,3.0,2.0,1,1,570.234733680506,530.0,44865.36603739165,5,5,0,1,79.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07058897050701786,22432.683018695825,6,3,6,6_1,6_1,6_0_1 -30608,2,54.0,0.0,2,221,1300.0,0.0,0.0,0,21,0.0,0.0,1796.8264958487098,1360.0,103.2196202514115,0.0,43,0,0,0,0,0,0,0,0,1,2.0,2,,2,112718,2,2,0,1,1,,180.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,773.86423259112,1300.0,29658.416358396404,0,1,0,1,80.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04585544904237542,29658.416358396404,8,4,8,8_0,8_1,8_0_1 -30609,2,31.0,0.0,7,221,700.0,0.0,0.0,0,47,0.0,0.0,967.5219593031513,740.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,5,121273,2,2,0,0,1,,289.0,500.0,12,1.0,0.0,3.0,1.0,1.0,4,3,832.872115541621,700.0,21075.466570137076,0,1,2,3,54.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.035111915436716566,21075.466570137076,5,3,5,5_0,5_1,5_0_0 -30610,0,64.0,0.0,1,221,0.0,0.0,0.0,0,71,0.0,217.38622601208613,0.0,2978.0,103.2196202514115,0.0,41,2,2,2,2,1,2,2,2,0,,1,,1,107725,1,3,4,0,2,,156.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,592.226160324968,0.0,6176.761004949769,0,5,0,1,100.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.48212971128615295,6176.761004949769,1,1,1_0,1_1_0,1_1_0,1_1_0 -30611,0,92.0,0.0,1,221,1100.0,0.0,0.0,77,78,2389.735803228801,0.0,1520.3916503335236,2820.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,107379,2,1,0,1,1,,250.0,,41,0.0,7.0,3.0,2.0,1.5,1,1,653.034034429032,1100.0,39043.50131214214,5,5,0,1,100.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07222712884930245,26029.00087476143,7,4,7,7_0,7_1,7_1_0 -30612,2,50.0,0.0,1,221,1870.0,0.0,0.0,63,47,0.0,434.77245202417225,2584.66580556699,2390.0,172.03270041901916,0.0,71,2,2,2,2,1,2,2,2,2,25.0,1,,1,106588,2,3,4,0,1,,508.0,670.0,43,2.0,1.0,8.0,4.0,2.5,1,1,605.457155503383,1870.0,50742.22274588193,1,1,2,3,112.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.047100814088676564,20296.889098352774,5,3,5,5_1,5_1,5_1_0 -30613,2,31.0,0.0,1,221,0.0,0.0,0.0,43,21,0.0,942.0069793857066,0.0,2370.0,344.06540083803833,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,106172,2,1,1,0,1,,421.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,637.93774133538,0.0,63704.875259123415,1,1,0,1,120.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03720280418664792,35391.597366179674,9,5,9,9_1,9_1,9_1_0 -30614,2,87.0,0.0,1,221,120.0,0.0,0.0,0,71,0.0,0.0,165.86090730911167,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123798,2,1,2,0,2,,122.0,,11,0.0,3.0,3.0,1.0,1.0,2,1,604.965498694245,120.0,12930.290643976568,0,5,0,1,80.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009280533849090288,12930.290643976568,2,1,2_0,2_1_0,2_1_0,2_1_0 -30615,2,59.0,0.0,6,221,2000.0,0.0,0.0,67,47,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,109309,2,1,2,0,1,,130.0,,43,2.0,4.0,6.0,2.0,1.5,2,1,540.669453817903,2000.0,57006.08245209757,1,1,0,1,110.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03508397549823929,38004.05496806505,9,5,9,9_1,9_1,9_0_0 -30616,0,37.0,0.0,9,221,1100.0,0.0,0.0,22,62,0.0,144.92415067472407,1520.3916503335236,1240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,132414,1,1,0,0,1,,240.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,898.395203318451,1100.0,23099.913588564392,1,1,5,0,45.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05367985448282637,12833.285326980218,2,1,2_0,2_0_0,2_1_0,2_0_0 -30617,2,45.0,0.0,8,221,640.0,0.0,0.0,52,42,0.0,1449.241506747241,884.5915056485956,2070.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,131941,2,1,3,0,1,,552.0,,43,3.0,0.0,6.0,6.0,3.3,2,2,565.120871903287,640.0,56250.374401538495,1,1,0,1,140.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03679975505982381,17045.56800046621,4,2,4_0,4_1_0,4_1_0,4_0_0 -30618,0,88.0,0.0,5,221,324.0,0.0,0.0,0,72,0.0,0.0,447.8244497346015,688.0,626.1990295252298,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,125918,2,1,0,1,1,,218.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,780.712371108083,324.0,8626.113462128955,0,5,0,1,40.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07975781944215225,8626.113462128955,1,1,1_0,1_0_0,1_1_0,1_0_0 -30619,0,34.0,0.0,8,221,1180.0,0.0,0.0,54,47,0.0,310.55175144583734,1630.965588539598,1480.0,0.0,0.0,43,2,2,1,2,1,2,2,2,2,15.0,1,1999.0,6,128327,1,1,2,0,1,,341.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,586.338780576137,1180.0,39543.476312230225,1,1,5,0,70.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03742715962334999,21968.597951239015,6,3,6,6_1,6_1,6_0_0 -30620,2,45.0,0.0,9,112,1500.0,0.0,0.0,48,56,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,132833,2,1,1,0,1,,665.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1497.06071865184,1500.0,72095.98673230912,1,1,1,2,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020805596372090288,28838.394692923648,8,4,8,8_1,8_1,8_0_0 -30621,2,41.0,0.0,6,112,600.0,0.0,0.0,0,55,0.0,0.0,829.3045365455583,680.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,4,107037,1,1,0,0,1,,322.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1990.18957747435,600.0,43767.0374571535,0,1,0,1,34.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015536806681642498,43767.0374571535,10,5,10,10_0,10_1,10_0_0 -30622,2,27.0,0.0,6,112,545.0,0.0,0.0,55,63,0.0,0.0,753.2849540288821,611.0,113.54158227655265,0.0,71,2,2,2,1,1,2,2,2,2,10.0,2,,4,119156,1,3,0,0,1,,0.0,480.0,43,2.0,1.0,2.0,2.0,1.5,1,1,2485.00310475142,545.0,29297.0,1,1,2,3,40.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.020855377683721883,19531.333333333332,5,3,5,5_0,5_1,5_0_0 -30623,2,66.0,0.0,1,112,0.0,0.0,0.0,74,72,0.0,0.0,0.0,3850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114833,2,1,2,0,1,,229.0,,41,0.0,1.0,3.0,2.0,1.5,3,2,1931.3527587888,0.0,27541.1074732551,5,5,0,1,84.0,8,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13979103795076858,18360.7383155034,4,2,4_0,4_1_0,4_1_0,4_1_0 -30624,2,43.0,0.0,7,112,1284.0,0.0,0.0,0,67,0.0,0.0,1774.711708207495,1319.0,60.21144514665671,0.0,70,2,2,2,2,1,2,2,2,2,40.0,2,,5,117466,1,1,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1846.95530979688,1284.0,40899.32899492659,0,1,2,3,55.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.03224991784495088,40899.32899492659,9,5,9,9_0,9_1,9_0_0 -30625,2,50.0,0.0,6,112,1168.0,0.0,0.0,22,38,0.0,672.8621281326475,1614.379497808687,1818.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,4,103135,2,1,1,0,1,,640.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,1648.84055649264,1168.0,94982.86807344334,1,1,0,1,130.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019140293790605195,47491.43403672167,10,5,10,10_1,10_1,10_0_0 -30626,2,26.0,0.0,1,112,600.0,0.0,0.0,0,62,0.0,0.0,829.3045365455583,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,1,103882,1,2,0,0,1,,150.0,475.0,12,1.0,1.0,1.0,1.0,1.0,2,2,3200.87006066381,600.0,47314.7895802703,0,1,2,3,27.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012681024375731195,47314.7895802703,10,5,10,10_0,10_1,10_1_0 -30627,2,79.0,0.0,6,112,800.0,0.0,0.0,86,86,0.0,336.43106406632376,1105.7393820607444,1125.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,120715,2,1,4,0,1,,500.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1636.23110329663,800.0,15738.610704201077,5,5,0,1,95.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07148026094194616,10492.407136134052,2,1,2_0,2_1_0,2_1_0,2_0_0 -30628,1,41.0,142.0,8,112,800.0,0.0,0.0,0,21,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,2000.0,6,116484,2,1,0,0,1,,0.0,465.0,12,1.0,2.0,1.0,1.0,1.0,3,2,2656.919828838,800.0,2365.4461740921006,0,1,2,3,27.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.33820258045273593,2365.4461740921006,1,1,1_1,1_0_1,1_1_1,1_0_0 -30629,2,41.0,0.0,8,112,1300.0,0.0,0.0,54,52,0.0,20.703450096389155,1796.8264958487098,1380.0,103.2196202514115,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,105980,2,1,1,0,1,,788.0,,43,2.0,0.0,5.0,3.0,1.8,5,4,1724.24358373986,1300.0,60863.9602155745,1,1,1,2,120.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02267351639808136,33813.31123087472,9,5,9,9_1,9_1,9_0_0 -30630,2,60.0,0.0,2,112,500.0,0.0,0.0,75,46,0.0,1449.241506747241,691.0871137879653,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,2,121247,2,1,3,0,2,,714.0,,42,1.0,2.0,7.0,3.0,2.0,2,2,1779.47908486849,500.0,123944.64469874118,6,1,0,1,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015329423910311932,61972.32234937059,10,5,10,10_1,10_1,10_0_1 -30631,1,49.0,230.0,6,112,2127.0,0.0,0.0,0,42,0.0,0.0,2939.884582054004,2252.0,215.04087552377396,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,101094,2,2,1,0,1,,0.0,445.0,32,1.0,0.0,5.0,5.0,2.4,2,2,1352.56723917253,2127.0,45054.11243310821,0,1,2,3,75.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04998433835187724,18772.546847128422,5,3,5,5_1,5_1,5_0_0 -30632,2,46.0,0.0,2,112,1000.0,0.0,0.0,0,62,0.0,155.27587572291867,1382.1742275759307,1150.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,23.0,1,,2,118640,2,1,2,0,1,,567.0,311.0,32,1.0,0.0,4.0,2.0,1.5,1,1,1448.18298049619,1000.0,32859.2946496226,0,1,2,3,85.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03499770802332813,21906.19643308173,6,3,6,6_1,6_1,6_0_1 -30633,2,90.0,0.0,2,112,726.0,0.0,0.0,0,78,0.0,0.0,1003.4584892201256,796.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128803,2,2,2,0,1,,190.0,260.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1653.34114104614,726.0,16094.050837055542,0,5,2,3,90.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04945926964311931,16094.050837055542,4,2,4_0,4_1_0,4_1_0,4_0_1 -30634,2,75.0,0.0,5,112,1782.0,0.0,0.0,75,74,0.0,0.0,2463.034473540308,1932.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,111502,2,1,3,0,1,,416.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1594.68202528584,1782.0,47598.69696167646,5,5,0,1,95.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04058934641751911,31732.46464111764,8,4,8,8_1,8_1,8_0_0 -30635,2,59.0,0.0,1,112,1010.0,0.0,0.0,72,37,5002.015753133284,0.0,1395.9959698516898,4419.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,1,108215,2,1,2,0,1,,456.0,,42,1.0,1.0,3.0,3.0,2.0,1,1,1823.4656405449,1010.0,78931.48451662679,5,1,0,1,120.0,8,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0559852640180503,39465.742258313396,9,5,9,9_1,9_1,9_1_0 -30636,2,41.0,0.0,8,112,420.0,0.0,0.0,62,42,2240.377315527001,0.0,580.5131755818909,1990.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2001.0,6,101680,2,1,1,0,1,,470.0,,43,2.0,0.0,5.0,5.0,2.4,1,1,1480.46091389293,420.0,65530.2295160434,1,1,1,2,122.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03036766412534538,27304.26229835142,7,4,7,7_1,7_1,7_0_0 -30637,2,72.0,0.0,6,112,1316.0,0.0,0.0,78,72,0.0,724.6207533736205,1818.9412834899247,2016.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,106787,2,1,1,0,1,,352.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1636.23110329663,1316.0,28234.75492072016,5,5,0,1,88.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07140136352026744,18823.169947146773,5,3,5,5_1,5_1,5_0_0 -30638,2,53.0,0.0,1,112,500.0,0.0,0.0,0,42,4480.754631054002,0.0,691.0871137879653,3500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,133242,2,1,1,0,1,,706.0,,12,1.0,2.0,5.0,1.0,1.0,2,1,1768.7473423732,500.0,43299.86730832194,0,1,0,1,80.0,8,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08083165648240506,43299.86730832194,9,5,9,9_1,9_1,9_1_0 -30639,2,38.0,0.0,2,112,0.0,0.0,0.0,0,64,0.0,0.0,0.0,540.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,12.0,1,,2,124466,2,1,1,0,1,,138.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1618.25376056781,0.0,25711.64762207249,0,1,0,1,58.0,8,2,8,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021002154663026344,25711.64762207249,7,4,7,7_1,7_1,7_0_1 -30640,2,57.0,0.0,2,112,566.0,0.0,0.0,78,54,4480.754631054002,0.0,782.3106128079767,3698.0,227.0831645531053,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,114668,2,1,0,1,2,,380.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,2089.49027634109,566.0,54630.74474613445,5,1,0,1,110.0,8,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0676908216643278,36420.496497422966,9,5,9,9_0,9_1,9_0_1 -30641,1,75.0,255.0,1,112,120.0,0.0,0.0,0,77,0.0,0.0,165.86090730911167,340.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,101656,1,3,0,1,2,576.0,340.0,473.0,11,0.0,0.0,2.0,1.0,1.0,3,2,2456.0594387608,120.0,9308.683662559415,0,5,2,3,50.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03652503536751589,9308.683662559415,1,1,1_1,1_0_1,1_1_1,1_1_0 -30642,2,78.0,0.0,2,112,0.0,0.0,0.0,77,74,0.0,0.0,0.0,4619.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,107866,2,1,2,0,1,,375.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1644.17445187516,0.0,43151.402643044144,5,5,0,1,130.0,8,2,8,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1070417116729476,28767.60176202943,8,4,8,8_1,8_1,8_0_1 -30643,2,63.0,0.0,5,112,1000.0,0.0,0.0,0,78,0.0,0.0,1382.1742275759307,4301.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,105673,2,1,2,0,1,,320.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,1570.66376069476,1000.0,21362.403525955793,0,5,0,1,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20133502275500928,21362.403525955793,6,3,6,6_1,6_1,6_0_0 -30644,2,26.0,0.0,9,112,1140.0,0.0,0.0,42,37,0.0,155.27587572291867,1575.678619436561,1290.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,109546,2,1,1,0,1,,326.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1787.11142488159,1140.0,109059.02047297965,1,1,1,2,95.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0118284576040146,60588.34470721092,10,5,10,10_1,10_1,10_0_0 -30645,2,48.0,0.0,6,112,1200.0,0.0,0.0,0,64,5526.264044966602,776.3793786145933,1658.6090730911167,5650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,107859,1,2,3,0,1,,1500.0,,32,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,1535.97526433663,1200.0,72899.00632847642,0,1,1,2,160.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07750448578875828,28038.07935710632,8,4,8,8_1,8_1,8_0_0 -30646,2,83.0,0.0,2,112,1386.0,0.0,0.0,77,75,0.0,0.0,1915.6934794202398,1516.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103201,1,3,3,0,1,,359.0,263.0,41,0.0,2.0,3.0,2.0,1.5,5,3,1697.36308959137,1386.0,26013.271093816402,5,5,2,3,70.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058277945689051286,17342.180729210933,4,2,4_0,4_1_0,4_1_0,4_0_1 -30647,2,50.0,0.0,8,112,600.0,0.0,0.0,67,47,3733.962192545002,0.0,829.3045365455583,3220.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,100618,1,1,2,0,1,,1300.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,1507.32194340819,600.0,56475.26131090792,1,1,1,2,160.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0570161151140716,22590.104524363167,6,3,6,6_1,6_1,6_0_0 -30648,2,62.0,0.0,6,112,359.0,0.0,0.0,74,54,1317.3418615298765,0.0,496.20054769975906,1263.0,37.84719409218422,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,,4,101523,2,1,2,0,1,,321.0,,42,1.0,0.0,7.0,3.0,2.0,1,1,1725.18767267795,359.0,146961.13372372554,5,1,0,1,130.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00859410898649117,73480.56686186277,10,5,10,10_1,10_1,10_0_0 -30649,2,38.0,0.0,1,112,1200.0,0.0,0.0,22,22,0.0,124.22070057833493,1658.6090730911167,1390.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119318,2,1,1,0,1,,490.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1850.1877984274,1200.0,23751.21457636803,1,1,0,1,95.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05852332290336939,13195.119209093351,2,1,2_0,2_1_0,2_1_0,2_1_0 -30650,2,73.0,0.0,8,112,520.0,0.0,0.0,75,75,0.0,0.0,718.7305983394839,640.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106068,2,1,1,0,1,,330.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,1608.07683884857,520.0,29071.79903700006,5,5,0,1,109.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022014461478130874,19381.199358000038,5,3,5,5_1,5_1,5_0_0 -30651,2,28.0,0.0,1,112,1100.0,0.0,0.0,0,63,0.0,0.0,1520.3916503335236,1160.0,103.2196202514115,0.0,20,2,2,2,2,1,2,2,2,2,60.0,1,,1,117019,2,3,1,0,1,,0.0,390.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1816.94088644155,1100.0,23142.62946929853,0,1,3,4,50.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0501239498968291,23142.62946929853,6,3,6,6_1,6_1,6_1_0 -30652,2,51.0,0.0,6,112,495.0,0.0,0.0,54,48,0.0,414.0690019277831,684.1762426500857,1035.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,108528,2,2,2,0,1,,436.0,,43,2.0,2.0,4.0,4.0,2.3,2,2,1612.02090181148,495.0,111150.63376331702,1,1,0,1,94.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00931168779661588,48326.36250579001,10,5,10,10_1,10_1,10_0_0 -30653,2,52.0,0.0,9,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,938.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,132317,2,2,0,0,1,700.0,0.0,558.0,32,1.0,3.0,3.0,2.0,1.5,1,1,1916.56713604369,0.0,29714.452024794664,0,1,2,3,74.0,8,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03156713101144533,19809.634683196444,5,3,5,5_0,5_1,5_0_0 -30654,2,54.0,0.0,1,112,1100.0,0.0,0.0,85,63,0.0,1242.2070057833494,1520.3916503335236,2370.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,122289,1,2,1,0,2,,613.0,,42,1.0,0.0,6.0,2.0,1.5,4,3,1638.09942791983,1100.0,25356.0,6,4,1,2,80.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0934690014197823,16904.0,4,2,4_0,4_1_0,4_1_0,4_1_0 -30655,2,68.0,0.0,2,112,300.0,0.0,0.0,77,77,0.0,0.0,414.65226827277917,364.0,110.10092826817227,0.0,31,2,1,2,2,1,2,2,2,0,,2,,2,102293,1,2,0,1,2,501.0,0.0,480.0,41,0.0,5.0,3.0,2.0,1.5,1,1,2259.50982173123,300.0,28679.347638554016,5,5,2,3,58.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012692059965501799,19119.565092369343,5,3,5,5_0,5_1,5_0_1 -30656,2,45.0,0.0,1,112,600.0,0.0,0.0,37,65,3733.962192545002,0.0,829.3045365455583,3200.0,172.03270041901916,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,1,118363,2,1,2,0,1,,397.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1486.37776197026,600.0,75276.5804824126,1,1,0,1,115.0,8,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042509901213533985,32728.948035831567,8,4,8,8_1,8_1,8_1_0 -30657,2,64.0,0.0,5,112,2400.0,0.0,0.0,55,72,0.0,0.0,3317.2181461822333,2520.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,105495,2,1,3,0,1,,540.0,,42,2.0,1.0,6.0,3.0,2.0,2,2,1531.802836287,2400.0,112012.44704917364,1,5,0,1,150.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022497499754591702,56006.22352458682,10,5,10,10_1,10_1,10_0_0 -30658,2,26.0,0.0,8,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,384.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,2003.0,6,111413,2,1,0,1,1,500.0,0.0,650.0,12,1.0,0.0,3.0,1.0,1.0,5,4,2617.21357156064,0.0,37140.52385197747,0,1,3,4,70.0,8,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010339111034901429,37140.52385197747,9,5,9,9_0,9_1,9_0_0 -30659,2,26.0,0.0,1,112,900.0,0.0,0.0,64,63,0.0,496.8828023133397,1243.9568048183376,1520.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,106395,1,1,1,0,2,,0.0,320.0,43,2.0,0.0,5.0,2.0,1.5,4,3,1846.8203046383,900.0,14613.22688694136,1,1,3,4,100.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10401535620844285,9742.151257960906,2,1,2_0,2_1_0,2_1_0,2_1_0 -30660,2,42.0,0.0,9,112,2106.0,0.0,0.0,85,38,0.0,0.0,2910.8589232749096,2176.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,107524,2,1,1,0,1,,441.0,,42,1.0,0.0,7.0,5.0,2.4,3,2,1576.74282540486,2106.0,123086.29743122788,6,1,1,2,120.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017678653476564266,51285.957263011616,10,5,10,10_1,10_1,10_0_0 -30661,2,63.0,0.0,5,112,652.0,0.0,0.0,78,54,2867.682963874561,0.0,901.1775963795067,2712.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,101347,2,1,1,0,2,,423.0,,42,1.0,3.0,4.0,2.0,1.5,1,1,1594.68202528584,652.0,44186.91629637017,5,1,0,1,81.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06137563395033256,29457.944197580113,8,4,8,8_1,8_1,8_0_0 -30662,2,64.0,0.0,2,111,0.0,0.0,360.0,0,74,0.0,0.0,183.92880054150902,360.0,0.0,411.56847887494735,71,2,2,2,2,1,2,2,2,0,,2,,2,128228,1,2,0,1,2,,248.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,2033.27088619799,0.0,32547.57254291999,0,5,0,1,48.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011060732702116985,32547.57254291999,8,4,8,8_0,8_2,8_0_1 -30663,2,65.0,0.0,9,111,1550.0,0.0,0.0,0,31,0.0,0.0,2142.370052742692,1550.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,7.0,1,2012.0,6,129993,2,1,1,0,1,,190.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1007.21174844897,1550.0,113524.36872891337,0,1,0,1,94.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013653456234592852,113524.36872891337,10,5,10,10_1,10_2,10_0_0 -30664,2,66.0,0.0,6,111,450.0,1100.0,0.0,0,75,0.0,0.0,621.9784024091688,1550.0,0.0,1995.0181909321939,50,0,0,0,0,0,0,0,0,0,,2,,4,102007,2,1,0,0,1,,290.0,485.0,11,0.0,3.0,4.0,1.0,1.0,1,1,2204.89641024452,450.0,21886.7775951539,0,5,2,3,92.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07081901359216973,21886.7775951539,6,3,6,6_0,6_2,6_0_0 -30665,2,67.0,0.0,5,111,240.0,0.0,0.0,0,77,0.0,0.0,331.72181461822333,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,131350,1,2,0,1,2,720.0,0.0,340.0,11,0.0,1.0,4.0,1.0,1.0,1,1,310.226310724391,240.0,16787.58145866519,0,5,2,3,50.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014296282081545462,16787.58145866519,4,2,4_0,4_0_0,4_2_0,4_0_0 -30666,2,51.0,0.0,9,120,400.0,0.0,0.0,0,67,0.0,207.03450096389156,552.8696910303722,640.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,114216,2,1,1,0,1,,142.0,,12,1.0,2.0,2.0,1.0,1.0,2,2,1924.4964014516,400.0,15890.318403652378,0,1,1,2,70.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040276096661027036,15890.318403652378,3,2,3_0,3_1_0,3_0_0,3_0_0 -30667,2,54.0,0.0,5,111,360.0,1100.0,0.0,0,55,0.0,0.0,497.582721927335,1460.0,0.0,1995.0181909321939,50,2,2,2,2,2,2,2,1,3,1.0,2,,3,116222,1,3,0,1,1,1200.0,0.0,415.0,12,1.0,1.0,4.0,1.0,1.0,1,1,289.928475290058,360.0,15146.102137912309,0,1,2,3,83.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.09639443777059079,15146.102137912309,3,2,3_0,3_0_0,3_2_0,3_0_0 -30668,2,31.0,0.0,9,111,1500.0,0.0,0.0,42,42,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,111010,2,1,1,0,1,,125.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1049.13112224561,1500.0,30861.14307063659,1,1,1,2,120.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04860481015128707,14695.782414588852,3,2,3_0,3_1_0,3_2_0,3_0_0 -30669,1,52.0,255.0,8,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,404.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,112029,1,2,0,0,1,,322.0,332.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1713.47603509792,0.0,11793.183486238533,0,7,2,3,58.0,6,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034257077444052965,11793.183486238533,2,1,2_1,2_0_1,2_2_1,2_0_0 -30670,2,91.0,0.0,2,111,220.0,0.0,0.0,0,74,4480.754631054002,0.0,304.0783300667047,3220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104481,2,1,2,0,1,,78.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1681.63120219161,220.0,44803.351096566585,0,5,0,1,100.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07186962406137425,44803.351096566585,10,5,10,10_1,10_2,10_0_1 -30671,1,26.0,150.0,9,112,0.0,0.0,0.0,43,62,0.0,0.0,0.0,2486.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,2013.0,6,102362,2,1,1,0,1,,0.0,580.0,43,2.0,0.0,4.0,2.0,1.5,1,1,5058.17067947629,0.0,31194.53807281862,1,1,2,3,115.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07969343845377141,20796.358715212413,5,3,5,5_1,5_0,5_0_0 -30672,2,38.0,0.0,1,111,350.0,1300.0,0.0,42,42,0.0,0.0,483.76097965157567,1650.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,1,,1,104754,2,2,2,0,1,,550.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,1305.04772181394,350.0,61335.0,1,1,1,2,85.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02690144289557349,25556.25,7,4,7,7_1,7_2,7_1_0 -30673,2,58.0,0.0,5,111,290.0,0.0,0.0,0,45,0.0,0.0,400.8305259970199,451.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,2,,3,118057,2,2,0,1,1,,300.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,314.924255195631,290.0,28842.471323463324,0,1,1,2,89.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015636662855346654,28842.471323463324,8,4,8,8_0,8_2,8_0_0 -30674,1,81.0,22.0,1,111,0.0,0.0,1504.0,77,77,0.0,0.0,768.4136555956377,1504.0,0.0,1719.4416450775577,50,0,0,0,0,0,0,0,0,0,,2,,1,114672,2,3,0,0,1,,326.0,509.0,41,0.0,2.0,3.0,2.0,1.5,1,1,2073.30257512136,0.0,17104.844828710222,5,5,2,3,65.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0879283042355087,11403.229885806815,2,1,2_1,2_0_1,2_2_1,2_1_0 -30675,1,40.0,24.0,5,111,260.0,0.0,0.0,0,52,0.0,0.0,359.36529916974195,632.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,3,124088,2,2,0,1,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,292.79575935125,260.0,23668.916011480236,0,1,1,2,85.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026701687550602586,18206.85847036941,4,2,4_1,4_0_1,4_2_1,4_0_0 -30676,1,62.0,160.0,9,111,0.0,1340.0,0.0,0,77,0.0,0.0,0.0,1670.0,0.0,2430.2948871355816,20,0,0,0,0,0,0,0,0,0,,2,2012.0,6,113909,2,3,0,0,1,,149.0,330.0,11,0.0,0.0,3.0,1.0,1.0,2,2,6219.15520685705,0.0,13673.6789456798,0,5,2,3,70.0,6,4,8,0,1,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12213245657107055,13673.6789456798,3,2,3_1,3_0_1,3_2_1,3_0_0 -30677,2,39.0,0.0,9,111,572.0,770.0,0.0,38,33,0.0,0.0,790.6036581734322,1342.0,0.0,1396.5127336525356,50,1,2,2,1,1,2,2,2,2,30.0,1,2012.0,6,121717,2,1,1,0,1,,161.0,,43,2.0,0.0,6.0,4.0,2.1,4,3,809.996901609531,572.0,54910.388723159434,1,1,1,2,130.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.024439819699072492,26147.804153885445,7,4,7,7_1,7_3,7_0_0 -30678,2,75.0,0.0,1,111,270.0,1050.0,0.0,0,77,0.0,0.0,373.1870414455012,1320.0,0.0,1904.3355458898213,71,0,0,0,0,0,0,0,0,0,,1,,1,106419,1,2,3,0,2,,145.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,1471.78384851886,270.0,17094.676112450616,0,5,0,1,58.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07721702308466673,17094.676112450616,4,2,4_0,4_1_0,4_2_0,4_1_0 -30679,1,47.0,436.0,2,111,660.0,0.0,0.0,85,85,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,119757,1,2,0,1,1,1044.0,355.0,386.0,41,1.0,5.0,5.0,6.0,3.0999999999999996,2,2,1853.36893734611,660.0,20832.35064271442,6,7,2,3,92.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03168149438915181,6720.113110553039,1,1,1_1,1_0_1,1_2_1,1_0_1 -30680,2,66.0,0.0,6,111,600.0,1500.0,0.0,77,75,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,20,0,0,0,0,0,0,0,0,0,,1,,4,127641,2,1,2,0,1,,380.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,239.583057151248,600.0,24692.795814388868,5,5,0,1,130.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08504504778581201,16461.863876259245,4,2,4_0,4_1_0,4_2_0,4_0_0 -30681,2,42.0,0.0,9,112,1800.0,0.0,0.0,54,47,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,130505,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,1,1,1996.86353682788,1800.0,51948.90170457993,1,1,1,2,122.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03464943321104531,19980.346809453822,5,3,5,5_1,5_0,5_0_0 -30682,2,48.0,0.0,9,112,800.0,0.0,0.0,63,46,0.0,414.0690019277831,1105.7393820607444,1280.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,101882,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1814.87001611485,800.0,43488.3082264475,4,1,1,2,100.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029433198305506062,17395.323290579,4,2,4_0,4_1_0,4_0_0,4_0_0 -30683,2,45.0,0.0,9,112,1050.0,0.0,0.0,0,52,0.0,0.0,1451.2829389547271,1076.0,44.72850210894499,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,128531,2,1,1,0,1,,264.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1801.92179261341,1050.0,18834.287294824764,0,1,1,2,62.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05712984957469883,18834.287294824764,5,3,5,5_1,5_0,5_0_0 -30684,2,76.0,0.0,2,111,258.0,89.0,0.0,0,77,0.0,0.0,356.6009507145901,347.0,0.0,161.41510817542294,50,0,0,0,0,0,0,0,0,0,,2,,2,113760,2,1,0,1,2,,222.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,2145.84873125237,258.0,22688.178631437306,0,5,0,1,71.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01529430835488875,22688.178631437306,6,3,6,6_0,6_2,6_0_1 -30685,1,39.0,343.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,256.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131407,2,1,0,1,1,600.0,0.0,338.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,3,3,332.080372726883,0.0,34458.67761808698,6,4,2,3,83.0,6,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007429188166687755,12762.473191884068,2,1,2_1,2_0_1,2_2_1,2_0_1 -30686,2,53.0,0.0,2,111,445.0,1042.0,0.0,0,31,0.0,0.0,615.0675312712891,1487.0,0.0,1889.8263226830418,71,0,0,0,0,0,0,0,0,0,,1,,2,120050,2,2,2,0,1,,192.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1523.71768220773,445.0,87961.1074298716,0,1,1,2,78.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016905198711663953,87961.1074298716,10,5,10,10_1,10_2,10_0_1 -30687,2,50.0,0.0,2,111,1851.0,0.0,0.0,56,62,0.0,0.0,2558.4044952430477,1921.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,4.0,1,,2,115906,2,1,2,0,1,,733.0,,43,2.0,1.0,6.0,4.0,2.3,4,4,1390.65302516838,1851.0,53002.92105438812,1,1,0,1,118.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036243285497959556,23044.748284516576,6,3,6,6_1,6_2,6_0_1 -30688,2,89.0,0.0,2,111,286.0,124.0,0.0,0,77,0.0,0.0,395.3018290867161,410.0,0.0,224.89295970508365,50,0,0,0,0,0,0,0,0,0,,2,,2,110742,2,2,0,1,1,500.0,0.0,247.0,21,0.0,1.0,3.0,2.0,1.5,2,2,296.115572697879,286.0,27860.939108362203,0,5,2,3,63.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01471594329269907,18573.959405574802,4,2,4_0,4_0_0,4_2_0,4_0_1 -30689,2,74.0,0.0,2,111,400.0,990.0,0.0,78,75,0.0,207.03450096389156,552.8696910303722,1590.0,0.0,1795.5163718389745,50,0,0,0,0,0,0,0,0,0,,1,,2,127662,2,2,1,0,1,,352.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1492.68597778715,400.0,56201.599636660765,5,5,0,1,80.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0282910096915254,37467.73309110718,9,5,9,9_1,9_2,9_0_1 -30690,0,72.0,0.0,1,111,370.0,0.0,0.0,0,74,4122.294260569682,0.0,511.40446420309434,3180.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117280,2,2,4,0,1,,177.0,,11,0.0,1.0,5.0,1.0,1.0,3,3,281.908661037843,370.0,26163.049749364476,0,5,0,1,100.0,6,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12154546318046294,26163.049749364476,7,4,7,7_1,7_2,7_1_0 -30691,2,54.0,0.0,7,111,1413.0,0.0,0.0,54,21,0.0,0.0,1953.01218356479,1413.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,118955,2,1,2,0,1,,1800.0,,43,4.0,0.0,6.0,5.0,3.0,2,2,1344.12252827965,1413.0,286288.63552010764,1,1,0,1,150.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004935578380304785,95429.54517336922,10,5,10,10_1,10_2,10_0_0 -30692,2,52.0,0.0,2,111,530.0,1120.0,0.0,56,62,0.0,0.0,732.5523406152432,1650.0,0.0,2031.2912489491428,20,2,2,2,2,1,2,2,2,0,,2,,2,117141,1,3,0,0,1,,395.0,307.0,43,2.0,1.0,3.0,2.0,1.5,2,2,563.517216803024,530.0,39668.517712638815,1,4,2,3,70.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.041594697637877515,26445.678475092544,7,4,7,7_0,7_2,7_0_1 -30693,1,77.0,28.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,688.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,110841,2,1,0,1,1,679.0,0.0,330.0,11,0.0,5.0,3.0,1.0,1.0,2,2,319.071009457053,0.0,15669.190529932333,0,5,2,3,50.0,6,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.043907820170144496,15669.190529932333,3,2,3_1,3_0_1,3_2_1,3_0_1 -30694,1,35.0,256.0,2,111,300.0,0.0,0.0,85,21,0.0,0.0,414.65226827277917,490.0,326.8621307961364,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,128648,2,2,0,1,1,760.0,180.0,256.0,42,1.0,0.0,3.0,4.0,2.1,1,1,258.242005682238,300.0,19374.775057486528,6,1,2,3,70.0,6,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025290616203085214,9226.08336070787,1,1,1_1,1_0_1,1_2_1,1_0_1 -30695,2,66.0,0.0,2,111,537.0,989.0,0.0,78,74,0.0,0.0,742.2275602082747,1526.0,0.0,1793.702718938127,71,0,0,0,0,0,0,0,0,0,,1,,2,110693,2,2,1,0,1,,513.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,1493.18194306547,537.0,30772.53004132935,5,5,0,1,114.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04958968267966562,20515.020027552902,5,3,5,5_1,5_2,5_0_1 -30696,0,24.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,117.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101962,2,1,0,1,1,,0.0,,32,1.0,0.0,2.0,3.0,1.6,6,4,335.3334688668,0.0,1842.2845154905663,0,4,5,0,45.0,6,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06350810584153722,1151.427822181604,1,1,1_0,1_0_0,1_2_0,1_0_1 -30697,1,22.0,295.0,1,111,0.0,0.0,1100.0,85,81,0.0,0.0,562.0046683212776,1100.0,0.0,1257.5703521178948,50,0,0,0,0,0,0,0,0,0,,2,,1,107529,1,3,0,0,1,,300.0,270.0,42,1.0,0.0,4.0,3.0,1.8,1,1,1820.296677372,0.0,9113.057894982783,7,4,2,3,76.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12070591591496503,5062.809941657101,1,1,1_1,1_0_1,1_2_1,1_1_0 -30698,2,42.0,0.0,6,111,256.0,0.0,0.0,62,43,0.0,455.47590212056144,353.8366022594382,786.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,127172,2,1,2,0,1,,233.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,215.347757385005,256.0,46436.44909533178,1,1,1,2,128.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016926358826153568,19348.520456388243,5,3,5,5_1,5_2,5_0_0 -30699,2,75.0,0.0,1,111,321.0,1238.0,0.0,0,78,0.0,0.0,443.6779270518737,1559.0,0.0,2245.302291249142,10,0,0,0,0,0,0,0,0,0,,1,,1,117006,2,1,1,0,1,,273.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1494.32684418765,321.0,20352.982207022535,0,5,0,1,62.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0765981114778397,20352.982207022535,5,3,5,5_1,5_2,5_1_0 -30700,1,41.0,235.0,5,111,770.0,100.0,0.0,43,56,0.0,0.0,1064.2741552334664,870.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,3,127294,2,1,0,1,1,918.0,0.0,313.0,43,2.0,0.0,5.0,6.0,3.0999999999999996,1,1,302.227268131614,770.0,35612.87622641637,1,1,2,3,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024429366346845775,11488.02458916657,2,1,2_1,2_0_1,2_3_1,2_0_0 -30701,1,71.0,271.0,2,111,600.0,0.0,0.0,77,78,0.0,0.0,829.3045365455583,900.0,516.0981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,120972,2,1,0,1,1,1170.0,200.0,288.0,41,0.0,3.0,3.0,2.0,1.5,2,1,575.382616905269,600.0,15141.891214732768,5,5,2,3,70.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05943775366212626,10094.594143155178,2,1,2_1,2_0_1,2_2_1,2_0_1 -30702,2,32.0,0.0,2,111,224.0,0.0,0.0,90,65,0.0,0.0,309.60702697700845,256.0,55.050464134086134,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,123575,2,1,0,1,1,298.0,0.0,277.0,43,2.0,0.0,4.0,3.0,1.8,1,1,335.587330830145,224.0,31823.366991496812,1,1,2,3,67.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008044403348910349,17679.64832860934,4,2,4_0,4_0_0,4_3_0,4_0_1 -30703,2,39.0,0.0,2,111,250.0,30.0,0.0,0,55,0.0,0.0,345.54355689398267,280.0,0.0,54.40958702542347,33,0,0,0,0,0,0,0,0,2,5.0,2,,2,124325,2,1,0,1,1,,110.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,2070.99595784919,250.0,17371.912560246426,0,1,0,1,62.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016117971986616315,17371.912560246426,4,2,4_0,4_0_0,4_2_0,4_0_1 -30704,2,73.0,0.0,6,111,420.0,1120.0,0.0,68,78,0.0,0.0,580.5131755818909,1540.0,0.0,2031.2912489491428,41,0,0,0,0,0,0,0,0,0,,1,,4,102467,2,1,2,0,1,,450.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,238.543486709403,420.0,31493.979748199235,5,5,0,1,80.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04889823427564927,20995.98649879949,5,3,5,5_1,5_3,5_0_0 -30705,2,81.0,0.0,2,111,451.0,1292.0,0.0,77,78,0.0,0.0,623.3605766367447,1743.0,0.0,2343.239547894904,71,0,0,0,0,0,0,0,0,0,,1,,2,107143,2,2,1,0,2,,548.0,,41,1.0,2.0,4.0,3.0,2.0,1,1,484.068560078316,451.0,41064.81123461325,5,5,0,1,96.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04244509952917639,20532.405617306624,5,3,5,5_1,5_2,5_0_1 -30706,2,39.0,0.0,2,111,752.0,0.0,0.0,62,48,0.0,0.0,1039.3950191370998,752.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,124881,2,2,0,1,1,,0.0,,43,3.0,0.0,6.0,7.0,3.6,1,1,366.256393146644,752.0,69807.97782549768,1,1,1,2,103.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010772407730815668,19391.104951527133,5,3,5,5_0,5_3,5_0_1 -30707,2,40.0,0.0,2,111,196.0,557.0,0.0,0,62,0.0,0.0,270.9061486048824,753.0,0.0,1010.204665772029,71,2,2,2,1,1,2,2,2,1,10.0,2,,2,100144,1,3,0,0,1,,233.0,201.0,12,1.0,0.0,1.0,1.0,1.0,1,1,596.690078248948,196.0,22446.449151786735,0,1,2,3,39.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03354650862183524,22446.449151786735,6,3,6,6_0,6_2,6_0_1 -30708,1,25.0,260.0,1,400,0.0,0.0,0.0,68,68,0.0,0.0,0.0,1105.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,8,,1,129060,1,1,0,1,2,,450.0,415.0,43,2.0,0.0,6.0,2.0,1.5,2,2,1992.86056177725,0.0,19990.192340684145,1,1,2,3,80.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05527710695164739,13326.79489378943,3,2,3_1,3_0_1,3_0_1,3_1_0 -30709,2,88.0,0.0,1,111,750.0,130.0,0.0,0,77,0.0,0.0,1036.630670681948,880.0,0.0,235.77487711016835,71,0,0,0,0,0,0,0,0,0,,1,,1,125796,2,1,2,0,1,,131.0,,21,0.0,1.0,5.0,2.0,1.5,1,1,258.337963004235,750.0,26783.357029293726,0,5,0,1,70.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0328562248204181,17855.571352862484,4,2,4_0,4_1_0,4_3_0,4_1_0 -30710,2,77.0,0.0,1,400,500.0,0.0,0.0,0,78,1344.2263893162005,0.0,691.0871137879653,1400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,116987,2,1,0,1,1,,180.0,296.0,11,0.0,3.0,3.0,1.0,1.0,3,3,2206.23145764261,500.0,18312.79995353723,0,5,2,3,70.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07644925972827991,18312.79995353723,4,2,4_0,4_0_0,4_0_0,4_1_0 -30711,1,42.0,99.0,2,111,150.0,0.0,0.0,0,64,0.0,0.0,207.32613413638958,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,122272,2,1,0,1,1,259.0,0.0,197.0,12,1.0,0.0,2.0,1.0,1.0,3,3,386.191606883607,150.0,11700.947907541977,0,1,2,3,51.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012819474215701433,11700.947907541977,2,1,2_1,2_0_1,2_3_1,2_0_1 -30712,2,55.0,0.0,1,400,2010.0,0.0,0.0,0,67,0.0,103.51725048194578,2778.17019742762,2206.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,1,117776,2,1,1,0,2,,208.0,,32,1.0,0.0,4.0,2.0,1.3,4,3,1567.66423418608,2010.0,17540.325376170975,0,1,0,1,60.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12576733627740527,13492.557981669981,3,2,3_0,3_1_0,3_0_0,3_1_0 -30713,1,37.0,271.0,5,111,106.0,282.0,0.0,0,52,0.0,0.0,146.51046812304864,388.0,0.0,511.4501180389806,70,0,0,0,0,0,0,0,0,0,,2,,3,127716,2,1,0,1,1,509.0,0.0,293.0,32,1.0,1.0,4.0,2.0,1.3,1,1,290.432328511972,106.0,13550.105777496765,0,4,2,3,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02863446281315147,10423.158290382127,2,1,2_1,2_0_1,2_3_1,2_0_0 -30714,2,72.0,0.0,1,400,549.0,0.0,0.0,86,78,2800.471644408751,0.0,758.8136509391859,2535.0,190.95629746511128,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113353,2,1,2,0,2,,146.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,1247.01001835913,549.0,17918.048011851137,5,5,0,1,70.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14147746441595263,11945.365341234092,2,1,2_0,2_1_0,2_0_0,2_1_0 -30715,1,34.0,174.0,5,111,260.0,0.0,0.0,52,21,0.0,0.0,359.36529916974195,260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,105989,2,1,0,1,1,324.0,0.0,312.0,43,2.0,0.0,4.0,5.0,2.4,5,5,321.432285599044,260.0,42102.17702500542,4,1,2,3,83.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0061754526338526445,17542.573760418923,4,2,4_1,4_0_1,4_3_1,4_0_0 -30716,2,50.0,0.0,9,400,0.0,0.0,0.0,22,64,0.0,0.0,0.0,1630.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126820,2,1,1,0,1,,251.0,421.0,43,3.0,2.0,6.0,4.0,2.3,2,2,1395.23052369493,0.0,28861.67548631504,1,1,2,3,190.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05647627771204328,12548.55455926741,2,1,2_0,2_1_0,2_0_0,2_0_0 -30717,2,88.0,0.0,2,111,316.0,0.0,0.0,0,86,0.0,0.0,436.76705591399406,316.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124151,2,1,0,1,1,430.0,0.0,265.0,21,0.0,1.0,3.0,3.0,2.0,1,1,354.390237891474,316.0,46503.294572933264,0,6,2,3,70.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006795217476568302,23251.647286466632,6,3,6,6_0,6_3,6_0_1 -30718,2,80.0,0.0,1,400,695.0,0.0,0.0,86,75,1194.8679016144006,0.0,960.6110881652718,1495.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,104457,2,2,2,0,1,,208.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1196.01002481494,695.0,60438.61316552454,6,5,0,1,96.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024735842232276428,40292.40877701636,9,5,9,9_1,9_0,9_1_0 -30719,2,64.0,0.0,6,111,2500.0,0.0,0.0,77,75,0.0,51.75862524097289,3455.435568939826,2550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124855,2,2,2,0,1,,480.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,243.480511989212,2500.0,52210.07148404715,5,5,0,1,110.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0488411512859,34806.7143226981,9,5,9,9_1,9_3,9_0_0 -30720,2,64.0,0.0,1,400,200.0,0.0,0.0,0,78,0.0,295.0241638735455,276.4348455151861,541.0,96.33831223465073,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,128809,2,1,1,0,1,,90.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1275.21897174945,200.0,21431.327366394242,0,5,1,2,50.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025243420099509296,21431.327366394242,6,3,6,6_1,6_0,6_1_0 -30721,1,43.0,186.0,2,111,400.0,0.0,0.0,52,52,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,2,,2,103096,2,2,0,1,1,622.0,0.0,377.0,43,2.0,0.0,5.0,6.0,3.0999999999999996,1,1,271.272707335136,400.0,48352.68784522651,1,1,2,3,93.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008272549424354058,15597.64124039565,3,2,3_1,3_0_1,3_3_1,3_0_1 -30722,2,74.0,0.0,1,400,1321.0,0.0,0.0,0,78,0.0,0.0,1825.8521546278043,1461.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102622,2,1,2,0,1,,198.0,,11,0.0,0.0,2.0,1.0,1.0,5,3,1547.18184610115,1321.0,14429.666163272435,0,5,0,1,43.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1012497436509416,14429.666163272435,3,2,3_0,3_1_0,3_0_0,3_1_0 -30723,1,26.0,329.0,2,111,630.0,50.0,0.0,0,55,0.0,0.0,870.7697633728362,680.0,0.0,90.68264504237244,71,2,1,2,2,1,2,2,2,0,,2,,2,129777,1,3,0,1,1,320.0,0.0,307.0,32,1.0,0.0,3.0,2.0,1.3,2,1,307.102544050857,630.0,13463.051265296544,0,4,2,3,60.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05050860957150355,10356.193280997342,2,1,2_1,2_0_1,2_3_1,2_0_1 -30724,2,86.0,0.0,5,400,1290.0,0.0,0.0,75,74,0.0,0.0,1783.0047535729504,1390.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,118474,2,1,2,0,1,,116.0,,41,0.0,1.0,4.0,2.0,1.5,2,1,1220.31767405052,1290.0,53063.997677410734,5,5,0,1,95.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026194784804005087,35375.998451607156,9,5,9,9_1,9_0,9_0_0 -30725,1,64.0,139.0,2,111,450.0,200.0,0.0,0,67,0.0,0.0,621.9784024091688,650.0,0.0,362.73058016948977,43,2,2,2,1,1,2,2,2,0,,2,,2,127130,1,3,0,1,2,500.0,0.0,226.0,12,1.0,2.0,4.0,1.0,1.0,3,2,339.853010650107,450.0,9383.732412345236,0,4,2,3,65.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06926881239120375,9383.732412345236,1,1,1_1,1_0_1,1_3_1,1_0_1 -30726,0,62.0,0.0,1,400,0.0,0.0,0.0,0,75,3733.962192545002,51.75862524097289,0.0,3717.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130069,2,1,2,0,1,,133.0,,11,0.0,2.0,5.0,1.0,1.0,3,2,1491.96612556574,0.0,9093.719944869481,0,5,0,1,170.0,0,0,8,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.40874361895178735,9093.719944869481,1,1,1_0,1_1_0,1_0_0,1_1_0 -30727,1,57.0,156.0,5,111,190.0,0.0,0.0,0,78,0.0,0.0,262.6131032394268,190.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,102414,1,1,0,1,2,430.0,0.0,265.0,11,0.0,0.0,3.0,1.0,1.0,2,2,342.006550648392,190.0,9812.471453997461,0,7,2,3,70.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01936311365498003,9812.471453997461,2,1,2_1,2_0_1,2_3_1,2_0_0 -30728,2,68.0,0.0,2,400,540.0,0.0,0.0,72,72,1493.5848770180007,496.8828023133397,746.3740828910024,2200.0,309.6588607542345,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,132655,1,1,2,0,2,,212.0,,41,0.0,7.0,6.0,2.0,1.5,1,1,1351.6829781005,540.0,14411.511421669562,5,5,0,1,110.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15265574412216174,9607.67428111304,1,1,1_0,1_1_0,1_0_0,1_0_1 -30729,2,74.0,0.0,1,111,180.0,1110.0,0.0,0,77,0.0,0.0,248.7913609636675,1290.0,0.0,2013.1547199406682,71,0,0,0,0,0,0,0,0,0,,1,,1,120145,2,1,3,0,1,,80.0,,11,0.0,3.0,4.0,1.0,1.0,4,3,314.920890356337,180.0,10070.531011266308,0,5,0,1,70.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12809652227442875,10070.531011266308,2,1,2_0,2_1_0,2_3_0,2_1_0 -30730,2,73.0,0.0,1,400,650.0,0.0,0.0,78,78,1792.3018524216009,0.0,898.4132479243549,2030.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123393,2,2,2,0,1,,132.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1369.12593855192,650.0,20308.0,5,5,0,1,140.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09996060665747489,13538.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -30731,2,79.0,0.0,1,400,0.0,0.0,0.0,0,71,0.0,1242.2070057833494,0.0,2136.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125676,2,1,4,0,2,,100.0,,11,0.0,0.0,4.0,1.0,1.0,5,4,1645.22138322795,0.0,8790.67254564313,0,5,0,1,140.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24298482157188908,8790.67254564313,1,1,1_0,1_1_0,1_0_0,1_1_0 -30732,2,56.0,0.0,2,111,170.0,550.0,0.0,54,62,0.0,0.0,234.9696186879082,720.0,0.0,997.5090954660969,20,2,1,2,2,1,2,2,2,3,15.0,2,,2,104033,2,3,0,1,1,1686.0,0.0,230.0,43,2.0,1.0,3.0,2.0,1.5,2,2,298.845615722301,170.0,42422.16786556372,1,1,2,3,75.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01697225852016067,28281.44524370915,8,4,8,8_0,8_3,8_0_1 -30733,1,54.0,158.0,5,111,484.0,0.0,0.0,0,77,0.0,0.0,668.9723261467504,484.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,108265,1,1,0,1,1,324.0,0.0,306.0,31,1.0,1.0,4.0,2.0,1.5,1,1,319.760363698945,484.0,17776.733627059064,0,5,2,3,78.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02722659911285804,11851.15575137271,2,1,2_1,2_0_1,2_3_1,2_0_0 -30734,2,53.0,0.0,1,400,500.0,0.0,0.0,56,48,3733.962192545002,0.0,691.0871137879653,3120.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,1,115590,2,2,1,0,1,,150.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1327.56077642002,500.0,47741.82094622728,1,1,0,1,140.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06535150813610835,19096.728378490912,5,3,5,5_1,5_0,5_1_0 -30735,1,60.0,195.0,2,111,390.0,0.0,0.0,77,62,0.0,0.0,539.0479487546129,390.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,119947,1,1,0,1,1,601.0,0.0,313.0,42,1.0,3.0,5.0,2.0,1.5,3,2,273.762492101266,390.0,18296.944277203518,6,1,2,3,95.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02131503458126108,12197.962851469012,2,1,2_1,2_0_1,2_3_1,2_0_1 -30736,2,91.0,0.0,1,400,252.0,0.0,0.0,0,71,0.0,517.5862524097289,348.3079053491345,997.0,421.480116026597,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,107235,1,1,4,0,2,,84.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1492.29844438718,252.0,14790.476977174501,0,5,0,1,50.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06740823852662944,14790.476977174501,3,2,3_0,3_1_0,3_0_0,3_1_0 -30737,1,56.0,53.0,5,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,3,125192,1,1,0,1,1,527.0,0.0,331.0,12,1.0,0.0,4.0,1.0,1.0,1,1,340.354772599392,0.0,20401.049133285313,0,1,2,3,60.0,8,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02941025219242625,20401.049133285313,5,3,5,5_0,5_3,5_0_0 -30738,2,81.0,0.0,1,111,550.0,0.0,0.0,0,75,0.0,0.0,760.1958251667618,640.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126169,2,1,2,0,1,,0.0,95.0,11,0.0,1.0,4.0,1.0,1.0,4,3,254.459218319503,550.0,21201.76931122606,0,5,2,3,80.0,8,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030186159966429232,21201.76931122606,5,3,5,5_1,5_3,5_1_0 -30739,2,23.0,0.0,1,400,0.0,0.0,0.0,0,69,0.0,0.0,0.0,2413.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,5,,1,105059,2,1,1,0,1,,0.0,300.0,12,1.0,0.0,6.0,1.0,1.0,2,2,1589.68852771417,0.0,8803.634005657805,0,1,2,3,250.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2740913580061648,8803.634005657805,1,1,1_0,1_1_0,1_0_0,1_1_0 -30740,2,40.0,0.0,2,111,0.0,0.0,0.0,55,52,0.0,0.0,0.0,1373.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,109269,2,1,1,0,1,,334.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,277.997404667221,0.0,38581.310690270824,1,1,1,2,90.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03558717875145268,18372.052709652773,4,2,4_0,4_1_0,4_3_0,4_0_1 -30741,1,38.0,42.0,1,300,710.0,0.0,0.0,56,62,0.0,0.0,981.3437015789107,2535.0,3139.5967826470996,0.0,71,0,0,0,0,0,0,0,0,2,6.0,1,,1,120429,1,1,1,0,1,,274.0,357.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1475.98710086999,710.0,32854.47490358881,1,1,2,3,90.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07715843906922686,15644.988049328003,3,2,3_1,3_1_1,3_0_1,3_1_0 -30742,2,61.0,0.0,5,300,370.0,0.0,0.0,52,78,1344.2263893162005,0.0,511.40446420309434,1390.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124052,2,1,1,0,1,,150.0,,42,1.0,3.0,4.0,2.0,1.5,3,1,1390.79116545243,370.0,35867.22426915301,1,5,0,1,90.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0387540443489363,23911.482846102008,6,3,6,6_1,6_0,6_0_0 -30743,1,45.0,386.0,2,111,433.0,96.0,0.0,0,56,0.0,0.0,598.4814405403779,529.0,0.0,174.11067848135508,31,0,0,0,0,0,0,0,0,0,,2,,2,123462,2,3,0,1,1,726.0,0.0,339.0,32,1.0,0.0,4.0,4.0,2.3,2,2,338.128594269913,433.0,11104.690470733065,0,4,2,3,69.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04763752770905271,4828.126291623072,1,1,1_1,1_0_1,1_3_1,1_0_1 -30744,1,43.0,98.0,9,300,1617.0,0.0,0.0,56,63,0.0,55.89931526025072,2234.97572599028,1757.0,148.63625316203257,0.0,71,2,2,1,1,2,2,2,2,2,10.0,1,2007.0,6,102247,2,1,1,0,1,,185.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,2,2,1289.49049480612,1617.0,27651.820221406684,1,1,1,2,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.06354012090096756,10635.315469771804,2,1,2_1,2_1_1,2_0_1,2_0_0 -30745,1,61.0,44.0,2,111,400.0,0.0,0.0,0,78,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100559,2,1,0,1,1,366.0,0.0,267.0,11,0.0,3.0,3.0,1.0,1.0,2,1,324.096378043182,400.0,14721.198465437703,0,5,2,3,76.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027171700791828627,14721.198465437703,3,2,3_1,3_0_1,3_3_1,3_0_1 -30746,2,44.0,0.0,1,300,326.0,0.0,0.0,0,43,0.0,124.22070057833493,450.58879818975333,486.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124573,2,1,4,0,1,,78.0,,12,1.0,2.0,3.0,1.0,1.0,6,6,1384.36920295583,326.0,20717.001864594888,0,1,0,1,60.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02345899291685484,20717.001864594888,5,3,5,5_1,5_0,5_1_0 -30747,2,33.0,0.0,5,111,350.0,0.0,0.0,56,68,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,119836,2,1,0,1,2,638.0,0.0,454.0,43,2.0,0.0,4.0,4.0,2.1,3,2,363.846967387746,350.0,36339.27020969716,1,1,2,3,78.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009631453740823949,17304.414385570075,4,2,4_0,4_0_0,4_3_0,4_0_0 -30748,2,47.0,0.0,6,300,467.0,0.0,0.0,0,69,0.0,124.22070057833493,645.4753642779596,659.0,123.8635443016938,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,,4,130605,2,1,1,0,1,,115.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1422.496576509,467.0,16711.28884666415,0,1,1,2,92.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03943442101005557,16711.28884666415,4,2,4_0,4_1_0,4_0_0,4_0_0 -30749,2,48.0,0.0,2,111,704.0,720.0,0.0,78,68,0.0,0.0,973.0506562134551,1424.0,0.0,1305.830088610163,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,132919,1,3,0,1,1,628.0,0.0,339.0,42,3.0,0.0,3.0,5.0,3.0,3,1,365.797248682815,704.0,48106.5671102987,5,1,2,3,75.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029600948176889318,16035.522370099568,4,2,4_0,4_0_0,4_3_0,4_0_1 -30750,1,70.0,285.0,1,300,401.0,0.0,0.0,86,71,0.0,621.1035028916747,554.2518652579481,1151.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110270,1,2,4,0,2,,118.0,282.0,41,0.0,1.0,3.0,2.0,1.5,4,4,1473.18411326117,401.0,9432.939141930256,5,5,2,3,72.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12201923310240627,6288.62609462017,1,1,1_1,1_1_1,1_0_1,1_1_0 -30751,2,40.0,0.0,1,300,0.0,0.0,0.0,11,22,2240.377315527001,600.4000527952855,0.0,5369.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,108823,2,1,4,0,1,,151.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,1287.65053676631,0.0,39341.05928049838,1,1,0,1,170.0,0,0,8,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13647319360974727,18733.837752618278,5,3,5,5_1,5_0,5_1_0 -30752,2,70.0,0.0,2,111,350.0,0.0,0.0,77,78,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101088,1,2,0,1,1,444.0,0.0,423.0,41,0.0,3.0,3.0,2.0,1.5,2,2,307.102544050857,350.0,23016.022388984355,5,5,2,3,66.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015206797859542955,15344.01492598957,3,2,3_0,3_0_0,3_3_0,3_0_1 -30753,2,51.0,0.0,5,300,750.0,0.0,0.0,52,62,0.0,983.4138795784849,1036.630670681948,1740.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,3,111554,2,1,2,0,1,,204.0,500.0,43,2.0,1.0,5.0,2.0,1.5,3,3,1415.81325470426,750.0,20532.74549976865,4,1,2,3,150.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08474268577573346,13688.496999845767,3,2,3_0,3_1_0,3_0_0,3_0_0 -30754,1,46.0,271.0,2,111,561.0,0.0,0.0,0,68,0.0,0.0,775.399741670097,561.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,102171,1,3,0,1,1,298.0,0.0,339.0,12,1.0,2.0,4.0,1.0,1.0,2,1,335.923703671481,561.0,9504.119527261606,0,1,2,3,69.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05902703542298981,9504.119527261606,1,1,1_1,1_0_1,1_3_1,1_0_1 -30755,2,81.0,0.0,1,300,1300.0,0.0,0.0,0,72,0.0,310.55175144583734,1796.8264958487098,1630.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106101,2,1,2,0,1,,165.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,1435.75960999829,1300.0,10040.106401680854,0,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16234887707237,10040.106401680854,2,1,2_0,2_1_0,2_0_0,2_1_0 -30756,1,24.0,374.0,2,111,204.0,0.0,0.0,0,81,0.0,0.0,281.96354242548983,204.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,104732,2,2,0,1,1,588.0,0.0,329.0,32,1.0,0.0,4.0,3.0,1.6,2,1,346.34072439887,204.0,12624.194524680184,0,4,2,3,87.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.016159446814700287,7890.121577925115,1,1,1_1,1_0_1,1_3_1,1_0_1 -30757,2,79.0,0.0,1,300,784.0,0.0,0.0,78,75,4630.113118755802,414.0690019277831,1083.6245944195296,4464.0,309.6588607542345,0.0,71,2,2,1,2,1,2,2,1,0,,1,,1,111575,2,2,2,0,1,,310.0,,41,2.0,0.0,7.0,4.0,2.5,2,2,1327.56077642002,784.0,41863.05462588332,5,5,0,1,170.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.10663340360356727,16745.22185035333,4,2,4_0,4_1_0,4_0_0,4_1_0 -30758,2,43.0,0.0,2,111,180.0,0.0,0.0,0,46,0.0,0.0,248.7913609636675,180.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,2,114777,2,1,0,1,1,368.0,0.0,214.0,12,1.0,0.0,2.0,1.0,1.0,3,2,383.752023870097,180.0,21585.196865069312,0,1,2,3,65.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008339048336005158,21585.196865069312,6,3,6,6_0,6_3,6_0_1 -30759,1,35.0,22.0,9,300,1490.0,0.0,0.0,11,55,0.0,0.0,2059.4395990881367,1490.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,107587,2,1,1,0,1,,196.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1116.75907494764,1490.0,30214.13554960889,1,1,1,2,94.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04931466589714454,14387.683595051853,3,2,3_1,3_1_1,3_0_1,3_0_0 -30760,2,47.0,0.0,2,111,480.0,888.0,0.0,46,65,0.0,0.0,663.4436292364467,1368.0,0.0,1610.5237759525346,50,0,0,0,0,0,0,0,0,1,20.0,1,,2,103760,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,238.224173323395,480.0,48773.151531022675,1,1,0,1,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02804821827291331,21205.718056966383,5,3,5,5_1,5_3,5_0_1 -30761,2,72.0,0.0,1,300,367.0,0.0,0.0,0,78,0.0,0.0,507.2579415203665,1956.0,2733.5996096582144,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106239,2,1,1,0,2,,171.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1361.40587189971,367.0,19129.54412956697,0,5,1,2,75.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10225021499476147,19129.54412956697,5,3,5,5_1,5_0,5_1_0 -30762,2,73.0,0.0,2,111,200.0,800.0,0.0,0,75,0.0,0.0,276.4348455151861,1000.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,2,100671,2,2,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,383.4741961915,200.0,25472.03028564768,0,5,0,1,75.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03925874729206231,25472.03028564768,7,4,7,7_0,7_3,7_0_1 -30767,1,41.0,425.0,5,111,600.0,99.0,0.0,55,47,0.0,0.0,829.3045365455583,699.0,0.0,179.55163718389744,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,112379,2,1,0,1,1,884.0,0.0,386.0,43,2.0,0.0,5.0,5.0,2.8,2,2,259.813502069015,600.0,27368.600155876993,4,4,2,3,95.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025540217476190515,9774.500055670354,2,1,2_1,2_0_1,2_3_1,2_0_0 -30768,0,66.0,0.0,1,120,600.0,0.0,0.0,0,71,0.0,0.0,829.3045365455583,1127.0,240.84578058662683,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,105601,1,2,3,0,2,,288.0,,11,0.0,3.0,6.0,1.0,1.0,2,2,1702.93951288603,600.0,35398.0,0,5,5,0,110.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.031837956946720154,35398.0,9,5,9,9_1,9_0,9_1_0 -30769,2,58.0,0.0,2,111,238.0,80.0,0.0,0,55,0.0,0.0,328.95746616307144,318.0,0.0,145.09223206779592,71,2,1,2,2,1,1,2,2,2,12.0,2,,2,124267,2,3,0,1,1,477.0,0.0,253.0,12,1.0,1.0,3.0,1.0,1.0,1,1,339.853010650107,238.0,19305.883395656903,0,1,2,3,61.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01647166273010527,19305.883395656903,5,3,5,5_0,5_3,5_0_1 -30770,2,49.0,0.0,1,120,1040.0,0.0,0.0,64,52,0.0,776.3793786145933,1437.4611966789678,1790.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,128900,2,1,2,0,1,,362.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1341.28973965357,1040.0,54270.81567351997,1,1,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03298273626046465,23596.0068145739,6,3,6,6_1,6_0,6_1_0 -30771,2,34.0,0.0,5,111,255.0,0.0,0.0,0,34,0.0,0.0,352.4544280318623,255.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,,3,123011,2,2,0,1,1,717.0,0.0,410.0,12,1.0,0.0,2.0,1.0,1.0,2,2,399.5552207486,255.0,30579.107946974633,0,1,2,3,42.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008339026777438372,30579.107946974633,8,4,8,8_0,8_3,8_0_0 -30772,0,77.0,0.0,1,120,300.0,0.0,0.0,0,75,0.0,258.79312620486445,414.65226827277917,697.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107526,2,1,2,0,1,,110.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1571.69838813128,300.0,30971.20397257647,0,5,0,1,125.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022504775746437253,30971.20397257647,8,4,8,8_1,8_0,8_1_0 -30773,2,61.0,0.0,5,111,410.0,0.0,0.0,0,77,0.0,0.0,566.6914333061316,410.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,3,110860,1,1,0,1,1,450.0,0.0,382.0,11,0.0,3.0,3.0,1.0,1.0,3,3,349.810901987705,410.0,27363.839300952495,0,5,2,3,74.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.014983277583629447,27363.839300952495,7,4,7,7_0,7_3,7_0_0 -30774,1,37.0,170.0,9,120,470.0,0.0,0.0,0,55,0.0,579.6966026988963,649.6218869606873,1120.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2009.0,6,123359,2,1,1,0,1,,193.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,1398.32467686985,470.0,19401.784476275305,0,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0577266488744655,14924.44959713485,3,2,3_1,3_1_1,3_0_1,3_0_0 -30775,2,67.0,0.0,2,120,487.0,0.0,0.0,0,72,3987.8716216380617,0.0,673.1188488294782,3247.0,154.82943037711726,0.0,50,2,2,2,1,1,1,2,2,0,,1,,2,100644,1,1,2,0,2,,367.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1555.04382616577,487.0,18122.756234518944,0,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.1791670073791173,18122.756234518944,4,2,4_0,4_1_0,4_0_0,4_0_1 -30776,2,61.0,0.0,1,120,1100.0,0.0,0.0,77,77,0.0,0.0,1520.3916503335236,1300.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104301,2,2,1,0,1,,350.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1468.15313234773,1100.0,27865.238504958586,6,5,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04665310866686702,18576.82566997239,4,2,4_0,4_1_0,4_0_0,4_1_0 -30777,1,57.0,371.0,2,111,350.0,100.0,0.0,0,56,0.0,0.0,483.76097965157567,450.0,0.0,181.36529008474488,71,2,2,2,2,2,2,2,1,0,,2,,2,106415,1,2,0,1,1,840.0,0.0,314.0,32,1.0,1.0,5.0,5.0,2.5999999999999996,2,2,293.984718130124,350.0,22494.39227901595,0,4,2,3,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.02000498588351665,8651.689338083059,1,1,1_1,1_0_1,1_3_1,1_0_1 -30778,2,90.0,0.0,1,120,0.0,0.0,0.0,0,77,0.0,0.0,0.0,4410.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106122,2,1,1,0,2,,126.0,,11,0.0,2.0,6.0,1.0,1.0,2,1,1449.00690666706,0.0,29664.06457157718,0,5,0,1,120.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14866472493541802,29664.06457157718,8,4,8,8_1,8_0,8_1_0 -30779,2,67.0,0.0,5,120,868.0,0.0,0.0,77,75,2778.0678712534814,0.0,1199.7272295359078,2796.0,116.98223628493304,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,109536,2,1,3,0,1,,416.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1299.31634662754,868.0,43373.93437026313,5,5,0,1,122.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06446267880916329,28915.956246842088,8,4,8,8_1,8_0,8_0_0 -30780,2,81.0,0.0,2,111,268.0,0.0,0.0,90,72,0.0,0.0,370.4226929903494,268.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,121922,2,1,0,1,1,429.0,0.0,255.0,41,0.0,2.0,3.0,2.0,1.5,1,1,288.76331176905,268.0,18768.80317202324,5,5,2,3,52.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014279013826490576,12512.535448015493,2,1,2_0,2_0_0,2_3_0,2_0_1 -30781,1,30.0,210.0,2,111,360.0,0.0,0.0,85,63,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,102989,2,1,0,1,1,828.0,0.0,367.0,42,1.0,0.0,3.0,4.0,2.1,3,3,320.949208054871,360.0,25132.143338560567,6,1,2,3,84.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014324285642906049,11967.68730407646,2,1,2_1,2_0_1,2_3_1,2_0_1 -30782,2,70.0,0.0,2,120,800.0,0.0,0.0,77,75,0.0,931.655254337512,1105.7393820607444,2040.0,584.9111814246652,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110551,2,1,2,0,1,,432.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,1490.07990684872,800.0,25970.10818496112,5,5,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07855184835854215,17313.405456640747,4,2,4_0,4_1_0,4_0_0,4_0_1 -30783,2,30.0,0.0,2,111,246.0,162.0,0.0,46,38,0.0,0.0,340.0148599836789,408.0,0.0,293.8117699372867,71,2,1,2,1,1,2,2,2,0,,2,,2,114681,1,3,0,1,1,509.0,0.0,252.0,43,2.0,1.0,4.0,2.0,1.5,2,2,284.625186734817,246.0,36803.15236673281,4,4,2,3,65.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011086006870672316,24535.434911155204,7,4,7,7_0,7_3,7_0_1 -30784,1,41.0,35.0,5,120,1200.0,0.0,0.0,46,47,0.0,424.4207269759777,1658.6090730911167,1715.0,180.63433543997013,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,,3,109521,1,2,3,0,1,,437.0,,43,2.0,0.0,5.0,5.0,2.4,4,3,1350.38119739412,1200.0,47295.61361804398,1,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03626129082181317,19706.50567418499,5,3,5,5_1,5_0,5_0_0 -30785,2,42.0,0.0,7,111,1400.0,0.0,0.0,85,38,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,5,112386,2,2,0,0,1,,0.0,376.0,42,1.0,0.0,3.0,4.0,2.1,1,1,287.113641271719,1400.0,60635.488538699006,6,1,2,3,63.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02308878898710426,28874.04216128524,8,4,8,8_0,8_3,8_0_0 -30787,2,68.0,0.0,5,120,650.0,0.0,0.0,77,75,1045.5094139126004,232.913813584378,898.4132479243549,1650.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,113586,2,1,2,0,1,,389.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1299.31634662754,650.0,50760.86250544519,5,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03250535783987126,33840.575003630125,9,5,9,9_1,9_0,9_0_0 -30788,2,70.0,0.0,5,120,800.0,0.0,0.0,77,75,0.0,414.0690019277831,1105.7393820607444,1340.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131128,2,1,2,0,1,,420.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1386.50978774113,800.0,31985.180318376122,5,5,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0418944019280749,21323.45354558408,6,3,6,6_1,6_0,6_0_0 -30789,2,50.0,0.0,2,111,416.0,0.0,0.0,21,52,0.0,0.0,574.9844786715871,540.0,213.32054851958378,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,115864,2,1,0,1,1,804.0,0.0,313.0,43,4.0,1.0,5.0,4.0,2.5,2,1,258.02790019854,416.0,41761.73217991833,4,1,2,3,87.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012930498133400367,16704.69287196733,4,2,4_0,4_0_0,4_3_0,4_0_1 -30790,2,81.0,0.0,1,120,330.0,0.0,0.0,0,77,2631.6965533057173,0.0,456.1174951000571,2184.0,158.27008438549763,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,122439,1,3,3,0,2,,0.0,300.0,11,0.0,3.0,5.0,1.0,1.0,4,3,2008.01830895492,330.0,17677.46209407936,0,5,2,3,80.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.12354714655173708,17677.46209407936,4,2,4_0,4_1_0,4_0_0,4_1_0 -30791,2,70.0,0.0,1,120,408.0,0.0,0.0,0,78,1941.6603401234008,0.0,563.9270848509797,1740.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132650,2,1,3,0,1,,205.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1446.76685283664,408.0,14520.061538586499,0,5,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1198342028631227,14520.061538586499,3,2,3_0,3_1_0,3_0_0,3_1_0 -30792,1,86.0,174.0,1,120,432.0,0.0,0.0,0,71,1777.366003651421,0.0,597.099266312802,1622.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101853,1,3,4,0,2,,180.0,320.0,11,0.0,0.0,4.0,1.0,1.0,2,1,1900.43816089273,432.0,9995.967415047406,0,5,2,3,80.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1622654349151165,9995.967415047406,2,1,2_1,2_1_1,2_0_1,2_1_0 -30793,2,72.0,0.0,7,120,0.0,0.0,0.0,0,71,0.0,1138.6897553014035,0.0,1278.0,240.84578058662683,0.0,71,2,2,2,2,1,2,2,2,0,,1,,5,118407,1,2,4,0,1,,300.0,,21,0.0,3.0,6.0,2.0,1.5,1,1,1343.53284550725,0.0,22914.07160564178,0,5,0,1,100.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.05577358847413821,15276.047737094521,3,2,3_0,3_1_0,3_0_0,3_0_0 -30794,2,78.0,0.0,2,111,564.0,1252.0,0.0,86,75,0.0,0.0,779.5462643528249,1816.0,0.0,2270.693431861006,71,0,0,0,0,0,0,0,0,0,,1,,2,102473,2,1,2,0,2,,112.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,267.847746343722,564.0,22450.0631753612,6,5,0,1,67.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08089064096679462,14966.708783574133,3,2,3_0,3_1_0,3_3_0,3_0_1 -30795,2,63.0,0.0,7,120,0.0,0.0,0.0,0,72,0.0,82.81380038555662,0.0,580.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,3,,5,109075,2,2,0,0,2,,125.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2024.84920545547,0.0,15316.785300691477,0,5,0,1,30.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037866953712135394,15316.785300691477,3,2,3_0,3_0_0,3_0_0,3_0_0 -30796,2,66.0,0.0,2,111,382.0,0.0,0.0,0,77,0.0,0.0,527.9905549340054,502.0,206.439240502823,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,114880,1,3,0,1,2,417.0,0.0,252.0,11,0.0,1.0,3.0,1.0,1.0,3,3,341.693596354159,382.0,18311.639400220738,0,5,2,3,65.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02741425762206461,18311.639400220738,4,2,4_0,4_0_0,4_3_0,4_0_1 -30797,2,49.0,0.0,9,120,550.0,0.0,0.0,55,43,0.0,310.55175144583734,760.1958251667618,1450.0,1032.196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,128153,2,1,1,0,1,,475.0,,43,4.0,0.0,5.0,4.0,2.5,1,1,1266.83187268071,550.0,93414.6365573755,1,1,1,2,109.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015522192810860067,37365.8546229502,9,5,9,9_1,9_0,9_0_0 -30798,2,47.0,0.0,5,111,400.0,1100.0,0.0,55,52,0.0,0.0,552.8696910303722,1500.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,105856,1,2,3,0,2,,350.0,,43,2.0,0.0,4.0,4.0,2.3,2,1,242.167754238158,400.0,43059.75760547248,1,1,1,2,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03483530989058249,18721.633741509773,5,3,5,5_1,5_3,5_0_0 -30799,2,46.0,0.0,1,120,537.0,0.0,0.0,63,62,2240.377315527001,0.0,742.2275602082747,2037.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,102204,2,2,2,0,1,,544.0,,43,2.0,1.0,4.0,3.0,2.0,2,1,1698.38657875071,537.0,30715.17148789843,1,1,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06631901764906518,15357.585743949216,3,2,3_0,3_1_0,3_0_0,3_1_0 -30800,2,58.0,0.0,2,111,198.0,0.0,0.0,0,62,0.0,0.0,273.6704970600342,213.0,25.804905062852875,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,117986,2,1,0,1,1,325.0,0.0,283.0,12,1.0,1.0,3.0,1.0,1.0,2,2,300.217559089119,198.0,18202.177503460127,0,1,2,3,72.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011701896652722454,18202.177503460127,4,2,4_0,4_0_0,4_3_0,4_0_1 -30801,2,78.0,0.0,2,111,300.0,1000.0,0.0,72,75,0.0,103.51725048194578,414.65226827277917,1400.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,1,,2,114637,2,2,2,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,265.815776135012,300.0,34342.832486858286,5,5,0,1,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04076542028196793,22895.221657905524,6,3,6,6_1,6_3,6_0_1 -30802,2,88.0,0.0,2,111,330.0,0.0,0.0,0,75,3733.962192545002,0.0,456.1174951000571,2860.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130394,1,1,2,0,2,,180.0,,11,0.0,0.0,7.0,1.0,1.0,2,2,269.138421880911,330.0,20498.005004409988,0,5,0,1,196.0,8,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13952577333182878,20498.005004409988,5,3,5,5_1,5_3,5_0_1 -30803,2,65.0,0.0,2,111,390.0,0.0,0.0,75,78,0.0,0.0,539.0479487546129,510.0,206.439240502823,0.0,41,2,2,1,2,1,2,2,2,0,,2,,2,101106,2,2,0,1,1,324.0,0.0,283.0,41,0.0,5.0,4.0,2.0,1.5,4,4,345.566698360998,390.0,18955.94335294454,5,5,2,3,75.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02690449061300759,12637.295568629694,2,1,2_0,2_0_0,2_3_0,2_0_1 -30804,2,45.0,0.0,5,111,3000.0,0.0,0.0,38,38,0.0,51.75862524097289,4146.522682727792,3050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,116177,2,1,3,0,1,,416.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,269.169148600957,3000.0,108894.90265471723,1,1,1,2,150.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028008657206581165,43557.96106188689,10,5,10,10_1,10_3,10_0_0 -30805,2,48.0,0.0,2,111,500.0,170.0,0.0,68,65,0.0,0.0,691.0871137879653,670.0,0.0,308.32099314406634,44,2,1,2,2,1,1,2,2,2,5.0,2,,2,133233,1,3,0,1,1,732.0,0.0,307.0,43,2.0,3.0,4.0,4.0,2.3,1,1,285.796445728433,500.0,30536.686056874725,1,1,2,3,80.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.021940822221249608,13276.820024728142,3,2,3_0,3_0_0,3_3_0,3_0_1 -30806,2,75.0,0.0,1,111,500.0,0.0,0.0,0,77,2987.1697540360015,0.0,691.0871137879653,2550.0,86.01635020950958,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,114866,2,1,2,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1543.03812951033,500.0,22200.70138970141,0,5,0,1,80.0,6,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11486123592396538,22200.70138970141,6,3,6,6_1,6_2,6_1_0 -30807,1,45.0,169.0,2,111,306.0,90.0,0.0,0,55,0.0,0.0,422.9453136382348,396.0,0.0,163.2287610762704,12,2,1,2,2,1,2,2,2,3,45.0,2,,2,122674,1,2,0,1,1,742.0,0.0,314.0,32,1.0,0.0,4.0,2.0,1.5,2,2,273.762492101266,306.0,17034.506564355812,0,1,2,3,77.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.02324693107510481,11356.337709570542,2,1,2_1,2_0_1,2_3_1,2_0_1 -30808,2,33.0,0.0,7,111,560.0,980.0,0.0,52,53,0.0,0.0,774.0175674425211,1540.0,0.0,1777.3798428305,71,0,0,0,0,0,0,0,0,2,6.0,1,,5,114072,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,2,2,1505.85008132793,560.0,42025.48575839826,1,1,1,2,108.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036644430687924896,16163.648368614717,4,2,4_0,4_1_0,4_2_0,4_0_0 -30809,2,55.0,0.0,9,111,590.0,1000.0,0.0,46,47,0.0,0.0,815.482794269799,1590.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,1,10.0,1,2004.0,6,123463,2,1,1,0,1,,400.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1685.95640659626,590.0,76690.57808841745,1,1,1,2,120.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020732664163345734,38345.28904420872,9,5,9,9_1,9_2,9_0_0 -30810,2,60.0,0.0,2,211,410.0,1250.0,0.0,0,54,0.0,23.808967610847528,566.6914333061316,1709.0,44.72850210894499,2267.066126059311,71,0,0,0,0,0,0,0,0,0,,1,,2,100329,2,2,2,0,2,,440.0,385.0,12,1.0,2.0,4.0,1.0,1.0,1,1,267.294196162544,410.0,18483.74411910887,0,4,2,3,58.0,2,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0924596223031026,18483.74411910887,4,2,4_0,4_1_0,4_1_0,4_0_1 -30811,1,28.0,154.0,6,111,1500.0,0.0,0.0,0,67,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,125749,2,1,0,0,1,,0.0,357.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2277.74792585515,1500.0,5676.102470897122,0,4,2,3,50.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.2642658422202377,5676.102470897122,1,1,1_1,1_0_1,1_2_1,1_0_0 -30812,2,52.0,0.0,2,111,830.0,3000.0,0.0,54,48,0.0,0.0,1147.2046088880224,3830.0,0.0,5440.958702542347,71,0,0,0,0,0,0,0,0,2,50.0,1,,2,110691,2,1,2,0,1,,320.0,,43,3.0,0.0,8.0,3.0,2.0,2,1,1636.2983827551,830.0,53897.33341120975,1,1,0,1,200.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07106102950917835,26948.666705604875,7,4,7,7_1,7_2,7_0_1 -30813,1,42.0,104.0,5,111,550.0,1000.0,0.0,0,52,0.0,0.0,760.1958251667618,1550.0,0.0,1813.6529008474488,50,2,2,2,2,2,2,2,1,2,5.0,1,,3,131854,1,2,3,0,1,,380.0,533.0,32,1.0,0.0,4.0,3.0,2.0,2,2,1413.53968717517,550.0,22723.370895322507,0,1,2,3,77.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.0682117106278039,11361.685447661253,2,1,2_1,2_1_1,2_2_1,2_0_0 -30814,2,29.0,0.0,2,111,500.0,1550.0,0.0,52,52,0.0,0.0,691.0871137879653,2050.0,0.0,2811.161996313546,20,1,2,2,2,2,2,2,1,2,5.0,1,,2,125388,1,3,3,0,2,,350.0,591.0,43,2.0,0.0,4.0,3.0,1.8,4,2,1652.74979228565,500.0,41947.259559035505,1,1,2,3,80.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04887089220011816,23304.03308835306,6,3,6,6_1,6_2,6_0_1 -30815,2,55.0,0.0,6,111,900.0,0.0,0.0,47,62,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,4,117697,2,1,1,0,1,,280.0,,43,2.0,1.0,4.0,2.0,1.5,3,2,1505.07050065817,900.0,55926.91914832218,1,1,0,1,100.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01609242943658555,37284.61276554812,9,5,9,9_1,9_2,9_0_0 -30816,2,59.0,0.0,2,111,0.0,0.0,0.0,77,90,0.0,0.0,0.0,1467.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,118763,2,2,2,0,1,,419.0,580.0,42,1.0,2.0,4.0,2.0,1.5,3,3,1479.97689748646,0.0,35075.9261519429,5,1,2,3,70.0,6,4,8,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04182355709283933,23383.95076796193,6,3,6,6_1,6_2,6_0_1 -30817,2,93.0,0.0,1,111,300.0,1500.0,0.0,0,86,0.0,0.0,414.65226827277917,1800.0,0.0,2720.4793512711735,31,0,0,0,0,0,0,0,0,0,,1,,1,106887,2,1,2,0,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1487.66625020437,300.0,36614.798595314685,0,5,0,1,80.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04916045066625963,36614.798595314685,9,5,9,9_1,9_2,9_1_0 -30818,2,50.0,0.0,5,111,1000.0,0.0,0.0,47,33,0.0,621.1035028916747,1382.1742275759307,1680.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,3,250.0,1,,3,105982,2,2,2,0,1,,200.0,900.0,43,2.0,0.0,7.0,2.0,1.5,1,1,1653.65884903012,1000.0,74532.10346063925,1,1,2,3,120.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02254062238948101,49688.0689737595,10,5,10,10_1,10_2,10_0_0 -30819,2,34.0,0.0,1,111,431.0,893.0,0.0,62,62,0.0,0.0,595.7170920852261,1324.0,0.0,1619.5920404567719,71,0,0,0,0,0,0,0,0,2,3.0,1,,1,105781,2,1,2,0,1,,355.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,255.300275482908,431.0,44617.73240808268,1,1,1,2,88.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029674300520036112,29745.154938721786,8,4,8,8_1,8_2,8_1_0 -30820,1,58.0,344.0,7,111,480.0,900.0,0.0,0,63,0.0,0.0,663.4436292364467,1380.0,0.0,1632.287610762704,41,0,0,0,0,0,0,0,0,0,,8,,5,117606,1,3,0,0,1,,0.0,469.0,32,3.0,1.0,5.0,3.0,2.0,2,2,1927.47972724964,480.0,28600.65415888809,0,4,2,3,80.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.048250644629788786,14300.327079444045,3,2,3_1,3_0_1,3_2_1,3_0_0 -30821,2,73.0,0.0,2,111,0.0,0.0,2200.0,78,78,0.0,0.0,1124.0093366425551,2200.0,0.0,2515.1407042357896,31,0,0,0,0,0,0,0,0,0,,1,,2,126095,2,1,1,0,1,,230.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,250.409755630728,0.0,50809.60780746895,5,5,0,1,96.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04329889749073408,33873.07187164597,9,5,9,9_1,9_2,9_0_1 -30822,2,49.0,0.0,1,111,520.0,1290.0,0.0,56,46,0.0,0.0,718.7305983394839,1810.0,0.0,2339.6122420932093,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,106589,1,3,3,0,2,,650.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,220.207977303212,520.0,23363.307075521534,1,1,1,2,82.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07747190901310344,9345.322830208614,1,1,1_0,1_1_0,1_2_0,1_1_0 -30823,1,47.0,140.0,2,111,750.0,1600.0,0.0,52,48,0.0,0.0,1036.630670681948,2350.0,0.0,2901.844641355918,71,2,2,2,1,2,2,2,2,2,3.0,1,,2,111314,1,2,3,0,2,,240.0,,43,5.0,1.0,5.0,7.0,3.8,2,2,1378.57597952258,750.0,54943.35243215658,1,1,1,2,80.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.042771325300940695,14458.776955830679,3,2,3_1,3_1_1,3_2_1,3_0_1 -30824,2,80.0,0.0,1,111,200.0,1500.0,0.0,0,86,0.0,0.0,276.4348455151861,1700.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,1,111037,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1619.56573547382,200.0,10975.228296751635,0,6,0,1,100.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15489427226795394,10975.228296751635,2,1,2_0,2_1_0,2_2_0,2_1_0 -30825,2,52.0,0.0,2,111,300.0,350.0,0.0,0,47,0.0,0.0,414.65226827277917,657.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,122611,1,3,0,1,1,577.0,250.0,224.0,22,2.0,0.0,4.0,2.0,1.5,1,1,296.922195981127,300.0,40524.24955418261,0,1,2,3,60.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016212514907193127,27016.16636945507,7,4,7,7_0,7_2,7_0_1 -30826,2,50.0,0.0,2,111,540.0,1000.0,0.0,0,62,0.0,0.0,746.3740828910024,1540.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,4,60.0,1,,2,129923,2,1,2,0,1,,240.0,,32,2.0,0.0,5.0,3.0,2.0,1,1,1475.89083731439,540.0,26845.430302533587,0,1,0,1,100.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05736544293181472,13422.715151266793,3,2,3_0,3_1_0,3_2_0,3_0_1 -30827,0,85.0,0.0,1,111,0.0,0.0,1150.0,0,78,0.0,0.0,587.5503350631539,1150.0,0.0,1314.7326408505262,71,0,0,0,0,0,0,0,0,0,,1,,1,111888,2,2,4,0,1,,120.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,344.115322059094,0.0,18820.43482110979,0,5,5,0,38.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06110379547183,18820.43482110979,5,3,5,5_1,5_2,5_1_0 -30828,2,70.0,0.0,1,111,200.0,900.0,0.0,0,75,0.0,0.0,276.4348455151861,1100.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,1,107660,1,2,3,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1511.54755663252,200.0,22955.019009889587,0,5,0,1,50.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047919803487250126,22955.019009889587,6,3,6,6_1,6_2,6_1_0 -30829,2,69.0,0.0,1,111,500.0,2000.0,0.0,72,74,0.0,0.0,691.0871137879653,2500.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,1,,1,115466,2,1,2,0,1,,500.0,,41,0.0,2.0,7.0,2.0,1.5,2,1,1536.54135533673,500.0,47913.304433900346,5,5,0,1,160.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05217757425704002,31942.202955933564,8,4,8,8_1,8_2,8_1_0 -30830,2,81.0,0.0,2,111,1500.0,0.0,0.0,72,72,2987.1697540360015,0.0,2073.261341363896,3550.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122508,2,1,2,0,1,,255.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1543.46819973341,1500.0,41037.80107218896,5,5,0,1,152.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08650560963915319,27358.534048125974,7,4,7,7_1,7_2,7_0_1 -30831,2,71.0,0.0,5,111,900.0,0.0,0.0,0,75,0.0,134.5724256265295,1243.9568048183376,1030.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,127527,2,1,1,0,1,,60.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1487.66625020437,900.0,26092.903988814538,0,5,0,1,80.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039474333728493335,26092.903988814538,7,4,7,7_1,7_2,7_0_0 -30832,2,69.0,0.0,7,111,1635.0,170.0,0.0,68,78,0.0,0.0,2259.8548620866463,1805.0,0.0,308.32099314406634,50,0,0,0,0,0,0,0,0,0,,1,,5,132493,2,2,2,0,1,,380.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1435.12236443117,1635.0,25655.0275666958,1,5,0,1,100.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07035658002344809,17103.351711130534,4,2,4_0,4_1_0,4_2_0,4_0_0 -30833,2,43.0,0.0,6,400,2800.0,0.0,0.0,42,42,0.0,269.144851253059,3870.0878372126053,3240.0,309.6588607542345,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,4,133006,1,2,3,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,1195.55004226243,2800.0,55630.66299137967,1,1,1,2,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058241261667186295,19868.09392549274,5,3,5,5_1,5_0,5_0_0 -30834,0,86.0,0.0,2,400,234.0,0.0,0.0,71,71,0.0,0.0,323.4287692527678,339.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107298,1,1,4,0,2,,120.0,,41,0.0,2.0,6.0,2.0,1.5,2,1,1183.59436566657,234.0,19717.960692140437,5,5,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017192447296800074,13145.307128093626,2,1,2_0,2_1_0,2_0_0,2_0_1 -30835,2,56.0,0.0,5,222,360.0,0.0,0.0,0,67,5227.547069563002,0.0,497.582721927335,3956.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122441,2,2,3,0,2,,277.0,,22,1.0,3.0,3.0,2.0,1.5,4,3,1370.10386779834,360.0,23149.903755370204,0,1,0,1,105.0,1,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17088623960617141,15433.269170246802,3,2,3_0,3_1_0,3_0_0,3_0_0 -30836,2,66.0,0.0,5,222,691.0,0.0,0.0,0,78,0.0,414.0690019277831,955.082391254968,1091.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,112053,2,1,3,0,2,,182.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1366.64971802437,691.0,13039.965898141785,0,5,0,1,85.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08366586297249973,13039.965898141785,2,1,2_0,2_1_0,2_0_0,2_0_0 -30837,0,75.0,0.0,2,222,274.0,0.0,0.0,0,77,3112.6308837055135,0.0,378.715738355805,2483.0,215.04087552377396,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112697,2,2,2,0,1,,388.0,,21,1.0,0.0,4.0,2.0,1.5,1,1,1295.62914486146,274.0,40304.808408955825,0,5,0,1,71.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06160555273718337,26869.872272637218,7,4,7,7_1,7_0,7_0_1 -30838,2,50.0,0.0,1,222,720.0,0.0,0.0,64,54,2091.018827825201,683.2138531808421,995.16544385467,2885.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,1,117635,2,1,2,0,1,,270.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1413.69873463505,720.0,53047.94843977304,1,1,0,1,150.0,1,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054384761048307625,35365.2989598487,9,5,9,9_1,9_0,9_1_0 -30839,2,36.0,0.0,5,222,460.0,0.0,0.0,54,52,2688.452778632401,0.0,635.800144684928,2410.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,118647,2,1,2,0,1,,244.0,,43,2.0,0.0,6.0,4.0,2.1,4,3,1339.13308008498,460.0,42002.59178872085,1,1,1,2,138.0,1,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05737741166360997,20001.234185105164,5,3,5,5_1,5_0,5_0_0 -30840,2,68.0,0.0,2,222,300.0,0.0,0.0,77,78,1941.6603401234008,0.0,414.65226827277917,1732.0,227.0831645531053,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,101556,2,1,1,0,1,,200.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1384.06345926563,300.0,24013.649642325632,5,5,0,1,77.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0721256462802404,16009.099761550422,4,2,4_0,4_1_0,4_0_0,4_0_1 -30841,2,25.0,0.0,2,222,0.0,0.0,0.0,48,65,0.0,0.0,0.0,3115.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,2,102162,2,1,1,0,1,,713.0,,43,2.0,0.0,6.0,3.0,1.8,4,2,1461.3884002411,0.0,23499.185748649925,4,1,1,2,110.0,1,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13255778448319058,13055.103193694402,2,1,2_0,2_1_0,2_0_0,2_0_1 -30842,1,38.0,406.0,7,222,900.0,0.0,0.0,0,85,0.0,0.0,1243.9568048183376,1140.0,412.878481005646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,130354,1,1,2,0,1,,316.0,433.0,31,0.0,0.0,4.0,3.0,1.8,3,3,1321.75998184416,900.0,13910.438297973076,0,7,2,3,100.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08195284545175778,7728.021276651709,1,1,1_1,1_1_1,1_0_1,1_0_0 -30843,2,56.0,0.0,6,222,550.0,920.0,0.0,0,63,0.0,0.0,760.1958251667618,1470.0,0.0,1668.560668779653,50,0,0,0,0,0,0,0,0,1,15.0,1,,4,114708,2,1,2,0,1,,284.0,,12,1.0,0.0,3.0,1.0,1.0,2,1,1503.40886975388,550.0,18523.782695287253,0,1,0,1,90.0,1,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07935744141362615,18523.782695287253,4,2,4_0,4_1_0,4_0_0,4_0_0 -30844,2,62.0,0.0,1,222,300.0,0.0,0.0,56,75,0.0,0.0,414.65226827277917,325.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106909,2,2,4,0,2,,360.0,,42,1.0,2.0,6.0,2.0,1.5,1,1,1250.39352149709,300.0,35325.732540205354,1,5,0,1,120.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009200092301839942,23550.488360136904,6,3,6,6_1,6_0,6_1_0 -30845,2,53.0,0.0,2,222,300.0,0.0,0.0,56,55,3733.962192545002,0.0,414.65226827277917,2980.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,2,111982,1,2,2,0,2,,200.0,200.0,43,2.0,1.0,4.0,2.0,1.5,1,1,1428.42273397685,300.0,48497.70698985952,1,1,2,3,80.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06144620405709272,32331.80465990635,8,4,8,8_1,8_0,8_0_1 -30846,2,62.0,0.0,2,222,350.0,0.0,0.0,0,78,2240.377315527001,6.211035028916747,483.76097965157567,1901.0,77.41471518855863,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105471,2,2,2,0,1,,182.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1549.65131469261,350.0,15038.7433991439,0,5,0,1,140.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12640683796148933,15038.7433991439,3,2,3_0,3_1_0,3_0_0,3_0_1 -30847,2,65.0,0.0,5,222,1562.0,0.0,0.0,72,75,0.0,0.0,2158.9561434736033,1712.0,258.04905062852873,0.0,30,2,2,2,2,1,2,2,2,0,,1,,3,109960,1,1,3,0,1,,156.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,1458.13518136903,1562.0,20315.2529016521,5,5,0,1,106.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.0842716557991151,13543.501934434733,3,2,3_0,3_1_0,3_0_0,3_0_0 -30848,2,60.0,0.0,5,222,330.0,0.0,0.0,62,63,0.0,745.3242034700096,456.1174951000571,1100.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,102981,1,2,3,0,1,,221.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1259.86509179247,330.0,41330.31574033484,1,1,0,1,120.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02661484627678502,27553.54382688989,7,4,7,7_1,7_0,7_0_0 -30849,0,77.0,0.0,7,222,800.0,0.0,0.0,0,77,0.0,944.0773243953455,1105.7393820607444,1776.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,109933,2,1,2,0,1,,145.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1526.32052292831,800.0,38920.842445828246,0,5,0,1,45.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04563107806497035,38920.842445828246,9,5,9,9_1,9_0,9_0_0 -30850,2,53.0,0.0,1,222,800.0,0.0,0.0,85,64,0.0,77.63793786145933,1105.7393820607444,1085.0,361.26867087994026,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,1,113025,1,1,2,0,1,,210.0,,42,1.0,1.0,4.0,3.0,2.0,2,1,1343.28256587196,800.0,28701.95699760554,7,1,0,1,81.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03780230038288038,14350.97849880277,3,2,3_0,3_1_0,3_0_0,3_1_0 -30851,2,73.0,0.0,7,222,1190.0,0.0,0.0,72,78,0.0,372.6621017350048,1644.7873308153573,1646.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,131384,2,1,2,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1207.30536359693,1190.0,39710.94588907896,5,5,0,1,120.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041449528918238936,26473.963926052642,7,4,7,7_1,7_0,7_0_0 -30852,2,65.0,0.0,5,222,480.0,0.0,0.0,0,74,3435.2452171414016,0.0,663.4436292364467,2855.0,129.02452531426437,0.0,71,2,2,2,2,1,2,2,2,0,,1,,3,100240,1,3,3,0,2,,201.0,,11,0.0,2.0,9.0,1.0,1.0,1,1,1515.23522313178,480.0,42218.323527895314,0,5,0,1,200.0,1,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.06762466534497961,42218.323527895314,9,5,9,9_1,9_0,9_0_0 -30853,2,59.0,0.0,5,222,466.0,1424.0,0.0,77,75,0.0,0.0,644.0931900503837,1890.0,0.0,2582.641730806767,71,0,0,0,0,0,0,0,0,0,,1,,3,128083,1,1,2,0,1,,660.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,1306.20935467215,466.0,39766.321814014766,7,5,0,1,120.0,1,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047527654401617575,26510.881209343177,7,4,7,7_1,7_0,7_0_0 -30854,2,91.0,0.0,2,222,0.0,0.0,0.0,0,71,0.0,341.60692659042104,0.0,2756.0,165.1513924022584,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118535,1,2,2,0,2,,160.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1437.07434398515,0.0,9259.851688614946,0,5,0,1,100.0,1,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.29762895699382763,9259.851688614946,1,1,1_0,1_1_0,1_0_0,1_0_1 -30855,2,56.0,0.0,1,222,628.0,0.0,0.0,78,46,3733.962192545002,25.879312620486445,868.0054149176844,3273.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113992,2,1,1,0,1,,378.0,,42,1.0,1.0,4.0,3.0,2.0,2,2,1571.40200440113,628.0,49248.8312388239,5,1,0,1,180.0,1,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06645842992959851,24624.41561941195,7,4,7,7_1,7_0,7_1_0 -30856,2,32.0,0.0,9,222,1500.0,0.0,0.0,63,21,0.0,0.0,2073.261341363896,1535.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,133499,2,1,1,0,1,,140.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1651.96627098997,1500.0,37950.3492445392,1,1,1,2,136.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04044758561005539,21083.527358077332,5,3,5,5_1,5_0,5_0_0 -30857,1,63.0,28.0,1,222,567.0,0.0,0.0,0,77,0.0,672.8621281326475,783.6927870355527,1267.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130861,2,2,4,0,1,,140.0,350.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1700.53770646379,567.0,14266.438459195055,0,5,2,3,50.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08880983180377361,14266.438459195055,3,2,3_1,3_1_1,3_0_1,3_1_0 -30858,1,75.0,60.0,6,222,432.0,0.0,0.0,0,72,0.0,910.9518042411229,597.099266312802,1462.0,258.04905062852873,0.0,71,2,2,2,1,1,2,2,2,0,,1,,4,101643,1,2,4,0,1,,104.0,430.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1585.22395939893,432.0,13041.303013961584,0,5,2,3,80.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.11210536235795085,13041.303013961584,2,1,2_1,2_1_1,2_0_1,2_0_0 -30859,2,57.0,0.0,1,222,550.0,0.0,0.0,0,11,0.0,1666.627732759327,760.1958251667618,2224.0,110.10092826817227,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,121271,1,2,2,0,1,,226.0,,22,1.0,0.0,5.0,2.0,1.5,1,1,1245.64024085443,550.0,11057.463675926763,0,1,0,1,80.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20113111516177773,7371.642450617842,1,1,1_0,1_1_0,1_0_0,1_1_0 -30860,2,74.0,0.0,1,222,160.0,0.0,0.0,0,78,0.0,414.0690019277831,221.1478764121489,620.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123772,1,3,4,0,2,,130.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1652.85623601186,160.0,13695.159930530272,0,5,0,1,70.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04527146839795932,13695.159930530272,3,2,3_0,3_1_0,3_0_0,3_1_0 -30861,2,46.0,0.0,2,222,305.4,0.0,0.0,46,21,2778.0678712534814,51.75862524097289,422.11600910168914,2290.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125496,2,1,1,0,1,,242.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1337.42493976708,305.4,32493.258373058467,1,1,0,1,120.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07047615766040674,14127.503640460203,3,2,3_0,3_1_0,3_0_0,3_0_1 -30862,2,43.0,0.0,8,222,547.0,720.0,0.0,56,85,0.0,0.0,756.049302484034,1267.0,0.0,1305.830088610163,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,127869,2,1,3,0,1,,209.0,,42,1.0,0.0,5.0,5.0,2.8,3,2,1226.45675207148,547.0,46367.74125584237,1,7,1,2,101.0,1,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027325031707046053,16559.907591372274,4,2,4_0,4_1_0,4_0_0,4_0_0 -30863,2,72.0,0.0,6,222,3149.0,0.0,0.0,0,74,0.0,0.0,4352.466642636606,3279.0,137.62616033521533,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,127394,2,1,2,0,1,,336.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,1572.39341322134,3149.0,38572.42300871756,0,5,0,1,150.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08500891943601598,38572.42300871756,9,5,9,9_1,9_0,9_0_0 -30864,0,89.0,0.0,2,222,324.0,2040.0,0.0,0,77,0.0,0.0,447.8244497346015,2364.0,0.0,3699.851917728796,70,0,0,0,0,0,0,0,0,0,,1,,2,117395,2,1,2,0,1,,212.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1515.23522313178,324.0,24826.597371469434,0,5,0,1,90.0,1,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09522045911602424,24826.597371469434,7,4,7,7_1,7_0,7_0_1 -30865,2,80.0,0.0,2,222,353.0,1192.0,0.0,77,75,0.0,455.47590212056144,487.9075023343035,1985.0,0.0,2161.874257810159,71,0,0,0,0,0,0,0,0,0,,1,,2,115326,2,2,2,0,2,,345.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,1345.21429390946,353.0,32250.4019207956,5,5,0,1,120.0,1,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06154962052488526,21500.267947197066,6,3,6,6_1,6_0,6_0_1 -30866,2,31.0,0.0,7,222,320.0,746.0,0.0,0,63,0.0,0.0,442.2957528242978,1066.0,0.0,1352.985064032197,41,0,0,0,0,0,0,0,0,2,2.0,1,,5,100787,2,1,1,0,1,,110.0,315.0,12,1.0,0.0,2.0,1.0,1.0,3,3,1712.45519394455,320.0,17556.376794340125,0,1,2,3,45.0,1,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06071867860250414,17556.376794340125,4,2,4_0,4_1_0,4_0_0,4_0_0 -30867,0,26.0,0.0,1,222,340.0,0.0,0.0,52,63,896.1509262108004,0.0,469.9392373758164,1060.0,206.439240502823,0.0,71,2,2,1,2,2,2,2,1,2,4.0,1,,1,106041,2,2,3,0,1,,40.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1364.36816172581,340.0,44950.196704431844,1,1,5,0,60.0,1,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02358165431332784,29966.797802954563,8,4,8,8_1,8_0,8_1_0 -30868,0,52.0,0.0,9,222,300.0,0.0,0.0,78,11,0.0,72.46207533736204,414.65226827277917,370.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,115265,2,3,4,0,2,,66.0,,42,1.0,1.0,1.0,2.0,1.5,2,2,1329.17871485031,300.0,5296.365258121456,6,1,5,0,35.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06985923023957635,3530.9101720809704,1,1,1_0,1_1_0,1_0_0,1_0_0 -30869,2,66.0,0.0,7,222,1650.0,0.0,0.0,72,75,0.0,10.351725048194577,2280.5874755002856,1724.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,115569,2,1,2,0,1,,182.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1253.11241691806,1650.0,45098.86207616346,5,5,0,1,150.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038227128593366494,30065.90805077564,8,4,8,8_1,8_0,8_0_0 -30870,2,73.0,0.0,2,222,2150.0,0.0,0.0,0,75,0.0,341.60692659042104,2971.674589288251,2704.0,385.3532489386029,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126250,1,2,1,0,2,,115.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1540.52180307378,2150.0,24749.288735017682,0,5,0,1,100.0,1,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10925566503954191,24749.288735017682,7,4,7,7_1,7_0,7_0_1 -30871,2,52.0,0.0,2,222,180.0,0.0,0.0,55,55,403.2679167948602,103.51725048194578,248.7913609636675,650.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,132616,2,3,1,0,1,,110.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1371.14473646922,180.0,21308.40041859786,4,4,0,1,64.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030504401420609846,11838.000232554366,2,1,2_0,2_1_0,2_0_0,2_0_1 -30872,0,86.0,0.0,1,222,140.0,0.0,0.0,0,71,1194.8679016144006,683.2138531808421,193.50439186063028,1750.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122738,2,2,4,0,1,,120.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1563.71426104986,140.0,13277.108330474759,0,5,0,1,80.0,1,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1318058086475991,13277.108330474759,3,2,3_0,3_1_0,3_0_0,3_1_0 -30873,2,29.0,0.0,5,400,450.0,0.0,0.0,0,11,0.0,77.63793786145933,621.9784024091688,525.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,5.0,8,,3,123105,1,3,0,0,1,,30.0,247.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2109.43085029975,450.0,10338.058208510596,0,1,2,3,83.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.05078323118434412,10338.058208510596,2,1,2_0,2_0_0,2_0_0,2_0_0 -30874,2,58.0,0.0,1,400,540.0,0.0,0.0,0,63,0.0,569.3448776507017,746.3740828910024,1150.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,127140,2,1,0,0,1,,133.0,,12,1.0,1.0,2.0,1.0,1.0,3,3,1901.56503994354,540.0,16114.743221602595,0,1,1,2,42.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07136322212434444,16114.743221602595,4,2,4_0,4_0_0,4_0_0,4_1_0 -30875,2,60.0,0.0,5,400,550.0,0.0,0.0,81,62,2091.018827825201,0.0,760.1958251667618,2040.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101326,2,1,2,0,1,,138.0,,43,2.0,1.0,5.0,2.0,1.5,1,1,1282.1615345732,550.0,30397.0,4,4,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06711188604138567,20264.666666666668,5,3,5,5_1,5_0,5_0_0 -30876,2,50.0,0.0,1,400,349.0,0.0,0.0,11,11,0.0,0.0,482.3788054239998,349.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119286,2,2,4,0,1,,157.0,,43,3.0,2.0,4.0,3.0,2.0,5,4,1383.37677486176,349.0,29582.217020628712,1,1,0,1,70.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011797628276360427,14791.108510314356,3,2,3_0,3_1_0,3_0_0,3_1_0 -30877,2,87.0,0.0,1,400,360.0,0.0,0.0,0,71,0.0,517.5862524097289,497.582721927335,980.0,206.439240502823,0.0,71,2,2,1,1,1,2,2,2,0,,1,,1,117610,1,2,4,0,2,,50.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1487.63139519098,360.0,8632.546694627199,0,5,0,1,50.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.11352385740466844,8632.546694627199,1,1,1_0,1_1_0,1_0_0,1_1_0 -30878,2,70.0,0.0,1,400,420.0,0.0,0.0,0,71,0.0,0.0,580.5131755818909,531.0,190.95629746511128,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120926,1,1,4,0,1,,82.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1282.81437745833,420.0,17262.937734138937,0,5,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030759538624176467,17262.937734138937,4,2,4_0,4_1_0,4_0_0,4_1_0 -30879,2,67.0,0.0,1,400,180.0,0.0,0.0,0,71,0.0,0.0,248.7913609636675,275.0,163.4310653980682,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104009,1,3,4,0,2,,40.0,50.0,11,0.0,0.0,1.0,1.0,1.0,2,2,1779.97934634415,180.0,8324.990802868286,0,5,2,3,35.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033033069526665626,8324.990802868286,1,1,1_0,1_1_0,1_0_0,1_1_0 -30880,2,47.0,0.0,8,400,480.0,0.0,0.0,68,42,1344.2263893162005,186.3310508675024,663.4436292364467,1634.0,127.30419831007418,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,121060,2,1,2,0,1,,100.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1373.16831789623,480.0,34926.1126402502,1,1,1,2,102.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046784479476164646,19403.39591125011,5,3,5,5_1,5_0,5_0_0 -30881,2,82.0,0.0,1,400,860.0,0.0,0.0,0,71,0.0,51.75862524097289,1188.6698357153002,970.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121152,2,2,4,0,2,,168.0,,21,0.0,4.0,4.0,2.0,1.5,3,2,1362.34965860231,860.0,19177.2778223848,0,5,0,1,65.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05058069288998678,12784.851881589866,2,1,2_0,2_1_0,2_0_0,2_1_0 -30882,2,92.0,0.0,1,400,1080.0,0.0,0.0,0,75,1911.7886425830409,0.0,1492.748165782005,2400.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110090,1,1,2,0,2,,120.0,,11,0.0,5.0,3.0,1.0,1.0,2,2,1014.93963094735,1080.0,41115.87136591347,0,5,0,1,50.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05837161952962248,41115.87136591347,9,5,9,9_1,9_0,9_1_0 -30883,2,58.0,0.0,5,400,800.0,0.0,0.0,0,45,0.0,0.0,1105.7393820607444,1150.0,602.1144514665671,0.0,41,0,0,0,0,0,0,0,0,4,105.0,1,,3,113504,2,2,1,0,2,,181.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,925.054069680946,800.0,28367.18362646965,0,1,1,2,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04053980173509102,28367.18362646965,8,4,8,8_1,8_0,8_0_0 -30884,2,64.0,0.0,5,400,516.0,0.0,0.0,75,74,1418.9056331671006,207.03450096389156,713.2019014291802,1794.0,220.20185653634454,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,105933,2,3,3,0,2,,108.0,,41,0.0,3.0,7.0,2.0,1.5,3,3,905.5531365761,516.0,58684.26117159233,5,5,0,1,200.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030570377204790188,39122.84078106155,9,5,9,9_1,9_0,9_0_0 -30885,2,37.0,0.0,8,400,379.0,0.0,0.0,54,63,1642.9433647198007,0.0,523.8440322512777,1479.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,107425,2,1,1,0,1,,202.0,445.0,43,2.0,0.0,4.0,2.0,1.5,1,1,985.14908100536,379.0,18241.110794220982,1,1,2,3,70.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0810805886047557,12160.740529480654,2,1,2_0,2_1_0,2_0_0,2_0_0 -30886,2,57.0,0.0,5,400,700.0,0.0,0.0,11,11,0.0,0.0,967.5219593031513,830.0,223.64251054472493,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,128022,1,2,3,0,2,,600.0,,43,2.0,3.0,4.0,2.0,1.5,2,1,911.515504513646,700.0,24160.827734110997,1,1,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03435312767981788,16107.21848940733,4,2,4_0,4_1_0,4_0_0,4_0_0 -30887,1,60.0,130.0,1,400,600.0,0.0,0.0,21,21,0.0,672.8621281326475,829.3045365455583,1378.0,220.20185653634454,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,105541,2,3,1,0,1,,76.0,,43,2.0,3.0,2.0,2.0,1.5,3,2,905.445578192079,600.0,12917.338946043341,1,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10667831863482144,8611.559297362228,1,1,1_1,1_1_1,1_0_1,1_1_0 -30888,2,67.0,0.0,1,400,708.0,0.0,0.0,77,74,0.0,0.0,978.5793531237589,836.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127608,2,1,2,0,1,,135.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,884.058752906889,708.0,44725.183009254266,5,5,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018691930222555376,29816.788672836177,8,4,8,8_1,8_0,8_1_0 -30889,2,56.0,0.0,2,400,1400.0,0.0,0.0,0,52,0.0,77.63793786145933,1935.0439186063027,1525.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,129719,1,2,1,0,1,,139.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,781.793792396892,1400.0,38805.12932313859,0,1,1,2,67.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039298928430337124,25870.08621542573,7,4,7,7_1,7_0,7_0_1 -30890,2,36.0,0.0,1,400,850.0,0.0,0.0,0,69,0.0,0.0,1174.848093439541,910.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,7.0,2,,1,121336,2,2,0,0,1,,0.0,190.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1318.49969907318,850.0,10669.534003066205,0,1,2,3,45.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0852895730721215,10669.534003066205,2,1,2_0,2_0_0,2_0_0,2_1_0 -30891,2,81.0,0.0,1,400,1152.0,0.0,0.0,0,71,0.0,0.0,1592.264710167472,5034.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107848,2,2,4,0,2,,130.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1085.02810637808,1152.0,10813.618725172922,0,5,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.4655240884609144,10813.618725172922,2,1,2_0,2_1_0,2_0_0,2_1_0 -30892,2,47.0,0.0,1,400,700.0,0.0,0.0,67,55,2987.1697540360015,310.55175144583734,967.5219593031513,3105.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110331,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,2.0,1.5,2,1,883.737325135902,700.0,23467.83462558754,4,4,1,2,170.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1323087557730846,15645.223083725026,3,2,3_0,3_1_0,3_0_0,3_1_0 -30894,2,66.0,0.0,9,400,700.0,0.0,0.0,0,77,2539.0942909306013,0.0,967.5219593031513,2496.0,165.1513924022584,0.0,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,114030,2,1,1,0,1,,160.0,,21,1.0,7.0,7.0,2.0,1.5,2,2,897.151229390975,700.0,14247.589926223713,0,5,1,2,160.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17518752384962546,9498.393284149142,1,1,1_0,1_1_0,1_0_0,1_0_0 -30895,2,71.0,0.0,7,400,228.0,0.0,0.0,0,77,3883.3206802468017,0.0,315.13572388731217,2873.0,77.41471518855863,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,112268,2,1,1,0,1,,59.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,976.582294190525,228.0,15910.746971270168,0,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18056977495699852,15910.746971270168,3,2,3_0,3_1_0,3_0_0,3_0_0 -30896,2,28.0,0.0,9,400,1200.0,0.0,0.0,42,62,0.0,0.0,1658.6090730911167,1220.0,34.40654008380383,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2008.0,6,116678,1,3,0,0,1,,0.0,432.0,43,2.0,0.0,3.0,3.0,1.8,4,3,1407.51695270445,1200.0,33778.150444906874,4,1,2,3,85.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03611802256579604,18765.639136059373,5,3,5,5_0,5_0,5_0_0 -30897,2,70.0,0.0,1,400,408.0,0.0,0.0,77,75,448.0754631054002,0.0,563.9270848509797,740.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105446,2,2,4,0,2,,164.0,,41,0.0,5.0,4.0,2.0,1.5,1,1,781.558438657846,408.0,33206.963655161526,5,5,1,2,60.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022284482486400952,22137.975770107685,6,3,6,6_1,6_0,6_1_0 -30898,2,44.0,0.0,9,400,1100.0,0.0,0.0,52,38,1493.5848770180007,0.0,1520.3916503335236,2164.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,102723,2,1,1,0,1,,120.0,,43,2.0,0.0,7.0,4.0,2.1,4,2,805.459607870954,1100.0,40066.24114379988,1,1,1,2,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05401055697322063,19079.162449428513,5,3,5,5_1,5_0,5_0_0 -30899,2,63.0,0.0,7,400,554.0,0.0,0.0,77,78,0.0,0.0,765.7245220770656,554.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,126464,2,1,1,0,1,,156.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,766.383634180304,554.0,15932.195671517715,6,5,0,1,70.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034772357270906246,10621.46378101181,2,1,2_0,2_1_0,2_0_0,2_0_0 -30900,2,74.0,0.0,1,400,1261.0,0.0,0.0,71,71,0.0,0.0,1742.9217009732483,1389.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123778,2,1,2,0,1,,158.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,817.682397292019,1261.0,22104.72393826076,5,5,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06283724709159562,14736.482625507173,3,2,3_0,3_1_0,3_0_0,3_1_0 -30901,2,41.0,0.0,1,400,0.0,0.0,0.0,0,11,0.0,0.0,0.0,1801.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133668,2,1,4,0,2,,471.0,,22,2.0,0.0,7.0,4.0,2.5,1,1,772.600913566237,0.0,45239.31497551869,0,1,0,1,80.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03981050555196544,18095.725990207477,4,2,4_0,4_1_0,4_0_0,4_1_0 -30902,1,30.0,400.0,6,400,0.0,0.0,0.0,85,21,0.0,0.0,0.0,1191.0,110.10092826817227,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,102144,2,1,1,0,1,,193.0,480.0,42,1.0,0.0,5.0,4.0,2.1,2,2,838.097755501405,0.0,14637.753753513007,6,4,2,3,80.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08136494301348418,6970.358930244289,1,1,1_1,1_1_1,1_0_1,1_0_0 -30903,2,54.0,0.0,7,400,1100.0,0.0,0.0,22,22,896.1509262108004,103.51725048194578,1520.3916503335236,1832.0,55.050464134086134,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,,5,108615,2,1,2,0,1,,300.0,,43,2.0,2.0,9.0,3.0,2.0,1,1,951.13747262599,1100.0,290237.01414307515,1,1,1,2,260.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006312082576403911,145118.50707153758,10,5,10,10_1,10_0,10_0_0 -30904,2,62.0,0.0,9,400,800.0,0.0,0.0,77,75,1642.9433647198007,0.0,1105.7393820607444,2706.0,220.20185653634454,0.0,42,0,0,0,0,0,0,0,0,0,,1,2006.0,6,127457,2,2,5,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,885.001603169953,800.0,40922.0,5,5,1,2,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06612580030301549,27281.333333333332,7,4,7,7_1,7_0,7_0_0 -30905,2,81.0,0.0,5,400,500.0,0.0,0.0,0,71,0.0,0.0,691.0871137879653,532.0,55.050464134086134,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,112402,2,1,2,0,1,,180.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,931.09212149717,500.0,58383.05724272232,0,5,0,1,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0091122326429097,58383.05724272232,10,5,10,10_1,10_0,10_0_0 -30906,0,47.0,0.0,1,400,712.0,0.0,0.0,0,69,0.0,284.67243882535087,984.1080500340626,1022.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,1,108864,2,3,3,0,1,,64.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,935.735255034626,712.0,14618.007041527246,0,1,5,0,70.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.069913771220432,14618.007041527246,3,2,3_0,3_1_0,3_0_0,3_1_0 -30907,2,42.0,0.0,1,400,700.0,0.0,0.0,52,48,1493.5848770180007,0.0,967.5219593031513,1764.0,110.10092826817227,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,120874,2,2,1,0,1,,140.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,864.679617775035,700.0,40098.96189813904,1,1,1,2,80.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04399116377329124,22277.201054521687,6,3,6,6_1,6_0,6_1_0 -30908,2,59.0,0.0,6,400,712.0,0.0,0.0,52,64,1493.5848770180007,0.0,984.1080500340626,1712.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,132029,2,2,1,0,1,,139.0,,43,2.0,1.0,4.0,3.0,2.0,4,4,1010.70998315003,712.0,32065.874720750333,1,1,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053390091956298256,16032.937360375166,4,2,4_0,4_1_0,4_0_0,4_0_0 -30909,1,57.0,97.0,9,400,600.0,0.0,0.0,11,47,0.0,0.0,829.3045365455583,767.0,287.294609699762,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,117576,1,1,1,0,1,,464.0,425.0,43,2.0,5.0,4.0,3.0,1.8,2,2,869.564113755693,600.0,28455.4904098221,1,1,2,3,85.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026954376429768064,15808.6057832345,3,2,3_1,3_1_1,3_0_1,3_0_0 -30910,2,48.0,0.0,1,400,0.0,0.0,0.0,0,11,0.0,0.0,0.0,2312.0,55.050464134086134,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,121759,2,1,2,0,1,,96.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,838.295730528351,0.0,6224.477574980339,0,1,0,1,49.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.3714367948393328,6224.477574980339,1,1,1_0,1_1_0,1_0_0,1_1_0 -30911,1,37.0,600.0,9,400,0.0,0.0,0.0,55,11,0.0,0.0,0.0,877.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,2007.0,6,106749,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,759.08929668538,0.0,41307.24316254972,1,1,1,2,120.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02123114332633828,17211.35131772905,4,2,4_1,4_1_1,4_0_1,4_0_0 -30912,2,60.0,0.0,1,400,800.0,0.0,0.0,11,11,0.0,0.0,1105.7393820607444,930.0,223.64251054472493,0.0,41,2,2,1,1,1,2,2,2,1,4.0,1,,1,101607,2,2,4,0,1,,500.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,841.891205542173,800.0,4954.973544012215,1,1,0,1,168.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.18769020495050848,3303.3156960081433,1,1,1_0,1_1_0,1_0_0,1_1_0 -30913,0,65.0,0.0,1,400,300.0,0.0,0.0,0,71,0.0,0.0,414.65226827277917,364.0,110.10092826817227,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132214,2,1,2,0,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,3,3,827.93285890018,300.0,9820.4396047206,0,5,5,0,60.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03706555048971824,9820.4396047206,2,1,2_0,2_1_0,2_0_0,2_1_0 -30915,0,80.0,0.0,5,400,520.0,0.0,0.0,0,71,0.0,0.0,718.7305983394839,584.0,110.10092826817227,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,129748,1,1,2,0,1,,252.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,884.586786008709,520.0,18416.80020650791,0,5,0,1,96.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03171017730830533,18416.80020650791,4,2,4_0,4_1_0,4_0_0,4_0_0 -30917,2,62.0,0.0,9,400,1200.0,0.0,0.0,0,46,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,129147,2,1,1,0,1,,338.0,,11,0.0,4.0,5.0,1.0,1.0,3,3,891.696069255593,1200.0,12958.045166470345,0,5,1,2,111.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09260656098846345,12958.045166470345,2,1,2_0,2_1_0,2_0_0,2_0_0 -30918,2,50.0,0.0,2,400,607.0,0.0,0.0,56,64,1747.4943061110607,0.0,838.9797561385899,1967.0,326.8621307961364,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,119716,1,2,1,0,1,,153.0,,43,3.0,0.0,4.0,4.0,2.5,2,1,756.714070121598,607.0,57097.43815491473,1,1,0,1,97.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03444988187846897,22838.97526196589,6,3,6,6_1,6_0,6_0_1 -30919,2,47.0,0.0,9,400,801.0,0.0,0.0,0,11,0.0,0.0,1107.1215562883203,865.0,110.10092826817227,0.0,50,2,2,1,2,2,2,2,1,2,10.0,1,2010.0,6,100634,1,2,1,0,1,,102.0,,12,1.0,1.0,5.0,1.0,1.0,4,3,920.453160041109,801.0,22458.03152284365,0,1,0,1,140.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.038516287552635566,22458.03152284365,6,3,6,6_1,6_0,6_0_0 -30920,2,64.0,0.0,9,400,900.0,0.0,0.0,71,42,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,121411,2,1,1,0,1,,170.0,,42,2.0,1.0,5.0,3.0,2.0,5,5,989.459136854969,900.0,57033.13162084963,5,1,1,2,126.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01578030128142195,28516.565810424814,8,4,8,8_1,8_0,8_0_0 -30921,2,71.0,0.0,6,112,1200.0,0.0,0.0,77,75,0.0,124.22070057833493,1658.6090730911167,1355.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,106637,2,1,2,0,1,,156.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,1496.92973994579,1200.0,27315.705574460088,5,5,0,1,84.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04960516199394503,18210.47038297339,4,2,4_0,4_1_0,4_0_0,4_0_0 -30922,2,66.0,0.0,9,112,0.0,0.0,0.0,75,74,0.0,517.5862524097289,0.0,2404.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,104848,2,2,2,0,1,,166.0,,41,0.0,6.0,5.0,2.0,1.5,3,3,1714.51751636427,0.0,52790.93665981957,5,5,0,1,194.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045538119838471086,35193.95777321305,9,5,9,9_1,9_0,9_0_0 -30923,2,51.0,0.0,6,112,200.0,0.0,0.0,90,46,0.0,0.0,276.4348455151861,200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,112603,2,1,2,0,1,,450.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,1674.90048645701,200.0,69412.04074499157,1,1,0,1,95.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0028813444735729227,34706.02037249578,9,5,9,9_1,9_0,9_0_0 -30924,2,75.0,0.0,7,112,3340.0,0.0,0.0,71,71,1941.6603401234008,0.0,4616.4619201036085,4910.0,464.48829113135173,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,119080,2,2,2,0,2,,344.0,,41,0.0,5.0,6.0,2.0,1.5,1,1,1687.54791460792,3340.0,21326.678584337806,5,5,0,1,114.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23022806765634274,14217.785722891871,3,2,3_0,3_1_0,3_0_0,3_0_0 -30925,2,58.0,0.0,2,112,360.0,0.0,0.0,0,48,4211.909353190762,0.0,497.582721927335,3250.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130469,2,1,2,0,1,,111.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1946.82356672538,360.0,6976.10045641748,0,4,0,1,116.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4658763187692127,6976.10045641748,1,1,1_0,1_1_0,1_0_0,1_0_1 -30926,2,36.0,0.0,9,112,1200.0,0.0,0.0,64,56,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,114973,2,1,1,0,1,,347.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1611.69482366829,1200.0,39941.43584967223,1,1,1,2,95.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0300439875150319,19019.731356986773,5,3,5,5_1,5_0,5_0_0 -30927,2,66.0,0.0,5,112,510.0,0.0,0.0,77,78,2240.377315527001,0.0,704.9088560637246,2100.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102937,2,1,2,0,1,,355.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1535.93190436194,510.0,29309.479095243645,5,5,0,1,98.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07164917510733887,19539.65273016243,5,3,5,5_1,5_0,5_0_0 -30928,2,50.0,0.0,6,112,445.0,0.0,0.0,62,46,1792.3018524216009,0.0,615.0675312712891,1795.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,107093,1,1,2,0,1,,523.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,1675.14103586763,445.0,53380.75194897801,1,1,0,1,100.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03362635284185737,26690.375974489005,7,4,7,7_1,7_0,7_0_0 -30929,2,49.0,0.0,7,112,790.0,0.0,0.0,68,90,5974.339508072003,0.0,1091.917639784985,4860.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,1,5.0,1,,5,125741,2,1,2,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,1473.31371315255,790.0,32202.151560523635,1,1,1,2,80.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15092159264158722,21468.10104034909,6,3,6,6_1,6_0,6_0_0 -30930,2,52.0,0.0,1,112,1030.0,0.0,0.0,11,62,0.0,0.0,1423.6394544032084,1135.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,109851,2,1,1,0,1,,187.0,,43,2.0,6.0,3.0,2.0,1.5,1,1,1467.94741857633,1030.0,32885.89453033575,4,1,1,2,90.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034513277385628476,21923.929686890497,6,3,6,6_1,6_0,6_1_0 -30931,2,45.0,0.0,7,112,1840.0,0.0,0.0,54,52,0.0,62.110350289167464,2543.200578739712,2050.0,258.04905062852873,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,5,128270,2,1,2,0,1,,641.0,,43,2.0,0.0,4.0,5.0,2.8,1,1,1600.09388483283,1840.0,57189.801412867164,1,1,1,2,167.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0358455519927504,20424.92907602399,5,3,5,5_1,5_0,5_0_0 -30932,2,66.0,0.0,2,112,430.0,0.0,0.0,71,75,3733.962192545002,0.0,594.3349178576501,3080.0,258.04905062852873,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,116586,2,1,1,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,1,1552.40029896822,430.0,42664.963003187404,5,5,0,1,160.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07219038253402212,28443.308668791604,8,4,8,8_1,8_0,8_0_1 -30933,2,34.0,0.0,9,112,1020.0,0.0,0.0,43,52,0.0,0.0,1409.817712127449,1110.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,121903,2,1,1,0,1,,245.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1611.69482366829,1020.0,46932.54483087492,1,1,1,2,155.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02365096552935647,22348.8308718452,6,3,6,6_1,6_0,6_0_0 -30934,0,32.0,0.0,7,112,3000.0,0.0,0.0,42,37,0.0,517.5862524097289,4146.522682727792,3530.0,51.60981012570575,0.0,70,2,2,2,2,1,2,2,2,2,10.0,1,,5,121865,1,1,2,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,2012.66571540759,3000.0,62699.36561445164,1,1,5,0,150.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.05630041014619718,34832.98089691758,9,5,9,9_1,9_0,9_0_0 -30935,2,41.0,0.0,2,112,0.0,0.0,0.0,56,64,0.0,0.0,0.0,1270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,110107,2,3,2,0,1,,247.0,,43,2.0,0.0,5.0,3.0,1.8,4,4,1674.90048645701,0.0,17122.07122025972,1,1,1,2,100.0,6,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07417326932370602,9512.261789033179,1,1,1_0,1_1_0,1_0_0,1_0_1 -30937,2,64.0,0.0,7,112,590.0,0.0,0.0,77,74,2688.452778632401,662.510403084453,815.482794269799,3065.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111425,2,1,1,0,1,,590.0,,41,0.0,4.0,7.0,2.0,1.5,3,2,1754.12351849761,590.0,45675.468966804714,6,5,0,1,260.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06710385397963908,30450.312644536476,8,4,8,8_1,8_0,8_0_0 -30938,2,73.0,0.0,6,112,789.0,0.0,0.0,77,78,0.0,683.2138531808421,1090.5354655574092,1569.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116958,2,1,1,0,1,,330.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1656.57748753677,789.0,37733.9373454109,5,5,0,1,90.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04158060648793698,25155.958230273933,7,4,7,7_1,7_0,7_0_0 -30939,2,61.0,0.0,7,112,590.0,0.0,0.0,75,64,0.0,0.0,815.482794269799,780.0,326.8621307961364,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,107829,2,1,1,0,1,,302.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1844.51499997962,590.0,51277.029920203575,7,1,0,1,100.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015211489456659687,34184.68661346905,9,5,9,9_1,9_0,9_0_0 -30940,0,36.0,0.0,2,112,600.0,0.0,0.0,67,52,0.0,0.0,829.3045365455583,696.0,165.1513924022584,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,111008,2,2,4,0,1,,220.0,,43,2.0,0.0,5.0,3.0,1.8,4,3,2114.58983800955,600.0,45004.11746017497,1,1,5,0,90.0,6,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015465251609831124,25002.287477874983,7,4,7,7_1,7_0,7_0_1 -30941,0,79.0,0.0,7,112,429.0,0.0,0.0,71,71,1792.3018524216009,0.0,592.9527436300742,1829.0,344.06540083803833,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,131118,2,1,2,0,1,,166.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1528.23376235399,429.0,23540.232488835023,5,5,0,1,80.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07769676874973443,15693.488325890015,3,2,3_0,3_1_0,3_0_0,3_0_0 -30942,2,76.0,0.0,1,120,374.0,0.0,0.0,78,78,970.8301700617004,1035.1725048194578,516.933161113398,2214.0,326.8621307961364,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,131185,2,2,3,0,1,,353.0,,41,0.0,4.0,4.0,2.0,1.5,3,2,1780.32124269241,374.0,26617.04238704171,5,5,0,1,99.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08317979014369635,17744.694924694475,4,2,4_0,4_1_0,4_0_0,4_1_0 -30943,2,55.0,0.0,5,120,550.0,0.0,0.0,56,48,0.0,103.51725048194578,760.1958251667618,710.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,3,129468,2,1,2,0,1,,350.0,,43,2.0,3.0,3.0,2.0,1.5,3,3,1684.80307029771,550.0,43759.84357599283,1,1,1,2,80.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016224920885903587,29173.22905066189,8,4,8,8_1,8_0,8_0_0 -30944,2,40.0,0.0,9,120,753.0,0.0,0.0,54,62,2688.452778632401,0.0,1040.7771933646757,2553.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,125907,2,1,1,0,1,,603.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1577.03219277348,753.0,48887.0305242707,1,1,1,2,140.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05222243962501516,20369.59605177946,5,3,5,5_1,5_0,5_0_0 -30945,2,62.0,0.0,1,120,641.0,0.0,0.0,75,74,2474.870141218827,186.3310508675024,885.9736798761714,2578.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122636,2,2,1,0,1,,201.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1657.98444878399,641.0,69766.69247227715,5,5,0,1,145.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036951730240392396,46511.128314851434,10,5,10,10_1,10_0,10_1_0 -30946,2,62.0,0.0,1,120,400.0,0.0,0.0,0,78,0.0,414.0690019277831,552.8696910303722,860.0,103.2196202514115,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,101383,2,1,1,0,1,,400.0,600.0,11,0.0,4.0,5.0,1.0,1.0,2,2,1963.66855368751,400.0,27063.993011192822,0,5,2,3,130.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.031776537913098445,27063.993011192822,7,4,7,7_1,7_0,7_1_0 -30947,2,57.0,0.0,5,120,700.0,0.0,0.0,67,48,2688.452778632401,0.0,967.5219593031513,2590.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,125812,2,2,2,0,1,,250.0,,43,2.0,3.0,6.0,2.0,1.5,4,2,1784.78801277539,700.0,51154.429111394566,1,1,0,1,116.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050631001948237594,34102.95274092971,9,5,9,9_1,9_0,9_0_0 -30948,2,52.0,0.0,5,120,750.0,0.0,0.0,0,48,0.0,0.0,1036.630670681948,780.0,51.60981012570575,0.0,50,2,2,2,2,1,2,2,2,2,5.0,1,,3,108662,1,3,4,0,2,,650.0,469.0,12,1.0,0.0,3.0,1.0,1.0,2,1,1887.48812909439,750.0,13618.084195769596,0,1,2,3,60.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.05727677908191403,13618.084195769596,3,2,3_0,3_1_0,3_0_0,3_0_0 -30949,2,37.0,0.0,9,120,770.0,0.0,0.0,55,48,1493.5848770180007,0.0,1064.2741552334664,1860.0,154.82943037711726,0.0,71,2,2,2,2,2,2,2,1,2,20.0,1,2006.0,6,115181,2,1,1,0,1,,940.0,,43,2.0,0.0,5.0,4.0,2.3,5,3,1605.26681476892,770.0,35091.69099119963,1,1,1,2,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.053004000304985435,15257.256952695494,3,2,3_0,3_1_0,3_0_0,3_0_0 -30950,2,50.0,0.0,1,120,400.0,0.0,0.0,0,85,0.0,0.0,552.8696910303722,580.0,309.6588607542345,0.0,31,2,2,1,2,1,1,2,2,0,,1,,1,108803,1,3,4,0,2,,250.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1756.79138676347,400.0,12012.094381400068,0,7,0,1,70.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04828466889987908,12012.094381400068,2,1,2_0,2_1_0,2_0_0,2_1_0 -30951,2,75.0,0.0,1,120,450.0,0.0,0.0,86,77,1792.3018524216009,0.0,621.9784024091688,1830.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,100180,1,1,2,0,1,,228.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,1675.77989981596,450.0,34927.86209729793,5,5,0,1,65.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052393702050878496,23285.24139819862,6,3,6,6_1,6_0,6_1_0 -30952,2,54.0,0.0,1,120,570.0,0.0,0.0,56,62,2240.377315527001,0.0,787.8393097182804,2170.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,105757,2,2,0,0,1,,423.0,300.0,43,2.0,0.0,3.0,3.0,2.0,1,1,2558.30473897999,570.0,24707.95156381753,1,1,2,3,80.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08782597757629414,12353.975781908764,2,1,2_0,2_0_0,2_0_0,2_1_0 -30953,2,68.0,0.0,1,120,750.0,0.0,0.0,0,72,0.0,621.1035028916747,1036.630670681948,1410.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114483,2,2,4,0,1,,100.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1948.68259147382,750.0,15471.986144380062,0,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0911324497606378,15471.986144380062,3,2,3_0,3_1_0,3_0_0,3_1_0 -30954,1,32.0,406.0,5,120,0.0,0.0,0.0,0,56,0.0,0.0,0.0,956.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,3,124175,2,2,0,0,1,,242.0,370.0,32,1.0,0.0,4.0,3.0,1.6,2,2,2094.17603581135,0.0,28278.30318553976,0,1,2,3,85.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03380683747986884,17673.939490962348,4,2,4_1,4_0_1,4_0_1,4_0_0 -30955,2,50.0,0.0,7,120,600.0,0.0,0.0,56,63,2987.1697540360015,0.0,829.3045365455583,2690.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,1,3.0,1,,5,107287,2,1,1,0,1,,700.0,,43,2.0,1.0,5.0,4.0,2.5,2,2,1607.68556655764,600.0,31738.77358783256,1,1,0,1,170.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08475437756143306,12695.509435133023,2,1,2_0,2_1_0,2_0_0,2_0_0 -30956,0,26.0,0.0,6,120,580.0,0.0,0.0,0,43,0.0,0.0,801.6610519940398,610.0,51.60981012570575,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,4,109352,2,2,0,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,2545.65339269749,580.0,16856.800101671513,0,1,5,0,75.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03618717647007706,16856.800101671513,4,2,4_0,4_0_0,4_0_0,4_0_0 -30957,0,90.0,0.0,1,120,230.0,0.0,0.0,0,78,2688.452778632401,0.0,317.900072342464,2120.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107891,1,2,2,0,1,,194.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1805.38920827064,230.0,12495.854175185541,0,5,0,1,70.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16965626921366678,12495.854175185541,2,1,2_0,2_1_0,2_0_0,2_1_0 -30958,2,61.0,0.0,6,120,1500.0,0.0,0.0,0,74,0.0,0.0,2073.261341363896,1590.0,154.82943037711726,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,119497,1,2,2,0,1,,353.0,,21,0.0,2.0,5.0,2.0,1.5,1,1,1499.00861206042,1500.0,34414.908583388766,0,5,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046200907265157,22943.272388925845,6,3,6,6_1,6_0,6_0_0 -30959,2,31.0,0.0,9,120,0.0,0.0,0.0,45,65,0.0,0.0,0.0,1711.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,101560,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1730.87865026876,0.0,40831.609650249055,1,1,1,2,140.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04190380968705121,22684.227583471697,6,3,6,6_1,6_0,6_0_0 -30960,0,80.0,0.0,1,120,379.0,0.0,0.0,0,77,2240.377315527001,0.0,523.8440322512777,1999.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120384,2,2,2,0,1,,354.0,,11,0.0,3.0,7.0,1.0,1.0,3,2,1936.32684584977,379.0,17570.420625393188,0,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1137707538492845,17570.420625393188,4,2,4_0,4_1_0,4_0_0,4_1_0 -30961,2,60.0,0.0,5,120,920.0,0.0,0.0,75,42,0.0,310.55175144583734,1271.600289369856,1220.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,,3,100592,2,1,2,0,1,,444.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1723.47436353622,920.0,54684.99742598668,5,1,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022309592345710668,36456.66495065779,9,5,9,9_1,9_0,9_0_0 -30962,2,52.0,0.0,1,400,834.0,0.0,0.0,52,64,0.0,0.0,1152.733305798326,1455.0,146.2277953561663,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,132890,2,1,2,0,1,,305.0,260.0,43,2.0,3.0,7.0,2.0,1.5,1,1,1972.82409516987,834.0,36640.15378124468,1,1,2,3,140.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03971053202142355,24426.76918749645,7,4,7,7_1,7_0,7_1_0 -30963,2,53.0,0.0,1,400,500.0,0.0,0.0,22,34,2240.377315527001,0.0,691.0871137879653,2095.0,163.4310653980682,0.0,41,2,2,2,2,2,2,1,2,2,30.0,1,,1,111887,1,3,4,0,1,,150.0,730.0,43,2.0,2.0,9.0,3.0,1.8,1,1,1904.05610672426,500.0,41370.28763966673,1,1,2,3,210.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.050640208698749016,22983.493133148182,6,3,6,6_1,6_0,6_1_0 -30965,1,87.0,203.0,1,400,600.0,0.0,0.0,0,71,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,117842,2,2,0,0,1,,115.0,285.0,11,0.0,3.0,2.0,1.0,1.0,3,3,2147.47644603754,600.0,10872.0,0,5,2,3,49.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06070640176600441,10872.0,2,1,2_1,2_0_1,2_0_1,2_1_0 -30966,2,36.0,0.0,9,400,800.0,0.0,0.0,12,46,0.0,310.55175144583734,1105.7393820607444,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,104142,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1765.41196580234,800.0,51751.06451297052,1,1,1,2,105.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02125560141326762,34500.70967531368,9,5,9,9_1,9_0,9_0_0 -30967,2,67.0,0.0,1,400,500.0,0.0,0.0,75,78,4032.679167948602,0.0,691.0871137879653,3320.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118813,2,1,2,0,2,,110.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1548.32319729146,500.0,29871.3926729218,5,5,0,1,180.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11114312735105772,19914.261781947866,5,3,5,5_1,5_0,5_1_0 -30968,2,71.0,0.0,2,120,354.0,1341.0,0.0,78,78,0.0,0.0,489.28967656187945,1695.0,0.0,2432.108540036429,44,0,0,0,0,0,0,0,0,0,,1,,2,107953,1,1,1,0,2,,194.0,,41,0.0,1.0,6.0,2.0,1.5,4,2,1317.80593143432,354.0,32109.97017758667,5,5,0,1,80.0,0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05278734270463883,21406.64678505778,6,3,6,6_1,6_1,6_0_1 -30969,2,63.0,0.0,9,120,509.0,0.0,0.0,85,74,0.0,376.8027917542826,703.5266818361487,963.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,130484,2,1,1,0,1,,265.0,,41,0.0,3.0,5.0,2.0,1.5,3,2,1591.38595769158,509.0,31568.936636935498,6,5,1,2,125.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03050467017863677,21045.957757957,5,3,5,5_1,5_1,5_0_0 -30970,2,76.0,0.0,1,120,408.0,0.0,0.0,77,72,2539.0942909306013,0.0,563.9270848509797,2220.0,192.67662446930146,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,111602,2,3,4,0,1,,202.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1536.25193943972,408.0,23984.173353667786,5,5,0,1,75.0,0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09256103878437427,15989.44890244519,3,2,3_0,3_1_0,3_1_0,3_1_0 -30971,2,55.0,0.0,6,120,849.0,0.0,0.0,52,48,0.0,548.6414275543126,1173.465919211965,1569.0,326.8621307961364,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,121085,1,2,2,0,1,,258.0,,43,2.0,2.0,5.0,2.0,1.5,4,4,1435.77864484455,849.0,58213.7601455501,1,1,0,1,115.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026952390570151745,38809.17343036673,9,5,9,9_1,9_1,9_0_0 -30972,2,68.0,0.0,6,120,8000.0,900.0,0.0,77,75,0.0,113.86897553014036,11057.393820607445,9010.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,4,107122,2,2,5,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1685.27716682377,8000.0,37753.65970794497,5,5,2,3,90.0,0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23865236031949277,25169.106471963314,7,4,7,7_1,7_1,7_0_0 -30973,1,32.0,320.0,9,120,919.0,0.0,0.0,0,52,0.0,724.6207533736205,1270.21811514228,1619.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,120625,2,1,1,0,1,,320.0,,32,1.0,0.0,5.0,4.0,1.9,3,2,1378.62499945384,919.0,22005.641837612882,0,1,1,2,137.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07357204174943643,11581.91675663836,2,1,2_1,2_1_1,2_1_1,2_0_0 -30974,2,61.0,0.0,6,120,334.0,0.0,0.0,35,43,0.0,517.5862524097289,461.6461920103608,994.0,275.25232067043066,0.0,71,2,2,1,2,1,2,2,2,2,10.0,1,,4,108185,2,1,2,0,1,,133.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1700.29291058971,334.0,16338.08066658975,1,1,0,1,130.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06083945968222947,10892.0537777265,2,1,2_0,2_1_0,2_1_0,2_0_0 -30975,1,30.0,399.0,9,120,760.0,0.0,0.0,55,22,0.0,0.0,1050.452412957707,760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,127224,2,1,1,0,1,,187.0,,43,2.0,0.0,4.0,4.0,2.1,2,1,1525.46729622778,760.0,33126.619131325475,1,1,1,2,110.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.022942274820955767,15774.580538726415,3,2,3_1,3_1_1,3_1_1,3_0_0 -30976,2,72.0,0.0,5,120,690.0,0.0,0.0,78,78,298.71697540360015,0.0,953.7002170273921,1014.0,213.32054851958378,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,123531,2,1,2,0,1,,182.0,,41,0.0,0.0,5.0,2.0,1.5,1,1,1544.27111134968,690.0,30140.46310654453,5,5,0,1,100.0,0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03364248241361049,20093.642071029684,5,3,5,5_1,5_1,5_0_0 -30977,2,57.0,0.0,6,120,664.0,0.0,0.0,68,47,0.0,1117.9863052050143,917.7636871104179,1834.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,108921,2,1,2,0,1,,257.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1435.77864484455,664.0,31463.325851300884,1,1,0,1,120.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0582900869624427,20975.550567533923,5,3,5,5_1,5_1,5_0_0 -30978,2,42.0,0.0,1,120,310.0,0.0,0.0,0,47,3087.2399407962075,0.0,428.47401054853844,2409.0,55.050464134086134,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,115761,2,1,1,0,1,,110.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1581.71433739069,310.0,24935.492882377126,0,1,0,1,117.0,0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09660927944610764,24935.492882377126,7,4,7,7_1,7_1,7_1_0 -30979,0,66.0,0.0,1,120,456.0,0.0,0.0,77,78,3220.1689948508097,0.0,630.2714477746243,2708.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132544,1,3,4,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1806.70966694039,456.0,33707.32782842747,5,5,5,0,95.0,0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08033861401840867,22471.551885618315,6,3,6,6_1,6_1,6_1_0 -30980,2,47.0,0.0,9,120,1024.0,0.0,0.0,54,64,0.0,103.51725048194578,1415.346409037753,1224.0,172.03270041901916,0.0,71,2,2,2,1,2,2,2,2,2,10.0,1,2005.0,6,130958,2,2,1,0,1,,402.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1467.10581764024,1024.0,53008.30422477313,1,1,1,2,85.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02309072168786661,25242.049630844347,7,4,7,7_1,7_1,7_0_0 -30981,2,47.0,0.0,1,120,1586.0,0.0,0.0,21,37,2539.0942909306013,0.0,2192.128324935426,3336.0,86.01635020950958,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,128574,2,1,1,0,1,,325.0,,43,2.0,0.0,8.0,3.0,2.0,3,2,1755.35629896767,1586.0,22467.42617819026,1,1,0,1,140.0,0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14848162729197462,11233.71308909513,2,1,2_0,2_1_0,2_1_0,2_1_0 -30982,2,52.0,0.0,2,120,323.0,0.0,0.0,0,46,1746.0007212340429,0.0,446.44227550702556,1597.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,2,35.0,2,,2,129465,2,3,0,1,1,,222.0,350.0,32,2.0,1.0,4.0,2.0,1.5,1,1,2077.82238542605,323.0,38586.60764638899,0,1,2,3,75.0,0,3,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041387416448604296,25724.405097592662,7,4,7,7_0,7_1,7_0_1 -30983,2,44.0,0.0,2,120,617.0,1130.0,0.0,53,52,0.0,0.0,852.8014984143491,1747.0,0.0,2049.4277779576173,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,129388,1,1,1,0,1,,372.0,696.0,43,3.0,1.0,6.0,4.0,2.3,2,1,1583.79978459524,617.0,52720.18664658705,1,1,2,3,110.0,0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03313721196988774,22921.820281124805,6,3,6,6_1,6_1,6_0_1 -30984,2,60.0,0.0,9,120,557.0,0.0,0.0,11,21,2987.1697540360015,517.5862524097289,769.8710447597933,3197.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,131993,2,1,1,0,1,,263.0,,43,2.0,1.0,3.0,2.0,1.5,1,1,1510.86078461625,557.0,8464.178217726887,1,1,1,2,106.0,0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3777094382658895,5642.785478484591,1,1,1_0,1_1_0,1_1_0,1_0_0 -30985,2,32.0,0.0,1,120,1644.0,0.0,0.0,43,47,0.0,0.0,2272.29443013483,1708.0,110.10092826817227,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,1,124368,2,1,2,0,1,,321.0,,43,2.0,0.0,4.0,3.0,1.8,3,3,1500.13244616847,1644.0,49563.08470753001,1,1,1,2,80.0,0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034461131910550905,27535.047059738896,7,4,7,7_1,7_1,7_1_0 -30986,2,73.0,0.0,2,120,1037.0,0.0,0.0,0,77,2688.452778632401,0.0,1433.31467399624,3011.0,299.3368987290934,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119164,2,1,1,0,1,,487.0,,21,3.0,0.0,6.0,5.0,3.0,3,1,1518.05693275944,1037.0,42689.308202164626,0,5,0,1,120.0,0,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07053288345036528,14229.769400721541,3,2,3_0,3_1_0,3_1_0,3_0_1 -30987,2,77.0,0.0,1,120,702.0,0.0,0.0,77,78,0.0,174.94415331448837,970.2863077583032,1110.0,411.15815400145584,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,128548,1,1,2,0,1,,330.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1595.48424257538,702.0,21519.63333324455,5,5,0,1,112.0,0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05158080450586578,14346.422222163033,3,2,3_0,3_1_0,3_1_0,3_1_0 -30988,1,41.0,250.0,6,111,30.0,0.0,0.0,85,68,0.0,0.0,41.46522682727792,180.0,258.04905062852873,0.0,31,2,1,2,2,1,2,2,2,0,,2,,4,105902,1,2,0,1,1,,180.0,350.0,42,1.0,0.0,2.0,2.0,1.5,2,2,460.34068107126,30.0,8411.450182914756,6,4,2,3,55.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.021399401540249743,5607.633455276504,1,1,1_1,1_0_1,1_2_1,1_0_0 -30989,2,56.0,0.0,6,111,0.0,0.0,3200.0,55,64,0.0,0.0,1634.9226714800802,3200.0,0.0,3658.3864788884207,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,107721,2,1,2,0,1,,226.0,,43,2.0,1.0,5.0,3.0,2.0,7,5,1436.12029557363,0.0,57977.54075260821,1,1,0,1,90.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05519378639488159,28988.770376304106,8,4,8,8_1,8_2,8_0_0 -30990,2,50.0,0.0,7,111,600.0,800.0,0.0,55,64,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,107952,2,1,2,0,1,,490.0,,43,3.0,0.0,5.0,5.0,3.0,5,4,1275.15935132011,600.0,71315.70767206672,1,1,0,1,130.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019631018827404256,23771.902557355574,6,3,6,6_1,6_2,6_0_0 -30991,2,71.0,0.0,5,111,1200.0,0.0,0.0,72,74,0.0,0.0,1658.6090730911167,1365.0,283.85395569138166,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122889,2,2,3,0,1,,157.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,1307.29832047632,1200.0,43520.84180486591,5,5,0,1,108.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031364283028353195,29013.89453657727,8,4,8,8_1,8_2,8_0_0 -30992,2,40.0,0.0,1,111,900.0,0.0,0.0,55,43,0.0,0.0,1243.9568048183376,1025.0,215.04087552377396,0.0,50,2,2,2,1,1,2,2,2,2,30.0,1,,1,122799,2,3,1,0,1,,293.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1260.27599179896,900.0,34669.86289356647,4,1,1,2,90.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02956458187177327,16509.458520745935,4,2,4_0,4_1_0,4_2_0,4_1_0 -30993,2,77.0,0.0,2,111,269.0,1801.0,0.0,0,74,0.0,0.0,371.80486721792533,2070.0,0.0,3266.3888744262554,71,0,0,0,0,0,0,0,0,0,,2,,2,124530,2,2,0,0,1,,229.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,2151.23925464748,269.0,40403.93768831072,0,5,0,1,108.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.051232630244325734,40403.93768831072,9,5,9,9_0,9_2,9_0_1 -30994,1,55.0,31.0,2,111,137.0,0.0,0.0,0,78,0.0,0.0,189.3578691779025,170.0,56.77079113827632,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124404,2,1,0,1,1,430.0,95.0,309.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1745.82331611493,137.0,13749.75968893875,0,7,2,3,60.0,6,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012363852448763863,13749.75968893875,3,2,3_1,3_0_1,3_2_1,3_0_1 -30995,1,62.0,100.0,1,111,330.0,735.0,0.0,0,68,0.0,0.0,456.1174951000571,1065.0,0.0,1333.034882122875,71,2,2,2,2,1,2,2,2,0,,2,,1,115740,1,3,0,0,1,,300.0,308.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1926.94092249977,330.0,10209.609608429748,0,1,2,3,50.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.10431348904082127,10209.609608429748,2,1,2_1,2_0_1,2_2_1,2_1_0 -30996,0,60.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,434.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,1.0,8,,2,129428,2,2,0,1,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1890.45933588803,0.0,23548.0,0,1,5,0,80.0,6,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018430439952437573,23548.0,6,3,6,6_0,6_2,6_0_1 -30997,2,45.0,0.0,1,111,0.0,0.0,2300.0,55,22,0.0,0.0,1175.1006701263077,2300.0,0.0,2629.4652817010524,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,120869,2,1,0,0,1,,301.0,,43,2.0,0.0,4.0,3.0,2.0,2,2,2032.3491421094,0.0,97954.51417068238,1,1,1,2,160.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023480285921201435,48977.25708534119,10,5,10,10_0,10_2,10_1_0 -30998,2,51.0,0.0,1,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,4306.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,125856,2,2,0,0,1,,521.0,750.0,43,2.0,1.0,4.0,5.0,2.8,2,1,2233.43622141771,0.0,234837.69521273606,1,1,2,3,150.0,6,4,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018336068219794343,83870.60543312003,10,5,10,10_0,10_2,10_1_0 -30999,1,75.0,114.0,6,111,180.0,750.0,0.0,0,78,0.0,0.0,248.7913609636675,930.0,0.0,1360.2396756355868,71,2,2,2,2,1,2,2,2,0,,2,,4,100640,2,1,0,0,1,,73.0,249.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1895.13751462236,180.0,13869.121050945092,0,5,2,3,60.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06705543895563781,13869.121050945092,3,2,3_1,3_0_1,3_2_1,3_0_0 -31000,1,45.0,292.0,6,111,500.0,1300.0,0.0,0,68,0.0,0.0,691.0871137879653,1800.0,0.0,2357.7487711016834,20,0,0,0,0,0,0,0,0,2,15.0,2,,4,128079,1,2,0,0,1,,300.0,442.0,32,2.0,0.0,5.0,5.0,2.5999999999999996,2,2,1492.13595503727,500.0,33959.33992484732,0,1,2,3,95.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05300456381023409,13061.28458647974,2,1,2_1,2_0_1,2_2_1,2_0_0 -31001,1,24.0,229.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,435.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,6.0,2,,1,121902,2,1,0,0,1,,323.0,335.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2267.04219366938,0.0,11988.23176778855,0,1,2,3,60.0,6,4,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03628558476562084,11988.23176778855,2,1,2_1,2_0_1,2_2_1,2_1_0 -31002,2,69.0,0.0,6,111,510.0,0.0,0.0,77,74,0.0,0.0,704.9088560637246,510.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,131979,2,1,0,0,1,,273.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1685.25579347975,510.0,43684.0,5,5,0,1,91.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011674755059060526,29122.666666666668,8,4,8,8_0,8_2,8_0_0 -31003,1,62.0,129.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,688.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,120222,2,3,0,1,1,360.0,0.0,300.0,11,0.0,4.0,1.0,1.0,1.0,3,2,2269.35121524535,0.0,20289.762536239086,0,5,2,3,70.0,6,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03390872607657082,20289.762536239086,5,3,5,5_0,5_2,5_0_0 -31004,1,41.0,293.0,1,111,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1280.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,2,,1,116673,2,1,0,0,1,,203.0,370.0,43,2.0,3.0,3.0,2.0,1.5,2,2,1718.46718052233,0.0,16752.099032649046,4,1,2,3,65.0,6,4,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0764083353080316,11168.066021766032,2,1,2_1,2_0_1,2_2_1,2_1_0 -31005,1,25.0,206.0,8,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,741.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,130488,2,2,0,1,1,828.0,38.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1943.77234227226,0.0,5796.987913409881,0,1,2,3,80.0,6,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12782500344461334,5796.987913409881,1,1,1_1,1_0_1,1_2_1,1_0_0 -31006,1,66.0,246.0,1,111,990.0,0.0,0.0,0,77,0.0,0.0,1368.3524853001713,1040.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,131774,2,1,0,0,1,,192.0,401.0,21,1.0,2.0,2.0,2.0,1.5,4,2,1828.93385895019,990.0,10607.217151935185,0,5,2,3,55.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09804645130794386,7071.478101290123,1,1,1_1,1_0_1,1_2_1,1_1_0 -31007,1,25.0,100.0,1,111,0.0,0.0,920.0,0,62,0.0,0.0,470.040268050523,920.0,0.0,1051.786112680421,71,0,0,0,0,0,0,0,0,0,,2,,1,130481,2,1,0,0,1,,290.0,305.0,12,1.0,0.0,2.0,1.0,1.0,5,3,2223.12853732331,0.0,18135.80120290371,0,4,2,3,42.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05072839019941945,18135.80120290371,4,2,4_1,4_0_1,4_2_1,4_1_0 -31008,2,30.0,0.0,2,111,700.0,0.0,0.0,0,55,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,105200,2,2,5,0,1,,153.0,290.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1833.41045376129,700.0,14582.968711520685,0,4,3,4,45.0,6,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.052115588741515485,14582.968711520685,3,2,3_0,3_1_0,3_2_0,3_0_1 -31009,1,35.0,85.0,7,111,310.0,924.0,0.0,0,43,0.0,0.0,428.47401054853844,1234.0,0.0,1675.8152803830428,60,0,0,0,0,0,0,0,0,2,5.0,2,,5,101301,2,1,0,0,1,,180.0,530.0,32,1.0,0.0,3.0,3.0,1.6,5,4,2063.08522651608,310.0,29621.590138354855,0,1,2,3,80.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04165880340104303,18513.493836471782,4,2,4_1,4_0_1,4_2_1,4_0_0 -31010,2,80.0,0.0,7,111,0.0,0.0,1231.0,0,75,0.0,0.0,628.9343151849934,1231.0,0.0,1407.3355485973896,71,0,0,0,0,0,0,0,0,0,,2,,5,130612,2,1,0,0,1,,170.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1980.78546687103,0.0,18437.976969782598,0,5,0,1,82.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06676437453075497,18437.976969782598,4,2,4_0,4_0_0,4_2_0,4_0_0 -31011,2,78.0,0.0,2,111,250.0,700.0,0.0,0,75,0.0,0.0,345.54355689398267,950.0,0.0,1269.5570305932142,71,2,2,2,2,1,2,2,2,0,,2,,2,125303,1,3,0,0,1,,180.0,455.0,11,0.0,1.0,2.0,1.0,1.0,2,2,2135.89902180669,250.0,22013.06912921345,0,5,2,3,67.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.04315618119507284,22013.06912921345,6,3,6,6_0,6_2,6_0_1 -31012,2,41.0,0.0,5,111,492.0,901.0,0.0,0,63,0.0,0.0,680.0297199673578,1393.0,0.0,1634.1012636635514,71,0,0,0,0,0,0,0,0,0,,2,,3,111746,2,1,0,0,1,,310.0,361.0,22,1.0,4.0,3.0,2.0,1.5,5,4,1629.49104135016,492.0,15266.0,0,1,2,3,65.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0912485261365125,10177.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_0 -31013,1,67.0,129.0,1,111,135.0,460.0,0.0,0,78,0.0,0.0,186.5935207227506,595.0,0.0,834.2803343898265,71,0,0,0,0,0,0,0,0,0,,2,,1,100768,2,2,0,0,1,,120.0,224.0,11,0.0,0.0,2.0,1.0,1.0,3,2,2007.47640050465,135.0,9306.85884585958,0,5,2,3,35.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06393134459804369,9306.85884585958,1,1,1_1,1_0_1,1_2_1,1_1_0 -31014,0,87.0,0.0,1,112,232.0,1566.0,0.0,0,77,0.0,0.0,320.6644207976159,1798.0,0.0,2840.180442727105,71,0,0,0,0,0,0,0,0,0,,1,,1,120305,2,1,2,0,1,,108.0,,11,0.0,1.0,5.0,1.0,1.0,3,2,1280.26037333896,232.0,20887.72601617743,0,5,0,1,100.0,8,1,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08607926006916497,20887.72601617743,5,3,5,5_1,5_1,5_1_0 -31015,2,42.0,0.0,9,112,1648.0,0.0,0.0,52,63,0.0,0.0,2277.8231270451333,1648.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,110120,2,1,1,0,1,,442.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,1075.86282479816,1648.0,47235.14727531453,1,1,1,2,128.0,8,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03488927409063586,22492.9272739593,6,3,6,6_1,6_1,6_0_0 -31016,2,56.0,0.0,2,112,468.0,1217.0,0.0,0,43,0.0,0.0,646.8575385055356,1685.0,0.0,2207.2155803313453,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,113299,2,2,2,0,2,,172.0,,12,1.0,2.0,7.0,1.0,1.0,2,2,1127.10227242448,468.0,30227.79943383474,0,1,0,1,135.0,8,1,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055743389580451455,30227.79943383474,8,4,8,8_1,8_1,8_0_1 -31017,2,40.0,0.0,7,112,1380.0,0.0,0.0,47,34,0.0,0.0,1907.4004340547842,1380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,106258,2,1,2,0,2,,296.0,,43,2.0,0.0,5.0,4.0,2.1,2,1,1058.93142794331,1380.0,100190.8264355906,1,1,1,2,120.0,8,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013773716108501777,47709.917350281234,10,5,10,10_1,10_1,10_0_0 -31018,2,62.0,0.0,6,112,2039.0,0.0,0.0,34,31,0.0,155.27587572291867,2818.2532500273223,2279.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,125693,2,1,2,0,1,,309.0,,43,2.0,2.0,5.0,2.0,1.5,2,1,1177.60018507725,2039.0,139050.91173528426,1,1,0,1,142.0,8,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016389680380798986,92700.60782352283,10,5,10,10_1,10_1,10_0_0 -31019,2,53.0,0.0,8,112,0.0,0.0,180.0,0,46,0.0,0.0,91.96440027075451,180.0,0.0,205.78423943747367,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,123935,1,3,3,0,1,,550.0,1200.0,32,1.0,0.0,6.0,2.0,1.3,1,1,1283.5947575995,0.0,36218.087673568,0,1,2,3,167.0,8,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004969892436683348,27860.067441206153,7,4,7,7_1,7_1,7_0_0 -31020,2,41.0,0.0,7,112,0.0,0.0,0.0,52,37,0.0,0.0,0.0,2599.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,128487,2,1,2,0,1,,595.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1194.80783841746,0.0,116978.9051293725,4,1,1,2,155.0,8,1,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022217681018006134,55704.24053779643,10,5,10,10_1,10_1,10_0_0 -31021,0,66.0,0.0,5,112,1161.0,0.0,0.0,71,74,0.0,0.0,1604.7042782156554,1261.0,172.03270041901916,0.0,50,2,2,1,2,1,2,2,1,0,,1,,3,133568,1,2,3,0,1,,265.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1175.79818396297,1161.0,42919.87464490207,5,5,0,1,113.0,8,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.029380328121479705,28613.249763268046,8,4,8,8_1,8_1,8_0_0 -31022,2,27.0,0.0,1,111,696.0,0.0,0.0,34,48,0.0,0.0,961.9932623928477,696.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,1,120451,2,1,0,0,1,,0.0,615.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1411.72271581449,696.0,25931.738865868883,3,1,2,3,70.0,8,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02683969646617369,17287.825910579257,4,2,4_0,4_0_0,4_3_0,4_1_0 -31023,2,50.0,0.0,6,111,1385.0,0.0,0.0,55,68,0.0,0.0,1914.311305192664,1385.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,4,113282,2,1,0,0,1,,0.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,1311.60340000876,1385.0,53664.300229498804,1,1,1,2,104.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025808591448634552,26832.150114749402,7,4,7,7_0,7_3,7_0_0 -31025,1,22.0,140.0,7,111,250.0,0.0,0.0,0,48,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,122000,2,1,0,0,1,,0.0,390.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1415.52583916008,250.0,8572.615605129844,0,2,2,3,40.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029162628014068458,8572.615605129844,1,1,1_1,1_0_1,1_3_1,1_0_0 -31026,2,59.0,0.0,7,111,490.0,1031.0,0.0,0,54,0.0,124.22070057833493,677.265371512206,1641.0,0.0,1869.8761407737197,71,0,0,0,0,0,0,0,0,2,8.0,1,,5,116712,2,2,2,0,1,,205.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,946.658792251549,490.0,50048.65929469892,0,1,0,1,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03278809109225854,33365.77286313261,8,4,8,8_1,8_3,8_0_0 -31027,2,31.0,0.0,1,111,294.0,798.0,0.0,38,38,0.0,0.0,406.35922290732356,1092.0,0.0,1447.2950148762643,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,118123,1,2,5,0,1,,295.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,958.566936677895,294.0,72561.7880330061,1,1,1,2,150.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015049243267038612,48374.5253553374,10,5,10,10_1,10_3,10_1_0 -31028,2,56.0,0.0,1,111,456.0,1524.0,0.0,56,62,0.0,0.0,630.2714477746243,1980.0,0.0,2764.007020891512,71,2,2,2,1,1,1,2,2,2,20.0,1,,1,122130,2,3,4,0,1,,228.0,606.0,43,2.0,0.0,4.0,2.0,1.5,5,3,952.149640535205,456.0,40881.874564075726,1,1,2,3,80.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.04843222139671385,27254.58304271715,7,4,7,7_1,7_3,7_1_0 -31029,2,34.0,0.0,8,111,273.0,590.0,0.0,0,47,0.0,0.0,377.33356412822906,863.0,0.0,1070.0552114999948,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,117856,1,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1171.73394804132,273.0,26763.717641054158,0,1,1,2,58.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03224514664122008,26763.717641054158,7,4,7,7_0,7_3,7_0_0 -31031,1,22.0,93.0,7,111,858.0,0.0,0.0,0,67,0.0,0.0,1185.9054872601484,858.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,116298,2,1,0,0,1,,0.0,383.0,12,1.0,0.0,1.0,1.0,1.0,4,3,1586.09153936018,858.0,18971.29608727259,0,4,2,3,32.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04522621944504955,18971.29608727259,5,3,5,5_0,5_3,5_0_0 -31033,2,53.0,0.0,2,111,600.0,1000.0,0.0,37,22,0.0,0.0,829.3045365455583,1600.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,112706,2,1,1,0,1,,200.0,,43,2.0,2.0,5.0,3.0,2.0,1,1,973.694329528196,600.0,27609.449828737415,4,1,1,2,95.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057951172874681225,13804.724914368708,3,2,3_0,3_1_0,3_3_0,3_0_1 -31034,2,75.0,0.0,6,111,487.0,0.0,0.0,75,75,2240.377315527001,0.0,673.1188488294782,2417.0,739.7406118017824,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101930,2,1,2,0,1,,334.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,943.499847371177,487.0,47939.91292749278,5,5,0,1,90.0,8,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05041727972379959,31959.941951661855,8,4,8,8_1,8_3,8_0_0 -31035,2,78.0,0.0,2,111,480.0,0.0,0.0,75,75,1194.8679016144006,0.0,663.4436292364467,1340.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109375,2,2,2,0,1,,352.0,,41,0.0,1.0,4.0,2.0,1.5,4,3,897.919661986244,480.0,27036.697508138317,5,5,0,1,80.0,8,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04956226623450022,18024.465005425543,4,2,4_0,4_1_0,4_3_0,4_0_1 -31036,2,55.0,0.0,6,111,1035.0,0.0,0.0,43,54,0.0,269.144851253059,1430.5503255410881,1330.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,114551,2,1,1,0,1,,446.0,,43,2.0,1.0,5.0,3.0,2.0,2,2,985.495648473792,1035.0,55705.50777221532,1,1,0,1,90.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023875556532730765,27852.75388610766,7,4,7,7_1,7_3,7_0_0 -31037,2,29.0,0.0,7,111,864.0,0.0,0.0,43,33,0.0,0.0,1194.198532625604,864.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,5,127433,2,1,0,0,1,,0.0,560.0,43,2.0,0.0,3.0,2.0,1.5,4,3,1429.535958616,864.0,42755.39981136482,1,1,2,3,56.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020207973818790956,28503.599874243213,8,4,8,8_0,8_3,8_0_0 -31038,2,56.0,0.0,7,111,830.0,0.0,0.0,54,62,0.0,0.0,1147.2046088880224,890.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,111677,2,1,0,0,1,,0.0,570.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1285.40918789911,830.0,47622.385731592425,1,1,2,3,59.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01868868991604465,31748.25715439495,8,4,8,8_0,8_3,8_0_0 -31039,0,83.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,864.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,130091,2,2,2,0,1,,184.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1033.78122924879,0.0,22545.118948953947,0,5,0,1,73.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0383231510978605,22545.118948953947,6,3,6,6_1,6_3,6_0_1 -31040,0,32.0,0.0,2,111,1080.0,2160.0,0.0,34,45,0.0,0.0,1492.748165782005,3240.0,0.0,3917.4902658304895,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,131577,2,2,2,0,1,,1000.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1193.27173630126,1080.0,40478.00721756619,1,1,5,0,200.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08004346613669117,22487.781787536773,6,3,6,6_1,6_3,6_0_1 -31041,2,83.0,0.0,2,111,443.0,0.0,0.0,0,71,3733.962192545002,0.0,612.3031828161372,3167.0,385.3532489386029,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124225,2,1,2,0,2,,265.0,,11,0.0,5.0,5.0,1.0,1.0,3,2,1009.43195515861,443.0,28945.891517768778,0,5,0,1,120.0,8,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1094110367288532,28945.891517768778,8,4,8,8_1,8_3,8_0_1 -31042,2,47.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,685.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,108221,2,2,0,0,1,,0.0,630.0,32,2.0,0.0,5.0,4.0,2.3,4,3,1376.02608960183,0.0,40277.826478664865,0,1,2,3,95.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017006875988277173,17512.098468984725,4,2,4_0,4_0_0,4_3_0,4_0_1 -31043,2,84.0,0.0,7,111,346.0,1177.0,0.0,74,74,0.0,20.703450096389155,478.232282741272,1543.0,0.0,2134.6694642974476,71,0,0,0,0,0,0,0,0,0,,1,,5,109737,2,1,1,0,1,,266.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,908.83269966527,346.0,88291.64797907244,5,5,0,1,150.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017476171702738335,58861.09865271496,10,5,10,10_1,10_3,10_0_0 -31048,2,64.0,0.0,2,111,539.0,867.0,0.0,0,78,0.0,0.0,744.9919086634266,1406.0,0.0,1572.4370650347382,71,0,0,0,0,0,0,0,0,0,,1,,2,126943,2,1,2,0,1,,147.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,980.23185515208,539.0,14831.871473343215,0,5,0,1,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09479585920947015,14831.871473343215,3,2,3_0,3_1_0,3_3_0,3_0_1 -31049,2,60.0,0.0,6,111,2217.0,0.0,0.0,85,63,0.0,0.0,3064.280262535838,2217.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,101693,2,2,2,0,1,,224.0,,42,2.0,1.0,4.0,4.0,2.5,2,2,805.347626714884,2217.0,74855.17053730995,7,1,0,1,100.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029617192561133553,29942.06821492398,8,4,8,8_1,8_3,8_0_0 -31050,2,84.0,0.0,7,111,1457.0,0.0,0.0,77,78,0.0,0.0,2013.8278495781308,1617.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,109553,2,1,1,0,1,,175.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,917.642978724573,1457.0,36054.86008232807,5,5,0,1,80.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044848322703450356,24036.573388218716,6,3,6,6_1,6_3,6_0_0 -31051,2,70.0,0.0,6,111,450.0,840.0,0.0,56,78,0.0,0.0,621.9784024091688,1290.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,0,,1,,4,117411,2,1,2,0,1,,200.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1070.43311891853,450.0,25078.458369759304,1,5,0,1,105.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051438568550750234,16718.972246506204,4,2,4_0,4_1_0,4_3_0,4_0_0 -31052,2,71.0,0.0,1,111,344.0,1516.0,0.0,77,75,0.0,51.75862524097289,475.4679342861201,1910.0,0.0,2749.4977976847326,33,0,0,0,0,0,0,0,0,0,,1,,1,116928,1,3,2,0,1,,190.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,948.988888221826,344.0,47419.382327492116,5,5,0,1,123.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040278888215139155,31612.92155166141,8,4,8,8_1,8_3,8_1_0 -31053,2,57.0,0.0,7,111,1000.0,0.0,0.0,0,68,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,5,109466,2,1,0,0,1,,0.0,299.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1094.80613314845,1000.0,14990.541823072906,0,1,2,3,50.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06670872953109912,14990.541823072906,3,2,3_0,3_0_0,3_3_0,3_0_0 -31054,1,62.0,270.0,6,111,600.0,0.0,0.0,0,72,0.0,0.0,829.3045365455583,664.0,110.10092826817227,0.0,71,2,2,1,2,1,2,2,2,0,,2,,4,132196,2,1,0,0,1,,0.0,320.0,11,0.0,1.0,2.0,1.0,1.0,5,4,1074.64221834424,600.0,16906.717002704787,0,5,2,3,50.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.039274331018480484,16906.717002704787,4,2,4_1,4_0_1,4_3_1,4_0_0 -31055,2,75.0,0.0,5,111,458.0,0.0,0.0,0,74,2168.685241430137,0.0,633.0357962297762,1940.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107274,2,1,1,0,1,,148.0,,11,0.0,3.0,8.0,1.0,1.0,5,3,1016.20399804739,458.0,53406.006790123996,0,5,0,1,144.0,8,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03632550187891507,53406.006790123996,10,5,10,10_1,10_3,10_0_0 -31056,1,56.0,250.0,2,111,150.0,0.0,0.0,0,78,0.0,0.0,207.32613413638958,215.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110850,1,1,0,1,2,682.0,0.0,401.0,11,0.0,1.0,4.0,1.0,1.0,2,2,1418.15209885554,150.0,6224.778144896385,0,7,2,3,55.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03453938357245322,6224.778144896385,1,1,1_1,1_0_1,1_3_1,1_0_1 -31057,2,54.0,0.0,1,111,900.0,0.0,0.0,0,54,0.0,0.0,1243.9568048183376,930.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,107608,2,2,0,0,1,,62.0,,12,1.0,0.0,2.0,1.0,1.0,3,1,1244.82753009464,900.0,19252.23398642871,0,1,0,1,50.0,8,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.048306082330786954,19252.23398642871,5,3,5,5_0,5_3,5_1_0 -31058,2,22.0,0.0,1,111,0.0,0.0,0.0,63,62,0.0,0.0,0.0,3132.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,125498,2,1,0,0,1,,0.0,485.0,43,2.0,0.0,2.0,2.0,1.5,3,3,1219.4594329788,0.0,27554.495238156254,4,1,2,3,68.0,8,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11366566409327448,18369.66349210417,4,2,4_0,4_0_0,4_3_0,4_1_0 -31059,2,74.0,0.0,7,111,409.0,1150.0,0.0,77,75,0.0,0.0,565.3092590785556,1559.0,0.0,2085.7008359745664,71,0,0,0,0,0,0,0,0,0,,1,,5,109012,2,1,2,0,1,,286.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1024.28366931982,409.0,31706.841282593454,6,5,0,1,134.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04916919935685508,21137.894188395636,5,3,5,5_1,5_3,5_0_0 -31060,2,46.0,0.0,1,111,615.0,1245.0,0.0,85,37,0.0,0.0,850.0371499591973,1860.0,0.0,2257.997861555074,31,0,0,0,0,0,0,0,0,0,,1,,1,113878,2,1,1,0,1,,396.0,,42,1.0,0.0,7.0,3.0,2.0,2,2,1044.69306180325,615.0,98871.5060077972,6,1,0,1,150.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018812295625934096,49435.7530038986,10,5,10,10_1,10_3,10_1_0 -31061,2,53.0,0.0,6,111,1332.0,0.0,0.0,56,23,0.0,175.97932581930783,1841.0560711311396,1537.0,60.21144514665671,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,4,108558,2,2,2,0,1,,305.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,950.353846683667,1332.0,70517.6579207258,1,1,1,2,100.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021795959272043,35258.8289603629,9,5,9,9_1,9_3,9_0_0 -31062,2,68.0,0.0,2,111,658.0,1659.0,0.0,72,72,0.0,0.0,909.4706417449623,2317.0,0.0,3008.8501625059175,71,0,0,0,0,0,0,0,0,0,,1,,2,104348,2,1,1,0,1,,240.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,967.65436859565,658.0,58418.05766705396,5,5,0,1,110.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039662393659259214,38945.37177803597,9,5,9,9_1,9_3,9_0_1 -31063,2,55.0,0.0,2,111,330.0,0.0,0.0,0,52,5974.339508072003,0.0,456.1174951000571,4345.0,25.804905062852875,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106844,2,1,2,0,1,,360.0,,22,1.0,1.0,5.0,2.0,1.5,4,3,977.601111554501,330.0,42544.25955095465,0,1,0,1,100.0,8,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10212893692029251,28362.839700636436,8,4,8,8_1,8_3,8_0_1 -31065,1,23.0,222.0,2,111,160.0,0.0,0.0,84,47,0.0,0.0,221.1478764121489,160.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,66.0,2,,2,101531,2,1,0,1,1,576.0,0.0,500.0,42,1.0,0.0,3.0,2.0,1.5,3,2,1515.07894138663,160.0,20556.496684422276,3,1,2,3,55.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007783427422302366,13704.331122948184,3,2,3_1,3_0_1,3_3_1,3_0_1 -31066,2,33.0,0.0,1,111,196.0,0.0,0.0,0,55,881.2150774406205,0.0,270.9061486048824,801.0,25.804905062852875,0.0,71,1,2,2,2,1,2,2,2,2,15.0,2,,1,120630,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1651.93150840277,196.0,14734.052810455922,0,1,1,2,51.0,8,7,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.05436386107097266,14734.052810455922,3,2,3_0,3_0_0,3_3_0,3_1_0 -31067,2,75.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,261.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130583,2,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1735.50778328152,0.0,36514.216349246104,0,5,0,1,83.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0071479009025860905,36514.216349246104,9,5,9,9_0,9_3,9_0_1 -31069,2,29.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,657.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,1,103687,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,1619.15730829029,0.0,27392.369924662733,0,1,1,2,39.0,8,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023984781229479155,27392.369924662733,7,4,7,7_0,7_3,7_1_0 -31070,1,61.0,360.0,1,111,600.0,770.0,0.0,0,77,0.0,0.0,829.3045365455583,1370.0,0.0,1396.5127336525356,71,0,0,0,0,0,0,0,0,0,,2,,1,115151,2,1,0,0,1,,0.0,495.0,21,0.0,4.0,3.0,2.0,1.5,2,2,2071.49783285871,600.0,9467.58028557015,0,6,2,3,87.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1447043445819057,6311.7201903801,1,1,1_1,1_0_1,1_3_1,1_1_0 -31072,1,41.0,252.0,7,111,450.0,300.0,0.0,0,67,0.0,0.0,621.9784024091688,750.0,0.0,544.0958702542347,60,0,0,0,0,0,0,0,0,0,,2,,5,109834,2,1,0,0,1,,0.0,361.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1397.79830064065,450.0,12539.769895399402,0,4,2,3,56.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059809709927385546,12539.769895399402,2,1,2_1,2_0_1,2_3_1,2_0_0 -31073,1,20.0,368.0,5,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,222.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,133314,2,1,0,1,1,660.0,0.0,425.0,12,1.0,0.0,1.0,1.0,1.0,3,3,2035.92585240392,0.0,5330.690672460465,0,1,3,4,30.0,8,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041645635367083184,5330.690672460465,1,1,1_1,1_0_1,1_3_1,1_0_0 -31074,1,39.0,24.0,2,111,552.0,1100.0,0.0,85,47,0.0,0.0,762.9601736219137,1652.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,115721,1,2,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,1437.18062883853,552.0,29620.384606804913,6,1,1,2,63.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05577240207814431,14104.945050859482,3,2,3_1,3_0_1,3_3_1,3_0_1 -31075,1,60.0,78.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1609.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117940,2,2,5,0,1,,0.0,334.0,12,1.0,2.0,2.0,1.0,1.0,4,2,1114.48081117853,0.0,15966.9334763731,0,1,2,3,45.0,8,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10077075866702273,15966.9334763731,3,2,3_1,3_1_1,3_3_1,3_1_0 -31076,2,55.0,0.0,5,111,300.0,900.0,0.0,0,42,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,71,2,2,2,2,1,1,2,1,2,20.0,2,,3,108451,1,1,0,0,1,,0.0,515.0,22,2.0,0.0,4.0,2.0,1.5,1,1,1744.63523419524,300.0,29570.52300488008,0,1,2,3,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.0405809528563956,19713.682003253387,5,3,5,5_0,5_3,5_0_0 -31077,2,72.0,0.0,5,111,1500.0,0.0,0.0,86,74,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,131084,2,1,2,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1099.46373154473,1500.0,38725.63351744303,6,5,0,1,90.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03873403386220554,25817.089011628686,7,4,7,7_1,7_3,7_0_0 -31078,1,35.0,85.0,2,111,276.0,0.0,0.0,0,56,0.0,0.0,381.48008681095683,276.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,130615,1,2,0,1,2,192.0,0.0,138.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1704.07575623797,276.0,13079.86237895247,0,1,2,3,34.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021101139446553112,13079.86237895247,2,1,2_1,2_0_1,2_3_1,2_0_1 -31079,1,65.0,249.0,5,111,330.0,170.0,0.0,0,86,0.0,0.0,456.1174951000571,500.0,0.0,308.32099314406634,31,2,1,2,2,1,1,2,2,0,,2,,3,121350,1,2,0,1,1,334.0,0.0,339.0,11,0.0,6.0,3.0,1.0,1.0,3,3,472.514288765437,330.0,7897.092128279304,0,5,2,3,68.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.0633144443395198,7897.092128279304,1,1,1_1,1_0_1,1_3_1,1_0_0 -31081,2,56.0,0.0,2,111,361.0,600.0,0.0,52,54,0.0,0.0,498.96489615491095,961.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,1,25.0,2,,2,100888,2,2,0,0,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,4,2,470.365433425963,361.0,46024.16384814783,1,1,0,1,73.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02088033588553014,30682.77589876522,8,4,8,8_0,8_3,8_0_1 -31082,1,33.0,318.0,7,111,0.0,0.0,1280.0,85,62,0.0,0.0,653.969068592032,1280.0,0.0,1463.3545915553682,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,114766,2,2,2,0,1,,0.0,564.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,3,2,1190.08911077945,0.0,37618.65207341804,6,1,2,3,110.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.034025674218786515,13932.834101265942,3,2,3_1,3_1_1,3_3_1,3_0_0 -31084,2,65.0,0.0,6,111,1650.0,0.0,0.0,56,78,0.0,0.0,2280.5874755002856,1770.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128698,2,1,2,0,1,,334.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,331.998338003515,1650.0,29051.8858915344,1,5,0,1,92.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060925476804098655,19367.9239276896,5,3,5,5_1,5_3,5_0_0 -31085,1,37.0,315.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,418.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,103342,2,1,0,1,1,220.0,0.0,286.0,42,1.0,0.0,4.0,4.0,2.1,6,4,422.547076408767,0.0,9760.447089568735,6,1,2,3,75.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.042825907067999824,4647.831947413683,1,1,1_1,1_0_1,1_3_1,1_0_1 -31087,2,59.0,0.0,2,111,396.0,1344.0,0.0,56,38,0.0,0.0,547.3409941200684,1740.0,0.0,2437.549498738971,71,2,2,2,1,1,2,1,2,1,10.0,2,,2,103373,2,3,0,0,1,,0.0,600.0,43,3.0,1.0,4.0,3.0,2.0,6,6,2215.68289234851,396.0,43076.39097873705,1,1,2,3,85.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.040393356092874214,21538.195489368525,6,3,6,6_0,6_3,6_0_1 -31088,2,65.0,0.0,2,111,236.0,72.0,0.0,74,77,0.0,0.0,326.1931177079196,308.0,0.0,130.5830088610163,71,0,0,0,0,0,0,0,0,0,,2,,2,106507,1,2,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,5,4,1524.56647972633,236.0,58910.016231456975,5,5,1,2,68.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005228312937308835,39273.34415430465,9,5,9,9_0,9_3,9_0_1 -31089,2,33.0,0.0,2,111,1111.0,0.0,0.0,46,45,0.0,0.0,1535.5955668368588,1141.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,3,25.0,1,,2,128596,2,2,1,0,1,,151.0,690.0,43,2.0,0.0,3.0,3.0,1.8,5,3,1292.54339163966,1111.0,39772.704402309624,1,1,2,3,70.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02868801649640253,22095.946890172014,6,3,6,6_1,6_3,6_0_1 -31090,2,67.0,0.0,2,111,329.0,0.0,0.0,0,75,0.0,0.0,454.73532087248117,329.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112494,1,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,1,1575.54623679539,329.0,15999.683249674516,0,5,0,1,72.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02056290708171944,15999.683249674516,3,2,3_0,3_0_0,3_3_0,3_0_1 -31092,2,23.0,0.0,7,111,180.0,500.0,0.0,0,46,0.0,0.0,248.7913609636675,680.0,0.0,906.8264504237244,60,0,0,0,0,0,0,0,0,3,20.0,2,,5,133543,2,1,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1782.64895387165,180.0,22845.246478219327,0,1,2,3,30.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029765491943731594,22845.246478219327,6,3,6,6_0,6_3,6_0_0 -31093,2,69.0,0.0,2,111,279.0,913.0,0.0,0,77,0.0,0.0,385.6266094936846,1192.0,0.0,1655.8650984737208,50,2,2,2,2,1,2,2,2,0,,2,,2,100829,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1529.46044551729,279.0,20960.866789712214,0,5,0,1,55.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.056867877266652184,20960.866789712214,5,3,5,5_0,5_3,5_0_1 -31094,2,33.0,0.0,2,111,0.0,0.0,1473.0,56,63,0.0,0.0,752.5753422156744,1473.0,0.0,1684.0010260633262,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,117551,1,1,0,0,1,,0.0,511.0,43,2.0,1.0,3.0,4.0,2.1,2,2,1628.49310814278,0.0,41364.9663083061,1,1,2,3,64.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035609844065175054,19697.603003955286,5,3,5,5_0,5_3,5_0_1 -31095,2,58.0,0.0,2,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,2722.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,128973,2,1,3,0,1,,738.0,,43,2.0,1.0,7.0,4.0,2.3,5,4,1170.72456088071,0.0,108028.72179000133,1,1,1,2,137.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025197002749799604,46969.009473913626,10,5,10,10_1,10_3,10_0_1 -31096,2,44.0,0.0,2,111,400.0,1200.0,0.0,34,38,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,18.0,1,,2,107674,2,3,3,0,1,,229.0,,43,2.0,0.0,7.0,4.0,2.1,3,3,1191.87427276518,400.0,73837.33334962431,1,1,1,2,118.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021669254934003394,35160.63492839253,9,5,9,9_1,9_3,9_0_1 -31097,1,35.0,266.0,2,111,360.0,120.0,0.0,21,55,0.0,0.0,497.582721927335,480.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,102392,2,1,0,1,1,672.0,0.0,236.0,43,2.0,0.0,4.0,4.0,2.1,5,4,1091.31111149719,360.0,32415.24026101171,1,1,2,3,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014807849521860022,15435.828695719862,3,2,3_1,3_0_1,3_3_1,3_0_1 -31098,2,34.0,0.0,2,111,26.0,34.0,0.0,0,46,0.0,0.0,35.936529916974195,60.0,0.0,61.66419862881326,44,0,0,0,0,0,0,0,0,2,15.0,2,,2,124621,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,4,3,1609.15998665104,26.0,36702.86514920712,0,1,1,2,72.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0016347497601640552,36702.86514920712,9,5,9,9_0,9_3,9_0_1 -31099,2,79.0,0.0,1,111,1000.0,2700.0,0.0,74,75,0.0,0.0,1382.1742275759307,3700.0,0.0,4896.862832288112,71,0,0,0,0,0,0,0,0,0,,1,,1,127266,2,2,1,0,1,,246.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1155.69110014364,1000.0,51768.69276063438,5,5,0,1,80.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07147176802605165,34512.46184042292,9,5,9,9_1,9_3,9_1_0 -31100,1,44.0,381.0,6,111,411.0,1176.0,0.0,0,85,0.0,0.0,568.0736075337074,1587.0,0.0,2132.8558113966,50,0,0,0,0,0,0,0,0,0,,2,,4,106862,1,1,0,0,1,,0.0,337.0,31,0.0,2.0,4.0,4.0,2.1,2,2,391.611637336835,411.0,15702.731273271387,0,6,2,3,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10106522059008506,7477.491082510184,1,1,1_1,1_0_1,1_3_1,1_0_0 -31101,2,65.0,0.0,5,111,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,112932,1,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,534.863020078879,250.0,12341.411710432107,0,5,0,1,57.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020257001862167584,12341.411710432107,2,1,2_0,2_0_0,2_3_0,2_0_0 -31102,2,83.0,0.0,2,111,200.0,990.0,0.0,0,77,0.0,0.0,276.4348455151861,1190.0,0.0,1795.5163718389745,50,0,0,0,0,0,0,0,0,0,,2,,2,127429,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,534.863020078879,200.0,20695.877998426644,0,5,0,1,80.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057499372584746924,20695.877998426644,5,3,5,5_0,5_3,5_0_1 -31103,2,63.0,0.0,2,111,380.0,1150.0,0.0,77,75,0.0,0.0,525.2262064788536,1530.0,0.0,2085.7008359745664,71,0,0,0,0,0,0,0,0,0,,1,,2,105505,2,3,1,0,1,,150.0,,41,0.0,5.0,5.0,2.0,1.5,8,5,325.883660710475,380.0,38612.58070665904,6,5,0,1,105.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039624391118103626,25741.72047110603,7,4,7,7_1,7_3,7_0_1 -31104,1,62.0,161.0,2,111,150.0,0.0,0.0,0,78,0.0,0.0,207.32613413638958,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110847,2,2,0,1,1,316.0,0.0,146.0,11,0.0,0.0,2.0,1.0,1.0,2,2,511.215527481135,150.0,5210.681424864728,0,5,2,3,50.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02878702184405643,5210.681424864728,1,1,1_1,1_0_1,1_3_1,1_0_1 -31105,1,35.0,372.0,2,111,0.0,0.0,650.0,0,85,0.0,0.0,332.0936676443913,650.0,0.0,743.1097535242104,71,0,0,0,0,0,0,0,0,0,,2,,2,116480,2,1,0,1,1,703.0,0.0,324.0,31,0.0,0.0,4.0,5.0,2.4,5,4,385.155650284592,0.0,13481.541738842112,0,6,2,3,69.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04821407021477846,5617.30905785088,1,1,1_1,1_0_1,1_3_1,1_0_1 -31106,2,61.0,0.0,1,112,912.0,0.0,0.0,74,34,2128.358449750651,440.983487053089,1260.5428955492487,2865.0,175.47335442739956,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,1,132888,2,1,2,0,1,,664.0,,42,1.0,1.0,6.0,2.0,1.5,3,3,867.178860304437,912.0,76056.28139695183,5,1,0,1,130.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037669472492969175,50704.18759796789,10,5,10,10_1,10_0,10_1_0 -31107,2,75.0,0.0,1,112,1650.0,0.0,0.0,78,90,0.0,0.0,2280.5874755002856,1650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119466,2,1,2,0,1,,295.0,,41,0.0,5.0,6.0,2.0,1.5,1,1,747.874792932233,1650.0,29789.34505779976,5,5,0,1,80.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05538893174047744,19859.56337186651,5,3,5,5_1,5_0,5_1_0 -31108,0,85.0,0.0,1,112,1730.0,0.0,0.0,0,77,597.4339508072003,155.27587572291867,2391.16141370636,2280.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102200,2,1,2,0,2,,275.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,905.211186571011,1730.0,28411.0,0,5,0,1,81.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0802506071591989,28411.0,8,4,8,8_1,8_0,8_1_0 -31109,2,70.0,0.0,1,112,398.0,1280.0,0.0,78,72,0.0,0.0,550.1053425752203,1678.0,0.0,2321.4757130847347,50,0,0,0,0,0,0,0,0,0,,1,,1,117070,2,1,2,0,1,,741.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,897.936307891656,398.0,27112.098237952843,5,5,0,1,98.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061891189138989375,18074.73215863523,4,2,4_0,4_1_0,4_0_0,4_1_0 -31110,1,51.0,351.0,9,112,372.0,720.0,0.0,0,85,0.0,0.0,514.1688126582462,1092.0,0.0,1305.830088610163,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,106426,2,1,2,0,1,,0.0,401.0,31,1.0,1.0,3.0,2.0,1.5,5,4,722.134983252177,372.0,9294.534278037509,0,7,2,3,74.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1174884041882914,6196.356185358339,1,1,1_1,1_1_1,1_0_1,1_0_0 -31111,2,62.0,0.0,1,112,700.0,0.0,0.0,77,78,0.0,0.0,967.5219593031513,862.0,278.692974678811,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,116146,2,2,4,0,1,,450.0,,41,1.0,2.0,4.0,3.0,2.0,5,3,809.666655120381,700.0,35728.544646871575,6,5,0,1,80.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024126367545045737,17864.272323435787,4,2,4_0,4_1_0,4_0_0,4_1_0 -31112,2,48.0,0.0,8,112,720.0,0.0,0.0,21,65,0.0,0.0,995.16544385467,2720.0,3440.6540083803834,0.0,71,2,2,2,2,1,2,2,2,0,,1,2001.0,6,104031,2,1,2,0,1,,345.0,,43,2.0,3.0,5.0,3.0,2.0,8,8,944.814730173369,720.0,56538.805991103945,1,1,1,2,145.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04810855044282287,28269.402995551973,8,4,8,8_1,8_0,8_0_0 -31113,2,59.0,0.0,6,112,850.0,0.0,0.0,37,11,0.0,0.0,1174.848093439541,1730.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,105415,2,1,1,0,1,,228.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,932.767756052088,850.0,66517.6085113644,1,1,0,1,150.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026008150904950726,44345.072340909595,10,5,10,10_1,10_0,10_0_0 -31114,2,20.0,0.0,7,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,115273,2,1,1,0,1,,189.0,600.0,22,1.0,0.0,4.0,2.0,1.5,3,2,883.391560362663,0.0,9887.427461525178,0,1,2,3,80.0,8,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.25486912645438303,6591.618307683452,1,1,1_0,1_1_0,1_0_0,1_0_0 -31115,2,36.0,0.0,2,112,630.0,1234.0,0.0,47,53,0.0,0.0,870.7697633728362,1864.0,0.0,2238.047679645752,50,2,2,2,1,1,2,2,2,0,,1,,2,100942,2,2,2,0,1,,650.0,,43,2.0,0.0,4.0,3.0,1.8,3,1,973.201755723987,630.0,47536.16292931259,1,1,1,2,96.0,8,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.03921225200216123,26408.97940517366,7,4,7,7_1,7_0,7_0_1 -31116,2,79.0,0.0,2,112,1000.0,3000.0,0.0,0,72,0.0,0.0,1382.1742275759307,4000.0,0.0,5440.958702542347,50,0,0,0,0,0,0,0,0,0,,1,,2,133128,2,1,2,0,1,,650.0,,11,0.0,3.0,2.0,1.0,1.0,2,2,1036.12958799714,1000.0,15821.112713768376,0,5,0,1,100.0,8,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.25282671784007876,15821.112713768376,3,2,3_0,3_1_0,3_0_0,3_0_1 -31117,2,60.0,0.0,6,112,770.0,0.0,0.0,78,90,0.0,376.8027917542826,1064.2741552334664,1168.0,58.49111814246652,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,106952,2,1,1,0,1,,269.0,,42,1.0,2.0,4.0,2.0,1.5,4,1,835.629720200688,770.0,57106.53102850441,5,1,0,1,90.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02045300211664055,38071.02068566961,9,5,9,9_1,9_0,9_0_0 -31118,2,51.0,0.0,6,112,1815.0,0.0,0.0,54,43,0.0,0.0,2508.646223050314,1875.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,101904,2,1,2,0,1,,569.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,820.100261180413,1815.0,63171.864453970265,1,1,0,1,97.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02968093495746363,42114.57630264684,9,5,9,9_1,9_0,9_0_0 -31119,2,54.0,0.0,6,112,1629.0,0.0,0.0,85,67,0.0,0.0,2251.561816721191,1659.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,100119,2,1,1,0,1,,505.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,953.891182241098,1629.0,25687.438687839145,7,1,0,1,85.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06458409575826639,17124.959125226098,4,2,4_0,4_1_0,4_0_0,4_0_0 -31120,2,40.0,0.0,9,112,1700.0,0.0,0.0,46,38,0.0,0.0,2349.696186879082,1720.0,34.40654008380383,0.0,71,0,0,0,0,0,0,0,0,2,28.0,1,2004.0,6,128321,2,2,1,0,1,,406.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,857.387537287116,1700.0,62474.18505855571,1,1,1,2,98.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02753137153190363,29749.611932645577,8,4,8,8_1,8_0,8_0_0 -31121,2,42.0,0.0,2,112,600.0,0.0,0.0,0,67,3733.962192545002,0.0,829.3045365455583,3120.0,34.40654008380383,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,105422,2,2,5,0,2,,225.0,425.0,12,1.0,0.0,6.0,1.0,1.0,2,2,1176.87697420799,600.0,16983.02053819583,0,1,2,3,120.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18371290271850838,16983.02053819583,4,2,4_0,4_1_0,4_0_0,4_0_1 -31122,2,46.0,0.0,1,112,488.0,1688.0,0.0,43,53,0.0,0.0,674.5010230570541,2176.0,0.0,3061.4460966304937,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,107976,2,1,2,0,1,,496.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,882.707273762096,488.0,66872.7653334467,1,1,1,2,256.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03253940507992817,26749.106133378682,7,4,7,7_1,7_0,7_1_0 -31123,2,56.0,0.0,5,112,2484.0,0.0,0.0,0,56,0.0,0.0,3433.3207812986116,2534.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,3,129048,1,1,2,0,1,,648.0,,22,2.0,1.0,5.0,2.0,1.5,6,6,820.100261180413,2484.0,19958.580959798313,0,1,0,1,102.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12696293414367105,13305.720639865542,3,2,3_0,3_1_0,3_0_0,3_0_0 -31124,2,37.0,0.0,9,112,600.0,1500.0,0.0,43,48,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,125101,2,1,1,0,1,,250.0,,43,2.0,0.0,7.0,4.0,2.1,6,6,862.805442425919,600.0,57758.331256496254,1,1,1,2,140.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03635839115008723,27503.967264998217,7,4,7,7_1,7_0,7_0_0 -31126,2,55.0,0.0,7,112,230.0,0.0,0.0,78,56,3733.962192545002,0.0,317.900072342464,4448.0,681.2494936593159,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,122580,2,1,2,0,1,,258.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,829.858459341191,230.0,28056.838989872827,5,4,0,1,120.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15853532187305613,18704.559326581886,5,3,5,5_1,5_0,5_0_0 -31127,2,77.0,0.0,2,112,910.0,0.0,0.0,71,71,4256.716899501302,0.0,1257.778547094097,3820.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119765,2,3,3,0,1,,397.0,,41,0.0,3.0,6.0,2.0,1.5,4,3,932.767756052088,910.0,21893.925535164697,5,5,0,1,175.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17447761909414314,14595.950356776464,3,2,3_0,3_1_0,3_0_0,3_0_1 -31128,2,55.0,0.0,9,112,1300.0,0.0,0.0,0,11,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,101767,2,1,1,0,1,,180.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,989.805529812306,1300.0,10700.485853064833,0,1,1,2,91.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12148981063580903,10700.485853064833,2,1,2_0,2_1_0,2_0_0,2_0_0 -31129,2,43.0,0.0,7,112,439.0,0.0,0.0,68,67,1941.6603401234008,0.0,606.7744859058336,1799.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,102185,2,1,2,0,1,,224.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,896.10662643484,439.0,36027.51909833182,1,1,0,1,115.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04993405166450385,15664.13873840514,3,2,3_0,3_1_0,3_0_0,3_0_0 -31130,2,65.0,0.0,1,112,611.0,0.0,0.0,0,77,0.0,279.4965763012536,844.5084530488936,1647.0,1317.7704852096867,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128309,2,1,2,0,1,,171.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1012.48745755365,611.0,27784.412758267048,0,5,0,1,120.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059277840936549836,27784.412758267048,7,4,7,7_1,7_0,7_1_0 -31131,2,32.0,0.0,2,112,0.0,0.0,0.0,11,47,0.0,0.0,0.0,1696.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,106893,2,1,1,0,1,,509.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,949.742276971533,0.0,60138.56290156412,1,1,0,1,167.0,8,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028201538549832716,33410.31272309118,8,4,8,8_1,8_0,8_0_1 -31132,2,66.0,0.0,5,112,1432.0,0.0,0.0,90,75,0.0,0.0,1979.2734938887324,1532.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,105915,1,2,2,0,1,,303.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,790.79633746154,1432.0,19035.65547552689,5,5,0,1,90.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08048054882951676,12690.436983684594,2,1,2_0,2_1_0,2_0_0,2_0_0 -31133,2,47.0,0.0,1,112,1037.0,0.0,0.0,55,65,0.0,1293.9656310243222,1433.31467399624,2287.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,115543,1,2,2,0,1,,333.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,767.974168890651,1037.0,47908.66324616463,1,1,1,2,120.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04773666900804392,20829.853585288973,5,3,5,5_1,5_0,5_1_0 -31134,2,53.0,0.0,1,112,961.0,0.0,0.0,67,62,0.0,621.1035028916747,1328.2694327004692,1629.0,116.98223628493304,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,107776,2,1,1,0,1,,313.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,877.753675213572,961.0,58279.675584875105,1,1,0,1,132.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027951425323698306,29139.837792437553,8,4,8,8_1,8_0,8_1_0 -31135,2,48.0,0.0,1,112,2620.0,0.0,0.0,0,67,0.0,0.0,3621.2964762489382,2770.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117155,2,2,4,0,1,,350.0,,22,1.0,1.0,5.0,3.0,2.0,1,1,1038.94007205251,2620.0,40622.71366342755,0,1,0,1,120.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06818845296624826,20311.356831713776,5,3,5,5_1,5_0,5_1_0 -31136,2,39.0,0.0,9,112,1577.0,0.0,0.0,62,67,0.0,0.0,2179.6887568872426,1630.0,91.17733122208016,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,109113,2,1,1,0,1,,465.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,790.113450499728,1577.0,46306.70412495243,1,1,1,2,96.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03520008670022517,22050.811488072588,6,3,6,6_1,6_0,6_0_0 -31137,2,31.0,0.0,1,112,577.0,0.0,0.0,21,34,0.0,476.1793522169506,797.5145293113119,1037.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,240.0,1,,1,122775,2,1,4,0,1,,145.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,824.724213150826,577.0,54485.404355647945,1,1,1,2,130.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01903262006153222,36323.6029037653,9,5,9,9_1,9_0,9_1_0 -31138,2,35.0,0.0,9,112,1140.0,0.0,0.0,55,63,0.0,621.1035028916747,1575.678619436561,1790.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,118240,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,3.0,1.8,3,1,914.386601252561,1140.0,46828.72127438696,1,4,1,2,115.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038224404837187885,26015.95626354831,7,4,7,7_1,7_0,7_0_0 -31139,2,30.0,0.0,5,112,1600.0,0.0,0.0,47,31,0.0,0.0,2211.478764121489,1630.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,104241,2,1,3,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,890.722613584488,1600.0,59141.71757899699,1,1,1,2,80.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027560917516857207,32856.50976610944,8,4,8,8_1,8_0,8_0_0 -31140,2,45.0,0.0,8,112,1400.0,0.0,0.0,85,38,0.0,0.0,1935.0439186063027,1440.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,115147,2,1,2,0,1,,385.0,,42,1.0,1.0,5.0,3.0,2.0,2,1,877.092242714045,1400.0,52808.08957089091,6,1,0,1,130.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027268549415462338,26404.044785445454,7,4,7,7_1,7_0,7_0_0 -31141,2,39.0,0.0,6,112,937.0,0.0,0.0,47,38,0.0,776.3793786145933,1295.097251238647,1777.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,4,131982,2,2,1,0,1,,376.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,853.513910319469,937.0,76839.11895095931,1,1,1,2,190.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023126241220102053,32016.299562899712,8,4,8,8_1,8_0,8_0_0 -31142,2,43.0,0.0,8,112,470.0,1060.0,0.0,46,62,0.0,0.0,649.6218869606873,1530.0,0.0,1922.472074898296,71,0,0,0,0,0,0,0,0,2,25.0,1,1999.0,6,130305,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,5.0,2.8,1,1,802.330467126256,470.0,46184.86948464651,1,1,1,2,103.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033127732460273084,16494.59624451661,4,2,4_0,4_1_0,4_0_0,4_0_0 -31143,2,48.0,0.0,6,112,1395.0,0.0,0.0,56,38,0.0,0.0,1928.1330474684232,1531.0,233.96447256986607,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,130074,2,1,2,0,1,,590.0,,43,3.0,0.0,6.0,5.0,2.8,3,3,882.877392643285,1395.0,68045.00145619367,4,1,0,1,160.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022499815816531862,24301.786234354884,7,4,7,7_1,7_0,7_0_0 -31144,2,76.0,0.0,1,112,507.0,1469.0,0.0,77,78,0.0,0.0,700.7623333809968,1976.0,0.0,2664.2561113449024,71,2,2,2,1,2,2,2,2,0,,1,,1,116426,1,2,3,0,1,,276.0,,41,0.0,1.0,4.0,2.0,1.5,6,4,926.55630761667,507.0,40342.422076498195,5,5,0,1,120.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04898069819043252,26894.948050998795,7,4,7,7_1,7_0,7_1_0 -31145,2,73.0,0.0,1,112,900.0,0.0,0.0,0,78,2957.2980564956415,0.0,1243.9568048183376,3020.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126936,2,1,2,0,1,,42.0,,11,0.0,2.0,6.0,1.0,1.0,4,3,948.346159613489,900.0,24605.120353183025,0,5,0,1,180.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12273868026861001,24605.120353183025,7,4,7,7_1,7_0,7_1_0 -31146,2,31.0,0.0,9,112,1400.0,0.0,0.0,54,53,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,130544,2,1,1,0,1,,140.0,,43,2.0,0.0,4.0,2.0,1.5,5,4,952.303854330624,1400.0,41176.49693331236,1,1,1,2,118.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033999978246507426,27450.997955541574,7,4,7,7_1,7_0,7_0_0 -31147,2,64.0,0.0,5,112,648.0,1408.0,0.0,54,22,0.0,0.0,895.648899469203,2106.0,86.01635020950958,2553.623284393208,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,127593,2,1,2,0,1,,357.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,883.049661455308,648.0,166013.25927714043,1,1,0,1,120.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012685733712897416,110675.50618476029,10,5,10,10_1,10_0,10_0_0 -31148,1,37.0,275.0,1,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1698.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,122770,2,3,4,0,2,,400.0,336.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1052.31684319442,0.0,16324.751825146552,0,1,2,3,85.0,8,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10401383238086417,10202.969890716595,2,1,2_1,2_1_1,2_0_1,2_1_0 -31149,0,51.0,0.0,1,112,640.0,0.0,0.0,0,85,2319.537314008955,0.0,884.5915056485956,2253.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112212,2,3,4,0,1,,471.0,,21,1.0,1.0,5.0,2.0,1.5,1,1,935.170882337312,640.0,23198.086332589737,0,7,5,0,120.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09712007997982498,15465.390888393158,3,2,3_0,3_1_0,3_0_0,3_1_0 -31150,2,44.0,0.0,9,112,720.0,960.0,0.0,42,48,0.0,0.0,995.16544385467,1680.0,0.0,1741.106784813551,71,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,123627,2,1,1,0,1,,302.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,923.198047785005,720.0,64119.64819525056,1,1,1,2,200.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02620101711856305,25647.859278100223,7,4,7,7_1,7_0,7_0_0 -31151,2,61.0,0.0,8,112,1026.0,0.0,0.0,74,75,0.0,175.97932581930783,1418.1107574929047,1231.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,107401,2,1,2,0,1,,228.0,,41,0.0,2.0,4.0,2.0,1.5,3,1,865.12837904642,1026.0,52854.62070403062,5,5,1,2,94.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023290300518723158,35236.41380268708,9,5,9,9_1,9_0,9_0_0 -31152,2,71.0,0.0,6,112,1479.0,0.0,0.0,77,74,0.0,0.0,2044.2356825848012,1599.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111705,2,1,2,0,1,,288.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,891.323000146709,1479.0,41835.042579318586,5,5,1,2,96.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03822154589584368,27890.02838621239,7,4,7,7_1,7_0,7_0_0 -31153,2,36.0,0.0,9,112,372.0,1007.0,0.0,34,47,0.0,0.0,514.1688126582462,1379.0,0.0,1826.348471153381,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,102030,2,1,1,0,1,,201.0,,43,2.0,0.0,4.0,4.0,2.1,8,6,932.138893244248,372.0,51542.13428749226,1,1,1,2,130.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026754809808771193,24543.873470234408,7,4,7,7_1,7_0,7_0_0 -31154,2,41.0,0.0,8,112,1000.0,1000.0,0.0,45,46,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,105456,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,2.0,1.5,5,3,915.98194045945,1000.0,82210.49898779014,1,1,1,2,130.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024327792978084697,54806.99932519343,10,5,10,10_1,10_0,10_0_0 -31155,0,76.0,0.0,1,112,500.0,0.0,0.0,0,77,0.0,207.03450096389156,691.0871137879653,950.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125836,2,1,3,0,2,,150.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1154.74893243495,500.0,14754.976582558873,0,5,0,1,90.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06438505643736148,14754.976582558873,3,2,3_0,3_1_0,3_0_0,3_1_0 -31156,1,32.0,176.0,6,112,1224.0,0.0,0.0,0,63,0.0,0.0,1691.7812545529391,1282.0,99.77896624303112,0.0,71,2,2,2,2,2,1,1,2,0,,1,,4,102456,1,3,3,0,1,,114.0,417.0,32,1.0,0.0,3.0,2.0,1.3,3,3,777.372218536133,1224.0,13012.817445691635,0,4,2,3,64.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,1,0.09851824982179033,10009.85957360895,2,1,2_1,2_1_1,2_0_1,2_0_0 -31157,2,31.0,0.0,1,112,1470.5,0.0,0.0,0,21,0.0,0.0,2032.487201650406,1471.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114980,1,1,1,0,1,,147.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,947.508925198839,1470.5,14972.0,0,1,1,2,60.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09825006679134385,14972.0,3,2,3_0,3_1_0,3_0_0,3_1_0 -31158,2,67.0,0.0,2,112,810.0,0.0,0.0,77,78,3733.962192545002,207.03450096389156,1119.5611243365038,3690.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114330,2,2,2,0,1,,389.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,886.968183961494,810.0,29213.203702478655,5,5,0,1,180.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12631274671483272,19475.46913498577,5,3,5,5_1,5_0,5_0_1 -31159,2,33.0,0.0,1,112,720.0,840.0,0.0,85,62,0.0,0.0,995.16544385467,1560.0,0.0,1523.468436711857,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,126308,2,2,2,0,1,,240.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1057.02343003499,720.0,27212.820679207667,7,1,0,1,90.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05732592068972621,15118.233710670926,3,2,3_0,3_1_0,3_0_0,3_1_0 -31160,2,45.0,0.0,1,112,356.0,1553.0,0.0,0,37,0.0,0.0,492.0540250170313,1909.0,0.0,2816.6029550160883,71,0,0,0,0,0,0,0,0,2,12.0,1,,1,111678,2,1,1,0,1,,234.0,,32,1.0,1.0,4.0,2.0,1.5,1,1,969.533676921775,356.0,35738.84712512719,0,1,1,2,90.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053415265280278845,23825.898083418127,6,3,6,6_1,6_0,6_1_0 -31161,2,39.0,0.0,9,112,1800.0,2300.0,0.0,90,42,0.0,0.0,2487.913609636675,4100.0,0.0,4171.401671949133,43,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,114750,2,1,1,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,932.219710979671,1800.0,52318.508359169056,1,1,1,2,150.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07836614858843652,24913.57540912812,7,4,7,7_1,7_0,7_0_0 -31162,2,51.0,0.0,1,112,900.0,0.0,0.0,0,85,0.0,0.0,1243.9568048183376,1080.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128656,2,1,1,0,1,,260.0,,21,0.0,2.0,5.0,2.0,1.5,1,1,901.945293048318,900.0,10347.069710038664,0,7,0,1,80.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10437737738948358,6898.04647335911,1,1,1_0,1_1_0,1_0_0,1_1_0 -31163,2,58.0,0.0,9,112,2202.0,0.0,0.0,67,47,0.0,0.0,3043.547649122199,2334.0,227.0831645531053,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,131146,2,1,1,0,1,,205.0,,43,2.0,2.0,4.0,2.0,1.5,3,2,932.990723655795,2202.0,72316.0978935911,1,1,1,2,117.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03227497152064737,48210.731929060734,10,5,10,10_1,10_0,10_0_0 -31164,2,28.0,0.0,1,112,892.0,1003.0,0.0,55,62,0.0,0.0,1232.89941099773,1895.0,0.0,1819.0938595499913,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,121735,1,1,2,0,1,,191.0,,43,2.0,0.0,8.0,3.0,1.8,1,1,992.307575139749,892.0,42915.73244598092,1,1,1,2,210.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04415630101118006,23842.07358110051,6,3,6,6_1,6_0,6_1_0 -31165,2,49.0,0.0,1,112,690.0,1540.0,0.0,43,62,0.0,0.0,953.7002170273921,2230.0,0.0,2793.0254673050713,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,111357,2,1,4,0,1,,298.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,5,5,883.688503994334,690.0,51184.81223099894,1,1,0,1,196.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04356761122686018,19686.466242691902,5,3,5,5_1,5_0,5_1_0 -31166,2,76.0,0.0,5,112,1330.0,0.0,0.0,78,78,0.0,0.0,1838.2917226759876,1475.0,249.4474156075778,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107158,2,1,2,0,1,,174.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,1005.06090344709,1330.0,30989.385726688917,5,5,0,1,92.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047596942159769534,20659.590484459277,5,3,5,5_1,5_0,5_0_0 -31167,2,68.0,0.0,5,112,1400.0,30.0,0.0,0,86,0.0,0.0,1935.0439186063027,1430.0,0.0,54.40958702542347,71,0,0,0,0,0,0,0,0,0,,1,,3,110941,1,2,1,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,3,2,1035.54810866161,1400.0,23724.171717233905,0,5,0,1,146.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06027607694987336,23724.171717233905,6,3,6,6_1,6_0,6_0_0 -31168,2,48.0,0.0,1,112,340.0,0.0,0.0,0,43,0.0,561.0634976121461,469.9392373758164,960.0,134.18550632683494,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,130977,2,3,3,0,1,,106.0,,32,1.0,0.0,4.0,3.0,2.0,2,1,1084.62114371781,340.0,10721.281591779949,0,4,0,1,65.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08954153398377634,5360.6407958899745,1,1,1_0,1_1_0,1_0_0,1_1_0 -31169,2,41.0,0.0,1,112,754.0,0.0,0.0,0,47,0.0,0.0,1042.1593675922516,754.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,130720,2,2,2,0,1,,78.0,,12,1.0,0.0,3.0,1.0,1.0,3,2,921.542186689433,754.0,20559.502265355466,0,1,0,1,43.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036674039588524235,20559.502265355466,5,3,5,5_1,5_0,5_1_0 -31170,2,50.0,0.0,7,112,680.0,0.0,0.0,90,53,0.0,548.6414275543126,939.8784747516328,2010.0,1376.2616033521533,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,114040,2,1,1,0,1,,480.0,,43,2.0,1.0,4.0,4.0,2.3,2,1,856.417081306891,680.0,13275.200933909306,1,1,0,1,110.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15141013759466249,5771.826493004046,1,1,1_0,1_1_0,1_0_0,1_0_0 -31171,2,67.0,0.0,5,112,335.0,0.0,0.0,0,78,670.6196097810823,51.75862524097289,463.0283662379367,880.0,79.13504219274881,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,132507,2,1,3,0,1,,151.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,962.940442181827,335.0,20124.99329529072,0,5,0,1,110.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04372672264223419,20124.99329529072,5,3,5,5_1,5_0,5_0_0 -31172,2,58.0,0.0,9,112,756.0,0.0,0.0,54,56,0.0,0.0,1044.9237160474036,803.0,80.85536919693901,0.0,71,0,0,0,0,0,0,0,0,4,60.0,1,2006.0,6,125795,2,1,1,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1031.61963526881,756.0,47786.68053767972,1,1,0,1,115.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016803845568784292,31857.787025119815,8,4,8,8_1,8_0,8_0_0 -31173,2,62.0,0.0,5,112,457.0,0.0,0.0,77,71,0.0,0.0,631.6536220022002,457.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,111875,1,3,2,0,1,,209.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,860.66773771911,457.0,20907.721306751155,7,5,0,1,105.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02185795349455101,13938.480871167436,3,2,3_0,3_1_0,3_0_0,3_0_0 -31174,2,50.0,0.0,1,112,1829.0,0.0,0.0,47,43,0.0,0.0,2527.996662236377,1829.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,111143,2,1,2,0,1,,410.0,,43,4.0,0.0,7.0,4.0,2.5,3,1,866.477068098292,1829.0,73534.69843568509,4,1,0,1,169.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024872611690924112,29413.879374274034,8,4,8,8_1,8_0,8_1_0 -31175,2,89.0,0.0,6,112,1676.0,0.0,0.0,77,74,0.0,0.0,2316.5240054172596,1676.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,110515,2,1,2,0,1,,155.0,,41,0.0,0.0,6.0,2.0,1.5,3,1,859.474136731421,1676.0,60718.255828913054,5,5,0,1,106.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027602900925258723,40478.83721927537,9,5,9,9_1,9_0,9_0_0 -31176,2,66.0,0.0,2,112,967.0,0.0,0.0,77,75,2091.018827825201,0.0,1336.5624780659248,2525.0,271.8116666620503,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,123957,2,1,3,0,1,,327.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,987.915076869587,967.0,51063.590274497496,5,5,0,1,110.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04944814860111886,34042.393516331664,9,5,9,9_1,9_0,9_0_1 -31177,2,63.0,0.0,6,112,1560.0,0.0,0.0,85,72,4779.471606457602,0.0,2156.1917950184516,4760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,115427,2,1,2,0,1,,50.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,1030.01962355855,1560.0,104532.75278720251,6,5,0,1,250.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04553596717853532,69688.501858135,10,5,10,10_1,10_0,10_0_0 -31178,2,73.0,0.0,1,112,498.0,0.0,0.0,77,75,0.0,72.46207533736204,688.3227653328134,696.0,220.20185653634454,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121686,2,1,2,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,1,859.474136731421,498.0,22267.785801823145,5,5,0,1,150.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03125591409016589,14845.190534548763,3,2,3_0,3_1_0,3_0_0,3_1_0 -31179,2,53.0,0.0,7,112,750.0,0.0,0.0,43,43,0.0,414.0690019277831,1036.630670681948,1214.0,110.10092826817227,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,5,102377,2,2,1,0,1,,156.0,,43,2.0,1.0,2.0,2.0,1.5,4,4,1054.84007311993,750.0,57273.84739224419,1,1,0,1,140.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0211964108450028,38182.56492816279,9,5,9,9_1,9_0,9_0_0 -31180,2,56.0,0.0,7,112,580.0,0.0,0.0,11,11,0.0,0.0,801.6610519940398,627.0,80.85536919693901,0.0,71,2,2,2,2,1,2,2,2,2,5.0,1,,5,102772,1,3,4,0,1,,238.0,,43,2.0,2.0,4.0,2.0,1.5,4,3,1017.02208258046,580.0,24767.269348205424,1,1,0,1,115.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.025315669288565754,16511.512898803616,4,2,4_0,4_1_0,4_0_0,4_0_0 -31182,2,41.0,0.0,9,111,1240.0,0.0,0.0,43,37,0.0,0.0,1713.8960421941538,1240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,104266,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,1636.55676102018,1240.0,47869.951582822665,1,1,1,2,147.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02590351481460352,22795.215039439365,6,3,6,6_1,6_2,6_0_0 -31183,2,58.0,0.0,1,111,608.0,1116.0,0.0,75,34,0.0,0.0,840.3619303661658,1724.0,0.0,2024.036637345753,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,114433,1,1,2,0,2,,338.0,,42,1.0,0.0,3.0,2.0,1.5,2,1,1656.02911490875,608.0,132028.65404440212,5,1,0,1,100.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013057771530566442,88019.10269626808,10,5,10,10_1,10_2,10_1_0 -31184,2,88.0,0.0,6,111,845.0,0.0,0.0,0,71,0.0,0.0,1167.9372223016612,845.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,4,119899,2,1,0,0,1,,192.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,2467.65518888232,845.0,39643.6313471375,0,5,0,1,80.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02131489904647733,39643.6313471375,9,5,9,9_0,9_2,9_0_0 -31185,1,32.0,352.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,2173.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,100962,1,3,0,0,1,,277.0,415.0,31,0.0,0.0,4.0,2.0,1.3,2,2,1713.21848690343,0.0,11811.206323704582,0,7,2,3,83.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.18397782076153243,9085.543325926601,1,1,1_1,1_0_1,1_2_1,1_0_0 -31186,1,70.0,196.0,2,111,180.0,772.0,0.0,0,78,0.0,0.0,248.7913609636675,952.0,0.0,1400.1400394542306,20,2,2,2,2,2,2,2,1,0,,2,,2,128396,1,3,0,1,2,,0.0,206.0,11,0.0,0.0,2.0,1.0,1.0,1,1,324.549308382978,180.0,9866.697949631402,0,5,2,3,30.0,3,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.09648618057022458,9866.697949631402,2,1,2_1,2_0_1,2_2_1,2_0_1 -31187,2,59.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,663.4436292364467,3098.0,58.49111814246652,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,107210,2,1,0,1,1,,454.0,711.0,11,0.0,2.0,5.0,1.0,1.0,3,2,307.671695556226,480.0,35703.24369026249,0,5,2,3,78.0,3,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08677082751573442,35703.24369026249,9,5,9,9_0,9_2,9_0_1 -31188,2,32.0,0.0,9,111,1300.0,0.0,0.0,45,62,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,116167,2,1,1,0,2,,360.0,,43,2.0,0.0,4.0,3.0,1.8,5,5,3553.96106132135,1300.0,45103.03091267874,1,1,1,2,120.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028822896681086726,25057.239395932633,7,4,7,7_1,7_2,7_0_0 -31189,2,40.0,0.0,6,111,360.0,320.0,0.0,47,52,0.0,0.0,497.582721927335,680.0,0.0,580.3689282711837,71,0,0,0,0,0,0,0,0,2,25.0,2,,4,125768,2,1,0,0,2,,600.0,520.0,43,2.0,0.0,4.0,5.0,2.6,3,2,261.02927167231,360.0,43192.104467850884,1,1,2,3,100.0,4,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01574361815377955,16612.34787225034,4,2,4_0,4_0_0,4_2_0,4_0_0 -31190,0,86.0,0.0,1,111,240.0,2400.0,0.0,0,77,0.0,0.0,331.72181461822333,2640.0,0.0,4352.7669620338775,71,0,0,0,0,0,0,0,0,0,,1,,1,120637,2,2,2,0,1,,150.0,,11,0.0,0.0,7.0,1.0,1.0,2,2,1957.51815901193,240.0,31543.266512014365,0,5,5,0,130.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08369456597002922,31543.266512014365,8,4,8,8_1,8_2,8_1_0 -31191,2,45.0,0.0,9,221,1184.0,0.0,0.0,85,53,0.0,0.0,1636.4942854499018,1184.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,119792,2,1,1,0,1,,336.0,,42,1.0,3.0,4.0,3.0,1.8,2,2,3718.43224204345,1184.0,37534.57346961669,6,1,1,2,112.0,1,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031544250821403864,20852.54081645372,5,3,5,5_1,5_1,5_0_0 -31192,2,59.0,0.0,2,111,500.0,0.0,0.0,0,64,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116756,2,2,0,0,2,,90.0,239.0,12,1.0,4.0,1.0,1.0,1.0,2,2,3063.19727407869,500.0,14186.0,0,1,3,4,30.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03524601720005639,14186.0,3,2,3_0,3_0_0,3_2_0,3_0_1 -31193,1,28.0,470.0,1,111,1000.0,0.0,0.0,81,63,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,123277,1,3,3,0,2,,400.0,500.0,43,2.0,0.0,3.0,5.0,2.4,1,1,262.339980231967,1000.0,13044.592817310673,4,4,2,3,100.0,4,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0.08125972307800512,5435.247007212781,1,1,1_1,1_1_1,1_2_1,1_1_0 -31194,2,45.0,0.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,307.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,126524,2,1,0,0,1,,636.0,203.0,12,1.0,2.0,1.0,1.0,1.0,2,2,2759.26048168805,0.0,18154.42043575799,0,1,2,3,23.0,6,5,9,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.016910482000037586,18154.42043575799,4,2,4_0,4_0_0,4_2_0,4_1_0 -31195,2,41.0,0.0,1,111,1350.0,280.0,0.0,0,47,0.0,0.0,1865.9352072275062,1630.0,0.0,507.8228122372857,71,0,0,0,0,0,0,0,0,0,,1,,1,124401,2,1,2,0,2,,200.0,,22,1.0,2.0,4.0,2.0,1.5,2,2,258.671417638356,1350.0,14700.151926393986,0,1,0,1,70.0,4,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11088320774925803,9800.101284262657,2,1,2_0,2_1_0,2_2_0,2_1_0 -31196,1,32.0,47.0,9,111,880.0,0.0,0.0,56,52,0.0,0.0,1216.313320266819,880.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2011.0,6,127177,2,2,0,0,1,,530.0,800.0,43,2.0,0.0,3.0,4.0,2.1,2,1,11685.3728980945,880.0,25925.157961412093,1,1,2,3,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0339438626105894,12345.313314958139,2,1,2_1,2_0_1,2_3_1,2_0_0 -31197,0,40.0,0.0,7,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,70.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,5,128917,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,6,4,519.993371808354,0.0,9177.431272906237,0,1,5,0,25.0,4,4,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007627406615035642,9177.431272906237,1,1,1_0,1_0_0,1_2_0,1_0_0 -31198,2,78.0,0.0,1,111,280.0,1795.0,0.0,0,77,0.0,0.0,387.00878372126056,2075.0,0.0,3255.506957021171,10,0,0,0,0,0,0,0,0,0,,1,,1,122293,1,3,2,0,2,,181.0,,21,1.0,1.0,5.0,2.0,1.5,1,1,1541.86300416506,280.0,18588.443670256896,0,5,0,1,100.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11162849546786845,12392.295780171264,2,1,2_0,2_1_0,2_2_0,2_1_0 -31199,2,44.0,0.0,1,111,600.0,1200.0,0.0,90,63,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,2,38.0,1,,1,104784,1,1,2,0,2,,500.0,,43,3.0,0.0,3.0,4.0,2.5,4,2,249.490520480815,600.0,26207.44804428088,1,1,1,2,100.0,4,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06868276518029022,10482.979217712353,2,1,2_0,2_1_0,2_2_0,2_1_0 -31200,2,35.0,0.0,9,111,2000.0,0.0,0.0,43,37,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,2,2,1,1,1,2,2,2,2,15.0,1,2011.0,6,101766,2,1,1,0,1,,2300.0,,43,2.0,0.0,6.0,3.0,1.8,3,3,2397.95453152069,2000.0,65211.80925685604,1,1,1,2,170.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.030669291694122566,36228.782920475576,9,5,9,9_1,9_3,9_0_0 -31201,2,40.0,0.0,8,111,700.0,850.0,0.0,42,34,0.0,0.0,967.5219593031513,1550.0,0.0,1541.6049657203316,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,131545,2,1,1,0,1,,444.0,,43,2.0,0.0,5.0,3.0,2.0,1,1,1579.03445186638,700.0,75521.67086491628,1,1,1,2,100.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020523910319363115,37760.83543245814,9,5,9,9_1,9_2,9_0_0 -31202,2,73.0,0.0,2,111,255.0,982.0,0.0,0,77,0.0,0.0,352.4544280318623,1237.0,0.0,1781.007148632195,71,0,0,0,0,0,0,0,0,0,,1,,2,126302,1,2,3,0,2,,134.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1805.07844995559,255.0,15166.0,0,5,0,1,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08156402479229856,15166.0,3,2,3_0,3_1_0,3_2_0,3_0_1 -31203,2,61.0,0.0,9,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,645.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2011.0,6,128625,2,1,0,0,1,,136.0,355.0,11,0.0,2.0,2.0,1.0,1.0,2,2,11447.5175348268,0.0,25467.0,0,5,2,3,55.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.025326893627046765,25467.0,7,4,7,7_0,7_1,7_0_0 -31204,2,45.0,0.0,2,111,176.0,824.0,0.0,0,56,0.0,0.0,243.26266405336378,1000.0,0.0,1494.449990298298,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,120493,2,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2181.07809837952,176.0,14672.20968623606,0,1,0,1,63.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06815605974729873,14672.20968623606,3,2,3_0,3_0_0,3_2_0,3_0_1 -31205,1,65.0,108.0,2,111,300.0,650.0,0.0,0,77,0.0,0.0,414.65226827277917,950.0,0.0,1178.8743855508417,71,0,0,0,0,0,0,0,0,0,,2,,2,131675,2,2,0,0,1,,200.0,311.0,11,0.0,2.0,3.0,1.0,1.0,3,3,345.844638323463,300.0,11871.768201679142,0,5,2,3,60.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08002177804192909,11871.768201679142,2,1,2_1,2_0_1,2_2_1,2_0_1 -31207,1,36.0,340.0,2,111,140.0,400.0,0.0,85,69,0.0,0.0,193.50439186063028,540.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,,2,104914,2,3,0,1,1,684.0,400.0,305.0,42,1.0,0.0,3.0,4.0,2.1,5,4,2043.81403712178,140.0,17137.100059318884,6,4,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03151058219481869,8160.5238377708965,1,1,1_1,1_0_1,1_2_1,1_0_1 -31208,1,41.0,300.0,2,111,320.0,450.0,0.0,0,85,0.0,0.0,442.2957528242978,770.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,0,,2,,2,132072,2,2,0,0,1,,180.0,320.0,31,0.0,0.0,3.0,2.0,1.3,1,1,314.805329948518,320.0,11319.798723871329,0,7,2,3,60.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0680224108911243,8707.537479901022,1,1,1_1,1_0_1,1_2_1,1_0_1 -31209,2,28.0,0.0,9,112,1000.0,0.0,0.0,54,67,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,109008,2,1,1,0,1,,275.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,3145.39878530316,1000.0,26134.30717628242,1,1,1,2,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038263880241965115,17422.871450854946,4,2,4_0,4_1_0,4_1_0,4_0_0 -31210,1,45.0,260.0,2,111,320.0,700.0,0.0,52,69,0.0,0.0,442.2957528242978,1020.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,125061,1,2,0,0,1,,600.0,402.0,43,2.0,0.0,3.0,5.0,2.4,2,2,307.0049759235,320.0,29365.783146341346,4,4,2,3,65.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03473430267181826,12235.742977642229,2,1,2_1,2_0_1,2_2_1,2_0_1 -31211,2,28.0,0.0,9,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,381.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,102452,2,1,1,0,1,,88.0,490.0,12,1.0,0.0,2.0,1.0,1.0,2,2,8612.09352094057,0.0,24756.220570764337,0,1,2,3,56.0,8,3,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015390071312013552,24756.220570764337,7,4,7,7_1,7_1,7_0_0 -31212,2,85.0,0.0,1,111,471.0,1464.0,0.0,77,75,0.0,0.0,651.0040611882633,1935.0,0.0,2655.1878468406653,71,0,0,0,0,0,0,0,0,0,,1,,1,115115,2,1,2,0,1,,396.0,,41,0.0,3.0,5.0,2.0,1.5,3,1,1478.59438349336,471.0,35225.00289394004,5,5,0,1,100.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05493257178221237,23483.335262626697,6,3,6,6_1,6_2,6_1_0 -31213,2,50.0,0.0,7,111,2013.0,819.0,0.0,54,54,0.0,0.0,2782.3167201103483,2832.0,0.0,1485.3817257940607,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,120982,2,1,2,0,1,,365.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1647.44954721322,2013.0,58860.46686100027,1,1,0,1,105.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048113787590027164,32700.25936722237,8,4,8,8_1,8_2,8_0_0 -31214,2,49.0,0.0,9,112,1010.0,0.0,0.0,47,37,0.0,0.0,1395.9959698516898,1010.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,120403,2,1,1,0,1,,385.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,3488.7626737953,1010.0,52186.59409508713,1,1,0,1,213.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01935362936618778,34791.06273005809,9,5,9,9_1,9_1,9_0_0 -31215,2,69.0,0.0,5,111,2500.0,0.0,0.0,0,72,0.0,0.0,3455.435568939826,2680.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107889,2,1,2,0,1,,400.0,,31,1.0,1.0,6.0,2.0,1.5,2,2,1491.46982985555,2500.0,27972.767100724013,0,5,0,1,227.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09580746839774154,18648.511400482676,4,2,4_0,4_1_0,4_2_0,4_0_0 -31216,2,81.0,0.0,1,111,370.0,0.0,0.0,0,71,2389.735803228801,0.0,511.40446420309434,2153.0,314.8198417668051,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111698,2,2,2,0,1,,120.0,,11,0.0,3.0,8.0,1.0,1.0,7,5,1701.86749284714,370.0,13927.770498741122,0,5,0,1,100.0,6,5,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15458324792145314,13927.770498741122,3,2,3_0,3_1_0,3_2_0,3_1_0 -31217,2,79.0,0.0,2,111,0.0,0.0,730.0,0,78,0.0,0.0,372.96673443139326,730.0,0.0,834.5694154964209,71,0,0,0,0,0,0,0,0,0,,2,,2,105957,2,1,0,0,1,,160.0,,11,0.0,1.0,4.0,1.0,1.0,4,2,370.333728726091,0.0,19613.03714405286,0,5,0,1,80.0,4,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03722014059517311,19613.03714405286,5,3,5,5_0,5_2,5_0_1 -31218,2,26.0,0.0,7,111,0.0,0.0,0.0,53,56,0.0,0.0,0.0,527.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,130520,2,1,2,0,1,,313.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1691.95453707011,0.0,39450.809268527846,1,1,1,2,100.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013358407844384015,26300.539512351897,7,4,7,7_1,7_2,7_0_0 -31219,2,53.0,0.0,8,111,1022.0,0.0,0.0,52,52,0.0,0.0,1412.5820605826011,1102.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,116168,2,1,2,0,1,,610.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1582.21435691774,1022.0,31627.34666977114,4,1,1,2,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03484326432774306,21084.897779847426,5,3,5,5_1,5_2,5_0_0 -31220,1,40.0,406.0,2,111,363.0,803.0,0.0,0,22,0.0,0.0,501.7292446100628,1166.0,0.0,1456.3632793805016,31,0,0,0,0,0,0,0,0,0,,2,,2,118714,2,1,0,0,1,,600.0,503.0,32,1.0,0.0,4.0,3.0,1.8,2,2,416.874321863536,363.0,12850.737923994999,0,1,2,3,85.0,4,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09073408911583479,7139.298846663888,1,1,1_1,1_0_1,1_2_1,1_0_1 -31221,2,48.0,0.0,7,111,1050.0,0.0,0.0,52,90,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,132918,1,3,4,0,2,,708.0,750.0,43,2.0,2.0,4.0,2.0,1.5,1,1,1874.27283698918,1050.0,31956.68520426567,1,1,2,3,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03285697478597821,21304.45680284378,6,3,6,6_1,6_2,6_0_0 -31222,1,51.0,255.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,859.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104079,2,2,0,1,1,848.0,568.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,368.313284506234,0.0,9078.088012898374,0,4,2,3,65.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09462344920863418,9078.088012898374,1,1,1_1,1_0_1,1_2_1,1_0_1 -31223,2,62.0,0.0,6,111,1100.0,0.0,0.0,77,77,0.0,414.0690019277831,1520.3916503335236,1628.0,220.20185653634454,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,105932,1,2,1,0,1,,264.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1566.94507135287,1100.0,23816.647547843433,6,5,0,1,108.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06835554822439371,15877.765031895622,3,2,3_0,3_1_0,3_2_0,3_0_0 -31224,2,76.0,0.0,5,111,907.0,723.0,0.0,75,74,0.0,0.0,1253.632024411369,1630.0,0.0,1311.2710473127056,71,0,0,0,0,0,0,0,0,0,,1,,3,115653,2,1,1,0,1,,689.0,,41,0.0,2.0,7.0,2.0,1.5,9,8,278.461382614649,907.0,62873.302877033595,5,5,0,1,120.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02592515305244776,41915.53525135573,9,5,9,9_1,9_2,9_0_0 -31225,2,61.0,0.0,1,111,723.0,0.0,0.0,77,22,2061.147130284841,0.0,999.3119665373978,2103.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,126195,2,1,1,0,1,,330.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,278.684611148164,723.0,39702.485059097206,5,1,0,1,169.0,6,5,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05296897654818537,26468.32337273147,7,4,7,7_1,7_2,7_1_0 -31227,1,62.0,346.0,6,111,450.0,960.0,0.0,85,69,0.0,0.0,621.9784024091688,1535.0,215.04087552377396,1741.106784813551,41,0,0,0,0,0,0,0,0,0,,2,,4,114535,1,2,0,1,2,,480.0,490.0,42,1.0,4.0,4.0,3.0,1.8,1,1,341.560485581689,450.0,9750.676895539984,6,4,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.1574249681785803,5417.042719744435,1,1,1_1,1_0_1,1_2_1,1_0_0 -31228,2,58.0,0.0,2,111,300.0,620.0,0.0,0,68,0.0,0.0,414.65226827277917,920.0,0.0,1124.4647985254182,41,0,0,0,0,0,0,0,0,2,7.0,2,,2,116123,2,1,0,0,1,,190.0,310.0,12,1.0,4.0,3.0,1.0,1.0,2,1,612.095905883806,300.0,17019.595652064243,0,1,2,3,53.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05405533825878035,17019.595652064243,4,2,4_0,4_0_0,4_2_0,4_0_1 -31229,2,46.0,0.0,5,111,1470.0,0.0,0.0,52,64,0.0,0.0,2031.796114536618,1470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,128553,2,2,3,0,1,,530.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,276.665742740225,1470.0,57719.82180891621,1,1,1,2,110.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02546785409120794,20614.222074612935,5,3,5,5_1,5_2,5_0_0 -31230,2,72.0,0.0,2,111,306.0,1171.0,0.0,72,77,0.0,0.0,422.9453136382348,1477.0,0.0,2123.7875468923626,71,0,0,0,0,0,0,0,0,0,,1,,2,116260,2,2,2,0,1,,239.0,,41,0.0,2.0,4.0,2.0,1.5,5,4,1367.61591031967,306.0,27152.06725817954,5,5,0,1,110.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05439733136912641,18101.378172119694,4,2,4_0,4_1_0,4_2_0,4_0_1 -31231,2,48.0,0.0,5,111,2000.0,0.0,0.0,0,38,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,117285,2,1,2,0,1,,580.0,,32,1.0,2.0,7.0,2.0,1.5,5,3,295.283148365436,2000.0,61520.569032289655,0,1,0,1,150.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03250945222808783,41013.7126881931,9,5,9,9_1,9_2,9_0_0 -31232,2,78.0,0.0,2,111,300.0,980.0,0.0,0,74,0.0,0.0,414.65226827277917,8415.0,0.0,1777.3798428305,50,0,0,0,0,0,0,0,0,0,,1,,2,118956,1,2,3,0,2,,250.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1650.49845806706,300.0,39402.11141766053,0,5,0,1,75.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.2135672352885203,39402.11141766053,9,5,9,9_1,9_2,9_0_1 -31233,2,70.0,0.0,5,111,398.0,870.0,0.0,0,77,0.0,0.0,550.1053425752203,1268.0,0.0,1577.8780237372805,60,0,0,0,0,0,0,0,0,0,,1,,3,106307,2,1,2,0,1,,124.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,310.908421612473,398.0,25162.181108567318,0,5,0,1,100.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050393087726733926,25162.181108567318,7,4,7,7_1,7_2,7_0_0 -31234,2,79.0,0.0,2,111,996.0,0.0,0.0,74,74,0.0,0.0,1376.645530665627,996.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123789,2,1,1,0,1,,358.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,265.544613111996,996.0,65845.15500376218,5,5,0,1,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015126397681698704,43896.77000250812,10,5,10,10_1,10_2,10_0_1 -31235,2,67.0,0.0,1,112,659.0,0.0,0.0,0,77,0.0,248.44140115666985,910.8528159725382,1019.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,118465,1,1,2,0,1,,138.0,,11,0.0,1.0,4.0,1.0,1.0,3,3,1769.24368280645,659.0,8710.04157884023,0,5,0,1,80.0,7,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11699140477991646,8710.04157884023,1,1,1_0,1_1_0,1_1_0,1_1_0 -31236,1,52.0,131.0,2,112,530.0,0.0,0.0,0,21,0.0,0.0,732.5523406152432,560.0,51.60981012570575,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,107861,2,1,2,0,1,,310.0,500.0,12,1.0,4.0,4.0,1.0,1.0,2,2,2168.83708046407,530.0,6505.664478877923,0,1,2,3,65.0,7,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.08607883204216321,6505.664478877923,1,1,1_1,1_1_1,1_1_1,1_0_1 -31237,1,30.0,336.0,2,111,1100.0,532.0,0.0,0,67,0.0,0.0,1520.3916503335236,1632.0,0.0,964.8633432508428,41,2,2,2,2,1,2,2,2,2,35.0,2,,2,127740,2,3,0,0,1,,384.0,277.0,32,1.0,0.0,4.0,3.0,1.6,2,2,353.917099451663,1100.0,17920.235849437053,0,1,2,3,67.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.09107022997419242,11200.147405898157,2,1,2_1,2_0_1,2_2_1,2_0_1 -31238,2,78.0,0.0,5,111,360.0,240.0,0.0,0,77,0.0,0.0,497.582721927335,600.0,0.0,435.27669620338776,50,0,0,0,0,0,0,0,0,0,,2,,3,123700,2,1,0,1,1,534.0,360.0,300.0,11,0.0,3.0,2.0,1.0,1.0,1,1,353.486864050931,360.0,19496.248575375554,0,5,2,3,55.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030775151315921415,19496.248575375554,5,3,5,5_0,5_2,5_0_0 -31239,2,59.0,0.0,2,111,0.0,0.0,1320.0,47,43,0.0,0.0,674.405601985533,1320.0,0.0,1509.0844225414737,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,116523,2,1,2,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,265.531177086008,0.0,65347.3058417763,1,1,0,1,70.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02019976161214788,43564.8705611842,10,5,10,10_1,10_2,10_0_1 -31240,1,40.0,187.0,1,112,450.0,317.0,0.0,46,67,0.0,0.0,621.9784024091688,767.0,0.0,574.9279695686413,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,103896,2,1,3,0,1,,319.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1779.90820568306,450.0,26400.758485308506,1,1,1,2,90.0,7,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.02905219561880467,12571.789754908812,2,1,2_1,2_1_1,2_1_1,2_1_0 -31241,0,58.0,0.0,2,111,50.0,80.0,0.0,77,75,0.0,0.0,69.10871137879653,130.0,0.0,145.09223206779592,10,0,0,0,0,0,0,0,0,0,,1,,2,112184,2,3,3,0,1,,140.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,254.437139796339,50.0,31525.834719067996,5,5,0,1,99.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.004123602155452879,21017.22314604533,5,3,5,5_1,5_2,5_0_1 -31242,2,81.0,0.0,7,112,1443.0,0.0,0.0,78,77,0.0,0.0,1994.477410392068,1518.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,126586,2,1,2,0,1,,158.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1796.53674666554,1443.0,25844.82281413543,5,5,0,1,100.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05873516761622963,17229.881876090287,4,2,4_0,4_1_0,4_1_0,4_0_0 -31243,2,65.0,0.0,1,112,341.0,1100.0,0.0,0,77,0.0,0.0,471.32141160339233,1441.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,1,,1,113789,2,2,2,0,2,,81.0,,11,0.0,1.0,3.0,1.0,1.0,4,3,1989.65553324362,341.0,10876.968310593415,0,5,0,1,100.0,7,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13248176871091605,10876.968310593415,2,1,2_0,2_1_0,2_1_0,2_1_0 -31244,1,39.0,320.0,2,111,0.0,0.0,800.0,68,63,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,125575,2,1,0,0,1,,800.0,280.0,43,2.0,0.0,4.0,5.0,2.4,1,1,331.111435027644,0.0,21223.76537028757,1,1,2,3,80.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03769359423469543,8843.235570953155,1,1,1_1,1_0_1,1_2_1,1_0_1 -31245,0,85.0,0.0,9,112,186.0,0.0,0.0,0,75,0.0,124.22070057833493,257.0844063291231,306.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,106832,2,1,1,0,1,,372.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,2234.49870785563,186.0,39238.789796788886,0,5,5,0,75.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007798405648714517,39238.789796788886,9,5,9,9_1,9_1,9_0_0 -31246,1,53.0,270.0,5,111,300.0,156.0,0.0,0,78,0.0,77.63793786145933,414.65226827277917,531.0,0.0,282.929852532202,43,2,2,2,1,2,2,2,2,0,,2,,3,123384,2,3,0,0,1,,100.0,278.0,31,0.0,0.0,2.0,2.0,1.5,1,1,329.486680093826,300.0,9311.750406826013,0,7,2,3,40.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.0570247243322532,6207.833604550676,1,1,1_1,1_0_1,1_2_1,1_0_0 -31247,2,57.0,0.0,2,111,600.0,800.0,0.0,85,69,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,20,0,0,0,0,0,0,0,0,2,30.0,8,,2,109063,2,1,0,0,1,,600.0,,42,1.0,6.0,4.0,3.0,2.0,2,2,452.807985902125,600.0,17821.695862174383,6,1,1,2,85.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07855593602466455,8910.847931087192,1,1,1_0,1_0_0,1_2_0,1_0_1 -31248,2,42.0,0.0,2,112,1210.0,1180.0,0.0,23,23,0.0,0.0,1672.430815366876,2390.0,0.0,2140.1104229999896,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,122175,2,1,4,0,1,,355.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2050.64376784201,1210.0,28374.77504060597,1,1,1,2,98.0,7,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08422974267037428,15763.76391144776,3,2,3_0,3_1_0,3_1_0,3_0_1 -31249,2,50.0,0.0,6,112,0.0,0.0,0.0,85,64,0.0,0.0,0.0,1281.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,100807,2,1,1,0,1,,275.0,,42,2.0,1.0,5.0,4.0,2.5,3,3,1700.84849406428,0.0,31474.99478520798,6,1,1,2,100.0,7,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040698974177495975,12589.997914083191,2,1,2_0,2_1_0,2_1_0,2_0_0 -31250,2,62.0,0.0,1,112,354.0,338.0,0.0,0,78,4480.754631054002,0.0,489.28967656187945,3692.0,0.0,613.0146804864378,71,0,0,0,0,0,0,0,0,0,,1,,1,112185,2,1,1,0,1,,194.0,,11,0.0,2.0,4.0,1.0,1.0,6,5,2134.63176734024,354.0,15378.876614858353,0,5,0,1,110.0,7,1,9,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2400695507520336,15378.876614858353,3,2,3_0,3_1_0,3_1_0,3_1_0 -31251,2,56.0,0.0,6,112,1165.0,0.0,0.0,78,56,0.0,0.0,1610.232975125959,1255.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,113907,2,1,1,0,1,,378.0,,42,1.0,2.0,4.0,3.0,2.0,2,2,2301.39048670909,1165.0,35020.471395801505,7,1,0,1,90.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03583618238075625,17510.235697900753,4,2,4_0,4_1_0,4_1_0,4_0_0 -31252,2,78.0,0.0,2,111,400.0,900.0,0.0,0,77,0.0,0.0,552.8696910303722,1300.0,0.0,1632.287610762704,71,2,2,2,2,2,2,2,1,0,,1,,2,125446,2,2,3,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,289.952675445004,400.0,16550.33560340283,0,5,0,1,90.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.07854825612918168,16550.33560340283,4,2,4_0,4_1_0,4_2_0,4_0_1 -31253,2,34.0,0.0,6,112,1140.0,0.0,0.0,43,53,0.0,124.22070057833493,1575.678619436561,1290.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,124307,2,1,2,0,1,,445.0,,43,2.0,0.0,5.0,2.0,1.5,3,2,1791.6367588347,1140.0,31528.720300295543,1,1,1,2,95.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04091507640377995,21019.146866863695,5,3,5,5_1,5_1,5_0_0 -31254,2,64.0,0.0,6,112,1323.0,0.0,0.0,75,78,0.0,0.0,1828.6165030829561,1383.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121707,2,1,2,0,2,,260.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,1942.4250605829,1323.0,19764.206022375758,6,5,0,1,89.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06997498399046523,13176.137348250506,2,1,2_0,2_1_0,2_1_0,2_0_0 -31255,2,60.0,0.0,1,112,1980.0,0.0,0.0,71,56,0.0,0.0,2736.7049706003427,1980.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115785,2,1,1,0,1,,425.0,,42,1.0,2.0,7.0,3.0,2.0,3,1,2300.33345807733,1980.0,18036.511499427663,7,1,0,1,210.0,7,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10977732584612217,9018.255749713831,1,1,1_0,1_1_0,1_1_0,1_1_0 -31256,2,65.0,0.0,6,112,980.0,1200.0,0.0,77,72,0.0,0.0,1354.530743024412,2180.0,0.0,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,4,127802,2,1,1,0,1,,280.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2028.51374513624,980.0,9162.724699106799,5,5,0,1,115.0,7,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.23792049544089336,6108.483132737866,1,1,1_0,1_1_0,1_1_0,1_0_0 -31257,2,73.0,0.0,1,112,1346.0,0.0,0.0,0,75,0.0,0.0,1860.4065103172024,1346.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,123834,2,1,2,0,1,,135.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1769.24368280645,1346.0,38090.9328650419,0,5,0,1,90.0,7,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.035336493458139925,38090.9328650419,9,5,9,9_1,9_1,9_1_0 -31258,1,23.0,327.0,5,111,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1018.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,118672,2,1,0,1,1,40.0,152.0,421.0,43,2.0,0.0,3.0,2.0,1.5,1,1,429.126472476122,0.0,15654.992356567604,4,1,2,3,60.0,8,6,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06502717962509431,10436.66157104507,2,1,2_1,2_0_1,2_2_1,2_0_0 -31259,2,48.0,0.0,1,112,450.0,795.0,0.0,0,38,0.0,0.0,621.9784024091688,1245.0,0.0,1441.8540561737218,71,0,0,0,0,0,0,0,0,0,,1,,1,125739,2,1,2,0,1,,250.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1961.40928173732,450.0,47512.311531048705,0,1,0,1,80.0,7,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02620373456649037,47512.311531048705,10,5,10,10_1,10_1,10_1_0 -31260,1,35.0,120.0,2,111,200.0,0.0,0.0,0,68,0.0,0.0,276.4348455151861,529.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,121993,2,2,0,0,1,1600.0,0.0,180.0,32,1.0,0.0,1.0,2.0,1.3,2,2,391.42152163518,200.0,6268.5526385038975,0,4,2,3,35.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08438949634891402,4821.963568079921,1,1,1_1,1_0_1,1_2_1,1_0_1 -31261,2,67.0,0.0,9,112,1300.0,0.0,0.0,0,77,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,123766,2,1,1,0,1,,780.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2104.07855037433,1300.0,16951.670899203466,0,5,0,1,88.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07668860537288304,16951.670899203466,4,2,4_0,4_1_0,4_1_0,4_0_0 -31262,2,81.0,0.0,6,112,735.0,0.0,0.0,0,72,0.0,377.8379642591021,1015.898057268309,1132.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,108744,2,1,2,0,1,,156.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,2210.11622505257,735.0,12643.134502380497,0,5,0,1,61.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08953475894659373,12643.134502380497,2,1,2_0,2_1_0,2_1_0,2_0_0 -31263,1,38.0,310.0,2,111,350.0,0.0,0.0,85,67,0.0,0.0,483.76097965157567,540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113946,2,3,0,1,2,416.0,0.0,430.0,42,1.0,0.0,3.0,3.0,1.8,2,2,327.400348709852,350.0,16091.480173899032,6,4,2,3,55.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.033558131021153646,8939.711207721684,1,1,1_1,1_0_1,1_2_1,1_0_1 -31264,2,84.0,0.0,6,112,801.0,0.0,0.0,0,74,0.0,0.0,1107.1215562883203,801.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,120344,2,2,2,0,2,,69.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,1980.12529685365,801.0,36886.65671429899,0,5,0,1,168.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021715169423025944,36886.65671429899,9,5,9,9_1,9_1,9_0_0 -31265,2,58.0,0.0,1,112,1624.0,0.0,0.0,13,13,1493.5848770180007,0.0,2244.650945583311,2624.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111561,2,3,1,0,1,,350.0,,43,2.0,2.0,9.0,3.0,2.0,4,2,2201.11578965077,1624.0,63947.36584561928,1,1,0,1,180.0,7,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04103374650857112,31973.68292280964,8,4,8,8_1,8_1,8_1_0 -31266,2,56.0,0.0,2,111,0.0,0.0,0.0,56,37,0.0,0.0,0.0,3326.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,,2,118180,2,3,4,0,1,,500.0,,43,2.0,1.0,4.0,3.0,2.0,5,4,308.965637535976,0.0,132054.76557075058,1,1,0,1,110.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.025186520044352654,66027.38278537529,10,5,10,10_1,10_2,10_0_1 -31267,2,72.0,0.0,6,112,1445.0,0.0,0.0,0,72,0.0,155.27587572291867,1997.2417588472197,1595.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124464,2,1,2,0,1,,627.0,,11,0.0,4.0,5.0,1.0,1.0,8,6,2192.56995767578,1445.0,13527.952974784544,0,5,0,1,135.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11790401718375304,13527.952974784544,3,2,3_0,3_1_0,3_1_0,3_0_0 -31268,2,58.0,0.0,9,112,1177.0,0.0,0.0,74,52,0.0,0.0,1626.8190658568703,1177.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,123845,2,1,1,0,1,,119.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,1796.73087154545,1177.0,34532.036893143406,5,1,1,2,80.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0340842911653932,23021.35792876227,6,3,6,6_1,6_1,6_0_0 -31269,2,66.0,0.0,9,112,1390.0,0.0,0.0,75,75,0.0,0.0,1921.2221763305436,1390.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,2004.0,6,104829,1,2,1,0,1,,249.0,776.0,41,0.0,1.0,5.0,2.0,1.5,2,2,1989.42629164575,1390.0,49778.80536804888,5,5,2,3,92.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.027923530701927775,33185.87024536592,8,4,8,8_1,8_1,8_0_0 -31270,2,69.0,0.0,9,112,1200.0,0.0,0.0,75,78,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,111808,2,3,1,0,1,,264.0,840.0,41,0.0,4.0,5.0,2.0,1.5,3,3,2043.00837492946,1200.0,40645.428040845625,5,5,2,3,93.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02952361576298543,27096.952027230418,7,4,7,7_1,7_1,7_0_0 -31271,2,71.0,0.0,8,112,934.0,980.0,0.0,77,77,0.0,0.0,1290.950728555919,1914.0,0.0,1777.3798428305,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,106926,2,1,2,0,1,,710.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,2062.78990402529,934.0,35024.330162225975,5,5,0,1,110.0,7,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05464772605599363,23349.553441483982,6,3,6,6_1,6_1,6_0_0 -31272,2,34.0,0.0,2,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,744.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,7.0,8,,2,111053,2,2,0,0,1,,559.0,272.0,43,2.0,0.0,3.0,2.0,1.5,1,1,374.176246309722,0.0,26946.238563880335,1,1,2,3,70.0,7,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027610532662517253,17964.15904258689,4,2,4_0,4_0_0,4_2_0,4_0_1 -31273,2,50.0,0.0,2,112,1820.0,0.0,0.0,63,46,0.0,0.0,2515.557094188194,1820.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,101179,2,1,1,0,1,,215.0,,43,2.0,4.0,5.0,3.0,2.0,2,1,2123.51143392113,1820.0,34636.64010491853,1,1,1,2,120.0,7,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0525455123385814,17318.320052459265,4,2,4_0,4_1_0,4_1_0,4_0_1 -31274,2,62.0,0.0,2,111,1200.0,0.0,0.0,43,75,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103669,2,1,2,0,1,,362.0,,42,1.0,2.0,4.0,2.0,1.5,5,4,280.332498295226,1200.0,57331.0859202991,1,5,0,1,100.0,7,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020931053035838598,38220.72394686606,9,5,9,9_1,9_2,9_0_1 -31275,1,19.0,351.0,8,112,0.0,0.0,0.0,85,55,0.0,0.0,0.0,934.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,121936,1,2,0,0,1,,343.0,431.0,42,1.0,0.0,3.0,3.0,1.8,3,1,2747.29413040849,0.0,11369.0,6,1,2,3,75.0,7,1,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08215322367842379,6316.111111111111,1,1,1_1,1_0_1,1_1_1,1_0_0 -31276,2,76.0,0.0,2,111,34.0,29.0,0.0,77,74,0.0,0.0,46.99392373758164,63.0,0.0,52.59593412457602,71,0,0,0,0,0,0,0,0,0,,1,,2,119353,2,1,2,0,1,,415.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,280.332498295226,34.0,33214.23892854792,5,5,0,1,110.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0018967768653537012,22142.82595236528,6,3,6,6_1,6_2,6_0_1 -31277,2,74.0,0.0,6,112,860.0,0.0,0.0,86,74,0.0,0.0,1188.6698357153002,930.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,122930,2,1,2,0,1,,134.0,,41,0.0,2.0,5.0,2.0,1.5,5,3,2054.66100865998,860.0,38882.226709417504,5,5,0,1,130.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02391838324873376,25921.484472945,7,4,7,7_1,7_1,7_0_0 -31278,2,52.0,0.0,2,112,1970.0,0.0,0.0,52,21,0.0,0.0,2722.8832283245833,1970.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,119529,2,1,1,0,1,,595.0,,43,2.0,1.0,5.0,2.0,1.5,4,2,2180.14225551091,1970.0,41937.9371870609,1,1,0,1,110.0,7,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0469741749865514,27958.624791373935,7,4,7,7_1,7_1,7_0_1 -31279,2,62.0,0.0,2,111,295.0,449.0,0.0,0,75,0.0,0.0,407.7413971348995,744.0,0.0,814.3301524805046,71,0,0,0,0,0,0,0,0,0,,1,,2,126529,2,2,2,0,1,,397.0,,11,0.0,1.0,4.0,1.0,1.0,2,1,294.954537590042,295.0,24047.623128885367,0,5,0,1,95.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030938608610608462,24047.623128885367,6,3,6,6_1,6_2,6_0_1 -31280,2,41.0,0.0,9,112,890.0,0.0,0.0,43,43,0.0,0.0,1230.1350625425782,890.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,106240,2,1,0,0,1,,265.0,,43,2.0,0.0,5.0,4.0,2.3,2,1,2604.21751225109,890.0,53932.89546885852,1,1,1,2,92.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01650198811435771,23449.084986460228,6,3,6,6_0,6_1,6_0_0 -31281,2,58.0,0.0,2,111,800.0,1000.0,0.0,0,56,0.0,0.0,1105.7393820607444,1800.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,2,113943,2,1,2,0,1,,350.0,,22,3.0,2.0,6.0,3.0,2.0,1,1,312.017206960332,800.0,63130.6690117522,0,4,0,1,120.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02851229090673691,31565.3345058761,8,4,8,8_1,8_2,8_0_1 -31282,2,68.0,0.0,6,211,1500.0,0.0,0.0,86,78,0.0,476.1793522169506,2073.261341363896,2050.0,154.82943037711726,0.0,71,2,2,1,2,1,2,2,2,0,,1,,4,133245,2,1,2,0,2,,350.0,,41,3.0,0.0,6.0,5.0,3.0,1,1,538.899041263995,1500.0,42722.70677094998,6,5,0,1,100.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04798385109330038,14240.902256983327,3,2,3_0,3_1_0,3_1_0,3_0_0 -31283,2,43.0,0.0,2,211,840.0,0.0,0.0,43,67,0.0,155.27587572291867,1161.0263511637818,1086.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,111330,2,2,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,685.354583507045,840.0,31889.97212282817,1,1,0,1,80.0,2,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034054592328181935,13865.205270794859,3,2,3_0,3_1_0,3_1_0,3_0_1 -31284,2,50.0,0.0,1,211,630.0,0.0,0.0,75,43,2778.0678712534814,0.0,870.7697633728362,2565.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,117767,2,1,2,0,1,,427.0,,42,2.0,0.0,5.0,3.0,2.0,5,4,674.065589710172,630.0,60208.706576766286,7,1,0,1,130.0,2,3,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04260181202746179,30104.353288383143,8,4,8,8_1,8_1,8_1_0 -31285,2,61.0,0.0,5,111,180.0,850.0,0.0,0,56,0.0,0.0,248.7913609636675,1030.0,0.0,1541.6049657203316,31,0,0,0,0,0,0,0,0,2,10.0,8,,3,118603,2,1,0,0,1,,0.0,331.0,12,1.0,3.0,4.0,1.0,1.0,1,1,364.663255971927,180.0,14995.4610623943,0,1,2,3,90.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0686874512036872,14995.4610623943,3,2,3_0,3_0_0,3_2_0,3_0_0 -31286,2,39.0,0.0,5,111,0.0,0.0,1200.0,37,38,0.0,0.0,613.09600180503,1235.0,60.21144514665671,1371.8949295831578,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,128532,2,1,1,0,1,,480.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,284.458579245291,0.0,84078.27157596007,4,1,1,2,80.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01468869396160512,56052.18105064004,10,5,10,10_1,10_2,10_0_0 -31287,2,81.0,0.0,6,211,817.0,0.0,0.0,75,74,0.0,517.5862524097289,1129.2363439295352,1317.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,119150,2,3,1,0,1,,541.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,621.248344052939,817.0,51648.542923708104,5,5,0,1,163.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025499267267721133,34432.361949138736,9,5,9,9_1,9_1,9_0_0 -31288,2,69.0,0.0,1,211,600.0,0.0,0.0,78,71,5974.339508072003,0.0,829.3045365455583,4780.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117619,1,2,4,0,2,,550.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,621.523836875478,600.0,20480.228144788332,5,5,0,1,120.0,2,3,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2333958374978543,13653.485429858889,3,2,3_0,3_1_0,3_1_0,3_1_0 -31289,2,48.0,0.0,7,211,1388.0,0.0,0.0,56,21,2120.890525365561,238.0896761084753,1918.4578278753916,3163.0,215.04087552377396,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,101685,2,1,2,0,1,,760.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,590.543797649534,1388.0,47563.0201553531,1,1,0,1,169.0,2,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06650124381649494,19025.20806214124,5,3,5,5_1,5_1,5_0_0 -31290,1,51.0,140.0,2,111,500.0,1000.0,0.0,85,64,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,0,,1,,2,129279,2,3,4,0,1,,400.0,,42,1.0,0.0,6.0,5.0,2.8,2,2,241.221663966862,500.0,24631.20148122442,6,1,1,2,110.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06089836913328821,8796.857671865864,1,1,1_1,1_1_1,1_2_1,1_0_1 -31291,2,34.0,0.0,9,211,1200.0,0.0,0.0,52,52,0.0,414.0690019277831,1658.6090730911167,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,120272,2,1,1,0,1,,420.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,682.93431583711,1200.0,38384.29276239733,1,1,1,2,119.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041683717084594014,21324.60709022074,6,3,6,6_1,6_1,6_0_0 -31292,2,72.0,0.0,6,111,1400.0,0.0,0.0,72,72,0.0,0.0,1935.0439186063027,1520.0,206.439240502823,0.0,30,0,0,0,0,0,0,0,0,0,,1,,4,110897,2,1,2,0,1,,130.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,255.337261056604,1400.0,22448.55391591928,5,5,0,1,98.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06771037482829126,14965.702610612854,3,2,3_0,3_1_0,3_2_0,3_0_0 -31293,2,56.0,0.0,6,211,1000.0,1200.0,0.0,21,33,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,111490,2,1,3,0,1,,1000.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,632.229537371435,1000.0,93114.02731553714,1,1,0,1,175.0,2,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023626944977310684,46557.01365776857,10,5,10,10_1,10_1,10_0_0 -31294,0,81.0,0.0,7,211,1216.0,0.0,0.0,0,77,0.0,0.0,1680.7238607323316,1276.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,124815,2,1,2,0,1,,258.0,,11,0.0,2.0,4.0,1.0,1.0,2,1,749.061661685156,1216.0,17496.83870114748,0,6,0,1,101.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07292745974256007,17496.83870114748,4,2,4_0,4_1_0,4_1_0,4_0_0 -31295,1,56.0,304.0,7,211,700.0,0.0,0.0,21,31,0.0,310.55175144583734,967.5219593031513,1060.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,130677,2,1,3,0,1,,250.0,684.0,43,2.0,5.0,4.0,2.0,1.5,2,2,696.015370029002,700.0,2485.083211213205,1,1,2,3,104.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.4265450731054247,1656.7221408088033,1,1,1_1,1_1_1,1_1_1,1_0_0 -31296,2,40.0,0.0,9,211,1783.0,0.0,0.0,43,45,0.0,0.0,2464.416647767884,1813.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,131960,2,1,1,0,1,,534.0,,43,2.0,0.0,6.0,4.0,2.1,1,1,564.480007582477,1783.0,47369.710821968,1,1,1,2,146.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0382734023184961,22557.005153318096,6,3,6,6_1,6_1,6_0_0 -31297,2,60.0,0.0,2,111,0.0,0.0,0.0,86,38,0.0,0.0,0.0,2082.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128102,2,1,2,0,1,,338.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,287.431758410342,0.0,54349.683341323806,6,1,1,2,110.0,7,5,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03830749089971217,36233.122227549204,9,5,9,9_1,9_2,9_0_1 -31298,1,33.0,169.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,542.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,113673,2,1,0,1,1,,626.0,495.0,32,1.0,0.0,3.0,2.0,1.3,3,1,342.696578822343,0.0,14715.85172759249,0,1,2,3,65.0,7,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03683103160000859,11319.885944301916,2,1,2_1,2_0_1,2_2_1,2_0_1 -31299,2,66.0,0.0,6,211,1200.0,0.0,0.0,75,78,0.0,517.5862524097289,1658.6090730911167,1805.0,180.63433543997013,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,107740,2,1,2,0,1,,450.0,,41,0.0,1.0,7.0,2.0,1.5,3,2,694.156240596797,1200.0,24585.957716545774,5,5,0,1,124.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07341589133154969,16390.638477697183,4,2,4_0,4_1_0,4_1_0,4_0_0 -31300,2,76.0,0.0,5,111,316.0,608.0,0.0,0,77,0.0,0.0,436.76705591399406,924.0,0.0,1102.700963715249,31,0,0,0,0,0,0,0,0,0,,2,,3,115359,1,3,0,0,1,,0.0,284.0,11,0.0,0.0,3.0,1.0,1.0,2,2,340.836984665847,316.0,16082.075961430564,0,5,2,3,55.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.057455268972489454,16082.075961430564,4,2,4_0,4_0_0,4_2_0,4_0_0 -31301,2,62.0,0.0,6,211,1149.0,0.0,0.0,78,77,0.0,0.0,1588.118187484744,1199.0,86.01635020950958,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,101505,2,1,2,0,1,,241.0,,41,0.0,0.0,4.0,2.0,1.5,1,1,672.397259760313,1149.0,27422.52599627003,5,5,0,1,95.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04372317853443137,18281.68399751335,4,2,4_0,4_1_0,4_1_0,4_0_0 -31302,1,91.0,40.0,9,211,840.0,0.0,0.0,0,75,0.0,0.0,1161.0263511637818,952.0,192.67662446930146,0.0,60,2,2,2,1,1,2,2,2,0,,1,2007.0,6,113413,2,2,4,0,1,,400.0,676.0,11,0.0,3.0,4.0,1.0,1.0,5,4,782.755448593061,840.0,16285.881300576679,0,5,2,3,80.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.0584555408718526,16285.881300576679,4,2,4_1,4_1_1,4_1_1,4_0_0 -31303,1,51.0,176.0,2,111,550.0,500.0,0.0,0,68,0.0,0.0,760.1958251667618,1050.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,0,,2,,2,116850,1,1,0,0,2,,250.0,325.0,12,1.0,1.0,3.0,1.0,1.0,4,3,363.124260946022,550.0,21838.783953482114,0,1,2,3,68.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04807960013875138,21838.783953482114,6,3,6,6_0,6_2,6_0_1 -31304,2,61.0,0.0,6,111,400.0,1000.0,0.0,0,22,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,20,0,0,0,0,0,0,0,0,0,,1,,4,108948,2,2,3,0,1,,400.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,268.873184628936,400.0,4339.990587426309,0,1,0,1,120.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.32258134477435,4339.990587426309,1,1,1_0,1_1_0,1_2_0,1_0_0 -31305,1,48.0,179.0,1,212,1138.0,0.0,0.0,12,12,0.0,0.0,1572.914270981409,2794.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,131479,2,2,3,0,2,,660.0,,43,2.0,0.0,6.0,5.0,2.8,1,1,694.011832308437,1138.0,11294.927456672538,1,1,1,2,120.0,2,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.24736767993577768,4033.9026630973353,1,1,1_1,1_1_1,1_0_1,1_1_0 -31306,2,72.0,0.0,5,111,1271.0,0.0,0.0,75,75,0.0,0.0,1756.7434432490077,1341.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,120186,2,1,2,0,1,,732.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,283.013101867107,1271.0,47618.66021078003,5,5,0,1,120.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02816122910775262,31745.77347385335,8,4,8,8_1,8_2,8_0_0 -31307,1,25.0,351.0,1,212,0.0,0.0,0.0,47,52,0.0,0.0,0.0,1137.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,4.0,1,,1,100961,2,1,2,0,1,,262.0,480.0,43,2.0,0.0,3.0,3.0,1.8,2,1,930.104389730771,0.0,29531.654385407826,4,1,2,3,74.0,2,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0385010600883171,16406.474658559902,4,2,4_1,4_1_1,4_0_1,4_1_0 -31308,2,48.0,0.0,7,212,1200.0,0.0,0.0,52,12,0.0,155.27587572291867,1658.6090730911167,1410.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,5,133608,2,1,2,0,1,,320.0,,43,3.0,0.0,5.0,3.0,2.0,2,2,754.308092388218,1200.0,35729.46423105101,1,1,1,2,160.0,2,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03946322818842122,17864.732115525505,4,2,4_0,4_1_0,4_0_0,4_0_0 -31309,2,56.0,0.0,2,111,360.0,500.0,0.0,85,53,0.0,0.0,497.582721927335,860.0,0.0,906.8264504237244,41,0,0,0,0,0,0,0,0,1,5.0,2,,2,115654,2,2,0,0,1,,0.0,350.0,42,1.0,3.0,4.0,3.0,2.0,1,1,371.239272321519,360.0,26146.878723243324,6,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.032891115192097524,13073.439361621662,2,1,2_0,2_0_0,2_3_0,2_0_1 -31310,2,59.0,0.0,9,212,800.0,0.0,0.0,74,37,0.0,517.5862524097289,1105.7393820607444,1390.0,154.82943037711726,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,110285,2,1,1,0,1,,300.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,801.397108770983,800.0,70347.66116835014,6,1,0,1,163.0,2,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0197590080027475,46898.44077890009,10,5,10,10_1,10_0,10_0_0 -31311,2,52.0,0.0,2,111,700.0,1650.0,0.0,52,33,0.0,0.0,967.5219593031513,2350.0,0.0,2992.5272863982905,20,2,2,2,2,1,2,2,2,2,1.0,1,,2,115601,2,1,2,0,2,,350.0,,43,3.0,0.0,4.0,4.0,2.5,1,1,279.400324370078,700.0,84449.05555433629,1,1,1,2,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.027827427844802372,33779.62222173451,9,5,9,9_1,9_3,9_0_1 -31312,2,81.0,0.0,7,212,280.0,0.0,0.0,0,71,0.0,517.5862524097289,387.00878372126056,1780.0,1720.3270041901917,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,122303,2,1,2,0,2,,138.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,827.44780677827,280.0,14177.715940084021,0,5,0,1,114.0,2,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.125549136935907,14177.715940084021,3,2,3_0,3_1_0,3_0_0,3_0_0 -31313,1,76.0,119.0,2,111,0.0,960.0,0.0,0,77,0.0,0.0,0.0,1762.0,0.0,1741.106784813551,50,0,0,0,0,0,0,0,0,0,,2,,2,130196,2,1,0,0,1,,0.0,286.0,11,0.0,2.0,3.0,1.0,1.0,1,1,356.590875181936,0.0,11945.587025194909,0,5,2,3,60.0,9,7,9,0,1,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.14750216931856897,11945.587025194909,2,1,2_1,2_0_1,2_3_1,2_0_1 -31314,1,76.0,109.0,2,111,0.0,0.0,600.0,0,77,0.0,0.0,306.548000902515,600.0,0.0,685.9474647915789,60,0,0,0,0,0,0,0,0,0,,2,,2,108421,2,3,0,0,1,,0.0,276.0,11,0.0,0.0,2.0,1.0,1.0,4,4,358.094558930852,0.0,11201.3840005858,0,5,2,3,42.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05356480948859728,11201.3840005858,2,1,2_1,2_0_1,2_3_1,2_0_1 -31315,2,52.0,0.0,2,212,375.0,0.0,0.0,56,62,2091.018827825201,0.0,518.315335340974,1835.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,107211,1,2,2,0,2,,364.0,,43,2.0,1.0,5.0,3.0,2.0,5,4,786.40561146946,375.0,40589.97190894527,4,1,0,1,120.0,2,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04520821064169301,20294.985954472635,5,3,5,5_1,5_0,5_0_1 -31316,1,33.0,491.0,8,111,420.0,1080.0,0.0,0,85,0.0,0.0,580.5131755818909,1500.0,0.0,1958.7451329152448,42,1,2,2,1,1,2,2,2,0,,2,,6,120743,1,2,0,0,2,,0.0,646.0,31,0.0,0.0,4.0,4.0,1.9,2,2,384.214554609394,420.0,17915.894430375305,0,6,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.08372453889083213,9429.41812125016,1,1,1_1,1_0_1,1_3_1,1_0_0 -31317,1,63.0,19.0,5,111,492.0,1000.0,0.0,0,75,0.0,0.0,680.0297199673578,1492.0,0.0,1813.6529008474488,71,1,2,2,2,2,2,2,1,0,,2,,3,101476,1,2,0,0,1,,0.0,279.0,21,1.0,2.0,4.0,2.0,1.5,1,1,351.970194431089,492.0,10699.922824031579,0,5,2,3,84.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.13944025807822,7133.281882687719,1,1,1_1,1_0_1,1_3_1,1_0_0 -31318,1,44.0,354.0,5,111,672.0,672.0,0.0,85,52,0.0,0.0,928.8210809310253,1344.0,0.0,1218.7747493694856,20,0,0,0,0,0,0,0,0,1,3.0,2,,3,121238,2,1,0,0,1,,0.0,440.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,1,1,349.338416179176,672.0,35792.994081233854,6,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03754924768097717,11546.127122978663,2,1,2_1,2_0_1,2_3_1,2_0_0 -31319,1,30.0,406.0,1,212,0.0,0.0,0.0,85,69,0.0,0.0,0.0,1288.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,111871,2,3,3,0,1,,358.0,490.0,42,1.0,0.0,4.0,4.0,2.1,2,1,892.056321762478,0.0,11500.969457263816,6,4,2,3,83.0,2,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.11199055912512847,5476.652122506579,1,1,1_1,1_1_1,1_0_1,1_1_0 -31321,1,28.0,286.0,7,111,444.0,704.0,0.0,52,63,0.0,0.0,613.6853570437131,1148.0,0.0,1276.811642196604,44,0,0,0,0,0,0,0,0,2,20.0,2,,5,125031,2,1,0,0,1,,0.0,274.0,43,2.0,0.0,3.0,2.0,1.5,2,2,309.717572643521,444.0,24902.37051745369,1,1,2,3,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04610002887859147,16601.580344969127,4,2,4_1,4_0_1,4_3_1,4_0_0 -31322,1,53.0,360.0,2,111,1440.0,0.0,0.0,85,68,0.0,0.0,1990.33088770934,1440.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123056,2,2,0,1,2,531.0,0.0,750.0,42,1.0,0.0,5.0,9.0,4.199999999999999,2,2,473.571526291562,1440.0,38302.57328850399,6,1,2,3,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.037595385280085006,9119.660306786665,1,1,1_1,1_0_1,1_3_1,1_0_1 -31323,2,46.0,0.0,1,300,1500.0,0.0,0.0,56,47,4480.754631054002,258.79312620486445,2073.261341363896,4900.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,102077,2,1,3,0,1,,500.0,,43,2.0,0.0,9.0,5.0,2.6,2,2,718.682529917266,1500.0,66106.88968664096,1,1,1,2,225.0,0,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07412238003068844,25425.726802554214,7,4,7,7_1,7_0,7_1_0 -31324,1,50.0,270.0,2,111,360.0,0.0,0.0,0,62,0.0,0.0,497.582721927335,480.0,206.439240502823,0.0,20,2,2,2,2,2,2,2,1,0,,2,,2,113235,1,2,0,0,2,,0.0,276.0,12,1.0,0.0,2.0,1.0,1.0,2,2,358.094558930852,360.0,12124.311761649651,0,1,2,3,54.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.039589876063587014,12124.311761649651,2,1,2_1,2_0_1,2_3_1,2_0_1 -31325,2,50.0,0.0,7,300,1680.0,0.0,0.0,0,47,0.0,165.62760077111324,2322.0527023275636,1840.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,,5,122906,2,1,2,0,1,,91.0,,12,1.0,1.0,4.0,1.0,1.0,3,3,832.733928171139,1680.0,21253.659944504427,0,1,1,2,125.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.08657332453819419,21253.659944504427,5,3,5,5_1,5_0,5_0_0 -31326,1,25.0,363.0,2,111,0.0,0.0,960.0,63,67,0.0,0.0,490.47680144402403,960.0,0.0,1097.5159436665263,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,104344,2,1,0,0,1,,0.0,330.0,42,1.0,0.0,3.0,4.0,2.1,2,2,349.400777489707,0.0,18115.437857110293,4,7,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05299347482364059,8626.39897957633,1,1,1_1,1_0_1,1_3_1,1_0_1 -31327,2,82.0,0.0,1,300,1700.0,0.0,0.0,0,71,0.0,0.0,2349.696186879082,1760.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132449,2,1,4,0,1,,213.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,749.593186311375,1700.0,16396.149452218302,0,5,0,1,100.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10734227600992514,16396.149452218302,4,2,4_0,4_1_0,4_0_0,4_1_0 -31329,1,34.0,275.0,9,300,2127.0,0.0,0.0,55,42,0.0,0.0,2939.884582054004,2187.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,2011.0,6,102089,2,1,1,0,1,,1000.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,702.75981320608,2127.0,32997.75685111304,1,1,1,2,140.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06627723241515525,13749.065354630433,3,2,3_1,3_1_1,3_0_1,3_0_0 -31330,2,47.0,0.0,6,111,500.0,300.0,0.0,0,68,0.0,0.0,691.0871137879653,800.0,0.0,544.0958702542347,43,2,2,1,2,1,2,2,2,2,30.0,2,,4,128382,2,1,0,0,1,,0.0,440.0,12,1.0,2.0,1.0,1.0,1.0,2,2,482.556917423635,500.0,16929.018411058012,0,1,2,3,30.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.04725613621386584,16929.018411058012,4,2,4_0,4_0_0,4_3_0,4_0_0 -31331,1,50.0,370.0,9,300,1572.0,0.0,0.0,45,43,0.0,0.0,2172.7778857493627,1662.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,118981,2,1,1,0,1,,929.0,,43,2.0,2.0,6.0,4.0,2.1,2,2,695.336639000872,1572.0,47172.46956865328,1,1,1,2,160.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.035232414482374706,22463.08074697775,6,3,6,6_1,6_0,6_0_0 -31332,1,46.0,89.0,5,111,534.0,204.0,0.0,85,53,0.0,0.0,738.0810375255469,738.0,0.0,369.9851917728796,60,0,0,0,0,0,0,0,0,0,,2,,3,123190,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,330.84061092565,534.0,51937.275939427884,6,1,1,2,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.014209447581746418,19236.028125714034,5,3,5,5_0,5_3,5_0_0 -31333,2,59.0,0.0,5,300,0.0,0.0,0.0,75,12,0.0,0.0,0.0,1006.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,125347,2,1,2,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,729.297727855043,0.0,30126.455849565464,5,1,0,1,180.0,0,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03339257710974689,20084.30389971031,5,3,5,5_1,5_0,5_0_0 -31334,1,63.0,200.0,2,111,98.0,40.0,0.0,85,78,0.0,0.0,135.4530743024412,138.0,0.0,72.54611603389796,71,2,2,2,2,1,2,2,2,0,,2,,2,113026,2,2,0,0,1,,800.0,,41,0.0,4.0,5.0,3.0,2.0,3,2,371.963024658347,98.0,15695.222416809924,7,7,0,1,82.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,0,0,1,0.00879248451122292,7847.611208404962,1,1,1_1,1_0_1,1_3_1,1_0_1 -31335,2,62.0,0.0,9,300,0.0,0.0,0.0,77,74,0.0,0.0,0.0,2722.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114282,2,1,1,0,1,,288.0,820.0,41,0.0,4.0,5.0,2.0,1.5,1,1,805.732359451668,0.0,50427.238526628666,5,5,2,3,126.0,0,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053978763849275975,33618.15901775244,9,5,9,9_1,9_0,9_0_0 -31336,2,51.0,0.0,2,111,700.0,0.0,0.0,0,56,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,1,2,2,2,1,2,2,2,3,20.0,2,,2,120007,2,3,0,0,1,,180.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,448.982520099976,700.0,3198.8861643881096,0,1,0,1,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.21882616761822082,3198.8861643881096,1,1,1_0,1_0_0,1_3_0,1_0_1 -31337,1,39.0,367.0,2,300,1124.0,0.0,0.0,0,56,0.0,0.0,1553.563831795346,1180.0,96.33831223465073,0.0,20,2,2,2,2,1,2,2,2,2,20.0,1,,2,103046,1,3,3,0,1,,420.0,392.0,32,1.0,0.0,4.0,3.0,2.0,2,2,629.319010649445,1124.0,16705.716828178753,0,1,2,3,80.0,0,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,1,0.07063450267573121,8352.858414089376,1,1,1_1,1_1_1,1_0_1,1_0_1 -31338,2,70.0,0.0,5,300,1074.0,0.0,0.0,78,74,0.0,496.8828023133397,1484.4551204165493,1644.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,115015,2,1,2,0,1,,412.0,,41,0.0,1.0,8.0,2.0,1.5,5,5,762.971662484904,1074.0,46832.59854332271,5,5,0,1,150.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035103753606138474,31221.73236221514,8,4,8,8_1,8_0,8_0_0 -31339,2,80.0,0.0,8,111,524.0,0.0,0.0,0,77,0.0,0.0,724.2592952497876,524.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2000.0,6,107090,2,1,0,0,1,,0.0,487.0,11,0.0,1.0,3.0,1.0,1.0,2,2,351.612141777858,524.0,15084.93661800056,0,5,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03473663915662205,15084.93661800056,3,2,3_0,3_0_0,3_3_0,3_0_0 -31340,2,60.0,0.0,1,300,650.0,0.0,0.0,13,13,2389.735803228801,393.36555183139393,898.4132479243549,2630.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101274,2,1,1,0,1,,496.0,,43,2.0,2.0,7.0,2.0,1.5,1,1,743.589760136898,650.0,38751.21248338259,1,1,0,1,150.0,0,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06786884413301401,25834.14165558839,7,4,7,7_1,7_0,7_1_0 -31341,1,28.0,127.0,2,111,550.0,800.0,0.0,0,56,0.0,0.0,760.1958251667618,1350.0,0.0,1450.922320677959,60,2,2,2,2,1,2,2,2,2,20.0,2,,2,113982,2,2,0,0,1,,0.0,392.0,32,1.0,0.0,4.0,3.0,1.6,1,1,391.683820719456,550.0,23202.4781887095,0,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.05818344010584697,14501.548867943438,3,2,3_1,3_0_1,3_3_1,3_0_1 -31342,2,71.0,0.0,7,300,300.0,0.0,0.0,0,71,0.0,51.75862524097289,414.65226827277917,425.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,101768,2,1,1,0,1,,130.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,793.954256408278,300.0,17598.843143725775,0,5,0,1,65.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02414931461853038,17598.843143725775,4,2,4_0,4_1_0,4_0_0,4_0_0 -31343,1,36.0,300.0,6,111,800.0,0.0,0.0,85,63,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,1,,4,130037,2,2,2,0,1,,0.0,600.0,42,1.0,0.0,3.0,4.0,2.1,2,2,297.166468094081,800.0,14308.16323111084,6,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.05591213820237432,6813.411062433734,1,1,1_1,1_1_1,1_3_1,1_0_0 -31344,2,32.0,0.0,9,300,1812.0,0.0,0.0,21,43,0.0,0.0,2504.4997003675862,1812.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,117494,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,696.515618794326,1812.0,22150.565355222854,1,1,1,2,130.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08180378111986883,10547.888264391835,2,1,2_0,2_1_0,2_0_0,2_0_0 -31345,1,32.0,351.0,1,300,550.0,0.0,0.0,0,69,0.0,621.1035028916747,760.1958251667618,1220.0,120.42289029331342,0.0,50,2,2,2,1,1,1,2,2,0,,1,,1,127352,1,2,5,0,2,,120.0,350.0,32,1.0,0.0,3.0,2.0,1.3,2,2,767.167064987813,550.0,9012.227772099544,0,4,2,3,60.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0.13537163405666802,6932.482901615034,1,1,1_1,1_1_1,1_0_1,1_1_0 -31346,2,35.0,0.0,5,111,500.0,400.0,0.0,85,64,0.0,0.0,691.0871137879653,900.0,0.0,725.4611603389795,50,2,2,2,2,1,2,2,2,0,,2,,3,104305,2,2,0,0,1,,0.0,350.0,41,0.0,0.0,4.0,4.0,2.1,2,2,340.664431932192,500.0,21413.467111735274,7,7,2,3,81.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04202962534295863,10196.88910082632,2,1,2_0,2_0_0,2_3_0,2_0_0 -31347,2,71.0,0.0,6,300,1000.0,0.0,0.0,11,71,0.0,207.03450096389156,1382.1742275759307,1400.0,344.06540083803833,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,122969,2,1,1,0,2,,1683.0,,42,1.0,3.0,6.0,4.0,2.5,2,2,697.623406104234,1000.0,31333.77299555779,1,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04468022412106193,12533.509198223115,2,1,2_0,2_1_0,2_0_0,2_0_0 -31348,1,78.0,377.0,2,111,0.0,0.0,1404.0,0,86,0.0,0.0,717.3223221118851,1404.0,0.0,1605.1170676122945,60,0,0,0,0,0,0,0,0,0,,2,,2,110871,2,1,0,0,1,,0.0,386.0,21,0.0,2.0,5.0,2.0,1.5,4,3,317.897563107798,0.0,21976.002866417755,0,5,2,3,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06388786935159614,14650.668577611837,3,2,3_1,3_0_1,3_3_1,3_0_1 -31349,2,60.0,0.0,2,111,340.0,510.0,0.0,56,67,0.0,0.0,469.9392373758164,850.0,0.0,924.962979432199,71,2,2,1,2,1,2,2,2,2,20.0,2,,2,108877,2,1,0,0,1,,0.0,380.0,43,2.0,2.0,6.0,2.0,1.5,2,2,325.06428877299,340.0,31538.077824929722,1,1,2,3,76.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.026951547418914205,21025.385216619816,5,3,5,5_0,5_3,5_0_1 -31350,1,56.0,249.0,7,111,700.0,1400.0,0.0,0,77,0.0,0.0,967.5219593031513,2100.0,0.0,2539.1140611864284,20,0,0,0,0,0,0,0,0,0,,1,,5,117104,2,1,1,0,1,,140.0,348.0,11,0.0,1.0,4.0,1.0,1.0,3,3,2293.31071033308,700.0,9394.067536397779,0,7,2,3,75.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.223545337721221,9394.067536397779,1,1,1_1,1_1_1,1_2_1,1_0_0 -31351,1,71.0,147.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2614.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111884,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,360.371032666126,0.0,9907.0,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.2638538407186838,9907.0,2,1,2_1,2_0_1,2_3_1,2_0_1 -31352,1,28.0,98.0,2,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,1506.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112852,2,1,0,0,1,,0.0,277.0,42,1.0,0.0,3.0,3.0,1.8,3,3,336.067203342689,0.0,19313.225064020946,6,1,2,3,59.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07797765494927941,10729.569480011636,2,1,2_1,2_0_1,2_3_1,2_0_1 -31353,2,90.0,0.0,2,111,500.0,0.0,0.0,75,75,2972.2339052658212,0.0,691.0871137879653,2590.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,130822,2,1,1,0,1,,110.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2342.68477473269,500.0,47969.78229857103,5,5,0,1,90.0,8,6,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05399232341475841,31979.85486571402,8,4,8,8_1,8_2,8_0_1 -31354,2,95.0,0.0,2,111,430.0,796.0,0.0,0,72,0.0,0.0,594.3349178576501,1226.0,0.0,1443.6677090745693,71,0,0,0,0,0,0,0,0,0,,2,,2,127421,2,2,0,0,1,,368.0,318.0,21,0.0,0.0,4.0,2.0,1.5,4,4,355.120095269644,430.0,33855.701939850915,0,5,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03621251162295053,22570.46795990061,6,3,6,6_0,6_2,6_0_1 -31355,0,62.0,0.0,2,111,300.0,0.0,0.0,0,48,1164.9962040740406,0.0,414.65226827277917,1160.0,137.62616033521533,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,102325,2,1,2,0,2,,90.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,2396.6780818448,300.0,58752.42034142013,0,1,0,1,80.0,8,6,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.019743867457017877,39168.280227613424,9,5,9,9_1,9_2,9_0_1 -31356,2,66.0,0.0,5,111,1600.0,0.0,0.0,0,75,0.0,258.79312620486445,2211.478764121489,1920.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,104661,2,1,1,0,1,,300.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,2389.22909123924,1600.0,21960.99965242207,0,5,0,1,100.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0874277141472585,21960.99965242207,6,3,6,6_1,6_2,6_0_0 -31357,2,62.0,0.0,8,111,1920.0,0.0,0.0,52,52,0.0,0.0,2653.7745169457867,1990.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,2,7.0,1,2000.0,6,119117,2,1,1,0,1,,1020.0,,43,2.0,0.0,5.0,5.0,3.0,2,2,1972.30206045036,1920.0,51299.3692400711,1,1,1,2,101.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03879189996834437,17099.789746690367,4,2,4_0,4_1_0,4_2_0,4_0_0 -31358,2,51.0,0.0,2,111,954.0,808.0,0.0,90,34,0.0,186.3310508675024,1318.5942131074378,1942.0,0.0,1465.4315438847386,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,133347,2,1,2,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,3,2,2209.75670352911,954.0,75009.60959028726,1,1,0,1,120.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025890016100703222,50006.40639352484,10,5,10,10_1,10_2,10_0_1 -31360,2,82.0,0.0,2,111,1300.0,0.0,0.0,0,77,0.0,165.62760077111324,1796.8264958487098,1460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125416,2,1,2,0,1,,400.0,,11,0.0,2.0,5.0,1.0,1.0,2,1,300.645410812118,1300.0,21104.67468313825,0,5,0,1,100.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06917898626347833,21104.67468313825,5,3,5,5_1,5_2,5_0_1 -31361,2,54.0,0.0,7,111,564.0,1636.0,0.0,77,47,0.0,0.0,779.5462643528249,2200.0,0.0,2967.1361457864264,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,133065,2,1,1,0,1,,750.0,,42,1.0,0.0,4.0,4.0,2.5,1,1,2251.25539222389,564.0,28965.572600550357,6,1,1,2,100.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07595223579174813,11586.229040220143,2,1,2_0,2_1_0,2_2_0,2_0_0 -31362,2,57.0,0.0,2,111,363.0,289.0,0.0,78,52,0.0,0.0,501.7292446100628,652.0,0.0,524.1456883449127,50,2,1,2,1,1,2,2,2,3,10.0,2,,2,121138,2,2,0,1,1,531.0,0.0,341.0,42,1.0,3.0,5.0,2.0,1.5,3,3,338.909730069235,363.0,20189.534926765602,5,1,2,3,119.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03229395834847254,13459.689951177068,3,2,3_0,3_0_0,3_2_0,3_0_1 -31363,1,47.0,425.0,6,111,700.0,0.0,0.0,0,85,0.0,724.6207533736205,967.5219593031513,1400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2007.0,4,117849,2,1,1,0,1,,600.0,527.0,31,1.0,2.0,5.0,3.0,1.8,2,2,272.946512468489,700.0,16797.32127286029,0,6,2,3,90.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08334662278931364,9331.845151589048,1,1,1_1,1_1_1,1_2_1,1_0_0 -31364,2,66.0,0.0,6,111,1760.0,0.0,0.0,0,74,0.0,0.0,2432.626640533638,1760.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,130323,2,2,1,0,1,,500.0,,21,1.0,4.0,4.0,2.0,1.5,2,2,2203.46292882662,1760.0,48380.71354849187,0,5,0,1,125.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03637813233647239,32253.809032327914,8,4,8,8_1,8_2,8_0_0 -31365,1,33.0,364.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,871.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,8,,2,108204,2,1,0,1,1,,0.0,464.0,31,1.0,0.0,4.0,5.0,2.6,1,1,412.323582089575,0.0,4602.062983725958,0,6,2,3,80.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.18926294643947145,1770.0242245099837,1,1,1_1,1_0_1,1_2_1,1_0_1 -31366,2,65.0,0.0,2,111,1500.0,0.0,0.0,46,47,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110329,2,1,2,0,1,,200.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,296.181090044352,1500.0,26633.456914586306,1,1,1,2,80.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0563201391697109,17755.637943057536,4,2,4_0,4_1_0,4_2_0,4_0_1 -31367,2,35.0,0.0,7,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1737.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,120227,2,1,1,0,1,,199.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,2290.63838806377,0.0,160324.3747003652,0,1,0,1,140.0,8,6,9,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010834285199903813,106882.91646691014,10,5,10,10_1,10_2,10_0_0 -31368,2,60.0,0.0,6,111,1600.0,0.0,0.0,74,75,0.0,0.0,2211.478764121489,1700.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,104937,2,1,2,0,1,,400.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,2391.03780433716,1600.0,60447.840042387106,5,5,0,1,85.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028123420105795834,30223.920021193553,8,4,8,8_1,8_2,8_0_0 -31369,1,53.0,276.0,2,111,1180.0,0.0,0.0,0,85,0.0,0.0,1630.965588539598,2020.0,1445.074683519761,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130910,2,1,0,0,1,,160.0,240.0,21,0.0,1.0,3.0,3.0,1.6,4,3,409.044109871655,1180.0,10024.884444444444,0,6,2,3,60.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.20149858197312556,6265.552777777777,1,1,1_1,1_0_1,1_2_1,1_0_1 -31370,1,56.0,229.0,1,111,1100.0,0.0,0.0,0,78,0.0,0.0,1520.3916503335236,1160.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,112284,2,1,0,1,1,,0.0,217.0,11,0.0,4.0,2.0,1.0,1.0,2,2,365.710112176381,1100.0,8252.397025615765,0,7,2,3,37.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.14056521958399656,8252.397025615765,1,1,1_1,1_0_1,1_2_1,1_1_0 -31371,2,55.0,0.0,2,111,760.0,0.0,0.0,78,43,0.0,344.71244410487947,1050.452412957707,1093.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,122089,2,1,1,0,1,,155.0,,42,1.0,2.0,4.0,2.0,1.5,3,3,2035.21262935821,760.0,56953.12698825483,5,1,0,1,110.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019191220180507458,37968.75132550322,9,5,9,9_1,9_2,9_0_1 -31372,2,82.0,0.0,1,111,291.0,587.0,0.0,0,77,0.0,0.0,402.2127002245958,878.0,0.0,1064.6142527974525,50,0,0,0,0,0,0,0,0,0,,2,,1,108881,2,1,0,0,1,,218.0,276.0,21,0.0,1.0,3.0,3.0,2.0,3,3,381.095374104776,291.0,18073.65896916218,0,5,2,3,60.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04857898455968821,9036.82948458109,1,1,1_0,1_0_0,1_2_0,1_1_0 -31373,2,53.0,0.0,2,111,1080.0,0.0,0.0,52,62,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133335,2,1,1,0,1,,280.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,2294.17417420906,1080.0,51155.69744175915,1,1,0,1,87.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021112017898486907,34103.7982945061,9,5,9,9_1,9_2,9_0_1 -31374,1,72.0,280.0,1,111,145.0,0.0,0.0,0,78,0.0,0.0,200.41526299850995,325.0,309.6588607542345,0.0,41,2,2,2,2,1,2,2,2,0,,2,,1,128606,1,2,0,0,2,,0.0,280.0,11,0.0,3.0,1.0,1.0,1.0,1,1,550.685141684646,145.0,10796.91645135901,0,5,2,3,25.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.030101186895735606,10796.91645135901,2,1,2_1,2_0_1,2_2_1,2_1_0 -31375,1,58.0,265.0,1,111,210.0,240.0,0.0,0,77,0.0,0.0,290.25658779094545,570.0,206.439240502823,435.27669620338776,41,0,0,0,0,0,0,0,0,0,,2,,1,106556,1,1,0,0,2,,0.0,400.0,11,0.0,1.0,3.0,1.0,1.0,1,1,461.85315813068,210.0,7233.032114473626,0,7,2,3,40.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07880512501242792,7233.032114473626,1,1,1_1,1_0_1,1_2_1,1_1_0 -31376,2,69.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1079.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119895,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,434.958902447352,0.0,52849.70248180398,0,5,1,2,110.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02041638740296593,52849.70248180398,10,5,10,10_0,10_2,10_0_1 -31377,2,60.0,0.0,1,111,240.0,0.0,0.0,0,69,0.0,108.69311300604306,331.72181461822333,420.0,129.02452531426437,0.0,41,2,2,2,1,1,1,2,2,2,25.0,1,,1,119383,2,3,3,0,2,,0.0,270.0,12,1.0,6.0,1.0,1.0,1.0,1,1,354.165343794426,240.0,11023.13922099307,0,1,2,3,21.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.03810166882407954,11023.13922099307,2,1,2_0,2_1_0,2_2_0,2_1_0 -31378,1,31.0,300.0,1,111,300.0,720.0,0.0,0,53,0.0,0.0,414.65226827277917,1020.0,0.0,1305.830088610163,50,2,2,1,1,1,2,2,2,0,,1,,1,116089,1,3,4,0,2,,480.0,700.0,22,2.0,2.0,3.0,3.0,2.0,2,2,369.876400598411,300.0,24961.025324974304,0,1,2,3,80.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0.040863705986446695,12480.512662487152,2,1,2_1,2_1_1,2_2_1,2_1_0 -31379,1,65.0,320.0,2,111,537.0,0.0,0.0,77,90,0.0,0.0,742.2275602082747,633.0,165.1513924022584,0.0,31,0,0,0,0,0,0,0,0,0,,8,,2,126691,2,1,0,0,2,,0.0,320.0,41,0.0,2.0,2.0,2.0,1.5,2,2,440.866936914303,537.0,12054.227603473175,6,5,2,3,38.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05251269685812256,8036.151735648783,1,1,1_1,1_0_1,1_2_1,1_0_1 -31381,1,77.0,80.0,2,111,300.0,800.0,0.0,0,86,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,71,1,2,2,1,2,2,2,2,0,,2,,2,108152,2,1,0,0,1,,300.0,329.0,11,0.0,8.0,3.0,1.0,1.0,1,1,367.499424085761,300.0,11889.696358252348,0,6,2,3,60.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.09251708091237476,11889.696358252348,2,1,2_1,2_0_1,2_2_1,2_0_1 -31382,2,84.0,0.0,2,111,2170.0,160.0,0.0,77,75,0.0,0.0,2999.318073839769,2330.0,0.0,290.18446413559184,31,0,0,0,0,0,0,0,0,0,,1,,2,113635,2,1,2,0,1,,285.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2368.36129275174,2170.0,27547.627046693582,5,5,0,1,90.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08458078788603533,18365.084697795723,4,2,4_0,4_1_0,4_2_0,4_0_1 -31383,0,81.0,0.0,2,111,729.0,1338.0,0.0,0,86,0.0,0.0,1007.6050119028533,2067.0,0.0,2426.6675813338866,70,0,0,0,0,0,0,0,0,0,,1,,2,125447,2,1,3,0,1,,233.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,2768.10264201406,729.0,11517.660004474426,0,5,0,1,100.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1794635367945402,11517.660004474426,2,1,2_0,2_1_0,2_2_0,2_0_1 -31384,1,63.0,144.0,2,111,1000.0,2500.0,0.0,86,86,0.0,0.0,1382.1742275759307,3500.0,0.0,4534.132252118622,71,2,2,2,2,2,2,2,1,0,,2,,2,123943,1,3,0,0,1,,350.0,241.0,41,0.0,0.0,4.0,2.0,1.5,2,2,396.490410224216,1000.0,21913.12335707459,7,5,2,3,90.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.1597216399947858,14608.748904716393,3,2,3_1,3_0_1,3_2_1,3_0_1 -31385,1,61.0,242.0,2,111,0.0,0.0,1500.0,0,77,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,50,0,0,0,0,0,0,0,0,0,,2,,2,110481,1,1,0,0,1,,360.0,241.0,11,0.0,3.0,4.0,1.0,1.0,2,2,382.56114306407,0.0,9506.230386267216,0,5,2,3,80.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.15779125258387522,9506.230386267216,1,1,1_1,1_0_1,1_2_1,1_0_1 -31386,2,41.0,0.0,1,111,1554.0,0.0,0.0,43,47,0.0,0.0,2147.8987496529962,1654.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121575,2,1,1,0,2,,520.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1995.52835975439,1554.0,42642.63142149229,1,1,1,2,70.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038787474995418986,20306.014962615376,5,3,5,5_1,5_2,5_1_0 -31387,2,65.0,0.0,2,111,504.0,0.0,0.0,0,77,0.0,362.31037668681023,696.615810698269,904.0,86.01635020950958,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,107273,2,1,2,0,1,,204.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2366.74747124776,504.0,12194.579551106788,0,5,0,1,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07413129712356113,12194.579551106788,2,1,2_0,2_1_0,2_2_0,2_0_1 -31388,1,44.0,231.0,2,111,400.0,600.0,0.0,0,81,0.0,0.0,552.8696910303722,1000.0,0.0,1088.1917405084694,12,0,0,0,0,0,0,0,0,0,,2,,2,131728,2,2,0,0,1,,193.0,292.0,12,1.0,0.0,3.0,1.0,1.0,2,2,382.56114306407,400.0,5052.906418848841,0,4,2,3,60.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.19790590149655318,5052.906418848841,1,1,1_1,1_0_1,1_2_1,1_0_1 -31389,1,85.0,86.0,2,111,759.0,0.0,0.0,0,77,0.0,0.0,1049.0702387301312,793.0,58.49111814246652,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107601,2,1,3,0,1,,0.0,547.0,11,0.0,3.0,3.0,1.0,1.0,2,2,2792.81169388879,759.0,15329.424430318013,0,5,2,3,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.051730578901033726,15329.424430318013,3,2,3_1,3_1_1,3_2_1,3_0_1 -31390,2,77.0,0.0,2,111,1570.0,0.0,0.0,77,75,0.0,0.0,2170.013537294211,1570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101918,2,1,2,0,1,,371.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,2204.52188491195,1570.0,34775.0,5,5,0,1,95.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04514737598849748,17387.5,4,2,4_0,4_1_0,4_2_0,4_0_1 -31391,1,64.0,80.0,2,111,450.0,600.0,0.0,0,81,0.0,0.0,621.9784024091688,1050.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,,2,102113,2,1,0,0,1,,160.0,258.0,12,1.0,2.0,4.0,1.0,1.0,2,2,396.669048977497,450.0,16084.760052224936,0,4,2,3,60.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0652791833133226,16084.760052224936,4,2,4_1,4_0_1,4_2_1,4_0_1 -31392,2,81.0,0.0,5,111,240.0,411.0,0.0,0,77,0.0,0.0,331.72181461822333,651.0,0.0,745.4113422483015,31,0,0,0,0,0,0,0,0,0,,2,,3,123810,2,1,0,0,1,,160.0,241.0,11,0.0,1.0,4.0,1.0,1.0,2,2,364.663255971927,240.0,11052.797396974813,0,5,2,3,60.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05889911636109252,11052.797396974813,2,1,2_0,2_0_0,2_2_0,2_0_0 -31393,2,68.0,0.0,1,111,0.0,0.0,356.0,78,75,0.0,0.0,181.88514720215892,416.0,103.2196202514115,406.99549577633684,50,0,0,0,0,0,0,0,0,0,,1,,1,101578,2,1,1,0,1,,60.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2330.07554697259,0.0,25595.48620122429,6,5,0,1,110.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01625286570958366,17063.65746748286,4,2,4_0,4_1_0,4_2_0,4_1_0 -31394,2,66.0,0.0,2,111,600.0,1400.0,0.0,86,77,0.0,0.0,829.3045365455583,2000.0,0.0,2539.1140611864284,43,0,0,0,0,0,0,0,0,0,,1,,2,106980,2,2,2,0,1,,200.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,2247.18615695669,600.0,30718.44057433902,6,5,0,1,125.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0651074716882185,20478.96038289268,5,3,5,5_1,5_2,5_0_1 -31395,2,79.0,0.0,5,111,1000.0,0.0,0.0,77,77,0.0,0.0,1382.1742275759307,1070.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,122944,2,1,1,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2428.9222923679,1000.0,29435.000207892692,5,5,0,1,85.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03635128223009458,19623.33347192846,5,3,5,5_1,5_2,5_0_0 -31396,2,47.0,0.0,2,111,1300.0,0.0,0.0,0,43,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,1,,2,112074,2,1,1,0,1,,50.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,1307.99026273208,1300.0,30668.714149499196,0,1,1,2,80.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.042388474249782926,23591.31857653784,6,3,6,6_1,6_2,6_0_1 -31397,1,43.0,61.0,1,111,1200.0,900.0,0.0,0,47,0.0,0.0,1658.6090730911167,2100.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,2,,1,116137,1,3,0,0,2,,0.0,580.0,32,1.0,0.0,5.0,3.0,1.8,4,3,2131.78288235131,1200.0,15543.946568563133,0,4,2,3,65.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.13510082466747195,8635.525871423963,1,1,1_1,1_0_1,1_2_1,1_1_0 -31399,2,70.0,0.0,2,111,500.0,1200.0,0.0,75,74,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,0,,2,,2,114141,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1631.54990566898,500.0,43393.81193343645,5,5,0,1,76.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.039176092725103286,28929.2079556243,8,4,8,8_0,8_2,8_0_1 -31400,2,84.0,0.0,5,111,600.0,0.0,0.0,0,86,0.0,0.0,829.3045365455583,600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,109132,2,1,0,0,1,800.0,0.0,546.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1987.47319469452,600.0,8833.599728607867,0,5,2,3,44.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06792247989875325,8833.599728607867,1,1,1_0,1_0_0,1_2_0,1_0_0 -31401,2,26.0,0.0,9,111,0.0,0.0,500.0,0,52,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,71,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,111210,2,1,0,0,1,,0.0,460.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1812.83078811796,0.0,16928.0,0,1,2,3,35.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02953686200378072,16928.0,4,2,4_0,4_0_0,4_2_0,4_0_0 -31402,2,59.0,0.0,9,111,600.0,0.0,0.0,0,43,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,2006.0,6,108299,2,1,0,0,1,,100.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1785.30730517749,600.0,35345.019230859274,0,1,0,1,64.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016975517712440453,35345.019230859274,9,5,9,9_0,9_2,9_0_0 -31403,2,52.0,0.0,1,111,400.0,1000.0,0.0,85,63,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,10,0,0,0,0,0,0,0,0,2,3.0,2,,1,129141,1,1,0,0,2,,0.0,484.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1892.47667682993,400.0,21385.81422718085,7,1,2,3,70.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06546395592554217,14257.209484787234,3,2,3_0,3_0_0,3_2_0,3_1_0 -31404,2,74.0,0.0,7,111,0.0,0.0,500.0,0,77,0.0,0.0,255.45666741876252,500.0,0.0,571.6228873263158,71,0,0,0,0,0,0,0,0,0,,2,,5,123510,2,2,0,1,1,534.0,0.0,360.0,11,0.0,0.0,2.0,1.0,1.0,2,2,1491.96325725076,0.0,12254.307219622986,0,5,2,3,52.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.040801980155952294,12254.307219622986,2,1,2_0,2_0_0,2_2_0,2_0_0 -31405,2,44.0,0.0,7,111,350.0,800.0,0.0,85,67,0.0,0.0,483.76097965157567,1150.0,0.0,1450.922320677959,41,0,0,0,0,0,0,0,0,2,25.0,2,,5,128221,2,1,0,0,1,,0.0,810.0,42,1.0,0.0,3.0,2.0,1.5,1,1,1864.31600519931,350.0,38171.15007949571,7,1,2,3,72.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030127465313594056,25447.433386330475,7,4,7,7_0,7_2,7_0_0 -31406,2,38.0,0.0,2,111,96.0,688.0,0.0,56,52,0.0,0.0,132.68872584728933,784.0,0.0,1247.793195783045,71,0,0,0,0,0,0,0,0,2,20.0,8,,2,122984,2,3,0,0,1,,0.0,623.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1937.03797006967,96.0,28775.61183216263,1,1,2,3,65.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027245293847191796,19183.741221441753,5,3,5,5_0,5_2,5_0_1 -31407,2,87.0,0.0,1,111,245.0,837.0,0.0,75,78,0.0,0.0,338.632685756103,1082.0,0.0,1518.0274780093148,10,0,0,0,0,0,0,0,0,0,,1,,1,130347,2,2,2,0,1,,255.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1253.19882530704,245.0,15005.025903600344,5,5,0,1,75.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07210917241671554,10003.350602400229,2,1,2_0,2_1_0,2_2_0,2_1_0 -31408,2,83.0,0.0,7,111,200.0,873.0,0.0,77,75,0.0,0.0,276.4348455151861,1073.0,0.0,1583.318982439823,10,0,0,0,0,0,0,0,0,0,,8,,5,112431,2,1,0,0,1,,672.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1551.48664148247,200.0,37529.70546939882,5,5,0,1,104.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028590685340573983,25019.80364626588,7,4,7,7_0,7_2,7_0_0 -31409,2,60.0,0.0,8,111,288.0,414.0,0.0,0,52,0.0,0.0,398.066177541868,702.0,0.0,750.8523009508439,50,0,0,0,0,0,0,0,0,1,20.0,2,2003.0,6,126096,2,1,0,0,1,,88.0,378.0,12,1.0,2.0,2.0,1.0,1.0,3,2,1585.47594216374,288.0,24021.197866749837,0,1,2,3,55.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029224187898294157,24021.197866749837,6,3,6,6_0,6_2,6_0_0 -31410,2,54.0,0.0,2,111,320.0,700.0,0.0,67,21,0.0,0.0,442.2957528242978,1020.0,0.0,1269.5570305932142,30,0,0,0,0,0,0,0,0,2,30.0,2,,2,120623,2,2,0,0,1,,320.0,,43,2.0,1.0,3.0,3.0,2.0,2,2,1887.52353095059,320.0,50388.37869234164,1,1,0,1,65.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02024276284473956,25194.18934617082,7,4,7,7_0,7_2,7_0_1 -31412,2,52.0,0.0,2,111,300.0,0.0,0.0,63,52,0.0,621.1035028916747,414.65226827277917,1000.0,172.03270041901916,0.0,20,2,2,2,2,2,2,2,1,2,45.0,1,,2,113839,1,3,4,0,2,,0.0,630.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1448.28152579456,300.0,30403.925850076943,1,1,2,3,48.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0.032890489370716224,20269.283900051294,5,3,5,5_1,5_2,5_0_1 -31413,2,57.0,0.0,7,111,800.0,0.0,0.0,0,77,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,132090,2,1,0,0,1,,100.0,300.0,11,0.0,0.0,1.0,1.0,1.0,4,3,2585.95326878459,800.0,5369.789365833811,0,7,2,3,25.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.1489816351252313,5369.789365833811,1,1,1_0,1_0_0,1_2_0,1_0_0 -31414,2,93.0,0.0,5,111,640.0,0.0,0.0,0,72,0.0,0.0,884.5915056485956,640.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,115510,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,2,2112.82192261071,640.0,44493.54646340253,0,5,0,1,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014384108502711107,44493.54646340253,10,5,10,10_0,10_2,10_0_0 -31415,2,84.0,0.0,1,111,600.0,600.0,0.0,0,78,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,50,2,2,2,2,2,2,2,1,0,,2,,1,103602,1,2,0,0,2,,80.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,528.151152217989,600.0,12137.0929946561,0,5,0,1,59.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.09887046268232055,12137.0929946561,2,1,2_0,2_0_0,2_2_0,2_1_0 -31416,1,24.0,362.0,2,111,700.0,0.0,0.0,0,81,0.0,0.0,967.5219593031513,700.0,0.0,0.0,42,2,2,2,2,2,2,2,1,0,,2,,2,105175,2,2,0,0,2,,0.0,490.0,32,1.0,0.0,3.0,2.0,1.3,1,1,525.122107982801,700.0,26195.475965231628,0,4,2,3,58.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.02672217145163105,20150.366127101253,5,3,5,5_0,5_2,5_0_1 -31417,1,72.0,102.0,2,111,0.0,0.0,200.0,86,78,0.0,0.0,102.18266696750501,200.0,0.0,228.6491549305263,42,1,2,2,2,2,2,2,1,0,,2,,2,105246,2,2,0,1,1,700.0,0.0,338.0,41,0.0,0.0,3.0,2.0,1.5,1,1,472.22920338489,0.0,15090.16462479494,6,5,2,3,72.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.01325366587925596,10060.109749863293,2,1,2_1,2_0_1,2_2_1,2_0_1 -31418,2,56.0,0.0,5,111,400.0,1300.0,0.0,64,54,0.0,0.0,552.8696910303722,1700.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,112559,2,1,2,0,1,,270.0,830.0,43,2.0,1.0,4.0,2.0,1.5,3,2,390.480627539271,400.0,55925.704284055726,1,1,2,3,115.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03039747146259302,37283.80285603715,9,5,9,9_1,9_2,9_0_0 -31419,2,75.0,0.0,2,111,654.0,1404.0,0.0,77,74,0.0,0.0,903.9419448346586,2058.0,0.0,2546.3686727898184,50,0,0,0,0,0,0,0,0,0,,1,,2,124731,2,1,3,0,1,,320.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1350.59158791805,654.0,53449.899185722825,5,5,0,1,126.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03850334671070285,35633.266123815214,9,5,9,9_1,9_2,9_0_1 -31420,1,67.0,179.0,9,111,540.0,660.0,0.0,86,78,0.0,0.0,746.3740828910024,1200.0,0.0,1197.0109145593162,10,0,0,0,0,0,0,0,0,0,,8,2005.0,6,126094,2,1,0,0,1,,480.0,214.0,41,2.0,3.0,3.0,4.0,2.5,2,2,449.702326043855,540.0,9410.323825272093,6,5,2,3,61.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.12751952241827372,3764.129530108837,1,1,1_1,1_0_1,1_2_1,1_0_0 -31421,1,73.0,251.0,2,111,240.0,378.0,0.0,81,78,0.0,331.2552015422265,331.72181461822333,938.0,0.0,685.5607965203357,70,2,2,2,1,2,2,2,2,0,,2,,2,112175,2,2,0,3,1,,400.0,254.0,42,1.0,1.0,3.0,3.0,2.0,1,1,497.669556067067,240.0,9142.46438673558,4,5,2,3,55.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.10259815738094698,4571.23219336779,1,1,1_1,1_0_1,1_2_1,1_0_1 -31422,2,54.0,0.0,6,111,300.0,0.0,0.0,0,56,2987.1697540360015,0.0,414.65226827277917,2600.0,516.0981012570575,0.0,12,2,2,2,1,2,2,2,2,0,,1,,4,131583,1,2,2,0,2,,300.0,,12,1.0,4.0,5.0,1.0,1.0,2,2,708.985873800917,300.0,9649.480838517124,0,1,0,1,90.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.2694445476923247,9649.480838517124,1,1,1_0,1_1_0,1_2_0,1_0_0 -31423,2,44.0,0.0,9,111,1500.0,0.0,0.0,43,43,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,122042,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,774.319242099196,1500.0,74861.64615188872,1,1,1,2,120.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020036962544967438,31192.352563286968,8,4,8,8_1,8_2,8_0_0 -31424,2,73.0,0.0,7,111,750.0,0.0,0.0,86,77,0.0,414.0690019277831,1036.630670681948,1255.0,180.63433543997013,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,116688,2,2,2,0,1,,520.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,745.765776368709,750.0,32935.2974967758,6,5,0,1,96.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03810501484381182,21956.86499785053,6,3,6,6_1,6_2,6_0_0 -31425,2,34.0,0.0,1,111,900.0,0.0,0.0,52,52,0.0,310.55175144583734,1243.9568048183376,1270.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,128473,2,1,2,0,1,,394.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,682.784790426769,900.0,42683.12468652965,1,1,1,2,60.0,7,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02975414778854742,28455.41645768643,8,4,8,8_1,8_2,8_1_0 -31426,2,73.0,0.0,5,111,1340.0,0.0,0.0,75,78,0.0,491.7069397892424,1852.113464951747,1815.0,0.0,0.0,71,2,2,1,2,2,2,2,1,0,,1,,3,125839,2,1,2,0,1,,800.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,736.690614449186,1340.0,36077.216117690194,5,5,0,1,90.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.050308759802284976,24051.47741179346,6,3,6,6_1,6_2,6_0_0 -31427,2,65.0,0.0,6,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,1249.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,117314,2,1,2,0,1,,120.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,761.006516854737,0.0,47933.16928566207,5,5,0,1,100.0,7,5,9,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026057112822156014,31955.44619044138,8,4,8,8_1,8_2,8_0_0 -31428,2,66.0,0.0,2,111,1019.0,0.0,0.0,77,77,0.0,0.0,1408.4355378998732,1159.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,109072,2,2,2,0,1,,163.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,724.000582576207,1019.0,35194.81246914476,5,5,0,1,90.0,7,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0329309895035268,23463.208312763174,6,3,6,6_1,6_2,6_0_1 -31429,2,67.0,0.0,1,111,750.0,0.0,0.0,62,67,1194.8679016144006,0.0,1036.630670681948,1628.0,134.18550632683494,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122046,1,1,2,0,1,,482.0,,41,0.0,0.0,3.0,2.0,1.5,3,3,682.784790426769,750.0,29291.842735831447,5,5,0,1,50.0,7,5,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055578613291151456,19527.895157220966,5,3,5,5_1,5_2,5_1_0 -31430,2,64.0,0.0,6,111,1000.0,0.0,0.0,0,77,2091.018827825201,0.0,1382.1742275759307,2400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,112725,2,1,1,0,1,,800.0,,21,1.0,3.0,3.0,5.0,2.5999999999999996,2,2,712.202050843195,1000.0,52995.501409915276,0,5,0,1,150.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04528686277418574,20382.885157659723,5,3,5,5_1,5_2,5_0_0 -31431,0,34.0,0.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113401,2,2,2,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,788.416356024187,0.0,37685.58834689558,0,1,5,0,40.0,7,5,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.009552723356371738,37685.58834689558,9,5,9,9_1,9_2,9_1_0 -31432,2,61.0,0.0,5,111,4800.0,0.0,0.0,86,78,2987.1697540360015,0.0,6634.436292364467,6910.0,189.2359704609211,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,102757,2,1,2,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,736.690614449186,4800.0,20505.842034786787,6,5,0,1,80.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.3369771398939701,13670.561356524524,3,2,3_0,3_1_0,3_2_0,3_0_0 -31433,2,86.0,0.0,2,111,2000.0,1600.0,0.0,86,78,0.0,0.0,2764.3484551518613,3600.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,0,,1,,2,115948,2,2,2,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,3,2,705.060923274378,2000.0,35982.14490146565,6,5,0,1,77.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10004962210725138,23988.096600977096,6,3,6,6_1,6_2,6_0_1 -31434,2,59.0,0.0,9,111,1632.0,0.0,0.0,54,64,0.0,0.0,2255.7083394039187,1710.0,134.18550632683494,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122146,2,1,1,0,1,,170.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,741.273332597332,1632.0,52704.03716324357,1,1,1,2,100.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0324453323130353,35136.024775495716,9,5,9,9_1,9_2,9_0_0 -31435,2,71.0,0.0,2,111,826.0,1954.0,0.0,21,72,0.0,258.79312620486445,1141.6759119777187,3030.0,0.0,3543.8777682559153,20,0,0,0,0,0,0,0,0,0,,1,,2,117577,2,2,3,0,1,,550.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,784.552238679299,826.0,7849.17184000757,5,5,0,1,150.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.38602798636105257,5232.781226671713,1,1,1_0,1_1_0,1_2_0,1_0_1 -31436,2,68.0,0.0,1,111,1000.0,0.0,0.0,0,78,0.0,414.0690019277831,1382.1742275759307,1480.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,129638,2,1,1,0,1,,160.0,,11,0.0,2.0,1.0,1.0,1.0,2,2,904.241492940383,1000.0,17345.48961064012,0,5,0,1,55.0,7,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0853247750984287,17345.48961064012,4,2,4_0,4_1_0,4_2_0,4_1_0 -31437,2,49.0,0.0,7,111,800.0,0.0,0.0,56,62,1642.9433647198007,0.0,1105.7393820607444,2040.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,128856,2,1,1,0,1,,600.0,,43,3.0,0.0,5.0,3.0,2.0,3,2,780.333034466405,800.0,78183.60523739705,1,1,0,1,90.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02609242684327149,39091.80261869852,9,5,9,9_1,9_2,9_0_0 -31438,2,79.0,0.0,2,111,0.0,0.0,1500.0,77,78,0.0,0.0,766.3700022562875,1500.0,0.0,1714.868661978947,50,0,0,0,0,0,0,0,0,0,,1,,2,118442,2,1,2,0,1,,344.0,,41,1.0,3.0,4.0,3.0,2.0,2,2,929.681966130606,0.0,46013.28619044046,5,5,0,1,110.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03259927999473409,23006.64309522023,6,3,6,6_1,6_2,6_0_1 -31439,2,53.0,0.0,6,111,717.0,0.0,0.0,75,52,0.0,1242.2070057833494,991.0189211719422,2022.0,180.63433543997013,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,4,114112,2,1,2,0,2,,420.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,703.189491669598,717.0,36561.49138758216,5,1,1,2,80.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05530408972011348,24374.327591721438,7,4,7,7_1,7_2,7_0_0 -31440,2,38.0,0.0,6,111,1040.0,0.0,0.0,0,63,2091.018827825201,0.0,1437.4611966789678,2580.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129278,2,1,2,0,1,,472.0,,22,1.0,1.0,4.0,3.0,2.0,2,2,770.073145878367,1040.0,41650.72969189223,0,1,0,1,98.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06194369268162486,20825.364845946115,5,3,5,5_1,5_2,5_0_0 -31441,2,45.0,0.0,2,222,1300.0,0.0,0.0,85,22,0.0,0.0,1796.8264958487098,1370.0,120.42289029331342,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,131740,2,3,3,0,2,,600.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1194.7131810066,1300.0,53253.188384118606,6,1,0,1,100.0,1,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025726159157234,25358.661135294573,7,4,7,7_1,7_0,7_0_1 -31442,1,29.0,410.0,6,222,240.0,0.0,0.0,0,56,0.0,0.0,331.72181461822333,345.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,133582,2,2,0,0,1,,400.0,450.0,32,1.0,0.0,3.0,3.0,1.6,2,2,1640.26754771763,240.0,12728.192109569096,0,1,2,3,60.0,1,0,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.027105184855013925,7955.1200684806845,1,1,1_1,1_0_1,1_0_1,1_0_0 -31443,2,55.0,0.0,1,222,600.0,0.0,0.0,77,47,2240.377315527001,0.0,829.3045365455583,2240.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,107769,2,1,1,0,1,,260.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1145.61192361132,600.0,16905.756333800906,5,1,0,1,100.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13249924793494186,11270.504222533937,2,1,2_0,2_1_0,2_0_0,2_1_0 -31444,2,77.0,0.0,1,222,600.0,0.0,0.0,78,78,1941.6603401234008,0.0,829.3045365455583,2040.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102731,2,1,2,0,1,,160.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1085.98670507325,600.0,20743.0,5,5,0,1,80.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09834643012100468,13828.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0 -31445,2,34.0,0.0,1,222,1600.0,0.0,0.0,55,63,0.0,0.0,2211.478764121489,1749.0,256.3287236243386,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,127988,2,1,0,0,2,,250.0,430.0,43,2.0,0.0,3.0,2.0,1.5,3,3,1917.89562163712,1600.0,24706.196009632797,1,1,2,3,77.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.07079195839448839,16470.797339755198,4,2,4_0,4_0_0,4_0_0,4_1_0 -31446,0,50.0,0.0,1,222,800.0,0.0,0.0,11,52,0.0,0.0,1105.7393820607444,1356.0,602.1144514665671,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,104011,2,2,0,0,1,,129.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,1715.04540268739,800.0,65804.42593984395,1,1,5,0,90.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.020606516668644853,32902.21296992197,8,4,8,8_0,8_0,8_1_0 -31447,0,51.0,0.0,1,222,600.0,0.0,0.0,0,85,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,133414,2,2,0,0,1,,157.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1766.95163803909,600.0,12020.0,0,7,5,0,40.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04991680532445923,12020.0,2,1,2_0,2_0_0,2_0_0,2_1_0 -31448,2,65.0,0.0,1,222,350.0,0.0,0.0,0,90,0.0,0.0,483.76097965157567,350.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,106337,2,1,2,0,1,,100.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1185.52691821383,350.0,7963.561143833095,0,5,0,1,40.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04395018681699162,7963.561143833095,1,1,1_0,1_1_0,1_0_0,1_1_0 -31449,1,67.0,600.0,1,222,571.0,0.0,0.0,0,78,0.0,0.0,789.2214839458563,641.0,120.42289029331342,0.0,43,0,0,0,0,0,0,0,0,0,,8,,1,100915,2,1,0,0,1,,0.0,54.0,21,0.0,0.0,3.0,2.0,1.5,1,1,1881.83465481469,571.0,4962.766285386849,0,5,2,3,30.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.1291618349805151,3308.510856924566,1,1,1_1,1_0_1,1_0_1,1_1_0 -31450,2,62.0,0.0,1,222,300.0,0.0,0.0,75,77,1792.3018524216009,0.0,414.65226827277917,1500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,112258,2,1,1,0,1,,340.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1000.87712674951,300.0,42139.10777344851,5,5,0,1,50.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03559638728148718,28092.73851563234,8,4,8,8_1,8_0,8_1_0 -31451,2,50.0,0.0,7,222,1300.0,0.0,0.0,62,43,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,115360,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1083.35740600588,1300.0,40755.39939456525,1,1,0,1,74.0,1,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03189761404162207,19407.333045031068,5,3,5,5_1,5_0,5_0_0 -31452,2,66.0,0.0,6,222,1800.0,0.0,0.0,78,72,0.0,0.0,2487.913609636675,3800.0,3440.6540083803834,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,106069,1,1,2,0,1,,300.0,,41,0.0,0.0,5.0,3.0,2.0,1,1,1279.02903889533,1800.0,37581.28576278013,6,5,0,1,140.0,1,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10111415623154267,18790.642881390064,5,3,5,5_1,5_0,5_0_0 -31453,2,62.0,0.0,1,222,420.0,0.0,0.0,77,74,3733.962192545002,0.0,580.5131755818909,3065.0,249.4474156075778,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118721,2,2,1,0,1,,472.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1077.53011917163,420.0,64040.87342155044,5,5,0,1,80.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047860059306570835,42693.91561436696,9,5,9,9_1,9_0,9_1_0 -31454,2,41.0,0.0,1,222,2200.0,0.0,0.0,0,43,0.0,0.0,3040.783300667047,2300.0,172.03270041901916,0.0,71,2,2,2,2,2,1,2,1,0,,1,,1,126634,2,1,1,0,1,,0.0,430.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1380.10261536111,2200.0,15513.567300711937,0,4,2,3,60.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.14825732569545433,15513.567300711937,3,2,3_0,3_1_0,3_0_0,3_1_0 -31455,2,65.0,0.0,1,222,2000.0,0.0,0.0,72,72,0.0,517.5862524097289,2764.3484551518613,2590.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,120977,2,1,1,0,1,,200.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1124.16391286817,2000.0,57274.12926309437,5,5,0,1,170.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.045221115245638724,38182.75284206292,9,5,9,9_1,9_0,9_1_0 -31456,1,58.0,250.0,1,222,120.0,0.0,0.0,0,78,0.0,227.73795106028072,165.86090730911167,400.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131152,2,3,3,0,2,,136.0,300.0,11,0.0,0.0,2.0,1.0,1.0,3,2,1341.11728279464,120.0,4839.267902296582,0,7,2,3,70.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08265713080488292,4839.267902296582,1,1,1_1,1_1_1,1_0_1,1_1_0 -31457,2,79.0,0.0,1,222,500.0,0.0,0.0,0,72,746.7924385090004,207.03450096389156,691.0871137879653,1315.0,197.83760548187203,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103784,2,1,2,0,2,,160.0,,21,0.0,0.0,5.0,2.0,1.5,5,5,991.352435264272,500.0,8421.692342297572,0,5,0,1,90.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15614438839037986,5614.461561531715,1,1,1_0,1_1_0,1_0_0,1_1_0 -31458,1,57.0,237.0,1,222,480.0,0.0,0.0,0,42,0.0,869.5449040483445,663.4436292364467,1383.0,108.38060126398207,0.0,71,2,2,2,2,1,1,2,2,0,,1,,1,105635,1,2,3,0,1,,120.0,300.0,12,1.0,3.0,2.0,1.0,1.0,4,4,1717.58004632147,480.0,5494.075892719216,0,4,3,4,35.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0.2517256818080653,5494.075892719216,1,1,1_1,1_1_1,1_0_1,1_1_0 -31459,2,72.0,0.0,2,222,300.0,0.0,0.0,75,74,896.1509262108004,217.38622601208613,414.65226827277917,1370.0,447.28502108944986,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100883,1,2,2,0,1,,80.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1057.43718825353,300.0,48844.818744245415,5,5,0,1,80.0,1,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028048010725014814,32563.21249616361,8,4,8,8_1,8_0,8_0_1 -31460,2,89.0,0.0,1,222,1200.0,0.0,0.0,0,77,0.0,1138.6897553014035,1658.6090730911167,2468.0,289.01493670395223,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,101457,2,3,2,0,2,,0.0,,11,0.0,1.0,6.0,1.0,1.0,3,2,1229.34268899721,1200.0,20743.199028144085,0,5,0,1,104.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.11897875523690689,20743.199028144085,5,3,5,5_1,5_0,5_1_0 -31461,2,66.0,0.0,6,222,676.0,0.0,0.0,0,86,2987.1697540360015,0.0,934.3497778413291,2676.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,128514,2,1,1,0,1,,92.0,,11,0.0,4.0,6.0,1.0,1.0,3,3,1271.35371316655,676.0,18855.415492424352,0,5,0,1,185.0,1,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1419220913522246,18855.415492424352,5,3,5,5_1,5_0,5_0_0 -31462,2,80.0,0.0,1,222,700.0,0.0,0.0,0,74,0.0,434.77245202417225,967.5219593031513,1708.0,1011.5522784638327,0.0,71,2,2,2,2,1,2,1,2,0,,1,,1,110914,2,1,2,0,2,,184.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1218.20561270887,700.0,44237.337958946555,0,5,0,1,125.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.0386099182004367,44237.337958946555,10,5,10,10_1,10_0,10_1_0 -31463,2,70.0,0.0,1,222,110.0,0.0,0.0,85,74,0.0,155.27587572291867,152.03916503335236,560.0,516.0981012570575,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,100378,2,1,1,0,2,,112.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1124.16391286817,110.0,5836.614510174148,7,5,0,1,150.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0959460315605615,3891.0763401160984,1,1,1_0,1_1_0,1_0_0,1_1_0 -31464,2,63.0,0.0,6,222,340.0,0.0,0.0,72,72,1829.641474347051,0.0,469.9392373758164,1565.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124192,2,1,2,0,1,,213.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1121.15085452919,340.0,44275.430354652344,5,5,0,1,170.0,1,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035346917860857203,29516.95356976823,8,4,8,8_1,8_0,8_0_0 -31465,2,44.0,0.0,1,222,800.0,0.0,0.0,0,42,0.0,745.3242034700096,1105.7393820607444,1675.0,266.6506856494797,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,110020,2,2,1,0,1,,130.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,1288.65844576152,800.0,25995.44844063159,0,1,0,1,70.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0644343568000131,16247.155275394744,4,2,4_0,4_1_0,4_0_0,4_1_0 -31466,2,63.0,0.0,1,400,750.0,0.0,0.0,56,72,0.0,0.0,1036.630670681948,855.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122935,1,1,1,0,2,,0.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1085.98670507325,750.0,32002.945203241394,4,5,0,1,140.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026716291096652005,21335.29680216093,6,3,6,6_1,6_0,6_1_0 -31467,2,66.0,0.0,1,400,800.0,0.0,0.0,11,71,0.0,0.0,1105.7393820607444,940.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,128070,1,2,3,0,2,,0.0,,42,1.0,0.0,2.0,2.0,1.5,1,1,1182.68427560274,800.0,12063.364688016798,1,5,0,1,60.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07792187538968738,8042.243125344532,1,1,1_0,1_1_0,1_0_0,1_1_0 -31468,2,60.0,0.0,1,400,1500.0,0.0,0.0,77,35,0.0,310.55175144583734,2073.261341363896,2100.0,516.0981012570575,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,114001,2,1,2,0,2,,0.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,1186.74873260154,1500.0,27779.657193274725,6,1,0,1,280.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07559488532883683,18519.77146218315,4,2,4_0,4_1_0,4_0_0,4_1_0 -31469,2,82.0,0.0,1,400,1265.0,0.0,0.0,0,74,0.0,0.0,1748.4503978835521,1405.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121282,2,1,2,0,1,,187.0,,11,0.0,5.0,2.0,1.0,1.0,10,9,1191.93379576219,1265.0,44474.23441687007,0,5,0,1,50.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03159132514413901,44474.23441687007,10,5,10,10_1,10_0,10_1_0 -31470,2,52.0,0.0,6,400,690.0,0.0,0.0,56,62,0.0,434.77245202417225,953.7002170273921,1250.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,131210,2,2,3,0,2,,85.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1015.01516556139,690.0,23829.605116227463,4,1,0,1,45.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052455758033051754,15886.40341081831,3,2,3_0,3_1_0,3_0_0,3_0_0 -31471,2,79.0,0.0,7,120,1200.0,0.0,0.0,77,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,133030,2,1,1,0,1,,360.0,700.0,41,0.0,4.0,4.0,2.0,1.5,1,1,1149.84659068198,1200.0,35249.18240232779,5,5,2,3,90.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034043342801640536,23499.45493488519,6,3,6,6_1,6_1,6_0_0 -31472,2,63.0,0.0,6,120,300.0,0.0,0.0,86,86,1493.5848770180007,0.0,414.65226827277917,1350.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,101233,2,1,2,0,1,,230.0,,41,0.0,0.0,5.0,2.0,1.5,3,2,1068.67535942901,300.0,53434.32664473781,5,5,0,1,100.0,0,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025264658221962406,35622.88442982521,9,5,9,9_1,9_1,9_0_0 -31473,2,60.0,0.0,2,120,800.0,0.0,0.0,52,52,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,126898,2,1,1,0,1,,180.0,,43,2.0,1.0,3.0,2.0,1.5,1,1,978.419442496699,800.0,35200.327362649055,1,1,0,1,80.0,0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022727061363891667,23466.884908432705,6,3,6,6_1,6_1,6_0_1 -31474,2,44.0,0.0,9,120,700.0,0.0,0.0,54,11,0.0,0.0,967.5219593031513,775.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,129120,2,1,1,0,1,,340.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1025.40227844358,700.0,27453.309159936107,1,1,1,2,100.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02822974802363693,11936.221373885264,2,1,2_0,2_1_0,2_1_0,2_0_0 -31475,2,63.0,0.0,6,120,280.0,0.0,0.0,77,56,0.0,517.5862524097289,387.00878372126056,780.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,113996,2,2,2,0,2,,180.0,,42,1.0,0.0,5.0,2.0,1.5,3,2,973.394372442468,280.0,55531.07894717854,5,1,0,1,200.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014046188454972039,37020.719298119024,9,5,9,9_1,9_1,9_0_0 -31476,2,64.0,0.0,6,120,400.0,0.0,0.0,75,86,0.0,362.31037668681023,552.8696910303722,750.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,110743,2,1,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,997.300725565818,400.0,22533.839312855827,5,5,0,1,80.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03328327630223741,15022.559541903885,3,2,3_0,3_1_0,3_1_0,3_0_0 -31477,2,38.0,0.0,7,120,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1287.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,132609,2,3,1,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,2,2,1032.84727228303,0.0,12492.986432540021,0,1,1,2,50.0,0,3,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10301780178419137,12492.986432540021,2,1,2_0,2_1_0,2_1_0,2_0_0 -31478,2,41.0,0.0,2,120,1000.0,0.0,0.0,0,63,0.0,0.0,1382.1742275759307,1090.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,101664,2,2,2,0,1,,180.0,,22,3.0,0.0,4.0,3.0,2.0,1,1,1105.32093521789,1000.0,28443.094690157108,0,1,0,1,90.0,0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03832213097322355,14221.547345078554,3,2,3_0,3_1_0,3_1_0,3_0_1 -31479,2,82.0,0.0,5,120,342.0,1000.0,0.0,86,86,0.0,0.0,472.7035858309682,1342.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,3,117624,2,1,2,0,2,,180.0,,41,0.0,1.0,6.0,2.0,1.5,2,1,1007.50471943738,342.0,13434.611585228513,5,5,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09989123924323515,8956.407723485676,1,1,1_0,1_1_0,1_1_0,1_0_0 -31480,2,69.0,0.0,7,120,900.0,1000.0,0.0,72,75,0.0,0.0,1243.9568048183376,1900.0,0.0,1813.6529008474488,12,0,0,0,0,0,0,0,0,0,,1,,5,111074,2,1,1,0,1,,395.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1140.71519568975,900.0,34508.82697925179,5,5,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055058376836232735,23005.884652834528,6,3,6,6_1,6_1,6_0_0 -31481,2,65.0,0.0,2,120,1500.0,0.0,0.0,0,90,0.0,0.0,2073.261341363896,1550.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109897,2,2,1,0,1,,600.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,1063.2365683392,1500.0,26862.138394542813,0,5,0,1,120.0,0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05770203314546584,17908.092263028542,4,2,4_0,4_1_0,4_1_0,4_0_1 -31482,2,66.0,0.0,7,120,1000.0,0.0,0.0,0,72,0.0,0.0,1382.1742275759307,1050.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,124214,2,1,2,0,1,,200.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1116.40734932969,1000.0,14813.73359168655,0,5,0,1,120.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07088017301656206,14813.73359168655,3,2,3_0,3_1_0,3_1_0,3_0_0 -31483,2,39.0,0.0,9,120,1320.0,0.0,0.0,52,46,0.0,0.0,1824.4699804002285,1320.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,114715,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1003.19976504475,1320.0,57497.981561474706,1,1,1,2,100.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022957327616599986,24999.122418032483,7,4,7,7_1,7_1,7_0_0 -31484,2,48.0,0.0,2,120,200.0,1000.0,0.0,52,47,0.0,0.0,276.4348455151861,1200.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,100970,2,1,1,0,1,,200.0,,43,3.0,0.0,3.0,3.0,2.0,1,1,1170.23326109478,200.0,71856.47263572374,1,1,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01669995695563012,35928.23631786187,9,5,9,9_1,9_1,9_0_1 -31485,2,86.0,0.0,6,120,1300.0,0.0,0.0,0,75,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,129744,2,2,2,0,2,,210.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1064.87797017816,1300.0,21286.15920838418,0,5,0,1,100.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061072548940062275,21286.15920838418,6,3,6,6_1,6_1,6_0_0 -31486,2,83.0,0.0,7,120,900.0,600.0,0.0,78,75,0.0,0.0,1243.9568048183376,1500.0,0.0,1088.1917405084694,41,0,0,0,0,0,0,0,0,0,,1,,5,114263,2,1,2,0,1,,250.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1068.67535942901,900.0,59885.64454106885,5,5,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02504773909498992,39923.76302737923,9,5,9,9_1,9_1,9_0_0 -31487,2,64.0,0.0,2,120,280.0,1000.0,0.0,75,78,0.0,103.51725048194578,387.00878372126056,1380.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,2,120057,2,1,1,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1012.0589676836,280.0,63315.55605028613,5,5,0,1,90.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021795591574746403,42210.37070019075,9,5,9,9_1,9_1,9_0_1 -31488,1,37.0,280.0,2,120,230.0,900.0,0.0,85,69,0.0,0.0,317.900072342464,1130.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,2,,2,106701,2,1,0,0,2,,200.0,420.0,42,1.0,0.0,4.0,5.0,2.4,3,1,1197.97612598857,230.0,14986.923711960504,6,4,2,3,86.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07539906265741442,6244.55154665021,1,1,1_1,1_0_1,1_1_1,1_0_1 -31489,1,49.0,289.0,2,120,0.0,800.0,0.0,85,69,0.0,0.0,0.0,988.0,0.0,1450.922320677959,31,0,0,0,0,0,0,0,0,0,,2,,2,123821,2,1,0,0,1,,0.0,390.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1091.14175059742,0.0,17649.302630068647,6,4,2,3,80.0,0,3,9,0,1,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05597954892091717,7353.876095861937,1,1,1_1,1_0_1,1_1_1,1_0_1 -31490,1,65.0,209.0,2,120,200.0,420.0,0.0,0,86,0.0,0.0,276.4348455151861,620.0,0.0,761.7342183559285,31,0,0,0,0,0,0,0,0,0,,2,,2,123492,2,1,0,0,1,,90.0,107.0,11,0.0,2.0,3.0,1.0,1.0,3,2,1397.35875497637,200.0,11391.386929136013,0,6,2,3,70.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05442708634663367,11391.386929136013,2,1,2_1,2_0_1,2_1_1,2_0_1 -31491,1,90.0,120.0,2,120,100.0,800.0,0.0,0,86,0.0,0.0,138.21742275759306,900.0,0.0,1450.922320677959,60,0,0,0,0,0,0,0,0,0,,2,,2,123542,2,1,0,0,1,,280.0,380.0,11,0.0,0.0,3.0,1.0,1.0,2,2,1389.34120450116,100.0,13260.954420897639,0,5,2,3,70.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06786841817220263,13260.954420897639,3,2,3_1,3_0_1,3_1_1,3_0_1 -31492,1,56.0,255.0,2,120,250.0,1000.0,0.0,0,69,0.0,0.0,345.54355689398267,1250.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,0,,2,,2,109958,2,1,0,0,1,,0.0,405.0,22,1.0,0.0,3.0,2.0,1.5,3,2,1252.81481926264,250.0,11817.783653192197,0,4,2,3,67.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10577279434814771,7878.522435461465,1,1,1_1,1_0_1,1_1_1,1_0_1 -31493,1,42.0,352.0,2,120,250.0,850.0,0.0,0,67,0.0,0.0,345.54355689398267,1100.0,0.0,1541.6049657203316,20,0,0,0,0,0,0,0,0,0,,2,,2,128205,2,1,0,0,1,,0.0,331.0,32,1.0,0.0,2.0,2.0,1.3,2,2,1192.02868606141,250.0,8989.668206223334,0,4,2,3,50.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.12236269178861307,6915.129389402565,1,1,1_1,1_0_1,1_1_1,1_0_1 -31494,1,64.0,195.0,2,120,130.0,650.0,0.0,0,86,0.0,0.0,179.68264958487097,780.0,0.0,1178.8743855508417,71,0,0,0,0,0,0,0,0,0,,2,,2,111135,2,1,0,0,1,,90.0,345.0,11,0.0,5.0,3.0,1.0,1.0,5,4,1465.83484959373,130.0,9375.558022613945,0,5,2,3,70.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08319504803006197,9375.558022613945,1,1,1_1,1_0_1,1_1_1,1_0_1 -31495,2,56.0,0.0,2,120,180.0,750.0,0.0,77,69,0.0,0.0,248.7913609636675,930.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,104088,2,1,0,0,1,,210.0,480.0,42,1.0,2.0,3.0,2.0,1.5,1,1,1344.28407385244,180.0,18822.15821740659,5,1,2,3,60.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04940984924565892,12548.105478271062,2,1,2_0,2_0_0,2_1_0,2_0_1 -31496,1,61.0,178.0,2,120,100.0,645.0,0.0,85,69,0.0,0.0,138.21742275759306,745.0,0.0,1169.8061210466046,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,106457,2,2,0,0,1,,120.0,440.0,42,1.0,2.0,4.0,3.0,2.0,2,2,1362.83296590285,100.0,12383.678889847984,6,1,2,3,80.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06015982864435734,6191.839444923992,1,1,1_1,1_0_1,1_1_1,1_0_1 -31497,1,77.0,280.0,2,120,130.0,790.0,0.0,86,86,0.0,0.0,179.68264958487097,920.0,0.0,1432.7857916694845,50,0,0,0,0,0,0,0,0,0,,2,,2,111755,2,1,0,0,1,,160.0,400.0,41,0.0,3.0,5.0,2.0,1.5,2,1,1288.97301996162,130.0,14680.558391775243,6,5,2,3,90.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.062667915991222,9787.038927850163,2,1,2_1,2_0_1,2_1_1,2_0_1 -31498,1,43.0,360.0,2,120,0.0,890.0,0.0,69,69,0.0,0.0,0.0,1155.0,0.0,1614.1510817542296,41,0,0,0,0,0,0,0,0,0,,2,,2,131948,2,1,0,0,1,,0.0,420.0,43,2.0,0.0,4.0,4.0,2.1,3,2,1251.36635754553,0.0,18107.10172384798,4,4,2,3,80.0,0,3,9,0,1,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06378712715126607,8622.42939230856,1,1,1_1,1_0_1,1_1_1,1_0_1 -31499,1,63.0,348.0,5,120,0.0,680.0,0.0,85,78,0.0,0.0,0.0,1236.0,0.0,1233.2839725762653,71,0,0,0,0,0,0,0,0,0,,2,,3,126153,2,1,0,0,2,,0.0,444.0,41,0.0,0.0,4.0,3.0,2.0,3,2,1374.29020624666,0.0,13127.864676232299,6,5,2,3,75.0,0,3,9,0,1,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09415087910204849,6563.932338116149,1,1,1_1,1_0_1,1_1_1,1_0_0 -31500,1,59.0,351.0,5,120,200.0,700.0,0.0,85,52,0.0,0.0,276.4348455151861,900.0,0.0,1269.5570305932142,60,0,0,0,0,0,0,0,0,1,20.0,2,,3,126906,2,1,0,0,1,,0.0,430.0,42,3.0,0.0,4.0,5.0,3.0,2,2,1227.30415060842,200.0,17528.757382465752,6,1,2,3,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05134419858536475,5842.919127488584,1,1,1_1,1_0_1,1_1_1,1_0_0 -31501,1,54.0,220.0,2,120,270.0,990.0,0.0,67,67,0.0,0.0,373.1870414455012,1260.0,0.0,1795.5163718389745,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,122099,2,1,0,0,1,,130.0,390.0,43,3.0,0.0,3.0,3.0,2.0,4,3,1397.59986061133,270.0,16935.22863128524,4,1,2,3,68.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0744011213212878,8467.61431564262,1,1,1_1,1_0_1,1_1_1,1_0_1 -31502,1,48.0,357.0,2,120,300.0,800.0,0.0,85,69,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,2,122493,2,2,0,0,1,,140.0,389.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1163.6931723988,300.0,8093.858159911262,6,4,2,3,60.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.13590551974931817,3372.440899963026,1,1,1_1,1_0_1,1_1_1,1_0_1 -31503,2,73.0,0.0,7,120,260.0,890.0,0.0,81,48,0.0,0.0,359.36529916974195,1150.0,0.0,1614.1510817542296,20,0,0,0,0,0,0,0,0,0,,2,,5,110067,2,1,0,0,1,,400.0,360.0,43,2.0,3.0,2.0,2.0,1.5,1,1,1213.30351925156,260.0,24012.610670379596,4,4,2,3,51.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04789150233541935,16008.407113586398,4,2,4_0,4_0_0,4_1_0,4_0_0 -31504,1,69.0,60.0,2,120,10.0,70.0,0.0,86,77,0.0,0.0,13.821742275759306,80.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,128665,2,2,0,0,1,,240.0,360.0,41,0.0,3.0,4.0,2.0,1.5,1,1,1341.29005783038,10.0,15969.514154558065,5,5,2,3,70.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.005009545013438381,10646.342769705376,2,1,2_1,2_0_1,2_1_1,2_0_1 -31505,1,60.0,250.0,1,120,120.0,0.0,0.0,0,67,0.0,0.0,165.86090730911167,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,115929,2,2,0,0,2,,120.0,300.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1751.53697893471,120.0,10244.982332155476,0,4,2,3,38.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.011713050946253101,10244.982332155476,2,1,2_1,2_0_1,2_1_1,2_1_0 -31506,2,48.0,0.0,1,120,200.0,1300.0,0.0,0,46,0.0,0.0,276.4348455151861,1500.0,0.0,2357.7487711016834,33,0,0,0,0,0,0,0,0,0,,1,,1,111409,2,1,1,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,4,4,1211.82610670834,200.0,18631.368350474313,0,1,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0805093845918093,18631.368350474313,4,2,4_0,4_1_0,4_1_0,4_1_0 -31507,2,81.0,0.0,1,120,500.0,0.0,0.0,0,86,0.0,0.0,691.0871137879653,600.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128275,2,2,4,0,2,,250.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1118.44635146503,500.0,24756.958852000484,0,5,0,1,80.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024235610019262,24756.958852000484,7,4,7,7_1,7_1,7_1_0 -31508,2,41.0,0.0,1,120,300.0,0.0,0.0,85,62,0.0,310.55175144583734,414.65226827277917,650.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124762,2,2,2,0,2,,890.0,,42,1.0,0.0,4.0,4.0,2.5,1,1,961.62638613093,300.0,37830.13791816327,6,1,0,1,80.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017182067942922232,15132.05516726531,3,2,3_0,3_1_0,3_1_0,3_1_0 -31509,2,51.0,0.0,1,120,500.0,0.0,0.0,38,46,0.0,0.0,691.0871137879653,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,123083,2,1,0,0,1,,0.0,350.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1504.63368080654,500.0,62454.58476910583,4,4,3,4,30.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.00800581737671456,41636.38984607055,9,5,9,9_0,9_1,9_1_0 -31510,2,44.0,0.0,2,120,1050.0,0.0,0.0,0,47,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116596,2,2,2,0,1,,100.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,1057.60401971251,1050.0,31320.517742092146,0,1,0,1,50.0,0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03352435003297816,20880.345161394765,5,3,5,5_1,5_1,5_0_1 -31511,2,60.0,0.0,1,120,300.0,1400.0,0.0,74,34,0.0,0.0,414.65226827277917,1700.0,0.0,2539.1140611864284,42,0,0,0,0,0,0,0,0,0,,1,,1,107507,2,1,1,0,1,,230.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1015.1541210096,300.0,122402.47454224018,5,1,0,1,120.0,0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013888608105004795,81601.64969482679,10,5,10,10_1,10_1,10_1_0 -31512,2,23.0,0.0,1,120,1000.0,0.0,0.0,0,48,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,132405,2,1,1,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1248.16865897134,1000.0,20984.315154380936,0,1,1,2,80.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050513919191625456,20984.315154380936,5,3,5,5_1,5_1,5_1_0 -31513,2,85.0,0.0,1,120,240.0,1500.0,0.0,0,86,0.0,0.0,331.72181461822333,1740.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,2,,1,100677,1,2,0,0,2,,120.0,550.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1608.07792654739,240.0,21061.735685767453,0,5,2,3,50.0,0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.08261427386422912,21061.735685767453,5,3,5,5_0,5_1,5_1_0 -31514,1,41.0,500.0,9,300,1500.0,0.0,0.0,0,56,0.0,0.0,2073.261341363896,1620.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,121096,2,1,1,0,1,,500.0,865.0,32,1.0,0.0,4.0,5.0,2.8,2,2,1860.30642972595,1500.0,7680.595310195673,0,1,2,3,85.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.21092115058444974,2743.0697536413118,1,1,1_1,1_1_1,1_0_1,1_0_0 -31515,2,63.0,0.0,2,300,1500.0,0.0,0.0,0,77,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103939,2,2,1,0,1,,600.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1867.45282991559,1500.0,25073.28478408003,0,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06221761581835111,25073.28478408003,7,4,7,7_1,7_0,7_0_1 -31516,2,63.0,0.0,8,300,1200.0,0.0,0.0,0,21,0.0,103.51725048194578,1658.6090730911167,1330.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,127240,2,1,1,0,1,,270.0,,12,1.0,2.0,3.0,1.0,1.0,2,2,1849.16397112477,1200.0,7795.813057442421,0,1,0,1,99.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.170604398822813,7795.813057442421,1,1,1_0,1_1_0,1_0_0,1_0_0 -31517,2,88.0,0.0,6,300,539.0,869.0,0.0,86,86,0.0,0.0,744.9919086634266,1408.0,0.0,1576.064370836433,71,0,0,0,0,0,0,0,0,0,,1,,4,104017,2,1,4,0,1,,600.0,,41,0.0,3.0,7.0,2.0,1.5,3,2,1851.9192157979,539.0,43328.68396142968,5,5,0,1,120.0,0,0,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03249579426998921,28885.789307619783,8,4,8,8_1,8_0,8_0_0 -31518,2,77.0,0.0,1,300,1330.0,0.0,0.0,77,75,0.0,0.0,1838.2917226759876,1330.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124100,2,1,2,0,1,,320.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1820.89195645753,1330.0,28607.531132169075,5,5,0,1,120.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.046491254133580906,19071.68742144605,5,3,5,5_1,5_0,5_1_0 -31519,2,45.0,0.0,2,300,800.0,0.0,0.0,0,62,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,100693,1,2,3,0,2,,0.0,500.0,32,2.0,0.0,4.0,3.0,2.0,2,2,2180.7629415805,800.0,18596.15345919031,0,1,2,3,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04301964929229147,9298.076729595155,1,1,1_0,1_1_0,1_0_0,1_0_1 -31520,1,53.0,243.0,9,300,300.0,400.0,0.0,0,11,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,42,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,103465,2,1,1,0,1,,110.0,246.0,12,1.0,2.0,2.0,1.0,1.0,2,2,1951.77348398208,300.0,6527.416727273139,0,1,2,3,40.0,0,0,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.10723997398162573,6527.416727273139,1,1,1_1,1_1_1,1_0_1,1_0_0 -31521,2,65.0,0.0,1,300,510.0,1200.0,0.0,77,71,0.0,0.0,704.9088560637246,1710.0,0.0,2176.3834810169387,43,0,0,0,0,0,0,0,0,0,,1,,1,132881,1,3,3,0,2,,340.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,1603.35465920371,510.0,17591.577645834186,5,5,0,1,75.0,0,0,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09720560795779112,11727.718430556124,2,1,2_0,2_1_0,2_0_0,2_1_0 -31522,2,59.0,0.0,1,300,1200.0,0.0,0.0,0,63,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,124590,2,1,1,0,2,,204.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1719.05544903822,1200.0,10370.289284252707,0,4,0,1,64.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12150095001817461,10370.289284252707,2,1,2_0,2_1_0,2_0_0,2_1_0 -31523,2,37.0,0.0,1,300,1200.0,0.0,0.0,85,38,0.0,362.31037668681023,1658.6090730911167,1700.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,110004,2,1,1,0,1,,600.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1657.35795686155,1200.0,40621.309971262584,6,1,1,2,120.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04184995513937536,16925.54582135941,4,2,4_0,4_1_0,4_0_0,4_1_0 -31524,2,81.0,0.0,7,300,1200.0,0.0,0.0,0,72,746.7924385090004,0.0,1658.6090730911167,1760.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,100413,2,1,1,0,1,,112.0,,21,1.0,1.0,3.0,2.0,1.5,1,1,1924.14914636889,1200.0,30022.825040894397,0,5,0,1,90.0,0,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05862206496566149,20015.216693929597,5,3,5,5_1,5_0,5_0_0 -31525,2,69.0,0.0,5,300,1200.0,0.0,0.0,75,75,0.0,310.55175144583734,1658.6090730911167,1500.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,122302,2,1,2,0,1,,174.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1921.80795790559,1200.0,56543.82067180322,5,5,0,1,150.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02652809771568915,37695.88044786882,9,5,9,9_1,9_0,9_0_0 -31526,2,67.0,0.0,5,300,900.0,0.0,0.0,0,71,448.0754631054002,0.0,1243.9568048183376,1380.0,309.6588607542345,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,125242,1,1,2,0,2,,250.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2144.56671798606,900.0,11601.982758865379,0,5,0,1,90.0,0,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11894518623943875,11601.982758865379,2,1,2_0,2_1_0,2_0_0,2_0_0 -31527,2,29.0,0.0,1,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,786.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,129152,2,2,5,0,2,,192.0,300.0,12,1.0,0.0,1.0,1.0,1.0,3,3,2271.47775837448,0.0,20589.523162940874,0,1,3,4,33.0,0,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038174754887705366,20589.523162940874,5,3,5,5_1,5_0,5_1_0 -31528,2,66.0,0.0,1,300,333.0,0.0,0.0,77,77,0.0,0.0,460.2640177827849,333.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124345,2,2,4,0,1,,130.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1845.54131304044,333.0,30247.83821543801,5,5,0,1,110.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01100905121312247,20165.225476958673,5,3,5,5_1,5_0,5_1_0 -31529,2,57.0,0.0,8,300,700.0,0.0,0.0,72,21,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,102341,2,1,3,0,1,,280.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,1789.46139432365,700.0,30027.728445626144,6,1,1,2,125.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025309939823659956,20018.48563041743,5,3,5,5_1,5_0,5_0_0 -31530,2,32.0,0.0,1,112,534.0,0.0,0.0,0,52,0.0,0.0,738.0810375255469,534.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,129494,1,2,0,0,1,,142.0,,12,1.0,0.0,3.0,1.0,1.0,2,1,2474.8024376093,534.0,19815.133080056337,0,1,1,2,50.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.026949099854265614,19815.133080056337,5,3,5,5_0,5_0,5_1_0 -31531,2,39.0,0.0,1,112,1100.0,0.0,0.0,67,62,0.0,0.0,1520.3916503335236,1190.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,1,3.0,1,,1,130551,2,1,1,0,1,,150.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,1723.04459949106,1100.0,41410.33773892094,1,1,1,2,120.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028736785666964925,19719.20844710521,5,3,5,5_1,5_0,5_1_0 -31533,2,59.0,0.0,6,112,1000.0,0.0,0.0,52,78,896.1509262108004,0.0,1382.1742275759307,1750.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,112919,2,2,2,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1730.19024503267,1000.0,31512.36064385751,1,5,0,1,98.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055533764029230714,21008.24042923834,5,3,5,5_1,5_0,5_0_0 -31534,2,69.0,0.0,7,112,720.0,0.0,0.0,0,78,0.0,0.0,995.16544385467,1420.0,1204.2289029331341,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,121547,2,1,3,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1681.38436328652,720.0,23464.81438690973,0,5,0,1,99.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.060516140319105724,23464.81438690973,6,3,6,6_1,6_0,6_0_0 -31535,1,36.0,70.0,8,112,0.0,0.0,0.0,85,38,0.0,0.0,0.0,564.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,105889,2,1,1,0,1,,0.0,900.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,1881.23500070092,0.0,42244.233831493126,6,1,2,3,95.0,9,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.013350934526348003,15646.012530182641,3,2,3_1,3_1_1,3_0_1,3_0_0 -31536,2,40.0,0.0,8,112,1050.0,0.0,0.0,63,43,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,130374,2,1,1,0,1,,588.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,1474.4938884208,1050.0,53955.66921742704,1,1,1,2,130.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019460420290012128,22481.5288405946,6,3,6,6_1,6_0,6_0_0 -31537,2,73.0,0.0,6,112,1059.0,0.0,0.0,72,72,0.0,0.0,1463.7225070029106,1059.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,117344,2,1,2,0,2,,457.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1614.9528001405,1059.0,33658.69424893032,5,5,0,1,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031462896099531706,22439.12949928688,6,3,6,6_1,6_0,6_0_0 -31538,2,47.0,0.0,7,112,800.0,0.0,0.0,55,37,0.0,621.1035028916747,1105.7393820607444,1460.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,131181,2,1,1,0,1,,600.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1727.59854213754,800.0,97487.7499292637,1,1,0,1,138.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014976240615455418,64991.833286175795,10,5,10,10_1,10_0,10_0_0 -31539,2,51.0,0.0,9,300,873.0,0.0,0.0,21,21,0.0,0.0,1206.6381006737874,873.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2008.0,6,128833,1,1,1,0,1,,423.0,,43,2.0,4.0,5.0,2.0,1.5,5,5,1693.30681844579,873.0,35014.764409609124,1,1,0,1,180.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024932339677842356,23343.17627307275,6,3,6,6_1,6_0,6_0_0 -31540,2,53.0,0.0,9,300,700.0,0.0,0.0,56,63,0.0,0.0,967.5219593031513,880.0,309.6588607542345,0.0,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129159,2,1,1,0,1,,140.0,,43,2.0,1.0,3.0,2.0,1.5,4,4,1924.14914636889,700.0,32739.20048316778,1,1,1,2,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026879092556106703,21826.13365544519,6,3,6,6_1,6_0,6_0_0 -31541,2,87.0,0.0,1,111,1845.0,0.0,0.0,0,78,0.0,0.0,2550.111449877592,1845.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,115724,2,2,4,0,2,,146.0,,21,0.0,0.0,6.0,3.0,2.0,2,2,558.153809159485,1845.0,54094.47339484334,0,5,0,1,137.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03410699622737945,27047.23669742167,7,4,7,7_1,7_2,7_1_0 -31542,1,26.0,300.0,7,111,220.0,460.0,0.0,0,54,0.0,0.0,304.0783300667047,680.0,0.0,834.2803343898265,71,0,0,0,0,0,0,0,0,0,,2,,5,125528,2,1,0,0,1,,768.0,325.0,32,1.0,0.0,3.0,2.0,1.3,4,3,1628.41958227778,220.0,13003.642570440214,0,4,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05229303991681308,10002.801977261703,2,1,2_1,2_0_1,2_2_1,2_0_0 -31543,2,69.0,0.0,5,111,2010.0,888.0,0.0,72,90,0.0,0.0,2778.17019742762,2898.0,0.0,1610.5237759525346,71,0,0,0,0,0,0,0,0,0,,1,,3,106912,2,1,2,0,2,,436.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,456.984654969366,2010.0,28266.068611515475,5,5,0,1,89.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10252575410573253,18844.045741010315,5,3,5,5_1,5_2,5_0_0 -31544,1,36.0,220.0,7,111,1200.0,0.0,0.0,0,68,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,128699,1,3,3,0,2,,600.0,,32,1.0,0.0,2.0,2.0,1.3,3,3,1692.50514592303,1200.0,14409.551010270616,0,1,1,2,20.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08327809791885137,11084.270007900474,2,1,2_1,2_1_1,2_2_1,2_0_0 -31545,2,53.0,0.0,7,111,627.0,0.0,0.0,0,46,0.0,0.0,866.6232406901084,627.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,5,132223,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2263.1450539571,627.0,30873.183671162613,0,1,1,2,30.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0203088870483304,30873.183671162613,8,4,8,8_0,8_2,8_0_0 -31546,0,85.0,0.0,2,111,750.0,1100.0,0.0,78,86,0.0,0.0,1036.630670681948,1850.0,0.0,1995.0181909321939,41,0,0,0,0,0,0,0,0,0,,1,,2,109101,1,3,3,0,2,,150.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1678.3529154602,750.0,19821.012180251204,5,5,0,1,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09333529403928523,13214.00812016747,2,1,2_0,2_1_0,2_2_0,2_0_1 -31547,2,57.0,0.0,7,111,1000.0,0.0,0.0,0,37,0.0,0.0,1382.1742275759307,1120.0,206.439240502823,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,112253,2,2,2,0,1,,330.0,,32,1.0,2.0,4.0,2.0,1.5,2,2,1418.35671828295,1000.0,33127.139037835776,0,4,1,2,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03380913753888632,22084.759358557185,6,3,6,6_1,6_2,6_0_0 -31548,2,57.0,0.0,5,111,1086.0,1032.0,0.0,78,54,0.0,124.22070057833493,1501.0412111474607,2238.0,0.0,1871.6897936745672,50,0,0,0,0,0,0,0,0,0,,1,,3,128762,2,1,2,0,2,,377.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,1522.6483692851,1086.0,44742.77843980114,5,4,0,1,136.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05001924507238864,29828.51895986743,8,4,8,8_1,8_2,8_0_0 -31549,2,55.0,0.0,5,111,1465.0,0.0,0.0,74,33,0.0,0.0,2024.8852433987383,1705.0,412.878481005646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,107303,2,1,2,0,1,,1080.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,1596.78759674514,1465.0,75708.54237683536,5,1,1,2,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02252057623185308,50472.36158455691,10,5,10,10_1,10_2,10_0_0 -31550,2,55.0,0.0,7,111,818.0,430.0,0.0,22,68,0.0,0.0,1130.618518157111,1248.0,0.0,779.870747364403,41,0,0,0,0,0,0,0,0,2,20.0,1,,5,120921,1,2,2,0,1,,789.0,,43,2.0,0.0,5.0,5.0,3.0,2,2,407.000913048956,818.0,32356.08434551314,1,1,0,1,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038570798205162356,10785.36144850438,2,1,2_0,2_1_0,2_2_0,2_0_0 -31551,2,72.0,0.0,2,111,220.0,500.0,0.0,78,78,0.0,0.0,304.0783300667047,720.0,0.0,906.8264504237244,43,0,0,0,0,0,0,0,0,0,,2,,2,127095,2,1,0,1,1,37.0,210.0,288.0,41,0.0,2.0,3.0,2.0,1.5,2,2,564.904239521071,220.0,19196.44776353254,5,5,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03750693924569643,12797.631842355026,2,1,2_0,2_0_0,2_2_0,2_0_1 -31552,1,51.0,255.0,2,111,600.0,600.0,0.0,0,54,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,71,2,2,2,1,1,2,2,1,0,,2,,2,112081,1,3,0,0,1,,800.0,246.0,12,1.0,2.0,3.0,1.0,1.0,3,3,576.616298420704,600.0,5964.9759337546875,0,4,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.2011743238073139,5964.9759337546875,1,1,1_1,1_0_1,1_2_1,1_0_1 -31553,2,45.0,0.0,1,111,0.0,0.0,0.0,54,45,0.0,0.0,0.0,3413.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,1,108850,2,1,1,0,1,,718.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,1315.53829953807,0.0,65252.39204780808,1,1,1,2,113.0,6,5,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05230459593725572,26100.956819123232,7,4,7,7_1,7_2,7_1_0 -31554,1,52.0,352.0,1,111,650.0,0.0,0.0,0,56,0.0,20.703450096389155,898.4132479243549,705.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,114999,2,1,0,0,1,,0.0,535.0,32,1.0,5.0,1.0,2.0,1.3,2,2,2336.32525216681,650.0,7720.675596379737,0,4,2,3,15.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09131325247373144,5938.981227984413,1,1,1_1,1_0_1,1_2_1,1_1_0 -31555,2,50.0,0.0,6,111,912.0,0.0,0.0,55,38,0.0,348.8531341241573,1260.5428955492487,1249.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,4.0,1,,4,101067,2,1,2,0,1,,225.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1438.23437708498,912.0,56532.99033462281,1,1,0,1,95.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022093294421665646,37688.660223081875,9,5,9,9_1,9_2,9_0_0 -31556,2,59.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,258.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102634,2,1,0,0,1,,133.0,196.0,12,1.0,2.0,1.0,1.0,1.0,4,3,2453.9451206607,0.0,6393.955701018829,0,4,2,3,34.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04035060799043222,6393.955701018829,1,1,1_0,1_0_0,1_2_0,1_0_1 -31557,1,49.0,380.0,2,111,0.0,0.0,770.0,0,55,0.0,0.0,393.4032678248943,770.0,0.0,880.2992464825263,71,2,2,2,2,1,2,2,2,2,30.0,2,,2,115647,1,3,0,0,1,,700.0,535.0,32,1.0,0.0,3.0,3.0,2.0,3,3,1866.04828109824,0.0,15361.46067349949,0,1,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05012544160779904,7680.730336749745,1,1,1_1,1_0_1,1_2_1,1_0_1 -31558,1,39.0,200.0,5,111,300.0,300.0,0.0,0,65,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,12,0,0,0,0,0,0,0,0,0,,8,,3,118410,2,1,0,0,1,,350.0,330.0,32,1.0,0.0,3.0,3.0,1.8,2,2,2133.75390561018,300.0,11941.374967979054,0,4,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05024547019157404,6634.097204432808,1,1,1_1,1_0_1,1_2_1,1_0_0 -31559,1,43.0,351.0,2,111,0.0,0.0,1050.0,52,52,0.0,0.0,536.4590015794013,1050.0,0.0,1200.4080633852632,50,1,2,2,1,2,2,2,2,0,,2,,2,129379,1,2,0,0,1,,600.0,325.0,43,2.0,0.0,4.0,3.0,1.8,1,1,2468.44787874835,0.0,26708.735813878677,4,4,2,3,73.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03931298011695439,14838.186563265932,3,2,3_1,3_0_1,3_2_1,3_0_1 -31561,2,66.0,0.0,7,111,390.0,487.0,0.0,0,67,0.0,0.0,539.0479487546129,877.0,0.0,883.2489627127076,71,0,0,0,0,0,0,0,0,0,,1,,5,107906,2,1,2,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,1667.64542496931,390.0,16237.83503040481,0,1,0,1,83.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05400966313291436,16237.83503040481,4,2,4_0,4_1_0,4_2_0,4_0_0 -31562,0,39.0,0.0,5,111,0.0,0.0,900.0,56,64,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,50,0,0,0,0,0,0,0,0,0,,1,,3,120409,2,1,2,0,1,,850.0,,43,2.0,0.0,5.0,6.0,2.8999999999999995,2,2,1462.26512930651,0.0,61191.816063750535,1,1,5,0,110.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014707849151957946,21100.6262288795,5,3,5,5_1,5_2,5_0_0 -31563,2,36.0,0.0,6,111,1200.0,0.0,0.0,54,54,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,4,123222,2,1,0,0,1,,560.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1949.44779849813,1200.0,45228.363298523895,1,1,1,2,93.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028521925312342693,21537.31585643995,6,3,6,6_0,6_2,6_0_0 -31564,1,24.0,70.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,390.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,2006.0,6,107456,2,1,0,0,1,,0.0,435.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2424.21034625414,0.0,11622.144933810268,0,1,2,3,36.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03355662850713911,11622.144933810268,2,1,2_1,2_0_1,2_2_1,2_0_0 -31565,2,58.0,0.0,2,111,430.0,0.0,0.0,55,54,0.0,0.0,594.3349178576501,929.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108988,2,2,1,0,1,,200.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1427.98895358747,430.0,28930.06700220615,4,1,0,1,80.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03211192009783995,19286.7113348041,5,3,5,5_1,5_2,5_0_1 -31566,2,53.0,0.0,6,111,807.5,30.0,0.0,0,22,0.0,0.0,1116.1056887675638,838.0,0.0,54.40958702542347,50,2,2,2,2,2,2,2,1,0,,1,,4,106289,2,2,3,0,1,,0.0,,32,2.0,4.0,5.0,2.0,1.5,2,2,1406.10881616823,807.5,12972.4455679178,0,1,0,1,110.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.06459845952812943,8648.297045278534,1,1,1_0,1_1_0,1_2_0,1_0_0 -31567,2,71.0,0.0,8,111,250.0,600.0,0.0,0,74,0.0,0.0,345.54355689398267,850.0,0.0,1088.1917405084694,44,0,0,0,0,0,0,0,0,0,,1,2001.0,6,128823,2,1,1,0,1,,400.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1583.5841814958,250.0,46444.8163024548,0,5,0,1,105.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018301288877206175,46444.8163024548,10,5,10,10_1,10_2,10_0_0 -31568,2,81.0,0.0,6,111,610.0,0.0,0.0,0,78,0.0,0.0,843.1262788213177,676.0,113.54158227655265,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101245,2,1,2,0,1,,200.0,,11,0.0,6.0,3.0,1.0,1.0,4,4,1761.70807768146,610.0,23231.204883735616,0,5,0,1,62.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029098792050741798,23231.204883735616,6,3,6,6_1,6_2,6_0_0 -31569,1,49.0,348.0,9,111,1000.0,0.0,0.0,0,68,0.0,0.0,1382.1742275759307,1066.0,113.54158227655265,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,115188,2,1,1,0,1,,516.0,830.0,32,2.0,1.0,4.0,4.0,2.5,2,2,1515.497562295,1000.0,40222.55576721355,0,1,2,3,95.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02650254265714573,16089.02230688542,4,2,4_1,4_1_1,4_2_1,4_0_0 -31570,2,71.0,0.0,7,111,1531.0,1046.0,0.0,0,74,0.0,0.0,2116.10874241875,2577.0,0.0,1897.0809342864316,71,0,0,0,0,0,0,0,0,0,,1,,5,125214,2,1,2,0,1,,262.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,1585.01645956788,1531.0,63866.904319530964,0,5,0,1,140.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0403495367038157,63866.904319530964,10,5,10,10_1,10_2,10_0_0 -31571,2,57.0,0.0,1,111,1234.0,0.0,0.0,56,62,0.0,0.0,1705.6029968286982,1354.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112591,2,1,1,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1669.64233088629,1234.0,39056.078296146254,1,1,0,1,90.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03466809928362936,26037.385530764168,7,4,7,7_1,7_2,7_1_0 -31572,2,38.0,0.0,1,111,2260.0,0.0,0.0,0,63,0.0,0.0,3123.713754321603,2500.0,412.878481005646,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,116486,2,1,3,0,1,,380.0,,32,2.0,0.0,6.0,4.0,2.3,2,2,974.669368385677,2260.0,40161.86219421461,0,1,1,2,160.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.062248109609821065,17461.67921487592,4,2,4_0,4_1_0,4_2_0,4_1_0 -31573,1,58.0,184.0,1,111,540.0,0.0,0.0,77,78,0.0,0.0,746.3740828910024,640.0,172.03270041901916,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,118156,2,3,4,0,2,,240.0,528.0,41,0.0,2.0,3.0,2.0,1.5,1,1,1016.42730160351,540.0,14201.046601176546,7,7,2,3,92.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04506710089571683,9467.364400784363,1,1,1_1,1_1_1,1_2_1,1_1_0 -31574,1,39.0,380.0,1,111,1200.0,0.0,0.0,85,21,0.0,0.0,1658.6090730911167,1325.0,215.04087552377396,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,130626,2,2,2,0,1,,245.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,964.978518544053,1200.0,26117.266499511945,6,1,1,2,95.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0.050732721206668406,10882.194374796643,2,1,2_1,2_1_1,2_2_1,2_1_0 -31575,1,58.0,600.0,1,111,1200.0,0.0,0.0,85,69,0.0,672.8621281326475,1658.6090730911167,2400.0,946.1798523046054,0.0,10,2,2,2,1,1,2,2,2,0,,1,,1,123919,1,3,4,0,1,,570.0,580.0,42,2.0,0.0,4.0,8.0,4.1,3,2,1072.09945314852,1200.0,29350.543760598666,6,1,2,3,60.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0.08177020567577542,7158.669209902115,1,1,1_1,1_1_1,1_2_1,1_1_0 -31576,2,71.0,0.0,5,111,1000.0,0.0,0.0,75,75,0.0,72.46207533736204,1382.1742275759307,1260.0,326.8621307961364,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,118275,2,2,1,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,926.530080920983,1000.0,50867.20112539409,5,5,0,1,100.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02477038193813614,33911.467416929394,9,5,9,9_1,9_2,9_0_0 -31577,2,67.0,0.0,7,111,700.0,0.0,0.0,0,77,0.0,207.03450096389156,967.5219593031513,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,107481,2,2,3,0,1,,135.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,894.537902190668,700.0,16877.270474142337,0,5,0,1,80.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053326158479174095,16877.270474142337,4,2,4_0,4_1_0,4_2_0,4_0_0 -31578,2,64.0,0.0,5,111,603.0,927.0,0.0,75,75,0.0,0.0,833.4510592282861,1530.0,0.0,1681.256239085585,42,0,0,0,0,0,0,0,0,0,,1,,3,123562,2,2,1,0,1,,260.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,964.33270881757,603.0,51041.574451992514,5,5,0,1,120.0,5,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02997556435958008,34027.71630132834,9,5,9,9_1,9_2,9_0_0 -31579,2,59.0,0.0,2,111,2200.0,0.0,0.0,43,64,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,110983,2,1,1,0,1,,250.0,897.0,43,3.0,0.0,6.0,6.0,3.3,2,2,326.186296042009,2200.0,63988.0,1,1,2,3,90.0,5,4,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03438144652122273,19390.303030303032,5,3,5,5_1,5_2,5_0_1 -31580,2,76.0,0.0,5,111,1208.0,0.0,0.0,74,74,0.0,351.95865163861566,1669.666466911724,1548.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124215,2,1,2,0,1,,210.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,931.040575703654,1208.0,83897.23136826267,5,5,0,1,100.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018451145225581188,55931.48757884178,10,5,10,10_1,10_2,10_0_0 -31581,2,46.0,0.0,9,111,700.0,700.0,0.0,55,37,0.0,0.0,967.5219593031513,1400.0,0.0,1269.5570305932142,41,0,0,0,0,0,0,0,0,0,,2,2008.0,6,119837,2,1,0,0,1,,760.0,548.0,43,5.0,0.0,5.0,7.0,3.8,2,2,1017.83800554702,700.0,50682.6958027278,1,1,2,3,110.0,5,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027622840060623814,13337.551527033633,3,2,3_0,3_0_0,3_2_0,3_0_0 -31582,2,49.0,0.0,6,111,850.0,0.0,0.0,46,46,1493.5848770180007,0.0,1174.848093439541,1850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126638,2,1,3,0,1,,244.0,,43,2.0,0.0,6.0,4.0,2.1,3,3,852.122723365698,850.0,111692.93099215193,1,1,1,2,140.0,5,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016563268450086512,53187.10999626282,10,5,10,10_1,10_2,10_0_0 -31583,2,74.0,0.0,5,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1292.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,119866,2,2,0,0,1,,76.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,354.375750321377,0.0,14289.755105490114,0,5,0,1,55.0,5,4,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09041442561206767,14289.755105490114,3,2,3_0,3_0_0,3_2_0,3_0_0 -31584,0,78.0,0.0,2,111,0.0,0.0,1400.0,0,86,0.0,0.0,715.2786687725351,1761.0,0.0,1600.544084513684,41,2,2,2,2,1,2,2,2,0,,2,,2,130525,2,3,0,0,1,,130.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,386.215882315013,0.0,5387.933201442921,0,7,5,0,60.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.32684146854834684,5387.933201442921,1,1,1_0,1_0_0,1_2_0,1_0_1 -31585,2,39.0,0.0,2,111,684.0,142.0,0.0,0,47,0.0,0.0,945.4071716619364,826.0,0.0,257.53871192033773,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,115717,1,3,0,0,2,,150.0,525.0,12,1.0,1.0,4.0,1.0,1.0,2,2,416.978838313015,684.0,19450.931648907586,0,1,2,3,75.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0424658322238457,19450.931648907586,5,3,5,5_0,5_2,5_0_1 -31586,2,40.0,0.0,2,111,700.0,1200.0,0.0,11,43,0.0,0.0,967.5219593031513,1900.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,110533,1,3,3,0,2,,340.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,883.400229302659,700.0,63471.74788145817,1,1,1,2,80.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029934578192938686,30224.641848313415,8,4,8,8_1,8_2,8_0_1 -31587,2,39.0,0.0,6,111,1200.0,0.0,0.0,63,46,0.0,0.0,1658.6090730911167,1284.0,144.50746835197612,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,106261,1,1,2,0,1,,360.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,989.787824434447,1200.0,42302.76483295948,1,1,1,2,90.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03035262600612793,23501.536018310824,6,3,6,6_1,6_2,6_0_0 -31588,2,51.0,0.0,1,111,1400.0,0.0,0.0,0,21,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119510,2,1,2,0,1,,360.0,,32,1.0,2.0,4.0,3.0,1.6,2,1,1028.62800862948,1400.0,13107.94552721922,0,1,0,1,78.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10680544842766083,8192.465954512012,1,1,1_0,1_1_0,1_2_0,1_1_0 -31589,2,62.0,0.0,7,111,1700.0,0.0,0.0,0,78,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,126714,2,1,2,0,1,,300.0,,21,0.0,0.0,3.0,2.0,1.5,2,1,888.981378094138,1700.0,32864.51424301316,0,5,0,1,85.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.051727525544102995,21909.676162008775,6,3,6,6_1,6_2,6_0_0 -31590,0,27.0,0.0,7,111,1250.0,0.0,0.0,56,22,0.0,0.0,1727.717784469913,1620.0,636.5209915503709,0.0,50,2,2,2,1,2,2,2,2,0,,1,,5,116700,1,3,3,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,4,4,945.308293007506,1250.0,9376.328112615673,1,1,5,0,70.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.17277552369571203,6250.885408410449,1,1,1_0,1_1_0,1_2_0,1_0_0 -31591,2,36.0,0.0,2,111,470.0,835.0,0.0,56,64,0.0,0.0,649.6218869606873,1305.0,0.0,1514.4001722076198,20,0,0,0,0,0,0,0,0,0,,2,,2,116431,1,2,0,0,1,,270.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1317.55895607878,470.0,22751.87839686549,1,1,1,2,73.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0573579014987962,12639.93244270305,2,1,2_0,2_0_0,2_2_0,2_0_1 -31592,2,76.0,0.0,7,111,1300.0,0.0,0.0,77,74,0.0,0.0,1796.8264958487098,1450.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,117742,2,1,2,0,1,,312.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,966.689239270272,1300.0,25754.90759738757,5,5,0,1,114.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056299949612208265,17169.93839825838,4,2,4_0,4_1_0,4_2_0,4_0_0 -31593,2,82.0,0.0,8,111,1500.0,0.0,0.0,0,74,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,126168,2,2,5,0,1,,270.0,600.0,11,0.0,1.0,3.0,1.0,1.0,2,2,1086.41561438442,1500.0,38973.22541714102,0,5,2,3,70.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03848796151576095,38973.22541714102,9,5,9,9_1,9_2,9_0_0 -31594,2,85.0,0.0,2,111,890.0,0.0,0.0,77,75,2091.018827825201,0.0,1230.1350625425782,2340.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129319,2,3,3,0,2,,71.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,888.004461923907,890.0,24274.470697138804,5,5,0,1,85.0,5,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09639757048444365,16182.980464759203,4,2,4_0,4_1_0,4_2_0,4_0_1 -31595,2,78.0,0.0,7,111,330.0,650.0,0.0,0,77,0.0,0.0,456.1174951000571,980.0,0.0,1178.8743855508417,50,0,0,0,0,0,0,0,0,0,,1,,5,126971,2,2,2,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,2,1,1017.12354523806,330.0,22003.948467532096,0,5,0,1,90.0,5,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044537461149122305,22003.948467532096,6,3,6,6_1,6_2,6_0_0 -31596,2,72.0,0.0,2,111,890.0,1087.0,0.0,77,72,0.0,0.0,1230.1350625425782,1977.0,0.0,1971.440703221177,41,0,0,0,0,0,0,0,0,0,,1,,2,105525,1,1,2,0,2,,80.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,889.409805221244,890.0,30612.21650912751,5,5,0,1,140.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0645820598913681,20408.14433941834,5,3,5,5_1,5_2,5_0_1 -31597,1,66.0,76.0,7,111,480.0,0.0,0.0,0,74,0.0,0.0,663.4436292364467,480.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,127066,2,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1974.58606508598,480.0,16217.84961704355,0,5,2,3,20.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02959701879930874,16217.84961704355,4,2,4_1,4_0_1,4_2_1,4_0_0 -31598,2,65.0,0.0,8,111,600.0,800.0,0.0,86,72,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,114388,2,1,1,0,1,,300.0,,41,0.0,1.0,3.0,3.0,2.0,1,1,1054.07455885734,600.0,52020.390275525366,6,5,0,1,75.0,5,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026912523965793356,26010.195137762683,7,4,7,7_1,7_2,7_0_0 -31599,1,37.0,512.0,2,111,0.0,0.0,1235.0,85,64,0.0,0.0,630.9779685243434,1235.0,0.0,1411.908531696,70,0,0,0,0,0,0,0,0,0,,2,,2,132342,1,2,0,0,1,,360.0,594.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,3,3,1040.81110448779,0.0,15861.075328954317,6,4,2,3,78.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07786357320587926,5874.472344057155,1,1,1_1,1_0_1,1_2_1,1_0_1 -31600,1,43.0,351.0,2,111,250.0,402.0,0.0,0,67,0.0,0.0,345.54355689398267,652.0,0.0,729.0884661406744,50,2,2,2,2,1,2,2,2,0,,2,,2,127530,2,3,0,0,1,,180.0,600.0,32,1.0,0.0,4.0,2.0,1.5,3,3,1205.2563828675,250.0,8403.743888125256,0,4,2,3,80.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.07758446814654783,5602.495925416838,1,1,1_1,1_0_1,1_2_1,1_0_1 -31601,1,46.0,320.0,2,111,360.0,580.0,0.0,85,68,0.0,0.0,497.582721927335,940.0,0.0,1051.9186824915203,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,132913,1,3,0,0,2,,500.0,638.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1308.64825702084,360.0,26522.074653013722,6,1,2,3,70.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03544217457713803,11050.864438755718,2,1,2_1,2_0_1,2_2_1,2_0_1 -31602,2,45.0,0.0,7,111,1100.0,0.0,0.0,0,52,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,5,119505,2,1,3,0,1,,120.0,609.0,22,1.0,2.0,4.0,2.0,1.5,2,2,1060.53912507371,1100.0,34759.56885086495,0,1,2,3,88.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.03164596214410835,23173.04590057663,6,3,6,6_1,6_2,6_0_0 -31603,2,88.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1669.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111466,1,2,5,0,2,,261.0,,21,0.0,0.0,4.0,3.0,2.0,1,1,1111.1496707723,0.0,19773.441193686747,0,5,0,1,80.0,5,4,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08440614780460558,9886.720596843374,2,1,2_0,2_1_0,2_2_0,2_0_1 -31604,1,34.0,400.0,6,111,1300.0,0.0,0.0,0,64,0.0,621.1035028916747,1796.8264958487098,1970.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,116007,1,1,2,0,2,,360.0,,32,1.0,0.0,5.0,4.0,2.1,3,2,893.387879607725,1300.0,16537.149487367395,0,1,1,2,100.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.11912572970963758,7874.833089222569,1,1,1_1,1_1_1,1_2_1,1_0_0 -31605,1,59.0,255.0,2,111,0.0,0.0,550.0,0,77,0.0,0.0,281.0023341606388,550.0,0.0,628.7851760589474,50,0,0,0,0,0,0,0,0,0,,2,,2,117628,1,2,0,0,1,,210.0,419.0,11,0.0,5.0,3.0,1.0,1.0,2,2,381.624645292319,0.0,12563.10052598871,0,7,2,3,65.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04377900175695006,12563.10052598871,2,1,2_1,2_0_1,2_2_1,2_0_1 -31606,2,62.0,0.0,5,111,1000.0,0.0,0.0,85,72,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,116028,2,1,1,0,1,,270.0,,41,0.0,0.0,3.0,4.0,2.3,2,2,914.400836476326,1000.0,37278.23114761268,6,5,1,2,98.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02682530713542294,16207.926585918556,4,2,4_0,4_1_0,4_2_0,4_0_0 -31607,2,60.0,0.0,2,111,1300.0,0.0,0.0,72,62,0.0,0.0,1796.8264958487098,1400.0,172.03270041901916,0.0,50,2,2,2,1,2,2,2,2,2,30.0,1,,2,124219,1,3,3,0,2,,0.0,644.0,42,1.0,3.0,3.0,2.0,1.5,4,4,1032.53070483502,1300.0,48511.08669244987,5,1,2,3,45.0,5,4,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.02885938236914186,32340.724461633246,8,4,8,8_1,8_2,8_0_1 -31608,2,60.0,0.0,7,111,900.0,0.0,0.0,63,45,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,103287,2,1,2,0,1,,270.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,917.507936955086,900.0,38163.26939099342,4,1,0,1,81.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02358288517629994,25442.17959399561,7,4,7,7_1,7_2,7_0_0 -31609,2,61.0,0.0,6,111,1390.0,0.0,0.0,56,77,0.0,0.0,1921.2221763305436,1470.0,137.62616033521533,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,102300,2,1,2,0,1,,252.0,,42,2.0,2.0,4.0,3.0,2.0,5,3,973.67582331849,1390.0,40331.657972003355,1,5,0,1,90.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03644779495602229,20165.828986001678,5,3,5,5_1,5_2,5_0_0 -31610,2,36.0,0.0,7,111,1300.0,0.0,0.0,21,43,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,132905,1,2,2,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,5,4,916.12123193191,1300.0,106841.40394314438,1,1,1,2,90.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012167567553603044,50876.85902054494,10,5,10,10_1,10_2,10_0_0 -31611,2,28.0,0.0,9,111,0.0,0.0,0.0,84,64,0.0,0.0,0.0,397.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,118648,2,1,0,0,1,,0.0,596.0,42,1.0,0.0,3.0,2.0,1.5,1,1,1242.09926499024,0.0,15118.105548818588,3,1,2,3,60.0,5,4,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026259903975271805,10078.737032545725,2,1,2_0,2_0_0,2_2_0,2_0_0 -31612,2,69.0,0.0,1,111,1295.0,150.0,0.0,75,72,1792.3018524216009,0.0,1789.9156247108301,2645.0,0.0,272.04793512711734,71,0,0,0,0,0,0,0,0,0,,1,,1,114189,2,1,1,0,2,,407.0,,41,0.0,3.0,10.0,2.0,1.5,4,3,949.10283130599,1295.0,82465.30661320897,5,5,0,1,300.0,5,4,9,1,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032074094047888184,54976.87107547265,10,5,10,10_1,10_2,10_1_0 -31613,2,69.0,0.0,7,111,650.0,0.0,0.0,0,74,0.0,103.51725048194578,898.4132479243549,750.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,5,107492,1,3,3,0,2,,150.0,940.0,21,1.0,3.0,4.0,2.0,1.5,1,1,1111.33472657327,650.0,44474.90370350346,0,5,2,3,79.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.016863442920527775,29649.935802335644,8,4,8,8_1,8_2,8_0_0 -31614,2,65.0,0.0,6,111,820.0,0.0,0.0,86,77,0.0,0.0,1133.3828666122631,895.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132822,2,1,2,0,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,2,1,1004.9799026182,820.0,20296.295180703648,6,5,0,1,103.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04409671775225785,13530.863453802433,3,2,3_0,3_1_0,3_2_0,3_0_0 -31615,1,24.0,200.0,7,111,388.0,0.0,0.0,0,21,0.0,0.0,536.2836002994611,388.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,131680,2,2,0,0,2,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2728.11251102061,388.0,15893.54211752941,0,1,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0244124309817674,15893.54211752941,3,2,3_1,3_0_1,3_3_1,3_0_0 -31617,0,31.0,0.0,8,111,1080.0,0.0,0.0,55,46,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,2001.0,6,120223,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,1,1,2001.5349633056,1080.0,55152.3418243619,1,1,5,0,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0195821240635505,30640.189902423277,8,4,8,8_0,8_3,8_0_0 -31618,2,84.0,0.0,5,111,0.0,910.0,0.0,0,75,0.0,0.0,0.0,2285.0,0.0,1650.4241397711785,71,2,2,2,2,2,2,2,1,0,,2,,3,116403,1,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1681.88365781448,0.0,19204.71090196273,0,5,0,1,53.0,9,7,9,0,1,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.11898122349587006,19204.71090196273,5,3,5,5_0,5_3,5_0_0 -31619,2,52.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,221.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,2,,2,100978,1,1,0,0,2,,0.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2408.54698810442,0.0,24058.219077480775,0,1,3,4,18.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009186049860476279,24058.219077480775,6,3,6,6_0,6_3,6_0_1 -31621,2,28.0,0.0,9,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,526.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,118581,2,2,0,0,1,,0.0,298.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2095.0743000684,0.0,24917.204832043055,0,1,3,4,19.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021109911948212344,24917.204832043055,7,4,7,7_0,7_3,7_0_0 -31622,2,31.0,0.0,9,111,397.0,431.0,0.0,34,34,0.0,0.0,548.7231683476444,828.0,0.0,781.6844002652505,50,0,0,0,0,0,0,0,0,3,20.0,2,2009.0,6,115662,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,1859.13226584444,397.0,140232.06970226765,1,1,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005904498177613438,77906.7053901487,10,5,10,10_0,10_3,10_0_0 -31623,0,39.0,0.0,2,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,730.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,2,114406,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.3,3,3,1874.28558606059,0.0,32145.21905076965,6,1,5,0,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02270944238541506,13976.182195986805,3,2,3_0,3_0_0,3_3_0,3_0_1 -31624,2,19.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1287.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128506,2,1,1,0,1,,0.0,1250.0,22,3.0,0.0,4.0,3.0,2.0,1,1,1479.48241334105,0.0,5116.725636894358,0,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.25152804573300436,2558.362818447179,1,1,1_0,1_1_0,1_3_0,1_0_0 -31625,2,41.0,0.0,9,111,474.0,0.0,0.0,0,38,0.0,0.0,655.1505838709911,474.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,121876,2,1,0,0,1,850.0,0.0,780.0,32,1.0,0.0,3.0,3.0,1.6,2,2,1992.29252008233,474.0,37764.945693710186,0,1,2,3,57.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012551322166443508,23603.091058568865,6,3,6,6_0,6_3,6_0_0 -31626,2,79.0,0.0,5,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,315.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100996,2,1,0,1,2,,0.0,430.0,11,0.0,2.0,2.0,1.0,1.0,2,2,2775.42836532386,0.0,17446.607196562552,0,5,3,4,27.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01805508638161255,17446.607196562552,4,2,4_0,4_0_0,4_3_0,4_0_0 -31627,2,69.0,0.0,6,111,1400.0,0.0,0.0,74,74,0.0,155.27587572291867,1935.0439186063027,1550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,117235,2,1,2,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,4,4,1237.50842389729,1400.0,69972.05264679487,5,5,0,1,155.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02215170116309285,46648.03509786324,10,5,10,10_1,10_3,10_0_0 -31628,2,43.0,0.0,8,111,2000.0,0.0,0.0,31,34,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,130978,2,1,2,0,1,,2087.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,4,4,1187.0677546139,2000.0,168384.54774485392,1,1,1,2,136.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011877574437712162,64763.287594174595,10,5,10,10_1,10_3,10_0_0 -31629,2,51.0,0.0,8,111,700.0,0.0,0.0,0,56,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,107479,2,2,0,0,2,,150.0,392.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2262.48232749094,700.0,20318.70410104174,0,1,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034451015995853346,20318.70410104174,5,3,5,5_0,5_3,5_0_0 -31630,2,27.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,486.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,2,131196,2,2,0,0,1,,0.0,580.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1839.37356652169,0.0,21258.589030134568,0,1,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02286134791500429,21258.589030134568,5,3,5,5_0,5_3,5_0_1 -31631,2,39.0,0.0,1,111,1100.0,0.0,0.0,0,52,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,2,2,2,1,1,1,2,2,2,30.0,2,,1,122244,2,2,0,0,1,,0.0,478.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2351.59876101582,1100.0,26986.40505507318,0,1,2,3,32.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.040761264709217385,26986.40505507318,7,4,7,7_0,7_3,7_1_0 -31632,2,47.0,0.0,2,111,0.0,0.0,340.0,0,63,0.0,0.0,173.71053384475852,340.0,0.0,388.7035633818947,71,0,0,0,0,0,0,0,0,0,,2,,2,123659,2,2,0,1,2,660.0,0.0,431.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2728.11251102061,0.0,20611.445949075365,0,1,2,3,30.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01649568889247445,20611.445949075365,5,3,5,5_0,5_3,5_0_1 -31633,1,49.0,75.0,2,111,370.0,372.0,0.0,0,68,0.0,0.0,511.40446420309434,742.0,0.0,674.678879115251,71,2,2,2,1,2,2,2,2,0,,2,,2,128990,1,3,0,0,2,,0.0,340.0,12,1.0,1.0,3.0,1.0,1.0,4,3,661.740241058328,370.0,12747.421086059718,0,1,2,3,68.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.05820785200321294,12747.421086059718,2,1,2_1,2_0_1,2_3_1,2_0_1 -31634,2,78.0,0.0,2,111,250.0,460.0,0.0,77,78,0.0,0.0,345.54355689398267,710.0,0.0,834.2803343898265,71,0,0,0,0,0,0,0,0,0,,2,,2,121067,2,1,0,0,1,,0.0,318.0,41,0.0,2.0,4.0,3.0,2.0,1,1,582.15703428636,250.0,37403.24594496347,5,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018982309745114646,18701.622972481735,5,3,5,5_0,5_3,5_0_1 -31635,2,52.0,0.0,2,111,352.0,880.0,0.0,52,62,0.0,0.0,486.52532810672756,1232.0,0.0,1596.014552745755,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,115338,2,1,0,0,1,,0.0,359.0,43,3.0,1.0,5.0,3.0,2.0,2,2,528.412264246642,352.0,49703.82991746887,1,1,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02478682230415009,24851.914958734436,7,4,7,7_0,7_3,7_0_1 -31636,1,34.0,380.0,2,111,500.0,1000.0,0.0,0,85,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,71,1,2,2,1,1,2,2,2,0,,2,,2,106935,2,2,0,0,1,,0.0,348.0,31,1.0,0.0,4.0,3.0,1.8,1,1,595.737598175378,500.0,5655.670345358841,0,7,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.2652205500681154,3142.0390807549115,1,1,1_1,1_0_1,1_3_1,1_0_1 -31637,2,70.0,0.0,2,111,540.0,546.0,0.0,77,75,0.0,0.0,746.3740828910024,1086.0,0.0,990.254483862707,71,0,0,0,0,0,0,0,0,0,,1,,2,120813,2,1,2,0,1,,133.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1387.87076934031,540.0,49747.40444980753,5,5,0,1,89.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02183028465526711,33164.93629987169,8,4,8,8_1,8_3,8_0_1 -31638,1,48.0,230.0,6,111,300.0,0.0,0.0,56,63,0.0,0.0,414.65226827277917,300.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,4,112169,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,1696.66847315527,300.0,21898.381774442292,1,4,1,2,69.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.013699642425182826,10427.80084497252,2,1,2_1,2_0_1,2_3_1,2_0_0 -31639,1,47.0,160.0,6,111,180.0,0.0,0.0,0,52,0.0,0.0,248.7913609636675,180.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,4,109164,2,2,0,1,1,,0.0,145.0,12,1.0,0.0,1.0,1.0,1.0,2,2,660.759804917422,180.0,3790.7972692661842,0,4,2,3,22.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04748341502178091,3790.7972692661842,1,1,1_1,1_0_1,1_3_1,1_0_0 -31640,2,69.0,0.0,2,111,480.0,780.0,0.0,85,78,0.0,0.0,663.4436292364467,1260.0,0.0,1414.6492626610102,20,1,2,2,1,2,2,2,2,0,,2,,2,112670,2,1,0,0,1,,0.0,,41,2.0,5.0,5.0,5.0,2.8,1,1,471.20265363512,480.0,22779.96565419798,7,5,0,1,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.05531176030407238,8135.702019356421,1,1,1_0,1_0_0,1_3_0,1_0_1 -31641,2,61.0,0.0,5,111,770.0,0.0,0.0,0,77,0.0,414.0690019277831,1064.2741552334664,1190.0,34.40654008380383,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,118027,1,2,2,0,1,,164.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1462.2018385107,770.0,15236.646867117075,0,7,0,1,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07810117346541613,15236.646867117075,3,2,3_0,3_1_0,3_3_0,3_0_0 -31642,2,23.0,0.0,7,111,1200.0,0.0,0.0,0,47,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,5,115520,2,2,0,0,1,,0.0,780.0,22,2.0,0.0,3.0,2.0,1.5,1,1,1934.74771019254,1200.0,27716.331231766504,0,4,3,4,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.04329577352664355,18477.554154511003,4,2,4_0,4_0_0,4_3_0,4_0_0 -31643,1,37.0,400.0,2,111,434.0,0.0,0.0,85,85,0.0,0.0,599.8636147679539,600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,106304,1,2,0,1,2,492.0,0.0,350.0,41,0.0,0.0,1.0,3.0,1.8,1,1,2807.68485989512,434.0,4602.500374049054,6,6,2,3,20.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.13036392205051567,2556.944652249474,1,1,1_1,1_0_1,1_3_1,1_0_1 -31644,2,24.0,0.0,5,111,564.0,0.0,0.0,0,64,0.0,0.0,779.5462643528249,564.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,102098,2,1,0,0,1,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2019.04300647293,564.0,15895.274715642521,0,1,2,3,44.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03548224299923349,15895.274715642521,3,2,3_0,3_0_0,3_3_0,3_0_0 -31645,2,32.0,0.0,2,111,300.0,1500.0,0.0,21,43,0.0,0.0,414.65226827277917,1800.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,2,4.0,2,,2,109838,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1861.93659022815,300.0,35361.43679384928,1,1,1,2,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05090290902187237,16838.779425642515,4,2,4_0,4_0_0,4_3_0,4_0_1 -31646,1,60.0,265.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,778.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,122139,2,3,0,0,1,,0.0,400.0,11,0.0,3.0,1.0,1.0,1.0,2,2,2724.07053210661,0.0,8606.305792531502,0,7,2,3,19.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.09039883299000873,8606.305792531502,1,1,1_1,1_0_1,1_3_1,1_0_1 -31647,2,32.0,0.0,6,111,1200.0,0.0,0.0,47,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,4,122605,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,1850.80106846016,1200.0,60369.8956192061,1,1,1,2,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019877456929347937,33538.83089955895,8,4,8,8_0,8_3,8_0_0 -31648,2,29.0,0.0,2,111,0.0,0.0,0.0,46,68,0.0,0.0,0.0,413.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,2,104786,2,1,0,1,1,564.0,0.0,314.0,43,2.0,0.0,3.0,2.0,1.5,2,2,456.404311979092,0.0,24083.64553314121,4,1,2,3,64.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017148566625084884,16055.763688760808,4,2,4_0,4_0_0,4_3_0,4_0_1 -31649,2,35.0,0.0,9,111,1300.0,0.0,0.0,52,52,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,127622,2,1,0,0,1,,0.0,810.0,43,2.0,0.0,4.0,3.0,1.8,3,3,2152.43916620698,1300.0,39995.43748367402,1,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.032503707467399376,22219.68749093001,6,3,6,6_0,6_3,6_0_0 -31650,2,66.0,0.0,2,111,210.0,250.0,0.0,0,75,0.0,0.0,290.25658779094545,460.0,0.0,453.4132252118622,50,0,0,0,0,0,0,0,0,0,,2,,2,102545,2,2,0,1,2,,0.0,652.0,11,0.0,0.0,3.0,1.0,1.0,6,5,2137.0055593736,210.0,25840.78557759162,0,5,2,3,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017801316396468172,25840.78557759162,7,4,7,7_0,7_3,7_0_1 -31652,2,61.0,0.0,2,111,285.0,553.0,0.0,0,43,0.0,0.0,393.9196548591402,838.0,0.0,1002.9500541686392,71,0,0,0,0,0,0,0,0,1,20.0,2,,2,112811,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,3,3,470.481984808098,285.0,34666.1876002874,0,1,0,1,62.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02417341098082134,34666.1876002874,9,5,9,9_0,9_3,9_0_1 -31654,2,56.0,0.0,2,111,500.0,0.0,0.0,0,54,0.0,0.0,691.0871137879653,802.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117090,2,1,0,1,2,,54.0,,12,1.0,3.0,3.0,1.0,1.0,2,2,1768.03767179072,500.0,14663.204989568056,0,4,1,2,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05469472741945382,14663.204989568056,3,2,3_0,3_0_0,3_3_0,3_0_1 -31655,2,58.0,0.0,2,111,200.0,350.0,0.0,0,53,0.0,0.0,276.4348455151861,550.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,0,,2,,2,105344,1,2,0,1,2,,0.0,530.0,12,1.0,2.0,2.0,1.0,1.0,5,5,2019.04300647293,200.0,25566.848249261457,0,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02151223313244673,25566.848249261457,7,4,7,7_0,7_3,7_0_1 -31656,2,40.0,0.0,2,111,450.0,200.0,0.0,0,38,0.0,0.0,621.9784024091688,650.0,0.0,362.73058016948977,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,114552,2,1,0,1,1,444.0,0.0,713.0,32,1.0,0.0,4.0,3.0,1.6,2,2,1833.75894948104,450.0,31202.996103013687,0,1,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020831332922456793,19501.872564383553,5,3,5,5_0,5_3,5_0_1 -31657,2,31.0,0.0,9,111,660.0,0.0,0.0,43,56,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,103535,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,4,3,1625.498895451,660.0,54111.97536454035,1,1,1,2,64.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01219693044938254,25767.607316447782,7,4,7,7_0,7_3,7_0_0 -31658,2,65.0,0.0,2,111,200.0,750.0,0.0,0,77,0.0,0.0,276.4348455151861,950.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,0,,2,,2,100347,2,1,0,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1765.4357670923,200.0,21258.751296622424,0,5,0,1,79.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04468747889961605,21258.751296622424,5,3,5,5_0,5_3,5_0_1 -31659,2,33.0,0.0,2,111,550.0,350.0,0.0,85,68,0.0,0.0,760.1958251667618,900.0,0.0,634.7785152966071,10,0,0,0,0,0,0,0,0,2,25.0,2,,2,122644,1,2,0,0,2,,0.0,700.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1897.96568981009,550.0,22641.40909977997,6,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03975017614997939,10781.623380847604,2,1,2_0,2_0_0,2_3_0,2_0_1 -31660,2,54.0,0.0,2,111,800.0,150.0,0.0,22,56,0.0,0.0,1105.7393820607444,950.0,0.0,272.04793512711734,12,0,0,0,0,0,0,0,0,2,1.0,1,,2,110485,2,1,2,0,1,,0.0,1200.0,43,2.0,1.0,5.0,3.0,1.8,2,2,1482.15423616143,800.0,26934.796314453975,1,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03527036139086016,14963.775730252208,3,2,3_0,3_1_0,3_3_0,3_0_1 -31661,2,41.0,0.0,1,111,0.0,0.0,0.0,85,34,0.0,0.0,0.0,1091.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,108340,2,1,2,0,1,,250.0,,42,1.0,0.0,5.0,4.0,2.1,1,1,1402.45371589065,0.0,36299.301432592525,6,1,1,2,91.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030055674818590578,17285.381634567868,4,2,4_0,4_1_0,4_3_0,4_1_0 -31662,2,70.0,0.0,2,111,1200.0,1600.0,0.0,0,74,0.0,0.0,1658.6090730911167,2800.0,0.0,2901.844641355918,44,0,0,0,0,0,0,0,0,0,,2,,2,102138,2,1,0,0,1,,439.0,,11,0.0,1.0,3.0,1.0,1.0,3,2,1768.03767179072,1200.0,25799.667496514856,0,5,1,2,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.10852853046955886,25799.667496514856,7,4,7,7_0,7_3,7_0_1 -31663,2,83.0,0.0,2,111,846.0,1300.0,0.0,86,74,0.0,0.0,1169.3193965292373,2146.0,0.0,2357.7487711016834,70,0,0,0,0,0,0,0,0,0,,2,,2,100477,1,2,0,1,2,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1755.88623123714,846.0,32214.620533555055,6,5,0,1,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06661571561163374,21476.413689036704,6,3,6,6_0,6_3,6_0_1 -31664,2,79.0,0.0,6,111,546.0,0.0,0.0,77,77,0.0,434.77245202417225,754.6671282564581,1110.0,247.7270886033876,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111115,2,2,2,0,1,,320.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1332.13678082349,546.0,35442.46086000202,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031318367096023834,23628.307240001348,6,3,6,6_1,6_3,6_0_0 -31665,1,51.0,300.0,8,111,360.0,400.0,0.0,56,21,0.0,0.0,497.582721927335,760.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,102314,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.8,3,3,1421.86641272829,360.0,19155.01082966209,1,1,1,2,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03967630228760393,6841.075296307889,1,1,1_1,1_1_1,1_3_1,1_0_0 -31666,2,69.0,0.0,2,111,300.0,500.0,0.0,0,77,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,43,0,0,0,0,0,0,0,0,0,,2,,2,105550,2,2,0,0,1,,0.0,372.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1867.04641996861,300.0,16211.64991879308,0,5,2,3,98.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.049347228937667444,16211.64991879308,4,2,4_0,4_0_0,4_3_0,4_0_1 -31667,1,36.0,23.0,2,111,360.0,1200.0,0.0,56,46,0.0,0.0,497.582721927335,1560.0,0.0,2176.3834810169387,41,1,2,2,2,1,2,2,2,3,30.0,2,,2,123929,2,2,0,1,1,1500.0,0.0,496.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1791.99003355001,360.0,35654.000769348546,1,1,2,3,87.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04375385556565981,19807.778205193637,5,3,5,5_0,5_3,5_0_1 -31669,1,32.0,480.0,7,111,1000.0,0.0,0.0,85,63,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,122885,2,2,0,0,1,,0.0,490.0,42,1.0,0.0,3.0,5.0,2.4,2,2,516.440763423271,1000.0,17162.054563505186,6,4,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05826808184880631,7150.856068127161,1,1,1_1,1_0_1,1_3_1,1_0_0 -31670,2,45.0,0.0,5,111,880.0,0.0,0.0,45,34,0.0,186.3310508675024,1216.313320266819,1060.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,126373,2,1,0,0,1,,0.0,750.0,43,2.0,0.0,4.0,3.0,2.0,4,3,1933.81978331289,880.0,71631.86979297346,1,1,2,3,81.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014797882605375992,35815.93489648673,9,5,9,9_0,9_3,9_0_0 -31671,1,25.0,270.0,2,111,600.0,200.0,0.0,0,63,0.0,0.0,829.3045365455583,800.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,2,116723,2,2,0,0,1,,0.0,371.0,22,1.0,6.0,3.0,2.0,1.5,3,2,478.520596144507,600.0,12363.555981413887,0,1,2,3,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06470630304118319,8242.370654275925,1,1,1_1,1_0_1,1_3_1,1_0_1 -31672,2,56.0,0.0,2,111,265.0,695.0,0.0,0,55,0.0,0.0,366.2761703076216,960.0,0.0,1260.488766088977,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,122948,2,2,0,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,2,2,1840.49069919261,265.0,16656.779060710625,0,1,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05763419185071689,16656.779060710625,4,2,4_0,4_0_0,4_3_0,4_0_1 -31673,1,44.0,112.0,9,111,700.0,0.0,0.0,0,22,896.1509262108004,0.0,967.5219593031513,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,127364,2,1,0,0,1,,300.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1815.02130973425,700.0,13478.170209166556,0,1,0,1,66.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09645226168132712,13478.170209166556,3,2,3_1,3_0_1,3_3_1,3_0_0 -31674,2,59.0,0.0,2,111,293.0,71.0,0.0,0,75,0.0,0.0,404.97704867974767,364.0,0.0,128.76935596016887,50,0,0,0,0,0,0,0,0,0,,2,,2,112060,2,3,0,1,2,,694.0,,31,0.0,0.0,5.0,3.0,2.0,2,2,2000.2477087609,293.0,35120.769706947984,0,7,0,1,111.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010364237544827768,17560.384853473992,4,2,4_0,4_0_0,4_3_0,4_0_1 -31675,2,62.0,0.0,6,111,1000.0,1400.0,0.0,75,34,0.0,258.79312620486445,1382.1742275759307,2650.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,130463,2,1,3,0,1,,480.0,,42,1.0,3.0,5.0,2.0,1.5,3,1,1284.84001489163,1000.0,23928.532794448583,5,1,0,1,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11074644746354025,15952.355196299055,3,2,3_0,3_1_0,3_3_0,3_0_0 -31676,2,32.0,0.0,9,111,770.0,0.0,0.0,21,42,0.0,0.0,1064.2741552334664,770.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,2006.0,6,101422,2,2,0,0,1,,350.0,319.0,43,2.0,0.0,3.0,3.0,1.8,3,3,1647.29369808313,770.0,30631.143046422076,1,1,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0251378147669204,17017.30169245671,4,2,4_0,4_0_0,4_3_0,4_0_0 -31677,2,61.0,0.0,9,111,240.0,474.0,0.0,0,77,0.0,0.0,331.72181461822333,714.0,0.0,859.6714750016907,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,105406,2,1,0,0,1,,0.0,568.0,11,0.0,4.0,2.0,1.0,1.0,3,3,2262.48232749094,240.0,17387.401901901067,0,5,2,3,38.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04106421442538429,17387.401901901067,4,2,4_0,4_0_0,4_3_0,4_0_0 -31678,1,26.0,434.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2191.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2011.0,6,122299,1,1,0,0,1,,0.0,600.0,32,1.0,0.0,4.0,3.0,1.6,2,2,2008.1180962947,0.0,12525.460935441464,0,4,2,3,83.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.17492370231265883,7828.413084650915,1,1,1_1,1_0_1,1_3_1,1_0_0 -31679,2,61.0,0.0,9,111,440.0,900.0,0.0,75,22,0.0,0.0,608.1566601334094,1340.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,1,5.0,2,2004.0,6,105587,2,1,0,0,1,,0.0,1050.0,42,1.0,4.0,3.0,2.0,1.5,3,2,2103.80180986498,440.0,37347.45349621716,5,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.035879286927440066,24898.30233081144,7,4,7,7_0,7_3,7_0_0 -31680,2,36.0,0.0,9,111,1000.0,0.0,0.0,37,37,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,123108,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1661.2916958686,1000.0,117057.18156159423,1,1,1,2,87.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00854283339697369,55741.515029330585,10,5,10,10_0,10_3,10_0_0 -31683,1,44.0,232.0,9,111,500.0,0.0,0.0,0,56,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,103699,2,2,0,0,1,,170.0,360.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1501.93088018038,500.0,20734.54720497081,0,1,2,3,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.024114343807813278,13823.03146998054,3,2,3_1,3_0_1,3_3_1,3_0_0 -31684,1,28.0,170.0,2,111,500.0,0.0,0.0,0,54,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105489,2,2,0,0,1,,0.0,420.0,22,2.0,0.0,1.0,2.0,1.5,3,2,2295.11789558315,500.0,18645.65519433595,0,4,2,3,28.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.026815898652458543,12430.436796223965,2,1,2_1,2_0_1,2_3_1,2_0_1 -31685,2,33.0,0.0,2,111,350.0,0.0,0.0,54,46,0.0,0.0,483.76097965157567,350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,1.0,2,,2,109778,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,2046.79113413866,350.0,57355.26084581572,1,1,1,2,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006102317291187663,31864.033803230956,8,4,8,8_0,8_3,8_0_1 -31686,2,58.0,0.0,2,111,500.0,1200.0,0.0,21,37,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,102017,2,2,0,0,1,,0.0,830.0,43,2.0,5.0,4.0,2.0,1.5,1,1,1934.74771019254,500.0,11436.876067328089,1,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1486419884234313,7624.584044885392,1,1,1_0,1_0_0,1_3_0,1_0_1 -31687,0,65.0,0.0,2,111,700.0,70.0,0.0,0,78,0.0,0.0,967.5219593031513,770.0,0.0,126.95570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,119838,2,3,0,0,1,,100.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,2101.70002604238,700.0,13084.712209465577,0,5,5,0,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05884730116134892,13084.712209465577,2,1,2_0,2_0_0,2_3_0,2_0_1 -31690,2,72.0,0.0,5,111,1000.0,0.0,0.0,75,74,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,130426,2,2,0,0,2,,178.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1818.4086381903,1000.0,78875.96563927445,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012678133217073076,52583.97709284964,10,5,10,10_0,10_3,10_0_0 -31691,2,36.0,0.0,6,111,450.0,550.0,0.0,46,35,0.0,0.0,621.9784024091688,1000.0,0.0,997.5090954660969,20,0,0,0,0,0,0,0,0,1,10.0,2,,4,131679,1,2,0,0,2,,0.0,590.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1897.6879679041,450.0,37135.56439534449,4,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026928364124320817,24757.042930229658,7,4,7,7_0,7_3,7_0_0 -31693,1,41.0,170.0,6,111,400.0,0.0,0.0,0,52,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,104487,1,3,0,0,2,,145.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2728.11251102061,400.0,4839.267902296582,0,4,2,3,26.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.08265713080488292,4839.267902296582,1,1,1_1,1_0_1,1_3_1,1_0_0 -31694,1,27.0,170.0,1,111,348.0,0.0,0.0,0,55,0.0,0.0,480.99663119642383,348.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,132662,1,3,0,0,2,,0.0,350.0,12,1.0,0.0,1.0,1.0,1.0,4,2,2712.69297450511,348.0,10627.175082738004,0,4,3,4,25.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.03274623757401583,10627.175082738004,2,1,2_1,2_0_1,2_3_1,2_1_0 -31696,1,25.0,170.0,1,111,550.0,0.0,0.0,0,67,0.0,0.0,760.1958251667618,550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,130231,1,2,0,0,2,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2760.26264131295,550.0,7614.727123498564,0,1,2,3,28.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07222845823361614,7614.727123498564,1,1,1_1,1_0_1,1_3_1,1_1_0 -31700,0,23.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,352.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,1,125866,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,2712.69297450511,0.0,22875.27969438395,0,1,5,0,28.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015387789994385013,22875.27969438395,6,3,6,6_0,6_3,6_1_0 -31702,2,66.0,0.0,1,111,1100.0,0.0,0.0,74,74,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,132730,2,1,0,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,2007.28023125784,1100.0,37392.33408614338,6,5,1,2,180.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.029417794499424714,24928.222724095587,7,4,7,7_0,7_3,7_1_0 -31703,2,67.0,0.0,1,111,700.0,0.0,0.0,34,74,209.1018827825201,0.0,967.5219593031513,840.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128342,1,2,2,0,1,,520.0,,42,1.0,3.0,6.0,2.0,1.5,3,3,1368.87989920764,700.0,191193.68660964275,1,5,0,1,180.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.004393450510293341,127462.45773976184,10,5,10,10_1,10_3,10_1_0 -31704,0,27.0,0.0,1,111,200.0,0.0,0.0,0,46,0.0,0.0,276.4348455151861,200.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,15.0,2,,1,108325,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2412.12079282957,200.0,23540.952489526957,0,1,5,0,28.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.008495832957012985,23540.952489526957,6,3,6,6_0,6_3,6_1_0 -31705,0,54.0,0.0,1,111,0.0,0.0,0.0,78,56,0.0,0.0,0.0,914.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,105384,2,2,0,0,2,,0.0,,42,1.0,3.0,2.0,2.0,1.5,4,4,1850.15919743551,0.0,30093.305305519414,5,1,5,0,50.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.030372203741686137,20062.20353701294,5,3,5,5_0,5_3,5_1_0 -31706,2,46.0,0.0,2,111,950.0,0.0,0.0,65,56,0.0,0.0,1313.065516197134,1081.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120929,1,1,0,1,2,807.0,0.0,635.0,43,2.0,1.0,4.0,4.0,2.5,2,2,1729.03087871924,950.0,33743.971201194996,1,1,2,3,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03203535213904278,13497.588480477998,3,2,3_0,3_0_0,3_3_0,3_0_1 -31707,2,72.0,0.0,2,111,360.0,100.0,0.0,22,74,0.0,0.0,497.582721927335,1144.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,2,103299,1,3,0,1,2,528.0,0.0,706.0,42,1.0,0.0,4.0,2.0,1.5,1,1,1934.74771019254,360.0,39137.50759777441,4,5,2,3,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.029230272192014968,26091.67173184961,7,4,7,7_0,7_3,7_0_1 -31708,2,74.0,0.0,9,111,198.0,0.0,0.0,0,77,0.0,0.0,273.6704970600342,475.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,102530,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1690.42059519213,198.0,7025.3648463278705,0,5,0,1,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06761214689772027,7025.3648463278705,1,1,1_0,1_0_0,1_3_0,1_0_0 -31709,2,83.0,0.0,2,111,253.0,0.0,0.0,77,78,0.0,0.0,349.69007957671045,1087.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127203,2,2,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1800.08696678645,253.0,8921.504405808299,5,5,0,1,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.12184043750427499,5947.669603872199,1,1,1_0,1_0_0,1_3_0,1_0_1 -31712,2,48.0,0.0,8,300,1800.0,0.0,0.0,52,53,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,114249,2,1,1,0,1,,300.0,,43,3.0,0.0,4.0,4.0,2.5,2,2,1821.7577382858,1800.0,54985.280397360555,1,1,1,2,98.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032736033843821316,21994.112158944223,6,3,6,6_1,6_1,6_0_0 -31713,2,65.0,0.0,8,300,0.0,0.0,0.0,74,75,0.0,0.0,0.0,2627.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,118252,2,1,1,0,1,,444.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1892.96579145743,0.0,190710.15394620673,6,5,0,1,144.0,0,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01377483026279237,127140.10263080448,10,5,10,10_1,10_1,10_0_0 -31714,2,44.0,0.0,9,300,650.0,900.0,0.0,46,34,0.0,0.0,898.4132479243549,1550.0,0.0,1632.287610762704,33,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,108870,2,1,1,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,2014.62123159007,650.0,63655.3078343057,1,1,1,2,130.0,0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02434989402666371,27676.22079752422,7,4,7,7_1,7_1,7_0_0 -31715,2,66.0,0.0,9,300,1300.0,0.0,0.0,77,74,0.0,310.55175144583734,1796.8264958487098,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123733,2,1,1,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,3,3,2070.30213368215,1300.0,51240.92567264543,5,5,0,1,159.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031225040902298676,34160.61711509695,9,5,9,9_1,9_1,9_0_0 -31716,2,68.0,0.0,1,300,3000.0,0.0,0.0,72,72,0.0,745.3242034700096,4146.522682727792,3870.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110299,2,1,1,0,2,,440.0,,41,0.0,2.0,8.0,2.0,1.5,1,1,2154.39394335146,3000.0,22239.26936939604,5,5,0,1,170.0,0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1740165081738519,14826.17957959736,3,2,3_0,3_1_0,3_1_0,3_1_0 -31717,2,74.0,0.0,6,300,530.0,0.0,0.0,77,78,0.0,538.289702506118,732.5523406152432,1170.0,206.439240502823,0.0,41,2,2,2,2,1,2,1,2,0,,1,,4,114092,2,1,2,0,1,,310.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,2105.57176117806,530.0,20165.68114287801,5,5,0,1,150.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.05801936427092687,13443.78742858534,3,2,3_0,3_1_0,3_1_0,3_0_0 -31718,2,65.0,0.0,8,300,800.0,0.0,0.0,85,75,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2001.0,6,120161,2,1,2,0,1,,400.0,,41,0.0,0.0,3.0,4.0,2.1,1,1,2035.28903315228,800.0,28746.116658637606,6,5,0,1,91.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027829846010160707,13688.626980303621,3,2,3_0,3_1_0,3_1_0,3_0_0 -31719,2,45.0,0.0,2,300,1140.0,0.0,0.0,22,48,0.0,621.1035028916747,1575.678619436561,2040.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,100863,2,2,3,0,1,,360.0,,43,2.0,4.0,4.0,3.0,1.8,2,2,2183.87725370904,1140.0,36581.382399382725,4,1,1,2,80.0,0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05576607187032995,20322.990221879292,5,3,5,5_1,5_1,5_0_1 -31721,0,91.0,0.0,1,300,650.0,0.0,0.0,0,78,3733.962192545002,0.0,898.4132479243549,3250.0,172.03270041901916,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,119356,2,3,4,0,2,,250.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2362.93873381539,650.0,9890.786620126079,0,5,0,1,100.0,0,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.32858862745929623,9890.786620126079,2,1,2_0,2_1_0,2_1_0,2_1_0 -31722,2,67.0,0.0,1,300,1129.0,0.0,0.0,52,74,0.0,0.0,1560.4747029332257,1239.0,189.2359704609211,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,133509,2,2,1,0,1,,355.0,695.0,42,1.0,2.0,6.0,2.0,1.5,2,2,2480.72395004137,1129.0,35233.69109760737,4,5,2,3,87.0,0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03516520584140948,23489.127398404915,6,3,6,6_1,6_1,6_1_0 -31723,2,67.0,0.0,7,300,687.0,0.0,0.0,11,71,0.0,0.0,949.5536943446643,2258.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108603,1,1,2,0,1,,400.0,,42,3.0,2.0,5.0,4.0,2.5,4,4,1754.23797426228,687.0,48947.42016778757,1,5,0,1,90.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046131134026262656,19578.968067115027,5,3,5,5_1,5_1,5_0_0 -31724,2,69.0,0.0,1,300,710.0,2600.0,0.0,75,74,0.0,0.0,981.3437015789107,3310.0,0.0,4715.497542203367,70,0,0,0,0,0,0,0,0,0,,1,,1,107826,1,1,2,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,2114.70993901258,710.0,70046.04730568659,5,5,0,1,200.0,0,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04725462930912994,46697.36487045773,10,5,10,10_1,10_1,10_1_0 -31725,1,56.0,258.0,1,300,300.0,0.0,0.0,0,67,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,132500,2,2,0,0,1,,70.0,,12,1.0,0.0,1.0,1.0,1.0,4,3,3009.527240978,300.0,6180.597224784707,0,4,1,2,26.0,0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04853899859336815,6180.597224784707,1,1,1_1,1_0_1,1_1_1,1_1_0 -31726,2,55.0,0.0,1,211,1200.0,0.0,0.0,56,62,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,111253,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1552.62166434441,1200.0,35099.13907778783,4,1,0,1,100.0,1,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03418887276239231,19499.52170988213,5,3,5,5_1,5_1,5_1_0 -31727,0,90.0,0.0,2,211,300.0,0.0,0.0,72,72,3733.962192545002,0.0,414.65226827277917,3000.0,344.06540083803833,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,131170,2,2,5,0,2,,136.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1285.21388693046,300.0,21909.792997065255,5,5,0,1,135.0,1,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1369250727472341,14606.52866471017,3,2,3_0,3_1_0,3_1_0,3_0_1 -31728,2,67.0,0.0,1,300,1200.0,0.0,0.0,77,75,0.0,0.0,1658.6090730911167,1305.0,180.63433543997013,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131353,2,2,1,0,1,,380.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,1745.74879357532,1200.0,29705.98558011938,5,5,0,1,100.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04393054041180732,19803.990386746253,5,3,5,5_1,5_0,5_1_0 -31729,2,69.0,0.0,1,300,1380.0,0.0,0.0,78,86,0.0,0.0,1907.4004340547842,1380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118358,1,1,2,0,2,,270.0,493.0,41,0.0,8.0,3.0,2.0,1.5,4,3,1962.96996693065,1380.0,37301.5893781122,5,5,2,3,70.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03699574262135209,24867.7262520748,7,4,7,7_1,7_0,7_1_0 -31730,2,44.0,0.0,2,300,345.0,0.0,0.0,55,21,1194.8679016144006,0.0,476.85010851369606,1145.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,2.0,1,,2,113202,2,1,2,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1694.72407032784,345.0,53404.99801232548,1,1,1,2,90.0,0,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021439940878487485,25430.951434440703,7,4,7,7_1,7_0,7_0_1 -31731,2,65.0,0.0,9,300,1500.0,0.0,0.0,77,78,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,131733,2,1,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1520.95975929387,1500.0,27842.706745920186,5,5,0,1,89.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053874072434419336,18561.804497280125,4,2,4_0,4_1_0,4_0_0,4_0_0 -31732,2,43.0,0.0,6,111,720.0,0.0,0.0,43,37,0.0,310.55175144583734,995.16544385467,1110.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,104843,2,2,5,0,1,,600.0,858.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1294.29330225118,720.0,48660.25138425992,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022811226173793473,23171.54827821901,6,3,6,6_1,6_3,6_0_0 -31733,2,68.0,0.0,2,111,1500.0,0.0,0.0,0,78,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,111487,2,1,1,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1197.95977961848,1500.0,18665.618583342064,0,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08036165494877621,18665.618583342064,4,2,4_0,4_1_0,4_3_0,4_0_1 -31734,2,46.0,0.0,8,111,880.0,828.0,0.0,56,52,0.0,0.0,1216.313320266819,1708.0,0.0,1501.7046019016877,50,2,2,1,2,1,2,2,2,2,30.0,1,2000.0,6,111086,2,1,2,0,1,,490.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1093.03929446164,880.0,29456.26053251078,1,1,1,2,101.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.05798427801502115,12807.06979674382,2,1,2_0,2_1_0,2_3_0,2_0_0 -31735,2,52.0,0.0,6,111,1533.0,0.0,0.0,54,53,0.0,0.0,2118.8730908739017,1533.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,100464,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,1102.44347440834,1533.0,84105.13734916155,1,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018227186213795328,42052.568674580776,9,5,9,9_1,9_3,9_0_0 -31736,2,39.0,0.0,1,111,1170.0,0.0,0.0,52,43,0.0,62.110350289167464,1617.1438462638387,1230.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,126339,1,1,1,0,1,,333.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1243.38683669319,1170.0,50589.59056181215,1,1,1,2,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024313302130744518,28105.328089895636,8,4,8,8_1,8_3,8_1_0 -31737,2,61.0,0.0,7,111,1490.0,1200.0,0.0,54,74,0.0,0.0,2059.4395990881367,6558.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,0,,1,,5,121835,2,1,2,0,1,,800.0,,42,1.0,2.0,5.0,3.0,2.0,2,2,1287.09263173792,1490.0,24512.755882909547,1,5,0,1,130.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.26753417817750474,12256.377941454773,2,1,2_0,2_1_0,2_3_0,2_0_0 -31738,2,70.0,0.0,7,111,614.0,937.0,0.0,77,75,0.0,0.0,848.6549757316213,1551.0,0.0,1699.3927680940596,31,0,0,0,0,0,0,0,0,0,,1,,5,131245,2,1,3,0,1,,662.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1136.69728193299,614.0,29931.77091959222,5,5,0,1,113.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05181784947394386,19954.513946394814,5,3,5,5_1,5_3,5_0_0 -31739,2,58.0,0.0,7,111,1402.0,0.0,0.0,52,53,0.0,96.27104294820957,1937.8082670614547,1549.0,92.89765822627035,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,128108,2,1,2,0,1,,347.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1178.17904416494,1402.0,51322.478058759676,1,1,0,1,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030181707091900992,34214.98537250645,9,5,9,9_1,9_3,9_0_0 -31740,2,42.0,0.0,7,111,2066.0,0.0,0.0,54,22,0.0,0.0,2855.5719541718727,2066.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,127402,2,1,2,0,1,,714.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1092.75311913343,2066.0,47031.63179725925,1,1,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04392788259837489,18812.6527189037,5,3,5,5_1,5_3,5_0_0 -31741,2,58.0,0.0,7,111,800.0,0.0,0.0,0,78,0.0,0.0,1105.7393820607444,860.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,110658,2,2,1,0,1,,350.0,,21,0.0,1.0,5.0,2.0,1.5,1,1,1116.37260383235,800.0,24750.148109358543,0,7,0,1,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03474726681230712,16500.09873957236,4,2,4_0,4_1_0,4_3_0,4_0_0 -31742,2,46.0,0.0,9,111,567.0,0.0,0.0,0,47,0.0,0.0,783.6927870355527,567.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,104135,2,1,1,0,1,,200.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1186.75772563724,567.0,25325.13151454443,0,1,1,2,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02238882746470111,25325.13151454443,7,4,7,7_1,7_3,7_0_0 -31743,2,44.0,0.0,2,111,1093.0,1028.0,0.0,54,54,0.0,388.18968930729665,1510.7164307404921,2496.0,0.0,1864.4351820711775,71,0,0,0,0,0,0,0,0,0,,1,,2,131530,2,3,1,0,1,,515.0,,43,2.0,1.0,9.0,7.0,3.8,1,1,1261.66896516815,1093.0,88879.98362201196,1,1,0,1,167.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028082813455670375,23389.469374213677,6,3,6,6_1,6_3,6_0_1 -31744,2,71.0,0.0,5,111,300.0,0.0,0.0,0,75,2987.1697540360015,0.0,414.65226827277917,2370.0,120.42289029331342,0.0,43,2,2,2,1,1,2,1,2,0,,1,,3,120432,1,3,3,1,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,2,2,1343.32626788371,300.0,16631.844951609564,0,5,0,1,99.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.14249772090201218,16631.844951609564,4,2,4_0,4_1_0,4_3_0,4_0_0 -31745,1,48.0,169.0,2,111,600.0,0.0,0.0,0,22,0.0,0.0,829.3045365455583,680.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132726,2,1,2,0,1,,30.0,466.0,12,1.0,3.0,5.0,1.0,1.0,1,1,1345.53935858841,600.0,5761.524471562101,0,4,2,3,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.1180243186254547,5761.524471562101,1,1,1_1,1_1_1,1_3_1,1_0_1 -31746,0,24.0,0.0,5,111,1415.0,0.0,0.0,43,63,0.0,62.110350289167464,1955.7765320199417,1475.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,3,100063,1,1,3,0,2,,347.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1320.32679848114,1415.0,42385.628471565054,1,1,5,0,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0347995311899061,23547.571373091698,6,3,6,6_1,6_3,6_0_0 -31747,0,78.0,0.0,2,111,710.0,0.0,0.0,78,78,0.0,0.0,981.3437015789107,740.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112327,2,1,2,0,2,,230.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1115.76405183559,710.0,21300.988225461246,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03474017224775853,14200.658816974164,3,2,3_0,3_1_0,3_3_0,3_0_1 -31748,2,55.0,0.0,6,111,4800.0,0.0,0.0,56,37,0.0,0.0,6634.436292364467,9983.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,125005,1,2,3,0,1,,247.0,,43,3.0,1.0,6.0,4.0,2.5,4,3,1169.01917811591,4800.0,109340.04836104138,1,1,0,1,145.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09130231922923689,43736.01934441655,10,5,10,10_1,10_3,10_0_0 -31749,2,58.0,0.0,1,111,476.0,879.0,0.0,0,35,0.0,258.79312620486445,657.9149323261429,1605.0,0.0,1594.2008998449076,50,2,2,2,2,1,2,2,2,0,,1,,1,102087,2,3,3,0,1,,183.0,,12,1.0,2.0,6.0,1.0,1.0,4,4,1189.0866593127,476.0,35208.031298016744,0,1,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.045586189878512436,35208.031298016744,9,5,9,9_1,9_3,9_1_0 -31750,2,54.0,0.0,1,111,1730.0,1610.0,0.0,45,22,0.0,0.0,2391.16141370636,3340.0,0.0,2919.9811703643927,71,0,0,0,0,0,0,0,0,1,1.0,1,,1,107655,2,1,2,0,1,,653.0,,43,2.0,2.0,5.0,2.0,1.5,4,3,1141.64470833981,1730.0,85219.13605052182,1,1,1,2,180.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03919307510956101,56812.75736701454,10,5,10,10_1,10_3,10_1_0 -31751,1,54.0,188.0,1,111,606.0,0.0,0.0,0,63,0.0,0.0,837.5975819110139,606.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,122049,2,2,0,0,1,,195.0,492.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1817.64701983708,606.0,13385.778549319815,0,1,2,3,42.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04527192779763963,13385.778549319815,3,2,3_1,3_0_1,3_3_1,3_1_0 -31752,2,39.0,0.0,1,111,789.0,0.0,0.0,34,42,0.0,0.0,1090.5354655574092,789.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,100306,2,1,1,0,1,,317.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1314.17941273659,789.0,33896.128001246005,1,1,1,2,75.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023276994940867487,18831.182222914445,5,3,5,5_1,5_3,5_1_0 -31753,2,54.0,0.0,1,111,1082.0,0.0,0.0,0,52,0.0,0.0,1495.512514237157,1082.0,0.0,0.0,50,1,2,2,1,1,2,1,2,0,,2,,1,111394,1,2,0,0,2,,0.0,420.0,22,1.0,3.0,3.0,2.0,1.5,2,2,1388.40400377344,1082.0,41293.029702820524,0,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.026202969551689104,27528.686468547017,7,4,7,7_0,7_3,7_1_0 -31754,2,31.0,0.0,9,111,360.0,0.0,0.0,0,63,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,25.0,2,2010.0,6,114765,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1480.89585422208,360.0,19628.821928631933,0,1,1,2,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.01834037729360006,19628.821928631933,5,3,5,5_0,5_3,5_0_0 -31755,1,52.0,181.0,1,111,350.0,0.0,0.0,0,63,0.0,0.0,483.76097965157567,410.0,103.2196202514115,0.0,50,2,2,2,1,2,1,2,2,0,,1,,1,125318,1,3,4,0,2,,246.0,480.0,12,1.0,4.0,2.0,1.0,1.0,2,2,1606.25199464515,350.0,11913.19781376022,0,4,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,1,1,0,1,0.034415612534061474,11913.19781376022,2,1,2_1,2_1_1,2_3_1,2_1_0 -31756,2,51.0,0.0,7,111,2200.0,0.0,0.0,85,21,0.0,207.03450096389156,3040.783300667047,2520.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119651,2,1,1,0,1,,1000.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,1321.3707795409,2200.0,63230.27715493826,6,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03985432475371,31615.13857746913,8,4,8,8_1,8_3,8_0_0 -31757,2,74.0,0.0,6,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,767.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131710,1,1,3,0,1,,364.0,,11,0.0,2.0,4.0,1.0,1.0,4,3,1330.80899463663,0.0,22561.12557375948,0,5,0,1,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033996530780010664,22561.12557375948,6,3,6,6_1,6_3,6_0_0 -31758,2,40.0,0.0,1,111,727.0,0.0,0.0,0,63,0.0,0.0,1004.8406634477016,727.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,123497,2,1,0,0,1,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2131.0966988663,727.0,17252.433484079782,0,1,3,4,37.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.042138982924980514,17252.433484079782,4,2,4_0,4_0_0,4_3_0,4_1_0 -31759,2,41.0,0.0,8,111,0.0,0.0,0.0,31,37,0.0,0.0,0.0,1255.0,0.0,0.0,31,2,2,1,2,1,2,2,2,2,45.0,1,2001.0,6,119549,2,1,2,0,1,,429.0,,43,2.0,0.0,6.0,4.0,2.3,2,2,1194.57461244561,0.0,47809.27037711056,1,1,1,2,89.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.026250139148763313,20786.639294395896,5,3,5,5_1,5_3,5_0_0 -31760,2,62.0,0.0,9,111,1225.0,521.0,0.0,0,21,0.0,0.0,1693.163428780515,1746.0,0.0,944.9131613415209,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,106763,2,2,1,0,1,,0.0,,21,1.0,2.0,5.0,3.0,1.8,3,3,1295.6256032878,1225.0,38848.726430168994,0,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04494355826923835,21582.62579453833,6,3,6,6_1,6_3,6_0_0 -31761,2,49.0,0.0,6,111,1200.0,0.0,0.0,47,22,0.0,0.0,1658.6090730911167,3287.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,4,125876,2,1,2,0,1,,256.0,,43,2.0,0.0,4.0,2.0,1.5,3,3,1213.07931359647,1200.0,36643.86980395108,4,1,1,2,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0897012247228753,24429.246535967384,7,4,7,7_1,7_3,7_0_0 -31762,2,82.0,0.0,7,111,1060.0,0.0,0.0,0,77,0.0,0.0,1465.1046812304864,1060.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,129266,2,2,0,0,1,,225.0,704.0,11,0.0,1.0,3.0,1.0,1.0,3,3,1855.94873076129,1060.0,29666.19168435102,0,5,2,3,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03573090915336977,29666.19168435102,8,4,8,8_0,8_3,8_0_0 -31763,2,56.0,0.0,2,111,494.0,1073.0,0.0,0,46,0.0,0.0,682.7940684225097,1567.0,0.0,1946.0495626093127,71,0,0,0,0,0,0,0,0,0,,1,,2,126010,2,3,3,0,1,,280.0,,32,1.0,1.0,5.0,2.0,1.5,1,1,1140.98803478213,494.0,15742.48480037212,0,4,0,1,108.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09953955934344999,10494.989866914746,2,1,2_0,2_1_0,2_3_0,2_0_1 -31764,0,78.0,0.0,6,111,485.0,0.0,0.0,0,77,0.0,517.5862524097289,670.3545003743263,1051.0,113.54158227655265,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,102777,2,1,2,0,1,,226.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1261.76656822353,485.0,18863.6204078856,0,5,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.05571570977756996,18863.6204078856,5,3,5,5_1,5_3,5_0_0 -31765,2,83.0,0.0,2,111,1407.0,0.0,0.0,77,78,0.0,0.0,1944.7191381993343,1567.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102058,2,1,3,0,1,,785.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1257.73446730195,1407.0,23207.106315967652,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06752242087682536,15471.404210645102,3,2,3_0,3_1_0,3_3_0,3_0_1 -31766,0,82.0,0.0,5,111,548.0,0.0,0.0,86,86,0.0,0.0,757.43147671161,663.0,197.83760548187203,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,103167,2,1,1,0,1,,158.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1160.95165561467,548.0,11541.069537313144,5,5,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05744701544830583,7694.046358208762,1,1,1_0,1_1_0,1_3_0,1_0_0 -31767,1,50.0,380.0,9,112,750.0,0.0,0.0,0,42,0.0,0.0,1036.630670681948,750.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,105458,1,2,0,0,1,,0.0,624.0,32,1.0,0.0,3.0,3.0,1.8,1,1,2364.09527434946,750.0,17193.678179224462,0,1,2,3,60.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04362068384566155,9552.04343290248,1,1,1_1,1_0_1,1_0_1,1_0_0 -31768,2,93.0,0.0,1,112,800.0,0.0,0.0,0,78,0.0,0.0,1105.7393820607444,830.0,51.60981012570575,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,115902,2,2,2,0,1,,550.0,,11,0.0,4.0,8.0,1.0,1.0,2,2,1641.56096820038,800.0,13082.743705380426,0,5,0,1,125.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0634423496088709,13082.743705380426,2,1,2_0,2_1_0,2_0_0,2_1_0 -31769,2,69.0,0.0,7,112,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,119576,2,1,1,0,1,,213.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1585.82308999651,1000.0,20093.061630747292,0,5,0,1,135.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04976842346761908,20093.061630747292,5,3,5,5_1,5_0,5_0_0 -31770,2,40.0,0.0,9,112,1300.0,0.0,0.0,45,33,0.0,258.79312620486445,1796.8264958487098,1550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107948,2,1,1,0,1,,516.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,1375.6330049437,1300.0,64406.14630271547,1,1,1,2,120.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024066026132270695,30669.593477483555,8,4,8,8_1,8_0,8_0_0 -31771,0,72.0,0.0,6,112,680.0,0.0,0.0,77,69,0.0,652.1586780362584,939.8784747516328,1310.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,105304,2,1,2,0,1,,268.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1551.66106708507,680.0,23191.095276989345,5,5,0,1,108.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056487198398939245,15460.730184659564,3,2,3_0,3_1_0,3_0_0,3_0_0 -31772,2,68.0,0.0,5,112,300.0,0.0,0.0,0,78,0.0,0.0,414.65226827277917,330.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132192,2,1,1,0,2,,200.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,1854.57696158207,300.0,12624.978275720192,0,5,0,1,110.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026138658839092152,12624.978275720192,2,1,2_0,2_1_0,2_0_0,2_0_0 -31773,2,76.0,0.0,6,112,1321.0,0.0,0.0,74,74,0.0,0.0,1825.8521546278043,1381.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,119485,2,1,2,0,1,,950.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1525.93181994651,1321.0,30070.15818756256,5,5,0,1,93.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04592593066474792,20046.772125041705,5,3,5,5_1,5_0,5_0_0 -31774,2,47.0,0.0,8,112,830.0,0.0,0.0,54,65,1941.6603401234008,0.0,1147.2046088880224,2170.0,68.81308016760767,0.0,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,102460,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1568.57918542295,830.0,30135.528840149564,4,4,1,2,136.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0720080278501338,16741.96046674976,4,2,4_0,4_1_0,4_0_0,4_0_0 -31775,2,57.0,0.0,1,112,1000.0,0.0,0.0,43,13,0.0,0.0,1382.1742275759307,4000.0,5160.981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112298,2,1,1,0,1,,300.0,,43,2.0,0.0,9.0,2.0,1.5,3,3,1444.72350319516,1000.0,134616.97606258787,1,1,0,1,185.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029713934430827416,89744.65070839191,10,5,10,10_1,10_0,10_1_0 -31776,2,88.0,0.0,1,112,180.0,0.0,0.0,0,86,1418.9056331671006,0.0,248.7913609636675,1160.0,51.60981012570575,0.0,71,2,2,2,2,1,1,2,2,0,,1,,1,100033,1,3,4,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1781.58445070661,180.0,9517.140178430836,0,5,0,1,60.0,9,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.12188535402987603,9517.140178430836,1,1,1_0,1_1_0,1_0_0,1_1_0 -31777,1,55.0,459.0,7,112,810.0,150.0,0.0,0,56,0.0,0.0,1119.5611243365038,960.0,0.0,272.04793512711734,60,2,2,2,2,2,2,2,1,0,,1,,5,102595,2,3,4,0,1,,50.0,868.0,32,1.0,0.0,3.0,4.0,2.3,2,2,1728.18495188566,810.0,19567.90885956012,0,4,2,3,112.0,9,0,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.04905991779141905,8507.786460678313,1,1,1_1,1_1_1,1_0_1,1_0_0 -31778,2,51.0,0.0,7,112,923.0,0.0,0.0,52,47,1374.0980868565607,0.0,1275.746812052584,1933.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,102917,2,1,2,0,1,,654.0,,43,2.0,0.0,8.0,4.0,2.5,1,1,1333.66543038075,923.0,44788.2736750788,1,1,1,2,135.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04315861812453746,17915.30947003152,4,2,4_0,4_1_0,4_0_0,4_0_0 -31779,2,50.0,0.0,5,112,2150.0,0.0,0.0,42,46,0.0,0.0,2971.674589288251,2150.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,116008,2,1,2,0,1,,584.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1320.60048334155,2150.0,33639.0,1,1,0,1,120.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06391390945034038,16018.571428571428,4,2,4_0,4_1_0,4_0_0,4_0_0 -31780,2,69.0,0.0,6,112,2213.0,0.0,0.0,77,74,0.0,0.0,3058.751565625534,2213.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,126048,2,1,1,0,2,,1870.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1414.86338540962,2213.0,55894.70717191186,5,5,1,2,94.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039592299735887584,37263.13811460791,9,5,9,9_1,9_0,9_0_0 -31781,2,54.0,0.0,6,112,1108.2,0.0,0.0,48,11,0.0,310.55175144583734,1531.7254789996464,1408.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,126573,2,1,2,0,1,,492.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1444.72350319516,1108.2,7124.311028585964,4,1,0,1,160.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.19763314576672272,4749.540685723976,1,1,1_0,1_1_0,1_0_0,1_0_0 -31782,2,63.0,0.0,6,112,2620.0,0.0,0.0,78,74,0.0,0.0,3621.2964762489382,2670.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,106616,1,3,3,0,2,,820.0,,41,0.0,4.0,6.0,2.0,1.5,3,3,1383.26715048428,2620.0,34020.801565975395,6,6,0,1,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07848139600185959,22680.53437731693,6,3,6,6_1,6_0,6_0_0 -31783,2,79.0,0.0,7,112,1798.0,0.0,0.0,90,74,0.0,0.0,2485.1492611815233,1888.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,119831,2,1,1,0,1,,1200.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1383.26715048428,1798.0,66232.95751645407,5,5,0,1,92.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02850544609201498,44155.30501096938,10,5,10,10_1,10_0,10_0_0 -31784,2,85.0,0.0,2,112,475.0,0.0,0.0,86,75,2253.819579420163,0.0,656.532758098567,1984.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,132687,2,1,2,0,1,,632.0,,41,0.0,0.0,6.0,2.0,1.5,1,1,1414.86338540962,475.0,23612.84867885773,5,5,0,1,120.0,9,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08402205201850199,15741.899119238486,3,2,3_0,3_1_0,3_0_0,3_0_1 -31785,2,60.0,0.0,6,112,100.0,0.0,0.0,56,75,0.0,0.0,138.21742275759306,100.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,128527,2,1,1,0,1,,230.0,,42,1.0,0.0,6.0,2.0,1.5,1,1,1442.37461328756,100.0,46379.31015324003,1,5,1,2,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0021561338379030215,30919.540102160023,8,4,8,8_1,8_0,8_0_0 -31786,0,75.0,0.0,1,112,1285.0,0.0,0.0,0,75,0.0,0.0,1776.0938824350708,1353.0,116.98223628493304,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,119959,2,1,1,0,1,,356.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1537.69286572627,1285.0,29352.2682464378,0,5,0,1,75.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04609524513200783,29352.2682464378,8,4,8,8_1,8_0,8_1_0 -31787,2,40.0,0.0,1,112,460.0,0.0,0.0,0,53,0.0,62.110350289167464,635.800144684928,550.0,51.60981012570575,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,110117,2,1,1,0,1,,300.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1709.47628026298,460.0,14520.69292810599,0,4,2,3,70.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037876980301362204,14520.69292810599,3,2,3_0,3_1_0,3_0_0,3_1_0 -31788,2,33.0,0.0,6,112,750.0,0.0,0.0,0,46,1463.7131794776408,0.0,1036.630670681948,1730.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,1.0,1,,4,124905,2,1,1,0,1,,1000.0,,12,1.0,0.0,7.0,1.0,1.0,3,3,1749.88358471176,750.0,27950.36750791235,0,1,0,1,135.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06189542944328949,27950.36750791235,7,4,7,7_1,7_0,7_0_0 -31789,2,77.0,0.0,7,112,62.0,0.0,0.0,0,86,0.0,103.51725048194578,85.6948021097077,252.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124926,2,1,2,0,1,,45.0,,11,0.0,2.0,5.0,1.0,1.0,4,3,1470.9131022559,62.0,19550.227539679265,0,5,0,1,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012889875552012845,19550.227539679265,5,3,5,5_1,5_0,5_0_0 -31791,2,85.0,0.0,7,112,0.0,0.0,0.0,0,74,1493.5848770180007,0.0,0.0,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,119676,2,1,1,0,1,,0.0,980.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1989.03105959036,0.0,48119.71072766246,0,5,2,3,115.0,9,0,9,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02078150481119024,48119.71072766246,10,5,10,10_1,10_0,10_0_0 -31792,2,80.0,0.0,1,400,430.0,0.0,0.0,0,86,0.0,0.0,594.3349178576501,490.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108143,1,1,2,0,2,,200.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1906.7436897172,430.0,16659.50815397448,0,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02941263304241669,16659.50815397448,4,2,4_0,4_1_0,4_0_0,4_1_0 -31793,2,60.0,0.0,6,400,1300.0,0.0,0.0,54,75,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,132346,2,1,2,0,1,,700.0,,42,2.0,0.0,5.0,3.0,2.0,1,1,1743.08307913668,1300.0,152920.32814069447,1,5,0,1,113.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008501158843995769,76460.16407034724,10,5,10,10_1,10_0,10_0_0 -31794,2,67.0,0.0,7,120,1400.0,0.0,0.0,74,74,0.0,0.0,1935.0439186063027,3100.0,2924.555907123326,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,118424,2,1,1,0,1,,400.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1373.88035601568,1400.0,76959.07922706021,5,5,0,1,247.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040281147216610455,51306.05281804014,10,5,10,10_1,10_1,10_0_0 -31795,2,84.0,0.0,5,120,540.0,0.0,0.0,0,77,0.0,0.0,746.3740828910024,2140.0,2752.5232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,109626,2,1,2,0,2,,250.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1467.10618410525,540.0,30727.15284621729,0,5,0,1,90.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0696452421319422,30727.15284621729,8,4,8,8_1,8_1,8_0_0 -31796,2,71.0,0.0,7,120,1158.0,0.0,0.0,77,74,0.0,414.0690019277831,1600.5577555329276,1558.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,112823,2,1,2,0,1,,600.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1404.34395276423,1158.0,83534.84246009184,5,5,0,1,100.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01865090008093716,55689.894973394556,10,5,10,10_1,10_1,10_0_0 -31797,2,78.0,0.0,7,120,840.0,0.0,0.0,74,74,0.0,672.8621281326475,1161.0263511637818,1590.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,100167,2,1,1,0,1,,320.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1359.84040197705,840.0,81511.68236370375,5,5,0,1,110.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019506406368910986,54341.1215758025,10,5,10,10_1,10_1,10_0_0 -31798,0,88.0,0.0,2,120,0.0,0.0,0.0,0,86,0.0,0.0,0.0,3221.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125076,2,1,2,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1778.18815830441,0.0,16536.44487295791,0,6,5,0,40.0,0,2,9,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1947818908323705,16536.44487295791,4,2,4_0,4_1_0,4_1_0,4_0_1 -31799,2,57.0,0.0,6,120,1300.0,0.0,0.0,77,21,0.0,0.0,1796.8264958487098,1420.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,112246,1,1,2,0,2,,800.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1246.5119868402,1300.0,57554.10229632634,6,1,0,1,150.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02467243764291391,38369.40153088423,9,5,9,9_1,9_1,9_0_0 -31800,2,61.0,0.0,1,120,750.0,0.0,0.0,85,42,0.0,517.5862524097289,1036.630670681948,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,105869,1,1,3,0,2,,240.0,,42,1.0,2.0,7.0,2.0,1.5,4,3,1398.4203092986,750.0,51368.52246209846,7,1,1,2,210.0,0,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02433396835430287,34245.68164139897,9,5,9,9_1,9_1,9_1_0 -31801,2,79.0,0.0,5,120,1257.0,0.0,0.0,77,72,0.0,93.1655254337512,1737.3930040629448,1347.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110504,2,1,2,0,1,,480.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1475.62519640878,1257.0,75044.9152977029,5,5,0,1,120.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017949250720804413,50029.94353180193,10,5,10,10_1,10_1,10_0_0 -31802,2,83.0,0.0,7,120,260.0,0.0,0.0,77,72,0.0,310.55175144583734,359.36529916974195,680.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,119657,2,1,1,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1419.33392736162,260.0,37858.67399952376,5,5,0,1,80.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01796153769169396,25239.115999682504,7,4,7,7_1,7_1,7_0_0 -31803,2,70.0,0.0,5,120,900.0,0.0,0.0,75,72,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117752,2,1,2,0,1,,200.0,,41,0.0,4.0,2.0,2.0,1.5,4,3,1423.14430099529,900.0,43545.22464942969,5,5,0,1,60.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022046045409770853,29030.14976628646,8,4,8,8_1,8_1,8_0_0 -31804,2,34.0,0.0,1,120,0.0,0.0,0.0,0,37,0.0,0.0,0.0,510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,123866,2,2,5,0,1,,442.0,540.0,32,1.0,0.0,3.0,3.0,1.6,3,3,1572.74207681731,0.0,19381.934875194067,0,1,2,3,50.0,0,2,9,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026313162400144197,12113.70929699629,2,1,2_0,2_1_0,2_1_0,2_1_0 -31805,2,67.0,0.0,1,120,850.0,0.0,0.0,78,74,0.0,0.0,1174.848093439541,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103094,2,1,1,0,1,,150.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1480.35859235577,850.0,43251.984431526755,5,5,0,1,100.0,0,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019652277489039957,28834.656287684502,8,4,8,8_1,8_1,8_1_0 -31806,0,88.0,0.0,2,120,545.0,0.0,0.0,0,75,0.0,0.0,753.2849540288821,725.0,309.6588607542345,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,133063,2,2,2,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1326.69475200302,545.0,23159.627581888806,0,5,0,1,52.0,0,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03130447574929752,23159.627581888806,6,3,6,6_1,6_1,6_0_1 -31807,2,66.0,0.0,7,120,1265.0,0.0,0.0,77,75,0.0,621.1035028916747,1748.4503978835521,1865.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,103427,2,1,1,0,1,,300.0,,41,0.0,1.0,4.0,3.0,2.0,1,1,1508.37618736882,1265.0,74664.19318715333,5,5,0,1,130.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024978506033343045,37332.096593576665,9,5,9,9_1,9_1,9_0_0 -31808,1,43.0,129.0,1,120,567.0,0.0,0.0,42,52,0.0,372.6621017350048,783.6927870355527,1017.0,154.82943037711726,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,132456,2,1,1,0,1,,400.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,1340.51794700539,567.0,30327.0883051609,4,1,1,2,60.0,0,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.03353437658658884,14441.47062150519,3,2,3_1,3_1_1,3_1_1,3_1_0 -31809,0,70.0,0.0,2,120,1044.0,0.0,0.0,0,74,896.1509262108004,0.0,1442.9898935892716,1714.0,120.42289029331342,0.0,20,1,2,2,2,1,2,2,1,0,,1,,2,128847,1,3,4,0,2,,270.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1467.10618410525,1044.0,17526.268609862418,0,5,0,1,80.0,0,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09779605905591875,17526.268609862418,4,2,4_0,4_1_0,4_1_0,4_0_1 -31810,1,32.0,24.0,7,120,1300.0,0.0,0.0,46,48,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,5,112713,2,1,2,0,1,,436.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1267.70482158873,1300.0,41927.352349665,4,1,1,2,80.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.031006012236553426,19965.405880792856,5,3,5,5_1,5_1,5_0_0 -31811,2,31.0,0.0,7,112,1500.0,0.0,0.0,69,47,0.0,0.0,2073.261341363896,1753.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,5,102243,2,1,0,0,1,,0.0,646.0,43,2.0,0.0,3.0,3.0,1.8,2,2,5415.79608121242,1500.0,7907.716931905368,1,1,2,3,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.22168218906864864,4393.17607328076,1,1,1_0,1_0_0,1_1_0,1_0_0 -31812,1,33.0,299.0,9,112,1300.0,0.0,0.0,0,68,0.0,0.0,1796.8264958487098,1360.0,103.2196202514115,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,129267,2,1,1,0,1,,400.0,825.0,32,1.0,0.0,4.0,4.0,1.9,2,2,3460.79158852142,1300.0,12779.303072156235,0,1,2,3,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.10642207891314444,6725.948985345387,1,1,1_1,1_1_1,1_1_1,1_0_0 -31813,2,68.0,0.0,9,112,1700.0,0.0,0.0,46,74,0.0,0.0,2349.696186879082,1800.0,172.03270041901916,0.0,33,2,2,2,2,2,1,1,2,0,,1,2007.0,6,119755,1,1,1,0,1,,600.0,,42,1.0,3.0,4.0,2.0,1.5,3,3,3622.12594651419,1700.0,65432.147981531845,1,5,1,2,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.027509413270492788,43621.431987687894,10,5,10,10_1,10_1,10_0_0 -31814,2,32.0,0.0,9,112,1500.0,0.0,0.0,21,52,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,2,2,2,2,2,2,2,1,2,10.0,1,2009.0,6,117659,1,3,1,0,1,,450.0,690.0,43,2.0,0.0,4.0,3.0,1.8,3,3,3719.59908145562,1500.0,22632.756201212254,1,1,2,3,107.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.06627562222932694,12573.753445117918,2,1,2_0,2_1_0,2_1_0,2_0_0 -31815,1,49.0,75.0,9,112,560.0,0.0,0.0,0,52,0.0,0.0,774.0175674425211,560.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,101935,1,1,0,0,1,,120.0,347.0,32,1.0,1.0,3.0,2.0,1.5,3,3,4475.59121206387,560.0,19453.0,0,1,2,3,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02878733357322778,12968.666666666666,2,1,2_1,2_0_1,2_1_1,2_0_0 -31816,2,62.0,0.0,9,112,700.0,0.0,0.0,0,75,0.0,0.0,967.5219593031513,750.0,86.01635020950958,0.0,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,116817,2,1,1,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,3,2,3973.34408677809,700.0,26652.60833997845,0,5,1,2,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028139834962231932,26652.60833997845,7,4,7,7_1,7_1,7_0_0 -31817,2,65.0,0.0,9,112,980.0,0.0,0.0,77,74,0.0,0.0,1354.530743024412,980.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,101297,2,1,1,0,1,,290.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,3983.53129123175,980.0,53019.582290762686,5,5,1,2,113.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018483736718739485,35346.38819384179,9,5,9,9_1,9_1,9_0_0 -31818,2,41.0,0.0,9,112,1200.0,0.0,0.0,56,38,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,120285,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,3964.60385692875,1200.0,40341.94308035797,1,1,1,2,125.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029745716452221814,22412.190600198872,6,3,6,6_1,6_1,6_0_0 -31819,2,64.0,0.0,2,112,450.0,0.0,0.0,0,75,0.0,0.0,621.9784024091688,1650.0,2064.39240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106227,2,1,1,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,3764.80047597798,450.0,21504.630098118712,0,5,0,1,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07672766248345499,21504.630098118712,6,3,6,6_1,6_1,6_0_1 -31820,2,40.0,0.0,9,112,1900.0,0.0,0.0,43,31,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,2.0,1,2009.0,6,110785,2,1,1,0,1,,880.0,,43,2.0,0.0,6.0,5.0,2.4,3,2,3391.25458824353,1900.0,110957.05985722636,1,1,1,2,175.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01712374140451107,46232.108273844315,10,5,10,10_1,10_1,10_0_0 -31821,2,71.0,0.0,2,112,980.0,792.0,0.0,72,72,0.0,0.0,1354.530743024412,1772.0,0.0,1436.4130974711795,71,0,0,0,0,0,0,0,0,0,,1,,2,106256,2,1,2,0,1,,149.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,3495.58567614174,980.0,56713.18794379334,5,5,0,1,120.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031244937275544688,37808.79196252889,9,5,9,9_1,9_1,9_0_1 -31822,2,46.0,0.0,9,112,1800.0,0.0,0.0,52,47,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,131230,2,1,1,0,1,,530.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,3569.21157662043,1800.0,48206.24464958536,1,1,1,2,115.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037339560737085595,24103.12232479268,6,3,6,6_1,6_1,6_0_0 -31823,2,63.0,0.0,6,112,580.0,1021.0,0.0,86,71,0.0,0.0,801.6610519940398,1601.0,0.0,1851.7396117652454,50,0,0,0,0,0,0,0,0,0,,1,,4,103005,2,3,2,0,1,,339.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,3707.23424697601,580.0,20890.790348108956,6,5,0,1,180.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07663664099452912,13927.19356540597,3,2,3_0,3_1_0,3_1_0,3_0_0 -31824,2,53.0,0.0,2,112,1140.0,2375.0,0.0,0,90,0.0,0.0,1575.678619436561,3515.0,0.0,4307.425639512691,71,2,2,2,2,1,2,2,2,0,,1,,2,121588,1,2,2,0,2,,700.0,,32,1.0,0.0,5.0,3.0,2.0,2,2,4368.42057210507,1140.0,21133.01521800304,0,1,0,1,200.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.1663274248250955,10566.50760900152,2,1,2_0,2_1_0,2_1_0,2_0_1 -31825,2,75.0,0.0,1,112,465.0,1918.0,0.0,71,74,0.0,0.0,642.7110158228077,2383.0,0.0,3478.586263825407,50,0,0,0,0,0,0,0,0,0,,1,,1,121207,2,1,2,0,1,,150.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,3729.11463650729,465.0,90853.38370406668,5,5,0,1,200.0,8,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02622907263159352,60568.92246937779,10,5,10,10_1,10_1,10_1_0 -31826,2,43.0,0.0,9,112,1200.0,0.0,0.0,69,63,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,108772,2,2,0,0,1,,400.0,653.0,43,2.0,1.0,3.0,3.0,1.8,3,2,5602.64037965631,1200.0,28987.27323366315,1,4,2,3,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04139747779402826,16104.040685368416,4,2,4_0,4_0_0,4_1_0,4_0_0 -31827,2,78.0,0.0,7,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1288.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,103337,2,1,1,0,1,,471.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,4131.73212260385,0.0,21361.231981398072,0,5,0,1,90.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06029614776533603,21361.231981398072,6,3,6,6_1,6_1,6_0_0 -31828,2,50.0,0.0,2,112,1200.0,440.0,0.0,37,22,0.0,0.0,1658.6090730911167,1640.0,0.0,798.0072763728775,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,105399,2,2,4,0,2,,180.0,,43,2.0,0.0,6.0,4.0,2.5,5,5,3414.8557581229,1200.0,195111.78211122466,1,1,0,1,150.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.008405438063525594,78044.71284448987,10,5,10,10_1,10_1,10_0_1 -31829,2,68.0,0.0,5,112,826.0,0.0,0.0,52,77,0.0,186.3310508675024,1141.6759119777187,1036.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110827,2,2,2,0,1,,335.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,3318.2916858774,826.0,50203.65484772164,1,5,0,1,102.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02063594778392944,33469.10323181443,8,4,8,8_1,8_1,8_0_0 -31830,2,56.0,0.0,7,112,600.0,1100.0,0.0,69,22,0.0,0.0,829.3045365455583,1700.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,107201,2,1,2,0,1,,560.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,3183.03567035553,600.0,43505.22373307653,4,1,1,2,110.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0390757673246376,17402.08949323061,4,2,4_0,4_1_0,4_1_0,4_0_0 -31831,2,27.0,0.0,9,112,760.0,0.0,0.0,84,62,0.0,0.0,1050.452412957707,810.0,86.01635020950958,0.0,42,2,2,2,2,1,2,2,2,2,25.0,1,2006.0,6,103367,1,2,5,0,1,,370.0,550.0,42,1.0,0.0,2.0,2.0,1.5,2,2,3590.7078927977,760.0,43806.58019684807,3,1,3,4,50.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.018490372824361223,29204.38679789871,8,4,8,8_1,8_1,8_0_0 -31832,2,45.0,0.0,8,112,700.0,0.0,0.0,55,42,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,2001.0,6,103956,2,2,2,0,1,,500.0,400.0,43,2.0,1.0,5.0,4.0,2.3,1,1,2607.06497058386,700.0,38663.88997347336,4,1,2,3,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019656583973351446,16810.38694498842,4,2,4_0,4_1_0,4_1_0,4_0_0 -31833,1,50.0,90.0,2,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1024.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104910,2,1,2,0,2,,475.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,3938.2671271084,0.0,14601.470496739024,0,4,2,3,50.0,8,1,9,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07012992288884136,14601.470496739024,3,2,3_1,3_1_1,3_1_1,3_0_1 -31834,2,84.0,0.0,1,112,600.0,0.0,0.0,77,77,0.0,362.31037668681023,829.3045365455583,1286.0,578.0298734079045,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,130194,2,1,1,0,1,,200.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,3810.86766104358,600.0,20984.539777484933,5,5,0,1,70.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.061283212004477484,13989.693184989956,3,2,3_0,3_1_0,3_1_0,3_1_0 -31835,2,34.0,0.0,6,112,750.0,0.0,0.0,55,63,0.0,0.0,1036.630670681948,870.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116020,2,1,1,0,1,,250.0,,43,2.0,0.0,3.0,2.0,1.5,1,1,3598.45483958853,750.0,28778.844555777385,1,1,1,2,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030230539600497843,19185.896370518258,5,3,5,5_1,5_1,5_0_0 -31836,1,52.0,120.0,2,112,600.0,0.0,0.0,85,63,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,42,2,2,2,2,1,2,2,2,0,,1,,2,110934,1,2,3,0,2,,400.0,530.0,42,1.0,3.0,4.0,2.0,1.5,4,4,4286.67153017426,600.0,19270.025113121093,6,4,2,3,75.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,1,0.03425008509981658,12846.683408747396,2,1,2_1,2_1_1,2_1_1,2_0_1 -31837,2,45.0,0.0,5,112,0.0,0.0,0.0,0,42,0.0,0.0,0.0,679.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,103418,2,1,2,0,1,,424.0,,32,2.0,0.0,5.0,3.0,2.0,2,2,3933.73304115818,0.0,32044.63295754163,0,1,0,1,105.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021189195735200297,16022.316478770816,4,2,4_0,4_1_0,4_1_0,4_0_0 -31838,2,33.0,0.0,7,112,1690.0,0.0,0.0,63,43,0.0,0.0,2335.8744446033224,1690.0,0.0,0.0,10,2,2,2,1,1,2,1,2,2,20.0,1,,5,107739,1,2,4,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,3305.54916082494,1690.0,42321.48855549247,1,1,1,2,84.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,1,1,0,0,0.03993243285344396,20153.089788329748,5,3,5,5_1,5_1,5_0_0 -31839,1,27.0,120.0,6,112,1600.0,0.0,0.0,43,47,0.0,0.0,2211.478764121489,1690.0,154.82943037711726,0.0,41,2,2,2,1,1,2,2,2,2,3.0,1,,4,132697,2,3,4,0,1,,0.0,306.0,43,2.0,0.0,4.0,2.0,1.5,2,2,3021.01008876874,1600.0,22814.80438271095,1,1,2,3,73.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.07407470919543283,15209.869588473966,3,2,3_1,3_1_1,3_1_1,3_0_0 -31840,2,43.0,0.0,7,112,1500.0,0.0,0.0,56,38,0.0,155.27587572291867,2073.261341363896,1710.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,125156,2,1,3,0,1,,1032.0,,43,2.0,1.0,6.0,4.0,2.3,2,2,3117.27604235022,1500.0,36130.04233846976,1,1,1,2,130.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04732903393747932,15708.714060204244,3,2,3_0,3_1_0,3_1_0,3_0_0 -31841,2,64.0,0.0,7,112,600.0,0.0,0.0,77,75,0.0,0.0,829.3045365455583,750.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,119658,2,1,1,0,1,,550.0,,41,2.0,2.0,5.0,4.0,2.5,2,1,3261.21033100084,600.0,51140.30072057014,6,5,0,1,107.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014665537539522676,20456.120288228056,5,3,5,5_1,5_1,5_0_0 -31842,2,54.0,0.0,7,112,750.0,0.0,0.0,43,38,0.0,289.84830134944815,1036.630670681948,1180.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,5,106670,2,1,2,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,3455.96201290806,750.0,86889.58649998243,1,1,0,1,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013580453625478339,37778.081086948885,9,5,9,9_1,9_1,9_0_0 -31843,2,53.0,0.0,5,112,800.0,0.0,0.0,85,37,0.0,0.0,1105.7393820607444,1253.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,104383,1,2,1,0,2,,731.0,,42,2.0,0.0,6.0,6.0,3.5,1,1,3292.0885716539,800.0,60859.89596105882,7,1,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02058827048935035,17388.541703159663,4,2,4_0,4_1_0,4_1_0,4_0_0 -31844,2,42.0,0.0,6,112,1400.0,0.0,0.0,52,23,0.0,0.0,1935.0439186063027,1520.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109847,2,1,2,0,1,,600.0,,43,3.0,0.0,5.0,4.0,2.5,1,1,3118.70087640421,1400.0,68838.0,1,1,0,1,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022080827449954966,27535.2,7,4,7,7_1,7_1,7_0_0 -31845,2,35.0,0.0,6,112,1300.0,0.0,0.0,54,21,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,112735,2,1,2,0,1,,470.0,,43,2.0,0.0,6.0,5.0,2.4,1,1,2961.36806073988,1300.0,49200.18698699875,1,1,1,2,95.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026422663807020238,20500.07791124948,5,3,5,5_1,5_1,5_0_0 -31846,2,40.0,0.0,5,112,826.0,0.0,0.0,46,46,0.0,0.0,1141.6759119777187,826.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,122468,2,2,3,0,1,,223.0,,43,3.0,0.0,5.0,4.0,2.3,3,2,3167.35379627149,826.0,52201.32076618885,1,1,1,2,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015823354426216085,22696.226420082112,6,3,6,6_1,6_1,6_0_0 -31847,2,64.0,0.0,2,112,900.0,900.0,0.0,77,74,0.0,0.0,1243.9568048183376,1800.0,0.0,1632.287610762704,50,0,0,0,0,0,0,0,0,0,,1,,2,110275,1,1,2,0,1,,600.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,3411.79279060126,900.0,47751.69389327289,5,5,1,2,120.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03769499787846434,31834.46259551526,8,4,8,8_1,8_1,8_0_1 -31848,2,63.0,0.0,5,112,800.0,0.0,0.0,74,34,0.0,207.03450096389156,1105.7393820607444,1060.0,103.2196202514115,0.0,33,0,0,0,0,0,0,0,0,2,8.0,1,,3,126335,2,1,1,0,2,,700.0,,42,1.0,3.0,6.0,2.0,1.5,3,2,3516.05503055052,800.0,75594.12042788486,5,1,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014022254561599362,50396.080285256576,10,5,10,10_1,10_1,10_0_0 -31849,2,43.0,0.0,8,112,1600.0,0.0,0.0,46,54,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2003.0,6,122947,2,2,1,0,1,,280.0,,43,2.0,2.0,5.0,3.0,1.8,4,2,4342.1731298409,1600.0,44701.17031719694,4,1,1,2,120.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035793246320990964,24833.983509553855,7,4,7,7_1,7_1,7_0_0 -31850,1,52.0,150.0,5,112,1100.0,0.0,0.0,0,38,0.0,0.0,1520.3916503335236,1150.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100206,1,1,1,0,2,,300.0,475.0,32,1.0,1.0,3.0,2.0,1.5,4,3,4129.93571670025,1100.0,8100.989407187086,0,4,2,3,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.14195796861303583,5400.659604791391,1,1,1_1,1_1_1,1_1_1,1_0_0 -31851,2,34.0,0.0,2,112,1200.0,0.0,0.0,46,47,0.0,155.27587572291867,1658.6090730911167,1380.0,51.60981012570575,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,,2,120251,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,3206.57801465826,1200.0,51576.529570834005,1,1,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026756356262876122,24560.25217658762,7,4,7,7_1,7_1,7_0_1 -31852,2,57.0,0.0,5,112,430.0,677.0,0.0,77,85,0.0,310.55175144583734,594.3349178576501,1407.0,0.0,1227.8430138737228,43,0,0,0,0,0,0,0,0,0,,1,,3,106380,2,1,2,0,1,,450.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,3217.30188205867,430.0,32113.12907836995,5,5,0,1,110.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04381385559053776,21408.7527189133,6,3,6,6_1,6_1,6_0_0 -31853,2,75.0,0.0,5,112,663.0,0.0,0.0,77,78,0.0,0.0,916.381512882842,663.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130170,2,1,2,0,1,,329.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,3937.23030001126,663.0,16792.0,5,5,0,1,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03948308718437351,8396.0,1,1,1_0,1_1_0,1_1_0,1_0_0 -31854,1,58.0,169.0,1,111,270.0,360.0,0.0,0,67,0.0,0.0,373.1870414455012,630.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,2,,1,106852,2,2,0,0,1,,145.0,187.0,12,1.0,8.0,2.0,1.0,1.0,3,2,460.094215860216,270.0,8251.944407912151,0,4,2,3,45.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07634564277916629,8251.944407912151,1,1,1_1,1_0_1,1_2_1,1_1_0 -31855,2,31.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1267.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,2,130445,2,1,0,0,2,,0.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,682.418852415062,0.0,28958.880249232454,0,1,3,4,76.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04375169167784315,28958.880249232454,8,4,8,8_0,8_2,8_0_1 -31856,2,55.0,0.0,1,111,0.0,0.0,0.0,43,52,0.0,0.0,0.0,1217.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,127477,2,1,4,0,1,,191.0,,43,2.0,3.0,3.0,2.0,1.5,1,1,385.58061863822,0.0,40500.84859434723,1,1,1,2,60.0,8,6,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030048753106122785,27000.565729564823,7,4,7,7_1,7_2,7_1_0 -31857,1,57.0,337.0,2,111,800.0,600.0,0.0,0,43,0.0,207.03450096389156,1105.7393820607444,1600.0,0.0,1088.1917405084694,50,2,2,2,1,1,2,2,2,0,,2,,2,130509,1,2,0,0,2,,0.0,627.0,32,2.0,2.0,5.0,3.0,2.0,2,2,2075.90231675183,800.0,12394.11252411998,0,4,2,3,110.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.12909355122331398,6197.05626205999,1,1,1_1,1_0_1,1_2_1,1_0_1 -31858,2,62.0,0.0,6,111,249.0,664.0,0.0,0,75,0.0,0.0,344.1613826664067,913.0,0.0,1204.265526162706,71,0,0,0,0,0,0,0,0,0,,2,,4,114463,2,1,0,0,1,,168.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1681.15752171539,249.0,44583.719657603724,0,5,0,1,70.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.020478327223742276,44583.719657603724,10,5,10,10_0,10_2,10_0_0 -31859,2,52.0,0.0,1,111,920.0,1848.0,0.0,0,63,0.0,0.0,1271.600289369856,2768.0,0.0,3351.6305607660856,50,0,0,0,0,0,0,0,0,0,,2,,1,123842,1,3,0,0,2,,0.0,580.0,22,2.0,2.0,3.0,3.0,2.0,5,4,2299.35222279797,920.0,28443.15796610717,0,1,2,3,91.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.09731690142488204,14221.578983053585,3,2,3_0,3_0_0,3_2_0,3_1_0 -31860,2,63.0,0.0,1,111,251.0,798.0,0.0,0,77,0.0,0.0,346.92573112155856,1049.0,0.0,1447.2950148762643,71,0,0,0,0,0,0,0,0,0,,2,,1,108283,2,3,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1645.432219684,251.0,19986.784903609852,0,5,0,1,68.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.052484679504933185,19986.784903609852,5,3,5,5_0,5_2,5_1_0 -31861,2,55.0,0.0,2,111,721.0,370.0,0.0,0,52,0.0,0.0,996.5476180822459,1091.0,0.0,671.0515733135561,71,2,2,2,1,1,1,1,2,1,5.0,2,,2,132333,1,3,0,0,2,,0.0,425.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1922.37323811381,721.0,16426.60549678887,0,1,2,3,44.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.06641664342722983,16426.60549678887,4,2,4_0,4_0_0,4_2_0,4_0_1 -31862,2,69.0,0.0,2,111,804.0,0.0,0.0,68,78,0.0,0.0,1111.2680789710482,1092.0,495.4541772067752,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124963,2,1,1,0,1,,320.0,,42,1.0,3.0,4.0,3.0,1.8,2,1,1452.37074225353,804.0,28136.68251873381,1,5,0,1,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038810545602628546,15631.49028818545,3,2,3_0,3_1_0,3_2_0,3_0_1 -31863,1,39.0,270.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,743.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,132461,2,1,0,0,1,,171.0,370.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2590.54344609314,0.0,8991.0,0,4,3,4,21.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08263819374930487,8991.0,1,1,1_1,1_0_1,1_2_1,1_0_1 -31864,2,34.0,0.0,9,111,477.0,0.0,0.0,0,34,0.0,0.0,659.2971065537189,477.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,2004.0,6,112680,2,1,0,0,1,,0.0,510.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1834.66420412748,477.0,20048.406512890415,0,1,2,3,45.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023792414608777308,20048.406512890415,5,3,5,5_0,5_2,5_0_0 -31865,1,59.0,251.0,2,111,558.0,413.0,0.0,0,77,0.0,0.0,771.2532189873692,971.0,0.0,749.0386480499964,41,0,0,0,0,0,0,0,0,0,,2,,2,124356,2,2,0,0,1,,179.0,485.0,21,1.0,1.0,5.0,2.0,1.5,1,1,1830.84354940227,558.0,14333.315931499641,0,7,2,3,79.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0677442682935691,9555.543954333094,1,1,1_1,1_0_1,1_2_1,1_0_1 -31866,2,46.0,0.0,2,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,1464.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,123001,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,536.266809686444,0.0,55058.592695611595,1,1,1,2,90.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02658985506755764,30588.10705311755,8,4,8,8_0,8_2,8_0_1 -31867,2,86.0,0.0,2,111,300.0,900.0,0.0,77,72,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,42,0,0,0,0,0,0,0,0,0,,1,,2,105151,2,2,4,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,3,3,1313.81311155322,300.0,31497.939705877376,5,5,0,1,80.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03809772992155691,20998.626470584917,5,3,5,5_1,5_2,5_0_1 -31868,1,44.0,434.0,2,111,600.0,0.0,0.0,0,54,0.0,0.0,829.3045365455583,687.0,0.0,0.0,60,2,1,2,2,1,2,2,2,0,,2,,2,116340,2,1,0,1,2,829.0,0.0,532.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1683.86533247753,600.0,12635.235743860547,0,4,2,3,72.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05437175957194253,7897.022339912842,1,1,1_1,1_0_1,1_2_1,1_0_1 -31869,2,37.0,0.0,2,111,600.0,0.0,0.0,68,62,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,2,1,2,1,1,2,1,2,0,,2,,2,121965,1,3,0,1,2,,0.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1557.56433985353,600.0,34101.77432639179,1,1,0,1,75.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.017594392428304018,18945.43018132877,5,3,5,5_0,5_2,5_0_1 -31870,2,53.0,0.0,7,111,1141.0,0.0,0.0,63,52,0.0,0.0,1577.0607936641368,1141.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,5.0,2,,5,127354,2,1,0,0,1,,0.0,770.0,43,3.0,2.0,4.0,3.0,2.0,1,1,1991.81841682725,1141.0,33439.51979618726,4,1,2,3,80.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034121303384568806,16719.75989809363,4,2,4_0,4_0_0,4_2_0,4_0_0 -31871,2,47.0,0.0,8,111,634.0,1040.0,0.0,37,43,0.0,0.0,876.29846028314,1674.0,0.0,1886.1990168813468,33,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,101633,2,1,1,0,1,,564.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,1160.08713460153,634.0,67070.0955846778,1,1,1,2,130.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024958962491510545,31938.140754608474,8,4,8,8_1,8_2,8_0_0 -31872,1,59.0,262.0,1,111,544.0,0.0,0.0,0,78,0.0,15.527587572291866,751.9027798013062,601.0,72.25373417598806,0.0,50,2,2,2,1,1,2,2,2,0,,2,,1,105401,1,3,0,0,2,,0.0,312.0,11,0.0,0.0,2.0,1.0,1.0,4,4,2622.43424960369,544.0,3827.777761737245,0,7,2,3,27.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,1,1,1,1,0.1570101603096296,3827.777761737245,1,1,1_1,1_0_1,1_2_1,1_1_0 -31873,1,48.0,440.0,2,111,420.0,360.0,0.0,85,67,0.0,0.0,580.5131755818909,780.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,2,,2,100322,2,1,0,0,1,,400.0,510.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,1808.90713211529,420.0,12579.132657220052,6,1,2,3,70.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06200745482656969,4838.127945084636,1,1,1_1,1_0_1,1_2_1,1_0_1 -31874,1,32.0,391.0,2,111,260.0,384.0,0.0,0,67,0.0,186.3310508675024,359.36529916974195,824.0,0.0,696.4427139254203,41,2,2,2,2,2,2,1,2,2,10.0,2,,2,102332,1,2,0,0,1,,460.0,465.0,32,1.0,1.0,3.0,3.0,1.6,1,1,1579.69694473258,260.0,7926.545086428755,0,1,2,3,69.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.103954496065479,4954.0906790179715,1,1,1_1,1_0_1,1_2_1,1_0_1 -31875,2,41.0,0.0,2,111,700.0,0.0,0.0,0,62,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,127597,2,2,3,0,1,,160.0,,12,1.0,0.0,5.0,1.0,1.0,3,2,1452.29230348387,700.0,22202.69755418892,0,1,1,2,95.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031527700554923474,22202.69755418892,6,3,6,6_1,6_2,6_0_1 -31876,2,60.0,0.0,5,111,592.0,517.0,0.0,78,75,0.0,0.0,818.2471427249509,1109.0,0.0,937.6585497381311,71,1,2,2,2,1,2,2,1,0,,1,,3,102150,2,1,2,0,1,,163.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1110.9661015133,592.0,44603.55892512524,5,5,0,1,90.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.024863486832107897,29735.70595008349,8,4,8,8_1,8_2,8_0_0 -31877,1,31.0,83.0,7,111,0.0,0.0,0.0,67,68,0.0,0.0,0.0,536.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,109774,2,1,0,1,1,376.0,0.0,310.0,43,2.0,0.0,4.0,3.0,1.8,1,1,538.792668681974,0.0,22880.72237103799,4,1,2,3,90.0,8,6,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.023425833822382253,12711.51242835444,2,1,2_1,2_0_1,2_2_1,2_0_0 -31878,1,61.0,85.0,2,111,267.0,801.0,0.0,0,75,0.0,0.0,369.04051876277344,1068.0,0.0,1452.7359735788066,41,0,0,0,0,0,0,0,0,0,,2,,2,124005,2,3,0,0,1,,219.0,495.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1736.60034401497,267.0,15437.228460330696,0,5,2,3,70.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06918340314418857,15437.228460330696,3,2,3_1,3_0_1,3_2_1,3_0_1 -31879,2,28.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1434.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,121102,2,1,0,0,1,,145.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2031.80800613498,0.0,19719.302865362697,0,1,2,3,52.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07272062353273381,19719.302865362697,5,3,5,5_0,5_2,5_0_1 -31880,2,56.0,0.0,1,111,1030.0,100.0,0.0,0,56,0.0,62.110350289167464,1423.6394544032084,1327.0,235.68479957405626,181.36529008474488,31,0,0,0,0,0,0,0,0,0,,1,,1,106573,2,1,1,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,1542.44872295558,1030.0,17656.723500620978,0,1,0,1,80.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07515550662348709,17656.723500620978,4,2,4_0,4_1_0,4_2_0,4_1_0 -31881,1,26.0,270.0,6,111,665.0,0.0,0.0,0,55,0.0,0.0,919.1458613379938,665.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,120698,2,1,0,0,1,,0.0,469.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1830.87500152674,665.0,6562.857164941195,0,4,2,3,60.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.10132781855324115,6562.857164941195,1,1,1_1,1_0_1,1_2_1,1_0_0 -31882,2,72.0,0.0,1,111,1700.0,0.0,0.0,74,74,0.0,248.44140115666985,2349.696186879082,1990.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102043,1,3,4,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,4,4,1293.19983120034,1700.0,88240.98797588247,5,5,0,1,120.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02255187805177222,58827.32531725498,10,5,10,10_1,10_2,10_1_0 -31883,2,68.0,0.0,5,111,500.0,0.0,0.0,0,75,0.0,478.2496972265895,691.0871137879653,1028.0,113.54158227655265,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,115018,2,3,3,0,1,,228.0,569.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1514.88798430219,500.0,20223.3325009275,0,5,2,3,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05083237393999496,20223.3325009275,5,3,5,5_1,5_2,5_0_0 -31884,2,44.0,0.0,2,111,900.0,0.0,0.0,52,62,2240.377315527001,0.0,1243.9568048183376,2500.0,172.03270041901916,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,122024,2,3,4,0,1,,400.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,1,1,1324.04578158878,900.0,51939.66194876672,1,1,1,2,120.0,8,6,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04813277380330276,19236.911832876565,5,3,5,5_1,5_2,5_0_1 -31885,2,67.0,0.0,2,111,53.0,75.0,0.0,75,75,0.0,0.0,73.25523406152432,128.0,0.0,136.02396756355867,12,0,0,0,0,0,0,0,0,0,,1,,2,105324,2,3,2,0,1,,387.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1426.36015593718,53.0,60713.645184405614,5,5,0,1,140.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0021082575360320648,40475.76345627041,9,5,9,9_1,9_2,9_0_1 -31887,0,55.0,0.0,2,111,460.0,51.0,0.0,0,53,0.0,0.0,635.800144684928,511.0,0.0,92.4962979432199,71,0,0,0,0,0,0,0,0,0,,2,,2,126273,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2290.48607262607,460.0,5676.49490526056,0,4,5,0,28.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09002033975692335,5676.49490526056,1,1,1_0,1_0_0,1_2_0,1_0_1 -31888,2,70.0,0.0,2,111,233.0,258.0,0.0,74,74,0.0,0.0,322.04659502519183,491.0,0.0,467.9224484186418,50,0,0,0,0,0,0,0,0,0,,2,,2,123306,2,2,0,0,2,,218.0,,41,0.0,3.0,7.0,2.0,1.5,3,3,1646.70382402782,233.0,66254.72479066152,5,5,0,1,110.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.007410792234838556,44169.81652710768,10,5,10,10_0,10_2,10_0_1 -31889,2,31.0,0.0,2,111,200.0,160.0,0.0,0,31,0.0,0.0,276.4348455151861,360.0,0.0,290.18446413559184,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,115826,2,1,0,0,2,,0.0,494.0,12,1.0,0.0,2.0,1.0,1.0,3,3,2238.00697547376,200.0,4166.038237965044,0,1,2,3,35.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0864130330632411,4166.038237965044,1,1,1_0,1_0_0,1_2_0,1_0_1 -31890,2,37.0,0.0,2,111,250.0,320.0,0.0,0,42,0.0,0.0,345.54355689398267,570.0,0.0,580.3689282711837,50,0,0,0,0,0,0,0,0,0,,2,,2,114847,2,2,0,0,1,,240.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1585.16558336154,250.0,24095.820675524108,0,1,1,2,55.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02365555453269914,24095.820675524108,6,3,6,6_0,6_2,6_0_1 -31891,2,58.0,0.0,2,111,642.0,180.0,0.0,78,62,0.0,41.40690019277831,887.3558541037474,862.0,0.0,326.4575221525408,60,2,2,2,1,1,1,2,2,0,,8,,2,107971,1,1,0,0,2,,300.0,,42,2.0,2.0,6.0,3.0,2.0,2,2,1783.30836006355,642.0,35795.103568899125,5,4,0,1,90.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.02408150596186446,17897.551784449563,4,2,4_0,4_0_0,4_2_0,4_0_1 -31892,2,26.0,0.0,5,111,400.0,600.0,0.0,56,63,0.0,103.51725048194578,552.8696910303722,1100.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,2,30.0,8,,3,114753,2,1,0,0,1,,0.0,585.0,43,2.0,0.0,4.0,2.0,1.5,4,4,1795.53946522311,400.0,36052.188438985395,1,1,2,3,72.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03051132393423596,24034.79229265693,6,3,6,6_0,6_2,6_0_0 -31893,2,44.0,0.0,8,111,600.0,600.0,0.0,47,56,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,131418,2,1,2,0,1,,720.0,,43,2.0,1.0,4.0,4.0,2.5,2,2,1336.16280930026,600.0,54746.39152995732,4,1,1,2,88.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02191925287611619,21898.556611982927,6,3,6,6_1,6_2,6_0_0 -31894,2,36.0,0.0,9,112,0.0,0.0,0.0,85,48,0.0,0.0,0.0,1401.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,1.0,1,2009.0,6,121837,1,1,1,0,1,,292.0,850.0,42,1.0,0.0,4.0,3.0,1.8,2,1,1314.39745279747,0.0,31285.197696284937,7,1,2,3,100.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044781561350541385,17380.665386824963,4,2,4_0,4_1_0,4_1_0,4_0_0 -31895,2,44.0,0.0,9,112,1860.0,0.0,0.0,54,46,0.0,0.0,2570.8440632912307,1860.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,108670,2,1,1,0,1,,360.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,955.506157307098,1860.0,60328.970046690214,4,1,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030830958966488173,26229.986976821834,7,4,7,7_1,7_1,7_0_0 -31896,2,71.0,0.0,5,112,1132.0,468.0,0.0,78,74,0.0,0.0,1564.6212256159533,1600.0,0.0,848.7895575966061,71,0,0,0,0,0,0,0,0,0,,1,,3,114204,1,1,2,0,1,,160.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,927.283450052768,1132.0,43933.50645068783,6,5,0,1,130.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03641867288229961,29289.004300458557,8,4,8,8_1,8_1,8_0_0 -31897,2,80.0,0.0,2,112,2030.0,0.0,0.0,74,77,0.0,0.0,2805.813681979139,2126.0,165.1513924022584,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133149,2,2,5,0,1,,265.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,899.786539813783,2030.0,36737.003423221846,5,5,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.057870806050994705,24491.33561548123,7,4,7,7_1,7_1,7_0_1 -31898,2,91.0,0.0,5,112,1281.0,0.0,0.0,75,74,0.0,0.0,1770.565185524767,1281.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124897,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1042.18024102669,1281.0,64266.54070568413,5,5,0,1,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01993261168150444,42844.360470456086,9,5,9,9_1,9_1,9_0_0 -31899,2,46.0,0.0,6,112,830.0,0.0,0.0,56,53,0.0,0.0,1147.2046088880224,830.0,0.0,0.0,50,2,2,1,1,1,2,2,2,2,20.0,1,,4,123182,2,2,2,0,1,,600.0,,43,2.0,0.0,5.0,3.0,2.0,2,1,953.147728879455,830.0,49278.15591020719,1,1,1,2,112.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.01684316274968558,24639.077955103596,7,4,7,7_1,7_1,7_0_0 -31900,2,55.0,0.0,6,112,700.0,1100.0,0.0,21,21,0.0,0.0,967.5219593031513,1800.0,0.0,1995.0181909321939,71,0,0,0,0,0,0,0,0,0,,1,,4,118980,2,2,5,0,1,,530.0,,43,2.0,1.0,4.0,3.0,2.0,2,2,1060.26373548745,700.0,19039.042268021723,1,1,0,1,78.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09454257071655901,9519.521134010862,1,1,1_0,1_1_0,1_1_0,1_0_0 -31901,2,52.0,0.0,6,112,1200.0,0.0,0.0,43,46,0.0,289.84830134944815,1658.6090730911167,1480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,123536,2,2,2,0,1,,300.0,,43,3.0,0.0,5.0,3.0,2.0,3,2,920.440746791861,1200.0,115917.50945876306,1,1,0,1,85.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012767700124945325,57958.75472938153,10,5,10,10_1,10_1,10_0_0 -31902,2,55.0,0.0,5,112,1450.0,0.0,0.0,52,46,0.0,0.0,2004.1526299850993,1510.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128216,2,1,3,0,1,,500.0,719.0,43,2.0,3.0,4.0,2.0,1.5,1,1,1073.17732435542,1450.0,36957.1253039998,1,1,2,3,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04085815624400244,24638.083535999864,7,4,7,7_1,7_1,7_0_0 -31903,0,91.0,0.0,2,112,300.0,0.0,0.0,0,71,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,120488,1,1,4,0,2,,208.0,,21,0.0,1.0,5.0,2.0,1.5,5,5,1023.02924815618,300.0,11710.88392055885,0,5,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02561719525486372,7807.255947039233,1,1,1_0,1_1_0,1_1_0,1_0_1 -31904,2,65.0,0.0,5,112,2413.0,0.0,0.0,74,74,0.0,0.0,3335.1864111407203,2512.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125827,2,3,3,0,1,,396.0,,41,0.0,2.0,7.0,2.0,1.5,6,6,966.460295527064,2413.0,38716.963505408334,5,5,0,1,220.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0648811211563402,25811.309003605555,7,4,7,7_1,7_1,7_0_0 -31905,2,51.0,0.0,9,112,1200.0,0.0,0.0,33,43,0.0,0.0,1658.6090730911167,1272.0,123.8635443016938,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,126671,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,3.0,2.0,2,1,1032.12038453508,1200.0,57861.321669055644,1,1,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02198359738955407,28930.660834527822,8,4,8,8_1,8_1,8_0_0 -31906,2,50.0,0.0,9,112,880.0,0.0,0.0,0,43,0.0,0.0,1216.313320266819,880.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,120978,1,1,1,0,1,,326.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1042.0349961961,880.0,33734.58802081864,0,1,1,2,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02608598627192142,33734.58802081864,9,5,9,9_1,9_1,9_0_0 -31907,2,57.0,0.0,6,112,1076.0,0.0,0.0,47,37,0.0,72.46207533736204,1487.2194688717013,1198.0,89.45700421788997,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,106623,2,1,2,0,1,,316.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,849.46817054651,1076.0,52874.32186498547,1,1,0,1,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02265750098997188,35249.54790999031,9,5,9,9_1,9_1,9_0_0 -31908,2,72.0,0.0,5,112,600.0,0.0,0.0,77,74,0.0,517.5862524097289,829.3045365455583,1200.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114571,2,1,2,0,1,,300.0,,41,0.0,1.0,5.0,3.0,2.0,1,1,1044.63259599628,600.0,46372.07750039763,5,5,0,1,155.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025877641561125018,23186.038750198815,6,3,6,6_1,6_1,6_0_0 -31909,2,64.0,0.0,5,112,700.0,0.0,0.0,0,74,0.0,56.93448776507018,967.5219593031513,839.0,144.50746835197612,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,110490,2,1,3,0,1,,297.0,500.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1082.31670943053,700.0,15473.203617639478,0,5,2,3,92.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05422277252549941,15473.203617639478,3,2,3_0,3_1_0,3_1_0,3_0_0 -31910,2,74.0,0.0,5,112,360.0,960.0,0.0,75,77,0.0,0.0,497.582721927335,1320.0,0.0,1741.106784813551,50,0,0,0,0,0,0,0,0,0,,1,,3,129809,2,1,2,0,2,,240.0,,41,0.0,1.0,4.0,2.0,1.5,3,2,932.840440769412,360.0,38967.17420207396,5,5,0,1,100.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03387466571619518,25978.116134715976,7,4,7,7_1,7_1,7_0_0 -31911,2,87.0,0.0,2,112,71.0,0.0,0.0,0,77,0.0,0.0,98.13437015789107,121.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112523,2,2,2,0,1,,220.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,992.884680072414,71.0,27198.064718505317,0,5,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.004448845947398334,27198.064718505317,7,4,7,7_1,7_1,7_0_1 -31912,2,61.0,0.0,7,112,994.0,0.0,0.0,0,75,0.0,0.0,1373.881182210475,994.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,1,,5,100450,2,2,5,0,1,,266.0,,11,0.0,2.0,6.0,1.0,1.0,3,3,1046.88812150008,994.0,35090.46567715489,0,5,0,1,144.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.028326782811751865,35090.46567715489,9,5,9,9_1,9_1,9_0_0 -31913,2,59.0,0.0,2,112,700.0,0.0,0.0,0,74,2240.377315527001,0.0,967.5219593031513,2210.0,17.203270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105276,2,2,1,0,1,,429.0,,31,0.0,3.0,5.0,2.0,1.5,4,4,868.762451651664,700.0,33213.61628807498,0,5,0,1,130.0,8,1,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06653897548619174,22142.410858716656,6,3,6,6_1,6_1,6_0_1 -31914,2,64.0,0.0,2,112,0.0,0.0,0.0,33,34,0.0,0.0,0.0,1301.0,172.03270041901916,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,109937,2,2,2,0,2,,0.0,650.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1116.75971454827,0.0,90662.2448142318,1,1,2,3,100.0,8,1,9,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014349964559842601,60441.4965428212,10,5,10,10_1,10_1,10_0_1 -31915,2,51.0,0.0,6,112,659.0,0.0,0.0,0,52,0.0,0.0,910.8528159725382,719.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,4,104780,2,1,1,0,1,,246.0,,32,1.0,0.0,3.0,2.0,1.5,3,3,873.384580818067,659.0,23091.77601585414,0,1,1,2,79.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031136626282290095,15394.517343902759,3,2,3_0,3_1_0,3_1_0,3_0_0 -31916,2,64.0,0.0,7,112,1200.0,0.0,0.0,77,75,1493.5848770180007,0.0,1658.6090730911167,2202.0,3.4406540083803834,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,102753,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,980.941012035835,1200.0,40834.1434133443,5,5,0,1,110.0,8,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053925460801521365,27222.76227556287,7,4,7,7_1,7_1,7_0_0 -31917,2,84.0,0.0,7,112,592.0,0.0,0.0,77,78,0.0,0.0,818.2471427249509,592.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,124937,2,1,2,0,1,,540.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,906.982357178365,592.0,34776.39680738768,5,5,0,1,75.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017023040175175343,23184.264538258456,6,3,6,6_1,6_1,6_0_0 -31918,2,55.0,0.0,7,112,1258.0,0.0,0.0,0,55,0.0,62.110350289167464,1738.7751782905207,1348.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,113331,1,1,1,0,1,,424.0,,22,2.0,1.0,4.0,2.0,1.5,3,2,959.125535631403,1258.0,18752.739719909187,0,4,1,2,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07188282992958471,12501.826479939458,2,1,2_0,2_1_0,2_1_0,2_0_0 -31919,2,67.0,0.0,7,112,1570.0,0.0,0.0,74,74,0.0,0.0,2170.013537294211,1570.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,5,116525,2,1,2,0,1,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,997.51614743728,1570.0,73933.79786409756,5,5,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.021235213736563584,49289.19857606504,10,5,10,10_1,10_1,10_0_0 -31920,2,63.0,0.0,6,112,850.0,0.0,0.0,72,64,0.0,0.0,1174.848093439541,940.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,118845,2,2,2,0,1,,300.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,993.585206931948,850.0,50374.20754544683,5,5,1,2,107.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018660343175660808,33582.80503029789,9,5,9,9_1,9_1,9_0_0 -31921,2,41.0,0.0,8,112,1600.0,0.0,0.0,46,47,0.0,269.144851253059,2211.478764121489,1920.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,125361,2,1,2,0,1,,213.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,923.862803444261,1600.0,54351.9479643998,1,1,1,2,120.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035325320837766266,25881.87998304752,7,4,7,7_1,7_1,7_0_0 -31922,1,42.0,250.0,9,112,600.0,0.0,0.0,0,85,0.0,0.0,829.3045365455583,600.0,0.0,0.0,20,2,2,2,1,1,1,2,2,0,,2,2010.0,6,127987,1,3,0,0,1,,600.0,400.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1419.46057107407,600.0,11869.062739113497,0,7,2,3,40.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.05055159056685669,11869.062739113497,2,1,2_1,2_0_1,2_1_1,2_0_0 -31923,2,79.0,0.0,9,112,455.0,844.0,0.0,0,77,0.0,0.0,628.8892735470484,1299.0,0.0,1530.7230483152468,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,113964,2,1,1,0,1,,379.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1131.30918820617,455.0,9820.554910155923,0,5,0,1,140.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13227358452592528,9820.554910155923,2,1,2_0,2_1_0,2_1_0,2_0_0 -31924,2,71.0,0.0,7,112,700.0,0.0,0.0,75,74,0.0,0.0,967.5219593031513,2028.0,2284.5942615645745,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111912,2,1,2,0,1,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1035.00395512403,700.0,63344.0599015351,5,5,0,1,225.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0320156302446104,42229.37326769007,9,5,9,9_1,9_1,9_0_0 -31925,2,86.0,0.0,2,112,322.0,659.0,0.0,78,77,0.0,0.0,445.06010127944967,981.0,0.0,1195.1972616584687,71,0,0,0,0,0,0,0,0,0,,1,,2,130933,2,1,2,0,1,,320.0,,41,0.0,3.0,5.0,2.0,1.5,2,1,989.648224378963,322.0,43523.37880500648,5,5,0,1,120.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022539610364238447,29015.58587000432,8,4,8,8_1,8_1,8_0_1 -31926,2,73.0,0.0,2,112,1560.0,0.0,0.0,86,74,0.0,0.0,2156.1917950184516,1560.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104058,2,1,2,0,1,,120.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,873.384580818067,1560.0,48004.09271318323,6,5,0,1,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032497229128373495,32002.728475455486,8,4,8,8_1,8_1,8_0_1 -31927,2,86.0,0.0,6,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1183.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,101340,2,1,2,0,1,,277.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1074.47399001093,0.0,11119.769062986774,0,5,2,3,75.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10638710150354919,11119.769062986774,2,1,2_0,2_1_0,2_1_0,2_0_0 -31928,1,88.0,141.0,7,112,960.0,0.0,0.0,0,86,0.0,0.0,1326.8872584728933,1035.0,129.02452531426437,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,130842,2,1,2,0,1,,450.0,371.0,11,0.0,6.0,3.0,1.0,1.0,2,2,819.565083223437,960.0,11611.201834862386,0,6,2,3,82.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08913805949806458,11611.201834862386,2,1,2_1,2_1_1,2_1_1,2_0_0 -31929,2,44.0,0.0,7,112,779.4,0.0,0.0,75,21,0.0,0.0,1077.2665929726802,1079.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,114380,2,2,2,0,1,,476.0,505.0,42,1.0,1.0,4.0,3.0,2.0,1,1,843.320056373758,779.4,38293.12340070198,7,4,2,3,65.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02817738288698122,19146.56170035099,5,3,5,5_1,5_1,5_0_0 -31930,1,41.0,165.0,9,112,721.0,0.0,0.0,0,46,0.0,0.0,996.5476180822459,721.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,126057,2,2,0,0,1,800.0,307.0,379.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1094.0567102523,721.0,18380.443091763034,0,1,2,3,65.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.039226475466367136,14138.802378279257,3,2,3_1,3_0_1,3_1_1,3_0_0 -31931,2,35.0,0.0,9,112,910.0,0.0,0.0,54,47,0.0,0.0,1257.778547094097,990.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,120098,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,885.559810333297,910.0,56641.23074090038,1,1,1,2,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017478433767243787,26972.01463852399,7,4,7,7_1,7_1,7_0_0 -31932,1,40.0,96.0,5,112,1500.0,0.0,0.0,55,63,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,15.0,1,,3,119020,1,2,3,0,2,,720.0,,43,2.0,0.0,4.0,4.0,2.1,4,3,891.193219275638,1500.0,27091.608545965086,1,1,1,2,89.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.05536769798866018,12900.765974269088,2,1,2_1,2_1_1,2_1_1,2_0_0 -31933,1,38.0,300.0,5,112,960.0,0.0,0.0,0,46,0.0,93.1655254337512,1326.8872584728933,1110.0,103.2196202514115,0.0,71,2,2,2,1,1,1,1,2,2,15.0,1,,3,117060,2,3,3,0,1,,300.0,417.0,32,1.0,0.0,4.0,3.0,2.0,3,1,941.360333045584,960.0,17073.875688157666,0,1,2,3,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.06501160136534724,8536.937844078833,1,1,1_1,1_1_1,1_1_1,1_0_0 -31934,2,65.0,0.0,5,112,681.0,0.0,0.0,75,74,0.0,755.6759285182042,941.2606489792087,1511.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107375,2,1,2,0,1,,357.0,,41,0.0,2.0,6.0,2.0,1.5,5,4,960.798598985944,681.0,50755.92850643188,7,5,0,1,130.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029769921356251484,33837.28567095459,9,5,9,9_1,9_1,9_0_0 -31935,2,58.0,0.0,6,112,1100.0,0.0,0.0,45,37,0.0,139.7482881506268,1520.3916503335236,1235.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,4,112762,2,1,2,0,1,,150.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,899.786539813783,1100.0,64336.72986615897,1,1,0,1,180.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019195877729085643,42891.153244105975,9,5,9,9_1,9_1,9_0_0 -31936,2,51.0,0.0,6,112,1000.0,0.0,0.0,54,38,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129944,2,1,1,0,1,,1100.0,,43,3.0,1.0,4.0,3.0,2.0,2,2,1062.30847535762,1000.0,55418.00174411183,1,1,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01804467805637272,27709.000872055916,7,4,7,7_1,7_1,7_0_0 -31937,2,31.0,0.0,9,112,1200.0,0.0,0.0,46,21,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2006.0,6,106422,1,1,0,0,1,,500.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1279.13969471011,1200.0,17305.369833443216,4,1,1,2,75.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06934263824174154,11536.913222295478,2,1,2_0,2_0_0,2_1_0,2_0_0 -31938,2,52.0,0.0,8,112,1360.0,0.0,0.0,0,38,0.0,0.0,1879.7569495032656,1360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,109973,2,1,1,0,1,,250.0,,32,2.0,1.0,3.0,2.0,1.5,1,1,1006.73877818977,1360.0,9835.0,0,1,1,2,140.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13828164717844432,6556.666666666667,1,1,1_0,1_1_0,1_1_0,1_0_0 -31939,2,44.0,0.0,1,112,1065.0,0.0,0.0,52,21,0.0,248.44140115666985,1472.0155523683661,1365.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,110278,1,1,2,0,2,,800.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,939.237820760611,1065.0,29734.54621597559,4,1,0,1,160.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04590619914241776,11893.818486390237,2,1,2_0,2_1_0,2_1_0,2_1_0 -31940,2,73.0,0.0,5,112,600.0,0.0,0.0,72,22,1493.5848770180007,0.0,829.3045365455583,1600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,132583,2,1,2,0,1,,840.0,,41,0.0,0.0,4.0,2.0,1.5,3,3,1445.59831567449,600.0,21185.598017644785,5,5,0,1,190.0,8,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.075523003819265,14123.73201176319,3,2,3_0,3_1_0,3_1_0,3_0_0 -31941,2,66.0,0.0,2,112,960.0,0.0,0.0,75,75,0.0,0.0,1326.8872584728933,1035.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128431,2,1,2,0,1,,450.0,,41,0.0,2.0,8.0,2.0,1.5,4,3,1445.59831567449,960.0,36062.20761512442,5,5,0,1,130.0,8,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02870040600525862,24041.471743416278,6,3,6,6_1,6_1,6_0_1 -31942,2,34.0,0.0,6,112,660.0,0.0,0.0,0,43,0.0,0.0,912.2349902001142,689.0,49.88948312151556,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,117307,2,2,3,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1526.1565704746,660.0,37806.23139886216,0,1,0,1,33.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018224508884023192,37806.23139886216,9,5,9,9_1,9_1,9_0_0 -31943,2,83.0,0.0,5,112,1130.0,0.0,0.0,75,74,0.0,0.0,1561.8568771608016,1205.0,129.02452531426437,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,126662,1,1,2,0,2,,267.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,1518.30969131473,1130.0,55147.44073803206,5,5,0,1,100.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021850515343479572,36764.960492021375,9,5,9,9_1,9_1,9_0_0 -31944,2,54.0,0.0,9,112,1000.0,0.0,0.0,0,21,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,101132,2,1,0,0,1,,111.0,890.0,12,1.0,2.0,3.0,1.0,1.0,1,1,2269.54464918807,1000.0,2396.185708572498,0,1,2,3,63.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.4173299241467137,2396.185708572498,1,1,1_0,1_0_0,1_1_0,1_0_0 -31945,2,74.0,0.0,5,112,885.0,0.0,0.0,0,72,0.0,0.0,1223.2241914046986,935.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103837,2,1,2,0,1,,221.0,,11,0.0,4.0,3.0,1.0,1.0,2,2,1419.99654403202,885.0,14665.60749245731,0,5,0,1,67.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0637546041294833,14665.60749245731,3,2,3_0,3_1_0,3_1_0,3_0_0 -31946,2,63.0,0.0,6,112,700.0,0.0,0.0,0,71,0.0,0.0,967.5219593031513,2321.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,111241,1,3,0,0,1,,191.0,421.0,11,0.0,2.0,2.0,1.0,1.0,3,3,2511.68851805256,700.0,19133.0,0,5,3,4,36.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.12130873360163069,19133.0,5,3,5,5_0,5_1,5_0_0 -31947,2,59.0,0.0,1,112,1200.0,0.0,0.0,72,52,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,111282,2,1,1,0,1,,420.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,1458.21145409542,1200.0,22323.52709808978,7,1,0,1,65.0,8,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05778656725398851,14882.35139872652,3,2,3_0,3_1_0,3_1_0,3_1_0 -31948,1,29.0,354.0,2,112,840.0,0.0,0.0,52,63,0.0,465.827627168756,1161.0263511637818,1369.0,135.90583333102515,0.0,10,2,2,2,1,1,2,1,2,2,15.0,2,,2,100412,1,2,0,0,1,,232.0,603.0,43,2.0,0.0,4.0,4.0,2.1,2,1,2459.9706462115,840.0,25898.353435592056,4,1,2,3,87.0,8,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05286050340631254,12332.549255043836,2,1,2_1,2_0_1,2_1_1,2_0_1 -31949,2,58.0,0.0,8,112,300.0,0.0,0.0,84,78,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,2001.0,6,112647,2,2,1,0,1,,400.0,,41,1.0,3.0,3.0,3.0,2.0,2,2,1714.44871562599,300.0,33214.16610493989,3,7,1,2,88.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.009032290591073472,16607.083052469945,4,2,4_0,4_1_0,4_1_0,4_0_0 -31950,0,58.0,0.0,5,112,40.0,0.0,0.0,0,77,0.0,0.0,55.28696910303722,160.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118736,2,1,3,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,3,3,1846.29859531766,40.0,12008.996881964029,0,7,5,0,84.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013323344287006973,12008.996881964029,2,1,2_0,2_1_0,2_1_0,2_0_0 -31951,2,69.0,0.0,2,112,300.0,0.0,0.0,72,90,0.0,0.0,414.65226827277917,402.0,175.47335442739956,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123564,1,2,1,0,2,,0.0,,41,0.0,5.0,1.0,2.0,1.5,3,2,1699.41027235898,300.0,26103.26888882796,5,5,0,1,20.0,8,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015400370034576534,17402.17925921864,4,2,4_0,4_1_0,4_1_0,4_0_1 -31952,2,46.0,0.0,7,112,800.0,0.0,0.0,0,53,0.0,0.0,1105.7393820607444,936.0,233.96447256986607,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,126666,2,1,2,0,2,,250.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1490.96696835313,800.0,35520.429625305085,0,1,1,2,45.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026351032627521625,35520.429625305085,9,5,9,9_1,9_1,9_0_0 -31953,2,51.0,0.0,8,112,600.0,0.0,0.0,0,43,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,103076,2,1,2,0,1,,300.0,,32,2.0,0.0,4.0,2.0,1.5,3,3,1479.49945207703,600.0,66601.37214314713,0,1,1,2,45.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009008823402473042,44400.91476209809,10,5,10,10_1,10_1,10_0_0 -31954,2,65.0,0.0,7,112,886.0,0.0,0.0,74,74,0.0,0.0,1224.6063656322744,886.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,131144,2,1,2,0,1,,151.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1377.68208693942,886.0,76867.44356130139,5,5,0,1,97.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01152633623483809,51244.96237420093,10,5,10,10_1,10_1,10_0_0 -31955,2,71.0,0.0,5,112,600.0,0.0,0.0,0,77,0.0,0.0,829.3045365455583,650.0,86.01635020950958,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,106730,2,2,2,0,1,,100.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1536.73316553087,600.0,18435.490003336625,0,5,0,1,85.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03525808101017966,18435.490003336625,4,2,4_0,4_1_0,4_1_0,4_0_0 -31956,2,99.0,0.0,2,112,400.0,1200.0,0.0,77,75,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,50,2,2,2,2,1,2,2,2,0,,2,,2,117499,2,3,0,0,1,,380.0,,41,0.0,1.0,2.0,2.0,1.5,3,3,1835.55459562673,400.0,29250.82906947654,5,5,0,1,37.0,8,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.054699304289792326,19500.552712984358,5,3,5,5_0,5_1,5_0_1 -31957,2,64.0,0.0,2,112,892.0,0.0,0.0,75,74,0.0,0.0,1232.89941099773,892.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122050,2,3,0,0,1,,128.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,1718.46903909639,892.0,55911.85467942957,5,5,0,1,65.0,8,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015953682901672265,37274.56978628638,9,5,9,9_0,9_1,9_0_1 -31958,0,64.0,0.0,2,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,921.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,2,109840,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,4,4,2585.65007660783,0.0,9373.0,0,7,5,0,80.0,8,3,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09826096233863224,9373.0,1,1,1_0,1_0_0,1_1_0,1_0_1 -31959,2,54.0,0.0,6,112,1300.0,0.0,0.0,85,13,2837.8112663342013,0.0,1796.8264958487098,3380.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,107853,1,1,2,0,2,,450.0,,42,2.0,1.0,5.0,3.0,2.0,3,2,961.205367376601,1300.0,45196.520066961406,6,1,0,1,100.0,8,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07478451869728739,22598.260033480703,6,3,6,6_1,6_1,6_0_0 -31960,2,31.0,0.0,9,112,0.0,0.0,0.0,43,31,0.0,0.0,0.0,2007.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,129645,2,1,2,0,1,,211.0,,43,2.0,0.0,5.0,2.0,1.5,3,3,962.673348274542,0.0,73393.40562026078,1,1,1,2,120.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027345781041750068,48928.93708017385,10,5,10,10_1,10_1,10_0_0 -31961,1,25.0,406.0,1,112,0.0,0.0,0.0,68,68,0.0,0.0,0.0,372.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,125056,2,2,0,0,2,,0.0,610.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1250.56997588943,0.0,12137.737053267922,4,4,2,3,56.0,8,1,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.030648217074355225,5779.874787270439,1,1,1_1,1_0_1,1_1_1,1_1_0 -31962,2,36.0,0.0,1,112,0.0,0.0,0.0,0,64,0.0,0.0,0.0,797.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126948,2,3,4,0,2,,441.0,360.0,32,1.0,0.0,4.0,2.0,1.3,2,2,872.374452607224,0.0,52815.34161499257,0,4,2,3,86.0,8,1,9,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.015090312315120149,40627.18585768659,9,5,9,9_1,9_1,9_1_0 -31963,2,65.0,0.0,1,112,1673.0,0.0,0.0,75,75,0.0,0.0,2312.377482734532,1673.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,120780,2,1,1,0,1,,502.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,993.563890325153,1673.0,33200.85468490311,5,5,1,2,125.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05039026904210199,22133.90312326874,6,3,6,6_1,6_1,6_1_0 -31964,2,50.0,0.0,2,112,440.0,0.0,0.0,56,69,0.0,0.0,608.1566601334094,630.0,326.8621307961364,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,119611,2,2,4,0,1,,360.0,,43,3.0,0.0,3.0,4.0,2.5,3,3,752.069637187874,440.0,60733.52713746851,1,1,0,1,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.010373183144361333,24293.410854987404,7,4,7,7_1,7_1,7_0_1 -31965,2,62.0,0.0,1,112,1080.0,0.0,0.0,0,74,0.0,0.0,1492.748165782005,1115.0,60.21144514665671,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,105768,2,2,4,0,1,,335.0,,11,0.0,1.0,6.0,1.0,1.0,3,3,996.024811424558,1080.0,34750.30623135757,0,5,0,1,85.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03208604817973833,34750.30623135757,9,5,9,9_1,9_1,9_1_0 -31966,1,45.0,346.0,1,112,1150.0,0.0,0.0,0,56,0.0,0.0,1589.5003617123202,1600.0,774.1471518855863,0.0,41,2,2,2,2,1,2,2,2,0,,1,,1,103723,2,3,4,0,2,,285.0,400.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1079.92773287879,1150.0,9069.2656799953,0,4,2,3,55.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,1,0.17642001639991972,9069.2656799953,1,1,1_1,1_1_1,1_1_1,1_1_0 -31967,1,33.0,446.0,2,112,850.0,0.0,0.0,0,56,0.0,0.0,1174.848093439541,920.0,120.42289029331342,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,2,132603,2,2,5,0,1,,447.0,520.0,32,1.0,0.0,4.0,3.0,1.6,2,2,1182.69269615443,850.0,19433.437538991577,0,1,2,3,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.047341084054434344,12145.898461869734,2,1,2_1,2_1_1,2_1_1,2_0_1 -31968,2,73.0,0.0,1,112,550.0,0.0,0.0,71,75,2987.1697540360015,0.0,760.1958251667618,2710.0,275.25232067043066,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,100385,2,1,3,0,1,,750.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,942.629566921316,550.0,36217.04983044033,5,5,0,1,150.0,8,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07482663587143568,24144.69988696022,6,3,6,6_1,6_1,6_1_0 -31969,2,61.0,0.0,1,112,1180.0,0.0,0.0,85,78,0.0,538.289702506118,1630.965588539598,1830.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121059,2,3,4,0,2,,380.0,,41,0.0,1.0,5.0,4.0,2.5,1,1,907.138000363186,1180.0,35704.21530138576,6,5,0,1,70.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05125445229793283,14281.686120554305,3,2,3_0,3_1_0,3_1_0,3_1_0 -31970,1,41.0,24.0,9,112,1100.0,0.0,0.0,54,64,0.0,0.0,1520.3916503335236,1204.0,178.91400843577995,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,109266,2,1,1,0,1,,690.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,4,4,885.812633937079,1100.0,36826.31135001482,1,1,1,2,95.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03269401566061314,14163.965903851855,3,2,3_1,3_1_1,3_1_1,3_0_0 -31971,2,60.0,0.0,5,112,450.0,0.0,0.0,0,78,1792.3018524216009,0.0,621.9784024091688,1720.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,109768,1,1,2,0,2,,800.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,1074.98308041845,450.0,17465.862829592937,0,5,0,1,130.0,8,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09847781451058646,17465.862829592937,4,2,4_0,4_1_0,4_1_0,4_0_0 -31972,2,47.0,0.0,1,112,900.0,0.0,0.0,85,64,0.0,362.31037668681023,1243.9568048183376,1425.0,301.05722573328353,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,130237,2,1,1,0,1,,350.0,,42,1.0,3.0,8.0,6.0,2.6999999999999997,6,6,915.54926919809,900.0,20936.52976917473,6,1,1,2,180.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06806285548324517,7754.27028487953,1,1,1_0,1_1_0,1_1_0,1_1_0 -31973,2,39.0,0.0,1,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,528.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,40.0,2,,1,117590,2,2,0,0,1,,488.0,550.0,32,1.0,0.0,3.0,3.0,1.6,2,2,1377.96710940069,0.0,18307.069835148493,0,1,2,3,60.0,8,1,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.028841316756560962,11441.918646967808,2,1,2_0,2_0_0,2_1_0,2_1_0 -31974,2,67.0,0.0,7,112,1325.0,0.0,0.0,78,75,0.0,0.0,1831.380851538108,1405.0,137.62616033521533,0.0,60,2,2,2,1,2,2,2,2,0,,1,,5,106374,2,1,3,0,1,,400.0,,41,0.0,1.0,5.0,2.0,1.5,3,2,895.685840297414,1325.0,32582.0,5,5,0,1,112.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.04312196918543981,21721.333333333332,6,3,6,6_1,6_1,6_0_0 -31975,2,80.0,0.0,6,112,10300.0,0.0,0.0,0,77,0.0,0.0,14236.394544032084,10300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111732,2,2,2,0,1,,320.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1067.83189594575,10300.0,30274.44576946788,0,5,0,1,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.34022092686458577,30274.44576946788,8,4,8,8_1,8_1,8_0_0 -31976,0,78.0,0.0,5,112,1551.0,0.0,0.0,71,72,0.0,362.31037668681023,2143.752226970268,2051.0,258.04905062852873,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,124641,2,1,3,0,2,,946.0,,41,0.0,2.0,7.0,2.0,1.5,1,1,926.323102802146,1551.0,85605.67428206281,5,5,0,1,180.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023958692191853356,57070.44952137521,10,5,10,10_1,10_1,10_0_0 -31977,2,35.0,0.0,7,112,1700.0,0.0,0.0,68,54,0.0,0.0,2349.696186879082,1770.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124021,1,2,1,0,1,,560.0,,43,2.0,0.0,3.0,3.0,1.8,4,2,978.117423659467,1700.0,43166.63911564087,1,1,0,1,95.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04100388717449776,23981.46617535604,6,3,6,6_1,6_1,6_0_0 -31978,1,78.0,31.0,9,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,829.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,2010.0,6,105761,2,3,3,0,1,,240.0,277.0,11,0.0,5.0,2.0,1.0,1.0,1,1,919.010005256252,0.0,13929.318166702642,0,5,2,3,50.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.05951475801462301,13929.318166702642,3,2,3_1,3_1_1,3_1_1,3_0_0 -31979,2,48.0,0.0,9,112,1950.0,0.0,0.0,56,53,0.0,362.31037668681023,2695.2397437730647,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,125785,2,1,1,0,1,,704.0,,43,3.0,1.0,8.0,4.0,2.3,2,1,861.304567258021,1950.0,38817.170811672375,1,1,1,2,169.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05925212868188701,16877.03078768364,4,2,4_0,4_1_0,4_1_0,4_0_0 -31980,0,36.0,0.0,1,112,959.0,0.0,0.0,0,62,0.0,0.0,1325.5050842453174,1001.0,72.25373417598806,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,,1,128178,2,1,0,0,1,,349.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,1188.80912374424,959.0,17733.592856847066,0,1,5,0,75.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05644654233806359,13641.225274497743,3,2,3_0,3_0_0,3_1_0,3_1_0 -31981,2,55.0,0.0,1,112,860.0,0.0,0.0,68,63,0.0,0.0,1188.6698357153002,965.0,180.63433543997013,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,1,107503,2,2,0,0,1,,410.0,650.0,43,2.0,6.0,3.0,2.0,1.5,2,2,1243.7310565966,860.0,28551.52222994184,1,1,2,3,75.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.033798548190471234,19034.34815329456,5,3,5,5_0,5_1,5_1_0 -31982,2,45.0,0.0,7,112,900.0,0.0,0.0,0,43,2240.377315527001,0.0,1243.9568048183376,2400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,111452,2,1,2,0,1,,735.0,,32,1.0,0.0,6.0,3.0,1.8,2,2,960.717051564077,900.0,42479.82638395137,0,1,0,1,160.0,8,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056497406046525325,23599.90354663965,6,3,6,6_1,6_1,6_0_0 -31983,2,33.0,0.0,1,112,370.0,0.0,0.0,0,67,1120.1886577635005,0.0,511.40446420309434,1190.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,129814,1,1,4,0,2,,410.0,,12,1.0,0.0,6.0,1.0,1.0,2,2,1048.5303584591,370.0,15843.7411540235,0,1,1,2,128.0,8,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0751085231973637,15843.7411540235,3,2,3_0,3_1_0,3_1_0,3_1_0 -31984,2,88.0,0.0,1,112,520.0,0.0,0.0,0,77,0.0,0.0,718.7305983394839,565.0,77.41471518855863,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119571,1,2,3,0,2,,220.0,,11,0.0,5.0,4.0,1.0,1.0,2,2,1006.93583670875,520.0,13417.973845094699,0,5,0,1,75.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.042107698712391735,13417.973845094699,3,2,3_0,3_1_0,3_1_0,3_1_0 -31985,2,79.0,0.0,6,112,460.0,0.0,0.0,0,78,0.0,155.27587572291867,635.800144684928,745.0,232.24414556567586,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,115922,2,3,4,0,2,,256.0,,11,0.0,4.0,5.0,1.0,1.0,3,2,1015.68639044973,460.0,12254.643309602816,0,5,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06079328309916726,12254.643309602816,2,1,2_0,2_1_0,2_1_0,2_0_0 -31986,2,64.0,0.0,6,112,1026.0,0.0,0.0,0,77,0.0,0.0,1418.1107574929047,1026.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,116530,1,2,3,0,2,,240.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1009.81685799269,1026.0,14850.701672555462,0,5,0,1,102.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06908764465291754,14850.701672555462,3,2,3_0,3_1_0,3_1_0,3_0_0 -31987,2,74.0,0.0,1,112,780.0,0.0,0.0,0,86,0.0,0.0,1078.0958975092258,850.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111034,2,2,4,0,2,,120.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1044.00255943316,780.0,11914.281148302609,0,6,0,1,55.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07134295300065979,11914.281148302609,2,1,2_0,2_1_0,2_1_0,2_1_0 -31988,0,57.0,0.0,2,112,970.0,0.0,0.0,56,52,0.0,579.6966026988963,1340.7090007486527,1572.0,72.25373417598806,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107299,1,1,3,0,1,,380.0,,43,2.0,2.0,6.0,2.0,1.5,4,3,1051.10806037829,970.0,14446.19874887967,4,4,5,0,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10881755313811611,9630.79916591978,1,1,1_0,1_1_0,1_1_0,1_0_1 -31989,2,54.0,0.0,1,112,480.0,0.0,0.0,52,67,0.0,310.55175144583734,663.4436292364467,861.0,139.3464873394055,0.0,71,0,0,0,0,0,0,0,0,1,20.0,1,,1,108761,1,2,3,0,2,,480.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,935.952404171912,480.0,44742.01737322402,1,1,0,1,140.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019243656199446825,29828.01158214935,8,4,8,8_1,8_1,8_1_0 -31990,2,80.0,0.0,1,112,530.0,0.0,0.0,77,71,2837.8112663342013,0.0,732.5523406152432,2570.0,240.84578058662683,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,128682,2,2,4,0,2,,440.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,896.361727505543,530.0,37891.6236306561,5,5,0,1,95.0,8,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06782501655381032,25261.082420437397,7,4,7,7_1,7_1,7_1_0 -31991,1,47.0,254.0,1,112,660.0,0.0,0.0,0,54,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,111607,2,2,0,0,1,,240.0,500.0,12,1.0,1.0,4.0,1.0,1.0,2,2,1252.7315904955,660.0,7579.427757228796,0,4,2,3,75.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.08707781393793644,7579.427757228796,1,1,1_1,1_0_1,1_1_1,1_1_0 -31992,0,84.0,0.0,2,112,810.0,0.0,0.0,0,71,0.0,0.0,1119.5611243365038,900.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112416,2,1,2,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,930.131234426944,810.0,12184.704525297224,0,5,0,1,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07386309599313375,12184.704525297224,2,1,2_0,2_1_0,2_1_0,2_0_1 -31993,2,64.0,0.0,1,112,1070.0,0.0,0.0,86,75,0.0,0.0,1478.9264235062458,1140.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120131,2,2,4,0,1,,450.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,762.465964162146,1070.0,18772.273744824663,7,5,0,1,120.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.060727859368356334,12514.849163216442,2,1,2_0,2_1_0,2_1_0,2_1_0 -31994,2,56.0,0.0,7,112,947.0,0.0,0.0,0,75,0.0,310.55175144583734,1308.9189935144063,1269.0,37.84719409218422,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,114795,2,1,1,0,1,,316.0,,11,0.0,0.0,4.0,1.0,1.0,3,2,1077.47398557953,947.0,24687.227468689925,0,7,0,1,127.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0514030990968684,24687.227468689925,7,4,7,7_1,7_1,7_0_0 -31995,2,45.0,0.0,9,112,1200.0,0.0,0.0,54,21,0.0,0.0,1658.6090730911167,3350.0,3698.703059008912,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,126710,2,1,1,0,1,,555.0,,43,3.0,0.0,6.0,4.0,2.5,2,2,880.867692768819,1200.0,84931.26222543896,4,1,1,2,138.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03944366199465942,33972.50489017558,9,5,9,9_1,9_1,9_0_0 -31996,2,67.0,0.0,5,112,1228.0,0.0,0.0,86,78,0.0,0.0,1697.3099514632427,1298.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,133403,1,1,2,0,2,,343.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,856.14556094045,1228.0,52559.83911611465,5,5,0,1,98.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024695661589307225,35039.89274407643,9,5,9,9_1,9_1,9_0_0 -31997,2,64.0,0.0,5,112,1420.0,0.0,0.0,12,43,0.0,0.0,1962.6874031578213,1453.0,56.77079113827632,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,114800,2,2,5,0,1,,481.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,926.222885117945,1420.0,53160.440082691144,1,5,0,1,122.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027332354618205875,35440.29338846076,9,5,9,9_1,9_1,9_0_0 -31998,2,59.0,0.0,6,112,1331.0,0.0,0.0,0,75,0.0,0.0,1839.6738969035637,1446.0,197.83760548187203,0.0,71,2,2,2,1,2,2,2,2,0,,1,,4,101961,1,3,2,0,2,,398.0,,11,0.0,2.0,6.0,1.0,1.0,3,1,996.407733237702,1331.0,47858.56748490674,0,5,0,1,143.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.030214025951696696,47858.56748490674,10,5,10,10_1,10_1,10_0_0 -31999,2,45.0,0.0,7,112,1310.0,0.0,0.0,0,67,0.0,0.0,1810.6482381244691,1310.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,5,112905,2,1,1,0,1,,319.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,879.910222219787,1310.0,21312.796529895502,0,1,1,2,67.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061465420465233664,21312.796529895502,6,3,6,6_1,6_1,6_0_0 -32000,2,79.0,0.0,7,112,650.0,0.0,0.0,0,86,0.0,0.0,898.4132479243549,1800.0,1978.3760548187204,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,130731,2,1,2,0,1,,340.0,,11,0.0,2.0,5.0,1.0,1.0,3,3,975.226211069127,650.0,18353.631284986597,0,6,0,1,95.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09807323532059908,18353.631284986597,4,2,4_0,4_1_0,4_1_0,4_0_0 -32001,2,48.0,0.0,7,112,1050.0,0.0,0.0,31,56,0.0,0.0,1451.2829389547271,1200.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,103234,2,1,2,0,1,,224.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,1002.13977388883,1050.0,25857.212213195628,1,1,1,2,85.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0464087152979163,12928.606106597814,2,1,2_0,2_1_0,2_1_0,2_0_0 -32002,2,47.0,0.0,7,112,838.0,0.0,0.0,55,62,0.0,0.0,1158.2620027086298,838.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,111520,2,2,3,0,1,,449.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1016.85562363257,838.0,39270.930949044094,1,1,0,1,85.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021338939000130782,21817.18386058005,6,3,6,6_1,6_1,6_0_0 -32003,2,84.0,0.0,7,112,799.0,0.0,0.0,0,71,0.0,0.0,1104.3572078331686,835.0,61.9317721508469,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,131838,2,1,2,0,1,,323.0,324.0,11,0.0,1.0,3.0,1.0,1.0,2,2,969.039186818663,799.0,16973.2633426544,0,5,2,3,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04919501825565953,16973.2633426544,4,2,4_0,4_1_0,4_1_0,4_0_0 -32004,2,50.0,0.0,2,112,770.0,0.0,0.0,85,64,1269.5471454653007,124.22070057833493,1064.2741552334664,1740.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,2,115998,2,2,2,0,1,,509.0,,42,2.0,2.0,3.0,3.0,2.0,2,2,1067.26951274044,770.0,30554.69221422472,6,1,0,1,90.0,8,1,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05694706357375592,15277.34610711236,3,2,3_0,3_1_0,3_1_0,3_0_1 -32005,2,43.0,0.0,1,111,960.0,0.0,0.0,0,68,0.0,0.0,1326.8872584728933,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,122320,2,1,0,0,1,,0.0,300.0,12,1.0,1.0,1.0,1.0,1.0,4,3,1761.66218162904,960.0,24940.46604687903,0,1,3,4,30.0,6,4,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03849166243307355,24940.46604687903,7,4,7,7_0,7_2,7_1_0 -32007,2,43.0,0.0,1,111,364.0,0.0,0.0,0,53,0.0,0.0,503.1114188376387,364.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,113210,2,1,0,0,2,,174.0,307.0,12,1.0,1.0,1.0,1.0,1.0,1,1,2198.96394168537,364.0,24994.24257031615,0,1,2,3,32.0,6,4,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.014563353899441482,24994.24257031615,7,4,7,7_0,7_2,7_1_0 -32008,2,70.0,0.0,2,111,416.0,759.0,0.0,77,75,0.0,0.0,574.9844786715871,1175.0,0.0,1376.5625517432138,71,0,0,0,0,0,0,0,0,0,,2,,2,120008,2,1,0,0,1,,267.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,368.90032047188,416.0,30152.890043943884,5,5,0,1,84.0,4,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03896807232366754,20101.92669596259,5,3,5,5_0,5_2,5_0_1 -32009,1,21.0,305.0,2,111,0.0,0.0,0.0,84,63,0.0,0.0,0.0,314.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,7.0,2,,2,133205,2,1,0,0,1,,260.0,464.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1924.67599102293,0.0,12281.765725458776,3,1,2,3,50.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025566356419672774,8187.843816972517,1,1,1_1,1_0_1,1_2_1,1_0_1 -32010,1,45.0,172.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1775.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,111577,2,1,2,0,2,,190.0,,32,1.0,0.0,3.0,3.0,2.0,1,1,303.274517848582,0.0,31381.750351903116,0,1,1,2,68.0,4,4,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.056561535927595476,15690.875175951558,3,2,3_1,3_1_1,3_2_1,3_1_0 -32011,1,88.0,160.0,2,111,343.0,862.0,0.0,0,72,0.0,0.0,474.08576005854417,1205.0,0.0,1563.368800530501,31,2,2,2,2,1,2,2,2,0,,2,,2,122995,1,2,0,0,2,,130.0,500.0,11,0.0,5.0,2.0,1.0,1.0,3,2,459.080013862114,343.0,11724.914784661341,0,5,2,3,64.0,4,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.10277260194474026,11724.914784661341,2,1,2_1,2_0_1,2_2_1,2_0_1 -32012,2,47.0,0.0,1,111,600.0,0.0,0.0,85,69,0.0,207.03450096389156,829.3045365455583,1790.0,1703.1237341482897,0.0,71,2,2,2,1,1,2,2,2,2,30.0,2,,1,118932,2,2,0,0,1,,220.0,420.0,42,1.0,0.0,2.0,6.0,3.0999999999999996,2,2,423.856181957152,600.0,14234.785183948596,6,1,2,3,50.0,4,4,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,1,0,0,0,0.1257482973482759,4591.866188370515,1,1,1_0,1_0_0,1_2_0,1_1_0 -32013,2,25.0,0.0,9,111,473.0,0.0,0.0,0,55,0.0,0.0,653.7684096434151,506.0,56.77079113827632,0.0,12,2,2,2,2,1,2,2,2,2,10.0,2,2009.0,6,116287,2,1,0,0,1,1600.0,200.0,390.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2142.06640840197,473.0,16730.709651428235,0,1,2,3,33.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,1,0,0,0,0.030243785860978395,16730.709651428235,4,2,4_0,4_0_0,4_2_0,4_0_0 -32014,2,31.0,0.0,1,111,1078.0,0.0,0.0,56,62,0.0,0.0,1489.983817326853,1111.0,56.77079113827632,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,104176,1,2,0,0,2,,240.0,364.0,43,2.0,0.0,2.0,2.0,1.5,3,2,368.783543370537,1078.0,17867.69261579855,4,1,2,3,42.0,4,4,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06217926533041304,11911.795077199034,2,1,2_0,2_0_0,2_2_0,2_1_0 -32015,2,28.0,0.0,2,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,927.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,2,110683,1,3,2,0,2,,128.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1216.85976952423,0.0,34525.212830017656,4,1,1,2,140.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026849943099960492,19180.67379445425,5,3,5,5_1,5_2,5_0_1 -32016,2,53.0,0.0,1,111,360.0,800.0,0.0,52,53,0.0,0.0,497.582721927335,1160.0,0.0,1450.922320677959,42,0,0,0,0,0,0,0,0,0,,1,,1,109655,2,2,2,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,3,2,232.962620023427,360.0,35891.66075839566,1,1,0,1,150.0,4,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03231948523665505,23927.77383893044,6,3,6,6_1,6_2,6_1_0 -32017,2,28.0,0.0,9,111,2400.0,0.0,0.0,0,23,0.0,0.0,3317.2181461822333,2515.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2012.0,6,126007,2,1,1,0,1,,313.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1442.43379773084,2400.0,10912.529837468142,0,1,1,2,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.23046901474346984,10912.529837468142,2,1,2_0,2_1_0,2_3_0,2_0_0 -32018,2,80.0,0.0,7,111,576.0,0.0,0.0,0,77,0.0,0.0,796.132355083736,576.0,0.0,0.0,71,2,2,1,1,1,2,2,2,0,,2,,5,125066,2,2,0,0,1,,140.0,,11,0.0,2.0,3.0,1.0,1.0,4,4,1845.12011058424,576.0,43980.599362834255,0,5,0,1,90.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.013096683727478894,43980.599362834255,10,5,10,10_0,10_2,10_0_0 -32019,2,45.0,0.0,7,111,902.0,0.0,0.0,45,38,119.48679016144006,0.0,1246.7211532734893,1072.0,154.82943037711726,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,117271,2,1,2,0,1,,91.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,1229.57238119844,902.0,70297.34871482605,1,1,0,1,140.0,6,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015249508261666633,28118.93948593042,8,4,8,8_1,8_2,8_0_0 -32020,2,61.0,0.0,6,111,2340.0,0.0,0.0,31,31,0.0,0.0,3234.2876925276773,2693.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,4.0,1,,4,102291,2,1,2,0,1,,398.0,,43,2.0,3.0,7.0,2.0,1.5,1,1,1295.81422514239,2340.0,251112.61044054638,1,1,0,1,180.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010724272250905522,167408.40696036426,10,5,10,10_1,10_2,10_0_0 -32021,2,33.0,0.0,9,111,1020.0,0.0,0.0,54,46,0.0,310.55175144583734,1409.817712127449,1320.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,124724,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1530.00601478952,1020.0,29205.81656529836,1,1,0,1,149.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045196476429575055,16225.453647387976,4,2,4_0,4_1_0,4_2_0,4_0_0 -32022,1,37.0,440.0,5,111,200.0,250.0,0.0,63,85,0.0,0.0,276.4348455151861,450.0,0.0,453.4132252118622,50,2,1,2,2,1,2,2,2,0,,2,,3,128869,2,2,0,1,1,504.0,0.0,379.0,42,1.0,0.0,4.0,7.0,3.3999999999999995,4,4,347.187877517903,200.0,20190.666378698734,4,6,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.02228752590725547,5938.43128785257,1,1,1_1,1_0_1,1_3_1,1_0_0 -32023,2,46.0,0.0,9,111,0.0,0.0,0.0,42,37,0.0,0.0,0.0,1618.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,121354,1,1,1,0,1,,399.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,135.301125135029,0.0,52731.78734937547,1,1,1,2,118.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030683579702692608,25110.374928274032,7,4,7,7_1,7_3,7_0_0 -32024,2,67.0,0.0,8,111,410.0,750.0,0.0,75,74,0.0,0.0,566.6914333061316,1160.0,0.0,1360.2396756355868,42,0,0,0,0,0,0,0,0,0,,1,2001.0,6,120593,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,1201.83306258864,410.0,52417.951157645155,5,5,0,1,100.0,6,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022129823359774984,34945.30077176344,9,5,9,9_1,9_2,9_0_0 -32025,2,68.0,0.0,2,111,520.0,160.0,0.0,77,75,2748.1961737131214,0.0,718.7305983394839,2520.0,0.0,290.18446413559184,50,1,2,2,1,1,2,2,2,0,,2,,2,123077,1,3,0,1,2,,160.0,,41,0.0,0.0,4.0,4.0,2.5,2,2,1664.94446020416,520.0,27867.841161855846,6,5,0,1,88.0,6,4,9,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.09042681079470391,11147.136464742338,2,1,2_0,2_0_0,2_2_0,2_0_1 -32026,2,47.0,0.0,9,111,1510.0,0.0,0.0,54,46,0.0,0.0,2087.0830836396553,1650.0,240.84578058662683,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,115883,2,1,1,0,1,,250.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,967.785428321342,1510.0,76421.75565300863,1,1,1,2,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021590710471135866,42456.530918338125,9,5,9,9_1,9_3,9_0_0 -32027,2,87.0,0.0,5,111,240.0,0.0,0.0,0,78,646.7222517487943,0.0,331.72181461822333,703.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,117793,2,1,0,1,1,,80.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1923.45528785731,240.0,28578.18731053512,0,5,0,1,80.0,6,4,9,1,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02459918091938759,28578.18731053512,8,4,8,8_0,8_2,8_0_0 -32028,2,28.0,0.0,9,111,552.0,0.0,0.0,0,64,0.0,0.0,762.9601736219137,602.0,86.01635020950958,0.0,71,2,2,2,2,1,2,2,2,2,5.0,2,2009.0,6,104122,2,2,0,0,1,479.0,156.0,296.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1602.57762542405,552.0,22967.50628600686,0,1,2,3,45.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.026210943082086945,22967.50628600686,6,3,6,6_0,6_2,6_0_0 -32029,2,53.0,0.0,5,111,598.0,0.0,0.0,85,78,0.0,0.0,826.5401880904064,598.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,108292,2,1,0,1,2,,0.0,,41,2.0,2.0,4.0,6.0,3.5,3,2,381.679962625135,598.0,10870.905459617907,6,7,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05500921723782691,3105.972988462259,1,1,1_0,1_0_0,1_3_0,1_0_0 -32030,2,31.0,0.0,9,111,800.0,0.0,0.0,48,53,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,112427,2,1,1,0,1,,480.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,624.921679804684,800.0,76202.11980718464,1,1,1,2,104.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01049839560925932,42334.511003991465,9,5,9,9_1,9_3,9_0_0 -32031,1,26.0,254.0,2,111,165.0,0.0,0.0,0,34,0.0,0.0,228.05874755002856,165.0,0.0,0.0,31,2,2,2,2,1,1,1,2,0,,2,,2,108523,1,3,0,0,2,,100.0,380.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2105.80926874453,165.0,15008.571266808503,0,4,2,3,60.0,6,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.010993717993990404,15008.571266808503,3,2,3_1,3_0_1,3_2_1,3_0_1 -32032,1,50.0,186.0,2,111,353.0,0.0,0.0,85,64,0.0,0.0,487.9075023343035,982.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,125615,2,1,0,1,1,973.0,0.0,373.0,42,2.0,0.0,4.0,6.0,3.0999999999999996,2,2,430.989000399838,353.0,32132.20542858934,6,1,2,3,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030561238698115455,10365.227557609465,2,1,2_1,2_0_1,2_3_1,2_0_1 -32033,0,75.0,0.0,9,111,850.0,0.0,0.0,71,78,0.0,0.0,1174.848093439541,1070.0,378.4719409218422,0.0,71,0,0,0,0,0,0,0,0,0,,2,2011.0,6,110899,2,1,0,0,1,,520.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1537.41945305107,850.0,16808.734313404297,5,5,0,1,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06365738074321976,11205.822875602864,2,1,2_0,2_0_0,2_3_0,2_0_0 -32034,0,67.0,0.0,6,111,1809.0,0.0,0.0,0,74,0.0,62.110350289167464,2500.3531776848586,1899.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,118163,2,1,2,0,1,,196.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1370.69265391957,1809.0,54278.236866825406,0,5,0,1,150.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03498639804124993,54278.236866825406,10,5,10,10_1,10_2,10_0_0 -32035,2,43.0,0.0,9,112,2200.0,0.0,0.0,85,38,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,100804,2,2,1,0,1,,400.0,1500.0,42,1.0,0.0,4.0,4.0,2.1,1,1,2096.27604254116,2200.0,71291.76782686487,6,1,2,3,95.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030859102909929163,33948.460869935654,9,5,9,9_1,9_1,9_0_0 -32036,1,48.0,100.0,8,111,229.0,727.0,0.0,11,54,0.0,0.0,316.5178981148881,956.0,0.0,1318.5256589160954,60,1,2,2,2,1,2,2,2,2,13.0,1,2001.0,6,107011,2,2,5,0,1,,259.0,444.0,43,4.0,0.0,4.0,5.0,3.0,2,2,1248.92775755279,229.0,41322.1560678855,1,1,2,3,90.0,6,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.023135288449843937,13774.0520226285,3,2,3_1,3_1_1,3_2_1,3_0_0 -32037,2,27.0,0.0,7,111,526.0,0.0,0.0,52,63,448.0754631054002,724.6207533736205,727.0236437049394,1526.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,111694,2,2,5,0,1,,247.0,600.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1358.65221348223,526.0,33756.51444899776,1,1,2,3,110.0,6,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04520608910335253,22504.34296599851,6,3,6,6_1,6_2,6_0_0 -32038,2,86.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2063.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131310,2,2,5,0,2,,196.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1317.80477979006,0.0,39784.63728673174,0,5,0,1,80.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05185418645724375,39784.63728673174,9,5,9,9_1,9_2,9_0_1 -32039,2,37.0,0.0,9,111,0.0,0.0,0.0,54,21,0.0,0.0,0.0,2060.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,108463,2,1,1,0,1,,411.0,400.0,43,2.0,0.0,3.0,4.0,2.1,5,4,648.138475366065,0.0,48210.002480177776,1,1,2,3,90.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04272972192538256,22957.144038179893,6,3,6,6_1,6_2,6_0_0 -32040,0,80.0,0.0,2,111,667.0,0.0,0.0,77,75,1772.885249020367,0.0,921.9102097931457,1854.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,110652,2,1,4,1,1,,243.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1255.34696146108,667.0,26079.165782256972,5,5,0,1,65.0,6,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07109123104165294,17386.11052150465,4,2,4_0,4_1_0,4_2_0,4_0_1 -32041,2,61.0,0.0,1,111,288.0,0.0,0.0,0,11,0.0,517.5862524097289,398.066177541868,788.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,111434,2,3,4,0,1,,120.0,,22,1.0,0.0,5.0,2.0,1.5,1,1,1221.28623608116,288.0,35469.76232701916,0,1,0,1,90.0,6,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.022216106009815,23646.508218012776,6,3,6,6_1,6_2,6_1_0 -32042,2,70.0,0.0,2,111,1200.0,0.0,0.0,77,38,1732.5584573408808,0.0,1658.6090730911167,2360.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,133264,2,1,3,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1341.78284998682,1200.0,27615.630582450016,5,5,0,1,115.0,6,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08545884885568397,18410.420388300012,4,2,4_0,4_1_0,4_2_0,4_0_1 -32043,2,51.0,0.0,9,111,960.0,0.0,0.0,54,12,0.0,0.0,1326.8872584728933,1393.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,122087,2,1,1,0,1,,0.0,,43,2.0,1.0,2.0,4.0,2.1,1,1,1373.31787166857,960.0,10287.072535990797,4,1,0,1,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13541267402620036,4898.605969519427,1,1,1_0,1_1_0,1_3_0,1_0_0 -32044,2,63.0,0.0,6,111,1000.0,0.0,0.0,77,52,0.0,0.0,1382.1742275759307,1080.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,4,108184,1,2,0,0,1,,257.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1752.89109830662,1000.0,75464.20955000947,5,5,0,1,100.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014311420028646738,50309.47303333965,10,5,10,10_0,10_2,10_0_0 -32045,2,52.0,0.0,2,111,0.0,0.0,0.0,56,54,0.0,0.0,0.0,3327.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,10.0,2,,2,109699,1,1,0,0,1,,112.0,360.0,43,2.0,1.0,4.0,3.0,2.0,1,1,1607.78453787574,0.0,46088.51123385172,1,1,2,3,85.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07218718745586947,23044.25561692586,6,3,6,6_0,6_2,6_0_1 -32046,2,67.0,0.0,2,111,500.0,0.0,0.0,0,78,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118933,2,1,0,1,1,865.0,0.0,370.0,11,0.0,5.0,4.0,1.0,1.0,1,1,527.361424329679,500.0,18260.642993184876,0,5,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027381292114774212,18260.642993184876,4,2,4_0,4_0_0,4_3_0,4_0_1 -32047,2,49.0,0.0,5,111,990.0,0.0,0.0,0,31,0.0,0.0,1368.3524853001713,990.0,0.0,0.0,71,2,1,2,2,1,2,2,2,1,10.0,2,,3,112539,1,2,0,0,1,635.0,0.0,740.0,32,1.0,1.0,5.0,3.0,2.0,7,6,2042.14691760089,990.0,47794.27083125281,0,1,2,3,98.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.020713779764428085,23897.135415626406,6,3,6,6_0,6_2,6_0_0 -32048,1,44.0,226.0,2,111,600.0,600.0,0.0,85,68,0.0,0.0,829.3045365455583,1200.0,0.0,1088.1917405084694,50,2,1,2,1,1,2,2,2,3,30.0,2,,2,130967,2,2,0,1,1,717.0,0.0,274.0,42,1.0,0.0,3.0,3.0,1.8,4,4,399.383675281264,600.0,22529.19655080054,7,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05326421638224643,12516.220306000301,2,1,2_1,2_0_1,2_3_1,2_0_1 -32049,2,46.0,0.0,2,111,416.0,0.0,0.0,0,21,0.0,0.0,574.9844786715871,1498.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,129894,2,2,0,1,1,1108.0,165.0,600.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2304.07093955407,416.0,6924.6258063476125,0,1,2,3,59.0,6,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.2163293789285805,6924.6258063476125,1,1,1_0,1_0_0,1_2_0,1_0_1 -32050,2,70.0,0.0,5,111,500.0,80.0,0.0,77,78,0.0,0.0,691.0871137879653,580.0,0.0,145.09223206779592,71,2,2,2,1,2,2,2,2,0,,2,,3,118264,1,3,0,1,2,184.0,0.0,314.0,41,0.0,1.0,3.0,2.0,1.5,3,3,375.203249665557,500.0,32270.30381624247,5,5,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.017973180646290388,21513.535877494982,6,3,6,6_0,6_3,6_0_0 -32051,2,71.0,0.0,9,221,1800.0,0.0,0.0,0,72,0.0,0.0,2487.913609636675,2000.0,344.06540083803833,0.0,12,0,0,0,0,0,0,0,0,0,,1,2011.0,6,100683,2,1,1,0,1,,2000.0,,31,0.0,1.0,3.0,2.0,1.3,2,2,1603.01145690501,1800.0,12730.619741069557,0,5,0,1,120.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1571015426333024,9792.78441620735,2,1,2_0,2_1_0,2_1_0,2_0_0 -32052,2,64.0,0.0,2,111,1270.0,0.0,0.0,85,75,2987.1697540360015,0.0,1755.3612690214318,3510.0,412.878481005646,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,133459,2,2,0,1,1,,480.0,,41,1.0,2.0,5.0,3.0,2.0,2,1,1939.3660640552,1270.0,43031.37037192131,6,5,0,1,99.0,6,4,9,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08156839927854898,21515.685185960654,6,3,6,6_0,6_2,6_0_1 -32053,1,34.0,40.0,2,111,0.0,0.0,0.0,46,55,0.0,0.0,0.0,248.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,111340,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,1,386.156216128901,0.0,31148.539206015135,4,1,1,2,55.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.00796185010024831,14832.637717150064,3,2,3_1,3_0_1,3_3_1,3_0_1 -32054,2,90.0,0.0,2,111,600.0,0.0,0.0,77,78,0.0,0.0,829.3045365455583,1069.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123989,2,1,0,1,1,,250.0,,41,0.0,4.0,4.0,2.0,1.5,1,1,1814.60027854651,600.0,32894.77811216077,5,5,0,1,91.0,6,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.032497559228247375,21929.852074773848,6,3,6,6_0,6_2,6_0_1 -32055,0,38.0,0.0,6,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,387.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,104976,2,1,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,3,3,549.143723883404,0.0,5935.0,0,4,5,0,32.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06520640269587194,5935.0,1,1,1_0,1_0_0,1_3_0,1_0_0 -32056,1,28.0,373.0,9,111,336.0,400.0,0.0,68,21,0.0,0.0,464.41054046551267,736.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,2012.0,6,117096,2,1,0,0,1,,350.0,352.0,43,2.0,0.0,3.0,3.0,1.8,3,2,3434.79858526093,336.0,9414.0,4,4,2,3,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0781814319099214,5230.0,1,1,1_1,1_0_1,1_3_1,1_0_0 -32057,2,85.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,431.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130375,1,1,0,1,1,,0.0,400.0,11,0.0,0.0,1.0,1.0,1.0,2,2,2583.00847569475,0.0,23718.98635314696,0,5,2,3,24.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01817109692559928,23718.98635314696,6,3,6,6_0,6_2,6_0_1 -32058,0,49.0,0.0,2,111,360.0,360.0,0.0,0,54,0.0,0.0,497.582721927335,720.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,2,,2,102889,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,1,547.65769338784,360.0,5198.980668875265,0,4,5,0,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1384886857361143,5198.980668875265,1,1,1_0,1_0_0,1_3_0,1_0_1 -32059,2,75.0,0.0,5,111,300.0,0.0,0.0,77,74,0.0,0.0,414.65226827277917,300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,130471,2,1,0,1,1,578.0,0.0,404.0,41,0.0,1.0,3.0,2.0,1.5,2,2,424.355481131378,300.0,26868.806635621077,5,5,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011165363764324305,17912.537757080718,4,2,4_0,4_0_0,4_3_0,4_0_0 -32060,2,61.0,0.0,9,112,1100.0,0.0,0.0,0,75,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,105152,2,1,1,0,1,,120.0,,11,0.0,1.0,5.0,1.0,1.0,5,4,2143.20939194377,1100.0,56640.1102778045,0,5,0,1,140.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019420866142470343,56640.1102778045,10,5,10,10_1,10_0,10_0_0 -32061,2,40.0,0.0,5,111,1350.0,0.0,0.0,43,34,0.0,0.0,1865.9352072275062,1350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,3,116553,1,1,2,0,1,,571.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,5,4,1234.60160653859,1350.0,63655.158244569146,1,1,1,2,180.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021208022055544534,23575.98453502561,6,3,6,6_1,6_2,6_0_0 -32062,1,52.0,271.0,2,111,480.0,0.0,0.0,0,85,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,125946,1,3,0,1,1,,0.0,311.0,11,0.0,0.0,2.0,1.0,1.0,3,3,403.637180906354,480.0,16014.16250551194,0,7,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,1,1,0.02997346878644375,16014.16250551194,4,2,4_1,4_0_1,4_3_1,4_0_1 -32063,1,57.0,422.0,6,111,250.0,0.0,0.0,85,78,0.0,0.0,345.54355689398267,1038.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,117601,2,3,0,1,1,302.0,0.0,426.0,41,0.0,2.0,4.0,4.0,2.3,2,2,308.304964676179,250.0,3181.0515091344573,6,7,2,3,96.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.3263071965415715,1383.0658735367206,1,1,1_1,1_0_1,1_3_1,1_0_0 -32064,2,27.0,0.0,9,111,600.0,0.0,0.0,56,46,0.0,0.0,829.3045365455583,650.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,130462,2,1,0,1,1,376.0,200.0,460.0,43,2.0,0.0,2.0,2.0,1.5,3,3,1873.71859100549,600.0,35760.51513826774,4,1,2,3,54.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01817647194082021,23840.34342551183,6,3,6,6_0,6_2,6_0_0 -32065,2,49.0,0.0,7,111,2250.0,1200.0,0.0,0,56,0.0,0.0,3109.892012045844,3450.0,0.0,2176.3834810169387,31,0,0,0,0,0,0,0,0,0,,2,,5,108623,1,2,0,0,1,,525.0,480.0,32,3.0,1.0,4.0,3.0,2.0,4,4,399.330185835531,2250.0,46122.3133309406,0,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07480110494990305,23061.1566654703,6,3,6,6_0,6_3,6_0_0 -32066,2,38.0,0.0,9,111,0.0,0.0,0.0,42,46,0.0,0.0,0.0,2080.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,101408,2,2,1,0,1,,315.0,964.0,43,2.0,0.0,4.0,5.0,2.4,1,1,1009.9262166392,0.0,52229.007445704294,1,1,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03982461282961016,21762.086435710124,6,3,6,6_1,6_3,6_0_0 -32067,1,42.0,405.0,2,111,1230.0,0.0,0.0,84,63,694.5169678133703,0.0,1700.0742999183947,1725.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100841,2,2,1,0,1,,0.0,909.0,42,1.0,0.0,6.0,8.0,3.499999999999999,1,1,1393.37251307009,1230.0,36079.09520617689,3,4,2,3,140.0,6,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04781162027878883,10308.312916050543,2,1,2_1,2_1_1,2_2_1,2_0_1 -32068,2,68.0,0.0,5,111,0.0,0.0,810.0,77,77,0.0,0.0,413.8398012183953,810.0,0.0,926.0290774686315,71,0,0,0,0,0,0,0,0,0,,2,,3,101824,2,1,0,0,1,,200.0,444.0,41,0.0,3.0,4.0,2.0,1.5,2,2,389.490954277481,0.0,31510.01099953802,5,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.025706116066156744,21006.67399969201,5,3,5,5_0,5_3,5_0_0 -32069,1,33.0,24.0,9,111,1350.0,0.0,0.0,85,48,0.0,269.144851253059,1865.9352072275062,1675.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,117584,2,1,1,0,1,,635.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,969.233551223075,1350.0,41347.85105272437,6,1,1,2,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04050996502488455,19689.452882249698,5,3,5,5_1,5_3,5_0_0 -32070,2,63.0,0.0,2,111,840.0,1400.7,0.0,43,31,0.0,0.0,1161.0263511637818,2241.0,0.0,2540.3836182170216,50,0,0,0,0,0,0,0,0,0,,1,,2,107163,1,3,3,0,2,,386.0,,43,2.0,1.0,6.0,3.0,2.0,2,2,1431.93954832752,840.0,40472.208907402375,1,1,0,1,135.0,6,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.055371329129261355,20236.104453701188,5,3,5,5_1,5_2,5_0_1 -32071,2,72.0,0.0,5,111,420.0,600.0,0.0,77,77,0.0,0.0,580.5131755818909,1020.0,0.0,1088.1917405084694,10,0,0,0,0,0,0,0,0,0,,2,,3,123945,2,1,0,0,2,,0.0,,41,0.0,0.0,3.0,2.0,1.5,3,2,400.63141224563,420.0,26814.905550655465,5,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.038038545318503536,17876.603700436975,4,2,4_0,4_0_0,4_3_0,4_0_0 -32072,0,90.0,0.0,2,111,600.0,0.0,0.0,71,71,0.0,0.0,829.3045365455583,1179.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109560,2,1,0,1,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,1,1388.22654344933,600.0,20163.666775318303,5,5,0,1,50.0,6,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.058471507843165516,13442.444516878868,3,2,3_0,3_0_0,3_2_0,3_0_1 -32073,1,60.0,187.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,820.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119868,2,1,0,1,1,724.0,0.0,430.0,11,0.0,2.0,1.0,1.0,1.0,4,3,537.463994038577,0.0,8305.135572749885,0,5,2,3,30.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09873408962648549,8305.135572749885,1,1,1_1,1_0_1,1_3_1,1_0_1 -32074,2,62.0,0.0,6,111,515.0,0.0,0.0,0,75,0.0,414.0690019277831,711.8197272016042,945.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,112704,2,1,2,0,1,,138.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1319.0668588706,515.0,25006.543525520436,0,5,0,1,100.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03779010877835155,25006.543525520436,7,4,7,7_1,7_2,7_0_0 -32075,0,52.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,575.0,0.0,0.0,50,2,2,1,1,2,2,2,2,0,,8,2006.0,6,132385,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,5,5,476.057347596429,0.0,23139.113775607584,0,1,5,0,86.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.024849698461923992,23139.113775607584,6,3,6,6_0,6_3,6_0_0 -32076,2,43.0,0.0,9,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,828.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,121982,2,1,1,0,1,,154.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,679.736719084565,0.0,6315.336469022434,0,1,1,2,50.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13110940391876982,6315.336469022434,1,1,1_0,1_1_0,1_3_0,1_0_0 -32077,2,57.0,0.0,7,400,900.0,0.0,0.0,0,75,0.0,0.0,1243.9568048183376,966.0,113.54158227655265,0.0,71,2,2,2,2,1,2,2,2,0,,1,,5,100485,1,3,3,1,1,958.0,234.0,219.0,11,0.0,2.0,2.0,1.0,1.0,3,2,1244.54224428038,900.0,11269.560027426136,0,7,2,3,53.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.08571763206807512,11269.560027426136,2,1,2_0,2_1_0,2_0_0,2_0_0 -32078,2,61.0,0.0,2,111,132.0,209.0,0.0,0,77,0.0,0.0,182.44699804002283,580.0,0.0,379.0534562771168,71,0,0,0,0,0,0,0,0,0,,2,,2,133351,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,504.801234144238,132.0,30081.77115404489,0,5,1,2,38.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01928077961333774,30081.77115404489,8,4,8,8_0,8_3,8_0_1 -32079,2,33.0,0.0,9,111,1500.0,0.0,0.0,54,63,0.0,51.75862524097289,2073.261341363896,1550.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,102818,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,775.726348880179,1500.0,31908.308458862877,1,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048576689735787944,15194.432599458512,3,2,3_0,3_1_0,3_3_0,3_0_0 -32080,2,56.0,0.0,2,400,1200.0,0.0,0.0,71,77,0.0,0.0,1658.6090730911167,1310.0,189.2359704609211,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133631,2,1,2,0,1,,223.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1400.63981218071,1200.0,32072.800496829026,5,5,0,1,100.0,0,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.040844577951012324,21381.866997886016,6,3,6,6_1,6_0,6_0_1 -32081,1,79.0,156.0,2,111,180.0,170.0,0.0,0,86,0.0,0.0,248.7913609636675,350.0,0.0,308.32099314406634,71,0,0,0,0,0,0,0,0,0,,2,,2,108849,2,1,0,1,1,578.0,166.0,393.0,11,0.0,3.0,3.0,1.0,1.0,4,2,401.781762140196,180.0,10511.51150780642,0,5,2,3,57.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03329682888517708,10511.51150780642,2,1,2_1,2_0_1,2_3_1,2_0_1 -32082,2,45.0,0.0,9,111,1600.0,0.0,0.0,54,64,0.0,0.0,2211.478764121489,1650.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,112262,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,705.414613068477,1600.0,35408.966936673816,1,1,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046598365971842574,15395.203015945139,3,2,3_0,3_1_0,3_3_0,3_0_0 -32083,2,44.0,0.0,1,400,980.0,0.0,0.0,11,11,672.1131946581003,0.0,1354.530743024412,1530.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,103415,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,1,1,1435.26389384427,980.0,15005.66308764446,1,1,0,1,100.0,0,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10196150553718546,8336.47949313581,1,1,1_0,1_1_0,1_0_0,1_1_0 -32084,2,55.0,0.0,9,111,160.0,0.0,0.0,0,75,0.0,0.0,221.1478764121489,160.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,129145,2,1,1,0,1,,280.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,796.140045614754,160.0,23957.238497668757,0,5,1,2,107.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006678566063261814,23957.238497668757,6,3,6,6_1,6_3,6_0_0 -32085,2,27.0,0.0,7,111,636.0,0.0,0.0,0,52,0.0,0.0,879.0628087382918,636.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,5,100005,1,3,0,0,1,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,2,2,601.460655661269,636.0,14727.37031549284,0,4,3,4,19.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04318489902647068,14727.37031549284,3,2,3_0,3_0_0,3_3_0,3_0_0 -32086,1,35.0,352.0,1,400,0.0,0.0,0.0,46,63,0.0,0.0,0.0,880.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,111780,2,2,5,0,1,,542.0,352.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1864.24229777594,0.0,13793.72963679183,1,1,2,3,83.0,0,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0637971036965077,7663.183131551016,1,1,1_1,1_1_1,1_0_1,1_1_0 -32087,1,36.0,120.0,2,111,600.0,360.0,0.0,85,42,0.0,0.0,829.3045365455583,960.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,2,60.0,2,,2,126016,1,1,0,1,2,,0.0,,42,1.0,0.0,3.0,4.0,2.1,1,1,388.611083039905,600.0,31121.631881520836,6,1,1,2,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030846711498121068,14819.824705486111,3,2,3_1,3_0_1,3_3_1,3_0_1 -32088,2,67.0,0.0,1,400,1380.0,0.0,0.0,75,74,0.0,93.1655254337512,1907.4004340547842,1502.0,55.050464134086134,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,120076,2,1,1,0,1,,346.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1314.10625377072,1380.0,42957.9480251969,5,5,0,1,146.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0349644261201444,28638.632016797932,8,4,8,8_1,8_0,8_1_0 -32089,2,63.0,0.0,1,400,850.0,0.0,0.0,0,78,0.0,807.4345537591771,1174.848093439541,1665.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124873,2,1,1,0,1,,180.0,,11,0.0,2.0,2.0,1.0,1.0,3,2,1424.61558356754,850.0,28519.821574391757,0,5,0,1,67.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05838044938875146,28519.821574391757,8,4,8,8_1,8_0,8_1_0 -32090,1,69.0,120.0,7,111,1200.0,0.0,0.0,77,75,0.0,414.0690019277831,1658.6090730911167,1600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,2000.0,5,112348,1,2,0,0,1,,400.0,580.0,41,3.0,0.0,4.0,5.0,3.0,6,6,291.141366859049,1200.0,36384.76224304325,7,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.04397445252802,12128.254081014418,2,1,2_1,2_0_1,2_3_1,2_0_0 -32091,2,77.0,0.0,2,400,0.0,0.0,0.0,78,22,0.0,0.0,0.0,1511.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,108355,2,1,2,0,2,,120.0,,42,1.0,6.0,5.0,2.0,1.5,3,3,1482.00491645915,0.0,21296.42573728401,5,1,2,3,70.0,0,0,9,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07095087310142692,14197.617158189341,3,2,3_0,3_1_0,3_0_0,3_0_1 -32092,1,78.0,253.0,6,111,370.0,525.0,0.0,0,78,0.0,0.0,511.40446420309434,895.0,0.0,952.1677729449107,20,0,0,0,0,0,0,0,0,0,,2,,4,107864,2,1,0,0,2,,0.0,309.0,11,0.0,0.0,3.0,1.0,1.0,2,2,386.986891643179,370.0,9500.479457914013,0,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09420577182075314,9500.479457914013,1,1,1_1,1_0_1,1_3_1,1_0_0 -32093,2,76.0,0.0,5,400,760.0,0.0,0.0,75,77,0.0,186.3310508675024,1050.452412957707,1040.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,130024,2,1,2,0,1,,178.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1326.70145553218,760.0,43361.23564336648,5,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023984556357058102,28907.490428910987,8,4,8,8_1,8_0,8_0_0 -32094,2,87.0,0.0,2,111,100.0,236.0,0.0,0,78,0.0,0.0,138.21742275759306,336.0,0.0,428.0220845999979,20,1,2,2,2,2,2,2,1,0,,2,,2,115068,2,1,0,0,1,,198.0,516.0,21,1.0,1.0,3.0,2.0,1.5,2,2,337.521018108134,100.0,9390.367837924747,0,6,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03578134592800524,6260.2452252831645,1,1,1_0,1_0_0,1_3_0,1_0_1 -32095,2,80.0,0.0,2,400,430.0,0.0,0.0,77,72,2539.0942909306013,103.51725048194578,594.3349178576501,2320.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112118,1,2,2,0,1,,331.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,1235.34374628396,430.0,20975.88346515882,5,5,0,1,100.0,0,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11060320791033887,13983.92231010588,3,2,3_0,3_1_0,3_0_0,3_0_1 -32096,2,64.0,0.0,2,111,800.0,200.0,0.0,68,62,0.0,0.0,1105.7393820607444,1000.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,0,,2,,2,116524,2,1,0,1,1,,0.0,,43,4.0,2.0,5.0,5.0,2.8,4,4,363.688132292587,800.0,90098.63959203375,1,1,1,2,87.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011098946715821633,32178.085568583487,8,4,8,8_0,8_3,8_0_1 -32097,2,54.0,0.0,2,111,386.0,168.0,0.0,0,48,0.0,0.0,533.5192518443092,664.0,0.0,304.6936873423714,60,1,2,2,1,1,2,2,2,3,35.0,2,,2,112940,1,3,0,1,2,300.0,0.0,332.0,12,1.0,1.0,3.0,1.0,1.0,3,3,385.044220053805,386.0,17605.91387169937,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03771460003944169,17605.91387169937,4,2,4_0,4_0_0,4_3_0,4_0_1 -32098,2,59.0,0.0,9,400,1600.0,0.0,0.0,0,64,0.0,0.0,2211.478764121489,1665.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,128495,2,1,1,0,1,,200.0,,12,1.0,1.0,3.0,1.0,1.0,2,2,1489.86214227269,1600.0,29585.241561351093,0,1,1,2,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056278060009997875,29585.241561351093,8,4,8,8_1,8_0,8_0_0 -32099,2,58.0,0.0,2,111,500.0,1200.0,0.0,74,47,0.0,0.0,691.0871137879653,1700.0,0.0,2176.3834810169387,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,124070,2,2,0,0,1,,600.0,425.0,42,1.0,2.0,4.0,2.0,1.5,2,2,384.52688281447,500.0,33729.30192133495,5,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05040128028634626,22486.201280889964,6,3,6,6_0,6_3,6_0_1 -32100,2,40.0,0.0,1,120,900.0,0.0,0.0,11,43,0.0,1035.1725048194578,1243.9568048183376,1900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,121886,2,2,3,0,1,,150.0,,43,2.0,1.0,5.0,4.0,2.3,2,2,1287.05878957696,900.0,27110.570607839745,1,1,0,1,180.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07008336443684311,11787.204612104239,2,1,2_0,2_1_0,2_0_0,2_1_0 -32101,2,35.0,0.0,9,111,650.0,0.0,0.0,63,65,0.0,0.0,898.4132479243549,650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,103470,2,1,0,0,1,,200.0,697.0,43,2.0,0.0,4.0,5.0,2.4,4,2,411.890987601415,650.0,38817.86429461603,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016744867648222313,16174.110122756681,4,2,4_0,4_0_0,4_3_0,4_0_0 -32102,2,83.0,0.0,5,400,600.0,0.0,0.0,71,78,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127306,2,1,4,0,1,,197.0,,41,0.0,5.0,3.0,2.0,1.5,1,1,1304.89749667914,600.0,34343.60620820136,5,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019217550888479207,22895.73747213424,6,3,6,6_1,6_0,6_0_0 -32103,2,79.0,0.0,1,111,300.0,550.0,0.0,72,78,0.0,0.0,414.65226827277917,850.0,0.0,997.5090954660969,71,0,0,0,0,0,0,0,0,0,,2,,1,103916,1,2,0,0,2,,0.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,398.004728251046,300.0,26904.977738758735,5,5,0,1,51.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03159266691291508,17936.651825839155,4,2,4_0,4_0_0,4_3_0,4_1_0 -32104,2,45.0,0.0,1,111,400.0,1200.0,0.0,0,22,0.0,0.0,552.8696910303722,1600.0,0.0,2176.3834810169387,33,0,0,0,0,0,0,0,0,2,10.0,2,,1,108916,1,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,431.612940908306,400.0,29936.806273239283,0,1,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05344591488472339,29936.806273239283,8,4,8,8_0,8_3,8_1_0 -32105,1,38.0,230.0,1,400,1200.0,0.0,0.0,0,52,0.0,0.0,1658.6090730911167,1232.0,55.050464134086134,0.0,50,2,2,2,1,1,2,2,2,3,10.0,1,,1,130885,1,3,3,0,2,,180.0,307.0,12,1.0,2.0,4.0,1.0,1.0,2,1,1834.84982043422,1200.0,8492.180229330288,0,1,2,3,100.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.1450746412263978,8492.180229330288,1,1,1_1,1_1_1,1_0_1,1_1_0 -32106,2,59.0,0.0,1,400,822.0,0.0,0.0,0,56,0.0,0.0,1136.147215067415,3022.0,3784.719409218422,0.0,71,1,2,2,2,1,2,2,2,0,,1,,1,128893,2,2,3,0,1,,192.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,1265.18202689664,822.0,27091.287535657644,0,1,0,1,87.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.1115487772968499,18060.858357105095,4,2,4_0,4_1_0,4_0_0,4_1_0 -32107,2,59.0,0.0,1,400,700.0,0.0,0.0,85,38,0.0,0.0,967.5219593031513,700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,132752,2,1,2,0,1,,250.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,1378.62507649102,700.0,57194.14231900477,6,1,0,1,120.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01223901559876002,38129.428212669845,9,5,9,9_1,9_0,9_1_0 -32109,2,66.0,0.0,6,112,800.0,0.0,0.0,22,22,0.0,724.6207533736205,1105.7393820607444,1800.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,110923,2,1,2,0,1,,200.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,1322.76690335993,800.0,49655.5068420596,1,1,0,1,150.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03624975585739767,19862.20273682384,5,3,5,5_1,5_0,5_0_0 -32110,1,38.0,320.0,9,112,980.0,0.0,0.0,21,54,0.0,434.77245202417225,1354.530743024412,1432.0,55.050464134086134,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,101004,2,1,1,0,1,,322.0,750.0,43,2.0,0.0,4.0,5.0,2.4,1,1,1422.71396943014,980.0,29466.381563866846,1,1,2,3,90.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.048597755272265605,12277.658984944519,2,1,2_1,2_1_1,2_0_1,2_0_0 -32111,1,40.0,275.0,8,112,1275.0,0.0,0.0,0,21,0.0,672.8621281326475,1762.2721401593114,1985.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,105305,2,1,1,0,1,,256.0,500.0,32,1.0,0.0,3.0,4.0,2.1,2,2,1483.36486626479,1275.0,21814.11382110401,0,1,2,3,75.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09099613288345533,10387.673248144765,2,1,2_1,2_1_1,2_0_1,2_0_0 -32112,2,32.0,0.0,1,111,900.0,700.0,0.0,34,21,0.0,0.0,1243.9568048183376,1600.0,0.0,1269.5570305932142,42,0,0,0,0,0,0,0,0,0,,2,,1,122574,2,1,0,0,1,,250.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,360.296837950522,900.0,45878.29034429476,1,1,0,1,68.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03487488282568423,30585.526896196505,8,4,8,8_0,8_3,8_1_0 -32113,2,53.0,0.0,9,112,2000.0,0.0,0.0,54,64,0.0,0.0,2764.3484551518613,2070.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,129203,2,2,1,0,1,,130.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,1458.30653660362,2000.0,51075.271906505215,1,1,1,2,148.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04052841860125964,25537.635953252608,7,4,7,7_1,7_0,7_0_0 -32114,0,43.0,0.0,1,112,1600.0,0.0,0.0,43,63,0.0,0.0,2211.478764121489,4600.0,5160.981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109967,2,1,3,0,1,,420.0,,43,2.0,2.0,3.0,4.0,2.1,3,2,1269.35270911475,1600.0,66855.08276491825,1,1,5,0,85.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06880553893224434,31835.753697580116,8,4,8,8_1,8_0,8_1_0 -32115,0,80.0,0.0,1,112,360.0,0.0,0.0,0,71,2766.1191922373373,0.0,497.582721927335,2276.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107717,1,1,4,0,1,,85.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,1438.06233353895,360.0,17144.68571509754,0,5,0,1,80.0,6,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13275250639303138,17144.68571509754,4,2,4_0,4_1_0,4_0_0,4_1_0 -32116,2,88.0,0.0,2,112,400.0,0.0,0.0,0,74,4480.754631054002,0.0,552.8696910303722,3400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114685,1,2,1,0,1,,300.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1497.60798337815,400.0,78358.17430163587,0,5,0,1,120.0,6,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043390495379740095,78358.17430163587,10,5,10,10_1,10_0,10_0_1 -32117,2,67.0,0.0,8,112,1089.0,0.0,0.0,74,74,0.0,569.3448776507017,1505.1877338301883,1639.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,126780,2,1,2,0,1,,150.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1327.39863817418,1089.0,73481.43212165941,5,5,0,1,141.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02230495449906845,48987.62141443961,10,5,10,10_1,10_0,10_0_0 -32118,2,39.0,0.0,1,112,1150.0,0.0,0.0,43,69,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,114280,2,1,1,0,1,,320.0,,43,2.0,0.0,6.0,5.0,2.4,3,2,1164.04867599442,1150.0,48290.542224657416,1,1,1,2,112.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023814186940580753,20121.059260273923,5,3,5,5_1,5_0,5_1_0 -32119,2,44.0,0.0,5,111,592.0,594.0,0.0,0,42,0.0,0.0,818.2471427249509,1186.0,0.0,1077.3098231033846,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,109893,2,3,0,0,1,,0.0,,32,1.0,0.0,6.0,2.0,1.5,2,1,430.340758408327,592.0,29403.27564073851,0,1,0,1,128.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.040335642004348186,19602.18376049234,5,3,5,5_0,5_3,5_0_0 -32120,2,52.0,0.0,7,112,660.0,0.0,0.0,52,63,2240.377315527001,0.0,912.2349902001142,2270.0,189.2359704609211,0.0,71,2,2,1,2,1,2,2,2,0,,1,,5,106192,1,1,2,0,1,,180.0,457.0,43,3.0,1.0,3.0,3.0,2.0,2,2,1620.0737771176,660.0,38575.56849364288,1,4,2,3,120.0,6,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.058845535883005534,19287.78424682144,5,3,5,5_1,5_0,5_0_0 -32121,1,50.0,76.0,5,111,324.0,360.0,0.0,0,52,0.0,0.0,447.8244497346015,684.0,0.0,652.9150443050816,71,2,2,2,1,1,2,2,2,2,5.0,2,,3,117418,2,3,0,0,1,,0.0,326.0,32,3.0,0.0,4.0,4.0,2.5,3,3,326.844126739356,324.0,26551.64123638331,0,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.025761119394108307,10620.656494553325,2,1,2_1,2_0_1,2_3_1,2_0_0 -32122,2,52.0,0.0,7,112,1000.0,0.0,0.0,42,42,2539.0942909306013,0.0,1382.1742275759307,2810.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,127059,1,2,1,0,1,,200.0,,43,2.0,0.0,6.0,5.0,3.0,2,2,1251.89144432759,1000.0,67258.71575307587,1,1,0,1,160.0,6,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04177897196723524,22419.571917691956,6,3,6,6_1,6_0,6_0_0 -32123,1,45.0,254.0,5,111,496.0,0.0,0.0,0,46,0.0,0.0,685.5584168776616,621.0,215.04087552377396,0.0,71,2,2,2,1,1,2,2,2,2,6.0,2,,3,102982,1,1,0,1,2,743.0,0.0,369.0,32,1.0,0.0,4.0,3.0,1.6,2,2,433.201219956933,496.0,20311.943661223275,0,1,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.030573145059747602,12694.964788264546,2,1,2_1,2_0_1,2_3_1,2_0_0 -32124,2,69.0,0.0,1,112,911.0,0.0,0.0,0,77,0.0,0.0,1259.1607213216728,911.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120434,2,1,1,0,1,,185.0,,11,0.0,0.0,2.0,1.0,1.0,3,3,1424.61558356754,911.0,21846.609830775997,0,5,0,1,40.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041699833844088985,21846.609830775997,6,3,6,6_1,6_0,6_1_0 -32125,2,56.0,0.0,5,111,550.0,0.0,0.0,56,47,0.0,0.0,760.1958251667618,1054.0,867.0448101118566,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,129070,2,1,0,1,1,68.0,0.0,375.0,43,4.0,0.0,4.0,6.0,3.5,1,1,366.715176483654,550.0,49714.78371205983,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021200937051332688,14204.223917731379,3,2,3_0,3_0_0,3_3_0,3_0_0 -32126,1,30.0,107.0,6,112,1200.0,0.0,0.0,54,52,0.0,414.0690019277831,1658.6090730911167,1680.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,124309,2,2,1,0,1,,107.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1115.68734954094,1200.0,29629.849070970908,1,1,1,2,78.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05669958007467332,14109.451938557575,3,2,3_1,3_1_1,3_0_1,3_0_0 -32127,2,44.0,0.0,7,111,0.0,0.0,1485.0,56,47,0.0,0.0,758.7063022337246,1485.0,0.0,1697.7199753591576,50,1,2,2,2,1,2,2,2,0,,2,,5,125071,2,1,0,0,1,,0.0,573.0,43,2.0,0.0,4.0,4.0,2.3,3,1,349.25115116792,0.0,23543.008625794788,1,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.06307605045741549,10236.0907068673,2,1,2_0,2_0_0,2_3_0,2_0_0 -32128,2,55.0,0.0,7,112,600.0,0.0,0.0,46,34,0.0,703.9173032772313,829.3045365455583,1340.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,120430,2,1,1,0,1,,292.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1226.70875260004,600.0,54953.64335034027,1,1,0,1,160.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024384188532455196,23892.888413191424,6,3,6,6_1,6_0,6_0_0 -32129,2,55.0,0.0,5,111,1400.0,0.0,0.0,47,54,0.0,31.055175144583732,1935.0439186063027,1430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,113501,1,2,0,0,1,,0.0,,43,3.0,1.0,3.0,3.0,2.0,2,2,417.724343054888,1400.0,60598.56831136754,1,1,1,2,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023597917242076983,30299.28415568377,8,4,8,8_0,8_3,8_0_0 -32130,2,46.0,0.0,5,111,0.0,0.0,860.0,54,47,0.0,0.0,439.3854679602715,860.0,0.0,983.191366201263,50,2,2,2,1,1,1,2,2,0,,2,,3,121436,2,2,0,0,1,,0.0,604.0,43,2.0,1.0,4.0,4.0,2.3,2,2,316.079248248346,0.0,46486.95525294103,1,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.018499813449184575,20211.719675191755,5,3,5,5_0,5_3,5_0_0 -32131,2,61.0,0.0,6,111,500.0,900.0,0.0,46,23,0.0,103.51725048194578,691.0871137879653,1500.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,2,45.0,1,,4,106500,2,2,2,0,1,,1200.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,1499.24164322153,500.0,93895.36610683266,1,1,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01597522925991176,62596.910737888444,10,5,10,10_1,10_3,10_0_0 -32132,2,22.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1296.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,3,128769,2,2,0,0,1,,0.0,732.0,22,2.0,0.0,4.0,2.0,1.5,1,1,436.322185095302,0.0,14313.89106413486,0,1,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0905414184160784,9542.594042756573,1,1,1_0,1_0_0,1_3_0,1_0_0 -32134,2,55.0,0.0,6,111,569.0,751.0,0.0,77,46,0.0,0.0,786.4571354907044,1320.0,0.0,1362.053328536434,71,0,0,0,0,0,0,0,0,2,45.0,2,,4,121649,1,1,0,0,1,,0.0,625.0,42,1.0,0.0,3.0,2.0,1.5,3,3,360.25148598128,569.0,53216.29842459768,5,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024804430955871756,35477.53228306512,9,5,9,9_0,9_3,9_0_0 -32135,1,49.0,380.0,5,111,870.0,440.0,0.0,85,85,0.0,0.0,1202.4915779910596,1310.0,0.0,798.0072763728775,71,2,2,2,1,1,2,2,2,0,,2,,3,116360,1,3,0,1,1,,0.0,685.0,41,1.0,3.0,5.0,5.0,3.0,1,1,309.478879031362,870.0,5746.970589955232,6,7,2,3,113.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.22794618129587552,1915.6568633184106,1,1,1_1,1_0_1,1_3_1,1_0_0 -32136,2,67.0,0.0,9,111,460.0,0.0,0.0,74,75,0.0,0.0,635.800144684928,460.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2007.0,6,123953,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1937.94032341388,460.0,50735.51699626433,5,5,1,2,71.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009066626837248352,33823.67799750955,9,5,9,9_0,9_3,9_0_0 -32137,1,73.0,78.0,5,111,588.0,0.0,0.0,72,78,0.0,0.0,812.7184458146471,708.0,206.439240502823,0.0,43,2,2,2,1,2,2,2,2,0,,2,,3,122649,2,3,0,1,1,27.0,0.0,237.0,41,0.0,0.0,3.0,2.0,1.5,3,3,375.203249665557,588.0,14829.95999030083,5,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.04774119420841661,9886.639993533887,2,1,2_1,2_0_1,2_3_1,2_0_0 -32138,2,37.0,0.0,2,111,409.0,0.0,0.0,54,46,0.0,0.0,565.3092590785556,409.0,0.0,0.0,71,1,1,2,1,2,2,2,2,2,40.0,2,,2,127381,1,3,0,1,2,,0.0,887.0,43,2.0,2.0,4.0,4.0,2.1,2,2,1931.177801196,409.0,43405.55217620147,1,1,2,3,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.009422757677167572,20669.310560095935,5,3,5,5_0,5_3,5_0_1 -32139,2,39.0,0.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,742.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,15.0,2,,3,100297,2,3,0,1,1,733.0,0.0,270.0,12,1.0,0.0,2.0,1.0,1.0,2,2,406.312117763534,0.0,14921.426663440903,0,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04972714853184781,14921.426663440903,3,2,3_0,3_0_0,3_3_0,3_0_0 -32140,2,81.0,0.0,6,111,270.0,1400.0,0.0,0,78,0.0,0.0,373.1870414455012,1670.0,0.0,2539.1140611864284,50,0,0,0,0,0,0,0,0,0,,2,,4,114654,2,1,0,1,2,,0.0,,11,0.0,4.0,3.0,1.0,1.0,3,3,2037.49015739325,270.0,15792.592165052898,0,5,0,1,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.10574578147439966,15792.592165052898,3,2,3_0,3_0_0,3_3_0,3_0_0 -32141,2,37.0,0.0,5,111,400.0,1000.0,0.0,54,64,0.0,0.0,552.8696910303722,1400.0,0.0,1813.6529008474488,41,0,0,0,0,0,0,0,0,2,10.0,2,,3,105960,1,3,0,0,1,,0.0,380.0,43,2.0,1.0,5.0,3.0,1.8,3,2,419.514971183295,400.0,18618.36521835266,1,1,2,3,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07519457178871856,10343.536232418144,2,1,2_0,2_0_0,2_3_0,2_0_0 -32142,2,49.0,0.0,2,111,349.0,0.0,0.0,77,38,0.0,0.0,482.3788054239998,710.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,,2,133022,1,1,0,1,2,,0.0,780.0,42,1.0,0.0,3.0,2.0,1.5,2,2,2266.27504119633,349.0,48194.09649733754,7,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014732094833217252,32129.39766489169,8,4,8,8_0,8_3,8_0_1 -32143,1,61.0,40.0,2,111,400.0,650.0,0.0,85,47,0.0,0.0,552.8696910303722,1050.0,0.0,1178.8743855508417,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,115312,2,1,0,0,1,,0.0,320.0,42,1.0,2.0,3.0,4.0,2.1,2,2,347.934588051451,400.0,27512.653820291605,6,1,2,3,75.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03816425732168323,13101.263723948383,2,1,2_1,2_0_1,2_2_1,2_0_1 -32144,1,58.0,236.0,2,111,720.0,565.0,0.0,78,78,0.0,0.0,995.16544385467,1405.0,206.439240502823,1024.7138889788087,50,2,1,2,1,1,2,2,2,0,,2,,2,128185,1,2,0,1,1,565.0,0.0,291.0,41,0.0,1.0,3.0,3.0,2.0,4,4,407.458845849046,720.0,27519.43116911657,6,7,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.05105483435924898,13759.715584558286,3,2,3_1,3_0_1,3_2_1,3_0_1 -32145,2,52.0,0.0,2,111,449.0,319.0,0.0,72,56,0.0,0.0,620.5962281815928,1610.0,0.0,578.5552753703362,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,131213,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,3,3,1787.53541401888,449.0,27211.147097192268,7,1,1,2,53.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.059166928694679134,18140.764731461513,4,2,4_0,4_0_0,4_3_0,4_0_1 -32146,2,42.0,0.0,5,111,480.0,1000.0,0.0,21,34,0.0,0.0,663.4436292364467,1480.0,0.0,1813.6529008474488,43,0,0,0,0,0,0,0,0,0,,2,,3,129090,2,2,0,0,1,,0.0,369.0,43,4.0,4.0,4.0,5.0,2.8,2,2,340.036743547509,480.0,61282.44720510935,1,1,2,3,95.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024150471586856063,21886.588287539053,6,3,6,6_0,6_2,6_0_0 -32147,1,23.0,425.0,2,111,420.0,1140.0,0.0,63,85,0.0,0.0,580.5131755818909,1560.0,0.0,2067.564306966092,50,2,2,1,2,1,2,2,2,0,,2,,2,109855,2,1,0,0,1,,0.0,416.0,42,1.0,0.0,4.0,4.0,2.1,4,3,389.075544746214,420.0,24911.651037500797,4,6,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.062621301079228,11862.690970238475,2,1,2_1,2_0_1,2_2_1,2_0_1 -32148,1,60.0,53.0,5,111,600.0,55.0,0.0,0,67,0.0,0.0,829.3045365455583,721.0,113.54158227655265,99.75090954660969,71,2,2,2,2,1,1,2,2,0,,2,,3,131259,1,1,0,1,1,660.0,230.0,276.0,32,2.0,2.0,2.0,2.0,1.5,2,2,471.554907984039,600.0,11191.21338236794,0,1,2,3,40.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.06442554309043513,7460.808921578627,1,1,1_1,1_0_1,1_2_1,1_0_0 -32149,0,86.0,0.0,5,111,60.0,0.0,0.0,86,74,0.0,0.0,82.93045365455583,60.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,114802,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1898.51744928402,60.0,27197.894763711578,6,5,0,1,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0022060530979057316,18131.929842474387,4,2,4_0,4_0_0,4_3_0,4_0_0 -32150,1,33.0,378.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,2378.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,112978,1,1,2,0,2,,141.0,510.0,32,1.0,0.0,3.0,2.0,1.3,2,2,344.76143102687,0.0,15433.625779673326,0,1,2,3,81.0,6,5,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.15407915378717532,11872.019830517942,2,1,2_1,2_1_1,2_2_1,2_1_0 -32151,1,46.0,343.0,2,111,400.0,800.0,0.0,0,85,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,50,2,2,2,2,1,2,2,2,0,,2,,2,125304,2,1,0,0,1,,440.0,334.0,31,0.0,0.0,4.0,5.0,2.4,2,2,347.953960003808,400.0,12933.710193290259,0,6,2,3,68.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.09278080164673361,5389.045913870941,1,1,1_1,1_0_1,1_2_1,1_0_1 -32152,2,62.0,0.0,2,111,600.0,0.0,0.0,0,56,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132897,2,2,0,0,1,,0.0,495.0,12,1.0,2.0,1.0,1.0,1.0,4,3,2699.27188017322,600.0,16017.960844638757,0,4,2,3,31.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.037457951472070254,16017.960844638757,4,2,4_0,4_0_0,4_3_0,4_0_1 -32153,2,61.0,0.0,5,111,744.0,0.0,0.0,54,43,1792.3018524216009,0.0,1028.3376253164924,2094.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,118121,2,1,1,0,1,,228.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1337.56740265538,744.0,48994.38189028558,1,1,0,1,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042739594198558314,32662.921260190386,8,4,8,8_1,8_3,8_0_0 -32154,2,47.0,0.0,2,111,455.0,1225.0,0.0,48,52,0.0,0.0,628.8892735470484,1680.0,0.0,2221.724803538125,71,0,0,0,0,0,0,0,0,2,12.0,2,,2,125141,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,1829.93700462622,455.0,54094.36714507816,1,1,1,2,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031056838052922055,25759.222450037218,7,4,7,7_0,7_3,7_0_1 -32155,2,67.0,0.0,2,111,700.0,1800.0,0.0,72,56,0.0,0.0,967.5219593031513,2500.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,119575,1,1,0,0,1,,0.0,,41,0.0,1.0,3.0,3.0,2.0,1,1,2076.26186949963,700.0,56676.16718612506,5,5,0,1,79.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04411025170050714,28338.08359306253,8,4,8,8_0,8_3,8_0_1 -32156,2,46.0,0.0,1,111,636.0,831.0,0.0,54,21,0.0,0.0,879.0628087382918,1467.0,0.0,1507.14556060423,41,0,0,0,0,0,0,0,0,0,,1,,1,104450,2,2,1,0,1,,180.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,1255.36056972156,636.0,35375.46003407755,1,1,1,2,145.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041469425375297554,14150.18401363102,3,2,3_0,3_1_0,3_3_0,3_1_0 -32157,2,57.0,0.0,2,111,390.0,143.0,0.0,67,22,0.0,0.0,539.0479487546129,533.0,0.0,259.3523648211852,60,2,1,1,1,2,2,2,2,2,5.0,2,,2,110783,2,2,0,1,1,823.0,400.0,255.0,43,2.0,1.0,3.0,2.0,1.5,2,1,384.799650509561,390.0,43028.491664297064,1,1,2,3,72.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.012387141156571317,28685.661109531375,8,4,8,8_0,8_2,8_0_1 -32158,2,64.0,0.0,7,111,648.0,0.0,0.0,0,75,0.0,0.0,895.648899469203,648.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,110798,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1956.29261643042,648.0,28051.513656015508,0,5,1,2,46.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023100357718523316,28051.513656015508,8,4,8,8_0,8_3,8_0_0 -32159,1,47.0,260.0,2,111,204.0,0.0,0.0,0,63,0.0,0.0,281.96354242548983,1027.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,114939,2,1,0,1,1,50.0,215.0,231.0,12,1.0,0.0,2.0,1.0,1.0,4,4,444.114886919538,204.0,6072.490156687267,0,4,2,3,45.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.1691233700673894,6072.490156687267,1,1,1_1,1_0_1,1_2_1,1_0_1 -32160,2,56.0,0.0,2,111,0.0,0.0,633.0,78,12,0.0,0.0,323.40814095215336,633.0,0.0,723.6745753551157,41,0,0,0,0,0,0,0,0,1,10.0,2,,2,107103,2,1,0,1,1,,0.0,,42,2.0,0.0,4.0,4.0,2.5,2,2,1829.93700462622,0.0,38833.477436536945,6,1,1,2,83.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016300368696943797,15533.390974614778,3,2,3_0,3_0_0,3_3_0,3_0_1 -32161,2,95.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1257.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105581,2,2,2,0,1,,278.0,,21,1.0,4.0,4.0,3.0,2.0,3,2,1702.50019472475,0.0,28150.87811006295,0,7,0,1,150.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04465224832722595,14075.439055031475,3,2,3_0,3_1_0,3_3_0,3_0_1 -32162,2,46.0,0.0,1,111,0.0,0.0,1440.0,46,54,0.0,0.0,735.7152021660361,1440.0,0.0,1646.2739154997894,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,115951,2,2,0,0,2,,0.0,1075.0,43,2.0,2.0,4.0,4.0,2.5,4,4,1971.15804938054,0.0,31581.345585223666,1,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04559653723791141,12632.538234089467,2,1,2_0,2_0_0,2_3_0,2_1_0 -32163,2,87.0,0.0,2,111,600.0,0.0,0.0,0,72,1120.1886577635005,0.0,829.3045365455583,1385.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124654,2,1,2,0,1,,240.0,,21,0.0,2.0,5.0,2.0,1.5,5,3,308.949230048237,600.0,35134.68063105323,0,5,0,1,90.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03941974069847926,23423.12042070215,6,3,6,6_1,6_3,6_0_1 -32164,2,80.0,0.0,2,111,136.0,86.0,0.0,0,86,0.0,0.0,187.97569495032656,222.0,0.0,155.9741494728806,71,0,0,0,0,0,0,0,0,0,,2,,2,106585,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2056.20574042508,136.0,17297.0,0,7,0,1,74.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012834595594611782,17297.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -32165,1,27.0,180.0,1,111,200.0,200.0,0.0,0,55,0.0,0.0,276.4348455151861,470.0,120.42289029331342,362.73058016948977,71,2,2,2,2,1,2,2,2,1,10.0,2,,1,114835,2,2,0,0,1,,0.0,600.0,22,1.0,0.0,3.0,2.0,1.5,3,3,492.619984296942,200.0,15415.82934232505,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.03048814238683791,10277.219561550033,2,1,2_1,2_0_1,2_3_1,2_1_0 -32166,2,36.0,0.0,2,111,540.0,0.0,0.0,0,38,0.0,0.0,746.3740828910024,540.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,2,,2,116602,1,2,0,0,1,,0.0,597.0,12,1.0,0.0,1.0,1.0,1.0,2,2,3009.12348833361,540.0,32694.32838370475,0,1,3,4,28.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0165166261763353,32694.32838370475,8,4,8,8_0,8_3,8_0_1 -32167,2,67.0,0.0,1,111,600.0,0.0,0.0,77,72,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126687,2,1,1,0,1,,200.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,278.88185832224,600.0,44037.07873371361,5,5,0,1,58.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013624881968854486,29358.05248914241,8,4,8,8_1,8_3,8_1_0 -32168,2,75.0,0.0,2,111,441.0,199.0,0.0,78,77,0.0,0.0,609.5388343609853,640.0,0.0,360.9169272686423,20,2,2,2,2,1,2,2,2,0,,2,,2,124003,1,3,0,1,2,184.0,0.0,708.0,41,0.0,7.0,3.0,2.0,1.5,1,1,2064.60505887212,441.0,42705.630470904674,5,5,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.014986314285560815,28470.42031393645,8,4,8,8_0,8_3,8_0_1 -32169,2,55.0,0.0,2,111,330.0,91.0,0.0,52,47,0.0,0.0,456.1174951000571,421.0,0.0,165.04241397711786,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,120671,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,2080.66498063633,330.0,52882.8190568211,1,1,1,2,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.007960997683343003,35255.2127045474,9,5,9,9_0,9_3,9_0_1 -32170,2,93.0,0.0,6,111,150.0,0.0,0.0,0,72,0.0,0.0,207.32613413638958,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,120023,2,1,0,0,2,,0.0,800.0,11,0.0,1.0,2.0,1.0,1.0,3,2,2612.94548918201,150.0,16427.726388267212,0,5,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009130904451095007,16427.726388267212,4,2,4_0,4_0_0,4_3_0,4_0_0 -32171,2,53.0,0.0,6,111,1600.0,0.0,0.0,46,37,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,35.0,2,,4,100569,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,2,2,1937.55132635852,1600.0,118514.47305705448,1,1,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013500460819074293,59257.23652852724,10,5,10,10_0,10_3,10_0_0 -32172,2,71.0,0.0,2,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1267.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118003,2,1,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,2062.91380761212,0.0,26141.184038741958,0,5,0,1,82.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04846758272778582,26141.184038741958,7,4,7,7_0,7_3,7_0_1 -32173,2,86.0,0.0,5,111,2000.0,0.0,0.0,0,78,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,109692,2,1,2,0,1,,1500.0,,11,0.0,1.0,4.0,1.0,1.0,4,4,1627.00810185745,2000.0,18768.66752672244,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10656057480651951,18768.66752672244,5,3,5,5_1,5_3,5_0_0 -32174,0,75.0,0.0,5,111,300.0,0.0,0.0,0,72,1792.3018524216009,0.0,414.65226827277917,1500.0,0.0,0.0,60,2,1,2,2,2,2,2,1,0,,2,,3,125384,1,2,0,1,2,1200.0,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,2329.47254923945,300.0,7008.000000000001,0,5,5,0,40.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.21404109589041093,7008.000000000001,1,1,1_0,1_0_0,1_3_0,1_0_0 -32175,2,91.0,0.0,5,111,150.0,380.0,0.0,0,77,0.0,0.0,207.32613413638958,530.0,0.0,689.1881023220305,41,0,0,0,0,0,0,0,0,0,,2,,3,115076,2,1,0,1,2,,0.0,,11,0.0,3.0,1.0,1.0,1.0,3,2,2871.54243900669,150.0,19668.39476146688,0,5,0,1,35.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026946784749223344,19668.39476146688,5,3,5,5_0,5_3,5_0_0 -32176,2,64.0,0.0,5,111,230.0,700.0,0.0,0,77,861.7984740393864,0.0,317.900072342464,1507.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,2,,3,124642,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,3,3,1959.37789552853,230.0,16163.743269539329,0,5,0,1,54.0,9,7,9,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0932333541104894,16163.743269539329,4,2,4_0,4_0_0,4_3_0,4_0_0 -32177,2,84.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,376.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120196,2,1,0,1,2,710.0,0.0,712.0,11,0.0,1.0,2.0,1.0,1.0,2,2,2118.61401740875,0.0,26235.37065507923,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014331796754211494,26235.37065507923,7,4,7,7_0,7_3,7_0_1 -32178,2,78.0,0.0,2,111,250.0,0.0,0.0,0,78,0.0,0.0,345.54355689398267,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105912,1,3,0,1,1,301.0,0.0,510.0,11,0.0,3.0,1.0,1.0,1.0,3,3,2364.23695263699,250.0,18559.66802729368,0,5,2,3,33.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01347006851805497,18559.66802729368,4,2,4_0,4_0_0,4_3_0,4_0_1 -32179,2,70.0,0.0,6,111,900.0,0.0,0.0,77,75,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,133662,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,4,3,1904.71108173781,900.0,45628.55397655903,5,5,0,1,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019724490950608718,30419.035984372687,8,4,8,8_0,8_3,8_0_0 -32180,2,50.0,0.0,2,111,700.0,200.0,0.0,0,33,0.0,0.0,967.5219593031513,900.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,127115,2,1,0,1,1,492.0,0.0,300.0,12,1.0,1.0,2.0,1.0,1.0,2,2,401.087393721421,700.0,12239.100558996879,0,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0735348153781134,12239.100558996879,2,1,2_0,2_0_0,2_3_0,2_0_1 -32181,0,30.0,0.0,1,111,840.0,0.0,0.0,53,46,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,130532,2,1,1,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1818.72966585573,840.0,65388.014465657514,1,1,5,0,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012846390991749368,36326.674703143064,9,5,9,9_1,9_3,9_1_0 -32182,1,40.0,434.0,1,111,500.0,500.0,0.0,55,22,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,2,,1,102239,2,2,0,0,1,,0.0,701.0,43,2.0,0.0,3.0,4.0,2.1,1,1,508.007514790225,500.0,10177.33929949174,4,1,2,3,87.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09825750823203275,4846.352047377019,1,1,1_1,1_0_1,1_3_1,1_1_0 -32183,2,51.0,0.0,7,111,800.0,0.0,0.0,22,11,2240.377315527001,0.0,1105.7393820607444,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,123192,1,1,2,0,1,,600.0,,43,3.0,1.0,4.0,3.0,2.0,4,4,1528.0555493852,800.0,11403.0,1,1,0,1,95.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.20170130667368236,5701.5,1,1,1_0,1_1_0,1_3_0,1_0_0 -32184,2,71.0,0.0,6,111,1200.0,0.0,0.0,86,72,0.0,124.22070057833493,1658.6090730911167,1320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128146,2,1,2,0,1,,450.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1436.56621983971,1200.0,32320.75802051581,6,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04084062629849589,21547.172013677206,6,3,6,6_1,6_3,6_0_0 -32185,2,33.0,0.0,8,111,895.0,0.0,0.0,48,37,0.0,0.0,1237.045933680458,895.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,2000.0,6,101040,2,2,0,0,2,,0.0,549.0,43,2.0,0.0,2.0,2.0,1.5,1,1,2425.43155094078,895.0,53213.1700787656,1,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016819144559048635,35475.44671917707,9,5,9,9_0,9_3,9_0_0 -32186,2,49.0,0.0,2,111,576.0,96.0,0.0,0,21,0.0,0.0,796.132355083736,672.0,0.0,174.11067848135508,41,2,2,1,1,2,2,2,2,2,60.0,2,,2,109265,1,1,0,1,2,,116.0,460.0,12,1.0,3.0,2.0,1.0,1.0,2,2,2329.47254923945,576.0,13305.175577206399,0,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.050506661569444354,13305.175577206399,3,2,3_0,3_0_0,3_3_0,3_0_1 -32188,2,58.0,0.0,2,111,300.0,400.0,0.0,52,48,0.0,0.0,414.65226827277917,700.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,126399,1,3,0,1,2,,240.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1845.57247500252,300.0,55345.87704698404,1,1,0,1,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012647735248747767,36897.251364656026,9,5,9,9_0,9_3,9_0_1 -32189,2,49.0,0.0,2,111,1400.0,0.0,0.0,0,37,1792.3018524216009,0.0,1935.0439186063027,2600.0,0.0,0.0,71,2,1,2,1,2,2,1,2,2,30.0,2,,2,111741,2,3,0,1,1,,0.0,,32,1.0,1.0,3.0,4.0,2.5,1,1,1828.02523507174,1400.0,64544.78579114894,0,1,1,2,70.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.04028210750304387,25817.914316459577,7,4,7,7_0,7_3,7_0_1 -32190,2,78.0,0.0,6,111,420.0,0.0,0.0,0,77,0.0,0.0,580.5131755818909,470.0,86.01635020950958,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124348,2,1,2,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1481.7607909985,420.0,27117.33485259697,0,5,0,1,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017332086746533245,27117.33485259697,7,4,7,7_1,7_3,7_0_0 -32191,2,60.0,0.0,8,111,2300.0,0.0,0.0,52,22,0.0,72.46207533736204,3179.0007234246405,2370.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,103605,2,1,2,0,1,,600.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,1689.61988289883,2300.0,64666.59198315638,1,1,1,2,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03664952686260799,43111.06132210425,9,5,9,9_1,9_3,9_0_0 -32192,1,57.0,320.0,5,111,650.0,0.0,0.0,85,63,0.0,0.0,898.4132479243549,1010.0,619.317721508469,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,131124,1,3,0,0,2,,120.0,520.0,42,1.0,0.0,2.0,2.0,1.5,3,2,2177.88397779087,650.0,18102.6917807256,6,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05579280762407792,12068.4611871504,2,1,2_1,2_0_1,2_3_1,2_0_0 -32193,2,29.0,0.0,2,111,900.0,0.0,0.0,0,81,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126514,2,1,0,0,1,,300.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2058.85354070969,900.0,8128.298044508291,0,4,0,1,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.11072428632314554,8128.298044508291,1,1,1_0,1_0_0,1_3_0,1_0_1 -32194,2,49.0,0.0,9,112,800.0,0.0,0.0,85,21,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,113980,2,1,1,0,1,,250.0,,42,1.0,0.0,5.0,4.0,2.1,3,3,943.451147065315,800.0,33882.82987243962,6,1,1,2,150.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023610778763515323,16134.680891637914,4,2,4_0,4_1_0,4_0_0,4_0_0 -32195,2,53.0,0.0,1,111,1100.0,900.0,0.0,68,62,0.0,0.0,1520.3916503335236,2000.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,2,,1,102653,2,1,0,0,1,,0.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,466.32517608859,1100.0,44991.408115857346,1,4,0,1,103.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.044452931876455194,22495.704057928673,6,3,6,6_0,6_3,6_1_0 -32196,2,56.0,0.0,6,112,1000.0,0.0,0.0,74,11,0.0,465.827627168756,1382.1742275759307,1550.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121164,2,1,2,0,1,,100.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,965.801048456005,1000.0,11270.106711576615,5,1,0,1,120.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1375319719384596,7513.40447438441,1,1,1_0,1_1_0,1_0_0,1_0_0 -32197,2,70.0,0.0,1,112,380.0,0.0,0.0,0,78,0.0,0.0,525.2262064788536,470.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126761,2,2,2,0,2,,110.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1046.35251800835,380.0,9870.540431106749,0,5,0,1,68.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04761644038444008,9870.540431106749,2,1,2_0,2_1_0,2_0_0,2_1_0 -32198,2,74.0,0.0,1,112,300.0,0.0,0.0,0,48,0.0,1035.1725048194578,414.65226827277917,1360.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129800,2,1,2,0,1,,160.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1063.92328107653,300.0,33295.48518467032,0,5,1,2,100.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.040846378794508816,33295.48518467032,8,4,8,8_1,8_0,8_1_0 -32199,1,62.0,157.0,6,111,350.0,700.0,0.0,85,63,0.0,0.0,483.76097965157567,1050.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,3,,4,112279,2,2,0,0,2,,0.0,466.0,42,1.0,3.0,3.0,2.0,1.5,2,2,372.83308040713,350.0,12807.214864033724,6,4,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08198503821066487,8538.14324268915,1,1,1_1,1_0_1,1_3_1,1_0_0 -32200,2,60.0,0.0,2,111,360.0,0.0,0.0,0,21,2240.377315527001,155.27587572291867,497.582721927335,2010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132200,2,3,4,0,2,,180.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,806.345217336912,360.0,38813.950034403664,0,1,0,1,110.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.051785504907858874,25875.966689602443,7,4,7,7_1,7_3,7_0_1 -32201,0,50.0,0.0,2,111,1524.0,0.0,0.0,90,62,0.0,0.0,2106.4335228257182,1717.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115917,2,1,0,0,1,,700.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1091.78434911958,1524.0,64726.933919943796,1,1,5,0,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0265268242448134,32363.466959971898,8,4,8,8_0,8_3,8_0_1 -32202,1,41.0,200.0,1,111,1800.0,0.0,0.0,52,38,0.0,103.51725048194578,2487.913609636675,2140.0,412.878481005646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103586,1,2,3,0,2,,300.0,700.0,43,2.0,0.0,4.0,4.0,2.1,1,1,952.304760711447,1800.0,36426.35770400528,4,1,2,3,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05874866813172197,17345.884620954894,4,2,4_1,4_1_1,4_3_1,4_1_0 -32203,2,76.0,0.0,2,111,539.0,1089.0,0.0,86,74,0.0,0.0,744.9919086634266,1628.0,0.0,1975.0680090228718,50,0,0,0,0,0,0,0,0,0,,1,,2,122311,2,3,3,0,1,,665.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,821.030685665308,539.0,71954.84668100749,6,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022625300102678297,47969.89778733833,10,5,10,10_1,10_3,10_0_1 -32204,2,49.0,0.0,8,111,1800.0,1800.0,0.0,38,43,0.0,0.0,2487.913609636675,3600.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,104105,2,1,1,0,1,,1500.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,774.133340200749,1800.0,100751.9926659803,1,1,1,2,119.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03573130322032398,40300.79706639212,9,5,9,9_1,9_3,9_0_0 -32205,0,51.0,0.0,5,111,3000.0,0.0,0.0,33,31,0.0,207.03450096389156,4146.522682727792,3200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,127812,1,1,2,0,1,,1800.0,,43,2.0,1.0,4.0,3.0,2.0,4,3,875.122679419032,3000.0,31941.04542135545,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10018457310293649,15970.522710677726,3,2,3_0,3_1_0,3_3_0,3_0_0 -32206,0,73.0,0.0,5,111,916.0,2213.0,0.0,86,72,0.0,0.0,1266.0715924595524,3129.0,0.0,4013.6138695754044,43,0,0,0,0,0,0,0,0,0,,1,,3,127960,2,1,2,0,2,,340.0,,41,0.0,2.0,7.0,2.0,1.5,3,2,913.658812890971,916.0,18607.432940235623,6,5,0,1,180.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1681586068346931,12404.955293490415,2,1,2_0,2_1_0,2_3_0,2_0_0 -32207,2,96.0,0.0,1,111,700.0,1000.0,0.0,0,86,0.0,0.0,967.5219593031513,1700.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,2,,1,105142,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,4,4,488.154932999469,700.0,14247.880478658688,0,6,0,1,50.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.11931599247666064,14247.880478658688,3,2,3_0,3_0_0,3_3_0,3_1_0 -32208,1,43.0,250.0,2,111,1000.0,0.0,0.0,0,56,0.0,310.55175144583734,1382.1742275759307,1450.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108586,1,3,0,0,2,,0.0,950.0,32,1.0,0.0,5.0,4.0,2.3,2,2,1331.13814696698,1000.0,18860.608157482035,0,1,2,3,82.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07687981150410479,8200.264416296537,1,1,1_1,1_0_1,1_3_1,1_0_1 -32209,2,47.0,0.0,8,111,1200.0,0.0,0.0,53,46,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,132474,2,1,1,0,1,,400.0,,43,2.0,1.0,5.0,3.0,2.0,1,1,843.943391931959,1200.0,61842.41282199865,1,1,1,2,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0194041588166032,30921.206410999326,8,4,8,8_1,8_3,8_0_0 -32210,2,54.0,0.0,2,111,400.0,0.0,0.0,52,21,4480.754631054002,0.0,552.8696910303722,3660.0,447.28502108944986,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127938,2,2,2,0,1,,300.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,818.232018961149,400.0,112673.19602392252,4,1,1,2,107.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03248332459853999,75115.46401594834,10,5,10,10_1,10_3,10_0_1 -32211,2,52.0,0.0,9,111,1100.0,0.0,0.0,43,54,0.0,0.0,1520.3916503335236,1180.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,126143,2,1,1,0,1,,300.0,,43,3.0,0.0,6.0,4.0,2.5,1,1,825.579656783196,1100.0,62091.40819896826,1,1,1,2,200.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01900423962392284,24836.563279587303,7,4,7,7_1,7_3,7_0_0 -32212,2,58.0,0.0,2,111,366.0,0.0,0.0,0,22,2419.607500769161,0.0,505.87576729279056,2136.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,127472,2,1,2,0,2,,67.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,829.367066493758,366.0,29069.908921449136,0,5,0,1,140.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07347804238987345,29069.908921449136,8,4,8,8_1,8_3,8_0_1 -32213,2,59.0,0.0,9,111,3500.0,0.0,0.0,46,37,0.0,0.0,4837.609796515757,3865.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,120214,2,1,1,0,1,,755.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,922.988854957382,3500.0,260473.52251778706,4,1,1,2,180.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014838360393179961,173649.01501185805,10,5,10,10_1,10_3,10_0_0 -32214,2,64.0,0.0,9,111,6895.0,0.0,0.0,0,77,0.0,0.0,9530.091299136042,8297.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123477,2,1,1,0,1,,1181.0,,21,2.0,0.0,6.0,4.0,2.3,3,2,749.819458783933,6895.0,126337.98752139483,0,5,0,1,270.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06567304231116501,54929.5597919108,10,5,10,10_1,10_3,10_0_0 -32215,2,50.0,0.0,6,111,2142.0,0.0,0.0,31,31,0.0,414.0690019277831,2960.6171954676433,2642.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,116200,2,1,1,0,1,,500.0,,43,2.0,1.0,8.0,3.0,2.0,4,4,940.493339552509,2142.0,310891.1042111388,1,1,1,2,240.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008498152453425332,155445.5521055694,10,5,10,10_1,10_3,10_0_0 -32216,2,67.0,0.0,6,111,3901.0,0.0,0.0,74,74,0.0,144.92415067472407,5391.861661773705,4041.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,105839,2,1,2,0,1,,860.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,800.351592392512,3901.0,86222.94814742215,5,5,0,1,242.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04686687345798922,57481.96543161477,10,5,10,10_1,10_3,10_0_0 -32217,2,58.0,0.0,9,111,675.0,0.0,0.0,52,63,2099.980337087309,0.0,932.9676036137531,2081.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,117826,2,1,1,0,1,,280.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,774.512499358781,675.0,77334.82127293068,1,1,1,2,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02690896501403576,30933.928509172274,8,4,8,8_1,8_3,8_0_0 -32218,0,56.0,0.0,5,111,0.0,0.0,1760.0,0,43,0.0,0.0,899.207469314044,1760.0,0.0,2012.1125633886315,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,102779,1,2,0,0,1,,600.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1150.95603380006,0.0,34506.103018365706,0,1,0,1,130.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05100546993276084,34506.103018365706,9,5,9,9_0,9_3,9_0_0 -32219,2,67.0,0.0,1,111,300.0,900.0,0.0,0,46,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,50,2,2,2,1,2,2,2,2,3,30.0,2,,1,105533,2,3,0,0,2,,0.0,,22,1.0,0.0,3.0,2.0,1.5,1,1,420.655833476676,300.0,34009.82183140966,0,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0.035283924918764024,22673.214554273105,6,3,6,6_0,6_3,6_1_0 -32220,2,51.0,0.0,7,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1199.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,118999,2,2,0,1,1,733.0,0.0,630.0,32,1.0,1.0,2.0,2.0,1.5,3,3,1245.12493190624,0.0,55706.90702767346,0,1,3,4,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021523363330948782,37137.93801844897,9,5,9,9_0,9_3,9_0_0 -32221,2,58.0,0.0,2,111,1322.0,0.0,0.0,52,52,0.0,0.0,1827.2343288553802,1322.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,114501,2,1,0,0,1,,1200.0,,43,2.0,2.0,4.0,2.0,1.5,3,3,939.589054148296,1322.0,57845.92410546675,1,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02285381417003007,38563.9494036445,9,5,9,9_0,9_3,9_0_1 -32222,0,66.0,0.0,1,111,1000.0,0.0,0.0,0,75,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,112819,2,2,0,0,1,,0.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,459.810204220169,1000.0,30051.281017325826,0,5,5,0,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03327645165686807,20034.187344883885,5,3,5,5_0,5_3,5_1_0 -32223,1,27.0,193.0,1,111,480.0,0.0,0.0,0,55,0.0,0.0,663.4436292364467,480.0,0.0,0.0,71,2,2,2,2,1,2,2,1,0,,2,,1,107329,2,3,0,0,1,,160.0,541.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2777.91415346987,480.0,10158.47084033673,0,4,2,3,37.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.04725120616520755,10158.47084033673,2,1,2_1,2_0_1,2_3_1,2_1_0 -32224,2,47.0,0.0,2,111,1600.0,0.0,0.0,52,53,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,123149,1,2,0,0,2,,490.0,927.0,43,2.0,0.0,3.0,4.0,2.1,3,2,2048.27776608664,1600.0,76406.69428634863,1,1,2,3,125.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020940573531472197,36384.14013635649,9,5,9,9_0,9_3,9_0_1 -32225,2,59.0,0.0,1,111,1100.0,0.0,0.0,0,42,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,50,2,2,2,1,1,2,2,2,1,1.0,8,,1,119910,1,2,0,0,2,,221.0,540.0,12,1.0,2.0,2.0,1.0,1.0,3,2,2210.84830755984,1100.0,30154.0,0,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0.03647940571731777,30154.0,8,4,8,8_0,8_3,8_1_0 -32226,2,54.0,0.0,5,111,490.0,0.0,0.0,0,33,0.0,0.0,677.265371512206,490.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,123825,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1874.33655008629,490.0,41843.805836537,0,1,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01171021588987835,41843.805836537,9,5,9,9_0,9_3,9_0_0 -32227,2,64.0,0.0,7,111,1300.0,0.0,0.0,77,72,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,104479,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1589.81027755977,1300.0,52288.43966450484,5,5,0,1,94.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024862092048282786,34858.95977633656,9,5,9,9_0,9_3,9_0_0 -32228,2,38.0,0.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1244.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125213,2,1,0,0,1,,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,3,2,547.65769338784,0.0,15997.850481007012,0,1,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07776044672232081,15997.850481007012,3,2,3_0,3_0_0,3_3_0,3_0_1 -32229,2,84.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,133061,2,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,1857.27634028185,300.0,23259.544994471624,0,5,0,1,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012897930723550466,23259.544994471624,6,3,6,6_0,6_3,6_0_1 -32230,1,26.0,360.0,2,111,900.0,360.0,0.0,84,53,0.0,0.0,1243.9568048183376,1260.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,2,,2,127920,2,1,0,1,1,684.0,0.0,474.0,42,1.0,2.0,3.0,4.0,2.5,2,2,364.477952344921,900.0,7923.998533837006,3,4,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.15901063012815517,3169.5994135348024,1,1,1_1,1_0_1,1_3_1,1_0_1 -32231,2,52.0,0.0,2,111,75.0,500.0,0.0,77,52,0.0,0.0,103.66306706819479,575.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,1,18.0,2,,2,107967,2,1,0,1,1,,0.0,,42,1.0,4.0,3.0,2.0,1.5,4,4,1722.23741695616,75.0,35024.18701023717,5,1,0,1,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01641722618235033,23349.458006824778,6,3,6,6_0,6_3,6_0_1 -32232,2,57.0,0.0,1,111,640.0,2143.0,0.0,0,54,0.0,0.0,884.5915056485956,2783.0,0.0,3886.658166516083,33,2,2,2,2,1,1,2,2,2,45.0,1,,1,131487,1,3,2,0,2,,971.0,,12,1.0,2.0,4.0,1.0,1.0,3,3,1422.79441608088,640.0,11306.533410019527,0,1,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.24614087263332057,11306.533410019527,2,1,2_0,2_1_0,2_3_0,2_1_0 -32233,2,66.0,0.0,2,111,394.0,84.0,0.0,77,77,0.0,0.0,544.5766456649167,478.0,0.0,152.3468436711857,71,0,0,0,0,0,0,0,0,0,,2,,2,115621,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,4,3,1822.14210676033,394.0,44200.88681666432,5,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010814262663612162,29467.257877776214,8,4,8,8_0,8_3,8_0_1 -32234,1,49.0,100.0,1,111,447.0,960.0,0.0,0,52,0.0,0.0,617.831879726441,1407.0,0.0,1741.106784813551,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,113835,1,2,0,0,2,,250.0,475.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2475.22132095005,447.0,15046.290763971312,0,1,2,3,48.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09351141899830182,15046.290763971312,3,2,3_1,3_0_1,3_3_1,3_1_0 -32235,2,67.0,0.0,1,111,310.0,350.0,0.0,0,77,0.0,0.0,428.47401054853844,660.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,0,,2,,1,133478,2,1,0,0,1,,247.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,1758.92601245248,310.0,26623.7745439634,0,5,0,1,58.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.024789873385915016,26623.7745439634,7,4,7,7_0,7_3,7_1_0 -32236,2,71.0,0.0,5,111,271.0,100.0,0.0,77,74,0.0,0.0,374.56921567307717,371.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,0,,2,,3,105526,2,1,0,1,2,,914.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1730.59561901329,271.0,32964.657590861694,5,5,0,1,76.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011254477586408993,21976.438393907796,6,3,6,6_0,6_3,6_0_0 -32237,2,60.0,0.0,2,111,90.0,52.0,0.0,77,77,0.0,0.0,124.39568048183375,142.0,0.0,94.30995084406734,71,0,0,0,0,0,0,0,0,0,,2,,2,117371,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1870.33912177707,90.0,28665.120277317368,7,5,0,1,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.004953755596566054,19110.080184878247,5,3,5,5_0,5_3,5_0_1 -32238,2,54.0,0.0,2,111,122.0,268.0,0.0,0,52,0.0,0.0,168.62525576426353,484.0,0.0,486.0589774271163,71,2,2,2,1,2,2,2,2,2,10.0,2,,2,104989,2,1,0,1,1,772.0,200.0,302.0,12,1.0,1.0,2.0,1.0,1.0,7,7,597.854714901379,122.0,15554.501265382762,0,1,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.031116394652727544,15554.501265382762,3,2,3_0,3_0_0,3_3_0,3_0_1 -32239,2,61.0,0.0,2,111,750.0,500.0,0.0,0,77,0.0,0.0,1036.630670681948,1250.0,0.0,906.8264504237244,33,2,1,2,1,1,2,2,2,0,,2,,2,121435,2,2,0,1,1,400.0,170.0,472.0,21,0.0,0.0,4.0,2.0,1.5,2,2,546.676733720748,750.0,35052.226630486446,0,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03566107263818786,23368.151086990965,6,3,6,6_0,6_3,6_0_1 -32240,2,46.0,0.0,5,111,0.0,0.0,253.0,0,68,0.0,0.0,129.26107371389384,253.0,0.0,289.24118098711574,71,2,1,2,2,1,2,2,2,3,60.0,2,,3,127072,2,2,0,1,2,,120.0,219.0,12,1.0,0.0,1.0,1.0,1.0,2,2,509.889060598849,0.0,6868.219281663516,0,1,2,3,32.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.036836331168902656,6868.219281663516,1,1,1_0,1_0_0,1_3_0,1_0_0 -32241,2,74.0,0.0,5,111,153.0,0.0,0.0,77,78,0.0,0.0,211.4726568191174,886.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,122839,2,1,0,1,2,,0.0,,41,0.0,2.0,2.0,2.0,1.5,3,2,1796.84471844831,153.0,21458.462524631836,5,5,0,1,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04128907180479377,14305.64168308789,3,2,3_0,3_0_0,3_3_0,3_0_0 -32242,2,54.0,0.0,2,111,246.0,45.0,0.0,0,52,0.0,0.0,340.0148599836789,291.0,0.0,81.6143805381352,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,100973,2,1,0,1,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,4,4,1869.90678668604,246.0,31377.21152101559,0,1,0,1,54.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009274246687125025,31377.21152101559,8,4,8,8_0,8_3,8_0_1 -32243,2,44.0,0.0,2,111,206.0,0.0,0.0,0,63,0.0,0.0,284.72789088064167,311.0,180.63433543997013,0.0,71,2,1,2,1,2,2,2,2,2,30.0,2,,2,109171,1,1,0,3,2,,0.0,571.0,22,1.0,0.0,2.0,2.0,1.5,2,1,1965.51830174995,206.0,28800.884917351363,0,1,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.010798279319974475,19200.58994490091,5,3,5,5_0,5_3,5_0_1 -32244,2,49.0,0.0,1,111,400.0,800.0,0.0,22,43,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,60,0,0,0,0,0,0,0,0,0,,2,,1,124036,1,3,0,0,2,,665.0,,43,2.0,2.0,3.0,3.0,1.8,2,2,1911.0311894315,400.0,88031.68229914334,1,1,1,2,63.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.013631455956075457,48906.49016619074,10,5,10,10_0,10_3,10_1_0 -32245,1,48.0,270.0,2,111,650.0,90.0,0.0,0,85,0.0,0.0,898.4132479243549,740.0,0.0,163.2287610762704,71,1,1,2,2,1,2,2,1,0,,2,,2,130597,2,1,0,1,1,504.0,0.0,297.0,31,1.0,0.0,4.0,2.0,1.5,3,2,366.964860521129,650.0,31888.62210062745,0,7,2,3,68.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.02320576905658898,21259.0814004183,5,3,5,5_0,5_3,5_0_1 -32246,2,90.0,0.0,2,111,250.0,275.0,0.0,0,77,0.0,0.0,345.54355689398267,525.0,0.0,498.75454773304847,71,0,0,0,0,0,0,0,0,0,,2,,2,112250,2,2,0,1,1,744.0,0.0,497.0,11,0.0,2.0,4.0,1.0,1.0,2,2,472.26051244334,250.0,19669.305729875974,0,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026691333553403994,19669.305729875974,5,3,5,5_0,5_3,5_0_1 -32247,2,42.0,0.0,1,111,440.0,0.0,0.0,85,52,0.0,0.0,608.1566601334094,525.0,146.2277953561663,0.0,71,2,2,2,1,1,2,2,2,3,15.0,2,,1,120364,2,2,0,0,1,,0.0,706.0,42,1.0,0.0,2.0,2.0,1.5,3,3,647.658690769547,440.0,25131.85927420129,7,1,2,3,48.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.020889819343327707,16754.572849467528,4,2,4_0,4_0_0,4_3_0,4_1_0 -32249,1,53.0,377.0,7,111,900.0,0.0,0.0,67,68,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,20.0,2,,5,122816,2,2,0,0,1,,0.0,358.0,43,3.0,2.0,3.0,3.0,2.0,2,1,506.055046278733,900.0,9016.095949203287,1,1,2,3,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.09982147540028442,4508.047974601644,1,1,1_1,1_0_1,1_3_1,1_0_0 -32250,1,59.0,316.0,2,111,600.0,156.0,0.0,22,22,0.0,0.0,829.3045365455583,756.0,0.0,282.929852532202,71,2,2,2,1,2,2,2,2,0,,2,,2,117406,2,3,0,1,1,444.0,0.0,347.0,43,3.0,0.0,4.0,5.0,3.0,4,2,373.834192777919,600.0,13374.028938906753,4,4,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.05652746853273958,4458.009646302251,1,1,1_1,1_0_1,1_3_1,1_0_1 -32251,2,44.0,0.0,9,111,660.0,0.0,0.0,0,45,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,103064,2,1,0,0,1,,0.0,496.0,32,3.0,1.0,4.0,3.0,2.0,1,1,504.11338045582,660.0,22465.131161894715,0,1,2,3,87.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02937886252449262,11232.565580947357,2,1,2_0,2_0_0,2_3_0,2_0_0 -32252,2,59.0,0.0,2,111,276.0,50.0,0.0,48,45,0.0,0.0,381.48008681095683,326.0,0.0,90.68264504237244,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,132096,2,3,0,1,1,468.0,0.0,277.0,43,2.0,1.0,3.0,2.0,1.5,2,2,390.962749746812,276.0,38042.99028270402,4,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008569252773702535,25361.99352180268,7,4,7,7_0,7_3,7_0_1 -32253,2,85.0,0.0,1,111,480.0,120.0,0.0,0,90,2837.8112663342013,0.0,663.4436292364467,2500.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,1,113894,2,1,0,1,1,,800.0,,11,0.0,1.0,3.0,1.0,1.0,4,4,551.687585991559,480.0,15870.362237840549,0,5,0,1,50.0,9,7,9,1,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.15752633509770286,15870.362237840549,3,2,3_0,3_0_0,3_3_0,3_1_0 -32254,1,79.0,270.0,2,111,150.0,180.0,0.0,0,77,0.0,0.0,207.32613413638958,330.0,0.0,326.4575221525408,71,0,0,0,0,0,0,0,0,0,,2,,2,123478,2,1,0,1,1,648.0,0.0,337.0,11,0.0,3.0,3.0,1.0,1.0,5,5,424.671306312633,150.0,5554.716504709985,0,5,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0594089724867479,5554.716504709985,1,1,1_1,1_0_1,1_3_1,1_0_1 -32255,1,29.0,270.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1075.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2008.0,6,120574,2,2,0,0,1,,0.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,582.09596116206,0.0,9594.747595373656,0,1,2,3,42.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11204046686109156,9594.747595373656,1,1,1_1,1_0_1,1_3_1,1_0_0 -32256,1,94.0,169.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,421.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,2,,2,120361,2,3,0,1,1,675.0,0.0,373.0,11,0.0,4.0,3.0,1.0,1.0,1,1,472.26051244334,0.0,13103.377340652461,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.032129121298664895,13103.377340652461,2,1,2_1,2_0_1,2_3_1,2_0_1 -32257,1,52.0,129.0,2,111,600.0,0.0,0.0,85,85,0.0,0.0,829.3045365455583,720.0,206.439240502823,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,117452,2,2,0,1,1,408.0,0.0,326.0,41,0.0,1.0,3.0,3.0,2.0,1,1,414.111954450179,600.0,21520.89491630879,7,7,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03345585779773384,10760.447458154395,2,1,2_1,2_0_1,2_3_1,2_0_1 -32258,2,63.0,0.0,5,111,350.0,0.0,0.0,77,75,0.0,0.0,483.76097965157567,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,104554,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,527.142311008045,350.0,49974.09175875085,5,5,0,1,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007003629034212758,33316.061172500566,8,4,8,8_0,8_3,8_0_0 -32259,2,26.0,0.0,8,111,2400.0,1350.0,0.0,54,21,0.0,0.0,3317.2181461822333,3870.0,206.439240502823,2448.431416144056,71,2,2,2,1,2,2,2,2,0,,1,2003.0,6,123053,2,1,1,0,1,,1800.0,,43,4.0,0.0,13.0,6.0,3.5,3,2,311.331771548227,2400.0,26714.040430994533,1,1,1,2,440.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,1,0,0.1448676402956213,7632.582980284153,1,1,1_0,1_1_0,1_3_0,1_0_0 -32260,1,33.0,345.0,2,111,370.0,320.0,0.0,85,63,0.0,0.0,511.40446420309434,690.0,0.0,580.3689282711837,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,112687,1,3,0,1,2,600.0,0.0,311.0,42,1.0,0.0,3.0,4.0,2.1,1,1,334.894873590808,370.0,18659.36280403492,6,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03697875470060498,8885.410859064248,1,1,1_1,1_0_1,1_3_1,1_0_1 -32261,1,69.0,270.0,2,111,0.0,0.0,340.0,0,72,0.0,0.0,173.71053384475852,340.0,0.0,388.7035633818947,50,2,1,2,2,1,2,2,2,0,,2,,2,103764,1,3,0,1,2,396.0,0.0,274.0,11,0.0,0.0,2.0,1.0,1.0,2,2,456.514303270846,0.0,9933.368888888888,0,5,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03422806540289789,9933.368888888888,2,1,2_1,2_0_1,2_3_1,2_0_1 -32262,1,44.0,377.0,2,111,350.0,0.0,0.0,67,68,0.0,0.0,483.76097965157567,350.0,0.0,0.0,44,2,1,2,2,1,2,2,2,3,75.0,2,,2,109714,2,3,0,1,1,444.0,0.0,359.0,43,3.0,0.0,4.0,4.0,2.5,1,1,362.175535084963,350.0,19338.728678022606,4,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.018098397564145757,7735.491471209042,1,1,1_1,1_0_1,1_3_1,1_0_1 -32263,1,58.0,234.0,2,111,304.0,90.0,0.0,0,85,0.0,0.0,420.1809651830829,394.0,0.0,163.2287610762704,50,0,0,0,0,0,0,0,0,0,,2,,2,131918,2,1,0,1,1,466.0,0.0,281.0,11,0.0,2.0,3.0,1.0,1.0,1,1,365.48117960626,304.0,13832.527001519682,0,7,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.028483587992036017,13832.527001519682,3,2,3_1,3_0_1,3_3_1,3_0_1 -32264,0,43.0,0.0,2,111,151.0,0.0,0.0,0,46,0.0,0.0,208.7083083639655,580.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,101841,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,2,2,2466.22378362758,151.0,20179.593041362536,0,1,5,0,18.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028741907669354968,20179.593041362536,5,3,5,5_0,5_3,5_0_1 -32265,1,44.0,367.0,5,111,480.0,0.0,0.0,0,85,0.0,0.0,663.4436292364467,650.0,292.4555907123326,0.0,60,2,1,2,2,1,2,2,1,0,,2,,3,132828,2,2,0,1,1,696.0,0.0,316.0,31,0.0,0.0,4.0,4.0,2.5,2,2,364.56438408283,480.0,14461.055095144131,0,6,2,3,81.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.04494831087520461,5784.422038057653,1,1,1_1,1_0_1,1_3_1,1_0_0 -32266,2,38.0,0.0,2,111,420.0,90.0,0.0,0,45,0.0,0.0,580.5131755818909,510.0,0.0,163.2287610762704,71,0,0,0,0,0,0,0,0,3,17.0,2,,2,124732,2,1,0,1,1,585.0,0.0,319.0,32,1.0,0.0,3.0,2.0,1.3,2,2,390.962749746812,420.0,16432.073632888092,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031036861895461374,12640.056640683148,2,1,2_0,2_0_0,2_3_0,2_0_1 -32267,2,81.0,0.0,2,111,433.0,0.0,0.0,77,77,0.0,0.0,598.4814405403779,433.0,0.0,0.0,50,2,1,2,2,2,2,2,1,0,,2,,2,120847,1,3,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,1822.50699300304,433.0,32351.029758314522,5,5,0,1,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,0,0.013384427118234617,21567.35317220968,6,3,6,6_0,6_3,6_0_1 -32268,1,81.0,224.0,2,111,316.0,85.0,0.0,0,78,0.0,0.0,436.76705591399406,401.0,0.0,154.16049657203317,71,2,2,2,2,1,2,2,2,0,,2,,2,100495,2,2,0,1,1,540.0,0.0,255.0,11,0.0,2.0,3.0,1.0,1.0,4,3,401.781762140196,316.0,10338.633508907607,0,5,2,3,62.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.038786557203570916,10338.633508907607,2,1,2_1,2_0_1,2_3_1,2_0_1 -32269,1,46.0,259.0,1,111,300.0,678.0,0.0,85,68,0.0,0.0,414.65226827277917,978.0,0.0,1229.6566667745703,71,1,2,2,1,1,2,2,2,2,30.0,2,,1,128316,1,2,0,0,1,,0.0,580.0,42,1.0,0.0,3.0,5.0,2.4,1,1,1720.8219269083,300.0,21680.184930771036,6,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.04511031631524087,9033.410387821266,1,1,1_1,1_0_1,1_3_1,1_1_0 -32271,2,70.0,0.0,2,111,290.0,115.0,0.0,77,74,0.0,0.0,400.8305259970199,983.0,0.0,208.57008359745663,71,0,0,0,0,0,0,0,0,0,,2,,2,113680,1,2,0,1,2,649.0,0.0,718.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1881.99295783362,290.0,30375.117919243057,5,5,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03236201428463446,20250.078612828704,5,3,5,5_0,5_3,5_0_1 -32272,2,76.0,0.0,5,111,360.0,1000.0,0.0,74,74,0.0,0.0,497.582721927335,1360.0,0.0,1813.6529008474488,60,0,0,0,0,0,0,0,0,0,,2,,3,110337,1,1,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1730.59561901329,360.0,26345.58082732889,5,5,0,1,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05162156070551461,17563.720551552593,4,2,4_0,4_0_0,4_3_0,4_0_0 -32273,2,61.0,0.0,7,111,900.0,1200.0,0.0,86,52,0.0,0.0,1243.9568048183376,2100.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,121504,2,1,2,0,1,,0.0,,42,2.0,2.0,4.0,3.0,2.0,2,2,319.661632953559,900.0,38937.79523864654,5,1,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0539321753357958,19468.89761932327,5,3,5,5_1,5_3,5_0_0 -32274,2,40.0,0.0,1,111,0.0,0.0,0.0,31,38,0.0,0.0,0.0,3479.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,,1,113483,2,2,2,0,1,,784.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1275.13999594489,0.0,95648.56700090431,1,1,1,2,108.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036372735202265055,45546.93666709729,10,5,10,10_1,10_3,10_1_0 -32275,2,57.0,0.0,7,111,1080.0,0.0,0.0,0,43,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,5,109429,2,1,0,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,3,2,392.313769531259,1080.0,39128.33710063624,0,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02760147964433783,39128.33710063624,9,5,9,9_0,9_3,9_0_0 -32276,2,83.0,0.0,2,111,600.0,0.0,0.0,0,77,2240.377315527001,0.0,829.3045365455583,2100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108946,2,1,2,0,2,,210.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1160.2683822585,600.0,16935.982570674685,0,5,0,1,125.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12399634867576163,16935.982570674685,4,2,4_0,4_1_0,4_3_0,4_0_1 -32277,2,85.0,0.0,2,111,400.0,310.0,0.0,78,74,0.0,0.0,552.8696910303722,710.0,0.0,562.2323992627091,50,0,0,0,0,0,0,0,0,0,,2,,2,123010,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1792.68857693231,400.0,38779.606147247454,5,5,0,1,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018308592338563377,25853.070764831635,7,4,7,7_0,7_3,7_0_1 -32278,2,71.0,0.0,2,111,400.0,0.0,0.0,77,75,0.0,0.0,552.8696910303722,630.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,106906,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1722.23741695616,400.0,36499.77864110146,5,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017260378650367298,24333.185760734308,7,4,7,7_0,7_3,7_0_1 -32279,2,55.0,0.0,1,111,408.0,600.0,0.0,0,52,0.0,0.0,563.9270848509797,1008.0,0.0,1088.1917405084694,43,0,0,0,0,0,0,0,0,2,25.0,2,,1,122549,2,3,0,0,1,,320.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,390.720930656128,408.0,21330.861055535624,0,1,1,2,65.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04725547634367115,21330.861055535624,6,3,6,6_0,6_3,6_1_0 -32280,1,51.0,300.0,2,111,300.0,0.0,0.0,85,21,0.0,0.0,414.65226827277917,500.0,344.06540083803833,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,132634,1,3,0,1,1,130.0,0.0,400.0,42,1.0,4.0,4.0,5.0,2.4,3,3,376.210726293945,300.0,11588.69310238458,6,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.043145503602741546,4828.622125993575,1,1,1_1,1_0_1,1_3_1,1_0_1 -32282,1,47.0,270.0,8,111,750.0,1547.0,0.0,0,56,0.0,0.0,1036.630670681948,2297.0,0.0,2805.7210376110033,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,133495,2,1,0,0,1,,600.0,447.0,12,1.0,2.0,4.0,1.0,1.0,1,1,391.131092338075,750.0,10931.253645110262,0,1,2,3,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.21013143364644984,10931.253645110262,2,1,2_1,2_0_1,2_3_1,2_0_0 -32283,2,55.0,0.0,5,111,390.0,0.0,0.0,0,54,0.0,0.0,539.0479487546129,1527.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,3,100769,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1783.26063464906,390.0,38931.460132448636,0,1,1,2,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.039222777537883155,38931.460132448636,9,5,9,9_0,9_3,9_0_0 -32284,1,37.0,530.0,1,111,1200.0,0.0,0.0,0,85,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,1,123078,1,2,0,0,1,,0.0,800.0,31,1.0,0.0,3.0,5.0,2.5999999999999996,4,2,422.377125512444,1200.0,6757.3678171211195,0,6,2,3,81.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.17758393985296525,2598.9876219696616,1,1,1_1,1_0_1,1_3_1,1_1_0 -32285,2,80.0,0.0,2,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,988.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,111584,1,3,0,1,2,27.0,0.0,921.0,41,0.0,0.0,3.0,2.0,1.5,1,1,2251.82267140051,0.0,22285.804767831665,5,5,2,3,83.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.04433315333651867,14857.203178554444,3,2,3_0,3_0_0,3_3_0,3_0_1 -32286,2,64.0,0.0,5,111,360.0,0.0,0.0,0,52,0.0,0.0,497.582721927335,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,3,112094,2,2,0,0,2,,0.0,725.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2188.52147446261,360.0,17977.83093289216,0,1,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02002466267169893,17977.83093289216,4,2,4_0,4_0_0,4_3_0,4_0_0 -32287,2,34.0,0.0,6,111,700.0,0.0,0.0,46,22,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,123312,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,1636.74850957896,700.0,50548.31791721427,4,1,1,2,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013848136374120858,24070.62757962584,6,3,6,6_0,6_3,6_0_0 -32288,2,39.0,0.0,2,111,300.0,900.0,0.0,0,55,0.0,0.0,414.65226827277917,1200.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,2,,2,123100,2,1,0,0,1,,240.0,,32,1.0,0.0,1.0,2.0,1.3,3,3,2158.98678583865,300.0,18464.507451079997,0,4,1,2,28.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06498954836349081,14203.467270061536,3,2,3_0,3_0_0,3_3_0,3_0_1 -32289,0,49.0,0.0,2,111,750.0,1400.0,0.0,42,46,0.0,0.0,1036.630670681948,2150.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,109195,2,1,2,0,1,,400.0,,43,3.0,2.0,6.0,3.0,2.0,3,2,1474.79842013085,750.0,56801.38050977783,1,1,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.037851192712295034,28400.690254888916,8,4,8,8_1,8_3,8_0_1 -32291,1,88.0,203.0,2,111,140.0,106.0,0.0,0,86,0.0,0.0,193.50439186063028,246.0,0.0,192.24720748982958,71,0,0,0,0,0,0,0,0,0,,2,,2,123808,1,1,0,1,2,534.0,0.0,437.0,11,0.0,0.0,2.0,1.0,1.0,3,3,2129.98350672141,140.0,9979.699646643108,0,5,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.024650040453146053,9979.699646643108,2,1,2_1,2_0_1,2_3_1,2_0_1 -32292,1,45.0,403.0,2,111,350.0,0.0,0.0,0,85,0.0,0.0,483.76097965157567,470.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116119,2,1,0,1,1,,427.0,374.0,31,1.0,0.0,4.0,3.0,2.0,2,2,433.098453874586,350.0,18750.522236927078,0,7,2,3,82.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0250659685133669,9375.261118463539,1,1,1_1,1_0_1,1_3_1,1_0_1 -32293,2,70.0,0.0,2,111,0.0,0.0,249.0,0,77,0.0,0.0,127.21742037454374,249.0,0.0,284.66819788850523,71,2,1,2,2,1,2,2,2,0,,2,,2,109979,1,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1930.73736025314,0.0,12928.74308875242,0,5,0,1,56.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.019259412789834285,12928.74308875242,2,1,2_0,2_0_0,2_3_0,2_0_1 -32294,2,64.0,0.0,7,111,500.0,0.0,0.0,0,74,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,123975,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,1776.70695909168,500.0,25798.6798813454,0,5,1,2,71.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019380836628061025,25798.6798813454,7,4,7,7_0,7_3,7_0_0 -32295,2,64.0,0.0,1,111,600.0,0.0,0.0,0,77,0.0,0.0,829.3045365455583,2076.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,107007,2,2,0,0,1,,130.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,413.632682857262,600.0,18728.82978718732,0,5,0,1,46.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.11084515282531018,18728.82978718732,5,3,5,5_0,5_3,5_1_0 -32296,0,69.0,0.0,2,111,850.0,700.0,0.0,0,56,0.0,0.0,1174.848093439541,1550.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,102252,1,1,0,0,2,,0.0,,22,2.0,1.0,3.0,2.0,1.5,3,2,2078.95828343576,850.0,35397.919270836486,0,1,5,0,59.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04378788448384899,23598.612847224325,6,3,6,6_0,6_3,6_0_1 -32297,2,55.0,0.0,2,111,130.0,0.0,0.0,0,56,0.0,0.0,179.68264958487097,230.0,172.03270041901916,0.0,71,2,2,1,1,2,2,2,2,0,,1,,2,121421,2,2,5,0,1,,360.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,304.607667273082,130.0,9582.967769291106,0,4,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.024000915534438252,9582.967769291106,1,1,1_0,1_1_0,1_3_0,1_0_1 -32298,2,34.0,0.0,1,111,550.0,0.0,0.0,0,64,0.0,0.0,760.1958251667618,550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,104626,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,5,5,502.717878791233,550.0,16828.461573710214,0,1,1,2,35.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03268272608229512,16828.461573710214,4,2,4_0,4_0_0,4_3_0,4_1_0 -32299,2,39.0,0.0,1,111,700.0,200.0,0.0,55,46,0.0,0.0,967.5219593031513,900.0,0.0,362.73058016948977,42,0,0,0,0,0,0,0,0,1,5.0,2,,1,100650,2,1,0,0,1,,600.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,1651.984493753,700.0,37566.86508873974,1,1,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.023957282511437594,25044.576725826493,7,4,7,7_0,7_3,7_1_0 -32300,2,50.0,0.0,1,111,900.0,900.0,0.0,56,37,0.0,0.0,1243.9568048183376,1800.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,104535,2,1,2,0,1,,800.0,,43,4.0,1.0,5.0,4.0,2.5,1,1,275.458250386511,900.0,46249.368480804864,1,2,0,1,145.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0389194503433504,18499.747392321944,4,2,4_0,4_1_0,4_3_0,4_1_0 -32301,1,41.0,125.0,2,111,600.0,0.0,0.0,65,54,0.0,0.0,829.3045365455583,640.0,68.81308016760767,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,106254,2,1,0,1,1,468.0,0.0,753.0,43,2.0,0.0,3.0,4.0,2.5,1,1,450.657187845159,600.0,30903.28312516829,4,1,2,3,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02070977369646432,12361.313250067316,2,1,2_1,2_0_1,2_3_1,2_0_1 -32302,2,69.0,0.0,1,111,292.0,0.0,0.0,0,77,0.0,0.0,403.5948744521717,292.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,125800,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1962.40269381391,292.0,16108.165877472231,0,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.018127451767079892,16108.165877472231,4,2,4_0,4_0_0,4_3_0,4_1_0 -32303,1,42.0,474.0,2,111,450.0,350.0,0.0,0,56,0.0,0.0,621.9784024091688,800.0,0.0,634.7785152966071,50,0,0,0,0,0,0,0,0,0,,2,,2,116326,2,1,0,1,1,600.0,0.0,416.0,32,1.0,0.0,5.0,5.0,2.8,4,4,313.00261191339,450.0,18524.232708755022,0,4,2,3,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04318667404895533,6615.797395983936,1,1,1_1,1_0_1,1_3_1,1_0_1 -32304,2,70.0,0.0,9,111,700.0,0.0,0.0,77,77,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,2009.0,6,100154,2,2,0,0,1,,220.0,591.0,41,0.0,4.0,3.0,2.0,1.5,3,2,1503.46998173667,700.0,28430.73848850382,5,5,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.024621238744222215,18953.825659002545,5,3,5,5_0,5_3,5_0_0 -32305,2,49.0,0.0,1,111,250.0,250.0,0.0,43,43,0.0,62.110350289167464,345.54355689398267,560.0,0.0,453.4132252118622,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,104672,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.5,1,1,291.552471937305,250.0,54462.93744891673,1,1,1,2,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.010282221749887242,21785.17497956669,6,3,6,6_1,6_3,6_1_0 -32306,2,64.0,0.0,2,111,240.0,0.0,0.0,0,22,0.0,0.0,331.72181461822333,283.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,105832,2,1,0,1,2,420.0,0.0,600.0,12,1.0,2.0,1.0,1.0,1.0,4,3,2429.52133548081,240.0,1085.0935157782178,0,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.2608070142203691,1085.0935157782178,1,1,1_0,1_0_0,1_3_0,1_0_1 -32307,2,45.0,0.0,2,111,485.0,0.0,0.0,0,34,0.0,0.0,670.3545003743263,719.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,124548,2,2,0,1,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,2,1,1940.56225486025,485.0,35448.93950042716,0,1,1,2,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020282694211242513,22155.58718776697,6,3,6,6_0,6_3,6_0_1 -32308,2,54.0,0.0,1,111,2153.0,3790.0,0.0,85,34,0.0,0.0,2975.8211119709786,5943.0,0.0,6873.744494211831,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,128643,1,1,2,0,1,,781.0,,42,1.0,4.0,10.0,2.0,1.5,1,1,1408.08891636455,2153.0,134792.52998163027,6,1,0,1,240.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04408998036322874,89861.68665442018,10,5,10,10_1,10_3,10_1_0 -32309,2,47.0,0.0,2,111,1175.0,0.0,0.0,0,56,991.7403583399524,0.0,1624.0547174017183,1839.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,121590,2,1,0,1,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,3,3,1874.33655008629,1175.0,26902.20400424299,0,1,0,1,64.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.06835871141672833,26902.20400424299,7,4,7,7_0,7_3,7_0_1 -32310,2,38.0,0.0,2,111,720.0,0.0,0.0,0,65,0.0,0.0,995.16544385467,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,118048,2,1,1,0,1,,480.0,,22,1.0,0.0,2.0,2.0,1.5,4,4,308.069032376389,720.0,47336.77939064668,0,1,1,2,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015210160244705314,31557.85292709779,8,4,8,8_1,8_3,8_0_1 -32311,2,54.0,0.0,1,111,650.0,250.0,0.0,0,46,0.0,0.0,898.4132479243549,900.0,0.0,453.4132252118622,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,116628,1,1,0,0,2,,500.0,891.0,32,1.0,1.0,4.0,2.0,1.5,1,1,2039.95176419236,650.0,26593.080363145007,0,1,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.033843390374862246,17728.72024209667,4,2,4_0,4_0_0,4_3_0,4_1_0 -32312,2,71.0,0.0,2,111,300.0,480.0,0.0,0,77,0.0,0.0,414.65226827277917,780.0,0.0,870.5533924067755,71,0,0,0,0,0,0,0,0,0,,2,,2,132548,2,1,0,1,1,700.0,0.0,356.0,11,0.0,4.0,4.0,1.0,1.0,3,2,399.243695686694,300.0,13116.814461623886,0,5,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.059465657784674844,13116.814461623886,2,1,2_0,2_0_0,2_3_0,2_0_1 -32313,2,74.0,0.0,2,111,700.0,90.0,0.0,75,75,0.0,0.0,967.5219593031513,790.0,0.0,163.2287610762704,71,0,0,0,0,0,0,0,0,0,,2,,2,125818,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,338.181884472473,700.0,44938.26153747604,5,5,0,1,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01757967426802177,29958.841024984027,8,4,8,8_0,8_3,8_0_1 -32314,2,58.0,0.0,2,111,950.0,400.0,0.0,77,48,0.0,0.0,1313.065516197134,1350.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,119133,2,2,0,0,2,,0.0,660.0,42,1.0,2.0,3.0,2.0,1.5,3,3,432.809364747381,950.0,30976.163668306337,6,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.043581897824915936,20650.77577887089,5,3,5,5_0,5_3,5_0_1 -32315,2,24.0,0.0,2,111,444.0,360.0,0.0,0,64,0.0,0.0,613.6853570437131,804.0,0.0,652.9150443050816,50,0,0,0,0,0,0,0,0,0,,2,,2,129251,2,1,0,1,1,600.0,0.0,355.0,22,4.0,3.0,4.0,5.0,2.8,1,1,323.435348223445,444.0,40701.10742235319,0,1,2,3,61.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.019753762266390824,14536.10979369757,3,2,3_0,3_0_0,3_3_0,3_0_1 -32316,2,41.0,0.0,1,111,240.0,400.0,0.0,34,21,0.0,0.0,331.72181461822333,640.0,0.0,725.4611603389795,43,0,0,0,0,0,0,0,0,1,10.0,2,,1,116811,2,1,0,0,2,,250.0,,43,2.0,0.0,3.0,4.0,2.1,3,2,1685.27947994247,240.0,71437.55074113079,1,1,1,2,78.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.00895887377661052,34017.881305300376,9,5,9,9_0,9_3,9_1_0 -32317,2,58.0,0.0,2,111,0.0,0.0,1000.0,56,64,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,50,2,2,2,1,1,2,2,2,2,25.0,2,,2,118098,1,3,0,1,1,600.0,0.0,358.0,43,2.0,3.0,4.0,4.0,2.5,2,2,404.850439224998,0.0,24457.784025021632,1,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.04088677858046935,9783.113610008653,2,1,2_0,2_0_0,2_3_0,2_0_1 -32318,2,50.0,0.0,2,111,900.0,380.0,0.0,0,56,0.0,0.0,1243.9568048183376,1280.0,0.0,689.1881023220305,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,105287,2,2,0,0,1,,0.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,388.94242731312,900.0,9298.816425377607,0,1,0,1,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1376519270244677,6199.210950251738,1,1,1_0,1_0_0,1_3_0,1_0_1 -32319,2,50.0,0.0,5,111,0.0,0.0,650.0,46,67,0.0,0.0,332.0936676443913,650.0,0.0,743.1097535242104,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,117376,2,1,0,1,1,,0.0,,43,3.0,0.0,4.0,3.0,2.0,1,1,421.254633396293,0.0,84032.76893048268,1,1,0,1,89.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007735077735421546,42016.38446524134,9,5,9,9_0,9_3,9_0_0 -32321,2,66.0,0.0,6,111,1000.0,0.0,0.0,78,78,0.0,0.0,1382.1742275759307,3225.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,114975,2,1,3,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,287.182517758935,1000.0,27532.78259726747,6,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11713309356243817,18355.188398178314,4,2,4_0,4_1_0,4_3_0,4_0_0 -32322,1,31.0,64.0,1,111,440.0,100.0,0.0,0,55,0.0,0.0,608.1566601334094,540.0,0.0,181.36529008474488,50,0,0,0,0,0,0,0,0,0,,2,,1,126837,1,3,0,0,2,,0.0,582.0,22,1.0,0.0,2.0,2.0,1.5,4,3,1953.46636112956,440.0,47565.73383569646,0,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.011352710374768746,31710.489223797642,8,4,8,8_0,8_3,8_1_0 -32323,2,56.0,0.0,2,111,480.0,500.0,0.0,54,52,0.0,0.0,663.4436292364467,980.0,0.0,906.8264504237244,30,0,0,0,0,0,0,0,0,2,10.0,2,,2,123228,1,1,0,1,1,600.0,0.0,268.0,43,2.0,2.0,3.0,2.0,1.5,2,2,372.845240206055,480.0,32161.410647209694,4,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.030471300240837672,21440.94043147313,6,3,6,6_0,6_3,6_0_1 -32324,1,82.0,119.0,1,111,407.0,720.0,0.0,0,78,0.0,0.0,562.5449106234038,1127.0,0.0,1305.830088610163,50,0,0,0,0,0,0,0,0,0,,2,,1,112849,2,1,0,0,2,,270.0,450.0,11,0.0,2.0,3.0,1.0,1.0,2,2,2216.79886023566,407.0,13792.041954070492,0,7,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.08171378855669625,13792.041954070492,3,2,3_1,3_0_1,3_3_1,3_1_0 -32325,2,53.0,0.0,2,111,940.0,900.0,0.0,38,46,0.0,0.0,1299.2437739213747,1840.0,0.0,1632.287610762704,20,2,2,2,2,1,2,2,2,2,25.0,2,,2,104189,1,2,0,0,2,,0.0,1046.0,43,3.0,0.0,4.0,3.0,2.0,2,2,2311.38842514626,940.0,58445.0,4,1,2,3,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03148259046967234,29222.5,8,4,8,8_0,8_3,8_0_1 -32326,2,28.0,0.0,8,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,347.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,131009,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2288.35756554601,0.0,17343.12926182891,0,1,2,3,35.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.020007923296963725,17343.12926182891,4,2,4_0,4_0_0,4_3_0,4_0_0 -32327,1,88.0,116.0,2,111,740.0,500.0,0.0,0,77,0.0,0.0,1022.8089284061887,1240.0,0.0,906.8264504237244,60,0,0,0,0,0,0,0,0,0,,2,,2,101512,1,1,0,4,1,,0.0,210.0,11,0.0,0.0,3.0,1.0,1.0,3,3,399.243695686694,740.0,12096.646519764468,0,5,2,3,57.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.102507748570977,12096.646519764468,2,1,2_1,2_0_1,2_3_1,2_0_1 -32328,2,87.0,0.0,2,111,3.0,3.0,0.0,0,78,0.0,0.0,4.146522682727792,327.0,0.0,5.440958702542346,50,0,0,0,0,0,0,0,0,0,,2,,2,124992,2,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,3,3,2177.40259698157,3.0,9773.106371435548,0,5,0,1,82.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03345916718513806,9773.106371435548,2,1,2_0,2_0_0,2_3_0,2_0_1 -32329,0,41.0,0.0,2,111,800.0,800.0,0.0,56,54,0.0,0.0,1105.7393820607444,1600.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,1,,2,105145,2,3,4,0,1,,800.0,,43,3.0,0.0,4.0,6.0,3.3,2,2,316.224044026337,800.0,7825.71962761121,4,4,5,0,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.2044540407957853,2371.4301901852155,1,1,1_0,1_1_0,1_3_0,1_0_1 -32330,2,37.0,0.0,5,111,550.0,0.0,0.0,75,37,0.0,0.0,760.1958251667618,570.0,34.40654008380383,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,125707,2,1,0,1,1,1500.0,0.0,1117.0,42,1.0,3.0,3.0,4.0,2.1,1,1,2057.47138422645,550.0,46677.58916498617,7,1,2,3,95.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012211427586486596,22227.423411898177,6,3,6,6_0,6_3,6_0_0 -32331,0,33.0,0.0,2,111,600.0,0.0,0.0,0,46,0.0,0.0,829.3045365455583,600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,106483,2,1,0,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,547.65769338784,600.0,36393.6069987302,0,1,5,0,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016486412023434073,36393.6069987302,9,5,9,9_0,9_3,9_0_1 -32332,2,49.0,0.0,2,111,800.0,800.0,0.0,37,42,0.0,0.0,1105.7393820607444,1600.0,0.0,1450.922320677959,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,112214,2,1,3,0,1,,600.0,,43,3.0,1.0,6.0,3.0,2.0,1,1,348.594700575819,800.0,56502.235220463845,1,1,1,2,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028317463791600866,28251.117610231922,8,4,8,8_1,8_3,8_0_1 -32333,2,29.0,0.0,2,111,0.0,0.0,720.0,0,47,0.0,0.0,367.85760108301804,720.0,0.0,823.1369577498947,71,2,2,2,1,1,2,2,2,0,,2,,2,121086,1,3,0,1,1,980.0,0.0,416.0,22,2.0,2.0,5.0,4.0,2.5,3,2,311.443088252483,0.0,40785.888499585635,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.01765316452545382,16314.355399834254,4,2,4_0,4_0_0,4_3_0,4_0_1 -32335,1,29.0,160.0,1,111,0.0,0.0,0.0,56,34,0.0,0.0,0.0,585.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,1,112653,1,3,0,0,2,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,3,2,1965.10654432119,0.0,38982.0,4,1,3,4,55.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.015006926273664768,25988.0,7,4,7,7_0,7_3,7_1_0 -32336,2,88.0,0.0,1,111,198.0,0.0,0.0,0,77,1913.282227460059,0.0,273.6704970600342,1539.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,103960,2,1,2,0,2,,164.0,,11,0.0,1.0,4.0,1.0,1.0,4,4,334.109430174136,198.0,13063.841113920525,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11780608678408354,13063.841113920525,2,1,2_0,2_1_0,2_3_0,2_1_0 -32337,2,35.0,0.0,7,111,936.0,0.0,0.0,85,52,0.0,0.0,1293.7150770110711,936.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,15.0,2,,5,128676,2,1,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,3,2,2340.41689718636,936.0,10802.302923142093,7,1,0,1,29.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.08664819035900016,7201.535282094729,1,1,1_0,1_0_0,1_3_0,1_0_0 -32338,1,25.0,420.0,2,111,0.0,0.0,960.0,0,56,0.0,0.0,490.47680144402403,960.0,0.0,1097.5159436665263,60,2,2,2,1,2,2,2,2,0,,2,,2,109236,1,1,0,0,1,,0.0,590.0,32,1.0,0.0,3.0,3.0,1.6,3,3,482.147657274508,0.0,11672.143229400326,0,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.08224710587700022,7295.089518375204,1,1,1_1,1_0_1,1_3_1,1_0_1 -32340,1,48.0,120.0,2,111,900.0,0.0,0.0,0,52,2240.377315527001,0.0,1243.9568048183376,2400.0,0.0,0.0,44,2,2,2,2,2,2,2,1,3,45.0,1,,2,106627,2,1,2,0,1,,250.0,,32,1.0,1.0,4.0,3.0,2.0,4,2,314.549295383551,900.0,20746.85545207161,0,1,1,2,90.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,0.1156801812951541,10373.427726035805,2,1,2_1,2_1_1,2_3_1,2_0_1 -32341,1,43.0,548.0,2,111,500.0,0.0,0.0,0,81,0.0,0.0,691.0871137879653,700.0,344.06540083803833,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,132455,1,3,0,0,2,,0.0,644.0,32,1.0,0.0,4.0,4.0,2.3,2,2,349.294423270731,500.0,3820.5654038033913,0,4,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.18321895479217465,1661.1153929579964,1,1,1_1,1_0_1,1_3_1,1_0_1 -32342,1,47.0,161.0,2,111,240.0,180.0,0.0,0,85,0.0,0.0,331.72181461822333,420.0,0.0,326.4575221525408,10,0,0,0,0,0,0,0,0,0,,2,,2,114626,2,1,0,1,2,,0.0,240.0,11,0.0,0.0,2.0,1.0,1.0,2,2,399.243695686694,240.0,9179.305831284142,0,7,2,3,64.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0457550938730673,9179.305831284142,1,1,1_1,1_0_1,1_3_1,1_0_1 -32343,2,79.0,0.0,7,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1921.0,0.0,0.0,20,2,2,1,2,2,1,2,1,0,,1,,5,106564,2,1,3,0,1,,800.0,,11,0.0,2.0,7.0,1.0,1.0,2,2,340.820429574158,0.0,16289.956671553395,0,5,0,1,170.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.11792542108810995,16289.956671553395,4,2,4_0,4_1_0,4_3_0,4_0_0 -32344,2,51.0,0.0,2,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,948.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,12.0,2,,2,129640,2,1,0,0,1,,0.0,950.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1896.3636439911,0.0,55694.13153845319,1,1,3,4,62.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017021542015525772,37129.42102563546,9,5,9,9_0,9_3,9_0_1 -32345,2,69.0,0.0,2,111,350.0,569.0,0.0,78,78,0.0,0.0,483.76097965157567,919.0,0.0,1031.9685005821984,20,0,0,0,0,0,0,0,0,0,,2,,2,102698,2,1,0,0,1,,0.0,217.0,41,0.0,2.0,3.0,2.0,1.5,3,2,357.313144208423,350.0,14981.226217565032,5,5,2,3,71.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06134344323046804,9987.484145043354,2,1,2_0,2_0_0,2_3_0,2_0_1 -32346,1,57.0,260.0,2,111,600.0,700.0,0.0,85,62,0.0,0.0,829.3045365455583,1300.0,0.0,1269.5570305932142,33,2,2,2,2,2,2,2,1,0,,2,,2,107657,2,2,0,1,1,,0.0,500.0,42,1.0,0.0,3.0,3.0,1.8,2,2,377.261197584355,600.0,9536.999999999998,6,4,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.13631120897556886,5298.333333333332,1,1,1_1,1_0_1,1_3_1,1_0_1 -32347,2,51.0,0.0,1,111,400.0,500.0,0.0,63,52,0.0,0.0,552.8696910303722,911.0,0.0,906.8264504237244,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,107096,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,1685.27947994247,400.0,47635.416751050696,1,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.019124425944691794,20711.05076132639,5,3,5,5_0,5_3,5_1_0 -32348,2,56.0,0.0,2,111,900.0,360.0,0.0,68,52,0.0,0.0,1243.9568048183376,1260.0,0.0,652.9150443050816,50,2,2,2,2,2,2,2,1,2,30.0,2,,2,122423,2,1,0,1,1,,0.0,435.0,43,4.0,1.0,5.0,7.0,3.6,1,1,305.323082706649,900.0,45934.159848299125,1,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.027430565926561862,12759.488846749757,2,1,2_0,2_0_0,2_3_0,2_0_1 -32349,2,69.0,0.0,1,111,250.0,0.0,0.0,0,77,485.4150850308502,0.0,345.54355689398267,575.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,125862,2,1,0,1,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,2258.61794964552,250.0,15762.142261257472,0,5,0,1,29.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.036479812862323935,15762.142261257472,3,2,3_0,3_0_0,3_3_0,3_1_0 -32350,2,41.0,0.0,2,111,250.0,0.0,0.0,84,34,0.0,0.0,345.54355689398267,553.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,2,104619,1,3,0,1,2,660.0,0.0,650.0,42,1.0,0.0,1.0,2.0,1.5,1,1,1996.75869473659,250.0,35961.4707891976,3,1,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015377569044426144,23974.313859465066,6,3,6,6_0,6_3,6_0_1 -32351,1,64.0,180.0,2,111,960.0,1200.0,0.0,85,67,0.0,0.0,1326.8872584728933,2160.0,0.0,2176.3834810169387,71,2,2,2,1,2,2,2,2,0,,2,,2,129248,1,2,0,0,2,,0.0,570.0,42,1.0,2.0,5.0,2.0,1.5,2,2,408.183383947468,960.0,27252.090844985258,6,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.07925997356630228,18168.060563323506,4,2,4_1,4_0_1,4_3_1,4_0_1 -32352,2,84.0,0.0,1,111,672.0,1438.0,0.0,0,72,0.0,0.0,928.8210809310253,2110.0,0.0,2608.0328714186317,50,2,2,2,2,1,2,2,2,0,,2,,1,106677,2,3,0,0,2,,0.0,530.0,11,0.0,0.0,5.0,1.0,1.0,2,2,2201.1296959061,672.0,17287.377716678653,0,5,2,3,120.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.122054370222055,17287.377716678653,4,2,4_0,4_0_0,4_3_0,4_1_0 -32353,2,60.0,0.0,2,111,800.0,1300.0,0.0,77,43,0.0,0.0,1105.7393820607444,2100.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,101718,2,1,0,0,1,,0.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,360.296837950522,800.0,13930.565074666438,5,1,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.15074765372001853,9287.043383110959,1,1,1_0,1_0_0,1_3_0,1_0_1 -32354,2,74.0,0.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,345.54355689398267,1564.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127245,2,1,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1775.6049800774,250.0,16976.12165631887,0,5,0,1,42.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09212940574196736,16976.12165631887,4,2,4_0,4_0_0,4_3_0,4_0_1 -32355,2,79.0,0.0,2,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,3198.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104046,2,1,0,0,1,,530.0,465.0,41,0.0,1.0,4.0,4.0,2.5,1,1,1531.36704103038,0.0,44231.07106896554,5,5,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07230211529387669,17692.428427586216,4,2,4_0,4_0_0,4_3_0,4_0_1 -32356,2,58.0,0.0,2,111,500.0,600.0,0.0,55,52,0.0,0.0,691.0871137879653,1100.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,104081,2,2,0,1,1,,0.0,380.0,43,2.0,1.0,4.0,2.0,1.5,1,1,350.308825318924,500.0,30570.649640306336,1,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.035982225204324356,20380.43309353756,5,3,5,5_0,5_3,5_0_1 -32357,2,55.0,0.0,1,111,600.0,0.0,0.0,0,52,0.0,0.0,829.3045365455583,600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,10.0,2,,1,124574,2,1,0,0,1,,300.0,377.0,32,2.0,1.0,3.0,2.0,1.5,4,3,1530.34840270443,600.0,29320.72007313271,0,1,2,3,54.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0.020463344641722992,19547.146715421808,5,3,5,5_0,5_3,5_1_0 -32358,2,66.0,0.0,2,111,208.0,102.0,0.0,0,77,0.0,0.0,287.49223933579356,310.0,0.0,184.9925958864398,71,0,0,0,0,0,0,0,0,0,,2,,2,104480,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,1,443.511648812778,208.0,15158.940606903327,0,5,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020449977873706237,15158.940606903327,3,2,3_0,3_0_0,3_3_0,3_0_1 -32359,1,43.0,450.0,2,111,1000.0,1200.0,0.0,85,68,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,103599,2,1,0,0,1,,0.0,750.0,42,1.0,0.0,3.0,6.0,2.7,7,3,409.951269831546,1000.0,26378.393761792875,6,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08340159070589563,9769.775467330694,2,1,2_1,2_0_1,2_3_1,2_0_1 -32360,1,49.0,340.0,2,111,800.0,1200.0,0.0,67,68,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,60,2,2,2,2,1,2,2,2,0,,2,,2,129897,1,3,0,0,2,,0.0,600.0,43,2.0,0.0,5.0,2.0,1.5,2,1,369.511144217996,800.0,14454.168396431225,4,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.13836838932178247,9636.112264287483,1,1,1_1,1_0_1,1_3_1,1_0_1 -32361,2,66.0,0.0,2,111,0.0,0.0,430.0,0,77,0.0,0.0,219.69273398013576,430.0,0.0,491.5956831006315,71,0,0,0,0,0,0,0,0,0,,2,,2,121991,2,1,0,1,1,,0.0,,21,0.0,1.0,2.0,2.0,1.5,1,1,1732.93825462349,0.0,21016.32001834203,0,5,0,1,48.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020460289890176623,14010.88001222802,3,2,3_0,3_0_0,3_3_0,3_0_1 -32362,1,74.0,351.0,2,111,800.0,500.0,0.0,85,78,0.0,0.0,1105.7393820607444,1300.0,0.0,906.8264504237244,50,2,2,2,2,2,2,2,1,0,,2,,2,114842,2,2,0,1,1,,0.0,418.0,41,3.0,0.0,5.0,6.0,3.5,4,3,348.917016971965,800.0,20456.831254645705,6,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.06354845400138756,5844.808929898773,1,1,1_1,1_0_1,1_3_1,1_0_1 -32363,1,64.0,50.0,2,111,210.0,84.0,0.0,0,77,1096.2912997312126,0.0,290.25658779094545,1028.0,0.0,152.3468436711857,33,0,0,0,0,0,0,0,0,0,,2,,2,117157,2,3,0,1,1,738.0,0.0,358.0,11,0.0,0.0,1.0,1.0,1.0,4,2,2414.72578445498,210.0,13164.078985394095,0,5,2,3,35.0,9,7,9,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0780912968647935,13164.078985394095,2,1,2_1,2_0_1,2_3_1,2_0_1 -32364,2,65.0,0.0,2,111,220.0,400.0,0.0,85,78,0.0,0.0,304.0783300667047,620.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,,2,129826,1,2,0,0,2,,0.0,,41,0.0,0.0,3.0,4.0,2.5,2,2,454.701492059056,220.0,24352.259632029552,6,5,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02545964971499149,9740.903852811822,1,1,1_0,1_0_0,1_3_0,1_0_1 -32365,1,48.0,250.0,2,111,900.0,1300.0,0.0,55,62,0.0,0.0,1243.9568048183376,2200.0,0.0,2357.7487711016834,50,0,0,0,0,0,0,0,0,0,,2,,2,100074,2,2,0,0,1,,0.0,385.0,43,2.0,0.0,4.0,5.0,3.0,2,2,343.695970699738,900.0,25050.391209233945,1,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08782297975406657,8350.130403077981,1,1,1_1,1_0_1,1_3_1,1_0_1 -32366,1,57.0,272.0,2,111,1200.0,0.0,0.0,0,81,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,2,125834,2,1,0,0,1,,0.0,236.0,32,1.0,0.0,2.0,3.0,2.0,2,1,431.286492442312,1200.0,10462.58377226902,0,4,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.11469442215417083,5231.29188613451,1,1,1_1,1_0_1,1_3_1,1_0_1 -32367,2,60.0,0.0,2,111,200.0,100.0,0.0,0,43,0.0,0.0,276.4348455151861,1021.0,0.0,181.36529008474488,50,2,2,1,1,1,2,2,2,2,20.0,2,,2,127010,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2092.77917633806,200.0,26064.79039680378,0,1,1,2,56.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.039171617513762975,26064.79039680378,7,4,7,7_0,7_3,7_0_1 -32368,2,63.0,0.0,2,111,600.0,400.0,0.0,77,75,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,50,2,1,2,2,2,1,2,2,0,,2,,2,106083,2,2,0,1,2,,0.0,,41,0.0,6.0,6.0,2.0,1.5,4,3,382.313408102789,600.0,11445.379246193532,5,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.08737150412316629,7630.252830795688,1,1,1_0,1_0_0,1_3_0,1_0_1 -32369,1,41.0,302.0,2,111,328.0,0.0,0.0,56,21,0.0,0.0,453.3531466449052,428.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132053,2,2,0,1,2,,0.0,550.0,43,2.0,0.0,1.0,3.0,2.0,2,1,1993.37565728819,328.0,8429.800294872604,1,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05077225853859545,4214.900147436302,1,1,1_1,1_0_1,1_3_1,1_0_1 -32370,1,33.0,377.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1253.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126659,2,2,0,0,1,,0.0,580.0,32,1.0,0.0,3.0,2.0,1.3,1,1,428.304594401362,0.0,14145.812842116236,0,4,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08857744789818307,10881.394493935566,2,1,2_1,2_0_1,2_3_1,2_0_1 -32371,2,32.0,0.0,2,111,0.0,0.0,0.0,56,46,0.0,0.0,0.0,673.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,121647,2,2,0,0,1,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,435.560814404057,0.0,25635.0735497251,1,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02625309417172384,17090.049033150066,4,2,4_0,4_0_0,4_3_0,4_0_1 -32372,2,91.0,0.0,5,111,465.0,0.0,0.0,86,75,0.0,0.0,642.7110158228077,819.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,111959,2,1,0,1,1,,0.0,,41,0.0,0.0,2.0,2.0,1.5,1,1,1644.89241624274,465.0,39146.98345628519,5,5,0,1,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02092115222401655,26097.988970856793,7,4,7,7_0,7_3,7_0_0 -32373,2,38.0,0.0,2,111,432.0,500.0,0.0,67,68,0.0,0.0,597.099266312802,932.0,0.0,906.8264504237244,10,0,0,0,0,0,0,0,0,0,,2,,2,124561,2,2,0,1,1,,0.0,350.0,43,2.0,0.0,3.0,3.0,2.0,3,2,416.744541190908,432.0,26130.70230148567,4,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03566685614672556,13065.351150742836,2,1,2_0,2_0_0,2_3_0,2_0_1 -32374,2,86.0,0.0,2,111,0.0,0.0,377.0,77,74,0.0,0.0,192.61432723374693,377.0,0.0,431.00365704404203,44,2,2,1,2,2,2,2,1,0,,2,,2,131123,2,1,0,1,2,,0.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1878.33549755256,0.0,51216.45289447691,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.007360915852113901,34144.30192965127,9,5,9,9_0,9_3,9_0_1 -32375,2,76.0,0.0,2,111,900.0,0.0,0.0,86,75,2688.452778632401,0.0,1243.9568048183376,2700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101254,2,1,2,0,1,,147.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,313.817887551819,900.0,22784.43026497137,6,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11850197562986517,15189.62017664758,3,2,3_0,3_1_0,3_3_0,3_0_1 -32376,2,84.0,0.0,2,111,450.0,60.0,0.0,0,74,0.0,0.0,621.9784024091688,611.0,0.0,108.81917405084694,50,0,0,0,0,0,0,0,0,0,,2,,2,104323,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1857.27634028185,450.0,25778.413700638954,0,5,0,1,62.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02370200149223517,25778.413700638954,7,4,7,7_0,7_3,7_0_1 -32377,2,79.0,0.0,2,111,400.0,300.0,0.0,86,75,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,8,,2,120253,2,1,0,1,1,,160.0,330.0,41,0.0,1.0,3.0,2.0,1.5,2,2,370.489966558306,400.0,23178.253023229416,6,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.030200723035444254,15452.168682152944,3,2,3_0,3_0_0,3_3_0,3_0_1 -32378,2,33.0,0.0,7,111,1080.0,0.0,0.0,53,54,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,60,0,0,0,0,0,0,0,0,4,120.0,2,,5,113427,2,1,0,0,1,,350.0,,43,2.0,0.0,2.0,3.0,1.8,4,4,1783.59818072229,1080.0,54316.92383010622,1,1,1,2,52.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019883305677951314,30176.068794503455,8,4,8,8_0,8_3,8_0_0 -32380,2,27.0,0.0,2,111,0.0,0.0,0.0,22,64,0.0,0.0,0.0,237.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128368,2,3,0,1,1,772.0,0.0,650.0,43,2.0,0.0,2.0,2.0,1.5,4,4,1978.79694554271,0.0,41070.188985915964,1,1,2,3,50.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005770608946583457,27380.125990610642,7,4,7,7_0,7_3,7_0_1 -32381,1,65.0,237.0,2,111,360.0,1200.0,0.0,0,86,0.0,0.0,497.582721927335,1560.0,0.0,2176.3834810169387,41,2,2,2,2,2,2,2,1,0,,2,,2,106199,2,1,0,1,1,,0.0,226.0,11,0.0,4.0,2.0,1.0,1.0,4,4,376.408002482661,360.0,10509.907064803614,0,5,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.14843137911506832,10509.907064803614,2,1,2_1,2_0_1,2_3_1,2_0_1 -32382,2,42.0,0.0,2,111,240.0,110.0,0.0,0,62,0.0,0.0,331.72181461822333,350.0,0.0,199.50181909321938,71,0,0,0,0,0,0,0,0,0,,2,,2,103414,2,2,0,1,1,,0.0,,22,1.0,1.0,3.0,2.0,1.5,4,4,1823.22887616096,240.0,24674.8186684916,0,1,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01418450140210882,16449.879112327733,4,2,4_0,4_0_0,4_3_0,4_0_1 -32383,1,37.0,441.0,2,111,1000.0,900.0,0.0,67,85,0.0,0.0,1382.1742275759307,1900.0,0.0,1632.287610762704,30,0,0,0,0,0,0,0,0,0,,8,,2,124633,2,2,0,1,1,,700.0,345.0,42,2.0,0.0,4.0,9.0,4.199999999999999,2,2,367.649042888038,1000.0,16741.245975759306,4,6,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.11349215003179144,3986.010946609359,1,1,1_1,1_0_1,1_3_1,1_0_1 -32384,1,46.0,440.0,1,111,800.0,1600.0,0.0,0,85,0.0,0.0,1105.7393820607444,2400.0,0.0,2901.844641355918,71,2,2,2,2,1,2,2,2,0,,2,,1,113852,1,3,0,0,1,,300.0,392.0,31,0.0,0.0,4.0,5.0,2.8,1,1,447.009447931208,800.0,16469.684071412477,0,7,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.14572228523592867,5882.030025504457,1,1,1_1,1_0_1,1_3_1,1_1_0 -32385,1,74.0,119.0,5,111,550.0,0.0,0.0,86,78,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100876,2,1,0,1,1,675.0,0.0,439.0,41,0.0,5.0,3.0,2.0,1.5,3,3,1609.76581030708,550.0,15246.493874384818,6,5,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03607386750891224,10164.329249589879,2,1,2_1,2_0_1,2_3_1,2_0_0 -32386,2,63.0,0.0,2,111,900.0,600.0,0.0,0,78,0.0,0.0,1243.9568048183376,1500.0,0.0,1088.1917405084694,50,2,2,2,2,2,2,2,1,0,,2,,2,132518,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,453.738841666645,900.0,9856.833868028869,0,5,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.15217868334631515,9856.833868028869,2,1,2_0,2_0_0,2_3_0,2_0_1 -32388,1,73.0,276.0,2,111,500.0,800.0,0.0,86,77,0.0,0.0,691.0871137879653,1300.0,0.0,1450.922320677959,30,2,2,2,1,2,2,2,2,0,,2,,2,118888,2,2,0,1,1,,0.0,316.0,41,1.0,0.0,3.0,3.0,2.0,2,2,414.111954450179,500.0,15550.150116109404,6,5,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.08360047911391197,7775.075058054702,1,1,1_1,1_0_1,1_3_1,1_0_1 -32389,2,85.0,0.0,2,111,200.0,340.0,0.0,77,75,0.0,0.0,276.4348455151861,696.0,0.0,616.6419862881327,50,0,0,0,0,0,0,0,0,0,,2,,2,120512,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1724.97907693082,200.0,42301.8453677479,5,5,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016453182927349305,28201.230245165265,8,4,8,8_0,8_3,8_0_1 -32390,1,47.0,60.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,637.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114622,2,1,0,1,1,,0.0,170.0,12,1.0,0.0,1.0,1.0,1.0,2,2,481.805756770769,0.0,9175.049958677871,0,4,2,3,30.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06942741487718199,9175.049958677871,1,1,1_1,1_0_1,1_3_1,1_0_1 -32391,1,24.0,172.0,8,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,538.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,129670,2,1,0,0,1,,0.0,515.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2181.45753569605,0.0,13629.096515289188,0,4,3,4,22.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.039474370101970364,13629.096515289188,3,2,3_1,3_0_1,3_3_1,3_0_0 -32392,1,55.0,272.0,2,111,250.0,200.0,0.0,0,77,0.0,0.0,345.54355689398267,450.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,0,,8,,2,106138,2,3,0,1,1,,200.0,335.0,11,0.0,1.0,3.0,1.0,1.0,1,1,401.781762140196,250.0,4626.967022935495,0,6,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09725593412907138,4626.967022935495,1,1,1_1,1_0_1,1_3_1,1_0_1 -32393,1,43.0,454.0,2,111,850.0,900.0,0.0,85,37,0.0,0.0,1174.848093439541,1750.0,0.0,1632.287610762704,50,2,2,2,2,1,2,2,2,0,,2,,2,132393,2,3,0,0,1,,0.0,394.0,42,1.0,0.0,4.0,7.0,3.6,2,2,331.189500597597,850.0,19206.800112906778,6,4,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.09111356341049322,5335.222253585216,1,1,1_1,1_0_1,1_3_1,1_0_1 -32394,2,37.0,0.0,6,111,1000.0,0.0,0.0,0,52,0.0,517.5862524097289,1382.1742275759307,1620.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,110848,1,1,2,0,2,,0.0,,32,1.0,1.0,4.0,3.0,1.8,1,1,1399.35277820155,1000.0,42067.96294907538,0,1,0,1,125.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03850911445275023,23371.0905272641,6,3,6,6_1,6_3,6_0_0 -32395,2,75.0,0.0,2,111,300.0,500.0,0.0,0,77,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,2,,2,100305,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,4,4,411.731838241927,300.0,13047.614563645233,0,5,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06131388968440654,13047.614563645233,2,1,2_0,2_0_0,2_3_0,2_0_1 -32396,2,36.0,0.0,9,111,300.0,450.0,0.0,46,47,0.0,0.0,414.65226827277917,750.0,0.0,816.143805381352,50,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,118822,2,1,0,0,1,,300.0,650.0,43,2.0,0.0,3.0,3.0,1.8,3,3,1731.2863010777,300.0,49480.09366949303,1,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015157610755745453,27488.940927496125,7,4,7,7_0,7_3,7_0_0 -32397,2,36.0,0.0,2,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,1353.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,101991,2,1,0,0,1,,0.0,370.0,42,1.0,0.0,4.0,3.0,1.8,4,4,415.056311890184,0.0,37324.84771168892,6,1,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.036249310658976505,20736.026506493843,5,3,5,5_0,5_3,5_0_1 -32398,2,73.0,0.0,5,111,337.0,1014.0,0.0,0,75,0.0,0.0,465.7927146930886,1351.0,0.0,1839.0440414593131,71,0,0,0,0,0,0,0,0,0,,2,,3,111696,1,3,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1783.26063464906,337.0,23634.006721551552,0,5,0,1,46.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.057163392391186896,23634.006721551552,6,3,6,6_0,6_3,6_0_0 -32399,2,74.0,0.0,1,111,220.0,0.0,0.0,0,71,0.0,0.0,304.0783300667047,250.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116696,2,2,2,0,2,,130.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,1425.55878891892,220.0,13939.0,0,5,0,1,108.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017935289475572137,13939.0,3,2,3_0,3_1_0,3_3_0,3_1_0 -32400,1,41.0,300.0,2,111,350.0,300.0,0.0,0,85,0.0,0.0,483.76097965157567,650.0,0.0,544.0958702542347,70,2,2,2,2,2,2,2,1,0,,8,,2,102745,2,2,0,0,1,,400.0,314.0,31,1.0,0.0,3.0,3.0,2.0,2,2,416.744541190908,350.0,10837.753458626292,0,6,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0599755292904023,5418.876729313146,1,1,1_1,1_0_1,1_3_1,1_0_1 -32401,2,41.0,0.0,2,111,432.0,1008.0,0.0,38,38,0.0,0.0,597.099266312802,1440.0,0.0,1828.1621240542286,71,0,0,0,0,0,0,0,0,2,33.0,2,,2,124129,2,1,0,0,1,,223.0,,43,2.0,0.0,3.0,3.0,2.0,1,1,1725.45504296188,432.0,88431.53898043136,1,1,1,2,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016283783100491462,44215.76949021568,10,5,10,10_0,10_3,10_0_1 -32402,2,39.0,0.0,2,111,540.0,600.0,0.0,0,54,0.0,0.0,746.3740828910024,1140.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,4,40.0,2,,2,127526,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,485.911622172502,540.0,21179.341892286207,0,1,1,2,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05382603509579317,21179.341892286207,5,3,5,5_0,5_3,5_0_1 -32403,2,33.0,0.0,2,111,540.0,0.0,0.0,85,62,0.0,0.0,746.3740828910024,540.0,0.0,0.0,50,1,2,2,2,2,2,2,1,0,,2,,2,115133,2,2,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,386.90742740859,540.0,44163.97507055239,6,1,0,1,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.012227160239479002,21030.46431931066,5,3,5,5_0,5_3,5_0_1 -32404,2,65.0,0.0,7,111,1100.0,0.0,0.0,78,72,0.0,0.0,1520.3916503335236,1325.0,387.0735759427931,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,114393,2,1,1,0,1,,1000.0,,41,1.0,3.0,5.0,5.0,2.8,1,1,1329.39095904313,1100.0,27353.383169189405,5,5,0,1,155.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048440077477965054,9769.065417567645,2,1,2_0,2_1_0,2_3_0,2_0_0 -32405,2,59.0,0.0,2,111,600.0,960.0,0.0,42,64,0.0,0.0,829.3045365455583,1560.0,0.0,1741.106784813551,71,2,2,2,2,1,2,2,2,0,,2,,2,100266,2,2,0,1,1,,0.0,243.0,43,3.0,0.0,3.0,4.0,2.5,2,2,349.294423270731,600.0,25985.015536256993,4,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.06003459947227378,10394.006214502797,2,1,2_0,2_0_0,2_3_0,2_0_1 -32406,2,37.0,0.0,6,111,500.0,624.0,0.0,53,54,0.0,0.0,691.0871137879653,1124.0,0.0,1131.719410128808,71,2,2,2,2,1,2,2,2,3,20.0,1,,4,101617,1,3,3,0,1,,260.0,660.0,43,2.0,0.0,3.0,2.0,1.5,3,3,1251.73904922688,500.0,35012.31242726334,1,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.03210299240688727,23341.54161817556,6,3,6,6_1,6_3,6_0_0 -32407,0,51.0,0.0,2,111,0.0,0.0,0.0,77,63,0.0,0.0,0.0,232.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,1.0,3,,2,124518,2,1,0,1,1,,0.0,,42,1.0,2.0,1.0,2.0,1.5,2,2,1020.89541518565,0.0,28675.10271454262,7,1,5,0,14.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0080906423356015,19116.735143028414,5,3,5,5_0,5_2,5_0_1 -32408,1,52.0,91.0,6,111,360.0,600.0,0.0,0,62,0.0,0.0,497.582721927335,960.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,,4,117910,1,1,0,0,1,,120.0,261.0,12,1.0,0.0,1.0,1.0,1.0,3,2,463.771435146904,360.0,11658.614678899083,0,4,2,3,29.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08234254467106655,11658.614678899083,2,1,2_1,2_0_1,2_3_1,2_0_0 -32409,2,35.0,0.0,8,111,620.0,820.0,0.0,53,52,0.0,0.0,856.9480210970769,1440.0,0.0,1487.1953786949082,71,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,118710,2,1,0,0,1,,240.0,1000.0,43,2.0,1.0,4.0,4.0,2.1,4,3,1509.17854759065,620.0,29653.422472112165,1,1,2,3,83.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04856100510334891,14120.677367672459,3,2,3_0,3_0_0,3_2_0,3_0_0 -32410,1,36.0,465.0,1,111,450.0,0.0,0.0,0,85,0.0,0.0,621.9784024091688,720.0,464.48829113135173,0.0,71,2,2,2,1,2,2,2,2,0,,2,,1,118896,1,3,0,0,2,,0.0,430.0,31,0.0,0.0,2.0,5.0,2.4,4,4,480.746097207885,450.0,14957.004337841008,0,6,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,1,0.04813798162633478,6232.085140767087,1,1,1_1,1_0_1,1_3_1,1_1_0 -32411,2,41.0,0.0,8,111,597.0,997.0,0.0,55,54,0.0,0.0,825.1580138628306,1594.0,0.0,1808.2119421449065,50,0,0,0,0,0,0,0,0,2,15.0,2,1999.0,6,101168,2,2,0,0,1,,589.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1148.55812770605,597.0,109958.95113537923,1,1,1,2,84.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01449631870385431,52361.405302561536,10,5,10,10_0,10_2,10_0_0 -32412,2,26.0,0.0,7,111,650.0,990.0,0.0,0,47,0.0,0.0,898.4132479243549,1640.0,0.0,1795.5163718389745,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,116347,2,1,0,0,2,,440.0,,22,2.0,0.0,4.0,2.0,1.5,3,2,1391.40216239123,650.0,41553.52138383497,0,1,0,1,82.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03946717258571468,27702.34758922331,7,4,7,7_0,7_2,7_0_0 -32413,1,35.0,374.0,1,111,0.0,0.0,0.0,68,56,0.0,0.0,0.0,409.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,180.0,2,,1,123183,1,2,0,0,2,,0.0,520.0,43,2.0,0.0,2.0,3.0,1.8,2,2,565.600300496631,0.0,14842.635292214738,4,1,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.027555753540244216,8245.908495674854,1,1,1_1,1_0_1,1_3_1,1_1_0 -32414,2,55.0,0.0,8,111,516.0,679.0,0.0,43,56,0.0,0.0,713.2019014291802,1195.0,0.0,1231.4703196754178,71,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,105487,2,1,2,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,878.738421858727,516.0,63510.54794403036,1,1,1,2,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018815772162021214,42340.36529602024,9,5,9,9_1,9_2,9_0_0 -32415,2,38.0,0.0,9,111,324.0,935.0,0.0,56,46,0.0,0.0,447.8244497346015,1259.0,0.0,1695.7654622923646,71,0,0,0,0,0,0,0,0,2,7.0,2,2004.0,6,102203,1,2,0,0,1,,244.0,,43,2.0,0.0,4.0,3.0,1.8,4,3,1417.74564043423,324.0,38553.6220446443,1,1,1,2,86.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03265581632102177,21418.678913691274,6,3,6,6_0,6_2,6_0_0 -32416,2,81.0,0.0,5,111,405.0,0.0,0.0,77,78,3584.6037048432017,0.0,559.7805621682519,3095.0,498.8948312151556,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,101120,2,1,0,0,1,,348.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1307.21618242368,405.0,17726.375355619413,5,5,0,1,60.0,6,5,9,1,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.1745985819384592,11817.583570412942,2,1,2_0,2_0_0,2_2_0,2_0_0 -32417,2,50.0,0.0,1,111,1000.0,0.0,0.0,54,63,0.0,0.0,1382.1742275759307,2300.0,2236.4251054472493,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,113356,2,1,1,0,1,,360.0,,43,2.0,0.0,7.0,4.0,2.5,1,1,954.312457116704,1000.0,72370.78173983259,1,1,0,1,160.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031780781479856385,28948.312695933033,8,4,8,8_1,8_2,8_1_0 -32418,2,64.0,0.0,2,111,440.0,0.0,0.0,0,75,0.0,550.7117725639515,608.1566601334094,1517.0,937.5782172836545,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104952,2,2,0,0,2,,200.0,410.0,11,0.0,0.0,3.0,1.0,1.0,2,1,1632.55867027639,440.0,31280.302837537325,0,5,2,3,65.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04849697293146259,31280.302837537325,8,4,8,8_0,8_2,8_0_1 -32419,2,78.0,0.0,2,111,351.0,402.0,0.0,77,78,0.0,0.0,485.1431538791516,753.0,0.0,729.0884661406744,71,0,0,0,0,0,0,0,0,0,,2,,2,108126,2,2,0,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,442.691004496253,351.0,22565.144224323194,5,5,0,1,74.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03337005039783144,15043.42948288213,3,2,3_0,3_0_0,3_3_0,3_0_1 -32420,0,36.0,0.0,5,111,400.0,0.0,0.0,54,22,0.0,0.0,552.8696910303722,600.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,125870,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,1460.40676745179,400.0,28095.0,1,1,5,0,70.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021356113187399894,15608.333333333332,3,2,3_0,3_0_0,3_2_0,3_0_0 -32421,1,37.0,491.0,8,111,700.0,100.0,0.0,85,81,0.0,0.0,967.5219593031513,800.0,0.0,181.36529008474488,44,2,2,2,1,2,2,2,2,0,,2,,6,126998,2,3,0,0,2,,0.0,520.0,42,1.0,0.0,2.0,5.0,2.4,2,2,484.061253045484,700.0,12880.533491232629,6,4,2,3,30.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.06210922867011173,5366.888954680262,1,1,1_1,1_0_1,1_3_1,1_0_0 -32422,2,42.0,0.0,8,111,542.0,771.0,0.0,33,38,0.0,0.0,749.1384313461543,1313.0,0.0,1398.3263865533831,41,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,119595,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1449.42046974156,542.0,100444.18802677392,1,1,1,2,72.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013071936025308034,55802.32668154106,10,5,10,10_0,10_2,10_0_0 -32423,2,47.0,0.0,6,111,173.0,619.0,0.0,0,52,0.0,0.0,239.116141370636,792.0,0.0,1122.651145624571,71,0,0,0,0,0,0,0,0,3,20.0,2,,4,131697,2,2,0,0,1,,0.0,519.0,12,1.0,0.0,3.0,1.0,1.0,1,1,387.592950251108,173.0,19569.170489576376,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04047182277970664,19569.170489576376,5,3,5,5_0,5_3,5_0_0 -32424,2,47.0,0.0,9,111,582.0,0.0,0.0,52,22,0.0,0.0,804.4254004491916,2682.0,3612.6867087994024,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,108013,2,1,1,0,1,,870.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,1021.38575731607,582.0,82852.89438175388,1,1,1,2,118.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03237062531143919,39453.759229406605,9,5,9,9_1,9_2,9_0_0 -32425,2,36.0,0.0,8,111,880.0,370.0,0.0,56,63,0.0,0.0,1216.313320266819,1250.0,0.0,671.0515733135561,71,0,0,0,0,0,0,0,0,2,10.0,2,1999.0,6,127534,1,1,0,0,1,,405.0,575.0,43,2.0,0.0,3.0,3.0,1.8,4,4,1251.97532999825,880.0,56582.34670027314,1,1,2,3,61.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022091695959898492,31434.6370557073,8,4,8,8_0,8_2,8_0_0 -32426,2,64.0,0.0,1,111,1199.0,2079.0,0.0,85,74,0.0,0.0,1657.2268988635408,3278.0,0.0,3770.584380861846,71,0,0,0,0,0,0,0,0,0,,1,,1,109919,2,2,3,0,1,,510.0,,41,0.0,1.0,7.0,5.0,3.0,1,1,800.176588513734,1199.0,56455.41580028289,5,5,0,1,75.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058063517087470894,18818.47193342763,5,3,5,5_1,5_2,5_1_0 -32427,2,57.0,0.0,8,111,484.0,750.0,0.0,54,46,0.0,0.0,668.9723261467504,1234.0,0.0,1360.2396756355868,41,0,0,0,0,0,0,0,0,2,45.0,2,1999.0,6,110527,2,1,0,0,1,,447.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,1570.32113454131,484.0,74365.07660560598,1,1,1,2,87.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016593810647765477,37182.53830280299,9,5,9,9_0,9_2,9_0_0 -32428,2,82.0,0.0,9,111,2266.0,0.0,0.0,74,74,0.0,0.0,3132.0067996870584,2266.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,101883,2,1,1,0,1,,1615.0,,41,0.0,0.0,4.0,2.0,1.5,3,3,1015.62779242522,2266.0,59958.2424622173,5,5,1,2,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037792969022197746,39972.1616414782,9,5,9,9_1,9_2,9_0_0 -32429,2,90.0,0.0,7,111,1392.0,0.0,0.0,0,74,0.0,0.0,1923.9865247856953,1392.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,112655,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1486.84679179215,1392.0,51671.364229694074,0,5,0,1,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02693948613030923,51671.364229694074,10,5,10,10_0,10_2,10_0_0 -32430,2,61.0,0.0,5,111,250.0,170.0,0.0,0,37,0.0,0.0,345.54355689398267,420.0,0.0,308.32099314406634,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,110257,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,429.738987242964,250.0,61208.269902909764,0,1,0,1,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.006861817866543451,61208.269902909764,10,5,10,10_0,10_3,10_0_0 -32431,2,69.0,0.0,6,111,580.0,0.0,0.0,0,86,0.0,0.0,801.6610519940398,580.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,107650,2,1,2,0,1,,348.0,,21,1.0,1.0,6.0,2.0,1.5,2,2,1077.34737042467,580.0,68875.3187850717,0,5,0,1,250.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008421013655267632,45916.879190047795,10,5,10,10_1,10_2,10_0_0 -32432,2,31.0,0.0,9,111,0.0,0.0,0.0,84,46,0.0,0.0,0.0,945.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,109815,2,1,0,0,1,,0.0,1000.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1417.86837412315,0.0,27159.648334131456,3,1,2,3,80.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03479426494681159,18106.432222754305,4,2,4_0,4_0_0,4_2_0,4_0_0 -32433,2,71.0,0.0,6,111,1000.0,0.0,0.0,77,72,0.0,0.0,1382.1742275759307,1090.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,131334,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,3,3,383.941791771389,1000.0,22710.42571068774,5,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04799557762085612,15140.28380712516,3,2,3_0,3_0_0,3_3_0,3_0_0 -32434,2,42.0,0.0,1,111,1035.0,0.0,0.0,46,37,0.0,0.0,1430.5503255410881,1035.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,110181,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,1509.29303626035,1035.0,115962.8255530759,1,1,1,2,125.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.008925274070062073,55220.39312051233,10,5,10,10_0,10_2,10_1_0 -32435,2,65.0,0.0,1,111,1487.0,0.0,0.0,0,71,0.0,807.4345537591771,2055.2930764054086,2513.0,423.20044303078714,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109279,2,3,4,0,1,,268.0,167.0,21,1.0,1.0,3.0,2.0,1.5,1,1,1112.88681629095,1487.0,13533.369700391375,0,5,2,3,47.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18568915618460685,9022.246466927583,1,1,1_0,1_1_0,1_2_0,1_1_0 -32436,0,71.0,0.0,1,111,2400.0,0.0,0.0,0,74,0.0,0.0,3317.2181461822333,4960.0,4404.037130726891,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,127004,2,2,2,0,1,,1260.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1129.00346224271,2400.0,14728.982616758054,0,5,0,1,244.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3367510254480651,14728.982616758054,3,2,3_0,3_1_0,3_2_0,3_1_0 -32437,1,47.0,50.0,2,111,556.0,0.0,0.0,0,63,0.0,0.0,768.4888705322173,556.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,112267,1,3,0,0,2,,0.0,600.0,12,1.0,0.0,1.0,1.0,1.0,3,2,1936.02465513145,556.0,14148.267515687876,0,1,3,4,25.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03929809776239362,14148.267515687876,3,2,3_1,3_0_1,3_2_1,3_0_1 -32438,2,51.0,0.0,1,111,670.0,0.0,0.0,0,52,0.0,0.0,926.0567324758734,670.0,0.0,0.0,50,2,2,2,1,1,1,1,2,2,5.0,2,,1,133011,1,3,0,0,2,,240.0,,12,1.0,3.0,2.0,1.0,1.0,2,2,1616.64459993582,670.0,20309.783053201943,0,1,0,1,38.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,1,1,0,0,0.032989027910584744,20309.783053201943,5,3,5,5_0,5_2,5_1_0 -32439,1,37.0,320.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,2546.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,125986,2,1,2,0,1,,0.0,730.0,32,1.0,0.0,6.0,3.0,1.6,3,3,341.055333828772,0.0,18005.042443680068,0,1,2,3,88.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.1414048318943935,11253.151527300042,2,1,2_1,2_1_1,2_3_1,2_1_0 -32440,1,71.0,279.0,5,111,700.0,0.0,0.0,77,77,0.0,0.0,967.5219593031513,700.0,0.0,0.0,20,2,2,2,1,2,2,2,2,0,,2,,3,105568,2,2,0,1,1,600.0,0.0,270.0,41,0.0,3.0,4.0,2.0,1.5,2,2,331.869056242448,700.0,14239.718666034496,5,5,2,3,79.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.04915827457109006,9493.14577735633,1,1,1_1,1_0_1,1_3_1,1_0_0 -32441,2,64.0,0.0,1,111,2600.0,0.0,0.0,54,43,0.0,0.0,3593.6529916974196,2600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124645,2,3,2,0,1,,0.0,2241.0,43,2.0,3.0,5.0,3.0,2.0,3,3,1226.38255135373,2600.0,62119.67026310813,4,4,2,3,165.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04185469737665524,31059.835131554064,8,4,8,8_1,8_2,8_1_0 -32442,1,50.0,422.0,2,111,300.0,340.0,0.0,85,43,0.0,0.0,414.65226827277917,640.0,0.0,616.6419862881327,71,0,0,0,0,0,0,0,0,0,,2,,2,114154,2,3,0,1,1,756.0,0.0,358.0,42,1.0,0.0,4.0,7.0,2.9999999999999996,3,3,399.887676581741,300.0,16324.858262606198,6,4,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03920401572281869,5441.619420868734,1,1,1_1,1_0_1,1_3_1,1_0_1 -32443,0,88.0,0.0,2,111,1650.0,0.0,0.0,0,77,1294.9380883746067,0.0,2280.5874755002856,2517.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126374,2,2,3,0,2,,760.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,1095.14115830274,1650.0,46607.32213668859,0,5,0,1,100.0,6,5,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05400438996727201,31071.54809112573,8,4,8,8_1,8_2,8_0_1 -32444,2,79.0,0.0,2,111,300.0,72.0,0.0,0,77,0.0,0.0,414.65226827277917,372.0,0.0,130.5830088610163,41,0,0,0,0,0,0,0,0,0,,2,,2,123337,2,2,0,1,1,576.0,0.0,301.0,11,0.0,3.0,3.0,1.0,1.0,3,3,399.243695686694,300.0,16058.487910312026,0,5,2,3,56.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023165319305133245,16058.487910312026,4,2,4_0,4_0_0,4_3_0,4_0_1 -32445,2,40.0,0.0,5,111,420.0,900.0,0.0,54,62,0.0,0.0,580.5131755818909,1320.0,0.0,1632.287610762704,71,2,2,2,2,2,2,2,1,2,60.0,2,,3,127325,1,1,0,0,2,,160.0,1171.0,43,2.0,0.0,4.0,3.0,1.8,1,1,2372.95496123789,420.0,55547.01982307648,1,1,2,3,83.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.02376365112303682,30859.45545726471,8,4,8,8_0,8_3,8_0_0 -32446,1,42.0,355.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,277.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111785,2,1,0,1,1,1620.0,0.0,326.0,31,0.0,0.0,3.0,2.0,1.5,3,3,370.489966558306,0.0,8303.888442154754,0,6,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03335786624899816,5535.925628103169,1,1,1_1,1_0_1,1_3_1,1_0_1 -32447,1,45.0,186.0,5,111,300.0,60.0,0.0,0,54,0.0,0.0,414.65226827277917,360.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,128239,2,2,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,2108.41631650888,300.0,18708.67072908458,0,1,1,2,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.019242414665000353,12472.447152723054,2,1,2_1,2_0_1,2_3_1,2_0_0 -32448,1,42.0,307.0,2,111,390.0,360.0,0.0,0,68,0.0,0.0,539.0479487546129,750.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,119415,2,1,0,1,1,807.0,0.0,349.0,32,1.0,0.0,4.0,4.0,2.5,2,2,362.245155394416,390.0,13430.569131832797,0,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05584275637451349,5372.227652733119,1,1,1_1,1_0_1,1_3_1,1_0_1 -32449,2,82.0,0.0,2,111,454.0,1599.0,0.0,86,86,0.0,124.22070057833493,627.5070993194724,2173.0,0.0,2900.0309884550707,71,0,0,0,0,0,0,0,0,0,,1,,2,116311,2,1,2,0,2,,280.0,,41,0.0,3.0,4.0,2.0,1.5,4,4,1367.44471822313,454.0,62840.01197395355,5,5,0,1,94.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03457987883421606,41893.34131596903,9,5,9,9_1,9_3,9_0_1 -32450,2,41.0,0.0,1,111,240.0,190.0,0.0,0,62,0.0,0.0,331.72181461822333,430.0,0.0,344.5940511610153,50,0,0,0,0,0,0,0,0,3,90.0,2,,1,102220,2,1,0,1,1,492.0,0.0,269.0,12,1.0,1.0,2.0,1.0,1.0,3,2,470.272792716347,240.0,19417.12867662031,0,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.022145395808070865,19417.12867662031,5,3,5,5_0,5_3,5_1_0 -32451,2,56.0,0.0,6,111,880.0,0.0,0.0,0,52,0.0,0.0,1216.313320266819,910.0,51.60981012570575,0.0,50,2,2,2,2,2,2,2,1,2,15.0,1,,4,118464,2,1,2,0,1,,194.0,,12,1.0,2.0,5.0,1.0,1.0,3,3,1526.14802121978,880.0,34778.48675871323,0,1,0,1,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.02616560077249517,34778.48675871323,9,5,9,9_1,9_3,9_0_0 -32452,2,23.0,0.0,5,111,254.0,0.0,0.0,55,63,0.0,0.0,351.07225380428633,254.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,122184,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,3,2,400.63141224563,254.0,21371.612610817512,1,1,1,2,57.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011884924391313114,14247.741740545009,3,2,3_0,3_0_0,3_3_0,3_0_0 -32453,2,45.0,0.0,8,111,1000.0,1600.0,0.0,34,21,0.0,0.0,1382.1742275759307,2600.0,0.0,2901.844641355918,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,125491,2,1,2,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,1350.72296221259,1000.0,34086.11886510793,1,1,1,2,128.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07627738465294961,13634.447546043171,3,2,3_0,3_1_0,3_3_0,3_0_0 -32454,1,68.0,225.0,2,111,0.0,0.0,800.0,0,86,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,71,0,0,0,0,0,0,0,0,0,,2,,2,120154,2,1,0,1,1,648.0,0.0,302.0,11,0.0,2.0,3.0,1.0,1.0,3,3,401.781762140196,0.0,14225.43733206899,0,7,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.056237286863337906,14225.43733206899,3,2,3_1,3_0_1,3_3_1,3_0_1 -32455,1,68.0,270.0,6,111,320.0,510.0,0.0,0,86,0.0,0.0,442.2957528242978,830.0,0.0,924.962979432199,10,0,0,0,0,0,0,0,0,0,,2,,4,108083,2,2,0,0,1,,0.0,334.0,11,0.0,4.0,2.0,1.0,1.0,2,2,1813.25018661548,320.0,18628.38021269945,0,5,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.044555672072559886,18628.38021269945,4,2,4_1,4_0_1,4_3_1,4_0_0 -32456,2,60.0,0.0,6,111,350.0,350.0,0.0,0,33,0.0,0.0,483.76097965157567,700.0,0.0,634.7785152966071,71,0,0,0,0,0,0,0,0,2,25.0,2,,4,119115,2,1,0,0,1,,0.0,320.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1813.25018661548,350.0,74412.29862405357,0,1,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009407047127203338,74412.29862405357,10,5,10,10_0,10_3,10_0_0 -32457,1,25.0,270.0,2,111,390.0,0.0,0.0,0,65,0.0,0.0,539.0479487546129,454.0,110.10092826817227,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,112503,2,3,0,1,1,564.0,0.0,327.0,22,3.0,0.0,3.0,3.0,2.0,1,1,415.056311890184,390.0,32650.605665192,0,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.013904795661539538,16325.302832596,4,2,4_1,4_0_1,4_3_1,4_0_1 -32458,2,35.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,169.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,4.0,2,,3,109824,2,2,0,1,1,542.0,0.0,670.0,12,1.0,0.0,3.0,1.0,1.0,3,3,409.505055712603,0.0,9807.985411692569,0,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0172308576028801,9807.985411692569,2,1,2_0,2_0_0,2_3_0,2_0_0 -32459,2,49.0,0.0,6,111,796.0,558.0,0.0,67,53,0.0,0.0,1100.2106851504407,1354.0,0.0,1012.0183186728765,71,0,0,0,0,0,0,0,0,2,5.0,8,,4,101101,2,1,0,0,1,,0.0,459.0,43,3.0,3.0,4.0,4.0,2.5,3,3,1897.78040788169,796.0,59171.528680606236,1,1,2,3,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02288262666507347,23668.611472242494,6,3,6,6_0,6_3,6_0_0 -32460,1,34.0,293.0,2,111,0.0,0.0,420.0,85,47,0.0,0.0,214.58360063176053,420.0,0.0,480.16322535410524,42,2,1,2,1,2,2,2,2,0,,2,,2,105110,1,3,0,1,2,456.0,0.0,270.0,42,1.0,0.0,2.0,3.0,1.8,2,2,431.286492442312,0.0,9447.253031828985,6,4,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.044457367510425214,5248.473906571658,1,1,1_1,1_0_1,1_3_1,1_0_1 -32461,2,44.0,0.0,2,111,720.0,1680.0,0.0,0,46,0.0,0.0,995.16544385467,2400.0,0.0,3046.936873423714,71,0,0,0,0,0,0,0,0,0,,1,,2,119257,2,1,3,0,1,,400.0,,32,1.0,0.0,4.0,4.0,2.3,2,2,1465.76523923364,720.0,42158.586523470025,0,4,1,2,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05692790479737504,18329.820227595665,4,2,4_0,4_1_0,4_3_0,4_0_1 -32462,1,60.0,322.0,2,111,540.0,420.0,0.0,78,85,0.0,993.7656046266794,746.3740828910024,1920.0,0.0,761.7342183559285,71,0,0,0,0,0,0,0,0,0,,2,,2,133270,2,2,0,0,2,,0.0,328.0,41,1.0,0.0,3.0,5.0,3.0,2,2,383.016503082585,540.0,28963.33103737603,7,6,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06629071764992488,9654.443679125343,1,1,1_1,1_0_1,1_3_1,1_0_1 -32463,2,71.0,0.0,2,111,176.0,715.0,0.0,77,86,0.0,0.0,243.26266405336378,891.0,0.0,1296.761824105926,20,0,0,0,0,0,0,0,0,0,,2,,2,127377,2,1,0,0,2,,160.0,,41,1.0,1.0,3.0,3.0,2.0,2,2,2040.79554555478,176.0,64204.61339742472,5,5,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013877507438363275,32102.30669871236,8,4,8,8_0,8_3,8_0_1 -32464,2,51.0,0.0,1,111,1994.0,0.0,0.0,22,22,2452.466368063557,0.0,2756.0554097864056,3786.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,108597,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,4.0,2.3,1,1,1968.1476802605,1994.0,32583.63601090593,1,1,0,1,65.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.11619329404283807,14166.798265611276,3,2,3_0,3_0_0,3_3_0,3_1_0 -32465,1,46.0,134.0,2,111,0.0,0.0,820.0,85,56,0.0,0.0,418.94893456677056,820.0,0.0,937.4615352151578,71,0,0,0,0,0,0,0,0,2,60.0,2,,2,102072,2,3,0,0,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4,4,3,370.631082859701,0.0,19164.37780323809,6,1,1,2,54.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.042787718360543354,7985.157418015871,1,1,1_1,1_0_1,1_3_1,1_0_1 -32466,1,43.0,249.0,2,111,0.0,0.0,337.0,0,65,0.0,0.0,172.17779384024595,337.0,0.0,385.2738260579368,71,2,1,2,2,1,2,2,2,0,,2,,2,128871,2,2,0,1,1,740.0,0.0,216.0,32,1.0,2.0,4.0,2.0,1.3,3,2,358.781859145524,0.0,8230.218758138712,0,4,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04094666374046825,6330.937506260547,1,1,1_1,1_0_1,1_3_1,1_0_1 -32467,2,48.0,0.0,1,111,487.0,0.0,0.0,0,21,0.0,0.0,673.1188488294782,487.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,50.0,2,,1,133156,2,1,0,0,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,2833.57745498423,487.0,13802.0788369883,0,1,0,1,27.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03528453979663446,13802.0788369883,3,2,3_0,3_0_0,3_3_0,3_1_0 -32469,2,87.0,0.0,5,111,740.0,0.0,0.0,0,86,0.0,0.0,1022.8089284061887,740.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100886,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,2848.96060188749,740.0,25795.447090976686,0,6,0,1,77.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02868723295975955,25795.447090976686,7,4,7,7_0,7_3,7_0_0 -32470,2,84.0,0.0,2,111,550.0,0.0,0.0,0,63,2240.377315527001,0.0,760.1958251667618,2080.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,117794,2,1,2,0,1,,160.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1519.76848351043,550.0,8784.207263371598,0,5,0,1,52.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.23678858406189793,8784.207263371598,1,1,1_0,1_1_0,1_3_0,1_0_1 -32471,1,27.0,382.0,2,111,300.0,0.0,0.0,0,85,0.0,0.0,414.65226827277917,739.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,107869,1,3,0,1,2,,600.0,350.0,31,0.0,0.0,3.0,3.0,1.6,4,4,377.261197584355,300.0,5310.0,0,6,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.1391713747645951,3318.75,1,1,1_1,1_0_1,1_3_1,1_0_1 -32472,2,50.0,0.0,2,111,380.0,0.0,0.0,85,21,0.0,0.0,525.2262064788536,1383.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,1.0,2,,2,130961,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4000000000000004,1,1,1690.36348852543,380.0,15934.195134332316,6,1,1,2,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08679446864687534,6639.2479726384645,1,1,1_0,1_0_0,1_3_0,1_0_1 -32473,2,77.0,0.0,5,111,1742.0,0.0,0.0,75,75,0.0,869.5449040483445,2407.747504437271,2732.0,258.04905062852873,0.0,71,2,2,2,1,1,2,2,2,0,,2,,3,132607,2,1,0,0,1,,343.0,340.0,41,0.0,6.0,4.0,2.0,1.5,3,3,387.030529195645,1742.0,27176.760150195638,5,5,2,3,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.10052706742456691,18117.840100130426,4,2,4_0,4_0_0,4_3_0,4_0_0 -32474,2,59.0,0.0,5,111,420.0,1860.0,0.0,86,52,0.0,0.0,580.5131755818909,2280.0,0.0,3373.3943955762547,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,101658,2,1,0,1,2,584.0,0.0,480.0,42,1.0,2.0,2.0,2.0,1.5,1,1,1956.04194451721,420.0,44776.40252471061,5,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.050919678032234586,29850.93501647374,8,4,8,8_0,8_3,8_0_0 -32475,2,62.0,0.0,5,111,600.0,0.0,0.0,55,23,0.0,0.0,829.3045365455583,868.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,3,100364,2,1,0,1,1,,0.0,,43,3.0,2.0,3.0,3.0,2.0,2,2,2187.84231684161,600.0,124097.24322432325,1,1,1,2,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0069945147647717506,62048.62161216162,10,5,10,10_0,10_3,10_0_0 -32476,2,70.0,0.0,2,111,360.0,240.0,0.0,0,74,0.0,0.0,497.582721927335,600.0,0.0,435.27669620338776,71,2,1,2,1,1,2,2,2,0,,2,,2,128208,2,2,0,1,1,720.0,0.0,260.0,11,0.0,1.0,4.0,1.0,1.0,3,1,399.243695686694,360.0,17090.991303563133,0,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.03510621410677986,17090.991303563133,4,2,4_0,4_0_0,4_3_0,4_0_1 -32477,2,77.0,0.0,5,111,120.0,103.0,0.0,0,75,0.0,0.0,165.86090730911167,223.0,0.0,186.80624878728725,44,0,0,0,0,0,0,0,0,0,,2,,3,121404,2,1,0,1,1,264.0,0.0,494.0,11,0.0,2.0,1.0,1.0,1.0,2,2,2345.64457069953,120.0,16562.62273864099,0,5,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013464051166228386,16562.62273864099,4,2,4_0,4_0_0,4_3_0,4_0_0 -32478,1,54.0,474.0,5,111,570.0,0.0,0.0,85,64,0.0,0.0,787.8393097182804,726.0,268.3710126536699,0.0,71,2,2,2,1,2,2,2,2,0,,1,,3,102008,1,3,3,0,1,,360.0,435.0,42,3.0,0.0,5.0,9.0,4.199999999999999,1,1,233.849678074293,570.0,28814.123129170657,6,4,2,3,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.025195977567855146,6860.505506945396,1,1,1_1,1_1_1,1_3_1,1_0_0 -32479,2,50.0,0.0,5,111,500.0,125.0,0.0,54,37,0.0,0.0,691.0871137879653,625.0,0.0,226.7066126059311,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,130586,1,2,0,1,2,,0.0,,43,2.0,0.0,2.0,4.0,2.3,3,3,1698.58389870804,500.0,62591.916813029195,1,1,0,1,57.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009985314906826746,27213.876875230086,7,4,7,7_0,7_3,7_0_0 -32480,2,79.0,0.0,5,111,0.0,0.0,0.0,86,86,0.0,0.0,0.0,2559.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,120647,2,1,0,1,2,,0.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,2117.5069122177,0.0,40881.692206812804,5,5,0,1,122.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06259525625931772,27254.461471208535,7,4,7,7_0,7_3,7_0_0 -32481,1,60.0,249.0,2,111,0.0,0.0,1800.0,0,67,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,71,1,2,2,2,1,2,2,2,0,,2,,2,123858,2,2,0,1,1,416.0,0.0,273.0,22,1.0,2.0,3.0,2.0,1.5,2,2,372.845240206055,0.0,19045.487041525696,0,4,2,3,48.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.09451057859929665,12696.99136101713,2,1,2_1,2_0_1,2_3_1,2_0_1 -32482,2,80.0,0.0,2,111,900.0,0.0,0.0,68,63,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,60,2,2,2,2,2,2,1,2,0,,2,,2,130499,2,1,0,0,1,,0.0,,41,0.0,2.0,2.0,2.0,1.5,1,1,2300.49151330119,900.0,19796.73239658803,5,5,0,1,48.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.045462048077950235,13197.821597725355,2,1,2_0,2_0_0,2_3_0,2_0_1 -32483,2,49.0,0.0,2,111,0.0,0.0,622.0,0,68,0.0,0.0,317.7880942689406,622.0,0.0,711.0988718339368,71,2,2,2,2,1,2,2,2,2,10.0,2,,2,111142,1,2,0,1,1,663.0,0.0,339.0,32,2.0,2.0,3.0,2.0,1.5,3,3,370.489966558306,0.0,18086.582990326246,0,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.03439013330117036,12057.721993550831,2,1,2_0,2_0_0,2_3_0,2_0_1 -32484,1,63.0,81.0,2,111,490.0,0.0,0.0,0,67,0.0,0.0,677.265371512206,500.0,17.203270041901916,0.0,60,2,1,2,2,1,2,2,2,2,30.0,2,,2,109798,1,3,0,1,1,807.0,0.0,289.0,22,1.0,2.0,4.0,2.0,1.5,3,3,366.964860521129,490.0,12118.137672086565,0,1,2,3,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04126046538914319,8078.75844805771,1,1,1_1,1_0_1,1_3_1,1_0_1 -32485,2,76.0,0.0,2,111,978.0,0.0,0.0,86,86,2912.4905101851014,0.0,1351.76639456926,2928.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132282,2,1,2,1,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1596.63688764836,978.0,57955.13557992056,5,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.050521838499752385,38636.75705328037,9,5,9,9_1,9_3,9_0_1 -32486,1,65.0,25.0,1,111,690.0,0.0,0.0,0,77,0.0,0.0,953.7002170273921,834.0,247.7270886033876,0.0,50,2,1,2,2,1,2,2,2,0,,2,,1,111438,1,3,0,1,1,500.0,0.0,334.0,11,0.0,6.0,6.0,1.0,1.0,3,3,393.169911545069,690.0,15554.35617907616,0,5,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.05361841984317572,15554.35617907616,3,2,3_1,3_0_1,3_3_1,3_1_0 -32487,2,49.0,0.0,5,111,509.0,0.0,0.0,0,38,0.0,0.0,703.5266818361487,509.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,3,106761,2,1,0,0,2,,0.0,850.0,12,1.0,0.0,2.0,1.0,1.0,3,2,2105.48994916416,509.0,60815.14457282069,0,1,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008369625749890607,60815.14457282069,10,5,10,10_0,10_3,10_0_0 -32488,2,69.0,0.0,6,111,600.0,0.0,0.0,0,74,0.0,0.0,829.3045365455583,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,127392,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,3,3,1947.24023901981,600.0,54420.913161031145,0,5,0,1,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011025173323067985,54420.913161031145,10,5,10,10_0,10_3,10_0_0 -32489,1,73.0,270.0,2,111,150.0,0.0,0.0,0,77,0.0,0.0,207.32613413638958,188.0,65.37242615922729,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,119858,2,2,0,1,1,37.0,0.0,256.0,11,0.0,3.0,3.0,1.0,1.0,5,2,401.781762140196,150.0,10482.990057507297,0,5,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.017933814586170053,10482.990057507297,2,1,2_1,2_0_1,2_3_1,2_0_1 -32490,2,30.0,0.0,8,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,437.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,1999.0,6,131880,2,1,0,0,1,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2105.48994916416,0.0,22532.8499663921,0,1,2,3,28.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019393907146756335,22532.8499663921,6,3,6,6_0,6_3,6_0_0 -32491,0,84.0,0.0,1,111,415.0,0.0,0.0,0,72,2105.954676595381,0.0,573.6023044440112,1865.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108211,1,1,2,0,2,,150.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,325.506561652466,415.0,15148.424891744142,0,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1231151102063701,15148.424891744142,3,2,3_0,3_1_0,3_3_0,3_1_0 -32492,2,46.0,0.0,5,111,1000.0,0.0,0.0,0,31,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,2,1,1,2,2,2,2,1,2,60.0,2,,3,132613,2,2,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,5,3,2037.90445525053,1000.0,55993.13874388055,0,1,1,2,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.017859331025790893,55993.13874388055,10,5,10,10_0,10_3,10_0_0 -32493,2,31.0,0.0,2,111,0.0,0.0,0.0,46,22,0.0,0.0,0.0,832.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,108172,2,1,0,0,2,,0.0,1250.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2241.51332640195,0.0,46155.271148196065,1,1,3,4,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01802611011272367,25641.81730455337,7,4,7,7_0,7_3,7_0_1 -32494,2,26.0,0.0,2,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1299.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,2,,2,100352,2,1,0,0,1,,353.0,192.0,12,1.0,0.0,3.0,1.0,1.0,2,2,363.441990029941,0.0,16904.89047324747,0,1,2,3,59.0,1,2,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07684166910490837,16904.89047324747,4,2,4_0,4_0_0,4_1_0,4_0_1 -32495,2,63.0,0.0,6,111,1250.0,0.0,0.0,56,47,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,117433,2,1,0,0,1,,0.0,,43,2.0,5.0,2.0,2.0,1.5,1,1,1962.0734462752,1250.0,19323.461561045253,1,1,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06468820278660178,12882.307707363501,2,1,2_0,2_0_0,2_3_0,2_0_0 -32496,1,27.0,312.0,2,111,450.0,450.0,0.0,85,67,0.0,0.0,621.9784024091688,900.0,0.0,816.143805381352,60,2,2,2,1,2,2,2,2,2,20.0,2,,2,102458,2,3,0,1,1,,0.0,280.0,42,1.0,0.0,3.0,4.0,2.1,3,3,353.734393353858,450.0,26202.22971635197,6,1,2,3,53.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0343482218781686,12477.25224588189,2,1,2_1,2_0_1,2_2_1,2_0_1 -32497,1,50.0,70.0,8,111,1700.0,0.0,0.0,22,21,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,2,1999.0,6,109051,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,5.0,2.8,3,3,1697.32216607365,1700.0,17797.406194067684,1,1,1,2,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09551953703043829,6356.216497881316,1,1,1_1,1_0_1,1_3_1,1_0_0 -32498,1,30.0,270.0,2,111,0.0,0.0,0.0,84,52,0.0,0.0,0.0,462.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129950,2,3,0,0,1,,0.0,341.0,42,1.0,0.0,4.0,4.0,2.1,1,1,368.337362610397,0.0,10254.521114600186,3,4,2,3,68.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.045053298426799615,4883.105292666755,1,1,1_1,1_0_1,1_2_1,1_0_1 -32500,2,48.0,0.0,2,111,0.0,0.0,1080.0,21,52,0.0,0.0,551.7864016245271,1080.0,0.0,1234.705436624842,70,0,0,0,0,0,0,0,0,1,20.0,2,,2,123847,1,1,0,0,1,,0.0,297.0,43,2.0,0.0,4.0,4.0,2.3,2,2,381.920730786493,0.0,21939.863800401883,1,1,2,3,55.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04922546510886805,9539.071217566037,1,1,1_0,1_0_0,1_2_0,1_0_1 -32501,2,48.0,0.0,7,111,1000.0,0.0,0.0,42,31,0.0,82.81380038555662,1382.1742275759307,1080.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,5,111245,2,1,1,0,1,,629.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,1,1,1318.72592557298,1000.0,174681.70914525498,1,1,0,1,137.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006182673648458156,67185.272748175,10,5,10,10_1,10_3,10_0_0 -32502,1,67.0,309.0,2,111,450.0,940.0,0.0,86,86,0.0,0.0,621.9784024091688,1390.0,0.0,1704.833726796602,42,0,0,0,0,0,0,0,0,0,,2,,2,126766,2,2,0,0,1,,0.0,297.0,41,0.0,3.0,4.0,2.0,1.5,2,2,377.187271386157,450.0,4378.372054278175,5,5,2,3,55.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.3174695943534103,2918.9147028521165,1,1,1_1,1_0_1,1_2_1,1_0_1 -32503,2,36.0,0.0,5,111,620.0,0.0,0.0,63,42,0.0,0.0,856.9480210970769,620.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,3,116904,1,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,1787.25560194687,620.0,37713.195649905916,1,1,1,2,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01643986910458347,17958.66459519329,4,2,4_0,4_0_0,4_3_0,4_0_0 -32504,1,52.0,227.0,5,111,150.0,60.0,0.0,0,56,0.0,0.0,207.32613413638958,210.0,0.0,108.81917405084694,71,2,1,2,1,1,2,2,2,0,,2,,3,113311,1,2,0,1,2,578.0,0.0,256.0,12,1.0,0.0,2.0,1.0,1.0,2,2,434.12442207149,150.0,18105.125756733625,0,4,2,3,52.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.011598925233750293,18105.125756733625,4,2,4_1,4_0_1,4_2_1,4_0_0 -32505,2,90.0,0.0,2,111,250.0,0.0,0.0,0,86,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126407,2,1,0,1,2,,0.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,2226.16252647299,250.0,26854.242172130507,0,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009309516105408906,26854.242172130507,7,4,7,7_0,7_3,7_0_1 -32506,2,72.0,0.0,2,111,0.0,0.0,559.0,0,75,0.0,0.0,285.6005541741765,559.0,0.0,639.074388030821,71,0,0,0,0,0,0,0,0,0,,2,,2,104254,2,1,0,1,1,,0.0,585.0,11,0.0,5.0,4.0,1.0,1.0,2,2,490.442592066541,0.0,28290.19041609481,0,5,2,3,72.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.019759499380462796,28290.19041609481,8,4,8,8_0,8_2,8_0_1 -32507,2,43.0,0.0,2,111,640.0,0.0,0.0,46,53,897.6445110878184,0.0,884.5915056485956,1241.0,0.0,0.0,71,2,1,1,2,1,2,2,2,2,50.0,2,,2,118538,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1835.61708610187,640.0,62136.20318449224,1,1,0,1,65.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.019972253475405863,29588.66818309154,8,4,8,8_0,8_3,8_0_1 -32508,2,59.0,0.0,2,111,330.0,0.0,0.0,0,62,0.0,0.0,456.1174951000571,356.0,44.72850210894499,0.0,50,1,2,2,1,1,2,2,2,0,,2,,2,131026,1,1,0,1,2,,0.0,555.0,12,1.0,2.0,4.0,1.0,1.0,1,1,430.088596386001,330.0,36069.73338122282,0,4,2,3,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.009869770764242091,36069.73338122282,9,5,9,9_0,9_2,9_0_1 -32509,2,32.0,0.0,2,111,590.0,0.0,0.0,54,47,0.0,0.0,815.482794269799,590.0,0.0,0.0,71,2,2,1,1,1,2,2,2,0,,2,,2,117072,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,393.624046831654,590.0,78458.31400074446,1,1,1,2,70.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.007519916882159891,37361.10190511641,9,5,9,9_0,9_2,9_0_1 -32510,2,55.0,0.0,2,111,636.0,0.0,0.0,85,48,1194.8679016144006,0.0,879.0628087382918,1496.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,107025,1,3,4,0,2,,500.0,500.0,42,1.0,1.0,3.0,3.0,2.0,1,1,1608.30156807686,636.0,60866.679694261795,6,1,2,3,65.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.024578307992394653,30433.339847130897,8,4,8,8_1,8_3,8_0_1 -32511,2,46.0,0.0,5,111,450.0,750.0,0.0,37,22,0.0,0.0,621.9784024091688,1200.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,106679,1,1,1,0,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,1,1,1388.07168700104,450.0,170586.61155478394,1,1,1,2,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007034549716784893,113724.4077031893,10,5,10,10_1,10_3,10_0_0 -32512,1,27.0,215.0,2,111,562.0,458.0,0.0,85,52,0.0,0.0,776.781915897673,1020.0,0.0,830.6530285881316,30,2,2,2,1,2,2,2,2,2,15.0,2,,2,123995,1,3,0,1,2,841.0,0.0,579.0,42,1.0,0.0,3.0,5.0,2.4,3,2,411.506247585129,562.0,31966.29592756999,6,1,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.031908607813402615,13319.28996982083,3,2,3_1,3_0_1,3_2_1,3_0_1 -32513,2,66.0,0.0,5,111,0.0,0.0,0.0,72,22,0.0,0.0,0.0,1155.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,101244,2,2,3,0,2,,0.0,,42,1.0,1.0,4.0,2.0,1.5,1,1,1495.69395989937,0.0,30732.107626812147,5,1,0,1,110.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037582843781020836,20488.0717512081,5,3,5,5_1,5_3,5_0_0 -32514,1,59.0,42.0,2,111,330.0,500.0,0.0,85,69,0.0,0.0,456.1174951000571,830.0,0.0,906.8264504237244,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,104352,1,1,0,1,2,,0.0,362.0,42,2.0,1.0,4.0,5.0,3.0,2,2,367.498453575923,330.0,39337.810208077775,6,1,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.021099293417953514,13112.603402692592,2,1,2_1,2_0_1,2_2_1,2_0_1 -32515,2,46.0,0.0,2,111,820.0,895.0,0.0,85,23,0.0,517.5862524097289,1133.3828666122631,2215.0,0.0,1623.2193462584667,43,0,0,0,0,0,0,0,0,2,2.0,1,,2,118910,2,1,2,0,1,,0.0,,42,2.0,1.0,3.0,3.0,2.0,1,1,1552.37072545137,820.0,46176.67469699156,6,1,1,2,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.047967940838847554,23088.33734849578,6,3,6,6_1,6_3,6_0_1 -32516,2,45.0,0.0,5,111,5000.0,0.0,0.0,85,37,0.0,0.0,6910.871137879652,5000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,115196,2,2,1,0,2,,0.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,1584.99887936941,5000.0,94320.98996494463,6,1,1,2,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05301046990556717,52400.5499805248,10,5,10,10_1,10_3,10_0_0 -32517,2,43.0,0.0,2,111,616.0,125.0,0.0,85,47,0.0,0.0,851.4193241867732,741.0,0.0,226.7066126059311,71,0,0,0,0,0,0,0,0,2,1.0,2,,2,132433,2,1,0,1,1,,1150.0,,42,1.0,2.0,3.0,3.0,1.8,1,1,420.834993563515,616.0,39161.24171500228,6,1,1,2,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018921769779228687,21756.24539722349,6,3,6,6_0,6_2,6_0_1 -32518,2,68.0,0.0,7,111,1000.0,1000.0,0.0,56,78,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,71,2,2,2,1,1,2,2,2,0,,1,,5,111124,1,1,2,0,2,,600.0,875.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1474.48559386437,1000.0,27139.589213179457,5,5,2,3,87.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.07369308298258122,18093.05947545297,4,2,4_0,4_1_0,4_3_0,4_0_0 -32519,2,65.0,0.0,5,111,145.0,0.0,0.0,0,74,0.0,0.0,200.41526299850995,145.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,125002,1,1,0,1,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,425.989531772774,145.0,27743.465787280686,0,5,0,1,47.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005226455883766221,27743.465787280686,7,4,7,7_0,7_2,7_0_0 -32520,0,40.0,0.0,6,111,1600.0,0.0,0.0,0,63,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,116930,2,1,1,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1654.84794724441,1600.0,27344.0,0,1,5,0,160.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058513750731421885,27344.0,7,4,7,7_1,7_3,7_0_0 -32521,1,40.0,472.0,1,111,690.0,0.0,0.0,0,67,0.0,0.0,953.7002170273921,840.0,258.04905062852873,0.0,71,2,1,2,1,2,2,2,2,0,,8,,1,127445,1,3,0,1,1,600.0,0.0,406.0,32,1.0,0.0,5.0,5.0,2.5999999999999996,1,1,333.823569289495,690.0,15142.273117605546,0,4,2,3,90.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.05547383761182809,5823.951199079057,1,1,1_1,1_0_1,1_2_1,1_1_0 -32522,0,73.0,0.0,1,111,711.0,910.0,0.0,77,72,0.0,0.0,982.7258758064867,1621.0,0.0,1650.4241397711785,71,0,0,0,0,0,0,0,0,0,,2,,1,103920,2,2,0,0,1,,171.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1743.75843258275,711.0,30743.921140308943,5,5,0,1,67.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05272587034692448,20495.94742687263,5,3,5,5_0,5_3,5_1_0 -32524,2,38.0,0.0,2,111,424.0,0.0,0.0,85,47,0.0,0.0,586.0418724921946,424.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,126855,2,3,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,395.490521424613,424.0,25827.0604785037,7,1,1,2,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01641688957800298,17218.040319002466,4,2,4_0,4_0_0,4_3_0,4_0_1 -32525,1,38.0,252.0,1,111,1140.0,0.0,0.0,0,68,0.0,0.0,1575.678619436561,1200.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,1,107286,2,1,0,0,2,,0.0,600.0,32,2.0,0.0,2.0,2.0,1.5,2,2,2260.27951865791,1140.0,18838.718014230268,0,1,3,4,55.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.06369860194804933,12559.145342820178,2,1,2_1,2_0_1,2_3_1,2_1_0 -32526,2,67.0,0.0,2,111,0.0,0.0,387.0,86,78,0.0,0.0,197.7234605821222,387.0,0.0,442.4361147905684,50,0,0,0,0,0,0,0,0,0,,2,,2,120820,2,1,0,1,1,720.0,0.0,305.0,41,0.0,2.0,4.0,2.0,1.5,1,1,364.646733393751,0.0,20656.95959823463,6,5,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018734606037234713,13771.306398823086,3,2,3_0,3_0_0,3_3_0,3_0_1 -32527,1,31.0,210.0,1,111,450.0,0.0,0.0,0,35,0.0,0.0,621.9784024091688,450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,102437,1,1,0,0,2,,0.0,469.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2805.54031652949,450.0,23145.839860491687,0,4,3,4,25.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.01944193871176471,23145.839860491687,6,3,6,6_0,6_3,6_1_0 -32528,1,26.0,31.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,131742,1,3,0,0,2,,0.0,511.0,12,1.0,0.0,1.0,1.0,1.0,3,3,2805.54031652949,0.0,14885.238528845297,0,1,2,3,25.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03157490550717158,14885.238528845297,3,2,3_1,3_0_1,3_3_1,3_1_0 -32529,2,70.0,0.0,2,111,0.0,0.0,835.0,0,78,0.0,517.5862524097289,426.6126345893334,1335.0,0.0,954.6102218349472,71,0,0,0,0,0,0,0,0,0,,2,,2,118462,2,2,0,0,1,,185.0,421.0,11,0.0,0.0,2.0,1.0,1.0,1,1,532.893895396949,0.0,23112.96965054898,0,5,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05775977817581269,23112.96965054898,6,3,6,6_0,6_3,6_0_1 -32530,2,21.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1263.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,,1,119261,2,1,0,0,1,,0.0,800.0,22,2.0,0.0,3.0,2.0,1.5,3,2,2312.06189409301,0.0,25811.322175309106,0,1,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04893201485076093,17207.54811687274,4,2,4_0,4_0_0,4_3_0,4_1_0 -32532,1,26.0,270.0,1,111,330.0,0.0,0.0,0,81,0.0,0.0,456.1174951000571,370.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,112902,2,2,0,0,2,,0.0,560.0,12,1.0,0.0,1.0,1.0,1.0,3,3,2438.74006444355,330.0,9480.257080374604,0,4,3,4,30.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03902847748358526,9480.257080374604,1,1,1_1,1_0_1,1_3_1,1_1_0 -32533,1,25.0,367.0,5,111,0.0,0.0,0.0,67,85,0.0,0.0,0.0,555.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,102680,1,2,0,1,1,,0.0,321.0,42,1.0,0.0,4.0,5.0,2.4,5,4,344.460257783516,0.0,17296.41103692795,4,6,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.032087581569093804,7206.837932053313,1,1,1_1,1_0_1,1_3_1,1_0_0 -32534,2,58.0,0.0,2,111,350.0,0.0,0.0,75,43,0.0,0.0,483.76097965157567,350.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,15.0,2,,2,125696,2,1,0,0,1,,0.0,,42,1.0,1.0,2.0,2.0,1.5,2,2,1656.29198673357,350.0,64003.27074093049,5,1,0,1,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005468470532025058,42668.84716062033,9,5,9,9_0,9_3,9_0_1 -32536,2,56.0,0.0,2,111,0.0,0.0,384.0,68,75,0.0,0.0,196.19072057760962,384.0,0.0,439.0063774666105,43,0,0,0,0,0,0,0,0,0,,2,,2,121027,2,1,0,1,1,,434.0,342.0,42,1.0,3.0,4.0,3.0,2.0,2,2,393.968439394963,0.0,18797.008880767746,1,7,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020428782176769175,9398.504440383873,1,1,1_0,1_0_0,1_3_0,1_0_1 -32537,0,28.0,0.0,6,111,660.0,0.0,0.0,0,46,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,4,109380,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2060.10205227155,660.0,32510.307537755238,0,1,5,0,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02030125366342725,32510.307537755238,8,4,8,8_0,8_3,8_0_0 -32538,0,75.0,0.0,1,111,1940.0,0.0,0.0,75,74,0.0,82.81380038555662,2681.4180014973053,2545.0,903.1716771998506,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108825,1,1,4,0,2,,207.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1298.32974815064,1940.0,66724.99380771181,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0381416296168447,44483.329205141206,10,5,10,10_1,10_3,10_1_0 -32539,1,29.0,290.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102359,2,1,0,1,1,322.0,441.0,260.0,31,0.0,0.0,4.0,3.0,1.6,2,1,407.174585899402,0.0,7110.235478806907,0,6,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07594685177580246,4443.897174254316,1,1,1_1,1_0_1,1_3_1,1_0_1 -32540,2,87.0,0.0,2,111,591.0,156.0,0.0,77,75,0.0,0.0,816.864968497375,747.0,0.0,282.929852532202,50,0,0,0,0,0,0,0,0,0,,2,,2,103996,2,1,0,0,2,,238.0,,41,0.0,2.0,3.0,2.0,1.5,3,3,1724.72490117739,591.0,69558.71144472057,5,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010739129355402924,46372.47429648038,10,5,10,10_0,10_3,10_0_1 -32541,1,34.0,215.0,8,111,1092.0,0.0,0.0,52,56,0.0,0.0,1509.3342565129162,1092.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,121801,2,2,0,0,1,,0.0,726.0,43,2.0,0.0,2.0,2.0,1.5,1,1,1910.37452873034,1092.0,18967.03874009375,1,4,3,4,47.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05757356300916178,12644.692493395834,2,1,2_1,2_0_1,2_3_1,2_0_0 -32542,2,74.0,0.0,5,111,607.0,0.0,0.0,0,78,0.0,0.0,838.9797561385899,633.0,44.72850210894499,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,110640,2,1,1,0,2,,239.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,321.890904470305,607.0,12329.817086425703,0,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05133896111864387,12329.817086425703,2,1,2_0,2_1_0,2_3_0,2_0_0 -32543,2,62.0,0.0,7,111,497.0,0.0,0.0,0,74,0.0,0.0,686.9405911052374,497.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,115498,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1966.63494275155,497.0,70924.9230888878,0,5,0,1,95.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00700740978424646,70924.9230888878,10,5,10,10_0,10_3,10_0_0 -32544,1,40.0,253.0,2,111,221.0,329.0,0.0,55,63,0.0,0.0,305.46050429428067,550.0,0.0,596.6918043788107,50,2,2,1,2,1,2,1,2,0,,2,,2,117795,1,3,0,0,2,,530.0,216.0,43,2.0,0.0,3.0,4.0,2.1,1,1,417.183438930018,221.0,10859.093431780106,4,4,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.050648795265945123,5170.9968722762405,1,1,1_1,1_0_1,1_3_1,1_0_1 -32545,2,24.0,0.0,8,111,757.0,0.0,0.0,84,47,0.0,0.0,1046.3058902749794,757.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,25.0,2,2000.0,6,101805,2,1,0,0,1,,0.0,593.0,42,1.0,0.0,1.0,2.0,1.5,3,3,2267.65364537696,757.0,35429.45179829463,3,1,2,3,28.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02136640454697743,23619.634532196418,6,3,6,6_0,6_3,6_0_0 -32547,2,69.0,0.0,2,111,948.0,0.0,0.0,0,75,0.0,0.0,1310.3011677419822,948.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,131182,2,3,0,0,2,,0.0,684.0,11,0.0,2.0,4.0,1.0,1.0,2,2,2218.62001286183,948.0,25898.750605396235,0,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03660408235301033,25898.750605396235,7,4,7,7_0,7_3,7_0_1 -32548,1,49.0,270.0,2,111,630.0,150.0,0.0,0,54,0.0,0.0,870.7697633728362,780.0,0.0,272.04793512711734,71,2,2,2,1,1,1,2,2,0,,2,,2,117995,1,3,0,1,1,593.0,0.0,325.0,32,1.0,0.0,4.0,2.0,1.5,2,2,393.44817268629,630.0,9182.772737452098,0,4,2,3,127.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.08494166438626499,6121.848491634732,1,1,1_1,1_0_1,1_3_1,1_0_1 -32549,2,50.0,0.0,1,111,810.0,900.0,0.0,42,34,0.0,0.0,1119.5611243365038,1710.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,1,5.0,2,,1,114266,2,1,0,0,1,,0.0,739.0,43,2.0,0.0,3.0,4.0,2.3,3,3,2253.50939319404,810.0,40759.41076494561,4,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04195350148365379,17721.4829412807,4,2,4_0,4_0_0,4_3_0,4_1_0 -32550,2,65.0,0.0,8,111,0.0,0.0,0.0,74,77,0.0,0.0,0.0,1003.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,105459,2,1,1,0,1,,886.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,298.755774562565,0.0,29393.795557226946,7,5,0,1,135.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03412284738958784,19595.863704817963,5,3,5,5_1,5_3,5_0_0 -32551,2,27.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,223.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,100333,2,1,0,1,1,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2816.1760357978,0.0,23704.830282246377,0,1,3,4,30.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009407365391137805,23704.830282246377,6,3,6,6_0,6_3,6_0_0 -32553,2,73.0,0.0,2,111,553.0,595.0,0.0,77,75,0.0,0.0,764.3423478494896,1148.0,0.0,1079.123476004232,20,0,0,0,0,0,0,0,0,0,,2,,2,107937,2,3,0,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,3,2,1810.51674015312,553.0,55928.76072428706,5,5,0,1,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02052611188113598,37285.84048285804,9,5,9,9_0,9_3,9_0_1 -32554,2,37.0,0.0,1,111,500.0,0.0,0.0,0,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,20.0,2,,1,113177,1,3,0,0,2,,300.0,270.0,12,1.0,0.0,1.0,1.0,1.0,2,2,618.301608253708,500.0,17845.743127500868,0,1,2,3,20.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.028017886194354316,17845.743127500868,4,2,4_0,4_0_0,4_3_0,4_1_0 -32555,2,30.0,0.0,2,111,0.0,0.0,1293.6,84,38,0.0,0.0,660.9174899458224,1294.0,0.0,1478.9027340906441,10,0,0,0,0,0,0,0,0,0,,2,,2,128671,2,1,0,0,2,,0.0,750.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1989.36184466013,0.0,29904.616565691635,3,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04327091093635871,19936.411043794422,5,3,5,5_0,5_3,5_0_1 -32556,1,37.0,476.0,1,111,669.0,0.0,0.0,0,85,672.1131946581003,0.0,924.6745582482976,1519.0,688.1308016760767,0.0,20,2,2,2,2,1,2,2,2,0,,2,,1,119128,1,2,0,0,2,,158.0,435.0,31,0.0,0.0,3.0,4.0,2.5,2,1,441.785839256286,669.0,9468.275317958238,0,6,2,3,59.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.1604304848549293,3787.310127183295,1,1,1_1,1_0_1,1_3_1,1_1_0 -32558,2,80.0,0.0,2,111,480.0,0.0,0.0,86,74,0.0,0.0,663.4436292364467,620.0,240.84578058662683,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,119406,2,1,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1872.34438065372,480.0,49704.832563290096,6,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012473636224617442,33136.555042193395,8,4,8,8_0,8_3,8_0_1 -32559,2,57.0,0.0,2,111,208.0,0.0,0.0,0,54,0.0,0.0,287.49223933579356,208.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,132093,2,2,0,1,2,492.0,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,4,3,2498.07884824753,208.0,23796.0,0,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.00874096486804505,23796.0,6,3,6,6_0,6_3,6_0_1 -32560,1,37.0,420.0,1,111,600.0,0.0,0.0,0,81,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,50,2,2,2,2,2,2,2,1,0,,2,,1,133099,1,1,0,0,1,,450.0,600.0,32,1.0,0.0,3.0,3.0,1.8,2,2,548.776414516831,600.0,9141.995774635738,0,4,2,3,69.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.07219430158031305,5078.886541464299,1,1,1_1,1_0_1,1_3_1,1_1_0 -32561,2,78.0,0.0,2,111,0.0,0.0,1066.0,0,74,0.0,51.75862524097289,544.6336149368017,1116.0,0.0,1218.6999957797052,71,0,0,0,0,0,0,0,0,0,,2,,2,114799,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1845.2622401208,0.0,32432.836138052327,0,5,0,1,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034409571683761436,32432.836138052327,8,4,8,8_0,8_3,8_0_1 -32562,1,59.0,150.0,1,111,3000.0,0.0,0.0,34,31,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,117611,2,1,1,0,2,,2000.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,1287.82117452193,3000.0,198340.0,1,1,0,1,195.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.015125541998588283,79336.0,10,5,10,10_1,10_3,10_1_0 -32563,2,60.0,0.0,1,111,2640.0,0.0,0.0,75,74,0.0,0.0,3648.939960800457,2700.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117947,2,2,3,0,1,,600.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1145.13124178433,2640.0,49852.84867339263,5,5,1,2,110.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.054159392529178355,33235.23244892842,8,4,8,8_1,8_3,8_1_0 -32564,1,45.0,472.0,7,111,2000.0,1200.0,0.0,0,85,0.0,0.0,2764.3484551518613,3200.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,2,,5,115633,2,3,0,1,2,418.0,0.0,60.0,31,2.0,0.0,3.0,5.0,2.8,1,1,366.190008823944,2000.0,16463.30447804489,0,6,2,3,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.19437167090406737,5879.751599301747,1,1,1_1,1_0_1,1_3_1,1_0_0 -32565,1,47.0,300.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,819.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,2,103313,2,1,0,0,1,,0.0,620.0,32,1.0,0.0,4.0,4.0,1.9,2,2,1849.20274758421,0.0,22777.0,0,1,2,3,75.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.035957325372085874,11987.894736842105,2,1,2_1,2_0_1,2_3_1,2_0_1 -32566,2,69.0,0.0,1,111,200.0,0.0,0.0,0,78,0.0,0.0,276.4348455151861,260.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,128666,2,1,0,0,2,,0.0,161.0,11,0.0,0.0,1.0,1.0,1.0,2,2,544.923088775412,200.0,15082.118266360168,0,5,2,3,11.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.017238957778226392,15082.118266360168,3,2,3_0,3_0_0,3_3_0,3_1_0 -32567,1,37.0,150.0,1,111,360.0,828.0,0.0,85,53,0.0,0.0,497.582721927335,1188.0,0.0,1501.7046019016877,60,0,0,0,0,0,0,0,0,0,,2,,1,107284,2,2,0,0,1,,0.0,229.0,42,1.0,0.0,3.0,3.0,1.8,1,1,1787.62973508107,360.0,17657.20110585198,6,4,2,3,67.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.06728133144534844,9809.556169917765,2,1,2_1,2_0_1,2_3_1,2_1_0 -32568,1,40.0,237.0,1,111,500.0,0.0,0.0,0,63,0.0,0.0,691.0871137879653,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,109122,1,1,0,0,2,,400.0,420.0,12,1.0,0.0,2.0,1.0,1.0,3,3,471.169880371997,500.0,22357.021607006413,0,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.02236433854155717,22357.021607006413,6,3,6,6_0,6_3,6_1_0 -32569,2,63.0,0.0,2,111,511.0,0.0,0.0,0,37,0.0,0.0,706.2910302913006,514.0,5.160981012570575,0.0,33,0,0,0,0,0,0,0,0,3,1.0,1,,2,101472,1,2,3,0,1,,0.0,727.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1604.52283287296,511.0,52956.781813552574,0,1,2,3,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.00970602786645276,52956.781813552574,10,5,10,10_1,10_3,10_0_1 -32570,1,63.0,327.0,2,111,365.0,276.0,0.0,85,78,0.0,0.0,504.49359306521467,641.0,0.0,500.5682006338959,50,1,2,2,1,2,2,2,2,0,,2,,2,120026,2,1,0,1,2,316.0,0.0,392.0,41,0.0,3.0,4.0,2.0,1.5,3,3,386.971391750454,365.0,11707.422018348625,6,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05475159253637424,7804.948012232417,1,1,1_1,1_0_1,1_3_1,1_0_1 -32571,1,30.0,270.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,814.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,100906,2,1,0,1,2,717.0,0.0,343.0,32,1.0,0.0,3.0,3.0,1.6,1,1,440.406041718162,0.0,13551.726688102894,0,1,2,3,71.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06006614645752953,8469.829180064307,1,1,1_1,1_0_1,1_3_1,1_0_1 -32572,2,64.0,0.0,6,111,401.0,0.0,0.0,0,74,0.0,0.0,554.2518652579481,401.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,105740,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,2047.61705931253,401.0,40630.58805393703,0,5,0,1,91.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009869411672498397,40630.58805393703,9,5,9,9_0,9_3,9_0_0 -32573,1,51.0,422.0,2,111,650.0,70.0,0.0,0,85,0.0,0.0,898.4132479243549,720.0,0.0,126.95570305932142,20,1,2,2,2,1,2,2,2,0,,2,,2,114916,2,1,0,1,1,302.0,0.0,389.0,31,0.0,1.0,4.0,3.0,1.8,3,2,390.636480522375,650.0,8125.2114509004205,0,6,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.08861307848427882,4514.006361611345,1,1,1_1,1_0_1,1_3_1,1_0_1 -32574,2,94.0,0.0,1,111,1000.0,0.0,0.0,0,75,1493.5848770180007,0.0,1382.1742275759307,2060.0,103.2196202514115,0.0,30,0,0,0,0,0,0,0,0,0,,1,,1,113571,1,1,2,0,2,,1130.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,1294.05541189574,1000.0,40888.78246236326,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050380565914286156,40888.78246236326,9,5,9,9_1,9_3,9_1_0 -32575,2,71.0,0.0,2,111,270.0,130.0,0.0,77,46,0.0,0.0,373.1870414455012,400.0,0.0,235.77487711016835,50,2,1,2,1,1,2,2,2,0,,2,,2,125032,2,1,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1725.93892046258,270.0,39593.08436657912,5,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.010102774421324033,26395.389577719412,7,4,7,7_0,7_3,7_0_1 -32576,1,30.0,438.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,382.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,108128,2,1,0,1,2,444.0,0.0,392.0,32,1.0,0.0,4.0,4.0,1.9,1,1,342.179837588467,0.0,13249.307233736883,0,1,2,3,87.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02883169612274583,6973.319596703623,1,1,1_1,1_0_1,1_3_1,1_0_1 -32577,1,59.0,77.0,2,111,670.0,0.0,0.0,0,52,0.0,331.2552015422265,926.0567324758734,990.0,0.0,0.0,60,2,2,1,1,1,2,2,1,2,30.0,2,,2,119669,2,3,0,1,1,280.0,0.0,377.0,32,2.0,1.0,4.0,3.0,2.0,2,1,388.16881911971,670.0,18243.87194541562,0,1,2,3,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05426479658276545,9121.93597270781,1,1,1_1,1_0_1,1_3_1,1_0_1 -32578,1,33.0,305.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,712.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112452,1,3,0,0,1,,0.0,266.0,42,1.0,0.0,3.0,4.0,2.1,1,1,446.500594187554,0.0,16801.44389709828,6,4,2,3,64.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.042377310209806854,8000.6875700468,1,1,1_1,1_0_1,1_3_1,1_0_1 -32579,1,32.0,380.0,2,111,0.0,20.0,0.0,85,47,0.0,0.0,0.0,948.0,0.0,36.27305801694898,50,0,0,0,0,0,0,0,0,0,,2,,2,129342,2,2,0,1,2,265.0,0.0,343.0,42,1.0,0.0,3.0,4.0,2.1,1,1,368.212680141707,0.0,12038.086137483167,7,1,2,3,65.0,9,7,9,0,1,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07875005953381563,5732.42197023008,1,1,1_1,1_0_1,1_3_1,1_0_1 -32580,2,42.0,0.0,2,111,191.0,300.0,0.0,0,52,0.0,0.0,263.9952774670027,491.0,0.0,544.0958702542347,43,2,2,2,1,1,2,2,2,2,40.0,2,,2,114809,2,1,0,0,1,,0.0,497.0,32,1.0,0.0,3.0,2.0,1.3,5,4,586.463440269641,191.0,23850.164298988457,0,1,2,3,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.020586860276716187,18346.28022999112,4,2,4_0,4_0_0,4_3_0,4_0_1 -32581,2,60.0,0.0,5,111,1100.0,350.0,0.0,56,38,0.0,0.0,1520.3916503335236,1450.0,0.0,634.7785152966071,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,131797,2,2,0,1,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,413.727001210381,1100.0,86479.09924137438,1,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016767057158549512,57652.73282758292,10,5,10,10_0,10_3,10_0_0 -32582,2,61.0,0.0,6,111,474.0,0.0,0.0,90,35,0.0,0.0,655.1505838709911,474.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,133072,2,1,0,1,2,,0.0,955.0,42,1.0,0.0,6.0,2.0,1.5,3,2,606.997575476386,474.0,52933.00819564199,6,1,2,3,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008954714953060702,35288.67213042799,9,5,9,9_0,9_3,9_0_0 -32583,2,54.0,0.0,2,111,440.0,480.0,0.0,0,34,0.0,0.0,608.1566601334094,920.0,0.0,870.5533924067755,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,101243,1,2,0,0,2,,0.0,680.0,12,1.0,0.0,2.0,1.0,1.0,2,2,683.890839214485,440.0,41649.88538517416,0,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022088896319687988,41649.88538517416,9,5,9,9_0,9_3,9_0_1 -32584,2,59.0,0.0,2,111,414.0,0.0,0.0,52,54,0.0,0.0,572.2201302164352,459.0,77.41471518855863,0.0,50,2,1,2,1,1,2,1,2,2,45.0,2,,2,104913,1,2,0,1,2,807.0,0.0,615.0,43,2.0,4.0,4.0,2.0,1.5,2,2,434.797954878208,414.0,36152.00859631224,1,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.012696389988323394,24101.33906420816,6,3,6,6_0,6_3,6_0_1 -32585,2,65.0,0.0,5,111,197.0,849.0,0.0,0,38,0.0,0.0,272.28832283245833,1046.0,0.0,1539.7913128194841,71,0,0,0,0,0,0,0,0,0,,2,,3,119334,2,3,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,3,2,1891.64518366004,197.0,38257.35699020934,0,1,0,1,71.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027341146443223663,38257.35699020934,9,5,9,9_0,9_3,9_0_0 -32586,1,73.0,26.0,5,111,130.0,555.0,0.0,86,78,0.0,0.0,179.68264958487097,895.0,361.26867087994026,1006.5773599703341,71,2,2,2,1,1,2,2,2,0,,2,,3,124774,2,1,0,0,1,,0.0,395.0,41,0.0,6.0,4.0,2.0,1.5,2,1,555.623283394578,130.0,18711.44947648791,5,5,2,3,93.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.04783167659590577,12474.29965099194,2,1,2_1,2_0_1,2_3_1,2_0_0 -32588,1,42.0,324.0,2,111,600.0,1200.0,0.0,0,56,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,31,2,2,2,2,1,2,2,2,0,,2,,2,105010,1,3,0,0,1,,0.0,290.0,32,2.0,0.0,3.0,4.0,2.3,1,1,501.763998422132,600.0,17773.64537003332,0,1,2,3,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.1012735408254984,7727.671900014487,1,1,1_1,1_0_1,1_3_1,1_0_1 -32589,1,22.0,434.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,538.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,100318,1,3,0,1,2,743.0,0.0,667.0,22,3.0,2.0,4.0,6.0,3.3,3,2,466.876553535733,0.0,21837.82909184621,0,1,2,3,71.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.024636148480568425,6617.523967226125,1,1,1_1,1_0_1,1_3_1,1_0_1 -32590,2,47.0,0.0,2,111,1380.0,0.0,0.0,52,67,1941.6603401234008,0.0,1907.4004340547842,2770.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,2,109654,2,1,2,0,1,,0.0,191.0,43,2.0,0.0,4.0,4.0,2.5,1,1,1468.47733384535,1380.0,52296.28290858204,1,1,2,3,102.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052967435655841444,20918.513163432817,5,3,5,5_1,5_3,5_0_1 -32591,2,83.0,0.0,2,111,201.0,937.0,0.0,0,77,0.0,0.0,277.81701974276206,1138.0,0.0,1699.3927680940596,60,2,2,1,2,1,2,2,2,0,,2,,2,120006,2,2,0,0,2,,195.0,,11,0.0,3.0,4.0,1.0,1.0,4,4,422.446960159485,201.0,16519.973577479417,0,5,0,1,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.06888630872578148,16519.973577479417,4,2,4_0,4_0_0,4_3_0,4_0_1 -32592,2,62.0,0.0,7,111,959.0,0.0,0.0,0,74,0.0,0.0,1325.5050842453174,959.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,123540,1,1,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1794.37618623454,959.0,59200.055399589575,0,5,0,1,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016199309164947988,59200.055399589575,10,5,10,10_0,10_3,10_0_0 -32593,2,63.0,0.0,2,111,689.0,1146.0,0.0,74,74,0.0,0.0,952.3180427998161,1835.0,0.0,2078.4462243711764,71,0,0,0,0,0,0,0,0,0,,1,,2,113357,2,2,1,0,1,,250.0,,41,0.0,2.0,7.0,2.0,1.5,4,4,296.666587402625,689.0,78589.10693741788,5,5,0,1,115.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023349291924913314,52392.73795827859,10,5,10,10_1,10_3,10_0_1 -32594,2,49.0,0.0,2,111,0.0,0.0,0.0,52,38,0.0,207.03450096389156,0.0,2145.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,109668,2,1,1,0,1,,650.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1355.6806547574,0.0,69236.0309948852,1,1,1,2,100.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03098097867797277,27694.41239795408,7,4,7,7_1,7_3,7_0_1 -32595,1,63.0,270.0,5,111,363.0,120.0,0.0,0,86,0.0,0.0,501.7292446100628,483.0,0.0,217.63834810169388,50,0,0,0,0,0,0,0,0,0,,2,,3,119976,2,1,0,1,1,803.0,185.0,390.0,11,0.0,2.0,4.0,1.0,1.0,5,3,424.071107300234,363.0,9579.698500036844,0,7,2,3,140.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05041912331563904,9579.698500036844,1,1,1_1,1_0_1,1_3_1,1_0_0 -32596,2,24.0,0.0,7,111,0.0,0.0,0.0,56,67,0.0,0.0,0.0,368.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,120351,2,1,0,0,1,,0.0,640.0,43,2.0,0.0,1.0,2.0,1.5,2,2,2566.52521870323,0.0,25356.60735545685,2,1,2,3,22.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01451298254696541,16904.4049036379,4,2,4_0,4_0_0,4_3_0,4_0_0 -32597,1,62.0,233.0,2,111,185.0,559.0,0.0,0,78,0.0,0.0,255.70223210154717,744.0,0.0,1013.831971573724,71,2,2,2,1,1,2,2,2,0,,2,,2,128556,2,2,0,0,1,,214.0,219.0,11,0.0,0.0,2.0,1.0,1.0,2,2,470.272792716347,185.0,9809.29805971249,0,7,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.07584640567255907,9809.29805971249,2,1,2_1,2_0_1,2_3_1,2_0_1 -32598,2,43.0,0.0,9,111,3600.0,0.0,0.0,84,38,0.0,51.75862524097289,4975.82721927335,3650.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,20.0,1,2006.0,6,125988,2,1,2,0,1,,100.0,2500.0,42,1.0,0.0,7.0,5.0,2.5999999999999996,1,1,1451.53424628841,3600.0,33135.511663604135,3,1,2,3,160.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.11015372380711236,12744.42756292467,2,1,2_0,2_1_0,2_3_0,2_0_0 -32599,2,54.0,0.0,1,111,1550.0,0.0,0.0,0,37,0.0,0.0,2142.370052742692,1790.0,412.878481005646,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,101366,1,2,3,0,2,,1500.0,,32,1.0,0.0,8.0,2.0,1.5,4,3,1422.09226270891,1550.0,29422.660963442064,0,4,0,1,180.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.060837461377952595,19615.107308961375,5,3,5,5_1,5_3,5_1_0 -32600,1,62.0,343.0,2,111,480.0,75.0,0.0,0,77,0.0,0.0,663.4436292364467,555.0,0.0,136.02396756355867,71,0,0,0,0,0,0,0,0,0,,2,,2,125356,2,1,0,0,2,,400.0,384.0,31,0.0,3.0,3.0,3.0,2.0,2,2,398.680952717908,480.0,20731.414405162,0,5,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02677096647403895,10365.707202581,2,1,2_1,2_0_1,2_3_1,2_0_1 -32601,2,68.0,0.0,9,111,1250.0,0.0,0.0,86,22,0.0,496.8828023133397,1727.717784469913,1975.0,421.480116026597,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,102334,2,1,1,0,1,,420.0,,42,1.0,4.0,5.0,3.0,2.0,2,1,1599.20238426418,1250.0,24728.473049979693,6,1,0,1,200.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07986744656688868,12364.236524989847,2,1,2_0,2_1_0,2_3_0,2_0_0 -32602,2,58.0,0.0,8,111,620.0,1001.0,0.0,33,34,0.0,0.0,856.9480210970769,1621.0,0.0,1815.4665537482963,33,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,102373,2,2,1,0,1,,265.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,1239.56136978072,620.0,198904.41244661072,1,1,0,1,198.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008149643238483226,79561.76497864429,10,5,10,10_1,10_3,10_0_0 -32603,2,58.0,0.0,2,111,600.0,0.0,0.0,85,69,0.0,0.0,829.3045365455583,960.0,619.317721508469,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,,2,127795,1,1,0,1,1,960.0,600.0,332.0,42,4.0,3.0,4.0,5.0,3.0,4,4,340.567650244797,600.0,38724.76009548888,6,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024790340795728578,12908.253365162958,2,1,2_0,2_0_0,2_3_0,2_0_1 -32604,2,35.0,0.0,6,111,2340.0,0.0,0.0,46,37,0.0,72.46207533736204,3234.2876925276773,2450.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,110648,2,2,3,0,1,,402.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1246.92567369128,2340.0,90658.56685211037,1,1,1,2,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027024473086990658,43170.74612005255,9,5,9,9_1,9_3,9_0_0 -32605,2,64.0,0.0,2,111,712.0,0.0,0.0,77,53,0.0,0.0,984.1080500340626,1362.0,1118.2125527236246,0.0,43,2,2,2,2,1,2,2,2,2,20.0,2,,2,116411,1,2,0,1,1,80.0,844.0,332.0,42,5.0,2.0,4.0,6.0,3.5,3,3,361.784210978152,712.0,60579.452091371604,7,1,2,3,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.022482870890705713,17308.41488324903,4,2,4_0,4_0_0,4_3_0,4_0_1 -32606,0,43.0,0.0,2,111,568.0,0.0,0.0,0,42,0.0,0.0,785.0749612631286,648.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,131106,1,1,0,0,1,,160.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,2210.28616832022,568.0,20269.077221389827,0,1,5,0,36.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031969881653821405,20269.077221389827,5,3,5,5_0,5_3,5_0_1 -32607,2,49.0,0.0,8,111,1085.0,0.0,0.0,0,37,0.0,0.0,1499.6590369198846,1085.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,102470,2,1,0,0,1,,0.0,888.0,32,1.0,0.0,3.0,2.0,1.3,2,1,1996.66069553755,1085.0,90523.98524310713,0,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011985773682921416,69633.8348023901,10,5,10,10_0,10_3,10_0_0 -32608,2,47.0,0.0,9,111,519.0,0.0,0.0,0,42,0.0,0.0,717.348424111908,519.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,126451,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,3,2,1816.10751830191,519.0,65953.21186223863,0,1,1,2,69.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007869214938069639,65953.21186223863,10,5,10,10_0,10_3,10_0_0 -32609,1,39.0,260.0,1,111,350.0,0.0,0.0,0,68,0.0,0.0,483.76097965157567,383.0,56.77079113827632,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,132015,1,1,0,0,2,,300.0,380.0,12,1.0,0.0,1.0,1.0,1.0,4,4,3282.20296877853,350.0,4839.267902296582,0,4,2,3,35.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07914420274567541,4839.267902296582,1,1,1_1,1_0_1,1_2_1,1_1_0 -32610,1,41.0,205.0,2,111,350.0,120.0,0.0,85,67,0.0,0.0,483.76097965157567,470.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,114834,1,1,0,1,1,68.0,300.0,355.0,42,1.0,0.0,4.0,5.0,2.4,2,2,342.613676034953,350.0,15351.268859797447,6,1,2,3,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030616361702247033,6396.362024915603,1,1,1_1,1_0_1,1_3_1,1_0_1 -32611,1,54.0,300.0,2,111,250.0,1200.0,0.0,0,77,0.0,0.0,345.54355689398267,1450.0,0.0,2176.3834810169387,71,2,2,2,2,1,2,2,2,0,,2,,2,105338,2,2,0,1,1,,270.0,350.0,31,0.0,0.0,3.0,2.0,1.5,2,2,370.489966558306,250.0,8446.855314178887,0,6,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.17166151734196639,5631.236876119258,1,1,1_1,1_0_1,1_3_1,1_0_1 -32612,2,48.0,0.0,1,111,0.0,0.0,0.0,0,23,0.0,0.0,0.0,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,1,105285,1,3,0,0,2,,103.0,580.0,12,1.0,1.0,2.0,1.0,1.0,2,1,2319.25156653912,0.0,35411.46078637742,0,1,2,3,40.0,6,5,9,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.012707750259574503,35411.46078637742,9,5,9,9_0,9_2,9_1_0 -32613,2,61.0,0.0,2,111,600.0,240.0,0.0,77,74,3733.962192545002,0.0,829.3045365455583,3340.0,0.0,435.27669620338776,31,0,0,0,0,0,0,0,0,0,,1,,2,103678,2,1,2,0,2,,320.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,296.666587402625,600.0,43178.993187158936,6,5,1,2,145.0,9,7,9,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07735242888880715,28785.995458105957,8,4,8,8_1,8_3,8_0_1 -32614,1,55.0,245.0,1,111,500.0,0.0,0.0,0,52,0.0,0.0,691.0871137879653,500.0,0.0,0.0,42,2,2,1,2,1,2,2,2,0,,2,,1,109071,2,1,0,0,2,,0.0,450.0,12,1.0,2.0,2.0,1.0,1.0,2,2,2444.35764358779,500.0,4839.267902296582,0,4,2,3,32.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.10332141350610366,4839.267902296582,1,1,1_1,1_0_1,1_2_1,1_1_0 -32615,1,74.0,94.0,2,111,241.0,508.0,0.0,0,77,0.0,0.0,333.1039888457993,749.0,0.0,921.3356736305041,71,0,0,0,0,0,0,0,0,0,,2,,2,104623,2,3,0,0,1,,85.0,326.0,11,0.0,1.0,3.0,1.0,1.0,3,2,421.988645978387,241.0,14017.184910217014,0,5,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05343440960488863,14017.184910217014,3,2,3_1,3_0_1,3_3_1,3_0_1 -32616,2,54.0,0.0,2,111,510.0,96.0,0.0,55,78,0.0,0.0,704.9088560637246,959.0,0.0,174.11067848135508,31,2,1,2,2,1,2,1,2,0,,2,,2,123000,1,1,0,1,2,,440.0,,42,1.0,7.0,5.0,2.0,1.5,2,2,338.181884472473,510.0,29253.384085961297,4,5,1,2,96.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03278253200320247,19502.25605730753,5,3,5,5_0,5_3,5_0_1 -32617,2,54.0,0.0,9,111,476.0,0.0,0.0,22,22,0.0,0.0,657.9149323261429,476.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,129430,2,1,0,0,1,,390.0,,43,2.0,0.0,4.0,2.0,1.5,1,1,2163.27255723499,476.0,9781.107042472784,1,1,1,2,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04866524800649368,6520.73802831519,1,1,1_0,1_0_0,1_2_0,1_0_0 -32618,2,39.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,1235.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,109533,1,1,0,0,1,,278.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,446.331134880437,0.0,26308.599055104085,0,1,1,2,74.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04694282646572166,26308.599055104085,7,4,7,7_0,7_3,7_0_1 -32619,1,33.0,250.0,2,111,360.0,300.0,0.0,85,65,0.0,0.0,497.582721927335,660.0,0.0,544.0958702542347,50,2,1,2,2,1,2,2,2,2,15.0,2,,2,125878,1,2,0,1,1,47.0,0.0,200.0,42,1.0,0.0,3.0,3.0,1.8,3,2,614.488064291844,360.0,25639.24489744201,6,1,2,3,64.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.025741787741410716,14244.02494302334,3,2,3_1,3_0_1,3_2_1,3_0_1 -32620,2,56.0,0.0,7,111,1115.0,0.0,0.0,56,48,0.0,579.6966026988963,1541.1242637471626,2388.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,1,,5,120295,2,1,2,0,1,,540.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1604.54698735711,1115.0,40612.74666858962,1,1,0,1,110.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058799273525789564,20306.37333429481,5,3,5,5_1,5_2,5_0_0 -32621,0,79.0,0.0,2,111,391.0,1374.0,0.0,0,78,0.0,0.0,540.4301229821889,1765.0,0.0,2491.959085764395,50,0,0,0,0,0,0,0,0,0,,1,,2,133248,1,1,2,0,2,,290.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,499.934054305253,391.0,20958.692344222163,0,5,0,1,85.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08421326917786312,20958.692344222163,5,3,5,5_1,5_2,5_0_1 -32622,0,82.0,0.0,2,111,2516.0,0.0,0.0,77,78,0.0,0.0,3477.5503565810413,2516.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107258,2,1,2,0,1,,311.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1722.53712591999,2516.0,42505.41159267038,5,5,5,0,108.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059192462929446334,28336.941061780253,8,4,8,8_1,8_2,8_0_1 -32623,1,56.0,271.0,2,111,319.0,881.0,0.0,0,77,0.0,0.0,440.91357859672183,1200.0,0.0,1597.8282056466026,71,0,0,0,0,0,0,0,0,0,,2,,2,108787,2,1,0,0,1,,0.0,304.0,11,0.0,0.0,4.0,1.0,1.0,3,2,639.998001064081,319.0,4911.580990601788,0,7,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.24432051559287654,4911.580990601788,1,1,1_1,1_0_1,1_2_1,1_0_1 -32624,2,46.0,0.0,1,111,1000.0,0.0,0.0,54,37,0.0,310.55175144583734,1382.1742275759307,1400.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,115160,2,1,1,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,1718.55299820434,1000.0,65820.86411299474,1,1,1,2,85.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021269851419705138,28617.767005649886,8,4,8,8_1,8_2,8_1_0 -32625,2,54.0,0.0,1,111,1122.0,1968.0,0.0,77,21,0.0,0.0,1550.799483340194,3123.0,56.77079113827632,3569.2689088677794,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,125489,1,1,1,0,2,,629.0,,42,1.0,0.0,3.0,2.0,1.5,3,2,1590.73921211524,1122.0,9657.76803504214,7,1,0,1,110.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3233666400630602,6438.512023361426,1,1,1_0,1_1_0,1_2_0,1_1_0 -32627,2,84.0,0.0,5,111,903.0,0.0,0.0,0,72,0.0,0.0,1248.1033275010652,918.0,25.804905062852875,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,117299,2,1,2,0,1,,187.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1544.74680446072,903.0,10661.102366744368,0,5,0,1,80.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08610741820316412,10661.102366744368,2,1,2_0,2_1_0,2_2_0,2_0_0 -32628,1,54.0,270.0,2,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,593.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126355,2,2,0,1,1,67.0,476.0,284.0,22,2.0,2.0,3.0,3.0,1.8,2,2,606.78939452171,0.0,11916.450746359058,0,4,2,3,65.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04976313942984951,6620.2504146439205,1,1,1_1,1_0_1,1_2_1,1_0_1 -32629,1,39.0,360.0,2,111,960.0,0.0,0.0,85,85,0.0,25.879312620486445,1326.8872584728933,985.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,130901,2,1,0,1,1,45.0,560.0,305.0,41,1.0,0.0,4.0,5.0,2.5999999999999996,1,1,529.765902344638,960.0,6231.363697092596,6,7,2,3,63.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.1580713384551085,2396.6783450356143,1,1,1_1,1_0_1,1_2_1,1_0_1 -32630,1,46.0,444.0,2,111,0.0,0.0,950.0,0,55,0.0,0.0,485.3676680956488,950.0,0.0,1086.08348592,50,2,1,2,2,1,2,2,2,0,,2,,2,111925,1,1,0,0,1,,180.0,500.0,32,1.0,0.0,3.0,3.0,2.0,2,2,698.115010980408,0.0,13480.025735888832,0,4,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.07047464289854784,6740.012867944416,1,1,1_1,1_0_1,1_2_1,1_0_1 -32631,2,34.0,0.0,2,111,1200.0,0.0,0.0,35,35,0.0,270.1800237578785,1658.6090730911167,1461.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,115329,2,1,3,0,1,,600.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,538.623120861735,1200.0,26146.768960525013,7,1,1,2,80.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05587688491093257,14525.982755847228,3,2,3_0,3_1_0,3_2_0,3_0_1 -32632,1,44.0,270.0,7,111,1020.0,540.0,0.0,85,52,0.0,0.0,1409.817712127449,1690.0,223.64251054472493,979.3725664576224,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,101185,1,1,2,0,1,,220.0,690.0,42,1.0,0.0,4.0,5.0,2.4,1,1,1247.02462838863,1020.0,26693.111699545185,6,1,2,3,83.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06331221399072763,11122.129874810495,2,1,2_1,2_1_1,2_2_1,2_0_0 -32633,2,46.0,0.0,5,111,560.0,0.0,0.0,64,43,1493.5848770180007,0.0,774.0175674425211,1560.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,101465,2,2,5,1,1,,0.0,686.0,43,2.0,0.0,4.0,4.0,2.5,3,3,1595.8195002464,560.0,45223.123379975455,1,1,2,3,90.0,6,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03449562709086917,18089.249351990184,4,2,4_0,4_1_0,4_2_0,4_0_0 -32634,2,87.0,0.0,2,111,420.0,640.0,0.0,77,78,0.0,0.0,580.5131755818909,2448.0,0.0,1160.7378565423674,71,0,0,0,0,0,0,0,0,0,,1,,2,109872,2,1,2,0,1,,410.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1386.4153071305,420.0,22030.389850212207,5,5,0,1,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1111192319629523,14686.926566808137,3,2,3_0,3_1_0,3_2_0,3_0_1 -32635,2,66.0,0.0,6,111,260.0,0.0,0.0,22,72,0.0,0.0,359.36529916974195,260.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,121182,2,1,0,0,2,,0.0,330.0,42,1.0,3.0,1.0,2.0,1.5,2,2,2768.31956283477,260.0,16749.549105987924,1,5,2,3,25.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015522805918820264,11166.366070658616,2,1,2_0,2_0_0,2_2_0,2_0_0 -32636,2,51.0,0.0,7,111,2350.0,0.0,0.0,77,43,0.0,155.27587572291867,3248.1094348034367,2551.0,87.73667721369978,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,103589,2,1,2,0,1,,330.0,,42,1.0,3.0,5.0,3.0,2.0,2,2,1501.80390820972,2350.0,65411.29001505581,5,1,0,1,130.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03899938373655117,32705.645007527906,8,4,8,8_1,8_2,8_0_0 -32637,0,78.0,0.0,1,111,400.0,0.0,0.0,0,71,2987.1697540360015,0.0,552.8696910303722,2577.0,304.49787974166395,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112498,2,2,4,0,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1607.08501148646,400.0,14890.978040763199,0,5,0,1,100.0,6,5,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1730578067434933,14890.978040763199,3,2,3_0,3_1_0,3_2_0,3_1_0 -32638,2,35.0,0.0,2,111,1100.0,0.0,0.0,38,37,0.0,621.1035028916747,1520.3916503335236,1790.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,106406,2,1,2,0,1,,700.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1308.23481772411,1100.0,67957.41915342753,1,1,1,2,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02634002324247652,32360.67578734644,8,4,8,8_1,8_2,8_0_1 -32639,2,44.0,0.0,5,111,0.0,0.0,1070.0,52,52,0.0,0.0,546.6772682761518,1070.0,0.0,1223.2729788783156,41,0,0,0,0,0,0,0,0,2,13.0,1,,3,112116,2,2,4,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,4,3,1167.00693823969,0.0,32763.443283662556,1,1,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03265835006217292,15601.63965888693,3,2,3_0,3_1_0,3_2_0,3_0_0 -32640,2,70.0,0.0,1,111,1600.0,0.0,0.0,72,78,0.0,1035.1725048194578,2211.478764121489,2600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103457,2,1,1,0,1,,180.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1565.00524262314,1600.0,36158.182291475016,5,5,0,1,230.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07190626948669927,24105.454860983344,6,3,6,6_1,6_2,6_1_0 -32641,2,65.0,0.0,7,111,930.0,0.0,0.0,74,75,0.0,0.0,1285.4220316456153,1110.0,309.6588607542345,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,127506,2,1,2,0,1,,660.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1561.58905071229,930.0,48864.97497494813,5,5,1,2,170.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022715656778072017,32576.64998329875,8,4,8,8_1,8_2,8_0_0 -32642,2,53.0,0.0,6,111,1400.0,0.0,0.0,54,37,0.0,0.0,1935.0439186063027,1470.0,120.42289029331342,0.0,50,2,2,1,1,2,2,2,2,2,15.0,1,,4,124862,2,2,2,0,1,,500.0,,43,2.0,1.0,4.0,3.0,2.0,1,1,1572.12726397291,1400.0,35310.549796091116,1,1,1,2,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.041630617718751275,17655.274898045558,4,2,4_0,4_1_0,4_2_0,4_0_0 -32643,0,37.0,0.0,1,111,600.0,60.0,0.0,0,85,0.0,0.0,829.3045365455583,660.0,0.0,108.81917405084694,71,0,0,0,0,0,0,0,0,0,,1,,1,131981,2,1,4,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1596.21503374147,600.0,10022.034017890088,0,7,5,0,45.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06585489520608792,10022.034017890088,2,1,2_0,2_1_0,2_2_0,2_1_0 -32644,2,51.0,0.0,2,111,700.0,0.0,0.0,43,34,1091.8105451001586,628.3497104254109,967.5219593031513,2138.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,102181,2,3,1,0,1,,400.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1431.23491729769,700.0,53256.02468005728,1,1,1,2,140.0,6,5,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04014569267691913,35504.01645337152,9,5,9,9_1,9_2,9_0_1 -32645,2,46.0,0.0,7,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,2816.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,60.0,2,,5,116989,2,1,0,0,1,,0.0,600.0,12,1.0,1.0,1.0,1.0,1.0,2,2,2258.50196165008,0.0,43000.07501697926,0,1,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0654882578434586,43000.07501697926,9,5,9,9_0,9_3,9_0_0 -32646,2,77.0,0.0,7,111,182.0,360.0,0.0,78,77,0.0,0.0,251.55570941881936,542.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,2,,5,102117,2,1,0,0,1,,281.0,,41,0.0,4.0,2.0,2.0,1.5,3,2,1902.07641903772,182.0,32813.095560848415,5,5,0,1,48.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01651779543307392,21875.39704056561,6,3,6,6_0,6_3,6_0_0 -32647,2,24.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1140.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,1,,1,131965,2,2,1,0,1,,544.0,650.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1723.80402305195,0.0,24346.2207335232,0,1,2,3,44.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04682451590649929,24346.2207335232,7,4,7,7_1,7_3,7_1_0 -32648,2,67.0,0.0,1,111,1000.0,1000.0,0.0,0,75,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,1,105197,2,2,4,0,1,,90.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1621.12136203323,1000.0,56312.635452047936,0,5,0,1,110.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03551600780082591,56312.635452047936,10,5,10,10_1,10_3,10_1_0 -32649,2,60.0,0.0,1,111,0.0,0.0,0.0,47,47,0.0,0.0,0.0,2832.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,127003,2,1,2,0,2,,100.0,520.0,43,2.0,2.0,3.0,2.0,1.5,3,2,1556.49399131321,0.0,53564.80101083679,1,1,2,3,53.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.052870540850642814,35709.86734055786,9,5,9,9_1,9_3,9_1_0 -32650,2,54.0,0.0,2,111,900.0,900.0,0.0,63,52,0.0,0.0,1243.9568048183376,1800.0,0.0,1632.287610762704,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,108324,1,2,0,0,1,,0.0,750.0,43,2.0,3.0,3.0,3.0,2.0,6,6,2283.34532997659,900.0,37630.47683938766,1,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.047833568723634874,18815.23841969383,5,3,5,5_0,5_3,5_0_1 -32651,2,56.0,0.0,2,111,0.0,0.0,800.0,0,31,2539.0942909306013,0.0,408.73066787002006,2500.0,0.0,914.5966197221052,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,127658,2,1,3,0,1,,450.0,760.0,32,1.0,0.0,4.0,3.0,2.0,1,1,1700.79300137117,0.0,86467.25037023718,0,1,2,3,60.0,9,7,9,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028912680688878745,43233.62518511859,9,5,9,9_1,9_3,9_0_1 -32652,2,60.0,0.0,2,111,590.0,700.0,0.0,0,47,0.0,0.0,815.482794269799,1290.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,104434,2,1,0,1,1,1500.0,0.0,523.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1723.0645827099,590.0,15327.89063782945,0,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.084160308191152,15327.89063782945,3,2,3_0,3_0_0,3_3_0,3_0_1 -32653,2,80.0,0.0,2,111,430.0,230.0,0.0,77,78,0.0,0.0,594.3349178576501,660.0,0.0,417.14016719491326,42,0,0,0,0,0,0,0,0,0,,2,,2,118426,2,3,0,1,1,1225.0,0.0,314.0,41,0.0,4.0,3.0,2.0,1.5,1,1,1697.43143605054,430.0,39128.212583065724,5,5,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016867624571372346,26085.47505537715,7,4,7,7_0,7_3,7_0_1 -32654,2,69.0,0.0,7,111,340.0,620.0,0.0,86,78,0.0,0.0,469.9392373758164,960.0,0.0,1124.4647985254182,20,0,0,0,0,0,0,0,0,0,,2,,5,106856,2,1,0,1,1,700.0,0.0,600.0,41,0.0,1.0,3.0,2.0,1.5,1,1,1703.14498812927,340.0,33155.0,6,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028954908761876036,22103.333333333332,6,3,6,6_0,6_3,6_0_0 -32655,2,60.0,0.0,2,111,780.0,600.0,0.0,75,86,0.0,0.0,1078.0958975092258,1380.0,0.0,1088.1917405084694,44,0,0,0,0,0,0,0,0,0,,2,,2,127473,1,1,0,0,2,,0.0,540.0,41,1.0,5.0,5.0,3.0,2.0,2,2,1698.76911133411,780.0,28589.542241557097,5,7,2,3,108.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04826939824150328,14294.771120778549,3,2,3_0,3_0_0,3_3_0,3_0_1 -32656,2,53.0,0.0,7,111,1200.0,1000.0,0.0,85,65,0.0,0.0,1658.6090730911167,2200.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,60.0,2,,5,123932,2,1,0,0,1,,0.0,500.0,42,1.0,1.0,3.0,3.0,2.0,1,1,2019.7434536594,1200.0,30539.19969020314,6,1,2,3,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07203856100740426,15269.59984510157,3,2,3_0,3_0_0,3_3_0,3_0_0 -32657,2,70.0,0.0,5,111,720.0,540.0,0.0,0,77,0.0,0.0,995.16544385467,1260.0,0.0,979.3725664576224,71,0,0,0,0,0,0,0,0,0,,2,,3,102754,2,1,0,0,1,,0.0,390.0,11,0.0,2.0,3.0,1.0,1.0,4,3,1663.02924557097,720.0,18644.50117992695,0,5,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06758024727186275,18644.50117992695,4,2,4_0,4_0_0,4_3_0,4_0_0 -32658,2,43.0,0.0,6,111,540.0,300.0,0.0,54,63,0.0,0.0,746.3740828910024,840.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,2,40.0,2,,4,122963,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1831.30427482579,540.0,36652.8013672513,4,1,1,2,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022917757133579613,17453.71493678633,4,2,4_0,4_0_0,4_3_0,4_0_0 -32659,2,46.0,0.0,7,111,650.0,0.0,0.0,0,55,0.0,0.0,898.4132479243549,650.0,0.0,0.0,71,2,2,2,1,2,2,2,2,3,15.0,1,,5,121884,1,2,2,0,2,,0.0,850.0,32,1.0,1.0,4.0,3.0,1.8,2,2,1807.49843733422,650.0,7217.0,0,1,2,3,86.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.09006512401274767,4009.4444444444443,1,1,1_0,1_1_0,1_3_0,1_0_0 -32660,2,58.0,0.0,2,111,1000.0,1000.0,0.0,0,46,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,110161,2,1,2,0,1,,1200.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1669.3364019528,1000.0,23076.959433365228,0,1,1,2,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08666653012824348,23076.959433365228,6,3,6,6_1,6_3,6_0_1 -32661,2,57.0,0.0,2,111,0.0,0.0,0.0,54,65,0.0,0.0,0.0,1110.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,131966,2,1,0,1,1,,0.0,259.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1644.72857149582,0.0,29739.750112481124,4,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03732378368351378,19826.500074987416,5,3,5,5_0,5_3,5_0_1 -32662,1,36.0,300.0,2,111,250.0,0.0,0.0,52,63,0.0,0.0,345.54355689398267,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128254,1,2,0,1,1,49.0,0.0,346.0,43,2.0,0.0,4.0,5.0,2.4,2,1,1526.0517962653,250.0,27381.4450609478,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.00913027049681016,11408.935442061584,2,1,2_1,2_0_1,2_3_1,2_0_1 -32663,1,61.0,115.0,2,111,327.0,0.0,0.0,0,86,0.0,0.0,451.9709724173293,327.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117517,2,1,0,1,1,,0.0,276.0,11,0.0,0.0,3.0,1.0,1.0,5,3,2037.48901348493,327.0,11684.068046693064,0,7,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.027986827763516034,11684.068046693064,2,1,2_1,2_0_1,2_3_1,2_0_1 -32664,2,61.0,0.0,1,111,1500.0,0.0,0.0,0,75,2688.452778632401,0.0,2073.261341363896,3400.0,172.03270041901916,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,129644,2,1,2,0,1,,1000.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1529.52031303541,1500.0,29922.44655177478,0,5,0,1,160.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.11362707237581604,29922.44655177478,8,4,8,8_1,8_3,8_1_0 -32665,2,48.0,0.0,2,111,1300.0,0.0,0.0,37,54,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,,2,122207,2,1,1,0,1,,853.0,,43,2.0,0.0,5.0,3.0,2.0,2,2,1572.48893365619,1300.0,92691.77255893256,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014024977234883195,46345.88627946628,10,5,10,10_1,10_3,10_0_1 -32666,2,66.0,0.0,2,111,500.0,0.0,0.0,71,71,0.0,0.0,691.0871137879653,600.0,172.03270041901916,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,108322,2,1,2,0,1,,160.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1568.32421621823,500.0,17003.006713480394,5,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03528787643918917,11335.33780898693,2,1,2_0,2_1_0,2_3_0,2_0_1 -32667,0,41.0,0.0,1,111,0.0,0.0,0.0,0,54,672.1131946581003,0.0,0.0,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,120704,2,1,1,0,1,,0.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,2234.78809335674,0.0,18299.3985507947,0,1,5,0,120.0,9,7,9,1,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024590972143205086,18299.3985507947,4,2,4_0,4_1_0,4_3_0,4_1_0 -32668,2,67.0,0.0,7,111,1673.0,0.0,0.0,77,77,0.0,377.8379642591021,2312.377482734532,2038.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,101491,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,3,2,2173.82363761734,1673.0,38034.26893062581,5,5,0,1,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05358325681814195,25356.179287083873,7,4,7,7_0,7_3,7_0_0 -32669,2,47.0,0.0,2,111,1610.0,0.0,0.0,43,37,0.0,0.0,2225.3005063972482,4210.0,4472.850210894499,0.0,50,1,2,2,1,1,2,2,2,2,30.0,1,,2,124772,1,2,5,0,2,,637.0,,43,2.0,0.0,4.0,4.0,2.1,5,5,1421.72030683905,1610.0,69653.4306260938,1,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.06044210546641526,33168.300298139904,8,4,8,8_1,8_3,8_0_1 -32670,2,29.0,0.0,2,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,1650.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,126442,2,1,1,0,2,,462.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1578.00990693596,0.0,52073.52285383019,1,1,1,2,100.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03168596840723705,34715.68190255346,9,5,9,9_1,9_3,9_0_1 -32671,2,65.0,0.0,6,111,2050.0,0.0,0.0,77,77,0.0,248.44140115666985,2833.4571665306576,2380.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,130225,2,1,2,0,1,,560.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1784.03508842026,2050.0,44506.5159363278,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053475315915649094,29671.010624218532,8,4,8,8_1,8_3,8_0_0 -32672,1,36.0,433.0,7,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,765.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,100101,2,2,0,1,1,302.0,0.0,386.0,41,0.0,0.0,4.0,6.0,2.6999999999999997,2,2,2252.93366715234,0.0,19713.056803601634,7,6,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0388067668866166,7301.132149482088,1,1,1_1,1_0_1,1_3_1,1_0_0 -32673,2,44.0,0.0,6,111,470.0,0.0,0.0,56,53,716.9207409686403,20.703450096389155,649.6218869606873,970.0,0.0,0.0,33,2,1,2,1,1,2,2,2,0,,2,,4,116984,1,2,0,1,1,542.0,0.0,339.0,43,2.0,1.0,3.0,3.0,2.0,2,2,2275.67075248838,470.0,43061.57480210624,1,1,2,3,70.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.022525883097813577,21530.78740105312,6,3,6,6_0,6_3,6_0_0 -32674,2,35.0,0.0,6,111,360.0,320.0,0.0,52,56,0.0,0.0,497.582721927335,680.0,0.0,580.3689282711837,71,2,1,2,1,1,2,2,2,2,45.0,2,,4,128630,1,3,0,1,1,600.0,0.0,330.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2027.50203375479,360.0,38591.53989688888,1,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.017620442247623797,21439.74438716049,6,3,6,6_0,6_3,6_0_0 -32675,2,66.0,0.0,2,111,1150.0,0.0,0.0,78,74,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102318,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2251.81940865188,1150.0,39836.68705690724,5,5,0,1,66.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028867862389189383,26557.791371271494,7,4,7,7_0,7_3,7_0_1 -32676,1,57.0,103.0,2,111,1140.0,120.0,0.0,85,64,0.0,0.0,1575.678619436561,1260.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,112776,2,1,0,1,1,976.0,0.0,600.0,42,1.0,0.0,5.0,4.0,2.3,4,3,2249.24096110762,1140.0,25469.929262614354,6,1,2,3,81.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04947010205676039,11073.882288093198,2,1,2_1,2_0_1,2_3_1,2_0_1 -32677,2,82.0,0.0,1,111,619.0,2035.0,0.0,86,72,0.0,517.5862524097289,855.565846869501,3154.0,0.0,3690.7836532245583,71,0,0,0,0,0,0,0,0,0,,1,,1,118400,1,2,2,0,1,,600.0,,41,0.0,2.0,11.0,2.0,1.5,1,1,1833.82780204054,619.0,39521.13608657093,6,5,0,1,355.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07980539813155099,26347.424057713954,7,4,7,7_1,7_3,7_1_0 -32678,2,44.0,0.0,6,111,1300.0,0.0,0.0,56,63,0.0,244.30071113739203,1796.8264958487098,1536.0,0.0,0.0,44,2,2,1,2,1,2,2,2,2,15.0,1,,4,125196,2,1,4,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,1631.46947606188,1300.0,51081.08212261401,1,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03006984065672329,24324.324820292386,7,4,7,7_1,7_3,7_0_0 -32679,1,32.0,190.0,6,111,300.0,500.0,0.0,0,53,0.0,0.0,414.65226827277917,800.0,0.0,906.8264504237244,42,1,2,1,2,1,2,2,2,0,,2,,4,112164,1,2,0,0,2,,0.0,355.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2020.4607927512,300.0,18136.846306659754,0,1,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.04410910179606276,18136.846306659754,4,2,4_1,4_0_1,4_3_1,4_0_0 -32680,2,47.0,0.0,6,111,450.0,500.0,0.0,0,46,0.0,0.0,621.9784024091688,950.0,0.0,906.8264504237244,70,0,0,0,0,0,0,0,0,2,20.0,2,,4,132811,1,3,0,0,2,,0.0,423.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2183.95359274235,450.0,25499.521174168007,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03725560152723128,25499.521174168007,7,4,7,7_0,7_3,7_0_0 -32681,2,37.0,0.0,2,111,0.0,0.0,0.0,56,64,0.0,0.0,0.0,1255.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,115613,2,1,2,0,1,,0.0,750.0,43,2.0,0.0,4.0,2.0,1.5,1,1,1701.04533611463,0.0,24222.0,1,1,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05181240194864173,16148.0,4,2,4_0,4_1_0,4_3_0,4_0_1 -32682,2,39.0,0.0,1,111,600.0,0.0,0.0,21,54,0.0,103.51725048194578,829.3045365455583,775.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,128380,2,2,1,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1597.78271350185,600.0,25315.536010162527,1,1,1,2,100.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03061361211901215,14064.186672312515,3,2,3_0,3_1_0,3_3_0,3_1_0 -32683,2,28.0,0.0,7,111,2000.0,0.0,0.0,52,34,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,109021,2,2,3,0,1,,190.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1579.12395734939,2000.0,52731.72655908994,1,1,1,2,103.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037927830748322774,35154.48437272663,9,5,9,9_1,9_3,9_0_0 -32684,2,43.0,0.0,2,111,570.0,722.0,0.0,0,52,0.0,0.0,787.8393097182804,1292.0,0.0,1309.457394411858,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,111610,2,1,1,0,1,,225.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1982.91034622387,570.0,27424.470009194752,0,1,1,2,115.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0471112112491809,17140.29375574672,4,2,4_0,4_1_0,4_3_0,4_0_1 -32685,2,85.0,0.0,2,111,1050.0,0.0,0.0,77,86,0.0,0.0,1451.2829389547271,1050.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,1,,2,115943,2,1,2,0,2,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,1,1482.01338035904,1050.0,20592.197435353017,6,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.050990187098601876,13728.131623568677,3,2,3_0,3_1_0,3_3_0,3_0_1 -32686,2,36.0,0.0,2,111,1200.0,0.0,0.0,62,43,0.0,0.0,1658.6090730911167,1290.0,154.82943037711726,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,117668,2,3,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,2095.29826418364,1200.0,52900.05829707425,1,1,1,2,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.024385606396795715,25190.503950987735,7,4,7,7_0,7_3,7_0_1 -32687,2,56.0,0.0,6,111,526.0,1259.0,0.0,77,75,0.0,0.0,727.0236437049394,1785.0,0.0,2283.389002166938,71,0,0,0,0,0,0,0,0,0,,1,,4,117187,2,1,1,0,1,,624.0,,41,1.0,1.0,5.0,4.0,2.5,2,2,1409.60656816376,526.0,77387.47363662031,7,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023065748448923715,30954.989454648126,8,4,8,8_1,8_3,8_0_0 -32688,1,54.0,327.0,8,111,450.0,580.0,0.0,52,78,0.0,0.0,621.9784024091688,1030.0,0.0,1051.9186824915203,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,130987,1,1,1,0,1,,560.0,498.0,42,2.0,1.0,5.0,4.0,2.5,2,2,1505.03504283276,450.0,39914.73545897883,1,7,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.025805006300456422,15965.894183591532,3,2,3_1,3_1_1,3_3_1,3_0_0 -32689,2,62.0,0.0,8,111,450.0,920.0,0.0,75,77,0.0,0.0,621.9784024091688,1370.0,0.0,1668.560668779653,71,2,2,1,2,1,2,2,2,0,,1,2002.0,6,117027,2,1,1,0,1,,450.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1711.31967487668,450.0,19295.9341548659,6,5,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.07099941308902756,12863.956103243932,2,1,2_0,2_1_0,2_3_0,2_0_0 -32690,2,70.0,0.0,5,112,2000.0,0.0,0.0,75,74,0.0,414.0690019277831,2764.3484551518613,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,100212,2,1,2,0,1,,600.0,,41,0.0,2.0,5.0,2.0,1.5,4,3,1579.4382238986,2000.0,35822.681707839256,5,5,0,1,120.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06699665925554636,23881.78780522617,6,3,6,6_1,6_1,6_0_0 -32691,1,48.0,286.0,2,112,690.0,1300.0,0.0,0,85,0.0,51.75862524097289,953.7002170273921,2140.0,172.03270041901916,2357.7487711016834,60,0,0,0,0,0,0,0,0,0,,2,,2,123014,1,3,0,0,1,,0.0,378.0,31,2.0,0.0,5.0,5.0,3.0,3,3,1710.38410111919,690.0,35843.69897986895,0,5,2,3,100.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.059703659524701885,11947.899659956316,2,1,2_1,2_0_1,2_1_1,2_0_1 -32692,2,61.0,0.0,5,112,770.0,870.0,0.0,75,75,0.0,0.0,1064.2741552334664,1640.0,0.0,1577.8780237372805,71,0,0,0,0,0,0,0,0,0,,1,,3,131297,1,1,2,0,1,,650.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1371.16947497446,770.0,52120.79176979732,5,5,0,1,115.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03146537004355983,34747.194513198214,9,5,9,9_1,9_1,9_0_0 -32693,2,55.0,0.0,7,112,1420.0,0.0,0.0,86,34,0.0,0.0,1962.6874031578213,1420.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,119278,2,1,2,0,1,,700.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1420.72816079353,1420.0,52370.976068595606,6,1,0,1,115.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02711425500529303,34913.9840457304,9,5,9,9_1,9_1,9_0_0 -32694,2,71.0,0.0,2,112,1000.0,1300.0,0.0,75,75,0.0,0.0,1382.1742275759307,2300.0,0.0,2357.7487711016834,71,0,0,0,0,0,0,0,0,0,,1,,2,116849,1,1,1,0,2,,600.0,,41,0.0,0.0,7.0,2.0,1.5,1,1,1610.02984547266,1000.0,39284.75763012468,5,5,0,1,180.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05854688023418767,26189.83842008312,7,4,7,7_1,7_1,7_0_1 -32695,2,41.0,0.0,2,112,250.0,900.0,0.0,43,47,0.0,0.0,345.54355689398267,1150.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,2,,2,124806,1,3,0,0,1,,0.0,582.0,43,2.0,0.0,3.0,3.0,1.8,1,1,2631.92045340185,250.0,35111.41238045006,4,1,2,3,66.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0327528835222908,19506.340211361145,5,3,5,5_0,5_1,5_0_1 -32696,2,59.0,0.0,2,112,746.0,1351.0,0.0,37,38,0.0,155.27587572291867,1031.1019737716442,2247.0,0.0,2450.2450690449036,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,116436,2,1,1,0,1,,1354.0,,43,2.0,2.0,5.0,2.0,1.5,1,1,1439.23754570683,746.0,112166.34544309502,1,1,0,1,110.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020032746820123182,74777.56362873001,10,5,10,10_1,10_1,10_0_1 -32697,2,64.0,0.0,6,112,600.0,0.0,0.0,0,54,0.0,0.0,829.3045365455583,1952.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,1,,4,127762,2,1,2,0,1,,400.0,,12,1.0,1.0,5.0,1.0,1.0,3,3,1499.12491848976,600.0,14641.255137781718,0,1,0,1,146.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1333219031859413,14641.255137781718,3,2,3_0,3_1_0,3_1_0,3_0_0 -32698,2,61.0,0.0,7,112,150.0,0.0,0.0,74,37,0.0,0.0,207.32613413638958,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,108202,2,1,2,0,1,,400.0,,42,1.0,1.0,6.0,2.0,1.5,3,3,1481.72137326288,150.0,112492.41890498495,5,1,0,1,120.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0013334231894035033,74994.94593665663,10,5,10,10_1,10_1,10_0_0 -32699,2,41.0,0.0,6,112,300.0,626.0,0.0,0,43,0.0,0.0,414.65226827277917,926.0,0.0,1135.346715930503,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,116865,2,1,2,0,1,,90.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1530.58579548756,300.0,29831.87725324447,0,1,0,1,90.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03104062114962241,29831.87725324447,8,4,8,8_1,8_1,8_0_0 -32700,2,52.0,0.0,6,112,790.0,660.0,0.0,52,47,0.0,0.0,1091.917639784985,1450.0,0.0,1197.0109145593162,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,125665,2,1,1,0,1,,350.0,,43,2.0,1.0,6.0,3.0,2.0,4,3,1399.79296655932,790.0,50480.93171553737,1,1,1,2,120.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02872371706946346,25240.465857768686,7,4,7,7_1,7_1,7_0_0 -32701,2,63.0,0.0,2,112,600.0,0.0,0.0,77,74,0.0,217.38622601208613,829.3045365455583,2310.0,2580.4905062852877,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,126274,2,1,2,0,1,,450.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1420.72816079353,600.0,55303.37682666247,7,5,0,1,125.0,9,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04176960128927099,36868.917884441646,9,5,9,9_1,9_1,9_0_1 -32702,2,64.0,0.0,6,112,1300.0,1000.0,0.0,34,34,0.0,155.27587572291867,1796.8264958487098,2450.0,0.0,1813.6529008474488,31,0,0,0,0,0,0,0,0,4,25.0,1,,4,104203,2,1,2,0,2,,1000.0,,43,2.0,5.0,6.0,2.0,1.5,1,1,1481.72137326288,1300.0,55774.48623955337,1,1,0,1,160.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04392689498702264,37182.990826368914,9,5,9,9_1,9_1,9_0_0 -32703,2,66.0,0.0,6,112,1435.0,0.0,0.0,77,75,0.0,0.0,1983.4200165714603,1435.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,115027,2,1,2,0,1,,262.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1489.32597856594,1435.0,46017.0,5,5,0,1,90.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031184127605015537,30678.0,8,4,8,8_1,8_1,8_0_0 -32704,2,78.0,0.0,2,112,420.0,1200.0,0.0,86,75,0.0,0.0,580.5131755818909,1620.0,0.0,2176.3834810169387,30,2,2,2,2,2,2,2,1,0,,1,,2,101344,2,1,2,0,1,,500.0,,41,0.0,3.0,6.0,2.0,1.5,3,2,1325.25930913272,420.0,54353.84541585317,6,5,0,1,78.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.02980469896114289,36235.89694390211,9,5,9,9_1,9_1,9_0_1 -32705,2,70.0,0.0,2,112,1350.0,50.0,0.0,86,75,3733.962192545002,144.92415067472407,1865.9352072275062,4040.0,0.0,90.68264504237244,71,0,0,0,0,0,0,0,0,0,,1,,2,106877,2,1,2,0,2,,1040.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1518.11212646886,1350.0,78804.13877040784,6,5,0,1,180.0,9,2,9,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05126634289818648,52536.092513605225,10,5,10,10_1,10_1,10_0_1 -32706,2,49.0,0.0,2,112,630.0,1400.0,0.0,56,33,0.0,0.0,870.7697633728362,2030.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,111632,2,2,3,0,1,,1900.0,1000.0,43,2.0,0.0,4.0,4.0,2.5,1,1,1535.65921560145,630.0,47516.136652741494,1,1,2,3,100.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04272232851832404,19006.4546610966,5,3,5,5_1,5_1,5_0_1 -32707,2,88.0,0.0,7,112,402.0,815.0,0.0,86,78,0.0,0.0,555.6340394855241,1217.0,0.0,1478.127114190671,60,0,0,0,0,0,0,0,0,0,,2,,5,132892,2,1,0,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,3,2,2114.41858709277,402.0,29238.509420940918,6,5,0,1,72.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04162318887324578,19492.339613960612,5,3,5,5_0,5_1,5_0_0 -32708,2,45.0,0.0,2,112,450.0,300.0,0.0,46,47,0.0,0.0,621.9784024091688,750.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,125737,2,3,0,0,2,,0.0,,43,2.0,0.0,3.0,4.0,2.3,1,1,1845.88861444103,450.0,53662.522636539434,1,1,0,1,70.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01397623449571706,23331.531581104104,6,3,6,6_0,6_1,6_0_1 -32709,2,31.0,0.0,6,112,232.0,800.0,0.0,0,53,0.0,0.0,320.6644207976159,1032.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,1,10.0,2,,4,113206,2,1,0,1,1,1084.0,0.0,347.0,12,1.0,0.0,5.0,1.0,1.0,1,1,1795.26156290094,232.0,20324.25752934098,0,1,2,3,79.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05077676262024136,20324.25752934098,5,3,5,5_0,5_1,5_0_0 -32710,2,54.0,0.0,2,112,420.0,937.0,0.0,0,55,0.0,0.0,580.5131755818909,1357.0,0.0,1699.3927680940596,44,0,0,0,0,0,0,0,0,0,,2,,2,122697,2,1,0,0,1,,0.0,900.0,22,1.0,1.0,5.0,2.0,1.5,2,2,2430.99799907427,420.0,27766.0,0,1,2,3,100.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.048872722034142474,18510.666666666668,4,2,4_0,4_0_0,4_1_0,4_0_1 -32711,0,70.0,0.0,5,112,611.0,1330.0,0.0,0,74,0.0,82.81380038555662,844.5084530488936,2081.0,103.2196202514115,2412.158358127107,70,0,0,0,0,0,0,0,0,0,,1,,3,112100,2,2,2,0,1,,550.0,,11,0.0,5.0,8.0,1.0,1.0,1,1,1721.89437446421,611.0,55552.864050758086,0,5,0,1,200.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03745981481888335,55552.864050758086,10,5,10,10_1,10_1,10_0_0 -32712,2,64.0,0.0,6,112,232.0,750.0,0.0,77,77,0.0,0.0,320.6644207976159,982.0,0.0,1360.2396756355868,71,2,2,2,2,1,2,2,2,0,,2,,4,128634,2,2,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,3,2,1890.57713915614,232.0,25825.30876032774,5,5,0,1,58.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.0380247147909622,17216.87250688516,4,2,4_0,4_0_0,4_1_0,4_0_0 -32713,2,69.0,0.0,2,112,360.0,865.0,0.0,77,78,0.0,0.0,497.582721927335,1225.0,0.0,1568.8097592330432,60,0,0,0,0,0,0,0,0,0,,2,,2,126839,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1836.60587024644,360.0,35969.95663879568,5,5,0,1,70.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03405619896351964,23979.971092530453,6,3,6,6_0,6_1,6_0_1 -32714,2,65.0,0.0,2,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1032.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,115141,2,2,0,0,2,,0.0,540.0,11,0.0,1.0,3.0,1.0,1.0,4,4,2603.12942687438,0.0,36115.84471669268,0,5,2,3,60.0,9,2,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028574715837201822,36115.84471669268,9,5,9,9_0,9_1,9_0_1 -32715,2,59.0,0.0,6,112,1200.0,0.0,0.0,85,78,0.0,0.0,1658.6090730911167,1410.0,361.26867087994026,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,100021,2,1,0,1,1,1800.0,0.0,420.0,41,0.0,4.0,6.0,3.0,2.0,3,2,1872.6074604193,1200.0,26764.721081932723,7,7,2,3,100.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05268128876380511,13382.360540966361,3,2,3_0,3_0_0,3_1_0,3_0_0 -32716,1,35.0,193.0,7,112,340.0,0.0,0.0,0,67,0.0,0.0,469.9392373758164,390.0,86.01635020950958,0.0,60,2,2,2,2,1,2,2,2,2,30.0,2,,5,109205,2,1,0,0,1,,0.0,248.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1672.13520831818,340.0,12648.345765025533,0,1,2,3,51.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.03083407168377743,12648.345765025533,2,1,2_1,2_0_1,2_1_1,2_0_0 -32717,2,84.0,0.0,6,112,595.0,400.0,0.0,74,74,0.0,0.0,822.3936654076787,995.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,0,,1,,4,131722,2,1,2,0,1,,1200.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,1481.72137326288,595.0,85447.82824985043,5,5,0,1,200.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01164453234657537,56965.218833233615,10,5,10,10_1,10_1,10_0_0 -32718,2,57.0,0.0,6,111,600.0,0.0,0.0,78,52,1971.532037663761,0.0,829.3045365455583,1956.0,61.9317721508469,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,4,101210,2,1,2,0,1,,320.0,,42,1.0,2.0,5.0,2.0,1.5,3,2,797.371460478881,600.0,34682.12528626785,5,1,0,1,106.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056397927862121666,23121.4168575119,6,3,6,6_1,6_3,6_0_0 -32719,2,30.0,0.0,2,111,450.0,0.0,0.0,84,52,0.0,0.0,621.9784024091688,512.0,106.66027425979189,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100452,2,2,0,1,1,,0.0,,42,2.0,1.0,3.0,6.0,2.8999999999999995,1,1,1260.60768721462,450.0,41909.20698025527,3,1,0,1,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012216885903883104,14451.450682846647,3,2,3_0,3_0_0,3_3_0,3_0_1 -32720,2,50.0,0.0,1,111,1430.0,0.0,0.0,56,64,0.0,0.0,1976.5091454335807,1538.0,185.7953164525407,0.0,41,2,2,2,2,2,2,2,1,0,,1,,1,128948,2,1,1,0,1,,340.0,,43,2.0,1.0,3.0,3.0,1.8,1,1,1075.18303028803,1430.0,35531.09951188302,1,1,1,2,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04328602326211806,19739.4997288239,5,3,5,5_1,5_3,5_1_0 -32721,2,61.0,0.0,5,111,1010.0,0.0,0.0,0,54,0.0,113.86897553014036,1395.9959698516898,1240.0,206.439240502823,0.0,71,2,2,1,1,2,2,2,2,2,10.0,1,,3,128383,2,2,3,0,1,,480.0,505.0,22,2.0,2.0,5.0,2.0,1.5,2,2,901.37293069188,1010.0,50890.8046042051,0,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.024365894971476613,33927.203069470066,9,5,9,9_1,9_3,9_0_0 -32722,0,62.0,0.0,1,111,2240.0,0.0,0.0,0,56,0.0,0.0,3096.0702697700845,2360.0,206.439240502823,0.0,42,2,2,1,2,2,1,2,2,2,30.0,1,,1,110507,2,1,1,0,2,,700.0,,22,3.0,0.0,4.0,3.0,2.0,4,4,1097.20459505207,2240.0,55566.61643611916,0,1,5,0,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.04247154409182207,27783.30821805958,7,4,7,7_1,7_3,7_1_0 -32723,2,53.0,0.0,2,111,811.0,737.0,0.0,43,37,0.0,0.0,1120.9432985640797,1548.0,0.0,1336.66218792457,50,0,0,0,0,0,0,0,0,2,3.0,1,,2,124787,2,1,1,0,1,,560.0,,43,3.0,1.0,4.0,3.0,2.0,4,2,1070.41179757829,811.0,61527.37887503598,1,1,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025159531062489044,30763.68943751799,8,4,8,8_1,8_3,8_0_1 -32724,2,56.0,0.0,6,111,1335.0,0.0,0.0,85,37,0.0,0.0,1845.2025938138672,1410.0,129.02452531426437,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,4,115081,2,1,2,0,1,,274.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,964.482245166792,1335.0,36747.4812593904,6,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038369976707987044,24498.320839593598,7,4,7,7_1,7_3,7_0_0 -32726,2,35.0,0.0,2,111,1510.0,0.0,0.0,46,54,0.0,0.0,2087.0830836396553,1510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,132202,2,2,2,0,1,,240.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,889.669832001723,1510.0,51080.593886362236,1,1,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029561128505264846,34053.72925757482,9,5,9,9_1,9_3,9_0_1 -32727,2,58.0,0.0,7,111,450.0,0.0,0.0,77,63,0.0,517.5862524097289,621.9784024091688,1000.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,103297,2,1,1,0,1,,370.0,,42,1.0,3.0,5.0,2.0,1.5,3,3,1019.83487973394,450.0,29533.583360358618,5,1,0,1,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03385975849250476,19689.055573572412,5,3,5,5_1,5_3,5_0_0 -32728,2,71.0,0.0,2,111,1150.0,0.0,0.0,75,74,0.0,0.0,1589.5003617123202,1255.0,180.63433543997013,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106189,2,2,1,0,1,,310.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1058.60427023024,1150.0,61123.967927982485,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020532044017146707,40749.311951988326,9,5,9,9_1,9_3,9_0_1 -32729,2,48.0,0.0,7,111,460.0,1000.0,0.0,55,62,0.0,0.0,635.800144684928,1460.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,5,113052,2,1,1,0,1,,500.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,1034.26609739409,460.0,52479.01888094782,1,1,0,1,96.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027820642061013146,26239.50944047391,7,4,7,7_1,7_3,7_0_0 -32730,2,75.0,0.0,7,111,1233.0,0.0,0.0,86,74,0.0,41.40690019277831,1704.2208226011223,1273.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,112187,2,1,2,0,1,,394.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1032.89294567387,1233.0,18341.13109867203,6,5,0,1,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06940684263971976,12227.420732448021,2,1,2_0,2_1_0,2_3_0,2_0_0 -32731,2,70.0,0.0,6,111,1370.0,0.0,0.0,78,78,0.0,434.77245202417225,1893.578691779025,1890.0,172.03270041901916,0.0,30,0,0,0,0,0,0,0,0,0,,1,,4,126590,2,1,2,0,1,,380.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,894.732489326388,1370.0,42178.502331675285,6,5,0,1,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04480955689554308,28119.00155445019,8,4,8,8_1,8_3,8_0_0 -32732,2,48.0,0.0,8,111,800.0,0.0,0.0,85,63,1792.3018524216009,0.0,1105.7393820607444,2175.0,301.05722573328353,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,128976,2,1,1,0,1,,440.0,,42,1.0,0.0,4.0,4.0,2.3,3,3,884.352293029199,800.0,34953.17950315156,6,1,0,1,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.062226098767463794,15197.034566587636,3,2,3_0,3_1_0,3_3_0,3_0_0 -32733,2,54.0,0.0,6,111,1500.0,0.0,0.0,52,68,0.0,910.9518042411229,2073.261341363896,2450.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,110451,2,1,2,0,1,,1000.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,987.924881628031,1500.0,68993.35478547661,1,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03551066631877619,34496.677392738304,9,5,9,9_1,9_3,9_0_0 -32734,2,38.0,0.0,1,111,1310.0,0.0,0.0,46,63,0.0,0.0,1810.6482381244691,1415.0,180.63433543997013,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,1,114503,2,1,0,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,1224.83076267407,1310.0,35130.25638041791,4,1,1,2,60.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04027866989290578,15274.024513225178,3,2,3_0,3_0_0,3_3_0,3_1_0 -32735,2,57.0,0.0,6,111,1500.0,0.0,0.0,75,75,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,133515,2,1,2,0,1,,460.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,848.760176906132,1500.0,68312.02586616203,6,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021958066401643876,45541.35057744136,10,5,10,10_1,10_3,10_0_0 -32736,0,79.0,0.0,1,111,169.0,0.0,0.0,0,77,960.3750759225744,0.0,233.58744446033228,829.0,29.24555907123326,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,119386,2,2,2,0,1,,70.0,,11,0.0,1.0,4.0,1.0,1.0,3,2,990.401746570877,169.0,20876.304852858742,0,5,0,1,75.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.039710092654949854,20876.304852858742,5,3,5,5_1,5_3,5_1_0 -32737,2,84.0,0.0,2,111,570.0,0.0,0.0,77,75,0.0,0.0,787.8393097182804,570.0,0.0,0.0,44,2,2,1,1,2,2,2,2,0,,8,,2,114659,2,3,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1456.19061749879,570.0,32986.70309274082,5,5,0,1,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.017279689891938198,21991.135395160545,6,3,6,6_0,6_3,6_0_1 -32738,1,30.0,335.0,2,111,1141.0,0.0,0.0,53,63,0.0,0.0,1577.0607936641368,1321.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114667,1,1,0,0,1,,0.0,318.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1148.90710948292,1141.0,35761.338206900204,1,1,2,3,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0369393335438748,17029.208669952477,4,2,4_1,4_0_1,4_3_1,4_0_1 -32739,2,42.0,0.0,9,111,1300.0,0.0,0.0,46,38,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2012.0,6,104959,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,3,3,852.345550355063,1300.0,68662.66662041699,1,1,0,1,159.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018933141749164783,32696.50791448428,8,4,8,8_1,8_3,8_0_0 -32740,2,66.0,0.0,1,111,490.0,0.0,0.0,0,77,0.0,0.0,677.265371512206,526.0,61.9317721508469,0.0,42,2,2,2,1,2,2,2,2,0,,2,,1,118497,2,3,0,0,1,,93.0,677.0,11,0.0,1.0,2.0,1.0,1.0,2,2,1841.85340846934,490.0,20786.362516647438,0,5,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0.02530505275171333,20786.362516647438,5,3,5,5_0,5_3,5_1_0 -32741,2,40.0,0.0,1,111,0.0,0.0,0.0,43,21,0.0,0.0,0.0,1590.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,106002,2,1,0,0,1,,429.0,786.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1377.26856570145,0.0,34388.34980395045,1,1,2,3,75.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.046236589108365554,22925.566535966966,6,3,6,6_0,6_3,6_1_0 -32742,2,67.0,0.0,1,111,406.0,731.0,0.0,77,74,0.0,0.0,561.1627363958278,1165.0,48.169156117325365,1325.7802705194852,71,0,0,0,0,0,0,0,0,0,,1,,1,119082,2,1,1,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,5,3,967.582954011876,406.0,39690.63524701206,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029352011948150968,26460.42349800804,7,4,7,7_1,7_3,7_1_0 -32743,1,59.0,279.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,633.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,109674,1,3,0,0,2,,201.0,500.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1669.03322029513,0.0,2474.1176631647304,0,7,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.25584878578099135,2474.1176631647304,1,1,1_1,1_0_1,1_3_1,1_1_0 -32744,2,55.0,0.0,5,111,805.0,660.0,0.0,47,33,0.0,170.80346329521052,1112.6502531986241,1630.0,0.0,1197.0109145593162,50,0,0,0,0,0,0,0,0,4,35.0,2,,3,123864,2,2,0,0,1,,360.0,,43,2.0,2.0,4.0,3.0,2.0,2,2,1450.31601646313,805.0,75935.29048457714,1,1,1,2,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02146564515126286,37967.64524228857,9,5,9,9_0,9_3,9_0_0 -32745,2,25.0,0.0,5,111,700.0,0.0,0.0,0,47,0.0,0.0,967.5219593031513,700.0,0.0,0.0,50,2,2,2,2,1,2,2,1,2,15.0,1,,3,117436,2,2,1,0,1,,165.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1135.40926052905,700.0,23901.335195989566,0,1,2,3,42.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.029287066779325945,23901.335195989566,6,3,6,6_1,6_3,6_0_0 -32746,2,85.0,0.0,5,111,410.0,0.0,0.0,0,75,2240.377315527001,0.0,566.6914333061316,1942.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127745,2,1,1,0,1,,238.0,,11,0.0,3.0,4.0,1.0,1.0,3,3,949.206583418332,410.0,36734.801784707604,0,5,0,1,60.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052865400264891005,36734.801784707604,9,5,9,9_1,9_3,9_0_0 -32747,2,28.0,0.0,5,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,418.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,132046,2,2,0,0,1,,142.0,744.0,22,1.0,2.0,4.0,2.0,1.5,1,1,1625.67659636028,0.0,34612.34231667026,0,1,2,3,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01207661695286885,23074.894877780174,6,3,6,6_0,6_3,6_0_0 -32748,2,56.0,0.0,2,111,900.0,0.0,0.0,21,48,2240.377315527001,0.0,1243.9568048183376,2488.0,151.38877636873687,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,104681,2,1,1,0,1,,220.0,,43,2.0,2.0,3.0,4.0,2.5,2,1,1019.06170577439,900.0,39679.81376437758,4,1,1,2,92.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06270190719074377,15871.92550575103,3,2,3_0,3_1_0,3_3_0,3_0_1 -32749,2,76.0,0.0,2,111,497.0,0.0,0.0,0,74,2987.1697540360015,0.0,686.9405911052374,2512.0,25.804905062852875,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121045,2,2,1,0,2,,637.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,1048.22816454812,497.0,84172.84199651188,0,5,0,1,160.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029843354939875943,84172.84199651188,10,5,10,10_1,10_3,10_0_1 -32750,2,71.0,0.0,5,111,1470.0,0.0,0.0,0,75,0.0,0.0,2031.796114536618,1502.0,55.050464134086134,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128125,2,1,1,0,1,,270.0,,11,0.0,2.0,4.0,1.0,1.0,3,3,1035.46434179851,1470.0,26968.691436591416,0,5,0,1,97.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05569421132395285,26968.691436591416,7,4,7,7_1,7_3,7_0_0 -32751,0,51.0,0.0,6,111,1092.0,0.0,0.0,64,35,0.0,0.0,1509.3342565129162,1476.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132681,1,2,5,0,1,,930.0,,42,1.0,1.0,3.0,3.0,2.0,1,1,1190.76786720521,1092.0,33061.13213635357,5,1,5,0,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04464456915487811,16530.566068176784,4,2,4_0,4_1_0,4_3_0,4_0_0 -32752,2,46.0,0.0,8,111,1080.0,0.0,0.0,56,43,2240.377315527001,0.0,1492.748165782005,7738.0,233.96447256986607,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,109601,2,1,2,0,1,,375.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,999.397735761976,1080.0,60435.176483789895,1,1,1,2,98.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1280380144513272,28778.655468471377,8,4,8,8_1,8_3,8_0_0 -32753,2,52.0,0.0,7,111,1900.0,0.0,0.0,0,85,0.0,310.55175144583734,2626.131032394268,2290.0,154.82943037711726,0.0,12,0,0,0,0,0,0,0,0,0,,7,,5,103383,1,1,0,0,2,,3000.0,,21,1.0,2.0,2.0,5.0,2.6,5,3,949.441339338789,1900.0,10501.27962014273,0,7,0,1,20.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.2180686623759167,4038.953700054896,1,1,1_0,1_1_0,1_3_0,1_0_0 -32754,2,63.0,0.0,2,111,180.0,0.0,0.0,0,71,4480.754631054002,0.0,248.7913609636675,3425.0,421.480116026597,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113607,2,2,2,0,2,,89.0,,21,0.0,0.0,4.0,3.0,2.0,3,2,1270.79235064098,180.0,24995.519616977377,0,5,0,1,134.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13702455689993667,12497.759808488689,2,1,2_0,2_1_0,2_3_0,2_0_1 -32755,2,74.0,0.0,5,111,1400.0,0.0,0.0,77,75,0.0,0.0,1935.0439186063027,1524.0,213.32054851958378,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115554,2,1,1,0,2,,480.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,997.216524443064,1400.0,56517.14069082174,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026965270736838503,37678.09379388116,9,5,9,9_1,9_3,9_0_0 -32756,2,72.0,0.0,5,111,980.0,1200.0,0.0,75,78,0.0,0.0,1354.530743024412,2180.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,3,122760,2,2,4,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,1,1,914.637852387949,980.0,33912.0872174397,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06428386392209173,22608.0581449598,6,3,6,6_1,6_3,6_0_0 -32757,2,46.0,0.0,5,111,540.0,980.0,0.0,46,64,0.0,0.0,746.3740828910024,1520.0,0.0,1777.3798428305,42,0,0,0,0,0,0,0,0,2,5.0,1,,3,111416,2,2,3,0,2,,571.0,,43,3.0,0.0,4.0,3.0,2.0,2,2,1130.27255922835,540.0,74060.14319528863,1,1,0,1,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02052385985795252,37030.07159764432,9,5,9,9_1,9_3,9_0_0 -32758,0,83.0,0.0,2,111,216.0,667.0,0.0,0,78,0.0,0.0,298.549633156401,883.0,0.0,1209.7064848652485,50,0,0,0,0,0,0,0,0,0,,1,,2,105210,2,1,2,0,1,,282.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,1101.83801903303,216.0,23102.29275902578,0,5,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03822131462060288,23102.29275902578,6,3,6,6_1,6_3,6_0_1 -32759,2,81.0,0.0,2,111,719.0,0.0,0.0,0,77,0.0,0.0,993.7832696270941,847.0,220.20185653634454,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,125905,2,1,1,0,1,,130.0,600.0,11,0.0,2.0,3.0,1.0,1.0,2,2,1123.382004817,719.0,17802.230658303903,0,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.047578307250216105,17802.230658303903,4,2,4_0,4_1_0,4_3_0,4_0_1 -32760,0,66.0,0.0,5,111,0.0,0.0,0.0,74,77,0.0,0.0,0.0,1500.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,121577,2,1,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1154.24891731892,0.0,32025.260746329383,5,5,5,0,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04683802614072157,21350.173830886255,6,3,6,6_1,6_3,6_0_0 -32761,2,30.0,0.0,7,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,1497.0,123.8635443016938,0.0,71,2,2,2,1,1,2,2,2,2,30.0,1,,5,115547,1,1,3,0,2,,0.0,470.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1315.93962547425,0.0,45934.31575691297,4,1,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.03259001413936826,25519.064309396093,7,4,7,7_1,7_3,7_0_0 -32762,2,42.0,0.0,5,111,790.0,0.0,0.0,85,53,2987.1697540360015,0.0,1091.917639784985,2940.0,258.04905062852873,0.0,20,2,2,2,1,2,2,1,2,2,30.0,1,,3,119362,2,3,3,0,1,,0.0,1151.0,42,1.0,1.0,6.0,5.0,2.8,2,2,979.320627909447,790.0,50838.170534535944,6,1,2,3,105.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.057830562529837044,18156.48947661998,4,2,4_0,4_1_0,4_3_0,4_0_0 -32763,2,58.0,0.0,5,111,700.0,0.0,0.0,0,65,0.0,310.55175144583734,967.5219593031513,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,3,102348,2,3,0,0,1,,0.0,530.0,12,1.0,3.0,2.0,1.0,1.0,3,3,1443.36405154626,700.0,26848.22670597955,0,1,2,3,47.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0372464077777354,26848.22670597955,7,4,7,7_0,7_3,7_0_0 -32764,1,24.0,200.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,601.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,3,133456,2,1,0,0,1,,0.0,465.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1443.36405154626,0.0,13009.538881350494,0,1,2,3,45.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.046196871809311306,13009.538881350494,2,1,2_1,2_0_1,2_3_1,2_0_0 -32765,2,47.0,0.0,1,111,980.0,0.0,0.0,52,63,0.0,376.8027917542826,1354.530743024412,1452.0,185.7953164525407,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,129133,2,1,1,0,1,,490.0,,43,2.0,1.0,3.0,3.0,2.0,2,2,1026.40312112398,980.0,35508.98287472555,1,1,1,2,65.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04089106142867018,17754.491437362776,4,2,4_0,4_1_0,4_3_0,4_1_0 -32766,2,36.0,0.0,6,111,2000.0,0.0,0.0,52,67,0.0,830.2083488652052,2764.3484551518613,2802.0,0.0,0.0,41,2,2,2,2,1,2,2,2,2,5.0,1,,4,125008,2,1,3,0,1,,628.0,,43,2.0,0.0,4.0,4.0,2.1,4,2,917.976752709828,2000.0,42791.4472221172,1,1,0,1,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,1,1,0,0,0.06548037474534764,20376.87962957962,5,3,5,5_1,5_3,5_0_0 -32767,2,66.0,0.0,2,111,1176.0,0.0,0.0,78,78,0.0,0.0,1625.4368916292942,1176.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,115251,2,1,1,0,1,,403.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,964.482245166792,1176.0,18233.619411724696,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06449624583278299,12155.74627448313,2,1,2_0,2_1_0,2_3_0,2_0_1 -32768,1,44.0,475.0,5,111,1200.0,0.0,0.0,35,33,0.0,0.0,1658.6090730911167,1293.0,159.99041138968784,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,3,130185,2,1,2,0,1,,500.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,1086.55489195335,1200.0,53821.771377276375,1,1,1,2,102.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.024023735505403793,26910.885688638187,7,4,7,7_1,7_3,7_0_0 -32769,2,67.0,0.0,1,111,450.0,0.0,0.0,77,90,0.0,0.0,621.9784024091688,1650.0,2064.39240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,121598,2,2,2,0,2,,600.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,982.694183647253,450.0,29968.113676565186,5,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05505852045970735,19978.742451043458,5,3,5,5_1,5_3,5_1_0 -32770,2,56.0,0.0,6,111,1500.0,0.0,0.0,85,78,0.0,0.0,2073.261341363896,1620.0,206.439240502823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,132418,2,1,2,0,1,,600.0,,41,2.0,1.0,5.0,4.0,2.5,3,2,942.147105637493,1500.0,78960.28067374445,6,5,1,2,95.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02051664439610681,31584.11226949778,8,4,8,8_1,8_3,8_0_0 -32771,2,86.0,0.0,6,111,1200.0,0.0,0.0,86,72,0.0,0.0,1658.6090730911167,1270.0,120.42289029331342,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,102609,2,1,0,0,1,,489.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1296.10732670561,1200.0,19472.905305507524,6,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.06521882482737723,12981.93687033835,2,1,2_0,2_0_0,2_3_0,2_0_0 -32772,2,49.0,0.0,8,111,600.0,0.0,0.0,54,63,0.0,0.0,829.3045365455583,748.0,254.60839662014837,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,130874,2,1,2,0,1,,550.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,900.106487166829,600.0,31660.694633334366,1,1,1,2,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02362550817860006,13765.519405797551,3,2,3_0,3_1_0,3_3_0,3_0_0 -32773,2,53.0,0.0,7,112,2030.0,0.0,0.0,21,21,0.0,248.44140115666985,2805.813681979139,2480.0,361.26867087994026,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,121770,2,1,1,0,1,,1600.0,,43,2.0,1.0,5.0,3.0,2.0,4,3,1358.56724289375,2030.0,52566.69570614182,1,1,1,2,120.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047178160367234954,26283.34785307091,7,4,7,7_1,7_1,7_0_0 -32775,2,39.0,0.0,1,112,1600.0,0.0,0.0,0,42,0.0,41.40690019277831,2211.478764121489,1640.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,25.0,2,,1,133113,1,3,0,0,1,,150.0,,12,1.0,0.0,2.0,1.0,1.0,3,3,2064.86644164941,1600.0,25138.980502256814,0,1,1,2,37.0,9,2,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.06523733131710617,25138.980502256814,7,4,7,7_0,7_1,7_1_0 -32776,0,35.0,0.0,8,112,0.0,0.0,0.0,0,22,0.0,931.655254337512,0.0,900.0,0.0,0.0,71,2,2,2,2,2,2,2,1,2,20.0,2,2000.0,6,119118,1,2,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,2057.0403704442,0.0,8611.439267786574,0,1,5,0,60.0,9,2,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.10451214622934105,6624.184052143519,1,1,1_0,1_0_0,1_1_0,1_0_0 -32777,0,70.0,0.0,2,112,2650.0,0.0,0.0,0,77,2688.452778632401,0.0,3662.761703076216,4603.0,263.2100316410993,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,116814,1,1,2,0,1,,2100.0,,21,1.0,2.0,9.0,2.0,1.5,4,3,1398.07020437248,2650.0,44506.430597763065,0,5,0,1,280.0,9,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1034232567783441,29670.953731842044,8,4,8,8_1,8_1,8_0_1 -32778,2,77.0,0.0,2,112,600.0,0.0,0.0,86,86,2987.1697540360015,0.0,829.3045365455583,2640.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,117785,2,2,2,0,1,,330.0,,41,0.0,1.0,7.0,2.0,1.5,1,1,1349.30188688322,600.0,39568.43596228246,5,5,0,1,200.0,9,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06671984716597108,26378.95730818831,7,4,7,7_1,7_1,7_0_1 -32779,2,70.0,0.0,6,112,3000.0,0.0,0.0,74,74,0.0,517.5862524097289,4146.522682727792,3500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121225,1,1,2,0,2,,90.0,,41,1.0,1.0,10.0,3.0,2.0,2,2,1555.51988373117,3000.0,89118.22819425543,5,5,0,1,290.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03927367128945693,44559.11409712771,10,5,10,10_1,10_1,10_0_0 -32780,2,44.0,0.0,2,112,2074.0,0.0,0.0,37,54,0.0,134.5724256265295,2866.62934799248,2274.0,120.42289029331342,0.0,71,2,2,2,1,2,2,2,2,2,40.0,1,,2,105697,1,2,3,0,1,,377.0,2024.0,43,2.0,0.0,7.0,2.0,1.5,3,2,1469.42009515242,2074.0,109710.07248753613,1,1,2,3,175.0,9,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.020727358468005233,73140.0483250241,10,5,10,10_1,10_1,10_0_1 -32781,2,62.0,0.0,2,112,326.0,0.0,0.0,75,74,0.0,0.0,450.58879818975333,1326.0,1720.3270041901917,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,123153,2,2,0,1,1,,770.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,1893.71600203356,326.0,48000.92958034891,5,5,0,1,90.0,9,2,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027624465017503555,32000.619720232604,8,4,8,8_0,8_1,8_0_1 -32782,2,61.0,0.0,6,112,1400.0,0.0,0.0,46,48,0.0,0.0,1935.0439186063027,3440.0,3509.467088547991,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,107385,2,1,2,0,1,,300.0,,43,2.0,1.0,4.0,2.0,1.5,1,1,1214.41082666677,1400.0,77483.29008651206,1,1,0,1,103.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044396669219378175,51655.52672434138,10,5,10,10_1,10_1,10_0_0 -32783,2,37.0,0.0,9,112,0.0,0.0,0.0,23,23,0.0,0.0,0.0,1203.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,130218,1,1,1,0,1,,339.0,1600.0,43,2.0,0.0,6.0,2.0,1.5,2,2,1492.98624557181,0.0,84542.91251601579,1,1,2,3,135.0,9,2,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014229460095452756,56361.94167734386,10,5,10,10_1,10_1,10_0_0 -32784,2,45.0,0.0,8,112,1400.0,0.0,0.0,62,54,0.0,62.110350289167464,1935.0439186063027,1460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,115608,2,2,2,0,1,,281.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,1497.94666638568,1400.0,48312.8975544151,1,1,1,2,120.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03021967370836314,24156.44877720755,6,3,6,6_1,6_1,6_0_0 -32785,2,36.0,0.0,6,112,1440.0,0.0,0.0,54,43,0.0,103.51725048194578,1990.33088770934,1540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,124650,2,1,2,0,1,,672.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1421.14102374455,1440.0,48305.91602063717,1,1,1,2,130.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0318801531336676,26836.620011465093,7,4,7,7_1,7_1,7_0_0 -32786,2,62.0,0.0,8,112,1800.0,0.0,0.0,74,74,0.0,144.92415067472407,2487.913609636675,2100.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119155,2,1,1,0,1,,732.0,,41,0.0,3.0,5.0,2.0,1.5,2,1,1382.9676394806,1800.0,103899.40090860371,6,6,0,1,180.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02021185860202687,69266.26727240247,10,5,10,10_1,10_1,10_0_0 -32787,2,60.0,0.0,2,112,700.0,0.0,0.0,38,38,2539.0942909306013,0.0,967.5219593031513,2480.0,137.62616033521533,0.0,43,2,2,2,2,1,2,2,2,2,20.0,1,,2,121724,2,2,2,0,1,,460.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,1287.72543474072,700.0,88228.85074046395,1,1,0,1,100.0,9,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.028108719304246927,29409.616913487986,8,4,8,8_1,8_1,8_0_1 -32788,2,84.0,0.0,5,112,800.0,0.0,0.0,0,78,0.0,0.0,1105.7393820607444,880.0,137.62616033521533,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,118416,2,1,1,0,2,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1515.12958425083,800.0,16341.502455496211,0,5,0,1,75.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0538506176158867,16341.502455496211,4,2,4_0,4_1_0,4_1_0,4_0_0 -32789,2,85.0,0.0,2,112,1218.0,0.0,0.0,77,75,0.0,0.0,1683.4882091874833,2061.0,1450.2356645323316,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132625,2,2,1,0,1,,220.0,,41,0.0,3.0,4.0,2.0,1.5,2,1,1366.17339555506,1218.0,39584.29939544156,5,5,0,1,110.0,9,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052066097707348595,26389.532930294372,7,4,7,7_1,7_1,7_0_1 -32790,2,58.0,0.0,2,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,475.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115984,2,2,0,1,1,600.0,0.0,815.0,12,1.0,0.0,4.0,1.0,1.0,2,2,2516.06268147968,0.0,13935.517854345708,0,1,2,3,60.0,9,3,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034085565026338374,13935.517854345708,3,2,3_0,3_0_0,3_1_0,3_0_1 -32791,2,51.0,0.0,2,112,700.0,0.0,0.0,75,21,0.0,0.0,967.5219593031513,1036.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,106900,2,1,0,1,1,,0.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1959.89235144312,700.0,204928.1363330245,5,1,0,1,85.0,9,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005055430740444629,136618.75755534967,10,5,10,10_0,10_1,10_0_1 -32792,2,50.0,0.0,5,112,550.0,0.0,0.0,0,52,0.0,0.0,760.1958251667618,626.0,130.74485231845458,0.0,60,0,0,0,0,0,0,0,0,2,2.0,1,,3,121023,2,2,2,0,1,,600.0,,32,1.0,0.0,3.0,2.0,1.5,1,1,1485.67029912204,550.0,28044.43673378841,0,1,0,1,64.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02232171770616397,18696.29115585894,5,3,5,5_1,5_1,5_0_0 -32793,2,26.0,0.0,2,112,840.0,0.0,0.0,55,65,0.0,0.0,1161.0263511637818,840.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,25.0,2,,2,131133,2,2,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,3.0,1.8,3,3,2350.94621037362,840.0,46164.81995847318,1,1,2,3,47.0,9,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.01819567369169009,25647.122199151763,7,4,7,7_0,7_1,7_0_1 -32794,2,75.0,0.0,2,112,1200.0,0.0,0.0,77,75,3435.2452171414016,269.144851253059,1658.6090730911167,3874.0,196.11727847768185,0.0,71,1,2,2,1,1,2,2,2,0,,1,,2,116505,2,1,1,0,2,,600.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1416.15824025372,1200.0,85723.01116939596,5,5,0,1,180.0,9,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.04519206625097019,57148.67411293064,10,5,10,10_1,10_1,10_0_1 -32795,2,48.0,0.0,7,112,2000.0,0.0,0.0,31,31,0.0,207.03450096389156,2764.3484551518613,2360.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,128773,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,5.0,2.8,2,2,1303.72358304166,2000.0,186291.87729807384,1,1,0,1,120.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01266829254301793,66532.81332074066,10,5,10,10_1,10_1,10_0_0 -32796,2,50.0,0.0,5,112,1000.0,0.0,0.0,74,37,0.0,310.55175144583734,1382.1742275759307,1420.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,117029,2,1,2,0,1,,800.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,1365.37827672273,1000.0,57219.930660869715,5,1,0,1,186.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024816527800707,38146.62044057981,9,5,9,9_1,9_1,9_0_0 -32797,2,64.0,0.0,5,112,1875.0,0.0,0.0,75,77,0.0,0.0,2591.57667670487,1875.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,116825,2,1,3,0,1,,700.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1372.72875442403,1875.0,65083.34049028403,5,5,0,1,96.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02880921578203119,43388.89366018935,10,5,10,10_1,10_1,10_0_0 -32798,2,49.0,0.0,5,112,1300.0,0.0,0.0,85,42,0.0,0.0,1796.8264958487098,1510.0,361.26867087994026,0.0,70,2,2,2,2,1,1,2,2,0,,1,,3,122359,1,2,3,0,1,,0.0,,42,2.0,0.0,6.0,4.0,2.5,1,1,1302.8321209982,1300.0,49073.19791130865,6,1,0,1,70.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.0307703606911672,19629.27916452346,5,3,5,5_1,5_1,5_0_0 -32799,2,78.0,0.0,5,112,1700.0,0.0,0.0,0,77,0.0,72.46207533736204,2349.696186879082,1770.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,132434,2,2,2,0,1,,460.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1425.93735194772,1700.0,17925.282838290408,0,5,0,1,100.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09874321180690561,17925.282838290408,4,2,4_0,4_1_0,4_1_0,4_0_0 -32800,2,55.0,0.0,5,112,1400.0,0.0,0.0,0,21,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118184,1,1,0,0,1,,680.0,560.0,22,2.0,2.0,4.0,2.0,1.5,3,3,1816.22316006832,1400.0,14646.924990440588,0,1,2,3,90.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09558320267999729,9764.616660293725,2,1,2_0,2_0_0,2_1_0,2_0_0 -32801,2,24.0,0.0,6,112,944.0,0.0,0.0,0,38,0.0,0.0,1304.7724708316784,3244.0,3956.7521096374408,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100250,2,1,1,0,1,,0.0,,22,1.0,0.0,6.0,3.0,2.0,3,3,1472.74249439893,944.0,59626.97609715625,0,2,0,1,130.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054404905503076716,29813.488048578125,8,4,8,8_1,8_1,8_0_0 -32802,2,59.0,0.0,7,112,650.0,0.0,0.0,74,46,0.0,0.0,898.4132479243549,650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,5,108626,2,2,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,3,2,1726.73823927906,650.0,63935.0,5,1,0,1,40.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010166575428169235,42623.333333333336,9,5,9,9_0,9_1,9_0_0 -32803,2,50.0,0.0,7,112,1370.0,0.0,0.0,34,37,0.0,134.5724256265295,1893.578691779025,1620.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,108979,2,1,2,0,1,,737.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1370.9424082877,1370.0,77849.45657223236,1,1,1,2,130.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020809393813775546,31139.782628892943,8,4,8,8_1,8_1,8_0_0 -32804,2,43.0,0.0,6,112,730.0,1400.0,0.0,52,63,0.0,0.0,1008.9871861304293,2130.0,0.0,2539.1140611864284,71,2,2,2,2,1,2,2,2,2,7.0,1,,4,123403,2,2,2,0,1,,800.0,,43,2.0,3.0,4.0,3.0,1.8,5,5,1669.29269457604,730.0,56568.06116574604,1,1,1,2,120.0,9,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.03765375648564371,31426.700647636688,8,4,8,8_1,8_1,8_0_0 -32805,2,47.0,0.0,2,112,1500.0,0.0,0.0,0,43,298.71697540360015,0.0,2073.261341363896,1700.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,40.0,1,,2,115281,2,2,2,0,1,,500.0,,32,1.0,0.0,6.0,2.0,1.3,3,3,1565.57129020505,1500.0,26380.0,0,1,0,1,130.0,9,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.06444275966641395,20292.30769230769,5,3,5,5_1,5_1,5_0_1 -32806,2,76.0,0.0,2,112,1140.0,0.0,0.0,0,77,2688.452778632401,0.0,1575.678619436561,3054.0,196.11727847768185,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114336,2,1,4,0,2,,212.0,,11,0.0,0.0,4.0,1.0,1.0,3,3,1624.67791239192,1140.0,33896.21406069579,0,5,0,1,90.0,9,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09009855774840803,33896.21406069579,9,5,9,9_1,9_1,9_0_1 -32807,2,34.0,0.0,7,112,0.0,0.0,0.0,46,22,0.0,0.0,0.0,1554.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,116509,2,2,5,0,2,,830.0,1400.0,43,2.0,0.0,3.0,3.0,1.8,4,2,1577.59022709203,0.0,47401.060392764295,1,1,2,3,72.0,9,3,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03278407670890873,26333.92244042461,7,4,7,7_1,7_1,7_0_0 -32808,2,27.0,0.0,5,112,480.0,0.0,0.0,43,38,0.0,0.0,663.4436292364467,600.0,206.439240502823,0.0,71,2,2,2,2,1,2,2,2,2,20.0,2,,3,111634,1,2,0,0,1,,0.0,690.0,43,2.0,0.0,1.0,2.0,1.5,3,2,2128.15727201479,480.0,31794.50380632158,1,1,2,3,40.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.018871186153900734,21196.335870881052,5,3,5,5_0,5_1,5_0_0 -32809,2,58.0,0.0,5,112,636.0,0.0,0.0,0,47,0.0,0.0,879.0628087382918,676.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,103575,2,2,0,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,2044.61626398383,636.0,34046.42597612528,0,4,0,1,32.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019855241207227984,34046.42597612528,9,5,9,9_0,9_1,9_0_0 -32810,1,38.0,212.0,5,112,400.0,0.0,0.0,85,46,0.0,0.0,552.8696910303722,500.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,122859,2,1,0,0,2,,0.0,625.0,42,1.0,1.0,2.0,2.0,1.5,2,2,2508.43106137142,400.0,24541.420012473693,6,1,2,3,30.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.020373719195786736,16360.946674982462,4,2,4_1,4_0_1,4_1_1,4_0_0 -32811,1,72.0,225.0,7,112,720.0,0.0,0.0,0,86,0.0,0.0,995.16544385467,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,129602,1,1,2,0,1,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,2,2,2171.9538685056,720.0,16551.613795074292,0,5,2,3,45.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04350028999675365,16551.613795074292,4,2,4_1,4_1_1,4_1_1,4_0_0 -32812,2,36.0,0.0,2,112,565.0,0.0,0.0,21,38,0.0,621.1035028916747,780.9284385804008,1165.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,2,122249,2,1,2,0,1,,591.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1629.4715958447,565.0,64307.236217911035,1,1,1,2,125.0,9,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01811615719345004,35726.242343283906,9,5,9,9_1,9_1,9_0_1 -32813,2,42.0,0.0,9,112,490.0,0.0,0.0,0,37,0.0,0.0,677.265371512206,490.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,2006.0,6,104393,2,1,0,0,1,,192.0,750.0,12,1.0,0.0,2.0,1.0,1.0,3,2,2421.46985721503,490.0,77561.77996311655,0,4,3,4,50.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.006317544546205783,77561.77996311655,10,5,10,10_0,10_1,10_0_0 -32814,2,63.0,0.0,2,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1345.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,104825,2,1,0,0,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,2176.8505548223,0.0,26186.62368376821,0,5,0,1,82.0,9,3,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05136210059923452,26186.62368376821,7,4,7,7_0,7_1,7_0_1 -32815,2,72.0,0.0,7,112,550.0,0.0,0.0,0,75,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,5,111077,2,2,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,2632.41810249876,550.0,16773.433173095873,0,5,0,1,29.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.032789947908945974,16773.433173095873,4,2,4_0,4_0_0,4_1_0,4_0_0 -32816,2,34.0,0.0,7,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1057.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,5,121781,2,1,0,0,1,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2468.15883710156,0.0,48126.81583810622,0,1,2,3,28.0,9,3,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021962807669546267,48126.81583810622,10,5,10,10_0,10_1,10_0_0 -32817,2,62.0,0.0,5,112,796.0,0.0,0.0,78,78,0.0,0.0,1100.2106851504407,796.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,117504,2,3,0,0,1,,0.0,,41,0.0,6.0,2.0,2.0,1.5,1,1,1938.09310319334,796.0,30908.623723493776,5,5,0,1,20.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02575333043363419,20605.749148995852,5,3,5,5_0,5_1,5_0_0 -32818,0,71.0,0.0,6,112,2040.0,0.0,0.0,0,74,0.0,0.0,2819.635424254898,2040.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124301,2,1,2,0,1,,827.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1441.6839316207,2040.0,51698.63008415958,0,5,0,1,125.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03945945949977994,51698.63008415958,10,5,10,10_1,10_1,10_0_0 -32819,2,67.0,0.0,2,112,1500.0,0.0,0.0,0,74,0.0,155.27587572291867,2073.261341363896,1650.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133539,2,1,1,0,1,,600.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1474.52054320348,1500.0,45338.13551437087,0,5,0,1,130.0,9,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.036393203674575415,45338.13551437087,10,5,10,10_1,10_1,10_0_1 -32820,2,62.0,0.0,6,112,859.0,0.0,0.0,54,64,0.0,548.6414275543126,1187.2876614877243,1389.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,131214,2,1,2,0,1,,537.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1460.07197970373,859.0,51488.0404786636,1,1,0,1,100.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02697713851774171,34325.360319109066,9,5,9,9_1,9_1,9_0_0 -32821,2,36.0,0.0,7,112,900.0,0.0,0.0,37,31,0.0,0.0,1243.9568048183376,3000.0,3612.6867087994024,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124810,2,1,2,0,1,,450.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,1489.65806500231,900.0,143195.3463348955,1,1,1,2,150.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02095040150944434,68188.26015947404,10,5,10,10_1,10_1,10_0_0 -32822,2,54.0,0.0,6,111,1600.0,0.0,0.0,0,78,0.0,0.0,2211.478764121489,1780.0,309.6588607542345,0.0,20,2,2,2,2,1,2,2,2,0,,1,,4,100923,2,2,2,0,1,,159.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1016.67853964449,1600.0,8749.922125846853,0,7,0,1,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.20343038193928203,8749.922125846853,1,1,1_0,1_1_0,1_3_0,1_0_0 -32823,2,48.0,0.0,7,111,1500.0,0.0,0.0,55,62,0.0,269.144851253059,2073.261341363896,1900.0,240.84578058662683,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,133640,2,1,2,0,1,,200.0,,43,2.0,0.0,7.0,4.0,2.5,2,2,840.717682396155,1500.0,65806.25748159939,1,1,0,1,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028872634194875377,26322.502992639755,7,4,7,7_1,7_3,7_0_0 -32824,2,72.0,0.0,6,111,1472.0,0.0,0.0,0,77,0.0,207.03450096389156,2034.5604629917698,2872.0,2064.39240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,122873,2,2,2,0,1,,206.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,994.508149447366,1472.0,26418.660064961226,0,5,0,1,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10871103958103846,26418.660064961226,7,4,7,7_1,7_3,7_0_0 -32825,2,51.0,0.0,7,111,1200.0,0.0,0.0,43,47,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,5,111748,2,1,1,0,1,,600.0,,43,3.0,1.0,6.0,4.0,2.5,2,2,975.057924730359,1200.0,49146.64095127897,1,1,0,1,164.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024416724658550073,19658.656380511587,5,3,5,5_1,5_3,5_0_0 -32826,2,70.0,0.0,2,111,450.0,0.0,0.0,78,75,0.0,621.1035028916747,621.9784024091688,1110.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100555,1,1,2,0,2,,150.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,876.465990142723,450.0,39702.69560441905,6,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02795779941643189,26468.46373627937,7,4,7,7_1,7_3,7_0_1 -32827,2,39.0,0.0,1,111,800.0,0.0,0.0,0,62,0.0,103.51725048194578,1105.7393820607444,945.0,77.41471518855863,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,126565,1,2,0,0,1,,0.0,258.0,12,1.0,0.0,5.0,1.0,1.0,4,4,1755.25361757282,800.0,24010.658415347858,0,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03935752129962194,24010.658415347858,6,3,6,6_0,6_3,6_1_0 -32828,1,83.0,210.0,1,111,900.0,0.0,0.0,0,77,0.0,77.63793786145933,1243.9568048183376,1035.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119531,2,2,3,0,1,,200.0,559.0,11,0.0,3.0,4.0,1.0,1.0,3,2,1082.85017502441,900.0,9832.249564884685,0,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.10526583903000622,9832.249564884685,2,1,2_1,2_1_1,2_3_1,2_1_0 -32829,2,69.0,0.0,6,111,455.0,900.0,0.0,78,78,0.0,67.28621281326475,628.8892735470484,1420.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,0,,1,,4,120238,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,960.242934067522,455.0,25591.158592678028,5,5,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05548791372057227,17060.772395118685,4,2,4_0,4_1_0,4_3_0,4_0_0 -32830,2,79.0,0.0,2,111,207.0,502.0,0.0,0,78,0.0,0.0,286.1100651082176,709.0,0.0,910.4537562254194,31,0,0,0,0,0,0,0,0,0,,2,,2,120225,2,1,0,0,1,,0.0,700.0,11,0.0,1.0,3.0,1.0,1.0,3,3,1644.26262573804,207.0,17458.99350537415,0,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04060944290870827,17458.99350537415,4,2,4_0,4_0_0,4_3_0,4_0_1 -32831,2,45.0,0.0,5,111,676.0,859.0,0.0,52,21,0.0,0.0,934.3497778413291,1535.0,0.0,1557.9278418279587,71,0,0,0,0,0,0,0,0,0,,2,,3,108494,2,1,0,0,1,,340.0,,43,3.0,1.0,5.0,3.0,2.0,2,2,1420.34955305443,676.0,11914.30513033467,1,1,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.12883672049759584,5957.152565167335,1,1,1_0,1_0_0,1_3_0,1_0_0 -32832,2,67.0,0.0,2,111,0.0,0.0,240.0,77,74,0.0,0.0,122.61920036100601,360.0,206.439240502823,274.37898591663156,71,0,0,0,0,0,0,0,0,0,,2,,2,117166,2,1,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,1357.54825795719,0.0,31764.674207926873,6,5,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01133334463446699,21176.449471951248,5,3,5,5_0,5_3,5_0_1 -32833,1,31.0,35.0,2,111,470.0,0.0,0.0,64,37,0.0,0.0,649.6218869606873,470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,122604,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,3.0,1.8,1,1,1358.52628733084,470.0,39805.01051391155,4,1,1,2,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.011807558745292596,22113.894729950858,6,3,6,6_0,6_3,6_0_1 -32834,2,44.0,0.0,2,111,1000.0,0.0,0.0,37,52,1493.5848770180007,0.0,1382.1742275759307,2300.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,119487,2,2,1,0,1,,400.0,,43,2.0,0.0,6.0,5.0,3.0,1,1,959.35018480571,1000.0,68254.84453457924,4,1,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03369724179555892,22751.61484485975,6,3,6,6_1,6_3,6_0_1 -32835,2,65.0,0.0,5,111,700.0,0.0,0.0,0,75,0.0,51.75862524097289,967.5219593031513,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109963,2,1,1,0,1,,188.0,,11,0.0,0.0,4.0,1.0,1.0,3,2,1082.8035274775,700.0,15681.922703535693,0,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047825768190459375,15681.922703535693,3,2,3_0,3_1_0,3_3_0,3_0_0 -32836,2,89.0,0.0,2,111,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,131914,2,1,1,0,1,,270.0,,11,0.0,1.0,5.0,1.0,1.0,4,4,1122.31853220625,1000.0,49716.976720074694,0,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02011385377736013,49716.976720074694,10,5,10,10_1,10_3,10_0_1 -32837,2,73.0,0.0,5,111,480.0,0.0,0.0,75,75,1859.5131718874109,0.0,663.4436292364467,1845.0,206.439240502823,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,113326,1,1,3,0,2,,140.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,857.004183982799,480.0,78247.91972616839,6,5,0,1,110.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023578901604753823,52165.27981744559,10,5,10,10_1,10_3,10_0_0 -32838,2,86.0,0.0,6,111,444.0,0.0,0.0,0,78,0.0,0.0,613.6853570437131,444.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,117696,2,3,3,0,1,,253.0,475.0,11,0.0,0.0,2.0,1.0,1.0,3,2,1191.24581764388,444.0,19154.911627776022,0,5,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023179433485674115,19154.911627776022,5,3,5,5_1,5_3,5_0_0 -32839,2,47.0,0.0,5,111,1540.0,0.0,0.0,67,37,0.0,0.0,2128.548310466933,1540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102432,2,1,2,0,1,,150.0,,43,3.0,1.0,6.0,3.0,2.0,1,1,991.03354773034,1540.0,68065.87468920296,1,4,1,2,155.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02262514082176754,34032.93734460148,9,5,9,9_1,9_3,9_0_0 -32840,2,54.0,0.0,5,111,750.0,900.0,0.0,64,54,0.0,0.0,1036.630670681948,1650.0,0.0,1632.287610762704,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,130102,1,1,1,0,1,,600.0,,43,2.0,3.0,4.0,2.0,1.5,1,1,912.04946545822,750.0,57732.95314942094,1,1,1,2,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028579864877682073,38488.63543294729,9,5,9,9_1,9_3,9_0_0 -32841,2,68.0,0.0,5,111,391.0,400.0,0.0,77,78,0.0,0.0,540.4301229821889,791.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,1,,3,119471,2,1,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,912.04946545822,391.0,36021.55306967687,5,5,0,1,93.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021959075403272046,24014.368713117914,6,3,6,6_1,6_3,6_0_0 -32842,2,40.0,0.0,9,111,1300.0,0.0,0.0,67,21,0.0,0.0,1796.8264958487098,1300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,100919,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,1,1,921.83413601158,1300.0,43607.94654294699,1,1,1,2,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029811080389206213,18959.97675780304,5,3,5,5_1,5_3,5_0_0 -32843,2,66.0,0.0,5,111,380.0,1000.0,0.0,0,77,0.0,0.0,525.2262064788536,1380.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,0,,1,,3,101689,2,1,2,0,2,,108.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,987.949113494693,380.0,40093.31510921908,0,5,0,1,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03441970304128535,40093.31510921908,9,5,9,9_1,9_3,9_0_0 -32844,2,66.0,0.0,5,111,450.0,560.0,0.0,75,74,0.0,67.28621281326475,621.9784024091688,1075.0,0.0,1015.6456244745714,70,0,0,0,0,0,0,0,0,0,,1,,3,117050,2,2,1,0,1,,340.0,,41,0.0,3.0,6.0,2.0,1.5,1,1,876.465990142723,450.0,47097.34833761306,5,5,0,1,94.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022825064211555186,31398.232225075375,8,4,8,8_1,8_3,8_0_0 -32845,2,39.0,0.0,5,111,440.0,1205.0,0.0,85,52,0.0,362.31037668681023,608.1566601334094,1995.0,0.0,2185.451745521176,43,2,2,2,1,2,2,2,2,3,1.0,1,,3,109540,2,3,3,0,2,,440.0,400.0,42,1.0,0.0,4.0,4.0,2.1,1,1,900.785610214086,440.0,25566.75931293357,6,1,2,3,91.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,1,0,0.07803100798116328,12174.647291873127,2,1,2_0,2_1_0,2_3_0,2_0_0 -32846,2,34.0,0.0,2,111,600.0,0.0,0.0,0,56,0.0,0.0,829.3045365455583,600.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,2,,2,125357,2,1,0,0,1,,0.0,194.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1358.60386126701,600.0,16413.0,0,1,2,3,36.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03655638822884299,16413.0,4,2,4_0,4_0_0,4_3_0,4_0_1 -32847,2,53.0,0.0,2,111,260.0,0.0,0.0,0,64,0.0,0.0,359.36529916974195,303.0,73.97406118017824,0.0,50,2,2,1,1,2,2,2,2,2,10.0,8,,2,130459,2,3,0,0,1,,461.0,205.0,12,1.0,3.0,1.0,1.0,1.0,2,2,1536.58316053715,260.0,30360.42675219714,0,1,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.009980096869951683,30360.42675219714,8,4,8,8_0,8_3,8_0_1 -32848,2,71.0,0.0,5,111,450.0,0.0,0.0,0,77,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,119113,2,2,0,1,2,,0.0,241.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1363.63951718937,450.0,11131.689864939215,0,5,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04042512910976228,11131.689864939215,2,1,2_0,2_0_0,2_3_0,2_0_0 -32849,2,44.0,0.0,2,111,900.0,0.0,0.0,68,63,0.0,0.0,1243.9568048183376,1080.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106139,2,1,1,0,1,,380.0,532.0,43,2.0,0.0,4.0,4.0,2.3,1,1,904.119557001272,900.0,30797.44395963368,1,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03506784528662703,13390.193025927689,3,2,3_0,3_1_0,3_3_0,3_0_1 -32850,2,70.0,0.0,5,111,1000.0,0.0,0.0,78,75,0.0,0.0,1382.1742275759307,1090.0,154.82943037711726,0.0,70,2,2,2,1,1,2,2,2,0,,1,,3,123655,1,1,3,0,2,,600.0,,41,1.0,1.0,6.0,3.0,2.0,2,2,1192.03773120908,1000.0,52997.75479765193,5,5,0,1,125.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.020566908997591962,26498.877398825964,7,4,7,7_1,7_3,7_0_0 -32851,2,63.0,0.0,2,111,3500.0,0.0,0.0,85,74,0.0,0.0,4837.609796515757,3500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,121464,2,2,2,0,1,,1190.0,,41,0.0,0.0,6.0,5.0,2.6,1,1,835.582374047191,3500.0,85214.97991848388,6,5,0,1,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04107259079739359,32774.99227633995,8,4,8,8_1,8_3,8_0_1 -32852,2,70.0,0.0,2,111,310.0,0.0,0.0,0,77,0.0,0.0,428.47401054853844,1310.0,1720.3270041901917,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108470,2,1,2,0,1,,90.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1020.09672234245,310.0,18391.094678918023,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07123012647537898,18391.094678918023,4,2,4_0,4_1_0,4_3_0,4_0_1 -32853,2,38.0,0.0,2,111,0.0,0.0,0.0,52,55,0.0,0.0,0.0,935.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,113882,2,1,1,0,1,,305.0,1200.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1132.23665873776,0.0,29007.668437907734,1,1,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032232856011899444,19338.445625271823,5,3,5,5_1,5_3,5_0_1 -32854,2,39.0,0.0,1,111,3000.0,0.0,0.0,62,53,0.0,0.0,4146.522682727792,3000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,132630,2,1,2,0,1,,494.0,,43,2.0,0.0,3.0,3.0,1.8,2,1,1122.43591188635,3000.0,51190.65530395311,1,1,1,2,83.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05860444610812259,28439.25294664062,8,4,8,8_1,8_3,8_1_0 -32855,2,78.0,0.0,7,111,0.0,0.0,0.0,77,72,0.0,0.0,0.0,1346.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,109704,2,1,2,0,1,,154.0,,41,0.0,4.0,3.0,2.0,1.5,3,3,1019.25865255211,0.0,36683.131329017546,5,5,0,1,85.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03669261459517962,24455.420886011696,7,4,7,7_1,7_3,7_0_0 -32856,2,35.0,0.0,2,111,930.0,0.0,0.0,0,47,0.0,0.0,1285.4220316456153,965.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,114130,2,2,1,0,1,,250.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1032.63445447995,930.0,37966.51495981004,0,1,1,2,108.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02541713404618553,37966.51495981004,9,5,9,9_1,9_3,9_0_1 -32857,2,67.0,0.0,1,111,820.0,1800.0,0.0,72,77,0.0,0.0,1133.3828666122631,2620.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,,1,123848,2,1,2,1,1,,272.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,920.904369679658,820.0,23414.198633255997,5,5,0,1,82.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11189791463880054,15609.465755503998,3,2,3_0,3_1_0,3_3_0,3_1_0 -32858,1,25.0,68.0,1,111,0.0,0.0,0.0,54,63,0.0,0.0,0.0,70.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,127205,2,1,2,1,1,436.0,0.0,500.0,43,2.0,0.0,4.0,2.0,1.5,1,1,920.904369679658,0.0,27168.43853691953,4,1,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0025765190702762004,18112.292357946353,4,2,4_1,4_1_1,4_3_1,4_1_0 -32859,2,28.0,0.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1810.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,105079,1,3,3,0,1,,227.0,450.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1179.52632669153,0.0,18023.773210758787,0,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10042292359291179,18023.773210758787,4,2,4_0,4_1_0,4_3_0,4_1_0 -32860,1,31.0,50.0,7,111,360.0,270.0,0.0,0,47,0.0,0.0,497.582721927335,630.0,0.0,489.6862832288112,71,2,2,2,2,2,2,2,1,2,10.0,2,,5,121741,1,3,0,0,1,,160.0,389.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1313.59049768795,360.0,21571.651739353867,0,1,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.02920499587199762,21571.651739353867,6,3,6,6_0,6_3,6_0_0 -32861,1,61.0,36.0,1,111,710.0,0.0,0.0,77,77,672.1131946581003,0.0,981.3437015789107,1230.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114881,1,2,5,0,2,,170.0,600.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1101.2537911509,710.0,21147.463928988916,5,5,2,3,80.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05816300262434389,14098.309285992611,3,2,3_1,3_1_1,3_3_1,3_1_0 -32862,2,50.0,0.0,1,111,510.0,0.0,0.0,85,47,2240.377315527001,0.0,704.9088560637246,2010.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,125434,2,1,2,0,1,,0.0,,42,1.0,1.0,7.0,4.0,2.3,1,1,931.432879557384,510.0,39677.54989413291,6,1,0,1,200.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050658369918582524,17251.108649623005,4,2,4_0,4_1_0,4_3_0,4_1_0 -32863,2,81.0,0.0,1,111,543.0,0.0,0.0,71,71,0.0,0.0,750.5206055737303,3363.0,4851.322151816341,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110518,2,1,1,0,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1029.5966002601,543.0,21943.806340076375,5,5,0,1,95.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15325508928950451,14629.204226717584,3,2,3_0,3_1_0,3_3_0,3_1_0 -32864,2,45.0,0.0,8,111,1116.0,0.0,0.0,45,38,1344.2263893162005,0.0,1542.5064379747384,2156.0,240.84578058662683,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,133632,2,1,2,0,1,,280.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,828.888820904072,1116.0,67906.85973815639,1,1,1,2,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0317493697737367,29524.721625285387,8,4,8,8_1,8_3,8_0_0 -32865,2,42.0,0.0,5,111,1600.0,0.0,0.0,46,64,0.0,0.0,2211.478764121489,1664.0,110.10092826817227,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,3,117965,2,2,5,0,1,,190.0,807.0,43,2.0,1.0,3.0,4.0,2.1,2,2,1088.31021027905,1600.0,51577.96683749,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032261837796803264,24560.93658928095,7,4,7,7_1,7_3,7_0_0 -32866,2,45.0,0.0,2,111,420.0,0.0,0.0,0,85,0.0,517.5862524097289,580.5131755818909,995.0,129.02452531426437,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,124188,2,1,2,0,1,,0.0,,21,1.0,0.0,4.0,2.0,1.5,1,1,962.476353728274,420.0,7313.393198788794,0,7,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13605175777569115,4875.595465859195,1,1,1_0,1_1_0,1_3_0,1_0_1 -32867,2,69.0,0.0,6,111,1378.0,0.0,0.0,75,11,0.0,0.0,1904.6360855996322,1478.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,114808,2,1,2,0,1,,0.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,894.496766195825,1378.0,66135.28989803894,5,1,0,1,139.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022348129149787337,44090.193265359296,10,5,10,10_1,10_3,10_0_0 -32868,2,80.0,0.0,6,111,2477.0,0.0,0.0,0,74,0.0,0.0,3423.64556170558,2582.0,180.63433543997013,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,121203,2,1,2,0,2,,220.0,,11,0.0,1.0,6.0,1.0,1.0,2,2,1145.40701977114,2477.0,44089.68752211324,0,5,0,1,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05856244725492768,44089.68752211324,10,5,10,10_1,10_3,10_0_0 -32869,1,47.0,59.0,1,211,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1036.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,101651,2,3,0,0,1,,0.0,400.0,12,1.0,1.0,2.0,1.0,1.0,2,2,1650.81302226965,0.0,14779.554965871823,0,4,2,3,35.0,1,3,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.0700968332532527,14779.554965871823,3,2,3_1,3_0_1,3_1_1,3_1_0 -32870,2,43.0,0.0,1,211,0.0,0.0,0.0,0,63,0.0,0.0,0.0,623.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,1,126178,1,3,0,0,2,,0.0,375.0,12,1.0,1.0,1.0,1.0,1.0,2,2,1680.90547679742,0.0,19555.684194053887,0,1,2,3,33.0,1,3,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03185774498186209,19555.684194053887,5,3,5,5_0,5_1,5_1_0 -32871,0,84.0,0.0,2,211,0.0,0.0,0.0,74,72,0.0,0.0,0.0,2328.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,108814,2,1,1,0,1,,127.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1150.78852811623,0.0,86813.41993401198,5,5,0,1,142.0,1,3,9,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026816130521865666,57875.61328934132,10,5,10,10_1,10_1,10_0_1 -32872,1,58.0,222.0,1,211,134.0,760.0,0.0,0,42,0.0,0.0,185.2113464951747,894.0,0.0,1378.376204644061,60,0,0,0,0,0,0,0,0,0,,1,,1,104141,1,2,5,0,2,,106.0,297.0,12,1.0,0.0,2.0,1.0,1.0,3,2,1160.50276277773,134.0,5793.135405179078,0,4,2,3,47.0,1,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.15432057728199514,5793.135405179078,1,1,1_1,1_1_1,1_1_1,1_1_0 -32873,2,63.0,0.0,7,211,350.0,0.0,0.0,0,72,0.0,434.77245202417225,483.76097965157567,840.0,120.42289029331342,0.0,71,2,2,2,2,1,2,2,2,0,,1,,5,124595,2,1,2,0,1,,79.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1040.30093393324,350.0,9427.930145324606,0,5,0,1,95.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.08909696901143921,9427.930145324606,1,1,1_0,1_1_0,1_1_0,1_0_0 -32874,2,90.0,0.0,2,211,72.0,0.0,0.0,0,77,0.0,0.0,99.516544385467,72.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131614,2,2,2,0,2,,220.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1136.88025200955,72.0,25157.579042319252,0,5,0,1,90.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0028619605995824945,25157.579042319252,7,4,7,7_1,7_1,7_0_1 -32875,2,81.0,0.0,1,211,900.0,1400.0,0.0,77,72,0.0,0.0,1243.9568048183376,2300.0,0.0,2539.1140611864284,71,0,0,0,0,0,0,0,0,0,,1,,1,131716,2,2,2,0,1,,500.0,,41,0.0,4.0,6.0,2.0,1.5,1,1,1036.74033423542,900.0,43780.40343668285,5,5,0,1,154.0,1,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05253492018012949,29186.935624455233,8,4,8,8_1,8_1,8_1_0 -32876,2,84.0,0.0,1,211,580.0,0.0,0.0,0,72,2240.377315527001,0.0,801.6610519940398,2160.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130156,2,1,2,0,2,,200.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,999.060493912597,580.0,52809.0,0,5,0,1,150.0,1,3,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04090211895699597,52809.0,10,5,10,10_1,10_1,10_1_0 -32877,2,63.0,0.0,2,211,1000.0,0.0,0.0,77,38,0.0,0.0,1382.1742275759307,1060.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,117140,2,1,2,0,1,,350.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,810.211436002844,1000.0,86383.04395710045,7,1,0,1,122.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.012270926693975002,57588.6959714003,10,5,10,10_1,10_1,10_0_1 -32878,2,35.0,0.0,9,211,600.0,0.0,0.0,0,54,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,2009.0,6,106515,1,2,1,0,1,,766.0,,32,1.0,0.0,4.0,2.0,1.3,3,2,904.564192431776,600.0,6335.02493144205,0,4,1,2,90.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.09471154517831096,4873.096101109269,1,1,1_0,1_1_0,1_1_0,1_0_0 -32879,2,66.0,0.0,8,211,549.0,588.0,0.0,0,77,0.0,362.31037668681023,758.8136509391859,1487.0,0.0,1066.4279056983,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,121574,2,1,1,0,1,,190.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1061.40282452484,549.0,16876.614460222114,0,5,0,1,116.0,1,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08811008887504262,16876.614460222114,4,2,4_0,4_1_0,4_1_0,4_0_0 -32880,2,65.0,0.0,6,211,1440.0,0.0,0.0,77,72,746.7924385090004,72.46207533736204,1990.33088770934,2010.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,109835,2,1,2,0,1,,495.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,927.172325749076,1440.0,47232.81301546858,5,5,0,1,88.0,1,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04255516179698491,31488.542010312387,8,4,8,8_1,8_1,8_0_0 -32881,2,61.0,0.0,7,211,1200.0,690.0,0.0,77,74,0.0,0.0,1658.6090730911167,1890.0,0.0,1251.4205015847397,41,0,0,0,0,0,0,0,0,0,,1,,5,101021,1,1,3,0,1,,370.0,486.0,41,0.0,4.0,4.0,2.0,1.5,1,1,876.45837339353,1200.0,26430.57906199392,7,5,2,3,80.0,1,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07150808143729782,17620.386041329282,4,2,4_0,4_1_0,4_1_0,4_0_0 -32882,2,41.0,0.0,9,211,800.0,0.0,0.0,0,85,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,2007.0,6,118616,2,2,1,0,1,,300.0,,31,0.0,0.0,5.0,3.0,1.6,3,3,1072.35901691363,800.0,8737.346910165343,0,6,0,1,90.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09156097477018468,5460.841818853339,1,1,1_0,1_1_0,1_1_0,1_0_0 -32883,2,73.0,0.0,2,211,800.0,0.0,0.0,38,74,2240.377315527001,0.0,1105.7393820607444,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109483,2,1,1,0,1,,0.0,,42,1.0,2.0,6.0,4.0,2.3,2,2,925.132494851624,800.0,64304.714366316344,4,5,0,1,141.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03576720653633399,27958.571463615805,7,4,7,7_1,7_1,7_0_1 -32884,2,35.0,0.0,1,211,1000.0,0.0,0.0,0,62,0.0,41.40690019277831,1382.1742275759307,1075.0,60.21144514665671,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,105098,2,1,2,0,1,,0.0,460.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1392.40437680772,1000.0,20916.58748452375,0,1,2,3,48.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.051394616870242146,20916.58748452375,5,3,5,5_1,5_1,5_1_0 -32885,2,42.0,0.0,2,211,1200.0,0.0,0.0,43,43,0.0,0.0,1658.6090730911167,1260.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,,2,121334,1,2,0,0,1,,340.0,676.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1597.58146939444,1200.0,59140.27103838209,1,1,2,3,70.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.021305279429346187,32855.70613243449,8,4,8,8_0,8_1,8_0_1 -32886,2,48.0,0.0,1,211,3267.0,0.0,0.0,22,22,2389.735803228801,0.0,4515.563201490565,5548.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123270,2,1,2,0,1,,900.0,,43,2.0,0.0,11.0,6.0,3.3,4,4,963.485589936443,3267.0,216296.47731110512,1,1,1,2,300.0,1,3,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025649978533955318,65544.38706397125,10,5,10,10_1,10_1,10_1_0 -32887,1,76.0,64.0,6,211,700.0,0.0,0.0,72,77,0.0,0.0,967.5219593031513,739.0,67.09275316341747,0.0,70,2,2,2,2,1,2,2,2,0,,1,,4,118826,1,2,3,0,2,,250.0,615.0,41,0.0,3.0,5.0,2.0,1.5,1,1,1152.2378048067,700.0,19405.328143218092,5,5,2,3,80.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.03808232432587185,12936.885428812062,2,1,2_1,2_1_1,2_1_1,2_0_0 -32888,2,56.0,0.0,2,211,1200.0,0.0,0.0,0,63,0.0,0.0,1658.6090730911167,1276.0,130.74485231845458,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108239,2,3,0,0,1,,230.0,319.0,12,1.0,3.0,3.0,1.0,1.0,2,2,1304.56413820826,1200.0,13086.79084004207,0,4,2,3,70.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09750289552239058,13086.79084004207,2,1,2_0,2_0_0,2_1_0,2_0_1 -32889,2,50.0,0.0,7,211,500.0,0.0,0.0,69,43,0.0,0.0,691.0871137879653,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,122127,2,3,3,0,1,,230.0,,43,3.0,1.0,4.0,3.0,2.0,1,1,919.170500089479,500.0,40342.50935121772,4,1,0,1,80.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012393874551705538,20171.25467560886,5,3,5,5_1,5_1,5_0_0 -32890,2,59.0,0.0,1,211,500.0,0.0,0.0,0,65,0.0,155.27587572291867,691.0871137879653,685.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,122721,2,1,0,0,1,,110.0,,12,1.0,2.0,4.0,1.0,1.0,2,2,1369.07247144665,500.0,40876.231068301866,0,1,1,2,80.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.016757905073376354,40876.231068301866,9,5,9,9_0,9_1,9_1_0 -32891,2,63.0,0.0,6,211,0.0,0.0,0.0,72,75,0.0,0.0,0.0,2651.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,111229,2,1,2,0,1,,335.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,882.190841017274,0.0,29821.192995510093,7,5,0,1,100.0,1,3,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08889651062582027,19880.79533034006,5,3,5,5_1,5_1,5_0_0 -32892,0,82.0,0.0,5,211,1100.0,0.0,0.0,71,71,0.0,82.81380038555662,1520.3916503335236,1367.0,321.7011497835658,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,124691,2,1,2,0,1,,180.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,995.200370528154,1100.0,31765.388519681743,5,5,0,1,100.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043034260360234874,21176.92567978783,5,3,5,5_1,5_1,5_0_0 -32893,2,51.0,0.0,1,211,2500.0,0.0,0.0,11,11,0.0,931.655254337512,3455.435568939826,3592.0,330.3027848045168,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,115055,1,1,1,0,2,,0.0,,43,2.0,1.0,7.0,4.0,2.5,2,2,920.190678481015,2500.0,8452.83811251729,1,1,0,1,150.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.42494603021922633,3381.1352450069157,1,1,1_0,1_1_0,1_1_0,1_1_0 -32894,0,105.0,0.0,1,211,1200.0,0.0,0.0,0,71,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113567,2,1,2,0,2,,220.0,,21,0.0,0.0,2.0,2.0,1.5,1,1,999.673010139625,1200.0,35192.3782750053,0,5,5,0,60.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034098292267228686,23461.5855166702,6,3,6,6_1,6_1,6_1_0 -32895,0,62.0,0.0,2,211,800.0,0.0,0.0,90,71,0.0,218.42139851690558,1105.7393820607444,1081.0,120.42289029331342,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,109230,1,2,2,0,2,,196.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,971.928150475397,800.0,10634.00744634417,6,5,0,1,80.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10165499746491463,7089.33829756278,1,1,1_0,1_1_0,1_1_0,1_0_1 -32898,2,53.0,0.0,1,211,1400.0,0.0,0.0,85,21,0.0,0.0,1935.0439186063027,1550.0,258.04905062852873,0.0,42,0,0,0,0,0,0,0,0,1,1.0,1,,1,126803,2,1,2,0,1,,300.0,750.0,42,1.0,1.0,4.0,3.0,2.0,2,2,1173.49759659288,1400.0,21334.888010133916,6,1,2,3,100.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07265095552710478,10667.444005066958,2,1,2_0,2_1_0,2_1_0,2_1_0 -32899,2,78.0,0.0,5,211,2500.0,0.0,0.0,0,71,0.0,0.0,3455.435568939826,2555.0,94.61798523046055,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,110177,2,1,2,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,4,3,1171.98262634859,2500.0,17146.599613554572,0,5,0,1,120.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14900913636428792,17146.599613554572,4,2,4_0,4_1_0,4_1_0,4_0_0 -32900,2,40.0,0.0,8,211,900.0,0.0,0.0,67,46,896.1509262108004,0.0,1243.9568048183376,1738.0,240.84578058662683,0.0,60,0,0,0,0,0,0,0,0,2,7.0,1,2000.0,6,124898,2,1,2,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,905.715873857697,900.0,49385.031046254575,1,1,1,2,102.0,1,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03519285020540272,23516.681450597414,6,3,6,6_1,6_1,6_0_0 -32901,2,75.0,0.0,6,211,1800.0,0.0,0.0,78,71,0.0,331.2552015422265,2487.913609636675,2200.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,108205,2,1,2,0,1,,0.0,,41,0.0,3.0,8.0,2.0,1.5,4,4,1014.24067123139,1800.0,30931.0,5,5,0,1,170.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07112605476706217,20620.666666666668,5,3,5,5_1,5_1,5_0_0 -32902,2,42.0,0.0,7,211,360.0,0.0,0.0,85,68,241.9607500769161,0.0,497.582721927335,702.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,111620,2,1,2,0,1,,0.0,,42,1.0,2.0,3.0,3.0,1.8,2,2,955.923940769231,360.0,10886.604512897451,6,4,0,1,70.0,1,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06448291560222792,6048.113618276361,1,1,1_0,1_1_0,1_1_0,1_0_0 -32903,2,77.0,0.0,2,211,700.0,0.0,0.0,78,78,1194.8679016144006,0.0,967.5219593031513,1704.0,350.9467088547991,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116076,2,1,2,0,2,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,810.211436002844,700.0,13719.870263105255,5,5,0,1,75.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12419942516383017,9146.580175403504,1,1,1_0,1_1_0,1_1_0,1_0_1 -32904,1,60.0,128.0,1,111,500.0,0.0,0.0,63,67,0.0,724.6207533736205,691.0871137879653,1386.0,319.98082277937567,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,113791,1,2,0,0,2,,0.0,111.0,43,2.0,0.0,2.0,2.0,1.5,1,1,2297.71433407616,500.0,7232.063991640554,4,4,2,3,51.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.19164653432298978,4821.375994427036,1,1,1_1,1_0_1,1_2_1,1_1_0 -32905,2,58.0,0.0,2,111,420.0,122.0,0.0,0,64,0.0,0.0,580.5131755818909,778.0,0.0,221.26565390338877,71,2,1,2,2,2,2,2,1,0,,2,,2,101427,2,1,0,1,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,2032.58495284165,420.0,3609.043553484173,0,4,0,1,45.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.21556957916147015,3609.043553484173,1,1,1_0,1_0_0,1_2_0,1_0_1 -32906,2,39.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,1828.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123729,1,1,0,0,1,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,1,1,2125.66976479243,0.0,30211.641289291903,1,1,2,3,55.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06050647770162389,20141.09419286127,5,3,5,5_0,5_2,5_0_1 -32907,1,51.0,40.0,9,111,290.0,0.0,0.0,0,46,0.0,0.0,400.8305259970199,290.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,1.0,2,2005.0,6,114632,2,1,0,0,1,,206.0,553.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2300.86017162301,290.0,14248.653513853405,0,1,2,3,40.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.020352800334294353,14248.653513853405,3,2,3_1,3_0_1,3_2_1,3_0_0 -32908,2,60.0,0.0,2,111,343.0,250.0,0.0,68,52,0.0,0.0,474.08576005854417,593.0,0.0,453.4132252118622,71,1,1,2,1,1,2,2,2,2,25.0,2,,2,132675,2,3,0,1,1,743.0,0.0,399.0,43,2.0,6.0,4.0,2.0,1.5,1,1,1825.12984895556,343.0,33215.63155620176,1,1,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.017853040036183796,22143.754370801176,6,3,6,6_0,6_2,6_0_1 -32909,2,63.0,0.0,6,111,735.0,0.0,0.0,77,75,0.0,310.55175144583734,1015.898057268309,1128.0,159.99041138968784,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,108800,2,1,2,0,1,,232.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1481.15669692342,735.0,76255.13195023399,5,5,0,1,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014792447028170655,50836.75463348933,10,5,10,10_1,10_2,10_0_0 -32910,2,60.0,0.0,7,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,819.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,1.0,2,,5,116787,2,1,0,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,1,1,1688.0698064825,0.0,38534.971596377305,6,1,0,1,60.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021253421660157513,25689.981064251537,7,4,7,7_0,7_2,7_0_0 -32911,2,58.0,0.0,7,111,0.0,1071.0,0.0,0,43,0.0,0.0,0.0,2799.0,0.0,1942.4222568076177,43,0,0,0,0,0,0,0,0,0,,1,,5,128827,2,1,2,0,1,,447.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1546.88578389894,0.0,11630.990539112669,0,1,0,1,85.0,6,5,9,0,1,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.24065018285308798,11630.990539112669,2,1,2_0,2_1_0,2_2_0,2_0_0 -32912,2,89.0,0.0,2,111,720.0,479.0,0.0,0,77,0.0,0.0,995.16544385467,1199.0,0.0,868.739739505928,31,0,0,0,0,0,0,0,0,0,,2,,2,121733,2,1,0,0,2,,0.0,477.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2475.91103874706,720.0,22248.268905755718,0,6,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05389183334123644,22248.268905755718,6,3,6,6_0,6_2,6_0_1 -32913,1,27.0,66.0,6,111,1430.0,0.0,0.0,0,56,0.0,724.6207533736205,1976.5091454335807,2295.0,283.85395569138166,0.0,71,2,2,2,2,1,2,1,2,0,,1,,4,130293,1,2,2,0,1,,970.0,,32,1.0,3.0,4.0,4.0,2.1,3,3,387.841831792822,1430.0,11654.976571522788,0,4,1,2,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,1,0,1,0.19691159273605863,5549.9888435822795,1,1,1_1,1_1_1,1_2_1,1_0_0 -32914,1,32.0,252.0,2,111,372.0,0.0,0.0,63,46,0.0,0.0,514.1688126582462,564.0,330.3027848045168,0.0,20,2,2,2,1,1,2,1,2,2,1.0,2,,2,124662,2,2,0,2,1,,511.0,315.0,43,2.0,0.0,3.0,4.0,2.1,1,1,516.963175340011,372.0,35875.29627367606,1,1,2,3,63.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.015721124522498842,17083.474416036217,4,2,4_1,4_0_1,4_2_1,4_0_1 -32915,2,55.0,0.0,2,111,270.0,162.0,0.0,56,68,0.0,0.0,373.1870414455012,432.0,0.0,293.8117699372867,10,0,0,0,0,0,0,0,0,0,,2,,2,110840,1,1,0,1,1,848.0,0.0,329.0,43,2.0,1.0,3.0,4.0,2.5,1,1,495.119939363071,270.0,31718.750753429136,1,4,2,3,75.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013619704109982837,12687.500301371654,2,1,2_0,2_0_0,2_2_0,2_0_1 -32916,1,24.0,413.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,577.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,100014,1,2,0,1,2,963.0,0.0,364.0,31,0.0,0.0,4.0,4.0,1.9,3,3,519.192100996944,0.0,10876.139136645323,0,7,2,3,76.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05305191417199652,5724.283756129117,1,1,1_1,1_0_1,1_2_1,1_0_1 -32917,1,44.0,360.0,2,111,360.0,149.0,0.0,63,56,0.0,0.0,497.582721927335,509.0,0.0,270.2342822262699,41,2,1,2,1,1,2,2,2,0,,2,,2,109523,1,3,0,1,2,68.0,0.0,327.0,43,2.0,0.0,3.0,4.0,2.3,1,1,479.022488340509,360.0,11837.560307018854,4,4,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.0429987249736078,5146.765350877763,1,1,1_1,1_0_1,1_2_1,1_0_1 -32918,2,71.0,0.0,2,111,348.0,974.0,0.0,0,74,0.0,0.0,480.99663119642383,1322.0,0.0,1766.4979254254151,71,0,0,0,0,0,0,0,0,0,,2,,2,131629,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,584.416900716701,348.0,32136.474203364443,0,5,0,1,56.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.041137057899823894,32136.474203364443,8,4,8,8_0,8_2,8_0_1 -32919,2,44.0,0.0,2,111,1440.0,0.0,0.0,85,54,1642.9433647198007,652.1586780362584,1990.33088770934,3290.0,206.439240502823,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,112731,2,2,1,0,1,,300.0,,42,1.0,2.0,4.0,3.0,2.0,2,2,1846.3373313242,1440.0,60229.34444729799,7,1,1,2,150.0,6,5,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0546245360993232,30114.672223648995,8,4,8,8_1,8_2,8_0_1 -32920,1,35.0,330.0,6,111,900.0,0.0,0.0,85,67,0.0,0.0,1243.9568048183376,1038.0,237.40512657824647,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,127124,1,1,0,0,1,,0.0,410.0,42,1.0,0.0,3.0,4.0,2.1,2,2,509.288663543556,900.0,24556.153042635557,6,4,2,3,73.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.042270464685481283,11693.406210778836,2,1,2_1,2_0_1,2_2_1,2_0_0 -32921,2,43.0,0.0,2,111,264.0,912.0,0.0,43,35,0.0,0.0,364.89399608004567,1176.0,0.0,1654.0514455728735,42,2,2,2,2,1,2,2,2,2,10.0,2,,2,101917,1,1,0,1,2,,0.0,587.0,43,2.0,0.0,3.0,2.0,1.5,1,1,687.767727002424,264.0,35577.51445628374,1,1,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03305458568346653,23718.342970855825,6,3,6,6_0,6_2,6_0_1 -32922,2,34.0,0.0,1,111,580.0,981.0,0.0,34,38,0.0,0.0,801.6610519940398,1561.0,0.0,1779.1934957313474,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,124706,2,2,2,0,1,,921.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1414.16909936503,580.0,71820.43665210741,1,1,1,2,110.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02173476064426289,29925.18193837809,8,4,8,8_1,8_2,8_1_0 -32923,2,67.0,0.0,2,111,510.0,1525.0,0.0,77,75,0.0,0.0,704.9088560637246,2035.0,0.0,2765.8206737923597,43,0,0,0,0,0,0,0,0,0,,1,,2,123725,2,1,1,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1516.14137317196,510.0,41270.22607104575,5,5,0,1,130.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04930915562460923,27513.484047363832,7,4,7,7_1,7_2,7_0_1 -32924,2,56.0,0.0,7,111,360.0,0.0,0.0,0,45,0.0,144.92415067472407,497.582721927335,526.0,44.72850210894499,0.0,60,2,2,2,1,1,2,2,2,2,10.0,1,,5,105884,2,2,2,0,1,,0.0,250.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1719.28049904868,360.0,20654.675933232716,0,1,2,3,70.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.025466388419761298,20654.675933232716,5,3,5,5_1,5_2,5_0_0 -32925,2,44.0,0.0,8,111,1200.0,0.0,0.0,42,34,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,15.0,1,2001.0,6,123859,2,1,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.5,3,3,1321.58541602184,1200.0,67073.81764290936,1,1,1,2,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.01789073653729708,26829.527057163745,7,4,7,7_1,7_2,7_0_0 -32926,2,32.0,0.0,9,111,1275.0,0.0,0.0,37,37,0.0,0.0,1762.2721401593114,1275.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,75.0,1,2007.0,6,129112,2,1,1,0,1,,620.0,880.0,43,2.0,0.0,3.0,3.0,1.8,4,3,1749.8952307161,1275.0,70418.52764529242,1,1,2,3,75.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01810603036777972,39121.40424738467,9,5,9,9_1,9_2,9_0_0 -32927,2,25.0,0.0,7,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,652.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,128051,2,2,0,0,1,,0.0,440.0,12,1.0,0.0,2.0,1.0,1.0,4,4,2461.44922362506,0.0,12897.403555371275,0,4,2,3,32.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05055281066462924,12897.403555371275,2,1,2_0,2_0_0,2_2_0,2_0_0 -32928,1,35.0,360.0,2,111,400.0,700.0,0.0,53,64,0.0,0.0,552.8696910303722,1100.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,124057,2,2,0,0,1,,0.0,700.0,43,2.0,0.0,3.0,7.0,2.9999999999999996,1,1,689.051146214109,400.0,28163.265493300263,4,1,2,3,85.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03905797075490689,9387.755164433422,1,1,1_1,1_0_1,1_2_1,1_0_1 -32929,2,35.0,0.0,2,111,0.0,0.0,0.0,54,45,0.0,0.0,0.0,2258.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,111173,1,3,0,0,2,,0.0,620.0,43,2.0,0.0,4.0,4.0,2.1,6,5,657.991670609804,0.0,56982.175786915235,4,1,2,3,90.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03962642648893906,27134.369422340587,7,4,7,7_0,7_2,7_0_1 -32930,2,52.0,0.0,5,111,0.0,0.0,1644.0,54,62,0.0,0.0,839.9415224728912,1644.0,0.0,1879.4960535289263,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,112947,1,2,0,0,1,,0.0,762.0,43,2.0,0.0,4.0,4.0,2.3,3,3,657.991670609804,0.0,39167.08799499115,1,1,2,3,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.041974016557223805,17029.168693474414,4,2,4_0,4_0_0,4_2_0,4_0_0 -32931,2,58.0,0.0,2,111,774.0,1984.0,0.0,55,46,0.0,0.0,1069.8028521437702,2758.0,0.0,3598.2873552813385,50,2,2,2,2,1,2,2,2,2,75.0,2,,2,101960,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,4.0,3.0,2.0,3,3,720.821337223665,774.0,35277.51895885296,1,1,2,3,88.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.07818010113514161,17638.75947942648,4,2,4_0,4_0_0,4_2_0,4_0_1 -32932,2,44.0,0.0,5,111,1000.0,1000.0,0.0,46,37,0.0,0.0,1382.1742275759307,2000.0,0.0,1813.6529008474488,70,0,0,0,0,0,0,0,0,0,,1,,3,119978,2,2,2,0,1,,600.0,1137.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,3,528.341808223704,1000.0,65381.46015395022,1,1,2,3,133.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030589711445579638,22545.331087569044,6,3,6,6_1,6_2,6_0_0 -32933,2,74.0,0.0,8,111,442.0,511.0,0.0,74,33,0.0,0.0,610.9210085885613,953.0,0.0,926.7766323330463,71,0,0,0,0,0,0,0,0,2,45.0,2,2002.0,6,112045,2,2,0,0,1,,201.0,,42,1.0,2.0,4.0,2.0,1.5,1,1,2047.78923067392,442.0,89718.68442172352,5,1,0,1,97.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010622090661967518,59812.45628114901,10,5,10,10_0,10_2,10_0_0 -32934,2,43.0,0.0,1,111,1200.0,750.0,0.0,47,45,0.0,0.0,1658.6090730911167,1950.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,105640,2,1,1,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1416.74036965989,1200.0,46864.88138265727,4,1,1,2,160.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04160898187446631,20376.035383764032,5,3,5,5_1,5_2,5_1_0 -32935,2,67.0,0.0,6,111,700.0,700.0,0.0,86,75,0.0,0.0,967.5219593031513,1400.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,1,,4,117475,2,1,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1462.10820871378,700.0,26767.461514824226,6,5,0,1,95.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05230230738259057,17844.974343216152,4,2,4_0,4_1_0,4_2_0,4_0_0 -32936,2,52.0,0.0,8,111,1200.0,0.0,0.0,0,33,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,125722,2,1,3,0,1,,116.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,1556.08781203772,1200.0,107461.01866489425,0,1,1,2,98.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011166839984479138,107461.01866489425,10,5,10,10_1,10_2,10_0_0 -32937,2,75.0,0.0,2,111,1479.0,0.0,0.0,86,74,0.0,0.0,2044.2356825848012,1479.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121396,2,1,2,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1377.83682717833,1479.0,51755.89120655738,6,5,0,1,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028576457008484733,34503.92747103825,9,5,9,9_1,9_2,9_0_1 -32938,2,63.0,0.0,1,111,1300.0,0.0,0.0,0,75,0.0,217.38622601208613,1796.8264958487098,1510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133524,2,1,2,0,1,,508.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,1537.91334764593,1300.0,64756.98255449521,0,5,0,1,150.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023317948743663025,64756.98255449521,10,5,10,10_1,10_3,10_1_0 -32939,2,36.0,0.0,8,111,800.0,800.0,0.0,64,52,0.0,207.03450096389156,1105.7393820607444,1800.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,129889,1,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1408.52578700985,800.0,33978.13733184765,4,1,1,2,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05297524059133351,16180.065396117927,4,2,4_0,4_1_0,4_3_0,4_0_0 -32940,2,83.0,0.0,5,111,250.0,0.0,0.0,0,72,3285.8867294396014,0.0,345.54355689398267,2810.0,619.317721508469,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,111506,1,1,2,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1698.49251129867,250.0,9709.16872159869,0,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.28941715615148067,9709.16872159869,1,1,1_0,1_1_0,1_3_0,1_0_0 -32941,2,60.0,0.0,6,111,1000.0,0.0,0.0,33,47,0.0,0.0,1382.1742275759307,1130.0,223.64251054472493,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,127175,2,1,2,0,1,,400.0,,43,2.0,3.0,5.0,2.0,1.5,1,1,1350.93998060806,1000.0,11578.692164309778,1,4,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09759306007660502,7719.128109539852,1,1,1_0,1_1_0,1_3_0,1_0_0 -32942,2,63.0,0.0,7,111,0.0,0.0,0.0,46,21,0.0,0.0,0.0,803.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,116810,2,1,1,0,1,,195.0,,42,1.0,4.0,5.0,2.0,1.5,1,1,1457.99943780428,0.0,76929.15333979223,4,5,0,1,118.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010438175452850612,51286.10222652816,10,5,10,10_1,10_3,10_0_0 -32943,2,63.0,0.0,9,111,1400.0,0.0,0.0,68,64,0.0,0.0,1935.0439186063027,1480.0,137.62616033521533,0.0,10,0,0,0,0,0,0,0,0,0,,1,2007.0,6,133669,2,1,1,0,1,,844.0,925.0,43,2.0,6.0,4.0,2.0,1.5,2,2,1579.66899259014,1400.0,51921.09510097472,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028504791686726493,34614.063400649815,9,5,9,9_1,9_3,9_0_0 -32944,2,79.0,0.0,1,111,0.0,0.0,0.0,86,78,746.7924385090004,155.27587572291867,0.0,1680.0,258.04905062852873,0.0,70,2,2,2,1,2,2,1,2,0,,1,,1,104045,2,3,3,0,1,,250.0,,41,2.0,1.0,3.0,4.0,2.5,1,1,1325.78029866295,0.0,42753.56910081118,6,5,0,1,48.0,9,7,9,1,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.039294964966284526,17101.427640324473,4,2,4_0,4_1_0,4_3_0,4_1_0 -32945,1,87.0,130.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,866.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,101781,2,2,2,0,2,,110.0,200.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1721.20964017659,0.0,10301.872553930229,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08406238724722095,10301.872553930229,2,1,2_1,2_1_1,2_3_1,2_1_0 -32946,2,39.0,0.0,2,111,1000.0,0.0,0.0,0,31,0.0,41.40690019277831,1382.1742275759307,1100.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,3.0,1,,2,112155,2,1,3,0,1,,120.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,1461.71388384825,1000.0,73642.1336196516,0,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01493710116658627,56647.7950920397,10,5,10,10_1,10_3,10_0_1 -32947,1,43.0,171.0,9,111,500.0,1000.0,0.0,0,55,0.0,0.0,691.0871137879653,1500.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,7.0,1,2008.0,6,129004,2,1,1,0,1,,180.0,370.0,32,2.0,0.0,3.0,3.0,2.0,1,1,1412.62074848821,500.0,22598.019591356468,0,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06637749798985643,11299.009795678234,2,1,2_1,2_1_1,2_3_1,2_0_0 -32948,2,47.0,0.0,7,111,0.0,0.0,2200.0,52,52,0.0,0.0,1124.0093366425551,2200.0,0.0,2515.1407042357896,71,2,2,2,2,2,2,1,2,2,5.0,1,,5,107664,1,1,2,0,1,,800.0,600.0,43,3.0,0.0,5.0,4.0,2.5,2,2,1162.2416998199,0.0,41230.43010974211,1,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.053358647827449514,16492.172043896844,4,2,4_0,4_1_0,4_3_0,4_0_0 -32949,2,76.0,0.0,9,111,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,109608,2,1,0,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1982.06891631636,1000.0,13626.650971795329,0,5,0,1,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07338560311479445,13626.650971795329,3,2,3_0,3_0_0,3_3_0,3_0_0 -32950,2,66.0,0.0,2,111,800.0,0.0,0.0,77,74,4182.037655650402,0.0,1105.7393820607444,3600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119119,2,2,2,0,1,,400.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1553.13670451118,800.0,36761.770768078626,5,5,0,1,95.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09792781807795806,24507.847178719083,7,4,7,7_1,7_3,7_0_1 -32951,2,36.0,0.0,7,111,0.0,0.0,0.0,31,31,0.0,0.0,0.0,1093.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,5,125306,2,1,1,0,1,,421.0,800.0,43,2.0,0.0,3.0,2.0,1.5,3,2,1627.35746776218,0.0,61065.618544740624,1,1,2,3,85.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017898778822639738,40710.412363160416,9,5,9,9_1,9_3,9_0_0 -32952,2,68.0,0.0,2,111,1000.0,800.0,0.0,77,78,0.0,0.0,1382.1742275759307,1800.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,1,,2,100351,2,1,2,0,1,,500.0,,41,1.0,2.0,7.0,3.0,2.0,1,1,1559.43683209727,1000.0,49941.19624742111,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03604238855397761,24970.598123710555,7,4,7,7_1,7_3,7_0_1 -32953,2,58.0,0.0,6,111,580.0,0.0,0.0,54,21,1493.5848770180007,0.0,801.6610519940398,2192.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,1,,4,106648,1,1,2,0,2,,130.0,,43,2.0,2.0,5.0,2.0,1.5,6,6,1461.26532423874,580.0,49687.50469172108,1,1,0,1,110.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.04411571910483222,33125.00312781405,8,4,8,8_1,8_3,8_0_0 -32954,2,89.0,0.0,6,111,0.0,0.0,3207.0,72,72,0.0,0.0,1638.499064823943,3207.0,0.0,3666.389199310989,31,0,0,0,0,0,0,0,0,0,,1,,4,121881,2,1,2,0,1,,345.0,,41,0.0,3.0,4.0,2.0,1.5,3,2,1504.32437841516,0.0,44224.75688904895,5,5,0,1,139.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07251594413612539,29483.171259365965,8,4,8,8_1,8_3,8_0_0 -32955,2,34.0,0.0,1,111,500.0,0.0,0.0,67,63,2240.377315527001,103.51725048194578,691.0871137879653,2220.0,206.439240502823,0.0,71,2,2,2,2,1,2,2,2,2,15.0,1,,1,111975,2,2,3,0,1,,200.0,816.0,43,2.0,0.0,6.0,4.0,2.1,3,3,1655.23238812345,500.0,32458.92361691436,1,1,2,3,160.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.06839413488262307,15456.630293768741,3,2,3_0,3_1_0,3_3_0,3_1_0 -32956,0,65.0,0.0,8,111,600.0,0.0,0.0,0,71,4779.471606457602,0.0,829.3045365455583,3900.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126822,2,1,2,0,1,,280.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1516.81910272246,600.0,34981.99758788739,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11148591472518955,34981.99758788739,9,5,9,9_1,9_3,9_0_0 -32957,2,48.0,0.0,1,111,870.0,0.0,0.0,0,63,0.0,0.0,1202.4915779910596,910.0,68.81308016760767,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111393,1,3,1,0,2,,110.0,391.0,12,1.0,1.0,4.0,1.0,1.0,1,1,2018.81729006787,870.0,19048.13418979352,0,4,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04777370796178039,19048.13418979352,5,3,5,5_1,5_3,5_1_0 -32958,2,40.0,0.0,2,111,1800.0,0.0,0.0,54,21,0.0,517.5862524097289,2487.913609636675,2360.0,103.2196202514115,0.0,71,2,2,2,1,1,2,2,2,2,10.0,1,,2,112618,2,3,2,0,1,,140.0,,43,2.0,0.0,4.0,5.0,2.4,1,1,1199.93242834582,1800.0,39491.780745492484,1,1,1,2,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0.0597592702949807,16454.9086439552,4,2,4_0,4_1_0,4_3_0,4_0_1 -32959,2,59.0,0.0,9,111,80.0,0.0,0.0,77,74,0.0,0.0,110.57393820607444,140.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,115801,2,1,1,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1576.03239174899,80.0,83666.9671177538,5,5,1,2,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.001673300764003582,55777.97807850253,10,5,10,10_1,10_3,10_0_0 -32960,0,82.0,0.0,1,111,1000.0,0.0,0.0,71,71,2688.452778632401,0.0,1382.1742275759307,2920.0,206.439240502823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,121196,1,2,2,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1627.07809659046,1000.0,27788.77762563624,5,5,0,1,90.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10507838953326919,18525.85175042416,4,2,4_0,4_1_0,4_3_0,4_1_0 -32961,2,35.0,0.0,1,111,600.0,0.0,0.0,85,54,0.0,621.1035028916747,829.3045365455583,1380.0,309.6588607542345,0.0,41,2,2,2,2,2,2,1,2,2,30.0,1,,1,113017,1,3,1,0,1,,350.0,462.0,42,1.0,0.0,2.0,2.0,1.5,1,1,1463.98935527924,600.0,26777.670517316423,7,1,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.05153547613888183,17851.780344877614,4,2,4_0,4_1_0,4_3_0,4_1_0 -32962,2,50.0,0.0,9,111,1800.0,0.0,0.0,77,64,0.0,0.0,2487.913609636675,1860.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,2,7.0,1,2004.0,6,114937,2,1,1,0,1,,600.0,,42,2.0,2.0,7.0,4.0,2.5,1,1,1495.22397358982,1800.0,61945.466876374674,7,1,1,2,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03002641022485188,24778.18675054987,7,4,7,7_1,7_3,7_0_0 -32963,2,88.0,0.0,5,111,0.0,0.0,0.0,77,74,0.0,0.0,0.0,1729.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,126523,2,1,1,0,1,,739.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1495.19642999974,0.0,100394.5288996518,5,5,0,1,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01722205401977833,66929.68593310121,10,5,10,10_1,10_3,10_0_0 -32964,2,47.0,0.0,2,111,1000.0,0.0,0.0,34,37,1493.5848770180007,0.0,1382.1742275759307,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,2,103173,1,1,1,0,1,,476.0,,43,2.0,0.0,5.0,4.0,2.5,2,2,1382.41947521393,1000.0,91510.8093169635,1,1,0,1,130.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021855341624973008,36604.3237267854,9,5,9,9_1,9_3,9_0_1 -32965,2,42.0,0.0,9,111,1300.0,0.0,0.0,0,46,0.0,0.0,1796.8264958487098,1550.0,430.0817510475479,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,126719,2,1,1,0,1,,142.0,750.0,32,1.0,0.0,4.0,3.0,1.8,2,2,1633.25232945897,1300.0,24284.190870432416,0,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06382753324045175,13491.21715024023,3,2,3_0,3_1_0,3_3_0,3_0_0 -32966,2,46.0,0.0,9,111,1200.0,0.0,0.0,55,37,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,122951,2,1,1,0,1,,300.0,823.0,43,2.0,2.0,5.0,2.0,1.5,3,2,1568.6938185184,1200.0,54932.172020945945,1,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021845122008691615,36621.44801396396,9,5,9,9_1,9_3,9_0_0 -32967,2,58.0,0.0,6,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,2479.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,133540,2,1,1,0,1,,790.0,,32,1.0,1.0,5.0,2.0,1.5,3,2,1411.07310775677,0.0,85787.60936522197,0,1,1,2,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028896946987369703,57191.739576814645,10,5,10,10_1,10_3,10_0_0 -32968,2,77.0,0.0,5,111,548.0,1495.0,0.0,0,77,0.0,0.0,757.43147671161,2043.0,0.0,2711.411086766936,41,0,0,0,0,0,0,0,0,0,,1,,3,127555,2,1,3,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1531.06990901135,548.0,14046.931679532237,0,5,0,1,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14544101492120534,14046.931679532237,3,2,3_0,3_1_0,3_3_0,3_0_0 -32969,2,62.0,0.0,6,111,1200.0,0.0,0.0,0,54,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,45.0,1,,4,132312,2,1,1,0,1,,1200.0,,12,1.0,2.0,5.0,1.0,1.0,3,3,1436.89513146031,1200.0,45557.35461664217,0,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026340423189577345,45557.35461664217,10,5,10,10_1,10_3,10_0_0 -32970,2,33.0,0.0,2,111,800.0,0.0,0.0,0,52,0.0,0.0,1105.7393820607444,835.0,60.21144514665671,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,100667,1,1,4,0,1,,270.0,550.0,12,1.0,0.0,2.0,1.0,1.0,2,2,1665.82154140189,800.0,14176.480771910323,0,4,2,3,47.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.05890037262664599,14176.480771910323,3,2,3_0,3_1_0,3_3_0,3_0_1 -32971,1,62.0,255.0,1,111,1600.0,0.0,0.0,0,78,0.0,0.0,2211.478764121489,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,117720,2,1,0,0,1,,0.0,470.0,11,0.0,1.0,2.0,1.0,1.0,2,2,2444.48035417148,1600.0,15098.160943537468,0,5,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.10597317156596181,15098.160943537468,3,2,3_1,3_0_1,3_3_1,3_1_0 -32972,2,80.0,0.0,6,111,2100.0,0.0,0.0,0,74,0.0,0.0,2902.5658779094542,2130.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124313,2,1,2,0,2,,210.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,1561.05613662974,2100.0,17991.914278848908,0,5,0,1,190.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11838651335194521,17991.914278848908,4,2,4_0,4_1_0,4_3_0,4_0_0 -32973,0,36.0,0.0,1,111,0.0,1000.0,0.0,42,38,0.0,0.0,0.0,1385.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,75.0,1,,1,119087,2,1,2,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1617.58175239547,0.0,64483.07631629582,1,1,5,0,70.0,9,7,9,0,1,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02147850380472605,35823.93128683101,9,5,9,9_1,9_3,9_1_0 -32974,2,71.0,0.0,1,111,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,560.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116332,2,2,1,0,1,,160.0,,11,0.0,1.0,2.0,1.0,1.0,4,3,1467.32029876065,500.0,16794.851546368463,0,5,0,1,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03334355165057046,16794.851546368463,4,2,4_0,4_1_0,4_3_0,4_1_0 -32975,2,46.0,0.0,1,111,2500.0,0.0,0.0,62,67,0.0,0.0,3455.435568939826,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,102823,1,1,1,0,2,,240.0,,43,2.0,0.0,2.0,2.0,1.5,1,1,1389.1329093566,2500.0,28489.6551329534,4,1,1,2,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0877511499641953,18993.103421968935,5,3,5,5_1,5_3,5_1_0 -32976,0,61.0,0.0,6,111,317.0,0.0,0.0,0,75,2539.0942909306013,0.0,438.14923014157,2107.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,113240,2,1,2,0,1,,360.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1024.95588298543,317.0,35942.81915978414,0,5,0,1,90.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05862088865743423,35942.81915978414,9,5,9,9_1,9_3,9_0_0 -32977,2,82.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,846.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,131915,2,2,0,0,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,4,4,1742.01069327385,0.0,14352.13396006017,0,6,0,1,85.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05894593809912106,14352.13396006017,3,2,3_0,3_0_0,3_3_0,3_0_1 -32978,2,74.0,0.0,2,111,433.0,0.0,0.0,0,75,1777.366003651421,0.0,598.4814405403779,1623.0,0.0,0.0,41,2,2,2,1,1,1,2,2,0,,1,,2,133260,1,1,2,0,1,,200.0,,11,0.0,3.0,4.0,1.0,1.0,4,3,1198.88571700561,433.0,20330.455472487574,0,5,0,1,85.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0.07983097093896119,20330.455472487574,5,3,5,5_1,5_3,5_0_1 -32979,2,45.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,608.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,122346,2,1,0,0,1,,186.0,557.0,12,1.0,0.0,2.0,1.0,1.0,3,2,2151.07215490079,0.0,27231.5442309657,0,1,3,4,35.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022327048177775657,27231.5442309657,7,4,7,7_0,7_3,7_0_0 -32980,1,59.0,368.0,2,111,240.0,110.0,0.0,0,68,0.0,0.0,331.72181461822333,440.0,154.82943037711726,199.50181909321938,71,1,2,2,2,1,2,2,2,2,10.0,2,,2,106459,2,2,0,1,1,976.0,0.0,307.0,32,1.0,5.0,5.0,2.0,1.5,4,4,1348.40376377875,240.0,12424.363405173846,0,1,2,3,91.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03541428930006763,8282.908936782564,1,1,1_1,1_0_1,1_3_1,1_0_1 -32981,1,51.0,338.0,2,111,333.0,256.0,0.0,85,85,0.0,0.0,460.2640177827849,589.0,0.0,464.2951426169469,44,1,2,2,2,1,2,2,2,0,,2,,2,107142,2,1,0,1,1,806.0,0.0,269.0,41,0.0,1.0,4.0,4.0,2.5,3,2,1203.24662334267,333.0,12170.144898307453,6,7,2,3,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04839712303523308,4868.057959322981,1,1,1_1,1_0_1,1_3_1,1_0_1 -32982,0,81.0,0.0,6,111,300.0,0.0,0.0,78,75,0.0,72.46207533736204,414.65226827277917,440.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,132775,2,1,2,0,1,,340.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1135.6831802836,300.0,49543.92116346101,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008881008803245535,33029.28077564068,8,4,8,8_1,8_3,8_0_0 -32983,2,57.0,0.0,5,111,6021.0,0.0,0.0,85,21,0.0,0.0,8322.071024234678,6021.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,1,,3,114678,2,2,2,0,1,,1998.0,,42,3.0,1.0,5.0,4.0,2.5,1,1,1117.36805840547,6021.0,22543.856404229093,6,4,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.267079415874495,9017.542561691636,1,1,1_0,1_1_0,1_3_0,1_0_0 -32984,2,72.0,0.0,5,111,0.0,0.0,1900.0,0,86,0.0,0.0,970.7353361912976,1900.0,0.0,2172.16697184,71,0,0,0,0,0,0,0,0,0,,1,,3,115793,2,1,2,0,1,,240.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1162.45888861048,0.0,9150.102787189193,0,6,0,1,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.20764794059583,9150.102787189193,1,1,1_0,1_1_0,1_3_0,1_0_0 -32985,2,78.0,0.0,1,111,0.0,0.0,0.0,86,72,0.0,0.0,0.0,745.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,130553,2,2,0,0,1,,0.0,650.0,41,0.0,8.0,3.0,2.0,1.5,1,1,1710.78166333175,0.0,27838.67796785492,6,5,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.026761328280755465,18559.118645236613,4,2,4_0,4_0_0,4_3_0,4_1_0 -32986,2,82.0,0.0,2,111,240.0,120.0,0.0,0,77,0.0,0.0,331.72181461822333,360.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,2,126136,1,1,0,1,2,534.0,0.0,370.0,11,0.0,7.0,2.0,1.0,1.0,2,2,2151.07215490079,240.0,18244.717727989566,0,5,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.019731738543025918,18244.717727989566,4,2,4_0,4_0_0,4_3_0,4_0_1 -32987,2,81.0,0.0,2,111,40.0,0.0,0.0,0,77,0.0,0.0,55.28696910303722,40.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,122961,2,2,0,1,1,,0.0,,21,1.0,3.0,4.0,2.0,1.5,3,2,1484.14858973151,40.0,21709.199619785777,0,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0018425368369428036,14472.799746523851,3,2,3_0,3_0_0,3_3_0,3_0_1 -32988,2,96.0,0.0,2,111,370.0,800.0,0.0,77,75,0.0,0.0,511.40446420309434,1170.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,2,128911,2,1,1,0,1,,190.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1089.60740345648,370.0,30111.51099067101,6,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038855572553714864,20074.34066044734,5,3,5,5_1,5_3,5_0_1 -32989,2,35.0,0.0,5,111,610.0,270.0,0.0,64,46,0.0,1552.7587572291866,843.1262788213177,2380.0,0.0,489.6862832288112,60,0,0,0,0,0,0,0,0,2,60.0,1,,3,120319,1,1,1,0,2,,368.0,,43,2.0,0.0,4.0,4.0,2.3,1,1,1110.60833955448,610.0,49372.99938323401,1,1,1,2,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04820448483444163,21466.52147097131,6,3,6,6_1,6_3,6_0_0 -32990,2,50.0,0.0,1,111,1968.0,0.0,0.0,54,64,0.0,0.0,2720.118879869431,2088.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,1,110356,2,2,0,0,1,,546.0,,43,3.0,0.0,4.0,4.0,2.5,2,1,1285.16571896923,1968.0,72025.29026855789,1,1,1,2,86.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02898981721857081,28810.116107423157,8,4,8,8_0,8_3,8_1_0 -32991,2,76.0,0.0,5,111,1100.0,0.0,0.0,77,75,0.0,0.0,1520.3916503335236,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,116844,2,1,2,0,2,,100.0,,41,0.0,1.0,4.0,2.0,1.5,4,4,1302.50424825615,1100.0,36182.01959736025,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03040184081046303,24121.34639824017,6,3,6,6_1,6_3,6_0_0 -32992,2,72.0,0.0,2,111,1080.0,560.0,0.0,77,78,0.0,0.0,1492.748165782005,1640.0,0.0,1015.6456244745714,41,2,2,2,2,1,2,2,2,0,,2,,2,100274,2,2,0,0,1,,0.0,,41,1.0,2.0,4.0,3.0,2.0,4,4,1484.85032382785,1080.0,57495.348010037116,5,5,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.02852404684486301,28747.674005018558,8,4,8,8_0,8_3,8_0_1 -32993,2,80.0,0.0,2,111,352.0,838.0,0.0,0,77,0.0,0.0,486.52532810672756,1190.0,0.0,1519.8411309101623,43,2,2,1,1,1,2,2,2,0,,2,,2,101780,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1590.15099115968,352.0,29763.812787877676,0,5,0,1,71.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03998143680317288,29763.812787877676,8,4,8,8_0,8_3,8_0_1 -32994,2,30.0,0.0,2,111,750.0,0.0,0.0,52,53,0.0,0.0,1036.630670681948,870.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,109392,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,4,3,1467.31685469184,750.0,44607.408208156456,1,1,1,2,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01950348686344258,29738.27213877097,8,4,8,8_0,8_3,8_0_1 -32995,2,60.0,0.0,6,111,820.0,756.0,0.0,56,63,0.0,0.0,1133.3828666122631,1576.0,0.0,1371.1215930406713,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,124519,2,1,2,0,1,,388.0,,43,2.0,2.0,3.0,2.0,1.5,1,1,1109.98086482406,820.0,37374.26783998088,1,1,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04216805013405732,24916.178559987253,7,4,7,7_1,7_3,7_0_0 -32996,2,72.0,0.0,2,111,500.0,0.0,0.0,0,77,3733.962192545002,0.0,691.0871137879653,3300.0,516.0981012570575,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,125537,2,2,1,0,1,,400.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1198.88571700561,500.0,35433.345687013556,0,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09313261099161352,35433.345687013556,9,5,9,9_1,9_3,9_0_1 -32997,0,79.0,0.0,2,111,200.0,1000.0,0.0,0,90,0.0,0.0,276.4348455151861,1200.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,0,,1,,2,111700,2,1,1,0,1,,140.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1113.42806201666,200.0,49322.853304297845,0,5,0,1,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02432949271196027,49322.853304297845,10,5,10,10_1,10_3,10_0_1 -32998,2,75.0,0.0,2,111,300.0,0.0,0.0,0,77,1941.6603401234008,0.0,414.65226827277917,1630.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107255,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,3,2,1207.41805044658,300.0,15806.226939570493,0,5,0,1,69.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10312391478571878,15806.226939570493,3,2,3_0,3_1_0,3_3_0,3_0_1 -32999,2,41.0,0.0,2,111,600.0,750.0,0.0,34,38,0.0,0.0,829.3045365455583,1350.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,103710,2,2,2,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1115.33484851673,600.0,46721.6610260062,4,1,1,2,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028894520664592024,22248.410012383905,6,3,6,6_1,6_3,6_0_1 -33000,2,78.0,0.0,2,111,1700.0,0.0,0.0,75,72,648.2158366258122,0.0,2349.696186879082,2134.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125452,2,2,2,0,1,,434.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1160.23497545825,1700.0,96406.28223429657,5,5,0,1,150.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022135486926191505,64270.85482286438,10,5,10,10_1,10_3,10_0_1 -33001,2,61.0,0.0,2,111,309.0,994.0,0.0,0,37,0.0,0.0,427.09183632096256,1303.0,0.0,1802.7709834423642,42,2,2,2,1,1,1,2,2,2,60.0,2,,2,105695,1,3,0,0,2,,148.0,458.0,12,1.0,2.0,3.0,1.0,1.0,2,2,1925.75697071072,309.0,74552.10947488595,0,1,2,3,68.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.017477707997503894,74552.10947488595,10,5,10,10_0,10_3,10_0_1 -33002,0,76.0,0.0,8,111,400.0,500.0,0.0,77,72,0.0,0.0,552.8696910303722,900.0,0.0,906.8264504237244,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,129398,2,1,1,0,1,,150.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1115.33636125461,400.0,19634.0,5,5,5,0,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045838850972802284,13089.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_0 -33003,2,55.0,0.0,6,111,1250.0,0.0,0.0,0,46,0.0,0.0,1727.717784469913,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,118491,2,1,2,0,1,,370.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,1031.45612461004,1250.0,55680.961961833455,0,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022449324795372844,37120.64130788897,9,5,9,9_1,9_3,9_0_0 -33004,2,49.0,0.0,5,111,2100.0,0.0,0.0,52,22,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,30.0,1,,3,112193,1,1,3,0,1,,590.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,1022.0651909533,2100.0,51245.90979840262,1,1,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.04097888023183186,22280.830347131578,6,3,6,6_1,6_3,6_0_0 -33005,2,39.0,0.0,2,111,1100.0,370.0,0.0,0,53,0.0,0.0,1520.3916503335236,1470.0,0.0,671.0515733135561,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,100145,2,2,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,2,1,1779.45351398733,1100.0,33680.591790903156,0,1,1,2,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04364531386877337,21050.369869314472,5,3,5,5_0,5_3,5_0_1 -33006,2,82.0,0.0,2,111,305.0,360.0,0.0,0,75,0.0,0.0,421.56313941065883,665.0,0.0,652.9150443050816,71,0,0,0,0,0,0,0,0,0,,2,,2,127360,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1597.30460027075,305.0,23706.91810620985,0,5,0,1,53.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028050883586838233,23706.91810620985,6,3,6,6_0,6_3,6_0_1 -33007,2,87.0,0.0,2,111,400.0,1800.0,0.0,77,75,0.0,0.0,552.8696910303722,2200.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,,2,111919,2,3,2,0,1,,310.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1068.19142448748,400.0,47945.461697277424,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04588546907506215,31963.64113151828,8,4,8,8_1,8_3,8_0_1 -33008,2,44.0,0.0,2,111,720.0,0.0,0.0,85,46,2688.452778632401,0.0,995.16544385467,2640.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131749,1,1,2,0,1,,420.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1003.57365350196,720.0,56255.811737105054,7,1,1,2,110.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0469284846930529,23439.921557127105,6,3,6,6_1,6_3,6_0_1 -33009,0,78.0,0.0,1,111,1800.0,0.0,0.0,0,75,0.0,0.0,2487.913609636675,1830.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125116,2,1,1,0,1,,70.0,,11,0.0,1.0,3.0,1.0,1.0,3,3,1123.04663084897,1800.0,30483.836760348,0,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0600318133962842,30483.836760348,8,4,8,8_1,8_3,8_1_0 -33010,1,34.0,200.0,9,111,920.0,0.0,0.0,54,52,0.0,0.0,1271.600289369856,920.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,95.0,2,2009.0,6,104236,2,2,0,0,1,,0.0,570.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1518.69874824674,920.0,8204.741702831872,4,1,2,3,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11213028189326928,4558.189834906596,1,1,1_1,1_0_1,1_3_1,1_0_0 -33011,2,54.0,0.0,2,111,236.0,80.0,0.0,22,46,0.0,0.0,326.1931177079196,316.0,0.0,145.09223206779592,31,1,1,2,1,1,1,2,2,0,,2,,2,121438,1,3,0,1,1,584.0,0.0,195.0,43,2.0,0.0,2.0,2.0,1.5,3,1,1346.50922548048,236.0,22470.15194804493,4,1,2,3,48.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.014063100273226872,14980.101298696622,3,2,3_0,3_0_0,3_3_0,3_0_1 -33012,1,39.0,428.0,2,111,110.0,140.0,0.0,0,52,0.0,25.879312620486445,152.03916503335236,275.0,0.0,253.91140611864284,20,1,1,1,1,1,2,2,2,1,5.0,2,,2,129177,1,2,0,1,1,920.0,0.0,401.0,32,1.0,0.0,4.0,3.0,1.8,2,2,1465.65684534013,110.0,14420.031993510429,0,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.019070692778196376,8011.128885283571,1,1,1_1,1_0_1,1_3_1,1_0_1 -33013,2,42.0,0.0,2,111,1200.0,0.0,0.0,48,52,0.0,217.38622601208613,1658.6090730911167,1410.0,0.0,0.0,50,2,2,2,2,1,2,1,2,2,7.0,2,,2,107398,2,2,0,0,1,,600.0,,43,2.0,0.0,3.0,5.0,2.6,3,2,1578.39517414086,1200.0,52036.47342501623,1,1,1,2,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.0270963788895454,20014.028240390857,5,3,5,5_0,5_3,5_0_1 -33014,2,57.0,0.0,1,111,1400.0,0.0,0.0,0,64,0.0,0.0,1935.0439186063027,1550.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105892,2,1,2,0,1,,400.0,,22,3.0,2.0,4.0,4.0,2.5,2,2,2176.30116331173,1400.0,21623.71515478882,0,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07168055946467343,8649.486061915528,1,1,1_0,1_1_0,1_3_0,1_1_0 -33015,2,85.0,0.0,7,111,1300.0,0.0,0.0,75,75,0.0,0.0,1796.8264958487098,1380.0,137.62616033521533,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,118779,2,1,2,0,1,,295.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2185.30375437113,1300.0,52656.43714615289,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026207621988735778,35104.29143076859,9,5,9,9_1,9_3,9_0_0 -33016,2,44.0,0.0,9,111,1500.0,0.0,0.0,62,43,4480.754631054002,0.0,2073.261341363896,4500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,103530,2,1,1,0,1,,600.0,,43,2.0,0.0,8.0,7.0,3.8,4,3,2274.66179914114,1500.0,169265.39812812692,1,1,1,2,200.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02658546903126465,44543.525823191296,10,5,10,10_1,10_3,10_0_0 -33017,2,75.0,0.0,5,111,750.0,0.0,0.0,77,78,0.0,207.03450096389156,1036.630670681948,1000.0,86.01635020950958,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,133193,2,1,2,0,1,,140.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,2259.47240159874,750.0,21383.834783162976,5,5,0,1,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04676429696264636,14255.889855441985,3,2,3_0,3_1_0,3_3_0,3_0_0 -33018,1,51.0,80.0,1,111,1200.0,0.0,0.0,0,35,3733.962192545002,414.0690019277831,1658.6090730911167,4250.0,258.04905062852873,0.0,60,1,2,2,1,1,2,2,2,2,20.0,1,,1,132867,1,2,1,0,1,,1400.0,,32,1.0,0.0,6.0,4.0,2.5,3,3,2154.59148879751,1200.0,39598.21739321382,0,1,1,2,120.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0.1073280637306756,15839.286957285527,3,2,3_1,3_1_1,3_3_1,3_1_0 -33019,1,31.0,95.0,2,111,600.0,0.0,0.0,85,67,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,2,45.0,2,,2,123117,2,1,0,0,1,,0.0,763.0,42,1.0,0.0,3.0,4.0,2.1,3,3,3118.48278954072,600.0,33291.831916444346,6,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.019824682572483977,15853.253293544925,3,2,3_1,3_0_1,3_3_1,3_0_1 -33020,2,64.0,0.0,6,111,1377.0,0.0,0.0,77,78,0.0,0.0,1903.2539113720563,1527.0,258.04905062852873,0.0,43,2,2,1,1,1,2,2,2,0,,1,,4,116516,2,1,3,0,1,,383.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2003.47818426635,1377.0,41208.42255836071,5,5,0,1,79.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.037055531495713355,27472.28170557381,7,4,7,7_1,7_3,7_0_0 -33021,2,62.0,0.0,6,111,1500.0,0.0,0.0,21,21,0.0,0.0,2073.261341363896,1505.0,8.601635020950958,0.0,60,2,2,2,2,1,2,2,2,0,,1,,4,117270,2,1,3,0,1,,1200.0,,43,3.0,2.0,3.0,3.0,2.0,1,1,2328.01842445373,1500.0,46041.93654723333,1,1,0,1,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.03268759120190473,23020.968273616665,6,3,6,6_1,6_3,6_0_0 -33022,2,37.0,0.0,5,111,1000.0,0.0,0.0,37,85,0.0,362.31037668681023,1382.1742275759307,1350.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,121319,2,1,1,0,1,,360.0,,42,1.0,0.0,4.0,4.0,2.1,1,1,1903.33050085093,1000.0,64268.58802159675,1,6,1,2,95.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02100559607045276,30604.089534093688,8,4,8,8_1,8_3,8_0_0 -33023,1,34.0,106.0,6,111,0.0,0.0,0.0,85,52,0.0,0.0,0.0,1034.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,130641,2,2,5,0,1,,853.0,1000.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,2,2,2454.08686303968,0.0,40702.188638046704,7,1,2,3,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.025404039305971376,15654.687937710272,3,2,3_1,3_1_1,3_3_1,3_0_0 -33024,2,46.0,0.0,7,111,525.0,0.0,0.0,42,38,0.0,0.0,725.6414694773636,2125.0,2752.5232067043066,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,129268,2,1,2,0,1,,172.0,,43,2.0,0.0,6.0,2.0,1.5,1,1,2171.85925345969,525.0,86749.94915342261,1,1,1,2,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0244956915910326,57833.299435615074,10,5,10,10_1,10_3,10_0_0 -33025,2,32.0,0.0,5,111,700.0,0.0,0.0,0,21,0.0,0.0,967.5219593031513,700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,119817,2,1,1,0,1,,400.0,,32,1.0,0.0,3.0,3.0,1.6,2,2,1944.78837329956,700.0,15826.284522514943,0,4,0,1,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04423021707995703,9891.427826571839,2,1,2_0,2_1_0,2_3_0,2_0_0 -33026,2,32.0,0.0,9,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,1016.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,112545,2,1,0,0,1,,0.0,300.0,43,2.0,2.0,4.0,5.0,2.4,3,3,2732.93089037391,0.0,38202.8464734022,4,1,2,3,77.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02659487692120966,15917.852697250917,3,2,3_0,3_0_0,3_3_0,3_0_0 -33027,2,67.0,0.0,7,111,2400.0,0.0,0.0,42,74,0.0,0.0,3317.2181461822333,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,129375,2,1,2,0,1,,160.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,2309.08427792419,2400.0,28265.11788697818,1,5,0,1,180.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08491031276065142,18843.41192465212,5,3,5,5_1,5_3,5_0_0 -33028,2,51.0,0.0,7,111,1400.0,0.0,0.0,52,46,0.0,414.0690019277831,1935.0439186063027,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,128886,2,1,2,0,1,,591.0,,43,2.0,0.0,5.0,5.0,3.0,1,1,1841.37267361941,1400.0,45439.10529621648,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039613456036729625,15146.36843207216,3,2,3_0,3_1_0,3_3_0,3_0_0 -33029,2,82.0,0.0,7,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1044.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,106118,2,1,2,0,1,,79.0,,11,0.0,2.0,3.0,1.0,1.0,2,1,2491.03627320381,0.0,14357.749789283112,0,5,0,1,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07271334403523738,14357.749789283112,3,2,3_0,3_1_0,3_3_0,3_0_0 -33030,1,48.0,117.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,763.0,86.01635020950958,0.0,42,0,0,0,0,0,0,0,0,2,45.0,2,,2,131515,2,3,0,1,1,,0.0,,32,2.0,0.0,4.0,3.0,2.0,2,2,3068.68988919819,0.0,41058.104445913705,0,1,1,2,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.018583420016506324,20529.052222956852,5,3,5,5_0,5_3,5_0_1 -33031,0,76.0,0.0,7,111,1500.0,0.0,0.0,78,78,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,122196,2,1,2,0,1,,300.0,,41,0.0,1.0,3.0,2.0,1.5,4,4,2408.90506263878,1500.0,23815.72118600504,5,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06298360600901949,15877.147457336694,3,2,3_0,3_1_0,3_3_0,3_0_0 -33032,2,77.0,0.0,7,111,411.0,0.0,0.0,86,86,0.0,724.6207533736205,568.0736075337074,3111.0,3440.6540083803834,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,126117,2,1,2,0,1,,276.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,2251.63965851413,411.0,54017.123197267065,5,5,0,1,160.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05759284863503056,36011.41546484471,9,5,9,9_1,9_3,9_0_0 -33033,2,80.0,0.0,1,111,1200.0,0.0,0.0,0,77,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,131430,2,2,0,0,1,,185.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,3619.53084535461,1200.0,18278.197787046385,0,5,0,1,50.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06565198680859174,18278.197787046385,4,2,4_0,4_0_0,4_3_0,4_1_0 -33034,1,33.0,260.0,1,111,2100.0,0.0,0.0,56,68,0.0,0.0,2902.5658779094542,2460.0,619.317721508469,0.0,71,2,2,2,2,1,2,2,2,2,90.0,2,,1,112070,2,3,0,0,1,,800.0,510.0,43,2.0,2.0,3.0,3.0,2.0,4,4,3347.09374315605,2100.0,10046.08550262549,1,1,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.24487149739638311,5023.042751312745,1,1,1_1,1_0_1,1_3_1,1_1_0 -33035,2,68.0,0.0,5,111,1102.0,0.0,0.0,77,75,0.0,62.110350289167464,1523.1559987886756,1162.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,114650,2,2,2,0,1,,434.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2202.5192794267,1102.0,42114.11676545455,5,5,0,1,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027591698205889185,28076.077843636365,8,4,8,8_1,8_3,8_0_0 -33036,2,85.0,0.0,7,111,743.0,0.0,0.0,86,75,0.0,0.0,1026.9554510889163,743.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,123423,2,1,0,0,1,,801.0,676.0,41,0.0,1.0,2.0,2.0,1.5,3,3,3238.87743538237,743.0,27879.853712917786,6,5,2,3,43.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026650068097586185,18586.56914194519,4,2,4_0,4_0_0,4_3_0,4_0_0 -33037,1,32.0,120.0,9,111,1400.0,0.0,0.0,55,46,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,117013,2,1,0,0,1,,550.0,430.0,43,2.0,0.0,4.0,4.0,2.1,1,1,2551.42878162219,1400.0,27923.477176574706,4,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.050137022375367865,13296.893893607003,3,2,3_1,3_0_1,3_3_1,3_0_0 -33038,1,45.0,200.0,9,111,1200.0,0.0,0.0,0,52,0.0,0.0,1658.6090730911167,1254.0,92.89765822627035,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,2009.0,6,112630,2,1,1,0,1,,350.0,488.0,32,1.0,0.0,4.0,4.0,2.1,2,2,1832.6926632098,1200.0,30735.794425140193,0,1,2,3,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.040799335870567145,14636.092583400092,3,2,3_1,3_1_1,3_3_1,3_0_0 -33039,2,81.0,0.0,8,111,1120.0,0.0,0.0,90,74,0.0,0.0,1548.0351348850422,1180.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,117937,2,1,1,0,1,,825.0,,41,0.0,3.0,3.0,2.0,1.5,4,4,2342.26926790598,1120.0,43186.427855025126,5,5,0,1,98.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027323399007697657,28790.951903350084,8,4,8,8_1,8_3,8_0_0 -33040,1,43.0,238.0,1,111,2300.0,0.0,0.0,52,22,0.0,0.0,3179.0007234246405,2500.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112775,2,1,2,0,1,,870.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,3,2,2105.85148858935,2300.0,43997.103431705735,1,1,1,2,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.056821922467705434,14192.614010227659,3,2,3_1,3_1_1,3_3_1,3_1_0 -33041,2,50.0,0.0,8,111,1702.0,0.0,0.0,45,37,0.0,0.0,2352.460535334234,1862.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,107586,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.5,2,2,2078.05113126859,1702.0,56495.26288357958,1,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03295851554557847,22598.105153431832,6,3,6,6_1,6_3,6_0_0 -33042,2,58.0,0.0,2,111,900.0,0.0,0.0,52,53,1045.5094139126004,310.55175144583734,1243.9568048183376,1900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,2,111031,2,1,2,0,1,,300.0,,43,3.0,1.0,6.0,3.0,2.0,2,2,2358.32457022555,900.0,78369.6797804379,1,1,1,2,158.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02424406996842502,39184.83989021895,9,5,9,9_1,9_3,9_0_1 -33043,2,71.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,130134,2,1,0,0,2,,355.0,,11,0.0,3.0,5.0,1.0,1.0,2,2,3477.60066019593,300.0,31706.043626417202,0,5,0,1,145.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009461918476326154,31706.043626417202,8,4,8,8_0,8_3,8_0_0 -33044,1,64.0,30.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1116.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,120620,2,1,0,0,2,,177.0,210.0,11,0.0,4.0,2.0,1.0,1.0,4,4,4173.23303637721,0.0,11346.902228316918,0,5,2,3,43.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09835283476885444,11346.902228316918,2,1,2_1,2_0_1,2_3_1,2_1_0 -33045,2,40.0,0.0,1,111,950.0,0.0,0.0,0,46,0.0,0.0,1313.065516197134,990.0,68.81308016760767,0.0,71,2,2,2,2,1,2,2,2,2,25.0,2,,1,107996,2,1,0,0,1,,50.0,,12,1.0,0.0,3.0,1.0,1.0,4,3,2963.66918708112,950.0,32356.0,0,1,1,2,59.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0.030597107182593647,32356.0,8,4,8,8_0,8_3,8_1_0 -33046,0,65.0,0.0,6,111,240.0,0.0,0.0,0,75,0.0,0.0,331.72181461822333,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,122602,2,1,2,0,1,,540.0,,21,1.0,1.0,4.0,3.0,1.8,2,2,2420.52608845895,240.0,34678.897667196594,0,5,5,0,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006920635203091256,19266.054259553664,5,3,5,5_1,5_3,5_0_0 -33047,2,75.0,0.0,2,111,700.0,0.0,0.0,77,77,0.0,0.0,967.5219593031513,784.0,144.50746835197612,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,115669,2,2,3,0,1,,276.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,2076.98511659758,700.0,20902.38370090745,5,5,0,1,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03750768387080961,13934.922467271632,3,2,3_0,3_1_0,3_3_0,3_0_1 -33048,1,79.0,175.0,6,111,1500.0,0.0,0.0,0,77,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,100255,1,1,0,0,2,,280.0,300.0,11,0.0,8.0,3.0,1.0,1.0,2,2,3423.37736410479,1500.0,13397.25080385852,0,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.11196326932746437,13397.25080385852,3,2,3_1,3_0_1,3_3_1,3_0_0 -33049,1,59.0,160.0,1,111,500.0,0.0,0.0,0,78,0.0,0.0,691.0871137879653,540.0,68.81308016760767,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,104255,2,1,0,0,1,,0.0,420.0,11,0.0,1.0,3.0,1.0,1.0,3,2,4173.23303637721,500.0,4847.300729038085,0,7,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.11140220716348241,4847.300729038085,1,1,1_1,1_0_1,1_3_1,1_1_0 -33050,2,60.0,0.0,1,111,1200.0,150.0,0.0,43,74,0.0,0.0,1658.6090730911167,1350.0,0.0,272.04793512711734,50,0,0,0,0,0,0,0,0,0,,2,,1,107858,2,1,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,4,3,639.273190980729,1200.0,57840.579273439136,1,5,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.023340015210047024,38560.38618229276,9,5,9,9_0,9_3,9_1_0 -33051,2,87.0,0.0,7,111,276.0,0.0,0.0,0,75,0.0,0.0,381.48008681095683,276.0,0.0,0.0,71,2,1,2,2,2,2,2,1,0,,2,,5,102931,1,2,0,1,1,,0.0,600.0,11,0.0,1.0,2.0,1.0,1.0,2,2,715.068803393541,276.0,31221.31670283145,0,5,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.008840114035772543,31221.31670283145,8,4,8,8_0,8_3,8_0_0 -33052,2,71.0,0.0,1,111,297.0,48.0,0.0,0,77,0.0,0.0,410.5057455900514,345.0,0.0,87.05533924067754,71,0,0,0,0,0,0,0,0,0,,2,,1,113081,2,1,0,0,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,752.856108226679,297.0,8606.08408107488,0,5,0,1,28.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.040087918819973964,8606.08408107488,1,1,1_0,1_0_0,1_3_0,1_1_0 -33053,1,57.0,97.0,2,111,390.0,240.0,0.0,0,68,0.0,0.0,539.0479487546129,630.0,0.0,435.27669620338776,71,2,2,2,1,1,2,2,2,3,30.0,2,,2,118977,1,2,0,0,1,,0.0,410.0,12,1.0,3.0,2.0,1.0,1.0,2,1,2383.87318582535,390.0,2041.16388186739,0,1,2,3,37.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,0,0,1,0.30864743668873607,2041.16388186739,1,1,1_1,1_0_1,1_3_1,1_0_1 -33054,1,48.0,37.0,1,111,850.0,0.0,0.0,0,67,0.0,0.0,1174.848093439541,910.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,106480,2,2,0,0,1,,0.0,507.0,12,1.0,4.0,2.0,1.0,1.0,2,2,2675.39512807679,850.0,15817.905363876998,0,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05752974107925484,15817.905363876998,3,2,3_1,3_0_1,3_3_1,3_1_0 -33055,1,27.0,300.0,1,111,620.0,110.0,0.0,0,85,0.0,0.0,856.9480210970769,730.0,0.0,199.50181909321938,71,0,0,0,0,0,0,0,0,0,,2,,1,133489,2,2,0,0,1,,0.0,535.0,31,0.0,0.0,2.0,2.0,1.3,3,3,1713.9550173155,620.0,9820.331012718329,0,6,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07433557983479128,7554.100779014098,1,1,1_1,1_0_1,1_3_1,1_1_0 -33056,1,20.0,377.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,342.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,124226,2,1,0,0,1,,0.0,510.0,32,1.0,0.0,2.0,2.0,1.3,4,4,2204.80849653953,0.0,9522.808064131823,0,4,2,3,35.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.0359137764508939,7325.236972409094,1,1,1_1,1_0_1,1_3_1,1_1_0 -33057,2,41.0,0.0,6,111,0.0,0.0,0.0,68,55,0.0,0.0,0.0,852.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,30.0,2,,4,118776,2,1,0,0,1,,0.0,400.0,43,2.0,6.0,1.0,2.0,1.5,1,1,2225.63331751652,0.0,10096.693413601595,1,1,2,3,36.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08438406170204615,6731.128942401064,1,1,1_0,1_0_0,1_3_0,1_0_0 -33058,2,89.0,0.0,2,111,402.0,59.0,0.0,0,77,0.0,0.0,555.6340394855241,461.0,0.0,107.00552114999948,10,2,1,2,2,1,2,2,2,0,,2,,2,115671,2,2,0,1,1,492.0,0.0,247.0,11,0.0,0.0,4.0,1.0,1.0,2,2,508.019895430687,402.0,21869.47709287465,0,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.021079607804166456,21869.47709287465,6,3,6,6_0,6_3,6_0_1 -33059,1,48.0,60.0,1,111,240.0,0.0,0.0,0,56,0.0,0.0,331.72181461822333,300.0,103.2196202514115,0.0,71,2,2,2,1,1,2,2,1,3,40.0,2,,1,101895,2,2,0,0,1,,0.0,380.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2038.75517323014,240.0,18224.231030650306,0,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.016461599915817953,18224.231030650306,4,2,4_1,4_0_1,4_3_1,4_1_0 -33060,2,76.0,0.0,2,111,610.0,0.0,0.0,0,74,0.0,0.0,843.1262788213177,610.0,0.0,0.0,71,2,1,1,1,1,2,2,2,0,,2,,2,125025,2,1,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1788.7334877054,610.0,33826.34412733011,0,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01803328192085495,33826.34412733011,9,5,9,9_0,9_3,9_0_1 -33061,2,76.0,0.0,2,111,720.0,0.0,0.0,0,78,0.0,62.110350289167464,995.16544385467,840.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131134,2,1,2,0,2,,80.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,391.512730605512,720.0,17197.863130574915,0,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04884327742477616,17197.863130574915,4,2,4_0,4_1_0,4_3_0,4_0_1 -33062,2,73.0,0.0,2,111,300.0,326.0,0.0,0,78,0.0,0.0,414.65226827277917,626.0,0.0,591.2508456762683,20,0,0,0,0,0,0,0,0,0,,2,,2,102850,2,1,0,0,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,544.149218479391,300.0,21823.69135107111,0,5,0,1,37.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02868442326871874,21823.69135107111,6,3,6,6_0,6_3,6_0_1 -33063,1,45.0,270.0,1,111,420.0,0.0,0.0,0,85,0.0,0.0,580.5131755818909,420.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,132121,2,1,0,0,1,,92.0,308.0,11,0.0,0.0,2.0,1.0,1.0,2,1,762.399424739791,420.0,11195.11922583688,0,7,2,3,42.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.037516349002402284,11195.11922583688,2,1,2_1,2_0_1,2_3_1,2_1_0 -33064,1,59.0,270.0,1,111,0.0,0.0,140.0,0,78,0.0,0.0,71.52786687725352,140.0,0.0,160.0544084513684,71,2,2,2,2,1,2,2,2,0,,2,,1,119940,2,2,0,0,1,,0.0,261.0,11,0.0,0.0,1.0,1.0,1.0,1,1,560.360424466377,0.0,6190.180794718535,0,7,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.022616463822744574,6190.180794718535,1,1,1_1,1_0_1,1_3_1,1_1_0 -33065,1,50.0,208.0,2,111,450.0,400.0,0.0,85,47,0.0,0.0,621.9784024091688,850.0,0.0,725.4611603389795,50,0,0,0,0,0,0,0,0,0,,2,,2,129529,2,3,0,1,1,624.0,0.0,548.0,42,1.0,0.0,4.0,5.0,2.4,3,2,468.095058452812,450.0,23505.610598362306,6,1,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03616157922990614,9794.004415984295,2,1,2_1,2_0_1,2_3_1,2_0_1 -33066,2,50.0,0.0,2,111,750.0,750.0,0.0,34,64,0.0,0.0,1036.630670681948,1500.0,0.0,1360.2396756355868,60,0,0,0,0,0,0,0,0,3,15.0,2,,2,125871,1,2,0,0,1,,0.0,320.0,43,2.0,0.0,3.0,3.0,2.0,2,2,2028.74736710204,750.0,47575.61011622071,1,1,2,3,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031528760142764435,23787.805058110356,6,3,6,6_0,6_3,6_0_1 -33067,2,77.0,0.0,2,111,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114879,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,4,3,1878.21555290419,500.0,37405.991291920356,0,5,0,1,57.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013366842656245801,37405.991291920356,9,5,9,9_0,9_3,9_0_1 -33068,2,47.0,0.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,3140.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,121974,1,2,0,0,2,,362.0,610.0,31,1.0,1.0,3.0,5.0,2.8,1,1,2021.09292292581,0.0,7508.250079604197,0,6,2,3,54.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,0,0,0,0.4182066349294438,2681.5178855729278,1,1,1_0,1_0_0,1_3_0,1_0_1 -33069,1,34.0,180.0,1,111,120.0,800.0,0.0,0,46,0.0,0.0,165.86090730911167,920.0,0.0,1450.922320677959,10,0,0,0,0,0,0,0,0,3,30.0,1,,1,118912,1,2,5,0,2,,0.0,1200.0,22,2.0,0.0,4.0,2.0,1.5,2,2,1803.9800246613,120.0,34926.037189931914,0,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.026341379498536616,23284.024793287943,6,3,6,6_1,6_3,6_1_0 -33070,2,43.0,0.0,7,111,850.0,0.0,0.0,55,34,0.0,0.0,1174.848093439541,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,130703,2,1,0,0,1,,500.0,,43,2.0,0.0,3.0,3.0,1.8,3,3,1883.90362162404,850.0,61683.02247563798,1,1,1,2,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01378012888936679,34268.34581979888,9,5,9,9_0,9_3,9_0_0 -33071,2,63.0,0.0,1,111,480.0,900.0,0.0,86,78,1384.5531809956867,0.0,663.4436292364467,2307.0,0.0,1632.287610762704,43,0,0,0,0,0,0,0,0,0,,1,,1,107846,2,1,2,0,1,,820.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1436.83417945253,480.0,28351.40687923118,5,5,0,1,42.0,9,7,9,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08137162327877254,18900.937919487453,5,3,5,5_1,5_3,5_1_0 -33072,2,50.0,0.0,2,111,350.0,800.0,0.0,0,63,0.0,0.0,483.76097965157567,1150.0,0.0,1450.922320677959,71,2,2,2,2,1,2,2,2,1,10.0,2,,2,131608,1,2,0,0,2,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,2,1,2049.51035723045,350.0,15770.505194746038,0,1,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.07292093600039673,15770.505194746038,3,2,3_0,3_0_0,3_3_0,3_0_1 -33073,2,80.0,0.0,2,111,370.0,370.0,0.0,86,78,0.0,0.0,511.40446420309434,740.0,0.0,671.0515733135561,31,2,2,2,2,1,2,2,2,0,,2,,2,128365,1,2,0,0,1,,300.0,,41,1.0,2.0,3.0,3.0,2.0,2,2,2043.89315708448,370.0,32185.24780995802,5,5,0,1,53.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,0,0,0,0.022991900027286606,16092.62390497901,4,2,4_0,4_0_0,4_3_0,4_0_1 -33074,2,44.0,0.0,2,111,1200.0,0.0,0.0,54,64,0.0,0.0,1658.6090730911167,2254.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,132956,1,3,0,0,1,,261.0,613.0,43,2.0,0.0,3.0,4.0,2.1,2,2,2031.04727376143,1200.0,52563.41621763589,1,1,2,3,56.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.042881535527817274,25030.19819887423,7,4,7,7_0,7_3,7_0_1 -33075,1,35.0,246.0,1,111,300.0,0.0,0.0,0,55,0.0,0.0,414.65226827277917,300.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,2,,1,114309,1,3,0,0,2,,0.0,440.0,12,1.0,0.0,1.0,1.0,1.0,3,2,2566.66670635109,300.0,4977.960297012613,0,4,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,1,0.0602656473937803,4977.960297012613,1,1,1_1,1_0_1,1_3_1,1_1_0 -33076,2,43.0,0.0,1,111,1000.0,2000.0,0.0,42,21,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,20,0,0,0,0,0,0,0,0,2,5.0,2,,1,114074,2,1,0,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,2001.80815987137,1000.0,68126.77094312938,1,1,1,2,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.044035552521700015,32441.319496728272,8,4,8,8_0,8_3,8_1_0 -33077,2,41.0,0.0,1,111,520.0,0.0,0.0,0,54,0.0,0.0,718.7305983394839,520.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,,1,111868,2,3,0,0,1,,45.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1865.89318598636,520.0,22839.269125792765,0,1,1,2,52.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02276780387042926,22839.269125792765,6,3,6,6_0,6_3,6_1_0 -33078,1,53.0,270.0,1,111,600.0,0.0,0.0,0,35,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,1,101084,1,3,0,0,2,,209.0,360.0,12,1.0,2.0,2.0,1.0,1.0,2,2,2630.96878172724,600.0,14280.861004614562,0,1,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.04201427349556323,14280.861004614562,3,2,3_1,3_0_1,3_3_1,3_1_0 -33079,2,63.0,0.0,1,111,500.0,500.0,0.0,78,77,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,71,2,2,2,2,2,2,2,1,0,,2,,1,105102,2,1,0,0,1,,0.0,,41,0.0,1.0,2.0,2.0,1.5,3,2,1896.69409888733,500.0,36328.0,5,5,0,1,56.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0.02752697643690817,24218.666666666668,7,4,7,7_0,7_3,7_1_0 -33080,2,69.0,0.0,1,111,750.0,750.0,0.0,72,86,0.0,0.0,1036.630670681948,1500.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,0,,2,,1,124310,2,3,0,0,1,,0.0,,41,0.0,2.0,8.0,2.0,1.5,1,1,2097.99432775163,750.0,61321.3999534654,5,5,0,1,140.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.024461281072159082,40880.933302310266,9,5,9,9_0,9_3,9_1_0 -33081,2,66.0,0.0,8,111,703.0,0.0,0.0,86,75,0.0,0.0,971.6684819858792,767.0,110.10092826817227,0.0,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,101104,2,1,0,0,1,,0.0,,41,1.0,1.0,4.0,3.0,2.0,1,1,2199.4197875052,703.0,40562.80068940198,6,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018908950737230465,20281.40034470099,5,3,5,5_0,5_3,5_0_0 -33083,2,46.0,0.0,2,111,520.0,100.0,0.0,46,21,0.0,0.0,718.7305983394839,620.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,116312,2,2,0,1,2,1500.0,0.0,600.0,43,2.0,0.0,3.0,3.0,2.0,1,1,2386.17964992987,520.0,26753.01033554289,1,1,2,3,82.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023174962078054254,13376.505167771445,3,2,3_0,3_0_0,3_3_0,3_0_1 -33084,2,89.0,0.0,2,111,600.0,200.0,0.0,0,74,0.0,0.0,829.3045365455583,1732.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,0,,2,,2,111837,1,3,0,1,2,,0.0,,11,0.0,3.0,6.0,1.0,1.0,3,3,1967.17648348771,600.0,46903.5628453299,0,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.036926832311470176,46903.5628453299,10,5,10,10_0,10_3,10_0_1 -33085,2,70.0,0.0,1,111,240.0,500.0,0.0,0,77,0.0,0.0,331.72181461822333,740.0,0.0,906.8264504237244,41,0,0,0,0,0,0,0,0,0,,2,,1,109777,1,2,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2162.24280808407,240.0,21340.980651735346,0,5,0,1,87.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03467507009523608,21340.980651735346,6,3,6,6_0,6_3,6_1_0 -33087,1,40.0,200.0,1,111,700.0,0.0,0.0,0,46,0.0,0.0,967.5219593031513,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,116650,2,1,0,0,1,,0.0,680.0,32,1.0,0.0,3.0,2.0,1.3,4,4,2191.22849315115,700.0,14715.556803224612,0,4,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04756870632626075,11319.659079403547,2,1,2_1,2_0_1,2_3_1,2_1_0 -33088,2,32.0,0.0,2,111,560.0,100.0,0.0,0,38,0.0,0.0,774.0175674425211,660.0,0.0,181.36529008474488,60,0,0,0,0,0,0,0,0,2,1.0,2,,2,132141,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1877.54494018622,560.0,27431.204956133093,0,1,1,2,53.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024060189884310444,27431.204956133093,7,4,7,7_0,7_3,7_0_1 -33089,2,67.0,0.0,2,111,530.0,0.0,0.0,0,77,0.0,0.0,732.5523406152432,530.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111786,1,2,0,0,1,,0.0,600.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2273.62591002271,530.0,18165.246223776547,0,5,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.029176593230334603,18165.246223776547,4,2,4_0,4_0_0,4_3_0,4_0_1 -33090,2,90.0,0.0,1,111,300.0,800.0,0.0,0,74,0.0,0.0,414.65226827277917,1100.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,0,,2,,1,122301,2,1,0,0,1,,0.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,2057.26176721384,300.0,64683.87335875862,0,5,0,1,140.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.017005784330493448,43122.582239172414,9,5,9,9_0,9_3,9_1_0 -33091,2,33.0,0.0,7,111,0.0,0.0,0.0,33,37,0.0,0.0,0.0,969.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,118509,2,1,0,0,1,,0.0,940.0,43,2.0,0.0,4.0,4.0,2.1,1,1,2114.76905216309,0.0,44527.3525450749,1,1,2,3,93.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021761904640952644,21203.501211940427,5,3,5,5_0,5_3,5_0_0 -33092,2,68.0,0.0,1,111,940.0,0.0,0.0,0,78,0.0,0.0,1299.2437739213747,940.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,126564,2,1,0,0,1,,0.0,420.0,11,0.0,2.0,3.0,1.0,1.0,2,2,2206.17779692479,940.0,15931.150701253067,0,5,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05900389856497084,15931.150701253067,3,2,3_0,3_0_0,3_3_0,3_1_0 -33093,2,46.0,0.0,1,111,0.0,100.0,0.0,0,43,0.0,0.0,0.0,2055.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,133321,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,1,1,1864.03979418862,0.0,31856.63281203263,0,1,1,2,75.0,9,7,9,0,1,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06450775925143608,21237.755208021754,5,3,5,5_0,5_3,5_1_0 -33094,2,55.0,0.0,1,111,85.0,25.0,0.0,75,37,0.0,0.0,117.4848093439541,110.0,0.0,45.34132252118622,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,121805,2,1,0,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,3,3,1793.72177315771,85.0,64503.894791740786,5,1,0,1,50.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0017053233817143803,43002.59652782719,9,5,9,9_0,9_3,9_1_0 -33095,1,60.0,225.0,1,111,400.0,800.0,0.0,0,77,0.0,0.0,552.8696910303722,1200.0,0.0,1450.922320677959,50,2,2,2,2,1,2,2,2,0,,2,,1,109567,2,1,0,0,1,,0.0,640.0,11,0.0,2.0,2.0,1.0,1.0,3,3,2329.75954317298,400.0,9329.973190724144,0,7,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.1286177329205018,9329.973190724144,1,1,1_1,1_0_1,1_3_1,1_1_0 -33096,2,56.0,0.0,5,111,300.0,0.0,0.0,0,43,0.0,0.0,414.65226827277917,517.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,18.0,2,,3,104847,1,1,0,1,2,260.0,0.0,580.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2264.77650157002,300.0,34110.5243880271,0,1,2,3,38.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.015156612490585709,34110.5243880271,9,5,9,9_0,9_3,9_0_0 -33098,2,88.0,0.0,1,111,600.0,780.0,0.0,0,78,0.0,0.0,829.3045365455583,1380.0,0.0,1414.6492626610102,71,0,0,0,0,0,0,0,0,0,,2,,1,106185,2,1,0,0,1,,360.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2391.59021686252,600.0,10660.34780988842,0,5,0,1,108.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.12945168624985456,10660.34780988842,2,1,2_0,2_0_0,2_3_0,2_1_0 -33099,2,48.0,0.0,2,111,150.0,750.0,0.0,38,43,0.0,0.0,207.32613413638958,900.0,0.0,1360.2396756355868,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,106721,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,1,1,1632.63110877273,150.0,83565.50098552827,1,1,0,1,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010769994667486772,39793.095707394416,9,5,9,9_0,9_3,9_0_1 -33100,2,68.0,0.0,5,111,830.0,0.0,0.0,0,75,0.0,0.0,1147.2046088880224,830.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,130801,2,1,0,0,1,,0.0,341.0,11,0.0,3.0,4.0,1.0,1.0,2,2,1714.06915435065,830.0,22325.13141332477,0,5,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03717783266908852,22325.13141332477,6,3,6,6_0,6_3,6_0_0 -33101,2,81.0,0.0,2,111,650.0,170.0,0.0,54,75,0.0,0.0,898.4132479243549,820.0,0.0,308.32099314406634,31,0,0,0,0,0,0,0,0,0,,2,,2,130632,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1539.65109458709,650.0,30623.387406329708,5,5,0,1,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026776920172799364,20415.591604219804,5,3,5,5_0,5_3,5_0_1 -33102,2,83.0,0.0,1,111,240.0,1450.0,0.0,0,78,0.0,0.0,331.72181461822333,1760.0,120.42289029331342,2629.7967062288008,50,0,0,0,0,0,0,0,0,0,,1,,1,112803,2,1,1,0,2,,30.0,,11,0.0,0.0,2.0,1.0,1.0,3,2,1346.45918956914,240.0,13425.10906240755,0,5,0,1,30.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13109763144705328,13425.10906240755,3,2,3_0,3_1_0,3_3_0,3_1_0 -33103,0,74.0,0.0,1,111,430.0,970.0,0.0,0,77,0.0,0.0,594.3349178576501,1400.0,0.0,1759.2433138220254,71,0,0,0,0,0,0,0,0,0,,2,,1,113674,2,1,0,0,1,,125.0,,11,0.0,0.0,3.0,1.0,1.0,2,1,1792.28599166367,430.0,13752.173951033503,0,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.10180208634539467,13752.173951033503,3,2,3_0,3_0_0,3_3_0,3_1_0 -33104,2,61.0,0.0,2,111,200.0,200.0,0.0,75,75,0.0,0.0,276.4348455151861,400.0,0.0,362.73058016948977,50,1,2,2,1,2,2,2,2,0,,2,,2,128996,1,1,0,2,2,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,1,1689.64741314217,200.0,64793.776914654125,5,5,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.006173432373403343,43195.851276436086,9,5,9,9_0,9_3,9_0_1 -33105,2,59.0,0.0,2,111,1000.0,0.0,0.0,62,52,0.0,0.0,1382.1742275759307,1100.0,172.03270041901916,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,100010,1,3,0,0,2,,0.0,450.0,42,1.0,0.0,3.0,2.0,1.5,4,3,2061.26120507191,1000.0,28448.101942829915,1,5,2,3,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.03866690305773616,18965.401295219945,5,3,5,5_0,5_3,5_0_1 -33106,2,32.0,0.0,1,111,480.0,0.0,0.0,56,63,0.0,0.0,663.4436292364467,690.0,361.26867087994026,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,110955,1,2,0,0,2,,0.0,606.0,43,2.0,0.0,2.0,4.0,2.1,3,2,1902.79883636643,480.0,24143.85029104989,1,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.028578706034131703,11497.071567166613,2,1,2_0,2_0_0,2_3_0,2_1_0 -33107,2,63.0,0.0,8,111,950.0,0.0,0.0,0,75,0.0,0.0,1313.065516197134,950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2001.0,6,113207,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,2,2,1917.6482389955,950.0,30799.39072153709,0,5,0,1,38.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030844766008169554,30799.39072153709,8,4,8,8_0,8_3,8_0_0 -33108,2,84.0,0.0,2,111,170.0,170.0,0.0,86,78,0.0,0.0,234.9696186879082,340.0,0.0,308.32099314406634,10,0,0,0,0,0,0,0,0,0,,2,,2,129309,1,1,0,3,2,,0.0,,41,0.0,1.0,2.0,2.0,1.5,1,1,1792.87476372018,170.0,19759.947744113142,6,5,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017206523235937826,13173.298496075427,2,1,2_0,2_0_0,2_3_0,2_0_1 -33109,2,38.0,0.0,1,111,300.0,860.0,0.0,0,34,0.0,0.0,414.65226827277917,1160.0,0.0,1559.741494728806,71,0,0,0,0,0,0,0,0,0,,2,,1,106373,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,5,4,1649.55205696646,300.0,56660.729189790276,0,1,1,2,75.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.020472733347897346,35412.95574361892,9,5,9,9_0,9_3,9_1_0 -33110,0,76.0,0.0,1,111,700.0,1500.0,0.0,0,75,0.0,103.51725048194578,967.5219593031513,2300.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,2,,1,114610,2,3,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,4,2,1743.50875378417,700.0,20562.389692265137,0,5,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.11185470338912898,20562.389692265137,5,3,5,5_0,5_3,5_1_0 -33111,2,64.0,0.0,2,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,1098.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,128227,2,2,5,0,1,,335.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1393.56520259173,0.0,263342.2480247463,0,1,0,1,150.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0041694791027105564,263342.2480247463,10,5,10,10_1,10_3,10_0_1 -33112,2,68.0,0.0,2,111,297.0,368.0,0.0,0,75,0.0,0.0,410.5057455900514,665.0,0.0,667.4242675118612,71,0,0,0,0,0,0,0,0,0,,2,,2,133132,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1792.40793091304,297.0,34238.013557545935,0,5,1,2,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01942285579396403,34238.013557545935,9,5,9,9_0,9_3,9_0_1 -33113,0,44.0,0.0,1,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,973.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,132212,2,1,0,0,1,,1095.0,,43,2.0,0.0,7.0,4.0,2.1,1,1,1936.60485607463,0.0,121595.12667522643,1,1,5,0,230.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.008001965429081931,57902.44127391735,10,5,10,10_0,10_3,10_1_0 -33114,2,61.0,0.0,5,111,1800.0,1800.0,0.0,77,21,0.0,0.0,2487.913609636675,3600.0,0.0,3264.575221525408,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,130029,2,1,0,0,1,,440.0,,42,1.0,0.0,4.0,4.0,2.5,1,1,1562.88579247404,1800.0,31914.98241932958,6,1,1,2,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.11279968613799485,12765.992967731832,2,1,2_0,2_0_0,2_3_0,2_0_0 -33115,2,82.0,0.0,7,111,900.0,0.0,0.0,75,78,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,111977,2,1,0,0,1,,590.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1761.09779425604,900.0,33659.91788230157,5,5,0,1,48.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026738033145149807,22439.94525486771,6,3,6,6_0,6_3,6_0_0 -33116,2,31.0,0.0,9,111,300.0,300.0,0.0,34,31,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,71,0,0,0,0,0,0,0,0,2,40.0,2,2007.0,6,104587,2,1,0,0,1,,382.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1723.02716017116,300.0,70460.69858037449,1,1,0,1,49.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008515385343725769,46973.799053582996,10,5,10,10_0,10_3,10_0_0 -33117,2,51.0,0.0,1,111,900.0,0.0,0.0,75,52,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,1,109366,2,1,0,0,1,,650.0,,42,1.0,4.0,3.0,2.0,1.5,1,1,1727.28588607373,900.0,48427.075511491894,5,1,0,1,62.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.01858464486021724,32284.717007661264,8,4,8,8_0,8_3,8_1_0 -33118,2,30.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,116145,2,1,0,1,2,,0.0,815.0,12,1.0,0.0,3.0,1.0,1.0,2,1,1709.26501841667,0.0,18636.291510610903,0,1,2,3,62.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0890735154606725,18636.291510610903,4,2,4_0,4_0_0,4_3_0,4_0_1 -33119,2,56.0,0.0,5,111,400.0,720.0,0.0,67,34,0.0,0.0,552.8696910303722,1120.0,0.0,1305.830088610163,71,2,2,1,2,2,2,2,1,3,25.0,2,,3,108314,2,2,0,1,1,743.0,0.0,638.0,43,2.0,2.0,4.0,3.0,2.0,2,2,1856.8150147891,400.0,34450.72668995683,1,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.03251019956936077,17225.363344978414,4,2,4_0,4_0_0,4_3_0,4_0_0 -33120,2,63.0,0.0,5,111,450.0,0.0,0.0,0,52,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,2,2,1,1,2,2,2,2,4,45.0,2,,3,112350,2,1,0,0,1,,60.0,,12,1.0,0.0,2.0,1.0,1.0,2,2,1827.69086405663,450.0,26133.586152493946,0,1,0,1,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.01721922117286824,26133.586152493946,7,4,7,7_0,7_3,7_0_0 -33121,2,50.0,0.0,2,111,719.0,450.0,0.0,46,42,0.0,0.0,993.7832696270941,1169.0,0.0,816.143805381352,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,111240,2,1,0,0,2,,0.0,773.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2015.28743682739,719.0,53073.378046760736,1,1,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022026108814291845,35382.252031173826,9,5,9,9_0,9_3,9_0_1 -33122,2,67.0,0.0,2,111,200.0,1000.0,0.0,54,78,0.0,0.0,276.4348455151861,1200.0,0.0,1813.6529008474488,42,1,2,2,2,2,2,2,1,0,,2,,2,104991,2,1,0,0,1,,160.0,265.0,42,1.0,1.0,2.0,2.0,1.5,2,2,1585.39826525093,200.0,38338.2143468057,1,5,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.031300362326342486,25558.809564537132,7,4,7,7_0,7_3,7_0_1 -33123,2,36.0,0.0,6,111,800.0,0.0,0.0,46,37,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,4,115582,2,1,0,0,1,,0.0,960.0,43,2.0,1.0,4.0,3.0,1.8,2,2,2256.07555477291,800.0,60192.78557329061,4,1,2,3,86.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013290629306828169,33440.43642960589,8,4,8,8_0,8_3,8_0_0 -33124,2,44.0,0.0,2,111,600.0,0.0,0.0,54,31,0.0,0.0,829.3045365455583,890.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,100764,2,1,0,1,1,,348.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,1894.98153562847,600.0,154711.55671396357,1,1,1,2,98.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0057526407134889405,67265.89422346243,10,5,10,10_0,10_3,10_0_1 -33125,0,51.0,0.0,7,111,288.0,907.0,0.0,45,33,0.0,0.0,398.066177541868,1195.0,0.0,1644.9831810686362,50,0,0,0,0,0,0,0,0,1,1.0,8,,5,109604,1,1,0,0,2,,0.0,,43,2.0,1.0,6.0,5.0,3.0,2,2,1879.44112990302,288.0,85048.86120289133,1,1,5,0,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014050746630801149,28349.620400963777,8,4,8,8_0,8_3,8_0_0 -33127,2,70.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,1007.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120302,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1718.1149655631,0.0,57949.660497069744,5,5,0,1,74.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017377150985223105,38633.106998046496,9,5,9,9_0,9_3,9_0_1 -33128,2,37.0,0.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1112.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,116860,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,4,4,1686.9155450473,0.0,40370.67102073159,7,1,1,2,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02754474899436161,16821.11292530483,4,2,4_0,4_0_0,4_3_0,4_0_1 -33129,2,46.0,0.0,7,111,600.0,800.0,0.0,0,43,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,30.0,2,,5,117654,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,1651.92904205076,600.0,27262.333538130817,0,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05135290411005616,18174.889025420543,4,2,4_0,4_0_0,4_3_0,4_0_0 -33130,2,79.0,0.0,2,111,725.0,0.0,0.0,74,74,2867.682963874561,0.0,1002.0763149925497,2645.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,103649,2,1,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,1925.8299470762,725.0,175875.09666726933,5,5,0,1,160.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015039081996946752,117250.06444484623,10,5,10,10_0,10_3,10_0_1 -33131,0,92.0,0.0,1,111,710.0,315.0,0.0,0,77,0.0,0.0,981.3437015789107,1025.0,0.0,571.3006637669464,71,0,0,0,0,0,0,0,0,0,,1,,1,131439,2,2,4,0,1,,200.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1334.03447303024,710.0,30050.237643312903,0,5,0,1,50.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03410954722443248,30050.237643312903,8,4,8,8_1,8_3,8_1_0 -33132,2,43.0,0.0,2,111,420.0,0.0,0.0,38,43,0.0,0.0,580.5131755818909,420.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,110273,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1831.58878655439,420.0,66699.18058223964,1,1,1,2,93.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006296928932764666,31761.514562971257,8,4,8,8_0,8_3,8_0_1 -33133,2,68.0,0.0,2,111,510.0,120.0,0.0,75,67,0.0,0.0,704.9088560637246,630.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,1,1.0,2,,2,105643,2,3,0,1,1,,0.0,,41,0.0,2.0,4.0,3.0,1.8,3,2,2094.52169139944,510.0,39335.63318178946,5,5,0,1,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01601601268469374,21853.129545438587,6,3,6,6_0,6_3,6_0_1 -33134,1,47.0,245.0,2,111,400.0,300.0,0.0,0,85,0.0,0.0,552.8696910303722,700.0,0.0,544.0958702542347,42,0,0,0,0,0,0,0,0,0,,2,,2,108954,2,1,0,1,1,,0.0,345.0,21,0.0,0.0,3.0,2.0,1.5,3,3,474.749804880276,400.0,18684.153598275105,0,7,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03746490288244168,12456.10239885007,2,1,2_1,2_0_1,2_3_1,2_0_1 -33135,1,23.0,400.0,6,111,480.0,600.0,0.0,0,55,0.0,0.0,663.4436292364467,1080.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,,4,102760,2,1,0,1,1,,0.0,388.0,22,2.0,0.0,4.0,5.0,3.0,2,2,425.872251889845,480.0,9504.271449039676,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11363311809756071,3168.0904830132254,1,1,1_1,1_0_1,1_3_1,1_0_0 -33136,1,92.0,65.0,6,111,216.0,200.0,0.0,0,72,0.0,0.0,298.549633156401,416.0,0.0,362.73058016948977,71,0,0,0,0,0,0,0,0,0,,2,,4,129954,2,1,0,0,1,,0.0,300.0,11,0.0,2.0,4.0,1.0,1.0,1,1,537.436154504281,216.0,15185.088409110773,0,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02739529654304862,15185.088409110773,3,2,3_1,3_0_1,3_3_1,3_0_0 -33137,2,54.0,0.0,8,111,664.0,639.0,0.0,74,34,0.0,0.0,917.7636871104179,1303.0,0.0,1158.9242036415199,43,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,125195,2,1,1,0,1,,400.0,,42,2.0,0.0,5.0,3.0,2.0,3,2,1417.59062471372,664.0,103259.13235528805,5,1,1,2,134.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012618738607222778,51629.566177644025,10,5,10,10_1,10_3,10_0_0 -33138,2,53.0,0.0,2,111,750.0,0.0,0.0,0,43,0.0,0.0,1036.630670681948,896.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,103199,2,1,0,1,1,,0.0,,32,2.0,1.0,4.0,2.0,1.5,1,1,1912.28027463487,750.0,30066.59380797521,0,1,1,2,86.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02980051567272428,20044.395871983474,5,3,5,5_0,5_3,5_0_1 -33139,2,54.0,0.0,8,111,1800.0,0.0,0.0,85,38,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,1.0,2,2003.0,6,113944,2,1,0,0,1,,0.0,,42,2.0,0.0,4.0,6.0,3.3,2,1,1822.44503865125,1800.0,134648.0475555014,6,1,0,1,122.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013368184928623246,40802.438653182246,9,5,9,9_0,9_3,9_0_0 -33140,1,78.0,80.0,6,111,200.0,300.0,0.0,0,77,0.0,0.0,276.4348455151861,500.0,0.0,544.0958702542347,70,2,2,2,2,1,2,2,2,0,,2,,4,115167,2,1,0,1,1,,0.0,417.0,11,0.0,1.0,4.0,1.0,1.0,2,2,481.466542054764,200.0,13116.12392298284,0,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.03812101829290212,13116.12392298284,2,1,2_1,2_0_1,2_3_1,2_0_0 -33141,2,35.0,0.0,6,111,360.0,650.0,0.0,43,46,0.0,0.0,497.582721927335,1010.0,0.0,1178.8743855508417,10,2,2,2,2,1,2,2,2,2,30.0,2,,4,103776,1,2,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,3,2,1589.04821770617,360.0,26549.07599176278,1,1,0,1,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.03804275524742807,17699.38399450852,4,2,4_0,4_0_0,4_3_0,4_0_0 -33142,0,89.0,0.0,6,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,200.0,344.06540083803833,0.0,60,2,2,2,2,2,2,2,1,0,,2,,4,106385,2,2,0,0,1,,0.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,2055.36373982575,0.0,35092.10153749415,0,5,5,0,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.005699288194134228,23394.73435832943,6,3,6,6_0,6_3,6_0_0 -33143,2,78.0,0.0,2,111,800.0,1000.0,0.0,0,74,0.0,0.0,1105.7393820607444,1800.0,0.0,1813.6529008474488,50,2,2,2,2,2,2,2,1,0,,2,,2,128238,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1860.82982524714,800.0,69853.8310983408,0,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.025768092768826738,69853.8310983408,10,5,10,10_0,10_3,10_0_1 -33144,2,39.0,0.0,2,111,1000.0,1200.0,0.0,43,52,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,110173,2,1,0,0,1,,0.0,940.0,43,2.0,0.0,4.0,5.0,2.8,2,1,2004.34157866361,1000.0,68270.66024504909,1,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03222467736657844,24382.378658946105,7,4,7,7_0,7_3,7_0_1 -33145,2,52.0,0.0,1,111,1080.0,1440.0,0.0,34,34,0.0,0.0,1492.748165782005,2520.0,0.0,2611.660177220326,71,0,0,0,0,0,0,0,0,3,10.0,1,,1,120398,2,1,2,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1283.66017991994,1080.0,75880.31945306472,1,1,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03321019228917097,50586.87963537648,10,5,10,10_1,10_3,10_1_0 -33146,2,68.0,0.0,2,111,500.0,600.0,0.0,0,77,0.0,0.0,691.0871137879653,1100.0,0.0,1088.1917405084694,20,0,0,0,0,0,0,0,0,0,,2,,2,108767,2,1,0,0,1,,0.0,,21,1.0,3.0,3.0,2.0,1.5,2,2,1696.62871461315,500.0,23308.658428233353,0,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.047192763298105136,15539.105618822236,3,2,3_0,3_0_0,3_3_0,3_0_1 -33147,2,43.0,0.0,1,111,800.0,1200.0,0.0,85,38,0.0,0.0,1105.7393820607444,2000.0,0.0,2176.3834810169387,71,2,2,2,2,2,2,2,1,2,30.0,1,,1,104762,1,2,3,0,1,,0.0,1100.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,2,2,1403.71799529721,800.0,78362.56927728705,6,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.02552238930455396,30139.449722033485,8,4,8,8_1,8_3,8_1_0 -33148,1,58.0,124.0,2,111,720.0,1000.0,0.0,0,54,0.0,0.0,995.16544385467,1720.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,100929,2,1,0,0,1,,0.0,294.0,12,1.0,1.0,3.0,1.0,1.0,3,2,1735.81926428381,720.0,12805.759837293781,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.13431456015525936,12805.759837293781,2,1,2_1,2_0_1,2_3_1,2_0_1 -33149,2,68.0,0.0,2,111,480.0,250.0,0.0,85,78,0.0,0.0,663.4436292364467,730.0,0.0,453.4132252118622,71,0,0,0,0,0,0,0,0,0,,2,,2,125475,2,2,0,1,2,,0.0,556.0,41,0.0,4.0,3.0,2.0,1.5,1,1,1954.05116071423,480.0,19466.89787911097,6,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03749955460460546,12977.931919407312,2,1,2_0,2_0_0,2_3_0,2_0_1 -33150,2,55.0,0.0,5,111,260.0,0.0,0.0,34,37,0.0,0.0,359.36529916974195,260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,127664,2,1,0,1,1,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1826.84774584949,260.0,109356.92027664726,1,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0023775358646006234,72904.61351776484,10,5,10,10_0,10_3,10_0_0 -33151,2,38.0,0.0,1,111,0.0,0.0,0.0,43,37,0.0,0.0,0.0,783.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101793,2,1,2,0,1,,233.0,1045.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1433.0277533654,0.0,56391.77547693917,1,1,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013885003502331643,26853.22641759008,7,4,7,7_1,7_3,7_1_0 -33152,2,91.0,0.0,2,111,250.0,960.0,0.0,0,75,0.0,0.0,345.54355689398267,1210.0,0.0,1741.106784813551,50,0,0,0,0,0,0,0,0,0,,2,,2,115681,1,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,3,2,1920.46233782034,250.0,13091.631050737142,0,5,0,1,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09242545831841704,13091.631050737142,2,1,2_0,2_0_0,2_3_0,2_0_1 -33153,2,36.0,0.0,1,111,900.0,0.0,0.0,43,34,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,20.0,2,,1,120940,1,2,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,4,3,2104.26589490521,900.0,55986.77875974089,1,1,1,2,101.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.016075223828508137,23327.824483225373,6,3,6,6_0,6_3,6_1_0 -33154,2,73.0,0.0,2,111,550.0,0.0,0.0,0,86,0.0,0.0,760.1958251667618,650.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108678,2,3,0,0,1,,0.0,543.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2202.44721591413,550.0,21875.57981219104,0,5,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02971349813721333,21875.57981219104,6,3,6,6_0,6_3,6_0_1 -33155,0,47.0,0.0,2,111,0.0,0.0,0.0,46,63,0.0,0.0,0.0,2074.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,,2,114057,1,2,2,0,2,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1447.32450383868,0.0,59406.349386514135,1,1,5,0,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03491209309136272,39604.23292434276,9,5,9,9_1,9_3,9_0_1 -33156,2,78.0,0.0,5,111,670.0,0.0,0.0,74,74,0.0,0.0,926.0567324758734,670.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,108479,2,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1843.55816274692,670.0,88587.40789398279,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007563151647938771,59058.27192932186,10,5,10,10_0,10_3,10_0_0 -33157,2,88.0,0.0,2,111,370.0,750.0,0.0,86,77,0.0,0.0,511.40446420309434,1120.0,0.0,1360.2396756355868,41,0,0,0,0,0,0,0,0,0,,2,,2,122333,1,3,0,0,2,,0.0,470.0,41,0.0,2.0,3.0,2.0,1.5,1,1,2023.91936950797,370.0,20671.31599959998,6,5,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05418135933008201,13780.877333066654,3,2,3_0,3_0_0,3_3_0,3_0_1 -33158,2,89.0,0.0,2,111,270.0,75.0,0.0,0,74,0.0,0.0,373.1870414455012,345.0,0.0,136.02396756355867,41,0,0,0,0,0,0,0,0,0,,2,,2,120638,2,1,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1920.46233782034,270.0,38601.344941742675,0,5,0,1,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008937512424001691,38601.344941742675,9,5,9,9_0,9_3,9_0_1 -33159,2,34.0,0.0,2,111,320.0,91.0,0.0,0,34,0.0,0.0,442.2957528242978,411.0,0.0,165.04241397711786,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,118151,1,2,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,2,2,1704.32559830399,320.0,37760.9299844722,0,1,1,2,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010884265831615078,29046.869218824766,8,4,8,8_0,8_3,8_0_1 -33160,2,41.0,0.0,8,111,408.0,400.0,0.0,43,43,0.0,0.0,563.9270848509797,808.0,0.0,725.4611603389795,20,0,0,0,0,0,0,0,0,2,15.0,2,1999.0,6,116559,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1762.78960464344,408.0,47702.37187680803,1,1,0,1,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01693836109631341,22715.415179432395,6,3,6,6_0,6_3,6_0_0 -33161,2,41.0,0.0,1,111,1500.0,2000.0,0.0,31,34,0.0,0.0,2073.261341363896,3500.0,0.0,3627.3058016948976,71,0,0,0,0,0,0,0,0,0,,1,,1,109252,2,1,3,0,2,,204.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1277.54239757491,1500.0,195216.19811398775,1,1,1,2,180.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017928840095309775,84876.60787564685,10,5,10,10_1,10_3,10_1_0 -33162,2,56.0,0.0,6,111,1349.0,0.0,0.0,52,45,0.0,0.0,1864.5530329999303,1404.0,94.61798523046055,0.0,41,2,2,2,2,1,2,2,2,2,15.0,1,,4,114697,2,2,2,0,1,,241.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1207.15324626098,1349.0,48460.28571345339,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.02897217751256935,32306.857142302262,8,4,8,8_1,8_3,8_0_0 -33163,2,65.0,0.0,7,111,400.0,550.0,0.0,75,74,0.0,207.03450096389156,552.8696910303722,1150.0,0.0,997.5090954660969,41,0,0,0,0,0,0,0,0,0,,1,,5,107557,2,1,2,0,1,,1000.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1388.42720433219,400.0,60156.028671524866,5,5,0,1,115.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019116953452486762,40104.01911434991,9,5,9,9_1,9_3,9_0_0 -33164,2,41.0,0.0,1,111,504.0,0.0,0.0,34,34,0.0,72.46207533736204,696.615810698269,1899.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,1,,1,109906,1,2,1,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.1,5,5,1280.87644324621,504.0,82547.05275224979,1,1,1,2,110.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023005061194607504,39308.12035821418,9,5,9,9_1,9_3,9_1_0 -33165,1,41.0,280.0,5,111,1000.0,600.0,0.0,56,62,0.0,0.0,1382.1742275759307,1600.0,0.0,1088.1917405084694,50,2,2,2,2,1,2,2,2,2,15.0,2,,3,128062,2,3,0,0,1,,0.0,715.0,43,2.0,0.0,3.0,4.0,2.1,2,2,533.10300236389,1000.0,16428.516967088482,4,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,1,0,0,1,0.09739162720562704,7823.103317661182,1,1,1_1,1_0_1,1_3_1,1_0_0 -33166,1,40.0,461.0,5,111,800.0,0.0,0.0,63,55,0.0,517.5862524097289,1105.7393820607444,1660.0,619.317721508469,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,3,130236,1,3,0,0,1,,377.0,420.0,43,2.0,0.0,5.0,5.0,2.8,4,4,1599.81441124907,800.0,26836.471029798373,4,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0.06185612102861022,9584.453939213705,1,1,1_1,1_0_1,1_3_1,1_0_0 -33167,1,34.0,130.0,2,111,780.0,1200.0,0.0,0,54,0.0,0.0,1078.0958975092258,1980.0,0.0,2176.3834810169387,42,0,0,0,0,0,0,0,0,2,60.0,2,,2,126968,2,2,0,0,1,,0.0,286.0,32,1.0,0.0,4.0,3.0,1.6,2,2,521.279858703671,780.0,21253.232113801423,0,1,2,3,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09316230065140199,13283.27007112589,3,2,3_1,3_0_1,3_3_1,3_0_1 -33168,2,45.0,0.0,8,111,1230.0,0.0,0.0,52,67,0.0,0.0,1700.0742999183947,1230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,129527,2,1,3,0,1,,900.0,575.0,43,3.0,1.0,4.0,3.0,2.0,5,3,1189.32714968424,1230.0,60553.85815530759,1,1,3,4,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020312495974167576,30276.929077653796,8,4,8,8_1,8_3,8_0_0 -33169,2,60.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,414.65226827277917,540.0,412.878481005646,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,110499,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,2,2,1786.57709798978,300.0,19931.936880161156,0,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027092198979291264,19931.936880161156,5,3,5,5_0,5_3,5_0_0 -33170,2,38.0,0.0,1,111,360.0,120.0,0.0,0,47,0.0,0.0,497.582721927335,480.0,0.0,217.63834810169388,50,2,1,2,2,1,2,2,2,0,,2,,1,116874,2,2,0,1,1,300.0,0.0,265.0,22,1.0,0.0,3.0,2.0,1.5,4,3,487.802602499627,360.0,31557.09778032115,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.015210524216815832,21038.065186880765,5,3,5,5_0,5_3,5_1_0 -33171,2,74.0,0.0,1,111,1200.0,0.0,0.0,0,78,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,131714,2,2,2,0,1,,240.0,,11,0.0,1.0,4.0,1.0,1.0,4,4,1373.44505995337,1200.0,25435.869172552586,0,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04717747177654537,25435.869172552586,7,4,7,7_1,7_3,7_1_0 -33172,0,37.0,0.0,7,111,0.0,0.0,0.0,55,37,0.0,0.0,0.0,931.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,121220,2,1,1,0,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,3,2,1290.67260982625,0.0,58309.94382452472,1,1,5,0,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015966401936549773,27766.63991644034,7,4,7,7_1,7_3,7_0_0 -33173,1,57.0,270.0,2,111,539.0,320.0,0.0,0,78,0.0,0.0,744.9919086634266,859.0,0.0,580.3689282711837,71,0,0,0,0,0,0,0,0,0,,8,,2,117537,2,1,0,1,1,418.0,0.0,298.0,21,1.0,1.0,3.0,2.0,1.5,2,2,1838.7608791206,539.0,14446.14010947697,0,7,2,3,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05946225036516696,9630.760072984647,1,1,1_1,1_0_1,1_3_1,1_0_1 -33174,1,33.0,271.0,2,111,250.0,500.0,0.0,0,67,0.0,0.0,345.54355689398267,750.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,2,,2,123710,2,1,0,0,1,,150.0,336.0,22,2.0,1.0,4.0,2.0,1.5,2,2,1587.0303625991,250.0,8531.335738556783,0,4,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08791120440969481,5687.557159037856,1,1,1_1,1_0_1,1_3_1,1_0_1 -33175,2,72.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,667.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,100670,1,2,0,1,2,,362.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2097.03138444452,0.0,19036.44724694587,0,5,0,1,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.035038050501099184,19036.44724694587,5,3,5,5_0,5_3,5_0_1 -33176,2,65.0,0.0,2,111,240.0,880.0,0.0,75,74,0.0,0.0,331.72181461822333,1120.0,0.0,1596.014552745755,50,0,0,0,0,0,0,0,0,0,,2,,2,132891,2,1,0,0,1,,370.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,1793.21815962821,240.0,58687.61590522574,5,5,0,1,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.019084094365132857,39125.0772701505,9,5,9,9_0,9_3,9_0_1 -33177,2,59.0,0.0,2,111,430.0,470.0,0.0,0,52,0.0,0.0,594.3349178576501,1050.0,258.04905062852873,852.416863398301,42,2,2,2,2,1,2,2,2,2,15.0,2,,2,105383,1,2,0,0,2,,264.0,561.0,12,1.0,2.0,2.0,1.0,1.0,2,1,2276.03425107601,430.0,21618.419401015366,0,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.048569693302863946,21618.419401015366,6,3,6,6_0,6_3,6_0_1 -33178,2,50.0,0.0,2,111,1056.0,25.0,0.0,0,37,0.0,0.0,1459.5759843201827,1081.0,0.0,45.34132252118622,31,2,2,2,2,2,2,2,1,2,30.0,8,,2,102507,2,3,0,0,1,,25.0,700.0,12,1.0,2.0,3.0,1.0,1.0,2,2,2205.63667954134,1056.0,25681.077218089966,0,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.042093249859415344,25681.077218089966,7,4,7,7_0,7_3,7_0_1 -33179,2,36.0,0.0,2,111,1450.0,0.0,0.0,37,67,0.0,0.0,2004.1526299850993,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,100309,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,5,5,2009.49575217102,1450.0,58072.214435493224,1,1,1,2,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024968911795341713,32262.34135305179,8,4,8,8_0,8_3,8_0_1 -33180,2,62.0,0.0,5,111,494.0,0.0,0.0,0,31,0.0,0.0,682.7940684225097,494.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,128049,2,1,1,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1525.37252186811,494.0,85697.35435480837,0,1,0,1,82.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.005764472004056474,85697.35435480837,10,5,10,10_1,10_3,10_0_0 -33181,2,61.0,0.0,7,111,729.0,0.0,0.0,0,34,0.0,0.0,1007.6050119028533,729.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,5,122506,2,1,0,0,1,,0.0,1020.0,12,1.0,0.0,3.0,1.0,1.0,2,2,2099.12236676775,729.0,91054.12232248252,0,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008006227300924736,91054.12232248252,10,5,10,10_0,10_3,10_0_0 -33182,2,67.0,0.0,7,111,500.0,0.0,0.0,0,38,0.0,0.0,691.0871137879653,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,,5,132792,2,1,1,0,1,,220.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1626.80073256458,500.0,50072.13819878014,0,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00998559314593402,50072.13819878014,10,5,10,10_1,10_3,10_0_0 -33183,1,29.0,270.0,7,111,1080.0,0.0,0.0,0,52,0.0,0.0,1492.748165782005,1080.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,15.0,1,,5,122321,1,3,3,0,2,,0.0,400.0,12,1.0,1.0,1.0,1.0,1.0,2,2,1804.77604456664,1080.0,11736.41963970929,0,1,3,4,32.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,1,1,0,1,0.09202124950831697,11736.41963970929,2,1,2_1,2_1_1,2_3_1,2_0_0 -33184,1,47.0,443.0,5,111,600.0,1500.0,0.0,0,42,0.0,0.0,829.3045365455583,2100.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,2,,3,125624,1,3,0,1,2,444.0,606.0,640.0,32,1.0,0.0,4.0,4.0,2.3,4,3,1646.75815404057,600.0,31444.274043524143,0,4,2,3,83.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06678481421111036,13671.42349718441,3,2,3_1,3_0_1,3_3_1,3_0_0 -33186,2,74.0,0.0,6,111,419.0,816.0,0.0,72,86,0.0,0.0,579.1310013543149,1235.0,0.0,1479.9407670915184,70,0,0,0,0,0,0,0,0,0,,1,,4,124128,2,1,2,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1461.28692605103,419.0,79499.68794018884,5,5,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01553465217283803,52999.7919601259,10,5,10,10_1,10_3,10_0_0 -33187,2,47.0,0.0,8,111,1200.0,0.0,0.0,47,21,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,118266,2,1,2,0,1,,1051.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,1443.28737101256,1200.0,78048.03238952534,1,1,0,1,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015375147370929104,31219.212955810137,8,4,8,8_1,8_3,8_0_0 -33188,0,77.0,0.0,9,111,780.0,0.0,0.0,0,75,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2008.0,6,108051,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,5,5,2569.62299962851,780.0,31676.293835802266,0,5,5,0,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02462409283242605,31676.293835802266,8,4,8,8_0,8_3,8_0_0 -33189,2,43.0,0.0,8,111,1000.0,0.0,0.0,85,38,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,2002.0,6,106237,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,1646.25372349297,1000.0,19083.604714858313,6,1,0,1,51.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.052401001537272965,9087.430816599197,1,1,1_0,1_0_0,1_3_0,1_0_0 -33190,1,35.0,334.0,2,111,260.0,360.0,0.0,0,56,0.0,0.0,359.36529916974195,620.0,0.0,652.9150443050816,30,0,0,0,0,0,0,0,0,1,5.0,2,,2,122768,2,2,0,1,1,672.0,0.0,300.0,32,1.0,0.0,3.0,3.0,1.6,2,2,540.61531967487,260.0,12638.857777747004,0,1,2,3,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04905506580599571,7899.286111091877,1,1,1_1,1_0_1,1_3_1,1_0_1 -33192,2,64.0,0.0,5,111,660.0,0.0,0.0,0,75,0.0,0.0,912.2349902001142,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,130503,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2182.64282917279,660.0,77190.2294620362,0,5,0,1,96.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00855030493625624,77190.2294620362,10,5,10,10_0,10_3,10_0_0 -33193,1,59.0,100.0,5,111,1150.0,0.0,0.0,0,54,0.0,0.0,1589.5003617123202,1150.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,100515,2,1,0,0,2,,0.0,302.0,12,1.0,0.0,1.0,1.0,1.0,2,2,2615.24810612783,1150.0,9605.7970737239,0,4,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11971937270523425,9605.7970737239,1,1,1_1,1_0_1,1_3_1,1_0_0 -33194,2,44.0,0.0,9,111,1440.0,0.0,0.0,21,46,0.0,0.0,1990.33088770934,1440.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,124372,2,1,0,0,1,,0.0,707.0,43,2.0,0.0,3.0,4.0,2.3,4,3,2091.00695997127,1440.0,30944.349705193235,4,1,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.046535151448289507,13454.065089214451,3,2,3_0,3_0_0,3_3_0,3_0_0 -33195,2,69.0,0.0,2,111,403.0,185.0,0.0,75,75,0.0,0.0,557.0162137131,588.0,0.0,335.52578665677805,50,0,0,0,0,0,0,0,0,0,,2,,2,119105,2,3,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,1944.92012452107,403.0,48386.767261930276,5,5,0,1,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0121520827547127,32257.84484128685,8,4,8,8_0,8_3,8_0_1 -33196,1,41.0,54.0,2,111,0.0,0.0,800.0,68,63,0.0,0.0,408.73066787002006,800.0,0.0,914.5966197221052,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,117165,1,1,0,0,2,,0.0,580.0,43,2.0,0.0,3.0,2.0,1.5,4,4,2457.86004488464,0.0,31957.102540689288,1,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025033558626956318,21304.735027126193,6,3,6,6_0,6_3,6_0_1 -33197,2,72.0,0.0,5,111,1150.0,0.0,0.0,77,74,0.0,0.0,1589.5003617123202,3650.0,4300.817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,118451,1,3,3,0,2,,500.0,,41,0.0,1.0,5.0,2.0,1.5,3,2,1430.6115590273,1150.0,75974.98658369241,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04804212760181587,50649.99105579494,10,5,10,10_1,10_3,10_0_0 -33198,2,75.0,0.0,2,111,0.0,0.0,570.0,77,72,0.0,0.0,291.2206008573893,570.0,0.0,651.6500915519999,50,2,1,2,2,1,2,2,2,0,,2,,2,113051,1,2,0,1,1,588.0,0.0,386.0,41,1.0,3.0,5.0,3.0,2.0,3,3,1917.343825566,0.0,27907.051829446988,5,5,2,3,94.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.02042494504555823,13953.525914723494,3,2,3_0,3_0_0,3_3_0,3_0_1 -33199,2,78.0,0.0,2,111,503.0,125.0,0.0,77,77,0.0,0.0,695.2336364706931,628.0,0.0,226.7066126059311,71,2,1,2,1,1,2,2,2,0,,2,,2,113195,2,2,0,1,1,588.0,0.0,401.0,41,2.0,2.0,5.0,4.0,2.5,3,2,1524.0337346874,503.0,72263.0,5,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.008690477837897679,28905.2,8,4,8,8_0,8_3,8_0_1 -33200,2,62.0,0.0,2,111,780.0,2334.0,0.0,0,56,0.0,0.0,1078.0958975092258,3114.0,0.0,4233.065870577946,31,2,2,1,2,1,2,2,2,1,7.0,1,,2,122053,2,1,1,0,1,,760.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1566.30600234002,780.0,29457.900561600207,0,1,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.10571018099162331,29457.900561600207,8,4,8,8_1,8_3,8_0_1 -33201,2,31.0,0.0,2,111,350.0,0.0,0.0,55,68,0.0,0.0,483.76097965157567,430.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,109992,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2050.4630612786,350.0,37767.39916196329,1,1,1,2,69.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011385480852307835,20981.888423312936,5,3,5,5_0,5_3,5_0_1 -33202,2,49.0,0.0,2,111,240.0,70.0,0.0,0,90,0.0,0.0,331.72181461822333,310.0,0.0,126.95570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,106744,1,2,0,1,2,,0.0,,22,1.0,1.0,3.0,2.0,1.5,2,1,1815.1805949475,240.0,40999.5441354311,0,1,1,2,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.007561059678517336,27333.02942362073,7,4,7,7_0,7_3,7_0_1 -33203,2,45.0,0.0,2,111,480.0,710.0,0.0,54,63,0.0,0.0,663.4436292364467,1190.0,0.0,1287.6935596016888,71,0,0,0,0,0,0,0,0,0,,2,,2,115451,2,2,0,0,1,,0.0,,43,3.0,0.0,4.0,4.0,2.3,6,4,1989.32288932459,480.0,52918.64341397968,1,1,1,2,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022487348942237514,23008.105832165078,6,3,6,6_0,6_3,6_0_1 -33204,2,55.0,0.0,7,111,1180.0,0.0,0.0,0,75,4480.754631054002,124.22070057833493,1630.965588539598,4300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,114440,2,1,2,0,1,,520.0,,31,1.0,0.0,6.0,3.0,2.0,3,2,1471.05333772586,1180.0,27884.5935549809,0,7,0,1,200.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15420701727359085,13942.29677749045,3,2,3_0,3_1_0,3_3_0,3_0_0 -33205,2,43.0,0.0,8,111,0.0,0.0,1800.0,54,63,0.0,0.0,919.644002707545,1800.0,0.0,2057.8423943747366,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,123511,2,1,2,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1254.52242527272,0.0,53207.43838454234,1,1,1,2,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03382985640073457,25336.87542121064,7,4,7,7_1,7_3,7_0_0 -33206,1,88.0,203.0,5,111,480.0,120.0,0.0,86,78,0.0,0.0,663.4436292364467,600.0,0.0,217.63834810169388,71,0,0,0,0,0,0,0,0,0,,2,,3,118203,2,1,0,1,1,438.0,0.0,237.0,41,0.0,4.0,2.0,2.0,1.5,1,1,533.530969170589,480.0,17287.873106520565,6,5,2,3,44.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03470640930223479,11525.248737680377,2,1,2_1,2_0_1,2_3_1,2_0_0 -33207,2,83.0,0.0,2,111,268.0,100.0,0.0,0,78,0.0,0.0,370.4226929903494,368.0,0.0,181.36529008474488,71,2,1,2,2,1,2,2,2,0,,2,,2,112691,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,1949.04102593658,268.0,15510.218600230677,0,5,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.02372629358006127,15510.218600230677,3,2,3_0,3_0_0,3_3_0,3_0_1 -33208,1,77.0,151.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,276.4348455151861,662.0,0.0,0.0,71,2,1,2,2,1,2,2,1,0,,2,,2,132754,1,3,0,1,2,720.0,0.0,330.0,21,0.0,2.0,4.0,2.0,1.5,1,1,502.859219000951,200.0,18767.585978305433,0,5,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.035273582908598104,12511.723985536955,2,1,2_1,2_0_1,2_3_1,2_0_1 -33209,2,44.0,0.0,2,111,455.0,200.0,0.0,68,68,0.0,0.0,628.8892735470484,655.0,0.0,362.73058016948977,71,2,1,2,2,1,2,2,1,2,3.0,2,,2,116816,2,2,0,1,1,672.0,0.0,295.0,43,2.0,0.0,3.0,4.0,2.5,1,1,517.679009525957,455.0,27141.541619682117,1,1,2,3,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0241327485806855,10856.616647872846,2,1,2_0,2_0_0,2_3_0,2_0_1 -33210,2,32.0,0.0,5,111,550.0,0.0,0.0,42,46,0.0,0.0,760.1958251667618,630.0,137.62616033521533,0.0,31,0,0,0,0,0,0,0,0,4,40.0,2,,3,126618,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2170.63395334297,550.0,44534.68077321212,1,1,1,2,89.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01414627856452378,24741.48931845118,7,4,7,7_0,7_3,7_0_0 -33211,2,26.0,0.0,2,111,0.0,0.0,1157.0,0,37,0.0,0.0,591.1267284070165,1157.0,0.0,1322.7353612730947,50,0,0,0,0,0,0,0,0,0,,2,,2,111568,2,2,0,0,1,,0.0,270.0,22,1.0,3.0,4.0,3.0,2.0,1,1,562.847658531052,0.0,33167.106875154925,0,1,2,3,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034883959109098375,16583.553437577462,4,2,4_0,4_0_0,4_3_0,4_0_1 -33212,2,57.0,0.0,2,111,280.0,100.0,0.0,0,37,0.0,0.0,387.00878372126056,380.0,0.0,181.36529008474488,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,123464,2,1,0,1,2,,0.0,,22,2.0,1.0,4.0,2.0,1.5,5,5,1809.56121949021,280.0,46973.35627967045,0,1,1,2,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008089692329786957,31315.570853113633,8,4,8,8_0,8_3,8_0_1 -33213,2,61.0,0.0,2,111,800.0,600.0,0.0,54,48,0.0,0.0,1105.7393820607444,1400.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,115390,2,1,0,0,1,,0.0,800.0,43,3.0,0.0,4.0,3.0,2.0,1,1,2117.68868034084,800.0,56229.01251159902,1,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024898178670863292,28114.50625579951,8,4,8,8_0,8_3,8_0_1 -33214,2,61.0,0.0,5,111,0.0,0.0,470.0,77,77,0.0,0.0,240.12926737363676,470.0,0.0,537.3255140867368,71,0,0,0,0,0,0,0,0,0,,2,,3,123122,2,1,0,1,1,528.0,0.0,334.0,41,0.0,2.0,4.0,2.0,1.5,1,1,1547.07651788966,0.0,29035.784118664364,6,5,2,3,74.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01618692293892216,19357.18941244291,5,3,5,5_0,5_3,5_0_0 -33215,1,57.0,342.0,2,111,500.0,132.0,0.0,54,64,0.0,0.0,691.0871137879653,632.0,0.0,239.40218291186326,71,2,1,2,2,1,2,2,2,2,40.0,2,,2,120858,2,2,0,1,2,720.0,0.0,351.0,43,2.0,0.0,4.0,5.0,2.8,1,1,1625.74599150614,500.0,29850.726054959443,4,1,2,3,84.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.021172014336817063,10660.973591056945,2,1,2_1,2_0_1,2_3_1,2_0_1 -33216,2,37.0,0.0,5,111,700.0,750.0,0.0,55,53,0.0,0.0,967.5219593031513,1450.0,0.0,1360.2396756355868,50,0,0,0,0,0,0,0,0,0,,2,,3,126076,2,1,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,4.0,2.1,1,1,1954.84118025728,700.0,27065.185343511243,4,4,2,3,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05357436062589651,12888.183496910115,2,1,2_0,2_0_0,2_3_0,2_0_0 -33217,2,86.0,0.0,1,111,600.0,0.0,0.0,0,78,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,124971,2,1,0,0,1,,0.0,700.0,11,0.0,4.0,3.0,1.0,1.0,1,1,2247.6896431183,600.0,17200.094752713605,0,5,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.038371881637214465,17200.094752713605,4,2,4_0,4_0_0,4_3_0,4_1_0 -33218,2,73.0,0.0,2,111,240.0,120.0,0.0,78,77,0.0,0.0,331.72181461822333,360.0,0.0,217.63834810169388,71,2,2,2,2,2,2,2,1,0,,2,,2,101896,2,1,0,0,1,,0.0,314.0,41,0.0,4.0,5.0,2.0,1.5,1,1,487.957942603708,240.0,21396.682994682382,6,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.016825037791580552,14264.455329788254,3,2,3_0,3_0_0,3_3_0,3_0_1 -33219,1,36.0,240.0,2,111,540.0,600.0,0.0,0,85,0.0,0.0,746.3740828910024,1140.0,0.0,1088.1917405084694,70,2,2,2,1,2,2,2,2,0,,2,,2,130829,2,1,0,1,1,,0.0,200.0,31,0.0,0.0,2.0,2.0,1.3,2,2,516.234607430193,540.0,12221.230044427075,0,6,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.09328029959798066,9400.946188020827,1,1,1_1,1_0_1,1_3_1,1_0_1 -33220,2,34.0,0.0,2,111,840.0,500.0,0.0,52,54,0.0,0.0,1161.0263511637818,1340.0,0.0,906.8264504237244,71,2,2,2,2,1,2,2,2,3,30.0,2,,2,107730,2,1,0,0,1,,0.0,370.0,43,2.0,0.0,3.0,3.0,1.8,2,2,586.246669610944,840.0,41162.51200536746,1,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.03255389272222425,22868.062225204147,6,3,6,6_0,6_3,6_0_1 -33221,2,63.0,0.0,2,111,1000.0,500.0,0.0,78,62,0.0,0.0,1382.1742275759307,1500.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,110216,2,2,0,0,1,,0.0,,42,1.0,0.0,4.0,2.0,1.5,1,1,501.629766482129,1000.0,38230.97846126707,5,1,0,1,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03923519774728482,25487.318974178048,7,4,7,7_0,7_3,7_0_1 -33222,2,48.0,0.0,7,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,2197.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,128904,2,2,0,0,1,,0.0,490.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1922.16905052509,0.0,23577.108040945917,0,1,3,4,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09318360827733883,23577.108040945917,6,3,6,6_0,6_3,6_0_0 -33223,1,30.0,240.0,7,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1398.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,113663,1,2,0,0,1,,0.0,610.0,32,1.0,0.0,3.0,3.0,1.6,2,2,2535.47352315129,0.0,14063.229594777069,0,4,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09940817580900493,8789.518496735667,1,1,1_1,1_0_1,1_3_1,1_0_0 -33224,2,63.0,0.0,2,111,250.0,400.0,0.0,0,77,0.0,0.0,345.54355689398267,650.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,,2,124475,2,1,0,0,1,,0.0,500.0,11,0.0,2.0,2.0,1.0,1.0,2,2,1978.47253707063,250.0,22458.04764974076,0,5,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028942854255966596,22458.04764974076,6,3,6,6_0,6_3,6_0_1 -33225,2,76.0,0.0,2,111,800.0,700.0,0.0,86,75,0.0,0.0,1105.7393820607444,1500.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,0,,2,,2,103721,2,2,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,3,3,554.129256384906,800.0,49704.11803239696,5,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03017858598803233,33136.07868826464,8,4,8,8_0,8_3,8_0_1 -33226,2,30.0,0.0,1,111,700.0,0.0,0.0,55,68,746.7924385090004,0.0,967.5219593031513,1200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,102925,2,1,1,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,398.728919258556,700.0,7639.490760964688,1,1,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.1570785327906422,3321.5177221585604,1,1,1_0,1_1_0,1_3_0,1_1_0 -33227,2,90.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,98.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,2,129116,2,1,0,1,1,,297.0,320.0,11,0.0,0.0,2.0,1.0,1.0,5,4,630.583986940954,0.0,17862.90799497515,0,5,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.005486228783553466,17862.90799497515,4,2,4_0,4_0_0,4_3_0,4_0_1 -33228,2,44.0,0.0,1,111,1200.0,0.0,0.0,37,37,0.0,538.289702506118,1658.6090730911167,1820.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,14.0,1,,1,101186,1,1,1,0,1,,500.0,,43,2.0,0.0,5.0,2.0,1.5,3,3,1260.70380120308,1200.0,75061.93063458207,1,1,1,2,82.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02424664519835173,50041.28708972138,10,5,10,10_1,10_3,10_1_0 -33229,2,40.0,0.0,1,111,600.0,960.0,0.0,0,85,0.0,0.0,829.3045365455583,1560.0,0.0,1741.106784813551,42,0,0,0,0,0,0,0,0,0,,1,,1,126642,2,1,1,0,1,,400.0,,31,0.0,0.0,5.0,3.0,2.0,2,2,1798.51404462815,600.0,14536.94863017739,0,6,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10731275453237697,7268.474315088695,1,1,1_0,1_1_0,1_3_0,1_1_0 -33230,2,66.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1078.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,108728,2,1,0,0,1,,0.0,430.0,11,0.0,7.0,2.0,1.0,1.0,2,2,632.996781072911,0.0,8729.0,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.12349639133921411,8729.0,1,1,1_0,1_0_0,1_3_0,1_1_0 -33231,2,65.0,0.0,2,111,0.0,0.0,1200.0,0,43,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,116338,2,1,0,0,1,,200.0,,12,1.0,3.0,3.0,1.0,1.0,4,3,1946.99119745426,0.0,25950.43495062031,0,1,1,2,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.046241999499561974,25950.43495062031,7,4,7,7_0,7_3,7_0_1 -33232,1,24.0,126.0,2,111,240.0,131.0,0.0,55,52,0.0,621.1035028916747,331.72181461822333,971.0,0.0,237.58853001101582,20,2,1,2,1,2,2,2,2,2,30.0,2,,2,110057,1,3,0,1,1,502.0,0.0,333.0,43,2.0,0.0,3.0,2.0,1.5,4,4,515.537872549118,240.0,30678.131345892212,1,1,2,3,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.03165121072897475,20452.08756392814,5,3,5,5_0,5_3,5_0_1 -33233,2,60.0,0.0,2,111,1100.0,0.0,0.0,56,21,0.0,0.0,1520.3916503335236,1400.0,516.0981012570575,0.0,10,2,2,1,2,2,2,1,2,0,,2,,2,114998,1,2,0,0,1,,0.0,542.0,43,4.0,1.0,4.0,4.0,2.5,2,2,1508.03348398186,1100.0,59197.08170097028,1,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.02364981448024748,23678.832680388114,6,3,6,6_0,6_3,6_0_1 -33234,2,75.0,0.0,2,111,660.0,400.0,0.0,0,78,0.0,0.0,912.2349902001142,1060.0,0.0,725.4611603389795,42,0,0,0,0,0,0,0,0,0,,2,,2,110400,2,2,0,0,1,,156.0,257.0,11,0.0,0.0,5.0,1.0,1.0,2,2,505.359854126987,660.0,16910.9430458134,0,5,2,3,71.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06268130624817056,16910.9430458134,4,2,4_0,4_0_0,4_3_0,4_0_1 -33235,1,56.0,270.0,2,111,0.0,0.0,520.0,0,85,0.0,0.0,265.67493411551305,520.0,0.0,594.4878028193683,42,2,2,1,1,2,2,2,2,0,,2,,2,126088,1,1,0,1,2,408.0,300.0,318.0,11,0.0,3.0,3.0,1.0,1.0,2,2,1997.95034732287,0.0,11126.246102377707,0,7,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.046736338133746176,11126.246102377707,2,1,2_1,2_0_1,2_3_1,2_0_1 -33236,1,49.0,362.0,2,111,720.0,1200.0,0.0,85,46,0.0,0.0,995.16544385467,1920.0,0.0,2176.3834810169387,71,2,2,2,2,2,1,2,2,0,,2,,2,124571,1,3,0,0,2,,0.0,460.0,42,2.0,0.0,4.0,5.0,2.8,2,2,2009.66953739852,720.0,16783.196546041196,6,4,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.11440013794350086,5993.998766443285,1,1,1_1,1_0_1,1_3_1,1_0_1 -33237,2,49.0,0.0,1,111,750.0,420.0,0.0,0,68,0.0,0.0,1036.630670681948,1170.0,0.0,761.7342183559285,30,2,2,2,2,1,2,2,2,3,20.0,2,,1,108271,2,3,0,0,1,,0.0,380.0,22,2.0,3.0,2.0,2.0,1.5,1,1,1940.6110058265,750.0,27256.34597388604,0,1,2,3,30.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,1,1,0,0,0.04292578326973697,18170.897315924027,4,2,4_0,4_0_0,4_3_0,4_1_0 -33238,2,58.0,0.0,8,111,540.0,0.0,0.0,55,62,0.0,217.38622601208613,746.3740828910024,810.0,103.2196202514115,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,131247,2,1,1,0,1,,240.0,,43,2.0,2.0,3.0,2.0,1.5,3,2,371.449673833019,540.0,40882.42064085803,1,1,1,2,77.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01981291683082198,27254.947093905354,7,4,7,7_1,7_3,7_0_0 -33239,2,58.0,0.0,2,111,600.0,400.0,0.0,0,62,0.0,0.0,829.3045365455583,1000.0,0.0,725.4611603389795,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,119459,2,1,0,0,1,,220.0,235.0,22,2.0,0.0,4.0,2.0,1.5,2,2,452.432882512254,600.0,30872.584827770246,0,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03239119774319928,20581.723218513496,5,3,5,5_0,5_3,5_0_1 -33240,2,67.0,0.0,1,111,1000.0,1200.0,0.0,72,75,0.0,0.0,1382.1742275759307,2200.0,0.0,2176.3834810169387,70,2,2,2,2,1,2,2,2,0,,2,,1,103491,2,3,0,0,1,,450.0,1000.0,41,0.0,3.0,4.0,2.0,1.5,1,1,2290.62506280652,1000.0,44278.0184733519,5,5,2,3,85.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.04968605361877337,29518.6789822346,8,4,8,8_0,8_3,8_1_0 -33241,2,81.0,0.0,1,111,600.0,800.0,0.0,0,78,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,43,0,0,0,0,0,0,0,0,0,,2,,1,117212,2,1,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2023.05473783124,600.0,15874.835040810223,0,5,1,2,55.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.08818989277059892,15874.835040810223,3,2,3_0,3_0_0,3_3_0,3_1_0 -33242,2,42.0,0.0,1,111,720.0,0.0,0.0,0,43,1045.5094139126004,0.0,995.16544385467,1420.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,125555,2,1,2,0,1,,450.0,,32,1.0,0.0,4.0,2.0,1.3,2,2,385.270679047753,720.0,21424.515234707207,0,1,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06627921259565461,16480.39633439016,4,2,4_0,4_1_0,4_3_0,4_1_0 -33244,2,61.0,0.0,9,111,1200.0,0.0,0.0,72,43,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,107328,2,1,0,0,1,,220.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1769.11802913197,1200.0,57611.33234669536,5,1,1,2,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.020829235345202587,38407.55489779691,9,5,9,9_0,9_3,9_0_0 -33245,2,62.0,0.0,1,111,660.0,0.0,0.0,0,75,0.0,186.3310508675024,912.2349902001142,840.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,126795,2,1,2,0,1,,180.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,436.407816921929,660.0,25814.24084452389,0,5,0,1,48.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03254017830929913,25814.24084452389,7,4,7,7_1,7_3,7_1_0 -33246,2,77.0,0.0,1,111,126.0,0.0,0.0,0,77,0.0,0.0,174.15395267456725,924.0,1372.820949343773,0.0,43,2,2,1,2,2,2,2,1,0,,2,,1,112679,2,2,0,0,1,,0.0,225.0,11,0.0,2.0,2.0,1.0,1.0,2,2,699.848112186159,126.0,23147.176442697964,0,5,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.03991847568481667,23147.176442697964,6,3,6,6_0,6_3,6_1_0 -33247,2,49.0,0.0,7,111,1200.0,1000.0,0.0,85,48,0.0,0.0,1658.6090730911167,2200.0,0.0,1813.6529008474488,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,104845,2,3,1,0,1,,0.0,300.0,42,1.0,0.0,2.0,4.0,2.1,3,3,343.621092702944,1200.0,35896.39097839221,6,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06128749827034944,17093.5195135201,4,2,4_0,4_1_0,4_3_0,4_0_0 -33248,2,54.0,0.0,2,111,800.0,0.0,0.0,56,68,1194.8679016144006,0.0,1105.7393820607444,1750.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,110393,2,3,3,0,1,,900.0,,43,3.0,0.0,3.0,3.0,2.0,1,1,435.973482526041,800.0,29437.31075502352,1,1,0,1,58.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05944836519081009,14718.65537751176,3,2,3_0,3_1_0,3_3_0,3_0_1 -33249,1,47.0,406.0,5,211,460.0,0.0,0.0,0,85,0.0,0.0,635.800144684928,460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,117098,2,2,0,0,2,,220.0,660.0,31,0.0,0.0,2.0,3.0,1.8,2,2,972.524436408955,460.0,9394.70978237539,0,7,2,3,60.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04896372646475643,5219.283212430772,1,1,1_1,1_0_1,1_1_1,1_0_0 -33250,2,78.0,0.0,5,211,850.0,0.0,0.0,77,78,0.0,0.0,1174.848093439541,910.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,122876,2,1,0,0,1,,250.0,396.0,41,0.0,4.0,2.0,2.0,1.5,1,1,928.243749855263,850.0,20138.576303361864,5,5,2,3,45.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04518690826461689,13425.717535574577,3,2,3_0,3_0_0,3_1_0,3_0_0 -33251,2,47.0,0.0,2,211,1200.0,0.0,0.0,21,21,0.0,0.0,1658.6090730911167,1400.0,344.06540083803833,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,107035,2,1,2,0,1,,600.0,800.0,43,3.0,0.0,3.0,4.0,2.3,1,1,698.553691706645,1200.0,231361.21161449386,1,1,2,3,70.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.006051143967610064,100591.83113673647,10,5,10,10_1,10_1,10_0_1 -33252,0,31.0,0.0,2,211,1000.0,0.0,0.0,68,46,0.0,0.0,1382.1742275759307,1080.0,137.62616033521533,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,118754,2,1,2,0,1,,200.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,704.493883013839,1000.0,41155.847892778605,4,1,5,0,90.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026241714247114363,27437.23192851907,7,4,7,7_1,7_1,7_0_1 -33253,2,59.0,0.0,1,211,1400.0,0.0,0.0,0,63,0.0,0.0,1935.0439186063027,1435.0,60.21144514665671,0.0,60,0,0,0,0,0,0,0,0,1,3.0,1,,1,133109,2,2,2,0,1,,180.0,391.0,12,1.0,0.0,1.0,1.0,1.0,4,4,611.254012318146,1400.0,20976.682631250034,0,1,2,3,40.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06840929165139807,20976.682631250034,5,3,5,5_1,5_1,5_1_0 -33254,2,77.0,0.0,1,211,2000.0,0.0,0.0,72,72,0.0,1035.1725048194578,2764.3484551518613,5000.0,3440.6540083803834,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,107279,2,1,2,0,1,,1200.0,,41,1.0,2.0,8.0,3.0,2.0,4,3,652.705100596822,2000.0,30428.08136302694,5,5,0,1,280.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1643218953027871,15214.04068151347,3,2,3_0,3_1_0,3_1_0,3_1_0 -33255,2,33.0,0.0,7,211,0.0,0.0,0.0,0,69,0.0,0.0,0.0,1085.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,117472,2,1,0,0,1,,0.0,160.0,12,1.0,0.0,2.0,1.0,1.0,1,1,991.722990598138,0.0,27684.17610533508,0,1,3,4,45.0,1,3,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.039192063938319886,27684.17610533508,7,4,7,7_0,7_1,7_0_0 -33256,2,65.0,0.0,2,211,3240.0,0.0,0.0,72,21,4928.8300941594025,517.5862524097289,4478.244497346015,7070.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114986,2,1,2,0,1,,400.0,,42,1.0,3.0,5.0,2.0,1.5,4,4,637.333892682086,3240.0,112025.08954733223,6,1,0,1,200.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06311086229493994,74683.39303155482,10,5,10,10_1,10_1,10_0_1 -33257,2,47.0,0.0,6,211,1070.0,0.0,0.0,0,63,0.0,0.0,1478.9264235062458,1110.0,68.81308016760767,0.0,33,2,2,2,2,2,1,2,2,2,5.0,1,,4,108432,2,2,2,0,1,,210.0,428.0,12,1.0,2.0,3.0,1.0,1.0,3,2,572.17515899882,1070.0,9528.939871331864,0,1,2,3,72.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.11648724989224377,9528.939871331864,1,1,1_0,1_1_0,1_1_0,1_0_0 -33258,2,44.0,0.0,6,211,969.0,0.0,0.0,85,21,0.0,0.0,1339.3268265210768,1149.0,309.6588607542345,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,102625,2,1,2,0,1,,500.0,,42,1.0,0.0,4.0,4.0,2.3,2,2,540.47861372984,969.0,53732.407118548115,6,1,1,2,82.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021383743286709594,23361.916138499182,6,3,6,6_1,6_1,6_0_0 -33259,2,40.0,0.0,5,211,1800.0,0.0,0.0,85,47,0.0,0.0,2487.913609636675,1950.0,258.04905062852873,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,3,122458,1,2,2,0,2,,250.0,,42,1.0,0.0,6.0,5.0,2.6,3,3,543.148521176661,1800.0,46564.50693214332,6,1,0,1,150.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04187738963587998,17909.425743132044,4,2,4_0,4_1_0,4_1_0,4_0_0 -33260,2,65.0,0.0,5,211,1000.0,0.0,0.0,75,74,0.0,0.0,1382.1742275759307,1030.0,51.60981012570575,0.0,50,0,0,0,0,0,0,0,0,0,,8,,3,111134,2,1,0,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,777.65808039058,1000.0,87660.38031803824,5,5,0,1,107.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011749891983848177,58440.25354535883,10,5,10,10_0,10_1,10_0_0 -33261,2,91.0,0.0,2,211,987.0,0.0,0.0,21,75,1553.3282720987206,0.0,1364.2059626174434,2077.0,86.01635020950958,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,104853,2,1,1,0,1,,745.0,,41,0.0,3.0,7.0,2.0,1.5,1,1,596.33964775265,987.0,23302.644255993622,5,5,0,1,170.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08913151559895523,15535.096170662415,3,2,3_0,3_1_0,3_1_0,3_0_1 -33262,2,65.0,0.0,5,211,1500.0,0.0,0.0,75,74,0.0,0.0,2073.261341363896,3000.0,2580.4905062852877,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119904,2,1,2,0,2,,250.0,,41,0.0,2.0,5.0,2.0,1.5,1,1,573.978925631454,1500.0,55025.62845676244,5,5,0,1,105.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05452004973205011,36683.75230450829,9,5,9,9_1,9_1,9_0_0 -33263,0,48.0,0.0,1,211,0.0,0.0,0.0,56,22,0.0,465.827627168756,0.0,450.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123997,2,1,3,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,575.236871971014,0.0,152054.25241245137,1,1,5,0,53.0,1,3,9,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0029594700106075466,101369.50160830091,10,5,10,10_1,10_1,10_1_0 -33264,2,60.0,0.0,1,211,600.0,0.0,0.0,0,12,0.0,0.0,829.3045365455583,660.0,103.2196202514115,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,106058,2,2,3,0,1,,225.0,,22,2.0,1.0,3.0,3.0,2.0,1,1,611.632794938527,600.0,70949.6682576564,0,1,0,1,65.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.009302369076669747,35474.8341288282,9,5,9,9_1,9_1,9_1_0 -33265,0,46.0,0.0,2,211,1200.0,0.0,0.0,0,22,2240.377315527001,0.0,1658.6090730911167,2720.0,34.40654008380383,0.0,42,2,2,2,2,2,2,2,1,2,20.0,1,,2,108275,2,2,2,0,2,,0.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,736.377518400318,1200.0,58295.464831132456,0,1,5,0,200.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.0466588611631997,58295.464831132456,10,5,10,10_1,10_1,10_0_1 -33266,2,75.0,0.0,7,111,500.0,0.0,0.0,0,77,0.0,0.0,691.0871137879653,640.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,130603,2,1,0,0,1,,200.0,,11,0.0,3.0,4.0,1.0,1.0,2,2,2175.09234240347,500.0,23679.748617819663,0,5,0,1,108.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027027313943627864,23679.748617819663,6,3,6,6_0,6_2,6_0_0 -33267,1,88.0,78.0,2,111,406.0,0.0,0.0,0,86,0.0,0.0,561.1627363958278,406.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,123616,2,2,0,0,1,,0.0,768.0,11,0.0,3.0,3.0,1.0,1.0,2,2,2391.40316068789,406.0,14561.497951920759,0,6,2,3,70.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.027881746873881605,14561.497951920759,3,2,3_1,3_0_1,3_2_1,3_0_1 -33268,2,86.0,0.0,5,111,1400.0,0.0,0.0,0,78,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,3,129966,1,3,0,0,1,,300.0,,21,0.0,2.0,3.0,2.0,1.5,1,1,2065.67668649791,1400.0,64036.90491157639,0,5,0,1,69.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.021862393286077017,42691.26994105093,9,5,9,9_0,9_2,9_0_0 -33269,0,84.0,0.0,5,111,1432.0,0.0,0.0,77,75,0.0,0.0,1979.2734938887324,1432.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,114775,2,1,2,0,1,,166.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1518.59347439378,1432.0,46775.138366172905,5,5,0,1,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03061455401349708,31183.425577448605,8,4,8,8_1,8_2,8_0_0 -33270,2,39.0,0.0,2,111,1200.0,0.0,0.0,21,43,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,125943,2,2,1,0,2,,500.0,,43,2.0,4.0,3.0,2.0,1.5,2,2,1314.95539059802,1200.0,47159.10771694436,1,1,1,2,57.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025445774063465532,31439.405144629574,8,4,8,8_1,8_2,8_0_1 -33271,2,85.0,0.0,5,111,1800.0,0.0,0.0,77,75,0.0,0.0,2487.913609636675,2050.0,430.0817510475479,0.0,71,2,2,1,1,1,2,2,2,0,,1,,3,109333,2,1,2,0,2,,400.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1390.22777824068,1800.0,58481.02893357522,5,5,0,1,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03505410279850687,38987.35262238348,9,5,9,9_1,9_2,9_0_0 -33272,2,72.0,0.0,1,111,450.0,290.0,0.0,77,72,0.0,0.0,621.9784024091688,740.0,0.0,525.9593412457601,71,2,2,2,2,2,2,2,1,0,,2,,1,105922,2,3,0,0,1,,280.0,555.0,41,0.0,1.0,3.0,2.0,1.5,1,1,1962.62951421083,450.0,18793.51776821236,5,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.03937527870655738,12529.011845474908,2,1,2_0,2_0_0,2_3_0,2_1_0 -33273,2,74.0,0.0,2,111,1200.0,0.0,0.0,77,74,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,2,114334,2,3,0,0,2,,350.0,491.0,41,0.0,2.0,1.0,2.0,1.5,2,2,2212.20029037169,1200.0,20300.976831712676,5,5,2,3,33.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.05911045610994685,13533.984554475117,3,2,3_0,3_0_0,3_3_0,3_0_1 -33274,2,53.0,0.0,2,111,360.0,400.0,0.0,0,34,0.0,0.0,497.582721927335,760.0,0.0,725.4611603389795,12,0,0,0,0,0,0,0,0,1,15.0,2,,2,126349,2,3,0,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,2266.84045264979,360.0,41700.46776798908,0,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018225215223686433,41700.46776798908,9,5,9,9_0,9_3,9_0_1 -33275,2,32.0,0.0,2,111,380.0,0.0,0.0,63,56,0.0,0.0,525.2262064788536,598.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,111061,2,1,0,1,1,,240.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,2149.94049857011,380.0,41113.19977234902,1,1,1,2,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014545206972729699,22840.6665401939,6,3,6,6_0,6_3,6_0_1 -33276,2,84.0,0.0,6,111,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,100526,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,5,4,1946.61428768515,300.0,37832.054037810034,0,5,0,1,53.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007929783556033585,37832.054037810034,9,5,9,9_0,9_3,9_0_0 -33277,2,65.0,0.0,1,111,100.0,30.0,0.0,78,75,0.0,0.0,138.21742275759306,130.0,0.0,54.40958702542347,71,0,0,0,0,0,0,0,0,0,,2,,1,101778,2,1,0,0,1,,200.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1818.20838660154,100.0,31621.450158397776,5,5,0,1,46.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0041111334030794165,21080.966772265183,5,3,5,5_0,5_3,5_1_0 -33278,2,28.0,0.0,1,111,1200.0,0.0,0.0,0,55,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,1,122041,2,2,0,0,1,,310.0,510.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2300.20162722167,1200.0,23174.3455316,0,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05178139759604895,23174.3455316,6,3,6,6_0,6_3,6_1_0 -33279,2,63.0,0.0,6,111,740.0,0.0,0.0,0,75,0.0,124.22070057833493,1022.8089284061887,860.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,105350,2,1,2,0,1,,290.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1529.58456782507,740.0,20956.469764248257,0,5,0,1,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04103744617651014,20956.469764248257,5,3,5,5_1,5_3,5_0_0 -33280,2,57.0,0.0,8,111,0.0,0.0,0.0,33,45,0.0,0.0,0.0,2082.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,2001.0,6,112514,1,1,3,0,1,,0.0,750.0,43,2.0,1.0,4.0,3.0,2.0,1,1,1645.31927165886,0.0,66112.27427786622,1,1,2,3,92.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03149188290285507,33056.13713893311,8,4,8,8_1,8_3,8_0_0 -33281,2,59.0,0.0,2,111,1850.0,0.0,0.0,74,31,0.0,0.0,2557.0223210154713,1850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,2,112413,2,2,2,0,1,,600.0,,42,1.0,4.0,8.0,2.0,1.5,3,3,1443.44019794663,1850.0,156518.45812285,6,1,0,1,180.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011819692208748638,104345.63874856666,10,5,10,10_1,10_3,10_0_1 -33282,1,45.0,100.0,7,111,680.0,0.0,0.0,0,54,0.0,0.0,939.8784747516328,680.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,10.0,2,,5,125050,1,1,0,0,1,,0.0,380.0,32,1.0,0.0,3.0,2.0,1.5,1,1,1695.25098202052,680.0,18895.966945034903,0,1,2,3,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.035986515110764235,12597.311296689935,2,1,2_1,2_0_1,2_3_1,2_0_0 -33283,2,71.0,0.0,6,111,720.0,0.0,0.0,77,77,0.0,82.81380038555662,995.16544385467,950.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,127738,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1256.19317819675,720.0,33849.09894421469,5,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028065739698585654,22566.065962809793,6,3,6,6_1,6_3,6_0_0 -33284,2,68.0,0.0,2,111,360.0,0.0,0.0,72,77,0.0,0.0,497.582721927335,855.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118876,2,1,0,1,1,,0.0,592.0,41,0.0,2.0,2.0,2.0,1.5,2,2,2223.81384290454,360.0,32398.00608097221,5,5,2,3,53.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026390512979814307,21598.67072064814,6,3,6,6_0,6_3,6_0_1 -33285,1,50.0,167.0,5,111,300.0,190.0,0.0,0,22,0.0,0.0,414.65226827277917,490.0,0.0,344.5940511610153,71,0,0,0,0,0,0,0,0,0,,2,,3,111766,2,2,0,1,1,,132.0,,32,1.0,3.0,4.0,2.0,1.5,4,4,1986.11189268357,300.0,13101.783651953445,0,1,1,2,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03739948796414007,8734.52243463563,1,1,1_1,1_0_1,1_3_1,1_0_0 -33286,2,36.0,0.0,2,111,450.0,0.0,0.0,0,52,0.0,0.0,621.9784024091688,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,101287,2,1,0,0,1,,246.0,507.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2359.79948126762,450.0,21899.183664786022,0,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02054871117061783,21899.183664786022,6,3,6,6_0,6_3,6_0_1 -33287,2,82.0,0.0,8,111,704.0,0.0,0.0,77,75,0.0,0.0,973.0506562134551,704.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,130485,2,1,0,0,1,,339.0,662.0,41,0.0,3.0,2.0,2.0,1.5,2,2,1914.53342647196,704.0,29797.64416376021,5,5,2,3,46.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023626028827346098,19865.096109173475,5,3,5,5_0,5_3,5_0_0 -33288,0,92.0,0.0,1,111,943.0,0.0,0.0,0,71,2987.1697540360015,0.0,1303.3902966041026,2978.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102782,2,2,3,0,2,,0.0,,11,0.0,4.0,5.0,1.0,1.0,2,2,1660.37031989201,943.0,28083.77167832519,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10603988787939031,28083.77167832519,8,4,8,8_1,8_3,8_1_0 -33289,2,71.0,0.0,6,111,1140.0,0.0,0.0,74,74,0.0,207.03450096389156,1575.678619436561,1340.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,123841,2,1,2,0,2,,300.0,,41,0.0,0.0,4.0,2.0,1.5,3,2,1475.91349037691,1140.0,41925.484591959255,5,5,0,1,98.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03196146718497307,27950.32306130617,7,4,7,7_1,7_3,7_0_0 -33290,2,70.0,0.0,7,111,1200.0,0.0,0.0,54,75,0.0,144.92415067472407,1658.6090730911167,1340.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,103032,1,1,2,0,1,,600.0,,42,2.0,2.0,4.0,3.0,2.0,4,4,1672.84082952759,1200.0,75265.05732800234,4,5,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017803746487036202,37632.52866400117,9,5,9,9_1,9_3,9_0_0 -33291,2,68.0,0.0,2,111,700.0,1600.0,0.0,0,72,0.0,62.110350289167464,967.5219593031513,2360.0,0.0,2901.844641355918,41,0,0,0,0,0,0,0,0,0,,1,,2,102712,2,3,4,0,1,,270.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1748.61253150085,700.0,57722.126240103964,0,5,0,1,118.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04088553478060079,57722.126240103964,10,5,10,10_1,10_3,10_0_1 -33292,2,61.0,0.0,5,111,650.0,0.0,0.0,0,75,0.0,0.0,898.4132479243549,685.0,60.21144514665671,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,130938,2,1,0,0,1,,213.0,728.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2724.30371556052,650.0,6786.550812859461,0,6,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.10093492539715923,6786.550812859461,1,1,1_0,1_0_0,1_3_0,1_0_0 -33293,2,53.0,0.0,6,111,750.0,0.0,0.0,0,43,0.0,0.0,1036.630670681948,1050.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,111335,2,3,3,0,1,,500.0,600.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1325.93728516681,750.0,22100.55780988383,0,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04751011304929227,22100.55780988383,6,3,6,6_1,6_3,6_0_0 -33294,0,30.0,0.0,9,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,70.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,109612,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,1441.69730075294,0.0,38279.00534718468,1,1,5,0,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0018286786546596703,18228.097784373655,4,2,4_0,4_1_0,4_3_0,4_0_0 -33295,2,81.0,0.0,6,111,1550.0,0.0,0.0,86,74,0.0,0.0,2142.370052742692,1550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,115817,2,1,2,0,1,,200.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1517.52861059943,1550.0,61609.46060233979,6,5,0,1,156.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025158473793570828,41072.97373489319,9,5,9,9_1,9_3,9_0_0 -33296,2,59.0,0.0,5,111,700.0,0.0,0.0,0,65,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,4,60.0,2,,3,104178,2,1,0,0,1,,200.0,350.0,12,1.0,0.0,2.0,1.0,1.0,4,3,1839.72063145116,700.0,24011.21394440949,0,1,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031651877400265725,24011.21394440949,6,3,6,6_0,6_3,6_0_0 -33297,1,44.0,70.0,1,112,1200.0,0.0,0.0,52,62,0.0,0.0,1658.6090730911167,1330.0,223.64251054472493,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,1,117184,2,2,3,0,1,,260.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1254.72389365752,1200.0,37392.38745287272,1,1,1,2,100.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.035568737130686236,17805.898787082246,4,2,4_1,4_1_1,4_1_1,4_1_0 -33298,2,72.0,0.0,1,112,400.0,0.0,0.0,77,78,0.0,0.0,552.8696910303722,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102288,2,1,2,0,1,,360.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1183.0769372013,400.0,31647.29794067015,5,5,0,1,100.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012639309705046174,21098.198627113434,5,3,5,5_1,5_1,5_1_0 -33299,1,23.0,450.0,9,112,900.0,0.0,0.0,85,63,0.0,0.0,1243.9568048183376,1020.0,206.439240502823,0.0,71,2,2,2,2,1,1,2,2,0,,1,2006.0,6,114902,1,2,1,0,1,,200.0,800.0,42,1.0,0.0,6.0,5.0,2.4,4,4,1427.10234936217,900.0,12877.296268567476,6,4,2,3,72.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,1,0.07920917393892259,5365.540111903115,1,1,1_1,1_1_1,1_1_1,1_0_0 -33300,1,31.0,310.0,8,112,420.0,0.0,0.0,0,85,0.0,258.79312620486445,580.5131755818909,790.0,206.439240502823,0.0,43,0,0,0,0,0,0,0,0,0,,2,2003.0,6,133487,2,1,0,0,1,,300.0,600.0,31,0.0,0.0,3.0,3.0,1.6,2,1,1791.0862316927,420.0,11892.759574949536,0,6,2,3,65.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06642697138719818,7432.974734343459,1,1,1_1,1_0_1,1_1_1,1_0_0 -33301,2,78.0,0.0,1,112,430.0,0.0,0.0,0,77,0.0,207.03450096389156,594.3349178576501,690.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,116770,2,3,0,0,1,,0.0,708.0,11,0.0,3.0,3.0,1.0,1.0,4,2,1822.73237159751,430.0,23873.781395580943,0,5,2,3,75.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02890199874778612,23873.781395580943,6,3,6,6_0,6_1,6_1_0 -33302,2,35.0,0.0,6,112,1800.0,0.0,0.0,53,46,0.0,0.0,2487.913609636675,1870.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101493,2,2,1,0,2,,650.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,1325.86569563412,1800.0,50230.39164539005,4,1,1,2,110.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03722845748847792,27905.773136327807,7,4,7,7_1,7_1,7_0_0 -33303,2,49.0,0.0,7,112,0.0,0.0,0.0,85,46,0.0,0.0,0.0,689.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,129595,2,3,2,0,1,,704.0,,42,1.0,2.0,6.0,5.0,2.8,2,2,1127.68248427796,0.0,55554.206383435165,6,1,1,2,120.0,9,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012402301191101923,19840.78799408399,5,3,5,5_1,5_1,5_0_0 -33304,2,39.0,0.0,6,112,1300.0,0.0,0.0,53,33,0.0,362.31037668681023,1796.8264958487098,1650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,119812,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1184.20063135974,1300.0,101160.2075947944,1,1,1,2,130.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016310761308529653,42150.086497831,9,5,9,9_1,9_1,9_0_0 -33305,2,35.0,0.0,5,112,925.0,0.0,0.0,43,63,0.0,351.95865163861566,1278.5111605077357,1265.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,128169,2,1,1,0,1,,480.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1115.70856393417,925.0,51370.4996898506,1,1,1,2,88.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024625028131659954,24462.142709452666,7,4,7,7_1,7_1,7_0_0 -33306,2,36.0,0.0,9,112,1500.0,0.0,0.0,54,47,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,50,1,2,2,1,2,2,2,2,0,,1,2004.0,6,104148,2,1,3,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1067.61496279898,1500.0,36241.603585795354,1,1,1,2,90.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.041388897057190774,17257.906469426358,4,2,4_0,4_1_0,4_1_0,4_0_0 -33307,2,46.0,0.0,1,112,600.0,0.0,0.0,46,54,0.0,0.0,829.3045365455583,700.0,172.03270041901916,0.0,50,2,2,2,2,1,2,2,2,2,90.0,1,,1,112138,2,3,2,0,1,,420.0,,43,2.0,0.0,5.0,4.0,2.1,4,2,1183.48056971428,600.0,51997.246592204654,1,1,0,1,120.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.013462251289762387,24760.593615335547,7,4,7,7_1,7_1,7_1_0 -33308,2,48.0,0.0,1,112,590.0,0.0,0.0,56,48,0.0,507.23452736153433,815.482794269799,1200.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,111526,1,2,3,0,2,,280.0,696.0,43,2.0,0.0,5.0,4.0,2.1,3,3,1408.86914565148,590.0,34534.7286102848,1,1,2,3,95.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03474763081365659,16445.108862040383,4,2,4_0,4_1_0,4_1_0,4_1_0 -33309,2,50.0,0.0,1,112,660.0,0.0,0.0,0,55,0.0,0.0,912.2349902001142,800.0,240.84578058662683,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,118971,1,2,2,0,1,,140.0,,22,1.0,3.0,2.0,2.0,1.5,2,2,1244.17019301418,660.0,27589.204146085256,0,1,0,1,50.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.0289968494837324,18392.802764056836,4,2,4_0,4_1_0,4_1_0,4_1_0 -33310,1,52.0,289.0,5,112,1440.0,0.0,0.0,52,11,0.0,0.0,1990.33088770934,1550.0,189.2359704609211,0.0,50,2,2,2,1,1,2,2,2,0,,1,,3,102468,1,1,3,0,1,,160.0,840.0,43,2.0,2.0,3.0,3.0,1.8,1,1,1562.86196952779,1440.0,7873.296195740753,1,1,2,3,120.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.1968679904153116,4374.053442078196,1,1,1_1,1_1_1,1_1_1,1_0_0 -33311,0,50.0,0.0,2,112,1500.0,0.0,0.0,62,63,0.0,0.0,2073.261341363896,1600.0,172.03270041901916,0.0,71,2,2,2,2,1,2,1,2,2,30.0,1,,2,125404,2,2,1,0,1,,0.0,,43,2.0,2.0,3.0,2.0,1.5,4,3,1180.72875465913,1500.0,23919.08290199544,1,1,0,1,43.0,9,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.06689219676840205,15946.05526799696,3,2,3_0,3_1_0,3_1_0,3_0_1 -33312,2,51.0,0.0,6,112,2000.0,0.0,0.0,43,43,0.0,0.0,2764.3484551518613,2300.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,119647,2,2,1,0,1,,0.0,,43,3.0,0.0,7.0,5.0,3.0,4,4,1228.48993675731,2000.0,141420.39264865607,1,1,0,1,150.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016263566780740778,47140.13088288536,10,5,10,10_1,10_1,10_0_0 -33313,2,61.0,0.0,1,112,600.0,0.0,0.0,77,72,2987.1697540360015,207.03450096389156,829.3045365455583,2900.0,172.03270041901916,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,128258,2,2,1,0,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,3,2,1209.99665787691,600.0,16843.826354995734,6,5,0,1,100.0,9,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1721699059869425,11229.217569997156,2,1,2_0,2_1_0,2_1_0,2_1_0 -33314,2,56.0,0.0,6,112,1467.0,0.0,0.0,77,52,0.0,0.0,2027.6495918538901,1527.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,128537,2,2,3,0,1,,311.0,,42,1.0,2.0,4.0,2.0,1.5,3,3,1361.78766067214,1467.0,60366.238893157424,5,1,1,2,90.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025295596147751506,40244.15926210495,9,5,9,9_1,9_1,9_0_0 -33315,2,39.0,0.0,8,112,800.0,0.0,0.0,22,64,1493.5848770180007,0.0,1105.7393820607444,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,116207,2,1,2,0,1,,800.0,,43,2.0,0.0,5.0,5.0,2.4,3,3,1150.53670741299,800.0,39716.42665011369,1,1,1,2,150.0,9,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045321297806001075,16548.511104214038,4,2,4_0,4_1_0,4_1_0,4_0_0 -33316,2,66.0,0.0,6,112,600.0,0.0,0.0,75,77,0.0,93.1655254337512,829.3045365455583,690.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,108781,2,1,2,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,1,1,1167.56695259134,600.0,33064.286150244036,5,5,0,1,103.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02086843783242867,22042.857433496025,6,3,6,6_1,6_1,6_0_0 -33317,2,33.0,0.0,9,112,800.0,0.0,0.0,85,21,0.0,0.0,1105.7393820607444,860.0,103.2196202514115,0.0,41,0,0,0,0,0,0,0,0,0,,1,2007.0,6,122886,2,1,1,0,1,,500.0,,42,1.0,0.0,3.0,3.0,1.8,1,1,1333.69374881045,800.0,20792.411264311308,6,1,1,2,70.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041361244209137435,11551.339591284059,2,1,2_0,2_1_0,2_1_0,2_0_0 -33318,2,62.0,0.0,5,112,1200.0,0.0,0.0,0,56,1642.9433647198007,0.0,1658.6090730911167,2335.0,60.21144514665671,0.0,20,2,2,2,2,1,1,2,2,0,,1,,3,130041,2,1,2,0,2,,0.0,,12,1.0,1.0,7.0,1.0,1.0,1,1,1318.07664465762,1200.0,13319.524356569791,0,1,0,1,160.0,9,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.17530656031634287,13319.524356569791,3,2,3_0,3_1_0,3_1_0,3_0_0 -33319,2,76.0,0.0,2,112,500.0,0.0,0.0,72,78,0.0,434.77245202417225,691.0871137879653,985.0,111.82125527236246,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,133247,2,2,2,0,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1287.23653881457,500.0,21639.148568030105,5,5,0,1,100.0,9,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.045519351045782315,14426.099045353403,3,2,3_0,3_1_0,3_1_0,3_0_1 -33320,2,48.0,0.0,7,112,420.0,0.0,0.0,85,47,0.0,414.0690019277831,580.5131755818909,915.0,163.4310653980682,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,128160,2,1,2,0,1,,0.0,,42,1.0,0.0,7.0,5.0,3.0,1,1,1161.0962603451,420.0,64256.62060316121,5,1,0,1,110.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014239777806724325,21418.87353438707,6,3,6,6_1,6_1,6_0_0 -33321,0,27.0,0.0,1,112,650.0,0.0,0.0,85,62,0.0,496.8828023133397,898.4132479243549,1225.0,163.4310653980682,0.0,31,2,2,2,2,1,2,2,2,0,,1,,1,116121,1,1,3,0,2,,400.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1539.36883046435,650.0,49021.47949725851,6,1,5,0,90.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.02498904587464577,27234.155276254725,7,4,7,7_1,7_1,7_1_0 -33322,2,61.0,0.0,5,112,700.0,0.0,0.0,77,78,0.0,383.01382678319936,967.5219593031513,1140.0,120.42289029331342,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,105579,2,1,2,0,1,,430.0,,41,0.0,3.0,5.0,2.0,1.5,4,3,1141.63654440029,700.0,47228.98038119707,5,5,1,2,90.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0241377220257302,31485.98692079805,8,4,8,8_1,8_1,8_0_0 -33323,1,25.0,350.0,1,112,350.0,0.0,0.0,0,67,0.0,0.0,483.76097965157567,420.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,1,120484,2,1,0,0,1,,160.0,410.0,32,1.0,0.0,1.0,2.0,1.3,3,3,1973.34131936374,350.0,19202.341155076865,0,1,2,3,30.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.021872332993571313,14771.031657751435,3,2,3_1,3_0_1,3_1_1,3_1_0 -33324,2,50.0,0.0,1,112,700.0,0.0,0.0,0,43,0.0,0.0,967.5219593031513,760.0,103.2196202514115,0.0,71,2,2,2,2,1,2,2,2,2,15.0,2,,1,133023,1,3,0,0,2,,300.0,550.0,12,1.0,2.0,3.0,1.0,1.0,4,3,1881.71654824,700.0,25555.0,0,1,2,3,75.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.02973977695167286,25555.0,7,4,7,7_0,7_1,7_1_0 -33325,1,29.0,60.0,1,112,750.0,0.0,0.0,85,21,0.0,155.27587572291867,1036.630670681948,990.0,154.82943037711726,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,122786,2,1,1,0,1,,300.0,,42,1.0,0.0,5.0,4.0,2.1,1,1,1312.65838153508,750.0,10533.446353054973,6,1,1,2,100.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.09398633332507307,5015.9268347880825,1,1,1_1,1_1_1,1_1_1,1_1_0 -33326,2,47.0,0.0,2,112,700.0,0.0,0.0,0,43,0.0,0.0,967.5219593031513,700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,118827,2,1,2,0,2,,200.0,,32,2.0,0.0,5.0,3.0,2.0,2,2,1421.5747063723,700.0,37915.897016707204,0,1,1,2,85.0,9,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018461913209953943,18957.948508353602,5,3,5,5_1,5_1,5_0_1 -33327,2,78.0,0.0,8,112,660.0,0.0,0.0,77,77,0.0,310.55175144583734,912.2349902001142,1040.0,137.62616033521533,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,110556,2,1,1,0,1,,340.0,,41,0.0,2.0,3.0,2.0,1.5,1,1,1053.33530670565,660.0,22778.901701953546,5,5,0,1,74.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04565628376678092,15185.934467969031,3,2,3_0,3_1_0,3_1_0,3_0_0 -33328,2,72.0,0.0,1,112,850.0,0.0,0.0,0,71,0.0,0.0,1174.848093439541,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112412,2,1,2,0,2,,220.0,,11,0.0,1.0,4.0,1.0,1.0,4,4,1522.64414967029,850.0,20005.837841738936,0,5,0,1,90.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04248759820629021,20005.837841738936,5,3,5,5_1,5_1,5_1_0 -33329,2,79.0,0.0,6,112,1500.0,0.0,0.0,0,74,0.0,0.0,2073.261341363896,1560.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,105104,2,2,1,0,2,,600.0,,11,0.0,4.0,4.0,1.0,1.0,2,2,1357.19157180215,1500.0,42300.39199373685,0,5,0,1,120.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03687909086589503,42300.39199373685,9,5,9,9_1,9_1,9_0_0 -33330,2,44.0,0.0,9,112,1600.0,0.0,0.0,52,33,0.0,724.6207533736205,2211.478764121489,2300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,100146,2,2,1,0,1,,490.0,,43,3.0,1.0,5.0,4.0,2.3,2,2,1133.05448308838,1600.0,70554.60434299243,1,1,1,2,105.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03259886468668772,30675.914931735842,8,4,8,8_1,8_1,8_0_0 -33331,1,64.0,110.0,9,112,430.0,600.0,0.0,0,78,0.0,0.0,594.3349178576501,1030.0,0.0,1088.1917405084694,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,112632,2,1,0,1,1,438.0,0.0,430.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1477.17795617661,430.0,14390.72670899547,0,5,2,3,50.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07157386981410463,14390.72670899547,3,2,3_1,3_0_1,3_1_1,3_0_0 -33332,1,63.0,215.0,9,112,375.0,625.0,0.0,0,78,0.0,0.0,518.315335340974,1000.0,0.0,1133.5330630296555,71,0,0,0,0,0,0,0,0,0,,8,2005.0,6,132454,2,1,0,0,1,,0.0,480.0,11,0.0,1.0,3.0,1.0,1.0,3,2,1527.74859324213,375.0,12211.906149733593,0,5,2,3,65.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08188729816121419,12211.906149733593,2,1,2_1,2_0_1,2_1_1,2_0_0 -33333,1,50.0,377.0,9,112,430.0,640.0,0.0,0,56,0.0,0.0,594.3349178576501,1070.0,0.0,1160.7378565423674,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,107032,2,1,0,0,1,,0.0,535.0,32,2.0,1.0,4.0,3.0,1.8,1,1,1545.52864419572,430.0,19986.57934827386,0,1,2,3,83.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05353592434977677,11103.655193485478,2,1,2_1,2_0_1,2_1_1,2_0_0 -33334,2,69.0,0.0,9,112,430.0,400.0,0.0,0,77,0.0,0.0,594.3349178576501,830.0,0.0,725.4611603389795,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,133458,2,1,0,1,1,,280.0,,11,0.0,0.0,2.0,1.0,1.0,3,3,1570.05909833588,430.0,30039.132814163124,0,5,0,1,50.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02763062453016833,30039.132814163124,8,4,8,8_0,8_1,8_0_0 -33335,0,72.0,0.0,1,112,850.0,0.0,0.0,77,75,0.0,0.0,1174.848093439541,945.0,163.4310653980682,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,120899,2,2,3,0,1,,150.0,,41,0.0,3.0,3.0,2.0,1.5,1,1,1139.41624915794,850.0,46097.41757993186,5,5,0,1,49.0,9,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.02050006376954613,30731.611719954573,8,4,8,8_1,8_1,8_1_0 -33336,2,34.0,0.0,6,112,600.0,0.0,0.0,54,38,0.0,0.0,829.3045365455583,640.0,68.81308016760767,0.0,71,2,2,2,2,1,2,2,2,2,15.0,1,,4,127236,1,3,3,0,2,,180.0,680.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1255.34888113348,600.0,31247.284919280617,4,1,2,3,45.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.020481779509908673,20831.52327952041,5,3,5,5_1,5_1,5_0_0 -33337,2,88.0,0.0,1,112,150.0,0.0,0.0,0,75,0.0,0.0,207.32613413638958,150.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,102510,2,1,2,0,1,,500.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1255.15263766139,150.0,45066.42921518203,0,5,0,1,100.0,9,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0033284199039552006,45066.42921518203,10,5,10,10_1,10_1,10_1_0 -33338,2,61.0,0.0,5,112,1200.0,0.0,0.0,52,78,0.0,0.0,1658.6090730911167,1270.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103502,2,1,2,0,1,,240.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1054.09689341903,1200.0,23339.994527124414,1,5,0,1,91.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054413037609073914,15559.996351416276,3,2,3_0,3_1_0,3_1_0,3_0_0 -33339,2,60.0,0.0,6,112,2000.0,0.0,0.0,0,46,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,130447,2,1,2,0,1,,129.0,,12,1.0,2.0,4.0,1.0,1.0,3,2,1219.68887969119,2000.0,69706.41953406244,0,1,0,1,89.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02869176201228767,69706.41953406244,10,5,10,10_1,10_1,10_0_0 -33340,2,42.0,0.0,2,112,0.0,0.0,900.0,46,33,0.0,0.0,459.8220013537725,940.0,68.81308016760767,1028.9211971873683,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,108742,2,1,0,1,1,,520.0,,43,2.0,0.0,5.0,4.0,2.1,1,1,1360.02634663774,0.0,79900.17216894728,1,1,1,2,88.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011764680531756418,38047.70103283203,9,5,9,9_0,9_1,9_0_1 -33341,2,37.0,0.0,8,112,1900.0,0.0,0.0,22,37,0.0,0.0,2626.131032394268,1900.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,40.0,1,2000.0,6,103091,2,1,3,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,1,1,1026.07785120327,1900.0,62783.02112389005,1,1,1,2,90.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.03026295909288469,29896.676725661928,8,4,8,8_1,8_1,8_0_0 -33342,2,81.0,0.0,5,112,2000.0,0.0,0.0,86,78,0.0,0.0,2764.3484551518613,2300.0,516.0981012570575,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,120814,2,1,1,0,1,,300.0,,41,1.0,2.0,7.0,3.0,2.0,2,2,1199.13288920226,2000.0,65511.451369394286,6,5,0,1,160.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03510836581884242,32755.725684697143,8,4,8,8_1,8_1,8_0_0 -33343,2,77.0,0.0,1,112,480.0,1500.0,0.0,77,77,0.0,0.0,663.4436292364467,1980.0,0.0,2720.4793512711735,71,0,0,0,0,0,0,0,0,0,,1,,1,132605,2,2,2,0,1,,280.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1130.04237061527,480.0,49432.69498278908,5,5,0,1,120.0,9,2,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04005446194445547,32955.12998852605,8,4,8,8_1,8_1,8_1_0 -33344,2,45.0,0.0,1,112,500.0,0.0,0.0,46,37,2987.1697540360015,0.0,691.0871137879653,4842.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,90.0,1,,1,114487,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.3,2,2,1070.8106580666,500.0,92707.85923762798,1,1,0,1,120.0,9,2,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05222858169542053,40307.764885925215,9,5,9,9_1,9_1,9_1_0 -33345,0,65.0,0.0,1,112,0.0,0.0,0.0,85,69,0.0,0.0,0.0,1106.0,309.6588607542345,0.0,50,2,2,2,2,1,2,2,2,0,,3,,1,101377,1,3,0,0,2,,0.0,,42,1.0,2.0,2.0,2.0,1.5,5,4,1409.37782420397,0.0,29928.0,6,1,5,0,70.0,9,2,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1,1,1,0,0,0.03695535952953756,19952.0,5,3,5,5_0,5_1,5_1_0 -33346,2,65.0,0.0,7,111,165.0,0.0,0.0,78,72,0.0,0.0,228.05874755002856,445.0,481.69156117325366,0.0,31,2,2,2,2,1,2,2,2,0,,7,,5,111813,1,2,0,0,2,,110.0,,41,0.0,1.0,3.0,2.0,1.5,4,4,1115.47200767771,165.0,39610.76249150945,7,5,0,1,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.011234320472760037,26407.17499433963,7,4,7,7_1,7_3,7_0_0 -33347,2,67.0,0.0,6,111,800.0,0.0,0.0,75,74,0.0,0.0,1105.7393820607444,1520.0,1238.635443016938,0.0,31,0,0,0,0,0,0,0,0,0,,7,,4,118206,2,1,0,0,1,,600.0,,41,1.0,2.0,3.0,3.0,2.0,3,3,1362.10398065086,800.0,45212.913739343225,5,5,0,1,36.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0336187136436936,22606.456869671612,6,3,6,6_1,6_3,6_0_0 -33348,2,53.0,0.0,7,111,550.0,0.0,0.0,78,68,0.0,0.0,760.1958251667618,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,101573,2,1,2,0,1,,450.0,,42,1.0,5.0,2.0,2.0,1.5,2,2,1188.6961186363,550.0,23117.151090582407,7,1,0,1,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023791859033359092,15411.434060388272,3,2,3_0,3_1_0,3_3_0,3_0_0 -33349,2,64.0,0.0,9,111,0.0,0.0,0.0,46,75,0.0,0.0,0.0,1570.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,118957,2,1,2,0,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,1,1,1151.78877192015,0.0,36968.0,4,5,0,1,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042469162518935295,24645.333333333332,7,4,7,7_1,7_3,7_0_0 -33350,2,58.0,0.0,6,111,792.0,0.0,0.0,77,75,0.0,0.0,1094.681988240137,862.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101924,2,1,3,0,1,,0.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1043.37497474974,792.0,27648.24280831271,5,7,0,1,48.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03117738823318028,18432.16187220847,4,2,4_0,4_1_0,4_3_0,4_0_0 -33351,2,54.0,0.0,6,111,816.0,0.0,0.0,0,52,0.0,0.0,1127.8541697019593,816.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,4,106959,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,1834.47313980907,816.0,28650.32691457999,0,1,0,1,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028481350402488503,28650.32691457999,8,4,8,8_0,8_3,8_0_0 -33352,1,60.0,250.0,2,111,346.0,263.0,0.0,0,75,0.0,776.3793786145933,478.232282741272,1359.0,0.0,476.9907129228791,12,2,2,2,1,2,2,2,2,0,,2,,2,125808,1,3,0,0,2,,166.0,357.0,11,0.0,2.0,2.0,1.0,1.0,2,2,2084.68299417032,346.0,11226.791030905799,0,7,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.12104972794620132,11226.791030905799,2,1,2_1,2_0_1,2_3_1,2_0_1 -33353,2,65.0,0.0,2,111,200.0,100.0,0.0,0,78,0.0,0.0,276.4348455151861,300.0,0.0,181.36529008474488,33,0,0,0,0,0,0,0,0,0,,2,,2,122278,2,1,0,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,2,2,1889.67441692752,200.0,12632.959368630105,0,5,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023747404804051978,12632.959368630105,2,1,2_0,2_0_0,2_3_0,2_0_1 -33354,0,78.0,0.0,2,111,95.0,300.0,0.0,0,77,0.0,0.0,131.3065516197134,395.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,0,,2,,2,130817,1,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,2,2,2377.85024910677,95.0,23861.169758862394,0,5,5,0,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016554092024482207,23861.169758862394,6,3,6,6_0,6_3,6_0_1 -33355,2,75.0,0.0,2,111,223.0,180.0,0.0,77,75,0.0,0.0,308.2248527494325,403.0,0.0,326.4575221525408,42,2,1,2,2,1,2,2,2,0,,2,,2,103545,2,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,1665.41719252916,223.0,26713.500483266966,5,5,0,1,76.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015086004930444614,17809.000322177977,4,2,4_0,4_0_0,4_3_0,4_0_1 -33356,2,50.0,0.0,2,111,700.0,1000.0,0.0,52,48,0.0,0.0,967.5219593031513,1700.0,0.0,1813.6529008474488,71,0,0,0,0,0,0,0,0,2,8.0,2,,2,104507,1,2,0,0,1,,384.0,840.0,43,2.0,1.0,5.0,5.0,2.4,4,3,1776.92450196344,700.0,28517.385016515178,1,1,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.059612758989489555,11882.243756881324,2,1,2_0,2_0_0,2_3_0,2_0_1 -33357,2,59.0,0.0,1,111,1500.0,0.0,0.0,0,34,0.0,0.0,2073.261341363896,1530.0,51.60981012570575,0.0,71,2,2,2,1,1,2,2,2,3,30.0,1,,1,101727,1,1,1,0,2,,164.0,,12,1.0,1.0,4.0,1.0,1.0,3,3,1534.84233190409,1500.0,37614.73292342947,0,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04067555133555112,37614.73292342947,9,5,9,9_1,9_3,9_1_0 -33358,2,36.0,0.0,2,111,271.0,569.0,0.0,68,46,0.0,0.0,374.56921567307717,840.0,0.0,1031.9685005821984,71,2,2,1,2,2,2,2,1,2,30.0,2,,2,132018,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,1849.67473720469,271.0,46810.0,1,1,1,2,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01794488357188635,26005.555555555555,7,4,7,7_0,7_3,7_0_1 -33359,2,56.0,0.0,2,111,300.0,270.0,0.0,0,22,0.0,0.0,414.65226827277917,570.0,0.0,489.6862832288112,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,111651,2,2,0,0,1,,140.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1804.65933436279,300.0,10238.68398567624,0,1,0,1,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05567121719914602,10238.68398567624,2,1,2_0,2_0_0,2_3_0,2_0_1 -33360,2,51.0,0.0,2,111,634.0,935.0,0.0,55,43,0.0,0.0,876.29846028314,1569.0,0.0,1695.7654622923646,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,108917,2,1,1,0,1,,426.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,1304.61885848043,634.0,61146.7703367421,1,1,0,1,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025659572719202366,30573.38516837105,8,4,8,8_1,8_3,8_0_1 -33361,2,35.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,995.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,123070,2,1,0,0,1,,267.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1834.47313980907,0.0,38558.41020907273,0,1,1,2,73.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025805005823758734,38558.41020907273,9,5,9,9_0,9_3,9_0_1 -33362,1,46.0,50.0,2,111,750.0,0.0,0.0,75,63,0.0,0.0,1036.630670681948,750.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,128293,1,3,0,0,1,,459.0,650.0,42,1.0,1.0,3.0,3.0,2.0,1,1,2025.36775227998,750.0,27261.238078485854,7,1,2,3,86.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.027511589819975504,13630.619039242927,3,2,3_1,3_0_1,3_3_1,3_0_1 -33363,2,35.0,0.0,2,111,0.0,0.0,1460.0,45,33,0.0,0.0,745.9334688627865,1460.0,0.0,1669.1388309928418,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,131579,2,1,1,0,1,,688.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1313.41661820178,0.0,80545.70757188341,1,1,1,2,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018126353892875247,44747.615317713,10,5,10,10_1,10_3,10_0_1 -33364,2,60.0,0.0,6,111,800.0,0.0,0.0,0,78,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,115010,2,1,2,0,1,,367.0,,21,1.0,1.0,3.0,2.0,1.5,1,1,1341.13345337017,800.0,23493.52493676472,0,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03405193567816169,15662.349957843146,3,2,3_0,3_1_0,3_3_0,3_0_0 -33365,1,27.0,118.0,8,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,264.0,0.0,0.0,71,2,1,2,1,1,2,2,2,2,15.0,2,2000.0,6,123839,2,1,0,1,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2323.59602131809,0.0,17677.408228403765,0,1,3,4,36.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.014934315969227277,17677.408228403765,4,2,4_1,4_0_1,4_3_1,4_0_0 -33366,1,31.0,199.0,2,111,0.0,0.0,1200.0,67,45,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,104187,2,1,0,0,1,,0.0,579.0,43,2.0,0.0,5.0,5.0,2.4,3,3,1577.67030242708,0.0,28784.069883240118,4,1,2,3,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0416897264656349,11993.362451350049,2,1,2_1,2_0_1,2_3_1,2_0_1 -33367,1,40.0,324.0,2,111,380.0,0.0,0.0,0,56,0.0,0.0,525.2262064788536,540.0,275.25232067043066,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,120828,2,3,0,1,1,456.0,0.0,301.0,32,1.0,0.0,2.0,2.0,1.3,2,1,1694.85335766534,380.0,9392.399558270912,0,4,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.057493295153151575,7224.922737131471,1,1,1_1,1_0_1,1_3_1,1_0_1 -33368,1,55.0,286.0,1,111,1300.0,0.0,0.0,85,63,0.0,0.0,1796.8264958487098,1720.0,722.5373417598805,0.0,50,2,2,1,1,2,2,2,2,0,,2,,1,110408,1,3,0,0,1,,1300.0,359.0,42,1.0,0.0,4.0,5.0,2.4,1,1,1921.02013285616,1300.0,20997.58708566219,6,1,2,3,64.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.08191417389927007,8748.994619025914,1,1,1_1,1_0_1,1_3_1,1_1_0 -33369,2,45.0,0.0,1,111,730.0,0.0,0.0,0,52,0.0,0.0,1008.9871861304293,730.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,1,128845,1,1,0,0,2,,225.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,2169.65195779512,730.0,19533.43370496597,0,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03737182161753838,19533.43370496597,5,3,5,5_0,5_3,5_1_0 -33370,2,32.0,0.0,2,111,0.0,0.0,0.0,63,23,0.0,0.0,0.0,299.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,125629,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1688.75804620891,0.0,62456.45527257034,1,1,1,2,75.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.004787335411449695,34698.03070698352,9,5,9,9_0,9_3,9_0_1 -33371,2,68.0,0.0,2,111,650.0,126.0,0.0,52,74,0.0,0.0,898.4132479243549,776.0,0.0,228.52026550677857,70,0,0,0,0,0,0,0,0,0,,2,,2,114556,1,3,0,1,1,700.0,0.0,833.0,42,1.0,5.0,4.0,2.0,1.5,4,4,2002.02332797823,650.0,65775.85929593492,1,5,2,3,76.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011797641388593131,43850.572863956615,10,5,10,10_0,10_3,10_0_1 -33372,2,93.0,0.0,2,111,565.0,705.0,0.0,86,74,0.0,0.0,780.9284385804008,1270.0,0.0,1278.6252950974515,71,0,0,0,0,0,0,0,0,0,,2,,2,106947,2,1,0,0,1,,833.0,,41,0.0,1.0,4.0,2.0,1.5,3,3,1754.56165664243,565.0,41603.560092238,6,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03052623374500454,27735.706728158668,7,4,7,7_0,7_3,7_0_1 -33373,2,55.0,0.0,1,111,600.0,896.0,0.0,77,43,0.0,0.0,829.3045365455583,1496.0,0.0,1625.0329991593142,33,0,0,0,0,0,0,0,0,0,,1,,1,108141,2,2,1,0,1,,800.0,,42,1.0,1.0,4.0,3.0,2.0,2,2,1434.95950794467,600.0,59877.90018394808,6,1,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02498417605500876,29938.95009197404,8,4,8,8_1,8_3,8_1_0 -33374,2,29.0,0.0,1,111,700.0,100.0,0.0,56,63,149.35848770180007,0.0,967.5219593031513,900.0,0.0,181.36529008474488,10,2,2,2,2,1,2,2,2,2,20.0,2,,1,131014,1,3,0,0,1,,470.0,307.0,43,2.0,0.0,2.0,3.0,1.8,2,2,598.433088794594,700.0,40412.39701005262,1,1,2,3,50.0,9,7,9,1,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.02227039390353718,22451.331672251454,6,3,6,6_0,6_3,6_1_0 -33375,2,87.0,0.0,2,111,410.0,1800.0,0.0,0,72,0.0,0.0,566.6914333061316,2210.0,0.0,3264.575221525408,71,0,0,0,0,0,0,0,0,0,,1,,2,113139,2,2,3,0,1,,300.0,,11,0.0,3.0,3.0,1.0,1.0,2,2,1355.60738053892,410.0,20238.391732696713,0,5,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10919840020833134,20238.391732696713,5,3,5,5_1,5_3,5_0_1 -33376,2,86.0,0.0,1,111,0.0,719.0,0.0,0,86,0.0,0.0,0.0,1341.0,0.0,1304.0164357093158,71,0,0,0,0,0,0,0,0,0,,2,,1,127549,1,1,0,0,2,,350.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1806.17740362866,0.0,16265.699822592083,0,5,0,1,65.0,9,7,9,0,1,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0824434247911935,16265.699822592083,4,2,4_0,4_0_0,4_3_0,4_1_0 -33377,2,78.0,0.0,7,111,680.0,0.0,0.0,0,77,0.0,0.0,939.8784747516328,680.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,116662,2,1,0,0,1,,400.0,910.0,11,0.0,3.0,3.0,1.0,1.0,3,3,2306.02693526189,680.0,23029.827196474325,0,5,2,3,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029526925851362983,23029.827196474325,6,3,6,6_0,6_3,6_0_0 -33378,2,26.0,0.0,2,111,0.0,0.0,0.0,54,33,0.0,0.0,0.0,2104.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,101227,1,2,0,0,1,,629.0,762.0,43,2.0,0.0,3.0,2.0,1.5,4,2,1858.8862925652,0.0,40683.55008700176,4,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05171623409217231,27122.366724667838,7,4,7,7_0,7_3,7_0_1 -33379,2,50.0,0.0,2,111,1200.0,170.0,0.0,42,22,0.0,0.0,1658.6090730911167,4715.0,0.0,308.32099314406634,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,100050,2,1,0,1,1,,1100.0,,43,2.0,2.0,8.0,4.0,2.3,2,2,1716.8933730946,1200.0,124393.83180633633,1,1,0,1,153.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03790380866585564,54084.274698407105,10,5,10,10_0,10_3,10_0_1 -33380,2,50.0,0.0,2,111,700.0,700.0,0.0,0,63,0.0,0.0,967.5219593031513,1400.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,0,,2,,2,123239,1,3,0,0,2,,200.0,386.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2412.53432479846,700.0,12985.81312707208,0,4,2,3,37.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.10780996047766621,12985.81312707208,2,1,2_0,2_0_0,2_3_0,2_0_1 -33381,2,73.0,0.0,7,111,942.0,0.0,0.0,77,75,0.0,0.0,1302.0081223765267,942.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,129029,2,2,0,0,1,,337.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1693.78929243255,942.0,38903.135981474465,5,5,0,1,61.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024213986256752595,25935.423987649643,7,4,7,7_0,7_3,7_0_0 -33382,1,47.0,150.0,2,111,500.0,0.0,0.0,0,22,1344.2263893162005,0.0,691.0871137879653,1500.0,172.03270041901916,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125987,2,2,0,1,1,800.0,300.0,721.0,32,1.0,2.0,3.0,2.0,1.3,3,3,1949.97905825568,500.0,17641.93559512628,0,1,2,3,67.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08502468404965646,13570.719688558676,3,2,3_1,3_0_1,3_3_1,3_0_1 -33383,2,63.0,0.0,2,111,1250.0,0.0,0.0,75,75,1493.5848770180007,0.0,1727.717784469913,2350.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103570,2,1,2,0,1,,350.0,,41,0.0,4.0,5.0,2.0,1.5,1,1,1224.84543644468,1250.0,52229.69732963284,5,5,0,1,134.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.044993559605920073,34819.79821975523,9,5,9,9_1,9_3,9_0_1 -33384,1,54.0,255.0,1,111,150.0,0.0,0.0,0,74,179.23018524216008,0.0,207.32613413638958,390.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,113234,1,3,0,0,2,,120.0,400.0,11,0.0,2.0,1.0,1.0,1.0,2,2,2718.83344482681,150.0,11223.512136865847,0,7,2,3,16.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03474848115671099,11223.512136865847,2,1,2_1,2_0_1,2_3_1,2_1_0 -33385,2,41.0,0.0,2,111,400.0,0.0,0.0,0,64,0.0,0.0,552.8696910303722,400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,2,117142,2,3,0,1,1,584.0,240.0,632.0,12,1.0,0.0,2.0,1.0,1.0,2,2,2084.68299417032,400.0,22096.958272060252,0,1,2,3,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01810203898089297,22096.958272060252,6,3,6,6_0,6_3,6_0_1 -33386,2,73.0,0.0,2,111,360.0,0.0,0.0,0,86,0.0,0.0,497.582721927335,788.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,126233,1,2,0,1,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,1729.4481971692,360.0,26614.680436051898,0,5,0,1,53.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.029607719765539078,26614.680436051898,7,4,7,7_0,7_3,7_0_1 -33387,1,39.0,270.0,1,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,389.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,128543,2,2,0,0,2,,259.0,300.0,12,1.0,0.0,2.0,1.0,1.0,2,1,2065.99561801435,0.0,7041.902025569951,0,4,2,3,30.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05524075719706076,7041.902025569951,1,1,1_1,1_0_1,1_3_1,1_1_0 -33388,2,71.0,0.0,6,111,929.0,0.0,0.0,74,74,0.0,0.0,1284.0398574180394,929.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,119114,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,1,1744.98363587217,929.0,77804.94833928742,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01194011460490751,51869.96555952495,10,5,10,10_0,10_3,10_0_0 -33389,2,79.0,0.0,6,111,2000.0,0.0,0.0,74,74,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,117305,2,1,1,0,1,,900.0,,41,0.0,3.0,5.0,2.0,1.5,6,6,1332.47346120341,2000.0,60611.70016753272,5,5,0,1,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032996929544492806,40407.80011168848,9,5,9,9_1,9_3,9_0_0 -33390,2,87.0,0.0,2,111,230.0,1210.0,0.0,86,77,0.0,0.0,317.900072342464,1440.0,0.0,2194.5200100254133,10,0,0,0,0,0,0,0,0,0,,2,,2,122051,2,1,0,0,1,,332.0,,41,0.0,3.0,4.0,2.0,1.5,1,1,1665.41719252916,230.0,29039.09180615042,5,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04958832767955267,19359.394537433614,5,3,5,5_0,5_3,5_0_1 -33391,2,46.0,0.0,1,111,410.0,1200.0,0.0,54,63,0.0,0.0,566.6914333061316,1610.0,0.0,2176.3834810169387,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,101267,2,1,2,0,1,,120.0,,43,2.0,0.0,6.0,4.0,2.3,1,1,1169.22024018005,410.0,40246.24614629008,1,1,1,2,115.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04000373088580363,17498.36788969134,4,2,4_0,4_1_0,4_3_0,4_1_0 -33392,2,53.0,0.0,1,111,520.0,1100.0,0.0,64,64,0.0,0.0,718.7305983394839,1620.0,0.0,1995.0181909321939,12,0,0,0,0,0,0,0,0,2,60.0,2,,1,103330,1,3,0,0,2,,610.0,507.0,43,2.0,0.0,3.0,3.0,2.0,2,2,2056.90147176312,520.0,33759.73386623615,1,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04798616027065893,16879.866933118075,4,2,4_0,4_0_0,4_3_0,4_1_0 -33393,2,58.0,0.0,2,111,1112.0,0.0,0.0,0,47,0.0,931.655254337512,1536.9777410644347,2072.0,103.2196202514115,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,111627,2,1,1,0,1,,586.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,1243.76311333684,1112.0,54403.24918222623,0,1,1,2,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03808596051055221,36268.83278815082,9,5,9,9_1,9_3,9_0_1 -33394,2,57.0,0.0,6,111,368.0,0.0,0.0,64,52,0.0,67.28621281326475,508.64011574794245,533.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,128711,2,1,2,0,1,,450.0,,43,3.0,2.0,4.0,4.0,2.5,3,2,1415.39920338116,368.0,26340.238476356983,4,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02023520024233726,10536.095390542792,2,1,2_0,2_1_0,2_3_0,2_0_0 -33395,1,65.0,138.0,2,111,180.0,200.0,0.0,0,77,0.0,0.0,248.7913609636675,380.0,0.0,362.73058016948977,50,0,0,0,0,0,0,0,0,0,,2,,2,119903,2,1,0,0,1,,150.0,484.0,21,1.0,2.0,4.0,2.0,1.5,2,2,1729.87414381,180.0,16360.530339543577,0,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02322663092904366,10907.020226362385,2,1,2_1,2_0_1,2_3_1,2_0_1 -33397,1,54.0,270.0,1,111,610.0,0.0,0.0,0,85,0.0,0.0,843.1262788213177,645.0,60.21144514665671,0.0,50,2,1,2,2,2,2,2,1,0,,2,,1,104548,2,2,0,0,1,,150.0,318.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2061.19433631855,610.0,10364.0,0,7,3,4,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.06223465843303744,10364.0,2,1,2_1,2_0_1,2_3_1,2_1_0 -33398,2,81.0,0.0,6,111,1510.0,0.0,0.0,75,75,0.0,0.0,2087.0830836396553,1510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,119167,2,1,0,0,1,,252.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,2113.84001222546,1510.0,53811.137449484304,5,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028061105406246546,35874.09163298953,9,5,9,9_0,9_3,9_0_0 -33399,1,91.0,178.0,2,111,182.0,111.0,0.0,0,75,0.0,0.0,251.55570941881936,293.0,0.0,201.31547199406683,60,0,0,0,0,0,0,0,0,0,,2,,2,111801,2,1,0,1,2,724.0,124.0,355.0,11,0.0,0.0,1.0,1.0,1.0,2,2,2414.01018789384,182.0,11271.849273438575,0,5,2,3,35.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025993960076314774,11271.849273438575,2,1,2_1,2_0_1,2_3_1,2_0_1 -33400,2,62.0,0.0,1,111,450.0,950.0,0.0,0,78,0.0,0.0,621.9784024091688,1400.0,0.0,1722.9702558050765,71,0,0,0,0,0,0,0,0,0,,2,,1,101002,2,1,0,0,1,,260.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2177.42852146184,450.0,10445.553529966757,0,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.13402832085284958,10445.553529966757,2,1,2_0,2_0_0,2_3_0,2_1_0 -33401,1,25.0,307.0,5,111,0.0,0.0,0.0,63,46,0.0,0.0,0.0,1138.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,107510,2,2,5,0,1,,266.0,475.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1450.94645192421,0.0,26802.866750655878,1,1,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.042458144891242,14890.481528142154,3,2,3_1,3_1_1,3_3_1,3_0_0 -33402,2,69.0,0.0,2,111,550.0,0.0,0.0,0,77,0.0,0.0,760.1958251667618,550.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,104304,1,2,0,0,2,,161.0,456.0,11,0.0,3.0,4.0,1.0,1.0,2,2,1835.46421422769,550.0,17631.846179788696,0,5,2,3,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.031193557066670787,17631.846179788696,4,2,4_0,4_0_0,4_3_0,4_0_1 -33403,2,50.0,0.0,6,111,720.0,0.0,0.0,45,48,0.0,207.03450096389156,995.16544385467,965.0,77.41471518855863,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,123872,2,1,2,0,1,,226.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,1460.88993995652,720.0,66046.20253193568,1,1,1,2,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014610983871985499,36692.334739964266,9,5,9,9_1,9_3,9_0_0 -33405,2,86.0,0.0,2,111,890.0,670.0,0.0,75,75,0.0,0.0,1230.1350625425782,1560.0,0.0,1215.1474435677908,71,0,0,0,0,0,0,0,0,0,,1,,2,110636,2,3,2,0,2,,320.0,,41,0.0,2.0,4.0,2.0,1.5,3,3,1643.38793221511,890.0,43042.04748760078,5,5,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03624362898743125,28694.698325067187,8,4,8,8_1,8_3,8_0_1 -33406,1,35.0,400.0,2,111,2200.0,0.0,0.0,0,85,0.0,0.0,3040.783300667047,2200.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,115412,1,3,0,0,1,,200.0,565.0,31,0.0,0.0,4.0,3.0,1.8,3,2,2501.22453076691,2200.0,10522.021564554077,0,6,2,3,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.2090852966326567,5845.567535863376,1,1,1_1,1_0_1,1_3_1,1_0_1 -33407,1,60.0,85.0,2,111,240.0,500.0,0.0,78,78,0.0,0.0,331.72181461822333,740.0,0.0,906.8264504237244,42,1,2,2,2,1,2,2,1,0,,2,,2,128084,2,2,0,0,1,,200.0,376.0,41,0.0,9.0,3.0,2.0,1.5,2,2,528.698075393284,240.0,13374.028938906753,5,7,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05533111999236414,8916.019292604502,1,1,1_1,1_0_1,1_3_1,1_0_1 -33408,1,46.0,334.0,5,111,670.0,0.0,0.0,56,67,0.0,0.0,926.0567324758734,670.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,10.0,2,,3,118706,2,3,0,1,1,653.0,300.0,422.0,43,2.0,1.0,3.0,3.0,2.0,2,2,1920.4208320672,670.0,20741.85707119138,4,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.03230183284458995,10370.92853559569,2,1,2_1,2_0_1,2_3_1,2_0_0 -33409,2,36.0,0.0,2,111,800.0,650.0,0.0,0,54,0.0,0.0,1105.7393820607444,1450.0,0.0,1178.8743855508417,31,1,2,2,2,1,2,2,2,0,,2,,2,127682,1,3,0,0,2,,226.0,355.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1831.07223558538,800.0,25432.821401063527,0,1,2,3,61.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.057012943123147364,25432.821401063527,7,4,7,7_0,7_3,7_0_1 -33410,2,64.0,0.0,1,111,352.0,800.0,0.0,0,74,0.0,0.0,486.52532810672756,1152.0,0.0,1450.922320677959,50,0,0,0,0,0,0,0,0,0,,1,,1,103700,2,2,2,0,2,,160.0,,21,1.0,0.0,6.0,3.0,2.0,2,2,1563.89340752719,352.0,51755.40230866503,0,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022258545941340874,25877.701154332513,7,4,7,7_1,7_3,7_1_0 -33411,2,56.0,0.0,6,111,1000.0,2000.0,0.0,37,31,0.0,0.0,1382.1742275759307,3000.0,0.0,3627.3058016948976,50,1,2,2,2,1,2,2,2,2,35.0,1,,4,102364,2,3,3,0,1,,300.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,1601.07815787596,1000.0,71661.3442247928,1,1,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.0418635741828868,35830.6721123964,9,5,9,9_1,9_3,9_0_0 -33412,2,44.0,0.0,2,111,600.0,800.0,0.0,0,37,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,105852,1,3,0,0,2,,210.0,410.0,12,1.0,0.0,3.0,1.0,1.0,2,2,1920.80200269683,600.0,20933.80390165344,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06687747752759937,20933.80390165344,5,3,5,5_0,5_3,5_0_1 -33413,1,57.0,420.0,2,111,280.0,0.0,0.0,0,78,0.0,0.0,387.00878372126056,280.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109948,2,1,0,1,1,,0.0,600.0,11,0.0,2.0,1.0,1.0,1.0,1,1,2675.32513474919,280.0,9329.973190724144,0,7,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03001080434811709,9329.973190724144,1,1,1_1,1_0_1,1_3_1,1_0_1 -33414,1,69.0,270.0,7,111,500.0,0.0,0.0,0,72,0.0,0.0,691.0871137879653,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,116578,1,2,0,0,2,,130.0,505.0,11,0.0,1.0,3.0,1.0,1.0,2,2,2564.63924456267,500.0,9281.919684295182,0,5,2,3,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.053868167039409935,9281.919684295182,1,1,1_1,1_0_1,1_3_1,1_0_0 -33415,2,63.0,0.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,497.582721927335,395.0,60.21144514665671,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,101434,2,3,0,1,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,2015.34168327749,360.0,17473.559476698894,0,5,1,2,64.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02260558305402715,17473.559476698894,4,2,4_0,4_0_0,4_3_0,4_0_1 -33416,2,29.0,0.0,7,112,0.0,0.0,0.0,0,65,0.0,0.0,0.0,2958.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,104502,2,1,1,0,1,,340.0,785.0,22,3.0,0.0,5.0,3.0,2.0,4,2,1532.12784235521,0.0,16181.627513968597,0,1,2,3,120.0,9,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.18279990671188925,8090.813756984298,1,1,1_0,1_1_0,1_0_0,1_0_0 -33417,2,40.0,0.0,9,112,1700.0,0.0,0.0,33,38,2987.1697540360015,0.0,2349.696186879082,3850.0,258.04905062852873,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,110011,2,1,1,0,1,,1200.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1263.43075994295,1700.0,91299.66913537719,1,1,0,1,120.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042168827515588286,38041.528806407165,9,5,9,9_1,9_0,9_0_0 -33418,2,74.0,0.0,2,112,1500.0,0.0,0.0,86,72,0.0,310.55175144583734,2073.261341363896,1950.0,258.04905062852873,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102974,2,2,2,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,4,4,1404.93913463747,1500.0,21686.414039328258,5,5,0,1,120.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08991804714526246,14457.609359552172,3,2,3_0,3_1_0,3_0_0,3_0_1 -33419,2,81.0,0.0,1,112,78.0,0.0,0.0,0,71,0.0,0.0,107.80958975092258,98.0,34.40654008380383,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,128998,2,2,3,0,2,,100.0,,21,0.0,2.0,6.0,2.0,1.5,1,1,1288.41700344582,78.0,1452.640972454738,0,5,0,1,90.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06746333186127554,968.4273149698253,1,1,1_0,1_1_0,1_0_0,1_1_0 -33420,2,23.0,0.0,2,112,0.0,0.0,0.0,84,22,0.0,0.0,0.0,658.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,132334,2,2,0,0,1,,60.0,500.0,42,1.0,0.0,3.0,2.0,1.5,1,1,2279.62734782487,0.0,13933.0,3,1,2,3,70.0,9,0,9,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.047226010191631376,9288.666666666666,1,1,1_0,1_0_0,1_0_0,1_0_1 -33421,2,24.0,0.0,9,112,1000.0,0.0,0.0,63,65,0.0,0.0,1382.1742275759307,1070.0,120.42289029331342,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,107964,2,1,0,0,1,,200.0,,43,2.0,0.0,3.0,3.0,1.8,1,1,2090.57079987657,1000.0,37823.0,1,1,1,2,80.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028289665018639453,21012.777777777777,5,3,5,5_0,5_0,5_0_0 -33422,2,75.0,0.0,1,112,600.0,0.0,0.0,0,86,0.0,0.0,829.3045365455583,670.0,120.42289029331342,0.0,20,2,2,2,2,1,2,2,2,0,,1,,1,121339,2,2,2,0,1,,400.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,1459.32153571538,600.0,25959.995997319278,0,5,0,1,115.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.025808940805275418,25959.995997319278,7,4,7,7_1,7_0,7_1_0 -33423,2,54.0,0.0,7,112,700.0,0.0,0.0,45,45,1194.8679016144006,0.0,967.5219593031513,1560.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,114246,2,2,2,0,1,,260.0,,43,2.0,2.0,5.0,2.0,1.5,3,3,1255.93935507983,700.0,74788.34661190916,1,1,0,1,100.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02085886465835559,49858.897741272776,10,5,10,10_1,10_0,10_0_0 -33424,2,25.0,0.0,1,112,0.0,0.0,0.0,84,68,0.0,0.0,0.0,1094.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,126181,1,2,0,0,2,,432.0,500.0,42,1.0,0.0,2.0,2.0,1.5,1,1,2207.26919060182,0.0,21142.983876369555,3,1,2,3,40.0,9,0,9,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.051742933088205614,14095.32258424637,3,2,3_0,3_0_0,3_0_0,3_1_0 -33425,0,86.0,0.0,2,112,300.0,0.0,0.0,0,77,0.0,0.0,414.65226827277917,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131451,2,1,2,0,1,,300.0,,11,0.0,2.0,2.0,1.0,1.0,3,3,1829.44766530732,300.0,9227.126216766843,0,5,5,0,40.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03251283150921491,9227.126216766843,1,1,1_0,1_1_0,1_0_0,1_0_1 -33426,2,66.0,0.0,1,112,480.0,0.0,0.0,75,77,3435.2452171414016,0.0,663.4436292364467,2960.0,309.6588607542345,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,109068,2,2,2,0,1,,180.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1388.2060167823,480.0,64325.57434913682,5,5,0,1,180.0,9,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04601591248815208,42883.71623275788,9,5,9,9_1,9_0,9_1_0 -33427,2,61.0,0.0,7,112,830.4,0.0,0.0,45,22,0.0,0.0,1147.7574785790528,900.0,120.42289029331342,0.0,60,2,2,1,2,2,2,2,1,0,,1,,5,116897,2,1,2,0,1,,214.0,,43,2.0,2.0,5.0,2.0,1.5,4,3,1335.88260345335,830.4,35778.539766854614,1,1,0,1,170.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.025154743761615552,23852.359844569743,6,3,6,6_1,6_0,6_0_0 -33428,2,61.0,0.0,2,112,900.0,0.0,0.0,75,21,0.0,0.0,1243.9568048183376,960.0,103.2196202514115,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104779,2,2,1,0,1,,500.0,,42,2.0,1.0,6.0,3.0,2.0,1,1,1488.14578213034,900.0,41588.37064370304,5,1,0,1,140.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023083376077041744,20794.18532185152,5,3,5,5_1,5_0,5_0_1 -33429,2,69.0,0.0,2,112,550.0,0.0,0.0,78,78,0.0,0.0,760.1958251667618,650.0,172.03270041901916,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,132005,2,3,3,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,3,3,1366.4363974489,550.0,5891.583944323341,7,5,0,1,250.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.11032686729793403,3927.722629548894,1,1,1_0,1_1_0,1_0_0,1_0_1 -33431,2,60.0,0.0,2,112,600.0,0.0,0.0,71,11,0.0,258.79312620486445,829.3045365455583,990.0,240.84578058662683,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,120633,2,2,2,0,2,,200.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,1353.79577792272,600.0,31605.311379175066,5,1,0,1,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031323848960789456,21070.20758611671,5,3,5,5_1,5_0,5_0_1 -33432,2,63.0,0.0,1,400,4000.0,0.0,0.0,43,74,0.0,0.0,5528.696910303723,4150.0,258.04905062852873,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106874,1,1,1,0,1,,216.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,1483.52619696937,4000.0,35003.19432713814,1,5,0,1,150.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11856060796092789,23335.46288475876,6,3,6,6_1,6_0,6_1_0 -33433,0,52.0,0.0,2,112,510.0,0.0,0.0,64,85,0.0,0.0,704.9088560637246,580.0,120.42289029331342,0.0,50,2,2,1,2,1,2,2,2,0,,1,,2,110186,1,3,4,0,2,,0.0,,42,1.0,4.0,5.0,2.0,1.5,1,1,1194.71379842972,510.0,38670.82371613699,1,7,5,0,80.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.014998387524855623,25780.54914409133,7,4,7,7_1,7_0,7_0_1 -33434,2,67.0,0.0,7,112,450.0,0.0,0.0,74,74,2240.377315527001,155.27587572291867,621.9784024091688,2100.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,117284,2,1,1,0,1,,837.0,,41,0.0,2.0,7.0,2.0,1.5,3,2,1460.52233384767,450.0,79231.60276238307,5,5,0,1,160.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026504575532795113,52821.06850825538,10,5,10,10_1,10_0,10_0_0 -33435,2,87.0,0.0,2,112,1642.0,0.0,0.0,77,74,0.0,310.55175144583734,2269.530081679678,1942.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,118028,2,1,2,0,1,,290.0,,41,0.0,0.0,3.0,2.0,1.5,1,1,1484.08345945133,1642.0,39534.349118209764,5,5,0,1,90.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.049121840711056575,26356.232745473175,7,4,7,7_1,7_0,7_0_1 -33436,2,46.0,0.0,2,112,600.0,0.0,0.0,69,22,0.0,0.0,829.3045365455583,950.0,602.1144514665671,0.0,10,2,2,2,1,2,2,2,2,0,,1,,2,124195,1,1,3,0,1,,180.0,400.0,43,2.0,0.0,6.0,3.0,1.8,1,1,1671.31789154812,600.0,65434.222847676734,1,1,2,3,130.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.014518396622689164,36352.346026487074,9,5,9,9_1,9_0,9_0_1 -33437,0,80.0,0.0,2,112,600.0,0.0,0.0,0,71,1350.2007288242726,0.0,829.3045365455583,1574.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111435,1,1,2,0,2,,220.0,,11,0.0,1.0,5.0,1.0,1.0,3,3,1583.16514650628,600.0,12331.730305769759,0,5,0,1,90.0,9,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1276382114246821,12331.730305769759,2,1,2_0,2_1_0,2_0_0,2_0_1 -33438,2,45.0,0.0,7,112,1100.0,0.0,0.0,0,62,1642.9433647198007,0.0,1520.3916503335236,2270.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,118198,2,1,1,0,1,,800.0,,32,1.0,0.0,5.0,3.0,1.8,2,2,1497.47765031627,1100.0,7285.403568710052,0,1,0,1,100.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.31158191561952475,4047.44642706114,1,1,1_0,1_1_0,1_0_0,1_0_0 -33439,2,43.0,0.0,2,112,600.0,0.0,0.0,0,31,2240.377315527001,0.0,829.3045365455583,2100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,122899,1,2,3,0,1,,160.0,940.0,32,1.0,0.0,3.0,2.0,1.3,4,3,1684.42069704629,600.0,20776.495858410934,0,1,3,4,80.0,9,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10107575475244823,15981.919891085334,3,2,3_0,3_1_0,3_0_0,3_0_1 -33440,0,80.0,0.0,7,112,2000.0,0.0,0.0,0,86,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,109382,2,2,3,0,1,,285.0,,11,0.0,1.0,5.0,1.0,1.0,2,2,1448.4797168043,2000.0,14541.624276243387,0,5,0,1,200.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13753621755084092,14541.624276243387,3,2,3_0,3_1_0,3_0_0,3_0_0 -33441,0,70.0,0.0,2,112,610.0,1200.0,0.0,0,75,0.0,0.0,843.1262788213177,1810.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,1,,2,105024,1,3,3,0,2,,500.0,,11,0.0,2.0,4.0,1.0,1.0,2,2,1346.06143868668,610.0,17183.00850837796,0,5,0,1,70.0,9,0,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10533661780575236,17183.00850837796,4,2,4_0,4_1_0,4_0_0,4_0_1 -33442,0,82.0,0.0,1,300,540.0,0.0,0.0,0,71,0.0,0.0,746.3740828910024,640.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101079,2,2,2,0,1,,250.0,,11,0.0,3.0,4.0,1.0,1.0,4,3,1529.0214135959,540.0,15462.357856829876,0,5,0,1,80.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04139084128862699,15462.357856829876,3,2,3_0,3_1_0,3_0_0,3_1_0 -33443,2,58.0,0.0,7,300,850.0,0.0,0.0,69,69,0.0,496.8828023133397,1174.848093439541,1450.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,102738,2,2,1,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,1,1,1533.16422426202,850.0,34180.97489087073,1,1,0,1,130.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04242125933006302,18989.430494928183,5,3,5,5_1,5_0,5_0_0 -33444,2,58.0,0.0,1,300,900.0,0.0,0.0,75,75,1493.5848770180007,310.55175144583734,1243.9568048183376,2360.0,275.25232067043066,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116213,2,2,2,0,1,,1200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1249.800868637,900.0,54348.20524285869,5,5,0,1,100.0,0,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.043423697055941,36232.13682857246,9,5,9,9_1,9_0,9_1_0 -33445,0,83.0,0.0,1,300,600.0,0.0,0.0,86,86,0.0,362.31037668681023,829.3045365455583,1070.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103569,2,2,2,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1363.34961376211,600.0,19100.543921253484,5,5,0,1,120.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05601934711447634,12733.695947502323,2,1,2_0,2_1_0,2_0_0,2_1_0 -33446,2,79.0,0.0,8,300,620.0,0.0,0.0,0,86,0.0,0.0,856.9480210970769,750.0,223.64251054472493,0.0,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,117650,2,1,1,0,1,,210.0,,11,0.0,1.0,3.0,1.0,1.0,2,2,1415.73381761825,620.0,38864.128207127236,0,5,0,1,70.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019298001385824437,38864.128207127236,9,5,9,9_1,9_0,9_0_0 -33447,2,80.0,0.0,2,111,360.0,600.0,0.0,78,78,0.0,0.0,497.582721927335,960.0,0.0,1088.1917405084694,71,2,2,2,2,1,2,2,2,0,,2,,2,110283,2,2,0,0,1,,500.0,410.0,41,1.0,0.0,4.0,3.0,2.0,1,1,789.406985857897,360.0,13832.115973395343,6,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.06940369802035072,6916.057986697671,1,1,1_0,1_0_0,1_3_0,1_0_1 -33448,2,53.0,0.0,1,111,730.0,0.0,0.0,77,53,1194.8679016144006,0.0,1008.9871861304293,1530.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,125466,1,2,3,0,1,,0.0,770.0,42,1.0,5.0,6.0,2.0,1.5,1,1,1535.18274417369,730.0,54132.80566070267,7,1,2,3,113.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028263822303795587,36088.53710713511,9,5,9,9_1,9_3,9_1_0 -33449,2,82.0,0.0,6,111,1000.0,0.0,0.0,0,77,0.0,0.0,1382.1742275759307,1025.0,43.00817510475479,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,132962,2,2,0,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2171.51000399245,1000.0,24100.47993079383,0,5,0,1,69.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04253027337809692,24100.47993079383,6,3,6,6_0,6_3,6_0_0 -33450,2,43.0,0.0,2,111,420.0,0.0,0.0,0,52,0.0,0.0,580.5131755818909,600.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,111945,2,1,0,1,1,,300.0,,32,2.0,0.0,4.0,4.0,2.3,2,2,1896.96808723888,420.0,28631.24146848457,0,1,0,1,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020956129361712848,12448.365855862858,2,1,2_0,2_0_0,2_3_0,2_0_1 -33451,2,45.0,0.0,2,111,296.0,0.0,0.0,0,85,0.0,0.0,409.12357136247545,406.0,189.2359704609211,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129210,1,1,0,1,2,720.0,210.0,409.0,11,0.0,0.0,4.0,1.0,1.0,4,3,2086.94149721434,296.0,14269.991044055812,0,7,2,3,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028451314282297323,14269.991044055812,3,2,3_0,3_0_0,3_3_0,3_0_1 -33452,1,27.0,300.0,6,111,444.0,382.0,0.0,54,22,0.0,0.0,613.6853570437131,826.0,0.0,692.8154081237254,31,0,0,0,0,0,0,0,0,2,30.0,2,,4,101905,2,2,0,0,1,,228.0,700.0,43,2.0,0.0,5.0,2.0,1.5,1,1,2165.0248119922,444.0,43634.284039257036,1,1,2,3,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.018930068825166506,29089.522692838025,8,4,8,8_0,8_3,8_0_0 -33453,2,68.0,0.0,9,111,800.0,0.0,0.0,74,74,0.0,0.0,1105.7393820607444,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,118470,2,1,0,0,1,,210.0,760.0,41,0.0,2.0,5.0,2.0,1.5,1,1,2254.77631204693,800.0,50257.36511264771,5,5,2,3,92.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01591806490863312,33504.91007509847,8,4,8,8_0,8_3,8_0_0 -33454,1,58.0,226.0,1,111,944.0,0.0,0.0,0,85,0.0,0.0,1304.7724708316784,944.0,0.0,0.0,60,2,2,2,2,1,2,1,2,0,,2,,1,109455,1,3,0,0,2,,210.0,315.0,11,0.0,3.0,1.0,1.0,1.0,1,1,2984.43968110244,944.0,10177.618048172104,0,7,3,4,22.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.09275254735753638,10177.618048172104,2,1,2_1,2_0_1,2_3_1,2_1_0 -33455,2,79.0,0.0,1,111,240.0,0.0,0.0,0,78,597.4339508072003,0.0,331.72181461822333,796.0,268.3710126536699,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,110901,2,2,2,0,1,,140.0,,11,0.0,0.0,3.0,1.0,1.0,3,2,1521.37656121459,240.0,13237.244460702159,0,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06013336101505953,13237.244460702159,2,1,2_0,2_1_0,2_3_0,2_1_0 -33456,1,36.0,276.0,2,111,600.0,0.0,0.0,0,85,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123569,2,1,0,0,1,,110.0,400.0,11,0.0,0.0,2.0,1.0,1.0,2,2,2196.3148087368,600.0,9332.04213756488,0,7,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06429460895646631,9332.04213756488,1,1,1_1,1_0_1,1_3_1,1_0_1 -33457,2,67.0,0.0,5,111,1200.0,0.0,0.0,77,78,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,3,116424,1,3,3,0,2,,240.0,454.0,41,0.0,4.0,5.0,2.0,1.5,2,2,438.146816192393,1200.0,23429.3246752571,7,5,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.05121786550114603,15619.549783504734,3,2,3_0,3_1_0,3_3_0,3_0_0 -33458,2,63.0,0.0,2,111,180.0,0.0,0.0,0,77,0.0,0.0,248.7913609636675,180.0,0.0,0.0,71,1,2,2,2,1,2,2,2,0,,2,,2,117851,1,2,0,1,1,600.0,120.0,308.0,11,0.0,3.0,3.0,1.0,1.0,2,2,508.010402367491,180.0,16143.162901921678,0,5,2,3,57.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.011150231283274286,16143.162901921678,4,2,4_0,4_0_0,4_3_0,4_0_1 -33459,2,38.0,0.0,8,111,600.0,0.0,0.0,0,34,0.0,0.0,829.3045365455583,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,10.0,2,2003.0,6,115913,2,3,0,0,1,,0.0,680.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2352.16112597112,600.0,29492.64680231962,0,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.02034405402884388,29492.64680231962,8,4,8,8_0,8_3,8_0_0 -33460,1,32.0,184.0,2,111,300.0,0.0,0.0,85,62,0.0,0.0,414.65226827277917,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,121337,2,1,0,1,1,500.0,0.0,495.0,42,1.0,0.0,6.0,5.0,2.4,2,2,1884.68066712006,300.0,31370.13725494089,6,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.00956323517369211,13070.89052289204,2,1,2_1,2_0_1,2_3_1,2_0_1 -33461,2,58.0,0.0,5,111,1234.0,0.0,0.0,0,33,0.0,0.0,1705.6029968286982,1234.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,6.0,1,,3,115431,2,1,3,0,1,,300.0,,32,1.0,0.0,5.0,2.0,1.5,3,1,1438.76695465985,1234.0,44512.71282465892,0,1,1,2,107.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027722417298197,29675.141883105945,8,4,8,8_1,8_3,8_0_0 -33462,1,77.0,203.0,2,111,240.0,590.0,0.0,0,86,0.0,0.0,331.72181461822333,830.0,0.0,1070.0552114999948,60,0,0,0,0,0,0,0,0,0,,2,,2,117243,1,1,0,0,1,,80.0,340.0,11,0.0,0.0,4.0,1.0,1.0,3,3,1891.19233652549,240.0,17501.92034273232,0,6,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.047423367478909705,17501.92034273232,4,2,4_1,4_0_1,4_3_1,4_0_1 -33463,2,67.0,0.0,1,111,1174.0,0.0,0.0,0,77,0.0,0.0,1622.6725431741424,1264.0,154.82943037711726,0.0,33,2,2,2,1,1,2,2,2,0,,1,,1,101709,1,3,4,0,1,,438.0,500.0,11,0.0,1.0,5.0,1.0,1.0,1,1,1945.58888426407,1174.0,10743.587344153058,0,5,2,3,88.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.11765157758855117,10743.587344153058,2,1,2_0,2_1_0,2_3_0,2_1_0 -33464,2,60.0,0.0,7,111,580.0,1450.0,0.0,77,77,0.0,0.0,801.6610519940398,2030.0,0.0,2629.7967062288008,71,0,0,0,0,0,0,0,0,0,,1,,5,116438,2,1,2,0,1,,200.0,,41,0.0,1.0,5.0,2.0,1.5,4,4,1503.44759350106,580.0,48596.78734696645,5,5,0,1,124.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04177230864061878,32397.858231310965,8,4,8,8_1,8_3,8_0_0 -33465,2,39.0,0.0,2,111,1050.0,0.0,0.0,0,47,0.0,0.0,1451.2829389547271,1101.0,87.73667721369978,0.0,50,0,0,0,0,0,0,0,0,2,23.0,1,,2,113222,2,2,3,0,1,,160.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1489.40173368206,1050.0,36556.26775331676,0,1,1,2,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030117954256971596,36556.26775331676,9,5,9,9_1,9_3,9_0_1 -33466,2,56.0,0.0,8,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,901.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,2002.0,6,116871,2,2,2,0,1,,146.0,,12,1.0,2.0,5.0,1.0,1.0,2,2,1691.14638601455,0.0,33144.151311471694,0,1,1,2,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027184283330499708,33144.151311471694,8,4,8,8_1,8_3,8_0_0 -33467,2,64.0,0.0,1,111,2000.0,0.0,0.0,31,31,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,127217,2,1,2,0,1,,0.0,,43,2.0,3.0,8.0,2.0,1.5,4,3,1555.13185685501,2000.0,200960.9592914657,1,1,0,1,165.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.009952181792182234,133973.97286097714,10,5,10,10_1,10_3,10_1_0 -33468,2,46.0,0.0,5,111,0.0,0.0,1389.0,0,52,0.0,362.31037668681023,709.6586220893224,1770.0,53.330137129895945,1587.9683809925052,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,115446,2,2,3,0,1,,325.0,,32,1.0,2.0,4.0,2.0,1.5,3,3,1422.9968884266,0.0,25475.416506459685,0,1,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06947874628668738,16983.61100430646,4,2,4_0,4_1_0,4_3_0,4_0_0 -33469,2,45.0,0.0,9,111,720.0,700.0,0.0,38,34,0.0,0.0,995.16544385467,1420.0,0.0,1269.5570305932142,50,0,0,0,0,0,0,0,0,2,65.0,1,2004.0,6,103011,2,1,2,0,1,,250.0,,43,2.0,0.0,7.0,4.0,2.1,4,4,1353.15755893053,720.0,93471.8793492236,1,1,1,2,130.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015191734775062003,44510.41873772552,10,5,10,10_1,10_3,10_0_0 -33470,2,69.0,0.0,2,111,0.0,0.0,774.0,78,78,0.0,0.0,395.4469211642444,774.0,0.0,884.8722295811368,20,0,0,0,0,0,0,0,0,0,,1,,2,105408,2,3,3,0,1,,330.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1508.55709311304,0.0,22143.308740287866,5,5,0,1,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03495412582997467,14762.205826858577,3,2,3_0,3_1_0,3_3_0,3_0_1 -33471,2,67.0,0.0,5,111,500.0,1080.0,0.0,0,77,0.0,0.0,691.0871137879653,1580.0,0.0,1958.7451329152448,71,0,0,0,0,0,0,0,0,0,,1,,3,127338,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1581.33539250959,500.0,32084.64431431245,0,5,0,1,125.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04924474102071274,32084.64431431245,8,4,8,8_1,8_3,8_0_0 -33472,2,54.0,0.0,6,111,0.0,0.0,1210.0,67,77,0.0,0.0,618.2051351534053,1210.0,0.0,1383.3273873296841,33,0,0,0,0,0,0,0,0,0,,1,,4,132011,2,2,2,0,2,,277.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1422.9968884266,0.0,30308.119068190004,4,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03992329571088296,20205.41271212667,5,3,5,5_1,5_3,5_0_0 -33473,2,55.0,0.0,6,111,270.0,754.0,0.0,0,56,0.0,0.0,373.1870414455012,1024.0,0.0,1367.4942872389765,33,0,0,0,0,0,0,0,0,0,,1,,4,122929,2,1,1,0,1,,193.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,1607.07447852279,270.0,12677.107297801287,0,1,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08077552520026411,8451.404865200859,1,1,1_0,1_1_0,1_3_0,1_0_0 -33474,2,62.0,0.0,6,111,755.0,0.0,0.0,43,78,1341.2392195621646,0.0,1043.5415418198277,1773.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,125711,2,1,2,0,1,,188.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1164.38634484573,755.0,26835.468298568547,1,5,0,1,115.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0660692774306672,13417.734149284273,3,2,3_0,3_1_0,3_3_0,3_0_0 -33475,2,71.0,0.0,1,111,780.0,0.0,0.0,74,74,0.0,0.0,1078.0958975092258,2380.0,2752.5232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125497,1,1,3,0,1,,200.0,,41,0.0,3.0,8.0,2.0,1.5,3,3,1147.53079759281,780.0,63250.037016215596,5,5,0,1,170.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0376284364764851,42166.69134414373,9,5,9,9_1,9_3,9_1_0 -33476,2,55.0,0.0,6,111,1500.0,0.0,0.0,21,21,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,2,2,2,2,2,2,2,1,2,5.0,1,,4,108183,2,1,2,0,1,,500.0,,43,3.0,1.0,5.0,3.0,2.0,4,3,1100.77134524167,1500.0,54602.57165236191,1,1,1,2,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.02747123358126879,27301.285826180956,7,4,7,7_1,7_3,7_0_0 -33477,2,48.0,0.0,2,111,170.0,0.0,0.0,0,52,0.0,0.0,234.9696186879082,240.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,123977,1,2,0,0,2,,0.0,,12,1.0,0.0,5.0,1.0,1.0,2,1,1756.68309647922,170.0,17029.618764309413,0,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014093092941281268,17029.618764309413,4,2,4_0,4_0_0,4_3_0,4_0_1 -33478,2,80.0,0.0,1,111,2300.0,0.0,0.0,71,71,0.0,0.0,3179.0007234246405,2370.0,120.42289029331342,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,120316,2,1,3,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1231.4951310101,2300.0,23567.83220578626,5,5,0,1,180.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10056079741683366,15711.888137190841,3,2,3_0,3_1_0,3_3_0,3_1_0 -33479,0,76.0,0.0,2,111,873.0,0.0,0.0,71,71,0.0,0.0,1206.6381006737874,1003.0,223.64251054472493,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,111567,2,2,2,0,1,,280.0,,41,0.0,2.0,6.0,2.0,1.5,2,1,1059.90163065516,873.0,17894.10482561529,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05605197967568695,11929.40321707686,2,1,2_0,2_1_0,2_3_0,2_0_1 -33480,2,42.0,0.0,9,111,1200.0,0.0,0.0,54,21,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,71,2,2,2,1,1,2,2,2,1,5.0,1,2006.0,6,126197,1,2,1,0,1,,450.0,869.0,43,2.0,0.0,4.0,4.0,2.3,2,2,1346.3834467148,1200.0,49428.45291792361,1,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.02427751485551471,21490.63170344505,6,3,6,6_1,6_3,6_0_0 -33481,2,43.0,0.0,9,111,900.0,0.0,0.0,48,46,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,121015,2,1,0,0,1,,600.0,700.0,43,2.0,0.0,3.0,3.0,1.8,3,3,1802.86103157388,900.0,30000.886983667733,1,1,2,3,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029999113042556157,16667.159435370962,4,2,4_0,4_0_0,4_3_0,4_0_0 -33482,2,39.0,0.0,8,111,1100.0,0.0,0.0,43,42,0.0,517.5862524097289,1520.3916503335236,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,2003.0,6,108984,2,1,1,0,1,,570.0,,43,2.0,0.0,5.0,4.0,2.1,5,3,1071.77580018792,1100.0,47472.1177472331,1,1,1,2,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03370399459571731,22605.770355825283,6,3,6,6_1,6_3,6_0_0 -33483,1,87.0,80.0,1,111,990.0,0.0,0.0,0,86,0.0,0.0,1368.3524853001713,990.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,129067,2,2,0,0,2,,0.0,426.0,11,0.0,4.0,2.0,1.0,1.0,2,2,1822.5782755611,990.0,16302.264038472236,0,5,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.060727761350427595,16302.264038472236,4,2,4_1,4_0_1,4_3_1,4_1_0 -33484,2,40.0,0.0,1,111,1800.0,0.0,0.0,42,38,0.0,0.0,2487.913609636675,1800.0,0.0,0.0,31,1,2,2,1,1,2,2,2,2,50.0,1,,1,122063,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,1129.81924960107,1800.0,51716.24230654477,4,1,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03480531298717748,24626.782050735605,7,4,7,7_1,7_3,7_1_0 -33485,2,32.0,0.0,2,111,0.0,0.0,0.0,63,33,0.0,0.0,0.0,1098.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,112714,1,3,3,0,1,,555.0,800.0,43,2.0,0.0,3.0,3.0,1.8,1,1,1277.7237866583,0.0,49210.74759092359,1,1,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022312199138436066,27339.30421717977,7,4,7,7_1,7_3,7_0_1 -33486,2,73.0,0.0,1,111,2000.0,0.0,0.0,0,71,0.0,569.3448776507017,2764.3484551518613,2625.0,129.02452531426437,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106836,2,1,2,0,2,,0.0,,21,0.0,3.0,8.0,2.0,1.5,3,3,1114.34795520807,2000.0,21040.012282119766,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12476228458434784,14026.67485474651,3,2,3_0,3_1_0,3_3_0,3_1_0 -33487,2,49.0,0.0,7,111,480.0,0.0,0.0,0,22,0.0,0.0,663.4436292364467,550.0,120.42289029331342,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,104262,2,1,3,0,1,,300.0,,11,0.0,0.0,4.0,1.0,1.0,2,2,1286.74440170761,480.0,33520.32872670174,0,7,0,1,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0164079536475989,33520.32872670174,8,4,8,8_1,8_3,8_0_0 -33488,2,71.0,0.0,1,111,800.0,0.0,0.0,77,72,0.0,0.0,1105.7393820607444,910.0,189.2359704609211,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104218,1,2,2,0,2,,0.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1122.16217286868,800.0,17779.828724299194,5,5,0,1,160.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05118159539727897,11853.219149532795,2,1,2_0,2_1_0,2_3_0,2_1_0 -33489,2,50.0,0.0,1,111,800.0,0.0,0.0,46,62,3733.962192545002,207.03450096389156,1105.7393820607444,3500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,126916,1,3,1,0,2,,220.0,1000.0,43,2.0,0.0,6.0,4.0,2.1,1,1,1245.70065189493,800.0,72300.661673408,1,1,2,3,135.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04840896222789744,34428.886511146666,9,5,9,9_1,9_3,9_1_0 -33490,2,51.0,0.0,8,111,900.0,0.0,0.0,0,46,0.0,0.0,1243.9568048183376,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,112728,2,1,1,0,1,,150.0,,12,1.0,0.0,2.0,1.0,1.0,2,1,1122.98331574067,900.0,30723.856316151952,0,1,0,1,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029293197791934004,30723.856316151952,8,4,8,8_1,8_3,8_0_0 -33491,0,93.0,0.0,1,111,1400.0,0.0,0.0,0,86,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,2,2,1,1,2,2,2,2,0,,1,,1,130033,1,3,4,0,2,,120.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1257.34497651059,1400.0,20394.136787704043,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.06864718102921046,20394.136787704043,5,3,5,5_1,5_3,5_1_0 -33492,2,59.0,0.0,7,111,800.0,0.0,0.0,77,46,0.0,82.81380038555662,1105.7393820607444,3380.0,4300.817510475479,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,107595,2,1,2,0,1,,240.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,1113.23903284667,800.0,74121.13556915689,5,1,1,2,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04560102829032314,49414.09037943793,10,5,10,10_1,10_3,10_0_0 -33493,1,52.0,210.0,5,111,650.0,650.0,0.0,85,12,0.0,0.0,898.4132479243549,1300.0,0.0,1178.8743855508417,71,2,2,2,2,1,2,2,2,0,,1,,3,108679,2,3,3,0,1,,500.0,314.0,42,1.0,2.0,3.0,2.0,1.5,3,3,1089.53237523099,650.0,8463.101549636174,6,1,2,3,117.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.15360798784883853,5642.067699757449,1,1,1_1,1_1_1,1_3_1,1_0_0 -33494,2,59.0,0.0,2,111,172.0,660.0,0.0,0,52,0.0,0.0,237.73396714306006,832.0,0.0,1197.0109145593162,71,0,0,0,0,0,0,0,0,1,20.0,1,,2,112826,1,3,3,0,1,,210.0,271.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1142.38148193722,172.0,20103.473564624084,0,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.041385882759289096,20103.473564624084,5,3,5,5_1,5_3,5_0_1 -33495,2,51.0,0.0,2,111,260.0,885.0,0.0,0,52,0.0,0.0,359.36529916974195,1145.0,0.0,1605.0828172499923,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,129068,2,3,3,0,1,,250.0,270.0,12,1.0,1.0,3.0,1.0,1.0,2,2,1253.86436201483,260.0,18970.37250746687,0,1,2,3,101.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06035727551208181,18970.37250746687,5,3,5,5_1,5_3,5_0_1 -33496,2,56.0,0.0,2,111,450.0,700.0,0.0,52,67,0.0,0.0,621.9784024091688,1150.0,0.0,1269.5570305932142,71,2,2,2,1,1,2,2,2,2,15.0,1,,2,115121,2,3,4,0,1,,340.0,313.0,43,2.0,0.0,4.0,3.0,2.0,1,1,1203.22874321643,450.0,20740.81280458844,1,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.055446235923096915,10370.40640229422,2,1,2_0,2_1_0,2_3_0,2_0_1 -33497,2,39.0,0.0,2,111,0.0,0.0,1200.0,54,65,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,126225,2,3,3,0,1,,350.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1050.05470872681,0.0,42146.02047088606,1,1,1,2,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028472439072366153,20069.53355756479,5,3,5,5_1,5_3,5_0_1 -33498,2,77.0,0.0,2,111,280.0,1500.0,0.0,71,78,0.0,0.0,387.00878372126056,1780.0,0.0,2720.4793512711735,60,2,2,1,1,1,2,2,2,0,,1,,2,131773,2,2,4,0,1,,150.0,313.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1124.68700433489,280.0,19993.426223644652,5,5,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.08902926292317692,13328.9508157631,3,2,3_0,3_1_0,3_3_0,3_0_1 -33499,2,54.0,0.0,2,111,800.0,0.0,0.0,0,11,0.0,0.0,1105.7393820607444,975.0,301.05722573328353,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130769,2,3,2,0,1,,150.0,,22,1.0,0.0,10.0,2.0,1.5,1,1,1190.14338298003,800.0,15018.349489281882,0,1,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06492058269757449,10012.232992854588,2,1,2_0,2_1_0,2_3_0,2_0_1 -33500,2,59.0,0.0,7,111,1720.0,0.0,0.0,55,37,0.0,414.0690019277831,2377.3396714306004,2190.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,100091,2,1,2,0,1,,590.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1179.60651258873,1720.0,81263.9918443018,4,1,1,2,145.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026949205303573358,54175.99456286786,10,5,10,10_1,10_3,10_0_0 -33501,1,29.0,120.0,2,111,0.0,0.0,0.0,56,69,0.0,0.0,0.0,1520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,124078,2,1,0,0,1,,690.0,700.0,43,2.0,0.0,5.0,4.0,2.1,5,5,1496.31212519209,0.0,20857.510103840097,1,1,2,3,125.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07287542915873507,9932.147668495283,2,1,2_1,2_0_1,2_3_1,2_0_1 -33502,2,75.0,0.0,7,111,600.0,0.0,0.0,77,78,2240.377315527001,0.0,829.3045365455583,2220.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,117859,2,1,0,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,4,4,1539.3565637675,600.0,16231.46432761943,5,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.1367713938305894,10820.976218412952,2,1,2_0,2_0_0,2_3_0,2_0_0 -33503,2,75.0,0.0,2,111,2500.0,0.0,0.0,71,71,0.0,507.23452736153433,3455.435568939826,3170.0,309.6588607542345,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120738,1,1,2,0,2,,50.0,,41,0.0,2.0,6.0,3.0,2.0,3,2,1171.50167870826,2500.0,42984.22558541415,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07374798444840838,21492.112792707074,6,3,6,6_1,6_3,6_0_1 -33504,2,59.0,0.0,9,111,492.0,750.0,0.0,75,43,0.0,207.03450096389156,680.0297199673578,1442.0,0.0,1360.2396756355868,20,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,133609,2,1,1,0,1,,403.0,,42,1.0,3.0,7.0,3.0,2.0,2,2,1224.07222799167,492.0,52647.560002874125,5,1,1,2,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027389683395038226,26323.780001437062,7,4,7,7_1,7_3,7_0_0 -33505,2,62.0,0.0,2,111,830.0,0.0,0.0,86,22,2688.452778632401,0.0,1147.2046088880224,2720.0,154.82943037711726,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,110297,1,1,4,0,2,,190.0,,42,1.0,2.0,5.0,2.0,1.5,3,2,1167.00306098363,830.0,9360.887186977916,6,1,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.29057074886917095,6240.591457985277,1,1,1_0,1_1_0,1_3_0,1_0_1 -33506,2,29.0,0.0,9,111,0.0,0.0,0.0,48,46,0.0,0.0,0.0,797.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,121675,2,1,1,0,1,,756.0,750.0,43,2.0,1.0,5.0,2.0,1.5,3,3,1160.47400454723,0.0,43598.3090796185,2,1,2,3,86.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018280525479658673,29065.539386412333,8,4,8,8_1,8_3,8_0_0 -33507,2,76.0,0.0,2,111,2100.0,0.0,0.0,77,72,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102675,2,2,2,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,4,3,1016.20674725411,2100.0,50289.97558381792,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.041757825006296656,33526.65038921194,8,4,8,8_1,8_3,8_0_1 -33508,2,68.0,0.0,5,111,200.0,500.0,0.0,75,74,0.0,144.92415067472407,276.4348455151861,840.0,0.0,906.8264504237244,43,0,0,0,0,0,0,0,0,0,,1,,3,120328,2,1,2,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1016.20674725411,200.0,47584.98169392752,5,5,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017652628415473264,31723.321129285014,8,4,8,8_1,8_3,8_0_0 -33509,2,73.0,0.0,2,111,2230.0,0.0,0.0,77,74,0.0,0.0,3082.248527494325,2230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111983,2,1,2,0,1,,440.0,,41,0.0,3.0,8.0,2.0,1.5,1,1,1168.6066390824,2230.0,57570.64881161366,6,5,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038735015950526246,38380.432541075774,9,5,9,9_1,9_3,9_0_1 -33510,2,48.0,0.0,7,111,829.0,1156.0,0.0,46,22,0.0,103.51725048194578,1145.8224346604463,2085.0,0.0,2096.582753379651,71,0,0,0,0,0,0,0,0,0,,1,,5,100397,2,1,2,0,1,,855.0,,43,2.0,0.0,9.0,5.0,2.5999999999999996,3,3,1096.50972060708,829.0,90293.87062550413,1,1,0,1,185.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023091268383516137,34728.411779040056,9,5,9,9_1,9_3,9_0_0 -33511,2,80.0,0.0,1,111,2300.0,0.0,0.0,0,72,0.0,0.0,3179.0007234246405,2300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,133228,2,2,4,0,1,,340.0,,21,1.0,0.0,5.0,4.0,2.3,2,2,1194.18723245322,2300.0,17975.863110833856,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12794934995993684,7815.592656884286,1,1,1_0,1_1_0,1_3_0,1_1_0 -33512,2,48.0,0.0,1,111,462.0,1000.0,0.0,0,52,0.0,0.0,638.5644931400799,1462.0,0.0,1813.6529008474488,41,0,0,0,0,0,0,0,0,2,7.0,1,,1,108634,2,1,1,0,1,,85.0,,12,1.0,2.0,4.0,1.0,1.0,4,2,1396.78926826423,462.0,21196.506297072174,0,1,1,2,97.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06897363081961969,21196.506297072174,5,3,5,5_1,5_3,5_1_0 -33513,0,80.0,0.0,1,111,700.0,0.0,0.0,0,77,0.0,0.0,967.5219593031513,700.0,0.0,0.0,31,2,2,2,2,1,1,2,2,0,,2,,1,107073,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,3,3,2131.91563223776,700.0,16100.879048966764,0,5,5,0,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.04347588711592246,16100.879048966764,4,2,4_0,4_0_0,4_3_0,4_1_0 -33514,2,57.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2025.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132578,2,2,3,0,1,,472.0,680.0,31,0.0,0.0,4.0,2.0,1.5,2,1,1336.02451694064,0.0,19873.128589919022,0,7,2,3,110.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10189638691449997,13248.752393279348,2,1,2_0,2_1_0,2_3_0,2_1_0 -33515,2,69.0,0.0,1,111,300.0,0.0,0.0,0,77,0.0,517.5862524097289,414.65226827277917,835.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103552,2,1,2,0,1,,350.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1310.44719417718,300.0,18027.963102585487,0,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.046316935265983995,18027.963102585487,4,2,4_0,4_1_0,4_3_0,4_1_0 -33516,2,50.0,0.0,2,111,760.0,0.0,0.0,42,42,2240.377315527001,124.22070057833493,1050.452412957707,2380.0,0.0,0.0,71,1,2,2,1,2,2,2,2,2,20.0,1,,2,118545,2,1,2,0,2,,400.0,,43,3.0,0.0,5.0,4.0,2.5,3,3,1143.73729393178,760.0,92897.58540421304,1,1,0,1,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.02561961099036341,37159.03416168522,9,5,9,9_1,9_3,9_0_1 -33517,2,65.0,0.0,6,111,1700.0,0.0,0.0,75,47,0.0,0.0,2349.696186879082,1840.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126805,2,2,2,0,2,,45.0,,41,0.0,1.0,7.0,3.0,2.0,1,1,2922.64970802906,1700.0,61993.57575778901,5,5,0,1,142.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029680494753019926,30996.787878894505,8,4,8,8_1,8_3,8_0_0 -33518,2,38.0,0.0,1,111,854.0,1080.0,0.0,21,54,0.0,248.44140115666985,1180.3767903498447,2174.0,0.0,1958.7451329152448,71,0,0,0,0,0,0,0,0,1,1.0,1,,1,133406,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,2487.40976705554,854.0,33822.36658334758,1,1,0,1,170.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06427699240508992,16105.888849213134,4,2,4_0,4_1_0,4_3_0,4_1_0 -33519,1,34.0,366.0,7,111,600.0,0.0,0.0,63,52,0.0,0.0,829.3045365455583,756.0,268.3710126536699,0.0,71,2,2,2,1,2,1,2,2,2,10.0,1,,5,112927,1,3,3,0,2,,112.0,600.0,43,2.0,0.0,5.0,5.0,2.4,2,2,2703.27241438241,600.0,8717.393168680459,4,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.08672317347302058,3632.247153616858,1,1,1_1,1_1_1,1_3_1,1_0_0 -33520,2,77.0,0.0,1,111,288.0,1200.0,0.0,0,78,0.0,0.0,398.066177541868,1523.0,60.21144514665671,2176.3834810169387,50,0,0,0,0,0,0,0,0,0,,1,,1,110645,1,2,3,0,1,,103.0,686.0,11,0.0,2.0,4.0,1.0,1.0,1,1,2983.82596260063,288.0,21631.254199409865,0,5,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07040738303752862,21631.254199409865,6,3,6,6_1,6_3,6_1_0 -33521,2,55.0,0.0,6,111,2140.0,0.0,0.0,21,21,179.23018524216008,0.0,2957.8528470124916,2350.0,154.82943037711726,0.0,10,0,0,0,0,0,0,0,0,1,3.0,1,,4,112896,2,1,1,0,1,,327.0,,43,3.0,1.0,5.0,4.0,2.5,2,2,2561.84459343095,2140.0,24143.111727024698,1,1,0,1,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09733625170485034,9657.24469080988,1,1,1_0,1_1_0,1_3_0,1_0_0 -33522,2,31.0,0.0,2,111,1200.0,0.0,0.0,0,65,0.0,0.0,1658.6090730911167,1230.0,51.60981012570575,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,120304,2,1,1,0,1,,480.0,,12,1.0,0.0,4.0,1.0,1.0,3,3,2598.28740427628,1200.0,17685.85223728713,0,1,1,2,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06954711503281633,17685.85223728713,4,2,4_0,4_1_0,4_3_0,4_0_1 -33523,2,39.0,0.0,9,111,800.0,0.0,0.0,46,37,0.0,0.0,1105.7393820607444,860.0,103.2196202514115,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,111202,2,1,1,0,1,,720.0,,43,2.0,0.0,4.0,4.0,2.1,3,3,2386.96243200397,800.0,50829.60443027901,1,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016919273908173504,24204.5735382281,7,4,7,7_1,7_3,7_0_0 -33524,2,68.0,0.0,6,111,0.0,0.0,0.0,68,75,0.0,0.0,0.0,2990.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,104523,2,1,1,0,1,,441.0,,42,1.0,4.0,6.0,2.0,1.5,1,1,2487.14929649533,0.0,43141.85216928824,1,5,1,2,164.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06930625018757347,28761.234779525494,8,4,8,8_1,8_3,8_0_0 -33525,2,56.0,0.0,6,111,1470.0,0.0,0.0,54,77,0.0,0.0,2031.796114536618,1581.0,190.95629746511128,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,103608,2,1,2,0,1,,202.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2405.24880739321,1470.0,35958.28961882528,1,7,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04396760849193165,23972.193079216853,6,3,6,6_1,6_3,6_0_0 -33526,2,57.0,0.0,2,111,1200.0,0.0,0.0,56,62,0.0,621.1035028916747,1658.6090730911167,1940.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131794,2,3,1,0,1,,158.0,,43,2.0,3.0,4.0,3.0,2.0,3,3,2488.16065659432,1200.0,26649.867646898965,4,1,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07279585871510857,13324.933823449483,3,2,3_0,3_1_0,3_3_0,3_0_1 -33527,2,55.0,0.0,8,111,1281.0,0.0,0.0,52,33,0.0,0.0,1770.565185524767,1281.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,102679,2,1,2,0,1,,409.0,,43,2.0,2.0,6.0,2.0,1.5,2,1,2593.63843832354,1281.0,62314.892772777544,1,1,1,2,92.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020556883643705937,41543.26184851836,9,5,9,9_1,9_3,9_0_0 -33528,1,52.0,103.0,9,111,3000.0,0.0,0.0,52,62,0.0,0.0,4146.522682727792,3204.0,350.9467088547991,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,109518,2,1,1,0,1,,280.0,800.0,43,4.0,2.0,5.0,5.0,2.8,3,3,2498.80793284664,3000.0,61585.820948474764,1,1,2,3,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.052024962087955255,21994.936053026704,6,3,6,6_1,6_3,6_0_0 -33529,2,70.0,0.0,7,111,1400.0,0.0,0.0,75,75,0.0,0.0,1935.0439186063027,1496.0,165.1513924022584,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,124343,2,1,2,0,1,,1000.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2448.39169732102,1400.0,47514.54145463951,5,5,0,1,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031485098123659246,31676.360969759673,8,4,8,8_1,8_3,8_0_0 -33530,2,54.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1250.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,131372,2,2,5,0,1,,0.0,800.0,11,0.0,0.0,3.0,1.0,1.0,2,2,3203.69313573,0.0,23207.574224397937,0,7,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.053861725827677634,23207.574224397937,6,3,6,6_1,6_3,6_1_0 -33531,2,51.0,0.0,1,111,780.0,0.0,0.0,0,46,0.0,0.0,1078.0958975092258,780.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,102643,2,1,0,0,1,,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,2,2,4230.96718011362,780.0,31188.0,0,1,2,3,32.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.025009619084263177,31188.0,8,4,8,8_0,8_3,8_1_0 -33532,2,46.0,0.0,1,111,2000.0,0.0,0.0,43,31,0.0,0.0,2764.3484551518613,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,125970,2,2,1,0,1,,0.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,2804.78245875977,2000.0,127002.30278224137,1,1,1,2,240.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01574774595567143,63501.151391120686,10,5,10,10_1,10_3,10_1_0 -33533,2,51.0,0.0,8,111,450.0,0.0,0.0,0,54,0.0,621.1035028916747,621.9784024091688,1170.0,206.439240502823,0.0,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,119329,2,1,2,0,1,,0.0,,32,3.0,0.0,3.0,3.0,2.0,2,2,2832.28781837336,450.0,39014.16442282422,0,4,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029989108245914962,19507.08221141211,5,3,5,5_1,5_3,5_0_0 -33534,1,64.0,30.0,2,111,600.0,0.0,0.0,0,77,0.0,0.0,829.3045365455583,680.0,137.62616033521533,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,104027,2,1,0,0,1,,0.0,560.0,21,1.0,0.0,2.0,2.0,1.5,3,2,4121.30909369237,600.0,23057.836288969618,0,5,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.029491058548511667,15371.890859313078,3,2,3_1,3_0_1,3_3_1,3_0_1 -33535,2,60.0,0.0,6,111,1300.0,250.0,0.0,85,72,0.0,0.0,1796.8264958487098,1550.0,0.0,453.4132252118622,20,0,0,0,0,0,0,0,0,0,,1,,4,110701,2,1,2,0,1,,287.0,,41,1.0,3.0,4.0,3.0,2.0,2,2,2686.962376075,1300.0,29058.69624803532,7,7,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053340314609083554,14529.34812401766,3,2,3_0,3_1_0,3_3_0,3_0_0 -33536,2,70.0,0.0,6,111,750.0,0.0,0.0,77,75,0.0,0.0,1036.630670681948,750.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,119191,2,1,2,0,1,,120.0,,41,0.0,2.0,4.0,2.0,1.5,1,1,2405.24880739321,750.0,22951.24172922999,5,5,0,1,87.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03267797049276089,15300.82781948666,3,2,3_0,3_1_0,3_3_0,3_0_0 -33537,1,62.0,288.0,2,111,96.0,0.0,0.0,86,86,0.0,217.38622601208613,132.68872584728933,446.0,240.84578058662683,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,111255,2,3,2,0,1,,0.0,401.0,41,0.0,1.0,3.0,2.0,1.5,2,2,3052.09760130393,96.0,11402.829312015545,5,5,2,3,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.03911309972254297,7601.886208010364,1,1,1_1,1_1_1,1_3_1,1_0_1 -33538,1,55.0,19.0,1,111,600.0,0.0,0.0,78,56,1493.5848770180007,0.0,829.3045365455583,1760.0,275.25232067043066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123588,2,2,5,0,1,,0.0,780.0,42,1.0,2.0,4.0,3.0,2.0,1,1,3013.596530997,600.0,29400.43949608342,5,1,2,3,90.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05986305069468292,14700.21974804171,3,2,3_1,3_1_1,3_3_1,3_1_0 -33539,2,50.0,0.0,6,111,1500.0,0.0,0.0,54,65,0.0,414.0690019277831,2073.261341363896,1990.0,154.82943037711726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,114020,2,1,2,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2405.24880739321,1500.0,34299.71972281174,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058017966796285785,22866.479815207826,6,3,6,6_1,6_3,6_0_0 -33540,2,47.0,0.0,7,112,1500.0,0.0,0.0,56,43,0.0,0.0,2073.261341363896,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,116957,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.5,1,1,2580.48491393409,1500.0,41602.568639338126,1,1,1,2,75.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03605546602191398,16641.02745573525,4,2,4_0,4_1_0,4_0_0,4_0_0 -33541,2,29.0,0.0,2,112,0.0,0.0,0.0,55,65,0.0,0.0,0.0,727.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,2,107261,2,2,5,0,1,,277.0,580.0,43,2.0,0.0,3.0,2.0,1.5,2,2,3090.99072033895,0.0,16040.403881289938,1,1,2,3,80.0,9,0,9,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04532304830852776,10693.602587526626,2,1,2_0,2_1_0,2_0_0,2_0_1 -33542,2,56.0,0.0,6,112,0.0,0.0,0.0,54,22,2389.735803228801,0.0,0.0,2286.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,132101,2,1,2,0,1,,104.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,3256.744278124,0.0,97471.57269724076,1,1,0,1,157.0,9,0,9,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023452991849229828,48735.78634862038,10,5,10,10_1,10_0,10_0_0 -33543,2,74.0,0.0,1,112,0.0,0.0,0.0,0,71,0.0,217.38622601208613,0.0,1245.0,688.1308016760767,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,129783,2,3,2,0,1,,302.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,3654.74819824497,0.0,14927.83485683621,0,5,0,1,100.0,9,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.083401244181761,14927.83485683621,3,2,3_0,3_1_0,3_0_0,3_1_0 -33544,0,45.0,0.0,7,112,0.0,0.0,0.0,52,48,0.0,0.0,0.0,1637.0,344.06540083803833,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,107871,2,1,2,0,1,,861.0,,43,2.0,0.0,5.0,4.0,2.5,1,1,3133.00421337273,0.0,40371.0,1,1,5,0,100.0,9,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04054890887022863,16148.4,4,2,4_0,4_1_0,4_0_0,4_0_0 -33545,2,33.0,0.0,9,112,1653.0,0.0,0.0,54,47,0.0,0.0,2284.7339981830132,1913.0,447.28502108944986,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,129050,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,3329.57510199213,1653.0,59802.07372343888,1,1,1,2,137.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03198885725680474,33223.37429079938,8,4,8,8_1,8_0,8_0_0 -33546,2,88.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,535.0,137.62616033521533,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,133532,2,1,1,0,1,,380.0,,11,0.0,2.0,5.0,1.0,1.0,2,2,1561.52262975948,0.0,21424.603555476726,0,5,0,1,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.024971290535886675,21424.603555476726,6,3,6,6_1,6_3,6_0_1 -33547,2,51.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1292.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,114817,2,1,2,0,1,,400.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,1683.98409311057,0.0,24331.685900763343,0,1,1,2,100.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0530994853899321,12165.842950381671,2,1,2_0,2_1_0,2_3_0,2_0_0 -33548,2,54.0,0.0,2,111,1830.0,0.0,0.0,38,21,3733.962192545002,0.0,2529.378836463953,4330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,133043,1,1,2,0,2,,1500.0,2900.0,43,2.0,3.0,7.0,2.0,1.5,1,1,1474.27981370969,1830.0,238315.1479275694,1,1,2,3,200.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01816921852284441,158876.76528504628,10,5,10,10_1,10_3,10_0_1 -33549,2,38.0,0.0,5,111,3000.0,0.0,0.0,52,37,0.0,0.0,4146.522682727792,3030.0,51.60981012570575,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,126678,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,3.0,1.8,3,3,1462.20504342133,3000.0,78653.70946841234,1,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03852329433002598,43696.50526022908,10,5,10,10_1,10_3,10_0_0 -33550,2,62.0,0.0,7,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,3056.0,111.82125527236246,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,110821,2,1,2,0,1,,137.0,,41,0.0,3.0,4.0,2.0,1.5,3,3,1411.84213789204,0.0,33045.85484240705,5,5,0,1,150.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09247755927555246,22030.56989493803,6,3,6,6_1,6_3,6_0_0 -33551,2,47.0,0.0,1,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,591.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,133031,2,1,1,0,1,,558.0,,42,1.0,0.0,4.0,3.0,2.0,4,4,1514.32670338663,0.0,29914.225835554826,6,1,0,1,80.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019756486537504225,14957.112917777413,3,2,3_0,3_1_0,3_3_0,3_1_0 -33552,1,37.0,80.0,2,111,1400.0,0.0,0.0,56,64,0.0,310.55175144583734,1935.0439186063027,1850.0,258.04905062852873,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108720,2,1,1,0,1,,120.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1362.63220408951,1400.0,24557.246787308228,1,1,1,2,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07533417797292016,11693.927041575345,2,1,2_1,2_1_1,2_3_1,2_0_1 -33553,2,77.0,0.0,5,111,0.0,0.0,0.0,77,74,0.0,828.1380038555662,0.0,2343.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127915,2,2,2,0,1,,377.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1299.43331094888,0.0,46424.86055414154,5,5,0,1,128.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05046864916842453,30949.90703609436,8,4,8,8_1,8_3,8_0_0 -33554,2,68.0,0.0,6,111,850.0,0.0,0.0,86,78,0.0,0.0,1174.848093439541,970.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,125259,2,1,2,0,1,,200.0,,41,1.0,0.0,5.0,3.0,2.0,3,2,1669.14903714945,850.0,34683.144893775265,6,5,0,1,113.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02796747535354241,17341.572446887632,4,2,4_0,4_1_0,4_3_0,4_0_0 -33555,2,63.0,0.0,6,111,1230.0,0.0,0.0,77,78,0.0,0.0,1700.0742999183947,1230.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,100580,2,1,1,0,1,,295.0,,41,0.0,2.0,4.0,2.0,1.5,4,3,1315.27635774408,1230.0,30919.12383938261,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039781204874677345,20612.749226255073,5,3,5,5_1,5_3,5_0_0 -33556,2,58.0,0.0,1,111,1700.0,0.0,0.0,54,21,0.0,0.0,2349.696186879082,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,114788,2,2,1,0,1,,189.0,,43,2.0,2.0,4.0,2.0,1.5,4,4,1377.35375684667,1700.0,48918.51479058268,1,1,0,1,150.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034751668305499486,32612.343193721787,8,4,8,8_1,8_3,8_1_0 -33557,2,70.0,0.0,6,111,550.0,0.0,0.0,78,77,0.0,0.0,760.1958251667618,620.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,127858,1,1,3,0,1,,255.0,,41,0.0,1.0,6.0,2.0,1.5,1,1,1367.7625031831,550.0,36187.91275466833,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017132792493538287,24125.275169778888,6,3,6,6_1,6_3,6_0_0 -33558,2,76.0,0.0,6,111,2130.0,0.0,0.0,86,77,0.0,0.0,2944.0311047367322,2330.0,344.06540083803833,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,102578,2,1,2,0,1,,160.0,,41,0.0,2.0,3.0,2.0,1.5,3,3,1387.30864778045,2130.0,19407.09690454872,6,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12005917275828536,12938.06460303248,2,1,2_0,2_1_0,2_3_0,2_0_0 -33559,2,22.0,0.0,6,111,1200.0,0.0,0.0,0,56,0.0,0.0,1658.6090730911167,3505.0,774.1471518855863,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,112113,2,1,2,0,1,,480.0,,22,1.0,0.0,5.0,4.0,2.5,3,2,1243.3216787181,1200.0,20734.957938989603,0,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1690382015875358,8293.98317559584,1,1,1_0,1_1_0,1_3_0,1_0_0 -33560,2,54.0,0.0,5,111,900.0,0.0,0.0,75,31,0.0,931.655254337512,1243.9568048183376,1860.0,103.2196202514115,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,104607,2,1,2,0,1,,400.0,,42,1.0,3.0,5.0,2.0,1.5,6,5,1284.81462030321,900.0,53599.277686941496,5,1,1,2,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03470196018057825,35732.85179129433,9,5,9,9_1,9_3,9_0_0 -33561,2,83.0,0.0,2,111,80.0,0.0,0.0,72,72,0.0,310.55175144583734,110.57393820607444,450.0,120.42289029331342,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119821,2,1,3,0,2,,638.0,,41,0.0,1.0,3.0,2.0,1.5,3,3,1351.46915879374,80.0,35630.1986174403,5,5,0,1,79.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.012629735939213474,23753.4657449602,6,3,6,6_1,6_3,6_0_1 -33562,2,67.0,0.0,6,111,900.0,1600.0,0.0,0,72,0.0,0.0,1243.9568048183376,2500.0,0.0,2901.844641355918,60,0,0,0,0,0,0,0,0,0,,1,,4,115317,2,2,2,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1496.91680006049,900.0,45859.4209042348,0,5,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05451442584110656,45859.4209042348,10,5,10,10_1,10_3,10_0_0 -33563,2,51.0,0.0,7,111,1150.0,0.0,0.0,46,45,0.0,227.73795106028072,1589.5003617123202,1490.0,206.439240502823,0.0,41,2,2,1,2,2,2,2,1,2,25.0,1,,5,114791,2,2,2,0,2,,210.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,1379.06509541815,1150.0,57037.83213597554,1,1,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.026123012467372694,31687.68451998641,8,4,8,8_1,8_3,8_0_0 -33564,1,43.0,120.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1469.0,0.0,0.0,31,2,2,2,1,2,2,2,2,2,10.0,2,,2,110873,2,1,0,1,1,,0.0,312.0,32,2.0,0.0,3.0,3.0,1.8,3,3,2707.08759014055,0.0,18106.326941240084,0,1,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.08113186096590995,10059.070522911157,2,1,2_1,2_0_1,2_3_1,2_0_1 -33565,2,40.0,0.0,1,111,800.0,0.0,0.0,0,54,2688.452778632401,0.0,1105.7393820607444,2600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,117034,2,1,3,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1609.03600810869,800.0,26271.342309911513,0,1,0,1,90.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09896715475474908,26271.342309911513,7,4,7,7_1,7_3,7_1_0 -33567,2,87.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,807.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128646,2,1,0,0,1,,160.0,480.0,11,0.0,0.0,2.0,1.0,1.0,2,2,2169.80304963885,0.0,25334.797501498233,0,5,2,3,50.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0318534221539476,25334.797501498233,7,4,7,7_0,7_3,7_1_0 -33568,2,68.0,0.0,6,111,500.0,500.0,0.0,0,77,0.0,0.0,691.0871137879653,1000.0,0.0,906.8264504237244,71,0,0,0,0,0,0,0,0,0,,1,,4,128312,2,1,2,0,1,,360.0,,11,0.0,3.0,3.0,1.0,1.0,5,5,1586.81372158498,500.0,21346.443872449534,0,5,1,2,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04684621035593825,21346.443872449534,6,3,6,6_1,6_3,6_0_0 -33569,1,50.0,168.0,7,111,465.0,0.0,0.0,85,62,0.0,0.0,642.7110158228077,465.0,0.0,0.0,42,2,2,2,1,2,2,2,2,2,10.0,1,,5,120799,2,2,5,0,1,,1125.0,383.0,42,2.0,1.0,4.0,5.0,2.8,3,2,1351.23965400638,465.0,33924.71122285786,6,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.013706822644570998,12115.96829387781,2,1,2_1,2_1_1,2_3_1,2_0_0 -33570,2,48.0,0.0,1,111,1305.0,0.0,0.0,22,37,0.0,0.0,1803.7373669865894,1375.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124405,2,2,1,0,1,,500.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,1460.51703367248,1305.0,49749.77435455979,1,4,0,1,140.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027638316310754786,19899.909741823918,5,3,5,5_1,5_3,5_1_0 -33571,0,62.0,0.0,9,111,1200.0,1400.0,0.0,0,63,0.0,0.0,1658.6090730911167,2600.0,0.0,2539.1140611864284,60,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,111713,2,1,1,0,1,,970.0,,12,1.0,0.0,4.0,1.0,1.0,2,2,1737.93230555538,1200.0,23173.416004432354,0,1,0,1,140.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11219752838781735,23173.416004432354,6,3,6,6_1,6_3,6_0_0 -33572,2,50.0,0.0,2,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,2922.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,7.0,1,,2,118389,2,1,3,0,1,,650.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1440.85308152387,0.0,46714.33208512225,1,1,0,1,100.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06255039662507791,31142.88805674817,8,4,8,8_1,8_3,8_0_1 -33573,2,61.0,0.0,5,111,1200.0,0.0,0.0,74,31,3584.6037048432017,0.0,1658.6090730911167,3600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,121518,2,1,2,0,1,,1200.0,,42,1.0,1.0,7.0,2.0,1.5,2,2,1398.53279807482,1200.0,68316.87521834561,6,1,0,1,250.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052695618593416975,45544.583478897075,10,5,10,10_1,10_3,10_0_0 -33574,2,58.0,0.0,7,111,1250.0,0.0,0.0,77,34,0.0,0.0,1727.717784469913,1320.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,5,106630,2,2,2,0,1,,250.0,,42,2.0,0.0,6.0,3.0,2.0,2,2,1643.41621137182,1250.0,57548.412864761514,5,1,0,1,132.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022937209460528362,28774.206432380757,8,4,8,8_1,8_3,8_0_0 -33575,2,50.0,0.0,2,111,1588.0,0.0,0.0,34,37,4480.754631054002,0.0,2194.892673390578,4728.0,240.84578058662683,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,119068,1,1,2,0,2,,800.0,,43,2.0,0.0,9.0,4.0,2.5,4,4,1394.45310081386,1588.0,239532.24108981114,1,1,0,1,220.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019738470188767888,95812.89643592446,10,5,10,10_1,10_3,10_0_1 -33576,2,59.0,0.0,6,111,3500.0,0.0,0.0,21,37,0.0,362.31037668681023,4837.609796515757,3920.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121117,2,1,2,0,1,,1150.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,1512.44707196186,3500.0,76101.54140583162,1,1,0,1,160.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05151012617596747,38050.77070291581,9,5,9,9_1,9_3,9_0_0 -33577,1,37.0,310.0,2,111,1200.0,2800.0,0.0,85,64,0.0,0.0,1658.6090730911167,4000.0,0.0,5078.228122372857,71,0,0,0,0,0,0,0,0,0,,1,,2,114367,1,2,2,0,1,,630.0,620.0,42,1.0,0.0,4.0,5.0,2.4,5,3,1693.24477086905,1200.0,25443.094279309793,6,1,2,3,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.15721358243964775,10601.289283045748,2,1,2_1,2_1_1,2_3_1,2_0_1 -33578,2,43.0,0.0,9,111,1200.0,0.0,0.0,52,48,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,12.0,1,2006.0,6,129346,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,3.0,2.0,2,2,1549.79173814302,1200.0,52119.0014026794,1,1,0,1,145.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023024232385586513,26059.5007013397,7,4,7,7_1,7_3,7_0_0 -33579,2,56.0,0.0,5,111,1200.0,0.0,0.0,37,38,0.0,422.3503819663388,1658.6090730911167,1710.0,175.47335442739956,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117345,2,1,2,0,1,,600.0,,43,2.0,3.0,7.0,2.0,1.5,1,1,1549.0406371438,1200.0,55137.90447441267,1,1,0,1,126.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031013148147361013,36758.60298294178,9,5,9,9_1,9_3,9_0_0 -33580,2,37.0,0.0,7,111,1400.0,0.0,0.0,46,38,0.0,0.0,1935.0439186063027,1400.0,0.0,0.0,71,2,2,2,2,2,2,1,2,0,,1,,5,118617,2,2,3,0,1,,503.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1253.19093766599,1400.0,50668.5078180658,1,4,1,2,89.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.027630574893323216,24127.86086574562,6,3,6,6_1,6_3,6_0_0 -33581,2,57.0,0.0,7,111,70.0,0.0,0.0,75,43,0.0,0.0,96.75219593031514,105.0,60.21144514665671,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,118966,2,1,2,0,1,,672.0,,42,1.0,3.0,5.0,2.0,1.5,1,1,1327.39553214654,70.0,63263.68839769748,5,1,0,1,92.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0016597198592015945,42175.792265131655,9,5,9,9_1,9_3,9_0_0 -33582,0,78.0,0.0,1,111,1000.0,0.0,0.0,0,71,4480.754631054002,0.0,1382.1742275759307,4000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132356,2,1,2,0,1,,420.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,1799.17410283866,1000.0,12580.51045962962,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.31795212227960445,12580.51045962962,2,1,2_0,2_1_0,2_3_0,2_1_0 -33583,1,46.0,122.0,7,111,2100.0,0.0,0.0,56,46,0.0,0.0,2902.5658779094542,2100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,117993,2,2,1,0,1,,0.0,900.0,43,3.0,0.0,5.0,5.0,3.0,2,2,1529.33992690832,2100.0,39466.0,1,4,2,3,128.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05321035828307911,13155.333333333334,2,1,2_1,2_1_1,2_3_1,2_0_0 -33584,2,52.0,0.0,7,111,1560.0,0.0,0.0,85,38,0.0,0.0,2156.1917950184516,1690.0,223.64251054472493,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,121098,2,1,2,0,1,,289.0,,42,1.0,1.0,5.0,3.0,2.0,2,2,1592.60540296655,1560.0,43686.29101962899,6,1,0,1,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038684904590336,21843.145509814494,6,3,6,6_1,6_3,6_0_0 -33585,2,53.0,0.0,6,111,1700.0,0.0,0.0,52,46,0.0,0.0,2349.696186879082,1880.0,309.6588607542345,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,108232,2,1,2,0,1,,400.0,,43,2.0,2.0,4.0,2.0,1.5,1,1,1321.15649607822,1700.0,52193.12927461577,1,1,1,2,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03602006674304431,34795.41951641051,9,5,9,9_1,9_3,9_0_0 -33586,2,52.0,0.0,7,111,350.0,0.0,0.0,0,52,0.0,0.0,483.76097965157567,385.0,60.21144514665671,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,118690,2,1,2,0,2,,200.0,900.0,22,1.0,1.0,4.0,2.0,1.5,1,1,1587.02020787269,350.0,40041.26238975711,0,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009615081469021972,26694.17492650474,7,4,7,7_1,7_3,7_0_0 -33587,2,67.0,0.0,7,111,1460.0,0.0,0.0,86,72,3733.962192545002,0.0,2017.9743722608587,4075.0,197.83760548187203,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119565,2,1,2,0,1,,290.0,,41,1.0,3.0,7.0,3.0,2.0,1,1,1552.78156129101,1460.0,44209.93020713688,6,5,0,1,200.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09217386186558979,22104.96510356844,6,3,6,6_1,6_3,6_0_0 -33588,2,38.0,0.0,9,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,2415.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,107684,2,1,2,0,1,,0.0,1050.0,43,2.0,0.0,4.0,4.0,2.1,1,1,1525.52350737952,0.0,57095.64493906348,1,1,2,3,95.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04229744672430724,27188.40235193499,7,4,7,7_1,7_3,7_0_0 -33589,2,56.0,0.0,7,111,1500.0,0.0,0.0,78,47,0.0,0.0,2073.261341363896,1650.0,258.04905062852873,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,120908,2,2,3,0,1,,330.0,,42,1.0,2.0,5.0,2.0,1.5,1,1,1352.47986496418,1500.0,34961.83744582019,6,1,0,1,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047194315875330614,23307.89163054679,6,3,6,6_1,6_3,6_0_0 -33590,2,26.0,0.0,2,111,400.0,0.0,0.0,0,56,0.0,0.0,552.8696910303722,460.0,103.2196202514115,0.0,31,0,0,0,0,0,0,0,0,1,5.0,1,,2,130199,2,1,2,0,1,,560.0,450.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1698.27460566906,400.0,15720.0,0,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029262086513994912,12092.307692307691,2,1,2_0,2_1_0,2_3_0,2_0_1 -33591,2,29.0,0.0,1,111,500.0,0.0,0.0,0,67,0.0,0.0,691.0871137879653,600.0,172.03270041901916,0.0,41,2,2,2,2,1,2,2,2,2,15.0,2,,1,104025,2,2,0,0,1,,170.0,480.0,12,1.0,0.0,1.0,1.0,1.0,3,2,2270.45599973645,500.0,18579.72873518496,0,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.0322932594200777,18579.72873518496,4,2,4_0,4_0_0,4_3_0,4_1_0 -33592,2,83.0,0.0,5,111,2165.0,0.0,0.0,0,77,0.0,31.055175144583732,2992.4072027018897,2230.0,60.21144514665671,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,106684,2,1,2,0,1,,520.0,,21,1.0,0.0,6.0,2.0,1.5,2,2,1398.53279807482,2165.0,51857.47652731326,0,5,0,1,122.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043002478125318384,34571.65101820884,9,5,9,9_1,9_3,9_0_0 -33593,2,69.0,0.0,2,111,464.0,0.0,0.0,85,86,0.0,894.3890441640115,641.3288415952318,1328.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,109357,2,1,2,0,1,,410.0,,41,0.0,2.0,4.0,3.0,1.8,1,1,1663.07144493359,464.0,25265.128948364894,6,5,0,1,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052562565689416176,14036.182749091608,3,2,3_0,3_1_0,3_3_0,3_0_1 -33594,2,57.0,0.0,7,111,1000.0,0.0,0.0,0,65,0.0,207.03450096389156,1382.1742275759307,1270.0,120.42289029331342,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,118371,2,1,2,0,1,,400.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,1594.77076807792,1000.0,8772.831886338408,0,4,0,1,137.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1447651130734332,8772.831886338408,1,1,1_0,1_1_0,1_3_0,1_0_0 -33595,2,59.0,0.0,1,111,2400.0,2500.0,0.0,85,31,0.0,217.38622601208613,3317.2181461822333,5110.0,0.0,4534.132252118622,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,133413,1,1,1,0,2,,500.0,,42,1.0,1.0,9.0,3.0,1.8,1,1,1612.79329059311,2400.0,215444.62481260355,6,1,0,1,250.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023718391695521493,119691.4582292242,10,5,10,10_1,10_3,10_1_0 -33596,1,47.0,53.0,2,111,0.0,0.0,1000.0,0,56,0.0,0.0,510.91333483752504,1000.0,0.0,1143.2457746526316,50,0,0,0,0,0,0,0,0,0,,1,,2,113301,2,1,1,0,1,,280.0,397.0,22,2.0,0.0,3.0,2.0,1.5,5,4,1307.43639392127,0.0,17403.530995852903,0,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05745960404462121,11602.353997235268,2,1,2_1,2_1_1,2_3_1,2_0_1 -33597,0,45.0,0.0,1,112,0.0,100.0,0.0,63,56,0.0,315.7276139699346,0.0,1317.0,0.0,181.36529008474488,71,2,2,1,1,2,2,2,2,0,,1,,1,128933,2,1,2,0,2,,371.0,,43,2.0,0.0,3.0,2.0,1.5,5,5,1849.42801537435,0.0,35760.68828892446,1,1,5,0,80.0,6,0,9,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.036828150212307065,23840.45885928297,6,3,6,6_1,6_0,6_1_0 -33598,2,68.0,0.0,9,112,1010.0,0.0,0.0,77,78,0.0,0.0,1395.9959698516898,1075.0,111.82125527236246,0.0,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,125622,2,1,1,0,1,,373.0,,41,0.0,2.0,4.0,2.0,1.5,6,6,10049.2119735606,1010.0,27856.853128555635,5,5,1,2,100.0,6,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038590144947062734,18571.23541903709,4,2,4_0,4_1_0,4_1_0,4_0_0 -33599,2,84.0,0.0,1,112,1250.0,0.0,0.0,0,71,0.0,0.0,1727.717784469913,1370.0,206.439240502823,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,113764,1,1,4,0,2,,35.0,,11,0.0,0.0,9.0,1.0,1.0,2,2,1881.8770815936,1250.0,9855.163611850065,0,5,0,1,122.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13901342016815246,9855.163611850065,2,1,2_0,2_1_0,2_0_0,2_1_0 -33600,2,85.0,0.0,2,111,400.0,270.0,0.0,0,86,0.0,0.0,552.8696910303722,670.0,0.0,489.6862832288112,71,2,2,2,2,1,2,2,2,0,,8,,2,129965,2,2,0,0,1,,210.0,,11,0.0,1.0,2.0,1.0,1.0,2,2,516.166550729578,400.0,16190.73002987188,0,6,0,1,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.04138170414575814,16190.73002987188,4,2,4_0,4_0_0,4_2_0,4_0_1 -33601,2,62.0,0.0,5,112,850.0,0.0,0.0,0,48,0.0,0.0,1174.848093439541,925.0,129.02452531426437,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110918,2,1,2,0,1,,196.0,,12,1.0,0.0,4.0,1.0,1.0,3,2,1792.38166150952,850.0,6091.90808836508,0,4,0,1,96.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15184076755305206,6091.90808836508,1,1,1_0,1_1_0,1_0_0,1_0_0 -33602,1,83.0,270.0,2,111,332.0,0.0,0.0,0,72,0.0,0.0,458.88184355520895,412.0,137.62616033521533,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,128387,2,3,0,0,2,,325.0,315.0,11,0.0,3.0,1.0,1.0,1.0,2,2,633.444595778267,332.0,9306.85884585958,0,5,2,3,28.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.044268426847721004,9306.85884585958,1,1,1_1,1_0_1,1_2_1,1_0_1 -33603,0,44.0,0.0,2,111,0.0,0.0,1720.0,0,46,0.0,0.0,878.770935920543,1720.0,0.0,1966.382732402526,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,111931,2,1,0,0,1,,420.0,,32,1.0,0.0,4.0,3.0,2.0,2,2,513.624771533228,0.0,44308.22972373061,0,1,0,1,98.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03881897360207109,22154.114861865306,6,3,6,6_0,6_2,6_0_1 -33604,2,65.0,0.0,1,112,980.0,0.0,0.0,77,75,0.0,351.95865163861566,1354.530743024412,1420.0,172.03270041901916,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,114703,2,1,2,0,1,,548.0,,41,0.0,1.0,7.0,2.0,1.5,3,3,1753.2512142257,980.0,46605.227253614205,5,5,0,1,300.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030468685245813924,31070.15150240947,8,4,8,8_1,8_0,8_1_0 -33605,2,44.0,0.0,2,111,650.0,650.0,0.0,0,54,0.0,0.0,898.4132479243549,1300.0,0.0,1178.8743855508417,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,112998,2,2,0,0,2,,450.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,528.924382552713,650.0,28354.15452232826,0,1,0,1,85.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.045848660342747274,18902.769681552174,5,3,5,5_0,5_2,5_0_1 -33606,2,48.0,0.0,7,112,384.0,0.0,0.0,0,52,0.0,579.6966026988963,530.7549033891573,2192.0,60.21144514665671,0.0,31,2,2,2,1,1,2,2,2,2,25.0,1,,5,107852,2,3,4,0,1,,65.0,,12,1.0,3.0,4.0,1.0,1.0,2,2,1751.80607515171,384.0,15238.172088175274,0,1,0,1,85.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.14384927452689542,15238.172088175274,3,2,3_0,3_1_0,3_0_0,3_0_0 -33607,1,33.0,311.0,2,111,2080.0,0.0,0.0,85,21,0.0,0.0,2874.9223933579356,2080.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,100713,1,3,0,0,2,,800.0,585.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,574.325852516958,2080.0,21850.670411979845,6,1,2,3,65.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,1,0,0,1,0.09519158729608679,8404.104004607634,1,1,1_1,1_0_1,1_2_1,1_0_1 -33608,2,56.0,0.0,5,111,750.0,700.0,0.0,52,47,0.0,0.0,1036.630670681948,1450.0,0.0,1269.5570305932142,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,131633,2,1,0,0,1,,650.0,,43,3.0,0.0,4.0,4.0,2.5,3,2,503.213790591737,750.0,98721.22402653117,1,1,0,1,108.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014687824369056798,39488.489610612465,9,5,9,9_0,9_2,9_0_0 -33609,1,83.0,120.0,2,112,485.0,0.0,0.0,0,77,0.0,942.0069793857066,670.3545003743263,1461.0,113.54158227655265,0.0,42,2,2,2,2,1,1,2,2,0,,2,,2,102263,1,3,0,0,2,,460.0,400.0,11,0.0,3.0,4.0,1.0,1.0,1,1,2036.08164962817,485.0,15324.636928693188,0,5,2,3,70.0,6,0,9,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.09533667954406716,15324.636928693188,3,2,3_1,3_0_1,3_0_1,3_0_1 -33611,0,41.0,0.0,2,112,0.0,0.0,0.0,0,22,0.0,0.0,0.0,755.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,129796,2,1,1,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,3,3,1824.57816724601,0.0,42772.0,0,1,5,0,65.0,6,0,9,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01765173477976246,28514.666666666668,8,4,8,8_1,8_0,8_0_1 -33612,1,83.0,209.0,2,111,523.0,90.0,0.0,0,77,0.0,0.0,722.8771210222117,613.0,0.0,163.2287610762704,43,0,0,0,0,0,0,0,0,0,,2,,2,108731,1,2,0,0,2,,204.0,294.0,11,0.0,0.0,3.0,1.0,1.0,3,3,646.463787878091,523.0,10230.308839316473,0,5,2,3,38.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05991998967266339,10230.308839316473,2,1,2_1,2_0_1,2_2_1,2_0_1 -33613,2,64.0,0.0,2,112,281.0,0.0,0.0,77,75,0.0,31.055175144583732,388.3909579488365,1865.0,2673.388164511558,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131354,2,1,0,0,1,,354.0,,41,0.0,1.0,4.0,2.0,1.5,1,1,2005.42631273304,281.0,33048.38866009049,5,5,0,1,100.0,6,0,9,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05643240338226201,22032.259106726993,6,3,6,6_0,6_0,6_0_1 -33614,2,71.0,0.0,2,112,300.0,0.0,0.0,0,86,0.0,0.0,414.65226827277917,1676.0,2367.1699577657037,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112429,1,1,0,0,2,,400.0,650.0,11,0.0,2.0,3.0,1.0,1.0,2,2,2019.18908878145,300.0,27167.152859241916,0,6,2,3,60.0,6,0,9,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06169214745040338,27167.152859241916,7,4,7,7_0,7_0,7_0_1 -33615,2,26.0,0.0,5,112,1100.0,0.0,0.0,0,12,0.0,0.0,1520.3916503335236,2300.0,2064.39240502823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125275,2,1,2,0,2,,900.0,,22,3.0,0.0,6.0,4.0,2.5,3,3,1762.29438035208,1100.0,8705.180476824778,0,1,0,1,115.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.264210490078079,3482.072190729911,1,1,1_0,1_1_0,1_0_0,1_0_0 -33616,2,76.0,0.0,2,111,240.0,610.0,0.0,86,77,0.0,0.0,331.72181461822333,850.0,0.0,1106.328269516944,71,0,0,0,0,0,0,0,0,0,,2,,2,121402,2,1,0,0,2,,390.0,,41,0.0,1.0,3.0,2.0,1.5,1,1,505.517199828703,240.0,14546.961560414707,6,5,0,1,78.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.058431446076892504,9697.974373609804,1,1,1_0,1_0_0,1_2_0,1_0_1 -33617,2,39.0,0.0,6,112,700.0,0.0,0.0,85,52,0.0,0.0,967.5219593031513,733.0,56.77079113827632,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,114855,2,2,5,0,1,,500.0,500.0,42,1.0,0.0,2.0,4.0,2.1,2,2,1894.85006175175,700.0,24149.729583090666,6,1,3,4,55.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030352306740247612,11499.871230043174,2,1,2_0,2_1_0,2_0_0,2_0_0 -33618,2,52.0,0.0,2,111,0.0,0.0,900.0,21,67,0.0,0.0,459.8220013537725,900.0,0.0,1028.9211971873683,31,2,2,1,2,2,2,2,1,2,15.0,2,,2,100895,2,2,0,0,1,,580.0,,43,3.0,0.0,4.0,4.0,2.5,3,3,478.414033326912,0.0,55473.77905236325,1,1,1,2,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01622388118088124,22189.5116209453,6,3,6,6_0,6_2,6_0_1 -33620,1,70.0,206.0,2,111,230.0,400.0,0.0,0,77,0.0,0.0,317.900072342464,667.0,63.65209915503709,725.4611603389795,31,0,0,0,0,0,0,0,0,0,,2,,2,131703,2,2,0,0,1,,200.0,338.0,11,0.0,2.0,4.0,1.0,1.0,2,1,574.859685103823,230.0,9376.601746157026,0,5,2,3,82.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07113451312714311,9376.601746157026,1,1,1_1,1_0_1,1_2_1,1_0_1 -33621,2,64.0,0.0,6,112,979.0,0.0,0.0,54,48,0.0,0.0,1353.1485687968361,2320.0,2306.9585126190473,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,132468,2,1,2,0,2,,1400.0,,43,2.0,2.0,6.0,2.0,1.5,1,1,1805.0037087287,979.0,35335.37974721106,1,1,0,1,110.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06565657470210469,23556.91983147404,6,3,6,6_1,6_0,6_0_0 -33622,1,33.0,181.0,2,111,430.0,295.0,0.0,56,63,0.0,0.0,594.3349178576501,725.0,0.0,535.0276057499974,71,2,2,2,2,1,2,2,2,0,,2,,2,100779,2,2,0,0,1,,383.0,700.0,43,2.0,0.0,3.0,4.0,2.1,1,1,577.373927605588,430.0,29954.163721269026,1,1,2,3,52.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.02420364683675719,14263.887486318583,3,2,3_1,3_0_1,3_2_1,3_0_1 -33623,2,68.0,0.0,6,111,372.0,744.0,0.0,77,77,0.0,414.0690019277831,514.1688126582462,1516.0,0.0,1349.357758230502,50,0,0,0,0,0,0,0,0,0,,2,,4,103236,2,1,0,0,1,,353.0,,41,0.0,3.0,4.0,2.0,1.5,2,1,505.218004461413,372.0,36063.684438134456,5,5,0,1,93.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04203674759301497,24042.45629208964,6,3,6,6_0,6_2,6_0_0 -33624,2,42.0,0.0,6,111,550.0,800.0,0.0,67,64,0.0,0.0,760.1958251667618,1476.0,216.76120252796414,1450.922320677959,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,112662,2,2,0,0,1,,362.0,472.0,43,3.0,0.0,5.0,4.0,2.3,1,1,466.135910063145,550.0,54528.89990039482,4,1,2,3,129.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027068215252758345,23708.21734799775,6,3,6,6_0,6_2,6_0_0 -33625,2,63.0,0.0,9,112,855.0,0.0,0.0,43,75,0.0,0.0,1181.7589645774206,855.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109474,2,1,1,0,1,,519.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1776.94516182159,855.0,60652.892263554946,1,5,1,2,95.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014096607236548086,33696.051257530526,9,5,9,9_1,9_0,9_0_0 -33626,2,82.0,0.0,1,112,1800.0,0.0,0.0,0,74,0.0,0.0,2487.913609636675,1870.0,120.42289029331342,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110916,1,1,3,0,2,,30.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,1915.59484329304,1800.0,29596.170013232237,0,5,0,1,60.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06318385112546442,29596.170013232237,8,4,8,8_1,8_0,8_1_0 -33627,2,53.0,0.0,2,111,0.0,0.0,871.0,85,21,0.0,0.0,445.00551464348433,871.0,0.0,995.7670697224421,71,2,2,2,2,2,2,1,2,2,5.0,2,,2,131368,2,1,0,0,1,,724.0,456.0,42,3.0,0.0,4.0,4.0,2.5,1,1,489.333552262001,0.0,80738.96330410954,6,1,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.010787852164007994,32295.585321643815,8,4,8,8_0,8_2,8_0_1 -33628,2,80.0,0.0,2,111,186.0,452.0,0.0,0,77,0.0,0.0,257.0844063291231,638.0,0.0,819.7711111830469,60,2,2,2,2,1,2,2,1,0,,2,,2,131296,1,2,0,0,1,,245.0,810.0,11,0.0,4.0,3.0,1.0,1.0,1,1,596.023783463689,186.0,18482.44450949256,0,5,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.03451924336482244,18482.44450949256,4,2,4_0,4_0_0,4_2_0,4_0_1 -33629,2,78.0,0.0,7,112,1200.0,0.0,0.0,77,77,0.0,0.0,1658.6090730911167,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,128693,2,1,2,0,1,,500.0,568.0,41,0.0,4.0,4.0,2.0,1.5,3,2,1954.67333188374,1200.0,28656.33159651444,5,5,2,3,87.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04187556233282699,19104.22106434296,5,3,5,5_1,5_0,5_0_0 -33630,2,74.0,0.0,2,111,200.0,906.0,0.0,78,75,0.0,0.0,276.4348455151861,1106.0,0.0,1643.1695281677887,12,0,0,0,0,0,0,0,0,0,,2,,2,109913,1,2,0,0,2,,200.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,513.099880809727,200.0,41286.59191342231,5,5,0,1,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02678835788430477,27524.394608948205,7,4,7,7_0,7_2,7_0_1 -33631,2,75.0,0.0,5,112,2660.0,0.0,0.0,0,77,0.0,0.0,3676.583445351975,2660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,115203,1,1,2,0,2,,1100.0,,21,1.0,0.0,5.0,2.0,1.5,3,2,1640.70807600112,2660.0,20242.711183776533,0,5,0,1,140.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1314053229259058,13495.140789184356,3,2,3_0,3_1_0,3_0_0,3_0_0 -33632,2,49.0,0.0,2,111,1203.0,0.0,0.0,54,46,0.0,0.0,1662.7555957738446,1203.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,126959,2,1,0,0,1,,374.0,,43,2.0,0.0,4.0,4.0,2.5,2,2,508.505281610646,1203.0,59970.59222599448,1,1,1,2,102.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020059831916726598,23988.23689039779,6,3,6,6_0,6_2,6_0_1 -33633,2,65.0,0.0,8,112,460.0,0.0,0.0,77,75,0.0,289.84830134944815,635.800144684928,840.0,172.03270041901916,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,119628,2,1,1,0,1,,270.0,,41,0.0,1.0,5.0,2.0,1.5,1,1,1770.70796630842,460.0,28850.99261115526,5,5,0,1,98.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029115116118230654,19233.995074103506,5,3,5,5_1,5_0,5_0_0 -33634,2,64.0,0.0,9,112,1300.0,0.0,0.0,77,34,0.0,372.6621017350048,1796.8264958487098,1780.0,206.439240502823,0.0,71,0,0,0,0,0,0,0,0,3,240.0,1,2008.0,6,104663,2,1,1,0,1,,1000.0,,42,1.0,6.0,6.0,3.0,2.0,3,3,1776.94516182159,1300.0,74779.96917595339,6,1,1,2,150.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02380316573562303,37389.984587976694,9,5,9,9_1,9_0,9_0_0 -33635,2,60.0,0.0,2,111,210.0,750.0,0.0,0,68,0.0,0.0,290.25658779094545,960.0,0.0,1360.2396756355868,71,0,0,0,0,0,0,0,0,1,40.0,2,,2,128337,2,2,0,0,1,,120.0,347.0,22,1.0,2.0,4.0,2.0,1.5,2,2,544.748489555114,210.0,13880.450500674347,0,1,2,3,64.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06916202035037412,9253.633667116232,1,1,1_0,1_0_0,1_2_0,1_0_1 -33636,1,47.0,350.0,1,112,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1388.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120311,2,2,1,0,2,,161.0,520.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2221.5429906965,0.0,13179.451178785803,0,7,2,3,45.0,6,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.10531546277391148,13179.451178785803,2,1,2_1,2_1_1,2_0_1,2_1_0 -33637,2,60.0,0.0,1,112,1056.0,0.0,0.0,52,77,0.0,0.0,1459.5759843201827,1256.0,344.06540083803833,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127495,2,1,2,0,1,,103.0,,42,1.0,3.0,2.0,2.0,1.5,2,2,1845.44230311393,1056.0,13380.813918674346,1,7,0,1,40.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0938657399791741,8920.542612449564,1,1,1_0,1_1_0,1_0_0,1_1_0 -33638,0,33.0,0.0,6,112,0.0,0.0,0.0,0,56,0.0,310.55175144583734,0.0,330.0,51.60981012570575,0.0,43,2,2,2,1,2,2,2,2,2,5.0,1,,4,125884,2,2,2,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,5,4,1749.24265525323,0.0,11754.80891835059,0,1,5,0,75.0,6,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.028073616703784318,11754.80891835059,2,1,2_0,2_1_0,2_0_0,2_0_0 -33639,2,74.0,0.0,6,112,498.0,0.0,0.0,0,75,0.0,517.5862524097289,688.3227653328134,1122.0,213.32054851958378,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,105365,2,2,2,0,2,,350.0,,11,0.0,0.0,6.0,1.0,1.0,2,2,1818.50281569162,498.0,17501.00756780958,0,5,0,1,110.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06411059452735435,17501.00756780958,4,2,4_0,4_1_0,4_0_0,4_0_0 -33640,2,72.0,0.0,2,111,0.0,0.0,1200.0,0,74,0.0,0.0,613.09600180503,1200.0,0.0,1371.8949295831578,50,0,0,0,0,0,0,0,0,0,,2,,2,104581,2,2,0,0,1,,175.0,,11,0.0,1.0,4.0,1.0,1.0,2,2,560.608946726049,0.0,36745.620799150165,0,5,0,1,72.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03265695268993123,36745.620799150165,9,5,9,9_0,9_2,9_0_1 -33641,1,29.0,260.0,2,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,1143.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,2,,2,101322,2,1,0,0,2,,261.0,550.0,12,1.0,0.0,2.0,1.0,1.0,3,2,3233.17758682335,0.0,11058.026976202178,0,1,2,3,45.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10336382814581968,11058.026976202178,2,1,2_1,2_0_1,2_2_1,2_0_1 -33642,2,74.0,0.0,2,111,313.0,1751.0,0.0,86,78,0.0,0.0,432.6205332312663,2064.0,0.0,3175.706229383883,71,0,0,0,0,0,0,0,0,0,,2,,2,122834,2,3,0,0,1,,417.0,382.0,41,0.0,5.0,5.0,2.0,1.5,2,2,767.767375812672,313.0,24634.955467189902,5,5,2,3,134.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08378338669006084,16423.303644793268,4,2,4_0,4_0_0,4_2_0,4_0_1 -33643,2,40.0,0.0,5,111,320.0,240.0,0.0,0,52,0.0,0.0,442.2957528242978,560.0,0.0,435.27669620338776,71,0,0,0,0,0,0,0,0,2,4.0,2,,3,113294,2,1,0,1,1,686.0,400.0,377.0,32,1.0,0.0,4.0,3.0,1.8,1,1,837.247131682654,320.0,25391.735325426776,0,4,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022054420181326764,14106.519625237097,3,2,3_0,3_0_0,3_2_0,3_0_0 -33644,1,72.0,62.0,5,111,456.0,504.0,0.0,0,78,0.0,0.0,630.2714477746243,960.0,0.0,914.0810620271143,42,0,0,0,0,0,0,0,0,0,,2,,3,130693,2,1,0,4,1,,264.0,243.0,11,0.0,3.0,3.0,1.0,1.0,2,2,919.406564327641,456.0,14855.77054912072,0,5,2,3,64.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06462135348858228,14855.77054912072,3,2,3_1,3_0_1,3_2_1,3_0_0 -33645,2,49.0,0.0,6,111,600.0,1200.0,0.0,0,43,0.0,0.0,829.3045365455583,1800.0,0.0,2176.3834810169387,71,0,0,0,0,0,0,0,0,0,,2,,4,108598,2,1,0,0,1,,340.0,,32,1.0,0.0,4.0,3.0,2.0,4,3,3034.57084217866,600.0,32455.431199621446,0,1,1,2,100.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05546067124879225,16227.715599810723,4,2,4_0,4_0_0,4_2_0,4_0_0 -33646,1,90.0,115.0,2,111,110.0,80.0,0.0,77,78,0.0,0.0,152.03916503335236,370.0,309.6588607542345,145.09223206779592,31,0,0,0,0,0,0,0,0,0,,2,,2,111352,2,1,0,1,1,670.0,120.0,206.0,41,0.0,3.0,3.0,2.0,1.5,2,2,866.865940455134,110.0,18282.0904449664,5,5,2,3,50.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02023838581883134,12188.060296644268,2,1,2_1,2_0_1,2_2_1,2_0_1 -33647,2,90.0,0.0,2,111,216.0,312.0,0.0,0,75,1055.9645080517264,0.0,298.549633156401,1235.0,0.0,565.859705064404,50,0,0,0,0,0,0,0,0,0,,2,,2,126463,2,2,0,2,2,600.0,210.0,260.0,21,0.0,0.0,3.0,2.0,1.5,2,1,782.639538428026,216.0,39744.907723934964,0,5,2,3,55.0,6,5,9,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031073163097476885,26496.605149289975,7,4,7,7_0,7_2,7_0_1 -33648,1,44.0,377.0,5,111,1200.0,380.0,0.0,85,68,0.0,0.0,1658.6090730911167,1655.0,129.02452531426437,689.1881023220305,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,107882,2,2,0,0,2,,0.0,435.0,42,1.0,3.0,3.0,5.0,2.5999999999999996,1,1,2964.22922563576,1200.0,23539.503071640218,6,1,2,3,75.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0703073465469159,9053.655027553932,1,1,1_1,1_0_1,1_2_1,1_0_0 -33649,2,64.0,0.0,5,111,384.0,888.0,0.0,0,64,0.0,0.0,530.7549033891573,1272.0,0.0,1610.5237759525346,60,0,0,0,0,0,0,0,0,2,5.0,2,,3,111641,1,1,0,0,1,,250.0,299.0,31,0.0,3.0,3.0,2.0,1.3,1,1,495.549360045251,384.0,25065.50776652747,0,5,2,3,55.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05074702702406976,19281.159820405745,5,3,5,5_0,5_2,5_0_0 -33650,1,22.0,137.0,6,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,808.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,2,2012.0,4,126027,2,1,0,0,1,,0.0,350.0,42,1.0,0.0,2.0,2.0,1.5,2,2,984.807986081634,0.0,14860.938430565093,3,1,3,4,33.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05437072522541064,9907.292287043396,2,1,2_1,2_0_1,2_2_1,2_0_0 -33651,2,68.0,0.0,5,111,480.0,450.0,0.0,72,74,0.0,0.0,663.4436292364467,930.0,0.0,816.143805381352,20,0,0,0,0,0,0,0,0,0,,2,,3,112394,2,1,0,0,1,,440.0,,41,0.0,2.0,5.0,3.0,2.0,2,2,3153.74567394146,480.0,39592.859911668565,5,5,0,1,103.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023489083690211427,19796.429955834283,5,3,5,5_0,5_2,5_0_0 -33652,1,60.0,213.0,5,111,500.0,420.0,0.0,78,21,0.0,0.0,691.0871137879653,920.0,0.0,761.7342183559285,71,1,2,2,1,2,2,2,2,0,,2,,3,100168,1,2,0,1,1,695.0,300.0,307.0,41,0.0,2.0,4.0,2.0,1.5,4,4,880.509875685036,500.0,11507.367982132519,6,7,2,3,68.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.07994877729020948,7671.578654755012,1,1,1_1,1_0_1,1_2_1,1_0_0 -33653,2,60.0,0.0,2,111,360.0,0.0,0.0,77,21,0.0,0.0,497.582721927335,480.0,206.439240502823,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,100855,1,1,0,1,2,995.0,260.0,580.0,42,1.0,2.0,3.0,2.0,1.5,3,2,985.328242802276,360.0,17442.70140303277,7,1,2,3,40.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027518673220911883,11628.467602021847,2,1,2_0,2_0_0,2_2_0,2_0_1 -33654,2,79.0,0.0,2,111,240.0,0.0,0.0,0,86,0.0,0.0,331.72181461822333,240.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,132207,2,1,0,1,1,,400.0,,21,1.0,2.0,3.0,3.0,2.0,2,2,920.568986928837,240.0,27122.625072121085,0,5,0,1,98.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.008848701014810405,13561.312536060543,3,2,3_0,3_0_0,3_2_0,3_0_1 -33655,1,42.0,420.0,2,111,420.0,840.0,0.0,56,46,0.0,0.0,580.5131755818909,1260.0,0.0,1523.468436711857,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,130643,2,1,0,0,1,,360.0,670.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,6,4,3119.60805007401,420.0,33490.0,1,1,2,3,79.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.037623171095849506,12880.769230769232,2,1,2_1,2_0_1,2_2_1,2_0_1 -33656,2,65.0,0.0,2,111,600.0,800.0,0.0,75,78,0.0,0.0,829.3045365455583,1400.0,0.0,1450.922320677959,60,0,0,0,0,0,0,0,0,0,,2,,2,108199,2,1,0,0,1,,320.0,,41,1.0,0.0,4.0,3.0,2.0,1,1,985.997143481412,600.0,58926.43124608128,5,5,0,1,94.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023758438622449286,29463.21562304064,8,4,8,8_0,8_2,8_0_1 -33657,2,73.0,0.0,2,111,400.0,480.0,0.0,0,77,0.0,0.0,552.8696910303722,880.0,0.0,870.5533924067755,10,0,0,0,0,0,0,0,0,0,,2,,2,122147,2,1,0,0,1,,200.0,242.0,11,0.0,1.0,4.0,1.0,1.0,2,2,908.182198463135,400.0,14362.791660160476,0,5,2,3,45.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.061269425945998005,14362.791660160476,3,2,3_0,3_0_0,3_2_0,3_0_1 -33658,1,82.0,241.0,2,111,214.0,292.0,0.0,0,77,0.0,0.0,295.7852847012491,506.0,0.0,529.5866470474551,71,0,0,0,0,0,0,0,0,0,,2,,2,108300,2,1,0,0,1,,252.0,382.0,11,0.0,3.0,5.0,1.0,1.0,1,1,878.577363428532,214.0,10863.899326441187,0,5,2,3,92.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.046576278442535625,10863.899326441187,2,1,2_1,2_0_1,2_2_1,2_0_1 -33659,2,40.0,0.0,2,111,1200.0,0.0,0.0,0,46,0.0,0.0,1658.6090730911167,4837.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,122486,2,1,0,0,1,,400.0,285.0,22,1.0,0.0,4.0,3.0,2.0,1,1,945.267658818932,1200.0,16337.545170394926,0,1,2,3,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.29606651118951893,8168.772585197463,1,1,1_0,1_0_0,1_2_0,1_0_1 -33660,2,48.0,0.0,5,111,300.0,300.0,0.0,46,21,0.0,0.0,414.65226827277917,600.0,0.0,544.0958702542347,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,123681,1,1,0,1,2,,300.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,886.495009715855,300.0,41443.89775134631,1,1,0,1,117.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014477402767467954,20721.948875673155,5,3,5,5_0,5_2,5_0_0 -33661,1,49.0,166.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,709.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,120266,2,1,0,1,1,584.0,171.0,262.0,12,1.0,0.0,2.0,1.0,1.0,1,1,880.216461880987,0.0,13408.35691318328,0,1,2,3,52.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.052877470714021754,13408.35691318328,3,2,3_1,3_0_1,3_2_1,3_0_1 -33662,1,40.0,118.0,2,111,260.0,420.0,0.0,63,52,0.0,0.0,359.36529916974195,680.0,0.0,761.7342183559285,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,109885,2,1,0,1,1,717.0,330.0,305.0,43,2.0,1.0,3.0,3.0,1.8,3,2,856.178769433213,260.0,19544.883846977853,4,1,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03479171354119588,10858.268803876585,2,1,2_1,2_0_1,2_2_1,2_0_1 -33663,2,64.0,0.0,2,111,800.0,800.0,0.0,77,22,0.0,0.0,1105.7393820607444,1600.0,0.0,1450.922320677959,12,0,0,0,0,0,0,0,0,0,,1,,2,116099,2,2,3,0,1,,300.0,,41,1.0,1.0,4.0,3.0,2.0,2,2,2852.04411099887,800.0,56541.463747819376,6,5,0,1,87.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028297817105269175,28270.731873909688,8,4,8,8_1,8_2,8_0_1 -33664,1,31.0,82.0,2,111,236.0,0.0,0.0,85,67,0.0,0.0,326.1931177079196,474.0,409.43782699726563,0.0,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,110047,1,1,0,0,1,,288.0,494.0,42,1.0,0.0,2.0,2.0,1.5,4,3,3305.2790547823,236.0,14564.61196344431,6,1,2,3,45.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.032544636354864216,9709.741308962874,1,1,1_1,1_0_1,1_2_1,1_0_1 -33665,1,29.0,130.0,6,300,650.0,0.0,0.0,65,56,0.0,0.0,898.4132479243549,650.0,0.0,0.0,43,2,2,2,1,2,2,2,2,0,,2,,4,127995,1,1,0,0,2,,400.0,500.0,43,2.0,0.0,2.0,2.0,1.5,1,1,9038.27092072922,650.0,36116.0,1,4,3,4,40.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.01799756340680031,24077.333333333332,6,3,6,6_0,6_0,6_0_0 -33666,2,61.0,0.0,9,221,800.0,0.0,0.0,77,78,0.0,0.0,1105.7393820607444,1000.0,344.06540083803833,0.0,43,0,0,0,0,0,0,0,0,0,,1,2005.0,6,121408,2,1,2,0,2,,350.0,,41,1.0,4.0,6.0,3.0,2.0,2,2,7032.06618304213,800.0,35216.49245331472,5,5,0,1,120.0,1,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02839578647208166,17608.24622665736,4,2,4_0,4_1_0,4_1_0,4_0_0 -33667,2,58.0,0.0,2,221,583.0,0.0,0.0,90,43,0.0,0.0,805.8075746767676,2242.0,2854.022499951528,0.0,30,0,0,0,0,0,0,0,0,2,15.0,1,,2,104349,2,3,3,0,1,,700.0,1022.0,42,1.0,2.0,3.0,3.0,2.0,2,2,7314.62769299858,583.0,37699.4478305639,5,1,2,3,100.0,1,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05947036704825034,18849.72391528195,5,3,5,5_1,5_1,5_0_1 -33668,2,68.0,0.0,7,300,43.0,0.0,0.0,0,77,0.0,0.0,59.433491785765014,73.0,51.60981012570575,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,115544,2,1,1,0,1,,67.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,6769.15519663159,43.0,27793.854335467237,0,5,0,1,65.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0026264799087921398,27793.854335467237,7,4,7,7_1,7_0,7_0_0 -33669,2,45.0,0.0,1,300,1000.0,0.0,0.0,0,22,0.0,0.0,1382.1742275759307,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,130854,2,1,2,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,2,2,6905.87276030679,1000.0,31173.0483914828,0,1,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032078992963460805,31173.0483914828,8,4,8,8_1,8_0,8_1_0 +0,1,59.0,150.0,1,111,3000.0,0.0,0.0,34,31,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,100001,2,1,1,0,2,,2000.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,1287.82117452193,3000.0,198340.0,1,1,0,1,195.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.015125541998588283,79336.0,10,5,10,10_1,10_3,10_1_0 +1,2,58.0,0.0,2,112,309.0,117.0,0.0,78,47,0.0,0.0,526.9069679019669,426.0,0.0,222.12497360895532,50,2,1,2,1,1,2,2,2,2,5.0,2,,2,100002,1,3,0,1,2,1200.0,0.0,250.0,42,1.0,2.0,4.0,2.0,1.5,2,2,271.921821023544,309.0,39107.344098386115,5,1,2,3,82.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010893094630212442,26071.56273225741,7,4,7,7_0,7_2,7_0_1 +2,2,86.0,0.0,2,111,600.0,2448.0,0.0,0,77,0.0,82.10829117463388,1023.1203260232367,3110.0,0.0,4647.537909356603,44,1,2,2,1,1,2,2,2,0,,1,,2,100003,2,1,3,0,1,,480.0,,21,2.0,1.0,6.0,3.0,2.0,3,3,669.509010734501,600.0,49986.32356055116,0,5,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06221701814562712,24993.16178027558,7,4,7,7_1,7_4,7_0_1 +3,2,67.0,0.0,2,111,184.0,140.0,0.0,56,90,0.0,0.0,313.75689998045925,324.0,0.0,265.7905667115705,41,2,1,2,2,1,2,2,2,0,,2,,2,100004,2,3,0,1,1,770.0,0.0,349.0,42,1.0,3.0,4.0,2.0,1.5,2,2,872.283984431712,184.0,25070.195181765434,1,5,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01292371270550212,16713.46345451029,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +4,2,76.0,0.0,2,112,272.0,,,0,77,0.0,0.0,,516.0,338.0837709967511,,71,0,0,0,0,0,0,0,0,0,,1,,2,100005,1,1,0,0,2,,250.0,,21,1.0,8.0,4.0,2.0,1.5,2,2,104.45642282191864,272.0,10847.479873072167,0,5,0,1,85.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047568652446262724,7231.653248714778,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +5,2,52.0,0.0,6,112,1654.0,0.0,0.0,43,33,0.0,0.0,2820.4016987373893,1726.0,99.7624242285495,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,100006,2,1,2,0,1,,176.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1577.55383391269,1654.0,93302.31489215282,1,1,0,1,110.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018499005110377654,62201.54326143521,10,5,10,10_1,10_0,10_0_0 +6,1,35.0,80.0,7,111,600.0,,,81,55,0.0,0.0,,666.0,91.44888887617039,,43,0,0,0,0,0,0,0,0,2,10.0,2,,5,100007,2,2,0,0,2,,300.0,685.0,43,2.0,0.0,3.0,2.0,1.5,2,2,99.49079946489928,600.0,23386.903300702685,4,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0284774769637838,15591.268867135122,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +7,2,27.0,0.0,9,111,0.0,0.0,0.0,45,37,0.0,0.0,0.0,418.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,2008.0,6,100008,2,1,0,0,1,,0.0,1070.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1665.0236264172,0.0,44896.0,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009310406272273699,24942.222222222223,7,4,7,7_0,7_4,7_0_0 +8,2,81.0,0.0,5,111,405.0,0.0,0.0,77,78,2531.2388424878436,0.0,690.6062200656847,3095.0,401.8208753649911,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100009,2,1,0,0,1,,348.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1307.21618242368,405.0,17726.375355619413,5,5,0,1,60.0,6,5,9,1,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.1745985819384592,11817.583570412942,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +9,2,50.0,0.0,7,111,816.0,,,52,63,0.0,0.0,,1080.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,100010,2,3,0,0,1,,800.0,,43,3.0,1.0,4.0,4.0,2.5,4,3,124.74751195859986,816.0,38919.994932191476,4,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027749232801330896,15567.99797287659,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +10,0,83.0,0.0,2,120,200.0,170.0,0.0,86,78,0.0,0.0,341.04010867441224,370.0,0.0,322.74568814976413,71,2,1,2,1,2,2,2,2,0,,2,,2,100011,2,2,0,1,1,,520.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,317.221727866635,200.0,23998.01642930682,6,5,5,0,70.0,0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015417940940658296,15998.677619537879,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +11,2,31.0,0.0,8,111,1000.0,0.0,0.0,55,54,0.0,0.0,1705.2005433720612,1035.0,48.49562288887823,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,100012,2,1,2,0,1,,150.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1270.21723407751,1000.0,47995.71927589694,1,1,1,2,97.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02156442315304083,22855.10441709378,6,3,6,6_1,6_2,6_0_0 +12,2,39.0,0.0,1,111,0.0,0.0,0.0,67,85,0.0,0.0,0.0,1062.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,100013,2,3,0,0,2,,0.0,350.0,42,1.0,3.0,2.0,3.0,1.8,2,2,941.520155281586,0.0,4964.976344483319,4,6,2,3,24.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.21389830007548952,2758.3201913796215,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +13,2,80.0,0.0,2,111,900.0,,,0,75,0.0,0.0,,1100.0,277.1178450793042,,41,0,0,0,0,0,0,0,0,0,,1,,2,100014,2,3,0,0,2,,600.0,,21,0.0,3.0,5.0,3.0,2.0,3,3,109.42352573634496,900.0,101523.43875309105,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010834936380309603,50761.71937654552,10,5,10,10_1,10_2,10_0_1 +15,2,58.0,0.0,7,111,1402.0,0.0,0.0,52,53,0.0,123.16243676195083,2390.6911618076297,1549.0,74.82181817141213,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,100016,2,1,2,0,1,,347.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1178.17904416494,1402.0,51322.478058759676,1,1,0,1,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030181707091900992,34214.98537250645,9,5,9,9_1,9_3,9_0_0 +16,2,82.0,0.0,6,111,1385.0,0.0,0.0,0,74,0.0,0.0,2361.7027525703047,1455.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,100017,2,1,3,0,1,,150.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,468.361503888333,1385.0,32788.16414159587,0,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04437576906461046,32788.16414159587,8,4,8,8_1,8_3,8_0_0 +17,2,38.0,0.0,9,221,758.0,552.0,0.0,42,21,0.0,132.4327277010224,1292.5420118760223,1410.0,0.0,1047.9742344627634,43,0,0,0,0,0,0,0,0,0,,1,2005.0,6,100018,2,1,1,0,1,,520.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1935.88474853752,758.0,38788.59566291179,1,1,1,2,110.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03635089066522172,18470.759839481805,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +18,2,65.0,0.0,2,111,285.0,353.0,0.0,0,75,0.0,0.0,485.98215486103743,638.0,0.0,670.1719289227456,44,0,0,0,0,0,0,0,0,0,,2,,2,100019,2,1,0,1,1,557.0,0.0,335.0,21,1.0,0.0,3.0,2.0,1.5,2,2,827.39468158592,285.0,49047.132922209945,0,5,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01300789591538174,32698.08861480663,8,4,8,8_0,8_4,8_0_1 +19,2,48.0,0.0,2,111,770.0,2000.0,0.0,85,48,0.0,0.0,1313.0044183964872,2770.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,100020,2,1,2,0,1,,773.0,,42,1.0,0.0,5.0,4.0,2.5,4,3,371.826343154008,770.0,36243.31955632806,6,1,1,2,120.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0764278778519436,14497.327822531224,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +20,1,35.0,465.0,9,111,780.0,,,63,90,0.0,0.0,,843.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,100021,2,1,0,0,1,,330.0,665.0,43,2.0,2.0,4.0,5.0,2.5999999999999996,3,2,124.94988069845103,780.0,33045.45147978916,1,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02551031873526028,12709.78903068814,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +21,2,66.0,0.0,5,111,242.0,140.0,0.0,81,78,0.0,0.0,412.6585314960388,382.0,0.0,265.7905667115705,50,1,2,2,2,1,2,2,2,0,,2,,3,100022,2,1,0,1,1,802.0,0.0,241.0,42,1.0,0.0,3.0,3.0,1.8,2,2,328.132580706263,242.0,37074.48031288623,4,5,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010303583402279697,20596.933507159018,5,3,5,5_0,5_3,5_0_0 +22,2,75.0,0.0,5,211,300.0,,,0,86,0.0,0.0,,300.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,3,100023,2,1,0,0,2,,300.0,552.0,11,0.0,2.0,5.0,1.0,1.0,1,1,95.53004154152597,300.0,22397.0,0,5,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013394651069339644,22397.0,6,3,6,6_0,6_2,6_0_0 +23,2,29.0,0.0,1,111,540.0,0.0,0.0,0,48,0.0,0.0,920.8082934209131,590.0,69.27946126982604,0.0,10,2,2,2,2,2,2,2,1,2,15.0,1,,1,100024,1,3,1,0,1,,0.0,310.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1416.9310448544,540.0,28682.503692746883,0,1,3,4,24.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.02057003134455089,28682.503692746883,8,4,8,8_1,8_2,8_1_0 +24,2,81.0,0.0,1,112,331.0,1777.0,0.0,0,75,0.0,0.0,564.4213798561523,2108.0,0.0,3373.641693189005,50,0,0,0,0,0,0,0,0,0,,1,,1,100025,1,2,3,0,2,,109.0,,11,0.0,5.0,7.0,1.0,1.0,1,1,475.219224783082,331.0,37149.37341236669,0,5,0,1,150.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05674389111764308,37149.37341236669,9,5,9,9_1,9_1,9_1_0 +25,0,44.0,0.0,1,111,780.0,,,42,47,0.0,0.0,,780.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,2,,1,100026,1,3,0,0,2,,496.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,114.07250125807525,780.0,29569.254065628815,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02637875132963428,14784.627032814407,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +26,2,66.0,0.0,5,120,1589.0,0.0,0.0,0,75,0.0,397.2981831030672,2709.563663418205,1889.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100027,2,1,1,0,1,,180.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1400.14821213217,1589.0,23544.035162387627,0,5,0,1,113.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08023263586599377,23544.035162387627,6,3,6,6_1,6_0,6_0_0 +27,2,77.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1521.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100028,2,2,1,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1195.46070716084,0.0,12850.522498728906,0,5,0,1,64.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11836094603549761,12850.522498728906,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +28,2,26.0,0.0,2,112,0.0,0.0,0.0,47,62,0.0,0.0,0.0,1192.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,20.0,1,,2,100029,2,1,2,0,1,,214.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,769.790142644799,0.0,43277.762783054015,1,1,1,2,110.0,8,2,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027543013394092163,28851.841855369345,8,4,8,8_1,8_1,8_0_1 +29,2,32.0,0.0,7,112,520.0,0.0,0.0,0,34,0.0,0.0,886.7042825534718,520.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,100030,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1006.61016736885,520.0,27617.38599373983,0,1,1,2,37.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018828718985854455,27617.38599373983,7,4,7,7_0,7_1,7_0_0 +30,2,39.0,0.0,5,111,200.0,800.0,0.0,0,52,0.0,0.0,341.04010867441224,1000.0,0.0,1518.8032383518312,43,2,2,2,2,1,2,2,2,1,5.0,2,,3,100031,2,3,0,0,1,,0.0,378.0,32,1.0,0.0,2.0,2.0,1.3,1,1,740.307935606965,200.0,19042.351972579883,0,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.05251452139105266,14647.963055830678,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +31,2,28.0,0.0,1,111,240.0,0.0,0.0,55,47,0.0,0.0,409.2481304092947,240.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,2,,1,100032,2,2,0,1,1,350.0,0.0,460.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1271.16179578926,240.0,14223.051016484187,1,1,2,3,62.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01687401667348627,9482.034010989459,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +32,2,75.0,0.0,7,111,360.0,,,0,78,0.0,0.0,,486.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,100033,1,1,0,0,2,,470.0,,21,1.0,5.0,4.0,2.0,1.5,2,2,144.93057417762722,360.0,25279.387575281802,0,6,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019225149286259253,16852.925050187867,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +33,2,52.0,0.0,2,111,700.0,90.0,0.0,0,38,0.0,0.0,1193.6403803604428,790.0,0.0,170.865364314581,10,2,2,1,2,1,2,2,2,2,15.0,2,,2,100034,2,1,0,1,1,,0.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,420.168300727513,700.0,31963.373997175164,0,1,1,2,110.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.02471578876716263,31963.373997175164,8,4,8,8_0,8_2,8_0_1 +34,1,67.0,117.0,2,111,300.0,300.0,0.0,0,77,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,,2,100035,1,3,0,1,2,340.0,0.0,245.0,11,0.0,4.0,3.0,1.0,1.0,1,1,416.699207535929,300.0,11609.11009174312,0,5,2,3,70.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.051683548115091515,11609.11009174312,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +35,2,58.0,0.0,7,111,650.0,,,75,38,0.0,0.0,,720.0,96.99124577775646,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,100036,2,1,0,0,2,,400.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,106.73118193470862,650.0,80204.53879921019,5,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008977048067098793,40102.269399605095,9,5,9,9_1,9_3,9_0_0 +36,0,77.0,0.0,5,111,180.0,,,0,78,0.0,0.0,,420.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,100037,2,2,0,0,2,,112.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,90.6682895346284,180.0,12647.211120218746,0,5,5,0,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03320890242185944,12647.211120218746,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +37,1,46.0,368.0,2,111,300.0,600.0,0.0,85,62,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,41,1,2,2,2,1,1,2,2,0,,2,,2,100038,1,2,0,1,1,100.0,450.0,322.0,42,1.0,0.0,4.0,5.0,2.4,2,2,813.378131276705,300.0,18850.6023158979,6,4,2,3,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04774383252682453,7854.4176316241255,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +38,2,75.0,0.0,5,112,756.0,0.0,0.0,77,75,0.0,794.5963662061343,1289.1316107892783,1476.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,100039,2,1,1,0,2,,149.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,790.231135029868,756.0,17840.927864922323,6,5,0,1,89.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08273112313300787,11893.951909948215,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +39,2,34.0,0.0,5,111,300.0,0.0,0.0,0,55,0.0,0.0,511.56016301161833,624.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,,3,100040,2,1,0,1,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1291.27424179319,300.0,16191.966057995072,0,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.038537630190491216,16191.966057995072,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +40,1,47.0,255.0,7,111,210.0,270.0,0.0,0,67,0.0,0.0,358.0921141081328,480.0,0.0,512.596092943743,50,0,0,0,0,0,0,0,0,0,,2,,5,100041,2,1,0,0,1,,0.0,260.0,12,1.0,1.0,1.0,1.0,1.0,1,1,357.253200636657,210.0,10015.242189913559,0,1,2,3,34.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04792694883438888,10015.242189913559,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +41,2,32.0,0.0,1,111,0.0,0.0,0.0,48,46,0.0,0.0,0.0,2364.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,3,,1,100042,2,2,0,0,1,,370.0,450.0,43,2.0,0.0,3.0,2.0,1.5,2,2,309.552515825038,0.0,19294.188305392523,4,4,2,3,57.0,6,5,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12252394154043199,12862.792203595016,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +42,2,28.0,0.0,2,111,600.0,0.0,0.0,0,62,0.0,0.0,1023.1203260232367,752.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,100043,2,1,0,1,1,,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1011.9248015449,600.0,23887.094671933817,0,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03148143423584969,23887.094671933817,6,3,6,6_0,6_4,6_0_1 +43,2,70.0,0.0,2,111,2000.0,2700.0,0.0,77,31,0.0,132.4327277010224,3410.4010867441225,4800.0,0.0,5125.96092943743,20,0,0,0,0,0,0,0,0,0,,1,,2,100044,2,1,1,0,1,,600.0,,41,0.0,2.0,10.0,3.0,2.0,3,3,469.130096996674,2000.0,104662.37645898697,6,5,0,1,220.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04586175245008821,52331.188229493484,10,5,10,10_1,10_3,10_0_1 +44,2,69.0,0.0,2,111,400.0,1100.0,0.0,78,75,0.0,0.0,682.0802173488245,1500.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,0,,1,,2,100045,2,2,2,0,1,,500.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,832.039499608805,400.0,63887.01383214294,5,5,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023478949946558896,31943.50691607147,8,4,8,8_1,8_4,8_0_1 +45,2,60.0,0.0,1,111,880.0,1112.0,0.0,78,62,0.0,0.0,1500.5764781674138,1992.0,0.0,2111.1365013090453,70,0,0,0,0,0,0,0,0,0,,1,,1,100046,2,1,2,0,1,,378.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,212.980888663128,880.0,16878.670846146928,6,4,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11801877162944586,11252.44723076462,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +46,2,80.0,0.0,7,111,284.0,1136.0,0.0,0,71,0.0,0.0,484.2769543176654,1420.0,0.0,2156.7005984596003,71,0,0,0,0,0,0,0,0,0,,1,,5,100047,2,1,2,0,1,,42.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1197.68085853267,284.0,21729.81569295346,0,5,0,1,115.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06534800018853713,21729.81569295346,6,3,6,6_1,6_2,6_0_0 +47,2,74.0,0.0,1,112,0.0,0.0,0.0,0,71,0.0,278.10872817214704,0.0,1245.0,554.2356901586083,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100048,2,3,2,0,1,,302.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,3654.74819824497,0.0,14927.83485683621,0,5,0,1,100.0,9,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.083401244181761,14927.83485683621,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +48,2,82.0,0.0,2,111,230.0,220.0,0.0,0,77,0.0,0.0,392.1961249755741,450.0,0.0,417.6708905467536,70,0,0,0,0,0,0,0,0,0,,2,,2,100049,1,1,0,1,1,1062.0,280.0,284.0,11,0.0,4.0,4.0,1.0,1.0,1,1,628.848384086632,230.0,16457.087041718954,0,5,2,3,104.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02734384273834388,16457.087041718954,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +49,1,30.0,129.0,9,111,690.0,,,85,46,0.0,0.0,,733.0,59.5803366920504,,31,0,0,0,0,0,0,0,0,0,,2,2008.0,6,100050,2,2,0,0,1,,460.0,308.0,42,1.0,0.0,3.0,4.0,2.1,2,2,127.58866096835801,690.0,39233.358153498,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018683080788857904,18682.551501665712,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +50,2,55.0,0.0,1,120,400.0,1100.0,0.0,78,56,0.0,0.0,682.0802173488245,1500.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,0,,1,,1,100051,2,3,3,0,1,,70.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,331.036246906614,400.0,20957.198547926957,5,1,0,1,100.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07157445192732484,13971.46569861797,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +51,1,27.0,130.0,7,111,300.0,,,0,85,0.0,0.0,,350.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,2,,5,100052,2,1,0,0,2,,400.0,450.0,21,0.0,1.0,4.0,2.0,1.5,2,2,84.71189660454648,300.0,7254.744031011682,0,7,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04824429345871658,4836.4960206744545,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +52,2,35.0,0.0,7,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1737.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,5,100053,2,1,1,0,1,,199.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,2290.63838806377,0.0,160324.3747003652,0,1,0,1,140.0,8,6,9,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010834285199903813,106882.91646691014,10,5,10,10_1,10_2,10_0_0 +53,2,39.0,0.0,2,111,1200.0,1800.0,0.0,0,45,0.0,0.0,2046.2406520464733,3000.0,0.0,3417.30728629162,50,2,2,2,2,1,2,2,2,2,20.0,2,,2,100054,2,1,0,0,1,,500.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1542.84851978436,1200.0,46845.975472290906,0,1,1,2,98.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06403965270772258,29278.734670181813,8,4,8,8_0,8_3,8_0_1 +54,1,22.0,91.0,2,111,100.0,666.0,0.0,55,52,0.0,0.0,170.52005433720612,766.0,0.0,1264.4036959278994,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,100055,2,1,0,1,1,660.0,0.0,415.0,43,2.0,0.0,3.0,3.0,1.8,2,2,683.297422905194,100.0,28698.94952873613,1,1,2,3,68.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02669087240398843,15943.860849297851,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +55,2,62.0,0.0,8,221,720.0,,,78,56,0.0,0.0,,870.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,100056,1,2,0,0,1,,720.0,700.0,42,2.0,1.0,4.0,3.0,2.0,3,3,116.98555056010026,720.0,36052.276328317224,5,1,3,4,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02413162464631004,18026.138164158612,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +56,1,43.0,80.0,2,111,342.0,,,68,52,0.0,0.0,,502.0,221.69427606344334,,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,100057,1,2,0,0,2,,0.0,376.0,43,2.0,0.0,4.0,5.0,2.4,2,2,83.00400328303384,342.0,37441.18574925871,4,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013407695027659188,15600.494062191128,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +57,2,41.0,0.0,5,112,1600.0,0.0,0.0,67,56,0.0,0.0,2728.320869395298,1996.0,548.6933332570223,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100058,1,1,3,0,1,,350.0,425.0,43,2.0,0.0,3.0,3.0,2.0,3,2,389.703264334686,1600.0,24959.414832065482,1,1,2,3,98.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07996982354873677,12479.707416032741,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +58,2,47.0,0.0,1,111,1200.0,1680.0,0.0,46,38,0.0,0.0,2046.2406520464733,2880.0,0.0,3189.4868005388457,31,0,0,0,0,0,0,0,0,0,,1,,1,100059,2,2,2,0,1,,1200.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,1489.46715740918,1200.0,163602.68672043915,1,1,1,2,150.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01760362288500362,71131.60292193007,10,5,10,10_1,10_2,10_1_0 +59,2,58.0,0.0,8,300,1300.0,0.0,0.0,85,77,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,100060,2,1,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,620.643094660307,1300.0,26092.225039879828,6,5,1,2,98.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049823271032388254,17394.81669325322,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +60,2,30.0,0.0,1,111,1500.0,0.0,0.0,0,46,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,1,100061,2,1,0,0,1,,0.0,800.0,12,1.0,0.0,3.0,1.0,1.0,1,1,299.514456895095,1500.0,23116.825376976478,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06488780252213809,23116.825376976478,6,3,6,6_0,6_4,6_1_0 +61,2,34.0,0.0,6,111,4322.4,0.0,0.0,37,31,0.0,0.0,7370.558828671396,4425.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,4,100062,1,1,0,4,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,775.659730936083,4322.4,101269.86712842123,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.043695129908570114,67513.24475228082,10,5,10,10_0,10_4,10_0_0 +63,2,41.0,0.0,1,111,400.0,0.0,0.0,0,34,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,100064,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,650.709177306951,400.0,25768.24436416543,0,1,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015522982254711127,25768.24436416543,7,4,7,7_0,7_4,7_1_0 +64,2,48.0,0.0,1,120,200.0,1300.0,0.0,0,46,0.0,0.0,341.04010867441224,1500.0,0.0,2468.055262321726,43,0,0,0,0,0,0,0,0,0,,1,,1,100065,2,1,1,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1211.82610670834,200.0,18631.368350474313,0,1,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0805093845918093,18631.368350474313,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +65,1,28.0,49.0,6,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,2129.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,100066,2,1,1,0,1,,305.0,,43,2.0,0.0,9.0,7.0,2.9999999999999996,2,2,750.703327178996,0.0,48298.77373083025,1,1,1,2,168.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04407979407230807,16099.591243610086,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +66,1,41.0,260.0,2,111,1452.0,0.0,0.0,85,67,0.0,0.0,2475.951188976233,1452.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,100067,2,2,5,0,1,,497.0,900.0,42,2.0,0.0,4.0,5.0,2.8,4,3,1051.5045713678,1452.0,38361.21625048828,7,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03785072898937396,13700.434375174387,3,2,3_1,3_1_1,3_4_1,3_0_1_1 +67,2,43.0,0.0,1,111,364.0,0.0,0.0,0,53,0.0,0.0,620.6929977874303,364.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,100068,2,1,0,0,2,,174.0,307.0,12,1.0,1.0,1.0,1.0,1.0,1,1,2198.96394168537,364.0,24994.24257031615,0,1,2,3,32.0,6,4,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.014563353899441482,24994.24257031615,7,4,7,7_0,7_2,7_1_0 +68,2,57.0,0.0,1,112,500.0,0.0,0.0,0,63,0.0,1350.8138225504283,852.6002716860306,1600.0,110.84713803172167,0.0,50,2,2,1,1,2,2,2,2,2,7.0,1,,1,100070,2,2,4,0,1,,234.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,844.948074465186,500.0,26174.98514750357,0,1,1,2,95.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06112706429377285,26174.98514750357,7,4,7,7_1,7_0,7_1_0 +69,2,35.0,0.0,2,111,341.0,0.0,0.0,56,62,0.0,0.0,581.4733852898729,341.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,100071,2,1,0,1,1,192.0,320.0,312.0,43,2.0,0.0,1.0,2.0,1.5,2,2,2337.34539708125,341.0,35299.27766905086,1,1,2,3,20.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009660254331464026,23532.85177936724,6,3,6,6_0,6_2,6_0_1 +70,1,66.0,253.0,7,400,660.0,,,0,86,0.0,0.0,,810.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,5,100072,2,2,0,0,2,,696.0,400.0,21,2.0,0.0,2.0,4.0,2.3,3,3,25.81282283022676,660.0,31697.12751073704,0,7,2,3,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025554366077040317,13781.359787276975,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +71,2,49.0,0.0,2,111,416.0,1054.0,0.0,63,54,0.0,0.0,709.3634260427774,1470.0,0.0,2001.0232665285375,42,2,2,1,1,1,2,2,2,1,10.0,2,,2,100073,1,3,0,0,2,,280.0,476.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1857.77746358608,416.0,34508.857032693086,4,1,2,3,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.04259775971737771,23005.90468846206,6,3,6,6_0,6_3,6_0_1 +72,1,35.0,300.0,6,300,540.0,,,81,46,0.0,0.0,,827.0,374.10909085706066,,50,2,2,2,2,1,2,2,2,0,,1,,4,100074,1,3,0,0,2,,50.0,350.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,105.73765399009407,540.0,16400.229766493172,4,4,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,1,0.05042612279064647,6074.159172775249,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +73,2,60.0,0.0,7,111,500.0,100.0,0.0,77,43,1582.0242765549024,0.0,852.6002716860306,2100.0,0.0,189.8504047939789,33,0,0,0,0,0,0,0,0,1,10.0,1,,5,100075,2,1,2,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,549.021351757336,500.0,65910.69543539571,5,1,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03186129331708199,43940.46362359714,10,5,10,10_1,10_4,10_0_0 +74,2,80.0,0.0,1,300,602.0,0.0,0.0,71,72,912.3006661466603,0.0,1026.5307271099807,1572.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100076,1,1,3,0,2,,222.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1433.83523431789,602.0,31816.8753566052,5,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04940774297855908,21211.2502377368,5,3,5,5_1,5_0,5_1_0 +75,2,43.0,0.0,9,111,1200.0,0.0,0.0,52,48,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,2006.0,6,100077,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,1549.79173814302,1200.0,52119.0014026794,1,1,0,1,145.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023024232385586513,26059.5007013397,7,4,7,7_1,7_3,7_0_0 +76,1,40.0,120.0,1,111,0.0,0.0,950.0,0,22,0.0,0.0,598.8023758940067,950.0,0.0,1136.8955401864469,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,100078,2,2,0,1,1,876.0,0.0,700.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1154.1765540865,0.0,21783.0,0,1,2,3,112.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.043611991002157645,13614.375,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +77,2,60.0,0.0,5,112,850.0,60.0,0.0,52,62,0.0,158.91927324122688,1449.420461866252,1030.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,3,45.0,1,,3,100079,2,2,2,0,1,,130.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1361.55181153293,850.0,71535.4239425974,1,1,0,1,78.0,10,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014398460835662472,47690.282628398265,10,5,10,10_1,10_1,10_0_0 +78,2,74.0,0.0,7,111,468.0,,,0,78,0.0,0.0,,618.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,100080,1,1,0,0,2,,600.0,,21,2.0,0.0,3.0,3.0,2.0,3,3,113.59953646793272,468.0,14298.621913095214,0,5,0,1,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04322094840720366,7149.310956547607,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +79,2,86.0,0.0,2,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,488.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,100081,2,1,0,1,1,564.0,0.0,297.0,11,0.0,3.0,3.0,1.0,1.0,1,1,3078.04171005927,0.0,16478.902192202062,0,5,2,3,84.0,7,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029613623183644185,16478.902192202062,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +80,2,53.0,0.0,1,300,200.0,0.0,0.0,0,47,0.0,0.0,341.04010867441224,260.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,100082,1,3,4,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1375.90300444293,200.0,21350.1327055727,0,4,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012177910254025547,21350.1327055727,6,3,6,6_1,6_0,6_1_0 +81,0,89.0,0.0,2,300,250.0,0.0,0.0,0,71,0.0,0.0,426.3001358430153,280.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100083,1,3,4,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1060.07263106671,250.0,13389.81305606044,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020911419661177988,13389.81305606044,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +83,1,35.0,410.0,1,111,400.0,400.0,0.0,68,85,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,71,2,2,2,2,1,2,2,2,0,,1,,1,100085,2,3,2,0,1,,0.0,580.0,42,1.0,2.0,4.0,4.0,2.3,3,2,230.871599668846,400.0,12121.910498941388,4,6,2,3,144.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.06599619755234658,5270.395869104952,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +84,2,56.0,0.0,5,111,2400.0,0.0,0.0,0,43,0.0,0.0,4092.4813040929466,2487.0,120.54626260949732,0.0,33,0,0,0,0,0,0,0,0,2,45.0,1,,3,100086,2,1,2,0,1,,880.0,,32,3.0,1.0,7.0,3.0,2.0,3,3,569.501623345005,2400.0,61651.91303857672,0,1,1,2,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04033938084684962,30825.95651928836,8,4,8,8_1,8_4,8_0_0 +85,2,68.0,0.0,9,111,800.0,0.0,0.0,74,74,0.0,0.0,1364.160434697649,800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2006.0,6,100087,2,1,0,0,1,,210.0,760.0,41,0.0,2.0,5.0,2.0,1.5,2,2,2254.77631204693,800.0,50257.36511264771,5,5,2,3,92.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01591806490863312,33504.91007509847,8,4,8,8_0,8_3,8_0_0 +86,2,58.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,758.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,100088,2,2,0,0,2,,194.0,450.0,12,1.0,2.0,2.0,1.0,1.0,1,1,136.0510764596818,0.0,15907.754729642777,0,1,2,3,43.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04764971631021756,15907.754729642777,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +87,1,89.0,192.0,5,111,180.0,0.0,0.0,0,77,0.0,0.0,306.936097806971,497.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100089,2,1,0,1,1,,139.0,380.0,11,0.0,1.0,3.0,1.0,1.0,1,1,383.797980422112,180.0,10925.823823169225,0,5,2,3,70.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04548856068373218,10925.823823169225,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +88,2,46.0,0.0,6,111,496.0,1145.0,0.0,85,37,0.0,39.72981831030672,845.7794695125424,1671.0,0.0,2173.7871348910585,31,0,0,0,0,0,0,0,0,1,3.0,1,,4,100090,2,1,1,0,1,,338.0,,42,1.0,0.0,6.0,5.0,2.5999999999999996,3,2,1003.34333890941,496.0,45380.239018665125,6,1,1,2,127.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03682219477320754,17453.938084101974,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +89,2,30.0,0.0,7,111,360.0,,,85,56,0.0,0.0,,486.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,,5,100091,2,1,0,0,1,,250.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,109.41126485409657,360.0,14052.02722595209,7,1,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03458575707157949,6691.441536167661,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +90,2,47.0,0.0,6,211,1070.0,0.0,0.0,0,63,0.0,0.0,1824.5645814081054,1110.0,55.423569015860835,0.0,70,2,2,2,2,2,1,2,2,2,5.0,1,,4,100092,2,2,2,0,1,,210.0,428.0,12,1.0,2.0,3.0,1.0,1.0,1,1,572.17515899882,1070.0,9528.939871331864,0,1,2,3,72.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.11648724989224377,9528.939871331864,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +91,1,39.0,22.0,5,400,0.0,0.0,0.0,63,63,0.0,662.163638505112,0.0,860.0,498.81212114274757,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,100093,1,1,2,0,2,,384.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,971.142449973494,0.0,32727.3843058302,4,1,1,2,110.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02627768818807789,15584.468717062,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +92,2,43.0,0.0,2,300,600.0,400.0,0.0,56,52,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,100094,2,1,1,0,1,,230.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,1204.96127807164,600.0,37740.16961964901,1,1,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026496966231952516,13478.632007017504,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +93,2,90.0,0.0,1,300,2255.0,0.0,0.0,72,72,0.0,0.0,3845.227225303998,2375.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100095,2,1,2,0,1,,290.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1739.5729937344,2255.0,24862.387062835987,5,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09552582356623845,16574.924708557326,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +94,1,24.0,44.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,164.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,5.0,2,,2,100096,2,1,0,1,1,,0.0,282.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1171.21709697725,0.0,17207.916853533705,0,1,2,3,53.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.00953049700297233,13236.85911810285,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +95,1,27.0,217.0,1,111,324.0,823.0,0.0,55,62,0.0,0.0,552.4849760525478,1147.0,0.0,1562.4688314544464,43,1,2,2,1,1,2,2,2,2,10.0,1,,1,100097,2,2,1,0,1,,408.0,366.0,43,2.0,0.0,3.0,4.0,2.1,2,2,165.441834981538,324.0,28581.553423138663,4,1,2,3,57.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.04013077886352487,13610.263534827935,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +96,2,52.0,0.0,1,111,740.0,1290.0,0.0,22,38,0.0,0.0,1261.8484020953254,2030.0,0.0,2449.070221842328,10,2,2,1,2,1,2,2,2,2,30.0,1,,1,100098,2,1,1,0,1,,600.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1232.34259179504,740.0,86143.87096536324,1,1,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.023565228463162783,34457.548386145296,9,5,9,9_1,9_3,9_1_0 +97,2,36.0,0.0,7,112,1500.0,1500.0,0.0,63,54,0.0,0.0,2557.8008150580918,3000.0,0.0,2847.7560719096837,43,0,0,0,0,0,0,0,0,2,60.0,1,,5,100099,2,3,3,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,779.134411523574,1500.0,42344.70419243144,1,1,1,2,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07084711198752949,20164.14485353878,5,3,5,5_1,5_1,5_0_0 +98,1,27.0,370.0,1,111,534.0,1132.0,0.0,85,47,0.0,0.0,910.5770901606807,1666.0,0.0,2149.106582267841,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,100100,2,2,0,0,1,,463.0,505.0,42,1.0,0.0,4.0,5.0,2.4,2,2,454.918691669916,534.0,26945.679916617166,6,1,2,3,81.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06182809285775685,11227.36663192382,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +99,2,50.0,0.0,5,111,768.0,,,0,52,0.0,0.0,,831.0,87.29212119998083,,71,2,2,2,2,1,2,2,2,0,,1,,3,100101,1,3,0,0,2,,546.0,,32,1.0,4.0,4.0,2.0,1.5,2,2,126.7937184509074,768.0,8855.190295987526,0,4,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.09384326843620104,5903.460197325017,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +100,1,57.0,422.0,6,111,250.0,0.0,0.0,85,78,0.0,0.0,426.3001358430153,1038.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,100102,2,3,0,1,1,302.0,0.0,426.0,41,0.0,2.0,4.0,4.0,2.3,3,2,308.304964676179,250.0,3181.0515091344573,6,7,2,3,96.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.3263071965415715,1383.0658735367206,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +101,2,73.0,0.0,7,111,942.0,0.0,0.0,77,75,0.0,0.0,1606.2989118564817,942.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,5,100103,2,2,0,0,1,,337.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1693.78929243255,942.0,38903.135981474465,5,5,0,1,61.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024213986256752595,25935.423987649643,7,4,7,7_0,7_3,7_0_0 +102,2,44.0,0.0,9,300,300.0,0.0,0.0,0,85,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,7,2007.0,6,100104,2,2,0,0,2,,180.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1193.33376261784,300.0,10566.146606227643,0,7,0,1,27.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028392564591445405,10566.146606227643,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +103,2,67.0,0.0,2,111,200.0,1000.0,0.0,54,78,0.0,0.0,341.04010867441224,1200.0,0.0,1898.504047939789,60,1,2,2,2,2,2,2,1,0,,2,,2,100105,2,1,0,0,1,,160.0,265.0,42,1.0,1.0,2.0,2.0,1.5,2,2,1585.39826525093,200.0,38338.2143468057,1,5,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.031300362326342486,25558.809564537132,7,4,7,7_0,7_3,7_0_1 +104,2,41.0,0.0,2,111,700.0,1900.0,0.0,42,62,0.0,317.83854648245375,1193.6403803604428,2840.0,0.0,3607.1576910855993,50,0,0,0,0,0,0,0,0,0,,1,,2,100106,2,1,3,0,1,,630.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,292.183250045333,700.0,47411.09493433049,1,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059901590628390004,22576.71187349071,6,3,6,6_1,6_3,6_0_1 +105,2,83.0,0.0,1,112,800.0,0.0,0.0,0,71,1792.9608467622227,0.0,1364.160434697649,2638.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100107,2,1,2,0,1,,150.0,,11,0.0,7.0,8.0,1.0,1.0,1,1,228.669410211948,800.0,14827.03683306729,0,5,0,1,200.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1779182199181381,14827.03683306729,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +106,2,35.0,0.0,9,111,1300.0,0.0,0.0,52,52,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,100108,2,1,0,0,1,,0.0,810.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2152.43916620698,1300.0,39995.43748367402,1,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.032503707467399376,22219.68749093001,6,3,6,6_0,6_3,6_0_0 +107,2,61.0,0.0,6,111,1390.0,0.0,0.0,56,77,0.0,0.0,2370.228755287165,1470.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,100109,2,1,2,0,1,,252.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,973.67582331849,1390.0,40331.657972003355,1,5,0,1,90.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03644779495602229,20165.828986001678,5,3,5,5_1,5_2,5_0_0 +108,1,84.0,135.0,5,112,385.0,660.0,0.0,0,78,0.0,0.0,656.5022091982436,1045.0,0.0,1253.0126716402608,71,0,0,0,0,0,0,0,0,0,,2,,3,100110,2,1,0,1,1,,240.0,345.0,11,0.0,6.0,4.0,1.0,1.0,1,1,1065.50214317205,385.0,15798.267187239686,0,5,2,3,75.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.066146494904457,15798.267187239686,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +109,2,68.0,0.0,2,300,552.0,,,77,72,0.0,0.0,,813.0,361.63878782849196,,71,0,0,0,0,0,0,0,0,0,,1,,2,100111,1,3,0,0,1,,444.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,87.88489585985123,552.0,9503.305931034483,5,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08554917687591489,6335.537287356322,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +110,2,59.0,0.0,2,111,0.0,0.0,1780.0,0,75,0.0,0.0,1121.966556938244,1780.0,0.0,2130.183222665132,33,0,0,0,0,0,0,0,0,0,,2,,2,100112,2,1,0,0,1,,900.0,,31,2.0,0.0,5.0,3.0,2.0,3,3,452.097358673232,0.0,31046.075169301184,0,7,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057334139349121016,15523.037584650592,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +111,2,29.0,0.0,2,111,150.0,240.0,0.0,0,55,0.0,0.0,255.78008150580916,390.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,100113,2,1,0,1,1,305.0,0.0,257.0,12,1.0,0.0,1.0,1.0,1.0,1,1,794.891501346816,150.0,19177.012738151825,0,1,2,3,25.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020336848357205922,19177.012738151825,5,3,5,5_0,5_4,5_0_1 +112,2,30.0,0.0,9,111,1464.0,,,0,42,0.0,0.0,,1464.0,0.0,,41,0,0,0,0,0,0,0,0,2,50.0,1,2009.0,6,100114,2,1,0,0,2,,450.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,157.1817022696658,1464.0,30298.80888047912,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04831873113478148,23306.776061907014,6,3,6,6_1,6_3,6_0_0 +113,2,46.0,0.0,8,112,672.0,0.0,0.0,47,48,0.0,0.0,1145.894765146025,742.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,100115,2,1,1,0,1,,277.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1420.83632242215,672.0,67156.05730020445,1,1,1,2,148.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01104889163881485,31979.074904859262,8,4,8,8_1,8_2,8_0_0 +114,2,40.0,0.0,8,111,520.0,,,0,52,0.0,0.0,,604.0,116.38949493330776,,41,0,0,0,0,0,0,0,0,0,,1,2002.0,6,100116,2,1,0,0,2,,240.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,75.77483469768026,520.0,4821.233231580997,0,4,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12527914975022564,2678.4629064338874,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +115,2,47.0,0.0,6,111,422.0,0.0,0.0,0,47,0.0,116.54080037689971,719.5946293030098,510.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,4,100117,1,1,0,0,1,,0.0,261.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1269.95042477551,422.0,33151.115911537454,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015384097517589346,33151.115911537454,8,4,8,8_0,8_4,8_0_0 +116,1,50.0,253.0,1,111,0.0,,,0,55,0.0,0.0,,1871.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,1,100118,2,1,0,0,2,,494.0,300.0,12,1.0,2.0,3.0,1.0,1.0,1,1,84.57328234324986,0.0,6573.323218900845,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.28463532640843703,6573.323218900845,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +117,2,60.0,0.0,7,400,0.0,,,11,11,0.0,0.0,,150.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,100119,2,2,0,0,2,,0.0,,43,2.0,7.0,3.0,2.0,1.5,2,2,46.791648175637185,0.0,9101.103606557379,1,1,0,1,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016481517680111284,6067.402404371586,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +118,2,47.0,0.0,2,111,780.0,2600.0,0.0,85,85,0.0,0.0,1330.0564238302077,3380.0,0.0,4936.110524643452,50,0,0,0,0,0,0,0,0,0,,1,,2,100120,2,1,1,0,1,,308.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,291.94583849463,780.0,21886.88855095497,7,7,0,1,157.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15443035642690855,14591.25903396998,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +119,2,80.0,0.0,2,111,250.0,900.0,0.0,0,78,0.0,0.0,426.3001358430153,1150.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,1,,2,100121,2,1,2,0,1,,50.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,601.23657938759,250.0,27258.302112896014,0,5,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04218898136931024,27258.302112896014,7,4,7,7_1,7_4,7_0_1 +120,2,61.0,0.0,6,112,694.0,0.0,0.0,0,45,0.0,0.0,1183.4091771002104,719.0,34.63973063491302,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,100122,2,1,1,0,1,,200.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1978.40498053714,694.0,28849.0885064739,0,1,1,2,55.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024922797815211815,28849.0885064739,8,4,8,8_1,8_1,8_0_0 +121,2,35.0,0.0,6,112,1800.0,0.0,0.0,53,46,0.0,0.0,3069.36097806971,1870.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,100123,2,2,1,0,2,,650.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1325.86569563412,1800.0,50230.39164539005,4,1,1,2,110.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03722845748847792,27905.773136327807,7,4,7,7_1,7_1,7_0_0 +122,0,31.0,0.0,8,111,1080.0,0.0,0.0,55,46,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,2001.0,6,100124,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,2001.5349633056,1080.0,55152.3418243619,1,1,5,0,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0195821240635505,30640.189902423277,8,4,8,8_0,8_3,8_0_0 +123,2,48.0,0.0,9,112,780.0,0.0,0.0,54,46,0.0,0.0,1330.0564238302077,810.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2004.0,6,100125,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1248.3597233888,780.0,72897.41051231656,1,1,1,2,122.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011111505803942712,40498.56139573143,9,5,9,9_1,9_1,9_0_0 +124,1,63.0,25.0,6,111,230.0,770.0,0.0,0,78,0.0,0.0,392.1961249755741,1000.0,0.0,1461.8481169136376,71,1,2,2,2,1,2,2,2,0,,2,,4,100126,1,1,0,0,1,,280.0,305.0,11,0.0,0.0,2.0,1.0,1.0,1,1,103.8039185441,230.0,13771.100341208376,0,5,2,3,50.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07261583862021681,13771.100341208376,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +125,1,65.0,248.0,2,111,300.0,600.0,0.0,0,77,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,71,2,2,2,2,1,2,2,2,0,,2,,2,100127,2,2,0,0,1,,0.0,163.0,11,0.0,1.0,2.0,1.0,1.0,1,1,263.196815260083,300.0,7286.938775510203,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.1235086540077298,7286.938775510203,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +126,2,53.0,0.0,2,111,275.0,900.0,0.0,22,46,0.0,0.0,468.93014942731685,1175.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,100128,1,2,0,0,1,,320.0,530.0,43,2.0,0.0,3.0,3.0,1.8,2,2,867.98863343567,275.0,12140.300960046909,1,4,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0967850800294707,6744.611644470505,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +127,0,66.0,0.0,1,111,334.0,1331.0,0.0,0,77,0.0,0.0,569.5369814862685,1665.0,0.0,2526.908887807859,71,0,0,0,0,0,0,0,0,0,,1,,1,100129,2,1,3,0,1,,120.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,318.581651909457,334.0,20370.037988596854,0,5,0,1,130.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0817376973441123,20370.037988596854,5,3,5,5_1,5_3,5_1_0 +128,2,41.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1194.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100130,2,1,0,0,1,,322.0,396.0,32,1.0,3.0,3.0,2.0,1.5,2,1,509.811737650942,0.0,19806.84933670067,0,4,2,3,60.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06028217712483952,13204.566224467113,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +129,2,34.0,0.0,2,120,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1654.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,100131,1,1,3,0,1,,807.0,600.0,43,2.0,0.0,5.0,4.0,2.3,3,3,261.080987465023,0.0,58779.318511803715,1,1,2,3,90.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02813914897070223,25556.22543991466,7,4,7,7_1,7_0,7_0_1 +130,0,95.0,0.0,1,111,560.0,1096.0,0.0,0,86,0.0,0.0,954.9123042883542,1656.0,0.0,2080.760436542009,71,0,0,0,0,0,0,0,0,0,,2,,1,100132,2,1,0,0,2,,277.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,772.888127459639,560.0,47583.75338911606,0,6,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034801794353170566,31722.502259410703,8,4,8,8_0,8_4,8_1_0 +131,2,79.0,0.0,9,112,455.0,844.0,0.0,0,77,0.0,0.0,775.8662472342878,1299.0,0.0,1602.3374164611819,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100133,2,1,1,0,1,,379.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1131.30918820617,455.0,9820.554910155923,0,5,0,1,140.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13227358452592528,9820.554910155923,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +132,2,48.0,0.0,2,111,578.0,90.0,0.0,77,52,0.0,0.0,985.6059140690513,817.0,0.0,170.865364314581,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,100134,1,2,0,1,2,,0.0,,42,2.0,1.0,3.0,3.0,2.0,3,3,1614.82641672455,578.0,49981.129647907976,5,1,1,2,67.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016346169159347855,24990.564823953988,7,4,7,7_0,7_2,7_0_1 +134,2,77.0,0.0,5,300,1000.0,0.0,0.0,77,71,0.0,1125.6781854586902,1705.2005433720612,2000.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,100136,1,2,3,0,1,,505.0,437.0,41,0.0,4.0,3.0,2.0,1.5,2,2,953.483491384879,1000.0,21167.71648816326,5,5,2,3,85.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09448350279626887,14111.81099210884,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +135,2,76.0,0.0,6,111,248.0,0.0,0.0,77,78,0.0,0.0,422.8897347562712,362.0,0.0,0.0,60,1,2,2,1,1,2,2,2,0,,2,,4,100137,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,186.42839112364,248.0,37776.138971417626,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009582768643293542,25184.09264761175,7,4,7,7_0,7_4,7_0_0 +136,2,32.0,0.0,9,212,1720.0,0.0,0.0,67,67,0.0,0.0,2932.944934599945,1810.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,100138,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,675.094756357718,1720.0,37987.418897379626,1,1,1,2,102.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04764735411188608,18089.247093990296,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +137,2,65.0,0.0,1,222,2000.0,0.0,0.0,72,72,0.0,662.163638505112,3410.4010867441225,2590.0,124.70303028568689,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,100139,2,1,1,0,1,,200.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1124.16391286817,2000.0,57274.12926309437,5,5,0,1,170.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.045221115245638724,38182.75284206292,9,5,9,9_1,9_0,9_1_0 +138,2,63.0,0.0,5,211,600.0,1100.0,0.0,56,47,0.0,0.0,1023.1203260232367,1700.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,0,,2,,3,100140,2,1,0,0,1,,270.0,382.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1286.81584960527,600.0,48136.52042626575,1,1,2,3,75.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03531622113409745,32091.0136175105,8,4,8,8_0,8_1,8_0_0 +139,2,53.0,0.0,5,111,845.0,0.0,0.0,21,21,0.0,397.2981831030672,1440.8944591493917,1265.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,3,100141,2,1,2,0,1,,419.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,1220.66862996728,845.0,29377.621515395043,1,1,0,1,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04305998698148826,11751.048606158018,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +140,2,49.0,0.0,1,111,492.0,115.0,0.0,52,22,0.0,0.0,838.958667339054,607.0,0.0,218.32796551307572,71,0,0,0,0,0,0,0,0,1,1.0,2,,1,100142,2,1,0,0,1,,360.0,,43,2.0,5.0,5.0,2.0,1.5,2,2,395.459556914672,492.0,9281.179898804052,1,1,1,2,54.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0654011673750895,6187.453265869368,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +141,2,40.0,0.0,9,300,900.0,0.0,0.0,85,62,0.0,821.0829117463388,1534.680489034855,1520.0,0.0,0.0,50,2,2,1,1,1,2,2,2,2,12.0,1,2008.0,6,100143,2,1,1,0,1,,350.0,,42,1.0,0.0,5.0,4.0,2.3,3,2,1305.63097868143,900.0,29898.751960443446,6,1,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.050838242412625974,12999.457374105847,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +142,1,29.0,357.0,7,111,480.0,,,0,85,0.0,0.0,,660.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,5,100144,2,2,0,0,2,,150.0,400.0,31,0.0,0.0,1.0,2.0,1.3,1,1,106.75555722273809,480.0,9447.351210279574,0,6,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06986085150320867,7267.193238676595,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +143,0,45.0,0.0,2,111,755.0,,,0,64,0.0,0.0,,815.0,83.13535352379125,,50,0,0,0,0,0,0,0,0,0,,1,,2,100145,2,1,0,0,2,,650.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,141.26210359537677,755.0,20305.57793764988,0,4,5,0,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04013675466428641,11280.87663202771,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +144,1,37.0,200.0,2,111,530.0,,,55,63,0.0,0.0,,782.0,349.1684847999233,,43,0,0,0,0,0,0,0,0,2,45.0,1,,2,100146,1,1,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,4.0,2.1,2,2,136.28711212125313,530.0,38261.56699971843,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.020438263806752996,18219.79380938973,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +145,1,32.0,400.0,1,111,600.0,1400.0,0.0,85,52,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,50,1,2,2,1,2,2,2,2,2,15.0,1,,1,100147,2,1,2,0,1,,1200.0,355.0,42,1.0,0.0,4.0,7.0,2.9999999999999996,2,2,263.090693199522,600.0,28853.13842348521,6,1,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.06931654957756991,9617.712807828404,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +146,2,39.0,0.0,5,111,300.0,0.0,0.0,0,37,0.0,0.0,511.56016301161833,300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,3,100148,2,1,0,1,2,768.0,0.0,770.0,32,1.0,0.0,4.0,3.0,1.6,1,1,622.80017457698,300.0,71244.33035920275,0,1,2,3,96.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004210861390477628,44527.70647450172,10,5,10,10_0,10_3,10_0_0 +147,1,24.0,258.0,2,111,0.0,0.0,0.0,64,63,0.0,0.0,0.0,1156.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,100149,2,1,0,1,1,,201.0,279.0,43,2.0,0.0,3.0,3.0,1.8,2,2,440.449969247283,0.0,21072.460354903502,4,4,2,3,88.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.054858330756379955,11706.922419390834,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +148,2,64.0,0.0,2,221,180.0,0.0,0.0,0,22,0.0,0.0,306.936097806971,216.0,49.88121211427475,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,100150,1,2,3,0,2,,78.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2624.28560124212,180.0,15629.448761269588,0,1,0,1,70.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.013820065141085257,15629.448761269588,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +149,2,59.0,0.0,2,111,500.0,0.0,0.0,0,64,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100151,2,2,0,0,2,,90.0,239.0,12,1.0,4.0,1.0,1.0,1.0,1,1,3063.19727407869,500.0,14186.0,0,1,3,4,30.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03524601720005639,14186.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +150,1,47.0,254.0,1,112,660.0,0.0,0.0,0,54,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,100152,2,2,0,0,1,,240.0,500.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1252.7315904955,660.0,7579.427757228796,0,4,2,3,75.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.08707781393793644,7579.427757228796,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +151,2,51.0,0.0,1,112,1200.0,1388.0,0.0,67,37,0.0,99.3245457757668,2046.2406520464733,2753.0,124.70303028568689,2635.1236185404273,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,100153,2,1,3,0,1,,432.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,405.463028492826,1200.0,56226.22486981324,1,1,1,2,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048962917328601085,28113.11243490662,8,4,8,8_1,8_1,8_1_0 +152,1,45.0,112.0,9,211,420.0,,,68,22,0.0,0.0,,692.0,376.8802693078537,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,100154,2,1,0,0,1,,200.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,92.06386270296129,420.0,18224.056600344724,1,1,1,2,102.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03797178724669403,7009.252538594125,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +153,2,44.0,0.0,9,111,0.0,0.0,0.0,45,33,0.0,0.0,0.0,1429.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,2013.0,6,100155,2,1,1,0,1,,171.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,842.07688968468,0.0,57412.48758053772,1,1,1,2,123.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0248900554604155,38274.991720358485,9,5,9,9_1,9_2,9_0_0 +154,0,75.0,0.0,2,111,228.0,240.0,0.0,0,77,0.0,0.0,388.7857238888299,468.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,2,,2,100156,2,1,0,1,1,14.0,260.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,417.332875943113,228.0,16300.0,0,5,5,0,70.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028711656441717793,16300.0,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +155,2,57.0,0.0,2,111,791.0,107.0,0.0,63,46,0.0,0.0,1348.8136298073005,898.0,0.0,203.13993312955742,41,2,2,2,2,1,2,2,2,2,60.0,1,,2,100157,2,1,2,0,1,,287.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,906.610771018539,791.0,65298.994981686075,1,1,0,1,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.013752125897984423,43532.66332112405,10,5,10,10_1,10_3,10_0_1 +156,2,42.0,0.0,6,400,1820.0,0.0,0.0,12,11,0.0,0.0,3103.4649889371512,1820.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,4,100158,2,1,3,0,1,,273.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1030.73146429658,1820.0,42074.50175472865,1,1,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04325660255252945,23374.72319707147,6,3,6,6_1,6_0,6_0_0 +157,2,67.0,0.0,5,112,625.0,1440.0,0.0,0,74,0.0,132.4327277010224,1065.7503396075383,2165.0,0.0,2733.845829033296,50,0,0,0,0,0,0,0,0,0,,1,,3,100159,2,2,3,0,1,,178.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,940.404672278926,625.0,34056.3789976955,0,5,0,1,140.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06357105669238938,34056.3789976955,9,5,9,9_1,9_1,9_0_0 +158,2,58.0,0.0,1,120,450.0,0.0,0.0,77,37,1371.087706347582,0.0,767.3402445174275,1800.0,69.27946126982604,0.0,70,2,2,1,2,1,2,2,2,2,25.0,1,,1,100160,2,1,2,0,1,,400.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,238.682916650354,450.0,40239.14166637905,6,1,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04473256449960391,20119.570833189526,5,3,5,5_1,5_0,5_1_0 +159,2,40.0,0.0,5,400,380.0,0.0,0.0,38,38,2109.365702073203,0.0,647.9762064813832,2420.0,55.423569015860835,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,3,100161,1,2,2,0,2,,200.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1449.32802923185,380.0,114733.4226737845,1,1,1,2,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02109237172223702,47805.592780743544,10,5,10,10_1,10_0,10_0_0 +160,2,46.0,0.0,5,112,2400.0,0.0,0.0,42,43,0.0,0.0,4092.4813040929466,2553.0,211.99515148566772,0.0,20,0,0,0,0,0,0,0,0,2,18.0,1,,3,100162,2,1,2,0,1,,395.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1652.42982131652,2400.0,68200.21899755094,1,1,1,2,151.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03743389739102858,28416.757915646227,8,4,8,8_1,8_0,8_0_0 +161,2,56.0,0.0,7,112,300.0,,,0,78,0.0,0.0,,420.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,100163,1,3,0,0,2,,500.0,,31,0.0,1.0,3.0,2.0,1.5,2,1,98.25145349585512,300.0,10598.0,0,7,0,1,55.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03963011889035667,7065.333333333333,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +162,2,73.0,0.0,5,111,2500.0,0.0,0.0,56,86,0.0,0.0,4263.001358430153,2900.0,554.2356901586083,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,100164,2,1,1,0,1,,800.0,,42,2.0,2.0,8.0,5.0,3.0,5,5,131.489551566418,2500.0,27156.475677599097,1,5,1,2,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1067885256698519,9052.158559199699,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +163,2,53.0,0.0,2,111,1020.0,0.0,0.0,56,35,0.0,397.2981831030672,1739.3045542395023,1358.0,52.99878787141693,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,100165,2,1,2,0,1,,500.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,464.391722766722,1020.0,59280.9815221591,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022907852824474283,39520.654348106065,9,5,9,9_1,9_4,9_0_1 +164,0,45.0,0.0,2,112,300.0,0.0,0.0,0,48,2109.365702073203,0.0,511.56016301161833,2330.0,41.567676761895626,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,100166,2,1,1,0,2,,340.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,2294.85328496944,300.0,17939.085411047796,0,1,0,1,90.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1298839905497673,17939.085411047796,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +165,1,76.0,88.0,5,111,260.0,,,0,78,0.0,0.0,,260.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,100167,2,2,0,0,2,,230.0,181.0,11,0.0,4.0,2.0,1.0,1.0,1,1,146.903545644942,260.0,10288.409922237232,0,5,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025271154820342014,10288.409922237232,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +166,2,54.0,0.0,9,111,720.0,,,52,64,0.0,0.0,,972.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,100168,2,1,0,0,1,,480.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,145.15525715894955,720.0,41362.09903930559,4,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02349977449346387,16544.839615722238,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +167,2,67.0,0.0,2,111,50.0,30.0,0.0,78,77,0.0,0.0,85.26002716860306,80.0,0.0,56.95512143819367,50,2,2,2,2,1,2,2,2,0,,2,,2,100169,2,2,0,1,1,1240.0,0.0,299.0,41,0.0,0.0,3.0,2.0,1.5,2,2,279.411193756251,50.0,42450.57548186469,5,5,2,3,63.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.0018845445342472872,28300.38365457646,8,4,8,8_0,8_2,8_0_1 +168,2,29.0,0.0,1,111,100.0,1500.0,0.0,0,56,0.0,0.0,170.52005433720612,1600.0,0.0,2847.7560719096837,43,2,2,2,1,2,2,1,2,2,30.0,1,,1,100170,2,2,5,0,1,,200.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,472.453116789313,100.0,15130.660937953897,0,1,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.10574554585296037,15130.660937953897,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +169,2,24.0,0.0,8,111,757.0,0.0,0.0,84,47,0.0,0.0,1290.8368113326503,757.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,25.0,2,2000.0,6,100171,2,1,0,0,1,,0.0,593.0,42,1.0,0.0,1.0,2.0,1.5,2,2,2267.65364537696,757.0,35429.45179829463,3,1,2,3,28.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02136640454697743,23619.634532196418,6,3,6,6_0,6_3,6_0_0 +170,2,65.0,0.0,1,112,611.0,0.0,0.0,0,77,0.0,357.56836479276046,1041.8775320003294,1647.0,1061.3613466537352,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100172,2,1,2,0,1,,171.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1012.48745755365,611.0,27784.412758267048,0,5,0,1,120.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059277840936549836,27784.412758267048,7,4,7,7_1,7_0,7_1_0 +171,2,58.0,0.0,5,112,750.0,0.0,0.0,56,55,527.3414255183008,695.2718204303676,1278.9004075290459,1775.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100173,2,1,2,0,1,,250.0,,43,2.0,2.0,5.0,4.0,2.5,4,3,898.251853356797,750.0,19881.05678983766,1,1,0,1,110.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08928096824849388,7952.422715935065,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +172,2,24.0,0.0,7,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,604.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,5,100174,2,1,0,1,1,503.0,0.0,610.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1637.83186998154,0.0,38809.217889694424,1,1,2,3,64.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015563312863369733,25872.81192646295,7,4,7,7_0,7_3,7_0_0 +173,2,42.0,0.0,9,400,400.0,0.0,0.0,0,69,0.0,0.0,682.0802173488245,440.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,100175,2,1,1,0,1,,105.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1483.88649457016,400.0,43786.92619335283,0,1,0,1,108.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010048661512732426,43786.92619335283,10,5,10,10_1,10_0,10_0_0 +174,2,43.0,0.0,9,400,1970.0,0.0,0.0,47,33,980.8550514640394,0.0,3359.2450704429607,2960.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,100176,2,1,1,0,1,,182.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,1089.12715299101,1970.0,67759.62090636446,1,1,1,2,270.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043683833533991565,37644.23383686915,9,5,9,9_1,9_0,9_0_0 +175,2,73.0,0.0,9,400,1110.0,0.0,0.0,0,78,0.0,0.0,1892.772603142988,1607.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,100177,2,1,1,0,1,,490.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2480.2255267358,1110.0,11192.703481535933,0,5,0,1,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1435756788028014,11192.703481535933,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +176,1,56.0,350.0,5,111,600.0,,,0,54,0.0,0.0,,650.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,0,,1,,3,100178,2,1,0,0,2,,500.0,750.0,32,1.0,0.0,4.0,2.0,1.5,2,2,153.77598430339927,600.0,9001.060777442362,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0722137108138377,6000.707184961575,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +177,2,70.0,0.0,2,111,286.0,252.0,0.0,0,77,0.0,0.0,487.6873554044095,538.0,0.0,478.4230200808268,70,0,0,0,0,0,0,0,0,0,,2,,2,100179,2,1,0,1,1,550.0,0.0,359.0,11,0.0,6.0,3.0,1.0,1.0,1,1,272.496564921283,286.0,16748.35714798703,0,5,2,3,57.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0321225535881686,16748.35714798703,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +178,2,33.0,0.0,5,211,1000.0,,,54,48,0.0,0.0,,1000.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,3,100180,2,2,0,0,2,,240.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,46.500590506485224,1000.0,81028.81244004049,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012341289103057972,38585.148780971664,9,5,9,9_0,9_2,9_0_0 +179,2,86.0,0.0,1,111,600.0,0.0,0.0,0,78,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,100181,2,1,0,0,1,,0.0,700.0,11,0.0,4.0,3.0,1.0,1.0,1,1,2247.6896431183,600.0,17200.094752713605,0,5,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.038371881637214465,17200.094752713605,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +180,2,69.0,0.0,2,111,489.0,149.0,0.0,75,75,0.0,0.0,833.843065708938,638.0,0.0,282.87710314302853,20,0,0,0,0,0,0,0,0,0,,2,,2,100182,2,2,0,1,1,568.0,0.0,167.0,41,0.0,1.0,2.0,2.0,1.5,2,2,1163.77560487345,489.0,14313.649199519488,5,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04457284030835531,9542.432799679658,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +181,2,24.0,0.0,9,111,550.0,0.0,0.0,0,46,0.0,0.0,937.8602988546337,550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2004.0,6,100183,2,2,0,0,1,,190.0,457.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1729.89722906887,550.0,34180.9050781184,0,1,2,3,52.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016090855369189555,34180.9050781184,9,5,9,9_0,9_2,9_0_0 +182,1,57.0,143.0,2,111,700.0,180.0,0.0,0,52,0.0,0.0,1193.6403803604428,880.0,0.0,341.730728629162,60,2,1,2,2,1,2,2,2,3,45.0,2,,2,100184,1,2,0,1,1,600.0,0.0,350.0,32,2.0,0.0,3.0,3.0,2.0,3,3,772.552148001052,700.0,35090.838280472984,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.025077770812038252,17545.419140236492,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +183,2,30.0,0.0,8,111,300.0,642.0,0.0,0,42,0.0,0.0,511.56016301161833,942.0,0.0,1218.8395987773445,12,2,2,2,2,1,2,2,2,3,35.0,2,,6,100185,1,3,0,2,2,640.0,0.0,326.0,12,1.0,0.0,2.0,1.0,1.0,1,1,344.62554549265,300.0,15156.392050431052,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.06215199480625795,15156.392050431052,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +184,1,48.0,711.0,8,111,1200.0,0.0,0.0,85,64,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,2,2001.0,6,100186,2,1,0,0,1,,0.0,790.0,42,1.0,0.0,5.0,9.0,3.7999999999999985,3,2,203.728463384353,1200.0,34544.39725287339,6,4,2,3,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0382116958167566,9090.630856019316,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +185,1,23.0,327.0,5,111,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1018.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,3,100187,2,1,0,1,1,40.0,152.0,421.0,43,2.0,0.0,3.0,2.0,1.5,2,2,429.126472476122,0.0,15654.992356567604,4,1,2,3,60.0,8,6,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06502717962509431,10436.66157104507,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +186,1,36.0,340.0,2,111,140.0,400.0,0.0,85,69,0.0,0.0,238.72807607208856,540.0,0.0,759.4016191759156,30,0,0,0,0,0,0,0,0,0,,2,,2,100188,2,3,0,1,1,684.0,400.0,305.0,42,1.0,0.0,3.0,4.0,2.1,2,2,2043.81403712178,140.0,17137.100059318884,6,4,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03151058219481869,8160.5238377708965,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +187,2,38.0,0.0,9,111,480.0,840.0,0.0,55,52,0.0,0.0,818.4962608185893,1320.0,0.0,1594.7434002694229,42,0,0,0,0,0,0,0,0,3,35.0,2,2006.0,6,100189,2,1,0,0,1,,0.0,542.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1159.27538770572,480.0,39162.12707962324,1,1,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03370603433557672,18648.631942677734,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +188,2,32.0,0.0,2,111,0.0,,,0,55,0.0,0.0,,851.0,0.0,,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,100190,2,1,0,0,1,,249.0,650.0,12,1.0,2.0,3.0,1.0,1.0,1,1,134.1416788135969,0.0,38921.41311740566,0,1,2,3,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021864570986489508,38921.41311740566,9,5,9,9_1,9_2,9_0_1 +189,2,84.0,0.0,1,300,1140.0,0.0,0.0,71,71,0.0,0.0,1943.9286194441497,1240.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100191,2,1,3,0,1,,180.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,880.84458652313,1140.0,33374.73397867666,5,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03715385419378157,22249.82265245111,6,3,6,6_1,6_0,6_1_0 +190,2,63.0,0.0,1,111,353.0,0.0,0.0,35,33,0.0,0.0,601.9357918103376,642.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,1,100192,1,2,0,1,2,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,767.585620855527,353.0,87323.8867844992,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007351940272474918,58215.92452299947,10,5,10,10_0,10_4,10_1_0 +191,2,30.0,0.0,2,111,180.0,,,0,35,0.0,0.0,,180.0,0.0,,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,100193,2,3,0,0,1,,300.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,115.76920968149622,180.0,30139.270763143548,0,1,2,3,25.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005972274558816362,30139.270763143548,8,4,8,8_0,8_2,8_0_1 +192,2,74.0,0.0,2,111,576.0,132.0,0.0,56,78,0.0,0.0,982.1955129823073,708.0,0.0,250.60253432805214,50,0,0,0,0,0,0,0,0,0,,2,,2,100194,2,1,0,1,1,886.0,298.0,347.0,42,1.0,2.0,3.0,2.0,1.5,2,2,234.377202163229,576.0,26682.188235247206,1,5,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026534555327989595,17788.125490164803,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +193,2,30.0,0.0,2,111,250.0,950.0,0.0,0,52,0.0,0.0,426.3001358430153,1200.0,0.0,1803.5788455427996,42,2,2,2,2,1,2,2,2,2,2.0,2,,2,100195,1,2,0,0,1,,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,1,1,379.206872270753,250.0,20835.325181138298,0,1,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.057594493465661395,20835.325181138298,5,3,5,5_0,5_3,5_0_1 +194,2,74.0,0.0,5,111,775.0,3000.0,0.0,75,72,0.0,0.0,1321.5304211133473,3775.0,0.0,5695.512143819367,44,0,0,0,0,0,0,0,0,0,,1,,3,100196,2,1,1,0,1,,480.0,,41,2.0,0.0,3.0,4.0,2.5,4,4,795.18681056053,775.0,120390.6036933322,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031356267716839074,48156.24147733288,10,5,10,10_1,10_4,10_0_0 +195,2,33.0,0.0,7,120,380.0,600.0,0.0,68,47,0.0,0.0,647.9762064813832,980.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,1,15.0,1,,5,100197,2,2,2,0,1,,360.0,435.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1843.1972103388,380.0,34244.552799038196,1,1,2,3,73.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028617690111214553,19024.75155502122,5,3,5,5_1,5_1,5_0_0 +196,1,24.0,173.0,7,112,0.0,0.0,0.0,69,56,0.0,0.0,0.0,1411.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,100198,2,1,1,0,1,,249.0,462.0,43,2.0,0.0,3.0,3.0,1.8,2,2,948.18965579913,0.0,24796.727092645415,1,1,2,3,62.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.056902670853626304,13775.95949591412,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +197,2,50.0,0.0,2,111,750.0,0.0,0.0,85,65,0.0,2648.654554020448,1278.9004075290459,2848.0,135.78774408885906,0.0,50,2,2,2,2,1,2,2,2,2,25.0,1,,2,100199,2,2,2,0,1,,500.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,380.511919349133,750.0,26012.73598748503,6,1,0,1,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.1094848308678564,13006.367993742515,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +198,2,31.0,0.0,1,112,1470.5,0.0,0.0,0,21,0.0,0.0,2507.4973990286157,1471.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100200,1,1,1,0,1,,147.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,947.508925198839,1470.5,14972.0,0,1,1,2,60.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09825006679134385,14972.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +199,2,56.0,0.0,6,111,1349.0,0.0,0.0,52,45,0.0,0.0,2300.3155330089107,1404.0,76.20740739680865,0.0,42,2,2,2,2,1,2,2,2,2,15.0,1,,4,100201,2,2,2,0,1,,241.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1207.15324626098,1349.0,48460.28571345339,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.02897217751256935,32306.857142302262,8,4,8,8_1,8_3,8_0_0 +200,2,42.0,0.0,6,211,480.0,,,85,63,0.0,0.0,,600.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,1,10.0,2,,4,100202,2,1,0,0,2,,400.0,200.0,42,1.0,1.0,3.0,3.0,1.8,2,2,57.37852854121839,480.0,23991.0,6,1,3,4,66.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025009378516943855,13328.333333333332,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +201,1,44.0,226.0,2,111,600.0,600.0,0.0,85,68,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,71,2,1,2,1,1,2,2,2,3,30.0,2,,2,100203,2,2,0,1,1,717.0,0.0,274.0,42,1.0,0.0,3.0,3.0,1.8,2,2,399.383675281264,600.0,22529.19655080054,7,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05326421638224643,12516.220306000301,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +202,2,56.0,0.0,5,111,800.0,0.0,0.0,0,68,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100204,2,1,0,1,1,1119.0,0.0,361.0,22,2.0,0.0,3.0,2.0,1.5,2,2,293.642553893488,800.0,19938.28070472417,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0401238206968592,13292.18713648278,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +203,2,81.0,0.0,1,111,0.0,0.0,390.0,0,77,0.0,0.0,245.8241332617501,390.0,0.0,466.7255375502255,60,0,0,0,0,0,0,0,0,0,,2,,1,100205,2,1,0,1,1,,156.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,361.288280060661,0.0,30190.711854543453,0,5,0,1,90.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012917880236775809,30190.711854543453,8,4,8,8_0,8_2,8_1_0 +204,2,53.0,0.0,9,111,776.0,,,52,63,0.0,0.0,,776.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,100206,2,1,0,0,2,,720.0,900.0,43,3.0,0.0,4.0,4.0,2.5,4,3,124.75655275663591,776.0,32712.4109338324,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023721883464035105,13084.964373532961,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +205,2,46.0,0.0,9,221,1208.0,,,42,34,0.0,0.0,,1248.0,55.423569015860835,,31,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,100207,2,1,0,0,2,,630.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,333.83149288430377,1208.0,71477.31567725298,1,1,1,2,140.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01746008489791629,27491.275260481918,7,4,7,7_1,7_1,7_0_0 +207,2,29.0,0.0,1,111,712.0,1070.0,0.0,42,43,0.0,26.486545540204478,1214.1027868809076,1802.0,0.0,2031.3993312955743,33,0,0,0,0,0,0,0,0,0,,1,,1,100209,2,1,2,0,1,,980.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,308.916612344129,712.0,121459.2674558663,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014836249532418582,57837.74640755538,10,5,10,10_1,10_3,10_1_0 +208,1,44.0,100.0,2,111,766.0,0.0,0.0,21,54,0.0,0.0,1306.1836162229988,766.0,0.0,0.0,42,2,2,2,2,1,2,2,1,2,75.0,1,,2,100210,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,529.763230388329,766.0,39784.53490107111,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,1,0,0,1,0.019253712577129493,26523.023267380737,7,4,7,7_1,7_4,7_0_1 +209,1,27.0,236.0,2,111,0.0,0.0,1280.0,85,64,0.0,0.0,806.807411730872,1280.0,0.0,1531.8171488827913,50,2,2,2,1,1,2,2,2,2,45.0,1,,2,100211,2,2,3,0,1,,260.0,550.0,42,1.0,1.0,3.0,4.0,2.1,2,2,414.182440920495,0.0,25103.623664066658,6,1,2,3,62.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.050988654750755875,11954.106506698408,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +210,1,57.0,279.0,9,111,690.0,,,85,63,0.0,662.163638505112,,1400.0,290.9737373332694,,71,2,2,2,1,1,2,2,2,0,,1,2008.0,6,100212,1,1,0,0,2,,900.0,,42,2.0,2.0,5.0,4.0,2.5,4,3,113.80773669854123,690.0,21893.153453432373,6,4,1,2,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.06394693222142972,8757.26138137295,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +211,2,29.0,0.0,1,111,1140.0,0.0,0.0,35,35,0.0,0.0,1943.9286194441497,1140.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,2,,1,100213,2,1,0,0,1,,0.0,910.0,43,2.0,0.0,2.0,2.0,1.5,2,2,879.579797043279,1140.0,15385.817479887171,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.0740942105604882,10257.211653258115,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +212,2,42.0,0.0,9,111,0.0,,,0,33,0.0,0.0,,1277.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,100214,2,2,0,0,2,,368.0,700.0,22,2.0,0.0,1.0,2.0,1.5,2,2,116.84854759014809,0.0,42524.30661694412,0,1,3,4,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030029884120230898,28349.537744629415,8,4,8,8_1,8_2,8_0_0 +213,2,77.0,0.0,1,222,600.0,0.0,0.0,78,78,1371.087706347582,0.0,1023.1203260232367,2040.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100215,2,1,2,0,1,,160.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1085.98670507325,600.0,20743.0,5,5,0,1,80.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09834643012100468,13828.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +214,1,85.0,86.0,2,111,759.0,0.0,0.0,0,77,0.0,0.0,1294.2472124193944,793.0,47.110033663481715,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100216,2,1,3,0,1,,0.0,547.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2792.81169388879,759.0,15329.424430318013,0,5,2,3,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.051730578901033726,15329.424430318013,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +215,2,26.0,0.0,1,111,136.0,291.0,0.0,67,55,0.0,0.0,231.90727389860032,427.0,0.0,552.4646779504786,20,0,0,0,0,0,0,0,0,2,15.0,2,,1,100217,1,1,0,0,1,,178.0,499.0,43,2.0,0.0,3.0,2.0,1.5,2,2,387.798842328187,136.0,21910.794026209547,4,1,2,3,51.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019488111635261846,14607.196017473032,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +216,1,63.0,81.0,2,111,490.0,0.0,0.0,0,67,0.0,0.0,835.54826625231,500.0,13.855892253965209,0.0,71,2,1,2,2,1,2,2,2,2,30.0,2,,2,100218,1,3,0,1,1,807.0,0.0,289.0,22,1.0,2.0,4.0,2.0,1.5,2,2,366.964860521129,490.0,12118.137672086565,0,1,2,3,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04126046538914319,8078.75844805771,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +217,2,38.0,0.0,2,112,314.0,1410.0,0.0,0,45,0.0,0.0,535.4329706188272,1724.0,0.0,2676.8907075951024,43,0,0,0,0,0,0,0,0,2,5.0,1,,2,100219,2,2,1,0,1,,118.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,957.119123164753,314.0,33374.43528403413,0,1,1,2,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051656304753259386,33374.43528403413,8,4,8,8_1,8_1,8_0_1 +218,2,38.0,0.0,9,112,1100.0,0.0,0.0,84,63,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,100220,2,2,1,0,1,,500.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1546.84140143398,1100.0,37128.952139386645,3,2,1,2,95.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029626475745139935,17680.453399707927,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +219,1,40.0,189.0,9,111,700.0,700.0,0.0,0,43,0.0,0.0,1193.6403803604428,1400.0,0.0,1328.9528335578523,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,100221,2,1,1,0,1,,0.0,613.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1232.83939368163,700.0,20863.918955192326,0,1,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06710148764509015,13039.949346995203,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +220,2,30.0,0.0,9,300,712.0,0.0,0.0,0,47,0.0,0.0,1214.1027868809076,712.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,100222,2,1,1,0,1,,533.0,660.0,22,2.0,0.0,4.0,2.0,1.5,2,2,5580.51099538461,712.0,33202.63613693395,0,1,2,3,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02144408043576954,22135.090757955968,6,3,6,6_1,6_0,6_0_0 +221,2,55.0,0.0,7,111,660.0,0.0,0.0,74,34,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,5,100223,2,1,0,0,1,,0.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,635.09541263333,660.0,119421.31873729284,5,1,0,1,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005526651413487494,79614.21249152855,10,5,10,10_0,10_3,10_0_0 +222,1,34.0,180.0,1,111,120.0,800.0,0.0,0,46,0.0,0.0,204.62406520464734,920.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,3,30.0,1,,1,100224,1,2,5,0,2,,0.0,1200.0,22,2.0,0.0,4.0,2.0,1.5,2,2,1803.9800246613,120.0,34926.037189931914,0,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.026341379498536616,23284.024793287943,6,3,6,6_1,6_3,6_1_0 +223,2,63.0,0.0,2,120,557.0,0.0,0.0,0,78,1898.4291318658827,0.0,949.796702658238,2477.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,100225,2,1,1,0,1,,110.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,258.270728779023,557.0,22653.218104683616,0,5,0,1,96.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10934428779846839,22653.218104683616,6,3,6,6_1,6_0,6_0_1 +224,1,38.0,49.0,9,112,980.0,0.0,0.0,85,62,210.9365702073203,1456.7600047112462,1671.09653250462,2346.0,91.44888887617039,0.0,50,2,2,2,1,2,2,2,2,2,45.0,1,2008.0,6,100226,2,3,1,0,1,,600.0,,42,1.0,0.0,5.0,6.0,2.8999999999999995,4,2,2337.56034783613,980.0,47510.13892933669,6,1,1,2,107.0,7,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.049378933694327415,16382.806527357481,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +225,2,84.0,0.0,2,111,190.0,240.0,0.0,0,78,0.0,0.0,323.9881032406916,430.0,0.0,455.6409715055494,71,2,1,2,1,1,2,2,2,0,,2,,2,100227,2,2,0,1,1,439.0,0.0,224.0,11,0.0,1.0,2.0,1.0,1.0,1,1,362.01337660386,190.0,26151.6505621252,0,5,2,3,55.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016442556808355283,26151.6505621252,7,4,7,7_0,7_2,7_0_1 +226,2,56.0,0.0,8,111,1320.0,0.0,0.0,0,34,0.0,0.0,2250.864717251121,1370.0,69.27946126982604,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,100228,2,1,2,0,1,,360.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1836.03682730989,1320.0,42660.41398181099,0,1,1,2,120.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03211408123193843,42660.41398181099,9,5,9,9_1,9_2,9_0_0 +227,2,69.0,0.0,2,111,323.0,0.0,0.0,0,75,1160.1511361402618,0.0,550.7797755091758,1453.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,100229,2,2,3,0,1,,242.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1292.95143596092,323.0,23551.585305377113,0,5,0,1,120.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061694360747268355,23551.585305377113,6,3,6,6_1,6_2,6_0_1 +228,2,54.0,0.0,5,111,1238.0,0.0,0.0,85,38,0.0,0.0,2111.038272694612,1238.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,1,,3,100230,1,2,3,0,1,,203.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,586.326202177825,1238.0,63307.64867075999,5,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01955529901984493,42205.09911383999,9,5,9,9_1,9_4,9_0_0 +229,2,60.0,0.0,2,111,243.0,226.0,0.0,0,54,759.3716527463531,0.0,414.3637320394109,1189.0,0.0,429.0619148343923,71,0,0,0,0,0,0,0,0,3,35.0,2,,2,100231,2,1,0,1,1,701.0,188.0,320.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1528.42552169339,243.0,19919.504795006524,0,1,2,3,60.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05969023890082156,19919.504795006524,5,3,5,5_0,5_3,5_0_1 +230,1,36.0,100.0,2,111,430.0,800.0,0.0,0,52,0.0,0.0,733.2362336499863,1230.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,100232,1,1,0,0,1,,0.0,580.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1230.62193166708,430.0,20055.221085744353,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06133066271078449,15427.09314288027,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +231,2,41.0,0.0,2,111,847.0,1900.0,0.0,21,42,0.0,0.0,1444.3048602361357,2747.0,0.0,3607.1576910855993,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,100233,2,3,2,0,1,,240.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,345.520559783396,847.0,33031.94923028537,1,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08316191033260038,14361.717056645813,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +232,2,80.0,0.0,2,112,600.0,0.0,0.0,71,71,0.0,1324.327277010224,1023.1203260232367,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100234,2,1,3,0,1,,500.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,2070.03991921448,600.0,19066.91385054369,5,5,0,1,85.0,9,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08391499602618577,12711.27590036246,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +233,2,62.0,0.0,5,111,0.0,0.0,850.0,74,75,0.0,662.163638505112,535.7705468525322,1350.0,0.0,1017.2223254299786,60,0,0,0,0,0,0,0,0,0,,1,,3,100235,2,1,1,0,1,,870.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,533.942213523243,0.0,62982.399490338634,5,5,0,1,138.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021434559669437286,41988.26632689242,9,5,9,9_1,9_4,9_0_0 +234,2,46.0,0.0,2,111,456.0,534.0,0.0,52,67,0.0,0.0,777.5714477776598,990.0,0.0,1013.8011615998473,71,0,0,0,0,0,0,0,0,0,,2,,2,100236,2,1,0,1,1,475.0,0.0,372.0,43,2.0,0.0,4.0,4.0,2.3,3,2,275.383728936359,456.0,34363.608962820785,1,4,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028809546781629263,14940.699549052517,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +235,2,58.0,0.0,1,111,488.0,1341.0,0.0,72,47,0.0,0.0,832.1378651655658,1829.0,0.0,2545.893928287257,71,0,0,0,0,0,0,0,0,2,1.0,2,,1,100237,2,1,0,0,1,,0.0,925.0,42,1.0,4.0,7.0,2.0,1.5,2,2,1900.22222886496,488.0,57441.31143745023,5,1,2,3,141.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03184119502549414,38294.207624966824,9,5,9,9_0,9_3,9_1_0 +236,2,66.0,0.0,9,111,0.0,0.0,0.0,85,74,0.0,0.0,0.0,1295.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2009.0,6,100238,2,1,1,0,1,,252.0,750.0,41,0.0,3.0,5.0,2.0,1.5,2,2,1291.4149466624,0.0,39437.296926402174,6,5,2,3,98.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03283693612208583,26291.531284268116,7,4,7,7_1,7_2,7_0_0 +237,1,68.0,80.0,9,221,1200.0,0.0,0.0,0,77,0.0,0.0,2046.2406520464733,1230.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,100239,2,1,0,0,1,,0.0,330.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2916.47778038306,1200.0,12181.0,0,5,2,3,65.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.10097693128642969,12181.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +238,1,48.0,413.0,5,111,150.0,,,0,68,0.0,0.0,,294.0,199.524848457099,,71,0,0,0,0,0,0,0,0,1,18.0,1,,3,100240,1,2,0,0,2,,293.0,550.0,32,1.0,5.0,2.0,3.0,1.6,1,1,41.616346774976435,150.0,11060.0,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026582278481012658,6912.5,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +239,2,89.0,0.0,1,112,700.0,0.0,0.0,0,71,1687.4925616585624,0.0,1193.6403803604428,2400.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100241,2,1,2,0,1,,1200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,874.406280461008,700.0,25341.106782513896,0,5,0,1,140.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09470778133716204,25341.106782513896,7,4,7,7_1,7_1,7_1_0 +240,2,65.0,0.0,2,111,900.0,1200.0,0.0,75,72,0.0,0.0,1534.680489034855,2100.0,0.0,2278.2048575277468,60,0,0,0,0,0,0,0,0,0,,1,,2,100242,2,1,1,0,1,,700.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,867.067606289143,900.0,81812.83134301669,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025668345240312355,54541.88756201113,10,5,10,10_1,10_4,10_0_1 +241,2,62.0,0.0,2,111,1200.0,1200.0,0.0,75,74,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,0,,1,,2,100243,2,1,2,0,1,,600.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1289.71688539764,1200.0,61768.871501047404,5,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03885452237797972,41179.247667364936,9,5,9,9_1,9_3,9_0_1 +242,2,48.0,0.0,2,111,0.0,0.0,0.0,34,37,0.0,0.0,0.0,1407.0,0.0,0.0,10,2,2,2,1,1,2,2,2,2,45.0,1,,2,100244,2,1,2,0,1,,556.0,,43,2.0,0.0,9.0,5.0,2.8,4,3,1180.93304461239,0.0,207900.09930434407,1,1,1,2,208.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.006767673535067911,74250.03546583717,10,5,10,10_1,10_3,10_0_1 +243,2,42.0,0.0,2,111,870.0,0.0,0.0,90,37,0.0,0.0,1483.5244727336933,870.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,100245,2,1,0,1,2,,0.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,787.538619621345,870.0,93841.9076419508,1,1,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009270911278993202,44686.62268664324,10,5,10,10_0,10_4,10_0_1 +244,2,32.0,0.0,9,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,1016.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,100246,2,1,0,0,1,,0.0,300.0,43,2.0,2.0,4.0,5.0,2.4,2,2,2732.93089037391,0.0,38202.8464734022,4,1,2,3,77.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02659487692120966,15917.852697250917,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +245,1,54.0,53.0,9,221,1404.0,0.0,0.0,55,63,0.0,0.0,2394.1015628943737,1404.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,100247,2,1,1,0,1,,468.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1573.31465080274,1404.0,36456.04906196586,1,1,1,2,101.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03851212723610183,15190.020442485775,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +246,0,93.0,0.0,1,111,1400.0,0.0,0.0,0,86,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,2,2,1,1,2,2,2,2,0,,1,,1,100248,1,3,4,0,2,,120.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1257.34497651059,1400.0,20394.136787704043,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.06864718102921046,20394.136787704043,5,3,5,5_1,5_3,5_1_0 +247,2,72.0,0.0,1,111,0.0,0.0,0.0,74,74,3796.8582637317654,0.0,0.0,4167.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,100249,2,2,2,0,1,,316.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,691.06626619335,0.0,95440.20103089306,5,5,0,1,100.0,10,8,1,1,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043660846844310215,63626.80068726204,10,5,10,10_1,10_4,10_1_0 +248,2,62.0,0.0,9,111,0.0,,,77,77,0.0,0.0,,1304.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,100250,2,1,0,0,1,,924.0,,41,1.0,3.0,4.0,3.0,2.0,3,3,100.38423155059834,0.0,202804.2684863211,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006429844942282136,101402.13424316054,10,5,10,10_1,10_2,10_0_0 +249,2,64.0,0.0,1,300,1200.0,0.0,0.0,78,78,0.0,529.7309108040896,2046.2406520464733,1700.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100251,2,1,1,0,1,,260.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,978.254981657208,1200.0,11470.905358270993,6,5,0,1,68.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14820103094776477,7647.270238847329,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +250,2,57.0,0.0,2,111,390.0,1100.0,0.0,55,64,0.0,0.0,665.0282119151038,1490.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,100252,2,2,4,0,1,,212.0,,43,2.0,4.0,4.0,3.0,2.0,3,2,811.435396901087,390.0,28997.743682580916,1,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051383308174251165,14498.871841290458,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +251,2,55.0,0.0,2,111,500.0,800.0,0.0,77,62,0.0,0.0,852.6002716860306,1375.0,103.91919190473907,1518.8032383518312,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,100253,2,1,2,0,1,,250.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,260.385939423979,500.0,29246.9393778445,7,1,0,1,85.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0470134663403996,14623.46968892225,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +252,2,43.0,0.0,9,111,739.0,0.0,0.0,85,31,0.0,385.3792376099752,1260.143201551953,1030.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,100254,2,1,1,0,1,,216.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,320.808207729734,739.0,95560.19662780284,6,1,1,2,173.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010778546260340425,45504.85553704897,10,5,10,10_1,10_3,10_0_0 +253,2,63.0,0.0,6,111,420.0,,,78,64,0.0,0.0,,696.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,100255,2,1,0,0,2,,330.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,112.52283575596805,420.0,26915.852748296707,6,1,0,1,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02585836705634542,17943.901832197804,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +254,0,89.0,0.0,2,222,324.0,2040.0,0.0,0,77,0.0,0.0,552.4849760525478,2364.0,0.0,3872.9482577971694,70,0,0,0,0,0,0,0,0,0,,1,,2,100256,2,1,2,0,1,,212.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1515.23522313178,324.0,24826.597371469434,0,5,0,1,90.0,1,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09522045911602424,24826.597371469434,7,4,7,7_1,7_0,7_0_1 +255,2,60.0,0.0,7,111,509.0,878.0,0.0,0,38,0.0,79.45963662061344,867.9470765763791,1447.0,0.0,1666.8865540911347,42,0,0,0,0,0,0,0,0,0,,1,,5,100257,2,1,2,0,1,,400.0,,32,3.0,2.0,5.0,3.0,2.0,3,3,1121.3529662591,509.0,94434.42709220145,0,1,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015322801700138609,47217.21354610073,10,5,10,10_1,10_3,10_0_0 +256,0,77.0,0.0,5,111,1747.0,0.0,0.0,77,86,0.0,0.0,2978.985349270991,1747.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,100258,2,1,2,0,1,,360.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,722.256087198218,1747.0,28693.70004061239,6,5,5,0,80.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06088444493137299,19129.13336040826,5,3,5,5_1,5_2,5_0_0 +258,2,78.0,0.0,2,111,720.0,,,0,75,0.0,0.0,,720.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,2,100260,1,1,0,0,2,,0.0,506.0,11,0.0,7.0,2.0,1.0,1.0,1,1,154.69419876048406,720.0,34559.847642642206,0,5,3,4,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02083342517724577,34559.847642642206,9,5,9,9_1,9_3,9_0_1 +259,2,33.0,0.0,1,111,500.0,1500.0,0.0,42,54,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,100261,2,1,2,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1765.29479241243,500.0,56780.7117076284,1,1,1,2,115.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03522322880167955,27038.43414648971,7,4,7,7_1,7_2,7_1_0 +260,0,63.0,0.0,9,111,552.0,,,0,90,0.0,0.0,,585.0,45.72444443808519,,12,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100262,2,1,0,0,2,,86.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,126.21601110546527,552.0,72358.19125513536,0,5,5,0,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008084779205401734,72358.19125513536,10,5,10,10_1,10_3,10_0_0 +261,2,53.0,0.0,5,111,598.0,0.0,0.0,85,78,0.0,0.0,1019.7099249364926,598.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100263,2,1,0,1,2,,0.0,,41,2.0,2.0,4.0,6.0,3.5,6,5,381.679962625135,598.0,10870.905459617907,6,7,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05500921723782691,3105.972988462259,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +262,2,82.0,0.0,1,400,1211.0,0.0,0.0,0,72,0.0,0.0,2064.997858023566,1281.0,96.99124577775646,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,100264,1,1,2,0,2,,150.0,250.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1118.10216984766,1211.0,19910.653767999793,0,5,2,3,40.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06433741528160218,19910.653767999793,5,3,5,5_1,5_0,5_1_0 +263,0,52.0,0.0,5,400,504.0,,,0,11,0.0,0.0,,642.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,100265,2,2,0,0,2,,300.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,103.84066580684228,504.0,14626.21377528171,0,4,5,0,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04389379301189891,9750.80918352114,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +264,2,38.0,0.0,6,211,600.0,,,56,11,0.0,0.0,,688.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,2,1.0,1,,4,100266,2,2,0,0,2,,150.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,90.91012241560881,600.0,79964.12131251114,4,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00860385868946397,33318.383880212976,8,4,8,8_1,8_2,8_0_0 +265,2,60.0,0.0,2,120,936.0,0.0,0.0,77,75,2109.365702073203,0.0,1596.0677085962493,2996.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,100267,2,2,4,0,1,,360.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,1223.03310144225,936.0,57314.79281798541,6,5,0,1,150.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052272717961563554,28657.396408992707,8,4,8,8_1,8_0,8_0_1 +266,2,48.0,0.0,1,111,1500.0,250.0,0.0,45,52,0.0,132.4327277010224,2557.8008150580918,1850.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,100268,2,2,2,0,1,,500.0,,43,2.0,3.0,5.0,3.0,1.8,2,2,840.51844352848,1500.0,53855.47521379438,1,1,1,2,120.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03435119628331024,29919.70845210799,8,4,8,8_1,8_2,8_1_0 +267,2,53.0,0.0,9,120,720.0,1158.0,0.0,54,46,0.0,264.8654554020448,1227.744391227884,2078.0,0.0,2198.4676875142754,42,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,100269,2,1,1,0,1,,370.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,250.504135155118,720.0,91725.84620227871,1,1,1,2,256.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022654465301061206,45862.92310113936,10,5,10,10_1,10_0,10_0_0 +268,2,68.0,0.0,2,222,300.0,0.0,0.0,77,78,1371.087706347582,0.0,511.56016301161833,1732.0,182.89777775234077,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100270,2,1,1,0,1,,200.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1384.06345926563,300.0,24013.649642325632,5,5,0,1,77.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0721256462802404,16009.099761550422,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +270,2,72.0,0.0,2,111,800.0,0.0,0.0,0,78,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100272,2,1,0,0,1,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1568.96383722965,800.0,14966.959853461485,0,5,2,3,70.0,6,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.053451068742927106,14966.959853461485,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +271,2,64.0,0.0,1,111,352.0,800.0,0.0,0,74,0.0,0.0,600.2305912669656,1152.0,0.0,1518.8032383518312,20,0,0,0,0,0,0,0,0,0,,1,,1,100273,2,2,2,0,2,,160.0,,21,1.0,0.0,6.0,3.0,2.0,3,3,1563.89340752719,352.0,51755.40230866503,0,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022258545941340874,25877.701154332513,7,4,7,7_1,7_3,7_1_0 +272,2,48.0,0.0,8,111,400.0,,,52,47,0.0,0.0,,550.0,207.83838380947813,,41,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,100274,2,1,0,0,2,,360.0,,43,2.0,0.0,4.0,5.0,2.8,4,4,125.7098420557359,400.0,59436.52139406359,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009253569810277171,21227.329069308427,5,3,5,5_1,5_2,5_0_0 +273,2,39.0,0.0,5,111,350.0,0.0,0.0,0,43,0.0,0.0,596.8201901802214,373.0,0.0,0.0,30,0,0,0,0,0,0,0,0,1,20.0,2,,3,100275,2,2,0,1,1,324.0,0.0,312.0,12,1.0,0.0,1.0,1.0,1.0,1,1,947.182303863397,350.0,21882.71736364916,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01704541505524424,21882.71736364916,6,3,6,6_0,6_4,6_0_0 +274,2,42.0,0.0,1,112,1000.0,0.0,0.0,35,45,1476.555991451242,0.0,1705.2005433720612,2400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,50.0,1,,1,100276,2,1,1,0,1,,502.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1156.88702397198,1000.0,30955.15608753046,1,1,1,2,80.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07753151020184267,13458.763516317593,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +275,2,29.0,0.0,2,111,720.0,,,0,42,0.0,0.0,,764.0,60.965925917446924,,20,0,0,0,0,0,0,0,0,0,,8,,2,100277,1,1,0,0,2,,200.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,124.06562602292455,720.0,37377.81060427984,0,1,1,2,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020439934486492378,23361.1316276749,6,3,6,6_0,6_3,6_0_1 +276,2,26.0,0.0,2,111,250.0,900.0,0.0,52,35,0.0,0.0,426.3001358430153,1150.0,0.0,1708.65364314581,42,2,2,2,2,2,2,2,1,2,15.0,2,,2,100278,2,3,0,0,1,,0.0,527.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1949.18703584709,250.0,23478.346889898356,1,1,2,3,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.048981302022366474,15652.231259932238,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +277,2,50.0,0.0,9,111,200.0,,,0,52,0.0,0.0,,200.0,0.0,,42,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,100279,2,1,0,0,2,,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,217.29446764359594,200.0,32188.19731475153,0,1,1,2,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006213457623746515,32188.19731475153,8,4,8,8_1,8_2,8_0_0 +278,2,61.0,0.0,1,111,1140.0,718.2,0.0,54,35,0.0,0.0,1943.9286194441497,1858.0,0.0,1363.5056072303566,50,0,0,0,0,0,0,0,0,0,,2,,1,100280,2,1,0,0,2,,485.0,600.0,43,2.0,1.0,3.0,2.0,1.5,2,2,2028.40243222766,1140.0,18601.2641323928,1,1,3,4,128.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.09988568447691805,12400.842754928533,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +279,2,67.0,0.0,5,111,400.0,1200.0,0.0,0,78,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,3,100281,2,1,2,0,1,,75.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1681.96131339598,400.0,24075.76573574647,0,5,0,1,88.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0664568686022892,24075.76573574647,6,3,6,6_1,6_2,6_0_0 +280,1,43.0,90.0,5,111,0.0,,,0,42,0.0,0.0,,270.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,100282,2,2,0,0,2,,0.0,419.0,12,1.0,0.0,1.0,1.0,1.0,1,1,147.10956455067156,0.0,14899.154614920704,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018121833552194263,14899.154614920704,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +281,1,26.0,250.0,7,112,192.0,,,0,68,0.0,0.0,,868.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,100283,2,2,0,0,2,,180.0,400.0,32,2.0,0.0,4.0,4.0,2.3,3,3,74.32008443887162,192.0,20358.007832898173,0,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04263678485265772,8851.307753433988,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +282,2,58.0,0.0,1,111,1250.0,0.0,0.0,34,38,2109.365702073203,79.45963662061344,2131.5006792150766,3410.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,100284,2,2,3,0,1,,836.0,,43,2.0,2.0,6.0,4.0,2.3,3,2,1238.37244856457,1250.0,88582.25492388815,1,1,0,1,150.0,7,5,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038495294604206545,38514.02387995137,9,5,9,9_1,9_2,9_1_0 +283,2,81.0,0.0,1,211,613.0,0.0,0.0,78,75,2109.365702073203,0.0,1045.2879330870735,2741.0,177.35542085075468,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100285,2,1,1,0,1,,276.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1503.22571104996,613.0,37055.53710143212,5,5,0,1,76.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07397005183050136,24703.691400954747,7,4,7,7_1,7_1,7_1_0 +284,2,48.0,0.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1408.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,100286,2,3,0,0,1,,352.0,280.0,11,0.0,3.0,2.0,1.0,1.0,1,1,372.042300268839,0.0,12243.510614468005,0,7,2,3,40.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11499969611135746,12243.510614468005,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +285,2,49.0,0.0,7,111,480.0,0.0,0.0,0,22,0.0,0.0,818.4962608185893,550.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,100287,2,1,3,0,1,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1286.74440170761,480.0,33520.32872670174,0,7,0,1,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0164079536475989,33520.32872670174,8,4,8,8_1,8_3,8_0_0 +286,2,83.0,0.0,5,111,1200.0,,,0,86,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,100288,2,2,0,0,2,,690.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,70.29429665352166,1200.0,11184.421052631573,0,6,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10729209803109595,11184.421052631573,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +287,1,41.0,216.0,2,111,250.0,250.0,0.0,0,85,0.0,0.0,426.3001358430153,500.0,0.0,474.62601198494724,41,0,0,0,0,0,0,0,0,0,,2,,2,100289,2,1,0,1,1,792.0,200.0,204.0,11,0.0,0.0,2.0,1.0,1.0,1,1,337.407169958156,250.0,9891.123434703279,0,7,2,3,43.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050550375121771934,9891.123434703279,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +288,2,63.0,0.0,1,111,335.0,380.0,0.0,86,21,1582.0242765549024,0.0,571.2421820296405,2215.0,0.0,721.4315382171199,12,2,2,2,2,1,2,2,2,0,,2,,1,100290,2,3,0,1,1,,320.0,,42,1.0,1.0,3.0,3.0,2.0,3,3,602.800301031739,335.0,30828.84009104805,6,1,1,2,51.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.07184830806019142,15414.420045524024,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +289,0,30.0,0.0,6,111,600.0,0.0,0.0,0,43,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,6.0,2,,4,100291,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2419.96732190518,600.0,27108.14381805461,0,1,5,0,25.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022133570045485263,27108.14381805461,7,4,7,7_0,7_2,7_0_0 +290,2,73.0,0.0,2,111,336.0,0.0,0.0,0,78,0.0,0.0,572.9473825730125,640.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,100292,2,2,0,1,1,840.0,0.0,381.0,11,0.0,2.0,3.0,1.0,1.0,1,1,336.219011884059,336.0,19492.17575265258,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032833687122532026,19492.17575265258,5,3,5,5_0,5_4,5_0_1 +291,2,37.0,0.0,9,120,410.0,770.0,0.0,62,62,0.0,291.3520009422493,699.1322227825451,1400.0,0.0,1461.8481169136376,43,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,100293,2,2,1,0,1,,424.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1389.90934066701,410.0,54362.21341288743,1,1,1,2,125.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025753182442496126,30201.22967382635,8,4,8,8_1,8_0,8_0_0 +292,2,40.0,0.0,2,112,600.0,0.0,0.0,56,64,0.0,529.7309108040896,1023.1203260232367,1035.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100294,2,1,2,0,1,,300.0,700.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1620.80110198636,600.0,31406.92862722469,1,1,2,3,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032954511798483334,20937.952418149795,5,3,5,5_1,5_0,5_0_1 +293,2,39.0,0.0,9,111,720.0,,,42,42,0.0,0.0,,998.0,385.19380466023284,,20,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,100295,1,1,0,0,2,,300.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,93.61305767353011,720.0,72177.65962326247,1,1,1,2,102.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013826993078040313,30074.024843026033,8,4,8,8_1,8_3,8_0_0 +294,2,52.0,0.0,1,111,526.0,69.0,0.0,38,34,0.0,0.0,896.9354858137042,595.0,0.0,130.99677930784543,10,0,0,0,0,0,0,0,0,3,35.0,2,,1,100296,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,688.980072340517,526.0,95147.1283564785,1,1,1,2,92.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006253473018867909,52859.51575359916,10,5,10,10_0,10_4,10_1_0 +295,2,40.0,0.0,9,111,1080.0,,,42,53,0.0,0.0,,1168.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,100297,2,1,0,0,2,,330.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,154.54924820679963,1080.0,91305.51408921875,1,1,0,1,158.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012792217552805128,43478.816232961304,10,5,10,10_1,10_2,10_0_0 +296,2,32.0,0.0,7,400,1170.0,0.0,0.0,62,54,0.0,0.0,1995.0846357453115,1170.0,0.0,0.0,31,2,1,2,2,2,2,2,1,2,5.0,1,,5,100298,1,1,2,0,1,,0.0,450.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1133.32595138939,1170.0,44620.496262438675,1,1,2,3,62.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02622113373904585,29746.99750829245,8,4,8,8_1,8_0,8_0_0 +297,2,52.0,0.0,2,111,800.0,80.0,0.0,77,62,0.0,0.0,1364.160434697649,880.0,0.0,151.8803238351831,70,0,0,0,0,0,0,0,0,2,45.0,2,,2,100299,2,1,0,1,2,,430.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,279.762258786735,800.0,31039.407348625537,6,1,1,2,70.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028351056774895782,20692.938232417026,5,3,5,5_0,5_2,5_0_1 +298,2,30.0,0.0,1,111,273.0,593.0,0.0,67,46,0.0,0.0,465.5197483405727,866.0,0.0,1125.8129004282948,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,100300,1,2,0,0,1,,200.0,400.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2455.00244811959,273.0,50533.201576553256,1,1,2,3,50.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01713724784858699,33688.8010510355,9,5,9,9_0,9_2,9_1_0 +299,2,85.0,0.0,7,111,1300.0,0.0,0.0,75,75,0.0,0.0,2216.7607063836795,1380.0,110.84713803172167,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,100301,2,1,2,0,1,,295.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2185.30375437113,1300.0,52656.43714615289,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026207621988735778,35104.29143076859,9,5,9,9_1,9_3,9_0_0 +300,2,51.0,0.0,2,111,0.0,0.0,320.0,0,38,0.0,0.0,201.701852932718,320.0,0.0,382.95428722069784,31,2,1,2,1,2,2,2,2,3,40.0,2,,2,100302,1,3,0,1,2,167.0,0.0,368.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1103.38783866365,0.0,30244.47700924957,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010580444155213378,30244.47700924957,8,4,8,8_0,8_4,8_0_1 +301,1,36.0,227.0,9,221,0.0,0.0,0.0,85,68,0.0,0.0,0.0,690.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,2007.0,6,100303,2,1,0,0,1,,130.0,223.0,42,1.0,0.0,2.0,2.0,1.5,2,2,2847.36049070671,0.0,10877.874945464944,7,1,2,3,47.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06343150693120125,7251.916630309963,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +302,2,45.0,0.0,5,111,261.0,132.0,0.0,0,63,0.0,0.0,445.057341820108,393.0,0.0,250.60253432805214,50,2,2,2,2,1,2,2,2,0,,2,,3,100304,2,2,0,1,1,,104.0,,22,1.0,2.0,3.0,2.0,1.5,2,2,283.201605044435,261.0,37863.23362924262,0,1,1,2,67.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.010379462141249272,25242.155752828414,7,4,7,7_0,7_3,7_0_0 +303,2,54.0,0.0,9,211,780.0,,,56,52,0.0,0.0,,912.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100305,2,1,0,0,1,,1200.0,,43,4.0,1.0,5.0,4.0,2.5,4,4,93.86764860077558,780.0,45592.9009179548,4,1,1,2,130.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0200031141172868,18237.16036718192,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +304,2,90.0,0.0,2,111,450.0,,,77,77,0.0,0.0,,670.0,304.8296295872346,,70,0,0,0,0,0,0,0,0,0,,2,,2,100306,2,1,0,0,2,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,111.21503898691138,450.0,62544.5114718132,5,5,0,1,101.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01071237082572701,41696.3409812088,9,5,9,9_0,9_2,9_0_1 +305,2,73.0,0.0,2,111,185.0,720.0,0.0,0,77,0.0,0.0,315.46210052383134,905.0,0.0,1366.922914516648,71,0,0,0,0,0,0,0,0,0,,2,,2,100307,2,2,0,1,1,564.0,0.0,247.0,11,0.0,3.0,2.0,1.0,1.0,1,1,369.516627845329,185.0,16226.042462942045,0,5,2,3,45.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05577453664791586,16226.042462942045,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +306,2,37.0,0.0,8,111,1000.0,0.0,0.0,52,63,2109.365702073203,0.0,1705.2005433720612,3090.0,124.70303028568689,0.0,50,2,2,2,1,1,2,2,2,2,20.0,1,2002.0,6,100308,2,1,1,0,1,,210.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1004.36842062479,1000.0,42930.451231656174,1,1,1,2,159.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0719768814757178,23850.25068425343,6,3,6,6_1,6_2,6_0_0 +307,2,49.0,0.0,7,120,550.0,,,68,85,0.0,0.0,,770.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,5,100309,2,2,0,0,2,,380.0,,42,4.0,1.0,5.0,5.0,3.0,5,5,129.0534497934389,550.0,26400.907049157307,4,6,0,1,95.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029165664595019195,8800.302349719102,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +308,2,57.0,0.0,6,111,821.0,760.0,0.0,47,42,0.0,0.0,1399.9696461084623,1581.0,0.0,1442.8630764342397,20,0,0,0,0,0,0,0,0,2,50.0,1,,4,100310,2,1,2,0,1,,600.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2546.59597421194,821.0,71508.89992814323,1,1,0,1,94.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022109136087797337,47672.59995209549,10,5,10,10_1,10_3,10_0_0 +309,1,57.0,371.0,2,111,350.0,100.0,0.0,0,56,0.0,0.0,596.8201901802214,450.0,0.0,189.8504047939789,70,2,2,2,2,2,2,2,1,0,,2,,2,100311,1,2,0,1,1,840.0,0.0,314.0,32,1.0,1.0,5.0,5.0,2.5999999999999996,3,1,293.984718130124,350.0,22494.39227901595,0,4,2,3,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.02000498588351665,8651.689338083059,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +310,2,73.0,0.0,9,111,900.0,,,56,74,0.0,0.0,,1020.0,166.2707070475825,,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100312,2,1,0,0,2,,800.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,44.15960773739054,900.0,9848.723085649528,5,5,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10356672546578463,6565.815390433018,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +311,1,88.0,203.0,5,111,480.0,120.0,0.0,86,78,0.0,0.0,818.4962608185893,600.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,3,100313,2,1,0,1,1,438.0,0.0,237.0,41,0.0,4.0,2.0,2.0,1.5,2,2,533.530969170589,480.0,17287.873106520565,6,5,2,3,44.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03470640930223479,11525.248737680377,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +312,1,47.0,245.0,2,111,400.0,300.0,0.0,0,85,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,100314,2,1,0,1,1,,0.0,345.0,21,0.0,0.0,3.0,2.0,1.5,2,2,474.749804880276,400.0,18684.153598275105,0,7,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03746490288244168,12456.10239885007,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +313,2,26.0,0.0,1,111,0.0,0.0,0.0,47,37,0.0,0.0,0.0,930.0,0.0,0.0,10,2,2,2,1,2,2,2,2,3,60.0,2,,1,100315,1,2,0,1,2,,0.0,800.0,43,2.0,0.0,2.0,2.0,1.5,2,2,993.46101844253,0.0,18634.530059833323,1,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.04990734926042553,12423.020039888883,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +314,2,64.0,0.0,6,111,238.0,0.0,0.0,0,45,0.0,0.0,405.83772932255056,238.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,4,100316,2,1,0,1,1,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,825.155789905325,238.0,25407.711363693335,0,1,0,1,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009367234875790232,25407.711363693335,7,4,7,7_0,7_4,7_0_0 +315,2,56.0,0.0,9,111,0.0,,,21,55,0.0,0.0,,216.0,0.0,,41,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,100317,1,1,0,0,2,,408.0,950.0,43,2.0,1.0,4.0,2.0,1.5,2,2,169.30048641544744,0.0,24885.463661769474,1,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00867976594431841,16590.309107846315,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +316,2,52.0,0.0,6,112,250.0,,,75,42,0.0,0.0,,272.0,30.482962958723462,,31,0,0,0,0,0,0,0,0,0,,1,,4,100318,2,1,0,0,2,,220.0,,42,1.0,3.0,5.0,3.0,2.0,3,2,100.02195250951927,250.0,73315.09931419995,5,1,1,2,120.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037100133880241227,36657.549657099975,9,5,9,9_1,9_1,9_0_0 +317,2,81.0,0.0,2,112,350.0,0.0,0.0,0,78,1900.538497567956,0.0,596.8201901802214,2352.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,100319,2,1,4,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,953.066880189427,350.0,15410.779706013935,0,5,0,1,100.0,9,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15262044133186528,15410.779706013935,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +318,2,48.0,0.0,1,221,1800.0,0.0,0.0,56,48,0.0,26.486545540204478,3069.36097806971,1924.0,144.10127944123818,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,100320,2,1,2,0,1,,363.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2527.30057203431,1800.0,35961.578206486396,1,1,1,2,104.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.053501545147786864,17124.561050707805,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +319,1,76.0,255.0,2,111,240.0,205.0,0.0,0,77,0.0,0.0,409.2481304092947,445.0,0.0,389.1933298276567,71,0,0,0,0,0,0,0,0,0,,8,,2,100321,2,1,0,1,1,418.0,132.0,260.0,11,0.0,3.0,2.0,1.0,1.0,1,1,421.274999679382,240.0,1987.1861923164176,0,5,2,3,45.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2239347282708691,1987.1861923164176,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +320,1,44.0,315.0,8,111,500.0,,,85,85,0.0,0.0,,500.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,100322,2,1,0,0,2,,0.0,460.0,41,0.0,0.0,2.0,3.0,1.8,2,2,172.12923541637852,500.0,13381.989817487942,6,7,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0373636512072806,7434.438787493301,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +321,2,61.0,0.0,6,111,352.0,450.0,0.0,0,43,0.0,105.94618216081791,600.2305912669656,882.0,0.0,854.326821572905,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,100323,2,1,2,0,1,,247.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1452.95508669889,352.0,31860.1111799885,0,5,0,1,117.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027683519213642566,31860.1111799885,8,4,8,8_1,8_3,8_0_0 +322,1,32.0,176.0,6,112,1224.0,0.0,0.0,0,63,0.0,0.0,2087.165465087403,1282.0,80.36417507299822,0.0,43,2,2,2,2,2,1,1,2,0,,1,,4,100324,1,3,3,0,1,,114.0,417.0,32,1.0,0.0,3.0,2.0,1.3,1,1,777.372218536133,1224.0,13012.817445691635,0,4,2,3,64.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,1,0.09851824982179033,10009.85957360895,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +323,2,39.0,0.0,2,111,360.0,120.0,0.0,52,53,0.0,0.0,613.872195613942,664.0,0.0,227.8204857527747,42,0,0,0,0,0,0,0,0,2,25.0,2,,2,100325,2,1,0,1,1,516.0,0.0,364.0,43,2.0,0.0,4.0,4.0,2.1,2,2,208.506092590926,360.0,47609.386424117125,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013946829603828764,22671.136392436725,6,3,6,6_0,6_4,6_0_1 +324,2,48.0,0.0,1,120,0.0,0.0,0.0,43,35,0.0,0.0,0.0,771.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100326,1,2,2,0,2,,494.0,300.0,43,2.0,0.0,1.0,2.0,1.5,2,2,485.514732970311,0.0,24257.24984799629,1,1,2,3,60.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031784312105920226,16171.499898664193,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +325,2,35.0,0.0,9,112,450.0,1600.0,0.0,54,37,0.0,0.0,767.3402445174275,2050.0,0.0,3037.6064767036623,31,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,100327,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,739.420636630305,450.0,62389.676068101035,1,1,1,2,110.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03285800038074146,29709.369556238587,8,4,8,8_1,8_1,8_0_0 +326,2,36.0,0.0,7,111,0.0,0.0,0.0,31,53,0.0,0.0,0.0,1438.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,100328,2,1,0,0,1,,0.0,870.0,43,2.0,1.0,4.0,2.0,1.5,2,2,1680.33333950282,0.0,57709.80341288309,1,1,2,3,80.0,6,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02491777678935884,38473.2022752554,9,5,9,9_0,9_2,9_0_0 +327,2,54.0,0.0,1,111,480.0,,,0,56,0.0,0.0,,505.0,34.63973063491302,,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,100329,2,3,0,0,2,,95.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,49.26507028748989,480.0,24743.59685284735,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020409320560922716,24743.59685284735,7,4,7,7_1,7_2,7_1_0 +328,2,28.0,0.0,1,112,610.0,500.0,0.0,0,65,0.0,0.0,1040.1723314569574,1174.0,88.67771042537734,949.2520239698945,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,100330,1,2,4,0,2,,360.0,574.0,12,1.0,0.0,5.0,1.0,1.0,1,1,758.337657706104,610.0,19276.96829606942,0,1,2,3,65.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06090169273346676,19276.96829606942,5,3,5,5_1,5_1,5_1_0 +329,2,37.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,582.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,10.0,2,,1,100331,2,1,0,0,1,,0.0,860.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1152.10494215997,0.0,43848.869716503585,0,1,3,4,26.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013272862077467648,43848.869716503585,10,5,10,10_0,10_4,10_1_0 +330,2,33.0,0.0,7,112,1690.0,0.0,0.0,63,43,0.0,0.0,2881.7889182987833,1690.0,0.0,0.0,33,2,2,2,1,1,2,1,2,2,20.0,1,,5,100332,1,2,4,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,3305.54916082494,1690.0,42321.48855549247,1,1,1,2,84.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,1,1,0,0,0.03993243285344396,20153.089788329748,5,3,5,5_1,5_1,5_0_0 +331,2,57.0,0.0,2,112,300.0,,,0,11,0.0,0.0,,384.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,100333,2,1,0,0,1,,400.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,122.6183667056942,300.0,10829.116850999824,0,1,0,1,300.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035459955348486824,10829.116850999824,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +332,2,66.0,0.0,7,211,917.0,0.0,0.0,0,77,0.0,0.0,1563.66889827218,917.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,100334,1,2,3,0,1,,106.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1072.84872480914,917.0,17325.719411528145,0,5,1,2,58.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05292709515945691,17325.719411528145,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +333,0,67.0,0.0,2,211,0.0,,,0,75,0.0,0.0,,463.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,100335,2,1,0,0,2,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,106.85146198490554,0.0,8452.17689760351,0,5,5,0,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05477878724134097,8452.17689760351,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +334,2,61.0,0.0,6,211,990.0,,,68,78,0.0,0.0,,1266.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,100336,2,1,0,0,2,,1134.0,,42,1.0,3.0,4.0,3.0,2.0,3,2,91.5903101979869,990.0,3514.325881430815,4,7,0,1,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3602397850152028,1757.1629407154076,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +335,2,56.0,0.0,2,111,0.0,0.0,1600.0,68,62,0.0,0.0,1008.5092646635901,1600.0,0.0,1914.7714361034893,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,100337,2,2,1,0,1,,300.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,399.399216231607,0.0,29379.14021984389,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05446040925728976,19586.093479895924,5,3,5,5_1,5_3,5_0_1 +336,1,52.0,347.0,2,111,200.0,180.0,0.0,86,42,0.0,0.0,341.04010867441224,380.0,0.0,341.730728629162,20,0,0,0,0,0,0,0,0,3,45.0,2,,2,100338,2,2,0,1,1,600.0,0.0,337.0,42,4.0,0.0,3.0,5.0,3.0,5,5,629.415179832279,200.0,19763.36828261771,7,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01922749171932488,6587.789427539236,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +337,2,85.0,0.0,6,111,492.0,,,0,72,0.0,0.0,,642.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,4,100339,2,1,0,0,2,,24.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,110.97536461961039,492.0,5110.0,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12563600782778864,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +338,2,65.0,0.0,1,400,350.0,0.0,0.0,0,90,1054.6828510366015,331.081819252556,596.8201901802214,2910.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100340,2,2,4,1,1,,113.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1189.92494702781,350.0,10918.250779115493,0,5,0,1,70.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2665262100011724,10918.250779115493,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +339,2,78.0,0.0,8,111,750.0,1350.0,0.0,75,75,0.0,0.0,1278.9004075290459,2100.0,0.0,2562.980464718715,41,2,2,2,2,1,2,2,2,0,,1,2001.0,6,100341,2,1,2,0,1,,357.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,238.623548930175,750.0,48892.24706011463,5,5,0,1,137.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.04295159511523332,32594.83137340975,8,4,8,8_1,8_2,8_0_0 +340,1,30.0,221.0,1,400,720.0,1265.0,0.0,0,52,0.0,0.0,1227.744391227884,2075.0,124.70303028568689,2401.607620643833,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,100342,2,2,0,1,1,,0.0,380.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2000.67784340731,720.0,11227.183109662637,0,1,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.18481928901775532,8636.29469974049,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +341,2,55.0,0.0,7,112,798.0,0.0,0.0,75,46,0.0,0.0,1360.750033610905,923.0,173.19865317456512,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,100343,2,1,2,0,1,,1085.0,,42,2.0,0.0,5.0,4.0,2.5,4,4,1070.58256922588,798.0,95070.74818829607,5,1,0,1,138.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009708559337009912,38028.29927531843,9,5,9,9_1,9_0,9_0_0 +342,2,68.0,0.0,5,211,240.0,,,0,78,0.0,0.0,,336.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,3,100344,2,1,0,0,2,,240.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,118.42655150586528,240.0,9809.799819392025,0,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0342514634534942,9809.799819392025,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +344,2,35.0,0.0,2,111,480.0,0.0,0.0,68,90,0.0,0.0,818.4962608185893,480.0,0.0,0.0,42,1,2,2,1,2,2,2,2,2,60.0,2,,2,100346,1,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,280.503477268006,480.0,55322.187995862165,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008676446420302497,30734.54888659009,8,4,8,8_0,8_4,8_0_1 +345,0,36.0,0.0,7,111,320.0,,,0,52,0.0,0.0,,376.0,0.0,,50,2,2,2,2,2,1,2,2,2,90.0,1,,5,100347,1,3,0,0,2,,600.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,138.08978769392073,320.0,16792.00327218399,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02239161069143223,12916.925593987684,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +346,2,36.0,0.0,9,111,0.0,0.0,0.0,33,46,0.0,0.0,0.0,4666.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,100348,2,1,1,0,1,,321.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,880.864556658955,0.0,71284.03834643967,1,1,1,2,115.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0654564487118882,47522.69223095978,10,5,10,10_1,10_4,10_0_0 +347,2,53.0,0.0,1,112,1100.0,0.0,0.0,56,62,0.0,609.190547424703,1875.7205977092674,1620.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,100349,2,1,2,0,1,,210.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,809.145389662175,1100.0,21244.937103377488,1,1,0,1,160.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0762534618067876,14163.291402251658,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +348,1,34.0,467.0,9,111,370.0,,,0,55,0.0,0.0,,506.0,188.44013465392686,,41,0,0,0,0,0,0,0,0,0,,2,2008.0,6,100350,1,1,0,0,2,,667.0,495.0,32,1.0,2.0,4.0,4.0,1.9,1,1,165.0457122368248,370.0,16190.088349599579,0,4,2,3,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.031253689854787894,8521.099131368199,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +349,1,50.0,267.0,9,111,0.0,,,0,56,0.0,0.0,,185.0,0.0,,71,0,0,0,0,0,0,0,0,3,15.0,2,2005.0,6,100351,2,3,0,0,2,,266.0,377.0,32,1.0,4.0,3.0,2.0,1.3,1,1,127.03688008347902,0.0,17336.8623853211,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010670904335990874,13336.047988708537,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +350,2,29.0,0.0,8,211,0.0,,,54,47,0.0,0.0,,375.0,0.0,,43,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,100352,2,3,0,0,2,,315.0,680.0,43,2.0,0.0,4.0,3.0,1.8,2,2,112.58096721919232,0.0,55789.204484295245,1,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006721730547449608,30994.002491275136,8,4,8,8_1,8_2,8_0_0 +351,1,72.0,185.0,1,111,550.0,180.0,0.0,0,77,0.0,0.0,937.8602988546337,730.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,2,,1,100353,2,1,0,1,1,602.0,0.0,685.0,11,0.0,6.0,3.0,1.0,1.0,1,1,791.014796572748,550.0,13941.0,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.052363532027831575,13941.0,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +352,2,43.0,0.0,2,211,0.0,0.0,0.0,0,68,0.0,0.0,0.0,547.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,100354,2,1,0,1,1,480.0,0.0,455.0,12,1.0,2.0,5.0,1.0,1.0,1,1,1903.45561226025,0.0,22409.833350177927,0,1,2,3,95.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024408927610149185,22409.833350177927,6,3,6,6_0,6_1,6_0_1 +353,2,60.0,0.0,7,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,819.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,1.0,2,,5,100355,2,1,0,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1688.0698064825,0.0,38534.971596377305,6,1,0,1,60.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021253421660157513,25689.981064251537,7,4,7,7_0,7_2,7_0_0 +354,2,63.0,0.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,341.04010867441224,200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,100356,1,1,2,0,2,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,396.009856913205,200.0,7384.8719942606485,0,5,0,1,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027082392241251488,7384.8719942606485,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +355,2,55.0,0.0,1,111,0.0,0.0,0.0,43,52,0.0,0.0,0.0,1217.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,100357,2,1,4,0,1,,191.0,,43,2.0,3.0,3.0,2.0,1.5,2,2,385.58061863822,0.0,40500.84859434723,1,1,1,2,60.0,8,6,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030048753106122785,27000.565729564823,7,4,7,7_1,7_2,7_1_0 +356,1,72.0,100.0,2,111,550.0,600.0,0.0,0,78,0.0,0.0,937.8602988546337,1811.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,100358,2,1,0,1,1,,0.0,347.0,21,1.0,0.0,4.0,2.0,1.5,2,2,1822.21466396641,550.0,23123.233843514667,0,5,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0783194951128312,15415.489229009778,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +357,1,61.0,171.0,2,111,539.0,330.0,0.0,0,77,0.0,0.0,919.1030928775409,869.0,0.0,626.5063358201304,71,2,1,2,2,1,2,2,2,0,,2,,2,100359,1,1,0,1,1,436.0,0.0,300.0,31,0.0,3.0,3.0,3.0,1.8,2,2,197.841766420506,539.0,12352.559735197534,0,5,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07034979134922625,6862.533186220852,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +358,1,42.0,460.0,6,120,1223.0,0.0,0.0,85,65,2003.897416969543,0.0,2085.460264544031,3183.0,83.13535352379125,0.0,71,1,2,2,1,2,2,2,2,0,,1,,4,100360,2,1,1,0,1,,450.0,760.0,42,2.0,0.0,6.0,6.0,3.0999999999999996,5,3,1587.99000920084,1223.0,18432.559661139425,6,4,2,3,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.17268355879572073,5945.986987464331,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +359,2,74.0,0.0,2,112,1900.0,0.0,0.0,74,74,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,100361,2,1,2,0,1,,580.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,3062.77092421619,1900.0,67271.69700439255,5,5,0,1,200.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028243675789477084,44847.79800292837,10,5,10,10_1,10_1,10_0_1 +360,2,55.0,0.0,6,111,810.0,650.0,0.0,0,72,0.0,79.45963662061344,1381.2124401313695,1520.0,0.0,1234.027631160863,41,0,0,0,0,0,0,0,0,0,,1,,4,100362,1,1,3,0,1,,260.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1185.76703439276,810.0,19481.025544340162,0,7,0,1,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07802463974703872,19481.025544340162,5,3,5,5_1,5_2,5_0_0 +361,2,49.0,0.0,1,300,469.0,1819.0,0.0,56,11,0.0,0.0,799.7390548414967,2288.0,0.0,3453.378863202476,50,0,0,0,0,0,0,0,0,1,2.0,1,,1,100363,2,1,2,0,1,,546.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,225.590491037125,469.0,15036.742384014222,1,1,0,1,110.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1521606170783644,6537.714080006184,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +362,2,39.0,0.0,7,211,500.0,,,55,52,0.0,0.0,,764.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,100364,1,1,0,0,2,,300.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,98.64110138218084,500.0,50532.39102306873,1,1,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015119015438062756,24063.043344318445,6,3,6,6_1,6_2,6_0_0 +363,2,67.0,0.0,6,211,0.0,0.0,0.0,78,72,0.0,0.0,0.0,1872.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,100365,2,2,2,0,1,,464.0,750.0,41,0.0,7.0,4.0,2.0,1.5,2,2,2326.78702327904,0.0,29160.58654615564,6,5,2,3,85.0,2,2,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06419623957278711,19440.391030770425,5,3,5,5_1,5_1,5_0_0 +364,2,73.0,0.0,1,111,230.0,1549.0,0.0,78,78,0.0,0.0,392.1961249755741,1779.0,0.0,2940.7827702587333,50,0,0,0,0,0,0,0,0,0,,1,,1,100366,2,2,1,0,1,,348.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,696.717538816745,230.0,25770.2356912772,5,5,0,1,75.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06903312881232833,17180.157127518134,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +365,1,33.0,481.0,7,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,2227.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,100367,2,1,3,0,1,,270.0,650.0,31,0.0,0.0,5.0,4.0,1.9,1,1,1498.46212233646,0.0,16192.353393523095,0,6,2,3,98.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.1375340536287205,8522.291259748998,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +366,1,46.0,180.0,2,111,240.0,816.0,0.0,0,56,0.0,0.0,409.2481304092947,1056.0,0.0,1549.179303118868,50,0,0,0,0,0,0,0,0,1,30.0,2,,2,100368,2,1,0,1,1,816.0,0.0,322.0,32,1.0,0.0,3.0,2.0,1.5,2,2,346.087115230226,240.0,15249.697969513825,0,1,2,3,72.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06924727310082367,10166.465313009217,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +367,2,61.0,0.0,9,111,960.0,,,0,74,0.0,0.0,,983.0,31.86855218411998,,10,0,0,0,0,0,0,0,0,0,,2,2008.0,6,100369,2,1,0,0,1,,0.0,750.0,31,0.0,2.0,3.0,2.0,1.5,2,2,96.6034587834347,960.0,62942.11858117598,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015617523244506494,41961.412387450655,9,5,9,9_0,9_2,9_0_0 +368,1,43.0,160.0,2,111,200.0,150.0,0.0,85,63,0.0,0.0,341.04010867441224,350.0,0.0,284.77560719096834,42,2,2,2,2,1,2,2,2,2,35.0,2,,2,100370,2,3,0,1,1,1136.0,0.0,298.0,42,1.0,2.0,3.0,3.0,1.8,2,2,280.371776130136,200.0,21370.36216949932,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.016377822576144018,11872.423427499622,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +369,2,55.0,0.0,9,111,1400.0,0.0,0.0,46,33,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,50.0,1,2013.0,6,100371,2,1,1,0,1,,300.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,185.072527033,1400.0,71763.98172148736,1,1,1,2,142.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0195083935759492,47842.65448099157,10,5,10,10_1,10_4,10_0_0 +370,2,65.0,0.0,1,112,980.0,0.0,0.0,77,75,0.0,450.2712741834761,1671.09653250462,1420.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100372,2,1,2,0,1,,548.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1753.2512142257,980.0,46605.227253614205,5,5,0,1,300.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030468685245813924,31070.15150240947,8,4,8,8_1,8_0,8_1_0 +371,2,65.0,0.0,7,111,400.0,1560.0,0.0,0,77,0.0,0.0,682.0802173488245,1960.0,0.0,2961.666314786071,70,0,0,0,0,0,0,0,0,0,,1,,5,100373,2,1,1,0,1,,430.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,348.533510209618,400.0,21151.838380474812,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09266334040303888,21151.838380474812,5,3,5,5_1,5_3,5_0_0 +372,2,50.0,0.0,6,112,450.0,0.0,0.0,85,48,0.0,893.9209119819011,767.3402445174275,1197.0,99.7624242285495,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,100374,1,1,2,0,1,,200.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,2277.83541948814,450.0,29177.380267805933,6,1,1,2,110.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041024930580239906,19451.586845203954,5,3,5,5_1,5_1,5_0_0 +373,2,48.0,0.0,1,120,900.0,0.0,0.0,11,46,0.0,0.0,1534.680489034855,1875.0,1350.9494947616079,0.0,42,0,0,0,0,0,0,0,0,2,15.0,5,,1,100375,2,2,4,0,1,,600.0,,43,3.0,0.0,7.0,5.0,3.0,5,4,148.82099643605,900.0,60172.43935783644,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031160445213956795,20057.47978594548,5,3,5,5_1,5_0,5_1_0 +374,0,65.0,0.0,6,111,240.0,0.0,0.0,0,75,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,100376,2,1,2,0,1,,540.0,,21,1.0,1.0,4.0,3.0,1.8,2,2,2420.52608845895,240.0,34678.897667196594,0,5,5,0,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006920635203091256,19266.054259553664,5,3,5,5_1,5_3,5_0_0 +375,2,66.0,0.0,2,111,1201.0,820.0,0.0,75,64,0.0,740.2989478487152,2047.9458525898456,2580.0,0.0,1556.773319310627,42,0,0,0,0,0,0,0,0,2,5.0,1,,2,100377,2,2,2,0,1,,159.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,788.429887420844,1201.0,48445.40513909065,5,5,0,1,130.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.053255824625526665,32296.936759393768,8,4,8,8_1,8_2,8_0_1 +376,1,24.0,120.0,7,400,400.0,,,22,55,0.0,0.0,,484.0,116.38949493330776,,42,2,2,1,1,1,2,2,2,0,,1,,5,100378,2,2,0,0,1,,450.0,600.0,43,2.0,0.0,5.0,4.0,2.1,2,2,96.45843106286182,400.0,49497.285307050006,1,1,2,3,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.00977831404283222,23570.135860500002,6,3,6,6_1,6_0,6_0_0 +377,2,41.0,0.0,1,111,500.0,1866.0,0.0,43,65,0.0,0.0,852.6002716860306,2366.0,0.0,3542.6085534556464,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,100379,2,1,2,0,1,,470.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,276.569097369664,500.0,64779.296565189594,1,1,1,2,110.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0365240150086998,30847.28407866171,8,4,8,8_1,8_2,8_1_0 +378,2,51.0,0.0,6,111,1800.0,0.0,0.0,54,48,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,100380,2,1,2,0,1,,710.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,569.501623345005,1800.0,60572.70981886283,1,1,0,1,138.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029716352551879155,30286.354909431415,8,4,8,8_1,8_4,8_0_0 +379,2,61.0,0.0,5,112,596.0,800.0,0.0,0,48,0.0,331.081819252556,1016.2995238497484,1646.0,0.0,1518.8032383518312,10,0,0,0,0,0,0,0,0,2,25.0,1,,3,100381,2,2,2,0,1,,415.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,2118.12612613412,596.0,46111.98470023263,0,1,0,1,90.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03569570927602464,46111.98470023263,10,5,10,10_1,10_0,10_0_0 +380,2,67.0,0.0,7,120,1400.0,0.0,0.0,74,74,0.0,0.0,2387.2807607208856,3100.0,2355.5016831740854,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,100382,2,1,1,0,1,,400.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1373.88035601568,1400.0,76959.07922706021,5,5,0,1,247.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040281147216610455,51306.05281804014,10,5,10,10_1,10_1,10_0_0 +381,1,75.0,170.0,7,111,240.0,,,0,77,0.0,0.0,,308.0,94.22006732696343,,71,0,0,0,0,0,0,0,0,0,,2,,5,100383,2,1,0,0,2,,240.0,424.0,11,0.0,3.0,4.0,1.0,1.0,1,1,141.1241243678004,240.0,10175.050462162268,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030270120147841303,10175.050462162268,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +382,2,62.0,0.0,1,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,3230.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,3.0,1,,1,100384,2,1,3,0,1,,430.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,535.213718284643,0.0,123193.29967603003,1,1,0,1,250.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026218958405158033,61596.649838015015,10,5,10,10_1,10_2,10_1_0 +383,2,59.0,0.0,7,111,750.0,,,75,31,0.0,0.0,,957.0,286.8169696570798,,10,0,0,0,0,0,0,0,0,0,,1,,5,100385,2,1,0,0,2,,552.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,129.01645801912485,750.0,168241.85013337148,5,1,1,2,135.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005688239871597649,112161.23342224765,10,5,10,10_1,10_2,10_0_0 +384,2,75.0,0.0,1,111,909.0,0.0,0.0,0,72,0.0,0.0,1550.0272939252036,909.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,1,100386,2,1,0,0,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,854.65191544564,909.0,39743.08903091176,0,5,0,1,130.0,4,4,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022871901056633753,39743.08903091176,9,5,9,9_0,9_2,9_1_0 +385,2,37.0,0.0,7,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,436.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,2005.0,5,100387,2,1,0,1,1,,362.0,400.0,42,1.0,0.0,3.0,4.0,2.1,2,2,352.969974829462,0.0,22563.39376180364,7,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01932333427332554,10744.473219906495,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +386,2,45.0,0.0,2,111,0.0,0.0,677.0,0,52,0.0,0.0,426.72548261078157,677.0,0.0,810.1876639012889,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,100388,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1293.5876335241,0.0,18805.180512241288,0,1,1,2,43.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03600071797020533,18805.180512241288,5,3,5,5_0,5_2,5_0_1 +387,1,50.0,133.0,6,111,1000.0,2000.0,0.0,56,62,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,50,2,2,2,2,1,2,1,2,2,15.0,1,,4,100389,1,3,3,0,2,,650.0,623.0,43,3.0,0.0,4.0,5.0,3.0,5,4,852.499014903791,1000.0,20744.317525802046,1,1,2,3,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.144617917473957,6914.772508600682,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +388,2,35.0,0.0,7,111,810.0,,,0,68,0.0,0.0,,1086.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,100390,1,3,0,0,2,,1200.0,,22,4.0,6.0,5.0,4.0,2.5,4,4,92.36821262959822,810.0,2739.5327908976296,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.39641795988291983,1095.813116359052,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +389,2,65.0,0.0,5,111,1200.0,0.0,0.0,78,78,0.0,331.081819252556,2046.2406520464733,1510.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,100391,2,1,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1012.85906715936,1200.0,27406.969314623922,5,5,0,1,111.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055095475266369126,18271.31287641595,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +390,1,57.0,270.0,2,111,300.0,532.0,0.0,0,71,902.808520487331,0.0,511.56016301161833,1688.0,0.0,1010.0041535039677,71,2,1,2,1,2,2,2,2,0,,2,,2,100392,1,2,0,1,1,856.0,0.0,326.0,11,0.0,4.0,3.0,1.0,1.0,1,1,354.491398815642,300.0,7979.015932633316,0,6,2,3,68.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.21155491031121543,7979.015932633316,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +391,2,43.0,0.0,2,111,1000.0,0.0,0.0,54,64,1054.6828510366015,0.0,1705.2005433720612,2000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,100393,2,2,3,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,507.297832966855,1000.0,58292.1615741807,1,1,1,2,85.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03430993028890969,25344.418075730744,7,4,7,7_1,7_4,7_0_1 +392,2,48.0,0.0,1,111,1010.0,0.0,0.0,0,31,0.0,0.0,1722.2525488057818,1010.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,100394,2,1,2,0,1,,270.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,275.589137311041,1010.0,23531.0437458311,0,1,1,2,78.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04292202296291841,23531.0437458311,6,3,6,6_1,6_3,6_1_0 +394,1,28.0,111.0,2,111,900.0,0.0,0.0,85,64,0.0,0.0,1534.680489034855,1068.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,45.0,2,,2,100396,2,2,0,1,1,,248.0,476.0,42,1.0,0.0,3.0,4.0,2.1,2,2,742.790433056956,900.0,35424.99370739401,7,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030148205778709393,16869.044622568574,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +395,1,38.0,320.0,5,111,500.0,,,0,81,0.0,0.0,,560.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,2,,3,100397,2,1,0,0,2,,450.0,385.0,22,1.0,0.0,3.0,3.0,2.0,3,3,128.01266256899873,500.0,17487.18348623853,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03202345308726759,8743.591743119265,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +396,2,54.0,0.0,2,111,600.0,200.0,0.0,62,56,0.0,0.0,1023.1203260232367,800.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,100398,2,2,0,1,1,,0.0,,43,4.0,0.0,5.0,6.0,3.3,5,4,858.696886125706,600.0,87598.7856708795,1,4,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00913254668855466,26545.086566933183,7,4,7,7_0,7_4,7_0_1 +397,2,64.0,0.0,2,112,892.0,0.0,0.0,75,74,0.0,0.0,1521.0388846878786,892.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,100399,2,3,0,0,1,,128.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1718.46903909639,892.0,55911.85467942957,5,5,0,1,65.0,8,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015953682901672265,37274.56978628638,9,5,9,9_0,9_1,9_0_1 +398,2,41.0,0.0,2,211,288.0,48.0,0.0,56,62,0.0,0.0,491.09775649115363,336.0,0.0,91.12819430110987,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,100400,1,1,0,1,1,660.0,0.0,300.0,43,2.0,0.0,3.0,2.0,1.5,2,2,338.74069902044,288.0,25450.3034035272,4,1,2,3,80.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01320220017311987,16966.8689356848,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +399,2,49.0,0.0,2,111,1000.0,1000.0,0.0,85,48,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,100401,2,1,2,0,1,,300.0,,42,1.0,3.0,6.0,5.0,2.4,2,2,443.206304447713,1000.0,51162.52056593693,6,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03909111548604123,21317.716902473723,6,3,6,6_1,6_2,6_0_1 +400,0,52.0,0.0,2,111,200.0,,,0,52,0.0,0.0,,332.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,100402,1,1,0,0,1,,450.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,103.54895120710252,200.0,5321.290173797726,0,4,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06239088438266025,5321.290173797726,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +401,2,79.0,0.0,6,111,2000.0,0.0,0.0,74,74,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,100403,2,1,1,0,1,,900.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1332.47346120341,2000.0,60611.70016753272,5,5,0,1,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032996929544492806,40407.80011168848,9,5,9,9_1,9_3,9_0_0 +402,1,34.0,104.0,5,111,320.0,1050.0,0.0,52,52,0.0,0.0,545.6641738790596,1370.0,0.0,1993.4292503367785,42,1,2,2,2,1,2,2,2,2,20.0,2,,3,100404,1,1,0,0,1,,0.0,340.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1061.13984963194,320.0,32269.90955669888,4,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04245441089919643,17927.72753149938,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +403,1,42.0,44.0,2,111,540.0,164.0,0.0,85,68,0.0,0.0,920.8082934209131,704.0,0.0,311.3546638621254,71,2,1,2,2,1,1,2,2,2,10.0,2,,2,100405,1,2,0,1,1,,0.0,539.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,3,2,223.724833043382,540.0,40709.72582023599,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.017293164859637934,14037.83648973655,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +404,1,38.0,300.0,2,111,216.0,454.0,0.0,52,64,0.0,0.0,368.3233173683652,670.0,0.0,861.9208377646642,44,2,2,2,2,1,2,2,2,2,45.0,2,,2,100406,1,3,0,1,2,684.0,0.0,268.0,43,2.0,0.0,4.0,4.0,2.1,2,2,376.065103232432,216.0,20401.865642855326,4,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.032840133923469496,9715.174115645394,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +405,2,75.0,0.0,7,112,750.0,,,90,77,0.0,0.0,,876.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,100407,2,1,0,0,2,,100.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,81.24529308041659,750.0,31774.969144763574,5,5,0,1,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027568870201227634,21183.312763175716,5,3,5,5_1,5_1,5_0_0 +406,1,51.0,255.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,859.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100408,2,2,0,1,1,848.0,568.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,368.313284506234,0.0,9078.088012898374,0,4,2,3,65.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09462344920863418,9078.088012898374,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +407,1,58.0,247.0,5,111,0.0,0.0,210.0,0,85,0.0,0.0,132.3668409870962,210.0,0.0,251.313750988583,70,0,0,0,0,0,0,0,0,0,,2,,3,100409,2,1,0,1,1,792.0,0.0,252.0,11,0.0,4.0,2.0,1.0,1.0,1,1,339.53016591034,0.0,7910.670659387704,0,7,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026546421794312727,7910.670659387704,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +408,2,63.0,0.0,6,300,452.0,1884.0,0.0,77,77,0.0,0.0,770.7506456041716,2396.0,83.13535352379125,3576.7816263185623,50,0,0,0,0,0,0,0,0,0,,1,,4,100410,2,1,1,0,1,,235.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1407.38340325077,452.0,33262.63521090598,5,5,0,1,130.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07203277746359711,22175.09014060399,6,3,6,6_1,6_0,6_0_0 +409,2,49.0,0.0,8,111,693.0,1574.0,0.0,0,63,0.0,0.0,1181.7039765568384,2267.0,0.0,2988.245371457228,50,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,100411,1,1,2,0,1,,283.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,361.384725264637,693.0,34356.83763335114,0,1,0,1,126.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06598395417508857,34356.83763335114,9,5,9,9_1,9_3,9_0_0 +410,2,46.0,0.0,2,111,500.0,,,0,34,0.0,0.0,,540.0,55.423569015860835,,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,100412,2,1,0,0,1,,160.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,124.77022948308992,500.0,64886.59653874956,0,1,1,2,158.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00832221180960721,36048.1091881942,9,5,9,9_0,9_2,9_0_1 +411,1,31.0,413.0,9,111,0.0,,,0,35,0.0,0.0,,359.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,2012.0,6,100413,2,1,0,0,1,,875.0,770.0,32,1.0,0.0,3.0,3.0,1.6,1,1,251.34604807656697,0.0,16623.638873891927,0,1,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021595753055236512,10389.774296182453,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +412,2,43.0,0.0,2,111,250.0,150.0,0.0,21,56,0.0,0.0,426.3001358430153,400.0,0.0,284.77560719096834,50,2,2,2,2,1,2,2,2,2,15.0,8,,2,100414,2,3,0,1,1,,0.0,650.0,43,2.0,4.0,2.0,2.0,1.5,2,2,966.992536043346,250.0,16155.248846075454,1,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.024759754789983986,10770.165897383637,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +413,2,69.0,0.0,6,111,300.0,,,78,78,0.0,0.0,,438.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,100415,1,2,0,0,2,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,82.9526975985794,300.0,17928.7665658228,5,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024430012984549058,11952.511043881866,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +414,2,69.0,0.0,2,111,237.0,409.0,0.0,0,78,0.0,0.0,404.1325287791785,646.0,0.0,776.4881556073738,50,0,0,0,0,0,0,0,0,0,,2,,2,100416,2,2,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,312.8850765168,237.0,16452.526997105804,0,5,0,1,75.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03926448503100096,16452.526997105804,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +415,2,43.0,0.0,9,400,360.0,,,81,44,0.0,0.0,,720.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,100417,2,2,0,0,2,,0.0,,43,2.0,3.0,4.0,6.0,3.3,5,4,141.88640587536003,360.0,27304.945255045626,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026368849791667415,8274.22583486231,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +416,2,60.0,0.0,7,111,912.0,0.0,0.0,68,68,0.0,0.0,1555.1428955553197,912.0,0.0,0.0,71,2,1,2,1,2,1,2,2,2,10.0,2,,5,100418,2,1,0,1,1,468.0,0.0,514.0,43,3.0,2.0,4.0,4.0,2.5,4,4,314.286186592595,912.0,80311.92842983447,1,1,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011355722840060804,32124.771371933788,8,4,8,8_0,8_4,8_0_0 +417,2,50.0,0.0,5,120,1667.0,0.0,0.0,0,69,0.0,0.0,2842.569305801226,1717.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100419,2,2,2,0,1,,230.0,,22,1.0,2.0,5.0,2.0,1.5,2,2,2064.72165019351,1667.0,49438.53793704872,0,1,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03472999145294906,32959.02529136581,8,4,8,8_1,8_0,8_0_0 +418,1,48.0,488.0,2,111,350.0,619.0,0.0,0,68,0.0,0.0,596.8201901802214,969.0,0.0,1175.1740056747294,71,2,1,2,2,1,2,2,2,0,,2,,2,100420,2,3,0,1,1,876.0,0.0,458.0,32,3.0,0.0,4.0,5.0,2.8,4,3,275.57354017242,350.0,16155.54125420285,0,4,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.059979420358195396,5769.836162215304,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +419,2,90.0,0.0,1,221,705.0,0.0,0.0,0,71,1349.99404932685,860.8127300566456,1202.1663830773032,2705.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100421,1,1,3,0,2,,136.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1473.79106183995,705.0,23183.16444246365,0,5,0,1,120.0,1,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11667949846593688,23183.16444246365,6,3,6,6_1,6_1,6_1_0 +421,2,64.0,0.0,6,111,2500.0,0.0,0.0,77,75,0.0,66.2163638505112,4263.001358430153,2550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,100423,2,2,2,0,1,,480.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,243.480511989212,2500.0,52210.07148404715,5,5,0,1,110.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0488411512859,34806.7143226981,9,5,9,9_1,9_3,9_0_0 +422,2,78.0,0.0,5,111,1219.0,0.0,0.0,0,75,0.0,0.0,2078.639462370543,1219.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100424,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,854.990861818471,1219.0,23869.57050790795,0,5,0,1,50.0,4,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.051069205438621,23869.57050790795,6,3,6,6_0,6_2,6_0_0 +423,2,39.0,0.0,7,111,0.0,0.0,0.0,84,54,0.0,0.0,0.0,1255.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,30.0,1,,5,100425,2,2,5,0,1,,409.0,550.0,42,1.0,0.0,4.0,3.0,1.8,2,2,324.827680002033,0.0,35583.11283845229,3,1,2,3,87.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035269539393523924,19768.396021362383,5,3,5,5_1,5_2,5_0_0 +424,1,69.0,232.0,2,120,500.0,0.0,0.0,86,78,1476.555991451242,0.0,852.6002716860306,2050.0,207.83838380947813,0.0,71,2,2,2,2,2,2,2,1,0,,1,,2,100426,1,3,4,0,2,,0.0,230.0,41,0.0,4.0,2.0,2.0,1.5,2,2,1794.34729214243,500.0,9054.273945794666,5,5,2,3,60.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.22641241167130136,6036.182630529777,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +425,1,26.0,336.0,2,111,600.0,0.0,0.0,85,63,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,2,2,2,1,2,2,2,2,0,,2,,2,100427,1,3,0,1,2,,0.0,451.0,42,1.0,0.0,3.0,4.0,2.1,2,2,273.13855112533,600.0,16262.408376569301,6,4,2,3,60.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03689490425443217,7744.003988842524,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +426,2,67.0,0.0,2,111,268.0,562.0,0.0,0,74,0.0,0.0,456.9937456237124,830.0,0.0,1066.9592749421615,44,2,2,2,2,1,2,2,2,0,,2,,2,100428,2,3,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1531.45893224837,268.0,23506.53714919356,0,5,0,1,79.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.03530932670907994,23506.53714919356,6,3,6,6_0,6_3,6_0_1 +427,2,58.0,0.0,5,112,1000.0,0.0,0.0,0,37,0.0,198.6490915515336,1705.2005433720612,1180.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,100429,2,2,2,0,1,,200.0,,22,3.0,0.0,5.0,3.0,2.0,3,3,1148.46739287731,1000.0,50459.022841541606,0,1,0,1,122.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02338531215131928,25229.511420770803,7,4,7,7_1,7_0,7_0_0 +428,2,34.0,0.0,9,111,2040.0,770.0,0.0,67,85,0.0,264.8654554020448,3478.6091084790046,3010.0,0.0,1461.8481169136376,50,2,2,2,1,1,2,2,2,0,,1,2004.0,6,100430,2,2,1,0,1,,940.0,590.0,42,1.0,0.0,5.0,10.0,3.8999999999999995,2,2,264.457412153622,2040.0,41383.1423856719,1,6,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,1,0,0.07273493085537538,10611.062150172284,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +429,2,82.0,0.0,1,400,860.0,0.0,0.0,0,71,0.0,66.2163638505112,1466.4724672999725,970.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100431,2,2,4,0,2,,168.0,,21,0.0,4.0,4.0,2.0,1.5,2,2,1362.34965860231,860.0,19177.2778223848,0,5,0,1,65.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05058069288998678,12784.851881589866,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +430,2,39.0,0.0,2,111,0.0,0.0,1200.0,54,65,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,100432,2,3,3,0,1,,350.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1050.05470872681,0.0,42146.02047088606,1,1,1,2,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028472439072366153,20069.53355756479,5,3,5,5_1,5_3,5_0_1 +431,0,83.0,0.0,5,111,314.0,0.0,0.0,0,77,0.0,0.0,535.4329706188272,314.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,100433,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1134.16460826343,314.0,30486.35345429704,0,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010299690334258123,30486.35345429704,8,4,8,8_0,8_4,8_0_0 +432,0,83.0,0.0,1,111,330.0,1000.0,0.0,86,78,0.0,0.0,562.7161793127802,1330.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,1,100434,2,1,1,0,1,,110.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,286.484612754956,330.0,26890.35143760909,6,5,5,0,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049460119667303785,17926.90095840606,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +433,2,66.0,0.0,6,111,201.0,,,0,77,0.0,52.973091080408956,,310.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,4,100435,2,1,0,0,2,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,122.86578400138765,201.0,7409.35730197771,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041838986482303206,7409.35730197771,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +434,1,47.0,166.0,9,111,420.0,0.0,0.0,54,56,0.0,0.0,716.1842282162656,420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,2005.0,6,100436,2,2,0,1,1,,280.0,740.0,43,2.0,2.0,5.0,2.0,1.5,2,2,1824.97207213806,420.0,29499.540867636664,4,1,2,3,120.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01423750972547418,19666.360578424443,5,3,5,5_0,5_2,5_0_0 +435,2,56.0,0.0,5,111,420.0,0.0,0.0,78,48,0.0,0.0,716.1842282162656,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,100437,2,1,0,1,1,,0.0,,42,3.0,1.0,4.0,4.0,2.5,4,4,329.592586172037,420.0,65334.33574307311,5,1,0,1,85.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00642847279647332,26133.734297229246,7,4,7,7_0,7_3,7_0_0 +436,2,45.0,0.0,9,400,639.0,,,56,64,0.0,0.0,,777.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,1,20.0,1,2006.0,6,100438,2,1,0,0,1,,978.0,,43,3.0,0.0,5.0,6.0,3.0999999999999996,4,4,91.0650191112085,639.0,34474.06674989694,1,1,0,1,87.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02253868119583898,11120.666693515144,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +437,2,43.0,0.0,9,111,1800.0,0.0,0.0,38,38,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,2005.0,6,100439,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1039.80215287266,1800.0,84867.73326677304,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021209474210202882,35361.5555278221,9,5,9,9_0,9_4,9_0_0 +438,2,43.0,0.0,6,112,812.0,0.0,0.0,47,46,0.0,296.6493100502902,1384.6228412181138,1036.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,4,100440,2,2,3,0,1,,114.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,755.780628707153,812.0,89860.81961260866,1,1,1,2,210.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011528940025989209,42790.86648219459,9,5,9,9_1,9_0,9_0_0 +439,1,32.0,295.0,5,111,1800.0,0.0,0.0,85,68,0.0,0.0,3069.36097806971,1915.0,159.34276092059991,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,3,100441,2,2,0,0,1,,0.0,260.0,42,1.0,0.0,2.0,4.0,2.1,2,2,1291.52233180193,1800.0,19503.96822946736,6,1,2,3,56.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09818514763096994,9287.60391879398,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +440,2,50.0,0.0,7,111,2200.0,0.0,0.0,65,45,0.0,794.5963662061343,3751.441195418535,3040.0,332.541414095165,0.0,42,0,0,0,0,0,0,0,0,1,5.0,1,,5,100442,2,1,2,0,1,,500.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,582.991262382279,2200.0,70673.48605013939,1,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043014716973820546,35336.74302506969,9,5,9,9_1,9_4,9_0_0 +441,2,75.0,0.0,2,111,418.0,107.0,0.0,77,77,0.0,0.0,712.7738271295216,525.0,0.0,203.13993312955742,71,0,0,0,0,0,0,0,0,0,,2,,2,100443,2,1,0,1,1,784.0,0.0,405.0,41,1.0,2.0,4.0,4.0,2.5,4,4,717.101697384864,418.0,66071.63262677305,5,5,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00794592140572085,26428.653050709217,7,4,7,7_0,7_4,7_0_1 +442,2,77.0,0.0,1,120,408.0,0.0,0.0,72,72,1371.087706347582,291.3520009422493,695.7218216958009,2027.0,137.1733333142556,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100444,2,1,1,0,1,,146.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1820.86857182736,408.0,19912.633404674332,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10179467269879924,13275.088936449554,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +443,2,56.0,0.0,1,111,535.0,1034.0,0.0,75,46,0.0,0.0,912.2822907040527,1569.0,0.0,1963.0531855697418,20,0,0,0,0,0,0,0,0,1,5.0,1,,1,100445,2,1,3,0,1,,300.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,1193.1004224,535.0,55423.47189160915,7,1,0,1,130.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028309305542396725,27711.735945804576,7,4,7,7_1,7_3,7_1_0 +444,2,51.0,0.0,5,112,520.0,0.0,0.0,69,52,0.0,0.0,886.7042825534718,1980.0,2022.9602690789206,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,100446,2,2,1,0,1,,274.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,788.758558870578,520.0,35639.624057929366,1,1,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055556141579430465,23759.749371952912,6,3,6,6_1,6_0,6_0_0 +445,2,26.0,0.0,7,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,812.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,100447,2,2,0,0,1,,0.0,675.0,12,1.0,0.0,3.0,1.0,1.0,1,1,674.964975921434,0.0,41452.836250972156,0,1,2,3,53.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019588526948646535,41452.836250972156,9,5,9,9_0,9_4,9_0_0 +446,1,36.0,70.0,8,112,0.0,0.0,0.0,85,38,0.0,0.0,0.0,564.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,2003.0,6,100448,2,1,1,0,1,,0.0,900.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,1881.23500070092,0.0,42244.233831493126,6,1,2,3,95.0,9,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.013350934526348003,15646.012530182641,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +447,2,31.0,0.0,5,111,900.0,0.0,0.0,0,63,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,100449,2,1,1,0,2,,100.0,605.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2172.29405511477,900.0,14957.47586946476,0,1,2,3,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06017058010685634,14957.47586946476,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +448,0,36.0,0.0,7,111,300.0,,,54,53,0.0,0.0,,588.0,399.049696914198,,20,0,0,0,0,0,0,0,0,2,45.0,1,,5,100450,1,2,0,0,2,,200.0,,43,3.0,1.0,5.0,4.0,2.3,3,3,123.74161125177001,300.0,35231.58987066474,4,1,5,0,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016689567577238197,15318.082552462933,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +449,2,56.0,0.0,6,111,1073.0,0.0,0.0,77,47,0.0,993.245457757668,1829.6801830382217,2003.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,4,100451,2,1,2,0,1,,672.0,,42,2.0,4.0,5.0,3.0,2.0,3,3,518.555256127544,1073.0,46290.06363513678,6,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04327062532875003,23145.03181756839,6,3,6,6_1,6_4,6_0_0 +450,0,79.0,0.0,2,111,360.0,,,0,71,0.0,0.0,,602.0,335.31259254595807,,71,2,2,2,2,1,2,2,2,0,,1,,2,100452,1,2,0,0,2,,180.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,109.05851267549635,360.0,10580.97255263368,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05689458100429132,10580.97255263368,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +451,2,78.0,0.0,2,111,360.0,0.0,0.0,0,75,0.0,0.0,613.872195613942,360.0,0.0,0.0,50,2,1,1,1,1,2,2,2,0,,2,,2,100453,1,3,0,1,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,300.675534565229,360.0,36335.57964863442,0,5,0,1,105.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009907644338722685,36335.57964863442,9,5,9,9_0,9_3,9_0_1 +452,2,59.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,502.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,100454,1,1,0,0,1,,146.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2403.34987679788,0.0,22348.391227109685,0,5,0,1,80.0,6,5,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022462466980220464,22348.391227109685,6,3,6,6_0,6_2,6_1_0 +453,1,24.0,282.0,1,111,450.0,0.0,0.0,84,42,0.0,0.0,767.3402445174275,450.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,,1,100455,2,1,0,1,1,,0.0,550.0,42,1.0,0.0,2.0,2.0,1.5,2,2,383.511702387003,450.0,8203.92263003639,3,1,2,3,38.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.054851809346964056,5469.2817533575935,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +454,1,52.0,250.0,9,111,400.0,700.0,0.0,52,62,0.0,0.0,682.0802173488245,1100.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,100456,2,2,1,0,1,,1400.0,,43,2.0,0.0,4.0,5.0,2.8,4,4,202.373905817475,400.0,33918.77537297329,1,4,1,2,111.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032430416131016555,12113.84834749046,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +455,1,32.0,351.0,1,300,550.0,0.0,0.0,0,69,0.0,794.5963662061343,937.8602988546337,1220.0,96.99124577775646,0.0,50,2,2,2,1,1,1,2,2,0,,1,,1,100457,1,2,5,0,2,,120.0,350.0,32,1.0,0.0,3.0,2.0,1.3,1,1,767.167064987813,550.0,9012.227772099544,0,4,2,3,60.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0.13537163405666802,6932.482901615034,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +456,2,59.0,0.0,6,111,200.0,,,0,77,0.0,0.0,,288.0,121.93185183489385,,70,0,0,0,0,0,0,0,0,0,,1,,4,100458,2,2,0,0,2,,620.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,112.5707969001411,200.0,1094.6479053363264,0,7,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.26309829726620004,1094.6479053363264,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +457,1,78.0,80.0,9,111,336.0,,,0,77,0.0,0.0,,461.0,173.19865317456512,,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,100459,2,1,0,0,2,,116.0,562.0,11,0.0,3.0,3.0,1.0,1.0,1,1,144.46465337012194,336.0,9583.657931034482,0,5,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04810271853580636,9583.657931034482,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +459,2,46.0,0.0,5,112,1500.0,0.0,0.0,52,62,0.0,662.163638505112,2557.8008150580918,2120.0,166.2707070475825,0.0,42,2,2,2,2,1,2,2,2,2,15.0,1,,3,100461,1,3,3,0,1,,230.0,350.0,43,2.0,2.0,4.0,3.0,1.8,2,2,228.899798260609,1500.0,34657.15588347819,1,1,2,3,80.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.061170628286051874,19253.975490821216,5,3,5,5_1,5_0,5_0_0 +460,2,80.0,0.0,2,111,430.0,90.0,0.0,74,74,0.0,0.0,733.2362336499863,520.0,0.0,170.865364314581,12,0,0,0,0,0,0,0,0,0,,2,,2,100462,2,2,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,738.365175004924,430.0,68453.94894495621,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007596347734710408,45635.96596330414,10,5,10,10_0,10_4,10_0_1 +461,2,41.0,0.0,2,221,880.0,0.0,0.0,0,47,0.0,0.0,1500.5764781674138,895.0,20.783838380947813,0.0,20,0,0,0,0,0,0,0,0,2,8.0,1,,2,100463,2,2,1,0,1,,280.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2347.12278887451,880.0,35841.86745386637,0,1,1,2,72.0,1,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02497079710347106,35841.86745386637,9,5,9,9_1,9_1,9_0_1 +462,2,48.0,0.0,7,111,600.0,,,65,48,0.0,0.0,,707.0,148.25804711742774,,50,0,0,0,0,0,0,0,0,0,,1,,5,100464,1,3,0,0,2,,80.0,928.0,43,2.0,0.0,4.0,3.0,1.8,2,2,192.70751847651525,600.0,47608.382974478096,4,1,2,3,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014850325842383863,26449.10165248783,7,4,7,7_1,7_2,7_0_0 +463,2,55.0,0.0,6,111,200.0,,,90,52,0.0,0.0,,305.0,145.4868686666347,,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,100465,2,1,0,0,2,,300.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,102.60140362551735,200.0,31133.35751017449,7,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009796566268200432,20755.57167344966,5,3,5,5_1,5_2,5_0_0 +464,1,27.0,270.0,9,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,344.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,2006.0,6,100466,2,1,0,1,1,408.0,0.0,440.0,12,1.0,1.0,2.0,1.0,1.0,1,1,430.580119240139,0.0,4876.0503749945,0,4,2,3,28.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07054890198922278,4876.0503749945,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +465,2,58.0,0.0,6,111,1410.0,0.0,0.0,46,47,0.0,0.0,2404.3327661546064,1410.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,100467,2,1,1,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,259.92391510032,1410.0,57489.24097728962,1,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024526328336062084,38326.160651526414,9,5,9,9_1,9_4,9_0_0 +466,2,79.0,0.0,2,300,225.0,0.0,0.0,78,75,1518.7433054927062,0.0,383.6701222587138,1770.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100468,2,1,2,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1172.65592330214,225.0,26195.288052026488,5,5,0,1,95.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06756940395099306,17463.525368017657,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +467,1,25.0,350.0,1,221,0.0,0.0,900.0,85,85,0.0,0.0,567.2864613732694,960.0,83.13535352379125,1077.0589328082126,71,0,0,0,0,0,0,0,0,0,,1,,1,100469,2,2,5,0,1,,210.0,500.0,41,0.0,1.0,5.0,3.0,1.8,2,2,3525.38971392824,0.0,5951.793635419923,6,6,2,3,100.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.16129591494686762,3306.5520196777347,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +468,2,45.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,608.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,100470,2,1,0,0,1,,186.0,557.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2151.07215490079,0.0,27231.5442309657,0,1,3,4,35.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022327048177775657,27231.5442309657,7,4,7,7_0,7_3,7_0_0 +469,1,62.0,41.0,2,111,180.0,50.0,0.0,0,72,0.0,0.0,306.936097806971,230.0,0.0,94.92520239698945,70,0,0,0,0,0,0,0,0,0,,2,,2,100471,2,2,0,1,1,504.0,60.0,277.0,11,0.0,2.0,2.0,1.0,1.0,1,1,278.907657618606,180.0,14914.420268126376,0,5,2,3,55.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.015421316810518828,14914.420268126376,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +470,2,60.0,0.0,2,112,1100.0,0.0,0.0,85,78,0.0,582.7040018844986,1875.7205977092674,1924.0,532.0662625522641,0.0,60,2,2,2,2,1,2,2,2,0,,1,,2,100472,2,1,3,0,1,,475.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,583.735230330971,1100.0,41607.430029573174,7,7,0,1,120.0,7,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.04624174092541849,20803.715014786587,5,3,5,5_1,5_1,5_0_1 +471,2,71.0,0.0,2,111,791.0,0.0,0.0,34,22,4092.169462022014,0.0,1348.8136298073005,4769.0,135.78774408885906,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,100473,2,2,2,0,1,,917.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,517.914154611725,791.0,61682.89831741059,1,1,0,1,79.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07731478465002517,41121.93221160706,9,5,9,9_1,9_4,9_0_1 +472,2,51.0,0.0,2,211,0.0,0.0,1561.0,43,63,0.0,0.0,983.9268513374151,1561.0,0.0,1868.0988823484668,50,0,0,0,0,0,0,0,0,2,12.0,1,,2,100474,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1189.48666653279,0.0,58494.799828311094,1,1,0,1,90.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026686132862779478,23397.91993132444,6,3,6,6_1,6_1,6_0_1 +473,2,60.0,0.0,5,111,0.0,1000.0,0.0,0,77,0.0,0.0,0.0,1232.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,3,100475,1,1,2,0,2,,500.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,568.606049377491,0.0,32364.122670450502,0,5,0,1,70.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038066843725223426,21576.081780300334,6,3,6,6_1,6_4,6_0_0 +474,1,40.0,300.0,1,111,1100.0,630.0,0.0,67,55,0.0,0.0,1875.7205977092674,1730.0,0.0,1196.057550202067,42,1,2,2,1,1,2,2,2,2,30.0,1,,1,100476,2,2,2,0,1,,525.0,630.0,43,2.0,0.0,4.0,5.0,2.4,2,2,378.014821015609,1100.0,20119.189133065003,1,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08598756085834598,8382.995472110419,1,1,1_1,1_1_1,1_4_1,1_1_0_1 +475,2,71.0,0.0,2,111,540.0,,,0,77,0.0,0.0,,724.0,254.94841747295985,,70,0,0,0,0,0,0,0,0,0,,1,,2,100477,2,1,0,0,2,,280.0,,21,1.0,4.0,5.0,2.0,1.5,2,2,115.5754559092696,540.0,29086.083748245976,0,6,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024891628803195634,19390.72249883065,5,3,5,5_1,5_2,5_0_1 +476,2,32.0,0.0,2,111,0.0,,,0,47,0.0,0.0,,305.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,100478,2,1,0,0,2,,0.0,1000.0,32,1.0,0.0,6.0,2.0,1.3,1,1,107.97944359494988,0.0,17584.22030686435,0,1,3,4,175.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017345096608061557,13526.323312972576,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +477,2,65.0,0.0,1,111,705.0,0.0,0.0,77,21,0.0,0.0,1202.1663830773032,705.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,100479,2,3,0,0,1,,0.0,331.0,42,2.0,1.0,1.0,3.0,2.0,3,3,1034.14046208606,705.0,21442.832388275616,6,1,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03287811923510048,10721.416194137808,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +478,2,35.0,0.0,1,111,1500.0,1500.0,0.0,37,31,0.0,79.45963662061344,2557.8008150580918,3060.0,0.0,2847.7560719096837,10,2,2,2,2,2,2,2,1,0,,1,,1,100480,2,1,1,0,1,,1000.0,,43,3.0,0.0,6.0,6.0,2.9,3,3,119.81124905218,1500.0,59249.57727661537,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05164593809191144,20430.888716074267,5,3,5,5_1,5_3,5_1_0 +479,0,59.0,0.0,1,111,0.0,,,0,63,0.0,0.0,,469.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,1,100481,2,2,0,0,2,,118.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,143.51989156993287,0.0,7045.063385709991,0,4,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06657143794494545,7045.063385709991,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +480,1,43.0,350.0,7,111,600.0,,,0,56,0.0,0.0,,738.0,191.2113131047199,,42,0,0,0,0,0,0,0,0,0,,2,,5,100482,2,3,0,0,2,,320.0,417.0,32,1.0,0.0,3.0,3.0,1.8,2,2,135.49858334062145,600.0,8767.435440604959,0,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0841751279492829,4870.797467002755,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +481,2,48.0,0.0,7,111,220.0,721.0,0.0,0,33,0.0,0.0,375.14411954185346,941.0,0.0,1368.821418564588,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,100483,2,2,0,0,1,,0.0,615.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1582.07420117042,220.0,33806.67173969601,0,1,2,3,65.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02783474242142186,33806.67173969601,9,5,9,9_0,9_2,9_0_0 +482,2,45.0,0.0,2,111,800.0,1200.0,0.0,37,54,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,44,0,0,0,0,0,0,0,0,2,60.0,1,,2,100484,2,3,2,0,1,,620.0,,43,2.0,1.0,7.0,3.0,1.8,3,2,567.706860704782,800.0,81111.23097451945,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024657497808512938,45061.794985844135,10,5,10,10_1,10_4,10_0_1 +483,1,42.0,485.0,7,112,390.0,,,0,81,0.0,0.0,,478.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,100485,2,3,0,0,2,,460.0,471.0,32,3.0,0.0,4.0,5.0,2.5999999999999996,3,2,146.44724240964234,390.0,25121.691266531267,0,4,2,3,40.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01902738135456757,9662.188948665873,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +484,1,22.0,316.0,2,111,300.0,300.0,0.0,0,67,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,60,2,1,2,2,1,2,2,2,0,,2,,2,100486,1,3,0,1,1,1322.0,280.0,293.0,22,4.0,0.0,4.0,4.0,2.5,4,4,1888.21664801311,300.0,32860.96932330185,0,4,2,3,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.01825874319460618,13144.387729320739,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +485,2,51.0,0.0,6,111,1400.0,0.0,0.0,37,37,0.0,264.8654554020448,2387.2807607208856,1600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,4,100487,2,2,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,646.031840558621,1400.0,166141.88833076507,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009630322708350502,83070.94416538253,10,5,10,10_1,10_4,10_0_0 +486,2,50.0,0.0,9,112,880.0,0.0,0.0,0,43,0.0,0.0,1500.5764781674138,880.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,100488,1,1,1,0,1,,326.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1042.0349961961,880.0,33734.58802081864,0,1,1,2,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02608598627192142,33734.58802081864,9,5,9,9_1,9_1,9_0_0 +487,1,39.0,402.0,6,111,240.0,,,0,81,0.0,0.0,,438.0,274.3466666285112,,71,0,0,0,0,0,0,0,0,0,,1,,4,100489,1,2,0,0,2,,240.0,460.0,32,2.0,0.0,4.0,3.0,2.0,3,2,94.01468204505316,240.0,12724.64984135333,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03442137940617913,6362.324920676665,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +488,0,70.0,0.0,9,111,960.0,0.0,0.0,0,74,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2008.0,6,100490,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1252.03629359153,960.0,55034.0,0,5,5,0,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017443762038012865,55034.0,10,5,10,10_0,10_4,10_0_0 +489,1,70.0,33.0,2,111,700.0,0.0,0.0,0,77,0.0,0.0,1193.6403803604428,1191.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,100491,2,1,0,1,1,492.0,0.0,360.0,21,1.0,0.0,3.0,3.0,2.0,3,3,766.269094432539,700.0,23400.154086572984,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05089710074530647,11700.077043286492,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +490,2,43.0,0.0,6,400,2800.0,0.0,0.0,42,42,0.0,344.3250920226582,4774.561521441771,3240.0,249.40606057137379,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,100492,1,2,3,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,1195.55004226243,2800.0,55630.66299137967,1,1,1,2,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058241261667186295,19868.09392549274,5,3,5,5_1,5_0,5_0_0 +491,2,29.0,0.0,5,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,747.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,8,,3,100493,1,1,0,0,1,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,442.461486893679,0.0,22947.40819729763,0,1,2,3,58.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032552695867761196,22947.40819729763,6,3,6,6_0,6_3,6_0_0 +492,1,48.0,169.0,2,111,600.0,0.0,0.0,0,22,0.0,0.0,1023.1203260232367,680.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,100494,2,1,2,0,1,,30.0,466.0,12,1.0,3.0,5.0,1.0,1.0,1,1,1345.53935858841,600.0,5761.524471562101,0,4,2,3,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.1180243186254547,5761.524471562101,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +493,1,41.0,432.0,7,111,0.0,,,68,52,0.0,0.0,,685.0,665.08282819033,,71,0,0,0,0,0,0,0,0,0,,2,,5,100495,2,2,0,0,2,,1602.0,447.0,43,4.0,0.0,3.0,5.0,2.8,4,3,106.71941511179833,0.0,35326.14302600473,4,4,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019390738453834294,12616.479652144546,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +494,2,64.0,0.0,5,112,1470.0,0.0,0.0,75,74,0.0,0.0,2506.64479875693,1528.0,80.36417507299822,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,100496,2,2,2,0,2,,234.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,716.022484697092,1470.0,51408.70718022414,5,5,0,1,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029722591440459134,34272.47145348276,9,5,9,9_1,9_0,9_0_0 +495,2,26.0,0.0,9,111,0.0,0.0,500.0,0,52,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,43,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,100497,2,1,0,0,1,,0.0,460.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1812.83078811796,0.0,16928.0,0,1,2,3,35.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02953686200378072,16928.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +496,2,21.0,0.0,2,120,1800.0,0.0,0.0,65,34,1582.0242765549024,0.0,3069.36097806971,3390.0,124.70303028568689,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,2,100498,1,1,1,0,1,,300.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2088.40734578297,1800.0,53895.832561902476,1,1,1,2,113.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06289911183961003,29942.12920105693,8,4,8,8_1,8_0,8_0_1 +497,2,59.0,0.0,6,400,800.0,0.0,0.0,11,11,0.0,0.0,1364.160434697649,900.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,100499,2,2,2,0,1,,150.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,817.445299770878,800.0,10021.110602545701,1,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08981040482392935,6680.740401697134,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +498,2,44.0,0.0,9,111,1400.0,2176.0,0.0,63,35,0.0,0.0,2387.2807607208856,3576.0,0.0,4131.144808316981,31,0,0,0,0,0,0,0,0,0,,2,2011.0,6,100500,1,3,0,0,1,,700.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,474.491876040041,1400.0,88414.37675744838,1,1,1,2,260.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04044591084785024,35365.75070297935,9,5,9,9_0,9_4,9_0_0 +499,2,57.0,0.0,1,111,279.0,930.0,0.0,0,62,0.0,0.0,475.7509516008051,1209.0,0.0,1765.6087645840037,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,100501,2,1,1,0,1,,230.0,355.0,12,1.0,0.0,4.0,1.0,1.0,1,1,350.623089262378,279.0,27169.4684475181,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04449847822144054,27169.4684475181,7,4,7,7_1,7_3,7_1_0 +500,0,89.0,0.0,2,221,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1177.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100502,2,2,1,0,1,,247.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2287.50323287791,0.0,14845.659294138815,0,6,0,1,100.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07928243378619695,14845.659294138815,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +501,2,72.0,0.0,7,111,800.0,0.0,0.0,75,78,0.0,0.0,1364.160434697649,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,100503,2,2,0,0,1,,193.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,2190.33477711817,800.0,38490.87382144524,5,5,0,1,64.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02078414752834941,25660.582547630158,7,4,7,7_0,7_2,7_0_0 +502,2,60.0,0.0,9,111,850.0,,,74,33,0.0,0.0,,1000.0,207.83838380947813,,12,0,0,0,0,0,0,0,0,0,,1,2004.0,6,100504,2,1,0,0,1,,700.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,111.28921648871672,850.0,91262.2185891332,5,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010957436883076961,60841.479059422134,10,5,10,10_1,10_2,10_0_0 +503,0,73.0,0.0,1,400,400.0,0.0,0.0,0,71,0.0,1324.327277010224,682.0802173488245,1460.0,83.13535352379125,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,100505,2,3,4,0,1,,150.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,1390.34544820941,400.0,18114.6706381768,0,5,5,0,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.08059765640579958,12076.447092117867,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +504,2,44.0,0.0,5,112,564.0,1421.0,0.0,43,62,0.0,0.0,961.7331064618425,1985.0,0.0,2697.77425212244,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,100506,2,1,3,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,590.411225421499,564.0,62835.577792771466,1,1,0,1,89.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03159038350130922,25134.231117108586,7,4,7,7_1,7_1,7_0_0 +505,2,49.0,0.0,7,112,900.0,0.0,0.0,55,53,0.0,1059.4618216081792,1534.680489034855,1700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,100507,2,1,2,0,1,,381.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1328.50857766325,900.0,59159.39945086256,1,1,0,1,112.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02873592389003221,29579.69972543128,8,4,8,8_1,8_0,8_0_0 +506,1,53.0,352.0,5,111,1200.0,0.0,0.0,68,62,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,30.0,2,,3,100508,2,3,0,1,1,,0.0,515.0,43,2.0,0.0,5.0,7.0,3.8,6,5,834.900281847028,1200.0,38185.38779026601,1,1,2,3,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03142563345411139,10048.786260596318,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +507,2,68.0,0.0,6,221,656.0,0.0,0.0,77,78,0.0,595.9472746546007,1118.6115564520721,1256.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,100509,2,1,1,0,1,,430.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2575.33805083341,656.0,18694.24094787807,5,5,0,1,88.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06718646686441501,12462.827298585378,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +508,1,66.0,209.0,2,111,500.0,90.0,0.0,0,77,0.0,0.0,852.6002716860306,590.0,0.0,170.865364314581,71,0,0,0,0,0,0,0,0,0,,2,,2,100510,2,1,0,1,1,1350.0,0.0,339.0,21,0.0,2.0,3.0,2.0,1.5,2,2,627.128041226825,500.0,19275.441932166632,0,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030608896131995546,12850.294621444422,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +509,2,75.0,0.0,5,112,800.0,0.0,0.0,0,75,0.0,0.0,1364.160434697649,850.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100511,2,1,2,0,1,,250.0,,21,1.0,4.0,6.0,2.0,1.5,2,2,787.394336372504,800.0,22190.65898946488,0,5,0,1,110.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038304405488973604,14793.772659643253,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +510,2,43.0,0.0,2,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,1976.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,1,,2,100512,2,1,3,0,1,,753.0,2700.0,42,1.0,0.0,8.0,4.0,2.1,2,2,779.943250702828,0.0,82528.8807904329,6,1,2,3,125.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023943133374335863,39299.46704306328,9,5,9,9_1,9_4,9_0_1 +511,1,20.0,375.0,2,111,600.0,0.0,0.0,0,81,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100513,2,1,0,1,1,,537.0,508.0,32,1.0,0.0,4.0,3.0,1.8,2,1,472.757323305709,600.0,6600.903905174073,0,4,2,3,86.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09089664212952625,3667.168836207818,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +512,2,36.0,0.0,8,112,1766.0,0.0,0.0,43,48,0.0,397.2981831030672,3011.38415959506,2066.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,100514,2,1,1,0,1,,263.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,853.492704472295,1766.0,42722.81638116308,4,1,1,2,130.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048358235130559424,20344.198276744322,5,3,5,5_1,5_0,5_0_0 +513,0,26.0,0.0,9,111,600.0,,,47,46,0.0,0.0,,644.0,60.965925917446924,,10,2,2,1,1,2,2,2,2,2,45.0,1,2005.0,6,100515,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,133.10191379549013,600.0,60845.55529585702,1,1,5,0,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.010584174914151043,33803.08627547612,9,5,9,9_1,9_2,9_0_0 +514,2,45.0,0.0,9,111,534.0,877.0,0.0,56,63,0.0,0.0,910.5770901606807,1411.0,0.0,1664.988050043195,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,100516,2,1,1,0,1,,525.0,,43,2.0,0.0,8.0,4.0,2.5,4,3,619.062751895436,534.0,42312.180972839815,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03334737107750888,16924.872389135926,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +516,2,61.0,0.0,5,111,840.0,,,78,78,0.0,0.0,,978.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,100518,2,1,0,0,2,,408.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,58.26754432471683,840.0,21695.465158187733,5,7,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04507854488802739,14463.643438791822,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +517,2,77.0,0.0,1,111,126.0,0.0,0.0,0,77,0.0,0.0,214.8552684648797,924.0,1105.7002018664236,0.0,50,2,2,1,2,2,2,2,1,0,,2,,1,100519,2,2,0,0,1,,0.0,225.0,11,0.0,2.0,2.0,1.0,1.0,1,1,699.848112186159,126.0,23147.176442697964,0,5,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.03991847568481667,23147.176442697964,6,3,6,6_0,6_3,6_1_0 +518,1,63.0,307.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100520,2,1,0,1,1,400.0,0.0,355.0,21,1.0,0.0,3.0,3.0,2.0,3,2,891.47015872924,360.0,27443.572579251726,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013117825638786265,13721.786289625863,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +519,2,80.0,0.0,2,111,380.0,2700.0,0.0,77,74,0.0,0.0,647.9762064813832,3080.0,0.0,5125.96092943743,10,0,0,0,0,0,0,0,0,0,,1,,2,100521,2,2,3,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1404.01693863787,380.0,50245.43908970499,5,5,0,1,130.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061299096113005706,33496.95939313666,8,4,8,8_1,8_3,8_0_1 +520,2,50.0,0.0,1,120,860.0,0.0,0.0,56,11,0.0,0.0,1466.4724672999725,1010.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,100522,2,2,4,0,1,,320.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,265.643742039619,860.0,36032.233256619045,1,1,1,2,90.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02803045797374952,14412.893302647619,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +521,2,54.0,0.0,1,111,0.0,0.0,1700.0,52,63,0.0,0.0,1071.5410937050644,1700.0,0.0,2034.4446508599572,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,100523,1,1,3,0,1,,1300.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,744.781893243734,0.0,60710.19969162364,1,1,1,2,89.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028001884504335668,30355.09984581182,8,4,8,8_1,8_2,8_1_0 +522,2,35.0,0.0,1,112,1800.0,0.0,0.0,21,37,0.0,397.2981831030672,3069.36097806971,2100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,1,100524,2,1,1,0,1,,720.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,659.585365303751,1800.0,57322.61641816603,1,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03663475485278952,22047.16016083309,6,3,6,6_1,6_0,6_1_0 +523,2,72.0,0.0,8,211,1512.0,,,0,72,0.0,0.0,,1556.0,60.965925917446924,,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,100525,1,1,0,0,1,,774.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,121.25061328844033,1512.0,10166.131107845067,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15305724306459667,10166.131107845067,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +526,1,48.0,291.0,2,111,150.0,0.0,0.0,0,56,0.0,0.0,255.78008150580916,180.0,41.567676761895626,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,100528,2,1,0,1,1,,0.0,404.0,32,1.0,2.0,4.0,2.0,1.5,2,1,1781.47916505664,150.0,9408.185851207672,0,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.019132275110923164,6272.123900805115,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +527,2,47.0,0.0,9,111,720.0,,,85,69,0.0,0.0,,858.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,100529,2,1,0,0,2,,760.0,,42,1.0,2.0,4.0,4.0,2.3,3,2,180.65891747226078,720.0,12677.54504413738,6,4,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0676787183175322,5511.976106146687,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +528,2,32.0,0.0,9,112,0.0,,,46,46,0.0,0.0,,626.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2007.0,6,100530,2,2,0,0,2,,1381.0,900.0,43,2.0,0.0,5.0,2.0,1.5,2,2,126.73630671269288,0.0,58731.07590127551,4,1,2,3,124.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010658752464407086,39154.050600850336,9,5,9,9_1,9_1,9_0_0 +529,1,38.0,274.0,9,211,576.0,1144.0,0.0,0,48,0.0,0.0,982.1955129823073,1720.0,0.0,2171.888630843119,41,2,2,2,2,1,2,2,2,2,40.0,1,2004.0,6,100531,2,1,2,0,1,,360.0,,32,1.0,0.0,2.0,3.0,1.6,1,1,863.401824980973,576.0,26096.46713732216,0,1,1,2,75.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.06590930454107799,16310.29196082635,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +530,0,50.0,0.0,1,222,800.0,0.0,0.0,11,52,0.0,0.0,1364.160434697649,1356.0,484.95622888878233,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,1,100532,2,2,0,0,1,,129.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1715.04540268739,800.0,65804.42593984395,1,1,5,0,90.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.020606516668644853,32902.21296992197,8,4,8,8_0,8_0,8_1_0 +531,2,82.0,0.0,1,112,200.0,0.0,0.0,77,78,0.0,0.0,341.04010867441224,290.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100533,2,2,2,0,2,,140.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,772.531941968799,200.0,16681.13822066556,5,5,0,1,80.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017384904804681203,11120.758813777042,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +532,2,61.0,0.0,1,111,451.0,1485.0,0.0,0,43,0.0,0.0,769.0454450607996,1936.0,0.0,2819.278511190587,33,0,0,0,0,0,0,0,0,0,,1,,1,100534,2,1,1,0,1,,242.0,,32,1.0,3.0,5.0,2.0,1.5,2,2,764.647978991196,451.0,51537.838620440554,0,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03756463312825381,34358.5590802937,9,5,9,9_1,9_2,9_1_0 +533,2,66.0,0.0,7,112,500.0,0.0,0.0,45,74,1582.0242765549024,0.0,852.6002716860306,2000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,100535,2,1,1,0,1,,120.0,,42,1.0,5.0,7.0,2.0,1.5,2,2,654.405055030308,500.0,99925.29817837325,1,5,1,2,197.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020014951533393156,66616.86545224884,10,5,10,10_1,10_0,10_0_0 +534,2,46.0,0.0,1,111,500.0,0.0,0.0,0,54,0.0,0.0,852.6002716860306,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,100536,2,1,0,0,1,,0.0,645.0,32,1.0,0.0,5.0,2.0,1.3,1,1,1791.96149936545,500.0,22747.038284179303,0,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.021980883566180696,17497.721757061,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +535,1,54.0,255.0,1,111,150.0,0.0,0.0,0,74,126.56194212439219,0.0,255.78008150580916,390.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,100537,1,3,0,0,2,,120.0,400.0,11,0.0,2.0,1.0,1.0,1.0,1,1,2718.83344482681,150.0,11223.512136865847,0,7,2,3,16.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03474848115671099,11223.512136865847,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +536,1,61.0,151.0,6,221,310.0,0.0,0.0,0,77,0.0,0.0,528.612168445339,310.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,100538,1,1,0,0,1,,95.0,324.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2370.73765432433,310.0,10630.0,0,5,2,3,80.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02916274694261524,10630.0,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +537,2,29.0,0.0,5,111,200.0,0.0,0.0,84,43,0.0,0.0,341.04010867441224,826.0,67.89387204442953,0.0,12,0,0,0,0,0,0,0,0,2,35.0,2,,3,100539,2,1,0,1,1,432.0,0.0,625.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1735.45140483711,200.0,43001.68410397005,3,1,2,3,60.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019208550018712897,28667.7894026467,8,4,8,8_0,8_2,8_0_0 +538,2,83.0,0.0,2,211,500.0,0.0,0.0,75,74,2109.365702073203,0.0,852.6002716860306,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100540,2,1,3,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1631.37611829245,500.0,71758.21782892809,5,5,0,1,100.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03483921529322274,47838.811885952055,10,5,10,10_1,10_1,10_0_1 +539,2,40.0,0.0,2,221,2200.0,0.0,0.0,63,52,0.0,0.0,3751.441195418535,2260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,100541,2,2,3,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2340.50521047611,2200.0,21355.94795754868,4,1,1,2,110.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10582531875861584,10169.499027404134,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +540,2,33.0,0.0,2,111,1111.0,0.0,0.0,46,45,0.0,0.0,1894.47780368636,1141.0,41.567676761895626,0.0,10,0,0,0,0,0,0,0,0,3,25.0,1,,2,100542,2,2,1,0,1,,151.0,690.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1292.54339163966,1111.0,39772.704402309624,1,1,2,3,70.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02868801649640253,22095.946890172014,6,3,6,6_1,6_3,6_0_1 +541,2,50.0,0.0,1,111,1430.0,0.0,0.0,56,64,0.0,0.0,2438.4367770220474,1538.0,149.64363634282427,0.0,60,2,2,2,2,2,2,2,1,0,,1,,1,100543,2,1,1,0,1,,340.0,,43,2.0,1.0,3.0,3.0,1.8,3,2,1075.18303028803,1430.0,35531.09951188302,1,1,1,2,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04328602326211806,19739.4997288239,5,3,5,5_1,5_3,5_1_0 +542,2,36.0,0.0,7,111,825.0,0.0,0.0,55,37,0.0,0.0,1406.7904482819504,825.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,5,100544,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,370.008185412586,825.0,51205.1544977363,1,1,1,2,73.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016111659228300386,34136.76966515753,9,5,9,9_0,9_3,9_0_0 +543,1,71.0,155.0,1,111,420.0,0.0,0.0,85,77,1054.6828510366015,0.0,716.1842282162656,1420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,100545,2,2,0,1,1,39.0,0.0,284.0,41,0.0,0.0,3.0,4.0,2.1,2,2,237.652354920711,420.0,22605.01700913769,6,5,2,3,45.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06281791336082558,10764.29381387509,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +544,2,38.0,0.0,1,111,2260.0,0.0,0.0,0,63,0.0,0.0,3853.7532280208584,2500.0,332.541414095165,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,100546,2,1,3,0,1,,380.0,,32,2.0,0.0,6.0,4.0,2.3,3,2,974.669368385677,2260.0,40161.86219421461,0,1,1,2,160.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.062248109609821065,17461.67921487592,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +545,2,53.0,0.0,5,111,440.0,940.0,0.0,0,52,0.0,0.0,750.2882390837069,1380.0,0.0,1784.5938050634018,50,0,0,0,0,0,0,0,0,2,2.0,2,,3,100547,1,2,0,0,1,,360.0,420.0,32,1.0,1.0,4.0,2.0,1.5,2,2,345.94640194113,440.0,35430.70657202748,0,1,2,3,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03894926558110216,23620.471048018317,6,3,6,6_0,6_3,6_0_0 +546,2,60.0,0.0,5,111,345.0,230.0,0.0,0,37,0.0,0.0,588.2941874633611,575.0,0.0,436.65593102615145,10,0,0,0,0,0,0,0,0,3,25.0,2,,3,100548,2,1,0,0,1,,480.0,830.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1110.49977001028,345.0,55381.753947998186,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010382480853529987,55381.753947998186,10,5,10,10_0,10_4,10_0_0 +547,2,25.0,0.0,2,111,700.0,0.0,0.0,42,35,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,100549,2,2,0,1,1,70.0,0.0,490.0,43,2.0,0.0,2.0,2.0,1.5,2,2,441.515805423191,700.0,37967.38513225132,1,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01843687674465067,25311.590088167548,7,4,7,7_0,7_3,7_0_1 +548,0,35.0,0.0,2,111,160.0,,,0,65,0.0,0.0,,204.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,2,100550,2,2,0,0,2,,60.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,98.39919748201812,160.0,7872.607817054656,0,4,5,0,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025912633366299405,7872.607817054656,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +549,2,60.0,0.0,6,111,600.0,,,0,75,0.0,0.0,,810.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,4,100551,2,2,0,0,2,,789.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,105.7051336789189,600.0,26284.023829960497,0,5,1,2,31.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030817199270558468,26284.023829960497,7,4,7,7_1,7_3,7_0_0 +550,1,43.0,459.0,7,120,700.0,0.0,0.0,85,21,316.40485531098045,0.0,1193.6403803604428,1093.0,128.85979796187644,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,100552,2,1,4,0,1,,200.0,523.0,42,1.0,0.0,4.0,5.0,2.8,5,3,1293.36544496088,700.0,18258.19966049957,6,1,2,3,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05986351449341605,6520.785593035561,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +551,2,61.0,0.0,2,111,800.0,600.0,0.0,54,48,0.0,0.0,1364.160434697649,1400.0,0.0,1139.1024287638734,70,0,0,0,0,0,0,0,0,2,40.0,2,,2,100553,2,1,0,0,1,,0.0,800.0,43,3.0,0.0,4.0,3.0,2.0,3,3,2117.68868034084,800.0,56229.01251159902,1,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024898178670863292,28114.50625579951,8,4,8,8_0,8_3,8_0_1 +552,0,59.0,0.0,5,111,484.0,1490.0,0.0,78,56,0.0,0.0,825.3170629920776,1974.0,0.0,2828.771031430286,50,2,2,1,2,1,2,2,2,0,,2,,3,100554,1,1,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,553.357728218576,484.0,40084.027960990556,5,1,5,0,82.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04924654782501101,26722.685307327036,7,4,7,7_0,7_3,7_0_0 +553,2,62.0,0.0,2,111,1200.0,,,0,86,0.0,0.0,,1332.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,100555,1,3,0,0,1,,500.0,,21,1.0,7.0,6.0,2.0,1.5,2,2,129.67012120788908,1200.0,21219.44246404008,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06277262007507023,14146.29497602672,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +554,1,27.0,283.0,5,111,0.0,0.0,1130.0,0,56,0.0,0.0,712.2596681686605,1130.0,0.0,1352.3073267480893,44,2,2,2,2,1,2,2,2,0,,2,,3,100556,2,1,0,0,1,,120.0,246.0,32,1.0,0.0,3.0,3.0,1.6,1,1,316.973980544227,0.0,11163.088945680383,0,4,2,3,64.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.10122646209293705,6976.930591050239,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +555,1,44.0,417.0,7,111,240.0,120.0,0.0,52,22,0.0,0.0,409.2481304092947,360.0,0.0,227.8204857527747,41,0,0,0,0,0,0,0,0,2,30.0,2,,5,100557,2,2,0,1,1,52.0,0.0,379.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,615.779817241287,240.0,17805.846108567184,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020218078815518237,6848.402349448918,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +556,2,55.0,0.0,7,211,480.0,,,68,62,0.0,0.0,,756.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,100558,2,1,0,0,2,,288.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,93.86813475563595,480.0,41621.74579226486,1,1,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018163582175846595,16648.698316905946,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +557,1,55.0,400.0,8,111,356.0,,,0,77,0.0,0.0,,632.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,100559,1,2,0,0,2,,250.0,499.0,31,0.0,3.0,4.0,2.0,1.5,2,1,39.88412664316208,356.0,11747.09716661544,0,6,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05380052544352037,7831.39811107696,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +558,2,49.0,0.0,1,111,678.0,744.0,0.0,65,62,0.0,0.0,1156.1259684062575,1422.0,0.0,1412.487011667203,50,0,0,0,0,0,0,0,0,0,,1,,1,100560,2,1,1,0,1,,592.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,275.36503599537,678.0,45965.54643328448,1,4,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030936214411459804,22982.77321664224,6,3,6,6_1,6_3,6_1_0 +559,2,51.0,0.0,2,111,298.0,30.0,0.0,0,46,0.0,0.0,508.1497619248742,328.0,0.0,56.95512143819367,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,100561,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,683.301365016198,298.0,23768.663595448394,0,1,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01379968203440814,23768.663595448394,6,3,6,6_0,6_4,6_0_1 +560,1,60.0,307.0,2,111,495.0,144.0,0.0,0,78,0.0,0.0,844.0742689691702,639.0,0.0,273.3845829033296,50,0,0,0,0,0,0,0,0,0,,2,,2,100562,2,2,0,1,1,514.0,0.0,355.0,11,0.0,4.0,3.0,1.0,1.0,1,1,220.698940222995,495.0,7204.897959183673,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08868966689326989,7204.897959183673,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +561,2,41.0,0.0,1,111,240.0,400.0,0.0,34,21,0.0,0.0,409.2481304092947,640.0,0.0,759.4016191759156,30,0,0,0,0,0,0,0,0,1,10.0,2,,1,100563,2,1,0,0,2,,250.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1685.27947994247,240.0,71437.55074113079,1,1,1,2,78.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.00895887377661052,34017.881305300376,9,5,9,9_0,9_3,9_1_0 +562,2,42.0,0.0,5,111,720.0,,,46,34,0.0,0.0,,783.0,87.29212119998083,,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,100564,1,2,0,0,2,,300.0,500.0,43,2.0,0.0,3.0,3.0,1.8,2,2,103.54895120710252,720.0,47001.114308076976,1,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016659179500887796,26111.730171153875,7,4,7,7_1,7_2,7_0_0 +563,2,59.0,0.0,1,400,822.0,0.0,0.0,0,56,0.0,0.0,1401.6748466518343,3022.0,3048.296295872346,0.0,50,1,2,2,2,1,2,2,2,0,,1,,1,100565,2,2,3,0,1,,192.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,1265.18202689664,822.0,27091.287535657644,0,1,0,1,87.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.1115487772968499,18060.858357105095,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +564,1,61.0,259.0,6,300,0.0,0.0,0.0,78,78,0.0,0.0,0.0,232.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100566,2,2,3,0,1,,115.0,437.0,41,0.0,3.0,4.0,2.0,1.5,2,2,767.139043369337,0.0,16212.657080805895,6,5,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014309807383434018,10808.438053870597,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +565,2,34.0,0.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,1753.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100567,2,2,1,0,1,,128.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,953.639577202742,0.0,16838.884872089053,0,1,1,2,74.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10410428085446734,16838.884872089053,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +566,2,30.0,0.0,1,111,250.0,0.0,0.0,0,52,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,15.0,2,,1,100568,2,1,0,0,1,,0.0,349.0,12,1.0,0.0,3.0,1.0,1.0,1,1,272.033250931265,250.0,14119.914142212754,0,1,2,3,50.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.017705490095906638,14119.914142212754,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +567,2,67.0,0.0,9,111,600.0,,,21,47,0.0,0.0,,750.0,207.83838380947813,,60,0,0,0,0,0,0,0,0,1,10.0,1,2005.0,6,100569,2,3,0,0,2,,160.0,840.0,43,2.0,0.0,4.0,3.0,1.8,2,2,135.0361757538305,600.0,15481.00790513834,1,1,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04844645804689923,8600.559947299078,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +568,1,55.0,263.0,6,111,670.0,0.0,0.0,56,67,0.0,0.0,1142.484364059281,670.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,100570,1,3,0,0,1,,305.0,238.0,43,2.0,3.0,2.0,3.0,1.8,2,2,879.821820498887,670.0,10664.39997884374,1,4,2,3,40.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.06282585061786505,5924.666654913189,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +569,2,27.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,321.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,1,100571,2,1,0,1,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.5883544561,0.0,13790.543320838817,0,1,3,4,10.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023276820392923794,13790.543320838817,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +570,2,73.0,0.0,1,112,481.0,0.0,0.0,78,78,0.0,0.0,820.2014613619614,547.0,91.44888887617039,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100572,2,2,2,0,1,,234.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,715.921512921178,481.0,24984.22946150958,5,5,0,1,90.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02189381108761837,16656.152974339722,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +571,1,49.0,28.0,9,111,240.0,,,0,68,0.0,0.0,,378.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,100573,2,1,0,0,2,,330.0,386.0,32,1.0,1.0,3.0,2.0,1.5,2,2,85.56682902764469,240.0,16793.212522664435,0,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0225090940455761,11195.475015109623,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +572,2,70.0,0.0,2,111,1200.0,0.0,0.0,77,38,1223.4321072024577,0.0,2046.2406520464733,2360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100574,2,1,3,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1341.78284998682,1200.0,27615.630582450016,5,5,0,1,115.0,6,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08545884885568397,18410.420388300012,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +573,1,47.0,254.0,7,111,190.0,800.0,0.0,0,67,0.0,0.0,323.9881032406916,990.0,0.0,1518.8032383518312,44,0,0,0,0,0,0,0,0,2,10.0,2,,5,100575,2,2,0,0,1,,0.0,372.0,12,1.0,2.0,3.0,1.0,1.0,1,1,640.623530460405,190.0,9375.335124052544,0,1,2,3,70.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10559622529760479,9375.335124052544,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +574,2,67.0,0.0,1,112,414.0,0.0,0.0,56,72,0.0,66.2163638505112,705.9530249560333,674.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100576,2,2,2,0,1,,120.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,994.503253029907,414.0,25206.169416217068,5,5,0,1,170.0,7,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02673948543590935,16804.112944144712,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +575,2,59.0,0.0,1,221,2594.0,102.0,0.0,78,35,0.0,0.0,4423.290209507127,2696.0,0.0,193.6474128898585,70,2,2,2,1,1,2,2,2,2,15.0,1,,1,100577,2,2,3,0,1,,858.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,510.01666459184,2594.0,54223.86825436632,5,1,0,1,206.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.04971980212390892,36149.24550291088,9,5,9,9_1,9_1,9_1_0 +576,0,91.0,0.0,1,400,0.0,0.0,0.0,0,71,2731.628584184798,0.0,0.0,5907.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100578,2,1,3,0,2,,170.0,,21,1.0,2.0,6.0,3.0,2.0,3,3,1425.33940555228,0.0,27024.225899388603,0,5,0,1,200.0,0,0,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.21858165417917264,13512.112949694301,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +577,2,81.0,0.0,2,120,480.0,0.0,0.0,86,78,1582.0242765549024,264.8654554020448,818.4962608185893,2372.0,266.03313127613205,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100579,1,3,4,0,2,,96.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,951.630038352988,480.0,19738.098511102737,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12017368332951339,13158.732340735158,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +578,2,48.0,0.0,8,111,825.0,,,85,38,0.0,0.0,,859.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,100580,2,2,0,0,2,,136.0,1668.0,42,1.0,0.0,6.0,5.0,2.8,4,3,132.84878246606274,825.0,98850.33475717169,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008689904815296325,35303.690984704175,9,5,9,9_1,9_2,9_0_0 +579,2,34.0,0.0,1,111,650.0,800.0,0.0,0,35,0.0,0.0,1108.3803531918397,1450.0,0.0,1518.8032383518312,30,0,0,0,0,0,0,0,0,0,,2,,1,100581,2,1,0,0,2,,540.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,436.303317218051,650.0,11175.955338748465,0,4,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12974282341417961,11175.955338748465,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +580,2,55.0,0.0,2,111,1800.0,1800.0,0.0,46,90,0.0,0.0,3069.36097806971,3600.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,100582,2,1,1,0,1,,1200.0,,43,5.0,0.0,8.0,9.0,5.0,9,9,873.520224431046,1800.0,85425.73947233372,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04214186522981061,17085.147894466743,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +581,2,82.0,0.0,1,111,535.0,1300.0,0.0,78,78,0.0,0.0,912.2822907040527,1835.0,0.0,2468.055262321726,71,1,2,2,1,1,2,2,2,0,,2,,1,100583,2,2,0,1,1,,306.0,302.0,41,0.0,3.0,4.0,2.0,1.5,2,2,595.255365525783,535.0,17982.81919488305,5,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.1020418422781086,11988.546129922033,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +582,2,20.0,0.0,2,221,800.0,0.0,0.0,0,63,2636.7071275915036,0.0,1364.160434697649,3400.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,100584,2,1,0,1,1,,340.0,,22,3.0,1.0,6.0,3.0,2.0,3,3,760.006924170602,800.0,55926.21251323697,0,1,0,1,116.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06079439045144111,27963.106256618485,7,4,7,7_0,7_1,7_0_1 +583,2,42.0,0.0,2,111,240.0,110.0,0.0,0,62,0.0,0.0,409.2481304092947,350.0,0.0,208.8354452733768,20,0,0,0,0,0,0,0,0,0,,2,,2,100585,2,2,0,1,1,,0.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,1823.22887616096,240.0,24674.8186684916,0,1,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01418450140210882,16449.879112327733,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +584,2,49.0,0.0,6,111,564.0,846.0,0.0,0,52,0.0,0.0,961.7331064618425,1410.0,0.0,1606.1344245570615,70,0,0,0,0,0,0,0,0,2,5.0,1,,4,100586,2,1,2,0,1,,516.0,486.0,32,1.0,0.0,4.0,2.0,1.5,2,1,348.723256954542,564.0,23650.66643001337,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05961777035638496,15767.110953342248,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +585,1,45.0,312.0,2,111,300.0,100.0,0.0,0,67,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,50,2,2,2,2,1,2,2,2,0,,2,,2,100587,2,3,0,1,1,481.0,330.0,288.0,32,1.0,0.0,3.0,2.0,1.5,2,2,294.904136648189,300.0,8122.752176085465,0,4,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04924439295066231,5415.16811739031,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +586,2,51.0,0.0,1,111,735.0,1690.0,0.0,37,85,0.0,0.0,1253.322399378465,2425.0,0.0,3208.4718410182436,60,0,0,0,0,0,0,0,0,0,,1,,1,100588,2,1,3,0,1,,289.0,,42,1.0,2.0,7.0,3.0,2.0,3,3,828.005105067081,735.0,54522.123839251835,4,7,0,1,108.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04447735761632569,27261.061919625918,7,4,7,7_1,7_3,7_1_0 +587,2,69.0,0.0,9,221,607.0,,,78,38,0.0,0.0,,607.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,100589,2,2,0,0,2,,283.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,103.50608253634329,607.0,86059.90386819227,6,1,1,2,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00705322656332117,57373.26924546151,10,5,10,10_1,10_1,10_0_0 +588,2,68.0,0.0,1,300,700.0,0.0,0.0,77,78,0.0,0.0,1193.6403803604428,850.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100590,1,1,3,0,2,,220.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,748.107375960596,700.0,16399.352926529933,5,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.051831313333401026,10932.901951019956,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +589,2,63.0,0.0,1,111,1200.0,0.0,0.0,74,74,3691.3899786281054,0.0,2046.2406520464733,4700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,100591,1,1,1,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,228.401762640255,1200.0,132499.84131535806,5,5,0,1,180.0,8,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03547174059487136,88333.22754357204,10,5,10,10_1,10_2,10_1_0 +590,2,54.0,0.0,2,211,1800.0,,,85,38,0.0,0.0,,1800.0,0.0,,30,0,0,0,0,0,0,0,0,0,,1,,2,100592,2,1,0,0,2,,600.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,41.32870119299168,1800.0,132521.66009340968,6,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013582685266176455,88347.77339560645,10,5,10,10_1,10_2,10_0_1 +592,2,49.0,0.0,5,111,20.0,0.0,0.0,0,38,0.0,0.0,34.104010867441225,20.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,1.0,2,,3,100594,2,3,0,1,1,612.0,0.0,410.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1057.22736319258,20.0,69795.59838039704,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00028655102132654325,69795.59838039704,10,5,10,10_0,10_4,10_0_0 +593,2,32.0,0.0,9,222,1500.0,0.0,0.0,63,21,0.0,0.0,2557.8008150580918,1535.0,48.49562288887823,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,100595,2,1,1,0,1,,140.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1651.96627098997,1500.0,37950.3492445392,1,1,1,2,136.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04044758561005539,21083.527358077332,5,3,5,5_1,5_0,5_0_0 +594,1,38.0,200.0,1,111,327.0,529.0,0.0,46,46,0.0,0.0,557.600577682664,856.0,0.0,1004.3086413601484,60,0,0,0,0,0,0,0,0,1,10.0,2,,1,100596,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,893.017494432652,327.0,25266.70504970684,1,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03387857650279302,12031.764309384209,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +595,2,79.0,0.0,2,221,610.0,744.0,0.0,0,86,0.0,0.0,1040.1723314569574,1354.0,0.0,1412.487011667203,70,0,0,0,0,0,0,0,0,0,,2,,2,100597,2,2,0,0,1,,265.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,3361.39310747995,610.0,17905.340114363415,0,5,0,1,63.0,1,1,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07561989838516611,17905.340114363415,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +596,2,71.0,0.0,1,111,550.0,0.0,0.0,77,75,1792.9608467622227,0.0,937.8602988546337,2350.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100598,2,1,2,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,864.301334526689,550.0,51276.40528699677,5,5,0,1,80.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0458300457461268,34184.27019133118,9,5,9,9_1,9_3,9_1_0 +597,1,71.0,249.0,7,111,294.0,,,0,77,0.0,0.0,,340.0,63.73710436823996,,70,0,0,0,0,0,0,0,0,0,,1,,5,100599,2,1,0,0,2,,50.0,500.0,11,0.0,3.0,3.0,1.0,1.0,1,1,72.97133970666064,294.0,5886.0,0,5,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.057764186204553175,5886.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +598,2,51.0,0.0,2,111,442.0,900.0,0.0,0,63,0.0,0.0,753.6986401704511,1342.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,2,100600,2,1,2,0,1,,270.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,1660.98080449591,442.0,16751.30610023293,0,1,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08011315607093701,11167.537400155286,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +599,2,66.0,0.0,6,111,1000.0,0.0,0.0,78,78,0.0,0.0,1705.2005433720612,3225.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100601,2,1,3,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,287.182517758935,1000.0,27532.78259726747,6,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11713309356243817,18355.188398178314,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +600,2,49.0,0.0,5,111,1100.0,0.0,0.0,77,43,0.0,344.3250920226582,1875.7205977092674,1360.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,3,100602,2,1,1,0,1,,600.0,,42,1.0,0.0,4.0,4.0,2.3,3,3,1497.01226709494,1100.0,54282.72077344594,5,1,1,2,91.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025054013148605583,23601.182944976495,6,3,6,6_1,6_3,6_0_0 +601,2,29.0,0.0,6,111,593.0,0.0,0.0,0,43,0.0,0.0,1011.1839222196322,593.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,25.0,2,,4,100603,2,1,0,0,1,,0.0,200.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1382.53695928334,593.0,29482.52054453184,0,1,3,4,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020113612711786424,29482.52054453184,8,4,8,8_0,8_4,8_0_0 +602,2,28.0,0.0,9,111,761.0,0.0,0.0,46,38,52.734142551830075,0.0,1297.6576135061387,811.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,100604,2,1,0,0,1,,0.0,528.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1427.28140103002,761.0,45609.10789007912,1,1,2,3,57.0,9,7,7,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017781536134286208,30406.07192671941,8,4,8,8_0,8_3,8_0_0 +603,1,48.0,200.0,2,111,700.0,0.0,0.0,72,52,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,100605,2,1,0,1,1,1045.0,0.0,250.0,42,1.0,3.0,5.0,7.0,3.8,6,5,1462.90322759612,700.0,22319.560051363525,5,1,2,3,80.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0313626253559257,5873.568434569349,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +604,0,63.0,0.0,7,221,746.3,0.0,0.0,55,21,0.0,0.0,1272.5911655185691,746.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,100606,2,1,2,0,1,,220.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1737.07391463722,746.3,41521.0,1,1,5,0,200.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017966811974663422,27680.666666666668,7,4,7,7_1,7_1,7_0_0 +605,2,36.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1172.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,100607,2,2,5,0,1,,615.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,276.498557593294,0.0,51080.55989934862,0,1,1,2,200.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02294414944372889,31925.349937092888,8,4,8,8_1,8_3,8_1_0 +606,2,69.0,0.0,1,112,1300.0,0.0,0.0,0,78,0.0,0.0,2216.7607063836795,1340.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100608,2,1,1,0,1,,120.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,2089.4548262268,1300.0,23125.247938303663,0,5,0,1,120.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.057945324676086256,23125.247938303663,6,3,6,6_1,6_1,6_1_0 +607,2,58.0,0.0,2,111,546.0,1235.0,0.0,0,90,0.0,0.0,931.0394966811454,1781.0,0.0,2344.6524992056393,41,0,0,0,0,0,0,0,0,0,,1,,2,100609,2,1,2,0,2,,176.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,488.316480209552,546.0,237690.54898643677,0,1,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007492935699776723,237690.54898643677,10,5,10,10_1,10_3,10_0_1 +608,2,59.0,0.0,1,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1829.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,100610,1,1,1,0,2,,438.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,826.509100013328,0.0,183829.26571014326,0,1,0,1,100.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009949449522819261,183829.26571014326,10,5,10,10_1,10_4,10_1_0 +609,2,66.0,0.0,2,211,520.0,800.0,0.0,0,78,0.0,0.0,886.7042825534718,1320.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,2,100611,1,2,0,1,1,,200.0,201.0,21,1.0,0.0,3.0,2.0,1.5,2,2,351.231243237795,520.0,23066.27445080348,0,5,2,3,60.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057226406579672845,15377.516300535653,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +610,1,29.0,260.0,2,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,1143.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,4.0,2,,2,100612,2,1,0,0,2,,261.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3233.17758682335,0.0,11058.026976202178,0,1,2,3,45.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10336382814581968,11058.026976202178,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +612,2,28.0,0.0,2,111,608.0,100.0,0.0,0,48,0.0,0.0,1036.7619303702131,708.0,0.0,189.8504047939789,20,2,2,2,1,1,1,2,2,0,,2,,2,100614,1,2,0,1,1,324.0,0.0,331.0,22,3.0,1.0,3.0,3.0,2.0,3,3,263.605644862453,608.0,52034.77158638058,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013606286304623844,26017.38579319029,7,4,7,7_0,7_4,7_0_1 +613,2,33.0,0.0,9,112,650.0,1300.0,0.0,85,37,0.0,0.0,1108.3803531918397,1950.0,0.0,2468.055262321726,10,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,100615,2,1,1,0,1,,392.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1983.93065016537,650.0,60988.01568345142,7,1,1,2,120.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03197349476200643,29041.91223021496,8,4,8,8_1,8_1,8_0_0 +614,2,36.0,0.0,2,111,180.0,0.0,0.0,0,37,0.0,0.0,306.936097806971,206.0,0.0,0.0,10,1,2,2,2,1,2,2,2,3,35.0,2,,2,100616,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1489.2601188089,180.0,32862.4413013095,0,1,1,2,63.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.006268554369142115,32862.4413013095,8,4,8,8_0,8_3,8_0_1 +615,1,31.0,300.0,1,111,300.0,720.0,0.0,0,53,0.0,0.0,511.56016301161833,1020.0,0.0,1366.922914516648,71,2,2,1,1,1,2,2,2,0,,1,,1,100617,1,3,4,0,2,,480.0,700.0,22,2.0,2.0,3.0,3.0,2.0,3,3,369.876400598411,300.0,24961.025324974304,0,1,2,3,80.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0.040863705986446695,12480.512662487152,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +616,1,71.0,95.0,2,111,450.0,,,0,77,0.0,0.0,,524.0,102.53360267934255,,71,0,0,0,0,0,0,0,0,0,,1,,2,100618,2,1,0,0,1,,340.0,320.0,11,0.0,4.0,3.0,1.0,1.0,1,1,70.69883227596678,450.0,17178.0,0,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.030504133193619744,17178.0,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +617,2,77.0,0.0,1,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,100619,2,1,0,1,2,,94.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,198.61268235994,300.0,18545.36375506033,0,5,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016176549781512985,18545.36375506033,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +618,2,66.0,0.0,2,111,500.0,0.0,0.0,0,75,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,100620,2,3,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,320.556277027559,500.0,16639.19892734345,0,5,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030049523548777483,16639.19892734345,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +619,2,53.0,0.0,6,221,2400.0,0.0,0.0,67,78,0.0,0.0,4092.4813040929466,2450.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100621,2,1,2,0,1,,430.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,1996.85677840619,2400.0,8962.751912178224,4,7,0,1,100.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.27335354409074286,4481.375956089112,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +620,0,58.0,0.0,2,111,0.0,0.0,951.0,0,56,0.0,0.0,599.4326941844214,951.0,0.0,1138.0922723340116,60,0,0,0,0,0,0,0,0,1,2.0,2,,2,100622,2,2,0,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,422.821732754713,0.0,27001.723673824228,0,1,5,0,72.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.035219973787151596,27001.723673824228,7,4,7,7_0,7_3,7_0_1 +621,2,67.0,0.0,8,112,540.0,1160.0,0.0,77,75,0.0,0.0,920.8082934209131,1700.0,0.0,2202.2646956101553,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,100623,2,1,1,0,1,,350.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,107.885784551338,540.0,36291.08073059092,5,5,1,2,92.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04684346582621926,24194.053820393947,7,4,7,7_1,7_0,7_0_0 +622,2,42.0,0.0,8,112,762.0,0.0,0.0,52,22,0.0,794.5963662061343,1299.3628140495107,1362.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,100624,2,1,2,0,1,,673.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,786.973362451522,762.0,46486.14971101958,1,1,1,2,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029299049468860115,20211.36943957373,5,3,5,5_1,5_0,5_0_0 +623,2,71.0,0.0,5,111,1500.0,0.0,0.0,75,75,0.0,0.0,2557.8008150580918,1600.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,100625,2,1,1,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1110.37659188633,1500.0,50380.10306709989,5,5,0,1,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03175856940723213,33586.735378066594,9,5,9,9_1,9_3,9_0_0 +624,2,33.0,0.0,9,221,0.0,0.0,0.0,55,63,0.0,0.0,0.0,1047.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,100626,2,2,1,0,1,,562.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,6884.06979423055,0.0,28894.026266170666,1,1,1,2,88.0,1,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036235863785651606,16052.236814539257,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +625,2,54.0,0.0,5,111,2780.0,50.0,0.0,64,21,0.0,0.0,4740.45751057433,2830.0,0.0,94.92520239698945,71,0,0,0,0,0,0,0,0,0,,1,,3,100627,2,1,2,0,1,,862.0,,43,4.0,2.0,6.0,5.0,3.0,5,5,570.402526344957,2780.0,105856.66932003183,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026734262641914277,35285.55644001061,9,5,9,9_1,9_4,9_0_0 +626,1,57.0,213.0,2,111,350.0,0.0,0.0,77,78,0.0,0.0,596.8201901802214,1833.0,554.2356901586083,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,100628,2,3,0,1,1,,250.0,291.0,41,1.0,1.0,4.0,3.0,2.0,3,3,684.14284902534,350.0,18955.94335294454,6,7,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.09669790449733903,9477.97167647227,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +627,2,56.0,0.0,5,111,200.0,0.0,0.0,62,37,0.0,0.0,341.04010867441224,200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,75.0,2,,3,100629,2,2,0,1,1,,0.0,,43,2.0,4.0,2.0,2.0,1.5,2,2,868.446560966096,200.0,95584.16161545287,1,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0020923968638719165,63722.774410301914,10,5,10,10_0,10_4,10_0_0 +628,2,44.0,0.0,2,111,976.0,1930.0,0.0,21,48,0.0,324.46018286750484,1664.2757303311316,3151.0,0.0,3664.112812523793,50,0,0,0,0,0,0,0,0,0,,1,,2,100630,2,1,3,0,1,,540.0,,43,3.0,0.0,7.0,5.0,2.8,4,3,411.470149931433,976.0,55172.78163712991,1,1,1,2,133.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057111494227788856,19704.56487040354,5,3,5,5_1,5_3,5_0_1 +630,2,32.0,0.0,9,112,862.0,0.0,0.0,85,47,0.0,0.0,1469.8828683867168,862.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,100632,2,1,1,0,1,,426.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,859.613760884529,862.0,54286.226219944605,7,1,1,2,66.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015878797625525565,30159.01456663589,8,4,8,8_1,8_0,8_0_0 +631,2,64.0,0.0,1,111,528.0,,,0,77,0.0,0.0,,666.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,,1,100633,1,2,0,0,2,,432.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,114.07250125807525,528.0,14883.476849225313,0,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04474760882465883,14883.476849225313,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +632,2,45.0,0.0,6,111,0.0,,,52,47,0.0,0.0,,781.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,2,30.0,2,,4,100634,2,3,0,0,2,,400.0,621.0,43,3.0,1.0,4.0,5.0,2.8,4,3,109.3183334491732,0.0,89234.0,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008752269314386893,31869.285714285717,8,4,8,8_0,8_2,8_0_0 +633,2,76.0,0.0,5,112,474.0,0.0,0.0,0,72,2032.3738539475312,0.0,808.265057558357,2461.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,100635,2,1,2,0,1,,300.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,921.636731171734,474.0,19636.60367350806,0,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12532717169009017,19636.60367350806,5,3,5,5_1,5_0,5_0_0 +635,2,54.0,0.0,2,111,400.0,1200.0,0.0,0,43,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,2,60.0,1,,2,100637,2,2,2,0,1,,480.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,146.96513485462,400.0,39605.202191302364,0,1,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04039873328437075,26403.46812753491,7,4,7,7_1,7_3,7_0_1 +636,2,71.0,0.0,2,221,351.0,2029.0,0.0,77,77,0.0,0.0,598.5253907235934,2380.0,0.0,3852.064713269832,50,0,0,0,0,0,0,0,0,0,,1,,2,100638,2,1,3,0,2,,491.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,2161.83386447406,351.0,34242.27848472916,5,5,0,1,72.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06950472063538048,22828.18565648611,6,3,6,6_1,6_1,6_0_1 +637,2,74.0,0.0,7,111,336.0,0.0,0.0,0,75,0.0,0.0,572.9473825730125,336.0,0.0,0.0,20,2,2,1,2,1,2,2,2,0,,2,,5,100639,2,1,0,0,1,,0.0,411.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1450.13393581924,336.0,31026.17453798871,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.010829565842498525,31026.17453798871,8,4,8,8_0,8_4,8_0_0 +638,1,48.0,400.0,6,211,1800.0,,,81,68,0.0,0.0,,1800.0,0.0,,71,0,0,0,0,0,0,0,0,2,1.0,8,,4,100640,1,1,0,0,1,,800.0,440.0,43,2.0,0.0,3.0,8.0,3.2999999999999994,2,2,7.7946231555240395,1800.0,19578.74956217163,4,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09193641270522224,5932.954412779283,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +639,2,58.0,0.0,6,111,630.0,0.0,0.0,0,52,0.0,264.8654554020448,1074.2763423243985,905.0,103.91919190473907,0.0,60,2,2,1,1,1,1,1,2,2,10.0,2,,4,100641,1,3,0,0,1,,0.0,385.0,32,1.0,1.0,3.0,2.0,1.5,2,2,266.747471288332,630.0,34161.776150719495,0,1,2,3,65.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.0264915968071215,22774.517433813,6,3,6,6_0,6_2,6_0_0 +640,2,62.0,0.0,6,211,1149.0,0.0,0.0,78,77,0.0,0.0,1959.2754243344982,1199.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,100642,2,1,2,0,1,,241.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,672.397259760313,1149.0,27422.52599627003,5,5,0,1,95.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04372317853443137,18281.68399751335,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +641,1,33.0,122.0,9,111,620.0,0.0,0.0,0,21,0.0,0.0,1057.224336890678,620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,100643,1,1,0,0,1,,350.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2097.55941553978,620.0,5726.25890910733,0,1,2,3,38.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10827313431705313,5726.25890910733,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +642,2,51.0,0.0,8,111,990.0,,,0,22,0.0,0.0,,1140.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,100644,1,2,0,0,2,,180.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,38.89973845533471,990.0,55428.32816017162,0,1,0,1,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02056710057546268,36952.21877344775,9,5,9,9_1,9_2,9_0_0 +643,2,32.0,0.0,2,111,420.0,900.0,0.0,52,45,0.0,0.0,716.1842282162656,1320.0,0.0,1708.65364314581,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,100645,1,3,0,0,1,,0.0,458.0,43,2.0,0.0,3.0,3.0,1.8,2,2,990.981918334503,420.0,41338.419983716,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03193155424227567,22965.78887984222,6,3,6,6_0,6_4,6_0_1 +644,2,38.0,0.0,5,111,409.0,685.0,0.0,37,46,0.0,423.78472864327165,697.427022239173,1414.0,0.0,1300.4752728387555,20,0,0,0,0,0,0,0,0,2,40.0,1,,3,100646,2,2,3,0,1,,150.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,526.926001222427,409.0,108325.84983983001,1,1,1,2,100.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013053209387147503,72217.23322655335,10,5,10,10_1,10_2,10_0_0 +645,2,32.0,0.0,6,111,0.0,,,0,38,0.0,0.0,,605.0,0.0,,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,100647,2,1,0,0,2,,383.0,660.0,12,1.0,0.0,2.0,1.0,1.0,1,1,42.07136074530786,0.0,45795.429392809485,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013210925370098034,45795.429392809485,10,5,10,10_1,10_2,10_0_0 +646,2,28.0,0.0,5,120,800.0,0.0,0.0,55,53,0.0,927.0290939071567,1364.160434697649,1600.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100648,2,1,2,0,1,,250.0,,43,2.0,6.0,5.0,4.0,2.5,4,4,1893.51288870204,800.0,52400.39011590805,4,1,0,1,100.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030534123819705335,20960.15604636322,5,3,5,5_1,5_1,5_0_0 +647,2,49.0,0.0,1,111,385.0,1275.0,0.0,46,33,0.0,0.0,656.5022091982436,1660.0,0.0,2420.5926611232308,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,100649,1,1,3,0,1,,569.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1551.36294310964,385.0,48816.918036062125,1,1,1,2,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03400460468999132,23246.151445743868,6,3,6,6_1,6_2,6_1_0 +648,2,21.0,0.0,6,211,0.0,,,0,85,0.0,0.0,,262.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,4,100650,2,1,0,0,1,,413.0,420.0,31,0.0,0.0,2.0,2.0,1.3,1,1,99.04834580360983,0.0,9142.933475311584,0,6,2,3,66.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028656010754914876,7033.02575023968,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +649,2,47.0,0.0,1,112,710.0,500.0,0.0,52,43,0.0,0.0,1210.6923857941633,1210.0,0.0,949.2520239698945,10,0,0,0,0,0,0,0,0,2,45.0,1,,1,100651,1,2,2,0,1,,450.0,,43,4.0,0.0,7.0,5.0,2.8,4,4,339.68353295875,710.0,81622.34675145369,1,1,1,2,160.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014824371610933251,29150.838125519178,8,4,8,8_1,8_0,8_1_0 +650,2,43.0,0.0,5,111,400.0,600.0,0.0,63,47,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,100652,1,3,0,0,2,,0.0,470.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2378.10850627062,400.0,25091.05657904692,4,1,2,3,50.0,6,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.039854838191034234,13939.475877248287,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +651,2,51.0,0.0,2,111,160.0,,,0,45,0.0,0.0,,298.0,191.2113131047199,,30,0,0,0,0,0,0,0,0,0,,1,,2,100653,2,1,0,0,2,,600.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,93.69440024727459,160.0,64330.3700712485,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004632337722757585,42886.91338083233,9,5,9,9_1,9_2,9_0_1 +652,2,36.0,0.0,7,111,446.0,0.0,0.0,46,37,0.0,0.0,760.5194423439393,446.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,50.0,2,,5,100654,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,331.04962035955,446.0,32369.567417645623,1,1,1,2,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01377837381159663,21579.71161176375,6,3,6,6_0,6_4,6_0_0 +653,2,65.0,0.0,2,111,294.0,251.0,0.0,0,77,0.0,0.0,501.328959751386,545.0,0.0,476.52451603288705,70,0,0,0,0,0,0,0,0,0,,2,,2,100655,2,1,0,1,1,376.0,0.0,235.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1118.60948777953,294.0,22092.075481777894,0,5,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024669479354691225,22092.075481777894,6,3,6,6_0,6_4,6_0_1 +654,2,39.0,0.0,1,111,264.0,588.0,0.0,0,37,0.0,0.0,450.1729434502241,852.0,0.0,1116.320380188596,10,0,0,0,0,0,0,0,0,3,40.0,2,,1,100656,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1259.35043917434,264.0,59595.08014431692,0,1,1,2,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0142964821582046,59595.08014431692,10,5,10,10_0,10_4,10_1_0 +655,2,47.0,0.0,1,111,400.0,700.0,0.0,45,67,0.0,0.0,682.0802173488245,1100.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,1,20.0,2,,1,100657,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.5,4,3,1324.56962084117,400.0,39257.79660000714,1,1,1,2,85.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02801991184598985,15703.118640002856,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +656,2,49.0,0.0,2,300,150.0,0.0,0.0,43,33,0.0,0.0,255.78008150580916,150.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,100658,2,2,2,0,1,,300.0,,43,2.0,1.0,7.0,3.0,2.0,3,2,1584.25012811991,150.0,79665.48380810278,1,1,1,2,240.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0018828731444262374,39832.74190405139,9,5,9,9_1,9_0,9_0_1 +657,2,65.0,0.0,5,211,874.0,0.0,0.0,68,72,0.0,509.8660016489362,1490.3452749071814,1259.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100659,2,1,1,0,1,,450.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1513.70800208198,874.0,22653.222901718105,1,5,0,1,99.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055577080818134394,15102.148601145404,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +658,2,40.0,0.0,1,300,600.0,0.0,0.0,55,22,2636.7071275915036,79.45963662061344,1023.1203260232367,3160.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,100660,1,1,3,0,2,,160.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1086.06488361462,600.0,50458.05007529649,1,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06262628054957457,28032.25004183138,7,4,7,7_1,7_0,7_1_0 +659,2,35.0,0.0,2,111,0.0,1247.0,0.0,0,54,0.0,132.4327277010224,0.0,1789.0,0.0,2367.434547780917,50,0,0,0,0,0,0,0,0,0,,1,,2,100661,2,1,1,0,2,,400.0,,22,2.0,1.0,4.0,3.0,2.0,3,3,276.333787136442,0.0,39609.736519808255,0,1,0,1,80.0,5,4,2,0,1,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04516566271793671,19804.868259904128,5,3,5,5_1,5_2,5_0_1 +660,1,21.0,285.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,102.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,100662,1,2,0,1,2,,218.0,460.0,12,1.0,0.0,1.0,1.0,1.0,1,1,383.584149541352,0.0,5958.2105842714,0,2,2,3,26.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.017119233796345095,5958.2105842714,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +661,2,54.0,0.0,6,120,762.0,0.0,0.0,68,45,0.0,112.56781854586903,1299.3628140495107,901.0,74.82181817141213,0.0,42,0,0,0,0,0,0,0,0,3,30.0,1,,4,100663,2,2,2,0,1,,248.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1940.8606900123,762.0,58838.793112535845,1,1,0,1,95.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015313026531267145,39225.8620750239,9,5,9,9_1,9_1,9_0_0 +662,2,38.0,0.0,2,111,0.0,0.0,2900.0,85,64,0.0,0.0,1827.923042202757,2900.0,0.0,3470.5232279375746,71,1,2,2,1,2,2,2,2,2,45.0,1,,2,100664,2,1,2,0,1,,600.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,866.621912567509,0.0,63774.18434154678,7,1,1,2,110.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04547294536091378,26572.576808977825,7,4,7,7_1,7_2,7_0_1 +663,2,42.0,0.0,1,111,1035.0,0.0,0.0,46,37,0.0,0.0,1764.8825623900834,1035.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,1,100665,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1509.29303626035,1035.0,115962.8255530759,1,1,1,2,125.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.008925274070062073,55220.39312051233,10,5,10,10_0,10_2,10_1_0 +664,1,30.0,300.0,9,111,420.0,,,0,85,0.0,0.0,,564.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,100666,2,1,0,0,2,,480.0,700.0,31,0.0,0.0,4.0,3.0,1.6,1,1,91.64578032850176,420.0,11496.190104942201,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.049059731515533736,7185.118815588876,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +665,2,64.0,0.0,7,111,80.0,,,86,72,0.0,0.0,,206.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,100667,2,1,0,0,1,,120.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,114.0138325715255,80.0,9939.35593220339,6,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020725689008938952,6626.237288135594,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +666,2,33.0,0.0,5,111,360.0,1320.0,0.0,54,42,0.0,0.0,613.872195613942,1680.0,0.0,2506.0253432805216,42,0,0,0,0,0,0,0,0,1,10.0,2,,3,100668,1,1,0,1,2,,1080.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,287.085342859261,360.0,36944.61665862457,1,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04547347223882511,17592.67459934503,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +667,2,57.0,0.0,1,111,1378.0,2750.0,0.0,43,43,0.0,0.0,2349.7663487667005,4128.0,0.0,5220.88613183442,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,100669,2,1,2,0,1,,320.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,319.563027980253,1378.0,159526.29761413444,1,1,0,1,200.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025876611328277004,106350.86507608963,10,5,10,10_1,10_3,10_1_0 +668,1,26.0,340.0,7,120,420.0,,,0,55,0.0,0.0,,552.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,2,40.0,1,,5,100670,2,1,0,0,2,,200.0,570.0,32,1.0,0.0,3.0,2.0,1.3,1,1,129.02974322710068,420.0,14980.690735445767,0,1,2,3,69.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03684743312228684,11523.608258035205,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +669,1,76.0,228.0,1,111,350.0,,,0,77,0.0,0.0,,494.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,3,,1,100671,2,2,0,0,2,,0.0,428.0,11,0.0,0.0,2.0,1.0,1.0,1,1,42.96183206730496,350.0,13895.565257964961,0,5,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03555091072792727,13895.565257964961,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +670,0,51.0,0.0,2,111,0.0,0.0,0.0,77,63,0.0,0.0,0.0,232.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,1.0,3,,2,100672,2,1,0,1,1,,0.0,,42,1.0,2.0,1.0,2.0,1.5,2,2,1020.89541518565,0.0,28675.10271454262,7,1,5,0,14.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0080906423356015,19116.735143028414,5,3,5,5_0,5_2,5_0_1 +671,2,54.0,0.0,2,111,520.0,400.0,0.0,85,48,0.0,0.0,886.7042825534718,920.0,0.0,759.4016191759156,20,2,2,2,2,1,2,2,2,4,70.0,2,,2,100673,2,3,0,1,1,,0.0,,42,1.0,0.0,4.0,4.0,2.5,4,4,668.569170505512,520.0,73185.48799676342,6,1,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.012570798189399057,29274.19519870537,8,4,8,8_0,8_4,8_0_1 +672,2,75.0,0.0,8,111,800.0,,,86,78,0.0,0.0,,800.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,100674,2,1,0,0,2,,460.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,72.90520739808231,800.0,30493.861797147823,6,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026234788014774378,20329.24119809855,5,3,5,5_1,5_2,5_0_0 +673,2,66.0,0.0,1,111,200.0,0.0,0.0,75,74,0.0,0.0,341.04010867441224,1464.0,1751.3847809012025,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100675,2,1,2,0,1,,60.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1282.17081703379,200.0,33352.86423368198,5,5,0,1,130.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04389428115506654,22235.242822454657,6,3,6,6_1,6_3,6_1_0 +674,2,79.0,0.0,2,111,270.0,0.0,0.0,0,46,0.0,0.0,460.40414671045653,293.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,100676,2,1,0,1,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1441.65924365173,270.0,121721.92269708359,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002407125959792452,121721.92269708359,10,5,10,10_0,10_4,10_0_1 +675,2,51.0,0.0,6,211,420.0,,,67,85,0.0,0.0,,464.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,4,100677,1,1,0,0,2,,120.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,93.43579584664872,420.0,18159.3306201262,4,7,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025551602628223716,12106.220413417466,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +676,2,87.0,0.0,5,111,240.0,0.0,0.0,0,78,456.6776744988485,0.0,409.2481304092947,703.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,100678,2,1,0,1,1,,80.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1923.45528785731,240.0,28578.18731053512,0,5,0,1,80.0,6,4,9,1,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02459918091938759,28578.18731053512,8,4,8,8_0,8_2,8_0_0 +677,0,80.0,0.0,1,211,2500.0,0.0,0.0,0,75,0.0,0.0,4263.001358430153,2600.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,100679,2,1,3,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1683.37631443975,2500.0,32410.518716926585,0,5,0,1,135.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08022086973394026,32410.518716926585,8,4,8,8_1,8_1,8_1_0 +678,2,38.0,0.0,6,112,1530.0,0.0,0.0,43,47,0.0,331.081819252556,2608.9568313592536,1780.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,100680,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1356.60456405479,1530.0,52202.287061564995,1,1,1,2,110.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034098122902177626,29001.27058975833,8,4,8,8_1,8_0,8_0_0 +679,2,37.0,0.0,7,400,750.0,,,0,52,0.0,0.0,,930.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,5,100681,2,2,0,0,2,,0.0,,22,2.0,0.0,5.0,3.0,2.0,3,3,20.104377980657862,750.0,28879.914358756803,0,1,0,1,96.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0322023115597644,14439.957179378402,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +680,2,32.0,0.0,2,111,648.0,0.0,0.0,0,37,0.0,0.0,1104.9699521050957,648.0,0.0,0.0,10,2,2,2,2,1,2,2,1,3,30.0,2,,2,100682,1,3,0,0,2,,0.0,550.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1849.23432926596,648.0,32851.758678357684,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019724971388727936,32851.758678357684,8,4,8,8_0,8_4,8_0_1 +681,2,30.0,0.0,6,111,720.0,,,38,42,0.0,0.0,,813.0,128.85979796187644,,12,0,0,0,0,0,0,0,0,2,5.0,1,,4,100683,2,1,0,0,2,,260.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,114.67464562361955,720.0,64011.058101044335,1,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01270093049730006,35561.69894502463,9,5,9,9_1,9_2,9_0_0 +682,2,31.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,444.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,100684,2,2,0,1,1,412.0,0.0,380.0,32,1.0,0.0,3.0,2.0,1.3,1,1,779.303771147508,0.0,18909.64224387212,0,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02348008461894001,14545.878649132399,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +683,2,26.0,0.0,2,111,0.0,0.0,0.0,47,47,0.0,0.0,0.0,2696.0,0.0,0.0,43,0,0,0,0,0,0,0,0,4,80.0,2,,2,100685,2,1,0,0,1,,0.0,450.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1633.34413034389,0.0,45680.10340965538,1,1,2,3,60.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05901913084176924,30453.402273103584,8,4,8,8_0,8_2,8_0_1 +684,1,28.0,140.0,5,111,720.0,1100.0,0.0,0,63,0.0,0.0,1227.744391227884,1820.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,2,,3,100686,1,1,0,0,1,,577.0,945.0,22,2.0,0.0,4.0,3.0,2.0,3,3,2277.1762096001,720.0,9179.758096542992,0,1,2,3,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.1982623050476019,4589.879048271496,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +686,2,49.0,0.0,1,111,871.0,0.0,0.0,47,38,2109.365702073203,79.45963662061344,1485.2296732770653,2985.0,74.82181817141213,0.0,42,0,0,0,0,0,0,0,0,3,75.0,1,,1,100688,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,351.443788122115,871.0,69293.49791353862,1,1,1,2,100.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04307763484136061,46195.665275692416,10,5,10,10_1,10_4,10_1_0 +687,2,83.0,0.0,5,111,346.0,2690.0,0.0,0,72,0.0,0.0,589.9993880067332,3036.0,0.0,5106.975888958033,50,0,0,0,0,0,0,0,0,0,,1,,3,100689,2,1,1,0,1,,416.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,749.635405416067,346.0,38235.13103605752,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07940341559538294,38235.13103605752,9,5,9,9_1,9_4,9_0_0 +688,0,85.0,0.0,1,400,1050.0,0.0,0.0,0,77,0.0,927.0290939071567,1790.4605705406643,4850.0,4295.326598729215,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100690,2,2,2,0,1,,245.0,,21,0.0,2.0,6.0,2.0,1.5,2,2,1502.70739114719,1050.0,20647.118842716933,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2348996020677621,13764.745895144622,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +689,1,42.0,200.0,2,111,350.0,1930.0,0.0,35,43,0.0,0.0,596.8201901802214,2280.0,0.0,3664.112812523793,31,2,2,2,1,1,2,2,2,2,20.0,1,,2,100691,2,3,4,0,2,,400.0,1402.0,43,2.0,0.0,4.0,4.0,2.5,4,3,795.678864475055,350.0,39295.11218080908,1,1,2,3,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,1,0.058022483547292295,15718.044872323633,3,2,3_1,3_1_1,3_4_1,3_0_1_1 +690,2,32.0,0.0,2,112,640.0,980.0,0.0,56,45,0.0,0.0,1091.3283477581192,1620.0,0.0,1860.5339669809932,31,0,0,0,0,0,0,0,0,3,90.0,1,,2,100692,2,1,2,0,1,,406.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,2059.04267290278,640.0,52859.69324758816,1,1,1,2,130.0,8,2,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030647169903391672,22024.872186495068,6,3,6,6_1,6_1,6_0_1 +691,1,26.0,357.0,7,111,720.0,,,81,47,0.0,0.0,,764.0,60.965925917446924,,60,0,0,0,0,0,0,0,0,0,,2,,5,100693,1,1,0,0,1,,480.0,426.0,43,2.0,0.0,2.0,3.0,1.8,2,2,124.54931771558982,720.0,11480.071144655292,4,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06655011021910703,6377.817302586273,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +692,2,53.0,0.0,5,111,531.0,2658.0,0.0,42,42,0.0,92.70290939071567,905.4614885305645,3259.0,0.0,5046.22375942396,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,100694,2,2,3,0,1,,853.0,,43,2.0,0.0,7.0,5.0,3.0,5,5,622.490849225285,531.0,132789.5746013423,1,1,1,2,230.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024542589354503864,44263.191533780766,10,5,10,10_1,10_4,10_0_0 +693,2,41.0,0.0,2,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,2255.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,100695,2,3,3,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,847.92767637342,0.0,76446.27706106538,6,1,0,1,135.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029497839354540485,42470.1539228141,9,5,9,9_1,9_4,9_0_1 +694,2,44.0,0.0,5,111,1200.0,0.0,0.0,45,43,2636.7071275915036,264.8654554020448,2046.2406520464733,3900.0,0.0,0.0,33,2,2,1,1,2,2,2,2,0,,1,,3,100696,2,2,1,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,1006.27842057366,1200.0,95928.95995937151,1,1,1,2,136.0,5,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04065508477994294,45680.45712351024,10,5,10,10_1,10_2,10_0_0 +695,2,45.0,0.0,7,111,670.0,870.0,0.0,63,33,0.0,0.0,1142.484364059281,1540.0,0.0,1651.6985217076165,71,0,0,0,0,0,0,0,0,3,60.0,2,,5,100697,2,1,0,0,1,,0.0,635.0,43,2.0,2.0,4.0,5.0,2.5999999999999996,3,3,878.473233690818,670.0,37038.12298591507,1,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04157878088437781,14245.431917659644,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +696,2,74.0,0.0,6,111,350.0,,,0,22,0.0,0.0,,415.0,90.06329965077386,,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,100698,1,2,0,0,2,,200.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,109.10738804250775,350.0,60090.02013390273,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006906304891814429,60090.02013390273,10,5,10,10_1,10_3,10_0_0 +697,1,39.0,327.0,5,111,162.0,72.0,0.0,0,62,0.0,0.0,276.2424880262739,234.0,0.0,136.6922914516648,71,2,2,2,1,1,2,2,2,0,,2,,3,100699,1,3,0,1,1,561.0,0.0,305.0,32,1.0,0.0,3.0,2.0,1.5,2,1,261.504996085921,162.0,8977.49261254519,0,4,2,3,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.026065184355931113,5984.995075030126,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +698,1,38.0,220.0,1,112,360.0,0.0,0.0,0,42,632.8097106219609,0.0,613.872195613942,1200.0,332.541414095165,0.0,50,1,2,2,2,1,1,2,2,0,,8,,1,100700,2,3,0,1,1,1200.0,0.0,308.0,32,1.0,0.0,3.0,2.0,1.3,1,1,782.070954313077,360.0,8075.58691878823,0,1,2,3,68.0,9,3,4,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.14859601067609637,6211.989937529407,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +699,1,91.0,121.0,2,111,336.0,,,0,77,0.0,0.0,,566.0,318.68552184119983,,50,0,0,0,0,0,0,0,0,0,,2,,2,100701,2,2,0,0,2,,848.0,273.0,21,1.0,0.0,3.0,2.0,1.5,2,2,83.03863488362332,336.0,14223.491427717689,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.039793323803536805,9482.327618478459,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +700,2,58.0,0.0,7,111,450.0,0.0,0.0,77,63,0.0,662.163638505112,767.3402445174275,1000.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,100702,2,1,1,0,1,,370.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1019.83487973394,450.0,29533.583360358618,5,1,0,1,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03385975849250476,19689.055573572412,5,3,5,5_1,5_3,5_0_0 +701,2,75.0,0.0,2,111,360.0,1620.0,0.0,86,78,0.0,0.0,613.872195613942,1980.0,0.0,3075.576557662458,50,0,0,0,0,0,0,0,0,0,,1,,2,100703,2,1,2,0,1,,340.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,383.03698582048,360.0,22499.633607408243,6,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0880014330254722,14999.755738272162,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +702,2,53.0,0.0,2,111,480.0,0.0,0.0,52,47,0.0,0.0,818.4962608185893,480.0,0.0,0.0,50,1,2,2,1,1,2,2,2,2,30.0,2,,2,100704,1,3,0,1,1,588.0,0.0,324.0,43,3.0,2.0,4.0,4.0,2.3,3,3,261.521763326198,480.0,58485.07509742267,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.008207222085300062,25428.293520618554,7,4,7,7_0,7_4,7_0_1 +703,2,22.0,0.0,2,112,0.0,0.0,0.0,55,56,0.0,0.0,0.0,1548.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,100705,2,2,2,0,1,,531.0,500.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1211.96214733805,0.0,16860.869665966115,4,1,2,3,80.0,6,1,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09181021090060723,11240.579777310742,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +704,2,48.0,0.0,9,111,700.0,0.0,0.0,52,68,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,100706,2,1,1,0,1,,408.0,413.0,43,3.0,0.0,4.0,4.0,2.5,4,3,1560.50022595486,700.0,45039.0,1,1,2,3,80.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01687426452629943,18015.6,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +705,2,25.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1130.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,1,100707,1,1,0,0,1,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,874.416005557375,0.0,18691.454223964287,0,1,2,3,35.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06045543521976094,18691.454223964287,5,3,5,5_0,5_3,5_1_0 +706,1,54.0,250.0,6,211,600.0,,,52,47,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,0,,8,,4,100708,2,2,0,0,2,,700.0,300.0,43,2.0,0.0,2.0,2.0,1.5,2,2,91.78897413481378,600.0,19787.36232784889,4,4,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030322384058008342,13191.574885232592,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +707,2,75.0,0.0,5,112,1400.0,0.0,0.0,74,77,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,100709,2,1,2,0,1,,225.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,736.871406704478,1400.0,65409.78177093448,5,5,0,1,97.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021403526538321286,43606.521180622985,10,5,10,10_1,10_0,10_0_0 +708,2,41.0,0.0,7,112,1500.0,0.0,0.0,55,45,0.0,529.7309108040896,2557.8008150580918,1900.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,5,100710,2,1,2,0,1,,249.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,2014.08168213349,1500.0,57219.47643993258,1,1,1,2,175.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03320547684483914,27247.369733301228,7,4,7,7_1,7_1,7_0_0 +709,2,53.0,0.0,5,111,417.0,1476.0,0.0,38,37,0.0,0.0,711.0686265861495,1893.0,0.0,2802.1919747591287,20,0,0,0,0,0,0,0,0,3,60.0,1,,3,100711,2,1,3,0,2,,351.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,598.222107913466,417.0,89717.55754365773,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021099548982693176,59811.70502910516,10,5,10,10_1,10_4,10_0_0 +711,2,42.0,0.0,6,111,700.0,,,56,62,0.0,264.8654554020448,,980.0,110.84713803172167,,50,0,0,0,0,0,0,0,0,1,30.0,1,,4,100713,1,2,0,0,2,,540.0,375.0,43,2.0,2.0,4.0,6.0,2.8999999999999995,3,2,160.56467512459687,700.0,43424.12648099058,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0225680993359534,14973.83671758296,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +712,2,49.0,0.0,9,111,411.0,,,0,54,0.0,0.0,,457.0,63.73710436823996,,42,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,100714,2,2,0,0,2,,630.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,140.15972277673126,411.0,53324.0,0,1,1,2,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0085702497937139,35549.333333333336,9,5,9,9_1,9_2,9_0_0 +713,1,62.0,270.0,6,111,600.0,0.0,0.0,0,72,0.0,0.0,1023.1203260232367,664.0,88.67771042537734,0.0,50,2,2,1,2,1,2,2,2,0,,2,,4,100715,2,1,0,0,1,,0.0,320.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1074.64221834424,600.0,16906.717002704787,0,5,2,3,50.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.039274331018480484,16906.717002704787,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +714,0,63.0,0.0,2,112,64.0,0.0,0.0,0,47,0.0,0.0,109.13283477581192,64.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,,2,100716,2,1,2,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,997.078808578663,64.0,44801.84830688044,0,1,5,0,80.0,10,1,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0014285124926457823,44801.84830688044,10,5,10,10_1,10_1,10_0_1 +715,2,58.0,0.0,2,112,390.0,1290.0,0.0,0,75,0.0,0.0,665.0282119151038,1745.0,90.06329965077386,2449.070221842328,31,2,1,1,1,1,2,2,2,0,,1,,2,100717,2,2,2,1,2,1240.0,0.0,224.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1211.46033531633,390.0,26970.803583068388,0,5,2,3,67.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.06469959245468936,26970.803583068388,7,4,7,7_1,7_0,7_0_1 +716,2,44.0,0.0,7,111,216.0,,,0,56,0.0,0.0,,360.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,5,100718,2,1,0,0,2,,240.0,,32,3.0,0.0,5.0,3.0,2.0,3,3,97.0345847342345,216.0,10167.370006515985,0,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035407386548270206,5083.685003257992,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +717,2,49.0,0.0,2,112,1695.0,0.0,0.0,52,53,0.0,0.0,2890.314921015644,1815.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,100719,2,1,1,0,1,,591.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,540.518924681498,1695.0,46127.05441683927,1,1,0,1,90.0,8,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039347840935132654,18450.82176673571,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +718,1,36.0,237.0,2,111,150.0,100.0,0.0,0,56,0.0,0.0,255.78008150580916,250.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,0,,2,,2,100720,1,3,0,0,1,,90.0,224.0,12,1.0,0.0,1.0,1.0,1.0,1,1,825.724743260514,150.0,7921.397736472598,0,4,2,3,35.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031560086782276016,7921.397736472598,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +719,2,35.0,0.0,2,111,1000.0,1000.0,0.0,64,46,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,100721,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,948.825066405049,1000.0,63049.79569961585,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03172095924828169,35027.664277564356,9,5,9,9_1,9_4,9_0_1 +720,2,31.0,0.0,5,111,180.0,84.0,0.0,0,47,0.0,0.0,306.936097806971,264.0,0.0,159.4743400269423,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,100722,2,3,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1659.41485296112,180.0,25603.194313539658,0,1,1,2,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010311213388728988,25603.194313539658,7,4,7,7_0,7_3,7_0_0 +721,2,52.0,0.0,6,211,378.0,,,68,65,0.0,0.0,,516.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,4,45.0,1,,4,100723,2,2,0,0,2,,400.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,93.86813475563595,378.0,38881.31984514206,1,1,0,1,83.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013271154427245361,25920.879896761373,7,4,7,7_1,7_2,7_0_0 +722,2,66.0,0.0,7,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,2408.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,100724,2,1,0,0,1,,0.0,,41,1.0,0.0,3.0,3.0,2.0,3,3,1042.39570922246,0.0,71884.18244481394,5,5,0,1,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03349832909136361,35942.09122240697,9,5,9,9_0,9_4,9_0_0 +723,2,41.0,0.0,2,111,240.0,240.0,0.0,52,64,0.0,0.0,409.2481304092947,480.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,0,,2,,2,100725,2,3,0,1,1,573.0,0.0,630.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1571.80992865855,240.0,40844.35641920003,1,1,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011751929570724308,19449.69353295239,5,3,5,5_0,5_3,5_0_1 +724,2,71.0,0.0,2,211,0.0,0.0,0.0,0,75,0.0,0.0,0.0,580.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,100726,2,2,0,1,1,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1943.11991822825,0.0,25842.329421713912,0,5,0,1,83.0,1,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02244379717227261,25842.329421713912,7,4,7,7_0,7_1,7_0_1 +725,2,75.0,0.0,5,120,150.0,10.0,0.0,0,75,0.0,0.0,255.78008150580916,160.0,0.0,18.985040479397888,50,0,0,0,0,0,0,0,0,0,,1,,3,100727,2,1,2,0,1,,226.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1370.18003675142,150.0,29985.372826503863,0,5,0,1,102.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005335934988227898,29985.372826503863,8,4,8,8_1,8_0,8_0_0 +726,2,67.0,0.0,1,111,1000.0,1000.0,0.0,0,75,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,0,,1,,1,100728,2,2,4,0,1,,90.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1621.12136203323,1000.0,56312.635452047936,0,5,0,1,110.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03551600780082591,56312.635452047936,10,5,10,10_1,10_3,10_1_0 +727,2,52.0,0.0,1,111,440.0,0.0,0.0,0,67,2984.752468433582,0.0,750.2882390837069,3390.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100729,2,1,1,0,1,,451.0,,22,2.0,0.0,5.0,4.0,2.5,4,4,351.871094435219,440.0,55013.10302814994,0,1,0,1,100.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06162168307912668,22005.241211259978,6,3,6,6_1,6_2,6_1_0 +728,1,38.0,250.0,6,112,0.0,0.0,0.0,0,21,0.0,0.0,0.0,1189.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,4,100730,2,1,2,0,2,,1027.0,765.0,32,1.0,0.0,4.0,3.0,1.6,1,1,466.755902346737,0.0,17025.986910223863,0,1,2,3,90.0,9,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06983442465153208,10641.241818889914,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +730,2,62.0,0.0,7,111,501.0,1456.0,0.0,55,78,0.0,0.0,854.3054722294027,1957.0,0.0,2764.221893800333,50,0,0,0,0,0,0,0,0,0,,1,,5,100732,2,2,2,0,1,,414.0,,42,1.0,3.0,5.0,3.0,2.0,3,3,206.677542658492,501.0,32606.58843267443,1,5,1,2,115.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060018545148959164,16303.294216337215,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +731,1,44.0,240.0,7,111,144.0,30.0,0.0,0,56,0.0,569.4607291143963,245.54887824557682,604.0,0.0,56.95512143819367,71,0,0,0,0,0,0,0,0,0,,2,,5,100733,2,1,0,1,1,440.0,0.0,335.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1737.32994967274,144.0,1855.7723185312798,0,1,2,3,30.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.325470961048727,1855.7723185312798,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +732,2,82.0,0.0,2,111,409.0,1272.0,0.0,0,75,0.0,0.0,697.427022239173,1681.0,0.0,2414.8971489794117,10,0,0,0,0,0,0,0,0,0,,1,,2,100734,2,2,2,0,1,,56.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,1290.73561853229,409.0,58307.0,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02883015761400861,38871.333333333336,9,5,9,9_1,9_4,9_0_1 +733,2,26.0,0.0,9,111,0.0,0.0,1200.0,63,52,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,50,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,100735,2,2,0,0,1,,0.0,816.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2096.76685067208,0.0,69232.48148877214,1,1,2,3,66.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017332904645265552,38462.48971598452,9,5,9,9_0,9_2,9_0_0 +735,0,73.0,0.0,2,111,472.0,0.0,0.0,0,74,2562.8793280189416,0.0,804.8546564716129,2902.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,100737,2,2,3,0,1,,228.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,659.741552525044,472.0,64128.894373670366,0,5,0,1,124.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04525261238858166,64128.894373670366,10,5,10,10_1,10_2,10_0_1 +736,2,54.0,0.0,7,112,700.0,0.0,0.0,45,45,843.7462808292812,0.0,1193.6403803604428,1560.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,,5,100738,2,2,2,0,1,,260.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1255.93935507983,700.0,74788.34661190916,1,1,0,1,100.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02085886465835559,49858.897741272776,10,5,10,10_1,10_0,10_0_0 +737,2,41.0,0.0,2,111,0.0,0.0,0.0,35,21,0.0,0.0,0.0,758.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100739,2,1,0,0,1,,0.0,850.0,43,2.0,1.0,3.0,3.0,2.0,3,2,822.42860392858,0.0,68457.88826576389,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011072500470030996,34228.944132881945,9,5,9,9_0,9_4,9_0_1 +738,2,28.0,0.0,6,112,2000.0,0.0,0.0,56,46,0.0,0.0,3410.4010867441225,2200.0,277.1178450793042,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,100740,2,2,2,0,1,,400.0,700.0,43,2.0,0.0,4.0,2.0,1.5,2,2,358.275754182783,2000.0,35324.08201471083,1,1,3,4,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06228045782148854,23549.388009807222,6,3,6,6_1,6_0,6_0_0 +739,0,73.0,0.0,5,111,273.0,946.0,0.0,0,74,0.0,0.0,465.5197483405727,1219.0,0.0,1795.9848293510404,50,0,0,0,0,0,0,0,0,0,,1,,3,100741,2,2,3,0,1,,292.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,362.214293615584,273.0,28275.92693470745,0,5,5,0,50.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04311087671201086,28275.92693470745,8,4,8,8_1,8_2,8_0_0 +740,2,65.0,0.0,2,111,240.0,84.0,0.0,78,77,0.0,0.0,409.2481304092947,324.0,0.0,159.4743400269423,70,0,0,0,0,0,0,0,0,0,,2,,2,100742,2,1,0,1,1,768.0,0.0,343.0,41,0.0,1.0,3.0,2.0,1.5,2,2,178.706642936926,240.0,40166.22503240638,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008066478732780952,26777.483354937587,7,4,7,7_0,7_4,7_0_1 +741,2,46.0,0.0,6,111,250.0,0.0,0.0,90,37,0.0,0.0,426.3001358430153,250.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,100743,2,1,2,0,1,,595.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,621.523172096421,250.0,111506.15220082573,4,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0022420287586441233,48480.935739489454,10,5,10,10_1,10_4,10_0_0 +742,2,50.0,0.0,7,112,0.0,,,0,85,0.0,0.0,,250.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,100744,2,2,0,0,2,,100.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,82.42029136667685,0.0,7032.0,0,7,0,1,95.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035551763367463025,7032.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +743,2,87.0,0.0,5,300,511.0,2056.0,0.0,0,77,0.0,0.0,871.3574776631233,2567.0,0.0,3903.3243225642063,60,2,2,2,2,2,2,2,1,0,,1,,3,100745,1,1,2,0,2,,142.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,848.047176076275,511.0,20601.816352136695,0,5,0,1,90.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.12460066414162392,20601.816352136695,5,3,5,5_1,5_0,5_0_0 +744,2,76.0,0.0,2,111,610.0,0.0,0.0,0,74,0.0,0.0,1040.1723314569574,610.0,0.0,0.0,10,2,1,1,1,1,2,2,2,0,,2,,2,100746,2,1,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1788.7334877054,610.0,33826.34412733011,0,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01803328192085495,33826.34412733011,9,5,9,9_0,9_3,9_0_1 +745,2,61.0,0.0,2,111,140.0,840.0,0.0,0,78,0.0,0.0,238.72807607208856,980.0,0.0,1594.7434002694229,71,0,0,0,0,0,0,0,0,0,,2,,2,100747,2,1,0,0,1,,0.0,306.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1383.26538948598,140.0,33731.74224623068,0,5,2,3,25.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02905275371922152,33731.74224623068,9,5,9,9_0,9_4,9_0_1 +746,2,47.0,0.0,2,111,650.0,1152.0,0.0,55,53,0.0,0.0,1108.3803531918397,1802.0,0.0,2187.076663226637,71,2,2,2,2,1,2,2,2,2,45.0,1,,2,100748,2,1,1,0,1,,672.0,,43,3.0,0.0,5.0,5.0,2.8,4,4,734.535350872996,650.0,52006.549596589975,1,1,1,2,62.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.034649481920603235,18573.76771306785,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +747,2,62.0,0.0,7,400,540.0,,,0,56,0.0,0.0,,660.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,100749,2,3,0,0,2,,0.0,,22,2.0,0.0,3.0,4.0,2.1,2,2,42.302074128053185,540.0,8088.560209032523,0,4,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08159672215371232,3851.6953376345346,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +748,2,45.0,0.0,5,111,230.0,0.0,0.0,0,68,0.0,0.0,392.1961249755741,230.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,25.0,2,,3,100750,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1125.10008125938,230.0,14552.432663566047,0,1,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015804917659975548,14552.432663566047,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +749,2,37.0,0.0,9,112,630.0,0.0,0.0,67,21,527.3414255183008,0.0,1074.2763423243985,1194.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,100751,2,2,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,699.812994570225,630.0,40345.279443735315,1,1,1,2,113.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029594540339350668,17541.425845102312,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +750,1,59.0,100.0,5,111,1150.0,0.0,0.0,0,54,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,100752,2,1,0,0,2,,0.0,302.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2615.24810612783,1150.0,9605.7970737239,0,4,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11971937270523425,9605.7970737239,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +751,2,41.0,0.0,7,111,800.0,,,42,42,0.0,0.0,,860.0,83.13535352379125,,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,100753,2,1,0,0,2,,1000.0,1000.0,43,2.0,0.0,5.0,5.0,2.4,2,2,105.28654495754911,800.0,71842.81159161194,1,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011970578279823474,29934.50482983831,8,4,8,8_1,8_3,8_0_0 +752,0,38.0,0.0,7,111,1008.0,,,0,68,0.0,0.0,,1176.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,5,100754,2,1,0,0,1,,390.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,73.1958938609709,1008.0,21469.298546671,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05477589300104772,11927.38808148389,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +753,1,74.0,81.0,2,111,360.0,477.0,0.0,0,77,0.0,0.0,613.872195613942,837.0,0.0,905.5864308672793,70,0,0,0,0,0,0,0,0,0,,2,,2,100755,2,2,0,0,1,,260.0,215.0,11,0.0,5.0,3.0,1.0,1.0,1,1,554.447603982834,360.0,11988.215694824681,0,5,2,3,82.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06981856360503534,11988.215694824681,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +754,2,25.0,0.0,2,111,335.0,335.0,0.0,0,85,0.0,0.0,571.2421820296405,670.0,0.0,635.9988560598293,50,1,2,2,1,1,2,2,2,0,,2,,2,100756,2,3,0,1,1,600.0,0.0,347.0,21,1.0,0.0,2.0,2.0,1.5,2,2,821.046357972245,335.0,4612.524970111797,0,7,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.14525666621675995,3075.016646741198,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +755,2,55.0,0.0,5,112,1400.0,0.0,0.0,54,42,0.0,397.2981831030672,2387.2807607208856,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,100757,2,2,2,0,1,,370.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,774.164577126442,1400.0,77357.76917597065,1,1,0,1,88.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02197581468685972,51571.84611731377,10,5,10,10_1,10_2,10_0_0 +756,2,29.0,0.0,5,111,0.0,0.0,0.0,52,53,0.0,0.0,0.0,655.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,2,,3,100758,2,1,0,1,1,840.0,0.0,514.0,43,2.0,0.0,5.0,4.0,2.1,2,2,700.199308098865,0.0,37713.64633472149,1,1,2,3,91.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017367718681631877,17958.87920701023,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +757,2,79.0,0.0,2,111,500.0,0.0,0.0,0,86,4218.731404146406,0.0,852.6002716860306,5599.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,100759,2,2,2,0,1,,400.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,975.834639404146,500.0,28335.503752148863,0,6,0,1,100.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1975966282080089,28335.503752148863,8,4,8,8_1,8_4,8_0_1 +758,2,76.0,0.0,6,111,340.0,1000.0,0.0,77,78,0.0,0.0,579.7681847465008,1340.0,0.0,1898.504047939789,71,2,2,2,2,1,2,2,2,0,,2,,4,100760,2,2,0,0,1,,569.0,336.0,41,0.0,9.0,3.0,2.0,1.5,2,2,1387.25983828185,340.0,28208.59372660743,5,5,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04750325425602697,18805.72915107162,5,3,5,5_0,5_3,5_0_0 +759,2,63.0,0.0,1,111,400.0,800.0,0.0,86,78,0.0,264.8654554020448,682.0802173488245,1400.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,1,100761,2,1,1,0,1,,400.0,,41,1.0,5.0,5.0,3.0,2.0,3,3,1161.92108958564,400.0,35204.29441249504,6,5,0,1,140.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.039767875577790275,17602.14720624752,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +760,2,28.0,0.0,2,111,0.0,0.0,0.0,55,43,0.0,0.0,0.0,632.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,100762,1,2,0,1,1,686.0,0.0,374.0,43,2.0,0.0,3.0,4.0,2.1,2,2,197.421110507697,0.0,46171.97314820854,1,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013687957366936168,21986.653880099304,6,3,6,6_0,6_4,6_0_1 +761,2,31.0,0.0,1,112,520.0,1800.0,0.0,67,54,0.0,0.0,886.7042825534718,2320.0,0.0,3417.30728629162,10,0,0,0,0,0,0,0,0,2,50.0,1,,1,100763,2,1,4,0,1,,160.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,209.919115822603,520.0,63697.805982160695,1,1,1,2,130.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03642197661642762,42465.20398810713,9,5,9,9_1,9_0,9_1_0 +762,2,60.0,0.0,7,120,750.0,,,71,86,0.0,0.0,,990.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,5,100764,2,1,0,0,2,,380.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,109.52555659840822,750.0,16502.91329301437,7,6,0,1,97.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05998940807736436,8251.456646507186,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +763,2,24.0,0.0,1,111,1229.0,0.0,0.0,54,64,0.0,0.0,2095.691467804263,1304.0,103.91919190473907,0.0,60,2,2,2,2,1,2,2,2,2,10.0,1,,1,100765,2,1,1,0,1,,400.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,246.731803421153,1229.0,35194.74368336189,1,1,1,2,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03705098726479597,19552.635379645497,5,3,5,5_1,5_3,5_1_0 +764,2,65.0,0.0,2,400,450.0,0.0,0.0,77,78,0.0,52.973091080408956,767.3402445174275,565.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100766,1,3,4,0,2,,300.0,275.0,41,0.0,4.0,4.0,2.0,1.5,2,2,979.012895574268,450.0,18902.753934639386,5,5,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02988982462310081,12601.835956426257,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +766,2,44.0,0.0,7,211,3000.0,,,22,22,0.0,0.0,,3070.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,1,10.0,1,,5,100768,1,2,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,47.83832380255935,3000.0,29315.00927303279,1,1,0,1,109.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10472451062207673,12745.656205666432,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +767,1,25.0,259.0,9,120,780.0,,,85,63,0.0,0.0,,780.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,2008.0,6,100769,2,1,0,0,1,,240.0,634.0,42,1.0,0.0,3.0,3.0,1.8,2,2,94.31931589494391,780.0,30713.89845599316,6,1,2,3,63.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025395669036204674,17063.2769199962,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +768,2,76.0,0.0,5,111,400.0,0.0,0.0,0,77,0.0,0.0,682.0802173488245,400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,100770,2,1,0,1,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,415.22892903615,400.0,14861.885450695876,0,5,0,1,99.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02691448546868398,14861.885450695876,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +769,2,84.0,0.0,1,112,160.0,0.0,0.0,0,86,0.0,1721.6254601132912,272.8320869395298,1520.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,100771,1,3,4,0,2,,90.0,0.0,11,0.0,3.0,4.0,1.0,1.0,1,1,68.0952532718813,160.0,12083.151164562405,0,5,2,3,70.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12579499993825058,12083.151164562405,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +770,2,26.0,0.0,2,111,300.0,200.0,0.0,0,48,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,31,2,2,2,2,1,2,2,2,2,10.0,2,,2,100772,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1814.30939049332,300.0,25453.09038112551,0,1,1,2,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019643980063449196,25453.09038112551,7,4,7,7_0,7_3,7_0_1 +772,2,61.0,0.0,6,112,600.0,0.0,0.0,72,72,0.0,1059.4618216081792,1023.1203260232367,1520.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,100774,2,1,2,0,1,,350.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,565.352980022592,600.0,21512.92892629791,5,5,0,1,120.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07065518624671865,14341.95261753194,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +773,2,58.0,0.0,1,111,1355.0,0.0,0.0,77,64,0.0,0.0,2310.546736269143,1623.0,371.3379124062676,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,100775,2,1,2,0,1,,392.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,1797.89216430984,1355.0,31731.482160981297,6,1,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05114794171183489,21154.3214406542,5,3,5,5_1,5_3,5_1_0 +774,1,74.0,95.0,2,111,191.0,94.0,0.0,0,77,0.0,0.0,325.6933037840637,285.0,0.0,178.45938050634015,70,2,2,2,2,1,2,2,2,0,,2,,2,100776,1,3,0,1,1,38.0,90.0,248.0,11,0.0,1.0,3.0,1.0,1.0,1,1,325.409763928784,191.0,11538.653352076,0,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.024699589397815098,11538.653352076,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +775,2,79.0,0.0,2,111,350.0,900.0,0.0,0,90,0.0,0.0,596.8201901802214,1250.0,0.0,1708.65364314581,70,0,0,0,0,0,0,0,0,0,,2,,2,100777,2,2,0,0,1,,60.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1450.40156238206,350.0,27124.063079865275,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04608454110726131,27124.063079865275,7,4,7,7_0,7_4,7_0_1 +776,2,55.0,0.0,6,111,569.0,751.0,0.0,77,46,0.0,0.0,970.2591091787028,1320.0,0.0,1425.7765400027815,42,0,0,0,0,0,0,0,0,2,45.0,2,,4,100778,1,1,0,0,1,,0.0,625.0,42,1.0,0.0,3.0,2.0,1.5,2,2,360.25148598128,569.0,53216.29842459768,5,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024804430955871756,35477.53228306512,9,5,9,9_0,9_3,9_0_0 +777,1,69.0,146.0,7,111,244.0,,,0,86,0.0,0.0,,284.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,2,,5,100779,2,1,0,0,2,,160.0,459.0,11,0.0,3.0,4.0,1.0,1.0,1,1,134.36193546350756,244.0,9349.588751313513,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030375667588598606,9349.588751313513,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +778,2,76.0,0.0,2,111,150.0,1310.0,0.0,0,75,0.0,0.0,255.78008150580916,1460.0,0.0,2487.0403028011237,60,1,2,2,1,2,2,2,2,0,,1,,2,100780,1,2,3,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1224.80954215917,150.0,24328.134646081413,0,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.06001282142012337,24328.134646081413,7,4,7,7_1,7_3,7_0_1 +779,2,59.0,0.0,5,112,335.0,1315.0,0.0,45,47,0.0,0.0,571.2421820296405,1650.0,0.0,2496.5328230408227,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,100781,2,1,2,0,1,,203.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,765.061692809726,335.0,75455.53228685475,1,1,0,1,110.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021867183889542976,50303.6881912365,10,5,10,10_1,10_1,10_0_0 +780,2,24.0,0.0,9,111,856.0,0.0,0.0,63,62,0.0,0.0,1459.6516651264844,856.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,100782,2,1,0,0,1,,408.0,680.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1768.31959342738,856.0,34133.53637764746,1,1,2,3,58.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02507797582205858,22755.690918431643,6,3,6,6_0,6_3,6_0_0 +781,1,49.0,270.0,1,111,252.0,516.0,0.0,0,54,0.0,0.0,429.7105369297594,768.0,0.0,979.6280887369311,43,0,0,0,0,0,0,0,0,0,,2,,1,100783,1,1,0,0,1,,200.0,357.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2963.41174990958,252.0,5351.0,0,4,2,3,28.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1435245748458232,5351.0,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +782,1,49.0,51.0,2,111,210.0,352.0,0.0,0,63,0.0,0.0,358.0921141081328,562.0,0.0,668.2734248748058,71,2,1,2,1,2,2,2,2,2,20.0,2,,2,100784,1,2,0,1,1,708.0,0.0,338.0,32,2.0,1.0,3.0,2.0,1.5,2,2,260.977059269913,210.0,30199.128140818484,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.018609808779226834,20132.75209387899,5,3,5,5_0,5_4,5_0_1 +783,2,37.0,0.0,5,111,363.0,360.0,0.0,0,52,0.0,0.0,618.9877972440582,723.0,0.0,683.461457258324,41,2,1,2,1,2,2,2,2,3,60.0,2,,3,100785,2,3,0,1,1,684.0,0.0,596.0,32,1.0,0.0,4.0,3.0,1.6,1,1,209.363590478392,363.0,32597.018040252013,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.022179942935492216,20373.136275157507,5,3,5,5_0,5_4,5_0_0 +785,2,50.0,0.0,1,111,2292.0,,,22,22,0.0,0.0,,2430.0,191.2113131047199,,41,0,0,0,0,0,0,0,0,0,,1,,1,100787,2,3,0,0,2,,792.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,8.250686085451376,2292.0,128991.52403794175,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018838447084982394,56083.271320844244,10,5,10,10_1,10_2,10_1_0 +786,0,55.0,0.0,1,112,1500.0,0.0,0.0,54,62,0.0,0.0,2557.8008150580918,1650.0,207.83838380947813,0.0,71,2,2,2,2,1,1,2,2,2,5.0,1,,1,100788,1,1,3,0,2,,200.0,,43,2.0,3.0,3.0,2.0,1.5,2,2,987.920066706958,1500.0,46166.0,1,1,5,0,90.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03574058831174457,30777.333333333332,8,4,8,8_1,8_0,8_1_0 +787,2,47.0,0.0,2,111,455.0,1225.0,0.0,48,52,0.0,0.0,775.8662472342878,1680.0,0.0,2325.6674587262414,50,0,0,0,0,0,0,0,0,2,12.0,2,,2,100789,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1829.93700462622,455.0,54094.36714507816,1,1,1,2,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031056838052922055,25759.222450037218,7,4,7,7_0,7_3,7_0_1 +788,2,34.0,0.0,1,111,520.0,0.0,0.0,0,68,0.0,0.0,886.7042825534718,520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,1,100790,2,2,0,0,2,,0.0,493.0,12,1.0,0.0,1.0,1.0,1.0,1,1,805.958481331177,520.0,12687.520825526972,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04098515440099008,12687.520825526972,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +789,0,32.0,0.0,2,111,1080.0,2160.0,0.0,34,45,0.0,0.0,1841.6165868418261,3240.0,0.0,4100.768743549944,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,100791,2,2,2,0,1,,1000.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1193.27173630126,1080.0,40478.00721756619,1,1,5,0,200.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08004346613669117,22487.781787536773,6,3,6,6_1,6_3,6_0_1 +790,2,67.0,0.0,2,111,300.0,91.0,0.0,75,75,0.0,0.0,511.56016301161833,391.0,0.0,172.7638683625208,50,0,0,0,0,0,0,0,0,0,,2,,2,100792,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,284.635135098456,300.0,62476.60701547832,5,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006258342420918142,41651.07134365221,9,5,9,9_0,9_4,9_0_1 +791,1,42.0,216.0,5,111,300.0,600.0,0.0,0,47,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,43,0,0,0,0,0,0,0,0,0,,2,,3,100793,1,3,0,0,1,,0.0,458.0,32,2.0,0.0,4.0,2.0,1.5,2,2,408.504907650581,300.0,7433.325489649637,0,4,2,3,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.12107636094412713,4955.550326433092,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +792,0,69.0,0.0,5,112,420.0,0.0,0.0,0,75,6855.43853173791,0.0,716.1842282162656,7040.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,100794,1,1,4,0,2,,310.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,745.373934381946,420.0,29600.167742288933,0,5,0,1,92.0,9,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2378364900257693,29600.167742288933,8,4,8,8_1,8_1,8_0_0 +793,2,45.0,0.0,1,111,1250.0,1950.0,0.0,85,37,0.0,0.0,2131.5006792150766,3200.0,0.0,3702.0828934825886,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,100795,1,2,0,0,2,,0.0,3951.0,42,1.0,0.0,6.0,5.0,2.5999999999999996,3,2,932.221914476666,1250.0,210933.73740189502,6,1,2,3,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015170640976711065,81128.3605391904,10,5,10,10_0,10_4,10_1_0 +794,0,53.0,0.0,7,111,336.0,,,0,56,0.0,0.0,,786.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,0,,1,,5,100796,2,1,0,0,2,,0.0,,32,1.0,1.0,3.0,2.0,1.3,1,1,43.141742725867324,336.0,11737.717348695476,0,4,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0669636162338971,9029.013345150366,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +795,2,48.0,0.0,2,111,500.0,170.0,0.0,68,65,0.0,0.0,852.6002716860306,670.0,0.0,322.74568814976413,71,2,1,2,2,1,1,2,2,2,5.0,2,,2,100797,1,3,0,1,1,732.0,0.0,307.0,43,2.0,3.0,4.0,4.0,2.3,3,2,285.796445728433,500.0,30536.686056874725,1,1,2,3,80.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.021940822221249608,13276.820024728142,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +796,2,51.0,0.0,1,212,720.0,0.0,0.0,54,67,1001.9487084847715,0.0,1227.744391227884,2061.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,100798,2,1,2,0,1,,450.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1282.64653879649,720.0,42202.71323976966,1,1,0,1,120.0,3,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04883572267713394,28135.14215984644,8,4,8,8_1,8_0,8_1_0 +797,2,60.0,0.0,9,112,2500.0,0.0,0.0,43,43,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,120.0,1,2009.0,6,100799,2,1,1,0,1,,400.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,658.417580702029,2500.0,71481.65385515918,1,1,1,2,167.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034974008926341636,35740.82692757959,9,5,9,9_1,9_1,9_0_0 +798,2,49.0,0.0,1,300,600.0,0.0,0.0,52,64,3164.0485531098047,0.0,1023.1203260232367,3690.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,100800,2,1,1,0,1,,520.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1260.0832130802,600.0,43227.159598613674,1,1,0,1,166.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08536299942590586,18794.417216788555,5,3,5,5_1,5_0,5_1_0 +799,1,36.0,25.0,5,111,300.0,0.0,0.0,0,56,0.0,0.0,511.56016301161833,368.0,94.22006732696343,0.0,60,0,0,0,0,0,0,0,0,3,75.0,2,,3,100801,2,1,0,1,1,1020.0,0.0,600.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1082.6987287343,300.0,23602.74320660058,0,1,2,3,62.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015591408031634547,18155.956312769675,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +800,2,53.0,0.0,7,112,1542.0,0.0,0.0,0,34,0.0,0.0,2629.4192378797184,1592.0,69.27946126982604,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,100802,1,2,2,0,1,,137.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1339.36516153629,1542.0,30127.78398977846,0,1,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05284158969475227,30127.78398977846,8,4,8,8_1,8_0,8_0_0 +801,1,25.0,230.0,7,111,480.0,0.0,0.0,0,43,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,100803,2,1,0,1,1,922.0,0.0,592.0,22,2.0,0.0,5.0,4.0,2.3,3,2,297.421244350347,480.0,41336.15595064775,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011612110244916915,17972.241717672936,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +802,1,57.0,243.0,2,112,270.0,,,0,78,0.0,0.0,,314.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,2,,2,100804,1,2,0,0,2,,226.0,249.0,11,0.0,0.0,2.0,1.0,1.0,1,1,129.33603864736227,270.0,12883.298011783503,0,7,2,3,29.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02437264120668519,12883.298011783503,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +803,2,62.0,0.0,1,111,660.0,0.0,0.0,0,75,0.0,238.3789098618403,1125.4323586255605,840.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,100805,2,1,2,0,1,,180.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,436.407816921929,660.0,25814.24084452389,0,5,0,1,48.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03254017830929913,25814.24084452389,7,4,7,7_1,7_3,7_1_0 +804,2,31.0,0.0,5,111,900.0,0.0,0.0,0,46,1582.0242765549024,0.0,1534.680489034855,2400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,2.0,1,,3,100806,2,3,1,0,1,,400.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,1108.14483415562,900.0,22102.268112134407,0,1,1,2,100.0,6,4,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10858614092561711,17001.744701641852,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +805,2,46.0,0.0,6,211,1080.0,,,81,56,0.0,0.0,,1560.0,665.08282819033,,50,0,0,0,0,0,0,0,0,0,,1,,4,100807,2,2,0,0,2,,720.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,122.97607727549901,1080.0,10085.21627113751,4,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1546818588773851,5042.608135568755,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +806,1,42.0,89.0,5,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,1456.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,100808,1,3,0,1,1,100.0,0.0,333.0,42,1.0,0.0,4.0,4.0,2.1,2,2,254.903585866164,0.0,25093.037511512208,6,4,2,3,79.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05802406342125838,11949.06548167248,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +807,2,70.0,0.0,2,111,253.0,0.0,0.0,0,75,0.0,0.0,431.41573747313146,253.0,0.0,0.0,41,1,2,2,1,2,2,2,2,0,,2,,2,100809,1,3,0,1,2,,0.0,457.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2687.30750006579,253.0,25602.014705297715,0,5,2,3,48.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009882034789537395,25602.014705297715,7,4,7,7_0,7_2,7_0_1 +808,1,45.0,59.0,2,111,417.0,0.0,0.0,0,67,0.0,0.0,711.0686265861495,417.0,0.0,0.0,60,2,1,2,2,1,2,2,2,2,4.0,2,,2,100810,2,1,0,1,1,463.0,291.0,281.0,32,2.0,1.0,3.0,2.0,1.5,2,2,340.404022580864,417.0,31948.87739291831,0,1,2,3,67.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.013052101795990832,21299.251595278874,6,3,6,6_0,6_3,6_0_1 +809,2,55.0,0.0,5,111,160.0,0.0,0.0,0,56,0.0,0.0,272.8320869395298,260.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,100811,2,1,0,1,1,816.0,0.0,336.0,22,1.0,0.0,3.0,2.0,1.5,2,2,867.463106664507,160.0,31662.054378696048,0,1,2,3,70.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008211722362998093,21108.036252464033,5,3,5,5_0,5_2,5_0_0 +810,2,83.0,0.0,1,111,541.0,0.0,0.0,0,78,0.0,0.0,922.5134939642851,541.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,100812,2,2,0,0,1,,21.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1975.44466090846,541.0,10796.829455264186,0,5,0,1,30.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.050107302541138675,10796.829455264186,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +811,2,35.0,0.0,9,111,1075.0,,,43,52,0.0,0.0,,1098.0,31.86855218411998,,41,0,0,0,0,0,0,0,0,0,,1,2009.0,6,100813,2,1,0,0,1,,600.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,251.56019146851483,1075.0,42754.51002835572,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025681501185998448,23752.50557130873,6,3,6,6_1,6_2,6_0_0 +812,2,46.0,0.0,2,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,1464.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,100814,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,536.266809686444,0.0,55058.592695611595,1,1,1,2,90.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02658985506755764,30588.10705311755,8,4,8,8_0,8_2,8_0_1 +813,2,75.0,0.0,1,112,1102.0,0.0,0.0,0,77,0.0,0.0,1879.1309987960115,1222.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100815,1,1,3,0,1,,102.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1042.95174747036,1102.0,15534.43206914765,0,5,0,1,55.0,8,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0786639636750524,15534.43206914765,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +814,2,79.0,0.0,2,111,360.0,0.0,0.0,0,78,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100816,2,1,0,1,1,840.0,300.0,311.0,11,0.0,10.0,4.0,1.0,1.0,1,1,317.743508624165,360.0,11229.696309844023,0,5,2,3,70.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03205785713763441,11229.696309844023,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +815,2,50.0,0.0,1,111,960.0,2000.0,0.0,75,31,0.0,0.0,1636.9925216371787,2960.0,0.0,3797.008095879578,20,0,0,0,0,0,0,0,0,3,45.0,1,,1,100817,2,1,2,0,1,,725.0,,42,1.0,1.0,7.0,5.0,3.0,5,4,699.528774477488,960.0,166765.5306040053,5,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017749471304287074,55588.5102013351,10,5,10,10_1,10_4,10_1_0 +816,2,32.0,0.0,9,111,450.0,1679.0,0.0,22,47,0.0,0.0,767.3402445174275,2129.0,0.0,3187.5882964909056,31,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,100818,2,1,1,0,1,,204.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1032.59238781148,450.0,31066.596659311028,1,1,1,2,95.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0685301973482156,20711.064439540685,5,3,5,5_1,5_2,5_0_0 +817,1,50.0,54.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,603.0,0.0,0.0,50,2,1,2,2,2,2,2,1,0,,2,,3,100819,2,2,0,1,1,,0.0,345.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1616.55964487831,0.0,1753.3559890300287,0,7,2,3,45.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.34391190595218757,1753.3559890300287,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +818,2,73.0,0.0,2,111,570.0,1740.0,0.0,54,72,0.0,331.081819252556,971.9643097220749,2560.0,0.0,3303.397043415233,70,0,0,0,0,0,0,0,0,0,,1,,2,100820,2,1,1,0,1,,390.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,683.324094712106,570.0,38340.202962908355,5,5,0,1,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06677064288044153,25560.13530860557,7,4,7,7_1,7_4,7_0_1 +819,2,65.0,0.0,2,111,120.0,,,0,11,0.0,0.0,,164.0,60.965925917446924,,44,0,0,0,0,0,0,0,0,2,20.0,1,,2,100821,2,2,0,0,2,,100.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,127.54192038691475,120.0,23836.252183524233,0,1,0,1,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006880276258922862,23836.252183524233,6,3,6,6_1,6_3,6_0_1 +820,2,51.0,0.0,1,111,240.0,910.0,0.0,0,67,0.0,0.0,409.2481304092947,1150.0,0.0,1727.638683625208,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,100822,2,2,1,0,1,,160.0,335.0,12,1.0,0.0,4.0,1.0,1.0,1,1,312.380967734403,240.0,14967.592300515807,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07683266466045906,14967.592300515807,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +821,2,80.0,0.0,5,111,240.0,450.0,0.0,0,77,0.0,0.0,409.2481304092947,690.0,0.0,854.326821572905,50,2,2,1,2,1,2,2,2,0,,2,,3,100823,1,1,0,0,1,,180.0,418.0,11,0.0,2.0,3.0,1.0,1.0,1,1,444.667501612767,240.0,16286.630256926292,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.042366038223687216,16286.630256926292,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +822,2,29.0,0.0,2,111,392.0,0.0,0.0,0,34,0.0,0.0,668.438613001848,392.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,100824,2,1,0,1,1,600.0,108.0,580.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1922.75127700779,392.0,34575.79313933554,0,1,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011337411651564886,34575.79313933554,9,5,9,9_0,9_3,9_0_1 +823,2,59.0,0.0,2,111,550.0,1000.0,0.0,68,46,0.0,0.0,937.8602988546337,1550.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,100825,2,2,2,0,1,,250.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1015.05929589625,550.0,47005.26688724428,1,1,0,1,105.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03297502817541964,31336.84459149619,8,4,8,8_1,8_3,8_0_1 +824,2,50.0,0.0,1,111,0.0,0.0,2350.0,67,63,0.0,0.0,1481.2479824746479,2350.0,0.0,2812.320546777,71,2,2,2,1,2,2,1,2,2,15.0,1,,1,100826,2,2,1,0,1,,1200.0,,43,2.0,0.0,5.0,5.0,3.0,5,3,214.630752985304,0.0,47031.928136645176,1,1,1,2,87.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04996605695544481,15677.309378881726,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +825,1,60.0,710.0,7,111,1056.0,0.0,0.0,85,86,0.0,0.0,1800.6917738008965,1056.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,5,100827,1,1,0,1,2,,0.0,1050.0,41,4.0,0.0,6.0,11.0,5.3999999999999995,8,7,760.289621732614,1056.0,34679.75876119967,6,7,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.030450038804233883,6422.17754837031,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +826,1,31.0,303.0,1,111,750.0,0.0,0.0,81,56,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,10.0,2,,1,100828,1,1,0,0,1,,0.0,418.0,43,2.0,1.0,2.0,3.0,1.8,2,2,2430.33627023804,750.0,9962.489245390356,4,1,2,3,45.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07528238992549227,5534.716247439086,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +827,0,26.0,0.0,1,400,0.0,,,0,52,0.0,0.0,,108.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,1,100829,2,2,0,0,2,,142.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,8.630211236835555,0.0,11374.57535917329,0,4,5,0,35.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009494859947707929,11374.57535917329,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +828,2,45.0,0.0,9,112,300.0,700.0,0.0,0,42,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,20,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,100830,2,1,1,0,1,,160.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2159.37558671163,300.0,28275.584932039892,0,1,1,2,66.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03536620028917141,28275.584932039892,8,4,8,8_1,8_1,8_0_0 +829,2,50.0,0.0,7,120,587.0,0.0,0.0,55,47,1371.087706347582,0.0,1000.9527189593999,2007.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,100831,2,1,2,0,1,,360.0,,43,3.0,1.0,6.0,4.0,2.5,4,4,743.572392451397,587.0,45100.424007121896,1,1,0,1,99.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04450069027473158,18040.169602848757,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +830,2,57.0,0.0,1,111,1230.0,0.0,0.0,78,62,0.0,662.163638505112,2097.396668347635,1790.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,100832,2,1,3,0,1,,390.0,,42,1.0,0.0,5.0,3.0,2.0,3,2,1452.86296222597,1230.0,27607.44304372254,7,1,0,1,125.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06483758735516129,13803.72152186127,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +831,2,40.0,0.0,7,111,720.0,0.0,0.0,34,38,0.0,0.0,1227.744391227884,720.0,0.0,0.0,10,2,2,2,1,2,2,2,2,2,30.0,2,,5,100833,2,1,0,0,1,,307.0,560.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1648.52296350924,720.0,59344.729075146715,1,1,2,3,50.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.012132501255305798,39563.152716764474,9,5,9,9_0,9_3,9_0_0 +832,0,85.0,0.0,9,112,186.0,0.0,0.0,0,75,0.0,158.91927324122688,317.16730106720337,306.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2010.0,6,100834,2,1,1,0,1,,372.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,2234.49870785563,186.0,39238.789796788886,0,5,5,0,75.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007798405648714517,39238.789796788886,9,5,9,9_1,9_1,9_0_0 +833,2,37.0,0.0,6,111,0.0,0.0,0.0,56,21,0.0,0.0,0.0,651.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,100835,2,2,3,0,1,,524.0,890.0,43,2.0,0.0,4.0,3.0,1.8,2,2,3005.13495809449,0.0,33150.32679666278,1,1,2,3,90.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019637815457841448,18416.84822036821,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +834,2,65.0,0.0,5,111,480.0,0.0,0.0,78,75,0.0,0.0,818.4962608185893,721.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,100836,2,1,2,1,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,217.614969940269,480.0,30798.357086293567,5,5,0,1,120.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02341033964830781,20532.238057529044,5,3,5,5_1,5_3,5_0_0 +835,2,57.0,0.0,5,111,628.0,982.0,0.0,34,35,0.0,52.973091080408956,1070.8659412376544,1650.0,0.0,1864.3309750768728,41,0,0,0,0,0,0,0,0,0,,2,,3,100837,2,1,0,0,1,,251.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1522.06388350944,628.0,76713.80888139886,1,1,1,2,135.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02150851357870829,30685.52355255954,8,4,8,8_0,8_2,8_0_0 +836,2,40.0,0.0,9,112,1900.0,0.0,0.0,43,31,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,2.0,1,2009.0,6,100838,2,1,1,0,1,,880.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,3391.25458824353,1900.0,110957.05985722636,1,1,1,2,175.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01712374140451107,46232.108273844315,10,5,10,10_1,10_1,10_0_0 +837,2,55.0,0.0,7,111,600.0,,,63,52,0.0,0.0,,687.0,120.54626260949732,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,100839,2,2,0,0,2,,400.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,126.45590781124002,600.0,47572.76852994047,1,1,0,1,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014441034676542498,31715.179019960313,8,4,8,8_1,8_2,8_0_0 +838,2,55.0,0.0,9,111,1210.0,0.0,0.0,56,56,0.0,0.0,2063.292657480194,1210.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,100840,2,1,0,0,1,,500.0,915.0,43,2.0,1.0,3.0,2.0,1.5,2,2,441.290867299124,1210.0,29083.928766822275,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04160373275911462,19389.285844548183,5,3,5,5_0,5_4,5_0_0 +839,1,23.0,414.0,9,111,0.0,,,0,85,0.0,0.0,,584.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,100841,2,2,0,0,2,,1059.0,600.0,31,0.0,0.0,3.0,3.0,1.6,1,1,114.90903000001705,0.0,9374.262997176547,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.062298230823681404,5858.914373235341,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +840,2,70.0,0.0,5,111,360.0,1550.0,0.0,75,78,0.0,0.0,613.872195613942,1910.0,0.0,2942.681274306673,70,0,0,0,0,0,0,0,0,0,,1,,3,100842,1,3,3,0,2,,454.0,410.0,41,0.0,2.0,4.0,2.0,1.5,2,2,250.345653008913,360.0,35873.393926605575,5,5,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05324280172396637,23915.595951070383,6,3,6,6_1,6_4,6_0_0 +841,2,50.0,0.0,7,111,717.0,,,55,53,0.0,0.0,,717.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,5,100843,2,3,0,0,2,,132.0,216.0,43,2.0,4.0,4.0,3.0,2.0,3,2,50.720803920690635,717.0,57124.93757478355,4,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01255143603546803,28562.468787391776,8,4,8,8_1,8_2,8_0_0 +842,1,40.0,288.0,7,111,552.0,720.0,0.0,85,65,0.0,0.0,941.2706999413778,1272.0,0.0,1366.922914516648,71,0,0,0,0,0,0,0,0,2,4.0,1,,5,100844,1,1,2,0,1,,600.0,503.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,282.495801515909,552.0,30582.211581320662,6,1,2,3,92.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04159280621735434,11326.745030118765,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +843,2,68.0,0.0,2,111,483.0,974.0,0.0,86,77,0.0,198.6490915515336,823.6118624487056,1607.0,0.0,1849.1429426933544,50,0,0,0,0,0,0,0,0,0,,1,,2,100845,2,1,1,0,1,,358.0,358.0,41,0.0,5.0,4.0,3.0,2.0,3,3,353.902934450326,483.0,34977.996255246544,5,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04594316919337417,17488.998127623272,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +844,2,43.0,0.0,2,111,558.0,510.0,0.0,33,45,0.0,0.0,951.5019032016102,1068.0,0.0,968.2370644492923,20,0,0,0,0,0,0,0,0,1,20.0,2,,2,100846,2,1,0,0,2,,0.0,995.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1482.84462376141,558.0,20766.963696972787,1,1,2,3,96.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.051427835844663365,11537.20205387377,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +845,2,30.0,0.0,1,112,1190.0,0.0,0.0,52,53,2109.365702073203,0.0,2029.1886466127528,3286.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,100847,2,2,2,0,1,,250.0,580.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1428.86862144543,1190.0,33382.10093036241,4,1,2,3,160.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09843598540591693,18545.611627979117,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +847,2,78.0,0.0,1,112,180.0,1300.0,0.0,86,78,0.0,0.0,306.936097806971,1480.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,1,100849,2,2,2,0,1,,125.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,59.1392076643397,180.0,14364.529520697433,6,5,0,1,95.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10303156799305616,9576.353013798289,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +848,2,87.0,0.0,2,111,718.0,0.0,0.0,75,72,2636.7071275915036,0.0,1224.33399014114,3218.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,100850,2,1,2,0,1,,99.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1641.99441144223,718.0,76170.99391932579,5,5,0,1,130.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04224705277455415,50780.66261288386,10,5,10,10_1,10_3,10_0_1 +849,2,74.0,0.0,2,111,0.0,0.0,420.0,0,75,0.0,0.0,264.7336819741924,420.0,0.0,502.627501977166,50,0,0,0,0,0,0,0,0,0,,2,,2,100851,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1043.60190745632,0.0,31906.430257415122,0,5,0,1,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013163490763821537,31906.430257415122,8,4,8,8_0,8_4,8_0_1 +850,2,47.0,0.0,1,111,300.0,1400.0,0.0,67,43,0.0,0.0,511.56016301161833,1700.0,0.0,2657.9056671157045,33,0,0,0,0,0,0,0,0,2,20.0,1,,1,100852,2,1,3,0,1,,370.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,644.188265286664,300.0,30836.43375134373,1,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055129591628795944,14684.016072068443,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +851,2,40.0,0.0,8,211,900.0,0.0,0.0,67,46,632.8097106219609,0.0,1534.680489034855,1738.0,193.98249155551292,0.0,20,0,0,0,0,0,0,0,0,2,7.0,1,2000.0,6,100853,2,1,2,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,905.715873857697,900.0,49385.031046254575,1,1,1,2,102.0,1,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03519285020540272,23516.681450597414,6,3,6,6_1,6_1,6_0_0 +852,2,72.0,0.0,2,300,320.0,0.0,0.0,0,78,0.0,264.8654554020448,545.6641738790596,586.0,91.44888887617039,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100854,2,1,3,0,2,,141.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,940.151357471821,320.0,12880.902726988972,0,5,0,1,49.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04549370586986669,12880.902726988972,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +853,2,35.0,0.0,7,111,560.0,,,54,21,0.0,0.0,,826.0,368.5667339554746,,50,0,0,0,0,0,0,0,0,1,1.0,1,,5,100855,1,1,0,0,1,,1000.0,,43,2.0,3.0,5.0,3.0,2.0,3,2,143.82532802107445,560.0,20270.800000000003,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04074826844525129,10135.400000000001,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +854,0,73.0,0.0,6,112,1064.0,0.0,0.0,75,75,0.0,927.0290939071567,1814.3333781478732,1904.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,100856,2,1,1,0,1,,400.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1103.34944379737,1064.0,24564.567015876954,5,5,0,1,127.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07751001671510746,16376.378010584636,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +855,2,74.0,0.0,2,111,500.0,1000.0,0.0,77,75,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,100857,2,1,2,0,1,,500.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,1419.21037323273,500.0,22551.760830276304,5,5,0,1,75.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06651365324814071,15034.507220184203,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +856,2,53.0,0.0,6,111,930.0,1400.0,0.0,0,37,0.0,0.0,1585.836505336017,2330.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,4,80.0,1,,4,100858,1,1,2,0,1,,750.0,,32,1.0,0.0,8.0,3.0,2.0,3,3,620.568970241153,930.0,45755.2061430583,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05092316692257966,22877.60307152915,6,3,6,6_1,6_4,6_0_0 +857,2,31.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1267.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,8,,2,100859,2,1,0,0,2,,0.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,682.418852415062,0.0,28958.880249232454,0,1,3,4,76.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04375169167784315,28958.880249232454,8,4,8,8_0,8_2,8_0_1 +858,1,87.0,80.0,1,111,990.0,0.0,0.0,0,86,0.0,0.0,1688.1485379383405,990.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,100860,2,2,0,0,2,,0.0,426.0,11,0.0,4.0,2.0,1.0,1.0,1,1,1822.5782755611,990.0,16302.264038472236,0,5,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.060727761350427595,16302.264038472236,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +859,2,71.0,0.0,1,400,632.0,0.0,0.0,86,75,3427.719265868955,264.8654554020448,1077.6867434111427,4182.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,100861,2,2,3,0,1,,261.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,1110.28518860684,632.0,33154.11406941696,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1261381918166738,16577.05703470848,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +860,1,64.0,55.0,1,111,1255.0,0.0,0.0,0,78,0.0,0.0,2140.0266819319368,1305.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100862,2,1,1,0,1,,372.0,485.0,11,0.0,0.0,3.0,1.0,1.0,1,1,515.756633814894,1255.0,17929.664378083784,0,5,2,3,50.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07278440758741468,17929.664378083784,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +861,2,88.0,0.0,9,111,300.0,,,0,86,0.0,0.0,,384.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,100863,1,1,0,0,2,,222.0,,21,1.0,1.0,6.0,2.0,1.5,2,2,123.14350941411244,300.0,10718.52720319837,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035825817551259825,7145.684802132247,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +862,2,38.0,0.0,1,111,286.0,1246.0,0.0,68,46,0.0,0.0,487.6873554044095,1532.0,0.0,2365.5360437329773,41,2,2,2,2,2,1,2,2,3,60.0,2,,1,100864,1,2,0,0,1,,0.0,609.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1145.02228700078,286.0,45879.21176892456,1,1,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.033392029656395976,21847.243699487884,6,3,6,6_0,6_4,6_1_0 +864,1,53.0,184.0,2,111,180.0,300.0,0.0,85,78,0.0,0.0,306.936097806971,480.0,0.0,569.5512143819367,60,1,2,2,2,1,2,2,2,0,,2,,2,100866,1,3,0,1,1,467.0,240.0,247.0,41,0.0,0.0,3.0,4.0,2.3,3,2,256.014541286115,180.0,30062.933694504303,6,7,2,3,51.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01596650562708546,13070.840736741002,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +865,2,81.0,0.0,2,111,500.0,,,0,78,0.0,0.0,,760.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,1,,2,100867,2,3,0,0,2,,120.0,,11,0.0,11.0,6.0,1.0,1.0,1,1,77.33410110036084,500.0,13011.878583740032,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05840816874434372,13011.878583740032,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +866,2,32.0,0.0,5,111,440.0,92.0,0.0,54,64,0.0,0.0,750.2882390837069,532.0,0.0,174.6623724104606,60,2,2,1,1,1,2,2,2,2,30.0,2,,3,100868,2,2,0,1,1,347.0,0.0,341.0,43,2.0,0.0,2.0,3.0,1.8,2,2,758.550433865794,440.0,30797.44395963368,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.017274160826375534,17109.691088685377,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +867,2,56.0,0.0,2,111,410.0,820.0,0.0,0,21,0.0,0.0,699.1322227825451,1230.0,0.0,1556.773319310627,50,0,0,0,0,0,0,0,0,0,,1,,2,100869,2,2,2,0,1,,350.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1234.27752924068,410.0,17604.64358593751,0,1,0,1,130.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06986792967410696,17604.64358593751,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +868,2,40.0,0.0,1,112,660.0,0.0,0.0,43,35,1582.0242765549024,609.190547424703,1125.4323586255605,2748.0,177.35542085075468,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,100870,2,1,1,0,2,,174.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,728.943025767849,660.0,77759.36872044203,1,1,1,2,120.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03533979307213155,37028.270819258105,9,5,9,9_1,9_0,9_1_0 +869,2,65.0,0.0,1,111,270.0,304.0,0.0,56,78,0.0,0.0,460.40414671045653,574.0,0.0,577.1452305736958,70,0,0,0,0,0,0,0,0,0,,1,,1,100871,2,1,3,0,2,,150.0,,42,1.0,0.0,7.0,2.0,1.5,2,2,310.687578045894,270.0,33024.07901382173,1,5,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017381256862901793,22016.05267588115,6,3,6,6_1,6_2,6_1_0 +870,2,79.0,0.0,2,112,0.0,0.0,0.0,0,75,1582.0242765549024,0.0,0.0,1651.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,100872,2,1,3,0,1,,145.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1053.07857154878,0.0,20250.40272987393,0,5,0,1,72.0,10,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08152924275251085,20250.40272987393,5,3,5,5_1,5_0,5_0_1 +871,2,64.0,0.0,6,111,290.0,1300.0,0.0,86,78,0.0,0.0,494.50815757789775,1590.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,0,,1,,4,100873,2,2,1,0,1,,480.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,287.232900628932,290.0,20445.1865448308,6,5,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07776891624410259,13630.124363220535,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +872,2,53.0,0.0,7,300,700.0,0.0,0.0,64,46,738.277995725621,1589.1927324122687,1193.6403803604428,2680.0,110.84713803172167,0.0,42,0,0,0,0,0,0,0,0,2,70.0,1,,5,100874,2,1,2,0,1,,150.0,,43,2.0,2.0,4.0,3.0,2.0,3,2,261.376956607084,700.0,49434.08110967778,1,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05421361012160763,24717.04055483889,7,4,7,7_1,7_0,7_0_0 +873,2,50.0,0.0,2,111,0.0,0.0,0.0,55,38,0.0,0.0,0.0,1274.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,,2,100875,2,1,0,1,1,300.0,0.0,534.0,43,2.0,0.0,5.0,5.0,2.8,4,3,226.642111176387,0.0,56543.42100788883,1,1,2,3,102.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022531356916346713,20194.078931388867,5,3,5,5_0,5_4,5_0_1 +874,2,52.0,0.0,5,211,300.0,,,63,52,0.0,0.0,,476.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,1,5.0,1,,3,100876,2,2,0,0,2,,460.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,94.01755949540663,300.0,22925.649402390438,1,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020762770626264915,11462.824701195219,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +875,2,64.0,0.0,1,400,1280.0,0.0,0.0,72,77,0.0,0.0,2182.6566955162384,1420.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,100877,2,1,1,0,1,,210.0,500.0,41,0.0,3.0,3.0,2.0,1.5,2,2,1350.91869402626,1280.0,27186.73952646652,5,5,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05223134604344953,18124.49301764435,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +876,2,85.0,0.0,2,112,120.0,,,0,77,0.0,0.0,,186.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,2,100878,2,2,0,0,2,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,107.02736757437734,120.0,13408.550837368457,0,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013871745146510113,13408.550837368457,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +877,2,66.0,0.0,1,111,0.0,0.0,920.0,77,77,0.0,0.0,579.8928271815643,920.0,0.0,1100.9935757595065,70,0,0,0,0,0,0,0,0,0,,1,,1,100879,1,2,3,0,2,,180.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,241.221434483153,0.0,32938.12866992787,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02793115568948364,21958.752446618582,6,3,6,6_1,6_3,6_1_0 +878,2,53.0,0.0,2,111,318.0,150.0,0.0,67,48,0.0,0.0,542.2537727923154,468.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,2,,2,100880,2,2,0,1,1,780.0,0.0,334.0,43,2.0,2.0,3.0,2.0,1.5,2,2,344.551790453706,318.0,48327.48315737416,1,1,2,3,67.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009683930745493192,32218.322104916107,8,4,8,8_0,8_3,8_0_1 +879,2,55.0,0.0,2,111,45.0,125.0,0.0,0,43,0.0,0.0,76.73402445174275,170.0,0.0,237.31300599247362,33,2,2,2,2,1,2,2,2,1,5.0,2,,2,100881,1,1,0,0,1,,0.0,481.0,32,3.0,0.0,3.0,3.0,2.0,3,3,1215.08283914046,45.0,33437.016943135415,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.005084185598527228,16718.508471567708,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +880,2,45.0,0.0,9,112,1146.0,0.0,0.0,52,62,0.0,317.83854648245375,1954.1598227043821,1432.0,63.73710436823996,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,100882,2,1,1,0,1,,207.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,384.360376011033,1146.0,41329.27863982733,1,1,1,2,122.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03464856022480974,19680.608876108254,5,3,5,5_1,5_0,5_0_0 +881,1,40.0,337.0,9,111,920.0,,,22,52,0.0,0.0,,1046.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,100883,2,1,0,0,2,,650.0,850.0,43,2.0,0.0,4.0,3.0,1.8,2,2,255.08319532824632,920.0,20132.800000000003,4,4,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05195501867599141,11184.88888888889,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +882,2,30.0,0.0,1,111,1350.0,0.0,0.0,0,46,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,1,100884,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,382.725370879322,1350.0,18972.936154177598,0,1,1,2,36.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.071153984234683,18972.936154177598,5,3,5,5_0,5_3,5_1_0 +883,2,45.0,0.0,8,111,194.0,447.0,0.0,0,46,0.0,0.0,330.8089054141799,641.0,0.0,848.6313094290857,31,0,0,0,0,0,0,0,0,0,,2,2001.0,6,100885,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,565.688422612894,194.0,27699.223489505122,0,1,1,2,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023141442944884957,27699.223489505122,7,4,7,7_0,7_4,7_0_0 +884,2,60.0,0.0,8,211,432.0,,,77,68,0.0,0.0,,564.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,100886,2,2,0,0,2,,348.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,103.93664793347278,432.0,13996.011560693642,6,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040297194493889674,9330.67437379576,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +885,1,31.0,67.0,9,300,794.0,0.0,0.0,54,11,0.0,66.2163638505112,1353.9292314374165,844.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,2010.0,6,100887,2,1,1,0,1,,190.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1018.25890679276,794.0,34143.37983425192,4,1,1,2,160.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02471928684556638,16258.752302024724,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +886,2,35.0,0.0,1,400,691.0,,,0,67,0.0,0.0,,829.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,100888,2,2,0,0,1,,821.0,,32,2.0,0.0,4.0,5.0,2.8,4,2,52.830098058499786,691.0,26574.0,0,4,0,1,92.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031195905772559644,9490.714285714286,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +887,2,49.0,0.0,6,112,1593.0,0.0,0.0,46,21,0.0,728.3800023556231,2716.3844655916932,2143.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,4,100889,2,1,2,0,1,,220.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1499.89527304035,1593.0,43633.0760953786,1,1,1,2,80.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04911411689873903,29088.717396919066,8,4,8,8_1,8_2,8_0_0 +888,2,52.0,0.0,1,111,523.0,1145.0,0.0,85,63,0.0,0.0,891.819884183588,1668.0,0.0,2173.7871348910585,50,0,0,0,0,0,0,0,0,2,1.0,1,,1,100890,2,2,3,0,1,,250.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,263.611651949764,523.0,26463.73987359691,6,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06302964010253809,14702.077707553839,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +889,2,51.0,0.0,1,111,849.0,0.0,0.0,0,55,2425.7705573841836,0.0,1447.71526132288,3460.0,430.91824909831803,0.0,44,0,0,0,0,0,0,0,0,2,15.0,2,,1,100891,1,1,0,0,2,,419.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,2360.62014706699,849.0,46116.99436139345,0,1,0,1,80.0,7,6,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07502657204599866,30744.662907595633,8,4,8,8_0,8_2,8_1_0 +890,1,73.0,253.0,5,111,132.0,,,0,77,0.0,0.0,,252.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,3,100892,2,2,0,0,2,,200.0,292.0,11,0.0,7.0,2.0,1.0,1.0,1,1,141.6337536328851,132.0,9699.887804005686,0,5,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0259796819398193,9699.887804005686,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +891,2,35.0,0.0,9,112,1200.0,0.0,0.0,38,38,0.0,264.8654554020448,2046.2406520464733,1400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,2008.0,6,100893,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,917.077296211867,1200.0,104826.314968027,1,1,1,2,120.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013355425118463937,58236.84164890389,10,5,10,10_1,10_0,10_0_0 +892,2,31.0,0.0,2,111,267.0,45.0,0.0,54,47,0.0,0.0,455.2885450803403,312.0,0.0,85.4326821572905,71,2,2,2,1,2,2,2,2,2,10.0,2,,2,100894,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1954.49765077229,267.0,37924.74686658629,1,1,1,2,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.008226818259264072,21069.303814770163,5,3,5,5_0,5_3,5_0_1 +893,1,30.0,314.0,5,111,470.0,,,0,47,0.0,0.0,,542.0,99.7624242285495,,31,0,0,0,0,0,0,0,0,0,,1,,3,100895,2,3,0,0,2,,250.0,327.0,22,2.0,1.0,4.0,3.0,2.0,3,3,140.8748171355089,470.0,28567.170609529745,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01897282749518056,14283.585304764872,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +894,1,40.0,274.0,2,111,299.0,160.0,0.0,0,68,0.0,0.0,509.8549624682463,459.0,0.0,303.7606476703662,71,2,1,2,2,1,2,2,2,0,,2,,2,100896,1,3,0,1,2,33.0,0.0,294.0,32,1.0,0.0,2.0,2.0,1.3,1,1,248.609155320571,299.0,10173.79111111111,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04511592532096634,7825.993162393161,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +895,2,55.0,0.0,6,111,40.0,30.0,0.0,77,48,0.0,0.0,68.20802173488245,70.0,0.0,56.95512143819367,50,0,0,0,0,0,0,0,0,3,45.0,1,,4,100897,1,3,3,0,1,,380.0,620.0,42,3.0,2.0,4.0,4.0,2.5,4,4,317.848646372872,40.0,64446.5220685156,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0010861718794627937,25778.608827406242,7,4,7,7_1,7_4,7_0_0 +896,1,61.0,151.0,1,111,280.0,500.0,0.0,0,78,0.0,0.0,477.4561521441771,780.0,0.0,949.2520239698945,70,0,0,0,0,0,0,0,0,0,,2,,1,100898,1,2,0,0,2,,0.0,305.0,11,0.0,2.0,1.0,1.0,1.0,1,1,501.369596219109,280.0,15347.034973280606,0,5,2,3,32.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05082414950887845,15347.034973280606,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +897,2,63.0,0.0,7,120,0.0,0.0,0.0,0,72,0.0,105.94618216081791,0.0,580.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,3,,5,100899,2,2,0,0,2,,125.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2024.84920545547,0.0,15316.785300691477,0,5,0,1,30.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037866953712135394,15316.785300691477,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +898,2,63.0,0.0,8,111,468.0,0.0,0.0,0,74,0.0,0.0,798.0338542981247,468.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2000.0,6,100900,2,1,0,0,1,,284.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1767.19252993607,468.0,48423.53366258113,0,5,0,1,103.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009664722183660936,48423.53366258113,10,5,10,10_0,10_3,10_0_0 +899,2,60.0,0.0,6,111,0.0,0.0,2000.0,37,45,0.0,185.40581878143135,1260.6365808294875,2140.0,0.0,2393.4642951293617,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,100901,2,1,2,0,1,,806.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,2552.38984905492,0.0,96829.42712031567,1,1,0,1,101.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022100719416019442,64552.95141354378,10,5,10,10_1,10_3,10_0_0 +900,1,35.0,379.0,2,111,800.0,950.0,0.0,85,48,0.0,0.0,1364.160434697649,1750.0,0.0,1803.5788455427996,43,2,2,2,2,1,2,2,2,0,,1,,2,100902,2,2,2,0,1,,500.0,310.0,42,1.0,0.0,4.0,7.0,2.9999999999999996,2,2,1025.26960820983,800.0,18675.992176567328,6,4,2,3,72.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,0.09370318767833476,6225.330725522444,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +901,2,79.0,0.0,2,111,170.0,0.0,0.0,0,74,0.0,0.0,289.8840923732504,170.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,100903,1,2,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,870.272269621094,170.0,34932.72743223521,0,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004866496620676903,34932.72743223521,9,5,9,9_0,9_4,9_0_1 +902,1,48.0,200.0,8,112,600.0,,,0,81,0.0,0.0,,840.0,332.541414095165,,60,0,0,0,0,0,0,0,0,0,,1,2002.0,6,100904,2,2,0,0,2,,480.0,,32,1.0,2.0,5.0,4.0,1.9,1,1,70.873864487861,600.0,3300.6196460942742,0,4,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2544976671256254,1737.1682347864603,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +903,2,37.0,0.0,8,211,1152.0,0.0,0.0,55,47,0.0,662.163638505112,1964.3910259646145,2152.0,692.7946126982605,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,100905,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1429.92820704163,1152.0,49014.08208841168,1,1,1,2,117.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043905749292993373,20422.534203504867,5,3,5,5_1,5_1,5_0_0 +904,2,53.0,0.0,5,211,400.0,,,0,45,0.0,0.0,,589.0,261.87636359994247,,50,0,0,0,0,0,0,0,0,0,,1,,3,100906,2,1,0,0,2,,480.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,103.97174975917966,400.0,6505.736343625369,0,4,0,1,48.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09053548574515018,6505.736343625369,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +905,2,38.0,0.0,9,400,400.0,0.0,0.0,46,11,0.0,0.0,682.0802173488245,540.0,193.98249155551292,0.0,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,100907,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1272.0657189032,400.0,73492.79197412144,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007347659348554166,34996.56760672449,9,5,9,9_1,9_0,9_0_0 +906,2,32.0,0.0,1,400,1000.0,0.0,0.0,56,47,0.0,238.3789098618403,1705.2005433720612,1248.0,94.22006732696343,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,100908,1,1,1,0,1,,0.0,350.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1481.77691428754,1000.0,35743.0717520662,1,1,2,3,83.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034915857502590186,19857.262084481223,5,3,5,5_1,5_0,5_1_0 +907,0,47.0,0.0,6,111,330.0,,,0,68,0.0,0.0,,450.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,3,15.0,1,,4,100909,1,3,0,0,2,,0.0,,32,1.0,1.0,3.0,3.0,1.6,1,1,105.83674327111206,330.0,9390.961718563594,0,4,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047918414906373434,5869.3510741022465,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +908,2,32.0,0.0,1,111,468.0,984.0,0.0,54,64,0.0,0.0,798.0338542981247,1452.0,0.0,1868.1279831727525,31,2,2,2,1,2,2,2,2,2,10.0,1,,1,100910,1,3,3,0,1,,180.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,633.042492787338,468.0,36395.20707602005,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03989536306160183,18197.603538010026,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +909,2,53.0,0.0,2,112,484.0,0.0,0.0,56,64,2109.365702073203,0.0,825.3170629920776,2614.0,180.1265993015477,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,100911,2,1,2,0,1,,305.0,,43,4.0,0.0,7.0,4.0,2.5,4,4,1657.09186630862,484.0,63436.22881097997,4,4,0,1,140.0,9,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04120673704909065,25374.49152439199,7,4,7,7_1,7_2,7_0_1 +910,2,75.0,0.0,7,111,1230.0,0.0,0.0,0,77,0.0,0.0,2097.396668347635,1290.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,100912,2,1,1,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1777.07248314855,1230.0,25153.55436796799,0,5,0,1,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0512849985782829,25153.55436796799,7,4,7,7_1,7_3,7_0_0 +911,1,63.0,304.0,2,400,360.0,0.0,0.0,85,78,632.8097106219609,0.0,613.872195613942,1160.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,100913,2,1,1,0,1,,528.0,504.0,41,0.0,6.0,3.0,3.0,2.0,3,3,2618.52881542452,360.0,27078.0453589469,7,5,2,3,100.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04283913349811723,13539.02267947345,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +912,1,38.0,344.0,2,111,0.0,0.0,684.0,0,42,0.0,0.0,431.1377106436847,684.0,0.0,818.5647889342417,10,2,1,2,2,1,1,2,2,3,45.0,2,,2,100914,2,2,0,1,1,756.0,0.0,320.0,32,1.0,0.0,3.0,4.0,2.3,3,3,220.419501596471,0.0,10794.33944202256,0,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06336654537073158,4693.191061748939,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +913,1,38.0,152.0,6,111,250.0,,,0,52,0.0,0.0,,292.0,58.19474746665388,,43,0,0,0,0,0,0,0,0,0,,2,,4,100915,2,1,0,0,2,,300.0,285.0,12,1.0,0.0,2.0,1.0,1.0,1,1,130.13151324372734,250.0,12097.408107862953,0,4,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024137401780320922,12097.408107862953,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +914,2,26.0,0.0,9,112,1200.0,0.0,0.0,55,55,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,100916,1,2,1,0,1,,0.0,620.0,43,2.0,0.0,3.0,2.0,1.5,2,2,474.77156842147,1200.0,46920.244733219486,1,1,2,3,87.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025575314170311673,31280.16315547966,8,4,8,8_1,8_1,8_0_0 +915,2,25.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,543.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,3,2012.0,6,100917,1,3,0,1,1,566.0,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,177.514467867019,0.0,17068.930017446968,0,1,2,3,45.0,7,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03181218737466108,17068.930017446968,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +916,2,43.0,0.0,7,111,612.0,1086.0,0.0,52,52,0.0,0.0,1043.5827325437015,1698.0,0.0,2061.775396062611,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,100918,1,2,3,0,1,,624.0,497.0,43,2.0,0.0,5.0,5.0,2.8,4,3,92.1788697809765,612.0,43197.77233794631,1,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03930758250023051,15427.775834980826,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +918,2,58.0,0.0,6,120,0.0,0.0,1200.0,56,21,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,50,0,0,0,0,0,0,0,0,0,,1,,4,100920,2,1,3,0,1,,700.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,771.346218787309,0.0,35246.054605131874,1,4,0,1,100.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034046363868064776,17623.027302565937,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +919,1,80.0,50.0,2,111,179.0,700.0,0.0,0,78,0.0,0.0,305.23089726359893,879.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,2,100921,2,1,2,0,1,,50.0,369.0,11,0.0,7.0,2.0,1.0,1.0,1,1,141.454381317771,179.0,13350.844318542864,0,7,2,3,67.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.065838532682099,13350.844318542864,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +920,2,59.0,0.0,2,111,200.0,500.0,0.0,0,52,0.0,0.0,341.04010867441224,700.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,3,10.0,2,,2,100922,1,1,0,0,1,,0.0,213.0,12,1.0,5.0,2.0,1.0,1.0,1,1,167.304025459951,200.0,17627.718966482782,0,1,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039710186061564456,17627.718966482782,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +921,2,60.0,0.0,9,111,300.0,,,74,34,0.0,0.0,,300.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,100923,2,1,0,0,1,,350.0,,42,1.0,5.0,6.0,2.0,1.5,2,2,116.64673290975851,300.0,121491.45339313979,5,1,1,2,164.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002469309499732596,80994.30226209319,10,5,10,10_1,10_2,10_0_0 +922,2,46.0,0.0,1,111,1992.0,0.0,0.0,31,37,0.0,0.0,3396.759482397146,1992.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,75.0,2,,1,100924,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,610.532335515298,1992.0,88785.47436590138,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022436102461880186,36993.94765245891,9,5,9,9_0,9_4,9_1_0 +923,2,66.0,0.0,5,112,268.0,713.0,0.0,0,78,0.0,0.0,456.9937456237124,981.0,0.0,1353.6333861810695,71,0,0,0,0,0,0,0,0,0,,1,,3,100926,2,2,1,0,1,,106.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,328.422139210774,268.0,21349.441948533287,0,5,0,1,72.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04594967879558065,21349.441948533287,6,3,6,6_1,6_0,6_0_0 +924,2,40.0,0.0,2,111,800.0,1013.0,0.0,42,37,0.0,0.0,1364.160434697649,2313.0,0.0,1923.1846005630061,12,0,0,0,0,0,0,0,0,2,1.0,1,,2,100927,2,1,1,0,1,,423.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,785.91891008152,800.0,73181.50040194875,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031606348425433584,34848.3335247375,9,5,9,9_1,9_3,9_0_1 +925,1,51.0,173.0,1,111,280.0,0.0,0.0,85,67,0.0,0.0,477.4561521441771,340.0,83.13535352379125,0.0,50,2,1,2,1,1,2,2,2,2,20.0,2,,1,100928,1,3,0,1,1,21.0,170.0,236.0,42,1.0,0.0,2.0,3.0,1.8,2,2,608.689336225429,280.0,6752.442764116466,6,1,2,3,38.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.05035214838203635,3751.3570911758143,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +926,2,36.0,0.0,7,120,300.0,,,11,56,0.0,0.0,,520.0,304.8296295872346,,50,2,2,2,2,1,2,2,2,0,,1,,5,100929,2,1,0,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,101.09308666356915,300.0,13786.277992277992,4,4,0,1,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03771866491385593,5994.0339096860835,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +927,2,45.0,0.0,1,112,500.0,0.0,0.0,46,37,2109.365702073203,0.0,852.6002716860306,4842.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,90.0,1,,1,100930,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1070.8106580666,500.0,92707.85923762798,1,1,0,1,120.0,9,2,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05222858169542053,40307.764885925215,9,5,9,9_1,9_1,9_1_0 +928,2,49.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1852.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,3,,3,100931,2,1,0,0,1,,0.0,450.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1028.28218769952,0.0,60763.682798795926,0,1,3,4,28.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030478731944744774,60763.682798795926,10,5,10,10_0,10_4,10_0_0 +929,2,48.0,0.0,1,111,660.0,973.0,0.0,85,48,0.0,0.0,1125.4323586255605,1723.0,124.70303028568689,1847.2444386454147,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,100932,2,2,5,0,1,,600.0,342.0,42,1.0,0.0,4.0,4.0,2.5,4,4,187.769885220211,660.0,30399.778123097178,6,1,2,3,75.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0566780452483269,12159.91124923887,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +930,2,32.0,0.0,2,111,240.0,0.0,0.0,37,31,0.0,0.0,409.2481304092947,240.0,0.0,0.0,10,2,2,2,2,2,2,2,1,3,40.0,2,,2,100933,2,1,0,1,1,630.0,0.0,1400.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1061.11933707586,240.0,111156.2673175206,1,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0021591225199604274,74104.1782116804,10,5,10,10_0,10_4,10_0_1 +931,2,66.0,0.0,7,111,480.0,,,0,22,0.0,0.0,,780.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,100934,2,1,0,0,2,,0.0,,12,1.0,6.0,5.0,1.0,1.0,1,1,33.898289367571046,480.0,15245.827107438017,0,4,0,1,236.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05116154043354326,15245.827107438017,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +932,2,41.0,0.0,8,112,323.0,,,56,68,0.0,105.94618216081791,,495.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,1,10.0,1,2001.0,6,100935,1,2,0,0,2,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,98.10233859777526,323.0,7363.184487696549,1,4,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0672263476254216,4908.789658464366,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +933,2,57.0,0.0,1,111,600.0,1200.0,0.0,56,62,0.0,79.45963662061344,1023.1203260232367,1860.0,0.0,2278.2048575277468,50,2,2,1,1,2,2,2,2,2,10.0,1,,1,100936,2,2,3,0,1,,600.0,,43,2.0,1.0,4.0,4.0,2.5,4,3,376.014527068987,600.0,26794.659090507692,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06941681899057733,10717.863636203077,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +934,2,60.0,0.0,2,111,290.0,,,0,63,0.0,0.0,,389.0,137.1733333142556,,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,100937,2,1,0,0,1,,350.0,700.0,12,1.0,0.0,4.0,1.0,1.0,1,1,152.1358613906514,290.0,36300.534735166635,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010716095584761482,36300.534735166635,9,5,9,9_1,9_2,9_0_1 +935,2,31.0,0.0,9,300,749.0,0.0,0.0,85,68,0.0,0.0,1277.1952069856738,749.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,1.0,1,2009.0,6,100938,2,1,1,0,1,,368.0,,41,0.0,0.0,7.0,4.0,2.1,2,2,1838.41823694087,749.0,40138.80701158479,7,7,1,2,126.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018660245676554985,19113.717624564182,5,3,5,5_1,5_0,5_0_0 +936,1,46.0,290.0,2,211,900.0,0.0,0.0,85,85,0.0,0.0,1534.680489034855,996.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,100939,2,2,0,1,1,720.0,0.0,390.0,41,1.0,0.0,4.0,3.0,2.0,3,3,319.027139063073,900.0,18684.153598275105,7,7,2,3,56.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0533072046727313,9342.076799137552,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +937,1,35.0,140.0,5,211,500.0,0.0,0.0,85,67,0.0,0.0,852.6002716860306,893.0,346.39730634913025,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,3,100940,2,2,0,1,1,914.0,120.0,300.0,42,1.0,1.0,3.0,4.0,2.1,2,2,3298.26090413993,500.0,9667.630246295601,6,1,2,3,40.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.09237010283281942,4603.633450616952,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +938,0,59.0,0.0,7,111,0.0,0.0,2600.0,0,75,0.0,0.0,1638.8275550783337,2600.0,0.0,3111.50358366817,41,0,0,0,0,0,0,0,0,0,,1,,5,100941,2,1,2,0,1,,280.0,,21,1.0,2.0,6.0,2.0,1.5,2,2,1468.02749986798,0.0,44691.092025162696,0,5,0,1,130.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05817714184598815,29794.061350108463,8,4,8,8_1,8_2,8_0_0 +939,2,47.0,0.0,6,400,0.0,,,0,85,0.0,0.0,,180.0,249.40606057137379,,50,0,0,0,0,0,0,0,0,0,,1,,4,100942,2,2,0,0,2,,0.0,,31,0.0,2.0,4.0,8.0,3.499999999999999,3,1,8.280596007637794,0.0,30360.50865004206,0,6,0,1,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00592875442486207,8674.431042869162,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +940,2,65.0,0.0,7,111,318.0,,,0,78,0.0,0.0,,387.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,5,100943,1,1,0,0,2,,300.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,116.46178409512639,318.0,9834.648522463633,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039350669128239917,9834.648522463633,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +941,2,53.0,0.0,6,111,648.0,1100.0,0.0,0,43,0.0,0.0,1104.9699521050957,1748.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,100944,2,1,2,0,1,,360.0,442.0,32,3.0,0.0,4.0,3.0,2.0,3,2,1090.53939576926,648.0,34691.54130288807,0,1,2,3,85.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050386922412538615,17345.770651444036,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +942,1,39.0,270.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,743.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,100945,2,1,0,0,1,,171.0,370.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2590.54344609314,0.0,8991.0,0,4,3,4,21.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08263819374930487,8991.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +944,2,57.0,0.0,6,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,693.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,100947,2,1,0,0,1,,0.0,183.0,43,3.0,0.0,3.0,3.0,2.0,3,3,1003.3171536664,0.0,62490.7998371218,1,1,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011089632422792785,31245.3999185609,8,4,8,8_0,8_4,8_0_0 +945,2,49.0,0.0,1,111,500.0,1544.0,0.0,45,62,0.0,0.0,852.6002716860306,2044.0,0.0,2931.2902500190344,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,100948,2,3,3,0,1,,350.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,180.183205819865,500.0,52824.69440619897,1,1,1,2,90.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038694024129747484,26412.347203099485,7,4,7,7_1,7_2,7_1_0 +947,2,68.0,0.0,8,111,500.0,820.0,0.0,0,77,0.0,0.0,852.6002716860306,1320.0,0.0,1556.773319310627,44,0,0,0,0,0,0,0,0,0,,1,2002.0,6,100950,2,1,2,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1239.30688066772,500.0,19858.0,0,5,1,2,125.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0664719508510424,19858.0,5,3,5,5_1,5_2,5_0_0 +948,2,46.0,0.0,5,111,1800.0,0.0,0.0,43,46,0.0,662.163638505112,3069.36097806971,2360.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,100951,1,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,540.770719361141,1800.0,62209.77131206217,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0379361626031634,27047.726657418338,7,4,7,7_1,7_4,7_0_0 +949,1,53.0,245.0,2,111,340.0,250.0,0.0,0,52,0.0,0.0,579.7681847465008,590.0,0.0,474.62601198494724,41,2,1,2,2,1,2,2,2,3,30.0,2,,2,100952,2,2,0,1,1,360.0,0.0,319.0,32,1.0,0.0,3.0,2.0,1.5,2,2,361.530060895609,340.0,9747.013072779202,0,1,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.06053136438769247,6498.008715186134,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +950,2,67.0,0.0,1,111,352.0,1310.0,0.0,77,75,0.0,0.0,600.2305912669656,1662.0,0.0,2487.0403028011237,50,0,0,0,0,0,0,0,0,0,,1,,1,100953,2,1,1,0,1,,456.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1595.4855827856,352.0,26882.906189279693,5,5,0,1,125.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06182367294287434,17921.937459519795,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +951,1,24.0,270.0,2,111,240.0,42.0,0.0,0,55,0.0,0.0,409.2481304092947,282.0,0.0,79.73717001347114,50,0,0,0,0,0,0,0,0,0,,2,,2,100954,1,1,0,1,1,648.0,0.0,289.0,22,1.0,0.0,3.0,2.0,1.5,2,2,346.128459627913,240.0,10338.814921712583,0,1,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02727585338700384,6892.543281141722,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +952,2,23.0,0.0,9,400,240.0,,,47,81,0.0,0.0,,420.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,100955,2,2,0,0,2,,0.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,72.3476207411299,240.0,16288.312209940228,4,4,0,1,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025785360360644834,7756.339147590585,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +953,1,62.0,270.0,2,111,247.0,158.0,0.0,0,78,0.0,0.0,421.1845342128991,405.0,0.0,299.96363957448665,71,2,1,2,1,1,2,1,1,0,,2,,2,100956,2,2,0,1,1,573.0,0.0,336.0,31,0.0,0.0,3.0,2.0,1.5,2,2,358.255966297828,247.0,10367.990150230047,0,6,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.03906253711005057,6911.993433486698,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +954,2,36.0,0.0,6,111,0.0,,,0,43,0.0,0.0,,255.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,4,100957,2,2,0,0,2,,284.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,99.25148889795472,0.0,15000.830721003136,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01699905856833425,15000.830721003136,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +955,1,29.0,40.0,5,120,660.0,0.0,0.0,63,52,0.0,794.5963662061343,1125.4323586255605,1345.0,117.77508415870429,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,3,100958,2,1,2,0,1,,172.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1289.64684651124,660.0,62098.67357305322,1,1,1,2,59.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021659077764643955,25874.44732210551,7,4,7,7_1,7_0,7_0_0 +956,2,36.0,0.0,9,111,675.0,890.0,0.0,55,43,0.0,52.973091080408956,1151.0103667761414,1605.0,0.0,1689.6686026664122,33,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,100959,2,1,1,0,1,,340.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1114.8174083866,675.0,57492.50483730318,1,1,0,1,145.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027916682436118508,27377.38325585866,7,4,7,7_1,7_2,7_0_0 +957,2,45.0,0.0,6,111,300.0,0.0,0.0,0,47,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,100960,2,1,0,0,1,,0.0,200.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1881.59994735526,300.0,30279.079925458973,0,1,2,3,18.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009907830777505126,30279.079925458973,8,4,8,8_0,8_2,8_0_0 +958,1,38.0,357.0,7,111,240.0,,,0,67,0.0,0.0,,324.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,2,,5,100961,2,1,0,0,1,,135.0,548.0,32,1.0,1.0,3.0,2.0,1.5,2,1,150.01652517385435,240.0,7345.079395198888,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04411116375566786,4896.719596799258,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +959,1,35.0,210.0,6,211,1200.0,,,52,55,0.0,0.0,,1340.0,193.98249155551292,,50,0,0,0,0,0,0,0,0,2,3.0,8,,4,100962,2,1,0,0,2,,480.0,380.0,43,2.0,0.0,2.0,3.0,1.8,2,2,68.02376785841226,1200.0,22465.291866355663,1,1,2,3,41.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05964756692107806,12480.717703530923,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +960,2,52.0,0.0,7,111,1265.0,0.0,0.0,65,52,0.0,0.0,2157.0786873656575,1355.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,5,100963,2,1,2,0,1,,371.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1026.93201177881,1265.0,35231.467456160666,1,1,0,1,102.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038459936466911517,19573.037475644815,5,3,5,5_1,5_2,5_0_0 +961,2,47.0,0.0,6,111,721.0,1430.0,0.0,67,63,0.0,0.0,1229.449591771256,2151.0,0.0,2714.860788553898,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,100964,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,517.516980972127,721.0,50335.89614669652,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042732923513097466,20134.35845867861,5,3,5,5_1,5_4,5_0_0 +962,2,72.0,0.0,2,111,1000.0,,,21,72,0.0,0.0,,1500.0,692.7946126982605,,71,0,0,0,0,0,0,0,0,0,,1,,2,100965,1,2,0,0,2,,400.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,84.66932140342483,1000.0,13620.378968094132,6,5,0,1,36.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1101290943162275,9080.252645396087,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +963,2,66.0,0.0,7,111,22.0,75.0,0.0,75,74,0.0,0.0,37.51441195418535,97.0,0.0,142.38780359548417,12,0,0,0,0,0,0,0,0,0,,1,,5,100966,2,2,3,0,1,,202.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1594.05719546027,22.0,67168.19929814913,5,5,0,1,175.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0014441357817176572,44778.79953209942,10,5,10,10_1,10_2,10_0_0 +964,2,59.0,0.0,5,112,450.0,0.0,0.0,55,47,1054.6828510366015,264.8654554020448,767.3402445174275,1740.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,4,90.0,1,,3,100967,2,1,2,0,1,,260.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,954.298399314872,450.0,55462.56781144826,1,1,0,1,98.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03137251066188175,36975.045207632174,9,5,9,9_1,9_0,9_0_0 +965,2,71.0,0.0,5,112,850.0,0.0,0.0,77,72,2228.544864240339,0.0,1449.420461866252,3188.0,311.75757571421724,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,100968,1,1,2,0,2,,320.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1075.42309725686,850.0,141541.22639372566,5,5,0,1,240.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02252347306311965,94360.8175958171,10,5,10,10_1,10_0,10_0_0 +966,2,41.0,0.0,1,111,462.0,1026.0,0.0,54,64,0.0,0.0,787.8026510378922,1488.0,0.0,1947.8651531862236,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,100969,2,1,3,0,1,,530.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,204.658448351891,462.0,46058.226689434036,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032306932050020803,20025.31595192784,5,3,5,5_1,5_3,5_1_0 +967,2,82.0,0.0,2,211,400.0,,,0,86,0.0,0.0,,526.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,100970,2,1,0,0,1,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,99.28570908748927,400.0,1083.434971997511,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.48549291244514897,1083.434971997511,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +968,2,47.0,0.0,7,111,400.0,350.0,0.0,0,21,0.0,0.0,682.0802173488245,750.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,0,,1,,5,100971,2,1,2,0,1,,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1050.94410247834,400.0,23807.0,0,1,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031503339353971524,23807.0,6,3,6,6_1,6_3,6_0_0 +969,2,75.0,0.0,2,111,2400.0,0.0,0.0,86,74,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,100972,2,1,0,0,1,,0.0,1800.0,41,0.0,3.0,3.0,2.0,1.5,2,2,1019.70331713262,2400.0,84945.7682040612,6,5,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028253320332975194,56630.5121360408,10,5,10,10_0,10_4,10_0_1 +970,2,38.0,0.0,8,111,160.0,,,0,43,0.0,0.0,,400.0,332.541414095165,,60,0,0,0,0,0,0,0,0,0,,1,2001.0,6,100973,2,2,0,0,1,,1440.0,,22,3.0,4.0,5.0,4.0,2.5,4,4,108.85193125262114,160.0,22441.16284242494,0,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017824388281867526,8976.465136969975,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +971,2,54.0,0.0,7,111,1413.0,0.0,0.0,54,21,0.0,0.0,2409.4483677847224,1413.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,100974,2,1,2,0,1,,1800.0,,43,4.0,0.0,6.0,5.0,3.0,5,4,1344.12252827965,1413.0,286288.63552010764,1,1,0,1,150.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004935578380304785,95429.54517336922,10,5,10,10_1,10_2,10_0_0 +972,2,60.0,0.0,7,112,2000.0,0.0,0.0,56,37,0.0,0.0,3410.4010867441225,2200.0,277.1178450793042,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,5,100975,2,2,1,0,1,,460.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,799.620992042026,2000.0,69561.17124560446,4,1,0,1,130.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03162683952276058,46374.11416373631,10,5,10,10_1,10_0,10_0_0 +973,2,34.0,0.0,9,111,1320.0,,,54,37,0.0,0.0,,1464.0,199.524848457099,,10,0,0,0,0,0,0,0,0,2,60.0,2,2007.0,6,100976,2,1,0,0,2,,640.0,827.0,43,2.0,0.0,3.0,4.0,2.1,2,2,114.69567960838712,1320.0,88061.53487178645,1,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01662473862318567,41934.064224660215,9,5,9,9_0,9_2,9_0_0 +974,2,30.0,0.0,9,300,1200.0,,,81,81,0.0,95.35156394473611,,1404.0,182.89777775234077,,43,0,0,0,0,0,0,0,0,0,,1,2005.0,6,100977,2,1,0,0,2,,0.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,119.01499097052405,1200.0,27690.449046985494,4,4,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05070340309821901,15383.582803880829,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +975,1,29.0,463.0,9,111,0.0,,,0,85,0.0,0.0,,195.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,100978,2,1,0,0,1,,484.0,730.0,31,0.0,0.0,4.0,4.0,1.9,1,1,198.86157238138708,0.0,15123.80525042579,0,6,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012893580469406668,7959.8975002241,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +976,2,68.0,0.0,5,111,320.0,60.0,0.0,0,75,0.0,0.0,545.6641738790596,380.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,2,,3,100979,1,1,0,1,1,,0.0,544.0,11,0.0,2.0,3.0,1.0,1.0,1,1,822.065008179328,320.0,16844.0047926769,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022559955585218595,16844.0047926769,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +977,2,64.0,0.0,7,120,0.0,,,74,78,0.0,0.0,,92.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,2,,5,100980,2,2,0,0,2,,0.0,350.0,41,0.0,2.0,2.0,2.0,1.5,2,2,118.34835144168845,0.0,59782.817924337985,5,5,2,3,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0015389037050149853,39855.21194955866,9,5,9,9_0,9_0,9_0_0 +978,1,47.0,432.0,6,111,800.0,0.0,0.0,52,46,0.0,0.0,1364.160434697649,800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,100981,2,2,2,0,1,,400.0,451.0,43,2.0,0.0,4.0,4.0,2.3,3,3,342.073854270306,800.0,33432.96441998002,1,1,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023928479387903413,14536.071486947834,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +979,2,71.0,0.0,1,212,774.0,0.0,0.0,72,21,4092.169462022014,0.0,1319.8252205699753,4744.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,100982,2,1,2,0,1,,694.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,880.063279841416,774.0,97066.54198429329,5,1,0,1,270.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04887368915200095,64711.02798952886,10,5,10,10_1,10_0,10_1_0 +980,2,55.0,0.0,6,112,1700.0,0.0,0.0,52,38,0.0,331.081819252556,2898.840923732504,1950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,120.0,1,,4,100983,2,1,3,0,1,,650.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,916.118217056956,1700.0,82262.43325419462,1,1,0,1,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023704623396859806,54841.62216946308,10,5,10,10_1,10_0,10_0_0 +981,2,84.0,0.0,2,111,276.0,140.0,0.0,77,78,0.0,0.0,470.6353499706889,564.0,0.0,265.7905667115705,71,0,0,0,0,0,0,0,0,0,,2,,2,100984,2,1,0,1,1,905.0,0.0,360.0,41,0.0,4.0,5.0,2.0,1.5,2,2,280.40633130677,276.0,23913.7016030095,5,5,2,3,99.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02358480545433508,15942.467735339667,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +982,2,60.0,0.0,6,112,1600.0,0.0,0.0,52,72,0.0,1059.4618216081792,2728.320869395298,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,100985,2,1,1,0,1,,187.0,,42,1.0,1.0,6.0,3.0,1.8,2,2,388.635014598351,1600.0,41699.548660219974,1,5,1,2,114.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057554579776291984,23166.41592234443,6,3,6,6_1,6_0,6_0_0 +983,2,76.0,0.0,1,112,280.0,1198.0,0.0,78,78,0.0,0.0,477.4561521441771,1478.0,0.0,2274.4078494318674,71,0,0,0,0,0,0,0,0,0,,1,,1,100986,2,3,4,0,1,,190.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1901.5248227394,280.0,33674.092518370904,5,5,0,1,100.0,8,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04389130899945342,22449.39501224727,6,3,6,6_1,6_0,6_1_0 +984,1,52.0,331.0,2,300,750.0,0.0,0.0,0,43,1582.0242765549024,0.0,1278.9004075290459,2326.0,105.3047811301356,0.0,50,2,2,2,2,1,2,2,1,1,5.0,2,,2,100987,2,3,0,1,1,1428.0,350.0,407.0,32,1.0,3.0,4.0,3.0,1.8,2,1,2119.94533831866,750.0,23677.04021758629,0,1,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09823863027745955,13153.911231992384,2,1,2_1,2_0_1,2_0_1,2_0_1_1 +985,0,30.0,0.0,1,300,640.0,1850.0,0.0,63,62,0.0,52.973091080408956,1091.3283477581192,2530.0,0.0,3512.2324886886095,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,100988,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1135.19526291874,640.0,47824.19043432694,1,1,5,0,130.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052902097809146245,26568.99468573719,7,4,7,7_1,7_0,7_1_0 +986,2,63.0,0.0,5,221,326.0,0.0,0.0,78,77,1761.3203612311245,0.0,555.8953771392919,2086.0,124.70303028568689,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,100989,1,2,3,0,2,,273.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1561.23676762595,326.0,41115.80190554332,5,5,0,1,90.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050734751684820265,27410.534603695545,7,4,7,7_1,7_1,7_0_0 +987,1,44.0,467.0,1,111,752.0,,,0,85,0.0,0.0,,1102.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,0,,2,,1,100990,1,3,0,0,2,,428.0,700.0,31,1.0,0.0,4.0,5.0,2.8,4,3,96.79372471396125,752.0,7710.887143050892,0,6,2,3,40.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.14291481376343712,2753.8882653753185,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +988,2,78.0,0.0,2,111,330.0,90.0,0.0,74,74,0.0,0.0,562.7161793127802,420.0,0.0,170.865364314581,12,2,1,2,2,2,2,2,1,0,,2,,2,100991,2,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,802.058884541439,330.0,63538.088953947736,5,5,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0066102082532638815,42358.72596929849,9,5,9,9_0,9_4,9_0_1 +989,2,35.0,0.0,2,111,462.0,1515.0,0.0,85,63,0.0,0.0,787.8026510378922,1977.0,0.0,2876.2336326287805,71,0,0,0,0,0,0,0,0,0,,1,,2,100992,2,1,1,0,1,,650.0,,42,1.0,5.0,5.0,7.0,3.3999999999999995,4,4,267.948297571958,462.0,33588.14944811759,6,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05886004535777718,9878.867484740469,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +990,2,41.0,0.0,8,111,662.0,1400.0,0.0,37,37,0.0,0.0,1128.8427597123045,2062.0,0.0,2657.9056671157045,20,1,2,2,1,2,2,2,2,2,15.0,2,1999.0,6,100993,2,1,0,0,1,,0.0,421.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1021.42653818365,662.0,131855.49401209498,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.015638332065335516,62788.33048194998,10,5,10,10_0,10_4,10_0_0 +991,2,18.0,0.0,2,111,0.0,0.0,3000.0,0,55,0.0,0.0,1890.9548712442313,3000.0,0.0,3590.196442694042,50,0,0,0,0,0,0,0,0,0,,1,,2,100994,2,2,2,0,1,,300.0,,22,2.0,1.0,4.0,3.0,2.0,3,2,324.063270666685,0.0,22664.985921971103,0,1,0,1,100.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13236275594117375,11332.492960985552,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +992,2,38.0,0.0,1,111,630.0,1000.0,0.0,85,63,0.0,0.0,1074.2763423243985,1630.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,100995,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1288.45187562918,630.0,29448.55194990142,6,1,1,2,80.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055350769123486784,12270.229979125592,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +993,2,75.0,0.0,6,111,300.0,,,77,78,0.0,0.0,,432.0,182.89777775234077,,71,2,2,2,2,1,1,2,2,0,,2,,4,100996,1,3,0,0,2,,200.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,113.99990083916595,300.0,14422.0,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.029954236582998197,9614.666666666666,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +994,2,79.0,0.0,2,111,350.0,0.0,0.0,77,74,0.0,0.0,596.8201901802214,441.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,100997,2,3,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,526.693660998239,350.0,57128.08246781664,5,5,0,1,88.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007719495928266791,38085.38831187776,9,5,9,9_0,9_2,9_0_1 +995,2,51.0,0.0,2,111,398.0,132.0,0.0,0,52,0.0,0.0,678.6698162620803,530.0,0.0,250.60253432805214,50,2,1,2,1,1,2,2,2,1,5.0,2,,2,100998,1,2,0,1,1,698.0,0.0,448.0,32,1.0,1.0,4.0,2.0,1.3,1,1,661.860132257339,398.0,24683.121055433163,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02147216305465302,18987.01619648705,5,3,5,5_0,5_4,5_0_1 +996,2,38.0,0.0,9,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,2415.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,100999,2,1,2,0,1,,0.0,1050.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1525.52350737952,0.0,57095.64493906348,1,1,2,3,95.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04229744672430724,27188.40235193499,7,4,7,7_1,7_3,7_0_0 +997,2,76.0,0.0,8,111,0.0,0.0,1200.0,78,78,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,101000,2,1,1,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2149.42497279922,0.0,37461.51640890658,5,5,0,1,100.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03203287306636356,24974.344272604387,7,4,7,7_1,7_2,7_0_0 +998,2,78.0,0.0,7,111,120.0,,,0,86,0.0,0.0,,292.0,238.3213467682016,,71,2,2,2,2,1,2,2,2,0,,1,,5,101002,1,2,0,0,2,,120.0,,11,0.0,6.0,2.0,1.0,1.0,1,1,163.82993481077742,120.0,8432.204833234704,0,5,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.034629139800910765,8432.204833234704,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +999,0,80.0,0.0,2,400,594.0,,,0,78,0.0,0.0,,732.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,101003,2,2,0,0,2,,330.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,110.27402420870726,594.0,9893.372549019607,0,5,5,0,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07398892504786331,9893.372549019607,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +1000,0,36.0,0.0,6,111,400.0,,,0,55,0.0,0.0,,466.0,91.44888887617039,,20,0,0,0,0,0,0,0,0,1,2.0,1,,4,101004,1,1,0,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,96.57811604583853,400.0,9397.613391464174,0,1,5,0,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04958705796763958,9397.613391464174,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1001,2,76.0,0.0,1,112,444.0,0.0,0.0,0,71,0.0,331.081819252556,757.1090412571951,790.0,133.01656563806603,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,101005,2,2,3,0,1,,69.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,767.056783829273,444.0,16251.0,0,5,0,1,100.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.048612393083502556,16251.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1002,2,66.0,0.0,1,111,300.0,300.0,0.0,0,74,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,12,0,0,0,0,0,0,0,0,0,,2,,1,101006,2,1,0,0,2,,0.0,1400.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1369.90921558429,300.0,56552.377098109166,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01060963359611034,56552.377098109166,10,5,10,10_0,10_4,10_1_0 +1003,0,74.0,0.0,2,111,480.0,,,0,77,0.0,52.973091080408956,,790.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,2,101007,2,2,0,0,2,,270.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,85.35187290807298,480.0,10960.322334074008,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07207817214864273,10960.322334074008,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1004,2,53.0,0.0,5,111,2400.0,0.0,0.0,68,63,0.0,0.0,4092.4813040929466,2550.0,207.83838380947813,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,3,101008,2,3,3,0,1,,320.0,,43,3.0,0.0,6.0,5.0,3.0,5,4,869.460681605439,2400.0,50408.56274991066,1,1,1,2,180.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0505866436353518,16802.85424997022,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1005,1,29.0,215.0,2,111,240.0,120.0,0.0,0,56,0.0,0.0,409.2481304092947,360.0,0.0,227.8204857527747,50,2,2,2,2,1,1,2,2,2,20.0,2,,2,101009,1,3,0,1,1,600.0,0.0,321.0,32,1.0,0.0,2.0,2.0,1.3,1,1,247.985085400259,240.0,13833.635277976902,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.026023528361566586,10641.257906136078,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +1006,2,46.0,0.0,9,111,3800.0,0.0,0.0,46,21,0.0,0.0,6479.762064813833,4000.0,277.1178450793042,0.0,12,0,0,0,0,0,0,0,0,0,,1,2005.0,6,101010,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,1683.59288291156,3800.0,43513.0,1,1,1,2,240.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09192655068600189,15540.357142857143,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +1007,1,50.0,270.0,1,111,400.0,820.0,0.0,0,85,0.0,0.0,682.0802173488245,1220.0,0.0,1556.773319310627,71,0,0,0,0,0,0,0,0,0,,1,,1,101011,2,1,1,0,1,,140.0,344.0,11,0.0,0.0,4.0,1.0,1.0,1,1,513.613289334167,400.0,10387.643478560154,0,7,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11744723454535676,10387.643478560154,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +1008,2,65.0,0.0,5,112,621.0,0.0,0.0,52,75,0.0,0.0,1058.92953743405,2621.0,2771.178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101012,2,1,2,0,1,,140.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1534.76204801769,621.0,42941.95164654053,1,5,0,1,166.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06103588447897551,28627.967764360354,8,4,8,8_1,8_0,8_0_0 +1009,2,46.0,0.0,5,112,1200.0,0.0,0.0,43,11,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,3,101013,2,1,2,0,1,,418.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,807.287935836077,1200.0,73097.35681375567,1,1,0,1,150.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018058108494445568,29238.942725502267,8,4,8,8_1,8_0,8_0_0 +1010,2,72.0,0.0,6,111,1201.0,0.0,0.0,75,74,0.0,0.0,2047.9458525898456,1281.0,110.84713803172167,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,101014,2,1,1,0,1,,326.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1093.18798392121,1201.0,68706.96580122491,5,5,0,1,100.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018644397770468307,45804.643867483275,10,5,10,10_1,10_2,10_0_0 +1011,2,84.0,0.0,1,111,624.0,,,0,86,0.0,0.0,,720.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,1,101015,2,2,0,0,2,,384.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,87.29388650547807,624.0,10664.2319391635,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06751541077757886,10664.2319391635,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +1012,2,80.0,0.0,1,222,700.0,0.0,0.0,0,74,0.0,556.2174563442941,1193.6403803604428,1708.0,814.7264645331543,0.0,10,2,2,2,2,1,2,1,2,0,,1,,1,101016,2,1,2,0,2,,184.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1218.20561270887,700.0,44237.337958946555,0,5,0,1,125.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.0386099182004367,44237.337958946555,10,5,10,10_1,10_0,10_1_0 +1013,2,61.0,0.0,7,111,480.0,,,0,37,0.0,0.0,,600.0,166.2707070475825,,20,0,0,0,0,0,0,0,0,0,,1,,5,101017,2,1,0,0,2,,50.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,89.96041202022626,480.0,64525.703017151835,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009298620114848057,64525.703017151835,10,5,10,10_1,10_3,10_0_0 +1014,1,46.0,259.0,5,111,420.0,180.0,0.0,54,67,0.0,0.0,716.1842282162656,600.0,0.0,341.730728629162,30,0,0,0,0,0,0,0,0,3,70.0,8,,3,101018,2,1,0,1,1,,0.0,400.0,43,2.0,0.0,3.0,6.0,2.6999999999999997,2,2,457.975506362469,420.0,29144.658780903388,4,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020586962589287244,10794.318067001255,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +1015,1,49.0,280.0,2,211,380.0,0.0,0.0,0,85,0.0,0.0,647.9762064813832,878.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101019,2,1,0,1,1,,100.0,370.0,11,0.0,0.0,3.0,1.0,1.0,1,1,379.172066097522,380.0,9902.114902985624,0,7,2,3,49.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08866792686229796,9902.114902985624,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +1016,0,67.0,0.0,9,300,174.0,,,0,77,0.0,0.0,,197.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,101020,2,1,0,0,2,,96.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,82.56454739687867,174.0,11207.084904774041,0,5,5,0,52.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017578166104200845,11207.084904774041,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1018,2,79.0,0.0,2,111,224.0,230.0,0.0,0,78,0.0,0.0,381.9649217153417,454.0,0.0,436.65593102615145,71,2,1,2,2,1,2,2,2,0,,2,,2,101022,1,2,0,1,1,850.0,0.0,195.0,11,0.0,2.0,4.0,1.0,1.0,1,1,426.054435802756,224.0,23157.195479147882,0,5,2,3,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019605137435956294,23157.195479147882,6,3,6,6_0,6_2,6_0_1 +1019,2,59.0,0.0,2,111,168.0,159.0,0.0,0,67,0.0,0.0,286.47369128650627,327.0,0.0,301.86214362242646,50,0,0,0,0,0,0,0,0,0,,2,,2,101023,2,1,0,1,1,732.0,0.0,256.0,12,1.0,1.0,3.0,1.0,1.0,1,1,657.92923371738,168.0,17953.06073159971,0,4,2,3,61.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018214164419576528,17953.06073159971,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +1020,2,67.0,0.0,2,400,41.0,61.0,0.0,0,75,0.0,0.0,69.91322227825451,102.0,0.0,115.80874692432712,41,0,0,0,0,0,0,0,0,0,,1,,2,101024,2,1,3,0,1,,384.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,971.184018897633,41.0,46611.96709402847,0,5,0,1,100.0,0,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.00218827924155699,46611.96709402847,10,5,10,10_1,10_0,10_0_1 +1021,1,46.0,167.0,2,111,1400.0,840.0,0.0,0,62,0.0,0.0,2387.2807607208856,2240.0,0.0,1594.7434002694229,50,0,0,0,0,0,0,0,0,0,,2,,2,101025,1,2,0,0,1,,0.0,215.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1413.35083014865,1400.0,6579.69754253308,0,4,2,3,45.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.34044118069561524,6579.69754253308,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1022,2,61.0,0.0,7,111,842.0,,,12,71,0.0,0.0,,974.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,101026,1,1,0,0,2,,800.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,105.64984327432173,842.0,5969.057867695771,1,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16317482952732576,3979.371911797181,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +1023,1,65.0,243.0,2,111,290.0,0.0,0.0,0,78,0.0,0.0,494.50815757789775,290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101027,2,1,0,1,1,,0.0,513.0,11,0.0,2.0,3.0,1.0,1.0,1,1,392.821925333924,290.0,9753.95976114351,0,5,2,3,73.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029731514902825655,9753.95976114351,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1024,1,24.0,229.0,6,111,840.0,0.0,0.0,85,42,0.0,0.0,1432.3684564325313,1138.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,101028,2,3,0,1,1,550.0,0.0,416.0,42,1.0,0.0,4.0,5.0,2.4,2,2,833.457065861464,840.0,26646.815476530224,6,1,2,3,77.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04270679177413597,11102.839781887595,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1025,1,62.0,160.0,9,111,0.0,1340.0,0.0,0,77,0.0,0.0,0.0,1670.0,0.0,2543.9954242393173,71,0,0,0,0,0,0,0,0,0,,2,2012.0,6,101029,2,3,0,0,1,,149.0,330.0,11,0.0,0.0,3.0,1.0,1.0,1,1,6219.15520685705,0.0,13673.6789456798,0,5,2,3,70.0,6,4,8,0,1,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12213245657107055,13673.6789456798,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +1026,1,38.0,400.0,2,111,1200.0,0.0,0.0,0,56,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,101030,2,2,0,1,1,,0.0,750.0,32,1.0,0.0,4.0,5.0,2.8,4,2,522.852476328625,1200.0,14040.573397959946,0,1,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08546659498780558,5014.49049927141,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +1027,2,75.0,0.0,2,112,339.0,0.0,0.0,0,77,2018.6629768840553,0.0,578.0629842031287,2313.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101031,2,2,1,0,1,,263.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,775.982135983703,339.0,19888.3812663331,0,5,0,1,68.0,9,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1162990576772293,19888.3812663331,5,3,5,5_1,5_0,5_0_1 +1028,2,44.0,0.0,2,111,900.0,1700.0,0.0,52,62,0.0,0.0,1534.680489034855,3612.0,0.0,3227.4568814976415,71,0,0,0,0,0,0,0,0,0,,1,,2,101032,1,1,1,0,1,,560.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,228.175072522604,900.0,45646.914638998154,1,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07912911592307513,18258.76585559926,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +1030,2,68.0,0.0,5,120,650.0,0.0,0.0,77,75,738.277995725621,297.97363732730037,1108.3803531918397,1650.0,103.91919190473907,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,101034,2,1,2,0,1,,389.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1299.31634662754,650.0,50760.86250544519,5,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03250535783987126,33840.575003630125,9,5,9,9_1,9_0,9_0_0 +1031,1,55.0,25.0,2,111,210.0,160.0,0.0,85,64,0.0,0.0,358.0921141081328,370.0,0.0,303.7606476703662,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,101035,2,3,0,1,1,480.0,0.0,361.0,42,2.0,0.0,3.0,5.0,3.0,5,4,706.717551855923,210.0,41063.255685113036,6,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009010488667466735,13687.751895037678,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +1032,0,56.0,0.0,1,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,2132.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,101036,2,2,5,0,1,,226.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,327.317664035131,0.0,58996.69248766507,1,1,5,0,60.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036137619078319604,39331.12832511005,9,5,9,9_1,9_2,9_1_0 +1033,2,69.0,0.0,1,300,653.0,0.0,0.0,75,72,2900.3778403506544,0.0,1113.495954821956,3467.0,88.67771042537734,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,101037,1,2,2,0,1,,332.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1335.87229499502,653.0,37666.99243253093,7,5,0,1,160.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09204345173589545,25111.328288353954,7,4,7,7_1,7_0,7_1_0 +1034,2,89.0,0.0,2,112,200.0,0.0,0.0,0,86,2109.365702073203,0.0,341.04010867441224,7743.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101038,2,1,2,0,1,,148.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,180.019327570956,200.0,17673.641459417657,0,6,0,1,76.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.43811005319868757,17673.641459417657,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +1035,2,69.0,0.0,7,111,555.0,,,77,75,0.0,0.0,,747.0,266.03313127613205,,71,0,0,0,0,0,0,0,0,0,,1,,5,101039,2,2,0,0,2,,529.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,116.23299832674974,555.0,36857.42673119101,5,5,0,1,152.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020267285761646592,24571.617820794007,7,4,7,7_1,7_2,7_0_0 +1036,1,23.0,317.0,7,111,576.0,,,0,85,0.0,0.0,,622.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,2,,5,101040,2,1,0,0,1,,432.0,295.0,31,0.0,0.0,3.0,4.0,1.9,1,1,94.14677591012492,576.0,19642.21130350099,0,6,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03166649571115936,10338.005949211049,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1037,2,33.0,0.0,2,111,0.0,,,85,81,0.0,0.0,,875.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,101041,2,1,0,0,2,,0.0,200.0,42,1.0,0.0,1.0,3.0,1.8,2,2,73.92802737868982,0.0,4871.336805555556,6,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.17962215197317072,2706.298225308642,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +1038,2,66.0,0.0,5,112,1450.0,0.0,0.0,0,78,0.0,0.0,2472.540787889489,1460.0,13.855892253965209,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,101042,2,1,3,0,1,,80.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,846.062860631056,1450.0,26297.035885551548,0,5,1,2,92.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055519565260287444,26297.035885551548,7,4,7,7_1,7_0,7_0_0 +1039,2,58.0,0.0,1,120,1200.0,0.0,0.0,56,65,52.734142551830075,0.0,2046.2406520464733,1316.0,91.44888887617039,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101043,2,1,2,0,1,,300.0,,43,2.0,2.0,5.0,4.0,2.5,4,3,1816.91995720676,1200.0,35052.18029621025,1,1,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03754402690158142,14020.872118484102,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1040,2,42.0,0.0,2,111,240.0,168.0,0.0,0,63,0.0,0.0,409.2481304092947,576.0,0.0,318.9486800538846,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,101044,2,1,0,1,1,408.0,0.0,225.0,12,1.0,0.0,2.0,1.0,1.0,1,1,281.941589260187,240.0,15075.279893553081,0,1,2,3,49.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03820824582144743,15075.279893553081,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +1041,2,44.0,0.0,9,112,600.0,0.0,0.0,52,52,0.0,304.5952737123515,1023.1203260232367,830.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,7.0,1,2010.0,6,101045,2,1,1,0,1,,397.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,652.472113912191,600.0,37148.23349090701,1,1,1,2,76.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022342919756955976,24765.48899393801,7,4,7,7_1,7_0,7_0_0 +1042,2,60.0,0.0,5,112,2105.0,0.0,0.0,52,75,0.0,145.67600047112464,3589.447143798189,2215.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,101046,2,2,2,0,1,,650.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,817.813585671694,2105.0,114956.95671680299,1,5,0,1,110.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.019268081404213433,76637.97114453533,10,5,10,10_1,10_0,10_0_0 +1043,2,61.0,0.0,2,211,700.0,0.0,0.0,71,74,0.0,1059.4618216081792,1193.6403803604428,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,101047,2,1,1,0,1,,290.0,650.0,41,0.0,10.0,3.0,2.0,1.5,2,2,945.846037448827,700.0,45458.0,5,5,3,4,65.0,1,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032997492190593516,30305.333333333332,8,4,8,8_1,8_1,8_0_1 +1044,2,79.0,0.0,5,111,340.0,0.0,0.0,0,77,0.0,0.0,579.7681847465008,340.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,101048,2,1,0,1,1,214.0,0.0,194.0,11,0.0,4.0,1.0,1.0,1.0,1,1,546.08224275944,340.0,18820.350647714247,0,5,2,3,31.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01806555076280119,18820.350647714247,5,3,5,5_0,5_2,5_0_0 +1045,2,75.0,0.0,2,211,0.0,0.0,0.0,77,78,0.0,0.0,0.0,997.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101049,2,2,0,0,2,,600.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1724.24880733776,0.0,26423.804360224385,5,5,0,1,70.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03773113009801037,17615.869573482923,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +1046,2,66.0,0.0,1,112,500.0,0.0,0.0,71,71,0.0,0.0,852.6002716860306,680.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,101050,2,1,2,0,2,,500.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,245.543346987265,500.0,24918.01583386623,5,5,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02728949225065536,16612.01055591082,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1047,2,55.0,0.0,2,111,370.0,0.0,0.0,77,64,0.0,1059.4618216081792,630.9242010476627,1320.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,101051,1,1,4,0,1,,240.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,913.007171806259,370.0,31013.337591863412,7,1,0,1,80.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04256233293466331,20675.558394575608,5,3,5,5_1,5_2,5_0_1 +1048,2,47.0,0.0,2,111,636.0,1800.0,0.0,52,34,0.0,0.0,1084.5075455846309,2436.0,0.0,3417.30728629162,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,101052,2,1,1,0,1,,564.0,,43,2.0,0.0,4.0,6.0,3.3,5,4,325.606272794497,636.0,62150.07484671745,1,1,1,2,126.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039195447567971206,18833.356014156805,5,3,5,5_1,5_3,5_0_1 +1049,2,44.0,0.0,1,111,568.8,83.0,0.0,0,42,0.0,0.0,969.9180690700283,652.0,0.0,157.57583597900248,10,2,1,2,2,1,2,2,2,1,25.0,2,,1,101053,1,1,0,2,1,726.0,0.0,1007.0,32,1.0,1.0,3.0,2.0,1.5,2,2,965.443366367594,568.8,37505.059859776826,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01738432100729034,25003.37323985122,7,4,7,7_0,7_4,7_1_0 +1050,2,38.0,0.0,2,111,0.0,0.0,0.0,43,42,0.0,0.0,0.0,1898.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,101054,2,1,1,0,1,,904.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1773.37360875526,0.0,48608.0,1,1,1,2,76.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039047070441079655,32405.333333333332,8,4,8,8_1,8_3,8_0_1 +1051,1,31.0,163.0,2,111,240.0,760.0,0.0,0,52,0.0,0.0,409.2481304092947,1000.0,0.0,1442.8630764342397,60,2,2,2,2,1,2,2,2,3,30.0,2,,2,101055,2,3,0,1,1,264.0,216.0,148.0,12,1.0,0.0,1.0,1.0,1.0,1,1,329.247194571156,240.0,15827.929394229719,0,1,2,3,26.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06317945797537884,15827.929394229719,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +1052,2,52.0,0.0,1,111,438.0,2608.0,0.0,31,31,0.0,0.0,746.8778379969627,3046.0,0.0,4951.298557026969,10,1,2,2,2,1,2,2,2,2,15.0,1,,1,101056,1,2,3,0,2,,300.0,,43,2.0,1.0,8.0,4.0,2.5,4,4,555.663665855713,438.0,68401.70795303017,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0445310517990518,27360.68318121207,7,4,7,7_1,7_4,7_1_0 +1053,1,25.0,377.0,2,111,0.0,0.0,654.0,0,56,0.0,0.0,412.2281619312424,654.0,0.0,782.6628245073013,70,2,1,2,1,2,2,2,2,0,,2,,2,101057,1,3,0,1,1,994.0,154.0,391.0,32,1.0,0.0,5.0,2.0,1.3,1,1,1572.97412169442,0.0,7474.642708422814,0,1,2,3,78.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08749582093911178,5749.725160325242,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1054,2,90.0,0.0,2,111,336.0,96.0,0.0,74,74,0.0,0.0,572.9473825730125,432.0,0.0,182.25638860221974,12,0,0,0,0,0,0,0,0,0,,2,,2,101058,2,1,0,1,2,,0.0,,41,0.0,8.0,9.0,2.0,1.5,2,2,1078.87907885265,336.0,139215.50854931682,5,5,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0031031025530245783,92810.33903287788,10,5,10,10_0,10_4,10_0_1 +1055,1,35.0,372.0,2,111,0.0,0.0,650.0,0,85,0.0,0.0,409.70688876958343,650.0,0.0,777.8758959170425,50,0,0,0,0,0,0,0,0,0,,2,,2,101059,2,1,0,1,1,703.0,0.0,324.0,31,0.0,0.0,4.0,5.0,2.4,2,1,385.155650284592,0.0,13481.541738842112,0,6,2,3,69.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04821407021477846,5617.30905785088,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1056,2,34.0,0.0,2,111,347.0,540.0,0.0,65,64,0.0,0.0,591.7045885501052,887.0,0.0,1025.192185887486,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,101060,1,2,0,1,1,107.0,0.0,575.0,43,2.0,0.0,2.0,3.0,1.8,2,2,629.732821926661,347.0,43311.752119496756,1,1,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02047943009908199,24062.08451083153,6,3,6,6_0,6_4,6_0_1 +1058,2,82.0,0.0,2,111,444.0,1200.0,0.0,0,77,0.0,0.0,757.1090412571951,1644.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,101062,1,2,3,0,1,,240.0,,21,0.0,2.0,4.0,2.0,1.5,2,2,1206.10491289033,444.0,20558.83360956928,0,5,0,1,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07996562602825807,13705.889073046186,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +1059,2,60.0,0.0,2,111,390.0,0.0,0.0,31,34,0.0,0.0,665.0282119151038,390.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,101063,2,1,0,1,2,,0.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,953.377823851537,390.0,168149.53183452046,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002319364173929472,112099.68788968031,10,5,10,10_0,10_4,10_0_1 +1060,1,29.0,277.0,9,300,1000.0,0.0,0.0,0,56,0.0,0.0,1705.2005433720612,1120.0,166.2707070475825,0.0,50,2,2,2,1,2,2,2,2,2,20.0,1,2006.0,6,101064,1,2,5,0,1,,163.0,365.0,32,1.0,0.0,3.0,2.0,1.3,1,1,667.32551485209,1000.0,18072.68849892022,0,1,2,3,66.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.06197196394254879,13902.068076092475,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +1061,0,36.0,0.0,5,111,725.0,0.0,0.0,85,63,0.0,0.0,1236.2703939447445,1125.0,554.2356901586083,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,101065,1,3,3,0,2,,760.0,,42,1.0,0.0,7.0,6.0,2.6999999999999997,2,2,571.972804944215,725.0,16241.667780596117,6,1,5,0,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0692662856547303,6015.4325113318955,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +1062,1,20.0,120.0,2,111,360.0,500.0,0.0,0,68,0.0,0.0,613.872195613942,860.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,101066,2,1,0,0,1,,120.0,262.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1368.29350021463,360.0,14356.804223046904,0,1,2,3,43.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05990191038611827,14356.804223046904,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +1063,2,35.0,0.0,2,111,720.0,,,54,46,0.0,0.0,,742.0,30.482962958723462,,31,0,0,0,0,0,0,0,0,1,1.0,2,,2,101067,2,1,0,0,1,,160.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,126.62965452399786,720.0,61651.157041072554,1,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012035459440050297,34250.642800595866,9,5,9,9_0,9_2,9_0_1 +1064,2,39.0,0.0,9,111,630.0,0.0,0.0,0,46,0.0,0.0,1074.2763423243985,630.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,15.0,2,2004.0,6,101068,2,1,0,0,1,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,159.414458888036,630.0,23247.428453691937,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.027099771540535673,23247.428453691937,6,3,6,6_0,6_3,6_0_0 +1065,2,65.0,0.0,2,111,726.0,0.0,0.0,77,77,0.0,847.5694572865433,1237.9755944881165,1456.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101069,2,2,1,0,1,,231.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,2126.46925552768,726.0,32948.379987797634,5,5,0,1,124.0,4,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04419033653670459,21965.586658531756,6,3,6,6_1,6_2,6_0_1 +1066,2,48.0,0.0,8,111,257.0,,,0,90,0.0,0.0,,326.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,2,20.0,8,2000.0,6,101070,2,1,0,0,2,,289.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,147.2030123224934,257.0,25494.800272095046,0,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01278692111806102,25494.800272095046,7,4,7,7_0,7_2,7_0_0 +1067,1,32.0,184.0,2,111,300.0,0.0,0.0,85,62,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,101071,2,1,0,1,1,500.0,0.0,495.0,42,1.0,0.0,6.0,5.0,2.4,2,2,1884.68066712006,300.0,31370.13725494089,6,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.00956323517369211,13070.89052289204,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1068,2,27.0,0.0,2,111,252.0,240.0,0.0,0,35,0.0,0.0,429.7105369297594,492.0,0.0,455.6409715055494,10,2,2,2,1,1,2,2,2,1,5.0,2,,2,101072,1,2,0,0,2,,0.0,430.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1669.64297273349,252.0,8999.121576948854,0,1,2,3,55.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,0,0.05467200279416742,8999.121576948854,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +1069,1,52.0,270.0,2,111,350.0,320.0,0.0,0,85,0.0,13.243272770102239,596.8201901802214,680.0,0.0,607.5212953407324,71,2,1,2,2,1,2,2,2,0,,2,,2,101073,2,2,0,1,2,1014.0,260.0,300.0,31,0.0,1.0,3.0,2.0,1.5,2,2,232.699563044648,350.0,9186.176739341092,0,6,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07402426703677543,6124.117826227394,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1070,2,85.0,0.0,2,111,577.0,1742.0,0.0,77,78,0.0,0.0,983.9007135256793,2319.0,0.0,3307.1940515111123,50,0,0,0,0,0,0,0,0,0,,1,,2,101074,2,2,1,0,1,,125.0,,41,0.0,8.0,6.0,2.0,1.5,2,2,917.006733960889,577.0,39307.41709752258,5,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05899649916570476,26204.94473168172,7,4,7,7_1,7_3,7_0_1 +1071,2,70.0,0.0,5,111,360.0,,,0,77,0.0,0.0,,444.0,116.38949493330776,,41,0,0,0,0,0,0,0,0,0,,1,,3,101075,2,2,0,0,2,,400.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,121.96191140027348,360.0,11404.508509430765,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0389319714771436,11404.508509430765,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +1072,1,52.0,43.0,9,111,420.0,,,56,68,0.0,0.0,,588.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,101076,2,1,0,0,2,,341.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,71.56634871919583,420.0,24151.0,4,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024346817937145458,9660.4,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +1073,2,52.0,0.0,6,300,1000.0,0.0,0.0,0,64,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,101077,2,2,1,0,1,,155.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1239.97381120469,1000.0,26493.75043565667,0,1,1,2,88.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037744750499881956,26493.75043565667,7,4,7,7_1,7_0,7_0_0 +1074,2,80.0,0.0,2,300,454.0,0.0,0.0,77,78,0.0,0.0,774.1610466909158,1414.0,1330.16565638066,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101078,2,1,1,0,1,,325.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1069.87348828282,454.0,27766.122697681756,5,5,0,1,72.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05092536741250003,18510.74846512117,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +1075,2,45.0,0.0,7,111,510.0,,,0,56,0.0,0.0,,769.0,358.86760937769895,,71,0,0,0,0,0,0,0,0,0,,1,,5,101079,1,1,0,0,2,,284.0,,32,2.0,0.0,4.0,4.0,2.5,4,3,124.43630317902715,510.0,15400.240200494387,0,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049934286088298356,6160.096080197754,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1076,2,49.0,0.0,9,112,800.0,0.0,0.0,85,21,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,101080,2,1,1,0,1,,250.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,943.451147065315,800.0,33882.82987243962,6,1,1,2,150.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023610778763515323,16134.680891637914,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1077,1,40.0,199.0,2,111,420.0,336.0,0.0,0,68,0.0,0.0,716.1842282162656,756.0,0.0,637.8973601077691,50,2,2,2,2,1,2,2,2,3,50.0,2,,2,101081,1,2,0,1,1,,0.0,359.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,426.384914644795,420.0,28551.824222258172,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.026478168053817183,10981.470854714684,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +1078,1,66.0,181.0,9,111,0.0,0.0,1220.0,0,77,0.0,0.0,768.9883143059874,1220.0,0.0,1460.0132200289106,70,2,2,2,2,1,2,2,1,0,,1,2004.0,6,101082,1,3,2,0,1,,480.0,454.0,21,0.0,0.0,3.0,2.0,1.5,2,2,571.45264311699,0.0,32098.6461860383,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.03800783350578362,21399.097457358865,6,3,6,6_1,6_3,6_0_0 +1079,2,50.0,0.0,1,112,855.0,0.0,0.0,54,21,4007.794833939086,0.0,1457.9464645831124,4655.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101083,2,1,2,0,1,,500.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,1144.10519880626,855.0,144845.83639677402,1,1,0,1,150.0,9,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03213761690221201,72422.91819838701,10,5,10,10_1,10_0,10_1_0 +1080,0,51.0,0.0,2,111,400.0,,,85,52,0.0,0.0,,656.0,354.71084170150937,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,101084,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,122.73973837996122,400.0,20082.4,6,1,5,0,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03266541847587937,11156.888888888889,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1081,2,50.0,0.0,8,112,625.0,0.0,0.0,67,52,0.0,0.0,1065.7503396075383,1485.0,1191.606733841008,0.0,50,1,2,2,1,2,2,2,2,2,30.0,1,1999.0,6,101085,2,2,1,0,1,,216.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1962.44525893864,625.0,38919.850774154555,1,1,1,2,155.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.038155336427603714,25946.567182769704,7,4,7,7_1,7_1,7_0_0 +1082,2,60.0,0.0,5,111,1100.0,350.0,0.0,56,38,0.0,0.0,1875.7205977092674,1450.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,101086,2,2,0,1,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,413.727001210381,1100.0,86479.09924137438,1,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016767057158549512,57652.73282758292,10,5,10,10_0,10_3,10_0_0 +1083,2,41.0,0.0,2,112,1410.0,0.0,0.0,52,47,0.0,0.0,2404.3327661546064,1530.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,2,101087,2,1,1,0,1,,210.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,861.712430216037,1410.0,53415.19786110046,1,1,1,2,126.0,9,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028643533325076763,25435.80850528593,7,4,7,7_1,7_0,7_0_1 +1084,1,51.0,189.0,2,111,840.0,,,0,55,0.0,0.0,,1140.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,8,,2,101088,2,1,0,0,2,,240.0,232.0,22,2.0,0.0,4.0,2.0,1.5,2,2,30.250519008406958,840.0,10483.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10874749594581704,6988.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1085,2,64.0,0.0,1,112,2640.0,0.0,0.0,71,78,0.0,66.2163638505112,4501.729434502242,2690.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101089,2,2,3,0,1,,290.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,769.006068465246,2640.0,33045.74801632142,7,5,0,1,120.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0814023032152699,22030.498677547614,6,3,6,6_1,6_0,6_1_0 +1086,0,55.0,0.0,6,300,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1404.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,1.0,2,,4,101090,2,1,0,0,1,,0.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1761.11716805653,0.0,28863.754641950924,0,1,5,0,111.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048642320357013075,28863.754641950924,8,4,8,8_0,8_0,8_0_0 +1087,2,77.0,0.0,1,111,450.0,1080.0,0.0,74,86,0.0,0.0,767.3402445174275,1530.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,0,,2,,1,101091,2,1,0,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,754.109845808345,450.0,88994.20723664766,5,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01719213022406641,59329.47149109844,10,5,10,10_0,10_4,10_1_0 +1088,2,49.0,0.0,8,111,288.0,,,46,47,0.0,0.0,,357.0,95.60565655235995,,42,0,0,0,0,0,0,0,0,0,,1,2001.0,6,101092,2,1,0,0,2,,294.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,82.46593908786451,288.0,49517.011143872674,1,1,0,1,149.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0072096435498243076,27509.45063548482,7,4,7,7_1,7_3,7_0_0 +1089,2,34.0,0.0,9,112,900.0,0.0,0.0,47,54,0.0,397.2981831030672,1534.680489034855,1200.0,0.0,0.0,31,2,2,1,2,2,2,2,1,2,40.0,1,2008.0,6,101093,2,1,1,0,1,,431.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1266.97363341689,900.0,47047.38343457748,1,1,1,2,90.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.025506200608768816,22403.515921227372,6,3,6,6_1,6_0,6_0_0 +1090,2,75.0,0.0,6,111,1200.0,,,75,74,0.0,0.0,,1344.0,199.524848457099,,10,0,0,0,0,0,0,0,0,0,,1,,4,101094,1,1,0,0,2,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,57.57650385070788,1200.0,68055.85183424084,5,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01974848545388121,45370.56788949389,10,5,10,10_1,10_2,10_0_0 +1091,2,69.0,0.0,2,111,800.0,0.0,0.0,77,75,2636.7071275915036,0.0,1364.160434697649,3350.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101095,2,1,1,0,1,,650.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,655.978640126057,800.0,45850.14800240682,5,5,0,1,75.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07306410439120388,30566.76533493788,8,4,8,8_1,8_4,8_0_1 +1092,2,47.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,490.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,,2,101096,2,2,0,1,1,660.0,0.0,865.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1261.49842914731,0.0,53565.91994601856,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009147607293850288,53565.91994601856,10,5,10,10_0,10_4,10_0_1 +1093,1,31.0,62.0,1,300,1440.0,0.0,0.0,0,53,0.0,1059.4618216081792,2455.488782455768,2300.0,83.13535352379125,0.0,42,2,2,2,1,1,2,2,2,2,45.0,1,,1,101097,2,1,2,0,2,,150.0,500.0,12,1.0,1.0,4.0,1.0,1.0,1,1,264.540090621329,1440.0,16769.868461360278,0,1,2,3,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.13715074780100195,16769.868461360278,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +1094,1,44.0,112.0,9,111,700.0,0.0,0.0,0,22,632.8097106219609,0.0,1193.6403803604428,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2008.0,6,101098,2,1,0,0,1,,300.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1815.02130973425,700.0,13478.170209166556,0,1,0,1,66.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09645226168132712,13478.170209166556,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +1095,2,44.0,0.0,1,111,867.24,0.0,0.0,23,23,2610.3400563155888,0.0,1478.8181192339864,3342.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,101099,2,1,1,0,1,,416.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,965.83552285442,867.24,79530.18929816276,1,1,0,1,150.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04202177851571144,37871.518713410835,9,5,9,9_1,9_4,9_1_0 +1096,1,88.0,132.0,2,111,219.0,0.0,0.0,0,77,0.0,0.0,373.43891899848137,219.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,101100,2,1,0,1,1,648.0,240.0,288.0,21,1.0,6.0,3.0,2.0,1.5,2,2,411.722013334667,219.0,20393.196274728823,0,5,2,3,71.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010738875703922098,13595.46418315255,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +1097,2,75.0,0.0,6,400,618.0,,,86,71,0.0,0.0,,684.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,4,101101,2,1,0,0,2,,514.0,,41,1.0,4.0,5.0,3.0,2.0,3,3,103.74854930287046,618.0,18605.137254901958,5,5,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03676403944936145,9302.568627450979,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +1098,1,34.0,193.0,2,111,0.0,0.0,1375.0,56,62,0.0,0.0,866.6876493202727,1375.0,0.0,1645.5067029014363,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,101102,2,2,0,0,1,,407.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,248.40981159005,0.0,38733.456648575266,1,1,1,2,78.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.035499026396617166,18444.503165988222,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +1099,2,49.0,0.0,7,111,600.0,,,42,52,0.0,0.0,,692.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,2,30.0,2,,5,101103,2,2,0,0,2,,600.0,460.0,43,2.0,0.0,3.0,3.0,2.0,3,2,102.93452443917288,600.0,46359.0,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014926982894367868,23179.5,6,3,6,6_0,6_2,6_0_0 +1100,2,59.0,0.0,9,111,56.0,,,0,52,0.0,0.0,,224.0,232.77898986661552,,71,2,2,2,2,2,2,2,1,1,30.0,1,2005.0,6,101104,2,1,0,0,2,,498.0,,12,1.0,4.0,2.0,1.0,1.0,1,1,129.63355943121076,56.0,29550.60399149515,0,1,0,1,32.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.007580217313475846,29550.60399149515,8,4,8,8_1,8_2,8_0_0 +1102,2,61.0,0.0,2,111,1188.0,,,0,55,0.0,0.0,,1188.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,2,101106,2,1,0,0,2,,480.0,,22,3.0,0.0,5.0,4.0,2.5,4,4,35.40010539067134,1188.0,24671.31287838449,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048153092048897554,9868.525151353797,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1103,2,40.0,0.0,2,111,800.0,,,48,48,0.0,0.0,,920.0,166.2707070475825,,41,0,0,0,0,0,0,0,0,0,,1,,2,101107,2,1,0,0,2,,300.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,88.644901669831,800.0,42232.1727239502,4,4,1,2,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021784339773697238,18361.814227804436,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1104,2,53.0,0.0,6,111,770.0,,,0,85,0.0,0.0,,1022.0,349.1684847999233,,31,0,0,0,0,0,0,0,0,0,,8,,4,101108,1,2,0,0,2,,426.0,566.0,31,2.0,2.0,5.0,4.0,2.5,4,4,94.88319945393891,770.0,14111.599462365592,0,7,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07242269047712027,5644.639784946236,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +1105,2,55.0,0.0,7,111,1200.0,,,85,21,0.0,0.0,,1450.0,346.39730634913025,,50,0,0,0,0,0,0,0,0,0,,1,,5,101109,2,1,0,0,2,,350.0,,42,2.0,3.0,4.0,4.0,2.3,3,3,96.82772243500392,1200.0,58157.585150561754,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024932259416310963,25285.906587200763,7,4,7,7_1,7_2,7_0_0 +1106,2,53.0,0.0,2,111,0.0,1260.0,0.0,56,37,0.0,0.0,0.0,1777.0,0.0,2392.115100404134,31,0,0,0,0,0,0,0,0,0,,2,,2,101110,1,2,0,0,1,,600.0,613.0,43,3.0,6.0,4.0,3.0,2.0,3,3,1370.62333240284,0.0,33581.68512079459,4,4,2,3,90.0,7,6,4,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0529157483791556,16790.842560397294,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +1107,0,54.0,0.0,1,111,319.0,0.0,0.0,0,78,0.0,1059.4618216081792,543.9589733356875,1215.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101111,2,2,1,0,2,,184.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,694.388728091892,319.0,20099.801422500397,0,7,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060448358392232074,20099.801422500397,5,3,5,5_1,5_3,5_1_0 +1108,2,45.0,0.0,8,111,1500.0,,,56,43,0.0,0.0,,1650.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,101112,1,2,0,0,2,,1200.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,77.4404005452826,1500.0,25660.165693114057,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06430200099770907,10691.73570546419,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +1109,2,92.0,0.0,1,400,431.0,0.0,0.0,71,71,0.0,794.5963662061343,734.9414341933584,5031.0,5542.356901586084,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101113,2,3,4,0,1,,0.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1960.20446833965,431.0,21356.06505793035,5,5,0,1,124.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23557710591126857,14237.3767052869,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1110,2,72.0,0.0,1,112,850.0,0.0,0.0,0,71,0.0,0.0,1449.420461866252,850.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,101114,2,1,2,0,2,,220.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1522.64414967029,850.0,20005.837841738936,0,5,0,1,90.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04248759820629021,20005.837841738936,5,3,5,5_1,5_1,5_1_0 +1111,2,51.0,0.0,2,111,710.0,1413.0,0.0,55,65,0.0,0.0,1210.6923857941633,2123.0,0.0,2682.586219738922,60,0,0,0,0,0,0,0,0,2,12.0,1,,2,101115,2,2,2,0,1,,396.0,290.0,43,3.0,0.0,6.0,4.0,2.5,4,3,198.510162775482,710.0,47626.64030622987,1,1,2,3,76.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044575892533034664,19050.65612249195,5,3,5,5_1,5_3,5_0_1 +1112,2,44.0,0.0,9,111,780.0,,,0,22,0.0,0.0,,918.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,101116,1,1,0,0,2,,720.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,173.42643877097305,780.0,40922.177588458835,0,1,1,2,127.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022432823815781027,20461.088794229418,5,3,5,5_1,5_3,5_0_0 +1113,2,46.0,0.0,2,111,400.0,0.0,0.0,0,54,0.0,132.4327277010224,682.0802173488245,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,101117,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1825.65422533371,400.0,21545.425902318366,0,1,1,2,42.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023206781906604045,21545.425902318366,6,3,6,6_0,6_3,6_0_1 +1114,1,26.0,377.0,6,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,936.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,101118,2,1,0,1,1,611.0,0.0,399.0,32,1.0,0.0,4.0,2.0,1.3,1,1,319.484853470455,0.0,7835.536120587893,0,4,2,3,88.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11945576991734586,6027.335477375302,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1115,0,70.0,0.0,2,211,450.0,0.0,0.0,0,77,843.7462808292812,0.0,767.3402445174275,1294.0,60.965925917446924,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101119,2,1,1,0,1,,350.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1656.01161486471,450.0,19029.77467155202,0,5,0,1,90.0,2,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06799870320768568,19029.77467155202,5,3,5,5_1,5_1,5_0_1 +1116,2,66.0,0.0,5,211,360.0,,,0,77,0.0,0.0,,492.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,,3,101120,1,1,0,0,2,,240.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,87.81476709017497,360.0,24071.722928376777,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02043891920258061,24071.722928376777,6,3,6,6_1,6_2,6_0_0 +1117,2,74.0,0.0,2,111,300.0,600.0,0.0,0,77,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,1,,2,101121,2,2,2,0,2,,100.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,981.144871818693,300.0,20577.855338366826,0,5,0,1,80.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04373633623140384,20577.855338366826,5,3,5,5_1,5_2,5_0_1 +1118,2,48.0,0.0,8,111,1152.0,0.0,0.0,52,63,0.0,185.40581878143135,1964.3910259646145,1342.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,101122,2,1,1,0,1,,810.0,,43,4.0,0.0,3.0,4.0,2.5,4,4,622.2156736261,1152.0,44360.98501872462,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030251807966697457,17744.39400748985,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +1119,1,51.0,300.0,2,111,300.0,0.0,0.0,85,21,0.0,0.0,511.56016301161833,500.0,277.1178450793042,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,101123,1,3,0,1,1,130.0,0.0,400.0,42,1.0,4.0,4.0,5.0,2.4,2,2,376.210726293945,300.0,11588.69310238458,6,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.043145503602741546,4828.622125993575,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1120,2,60.0,0.0,5,112,724.0,0.0,0.0,0,77,0.0,0.0,1234.5651934013722,1904.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101124,2,2,3,0,2,,90.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,312.872280269679,724.0,24101.496264331876,0,5,0,1,107.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07899924465759227,24101.496264331876,6,3,6,6_1,6_0,6_0_0 +1121,2,54.0,0.0,1,120,900.0,0.0,0.0,62,45,2636.7071275915036,0.0,1534.680489034855,3977.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,101125,2,2,3,0,1,,300.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,1028.99815361188,900.0,83306.94590989886,4,1,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047739116547392685,41653.47295494943,9,5,9,9_1,9_0,9_1_0 +1122,1,50.0,76.0,5,111,324.0,360.0,0.0,0,52,0.0,0.0,552.4849760525478,684.0,0.0,683.461457258324,50,2,2,2,1,1,2,2,2,2,5.0,2,,3,101126,2,3,0,0,1,,0.0,326.0,32,3.0,0.0,4.0,4.0,2.5,4,3,326.844126739356,324.0,26551.64123638331,0,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.025761119394108307,10620.656494553325,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1123,0,79.0,0.0,1,111,270.0,920.0,0.0,0,77,0.0,0.0,460.40414671045653,1190.0,0.0,1746.6237241046058,71,2,2,1,1,1,2,2,2,0,,1,,1,101127,1,3,1,0,1,,195.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,244.889591731801,270.0,16747.36279925114,0,5,5,0,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07105596351284699,16747.36279925114,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +1124,2,49.0,0.0,1,111,303.0,1020.0,0.0,0,37,0.0,0.0,516.6757646417345,1323.0,0.0,1936.4741288985847,10,0,0,0,0,0,0,0,0,3,50.0,2,,1,101128,1,2,0,0,2,,0.0,1509.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1209.31188767624,303.0,69328.21542077401,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019083139411137456,69328.21542077401,10,5,10,10_0,10_4,10_1_0 +1125,1,30.0,326.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2012.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101129,2,1,2,0,1,,497.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,234.679208139742,0.0,10974.478350865187,0,4,1,2,80.0,7,5,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.18333445432888218,6859.048969290741,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +1126,2,29.0,0.0,6,111,1200.0,,,47,47,0.0,0.0,,1200.0,0.0,,31,0,0,0,0,0,0,0,0,2,40.0,8,,4,101130,2,2,0,0,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,99.34133854143805,1200.0,82238.51801403542,1,1,1,2,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01459170263495263,39161.19905430258,9,5,9,9_0,9_2,9_0_0 +1127,2,50.0,0.0,7,112,1260.0,0.0,0.0,38,34,0.0,198.6490915515336,2148.552684648797,1488.0,108.07595958092864,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,101131,1,1,2,0,1,,145.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,1629.49593010346,1260.0,98257.49301575078,4,1,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015143883222844613,49128.74650787539,10,5,10,10_1,10_0,10_0_0 +1128,1,35.0,21.0,5,111,600.0,,,0,68,0.0,0.0,,620.0,27.711784507930417,,60,0,0,0,0,0,0,0,0,3,30.0,2,,3,101132,2,1,0,0,2,,180.0,227.0,12,1.0,0.0,2.0,1.0,1.0,1,1,146.77890159253644,600.0,14233.36289234727,0,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04355962850728341,14233.36289234727,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +1129,1,43.0,280.0,2,120,1450.0,0.0,0.0,85,68,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,10.0,1,,2,101133,1,3,3,0,1,,600.0,362.0,42,1.0,0.0,4.0,4.0,2.3,3,2,1764.1855507045,1450.0,10446.587042095804,6,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0.13880131320947667,4541.994366128611,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +1130,2,62.0,0.0,6,300,850.0,2700.0,0.0,75,31,0.0,397.2981831030672,1449.420461866252,3850.0,0.0,5125.96092943743,10,2,2,2,2,1,2,2,2,2,3.0,1,,4,101134,2,2,1,0,1,,320.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,854.858374565496,850.0,157811.97163503332,6,1,0,1,130.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02439612128352196,105207.98109002221,10,5,10,10_1,10_0,10_0_0 +1131,2,89.0,0.0,2,111,402.0,59.0,0.0,0,77,0.0,0.0,685.4906184355685,461.0,0.0,112.01173882844755,70,2,1,2,2,1,2,2,2,0,,2,,2,101135,2,2,0,1,1,492.0,0.0,247.0,11,0.0,0.0,4.0,1.0,1.0,1,1,508.019895430687,402.0,21869.47709287465,0,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.021079607804166456,21869.47709287465,6,3,6,6_0,6_3,6_0_1 +1132,2,66.0,0.0,2,111,1100.0,400.0,0.0,77,78,0.0,0.0,1875.7205977092674,1500.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,101136,1,3,0,1,1,1400.0,0.0,336.0,41,3.0,0.0,4.0,6.0,3.5,6,6,214.851744269966,1100.0,22206.939768566444,6,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06754645239877784,6344.839933876127,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +1133,2,46.0,0.0,2,211,1400.0,0.0,0.0,52,64,1582.0242765549024,0.0,2387.2807607208856,3080.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,101137,2,1,1,0,1,,720.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1174.83200704829,1400.0,50953.854700344404,1,1,1,2,70.0,3,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0604468497646201,25476.927350172202,7,4,7,7_1,7_2,7_0_1 +1134,2,34.0,0.0,1,112,750.0,0.0,0.0,62,46,3164.0485531098047,0.0,1278.9004075290459,3850.0,138.5589225396521,0.0,31,2,2,2,2,1,2,2,2,2,5.0,1,,1,101138,2,1,4,0,1,,295.0,800.0,43,2.0,0.0,5.0,4.0,2.1,2,2,928.254049380783,750.0,57747.500789607184,1,1,2,3,160.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,1,0,0.0666695518828909,27498.809899812943,7,4,7,7_1,7_0,7_1_0 +1135,2,83.0,0.0,5,120,1512.0,0.0,0.0,86,74,0.0,0.0,2578.2632215785566,1532.0,27.711784507930417,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,101139,2,1,1,0,1,,360.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1281.94363683244,1512.0,66605.33532673084,6,5,0,1,155.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023001160379792572,44403.556884487225,10,5,10,10_1,10_1,10_0_0 +1136,1,32.0,76.0,1,111,309.0,1180.0,0.0,0,55,0.0,0.0,526.9069679019669,1489.0,0.0,2240.234776568951,50,0,0,0,0,0,0,0,0,2,2.0,1,,1,101140,1,3,2,0,2,,442.0,338.0,32,1.0,0.0,3.0,3.0,1.6,1,1,235.51128287648,309.0,31915.442025898898,0,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04665453164620747,19947.15126618681,5,3,5,5_1,5_3,5_1_0 +1137,2,44.0,0.0,5,112,5800.0,0.0,0.0,42,22,0.0,0.0,9890.163151557956,5800.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,101141,2,1,1,0,1,,780.0,,43,2.0,0.0,6.0,7.0,3.3999999999999995,4,2,252.179433297239,5800.0,96486.84818175978,1,4,1,2,180.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0601118194790039,28378.484759341114,8,4,8,8_1,8_0,8_0_0 +1138,2,55.0,0.0,2,111,600.0,84.0,0.0,0,37,0.0,0.0,1023.1203260232367,684.0,0.0,159.4743400269423,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,101142,2,1,0,1,1,516.0,0.0,400.0,32,1.0,0.0,4.0,2.0,1.5,2,1,955.393380313385,600.0,46956.978518578384,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014566524967729292,31304.65234571892,8,4,8,8_0,8_4,8_0_1 +1139,2,44.0,0.0,1,300,360.0,0.0,0.0,0,65,0.0,0.0,613.872195613942,420.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,101143,1,2,4,0,2,,70.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,252.776793238364,360.0,21075.80674323155,0,1,1,2,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01992806278387811,21075.80674323155,5,3,5,5_1,5_0,5_1_0 +1140,1,61.0,265.0,2,111,327.0,0.0,0.0,0,75,0.0,0.0,557.600577682664,327.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101144,2,1,0,0,1,,120.0,479.0,11,0.0,2.0,1.0,1.0,1.0,1,1,1606.46474260014,327.0,5323.264816497705,0,7,3,4,28.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.061428467542432086,5323.264816497705,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1141,2,79.0,0.0,2,111,300.0,200.0,0.0,0,86,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,70,0,0,0,0,0,0,0,0,0,,2,,2,101145,1,3,0,1,1,874.0,0.0,377.0,11,0.0,3.0,4.0,1.0,1.0,1,1,397.996691370921,300.0,19862.18541303552,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025173463523900586,19862.18541303552,5,3,5,5_0,5_4,5_0_1 +1142,1,60.0,254.0,6,211,110.0,0.0,0.0,0,86,0.0,0.0,187.57205977092673,643.0,0.0,0.0,70,2,2,2,2,2,2,2,1,0,,2,,4,101146,2,2,0,0,1,,182.0,56.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1866.92493976529,110.0,6230.245746691871,0,7,2,3,40.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.10320620183263547,6230.245746691871,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1143,2,42.0,0.0,8,120,450.0,,,67,63,0.0,0.0,,522.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,2,90.0,2,2003.0,6,101147,2,1,0,0,2,,650.0,340.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,90.76917269996541,450.0,45774.03565365026,1,1,2,3,78.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011403844833558455,17605.398328327025,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +1144,2,84.0,0.0,1,300,200.0,0.0,0.0,78,78,1265.6194212439218,331.081819252556,341.04010867441224,1720.0,96.99124577775646,0.0,71,1,2,2,1,1,2,2,2,0,,1,,1,101148,2,2,4,0,1,,157.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1386.88417891627,200.0,32675.434345557907,5,5,0,1,90.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0526389330225943,21783.622897038604,6,3,6,6_1,6_0,6_1_0 +1145,2,50.0,0.0,7,111,215.0,,,81,21,0.0,0.0,,299.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,5,101149,2,1,0,0,2,,300.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,84.52349117401357,215.0,7032.0,4,4,0,1,114.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04251990898748578,4688.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +1146,1,34.0,170.0,5,111,350.0,0.0,0.0,35,52,0.0,0.0,596.8201901802214,350.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,,3,101150,2,2,0,1,1,750.0,0.0,490.0,43,2.0,0.0,4.0,4.0,2.1,2,2,828.067760815651,350.0,37720.17362882919,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00927885442532794,17961.98744229961,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +1147,2,65.0,0.0,1,111,450.0,1050.0,0.0,78,78,0.0,0.0,767.3402445174275,1500.0,0.0,1993.4292503367785,50,0,0,0,0,0,0,0,0,0,,1,,1,101151,2,1,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1524.20431854616,450.0,15605.030384569767,6,5,0,1,80.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09612285032672528,10403.353589713179,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +1148,2,49.0,0.0,1,111,600.0,1800.0,0.0,85,38,0.0,397.2981831030672,1023.1203260232367,2700.0,0.0,3417.30728629162,10,2,2,2,1,1,2,2,2,2,20.0,1,,1,101152,2,2,3,0,1,,850.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,3,2,330.103004112112,600.0,54898.72161905917,6,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04918147309030675,21114.892930407375,5,3,5,5_1,5_4,5_1_0 +1149,1,33.0,290.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1343.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101153,2,2,5,0,1,,221.0,265.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1410.63905812803,0.0,11053.55081823761,0,4,2,3,60.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12149941879166475,8502.731398644315,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +1150,2,44.0,0.0,1,111,333.0,694.0,0.0,0,34,0.0,0.0,567.8317809428963,1027.0,0.0,1317.5618092702136,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,101154,2,1,0,0,1,,0.0,321.0,32,1.0,0.0,2.0,2.0,1.3,2,1,718.194855632631,333.0,35560.642185090066,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02888024335034654,27354.340142376972,7,4,7,7_0,7_4,7_1_0 +1151,2,43.0,0.0,7,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,258.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,20.0,2,,5,101155,2,1,0,1,1,906.0,0.0,414.0,32,1.0,0.0,3.0,2.0,1.5,2,2,245.282038702275,0.0,16456.127435506354,0,1,2,3,67.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015678050684229,10970.751623670903,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +1152,2,65.0,0.0,6,111,1608.0,0.0,0.0,75,75,0.0,0.0,2741.962473742274,1608.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101156,2,1,2,0,1,,482.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,676.263911304877,1608.0,51072.05510167494,5,5,0,1,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03148492843686771,34048.03673444996,9,5,9,9_1,9_4,9_0_0 +1153,2,68.0,0.0,2,111,157.0,131.0,0.0,0,74,0.0,0.0,267.7164853094136,288.0,0.0,248.70403028011236,41,0,0,0,0,0,0,0,0,0,,2,,2,101157,2,1,0,1,1,512.0,160.0,253.0,11,0.0,2.0,3.0,1.0,1.0,1,1,436.956171595423,157.0,24094.264896542358,0,5,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011953051949774545,24094.264896542358,6,3,6,6_0,6_2,6_0_1 +1154,2,55.0,0.0,6,111,969.0,0.0,0.0,47,52,0.0,410.5414558731694,1652.3393265275272,1345.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,101158,2,1,1,0,1,,280.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1044.4669968206,969.0,33145.37561527909,1,1,0,1,96.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04057881303297081,22096.917076852726,6,3,6,6_1,6_3,6_0_0 +1155,2,45.0,0.0,2,111,255.0,0.0,0.0,0,52,0.0,0.0,434.8261385598756,293.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,101159,1,3,0,1,1,610.0,0.0,332.0,32,1.0,0.0,3.0,2.0,1.5,2,1,827.762802431425,255.0,21045.290022882116,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013922355058135433,14030.193348588078,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +1156,1,50.0,55.0,7,111,0.0,0.0,2248.0,74,22,0.0,158.91927324122688,1416.955516852344,2368.0,0.0,2690.253867725403,31,0,0,0,0,0,0,0,0,0,,1,,5,101160,2,2,2,0,1,,450.0,650.0,42,1.0,2.0,4.0,3.0,2.0,3,3,1751.75672288109,0.0,43621.18327362921,5,1,2,3,97.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05428555170422332,21810.591636814606,6,3,6,6_1,6_2,6_0_0 +1157,2,51.0,0.0,8,111,0.0,,,56,21,0.0,0.0,,126.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,101161,2,1,0,0,2,,300.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,100.7469656446396,0.0,28120.363986160555,1,4,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00448073858723916,15622.424436755864,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +1158,2,53.0,0.0,1,111,400.0,900.0,0.0,56,62,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,5.0,3,,1,101162,1,3,0,0,2,,280.0,310.0,43,2.0,0.0,4.0,2.0,1.5,2,2,226.705800963071,400.0,29613.376643311483,1,1,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04389908032637743,19742.25109554099,5,3,5,5_0,5_3,5_1_0 +1159,2,86.0,0.0,2,111,489.0,3143.0,0.0,86,74,0.0,0.0,833.843065708938,3632.0,0.0,5966.998222674757,60,0,0,0,0,0,0,0,0,0,,1,,2,101163,1,3,2,0,2,,349.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1491.28626600857,489.0,41552.92343160336,6,5,0,1,90.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08740660584274697,27701.94895440224,7,4,7,7_1,7_2,7_0_1 +1160,2,65.0,0.0,2,112,270.0,270.0,0.0,77,74,0.0,0.0,460.40414671045653,540.0,0.0,512.596092943743,12,0,0,0,0,0,0,0,0,0,,2,,2,101164,1,3,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1119.17584287255,270.0,78507.54704220242,5,5,0,1,90.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006878319605498797,52338.36469480162,10,5,10,10_0,10_2,10_0_1 +1161,2,60.0,0.0,2,111,210.0,750.0,0.0,0,68,0.0,0.0,358.0921141081328,960.0,0.0,1423.8780359548418,71,0,0,0,0,0,0,0,0,1,40.0,2,,2,101165,2,2,0,0,1,,120.0,347.0,22,1.0,2.0,4.0,2.0,1.5,2,2,544.748489555114,210.0,13880.450500674347,0,1,2,3,64.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06916202035037412,9253.633667116232,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +1162,2,42.0,0.0,7,112,1700.0,0.0,0.0,77,37,0.0,893.9209119819011,2898.840923732504,2426.0,70.66505049522257,0.0,10,0,0,0,0,0,0,0,0,4,120.0,1,,5,101166,2,1,2,0,1,,142.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,2537.80242973823,1700.0,64448.340120388224,5,1,1,2,180.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0376425520885143,42965.560080258816,9,5,9,9_1,9_1,9_0_0 +1163,2,53.0,0.0,7,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1763.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,5.0,8,,5,101167,2,1,0,0,1,,0.0,750.0,12,1.0,2.0,3.0,1.0,1.0,1,1,755.988626921966,0.0,95428.3458319543,0,1,2,3,83.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01847459457281777,95428.3458319543,10,5,10,10_0,10_3,10_0_0 +1164,2,44.0,0.0,7,211,0.0,,,52,63,0.0,0.0,,325.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,101168,2,1,0,0,2,,315.0,800.0,43,2.0,0.0,4.0,3.0,1.8,2,2,97.07867320219557,0.0,33617.70028430805,1,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009667526251095241,18676.500157948914,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1165,1,37.0,33.0,1,111,191.0,550.0,0.0,0,54,0.0,0.0,325.6933037840637,741.0,0.0,1044.177226366884,42,0,0,0,0,0,0,0,0,2,40.0,2,,1,101169,2,2,0,0,1,,0.0,223.0,12,1.0,0.0,3.0,1.0,1.0,1,1,325.592774960001,191.0,18366.55218153612,0,1,2,3,70.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0403450790695995,18366.55218153612,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +1166,2,65.0,0.0,9,111,936.0,0.0,0.0,77,75,0.0,529.7309108040896,1596.0677085962493,1390.0,74.82181817141213,0.0,70,0,0,0,0,0,0,0,0,0,,1,2009.0,6,101170,2,1,1,0,1,,504.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,308.432231444058,936.0,26590.588940698584,5,5,0,1,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052274133645551446,17727.059293799055,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +1167,0,37.0,0.0,2,112,594.0,0.0,0.0,37,33,3728.3038784143864,0.0,1012.8891227630044,4249.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,101171,2,1,2,0,1,,244.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,744.756140691295,594.0,61142.77980379292,2,1,5,0,100.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06949307855539173,29115.60943037758,8,4,8,8_1,8_0,8_0_1 +1168,2,45.0,0.0,5,111,330.0,420.0,0.0,0,68,0.0,0.0,562.7161793127802,750.0,0.0,797.3717001347114,71,0,0,0,0,0,0,0,0,3,30.0,2,,3,101172,1,3,0,0,2,,0.0,523.0,22,2.0,1.0,3.0,2.0,1.5,2,2,482.943729353094,330.0,36759.35411540283,0,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020402970020785446,24506.23607693522,7,4,7,7_0,7_4,7_0_0 +1169,2,58.0,0.0,1,211,970.83,0.0,0.0,0,22,1554.6025224279506,0.0,1655.4598435218982,2445.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,101173,2,1,2,0,1,,369.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,2321.59878537255,970.83,17843.202279631143,0,1,0,1,135.0,1,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13702697316787596,11895.468186420761,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +1170,0,27.0,0.0,5,111,0.0,,,54,53,0.0,0.0,,215.0,0.0,,43,0,0,0,0,0,0,0,0,2,5.0,1,,3,101174,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,105.93824910978,0.0,60989.46048526927,1,1,5,0,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0035251992440878985,40659.640323512845,9,5,9,9_1,9_2,9_0_0 +1171,2,51.0,0.0,1,111,659.0,1618.0,0.0,56,62,0.0,0.0,1123.7271580821882,2277.0,0.0,3071.7795495665787,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,101175,1,2,3,0,1,,549.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,144.505618564079,659.0,45885.9203843175,1,1,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04962306478608226,22942.96019215875,6,3,6,6_1,6_3,6_1_0 +1172,2,40.0,0.0,1,120,602.0,1500.0,0.0,63,52,0.0,0.0,1026.5307271099807,2102.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,3,30.0,1,,1,101176,2,1,1,0,1,,590.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,195.813181297201,602.0,40852.19409176966,1,1,1,2,160.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05145378471663244,19453.42575798555,5,3,5,5_1,5_0,5_1_0 +1173,0,29.0,0.0,1,111,520.0,0.0,0.0,0,43,0.0,0.0,886.7042825534718,520.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,,1,101177,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2096.73400057606,520.0,17511.0,0,2,5,0,40.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02969561989606533,17511.0,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +1174,2,46.0,0.0,1,111,467.0,1460.0,0.0,85,63,0.0,0.0,796.3286537547526,1927.0,0.0,2771.8159099920917,71,2,2,2,2,1,2,2,2,2,15.0,1,,1,101178,2,1,2,0,1,,280.0,,42,1.0,1.0,5.0,3.0,2.0,3,2,98.9949919356989,467.0,22985.239689292943,7,1,0,1,96.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.0838364109336498,11492.619844646471,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +1175,2,37.0,0.0,8,400,0.0,,,0,85,0.0,0.0,,264.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,101179,2,3,0,0,2,,0.0,,31,0.0,0.0,1.0,5.0,2.4,2,1,50.83020933240867,0.0,5104.878472222222,0,6,0,1,25.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0517152369907598,2127.032696759259,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +1176,1,65.0,25.0,1,111,690.0,0.0,0.0,0,77,0.0,0.0,1176.5883749267223,834.0,199.524848457099,0.0,71,2,1,2,2,1,2,2,2,0,,2,,1,101180,1,3,0,1,1,500.0,0.0,334.0,11,0.0,6.0,6.0,1.0,1.0,1,1,393.169911545069,690.0,15554.35617907616,0,5,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.05361841984317572,15554.35617907616,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +1177,2,32.0,0.0,1,120,1630.0,0.0,0.0,64,67,1582.0242765549024,0.0,2779.4768856964597,3220.0,124.70303028568689,0.0,42,1,2,2,1,1,2,2,2,2,10.0,1,,1,101181,2,2,3,0,1,,189.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,584.703817572027,1630.0,46702.025743667364,1,1,1,2,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.06894775866198098,19459.177393194735,5,3,5,5_1,5_0,5_1_0 +1178,2,54.0,0.0,1,111,720.0,58.0,0.0,34,37,0.0,0.0,1227.744391227884,778.0,0.0,110.11323478050777,12,1,2,2,1,1,2,2,2,2,15.0,2,,1,101182,2,3,0,1,1,,0.0,,43,3.0,1.0,6.0,5.0,3.0,5,5,999.911406399238,720.0,146259.93130793047,1,1,0,1,126.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.005319296905466381,48753.310435976826,10,5,10,10_0,10_4,10_1_0 +1179,2,77.0,0.0,1,120,1500.0,0.0,0.0,77,78,0.0,728.3800023556231,2557.8008150580918,2170.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101183,2,1,2,0,1,,230.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2632.79712110608,1500.0,28666.619979778316,5,5,0,1,100.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07569779770097546,19111.07998651888,5,3,5,5_1,5_1,5_1_0 +1180,2,78.0,0.0,5,111,534.0,,,75,71,0.0,0.0,,672.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,101184,2,1,0,0,2,,350.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,83.41576659891074,534.0,44693.143578399446,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015035863360589005,29795.429052266296,8,4,8,8_1,8_2,8_0_0 +1181,0,51.0,0.0,6,111,200.0,,,0,85,0.0,0.0,,360.0,221.69427606344334,,41,2,2,2,1,1,2,2,2,0,,1,,4,101185,1,3,0,0,2,,70.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,122.79007887551398,200.0,7380.6044984515775,0,6,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04877649250485196,7380.6044984515775,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1182,2,59.0,0.0,6,120,480.0,,,63,55,0.0,0.0,,564.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,101186,2,1,0,0,2,,228.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,133.85124903793385,480.0,46681.76747562818,1,1,0,1,115.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012081804749455033,23340.88373781409,6,3,6,6_1,6_2,6_0_0 +1183,2,28.0,0.0,2,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,854.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,101187,2,3,0,0,1,,0.0,264.0,43,2.0,0.0,3.0,3.0,1.8,2,2,934.848281859705,0.0,32977.62276515177,4,4,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02589634814133546,18320.901536195426,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +1184,2,44.0,0.0,9,111,780.0,1750.0,0.0,54,21,0.0,0.0,1330.0564238302077,2530.0,0.0,3322.382083894631,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,101188,2,1,1,0,1,,94.0,645.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,4,3,1069.93893655623,780.0,73121.55584507363,1,1,2,3,88.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03459992023912128,23587.598659701172,6,3,6,6_1,6_2,6_0_0 +1185,2,77.0,0.0,1,112,200.0,0.0,0.0,0,78,0.0,1059.4618216081792,341.04010867441224,1040.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101189,2,1,2,0,1,,80.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1756.73677325854,200.0,17352.309294110823,0,5,0,1,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05993438581416735,17352.309294110823,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1186,2,79.0,0.0,2,111,1150.0,,,77,77,0.0,0.0,,1502.0,487.7274073395754,,60,0,0,0,0,0,0,0,0,0,,1,,2,101190,2,1,0,0,2,,690.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,122.8889855102636,1150.0,48916.0,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030705699566603975,24458.0,7,4,7,7_1,7_2,7_0_1 +1187,2,62.0,0.0,8,300,1500.0,0.0,0.0,0,72,0.0,529.7309108040896,2557.8008150580918,1950.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,101191,2,1,1,0,1,,130.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1162.0596233535,1500.0,13947.209932199552,0,5,0,1,132.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13981290949798403,13947.209932199552,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1188,2,33.0,0.0,2,111,600.0,1000.0,0.0,52,63,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,43,0,0,0,0,0,0,0,0,2,5.0,1,,2,101192,2,2,1,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,279.061309207905,600.0,27727.42536706578,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05770460036655462,18484.950244710522,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +1189,2,52.0,0.0,5,111,0.0,0.0,1644.0,54,62,0.0,0.0,1036.2432694418387,1644.0,0.0,1967.4276505963353,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,101193,1,2,0,0,1,,0.0,762.0,43,2.0,0.0,4.0,4.0,2.3,3,3,657.991670609804,0.0,39167.08799499115,1,1,2,3,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.041974016557223805,17029.168693474414,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +1190,2,53.0,0.0,6,112,1050.0,0.0,0.0,42,31,0.0,161.56792779524733,1790.4605705406643,4972.0,5265.23905650678,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,101194,1,1,3,0,2,,470.0,,43,2.0,1.0,6.0,4.0,2.5,4,2,778.071984878432,1050.0,115147.64342361683,1,1,1,2,175.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0431793465517006,46059.05736944673,10,5,10,10_1,10_0,10_0_0 +1192,2,66.0,0.0,5,300,1800.0,0.0,0.0,71,71,4218.731404146406,0.0,3069.36097806971,5800.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,101196,1,1,2,0,1,,250.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,835.14657941356,1800.0,27268.625738911658,5,5,0,1,220.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21269865432651938,18179.083825941107,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1193,2,63.0,0.0,5,400,1200.0,0.0,0.0,77,77,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101197,2,1,2,0,1,,400.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,2242.63502663812,1200.0,24495.578795467136,6,5,0,1,155.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04898843215829862,16330.385863644757,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1194,2,33.0,0.0,6,111,832.0,0.0,0.0,54,42,0.0,0.0,1418.7268520855548,832.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,90.0,1,,4,101198,2,1,3,0,1,,306.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,788.190642654201,832.0,50332.59356327062,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016530044273481235,33555.06237551374,9,5,9,9_1,9_4,9_0_0 +1195,2,68.0,0.0,5,111,830.0,0.0,0.0,0,75,0.0,0.0,1415.3164509988108,830.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,3,101199,2,1,0,0,1,,0.0,341.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1714.06915435065,830.0,22325.13141332477,0,5,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03717783266908852,22325.13141332477,6,3,6,6_0,6_3,6_0_0 +1196,2,69.0,0.0,1,111,2900.0,0.0,0.0,86,86,0.0,3112.169100974026,4945.081575778978,5250.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,1,,1,101200,2,1,3,0,1,,1200.0,,41,1.0,1.0,5.0,6.0,3.5,6,5,555.631257511122,2900.0,89750.4490091005,5,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.058495529080502554,25642.98543117157,7,4,7,7_1,7_3,7_1_0 +1198,2,62.0,0.0,1,112,400.0,0.0,0.0,0,43,0.0,317.83854648245375,682.0802173488245,640.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,101202,1,2,5,0,2,,260.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,933.426656680441,400.0,12128.240180172226,0,1,0,1,100.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05276940351546631,12128.240180172226,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1199,2,36.0,0.0,8,112,1000.0,0.0,0.0,54,38,0.0,331.081819252556,1705.2005433720612,1280.0,41.567676761895626,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,101203,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2431.31647821917,1000.0,67705.0,1,1,1,2,89.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01890554611919356,32240.47619047619,8,4,8,8_1,8_1,8_0_0 +1200,2,74.0,0.0,1,111,180.0,0.0,0.0,78,78,0.0,105.94618216081791,306.936097806971,440.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,101204,2,1,2,0,1,,160.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,397.832158533141,180.0,25379.764463871208,5,5,0,1,65.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017336646312315154,16919.84297591414,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +1201,2,50.0,0.0,7,112,1281.0,1405.0,0.0,54,38,0.0,0.0,2184.3618960596104,2686.0,0.0,2667.3981873554035,10,0,0,0,0,0,0,0,0,0,,1,,5,101205,2,1,2,0,1,,902.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,1684.39843792481,1281.0,23779.928341263345,1,1,1,2,180.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11295240092625536,8492.831550451196,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +1202,2,66.0,0.0,2,111,410.0,1240.0,0.0,0,75,0.0,0.0,699.1322227825451,1650.0,0.0,2354.145019445338,50,0,0,0,0,0,0,0,0,0,,2,,2,101206,2,2,0,0,1,,133.0,380.0,11,0.0,1.0,5.0,1.0,1.0,1,1,1773.30034590263,410.0,28328.070876819886,0,5,2,3,118.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05824611238706521,28328.070876819886,8,4,8,8_0,8_3,8_0_1 +1203,2,35.0,0.0,2,112,700.0,800.0,0.0,85,52,0.0,0.0,1193.6403803604428,1500.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,101207,2,1,1,0,1,,500.0,330.0,42,1.0,0.0,3.0,2.0,1.5,2,2,434.231626161635,700.0,24301.732517588676,7,1,2,3,88.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06172399432486374,16201.155011725785,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +1204,1,24.0,41.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,708.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,65.0,2,,4,101208,2,2,0,0,1,,134.0,259.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1272.55283845832,0.0,13583.512909664156,0,2,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05212201031562938,13583.512909664156,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +1205,2,36.0,0.0,2,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1060.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,101209,2,1,0,1,1,1163.0,0.0,477.0,43,2.0,0.0,6.0,4.0,2.1,2,2,460.977207323711,0.0,41312.6502775635,1,1,2,3,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025658000464222838,19672.690608363573,5,3,5,5_0,5_4,5_0_1 +1206,2,47.0,0.0,7,111,240.0,,,85,11,0.0,0.0,,316.0,105.3047811301356,,71,0,0,0,0,0,0,0,0,0,,1,,5,101210,2,2,0,0,2,,360.0,,42,1.0,1.0,5.0,5.0,2.5999999999999996,3,2,111.43234814205564,240.0,20505.817745803357,6,1,0,1,220.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015410260830230551,7886.852979155138,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1207,2,43.0,0.0,1,211,0.0,0.0,0.0,0,63,0.0,0.0,0.0,623.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,101211,1,3,0,0,2,,0.0,375.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1680.90547679742,0.0,19555.684194053887,0,1,2,3,33.0,1,3,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03185774498186209,19555.684194053887,5,3,5,5_0,5_1,5_1_0 +1208,2,50.0,0.0,7,112,276.0,946.0,0.0,67,46,0.0,0.0,470.6353499706889,1222.0,0.0,1795.9848293510404,31,1,2,2,2,1,2,2,2,2,45.0,1,,5,101212,1,1,3,0,1,,350.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,501.92566341682,276.0,45202.15230516244,1,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027034110936802407,30134.768203441625,8,4,8,8_1,8_1,8_0_0 +1209,2,48.0,0.0,5,111,290.0,90.0,0.0,35,37,0.0,0.0,494.50815757789775,380.0,0.0,170.865364314581,31,0,0,0,0,0,0,0,0,0,,2,,3,101213,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,277.226882482399,290.0,40605.60943677257,1,4,0,1,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009358312934366916,19336.00449370122,5,3,5,5_0,5_4,5_0_0 +1210,1,57.0,16.0,2,111,524.0,446.0,0.0,85,64,0.0,0.0,893.52508472696,970.0,0.0,846.7328053811459,20,0,0,0,0,0,0,0,0,0,,2,,2,101214,2,1,0,1,1,1020.0,0.0,257.0,42,2.0,0.0,5.0,6.0,3.0999999999999996,4,3,310.821174609651,524.0,41767.832288402846,6,1,2,3,97.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023223613648471,13473.494286581565,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +1211,2,42.0,0.0,7,111,440.0,100.0,0.0,0,52,0.0,0.0,750.2882390837069,540.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,101215,2,2,0,1,1,228.0,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,699.332575080967,440.0,20219.319393169186,0,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026707130418169835,20219.319393169186,5,3,5,5_0,5_4,5_0_0 +1212,2,46.0,0.0,5,111,978.0,0.0,0.0,77,85,0.0,397.2981831030672,1667.686131417876,1378.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,101216,2,2,2,0,1,,730.0,,41,0.0,3.0,6.0,3.0,1.8,3,2,1063.39279220828,978.0,22852.00592381987,6,5,0,1,110.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06030105210867449,12695.558846566593,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +1213,2,45.0,0.0,7,112,0.0,0.0,2380.0,42,37,0.0,0.0,1500.1575311870902,2380.0,0.0,2848.2225112039405,10,0,0,0,0,0,0,0,0,2,50.0,1,,5,101217,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,611.967981541074,0.0,81332.9342179078,1,1,1,2,130.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02926243867734424,29047.476506395644,8,4,8,8_1,8_2,8_0_0 +1214,2,48.0,0.0,2,111,160.0,184.0,0.0,0,48,0.0,0.0,272.8320869395298,344.0,0.0,349.3247448209212,42,0,0,0,0,0,0,0,0,2,5.0,2,,2,101218,1,2,0,1,1,612.0,118.0,238.0,12,1.0,0.0,3.0,1.0,1.0,1,1,251.807955827203,160.0,26242.476162231836,0,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013108519099850977,26242.476162231836,7,4,7,7_0,7_2,7_0_1 +1215,2,46.0,0.0,9,112,1100.0,0.0,0.0,55,64,0.0,0.0,1875.7205977092674,1175.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,101219,2,1,1,0,1,,250.0,,43,2.0,1.0,6.0,4.0,2.3,3,2,5529.46548305922,1100.0,39488.19898721577,1,1,1,2,123.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02975572525808037,17168.782168354686,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1216,2,41.0,0.0,8,111,266.0,699.0,0.0,0,53,0.0,0.0,453.5833445369683,965.0,0.0,1327.0543295099126,12,0,0,0,0,0,0,0,0,2,25.0,2,2000.0,6,101220,2,3,0,0,1,,350.0,597.0,32,2.0,1.0,3.0,4.0,2.1,2,2,1540.73979176332,266.0,24309.882503409746,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03969579037926849,11576.134525433212,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +1217,2,64.0,0.0,1,112,410.0,0.0,0.0,11,11,3427.719265868955,0.0,699.1322227825451,3660.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,101221,2,1,1,0,1,,663.0,,43,2.0,4.0,9.0,2.0,1.5,2,2,1412.01671796577,410.0,72667.34545271187,1,1,0,1,110.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050366501998916936,48444.89696847458,10,5,10,10_1,10_0,10_1_0 +1218,2,70.0,0.0,2,211,477.0,0.0,0.0,78,72,980.8550514640394,0.0,813.3806591884731,1486.0,109.46154880632515,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101222,2,1,1,0,1,,39.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1122.69272212219,477.0,19485.71339521148,5,5,0,1,85.0,2,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07626100055259857,12990.475596807652,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +1219,1,52.0,271.0,2,111,480.0,0.0,0.0,0,85,0.0,0.0,818.4962608185893,480.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,101223,1,3,0,1,1,,0.0,311.0,11,0.0,0.0,2.0,1.0,1.0,1,1,403.637180906354,480.0,16014.16250551194,0,7,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,1,1,0.02997346878644375,16014.16250551194,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +1220,2,36.0,0.0,5,111,250.0,0.0,0.0,0,42,0.0,0.0,426.3001358430153,250.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,3,101224,1,2,0,1,2,603.0,0.0,474.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1661.19987501226,250.0,18985.68277116298,0,1,2,3,52.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013167817192211839,18985.68277116298,5,3,5,5_0,5_2,5_0_0 +1221,2,47.0,0.0,7,221,1173.0,0.0,0.0,65,46,0.0,0.0,2000.2002373754278,1173.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,5,101225,2,1,2,0,1,,844.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,506.300951263466,1173.0,56451.01505941137,1,1,1,2,106.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020779077201100574,22580.40602376455,6,3,6,6_1,6_1,6_0_0 +1222,2,86.0,0.0,2,111,160.0,119.0,0.0,52,78,0.0,0.0,272.8320869395298,279.0,0.0,225.92198170483488,71,0,0,0,0,0,0,0,0,0,,2,,2,101226,2,3,0,1,1,476.0,0.0,256.0,42,1.0,0.0,2.0,2.0,1.5,2,2,310.206373739658,160.0,18648.70549231567,1,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01496082396255139,12432.470328210446,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +1223,1,37.0,431.0,9,111,820.0,,,52,85,0.0,0.0,,992.0,238.3213467682016,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,101227,2,1,0,0,2,,720.0,410.0,42,1.0,1.0,5.0,6.0,3.0999999999999996,4,2,160.997336563294,820.0,21525.2784256483,4,6,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.046085350460228616,6943.638201822033,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +1224,2,69.0,0.0,1,111,270.0,675.0,0.0,0,74,0.0,172.1625460113291,460.40414671045653,1075.0,0.0,1281.4902323593576,10,0,0,0,0,0,0,0,0,0,,2,,1,101228,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1129.78776607316,270.0,52790.41834989745,0,5,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020363543870307067,52790.41834989745,10,5,10,10_0,10_4,10_1_0 +1225,2,38.0,0.0,2,111,240.0,0.0,0.0,0,54,0.0,0.0,409.2481304092947,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,101229,1,1,0,1,2,,0.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,630.989154377201,240.0,26092.56726908093,0,1,1,2,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009198021701927133,20071.205591600716,5,3,5,5_0,5_4,5_0_1 +1226,1,39.0,406.0,2,112,0.0,0.0,0.0,0,67,0.0,0.0,0.0,977.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101230,2,2,0,1,1,,366.0,568.0,32,3.0,0.0,4.0,4.0,2.3,3,3,1177.99252541186,0.0,22644.70129050319,0,4,2,3,120.0,9,3,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04314475105969878,9845.52230021878,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +1227,1,36.0,392.0,1,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,5482.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101231,2,2,5,0,1,,224.0,445.0,42,1.0,1.0,4.0,5.0,2.4,2,2,199.190138331766,0.0,26568.754888495543,6,4,2,3,79.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2063325896530343,11070.314536873144,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +1228,1,34.0,305.0,5,111,0.0,0.0,1790.0,55,62,0.0,0.0,1128.2697398423913,1790.0,0.0,2142.150544140779,43,1,2,2,2,1,2,2,2,0,,2,,3,101232,1,3,0,0,1,,0.0,306.0,43,2.0,3.0,4.0,7.0,3.3999999999999995,4,4,1653.56083674026,0.0,50990.0,1,1,2,3,108.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.035104922533830164,14997.058823529414,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +1229,2,47.0,0.0,8,111,511.0,,,55,46,0.0,0.0,,574.0,87.29212119998083,,31,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,101233,2,1,0,0,2,,320.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,109.46713604309518,511.0,65199.493135250385,1,1,0,1,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008803749421936295,28347.60571097843,8,4,8,8_1,8_2,8_0_0 +1230,2,80.0,0.0,2,111,520.0,0.0,0.0,0,86,2847.643697798824,0.0,886.7042825534718,3262.0,58.19474746665388,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101234,1,3,3,0,2,,132.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1399.57015001953,520.0,15021.56195027458,0,5,0,1,95.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.21715451500969737,15021.56195027458,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +1231,2,33.0,0.0,1,111,450.0,750.0,0.0,34,34,0.0,0.0,767.3402445174275,1200.0,0.0,1423.8780359548418,20,0,0,0,0,0,0,0,0,2,8.0,2,,1,101235,2,2,0,0,1,,250.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,428.190017087754,450.0,46036.21046827821,1,1,1,2,48.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02606643743682756,30690.80697885214,8,4,8,8_0,8_2,8_1_0 +1233,2,30.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1213.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,45.0,2,,2,101237,2,1,0,0,1,,313.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,886.775264091757,0.0,23883.817588598376,0,1,1,2,46.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.050787525716954905,18372.167375844903,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +1234,2,45.0,0.0,2,111,320.0,380.0,0.0,42,63,0.0,0.0,545.6641738790596,700.0,0.0,721.4315382171199,50,2,2,2,1,1,2,2,2,0,,2,,2,101238,2,2,0,2,1,640.0,0.0,300.0,43,2.0,3.0,3.0,3.0,1.8,2,2,230.845744992689,320.0,18396.346108301143,4,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03805103447603288,10220.192282389524,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +1235,2,66.0,0.0,5,300,2340.0,0.0,0.0,21,77,0.0,860.8127300566456,3990.169271490623,3025.0,48.49562288887823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,101239,1,2,3,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1216.78305428356,2340.0,36985.23777931239,1,5,0,1,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08178938900027911,24656.825186208258,7,4,7,7_1,7_0,7_0_0 +1236,2,24.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,698.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,7.0,2,,2,101240,2,2,0,0,1,,192.0,470.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1816.24878551741,0.0,21054.56156957666,0,1,2,3,63.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03315196080874908,21054.56156957666,5,3,5,5_0,5_2,5_0_1 +1237,2,50.0,0.0,1,111,1000.0,0.0,0.0,54,63,0.0,0.0,1705.2005433720612,2300.0,1801.2659930154773,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,101241,2,1,1,0,1,,360.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,954.312457116704,1000.0,72370.78173983259,1,1,0,1,160.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031780781479856385,28948.312695933033,8,4,8,8_1,8_2,8_1_0 +1238,2,21.0,0.0,7,112,0.0,,,0,56,0.0,52.973091080408956,,304.0,365.79555550468154,,60,0,0,0,0,0,0,0,0,0,,1,,5,101242,1,1,0,0,2,,840.0,,22,2.0,1.0,2.0,5.0,2.8,4,3,92.67368590726447,0.0,9922.0,0,1,0,1,45.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03063898407579117,3543.571428571429,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +1239,0,80.0,0.0,5,111,161.0,,,0,77,0.0,0.0,,281.0,166.2707070475825,,71,2,2,2,1,1,2,2,2,0,,1,,3,101243,1,2,0,0,2,,153.0,,21,0.0,5.0,4.0,2.0,1.5,2,2,126.12919524271352,161.0,22715.233156313727,0,5,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.012370553190729442,15143.488770875818,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1240,1,23.0,522.0,9,211,0.0,,,0,85,0.0,0.0,,212.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,2005.0,6,101244,2,1,0,0,2,,519.0,680.0,31,0.0,0.0,4.0,5.0,2.2,1,1,117.6367131464758,0.0,18765.01176470588,0,6,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011297621480778371,8529.550802139036,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1241,2,57.0,0.0,7,111,800.0,,,63,64,0.0,0.0,,1052.0,349.1684847999233,,71,2,2,2,2,1,2,2,2,2,15.0,1,,5,101245,2,2,0,0,2,,1200.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,127.82702560070955,800.0,66491.7346246432,1,1,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.015821515349820747,26596.693849857278,7,4,7,7_1,7_2,7_0_0 +1242,2,50.0,0.0,7,111,334.0,0.0,0.0,54,65,0.0,0.0,569.5369814862685,334.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,5,101246,2,1,0,1,1,242.0,223.0,457.0,43,2.0,0.0,4.0,4.0,2.5,4,4,1204.39433622101,334.0,41791.731879626255,1,1,2,3,71.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007992011457242987,16716.692751850504,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +1243,2,65.0,0.0,8,111,600.0,800.0,0.0,86,72,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,0,,1,1999.0,6,101247,2,1,1,0,1,,300.0,,41,0.0,1.0,3.0,3.0,2.0,3,3,1054.07455885734,600.0,52020.390275525366,6,5,0,1,75.0,5,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026912523965793356,26010.195137762683,7,4,7,7_1,7_2,7_0_0 +1245,2,33.0,0.0,9,111,1280.0,0.0,0.0,37,43,0.0,0.0,2182.6566955162384,1280.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,101249,2,1,1,0,1,,342.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,458.869009545206,1280.0,79050.08395161598,1,1,1,2,88.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016192266168666525,43916.71330645332,10,5,10,10_1,10_3,10_0_0 +1246,2,48.0,0.0,2,111,804.0,180.0,0.0,0,52,0.0,0.0,1370.981236871137,984.0,0.0,341.730728629162,71,1,2,2,1,2,2,2,2,3,60.0,2,,2,101250,2,1,0,1,1,,0.0,529.0,32,1.0,0.0,2.0,2.0,1.5,2,1,1005.86683093151,804.0,25085.802487531888,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03922537461135901,16723.86832502126,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +1247,2,45.0,0.0,9,111,0.0,0.0,0.0,42,22,0.0,0.0,0.0,633.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,101251,2,3,0,0,1,,0.0,583.0,43,2.0,1.0,2.0,2.0,1.5,2,2,1097.84942827808,0.0,37583.686424839674,1,4,2,3,53.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016842413829358686,25055.790949893115,7,4,7,7_0,7_4,7_0_0 +1248,2,91.0,0.0,1,300,350.0,0.0,0.0,0,86,2320.3022722805235,198.6490915515336,596.8201901802214,2790.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101252,2,3,2,0,1,,80.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,848.412432462668,350.0,12503.730749279714,0,6,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.223133403617214,12503.730749279714,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1249,2,73.0,0.0,2,112,300.0,,,0,77,0.0,0.0,,400.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,2,101253,2,1,0,0,2,,600.0,,21,2.0,8.0,4.0,3.0,2.0,3,3,83.97206320237777,300.0,10047.868042413253,0,5,0,1,100.0,6,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03980944000374529,5023.934021206626,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +1250,2,66.0,0.0,2,300,480.0,,,0,78,0.0,0.0,,590.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,2,101254,2,1,0,0,1,,160.0,,21,1.0,5.0,7.0,3.0,1.8,2,2,93.93656321074636,480.0,22442.351684260168,0,5,0,1,150.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026289580000379086,12467.973157922315,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +1251,2,91.0,0.0,2,111,472.0,0.0,0.0,0,75,0.0,0.0,804.8546564716129,472.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,2,101255,1,2,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,374.704202441464,472.0,17798.117131691735,0,5,0,1,71.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02651965915875146,17798.117131691735,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +1253,2,92.0,0.0,1,120,437.0,0.0,0.0,0,71,2472.176602829794,0.0,745.1726374535907,2847.0,91.44888887617039,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,101257,2,3,2,0,2,,113.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,77.4348189298604,437.0,11566.988414962922,0,5,0,1,70.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24613148192637194,11566.988414962922,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1254,2,82.0,0.0,1,400,0.0,0.0,0.0,77,78,3691.3899786281054,59.594727465460075,0.0,4698.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101258,1,2,2,0,2,,160.0,400.0,41,0.0,3.0,3.0,2.0,1.5,2,2,846.073197290136,0.0,19397.6033050779,5,5,2,3,100.0,0,0,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.24219486944400798,12931.735536718601,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1255,2,62.0,0.0,9,111,1225.0,521.0,0.0,0,21,0.0,0.0,2088.870665630775,1746.0,0.0,989.12060897663,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101259,2,2,1,0,1,,0.0,,21,1.0,2.0,5.0,3.0,1.8,2,2,1295.6256032878,1225.0,38848.726430168994,0,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04494355826923835,21582.62579453833,6,3,6,6_1,6_3,6_0_0 +1256,2,51.0,0.0,2,111,600.0,900.0,0.0,0,65,0.0,0.0,1023.1203260232367,1500.0,0.0,1708.65364314581,31,2,1,2,2,1,2,2,2,2,20.0,2,,2,101260,2,2,0,1,1,,0.0,510.0,22,3.0,3.0,4.0,3.0,2.0,3,3,218.326557360805,600.0,19879.65068507743,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.07545404211382689,9939.825342538716,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +1257,2,54.0,0.0,1,111,1566.0,0.0,0.0,78,47,0.0,0.0,2670.344050920648,1566.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,1,101261,2,3,0,0,1,,0.0,189.0,42,1.0,1.0,4.0,3.0,2.0,3,3,962.594767952957,1566.0,47114.634101277814,6,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03323808047906559,23557.317050638907,6,3,6,6_0,6_4,6_1_0 +1258,2,77.0,0.0,5,112,750.0,0.0,0.0,0,75,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,101262,2,1,2,0,1,,392.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,752.691396560916,750.0,37047.720351125135,0,5,0,1,200.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020244160582399306,37047.720351125135,9,5,9,9_1,9_1,9_0_0 +1259,2,76.0,0.0,2,111,218.0,958.0,0.0,0,86,0.0,0.0,371.73371845510934,1176.0,0.0,1818.7668779263179,71,0,0,0,0,0,0,0,0,0,,2,,2,101263,2,1,0,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1515.19119207822,218.0,19242.547780768884,0,6,0,1,130.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.061114568268101244,19242.547780768884,5,3,5,5_0,5_3,5_0_1 +1261,2,57.0,0.0,2,111,948.0,396.0,0.0,0,65,0.0,0.0,1616.530115116714,1344.0,0.0,751.8076029841565,50,0,0,0,0,0,0,0,0,0,,2,,2,101265,2,1,0,1,1,,828.0,500.0,22,3.0,0.0,5.0,3.0,2.0,3,3,200.579549430615,948.0,35337.63088025249,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03803310993185622,17668.815440126244,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +1262,2,87.0,0.0,5,111,800.0,250.0,0.0,86,74,0.0,0.0,1364.160434697649,1050.0,0.0,474.62601198494724,20,2,1,2,1,2,2,2,2,0,,2,,3,101266,2,2,0,1,2,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,821.986745971309,800.0,81719.42362932254,6,5,0,1,137.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012848842458345965,54479.61575288169,10,5,10,10_0,10_4,10_0_0 +1263,2,33.0,0.0,9,111,150.0,,,0,43,0.0,0.0,,150.0,0.0,,33,0,0,0,0,0,0,0,0,2,25.0,2,2007.0,6,101267,2,1,0,0,1,,120.0,590.0,12,1.0,0.0,2.0,1.0,1.0,1,1,187.11965959825125,150.0,36443.8054536443,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004115925824233603,36443.8054536443,9,5,9,9_0,9_2,9_0_0 +1264,2,42.0,0.0,6,111,550.0,0.0,0.0,0,43,0.0,0.0,937.8602988546337,550.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,20.0,2,,4,101268,2,1,0,1,1,870.0,0.0,308.0,22,1.0,0.0,3.0,2.0,1.5,2,2,201.919983159237,550.0,44279.95724137656,0,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012420969537117415,29519.971494251044,8,4,8,8_0,8_4,8_0_0 +1265,1,22.0,153.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,559.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,101269,2,1,0,0,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1398.52177616338,0.0,1598.9801402847434,0,4,2,3,65.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.3495978379696788,1598.9801402847434,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1266,1,37.0,436.0,7,112,450.0,,,0,85,0.0,0.0,,594.0,199.524848457099,,50,0,0,0,0,0,0,0,0,0,,2,,5,101270,2,1,0,0,2,,350.0,424.0,31,0.0,0.0,3.0,4.0,1.9,1,1,80.04718168533577,450.0,7367.222894941226,0,6,2,3,76.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08062739630259806,3877.485734179593,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1267,2,42.0,0.0,1,300,780.0,0.0,0.0,47,42,3164.0485531098047,0.0,1330.0564238302077,6436.0,187.05454542853033,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,101271,2,1,3,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,917.186363239406,780.0,65410.096933288194,1,1,1,2,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09839459505103747,27254.20705553675,7,4,7,7_1,7_0,7_1_0 +1268,2,41.0,0.0,5,111,400.0,1000.0,0.0,0,38,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,60.0,2,,3,101272,2,3,0,0,1,,0.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,717.955910892717,400.0,70802.31265148392,0,1,1,2,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019773365410976556,47201.54176765595,10,5,10,10_0,10_4,10_0_0 +1269,2,47.0,0.0,7,111,600.0,300.0,0.0,0,62,0.0,0.0,1023.1203260232367,900.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,101273,2,1,0,0,1,,450.0,570.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1726.70766447526,600.0,31182.551072671795,0,1,2,3,65.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028862295387652063,20788.367381781198,5,3,5,5_0,5_3,5_0_0 +1270,2,59.0,0.0,5,111,300.0,,,0,55,0.0,0.0,,340.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,2,3.0,2,,3,101274,1,3,0,0,2,,200.0,200.0,12,1.0,0.0,3.0,1.0,1.0,1,1,149.4356901279357,300.0,34188.960410552325,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009944730577273124,34188.960410552325,9,5,9,9_0,9_2,9_0_0 +1271,2,66.0,0.0,5,112,2073.0,0.0,0.0,56,46,210.9365702073203,0.0,3534.880726410283,2323.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,101275,2,1,2,0,1,,373.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,1084.97771553821,2073.0,62818.176267164155,1,5,0,1,119.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03697974277572686,31409.088133582078,8,4,8,8_1,8_0,8_0_0 +1273,1,50.0,413.0,9,120,480.0,,,63,56,0.0,0.0,,612.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,101277,2,2,0,0,2,,245.0,560.0,43,2.0,1.0,4.0,4.0,2.3,3,2,144.34655970208243,480.0,23222.573705179282,4,4,2,3,87.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026353668106283454,10096.771176164906,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1274,2,39.0,0.0,1,111,300.0,700.0,0.0,64,62,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,43,0,0,0,0,0,0,0,0,2,60.0,1,,1,101278,2,1,1,0,1,,250.0,670.0,43,2.0,0.0,4.0,4.0,2.1,2,2,326.628059428332,300.0,49067.254440335804,1,1,2,3,93.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020380190646614796,23365.359257302764,6,3,6,6_1,6_3,6_1_0 +1275,2,60.0,0.0,1,111,448.0,1224.0,0.0,56,78,0.0,0.0,763.9298434306834,1672.0,0.0,2323.7689546783017,50,2,2,2,2,1,2,2,2,0,,1,,1,101279,1,2,5,0,2,,170.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,686.771425078654,448.0,47603.76471840651,1,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03512327249515841,31735.843145604344,8,4,8,8_1,8_4,8_1_0 +1276,0,87.0,0.0,1,112,1200.0,0.0,0.0,0,86,0.0,0.0,2046.2406520464733,1326.0,174.58424239996165,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,101280,2,1,4,0,1,,110.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,906.767730302917,1200.0,9790.644791230763,0,5,0,1,120.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1354354108717809,9790.644791230763,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1277,2,72.0,0.0,2,221,1220.0,0.0,0.0,71,71,0.0,0.0,2080.344662913915,1360.0,193.98249155551292,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,101281,2,2,1,0,1,,420.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,943.630891204192,1220.0,28573.909943309554,5,5,0,1,97.0,1,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.04759586639344181,19049.273295539704,5,3,5,5_1,5_1,5_0_1 +1278,2,30.0,0.0,2,111,480.0,120.0,0.0,0,42,0.0,0.0,818.4962608185893,600.0,0.0,227.8204857527747,50,2,1,2,2,1,2,2,2,2,10.0,2,,2,101282,2,1,0,1,1,541.0,140.0,385.0,12,1.0,0.0,4.0,1.0,1.0,1,1,246.548733718251,480.0,20475.005157011274,0,1,2,3,73.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.02930402192326391,20475.005157011274,5,3,5,5_0,5_2,5_0_1 +1279,2,68.0,0.0,5,111,600.0,0.0,0.0,75,77,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,101283,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1226.31643874875,600.0,34988.23466485633,6,5,0,1,77.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017148621693756545,23325.48977657089,6,3,6,6_0,6_3,6_0_0 +1280,2,79.0,0.0,5,120,210.0,0.0,0.0,71,71,738.277995725621,0.0,358.0921141081328,1030.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,101284,2,1,1,0,1,,196.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,2029.90944656457,210.0,20049.99310164793,5,5,0,1,95.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05137158874709753,13366.662067765288,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1281,2,81.0,0.0,2,111,250.0,1730.0,0.0,0,78,0.0,0.0,426.3001358430153,1980.0,0.0,3284.412002935835,71,0,0,0,0,0,0,0,0,0,,1,,2,101285,2,1,2,0,1,,130.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,272.048216991121,250.0,17630.58490742442,0,5,0,1,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11230483902812557,17630.58490742442,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +1282,2,42.0,0.0,1,111,340.0,180.0,0.0,0,22,0.0,0.0,579.7681847465008,520.0,0.0,341.730728629162,70,0,0,0,0,0,0,0,0,0,,1,,1,101286,2,1,1,0,2,,230.0,,22,1.0,0.0,3.0,3.0,2.0,3,3,1275.55644554144,340.0,24446.799688765237,0,1,0,1,60.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021270677823689577,12223.399844382619,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +1283,2,33.0,0.0,7,120,300.0,,,85,67,0.0,132.4327277010224,,904.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,1,,5,101287,2,1,0,0,1,,192.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,110.90020902482303,300.0,14616.070981210854,6,4,0,1,96.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06184972699996487,8120.03943400603,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1284,2,47.0,0.0,1,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,3627.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,,1,101288,2,1,2,0,1,,133.0,850.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1060.98204423143,0.0,44095.69517576213,0,1,2,3,100.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08225292708376748,44095.69517576213,10,5,10,10_1,10_0,10_1_0 +1285,2,34.0,0.0,9,111,1000.0,0.0,0.0,43,52,0.0,0.0,1705.2005433720612,1075.0,103.91919190473907,0.0,42,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101289,2,1,1,0,1,,120.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1192.8697109589,1000.0,41696.80274612107,1,1,1,2,98.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02578135322617761,23164.89041451171,6,3,6,6_1,6_2,6_0_0 +1286,2,84.0,0.0,2,111,250.0,1950.0,0.0,0,72,0.0,0.0,426.3001358430153,2200.0,0.0,3702.0828934825886,71,0,0,0,0,0,0,0,0,0,,1,,2,101290,2,1,2,0,1,,397.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,755.163844671805,250.0,15512.286907603528,0,5,0,1,69.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1418230602040789,15512.286907603528,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +1287,2,24.0,0.0,9,300,0.0,0.0,0.0,63,62,0.0,0.0,0.0,624.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2013.0,6,101291,2,1,1,0,1,,124.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,5573.3870397745,0.0,27307.23988214138,1,1,1,2,109.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022851082815150747,15170.688823411878,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1288,0,26.0,0.0,2,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,840.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,101292,1,3,0,1,2,,0.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,2233.20643564076,0.0,20785.425363665716,1,1,5,0,28.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.04041293287499302,13856.95024244381,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +1289,2,31.0,0.0,8,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,639.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,8,1999.0,6,101293,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1329.46968363328,0.0,104421.95396727644,1,1,1,2,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006119402824048367,69614.63597818429,10,5,10,10_0,10_4,10_0_0 +1290,1,38.0,230.0,2,111,690.0,790.0,0.0,84,54,0.0,0.0,1176.5883749267223,1480.0,0.0,1499.8181978724333,50,2,2,2,2,1,2,2,2,0,,1,,2,101294,2,2,1,0,1,,624.0,630.0,42,1.0,2.0,5.0,3.0,1.8,2,2,318.595234671954,690.0,11590.482609149425,3,4,2,3,86.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.12769097283591116,6439.157005083014,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +1291,2,81.0,0.0,2,111,310.0,61.0,0.0,0,74,0.0,0.0,528.612168445339,371.0,0.0,115.80874692432712,41,0,0,0,0,0,0,0,0,0,,2,,2,101295,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1043.70855004478,310.0,49730.83847921548,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007460159758920128,49730.83847921548,10,5,10,10_0,10_4,10_0_1 +1292,2,60.0,0.0,7,111,980.0,,,0,63,0.0,0.0,,1232.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,11.0,1,,5,101296,1,1,0,0,2,,594.0,,32,4.0,0.0,4.0,7.0,3.6,5,4,73.92079044469071,980.0,51301.73546907703,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02401478212647618,14250.482074743619,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1294,0,89.0,0.0,5,111,0.0,,,71,71,0.0,0.0,,669.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,3,101298,2,1,0,0,2,,649.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,108.42496904463243,0.0,20145.794306872456,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033207923689153325,13430.52953791497,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +1295,2,62.0,0.0,7,111,615.0,0.0,0.0,77,78,0.0,0.0,1048.6983341738176,885.0,374.10909085706066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,101299,1,1,2,0,1,,350.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,518.726735823067,615.0,28935.954004139538,5,5,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030584787350484217,19290.636002759693,5,3,5,5_1,5_4,5_0_0 +1296,2,57.0,0.0,2,111,600.0,,,0,22,0.0,0.0,,864.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,101300,2,2,0,0,2,,300.0,,32,1.0,0.0,3.0,3.0,2.0,3,3,99.78573775615702,600.0,16204.295275828077,0,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05331919625587343,8102.147637914039,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +1297,2,57.0,0.0,6,211,1440.0,,,85,48,0.0,0.0,,1440.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,4,101301,1,2,0,0,2,,900.0,,42,3.0,0.0,5.0,7.0,3.6,5,4,7.6284247518067305,1440.0,61563.59551634804,6,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02339044670673291,17100.99875454112,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1298,2,62.0,0.0,9,111,0.0,0.0,0.0,77,72,0.0,0.0,0.0,3773.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,101302,2,1,1,0,1,,215.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,263.601352616997,0.0,20810.24281215018,6,5,0,1,128.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1813049484361188,13873.49520810012,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1299,0,51.0,0.0,5,111,3000.0,0.0,0.0,33,31,0.0,264.8654554020448,5115.6016301161835,3200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,101303,1,1,2,0,1,,1800.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,875.122679419032,3000.0,31941.04542135545,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10018457310293649,15970.522710677726,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +1300,2,42.0,0.0,9,111,1600.0,0.0,0.0,45,64,0.0,0.0,2728.320869395298,1760.0,221.69427606344334,0.0,71,2,2,2,2,1,2,2,2,2,60.0,1,2012.0,6,101304,2,1,1,0,1,,400.0,740.0,43,2.0,0.0,4.0,3.0,1.8,2,2,290.280886391409,1600.0,44619.88827143189,1,1,2,3,90.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03944429419664972,24788.82681746216,7,4,7,7_1,7_2,7_0_0 +1301,2,61.0,0.0,2,111,1500.0,,,72,75,0.0,0.0,,1764.0,365.79555550468154,,41,0,0,0,0,0,0,0,0,0,,1,,2,101305,2,3,0,0,2,,800.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,79.66572542700081,1500.0,76736.88357404113,5,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022987641898409506,38368.441787020565,9,5,9,9_1,9_3,9_0_1 +1302,1,25.0,394.0,2,111,330.0,167.0,0.0,0,67,0.0,0.0,562.7161793127802,518.0,0.0,317.05017600594476,50,2,2,1,2,1,2,2,2,0,,2,,2,101306,2,2,0,1,1,762.0,670.0,363.0,32,1.0,0.0,4.0,3.0,1.6,1,1,68.6513027928446,330.0,10250.012613253686,0,4,2,3,137.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05053652317756222,6406.257883283553,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1303,2,66.0,0.0,1,112,500.0,0.0,0.0,85,75,3164.0485531098047,0.0,852.6002716860306,3558.0,80.36417507299822,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101307,2,2,2,0,2,,400.0,,41,0.0,0.0,8.0,2.0,1.5,2,2,365.630477510961,500.0,23426.370324039697,6,5,0,1,120.0,9,3,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1518801227328353,15617.580216026465,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +1304,2,75.0,0.0,5,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,591.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,101308,2,1,0,1,1,,491.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,219.120233540021,0.0,41841.4462603332,5,5,0,1,86.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014124750763223108,27894.2975068888,7,4,7,7_0,7_4,7_0_0 +1305,2,43.0,0.0,8,111,800.0,900.0,0.0,85,35,0.0,0.0,1364.160434697649,1700.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,101309,2,1,1,0,1,,1000.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,902.503113371002,800.0,27162.2503945028,6,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06258686137228352,12934.404949763237,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +1306,2,48.0,0.0,8,111,420.0,,,67,63,0.0,0.0,,696.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,101310,2,1,0,0,2,,800.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,114.65032365260424,420.0,42637.670543515036,1,1,0,1,132.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01632359345920829,18538.117627615233,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1307,2,40.0,0.0,1,212,1500.0,0.0,0.0,11,54,3164.0485531098047,0.0,2557.8008150580918,4502.0,2.771178450793042,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,101311,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,813.848484207616,1500.0,57190.0,1,1,0,1,120.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07872005595383809,27233.333333333332,7,4,7,7_1,7_0,7_1_0 +1308,2,65.0,0.0,5,111,2400.0,0.0,0.0,75,75,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,101312,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1123.86764392545,2400.0,46628.01095992745,5,5,0,1,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05147120691171198,31085.340639951635,8,4,8,8_1,8_2,8_0_0 +1309,2,48.0,0.0,8,221,2538.0,0.0,0.0,55,21,0.0,0.0,4327.798979078291,2638.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,101313,2,1,1,0,1,,545.0,,43,2.0,0.0,5.0,5.0,3.0,5,5,728.041392105261,2538.0,79484.3883364906,1,1,1,2,190.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033188907346587915,26494.796112163534,7,4,7,7_1,7_1,7_0_0 +1310,2,48.0,0.0,7,211,1388.0,0.0,0.0,56,21,1497.6496484719742,304.5952737123515,2366.818354200421,3163.0,173.19865317456512,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,101314,2,1,2,0,1,,760.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,590.543797649534,1388.0,47563.0201553531,1,1,0,1,169.0,2,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06650124381649494,19025.20806214124,5,3,5,5_1,5_1,5_0_0 +1311,2,76.0,0.0,7,111,740.0,0.0,0.0,0,75,0.0,0.0,1261.8484020953254,740.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,5,101315,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,557.593690141647,740.0,37809.16268765103,0,5,0,1,73.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019571975346645107,37809.16268765103,9,5,9,9_0,9_3,9_0_0 +1312,2,75.0,0.0,5,221,500.0,0.0,0.0,77,72,2109.365702073203,198.6490915515336,852.6002716860306,2705.0,76.20740739680865,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,101316,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2557.99926962146,500.0,38683.778409125895,5,5,0,1,100.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0699259511672175,25789.18560608393,7,4,7,7_1,7_1,7_0_0 +1313,2,87.0,0.0,1,111,300.0,1400.0,0.0,0,74,0.0,0.0,511.56016301161833,1700.0,0.0,2657.9056671157045,33,0,0,0,0,0,0,0,0,0,,2,,1,101317,2,2,0,0,2,,0.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,870.380093175172,300.0,73961.20472872735,0,5,0,1,118.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022985023110902645,73961.20472872735,10,5,10,10_0,10_4,10_1_0 +1314,2,59.0,0.0,2,300,883.0,0.0,0.0,0,74,0.0,0.0,1505.69207979753,915.0,44.33885521268867,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,101318,2,1,1,0,1,,170.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1502.43114295612,883.0,32326.026821243526,0,5,0,1,150.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028305365365801596,32326.026821243526,8,4,8,8_1,8_0,8_0_1 +1315,2,23.0,0.0,9,111,0.0,,,0,46,0.0,0.0,,185.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,101319,2,2,0,0,2,,164.0,427.0,12,1.0,1.0,3.0,1.0,1.0,1,1,136.2396706176431,0.0,16962.544680851064,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010906382472722128,16962.544680851064,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +1316,1,70.0,315.0,8,111,996.0,1248.0,0.0,75,77,0.0,0.0,1698.379741198573,2244.0,0.0,2369.3330518288567,70,0,0,0,0,0,0,0,0,0,,2,,6,101320,1,3,0,0,1,,0.0,304.0,41,0.0,4.0,3.0,2.0,1.5,2,2,227.525801156982,996.0,12886.402996982937,5,5,2,3,64.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17413703424651414,8590.935331321958,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1317,1,49.0,165.0,2,111,120.0,0.0,0.0,0,63,0.0,0.0,204.62406520464734,120.0,0.0,0.0,50,2,1,2,1,2,1,2,2,0,,2,,2,101321,2,1,0,1,1,312.0,0.0,150.0,12,1.0,1.0,1.0,1.0,1.0,1,1,338.278142964848,120.0,7937.668076385646,0,4,2,3,30.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.015117790117351575,7937.668076385646,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1318,1,55.0,90.0,9,111,367.0,,,0,46,0.0,0.0,,433.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,101322,1,3,0,0,2,,202.0,597.0,32,1.0,1.0,3.0,3.0,2.0,3,2,182.92002444511522,367.0,30184.0,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014345348529021999,15092.0,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +1319,2,62.0,0.0,5,120,1400.0,0.0,0.0,77,78,0.0,0.0,2387.2807607208856,1600.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101323,2,1,2,0,1,,3300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1751.36145720031,1400.0,34889.50611583767,5,5,0,1,127.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045859061308801366,23259.67074389178,6,3,6,6_1,6_1,6_0_0 +1320,2,46.0,0.0,1,111,188.0,178.0,0.0,0,55,0.0,0.0,320.5777021539475,366.0,0.0,337.93372053328244,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,101324,1,3,0,1,2,382.0,0.0,534.0,32,2.0,0.0,2.0,2.0,1.5,2,2,755.844006996367,188.0,18627.56302069283,0,1,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019648302872115962,12418.375347128553,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +1321,1,22.0,410.0,2,111,528.0,578.0,0.0,0,62,0.0,0.0,900.3458869004482,1106.0,0.0,1097.335339709198,71,0,0,0,0,0,0,0,0,0,,2,,2,101325,2,2,0,0,2,,0.0,504.0,22,2.0,0.0,4.0,4.0,2.3,3,3,1507.18492912952,528.0,11795.275229357798,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09376635801148804,5128.380534503391,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +1322,1,42.0,195.0,2,111,180.0,,,0,52,0.0,0.0,,230.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,0,,2,,2,101326,2,1,0,0,2,,264.0,250.0,12,1.0,0.0,2.0,1.0,1.0,1,1,46.67533451966054,180.0,9456.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024323181049069373,9456.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1323,2,44.0,0.0,8,400,814.0,0.0,0.0,42,48,1371.087706347582,0.0,1388.0332423048578,2114.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,101327,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.5,4,2,874.885623196786,814.0,67133.10130866949,1,1,1,2,160.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03148968182298172,26853.240523467794,7,4,7,7_1,7_0,7_0_0 +1324,2,69.0,0.0,1,300,530.0,920.0,0.0,72,78,0.0,132.4327277010224,903.7562879871924,1550.0,0.0,1746.6237241046058,71,0,0,0,0,0,0,0,0,0,,1,,1,101328,2,1,2,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1258.95827669577,530.0,24961.978867829,5,5,0,1,125.0,0,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06209443603037579,16641.319245219333,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1325,2,64.0,0.0,1,111,159.0,274.0,0.0,0,34,0.0,0.0,271.1268863961577,433.0,0.0,520.1901091355022,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,101329,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,787.447065263486,159.0,37612.09892695166,0,1,0,1,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011512253034348096,37612.09892695166,9,5,9,9_0,9_4,9_1_0 +1326,2,62.0,0.0,2,111,295.0,449.0,0.0,0,75,0.0,0.0,503.03416029475807,744.0,0.0,852.4283175249652,42,0,0,0,0,0,0,0,0,0,,1,,2,101330,2,2,2,0,1,,397.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,294.954537590042,295.0,24047.623128885367,0,5,0,1,95.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030938608610608462,24047.623128885367,6,3,6,6_1,6_2,6_0_1 +1327,2,70.0,0.0,2,111,305.0,55.0,0.0,75,74,0.0,0.0,520.0861657284787,360.0,0.0,104.4177226366884,60,0,0,0,0,0,0,0,0,0,,2,,2,101331,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,785.409827745139,305.0,62044.391557165894,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005802297209544016,41362.92770477726,9,5,9,9_0,9_4,9_0_1 +1328,2,81.0,0.0,2,111,800.0,1200.0,0.0,78,78,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,0,,1,,2,101332,2,1,1,0,1,,300.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,299.800944020623,800.0,30362.57708137455,5,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06587056146913395,20241.7180542497,5,3,5,5_1,5_2,5_0_1 +1329,2,54.0,0.0,5,111,400.0,600.0,0.0,52,52,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,71,1,1,2,2,2,2,2,1,2,5.0,2,,3,101333,2,1,0,1,1,,0.0,437.0,43,2.0,3.0,6.0,3.0,2.0,3,3,558.141110690357,400.0,34114.93407521141,1,1,2,3,102.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02931267572715669,17057.467037605704,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +1330,2,80.0,0.0,1,111,150.0,700.0,0.0,77,77,0.0,0.0,255.78008150580916,850.0,0.0,1328.9528335578523,70,0,0,0,0,0,0,0,0,0,,2,,1,101334,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1277.29024733206,150.0,30060.27207834076,5,5,0,1,84.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028276523838001055,20040.181385560507,5,3,5,5_0,5_3,5_1_0 +1331,2,68.0,0.0,6,120,90.0,0.0,0.0,77,75,0.0,0.0,153.4680489034855,90.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,101335,2,1,2,0,1,,258.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2832.93755510288,90.0,36459.82840608692,6,5,0,1,130.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002468470202261693,24306.552270724613,7,4,7,7_1,7_1,7_0_0 +1332,0,85.0,0.0,1,111,250.0,960.0,0.0,0,86,0.0,0.0,426.3001358430153,1210.0,0.0,1822.5638860221975,71,0,0,0,0,0,0,0,0,0,,1,,1,101336,1,1,1,0,1,,143.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,378.909772463203,250.0,13225.076145018162,0,6,5,0,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09149285695839283,13225.076145018162,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +1333,0,49.0,0.0,7,111,345.0,,,56,62,0.0,0.0,,621.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,101337,1,1,0,0,2,,250.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,84.12622664403702,345.0,37559.14032925478,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016533924753232537,15023.656131701911,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1334,2,62.0,0.0,5,111,420.0,0.0,0.0,78,77,105.46828510366015,0.0,716.1842282162656,520.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,101338,2,2,0,1,1,,400.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,221.825930488704,420.0,35847.65183540126,5,5,0,1,83.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.014505831578247903,17923.82591770063,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +1335,2,50.0,0.0,7,111,772.0,2170.0,0.0,54,21,0.0,0.0,1316.4148194832312,2942.0,0.0,4119.753784029343,50,0,0,0,0,0,0,0,0,0,,1,,5,101339,2,1,1,0,1,,656.0,,43,4.0,0.0,8.0,5.0,3.0,5,4,532.234144845645,772.0,57477.29007151541,1,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051185433348361634,19159.096690505135,5,3,5,5_1,5_4,5_0_0 +1336,2,36.0,0.0,5,111,480.0,,,0,35,0.0,0.0,,520.0,55.423569015860835,,31,0,0,0,0,0,0,0,0,0,,1,,3,101340,2,1,0,0,2,,320.0,900.0,32,1.0,0.0,5.0,2.0,1.3,1,1,154.5590421912511,480.0,44101.11811604476,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011791084267562252,33923.937012342125,9,5,9,9_1,9_2,9_0_0 +1337,2,54.0,0.0,2,111,800.0,280.0,0.0,0,46,0.0,0.0,1364.160434697649,1080.0,0.0,531.581133423141,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,101341,1,1,0,1,1,650.0,0.0,280.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1060.43510099901,800.0,53836.43768014694,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020060762683008417,35890.958453431296,9,5,9,9_0,9_4,9_0_1 +1338,1,44.0,360.0,2,111,360.0,149.0,0.0,63,56,0.0,0.0,613.872195613942,509.0,0.0,282.87710314302853,71,2,1,2,1,1,2,2,2,0,,2,,2,101342,1,3,0,1,2,68.0,0.0,327.0,43,2.0,0.0,3.0,4.0,2.3,3,2,479.022488340509,360.0,11837.560307018854,4,4,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.0429987249736078,5146.765350877763,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1339,1,33.0,130.0,2,111,410.0,510.0,0.0,0,56,0.0,0.0,699.1322227825451,1022.0,141.33010099044515,968.2370644492923,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,101343,1,2,0,0,1,,0.0,214.0,32,1.0,0.0,3.0,2.0,1.3,1,1,344.350572718546,410.0,20711.118761793365,0,1,2,3,48.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04934547533401839,15931.629816764125,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +1340,0,45.0,0.0,2,111,280.0,,,0,42,0.0,0.0,,322.0,58.19474746665388,,30,0,0,0,0,0,0,0,0,2,10.0,1,,2,101344,2,2,0,0,2,,144.0,,32,1.0,0.0,5.0,3.0,2.0,3,2,142.3061652087307,280.0,49635.550218074786,0,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006487285797886526,24817.775109037393,7,4,7,7_1,7_2,7_0_1 +1341,1,24.0,59.0,9,300,0.0,0.0,0.0,43,52,0.0,0.0,0.0,3532.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,101345,2,1,1,0,1,,418.0,597.0,43,2.0,0.0,4.0,4.0,2.1,2,2,2669.28856727174,0.0,40913.0,1,1,2,3,93.0,0,1,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08632952851171999,19482.38095238095,5,3,5,5_1,5_1,5_0_0 +1342,2,50.0,0.0,9,112,840.0,,,0,55,0.0,0.0,,1140.0,415.67676761895626,,60,0,0,0,0,0,0,0,0,2,60.0,1,2010.0,6,101346,2,2,0,0,2,,0.0,,32,2.0,2.0,3.0,3.0,2.0,3,2,10.711852557034108,840.0,9027.70942951203,0,4,0,1,55.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1262778791122013,4513.854714756015,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +1343,2,87.0,0.0,2,111,40.0,,,0,77,0.0,0.0,,40.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,101347,2,2,0,0,2,,40.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,60.49435299530996,40.0,12649.951219512195,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0031620675294226526,12649.951219512195,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1344,2,42.0,0.0,9,300,800.0,0.0,0.0,68,63,0.0,198.6490915515336,1364.160434697649,1160.0,290.9737373332694,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,101348,2,1,1,0,1,,240.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,2415.43886360353,800.0,26907.254696347718,1,1,1,2,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04311104990422727,13453.627348173859,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1346,2,38.0,0.0,1,111,1000.0,90.0,0.0,37,21,3164.0485531098047,0.0,1705.2005433720612,4090.0,0.0,170.865364314581,12,0,0,0,0,0,0,0,0,3,75.0,1,,1,101350,2,2,3,0,2,,0.0,1377.0,43,2.0,0.0,7.0,8.0,3.2999999999999994,2,2,1484.91875847054,1000.0,92716.9203479849,1,1,2,3,200.0,8,7,2,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04411276803251686,28096.036469086335,8,4,8,8_1,8_3,8_1_0 +1347,2,47.0,0.0,9,112,1000.0,0.0,0.0,43,53,0.0,662.163638505112,1705.2005433720612,1500.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,101351,2,1,1,0,1,,440.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,1971.28632216518,1000.0,65957.55125931313,1,1,1,2,130.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022741899469595633,26383.020503725253,7,4,7,7_1,7_1,7_0_0 +1348,1,62.0,129.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,688.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,101352,2,3,0,1,1,360.0,0.0,300.0,11,0.0,4.0,1.0,1.0,1.0,1,1,2269.35121524535,0.0,20289.762536239086,0,5,2,3,70.0,6,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03390872607657082,20289.762536239086,5,3,5,5_0,5_2,5_0_0 +1349,2,74.0,0.0,2,112,1805.0,0.0,0.0,75,75,0.0,132.4327277010224,3077.8869807865703,1935.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,101353,2,1,3,0,1,,306.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,2178.41084871294,1805.0,31048.84698052094,5,5,0,1,108.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062321154831094294,20699.23132034729,5,3,5,5_1,5_1,5_0_1 +1351,2,44.0,0.0,8,111,1200.0,,,33,37,0.0,0.0,,1280.0,110.84713803172167,,10,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,101355,2,1,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,212.49486159482646,1200.0,160371.54265321567,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00798146590612929,76367.40126343603,10,5,10,10_1,10_2,10_0_0 +1352,2,44.0,0.0,2,111,456.0,0.0,0.0,43,52,0.0,270.16276451008565,777.5714477776598,660.0,0.0,0.0,50,2,1,2,2,1,1,2,2,0,,2,,2,101356,2,1,0,1,1,619.0,0.0,845.0,43,2.0,0.0,3.0,4.0,2.1,2,2,858.768301442089,456.0,42025.96041432433,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015704578634092144,20012.362102059204,5,3,5,5_0,5_4,5_0_1 +1353,2,47.0,0.0,7,111,450.0,2200.0,0.0,77,46,0.0,0.0,767.3402445174275,2650.0,0.0,4176.708905467536,71,2,1,2,2,1,1,2,2,2,90.0,2,,5,101357,1,1,0,1,1,1020.0,0.0,654.0,42,1.0,0.0,4.0,4.0,2.1,2,2,591.075395000152,450.0,48306.38189565672,7,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.05485817600092845,23003.03899793177,6,3,6,6_0,6_4,6_0_0 +1354,2,44.0,0.0,9,120,759.0,1727.0,0.0,52,62,0.0,0.0,1294.2472124193944,2486.0,0.0,3278.7164907920155,71,0,0,0,0,0,0,0,0,2,12.0,1,2006.0,6,101358,2,1,1,0,1,,620.0,,43,3.0,0.0,5.0,5.0,2.8,4,4,529.362621171936,759.0,28207.487884947965,1,1,1,2,108.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08813262670322994,10074.102816052846,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1355,0,71.0,0.0,1,111,2400.0,0.0,0.0,0,74,0.0,0.0,4092.4813040929466,4960.0,3547.1084170150934,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,101359,2,2,2,0,1,,1260.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1129.00346224271,2400.0,14728.982616758054,0,5,0,1,244.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3367510254480651,14728.982616758054,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +1356,2,72.0,0.0,1,111,249.0,74.0,0.0,0,75,0.0,0.0,424.5949352996432,323.0,0.0,140.4892995475444,10,0,0,0,0,0,0,0,0,0,,2,,1,101360,1,1,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1675.18280534659,249.0,33995.886392864515,0,5,0,1,40.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.009501149529308797,33995.886392864515,9,5,9,9_0,9_3,9_1_0 +1357,1,30.0,180.0,5,111,0.0,,,0,54,0.0,0.0,,729.0,0.0,,43,0,0,0,0,0,0,0,0,2,35.0,2,,3,101361,2,1,0,0,2,,307.0,500.0,22,2.0,0.0,2.0,2.0,1.5,2,2,96.27086463012884,0.0,23671.0,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030797177981496345,15780.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +1358,2,61.0,0.0,5,112,821.0,0.0,0.0,55,75,0.0,556.2174563442941,1399.9696461084623,1241.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,101362,2,1,1,0,1,,157.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,2111.72821690057,821.0,69425.8787856728,1,5,0,1,100.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017875178848382127,46283.919190448534,10,5,10,10_1,10_0,10_0_0 +1359,2,61.0,0.0,1,120,750.0,0.0,0.0,85,42,0.0,662.163638505112,1278.9004075290459,1250.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,101363,1,1,3,0,2,,240.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1398.4203092986,750.0,51368.52246209846,7,1,1,2,210.0,0,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02433396835430287,34245.68164139897,9,5,9,9_1,9_1,9_1_0 +1360,2,53.0,0.0,2,111,0.0,0.0,1052.0,77,63,0.0,132.4327277010224,663.0948415163105,1152.0,0.0,1258.9622192380443,42,0,0,0,0,0,0,0,0,1,15.0,2,,2,101364,1,1,0,0,2,,0.0,,42,1.0,4.0,2.0,2.0,1.5,2,2,1388.13162015174,0.0,51017.3239311451,5,1,1,2,39.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022580565016596763,34011.54928743007,9,5,9,9_0,9_3,9_0_1 +1361,2,41.0,0.0,1,112,1082.0,0.0,0.0,85,37,0.0,794.5963662061343,1845.0269879285702,1862.0,249.40606057137379,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,101365,2,1,2,0,1,,280.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,964.96279006785,1082.0,28739.339485864628,6,1,0,1,120.0,8,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0647892412738233,13685.399755173632,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +1362,1,55.0,285.0,8,112,400.0,,,52,67,0.0,0.0,,484.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,101366,2,1,0,0,2,,120.0,,43,2.0,2.0,6.0,4.0,2.5,4,3,103.95901068511775,400.0,15534.383399209484,4,4,1,2,100.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.031156692065719832,6213.753359683794,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +1363,2,53.0,0.0,5,111,200.0,0.0,0.0,0,47,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,10.0,1,,3,101367,2,1,2,0,1,,400.0,450.0,22,1.0,2.0,5.0,4.0,2.1,2,2,689.038802439314,200.0,60860.334423917135,0,1,2,3,110.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.003286212635752511,28981.111630436728,8,4,8,8_1,8_2,8_0_0 +1364,1,91.0,333.0,1,111,0.0,0.0,700.0,0,77,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,71,2,2,2,2,2,1,1,2,0,,2,,1,101368,2,3,0,0,1,,0.0,479.0,21,1.0,2.0,4.0,2.0,1.5,2,2,1652.00141647746,0.0,23776.784824375332,0,5,2,3,70.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.029440481762798242,15851.189882916888,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +1365,1,53.0,470.0,2,111,440.0,65.0,0.0,85,85,0.0,0.0,750.2882390837069,505.0,0.0,123.40276311608629,20,0,0,0,0,0,0,0,0,0,,2,,2,101369,2,1,0,1,1,1044.0,720.0,438.0,41,2.0,1.0,5.0,5.0,3.0,5,4,259.947895755412,440.0,32672.55242619878,6,7,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015456398796534218,10890.850808732926,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1366,2,41.0,0.0,9,112,230.0,700.0,0.0,0,37,0.0,0.0,392.1961249755741,930.0,0.0,1328.9528335578523,12,2,2,2,1,1,1,2,2,2,15.0,2,2008.0,6,101370,2,3,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1046.29781565412,230.0,76790.48144442904,0,1,0,1,85.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.012110876016228822,76790.48144442904,10,5,10,10_0,10_0,10_0_0 +1367,1,35.0,257.0,5,111,240.0,0.0,0.0,0,56,0.0,0.0,409.2481304092947,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,101371,1,1,0,1,2,516.0,0.0,289.0,32,1.0,0.0,2.0,2.0,1.3,1,1,235.542025595117,240.0,12270.951366776937,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019558385721402945,9439.193359059182,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +1368,2,42.0,0.0,9,111,480.0,,,55,68,0.0,0.0,,591.0,153.80040401901383,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,101372,2,2,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,140.3565358921107,480.0,33250.419097306614,1,1,0,1,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01777421205640902,14456.703955350704,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1369,2,52.0,0.0,1,400,834.0,0.0,0.0,52,64,0.0,0.0,1422.137253172299,1455.0,117.77508415870429,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,101373,2,1,2,0,1,,305.0,260.0,43,2.0,3.0,7.0,2.0,1.5,2,2,1972.82409516987,834.0,36640.15378124468,1,1,2,3,140.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03971053202142355,24426.76918749645,7,4,7,7_1,7_0,7_1_0 +1370,2,80.0,0.0,9,112,1000.0,0.0,0.0,77,74,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,101374,2,1,0,0,1,,400.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,713.828966211403,1000.0,41505.383650842545,5,5,0,1,89.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024093260007240058,27670.255767228362,7,4,7,7_0,7_1,7_0_0 +1372,1,26.0,366.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1994.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,,3,101376,2,3,3,0,1,,422.0,288.0,32,1.0,0.0,4.0,2.0,1.3,1,1,569.470130634263,0.0,17825.57331356989,0,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11186175978317893,13711.979471976838,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +1373,2,39.0,0.0,6,111,510.0,,,0,52,0.0,0.0,,762.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,4,101377,1,3,0,0,2,,502.0,,32,3.0,2.0,5.0,6.0,3.3,5,4,122.25859585211592,510.0,27330.908829991036,0,1,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027880521820183097,8282.093584845768,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1374,2,64.0,0.0,2,111,400.0,1300.0,0.0,78,75,0.0,0.0,682.0802173488245,1700.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,2,,2,101378,2,2,0,0,2,,350.0,430.0,41,0.0,0.0,4.0,2.0,1.5,2,2,160.44346824548,400.0,4639.6270287030375,5,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.36640876292058727,3093.084685802025,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +1375,1,67.0,195.0,7,111,1900.0,0.0,0.0,74,77,0.0,0.0,3239.8810324069163,1960.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,101379,2,1,2,0,1,,800.0,533.0,41,0.0,0.0,5.0,2.0,1.5,2,2,1115.75608644772,1900.0,21193.333279195554,5,5,2,3,85.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09248191278735916,14128.888852797036,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +1376,2,52.0,0.0,2,111,75.0,500.0,0.0,77,52,0.0,0.0,127.89004075290458,575.0,0.0,949.2520239698945,60,0,0,0,0,0,0,0,0,1,18.0,2,,2,101380,2,1,0,1,1,,0.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,1722.23741695616,75.0,35024.18701023717,5,1,0,1,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01641722618235033,23349.458006824778,6,3,6,6_0,6_3,6_0_1 +1377,1,51.0,255.0,2,111,600.0,600.0,0.0,0,54,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,50,2,2,2,1,1,2,2,1,0,,2,,2,101381,1,3,0,0,1,,800.0,246.0,12,1.0,2.0,3.0,1.0,1.0,1,1,576.616298420704,600.0,5964.9759337546875,0,4,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.2011743238073139,5964.9759337546875,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1378,0,75.0,0.0,5,221,421.0,0.0,0.0,0,77,1980.6943942467376,0.0,717.8894287596378,2349.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,101382,2,1,2,0,1,,164.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,636.892800834923,421.0,19878.06384745052,0,5,0,1,85.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11817046257758515,19878.06384745052,5,3,5,5_1,5_1,5_0_0 +1379,2,47.0,0.0,7,112,400.0,,,52,22,0.0,0.0,,446.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,0,,1,,5,101383,2,1,0,0,2,,140.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,91.22657175427072,400.0,27257.593285906973,4,1,0,1,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016362413046591164,15143.107381059428,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1380,2,56.0,0.0,7,111,500.0,,,0,43,0.0,0.0,,644.0,199.524848457099,,33,0,0,0,0,0,0,0,0,2,45.0,1,,5,101384,2,1,0,0,2,,360.0,,32,2.0,2.0,5.0,2.0,1.5,2,2,133.09629105838334,500.0,49805.26752730984,0,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012930359216459865,33203.51168487323,8,4,8,8_1,8_2,8_0_0 +1381,2,49.0,0.0,7,112,2518.0,0.0,0.0,43,37,0.0,185.40581878143135,4293.69496821085,2658.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,101385,2,1,2,0,1,,602.0,,43,2.0,1.0,7.0,3.0,2.0,3,2,1113.35684030473,2518.0,73492.02238505882,1,1,0,1,150.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03616719085608373,36746.01119252941,9,5,9,9_1,9_0,9_0_0 +1382,2,87.0,0.0,2,111,100.0,236.0,0.0,0,78,0.0,0.0,170.52005433720612,336.0,0.0,448.0469553137902,71,1,2,2,2,2,2,2,1,0,,2,,2,101386,2,1,0,0,1,,198.0,516.0,21,1.0,1.0,3.0,2.0,1.5,2,2,337.521018108134,100.0,9390.367837924747,0,6,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03578134592800524,6260.2452252831645,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +1383,2,31.0,0.0,2,111,1200.0,,,52,21,0.0,0.0,,1222.0,30.482962958723462,,42,0,0,0,0,0,0,0,0,0,,1,,2,101387,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,80.82302648020492,1200.0,21394.935346564038,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05711632123236351,10188.06445074478,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +1384,2,44.0,0.0,9,111,0.0,0.0,0.0,67,47,0.0,0.0,0.0,2025.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2010.0,6,101388,1,3,0,0,1,,531.0,388.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1389.87326224999,0.0,31887.93652976353,4,1,2,3,75.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06350363869138749,17715.52029431307,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +1385,2,86.0,0.0,2,111,400.0,0.0,0.0,0,72,0.0,0.0,682.0802173488245,400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,101389,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,415.774130794936,400.0,18500.127566903968,0,5,0,1,65.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02162147253057784,18500.127566903968,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +1386,1,43.0,270.0,2,111,240.0,180.0,0.0,0,85,1079.99523946148,0.0,409.2481304092947,1444.0,0.0,341.730728629162,31,0,0,0,0,0,0,0,0,0,,8,,2,101390,1,3,0,0,2,,140.0,350.0,11,0.0,1.0,3.0,1.0,1.0,1,1,157.971536929731,240.0,9902.114902985624,0,7,2,3,139.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14582743324505495,9902.114902985624,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1387,2,52.0,0.0,1,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,697.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,101391,2,2,0,1,2,,0.0,,42,2.0,0.0,3.0,5.0,3.0,5,5,314.752391516025,0.0,27364.26877185225,3,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025471172126366345,9121.42292395075,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +1388,0,56.0,0.0,6,111,269.0,1019.0,0.0,0,46,0.0,0.0,458.69894616708444,1288.0,0.0,1934.575624850645,42,0,0,0,0,0,0,0,0,0,,2,,4,101392,2,1,0,0,1,,116.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1708.02290646459,269.0,37329.06226167207,0,1,5,0,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03450394737942466,37329.06226167207,9,5,9,9_0,9_3,9_0_0 +1389,2,32.0,0.0,9,112,1000.0,0.0,0.0,0,64,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,101393,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1004.54944244038,1000.0,15619.890606891018,0,1,2,3,55.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06402093491991746,15619.890606891018,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +1390,2,34.0,0.0,9,111,1400.0,0.0,0.0,43,65,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,150.0,1,2011.0,6,101394,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,475.903822027598,1400.0,46213.562063675265,1,1,1,2,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030294137423793752,25674.20114648626,7,4,7,7_1,7_3,7_0_0 +1391,0,62.0,0.0,5,111,1350.0,,,52,21,0.0,0.0,,2150.0,1108.4713803172167,,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,101395,1,1,0,0,2,,800.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,73.97665163971278,1350.0,35112.52537973272,1,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061231710813970684,17556.26268986636,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1392,2,84.0,0.0,1,211,580.0,0.0,0.0,0,72,1582.0242765549024,0.0,989.0163151557955,2160.0,110.84713803172167,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,101396,2,1,2,0,2,,200.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,999.060493912597,580.0,52809.0,0,5,0,1,150.0,1,3,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04090211895699597,52809.0,10,5,10,10_1,10_1,10_1_0 +1393,1,35.0,334.0,2,111,260.0,360.0,0.0,0,56,0.0,0.0,443.3521412767359,620.0,0.0,683.461457258324,60,0,0,0,0,0,0,0,0,1,5.0,2,,2,101397,2,2,0,1,1,672.0,0.0,300.0,32,1.0,0.0,3.0,3.0,1.6,1,1,540.61531967487,260.0,12638.857777747004,0,1,2,3,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04905506580599571,7899.286111091877,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1394,2,89.0,0.0,2,111,500.0,,,77,90,0.0,0.0,,760.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,1,,2,101398,2,2,0,0,2,,300.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,84.66932140342483,500.0,14285.631720430109,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05320030747489535,7142.815860215054,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +1395,2,32.0,0.0,6,211,1020.0,2640.0,0.0,85,37,0.0,0.0,1739.3045542395023,3660.0,0.0,5012.050686561043,42,0,0,0,0,0,0,0,0,2,7.0,1,,4,101399,1,3,2,0,1,,360.0,600.0,42,1.0,0.0,5.0,3.0,1.8,2,2,294.15577003537,1020.0,60367.39979641637,6,1,2,3,170.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06062875015891062,33537.44433134243,8,4,8,8_1,8_1,8_0_0 +1396,2,50.0,0.0,5,112,610.0,0.0,0.0,0,34,0.0,0.0,1040.1723314569574,657.0,65.12269359363648,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,101400,2,2,2,0,1,,70.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2099.85005978486,610.0,28399.79343807586,0,1,1,2,83.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023133971077379533,28399.79343807586,8,4,8,8_1,8_1,8_0_0 +1397,2,43.0,0.0,1,400,1100.0,0.0,0.0,43,23,0.0,0.0,1875.7205977092674,2700.0,2216.9427606344334,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,101401,2,2,2,0,1,,390.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1482.75705899427,1100.0,57549.45623780042,1,1,0,1,190.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04691616874438075,27404.502970381152,7,4,7,7_1,7_0,7_1_0 +1398,2,36.0,0.0,1,111,530.0,1200.0,0.0,34,34,0.0,0.0,903.7562879871924,1730.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,0,,2,,1,101402,1,1,0,0,1,,0.0,900.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1594.56057120484,530.0,54660.194080523375,1,1,2,3,106.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03165008886451131,26028.663847868273,7,4,7,7_0,7_3,7_1_0 +1399,2,66.0,0.0,9,111,521.0,0.0,0.0,0,75,490.4275257320197,132.4327277010224,888.4094830968438,1206.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101403,2,1,1,0,1,,260.0,,21,1.0,2.0,3.0,2.0,1.5,2,2,648.606128420157,521.0,47370.328728160115,0,5,0,1,92.0,7,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025458974686892396,31580.219152106743,8,4,8,8_1,8_2,8_0_0 +1400,2,92.0,0.0,2,111,1616.0,0.0,0.0,0,77,0.0,0.0,2755.604078089251,1616.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101404,2,3,3,0,2,,158.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,895.778156125515,1616.0,24916.846054765883,0,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06485572036075991,24916.846054765883,7,4,7,7_1,7_4,7_0_1 +1401,2,27.0,0.0,9,111,0.0,0.0,0.0,46,31,0.0,0.0,0.0,1192.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,101405,2,1,1,0,1,,94.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1310.98464770984,0.0,38946.74027537172,1,1,2,3,88.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030605899019327445,25964.493516914477,7,4,7,7_1,7_2,7_0_0 +1402,2,31.0,0.0,2,111,0.0,0.0,0.0,42,37,0.0,0.0,0.0,2811.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,2,101406,2,1,2,0,2,,313.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1528.84994422362,0.0,29656.76534409978,4,1,0,1,100.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09478444352864157,16475.9807467221,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +1403,0,78.0,0.0,2,211,650.0,1410.0,0.0,0,77,0.0,0.0,1108.3803531918397,2060.0,0.0,2676.8907075951024,50,2,2,1,1,2,2,2,2,0,,1,,2,101407,2,2,3,0,1,,250.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,235.219241606221,650.0,24368.36083700786,0,5,0,1,90.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08453584604145838,24368.36083700786,7,4,7,7_1,7_1,7_0_1 +1404,2,77.0,0.0,5,111,310.0,,,0,77,0.0,0.0,,442.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,101408,2,1,0,0,2,,680.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,108.8310868183632,310.0,10599.89936544226,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041698509085945315,10599.89936544226,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +1405,2,41.0,0.0,8,112,750.0,0.0,0.0,22,53,1054.6828510366015,662.163638505112,1278.9004075290459,2250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,75.0,1,2001.0,6,101409,2,1,2,0,1,,650.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,1157.1386680178,750.0,63681.43218204553,1,1,1,2,150.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03533211994303058,22743.368636444833,6,3,6,6_1,6_0,6_0_0 +1406,2,55.0,0.0,2,111,1338.0,0.0,0.0,22,65,1371.087706347582,0.0,2281.558327031818,2938.0,415.67676761895626,0.0,42,0,0,0,0,0,0,0,0,2,6.0,1,,2,101410,1,2,1,0,2,,688.0,,43,4.0,1.0,7.0,7.0,3.6,5,5,1316.51555146034,1338.0,89166.89230976462,1,1,0,1,154.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032949449329168344,24768.581197156836,7,4,7,7_1,7_3,7_0_1 +1407,1,47.0,249.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,604.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,101411,1,2,0,1,1,534.0,0.0,258.0,11,0.0,3.0,3.0,1.0,1.0,1,1,140.486273120564,0.0,8126.116686307647,0,7,2,3,62.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07432824598959163,8126.116686307647,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1408,2,38.0,0.0,2,111,240.0,0.0,0.0,0,46,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,2,1,2,2,1,2,2,2,3,30.0,2,,2,101412,2,1,0,1,1,272.0,0.0,500.0,12,1.0,1.0,1.0,1.0,1.0,1,1,730.591806021251,240.0,22944.073777723617,0,1,3,4,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01046021741060717,22944.073777723617,6,3,6,6_0,6_4,6_0_1 +1409,1,24.0,150.0,7,111,0.0,0.0,0.0,55,68,0.0,0.0,0.0,819.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,101413,2,1,2,0,1,,345.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1078.95971026702,0.0,25665.165500155148,1,1,1,2,42.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0319109572854712,14258.425277863971,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +1410,1,43.0,24.0,9,112,994.0,0.0,0.0,56,48,0.0,688.6501840453165,1694.9693401118288,1640.0,174.58424239996165,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,101414,2,1,1,0,1,,249.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,325.021108292205,994.0,35218.02529440267,1,1,1,2,102.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.046567062925605064,13545.39434400103,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +1411,2,83.0,0.0,1,111,300.0,1848.0,0.0,0,74,0.0,0.0,511.56016301161833,2148.0,0.0,3508.43548059273,50,0,0,0,0,0,0,0,0,0,,1,,1,101415,2,2,2,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,345.966553944815,300.0,34619.18697045094,0,5,0,1,117.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06204651778314194,34619.18697045094,9,5,9,9_1,9_3,9_1_0 +1412,0,85.0,0.0,2,111,300.0,1500.0,0.0,0,86,0.0,0.0,511.56016301161833,1800.0,0.0,2847.7560719096837,60,0,0,0,0,0,0,0,0,0,,1,,2,101416,2,3,1,0,1,,220.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,601.673041308998,300.0,18218.912244201125,0,6,0,1,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09879843405980068,18218.912244201125,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +1413,2,39.0,0.0,1,112,1100.0,0.0,0.0,67,62,0.0,0.0,1875.7205977092674,1190.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,1,3.0,1,,1,101417,2,1,1,0,1,,150.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1723.04459949106,1100.0,41410.33773892094,1,1,1,2,120.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028736785666964925,19719.20844710521,5,3,5,5_1,5_0,5_1_0 +1414,1,63.0,16.0,2,111,237.0,684.0,0.0,0,77,0.0,0.0,404.1325287791785,921.0,0.0,1298.5767687908158,70,0,0,0,0,0,0,0,0,0,,2,,2,101418,2,1,0,0,1,,0.0,325.0,11,0.0,6.0,2.0,1.0,1.0,1,1,791.313920832216,237.0,13476.347749914654,0,5,2,3,40.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0683419585997128,13476.347749914654,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +1415,2,54.0,0.0,2,111,1512.0,0.0,0.0,78,68,0.0,0.0,2578.2632215785566,2684.0,0.0,0.0,71,2,2,2,1,1,2,2,2,1,15.0,2,,2,101419,2,1,0,1,1,348.0,0.0,297.0,42,4.0,0.0,3.0,6.0,3.5,6,5,331.990505647968,1512.0,33252.30529320911,5,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.08071620828490754,9500.658655202602,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +1416,2,63.0,0.0,2,111,360.0,180.0,0.0,78,78,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,31,0,0,0,0,0,0,0,0,0,,2,,2,101420,2,1,0,1,1,80.0,240.0,310.0,41,0.0,4.0,5.0,2.0,1.5,2,2,296.002622433362,360.0,14596.4787544589,6,5,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03699522392241636,9730.985836305934,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +1417,2,51.0,0.0,6,112,850.0,0.0,0.0,0,43,0.0,503.2443652638851,1449.420461866252,1310.0,110.84713803172167,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,4,101421,2,2,2,0,1,,450.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,779.366011861112,850.0,50109.34236622278,0,1,1,2,80.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026142829622985277,33406.22824414852,8,4,8,8_1,8_0,8_0_0 +1418,1,84.0,304.0,6,111,591.0,,,86,78,0.0,0.0,,951.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,0,,2,,4,101422,2,1,0,0,2,,568.0,328.0,41,1.0,2.0,4.0,3.0,2.0,3,3,139.7361761655233,591.0,17270.670988545528,6,5,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05506445005123045,8635.335494272764,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1419,2,49.0,0.0,2,111,360.0,360.0,0.0,85,43,0.0,0.0,613.872195613942,720.0,0.0,683.461457258324,50,0,0,0,0,0,0,0,0,0,,2,,2,101423,2,1,0,1,1,57.0,0.0,302.0,42,1.0,0.0,3.0,3.0,1.8,2,2,974.575409553666,360.0,18655.175862567856,6,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03859518694994994,10363.986590315475,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +1420,2,70.0,0.0,5,221,294.0,392.0,0.0,86,72,0.0,834.326184516441,501.328959751386,1316.0,0.0,744.2135867923973,71,0,0,0,0,0,0,0,0,0,,1,,3,101424,2,1,2,0,1,,445.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,2213.17253125409,294.0,22556.13067101054,6,5,0,1,100.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058343339963504555,15037.420447340359,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1421,2,49.0,0.0,1,111,250.0,250.0,0.0,43,43,0.0,79.45963662061344,426.3001358430153,560.0,0.0,474.62601198494724,33,0,0,0,0,0,0,0,0,2,20.0,1,,1,101425,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,291.552471937305,250.0,54462.93744891673,1,1,1,2,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.010282221749887242,21785.17497956669,6,3,6,6_1,6_3,6_1_0 +1422,2,61.0,0.0,5,300,370.0,0.0,0.0,52,78,949.2145659329414,0.0,630.9242010476627,1390.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,101426,2,1,1,0,1,,150.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1390.79116545243,370.0,35867.22426915301,1,5,0,1,90.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0387540443489363,23911.482846102008,6,3,6,6_1,6_0,6_0_0 +1424,0,63.0,0.0,7,111,1000.0,0.0,0.0,78,53,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,41,2,2,2,1,1,2,2,2,0,,2,,5,101428,1,3,0,0,1,,0.0,,42,1.0,4.0,2.0,2.0,1.5,2,2,1011.20595668048,1000.0,41590.90293460958,5,1,5,0,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.024043719405953484,27727.26862307305,7,4,7,7_0,7_4,7_0_0 +1425,2,52.0,0.0,2,111,194.0,0.0,0.0,0,65,0.0,0.0,330.8089054141799,194.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,2,,2,101429,2,1,0,1,1,400.0,0.0,365.0,12,1.0,1.0,3.0,1.0,1.0,1,1,840.414883702808,194.0,25469.070466714464,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007617082070330704,25469.070466714464,7,4,7,7_0,7_4,7_0_1 +1426,2,60.0,0.0,1,112,1326.0,0.0,0.0,78,78,0.0,0.0,2261.095920511353,1410.0,116.38949493330776,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,101430,2,1,2,0,1,,470.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1507.40481936957,1326.0,29333.589181888292,5,5,0,1,86.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048067762565877525,19555.72612125886,5,3,5,5_1,5_0,5_1_0 +1427,1,41.0,30.0,1,111,334.0,809.0,0.0,0,46,0.0,0.0,569.5369814862685,1143.0,0.0,1535.8897747832893,42,2,2,2,2,1,2,2,2,3,20.0,1,,1,101431,1,1,3,0,1,,168.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,260.090667883292,334.0,26207.83242827871,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.04361291621991153,16379.895267674194,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +1428,2,35.0,0.0,9,112,919.0,0.0,0.0,31,43,0.0,0.0,1567.0792993589241,919.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,2.0,1,2012.0,6,101432,2,1,1,0,1,,190.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1218.66521586174,919.0,35174.8364729156,1,1,1,2,98.0,9,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026126631767218706,23449.890981943736,6,3,6,6_1,6_1,6_0_0 +1429,2,56.0,0.0,1,112,562.0,0.0,0.0,0,77,0.0,476.7578197236806,958.3227053750984,922.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101433,2,1,1,0,1,,0.0,484.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1616.45856772795,562.0,18857.654680409873,0,7,2,3,110.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04889261234366607,18857.654680409873,5,3,5,5_1,5_0,5_1_0 +1430,1,36.0,250.0,6,111,500.0,,,22,22,0.0,0.0,,544.0,60.965925917446924,,31,0,0,0,0,0,0,0,0,0,,1,,4,101434,1,1,0,0,2,,160.0,850.0,43,2.0,0.0,5.0,4.0,2.1,2,2,181.91466662706824,500.0,61321.0,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008871349129988096,29200.47619047619,8,4,8,8_1,8_2,8_0_0 +1431,1,27.0,100.0,9,112,600.0,0.0,0.0,63,56,0.0,331.081819252556,1023.1203260232367,934.0,116.38949493330776,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,101435,2,1,1,0,1,,220.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,344.491573857395,600.0,40189.56080244646,1,1,1,2,117.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023239865809709086,22327.53377913692,6,3,6,6_1,6_1,6_0_0 +1432,1,45.0,157.0,7,111,0.0,,,0,64,0.0,0.0,,25.0,34.63973063491302,,42,0,0,0,0,0,0,0,0,2,60.0,1,,5,101436,2,1,0,0,2,,100.0,550.0,12,1.0,0.0,3.0,1.0,1.0,1,1,74.89045884669648,0.0,14073.744467861545,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0017763573906780376,14073.744467861545,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +1433,2,77.0,0.0,2,111,432.0,890.0,0.0,0,86,0.0,0.0,736.6466347367304,1322.0,0.0,1689.6686026664122,41,0,0,0,0,0,0,0,0,0,,2,,2,101437,2,2,0,1,2,,104.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1068.56335212649,432.0,48917.341409007924,0,6,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027025180885168858,48917.341409007924,10,5,10,10_0,10_4,10_0_1 +1434,1,36.0,344.0,9,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1640.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2009.0,6,101438,2,1,0,0,1,,274.0,396.0,31,0.0,0.0,3.0,2.0,1.3,1,1,290.04754600775,0.0,15399.375733169298,0,6,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10649782357524676,11845.67364089946,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1435,2,39.0,0.0,2,111,180.0,1200.0,0.0,0,54,0.0,0.0,306.936097806971,1380.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,3,240.0,1,,2,101439,2,2,3,0,1,,158.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,250.620585356361,180.0,39837.8997510006,0,1,0,1,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03464038035703272,39837.8997510006,9,5,9,9_1,9_2,9_0_1 +1436,2,67.0,0.0,1,400,500.0,0.0,0.0,75,78,2847.643697798824,0.0,852.6002716860306,3320.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101440,2,1,2,0,2,,110.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1548.32319729146,500.0,29871.3926729218,5,5,0,1,180.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11114312735105772,19914.261781947866,5,3,5,5_1,5_0,5_1_0 +1437,2,26.0,0.0,2,111,0.0,0.0,0.0,53,52,0.0,0.0,0.0,1139.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,2,,2,101441,2,2,0,0,1,,0.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,1147.60043078194,0.0,28732.23491473231,3,1,0,1,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03964188666075479,14366.117457366156,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +1438,2,40.0,0.0,9,112,1700.0,0.0,0.0,43,43,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,101442,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,292.49066839488,1700.0,53478.34174764967,1,1,1,2,130.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031788569810594657,29710.18985980537,8,4,8,8_1,8_0,8_0_0 +1439,2,61.0,0.0,5,111,450.0,1100.0,0.0,0,74,0.0,0.0,767.3402445174275,1550.0,0.0,2088.354452733768,41,0,0,0,0,0,0,0,0,0,,1,,3,101443,2,2,1,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1184.13975970492,450.0,28214.430407036976,0,5,0,1,92.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054936427127496204,28214.430407036976,8,4,8,8_1,8_2,8_0_0 +1440,0,77.0,0.0,2,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,219.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101444,1,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,868.171348382199,0.0,38985.40317380028,0,5,5,0,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005617487114951182,38985.40317380028,9,5,9,9_0,9_4,9_0_1 +1441,1,66.0,220.0,2,112,770.0,118.0,0.0,86,78,0.0,0.0,1313.0044183964872,888.0,0.0,224.0234776568951,71,2,1,2,2,1,2,2,2,0,,2,,2,101445,2,2,0,1,1,889.0,0.0,359.0,41,0.0,4.0,4.0,3.0,2.0,3,3,261.036585107038,770.0,16006.73975199872,6,5,2,3,83.0,10,5,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.055476631328944905,8003.36987599936,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1442,2,59.0,0.0,1,111,0.0,0.0,766.0,75,37,0.0,0.0,482.8238104576937,766.0,0.0,916.6968250345454,20,0,0,0,0,0,0,0,0,2,5.0,2,,1,101446,1,3,0,1,2,1020.0,0.0,3600.0,42,1.0,3.0,5.0,2.0,1.5,2,2,631.570530105305,0.0,316296.54106940783,6,1,2,3,135.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0024217779853365822,210864.36071293856,10,5,10,10_0,10_4,10_1_0 +1443,1,46.0,377.0,2,111,500.0,500.0,0.0,0,68,0.0,0.0,852.6002716860306,1100.0,138.5589225396521,949.2520239698945,71,2,2,2,2,1,1,2,2,0,,2,,2,101447,1,3,0,0,1,,605.0,440.0,32,2.0,1.0,3.0,3.0,2.0,3,2,421.807922702575,500.0,7206.056376598122,0,4,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.15264937470823597,3603.028188299061,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1444,2,46.0,0.0,7,211,648.0,348.0,0.0,0,33,0.0,0.0,1104.9699521050957,996.0,0.0,660.6794086830465,20,0,0,0,0,0,0,0,0,3,75.0,2,,5,101448,2,1,0,0,1,,403.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1850.27752955605,648.0,27272.990939646807,0,1,2,3,45.0,2,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0365196469358303,27272.990939646807,7,4,7,7_0,7_1,7_0_0 +1445,1,34.0,259.0,7,111,1380.0,,,54,22,0.0,0.0,,1512.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,,5,101449,1,1,0,0,2,,1260.0,449.0,43,2.0,0.0,3.0,4.0,2.1,2,2,90.7393544805521,1380.0,24191.380604800008,4,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0625016002476515,11519.705049904765,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1446,2,45.0,0.0,7,111,390.0,690.0,0.0,47,43,0.0,0.0,665.0282119151038,1080.0,0.0,1309.9677930784544,33,0,0,0,0,0,0,0,0,2,15.0,2,,5,101450,2,1,0,0,1,,450.0,724.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1652.52268175861,390.0,71296.53625122561,1,1,2,3,64.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01514800096591557,33950.73154820267,9,5,9,9_0,9_3,9_0_0 +1447,2,32.0,0.0,2,211,0.0,0.0,0.0,42,34,0.0,0.0,0.0,824.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,101451,1,1,2,0,2,,490.0,950.0,43,2.0,0.0,6.0,4.0,2.1,2,2,646.721191327481,0.0,90869.52242663228,1,1,2,3,121.0,1,3,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009067946853856248,43271.20115553918,9,5,9,9_1,9_1,9_0_1 +1448,2,40.0,0.0,2,111,438.0,1264.0,0.0,0,68,0.0,0.0,746.8778379969627,1702.0,0.0,2399.709116595893,50,0,0,0,0,0,0,0,0,0,,2,,2,101452,1,3,0,0,1,,0.0,321.0,22,1.0,5.0,3.0,3.0,2.0,3,3,271.872060630508,438.0,53170.80776123365,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0320100459568514,26585.403880616825,7,4,7,7_0,7_4,7_0_1 +1449,1,68.0,225.0,2,111,0.0,0.0,800.0,0,86,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,71,0,0,0,0,0,0,0,0,0,,2,,2,101453,2,1,0,1,1,648.0,0.0,302.0,11,0.0,2.0,3.0,1.0,1.0,1,1,401.781762140196,0.0,14225.43733206899,0,7,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.056237286863337906,14225.43733206899,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +1450,2,78.0,0.0,2,111,240.0,74.0,0.0,0,77,0.0,0.0,409.2481304092947,314.0,0.0,140.4892995475444,70,2,1,2,1,1,2,2,2,0,,2,,2,101454,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,307.994105646785,240.0,22137.42087021634,0,5,0,1,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.014184127493481195,22137.42087021634,6,3,6,6_0,6_3,6_0_1 +1451,2,57.0,0.0,1,111,288.0,1320.0,0.0,56,52,0.0,0.0,491.09775649115363,1608.0,0.0,2506.0253432805216,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,101455,2,1,1,0,1,,360.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,286.989374551342,288.0,61176.29250406488,1,1,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026284691899123438,30588.14625203244,8,4,8,8_1,8_3,8_1_0 +1452,1,52.0,316.0,2,111,160.0,,,0,55,0.0,0.0,,250.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,0,,2,,2,101456,2,1,0,0,2,,180.0,315.0,32,1.0,1.0,2.0,2.0,1.5,2,1,103.60966861012466,160.0,17456.046867855097,0,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01432168473724536,11637.364578570065,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1453,2,52.0,0.0,5,111,0.0,,,0,63,0.0,0.0,,621.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,101457,2,2,0,0,2,,273.0,,32,2.0,4.0,4.0,4.0,2.3,3,2,150.94069850625533,0.0,18858.0,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03293032134902959,8199.13043478261,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1454,2,58.0,0.0,5,111,1234.0,0.0,0.0,0,33,0.0,0.0,2104.2174705211237,1234.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,,3,101458,2,1,3,0,1,,300.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,1438.76695465985,1234.0,44512.71282465892,0,1,1,2,107.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027722417298197,29675.141883105945,8,4,8,8_1,8_3,8_0_0 +1455,0,27.0,0.0,9,112,800.0,1500.0,0.0,52,46,0.0,0.0,1364.160434697649,2300.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,8,2012.0,6,101459,2,3,0,0,1,,288.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2063.09853603976,800.0,34529.5770070644,1,1,5,0,120.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06660956198593002,19183.098337257998,5,3,5,5_0,5_1,5_0_0 +1456,0,47.0,0.0,2,111,470.0,,,0,52,0.0,0.0,,536.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,,2,101460,2,2,0,0,2,,350.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,107.81893636210343,470.0,8653.351531951286,0,4,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061941318114824666,6656.424255347143,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +1457,2,90.0,0.0,6,111,310.0,0.0,0.0,0,75,0.0,0.0,528.612168445339,1995.0,2334.717844793138,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101461,2,1,2,0,1,,77.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1133.45223371041,310.0,59804.72506567277,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033358568203586764,59804.72506567277,10,5,10,10_1,10_4,10_0_0 +1458,1,85.0,361.0,6,111,463.0,8000.0,0.0,0,78,0.0,0.0,789.5078515812643,8463.0,0.0,15188.032383518312,70,0,0,0,0,0,0,0,0,0,,1,,4,101462,2,2,5,0,1,,162.0,420.0,21,0.0,4.0,3.0,2.0,1.5,2,2,186.041194821457,463.0,27805.944006007572,0,5,2,3,60.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.30435938438815596,18537.29600400505,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +1459,0,71.0,0.0,2,112,540.0,70.0,0.0,77,78,0.0,0.0,920.8082934209131,610.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,0,,1,,2,101463,2,1,2,0,1,,281.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1726.66173814136,540.0,41008.97894740341,5,5,0,1,105.0,6,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014874791220292592,27339.31929826894,7,4,7,7_1,7_1,7_0_1 +1460,0,48.0,0.0,7,111,1000.0,,,62,43,0.0,0.0,,1092.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,,5,101464,2,1,0,0,2,,240.0,,43,2.0,1.0,3.0,4.0,2.5,4,3,88.67249283228284,1000.0,9383.022727272728,4,4,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1163804065853948,3753.209090909091,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1461,2,56.0,0.0,8,111,550.0,,,85,63,0.0,0.0,,700.0,207.83838380947813,,71,2,2,2,2,1,2,2,2,2,25.0,1,2001.0,6,101465,1,2,0,0,2,,400.0,,42,2.0,1.0,3.0,3.0,2.0,3,3,98.75037489470925,550.0,56368.3253509195,6,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.012418321737290735,28184.16267545975,8,4,8,8_1,8_2,8_0_0 +1462,2,39.0,0.0,2,111,1100.0,370.0,0.0,0,53,0.0,0.0,1875.7205977092674,1470.0,0.0,702.446497737722,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,101466,2,2,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1779.45351398733,1100.0,33680.591790903156,0,1,1,2,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04364531386877337,21050.369869314472,5,3,5,5_0,5_3,5_0_1 +1464,2,35.0,0.0,6,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,1390.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,101468,2,1,0,0,1,,0.0,550.0,12,1.0,2.0,1.0,1.0,1.0,1,1,822.849272260443,0.0,14176.702287570188,0,1,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09804819003772976,14176.702287570188,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +1465,2,72.0,0.0,6,120,1600.0,0.0,0.0,0,75,0.0,0.0,2728.320869395298,1640.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,101469,2,1,2,0,1,,89.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,924.386739918655,1600.0,53028.15692360287,0,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03092696588272399,53028.15692360287,10,5,10,10_1,10_0,10_0_0 +1466,2,51.0,0.0,1,111,1400.0,0.0,0.0,0,21,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,101470,2,1,2,0,1,,360.0,,32,1.0,2.0,4.0,3.0,1.6,1,1,1028.62800862948,1400.0,13107.94552721922,0,1,0,1,78.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10680544842766083,8192.465954512012,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +1467,2,34.0,0.0,6,112,1140.0,0.0,0.0,43,53,0.0,158.91927324122688,1943.9286194441497,1290.0,41.567676761895626,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,101471,2,1,2,0,1,,445.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1791.6367588347,1140.0,31528.720300295543,1,1,1,2,95.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04091507640377995,21019.146866863695,5,3,5,5_1,5_1,5_0_0 +1468,2,51.0,0.0,8,211,250.0,,,46,43,0.0,0.0,,292.0,58.19474746665388,,33,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,101472,2,1,0,0,2,,150.0,630.0,43,2.0,4.0,4.0,2.0,1.5,2,2,124.6063971818917,250.0,44322.57184445378,1,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00658806535470795,29548.381229635852,8,4,8,8_1,8_2,8_0_0 +1469,1,45.0,254.0,5,111,528.0,,,0,46,0.0,0.0,,578.0,69.27946126982604,,43,0,0,0,0,0,0,0,0,0,,2,,3,101473,2,2,0,0,2,,360.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,121.03858548175273,528.0,7772.877239089576,0,4,1,2,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07436113838171207,7772.877239089576,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1470,2,43.0,0.0,9,120,2400.0,0.0,0.0,42,21,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,101474,2,1,1,0,1,,700.0,,43,2.0,1.0,8.0,4.0,2.1,2,2,575.378556131532,2400.0,77262.6961605506,4,1,1,2,170.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031062855935195945,36791.760076452665,9,5,9,9_1,9_0,9_0_0 +1471,2,60.0,0.0,7,112,335.0,1269.0,0.0,75,77,0.0,0.0,571.2421820296405,1604.0,0.0,2409.201636835592,20,0,0,0,0,0,0,0,0,0,,1,,5,101475,2,1,2,0,1,,131.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,311.045664551189,335.0,37490.68645596017,6,5,0,1,135.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04278395920768745,24993.79097064011,7,4,7,7_1,7_0,7_0_0 +1472,1,34.0,253.0,5,111,0.0,,,0,67,0.0,0.0,,145.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,101476,1,3,0,0,2,,0.0,453.0,12,1.0,0.0,1.0,1.0,1.0,1,1,173.9325543670062,0.0,4929.211421475218,0,4,3,4,10.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029416470019580594,4929.211421475218,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1473,2,75.0,0.0,1,112,780.0,450.0,0.0,0,86,0.0,794.5963662061343,1330.0564238302077,1880.0,69.27946126982604,854.326821572905,71,2,2,2,2,2,2,2,1,0,,1,,1,101477,1,2,3,0,2,,270.0,,11,0.0,8.0,2.0,1.0,1.0,1,1,250.583704320776,780.0,9736.064006516699,0,6,0,1,80.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1930965119725639,9736.064006516699,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +1474,2,78.0,0.0,2,111,2199.0,0.0,0.0,75,74,1582.0242765549024,0.0,3749.7359948751623,3699.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,101478,1,1,1,0,2,,279.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,696.480665432648,2199.0,69263.5167616761,5,5,0,1,180.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0534047384964241,46175.6778411174,10,5,10,10_1,10_4,10_0_1 +1475,1,31.0,258.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1444.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,15.0,1,,3,101479,2,3,3,0,1,,648.0,634.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1531.21436772182,0.0,24602.062820463718,0,1,2,3,95.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05869426521417127,15376.289262789824,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +1477,2,76.0,0.0,5,211,350.0,700.0,0.0,75,78,0.0,728.3800023556231,596.8201901802214,1600.0,0.0,1328.9528335578523,50,2,2,2,1,1,2,2,2,0,,1,,3,101481,2,2,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1239.00220444566,350.0,30796.968331587857,5,5,0,1,84.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.051953165739333854,20531.31222105857,5,3,5,5_1,5_1,5_0_0 +1478,0,70.0,0.0,5,111,725.0,0.0,0.0,0,74,0.0,0.0,1236.2703939447445,725.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,101482,2,2,2,0,1,,170.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1128.63096717653,725.0,50059.77913060441,0,5,0,1,86.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014482684753931845,50059.77913060441,10,5,10,10_1,10_2,10_0_0 +1479,2,58.0,0.0,7,112,1600.0,0.0,0.0,46,55,0.0,92.70290939071567,2728.320869395298,1740.0,96.99124577775646,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,5,101483,2,1,2,0,1,,170.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,526.263086230619,1600.0,49605.09300909208,1,5,0,1,87.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03507704339312652,33070.06200606139,8,4,8,8_1,8_1,8_0_0 +1480,2,73.0,0.0,2,111,360.0,0.0,0.0,0,86,0.0,0.0,613.872195613942,788.0,0.0,0.0,42,2,1,2,2,1,2,2,2,0,,2,,2,101484,1,2,0,1,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1729.4481971692,360.0,26614.680436051898,0,5,0,1,53.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.029607719765539078,26614.680436051898,7,4,7,7_0,7_3,7_0_1 +1481,2,53.0,0.0,9,111,420.0,,,0,46,0.0,0.0,,496.0,105.3047811301356,,41,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,101485,2,1,0,0,1,,180.0,690.0,12,1.0,0.0,2.0,1.0,1.0,1,1,136.96483920677125,420.0,38240.593948279165,0,1,2,3,42.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012970509837552355,38240.593948279165,9,5,9,9_0,9_3,9_0_0 +1482,2,61.0,0.0,5,112,770.0,870.0,0.0,75,75,0.0,0.0,1313.0044183964872,1640.0,0.0,1651.6985217076165,42,0,0,0,0,0,0,0,0,0,,1,,3,101486,1,1,2,0,1,,650.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1371.16947497446,770.0,52120.79176979732,5,5,0,1,115.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03146537004355983,34747.194513198214,9,5,9,9_1,9_1,9_0_0 +1483,1,39.0,57.0,7,111,500.0,0.0,0.0,0,55,0.0,0.0,852.6002716860306,650.0,207.83838380947813,0.0,31,2,2,2,2,1,2,2,2,2,25.0,2,,5,101487,2,2,0,0,1,,600.0,568.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2842.67672539592,500.0,13759.921850661554,0,1,2,3,48.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0.04723864038288481,13759.921850661554,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +1484,2,78.0,0.0,2,111,520.0,0.0,0.0,78,78,1687.4925616585624,0.0,886.7042825534718,2210.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101488,2,1,2,0,1,,100.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1205.51023363009,520.0,33463.372190915274,5,5,0,1,116.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06604235781712331,22308.914793943517,6,3,6,6_1,6_2,6_0_1 +1485,2,81.0,0.0,2,111,719.0,0.0,0.0,0,77,0.0,0.0,1226.039190684512,847.0,177.35542085075468,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101489,2,1,1,0,1,,130.0,600.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1123.382004817,719.0,17802.230658303903,0,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.047578307250216105,17802.230658303903,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +1486,2,53.0,0.0,6,112,1600.0,0.0,0.0,68,37,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,4,101490,2,1,2,0,1,,250.0,,43,3.0,2.0,7.0,3.0,2.0,3,3,1190.69615784431,1600.0,53184.97460415165,1,1,0,1,120.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03008368457273087,26592.487302075824,7,4,7,7_1,7_0,7_0_0 +1487,2,39.0,0.0,5,111,1400.0,,,0,54,0.0,0.0,,1526.0,174.58424239996165,,31,2,2,2,2,1,2,2,2,2,35.0,1,,3,101491,1,3,0,0,2,,810.0,,32,2.0,0.0,4.0,3.0,2.0,3,2,110.24995980809229,1400.0,33759.694368964134,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04520183101547501,16879.847184482067,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1488,1,41.0,27.0,2,111,1200.0,20.0,0.0,85,48,0.0,0.0,2046.2406520464733,3165.0,0.0,37.970080958795776,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,101492,2,1,0,1,1,315.0,0.0,450.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,882.494872890289,1200.0,40511.081420560586,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07812677146637877,15581.185161754074,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +1489,2,62.0,0.0,5,111,557.0,,,68,69,0.0,0.0,,1061.0,698.3369695998466,,71,2,2,2,2,1,2,2,2,2,60.0,1,,3,101493,1,2,0,0,2,,292.0,,43,2.0,6.0,5.0,3.0,2.0,3,2,134.47529618068415,557.0,24582.0,1,1,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04316166300545114,12291.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +1490,2,28.0,0.0,9,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,481.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,4.0,2,2008.0,6,101494,2,1,0,0,1,,186.0,370.0,12,1.0,0.0,2.0,1.0,1.0,1,1,471.234123473576,0.0,18791.755334165195,0,1,2,3,43.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02559633155320495,18791.755334165195,5,3,5,5_0,5_2,5_0_0 +1491,2,41.0,0.0,7,111,420.0,1100.0,0.0,55,47,0.0,0.0,716.1842282162656,1520.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,3.0,1,,5,101495,2,1,2,0,1,,220.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1561.81389926222,420.0,50785.557735616065,1,1,1,2,100.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02992976877231417,24183.598921721936,7,4,7,7_1,7_2,7_0_0 +1492,2,66.0,0.0,5,300,264.0,0.0,0.0,75,74,0.0,0.0,450.1729434502241,1215.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101496,2,1,2,0,1,,275.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1373.90296416959,264.0,52841.34410071731,5,5,0,1,132.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02299335909556295,35227.56273381154,9,5,9,9_1,9_0,9_0_0 +1493,1,78.0,250.0,2,111,180.0,468.0,0.0,0,78,0.0,0.0,306.936097806971,648.0,0.0,888.4998944358213,71,2,2,1,1,1,2,2,2,0,,2,,2,101497,1,3,0,1,2,732.0,0.0,239.0,11,0.0,2.0,3.0,1.0,1.0,1,1,407.349816201436,180.0,10909.615045007531,0,5,2,3,61.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.059397146217046254,10909.615045007531,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1494,2,66.0,0.0,6,112,2132.0,0.0,0.0,74,78,0.0,0.0,3635.4875584692345,2192.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,101498,2,1,2,0,1,,790.0,,41,0.0,1.0,7.0,5.0,2.8,4,4,581.375602209929,2132.0,61238.56939226957,5,5,0,1,200.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03579443513709362,21870.91764009628,6,3,6,6_1,6_1,6_0_0 +1495,2,41.0,0.0,7,111,1200.0,0.0,0.0,85,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,101499,2,1,0,0,1,,0.0,940.0,42,1.0,0.0,3.0,2.0,1.5,2,2,666.510401035631,1200.0,69494.95069128637,6,1,2,3,84.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01726744156321075,46329.96712752425,10,5,10,10_0,10_3,10_0_0 +1496,2,38.0,0.0,2,111,340.0,0.0,0.0,0,52,0.0,0.0,579.7681847465008,340.0,0.0,0.0,41,2,1,2,2,1,2,2,2,1,12.0,2,,2,101500,2,1,0,1,1,,140.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1644.0567790996,340.0,17156.201183748686,0,1,1,2,61.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01981790702723089,17156.201183748686,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +1497,0,56.0,0.0,6,120,0.0,0.0,0.0,77,52,0.0,0.0,0.0,27.0,37.410909085706066,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,4,101501,2,1,1,0,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,2500.29240123677,0.0,27553.697281097884,7,1,5,0,80.0,0,1,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.000979904791888756,18369.131520731924,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1498,2,83.0,0.0,1,400,400.0,0.0,0.0,0,78,1265.6194212439218,0.0,682.0802173488245,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101502,2,1,2,0,2,,80.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1245.97773837251,400.0,18037.83041190063,0,5,0,1,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08870246384755812,18037.83041190063,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1499,1,43.0,240.0,2,111,275.0,550.0,0.0,0,85,0.0,0.0,468.93014942731685,825.0,0.0,1044.177226366884,71,2,2,2,1,2,2,2,2,0,,2,,2,101503,2,3,0,0,1,,135.0,340.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2023.42060762443,275.0,9382.332864296453,0,7,2,3,87.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.08793122264287345,9382.332864296453,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1500,2,43.0,0.0,7,111,550.0,0.0,0.0,0,52,0.0,0.0,937.8602988546337,550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,7.0,2,,5,101504,2,1,0,0,1,,0.0,820.0,12,1.0,0.0,2.0,1.0,1.0,1,1,823.87614686384,550.0,32497.072107450473,0,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01692460164354018,32497.072107450473,8,4,8,8_0,8_4,8_0_0 +1501,2,34.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,403.0,0.0,,20,0,0,0,0,0,0,0,0,2,13.0,2,2005.0,6,101505,2,2,0,0,1,,197.0,525.0,12,1.0,0.0,2.0,1.0,1.0,1,1,179.08501252923145,0.0,36759.00855634976,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01096329895247911,36759.00855634976,9,5,9,9_0,9_2,9_0_0 +1502,2,67.0,0.0,5,111,500.0,1800.0,0.0,75,74,0.0,0.0,852.6002716860306,2300.0,0.0,3417.30728629162,10,0,0,0,0,0,0,0,0,0,,1,,3,101506,2,1,2,0,1,,297.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1139.60082002967,500.0,64973.45840393878,5,5,0,1,110.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03539906996639986,43315.638935959185,10,5,10,10_1,10_2,10_0_0 +1503,2,89.0,0.0,2,112,270.0,658.0,0.0,0,77,0.0,0.0,460.40414671045653,980.0,72.05063972061909,1249.2156635443812,70,0,0,0,0,0,0,0,0,0,,8,,2,101507,1,1,0,1,2,,80.0,548.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1481.55320760664,270.0,26576.789532405524,0,5,2,3,79.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03687428080073666,26576.789532405524,7,4,7,7_0,7_1,7_0_1 +1504,2,32.0,0.0,5,112,1000.0,0.0,0.0,42,54,1371.087706347582,0.0,1705.2005433720612,3405.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,10.0,1,,3,101508,1,2,3,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1126.71107590362,1000.0,32783.302943677656,4,1,1,2,120.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.1038638481866777,21855.535295785103,6,3,6,6_1,6_0,6_0_0 +1505,2,83.0,0.0,1,111,540.0,0.0,0.0,78,75,2910.92466886102,0.0,920.8082934209131,3300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101509,2,1,2,0,1,,279.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,742.77953436881,540.0,29820.129795223118,5,5,0,1,160.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11066350222689596,19880.086530148747,5,3,5,5_1,5_2,5_1_0 +1506,2,65.0,0.0,9,120,700.0,0.0,0.0,56,74,0.0,264.8654554020448,1193.6403803604428,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,101510,2,1,1,0,1,,450.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,2005.8503121074,700.0,22280.070788709636,1,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04039484472625969,14853.380525806424,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1507,2,66.0,0.0,2,111,450.0,300.0,0.0,86,78,0.0,0.0,767.3402445174275,750.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,101511,2,1,0,1,1,,272.0,450.0,41,0.0,0.0,4.0,2.0,1.5,2,2,221.435732676478,450.0,14531.665183694382,6,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0516114285953654,9687.776789129588,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +1508,2,53.0,0.0,7,120,400.0,,,0,56,0.0,0.0,,464.0,88.67771042537734,,60,2,2,1,2,1,2,2,2,1,20.0,1,,5,101512,2,2,0,0,1,,400.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,86.88453095184862,400.0,21415.940415585355,0,1,1,2,69.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02166610435945769,10707.970207792678,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +1509,2,51.0,0.0,8,111,552.0,,,0,54,0.0,0.0,,636.0,116.38949493330776,,42,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,101513,2,1,0,0,2,,1200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,95.32978500035112,552.0,50539.82867779695,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012584134466593596,50539.82867779695,10,5,10,10_1,10_3,10_0_0 +1510,1,53.0,150.0,2,120,720.0,0.0,0.0,85,62,0.0,1721.6254601132912,1227.744391227884,2140.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,101514,2,1,2,0,2,,300.0,,42,1.0,0.0,4.0,5.0,2.8,4,3,321.913633694962,720.0,27443.132118247748,6,1,1,2,90.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07797943728795631,9801.11861365991,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +1511,2,63.0,0.0,1,120,600.0,0.0,0.0,78,78,0.0,1986.490915515336,1023.1203260232367,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101515,2,1,2,0,1,,400.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1679.05454131377,600.0,17104.881532637017,5,5,0,1,120.0,0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12277196986094813,11403.254355091345,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +1512,2,34.0,0.0,7,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1010.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,60.0,2,,5,101516,2,1,0,0,1,,152.0,604.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2629.28186485302,0.0,32312.35408107158,0,1,2,3,66.0,9,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03125739453912623,32312.35408107158,8,4,8,8_0,8_2,8_0_0 +1513,2,57.0,0.0,6,111,600.0,,,68,68,0.0,0.0,,888.0,399.049696914198,,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,101517,1,2,0,0,2,,320.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,98.92907790077965,600.0,33592.40064141084,1,1,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026434550167436476,22394.93376094056,6,3,6,6_1,6_3,6_0_0 +1514,1,25.0,206.0,8,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,741.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,101518,2,2,0,1,1,828.0,38.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1943.77234227226,0.0,5796.987913409881,0,1,2,3,80.0,6,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12782500344461334,5796.987913409881,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1515,2,70.0,0.0,2,111,310.0,0.0,0.0,0,77,0.0,0.0,528.612168445339,1310.0,1385.589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101519,2,1,2,0,1,,90.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1020.09672234245,310.0,18391.094678918023,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07123012647537898,18391.094678918023,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +1516,0,59.0,0.0,2,112,540.0,,,0,65,0.0,0.0,,660.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,101520,2,2,0,0,2,,180.0,,22,2.0,3.0,4.0,2.0,1.5,2,2,107.02736757437734,540.0,22110.518598451577,0,4,5,0,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02985004612448215,14740.345732301052,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +1517,2,39.0,0.0,2,111,1200.0,0.0,0.0,54,34,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,101521,2,2,0,0,1,,1100.0,457.0,43,2.0,0.0,4.0,4.0,2.3,3,2,1104.70527583116,1200.0,64340.79155670667,1,1,2,3,80.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01865068754931903,27974.257198568117,7,4,7,7_0,7_3,7_0_1 +1518,2,30.0,0.0,8,112,3000.0,,,22,22,0.0,0.0,,3375.0,519.5959595236953,,60,0,0,0,0,0,0,0,0,1,3.0,8,2000.0,6,101522,2,1,0,0,2,,1500.0,1000.0,43,5.0,0.0,5.0,6.0,3.3,5,5,10.711852557315979,3000.0,25163.36760883809,1,1,2,3,120.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.13412354230419476,7625.262911769119,1,1,1_0,1_0_0,1_0_0,1_0_0_0 +1519,2,65.0,0.0,2,111,1100.0,,,0,77,0.0,0.0,,1280.0,249.40606057137379,,70,0,0,0,0,0,0,0,0,0,,1,,2,101523,2,1,0,0,2,,260.0,160.0,31,0.0,3.0,3.0,2.0,1.3,1,1,47.03664210294669,1100.0,25023.628364301032,0,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05115165480262891,19248.94489561618,5,3,5,5_1,5_2,5_0_1 +1520,2,57.0,0.0,2,111,210.0,880.0,0.0,75,64,0.0,0.0,358.0921141081328,1090.0,0.0,1670.6835621870143,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,101524,2,1,2,0,1,,320.0,620.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1327.05423741004,210.0,39202.29717894284,5,1,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027804493063877993,26134.864785961894,7,4,7,7_1,7_2,7_0_1 +1521,2,26.0,0.0,9,221,0.0,0.0,0.0,0,52,0.0,0.0,0.0,503.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,2009.0,6,101525,2,1,0,0,1,,28.0,415.0,12,1.0,0.0,2.0,1.0,1.0,1,1,934.896723939725,0.0,21860.194243840946,0,1,2,3,37.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0230098595826393,21860.194243840946,6,3,6,6_0,6_1,6_0_0 +1522,2,33.0,0.0,2,111,0.0,0.0,1473.0,56,63,0.0,0.0,928.4588417809176,1473.0,0.0,1762.7864533627749,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,101526,1,1,0,0,1,,0.0,511.0,43,2.0,1.0,3.0,4.0,2.1,2,2,1628.49310814278,0.0,41364.9663083061,1,1,2,3,64.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035609844065175054,19697.603003955286,5,3,5,5_0,5_3,5_0_1 +1523,2,77.0,0.0,6,111,444.0,,,0,77,0.0,0.0,,570.0,174.58424239996165,,70,0,0,0,0,0,0,0,0,0,,1,,4,101527,2,2,0,0,2,,263.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,106.95737441660037,444.0,14774.324665203394,0,5,0,1,86.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03858044363560444,14774.324665203394,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1524,2,93.0,0.0,2,120,500.0,0.0,0.0,0,86,0.0,582.7040018844986,852.6002716860306,975.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101528,1,1,4,0,2,,152.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,524.296738803627,500.0,12801.1237702898,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07616518811128778,12801.1237702898,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +1525,2,47.0,0.0,2,111,970.0,0.0,0.0,0,37,1582.0242765549024,0.0,1654.0445270708994,2520.0,69.27946126982604,0.0,50,2,2,1,1,2,2,2,2,2,2.0,1,,2,101529,2,1,4,0,1,,420.0,,32,1.0,0.0,7.0,3.0,2.0,3,2,1648.73239327139,970.0,35671.362104065665,0,1,0,1,120.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07064490536269097,17835.681052032833,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1526,1,30.0,223.0,9,111,403.0,915.0,0.0,46,52,0.0,0.0,687.1958189789407,1318.0,0.0,1737.1312038649069,43,2,2,2,2,1,2,2,2,2,20.0,1,2007.0,6,101530,2,1,1,0,1,,600.0,649.0,43,2.0,0.0,4.0,5.0,2.4,2,2,503.819976754695,403.0,42471.087872422715,4,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,1,0.031032875916884684,17696.286613509466,4,2,4_1,4_1_1,4_4_1,4_0_0_1 +1527,2,59.0,0.0,9,400,659.0,,,52,47,0.0,0.0,,772.0,156.57158246980686,,43,0,0,0,0,0,0,0,0,2,9.0,1,2006.0,6,101531,2,1,0,0,2,,796.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,32.73987088511653,659.0,67223.0,1,1,0,1,65.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011484164646028888,33611.5,9,5,9,9_1,9_1,9_0_0 +1528,1,31.0,509.0,5,111,330.0,0.0,0.0,0,67,0.0,0.0,562.7161793127802,330.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,3,101532,2,2,0,1,1,1046.0,0.0,420.0,32,1.0,0.0,4.0,4.0,1.9,1,1,226.887098692695,330.0,35685.7007902587,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009247401415473441,18781.947784346685,5,3,5,5_0,5_4,5_0_0 +1529,2,66.0,0.0,1,300,0.0,0.0,0.0,71,71,0.0,476.7578197236806,0.0,450.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,101533,2,1,3,0,2,,256.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1120.44963445489,0.0,21951.646428718635,5,5,0,1,150.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020499601315155998,14634.43095247909,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1530,2,56.0,0.0,2,111,0.0,0.0,0.0,77,53,0.0,0.0,0.0,583.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,101534,2,1,0,1,2,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,321.965116347297,0.0,25298.82273751865,5,1,1,2,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023044550572521288,16865.881825012435,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +1531,2,72.0,0.0,8,111,397.0,812.0,0.0,75,72,0.0,0.0,676.9646157187083,1209.0,0.0,1541.5852869271087,31,0,0,0,0,0,0,0,0,0,,2,2000.0,6,101535,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,500.324634737756,397.0,54450.458590421724,5,5,0,1,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022203669744898583,36300.305726947816,9,5,9,9_0,9_4,9_0_0 +1532,2,64.0,0.0,6,112,2653.0,0.0,0.0,0,75,0.0,0.0,4523.897041566078,2713.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,101536,2,1,3,0,1,,458.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,2327.36983497193,2653.0,35245.994921638994,0,5,0,1,110.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07697328465352458,35245.994921638994,9,5,9,9_1,9_1,9_0_0 +1533,2,63.0,0.0,2,111,0.0,0.0,240.0,0,77,0.0,0.0,151.2763896995385,240.0,0.0,287.2157154155234,50,2,2,2,1,2,2,2,2,0,,2,,2,101537,2,2,0,1,1,528.0,0.0,309.0,11,0.0,4.0,3.0,1.0,1.0,1,1,931.812436542112,0.0,23289.539096021334,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010305055802542712,23289.539096021334,6,3,6,6_0,6_4,6_0_1 +1534,2,72.0,0.0,1,300,400.0,0.0,0.0,0,71,2109.365702073203,0.0,682.0802173488245,2460.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101538,1,3,4,0,2,,209.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1151.20051053328,400.0,17346.880935013483,0,5,0,1,130.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14181223755532094,17346.880935013483,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1535,1,63.0,269.0,7,111,240.0,0.0,0.0,0,74,0.0,0.0,409.2481304092947,240.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,101539,2,3,0,1,1,529.0,0.0,375.0,11,0.0,0.0,2.0,1.0,1.0,1,1,326.053990608059,240.0,15288.6598297684,0,5,2,3,54.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01569790960569993,15288.6598297684,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +1536,2,53.0,0.0,8,112,1900.0,0.0,0.0,21,38,0.0,463.51454695357836,3239.8810324069163,2250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,101540,2,1,1,0,1,,319.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,499.299851612792,1900.0,26884.595146005417,1,1,1,2,153.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08369105012668605,13442.297573002708,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1537,2,32.0,0.0,2,111,304.0,0.0,0.0,33,33,0.0,0.0,518.3809651851066,304.0,0.0,0.0,12,2,1,2,1,1,2,2,2,1,30.0,2,,2,101541,1,2,0,1,2,667.0,0.0,1620.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1007.38560702923,304.0,140783.48368893476,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.002159344207390811,67039.75413758798,10,5,10,10_0,10_4,10_0_1 +1538,2,36.0,0.0,6,111,1100.0,0.0,0.0,85,46,0.0,0.0,1875.7205977092674,1375.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,30.0,2,,4,101542,1,2,0,0,1,,146.0,390.0,42,1.0,0.0,3.0,2.0,1.5,2,2,350.186921394153,1100.0,20919.996205536147,6,1,2,3,70.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.06572658935932923,13946.664137024098,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +1539,2,48.0,0.0,7,111,406.0,1133.0,0.0,43,38,0.0,0.0,692.3114206090569,1539.0,0.0,2151.0050863157808,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,101543,2,1,2,0,1,,427.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,2952.03219912766,406.0,70733.76401415007,1,1,1,2,135.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021757643205472958,35366.88200707504,9,5,9,9_1,9_3,9_0_0 +1540,2,46.0,0.0,1,111,1440.0,0.0,0.0,22,68,0.0,0.0,2455.488782455768,2400.0,1330.16565638066,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,1,101544,2,2,1,0,1,,351.0,,43,2.0,3.0,3.0,3.0,2.0,3,2,903.567502266436,1440.0,32793.43888851929,1,1,0,1,80.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0731853712615733,16396.719444259645,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +1541,2,70.0,0.0,5,112,420.0,1260.0,0.0,77,74,0.0,105.94618216081791,716.1842282162656,1760.0,0.0,2392.115100404134,50,0,0,0,0,0,0,0,0,0,,1,,3,101545,2,2,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,970.258863566164,420.0,61783.95339188761,5,5,0,1,118.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028486360994683328,41189.30226125841,9,5,9,9_1,9_1,9_0_0 +1542,1,71.0,120.0,2,111,0.0,0.0,370.0,0,77,0.0,0.0,233.2177674534552,370.0,0.0,442.7908945989319,60,0,0,0,0,0,0,0,0,0,,2,,2,101546,2,1,0,1,1,630.0,69.0,335.0,11,0.0,3.0,3.0,1.0,1.0,1,1,321.673914256396,0.0,11424.55320634781,0,5,2,3,58.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03238638687370438,11424.55320634781,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1543,0,84.0,0.0,2,111,408.0,0.0,0.0,0,86,0.0,0.0,695.7218216958009,509.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101547,2,2,0,0,1,,120.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,379.95277668413,408.0,11604.741721239694,0,7,5,0,60.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.043861381168733615,11604.741721239694,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +1544,2,43.0,0.0,8,111,360.0,,,52,52,0.0,0.0,,492.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,101548,1,2,0,0,2,,360.0,431.0,43,2.0,0.0,4.0,5.0,2.4,2,2,74.84105458567478,360.0,74007.61986548227,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006647964100105761,30836.50827728428,8,4,8,8_0,8_3,8_0_0 +1545,0,51.0,0.0,8,111,900.0,,,46,54,0.0,0.0,,1070.0,235.55016831740858,,50,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,101549,2,1,0,0,2,,480.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,86.53761643183405,900.0,45904.66220830677,1,1,0,1,130.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023309179253831348,18361.86488332271,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +1546,2,56.0,0.0,9,111,1200.0,0.0,0.0,54,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,101550,2,1,1,0,1,,120.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,1530.13266583198,1200.0,107721.45750913996,1,1,1,2,90.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011139841845327634,71814.3050060933,10,5,10,10_1,10_2,10_0_0 +1547,2,45.0,0.0,1,112,450.0,0.0,0.0,0,56,0.0,211.89236432163582,767.3402445174275,636.0,36.025319860309544,0.0,60,2,2,2,2,1,2,2,2,2,20.0,1,,1,101551,1,2,3,0,2,,600.0,,32,1.0,3.0,4.0,2.0,1.5,2,2,214.037308895772,450.0,14834.397086600966,0,1,0,1,81.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.042873329889117046,9889.598057733978,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1548,2,45.0,0.0,9,211,1626.0,0.0,0.0,63,62,0.0,0.0,2772.6560835229716,1626.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,2007.0,6,101552,2,1,1,0,1,,178.0,,43,2.0,2.0,6.0,5.0,2.5999999999999996,4,2,2269.00698712628,1626.0,65403.0,1,1,1,2,110.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02486124489702307,25155.000000000004,7,4,7,7_1,7_1,7_0_0 +1549,2,67.0,0.0,2,111,836.0,1309.0,0.0,46,46,0.0,0.0,1425.5476542590432,2145.0,0.0,2485.1417987531836,70,0,0,0,0,0,0,0,0,0,,1,,2,101553,2,1,2,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1539.40184855685,836.0,54698.29534072867,1,5,0,1,120.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03921511605870504,36465.53022715245,9,5,9,9_1,9_3,9_0_1 +1550,1,50.0,544.0,5,111,800.0,140.0,0.0,0,56,0.0,0.0,1364.160434697649,940.0,0.0,265.7905667115705,60,0,0,0,0,0,0,0,0,0,,2,,3,101554,2,1,0,1,1,62.0,0.0,514.0,32,1.0,0.0,4.0,4.0,2.3,2,2,328.815489180858,800.0,16098.620010765959,0,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05839009799419917,6999.400004680852,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +1551,2,51.0,0.0,7,112,990.0,0.0,0.0,52,48,0.0,238.3789098618403,1688.1485379383405,1170.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,5,101555,2,2,2,0,1,,422.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,2959.34016332828,990.0,62809.86499938756,1,1,0,1,160.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018627647106253267,31404.93249969378,8,4,8,8_1,8_1,8_0_0 +1552,1,31.0,253.0,6,111,215.0,,,85,47,0.0,0.0,,503.0,399.049696914198,,42,0,0,0,0,0,0,0,0,0,,2,,4,101556,2,2,0,0,2,,170.0,550.0,42,1.0,0.0,3.0,4.0,2.1,2,2,71.06069711639472,215.0,24315.08595762667,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020686745704973707,11578.612360774605,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1553,0,42.0,0.0,1,111,93.0,0.0,0.0,56,21,0.0,0.0,158.58365053360168,742.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,101557,1,1,0,1,2,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,939.49125994527,93.0,58608.65888325355,1,1,5,0,14.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012660245331292065,32560.36604625197,8,4,8,8_0,8_4,8_1_0 +1554,2,37.0,0.0,2,111,2200.0,2000.0,0.0,85,46,0.0,0.0,3751.441195418535,4200.0,0.0,3797.008095879578,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,101558,1,2,2,0,1,,550.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,467.216662660933,2200.0,18958.29203239796,6,1,1,2,142.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.22153894416346104,10532.384462443311,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1555,2,64.0,0.0,2,112,450.0,0.0,0.0,0,75,0.0,0.0,767.3402445174275,1650.0,1662.707070475825,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,101559,2,1,1,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,3764.80047597798,450.0,21504.630098118712,0,5,0,1,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07672766248345499,21504.630098118712,6,3,6,6_1,6_1,6_0_1 +1556,2,39.0,0.0,5,211,240.0,,,0,38,0.0,0.0,,240.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,3,101560,2,2,0,0,2,,180.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,68.78668619388905,240.0,42413.0,0,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005658642397378163,42413.0,9,5,9,9_0,9_2,9_0_0 +1557,2,63.0,0.0,7,111,2200.0,0.0,0.0,75,74,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,1,,5,101561,2,2,3,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,354.671730175076,2200.0,43686.57983298399,5,5,0,1,131.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05035871447045549,29124.38655532266,8,4,8,8_1,8_2,8_0_0 +1558,2,58.0,0.0,7,111,2000.0,0.0,0.0,75,75,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,101562,2,2,2,0,1,,203.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,617.359169735316,2000.0,43626.84552593469,5,5,0,1,112.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04584333283530819,29084.563683956458,8,4,8,8_1,8_4,8_0_0 +1559,2,68.0,0.0,1,111,331.0,1000.0,0.0,86,78,0.0,0.0,564.4213798561523,1331.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,101563,2,2,2,0,1,,532.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,420.129811761356,331.0,19954.583694694622,6,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06670146670881821,13303.05579646308,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +1560,2,81.0,0.0,1,120,720.0,0.0,0.0,71,71,1582.0242765549024,132.4327277010224,1227.744391227884,2410.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101564,2,1,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,516.352962242238,720.0,29744.980589826806,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08102207337880238,19829.987059884537,5,3,5,5_1,5_0,5_1_0 +1562,2,59.0,0.0,5,112,800.0,0.0,0.0,63,52,0.0,264.8654554020448,1364.160434697649,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,3,101566,2,1,4,0,1,,150.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1365.69015904957,800.0,44849.86827421992,1,1,0,1,160.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022296609521477866,29899.91218281328,8,4,8,8_1,8_0,8_0_0 +1563,2,26.0,0.0,1,111,770.0,0.0,0.0,0,46,0.0,0.0,1313.0044183964872,1653.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,101567,1,1,0,0,2,,270.0,560.0,22,2.0,0.0,3.0,2.0,1.5,2,2,929.505955022844,770.0,33891.02201929299,0,1,2,3,67.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.048773979110426476,22594.01467952866,6,3,6,6_0,6_3,6_1_0 +1564,1,28.0,218.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,361.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,101568,1,2,0,1,1,240.0,0.0,291.0,12,1.0,0.0,1.0,1.0,1.0,1,1,241.892881706703,0.0,12775.705264625352,0,4,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028256757065269252,12775.705264625352,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +1565,2,43.0,0.0,1,111,0.0,0.0,0.0,52,65,0.0,0.0,0.0,532.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,101569,2,1,2,0,1,,212.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,294.641821225888,0.0,43329.56689914714,1,1,1,2,38.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012277990251743583,28886.37793276476,8,4,8,8_1,8_4,8_1_0 +1566,1,62.0,271.0,6,111,240.0,90.0,0.0,0,78,0.0,0.0,409.2481304092947,330.0,0.0,170.865364314581,70,2,2,2,2,1,2,2,2,0,,2,,4,101570,2,1,0,1,1,500.0,0.0,386.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1368.83880401372,240.0,8333.11320302039,0,5,2,3,86.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.03960104608688016,8333.11320302039,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1567,2,62.0,0.0,2,111,830.0,1500.0,0.0,54,78,0.0,0.0,1415.3164509988108,2330.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,,2,101571,2,1,3,0,1,,300.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1081.65680760248,830.0,32369.17157064691,1,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07198207080816663,21579.447713764606,6,3,6,6_1,6_4,6_0_1 +1568,2,62.0,0.0,5,400,680.0,0.0,0.0,0,77,0.0,132.4327277010224,1159.5363694930015,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101572,2,1,2,0,1,,69.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1915.37305247057,680.0,19947.901508664734,0,5,0,1,89.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03910185738891847,19947.901508664734,5,3,5,5_1,5_0,5_0_0 +1570,2,71.0,0.0,1,111,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,560.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101574,2,2,1,0,1,,160.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1467.32029876065,500.0,16794.851546368463,0,5,0,1,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03334355165057046,16794.851546368463,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +1572,2,33.0,0.0,1,112,2200.0,0.0,0.0,55,64,0.0,0.0,3751.441195418535,2300.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,1,101576,2,1,1,0,1,,180.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,809.095207113467,2200.0,32589.939940201373,1,1,0,1,228.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07057392570284646,13579.141641750573,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1573,1,26.0,329.0,2,111,362.0,0.0,0.0,0,54,0.0,0.0,617.2825967006861,362.0,0.0,0.0,31,1,1,2,2,1,2,2,2,2,12.0,2,,2,101577,2,2,0,1,2,752.0,0.0,294.0,32,1.0,0.0,3.0,3.0,1.6,1,1,166.670184979314,362.0,27112.647471219716,0,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.013351702388498423,16945.40466951232,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +1574,2,31.0,0.0,9,111,700.0,,,54,62,0.0,0.0,,750.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,101578,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,247.05629324735045,700.0,43602.0592520031,1,1,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017201022448625397,24223.36625111283,7,4,7,7_1,7_2,7_0_0 +1575,2,77.0,0.0,2,400,700.0,0.0,0.0,0,71,105.46828510366015,0.0,1193.6403803604428,870.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101579,2,1,2,0,1,,120.0,,21,0.0,0.0,3.0,2.0,1.5,2,2,1805.75122819931,700.0,26831.86968036902,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03242412885735344,17887.913120246016,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +1576,2,91.0,0.0,5,111,150.0,380.0,0.0,0,77,0.0,0.0,255.78008150580916,530.0,0.0,721.4315382171199,70,0,0,0,0,0,0,0,0,0,,2,,3,101580,2,1,0,1,2,,0.0,,11,0.0,3.0,1.0,1.0,1.0,1,1,2871.54243900669,150.0,19668.39476146688,0,5,0,1,35.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026946784749223344,19668.39476146688,5,3,5,5_0,5_3,5_0_0 +1577,2,69.0,0.0,6,112,3600.0,0.0,0.0,74,75,0.0,0.0,6138.72195613942,3675.0,103.91919190473907,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,101581,1,1,2,0,1,,330.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,773.885406303336,3600.0,59891.85753779931,5,5,0,1,150.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061360594763330084,39927.90502519954,9,5,9,9_1,9_0,9_0_0 +1578,0,81.0,0.0,2,211,250.0,1200.0,0.0,0,72,0.0,0.0,426.3001358430153,1450.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,2,101582,2,1,3,0,1,,170.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1516.2546492921,250.0,14198.344935935915,0,5,0,1,95.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10212457906485001,14198.344935935915,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +1579,2,57.0,0.0,9,300,1497.0,0.0,0.0,56,64,0.0,264.8654554020448,2552.6852134279757,1697.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,101583,2,1,2,0,1,,450.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,898.902084215819,1497.0,56431.478979408916,1,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030071868231899654,37620.98598627261,9,5,9,9_1,9_0,9_0_0 +1580,1,45.0,132.0,2,211,0.0,0.0,1800.0,0,46,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,101584,2,1,2,0,1,,300.0,,32,1.0,1.0,5.0,2.0,1.3,1,1,2255.73329309303,0.0,19345.7126919198,0,1,1,2,100.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09304387120107563,14881.317455322924,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +1581,2,35.0,0.0,7,111,735.0,0.0,0.0,0,54,0.0,0.0,1253.322399378465,735.0,0.0,0.0,20,2,2,2,1,2,2,2,2,2,5.0,2,,5,101585,2,2,0,0,1,,0.0,466.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2099.76535269871,735.0,23998.206839030812,0,1,2,3,45.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.030627288319083578,23998.206839030812,6,3,6,6_0,6_2,6_0_0 +1582,1,67.0,200.0,1,111,1200.0,0.0,0.0,0,77,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,101586,2,3,0,0,2,,0.0,263.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1847.98662673215,1200.0,9266.387713206434,0,5,2,3,40.0,6,4,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.12950030121120043,9266.387713206434,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +1583,2,64.0,0.0,1,111,490.0,890.0,0.0,77,77,0.0,0.0,835.54826625231,1380.0,0.0,1689.6686026664122,50,1,2,2,1,2,2,2,2,0,,1,,1,101587,2,1,3,0,1,,400.0,384.0,41,0.0,2.0,4.0,2.0,1.5,2,2,191.588655401253,490.0,37083.72088641938,5,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03721309423686707,24722.480590946256,7,4,7,7_1,7_3,7_1_0 +1584,2,55.0,0.0,9,300,600.0,,,77,63,0.0,0.0,,810.0,290.9737373332694,,50,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,101588,2,2,0,0,2,,337.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,91.97885000668111,600.0,63904.349934727565,5,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012675193485691362,42602.899956485046,9,5,9,9_0,9_1,9_0_0 +1585,2,47.0,0.0,7,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,522.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,12.0,2,,5,101589,2,2,0,0,1,,264.0,364.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2044.20264379415,0.0,16131.104972287976,0,1,2,3,70.0,5,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03235984149236873,16131.104972287976,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +1586,2,55.0,0.0,7,111,1200.0,0.0,0.0,68,42,0.0,0.0,2046.2406520464733,1296.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,5,101590,1,2,0,1,2,1200.0,0.0,600.0,43,2.0,0.0,4.0,5.0,2.8,4,3,196.9464771605,1200.0,49299.874544301,1,1,2,3,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02628809935074806,17607.09805153607,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +1587,2,34.0,0.0,9,112,870.0,0.0,0.0,34,64,0.0,0.0,1483.5244727336933,870.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,101591,2,1,1,0,1,,380.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2402.34760780011,870.0,36187.875984377235,1,1,1,2,106.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024041200991613602,20104.375546876243,5,3,5,5_1,5_0,5_0_0 +1588,2,65.0,0.0,2,111,204.0,276.0,0.0,78,78,0.0,0.0,347.86091084790047,480.0,0.0,523.9871172313817,71,2,1,2,1,1,2,2,2,0,,2,,2,101592,2,2,0,1,1,,0.0,406.0,41,0.0,0.0,4.0,2.0,1.5,2,2,1689.57883183194,204.0,18455.47995101461,5,5,2,3,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.026008535203312956,12303.653300676408,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +1589,1,62.0,332.0,7,111,284.0,611.0,0.0,78,78,0.0,0.0,484.2769543176654,895.0,0.0,1159.9859732912112,50,0,0,0,0,0,0,0,0,0,,2,,5,101593,2,1,0,0,1,,0.0,367.0,41,0.0,3.0,2.0,2.0,1.5,2,2,1563.07341913486,284.0,14402.238719543193,7,5,2,3,50.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06214311659655558,9601.492479695462,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1590,2,73.0,0.0,5,221,260.0,643.0,0.0,77,78,0.0,0.0,443.3521412767359,903.0,0.0,1220.7381028252844,71,0,0,0,0,0,0,0,0,0,,1,,3,101594,2,1,1,0,1,,250.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2472.99372196636,260.0,32729.32700662958,5,5,0,1,70.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027589934856194577,21819.551337753055,6,3,6,6_1,6_1,6_0_0 +1591,2,69.0,0.0,1,111,568.0,,,77,77,0.0,0.0,,890.0,446.15973057767974,,71,0,0,0,0,0,0,0,0,0,,1,,1,101595,1,2,0,0,2,,389.0,,41,2.0,0.0,4.0,5.0,2.8,4,4,73.70124828659587,568.0,38076.577635372894,6,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02337394942693578,13598.777726918892,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +1592,2,69.0,0.0,2,112,900.0,,,78,77,0.0,0.0,,1032.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,,2,101596,2,2,0,0,2,,520.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,85.23734910129548,900.0,38014.046371362274,5,5,0,1,184.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027147859765264373,25342.69758090818,7,4,7,7_1,7_2,7_0_1 +1593,1,37.0,397.0,2,111,360.0,0.0,0.0,0,56,0.0,0.0,613.872195613942,360.0,0.0,0.0,20,2,1,2,2,1,1,2,2,0,,2,,2,101597,2,2,0,1,1,638.0,0.0,366.0,32,1.0,0.0,4.0,3.0,1.6,1,1,362.802904973673,360.0,10209.466666666665,0,4,2,3,82.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03526139138838464,6380.916666666665,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1594,1,75.0,270.0,2,221,800.0,0.0,0.0,86,78,0.0,185.40581878143135,1364.160434697649,1360.0,581.9474746665388,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101598,2,2,0,0,1,,340.0,400.0,41,0.0,6.0,4.0,2.0,1.5,2,2,2875.45251954235,800.0,12579.15798268074,6,5,2,3,45.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10811534459400843,8386.10532178716,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +1595,2,79.0,0.0,2,111,200.0,200.0,0.0,0,78,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,70,2,2,2,1,2,2,2,2,0,,2,,2,101599,1,3,0,1,2,,250.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,318.443376337278,200.0,16653.415332128327,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.024019097105463204,16653.415332128327,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +1596,2,48.0,0.0,1,111,2000.0,0.0,0.0,37,33,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,120.0,2,,1,101600,2,1,0,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1959.18979350146,2000.0,107619.58942370745,1,1,0,1,195.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018583977236020018,59788.66079094858,10,5,10,10_0,10_3,10_1_0 +1597,0,87.0,0.0,2,400,0.0,0.0,0.0,71,72,0.0,0.0,0.0,1032.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101601,2,2,3,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1590.82784196345,0.0,15865.929896545495,5,5,5,0,120.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06504503717898681,10577.286597696997,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +1598,2,59.0,0.0,1,400,540.0,0.0,0.0,85,78,0.0,1059.4618216081792,920.8082934209131,1340.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101602,2,1,2,0,1,,260.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,916.699902551849,540.0,50892.55383551037,6,5,0,1,140.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02632998148080776,33928.36922367358,9,5,9,9_1,9_0,9_1_0 +1599,2,64.0,0.0,2,300,530.0,0.0,0.0,77,75,1898.4291318658827,264.8654554020448,903.7562879871924,2555.0,34.63973063491302,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,101603,2,2,3,0,1,,120.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1695.60431399705,530.0,35300.9462122532,5,5,0,1,141.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07237766332487547,23533.964141502132,6,3,6,6_1,6_1,6_0_1 +1600,2,35.0,0.0,1,120,1000.0,0.0,0.0,45,37,0.0,26.486545540204478,1705.2005433720612,1020.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,101604,2,2,1,0,1,,260.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1699.78611635592,1000.0,56631.46087814803,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01801118996726394,26967.36232292763,7,4,7,7_1,7_0,7_1_0 +1601,2,56.0,0.0,7,111,480.0,,,67,69,0.0,0.0,,756.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,101605,2,3,0,0,2,,400.0,316.0,43,2.0,0.0,3.0,4.0,2.5,4,2,84.57328234324986,480.0,17222.157676348546,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04389693871158934,6888.863070539419,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1602,2,42.0,0.0,8,111,1450.0,0.0,0.0,0,34,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,1999.0,6,101606,2,1,0,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1093.51901132284,1450.0,27836.78589562556,0,1,0,1,110.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.052089347004240956,27836.78589562556,7,4,7,7_0,7_2,7_0_0 +1603,0,69.0,0.0,6,111,0.0,,,75,75,0.0,0.0,,256.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,101607,2,2,0,0,1,,507.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,35.12423786898838,0.0,64222.366132129966,5,5,5,0,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003986150237338035,42814.91075475331,9,5,9,9_1,9_2,9_0_0 +1604,2,35.0,0.0,2,221,1521.0,0.0,0.0,47,46,0.0,0.0,2593.610026468905,1611.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,101608,1,2,1,0,1,,271.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2364.52677380028,1521.0,48481.79045089043,1,1,1,2,70.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03322897081599865,23086.566881376395,6,3,6,6_1,6_1,6_0_1 +1606,2,49.0,0.0,1,111,800.0,2000.0,0.0,43,35,0.0,0.0,1364.160434697649,2800.0,0.0,3797.008095879578,12,0,0,0,0,0,0,0,0,2,50.0,1,,1,101610,2,1,1,0,1,,350.0,,43,2.0,0.0,8.0,5.0,2.8,4,3,1260.82484450203,800.0,105144.17597297367,1,1,1,2,130.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026630100755363893,37551.49141891917,9,5,9,9_1,9_3,9_1_0 +1607,1,36.0,36.0,2,111,858.0,50.0,0.0,0,64,0.0,0.0,1463.0620662132285,908.0,0.0,94.92520239698945,60,0,0,0,0,0,0,0,0,0,,2,,2,101611,1,3,0,0,2,,250.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1917.09811099655,858.0,14243.443186515062,0,4,1,2,24.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06374863072853384,14243.443186515062,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +1608,2,31.0,0.0,2,111,240.0,220.0,0.0,0,63,0.0,0.0,409.2481304092947,460.0,0.0,417.6708905467536,50,2,1,2,2,2,2,2,1,0,,2,,2,101612,1,3,0,1,1,529.0,240.0,300.0,22,2.0,0.0,3.0,2.0,1.5,2,2,347.213763377269,240.0,23429.722383206787,0,1,2,3,98.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01963318183956393,15619.814922137857,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +1609,2,50.0,0.0,1,120,2200.0,0.0,0.0,85,22,0.0,132.4327277010224,3751.441195418535,2400.0,138.5589225396521,0.0,50,2,2,2,2,1,2,2,2,1,2.0,1,,1,101613,2,2,4,0,1,,500.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1866.82595721023,2200.0,33795.86917491704,5,1,1,2,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.0710145961205595,22530.579449944693,6,3,6,6_1,6_0,6_1_0 +1610,2,56.0,0.0,1,400,1500.0,0.0,0.0,65,47,0.0,0.0,2557.8008150580918,1535.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,101614,2,2,2,0,2,,120.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,1530.02989649081,1500.0,42669.689794330036,1,1,0,1,55.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03597401357729044,28446.45986288669,8,4,8,8_1,8_0,8_1_0 +1611,2,82.0,0.0,7,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1044.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,101615,2,1,2,0,1,,79.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,2491.03627320381,0.0,14357.749789283112,0,5,0,1,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07271334403523738,14357.749789283112,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +1612,2,47.0,0.0,8,111,300.0,0.0,0.0,43,38,0.0,0.0,511.56016301161833,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,2000.0,6,101616,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,965.569902374897,300.0,58457.68057063161,4,1,0,1,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005131917603838633,25416.382856796354,7,4,7,7_0,7_4,7_0_0 +1613,2,45.0,0.0,7,211,390.0,,,0,85,0.0,0.0,,654.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,101617,1,1,0,0,2,,450.0,,21,1.0,3.0,5.0,3.0,2.0,3,3,85.0143740816544,390.0,10546.513647026382,0,7,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06201101348637585,5273.256823513191,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1614,1,73.0,254.0,6,111,680.0,0.0,0.0,0,77,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,101618,2,2,0,0,1,,186.0,343.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1032.43414317779,680.0,7820.107077339288,0,5,2,3,60.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08695533108113951,7820.107077339288,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1615,2,71.0,0.0,2,111,328.0,1963.0,0.0,75,75,0.0,0.0,559.3057782260361,2291.0,0.0,3726.763446105806,31,0,0,0,0,0,0,0,0,0,,1,,2,101619,2,1,2,0,2,,443.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1981.82256164334,328.0,43759.011328159235,5,5,0,1,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05235493057233963,29172.674218772823,8,4,8,8_1,8_2,8_0_1 +1616,2,88.0,0.0,1,111,193.0,719.0,0.0,0,77,0.0,0.0,329.1037048708078,912.0,0.0,1365.0244104687083,70,0,0,0,0,0,0,0,0,0,,2,,1,101620,2,2,0,0,1,,119.0,556.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2124.73900071393,193.0,21240.863331784592,0,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.042936107904582826,21240.863331784592,5,3,5,5_0,5_3,5_1_0 +1617,2,61.0,0.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,101621,2,3,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,479.126422620266,250.0,18111.76727419997,0,5,1,2,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013803180894231258,18111.76727419997,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +1618,2,57.0,0.0,1,111,326.0,651.0,0.0,0,65,0.0,0.0,555.8953771392919,977.0,0.0,1235.9261352088026,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,101622,2,1,2,0,1,,130.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1511.33955905159,326.0,19614.10171361852,0,1,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04981110092447653,19614.10171361852,5,3,5,5_1,5_3,5_1_0 +1619,2,71.0,0.0,2,211,300.0,,,78,78,0.0,0.0,,588.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,,2,101623,2,3,0,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,74.56633655941022,300.0,20719.58405885318,5,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028378948068156613,13813.056039235453,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +1620,1,48.0,134.0,2,111,450.0,451.0,0.0,0,43,0.0,0.0,767.3402445174275,901.0,0.0,856.2253256208448,33,2,2,2,2,2,2,2,1,0,,8,,2,101624,2,2,0,1,1,486.0,0.0,414.0,32,2.0,1.0,4.0,3.0,2.0,3,2,350.863074423346,450.0,24260.67624216044,0,4,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03713828876848179,12130.33812108022,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1621,1,48.0,230.0,6,111,300.0,0.0,0.0,56,63,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,101625,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1696.66847315527,300.0,21898.381774442292,1,4,1,2,69.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.013699642425182826,10427.80084497252,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +1622,2,84.0,0.0,2,111,220.0,70.0,0.0,0,74,0.0,0.0,375.14411954185346,747.0,0.0,132.89528335578524,41,0,0,0,0,0,0,0,0,0,,2,,2,101626,2,1,0,1,1,784.0,145.0,330.0,11,0.0,1.0,4.0,1.0,1.0,1,1,288.047231952114,220.0,21456.487860194993,0,5,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03481464463649697,21456.487860194993,6,3,6,6_0,6_3,6_0_1 +1623,2,65.0,0.0,1,300,750.0,0.0,0.0,0,77,1582.0242765549024,198.6490915515336,1278.9004075290459,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101627,2,2,4,0,1,,600.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,708.681799868904,750.0,24866.229079102708,0,5,1,2,160.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09651644374244635,24866.229079102708,7,4,7,7_1,7_0,7_1_0 +1624,2,51.0,0.0,2,111,385.0,1685.0,0.0,0,43,0.0,0.0,656.5022091982436,2070.0,0.0,3198.9793207785447,33,0,0,0,0,0,0,0,0,2,15.0,2,,2,101628,1,3,0,0,1,,0.0,428.0,32,1.0,0.0,3.0,2.0,1.5,2,1,914.124384868825,385.0,32635.876956790045,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.063427129681261,21757.251304526697,6,3,6,6_0,6_4,6_0_1 +1625,1,87.0,130.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,866.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101629,2,2,2,0,2,,110.0,200.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1721.20964017659,0.0,10301.872553930229,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08406238724722095,10301.872553930229,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +1626,2,62.0,0.0,2,111,160.0,790.0,0.0,0,75,0.0,0.0,272.8320869395298,950.0,0.0,1499.8181978724333,41,0,0,0,0,0,0,0,0,0,,2,,2,101630,2,3,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1475.06194419143,160.0,21084.587527578653,0,5,1,2,74.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04505660823373469,21084.587527578653,5,3,5,5_0,5_2,5_0_1 +1627,2,53.0,0.0,9,112,500.0,,,0,52,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,2,90.0,1,2010.0,6,101631,2,2,0,0,2,,1170.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,150.57232768727317,500.0,29459.160344314525,0,1,0,1,80.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016972649395165046,29459.160344314525,8,4,8,8_1,8_1,8_0_0 +1628,2,59.0,0.0,1,111,1698.0,0.0,0.0,0,37,0.0,0.0,2895.43052264576,1698.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,2,,1,101632,2,1,0,0,1,,0.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,823.251137109404,1698.0,127099.59001076594,0,1,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013359602496405939,84733.0600071773,10,5,10,10_0,10_4,10_1_0 +1629,1,47.0,396.0,6,111,390.0,,,0,85,0.0,0.0,,456.0,91.44888887617039,,33,0,0,0,0,0,0,0,0,0,,2,,4,101633,2,2,0,0,2,,480.0,900.0,31,0.0,0.0,4.0,4.0,2.3,3,2,154.17207326674333,390.0,28187.344131538503,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01617747304861499,12255.367013712394,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1630,2,43.0,0.0,7,111,677.0,,,0,46,0.0,0.0,,677.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,2,,5,101634,2,1,0,0,2,,706.0,690.0,12,1.0,0.0,2.0,1.0,1.0,1,1,101.68920165005693,677.0,27535.97788621665,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024586016258346784,27535.97788621665,7,4,7,7_0,7_2,7_0_0 +1631,2,94.0,0.0,7,111,1050.0,0.0,0.0,0,86,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,101635,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,2919.84618467799,1050.0,15636.868038069893,0,5,0,1,49.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06714899668166571,15636.868038069893,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +1632,2,84.0,0.0,5,111,1560.0,0.0,0.0,0,86,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,101636,2,2,1,0,1,,286.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,3086.81058120094,1560.0,15211.543962672917,0,6,0,1,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10255369236863991,15211.543962672917,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +1633,2,75.0,0.0,5,111,300.0,0.0,0.0,77,74,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,101637,2,1,0,1,1,578.0,0.0,404.0,41,0.0,1.0,3.0,2.0,1.5,2,2,424.355481131378,300.0,26868.806635621077,5,5,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011165363764324305,17912.537757080718,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +1634,2,29.0,0.0,1,111,426.0,0.0,0.0,35,38,0.0,0.0,726.415431476498,426.0,0.0,0.0,12,2,2,2,2,1,2,1,2,1,10.0,2,,1,101638,1,2,0,0,1,,0.0,847.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1164.72948734147,426.0,54844.987290014455,1,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.007767346134066134,36563.324860009634,9,5,9,9_0,9_4,9_1_0 +1635,2,53.0,0.0,1,111,732.0,2220.0,0.0,56,35,0.0,0.0,1248.206797748349,3012.0,83.13535352379125,4214.678986426332,20,0,0,0,0,0,0,0,0,0,,1,,1,101639,1,3,3,0,1,,167.0,,43,2.0,3.0,5.0,3.0,1.8,2,2,1282.07764829556,732.0,46540.91325075769,1,1,0,1,150.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06471725176022335,25856.0629170876,7,4,7,7_1,7_2,7_1_0 +1636,2,83.0,0.0,2,120,267.0,976.0,0.0,78,78,0.0,0.0,455.2885450803403,1243.0,0.0,1852.939950789234,71,0,0,0,0,0,0,0,0,0,,1,,2,101640,2,1,3,0,1,,252.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1568.34811254249,267.0,21890.369173285715,5,5,0,1,83.0,0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.056782961957394316,14593.579448857143,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +1637,2,53.0,0.0,5,300,1654.0,0.0,0.0,77,37,0.0,0.0,2820.4016987373893,1774.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,101641,2,1,1,0,1,,636.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,866.550680691495,1654.0,33817.453639910374,6,1,0,1,81.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05245811878356142,16908.726819955187,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1638,2,51.0,0.0,1,111,0.0,0.0,434.0,0,35,0.0,0.0,273.55813803999877,434.0,0.0,519.3817520430715,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,101642,2,3,0,0,2,,0.0,609.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1405.33863870585,0.0,39647.760514998525,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010946393802893866,39647.760514998525,9,5,9,9_0,9_4,9_1_0 +1639,2,26.0,0.0,2,111,480.0,,,0,43,0.0,0.0,,710.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,3,45.0,1,,2,101643,1,1,0,0,1,,600.0,650.0,12,1.0,0.0,3.0,1.0,1.0,1,1,58.59270517042402,480.0,17704.649178396237,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04010246081952101,17704.649178396237,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1640,2,61.0,0.0,6,112,500.0,0.0,0.0,72,78,0.0,662.163638505112,852.6002716860306,1120.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,7,,4,101644,2,1,0,0,1,,0.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1373.57449676654,500.0,12246.247038915319,7,7,0,1,18.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09145659045101227,8164.164692610212,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +1641,2,51.0,0.0,2,111,497.0,0.0,0.0,54,64,2995.2992969439483,0.0,847.4846700559144,3457.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,101645,2,2,1,0,2,,380.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,1673.30299846741,497.0,73265.64402072798,1,1,0,1,80.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04718446205184467,36632.82201036399,9,5,9,9_1,9_3,9_0_1 +1642,2,66.0,0.0,1,111,540.0,2100.0,0.0,74,34,0.0,0.0,920.8082934209131,2640.0,0.0,3986.858500673557,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,101646,2,2,2,0,1,,450.0,,42,1.0,3.0,9.0,2.0,1.5,2,2,365.569242470313,540.0,144752.054676939,5,1,0,1,280.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01823808308553556,96501.369784626,10,5,10,10_1,10_3,10_1_0 +1643,2,53.0,0.0,2,111,0.0,0.0,0.0,21,45,4746.072829664707,185.40581878143135,0.0,5387.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,,2,101647,1,1,3,0,1,,505.0,654.0,43,2.0,1.0,5.0,3.0,2.0,3,3,1743.13908347896,0.0,38712.00017546659,1,1,2,3,250.0,6,5,7,1,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1391558166868879,19356.000087733293,5,3,5,5_1,5_2,5_0_1 +1644,0,83.0,0.0,1,112,112.0,0.0,0.0,0,78,1054.6828510366015,0.0,190.98246085767084,1202.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,101648,2,1,0,0,1,,238.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1697.90351952198,112.0,13214.26702115117,0,5,0,1,60.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09096229083883663,13214.26702115117,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +1645,2,42.0,0.0,1,111,0.0,0.0,0.0,52,31,0.0,0.0,0.0,4680.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,101649,2,2,2,0,1,,601.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,793.710111674034,0.0,82060.88081535859,4,1,0,1,190.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05703082825213944,34192.03367306608,9,5,9,9_1,9_4,9_1_0 +1646,2,50.0,0.0,2,112,841.0,998.0,0.0,85,37,0.0,0.0,1434.0736569759035,1839.0,0.0,1894.7070398439093,31,0,0,0,0,0,0,0,0,3,180.0,1,,2,101650,2,1,2,0,1,,536.0,,42,1.0,0.0,7.0,6.0,3.3,5,5,861.993292047103,841.0,49569.93785576925,6,1,1,2,150.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0370990983557581,15021.193289627045,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +1647,2,33.0,0.0,7,111,315.0,,,34,31,0.0,0.0,,315.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,101651,2,1,0,0,2,,80.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,117.45591907362167,315.0,74118.74124079198,1,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004249937259142721,41177.07846710665,9,5,9,9_1,9_2,9_0_0 +1648,2,44.0,0.0,5,111,150.0,0.0,0.0,38,54,0.0,0.0,255.78008150580916,150.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,55.0,1,,3,101652,1,1,2,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,892.48436601144,150.0,92633.48258359519,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016192849045120977,44111.18218266438,10,5,10,10_1,10_4,10_0_0 +1649,2,62.0,0.0,5,112,705.0,788.0,0.0,77,74,0.0,0.0,1202.1663830773032,1493.0,0.0,1496.0211897765537,60,0,0,0,0,0,0,0,0,0,,1,,3,101653,2,1,2,0,1,,493.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1139.47225866726,705.0,47345.05893538515,5,5,0,1,84.0,8,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031534441683504784,31563.372623590098,8,4,8,8_1,8_1,8_0_0 +1650,2,78.0,0.0,7,112,1200.0,0.0,0.0,77,77,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,101654,2,1,2,0,1,,500.0,568.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1954.67333188374,1200.0,28656.33159651444,5,5,2,3,87.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04187556233282699,19104.22106434296,5,3,5,5_1,5_0,5_0_0 +1652,2,34.0,0.0,2,111,450.0,,,0,56,0.0,0.0,,700.0,346.39730634913025,,50,0,0,0,0,0,0,0,0,0,,2,,2,101656,1,1,0,0,2,,500.0,100.0,32,1.0,0.0,2.0,4.0,2.3,3,2,78.98433321222618,450.0,40667.95761579503,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017212568347128577,17681.72070251958,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +1653,2,76.0,0.0,5,111,650.0,950.0,0.0,0,86,0.0,0.0,1108.3803531918397,1600.0,0.0,1803.5788455427996,20,0,0,0,0,0,0,0,0,0,,2,,3,101657,2,1,0,1,1,,412.0,,21,1.0,0.0,6.0,2.0,1.5,2,2,124.645532763224,650.0,61307.796480302815,0,5,0,1,218.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02609782265643903,40871.86432020188,9,5,9,9_0,9_3,9_0_0 +1654,0,79.0,0.0,6,211,216.0,,,0,86,0.0,0.0,,348.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,101658,2,1,0,0,2,,180.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,102.81427528991169,216.0,9685.818181818182,0,5,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03592881814086199,9685.818181818182,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1655,2,65.0,0.0,2,111,370.0,1300.0,0.0,0,72,0.0,0.0,630.9242010476627,1670.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,2,101659,2,1,1,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1190.32175024028,370.0,18781.451739754328,0,5,0,1,85.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08891751410595934,18781.451739754328,5,3,5,5_1,5_2,5_0_1 +1656,2,83.0,0.0,2,211,130.0,50.0,0.0,0,75,0.0,0.0,221.67607063836795,180.0,0.0,94.92520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,101660,1,1,0,1,2,,40.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,3331.95932091937,130.0,19494.88330094037,0,5,0,1,47.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009233191972547862,19494.88330094037,5,3,5,5_0,5_1,5_0_1 +1657,2,74.0,0.0,2,111,350.0,1702.0,0.0,77,74,0.0,0.0,596.8201901802214,2052.0,0.0,3231.253889593521,20,0,0,0,0,0,0,0,0,0,,1,,2,101661,2,3,2,0,1,,448.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,335.862758218447,350.0,44605.04796024983,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04600376176769628,29736.698640166553,8,4,8,8_1,8_3,8_0_1 +1658,2,43.0,0.0,1,400,2220.0,0.0,0.0,21,35,0.0,0.0,3785.545206285976,2320.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,101662,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1162.6387815468,2220.0,49964.30287852386,1,1,1,2,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04643315059634716,27757.946043624364,7,4,7,7_1,7_0,7_1_0 +1659,2,49.0,0.0,7,111,353.0,253.0,0.0,0,52,0.0,0.0,601.9357918103376,606.0,0.0,480.3215241287666,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,101663,2,2,0,0,1,,120.0,325.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1215.55568908739,353.0,18346.575594545404,0,1,2,3,47.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03303068721882731,18346.575594545404,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +1660,2,45.0,0.0,9,111,270.0,,,0,52,0.0,0.0,,320.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,101664,2,1,0,0,1,,90.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,246.71583997320118,270.0,20640.700302512756,0,1,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015503349949858235,20640.700302512756,5,3,5,5_1,5_2,5_0_0 +1661,2,74.0,0.0,5,120,650.0,0.0,0.0,75,75,1792.9608467622227,0.0,1108.3803531918397,2350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,101665,1,1,2,0,1,,330.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1264.87389500286,650.0,35303.24738470833,5,5,0,1,105.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06656611428380685,23535.49825647222,6,3,6,6_1,6_0,6_0_0 +1662,1,46.0,329.0,9,111,324.0,,,0,22,0.0,0.0,,368.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,101666,2,1,0,0,2,,180.0,563.0,32,1.0,0.0,4.0,3.0,1.6,1,1,115.13635879950921,324.0,19264.152937828134,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.019102838374864397,12040.095586142583,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +1663,2,55.0,0.0,2,112,2810.0,0.0,0.0,85,78,0.0,0.0,4791.6135268754915,2938.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101667,2,1,2,0,1,,580.0,,41,1.0,2.0,6.0,4.0,2.5,4,3,635.692352358449,2810.0,44421.46029313535,7,7,0,1,98.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06613920345284152,17768.58411725414,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +1664,2,74.0,0.0,2,111,1050.0,,,0,78,0.0,0.0,,1204.0,213.38074071106422,,71,0,0,0,0,0,0,0,0,0,,1,,2,101668,2,1,0,0,2,,500.0,,21,1.0,8.0,4.0,2.0,1.5,2,2,92.7729901505849,1050.0,9514.388965517242,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12654517324902592,6342.925977011495,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +1665,0,89.0,0.0,1,111,1200.0,1200.0,0.0,74,74,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,0,,2,,1,101669,2,2,0,0,1,,0.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,757.611435777345,1200.0,142046.07795741712,5,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016895925846819065,94697.38530494475,10,5,10,10_0,10_4,10_1_0 +1666,2,58.0,0.0,5,111,1500.0,0.0,0.0,56,38,0.0,132.4327277010224,2557.8008150580918,1725.0,173.19865317456512,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,101670,2,2,1,0,1,,600.0,500.0,43,2.0,1.0,6.0,4.0,2.1,3,2,659.24164015792,1500.0,29605.814089744556,1,1,2,3,110.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05826558238766822,14098.006709402169,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1667,2,48.0,0.0,1,111,648.0,1296.0,0.0,0,52,0.0,0.0,1104.9699521050957,1944.0,0.0,2460.4612461299666,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,101671,1,1,2,0,2,,400.0,568.0,12,1.0,1.0,2.0,1.0,1.0,1,1,289.791659804501,648.0,17862.447978300715,0,1,2,3,75.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10883166754979885,17862.447978300715,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +1668,0,39.0,0.0,1,111,720.0,0.0,0.0,0,35,0.0,0.0,1227.744391227884,927.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,101672,2,3,0,0,1,,100.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1327.42976387423,720.0,9442.935293708426,0,1,5,0,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.098168627780139,9442.935293708426,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +1669,2,63.0,0.0,2,111,366.0,0.0,0.0,0,75,0.0,0.0,624.1033988741744,366.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101673,2,1,0,1,1,601.0,0.0,330.0,11,0.0,0.0,3.0,1.0,1.0,1,1,707.584370879632,366.0,18925.931320214317,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019338546347205884,18925.931320214317,5,3,5,5_0,5_4,5_0_1 +1670,2,47.0,0.0,1,112,1360.0,0.0,0.0,56,46,0.0,0.0,2319.072738986003,1480.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,101674,2,1,2,0,1,,450.0,443.0,43,4.0,1.0,5.0,4.0,2.5,4,4,590.026480527131,1360.0,42601.488988358884,1,1,2,3,80.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03474056975812322,17040.595595343555,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +1671,1,63.0,169.0,2,111,252.0,108.0,0.0,0,77,0.0,0.0,429.7105369297594,360.0,0.0,205.0384371774972,70,2,2,2,2,2,2,2,1,0,,2,,2,101675,2,1,0,1,1,,85.0,300.0,11,0.0,2.0,3.0,1.0,1.0,1,1,311.82466653444,252.0,9394.941991446922,0,5,2,3,40.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.038318490984589476,9394.941991446922,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1672,2,63.0,0.0,2,111,2160.0,0.0,0.0,0,78,0.0,0.0,3683.2331736836522,2216.0,77.59299662220518,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101676,2,2,1,0,1,,250.0,410.0,31,0.0,1.0,4.0,2.0,1.3,2,1,686.181305945287,2160.0,22398.119941047167,0,5,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09893687531956294,17229.323031574742,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +1673,2,76.0,0.0,1,120,408.0,0.0,0.0,77,72,1792.9608467622227,0.0,695.7218216958009,2220.0,155.18599324441035,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,101677,2,3,4,0,1,,202.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1536.25193943972,408.0,23984.173353667786,5,5,0,1,75.0,0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09256103878437427,15989.44890244519,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +1674,2,67.0,0.0,2,111,1600.0,0.0,0.0,75,74,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,101678,2,2,1,0,1,,450.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,620.27020210439,1600.0,85079.7614303641,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0188058825401099,56719.840953576066,10,5,10,10_1,10_4,10_0_1 +1675,2,63.0,0.0,8,112,720.0,0.0,0.0,0,78,0.0,0.0,1227.744391227884,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,101679,2,2,1,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1250.50105446996,720.0,19910.22876468718,0,5,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03616231679251186,19910.22876468718,5,3,5,5_1,5_0,5_0_0 +1676,2,48.0,0.0,2,111,300.0,,,0,52,0.0,0.0,,360.0,83.13535352379125,,50,0,0,0,0,0,0,0,0,2,15.0,8,,2,101680,2,1,0,0,2,,160.0,434.0,12,1.0,2.0,4.0,1.0,1.0,1,1,48.763971556311176,300.0,33190.66657701995,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010846422718405161,33190.66657701995,8,4,8,8_0,8_2,8_0_1 +1677,2,54.0,0.0,5,111,560.0,1285.0,0.0,77,65,0.0,0.0,954.9123042883542,1845.0,0.0,2439.577701602629,50,0,0,0,0,0,0,0,0,0,,1,,3,101681,1,3,3,0,2,,520.0,410.0,42,2.0,3.0,5.0,3.0,2.0,3,3,337.079267206864,560.0,64818.18836547759,5,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02846423274894634,32409.094182738794,8,4,8,8_1,8_4,8_0_0 +1678,1,64.0,55.0,2,111,230.0,1170.0,0.0,78,78,0.0,0.0,392.1961249755741,1400.0,0.0,2221.249736089553,71,1,2,2,2,1,2,2,2,0,,1,,2,101682,1,3,3,0,1,,260.0,273.0,41,0.0,5.0,2.0,2.0,1.5,2,2,325.417240614818,230.0,32193.092767693346,5,5,2,3,45.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.04348758940628837,21462.061845128897,6,3,6,6_1,6_3,6_0_1 +1679,2,26.0,0.0,5,400,360.0,550.0,0.0,0,52,0.0,0.0,613.872195613942,910.0,0.0,1044.177226366884,50,0,0,0,0,0,0,0,0,2,2.0,2,,3,101683,2,1,0,1,1,,150.0,292.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2080.48013294376,360.0,15693.475776879732,0,1,2,3,63.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.057985879797300806,15693.475776879732,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +1680,2,68.0,0.0,7,112,600.0,0.0,0.0,77,77,0.0,0.0,1023.1203260232367,2600.0,2771.178450793042,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,101684,2,1,2,0,1,,600.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1247.09101995865,600.0,38744.898115263255,5,5,0,1,92.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06710560942153439,25829.93207684217,7,4,7,7_1,7_0,7_0_0 +1681,2,54.0,0.0,9,111,360.0,,,85,33,0.0,0.0,,444.0,116.38949493330776,,41,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,101685,2,1,0,0,1,,280.0,2000.0,42,1.0,2.0,5.0,3.0,1.8,2,2,105.17559344351955,360.0,71617.50105647965,7,1,2,3,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006199601961116301,39787.50058693314,9,5,9,9_1,9_2,9_0_0 +1682,1,84.0,172.0,2,111,275.0,0.0,0.0,0,86,0.0,0.0,468.93014942731685,275.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,101686,2,1,0,1,1,708.0,0.0,215.0,11,0.0,6.0,2.0,1.0,1.0,1,1,1857.85016043618,275.0,12512.926310231964,0,6,2,3,55.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021977273195889387,12512.926310231964,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1683,1,38.0,333.0,5,111,0.0,0.0,1260.0,0,56,0.0,0.0,794.2010459225771,1260.0,0.0,1507.882505931498,71,2,1,2,1,2,2,2,2,3,80.0,2,,3,101687,1,2,0,1,1,652.0,0.0,379.0,32,2.0,2.0,3.0,3.0,1.8,2,2,289.240838693107,0.0,28374.76737895138,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04440565038551392,15763.759654972988,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +1684,2,59.0,0.0,6,111,900.0,,,0,68,0.0,0.0,,950.0,69.27946126982604,,60,0,0,0,0,0,0,0,0,2,20.0,1,,4,101688,2,1,0,0,2,,624.0,,22,2.0,3.0,5.0,2.0,1.5,2,2,90.09539993528003,900.0,26208.036267906078,0,1,0,1,83.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03624842358614079,17472.024178604053,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +1685,1,30.0,457.0,2,111,0.0,,,67,81,0.0,0.0,,264.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,2,,2,101689,1,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,5.0,2.4,2,2,152.34748316911714,0.0,15636.130434782608,4,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01688397273872386,6515.054347826087,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1687,2,46.0,0.0,5,112,1500.0,0.0,0.0,54,47,0.0,0.0,2557.8008150580918,1580.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,101691,1,2,3,0,1,,240.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,858.124452760832,1500.0,47953.67388908482,1,1,1,2,113.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03294846613117662,26640.929938380454,7,4,7,7_1,7_1,7_0_0 +1688,2,46.0,0.0,7,111,0.0,,,69,85,0.0,0.0,,144.0,199.524848457099,,43,0,0,0,0,0,0,0,0,0,,7,,5,101692,1,3,0,0,2,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,84.13366488254478,0.0,20752.506280208818,4,6,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0069389209214373035,13835.004186805878,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +1689,2,45.0,0.0,6,211,400.0,,,0,52,0.0,0.0,,446.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,4,101693,1,2,0,0,1,,400.0,,22,1.0,5.0,5.0,2.0,1.5,2,2,30.34109799076782,400.0,28269.140343090046,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0157769212146919,18846.093562060032,5,3,5,5_1,5_2,5_0_0 +1690,2,41.0,0.0,1,111,850.0,0.0,0.0,0,34,0.0,0.0,1449.420461866252,850.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,101694,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,894.538802151962,850.0,39838.96198426487,0,1,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021335897263983012,39838.96198426487,9,5,9,9_0,9_4,9_1_0 +1691,2,45.0,0.0,5,111,2500.0,,,46,37,0.0,0.0,,2550.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,101695,2,1,0,0,1,,600.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,62.52443385276328,2500.0,124639.0,1,1,1,2,260.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020459085839905647,83092.66666666667,10,5,10,10_1,10_2,10_0_0 +1692,2,53.0,0.0,6,111,600.0,0.0,0.0,52,52,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,4,101696,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,836.723737085619,600.0,49084.938654560494,1,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01222370886969121,19633.975461824197,5,3,5,5_0,5_4,5_0_0 +1694,2,59.0,0.0,5,112,1800.0,0.0,0.0,78,54,0.0,0.0,3069.36097806971,1870.0,96.99124577775646,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,3,101698,2,1,1,0,1,,200.0,,42,1.0,5.0,4.0,2.0,1.5,2,2,1316.49623996756,1800.0,35997.230029856764,7,1,0,1,90.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.051948441545335226,23998.15335323784,6,3,6,6_1,6_0,6_0_0 +1695,2,45.0,0.0,2,111,708.0,0.0,0.0,54,35,0.0,0.0,1207.2819847074193,1647.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,2,101699,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,6.0,3.3,5,3,944.186654673735,708.0,109082.23956217097,1,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015098699903949984,33055.22410974878,8,4,8,8_0,8_4,8_0_1 +1696,2,83.0,0.0,2,111,180.0,1915.0,0.0,0,77,0.0,0.0,306.936097806971,2095.0,0.0,3635.635251804696,70,0,0,0,0,0,0,0,0,0,,1,,2,101700,2,1,1,0,1,,190.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,609.389499309569,180.0,13814.540488169518,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15165180497998568,13814.540488169518,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +1697,2,68.0,0.0,2,120,450.0,,,0,71,0.0,0.0,,582.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,101701,2,2,0,0,2,,120.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,104.65654385160293,450.0,7769.625860076905,0,5,0,1,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07490708181851105,7769.625860076905,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +1698,1,35.0,270.0,5,111,200.0,203.0,0.0,0,52,0.0,0.0,341.04010867441224,403.0,0.0,385.39632173177716,43,2,1,2,2,1,2,1,2,0,,2,,3,101702,1,3,0,1,1,399.0,0.0,348.0,32,1.0,1.0,3.0,2.0,1.3,1,1,409.885749211003,200.0,6608.370510396975,0,4,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.060983263478637965,5083.361931074596,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1699,0,35.0,0.0,1,111,1200.0,0.0,0.0,0,53,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,,1,101703,2,1,0,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1928.11058817046,1200.0,53392.79277283726,0,1,5,0,62.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022474943483579698,53392.79277283726,10,5,10,10_0,10_3,10_1_0 +1700,1,41.0,325.0,1,112,950.0,0.0,0.0,0,52,0.0,397.2981831030672,1619.9405162034582,1295.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,101704,2,2,1,0,1,,500.0,,32,1.0,0.0,4.0,4.0,1.9,1,1,769.062658545353,950.0,16367.583269285231,0,1,1,2,82.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0791198052085152,8614.517510150123,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +1701,2,65.0,0.0,9,111,360.0,,,78,22,0.0,0.0,,860.0,692.7946126982605,,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,101705,2,3,0,0,2,,300.0,,42,3.0,1.0,4.0,4.0,2.5,4,4,134.69237645486248,360.0,16210.0,5,1,1,2,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05305367057371992,6484.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1702,2,55.0,0.0,2,111,500.0,0.0,0.0,85,33,0.0,0.0,852.6002716860306,500.0,0.0,0.0,12,2,2,2,2,1,2,2,2,3,120.0,2,,2,101706,2,3,0,1,1,1500.0,0.0,2267.0,42,1.0,2.0,6.0,4.0,2.5,4,4,1055.75245379907,500.0,29204.481159558953,6,1,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.017120660259918517,11681.792463823582,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +1704,1,26.0,147.0,9,111,0.0,0.0,0.0,54,63,0.0,0.0,0.0,1157.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,101708,2,2,0,0,1,,245.0,520.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1107.60911875304,0.0,39873.03187565785,1,1,2,3,67.0,4,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.029017106188665296,26582.021250438567,7,4,7,7_0,7_1,7_0_0 +1705,2,81.0,0.0,2,111,600.0,,,0,75,0.0,0.0,,680.0,110.84713803172167,,33,0,0,0,0,0,0,0,0,0,,1,,2,101709,2,1,0,0,2,,480.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,139.17425594222215,600.0,34528.53654724336,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019693855228112435,34528.53654724336,9,5,9,9_1,9_2,9_0_1 +1708,2,59.0,0.0,2,111,360.0,300.0,0.0,77,67,0.0,0.0,613.872195613942,660.0,0.0,569.5512143819367,60,0,0,0,0,0,0,0,0,3,75.0,2,,2,101712,2,3,0,1,1,588.0,0.0,337.0,42,1.0,0.0,3.0,2.0,1.5,2,2,778.727551758028,360.0,36944.931434322796,5,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017864426170969772,24629.954289548532,7,4,7,7_0,7_4,7_0_1 +1709,2,29.0,0.0,1,111,600.0,0.0,0.0,0,34,0.0,0.0,1023.1203260232367,650.0,69.27946126982604,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,1,101713,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,1,1,858.940128378981,600.0,21810.37191787082,0,1,2,3,37.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029802334524493268,21810.37191787082,6,3,6,6_0,6_2,6_1_0 +1710,2,63.0,0.0,1,300,920.0,0.0,0.0,68,78,0.0,0.0,1568.7844999022964,984.0,88.67771042537734,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,101714,2,2,5,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1039.04454268758,920.0,16834.523923237644,4,5,1,2,79.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058451311393589764,11223.015948825096,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1711,2,41.0,0.0,2,111,350.0,650.0,0.0,55,48,0.0,0.0,596.8201901802214,1000.0,0.0,1234.027631160863,43,2,2,2,2,1,2,2,2,0,,2,,2,101715,1,3,0,0,1,,380.0,331.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,2,393.740637296151,350.0,54464.621094730595,1,1,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.018360542677065446,17569.23261120342,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +1712,2,41.0,0.0,2,111,1000.0,2200.0,0.0,0,38,0.0,0.0,1705.2005433720612,3230.0,41.567676761895626,4176.708905467536,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,101716,2,2,3,0,1,,274.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,578.785198470868,1000.0,61534.323911276406,0,1,1,2,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05249102931003504,41022.882607517604,9,5,9,9_1,9_4,9_0_1 +1713,2,70.0,0.0,2,111,64.0,64.0,0.0,0,75,0.0,0.0,109.13283477581192,128.0,0.0,121.5042590681465,50,0,0,0,0,0,0,0,0,0,,2,,2,101717,2,1,0,1,2,,40.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,535.69092047355,64.0,26447.554743298806,0,5,0,1,84.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004839766898769052,26447.554743298806,7,4,7,7_0,7_2,7_0_1 +1714,1,25.0,240.0,2,211,300.0,,,0,64,0.0,0.0,,564.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,,2,101718,2,3,0,0,1,,160.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,124.44059036806946,300.0,3960.4710805997775,0,4,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1424073016876031,3960.4710805997775,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +1715,2,79.0,0.0,1,300,3100.0,0.0,0.0,0,71,0.0,0.0,5286.121684453389,3240.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101719,2,1,1,0,1,,500.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1056.76875976249,3100.0,9217.717314321106,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3514970018625082,9217.717314321106,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +1717,2,56.0,0.0,2,111,600.0,90.0,0.0,0,62,0.0,0.0,1023.1203260232367,690.0,0.0,170.865364314581,70,0,0,0,0,0,0,0,0,1,15.0,2,,2,101721,1,2,0,1,1,,500.0,418.0,12,1.0,0.0,2.0,1.0,1.0,1,1,851.85490282288,600.0,17303.913251756436,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03987537327315031,17303.913251756436,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +1718,2,87.0,0.0,1,111,0.0,0.0,3000.0,74,74,0.0,0.0,1890.9548712442313,3000.0,0.0,3590.196442694042,71,0,0,0,0,0,0,0,0,0,,1,,1,101722,2,1,2,0,2,,333.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1006.70978525067,0.0,51416.0032047835,5,5,0,1,110.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05834759244220863,34277.335469855665,9,5,9,9_1,9_3,9_1_0 +1719,2,77.0,0.0,2,221,660.0,,,78,78,0.0,0.0,,910.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,2,101723,2,2,0,0,2,,360.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,102.27255104610352,660.0,5431.52865738019,5,5,0,1,32.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1675403109147773,3621.019104920127,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +1720,1,30.0,340.0,1,211,520.0,0.0,0.0,68,85,0.0,0.0,886.7042825534718,520.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,101724,1,3,0,1,1,,160.0,34.0,42,1.0,0.0,4.0,5.0,2.4,2,2,654.702223385555,520.0,9380.359680495067,4,6,2,3,80.0,1,3,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.055434974533146684,3908.483200206278,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +1721,2,49.0,0.0,7,111,500.0,,,0,63,0.0,0.0,,650.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,25.0,2,,5,101725,2,1,0,0,2,,400.0,386.0,12,1.0,0.0,3.0,1.0,1.0,1,1,181.17757052669558,500.0,27799.623840264692,0,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02338161133887526,27799.623840264692,7,4,7,7_0,7_2,7_0_0 +1722,2,35.0,0.0,2,111,0.0,0.0,0.0,54,45,0.0,0.0,0.0,2258.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,101726,1,3,0,0,2,,0.0,620.0,43,2.0,0.0,4.0,4.0,2.1,2,2,657.991670609804,0.0,56982.175786915235,4,1,2,3,90.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03962642648893906,27134.369422340587,7,4,7,7_0,7_2,7_0_1 +1723,2,40.0,0.0,7,111,324.0,,,0,85,0.0,0.0,,588.0,365.79555550468154,,71,2,2,2,2,1,2,2,2,0,,1,,5,101727,2,1,0,0,2,,800.0,,31,1.0,1.0,7.0,6.0,2.8999999999999995,3,3,130.28456171805274,324.0,9623.772727272726,0,6,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.061098699716138544,3318.5423197492164,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1724,2,60.0,0.0,2,111,250.0,60.0,0.0,0,52,0.0,0.0,426.3001358430153,1206.0,0.0,113.91024287638734,41,0,0,0,0,0,0,0,0,3,10.0,2,,2,101728,2,2,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1290.36663057917,250.0,37507.151519054365,0,1,0,1,23.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032153868026670286,37507.151519054365,9,5,9,9_0,9_4,9_0_1 +1725,2,75.0,0.0,6,111,480.0,,,0,75,0.0,0.0,,660.0,249.40606057137379,,41,0,0,0,0,0,0,0,0,0,,1,,4,101729,2,2,0,0,1,,260.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,100.38879685985447,480.0,27592.0,0,5,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023919976804870978,18394.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1726,2,67.0,0.0,1,111,300.0,900.0,0.0,78,78,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,50,1,2,2,1,2,2,2,2,0,,1,,1,101730,2,1,2,0,1,,275.0,418.0,41,0.0,4.0,3.0,2.0,1.5,2,2,265.564372514215,300.0,24449.025276913144,6,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0490817112914985,16299.350184608762,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +1727,2,30.0,0.0,1,111,270.0,248.0,0.0,42,42,0.0,0.0,460.40414671045653,518.0,0.0,470.8290038890677,20,0,0,0,0,0,0,0,0,2,50.0,1,,1,101731,2,1,2,0,1,,15.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,417.206785703008,270.0,48011.62656448323,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010789053341158667,26673.12586915735,7,4,7,7_1,7_4,7_1_0 +1728,2,72.0,0.0,1,111,1250.0,3220.0,0.0,72,74,0.0,0.0,2131.5006792150766,4470.0,0.0,6113.18303436612,71,0,0,0,0,0,0,0,0,0,,1,,1,101732,1,1,2,0,1,,610.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,411.516331025647,1250.0,71456.0080117528,5,5,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06255597149038598,47637.338674501865,10,5,10,10_1,10_4,10_1_0 +1729,2,42.0,0.0,9,111,1000.0,0.0,0.0,37,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,101733,2,1,1,0,1,,346.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1250.05535571329,1000.0,141645.93124378487,1,1,1,2,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007059856864359299,67450.44344942136,10,5,10,10_1,10_4,10_0_0 +1730,2,40.0,0.0,7,120,790.0,0.0,0.0,67,47,738.277995725621,132.4327277010224,1347.1084292639284,1710.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,5,101734,2,1,2,0,1,,370.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,507.222832846124,790.0,51982.68086071373,1,1,0,1,107.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032895571595891744,24753.657552720822,7,4,7,7_1,7_0,7_0_0 +1731,2,63.0,0.0,2,112,600.0,0.0,0.0,77,74,0.0,278.10872817214704,1023.1203260232367,2310.0,2078.3838380947814,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,101735,2,1,2,0,1,,450.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1420.72816079353,600.0,55303.37682666247,7,5,0,1,125.0,9,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04176960128927099,36868.917884441646,9,5,9,9_1,9_1,9_0_1 +1732,2,33.0,0.0,9,112,1500.0,0.0,0.0,52,69,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,101736,1,1,1,0,1,,400.0,690.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1111.27945131679,1500.0,34130.43130754898,1,1,2,3,64.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04394904906074919,18961.350726416098,5,3,5,5_1,5_1,5_0_0 +1733,2,60.0,0.0,2,111,853.0,156.0,0.0,78,45,0.0,0.0,1454.5360634963681,1009.0,0.0,296.1666314786071,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,101737,2,1,0,1,1,650.0,0.0,393.0,42,1.0,3.0,4.0,2.0,1.5,2,2,687.079526288281,853.0,48179.97290951446,6,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02094231148479424,32119.981939676305,8,4,8,8_0,8_4,8_0_1 +1734,1,52.0,380.0,5,111,0.0,,,85,45,0.0,0.0,,658.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,3,101738,2,2,0,0,2,,576.0,800.0,42,1.0,2.0,4.0,6.0,2.6999999999999997,2,2,117.83953555342784,0.0,42136.10866867636,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01561605997302622,15605.966173583838,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +1735,2,58.0,0.0,2,111,585.0,1100.0,0.0,52,21,0.0,0.0,997.5423178726558,1685.0,0.0,2088.354452733768,31,2,2,2,1,1,2,2,2,0,,1,,2,101739,2,2,3,0,1,,595.0,,43,3.0,0.0,4.0,5.0,2.8,4,4,1009.92974794527,585.0,26017.881921981963,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.06476315039989396,9292.10068642213,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +1736,2,61.0,0.0,5,300,1400.0,0.0,0.0,68,63,0.0,0.0,2387.2807607208856,1490.0,124.70303028568689,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,3,101740,1,1,2,0,1,,250.0,433.0,43,2.0,3.0,3.0,2.0,1.5,2,2,199.977100269875,1400.0,18291.595503956538,1,1,2,3,80.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.08145817567842606,12194.397002637692,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1737,1,53.0,96.0,2,111,244.0,323.0,0.0,0,68,0.0,0.0,416.0689325827829,567.0,0.0,613.2168074845519,60,0,0,0,0,0,0,0,0,0,,2,,2,101741,2,3,0,1,1,380.0,128.0,243.0,12,1.0,1.0,2.0,1.0,1.0,1,1,398.984152823703,244.0,13488.296369820697,0,1,2,3,42.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.042036442887526594,13488.296369820697,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +1738,2,71.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,522.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,101742,2,1,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,787.358820242491,0.0,79810.6252211794,0,5,0,1,73.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006540482530407198,79810.6252211794,10,5,10,10_0,10_4,10_1_0 +1739,2,48.0,0.0,1,111,350.0,350.0,0.0,37,64,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,71,2,2,2,2,1,2,2,2,2,60.0,2,,1,101743,2,2,0,3,1,,264.0,400.0,43,2.0,2.0,4.0,3.0,1.8,2,2,227.698080089436,350.0,45366.60661816371,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.015429851429966479,25203.67034342428,7,4,7,7_0,7_4,7_1_0 +1740,2,42.0,0.0,2,111,1500.0,0.0,0.0,46,37,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,12,2,2,2,1,2,2,2,2,2,40.0,2,,2,101744,1,3,0,1,1,,0.0,,43,2.0,0.0,6.0,5.0,2.8,4,4,1598.70748885629,1500.0,79626.3988774004,1,1,1,2,150.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.018837973601060726,28437.999599071572,8,4,8,8_0,8_3,8_0_1 +1741,2,28.0,0.0,5,111,226.0,240.0,0.0,0,38,0.0,0.0,385.3753228020858,466.0,0.0,455.6409715055494,12,0,0,0,0,0,0,0,0,3,60.0,2,,3,101745,1,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,703.977580793623,226.0,35785.9995351951,0,1,1,2,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01302185229007491,35785.9995351951,9,5,9,9_0,9_4,9_0_0 +1742,2,52.0,0.0,8,111,640.0,,,0,22,0.0,0.0,,870.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,101746,2,2,0,0,2,,380.0,,32,2.0,2.0,4.0,5.0,2.4,2,2,137.3242441387847,640.0,16755.0,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051924798567591766,6981.25,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1743,2,36.0,0.0,2,111,470.0,835.0,0.0,56,64,0.0,0.0,801.4442553848687,1305.0,0.0,1585.2508800297237,50,0,0,0,0,0,0,0,0,0,,2,,2,101747,1,2,0,0,1,,270.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1317.55895607878,470.0,22751.87839686549,1,1,1,2,73.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0573579014987962,12639.93244270305,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +1744,2,42.0,0.0,9,112,490.0,0.0,0.0,0,37,0.0,0.0,835.54826625231,490.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,101748,2,1,0,0,1,,192.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2421.46985721503,490.0,77561.77996311655,0,4,3,4,50.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.006317544546205783,77561.77996311655,10,5,10,10_0,10_1,10_0_0 +1745,2,85.0,0.0,1,111,298.0,1330.0,0.0,0,78,0.0,0.0,508.1497619248742,1628.0,0.0,2525.0103837599195,71,0,0,0,0,0,0,0,0,0,,1,,1,101749,2,2,2,0,1,,114.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1100.8221587458,298.0,19064.260213457634,0,5,0,1,65.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08539539335760744,19064.260213457634,5,3,5,5_1,5_2,5_1_0 +1746,2,27.0,0.0,7,112,780.0,0.0,0.0,43,47,527.3414255183008,0.0,1330.0564238302077,1280.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,101750,2,1,2,0,1,,200.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1152.57110251947,780.0,37895.00000000001,1,1,2,3,85.0,6,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033777543211505466,21052.77777777778,5,3,5,5_1,5_1,5_0_0 +1747,2,71.0,0.0,8,211,1600.0,1300.0,0.0,75,72,0.0,397.2981831030672,2728.320869395298,3200.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,0,,1,1999.0,6,101751,2,1,1,0,1,,427.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1512.69906738995,1600.0,61549.02198927806,5,5,0,1,200.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05199107795014916,41032.681326185375,9,5,9,9_1,9_1,9_0_0 +1748,2,45.0,0.0,2,111,1200.0,0.0,0.0,0,48,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,101752,2,3,0,0,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1264.26487302807,1200.0,34086.98013781217,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03520405724263201,34086.98013781217,9,5,9,9_0,9_4,9_0_1 +1749,1,36.0,435.0,2,120,0.0,,,0,67,0.0,0.0,,46.0,63.73710436823996,,31,0,0,0,0,0,0,0,0,2,45.0,1,,2,101753,1,3,0,0,2,,0.0,600.0,32,1.0,0.0,3.0,3.0,1.6,1,1,110.93892603400073,0.0,20398.843254722673,0,1,3,4,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0022550298281913722,12749.27703420167,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +1750,2,62.0,0.0,2,111,284.0,1265.0,0.0,77,78,0.0,0.0,484.2769543176654,1549.0,0.0,2401.607620643833,50,0,0,0,0,0,0,0,0,0,,1,,2,101754,2,2,2,0,1,,146.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,300.988869248187,284.0,29841.614995336236,5,5,0,1,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05190737834537721,19894.409996890823,5,3,5,5_1,5_3,5_0_1 +1751,2,84.0,0.0,5,111,384.0,,,0,78,0.0,0.0,,660.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,101755,2,1,0,0,2,,300.0,,21,0.0,2.0,4.0,2.0,1.5,2,2,112.79743587130106,384.0,41254.695648220884,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015998178864966673,27503.130432147256,7,4,7,7_1,7_2,7_0_0 +1752,1,62.0,161.0,2,111,150.0,0.0,0.0,0,78,0.0,0.0,255.78008150580916,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101756,2,2,0,1,1,316.0,0.0,146.0,11,0.0,0.0,2.0,1.0,1.0,1,1,511.215527481135,150.0,5210.681424864728,0,5,2,3,50.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02878702184405643,5210.681424864728,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1753,2,60.0,0.0,5,211,480.0,700.0,0.0,0,55,0.0,794.5963662061343,818.4962608185893,1780.0,0.0,1328.9528335578523,60,0,0,0,0,0,0,0,0,2,3.0,1,,3,101757,2,1,1,0,1,,250.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,233.696559302485,480.0,26476.70816078669,0,1,0,1,86.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06722890131169205,26476.70816078669,7,4,7,7_1,7_1,7_0_0 +1754,2,32.0,0.0,1,111,0.0,0.0,400.0,0,46,0.0,0.0,252.12731616589753,400.0,0.0,478.69285902587234,43,1,2,2,1,2,2,2,2,2,25.0,2,,1,101758,1,3,0,0,2,,0.0,830.0,12,1.0,0.0,3.0,1.0,1.0,1,1,703.043951255096,0.0,38190.15256133295,0,1,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.010473904218046904,38190.15256133295,9,5,9,9_0,9_4,9_1_0 +1755,2,60.0,0.0,1,400,1180.0,0.0,0.0,0,34,0.0,0.0,2012.1366411790323,1220.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,2,80.0,1,,1,101759,2,1,2,0,1,,196.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,935.441765356807,1180.0,44299.53455321511,0,1,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027539792738329266,44299.53455321511,10,5,10,10_1,10_0,10_1_0 +1756,1,39.0,270.0,5,111,420.0,100.0,0.0,0,22,0.0,0.0,716.1842282162656,520.0,0.0,189.8504047939789,42,2,1,2,2,1,2,2,2,0,,2,,3,101760,2,1,0,1,1,866.0,0.0,341.0,12,1.0,0.0,3.0,1.0,1.0,1,1,318.951664134108,420.0,6060.0,0,4,2,3,96.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0858085808580858,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +1757,2,63.0,0.0,2,112,1345.0,0.0,0.0,37,47,4207.129892785004,264.8654554020448,2293.494730835422,5534.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,101761,1,2,2,0,2,,389.0,,43,2.0,3.0,6.0,5.0,2.4,2,2,673.032137484615,1345.0,619414.8757494953,1,1,0,1,180.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.008934238128045972,258089.53156228975,10,5,10,10_1,10_0,10_0_1 +1758,2,43.0,0.0,1,300,1200.0,0.0,0.0,46,48,0.0,993.245457757668,2046.2406520464733,2004.0,74.82181817141213,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,101762,2,1,3,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1049.55351026646,1200.0,51568.238074225264,1,1,1,2,170.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038861129928765885,24556.303844869173,7,4,7,7_1,7_0,7_1_0 +1759,1,43.0,700.0,1,211,1200.0,0.0,0.0,0,85,0.0,0.0,2046.2406520464733,1380.0,249.40606057137379,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,101763,1,3,4,0,2,,1200.0,700.0,31,0.0,6.0,6.0,3.0,2.0,3,3,2671.40101036691,1200.0,5325.215977207855,0,6,2,3,100.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.2591444189130464,2662.6079886039274,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +1760,2,63.0,0.0,2,111,300.0,0.0,0.0,0,74,0.0,0.0,511.56016301161833,684.0,0.0,0.0,10,2,1,2,2,1,2,2,2,0,,2,,2,101764,2,3,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,838.641880261714,300.0,42522.32760211341,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0160856669559642,42522.32760211341,9,5,9,9_0,9_4,9_0_1 +1761,2,55.0,0.0,6,112,1360.0,0.0,0.0,63,45,0.0,278.10872817214704,2319.072738986003,1672.0,141.33010099044515,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,101765,2,1,2,0,1,,278.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,684.113804804557,1360.0,53902.933090899205,1,1,0,1,160.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03101872020916604,35935.28872726614,9,5,9,9_1,9_0,9_0_0 +1762,1,41.0,413.0,8,211,1290.0,,,0,81,0.0,0.0,,1302.0,16.627070704758253,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,101766,2,3,0,0,2,,600.0,550.0,32,3.0,0.0,3.0,3.0,2.0,3,3,48.34080775527145,1290.0,19679.117338003503,0,4,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0661615039758735,9839.558669001752,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +1763,2,32.0,0.0,7,400,0.0,,,85,68,0.0,0.0,,150.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,,5,101767,2,2,0,0,2,,0.0,,42,1.0,0.0,4.0,5.0,2.6,3,2,148.98126038520107,0.0,17704.649178396237,6,4,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008472350877363595,6809.480453229322,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +1764,1,84.0,253.0,2,111,180.0,,,0,77,0.0,0.0,,180.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,2,101768,2,1,0,0,1,,130.0,291.0,11,0.0,2.0,2.0,1.0,1.0,1,1,149.4769423591217,180.0,2160.9932365200493,0,5,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08329503163548194,2160.9932365200493,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1765,2,31.0,0.0,2,111,560.0,0.0,0.0,54,68,949.2145659329414,0.0,954.9123042883542,1505.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,101769,2,1,3,0,1,,292.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,212.859103368949,560.0,43581.893087001954,1,1,1,2,90.0,8,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03453268991770478,24212.162826112195,7,4,7,7_1,7_2,7_0_1 +1766,2,33.0,0.0,1,112,720.0,840.0,0.0,85,62,0.0,0.0,1227.744391227884,1560.0,0.0,1594.7434002694229,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,101770,2,2,2,0,1,,240.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1057.02343003499,720.0,27212.820679207667,7,1,0,1,90.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05732592068972621,15118.233710670926,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1768,2,51.0,0.0,1,111,400.0,1400.0,0.0,0,52,0.0,0.0,682.0802173488245,1800.0,0.0,2657.9056671157045,44,2,2,1,1,1,2,2,2,3,60.0,1,,1,101772,1,2,3,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,245.536955056929,400.0,28893.349433864838,0,1,1,2,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.062298073268386316,28893.349433864838,8,4,8,8_1,8_4,8_1_0 +1769,1,49.0,400.0,2,111,2000.0,1000.0,0.0,0,56,0.0,0.0,3410.4010867441225,3000.0,0.0,1898.504047939789,71,2,1,2,2,1,2,2,2,0,,2,,2,101773,2,2,0,1,1,1200.0,1364.0,165.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1020.12021198997,2000.0,11550.2,0,1,2,3,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.2597357621513047,6416.777777777778,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +1770,2,28.0,0.0,7,111,0.0,,,0,43,0.0,0.0,,543.0,0.0,,50,0,0,0,0,0,0,0,0,2,90.0,1,,5,101774,2,1,0,0,2,,0.0,550.0,12,1.0,0.0,3.0,1.0,1.0,1,1,106.9288104013069,0.0,6562.482126198713,0,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08274308250413936,6562.482126198713,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +1771,2,56.0,0.0,7,111,245.0,724.0,0.0,0,55,0.0,0.0,417.774133126155,969.0,0.0,1374.5169307084072,60,0,0,0,0,0,0,0,0,3,35.0,2,,5,101775,1,3,0,0,1,,0.0,340.0,12,1.0,1.0,3.0,1.0,1.0,1,1,372.84083973263,245.0,30243.276459532324,0,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032040179287339834,30243.276459532324,8,4,8,8_0,8_4,8_0_0 +1772,2,71.0,0.0,9,221,500.0,0.0,0.0,0,86,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,101776,2,3,0,0,1,,135.0,550.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1342.90897760014,500.0,26573.878575972623,0,5,2,3,40.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01881546943064933,26573.878575972623,7,4,7,7_0,7_1,7_0_0 +1773,2,62.0,0.0,2,111,1100.0,0.0,0.0,74,33,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,90.0,2,,2,101777,2,2,0,0,2,,0.0,,42,2.0,2.0,3.0,3.0,2.0,3,3,911.686504659034,1100.0,221680.03104147338,5,1,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004962106847568082,110840.01552073669,10,5,10,10_0,10_4,10_0_1 +1774,1,25.0,390.0,7,120,180.0,,,55,81,0.0,0.0,,432.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,2,,5,101778,1,3,0,0,2,,528.0,372.0,43,2.0,0.0,3.0,5.0,2.4,2,2,134.440294084995,180.0,14238.1387283237,4,4,2,3,71.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030341044447096822,5932.5578034682085,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1775,1,77.0,179.0,2,111,250.0,600.0,0.0,0,78,0.0,0.0,426.3001358430153,850.0,0.0,1139.1024287638734,71,2,2,2,1,1,1,2,2,0,,2,,2,101779,1,3,0,0,1,,400.0,394.0,21,1.0,0.0,5.0,3.0,2.0,3,3,321.074355756853,250.0,21852.35338956247,0,5,2,3,85.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.03889741232200614,10926.176694781236,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1776,1,25.0,333.0,7,111,400.0,,,0,55,0.0,0.0,,492.0,127.47420873647992,,43,2,2,2,2,1,2,2,2,0,,2,,5,101780,2,2,0,0,1,,240.0,331.0,32,1.0,0.0,3.0,2.0,1.3,1,1,127.54524799245809,400.0,15867.131955687826,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03100749406849388,12205.486119759866,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +1777,1,47.0,189.0,9,111,600.0,,,0,52,0.0,0.0,,876.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,101781,2,2,0,0,2,,200.0,545.0,32,1.0,2.0,4.0,3.0,1.6,1,1,186.6008243762856,600.0,25811.59262889715,0,1,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033938239015103684,16132.245393060717,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +1778,1,38.0,44.0,7,111,0.0,0.0,804.0,85,47,0.0,0.0,506.77590549345405,804.0,0.0,962.1726466420034,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,101782,1,2,0,0,1,,0.0,892.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1071.75595171721,0.0,43615.61322922557,7,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01843376581167183,20769.33963296456,5,3,5,5_0,5_4,5_0_0 +1779,2,52.0,0.0,1,111,300.0,800.0,0.0,35,34,0.0,0.0,511.56016301161833,1160.0,83.13535352379125,1518.8032383518312,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,101783,2,2,0,0,1,,0.0,1673.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,861.262598776224,300.0,60743.9184045325,1,1,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019096561935218272,23363.04554020481,6,3,6,6_0,6_4,6_1_0 +1780,0,48.0,0.0,9,400,600.0,2500.0,0.0,85,56,0.0,0.0,1023.1203260232367,3100.0,0.0,4746.260119849472,71,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,101784,1,1,1,0,1,,1500.0,,42,1.0,2.0,6.0,5.0,2.5999999999999996,3,3,857.186218102002,600.0,27111.012458987145,6,1,5,0,120.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11434467837339538,10427.312484225826,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +1781,1,27.0,300.0,2,111,300.0,200.0,0.0,0,56,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,71,2,2,2,1,2,2,2,2,0,,2,,2,101785,2,1,0,1,1,,0.0,410.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1328.0475984943,300.0,8151.84824114036,0,4,2,3,60.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.06133578364187692,5094.905150712725,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1782,1,36.0,300.0,1,111,850.0,0.0,0.0,0,56,0.0,0.0,1449.420461866252,906.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,101786,2,2,0,1,2,600.0,0.0,931.0,32,1.0,0.0,2.0,3.0,1.8,2,2,1136.4111572555,850.0,21469.88519382877,0,4,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0421986420430612,11927.713996571538,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +1783,1,40.0,34.0,1,111,960.0,630.0,0.0,42,48,0.0,0.0,1636.9925216371787,1590.0,0.0,1196.057550202067,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,101787,2,1,1,0,1,,370.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,276.921622775375,960.0,52983.27347191361,1,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03000947083503358,22076.363946630674,6,3,6,6_1,6_3,6_1_0 +1784,2,30.0,0.0,7,111,420.0,0.0,0.0,0,33,0.0,0.0,716.1842282162656,420.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,5,101788,2,1,0,0,2,,0.0,515.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1053.62414541243,420.0,32024.691338667082,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013114880501373822,32024.691338667082,8,4,8,8_0,8_4,8_0_0 +1785,2,66.0,0.0,1,112,0.0,0.0,0.0,74,72,0.0,0.0,0.0,3850.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,101789,2,1,2,0,1,,229.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1931.3527587888,0.0,27541.1074732551,5,5,0,1,84.0,8,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13979103795076858,18360.7383155034,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +1786,2,31.0,0.0,9,112,1200.0,1200.0,0.0,21,43,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,101790,2,1,1,0,1,,123.0,,43,3.0,0.0,6.0,5.0,2.6,3,3,1880.76611620513,1200.0,70599.14611754361,1,1,1,2,160.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033994745432248355,27153.517737516773,7,4,7,7_1,7_0,7_0_0 +1787,1,42.0,24.0,9,222,1300.0,0.0,0.0,56,11,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,101791,2,1,1,0,1,,210.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,977.711446155565,1300.0,50073.08642166781,1,1,1,2,95.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025962050532548343,23844.32686746086,6,3,6,6_1,6_0,6_0_0 +1788,2,52.0,0.0,6,112,1800.0,0.0,0.0,45,34,0.0,582.7040018844986,3069.36097806971,2240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,101792,2,1,3,0,1,,600.0,,43,3.0,1.0,5.0,4.0,2.5,4,3,1895.62346273667,1800.0,75809.66199961028,1,1,0,1,120.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029547684832198766,30323.864799844112,8,4,8,8_1,8_1,8_0_0 +1789,2,75.0,0.0,2,120,600.0,,,77,78,0.0,0.0,,688.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,101793,2,2,0,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,113.45258125761795,600.0,16377.461645649084,5,5,0,1,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042008951990602124,10918.307763766055,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1790,2,54.0,0.0,9,111,168.0,48.0,0.0,0,52,0.0,0.0,286.47369128650627,216.0,0.0,91.12819430110987,50,2,2,1,2,1,2,2,2,2,20.0,2,2006.0,6,101794,2,1,0,1,1,548.0,220.0,296.0,12,1.0,0.0,3.0,1.0,1.0,1,1,286.730450332042,168.0,21956.732177948983,0,1,2,3,76.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.009837529476127031,21956.732177948983,6,3,6,6_0,6_3,6_0_0 +1791,2,70.0,0.0,2,111,450.0,0.0,0.0,78,75,0.0,794.5963662061343,767.3402445174275,1110.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101795,1,1,2,0,2,,150.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,876.465990142723,450.0,39702.69560441905,6,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02795779941643189,26468.46373627937,7,4,7,7_1,7_3,7_0_1 +1792,2,46.0,0.0,7,111,420.0,,,52,33,0.0,0.0,,545.0,173.19865317456512,,31,0,0,0,0,0,0,0,0,2,60.0,2,,5,101796,2,2,0,0,2,,700.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,114.24847607588198,420.0,77910.67682337163,1,1,1,2,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0069951901616199415,33874.207314509404,9,5,9,9_0,9_2,9_0_0 +1793,1,25.0,59.0,7,221,199.5,0.0,0.0,0,22,1134.3114062898649,0.0,340.1875084027262,1337.0,85.9065319745843,0.0,10,1,2,2,1,1,2,2,2,0,,2,,5,101798,2,1,0,1,1,,91.0,527.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2146.60851024097,199.5,4985.055800245205,0,1,2,3,102.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.26820161169193646,4985.055800245205,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1794,2,64.0,0.0,9,111,6895.0,0.0,0.0,0,77,0.0,0.0,11757.357746550362,8297.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101799,2,1,1,0,1,,1181.0,,21,2.0,0.0,6.0,4.0,2.3,3,3,749.819458783933,6895.0,126337.98752139483,0,5,0,1,270.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06567304231116501,54929.5597919108,10,5,10,10_1,10_3,10_0_0 +1795,1,58.0,165.0,5,111,300.0,,,68,56,0.0,0.0,,450.0,207.83838380947813,,70,0,0,0,0,0,0,0,0,0,,1,,3,101800,2,3,0,0,2,,290.0,530.0,43,2.0,0.0,3.0,2.0,1.5,2,2,82.3629489047517,300.0,25674.56475343974,1,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017527074142112242,17116.37650229316,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +1796,2,54.0,0.0,1,111,1320.0,0.0,0.0,0,63,0.0,264.8654554020448,2250.864717251121,1520.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,101801,2,1,0,0,1,,0.0,300.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1669.42987528745,1320.0,7918.674104805357,0,1,2,3,55.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.19195132668455256,7918.674104805357,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +1797,2,47.0,0.0,2,111,2316.0,0.0,0.0,37,38,0.0,0.0,3949.244458449694,2386.0,96.99124577775646,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,101802,1,1,2,0,1,,381.0,910.0,43,2.0,0.0,7.0,4.0,2.5,4,4,1122.35242941747,2316.0,87994.56049920611,1,1,2,3,160.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027115312429130508,35197.82419968244,9,5,9,9_1,9_2,9_0_1 +1798,2,80.0,0.0,2,221,270.0,,,74,78,0.0,0.0,,798.0,731.5911110093631,,71,0,0,0,0,0,0,0,0,0,,1,,2,101803,2,2,0,0,2,,570.0,,41,0.0,4.0,4.0,3.0,2.0,3,3,119.32697383947647,270.0,40009.28297180101,5,5,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01994537119204159,20004.641485900505,5,3,5,5_1,5_1,5_0_1 +1799,2,59.0,0.0,2,111,293.0,71.0,0.0,0,75,0.0,0.0,499.62375920801395,364.0,0.0,134.79378740372502,31,0,0,0,0,0,0,0,0,0,,2,,2,101804,2,3,0,1,2,,694.0,,31,0.0,0.0,5.0,3.0,2.0,3,3,2000.2477087609,293.0,35120.769706947984,0,7,0,1,111.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010364237544827768,17560.384853473992,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +1800,2,80.0,0.0,5,112,600.0,,,77,71,0.0,0.0,,908.0,426.76148142212844,,71,0,0,0,0,0,0,0,0,0,,1,,3,101805,2,1,0,0,1,,480.0,,41,0.0,5.0,5.0,3.0,2.0,3,3,116.20537031430644,600.0,27897.246464909105,5,5,0,1,75.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032548015129096664,13948.623232454553,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1801,2,32.0,0.0,1,111,0.0,0.0,816.0,52,54,0.0,0.0,514.3397249784309,816.0,0.0,976.5334324127797,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,101806,2,3,0,1,1,960.0,0.0,465.0,43,2.0,0.0,3.0,2.0,1.5,2,2,628.39990818006,0.0,46690.353118215906,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01747684361979356,31126.902078810603,8,4,8,8_0,8_4,8_1_0 +1803,2,48.0,0.0,1,111,542.0,920.0,0.0,56,48,0.0,0.0,924.2186945076571,1462.0,0.0,1746.6237241046058,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,101808,2,1,3,0,1,,282.0,,43,3.0,0.0,3.0,4.0,2.5,4,2,498.942908429618,542.0,39680.898837434994,1,1,1,2,85.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03684392347032089,15872.359534973997,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +1804,2,51.0,0.0,6,111,1080.0,0.0,0.0,54,46,0.0,1986.490915515336,1841.6165868418261,2730.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,3,60.0,1,,4,101809,2,1,2,0,1,,720.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,673.920135256146,1080.0,68239.41146954626,1,1,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04000620669506123,45492.94097969751,10,5,10,10_1,10_4,10_0_0 +1805,1,35.0,149.0,1,111,409.0,,,0,56,0.0,0.0,,432.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,0,,1,,1,101810,1,3,0,0,2,,256.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,128.834881309353,409.0,9430.994944671203,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.045806407758079974,9430.994944671203,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +1806,2,53.0,0.0,7,111,382.0,691.0,0.0,0,52,0.0,0.0,651.3866075681274,1073.0,0.0,1311.866297126394,42,0,0,0,0,0,0,0,0,3,20.0,1,,5,101811,2,1,2,0,1,,190.0,,32,2.0,1.0,5.0,2.0,1.5,2,2,736.348771511432,382.0,43390.32086797797,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024729017406088676,28926.88057865198,8,4,8,8_1,8_4,8_0_0 +1807,2,59.0,0.0,2,111,620.0,230.0,0.0,69,68,0.0,0.0,1057.224336890678,912.0,0.0,436.65593102615145,71,2,2,1,2,1,2,2,2,0,,2,,2,101812,2,3,0,1,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,295.351238707415,620.0,23721.03948492961,4,4,0,1,73.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.038446881747294825,15814.026323286407,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +1808,2,39.0,0.0,1,111,947.0,4088.0,0.0,54,23,0.0,66.2163638505112,1614.8249145733419,5085.0,0.0,7761.084547977857,50,2,2,2,2,1,2,2,2,0,,1,,1,101813,2,3,2,0,1,,1183.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,696.642921807674,947.0,43582.62135017216,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.11667494617048577,20753.629214367695,5,3,5,5_1,5_4,5_1_0 +1809,0,45.0,0.0,2,111,867.0,0.0,0.0,0,62,0.0,0.0,1478.408871103577,867.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,101814,1,3,0,0,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,4092.9632236864,867.0,5103.394070668692,0,4,5,0,23.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.16988693955322914,5103.394070668692,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +1810,2,68.0,0.0,2,221,300.0,7721.0,0.0,0,77,0.0,0.0,511.56016301161833,8021.0,0.0,14658.349754143112,50,2,1,2,1,1,2,2,2,0,,2,,2,101815,2,3,0,1,1,760.0,60.0,206.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2465.23922830675,300.0,23088.755935400193,0,5,2,3,47.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.3473985355660512,23088.755935400193,6,3,6,6_0,6_1,6_0_1 +1811,2,50.0,0.0,2,111,350.0,70.0,0.0,0,38,0.0,0.0,596.8201901802214,420.0,0.0,132.89528335578524,41,1,2,2,2,1,2,2,2,2,60.0,2,,2,101816,2,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,808.111905402615,350.0,53005.47981692629,0,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007923709047642297,53005.47981692629,10,5,10,10_0,10_4,10_0_1 +1812,2,70.0,0.0,1,111,492.0,1950.0,0.0,78,78,0.0,0.0,838.958667339054,2442.0,0.0,3702.0828934825886,70,0,0,0,0,0,0,0,0,0,,1,,1,101817,2,2,3,0,1,,540.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,563.029512541011,492.0,42683.683100254544,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05721155773423491,28455.78873350303,8,4,8,8_1,8_4,8_1_0 +1813,2,50.0,0.0,8,400,244.0,,,81,69,0.0,0.0,,382.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,101818,1,1,0,0,2,,564.0,317.0,43,2.0,1.0,3.0,3.0,1.8,2,2,124.93831714763162,244.0,33456.09151644926,4,1,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011417950593905542,18586.717509138478,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +1814,0,26.0,0.0,1,111,480.0,1200.0,0.0,0,67,0.0,0.0,818.4962608185893,1680.0,0.0,2278.2048575277468,31,2,2,2,1,1,2,2,2,0,,2,,1,101819,2,2,0,0,2,,0.0,,22,3.0,0.0,4.0,5.0,3.0,5,5,311.592454465174,480.0,19277.84837175483,0,1,5,0,80.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.08714665493797907,6425.94945725161,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +1815,2,63.0,0.0,5,120,2000.0,0.0,0.0,77,72,0.0,79.45963662061344,3410.4010867441225,2060.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,101820,2,1,2,0,1,,230.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1354.362584733,2000.0,139408.55098949614,5,5,0,1,126.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01477671194039749,92939.03399299743,10,5,10,10_1,10_0,10_0_0 +1816,2,48.0,0.0,7,300,732.0,0.0,0.0,55,55,0.0,0.0,1248.206797748349,2365.0,2262.6672050725188,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,101821,2,1,2,0,1,,515.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1241.86555689975,732.0,69229.81571464278,1,1,1,2,117.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034161581618940805,27691.926285857113,7,4,7,7_1,7_0,7_0_0 +1817,2,77.0,0.0,2,112,600.0,0.0,0.0,86,86,2109.365702073203,0.0,1023.1203260232367,2640.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,101822,2,2,2,0,1,,330.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1349.30188688322,600.0,39568.43596228246,5,5,0,1,200.0,9,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06671984716597108,26378.95730818831,7,4,7,7_1,7_1,7_0_1 +1818,2,54.0,0.0,9,221,1100.0,0.0,0.0,0,55,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,10.0,1,2007.0,6,101823,2,2,1,0,1,,331.0,,32,3.0,1.0,4.0,3.0,2.0,3,3,2569.03850569147,1100.0,33548.48349530445,0,1,1,2,90.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.032788367323785574,16774.241747652224,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1819,2,39.0,0.0,8,112,489.0,,,46,38,0.0,0.0,,533.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,101824,2,1,0,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,110.96946868402787,489.0,109592.69624325648,1,1,1,2,90.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004863462787857059,52186.99821107451,10,5,10,10_1,10_2,10_0_0 +1820,0,56.0,0.0,1,111,306.0,1119.0,0.0,0,35,0.0,0.0,521.7913662718507,1425.0,0.0,2124.4260296446237,41,0,0,0,0,0,0,0,0,0,,2,,1,101825,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1057.69463740253,306.0,29122.264545907856,0,1,5,0,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04893163434298365,29122.264545907856,8,4,8,8_0,8_4,8_1_0 +1821,1,25.0,351.0,6,400,1500.0,0.0,0.0,55,67,0.0,264.8654554020448,2557.8008150580918,1800.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,101826,1,3,3,0,2,,600.0,470.0,43,2.0,0.0,5.0,3.0,1.8,2,2,903.347078086924,1500.0,8767.999510240827,1,1,2,3,70.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.20529198227003098,4871.110839022681,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +1822,2,69.0,0.0,1,111,500.0,2000.0,0.0,72,74,0.0,0.0,852.6002716860306,2500.0,0.0,3797.008095879578,20,0,0,0,0,0,0,0,0,0,,1,,1,101827,2,1,2,0,1,,500.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1536.54135533673,500.0,47913.304433900346,5,5,0,1,160.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05217757425704002,31942.202955933564,8,4,8,8_1,8_2,8_1_0 +1823,1,62.0,125.0,1,111,826.0,540.0,0.0,77,78,0.0,0.0,1408.4956488253226,1366.0,0.0,1025.192185887486,71,2,2,2,2,1,2,2,2,0,,2,,1,101828,1,3,0,0,1,,0.0,276.0,41,0.0,2.0,3.0,5.0,2.5999999999999996,3,3,701.968253999089,826.0,27450.939188021715,6,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,0.049761503263832135,10558.053533854507,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +1824,0,74.0,0.0,7,221,360.0,,,78,86,0.0,0.0,,536.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,5,101829,1,2,0,0,2,,560.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,116.98555056010026,360.0,9921.686274509802,6,5,5,0,40.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05402307482519971,6614.457516339869,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +1825,1,44.0,284.0,2,111,420.0,300.0,0.0,68,56,0.0,0.0,716.1842282162656,720.0,0.0,569.5512143819367,71,2,1,2,2,1,2,2,2,0,,2,,2,101830,1,3,0,1,1,,0.0,270.0,43,2.0,2.0,3.0,2.0,1.5,2,2,337.448392209972,420.0,11393.0,4,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0631966997279031,7595.333333333333,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1826,2,62.0,0.0,2,111,203.0,1517.0,0.0,46,37,0.0,0.0,346.15571030452844,1720.0,0.0,2880.03064072466,41,0,0,0,0,0,0,0,0,2,15.0,8,,2,101831,2,2,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2167.07913819158,203.0,57397.37608705493,1,1,0,1,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029966526647337784,38264.917391369956,9,5,9,9_0,9_2,9_0_1 +1827,2,76.0,0.0,5,400,1800.0,,,86,71,0.0,0.0,,1920.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,3,101832,2,2,0,0,2,,400.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,26.28285509793217,1800.0,4966.597222222222,6,5,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.38658258644556,3311.0648148148143,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +1828,2,78.0,0.0,2,221,1009.0,0.0,0.0,0,72,430.3106032229334,0.0,1720.5473482624097,1483.0,91.44888887617039,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,101833,2,1,1,0,2,,101.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2581.8906937628,1009.0,29010.317567909984,0,5,0,1,108.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05111974374387523,29010.317567909984,8,4,8,8_1,8_1,8_0_1 +1829,0,41.0,0.0,1,211,0.0,,,0,56,0.0,0.0,,924.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,1,101834,2,1,0,0,2,,404.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,94.10459650554583,0.0,22015.844262295082,0,1,5,0,90.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04196977363173244,12231.024590163934,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +1830,1,46.0,230.0,9,111,930.0,950.0,0.0,85,64,0.0,0.0,1585.836505336017,1880.0,0.0,1803.5788455427996,71,1,2,2,2,1,2,2,2,2,10.0,1,2008.0,6,101835,1,2,5,0,1,,0.0,471.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,1170.91260783439,930.0,25290.401910481032,6,1,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.07433650151763214,9727.077657877322,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +1831,1,38.0,260.0,7,111,400.0,,,0,56,0.0,0.0,,576.0,243.8637036697877,,43,0,0,0,0,0,0,0,0,2,15.0,2,,5,101836,1,3,0,0,2,,400.0,476.0,32,1.0,0.0,3.0,3.0,1.6,1,1,93.3907036491963,400.0,23295.04162351142,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024726291942687485,14559.401014694637,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +1832,2,51.0,0.0,1,111,529.0,1317.0,0.0,85,38,0.0,0.0,902.0510874438204,1846.0,0.0,2500.329831136702,10,0,0,0,0,0,0,0,0,2,40.0,2,,1,101837,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,749.496412690405,529.0,54439.24052260957,6,1,0,1,61.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03390936358183255,36292.827015073046,9,5,9,9_0,9_4,9_1_0 +1833,2,36.0,0.0,2,112,630.0,1234.0,0.0,47,53,0.0,0.0,1074.2763423243985,1864.0,0.0,2342.7539951576996,42,2,2,2,1,1,2,2,2,0,,1,,2,101838,2,2,2,0,1,,650.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,973.201755723987,630.0,47536.16292931259,1,1,1,2,96.0,8,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.03921225200216123,26408.97940517366,7,4,7,7_1,7_0,7_0_1 +1834,2,42.0,0.0,9,111,900.0,900.0,0.0,0,54,0.0,0.0,1534.680489034855,1800.0,0.0,1708.65364314581,31,1,2,2,2,1,2,2,2,3,45.0,2,2006.0,6,101839,2,3,0,0,1,,150.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1839.20731456335,900.0,27382.184172835136,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.06573617314960997,27382.184172835136,7,4,7,7_0,7_4,7_0_0 +1835,0,54.0,0.0,7,111,504.0,,,68,53,0.0,0.0,,720.0,299.28727268564853,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,101840,2,1,0,0,2,,368.0,,43,2.0,2.0,4.0,3.0,2.0,3,2,97.23150174256594,504.0,36358.545538958926,1,1,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019802772342158333,18179.272769479463,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1836,2,29.0,0.0,9,111,240.0,,,53,52,0.0,0.0,,300.0,83.13535352379125,,41,2,2,2,2,1,2,2,2,0,,1,2013.0,6,101841,2,1,0,0,2,,180.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,155.97403845732498,240.0,38063.0,4,1,0,1,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.007881669863121667,21146.11111111111,5,3,5,5_1,5_2,5_0_0 +1837,2,57.0,0.0,2,112,0.0,0.0,0.0,54,46,0.0,0.0,0.0,1140.0,0.0,0.0,50,2,1,2,1,1,2,2,2,3,90.0,2,,2,101842,1,3,0,1,1,,0.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,694.048683906086,0.0,76806.18548973814,1,1,0,1,98.0,10,3,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014842554577226235,38403.09274486907,9,5,9,9_0,9_1,9_0_1 +1838,2,38.0,0.0,7,111,1000.0,1500.0,0.0,22,38,0.0,0.0,1705.2005433720612,2500.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,3,90.0,2,,5,101843,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,771.043727758353,1000.0,87281.01249719904,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028643114103198884,48489.4513873328,10,5,10,10_0,10_4,10_0_0 +1839,1,39.0,65.0,5,111,408.0,,,0,55,0.0,0.0,,454.0,63.73710436823996,,43,0,0,0,0,0,0,0,0,2,30.0,2,,3,101844,2,2,0,0,2,,504.0,178.0,12,1.0,1.0,2.0,1.0,1.0,1,1,123.45014927643113,408.0,17582.842323651454,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025820626247060444,17582.842323651454,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +1840,2,92.0,0.0,2,111,200.0,0.0,0.0,77,72,0.0,0.0,341.04010867441224,4067.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101845,2,1,1,0,2,,360.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,778.676008558789,200.0,92002.95490627772,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044205101935508515,61335.303270851815,10,5,10,10_1,10_4,10_0_1 +1841,2,46.0,0.0,5,120,616.0,738.0,0.0,52,62,0.0,0.0,1050.4035347171896,1354.0,0.0,1401.0959873795643,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,101846,2,2,5,0,1,,632.0,338.0,43,4.0,2.0,5.0,5.0,3.0,5,5,1437.17872963602,616.0,49607.2382330675,1,1,2,3,80.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027294403966585713,16535.746077689168,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +1842,2,84.0,0.0,2,211,386.0,,,0,71,0.0,0.0,,482.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,2,101847,2,1,0,0,2,,164.0,,11,0.0,6.0,8.0,1.0,1.0,1,1,88.3333794675901,386.0,12709.681438565058,0,5,0,1,98.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0379238458752762,12709.681438565058,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +1843,0,81.0,0.0,2,120,650.0,,,0,78,0.0,0.0,,941.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,101848,2,2,0,0,2,,600.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,103.79888837020907,650.0,16465.52214726615,0,5,0,1,67.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057149721192184526,16465.52214726615,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +1844,2,47.0,0.0,2,211,0.0,0.0,3000.0,46,34,0.0,0.0,1890.9548712442313,3000.0,0.0,3590.196442694042,20,0,0,0,0,0,0,0,0,2,2.0,1,,2,101849,2,1,2,0,1,,975.0,,43,2.0,2.0,8.0,5.0,2.8,4,3,2330.32731139073,0.0,62354.885985933666,1,1,1,2,175.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04811170692665135,22269.602137833455,6,3,6,6_1,6_1,6_0_1 +1845,2,85.0,0.0,2,111,690.0,1660.0,0.0,72,72,0.0,0.0,1176.5883749267223,2350.0,0.0,3151.5167195800495,70,0,0,0,0,0,0,0,0,0,,1,,2,101850,2,1,2,0,1,,345.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,757.845799110556,690.0,38737.060695970926,5,5,0,1,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06066541853663217,25824.707130647283,7,4,7,7_1,7_4,7_0_1 +1846,2,54.0,0.0,1,111,600.0,0.0,0.0,0,34,0.0,0.0,1023.1203260232367,716.0,0.0,0.0,10,2,2,2,1,2,2,2,2,3,60.0,2,,1,101851,2,3,0,1,1,528.0,0.0,670.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1118.83645472576,600.0,41632.364300786976,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.017198158500608275,41632.364300786976,9,5,9,9_0,9_4,9_1_0 +1847,0,49.0,0.0,2,111,750.0,1400.0,0.0,42,46,0.0,0.0,1278.9004075290459,2150.0,0.0,2657.9056671157045,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,101852,2,1,2,0,1,,400.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,1474.79842013085,750.0,56801.38050977783,1,1,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.037851192712295034,28400.690254888916,8,4,8,8_1,8_3,8_0_1 +1848,1,42.0,413.0,9,111,750.0,,,0,81,0.0,0.0,,750.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,101853,2,2,0,0,2,,300.0,600.0,32,1.0,0.0,3.0,3.0,1.8,2,1,45.43546786388918,750.0,12657.500547240177,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05925340450911763,7031.944748466765,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1849,2,41.0,0.0,1,111,60.0,60.0,0.0,38,38,0.0,0.0,102.31203260232367,120.0,0.0,113.91024287638734,12,0,0,0,0,0,0,0,0,1,25.0,1,,1,101854,2,1,3,0,1,,290.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1188.67239930212,60.0,124825.68765932761,1,1,1,2,140.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0009613405882249349,54272.038112751135,10,5,10,10_1,10_3,10_1_0 +1850,2,81.0,0.0,1,400,198.0,0.0,0.0,0,75,2109.365702073203,0.0,337.6297075876681,2303.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,101855,2,1,2,0,1,,345.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,890.469468535384,198.0,44809.4245272455,0,5,0,1,107.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.051395437997640556,44809.4245272455,10,5,10,10_1,10_0,10_1_0 +1851,2,67.0,0.0,6,111,461.0,1534.0,0.0,77,75,0.0,0.0,786.0974504945202,1995.0,0.0,2912.3052095396365,44,0,0,0,0,0,0,0,0,0,,1,,4,101856,2,1,2,0,1,,441.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1558.38099799702,461.0,40485.137015300694,5,5,0,1,115.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04927734341731442,26990.091343533797,7,4,7,7_1,7_3,7_0_0 +1852,2,47.0,0.0,1,112,1150.0,1150.0,0.0,85,53,0.0,0.0,1960.9806248778702,2300.0,0.0,2183.2796551307574,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,101857,2,1,2,0,1,,250.0,580.0,42,1.0,0.0,6.0,3.0,1.8,2,2,878.174965422587,1150.0,25596.954544400352,6,1,2,3,100.0,8,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08985443936349659,14220.53030244464,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +1853,2,61.0,0.0,5,111,744.0,0.0,0.0,54,43,1265.6194212439218,0.0,1268.6692042688135,2094.0,207.83838380947813,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,3,101858,2,1,1,0,1,,228.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1337.56740265538,744.0,48994.38189028558,1,1,0,1,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042739594198558314,32662.921260190386,8,4,8,8_1,8_3,8_0_0 +1854,1,81.0,171.0,9,111,413.0,917.0,0.0,77,78,0.0,0.0,704.2478244126613,1330.0,0.0,1740.9282119607865,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,101859,2,1,1,0,1,,395.0,780.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1439.78074848853,413.0,16891.695796039294,5,5,2,3,100.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07873691404695163,11261.130530692863,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +1855,1,27.0,160.0,1,111,1200.0,0.0,0.0,0,67,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,101860,2,3,0,0,1,,250.0,360.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2182.45675464829,1200.0,12869.735579864482,0,4,2,3,60.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09324200894053147,9899.796599895755,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +1856,2,43.0,0.0,2,111,400.0,600.0,0.0,45,33,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,101861,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1112.52887497321,400.0,75702.34312558429,1,1,1,2,120.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013209630755300109,36048.7348217068,9,5,9,9_1,9_3,9_0_1 +1857,2,65.0,0.0,5,400,1240.0,0.0,0.0,71,11,1371.087706347582,397.2981831030672,2114.448673781356,2966.0,174.58424239996165,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,,3,101862,2,1,2,0,1,,283.0,,42,1.0,2.0,6.0,3.0,2.0,3,3,1295.10465070435,1240.0,166272.55618192255,5,1,0,1,200.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017838181285640624,83136.27809096128,10,5,10,10_1,10_0,10_0_0 +1858,2,60.0,0.0,5,111,373.0,66.0,0.0,75,77,0.0,0.0,636.0398026777788,439.0,0.0,125.30126716402607,60,0,0,0,0,0,0,0,0,0,,2,,3,101863,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,805.586636245555,373.0,33495.39690743523,5,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013106278489942355,22330.264604956817,6,3,6,6_0,6_4,6_0_0 +1859,1,28.0,277.0,6,211,863.0,0.0,0.0,0,55,0.0,0.0,1471.5880689300889,863.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,101864,1,1,0,0,1,,222.0,426.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1634.79121341496,863.0,11811.311926605504,0,4,2,3,70.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0730655498189032,9085.62455892731,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +1860,0,56.0,0.0,6,111,720.0,,,21,21,0.0,0.0,,996.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,0,,1,,4,101865,2,2,0,0,2,,600.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,104.66902557429529,720.0,14940.936262599662,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0666624890498462,9960.624175066441,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +1861,2,46.0,0.0,9,111,1450.0,1450.0,0.0,63,37,0.0,0.0,2472.540787889489,2900.0,0.0,2752.830869512694,42,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,101866,2,1,1,0,1,,300.0,892.0,43,2.0,0.0,5.0,4.0,2.5,4,3,1114.16241831524,1450.0,65506.86665850369,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0442701681202079,26202.746663401478,7,4,7,7_1,7_4,7_0_0 +1862,2,29.0,0.0,5,111,450.0,500.0,0.0,0,52,0.0,0.0,767.3402445174275,950.0,0.0,949.2520239698945,41,0,0,0,0,0,0,0,0,3,90.0,2,,3,101867,2,1,0,1,1,,0.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,195.554761387803,450.0,19129.433479669842,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04966169024344762,19129.433479669842,5,3,5,5_0,5_4,5_0_0 +1863,1,35.0,199.0,2,111,233.0,340.0,0.0,85,53,0.0,0.0,397.31172660569024,573.0,0.0,645.4913762995283,70,2,1,2,1,1,2,1,2,3,60.0,2,,2,101868,1,1,0,1,1,347.0,0.0,228.0,42,1.0,0.0,2.0,4.0,2.1,2,2,766.287832864899,233.0,19602.40124372858,6,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0292311127027522,9334.476782727894,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +1864,2,70.0,0.0,2,111,980.0,1300.0,0.0,77,72,0.0,0.0,1671.09653250462,2280.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,2,101869,2,1,2,0,1,,650.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,629.70960076097,980.0,71164.33193651089,5,5,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03203852179816846,47442.88795767393,10,5,10,10_1,10_4,10_0_1 +1865,2,33.0,0.0,2,111,400.0,453.0,0.0,55,47,0.0,0.0,682.0802173488245,853.0,0.0,860.0223337167245,31,0,0,0,0,0,0,0,0,0,,2,,2,101870,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1223.83598836786,400.0,32106.506624906244,1,1,1,2,92.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026567823462247845,21404.337749937495,6,3,6,6_0,6_2,6_0_1 +1866,2,72.0,0.0,1,111,175.0,585.0,0.0,0,77,0.0,0.0,298.4100950901107,760.0,0.0,1110.6248680447766,50,0,0,0,0,0,0,0,0,0,,2,,1,101871,2,1,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,505.901194651471,175.0,29100.76256983292,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026116154110265414,29100.76256983292,8,4,8,8_0,8_4,8_1_0 +1867,1,47.0,300.0,2,111,360.0,1100.0,0.0,0,68,0.0,0.0,613.872195613942,1460.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,2,,2,101872,2,1,0,0,1,,0.0,650.0,32,1.0,2.0,4.0,3.0,2.0,3,1,465.801601737051,360.0,25076.221858346635,0,1,2,3,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.058222486953872526,12538.110929173317,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1868,2,77.0,0.0,2,112,0.0,0.0,2170.0,78,74,0.0,0.0,1367.790690199994,2170.0,0.0,2596.9087602153572,44,0,0,0,0,0,0,0,0,0,,1,,2,101873,2,1,2,0,2,,365.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,418.243962855007,0.0,19027.266297393006,5,5,0,1,110.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11404686128229148,12684.844198262004,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +1869,2,48.0,0.0,2,111,440.0,720.0,0.0,65,21,0.0,0.0,750.2882390837069,1160.0,0.0,1366.922914516648,71,2,1,2,2,1,2,2,2,0,,2,,2,101874,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,5.0,3.0,5,5,666.001360769639,440.0,37675.14802757347,1,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.030789527333801737,12558.382675857823,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +1870,2,86.0,0.0,1,112,380.0,0.0,0.0,71,71,0.0,1191.8945493092015,647.9762064813832,1330.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,101875,2,1,2,0,1,,269.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,866.12445129761,380.0,25808.85087760072,5,5,0,1,90.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.051532708926389885,17205.900585067146,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +1871,2,41.0,0.0,6,112,300.0,626.0,0.0,0,43,0.0,0.0,511.56016301161833,926.0,0.0,1188.463534010308,33,0,0,0,0,0,0,0,0,2,20.0,1,,4,101876,2,1,2,0,1,,90.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1530.58579548756,300.0,29831.87725324447,0,1,0,1,90.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03104062114962241,29831.87725324447,8,4,8,8_1,8_1,8_0_0 +1872,2,29.0,0.0,6,120,1600.0,0.0,0.0,0,63,0.0,0.0,2728.320869395298,1632.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,101877,2,2,2,0,1,,800.0,,22,1.0,2.0,5.0,2.0,1.5,2,2,892.546306619837,1600.0,42217.75683394531,0,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03865671988256339,28145.171222630204,8,4,8,8_1,8_0,8_0_0 +1873,2,66.0,0.0,2,111,956.0,0.0,0.0,68,78,1054.6828510366015,0.0,1630.1717194636906,2154.0,274.3466666285112,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,101878,2,1,1,0,1,,480.0,,42,1.0,0.0,4.0,5.0,2.8,4,2,202.15466936486,956.0,42986.04597353854,1,5,1,2,76.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050109284332082206,15352.159276263765,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +1874,2,51.0,0.0,1,300,1200.0,0.0,0.0,81,62,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,101879,2,1,1,0,1,,120.0,,43,2.0,1.0,5.0,4.0,2.5,4,3,737.327774380625,1200.0,28629.207744120995,4,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04610675963504655,11451.683097648398,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1875,2,70.0,0.0,1,112,800.0,2200.0,0.0,77,74,0.0,397.2981831030672,1364.160434697649,3300.0,0.0,4176.708905467536,10,0,0,0,0,0,0,0,0,0,,1,,1,101880,2,1,1,0,1,,400.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1130.11294936668,800.0,86885.38422751956,5,5,0,1,300.0,8,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03798107160760852,57923.58948501304,10,5,10,10_1,10_0,10_1_0 +1876,2,29.0,0.0,1,111,300.0,700.0,0.0,52,34,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,101881,2,2,0,0,1,,130.0,741.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1972.67530250333,300.0,33161.01550463456,1,1,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030155891934619452,18422.786391463644,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +1878,2,40.0,0.0,7,211,400.0,,,62,34,0.0,0.0,,510.0,152.4148147936173,,10,0,0,0,0,0,0,0,0,2,2.0,1,,5,101883,2,2,0,0,1,,180.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,83.58911703751345,400.0,69057.18908233057,1,1,1,2,98.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007385183306432783,34528.59454116529,9,5,9,9_1,9_2,9_0_0 +1879,0,42.0,0.0,6,111,600.0,,,62,22,0.0,0.0,,700.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,0,,1,,4,101884,2,2,0,0,2,,405.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,112.96809648509225,600.0,32285.8302611665,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021681338046367737,17936.572367314722,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +1880,1,55.0,158.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1438.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,101885,2,1,0,0,1,,0.0,480.0,32,2.0,4.0,4.0,3.0,2.0,3,2,1058.67649707733,0.0,30114.06895825194,0,1,2,3,76.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.047751766856665684,15057.03447912597,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +1881,2,33.0,0.0,2,300,700.0,0.0,0.0,62,21,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,101886,2,1,2,0,1,,530.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,642.622726943124,700.0,31096.616053961618,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02251048791885579,14807.91240664839,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +1882,2,58.0,0.0,2,111,450.0,,,0,77,0.0,0.0,,450.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,2,101887,2,1,0,0,2,,110.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,140.45558921057807,450.0,24642.0,0,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018261504747991233,24642.0,7,4,7,7_0,7_3,7_0_1 +1883,2,47.0,0.0,7,300,1100.0,0.0,0.0,68,48,0.0,132.4327277010224,1875.7205977092674,1300.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,101888,2,1,4,0,1,,300.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,732.025017143592,1100.0,41149.59685525527,1,1,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03159204705146401,27433.064570170183,7,4,7,7_1,7_0,7_0_0 +1884,2,74.0,0.0,1,111,380.0,820.0,0.0,74,74,0.0,0.0,647.9762064813832,1200.0,0.0,1556.773319310627,10,0,0,0,0,0,0,0,0,0,,2,,1,101889,2,1,0,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1696.65056713296,380.0,65965.71930161736,5,5,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.01819126680804007,43977.146201078234,10,5,10,10_0,10_3,10_1_0 +1885,2,66.0,0.0,7,112,300.0,1200.0,0.0,0,77,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,5,101890,2,2,3,0,1,,240.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2128.67233128308,300.0,15034.014985675074,0,5,0,1,80.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09977374649614568,15034.014985675074,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1886,2,54.0,0.0,2,111,250.0,200.0,0.0,0,55,0.0,0.0,426.3001358430153,450.0,0.0,379.7008095879578,42,0,0,0,0,0,0,0,0,3,20.0,2,,2,101891,2,1,0,1,1,444.0,0.0,256.0,12,1.0,1.0,3.0,1.0,1.0,1,1,696.380566458436,250.0,18147.79208318765,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024796404870479304,18147.79208318765,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +1887,2,69.0,0.0,7,112,1560.0,1600.0,0.0,85,54,0.0,0.0,2660.1128476604154,3160.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,101892,2,1,1,0,1,,350.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,251.00985361189,1560.0,64256.75279462363,6,1,1,2,140.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049177710708475104,30598.453711725535,8,4,8,8_1,8_0,8_0_0 +1888,2,60.0,0.0,6,112,2095.0,0.0,0.0,52,78,0.0,0.0,3572.395138364468,2311.0,299.28727268564853,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,101893,2,1,3,0,1,,300.0,434.0,42,2.0,1.0,5.0,3.0,2.0,3,3,890.263105602486,2095.0,41399.848473991515,1,5,2,3,100.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055821460347900344,20699.924236995757,5,3,5,5_1,5_2,5_0_0 +1889,2,79.0,0.0,5,300,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1547.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,101894,1,2,2,0,2,,509.0,500.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1308.6112759421,0.0,15266.350255158912,0,5,2,3,60.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10133397794127165,15266.350255158912,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1890,2,63.0,0.0,6,111,432.0,,,0,52,0.0,0.0,,672.0,332.541414095165,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,101895,2,1,0,0,2,,300.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,144.35599182871906,432.0,30949.808484952788,0,1,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021712573773330898,30949.808484952788,8,4,8,8_1,8_2,8_0_0 +1891,2,44.0,0.0,6,120,370.0,,,0,62,0.0,0.0,,496.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,101896,1,3,0,0,2,,180.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,131.69408980548226,370.0,1450.6632493632314,0,4,0,1,36.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.34191257014177423,1450.6632493632314,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1892,2,68.0,0.0,9,112,1300.0,,,0,75,0.0,0.0,,1300.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,101897,2,2,0,0,2,,120.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,102.01478504302294,1300.0,43861.64471257254,0,5,1,2,76.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029638651457759103,43861.64471257254,10,5,10,10_1,10_1,10_0_0 +1893,1,53.0,84.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1108.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,4.0,2,,2,101898,2,2,0,0,1,,131.0,470.0,32,1.0,2.0,3.0,2.0,1.5,2,2,515.412062737608,0.0,13665.02327826152,0,1,2,3,67.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08108292078525907,9110.015518841014,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1894,2,80.0,0.0,1,221,451.0,0.0,0.0,77,71,1582.0242765549024,0.0,769.0454450607996,2101.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101899,2,1,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2543.44914046658,451.0,20243.263819787066,5,5,0,1,100.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10378761145948943,13495.509213191377,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +1895,2,68.0,0.0,1,111,744.0,0.0,0.0,0,78,0.0,0.0,1268.6692042688135,744.0,0.0,0.0,71,2,1,2,2,2,2,2,1,0,,2,,1,101900,1,2,0,0,2,,0.0,372.0,11,0.0,0.0,3.0,1.0,1.0,1,1,330.754594352314,744.0,12354.274629836382,0,5,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.06022207068338851,12354.274629836382,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +1896,2,33.0,0.0,9,111,0.0,0.0,0.0,55,42,0.0,0.0,0.0,1255.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,101901,2,1,1,0,1,,677.0,790.0,43,2.0,0.0,4.0,3.0,1.8,2,2,439.422022129292,0.0,35997.28539899584,4,1,2,3,102.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03486374003176942,19998.49188833102,5,3,5,5_1,5_2,5_0_0 +1897,2,58.0,0.0,1,300,2070.0,0.0,0.0,52,21,1582.0242765549024,0.0,3529.765124780167,3720.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,101902,2,1,1,0,1,,160.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,1152.16863872596,2070.0,78257.33234613338,1,1,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04753548183250591,39128.66617306669,9,5,9,9_1,9_0,9_1_0 +1898,2,55.0,0.0,5,120,380.0,,,0,52,0.0,0.0,,447.0,92.8344781015669,,60,0,0,0,0,0,0,0,0,3,60.0,2,,3,101903,2,1,0,0,2,,350.0,280.0,12,1.0,4.0,2.0,1.0,1.0,1,1,88.19795974664626,380.0,15576.144826823444,0,1,2,3,37.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0286977300846759,15576.144826823444,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +1899,2,71.0,0.0,6,400,0.0,,,0,71,0.0,0.0,,90.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,0,,1,,4,101904,2,3,0,0,2,,0.0,,21,0.0,10.0,4.0,3.0,1.8,2,2,8.280596007677529,0.0,5646.819875776398,0,6,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015938174402565945,3137.1221532091095,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +1900,2,42.0,0.0,7,111,0.0,,,0,54,0.0,0.0,,213.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,101905,2,1,0,0,1,,133.0,670.0,32,1.0,0.0,3.0,2.0,1.3,1,1,163.33533715133072,0.0,31531.81456222527,0,1,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0067550822227392966,24255.241970942516,7,4,7,7_0,7_2,7_0_0 +1901,2,32.0,0.0,2,111,810.0,0.0,0.0,43,63,0.0,0.0,1381.2124401313695,810.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,101906,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1415.68912247696,810.0,42263.61059340212,1,1,0,1,41.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01916542360265006,28175.740395601413,8,4,8,8_0,8_3,8_0_1 +1902,2,44.0,0.0,1,111,1000.0,500.0,0.0,37,46,0.0,0.0,1705.2005433720612,1500.0,0.0,949.2520239698945,12,0,0,0,0,0,0,0,0,2,15.0,2,,1,101907,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,817.484293773248,1000.0,181570.70736237668,4,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008261244458371347,75654.46140099029,10,5,10,10_0,10_4,10_1_0 +1903,1,57.0,150.0,7,111,240.0,,,0,68,0.0,0.0,,390.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,3,45.0,1,,5,101908,1,2,0,0,2,,120.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,186.52322345364672,240.0,6095.568686592247,0,4,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06398090482645863,6095.568686592247,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +1904,1,60.0,218.0,2,111,0.0,0.0,540.0,0,42,0.0,0.0,340.37187682396166,540.0,0.0,646.2353596849276,20,0,0,0,0,0,0,0,0,0,,2,,2,101909,2,1,0,0,1,,0.0,332.0,12,1.0,1.0,2.0,1.0,1.0,1,1,441.835099310238,0.0,6060.0,0,4,2,3,57.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0891089108910891,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +1905,2,67.0,0.0,1,300,650.0,0.0,0.0,77,75,2370.9270491302805,0.0,1108.3803531918397,3038.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,101910,2,1,2,0,1,,0.0,322.0,41,0.0,2.0,6.0,2.0,1.5,2,2,1388.55861396693,650.0,22152.282135483318,5,5,2,3,130.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1371416263759913,14768.188090322212,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +1906,2,53.0,0.0,2,111,300.0,0.0,0.0,0,85,0.0,0.0,511.56016301161833,300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,101911,2,1,1,0,1,,100.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,308.410350294285,300.0,18027.333198160257,0,7,0,1,80.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.016641396522843206,18027.333198160257,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1907,2,48.0,0.0,6,111,500.0,,,0,54,0.0,0.0,,650.0,207.83838380947813,,31,0,0,0,0,0,0,0,0,2,5.0,2,,4,101912,2,1,0,0,2,,682.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,102.45785839085165,500.0,31453.355729065162,0,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020665521529690176,17474.086516147312,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +1908,1,34.0,322.0,2,111,0.0,,,0,56,0.0,0.0,,455.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,101913,2,1,0,0,2,,166.0,500.0,32,1.0,0.0,4.0,2.0,1.3,1,1,108.6042858053534,0.0,2876.354611421249,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1581863370369267,2212.580470324038,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1909,0,81.0,0.0,2,221,760.0,0.0,0.0,0,71,998.7846599316616,0.0,1295.9524129627664,1757.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101914,2,2,0,1,1,,600.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,746.86983955524,760.0,14423.477998814602,0,5,0,1,80.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12181527923739334,14423.477998814602,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +1910,2,61.0,0.0,9,111,948.0,,,0,63,0.0,0.0,,1043.0,131.6309764126695,,71,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,101915,2,2,0,0,2,,414.0,323.0,32,2.0,0.0,1.0,2.0,1.5,2,2,156.61619331720698,948.0,33849.25200195035,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030813088571053318,22566.168001300233,6,3,6,6_0,6_2,6_0_0 +1911,2,69.0,0.0,5,112,1680.0,0.0,0.0,78,75,2109.365702073203,0.0,2864.7369128650625,3800.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,101916,2,1,1,0,1,,150.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,882.467118115575,1680.0,35786.04101580212,5,5,0,1,210.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10618665524700052,23857.360677201414,6,3,6,6_1,6_0,6_0_0 +1912,1,24.0,231.0,7,111,0.0,,,0,54,0.0,0.0,,2013.0,0.0,,42,0,0,0,0,0,0,0,0,2,40.0,1,,5,101917,2,2,0,0,2,,223.0,595.0,12,1.0,0.0,2.0,1.0,1.0,1,1,155.97766425114298,0.0,15911.837122600562,0,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1265095905953444,15911.837122600562,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +1913,1,37.0,418.0,7,111,800.0,,,0,54,0.0,0.0,,850.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,0,,2,,5,101918,2,1,0,0,2,,300.0,456.0,32,1.0,0.0,3.0,3.0,1.6,1,1,127.74338789218304,800.0,13079.474308678902,0,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06498732135097979,8174.671442924314,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +1914,2,39.0,0.0,9,111,800.0,0.0,0.0,38,54,0.0,0.0,1364.160434697649,800.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,101919,2,1,1,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,652.733075975909,800.0,53336.27403945121,1,1,1,2,184.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014999172972005216,25398.225733072002,7,4,7,7_1,7_4,7_0_0 +1915,1,35.0,84.0,2,111,280.0,0.0,0.0,85,62,1315.189515242642,0.0,477.4561521441771,1527.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,80.0,2,,2,101920,2,2,0,1,2,,0.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,286.786253709177,280.0,25489.048415264468,6,1,1,2,90.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05990808189942215,12137.642102506888,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +1916,2,67.0,0.0,6,111,1500.0,,,34,34,0.0,0.0,,1588.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,2,1.0,1,,4,101921,2,1,0,0,2,,359.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,107.87746008577363,1500.0,57630.48530347227,1,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027554860793516902,28815.242651736135,8,4,8,8_1,8_3,8_0_0 +1918,0,45.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,318.0,0.0,0.0,71,2,2,2,2,2,2,1,2,0,,2,,1,101923,2,3,0,0,2,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1182.11205129789,0.0,11567.55646263051,0,1,5,0,18.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02749068059683242,11567.55646263051,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +1919,2,48.0,0.0,7,111,90.0,,,0,85,0.0,0.0,,174.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,5,101924,2,2,0,0,2,,320.0,,31,0.0,0.0,3.0,2.0,1.3,1,1,124.39312457425717,90.0,8666.94856171397,0,6,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02007627006910375,6666.883509010747,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1920,2,45.0,0.0,8,112,1340.0,0.0,0.0,52,64,0.0,0.0,2284.968728118562,1580.0,332.541414095165,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,101925,2,2,1,0,1,,550.0,,43,4.0,0.0,7.0,5.0,2.8,4,4,1209.5665846534,1340.0,44968.66907441773,1,1,1,2,190.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035135574001207155,16060.23895514919,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1921,2,49.0,0.0,2,111,420.0,60.0,0.0,0,33,0.0,0.0,716.1842282162656,480.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,101926,1,1,0,1,1,1047.0,0.0,449.0,32,3.0,0.0,4.0,3.0,2.0,3,3,941.419645636767,420.0,38517.327908039166,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01246192366059268,19258.663954019583,5,3,5,5_0,5_4,5_0_1 +1922,2,56.0,0.0,1,111,560.0,0.0,0.0,0,46,0.0,0.0,954.9123042883542,560.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,101927,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1436.89031932519,560.0,15730.553094335282,0,1,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035599511132361976,15730.553094335282,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +1923,2,66.0,0.0,1,111,600.0,100.0,0.0,75,74,0.0,0.0,1023.1203260232367,700.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,0,,2,,1,101928,2,2,0,1,1,670.0,0.0,1230.0,41,0.0,1.0,3.0,2.0,1.5,2,2,725.760373889795,600.0,41616.88871181705,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01682009447768343,27744.5924745447,7,4,7,7_0,7_4,7_1_0 +1924,1,53.0,254.0,1,111,159.0,,,0,63,0.0,0.0,,251.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,,1,101929,2,3,0,0,2,,455.0,356.0,12,1.0,0.0,2.0,1.0,1.0,1,1,111.03551464362843,159.0,612.4243783873345,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.409846519599604,612.4243783873345,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +1925,2,46.0,0.0,7,211,1200.0,,,85,67,0.0,0.0,,1320.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,5,101930,1,2,0,0,2,,900.0,580.0,42,1.0,1.0,2.0,3.0,2.0,3,2,63.82934250760583,1200.0,25249.66197932652,6,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.052277927565159754,12624.83098966326,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +1926,2,79.0,0.0,5,111,423.0,0.0,0.0,75,75,3691.3899786281054,0.0,721.2998298463818,3983.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,101931,2,2,1,0,2,,300.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1601.20201222214,423.0,54195.71796783226,5,5,0,1,129.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07349289112405707,36130.478645221505,9,5,9,9_1,9_2,9_0_0 +1927,2,46.0,0.0,5,111,444.0,0.0,0.0,38,37,0.0,0.0,757.1090412571951,444.0,0.0,0.0,10,1,2,2,1,2,2,2,2,3,40.0,2,,3,101932,2,2,0,1,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,500.580026400225,444.0,93690.60042975258,1,1,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0047390026103301865,62460.40028650172,10,5,10,10_0,10_4,10_0_0 +1928,2,60.0,0.0,2,111,600.0,0.0,0.0,75,22,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,101933,2,2,0,1,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,269.502841679031,600.0,76583.51167711761,5,1,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007834584584337806,51055.67445141174,10,5,10,10_0,10_4,10_0_1 +1929,2,37.0,0.0,1,112,989.0,0.0,0.0,45,43,0.0,463.51454695357836,1686.4433373949685,1339.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,101934,2,2,1,0,1,,333.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1313.01341857642,989.0,46951.15230238038,1,1,1,2,58.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028519001863392263,31300.76820158692,8,4,8,8_1,8_0,8_1_0 +1930,2,29.0,0.0,6,111,697.0,,,0,63,0.0,0.0,,790.0,128.85979796187644,,42,0,0,0,0,0,0,0,0,0,,1,,4,101935,2,1,0,0,2,,436.0,,22,1.0,0.0,4.0,3.0,2.0,3,3,108.61854464204947,697.0,52241.09146821335,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01512219553224082,26120.545734106676,7,4,7,7_1,7_2,7_0_0 +1931,2,46.0,0.0,9,111,700.0,,,0,85,0.0,0.0,,700.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2007.0,6,101936,2,1,0,0,2,,200.0,422.0,11,0.0,0.0,3.0,1.0,1.0,1,1,97.49138168729321,700.0,21418.245476476324,0,7,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03268241559603052,21418.245476476324,6,3,6,6_0,6_2,6_0_0 +1932,2,68.0,0.0,6,400,912.0,,,77,75,0.0,0.0,,1004.0,127.47420873647992,,33,0,0,0,0,0,0,0,0,0,,1,,4,101937,2,2,0,0,2,,560.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,19.311440066095045,912.0,46693.0,5,5,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02150215235688433,31128.666666666668,8,4,8,8_1,8_0,8_0_0 +1933,2,51.0,0.0,7,111,2500.0,0.0,0.0,63,46,0.0,66.2163638505112,4263.001358430153,2610.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,4,135.0,1,,5,101938,2,2,2,0,1,,500.0,,43,2.0,3.0,5.0,3.0,1.8,2,2,504.218035846761,2500.0,46288.09132269161,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0563859931446452,25715.606290384225,7,4,7,7_1,7_4,7_0_0 +1934,2,31.0,0.0,7,111,1200.0,0.0,0.0,0,64,0.0,927.0290939071567,2046.2406520464733,2230.0,457.2444443808519,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,101939,2,1,2,0,1,,0.0,,22,1.0,2.0,4.0,3.0,2.0,3,3,1265.01931900262,1200.0,24521.394363251555,0,4,0,1,110.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09094099491103737,12260.697181625777,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +1935,2,57.0,0.0,1,112,600.0,0.0,0.0,45,46,2109.365702073203,397.2981831030672,1023.1203260232367,3020.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,,1,101940,2,2,2,0,1,,260.0,,43,2.0,1.0,5.0,5.0,2.4,2,2,1247.41528722757,600.0,67020.57805215468,1,1,0,1,120.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04506078711600889,27925.240855064454,7,4,7,7_1,7_0,7_1_0 +1936,1,54.0,154.0,9,120,1000.0,0.0,0.0,0,75,0.0,0.0,1705.2005433720612,1050.0,69.27946126982604,0.0,42,0,0,0,0,0,0,0,0,0,,1,2004.0,6,101941,2,1,1,0,1,,340.0,675.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1960.93407890382,1000.0,10682.162083494251,0,7,2,3,97.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09829470773734353,10682.162083494251,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +1937,2,61.0,0.0,7,111,900.0,0.0,0.0,0,77,0.0,66.2163638505112,1534.680489034855,1010.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,101942,2,2,3,0,1,,58.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,368.888644435804,900.0,19990.47360300858,0,5,0,1,89.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05052406561533361,19990.47360300858,5,3,5,5_1,5_3,5_0_0 +1938,2,56.0,0.0,7,300,650.0,0.0,0.0,69,11,0.0,0.0,1108.3803531918397,1650.0,1385.589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,101943,2,1,2,0,1,,380.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1107.34237456195,650.0,56990.05943003013,1,1,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028952417605842242,37993.37295335342,9,5,9,9_1,9_0,9_0_0 +1939,2,51.0,0.0,5,111,300.0,1000.0,0.0,0,43,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,33,2,2,2,2,1,2,2,2,1,2.0,2,,3,101944,1,2,0,0,1,,350.0,,32,1.0,2.0,4.0,3.0,2.0,3,1,1451.80982155669,300.0,19818.357295572278,0,1,1,2,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.06559574946660386,9909.178647786139,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +1941,2,45.0,0.0,7,111,1400.0,0.0,0.0,34,37,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,5,101946,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,536.983235959191,1400.0,161561.81739849228,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008665413787385787,64624.72695939691,10,5,10,10_1,10_4,10_0_0 +1942,1,42.0,360.0,2,111,250.0,300.0,0.0,0,55,0.0,0.0,426.3001358430153,550.0,0.0,569.5512143819367,41,0,0,0,0,0,0,0,0,3,60.0,2,,2,101947,2,1,0,1,1,773.0,0.0,324.0,32,1.0,0.0,4.0,3.0,1.6,2,1,383.173156230664,250.0,13684.914648071523,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04019023970145886,8553.071655044701,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +1943,2,44.0,0.0,7,120,574.0,1350.0,0.0,52,37,0.0,0.0,978.7851118955631,1924.0,0.0,2562.980464718715,31,0,0,0,0,0,0,0,0,3,100.0,1,,5,101948,2,1,3,0,1,,450.0,,43,3.0,0.0,4.0,5.0,2.8,4,3,754.064649423929,574.0,90674.0,1,1,1,2,117.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021218872002999756,32383.57142857143,8,4,8,8_1,8_0,8_0_0 +1944,2,32.0,0.0,1,111,774.0,380.0,0.0,46,31,0.0,529.7309108040896,1319.8252205699753,1554.0,0.0,721.4315382171199,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,101949,1,1,2,0,2,,330.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,365.401287687169,774.0,64584.869139227725,1,1,1,2,112.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024061363299350984,35880.48285512652,9,5,9,9_1,9_3,9_1_0 +1945,2,57.0,0.0,8,111,838.0,0.0,0.0,0,43,0.0,0.0,1428.9580553457872,838.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,2003.0,6,101950,2,1,0,0,1,,0.0,896.0,32,1.0,2.0,3.0,2.0,1.5,2,2,902.486594240985,838.0,47093.732158274826,0,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017794300039410984,31395.821438849885,8,4,8,8_0,8_4,8_0_0 +1946,1,70.0,110.0,7,111,190.0,650.0,0.0,0,77,0.0,0.0,323.9881032406916,840.0,0.0,1234.027631160863,70,0,0,0,0,0,0,0,0,0,,1,,5,101951,2,1,2,0,1,,300.0,392.0,11,0.0,3.0,3.0,1.0,1.0,1,1,377.616551734036,190.0,12149.008119901999,0,5,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06914144691564961,12149.008119901999,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +1947,2,47.0,0.0,2,112,1330.0,0.0,0.0,21,43,1169.643281799591,0.0,2267.9167226848413,2529.0,124.70303028568689,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,101952,2,2,1,0,1,,247.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,680.342597933461,1330.0,62954.39504088316,1,1,1,2,160.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0401719371357257,25181.758016353262,7,4,7,7_1,7_0,7_0_1 +1948,1,46.0,196.0,1,111,499.0,575.0,0.0,85,67,0.0,0.0,850.8950711426585,1074.0,0.0,1091.6398275653787,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,101953,2,1,1,0,1,,431.0,296.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,3,2,575.842555897085,499.0,28058.983707593674,6,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03827651105229947,10791.916810612953,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +1949,1,33.0,181.0,2,111,430.0,295.0,0.0,56,63,0.0,0.0,733.2362336499863,725.0,0.0,560.0586941422378,71,2,2,2,2,1,2,2,2,0,,2,,2,101954,2,2,0,0,1,,383.0,700.0,43,2.0,0.0,3.0,4.0,2.1,3,2,577.373927605588,430.0,29954.163721269026,1,1,2,3,52.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.02420364683675719,14263.887486318583,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +1950,2,42.0,0.0,9,112,440.0,0.0,0.0,38,38,923.9021775080629,0.0,750.2882390837069,1316.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,101955,2,1,0,1,1,876.0,0.0,665.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1528.60825116436,440.0,115479.21525278478,1,1,2,3,106.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011395990153892777,54990.10250132608,10,5,10,10_0,10_0,10_0_0 +1952,1,68.0,219.0,2,111,113.0,0.0,0.0,0,72,955.542663039161,0.0,192.6876614010429,1019.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,101957,1,3,0,1,1,,0.0,505.0,11,0.0,2.0,4.0,1.0,1.0,1,1,248.153205988536,113.0,11517.2,0,5,2,3,60.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08847636578335011,11517.2,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +1953,2,86.0,0.0,1,300,0.0,0.0,0.0,0,71,0.0,0.0,0.0,1509.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,101958,2,1,1,0,1,,0.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1108.07688400992,0.0,12433.12551187378,0,5,0,1,90.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12136932089673569,12433.12551187378,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +1954,2,44.0,0.0,2,112,235.0,0.0,0.0,85,62,2003.897416969543,198.6490915515336,400.72212769243436,2355.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,101959,2,1,4,0,1,,340.0,,42,1.0,2.0,6.0,4.0,2.1,3,2,1012.82358547196,235.0,24836.93557848432,5,1,0,1,120.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09481846069770715,11827.112180230628,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +1955,1,48.0,261.0,8,111,485.0,,,0,68,0.0,0.0,,651.0,230.0078114158225,,50,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,101960,2,2,0,0,2,,317.0,,32,2.0,0.0,5.0,4.0,2.3,3,3,127.73698120397688,485.0,20193.977148099722,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032237334687746734,8779.990064391184,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +1956,2,37.0,0.0,9,111,1089.0,,,0,56,0.0,0.0,,1219.0,180.1265993015477,,71,2,2,2,2,2,2,2,1,0,,1,2004.0,6,101961,2,3,0,0,1,,0.0,,32,1.0,0.0,4.0,4.0,2.3,3,1,114.46399252258698,1089.0,22888.78766803199,0,4,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.05325751707254189,9951.646812187822,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +1957,2,50.0,0.0,9,111,1000.0,,,56,21,0.0,0.0,,1276.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,101962,2,3,0,0,2,,600.0,,43,2.0,0.0,7.0,6.0,3.5,6,4,101.74888869020057,1000.0,44028.57949200393,1,1,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0289811757436266,12579.594140572552,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +1958,1,47.0,247.0,1,111,241.0,1100.0,0.0,0,52,0.0,0.0,410.95333095266676,1341.0,0.0,2088.354452733768,71,2,2,2,2,1,2,2,2,1,20.0,2,,1,101963,2,3,0,0,1,,363.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2389.99849439592,241.0,23135.067474498548,0,1,1,2,53.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.05796395456715936,23135.067474498548,6,3,6,6_0,6_3,6_1_0 +1959,1,53.0,250.0,1,111,1200.0,1200.0,0.0,85,62,0.0,0.0,2046.2406520464733,2760.0,498.81212114274757,2278.2048575277468,71,2,2,2,2,1,2,2,2,0,,1,,1,101964,1,1,2,0,2,,600.0,,42,4.0,0.0,7.0,10.0,4.8999999999999995,7,6,293.400364065759,1200.0,19091.49858479252,6,4,1,2,190.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,1,1,0.14456696459640414,3896.2242009780657,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +1960,2,62.0,0.0,6,111,570.0,1300.0,0.0,78,75,0.0,0.0,971.9643097220749,1870.0,0.0,2468.055262321726,44,0,0,0,0,0,0,0,0,0,,1,,4,101965,2,1,3,0,2,,170.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,506.993731816132,570.0,41324.182083425716,5,5,0,1,75.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04525195432119681,27549.454722283812,7,4,7,7_1,7_2,7_0_0 +1961,2,64.0,0.0,5,222,1900.0,0.0,0.0,72,77,0.0,0.0,3239.8810324069163,2160.0,360.2531986030954,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,101966,2,1,1,0,1,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1139.27050562355,1900.0,26758.492769978846,5,5,0,1,86.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08072203537649807,17838.995179985897,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +1962,2,52.0,0.0,1,300,840.0,0.0,0.0,75,52,1582.0242765549024,66.2163638505112,1432.3684564325313,2510.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,1,1.0,1,,1,101967,2,1,2,0,1,,400.0,,42,3.0,1.0,8.0,4.0,2.5,4,4,1366.34647278509,840.0,47243.389692273304,5,1,0,1,240.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05312912592320852,18897.35587690932,5,3,5,5_1,5_0,5_1_0 +1963,2,96.0,0.0,2,111,370.0,800.0,0.0,77,75,0.0,0.0,630.9242010476627,1170.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,2,101968,2,1,1,0,1,,190.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1089.60740345648,370.0,30111.51099067101,6,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038855572553714864,20074.34066044734,5,3,5,5_1,5_3,5_0_1 +1964,2,44.0,0.0,1,111,800.0,1000.0,0.0,85,21,0.0,331.081819252556,1364.160434697649,2050.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,101969,2,1,2,0,1,,350.0,,42,4.0,0.0,5.0,5.0,3.0,5,4,619.64976358864,800.0,65854.52390149485,6,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031129220569058987,21951.507967164947,6,3,6,6_1,6_4,6_1_0 +1965,2,67.0,0.0,9,112,2000.0,0.0,0.0,75,75,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,101970,2,1,1,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,730.959513862225,2000.0,35275.825407683966,5,5,0,1,140.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056696051102587366,23517.21693845598,6,3,6,6_1,6_0,6_0_0 +1966,2,52.0,0.0,8,120,500.0,,,52,52,0.0,0.0,,776.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,101971,2,1,0,0,2,,400.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,94.09752147585965,500.0,28085.97386924808,1,1,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027629449618254424,13374.273271070513,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1967,2,59.0,0.0,2,111,890.0,1400.0,0.0,78,65,0.0,0.0,1517.6284836011343,2290.0,0.0,2657.9056671157045,70,0,0,0,0,0,0,0,0,4,1.0,1,,2,101972,2,1,1,0,1,,250.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,224.957237447639,890.0,23322.93203971592,5,1,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0981866257681679,15548.621359810613,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +1968,2,72.0,0.0,2,111,0.0,0.0,559.0,0,75,0.0,0.0,352.34792434184175,559.0,0.0,668.9732704886566,70,0,0,0,0,0,0,0,0,0,,2,,2,101973,2,1,0,1,1,,0.0,585.0,11,0.0,5.0,4.0,1.0,1.0,1,1,490.442592066541,0.0,28290.19041609481,0,5,2,3,72.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.019759499380462796,28290.19041609481,8,4,8,8_0,8_2,8_0_1 +1969,2,45.0,0.0,8,120,1296.0,2880.0,0.0,46,38,0.0,0.0,2209.9399042101913,4176.0,0.0,5467.691658066592,50,0,0,0,0,0,0,0,0,4,90.0,1,2000.0,6,101974,2,1,2,0,1,,340.0,,43,2.0,0.0,8.0,4.0,2.5,4,2,1267.72363004629,1296.0,187442.90354724418,1,1,1,2,160.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02227878421093417,74977.16141889767,10,5,10,10_1,10_0,10_0_0 +1970,1,39.0,319.0,5,111,500.0,0.0,0.0,53,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,90.0,2,,3,101975,1,1,0,1,1,44.0,0.0,405.0,43,2.0,1.0,3.0,3.0,1.8,2,2,835.082166510188,500.0,28253.17327116642,1,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017697127158111885,15696.207372870233,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +1971,2,63.0,0.0,6,112,606.0,0.0,0.0,56,78,2493.270259850526,0.0,1033.351529283469,3030.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,101976,2,1,2,0,1,,288.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,914.714563733348,606.0,22013.8898196267,4,5,0,1,216.0,9,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1376403727295198,14675.9265464178,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +1972,2,83.0,0.0,2,111,388.0,0.0,0.0,77,75,0.0,0.0,661.6178108283598,388.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,101977,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,602.368820530024,388.0,40314.47049407071,5,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009624335759465462,26876.313662713805,7,4,7,7_0,7_4,7_0_1 +1973,1,41.0,400.0,1,211,660.0,620.0,0.0,46,22,0.0,0.0,1125.4323586255605,1346.0,91.44888887617039,1177.072509722669,50,0,0,0,0,0,0,0,0,1,1.0,1,,1,101978,2,1,2,0,1,,240.0,540.0,43,2.0,0.0,7.0,4.0,2.1,2,2,1835.23405510554,660.0,18291.00803178237,1,1,2,3,110.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07358807112550586,8710.003824658272,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +1974,2,74.0,0.0,2,111,400.0,0.0,0.0,77,78,1582.0242765549024,0.0,682.0802173488245,2020.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,101979,2,1,1,0,2,,300.0,332.0,41,0.0,2.0,3.0,2.0,1.5,2,2,458.283921142569,400.0,24026.667136874345,5,5,2,3,60.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0840732502969525,16017.778091249564,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +1975,2,48.0,0.0,8,112,500.0,900.0,0.0,56,37,0.0,0.0,852.6002716860306,1400.0,0.0,1708.65364314581,60,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,101980,2,1,2,0,1,,700.0,,43,3.0,0.0,4.0,5.0,2.8,4,3,678.957477392878,500.0,38291.72037160722,1,1,1,2,80.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03656142859118131,13675.61441843115,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +1976,2,42.0,0.0,9,111,450.0,,,42,42,0.0,0.0,,600.0,207.83838380947813,,20,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,101981,2,2,0,0,2,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,294.93676971178945,450.0,64935.909269288,1,1,1,2,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009239879856179594,30921.861556803808,8,4,8,8_1,8_3,8_0_0 +1977,2,83.0,0.0,5,211,430.0,,,0,71,0.0,0.0,,706.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,101982,2,1,0,0,2,,1200.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,118.13612714348994,430.0,9082.0,0,5,0,1,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07773618145782867,9082.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +1978,2,44.0,0.0,7,111,360.0,0.0,0.0,45,62,0.0,0.0,613.872195613942,360.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,5,101983,2,2,0,1,1,1152.0,0.0,393.0,43,2.0,3.0,3.0,2.0,1.5,2,2,640.457375668601,360.0,44071.16454147144,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008168606474222757,29380.77636098096,8,4,8,8_0,8_4,8_0_0 +1979,2,49.0,0.0,1,111,492.0,1379.0,0.0,85,38,0.0,0.0,838.958667339054,1871.0,0.0,2618.037082108969,12,2,2,2,1,1,2,1,2,3,80.0,1,,1,101984,2,3,3,0,1,,528.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,548.356922815998,492.0,66150.91021703143,6,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0282838133876242,36750.505676128574,9,5,9,9_1,9_4,9_1_0 +1980,2,75.0,0.0,1,111,0.0,0.0,0.0,77,72,0.0,0.0,0.0,4026.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,101985,2,1,0,0,1,,358.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,811.101211709149,0.0,109887.12607637749,5,5,0,1,82.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03663759480980249,73258.08405091833,10,5,10,10_0,10_4,10_1_0 +1981,2,26.0,0.0,2,111,0.0,0.0,0.0,43,63,0.0,0.0,0.0,533.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,2,101986,2,1,0,1,1,733.0,0.0,575.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1986.59463187686,0.0,18029.247671057517,1,1,2,3,60.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02956307493937358,12019.498447371678,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +1982,2,74.0,0.0,6,111,400.0,600.0,0.0,77,77,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,70,0,0,0,0,0,0,0,0,0,,1,,4,101987,2,1,2,0,2,,600.0,,41,0.0,0.0,7.0,3.0,2.0,3,3,861.461147398774,400.0,37396.157017926824,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026740715617399508,18698.078508963412,5,3,5,5_1,5_4,5_0_0 +1983,2,45.0,0.0,7,300,700.0,0.0,0.0,11,11,2109.365702073203,0.0,1193.6403803604428,2700.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,101988,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,3,723.881126375082,700.0,50343.297802845795,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05363176664694729,19362.806847248386,5,3,5,5_1,5_0,5_0_0 +1984,2,33.0,0.0,1,111,0.0,0.0,0.0,37,46,0.0,0.0,0.0,3937.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,101989,2,1,2,0,1,,247.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,233.125293725947,0.0,76294.77236435383,1,1,1,2,140.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05160248701180254,42385.98464686324,9,5,9,9_1,9_3,9_1_0 +1985,2,77.0,0.0,2,300,448.0,,,0,86,0.0,0.0,,624.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,2,101990,2,1,0,0,2,,700.0,,21,0.0,2.0,6.0,2.0,1.5,2,2,86.0563549619415,448.0,15624.319162765498,0,5,0,1,95.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03993774023043909,10416.212775176999,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +1986,2,40.0,0.0,2,211,900.0,,,21,11,0.0,0.0,,1164.0,365.79555550468154,,41,0,0,0,0,0,0,0,0,0,,1,,2,101991,2,1,0,0,1,,780.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,4,4,106.31514999916412,900.0,51551.46762550112,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022579376565104822,16629.505685645527,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +1987,2,61.0,0.0,1,112,1748.0,0.0,0.0,78,78,158.20242765549023,397.2981831030672,2980.690549814363,2288.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,101992,2,1,2,0,1,,376.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,825.57111023422,1748.0,44155.28762935944,5,5,0,1,200.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051817123675097033,29436.85841957296,8,4,8,8_1,8_0,8_1_0 +1988,2,40.0,0.0,2,111,210.0,0.0,0.0,56,55,0.0,0.0,358.0921141081328,210.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,101993,2,1,0,1,1,518.0,0.0,100.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1269.65005801058,210.0,43735.64574837634,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0048015753833426855,29157.097165584226,8,4,8,8_0,8_4,8_0_1 +1989,2,60.0,0.0,1,111,650.0,3010.0,0.0,54,75,0.0,0.0,1108.3803531918397,3660.0,0.0,5714.497184298765,50,0,0,0,0,0,0,0,0,0,,1,,1,101994,2,2,2,0,1,,355.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,585.415978795145,650.0,107450.97356826704,1,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03406204595879892,71633.9823788447,10,5,10,10_1,10_4,10_1_0 +1990,0,91.0,0.0,2,111,340.0,391.0,0.0,0,78,0.0,0.0,579.7681847465008,731.0,0.0,742.3150827444575,70,2,2,2,2,1,2,2,2,0,,2,,2,101995,1,2,0,1,2,,304.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1792.71382722953,340.0,31546.452295985386,0,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.023172177750492323,31546.452295985386,8,4,8,8_0,8_3,8_0_1 +1991,2,71.0,0.0,5,111,850.0,1267.0,0.0,86,74,0.0,0.0,1449.420461866252,2117.0,0.0,2405.4046287397127,50,0,0,0,0,0,0,0,0,0,,1,,3,101996,2,1,1,0,1,,280.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1172.49675120382,850.0,52067.75288659579,6,5,0,1,106.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040658562788581494,34711.83525773053,9,5,9,9_1,9_3,9_0_0 +1992,2,42.0,0.0,1,111,1100.0,1200.0,0.0,85,64,0.0,0.0,1875.7205977092674,2300.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,101997,2,1,2,0,1,,600.0,,42,2.0,0.0,7.0,6.0,3.3,5,4,260.887546437683,1100.0,65630.85903396383,6,1,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0350444902573918,19888.139101201163,5,3,5,5_1,5_3,5_1_0 +1993,2,74.0,0.0,1,111,350.0,480.0,0.0,78,78,0.0,0.0,596.8201901802214,830.0,0.0,911.2819430110987,44,0,0,0,0,0,0,0,0,0,,1,,1,101998,2,1,1,0,1,,190.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1027.86784327315,350.0,38956.86497085784,5,5,0,1,65.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021305615855405503,25971.243313905226,7,4,7,7_1,7_2,7_1_0 +1994,2,34.0,0.0,5,111,295.0,320.0,0.0,0,62,0.0,0.0,503.03416029475807,615.0,0.0,607.5212953407324,50,0,0,0,0,0,0,0,0,3,45.0,2,,3,101999,1,2,0,1,1,1284.0,0.0,412.0,12,1.0,0.0,4.0,1.0,1.0,1,1,258.112793237196,295.0,18150.405162625404,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03388354113804488,18150.405162625404,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +1995,2,43.0,0.0,9,111,240.0,,,63,56,0.0,33.1081819252556,,403.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,102000,2,1,0,0,2,,600.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,77.132202546454,240.0,17615.34949982108,4,1,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022877774863569598,9786.305277678379,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +1996,2,31.0,0.0,2,112,1560.0,0.0,0.0,42,47,0.0,397.2981831030672,2660.1128476604154,1920.0,83.13535352379125,0.0,50,2,2,2,1,1,2,2,2,2,20.0,1,,2,102001,2,1,3,0,1,,190.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,122.194719753407,1560.0,39513.83173129776,1,1,1,2,130.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.048590579953278076,18816.110348237027,5,3,5,5_1,5_0,5_0_1 +1997,2,78.0,0.0,2,221,800.0,1700.0,0.0,86,74,0.0,0.0,1364.160434697649,2500.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,0,,1,,2,102002,2,2,3,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1603.12833580969,800.0,39197.997896277855,6,5,0,1,110.0,1,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06377876764561473,26131.99859751857,7,4,7,7_1,7_1,7_0_1 +1998,1,33.0,299.0,9,112,1300.0,0.0,0.0,0,68,0.0,0.0,2216.7607063836795,1360.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,102003,2,1,1,0,1,,400.0,825.0,32,1.0,0.0,4.0,4.0,1.9,1,1,3460.79158852142,1300.0,12779.303072156235,0,1,2,3,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.10642207891314444,6725.948985345387,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +1999,1,50.0,284.0,7,112,1270.0,0.0,0.0,0,56,0.0,0.0,2165.6046900825177,1270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,102004,2,1,0,0,1,,240.0,541.0,32,2.0,3.0,4.0,2.0,1.5,2,1,1017.01207193941,1270.0,14840.708679874242,0,1,2,3,93.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08557542819516903,9893.805786582829,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +2000,2,54.0,0.0,7,111,1400.0,,,43,43,0.0,0.0,,1400.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,102005,2,2,0,0,2,,480.0,,43,2.0,2.0,3.0,3.0,1.8,3,2,82.9644614661048,1400.0,98566.50279666494,1,1,1,2,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014203608328156795,54759.16822036941,10,5,10,10_1,10_2,10_0_0 +2001,2,67.0,0.0,7,300,687.0,0.0,0.0,11,71,0.0,0.0,1171.472773296606,2258.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,102006,1,1,2,0,1,,400.0,,42,3.0,2.0,5.0,4.0,2.5,4,4,1754.23797426228,687.0,48947.42016778757,1,5,0,1,90.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046131134026262656,19578.968067115027,5,3,5,5_1,5_1,5_0_0 +2002,2,29.0,0.0,5,111,720.0,,,0,63,0.0,0.0,,720.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,102007,2,1,0,0,2,,500.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,140.89367312810032,720.0,31439.0,0,1,1,2,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022901491777728298,31439.0,8,4,8,8_1,8_2,8_0_0 +2003,1,30.0,413.0,9,211,450.0,,,0,85,0.0,0.0,,494.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,102008,2,1,0,0,2,,360.0,500.0,31,0.0,0.0,3.0,3.0,1.6,1,1,124.6063971818917,450.0,13601.969111969109,0,6,2,3,64.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03631827097484751,8501.230694980692,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2004,2,30.0,0.0,9,300,800.0,0.0,0.0,55,11,0.0,79.45963662061344,1364.160434697649,860.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,2.0,1,2008.0,6,102009,2,1,1,0,1,,199.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,918.650937404988,800.0,36009.10325820874,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023882849673684994,17147.192027718447,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2005,1,27.0,270.0,8,111,125.0,0.0,0.0,0,46,0.0,0.0,213.15006792150766,125.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,2000.0,6,102010,2,1,0,1,1,170.0,0.0,288.0,12,1.0,0.0,2.0,1.0,1.0,1,1,281.406183915022,125.0,10155.074549905908,0,1,2,3,46.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012309116923337424,10155.074549905908,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2006,2,80.0,0.0,1,111,990.0,0.0,0.0,0,77,0.0,0.0,1688.1485379383405,2441.0,471.10033663481715,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102011,2,1,1,0,1,,230.0,137.0,11,0.0,6.0,3.0,1.0,1.0,1,1,334.811321570456,990.0,14665.741012757495,0,5,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1664423228172796,14665.741012757495,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +2007,2,65.0,0.0,1,400,507.0,0.0,0.0,78,75,1645.3052476170983,0.0,864.5366754896351,2215.0,205.0672053586851,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,102012,2,2,3,0,1,,224.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1131.87931107492,507.0,49583.80753652753,5,5,0,1,125.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.044671841676705605,33055.87169101835,8,4,8,8_1,8_0,8_1_0 +2008,2,39.0,0.0,5,111,440.0,1205.0,0.0,85,52,0.0,463.51454695357836,750.2882390837069,1995.0,0.0,2287.6973777674457,31,2,2,2,1,2,2,2,2,3,1.0,1,,3,102013,2,3,3,0,2,,440.0,400.0,42,1.0,0.0,4.0,4.0,2.1,2,2,900.785610214086,440.0,25566.75931293357,6,1,2,3,91.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,1,0,0.07803100798116328,12174.647291873127,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +2009,2,87.0,0.0,2,111,240.0,1666.0,0.0,0,77,0.0,0.0,409.2481304092947,1906.0,0.0,3162.9077438676886,70,0,0,0,0,0,0,0,0,0,,1,,2,102014,2,1,1,0,1,,192.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1488.29192607056,240.0,19544.589297866023,0,5,0,1,88.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09752059615845224,19544.589297866023,5,3,5,5_1,5_3,5_0_1 +2011,1,48.0,468.0,7,111,840.0,0.0,0.0,0,52,0.0,0.0,1432.3684564325313,1203.0,502.9688888189371,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,102016,2,1,0,1,1,1000.0,1200.0,658.0,32,1.0,0.0,5.0,5.0,2.8,4,2,1353.24972026911,840.0,31999.423291932915,0,4,2,3,110.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03759442753155109,11428.365461404614,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2012,2,41.0,0.0,9,120,0.0,,,0,34,0.0,0.0,,331.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,102017,2,1,0,0,2,,288.0,800.0,32,1.0,0.0,4.0,4.0,1.9,1,1,152.134571384766,0.0,48356.76186113786,0,1,2,3,75.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006844957918201916,25450.927295335714,7,4,7,7_1,7_2,7_0_0 +2013,2,68.0,0.0,2,111,700.0,1600.0,0.0,0,72,0.0,79.45963662061344,1193.6403803604428,2360.0,0.0,3037.6064767036623,10,0,0,0,0,0,0,0,0,0,,1,,2,102018,2,3,4,0,1,,270.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1748.61253150085,700.0,57722.126240103964,0,5,0,1,118.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04088553478060079,57722.126240103964,10,5,10,10_1,10_3,10_0_1 +2014,2,56.0,0.0,6,111,700.0,0.0,0.0,0,47,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,13.0,2,,4,102019,2,1,0,0,1,,0.0,361.0,12,1.0,2.0,3.0,1.0,1.0,1,1,386.655464609854,700.0,35851.38365736182,0,1,2,3,70.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01952504836884476,35851.38365736182,9,5,9,9_0,9_3,9_0_0 +2015,0,23.0,0.0,1,111,430.0,980.0,0.0,0,43,0.0,0.0,733.2362336499863,1410.0,0.0,1860.5339669809932,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,102020,2,1,0,0,1,,160.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1044.14022637083,430.0,26742.54721422659,0,1,5,0,86.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.052724970015193745,26742.54721422659,7,4,7,7_0,7_2,7_1_0 +2016,0,64.0,0.0,6,112,529.0,0.0,0.0,0,77,1898.4291318658827,0.0,902.0510874438204,2359.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,102021,2,1,2,0,1,,222.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,924.284581762342,529.0,21696.026247040452,0,5,0,1,90.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10872958822686668,21696.026247040452,6,3,6,6_1,6_0,6_0_0 +2017,2,58.0,0.0,7,111,540.0,2775.0,0.0,33,35,0.0,0.0,920.8082934209131,3315.0,0.0,5268.348733032914,12,0,0,0,0,0,0,0,0,0,,1,,5,102022,2,1,3,0,1,,680.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,602.584147779079,540.0,159822.34688049144,1,1,0,1,156.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02074178026229849,79911.17344024572,10,5,10,10_1,10_4,10_0_0 +2018,2,53.0,0.0,7,111,1200.0,1000.0,0.0,85,65,0.0,0.0,2046.2406520464733,2200.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,60.0,2,,5,102023,2,1,0,0,1,,0.0,500.0,42,1.0,1.0,3.0,3.0,2.0,3,2,2019.7434536594,1200.0,30539.19969020314,6,1,2,3,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07203856100740426,15269.59984510157,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +2019,2,35.0,0.0,9,111,500.0,0.0,0.0,0,56,0.0,0.0,852.6002716860306,500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,2,2006.0,6,102024,2,1,0,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1381.13466547579,500.0,21048.83585877756,0,1,1,2,35.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023754282818994735,21048.83585877756,5,3,5,5_0,5_2,5_0_0 +2020,2,70.0,0.0,7,111,1500.0,,,0,71,0.0,0.0,,2135.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,102025,2,1,0,0,2,,1500.0,,21,1.0,5.0,5.0,4.0,2.5,4,4,79.03402367197336,1500.0,11893.749335295623,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17950605312188833,4757.499734118249,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2021,2,65.0,0.0,1,111,543.0,1972.0,0.0,86,74,0.0,0.0,925.9238950510293,2515.0,0.0,3743.8499825372637,10,0,0,0,0,0,0,0,0,0,,1,,1,102026,1,2,3,0,1,,308.0,,41,0.0,3.0,10.0,2.0,1.5,2,2,427.672603384711,543.0,242647.91701880278,6,5,0,1,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01036481182653265,161765.2780125352,10,5,10,10_1,10_3,10_1_0 +2022,2,43.0,0.0,2,111,600.0,1540.0,0.0,67,52,0.0,0.0,1023.1203260232367,2140.0,0.0,2923.696233827275,43,2,2,1,2,1,2,2,2,2,10.0,1,,2,102027,2,2,3,0,1,,360.0,520.0,43,2.0,0.0,5.0,3.0,1.8,2,2,367.421753460942,600.0,38374.758034364386,1,1,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05576582393258719,21319.310019091325,6,3,6,6_1,6_2,6_0_1 +2023,2,73.0,0.0,5,111,0.0,0.0,840.0,0,77,0.0,0.0,529.4673639483848,840.0,0.0,1005.255003954332,70,0,0,0,0,0,0,0,0,0,,1,,3,102028,2,1,2,0,1,,240.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1175.49874551361,0.0,33504.82241812986,0,5,0,1,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025071017822958706,33504.82241812986,8,4,8,8_1,8_2,8_0_0 +2024,2,59.0,0.0,7,111,195.0,244.0,0.0,0,34,0.0,0.0,332.5141059575519,439.0,0.0,463.2349876973085,20,0,0,0,0,0,0,0,0,2,40.0,2,,5,102029,1,1,0,0,1,,0.0,495.0,12,1.0,2.0,3.0,1.0,1.0,1,1,663.493896332576,195.0,39800.145935168206,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011030110309522528,39800.145935168206,9,5,9,9_0,9_4,9_0_0 +2025,2,67.0,0.0,6,211,840.0,,,0,86,0.0,0.0,,1540.0,969.9124577775647,,71,0,0,0,0,0,0,0,0,0,,1,,4,102030,2,3,0,0,2,,1800.0,,21,5.0,0.0,6.0,10.0,5.1,8,6,7.879010250772417,840.0,9451.059490909092,0,5,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16294469434684178,1853.1489197860967,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2026,0,91.0,0.0,2,300,22.0,,,0,78,0.0,0.0,,44.0,30.482962958723462,,71,0,0,0,0,0,0,0,0,0,,1,,2,102031,2,2,0,0,2,,117.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,119.09347938572552,22.0,4511.986413859249,0,5,5,0,20.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009751802413422021,4511.986413859249,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +2027,2,43.0,0.0,1,112,450.0,2100.0,0.0,34,42,0.0,0.0,767.3402445174275,2550.0,0.0,3986.858500673557,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,102032,2,1,1,0,1,,390.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,343.947991813484,450.0,63605.39000106984,1,1,1,2,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04009094197767059,30288.2809528904,8,4,8,8_1,8_1,8_1_0 +2028,2,67.0,0.0,5,111,477.0,648.0,0.0,77,78,0.0,370.8116375628627,813.3806591884731,1405.0,0.0,1230.2306230649833,50,0,0,0,0,0,0,0,0,0,,1,,3,102033,2,1,1,0,1,,333.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,588.168367702098,477.0,47290.9339133647,5,5,0,1,88.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02970971143377946,31527.289275576466,8,4,8,8_1,8_2,8_0_0 +2029,1,86.0,174.0,1,120,432.0,0.0,0.0,0,71,1255.072592733556,0.0,736.6466347367304,1622.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102034,1,3,4,0,2,,180.0,320.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1900.43816089273,432.0,9995.967415047406,0,5,2,3,80.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1622654349151165,9995.967415047406,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +2030,1,43.0,377.0,7,112,0.0,0.0,1000.0,52,52,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,50,0,0,0,0,0,0,0,0,1,5.0,2,,5,102035,1,1,0,1,1,,317.0,446.0,43,3.0,0.0,3.0,3.0,2.0,3,3,487.480948859504,0.0,19616.67517920773,1,1,2,3,60.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050977038201658574,9808.337589603865,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +2031,2,48.0,0.0,7,111,670.0,1020.0,0.0,56,55,0.0,0.0,1142.484364059281,1690.0,0.0,1936.4741288985847,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,102036,1,1,3,0,1,,700.0,,43,2.0,0.0,5.0,5.0,3.0,5,3,516.072393001609,670.0,46924.753807189,1,1,1,2,114.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036015106375285606,15641.584602396333,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +2032,2,48.0,0.0,1,300,500.0,0.0,0.0,63,56,1476.555991451242,0.0,852.6002716860306,1996.0,133.01656563806603,0.0,50,2,2,2,1,1,2,2,2,2,30.0,1,,1,102037,2,3,3,0,1,,200.0,493.0,43,2.0,1.0,4.0,2.0,1.5,2,2,1443.70671338399,500.0,36171.12040758903,1,1,2,3,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.05518214469190789,24114.08027172602,6,3,6,6_1,6_0,6_1_0 +2033,2,34.0,0.0,7,120,2330.0,0.0,0.0,38,48,0.0,0.0,3973.1172660569027,2330.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,5,102038,2,1,1,0,1,,526.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,252.788157747608,2330.0,108364.56216474617,1,1,1,2,156.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021501494155051457,60202.53453597009,10,5,10,10_1,10_0,10_0_0 +2034,0,75.0,0.0,1,111,536.0,2070.0,0.0,0,75,0.0,0.0,913.9874912474248,2606.0,0.0,3929.9033792353634,41,0,0,0,0,0,0,0,0,0,,1,,1,102039,2,2,1,0,2,,483.0,,11,0.0,1.0,8.0,1.0,1.0,1,1,577.799958702421,536.0,19715.48001076956,0,5,0,1,200.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13218039827467937,19715.48001076956,5,3,5,5_1,5_3,5_1_0 +2035,1,67.0,450.0,5,111,600.0,,,0,86,0.0,0.0,,700.0,138.5589225396521,,41,0,0,0,0,0,0,0,0,0,,1,,3,102040,2,1,0,0,2,,500.0,600.0,11,0.0,0.0,4.0,1.0,1.0,1,1,38.62819266809848,600.0,36880.65045016626,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018980142471886487,36880.65045016626,9,5,9,9_1,9_2,9_0_0 +2036,2,67.0,0.0,2,111,53.0,75.0,0.0,75,75,0.0,0.0,90.37562879871925,128.0,0.0,142.38780359548417,60,0,0,0,0,0,0,0,0,0,,1,,2,102041,2,3,2,0,1,,387.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1426.36015593718,53.0,60713.645184405614,5,5,0,1,140.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0021082575360320648,40475.76345627041,9,5,9,9_1,9_2,9_0_1 +2037,2,45.0,0.0,8,111,1800.0,,,52,63,0.0,0.0,,1938.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,102042,2,1,0,0,2,,800.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,105.56486251361862,1800.0,56383.79622175047,1,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034371577117264095,20137.070079196597,5,3,5,5_1,5_3,5_0_0 +2038,0,58.0,0.0,7,111,0.0,,,85,21,0.0,0.0,,348.0,399.049696914198,,50,0,0,0,0,0,0,0,0,0,,2,,5,102043,2,1,0,0,1,,391.0,,42,3.0,0.0,4.0,4.0,2.5,4,4,135.75362418085263,0.0,22936.973837999336,6,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015172010155213836,9174.789535199734,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +2039,2,22.0,0.0,1,111,1500.0,0.0,0.0,64,56,0.0,0.0,2557.8008150580918,1503.0,4.156767676189563,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,102044,1,3,3,0,2,,300.0,507.0,43,2.0,0.0,4.0,3.0,1.8,2,2,488.564570384773,1500.0,29785.287162236353,4,1,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05046115526143381,16547.381756797975,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +2040,2,56.0,0.0,9,111,0.0,,,63,46,0.0,0.0,,150.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,102045,2,1,0,0,2,,300.0,,43,2.0,3.0,2.0,2.0,1.5,2,2,122.66212699758496,0.0,2096.471465233509,4,4,0,1,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.071548791618441,1397.6476434890062,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2041,2,41.0,0.0,7,111,652.0,,,21,63,0.0,0.0,,784.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,102046,2,1,0,0,2,,661.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,104.74507287146774,652.0,33390.30140502495,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023479871909212982,15900.143526202355,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +2042,1,29.0,346.0,9,111,720.0,,,63,54,0.0,0.0,,720.0,0.0,,31,0,0,0,0,0,0,0,0,2,5.0,2,2012.0,6,102047,2,1,0,0,2,,720.0,516.0,43,2.0,0.0,3.0,4.0,2.1,2,2,257.7899376519725,720.0,16625.480994463218,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043307017718150924,7916.895711649151,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2043,2,69.0,0.0,6,112,838.0,0.0,0.0,77,72,2320.3022722805235,0.0,1428.9580553457872,3038.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,102048,2,1,2,0,1,,139.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,152.188033857232,838.0,27114.342400855356,5,5,0,1,93.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11204402286754933,18076.228267236904,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2044,1,39.0,129.0,5,111,0.0,0.0,600.0,47,85,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,60,2,1,2,2,1,2,2,2,0,,2,,3,102049,2,2,0,0,1,,0.0,551.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,3,2,495.055637107983,0.0,21011.20616566022,1,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.028556190219132364,8081.233140638547,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +2046,2,90.0,0.0,2,111,144.0,80.0,0.0,0,77,0.0,0.0,245.54887824557682,224.0,0.0,151.8803238351831,50,1,2,2,1,1,1,2,2,0,,2,,2,102051,1,2,0,1,2,,160.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,400.844718366543,144.0,11286.597364806723,0,5,0,1,75.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019846548322744732,11286.597364806723,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +2047,2,32.0,0.0,2,111,720.0,0.0,0.0,52,68,0.0,0.0,1227.744391227884,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,102052,2,1,0,1,1,1056.0,0.0,422.0,43,2.0,0.0,4.0,5.0,2.4,2,2,659.808100797898,720.0,48982.52069726524,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014699121028293642,20409.383623860518,5,3,5,5_0,5_4,5_0_1 +2048,1,27.0,100.0,1,111,640.0,0.0,0.0,0,55,0.0,0.0,1091.3283477581192,755.0,159.34276092059991,0.0,31,2,2,2,1,1,1,2,2,0,,2,,1,102053,1,3,0,0,2,,350.0,450.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1471.46010778979,640.0,23174.605845370734,0,4,2,3,40.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.03257876336873344,15449.737230247156,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +2050,2,39.0,0.0,1,300,1080.0,0.0,0.0,68,55,0.0,0.0,1841.6165868418261,1200.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,102055,2,3,1,0,1,,166.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1080.81761799223,1080.0,36173.9739501979,4,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03317302106901736,17225.701881046618,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2051,2,42.0,0.0,9,111,360.0,,,0,34,0.0,0.0,,410.0,69.27946126982604,,10,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,102056,2,1,0,0,1,,400.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,282.95916876376236,360.0,34205.0,0,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01198655167373191,21378.125,6,3,6,6_1,6_2,6_0_0 +2052,2,47.0,0.0,5,111,1200.0,,,46,31,0.0,0.0,,1290.0,124.70303028568689,,20,0,0,0,0,0,0,0,0,0,,1,,3,102057,2,1,0,0,2,,384.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,252.04594023221824,1200.0,52632.724649607895,1,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024509466469538173,26316.362324803948,7,4,7,7_1,7_2,7_0_0 +2053,2,61.0,0.0,9,111,540.0,,,0,78,0.0,0.0,,628.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,102058,2,2,0,0,2,,400.0,416.0,21,1.0,0.0,4.0,3.0,1.8,2,2,185.52442443245369,540.0,28493.86824363418,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022039829574220817,15829.926802018988,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +2054,2,54.0,0.0,2,111,400.0,0.0,0.0,52,21,3164.0485531098047,0.0,682.0802173488245,3660.0,360.2531986030954,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102059,2,2,2,0,1,,300.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,818.232018961149,400.0,112673.19602392252,4,1,1,2,107.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03248332459853999,75115.46401594834,10,5,10,10_1,10_3,10_0_1 +2055,2,35.0,0.0,1,111,420.0,1320.0,0.0,55,37,0.0,0.0,716.1842282162656,1740.0,0.0,2506.0253432805216,10,0,0,0,0,0,0,0,0,3,60.0,1,,1,102060,2,2,5,0,1,,290.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,375.830509508166,420.0,62966.70550634645,1,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027633651562485262,34981.50305908136,9,5,9,9_1,9_4,9_1_0 +2056,1,25.0,470.0,9,211,0.0,,,0,81,0.0,0.0,,939.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,102061,2,1,0,0,2,,317.0,526.0,32,1.0,0.0,3.0,4.0,1.9,1,1,89.19853208428023,0.0,20993.210544461643,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044728746849429554,11049.058181295602,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2057,2,71.0,0.0,5,111,300.0,0.0,0.0,0,74,0.0,0.0,511.56016301161833,300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,102062,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,907.652059726296,300.0,27824.65386066861,0,5,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010781805283265836,27824.65386066861,7,4,7,7_0,7_4,7_0_0 +2058,2,65.0,0.0,2,111,186.0,102.0,0.0,0,63,0.0,0.0,317.16730106720337,288.0,0.0,193.6474128898585,71,0,0,0,0,0,0,0,0,3,80.0,2,,2,102063,1,1,0,1,1,1064.0,0.0,389.0,12,1.0,5.0,3.0,1.0,1.0,1,1,441.898385000707,186.0,8053.6978537295145,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03575997078989407,8053.6978537295145,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +2059,1,28.0,368.0,2,111,300.0,343.0,0.0,53,56,0.0,0.0,511.56016301161833,643.0,0.0,651.1868884433476,71,1,2,2,1,1,1,2,2,0,,2,,2,102064,2,1,0,1,1,848.0,0.0,334.0,43,2.0,0.0,3.0,4.0,2.1,2,2,314.409738626123,300.0,17002.872899483955,4,4,2,3,62.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03781713853895334,8096.6061426114065,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2060,1,41.0,637.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,490.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,102065,1,3,0,1,2,504.0,361.0,575.0,41,0.0,0.0,4.0,5.0,2.4,2,2,425.621013399096,0.0,37041.62776184027,6,7,2,3,68.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.013228360350426897,15434.011567433445,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +2061,2,61.0,0.0,1,111,720.0,725.0,0.0,22,31,0.0,0.0,1227.744391227884,1445.0,0.0,1376.415434756347,10,2,2,2,2,1,2,2,2,0,,1,,1,102066,2,1,1,0,1,,672.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,450.696613064306,720.0,109451.75519883199,1,1,0,1,120.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.013202163796962301,54725.877599415995,10,5,10,10_1,10_2,10_1_0 +2062,0,72.0,0.0,6,112,680.0,0.0,0.0,77,69,0.0,834.326184516441,1159.5363694930015,1310.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,102067,2,1,2,0,1,,268.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1551.66106708507,680.0,23191.095276989345,5,5,0,1,108.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056487198398939245,15460.730184659564,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +2063,2,53.0,0.0,2,222,300.0,0.0,0.0,56,55,2636.7071275915036,0.0,511.56016301161833,2980.0,249.40606057137379,0.0,42,0,0,0,0,0,0,0,0,1,1.0,1,,2,102068,1,2,2,0,2,,200.0,200.0,43,2.0,1.0,4.0,2.0,1.5,2,2,1428.42273397685,300.0,48497.70698985952,1,1,2,3,80.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06144620405709272,32331.80465990635,8,4,8,8_1,8_0,8_0_1 +2064,2,62.0,0.0,2,111,441.0,95.0,0.0,0,74,0.0,0.0,751.9934396270789,536.0,0.0,180.35788455427996,20,0,0,0,0,0,0,0,0,0,,2,,2,102069,1,3,0,1,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,259.177562618866,441.0,33804.88241465656,0,5,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015855697807947707,33804.88241465656,9,5,9,9_0,9_4,9_0_1 +2065,2,61.0,0.0,9,111,0.0,,,86,55,0.0,0.0,,959.0,0.0,,71,0,0,0,0,0,0,0,0,0,,3,2013.0,6,102070,2,1,0,0,2,,0.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,78.20476566427337,0.0,42673.89195050134,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022472756905144047,21336.94597525067,6,3,6,6_0,6_2,6_0_0 +2066,2,48.0,0.0,1,111,1400.0,0.0,0.0,56,62,0.0,0.0,2387.2807607208856,1500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,102071,2,1,2,0,1,,520.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,344.640686092748,1400.0,50638.57753980384,1,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02962168514352409,25319.28876990192,7,4,7,7_1,7_4,7_1_0 +2067,2,58.0,0.0,7,400,886.0,,,56,63,0.0,0.0,,1414.0,731.5911110093631,,71,0,0,0,0,0,0,0,0,0,,1,,5,102072,2,3,0,0,2,,640.0,,43,2.0,4.0,5.0,5.0,2.8,4,3,117.81507716845205,886.0,37765.32481703925,4,1,0,1,75.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03744175395949516,13487.616006085445,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +2068,1,50.0,320.0,1,400,1200.0,0.0,0.0,85,63,0.0,794.5963662061343,2046.2406520464733,1800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,90.0,1,,1,102073,2,3,3,0,1,,650.0,450.0,42,1.0,0.0,4.0,6.0,3.0999999999999996,4,4,2066.92458417183,1200.0,27351.078207656385,6,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06581093389934903,8822.928454082707,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +2069,2,60.0,0.0,7,111,800.0,,,33,31,0.0,0.0,,1120.0,443.3885521268867,,12,0,0,0,0,0,0,0,0,2,8.0,1,,5,102074,2,1,0,0,2,,250.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,189.35881880387103,800.0,156555.79306184995,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0071539990829820365,104370.52870789997,10,5,10,10_1,10_2,10_0_0 +2070,1,25.0,170.0,1,111,550.0,0.0,0.0,0,67,0.0,0.0,937.8602988546337,550.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,1,102075,1,2,0,0,2,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2760.26264131295,550.0,7614.727123498564,0,1,2,3,28.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07222845823361614,7614.727123498564,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +2071,2,48.0,0.0,1,111,1030.0,1350.0,0.0,46,46,0.0,0.0,1756.356559673223,2380.0,0.0,2562.980464718715,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,102076,2,2,5,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,281.439350418323,1030.0,47863.93885466941,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049724282141226595,22792.35183555686,6,3,6,6_1,6_3,6_1_0 +2072,2,43.0,0.0,9,111,1000.0,,,45,33,0.0,0.0,,1044.0,60.965925917446924,,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,102077,2,3,0,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,245.00043010618128,1000.0,62269.21376646355,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016765909457528257,34594.00764803531,9,5,9,9_1,9_2,9_0_0 +2073,2,45.0,0.0,2,211,300.0,100.0,0.0,0,62,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,71,2,1,2,2,1,2,2,2,0,,2,,2,102078,2,1,0,1,1,541.0,300.0,310.0,12,1.0,5.0,4.0,1.0,1.0,1,1,301.493143733993,300.0,23026.110993689537,0,1,2,3,78.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017371583074085883,23026.110993689537,6,3,6,6_0,6_2,6_0_1 +2074,2,36.0,0.0,9,111,338.0,,,34,42,0.0,0.0,,338.0,0.0,,20,0,0,0,0,0,0,0,0,1,14.0,2,2011.0,6,102079,2,1,0,0,2,,100.0,1000.0,43,2.0,0.0,3.0,2.0,1.5,2,2,112.86607930884277,338.0,84583.07826863525,1,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003996071163625831,56388.71884575683,10,5,10,10_0,10_2,10_0_0 +2075,2,69.0,0.0,2,111,500.0,2000.0,0.0,75,75,0.0,0.0,852.6002716860306,2500.0,0.0,3797.008095879578,60,0,0,0,0,0,0,0,0,0,,1,,2,102080,2,1,1,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,305.53205132995,500.0,26367.791809487633,5,5,0,1,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0948126418041746,17578.527872991755,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +2076,1,61.0,150.0,7,111,0.0,,,0,86,0.0,0.0,,40.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,1,,5,102081,2,1,0,0,2,,0.0,350.0,11,0.0,0.0,2.0,1.0,1.0,1,1,126.94305403635535,0.0,9414.759550852257,0,7,2,3,30.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.004248648070505323,9414.759550852257,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2077,2,78.0,0.0,2,112,0.0,0.0,0.0,77,74,0.0,0.0,0.0,4619.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,102082,2,1,2,0,1,,375.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1644.17445187516,0.0,43151.402643044144,5,5,0,1,130.0,8,2,8,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1070417116729476,28767.60176202943,8,4,8,8_1,8_1,8_0_1 +2078,2,75.0,0.0,2,111,595.0,165.0,0.0,0,77,0.0,0.0,1014.5943233063764,760.0,0.0,313.2531679100652,70,0,0,0,0,0,0,0,0,0,,2,,2,102083,2,3,0,0,2,,0.0,625.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1371.21772462173,595.0,19279.138484893807,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03942084863364091,19279.138484893807,5,3,5,5_0,5_4,5_0_1 +2079,0,32.0,0.0,5,111,360.0,0.0,0.0,0,38,0.0,0.0,613.872195613942,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,102084,2,1,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1753.23651206258,360.0,37236.69068530994,0,1,5,0,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009667883836466213,37236.69068530994,9,5,9,9_0,9_4,9_0_0 +2080,2,81.0,0.0,1,112,245.0,0.0,0.0,0,77,2636.7071275915036,0.0,417.774133126155,2945.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102085,2,3,4,0,1,,140.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,495.403406749865,245.0,17924.515814648552,0,5,0,1,50.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16430011446073434,17924.515814648552,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2081,1,40.0,80.0,6,300,2100.0,0.0,0.0,52,46,0.0,0.0,3580.9211410813286,2220.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,4,102086,2,1,1,0,1,,553.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1500.75853759745,2100.0,40756.322955201336,4,1,1,2,122.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05447007578284691,16981.80123133389,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +2082,2,52.0,0.0,2,111,1100.0,,,85,48,0.0,0.0,,1260.0,221.69427606344334,,50,0,0,0,0,0,0,0,0,0,,1,,2,102087,2,2,0,0,1,,350.0,,42,1.0,1.0,5.0,4.0,2.5,4,4,114.02142195134742,1100.0,46775.32184211092,6,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026937281249567936,18710.128736844366,5,3,5,5_1,5_2,5_0_1 +2083,2,41.0,0.0,1,400,780.0,0.0,0.0,85,62,0.0,79.45963662061344,1330.0564238302077,2640.0,2494.060605713738,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,102088,2,1,2,0,1,,128.0,,42,1.0,0.0,5.0,4.0,2.5,4,3,176.986333904938,780.0,50118.34713122967,7,1,0,1,124.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05267532053855318,20047.338852491866,5,3,5,5_1,5_0,5_1_0 +2084,2,55.0,0.0,9,111,420.0,,,21,42,0.0,0.0,,420.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,102089,2,3,0,0,2,,356.0,1070.0,43,2.0,3.0,4.0,2.0,1.5,2,2,259.7967597619863,420.0,76191.67529657032,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005512413244165873,50794.450197713544,10,5,10,10_1,10_2,10_0_0 +2085,2,34.0,0.0,9,111,0.0,,,33,46,0.0,0.0,,3182.0,0.0,,30,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,102090,2,1,0,0,2,,1063.0,1075.0,43,2.0,0.0,3.0,4.0,2.1,2,2,66.00845876217859,0.0,49078.99999999999,1,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06483424682654497,23370.952380952378,6,3,6,6_1,6_2,6_0_0 +2086,1,36.0,244.0,1,111,770.0,0.0,0.0,56,85,3164.0485531098047,0.0,1313.0044183964872,3910.0,193.98249155551292,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,102091,1,1,4,0,2,,1200.0,1200.0,42,3.0,0.0,9.0,7.0,3.6,5,4,1298.8325815184,770.0,52689.84921618258,1,6,2,3,260.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.07420784189299076,14636.069226717382,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +2087,2,54.0,0.0,1,120,486.0,0.0,0.0,0,65,4113.2631190427455,0.0,828.7274640788218,4510.0,171.8130639491686,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,102092,2,1,1,0,1,,190.0,,22,1.0,2.0,6.0,2.0,1.5,2,2,1361.24763099044,486.0,38511.650948758936,0,1,1,2,174.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11710741785650033,25674.43396583929,7,4,7,7_1,7_0,7_1_0 +2088,1,47.0,200.0,5,111,449.0,,,0,55,0.0,0.0,,521.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,2,45.0,2,,3,102093,2,2,0,0,2,,128.0,500.0,32,1.0,0.0,3.0,2.0,1.3,1,1,118.01633569028844,449.0,19186.207037206594,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027154924315663735,14758.620797851225,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +2089,2,79.0,0.0,6,111,260.0,,,72,71,0.0,33.1081819252556,,429.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,4,102094,2,1,0,0,2,,120.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,68.73468729971734,260.0,12816.087438614497,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03347355439441179,8544.058292409665,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2090,2,65.0,0.0,7,111,867.0,189.0,0.0,0,75,0.0,0.0,1478.408871103577,1056.0,0.0,358.8172650606201,33,0,0,0,0,0,0,0,0,0,,2,,5,102095,2,2,0,3,1,620.0,382.0,611.0,11,0.0,2.0,2.0,1.0,1.0,1,1,881.755595237942,867.0,30201.39757362406,0,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03496526931992849,30201.39757362406,8,4,8,8_0,8_4,8_0_0 +2091,1,44.0,352.0,2,111,0.0,0.0,0.0,84,68,0.0,0.0,0.0,578.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102096,1,1,0,1,1,616.0,312.0,323.0,42,1.0,0.0,4.0,3.0,1.8,2,2,431.005685938617,0.0,5290.075699840601,3,4,2,3,60.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10926119639789202,2938.9309443558896,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2092,2,46.0,0.0,8,400,360.0,,,81,85,0.0,0.0,,600.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,102097,2,3,0,0,2,,0.0,,42,1.0,1.0,4.0,6.0,3.0999999999999996,4,2,4.386640891614599,360.0,4936.892361111111,4,6,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1215339440507798,1592.5459229390683,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +2093,1,43.0,253.0,8,111,588.0,,,0,67,0.0,0.0,,703.0,159.34276092059991,,43,0,0,0,0,0,0,0,0,0,,2,2001.0,6,102098,2,3,0,0,2,,610.0,602.0,22,1.0,98.0,5.0,2.0,1.5,2,2,140.9473281632939,588.0,3330.8108427695024,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.21105971884475722,2220.540561846335,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2094,0,86.0,0.0,5,111,60.0,0.0,0.0,86,74,0.0,0.0,102.31203260232367,60.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,102099,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1898.51744928402,60.0,27197.894763711578,6,5,0,1,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0022060530979057316,18131.929842474387,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +2095,2,50.0,0.0,1,112,858.0,2760.0,0.0,56,22,0.0,0.0,1463.0620662132285,3618.0,0.0,5239.871172313818,50,0,0,0,0,0,0,0,0,0,,1,,1,102100,2,1,1,0,1,,548.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,190.678099538445,858.0,38056.5958695581,1,1,0,1,280.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09506893397404677,18122.18850931338,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2096,2,58.0,0.0,1,112,830.0,3800.0,0.0,37,22,0.0,0.0,1415.3164509988108,4630.0,0.0,7214.3153821711985,20,0,0,0,0,0,0,0,0,2,40.0,1,,1,102101,2,1,1,0,1,,726.0,,43,2.0,3.0,10.0,2.0,1.5,2,2,749.683073487907,830.0,130449.45295968982,1,1,0,1,290.0,7,2,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035492674710032826,86966.30197312655,10,5,10,10_1,10_1,10_1_0 +2097,2,62.0,0.0,1,111,320.0,910.0,0.0,0,68,0.0,0.0,545.6641738790596,1230.0,0.0,1727.638683625208,71,2,2,2,2,2,2,2,1,3,15.0,2,,1,102102,1,2,0,0,2,,120.0,524.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1933.74867541319,320.0,13562.781285374838,0,1,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.0906893633480875,13562.781285374838,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +2098,2,61.0,0.0,1,400,402.0,0.0,0.0,56,78,0.0,0.0,685.4906184355685,612.0,290.9737373332694,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102103,2,1,1,0,2,,247.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1720.96537344266,402.0,27316.123515070292,1,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022404350297448316,18210.74901004686,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2099,1,47.0,244.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,338.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102104,1,2,0,1,1,480.0,1039.0,297.0,31,1.0,1.0,3.0,3.0,2.0,3,2,419.303035842629,0.0,12002.888000242276,0,7,2,3,70.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028159889519353803,6001.444000121138,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2100,2,31.0,0.0,7,111,0.0,,,56,54,0.0,0.0,,644.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,102105,1,2,0,0,2,,101.0,490.0,43,2.0,0.0,1.0,2.0,1.5,2,2,84.13225416338277,0.0,47908.0,1,1,3,4,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013442431326709527,31938.666666666668,8,4,8,8_1,8_2,8_0_0 +2101,2,50.0,0.0,7,211,400.0,,,0,52,0.0,0.0,,676.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,3,30.0,1,,5,102106,2,1,0,0,2,,460.0,,32,1.0,2.0,4.0,2.0,1.5,2,2,91.72441233051396,400.0,9599.022567516718,0,1,0,1,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07042383693185568,6399.348378344479,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2102,2,34.0,0.0,2,111,427.0,413.0,0.0,56,45,0.0,0.0,728.1206320198701,840.0,0.0,784.0821717991329,41,0,0,0,0,0,0,0,0,3,60.0,2,,2,102107,2,1,0,1,1,597.0,0.0,334.0,43,2.0,0.0,3.0,3.0,1.8,2,2,257.18881327517,427.0,40431.58583637253,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020775836085171074,22461.99213131807,6,3,6,6_0,6_4,6_0_1 +2104,2,31.0,0.0,2,111,316.0,106.0,0.0,62,54,0.0,0.0,538.8433717055714,422.0,0.0,201.24142908161764,50,2,2,1,2,1,2,2,2,3,20.0,2,,2,102109,1,3,0,1,1,,0.0,357.0,43,2.0,0.0,4.0,3.0,1.8,2,2,439.031681418366,316.0,35786.882240808714,4,1,2,3,72.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.011792030307652294,19881.60124489373,5,3,5,5_0,5_2,5_0_1 +2105,2,55.0,0.0,5,111,420.0,100.0,0.0,0,68,0.0,0.0,716.1842282162656,520.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,1,10.0,2,,3,102110,2,1,0,1,2,,0.0,,32,2.0,0.0,3.0,3.0,2.0,3,2,793.466630801434,420.0,41293.778389849176,0,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012592696049529492,20646.889194924588,5,3,5,5_0,5_4,5_0_0 +2106,2,37.0,0.0,8,120,1614.0,0.0,0.0,43,47,0.0,0.0,2752.193677002507,1710.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,102111,2,1,2,0,1,,196.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,313.917001326337,1614.0,49815.987713374954,1,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03432632932701818,23721.89891113093,6,3,6,6_1,6_0,6_0_0 +2107,1,49.0,258.0,2,111,730.0,1810.0,0.0,85,52,0.0,0.0,1244.7963966616046,2540.0,0.0,3436.292326771018,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,102112,1,3,2,0,2,,480.0,435.0,42,3.0,0.0,4.0,6.0,3.3,5,4,269.059595997548,730.0,41421.09944590271,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06132140464589361,12551.848316940217,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +2108,2,66.0,0.0,2,111,450.0,,,77,77,0.0,0.0,,700.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,8,,2,102113,1,2,0,0,2,,500.0,558.0,41,0.0,3.0,3.0,2.0,1.5,2,2,148.80758448295117,450.0,53656.51785058402,5,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013045945358386333,35771.01190038935,9,5,9,9_0,9_2,9_0_1 +2109,1,26.0,260.0,2,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,829.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,102114,1,2,0,1,2,,0.0,930.0,12,1.0,0.0,4.0,1.0,1.0,1,1,327.816174189374,0.0,38493.27862594969,0,1,3,4,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021536227351679562,38493.27862594969,9,5,9,9_0,9_4,9_0_1 +2110,2,85.0,0.0,1,111,180.0,500.0,0.0,72,72,0.0,0.0,306.936097806971,680.0,0.0,949.2520239698945,60,2,2,2,2,1,2,2,2,0,,2,,1,102115,2,1,0,0,2,,410.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,663.069460981814,180.0,3814.8935191327314,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.17824874969369775,2543.2623460884874,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +2111,2,72.0,0.0,2,111,290.0,150.0,0.0,0,52,0.0,0.0,494.50815757789775,440.0,0.0,284.77560719096834,70,2,2,1,1,2,2,2,2,0,,2,,2,102116,2,1,0,1,1,852.0,0.0,332.0,11,0.0,3.0,4.0,1.0,1.0,1,1,590.510426739634,290.0,18079.295236574195,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024337231857903693,18079.295236574195,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +2113,2,56.0,0.0,6,112,1450.0,0.0,0.0,54,65,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,102118,2,1,2,0,1,,400.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,647.181914267047,1450.0,36407.55415283633,1,1,0,1,115.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039826899492149424,24271.702768557556,7,4,7,7_1,7_1,7_0_0 +2114,0,78.0,0.0,2,112,456.0,0.0,0.0,71,78,1186.5182074161767,0.0,777.5714477776598,1767.0,257.7195959237529,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102119,2,1,4,0,1,,366.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,720.984024437773,456.0,34006.32576745803,5,5,0,1,120.0,9,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05196092080288517,22670.88384497202,6,3,6,6_1,6_0,6_0_1 +2115,2,63.0,0.0,2,111,464.0,934.0,0.0,0,75,0.0,0.0,791.2130521246364,1398.0,0.0,1773.202780775763,50,0,0,0,0,0,0,0,0,0,,1,,2,102120,2,1,1,0,1,,173.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,198.029776127234,464.0,34450.21438803546,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04058029898604998,34450.21438803546,9,5,9,9_1,9_4,9_0_1 +2116,2,89.0,0.0,2,112,1200.0,0.0,0.0,0,75,2109.365702073203,0.0,2046.2406520464733,3390.0,263.261952825339,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102121,2,1,2,0,1,,600.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,836.061170459072,1200.0,27261.07835517875,0,5,0,1,90.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12435311456987931,18174.052236785832,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +2117,2,33.0,0.0,1,300,710.0,0.0,0.0,63,52,2109.365702073203,0.0,1210.6923857941633,2770.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,102122,2,3,4,0,1,,140.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,1253.3075933218,710.0,34390.29928688309,4,1,1,2,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0805459695739407,22926.866191255394,6,3,6,6_1,6_0,6_1_0 +2118,1,32.0,112.0,6,112,0.0,0.0,0.0,21,21,0.0,0.0,0.0,1629.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,102123,2,1,2,0,1,,346.0,240.0,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,902.70847291644,0.0,30823.157129401752,1,1,2,3,120.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05284987495476643,11415.98412200065,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +2119,2,57.0,0.0,2,111,730.0,0.0,0.0,0,56,0.0,0.0,1244.7963966616046,790.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,2,102124,2,2,3,0,1,,200.0,,32,3.0,1.0,7.0,3.0,2.0,3,3,1144.66931844959,730.0,40970.05672472312,0,1,0,1,111.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019282375060107725,20485.02836236156,5,3,5,5_1,5_2,5_0_1 +2120,0,53.0,0.0,6,111,600.0,,,0,75,0.0,0.0,,726.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,,4,102125,2,1,0,0,2,,444.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,104.55460167233942,600.0,28368.547591208247,0,7,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025591722581701577,28368.547591208247,8,4,8,8_1,8_3,8_0_0 +2121,1,32.0,323.0,2,111,206.0,0.0,0.0,0,55,0.0,0.0,351.2713119346446,386.0,249.40606057137379,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,102126,1,2,0,1,1,1067.0,0.0,301.0,32,1.0,0.0,3.0,2.0,1.3,1,1,333.658970567267,206.0,14146.053145762613,0,4,2,3,64.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027286763030126504,10881.579342894318,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2122,1,92.0,263.0,2,111,191.0,541.0,0.0,0,77,0.0,0.0,325.6933037840637,732.0,0.0,1027.0906899354259,71,0,0,0,0,0,0,0,0,0,,2,,2,102127,1,1,0,0,1,,0.0,305.0,11,0.0,3.0,3.0,1.0,1.0,1,1,105.855779626555,191.0,9445.662768808776,0,5,2,3,58.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07749588545731186,9445.662768808776,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2123,2,75.0,0.0,2,111,200.0,1000.0,0.0,78,77,0.0,0.0,341.04010867441224,1200.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,2,,2,102128,2,1,0,0,1,,324.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1767.25916434213,200.0,27155.932554868195,5,5,0,1,80.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04418923922334157,18103.955036578798,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +2124,2,65.0,0.0,1,300,105.0,0.0,0.0,0,77,0.0,0.0,179.0460570540664,142.0,51.266801339671275,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102129,2,1,2,0,1,,92.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1046.59695711237,105.0,9716.088025820409,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014614935519587348,9716.088025820409,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2125,2,64.0,0.0,5,221,670.0,0.0,0.0,75,75,1265.6194212439218,0.0,1142.484364059281,1870.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,102130,2,1,1,0,1,,243.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1630.50860936272,670.0,35735.23384511869,5,5,0,1,126.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05232930636762674,23823.489230079125,6,3,6,6_1,6_1,6_0_0 +2126,2,62.0,0.0,1,112,1080.0,0.0,0.0,0,74,0.0,0.0,1841.6165868418261,1115.0,48.49562288887823,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,102131,2,2,4,0,1,,335.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,996.024811424558,1080.0,34750.30623135757,0,5,0,1,85.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03208604817973833,34750.30623135757,9,5,9,9_1,9_1,9_1_0 +2127,2,58.0,0.0,2,111,350.0,1500.0,0.0,0,52,0.0,0.0,596.8201901802214,1850.0,0.0,2847.7560719096837,50,2,2,2,2,1,2,2,2,1,5.0,2,,2,102132,1,2,0,0,1,,0.0,370.0,32,2.0,0.0,4.0,3.0,2.0,3,2,1795.76188783266,350.0,36927.0084308889,0,1,2,3,92.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.05009883222634689,18463.50421544445,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +2128,2,32.0,0.0,7,112,1600.0,0.0,0.0,46,48,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,45.0,1,,5,102133,1,2,2,0,1,,516.0,934.0,43,2.0,0.0,4.0,5.0,2.4,2,2,710.192546934925,1600.0,44582.84276503784,1,1,2,3,90.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.03588824536004533,18576.184485432437,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2129,2,35.0,0.0,1,112,562.0,1107.0,0.0,37,37,0.0,0.0,958.3227053750984,1669.0,0.0,2101.6439810693464,12,0,0,0,0,0,0,0,0,0,,1,,1,102134,2,1,1,0,1,,253.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,187.070016169093,562.0,62408.69760592334,1,1,1,2,100.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026743067297106866,26003.62400246806,7,4,7,7_1,7_0,7_1_0 +2130,1,29.0,320.0,2,111,491.0,0.0,0.0,81,53,0.0,0.0,837.253466795682,611.0,166.2707070475825,0.0,41,1,2,2,2,1,2,2,2,1,10.0,2,,2,102135,1,3,0,1,1,,185.0,297.0,43,2.0,0.0,3.0,3.0,1.8,2,2,388.473726141156,491.0,19186.651572308994,4,1,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03184505632456586,10659.250873504996,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2131,1,52.0,266.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,829.0,0.0,0.0,30,1,2,2,2,1,2,2,2,0,,2,,1,102136,1,1,0,0,2,,231.0,250.0,21,1.0,0.0,3.0,2.0,1.5,2,2,305.54118552545,0.0,11756.926605504588,0,7,2,3,50.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.07051162500341394,7837.951070336392,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +2132,2,43.0,0.0,5,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,1430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,102137,2,1,2,0,1,,245.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,1618.36333911614,0.0,37602.213353752566,4,1,1,2,140.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0380296762466322,13429.361912054488,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +2133,1,34.0,250.0,9,111,480.0,,,21,48,0.0,0.0,,524.0,60.965925917446924,,44,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,102138,1,1,0,0,2,,180.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,109.14118314578897,480.0,22512.451641710155,1,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023276007799574974,8658.635246811598,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2134,2,42.0,0.0,7,111,767.0,620.0,0.0,85,65,0.0,989.2724759266373,1307.8888167663708,2134.0,0.0,1177.072509722669,71,0,0,0,0,0,0,0,0,2,75.0,1,,5,102139,1,1,3,0,1,,481.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1304.3104324252,767.0,68317.78466037818,6,1,1,2,90.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031236375866233877,37954.32481132121,9,5,9,9_1,9_2,9_0_0 +2135,1,37.0,296.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,495.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102140,2,1,0,1,1,,0.0,134.0,12,1.0,1.0,1.0,1.0,1.0,1,1,264.061809611785,0.0,9689.613182860292,0,4,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05108563062925905,9689.613182860292,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +2136,2,69.0,0.0,7,111,2000.0,0.0,0.0,33,38,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,102141,2,2,2,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,369.154281026752,2000.0,53801.20028975504,4,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03717389183194199,35867.46685983669,9,5,9,9_1,9_4,9_0_0 +2137,2,38.0,0.0,7,221,900.0,950.0,0.0,55,48,0.0,0.0,1534.680489034855,1850.0,0.0,1803.5788455427996,50,0,0,0,0,0,0,0,0,2,3.0,2,,5,102142,2,1,0,0,2,82.0,450.0,419.0,43,3.0,1.0,4.0,6.0,3.0999999999999996,4,3,2343.36609860926,900.0,51416.98618779128,1,1,2,3,95.0,1,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03598032745916317,16586.124576706865,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +2138,2,83.0,0.0,6,111,40.0,0.0,0.0,0,77,0.0,0.0,68.20802173488245,40.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,102143,2,1,3,0,1,,479.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,547.025049505604,40.0,57342.58971233343,0,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0006975617983189321,38228.39314155562,9,5,9,9_1,9_4,9_0_0 +2139,2,35.0,0.0,7,111,280.0,,,37,34,0.0,0.0,,330.0,69.27946126982604,,10,0,0,0,0,0,0,0,0,2,2.0,1,,5,102144,1,1,0,0,2,,286.0,980.0,43,2.0,0.0,3.0,3.0,1.8,2,2,77.31641445877874,280.0,68095.08648065274,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004846164636177678,37830.60360036263,9,5,9,9_1,9_2,9_0_0 +2140,2,51.0,0.0,5,111,370.0,0.0,0.0,85,63,0.0,0.0,630.9242010476627,370.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,30.0,2,,3,102145,1,1,0,1,1,70.0,0.0,383.0,42,1.0,0.0,2.0,5.0,2.6,3,2,166.980296630121,370.0,31101.18007674409,7,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011896654695641839,11961.992337209265,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +2141,2,40.0,0.0,9,112,1900.0,0.0,0.0,54,64,0.0,794.5963662061343,3239.8810324069163,2500.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,45.0,1,2010.0,6,102146,2,1,1,0,1,,323.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1005.55562605205,1900.0,57231.145856045376,1,1,1,2,113.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.0436825082322884,22011.97917540207,6,3,6,6_1,6_0,6_0_0 +2142,2,39.0,0.0,1,111,400.0,1200.0,0.0,54,37,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,3,80.0,1,,1,102147,2,1,2,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,923.40800364151,400.0,82220.5066133226,1,1,1,2,181.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01945986549954855,39152.62219682029,9,5,9,9_1,9_3,9_1_0 +2143,2,39.0,0.0,5,111,100.0,,,0,45,0.0,0.0,,143.0,59.5803366920504,,42,0,0,0,0,0,0,0,0,2,10.0,2,,3,102148,2,1,0,0,2,,100.0,556.0,32,1.0,0.0,4.0,3.0,1.6,1,1,75.9417063821041,100.0,34667.88280547486,0,1,2,3,77.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004124855296251809,21667.426753421787,6,3,6,6_0,6_3,6_0_0 +2144,1,47.0,98.0,2,111,0.0,0.0,1027.0,0,68,0.0,0.0,647.3368842559419,1027.0,0.0,1229.0439155489273,50,0,0,0,0,0,0,0,0,0,,2,,2,102149,1,3,0,1,1,700.0,455.0,373.0,32,3.0,1.0,5.0,5.0,2.8,4,3,277.496109536532,0.0,32134.794989083923,0,1,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03195912718126468,11476.712496101401,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2145,2,53.0,0.0,8,111,600.0,,,0,52,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,3,30.0,2,2000.0,6,102150,2,2,0,0,2,,400.0,254.0,32,2.0,2.0,1.0,3.0,1.8,2,2,148.56739527134718,600.0,21467.627144765043,0,1,2,3,22.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0279490600406814,11926.459524869468,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +2146,2,76.0,0.0,1,120,1200.0,0.0,0.0,86,72,0.0,0.0,2046.2406520464733,1300.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102151,2,2,1,0,1,,254.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1921.94336167974,1200.0,25047.957334173625,5,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05190043973072302,16698.638222782418,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2147,2,27.0,0.0,1,111,456.0,0.0,0.0,0,54,1086.3233365676995,0.0,777.5714477776598,1755.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,10.0,1,,1,102152,2,1,1,0,1,,178.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1079.97830143705,456.0,21285.837384870516,0,1,2,3,65.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.08244918761088599,21285.837384870516,6,3,6,6_1,6_2,6_1_0 +2148,2,80.0,0.0,5,111,0.0,0.0,672.0,78,78,0.0,0.0,423.5738911587078,672.0,0.0,804.2040031634656,50,0,0,0,0,0,0,0,0,0,,2,,3,102153,1,1,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,500.580026400225,0.0,38071.018023865865,5,5,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017651222238888865,25380.678682577243,7,4,7,7_0,7_4,7_0_0 +2149,2,87.0,0.0,1,111,413.0,1200.0,0.0,0,75,0.0,0.0,704.2478244126613,1613.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,102154,2,1,2,0,1,,250.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1576.04617191451,413.0,23177.915557484743,0,5,0,1,65.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06959210788388263,23177.915557484743,6,3,6,6_1,6_2,6_1_0 +2150,1,47.0,529.0,2,111,1740.0,120.0,0.0,85,21,0.0,0.0,2967.0489454673866,1860.0,0.0,227.8204857527747,31,0,0,0,0,0,0,0,0,0,,2,,2,102155,2,1,0,1,1,1068.0,0.0,503.0,42,1.0,1.0,5.0,5.0,2.5999999999999996,3,2,166.797041481338,1740.0,32043.050889646576,6,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05804690715642761,12324.250342171761,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +2151,1,37.0,140.0,2,111,656.0,74.0,0.0,0,65,0.0,0.0,1118.6115564520721,730.0,0.0,140.4892995475444,50,1,2,2,1,1,1,2,2,2,15.0,2,,2,102156,1,1,0,1,1,72.0,0.0,297.0,32,1.0,0.0,3.0,2.0,1.5,2,1,285.05444808838,656.0,18910.0786007202,0,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.038603752814237245,12606.7190671468,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2152,2,80.0,0.0,6,111,2477.0,0.0,0.0,0,74,0.0,0.0,4223.781745932595,2582.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,102157,2,1,2,0,2,,220.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1145.40701977114,2477.0,44089.68752211324,0,5,0,1,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05856244725492768,44089.68752211324,10,5,10,10_1,10_3,10_0_0 +2153,2,69.0,0.0,5,400,336.0,0.0,0.0,78,75,1225.541472904531,595.9472746546007,572.9473825730125,4025.0,235.55016831740858,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102158,2,1,2,0,1,,174.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1154.65426976588,336.0,31843.577811894487,5,5,0,1,85.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1263991133086982,21229.051874596324,5,3,5,5_1,5_0,5_0_0 +2154,2,78.0,0.0,7,111,0.0,0.0,0.0,77,72,0.0,0.0,0.0,1346.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,102159,2,1,2,0,1,,154.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1019.25865255211,0.0,36683.131329017546,5,5,0,1,85.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03669261459517962,24455.420886011696,7,4,7,7_1,7_3,7_0_0 +2155,2,25.0,0.0,2,111,1200.0,1000.0,0.0,0,63,0.0,0.0,2046.2406520464733,2200.0,0.0,1898.504047939789,43,0,0,0,0,0,0,0,0,0,,1,,2,102160,2,1,3,0,1,,800.0,,22,3.0,0.0,5.0,3.0,2.0,3,3,1065.88764434033,1200.0,33005.543276052704,0,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06665547000997915,16502.771638026352,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +2156,1,29.0,245.0,2,112,390.0,1360.0,0.0,85,56,0.0,0.0,665.0282119151038,1750.0,0.0,2581.965505198113,71,2,2,2,2,1,2,2,2,3,60.0,1,,2,102161,2,2,5,0,1,,360.0,550.0,42,1.0,0.0,3.0,4.0,2.1,2,2,819.294746987009,390.0,18290.42866212325,6,1,2,3,68.0,10,5,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.09567845742314335,8709.727934344404,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +2157,0,41.0,0.0,7,111,0.0,,,0,68,0.0,0.0,,312.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,0,,2,,5,102162,2,3,0,0,2,,0.0,,32,2.0,0.0,3.0,5.0,2.8,4,2,47.0590541849572,0.0,6732.802117269453,0,4,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04634028960983846,2404.5721847390905,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +2158,2,56.0,0.0,1,111,625.0,2710.0,0.0,22,37,0.0,79.45963662061344,1065.7503396075383,3395.0,0.0,5144.945969916828,60,0,0,0,0,0,0,0,0,0,,1,,1,102163,2,1,2,0,1,,199.0,,43,3.0,0.0,7.0,4.0,2.5,4,3,368.649546084627,625.0,76621.69749963522,1,1,0,1,235.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044308598096722704,30648.678999854088,8,4,8,8_1,8_3,8_1_0 +2159,2,83.0,0.0,2,111,846.0,1300.0,0.0,86,74,0.0,0.0,1442.5996596927637,2146.0,0.0,2468.055262321726,60,0,0,0,0,0,0,0,0,0,,2,,2,102164,1,2,0,1,2,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1755.88623123714,846.0,32214.620533555055,6,5,0,1,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06661571561163374,21476.413689036704,6,3,6,6_0,6_3,6_0_1 +2160,2,62.0,0.0,2,111,385.0,0.0,0.0,77,75,0.0,0.0,656.5022091982436,385.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102165,2,1,0,1,1,,0.0,379.0,41,0.0,2.0,4.0,2.0,1.5,2,2,290.048502276499,385.0,34086.94292700353,5,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011294647361732302,22724.628618002356,6,3,6,6_0,6_4,6_0_1 +2161,2,85.0,0.0,2,111,0.0,150.0,0.0,0,77,0.0,0.0,0.0,406.0,0.0,284.77560719096834,71,2,1,2,2,1,2,2,2,0,,2,,2,102166,2,3,0,1,1,602.0,0.0,365.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1107.38698902703,0.0,17825.985577897307,0,5,2,3,60.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.022775739283857895,17825.985577897307,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +2162,1,27.0,360.0,2,111,300.0,90.0,0.0,0,85,0.0,0.0,511.56016301161833,390.0,0.0,170.865364314581,50,2,1,2,1,1,2,2,2,0,,2,,2,102167,1,3,0,1,2,,0.0,336.0,31,0.0,0.0,4.0,2.0,1.3,1,1,222.604088625011,300.0,9397.727892833056,0,6,2,3,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04149939266675553,7229.021456025427,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2163,1,66.0,122.0,2,221,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1145.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102168,1,1,1,0,1,,307.0,450.0,11,0.0,1.0,4.0,1.0,1.0,1,1,617.077440349966,0.0,9597.249890097166,0,5,2,3,65.0,1,2,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11930501061366108,9597.249890097166,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +2164,0,71.0,0.0,6,112,2040.0,0.0,0.0,0,74,0.0,0.0,3478.6091084790046,2040.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,102169,2,1,2,0,1,,827.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1441.6839316207,2040.0,51698.63008415958,0,5,0,1,125.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03945945949977994,51698.63008415958,10,5,10,10_1,10_1,10_0_0 +2165,1,46.0,270.0,6,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,504.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,4,102170,2,2,0,0,1,,143.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3015.77073919065,0.0,12023.260336478495,0,1,2,3,34.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04191874632131746,12023.260336478495,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2166,1,47.0,380.0,2,111,600.0,,,0,52,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,2,102171,2,2,0,0,2,,200.0,500.0,32,2.0,3.0,3.0,2.0,1.5,2,1,38.07709657056797,600.0,15552.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038580246913580245,10368.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2167,2,32.0,0.0,2,111,390.0,1163.0,0.0,55,63,0.0,0.0,665.0282119151038,1553.0,0.0,2207.960207753975,50,2,2,2,2,1,2,2,2,2,15.0,1,,2,102172,1,3,2,0,2,,252.0,691.0,43,2.0,0.0,5.0,4.0,2.1,2,2,286.227805964968,390.0,37051.7550868509,1,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.04191434377021282,17643.692898500427,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +2168,0,51.0,0.0,1,300,850.0,0.0,0.0,11,11,0.0,0.0,1449.420461866252,940.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102173,1,2,1,0,2,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,905.678594497468,850.0,19347.52501500715,1,1,5,0,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.048585025695580035,12898.350010004768,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2169,2,36.0,0.0,2,111,325.0,87.0,0.0,22,38,0.0,0.0,554.1901765959199,571.0,0.0,165.16985217076163,20,0,0,0,0,0,0,0,0,0,,2,,2,102174,2,2,0,1,2,973.0,0.0,1100.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1245.432939794,325.0,33083.93834538679,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0172591302171744,18379.965747437105,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +2170,2,53.0,0.0,2,111,480.0,170.0,0.0,0,52,0.0,0.0,818.4962608185893,650.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,102175,2,1,0,1,1,,93.0,634.0,12,1.0,3.0,3.0,1.0,1.0,1,1,310.962469518845,480.0,32542.731086606986,0,1,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019973738475425887,32542.731086606986,8,4,8,8_0,8_4,8_0_1 +2171,1,65.0,77.0,5,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2513.0,42.95326598729215,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102176,2,2,2,0,1,,149.0,200.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1422.17893996483,0.0,11835.018348623853,0,5,2,3,66.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.21233596146407374,11835.018348623853,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +2172,2,89.0,0.0,1,400,3000.0,0.0,0.0,0,75,0.0,92.70290939071567,5115.6016301161835,3070.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,102177,2,1,1,0,1,,401.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1008.76969594865,3000.0,25461.810998553505,0,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.120572727532005,25461.810998553505,7,4,7,7_1,7_0,7_1_0 +2173,2,68.0,0.0,6,111,850.0,0.0,0.0,86,78,0.0,0.0,1449.420461866252,970.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,102178,2,1,2,0,1,,200.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,1669.14903714945,850.0,34683.144893775265,6,5,0,1,113.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02796747535354241,17341.572446887632,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +2174,0,74.0,0.0,6,111,300.0,,,0,78,0.0,0.0,,420.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,4,102179,1,2,0,0,2,,110.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,125.73760520223787,300.0,5110.0,0,5,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0821917808219178,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2175,2,65.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1456.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102180,1,2,0,0,1,,0.0,222.0,11,0.0,4.0,2.0,1.0,1.0,1,1,286.485114729964,0.0,17798.883254775104,0,5,2,3,56.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08180288499894411,17798.883254775104,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +2176,2,57.0,0.0,6,111,600.0,,,77,65,0.0,0.0,,684.0,116.38949493330776,,50,2,2,2,2,1,2,2,2,0,,1,,4,102181,1,3,0,0,2,,312.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,113.0442494247693,600.0,17202.504587155963,7,4,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03976165194635089,11468.33639143731,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2177,2,47.0,0.0,1,111,0.0,0.0,600.0,0,55,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,20,2,2,2,2,2,2,2,1,3,30.0,2,,1,102182,1,2,0,0,2,,348.0,447.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2139.4877456083,0.0,14290.908663374237,0,1,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04198473408046634,14290.908663374237,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +2178,2,30.0,0.0,2,112,0.0,0.0,356.0,46,55,0.0,0.0,224.3933113876488,356.0,0.0,426.0366445330264,50,2,1,2,1,1,1,2,2,2,5.0,2,,2,102183,2,1,0,1,1,590.0,0.0,168.0,43,2.0,0.0,2.0,2.0,1.5,2,2,227.111467046908,0.0,31879.18480356088,1,1,2,3,50.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011167161337206938,21252.789869040585,5,3,5,5_0,5_2,5_0_1 +2179,2,29.0,0.0,1,111,0.0,0.0,1060.0,54,63,0.0,0.0,668.1373878396284,1110.0,69.27946126982604,1268.5360764185618,43,0,0,0,0,0,0,0,0,2,40.0,1,,1,102184,2,2,4,0,1,,384.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,222.941261981124,0.0,37869.37529981601,1,1,1,2,60.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029311283621977068,18033.03585705524,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +2180,0,63.0,0.0,7,400,0.0,,,0,78,0.0,0.0,,90.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,0,,1,,5,102185,2,3,0,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,69.13634646385763,0.0,3228.3094297451744,0,5,5,0,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027878368526496583,3228.3094297451744,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +2181,2,75.0,0.0,1,112,504.0,0.0,0.0,74,72,3164.0485531098047,0.0,859.4210738595189,3718.0,296.5160942348555,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102186,2,1,3,0,1,,50.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,933.208254529852,504.0,43338.6822355638,5,5,0,1,120.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08578941048071376,28892.4548237092,8,4,8,8_1,8_1,8_1_0 +2182,2,27.0,0.0,9,111,1020.0,,,0,55,0.0,0.0,,1020.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,102187,2,3,0,0,2,,460.0,623.0,32,1.0,0.0,3.0,2.0,1.3,1,1,117.79687310344285,1020.0,31706.81589664723,0,1,2,3,76.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032169739254954886,24389.85838203633,7,4,7,7_0,7_3,7_0_0 +2183,2,29.0,0.0,9,400,0.0,0.0,0.0,0,63,0.0,0.0,0.0,814.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,102188,2,1,1,0,1,,301.0,480.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1675.75122354141,0.0,16651.559585051727,0,1,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04888430995561136,16651.559585051727,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2184,2,36.0,0.0,7,112,350.0,360.0,0.0,46,52,0.0,0.0,596.8201901802214,710.0,0.0,683.461457258324,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,102189,2,1,0,0,1,,250.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,2265.02875591055,350.0,20608.76281917268,4,1,0,1,52.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0344513645108029,13739.175212781787,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +2185,1,39.0,253.0,2,111,280.0,0.0,0.0,52,68,0.0,0.0,477.4561521441771,500.0,304.8296295872346,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,102190,1,2,0,1,1,926.0,225.0,228.0,43,2.0,3.0,4.0,3.0,1.8,2,2,357.300398705815,280.0,9489.34351422234,4,4,2,3,66.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05269068394990814,5271.8575079013,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2186,2,81.0,0.0,6,111,550.0,782.0,0.0,90,72,0.0,761.4881842808787,937.8602988546337,1907.0,0.0,1484.630165488915,70,0,0,0,0,0,0,0,0,0,,1,,4,102191,2,2,2,0,1,,400.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,912.179047957898,550.0,17920.928992411482,5,5,0,1,56.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10641189420523392,11947.285994940989,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2187,2,61.0,0.0,2,211,312.0,0.0,0.0,22,75,0.0,0.0,532.0225695320831,1508.0,1657.1647135742392,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102192,2,1,2,0,1,,649.0,,42,1.0,1.0,3.0,3.0,2.0,3,3,1456.3144935943,312.0,40727.59502562366,1,5,0,1,80.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03702649270233722,20363.79751281183,5,3,5,5_1,5_1,5_0_1 +2188,2,85.0,0.0,2,112,1218.0,0.0,0.0,77,75,0.0,0.0,2076.9342618271703,2061.0,1168.0517170092671,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,102193,2,2,1,0,1,,220.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1366.17339555506,1218.0,39584.29939544156,5,5,0,1,110.0,9,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052066097707348595,26389.532930294372,7,4,7,7_1,7_1,7_0_1 +2189,2,52.0,0.0,7,111,388.0,,,0,22,0.0,0.0,,568.0,249.40606057137379,,20,0,0,0,0,0,0,0,0,0,,1,,5,102194,2,1,0,0,2,,180.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,50.40714524952136,388.0,38807.99999860846,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01463615749382516,38807.99999860846,9,5,9,9_1,9_2,9_0_0 +2190,2,40.0,0.0,1,120,900.0,0.0,0.0,11,43,0.0,1324.327277010224,1534.680489034855,1900.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,102195,2,2,3,0,1,,150.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,1287.05878957696,900.0,27110.570607839745,1,1,0,1,180.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07008336443684311,11787.204612104239,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2191,0,39.0,0.0,6,111,1000.0,0.0,0.0,0,54,0.0,0.0,1705.2005433720612,1673.0,415.67676761895626,0.0,20,0,0,0,0,0,0,0,0,3,60.0,1,,4,102196,2,2,5,0,1,,400.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,493.467851839397,1000.0,33150.937281565115,0,1,5,0,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050466144766601745,20719.335800978195,5,3,5,5_1,5_4,5_0_0 +2192,2,61.0,0.0,1,111,200.0,350.0,0.0,0,34,0.0,0.0,341.04010867441224,550.0,0.0,664.4764167789261,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,102197,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,804.128082948971,200.0,129311.50354395759,0,1,0,1,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004253295220660979,129311.50354395759,10,5,10,10_0,10_4,10_1_0 +2193,2,76.0,0.0,1,111,600.0,2408.0,0.0,72,74,0.0,0.0,1023.1203260232367,3008.0,0.0,4571.597747439012,41,0,0,0,0,0,0,0,0,0,,2,,1,102198,2,1,0,0,1,,0.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,766.604646817034,600.0,89634.16402780768,5,5,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03355863283409228,59756.10935187179,10,5,10,10_0,10_4,10_1_0 +2194,1,72.0,34.0,7,111,180.0,100.0,0.0,0,78,0.0,0.0,306.936097806971,280.0,0.0,189.8504047939789,71,1,2,2,1,1,2,2,2,0,,2,,5,102199,1,2,0,1,2,1225.0,0.0,308.0,11,0.0,0.0,3.0,1.0,1.0,1,1,316.750512683203,180.0,13690.25803610433,0,5,2,3,65.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.020452499818599198,13690.25803610433,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +2195,0,23.0,0.0,1,400,0.0,,,85,69,0.0,0.0,,795.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,1,102200,2,2,0,0,2,,0.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,8.630211236835555,0.0,8088.560209032523,6,1,5,0,40.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09828696077606257,4493.6445605736235,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +2197,2,74.0,0.0,2,111,430.0,3277.0,0.0,0,77,0.0,0.0,733.2362336499863,3707.0,0.0,6221.397765098689,70,2,2,2,2,1,2,2,2,0,,1,,2,102202,2,1,2,0,1,,170.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,325.576758233345,430.0,34059.98586214207,0,5,0,1,99.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.10883739103721585,34059.98586214207,9,5,9,9_1,9_3,9_0_1 +2198,1,41.0,480.0,7,211,852.0,,,81,63,0.0,0.0,,1332.0,665.08282819033,,71,0,0,0,0,0,0,0,0,0,,2,,5,102203,2,2,0,0,2,,900.0,520.0,43,4.0,0.0,4.0,6.0,3.3,4,3,106.33969992907184,852.0,23408.15139442231,4,4,2,3,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05690325466356086,7093.379210431004,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2199,1,42.0,312.0,2,111,268.0,,,0,56,0.0,0.0,,368.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,2,,2,102204,2,3,0,0,2,,542.0,512.0,32,1.0,0.0,2.0,2.0,1.5,2,1,72.31907843981175,268.0,12365.560975609756,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02976007321672308,8243.707317073171,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2200,1,63.0,327.0,2,111,365.0,276.0,0.0,85,78,0.0,0.0,622.3981983308023,641.0,0.0,523.9871172313817,71,1,2,2,1,2,2,2,2,0,,2,,2,102205,2,1,0,1,2,316.0,0.0,392.0,41,0.0,3.0,4.0,2.0,1.5,2,2,386.971391750454,365.0,11707.422018348625,6,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05475159253637424,7804.948012232417,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2201,2,67.0,0.0,8,111,2200.0,0.0,0.0,77,74,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2000.0,6,102206,2,1,0,0,1,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,774.479289789991,2200.0,42365.57957219291,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05192894850526235,28243.719714795272,8,4,8,8_0,8_4,8_0_0 +2202,2,58.0,0.0,9,111,309.0,714.0,0.0,77,45,0.0,0.0,526.9069679019669,1023.0,0.0,1355.5318902290094,42,0,0,0,0,0,0,0,0,3,20.0,1,2006.0,6,102207,2,1,1,0,1,,160.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1573.95118760944,309.0,49202.67612190571,5,1,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020791552017727474,32801.784081270474,8,4,8,8_1,8_2,8_0_0 +2203,2,80.0,0.0,7,111,576.0,0.0,0.0,0,77,0.0,0.0,982.1955129823073,576.0,0.0,0.0,71,2,2,1,1,1,2,2,2,0,,2,,5,102208,2,2,0,0,1,,140.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1845.12011058424,576.0,43980.599362834255,0,5,0,1,90.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.013096683727478894,43980.599362834255,10,5,10,10_0,10_2,10_0_0 +2204,2,66.0,0.0,6,111,1440.0,,,22,77,0.0,0.0,,1572.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,102209,1,1,0,0,2,,1200.0,,42,2.0,2.0,7.0,4.0,2.3,3,3,74.44430786293364,1440.0,16653.65523107642,1,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09439369184649518,7240.7196656854,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +2205,2,48.0,0.0,1,400,1200.0,0.0,0.0,69,69,1898.4291318658827,0.0,2046.2406520464733,3000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102210,2,1,2,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,1693.52655798127,1200.0,49525.279570675506,1,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0605751249868024,21532.730248119788,6,3,6,6_1,6_0,6_1_0 +2206,2,44.0,0.0,5,111,720.0,0.0,0.0,56,63,0.0,0.0,1227.744391227884,720.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,40.0,2,,3,102211,2,2,0,0,1,412.0,0.0,500.0,43,2.0,0.0,3.0,4.0,2.1,2,2,219.512816890755,720.0,35602.38259301549,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020223365616582365,16953.51552048357,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +2207,1,63.0,78.0,2,111,400.0,450.0,0.0,77,78,0.0,463.51454695357836,682.0802173488245,1200.0,0.0,854.326821572905,71,1,2,2,1,2,2,2,2,0,,2,,2,102212,2,1,0,0,1,,0.0,338.0,41,0.0,5.0,3.0,2.0,1.5,2,2,367.96366044813,400.0,14734.797834099147,7,5,2,3,64.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08143986863687874,9823.198556066098,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2208,0,55.0,0.0,2,111,2500.0,0.0,0.0,55,22,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,102213,2,2,5,0,1,,900.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,551.496430945299,2500.0,60458.75783035817,1,1,5,0,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0413505022219407,30229.378915179084,8,4,8,8_1,8_4,8_0_1 +2209,2,52.0,0.0,1,221,354.0,,,0,68,0.0,0.0,,486.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,1,102214,1,2,0,0,2,,380.0,,22,1.0,9.0,5.0,2.0,1.5,2,2,115.24759647964981,354.0,35141.37473347692,0,4,0,1,60.0,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013829851668751569,23427.583155651282,6,3,6,6_1,6_1,6_1_0 +2210,2,76.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,476.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,102215,1,2,0,1,2,,0.0,400.0,11,0.0,2.0,1.0,1.0,1.0,1,1,775.552686375323,0.0,16347.284678105425,0,5,3,4,35.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029117985608798132,16347.284678105425,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +2211,1,72.0,217.0,7,111,528.0,,,0,77,0.0,0.0,,576.0,66.50828281903301,,70,0,0,0,0,0,0,0,0,0,,2,,5,102216,2,1,0,0,2,,324.0,390.0,11,0.0,2.0,3.0,1.0,1.0,1,1,97.49138168729321,528.0,9385.064919623685,0,5,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06137410928246365,9385.064919623685,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2212,2,40.0,0.0,6,111,2600.0,0.0,0.0,37,38,0.0,331.081819252556,4433.521412767359,2850.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,,4,102217,2,1,2,0,1,,341.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,602.058093210392,2600.0,93807.93304787052,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03038122584521327,44670.444308509774,10,5,10,10_1,10_4,10_0_0 +2213,2,30.0,0.0,8,111,600.0,,,0,55,0.0,0.0,,738.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,102218,2,2,0,0,2,,230.0,450.0,12,1.0,2.0,3.0,1.0,1.0,1,1,95.48088440159621,600.0,18808.140135706642,0,1,2,3,63.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0392383295038796,18808.140135706642,5,3,5,5_0,5_3,5_0_0 +2214,0,50.0,0.0,2,111,820.0,,,52,42,0.0,0.0,,946.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,102219,2,1,0,0,2,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,114.37844435455817,820.0,58207.14314220435,1,1,5,0,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016252300816222025,27717.687210573502,7,4,7,7_1,7_2,7_0_1 +2215,2,47.0,0.0,7,400,500.0,,,85,63,0.0,0.0,,676.0,243.8637036697877,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,102220,2,1,0,0,2,,360.0,,42,1.0,0.0,5.0,6.0,2.8999999999999995,3,2,98.49963420908608,500.0,47714.0,6,1,1,2,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014167749507482081,16453.103448275866,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2216,1,78.0,170.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,577.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102221,2,1,0,1,1,,0.0,282.0,11,0.0,4.0,3.0,1.0,1.0,1,1,932.040590853324,0.0,11706.02752293578,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04929084600813351,11706.02752293578,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +2217,1,66.0,284.0,1,111,273.0,837.0,0.0,56,78,0.0,0.0,465.5197483405727,1110.0,0.0,1589.0478881256033,71,2,2,2,2,1,2,2,2,0,,1,,1,102222,1,3,4,0,2,,500.0,260.0,42,1.0,3.0,4.0,3.0,2.0,3,2,348.945645502044,273.0,19189.485307198065,4,5,2,3,95.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.057844177799997266,9594.742653599033,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +2218,2,27.0,0.0,9,112,1050.0,0.0,0.0,43,53,0.0,158.91927324122688,1790.4605705406643,1170.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,55.0,1,2010.0,6,102223,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1129.45442619601,1050.0,53515.682869187825,1,1,1,2,135.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021862750081315673,29730.93492732657,8,4,8,8_1,8_0,8_0_0 +2219,1,26.0,30.0,9,111,1200.0,0.0,0.0,56,64,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2006.0,6,102224,2,1,0,0,1,,400.0,452.0,43,2.0,0.0,2.0,2.0,1.5,2,2,396.58272070555,1200.0,20765.226964951726,1,4,2,3,47.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05778891808047183,13843.48464330115,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2220,2,56.0,0.0,7,211,360.0,,,90,67,0.0,0.0,,452.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,102225,2,1,0,0,2,,380.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,88.0154342563898,360.0,40501.852896158074,1,1,0,1,85.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011159983252096495,27001.235264105384,7,4,7,7_1,7_2,7_0_0 +2221,0,28.0,0.0,2,111,0.0,,,0,56,0.0,0.0,,367.0,0.0,,43,0,0,0,0,0,0,0,0,1,5.0,1,,2,102226,2,2,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,123.4423769497848,0.0,14285.631720430109,0,1,5,0,12.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025690148478008674,14285.631720430109,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +2224,2,55.0,0.0,6,111,423.0,1116.0,0.0,0,63,0.0,0.0,721.2998298463818,1539.0,0.0,2118.7305175008046,60,0,0,0,0,0,0,0,0,2,25.0,1,,4,102229,2,1,2,0,1,,173.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,410.893863585373,423.0,31431.688693413053,0,1,0,1,68.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04896332535650618,31431.688693413053,8,4,8,8_1,8_3,8_0_0 +2225,2,50.0,0.0,1,111,600.0,390.0,0.0,37,46,0.0,39.72981831030672,1023.1203260232367,1020.0,0.0,740.4165786965177,20,0,0,0,0,0,0,0,0,1,10.0,2,,1,102230,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,992.77582518018,600.0,287615.76536848705,1,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00354639808667372,191743.84357899136,10,5,10,10_0,10_4,10_1_0 +2226,2,31.0,0.0,7,112,2717.0,0.0,0.0,38,38,0.0,132.4327277010224,4633.0298763418905,2817.0,0.0,0.0,31,2,2,1,2,1,2,2,1,2,60.0,1,,5,102231,2,3,3,0,1,,395.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,571.110644951141,2717.0,92869.65535229653,1,1,1,2,129.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.030332835728891717,61913.10356819769,10,5,10,10_1,10_1,10_0_0 +2227,2,58.0,0.0,7,111,0.0,0.0,0.0,38,68,0.0,556.2174563442941,0.0,1206.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,102232,2,1,1,0,1,,325.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,792.722781649,0.0,67076.79244684287,1,1,0,1,134.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01797939281243558,44717.86163122858,10,5,10,10_1,10_4,10_0_0 +2228,1,27.0,300.0,5,112,154.0,,,0,81,0.0,0.0,,430.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,102233,2,1,0,0,2,,240.0,520.0,32,1.0,0.0,4.0,2.0,1.3,1,1,114.1919712776492,154.0,7386.337931034483,0,4,2,3,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05821558721180484,5681.798408488064,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +2229,1,52.0,242.0,9,112,421.0,0.0,0.0,0,52,0.0,0.0,717.8894287596378,461.0,55.423569015860835,0.0,60,1,1,2,1,1,2,2,2,0,,2,2010.0,6,102234,1,3,0,1,1,408.0,0.0,320.0,12,1.0,3.0,2.0,1.0,1.0,1,1,2962.67526864019,421.0,7102.09195428028,0,4,2,3,35.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1,1,0,0,1,0.06491045215518014,7102.09195428028,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +2230,2,69.0,0.0,2,112,300.0,0.0,0.0,72,90,0.0,0.0,511.56016301161833,402.0,141.33010099044515,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102235,1,2,1,0,2,,0.0,,41,0.0,5.0,1.0,2.0,1.5,2,2,1699.41027235898,300.0,26103.26888882796,5,5,0,1,20.0,8,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015400370034576534,17402.17925921864,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +2231,2,37.0,0.0,9,300,1400.0,0.0,0.0,67,67,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,102236,2,1,1,0,1,,398.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,660.011330781322,1400.0,46288.36676090903,1,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030245180332919272,22042.07940995668,6,3,6,6_1,6_0,6_0_0 +2232,2,48.0,0.0,2,111,480.0,170.0,0.0,77,56,0.0,0.0,818.4962608185893,650.0,0.0,322.74568814976413,50,2,2,2,2,1,2,2,2,0,,2,,2,102237,1,2,0,1,2,502.0,0.0,91.0,42,1.0,2.0,3.0,2.0,1.5,2,2,303.756302647223,480.0,45335.12977474208,7,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01433766712987639,30223.419849828057,8,4,8,8_0,8_4,8_0_1 +2233,1,28.0,406.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1045.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102238,2,2,5,0,2,,508.0,650.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1433.70998383903,0.0,9837.75868258148,0,4,2,3,110.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.10622338214600183,6148.599176613425,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2234,2,51.0,0.0,7,111,816.0,,,0,62,0.0,0.0,,904.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,5,102239,2,3,0,0,2,,400.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,90.02545554431852,816.0,7181.794371432137,0,4,0,1,71.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12587383503988173,7181.794371432137,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2235,2,69.0,0.0,8,111,636.0,1193.0,0.0,72,74,0.0,0.0,1084.5075455846309,1829.0,0.0,2264.9153291921684,10,0,0,0,0,0,0,0,0,0,,2,2000.0,6,102240,2,1,0,0,1,,410.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1836.30863678673,636.0,53070.07529558291,5,5,0,1,130.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03446386668594439,35380.05019705527,9,5,9,9_0,9_2,9_0_0 +2236,0,60.0,0.0,2,111,286.0,0.0,0.0,0,22,0.0,0.0,487.6873554044095,570.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,102241,2,1,0,1,1,1250.0,0.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,1262.06132391413,286.0,33550.33125628257,0,1,5,0,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016989400064217338,33550.33125628257,9,5,9,9_0,9_4,9_0_1 +2237,2,30.0,0.0,2,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,228.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102242,1,3,0,1,2,192.0,0.0,279.0,22,1.0,0.0,2.0,2.0,1.5,2,2,348.632340881443,0.0,27598.88593043633,0,1,2,3,50.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008261203027349713,18399.257286957552,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +2238,1,69.0,266.0,6,111,216.0,,,85,75,0.0,0.0,,216.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,102243,2,1,0,0,2,,240.0,358.0,41,0.0,2.0,1.0,2.0,1.5,2,2,134.4707223910966,216.0,10021.25847457627,6,5,2,3,21.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021554179103152327,6680.838983050847,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2239,2,47.0,0.0,7,111,711.0,0.0,0.0,54,21,1469.173211493986,132.4327277010224,1212.3975863375356,2264.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,102244,2,1,2,0,1,,229.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,1445.48706654905,711.0,27277.048477991157,1,1,1,2,100.0,9,7,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0830001824364076,11859.586294778765,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +2240,2,77.0,0.0,2,221,437.0,0.0,0.0,77,72,2155.7717475188138,0.0,745.1726374535907,2601.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,102245,2,2,1,0,2,,318.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1620.0726760261,437.0,29443.874341719827,5,5,0,1,120.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08833755944660354,19629.249561146553,5,3,5,5_1,5_1,5_0_1 +2241,1,32.0,289.0,2,120,0.0,450.0,0.0,0,67,0.0,0.0,0.0,1662.0,0.0,854.326821572905,71,2,2,2,2,1,1,2,2,0,,2,,2,102246,1,3,0,1,1,550.0,480.0,417.0,32,1.0,0.0,3.0,2.0,1.3,1,1,410.021988223008,0.0,10482.174454532933,0,4,2,3,60.0,0,2,4,0,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.15855488832102782,8063.211118871486,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +2242,1,50.0,357.0,8,111,660.0,,,0,68,0.0,0.0,,775.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,2,20.0,2,2002.0,6,102247,2,1,0,0,2,,385.0,453.0,32,1.0,2.0,3.0,2.0,1.5,2,2,37.53419046701227,660.0,16850.260659077045,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04599335379316618,11233.507106051364,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2243,2,66.0,0.0,2,111,1150.0,0.0,0.0,78,74,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,102248,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2251.81940865188,1150.0,39836.68705690724,5,5,0,1,66.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028867862389189383,26557.791371271494,7,4,7,7_0,7_3,7_0_1 +2244,2,70.0,0.0,9,111,700.0,0.0,0.0,77,77,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,2,2009.0,6,102249,2,2,0,0,1,,220.0,591.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1503.46998173667,700.0,28430.73848850382,5,5,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.024621238744222215,18953.825659002545,5,3,5,5_0,5_3,5_0_0 +2246,1,44.0,377.0,8,111,220.0,0.0,0.0,0,43,0.0,0.0,375.14411954185346,220.0,0.0,0.0,33,2,1,2,1,2,1,2,2,0,,2,1999.0,6,102251,2,1,0,1,1,856.0,0.0,402.0,32,1.0,0.0,3.0,2.0,1.5,2,1,1730.6554705998,220.0,14122.281077770998,0,4,2,3,63.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.015578219891564705,9414.854051847333,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2247,1,49.0,413.0,8,120,540.0,,,56,85,0.0,0.0,,804.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,102252,2,2,0,0,1,,320.0,415.0,42,1.0,1.0,4.0,4.0,2.3,3,2,114.22824913349895,540.0,19154.464888257833,1,7,2,3,68.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.041974547693727125,8328.028212286015,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +2248,2,80.0,0.0,2,112,236.0,1020.0,0.0,0,77,0.0,0.0,402.42732823580644,1256.0,0.0,1936.4741288985847,71,0,0,0,0,0,0,0,0,0,,2,,2,102253,1,1,0,0,1,,204.0,329.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1020.75892022803,236.0,19865.362455342227,0,5,2,3,55.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0632256271600136,19865.362455342227,5,3,5,5_0,5_2,5_0_1 +2249,2,41.0,0.0,5,111,287.0,277.0,0.0,55,47,0.0,0.0,489.39255594778155,564.0,0.0,525.8856212793215,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,102254,1,2,0,1,1,,173.0,308.0,43,2.0,0.0,4.0,3.0,1.8,2,2,437.241622684461,287.0,52375.471879901634,1,1,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010768399400644392,29097.48437772313,8,4,8,8_0,8_2,8_0_0 +2250,2,50.0,0.0,2,111,480.0,120.0,0.0,0,52,0.0,0.0,818.4962608185893,600.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,102255,2,1,0,1,1,1131.0,0.0,238.0,32,1.0,2.0,3.0,2.0,1.5,2,2,344.551790453706,480.0,18802.893545017454,0,1,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031909982288816016,12535.26236334497,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +2251,2,56.0,0.0,1,112,1051.0,0.0,0.0,0,52,1054.6828510366015,0.0,1792.1657710840364,2111.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102256,2,2,5,0,1,,350.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,183.795525411309,1051.0,20912.14152893924,0,4,0,1,81.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1009461416028911,13941.427685959492,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2252,1,59.0,254.0,2,111,120.0,0.0,0.0,0,67,0.0,0.0,204.62406520464734,270.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102257,1,2,0,1,2,360.0,0.0,350.0,12,1.0,5.0,1.0,1.0,1.0,1,1,425.498399816692,120.0,19566.890137434602,0,4,2,3,48.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013798820257259311,19566.890137434602,5,3,5,5_0,5_2,5_0_1 +2253,2,80.0,0.0,1,300,1131.0,0.0,0.0,78,78,0.0,0.0,1928.5818145538012,3271.0,2965.1609423485547,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102258,1,1,1,0,1,,104.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1521.47377005566,1131.0,22514.17722389621,5,5,0,1,170.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14528623309086372,15009.451482597475,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2255,2,58.0,0.0,1,211,350.0,0.0,0.0,52,48,0.0,662.163638505112,596.8201901802214,910.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,102260,2,1,2,0,1,,350.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1159.93582821971,350.0,24426.189911590995,1,4,0,1,160.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03725509395012836,16284.12660772733,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2256,2,49.0,0.0,7,111,0.0,0.0,1494.0,52,64,0.0,0.0,941.6955258796273,1494.0,0.0,1787.9178284616332,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,102261,2,2,0,0,1,,0.0,450.0,43,2.0,0.0,5.0,4.0,2.3,3,2,1277.90588979617,0.0,37714.04357205669,1,1,2,3,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03961389070216123,16397.4102487203,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +2257,1,61.0,60.0,9,112,825.0,0.0,0.0,0,77,0.0,0.0,1406.7904482819504,825.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,102262,2,2,0,0,1,,0.0,436.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1041.84229848154,825.0,14321.0,0,5,2,3,45.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05760770895887159,14321.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +2259,0,77.0,0.0,1,111,840.0,1676.0,0.0,86,78,0.0,0.0,1432.3684564325313,2516.0,0.0,3181.8927843470865,71,0,0,0,0,0,0,0,0,0,,1,,1,102264,2,1,2,0,1,,924.0,,41,0.0,8.0,6.0,2.0,1.5,2,2,319.925338464486,840.0,33256.788644983666,6,5,5,0,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07565372672804668,22171.19242998911,6,3,6,6_1,6_3,6_1_0 +2260,2,46.0,0.0,7,111,660.0,,,0,52,0.0,0.0,,849.0,261.87636359994247,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,102265,2,1,0,0,1,,400.0,,32,1.0,0.0,5.0,4.0,2.5,4,2,112.49552545081576,660.0,36572.87628545401,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023213924805188742,14629.150514181605,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +2261,1,44.0,168.0,2,211,720.0,0.0,0.0,0,67,0.0,1854.0581878143134,1227.744391227884,2420.0,415.67676761895626,0.0,42,2,2,2,1,1,2,2,2,2,5.0,2,,2,102266,2,1,0,1,1,,450.0,411.0,32,1.0,1.0,5.0,3.0,2.0,3,2,370.347397772234,720.0,23364.876157392453,0,1,2,3,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10357427035770236,11682.438078696227,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +2262,2,48.0,0.0,2,111,240.0,160.0,0.0,0,53,0.0,0.0,409.2481304092947,400.0,0.0,303.7606476703662,33,0,0,0,0,0,0,0,0,3,20.0,2,,2,102267,1,2,0,1,1,648.0,0.0,254.0,22,2.0,0.0,3.0,2.0,1.5,2,2,267.37681948572,240.0,21506.240765022805,0,1,2,3,57.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018599252392382293,14337.493843348537,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +2263,1,45.0,104.0,1,112,661.0,0.0,0.0,0,85,0.0,0.0,1127.1375591689325,686.0,34.63973063491302,0.0,50,2,2,1,2,1,2,2,2,0,,2,,1,102268,1,1,0,0,2,,92.0,400.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1391.69241131339,661.0,10421.400466010575,0,7,2,3,58.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.06582608568180359,10421.400466010575,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +2265,2,53.0,0.0,2,111,2400.0,,,63,45,0.0,0.0,,2400.0,0.0,,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,102270,2,1,0,0,2,,600.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,166.18183801207084,2400.0,98637.83973547345,1,1,1,2,260.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02433143311366419,46970.39987403497,10,5,10,10_1,10_2,10_0_1 +2266,2,52.0,0.0,6,111,800.0,0.0,0.0,72,21,0.0,662.163638505112,1364.160434697649,1300.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,30.0,1,,4,102271,2,1,3,0,1,,180.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,520.44623520504,800.0,165285.53171723877,6,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.007865177226909171,110190.35447815918,10,5,10,10_1,10_4,10_0_0 +2267,2,54.0,0.0,5,111,600.0,0.0,0.0,37,37,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,102272,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,706.324450096947,600.0,102151.08060896827,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00587365298950468,44413.51330824708,10,5,10,10_0,10_4,10_0_0 +2268,1,47.0,217.0,9,111,1048.0,1002.0,0.0,52,62,0.0,0.0,1787.05016945392,2050.0,0.0,1902.3010560356686,50,2,2,2,2,2,2,2,1,2,45.0,1,2004.0,6,102273,2,2,4,0,1,,1200.0,621.0,43,3.0,0.0,4.0,5.0,2.8,4,3,709.710620258549,1048.0,52633.73462477618,1,1,2,3,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,1,0.038948404756272176,18797.762365991493,5,3,5,5_1,5_4,5_0_0 +2269,2,73.0,0.0,2,111,200.0,800.0,0.0,0,75,0.0,0.0,341.04010867441224,1000.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,2,,2,102274,2,2,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,383.4741961915,200.0,25472.03028564768,0,5,0,1,75.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03925874729206231,25472.03028564768,7,4,7,7_0,7_3,7_0_1 +2270,1,65.0,249.0,5,111,330.0,170.0,0.0,0,86,0.0,0.0,562.7161793127802,500.0,0.0,322.74568814976413,70,2,1,2,2,1,1,2,2,0,,2,,3,102275,1,2,0,1,1,334.0,0.0,339.0,11,0.0,6.0,3.0,1.0,1.0,1,1,472.514288765437,330.0,7897.092128279304,0,5,2,3,68.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.0633144443395198,7897.092128279304,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2271,2,36.0,0.0,1,111,350.0,904.0,0.0,85,38,0.0,0.0,596.8201901802214,1254.0,0.0,1716.2476593375693,10,0,0,0,0,0,0,0,0,1,10.0,1,,1,102276,2,2,2,0,1,,315.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1010.44456560803,350.0,30536.698356682165,6,1,1,2,79.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041065343258551545,12723.624315284236,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +2272,1,51.0,253.0,1,111,420.0,,,0,68,0.0,0.0,,552.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,3,10.0,2,,1,102277,1,2,0,0,2,,240.0,533.0,22,2.0,2.0,3.0,2.0,1.5,2,2,152.39426354192264,420.0,8586.642905460081,0,1,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06428589217900209,5724.4286036400545,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +2273,1,56.0,253.0,2,111,0.0,,,0,78,0.0,0.0,,162.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,0,,2,,2,102278,2,3,0,0,2,,118.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,110.78410118106012,0.0,6226.4288841430825,0,7,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026018124195165426,6226.4288841430825,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2274,2,64.0,0.0,2,300,800.0,0.0,0.0,77,75,527.3414255183008,264.8654554020448,1364.160434697649,1640.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102279,2,1,1,0,1,,430.0,,41,1.0,2.0,7.0,3.0,2.0,3,3,1375.08843758731,800.0,84408.50292994938,6,5,0,1,250.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019429322201828837,42204.25146497469,9,5,9,9_1,9_0,9_0_1 +2275,2,43.0,0.0,2,111,180.0,0.0,0.0,0,46,0.0,0.0,306.936097806971,180.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,102280,2,1,0,1,1,368.0,0.0,214.0,12,1.0,0.0,2.0,1.0,1.0,1,1,383.752023870097,180.0,21585.196865069312,0,1,2,3,65.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008339048336005158,21585.196865069312,6,3,6,6_0,6_3,6_0_1 +2276,1,48.0,350.0,1,111,0.0,,,0,81,0.0,0.0,,92.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,2,,1,102281,1,3,0,0,2,,0.0,400.0,32,1.0,2.0,3.0,2.0,1.5,2,1,123.23671175719183,0.0,9386.52097902098,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0098012884865033,6257.680652680653,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +2277,2,60.0,0.0,7,112,360.0,,,0,45,0.0,0.0,,439.0,109.46154880632515,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,102282,2,3,0,0,2,,310.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,69.78331949081651,360.0,46443.257765046896,0,1,1,2,92.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009452394623582813,46443.257765046896,10,5,10,10_1,10_1,10_0_0 +2278,2,79.0,0.0,9,111,340.0,,,0,74,0.0,0.0,,409.0,95.60565655235995,,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,102283,2,1,0,0,2,,210.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,99.88369623185969,340.0,37858.363124659605,0,5,0,1,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010803425352893607,37858.363124659605,9,5,9,9_1,9_2,9_0_0 +2279,2,65.0,0.0,1,120,340.0,0.0,0.0,0,71,3691.3899786281054,0.0,579.7681847465008,3960.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102284,2,2,4,0,1,,150.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,258.545062947833,340.0,13448.00827586853,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2944673976075648,13448.00827586853,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2280,0,39.0,0.0,2,111,220.0,,,0,85,0.0,0.0,,358.0,191.2113131047199,,43,0,0,0,0,0,0,0,0,0,,1,,2,102285,1,3,0,0,2,,280.0,,31,0.0,0.0,5.0,3.0,1.6,1,1,167.92810395327513,220.0,11606.0,0,6,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030846114078924694,7253.75,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +2281,2,43.0,0.0,2,112,780.0,0.0,0.0,48,54,316.40485531098045,797.2450207601548,1330.0564238302077,1807.0,173.19865317456512,0.0,42,0,0,0,0,0,0,0,0,2,8.0,1,,2,102286,2,2,2,0,1,,502.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,760.473064768583,780.0,62070.13533186939,4,1,1,2,140.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02911222909920435,24828.054132747755,7,4,7,7_1,7_0,7_0_1 +2282,2,55.0,0.0,1,111,0.0,0.0,2500.0,54,37,0.0,0.0,1575.7957260368596,2500.0,0.0,2991.830368911702,41,0,0,0,0,0,0,0,0,2,60.0,1,,1,102287,2,2,4,0,1,,300.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,483.969125022936,0.0,120115.40190729917,1,1,1,2,240.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020813317528832913,80076.93460486611,10,5,10,10_1,10_3,10_1_0 +2283,2,41.0,0.0,7,112,542.0,,,63,56,0.0,132.4327277010224,,894.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,102288,2,1,0,0,2,,500.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,107.61268198692298,542.0,37324.04765158416,4,1,0,1,90.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023952386095564736,16227.846805036592,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2284,1,34.0,270.0,2,111,840.0,300.0,0.0,0,55,0.0,0.0,1432.3684564325313,1140.0,0.0,569.5512143819367,71,2,2,2,2,1,2,2,2,0,,2,,2,102289,2,3,0,1,1,816.0,0.0,330.0,12,1.0,1.0,3.0,1.0,1.0,1,1,312.055123018012,840.0,9725.835113476776,0,4,2,3,67.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.11721358492088137,9725.835113476776,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2285,2,63.0,0.0,2,111,600.0,720.0,0.0,77,74,0.0,0.0,1023.1203260232367,1320.0,0.0,1366.922914516648,50,0,0,0,0,0,0,0,0,0,,1,,2,102290,2,3,3,0,1,,260.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,337.679846202502,600.0,49426.10392394581,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026706535518784647,32950.73594929721,8,4,8,8_1,8_3,8_0_1 +2286,1,78.0,201.0,5,111,260.0,,,0,77,0.0,0.0,,392.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,3,102291,2,1,0,0,2,,220.0,382.0,11,0.0,7.0,2.0,1.0,1.0,1,1,124.96996483637014,260.0,9477.377859252312,0,6,2,3,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04136165148436169,9477.377859252312,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2287,2,77.0,0.0,2,112,250.0,1200.0,0.0,77,78,0.0,0.0,426.3001358430153,1450.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,102292,2,1,2,0,1,,300.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1301.30896425267,250.0,27895.92584000904,5,5,0,1,100.0,6,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05197891650258023,18597.28389333936,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +2288,2,59.0,0.0,8,111,200.0,,,0,46,0.0,0.0,,200.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,102293,2,1,0,0,2,,150.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,61.33287728646172,200.0,13520.294156959382,0,4,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014792577563636276,13520.294156959382,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +2289,2,84.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,339.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102294,2,1,0,1,1,,243.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1892.72444400061,0.0,16158.87563921823,0,5,0,1,80.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020979182436260208,16158.87563921823,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +2290,2,48.0,0.0,2,111,250.0,0.0,0.0,0,56,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,60.0,2,,2,102295,2,2,0,1,1,528.0,0.0,381.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1795.87963409843,250.0,4849.521935719155,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05155147317895913,4849.521935719155,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +2291,2,78.0,0.0,5,300,220.0,0.0,0.0,78,74,1316.2441980936787,0.0,375.14411954185346,1573.0,145.4868686666347,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,102296,2,1,2,0,1,,358.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1151.00184687808,220.0,40477.5369856531,5,5,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03886106016177653,26985.02465710207,7,4,7,7_1,7_0,7_0_0 +2292,2,44.0,0.0,5,111,460.0,853.0,0.0,52,22,0.0,0.0,784.3922499511482,1313.0,0.0,1619.42395289264,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,102297,2,1,2,0,1,,420.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,620.359917971579,460.0,39860.599998298254,1,1,0,1,120.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03293979518763027,17330.695651434024,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2293,2,84.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,102298,2,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1857.27634028185,300.0,23259.544994471624,0,5,0,1,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012897930723550466,23259.544994471624,6,3,6,6_0,6_3,6_0_1 +2294,2,85.0,0.0,2,111,650.0,0.0,0.0,72,72,2109.365702073203,0.0,1108.3803531918397,2750.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102299,2,2,5,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,302.150773550382,650.0,14943.125536802898,5,5,0,1,66.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18403111137807962,9962.083691201931,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +2295,2,46.0,0.0,5,111,0.0,,,54,42,0.0,0.0,,400.0,554.2356901586083,,42,0,0,0,0,0,0,0,0,0,,1,,3,102300,1,3,0,0,2,,0.0,,43,2.0,0.0,5.0,6.0,3.3,5,3,104.1051305534982,0.0,32227.243208566953,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012411859041472966,9765.83127532332,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2296,0,38.0,0.0,2,111,1000.0,,,85,21,0.0,0.0,,1000.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,102301,2,1,0,0,2,,300.0,,42,1.0,1.0,4.0,4.0,2.1,2,2,88.82211197968888,1000.0,35291.75947098933,6,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028335226551173338,16805.599748090157,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +2297,1,40.0,380.0,1,111,240.0,0.0,0.0,0,56,0.0,0.0,409.2481304092947,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,102302,2,1,0,1,2,264.0,0.0,505.0,32,1.0,0.0,1.0,2.0,1.3,1,1,784.167799767612,240.0,17388.589245298594,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.013802154770254841,13375.837880998917,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +2298,2,63.0,0.0,1,111,284.0,,,0,77,0.0,0.0,,424.0,193.98249155551292,,60,0,0,0,0,0,0,0,0,0,,1,,1,102303,2,1,0,0,2,,463.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,135.3949421846881,284.0,19389.45623141272,0,5,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021867554971092,19389.45623141272,5,3,5,5_1,5_2,5_1_0 +2299,2,72.0,0.0,5,111,160.0,0.0,0.0,0,77,0.0,0.0,272.8320869395298,281.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,102304,1,3,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2319.2654700514,160.0,23422.959897416113,0,5,0,1,46.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011996775865675213,23422.959897416113,6,3,6,6_0,6_2,6_0_0 +2300,2,40.0,0.0,8,111,220.0,,,0,62,0.0,0.0,,423.0,281.27461275549376,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,102305,2,1,0,0,1,,0.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,91.9141399889666,220.0,37104.61644925964,0,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011400198694371363,24736.410966173094,7,4,7,7_1,7_2,7_0_0 +2301,2,25.0,0.0,1,112,0.0,0.0,0.0,55,53,0.0,0.0,0.0,1141.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,45.0,1,,1,102306,2,1,4,0,1,,0.0,550.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1776.47696671474,0.0,27057.809399939546,4,1,2,3,100.0,9,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04216897174249994,18038.5395999597,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2302,2,41.0,0.0,2,120,1248.0,0.0,0.0,43,47,0.0,0.0,2128.0902781283326,1248.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,2,102307,1,2,2,0,2,,498.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,661.856876379415,1248.0,57816.481936036296,1,1,0,1,72.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02158554028556582,27531.65806477919,7,4,7,7_1,7_0,7_0_1 +2303,2,45.0,0.0,7,111,1422.0,,,52,65,0.0,0.0,,1422.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,102308,2,1,0,0,2,,62.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,75.93327324194897,1422.0,57420.681219854116,1,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024764596479714365,27343.18153326386,7,4,7,7_1,7_2,7_0_0 +2305,2,57.0,0.0,5,111,600.0,0.0,0.0,77,68,0.0,0.0,1023.1203260232367,979.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,4,25.0,2,,3,102310,2,2,0,1,1,,103.0,395.0,42,1.0,2.0,4.0,3.0,2.0,3,3,309.104799988758,600.0,29435.209871984873,5,1,2,3,84.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033259487676755746,14717.604935992436,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +2306,2,39.0,0.0,9,112,765.0,1940.0,0.0,52,43,0.0,0.0,1304.4784156796268,2705.0,0.0,3683.0978530031907,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,102311,1,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,230.557487472152,765.0,53169.4402456299,1,1,1,2,98.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050875088913924185,25318.78106934757,7,4,7,7_1,7_0,7_0_0 +2307,2,34.0,0.0,2,111,840.0,500.0,0.0,52,54,0.0,0.0,1432.3684564325313,1340.0,0.0,949.2520239698945,41,2,2,2,2,1,2,2,2,3,30.0,2,,2,102312,2,1,0,0,1,,0.0,370.0,43,2.0,0.0,3.0,3.0,1.8,2,2,586.246669610944,840.0,41162.51200536746,1,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.03255389272222425,22868.062225204147,6,3,6,6_0,6_3,6_0_1 +2308,2,28.0,0.0,2,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,285.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,102313,2,2,0,1,2,355.0,0.0,750.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1553.12831667286,0.0,27636.762672056844,1,4,2,3,57.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010312351102112247,15353.75704003158,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +2309,2,56.0,0.0,8,111,400.0,,,68,54,0.0,0.0,,568.0,232.77898986661552,,71,2,2,2,2,2,2,2,1,2,15.0,1,2000.0,6,102314,2,2,0,0,2,,400.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,118.30882623842575,400.0,28732.10093279476,1,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.019768829342781753,14366.05046639738,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +2310,2,46.0,0.0,7,111,729.0,1097.0,0.0,54,64,0.0,0.0,1243.0911961182326,1826.0,0.0,2082.6589405899485,50,1,2,2,1,1,2,2,2,2,30.0,2,,5,102315,2,2,0,0,1,,0.0,568.0,42,2.0,2.0,4.0,5.0,3.0,5,5,805.508304542914,729.0,66623.34621645798,1,7,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02740780977988348,22207.782072152662,6,3,6,6_0,6_4,6_0_0 +2311,2,66.0,0.0,1,300,800.0,0.0,0.0,75,86,0.0,662.163638505112,1364.160434697649,6300.0,6927.946126982605,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,102316,2,2,5,0,2,,200.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1076.88539716302,800.0,22956.590290901382,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2744309986878558,15304.393527267588,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2312,2,61.0,0.0,1,111,498.0,1244.0,0.0,42,21,0.0,0.0,849.1898705992865,1742.0,0.0,2361.7390356370975,50,2,2,1,1,2,2,2,2,0,,1,,1,102317,2,3,2,0,1,,400.0,,43,2.0,3.0,3.0,3.0,2.0,3,2,1400.85480773464,498.0,59403.112901994726,1,1,0,1,85.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.02932506252448438,29701.556450997363,8,4,8,8_1,8_3,8_1_0 +2313,1,36.0,395.0,7,111,184.0,,,85,67,0.0,0.0,,672.0,676.1675419935023,,71,2,2,2,2,1,2,2,2,0,,2,,5,102318,2,2,0,0,2,,360.0,342.0,42,1.0,0.0,3.0,4.0,2.1,2,2,104.50817959823185,184.0,15602.77075098814,6,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04306927344666918,7429.890833803876,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2314,1,39.0,293.0,2,111,580.0,520.0,0.0,0,56,0.0,0.0,989.0163151557955,1100.0,0.0,987.2221049286903,71,0,0,0,0,0,0,0,0,0,,2,,2,102319,2,1,0,1,1,576.0,0.0,330.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1338.43654269737,580.0,13974.707342028549,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07871363407316447,8734.192088767843,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +2315,2,49.0,0.0,6,111,500.0,,,0,64,0.0,0.0,,764.0,365.79555550468154,,70,0,0,0,0,0,0,0,0,0,,1,,4,102320,2,3,0,0,2,,700.0,700.0,12,1.0,2.0,5.0,1.0,1.0,1,1,45.587619722935216,500.0,27009.542028687196,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028286299678407928,27009.542028687196,7,4,7,7_1,7_2,7_0_0 +2316,2,66.0,0.0,2,111,345.0,117.0,0.0,0,77,0.0,0.0,588.2941874633611,766.0,0.0,222.12497360895532,41,1,2,2,2,2,2,2,1,0,,2,,2,102321,2,1,0,1,1,825.0,180.0,245.0,11,0.0,1.0,3.0,1.0,1.0,1,1,331.219483205132,345.0,14278.565858745915,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05364684433841857,14278.565858745915,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +2317,2,68.0,0.0,6,111,1140.0,,,46,75,0.0,0.0,,1215.0,103.91919190473907,,33,0,0,0,0,0,0,0,0,0,,2,,4,102322,2,1,0,0,2,,0.0,800.0,42,1.0,3.0,5.0,2.0,1.5,2,2,116.69911232995959,1140.0,38424.98595793806,1,5,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03162005059234116,25616.65730529204,7,4,7,7_0,7_2,7_0_0 +2318,2,26.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,102323,1,3,0,0,1,,0.0,710.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1983.51995204898,0.0,34544.3906665523,0,1,2,3,60.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027500846929682278,34544.3906665523,9,5,9,9_0,9_3,9_0_0 +2319,2,59.0,0.0,6,111,0.0,0.0,1550.0,46,46,0.0,0.0,976.9933501428528,1550.0,0.0,1854.9348287252553,41,0,0,0,0,0,0,0,0,3,90.0,1,,4,102324,2,1,2,0,1,,300.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,707.855558252361,0.0,60760.45906391347,1,1,0,1,126.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025510011344212633,40506.972709275644,9,5,9,9_1,9_4,9_0_0 +2321,1,53.0,260.0,2,111,160.0,300.0,0.0,85,63,0.0,0.0,272.8320869395298,460.0,0.0,569.5512143819367,41,0,0,0,0,0,0,0,0,0,,2,,2,102326,2,1,0,1,1,600.0,800.0,312.0,42,3.0,0.0,5.0,7.0,3.6,5,4,273.592675770034,160.0,42645.42098777476,6,4,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0107866211505303,11845.95027438188,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2322,2,50.0,0.0,1,111,1500.0,300.0,0.0,13,13,0.0,0.0,2557.8008150580918,1800.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,1,,1,102327,1,2,1,0,1,,250.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,1562.36861444938,1500.0,83314.6147908911,1,1,0,1,140.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021604852936279752,29755.21956817539,8,4,8,8_1,8_2,8_1_0 +2323,1,42.0,368.0,9,400,480.0,0.0,0.0,90,11,0.0,0.0,818.4962608185893,580.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102328,2,1,2,0,1,,259.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,821.955279879375,480.0,15237.930186165459,1,1,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03806291227968631,5442.117923630522,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +2324,2,59.0,0.0,9,400,352.0,0.0,0.0,52,64,0.0,422.4604013662614,600.2305912669656,771.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,2012.0,6,102329,2,1,1,0,1,,130.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,4792.74288263622,352.0,35802.0,1,1,0,1,102.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021535109770403887,23868.0,6,3,6,6_1,6_0,6_0_0 +2325,2,67.0,0.0,1,111,1174.0,0.0,0.0,0,77,0.0,0.0,2001.9054379187999,1264.0,124.70303028568689,0.0,41,2,2,2,1,1,2,2,2,0,,1,,1,102330,1,3,4,0,1,,438.0,500.0,11,0.0,1.0,5.0,1.0,1.0,1,1,1945.58888426407,1174.0,10743.587344153058,0,5,2,3,88.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.11765157758855117,10743.587344153058,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +2326,2,80.0,0.0,2,111,192.0,0.0,0.0,72,74,3046.9787566447417,0.0,327.3985043274357,3161.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102331,2,1,2,0,2,,256.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1395.9728449092,192.0,45410.10123445236,5,5,0,1,150.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06961006282896742,30273.40082296824,8,4,8,8_1,8_3,8_0_1 +2328,2,58.0,0.0,2,111,724.0,1366.0,0.0,52,38,0.0,0.0,1234.5651934013722,2090.0,0.0,2593.3565294857517,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,102333,2,1,1,0,1,,468.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,718.26043912563,724.0,72235.60511083825,1,1,0,1,130.0,4,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02893310019059307,48157.070073892166,10,5,10,10_1,10_2,10_0_1 +2329,1,39.0,413.0,7,112,600.0,,,0,67,0.0,0.0,,663.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,5,102334,2,2,0,0,2,,0.0,600.0,32,1.0,0.0,3.0,3.0,1.8,2,1,109.85911659030677,600.0,28359.802074430452,0,4,2,3,70.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02337816033623764,15755.445596905807,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +2330,2,43.0,0.0,8,120,680.0,0.0,0.0,54,63,0.0,132.4327277010224,1159.5363694930015,1620.0,1163.8949493330776,0.0,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,102335,2,1,2,0,1,,150.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1234.52980714048,680.0,37807.91492183905,1,1,1,2,151.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04284817090149123,18003.76901039955,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2331,2,50.0,0.0,2,112,1000.0,,,0,55,0.0,0.0,,1000.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,102336,2,1,0,0,2,,400.0,,22,1.0,0.0,4.0,3.0,2.0,3,3,102.03460657208973,1000.0,7791.783764427759,0,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1283403172153407,3895.8918822138794,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +2332,2,37.0,0.0,2,111,228.0,130.0,0.0,56,62,0.0,0.0,388.7857238888299,358.0,0.0,246.80552623217258,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,102337,1,1,0,1,1,541.0,0.0,323.0,43,2.0,1.0,3.0,3.0,1.8,2,2,287.236445663766,228.0,27109.016596421705,1,1,2,3,74.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013205938279858324,15060.564775789835,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +2333,2,54.0,0.0,5,111,375.0,,,42,69,0.0,0.0,,375.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,102338,2,2,0,0,2,,0.0,462.0,43,2.0,0.0,1.0,2.0,1.5,2,2,234.031931900244,375.0,8298.020194645,1,1,2,3,33.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04519150245524836,5532.013463096667,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +2335,2,40.0,0.0,9,400,960.0,,,81,21,0.0,0.0,,960.0,0.0,,71,0,0,0,0,0,0,0,0,0,,7,2012.0,6,102340,2,2,0,0,2,,460.0,250.0,43,2.0,3.0,1.0,2.0,1.5,2,2,48.19226610243404,960.0,19105.925925925923,4,1,2,3,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050246190826968566,12737.283950617282,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +2336,1,25.0,360.0,5,111,240.0,,,0,54,0.0,0.0,,282.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,0,,2,,3,102341,2,3,0,0,2,,320.0,350.0,32,1.0,0.0,3.0,3.0,1.6,1,1,141.9629636809307,240.0,17098.60746423236,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01649257114007093,10686.629665145223,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2337,2,49.0,0.0,1,111,370.0,900.0,0.0,68,46,0.0,264.8654554020448,630.9242010476627,1470.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,102342,2,2,1,0,1,,280.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,94.6241167680363,370.0,54684.83593556002,1,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026881309504745175,21873.93437422401,6,3,6,6_1,6_3,6_1_0 +2338,2,82.0,0.0,2,111,409.0,0.0,0.0,0,78,0.0,0.0,697.427022239173,409.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102343,2,1,0,1,1,,203.0,387.0,11,0.0,7.0,3.0,1.0,1.0,1,1,334.317644127366,409.0,16910.640681927467,0,5,2,3,55.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02418595532202996,16910.640681927467,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +2339,2,44.0,0.0,8,111,1900.0,0.0,0.0,48,46,0.0,0.0,3239.8810324069163,1960.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,102344,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1573.45835976964,1900.0,61785.68121576291,1,1,1,2,130.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03172256033166403,29421.7529598871,8,4,8,8_1,8_3,8_0_0 +2340,0,24.0,0.0,2,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,404.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,,2,102345,1,2,0,1,1,871.0,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,899.536426329372,0.0,36581.904572495114,1,1,5,0,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011043711494008871,24387.93638166341,7,4,7,7_0,7_4,7_0_1 +2341,2,56.0,0.0,1,111,944.0,800.0,0.0,77,75,0.0,1489.8681866365018,1609.7093129432258,2989.0,166.2707070475825,1518.8032383518312,31,0,0,0,0,0,0,0,0,0,,1,,1,102346,2,2,1,0,1,,562.0,,41,0.0,0.0,8.0,3.0,2.0,3,3,308.048570854914,944.0,31084.26197114368,6,5,0,1,200.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09615798511718779,15542.13098557184,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +2342,0,43.0,0.0,1,111,900.0,0.0,0.0,0,22,0.0,0.0,1534.680489034855,940.0,55.423569015860835,0.0,30,0,0,0,0,0,0,0,0,2,30.0,1,,1,102347,1,3,3,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1804.49255458347,900.0,12196.00326337756,0,1,5,0,70.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07707443001615567,12196.00326337756,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +2343,2,61.0,0.0,5,111,1080.0,,,85,75,0.0,0.0,,1212.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,,3,102348,2,1,0,0,2,,540.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,103.25446810188541,1080.0,44330.3819741893,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027340165954483964,22165.19098709465,6,3,6,6_1,6_2,6_0_0 +2344,0,41.0,0.0,9,111,256.0,810.0,0.0,0,55,0.0,0.0,436.53133910324766,1066.0,0.0,1537.788278831229,42,2,2,2,2,2,2,2,1,2,15.0,2,2008.0,6,102349,1,1,0,1,1,,250.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,486.179920269835,256.0,16487.3168752349,0,1,5,0,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.06465575982233994,10991.544583489935,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +2345,1,25.0,80.0,9,111,280.0,612.0,0.0,85,67,0.0,0.0,477.4561521441771,892.0,0.0,1161.8844773391509,60,1,2,2,2,1,2,2,2,2,30.0,2,2008.0,6,102350,1,2,0,0,1,,0.0,609.0,42,1.0,0.0,3.0,3.0,1.8,2,2,460.105901039637,280.0,30709.169473601847,6,1,2,3,87.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.029046698927067342,17060.649707556582,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +2346,2,57.0,0.0,6,111,0.0,0.0,0.0,42,11,0.0,0.0,0.0,769.0,103.91919190473907,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,102351,2,1,2,0,1,,163.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,1805.89694517628,0.0,81671.43433437578,1,1,0,1,200.0,7,6,4,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009415776841283236,40835.71716718789,9,5,9,9_1,9_2,9_0_0 +2347,1,69.0,119.0,2,111,720.0,600.0,0.0,0,86,0.0,0.0,1227.744391227884,1320.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,102352,2,2,0,1,1,650.0,0.0,349.0,21,2.0,2.0,4.0,3.0,2.0,3,3,243.807484193997,720.0,18018.71049592503,0,6,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07325718454150873,9009.355247962514,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +2349,2,63.0,0.0,7,111,460.0,900.0,0.0,68,72,0.0,0.0,784.3922499511482,1360.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,5,102354,2,1,2,0,1,,150.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1571.39853664978,460.0,27716.983170550775,1,5,0,1,156.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04906738917549283,18477.988780367185,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +2350,2,25.0,0.0,1,111,450.0,0.0,0.0,34,37,0.0,0.0,767.3402445174275,450.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,102355,2,1,0,1,1,412.0,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1391.02445918878,450.0,51935.186040009794,1,1,2,3,64.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00866464596185964,34623.45736000653,9,5,9,9_0,9_3,9_1_0 +2351,2,33.0,0.0,5,111,0.0,0.0,0.0,46,63,0.0,0.0,0.0,6591.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,3,102356,1,1,3,0,1,,102.0,850.0,43,2.0,0.0,8.0,2.0,1.5,2,2,1595.47347591163,0.0,27478.942943655544,1,1,2,3,120.0,6,4,4,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2398563879809561,18319.295295770364,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2352,2,29.0,0.0,1,112,399.0,1276.0,0.0,34,34,0.0,0.0,680.3750168054524,1675.0,0.0,2422.491165171171,20,0,0,0,0,0,0,0,0,2,45.0,1,,1,102357,2,1,1,0,1,,310.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,602.297163019343,399.0,72908.40026763489,1,1,1,2,120.0,10,2,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022974033086055203,34718.285841730896,9,5,9,9_1,9_1,9_1_0 +2353,0,39.0,0.0,2,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,730.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,102358,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.3,3,2,1874.28558606059,0.0,32145.21905076965,6,1,5,0,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02270944238541506,13976.182195986805,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +2354,1,52.0,350.0,6,211,680.0,,,0,52,0.0,0.0,,944.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,102359,2,3,0,0,2,,240.0,620.0,32,1.0,2.0,4.0,2.0,1.5,2,1,117.26544593145779,680.0,8570.024973567175,0,4,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11015137096001609,5713.349982378117,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2355,0,47.0,0.0,5,300,720.0,,,43,52,0.0,47.67578197236806,,882.0,174.58424239996165,,43,0,0,0,0,0,0,0,0,1,5.0,1,,3,102360,1,2,0,0,2,,600.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,85.63706878939415,720.0,59812.969467323805,1,1,5,0,95.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014745965763860664,23004.988256663004,6,3,6,6_1,6_1,6_0_0 +2356,2,47.0,0.0,1,111,1080.0,770.0,0.0,0,46,0.0,0.0,1841.6165868418261,1850.0,0.0,1461.8481169136376,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,102361,2,1,1,0,1,,549.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,1439.86668255117,1080.0,34906.47948766756,0,1,0,1,95.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05299875630980214,23270.986325111706,6,3,6,6_1,6_3,6_1_0 +2357,2,56.0,0.0,7,111,300.0,,,0,55,0.0,0.0,,346.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,102362,2,2,0,0,2,,280.0,400.0,12,1.0,0.0,4.0,1.0,1.0,1,1,52.46449738300301,300.0,22528.81937183513,0,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015358106178993075,22528.81937183513,6,3,6,6_0,6_2,6_0_0 +2358,1,42.0,173.0,7,111,450.0,,,12,56,0.0,0.0,,588.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,0,,2,,5,102363,1,1,0,0,2,,600.0,460.0,43,2.0,0.0,4.0,4.0,2.5,4,3,121.70886905721281,450.0,18538.0,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03171863199913691,7415.2,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2359,2,44.0,0.0,9,111,780.0,,,21,21,0.0,0.0,,909.0,178.7410100761512,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,102364,2,1,0,0,1,,188.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,150.15980151648048,780.0,43845.912466377165,1,1,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02073169307850665,20879.00593637008,5,3,5,5_1,5_2,5_0_0 +2360,1,47.0,98.0,1,300,1100.0,0.0,0.0,0,54,0.0,105.94618216081791,1875.7205977092674,1280.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,102365,2,1,1,0,1,,360.0,,32,1.0,0.0,6.0,3.0,2.0,3,2,1057.04896489876,1100.0,57071.22839312366,0,1,0,1,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.022428113710519386,28535.61419656183,8,4,8,8_1,8_0,8_1_0 +2361,0,85.0,0.0,5,111,270.0,,,0,71,0.0,0.0,,318.0,66.50828281903301,,71,0,0,0,0,0,0,0,0,0,,1,,3,102366,2,2,0,0,2,,320.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,129.09128919148944,270.0,10710.892843866155,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029689401680655425,10710.892843866155,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2363,2,80.0,0.0,1,400,500.0,0.0,0.0,0,75,2109.365702073203,0.0,852.6002716860306,2590.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102368,2,1,3,0,1,,400.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1791.44410001827,500.0,9054.068102435005,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.28605925763949624,9054.068102435005,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2364,2,81.0,0.0,5,112,0.0,,,0,75,0.0,0.0,,309.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,1,,3,102369,2,1,0,0,2,,149.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,93.5233200161658,0.0,42846.08249870797,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0072118612012969435,42846.08249870797,9,5,9,9_1,9_1,9_0_0 +2365,2,51.0,0.0,7,111,340.0,3000.0,0.0,85,63,0.0,0.0,579.7681847465008,3340.0,0.0,5695.512143819367,50,2,2,2,2,2,1,2,2,0,,1,,5,102370,1,2,5,0,1,,880.0,575.0,42,3.0,0.0,3.0,5.0,3.0,5,5,112.189007490986,340.0,26265.8157340792,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.12716147991803806,8755.271911359732,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +2366,2,73.0,0.0,5,112,1326.0,0.0,0.0,77,75,0.0,0.0,2261.095920511353,1326.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,102371,2,1,2,0,1,,265.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1945.16176876986,1326.0,28940.0,5,5,0,1,97.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04581893572909468,19293.333333333332,5,3,5,5_1,5_1,5_0_0 +2367,2,48.0,0.0,7,111,700.0,,,85,46,0.0,0.0,,900.0,277.1178450793042,,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,102372,2,1,0,0,2,,700.0,900.0,42,1.0,0.0,6.0,3.0,1.8,2,2,54.95686590118328,700.0,33015.59041597191,6,1,2,3,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027259848715733045,18341.994675539947,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2368,2,32.0,0.0,8,112,0.0,,,47,43,0.0,0.0,,1738.0,0.0,,33,0,0,0,0,0,0,0,0,2,7.0,1,2003.0,6,102373,2,1,0,0,1,,213.0,650.0,43,2.0,0.0,5.0,2.0,1.5,2,2,126.27186213988915,0.0,53644.81601589544,1,1,2,3,65.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03239828429060163,35763.210677263625,9,5,9,9_1,9_1,9_0_0 +2369,2,75.0,0.0,9,111,652.5,0.0,0.0,0,53,0.0,0.0,1112.6433545502698,653.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,102374,2,1,0,0,1,,353.0,540.0,11,0.0,1.0,2.0,1.0,1.0,1,1,678.560734233142,652.5,35108.22667844247,0,5,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01859962925444372,35108.22667844247,9,5,9,9_0,9_3,9_0_0 +2370,2,57.0,0.0,7,111,300.0,,,0,55,0.0,0.0,,386.0,119.1606733841008,,60,0,0,0,0,0,0,0,0,0,,1,,5,102375,2,1,0,0,2,,70.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,102.44038298652185,300.0,39630.59491669551,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00973994967300848,39630.59491669551,9,5,9,9_1,9_2,9_0_0 +2371,2,70.0,0.0,2,111,563.0,1030.0,0.0,0,78,0.0,0.0,960.0279059184704,1593.0,0.0,1955.4591693779826,71,0,0,0,0,0,0,0,0,0,,2,,2,102376,2,1,0,0,1,,536.0,600.0,31,1.0,1.0,3.0,2.0,1.5,2,2,792.062281044715,563.0,23007.054213680407,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06923963342741957,15338.036142453604,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +2372,2,43.0,0.0,7,211,1200.0,,,81,65,0.0,0.0,,1350.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,102377,1,2,0,0,2,,800.0,,43,3.0,0.0,5.0,5.0,2.8,4,4,69.60271572572825,1200.0,25988.638530668526,4,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05194577616703159,9281.656618095903,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2373,2,68.0,0.0,7,111,1500.0,1000.0,0.0,75,78,0.0,185.40581878143135,2557.8008150580918,2653.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,5,102378,2,1,1,0,1,,400.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,817.244401881381,1500.0,40482.1877581912,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0655349956837051,26988.125172127464,7,4,7,7_1,7_4,7_0_0 +2374,2,61.0,0.0,2,111,620.0,84.0,0.0,0,78,0.0,0.0,1057.224336890678,704.0,0.0,159.4743400269423,70,0,0,0,0,0,0,0,0,0,,2,,2,102379,2,1,0,1,1,,0.0,397.0,11,0.0,3.0,2.0,1.0,1.0,1,1,278.643244950271,620.0,21468.081130295475,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03279287029554422,21468.081130295475,6,3,6,6_0,6_4,6_0_1 +2375,2,54.0,0.0,1,111,310.0,1000.0,0.0,0,56,0.0,0.0,528.612168445339,1310.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,1,102380,2,1,4,0,1,,290.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1082.86169948025,310.0,13003.76727346392,0,1,1,2,75.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10074003728698265,13003.76727346392,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +2376,1,61.0,270.0,2,111,100.0,110.0,0.0,0,43,0.0,0.0,170.52005433720612,210.0,0.0,208.8354452733768,33,0,0,0,0,0,0,0,0,0,,2,,2,102381,1,1,0,1,1,490.0,350.0,300.0,22,2.0,3.0,2.0,2.0,1.5,2,2,440.716875420299,100.0,10332.986059006913,0,4,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020323263653002816,6888.657372671275,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2377,2,62.0,0.0,2,300,369.0,0.0,0.0,35,35,527.3414255183008,99.3245457757668,629.2190005042905,989.0,62.351515142843446,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,102382,2,3,2,0,1,,176.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,963.180160670842,369.0,2990.1687263897074,4,4,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.33075056643847195,1993.4458175931384,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +2378,2,26.0,0.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1107.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,2,,3,102383,2,1,0,0,1,,205.0,520.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1749.43101495344,0.0,19229.553041664356,0,1,2,3,47.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05756764068314439,19229.553041664356,5,3,5,5_0,5_3,5_0_0 +2379,2,69.0,0.0,5,112,780.0,0.0,0.0,71,78,527.3414255183008,0.0,1330.0564238302077,1460.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,102384,2,2,1,0,1,,110.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1046.81848346999,780.0,21383.116896388186,5,5,0,1,180.0,6,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06827816576387925,14255.411264258792,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2380,1,25.0,123.0,2,211,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1010.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,75.0,2,,2,102385,1,3,0,0,2,,0.0,340.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3708.1508107688,0.0,12121.919184812748,0,2,2,3,30.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08332013970736614,12121.919184812748,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +2381,2,86.0,0.0,2,221,330.0,1440.0,0.0,0,78,0.0,0.0,562.7161793127802,1770.0,0.0,2733.845829033296,71,0,0,0,0,0,0,0,0,0,,1,,2,102386,2,1,2,0,1,,617.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,2265.95100242378,330.0,21269.717127420707,0,5,0,1,95.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08321690360978679,21269.717127420707,6,3,6,6_1,6_1,6_0_1 +2382,2,61.0,0.0,6,111,1100.0,,,0,52,0.0,0.0,,1352.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,102387,1,2,0,0,2,,600.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,95.75533641533913,1100.0,33929.880687037235,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039846883414374215,33929.880687037235,9,5,9,9_1,9_3,9_0_0 +2383,2,48.0,0.0,7,111,460.0,1000.0,0.0,55,62,0.0,0.0,784.3922499511482,1460.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,5,102388,2,1,1,0,1,,500.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,1034.26609739409,460.0,52479.01888094782,1,1,0,1,96.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027820642061013146,26239.50944047391,7,4,7,7_1,7_3,7_0_0 +2384,2,67.0,0.0,7,111,600.0,,,0,77,0.0,0.0,,692.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,8,,5,102389,2,1,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,91.5583481406191,600.0,31332.57702537081,0,5,1,2,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022085639474840178,31332.57702537081,8,4,8,8_0,8_2,8_0_0 +2385,1,45.0,103.0,6,111,1470.0,0.0,0.0,55,46,0.0,1059.4618216081792,2506.64479875693,2270.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,102390,2,1,1,0,1,,279.0,,43,2.0,0.0,7.0,7.0,3.1999999999999993,4,2,1210.69777462515,1470.0,51413.11602676883,1,1,1,2,150.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.044152157570416434,16066.598758365264,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +2386,2,53.0,0.0,1,112,600.0,100.0,0.0,52,21,1582.0242765549024,0.0,1023.1203260232367,2200.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,1,,1,102391,1,1,1,0,2,,200.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,1033.07971531751,600.0,40401.0,1,1,1,2,70.0,10,0,1,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05445409767084973,26934.0,7,4,7,7_1,7_0,7_1_0 +2387,0,38.0,0.0,2,400,800.0,,,85,68,0.0,0.0,,800.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,102392,2,2,0,0,2,,1200.0,,42,2.0,3.0,2.0,9.0,4.199999999999999,5,4,8.280596007637794,800.0,12476.731707317074,6,4,5,0,45.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06411935583505686,2970.650406504066,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +2388,2,63.0,0.0,6,112,850.0,0.0,0.0,72,64,0.0,0.0,1449.420461866252,940.0,124.70303028568689,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,4,102393,2,2,2,0,1,,300.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,993.585206931948,850.0,50374.20754544683,5,5,1,2,107.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018660343175660808,33582.80503029789,9,5,9,9_1,9_1,9_0_0 +2389,2,32.0,0.0,1,111,350.0,980.0,0.0,0,63,0.0,0.0,596.8201901802214,1330.0,0.0,1860.5339669809932,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,102394,2,1,0,0,1,,200.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,806.21189075147,350.0,24270.00501330993,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.054800153492783124,24270.00501330993,7,4,7,7_0,7_4,7_1_0 +2390,2,62.0,0.0,2,111,589.0,0.0,0.0,77,75,0.0,0.0,1004.363120046144,589.0,0.0,0.0,33,1,2,2,2,1,2,2,2,0,,2,,2,102395,2,1,0,1,1,,0.0,,41,0.0,0.0,4.0,4.0,2.5,4,4,426.769243738017,589.0,26980.21350952308,5,5,0,1,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021830813154688468,10792.085403809233,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +2391,2,27.0,0.0,7,111,167.0,603.0,0.0,0,42,0.0,0.0,284.76849074313424,770.0,0.0,1144.7979409076927,10,2,2,2,2,1,2,2,2,0,,2,,5,102396,2,2,0,0,1,,0.0,391.0,12,1.0,0.0,1.0,1.0,1.0,1,1,928.002301011805,167.0,22633.517827939337,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.034020341241408535,22633.517827939337,6,3,6,6_0,6_4,6_0_0 +2393,2,52.0,0.0,7,112,1650.0,0.0,0.0,54,21,0.0,595.9472746546007,2813.5808965639008,2100.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,1,,5,102398,2,2,3,0,1,,650.0,,43,4.0,0.0,6.0,6.0,3.5,6,5,557.850700050894,1650.0,120172.1250651299,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.01747493438151201,34334.8928757514,9,5,9,9_1,9_0,9_0_0 +2394,2,63.0,0.0,2,111,480.0,250.0,0.0,74,43,0.0,0.0,818.4962608185893,730.0,0.0,474.62601198494724,33,2,2,2,1,2,2,2,2,3,30.0,2,,2,102399,2,2,0,1,1,78.0,480.0,297.0,42,1.0,4.0,4.0,2.0,1.5,2,2,1062.51513389641,480.0,59143.28051986034,5,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01234290681178677,39428.85367990689,9,5,9,9_0,9_4,9_0_1 +2395,1,57.0,330.0,1,111,380.0,0.0,0.0,0,85,0.0,158.91927324122688,647.9762064813832,820.0,443.3885521268867,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102400,1,2,5,0,1,,400.0,373.0,31,1.0,5.0,5.0,2.0,1.5,2,2,366.680810636522,380.0,10746.421901392549,0,6,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07630446743336425,7164.281267595033,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +2396,1,42.0,400.0,7,111,0.0,,,0,81,0.0,0.0,,276.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,102401,2,1,0,0,2,,0.0,700.0,32,1.0,0.0,3.0,3.0,1.6,1,1,94.17831325591682,0.0,9431.11898089172,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02926482006633575,5894.449363057325,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2397,2,38.0,0.0,1,112,960.0,0.0,0.0,0,62,0.0,0.0,1636.9925216371787,1210.0,346.39730634913025,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,102402,2,2,2,0,2,,330.0,,32,1.0,0.0,4.0,3.0,1.8,3,2,299.405931239052,960.0,35152.44252430144,0,1,0,1,80.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03442150567954155,19529.134735723022,5,3,5,5_1,5_1,5_1_0 +2398,1,47.0,128.0,2,111,250.0,1500.0,0.0,67,62,0.0,0.0,426.3001358430153,1942.0,266.03313127613205,2847.7560719096837,60,2,2,2,2,1,2,1,2,2,10.0,2,,2,102403,1,3,0,0,1,,0.0,268.0,43,2.0,1.0,3.0,2.0,1.5,2,2,342.687473821468,250.0,25111.63851418109,4,1,2,3,56.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.07733465894323503,16741.092342787393,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +2399,2,71.0,0.0,2,111,0.0,2345.0,0.0,0,77,0.0,0.0,0.0,3980.0,0.0,4451.991992418805,41,0,0,0,0,0,0,0,0,0,,1,,2,102404,1,3,4,0,2,,0.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,2496.60851137028,0.0,9228.194429585099,0,5,0,1,168.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4312869684713547,9228.194429585099,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +2400,2,63.0,0.0,5,111,556.0,834.0,0.0,0,75,0.0,238.3789098618403,948.091502114866,1570.0,0.0,1583.352375981784,33,0,0,0,0,0,0,0,0,0,,1,,3,102405,2,2,2,0,1,,550.0,,21,1.0,4.0,7.0,2.0,1.5,2,2,719.577588927936,556.0,48500.420586965294,0,5,0,1,129.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03237085330393907,32333.61372464353,8,4,8,8_1,8_3,8_0_0 +2401,2,63.0,0.0,6,111,2646.0,0.0,0.0,55,78,0.0,662.163638505112,4511.960637762474,3146.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,102406,1,1,1,0,1,,718.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,299.382771115237,2646.0,35365.477110089196,1,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08895680921274769,23576.984740059463,6,3,6,6_1,6_4,6_0_0 +2402,1,24.0,270.0,2,111,198.0,724.0,0.0,0,54,0.0,0.0,337.6297075876681,922.0,0.0,1374.5169307084072,31,0,0,0,0,0,0,0,0,2,7.0,2,,2,102407,1,1,0,0,1,,0.0,440.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1488.9919278928,198.0,12050.02310631036,0,1,2,3,67.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07651437610249616,12050.02310631036,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2403,2,35.0,0.0,1,111,500.0,0.0,0.0,37,37,0.0,0.0,852.6002716860306,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,1,102408,2,1,0,1,1,624.0,0.0,750.0,43,2.0,0.0,2.0,2.0,1.5,2,2,990.62662573678,500.0,117703.93294468876,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00424794641513771,78469.2886297925,10,5,10,10_0,10_4,10_1_0 +2404,2,58.0,0.0,9,120,716.0,0.0,0.0,0,63,0.0,0.0,1220.9235890543957,776.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102409,2,1,1,0,1,,201.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,608.714377665983,716.0,30361.77377494363,0,4,0,1,101.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0255584540531819,30361.77377494363,8,4,8,8_1,8_0,8_0_0 +2405,2,52.0,0.0,7,111,831.0,,,21,22,0.0,0.0,,894.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,0,,1,,5,102410,2,1,0,0,2,,950.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,132.01293074464374,831.0,20183.464783863074,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044293683446994886,13455.64318924205,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +2406,2,37.0,0.0,9,111,1700.0,0.0,0.0,43,37,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,50.0,1,2004.0,6,102411,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,497.91549077413,1700.0,89157.83745748583,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01906730858978753,42456.11307499325,9,5,9,9_1,9_4,9_0_0 +2407,2,37.0,0.0,1,221,240.0,1042.0,0.0,0,63,0.0,0.0,409.2481304092947,1342.0,83.13535352379125,1978.24121795326,43,2,2,2,2,1,2,2,2,2,20.0,2,,1,102412,2,2,0,0,1,,116.0,241.0,32,1.0,1.0,3.0,2.0,1.3,1,1,2277.89207626533,240.0,18807.409868973435,0,1,2,3,51.0,1,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.07135485478060943,14467.238360748795,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +2408,1,36.0,120.0,2,111,600.0,360.0,0.0,85,42,0.0,0.0,1023.1203260232367,960.0,0.0,683.461457258324,12,0,0,0,0,0,0,0,0,2,60.0,2,,2,102413,1,1,0,1,2,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,388.611083039905,600.0,31121.631881520836,6,1,1,2,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030846711498121068,14819.824705486111,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +2409,2,80.0,0.0,6,111,3000.0,,,86,78,0.0,0.0,,3225.0,311.75757571421724,,71,0,0,0,0,0,0,0,0,0,,2,,4,102414,2,2,0,0,2,,650.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,41.16655125442322,3000.0,40566.0,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07950007395355717,27044.0,7,4,7,7_0,7_2,7_0_0 +2410,2,58.0,0.0,1,221,628.0,0.0,0.0,75,35,1308.8614181364226,0.0,1070.8659412376544,1959.0,124.70303028568689,0.0,31,2,2,2,1,2,2,2,2,0,,1,,1,102415,1,1,2,0,2,,290.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,787.27169231313,628.0,21377.45653310864,7,1,0,1,100.0,1,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.0916385911937639,14251.637688739094,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +2411,0,71.0,0.0,2,120,200.0,0.0,0.0,0,75,2636.7071275915036,0.0,341.04010867441224,5492.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102416,2,1,2,0,1,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,858.440298367901,200.0,12014.781781348891,0,5,0,1,125.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.45710359954481145,12014.781781348891,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +2412,1,69.0,65.0,7,111,420.0,150.0,0.0,56,78,0.0,0.0,716.1842282162656,570.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,2,2001.0,5,102417,2,2,0,1,1,519.0,0.0,320.0,42,1.0,5.0,2.0,2.0,1.5,2,2,392.672713754811,420.0,20492.85300859255,4,5,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027814575147784543,13661.902005728365,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +2413,2,74.0,0.0,2,111,540.0,,,77,86,0.0,0.0,,632.0,127.47420873647992,,33,0,0,0,0,0,0,0,0,0,,1,,2,102418,2,2,0,0,2,,180.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,58.31136469159571,540.0,34460.53101858244,6,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018339821857626087,22973.687345721628,6,3,6,6_1,6_2,6_0_1 +2414,2,64.0,0.0,1,120,0.0,0.0,0.0,74,74,0.0,238.3789098618403,0.0,2305.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,102419,2,1,2,0,1,,85.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1777.98235231587,0.0,55934.110662861814,5,5,0,1,201.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041209200837985877,37289.407108574545,9,5,9,9_1,9_0,9_1_0 +2415,2,72.0,0.0,9,111,360.0,1470.0,0.0,77,75,0.0,0.0,613.872195613942,1830.0,0.0,2790.8009504714896,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102420,2,2,1,0,1,,350.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,351.195334140893,360.0,30159.448679546473,5,5,0,1,106.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0606775017489318,20106.299119697647,5,3,5,5_1,5_3,5_0_0 +2416,2,40.0,0.0,8,111,1083.0,0.0,0.0,52,42,0.0,0.0,1846.7321884719422,1203.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,102421,2,2,1,0,1,,236.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,814.945800264722,1083.0,47313.34556626555,1,1,1,2,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025426229863942235,22530.164555364547,6,3,6,6_1,6_2,6_0_0 +2417,2,86.0,0.0,2,111,290.0,135.0,0.0,0,72,0.0,0.0,494.50815757789775,430.0,0.0,256.2980464718715,20,0,0,0,0,0,0,0,0,0,,2,,2,102422,2,2,0,1,2,1500.0,0.0,1568.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1221.9450234317,290.0,97417.61526878658,0,5,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004413986103166042,97417.61526878658,10,5,10,10_0,10_4,10_0_1 +2418,2,52.0,0.0,9,111,1100.0,0.0,0.0,43,54,0.0,0.0,1875.7205977092674,1180.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,102423,2,1,1,0,1,,300.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,825.579656783196,1100.0,62091.40819896826,1,1,1,2,200.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01900423962392284,24836.563279587303,7,4,7,7_1,7_3,7_0_0 +2419,2,39.0,0.0,2,111,280.0,400.0,0.0,68,63,0.0,0.0,477.4561521441771,680.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,102424,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,846.775936648773,280.0,56049.96739831404,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012132032034338956,31138.870776841133,8,4,8,8_0,8_4,8_0_1 +2420,1,84.0,295.0,2,111,0.0,0.0,100.0,0,86,0.0,0.0,63.03182904147438,100.0,0.0,119.67321475646808,71,0,0,0,0,0,0,0,0,0,,2,,2,102425,2,1,0,1,1,1300.0,0.0,385.0,11,0.0,6.0,5.0,1.0,1.0,1,1,254.964966388283,0.0,9991.289461172153,0,6,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010008718132791266,9991.289461172153,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +2421,2,53.0,0.0,2,111,1336.0,0.0,0.0,72,64,0.0,0.0,2278.147925945074,1336.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,102426,2,1,2,0,1,,435.0,,42,2.0,1.0,4.0,4.0,2.5,4,4,1063.65025460595,1336.0,44918.86205906978,6,1,1,2,97.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0297425165900934,17967.54482362791,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +2422,2,74.0,0.0,6,112,498.0,0.0,0.0,0,75,0.0,662.163638505112,849.1898705992865,1122.0,171.8130639491686,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,102427,2,2,2,0,2,,350.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1818.50281569162,498.0,17501.00756780958,0,5,0,1,110.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06411059452735435,17501.00756780958,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2424,1,43.0,360.0,1,111,400.0,1100.0,0.0,56,85,0.0,0.0,682.0802173488245,1500.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,1,102429,2,2,2,0,1,,300.0,425.0,42,1.0,2.0,5.0,2.0,1.5,2,2,132.059016015623,400.0,14026.97076958177,1,7,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10693684507084235,9351.313846387848,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +2425,1,30.0,313.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1246.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102430,2,2,0,1,1,616.0,0.0,285.0,32,1.0,1.0,4.0,2.0,1.3,1,1,298.947127955353,0.0,8695.42271667539,0,4,2,3,67.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1432937811764482,6688.786705134915,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2426,2,28.0,0.0,9,400,1200.0,0.0,0.0,42,62,0.0,0.0,2046.2406520464733,1220.0,27.711784507930417,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,2008.0,6,102431,1,3,0,0,1,,0.0,432.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1407.51695270445,1200.0,33778.150444906874,4,1,2,3,85.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03611802256579604,18765.639136059373,5,3,5,5_0,5_0,5_0_0 +2427,1,30.0,413.0,7,111,0.0,,,0,52,0.0,0.0,,540.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,102432,1,3,0,0,1,,256.0,415.0,32,1.0,0.0,3.0,3.0,1.6,1,1,118.01460776393338,0.0,14696.458166891112,0,4,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03674354690550802,9185.286354306945,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2428,2,59.0,0.0,1,211,500.0,0.0,0.0,0,65,0.0,198.6490915515336,852.6002716860306,685.0,48.49562288887823,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,102433,2,1,0,0,1,,110.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1369.07247144665,500.0,40876.231068301866,0,1,1,2,80.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.016757905073376354,40876.231068301866,9,5,9,9_0,9_1,9_1_0 +2429,0,45.0,0.0,2,111,180.0,,,0,47,0.0,0.0,,246.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,102434,1,3,0,0,2,,150.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,131.4265447237113,180.0,40002.37472732018,0,1,5,0,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006149634907349409,40002.37472732018,9,5,9,9_1,9_3,9_0_1 +2430,0,80.0,0.0,1,112,870.0,0.0,0.0,0,77,0.0,0.0,1483.5244727336933,930.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102435,2,1,2,0,1,,125.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,764.642086751972,870.0,13475.154208818762,0,5,0,1,70.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.069015907765372,13475.154208818762,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2431,1,23.0,264.0,2,111,300.0,0.0,0.0,63,63,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,2,1,2,1,1,2,2,2,2,20.0,2,,2,102436,2,3,0,1,1,436.0,221.0,253.0,43,2.0,0.0,4.0,2.0,1.5,2,2,369.968272760587,300.0,12280.192767859451,4,1,2,3,56.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.024429583938224506,8186.795178572967,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2432,0,71.0,0.0,9,211,300.0,,,75,74,0.0,0.0,,564.0,365.79555550468154,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,102437,2,2,0,0,2,,160.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,119.71139699272685,300.0,79633.61411263577,5,5,0,1,140.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007082436308896697,53089.07607509051,10,5,10,10_1,10_2,10_0_0 +2433,2,58.0,0.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,669.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,102438,2,1,0,1,1,303.0,0.0,595.0,22,2.0,0.0,3.0,3.0,2.0,3,3,962.632224789863,0.0,31554.12234904559,0,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021201667173615275,15777.061174522794,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +2434,2,93.0,0.0,2,111,1400.0,,,86,86,0.0,0.0,,1750.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,0,,1,,2,102439,2,1,0,0,2,,650.0,,41,0.0,10.0,4.0,2.0,1.5,2,2,86.61396179678232,1400.0,17478.38174273859,6,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10012368569115611,11652.25449515906,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +2435,1,37.0,40.0,1,112,666.0,1496.0,0.0,55,47,0.0,0.0,1135.6635618857927,2162.0,0.0,2840.1620557179244,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,102440,2,1,1,0,1,,430.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,776.040311770493,666.0,49447.81771597278,4,1,1,2,120.0,8,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04372285977145609,20603.257381655327,5,3,5,5_1,5_1,5_1_0 +2436,2,63.0,0.0,6,112,700.0,0.0,0.0,0,71,0.0,0.0,1193.6403803604428,2321.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,102441,1,3,0,0,1,,191.0,421.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2511.68851805256,700.0,19133.0,0,5,3,4,36.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.12130873360163069,19133.0,5,3,5,5_0,5_1,5_0_0 +2437,1,38.0,467.0,7,120,350.0,,,0,85,0.0,0.0,,603.0,350.5540740253198,,71,0,0,0,0,0,0,0,0,0,,2,,5,102442,2,2,0,0,2,,450.0,469.0,31,0.0,0.0,4.0,4.0,2.1,2,1,105.20394715602339,350.0,20518.220535850654,0,6,2,3,98.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029388513440841642,9770.58120754793,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +2438,0,81.0,0.0,1,400,1400.0,0.0,0.0,0,78,0.0,463.51454695357836,2387.2807607208856,1854.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102443,2,1,1,0,1,,82.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1058.43148846099,1400.0,17277.347059005144,0,5,0,1,70.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10730814132912117,17277.347059005144,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2440,2,69.0,0.0,5,111,480.0,,,0,77,0.0,0.0,,542.0,85.9065319745843,,60,0,0,0,0,0,0,0,0,0,,2,,3,102445,1,3,0,0,2,,160.0,405.0,11,0.0,2.0,4.0,1.0,1.0,1,1,88.8132685781497,480.0,16038.769550753452,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03379311600462135,16038.769550753452,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +2441,2,65.0,0.0,1,111,1410.0,0.0,0.0,74,74,0.0,0.0,2404.3327661546064,1410.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,2,,1,102446,1,3,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,228.678693693876,1410.0,24044.914136301337,5,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.05864025930836161,16029.942757534225,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +2442,2,40.0,0.0,1,112,1021.0,0.0,0.0,34,43,2320.3022722805235,0.0,1741.0097547828746,3287.0,91.44888887617039,0.0,20,2,2,2,1,1,2,2,2,2,30.0,1,,1,102447,1,2,1,0,2,,342.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1707.43056701613,1021.0,76667.70130325758,1,1,1,2,130.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.042873334456687784,36508.42919202742,9,5,9,9_1,9_0,9_1_0 +2443,2,76.0,0.0,1,111,660.0,0.0,0.0,0,78,0.0,79.45963662061344,1125.4323586255605,780.0,83.13535352379125,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,102448,2,2,1,0,1,,146.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1713.08523085151,660.0,15277.073657432513,0,5,0,1,80.0,8,6,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.05105689855861361,15277.073657432513,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +2444,1,57.0,169.0,1,112,420.0,0.0,0.0,0,52,0.0,50.32443652638851,716.1842282162656,458.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,5,,1,102449,1,3,4,0,2,,0.0,542.0,22,2.0,3.0,4.0,2.0,1.5,2,2,2079.2403708775,420.0,22380.85722784683,0,1,2,3,86.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.020463916790021106,14920.571485231221,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +2445,2,41.0,0.0,2,111,480.0,480.0,0.0,46,43,0.0,0.0,818.4962608185893,960.0,0.0,911.2819430110987,10,2,2,2,2,1,2,2,2,3,90.0,2,,2,102450,1,2,0,1,1,671.0,0.0,350.0,43,2.0,0.0,3.0,3.0,1.8,2,2,609.068442886713,480.0,29171.498727765545,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03290883368588355,16206.388182091969,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +2446,1,59.0,426.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,620.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,102451,2,2,0,1,2,1020.0,802.0,296.0,42,3.0,0.0,4.0,11.0,5.199999999999999,8,6,223.724833043382,0.0,43300.949079685284,6,1,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014318392856910245,8327.105592247171,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +2447,2,34.0,0.0,9,211,0.0,,,52,68,0.0,0.0,,307.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,102452,2,2,0,0,2,,400.0,426.0,43,2.0,0.0,3.0,2.0,1.5,2,2,47.64493024418526,0.0,57910.158258098774,1,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00530131516187086,38606.77217206585,9,5,9,9_1,9_2,9_0_0 +2448,2,35.0,0.0,8,112,1800.0,0.0,0.0,34,46,0.0,0.0,3069.36097806971,1950.0,207.83838380947813,0.0,20,2,2,2,2,1,1,2,2,2,10.0,1,2003.0,6,102453,2,1,1,0,1,,350.0,735.0,43,2.0,0.0,6.0,4.0,2.1,2,2,1500.94076992367,1800.0,49949.95356428508,1,1,2,3,130.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.039039075331478934,23785.692173469084,6,3,6,6_1,6_0,6_0_0 +2449,2,62.0,0.0,5,111,480.0,1200.0,0.0,77,75,0.0,0.0,818.4962608185893,1680.0,0.0,2278.2048575277468,50,2,2,1,2,1,2,2,2,0,,1,,3,102454,2,2,2,0,1,,720.0,,41,2.0,1.0,6.0,6.0,3.0999999999999996,4,4,744.381221532386,480.0,58357.01956237669,6,5,0,1,100.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.028788310516857023,18824.845020121516,5,3,5,5_1,5_2,5_0_0 +2450,1,64.0,270.0,2,111,269.0,0.0,0.0,0,52,0.0,0.0,458.69894616708444,269.0,0.0,0.0,20,2,1,2,1,1,2,2,2,0,,2,,2,102455,2,2,0,1,1,536.0,0.0,266.0,12,1.0,0.0,3.0,1.0,1.0,1,1,286.532097935422,269.0,6067.263766318056,0,4,2,3,57.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.044336295628571915,6067.263766318056,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2451,2,74.0,0.0,6,211,900.0,,,86,86,0.0,0.0,,1200.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,4,102456,1,2,0,0,2,,0.0,,41,1.0,0.0,7.0,4.0,2.3,3,3,70.78223311681153,900.0,23169.31304225041,5,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05179264477163131,10073.614366195832,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2452,2,33.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1347.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102457,2,2,2,0,1,,751.0,,32,1.0,0.0,5.0,4.0,2.1,2,2,168.976841389638,0.0,48645.94535949995,0,1,0,1,100.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02768987199334893,23164.735885476166,6,3,6,6_1,6_2,6_0_1 +2453,2,70.0,0.0,7,211,690.0,,,52,77,0.0,0.0,,822.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,102458,2,2,0,0,2,,200.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,99.54811156278724,690.0,60735.60824567913,1,5,0,1,102.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013534070436488615,30367.804122839563,8,4,8,8_1,8_2,8_0_0 +2454,2,44.0,0.0,5,120,400.0,0.0,0.0,43,34,2214.833987176863,0.0,682.0802173488245,2560.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,3,102459,2,2,3,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1440.7081824171,400.0,67954.94000742344,1,1,0,1,92.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037672022074044124,32359.49524163021,8,4,8,8_1,8_0,8_0_0 +2455,2,63.0,0.0,5,111,1700.0,,,74,74,0.0,0.0,,1763.0,87.29212119998083,,20,0,0,0,0,0,0,0,0,0,,1,,3,102460,2,2,0,0,2,,385.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,169.94151094104396,1700.0,87025.70650000911,5,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020258381929939465,58017.13766667274,10,5,10,10_1,10_2,10_0_0 +2456,1,53.0,254.0,2,211,450.0,770.0,0.0,0,56,0.0,0.0,767.3402445174275,1220.0,0.0,1461.8481169136376,50,0,0,0,0,0,0,0,0,0,,2,,2,102461,2,1,0,0,1,,0.0,376.0,12,1.0,3.0,3.0,1.0,1.0,1,1,312.953975098315,450.0,15600.548822130098,0,4,2,3,70.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07820237697467243,15600.548822130098,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +2457,2,54.0,0.0,7,120,670.0,0.0,0.0,0,46,0.0,0.0,1142.484364059281,670.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,102462,2,2,0,0,1,,0.0,370.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2403.0612542157,670.0,24967.915573067523,0,1,2,3,36.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026834438703514277,24967.915573067523,7,4,7,7_0,7_1,7_0_0 +2458,2,52.0,0.0,1,112,800.0,0.0,0.0,37,38,2109.365702073203,0.0,1364.160434697649,2890.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,102463,2,1,1,0,1,,0.0,,43,2.0,4.0,6.0,3.0,2.0,3,3,1384.27910634212,800.0,56614.1945744072,1,1,1,2,120.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05104726865277074,28307.0972872036,8,4,8,8_1,8_0,8_1_0 +2459,1,39.0,150.0,2,111,140.0,600.0,0.0,0,68,0.0,0.0,238.72807607208856,740.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,0,,2,,2,102464,2,2,0,0,1,,0.0,420.0,12,1.0,2.0,3.0,1.0,1.0,1,1,392.976761740386,140.0,12040.759118445336,0,4,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06145791911627798,12040.759118445336,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2460,2,47.0,0.0,9,111,0.0,0.0,912.0,0,53,0.0,0.0,574.8502808582463,912.0,0.0,1091.419718578989,50,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,102465,2,1,0,0,1,,0.0,405.0,12,1.0,0.0,2.0,1.0,1.0,1,1,280.855979724519,0.0,39870.33789458586,0,1,2,3,51.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02287414775393323,39870.33789458586,9,5,9,9_0,9_2,9_0_0 +2461,1,50.0,100.0,2,111,360.0,,,0,46,0.0,0.0,,406.0,63.73710436823996,,41,0,0,0,0,0,0,0,0,0,,2,,2,102466,2,2,0,0,2,,270.0,350.0,12,1.0,0.0,3.0,1.0,1.0,1,1,124.60286116221201,360.0,30336.153165383163,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013383371246400813,30336.153165383163,8,4,8,8_0,8_2,8_0_1 +2462,2,42.0,0.0,7,111,1100.0,,,45,53,0.0,0.0,,1100.0,0.0,,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,102467,2,1,0,0,2,,960.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,91.0176176781117,1100.0,107627.43565385528,1,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010220442337191347,71751.62376923686,10,5,10,10_1,10_2,10_0_0 +2463,2,71.0,0.0,9,111,270.0,,,0,77,0.0,0.0,,270.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102468,1,3,0,0,2,,120.0,700.0,11,0.0,2.0,3.0,1.0,1.0,1,1,121.14776175879558,270.0,19144.92699776397,0,5,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014102952705514867,19144.92699776397,5,3,5,5_1,5_2,5_0_0 +2464,2,42.0,0.0,2,111,210.0,90.0,0.0,0,53,0.0,0.0,358.0921141081328,300.0,0.0,170.865364314581,71,2,1,2,2,1,2,2,2,3,40.0,2,,2,102469,1,3,0,1,1,300.0,0.0,245.0,12,1.0,0.0,2.0,1.0,1.0,1,1,256.207323352647,210.0,16415.457527787996,0,1,2,3,49.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01827545771978403,16415.457527787996,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +2465,0,52.0,0.0,2,211,480.0,,,0,52,0.0,0.0,,678.0,274.3466666285112,,42,0,0,0,0,0,0,0,0,0,,1,,2,102470,2,1,0,0,1,,200.0,,32,1.0,1.0,4.0,2.0,1.5,2,1,127.77705961920736,480.0,3856.5038254732644,0,4,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1758069045651204,2571.00255031551,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +2466,2,51.0,0.0,2,111,336.0,110.0,0.0,54,35,0.0,0.0,572.9473825730125,446.0,0.0,208.8354452733768,12,1,1,2,2,1,2,1,2,2,10.0,2,,2,102471,1,3,0,1,1,774.0,0.0,695.0,43,2.0,0.0,3.0,3.0,1.8,2,2,358.011395661247,336.0,40776.79535595047,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010937593209735062,22653.77519775026,6,3,6,6_0,6_4,6_0_1 +2468,2,70.0,0.0,1,111,240.0,,,0,78,0.0,0.0,,340.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,3,,1,102473,2,1,0,0,2,,634.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,34.98142783914502,240.0,20904.334418416667,0,5,0,1,32.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016264569500020094,20904.334418416667,5,3,5,5_0,5_2,5_1_0 +2469,2,32.0,0.0,2,111,180.0,510.0,0.0,52,65,0.0,0.0,306.936097806971,690.0,0.0,968.2370644492923,60,2,1,2,2,1,2,2,2,2,40.0,2,,2,102474,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,214.73666602135,180.0,58467.813272257044,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011801364911442734,32482.118484587245,8,4,8,8_0,8_4,8_0_1 +2470,2,67.0,0.0,2,111,509.0,0.0,0.0,74,77,824.7619895106224,397.2981831030672,867.9470765763791,1711.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,102475,2,2,3,0,1,,97.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1387.28238561608,509.0,37021.168931772394,5,5,0,1,109.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04621680107273927,24680.77928784826,7,4,7,7_1,7_2,7_0_1 +2471,2,42.0,0.0,1,112,1828.0,0.0,0.0,43,38,0.0,0.0,3117.106593284128,1828.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,102476,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,442.336191026145,1828.0,96795.3697165806,1,1,1,2,147.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018885200866037625,46093.03319837171,10,5,10,10_1,10_1,10_1_0 +2472,2,60.0,0.0,7,111,400.0,800.0,0.0,0,47,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,102477,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1124.00734068305,400.0,71619.57098109301,0,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01675519670896647,71619.57098109301,10,5,10,10_0,10_4,10_0_0 +2473,1,65.0,148.0,5,120,247.0,0.0,0.0,0,78,1371.087706347582,0.0,421.1845342128991,1582.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102478,2,2,2,0,1,,297.0,327.0,11,0.0,4.0,4.0,1.0,1.0,1,1,755.57584461924,247.0,10597.582091045939,0,5,2,3,77.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.14927933432444523,10597.582091045939,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +2474,2,30.0,0.0,9,112,0.0,0.0,0.0,42,46,0.0,0.0,0.0,1486.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,60.0,1,2004.0,6,102479,2,2,1,0,1,,324.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,603.307959243539,0.0,69397.18000349558,1,1,1,2,143.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021412973840221596,46264.786668997054,10,5,10,10_1,10_0,10_0_0 +2475,2,40.0,0.0,1,111,420.0,740.0,0.0,56,64,0.0,0.0,716.1842282162656,1160.0,0.0,1404.892995475444,30,0,0,0,0,0,0,0,0,2,30.0,1,,1,102480,2,1,4,0,1,,540.0,,43,2.0,2.0,5.0,4.0,2.1,2,2,1355.86358784556,420.0,26978.674517495838,4,1,1,2,50.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042996923338384646,12846.987865474208,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +2476,2,71.0,0.0,1,111,1401.0,0.0,0.0,0,78,0.0,1549.462914101962,2388.9859612642576,3087.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102481,2,3,2,0,2,,1500.0,,21,0.0,0.0,8.0,2.0,1.5,2,2,775.237787106726,1401.0,56249.74613875281,0,5,0,1,160.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05488024767943328,37499.83075916854,9,5,9,9_1,9_3,9_1_0 +2477,2,82.0,0.0,2,112,265.0,1317.0,0.0,77,72,0.0,529.7309108040896,451.8781439935962,1982.0,0.0,2500.329831136702,50,2,2,2,2,1,2,2,2,0,,1,,2,102482,1,2,2,0,1,,350.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,243.999449159262,265.0,16865.3327510142,5,5,0,1,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.11751917553365865,11243.5551673428,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +2478,2,58.0,0.0,2,111,300.0,0.0,0.0,75,37,0.0,0.0,511.56016301161833,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,102483,2,2,0,1,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,903.986194034176,300.0,31444.357847112282,5,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009540662317184218,20962.90523140819,5,3,5,5_0,5_4,5_0_1 +2479,2,43.0,0.0,5,111,316.0,35.0,0.0,85,46,0.0,0.0,538.8433717055714,351.0,0.0,66.44764167789262,31,0,0,0,0,0,0,0,0,2,10.0,2,,3,102484,1,2,0,1,2,833.0,160.0,582.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1622.04940548117,316.0,32085.267359714144,6,1,2,3,65.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010939600286476376,15278.69874272102,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +2480,2,81.0,0.0,1,212,780.0,0.0,0.0,0,78,1453.352968728437,0.0,1330.0564238302077,2194.0,49.88121211427475,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102485,2,2,4,0,2,,158.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1017.5599395749,780.0,11319.320755232322,0,5,0,1,60.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.19382788485659178,11319.320755232322,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2481,2,50.0,0.0,2,111,540.0,1000.0,0.0,0,62,0.0,0.0,920.8082934209131,1540.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,4,60.0,1,,2,102486,2,1,2,0,1,,240.0,,32,2.0,0.0,5.0,3.0,2.0,3,2,1475.89083731439,540.0,26845.430302533587,0,1,0,1,100.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05736544293181472,13422.715151266793,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +2482,1,43.0,440.0,8,221,624.0,,,0,52,0.0,0.0,,900.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,3,20.0,2,2001.0,6,102487,2,2,0,0,2,,736.0,496.0,32,2.0,0.0,4.0,5.0,2.8,4,3,94.35996530791526,624.0,39868.38368889223,0,1,2,3,80.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022574278581821462,14238.708460318654,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +2483,0,90.0,0.0,2,120,500.0,0.0,0.0,0,77,2109.365702073203,0.0,852.6002716860306,2620.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102488,2,2,3,0,1,,300.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1054.14344237266,500.0,26707.056142633766,0,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0981014150720104,26707.056142633766,7,4,7,7_1,7_0,7_0_1 +2484,2,76.0,0.0,7,111,2500.0,0.0,0.0,86,86,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,102489,2,1,3,0,1,,380.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,669.922128012359,2500.0,47033.78391313026,5,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053153282428167206,31355.85594208684,8,4,8,8_1,8_4,8_0_0 +2485,2,54.0,0.0,8,400,552.0,0.0,0.0,52,48,1582.0242765549024,0.0,941.2706999413778,2160.0,149.64363634282427,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,102490,2,1,1,0,1,,568.0,,43,2.0,2.0,6.0,5.0,2.5999999999999996,3,2,1002.4383900656,552.0,49563.52693284514,4,1,1,2,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043580433711399066,19062.89497417121,5,3,5,5_1,5_0,5_0_0 +2486,0,84.0,0.0,2,111,310.0,1800.0,0.0,0,77,0.0,0.0,528.612168445339,2110.0,0.0,3417.30728629162,70,0,0,0,0,0,0,0,0,0,,2,,2,102491,2,1,0,1,1,1500.0,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,610.266737653004,310.0,24843.677404153495,0,5,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08493106578687257,24843.677404153495,7,4,7,7_0,7_3,7_0_1 +2487,2,77.0,0.0,1,300,160.0,0.0,0.0,86,77,0.0,0.0,272.8320869395298,370.0,290.9737373332694,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102492,2,1,4,0,2,,61.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,743.828923174822,160.0,38009.544318199565,6,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.009734397153055008,25339.696212133043,7,4,7,7_1,7_0,7_1_0 +2488,2,44.0,0.0,2,211,1200.0,0.0,0.0,62,62,0.0,953.5156394473612,2046.2406520464733,2112.0,266.03313127613205,0.0,50,2,2,2,2,2,2,2,1,2,60.0,1,,2,102493,2,3,3,0,1,,630.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,985.606713584214,1200.0,81262.69714561393,1,1,1,2,98.0,1,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.02598978466362648,45145.9428586744,10,5,10,10_1,10_1,10_0_1 +2489,2,77.0,0.0,1,111,400.0,90.0,0.0,0,90,0.0,0.0,682.0802173488245,490.0,0.0,170.865364314581,20,0,0,0,0,0,0,0,0,0,,2,,1,102494,1,2,0,1,2,400.0,250.0,545.0,11,0.0,0.0,2.0,1.0,1.0,1,1,873.139254586075,400.0,15481.60873964231,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.031650457535805226,15481.60873964231,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +2490,2,44.0,0.0,1,111,647.0,1645.0,0.0,63,47,0.0,0.0,1103.2647515617236,2292.0,0.0,3123.0391588609527,42,2,2,2,2,1,2,2,2,2,10.0,1,,1,102495,2,1,1,0,1,,411.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,1059.06975421387,647.0,66238.78075896445,1,1,0,1,92.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.03460208617577568,26495.51230358578,7,4,7,7_1,7_2,7_1_0 +2491,2,71.0,0.0,2,111,208.0,617.0,0.0,0,77,0.0,0.0,354.6817130213887,825.0,0.0,1171.3769975788498,71,0,0,0,0,0,0,0,0,0,,1,,2,102496,2,1,1,0,1,,219.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,354.908354542374,208.0,16114.294571590312,0,5,0,1,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05119678037005011,16114.294571590312,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +2492,1,47.0,171.0,6,112,1480.0,0.0,0.0,56,63,0.0,0.0,2523.6968041906507,1555.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,102497,2,2,3,0,1,,250.0,,43,4.0,0.0,4.0,5.0,2.8,4,4,829.30361026135,1480.0,35639.27181977024,1,1,1,2,99.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.043631643425929706,12728.311364203659,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +2493,2,54.0,0.0,1,111,600.0,1300.0,0.0,77,63,0.0,49.00010924937828,1023.1203260232367,1937.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,0,,1,,1,102498,2,1,1,0,1,,250.0,600.0,42,1.0,1.0,4.0,2.0,1.5,2,2,441.64711208731,600.0,27945.138483520503,5,4,2,3,70.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06931438186081154,18630.092322347,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +2494,2,43.0,0.0,1,111,1800.0,0.0,0.0,35,35,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,102499,2,2,0,0,1,,1800.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,869.147390978825,1800.0,73308.71975204792,1,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024553695741627187,40727.066528915515,9,5,9,9_0,9_4,9_1_0 +2495,1,70.0,229.0,2,111,250.0,600.0,0.0,0,77,0.0,0.0,426.3001358430153,850.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,102500,2,1,0,1,1,,0.0,333.0,21,0.0,0.0,3.0,3.0,2.0,3,3,215.876886921581,250.0,11309.737794122646,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07515647272050119,5654.868897061323,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +2496,0,32.0,0.0,7,111,0.0,0.0,0.0,53,34,0.0,0.0,0.0,297.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,50.0,2,,5,102501,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,850.802097161936,0.0,62077.02222214135,1,1,5,0,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004784378975801893,34487.23456785631,9,5,9,9_0,9_4,9_0_0 +2497,2,39.0,0.0,8,112,2366.0,0.0,0.0,37,34,0.0,0.0,4034.5044856182967,2426.0,83.13535352379125,0.0,20,2,2,2,2,2,2,2,1,2,25.0,1,1999.0,6,102502,1,1,2,0,1,,372.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1632.40990031427,2366.0,58826.413572370526,1,1,1,2,148.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.041239977973762436,28012.57789160501,7,4,7,7_1,7_0,7_0_0 +2498,2,59.0,0.0,5,111,1300.0,0.0,0.0,67,75,0.0,0.0,2216.7607063836795,1370.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102503,2,1,1,0,1,,90.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,756.706622261531,1300.0,39504.0,1,7,0,1,115.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0346800324017821,26336.0,7,4,7,7_1,7_2,7_0_0 +2499,1,68.0,80.0,2,111,227.0,62.0,0.0,0,77,0.0,0.0,387.0805233454579,289.0,0.0,117.70725097226692,71,0,0,0,0,0,0,0,0,0,,2,,2,102504,2,2,0,1,1,400.0,0.0,316.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1170.58548589017,227.0,13927.664604939711,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020750068887895292,13927.664604939711,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +2500,2,61.0,0.0,7,211,1200.0,690.0,0.0,77,74,0.0,0.0,2046.2406520464733,1890.0,0.0,1309.9677930784544,70,0,0,0,0,0,0,0,0,0,,1,,5,102505,1,1,3,0,1,,370.0,486.0,41,0.0,4.0,4.0,2.0,1.5,2,2,876.45837339353,1200.0,26430.57906199392,7,5,2,3,80.0,1,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07150808143729782,17620.386041329282,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2501,2,32.0,0.0,1,120,1300.0,0.0,0.0,52,21,0.0,0.0,2216.7607063836795,1365.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102506,2,1,4,0,1,,600.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1256.31394392708,1300.0,43941.76223649955,1,1,1,2,85.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03106384292585753,29294.508157666365,8,4,8,8_1,8_0,8_1_0 +2502,2,44.0,0.0,9,120,0.0,,,85,45,0.0,0.0,,179.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,102507,2,1,0,0,1,,196.0,800.0,42,1.0,0.0,3.0,4.0,2.1,2,2,114.36934110764926,0.0,41896.26576829702,6,1,2,3,69.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0042724571442701136,19950.6027468081,5,3,5,5_0,5_2,5_0_0 +2503,1,45.0,470.0,7,112,600.0,800.0,0.0,85,34,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,10,2,2,2,2,2,2,2,1,0,,1,,5,102508,2,2,2,0,1,,400.0,870.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,1839.97724232178,600.0,28087.670837538062,6,4,2,3,121.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.04984393359270486,9362.556945846021,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +2504,2,76.0,0.0,1,111,540.0,1300.0,0.0,85,78,0.0,0.0,920.8082934209131,1840.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,1,102509,2,1,2,0,1,,400.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,1660.12315751709,540.0,17738.886770893918,6,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10372691498426406,11825.924513929278,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +2505,2,56.0,0.0,7,111,972.0,,,0,75,0.0,198.6490915515336,,1374.0,349.1684847999233,,41,0,0,0,0,0,0,0,0,0,,1,,5,102510,1,3,0,0,2,,150.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,131.1123953369879,972.0,51852.75888204752,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02649810790445148,34568.50592136502,9,5,9,9_1,9_2,9_0_0 +2506,2,36.0,0.0,6,400,930.0,0.0,0.0,56,64,0.0,0.0,1585.836505336017,930.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,102511,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1686.40763564031,930.0,33776.82871970103,4,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027533668353463818,16084.204152238584,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2507,2,49.0,0.0,1,211,1800.0,,,85,63,0.0,0.0,,1800.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,1,102512,2,1,0,0,2,,800.0,,42,3.0,0.0,5.0,8.0,4.3,7,5,7.93378069410927,1800.0,53573.15107950908,6,1,1,2,57.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03359891967766803,12458.87234407188,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +2508,2,37.0,0.0,2,111,610.0,300.0,0.0,0,68,0.0,0.0,1040.1723314569574,910.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,102513,2,1,0,0,1,,0.0,440.0,22,2.0,2.0,1.0,2.0,1.5,2,2,1118.42618772003,610.0,23764.344917283463,0,1,2,3,18.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03829266083990265,15842.896611522308,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +2509,2,33.0,0.0,6,111,772.0,858.0,0.0,63,47,0.0,0.0,1316.4148194832312,1630.0,0.0,1628.916473132339,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,102514,1,1,3,0,1,,298.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1052.50402390585,772.0,52145.81465627148,1,1,1,2,96.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031258501008075874,28969.897031261935,8,4,8,8_1,8_2,8_0_0 +2510,1,59.0,122.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1379.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,2,,2,102515,2,2,0,0,1,,0.0,415.0,12,1.0,1.0,2.0,1.0,1.0,1,1,661.929810916435,0.0,15278.351581999254,0,1,2,3,60.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09025842824724095,15278.351581999254,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +2511,1,65.0,159.0,5,221,430.0,600.0,0.0,0,78,0.0,0.0,733.2362336499863,1030.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,2,,3,102516,1,2,0,0,1,,0.0,380.0,11,0.0,4.0,3.0,1.0,1.0,1,1,3813.37534157353,430.0,15745.943148610364,0,5,2,3,70.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06541367451151385,15745.943148610364,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +2512,2,41.0,0.0,5,111,750.0,0.0,0.0,46,34,0.0,0.0,1278.9004075290459,1376.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,102517,1,2,2,1,1,471.0,0.0,700.0,43,2.0,0.0,3.0,4.0,2.1,2,2,926.599516658582,750.0,99439.94452405338,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013837497663397844,47352.35453526351,10,5,10,10_1,10_4,10_0_0 +2513,1,26.0,377.0,2,111,650.0,120.0,0.0,84,56,0.0,0.0,1108.3803531918397,770.0,0.0,227.8204857527747,20,2,2,2,2,1,2,2,2,2,30.0,2,,2,102518,2,2,0,1,1,840.0,0.0,403.0,42,1.0,0.0,4.0,3.0,1.8,2,2,1901.63738765205,650.0,17312.95927562492,3,1,2,3,72.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.044475354429100424,9618.31070868051,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2515,2,45.0,0.0,2,300,1140.0,0.0,0.0,22,48,0.0,794.5963662061343,1943.9286194441497,2040.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,102520,2,2,3,0,1,,360.0,,43,2.0,4.0,4.0,3.0,1.8,2,2,2183.87725370904,1140.0,36581.382399382725,4,1,1,2,80.0,0,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05576607187032995,20322.990221879292,5,3,5,5_1,5_1,5_0_1 +2516,2,82.0,0.0,8,112,1569.0,0.0,0.0,75,74,0.0,0.0,2675.459652550764,1569.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2002.0,6,102521,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,631.490399184219,1569.0,54725.156027271114,5,5,0,1,108.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02867054411353569,36483.437351514076,9,5,9,9_0,9_2,9_0_0 +2517,2,28.0,0.0,9,111,589.0,0.0,0.0,43,38,0.0,370.8116375628627,1004.363120046144,869.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,102522,2,1,1,0,1,,110.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1454.47720042269,589.0,54850.2122836346,1,1,1,2,104.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015843147434076194,36566.80818908974,9,5,9,9_1,9_3,9_0_0 +2518,0,33.0,0.0,1,111,0.0,0.0,0.0,42,37,0.0,0.0,0.0,586.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,8,,1,102523,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1022.92990819706,0.0,50177.06467774253,4,1,5,0,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011678642498590339,33451.37645182835,8,4,8,8_0,8_4,8_1_0 +2519,2,73.0,0.0,5,111,1400.0,,,77,78,0.0,0.0,,1540.0,193.98249155551292,,70,0,0,0,0,0,0,0,0,0,,1,,3,102524,2,1,0,0,2,,1200.0,,41,1.0,1.0,4.0,4.0,2.3,3,3,79.99859593378916,1400.0,41411.121504673945,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03718807759954497,18004.83543681476,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +2520,2,57.0,0.0,2,112,1500.0,0.0,0.0,75,54,0.0,0.0,2557.8008150580918,1530.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,102525,2,1,2,0,1,,200.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,786.087913683707,1500.0,46694.07140501362,5,1,0,1,90.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03276647235853846,31129.38093667575,8,4,8,8_1,8_0,8_0_1 +2521,1,33.0,491.0,5,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,1203.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102526,1,2,3,0,2,,0.0,650.0,42,1.0,0.0,3.0,5.0,2.4,2,2,222.654663021549,0.0,18749.078462408077,6,4,2,3,75.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06416315353375987,7812.116026003366,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2522,1,28.0,406.0,1,112,0.0,0.0,3000.0,0,54,0.0,79.45963662061344,1890.9548712442313,3540.0,665.08282819033,3590.196442694042,50,1,2,2,1,1,2,1,2,0,,1,,1,102527,1,3,3,0,1,,0.0,606.0,32,1.0,0.0,4.0,3.0,1.6,1,1,3499.54656222548,0.0,14789.862977790024,0,4,2,3,77.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.23935313027010643,9243.664361118765,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +2523,2,79.0,0.0,6,112,800.0,0.0,0.0,86,86,0.0,430.4063650283228,1364.160434697649,1125.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,102528,2,1,4,0,1,,500.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1636.23110329663,800.0,15738.610704201077,5,5,0,1,95.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07148026094194616,10492.407136134052,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +2524,2,48.0,0.0,1,111,600.0,1150.0,0.0,0,43,0.0,238.3789098618403,1023.1203260232367,1930.0,0.0,2183.2796551307574,33,0,0,0,0,0,0,0,0,2,1.0,1,,1,102529,2,2,2,0,1,,330.0,,32,1.0,1.0,7.0,3.0,2.0,3,2,415.06060164833,600.0,26891.73934664558,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07176925133482466,13445.86967332279,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +2525,2,36.0,0.0,9,120,1152.0,,,21,56,0.0,0.0,,1278.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,102530,2,1,0,0,2,,399.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,141.80592566732275,1152.0,37306.60272141056,1,1,1,2,60.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0342566705830479,17765.04891495741,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2526,2,81.0,0.0,1,120,1000.0,1000.0,0.0,0,75,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,1,102531,2,2,3,0,1,,300.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,344.525674431262,1000.0,20183.86006838692,0,5,0,1,80.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09908907380568452,20183.86006838692,5,3,5,5_1,5_0,5_1_0 +2527,1,43.0,120.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1469.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,10.0,2,,2,102532,2,1,0,1,1,,0.0,312.0,32,2.0,0.0,3.0,3.0,1.8,3,2,2707.08759014055,0.0,18106.326941240084,0,1,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.08113186096590995,10059.070522911157,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2528,0,50.0,0.0,5,111,660.0,,,0,55,0.0,0.0,,752.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,102533,2,2,0,0,2,,240.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,98.98212538139661,660.0,9633.661778911646,0,1,5,0,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07805962231787594,9633.661778911646,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +2529,2,79.0,0.0,2,111,300.0,240.0,0.0,75,75,0.0,0.0,511.56016301161833,540.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,0,,2,,2,102534,2,2,0,0,1,310.0,0.0,375.0,41,0.0,0.0,3.0,2.0,1.5,2,2,293.690641533786,300.0,49674.35194981756,5,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010870801103666602,33116.23463321171,8,4,8,8_0,8_4,8_0_1 +2530,2,65.0,0.0,1,111,826.0,2192.0,0.0,75,75,0.0,0.0,1408.4956488253226,3018.0,0.0,4161.520873084018,31,0,0,0,0,0,0,0,0,0,,1,,1,102535,2,2,1,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1002.95361092498,826.0,55468.32596086415,5,5,0,1,103.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05440943002551328,36978.88397390943,9,5,9,9_1,9_2,9_1_0 +2531,1,35.0,304.0,1,111,540.0,800.0,0.0,56,63,0.0,0.0,920.8082934209131,1340.0,0.0,1518.8032383518312,50,2,2,1,1,2,2,2,2,2,30.0,1,,1,102536,1,3,3,0,1,,400.0,553.0,43,2.0,0.0,4.0,5.0,2.4,2,2,242.659458213182,540.0,31206.421567948055,4,1,2,3,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.04293988008469086,13002.67565331169,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +2533,1,40.0,70.0,2,111,250.0,729.0,0.0,0,52,0.0,0.0,426.3001358430153,979.0,0.0,1384.0094509481062,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,102538,2,3,4,0,1,,0.0,500.0,32,1.0,0.0,4.0,2.0,1.5,2,1,2748.70839948733,250.0,21511.816533214165,0,1,2,3,59.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.04550987121373165,14341.211022142777,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +2534,2,34.0,0.0,9,111,540.0,900.0,0.0,54,47,0.0,0.0,920.8082934209131,1440.0,0.0,1708.65364314581,43,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,102539,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,582.061137689623,540.0,43334.0150220625,1,1,1,2,120.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03323024647651176,20635.24524860119,5,3,5,5_1,5_2,5_0_0 +2535,2,64.0,0.0,5,111,1260.0,0.0,0.0,0,78,0.0,0.0,2148.552684648797,1260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102540,2,1,2,0,1,,680.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,586.268952788774,1260.0,22798.37909125187,0,5,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05526708696950669,15198.919394167913,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +2536,2,62.0,0.0,5,111,420.0,,,0,52,0.0,0.0,,464.0,60.965925917446924,,42,0,0,0,0,0,0,0,0,2,10.0,8,,3,102541,2,1,0,0,2,,180.0,580.0,12,1.0,5.0,4.0,1.0,1.0,1,1,99.31340390857589,420.0,37236.73524821234,0,1,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012460813143447524,37236.73524821234,9,5,9,9_0,9_3,9_0_0 +2537,2,76.0,0.0,1,111,1260.0,0.0,0.0,78,77,0.0,0.0,2148.552684648797,1356.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102542,2,1,4,0,1,,288.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1363.14723191356,1260.0,28021.961319241833,5,5,0,1,120.0,7,5,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0483906170789293,18681.30754616122,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +2538,0,75.0,0.0,2,111,285.0,783.0,0.0,77,75,0.0,0.0,485.98215486103743,1068.0,0.0,1486.5286695368547,60,0,0,0,0,0,0,0,0,0,,1,,2,102543,2,1,3,0,1,,98.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1037.51039228074,285.0,47696.127292717945,5,5,0,1,102.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022391755067356547,31797.418195145296,8,4,8,8_1,8_2,8_0_1 +2539,2,86.0,0.0,1,111,214.0,1052.0,0.0,0,78,0.0,0.0,364.9129162816211,1266.0,0.0,1997.226258432658,71,0,0,0,0,0,0,0,0,0,,1,,1,102544,2,3,4,0,1,,129.0,352.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2201.0488099347,214.0,19840.685287211625,0,5,2,3,56.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06380827988920343,19840.685287211625,5,3,5,5_1,5_3,5_1_0 +2540,2,50.0,0.0,6,111,450.0,,,85,63,0.0,0.0,,670.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,0,,1,,4,102545,2,2,0,0,2,,320.0,,42,1.0,0.0,6.0,9.0,4.3999999999999995,6,5,111.09103592065142,450.0,35782.58671779976,6,1,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018724191330380092,8132.406072227219,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2541,1,68.0,85.0,2,111,0.0,0.0,700.0,0,75,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,20,0,0,0,0,0,0,0,0,0,,1,,2,102546,1,2,2,0,1,,140.0,220.0,11,0.0,0.0,2.0,1.0,1.0,1,1,347.787098229612,0.0,11215.836465522501,0,5,2,3,40.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06241175164703953,11215.836465522501,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +2542,1,26.0,324.0,2,111,100.0,150.0,0.0,0,55,0.0,0.0,170.52005433720612,250.0,0.0,284.77560719096834,60,0,0,0,0,0,0,0,0,0,,2,,2,102547,2,1,0,1,1,430.0,150.0,300.0,32,1.0,0.0,4.0,2.0,1.3,1,1,241.173095433382,100.0,9334.489865487538,0,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02678239556768136,7180.376819605798,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2543,2,39.0,0.0,9,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,2210.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,2012.0,6,102548,2,1,1,0,1,,551.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,2497.19122502686,0.0,35218.808493831304,0,1,1,2,92.0,6,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06275056126294247,27091.391149101004,7,4,7,7_1,7_2,7_0_0 +2544,2,48.0,0.0,9,221,1270.0,0.0,0.0,22,64,1265.6194212439218,0.0,2165.6046900825177,2570.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,2004.0,6,102549,2,1,1,0,1,,450.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,2778.21007297348,1270.0,51290.64992183803,1,1,1,2,218.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05010659845247488,25645.324960919013,7,4,7,7_1,7_1,7_0_0 +2545,2,58.0,0.0,1,111,608.0,1116.0,0.0,75,34,0.0,0.0,1036.7619303702131,1724.0,0.0,2118.7305175008046,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,102550,1,1,2,0,2,,338.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1656.02911490875,608.0,132028.65404440212,5,1,0,1,100.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013057771530566442,88019.10269626808,10,5,10,10_1,10_2,10_1_0 +2546,2,52.0,0.0,1,300,2700.0,0.0,0.0,48,31,0.0,0.0,4604.0414671045655,2740.0,55.423569015860835,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,102551,2,2,1,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,950.323389961703,2700.0,114178.87303127014,1,1,0,1,250.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02399743426482758,45671.54921250806,10,5,10,10_1,10_0,10_1_0 +2547,2,48.0,0.0,1,111,650.0,2830.0,0.0,56,34,0.0,529.7309108040896,1108.3803531918397,3880.0,0.0,5372.766455669603,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,102552,1,1,2,0,1,,600.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,4,4,583.068712231602,650.0,68301.70174378574,1,1,0,1,152.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056806783739513665,22032.807014124435,6,3,6,6_1,6_2,6_1_0 +2548,2,47.0,0.0,2,111,300.0,90.0,0.0,54,37,0.0,0.0,511.56016301161833,390.0,0.0,170.865364314581,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,102553,1,1,0,1,2,,0.0,,43,2.0,3.0,4.0,3.0,2.0,3,3,695.664072338511,300.0,62416.99821767041,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006248297917819285,31208.499108835204,8,4,8,8_0,8_4,8_0_1 +2549,0,63.0,0.0,1,111,0.0,0.0,0.0,75,33,0.0,0.0,0.0,3617.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,102554,2,1,1,0,1,,273.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,497.096244190618,0.0,97758.11664187406,5,1,5,0,100.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03699948530361397,65172.07776124938,10,5,10,10_1,10_3,10_1_0 +2550,2,60.0,0.0,7,120,1200.0,,,77,63,0.0,0.0,,1545.0,478.02828276179974,,50,0,0,0,0,0,0,0,0,0,,1,,5,102555,2,1,0,0,1,,800.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,101.87662049815975,1200.0,24237.633008164943,7,4,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06374384823301579,9695.053203265978,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +2551,1,46.0,270.0,7,112,160.0,,,69,52,0.0,0.0,,260.0,138.5589225396521,,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,102556,2,1,0,0,2,,100.0,400.0,43,2.0,0.0,2.0,2.0,1.5,2,2,106.97343838617503,160.0,24272.501125369814,1,1,2,3,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.010711710287171267,16181.66741691321,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +2552,0,58.0,0.0,1,111,0.0,0.0,1300.0,0,78,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,50,2,2,1,1,1,1,2,2,0,,2,,1,102557,1,1,0,0,1,,200.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,1684.52943753869,0.0,35795.40022062606,0,7,5,0,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.03631751543459242,23863.600147084042,6,3,6,6_0,6_3,6_1_0 +2553,2,43.0,0.0,8,120,1200.0,0.0,0.0,55,63,0.0,331.081819252556,2046.2406520464733,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,102558,2,1,1,0,1,,225.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,895.989112416608,1200.0,39476.867650244814,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03673037113396731,17163.85550010644,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2554,2,67.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,509.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,102559,2,1,0,1,1,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,1348.06697123167,0.0,106651.78638204804,5,5,1,2,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004772540782173682,71101.19092136536,10,5,10,10_0,10_4,10_0_1 +2555,2,91.0,0.0,2,211,987.0,0.0,0.0,21,75,1096.8701650780656,0.0,1683.0329363082244,2077.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,102560,2,1,1,0,1,,745.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,596.33964775265,987.0,23302.644255993622,5,5,0,1,170.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08913151559895523,15535.096170662415,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +2556,2,45.0,0.0,8,221,475.0,,,68,65,0.0,0.0,,727.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,3.0,1,1999.0,6,102561,2,1,0,0,2,,0.0,,43,2.0,2.0,3.0,3.0,2.0,3,3,84.59318166453924,475.0,52115.98632754041,1,1,0,1,8.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013949654438676923,26057.993163770207,7,4,7,7_1,7_1,7_0_0 +2557,0,81.0,0.0,2,111,0.0,0.0,960.0,0,77,0.0,0.0,605.105558798154,960.0,0.0,1148.8628616620936,71,0,0,0,0,0,0,0,0,0,,2,,2,102562,1,3,0,0,2,,760.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,3175.72320743825,0.0,17056.32752840865,0,5,5,0,45.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0562840974061412,17056.32752840865,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +2558,2,82.0,0.0,1,300,500.0,0.0,0.0,71,71,2109.365702073203,0.0,852.6002716860306,2600.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102563,2,1,1,0,1,,170.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,681.701966573175,500.0,17449.121736864145,5,5,0,1,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14900463411330736,11632.747824576096,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2559,2,59.0,0.0,6,111,1650.0,0.0,0.0,52,68,0.0,0.0,2813.5808965639008,1650.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,2,,4,102564,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,978.015275534173,1650.0,60751.94473917375,1,1,0,1,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027159624388716164,40501.2964927825,9,5,9,9_0,9_4,9_0_0 +2560,1,41.0,236.0,5,111,260.0,785.0,0.0,85,63,0.0,0.0,443.3521412767359,1045.0,0.0,1490.3256776327344,71,2,2,2,2,1,2,2,2,0,,2,,3,102565,2,1,0,1,1,,0.0,199.0,42,1.0,0.0,3.0,4.0,2.1,2,2,615.317934516408,260.0,6010.437010076244,6,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.17386422954738592,2862.112861941069,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +2561,2,24.0,0.0,9,112,864.0,0.0,0.0,53,43,0.0,0.0,1473.293269473461,864.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,102566,2,1,0,0,1,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1040.68839744527,864.0,41783.43057211977,4,1,2,3,60.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02067805319404551,23213.01698451098,6,3,6,6_0,6_1,6_0_0 +2562,2,44.0,0.0,2,111,800.0,600.0,0.0,85,52,0.0,0.0,1364.160434697649,1400.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,102567,2,2,0,1,1,970.0,0.0,376.0,42,1.0,2.0,4.0,3.0,2.0,3,3,227.274017093612,800.0,26769.849058705924,7,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05229764265498168,13384.924529352962,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +2563,1,61.0,271.0,2,111,220.0,80.0,0.0,0,77,0.0,0.0,375.14411954185346,300.0,0.0,151.8803238351831,71,0,0,0,0,0,0,0,0,0,,2,,2,102568,1,1,0,1,2,773.0,0.0,371.0,11,0.0,2.0,3.0,1.0,1.0,1,1,425.069313764224,220.0,7204.897959183673,0,6,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041638341264445954,7204.897959183673,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2564,2,23.0,0.0,2,111,240.0,0.0,0.0,0,54,0.0,0.0,409.2481304092947,240.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,102569,1,2,0,1,1,648.0,0.0,263.0,22,2.0,0.0,3.0,2.0,1.5,2,2,243.953717495602,240.0,19696.187616353338,0,1,2,3,57.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012185099201671544,13130.79174423556,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +2565,2,52.0,0.0,7,111,4000.0,0.0,0.0,54,22,0.0,397.2981831030672,6820.802173488245,4600.0,415.67676761895626,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,102570,2,1,1,0,1,,600.0,,43,2.0,0.0,10.0,6.0,3.3,5,4,1072.13237435687,4000.0,1165283.2087528787,1,1,0,1,350.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003947538216845207,353116.1238645087,10,5,10,10_1,10_2,10_0_0 +2566,2,63.0,0.0,5,111,350.0,1200.0,0.0,0,75,0.0,0.0,596.8201901802214,1550.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,2,,3,102571,2,1,0,0,1,,180.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,362.844193495307,350.0,16009.959791944999,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09681473408695522,16009.959791944999,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +2567,1,94.0,193.0,7,111,800.0,,,77,78,0.0,0.0,,1040.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,5,102572,2,2,0,0,2,,480.0,389.0,41,0.0,1.0,2.0,2.0,1.5,2,2,110.32933009817437,800.0,18995.95890839721,5,5,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.054748486507846965,12663.97260559814,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2568,2,61.0,0.0,1,111,360.0,1200.0,0.0,0,34,0.0,0.0,613.872195613942,1560.0,0.0,2278.2048575277468,10,2,2,2,1,2,2,2,2,2,35.0,1,,1,102573,2,2,1,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,989.172157723885,360.0,51258.92013948817,0,1,1,2,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,0,0.030433727354280096,51258.92013948817,10,5,10,10_1,10_4,10_1_0 +2569,2,63.0,0.0,5,111,240.0,,,0,77,0.0,0.0,,288.0,66.50828281903301,,30,0,0,0,0,0,0,0,0,0,,2,,3,102574,2,1,0,0,2,,240.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,122.74251460469422,240.0,22474.452380630446,0,5,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01281455027790631,22474.452380630446,6,3,6,6_0,6_2,6_0_0 +2570,2,62.0,0.0,1,111,500.0,1240.0,0.0,78,78,0.0,0.0,852.6002716860306,1740.0,0.0,2354.145019445338,71,0,0,0,0,0,0,0,0,0,,1,,1,102575,2,1,1,0,1,,350.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,271.918840657419,500.0,26556.66924314166,7,5,1,2,55.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06552026476171745,17704.44616209444,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +2571,2,61.0,0.0,2,111,146.0,69.0,0.0,0,56,0.0,0.0,248.95927933232093,215.0,0.0,130.99677930784543,70,2,1,2,2,1,2,2,2,2,45.0,2,,2,102576,1,3,0,1,1,508.0,191.0,358.0,12,1.0,2.0,4.0,1.0,1.0,1,1,417.578119942784,146.0,16146.200828856914,0,1,2,3,90.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.01331582595056952,16146.200828856914,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +2572,2,40.0,0.0,1,120,540.0,0.0,0.0,0,67,0.0,0.0,920.8082934209131,5050.0,83.13535352379125,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,102577,2,2,3,0,1,,480.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,900.566972391004,540.0,28158.01867152335,0,1,1,2,100.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.1793450050200849,18772.012447682235,5,3,5,5_1,5_0,5_1_0 +2573,1,28.0,266.0,2,111,439.0,,,0,42,0.0,0.0,,559.0,166.2707070475825,,20,2,2,1,2,1,2,2,2,0,,2,,2,102578,2,2,0,0,2,,380.0,327.0,22,2.0,0.0,3.0,3.0,2.0,3,3,122.25911847627391,439.0,21998.792130870705,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025410486024619525,10999.396065435352,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2574,1,21.0,190.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1825.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102579,1,1,0,0,2,,348.0,370.0,12,1.0,0.0,2.0,1.0,1.0,1,1,686.192503354874,0.0,9407.057643337648,0,1,2,3,51.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.19400327596509606,9407.057643337648,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2575,2,70.0,0.0,7,111,1300.0,1500.0,0.0,75,75,0.0,0.0,2216.7607063836795,2800.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,5,102580,2,2,1,0,1,,380.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1250.76644164412,1300.0,130308.98429542866,5,5,0,1,175.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021487390260459777,86872.65619695243,10,5,10,10_1,10_3,10_0_0 +2576,2,51.0,0.0,7,300,540.0,,,0,56,0.0,0.0,,804.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,1,5.0,1,,5,102581,2,1,0,0,2,,0.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,73.12973243970434,540.0,7955.604709489523,0,1,0,1,64.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10106082810285696,7955.604709489523,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +2577,2,75.0,0.0,1,111,875.0,2295.0,0.0,0,74,0.0,0.0,1492.0504754505534,3170.0,0.0,4357.066790021816,12,0,0,0,0,0,0,0,0,0,,1,,1,102582,2,1,2,0,1,,237.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,981.597013533759,875.0,65619.51173871738,0,5,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048308802001182975,65619.51173871738,10,5,10,10_1,10_4,10_1_0 +2578,2,54.0,0.0,1,111,210.0,1050.0,0.0,0,69,0.0,0.0,358.0921141081328,1260.0,0.0,1993.4292503367785,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,102583,2,1,2,0,1,,100.0,575.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1590.97497260088,210.0,19906.50479115099,0,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06329589313740833,19906.50479115099,5,3,5,5_1,5_3,5_1_0 +2579,2,52.0,0.0,6,300,500.0,0.0,0.0,62,46,1265.6194212439218,0.0,852.6002716860306,1820.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,4,102584,2,1,2,0,1,,260.0,,43,2.0,3.0,8.0,2.0,1.5,2,2,1570.80211870063,500.0,72526.2377217463,1,1,0,1,260.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025094366634356522,48350.825147830874,10,5,10,10_1,10_1,10_0_0 +2580,2,70.0,0.0,5,111,250.0,1269.0,0.0,0,78,0.0,0.0,426.3001358430153,1519.0,0.0,2409.201636835592,70,0,0,0,0,0,0,0,0,0,,2,,3,102585,1,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2365.88524953345,250.0,16941.73885198922,0,5,0,1,77.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08966021807269484,16941.73885198922,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +2581,2,67.0,0.0,9,111,492.0,,,77,78,0.0,0.0,,642.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102586,2,1,0,0,2,,526.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,84.52349117401357,492.0,31878.647933268436,5,5,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02013887167811817,21252.43195551229,5,3,5,5_1,5_3,5_0_0 +2582,1,58.0,152.0,7,111,390.0,,,0,78,0.0,0.0,,528.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,5,102587,2,2,0,0,2,,560.0,575.0,31,0.0,1.0,4.0,2.0,1.5,2,2,112.2822771346709,390.0,9135.72435897436,0,7,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05779508873659549,6090.482905982906,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2583,2,54.0,0.0,2,111,300.0,0.0,0.0,0,45,0.0,0.0,511.56016301161833,522.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,2,,2,102588,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,759.678388856464,300.0,29118.18545034375,0,1,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017926941254295694,29118.18545034375,8,4,8,8_0,8_4,8_0_1 +2584,2,71.0,0.0,6,111,1100.0,0.0,0.0,0,74,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,102589,2,1,0,0,1,,92.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,693.061967782876,1100.0,31120.22760609635,0,5,0,1,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0353467851817547,31120.22760609635,8,4,8,8_0,8_3,8_0_0 +2586,2,44.0,0.0,7,111,1100.0,0.0,0.0,0,23,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,1.0,2,,5,102591,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,877.057115062561,1100.0,97253.75357577438,0,1,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011310617426636855,97253.75357577438,10,5,10,10_0,10_4,10_0_0 +2588,1,41.0,230.0,7,111,3000.0,,,0,52,0.0,0.0,,3130.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,102593,2,1,0,0,2,,800.0,488.0,32,1.0,0.0,4.0,6.0,2.8999999999999995,3,2,95.97412065417502,3000.0,22994.930577007715,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13611695801898355,7929.286405864731,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2589,2,48.0,0.0,7,111,65.0,0.0,0.0,33,38,0.0,0.0,110.83803531918397,65.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,5,102594,2,2,1,0,1,,0.0,700.0,43,2.0,0.0,4.0,4.0,2.5,4,3,572.8324584307,65.0,94601.19445602287,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0006870949185553514,37840.47778240915,9,5,9,9_1,9_4,9_0_0 +2590,2,80.0,0.0,2,111,1200.0,,,77,74,0.0,0.0,,1450.0,346.39730634913025,,60,0,0,0,0,0,0,0,0,0,,1,,2,102595,1,2,0,0,2,,600.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,122.64947149153235,1200.0,45671.44708544263,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03174850136207255,30447.63139029509,8,4,8,8_1,8_2,8_0_1 +2591,2,45.0,0.0,5,111,170.0,0.0,0.0,0,54,472.4979172643975,0.0,289.8840923732504,618.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,102596,2,2,0,1,2,448.0,0.0,595.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1288.28407632813,170.0,6323.270755513287,0,1,2,3,33.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09773423025752347,6323.270755513287,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +2592,2,83.0,0.0,2,111,203.0,667.0,0.0,0,86,0.0,0.0,346.15571030452844,870.0,0.0,1266.3021999758394,70,2,2,2,2,1,2,2,2,0,,1,,2,102597,2,2,5,0,1,,120.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,256.078063885838,203.0,13019.229506127887,0,6,0,1,75.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06682423100311033,13019.229506127887,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +2593,2,32.0,0.0,2,111,600.0,0.0,0.0,0,52,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,18.0,1,,2,102598,2,1,1,0,1,,200.0,752.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1142.72476253673,600.0,28348.913448733572,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02116483233422845,28348.913448733572,8,4,8,8_1,8_4,8_0_1 +2594,2,41.0,0.0,1,111,0.0,0.0,0.0,85,34,0.0,0.0,0.0,1091.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,102599,2,1,2,0,1,,250.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1402.45371589065,0.0,36299.301432592525,6,1,1,2,91.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030055674818590578,17285.381634567868,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +2595,2,51.0,0.0,1,112,900.0,0.0,0.0,0,85,0.0,0.0,1534.680489034855,1080.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102600,2,1,1,0,1,,260.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,901.945293048318,900.0,10347.069710038664,0,7,0,1,80.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10437737738948358,6898.04647335911,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2596,2,72.0,0.0,5,211,394.0,0.0,0.0,77,75,1582.0242765549024,0.0,671.8490140885921,1894.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,102601,1,1,2,0,1,,418.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,229.674525840559,394.0,58068.50322774829,5,5,0,1,135.0,2,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03261664921121893,38712.335485165524,9,5,9,9_1,9_1,9_0_0 +2597,2,41.0,0.0,1,111,300.0,240.0,0.0,38,37,0.0,0.0,511.56016301161833,540.0,0.0,455.6409715055494,12,0,0,0,0,0,0,0,0,0,,2,,1,102602,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,691.299984459188,300.0,46867.008177422395,1,4,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011521964405232472,31244.672118281596,8,4,8,8_0,8_4,8_1_0 +2598,1,66.0,43.0,2,111,2500.0,1500.0,0.0,85,65,0.0,0.0,4263.001358430153,4000.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,102603,2,1,0,1,1,,0.0,511.0,42,1.0,2.0,4.0,6.0,3.3,5,5,252.034726389184,2500.0,29272.821937428824,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1366455208367021,8870.552102251158,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +2599,1,37.0,25.0,8,112,400.0,0.0,0.0,62,56,0.0,66.2163638505112,682.0802173488245,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,102604,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,4,2,968.641840986463,400.0,36475.96143439554,1,1,1,2,98.0,9,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.012336892087391724,11766.439172385659,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +2600,2,57.0,0.0,7,111,600.0,0.0,0.0,78,62,0.0,662.163638505112,1023.1203260232367,1220.0,166.2707070475825,0.0,60,2,2,2,2,1,2,2,2,2,15.0,1,,5,102605,2,1,4,0,1,,200.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,308.032630682601,600.0,21045.10531719033,6,1,0,1,90.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.057970724385183484,14030.070211460219,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +2601,2,47.0,0.0,2,111,790.0,1160.0,0.0,68,63,0.0,0.0,1347.1084292639284,1950.0,0.0,2202.2646956101553,43,0,0,0,0,0,0,0,0,0,,1,,2,102606,2,2,3,0,1,,510.0,709.0,43,2.0,0.0,4.0,4.0,2.5,4,3,225.573089714575,790.0,56933.93249635307,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03425022503275895,22773.572998541225,6,3,6,6_1,6_3,6_0_1 +2602,2,73.0,0.0,2,111,1105.0,0.0,0.0,86,78,0.0,0.0,1884.2466004261275,1105.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,8,,2,102607,2,2,0,3,1,,1544.0,648.0,41,0.0,7.0,5.0,2.0,1.5,2,2,298.067235169034,1105.0,17291.249979201806,5,5,2,3,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06390515441793461,11527.499986134537,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +2603,2,79.0,0.0,1,112,700.0,0.0,0.0,0,71,0.0,662.163638505112,1193.6403803604428,1200.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,102608,1,3,4,0,2,,35.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,1182.6186486624,700.0,17437.78579254093,0,5,0,1,100.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,0.06881607643748577,11625.19052836062,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2605,2,65.0,0.0,5,111,370.0,0.0,0.0,46,74,0.0,0.0,630.9242010476627,370.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,102610,2,2,0,1,1,,0.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,385.545729414566,370.0,62481.88266216025,1,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005921716571835571,41654.588441440166,9,5,9,9_0,9_4,9_0_0 +2606,2,55.0,0.0,7,111,600.0,,,52,52,0.0,0.0,,751.0,209.22397303487466,,41,0,0,0,0,0,0,0,0,2,25.0,2,,5,102611,2,1,0,0,2,,500.0,800.0,43,2.0,4.0,4.0,2.0,1.5,2,2,160.5080054439298,600.0,73394.80982683125,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010232331165812951,48929.8732178875,10,5,10,10_0,10_2,10_0_0 +2607,0,72.0,0.0,2,111,646.0,0.0,0.0,0,77,1543.001011066548,0.0,1101.5595510183516,2109.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102612,2,1,2,0,1,,230.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,980.2079116732,646.0,25239.748361764432,0,5,0,1,74.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0835586777558731,25239.748361764432,7,4,7,7_1,7_3,7_0_1 +2608,1,64.0,58.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,844.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,4,102613,2,1,0,1,1,1200.0,0.0,394.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1660.69891498359,0.0,13172.354896189092,0,5,2,3,90.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.06407358491716456,13172.354896189092,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2609,2,72.0,0.0,1,112,800.0,0.0,0.0,71,71,1898.4291318658827,0.0,1364.160434697649,2780.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102614,2,1,3,0,2,,40.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,720.984024437773,800.0,25468.62837362122,5,5,0,1,95.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1091538954991132,16979.085582414147,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2610,1,30.0,460.0,7,111,0.0,,,0,55,0.0,0.0,,784.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,102615,2,1,0,0,2,,413.0,650.0,32,1.0,0.0,4.0,4.0,1.9,1,1,118.9427061462923,0.0,18034.93906094399,0,4,2,3,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.043471175441774056,9492.073189970522,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +2611,2,33.0,0.0,1,111,747.0,0.0,0.0,0,52,0.0,0.0,1273.7848058989298,747.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,20.0,2,,1,102616,1,3,0,0,1,,0.0,364.0,12,1.0,0.0,2.0,1.0,1.0,1,1,989.26848156503,747.0,18476.59525318809,0,1,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.040429526639715024,18476.59525318809,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +2612,2,71.0,0.0,1,111,965.0,,,78,75,0.0,0.0,,1322.0,494.655353466558,,71,0,0,0,0,0,0,0,0,0,,1,,1,102617,2,2,0,0,1,,541.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,84.40595565518949,965.0,35541.50203422095,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03719595189666208,23694.33468948063,6,3,6,6_1,6_2,6_1_0 +2613,2,31.0,0.0,2,111,1000.0,0.0,0.0,22,63,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,2,102618,1,2,0,0,1,,0.0,340.0,43,2.0,0.0,1.0,2.0,1.5,2,2,779.069645931536,1000.0,16107.26023783884,1,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.06208380477089585,10738.17349189256,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +2614,0,43.0,0.0,8,111,0.0,0.0,0.0,38,53,0.0,0.0,0.0,192.0,0.0,0.0,30,0,0,0,0,0,0,0,0,1,2.0,2,2000.0,6,102619,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1820.1617541777,0.0,82988.38239835796,1,1,5,0,110.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0023135768459537896,39518.277332551406,9,5,9,9_0,9_3,9_0_0 +2615,2,48.0,0.0,7,112,1640.0,0.0,0.0,52,52,0.0,0.0,2796.5288911301805,1730.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,102620,2,1,2,0,1,,220.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,744.39103626583,1640.0,50367.43556575607,1,1,1,2,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034347589480537226,21898.8850285896,6,3,6,6_1,6_0,6_0_0 +2616,2,87.0,0.0,1,112,439.0,1437.0,0.0,86,86,0.0,0.0,748.5830385403349,1876.0,0.0,2728.150316889477,60,2,2,2,1,2,1,2,2,0,,1,,1,102621,2,2,3,0,1,,187.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,866.352056415034,439.0,26465.35787765261,5,5,0,1,80.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07088511739280494,17643.57191843507,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2617,2,46.0,0.0,7,111,240.0,,,0,56,0.0,0.0,,240.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,102622,1,2,0,0,2,,0.0,,32,3.0,0.0,1.0,5.0,3.0,5,3,45.015592997435824,240.0,30160.0,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007957559681697613,10053.333333333334,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2618,2,58.0,0.0,1,112,780.0,0.0,0.0,0,21,0.0,662.163638505112,1330.0564238302077,1280.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,102623,2,2,2,0,1,,250.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1192.3520343617,780.0,56292.552080410926,0,1,1,2,130.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022738354412704328,56292.552080410926,10,5,10,10_1,10_0,10_1_0 +2619,2,43.0,0.0,1,111,2300.0,0.0,0.0,46,46,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,102624,2,3,2,0,1,,144.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,396.39733021339,2300.0,45765.127035135665,1,1,1,2,82.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050256606918936346,21792.917635778886,6,3,6,6_1,6_4,6_1_0 +2620,2,45.0,0.0,9,120,934.0,,,31,31,0.0,0.0,,934.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,102625,2,1,0,0,2,,181.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,146.117611309136,934.0,174266.2472242935,1,1,1,2,140.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005359615042366025,82983.92724966357,10,5,10,10_1,10_2,10_0_0 +2621,2,34.0,0.0,1,111,221.0,682.0,0.0,85,38,0.0,0.0,376.84932008522554,903.0,0.0,1294.7797606949362,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,102626,1,3,0,0,1,,0.0,792.0,42,1.0,0.0,3.0,5.0,2.4,2,2,725.740391627669,221.0,48256.52901584459,6,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018712493799616384,20106.887089935248,5,3,5,5_0,5_4,5_1_0 +2622,0,40.0,0.0,1,111,900.0,,,22,46,0.0,0.0,,1677.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,102627,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,88.7487838242277,900.0,50218.623541141336,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03339398577155598,27899.235300634075,7,4,7,7_1,7_2,7_1_0 +2623,2,47.0,0.0,8,111,300.0,0.0,0.0,22,22,0.0,0.0,511.56016301161833,493.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,102628,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,577.912090883928,300.0,41464.556723579386,1,1,1,2,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011889672504798509,15947.90643214592,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +2624,2,60.0,0.0,1,300,970.0,0.0,0.0,22,33,2109.365702073203,728.3800023556231,1654.0445270708994,3690.0,235.55016831740858,0.0,41,2,2,2,2,1,2,2,2,0,,1,,1,102629,2,2,1,0,1,,300.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,908.745097773327,970.0,49337.33097669327,1,1,1,2,180.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.07479123671572625,32891.55398446218,8,4,8,8_1,8_0,8_1_0 +2625,1,64.0,147.0,5,111,400.0,,,0,77,0.0,0.0,,445.0,62.351515142843446,,71,0,0,0,0,0,0,0,0,0,,2,,3,102630,2,1,0,0,2,,0.0,269.0,11,0.0,0.0,3.0,1.0,1.0,1,1,104.16988849296456,400.0,11900.304484785642,0,5,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037394001184501265,11900.304484785642,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2626,2,50.0,0.0,1,112,600.0,0.0,0.0,85,38,3691.3899786281054,0.0,1023.1203260232367,4250.0,207.83838380947813,0.0,31,2,2,1,2,1,1,2,2,2,40.0,1,,1,102631,2,3,2,0,1,,360.0,,42,1.0,0.0,5.0,8.0,3.6999999999999993,4,2,818.548749034303,600.0,43869.30960416891,6,1,0,1,110.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.09687866160529049,11856.570163288898,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2627,2,48.0,0.0,7,111,1200.0,0.0,0.0,0,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,12.0,2,,5,102632,1,1,0,0,1,,0.0,1000.0,32,1.0,0.0,3.0,3.0,1.8,2,1,1308.36449432892,1200.0,65363.545110390245,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018358857341249795,36313.08061688347,9,5,9,9_0,9_4,9_0_0 +2628,2,67.0,0.0,2,300,506.0,0.0,0.0,77,78,3148.2283103442555,0.0,862.8314749462629,3641.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102633,2,2,1,0,1,,309.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,902.54841181924,506.0,39179.93087568484,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09293023031491904,26119.953917123228,7,4,7,7_1,7_0,7_0_1 +2629,0,70.0,0.0,6,112,600.0,,,0,77,0.0,0.0,,768.0,232.77898986661552,,71,2,2,2,2,1,2,2,2,0,,1,,4,102634,1,3,0,0,2,,900.0,,21,2.0,2.0,8.0,4.0,2.5,4,3,108.95982614006087,600.0,28521.838883252225,0,5,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.02692673509389196,11408.73555330089,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +2630,1,44.0,195.0,7,111,1689.0,0.0,0.0,55,55,0.0,86.08127300566456,2880.0837177554113,1808.0,74.82181817141213,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,102635,1,3,3,0,1,,272.0,640.0,43,2.0,2.0,5.0,4.0,2.5,4,3,1125.79984909759,1689.0,46754.07884978689,1,1,2,3,110.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03867042286960255,18701.631539914757,5,3,5,5_1,5_2,5_0_0 +2631,1,51.0,266.0,7,111,720.0,,,78,56,0.0,0.0,,852.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,5,102636,1,2,0,0,2,,540.0,461.0,42,1.0,2.0,4.0,2.0,1.5,2,2,120.52238420667483,720.0,15772.0,5,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05401978189196044,10514.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2632,2,86.0,0.0,2,111,300.0,1000.0,0.0,0,77,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,2,,2,102637,2,1,0,0,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,361.998304730989,300.0,20149.34973494608,0,5,0,1,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0645182111135498,20149.34973494608,5,3,5,5_0,5_2,5_0_1 +2633,2,67.0,0.0,5,111,1520.0,0.0,0.0,0,75,0.0,0.0,2591.904825925533,1550.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,102638,2,2,3,0,1,,230.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1292.95143596092,1520.0,21352.789364459077,0,5,0,1,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07259004777052301,21352.789364459077,6,3,6,6_1,6_2,6_0_0 +2634,2,36.0,0.0,1,112,0.0,0.0,0.0,69,67,0.0,0.0,0.0,1332.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,102639,2,1,1,0,1,,671.0,600.0,43,2.0,0.0,4.0,2.0,1.5,2,2,2614.28994798262,0.0,26018.53469829308,1,1,2,3,80.0,8,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05119427421435015,17345.68979886205,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2635,2,61.0,0.0,2,111,170.0,0.0,0.0,0,75,0.0,0.0,289.8840923732504,220.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102640,2,2,0,1,1,980.0,215.0,380.0,11,0.0,3.0,2.0,1.0,1.0,1,1,236.891252908117,170.0,18696.1343960342,0,5,2,3,56.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011767138347415076,18696.1343960342,5,3,5,5_0,5_2,5_0_1 +2636,2,74.0,0.0,6,111,1152.0,0.0,0.0,77,75,0.0,728.3800023556231,1964.3910259646145,1794.0,127.47420873647992,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,102641,2,1,2,0,1,,379.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,982.869812858774,1152.0,37608.93757563453,5,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04770142725760665,25072.625050423023,7,4,7,7_1,7_3,7_0_0 +2637,2,39.0,0.0,2,111,600.0,620.0,0.0,46,47,0.0,0.0,1023.1203260232367,1220.0,0.0,1177.072509722669,41,0,0,0,0,0,0,0,0,3,20.0,2,,2,102642,2,1,0,1,1,,0.0,850.0,43,2.0,0.0,4.0,5.0,2.4,2,2,792.989075412032,600.0,21109.52440243192,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057793817460873254,8795.635167679968,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +2638,2,37.0,0.0,7,111,1200.0,,,37,23,0.0,0.0,,1288.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,102643,1,2,0,0,2,,600.0,1000.0,43,2.0,0.0,4.0,3.0,1.8,2,2,139.10269866306518,1200.0,92841.69741782866,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013873076815942204,51578.720787682585,10,5,10,10_1,10_2,10_0_0 +2639,2,57.0,0.0,1,111,317.0,1354.0,0.0,54,31,0.0,264.8654554020448,540.5485722489434,1871.0,0.0,2570.5744809104744,10,0,0,0,0,0,0,0,0,3,60.0,1,,1,102644,1,2,2,0,1,,170.0,,43,2.0,2.0,10.0,5.0,2.8,4,4,866.672686239787,317.0,50924.84959970805,1,1,0,1,220.0,4,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0367404128771492,18187.44628561002,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +2640,1,54.0,474.0,5,111,570.0,0.0,0.0,85,64,0.0,0.0,971.9643097220749,726.0,216.15191916185728,0.0,10,2,2,2,1,2,2,2,2,0,,1,,3,102645,1,3,3,0,1,,360.0,435.0,42,3.0,0.0,5.0,9.0,4.199999999999999,5,5,233.849678074293,570.0,28814.123129170657,6,4,2,3,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.025195977567855146,6860.505506945396,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +2641,1,36.0,260.0,6,111,480.0,,,85,64,0.0,0.0,,630.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,2,,4,102646,2,2,0,0,2,,300.0,420.0,42,1.0,0.0,2.0,4.0,2.1,2,2,230.4325788036569,480.0,25291.262677198873,6,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024909788334450032,12043.458417713748,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2642,2,45.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,414.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2005.0,6,102647,2,1,0,0,1,,93.0,500.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2224.47146452552,0.0,23869.88981778138,0,1,2,3,38.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017344026434994237,23869.88981778138,6,3,6,6_0,6_3,6_0_0 +2643,2,45.0,0.0,2,120,550.0,0.0,0.0,0,52,2109.365702073203,0.0,937.8602988546337,2610.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,102648,2,1,1,0,1,,350.0,,32,2.0,1.0,4.0,3.0,2.0,3,2,2991.81348993117,550.0,25328.393792306593,0,1,1,2,120.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10304640797209881,12664.196896153297,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +2644,2,64.0,0.0,2,111,480.0,600.0,0.0,0,75,0.0,0.0,818.4962608185893,1080.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,1,,2,102649,2,2,2,0,1,,237.0,,21,1.0,3.0,6.0,3.0,2.0,3,3,348.756134987764,480.0,52473.64012737015,0,5,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020581762526451334,26236.820063685074,7,4,7,7_1,7_3,7_0_1 +2645,2,72.0,0.0,7,112,1000.0,0.0,0.0,77,72,0.0,529.7309108040896,1705.2005433720612,1472.0,99.7624242285495,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,102650,2,1,1,0,1,,200.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,1399.90083993491,1000.0,34093.30333426128,5,5,0,1,110.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0431756343927151,17046.65166713064,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2646,1,79.0,27.0,1,111,274.0,86.0,0.0,0,77,0.0,0.0,467.22494888394476,360.0,0.0,163.27134812282185,71,2,2,1,2,1,2,2,2,0,,2,,1,102651,1,1,0,1,2,876.0,0.0,293.0,11,0.0,2.0,3.0,1.0,1.0,1,1,279.17711961225,274.0,15202.07808441512,0,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.02368097295652396,15202.07808441512,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +2647,2,42.0,0.0,7,112,2860.0,0.0,0.0,52,37,0.0,0.0,4876.873554044095,2924.0,88.67771042537734,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,102652,2,2,2,0,1,,636.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,740.179657203071,2860.0,73770.05762399749,1,1,1,2,92.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039636677727750876,35128.59886857023,9,5,9,9_1,9_0,9_0_0 +2648,2,71.0,0.0,2,400,300.0,,,78,78,0.0,0.0,,448.0,205.0672053586851,,71,0,0,0,0,0,0,0,0,0,,1,,2,102653,1,1,0,0,1,,0.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,98.66346095792987,300.0,12677.38360233117,5,5,0,1,108.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035338522052580305,8451.589068220781,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +2649,1,37.0,284.0,5,120,1452.0,0.0,0.0,0,52,0.0,0.0,2475.951188976233,1508.0,77.59299662220518,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,102654,2,2,2,0,1,,752.0,650.0,32,1.0,0.0,4.0,4.0,2.3,3,1,637.115603512619,1452.0,31953.686916113234,0,1,2,3,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04719330210497754,13892.907354831843,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +2650,0,45.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,479.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,102655,2,3,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1916.5883522492,0.0,9478.627794732673,0,1,5,0,98.0,6,4,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05053474093224581,9478.627794732673,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +2651,2,64.0,0.0,2,112,500.0,0.0,0.0,78,78,0.0,1059.4618216081792,852.6002716860306,1384.0,116.38949493330776,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102656,2,1,3,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,563.694880042201,500.0,31576.640204395168,5,5,0,1,93.0,7,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04382986888539714,21051.093469596777,5,3,5,5_1,5_1,5_0_1 +2652,1,47.0,190.0,7,111,300.0,,,0,56,0.0,0.0,,346.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,2,30.0,2,,5,102657,2,1,0,0,2,,260.0,500.0,32,1.0,0.0,3.0,2.0,1.3,1,1,130.1017851522921,300.0,17711.184316226085,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01953567835003628,13623.987935558527,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +2653,2,42.0,0.0,9,211,500.0,,,0,38,0.0,0.0,,500.0,0.0,,10,0,0,0,0,0,0,0,0,2,50.0,1,2008.0,6,102658,2,1,0,0,2,,300.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,133.71793197733894,500.0,92543.00009042336,0,1,1,2,73.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005402893784634734,92543.00009042336,10,5,10,10_1,10_2,10_0_0 +2654,2,56.0,0.0,2,111,850.0,700.0,0.0,56,47,0.0,0.0,1449.420461866252,1550.0,0.0,1328.9528335578523,44,2,1,2,2,1,2,2,2,0,,1,,2,102659,2,2,2,1,1,,550.0,,43,3.0,4.0,6.0,3.0,2.0,3,3,502.522038063284,850.0,34141.84499582937,1,4,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.045398835364326144,17070.922497914686,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +2655,2,77.0,0.0,2,300,497.0,0.0,0.0,0,86,1687.4925616585624,0.0,847.4846700559144,2157.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102660,2,1,2,0,1,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1162.67019253523,497.0,19682.344578297278,0,6,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10959060245182449,19682.344578297278,5,3,5,5_1,5_0,5_0_1 +2656,2,35.0,0.0,5,112,0.0,0.0,0.0,38,46,0.0,622.4338201948052,0.0,1797.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,102661,2,1,1,0,1,,426.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,861.178530920264,0.0,69224.88870276872,1,1,1,2,150.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02595887163814432,38458.27150153818,9,5,9,9_1,9_0,9_0_0 +2657,2,47.0,0.0,6,112,735.0,844.0,0.0,65,54,0.0,158.91927324122688,1253.322399378465,1699.0,0.0,1602.3374164611819,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,102662,2,1,3,0,1,,271.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1293.86663117901,735.0,79167.77965126648,1,1,0,1,91.0,6,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021460750920186004,52778.51976751099,10,5,10,10_1,10_0,10_0_0 +2658,2,80.0,0.0,1,300,0.0,0.0,0.0,71,71,1898.4291318658827,0.0,0.0,1850.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102663,2,1,2,0,1,,190.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1652.31065061621,0.0,32259.029882652132,5,5,0,1,112.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057348283774487294,21506.01992176809,6,3,6,6_1,6_0,6_1_0 +2659,2,81.0,0.0,2,111,400.0,,,86,86,0.0,0.0,,652.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,102664,2,1,0,0,2,,420.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,87.52851394772053,400.0,18002.105936805823,5,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036217984845148994,12001.403957870549,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +2660,2,63.0,0.0,2,111,690.0,282.0,0.0,0,77,0.0,0.0,1176.5883749267223,972.0,0.0,535.3781415190205,71,0,0,0,0,0,0,0,0,0,,2,,2,102665,2,1,0,1,1,,230.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1067.71018673183,690.0,10729.32854694949,0,5,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09059280790468051,10729.32854694949,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +2661,2,66.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,684.0,116.38949493330776,,44,0,0,0,0,0,0,0,0,0,,1,,2,102666,2,1,0,0,2,,600.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,104.82415980880772,600.0,37122.0,0,5,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0184257313722321,37122.0,9,5,9,9_1,9_2,9_0_1 +2662,2,58.0,0.0,5,111,1200.0,0.0,0.0,77,22,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,102667,2,1,0,0,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,240.223136483334,1200.0,34473.14056569555,5,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034809709249238756,22982.093710463698,6,3,6,6_0,6_4,6_0_0 +2663,2,72.0,0.0,1,112,400.0,0.0,0.0,77,78,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102668,2,1,2,0,1,,360.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1183.0769372013,400.0,31647.29794067015,5,5,0,1,100.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012639309705046174,21098.198627113434,5,3,5,5_1,5_1,5_1_0 +2664,2,48.0,0.0,5,111,1176.0,,,78,52,0.0,0.0,,1176.0,0.0,,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,102669,2,2,0,0,2,,840.0,352.0,42,1.0,0.0,4.0,5.0,2.8,4,3,76.2763697733195,1176.0,36384.57082683917,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03232139264736141,12994.48958101399,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +2665,1,43.0,80.0,5,112,1950.0,0.0,0.0,62,52,0.0,0.0,3325.141059575519,2090.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,102670,2,3,3,0,1,,520.0,800.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,560.060316109541,1950.0,14760.93629482402,1,1,2,3,90.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1415899342870863,5677.283190316932,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2666,2,35.0,0.0,5,111,200.0,0.0,0.0,0,38,0.0,0.0,341.04010867441224,200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,102671,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1563.42603208521,200.0,28548.04788852562,0,1,1,2,45.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007005732958728378,28548.04788852562,8,4,8,8_0,8_3,8_0_0 +2667,2,53.0,0.0,2,211,900.0,0.0,0.0,0,22,0.0,0.0,1534.680489034855,900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,2.0,2,,2,102672,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1958.41287630896,900.0,20106.131093998712,0,1,0,1,64.0,3,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04476246552817078,20106.131093998712,5,3,5,5_0,5_1,5_0_1 +2668,2,34.0,0.0,9,111,410.0,880.0,0.0,46,54,0.0,0.0,699.1322227825451,1290.0,0.0,1670.6835621870143,20,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,102673,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,279.688166128789,410.0,45580.13422720101,4,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028301803447304513,25322.296792889447,7,4,7,7_1,7_3,7_0_0 +2669,2,45.0,0.0,1,400,0.0,0.0,0.0,85,22,0.0,0.0,0.0,459.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,102674,2,2,5,0,2,,593.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,1570.0956031234,0.0,7916.541841125022,6,1,0,1,40.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05797986156222619,4398.078800625012,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2670,2,50.0,0.0,6,111,720.0,,,56,64,0.0,0.0,,795.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,102675,2,2,0,0,2,,1080.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,143.9675403182739,720.0,41386.18582644637,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01920930822989693,16554.47433057855,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2671,2,60.0,0.0,1,111,600.0,0.0,0.0,0,34,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,,1,102676,2,1,0,1,1,1000.0,0.0,990.0,32,1.0,0.0,5.0,2.0,1.5,2,1,1715.46820186157,600.0,52895.06578529121,0,1,2,3,135.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011343213040616824,35263.37719019414,9,5,9,9_0,9_3,9_1_0 +2672,2,32.0,0.0,2,111,335.0,240.0,0.0,45,37,0.0,0.0,571.2421820296405,575.0,0.0,455.6409715055494,10,2,1,2,2,1,2,2,2,2,23.0,2,,2,102677,2,1,0,1,1,,382.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,518.000077559968,335.0,87508.58693443617,1,1,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006570783738409646,41670.75568306484,9,5,9,9_0,9_4,9_0_1 +2673,2,81.0,0.0,2,111,429.0,2825.0,0.0,78,74,0.0,0.0,731.5310331066142,3254.0,0.0,5363.273935429904,71,0,0,0,0,0,0,0,0,0,,1,,2,102678,2,1,1,0,1,,329.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1249.1068463947,429.0,44448.53205435147,5,5,0,1,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07320826694616199,29632.35470290098,8,4,8,8_1,8_3,8_0_1 +2675,0,52.0,0.0,6,211,157.0,,,85,52,0.0,0.0,,553.0,548.6933332570223,,71,2,2,1,2,1,2,2,2,0,,1,,4,102680,1,3,0,0,2,,140.0,,42,2.0,0.0,5.0,6.0,3.3,5,4,134.9559698031569,157.0,22357.78612148238,6,4,5,0,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.024734112626144698,6775.086703479509,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2676,2,74.0,0.0,1,111,220.0,1361.0,0.0,0,77,0.0,0.0,375.14411954185346,1581.0,0.0,2583.864009246053,50,0,0,0,0,0,0,0,0,0,,1,,1,102681,2,1,2,0,2,,220.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,879.340229365458,220.0,20317.30287182842,0,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07781544676346702,20317.30287182842,5,3,5,5_1,5_3,5_1_0 +2677,2,55.0,0.0,1,400,1300.0,0.0,0.0,0,48,0.0,132.4327277010224,2216.7607063836795,1552.0,210.6095622602712,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,,1,102682,1,2,1,0,1,,520.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1046.04590400368,1300.0,38847.44798269791,0,1,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039951144298880026,38847.44798269791,9,5,9,9_1,9_0,9_1_0 +2678,1,50.0,283.0,5,111,250.0,200.0,0.0,43,21,0.0,0.0,426.3001358430153,450.0,0.0,379.7008095879578,31,0,0,0,0,0,0,0,0,0,,2,,3,102683,2,1,0,1,1,324.0,0.0,325.0,43,2.0,0.0,1.0,4.0,2.1,2,2,368.331534108813,250.0,14496.42241912996,4,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03104214177741986,6903.05829482379,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +2679,2,63.0,0.0,6,111,1237.0,0.0,0.0,0,54,0.0,0.0,2109.33307215124,1297.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,102684,2,1,2,0,1,,321.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,1114.41699673201,1237.0,15036.484934559483,0,5,0,1,95.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08625686160327321,15036.484934559483,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +2680,2,80.0,0.0,2,111,230.0,930.0,0.0,0,86,0.0,0.0,392.1961249755741,1160.0,0.0,1765.6087645840037,71,0,0,0,0,0,0,0,0,0,,1,,2,102685,2,1,2,0,1,,320.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,379.881499029503,230.0,13664.542879836838,0,7,0,1,74.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0848912407975005,13664.542879836838,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +2681,2,78.0,0.0,5,111,350.0,,,0,77,0.0,0.0,,442.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,3,102686,2,1,0,0,2,,350.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,97.70930341866648,350.0,10642.958174904943,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04152980710214505,10642.958174904943,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2683,2,41.0,0.0,1,222,2200.0,0.0,0.0,0,43,0.0,0.0,3751.441195418535,2300.0,138.5589225396521,0.0,71,2,2,2,2,2,1,2,1,0,,1,,1,102688,2,1,1,0,1,,0.0,430.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1380.10261536111,2200.0,15513.567300711937,0,4,2,3,60.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.14825732569545433,15513.567300711937,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2685,2,92.0,0.0,6,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,376.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,102690,1,2,0,0,1,,0.0,689.0,11,0.0,2.0,1.0,1.0,1.0,1,1,1078.9466304776,0.0,31932.619687967457,0,5,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011774793414198983,31932.619687967457,8,4,8,8_0,8_4,8_0_0 +2686,0,75.0,0.0,1,112,1285.0,0.0,0.0,0,75,0.0,0.0,2191.1826982330986,1353.0,94.22006732696343,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,102691,2,1,1,0,1,,356.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1537.69286572627,1285.0,29352.2682464378,0,5,0,1,75.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04609524513200783,29352.2682464378,8,4,8,8_1,8_0,8_1_0 +2687,0,50.0,0.0,2,212,750.0,0.0,0.0,0,56,0.0,0.0,1278.9004075290459,862.0,155.18599324441035,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102692,2,1,2,0,2,,160.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,861.809950364173,750.0,11638.726547264356,0,1,5,0,110.0,2,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07406308555317079,7759.15103150957,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +2688,1,52.0,51.0,2,111,312.0,0.0,0.0,0,52,0.0,0.0,532.0225695320831,387.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,1,10.0,8,,2,102693,2,1,0,1,1,,162.0,345.0,12,1.0,0.0,2.0,1.0,1.0,1,1,364.191304478734,312.0,11773.660550458717,0,1,2,3,42.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03286998111941676,11773.660550458717,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2689,2,55.0,0.0,1,111,320.0,800.0,0.0,0,34,0.0,0.0,545.6641738790596,1120.0,0.0,1518.8032383518312,20,2,2,2,2,1,2,2,2,2,8.0,1,,1,102694,2,2,4,0,1,,1120.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,403.091242737823,320.0,26731.451819536076,0,1,1,2,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04189821067561596,26731.451819536076,7,4,7,7_1,7_2,7_1_0 +2690,2,43.0,0.0,2,111,1000.0,0.0,0.0,0,45,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,2,2,1,2,1,2,2,2,0,,1,,2,102695,2,1,1,0,1,,660.0,,32,2.0,0.0,5.0,3.0,1.8,2,2,310.468759376019,1000.0,42895.48796894189,0,1,1,2,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.02331247521240559,23830.82664941216,6,3,6,6_1,6_4,6_0_1 +2691,2,63.0,0.0,5,111,2480.0,0.0,0.0,90,74,0.0,0.0,4228.897347562712,2480.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,102696,2,1,1,0,1,,414.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,611.582840120346,2480.0,173399.1198095057,1,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014302264064111166,86699.55990475285,10,5,10,10_1,10_4,10_0_0 +2692,2,63.0,0.0,2,111,635.0,1300.0,0.0,21,77,0.0,0.0,1082.8023450412588,1935.0,0.0,2468.055262321726,50,2,2,2,2,1,2,2,2,0,,1,,2,102697,2,3,3,0,1,,360.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,205.128284750458,635.0,38077.846842798586,1,5,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05081694897267947,25385.23122853239,7,4,7,7_1,7_3,7_0_1 +2693,2,41.0,0.0,7,211,1270.0,,,43,22,0.0,0.0,,1314.0,60.965925917446924,,20,2,2,1,2,1,2,2,2,2,40.0,1,,5,102698,2,1,0,0,1,,290.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,93.17216882489325,1270.0,52529.60972141492,1,1,1,2,160.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.025014463403947914,20203.69604669805,5,3,5,5_1,5_2,5_0_0 +2694,2,39.0,0.0,1,400,900.0,0.0,0.0,55,63,0.0,529.7309108040896,1534.680489034855,1400.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,1,102699,2,2,1,0,1,,160.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,1339.16563961229,900.0,47278.691093997266,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02961164887616254,26265.939496665145,7,4,7,7_1,7_0,7_1_0 +2695,2,88.0,0.0,7,112,1400.0,0.0,0.0,0,86,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,102700,2,1,1,0,1,,160.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,446.805056923607,1400.0,18460.972162440277,0,6,0,1,100.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0758356595568876,18460.972162440277,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2696,2,27.0,0.0,5,111,0.0,0.0,0.0,43,62,0.0,0.0,0.0,561.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,102701,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1518.12784546624,0.0,46900.85073517291,1,1,1,2,83.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011961403497085877,31267.23382344861,8,4,8,8_0,8_3,8_0_0 +2697,2,72.0,0.0,2,211,540.0,1920.0,0.0,0,78,0.0,0.0,920.8082934209131,2460.0,0.0,3645.127772044395,70,0,0,0,0,0,0,0,0,0,,1,,2,102702,2,1,1,0,2,,135.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,247.96334801055,540.0,37903.249756041536,0,5,0,1,80.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06490208665044325,25268.833170694357,7,4,7,7_1,7_1,7_0_1 +2698,1,43.0,123.0,9,112,408.0,0.0,0.0,0,67,0.0,0.0,695.7218216958009,610.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,8,2009.0,6,102703,2,2,0,1,1,,0.0,517.0,32,1.0,1.0,3.0,3.0,2.0,3,1,837.88819474723,408.0,31366.424996277092,0,1,2,3,84.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01944754622410432,15683.212498138546,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +2699,2,44.0,0.0,9,112,1600.0,0.0,0.0,52,62,0.0,397.2981831030672,2728.320869395298,2000.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,102704,1,1,1,0,1,,488.0,,43,2.0,2.0,6.0,4.0,2.1,2,2,1216.99368879009,1600.0,50734.89916791809,1,1,1,2,150.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03942059672535406,24159.475794246708,6,3,6,6_1,6_0,6_0_0 +2700,2,55.0,0.0,2,111,313.0,350.0,0.0,0,45,0.0,0.0,533.7277700754552,663.0,0.0,664.4764167789261,30,2,1,2,2,1,2,2,2,2,40.0,2,,2,102705,2,1,0,1,1,990.0,0.0,400.0,32,1.0,0.0,4.0,2.0,1.5,2,2,295.844999047704,313.0,35625.520383609546,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018610254470978353,23750.346922406363,6,3,6,6_0,6_4,6_0_1 +2701,0,93.0,0.0,1,111,474.0,1259.0,0.0,0,86,0.0,0.0,808.265057558357,1733.0,0.0,2390.2165963561943,71,0,0,0,0,0,0,0,0,0,,1,,1,102706,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,318.530282994101,474.0,16038.763084673672,0,6,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1080507262842495,16038.763084673672,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +2702,2,32.0,0.0,2,111,450.0,400.0,0.0,0,54,0.0,0.0,767.3402445174275,850.0,0.0,759.4016191759156,60,0,0,0,0,0,0,0,0,0,,2,,2,102707,2,2,0,1,1,,0.0,550.0,32,1.0,0.0,3.0,2.0,1.3,1,1,221.435732676478,450.0,10399.521357576372,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08173453092442075,7999.6318135202855,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +2703,1,22.0,272.0,2,111,360.0,460.0,0.0,0,47,0.0,0.0,613.872195613942,820.0,0.0,873.3118620523029,60,1,2,2,2,1,2,2,2,3,30.0,2,,2,102708,1,1,0,0,1,,0.0,450.0,22,2.0,0.0,2.0,2.0,1.5,2,2,527.132709110112,360.0,18193.928086874428,0,2,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.045069981374256905,12129.28539124962,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2704,2,53.0,0.0,9,112,0.0,0.0,1500.0,54,64,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,50,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,102709,2,1,1,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1967.94340901644,0.0,52540.35588448142,1,1,0,1,144.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028549483054473322,35026.903922987614,9,5,9,9_1,9_1,9_0_0 +2705,2,48.0,0.0,1,111,750.0,2830.0,0.0,0,37,0.0,0.0,1278.9004075290459,3580.0,0.0,5372.766455669603,20,2,2,2,1,2,2,2,2,2,10.0,1,,1,102710,2,1,4,0,1,,720.0,,32,1.0,0.0,7.0,4.0,2.3,3,2,226.417810832371,750.0,81334.76157248173,0,1,0,1,138.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.044015620514356237,35362.939814122496,9,5,9,9_1,9_3,9_1_0 +2706,2,40.0,0.0,5,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,727.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,3,102711,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,4.0,3.0,1.8,2,2,383.750105847982,0.0,32277.32422155184,1,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02252355229355028,17931.846789751024,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +2707,2,56.0,0.0,5,112,456.0,,,75,42,0.0,0.0,,540.0,116.38949493330776,,41,0,0,0,0,0,0,0,0,0,,1,,3,102712,1,2,0,0,2,,400.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,134.53721994245188,456.0,108204.49707079669,5,1,0,1,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004990550435687397,72136.33138053112,10,5,10,10_1,10_1,10_0_0 +2708,2,71.0,0.0,6,111,560.0,0.0,0.0,0,74,0.0,0.0,954.9123042883542,610.0,69.27946126982604,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,102713,2,1,3,0,1,,110.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1133.20825419777,560.0,33057.25991512478,0,5,0,1,90.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018452830076243102,33057.25991512478,8,4,8,8_1,8_2,8_0_0 +2709,2,76.0,0.0,2,111,603.0,0.0,0.0,77,78,0.0,602.5689110396519,1028.235927653353,1178.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102714,2,1,2,0,2,,130.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,227.231707542534,603.0,24332.422277429116,6,5,0,1,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04841277150991741,16221.61485161941,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +2710,0,62.0,0.0,1,111,2240.0,0.0,0.0,0,56,0.0,0.0,3819.649217153417,2360.0,166.2707070475825,0.0,20,2,2,1,2,2,1,2,2,2,30.0,1,,1,102715,2,1,1,0,2,,700.0,,22,3.0,0.0,4.0,3.0,2.0,3,3,1097.20459505207,2240.0,55566.61643611916,0,1,5,0,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.04247154409182207,27783.30821805958,7,4,7,7_1,7_3,7_1_0 +2711,2,81.0,0.0,2,111,492.0,,,0,78,0.0,0.0,,741.0,345.0117171237337,,71,0,0,0,0,0,0,0,0,0,,1,,2,102716,2,1,0,0,2,,400.0,,21,1.0,5.0,4.0,2.0,1.5,2,2,135.28029714830535,492.0,26088.49988785541,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0284033195923598,17392.333258570274,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +2712,1,39.0,427.0,1,111,180.0,85.0,0.0,0,67,0.0,0.0,306.936097806971,265.0,0.0,161.37284407488207,71,1,2,2,1,2,2,2,2,0,,2,,1,102717,2,1,0,1,1,601.0,0.0,401.0,32,1.0,0.0,2.0,3.0,1.8,2,1,621.275626050999,180.0,11828.045871559632,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.022404377094714243,6571.136595310907,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +2713,2,58.0,0.0,1,111,540.0,0.0,0.0,22,62,3291.8761146554407,0.0,920.8082934209131,3661.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102718,2,2,2,0,1,,261.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,883.943799628246,540.0,27072.960536295155,1,4,1,2,150.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1352271760264973,18048.640357530105,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +2715,2,46.0,0.0,7,111,600.0,0.0,0.0,0,48,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,2,1,2,2,1,2,2,2,0,,2,,5,102720,2,1,0,0,1,885.0,0.0,788.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1041.64774984053,600.0,102584.047845951,0,4,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.005848862592174286,102584.047845951,10,5,10,10_0,10_4,10_0_0 +2716,2,74.0,0.0,2,211,1158.0,1200.0,0.0,0,78,0.0,0.0,1974.622229224847,2358.0,0.0,2278.2048575277468,70,2,2,2,2,1,2,2,2,0,,1,,2,102721,2,2,4,0,1,,144.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,292.532358838517,1158.0,13492.510928968179,0,5,0,1,85.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.17476361608404678,13492.510928968179,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +2717,2,63.0,0.0,1,111,400.0,0.0,0.0,0,78,0.0,0.0,682.0802173488245,460.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,102722,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1151.79150681127,400.0,5970.874591358297,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07704064002043559,5970.874591358297,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +2718,1,43.0,500.0,7,111,500.0,,,52,69,0.0,0.0,,604.0,144.10127944123818,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,102723,2,2,0,0,2,,600.0,800.0,43,2.0,1.0,4.0,6.0,3.0999999999999996,4,2,8.732481997906685,500.0,56123.517102809965,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.010761976996088137,18104.360355745153,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +2719,1,40.0,150.0,9,111,2000.0,0.0,0.0,52,69,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,2011.0,6,102724,2,1,1,0,1,,350.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,324.632128314711,2000.0,30029.988961459803,4,1,1,2,156.0,5,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06660009108117824,16683.327200811,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +2720,1,42.0,176.0,2,111,455.0,0.0,0.0,85,63,0.0,0.0,775.8662472342878,455.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,102725,2,2,0,1,1,509.0,0.0,369.0,42,1.0,0.0,4.0,4.0,2.3,3,2,229.467886928468,455.0,23449.95001372339,6,1,2,3,76.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.019403026434330336,10195.6304407493,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2721,0,51.0,0.0,1,222,600.0,0.0,0.0,0,85,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,102726,2,2,0,0,1,,157.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1766.95163803909,600.0,12020.0,0,7,5,0,40.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04991680532445923,12020.0,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +2722,1,67.0,147.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1571.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102727,2,2,5,0,1,,256.0,260.0,11,0.0,3.0,2.0,1.0,1.0,1,1,467.969965941866,0.0,10658.34405800076,0,5,2,3,30.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.14739625512658489,10658.34405800076,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +2723,1,39.0,250.0,5,112,540.0,1314.0,0.0,0,55,0.0,0.0,920.8082934209131,1854.0,0.0,2494.6343189928825,43,2,2,2,2,2,2,1,2,2,15.0,2,,3,102728,2,1,0,0,1,,600.0,416.0,32,1.0,0.0,5.0,5.0,2.4,2,1,1045.13169130361,540.0,17053.807440441866,0,1,2,3,72.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.10871472581561896,7105.753100184111,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +2724,2,68.0,0.0,2,111,0.0,0.0,3300.0,0,74,0.0,0.0,2080.0503583686545,3300.0,0.0,3949.2160869634463,20,0,0,0,0,0,0,0,0,0,,1,,2,102729,2,1,1,0,1,,150.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1739.16641247246,0.0,43281.8700916685,0,5,0,1,200.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07624439500906016,43281.8700916685,9,5,9,9_1,9_2,9_0_1 +2725,0,61.0,0.0,5,221,270.0,0.0,0.0,0,77,0.0,0.0,460.40414671045653,2270.0,2771.178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102730,1,2,1,0,1,,200.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,985.972274807081,270.0,18037.177017037106,0,5,0,1,100.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1258511793644793,18037.177017037106,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2726,1,30.0,100.0,9,120,0.0,,,52,62,0.0,0.0,,451.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,102731,2,1,0,0,1,,100.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,248.20016199928398,0.0,33715.76229802606,4,1,1,2,104.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013376532792390832,16055.12490382193,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +2727,1,54.0,106.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1645.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,102732,2,1,0,0,1,,0.0,284.0,11,0.0,2.0,3.0,1.0,1.0,1,1,230.97402859629,0.0,12976.903720353466,0,7,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1267636745597426,12976.903720353466,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +2728,0,69.0,0.0,2,111,850.0,700.0,0.0,0,56,0.0,0.0,1449.420461866252,1550.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,2,,2,102733,1,1,0,0,2,,0.0,,22,2.0,1.0,3.0,2.0,1.5,2,2,2078.95828343576,850.0,35397.919270836486,0,1,5,0,59.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04378788448384899,23598.612847224325,6,3,6,6_0,6_3,6_0_1 +2729,2,40.0,0.0,1,111,301.0,1399.0,0.0,85,21,0.0,0.0,513.2653635549904,1700.0,0.0,2656.007163067765,50,0,0,0,0,0,0,0,0,0,,1,,1,102734,2,1,1,0,1,,49.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1572.7126411082,301.0,40203.884049929824,6,1,0,1,72.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0422844717661792,20101.942024964912,5,3,5,5_1,5_3,5_1_0 +2730,2,80.0,0.0,2,111,294.0,0.0,0.0,86,75,0.0,0.0,501.328959751386,530.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,102735,2,1,0,1,2,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1726.99525024997,294.0,40498.804054478496,5,5,0,1,84.0,7,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013086806200179405,26999.202702985665,7,4,7,7_0,7_2,7_0_1 +2731,2,46.0,0.0,1,111,2580.0,1204.0,0.0,0,52,0.0,0.0,4399.417401899917,3784.0,0.0,2285.798873719506,50,0,0,0,0,0,0,0,0,0,,1,,1,102736,1,1,2,0,1,,480.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,662.786454486889,2580.0,48531.96357994364,0,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07796923348808782,24265.98178997182,7,4,7,7_1,7_4,7_1_0 +2732,2,39.0,0.0,6,112,700.0,0.0,0.0,85,52,0.0,0.0,1193.6403803604428,733.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,102737,2,2,5,0,1,,500.0,500.0,42,1.0,0.0,2.0,4.0,2.1,2,2,1894.85006175175,700.0,24149.729583090666,6,1,3,4,55.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030352306740247612,11499.871230043174,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2733,2,56.0,0.0,2,111,660.0,,,0,56,0.0,198.6490915515336,,1069.0,358.86760937769895,,71,2,2,2,2,1,2,2,2,0,,1,,2,102738,2,2,0,0,2,,160.0,,12,1.0,6.0,4.0,1.0,1.0,1,1,140.0103290487824,660.0,7708.0567986230635,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.1386860564119042,7708.0567986230635,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +2734,2,82.0,0.0,7,112,200.0,0.0,0.0,0,72,0.0,0.0,341.04010867441224,248.0,66.50828281903301,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,102739,2,1,0,1,1,,108.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1255.2461009746,200.0,15120.256438720999,0,5,0,1,57.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01640183822312064,15120.256438720999,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +2735,2,37.0,0.0,5,112,0.0,0.0,0.0,85,38,0.0,0.0,0.0,611.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,102740,2,2,5,0,1,,257.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,706.131250743612,0.0,59281.23367192925,6,1,1,2,70.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010306803049703057,28229.15889139488,8,4,8,8_1,8_0,8_0_0 +2737,2,79.0,0.0,2,111,401.0,0.0,0.0,0,74,0.0,0.0,683.7854178921965,401.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,102742,2,3,0,1,1,,305.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,353.814443324618,401.0,43028.187089745516,0,5,0,1,68.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009319472353404506,43028.187089745516,9,5,9,9_0,9_3,9_0_1 +2738,2,41.0,0.0,5,111,0.0,0.0,110.0,0,56,0.0,0.0,69.33501194562182,110.0,0.0,131.6405362321149,20,0,0,0,0,0,0,0,0,0,,2,,3,102743,1,1,0,1,1,744.0,0.0,425.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1388.91833853848,0.0,11417.775762681718,0,1,2,3,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009634100571455263,11417.775762681718,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +2739,2,76.0,0.0,2,111,258.0,89.0,0.0,0,77,0.0,0.0,439.9417401899918,347.0,0.0,168.96686026664122,60,0,0,0,0,0,0,0,0,0,,2,,2,102744,2,1,0,1,2,,222.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2145.84873125237,258.0,22688.178631437306,0,5,0,1,71.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01529430835488875,22688.178631437306,6,3,6,6_0,6_2,6_0_1 +2740,2,70.0,0.0,9,211,350.0,,,75,77,0.0,0.0,,504.0,213.38074071106422,,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,102745,2,1,0,0,1,,128.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,86.60710037601925,350.0,9395.550639097464,5,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0536424121756864,6263.700426064976,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2741,2,31.0,0.0,1,111,500.0,0.0,0.0,0,67,0.0,0.0,852.6002716860306,550.0,69.27946126982604,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,102746,2,2,0,0,1,,180.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1451.95783119063,500.0,20702.907538794363,0,1,2,3,45.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026566316782769602,20702.907538794363,5,3,5,5_0,5_3,5_1_0 +2742,2,44.0,0.0,2,111,499.0,425.0,0.0,0,67,0.0,0.0,850.8950711426585,924.0,0.0,806.8642203744104,41,0,0,0,0,0,0,0,0,1,15.0,2,,2,102747,2,2,0,1,2,,398.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1084.92625762965,499.0,26262.741552779276,0,1,0,1,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035182922473766524,26262.741552779276,7,4,7,7_0,7_4,7_0_1 +2743,2,60.0,0.0,2,111,300.0,80.0,0.0,0,43,0.0,0.0,511.56016301161833,380.0,0.0,151.8803238351831,41,0,0,0,0,0,0,0,0,1,10.0,2,,2,102748,2,1,0,1,2,,250.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,339.983037001386,300.0,20866.96124475715,0,1,0,1,68.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018210605537760105,20866.96124475715,5,3,5,5_0,5_2,5_0_1 +2744,1,81.0,81.0,7,111,550.0,720.0,0.0,0,78,0.0,0.0,937.8602988546337,1270.0,0.0,1366.922914516648,71,2,2,2,2,1,2,2,2,0,,2,,5,102749,2,2,0,0,1,,200.0,404.0,11,0.0,7.0,3.0,1.0,1.0,1,1,526.601715202458,550.0,13401.289389067524,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09476700063174802,13401.289389067524,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +2745,2,47.0,0.0,7,120,1800.0,0.0,0.0,46,22,2636.7071275915036,158.91927324122688,3069.36097806971,4420.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,102750,2,1,2,0,1,,80.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,2188.12052062922,1800.0,61986.72816349648,1,1,1,2,140.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07130558638845702,41324.48544233099,9,5,9,9_1,9_0,9_0_0 +2746,2,60.0,0.0,2,112,674.0,1232.0,0.0,56,47,0.0,0.0,1149.3051662327691,1906.0,0.0,2338.95698706182,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,102751,2,1,3,0,1,,738.0,,42,1.0,0.0,5.0,4.0,2.5,4,4,781.795204922917,674.0,41093.74963922292,3,1,0,1,140.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04638174945663202,16437.49985568917,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +2747,2,40.0,0.0,2,111,240.0,0.0,0.0,0,42,0.0,0.0,409.2481304092947,240.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,102752,1,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,418.269460204023,240.0,27233.498176014335,0,1,1,2,50.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008812676155257127,27233.498176014335,7,4,7,7_0,7_2,7_0_1 +2748,2,40.0,0.0,7,111,700.0,,,46,37,0.0,0.0,,723.0,31.86855218411998,,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,102753,2,1,0,0,2,,550.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,107.8513744074277,700.0,88486.48150867845,1,1,1,2,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008170739616639527,42136.419766037354,9,5,9,9_1,9_2,9_0_0 +2749,2,47.0,0.0,6,111,457.0,,,56,22,0.0,0.0,,677.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,1,2.0,1,,4,102754,1,3,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,111.46038147897032,457.0,14936.862049731051,1,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04532411143290902,5974.74481989242,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2750,2,82.0,0.0,1,111,1000.0,0.0,0.0,0,71,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102755,2,2,2,0,2,,0.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1103.4351794156,1000.0,19774.201133402636,0,5,0,1,100.0,6,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05057094308152845,19774.201133402636,5,3,5,5_1,5_2,5_1_0 +2751,2,26.0,0.0,1,111,0.0,0.0,0.0,52,53,0.0,0.0,0.0,3075.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,1,102756,2,2,1,0,1,,359.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,351.16524815138,0.0,44822.00782633456,1,1,1,2,80.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0686046910685988,24901.115459074754,7,4,7,7_1,7_2,7_1_0 +2752,2,26.0,0.0,9,211,240.0,,,0,43,0.0,0.0,,262.0,30.482962958723462,,33,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,102757,2,1,0,0,2,,120.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,249.15306452388316,240.0,31573.093997201864,0,1,1,2,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008298204794982066,31573.093997201864,8,4,8,8_1,8_2,8_0_0 +2753,2,77.0,0.0,2,211,290.0,960.0,0.0,77,75,0.0,0.0,494.50815757789775,1328.0,108.07595958092864,1822.5638860221975,60,2,2,1,1,2,2,2,2,0,,2,,2,102758,2,1,0,1,1,,170.0,307.0,41,0.0,1.0,4.0,2.0,1.5,2,2,2875.45340701586,290.0,32998.37439105469,5,5,2,3,66.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.040244406717198734,21998.91626070313,6,3,6,6_0,6_1,6_0_1 +2755,2,70.0,0.0,8,120,720.0,,,71,71,0.0,0.0,,830.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,102760,2,1,0,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,112.6104784292912,720.0,34969.150597360305,5,5,0,1,130.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023735206198078306,23312.76706490687,6,3,6,6_1,6_2,6_0_0 +2756,2,59.0,0.0,2,111,600.0,0.0,0.0,0,55,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102761,2,1,0,1,2,,330.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,1825.78748764983,600.0,18488.08756710962,0,4,0,1,66.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0324533296276356,18488.08756710962,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +2757,2,66.0,0.0,1,111,500.0,2000.0,0.0,0,78,0.0,0.0,852.6002716860306,2500.0,0.0,3797.008095879578,50,2,2,2,2,2,2,2,1,0,,1,,1,102762,1,3,4,0,2,,350.0,620.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1580.92173325139,500.0,19871.17376131182,0,5,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.12581038392746455,19871.17376131182,5,3,5,5_1,5_2,5_1_0 +2758,0,43.0,0.0,1,112,1600.0,0.0,0.0,43,63,0.0,0.0,2728.320869395298,4600.0,4156.767676189563,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,102763,2,1,3,0,1,,420.0,,43,2.0,2.0,3.0,4.0,2.1,2,2,1269.35270911475,1600.0,66855.08276491825,1,1,5,0,85.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06880553893224434,31835.753697580116,8,4,8,8_1,8_0,8_1_0 +2759,1,52.0,207.0,2,300,320.0,0.0,0.0,0,85,0.0,132.4327277010224,545.6641738790596,480.0,83.13535352379125,0.0,31,2,2,2,1,1,2,2,2,0,,1,,2,102764,1,2,2,0,1,,180.0,261.0,11,0.0,2.0,2.0,1.0,1.0,1,1,908.300938787916,320.0,7891.716104688645,0,7,2,3,45.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0.060823272610480913,7891.716104688645,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +2760,2,65.0,0.0,2,111,0.0,0.0,1567.0,78,78,0.0,0.0,987.7087610799036,1567.0,0.0,1875.2792752338548,50,1,2,2,2,1,2,2,2,0,,2,,2,102765,2,1,0,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,275.422618535136,0.0,22979.92201511505,5,5,1,2,57.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06818996160950003,15319.948010076701,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +2761,2,42.0,0.0,2,111,888.0,,,0,54,0.0,0.0,,1118.0,318.68552184119983,,50,0,0,0,0,0,0,0,0,0,,1,,2,102766,2,1,0,0,2,,390.0,,22,2.0,2.0,6.0,4.0,2.5,4,4,88.57414691219984,888.0,18961.786320262006,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058960689732345424,7584.714528104802,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +2762,1,64.0,56.0,2,111,155.0,51.0,0.0,0,78,576.911519517021,0.0,264.3060842226695,753.0,0.0,96.82370644492924,70,0,0,0,0,0,0,0,0,0,,2,,2,102767,2,1,0,1,1,547.0,38.0,294.0,11,0.0,1.0,3.0,1.0,1.0,1,1,322.297493077497,155.0,13011.56164485192,0,5,2,3,64.0,8,6,7,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05787160838591021,13011.56164485192,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2763,2,66.0,0.0,1,111,469.0,0.0,0.0,0,75,3374.985123317125,52.973091080408956,799.7390548414967,3821.0,155.18599324441035,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,102768,2,1,4,0,1,,364.0,,21,0.0,0.0,4.0,3.0,2.0,3,3,231.604973108659,469.0,45049.2651084359,0,5,0,1,46.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08481825376735128,22524.63255421795,6,3,6,6_1,6_2,6_1_0 +2764,2,65.0,0.0,6,111,5310.0,0.0,0.0,72,72,0.0,0.0,9054.614885305646,5310.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,102769,2,1,2,0,1,,900.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,456.87556332346,5310.0,267197.6359628858,5,5,0,1,174.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019872930315661803,178131.75730859055,10,5,10,10_1,10_2,10_0_0 +2765,2,48.0,0.0,8,111,480.0,,,0,52,0.0,0.0,,806.0,451.70208747926586,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,102770,2,3,0,0,2,,300.0,,32,1.0,3.0,3.0,2.0,1.5,2,1,95.56094562258446,480.0,9377.674825174825,0,4,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08594881087540525,6251.783216783217,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2766,2,38.0,0.0,2,300,656.0,0.0,0.0,48,43,1582.0242765549024,0.0,1118.6115564520721,2156.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,2,102771,2,2,1,0,1,,159.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,918.818085839168,656.0,56785.45164483755,1,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03796747120168419,27040.691259446452,7,4,7,7_1,7_0,7_0_1 +2767,0,52.0,0.0,1,211,0.0,,,11,68,0.0,0.0,,100.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,1,10.0,1,,1,102772,1,3,0,0,2,,0.0,,43,2.0,0.0,3.0,6.0,3.0999999999999996,4,3,131.27119487036464,0.0,56074.36188009942,1,1,5,0,90.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0017833461968559579,18088.50383229014,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +2768,2,62.0,0.0,7,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,3056.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,102773,2,1,2,0,1,,137.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1411.84213789204,0.0,33045.85484240705,5,5,0,1,150.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09247755927555246,22030.56989493803,6,3,6,6_1,6_3,6_0_0 +2769,2,84.0,0.0,5,211,58.0,0.0,0.0,0,86,0.0,0.0,98.90163151557955,58.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,102774,2,1,2,0,1,,297.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1689.8515931153,58.0,29141.227619581572,0,5,0,1,76.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0019903073664963465,29141.227619581572,8,4,8,8_1,8_1,8_0_0 +2770,1,27.0,162.0,6,111,410.0,,,0,55,0.0,6.6216363850511195,,461.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,102775,2,2,0,0,2,,0.0,654.0,32,1.0,0.0,3.0,2.0,1.3,1,1,100.35233102760473,410.0,24351.60336307047,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01893099165285817,18732.002586977283,5,3,5,5_1,5_2,5_0_0 +2772,1,50.0,320.0,9,111,500.0,,,85,85,0.0,0.0,,620.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,102777,1,2,0,0,2,,600.0,,41,0.0,2.0,5.0,4.0,2.1,2,2,135.1436563221643,500.0,24479.941141997362,7,7,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025326858279750467,11657.114829522552,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +2773,2,29.0,0.0,5,111,438.0,,,0,55,0.0,0.0,,480.0,58.19474746665388,,31,0,0,0,0,0,0,0,0,3,25.0,2,,3,102778,1,1,0,0,2,,300.0,700.0,12,1.0,0.0,4.0,1.0,1.0,1,1,97.06396994330717,438.0,17304.579259229457,0,1,3,4,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027738322487326026,17304.579259229457,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +2774,1,38.0,413.0,7,111,0.0,,,0,81,0.0,0.0,,414.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,102779,1,2,0,0,2,,283.0,750.0,32,1.0,0.0,5.0,3.0,1.8,2,2,100.69409257346263,0.0,9197.62412273516,0,4,2,3,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04501162414070102,5109.791179297311,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2775,2,36.0,0.0,6,111,0.0,0.0,0.0,43,42,0.0,0.0,0.0,1640.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,102780,2,1,0,0,1,,102.0,410.0,43,2.0,0.0,2.0,2.0,1.5,2,2,821.834157582563,0.0,23551.98328717387,4,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06963320158659948,15701.322191449246,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +2776,2,80.0,0.0,2,111,0.0,0.0,1700.0,77,75,0.0,0.0,1071.5410937050644,1700.0,0.0,2034.4446508599572,20,0,0,0,0,0,0,0,0,0,,1,,2,102781,2,3,1,0,1,,200.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1585.46297962814,0.0,49102.742785713446,5,5,0,1,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03462128393558127,32735.1618571423,8,4,8,8_1,8_2,8_0_1 +2777,2,54.0,0.0,8,120,624.0,,,85,64,0.0,0.0,,624.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,102782,2,1,0,0,1,,720.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,109.66111014622102,624.0,56979.694111798264,6,1,1,2,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01095126974138659,37986.46274119884,9,5,9,9_1,9_2,9_0_0 +2778,1,45.0,491.0,5,111,350.0,220.0,0.0,85,67,0.0,0.0,596.8201901802214,570.0,0.0,417.6708905467536,10,2,2,1,1,1,2,2,2,0,,2,,3,102783,1,2,0,1,2,,300.0,550.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,3,2,335.83643239734,350.0,14592.555516544006,6,4,2,3,49.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.039061012949635474,5612.521352516926,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2779,1,71.0,295.0,6,111,600.0,860.0,0.0,56,72,0.0,0.0,1023.1203260232367,1460.0,0.0,1632.7134812282186,12,0,0,0,0,0,0,0,0,0,,2,,4,102784,2,1,0,0,1,,150.0,368.0,42,1.0,9.0,2.0,2.0,1.5,2,2,307.29137219431,600.0,15493.894360344708,1,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09423066699981798,10329.262906896472,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2780,2,68.0,0.0,2,111,238.0,0.0,0.0,0,77,0.0,0.0,405.83772932255056,238.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102785,2,2,0,1,1,,102.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1500.14543191641,238.0,15815.344114267311,0,5,0,1,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015048676669974942,15815.344114267311,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +2781,1,69.0,159.0,2,111,222.0,140.0,0.0,0,90,0.0,0.0,378.5545206285976,362.0,0.0,265.7905667115705,71,2,1,2,2,2,2,2,1,0,,2,,2,102786,2,2,0,1,1,696.0,140.0,317.0,11,0.0,6.0,5.0,1.0,1.0,1,1,426.035855104091,222.0,10624.588941048407,0,5,2,3,80.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03407190640584715,10624.588941048407,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2782,1,39.0,320.0,2,111,290.0,720.0,0.0,55,62,0.0,0.0,494.50815757789775,1010.0,0.0,1366.922914516648,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,102787,1,2,0,0,2,,460.0,545.0,43,2.0,0.0,2.0,4.0,2.1,2,2,390.360412960583,290.0,18807.8411332808,1,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.053701006555866085,8956.11482537181,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +2783,1,56.0,251.0,2,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,586.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,102788,2,1,0,0,1,,0.0,260.0,11,0.0,2.0,1.0,1.0,1.0,1,1,1841.78719456787,0.0,10428.816320673379,0,7,2,3,25.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05619046131231147,10428.816320673379,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +2784,2,76.0,0.0,2,111,978.0,0.0,0.0,86,86,2056.6315595213728,0.0,1667.686131417876,2928.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102789,2,1,2,1,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1596.63688764836,978.0,57955.13557992056,5,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.050521838499752385,38636.75705328037,9,5,9,9_1,9_3,9_0_1 +2785,0,39.0,0.0,5,111,0.0,0.0,900.0,56,64,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,50,0,0,0,0,0,0,0,0,0,,1,,3,102790,2,1,2,0,1,,850.0,,43,2.0,0.0,5.0,6.0,2.8999999999999995,3,3,1462.26512930651,0.0,61191.816063750535,1,1,5,0,110.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014707849151957946,21100.6262288795,5,3,5,5_1,5_2,5_0_0 +2786,2,49.0,0.0,1,111,200.0,200.0,0.0,0,63,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,44,0,0,0,0,0,0,0,0,0,,2,,1,102791,1,3,0,1,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1045.40968706972,200.0,8122.7595693082285,0,4,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04924434812910089,8122.7595693082285,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +2787,1,44.0,33.0,5,111,395.0,829.0,0.0,0,56,0.0,0.0,673.5542146319642,1224.0,0.0,1573.859855742085,41,0,0,0,0,0,0,0,0,2,30.0,2,,3,102792,2,2,0,1,1,1200.0,0.0,333.0,32,1.0,0.0,4.0,5.0,3.0,5,4,199.065749798909,395.0,29329.232471141397,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041733107104127566,9776.410823713799,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +2788,2,44.0,0.0,9,112,930.0,0.0,0.0,0,64,0.0,0.0,1585.836505336017,930.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102793,2,1,1,0,1,,112.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,806.336164387407,930.0,32066.45003791411,0,1,1,2,73.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029002274929105173,32066.45003791411,8,4,8,8_1,8_0,8_0_0 +2789,2,29.0,0.0,1,112,900.0,0.0,0.0,11,47,843.7462808292812,0.0,1534.680489034855,1700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,102794,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,956.81426502755,900.0,29417.055991663823,1,1,1,2,90.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05778960343556284,16342.80888425768,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2790,1,27.0,197.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,284.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,102795,2,3,0,1,1,52.0,0.0,244.0,12,1.0,0.0,2.0,1.0,1.0,1,1,287.650023921228,0.0,13655.374893247625,0,1,2,3,47.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02079767140925832,13655.374893247625,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +2791,0,21.0,0.0,5,400,300.0,,,0,52,0.0,0.0,,346.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,3,102796,2,1,0,0,2,,400.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,63.057027149753644,300.0,16276.26060111076,0,4,5,0,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021257954052197194,10172.662875694225,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2792,2,29.0,0.0,5,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,433.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,,3,102797,2,3,0,1,1,660.0,266.0,275.0,43,2.0,0.0,3.0,2.0,1.5,2,2,401.488722806439,0.0,32253.10989365,1,1,2,3,67.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013425061999532924,21502.073262433332,6,3,6,6_0,6_2,6_0_0 +2793,2,32.0,0.0,5,111,1400.0,0.0,0.0,56,63,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,3,102798,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,911.686504659034,1400.0,20787.871671761055,1,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06734696182975802,11548.817595422808,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +2794,2,28.0,0.0,9,111,0.0,0.0,0.0,52,37,0.0,0.0,0.0,2736.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,102799,2,1,1,0,1,,433.0,569.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1117.73436195712,0.0,11693.121831654153,4,1,2,3,90.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.23398370763515386,6496.1787953634175,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +2795,2,63.0,0.0,6,111,440.0,1080.0,0.0,77,78,0.0,0.0,750.2882390837069,1520.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,0,,1,,4,102800,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1921.9413246019,440.0,43503.94545006017,5,5,0,1,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03493935973565583,29002.630300040113,8,4,8,8_1,8_3,8_0_0 +2796,2,35.0,0.0,9,112,950.0,0.0,0.0,47,46,0.0,701.8934568154186,1619.9405162034582,1480.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,102801,2,1,1,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,320.726837634223,950.0,59549.381430303765,1,1,1,2,125.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024853322812969654,28356.848300144648,8,4,8,8_1,8_0,8_0_0 +2797,0,76.0,0.0,8,300,0.0,,,0,77,0.0,0.0,,92.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,7,2000.0,6,102802,2,1,0,0,2,,350.0,,11,0.0,10.0,1.0,1.0,1.0,1,1,119.68517168371991,0.0,15837.636500286948,0,5,5,0,25.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005808947566029384,15837.636500286948,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2798,1,43.0,378.0,1,111,270.0,900.0,0.0,0,56,0.0,0.0,460.40414671045653,1170.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,2,,1,102803,2,2,0,0,1,,0.0,360.0,32,1.0,0.0,3.0,2.0,1.3,1,1,810.694404611659,270.0,9468.261831332247,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12357072721925068,7283.278331794036,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +2799,2,80.0,0.0,5,112,250.0,0.0,0.0,77,75,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102804,2,1,1,0,1,,400.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,1478.67444330479,250.0,46506.325409105106,5,5,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0053756128397762955,23253.162704552553,6,3,6,6_1,6_0,6_0_0 +2800,2,70.0,0.0,2,111,600.0,200.0,0.0,0,74,0.0,0.0,1023.1203260232367,800.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,2,102805,2,1,0,1,1,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2234.902521279,600.0,32146.006624516725,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024886450418070458,32146.006624516725,8,4,8,8_0,8_4,8_0_1 +2801,1,28.0,245.0,1,111,650.0,800.0,0.0,45,52,0.0,0.0,1108.3803531918397,1450.0,0.0,1518.8032383518312,20,2,2,2,2,1,2,2,2,3,35.0,2,,1,102806,1,2,0,0,2,,0.0,835.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1433.13490312046,650.0,30045.30311420952,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.048260455036456,20030.20207613968,5,3,5,5_0,5_4,5_1_0 +2802,2,82.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,647.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,102807,1,2,0,1,1,531.0,0.0,376.0,11,0.0,0.0,3.0,1.0,1.0,1,1,246.153491310745,0.0,18851.595673380827,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034320702141601135,18851.595673380827,5,3,5,5_0,5_4,5_0_1 +2803,2,28.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,709.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,5.0,2,,2,102808,2,2,0,1,1,192.0,148.0,359.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1693.2304053296,0.0,19754.253263407973,0,1,2,3,32.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03589100486594068,19754.253263407973,5,3,5,5_0,5_2,5_0_1 +2804,2,54.0,0.0,7,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,471.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,102809,2,1,0,1,1,,141.0,,42,1.0,0.0,6.0,5.0,2.8,4,4,663.343380858617,0.0,70591.0,6,4,1,2,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0066722386706520665,25211.07142857143,7,4,7,7_0,7_4,7_0_0 +2805,1,34.0,322.0,1,111,540.0,0.0,0.0,85,63,0.0,0.0,920.8082934209131,540.0,0.0,0.0,71,2,2,2,2,1,1,2,2,2,20.0,2,,1,102810,1,3,0,0,1,,0.0,790.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,841.801061649444,540.0,30120.580084614965,6,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.017927941576258752,11155.770401709247,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +2806,2,54.0,0.0,6,111,0.0,0.0,1210.0,67,77,0.0,0.0,762.68513140184,1210.0,0.0,1448.045898553264,44,0,0,0,0,0,0,0,0,0,,1,,4,102811,2,2,2,0,2,,277.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1422.9968884266,0.0,30308.119068190004,4,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03992329571088296,20205.41271212667,5,3,5,5_1,5_3,5_0_0 +2807,2,40.0,0.0,5,111,420.0,900.0,0.0,54,62,0.0,0.0,716.1842282162656,1320.0,0.0,1708.65364314581,43,2,2,2,2,2,2,2,1,2,60.0,2,,3,102812,1,1,0,0,2,,160.0,1171.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2372.95496123789,420.0,55547.01982307648,1,1,2,3,83.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.02376365112303682,30859.45545726471,8,4,8,8_0,8_3,8_0_0 +2808,0,50.0,0.0,2,111,630.0,,,0,22,0.0,0.0,,860.0,318.68552184119983,,41,0,0,0,0,0,0,0,0,0,,1,,2,102813,2,3,0,0,2,,460.0,,32,1.0,0.0,4.0,4.0,2.5,4,3,121.44236848864747,630.0,24510.335730411432,0,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035087238684084886,9804.134292164574,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +2809,1,32.0,351.0,2,221,636.0,876.0,0.0,62,55,0.0,0.0,1084.5075455846309,1512.0,0.0,1663.089545995255,43,0,0,0,0,0,0,0,0,2,5.0,1,,2,102814,2,2,5,0,1,,450.0,550.0,43,2.0,0.0,5.0,3.0,1.8,2,2,2465.4201964083,636.0,19603.895546681484,4,1,2,3,110.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07712752786299909,10891.053081489714,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +2810,2,78.0,0.0,8,111,480.0,0.0,0.0,0,77,0.0,0.0,818.4962608185893,480.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2001.0,6,102815,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,781.737194179039,480.0,26974.107047687947,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01779484300078592,26974.107047687947,7,4,7,7_0,7_4,7_0_0 +2811,1,45.0,271.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102816,2,1,0,1,1,,0.0,347.0,11,0.0,1.0,2.0,1.0,1.0,1,1,198.024958482269,0.0,8846.512706428168,0,6,2,3,50.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09608305873820336,8846.512706428168,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2812,2,59.0,0.0,2,111,438.0,2771.0,0.0,0,37,0.0,145.67600047112464,746.8778379969627,3319.0,0.0,5260.754716841156,20,0,0,0,0,0,0,0,0,0,,1,,2,102817,2,1,2,0,2,,250.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,631.818157924884,438.0,208954.78649609457,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01588381896225207,139303.1909973964,10,5,10,10_1,10_4,10_0_1 +2813,1,31.0,357.0,7,112,0.0,,,85,62,0.0,0.0,,488.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,5,102818,2,1,0,0,2,,388.0,490.0,42,1.0,0.0,3.0,5.0,2.4,2,2,127.26270375977472,0.0,26388.160868485542,6,4,2,3,38.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01849314177036117,10995.067028535643,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2814,2,46.0,0.0,1,111,210.0,490.0,0.0,0,31,0.0,0.0,358.0921141081328,700.0,0.0,930.2669834904966,10,2,2,2,1,2,2,2,2,0,,2,,1,102819,2,3,0,0,1,,0.0,766.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1405.45836303084,210.0,20594.92911146328,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.03398894923170069,20594.92911146328,5,3,5,5_0,5_4,5_1_0 +2816,0,77.0,0.0,9,111,780.0,0.0,0.0,0,75,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,102821,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,2569.62299962851,780.0,31676.293835802266,0,5,5,0,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02462409283242605,31676.293835802266,8,4,8,8_0,8_3,8_0_0 +2817,2,47.0,0.0,2,111,138.0,150.0,0.0,0,67,0.0,0.0,235.31767498534444,288.0,0.0,284.77560719096834,50,2,2,2,2,1,2,2,2,0,,2,,2,102822,1,1,0,1,1,307.0,0.0,345.0,22,1.0,2.0,4.0,3.0,2.0,3,3,268.862329568028,138.0,47552.27590458942,0,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.006056492450074387,23776.13795229471,6,3,6,6_0,6_3,6_0_1 +2818,2,68.0,0.0,7,111,324.0,,,0,77,0.0,0.0,,364.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,1,,5,102823,2,1,0,0,2,,260.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,105.48661001432112,324.0,16719.0,0,5,0,1,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021771637059632754,16719.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2819,1,77.0,81.0,1,111,890.0,0.0,0.0,0,77,0.0,0.0,1517.6284836011343,890.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,102824,2,1,0,0,1,,0.0,218.0,11,0.0,0.0,2.0,1.0,1.0,1,1,906.175929776559,890.0,11191.21338236794,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07952667593687554,11191.21338236794,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +2820,2,76.0,0.0,8,111,389.0,790.0,0.0,78,75,0.0,0.0,663.3230113717318,1179.0,0.0,1499.8181978724333,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,102825,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2581.46927670011,389.0,35535.33930446386,5,5,0,1,92.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0331782395518564,23690.226202975904,6,3,6,6_0,6_3,6_0_0 +2821,1,33.0,360.0,2,111,0.0,,,0,55,0.0,0.0,,698.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,2,102826,2,3,0,0,2,,275.0,334.0,32,1.0,1.0,3.0,4.0,2.1,2,1,88.06056081119442,0.0,14111.599462365592,0,4,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04946285513995102,6719.809267793138,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2822,2,48.0,0.0,2,111,420.0,,,0,21,0.0,0.0,,558.0,191.2113131047199,,44,0,0,0,0,0,0,0,0,0,,1,,2,102827,1,2,0,0,2,,200.0,300.0,12,1.0,4.0,3.0,1.0,1.0,1,1,95.64474255907994,420.0,4447.65450943832,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12545938512442326,4447.65450943832,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +2823,1,73.0,202.0,5,111,300.0,500.0,0.0,78,77,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,50,2,2,1,1,2,2,2,2,0,,2,,3,102828,2,1,0,1,1,,300.0,188.0,41,0.0,3.0,3.0,2.0,1.5,2,2,393.661483927197,300.0,17433.604954199323,5,5,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.04588838637228038,11622.403302799548,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +2824,2,40.0,0.0,1,111,600.0,960.0,0.0,0,85,0.0,0.0,1023.1203260232367,1560.0,0.0,1822.5638860221975,60,0,0,0,0,0,0,0,0,0,,1,,1,102829,2,1,1,0,1,,400.0,,31,0.0,0.0,5.0,3.0,2.0,3,2,1798.51404462815,600.0,14536.94863017739,0,6,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10731275453237697,7268.474315088695,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +2825,1,46.0,213.0,6,111,587.0,180.0,0.0,85,53,0.0,0.0,1000.9527189593999,767.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,3,25.0,2,,4,102830,2,1,0,1,1,718.0,0.0,448.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,3,2,297.754525520828,587.0,32137.409787008433,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02386626691706997,11081.865443796014,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +2826,2,63.0,0.0,2,112,2010.0,0.0,0.0,0,77,0.0,0.0,3427.453092177843,2010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102831,2,1,0,0,1,,0.0,467.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1059.93349107673,2010.0,16675.665638079397,0,5,2,3,70.0,9,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12053491858280625,16675.665638079397,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +2827,1,28.0,250.0,6,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1070.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,102832,1,1,0,0,1,,0.0,450.0,42,1.0,0.0,3.0,4.0,2.1,2,2,269.463478131037,0.0,19753.486224871584,6,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05416765363942516,9406.422011843611,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2828,2,53.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1308.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,102833,2,1,0,1,2,708.0,0.0,595.0,12,1.0,3.0,3.0,1.0,1.0,1,1,905.364797395799,0.0,31893.68759300456,0,1,2,3,68.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04101125014740822,31893.68759300456,8,4,8,8_0,8_4,8_0_1 +2829,0,50.0,0.0,6,112,2000.0,0.0,0.0,75,85,0.0,331.081819252556,3410.4010867441225,2315.0,90.06329965077386,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,102834,2,2,1,0,1,,400.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1431.14105742714,2000.0,43823.0,5,7,5,0,130.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05282614152385733,29215.333333333332,8,4,8,8_1,8_0,8_0_0 +2830,1,22.0,270.0,6,111,330.0,700.0,0.0,0,45,0.0,0.0,562.7161793127802,1030.0,0.0,1328.9528335578523,42,2,2,2,2,1,2,2,2,2,5.0,2,,4,102835,1,3,0,0,2,,500.0,305.0,12,1.0,0.0,2.0,1.0,1.0,1,1,399.655220988673,330.0,11559.2,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.08910651256142293,11559.2,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +2831,2,57.0,0.0,1,111,912.0,1372.0,0.0,52,47,0.0,0.0,1555.1428955553197,2284.0,0.0,2604.7475537733903,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,102836,2,2,1,0,1,,254.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,498.921137929233,912.0,64162.28758352048,1,1,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0355972345441534,32081.14379176024,8,4,8,8_1,8_4,8_1_0 +2832,1,40.0,140.0,5,111,480.0,,,0,54,0.0,0.0,,630.0,207.83838380947813,,43,0,0,0,0,0,0,0,0,2,10.0,2,,3,102837,2,1,0,0,2,,1172.0,545.0,32,1.0,0.0,4.0,4.0,2.1,3,2,125.07693038537667,480.0,19821.63949961222,0,1,2,3,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03178344556273082,9438.875952196295,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2833,1,30.0,358.0,1,111,160.0,,,0,56,0.0,0.0,,204.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,2,,1,102838,1,2,0,0,2,,1500.0,393.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.65907285243293,160.0,9765.201170336764,0,4,2,3,62.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.020890506651279242,7511.693207951357,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +2834,2,63.0,0.0,5,111,300.0,700.0,0.0,77,78,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,1,,3,102839,2,1,2,0,1,,320.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1049.76996551234,300.0,24270.0,7,5,0,1,91.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04120313143798929,16180.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2835,2,64.0,0.0,2,111,1270.0,0.0,0.0,85,75,2109.365702073203,0.0,2165.6046900825177,3510.0,332.541414095165,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,102840,2,2,0,1,1,,480.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,1939.3660640552,1270.0,43031.37037192131,6,5,0,1,99.0,6,4,9,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08156839927854898,21515.685185960654,6,3,6,6_0,6_2,6_0_1 +2836,2,79.0,0.0,6,111,480.0,,,0,78,0.0,0.0,,618.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,102841,2,1,0,0,2,,110.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,91.32974182738111,480.0,13914.627519236807,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04441369337020502,13914.627519236807,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +2837,2,57.0,0.0,6,111,300.0,0.0,0.0,0,35,0.0,1239.5703312815697,511.56016301161833,1236.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,4,102842,2,1,0,1,1,894.0,0.0,786.0,32,1.0,0.0,2.0,2.0,1.5,2,1,1120.69826987643,300.0,57094.5329706344,0,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021648307389355748,38063.021980422935,9,5,9,9_0,9_4,9_0_0 +2838,2,38.0,0.0,1,112,2400.0,0.0,0.0,43,43,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,44,2,2,2,1,1,2,2,2,2,20.0,1,,1,102843,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,733.794090713616,2400.0,66142.4869466405,1,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03628530027811269,31496.422355543098,8,4,8,8_1,8_0,8_1_0 +2839,2,74.0,0.0,1,400,400.0,0.0,0.0,77,77,1582.0242765549024,0.0,682.0802173488245,2040.0,193.98249155551292,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,102844,2,1,2,0,2,,300.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,825.027169132711,400.0,20358.624467499627,5,5,0,1,70.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10020323343832205,13572.416311666419,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2840,2,43.0,0.0,5,111,230.0,0.0,0.0,0,55,0.0,0.0,392.1961249755741,265.0,48.49562288887823,0.0,50,1,2,2,2,1,2,2,2,2,10.0,2,,3,102845,1,3,0,1,1,519.0,0.0,318.0,12,1.0,0.0,3.0,1.0,1.0,1,1,331.243967986547,230.0,17012.891067215354,0,1,2,3,50.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.015576423722048484,17012.891067215354,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +2841,2,54.0,0.0,2,111,700.0,0.0,0.0,0,62,0.0,0.0,1193.6403803604428,790.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,102846,2,2,0,0,1,,0.0,367.0,12,1.0,2.0,5.0,1.0,1.0,1,1,2182.4562199162,700.0,21118.75060089775,0,1,2,3,65.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.037407515952502295,21118.75060089775,5,3,5,5_0,5_2,5_0_1 +2842,2,59.0,0.0,6,120,960.0,0.0,0.0,78,56,0.0,331.081819252556,1636.9925216371787,1276.0,91.44888887617039,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,4,102847,2,1,1,0,1,,400.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1625.28168307501,960.0,36984.69976045569,5,1,0,1,96.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034500753237540364,24656.46650697046,7,4,7,7_1,7_0,7_0_0 +2843,0,77.0,0.0,1,211,243.0,1136.0,0.0,0,77,0.0,0.0,414.3637320394109,1379.0,0.0,2156.7005984596003,71,2,2,2,2,1,2,2,2,0,,1,,1,102848,2,1,2,0,1,,250.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,1061.77639896055,243.0,14466.854941855676,0,5,0,1,100.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.09532134009377953,9644.569961237117,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +2844,2,62.0,0.0,2,111,300.0,930.0,0.0,78,77,0.0,0.0,511.56016301161833,1230.0,0.0,1765.6087645840037,70,2,2,2,2,1,2,2,2,0,,2,,2,102849,2,2,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,316.241999824103,300.0,39036.75393475718,5,5,0,1,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03150876740560245,26024.502623171455,7,4,7,7_0,7_3,7_0_1 +2845,1,29.0,173.0,6,111,234.0,,,67,46,0.0,0.0,,486.0,349.1684847999233,,20,0,0,0,0,0,0,0,0,2,40.0,1,,4,102850,2,1,0,0,2,,380.0,448.0,43,2.0,0.0,3.0,3.0,1.8,2,2,137.53250397299726,234.0,36953.30429965908,1,1,2,3,69.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013151733226857433,20529.6134998106,5,3,5,5_1,5_2,5_0_0 +2846,2,75.0,0.0,1,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,102851,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,933.064117964245,300.0,49895.70571218347,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006012541474621259,49895.70571218347,10,5,10,10_0,10_4,10_1_0 +2847,2,64.0,0.0,5,111,603.0,927.0,0.0,75,75,0.0,0.0,1028.235927653353,1530.0,0.0,1759.9132524401844,10,0,0,0,0,0,0,0,0,0,,1,,3,102852,2,2,1,0,1,,260.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,964.33270881757,603.0,51041.574451992514,5,5,0,1,120.0,5,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02997556435958008,34027.71630132834,9,5,9,9_1,9_2,9_0_0 +2848,2,47.0,0.0,1,112,450.0,0.0,0.0,0,21,1771.8671897414906,0.0,767.3402445174275,2190.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,102853,2,2,1,0,1,,300.0,,32,2.0,0.0,6.0,3.0,1.8,2,2,1297.62928317624,450.0,34454.74922873024,0,1,1,2,130.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06356162935511542,19141.527349294574,5,3,5,5_1,5_0,5_1_0 +2849,2,47.0,0.0,2,111,420.0,1500.0,0.0,68,48,0.0,0.0,716.1842282162656,1920.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,102854,2,1,1,0,1,,460.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1192.15911193813,420.0,57777.55625455377,1,1,0,1,105.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033230896639881234,28888.778127276884,8,4,8,8_1,8_3,8_0_1 +2850,2,61.0,0.0,6,400,380.0,0.0,0.0,78,56,2003.897416969543,0.0,647.9762064813832,2410.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,102855,2,1,3,0,1,,520.0,,42,1.0,2.0,6.0,4.0,2.1,2,2,1757.67446166874,380.0,21883.862945589834,5,1,0,1,108.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11012680923802247,10420.887116947539,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +2852,2,65.0,0.0,6,111,360.0,756.0,0.0,77,74,0.0,0.0,613.872195613942,1116.0,0.0,1435.2690602424805,20,0,0,0,0,0,0,0,0,0,,2,,4,102857,2,2,0,0,1,,0.0,677.0,41,0.0,3.0,5.0,2.0,1.5,2,2,1233.63379239835,360.0,50214.38608611538,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022224706642556796,33476.25739074359,8,4,8,8_0,8_4,8_0_0 +2853,2,31.0,0.0,7,111,150.0,0.0,0.0,0,38,0.0,0.0,255.78008150580916,150.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,5,102858,2,1,0,1,1,132.0,0.0,436.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2016.42967532974,150.0,30344.895065866724,0,1,2,3,38.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004943170825748764,30344.895065866724,8,4,8,8_0,8_2,8_0_0 +2854,1,69.0,309.0,2,111,1449.0,0.0,0.0,67,78,0.0,0.0,2470.8355873461164,1449.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,102859,1,1,0,0,1,,0.0,487.0,42,1.0,3.0,5.0,3.0,2.0,3,3,808.719910452012,1449.0,30070.82760571119,4,5,2,3,128.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,0,0,1,0.04818623614219381,15035.413802855595,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +2855,2,35.0,0.0,8,111,0.0,,,0,53,0.0,0.0,,796.0,0.0,,42,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,102860,2,2,0,0,2,,672.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,82.19896097231718,0.0,22817.573767909125,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034885391764110464,22817.573767909125,6,3,6,6_0,6_3,6_0_0 +2856,2,64.0,0.0,1,111,1600.0,0.0,0.0,77,37,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,102861,2,3,3,0,1,,0.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,598.59026403001,1600.0,192400.2492004212,5,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008315997544957947,128266.83280028081,10,5,10,10_1,10_4,10_1_0 +2857,1,79.0,162.0,2,111,550.0,610.0,0.0,0,86,0.0,0.0,937.8602988546337,1190.0,41.567676761895626,1158.0874692432712,71,0,0,0,0,0,0,0,0,0,,2,,2,102862,2,1,0,1,1,,0.0,321.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1789.71573146995,550.0,10203.262222222222,0,5,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11662936559723383,10203.262222222222,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2858,2,71.0,0.0,6,111,1200.0,,,75,75,0.0,0.0,,1344.0,199.524848457099,,60,0,0,0,0,0,0,0,0,0,,1,,4,102863,2,1,0,0,2,,1000.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,93.16713097614938,1200.0,55024.54647787099,5,5,0,1,82.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024425462562249586,36683.03098524732,9,5,9,9_1,9_3,9_0_0 +2859,2,29.0,0.0,8,111,350.0,956.0,0.0,0,54,0.0,0.0,596.8201901802214,1306.0,0.0,1814.9698698304383,31,0,0,0,0,0,0,0,0,2,25.0,8,2001.0,6,102864,2,2,0,0,1,,360.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,347.230372039446,350.0,20683.20460868753,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06314301989022741,20683.20460868753,5,3,5,5_0,5_3,5_0_0 +2860,2,39.0,0.0,5,112,1663.0,0.0,0.0,34,37,0.0,0.0,2835.7485036277376,1663.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,102865,2,2,1,0,1,,503.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,878.417379920442,1663.0,76548.30349449467,1,1,0,1,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02172484462858935,36451.573092616505,9,5,9,9_1,9_0,9_0_0 +2861,1,29.0,200.0,2,111,480.0,120.0,0.0,54,64,0.0,0.0,818.4962608185893,600.0,0.0,227.8204857527747,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,102866,1,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,197.86911070646,480.0,16781.341058251448,4,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03575399593615778,11187.560705500966,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +2862,2,76.0,0.0,5,111,1100.0,0.0,0.0,77,75,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,102867,2,1,2,0,2,,100.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1302.50424825615,1100.0,36182.01959736025,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03040184081046303,24121.34639824017,6,3,6,6_1,6_3,6_0_0 +2863,2,81.0,0.0,2,300,587.0,1739.0,0.0,78,78,0.0,0.0,1000.9527189593999,2326.0,0.0,3301.4985393672932,71,0,0,0,0,0,0,0,0,0,,1,,2,102868,2,2,4,0,2,,1991.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,291.660685772208,587.0,22156.015417079252,5,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1049827758382481,14770.676944719502,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +2864,2,73.0,0.0,2,112,272.0,1200.0,0.0,0,75,0.0,0.0,463.81454779720065,1472.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,102869,2,1,2,0,1,,256.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,944.838960413347,272.0,20332.2690703223,0,5,0,1,95.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07239723195226563,20332.2690703223,5,3,5,5_1,5_1,5_0_1 +2865,2,37.0,0.0,5,111,0.0,,,37,63,0.0,0.0,,979.0,0.0,,71,0,0,0,0,0,0,0,0,1,6.0,1,,3,102870,2,1,0,0,2,,0.0,600.0,43,2.0,0.0,1.0,2.0,1.5,2,2,121.82503381810616,0.0,7058.3448275862065,1,1,3,4,34.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13870107283137592,4705.563218390805,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +2866,2,69.0,0.0,2,112,1380.0,0.0,0.0,77,75,0.0,264.8654554020448,2353.1767498534446,1670.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102871,1,1,2,0,2,,310.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1698.08303707474,1380.0,36936.53821149667,5,5,0,1,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045212683182101907,24624.35880766445,7,4,7,7_1,7_0,7_0_1 +2867,1,52.0,215.0,5,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,717.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,102872,2,1,0,1,1,440.0,215.0,198.0,12,1.0,3.0,1.0,1.0,1.0,1,1,374.156645374643,0.0,14778.209505289946,0,1,2,3,37.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04851737957452462,14778.209505289946,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +2868,2,76.0,0.0,7,111,267.0,527.0,0.0,0,75,0.0,0.0,455.2885450803403,794.0,0.0,1000.5116332642688,31,0,0,0,0,0,0,0,0,0,,2,,5,102873,2,1,0,0,1,,215.0,570.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1764.20820397735,267.0,43481.264666099756,0,5,2,3,70.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018260738414516343,43481.264666099756,10,5,10,10_0,10_2,10_0_0 +2869,2,63.0,0.0,9,211,1500.0,0.0,0.0,0,75,0.0,0.0,2557.8008150580918,2421.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,102874,1,2,1,0,1,,240.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,994.470131453377,1500.0,17741.85234888686,0,5,1,2,90.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13645700304522576,17741.85234888686,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +2870,2,51.0,0.0,2,111,268.0,600.0,0.0,0,67,0.0,0.0,456.9937456237124,868.0,0.0,1139.1024287638734,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,102875,2,2,0,1,1,,0.0,515.0,12,1.0,0.0,3.0,1.0,1.0,1,1,479.065411282952,268.0,20196.683874323186,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.04297735239117752,20196.683874323186,5,3,5,5_0,5_4,5_0_1 +2871,2,83.0,0.0,2,111,585.0,1582.0,0.0,78,75,0.0,331.081819252556,997.5423178726558,2417.0,0.0,3003.433403840746,70,0,0,0,0,0,0,0,0,0,,1,,2,102876,2,2,2,0,1,,260.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,217.188765128699,585.0,39979.910827733176,5,5,0,1,120.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06045536245477018,26653.27388515545,7,4,7,7_1,7_2,7_0_1 +2872,2,40.0,0.0,6,111,700.0,1000.0,0.0,52,64,0.0,0.0,1193.6403803604428,1700.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,4,102877,2,2,2,0,1,,960.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,544.720950964076,700.0,42783.769632216725,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039734694128492086,17826.570680090303,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +2873,2,55.0,0.0,9,111,657.0,0.0,0.0,0,37,0.0,0.0,1120.3167569954442,657.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,2007.0,6,102878,2,1,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1212.73231075059,657.0,57549.57103504718,0,1,1,2,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01141624495515167,57549.57103504718,10,5,10,10_0,10_4,10_0_0 +2874,2,56.0,0.0,6,400,1960.0,0.0,0.0,74,34,0.0,0.0,3342.19306500924,2035.0,103.91919190473907,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,4,102879,2,2,2,0,1,,214.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,250.099319294783,1960.0,131002.39142225128,5,1,0,1,140.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015534067568589034,65501.19571112564,10,5,10,10_1,10_0,10_0_0 +2875,2,84.0,0.0,5,111,840.0,,,77,72,0.0,0.0,,1008.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,3,102880,2,2,0,0,2,,1160.0,,41,0.0,6.0,3.0,2.0,1.5,2,2,64.00604498784894,840.0,21349.9127692306,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04721330765588538,14233.275179487066,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +2876,2,88.0,0.0,2,111,500.0,1880.0,0.0,0,78,0.0,0.0,852.6002716860306,2380.0,0.0,3569.1876101268035,70,0,0,0,0,0,0,0,0,0,,1,,2,102881,2,2,4,0,1,,184.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,592.386627460682,500.0,18668.525978702466,0,5,0,1,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12748730149960233,18668.525978702466,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +2877,2,37.0,0.0,9,112,860.0,1500.0,0.0,37,37,0.0,0.0,1466.4724672999725,2360.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,102882,2,1,1,0,1,,600.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,197.035215087436,860.0,106308.5148228413,1,1,1,2,110.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022199538803950383,44295.21450951721,10,5,10,10_1,10_0,10_0_0 +2878,2,46.0,0.0,6,120,750.0,,,67,63,0.0,0.0,,995.0,339.46936022214766,,71,0,0,0,0,0,0,0,0,1,10.0,1,,4,102883,2,1,0,0,2,,600.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,78.99554802234451,750.0,36721.6344277365,1,1,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027095743844355112,14123.705549129425,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +2880,2,74.0,0.0,1,400,500.0,0.0,0.0,0,71,0.0,0.0,852.6002716860306,1486.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,102885,1,1,1,0,2,,300.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1179.70803644455,500.0,15810.904990350813,0,5,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0939857649455794,15810.904990350813,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2881,2,54.0,0.0,9,111,2500.0,0.0,0.0,42,31,0.0,0.0,4263.001358430153,3157.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,102886,2,1,1,0,1,,122.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,1282.57451347817,2500.0,267324.3949070057,1,1,0,1,250.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011809621793395352,133662.19745350286,10,5,10,10_1,10_2,10_0_0 +2882,2,42.0,0.0,9,112,0.0,0.0,0.0,0,67,0.0,0.0,0.0,511.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,102887,1,2,0,0,1,,491.0,421.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1126.16035327672,0.0,18415.107297977338,0,1,2,3,45.0,9,3,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027748955883418976,18415.107297977338,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +2883,1,39.0,377.0,5,111,480.0,0.0,0.0,0,85,911.2459832956238,0.0,818.4962608185893,1344.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,102888,2,2,0,1,1,,0.0,426.0,31,2.0,0.0,3.0,3.0,2.0,3,3,241.061193969488,480.0,16225.750186972487,0,7,2,3,60.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08283130114249422,8112.875093486244,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +2884,1,45.0,468.0,7,111,374.0,,,0,81,0.0,0.0,,574.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,5,102889,1,2,0,0,2,,425.0,534.0,32,1.0,0.0,4.0,4.0,2.1,2,1,121.56037229613749,374.0,17785.14953963517,0,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03227411716279415,8469.1188283977,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2885,2,46.0,0.0,6,111,1000.0,0.0,0.0,54,64,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,4,102890,2,2,0,0,2,,0.0,961.0,43,2.0,0.0,3.0,5.0,2.8,4,2,905.504591057788,1000.0,77429.4172344238,1,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012914988071941951,27653.363298008502,7,4,7,7_0,7_4,7_0_0 +2886,2,31.0,0.0,9,112,1600.0,0.0,0.0,48,64,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,102891,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,246.293480108087,1600.0,42567.60032084812,1,1,1,2,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037587272666069836,20270.285867070532,5,3,5,5_1,5_0,5_0_0 +2887,2,54.0,0.0,2,111,1200.0,,,52,63,0.0,0.0,,1476.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,102892,1,1,0,0,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,86.27832232575926,1200.0,66061.66055238096,1,1,0,1,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022342762619926345,31457.933596371884,8,4,8,8_1,8_2,8_0_1 +2888,2,63.0,0.0,1,112,1000.0,1620.0,0.0,77,78,0.0,0.0,1705.2005433720612,2620.0,0.0,3075.576557662458,50,0,0,0,0,0,0,0,0,0,,1,,1,102893,2,2,2,0,1,,310.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,756.319100948257,1000.0,41261.674368182335,5,5,0,1,100.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06349718086138385,27507.78291212156,7,4,7,7_1,7_2,7_1_0 +2889,1,33.0,225.0,2,111,0.0,0.0,750.0,0,47,0.0,0.0,472.7387178110578,750.0,0.0,897.5491106735105,50,2,2,1,2,1,2,2,2,0,,2,,2,102894,1,3,0,0,1,,0.0,260.0,32,1.0,0.0,2.0,2.0,1.3,1,1,2603.2584962802,0.0,5715.130894324655,0,4,2,3,45.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.1312305901418249,4396.254534095889,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +2890,1,36.0,271.0,2,111,300.0,0.0,0.0,0,64,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102895,1,3,0,1,1,1012.0,0.0,368.0,32,1.0,0.0,4.0,3.0,1.6,1,1,316.526111809849,300.0,7606.03831927871,0,4,2,3,78.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.039442346647084646,4753.773949549193,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2892,1,43.0,252.0,2,111,116.0,0.0,0.0,0,85,0.0,0.0,197.8032630311591,116.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,102897,2,2,0,1,1,619.0,0.0,228.0,11,0.0,2.0,3.0,1.0,1.0,1,1,401.084044031682,116.0,11348.911116651743,0,6,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010221244911311224,11348.911116651743,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +2893,1,57.0,243.0,7,112,540.0,,,0,55,0.0,0.0,,666.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,2,,5,102898,2,2,0,0,2,,240.0,500.0,22,1.0,6.0,3.0,2.0,1.3,1,1,93.51175401094162,540.0,7414.0,0,4,2,3,65.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0898300512543836,5703.076923076923,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +2894,2,56.0,0.0,1,300,300.0,0.0,0.0,0,62,0.0,0.0,511.56016301161833,358.0,80.36417507299822,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,102899,1,1,2,0,2,,348.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1287.54431098718,300.0,6810.777085876654,0,4,0,1,45.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.052563752342207185,6810.777085876654,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +2895,0,91.0,0.0,1,300,650.0,0.0,0.0,0,78,2636.7071275915036,0.0,1108.3803531918397,3250.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102900,2,3,4,0,2,,250.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2362.93873381539,650.0,9890.786620126079,0,5,0,1,100.0,0,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.32858862745929623,9890.786620126079,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +2896,2,54.0,0.0,1,212,420.0,0.0,0.0,0,43,1898.4291318658827,0.0,716.1842282162656,2379.0,220.30868683804684,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,,1,102901,2,3,4,0,1,,380.0,,32,1.0,0.0,3.0,3.0,1.6,2,1,964.771766345079,420.0,28600.00181301068,0,1,1,2,136.0,2,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08318181290875822,17875.001133131675,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +2897,2,24.0,0.0,1,111,0.0,0.0,0.0,62,55,0.0,0.0,0.0,573.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,102902,2,1,1,0,1,,120.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,139.7721544504,0.0,33897.270024405756,1,4,1,2,80.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016904016151962818,22598.180016270504,6,3,6,6_1,6_3,6_1_0 +2898,2,80.0,0.0,2,111,402.0,,,0,75,0.0,0.0,,522.0,166.2707070475825,,41,0,0,0,0,0,0,0,0,0,,2,,2,102903,2,1,0,0,2,,330.0,436.0,11,0.0,4.0,4.0,1.0,1.0,1,1,88.8132685781497,402.0,52897.67045204732,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009868109418413847,52897.67045204732,10,5,10,10_0,10_3,10_0_1 +2899,1,59.0,280.0,1,111,370.0,0.0,0.0,0,85,0.0,662.163638505112,630.9242010476627,870.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,102904,2,3,2,0,1,,0.0,347.0,11,0.0,1.0,4.0,1.0,1.0,1,1,173.866918903502,370.0,4839.267902296582,0,7,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,1,1,0.17977925950062038,4839.267902296582,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +2900,1,54.0,387.0,2,111,330.0,0.0,0.0,0,21,0.0,0.0,562.7161793127802,330.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,2,,2,102905,1,1,0,1,1,,0.0,640.0,32,1.0,0.0,4.0,2.0,1.5,2,1,569.949182699267,330.0,10452.613404217387,0,1,2,3,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0315710518736733,6968.408936144925,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2901,2,57.0,0.0,5,120,1100.0,0.0,0.0,52,37,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,102906,2,1,2,0,1,,350.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1930.54908971582,1100.0,85423.51904491226,1,1,0,1,160.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012877015748106374,56949.01269660817,10,5,10,10_1,10_1,10_0_0 +2902,2,48.0,0.0,1,112,360.0,0.0,0.0,68,63,0.0,463.51454695357836,613.872195613942,860.0,207.83838380947813,0.0,50,2,2,2,2,1,2,2,2,2,30.0,1,,1,102907,2,2,5,0,1,,0.0,510.0,43,2.0,3.0,2.0,2.0,1.5,2,2,674.412675103432,360.0,30633.215360991875,1,1,2,3,60.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.02807410158762237,20422.143573994585,5,3,5,5_1,5_0,5_1_0 +2903,2,61.0,0.0,7,111,488.0,584.0,0.0,0,78,0.0,0.0,832.1378651655658,1072.0,0.0,1108.7263639968369,71,0,0,0,0,0,0,0,0,0,,2,,5,102908,2,1,0,0,1,,240.0,417.0,11,0.0,2.0,4.0,1.0,1.0,1,1,412.8315315808,488.0,22055.808330692205,0,5,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048603976962759365,22055.808330692205,6,3,6,6_0,6_3,6_0_0 +2904,2,61.0,0.0,2,111,314.0,0.0,0.0,0,52,0.0,0.0,535.4329706188272,314.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,102909,1,1,0,1,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,989.110635289331,314.0,34140.752284938506,0,1,1,2,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009197219715000945,34140.752284938506,9,5,9,9_0,9_4,9_0_1 +2905,2,42.0,0.0,7,112,700.0,0.0,0.0,52,63,949.2145659329414,1059.4618216081792,1193.6403803604428,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,102910,2,1,1,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1143.19789852054,700.0,38269.126007896266,1,1,1,2,130.0,9,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0627137395169358,18223.39333709346,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +2906,2,57.0,0.0,1,111,348.0,1800.0,0.0,63,56,0.0,0.0,593.4097890934773,2148.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,0,,1,,1,102911,2,1,2,0,1,,300.0,,43,3.0,6.0,6.0,3.0,2.0,3,3,534.239324469671,348.0,62893.057077417965,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03415321340407937,31446.528538708983,8,4,8,8_1,8_3,8_1_0 +2907,2,68.0,0.0,2,300,550.0,0.0,0.0,71,71,105.46828510366015,0.0,937.8602988546337,4301.0,99.7624242285495,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,102912,2,2,2,0,1,,200.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,739.316313714536,550.0,32437.626074654843,5,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13259293359203583,21625.084049769896,6,3,6,6_1,6_0,6_0_1 +2908,2,44.0,0.0,8,112,1500.0,0.0,0.0,62,47,0.0,0.0,2557.8008150580918,1585.0,117.77508415870429,0.0,42,0,0,0,0,0,0,0,0,2,14.0,1,2002.0,6,102913,2,1,1,0,2,,650.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,712.572797823597,1500.0,57636.092899433424,1,1,1,2,89.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027500129177138948,19212.030966477807,5,3,5,5_1,5_0,5_0_0 +2909,2,45.0,0.0,7,112,1764.0,,,77,21,0.0,0.0,,1932.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,5,102914,2,1,0,0,2,,228.0,,42,1.0,4.0,6.0,3.0,2.0,3,3,91.35803752365557,1764.0,4976.812858445151,7,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3882002508335411,2488.4064292225753,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +2910,2,79.0,0.0,7,120,500.0,0.0,0.0,0,77,0.0,264.8654554020448,852.6002716860306,808.0,149.64363634282427,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,102915,2,1,0,0,1,,180.0,398.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1511.30007811929,500.0,17826.9554916769,0,5,2,3,50.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.045324620930211064,17826.9554916769,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +2911,2,90.0,0.0,5,111,320.0,1500.0,0.0,0,77,0.0,0.0,545.6641738790596,1820.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,3,102916,2,2,2,0,1,,240.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,1207.04853647606,320.0,59446.512781899175,0,5,0,1,130.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030615757171111483,39631.008521266114,9,5,9,9_1,9_2,9_0_0 +2912,2,44.0,0.0,5,111,670.0,,,0,62,0.0,0.0,,750.0,110.84713803172167,,50,0,0,0,0,0,0,0,0,2,45.0,2,,3,102917,2,1,0,0,1,,320.0,250.0,12,1.0,1.0,2.0,1.0,1.0,1,1,167.89085117575388,670.0,25616.00370080748,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029278571660120354,25616.00370080748,7,4,7,7_0,7_2,7_0_0 +2913,1,29.0,150.0,1,111,200.0,680.0,0.0,0,52,0.0,0.0,341.04010867441224,880.0,0.0,1290.9827525990565,43,0,0,0,0,0,0,0,0,1,5.0,1,,1,102918,1,2,1,0,1,,260.0,281.0,12,1.0,0.0,2.0,1.0,1.0,1,1,259.134303942046,200.0,17744.48123069394,0,1,2,3,50.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04959288403866094,17744.48123069394,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +2914,2,53.0,0.0,9,112,2000.0,0.0,0.0,54,64,0.0,0.0,3410.4010867441225,2070.0,96.99124577775646,0.0,44,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102919,2,2,1,0,1,,130.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,1458.30653660362,2000.0,51075.271906505215,1,1,1,2,148.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04052841860125964,25537.635953252608,7,4,7,7_1,7_0,7_0_0 +2915,1,58.0,140.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,904.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,102920,2,1,0,1,1,585.0,427.0,310.0,32,2.0,4.0,4.0,2.0,1.5,2,2,320.516521267339,0.0,22131.887476209762,0,1,2,3,71.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04084604175634532,14754.591650806507,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +2916,1,35.0,446.0,9,112,1611.0,0.0,0.0,64,85,0.0,0.0,2747.0780753723907,1611.0,0.0,0.0,43,1,2,2,1,1,1,2,2,0,,1,2005.0,6,102921,1,3,2,0,1,,627.0,889.0,42,1.0,0.0,4.0,5.0,2.4,2,2,562.124130144843,1611.0,29128.1902364076,4,7,2,3,75.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.05530724658569401,12136.745931836502,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +2917,2,43.0,0.0,1,112,1253.0,0.0,0.0,43,45,506.24776849756876,0.0,2136.6162808451927,1733.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,102922,2,1,1,0,1,,343.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,1199.87036367534,1253.0,49482.40577452258,1,1,0,1,140.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035022549386478787,21514.08946718373,6,3,6,6_1,6_0,6_1_0 +2918,0,71.0,0.0,1,111,2000.0,200.0,0.0,0,77,0.0,0.0,3410.4010867441225,2200.0,0.0,379.7008095879578,41,0,0,0,0,0,0,0,0,0,,2,,1,102923,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,575.41808475356,2000.0,18095.422606615106,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12157770767927523,18095.422606615106,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +2919,2,29.0,0.0,1,111,0.0,712.0,0.0,56,63,0.0,0.0,0.0,2343.0,0.0,1351.7348821331298,43,0,0,0,0,0,0,0,0,0,,1,,1,102924,2,1,1,0,1,,659.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,194.791835346488,0.0,34456.73079080595,1,1,1,2,70.0,9,7,3,0,1,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0679983256166943,16407.96704324093,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +2920,2,67.0,0.0,6,120,600.0,,,74,75,0.0,0.0,,642.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,0,,1,,4,102925,2,3,0,0,2,,447.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,138.29958241486528,600.0,52243.3219745468,5,5,0,1,155.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012288651941252615,34828.88131636453,9,5,9,9_1,9_2,9_0_0 +2921,2,56.0,0.0,1,300,850.0,0.0,0.0,0,78,0.0,2118.9236432163584,1449.420461866252,2549.0,137.1733333142556,0.0,71,2,1,1,2,1,2,2,2,0,,1,,1,102926,2,2,3,0,1,,750.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,1318.14736310701,850.0,18680.698881344346,0,7,0,1,290.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.13645099769503713,12453.799254229563,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +2922,0,78.0,0.0,2,120,0.0,0.0,2300.0,0,78,0.0,0.0,1449.7320679539107,2300.0,0.0,2752.483939398766,70,0,0,0,0,0,0,0,0,0,,1,,2,102927,2,3,2,0,1,,180.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,962.827282350894,0.0,19578.042078271,0,5,0,1,150.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11747855024546563,19578.042078271,5,3,5,5_1,5_0,5_0_1 +2923,1,39.0,397.0,5,111,823.0,1500.0,0.0,0,67,0.0,0.0,1403.3800471952063,2323.0,0.0,2847.7560719096837,71,2,2,1,1,1,2,2,2,0,,1,,3,102928,1,3,3,0,2,,460.0,600.0,32,2.0,0.0,4.0,4.0,2.3,3,3,361.897154197792,823.0,19934.325411398942,0,4,2,3,87.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.11653266173088811,8667.098004956062,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2924,2,58.0,0.0,2,111,198.0,0.0,0.0,0,62,0.0,0.0,337.6297075876681,213.0,20.783838380947813,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,102929,2,1,0,1,1,325.0,0.0,283.0,12,1.0,1.0,3.0,1.0,1.0,1,1,300.217559089119,198.0,18202.177503460127,0,1,2,3,72.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011701896652722454,18202.177503460127,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +2925,2,80.0,0.0,1,112,442.0,0.0,0.0,0,71,6074.973221970825,0.0,753.6986401704511,6262.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102930,1,1,4,0,2,,344.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,692.66542344547,442.0,36237.21465081231,0,5,0,1,137.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17280577606037467,36237.21465081231,9,5,9,9_1,9_0,9_1_0 +2926,2,58.0,0.0,8,111,520.0,,,78,52,0.0,0.0,,1020.0,692.7946126982605,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,102931,2,1,0,0,2,,150.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,131.74452873508048,520.0,29598.599184713807,5,1,0,1,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03446109032507116,19732.399456475872,5,3,5,5_1,5_2,5_0_0 +2927,2,84.0,0.0,2,111,259.0,0.0,0.0,0,75,0.0,0.0,441.64694073336386,259.0,0.0,0.0,50,1,2,2,2,1,2,2,2,0,,2,,2,102932,2,2,0,1,1,953.0,0.0,726.0,11,0.0,2.0,5.0,1.0,1.0,1,1,1232.14042982205,259.0,30130.56443334149,0,5,2,3,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008595922607855268,30130.56443334149,8,4,8,8_0,8_4,8_0_1 +2928,2,70.0,0.0,7,111,200.0,,,0,74,0.0,0.0,,223.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,0,,2,,5,102933,2,1,0,0,2,,96.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,131.5259755638893,200.0,60296.654743850646,0,5,1,2,24.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0036983809623823724,60296.654743850646,10,5,10,10_0,10_3,10_0_0 +2929,1,65.0,209.0,2,120,200.0,420.0,0.0,0,86,0.0,0.0,341.04010867441224,620.0,0.0,797.3717001347114,20,0,0,0,0,0,0,0,0,0,,2,,2,102934,2,1,0,0,1,,90.0,107.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1397.35875497637,200.0,11391.386929136013,0,6,2,3,70.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05442708634663367,11391.386929136013,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +2930,0,49.0,0.0,1,221,0.0,,,0,69,0.0,0.0,,330.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,1,102935,2,2,0,0,2,,0.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,114.89857589291218,0.0,7618.0,0,4,5,0,60.0,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043318456287739567,5078.666666666667,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +2931,2,50.0,0.0,2,111,800.0,1000.0,0.0,22,53,0.0,145.67600047112464,1364.160434697649,1910.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,102936,2,1,2,0,2,,400.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,250.965960556814,800.0,33541.28949182375,1,1,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05694473972044499,16770.644745911875,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +2932,1,26.0,280.0,5,111,170.0,,,0,52,0.0,0.0,,239.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,102937,1,3,0,0,2,,64.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,107.34299542100213,170.0,20984.0,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011389630194433854,16141.538461538461,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +2933,1,79.0,156.0,2,111,180.0,170.0,0.0,0,86,0.0,0.0,306.936097806971,350.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,0,,2,,2,102938,2,1,0,1,1,578.0,166.0,393.0,11,0.0,3.0,3.0,1.0,1.0,1,1,401.781762140196,180.0,10511.51150780642,0,5,2,3,57.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03329682888517708,10511.51150780642,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +2934,2,42.0,0.0,9,111,412.0,781.0,0.0,33,37,0.0,0.0,702.5426238692892,1193.0,0.0,1482.7316614409751,12,0,0,0,0,0,0,0,0,2,30.0,2,2004.0,6,102939,2,1,0,0,1,,268.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1225.01624283717,412.0,67216.36897753204,1,1,1,2,97.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01774865286755933,32007.794751205733,8,4,8,8_0,8_3,8_0_0 +2935,2,42.0,0.0,2,111,278.0,0.0,0.0,55,38,0.0,0.0,474.045751057433,278.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,102940,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,924.730942839548,278.0,73012.75555519052,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0038075538703625437,48675.170370127016,10,5,10,10_0,10_4,10_0_1 +2936,2,86.0,0.0,5,111,670.0,0.0,0.0,86,72,1371.087706347582,1949.4097517590496,1142.484364059281,3562.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,102941,2,1,2,0,1,,550.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1582.06698979682,670.0,14785.90623173545,5,5,0,1,200.0,6,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2409050851651398,9857.270821156966,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +2937,1,55.0,78.0,2,111,700.0,1350.0,0.0,52,46,0.0,0.0,1193.6403803604428,2050.0,0.0,2562.980464718715,71,0,0,0,0,0,0,0,0,3,70.0,1,,2,102942,2,1,2,0,1,,600.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,473.355134106607,700.0,27754.110844752253,4,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07386293192626685,13877.055422376126,3,2,3_1,3_1_1,3_4_1,3_0_1_1 +2938,2,84.0,0.0,7,111,2000.0,0.0,0.0,75,75,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,102943,2,2,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,734.113313909039,2000.0,79201.0228102488,5,5,0,1,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02525219913878682,52800.681873499205,10,5,10,10_0,10_4,10_0_0 +2939,2,72.0,0.0,7,211,360.0,,,0,74,0.0,0.0,,408.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,0,,1,,5,102944,2,1,0,0,2,,360.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,99.60851437188781,360.0,32751.21287087538,0,5,0,1,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012457553911318548,32751.21287087538,8,4,8,8_1,8_2,8_0_0 +2940,2,85.0,0.0,2,112,0.0,0.0,0.0,78,75,2636.7071275915036,0.0,0.0,2891.0,290.9737373332694,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,102945,2,1,3,0,1,,160.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,340.848774492321,0.0,34364.90860967758,5,5,0,1,90.0,7,1,3,1,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0841265150108928,22909.939073118385,6,3,6,6_1,6_1,6_0_1 +2941,2,77.0,0.0,6,221,2500.0,0.0,0.0,0,74,0.0,66.2163638505112,4263.001358430153,2550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,102946,2,1,2,0,1,,340.0,,21,2.0,1.0,3.0,3.0,2.0,3,2,2110.367416453,2500.0,25086.63534403337,0,5,0,1,88.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10164774849356172,12543.317672016685,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +2942,2,60.0,0.0,6,211,164.0,1266.0,0.0,0,67,0.0,0.0,279.65288911301803,1430.0,0.0,2403.506124691773,71,2,2,2,2,2,2,2,1,1,10.0,2,,4,102947,2,2,0,1,1,,93.0,297.0,12,1.0,2.0,3.0,1.0,1.0,1,1,380.074465663871,164.0,18459.709585624736,0,1,2,3,80.0,3,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.07746600743456952,18459.709585624736,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +2943,1,53.0,30.0,6,120,550.0,0.0,0.0,85,52,1687.4925616585624,0.0,937.8602988546337,2270.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,4,102948,1,1,4,0,1,,200.0,,42,1.0,0.0,5.0,4.0,2.5,4,3,837.335914949738,550.0,36638.0,6,1,1,2,106.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06195753043288389,14655.2,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +2944,2,60.0,0.0,6,212,1080.0,0.0,0.0,0,72,0.0,516.4876380339873,1841.6165868418261,1515.0,62.351515142843446,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,102949,2,1,3,0,1,,294.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,768.056915438857,1080.0,9355.664551683898,0,7,0,1,120.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.16193398038489096,9355.664551683898,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +2945,1,36.0,313.0,2,111,250.0,380.0,0.0,0,81,0.0,0.0,426.3001358430153,630.0,0.0,721.4315382171199,20,0,0,0,0,0,0,0,0,0,,2,,2,102950,1,1,0,1,1,515.0,0.0,264.0,32,1.0,0.0,3.0,4.0,1.9,1,1,299.998247042447,250.0,13374.028938906753,0,4,2,3,61.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.047106223777282984,7038.962599424607,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2946,2,59.0,0.0,2,111,2200.0,0.0,0.0,43,64,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102951,2,1,1,0,1,,250.0,897.0,43,3.0,0.0,6.0,6.0,3.3,5,5,326.186296042009,2200.0,63988.0,1,1,2,3,90.0,5,4,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03438144652122273,19390.303030303032,5,3,5,5_1,5_2,5_0_1 +2947,1,46.0,25.0,2,111,320.0,480.0,0.0,63,68,0.0,0.0,545.6641738790596,800.0,0.0,911.2819430110987,71,2,2,2,1,1,2,2,2,3,15.0,2,,2,102952,1,3,0,1,1,21.0,0.0,134.0,43,2.0,0.0,2.0,2.0,1.5,2,2,803.034051819857,320.0,22631.831561476436,4,1,2,3,25.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03534844264932353,15087.887707650958,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +2948,1,47.0,317.0,8,111,780.0,1220.0,0.0,52,63,0.0,0.0,1330.0564238302077,2000.0,0.0,2316.1749384865425,71,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,102953,2,1,3,0,1,,700.0,459.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,324.900502014182,780.0,33708.85311740331,1,1,2,3,89.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05933159437475592,12964.943506693584,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +2949,2,84.0,0.0,2,111,0.0,0.0,2163.0,0,75,0.0,0.0,1363.3784621670907,2163.0,0.0,2588.5316351824044,60,0,0,0,0,0,0,0,0,0,,1,,2,102954,2,1,2,0,2,,0.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,543.420597639825,0.0,46591.81050304336,0,5,0,1,135.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046424467661730244,46591.81050304336,10,5,10,10_1,10_3,10_0_1 +2950,2,70.0,0.0,2,111,254.0,1608.0,0.0,0,75,0.0,0.0,433.12093801650354,1862.0,0.0,3052.794509087181,50,0,0,0,0,0,0,0,0,0,,2,,2,102955,2,1,0,0,1,,383.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1777.47303703956,254.0,4983.1516352769895,0,5,0,1,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.37365910899006793,4983.1516352769895,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +2951,2,66.0,0.0,7,111,612.0,,,0,75,0.0,0.0,,864.0,349.1684847999233,,33,0,0,0,0,0,0,0,0,0,,1,,5,102956,2,1,0,0,2,,700.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,102.52654553987699,612.0,32131.250362134393,0,5,1,2,145.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026889709870058315,32131.250362134393,8,4,8,8_1,8_3,8_0_0 +2952,2,73.0,0.0,5,111,450.0,600.0,0.0,86,74,0.0,0.0,767.3402445174275,1050.0,0.0,1139.1024287638734,70,2,2,2,2,1,2,2,2,0,,1,,3,102957,2,1,2,0,2,,300.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,841.09068606528,450.0,47995.62239296595,5,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0218769951851668,31997.081595310636,8,4,8,8_1,8_4,8_0_0 +2953,0,79.0,0.0,1,300,481.0,0.0,0.0,71,71,2847.643697798824,158.91927324122688,820.2014613619614,3441.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,102958,2,3,3,0,1,,238.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1311.96096628845,481.0,22415.941387411403,5,5,0,1,116.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15350682536725563,14943.960924940935,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +2954,2,33.0,0.0,1,111,554.0,0.0,0.0,0,34,0.0,0.0,944.6811010281219,554.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,1,102959,2,1,0,0,1,,0.0,620.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1167.12175681293,554.0,28539.702010658522,0,1,3,4,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01941155516596149,28539.702010658522,8,4,8,8_0,8_4,8_1_0 +2955,1,56.0,250.0,2,111,150.0,0.0,0.0,0,78,0.0,0.0,255.78008150580916,215.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,102960,1,1,0,1,2,682.0,0.0,401.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1418.15209885554,150.0,6224.778144896385,0,7,2,3,55.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03453938357245322,6224.778144896385,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2956,2,79.0,0.0,2,120,1700.0,0.0,0.0,0,72,0.0,0.0,2898.840923732504,1850.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,102961,2,2,4,0,1,,158.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,2056.8410806081,1700.0,11592.970679218482,0,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15957945993224182,11592.970679218482,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +2957,2,33.0,0.0,7,111,0.0,0.0,0.0,33,37,0.0,0.0,0.0,969.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,102962,2,1,0,0,1,,0.0,940.0,43,2.0,0.0,4.0,4.0,2.1,2,2,2114.76905216309,0.0,44527.3525450749,1,1,2,3,93.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021761904640952644,21203.501211940427,5,3,5,5_0,5_3,5_0_0 +2958,1,43.0,152.0,7,111,527.0,1574.0,0.0,54,43,0.0,0.0,898.6406863570762,2101.0,0.0,2988.245371457228,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,102963,2,1,2,0,1,,271.0,800.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,3,2198.02166327812,527.0,55522.59916314836,1,1,2,3,109.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037840447523474055,17910.51585908012,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +2959,2,41.0,0.0,7,111,490.0,800.0,0.0,56,46,0.0,0.0,835.54826625231,1290.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,0,,1,,5,102964,2,1,1,0,2,,420.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,1143.33249242559,490.0,55823.3313089117,1,1,1,2,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02310861730665047,24271.013612570307,7,4,7,7_1,7_3,7_0_0 +2960,2,43.0,0.0,1,111,520.0,1400.0,0.0,47,47,0.0,0.0,886.7042825534718,1920.0,0.0,2657.9056671157045,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,102965,2,1,2,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,854.221317902361,520.0,87027.87910957247,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02206189579298633,37838.20830850978,9,5,9,9_1,9_4,9_1_0 +2961,1,41.0,466.0,2,111,960.0,360.0,0.0,0,68,0.0,0.0,1636.9925216371787,1320.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,102966,2,1,0,1,2,1050.0,0.0,407.0,32,1.0,1.0,4.0,6.0,2.5,1,1,235.69189950091,960.0,27269.34153588183,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04840600930033839,10907.736614352732,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +2962,2,31.0,0.0,9,112,270.0,528.0,0.0,55,47,0.0,0.0,460.40414671045653,798.0,0.0,1002.4101373122086,31,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,102967,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1527.57218021874,270.0,32332.490759507433,1,1,1,2,110.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024681055534372852,15396.424171194016,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +2963,2,36.0,0.0,2,111,0.0,0.0,910.0,77,56,0.0,0.0,573.5896442774168,910.0,0.0,1089.0262542838595,50,0,0,0,0,0,0,0,0,0,,2,,2,102968,2,1,0,1,1,980.0,450.0,256.0,42,1.0,0.0,4.0,2.0,1.5,2,2,217.246193703888,0.0,13058.776637870522,6,4,2,3,74.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06968493490890985,8705.85109191368,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +2964,2,86.0,0.0,2,111,2000.0,1600.0,0.0,86,78,0.0,0.0,3410.4010867441225,3600.0,0.0,3037.6064767036623,70,0,0,0,0,0,0,0,0,0,,1,,2,102969,2,2,2,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,705.060923274378,2000.0,35982.14490146565,6,5,0,1,77.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10004962210725138,23988.096600977096,6,3,6,6_1,6_2,6_0_1 +2965,2,68.0,0.0,6,112,1800.0,0.0,0.0,77,74,0.0,0.0,3069.36097806971,1875.0,103.91919190473907,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,102970,2,1,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,920.437987321152,1800.0,32180.100464028466,5,5,0,1,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05826582182662577,21453.40030935231,6,3,6,6_1,6_0,6_0_0 +2966,2,50.0,0.0,9,111,110.0,0.0,0.0,55,47,1582.0242765549024,0.0,187.57205977092673,3052.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,2004.0,6,102971,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,820.905410710999,110.0,63754.52365700896,1,1,1,2,110.0,5,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047871112902032845,25501.809462803583,7,4,7,7_1,7_2,7_0_0 +2968,2,43.0,0.0,9,112,1400.0,0.0,0.0,0,54,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,2007.0,6,102973,2,1,1,0,1,,700.0,,32,1.0,1.0,7.0,2.0,1.5,2,1,822.927710252318,1400.0,9361.194648069086,0,4,0,1,190.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.14955356155197297,6240.796432046057,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +2969,2,47.0,0.0,7,111,420.0,,,85,52,0.0,0.0,,596.0,243.8637036697877,,50,0,0,0,0,0,0,0,0,1,5.0,1,,5,102974,2,2,0,0,2,,100.0,,42,2.0,0.0,5.0,5.0,2.8,4,4,138.70748387057006,420.0,50687.92515820697,5,1,0,1,117.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011758224431948378,18102.830413645348,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2970,2,51.0,0.0,9,120,1200.0,0.0,0.0,0,33,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,2007.0,6,102975,2,1,0,0,1,,0.0,890.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1380.54068256017,1200.0,55528.6338036387,0,1,2,3,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021610472251909894,55528.6338036387,10,5,10,10_0,10_0,10_0_0 +2971,2,66.0,0.0,1,111,540.0,0.0,0.0,56,78,1265.6194212439218,79.45963662061344,920.8082934209131,1880.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,102976,2,1,2,0,1,,140.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1393.31090704328,540.0,22242.86939026781,1,5,0,1,110.0,8,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08452146919599227,14828.579593511873,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +2972,2,53.0,0.0,1,111,0.0,0.0,0.0,37,31,0.0,0.0,0.0,853.0,0.0,0.0,10,2,1,2,1,2,2,2,2,0,,1,,1,102977,2,1,1,0,1,,523.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,3,2,226.048297130951,0.0,437805.24522931624,1,1,1,2,295.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0019483549119042889,150967.32594114356,10,5,10,10_1,10_4,10_1_0 +2973,0,53.0,0.0,2,111,360.0,120.0,0.0,56,68,0.0,0.0,613.872195613942,480.0,0.0,227.8204857527747,70,0,0,0,0,0,0,0,0,0,,2,,2,102978,1,2,0,1,2,,0.0,,43,3.0,0.0,2.0,3.0,2.0,3,3,1118.45194007442,360.0,53160.03845214084,1,1,5,0,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009029338841282753,26580.01922607042,7,4,7,7_0,7_4,7_0_1 +2974,1,36.0,245.0,2,111,344.0,148.0,0.0,0,85,0.0,0.0,586.588986919989,492.0,0.0,280.9785990950888,10,2,2,2,2,2,2,2,1,0,,2,,2,102979,2,3,0,0,1,,144.0,273.0,11,0.0,1.0,3.0,1.0,1.0,1,1,326.033410884793,344.0,1193.0568553347052,0,7,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.41238604664986583,1193.0568553347052,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +2975,2,73.0,0.0,5,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,330.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,102980,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1110.32278911778,0.0,81593.36892882851,0,5,0,1,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004044446311413484,81593.36892882851,10,5,10,10_0,10_4,10_0_0 +2977,2,99.0,0.0,9,111,324.0,,,0,77,0.0,0.0,,462.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,102982,2,1,0,0,2,,200.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,145.9762827959925,324.0,22598.421747598877,0,5,0,1,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020443905559426438,15065.61449839925,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +2978,2,50.0,0.0,2,111,600.0,0.0,0.0,0,47,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,102983,2,2,0,1,1,564.0,0.0,373.0,32,2.0,1.0,4.0,3.0,2.0,3,3,773.668453051264,600.0,18824.145670039637,0,1,2,3,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03187395648743599,9412.072835019819,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +2979,1,40.0,250.0,2,211,400.0,1200.0,0.0,85,67,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,60,0,0,0,0,0,0,0,0,2,50.0,2,,2,102984,2,2,0,0,1,,320.0,115.0,42,1.0,0.0,3.0,5.0,2.4,2,2,2707.09145767842,400.0,24463.39576006697,6,1,2,3,68.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06540383909464333,10193.081566694571,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +2980,2,92.0,0.0,6,111,48.0,0.0,0.0,0,77,0.0,0.0,81.84962608185893,48.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,102985,1,2,0,0,1,,448.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,913.329292721512,48.0,70191.794189557,0,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0006838406191808295,70191.794189557,10,5,10,10_0,10_4,10_0_0 +2981,2,51.0,0.0,5,111,1560.0,0.0,0.0,56,21,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,42,2,1,2,2,1,2,2,2,0,,2,,3,102986,2,1,0,0,1,408.0,0.0,547.0,43,2.0,2.0,4.0,3.0,1.8,2,2,998.06030650175,1560.0,29426.54100453024,1,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05301336639463798,16348.078335850134,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +2982,2,60.0,0.0,2,111,340.0,510.0,0.0,56,67,0.0,0.0,579.7681847465008,850.0,0.0,968.2370644492923,42,2,2,1,2,1,2,2,2,2,20.0,2,,2,102987,2,1,0,0,1,,0.0,380.0,43,2.0,2.0,6.0,2.0,1.5,2,2,325.06428877299,340.0,31538.077824929722,1,1,2,3,76.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.026951547418914205,21025.385216619816,5,3,5,5_0,5_3,5_0_1 +2983,2,29.0,0.0,2,111,500.0,1550.0,0.0,52,52,0.0,0.0,852.6002716860306,2050.0,0.0,2942.681274306673,50,1,2,2,2,2,2,2,1,2,5.0,1,,2,102988,1,3,3,0,2,,350.0,591.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1652.74979228565,500.0,41947.259559035505,1,1,2,3,80.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04887089220011816,23304.03308835306,6,3,6,6_1,6_2,6_0_1 +2984,2,39.0,0.0,1,111,458.0,,,81,53,0.0,0.0,,578.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,2,25.0,2,,1,102989,2,2,0,0,2,,422.0,450.0,43,3.0,0.0,3.0,7.0,3.1999999999999993,3,3,85.98717824719385,458.0,40130.895696308115,4,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01440286816357238,12540.90490509629,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +2985,1,27.0,179.0,9,111,300.0,,,0,55,0.0,0.0,,348.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,102990,2,1,0,0,2,,265.0,375.0,32,1.0,0.0,3.0,2.0,1.3,1,1,93.49906059890981,300.0,17841.465045922883,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01950512466909351,13724.203881479141,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +2986,2,57.0,0.0,6,111,1100.0,0.0,0.0,75,52,0.0,0.0,1875.7205977092674,1220.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,102991,2,1,2,0,1,,400.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,843.302425550514,1100.0,45316.353988415955,5,1,1,2,108.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02692184813261596,30210.90265894397,8,4,8,8_1,8_2,8_0_0 +2987,1,55.0,220.0,9,111,1500.0,0.0,0.0,56,63,0.0,595.9472746546007,2557.8008150580918,1950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,2011.0,6,102992,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,3,924.203437857853,1500.0,25985.0,1,1,1,2,98.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07504329420819704,8382.25806451613,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +2988,1,44.0,357.0,6,111,360.0,,,0,56,0.0,0.0,,498.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,2,20.0,2,,4,102993,2,2,0,0,2,,580.0,503.0,32,1.0,2.0,4.0,2.0,1.3,1,1,112.1215773596662,360.0,18680.149967610985,0,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026659314880419532,14369.346128931527,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +2989,2,82.0,0.0,2,111,186.0,85.0,0.0,75,75,0.0,0.0,317.16730106720337,271.0,0.0,161.37284407488207,60,2,1,2,1,1,2,2,1,0,,2,,2,102994,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,463.552442491901,186.0,52510.44679983431,5,5,0,1,85.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.00516087781604736,35006.964533222876,9,5,9,9_0,9_3,9_0_1 +2990,1,36.0,402.0,1,111,210.0,300.0,0.0,67,62,0.0,0.0,358.0921141081328,510.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,,1,102995,2,1,0,1,1,720.0,0.0,500.0,43,2.0,0.0,4.0,5.0,2.4,2,2,449.21717595302,210.0,15976.405095338174,4,4,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.031922074894609125,6656.835456390906,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +2991,2,37.0,0.0,2,111,690.0,0.0,0.0,0,45,0.0,0.0,1176.5883749267223,690.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,102996,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1157.98280330207,690.0,5992.112529663397,0,4,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11515137550975871,5992.112529663397,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +2993,2,72.0,0.0,9,111,600.0,360.0,0.0,0,78,0.0,0.0,1023.1203260232367,960.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,102998,2,1,1,0,1,,700.0,453.0,11,0.0,3.0,3.0,1.0,1.0,1,1,225.527798308669,600.0,17827.72936334229,0,5,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0538486971859675,17827.72936334229,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +2994,1,40.0,577.0,5,211,900.0,,,0,85,0.0,0.0,,900.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,102999,1,1,0,0,2,,500.0,800.0,31,0.0,1.0,4.0,6.0,2.5,1,1,68.18874504644054,900.0,23961.27333808069,0,6,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03756060820731368,9584.509335232276,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +2995,2,38.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,573.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,103000,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1688.9124556072,0.0,20044.186345929087,0,1,1,2,63.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028586842594205603,20044.186345929087,5,3,5,5_0,5_3,5_0_1 +2996,2,62.0,0.0,1,111,525.0,680.0,0.0,0,43,0.0,0.0,895.2302852703322,1205.0,0.0,1290.9827525990565,33,0,0,0,0,0,0,0,0,3,50.0,2,,1,103001,2,1,0,0,1,,0.0,500.0,22,3.0,1.0,4.0,4.0,2.5,4,4,724.069915167979,525.0,77345.62671650814,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015579419951132321,30938.250686603256,8,4,8,8_0,8_4,8_1_0 +2997,2,90.0,0.0,2,111,480.0,0.0,0.0,0,74,1371.087706347582,0.0,818.4962608185893,1780.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103002,2,1,1,0,1,,180.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1381.12042630286,480.0,31808.44692117638,0,5,0,1,63.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05595997831679642,31808.44692117638,8,4,8,8_1,8_3,8_0_1 +2998,2,65.0,0.0,6,111,2160.0,0.0,0.0,77,72,0.0,0.0,3683.2331736836522,2160.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,103003,2,1,2,0,1,,700.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1896.76228240174,2160.0,56012.33375329549,5,5,0,1,180.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038562935254825306,37341.55583553033,9,5,9,9_1,9_3,9_0_0 +2999,2,55.0,0.0,1,112,512.0,0.0,0.0,0,43,0.0,0.0,873.0626782064953,4212.0,5126.680133967127,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,103004,2,1,1,0,1,,85.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1823.00780031348,512.0,28334.29300763819,0,1,0,1,90.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14865378849807737,28334.29300763819,8,4,8,8_1,8_0,8_1_0 +3000,0,45.0,0.0,2,111,576.0,,,0,85,0.0,0.0,,691.0,159.34276092059991,,50,0,0,0,0,0,0,0,0,0,,1,,2,103005,2,2,0,0,2,,232.0,,31,0.0,0.0,4.0,4.0,2.3,3,2,108.81399145094568,576.0,31284.43927891982,0,6,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022087658143376467,13601.930121269488,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3001,2,49.0,0.0,9,221,1100.0,0.0,0.0,67,69,0.0,0.0,1875.7205977092674,1220.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,103006,1,1,1,0,1,,349.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,2597.39225374573,1100.0,42763.65409606412,1,1,1,2,102.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02852889973479339,21381.82704803206,6,3,6,6_1,6_1,6_0_0 +3003,2,82.0,0.0,1,221,303.0,996.0,0.0,77,78,0.0,0.0,516.6757646417345,1299.0,0.0,1890.91003174803,71,0,0,0,0,0,0,0,0,0,,1,,1,103008,2,2,2,0,1,,337.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2081.10183254988,303.0,33140.94461004833,5,5,0,1,80.0,1,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039196227364205645,22093.963073365554,6,3,6,6_1,6_1,6_1_0 +3004,2,61.0,0.0,1,120,1100.0,0.0,0.0,77,77,0.0,0.0,1875.7205977092674,1300.0,277.1178450793042,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,103009,2,2,1,0,1,,350.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1468.15313234773,1100.0,27865.238504958586,6,5,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04665310866686702,18576.82566997239,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3005,2,78.0,0.0,2,111,276.0,0.0,0.0,0,78,0.0,0.0,470.6353499706889,276.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,103010,2,1,0,1,1,60.0,0.0,336.0,11,0.0,1.0,2.0,1.0,1.0,1,1,278.643244950271,276.0,17291.241857219302,0,5,2,3,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015961837922287038,17291.241857219302,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +3006,2,53.0,0.0,6,111,684.0,,,56,63,0.0,0.0,,936.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,103011,1,2,0,0,2,,527.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,118.00080644011675,684.0,50777.46390076298,1,1,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018433374337664305,20310.98556030519,5,3,5,5_1,5_2,5_0_0 +3007,2,31.0,0.0,2,111,561.0,810.0,0.0,43,46,0.0,0.0,956.6175048317264,1371.0,0.0,1537.788278831229,20,0,0,0,0,0,0,0,0,2,40.0,2,,2,103012,2,1,0,0,1,,288.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1754.52319050701,561.0,76111.99343998426,1,1,1,2,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018012929868681724,36243.80639999251,9,5,9,9_0,9_3,9_0_1 +3008,2,31.0,0.0,1,111,0.0,0.0,800.0,45,33,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,103013,1,2,0,0,2,,0.0,884.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1134.1507705894,0.0,52773.587412418485,1,1,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01515909831461916,35182.39160827899,9,5,9,9_0,9_4,9_1_0 +3009,2,58.0,0.0,2,112,1200.0,0.0,0.0,0,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,103014,2,1,2,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1731.37522579457,1200.0,38345.04393165393,0,1,1,2,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031294787460378864,38345.04393165393,9,5,9,9_1,9_0,9_0_1 +3010,2,58.0,0.0,1,111,1600.0,3600.0,0.0,77,34,0.0,0.0,2728.320869395298,5200.0,0.0,6834.61457258324,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,103015,1,1,3,0,2,,532.0,,42,1.0,0.0,9.0,5.0,3.0,5,3,385.164476360765,1600.0,73068.15016856689,5,1,0,1,370.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07116643829087906,24356.050056188964,7,4,7,7_1,7_3,7_1_0 +3011,2,75.0,0.0,1,112,1650.0,0.0,0.0,78,90,0.0,0.0,2813.5808965639008,1650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103016,2,1,2,0,1,,295.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,747.874792932233,1650.0,29789.34505779976,5,5,0,1,80.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05538893174047744,19859.56337186651,5,3,5,5_1,5_0,5_1_0 +3012,2,56.0,0.0,1,112,400.0,0.0,0.0,0,37,1898.4291318658827,0.0,682.0802173488245,2233.0,45.72444443808519,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,103017,2,1,2,0,1,,120.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,683.930954366802,400.0,5291.712672688995,0,4,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.4219805832475966,5291.712672688995,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3013,1,44.0,100.0,1,111,450.0,1000.0,0.0,35,37,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,103018,2,1,0,0,1,,600.0,789.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,5,3,1359.77630523727,450.0,36810.89435116181,6,1,2,3,117.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03939051266094098,11874.482048761876,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +3014,2,36.0,0.0,7,111,300.0,0.0,0.0,52,63,0.0,0.0,511.56016301161833,420.0,166.2707070475825,0.0,43,2,1,2,2,1,1,2,2,0,,2,,5,103019,1,3,0,1,1,,0.0,745.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1955.51970205952,300.0,48458.63711711535,1,4,2,3,80.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.008667185562502296,23075.541484340643,6,3,6,6_0,6_2,6_0_0 +3015,2,60.0,0.0,5,300,1400.0,950.0,0.0,78,43,0.0,0.0,2387.2807607208856,2350.0,0.0,1803.5788455427996,33,0,0,0,0,0,0,0,0,0,,1,,3,103020,2,1,3,0,1,,420.0,,42,1.0,8.0,5.0,2.0,1.5,2,2,811.218050316985,1400.0,107806.4257448038,5,1,1,2,100.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02179832958716998,71870.95049653586,10,5,10,10_1,10_0,10_0_0 +3016,2,62.0,0.0,1,111,0.0,0.0,0.0,85,22,0.0,0.0,0.0,2031.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,103021,2,1,0,0,1,,0.0,,42,1.0,3.0,5.0,4.0,2.5,4,3,1183.49593318618,0.0,105005.20166984823,6,1,2,3,160.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019341898950737336,42002.08066793929,9,5,9,9_0,9_4,9_1_0 +3017,2,66.0,0.0,1,111,260.0,,,78,72,0.0,0.0,,306.0,63.73710436823996,,70,0,0,0,0,0,0,0,0,0,,1,,1,103022,1,3,0,0,2,,400.0,,41,0.0,8.0,2.0,2.0,1.5,2,2,115.28344563792879,260.0,56141.31403639235,7,5,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0054505314891924745,37427.54269092823,9,5,9,9_1,9_2,9_1_0 +3018,0,35.0,0.0,8,112,0.0,0.0,0.0,0,22,0.0,1191.8945493092015,0.0,900.0,0.0,0.0,71,2,2,2,2,2,2,2,1,2,20.0,2,2000.0,6,103023,1,2,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,2057.0403704442,0.0,8611.439267786574,0,1,5,0,60.0,9,2,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.10451214622934105,6624.184052143519,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +3019,0,53.0,0.0,7,111,600.0,,,68,45,0.0,0.0,,724.0,171.8130639491686,,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,103024,2,1,0,0,2,,400.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,132.501585328731,600.0,37745.74264610681,4,1,5,0,35.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01918097113065214,25163.828430737874,7,4,7,7_1,7_2,7_0_0 +3020,0,65.0,0.0,7,111,1370.0,0.0,0.0,0,77,0.0,0.0,2336.124744419724,1370.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,103025,2,1,2,0,1,,185.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,803.02219219891,1370.0,64065.97160992806,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021384207022432735,64065.97160992806,10,5,10,10_1,10_4,10_0_0 +3021,2,30.0,0.0,1,221,3998.4,0.0,0.0,54,21,0.0,529.7309108040896,6818.07385261885,4548.0,207.83838380947813,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,103026,2,3,4,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,3130.7243160469,3998.4,24249.68011789561,1,1,0,1,60.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.18754886571240578,13472.044509942005,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +3022,2,80.0,0.0,2,111,210.0,,,0,77,0.0,0.0,,599.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,1,,2,103027,2,1,0,0,2,,111.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,68.5400703518378,210.0,15663.80236815283,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038241034068322306,15663.80236815283,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3023,0,46.0,0.0,7,300,480.0,,,0,85,0.0,158.91927324122688,,726.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,103028,1,2,0,0,2,,400.0,,31,0.0,0.0,5.0,3.0,1.8,2,2,65.39718207372526,480.0,18099.647426561743,0,7,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04011127857300549,10055.359681423191,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +3024,2,72.0,0.0,2,111,746.0,,,0,86,0.0,0.0,,1114.0,509.8968349459197,,71,0,0,0,0,0,0,0,0,0,,5,,2,103029,2,2,0,0,2,,328.0,,21,0.0,0.0,5.0,3.0,2.0,3,3,90.09337809447157,746.0,22350.147292449423,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049843071968315125,11175.073646224711,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +3025,2,62.0,0.0,1,112,370.0,1000.0,0.0,0,77,0.0,0.0,630.9242010476627,1370.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,1,103030,2,1,2,0,1,,450.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,64.4154805013548,370.0,23547.827053030585,0,5,1,2,100.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.058179465855372085,23547.827053030585,6,3,6,6_1,6_0,6_1_0 +3026,2,50.0,0.0,7,112,1000.0,0.0,0.0,0,54,0.0,417.1630922582205,1705.2005433720612,1519.0,282.6602019808903,0.0,20,2,2,2,1,2,2,2,2,2,45.0,1,,5,103031,2,1,2,0,1,,270.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,526.557824657026,1000.0,30167.038713618418,0,1,0,1,90.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05035297015461687,16759.465952010232,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3027,2,34.0,0.0,7,112,1200.0,,,0,54,0.0,0.0,,1347.0,203.68161613328857,,50,0,0,0,0,0,0,0,0,0,,1,,5,103032,2,2,0,0,2,,1500.0,,22,3.0,5.0,5.0,4.0,2.5,4,4,132.24997613697744,1200.0,26679.57986298967,0,1,0,1,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05048805142050154,10671.831945195869,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +3028,2,62.0,0.0,6,221,500.0,0.0,0.0,67,78,0.0,397.2981831030672,852.6002716860306,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,103033,2,1,2,0,1,,270.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1626.3493654158,500.0,30913.761383549157,4,5,0,1,80.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02587844261571231,20609.17425569944,5,3,5,5_1,5_1,5_0_0 +3029,2,67.0,0.0,5,112,407.0,920.0,0.0,77,72,0.0,0.0,694.0166211524289,1327.0,0.0,1746.6237241046058,71,0,0,0,0,0,0,0,0,0,,2,,3,103034,2,1,0,0,1,,300.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,2272.59451467917,407.0,81540.10911473502,5,5,0,1,100.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016274199463392664,54360.072743156685,10,5,10,10_0,10_2,10_0_0 +3030,2,50.0,0.0,2,111,425.0,287.0,0.0,34,38,0.0,0.0,724.710230933126,712.0,0.0,544.8706617587194,12,2,1,2,1,1,2,2,2,3,50.0,2,,2,103035,2,2,0,1,1,,0.0,,43,2.0,1.0,3.0,3.0,2.0,3,2,913.2061510056,425.0,97401.52230044996,1,1,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007309947351784982,48700.76115022498,10,5,10,10_0,10_4,10_0_1 +3031,0,71.0,0.0,7,221,686.0,0.0,0.0,78,77,0.0,874.0560028267478,1169.767572753234,1474.0,177.35542085075468,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,103036,1,1,2,0,1,,414.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,743.438956800033,686.0,40026.71042985919,5,5,0,1,110.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036825409437104856,26684.473619906126,7,4,7,7_1,7_1,7_0_0 +3032,2,69.0,0.0,6,111,1046.0,0.0,0.0,0,75,0.0,0.0,1783.639768367176,1166.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,103037,2,1,2,0,1,,184.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,939.501279265189,1046.0,37843.787670917794,0,5,0,1,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030810869412420047,37843.787670917794,9,5,9,9_1,9_2,9_0_0 +3033,1,41.0,213.0,2,111,1200.0,,,0,85,0.0,0.0,,1680.0,665.08282819033,,71,0,0,0,0,0,0,0,0,0,,2,,2,103038,1,3,0,0,2,,1000.0,273.0,31,0.0,1.0,3.0,2.0,1.5,2,1,98.26012552931424,1200.0,6097.37057673934,0,6,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.27552860349491914,4064.9137178262267,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3034,1,66.0,233.0,2,111,70.0,1500.0,0.0,0,77,0.0,0.0,119.36403803604428,1570.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,0,,2,,2,103039,2,1,0,1,1,,0.0,220.0,11,0.0,0.0,2.0,1.0,1.0,1,1,281.731664555571,70.0,10385.994557467018,0,5,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15116510906230424,10385.994557467018,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +3035,2,45.0,0.0,2,111,694.0,1160.0,0.0,0,43,0.0,165.540909626278,1183.4091771002104,1979.0,0.0,2202.2646956101553,10,2,2,1,2,1,2,2,1,2,45.0,1,,2,103040,2,1,2,0,1,,622.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,848.792806554401,694.0,99763.10229758408,1,1,0,1,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.01983699338154929,43375.26186851482,10,5,10,10_1,10_3,10_0_1 +3036,2,49.0,0.0,7,211,929.0,0.0,0.0,64,31,3164.0485531098047,0.0,1584.1313047926449,3989.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,103041,2,1,2,0,1,,611.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1499.1368438653,929.0,162082.18397224188,1,1,0,1,165.0,2,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024610971435843648,108054.78931482793,10,5,10,10_1,10_1,10_0_0 +3037,1,52.0,142.0,6,111,830.0,0.0,0.0,0,52,0.0,0.0,1415.3164509988108,865.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,4,103042,1,1,0,0,1,,0.0,450.0,32,1.0,1.0,5.0,2.0,1.5,2,2,1584.98229653431,830.0,10627.550345351689,0,1,2,3,93.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0813922279256326,7085.033563567792,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3038,2,52.0,0.0,2,111,780.0,1020.0,0.0,21,48,0.0,0.0,1330.0564238302077,1800.0,0.0,1936.4741288985847,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,103043,2,1,2,0,1,,300.0,,43,2.0,5.0,4.0,2.0,1.5,2,2,1230.63573217043,780.0,51522.01367088783,1,1,0,1,102.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034936522696842456,34348.00911392522,9,5,9,9_1,9_3,9_0_1 +3039,1,41.0,250.0,2,111,350.0,0.0,0.0,85,68,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103044,2,1,2,1,1,,600.0,394.0,42,1.0,0.0,4.0,8.0,3.499999999999999,3,2,110.288968648461,350.0,39189.80546131266,7,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.008930894039408095,11197.087274660762,2,1,2_1,2_1_1,2_4_1,2_0_1_1 +3040,2,56.0,0.0,1,112,300.0,0.0,0.0,78,52,0.0,794.5963662061343,511.56016301161833,975.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,103045,1,1,3,0,2,,300.0,0.0,42,1.0,0.0,4.0,2.0,1.5,2,2,851.483525567712,300.0,25373.556096953744,5,1,2,3,100.0,8,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038425831849287176,16915.70406463583,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +3041,2,47.0,0.0,9,111,0.0,,,46,53,0.0,0.0,,463.0,0.0,,20,0,0,0,0,0,0,0,0,0,,8,2008.0,6,103046,2,2,0,0,1,,451.0,600.0,43,2.0,3.0,3.0,3.0,1.8,2,2,172.359126439801,0.0,36687.68747820584,4,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012620037724510251,20382.048599003243,5,3,5,5_0,5_2,5_0_0 +3042,1,51.0,131.0,5,111,400.0,120.0,0.0,56,62,0.0,0.0,682.0802173488245,520.0,0.0,227.8204857527747,60,0,0,0,0,0,0,0,0,2,10.0,2,,3,103047,2,1,0,1,1,363.0,500.0,460.0,43,2.0,0.0,3.0,4.0,2.5,4,3,272.16794251608,400.0,23343.39987780715,4,1,2,3,79.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.022276103854707567,9337.35995112286,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3043,1,65.0,264.0,5,111,268.0,97.0,0.0,0,86,0.0,0.0,456.9937456237124,365.0,0.0,184.15489265015952,70,0,0,0,0,0,0,0,0,0,,2,,3,103048,2,1,0,1,1,488.0,0.0,380.0,11,0.0,4.0,4.0,1.0,1.0,1,1,398.310446170348,268.0,12916.22709900277,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02825902620031981,12916.22709900277,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3044,1,35.0,323.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1712.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,103049,2,1,0,0,1,,0.0,470.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2733.80693544893,0.0,20637.3367114903,0,1,2,3,80.0,6,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08295644074299595,12898.335444681437,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +3045,2,64.0,0.0,1,111,435.0,1323.0,0.0,0,77,0.0,0.0,741.7622363668467,1758.0,0.0,2511.7208554243407,50,0,0,0,0,0,0,0,0,0,,1,,1,103050,2,2,1,0,1,,185.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1155.23596215077,435.0,30057.99005171689,0,5,0,1,110.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058486944635194736,30057.99005171689,8,4,8,8_1,8_2,8_1_0 +3046,2,64.0,0.0,2,112,500.0,,,86,63,0.0,0.0,,570.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,103051,2,3,0,0,2,,400.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,81.47814655870766,500.0,30721.166283251274,6,1,0,1,60.0,8,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018553983098967032,20480.777522167515,5,3,5,5_1,5_1,5_0_1 +3047,2,41.0,0.0,1,111,504.0,0.0,0.0,34,34,0.0,92.70290939071567,859.4210738595189,1899.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,1,,1,103052,1,2,1,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1280.87644324621,504.0,82547.05275224979,1,1,1,2,110.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023005061194607504,39308.12035821418,9,5,9,9_1,9_3,9_1_0 +3048,2,67.0,0.0,1,112,2200.0,0.0,0.0,75,74,0.0,185.40581878143135,3751.441195418535,2400.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103053,2,1,3,0,1,,180.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,213.305284363807,2200.0,48834.022382616764,5,5,0,1,96.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04914606421719456,32556.01492174451,8,4,8,8_1,8_0,8_1_0 +3050,2,70.0,0.0,2,111,226.0,87.0,0.0,72,77,0.0,0.0,385.3753228020858,313.0,0.0,165.16985217076163,50,0,0,0,0,0,0,0,0,0,,2,,2,103055,1,2,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1897.83346970178,226.0,44832.859317063856,5,5,0,1,85.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0069814864536393495,29888.57287804257,8,4,8,8_0,8_2,8_0_1 +3051,2,32.0,0.0,7,112,237.0,500.0,0.0,0,43,0.0,0.0,404.1325287791785,737.0,0.0,949.2520239698945,20,0,0,0,0,0,0,0,0,2,10.0,2,,5,103056,1,1,0,0,1,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1442.96582190141,237.0,24791.535716046776,0,1,2,3,27.0,10,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02972788811638495,24791.535716046776,7,4,7,7_0,7_2,7_0_0 +3052,2,66.0,0.0,1,111,1356.0,0.0,0.0,0,77,0.0,0.0,2312.251936812515,1356.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,1,,1,103057,2,1,3,0,1,,323.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1024.86022222913,1356.0,11571.9176607133,0,5,0,1,80.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.11718023233120857,11571.9176607133,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +3053,2,78.0,0.0,2,120,380.0,0.0,0.0,77,78,1318.3535637957518,0.0,647.9762064813832,1740.0,152.4148147936173,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103058,1,3,4,0,2,,190.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1218.99121530812,380.0,26650.372450254436,5,5,0,1,59.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06528989428751447,17766.91496683629,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +3054,1,50.0,150.0,1,111,0.0,0.0,720.0,0,42,0.0,0.0,453.8291690986155,720.0,0.0,861.6471462465702,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,103059,2,1,2,0,1,,120.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,302.413881356205,0.0,25348.256809805567,0,1,1,2,54.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.028404320084112433,25348.256809805567,7,4,7,7_1,7_3,7_1_0 +3055,2,57.0,0.0,6,111,0.0,0.0,530.0,0,34,0.0,0.0,334.0686939198142,530.0,0.0,634.2680382092809,10,0,0,0,0,0,0,0,0,2,10.0,2,,4,103060,2,1,0,0,2,,0.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,1509.0309626185,0.0,112455.51237754962,0,1,1,2,61.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.004712974835956624,112455.51237754962,10,5,10,10_0,10_2,10_0_0 +3056,2,45.0,0.0,8,111,1116.0,0.0,0.0,45,38,949.2145659329414,0.0,1903.0038064032203,2156.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,103061,2,1,2,0,1,,280.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,828.888820904072,1116.0,67906.85973815639,1,1,1,2,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0317493697737367,29524.721625285387,8,4,8,8_1,8_3,8_0_0 +3057,0,90.0,0.0,1,111,240.0,0.0,0.0,0,74,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,103062,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,306.401708431802,240.0,50008.97147691004,0,5,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004799138892724717,50008.97147691004,10,5,10,10_0,10_4,10_1_0 +3058,1,59.0,398.0,2,111,500.0,0.0,0.0,77,85,0.0,0.0,852.6002716860306,1825.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,103063,2,3,0,1,1,600.0,0.0,380.0,41,0.0,3.0,4.0,5.0,3.0,5,5,177.627459867969,500.0,25380.002925963814,5,7,2,3,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07190700510648956,8460.00097532127,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +3059,1,49.0,200.0,7,111,270.0,,,0,22,0.0,0.0,,390.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,103064,1,1,0,0,2,,720.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,95.57392639841225,270.0,10593.326726598541,0,1,1,2,58.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03681563026096023,10593.326726598541,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +3060,2,55.0,0.0,6,300,700.0,0.0,0.0,0,62,0.0,0.0,1193.6403803604428,780.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,103065,1,2,2,0,1,,90.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1755.56076207437,700.0,19939.15681608084,0,1,0,1,104.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039119006244583705,19939.15681608084,5,3,5,5_1,5_1,5_0_0 +3061,2,82.0,0.0,7,111,330.0,930.0,0.0,77,77,0.0,0.0,562.7161793127802,1260.0,0.0,1765.6087645840037,50,0,0,0,0,0,0,0,0,0,,2,,5,103066,2,1,0,0,1,,140.0,495.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1679.27423536856,330.0,26123.31529547832,5,5,2,3,65.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048232775424874696,17415.543530318882,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +3062,1,36.0,210.0,7,111,0.0,0.0,1540.0,85,48,0.0,0.0,970.6901672387054,1540.0,0.0,1842.9675072496086,50,2,2,2,2,1,2,2,2,2,180.0,1,,5,103067,2,2,2,0,1,,0.0,441.0,42,1.0,0.0,4.0,4.0,2.1,2,2,955.400514632608,0.0,27828.497730456736,6,1,2,3,76.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.055338955588484964,13251.665585931778,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +3063,2,59.0,0.0,5,111,1350.0,0.0,0.0,75,67,0.0,0.0,2302.0207335522828,1470.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,103068,2,1,1,0,1,,681.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1114.71109594165,1350.0,29683.46630124798,5,1,0,1,97.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04952251819519464,19788.97753416532,5,3,5,5_1,5_2,5_0_0 +3064,2,30.0,0.0,9,111,0.0,0.0,0.0,46,22,0.0,0.0,0.0,632.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,103069,2,1,0,0,1,,65.0,635.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2626.63411245956,0.0,42585.501003180005,1,1,2,3,52.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014840731824496004,28390.334002120002,8,4,8,8_0,8_3,8_0_0 +3065,2,56.0,0.0,2,300,350.0,0.0,0.0,69,11,3164.0485531098047,0.0,596.8201901802214,3530.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103070,1,3,3,0,2,,240.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1072.02817419006,350.0,31200.84829950713,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1131379495234994,20800.565533004756,5,3,5,5_1,5_0,5_0_1 +3066,0,34.0,0.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103071,2,2,2,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,788.416356024187,0.0,37685.58834689558,0,1,5,0,40.0,7,5,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.009552723356371738,37685.58834689558,9,5,9,9_1,9_2,9_1_0 +3067,1,40.0,300.0,2,111,360.0,200.0,0.0,0,53,0.0,0.0,613.872195613942,560.0,0.0,379.7008095879578,50,2,2,2,2,1,2,2,2,0,,2,,2,103072,2,1,0,1,1,,0.0,290.0,12,1.0,2.0,4.0,1.0,1.0,1,1,249.381068303773,360.0,6144.381846971475,0,4,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.09114016901082088,6144.381846971475,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +3068,2,69.0,0.0,2,111,2000.0,0.0,0.0,0,86,0.0,132.4327277010224,3410.4010867441225,2100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,103073,2,1,3,0,1,,260.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,983.073189015621,2000.0,107185.01892594503,0,6,0,1,80.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019592290238348575,107185.01892594503,10,5,10,10_1,10_2,10_0_1 +3069,1,61.0,178.0,2,120,100.0,645.0,0.0,85,69,0.0,0.0,170.52005433720612,745.0,0.0,1224.535110921164,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,103074,2,2,0,0,1,,120.0,440.0,42,1.0,2.0,4.0,3.0,2.0,3,2,1362.83296590285,100.0,12383.678889847984,6,1,2,3,80.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06015982864435734,6191.839444923992,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +3070,2,71.0,0.0,2,111,300.0,96.0,0.0,0,75,0.0,0.0,511.56016301161833,396.0,0.0,182.25638860221974,44,0,0,0,0,0,0,0,0,0,,2,,2,103075,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1042.79980035126,300.0,35349.70732706642,0,5,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011202355831013977,35349.70732706642,9,5,9,9_0,9_4,9_0_1 +3071,2,62.0,0.0,6,111,420.0,,,21,71,0.0,0.0,,670.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,4,103076,2,1,0,0,2,,400.0,,42,2.0,3.0,6.0,3.0,2.0,3,3,157.70238488105855,420.0,71253.97120021869,1,5,0,1,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009402984685826798,35626.98560010934,9,5,9,9_1,9_2,9_0_0 +3072,2,44.0,0.0,8,111,650.0,1607.0,0.0,43,62,0.0,0.0,1108.3803531918397,2257.0,0.0,3050.896005039241,41,0,0,0,0,0,0,0,0,2,17.0,1,2003.0,6,103077,2,1,1,0,1,,633.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,700.33161862399,650.0,80797.72077700403,1,1,1,2,143.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027933956283608046,44887.62265389112,10,5,10,10_1,10_2,10_0_0 +3073,2,45.0,0.0,2,111,3000.0,110.0,0.0,34,31,0.0,0.0,5115.6016301161835,3110.0,0.0,208.8354452733768,10,0,0,0,0,0,0,0,0,2,5.0,1,,2,103078,2,1,1,0,1,,600.0,,43,2.0,0.0,9.0,4.0,2.3,3,2,212.276568693113,3000.0,106297.75998439567,1,1,0,1,320.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029257436849624514,46216.41738451986,10,5,10,10_1,10_2,10_0_1 +3074,2,45.0,0.0,6,111,796.0,1553.0,0.0,37,43,0.0,0.0,1357.3396325241606,2349.0,0.0,2948.376786450492,31,0,0,0,0,0,0,0,0,2,3.0,1,,4,103079,2,1,2,0,1,,584.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,539.718345256047,796.0,53230.135379916166,4,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044129138189009424,17743.378459972057,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +3075,2,52.0,0.0,1,212,1500.0,0.0,0.0,0,47,1054.6828510366015,0.0,2557.8008150580918,2572.0,99.7624242285495,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,103080,2,3,1,0,2,,150.0,,12,1.0,4.0,7.0,1.0,1.0,1,1,978.851033811413,1500.0,29229.447483883734,0,1,0,1,150.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08799345254193142,29229.447483883734,8,4,8,8_1,8_0,8_1_0 +3076,2,70.0,0.0,2,111,360.0,240.0,0.0,0,74,0.0,0.0,613.872195613942,600.0,0.0,455.6409715055494,31,2,1,2,1,1,2,2,2,0,,2,,2,103081,2,2,0,1,1,720.0,0.0,260.0,11,0.0,1.0,4.0,1.0,1.0,1,1,399.243695686694,360.0,17090.991303563133,0,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.03510621410677986,17090.991303563133,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3077,2,43.0,0.0,1,111,960.0,0.0,0.0,0,68,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,1,103082,2,1,0,0,1,,0.0,300.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1761.66218162904,960.0,24940.46604687903,0,1,3,4,30.0,6,4,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03849166243307355,24940.46604687903,7,4,7,7_0,7_2,7_1_0 +3078,1,77.0,80.0,2,111,300.0,800.0,0.0,0,86,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,71,1,2,2,1,2,2,2,2,0,,2,,2,103083,2,1,0,0,1,,300.0,329.0,11,0.0,8.0,3.0,1.0,1.0,1,1,367.499424085761,300.0,11889.696358252348,0,6,2,3,60.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.09251708091237476,11889.696358252348,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +3079,2,45.0,0.0,1,111,1700.0,0.0,0.0,37,22,10546.828510366015,0.0,2898.840923732504,11700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,103084,2,1,1,0,2,,1500.0,,43,4.0,0.0,12.0,7.0,3.8,6,4,451.414510788468,1700.0,152615.50812304468,1,1,1,2,400.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07666324441004381,40161.97582185386,9,5,9,9_1,9_3,9_1_0 +3080,2,79.0,0.0,2,111,200.0,0.0,0.0,0,77,1278.275615456361,198.6490915515336,341.04010867441224,1626.0,88.67771042537734,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103085,2,1,2,0,1,,62.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1058.94436509459,200.0,11702.892363406061,0,6,0,1,85.0,5,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13894001153803331,11702.892363406061,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +3081,2,57.0,0.0,6,112,1300.0,0.0,0.0,0,52,0.0,0.0,2216.7607063836795,1360.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,103086,2,1,2,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1725.70661828032,1300.0,21670.652461321064,0,1,0,1,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06275768588081972,21670.652461321064,6,3,6,6_1,6_0,6_0_0 +3082,2,39.0,0.0,8,300,1200.0,0.0,0.0,46,64,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,103087,2,1,1,0,1,,477.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,821.950714598084,1200.0,42665.65020878969,1,1,1,2,107.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028125670044348326,17777.35425366237,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3083,1,66.0,266.0,2,111,700.0,0.0,0.0,0,86,0.0,0.0,1193.6403803604428,880.0,0.0,0.0,71,1,2,2,2,1,2,2,2,0,,2,,2,103088,2,2,0,1,1,668.0,600.0,,21,0.0,4.0,3.0,2.0,1.5,2,2,257.829254369518,700.0,9506.230386267216,0,6,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.09257086818254014,6337.486924178144,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3084,2,48.0,0.0,2,111,420.0,420.0,0.0,52,52,0.0,0.0,716.1842282162656,840.0,0.0,797.3717001347114,71,2,2,2,2,1,2,2,2,3,20.0,2,,2,103089,2,2,0,1,1,444.0,0.0,381.0,43,2.0,2.0,3.0,3.0,2.0,3,2,992.672438365743,420.0,37486.447906932124,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.022408098043470912,18743.223953466062,5,3,5,5_0,5_4,5_0_1 +3085,2,65.0,0.0,7,300,1330.0,0.0,0.0,0,77,0.0,0.0,2267.9167226848413,1330.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,103090,2,1,2,0,1,,477.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1521.66099605894,1330.0,40491.71448891292,0,5,0,1,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03284622587083016,40491.71448891292,9,5,9,9_1,9_1,9_0_0 +3086,2,78.0,0.0,2,111,360.0,,,0,75,0.0,0.0,,570.0,290.9737373332694,,60,0,0,0,0,0,0,0,0,0,,1,,2,103091,1,2,0,0,2,,150.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,115.56004789135214,360.0,43557.56571267939,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013086130748442535,43557.56571267939,10,5,10,10_1,10_2,10_0_1 +3087,1,56.0,240.0,1,111,500.0,0.0,0.0,0,78,0.0,0.0,852.6002716860306,580.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103092,2,1,1,0,1,,200.0,350.0,11,0.0,2.0,1.0,1.0,1.0,1,1,416.585605361293,500.0,7858.284578945022,0,7,2,3,25.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07380745685311707,7858.284578945022,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +3088,2,34.0,0.0,5,111,420.0,,,0,43,0.0,0.0,,588.0,232.77898986661552,,43,0,0,0,0,0,0,0,0,0,,8,,3,103093,2,1,0,0,2,,160.0,540.0,32,1.0,0.0,4.0,4.0,2.1,2,1,93.75638627842365,420.0,40246.041508577,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014610132523833155,19164.781670750952,5,3,5,5_0,5_3,5_0_0 +3089,1,45.0,240.0,9,111,440.0,,,0,42,0.0,0.0,,440.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,103094,2,1,0,0,2,,380.0,522.0,32,1.0,0.0,2.0,2.0,1.5,2,2,172.1232423320242,440.0,23461.900346012168,0,1,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018753809090949747,15641.266897341446,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +3090,2,65.0,0.0,2,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1032.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,103095,2,2,0,0,2,,0.0,540.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2603.12942687438,0.0,36115.84471669268,0,5,2,3,60.0,9,2,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028574715837201822,36115.84471669268,9,5,9,9_0,9_1,9_0_1 +3092,1,41.0,364.0,1,111,420.0,560.0,0.0,67,85,0.0,0.0,716.1842282162656,980.0,0.0,1063.162266846282,71,0,0,0,0,0,0,0,0,0,,1,,1,103097,2,2,3,0,1,,460.0,330.0,42,2.0,0.0,3.0,4.0,2.5,4,3,103.930332002986,420.0,11984.365731553014,4,7,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08177320535368918,4793.746292621206,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +3093,2,36.0,0.0,9,111,504.0,0.0,0.0,85,38,0.0,0.0,859.4210738595189,504.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,103098,1,1,0,1,1,340.0,0.0,690.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1610.0155275833,504.0,31357.099601419548,6,1,2,3,57.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016072915110337045,20904.733067613033,5,3,5,5_0,5_3,5_0_0 +3094,2,33.0,0.0,9,111,1100.0,0.0,0.0,42,46,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,103099,2,1,1,0,1,,100.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,269.585680213966,1100.0,31932.16772043684,1,1,1,2,109.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034448021494512926,17740.093178020466,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +3095,2,62.0,0.0,6,221,480.0,,,68,78,0.0,0.0,,756.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,103100,1,1,0,0,2,,300.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,122.23785952741528,480.0,30569.660612564378,1,5,0,1,50.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024730402132409606,20379.773741709585,5,3,5,5_1,5_1,5_0_0 +3096,2,38.0,0.0,1,111,800.0,1200.0,0.0,55,47,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,103101,2,2,1,0,1,,550.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,437.784813868578,800.0,37454.50835957464,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053398111137900765,20808.060199763688,5,3,5,5_1,5_3,5_1_0 +3097,2,83.0,0.0,2,400,300.0,0.0,0.0,0,86,0.0,595.9472746546007,511.56016301161833,780.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103102,2,1,2,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1803.45252911371,300.0,14221.532411638122,0,6,0,1,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.054846410177407524,14221.532411638122,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +3098,1,58.0,97.0,5,111,99.0,0.0,0.0,0,68,0.0,0.0,168.81485379383406,362.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,103103,2,3,0,1,1,1167.0,0.0,326.0,12,1.0,2.0,4.0,1.0,1.0,1,1,302.050691560305,99.0,13044.627877981418,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027750887444710874,13044.627877981418,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3099,2,47.0,0.0,2,300,850.0,0.0,0.0,47,43,0.0,860.8127300566456,1449.420461866252,1600.0,138.5589225396521,0.0,43,2,2,1,2,2,2,2,1,2,15.0,1,,2,103104,1,2,3,0,1,,351.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1415.91473445726,850.0,40581.85071962736,4,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03942649168600293,20290.92535981368,5,3,5,5_1,5_0,5_0_1 +3100,2,71.0,0.0,1,111,480.0,0.0,0.0,75,78,1371.087706347582,0.0,818.4962608185893,2196.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103105,2,1,2,0,1,,250.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,533.740610877781,480.0,22892.282900659568,5,5,0,1,85.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09592752324132467,15261.521933773045,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +3101,1,30.0,300.0,2,112,600.0,0.0,0.0,0,52,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,40.0,2,,2,103106,2,3,0,0,2,,640.0,680.0,32,2.0,0.0,2.0,3.0,1.8,2,2,1246.28746017157,600.0,38683.335357554235,0,1,2,3,30.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.015510554983279889,21490.741865307908,6,3,6,6_0,6_2,6_0_1 +3102,2,80.0,0.0,2,111,400.0,1020.0,0.0,0,86,0.0,0.0,682.0802173488245,1420.0,0.0,1936.4741288985847,71,0,0,0,0,0,0,0,0,0,,1,,2,103107,2,1,2,0,1,,400.0,272.0,11,0.0,7.0,2.0,1.0,1.0,1,1,206.143845541139,400.0,15591.57962832601,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09107480023513553,15591.57962832601,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +3103,2,51.0,0.0,1,400,900.0,0.0,0.0,54,67,0.0,264.8654554020448,1534.680489034855,1200.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,103108,1,1,3,0,1,,140.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1110.28518860684,900.0,48792.592615699985,1,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02459389705833906,24396.296307849992,7,4,7,7_1,7_0,7_1_0 +3104,2,43.0,0.0,8,112,3800.0,0.0,0.0,85,37,0.0,0.0,6479.762064813833,4924.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,103109,2,1,1,0,1,,480.0,,42,1.0,1.0,6.0,5.0,2.4,2,2,661.255306720096,3800.0,269340.7381471557,6,1,1,2,235.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018281675597509307,112225.30756131487,10,5,10,10_1,10_0,10_0_0 +3105,2,67.0,0.0,1,111,540.0,0.0,0.0,0,22,0.0,0.0,920.8082934209131,540.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,3,,1,103110,2,1,0,0,1,,40.0,400.0,12,1.0,3.0,1.0,1.0,1.0,1,1,379.839631431848,540.0,23571.81663011773,0,1,2,3,14.0,8,6,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022908713760739236,23571.81663011773,6,3,6,6_0,6_2,6_1_0 +3106,2,37.0,0.0,6,111,360.0,0.0,0.0,85,37,0.0,0.0,613.872195613942,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,,4,103111,2,1,0,0,1,,0.0,800.0,42,1.0,0.0,2.0,4.0,2.1,2,2,956.251355533873,360.0,53902.471555044256,6,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006678729000995332,25667.84359764012,7,4,7,7_0,7_4,7_0_0 +3107,2,96.0,0.0,2,111,240.0,0.0,0.0,0,72,1582.0242765549024,0.0,409.2481304092947,1740.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,103112,2,2,2,0,2,,155.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,741.180091574561,240.0,16346.676076187443,0,5,0,1,77.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10644365814128388,16346.676076187443,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +3108,0,77.0,0.0,2,111,395.0,750.0,0.0,0,86,0.0,0.0,673.5542146319642,1145.0,0.0,1423.8780359548418,71,2,2,2,1,2,2,2,2,0,,1,,2,103113,1,1,3,0,2,,200.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,277.548906728272,395.0,6086.228187919463,0,6,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.18812965348106847,6086.228187919463,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +3109,2,66.0,0.0,1,111,490.0,1879.0,0.0,78,77,0.0,0.0,835.54826625231,2369.0,0.0,3567.2891060788634,50,0,0,0,0,0,0,0,0,0,,1,,1,103114,2,2,2,0,1,,0.0,353.0,41,1.0,1.0,3.0,3.0,2.0,3,3,355.311755995275,490.0,32937.51483655814,5,5,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07192406627383405,16468.75741827907,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +3110,0,61.0,0.0,6,111,0.0,0.0,0.0,62,53,0.0,0.0,0.0,366.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,8,,4,103115,2,2,0,2,2,,0.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,589.34723634027,0.0,53065.11964892017,1,1,5,0,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,1,0,0.006897185993765074,35376.74643261344,9,5,9,9_0,9_4,9_0_0 +3111,2,58.0,0.0,6,112,590.0,0.0,0.0,67,62,0.0,821.0829117463388,1006.0683205895161,1330.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,,4,103116,2,1,2,0,1,,155.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,384.040495325349,590.0,92869.65668780872,1,1,0,1,80.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014321146943300729,46434.82834390436,10,5,10,10_1,10_0,10_0_0 +3112,2,44.0,0.0,2,111,600.0,0.0,0.0,54,31,0.0,0.0,1023.1203260232367,890.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,103117,2,1,0,1,1,,348.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1894.98153562847,600.0,154711.55671396357,1,1,1,2,98.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0057526407134889405,67265.89422346243,10,5,10,10_0,10_3,10_0_1 +3113,2,83.0,0.0,1,120,420.0,0.0,0.0,0,71,4324.1996892500665,0.0,716.1842282162656,4620.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103118,2,2,4,0,1,,110.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,325.416840605525,420.0,22045.89013542687,0,5,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20956286961513262,22045.89013542687,6,3,6,6_1,6_0,6_1_0 +3114,2,74.0,0.0,2,111,0.0,0.0,1000.0,77,77,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,50,0,0,0,0,0,0,0,0,0,,1,,2,103119,2,1,2,0,1,,420.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,348.760214976272,0.0,27767.518527515553,5,5,0,1,72.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03601330090080156,18511.6790183437,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +3116,2,40.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,313.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,103121,2,1,0,1,1,750.0,0.0,312.0,32,1.0,0.0,3.0,2.0,1.3,1,1,64.7357631136679,0.0,14588.343094668215,0,1,2,3,61.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021455486614816183,11221.802380514011,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +3117,2,52.0,0.0,5,211,160.0,,,86,69,0.0,0.0,,160.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,103122,2,1,0,0,2,,200.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,81.37431713243606,160.0,13415.381797698636,6,1,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011926608009579532,8943.587865132424,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3118,2,45.0,0.0,2,111,226.0,104.0,0.0,0,42,0.0,0.0,385.3753228020858,330.0,0.0,197.44442098573805,31,1,2,2,1,2,2,2,2,3,60.0,2,,2,103123,1,2,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,1202.63820855859,226.0,28971.336847616443,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011390568607024776,19314.224565077628,5,3,5,5_0,5_4,5_0_1 +3119,2,49.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,452.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,103124,2,1,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,941.819417185902,0.0,40967.02461340843,0,1,1,2,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011033264052377903,20483.512306704215,5,3,5,5_0,5_4,5_0_1 +3121,1,77.0,224.0,2,111,54.0,1150.0,0.0,0,77,0.0,0.0,92.0808293420913,1204.0,0.0,2183.2796551307574,70,0,0,0,0,0,0,0,0,0,,2,,2,103126,2,2,0,0,1,,70.0,246.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1545.56512200325,54.0,9423.390349200703,0,7,2,3,48.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1277671788372986,9423.390349200703,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3122,2,40.0,0.0,6,112,1200.0,0.0,0.0,21,54,0.0,397.2981831030672,2046.2406520464733,1620.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,3,90.0,1,,4,103127,2,1,1,0,1,,700.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,511.925458633286,1200.0,36872.70825694461,1,1,0,1,85.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04393493390046523,15363.628440393586,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +3124,2,78.0,0.0,9,111,300.0,,,0,78,0.0,0.0,,468.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,103129,2,2,0,0,2,,100.0,,21,0.0,0.0,2.0,2.0,1.5,2,2,85.4032466745017,300.0,4121.3702479338845,0,5,0,1,18.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11355446655990606,2747.5801652892565,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +3125,2,79.0,0.0,2,111,374.0,83.0,0.0,0,74,0.0,0.0,637.7450032211509,457.0,0.0,157.57583597900248,60,0,0,0,0,0,0,0,0,0,,2,,2,103130,2,1,0,2,1,,0.0,450.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1114.02728726526,374.0,37880.77143810674,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01206416824817548,37880.77143810674,9,5,9,9_0,9_4,9_0_1 +3126,1,34.0,24.0,9,112,1500.0,0.0,0.0,68,46,0.0,662.163638505112,2557.8008150580918,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,103131,1,1,1,0,1,,300.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1187.40378974594,1500.0,42619.90041484295,1,1,1,2,120.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04692643531619969,17758.291839517897,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +3127,1,46.0,432.0,2,111,540.0,240.0,0.0,85,68,0.0,0.0,920.8082934209131,1092.0,0.0,455.6409715055494,71,1,1,2,2,1,2,2,1,0,,2,,2,103132,2,1,0,1,1,33.0,1200.0,348.0,42,1.0,2.0,4.0,7.0,3.1999999999999993,3,2,257.581977965965,540.0,24035.29106628242,6,1,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.045433192258357846,7511.028458213258,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3128,2,63.0,0.0,2,111,493.0,1420.0,0.0,0,78,0.0,0.0,840.6638678824262,1913.0,0.0,2695.8757480745003,50,0,0,0,0,0,0,0,0,0,,1,,2,103133,2,1,2,0,2,,150.0,730.0,11,0.0,4.0,6.0,1.0,1.0,1,1,1297.83484871199,493.0,28661.163261443577,0,5,2,3,130.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06674537186609808,28661.163261443577,8,4,8,8_1,8_2,8_0_1 +3129,2,85.0,0.0,8,111,1700.0,0.0,0.0,86,74,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2000.0,6,103134,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,940.671561751662,1700.0,55042.6509662249,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030885140344042453,36695.100644149934,9,5,9,9_0,9_4,9_0_0 +3130,2,58.0,0.0,6,111,1200.0,,,52,52,0.0,0.0,,1294.0,130.24538718727297,,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,103135,1,3,0,0,2,,600.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,62.737665372999054,1200.0,32709.336060632275,4,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039560570645682094,16354.668030316137,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3131,2,85.0,0.0,2,112,475.0,0.0,0.0,86,75,1591.5164222142316,0.0,809.9702581017291,1984.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,103136,2,1,2,0,1,,632.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1414.86338540962,475.0,23612.84867885773,5,5,0,1,120.0,9,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08402205201850199,15741.899119238486,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +3132,2,54.0,0.0,2,111,421.0,1629.0,0.0,52,48,0.0,0.0,717.8894287596378,2050.0,0.0,3092.6630940939162,42,0,0,0,0,0,0,0,0,2,35.0,1,,2,103137,2,2,1,0,1,,237.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1054.51029364889,421.0,70952.63856183119,1,1,1,2,125.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028892512548543796,47301.759041220794,10,5,10,10_1,10_3,10_0_1 +3133,0,76.0,0.0,2,221,0.0,0.0,2160.0,0,75,0.0,0.0,1361.4875072958466,2160.0,0.0,2584.9414387397105,41,0,0,0,0,0,0,0,0,0,,1,,2,103138,2,2,2,0,1,,50.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,593.907013644601,0.0,29049.091252625938,0,5,0,1,70.0,1,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07435688714719237,29049.091252625938,8,4,8,8_1,8_1,8_0_1 +3134,1,60.0,176.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,341.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,3,103139,2,1,0,1,1,514.0,0.0,328.0,32,2.0,0.0,3.0,3.0,1.8,2,2,585.899641754136,0.0,18113.96416445947,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01882525530601742,10063.313424699705,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3135,2,41.0,0.0,6,111,336.0,756.0,0.0,0,47,0.0,158.91927324122688,572.9473825730125,1212.0,0.0,1435.2690602424805,31,0,0,0,0,0,0,0,0,2,10.0,1,,4,103140,2,1,4,0,1,,216.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,749.939715033903,336.0,36445.867657587594,0,1,1,2,93.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033254798908530746,36445.867657587594,9,5,9,9_1,9_3,9_0_0 +3136,1,47.0,170.0,5,400,1200.0,0.0,0.0,0,56,0.0,0.0,2046.2406520464733,1270.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,103141,2,2,1,0,1,,550.0,,32,1.0,1.0,5.0,2.0,1.5,2,1,2103.59792803385,1200.0,9905.524054100095,0,1,1,2,110.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.12821128827346814,6603.682702733397,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +3137,2,46.0,0.0,7,111,620.0,,,0,52,0.0,0.0,,890.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,103142,2,2,0,0,2,,450.0,3.0,32,1.0,0.0,5.0,4.0,2.1,2,1,28.93240499888132,620.0,41499.51554240624,0,1,3,4,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021446033486597075,19761.674067812495,5,3,5,5_0,5_2,5_0_0 +3138,2,51.0,0.0,2,111,307.0,0.0,0.0,62,55,0.0,0.0,523.4965668152228,307.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,10.0,2,,2,103143,2,1,0,1,1,585.0,200.0,420.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1735.01856404356,307.0,29524.774992639876,1,1,2,3,60.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010398047066456252,19683.183328426585,5,3,5,5_0,5_2,5_0_1 +3139,2,51.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1433.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,23.0,1,,2,103144,2,1,1,0,1,,293.0,,32,1.0,1.0,5.0,3.0,2.0,3,3,247.074094332547,0.0,46005.37231068159,0,1,1,2,80.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03114853609536563,23002.686155340794,6,3,6,6_1,6_3,6_0_1 +3140,1,32.0,391.0,2,111,260.0,384.0,0.0,0,67,0.0,238.3789098618403,443.3521412767359,824.0,0.0,729.025554408879,60,2,2,2,2,2,2,1,2,2,10.0,2,,2,103145,1,2,0,0,1,,460.0,465.0,32,1.0,1.0,3.0,3.0,1.6,1,1,1579.69694473258,260.0,7926.545086428755,0,1,2,3,69.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.103954496065479,4954.0906790179715,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3141,2,82.0,0.0,2,120,857.0,0.0,0.0,72,77,0.0,794.5963662061343,1461.3568656698565,1527.0,96.99124577775646,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,103146,1,2,1,0,1,,114.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,509.574738952204,857.0,34430.59943965153,5,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04435008465874838,22953.732959767687,6,3,6,6_1,6_0,6_0_1 +3142,2,34.0,0.0,1,111,600.0,840.0,0.0,48,38,0.0,0.0,1023.1203260232367,1440.0,0.0,1594.7434002694229,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,103147,2,1,1,0,2,,100.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1571.73616483147,600.0,73564.79277801493,1,1,1,2,90.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019574581068219205,40869.3293211194,9,5,9,9_1,9_3,9_1_0 +3143,2,72.0,0.0,6,111,1400.0,0.0,0.0,75,75,0.0,0.0,2387.2807607208856,1470.0,96.99124577775646,0.0,50,2,2,1,2,1,2,2,1,0,,1,,4,103148,2,1,2,0,1,,180.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,268.29615207371,1400.0,41749.15765651803,5,5,0,1,105.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.035210291237349034,27832.77177101202,7,4,7,7_1,7_3,7_0_0 +3144,2,64.0,0.0,5,120,502.0,0.0,0.0,78,77,263.6707127591504,635.6770929649075,856.0106727727747,1424.0,266.03313127613205,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,103149,2,2,3,0,2,,526.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1564.23777468486,502.0,28677.583172340142,5,5,0,1,83.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04965550937268188,19118.388781560094,5,3,5,5_1,5_0,5_0_0 +3145,2,80.0,0.0,1,111,200.0,1000.0,0.0,0,78,0.0,0.0,341.04010867441224,1200.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,103150,1,2,3,0,2,,200.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,297.214146702882,200.0,20911.492331197296,0,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.057384713677739396,20911.492331197296,5,3,5,5_1,5_3,5_1_0 +3146,1,38.0,308.0,2,111,310.0,360.0,0.0,0,52,0.0,0.0,528.612168445339,670.0,0.0,683.461457258324,41,0,0,0,0,0,0,0,0,0,,2,,2,103151,1,3,0,1,1,727.0,0.0,347.0,22,1.0,0.0,3.0,2.0,1.5,2,2,205.022073760832,310.0,18523.46686249856,0,1,2,3,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03617033490401517,12348.977908332374,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +3147,1,37.0,342.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,2689.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,103152,2,3,0,0,1,,300.0,382.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,284.168970414011,0.0,27952.959914018647,6,1,2,3,120.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09619732608894287,9317.653304672884,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3148,2,49.0,0.0,7,111,0.0,0.0,600.0,34,38,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,31,0,0,0,0,0,0,0,0,2,60.0,8,,5,103153,1,1,0,1,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,678.679136659291,0.0,80236.47340936263,1,1,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007477895955606484,53490.98227290842,10,5,10,10_0,10_4,10_0_0 +3149,2,52.0,0.0,6,120,1600.0,0.0,0.0,0,46,0.0,662.163638505112,2728.320869395298,2220.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,103154,2,1,2,0,1,,418.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,286.087891232232,1600.0,25304.85277040983,0,1,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08773020812023659,16869.901846939887,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3150,2,30.0,0.0,1,112,360.0,1400.0,0.0,52,54,0.0,0.0,613.872195613942,1760.0,0.0,2657.9056671157045,31,2,2,2,2,1,1,2,2,3,60.0,1,,1,103155,2,1,3,0,1,,590.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1220.5650290938,360.0,54072.16966209261,1,1,1,2,110.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03254909153819014,30040.094256718116,8,4,8,8_1,8_1,8_1_0 +3151,2,54.0,0.0,2,111,400.0,0.0,0.0,0,54,0.0,0.0,682.0802173488245,400.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,45.0,2,,2,103156,1,2,0,1,1,,0.0,600.0,32,2.0,1.0,3.0,2.0,1.5,2,2,979.627377278415,400.0,41596.33718335576,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009616231309906173,27730.89145557051,7,4,7,7_0,7_4,7_0_1 +3152,2,54.0,0.0,9,111,588.0,1488.0,0.0,52,63,0.0,0.0,1002.657919502772,2076.0,0.0,2824.974023334406,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,103157,2,1,1,0,1,,244.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1333.87249824308,588.0,60925.82273291338,1,1,1,2,175.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03407422184679834,30462.91136645669,8,4,8,8_1,8_3,8_0_0 +3153,2,67.0,0.0,5,111,980.0,0.0,0.0,75,72,0.0,0.0,1671.09653250462,980.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,103158,2,2,0,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1742.38940274114,980.0,65511.41268353924,5,5,1,2,95.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014959225573931796,43674.27512235949,10,5,10,10_0,10_3,10_0_0 +3154,2,46.0,0.0,8,111,1080.0,0.0,0.0,56,43,1582.0242765549024,0.0,1841.6165868418261,7738.0,188.44013465392686,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,103159,2,1,2,0,1,,375.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,999.397735761976,1080.0,60435.176483789895,1,1,1,2,98.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1280380144513272,28778.655468471377,8,4,8,8_1,8_3,8_0_0 +3155,2,57.0,0.0,6,111,338.0,0.0,0.0,0,75,0.0,0.0,576.3577836597567,338.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,103160,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,351.150202044303,338.0,19900.136117144364,0,5,0,1,99.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016984808446049084,19900.136117144364,5,3,5,5_0,5_4,5_0_0 +3156,1,60.0,336.0,2,111,374.0,230.0,0.0,0,77,0.0,0.0,637.7450032211509,604.0,0.0,436.65593102615145,71,2,2,2,1,1,2,2,2,0,,2,,2,103161,1,2,0,1,1,881.0,0.0,301.0,21,0.0,7.0,3.0,3.0,2.0,3,3,275.567596659465,374.0,9902.114902985624,0,7,2,3,63.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.060997070415521604,4951.057451492812,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3157,0,21.0,0.0,6,111,480.0,0.0,0.0,0,46,0.0,0.0,818.4962608185893,480.0,0.0,0.0,31,2,2,2,1,2,2,2,2,3,45.0,2,,4,103162,2,1,0,1,1,272.0,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1281.62744216897,480.0,18718.35600401363,0,1,5,0,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0256432776413205,18718.35600401363,5,3,5,5_0,5_4,5_0_0 +3158,1,32.0,480.0,7,111,1000.0,0.0,0.0,85,63,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,103163,2,2,0,0,1,,0.0,490.0,42,1.0,0.0,3.0,5.0,2.4,2,2,516.440763423271,1000.0,17162.054563505186,6,4,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05826808184880631,7150.856068127161,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3159,2,51.0,0.0,1,111,700.0,1350.0,0.0,0,38,0.0,0.0,1193.6403803604428,2050.0,0.0,2562.980464718715,12,0,0,0,0,0,0,0,0,2,35.0,2,,1,103164,2,1,0,0,1,,0.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,1062.00373290122,700.0,154983.50564043887,0,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013227214028543089,103322.33709362592,10,5,10,10_0,10_4,10_1_0 +3160,2,83.0,0.0,7,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,507.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,103165,2,2,0,0,1,,200.0,100.0,21,1.0,1.0,3.0,2.0,1.5,2,2,2689.89921329643,0.0,30276.06929709026,0,5,2,3,70.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01674589904736168,20184.046198060172,5,3,5,5_0,5_1,5_0_0 +3161,2,49.0,0.0,7,112,1100.0,0.0,0.0,78,37,0.0,0.0,1875.7205977092674,1220.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,3,120.0,1,,5,103166,2,1,2,0,1,,140.0,,42,1.0,1.0,4.0,3.0,2.0,3,2,597.354048144002,1100.0,49635.09294840839,5,1,0,1,105.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02457938380951739,24817.546474204195,7,4,7,7_1,7_1,7_0_0 +3162,2,28.0,0.0,8,111,147.5,,,0,37,0.0,0.0,,388.0,332.541414095165,,43,0,0,0,0,0,0,0,0,0,,1,2002.0,6,103167,2,2,0,0,2,,180.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,117.41463175579821,147.5,10145.522574044435,0,1,0,1,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038243471163588054,6763.681716029623,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3163,0,61.0,0.0,2,111,960.0,,,0,86,0.0,0.0,,1098.0,191.2113131047199,,33,0,0,0,0,0,0,0,0,0,,1,,2,103168,2,2,0,0,2,,800.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,157.4196993274863,960.0,20652.456919060052,0,5,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05316558723754853,13768.304612706701,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +3164,2,42.0,0.0,7,112,700.0,0.0,0.0,63,69,0.0,0.0,1193.6403803604428,774.0,102.53360267934255,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,103169,1,1,1,0,1,,200.0,,43,5.0,0.0,4.0,5.0,3.0,5,5,863.891060372285,700.0,42895.62197844732,4,1,1,2,72.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018043799443889452,14298.54065948244,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3165,2,54.0,0.0,1,111,474.0,861.0,0.0,62,46,0.0,529.7309108040896,808.265057558357,1735.0,0.0,1634.6119852761583,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,103170,2,1,1,0,1,,650.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,558.489408420518,474.0,54088.334139022634,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032077157257987446,36058.88942601509,9,5,9,9_1,9_4,9_1_0 +3166,2,33.0,0.0,7,111,372.0,,,0,46,0.0,0.0,,412.0,55.423569015860835,,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,103171,2,1,0,0,1,,0.0,400.0,12,1.0,0.0,4.0,1.0,1.0,1,1,108.88948471323322,372.0,39412.9861742139,0,1,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010453407366264286,39412.9861742139,9,5,9,9_1,9_3,9_0_0 +3167,1,54.0,146.0,2,111,0.0,0.0,697.0,0,68,0.0,0.0,439.3318484190764,697.0,0.0,834.1223068525825,60,0,0,0,0,0,0,0,0,1,10.0,2,,2,103172,2,1,0,1,1,500.0,200.0,228.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1294.83440801519,0.0,8208.857021739515,0,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08490828846867901,8208.857021739515,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3168,1,26.0,110.0,7,111,0.0,,,85,22,0.0,0.0,,608.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,5,103173,2,1,0,0,2,,459.0,583.0,42,1.0,0.0,2.0,2.0,1.5,2,2,159.09507710660358,0.0,47468.03673938348,6,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012808619057454129,31645.357826255655,8,4,8,8_0,8_2,8_0_0 +3169,2,72.0,0.0,6,111,200.0,0.0,0.0,0,75,0.0,0.0,341.04010867441224,200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,4,103174,2,1,0,1,2,,0.0,400.0,11,0.0,6.0,1.0,1.0,1.0,1,1,1389.26391699164,200.0,16931.40410521959,0,5,2,3,40.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011812369414675082,16931.40410521959,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +3170,2,80.0,0.0,2,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,988.0,0.0,0.0,41,1,2,2,1,2,2,2,2,0,,2,,2,103175,1,3,0,1,2,27.0,0.0,921.0,41,0.0,0.0,3.0,2.0,1.5,2,2,2251.82267140051,0.0,22285.804767831665,5,5,2,3,83.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.04433315333651867,14857.203178554444,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +3171,2,43.0,0.0,2,112,820.0,0.0,0.0,42,54,1687.4925616585624,0.0,1398.2644455650902,2420.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,103176,2,2,2,0,1,,360.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,2293.00352476676,820.0,44179.24252069714,1,1,1,2,160.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05477685586995467,22089.62126034857,6,3,6,6_1,6_0,6_0_1 +3172,0,28.0,0.0,7,211,370.0,1110.0,0.0,55,53,0.0,0.0,630.9242010476627,1480.0,0.0,2107.339493213166,41,0,0,0,0,0,0,0,0,2,5.0,2,,5,103177,1,3,0,0,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,897.841890567174,370.0,45533.06318596827,1,1,5,0,101.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03250385316611173,30355.37545731218,8,4,8,8_0,8_1,8_0_0 +3173,0,94.0,0.0,1,111,0.0,0.0,2523.0,0,78,0.0,0.0,1590.2930467163987,2523.0,0.0,3019.3552083056898,60,0,0,0,0,0,0,0,0,0,,1,,1,103178,2,2,2,0,1,,675.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,821.112477776368,0.0,65742.44405644297,0,5,0,1,103.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03837703383576501,65742.44405644297,10,5,10,10_1,10_4,10_1_0 +3174,2,32.0,0.0,7,111,1000.0,,,0,42,0.0,0.0,,1023.0,31.86855218411998,,10,0,0,0,0,0,0,0,0,0,,1,,5,103179,1,3,0,0,2,,140.0,1226.0,22,3.0,0.0,4.0,3.0,2.0,3,3,174.48532681604667,1000.0,38962.6003338793,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026255947786689864,19481.30016693965,5,3,5,5_1,5_2,5_0_0 +3175,2,72.0,0.0,2,120,500.0,0.0,0.0,0,78,1476.555991451242,0.0,852.6002716860306,1960.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103180,2,1,2,0,1,,180.0,,11,0.0,6.0,7.0,1.0,1.0,1,1,934.517999851846,500.0,18086.131015381634,0,5,0,1,110.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10837033074310294,18086.131015381634,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +3176,2,52.0,0.0,6,111,0.0,,,53,43,0.0,0.0,,799.0,0.0,,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,103181,2,2,0,0,2,,410.0,900.0,43,2.0,0.0,4.0,3.0,2.0,3,2,116.17440603145813,0.0,25897.9413763578,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030851873065455546,12948.9706881789,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +3177,1,78.0,286.0,1,112,1390.0,961.0,0.0,0,78,0.0,0.0,2370.228755287165,2415.0,88.67771042537734,1824.4623900701372,50,2,2,2,1,1,2,2,2,0,,1,,1,103182,1,3,4,0,2,,374.0,420.0,21,2.0,0.0,5.0,5.0,2.8,4,3,237.960465980827,1390.0,45145.09295747667,0,5,2,3,120.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.05349418600765206,16123.247484813097,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +3178,2,34.0,0.0,8,111,0.0,0.0,0.0,54,37,0.0,0.0,0.0,1430.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2003.0,6,103183,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,873.67071958141,0.0,61875.11987281294,1,1,1,2,49.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02311106633715504,34375.066596007186,9,5,9,9_0,9_4,9_0_0 +3179,2,48.0,0.0,1,111,0.0,0.0,750.0,0,35,0.0,0.0,472.7387178110578,750.0,0.0,897.5491106735105,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,103184,1,2,0,0,1,,484.0,1165.0,32,1.0,0.0,6.0,4.0,2.5,4,2,572.289578873387,0.0,60287.87948292847,0,1,2,3,140.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012440311492667033,24115.151793171386,6,3,6,6_0,6_3,6_1_0 +3180,2,27.0,0.0,2,111,800.0,340.0,0.0,0,53,0.0,0.0,1364.160434697649,1140.0,0.0,645.4913762995283,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,103185,1,3,0,0,2,,0.0,319.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1277.99154584709,800.0,23569.970779995994,0,1,2,3,67.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04836662763144052,23569.970779995994,6,3,6,6_0,6_3,6_0_1 +3181,2,62.0,0.0,1,112,700.0,0.0,0.0,85,75,0.0,927.0290939071567,1193.6403803604428,1425.0,34.63973063491302,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,103186,2,1,2,0,1,,95.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1016.36711980078,700.0,33246.0389495325,6,5,0,1,70.0,8,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04286224900846536,22164.025966355,6,3,6,6_1,6_1,6_1_0 +3182,1,27.0,112.0,6,111,492.0,1280.0,0.0,56,47,0.0,0.0,838.958667339054,1772.0,0.0,2430.0851813629297,43,0,0,0,0,0,0,0,0,0,,1,,4,103187,2,1,3,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,235.883372097736,492.0,33547.41338692121,1,1,1,2,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05282076384138849,15974.958755676766,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +3183,1,21.0,215.0,2,111,0.0,0.0,0.0,47,46,0.0,0.0,0.0,2804.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,103188,2,2,0,0,2,,139.0,500.0,43,2.0,0.0,2.0,2.0,1.5,2,2,542.357397348772,0.0,21889.84072942166,2,2,2,3,44.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12809595257727044,14593.227152947773,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +3184,2,26.0,0.0,1,111,0.0,0.0,0.0,43,53,0.0,0.0,0.0,1188.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,2,,1,103189,1,1,0,0,1,,327.0,520.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1444.86676327227,0.0,34541.99202055203,1,1,2,3,60.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03439292092051772,19189.99556697335,5,3,5,5_0,5_3,5_1_0 +3185,2,93.0,0.0,2,111,322.0,2550.0,0.0,0,78,0.0,0.0,549.0745749658037,2872.0,0.0,4841.1853222464615,50,0,0,0,0,0,0,0,0,0,,1,,2,103190,1,2,3,0,2,,460.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,749.635405416067,322.0,27129.367299538193,0,5,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10586313968512227,27129.367299538193,7,4,7,7_1,7_4,7_0_1 +3187,2,50.0,0.0,8,112,120.0,0.0,0.0,52,48,0.0,0.0,204.62406520464734,120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,103192,2,1,1,0,1,,227.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,605.481254194074,120.0,59829.08810605561,1,1,1,2,116.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0020057133377544187,23931.635242422246,6,3,6,6_1,6_0,6_0_0 +3188,2,64.0,0.0,2,300,1300.0,0.0,0.0,85,11,3164.0485531098047,0.0,2216.7607063836795,4300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,103193,2,2,3,0,1,,350.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,835.232630225214,1300.0,236517.6818476601,6,1,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018180458925559778,157678.45456510675,10,5,10,10_1,10_0,10_0_1 +3189,2,42.0,0.0,8,211,600.0,1200.0,0.0,45,48,0.0,264.8654554020448,1023.1203260232367,2000.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,7.0,1,2001.0,6,103194,2,1,1,0,1,,462.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,762.730402905644,600.0,68664.70792793034,1,1,1,2,124.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029127044450537473,29854.220838230587,8,4,8,8_1,8_1,8_0_0 +3191,2,29.0,0.0,9,111,480.0,0.0,0.0,0,34,0.0,0.0,818.4962608185893,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,2008.0,6,103196,2,1,0,0,1,,345.0,510.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1462.133281154,480.0,30272.47128389724,0,1,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01585598993549381,30272.47128389724,8,4,8,8_0,8_3,8_0_0 +3192,1,50.0,200.0,1,112,800.0,0.0,0.0,0,22,0.0,0.0,1364.160434697649,950.0,207.83838380947813,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,103197,2,1,3,0,1,,385.0,,32,2.0,0.0,5.0,4.0,2.3,3,3,1036.86259074176,800.0,14670.140041070441,0,1,1,2,200.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.06475739136370787,6378.321756987149,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +3193,1,67.0,162.0,2,300,0.0,,,0,77,0.0,0.0,,348.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,103198,2,2,0,0,2,,122.0,230.0,11,0.0,1.0,2.0,1.0,1.0,1,1,103.7382673213016,0.0,4813.045302517807,0,5,2,3,48.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07230349563050108,4813.045302517807,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +3194,2,67.0,0.0,7,120,250.0,,,0,77,0.0,0.0,,338.0,121.93185183489385,,71,2,2,2,2,1,2,2,2,0,,1,,5,103199,1,3,0,0,2,,220.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,117.62964790038163,250.0,10646.378039114934,0,5,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.031747886347655845,10646.378039114934,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3195,2,76.0,0.0,1,111,400.0,1000.0,0.0,46,77,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,0,,2,,1,103200,2,1,0,0,1,,0.0,1460.0,41,0.0,1.0,4.0,2.0,1.5,2,2,445.146472012111,400.0,65314.235504144846,5,5,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021434837125379136,43542.8236694299,10,5,10,10_0,10_4,10_1_0 +3196,1,52.0,384.0,2,111,1000.0,,,81,52,0.0,0.0,,1400.0,554.2356901586083,,71,0,0,0,0,0,0,0,0,0,,1,,2,103201,1,2,0,0,2,,800.0,697.0,43,3.0,1.0,6.0,10.0,4.499999999999999,5,3,121.71599311411467,1000.0,41187.70889891811,4,1,2,3,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.033990722898325,9152.824199759581,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +3197,2,37.0,0.0,7,111,996.0,,,63,56,0.0,0.0,,1180.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,5,103202,1,2,0,0,2,,310.0,,43,2.0,1.0,4.0,5.0,2.8,4,2,100.83735788076756,996.0,3891.8628099173557,4,4,0,1,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.30319671006724347,1389.9510035419128,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +3198,1,67.0,271.0,2,111,866.0,194.0,0.0,0,78,0.0,0.0,1476.703670560205,1078.0,24.940606057137376,368.30978530031905,71,0,0,0,0,0,0,0,0,0,,2,,2,103203,1,1,0,0,1,,0.0,365.0,11,0.0,3.0,3.0,1.0,1.0,1,1,123.695843883875,866.0,11702.181607471462,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09211957532018919,11702.181607471462,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3199,2,31.0,0.0,2,111,400.0,0.0,0.0,0,43,0.0,0.0,682.0802173488245,400.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,2,,2,103204,1,1,0,0,2,,0.0,407.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1644.33294460755,400.0,19139.15181507577,0,1,2,3,30.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.020899567748081865,19139.15181507577,5,3,5,5_0,5_3,5_0_1 +3200,2,59.0,0.0,2,112,746.0,1351.0,0.0,37,38,0.0,198.6490915515336,1272.0796053555575,2247.0,0.0,2564.878968766655,12,0,0,0,0,0,0,0,0,2,10.0,1,,2,103205,2,1,1,0,1,,1354.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1439.23754570683,746.0,112166.34544309502,1,1,0,1,110.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020032746820123182,74777.56362873001,10,5,10,10_1,10_1,10_0_1 +3201,2,51.0,0.0,1,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,773.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103206,2,2,5,0,1,,351.0,350.0,32,2.0,1.0,2.0,2.0,1.5,2,2,1069.85906246905,0.0,16145.88335856011,0,1,2,3,60.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047875980696353564,10763.922239040074,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3202,2,82.0,0.0,5,111,400.0,,,86,86,0.0,0.0,,660.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,1,,3,103207,1,2,0,0,2,,220.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,90.44665346060819,400.0,16180.478677008105,6,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040789893375517805,10786.98578467207,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3203,1,64.0,270.0,2,111,210.0,0.0,0.0,0,72,0.0,0.0,358.0921141081328,681.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103208,2,1,0,1,1,600.0,0.0,488.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1564.60531494499,210.0,8621.57575714941,0,5,2,3,67.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07898788100716776,8621.57575714941,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3204,1,26.0,50.0,1,112,168.0,650.0,0.0,0,22,0.0,0.0,286.47369128650627,818.0,0.0,1234.027631160863,43,0,0,0,0,0,0,0,0,1,5.0,2,,1,103209,2,1,0,0,1,,240.0,362.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1635.86349399293,168.0,10338.905070700252,0,1,2,3,87.0,6,0,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07911862952665616,10338.905070700252,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +3205,1,29.0,200.0,5,111,180.0,0.0,0.0,0,81,0.0,0.0,306.936097806971,180.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,103210,1,2,0,1,2,240.0,0.0,610.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1288.76822077129,180.0,12970.380169777342,0,4,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013877773638387502,12970.380169777342,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3206,1,59.0,317.0,2,111,255.0,311.0,0.0,55,85,0.0,0.0,434.8261385598756,601.0,0.0,590.4347589092744,60,1,2,2,2,1,2,2,2,0,,2,,2,103211,1,3,0,1,1,317.0,0.0,306.0,42,1.0,3.0,3.0,2.0,1.5,2,2,319.654769954117,255.0,15101.659422558903,4,7,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03979695099614182,10067.772948372602,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3207,2,41.0,0.0,2,111,500.0,450.0,0.0,52,65,0.0,0.0,852.6002716860306,950.0,0.0,854.326821572905,20,2,1,2,1,1,2,2,2,2,15.0,2,,2,103212,2,2,0,1,1,430.0,240.0,370.0,43,2.0,0.0,4.0,5.0,2.4,2,2,265.226892614853,500.0,36143.02446727862,1,1,2,3,74.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0262844632955403,15059.59352803276,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +3208,2,60.0,0.0,2,111,400.0,126.0,0.0,56,78,0.0,0.0,682.0802173488245,526.0,0.0,239.2115100404134,70,2,1,2,2,1,2,2,2,0,,2,,2,103213,1,3,0,1,1,580.0,284.0,340.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1971.50058856151,400.0,38815.0,1,5,2,3,71.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013551462063635193,25876.666666666668,7,4,7,7_0,7_3,7_0_1 +3209,2,46.0,0.0,7,112,2340.0,0.0,0.0,46,47,0.0,529.7309108040896,3990.169271490623,2740.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,103214,2,1,1,0,1,,561.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,590.227653520837,2340.0,66247.87550784931,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04135981688462378,28803.42413384753,8,4,8,8_1,8_0,8_0_0 +3210,1,46.0,98.0,1,111,1190.0,960.0,0.0,85,62,0.0,0.0,2029.1886466127528,2150.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,2,105.0,1,,1,103215,2,2,2,0,2,,690.0,,42,1.0,0.0,5.0,6.0,3.3,5,3,435.382807290585,1190.0,30123.964585824855,6,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07137174769524543,9128.474116916623,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +3211,2,76.0,0.0,5,111,907.0,723.0,0.0,75,74,0.0,0.0,1546.6168928384595,1630.0,0.0,1372.6184266604675,20,0,0,0,0,0,0,0,0,0,,1,,3,103216,2,1,1,0,1,,689.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,278.461382614649,907.0,62873.302877033595,5,5,0,1,120.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02592515305244776,41915.53525135573,9,5,9,9_1,9_2,9_0_0 +3212,2,59.0,0.0,2,111,260.0,220.0,0.0,45,52,0.0,0.0,443.3521412767359,3489.0,0.0,417.6708905467536,41,0,0,0,0,0,0,0,0,1,3.0,2,,2,103217,2,1,0,0,1,,153.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,896.333626339165,260.0,60358.67366381154,1,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057804451095681615,40239.11577587436,9,5,9,9_0,9_4,9_0_1 +3213,1,48.0,60.0,1,111,720.0,2200.0,0.0,85,62,0.0,0.0,1227.744391227884,2920.0,0.0,4176.708905467536,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,103218,2,2,2,0,1,,600.0,,42,2.0,1.0,7.0,5.0,3.0,5,3,286.118187170962,720.0,40223.576031446006,6,1,1,2,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07259424168843667,13407.858677148668,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +3214,2,36.0,0.0,9,112,910.0,0.0,0.0,54,62,0.0,46.35145469535784,1551.7324944685756,945.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,103219,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,764.505363036055,910.0,47336.56961353735,1,1,1,2,98.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019963423790847493,22541.223625493974,6,3,6,6_1,6_0,6_0_0 +3215,2,93.0,0.0,6,111,350.0,1755.0,0.0,78,74,0.0,0.0,596.8201901802214,2105.0,0.0,3331.8746041343297,41,0,0,0,0,0,0,0,0,0,,1,,4,103220,2,1,2,0,1,,162.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1220.83807647651,350.0,54370.05737737314,5,5,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038716162931180305,36246.70491824876,9,5,9,9_1,9_2,9_0_0 +3216,0,73.0,0.0,5,111,916.0,2213.0,0.0,86,72,0.0,0.0,1561.963697728808,3129.0,0.0,4201.389458090753,71,0,0,0,0,0,0,0,0,0,,1,,3,103221,2,1,2,0,2,,340.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,913.658812890971,916.0,18607.432940235623,6,5,0,1,180.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1681586068346931,12404.955293490415,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +3217,2,45.0,0.0,1,111,390.0,0.0,0.0,0,68,0.0,0.0,665.0282119151038,390.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,1,103222,2,3,0,0,2,,0.0,346.0,12,1.0,1.0,1.0,1.0,1.0,1,1,403.917582263637,390.0,5686.412397688423,0,1,2,3,16.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06858454377289598,5686.412397688423,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +3218,2,83.0,0.0,2,211,240.0,,,0,86,0.0,0.0,,384.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,2,103223,2,1,0,0,2,,54.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,103.10975280392017,240.0,16436.89777432796,0,5,0,1,48.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023362072653378183,16436.89777432796,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +3219,2,44.0,0.0,7,112,150.0,0.0,0.0,0,42,0.0,0.0,255.78008150580916,250.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,103224,2,1,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,926.853406973045,150.0,25827.5022611708,0,1,2,3,55.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009679604224673762,25827.5022611708,7,4,7,7_0,7_1,7_0_0 +3220,1,22.0,300.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,463.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,103225,2,2,0,1,1,819.0,0.0,209.0,32,1.0,0.0,3.0,2.0,1.3,1,1,366.669464697279,0.0,13282.625831975916,0,4,2,3,66.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034857565503757355,10217.40448613532,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +3221,2,43.0,0.0,2,400,970.0,0.0,0.0,54,22,2636.7071275915036,754.8665478958276,1654.0445270708994,4200.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103226,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,1837.54486310536,970.0,102156.5258782418,1,1,0,1,215.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041113379335216346,36484.4735279435,9,5,9,9_1,9_0,9_0_1 +3222,2,44.0,0.0,2,111,455.0,200.0,0.0,68,68,0.0,0.0,775.8662472342878,655.0,0.0,379.7008095879578,71,2,1,2,2,1,2,2,1,2,3.0,2,,2,103227,2,2,0,1,1,672.0,0.0,295.0,43,2.0,0.0,3.0,4.0,2.5,4,3,517.679009525957,455.0,27141.541619682117,1,1,2,3,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0241327485806855,10856.616647872846,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +3223,2,63.0,0.0,2,111,500.0,1360.0,0.0,0,77,0.0,0.0,852.6002716860306,1860.0,0.0,2581.965505198113,71,0,0,0,0,0,0,0,0,0,,1,,2,103228,2,1,2,0,1,,250.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,597.270905425939,500.0,13529.226165415095,0,5,0,1,75.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1374801468508774,13529.226165415095,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3224,2,76.0,0.0,2,111,400.0,72.0,0.0,77,78,0.0,0.0,682.0802173488245,472.0,0.0,136.6922914516648,71,0,0,0,0,0,0,0,0,0,,2,,2,103229,2,1,0,1,1,,0.0,544.0,41,0.0,2.0,3.0,2.0,1.5,2,2,195.337580547939,400.0,31418.78781550046,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01502285838561661,20945.85854366697,5,3,5,5_0,5_4,5_0_1 +3225,2,45.0,0.0,1,111,1000.0,0.0,0.0,84,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,65.0,2,,1,103230,2,3,0,0,1,,0.0,730.0,42,1.0,0.0,2.0,2.0,1.5,2,2,882.918205656466,1000.0,64658.24827099926,3,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015465930901943772,43105.49884733284,9,5,9,9_0,9_4,9_1_0 +3226,1,43.0,220.0,2,111,96.0,35.0,0.0,0,54,0.0,0.0,163.69925216371786,131.0,0.0,66.44764167789262,20,2,1,2,2,1,2,2,2,0,,2,,2,103231,1,2,0,1,1,486.0,146.0,206.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1526.06236794501,96.0,1055.2654009251996,0,4,2,3,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.12413938700647845,1055.2654009251996,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3227,2,38.0,0.0,1,111,854.0,1080.0,0.0,21,54,0.0,317.83854648245375,1456.2412640397401,2174.0,0.0,2050.384371774972,42,0,0,0,0,0,0,0,0,1,1.0,1,,1,103232,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,2487.40976705554,854.0,33822.36658334758,1,1,0,1,170.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06427699240508992,16105.888849213134,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3228,2,36.0,0.0,9,111,300.0,450.0,0.0,46,47,0.0,0.0,511.56016301161833,750.0,0.0,854.326821572905,20,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,103233,2,1,0,0,1,,300.0,650.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1731.2863010777,300.0,49480.09366949303,1,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015157610755745453,27488.940927496125,7,4,7,7_0,7_3,7_0_0 +3229,2,67.0,0.0,6,111,780.0,,,75,78,0.0,0.0,,1010.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,4,103234,2,2,0,0,2,,550.0,,41,1.0,2.0,9.0,3.0,2.0,3,3,112.25211185794632,780.0,50867.931038278315,5,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0198553387052438,25433.965519139158,7,4,7,7_1,7_2,7_0_0 +3230,0,57.0,0.0,2,221,432.0,,,0,11,0.0,0.0,,696.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,,2,103235,1,2,0,0,2,,560.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,117.33897367648323,432.0,12328.35780268046,0,4,5,0,60.0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05645520767159062,12328.35780268046,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +3231,1,42.0,400.0,7,111,450.0,,,0,68,0.0,0.0,,582.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,,5,103236,2,1,0,0,1,,600.0,465.0,32,1.0,0.0,3.0,3.0,1.8,2,1,128.29378420100886,450.0,18198.88171776346,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.031979986958864885,10110.489843201922,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +3232,2,55.0,0.0,9,111,900.0,0.0,0.0,69,11,0.0,0.0,1534.680489034855,1540.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,103237,2,1,1,0,1,,180.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,326.130352340289,900.0,69759.35895219528,1,1,1,2,110.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022075890936086896,46506.23930146352,10,5,10,10_1,10_3,10_0_0 +3233,1,42.0,308.0,2,111,300.0,60.0,0.0,0,85,0.0,794.5963662061343,511.56016301161833,960.0,0.0,113.91024287638734,43,1,2,2,2,1,2,2,2,0,,2,,2,103238,1,3,0,1,1,350.0,0.0,301.0,11,0.0,0.0,2.0,1.0,1.0,1,1,745.861701095341,300.0,20640.99535238597,0,7,2,3,41.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04650938501805486,20640.99535238597,5,3,5,5_0,5_4,5_0_1 +3234,2,59.0,0.0,1,112,1260.0,1404.0,0.0,35,33,0.0,66.2163638505112,2148.552684648797,2714.0,0.0,2665.499683307464,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,103239,2,1,1,0,1,,335.0,,43,3.0,0.0,6.0,3.0,2.0,3,3,1694.1834122655,1260.0,86825.20676004977,1,1,0,1,220.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031258203709211,43412.603380024884,10,5,10,10_1,10_2,10_1_0 +3235,2,85.0,0.0,1,400,540.0,0.0,0.0,0,77,0.0,397.2981831030672,920.8082934209131,936.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103240,2,1,1,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1332.47968402669,540.0,18800.189713430125,0,5,0,1,85.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.049786731637679056,18800.189713430125,5,3,5,5_1,5_0,5_1_0 +3236,2,61.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,580.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,2,,2,103241,2,2,0,0,2,,450.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,112.46237329512364,360.0,24027.971298085184,0,7,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02413853391135942,24027.971298085184,6,3,6,6_0,6_3,6_0_1 +3237,2,55.0,0.0,7,112,400.0,0.0,0.0,0,47,738.277995725621,198.6490915515336,682.0802173488245,1250.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,5,103242,2,1,2,0,1,,300.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1053.14632330938,400.0,47240.68331864679,0,1,0,1,126.0,8,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026460243844665162,47240.68331864679,10,5,10,10_1,10_0,10_0_0 +3238,2,64.0,0.0,2,300,300.0,,,0,46,0.0,0.0,,344.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,103243,1,3,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,140.48815379141652,300.0,19426.54501309656,0,1,0,1,82.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017707729283209635,19426.54501309656,5,3,5,5_1,5_1,5_0_1 +3239,2,61.0,0.0,6,111,450.0,850.0,0.0,86,86,0.0,0.0,767.3402445174275,1300.0,0.0,1613.7284407488207,31,0,0,0,0,0,0,0,0,0,,1,,4,103244,2,1,2,0,1,,225.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,215.209929091661,450.0,50944.271578772066,5,5,0,1,100.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025518080045366594,33962.84771918138,9,5,9,9_1,9_2,9_0_0 +3240,2,52.0,0.0,2,212,375.0,0.0,0.0,56,62,1476.555991451242,0.0,639.4502037645229,1835.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,103245,1,2,2,0,2,,364.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,786.40561146946,375.0,40589.97190894527,4,1,0,1,120.0,2,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04520821064169301,20294.985954472635,5,3,5,5_1,5_0,5_0_1 +3241,2,54.0,0.0,2,111,450.0,318.0,0.0,78,55,0.0,0.0,767.3402445174275,862.0,0.0,603.7242872448529,70,2,1,2,2,1,2,2,2,2,20.0,2,,2,103246,1,3,0,1,1,,0.0,312.0,42,2.0,0.0,4.0,4.0,2.5,4,4,348.922192382538,450.0,4628.997059465833,5,1,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.18621744384937483,1851.5988237863335,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +3242,2,31.0,0.0,2,111,840.0,1119.0,0.0,63,45,0.0,0.0,1432.3684564325313,1959.0,0.0,2124.4260296446237,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,103247,2,1,0,0,1,,996.0,535.0,43,2.0,0.0,3.0,2.0,1.5,2,2,849.176221659738,840.0,22909.35081904974,1,1,2,3,55.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08551093461675216,15272.900546033161,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +3243,2,28.0,0.0,9,120,1010.0,0.0,0.0,68,52,0.0,0.0,1722.2525488057818,1060.0,69.27946126982604,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,103248,2,1,1,0,1,,300.0,515.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1902.20574568882,1010.0,32362.92366062905,1,1,2,3,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0327535302779068,21575.282440419367,6,3,6,6_1,6_0,6_0_0 +3245,2,37.0,0.0,1,111,1224.0,0.0,0.0,37,33,0.0,0.0,2087.165465087403,1224.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,103250,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,295.108235474799,1224.0,234287.82013122857,1,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005224343285598103,97619.92505467858,10,5,10,10_0,10_4,10_1_0 +3246,2,64.0,0.0,5,120,560.0,0.0,0.0,77,78,991.4018799744055,503.2443652638851,954.9123042883542,1940.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,103251,2,1,2,0,1,,370.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,781.89954075294,560.0,34796.58924741425,5,5,0,1,104.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05575259075554832,23197.726164942836,6,3,6,6_1,6_0,6_0_0 +3247,2,56.0,0.0,2,111,510.0,,,46,44,0.0,0.0,,660.0,207.83838380947813,,30,0,0,0,0,0,0,0,0,0,,1,,2,103252,2,2,0,0,2,,290.0,734.0,43,2.0,1.0,3.0,2.0,1.5,2,2,163.84809454419593,510.0,8052.511803644102,4,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08196200342125821,5368.341202429401,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +3248,1,36.0,206.0,8,111,360.0,,,52,55,0.0,0.0,,528.0,232.77898986661552,,41,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,103253,2,3,0,0,2,,400.0,750.0,43,2.0,2.0,4.0,4.0,2.3,3,2,84.02643721911467,360.0,20111.43233236706,4,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026253724313322235,8744.101014072636,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +3249,2,90.0,0.0,2,111,0.0,0.0,0.0,77,72,0.0,105.94618216081791,0.0,1202.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,103254,2,1,2,0,1,,314.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,441.088015424878,0.0,56471.92627555992,5,5,0,1,79.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0212849123320981,37647.95085037328,9,5,9,9_1,9_3,9_0_1 +3250,2,72.0,0.0,1,111,650.0,100.0,0.0,0,72,0.0,0.0,1108.3803531918397,750.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,103255,2,1,2,0,1,,220.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,594.438683892827,650.0,14043.060232030351,0,5,0,1,70.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053407162513577335,14043.060232030351,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +3251,2,59.0,0.0,6,112,1280.0,0.0,0.0,0,21,0.0,0.0,2182.6566955162384,1340.0,83.13535352379125,0.0,50,2,2,2,2,1,2,2,2,0,,1,,4,103256,1,1,2,0,1,,128.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,844.939646769549,1280.0,14470.179334698045,0,1,0,1,134.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.09260424276752492,14470.179334698045,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3252,2,51.0,0.0,2,112,1000.0,0.0,0.0,47,52,1148.549624778859,0.0,1705.2005433720612,2149.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,103257,2,1,2,0,1,,209.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,261.233317067907,1000.0,89342.19712279491,1,1,0,1,130.0,7,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02405358351604385,35736.878849117966,9,5,9,9_1,9_0,9_0_1 +3253,1,25.0,48.0,2,111,300.0,360.0,0.0,85,68,0.0,0.0,511.56016301161833,799.0,0.0,683.461457258324,71,2,1,2,1,1,2,2,2,2,60.0,2,,2,103258,1,3,0,1,1,807.0,530.0,312.0,42,1.0,0.0,4.0,3.0,1.8,2,2,308.778825603039,300.0,15868.46615184295,6,1,2,3,75.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05035143235360557,8815.814528801639,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3254,2,46.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,558.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,30.0,2,,2,103259,2,1,0,0,1,,0.0,250.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1670.78720788898,0.0,23626.054789102916,0,1,2,3,77.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02361799314278096,23626.054789102916,6,3,6,6_0,6_2,6_0_1 +3255,1,52.0,300.0,2,221,0.0,0.0,0.0,0,85,0.0,0.0,0.0,857.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103260,2,2,0,0,1,,160.0,280.0,31,0.0,2.0,3.0,2.0,1.5,2,1,2936.75880856181,0.0,5207.346158729479,0,6,2,3,58.0,1,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16457519317461627,3471.5641058196525,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +3256,1,49.0,438.0,2,111,1200.0,0.0,0.0,85,53,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,1,,2,103261,2,1,3,0,1,,350.0,400.0,42,2.0,0.0,5.0,6.0,3.3,5,5,212.31669142092,1200.0,25492.333938933603,6,4,2,3,116.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.047072975070645826,7724.949678464729,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +3257,2,47.0,0.0,1,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,1585.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,10.0,2,,1,103262,2,2,0,0,1,,0.0,2000.0,42,1.0,0.0,2.0,3.0,1.8,2,2,1008.7041516008,0.0,111237.42790944513,6,1,3,4,55.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014248801233432855,61798.57106080285,10,5,10,10_0,10_4,10_1_0 +3258,2,27.0,0.0,2,111,252.0,140.0,0.0,56,55,0.0,0.0,429.7105369297594,392.0,0.0,265.7905667115705,60,2,1,2,2,1,2,2,2,1,15.0,2,,2,103263,2,1,0,1,1,620.0,264.0,287.0,43,2.0,0.0,3.0,2.0,1.5,2,2,258.397683594857,252.0,16179.863794340854,4,1,2,3,62.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024227645237477696,10786.575862893902,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +3259,2,54.0,0.0,1,112,2300.0,0.0,0.0,43,33,0.0,264.8654554020448,3921.9612497557405,3851.0,0.0,0.0,10,2,2,2,1,2,2,2,2,4,90.0,1,,1,103264,2,3,3,0,1,,180.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,477.60241368459,2300.0,130428.5666624116,1,1,0,1,110.0,4,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02952574039985847,86952.37777494107,10,5,10,10_1,10_0,10_1_0 +3260,2,71.0,0.0,9,120,630.0,800.0,0.0,77,75,0.0,0.0,1074.2763423243985,1430.0,0.0,1518.8032383518312,33,0,0,0,0,0,0,0,0,0,,1,2004.0,6,103265,2,1,1,0,1,,400.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,194.019388228443,630.0,22432.15292646873,5,5,0,1,129.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06374778224308007,14954.768617645821,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3262,2,62.0,0.0,6,111,450.0,,,77,77,0.0,0.0,,646.0,271.5754881777181,,70,0,0,0,0,0,0,0,0,0,,1,,4,103267,2,1,0,0,1,,500.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,97.59096952863041,450.0,61318.93873959896,5,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010535081220882607,40879.29249306597,9,5,9,9_1,9_2,9_0_0 +3263,2,79.0,0.0,1,111,234.0,774.0,0.0,0,68,0.0,0.0,399.0169271490623,1008.0,0.0,1469.4421331053966,50,0,0,0,0,0,0,0,0,0,,2,,1,103268,2,2,0,0,1,,0.0,258.0,11,0.0,3.0,3.0,1.0,1.0,1,1,278.207157961489,234.0,20238.55349710307,0,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.049805931048594175,20238.55349710307,5,3,5,5_0,5_4,5_1_0 +3264,2,82.0,0.0,2,112,0.0,681.0,0.0,0,78,0.0,0.0,0.0,2724.0,0.0,1292.8812566469962,71,0,0,0,0,0,0,0,0,0,,1,,2,103269,2,1,1,0,1,,140.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2434.23871634399,0.0,17581.538470465035,0,5,0,1,90.0,7,2,2,0,1,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15493524668367373,17581.538470465035,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +3265,2,84.0,0.0,1,112,300.0,0.0,0.0,0,71,2953.111982902484,0.0,511.56016301161833,3130.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103270,2,1,1,0,2,,80.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,702.109229697546,300.0,7821.298135360035,0,5,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.40018932226215637,7821.298135360035,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3266,1,59.0,44.0,2,111,290.0,215.0,0.0,0,68,0.0,0.0,494.50815757789775,505.0,0.0,408.17837030705465,70,2,2,2,1,2,2,2,2,3,35.0,2,,2,103271,2,3,0,1,1,1330.0,196.0,271.0,32,1.0,2.0,5.0,2.0,1.5,2,2,1338.38821941035,290.0,19001.383433717067,0,1,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.02657701223500922,12667.588955811378,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3267,2,60.0,0.0,1,111,377.0,0.0,0.0,0,78,0.0,251.62218263194254,642.8606048512671,567.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103272,2,1,2,0,1,,187.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,224.489473791569,377.0,38622.7412494532,0,7,0,1,117.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014680470149384521,25748.494166302135,7,4,7,7_1,7_3,7_1_0 +3268,2,87.0,0.0,5,111,330.0,,,0,78,0.0,0.0,,506.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,3,103273,2,1,0,0,1,,248.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,83.9492775382804,330.0,10328.73170731707,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048989557899111656,10328.73170731707,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3269,2,59.0,0.0,9,212,800.0,0.0,0.0,74,37,0.0,662.163638505112,1364.160434697649,1390.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,103274,2,1,1,0,1,,300.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,801.397108770983,800.0,70347.66116835014,6,1,0,1,163.0,2,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0197590080027475,46898.44077890009,10,5,10,10_1,10_0,10_0_0 +3270,2,54.0,0.0,5,111,220.0,0.0,0.0,0,62,0.0,0.0,375.14411954185346,220.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,25.0,2,,3,103275,2,1,0,1,1,1088.0,0.0,565.0,12,1.0,1.0,4.0,1.0,1.0,1,1,448.519067455699,220.0,32275.109716549785,0,1,2,3,107.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006816398206918877,32275.109716549785,8,4,8,8_0,8_2,8_0_0 +3271,2,46.0,0.0,5,111,1033.0,0.0,0.0,54,33,1160.1511361402618,66.2163638505112,1761.4721613033391,2283.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,3,103276,2,1,2,0,1,,657.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,356.662915214748,1033.0,83366.14032481858,1,1,1,2,160.0,7,6,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027385218880288473,33346.456129927436,8,4,8,8_1,8_2,8_0_0 +3272,2,80.0,0.0,2,111,960.0,,,72,75,0.0,0.0,,1104.0,199.524848457099,,41,0,0,0,0,0,0,0,0,0,,1,,2,103277,2,1,0,0,2,,600.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,105.18358171840448,960.0,36298.86070144273,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03041417770878193,18149.430350721366,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +3273,2,76.0,0.0,2,120,440.0,1300.0,0.0,78,78,0.0,0.0,750.2882390837069,1740.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,1,,2,103278,2,1,1,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2041.62885959231,440.0,27502.892765922894,5,5,0,1,120.0,0,0,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06326607222044384,18335.261843948596,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +3274,2,89.0,0.0,9,211,1200.0,0.0,0.0,72,72,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2010.0,6,103279,2,1,1,0,1,,407.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1337.09517216009,1200.0,45695.40421152034,5,5,0,1,90.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02626084659291549,30463.60280768023,8,4,8,8_1,8_1,8_0_0 +3275,2,53.0,0.0,7,211,595.0,1584.0,0.0,54,38,0.0,0.0,1014.5943233063764,2179.0,0.0,3007.230411936626,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,103280,2,1,2,0,1,,348.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,262.891581373715,595.0,92699.14016868181,1,1,0,1,105.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023506151146978706,46349.57008434091,10,5,10,10_1,10_1,10_0_0 +3276,2,29.0,0.0,1,400,700.0,0.0,0.0,52,21,1265.6194212439218,0.0,1193.6403803604428,1930.0,41.567676761895626,0.0,42,0,0,0,0,0,0,0,0,1,1.0,1,,1,103281,2,1,2,0,1,,202.0,800.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1610.72556377701,700.0,38417.91706256534,1,1,2,3,100.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05023697658717172,21343.287256980744,6,3,6,6_1,6_0,6_1_0 +3277,2,68.0,0.0,1,112,370.0,1173.0,0.0,77,75,0.0,0.0,630.9242010476627,1543.0,0.0,2226.9452482333727,50,0,0,0,0,0,0,0,0,0,,1,,1,103282,2,1,2,0,1,,544.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1780.31130289561,370.0,32122.273774118854,5,5,0,1,150.0,6,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04803520481925554,21414.849182745904,6,3,6,6_1,6_1,6_1_0 +3278,1,22.0,223.0,2,111,0.0,0.0,1300.0,0,62,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,71,2,2,2,2,1,2,2,2,0,,2,,2,103283,1,3,0,0,1,,330.0,227.0,22,2.0,1.0,4.0,4.0,2.3,3,3,227.785884594382,0.0,14541.268356993985,0,1,2,3,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.08940072957079652,6322.290589997386,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3279,2,41.0,0.0,5,300,366.0,0.0,0.0,67,64,632.8097106219609,317.83854648245375,624.1033988741744,1266.0,83.13535352379125,0.0,44,1,2,2,2,1,2,2,2,2,15.0,1,,3,103284,2,1,2,0,1,,264.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1122.54907374847,366.0,47364.482501458064,4,1,1,2,85.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.02672888909872556,22554.51547688479,6,3,6,6_1,6_0,6_0_0 +3280,2,46.0,0.0,1,112,400.0,0.0,0.0,56,47,1054.6828510366015,92.70290939071567,682.0802173488245,1530.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,103285,2,1,0,1,1,,200.0,545.0,43,2.0,0.0,3.0,3.0,2.0,3,2,894.064792044343,400.0,12476.391615708424,1,1,2,3,100.0,8,2,8,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12263161073540291,6238.195807854212,1,1,1_0,1_0_0,1_1_0,1_1_0_0 +3281,0,84.0,0.0,2,111,320.0,,,0,75,0.0,0.0,,342.0,30.482962958723462,,41,0,0,0,0,0,0,0,0,0,,1,,2,103286,1,3,0,0,2,,70.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,99.03568488372754,320.0,29324.619251137974,0,5,5,0,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011662555515933197,29324.619251137974,8,4,8,8_1,8_3,8_0_1 +3282,2,37.0,0.0,9,111,310.0,,,52,68,0.0,0.0,,550.0,332.541414095165,,50,2,2,1,2,1,2,2,2,0,,1,2007.0,6,103287,2,2,0,0,2,,240.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,100.59254545713368,310.0,13905.374432133754,4,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03955305214428544,7725.2080178520855,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3283,2,62.0,0.0,1,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,3071.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,103288,2,1,2,0,1,,260.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,298.182614568005,0.0,37299.90843205201,5,5,0,1,160.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.0823326417970794,24866.60562136801,7,4,7,7_1,7_3,7_1_0 +3284,1,60.0,270.0,2,111,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,532.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,103289,2,1,0,0,1,,180.0,327.0,11,0.0,1.0,3.0,1.0,1.0,1,1,548.805398585557,500.0,4848.713210163858,0,6,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10971983224019585,4848.713210163858,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3285,2,33.0,0.0,7,111,778.0,0.0,0.0,0,38,0.0,0.0,1326.6460227434636,778.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,103290,2,2,0,0,1,,0.0,411.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1338.58847719012,778.0,32942.44856071836,0,1,2,3,35.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02361694512677216,32942.44856071836,8,4,8,8_0,8_3,8_0_0 +3286,1,23.0,270.0,6,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,776.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,4,103291,2,1,0,0,1,,37.0,321.0,12,1.0,0.0,2.0,1.0,1.0,1,1,280.106394134479,0.0,10779.052194097007,0,1,2,3,58.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07199148738002821,10779.052194097007,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +3287,1,38.0,449.0,5,111,0.0,0.0,0.0,62,56,0.0,0.0,0.0,457.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,3,103292,1,1,0,1,1,1588.0,0.0,402.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,440.136377510654,0.0,36160.27554338986,4,1,2,3,88.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012638178031902198,12469.0605322034,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3288,2,62.0,0.0,2,111,524.0,1514.0,0.0,77,75,0.0,66.2163638505112,893.52508472696,2088.0,0.0,2874.3351285808403,60,0,0,0,0,0,0,0,0,0,,1,,2,103293,2,2,1,0,1,,184.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1016.46770809702,524.0,40655.74599044924,5,5,0,1,95.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.051358054049494214,27103.830660299496,7,4,7,7_1,7_3,7_0_1 +3289,2,65.0,0.0,5,400,800.0,0.0,0.0,0,75,0.0,0.0,1364.160434697649,879.0,109.46154880632515,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,103294,2,1,0,0,2,,120.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1961.02801511586,800.0,14206.406217830223,0,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06187349471232083,14206.406217830223,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +3291,2,47.0,0.0,7,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1190.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,103296,2,2,2,0,1,,178.0,,22,3.0,0.0,4.0,3.0,2.0,3,2,558.929190385285,0.0,10789.630711848773,0,1,1,2,96.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11029107777462542,5394.8153559243865,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +3292,2,44.0,0.0,7,111,900.0,,,56,63,0.0,264.8654554020448,,1220.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,103297,2,1,0,0,2,,600.0,,43,3.0,1.0,5.0,4.0,2.3,3,3,123.52731153594983,900.0,33719.689570571725,1,1,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036180641504622094,14660.73459590075,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3293,2,41.0,0.0,6,112,600.0,0.0,0.0,0,55,0.0,0.0,1023.1203260232367,680.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,4,103298,1,1,0,0,1,,322.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1990.18957747435,600.0,43767.0374571535,0,1,0,1,34.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015536806681642498,43767.0374571535,10,5,10,10_0,10_1,10_0_0 +3294,2,68.0,0.0,6,111,200.0,,,0,78,0.0,0.0,,260.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,1,,4,103299,2,1,0,0,2,,250.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,110.4488325676834,200.0,14890.362476736636,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01746095841563297,14890.362476736636,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3295,2,34.0,0.0,9,112,550.0,1275.0,0.0,46,38,0.0,264.8654554020448,937.8602988546337,2025.0,0.0,2420.5926611232308,31,2,2,1,1,2,2,2,2,2,20.0,1,2004.0,6,103300,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,474.564469851281,550.0,56543.39923848758,1,1,1,2,165.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0358131988396912,26925.42820880361,7,4,7,7_1,7_1,7_0_0 +3296,2,27.0,0.0,1,111,1000.0,0.0,0.0,22,52,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,1,103301,2,2,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,865.628131204918,1000.0,35792.3321133772,5,1,0,1,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02793894504645187,19884.62895187622,5,3,5,5_0,5_4,5_1_0 +3297,2,43.0,0.0,6,111,0.0,,,0,56,0.0,0.0,,204.0,0.0,,44,0,0,0,0,0,0,0,0,0,,1,,4,103302,2,1,0,0,2,,0.0,620.0,32,1.0,2.0,2.0,2.0,1.3,1,1,172.74170827287506,0.0,9422.8593659829,0,1,3,4,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021649479428341306,7248.353358448385,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3298,1,37.0,480.0,5,111,300.0,2400.0,0.0,67,85,0.0,0.0,511.56016301161833,2700.0,0.0,4556.4097150554935,50,0,0,0,0,0,0,0,0,0,,1,,3,103303,2,2,2,0,1,,1200.0,480.0,42,1.0,0.0,4.0,5.0,2.4,2,2,822.90146478838,300.0,21719.585191579976,4,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12431176637050638,9049.827163158323,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +3299,0,91.0,0.0,1,221,1047.0,0.0,0.0,75,74,0.0,0.0,1785.344968910548,1139.0,127.47420873647992,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,103304,2,1,2,0,1,,241.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1917.81720372757,1047.0,61189.528037216136,5,5,0,1,160.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01861429621269914,40793.018691477424,9,5,9,9_1,9_1,9_1_0 +3300,2,32.0,0.0,2,111,600.0,600.0,0.0,85,42,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,103305,2,1,0,0,1,,396.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,645.556157168846,600.0,73675.89715254254,6,1,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01628755191830858,35083.760548829785,9,5,9,9_0,9_4,9_0_1 +3301,2,64.0,0.0,6,111,1190.0,0.0,0.0,0,78,0.0,0.0,2029.1886466127528,1370.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,103306,2,1,3,0,1,,240.0,,31,1.0,3.0,4.0,2.0,1.5,2,2,885.280378439995,1190.0,15850.630020018783,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08643189565775862,10567.086680012522,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +3302,2,45.0,0.0,5,111,270.0,789.0,0.0,0,37,0.0,0.0,460.40414671045653,1059.0,0.0,1497.9196938244936,31,0,0,0,0,0,0,0,0,3,60.0,2,,3,103307,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,895.249484550856,270.0,40036.55523771925,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02645082709319344,40036.55523771925,9,5,9,9_0,9_4,9_0_0 +3303,2,29.0,0.0,2,111,0.0,0.0,0.0,54,67,0.0,0.0,0.0,413.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,,2,103308,1,2,0,1,1,96.0,498.0,249.0,43,2.0,0.0,3.0,3.0,1.8,2,2,402.738838226314,0.0,27576.616740794223,4,1,2,3,60.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014976456462443673,15320.342633774568,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +3304,2,52.0,0.0,7,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,103309,2,1,0,0,1,,150.0,545.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1066.80714620039,0.0,29474.023796853136,0,1,2,3,21.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020356908311380966,29474.023796853136,8,4,8,8_0,8_4,8_0_0 +3305,2,52.0,0.0,8,111,840.0,,,55,46,0.0,0.0,,980.0,193.98249155551292,,42,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,103310,1,1,0,0,2,,280.0,,43,2.0,1.0,4.0,4.0,2.3,3,2,93.58778791777763,840.0,62336.98463134072,1,1,1,2,121.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015721004244842674,27103.036796235097,7,4,7,7_1,7_3,7_0_0 +3306,2,69.0,0.0,2,111,2200.0,0.0,0.0,0,75,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,103311,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,884.595329241254,2200.0,31213.651252923344,0,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07048198181537499,31213.651252923344,8,4,8,8_0,8_4,8_0_1 +3307,0,79.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,818.4962608185893,682.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,103312,2,3,0,1,1,,0.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,1423.42666235089,480.0,55849.46227698072,0,5,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012211397786028418,55849.46227698072,10,5,10,10_0,10_4,10_0_1 +3309,1,43.0,309.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,489.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103314,1,1,0,1,1,392.0,0.0,273.0,42,1.0,0.0,3.0,6.0,3.1,4,4,263.927430270449,0.0,20753.344003823702,6,4,2,3,59.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02356246780807489,6694.627098007646,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3310,1,38.0,124.0,2,112,772.0,0.0,0.0,12,54,0.0,0.0,1316.4148194832312,892.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,1,30.0,1,,2,103315,1,1,3,0,1,,250.0,740.0,43,2.0,0.0,5.0,5.0,2.4,2,2,757.382294518206,772.0,36355.12324637681,1,1,2,3,130.0,8,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.02453574408082629,15147.96801932367,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +3311,2,49.0,0.0,7,211,636.0,0.0,0.0,42,34,1556.711888130024,0.0,1084.5075455846309,2181.0,95.60565655235995,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,103316,2,1,3,0,1,,548.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,919.424435439377,636.0,91039.89850142106,1,1,0,1,101.0,4,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02395652934483397,36415.95940056843,9,5,9,9_1,9_2,9_0_0 +3312,2,56.0,0.0,6,120,1700.0,0.0,0.0,47,62,0.0,0.0,2898.840923732504,1762.0,85.9065319745843,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,103317,2,2,3,0,1,,200.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,644.009273650202,1700.0,47584.0,4,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03702925353059852,23792.0,6,3,6,6_1,6_0,6_0_0 +3313,0,54.0,0.0,6,111,0.0,,,52,48,0.0,0.0,,817.0,0.0,,43,0,0,0,0,0,0,0,0,2,3.0,3,,4,103318,2,2,0,0,2,,280.0,,43,3.0,1.0,3.0,4.0,2.5,4,3,140.9572647986048,0.0,59039.94044685094,1,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013838089839123085,23615.976178740377,6,3,6,6_0,6_3,6_0_0 +3314,2,33.0,0.0,1,111,720.0,0.0,0.0,0,35,0.0,0.0,1227.744391227884,720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,103319,1,2,0,0,1,,0.0,900.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1151.95819047592,720.0,47883.0,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015036651838857214,47883.0,10,5,10,10_0,10_4,10_1_0 +3315,2,38.0,0.0,1,112,1000.0,0.0,0.0,21,46,0.0,264.8654554020448,1705.2005433720612,1215.0,20.783838380947813,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,103320,2,1,1,0,1,,220.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,971.853241859365,1000.0,41139.79883171831,1,1,0,1,140.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02953344533768719,27426.532554478876,7,4,7,7_1,7_1,7_1_0 +3316,1,38.0,60.0,9,111,300.0,,,0,55,0.0,0.0,,438.0,191.2113131047199,,42,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,103321,2,2,0,0,2,,200.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,282.95916876376236,300.0,21399.0,0,1,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020468246179728023,13374.375,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +3317,2,28.0,0.0,1,111,0.0,0.0,0.0,67,67,0.0,0.0,0.0,1724.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,103322,2,1,2,0,1,,415.0,450.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1800.32704913012,0.0,18833.923398126743,4,1,2,3,75.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09153695507604498,12555.948932084495,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +3318,1,47.0,377.0,2,111,180.0,520.0,0.0,0,85,0.0,0.0,306.936097806971,700.0,0.0,987.2221049286903,50,0,0,0,0,0,0,0,0,0,,2,,2,103323,2,2,0,0,1,,600.0,526.0,31,0.0,2.0,4.0,2.0,1.5,2,2,1355.86094122781,180.0,6421.0906040268455,0,7,3,4,70.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10901574875162334,4280.72706935123,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3319,2,43.0,0.0,1,111,1340.0,430.0,0.0,47,37,0.0,0.0,2284.968728118562,1770.0,0.0,816.3567406141093,12,0,0,0,0,0,0,0,0,1,20.0,1,,1,103324,2,1,2,0,1,,720.0,,43,3.0,0.0,8.0,3.0,2.0,3,3,118.622235406617,1340.0,92408.1710144415,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01915415033724004,46204.08550722075,10,5,10,10_1,10_3,10_1_0 +3321,2,62.0,0.0,1,111,1220.0,520.0,0.0,81,74,0.0,0.0,2080.344662913915,1740.0,0.0,987.2221049286903,44,0,0,0,0,0,0,0,0,0,,1,,1,103326,2,1,2,0,1,,145.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,373.916608153817,1220.0,32678.737635006953,4,5,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05324563082681727,21785.825090004637,6,3,6,6_1,6_3,6_1_0 +3322,2,39.0,0.0,9,111,588.0,,,0,54,0.0,0.0,,654.0,91.44888887617039,,31,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,103327,1,1,0,0,2,,318.0,,32,1.0,0.0,2.0,4.0,1.9,1,1,166.98327638476474,588.0,30419.736596053423,0,1,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021499199966276115,16010.387682133382,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +3323,1,39.0,255.0,1,111,200.0,2000.0,0.0,0,67,0.0,0.0,341.04010867441224,2200.0,0.0,3797.008095879578,71,2,2,2,2,1,2,2,2,0,,2,,1,103328,1,3,0,0,1,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1787.97867323871,200.0,4563.039119341131,0,4,2,3,40.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.482134810257262,4563.039119341131,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +3324,2,52.0,0.0,7,111,1039.0,0.0,0.0,85,43,0.0,0.0,1771.7033645635715,1039.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,55.0,2,,5,103329,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,6.0,3.3,5,4,1037.25467344361,1039.0,33348.34089744364,6,1,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031155972742249554,10105.557847710194,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +3325,2,43.0,0.0,6,111,0.0,,,34,37,0.0,0.0,,244.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,4,103330,2,1,0,0,2,,365.0,2400.0,43,2.0,0.0,4.0,4.0,2.1,2,2,169.025263464659,0.0,198167.37729906078,1,1,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0012312823802061615,94365.41776145752,10,5,10,10_1,10_2,10_0_0 +3326,2,56.0,0.0,2,111,700.0,0.0,0.0,54,52,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,43,1,2,2,1,2,2,2,2,1,10.0,2,,2,103331,2,3,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1597.79288486573,700.0,55700.46881224158,4,1,0,1,83.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012567219180140138,24217.595135757212,7,4,7,7_0,7_3,7_0_1 +3327,2,34.0,0.0,9,112,250.0,1100.0,0.0,45,55,0.0,0.0,426.3001358430153,1350.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,2,45.0,1,2004.0,6,103332,2,1,1,0,1,,100.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,337.151172366119,250.0,49649.04468065136,1,1,0,1,80.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027190855507560372,27582.802600361865,7,4,7,7_1,7_0,7_0_0 +3328,2,66.0,0.0,5,300,1550.0,0.0,0.0,77,78,0.0,0.0,2643.0608422266946,1700.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,103333,2,1,2,0,1,,450.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,841.284912341543,1550.0,29943.75508799727,5,5,0,1,101.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05677310661285205,19962.50339199818,5,3,5,5_1,5_0,5_0_0 +3329,2,34.0,0.0,9,212,1500.0,0.0,0.0,55,33,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,20,2,2,2,1,2,2,2,2,2,10.0,1,2011.0,6,103334,2,1,1,0,1,,100.0,726.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1418.45329956065,1500.0,53232.5179769767,1,1,2,3,124.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.02817826503433027,35488.345317984466,9,5,9,9_1,9_0,9_0_0 +3330,2,28.0,0.0,1,111,800.0,0.0,0.0,42,38,0.0,0.0,1364.160434697649,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,50.0,1,,1,103335,2,2,2,1,2,612.0,0.0,762.0,43,2.0,0.0,3.0,2.0,1.5,2,2,378.425445540032,800.0,36514.38921322122,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02190917107577782,24342.92614214748,7,4,7,7_1,7_4,7_1_0 +3331,2,35.0,0.0,1,111,760.0,0.0,0.0,54,35,0.0,0.0,1295.9524129627664,960.0,277.1178450793042,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,103336,2,1,1,0,1,,243.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,948.337752537665,760.0,37005.14262854833,1,1,1,2,196.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025942340221096444,17621.49648978492,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +3332,1,31.0,339.0,2,111,252.0,,,85,63,0.0,0.0,,367.0,159.34276092059991,,50,0,0,0,0,0,0,0,0,0,,2,,2,103337,2,2,0,0,2,,209.0,430.0,42,1.0,0.0,3.0,3.0,1.8,2,2,116.74772296884652,252.0,5823.563829787234,6,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0630198295625805,3235.3132387706855,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3333,2,41.0,0.0,1,111,0.0,0.0,1560.0,63,52,0.0,0.0,983.2965330470004,1560.0,0.0,1866.902150200902,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,103338,2,1,2,0,1,,360.0,,43,3.0,1.0,8.0,5.0,2.8,4,4,386.766550385988,0.0,49047.209557021946,1,1,1,2,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03180609078659928,17516.860556079268,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3335,2,70.0,0.0,6,111,1200.0,0.0,0.0,78,75,0.0,0.0,2046.2406520464733,1550.0,484.95622888878233,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,103340,2,2,2,0,1,,600.0,,41,0.0,6.0,8.0,2.0,1.5,2,2,562.18669483539,1200.0,27548.72190738366,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056263953195758463,18365.81460492244,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +3336,2,55.0,0.0,1,111,550.0,2300.0,0.0,37,38,0.0,0.0,937.8602988546337,2850.0,0.0,4366.559310261515,31,0,0,0,0,0,0,0,0,2,90.0,1,,1,103341,1,1,1,0,1,,300.0,,43,3.0,1.0,9.0,3.0,2.0,3,3,576.758617337435,550.0,221384.37419232857,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012873537305410954,110692.18709616429,10,5,10,10_1,10_4,10_1_0 +3337,0,61.0,0.0,8,400,0.0,,,68,69,0.0,0.0,,450.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,103342,2,2,0,0,2,,0.0,,43,4.0,1.0,3.0,7.0,3.8,6,4,5.445516010697485,0.0,18565.86875,1,1,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024238025489650192,4885.754934210527,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3338,1,45.0,300.0,2,111,350.0,60.0,0.0,0,37,0.0,0.0,596.8201901802214,410.0,0.0,113.91024287638734,10,2,2,2,2,2,2,2,1,0,,2,,2,103343,2,2,0,1,1,,0.0,700.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.5883544561,350.0,6365.540104786422,0,4,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06440930278511794,6365.540104786422,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +3339,1,40.0,295.0,7,120,450.0,850.0,0.0,85,42,0.0,46.35145469535784,767.3402445174275,1335.0,0.0,1613.7284407488207,10,0,0,0,0,0,0,0,0,2,17.0,1,,5,103344,2,1,1,0,1,,250.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,1226.58522329511,450.0,39835.570792188904,6,1,1,2,137.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03351276192236139,16598.154496745377,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +3340,2,30.0,0.0,1,112,600.0,1080.0,0.0,52,45,0.0,0.0,1023.1203260232367,1680.0,0.0,2050.384371774972,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,103345,2,1,0,1,1,,480.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,567.32146194264,600.0,46883.11926072714,1,1,0,1,65.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035833793196590816,31255.412840484758,8,4,8,8_0,8_1,8_1_0 +3341,1,41.0,400.0,5,400,1440.0,,,0,90,0.0,0.0,,1890.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,0,,1,,3,103346,2,2,0,0,2,,600.0,760.0,31,1.0,0.0,4.0,5.0,2.8,4,3,38.561273762807865,1440.0,18562.3875,0,6,2,3,63.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10181879890181152,6629.424107142858,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +3342,1,59.0,32.0,2,111,300.0,300.0,0.0,0,52,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,41,0,0,0,0,0,0,0,0,0,,2,,2,103347,2,1,0,1,1,270.0,0.0,287.0,22,2.0,4.0,3.0,2.0,1.5,2,2,293.690641533786,300.0,12654.862085578834,0,4,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04741260678642599,8436.574723719223,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +3343,2,45.0,0.0,5,112,306.0,,,0,38,0.0,0.0,,582.0,382.4226262094398,,20,0,0,0,0,0,0,0,0,0,,1,,3,103348,2,1,0,0,2,,115.0,,22,1.0,3.0,5.0,3.0,2.0,3,3,96.69448462735278,306.0,32264.23316523889,0,1,0,1,180.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018038550521852787,16132.116582619445,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3344,2,61.0,0.0,5,111,2400.0,0.0,0.0,75,75,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,103349,2,2,1,0,1,,300.0,,41,0.0,0.0,5.0,3.0,2.0,3,3,489.66853119803,2400.0,42454.22290737191,5,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05653147874679988,21227.111453685957,5,3,5,5_1,5_3,5_0_0 +3345,2,42.0,0.0,9,120,1600.0,0.0,0.0,55,11,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,103350,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,518.137554138227,1600.0,51307.89291584836,1,1,0,1,117.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03118428586853506,24432.32995992779,7,4,7,7_1,7_0,7_0_0 +3346,2,35.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,995.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,103351,2,1,0,0,1,,267.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1834.47313980907,0.0,38558.41020907273,0,1,1,2,73.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025805005823758734,38558.41020907273,9,5,9,9_0,9_3,9_0_1 +3347,2,45.0,0.0,2,112,450.0,300.0,0.0,46,47,0.0,0.0,767.3402445174275,750.0,0.0,569.5512143819367,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,103352,2,3,0,0,2,,0.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,1845.88861444103,450.0,53662.522636539434,1,1,0,1,70.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01397623449571706,23331.531581104104,6,3,6,6_0,6_1,6_0_1 +3348,1,45.0,448.0,2,111,310.0,216.0,0.0,85,67,0.0,0.0,528.612168445339,526.0,0.0,410.0768743549944,71,0,0,0,0,0,0,0,0,0,,2,,2,103353,2,1,0,1,1,1000.0,220.0,412.0,42,1.0,0.0,5.0,5.0,2.4,2,2,315.903035734788,310.0,19392.569640915004,6,4,2,3,107.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027123790696114352,8080.237350381252,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3349,2,47.0,0.0,9,400,801.0,0.0,0.0,0,11,0.0,0.0,1365.865635241021,865.0,88.67771042537734,0.0,44,2,2,1,2,2,2,2,1,2,10.0,1,2010.0,6,103354,1,2,1,0,1,,102.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,920.453160041109,801.0,22458.03152284365,0,1,0,1,140.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.038516287552635566,22458.03152284365,6,3,6,6_1,6_0,6_0_0 +3350,2,64.0,0.0,7,112,0.0,,,52,63,0.0,0.0,,749.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,103355,2,1,0,0,2,,50.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,94.11540918472043,0.0,38960.21423575985,1,1,0,1,85.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019224740281651897,25973.476157173234,7,4,7,7_1,7_1,7_0_0 +3351,2,62.0,0.0,9,211,855.0,0.0,0.0,77,75,0.0,0.0,1457.9464645831124,951.0,133.01656563806603,0.0,42,0,0,0,0,0,0,0,0,0,,1,2012.0,6,103356,2,1,1,0,1,,139.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1300.43663318269,855.0,29143.537604121753,5,5,0,1,96.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03263159102090271,19429.025069414503,5,3,5,5_1,5_1,5_0_0 +3352,1,60.0,322.0,2,111,540.0,420.0,0.0,78,85,0.0,1271.354185929815,920.8082934209131,1920.0,0.0,797.3717001347114,71,0,0,0,0,0,0,0,0,0,,2,,2,103357,2,2,0,0,2,,0.0,328.0,41,1.0,0.0,3.0,5.0,3.0,5,5,383.016503082585,540.0,28963.33103737603,7,6,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06629071764992488,9654.443679125343,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3353,2,66.0,0.0,5,111,1100.0,0.0,0.0,78,77,0.0,582.7040018844986,1875.7205977092674,2515.0,1350.9494947616079,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,103358,2,1,1,0,1,,252.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1117.91103461401,1100.0,37636.127057464895,5,5,0,1,92.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06682409154799485,25090.751371643262,7,4,7,7_1,7_3,7_0_0 +3354,2,48.0,0.0,7,111,1200.0,0.0,0.0,0,47,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,103359,2,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2544.16531196995,1200.0,38207.03307242387,0,1,0,1,83.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03140783001195941,38207.03307242387,9,5,9,9_0,9_3,9_0_0 +3355,2,52.0,0.0,6,221,580.0,0.0,0.0,0,54,0.0,0.0,989.0163151557955,620.0,55.423569015860835,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,103360,2,1,3,0,1,,200.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,2780.81703052486,580.0,22606.388353979237,0,1,1,2,100.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027425875831725503,22606.388353979237,6,3,6,6_1,6_1,6_0_0 +3356,2,70.0,0.0,2,111,1600.0,280.0,0.0,0,75,0.0,0.0,2728.320869395298,1880.0,0.0,531.581133423141,41,0,0,0,0,0,0,0,0,0,,1,,2,103361,2,1,2,0,1,,250.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,734.932881653065,1600.0,28033.222872567683,0,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06706328446593636,28033.222872567683,7,4,7,7_1,7_4,7_0_1 +3357,2,76.0,0.0,2,211,204.0,,,0,78,0.0,0.0,,336.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,103362,2,1,0,0,2,,344.0,,11,0.0,9.0,6.0,1.0,1.0,1,1,93.65271274432489,204.0,9442.006816909856,0,5,0,1,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03558565530775213,9442.006816909856,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +3358,2,50.0,0.0,1,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,2766.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,103363,1,1,3,0,2,,174.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,865.158999666662,0.0,51014.80324519089,1,1,1,2,110.0,7,5,7,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05421955636496056,34009.868830127256,9,5,9,9_1,9_2,9_1_0 +3359,2,71.0,0.0,5,111,785.0,1300.0,0.0,77,72,0.0,0.0,1338.582426547068,2085.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,1,,3,103364,2,1,2,0,1,,600.0,,41,1.0,1.0,4.0,4.0,2.5,4,4,237.197147551628,785.0,55201.78145207625,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037770520174427794,22080.7125808305,6,3,6,6_1,6_3,6_0_0 +3360,2,34.0,0.0,8,112,0.0,0.0,1000.0,46,46,0.0,66.2163638505112,630.3182904147437,1050.0,0.0,1196.7321475646809,31,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,103365,2,1,1,0,1,,1000.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,540.279431863437,0.0,45608.78352097733,4,1,1,2,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023021881289972627,21718.46834332254,6,3,6,6_1,6_1,6_0_0 +3361,1,71.0,176.0,1,112,310.0,0.0,0.0,0,72,0.0,0.0,528.612168445339,910.0,831.3535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,103366,2,3,0,0,1,,100.0,305.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2224.45119190917,310.0,9488.505602517516,0,5,2,3,57.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09590551327266501,9488.505602517516,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +3362,2,49.0,0.0,6,111,520.0,,,0,52,0.0,0.0,,562.0,58.19474746665388,,42,0,0,0,0,0,0,0,0,2,60.0,2,,4,103367,2,2,0,0,2,,360.0,320.0,22,2.0,0.0,2.0,2.0,1.5,2,2,137.6368360360643,520.0,34518.570249132885,0,1,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01628109148043632,23012.38016608859,6,3,6,6_0,6_2,6_0_0 +3363,1,30.0,271.0,2,111,118.0,132.0,0.0,52,56,0.0,0.0,201.21366411790322,250.0,0.0,250.60253432805214,71,0,0,0,0,0,0,0,0,0,,2,,2,103368,1,3,0,1,2,1152.0,0.0,422.0,43,2.0,5.0,3.0,3.0,2.0,3,3,271.789233126295,118.0,32240.053650441776,4,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007754329527816227,16120.026825220888,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +3364,2,58.0,0.0,2,400,800.0,,,0,54,0.0,0.0,,938.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,2,103369,1,1,0,0,2,,1200.0,,22,2.0,2.0,4.0,3.0,2.0,3,3,150.72704789582258,800.0,56707.0,0,4,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01654116775706703,28353.5,8,4,8,8_1,8_1,8_0_1 +3365,2,46.0,0.0,9,112,4500.0,0.0,0.0,31,31,0.0,0.0,7673.402445174275,4500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,7.0,1,2007.0,6,103370,2,1,1,0,1,,350.0,,43,2.0,0.0,9.0,5.0,2.5999999999999996,3,2,493.461884462652,4500.0,379753.758961835,1,1,1,2,499.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011849783955534847,146059.13806224425,10,5,10,10_1,10_1,10_0_0 +3366,2,73.0,0.0,1,111,283.0,1296.0,0.0,77,77,0.0,0.0,482.5717537742933,1579.0,0.0,2460.4612461299666,70,2,2,2,1,2,2,2,2,0,,1,,1,103371,2,1,4,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,216.501413702538,283.0,29013.132617863397,5,5,0,1,92.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05442363018145131,19342.08841190893,5,3,5,5_1,5_3,5_1_0 +3367,2,32.0,0.0,1,111,900.0,520.0,0.0,47,47,0.0,0.0,1534.680489034855,1420.0,0.0,987.2221049286903,33,0,0,0,0,0,0,0,0,3,30.0,2,,1,103372,1,1,0,0,2,,330.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,391.675202321737,900.0,65585.27839265982,1,1,1,2,71.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021651200312034106,36436.2657736999,9,5,9,9_0,9_3,9_1_0 +3368,2,30.0,0.0,7,400,360.0,,,0,56,0.0,0.0,,810.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,0,,1,,5,103373,2,2,0,0,2,,700.0,,32,1.0,0.0,5.0,8.0,4.1,6,6,6.73280849716986,360.0,19576.92469352014,0,4,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04137524216293817,4774.859681346376,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3369,1,33.0,377.0,8,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,2163.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,2001.0,6,103374,2,1,1,0,1,,117.0,426.0,43,2.0,0.0,3.0,3.0,1.8,2,2,303.930677210363,0.0,16969.750951892507,1,1,2,3,68.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1274620945311385,9427.63941771806,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +3370,2,88.0,0.0,2,111,710.0,,,0,86,0.0,0.0,,840.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,2,103375,2,1,0,0,2,,0.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,109.31682336394431,710.0,9494.81483714439,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08846933978257905,9494.81483714439,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +3371,1,34.0,385.0,2,111,0.0,0.0,960.0,0,56,0.0,0.0,605.105558798154,960.0,0.0,1148.8628616620936,70,2,2,2,2,2,2,2,1,0,,2,,2,103376,2,3,0,0,1,,600.0,385.0,32,1.0,0.0,4.0,5.0,2.4,2,1,333.666543264965,0.0,18905.746432781263,0,4,2,3,60.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.05077821197979394,7877.394346992193,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3372,2,58.0,0.0,9,112,1100.0,0.0,0.0,21,21,0.0,0.0,1875.7205977092674,1131.0,42.95326598729215,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,2005.0,6,103377,2,1,1,0,1,,203.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,889.398549388477,1100.0,39705.630391033876,1,1,0,1,140.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028484625199538368,26470.42026068925,7,4,7,7_1,7_0,7_0_0 +3373,2,58.0,0.0,1,111,1050.0,2600.0,0.0,77,38,0.0,0.0,1790.4605705406643,3650.0,0.0,4936.110524643452,31,0,0,0,0,0,0,0,0,3,60.0,1,,1,103378,2,2,1,0,1,,720.0,,42,1.0,0.0,7.0,4.0,2.5,4,3,676.013843130443,1050.0,92767.67591478511,6,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03934560140703353,37107.07036591404,9,5,9,9_1,9_4,9_1_0 +3374,2,39.0,0.0,2,111,15.0,10.0,0.0,0,54,0.0,0.0,25.578008150580917,25.0,0.0,18.985040479397888,71,1,1,2,1,1,2,2,2,3,20.0,2,,2,103379,1,3,0,1,1,864.0,0.0,437.0,32,1.0,0.0,4.0,3.0,1.8,2,2,1512.44024964444,15.0,29902.466373015937,0,1,2,3,89.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0008360514376352603,16612.481318342187,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +3375,2,44.0,0.0,9,300,1289.0,0.0,0.0,90,21,0.0,0.0,2198.0035004065867,1289.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,103380,2,1,1,0,1,,162.0,,43,2.0,2.0,5.0,3.0,2.0,3,2,1316.36103934901,1289.0,57324.87782123904,1,1,0,1,158.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02248587435318391,28662.43891061952,8,4,8,8_1,8_0,8_0_0 +3376,1,90.0,160.0,2,112,160.0,0.0,0.0,0,77,0.0,0.0,272.8320869395298,160.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,103381,2,1,0,1,1,693.0,0.0,221.0,11,0.0,1.0,2.0,1.0,1.0,1,1,306.263532452823,160.0,10935.69634243473,0,5,2,3,55.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01463098416322499,10935.69634243473,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +3377,2,57.0,0.0,1,112,1407.0,0.0,0.0,75,37,0.0,337.7034556376071,2399.2171645244903,1662.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,103382,2,1,1,0,1,,560.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,538.921414631369,1407.0,50036.38509262279,5,1,0,1,160.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033215828779866036,33357.590061748524,8,4,8,8_1,8_0,8_1_0 +3378,2,42.0,0.0,8,111,0.0,,,47,38,0.0,0.0,,731.0,166.2707070475825,,12,0,0,0,0,0,0,0,0,2,70.0,1,2000.0,6,103383,2,1,0,0,1,,130.0,,43,2.0,0.0,7.0,5.0,3.0,5,3,114.67067294400556,0.0,100065.76163039247,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007305195984017545,33355.25387679749,8,4,8,8_1,8_2,8_0_0 +3379,2,83.0,0.0,6,111,1200.0,0.0,0.0,44,90,0.0,39.72981831030672,2046.2406520464733,1230.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,103384,2,1,1,0,1,,479.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,648.7647111339,1200.0,79788.89527567815,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01541567903340727,53192.5968504521,10,5,10,10_1,10_4,10_0_0 +3380,2,49.0,0.0,2,111,636.0,1640.0,0.0,38,34,0.0,0.0,1084.5075455846309,2276.0,0.0,3113.546638621254,10,0,0,0,0,0,0,0,0,3,60.0,1,,2,103385,2,2,2,0,1,,690.0,,43,2.0,0.0,7.0,5.0,3.0,5,4,657.390758152036,636.0,167705.97365651894,1,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013571371075078751,55901.99121883965,10,5,10,10_1,10_4,10_0_1 +3381,2,84.0,0.0,1,300,453.0,0.0,0.0,0,77,1582.0242765549024,0.0,772.4558461475438,1988.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103386,2,1,3,0,2,,376.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,730.109559074742,453.0,16252.388657149677,0,5,0,1,50.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12232048112665876,16252.388657149677,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3382,1,23.0,319.0,2,111,250.0,390.0,0.0,67,67,0.0,0.0,426.3001358430153,640.0,0.0,740.4165786965177,60,0,0,0,0,0,0,0,0,0,,2,,2,103387,1,3,0,1,1,75.0,0.0,279.0,43,2.0,0.0,3.0,4.0,2.1,2,2,259.425767248222,250.0,15939.107958409852,4,4,2,3,52.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0401528116673757,7590.051408766596,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3383,1,63.0,226.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,417.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,103388,1,2,0,0,1,,739.0,530.0,22,1.0,1.0,3.0,2.0,1.5,2,2,218.637952917648,0.0,32650.26249775158,0,4,2,3,72.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012771719676946432,21766.84166516772,6,3,6,6_0,6_2,6_0_0 +3384,2,35.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,2007.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,103389,2,1,0,0,1,,119.0,475.0,12,1.0,2.0,3.0,1.0,1.0,1,1,2279.79941711888,0.0,21099.0,0,1,2,3,65.0,5,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09512299161097683,21099.0,5,3,5,5_0,5_2,5_0_1 +3385,2,41.0,0.0,1,111,700.0,1650.0,0.0,77,62,0.0,0.0,1193.6403803604428,2350.0,0.0,3132.5316791006517,43,0,0,0,0,0,0,0,0,0,,1,,1,103390,2,1,1,0,1,,600.0,395.0,42,1.0,4.0,4.0,4.0,2.3,3,3,249.928615189623,700.0,18042.619794236372,6,1,2,3,72.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13024716071169976,7844.617301841901,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +3386,2,88.0,0.0,1,111,750.0,130.0,0.0,0,77,0.0,0.0,1278.9004075290459,880.0,0.0,246.80552623217258,70,0,0,0,0,0,0,0,0,0,,1,,1,103391,2,1,2,0,1,,131.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,258.337963004235,750.0,26783.357029293726,0,5,0,1,70.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0328562248204181,17855.571352862484,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3387,2,85.0,0.0,2,111,0.0,0.0,2000.0,77,75,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,70,0,0,0,0,0,0,0,0,0,,1,,2,103392,1,2,4,0,2,,220.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,221.036110922381,0.0,28356.406387779847,5,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07053079902472752,18904.270925186564,5,3,5,5_1,5_3,5_0_1 +3388,2,62.0,0.0,2,111,500.0,1000.0,0.0,0,86,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,103393,2,2,0,0,1,,0.0,356.0,31,1.0,3.0,3.0,4.0,2.5,4,4,869.171538727953,500.0,31320.28709950718,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04789228129468846,12528.11483980287,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +3389,2,65.0,0.0,2,111,593.0,1366.0,0.0,56,43,0.0,0.0,1011.1839222196322,1959.0,0.0,2593.3565294857517,33,0,0,0,0,0,0,0,0,2,90.0,1,,2,103394,1,1,1,0,1,,281.0,790.0,43,2.0,3.0,3.0,2.0,1.5,2,2,1518.29143122359,593.0,66683.97544048555,1,1,2,3,76.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02937737270550671,44455.98362699037,10,5,10,10_1,10_2,10_0_1 +3390,1,34.0,466.0,9,111,660.0,1163.0,0.0,63,62,0.0,0.0,1125.4323586255605,1943.0,166.2707070475825,2207.960207753975,50,1,2,2,1,1,2,2,2,2,20.0,1,2007.0,6,103395,2,1,1,0,1,,320.0,706.0,43,2.0,0.0,4.0,5.0,2.4,2,2,262.509933810052,660.0,31258.91146961932,1,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.06215827450960378,13024.546445674718,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +3391,2,56.0,0.0,5,111,260.0,0.0,0.0,54,62,0.0,0.0,443.3521412767359,588.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,3,103396,2,1,0,1,1,833.0,0.0,382.0,43,2.0,3.0,3.0,2.0,1.5,2,2,716.436649918058,260.0,41572.3373455009,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014144020700910516,27714.891563667265,7,4,7,7_0,7_4,7_0_0 +3392,2,34.0,0.0,5,111,800.0,,,85,53,0.0,0.0,,803.0,4.156767676189563,,20,0,0,0,0,0,0,0,0,0,,1,,3,103397,2,2,0,0,2,,300.0,275.0,42,1.0,0.0,5.0,5.0,2.4,2,2,129.4038102691924,800.0,64198.89077680607,6,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012508004270536553,26749.537823669194,7,4,7,7_1,7_2,7_0_0 +3393,2,29.0,0.0,5,112,1100.0,0.0,0.0,0,46,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,103398,2,1,0,0,1,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1074.92419068438,1100.0,35819.138617931465,0,1,2,3,50.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030709839556256877,35819.138617931465,9,5,9,9_0,9_0,9_0_0 +3394,1,47.0,65.0,6,221,600.0,,,0,54,0.0,0.0,,720.0,166.2707070475825,,43,0,0,0,0,0,0,0,0,2,45.0,2,,4,103399,2,2,0,0,2,,500.0,456.0,32,2.0,1.0,4.0,2.0,1.5,2,2,75.63191212923263,600.0,22847.060701984534,0,1,2,3,89.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03151390060155351,15231.373801323023,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +3395,2,31.0,0.0,9,111,600.0,1080.0,0.0,43,48,0.0,0.0,1023.1203260232367,1680.0,0.0,2050.384371774972,60,2,1,2,1,2,2,2,2,2,5.0,1,2009.0,6,103400,1,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,321.558660598557,600.0,63384.727954870046,1,1,1,2,115.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.026504807296738115,30183.203788033356,8,4,8,8_1,8_3,8_0_0 +3396,0,79.0,0.0,7,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,4620.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,103401,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,167.61442956615,0.0,12840.450603443762,0,5,5,0,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.3598004573734299,12840.450603443762,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +3397,2,68.0,0.0,2,111,250.0,0.0,0.0,77,90,0.0,0.0,426.3001358430153,250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,103402,2,2,0,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,921.670894056837,250.0,68068.15006457787,6,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0036727896933120563,45378.766709718584,10,5,10,10_0,10_4,10_0_1 +3398,2,57.0,0.0,1,112,760.0,0.0,0.0,0,62,0.0,0.0,1295.9524129627664,760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,103403,2,2,2,0,1,,66.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,642.233941548429,760.0,23702.51702828496,0,1,1,2,50.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0320641052211066,23702.51702828496,6,3,6,6_1,6_0,6_1_0 +3399,2,56.0,0.0,2,111,200.0,0.0,0.0,0,65,527.3414255183008,0.0,341.04010867441224,780.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,2,7.0,1,,2,103404,2,1,3,0,2,,160.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1667.09850160703,200.0,21063.87536008684,0,1,1,2,60.0,7,6,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03703022291320586,21063.87536008684,5,3,5,5_1,5_2,5_0_1 +3400,2,67.0,0.0,5,111,700.0,0.0,0.0,77,75,0.0,1032.9752760679746,1193.6403803604428,1585.0,145.4868686666347,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103405,2,1,2,0,1,,310.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1346.63896982964,700.0,36616.56639209943,5,5,0,1,89.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04328641803896685,24411.044261399617,7,4,7,7_1,7_2,7_0_0 +3401,2,30.0,0.0,2,111,324.0,1230.0,0.0,22,54,0.0,0.0,552.4849760525478,1554.0,0.0,2335.1599789659404,41,0,0,0,0,0,0,0,0,3,45.0,2,,2,103406,2,1,0,0,1,,300.0,458.0,43,2.0,0.0,3.0,3.0,1.8,2,2,76.7316784788587,324.0,25638.82901276929,1,1,2,3,82.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060611192470063205,14243.793895982937,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +3402,1,85.0,270.0,1,111,210.0,1440.0,0.0,0,86,0.0,0.0,358.0921141081328,1650.0,0.0,2733.845829033296,71,0,0,0,0,0,0,0,0,0,,1,,1,103407,2,2,1,0,1,,120.0,389.0,11,0.0,7.0,4.0,1.0,1.0,1,1,80.7863339134755,210.0,10682.877294207148,0,5,2,3,75.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1544527709678667,10682.877294207148,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +3403,2,87.0,0.0,1,111,290.0,0.0,0.0,77,78,2109.365702073203,0.0,494.50815757789775,2380.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103408,2,3,3,0,1,,120.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,837.466093811513,290.0,32684.10341161454,5,5,0,1,100.0,4,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07281827407124924,21789.40227440969,6,3,6,6_1,6_1,6_1_0 +3404,2,67.0,0.0,2,300,1080.0,0.0,0.0,77,77,0.0,0.0,1841.6165868418261,1130.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103409,2,1,3,0,1,,360.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,268.890275240733,1080.0,26337.499752670832,5,5,0,1,90.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04290460410485278,17558.33316844722,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +3405,2,46.0,0.0,1,120,537.0,0.0,0.0,63,62,1582.0242765549024,0.0,915.6926917907969,2037.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,103410,2,2,2,0,1,,544.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,1698.38657875071,537.0,30715.17148789843,1,1,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06631901764906518,15357.585743949216,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +3406,2,54.0,0.0,6,111,649.0,0.0,0.0,0,63,0.0,423.78472864327165,1106.6751526484677,1019.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,103411,2,2,1,0,1,,170.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,1273.01978352221,649.0,30360.839703438356,0,1,0,1,130.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03356297157632958,30360.839703438356,8,4,8,8_1,8_2,8_0_0 +3407,0,62.0,0.0,1,112,120.0,,,0,86,0.0,0.0,,204.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,1,103412,2,2,0,0,2,,300.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,80.95395269381392,120.0,6362.841424189946,0,5,5,0,95.0,6,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03206114790546918,6362.841424189946,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +3408,2,46.0,0.0,5,112,306.0,100.0,0.0,0,52,0.0,0.0,521.7913662718507,406.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,1,5.0,2,,3,103413,2,1,0,1,1,740.0,0.0,314.0,32,2.0,0.0,3.0,3.0,2.0,3,2,798.247510699096,306.0,33479.33452491688,0,1,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012126883815382768,16739.66726245844,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +3409,2,49.0,0.0,5,211,400.0,,,42,52,0.0,0.0,,610.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,1,5.0,1,,3,103414,2,2,0,0,2,,400.0,700.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,4,4,106.86199532892614,400.0,38229.13478287995,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01595641657768239,12331.97896221934,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3410,2,41.0,0.0,2,112,480.0,,,0,63,0.0,0.0,,600.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,103415,2,1,0,0,2,,320.0,,12,1.0,0.0,8.0,1.0,1.0,1,1,111.19845920042377,480.0,7248.350766989237,0,4,0,1,106.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08277745093857031,7248.350766989237,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +3411,2,66.0,0.0,2,111,269.0,962.0,0.0,0,78,0.0,119.18945493092015,458.69894616708444,1321.0,0.0,1826.360894118077,71,0,0,0,0,0,0,0,0,0,,1,,2,103416,2,1,2,0,2,,199.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,342.204917410436,269.0,19876.91694107452,0,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06645899884353938,19876.91694107452,5,3,5,5_1,5_2,5_0_1 +3413,2,46.0,0.0,7,111,240.0,,,68,63,0.0,0.0,,303.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,3,30.0,2,,5,103418,2,2,0,0,2,,180.0,640.0,43,2.0,1.0,2.0,2.0,1.5,2,2,109.17484455862156,240.0,13963.760617760618,1,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021699025663230856,9309.173745173744,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +3414,2,43.0,0.0,7,211,450.0,,,56,62,0.0,0.0,,582.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,103419,2,2,0,0,2,,200.0,,43,2.0,1.0,5.0,4.0,2.5,4,3,116.55599163080477,450.0,35863.52463600418,1,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016228187438546333,14345.40985440167,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3416,2,60.0,0.0,1,112,699.3,0.0,0.0,0,56,582.7122751977223,0.0,1192.4467399800824,1308.0,77.59299662220518,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,103421,2,2,0,1,1,,403.0,406.0,12,1.0,3.0,5.0,1.0,1.0,1,1,1740.66825738975,699.3,18548.47240394664,0,1,2,3,90.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07051793654563657,18548.47240394664,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +3417,2,45.0,0.0,1,111,1000.0,1950.0,0.0,54,21,0.0,662.163638505112,1705.2005433720612,3450.0,0.0,3702.0828934825886,31,0,0,0,0,0,0,0,0,0,,1,,1,103422,2,1,1,0,1,,360.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1231.95740297227,1000.0,60393.22794451723,1,1,1,2,240.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05712561022850918,25163.84497688218,7,4,7,7_1,7_2,7_1_0 +3419,2,41.0,0.0,9,111,1040.0,0.0,0.0,0,47,0.0,0.0,1773.4085651069436,1040.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,103424,2,1,1,0,1,,180.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1168.38343983523,1040.0,25362.32263890805,0,1,1,2,143.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04100570814459035,25362.32263890805,7,4,7,7_1,7_2,7_0_0 +3420,2,57.0,0.0,2,111,571.0,1000.0,0.0,34,33,0.0,198.6490915515336,973.6695102654469,1721.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,103425,2,2,1,0,2,,313.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1593.37560641103,571.0,73439.97722242947,1,1,1,2,98.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02343410312870284,48959.98481495298,10,5,10,10_1,10_3,10_0_1 +3421,2,74.0,0.0,9,111,820.0,0.0,0.0,75,75,0.0,0.0,1398.2644455650902,820.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,103426,2,2,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1068.91623777393,820.0,52727.51351950028,5,5,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015551653117432484,35151.675679666856,9,5,9,9_0,9_4,9_0_0 +3422,2,26.0,0.0,9,111,300.0,,,0,21,0.0,0.0,,300.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,103427,2,2,0,0,2,,310.0,422.0,12,1.0,0.0,2.0,1.0,1.0,1,1,172.12923541637852,300.0,1341.0545813799472,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.22370454131054052,1341.0545813799472,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +3423,2,44.0,0.0,9,211,1900.0,0.0,0.0,42,34,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,103428,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,5.0,3.0,5,3,1474.91125682985,1900.0,51892.814641939374,1,1,1,2,180.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03661393225844479,17297.604880646457,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3424,2,38.0,0.0,2,212,0.0,0.0,0.0,54,53,0.0,0.0,0.0,4348.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,2,103429,2,1,2,0,1,,220.0,637.0,43,2.0,0.0,5.0,2.0,1.5,2,2,804.211689375085,0.0,36436.65828089685,1,1,2,3,110.0,1,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11933037235414055,24291.105520597903,7,4,7,7_1,7_0,7_0_1 +3425,2,41.0,0.0,7,111,920.0,0.0,0.0,52,52,0.0,132.4327277010224,1568.7844999022964,1020.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,20.0,2,,5,103430,1,3,0,0,1,,603.0,696.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2814.40742459042,920.0,40911.773387386485,1,1,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,0,0,0,0.0249316985196852,22728.76299299249,6,3,6,6_0,6_2,6_0_0 +3426,1,43.0,420.0,1,111,130.0,620.0,0.0,85,67,0.0,0.0,221.67607063836795,1050.0,415.67676761895626,1177.072509722669,71,0,0,0,0,0,0,0,0,0,,2,,1,103431,2,2,0,0,1,,0.0,650.0,42,1.0,1.0,3.0,4.0,2.1,2,2,522.435819366904,130.0,15334.969798005839,6,4,2,3,72.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06847095324156048,7302.366570478971,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +3427,2,38.0,0.0,7,112,1100.0,0.0,0.0,43,38,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,1,,5,103432,2,1,2,0,1,,271.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,621.658540129125,1100.0,73980.85434953282,1,1,0,1,105.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014868711772412052,49320.56956635521,10,5,10,10_1,10_2,10_0_0 +3428,2,40.0,0.0,8,111,1500.0,0.0,0.0,31,46,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,15.0,2,2000.0,6,103433,2,1,0,0,1,,0.0,1200.0,43,2.0,0.0,4.0,4.0,2.1,2,2,652.334415346335,1500.0,94670.84376907752,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015844371300406085,45081.3541757512,10,5,10,10_0,10_4,10_0_0 +3429,2,60.0,0.0,5,111,450.0,0.0,0.0,72,75,2003.897416969543,0.0,767.3402445174275,2460.0,152.4148147936173,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,103434,2,1,3,0,1,,467.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1149.41095282924,450.0,36504.80298917158,5,5,0,1,101.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06738839271998565,24336.535326114386,7,4,7,7_1,7_3,7_0_0 +3430,2,44.0,0.0,5,111,592.0,594.0,0.0,0,42,0.0,0.0,1009.4787216762602,1186.0,0.0,1127.7114044762347,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,103435,2,3,0,0,1,,0.0,,32,1.0,0.0,6.0,2.0,1.5,2,1,430.340758408327,592.0,29403.27564073851,0,1,0,1,128.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.040335642004348186,19602.18376049234,5,3,5,5_0,5_3,5_0_0 +3431,2,63.0,0.0,2,111,160.0,80.0,0.0,77,72,0.0,0.0,272.8320869395298,240.0,0.0,151.8803238351831,71,2,1,2,2,1,1,2,1,0,,2,,2,103436,1,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,347.430378518736,160.0,16680.630831409668,7,5,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.014387945061890551,11120.420554273112,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +3432,2,65.0,0.0,1,111,98.0,400.0,0.0,0,75,0.0,0.0,167.109653250462,498.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,1,,1,103437,2,1,2,0,1,,132.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,253.436159459788,98.0,22185.405234443526,0,5,0,1,85.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02244718970590808,22185.405234443526,6,3,6,6_1,6_2,6_1_0 +3433,2,79.0,0.0,2,111,277.0,1204.0,0.0,0,74,0.0,0.0,472.34055051406096,1481.0,0.0,2285.798873719506,60,0,0,0,0,0,0,0,0,0,,1,,2,103438,2,1,1,0,1,,179.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,252.72852135289,277.0,22363.148596513693,0,5,0,1,85.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06622502165150755,22363.148596513693,6,3,6,6_1,6_2,6_0_1 +3434,2,58.0,0.0,5,111,0.0,0.0,941.0,85,64,0.0,0.0,593.1295112802738,941.0,0.0,1126.1249508583646,70,0,0,0,0,0,0,0,0,2,15.0,2,,3,103439,2,2,0,0,2,,0.0,503.0,42,2.0,5.0,4.0,3.0,2.0,3,3,911.438165742338,0.0,27423.92828919842,6,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03431310022680579,13711.96414459921,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +3435,2,67.0,0.0,1,300,600.0,1030.0,0.0,75,74,0.0,0.0,1023.1203260232367,1630.0,0.0,1955.4591693779826,60,0,0,0,0,0,0,0,0,0,,1,,1,103440,2,1,1,0,1,,450.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1398.7510988524,600.0,94740.24456984607,5,5,0,1,175.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017204937641873013,63160.16304656404,10,5,10,10_1,10_0,10_1_0 +3436,2,58.0,0.0,6,112,1700.0,0.0,0.0,22,38,0.0,331.081819252556,2898.840923732504,1950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,75.0,1,,4,103441,2,1,2,0,1,,300.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,817.813585671694,1700.0,70089.91365601934,6,1,0,1,90.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027821406794278927,46726.609104012896,10,5,10,10_1,10_1,10_0_0 +3437,2,60.0,0.0,2,112,600.0,0.0,0.0,71,11,0.0,331.081819252556,1023.1203260232367,990.0,193.98249155551292,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,103442,2,2,2,0,2,,200.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,1353.79577792272,600.0,31605.311379175066,5,1,0,1,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031323848960789456,21070.20758611671,5,3,5,5_1,5_0,5_0_1 +3438,1,43.0,350.0,6,111,1050.0,0.0,0.0,85,63,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,103443,1,3,0,0,2,,150.0,500.0,42,1.0,3.0,2.0,3.0,1.8,2,2,1421.54669875652,1050.0,13279.133523596607,6,1,2,3,46.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07907142421108898,7377.296401998115,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3439,0,81.0,0.0,7,111,282.0,,,0,86,0.0,0.0,,374.0,127.47420873647992,,70,0,0,0,0,0,0,0,0,0,,2,,5,103444,1,2,0,0,2,,246.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,149.3531729487499,282.0,11369.269572779878,0,5,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032895692868029514,11369.269572779878,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +3440,1,57.0,271.0,1,111,350.0,900.0,0.0,0,56,0.0,0.0,596.8201901802214,1300.0,69.27946126982604,1708.65364314581,70,0,0,0,0,0,0,0,0,0,,1,,1,103445,2,3,2,0,1,,210.0,369.0,12,1.0,0.0,4.0,1.0,1.0,1,1,374.189936993362,350.0,6070.001412874457,0,4,2,3,72.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2141679896882237,6070.001412874457,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +3441,2,59.0,0.0,2,111,439.0,3002.0,0.0,46,62,0.0,0.0,748.5830385403349,3441.0,0.0,5699.309151915247,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,103446,2,3,3,0,1,,629.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1027.14062397276,439.0,86352.71213155292,1,1,0,1,112.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03984819833750969,57568.47475436862,10,5,10,10_1,10_4,10_0_1 +3442,0,86.0,0.0,2,111,500.0,1308.0,0.0,0,75,0.0,0.0,852.6002716860306,1808.0,0.0,2483.243294705244,70,0,0,0,0,0,0,0,0,0,,1,,2,103447,1,2,3,0,1,,410.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,338.115848816939,500.0,21040.2582385208,0,5,5,0,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0859305042506507,21040.2582385208,5,3,5,5_1,5_3,5_0_1 +3443,2,45.0,0.0,7,212,1160.0,0.0,0.0,0,21,0.0,0.0,1978.032630311591,1220.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,5,103448,2,1,1,0,1,,84.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,812.095836584586,1160.0,16911.6756726058,0,1,0,1,77.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0721395102187422,11274.450448403868,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3444,2,64.0,0.0,2,300,700.0,0.0,0.0,52,75,1898.4291318658827,0.0,1193.6403803604428,2560.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103449,2,1,1,0,1,,219.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,1395.10820566883,700.0,33324.11896540211,1,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07682123577394058,22216.079310268073,6,3,6,6_1,6_0,6_0_1 +3445,1,55.0,192.0,5,112,800.0,0.0,0.0,85,47,79.10121382774511,0.0,1364.160434697649,875.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,10.0,2,,3,103450,1,1,0,1,2,82.0,400.0,349.0,42,3.0,2.0,4.0,5.0,2.8,4,4,1064.81091938191,800.0,9411.225697134189,6,1,2,3,72.0,10,2,2,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09297407459545319,3361.152034690782,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +3446,2,71.0,0.0,5,111,480.0,0.0,0.0,0,74,0.0,0.0,818.4962608185893,549.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,103451,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1983.83886092567,480.0,43331.58079202559,0,5,0,1,67.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012669743174960137,43331.58079202559,10,5,10,10_0,10_2,10_0_0 +3447,2,59.0,0.0,1,112,1010.0,0.0,0.0,72,37,3532.1328681215787,0.0,1722.2525488057818,4419.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,103452,2,1,2,0,1,,456.0,,42,1.0,1.0,3.0,3.0,2.0,3,3,1823.4656405449,1010.0,78931.48451662679,5,1,0,1,120.0,8,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0559852640180503,39465.742258313396,9,5,9,9_1,9_1,9_1_0 +3448,2,45.0,0.0,1,111,408.0,995.0,0.0,21,21,0.0,0.0,695.7218216958009,1403.0,0.0,1889.01152770009,31,0,0,0,0,0,0,0,0,0,,1,,1,103453,2,2,1,0,1,,445.0,,43,3.0,0.0,6.0,4.0,2.5,4,2,1064.15338206256,408.0,54899.35750850085,1,1,0,1,123.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02555585463423235,21959.74300340034,6,3,6,6_1,6_3,6_1_0 +3449,2,38.0,0.0,1,112,1200.0,0.0,0.0,22,22,0.0,158.91927324122688,2046.2406520464733,1390.0,96.99124577775646,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,103454,2,1,1,0,1,,490.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1850.1877984274,1200.0,23751.21457636803,1,1,0,1,95.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05852332290336939,13195.119209093351,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +3450,2,84.0,0.0,7,112,799.0,0.0,0.0,0,71,0.0,0.0,1362.455234154277,835.0,49.88121211427475,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,103455,2,1,2,0,1,,323.0,324.0,11,0.0,1.0,3.0,1.0,1.0,1,1,969.039186818663,799.0,16973.2633426544,0,5,2,3,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04919501825565953,16973.2633426544,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3451,2,58.0,0.0,9,111,675.0,0.0,0.0,52,63,1482.8840885574618,0.0,1151.0103667761414,2081.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,103456,2,1,1,0,1,,280.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,774.512499358781,675.0,77334.82127293068,1,1,1,2,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02690896501403576,30933.928509172274,8,4,8,8_1,8_3,8_0_0 +3452,1,49.0,260.0,9,111,300.0,,,0,52,0.0,0.0,,384.0,116.38949493330776,,71,2,2,2,2,1,2,2,2,1,20.0,1,2004.0,6,103457,2,1,0,0,1,,180.0,,22,2.0,3.0,6.0,2.0,1.5,2,2,122.5692930696549,300.0,6002.563829787234,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.06397266416300837,4001.709219858156,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +3453,2,71.0,0.0,2,111,180.0,0.0,0.0,0,77,0.0,0.0,306.936097806971,180.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,103458,2,1,0,1,1,32.0,180.0,276.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1328.18466213867,180.0,17219.035567260024,0,5,2,3,70.0,3,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010453547139553442,17219.035567260024,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +3454,2,29.0,0.0,9,111,1172.0,0.0,0.0,43,43,0.0,0.0,1998.4950368320558,1172.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,103459,2,1,1,0,1,,413.0,710.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1117.53093992854,1172.0,47802.65325504169,1,1,2,3,70.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024517467550326626,31868.435503361125,8,4,8,8_1,8_3,8_0_0 +3455,2,43.0,0.0,8,222,547.0,720.0,0.0,56,85,0.0,0.0,932.7446972245175,1267.0,0.0,1366.922914516648,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,103460,2,1,3,0,1,,209.0,,42,1.0,0.0,5.0,5.0,2.8,4,3,1226.45675207148,547.0,46367.74125584237,1,7,1,2,101.0,1,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027325031707046053,16559.907591372274,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3456,2,57.0,0.0,2,111,360.0,300.0,0.0,56,68,0.0,0.0,613.872195613942,660.0,0.0,569.5512143819367,71,2,1,2,1,1,2,2,2,0,,2,,2,103461,2,3,0,1,1,853.0,0.0,350.0,43,3.0,1.0,4.0,3.0,2.0,3,3,218.326557360805,360.0,48578.06094638686,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013586380088913151,24289.03047319343,7,4,7,7_0,7_4,7_0_1 +3457,2,58.0,0.0,6,111,10291.0,1452.0,0.0,42,34,0.0,0.0,17548.218791841882,11743.0,0.0,2756.6278776085737,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,103462,2,1,2,0,1,,520.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,828.541862914267,10291.0,174175.6818264924,1,1,1,2,160.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06742043364984762,116117.1212176616,10,5,10,10_1,10_3,10_0_0 +3458,1,31.0,319.0,8,112,1000.0,0.0,0.0,85,11,2109.365702073203,0.0,1705.2005433720612,3160.0,221.69427606344334,0.0,42,0,0,0,0,0,0,0,0,0,,1,2003.0,6,103463,2,1,1,0,1,,250.0,680.0,42,1.0,0.0,7.0,6.0,2.6999999999999997,2,2,284.411268205972,1000.0,35910.33891887576,6,1,2,3,166.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08799694169243809,13300.12552550954,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +3459,2,28.0,0.0,5,111,700.0,0.0,0.0,33,33,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,3,103464,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1265.6423854789,700.0,51641.74587791777,1,1,1,2,71.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013554925150184029,34427.83058527851,9,5,9,9_0,9_3,9_0_0 +3460,0,57.0,0.0,6,400,600.0,,,85,74,0.0,0.0,,732.0,182.89777775234077,,42,0,0,0,0,0,0,0,0,0,,1,,4,103465,2,1,0,0,2,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,108.39580811790825,600.0,44878.47595058385,6,5,5,0,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01631071431226882,29918.9839670559,8,4,8,8_1,8_1,8_0_0 +3461,2,35.0,0.0,9,111,0.0,0.0,0.0,46,45,0.0,0.0,0.0,889.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,7.0,1,2012.0,6,103466,2,1,1,0,1,,284.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,232.256293888899,0.0,51331.0927755223,1,1,1,2,86.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017318937741842264,28517.273764179055,8,4,8,8_1,8_3,8_0_0 +3462,2,58.0,0.0,2,111,690.0,270.0,0.0,46,56,0.0,0.0,1176.5883749267223,960.0,0.0,512.596092943743,71,2,1,2,1,1,2,2,2,0,,2,,2,103467,2,3,0,1,1,1305.0,0.0,814.0,43,2.0,4.0,6.0,2.0,1.5,2,2,201.286277081859,690.0,80387.43416519964,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011942164966071173,53591.622776799755,10,5,10,10_0,10_4,10_0_1 +3463,2,79.0,0.0,2,111,93.0,,,0,72,0.0,0.0,,139.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,2,103468,2,2,0,0,2,,400.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,126.26300408212427,93.0,5650.844494892168,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024598093280684494,5650.844494892168,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +3464,2,56.0,0.0,1,111,800.0,1300.0,0.0,75,34,0.0,0.0,1364.160434697649,2100.0,0.0,2468.055262321726,10,0,0,0,0,0,0,0,0,1,3.0,1,,1,103469,1,1,2,0,1,,800.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,458.024275501228,800.0,84167.16671840285,5,1,0,1,165.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024950346814286224,56111.444478935235,10,5,10,10_1,10_2,10_1_0 +3465,0,38.0,0.0,6,112,240.0,,,69,81,0.0,0.0,,1296.0,1463.1822220187262,,71,0,0,0,0,0,0,0,0,0,,1,,4,103470,1,2,0,0,2,,232.0,,43,2.0,1.0,3.0,4.0,2.3,4,2,132.1770093197208,240.0,14102.399759674841,4,4,5,0,72.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0918992527573819,6131.478156380366,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3466,2,61.0,0.0,1,111,460.0,800.0,0.0,0,74,0.0,0.0,784.3922499511482,1260.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,0,,1,,1,103471,2,1,1,0,1,,150.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,800.850226493507,460.0,25868.863804596844,0,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04870720297255964,25868.863804596844,7,4,7,7_1,7_4,7_1_0 +3467,2,79.0,0.0,1,120,1000.0,0.0,0.0,71,78,0.0,1986.490915515336,1705.2005433720612,2800.0,415.67676761895626,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,103472,1,1,4,0,1,,300.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,164.726691742722,1000.0,24302.870363135025,5,5,0,1,70.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.11521272829761353,16201.91357542335,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3468,1,36.0,284.0,7,111,300.0,0.0,0.0,85,63,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,15.0,2,,5,103473,2,2,0,1,1,1080.0,0.0,444.0,42,1.0,0.0,3.0,3.0,1.8,2,2,308.87462176268,300.0,17345.363588967866,6,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.017295688179797417,9636.313104982148,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +3469,2,40.0,0.0,8,112,524.0,541.0,0.0,52,62,0.0,900.5425483669522,893.52508472696,1745.0,0.0,1027.0906899354259,60,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,103474,2,1,2,0,1,,576.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1536.30816948166,524.0,53879.90694417507,1,1,1,2,110.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03238684138426581,23426.04649746742,6,3,6,6_1,6_0,6_0_0 +3470,0,81.0,0.0,6,111,300.0,0.0,0.0,78,75,0.0,92.70290939071567,511.56016301161833,440.0,96.99124577775646,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,103475,2,1,2,0,1,,340.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1135.6831802836,300.0,49543.92116346101,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008881008803245535,33029.28077564068,8,4,8,8_1,8_3,8_0_0 +3471,1,71.0,154.0,5,221,0.0,0.0,0.0,0,74,0.0,0.0,0.0,794.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,103476,1,2,0,0,2,,69.0,475.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2725.59857511698,0.0,8911.143590961925,0,5,2,3,40.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08910191962402107,8911.143590961925,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +3472,2,47.0,0.0,1,112,1800.0,0.0,0.0,63,38,0.0,264.8654554020448,3069.36097806971,2100.0,138.5589225396521,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,103477,2,1,1,0,1,,240.0,,43,2.0,0.0,7.0,5.0,2.6,3,2,712.929712352509,1800.0,93433.1274960315,1,1,0,1,200.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02247596817402046,35935.818267704424,9,5,9,9_1,9_0,9_1_0 +3473,2,43.0,0.0,2,111,311.0,876.0,0.0,0,46,0.0,0.0,530.317368988711,1187.0,0.0,1663.089545995255,42,2,2,2,2,1,2,2,2,2,10.0,2,,2,103478,2,1,0,0,1,,0.0,585.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1173.151089149,311.0,21513.819715184138,0,1,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.05517383782677294,21513.819715184138,6,3,6,6_0,6_3,6_0_1 +3474,2,42.0,0.0,9,112,650.0,0.0,0.0,0,64,1265.6194212439218,529.7309108040896,1108.3803531918397,2250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,103479,2,1,1,0,1,,66.0,470.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1286.85500605115,650.0,34366.3017147846,0,1,2,3,100.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06547111233188167,22910.867809856398,6,3,6,6_1,6_0,6_0_0 +3475,2,69.0,0.0,9,111,330.0,800.0,0.0,52,78,0.0,0.0,562.7161793127802,1130.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,103480,2,3,0,1,1,,0.0,400.0,42,1.0,3.0,3.0,2.0,1.5,2,2,1231.11259656289,330.0,23090.0,1,5,2,3,72.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04893893460372455,15393.333333333334,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +3476,2,68.0,0.0,2,111,906.0,0.0,0.0,74,75,2214.833987176863,0.0,1544.9116922950875,3146.0,193.98249155551292,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,103481,2,1,2,0,2,,105.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,397.439482869759,906.0,33650.47617016585,5,5,2,3,118.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09349050468383,22433.650780110565,6,3,6,6_1,6_3,6_0_1 +3477,2,51.0,0.0,6,112,834.0,0.0,0.0,52,46,316.40485531098045,529.7309108040896,1422.137253172299,1624.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,4,103482,2,1,2,0,1,,420.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1074.47549918209,834.0,62411.86308697398,1,1,0,1,100.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026020694138498585,41607.90872464932,9,5,9,9_1,9_0,9_0_0 +3478,2,58.0,0.0,7,111,1911.0,0.0,0.0,77,31,0.0,0.0,3258.638238384009,7257.0,7407.359998969801,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,103483,2,1,2,0,1,,3000.0,,42,1.0,1.0,8.0,2.0,1.5,2,2,902.362929870678,1911.0,156690.07084836476,6,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04631435776822699,104460.04723224317,10,5,10,10_1,10_4,10_0_0 +3479,2,63.0,0.0,1,111,320.0,640.0,0.0,0,90,0.0,0.0,545.6641738790596,960.0,0.0,1215.0425906814648,60,0,0,0,0,0,0,0,0,0,,2,,1,103484,2,2,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,937.449188069898,320.0,26616.66057217555,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03606763505875572,26616.66057217555,7,4,7,7_0,7_4,7_1_0 +3480,2,60.0,0.0,5,111,483.0,1260.0,0.0,77,22,0.0,0.0,823.6118624487056,1743.0,0.0,2392.115100404134,12,0,0,0,0,0,0,0,0,0,,1,,3,103485,2,1,2,0,1,,331.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,508.536741131279,483.0,75589.73909056146,6,1,0,1,275.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023058685225937504,50393.15939370764,10,5,10,10_1,10_3,10_0_0 +3481,0,93.0,0.0,1,111,0.0,0.0,1160.0,0,77,0.0,0.0,731.1692168811028,1160.0,0.0,1388.2092911750296,70,0,0,0,0,0,0,0,0,0,,2,,1,103486,2,1,0,0,1,,103.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1661.10441482822,0.0,15296.778094219058,0,5,0,1,50.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07583296252682033,15296.778094219058,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +3482,2,52.0,0.0,1,112,2069.01,0.0,0.0,56,65,0.0,0.0,3528.0769762422287,2069.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,103487,2,2,2,0,1,,106.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,805.599350364018,2069.01,74243.6779169144,1,1,0,1,170.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02786769268509844,37121.8389584572,9,5,9,9_1,9_0,9_1_0 +3484,1,77.0,139.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,409.2481304092947,280.0,55.423569015860835,0.0,20,2,2,2,2,2,2,2,1,0,,2,,2,103489,2,2,0,1,1,361.0,119.0,259.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1506.64832196511,240.0,9705.816469125586,0,5,2,3,65.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.02884868067417987,9705.816469125586,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3485,2,70.0,0.0,2,112,430.0,0.0,0.0,0,78,0.0,370.8116375628627,733.2362336499863,770.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103490,1,3,4,0,2,,0.0,122.0,11,0.0,1.0,2.0,1.0,1.0,1,1,679.290914018037,430.0,16439.825860955763,0,5,2,3,65.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046837479089649824,16439.825860955763,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +3486,0,86.0,0.0,6,120,480.0,,,0,71,0.0,0.0,,564.0,116.38949493330776,,70,0,0,0,0,0,0,0,0,0,,1,,4,103491,2,1,0,0,1,,240.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,114.63683978393415,480.0,51783.651637829316,0,5,0,1,73.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010891468294753922,51783.651637829316,10,5,10,10_1,10_2,10_0_0 +3487,2,29.0,0.0,2,111,0.0,0.0,0.0,56,65,0.0,0.0,0.0,382.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,103492,2,2,0,1,2,325.0,303.0,560.0,43,2.0,0.0,3.0,2.0,1.5,2,2,393.085565069908,0.0,29894.419594777624,1,1,2,3,64.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012778304619325444,19929.613063185083,5,3,5,5_0,5_2,5_0_1 +3488,0,82.0,0.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,64.0,88.67771042537734,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103493,2,1,1,0,2,,185.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1233.86456902274,0.0,19405.0,0,5,0,1,50.0,9,1,7,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0032981190414841537,19405.0,5,3,5,5_1,5_1,5_1_0 +3489,2,58.0,0.0,5,111,0.0,0.0,0.0,72,46,0.0,0.0,0.0,1635.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,103494,2,2,5,0,1,,420.0,815.0,42,1.0,0.0,5.0,2.0,1.5,2,2,1144.74707863271,0.0,78220.17015723312,5,1,2,3,100.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020902536989032737,52146.78010482208,10,5,10,10_1,10_2,10_0_0 +3490,2,41.0,0.0,6,120,694.0,1495.0,0.0,63,34,0.0,0.0,1183.4091771002104,2189.0,0.0,2838.2635516699847,10,0,0,0,0,0,0,0,0,2,45.0,1,,4,103495,1,1,2,0,1,,567.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,269.799297277016,694.0,31601.413401993133,1,1,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06926905363865585,15800.706700996567,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3491,2,42.0,0.0,7,111,0.0,,,54,21,0.0,60.9190547424703,,138.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,,5,103496,2,3,0,0,2,,400.0,800.0,43,2.0,5.0,5.0,4.0,2.1,2,2,112.49099932958389,0.0,37166.247822149206,4,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037130463279577814,17698.213248642478,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3492,2,49.0,0.0,5,111,1500.0,1000.0,0.0,54,47,0.0,0.0,2557.8008150580918,2500.0,0.0,1898.504047939789,44,0,0,0,0,0,0,0,0,2,30.0,1,,3,103497,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,152.991425770673,1500.0,64749.44290138573,1,1,1,2,95.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038610370807476035,28151.93169625467,8,4,8,8_1,8_3,8_0_0 +3493,2,26.0,0.0,9,111,580.0,0.0,0.0,0,54,0.0,0.0,989.0163151557955,580.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,2,2010.0,6,103498,1,1,0,0,1,,240.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1346.68412098839,580.0,17251.135622739544,0,1,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033620975029346724,17251.135622739544,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +3494,2,71.0,0.0,2,111,200.0,,,0,78,0.0,0.0,,330.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,2,103499,2,1,0,0,2,,400.0,325.0,11,0.0,0.0,2.0,1.0,1.0,1,1,130.3778751735262,200.0,14658.0,0,5,2,3,30.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02251330331559558,14658.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3495,2,54.0,0.0,5,111,560.0,,,0,52,0.0,0.0,,700.0,193.98249155551292,,42,0,0,0,0,0,0,0,0,2,1.0,2,,3,103500,2,1,0,0,2,,580.0,370.0,32,2.0,0.0,5.0,4.0,2.3,3,2,222.27152003941185,560.0,35557.415428319044,0,1,3,4,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019686470221975075,15459.745838399585,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +3496,2,78.0,0.0,5,111,250.0,,,72,77,0.0,0.0,,488.0,329.770235644372,,71,0,0,0,0,0,0,0,0,0,,1,,3,103501,2,1,0,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,82.41640104595002,250.0,18172.90555113837,5,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026853163277978473,12115.27036742558,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3497,2,92.0,0.0,1,111,420.0,,,0,86,0.0,0.0,,672.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,1,103502,1,2,0,0,2,,210.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,132.57159446095875,420.0,12085.278185035664,0,5,0,1,128.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05560484332351485,8056.852123357109,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +3498,2,27.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,737.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,103503,2,1,0,0,2,,0.0,570.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1052.58910537591,0.0,25750.90066840126,0,1,2,3,65.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028620358157195148,25750.90066840126,7,4,7,7_0,7_3,7_1_0 +3499,2,76.0,0.0,1,112,0.0,0.0,0.0,71,71,0.0,0.0,0.0,96.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,103504,2,2,4,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,512.241143289204,0.0,44874.44454355436,5,5,0,1,100.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00213930224599937,29916.296362369572,8,4,8,8_1,8_0,8_1_0 +3500,2,68.0,0.0,1,400,744.0,0.0,0.0,0,74,0.0,463.51454695357836,1268.6692042688135,1214.0,166.2707070475825,0.0,20,2,1,2,2,1,2,2,2,0,,1,,1,103505,2,1,1,0,1,,324.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,942.117627195847,744.0,24301.942001880594,0,5,0,1,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.049954855455833745,24301.942001880594,7,4,7,7_1,7_0,7_1_0 +3501,2,75.0,0.0,1,400,320.0,0.0,0.0,75,72,0.0,0.0,545.6641738790596,3420.0,4295.326598729215,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,103506,2,1,2,0,1,,286.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1235.16443133934,320.0,32051.786700024808,5,5,0,1,240.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10670231996762143,21367.85780001654,6,3,6,6_1,6_0,6_1_0 +3502,2,62.0,0.0,7,112,1350.0,0.0,0.0,77,77,0.0,0.0,2302.0207335522828,1950.0,831.3535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,103507,2,1,1,0,1,,355.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,793.399379850071,1350.0,34556.79241478423,5,5,0,1,110.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05642884838946288,23037.86160985615,6,3,6,6_1,6_2,6_0_0 +3503,2,40.0,0.0,1,111,1050.0,0.0,0.0,37,37,0.0,0.0,1790.4605705406643,1120.0,96.99124577775646,0.0,31,2,2,1,2,1,2,2,2,3,60.0,2,,1,103508,1,2,0,0,2,,1200.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,334.942716324137,1050.0,45803.0612957191,4,1,0,1,69.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.024452514052912853,30535.374197146066,8,4,8,8_0,8_3,8_1_0 +3504,2,76.0,0.0,5,111,1208.0,0.0,0.0,74,74,0.0,450.2712741834761,2059.88225639345,1548.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,103509,2,1,2,0,1,,210.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,931.040575703654,1208.0,83897.23136826267,5,5,0,1,100.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018451145225581188,55931.48757884178,10,5,10,10_1,10_2,10_0_0 +3505,0,41.0,0.0,1,221,1900.0,0.0,0.0,52,63,0.0,0.0,3239.8810324069163,2000.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,103510,2,1,2,0,1,,790.0,,43,2.0,0.0,4.0,5.0,2.6,3,2,485.360676144188,1900.0,55321.74074959308,1,1,5,0,75.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036152152352774816,21277.59259599734,6,3,6,6_1,6_1,6_1_0 +3506,2,73.0,0.0,2,111,900.0,,,0,75,0.0,0.0,,992.0,127.47420873647992,,33,0,0,0,0,0,0,0,0,0,,1,,2,103511,2,2,0,0,1,,113.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,45.55274027190476,900.0,45649.18065754651,0,5,0,1,240.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021730948632831752,45649.18065754651,10,5,10,10_1,10_2,10_0_1 +3507,1,57.0,107.0,2,111,290.0,423.0,0.0,0,67,0.0,0.0,494.50815757789775,713.0,0.0,803.0672122785307,71,2,2,2,2,1,2,2,2,3,40.0,2,,2,103512,1,2,0,1,1,852.0,0.0,382.0,32,1.0,3.0,4.0,2.0,1.5,2,1,282.538870853588,290.0,18935.62133208099,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03765390041846821,12623.747554720661,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +3508,2,28.0,0.0,1,300,841.0,0.0,0.0,0,67,0.0,0.0,1434.0736569759035,856.0,20.783838380947813,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,103513,2,2,5,0,1,,120.0,350.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1266.19897760496,841.0,20407.19304313236,0,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041945994149747604,20407.19304313236,5,3,5,5_1,5_0,5_1_0 +3509,2,38.0,0.0,1,111,624.0,0.0,0.0,85,37,0.0,0.0,1064.0451390641663,624.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,35.0,2,,1,103514,2,2,0,0,1,,0.0,1153.0,42,1.0,0.0,3.0,3.0,1.8,2,2,831.139126326762,624.0,45178.774850005146,7,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013811795518397705,25099.31936111397,7,4,7,7_0,7_4,7_1_0 +3510,2,40.0,0.0,5,111,0.0,0.0,0.0,52,38,0.0,0.0,0.0,1146.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,3,103515,1,3,0,0,1,,168.0,410.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1465.22931112349,0.0,43279.02170206602,1,1,2,3,33.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026479341605480263,28852.68113471068,8,4,8,8_0,8_3,8_0_0 +3511,2,49.0,0.0,1,111,1080.0,0.0,0.0,0,46,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,30,2,2,1,2,1,2,2,2,2,15.0,2,,1,103516,1,2,0,0,1,,0.0,506.0,32,1.0,0.0,2.0,2.0,1.5,2,1,323.837932751991,1080.0,23151.342944653275,0,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04664956165099798,15434.22862976885,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +3512,2,60.0,0.0,6,111,1500.0,0.0,0.0,0,37,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,4,103517,2,1,0,0,1,,497.0,1380.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1287.31077906383,1500.0,379363.50609931257,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0039539912930036,379363.50609931257,10,5,10,10_0,10_4,10_0_0 +3513,2,42.0,0.0,1,111,92.0,1752.0,0.0,64,55,0.0,0.0,156.87844999022963,1844.0,0.0,3326.17909199051,50,0,0,0,0,0,0,0,0,3,15.0,1,,1,103518,2,1,1,0,1,,630.0,,43,2.0,3.0,3.0,3.0,1.8,2,2,1282.5732536113,92.0,25314.4230989335,4,1,1,2,70.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07284384845719387,14063.56838829639,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +3514,2,59.0,0.0,1,400,1050.0,0.0,0.0,56,69,759.3716527463531,0.0,1790.4605705406643,1870.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103519,1,3,4,0,2,,0.0,,43,2.0,6.0,5.0,2.0,1.5,2,2,960.075248651865,1050.0,26853.620204060986,1,4,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06963679331836256,17902.41346937399,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +3515,2,51.0,0.0,6,211,1505.0,0.0,0.0,34,34,0.0,635.6770929649075,2566.326817774952,1985.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,103520,2,1,3,0,1,,622.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,834.329462635495,1505.0,58594.04480137574,1,1,0,1,120.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033877162887949216,25475.671652772064,7,4,7,7_1,7_1,7_0_0 +3516,2,42.0,0.0,2,111,642.0,84.0,0.0,0,65,0.0,0.0,1094.7387488448633,726.0,0.0,159.4743400269423,50,2,1,2,2,1,2,2,2,2,5.0,2,,2,103521,2,3,0,1,1,527.0,270.0,208.0,12,1.0,0.0,2.0,1.0,1.0,1,1,336.848544284456,642.0,22662.617116192745,0,1,2,3,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03203513505425034,22662.617116192745,6,3,6,6_0,6_2,6_0_1 +3518,2,89.0,0.0,1,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,715.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103523,2,2,2,0,1,,231.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1123.85158256536,0.0,35209.93141306823,0,5,0,1,150.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020306770598667694,35209.93141306823,9,5,9,9_1,9_0,9_1_0 +3519,2,28.0,0.0,2,120,700.0,0.0,0.0,52,64,1898.4291318658827,662.163638505112,1193.6403803604428,3000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,103524,2,1,4,0,1,,200.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1785.2315922331,700.0,44297.08528538942,1,1,1,2,110.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0677245462240265,24609.49182521634,7,4,7,7_1,7_1,7_0_1 +3521,2,76.0,0.0,5,111,451.0,2130.0,0.0,75,72,0.0,0.0,769.0454450607996,2581.0,0.0,4043.8136221117506,50,0,0,0,0,0,0,0,0,0,,1,,3,103526,2,1,4,0,1,,260.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,885.101176884442,451.0,32152.99274607024,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08027246547105484,21435.32849738016,6,3,6,6_1,6_4,6_0_0 +3522,2,28.0,0.0,2,111,840.0,1280.0,0.0,63,68,0.0,0.0,1432.3684564325313,2120.0,0.0,2430.0851813629297,50,0,0,0,0,0,0,0,0,0,,1,,2,103527,2,2,1,0,1,,210.0,,43,2.0,0.0,1.0,3.0,1.8,2,2,759.127501362213,840.0,39563.98070630957,1,1,1,2,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053584092453616713,21979.989281283095,6,3,6,6_1,6_4,6_0_1 +3523,2,55.0,0.0,6,111,420.0,,,81,56,0.0,0.0,,696.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,103528,2,1,0,0,2,,544.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,98.06600761920484,420.0,14288.39222808679,4,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04871086885702004,5715.356891234716,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +3524,2,64.0,0.0,6,111,351.0,0.0,0.0,0,77,0.0,0.0,598.5253907235934,351.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,103529,2,1,0,1,1,350.0,0.0,366.0,11,0.0,4.0,3.0,1.0,1.0,1,1,371.025588288703,351.0,14353.79805541304,0,5,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024453458147102217,14353.79805541304,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +3525,2,38.0,0.0,6,111,864.0,,,85,56,0.0,0.0,,964.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,1,,4,103530,1,1,0,0,2,,400.0,,42,1.0,0.0,6.0,4.0,2.5,4,3,109.94206198671988,864.0,31935.59888137053,7,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03018574987683555,12774.239552548212,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3526,2,50.0,0.0,5,111,230.0,70.0,0.0,0,65,0.0,0.0,392.1961249755741,300.0,0.0,132.89528335578524,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,103531,2,2,0,1,1,750.0,0.0,306.0,32,2.0,1.0,3.0,2.0,1.5,2,2,431.003749440114,230.0,33015.35743707965,0,1,2,3,74.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009086680359942706,22010.23829138643,6,3,6,6_0,6_2,6_0_0 +3527,2,48.0,0.0,1,300,250.0,0.0,0.0,0,56,0.0,357.56836479276046,426.3001358430153,1920.0,1939.8249155551293,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,103532,2,2,1,0,1,,110.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,927.882153850561,250.0,13114.863555576003,0,4,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14639877813930285,13114.863555576003,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3528,2,57.0,0.0,7,111,560.0,0.0,0.0,42,42,0.0,0.0,954.9123042883542,879.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,5.0,1,,5,103533,2,1,1,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,410.935422906868,560.0,73105.99058225518,1,1,1,2,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012023638459709994,29242.396232902072,8,4,8,8_1,8_4,8_0_0 +3529,2,66.0,0.0,2,111,300.0,1300.0,0.0,77,78,0.0,0.0,511.56016301161833,1600.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,2,103534,2,2,2,0,1,,500.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1231.1122613649,300.0,34524.31873811471,5,5,0,1,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046344144026037114,23016.212492076473,6,3,6,6_1,6_2,6_0_1 +3530,1,44.0,380.0,9,111,950.0,,,85,55,0.0,66.2163638505112,,1040.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,103535,2,1,0,0,2,,240.0,,42,2.0,0.0,4.0,4.0,2.5,4,3,125.68633801631405,950.0,21829.0,6,4,1,2,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04764304365751981,8731.6,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +3531,2,47.0,0.0,1,111,700.0,1480.0,0.0,56,37,0.0,0.0,1193.6403803604428,2180.0,0.0,2809.785990950888,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,103536,2,1,1,0,1,,700.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,870.686578154515,700.0,97086.39764368649,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022454226883571727,46231.61792556499,10,5,10,10_1,10_4,10_1_0 +3532,1,35.0,48.0,5,111,550.0,1016.0,0.0,85,46,0.0,0.0,937.8602988546337,1566.0,0.0,1928.8801127068257,42,0,0,0,0,0,0,0,0,2,20.0,1,,3,103537,2,2,2,0,1,,480.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,416.345986841823,550.0,41398.72567118781,7,1,1,2,82.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03782725131295252,17249.469029661588,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +3533,1,66.0,219.0,2,111,152.0,60.0,0.0,0,77,0.0,0.0,259.1904825925533,212.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,0,,2,,2,103538,2,1,0,1,1,850.0,0.0,206.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1888.26641525206,152.0,12389.436936721611,0,5,2,3,67.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017111350667732415,12389.436936721611,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3534,1,30.0,331.0,7,111,533.0,1150.0,0.0,85,63,0.0,0.0,908.8718896173086,1683.0,0.0,2183.2796551307574,43,0,0,0,0,0,0,0,0,2,15.0,2,,5,103539,2,3,0,0,1,,0.0,536.0,42,1.0,0.0,4.0,5.0,2.4,2,2,626.019867909212,533.0,26459.387433949436,6,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06360691471793414,11024.744764145598,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3535,2,38.0,0.0,1,111,700.0,800.0,0.0,84,90,0.0,0.0,1193.6403803604428,1500.0,0.0,1518.8032383518312,41,2,2,2,2,1,2,2,2,2,30.0,1,,1,103540,2,2,1,0,1,,500.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,368.591419104046,700.0,41189.06737086984,3,1,0,1,83.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.0364174305403391,17162.1114045291,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3536,2,55.0,0.0,7,212,900.0,0.0,0.0,74,37,0.0,0.0,1534.680489034855,900.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,12.0,1,,5,103541,2,1,2,0,1,,150.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,1395.86934304638,900.0,134978.1655459055,5,1,0,1,130.0,3,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006667745085733246,89985.44369727034,10,5,10,10_1,10_0,10_0_0 +3537,0,85.0,0.0,1,111,450.0,1176.0,0.0,78,75,0.0,0.0,767.3402445174275,3260.0,0.0,2232.640760377192,71,0,0,0,0,0,0,0,0,0,,1,,1,103542,2,2,4,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,216.116312792979,450.0,26571.24660174217,5,5,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12268901225681504,17714.164401161444,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3539,1,49.0,150.0,9,111,1380.0,0.0,0.0,85,53,0.0,0.0,2353.1767498534446,1764.0,532.0662625522641,0.0,41,0,0,0,0,0,0,0,0,0,,1,2011.0,6,103544,2,1,1,0,1,,488.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,275.799146984077,1380.0,17799.101183905535,6,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09910612798780312,6592.259697742791,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +3540,1,26.0,250.0,6,111,0.0,,,0,43,0.0,0.0,,425.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,4,103545,1,1,0,0,1,,251.0,540.0,12,1.0,0.0,1.0,1.0,1.0,1,1,181.66628555321861,0.0,2920.8202602992333,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14550707065982194,2920.8202602992333,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3541,2,71.0,0.0,2,120,354.0,1341.0,0.0,78,78,0.0,0.0,603.6409923537096,1695.0,0.0,2545.893928287257,50,0,0,0,0,0,0,0,0,0,,1,,2,103546,1,1,1,0,2,,194.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1317.80593143432,354.0,32109.97017758667,5,5,0,1,80.0,0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05278734270463883,21406.64678505778,6,3,6,6_1,6_1,6_0_1 +3542,0,79.0,0.0,1,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,3100.0,4295.326598729215,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103547,1,1,2,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1745.42293518656,0.0,19073.45022978218,0,5,5,0,70.0,6,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.16252958760232666,19073.45022978218,5,3,5,5_1,5_0,5_1_0 +3544,2,84.0,0.0,2,111,2170.0,160.0,0.0,77,75,0.0,0.0,3700.2851791173725,2330.0,0.0,303.7606476703662,60,0,0,0,0,0,0,0,0,0,,1,,2,103549,2,1,2,0,1,,285.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2368.36129275174,2170.0,27547.627046693582,5,5,0,1,90.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08458078788603533,18365.084697795723,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +3545,1,88.0,78.0,2,111,406.0,0.0,0.0,0,86,0.0,0.0,692.3114206090569,406.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,103550,2,2,0,0,1,,0.0,768.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2391.40316068789,406.0,14561.497951920759,0,6,2,3,70.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.027881746873881605,14561.497951920759,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +3546,2,48.0,0.0,7,112,400.0,600.0,0.0,42,65,0.0,304.5952737123515,682.0802173488245,1230.0,0.0,1139.1024287638734,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,103551,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1921.17160172626,400.0,58877.491476535884,1,1,1,2,100.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020890835685317622,23550.996590614355,6,3,6,6_1,6_1,6_0_0 +3547,0,87.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,335.0,2.771178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,2,103552,1,1,0,0,2,,0.0,,11,0.0,8.0,2.0,1.0,1.0,1,1,138.00249421033155,0.0,14714.062621662937,0,5,5,0,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022767335481282555,14714.062621662937,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3548,2,78.0,0.0,2,111,504.0,,,77,71,0.0,0.0,,780.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,103553,2,1,0,0,2,,244.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,90.44665346060819,504.0,21007.186754865128,5,5,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037130150224392,14004.791169910086,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3549,2,27.0,0.0,6,112,610.0,0.0,0.0,0,47,0.0,60.9190547424703,1040.1723314569574,749.0,128.85979796187644,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,103554,2,1,2,0,1,,265.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,859.144559929193,610.0,19010.418832438612,0,1,2,3,75.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03939944756619126,19010.418832438612,5,3,5,5_1,5_0,5_0_0 +3550,2,27.0,0.0,9,111,0.0,0.0,0.0,55,34,0.0,0.0,0.0,290.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,2006.0,6,103555,1,1,0,0,1,,0.0,530.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1718.3598717007,0.0,34442.03132689367,1,1,2,3,55.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00841994472531464,22961.354217929114,6,3,6,6_0,6_3,6_0_0 +3551,0,63.0,0.0,9,111,660.0,,,0,45,0.0,0.0,,723.0,87.29212119998083,,41,0,0,0,0,0,0,0,0,2,45.0,1,2013.0,6,103556,2,1,0,0,2,,600.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,116.96808923640873,660.0,39217.65392790643,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018435574992045328,39217.65392790643,9,5,9,9_1,9_3,9_0_0 +3552,1,48.0,100.0,7,111,1080.0,0.0,0.0,81,56,0.0,0.0,1841.6165868418261,1380.0,415.67676761895626,0.0,71,2,2,2,2,1,2,2,2,2,30.0,2,,5,103557,2,3,0,0,1,,0.0,300.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1111.79874821606,1080.0,12570.716778201195,4,1,2,3,65.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,1,0,1,0.1097789429472351,6983.731543445108,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3553,2,55.0,0.0,2,111,400.0,0.0,0.0,22,37,0.0,0.0,682.0802173488245,1213.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,25.0,2,,2,103558,2,1,0,1,2,,0.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,928.286003503768,400.0,80143.00617036432,1,1,1,2,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015135444226055863,53428.67078024288,10,5,10,10_0,10_4,10_0_1 +3555,2,65.0,0.0,5,221,790.0,0.0,0.0,85,72,0.0,0.0,1347.1084292639284,880.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,103560,2,3,2,0,2,,207.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1086.48007201923,790.0,36608.156947176525,7,5,0,1,75.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024038358480318735,24405.43796478435,7,4,7,7_1,7_1,7_0_0 +3557,2,38.0,0.0,6,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,435.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,103562,2,2,0,1,1,808.0,0.0,400.0,32,1.0,0.0,3.0,3.0,1.6,1,1,372.557236095914,0.0,17475.796677995244,0,1,2,3,45.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024891569066360957,10922.372923747027,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +3558,2,45.0,0.0,2,111,400.0,850.0,0.0,0,62,0.0,0.0,682.0802173488245,1250.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,103563,2,3,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,1345.46533067388,400.0,23379.459921337108,0,1,1,2,56.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.053465734632269925,15586.306614224739,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +3559,2,37.0,0.0,9,112,665.0,0.0,0.0,21,55,2003.897416969543,0.0,1133.9583613424206,2745.0,249.40606057137379,0.0,43,0,0,0,0,0,0,0,0,2,7.0,1,2005.0,6,103564,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1542.63282161786,665.0,54315.064135217355,1,1,1,2,147.0,9,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050538465593381654,25864.316254865407,7,4,7,7_1,7_2,7_0_0 +3560,1,35.0,288.0,2,111,259.0,0.0,0.0,56,90,0.0,0.0,441.64694073336386,259.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,60.0,2,,2,103565,1,2,0,1,2,1250.0,0.0,1000.0,42,1.0,1.0,2.0,2.0,1.5,2,2,1297.26854294941,259.0,20379.76941681653,3,1,3,4,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.012708681570571848,13586.512944544353,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +3561,2,67.0,0.0,2,111,420.0,0.0,0.0,21,72,0.0,1258.1109131597127,716.1842282162656,1370.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103566,2,1,0,1,1,690.0,0.0,410.0,42,3.0,2.0,4.0,6.0,3.0999999999999996,4,4,225.585299824869,420.0,52262.04175165692,1,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02621405429412955,16858.72314569578,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +3562,2,34.0,0.0,1,111,1000.0,0.0,0.0,0,35,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,10,2,2,2,1,1,2,2,2,0,,2,,1,103567,1,3,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,564.342932380979,1000.0,23631.543206180744,0,4,2,3,45.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.04485530169366006,23631.543206180744,6,3,6,6_0,6_3,6_1_0 +3563,2,62.0,0.0,2,112,0.0,0.0,0.0,78,77,0.0,0.0,0.0,948.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103568,2,1,1,0,1,,386.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1301.32772188166,0.0,40911.29798700649,5,5,0,1,70.0,8,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023172083181058855,27274.198658004327,7,4,7,7_1,7_0,7_0_1 +3564,2,50.0,0.0,9,111,1000.0,,,85,22,0.0,0.0,,1030.0,41.567676761895626,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,103569,2,1,0,0,2,,500.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,151.50233898439197,1000.0,195917.49194721755,5,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005257315157329055,130611.66129814503,10,5,10,10_1,10_2,10_0_0 +3565,1,61.0,253.0,9,111,986.0,,,0,86,0.0,0.0,,1118.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,103570,1,2,0,0,2,,0.0,311.0,11,0.0,7.0,3.0,1.0,1.0,1,1,159.62096447577812,986.0,6968.5084076151325,0,6,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16043605526517815,6968.5084076151325,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3566,2,73.0,0.0,1,112,900.0,0.0,0.0,0,78,2088.272045052471,0.0,1534.680489034855,3020.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103571,2,1,2,0,1,,42.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,948.346159613489,900.0,24605.120353183025,0,5,0,1,180.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12273868026861001,24605.120353183025,7,4,7,7_1,7_0,7_1_0 +3567,2,27.0,0.0,7,111,300.0,,,0,85,0.0,0.0,,380.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,5,103572,2,1,0,0,2,,400.0,,21,1.0,0.0,5.0,5.0,2.8,4,3,157.3203706596315,300.0,11631.933540974449,0,7,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0326686873391615,4154.261978919446,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3568,1,82.0,23.0,2,111,210.0,1200.0,0.0,0,78,0.0,0.0,358.0921141081328,1410.0,0.0,2278.2048575277468,71,2,2,2,1,1,2,2,2,0,,1,,2,103573,1,2,5,0,1,,230.0,312.0,11,0.0,3.0,2.0,1.0,1.0,1,1,354.708564984056,210.0,15133.844856297994,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.0931686569664565,15133.844856297994,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +3569,1,33.0,260.0,9,111,0.0,0.0,0.0,85,43,0.0,0.0,0.0,1110.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2013.0,6,103574,2,1,1,0,1,,445.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,345.325633678621,0.0,25945.001076203753,6,1,1,2,96.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042782808015300884,10810.417115084898,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +3570,1,25.0,467.0,6,111,230.0,,,0,81,0.0,0.0,,293.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,2,,4,103575,2,1,0,0,2,,116.0,610.0,32,1.0,0.0,3.0,4.0,1.9,1,1,117.7697712971821,230.0,14883.81599537001,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019685811763001174,7833.587365984216,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3571,2,56.0,0.0,2,111,300.0,0.0,0.0,0,74,0.0,0.0,511.56016301161833,360.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,103576,1,3,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,275.645178276227,300.0,25212.790870626013,0,7,0,1,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014278466903852977,25212.790870626013,7,4,7,7_0,7_4,7_0_1 +3572,2,39.0,0.0,2,111,0.0,0.0,2000.0,0,54,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,103577,2,2,0,0,1,,0.0,900.0,32,1.0,0.0,6.0,3.0,1.8,2,1,2227.21027876543,0.0,30551.593082215128,0,1,2,3,130.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06546303476280102,16973.107267897292,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +3573,2,71.0,0.0,2,111,1200.0,0.0,0.0,77,71,0.0,794.5963662061343,2046.2406520464733,2040.0,332.541414095165,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103578,2,1,2,0,1,,140.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,985.305886359678,1200.0,16586.772049444044,5,5,0,1,126.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12298957228801953,11057.848032962696,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +3574,1,52.0,260.0,1,120,750.0,0.0,0.0,0,35,0.0,529.7309108040896,1278.9004075290459,1150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103579,1,3,3,0,1,,650.0,480.0,32,1.0,1.0,3.0,2.0,1.5,2,2,3083.69704136627,750.0,8187.943311105504,0,4,2,3,55.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.14045041059825455,5458.628874070336,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +3575,1,55.0,280.0,1,111,1500.0,0.0,0.0,0,56,0.0,0.0,2557.8008150580918,1800.0,415.67676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103580,1,3,4,0,2,,1680.0,410.0,22,2.0,1.0,5.0,2.0,1.5,2,2,964.521165923621,1500.0,9208.60838468025,0,4,2,3,90.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.19546927448826473,6139.0722564535,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +3576,2,50.0,0.0,1,111,4308.0,0.0,0.0,0,34,0.0,0.0,7346.003940846839,5071.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,103581,1,1,1,0,2,,980.0,,32,1.0,0.0,10.0,5.0,2.8,4,2,669.058007532943,4308.0,25344.4490095732,0,1,1,2,600.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2000832607599622,9051.588931990429,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +3577,2,69.0,0.0,5,111,966.0,,,75,74,0.0,0.0,,1242.0,382.4226262094398,,20,0,0,0,0,0,0,0,0,0,,1,,3,103582,2,1,0,0,2,,668.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,97.1651308249195,966.0,45116.625235015534,5,5,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027528654759311863,30077.750156677022,8,4,8,8_1,8_3,8_0_0 +3578,2,53.0,0.0,2,111,185.0,248.0,0.0,0,54,0.0,0.0,315.46210052383134,433.0,0.0,470.8290038890677,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,103583,2,1,0,1,1,490.0,0.0,395.0,12,1.0,0.0,2.0,1.0,1.0,1,1,734.155462625096,185.0,27775.83690436365,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015589089232158283,27775.83690436365,7,4,7,7_0,7_4,7_0_1 +3579,2,33.0,0.0,1,111,456.0,0.0,0.0,0,54,0.0,0.0,777.5714477776598,456.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,1,103584,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1242.63722251005,456.0,36981.31457869812,0,1,1,2,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012330551393180164,36981.31457869812,9,5,9,9_0,9_4,9_1_0 +3580,1,46.0,68.0,9,111,1300.0,0.0,0.0,52,38,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,103585,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,4.0,2.3,3,3,593.921293598476,1300.0,70188.4197039091,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01852157386480661,30516.704219090912,8,4,8,8_0,8_4,8_0_0 +3581,2,46.0,0.0,8,400,450.0,,,0,63,0.0,0.0,,518.0,94.22006732696343,,71,0,0,0,0,0,0,0,0,1,20.0,1,1999.0,6,103586,2,3,0,0,1,,180.0,,12,1.0,4.0,6.0,1.0,1.0,1,1,92.77739106417921,450.0,19519.169056557017,0,1,1,2,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02653801493798681,19519.169056557017,5,3,5,5_1,5_0,5_0_0 +3582,1,75.0,156.0,9,111,0.0,0.0,1035.0,0,77,0.0,0.0,652.3794305792599,1035.0,0.0,1238.6177727294448,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,103587,2,1,1,0,1,,150.0,360.0,11,0.0,4.0,3.0,1.0,1.0,1,1,5277.81630350862,0.0,10478.914012067597,0,5,2,3,62.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09876977698338646,10478.914012067597,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +3583,2,35.0,0.0,1,111,550.0,1200.0,0.0,34,22,0.0,0.0,937.8602988546337,1750.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,2,45.0,8,,1,103588,1,2,0,0,2,,300.0,610.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2088.23355013839,550.0,42103.657303051856,1,1,2,3,57.0,4,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04156408521482889,23390.920723917698,6,3,6,6_0,6_2,6_1_0 +3584,2,71.0,0.0,2,111,492.0,,,71,71,0.0,0.0,,744.0,349.1684847999233,,71,2,2,1,2,2,2,2,1,0,,1,,2,103589,2,2,0,0,1,,240.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,109.14377542562988,492.0,9330.177502627028,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07974124820138925,6220.118335084685,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +3585,1,47.0,189.0,1,111,650.0,0.0,0.0,81,21,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,30,2,2,2,1,1,2,2,2,0,,2,,1,103590,2,1,0,0,1,,0.0,659.0,43,2.0,0.0,2.0,4.0,2.3,3,2,824.62157733974,650.0,8352.039131568334,4,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,1,0.07782530586371235,3631.3213615514496,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +3586,2,66.0,0.0,6,112,1308.0,0.0,0.0,78,77,0.0,662.163638505112,2230.402310730656,1938.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,103591,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,647.998476487727,1308.0,45833.31223954868,5,5,0,1,96.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04228365582375993,30555.54149303245,8,4,8,8_1,8_1,8_0_0 +3587,2,65.0,0.0,8,111,0.0,0.0,0.0,74,77,0.0,0.0,0.0,1003.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2001.0,6,103592,2,1,1,0,1,,886.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,298.755774562565,0.0,29393.795557226946,7,5,0,1,135.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03412284738958784,19595.863704817963,5,3,5,5_1,5_3,5_0_0 +3588,2,72.0,0.0,2,112,630.0,0.0,0.0,0,78,0.0,0.0,1074.2763423243985,675.0,62.351515142843446,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103593,2,1,2,0,1,,210.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1662.89644444777,630.0,16935.234680355854,0,5,0,1,70.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039857729328249054,16935.234680355854,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +3589,2,34.0,0.0,9,112,2200.0,0.0,0.0,48,46,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,103594,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1157.36635372265,2200.0,57305.52456283005,1,1,1,2,100.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03839071392825154,27288.34502991907,7,4,7,7_1,7_0,7_0_0 +3590,2,72.0,0.0,1,111,639.0,0.0,0.0,75,74,2214.833987176863,0.0,1089.6231472147472,2838.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,103595,2,2,3,0,1,,210.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1001.55393511624,639.0,63488.99574011964,5,5,0,1,140.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04470065980594218,42325.99716007976,9,5,9,9_1,9_2,9_1_0 +3591,0,62.0,0.0,2,111,600.0,,,81,63,0.0,0.0,,852.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,2,103596,2,2,0,0,2,,600.0,,43,3.0,6.0,3.0,4.0,2.3,3,3,94.95938912162077,600.0,9382.68592312632,4,4,5,0,148.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09080555471861225,4079.4286622288355,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +3593,2,49.0,0.0,6,111,960.0,0.0,0.0,55,53,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,31,2,2,1,2,1,2,2,2,0,,2,,4,103598,2,2,0,1,1,,0.0,603.0,43,2.0,0.0,3.0,4.0,2.1,2,2,785.054527655298,960.0,51872.877738732546,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01850678122843347,24701.3703517774,7,4,7,7_0,7_4,7_0_0 +3594,2,43.0,0.0,7,211,360.0,,,0,81,0.0,0.0,,624.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,103599,2,2,0,0,2,,1500.0,,32,4.0,0.0,4.0,9.0,4.6,7,3,81.82675167143742,360.0,24400.937291115686,0,4,0,1,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02557278814970754,5304.5515850251495,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3595,2,41.0,0.0,9,112,0.0,0.0,1236.0,54,62,0.0,0.0,779.0734069526233,1236.0,0.0,1479.1609343899456,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,103600,2,1,1,0,1,,415.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,2851.81097166893,0.0,39668.24867868811,1,1,1,2,107.0,7,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031158421184952507,19834.124339344056,5,3,5,5_1,5_0,5_0_0 +3596,1,47.0,355.0,2,111,840.0,340.0,0.0,85,63,0.0,0.0,1432.3684564325313,1180.0,0.0,645.4913762995283,71,2,2,1,2,1,2,2,2,2,60.0,2,,2,103601,1,1,0,1,1,,0.0,394.0,42,1.0,3.0,5.0,4.0,2.1,2,2,268.253782434489,840.0,14340.857857708768,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08228238587315083,6828.9799322422705,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +3598,2,78.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,686.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,103603,2,1,0,1,1,414.0,0.0,394.0,11,0.0,3.0,4.0,1.0,1.0,1,1,866.336578847959,0.0,17750.162960266567,0,5,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03864753250635496,17750.162960266567,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +3599,2,73.0,0.0,7,111,300.0,,,77,74,0.0,0.0,,456.0,216.15191916185728,,20,0,0,0,0,0,0,0,0,0,,1,,5,103604,2,2,0,0,2,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,41.984261084156664,300.0,3169.917899314502,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14385230611133823,2113.2785995430013,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3600,2,47.0,0.0,7,400,350.0,,,56,63,0.0,0.0,,926.0,798.099393828396,,71,0,0,0,0,0,0,0,0,0,,1,,5,103605,1,2,0,0,1,,300.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,115.62490080745421,350.0,7213.6823024623045,1,1,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12836717243340767,3606.8411512311523,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3601,2,43.0,0.0,2,111,545.0,1330.0,0.0,54,38,0.0,0.0,929.3342961377733,1875.0,0.0,2525.0103837599195,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,103606,2,2,2,0,1,,0.0,900.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1323.77814450918,545.0,47451.30428345615,1,1,2,3,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03951419309360727,26361.835713031192,7,4,7,7_1,7_3,7_0_1 +3602,0,62.0,0.0,6,111,540.0,,,0,52,0.0,0.0,,615.0,103.91919190473907,,70,0,0,0,0,0,0,0,0,2,5.0,8,,4,103607,2,1,0,0,2,,400.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,107.55784340646555,540.0,34859.0129735813,0,1,5,0,76.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017642496087485086,34859.0129735813,9,5,9,9_0,9_2,9_0_0 +3603,1,30.0,116.0,9,111,350.0,,,55,64,0.0,0.0,,482.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,103608,2,3,0,0,1,,160.0,428.0,43,2.0,0.0,3.0,3.0,1.8,2,2,133.114933548679,350.0,30165.76836539975,4,1,3,4,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015978376355659345,16758.76020299986,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +3604,2,69.0,0.0,2,111,15.0,0.0,0.0,77,75,0.0,0.0,25.578008150580917,15.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,2,,2,103609,2,1,0,1,1,985.0,0.0,433.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1039.79003612897,15.0,43638.67968374584,5,5,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00034373175606380846,29092.453122497227,8,4,8,8_0,8_4,8_0_1 +3605,2,59.0,0.0,6,111,865.0,,,54,47,0.0,0.0,,1005.0,193.98249155551292,,50,0,0,0,0,0,0,0,0,2,5.0,2,,4,103610,2,2,0,0,2,,520.0,440.0,43,2.0,2.0,3.0,2.0,1.5,2,2,153.11179908916102,865.0,65168.3002645705,1,1,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015421608296056478,43445.53350971366,10,5,10,10_0,10_2,10_0_0 +3606,2,85.0,0.0,5,111,0.0,0.0,1380.0,86,78,0.0,0.0,869.8392407723464,1380.0,0.0,1651.4903636392596,70,0,0,0,0,0,0,0,0,0,,1,,3,103611,2,1,2,0,1,,176.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,430.378056860239,0.0,22380.00484602669,6,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06166218503947299,14920.00323068446,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +3607,2,19.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,789.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,1,103612,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1320.77674654956,0.0,10362.327829592296,0,1,1,2,10.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07614119269097117,10362.327829592296,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +3608,2,39.0,0.0,2,111,445.0,0.0,0.0,62,42,0.0,0.0,758.8142418005672,550.0,145.4868686666347,0.0,41,2,1,2,2,1,2,2,2,3,75.0,2,,2,103613,2,1,0,1,1,1570.0,241.0,268.0,43,2.0,0.0,3.0,3.0,1.8,2,2,301.728154168452,445.0,34957.1150255791,1,1,2,3,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015733563813762938,19420.619458655055,5,3,5,5_0,5_2,5_0_1 +3609,2,49.0,0.0,8,112,715.0,1825.0,0.0,46,38,0.0,0.0,1219.2183885110237,2540.0,0.0,3464.769887490115,12,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,103614,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,534.419924248028,715.0,93562.94162996711,1,1,0,1,160.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027147500449969476,35985.746780756584,9,5,9,9_1,9_1,9_0_0 +3610,2,44.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,2424.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,50.0,1,,2,103615,2,2,2,0,1,,441.0,,32,1.0,0.0,5.0,3.0,1.8,2,1,1401.85514964449,0.0,54423.27592326444,0,1,1,2,130.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044539766467159826,30235.153290702467,8,4,8,8_1,8_2,8_0_1 +3611,2,77.0,0.0,2,211,350.0,0.0,0.0,77,78,949.2145659329414,0.0,596.8201901802214,1500.0,346.39730634913025,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103616,2,2,3,0,1,,150.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1086.73473054835,350.0,20694.981479780334,5,5,0,1,68.0,3,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07248134053492865,13796.654319853556,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +3612,2,55.0,0.0,5,111,250.0,0.0,0.0,67,65,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,103617,2,1,0,1,1,,0.0,596.0,43,2.0,2.0,3.0,2.0,1.5,2,2,273.446979590732,250.0,42595.545439549824,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005869158322078342,28397.030293033215,8,4,8,8_0,8_4,8_0_0 +3613,2,54.0,0.0,2,111,180.0,75.0,0.0,0,52,0.0,662.163638505112,306.936097806971,755.0,0.0,142.38780359548417,60,0,0,0,0,0,0,0,0,1,20.0,2,,2,103618,2,1,0,1,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1322.60547952441,180.0,24926.88021393957,0,1,0,1,62.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030288587802407382,24926.88021393957,7,4,7,7_0,7_2,7_0_1 +3614,2,48.0,0.0,2,221,930.0,0.0,0.0,63,43,1803.5076752725886,0.0,1585.836505336017,2640.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,103619,2,1,1,0,1,,635.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2253.49728229485,930.0,92837.72070913349,1,1,0,1,95.0,1,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028436717099844456,61891.81380608899,10,5,10,10_1,10_1,10_0_1 +3615,1,32.0,412.0,9,111,600.0,700.0,0.0,54,62,0.0,0.0,1023.1203260232367,1300.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,103620,2,1,1,0,1,,580.0,485.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,232.280474869829,600.0,28990.408138200917,4,4,2,3,88.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04484241800952704,10737.188199333674,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +3616,2,38.0,0.0,1,111,640.0,1400.0,0.0,46,46,0.0,0.0,1091.3283477581192,2040.0,0.0,2657.9056671157045,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,103621,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1295.06898344824,640.0,55384.05862340944,1,1,1,2,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036833703609033513,23076.691093087265,6,3,6,6_1,6_3,6_1_0 +3617,2,31.0,0.0,2,120,0.0,0.0,0.0,54,47,0.0,0.0,0.0,1741.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,103622,2,1,1,0,1,,197.0,600.0,43,2.0,2.0,3.0,3.0,1.8,2,2,3942.90870334065,0.0,54215.92422920301,1,1,2,3,60.0,0,1,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03211233645376506,30119.957905112784,8,4,8,8_1,8_1,8_0_1 +3618,1,41.0,416.0,6,111,420.0,415.0,0.0,85,63,0.0,0.0,716.1842282162656,835.0,0.0,787.8791798950124,50,0,0,0,0,0,0,0,0,0,,2,,4,103623,2,1,0,1,1,1108.0,0.0,375.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,218.36369963361,420.0,27200.06656115452,6,1,3,4,76.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030698454289538255,10461.564061982508,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3619,2,25.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,546.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,1,103624,2,1,0,0,1,,0.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1409.26818907894,0.0,13216.198521451464,0,1,2,3,50.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041312938748141306,13216.198521451464,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +3620,2,41.0,0.0,1,111,520.0,0.0,0.0,0,54,0.0,0.0,886.7042825534718,520.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,1,103625,2,3,0,0,1,,45.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1865.89318598636,520.0,22839.269125792765,0,1,1,2,52.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02276780387042926,22839.269125792765,6,3,6,6_0,6_3,6_1_0 +3621,2,42.0,0.0,2,111,290.0,250.0,0.0,0,34,0.0,0.0,494.50815757789775,540.0,0.0,474.62601198494724,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,103626,2,1,0,1,1,,0.0,,22,2.0,2.0,5.0,2.0,1.5,2,2,1525.61979214442,290.0,13703.283436013524,0,1,1,2,82.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03940661393464496,9135.522290675683,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +3622,2,56.0,0.0,6,120,550.0,0.0,0.0,54,22,843.7462808292812,0.0,937.8602988546337,1514.0,227.23663296502943,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,103627,2,1,3,0,1,,165.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,620.743216873884,550.0,99980.84011192052,1,1,0,1,170.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015142901362953128,66653.89340794702,10,5,10,10_1,10_0,10_0_0 +3623,2,32.0,0.0,2,111,450.0,84.0,0.0,0,46,0.0,0.0,767.3402445174275,717.0,0.0,159.4743400269423,10,0,0,0,0,0,0,0,0,1,5.0,2,,2,103628,1,1,0,1,1,52.0,110.0,508.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1683.44127765789,450.0,40859.46815432217,0,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017547952344655147,40859.46815432217,9,5,9,9_0,9_3,9_0_1 +3624,2,69.0,0.0,2,111,1200.0,,,75,75,0.0,0.0,,1500.0,415.67676761895626,,60,0,0,0,0,0,0,0,0,0,,1,,2,103629,2,1,0,0,1,,600.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,79.62759192636516,1200.0,54259.73656404804,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027644808010252764,36173.15770936536,9,5,9,9_1,9_2,9_0_1 +3625,2,41.0,0.0,6,112,2500.0,0.0,0.0,52,38,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,103630,2,2,2,0,1,,170.0,,43,2.0,1.0,7.0,5.0,2.4,2,2,1328.0297664212,2500.0,81835.87166575508,1,1,1,2,180.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030548950589917724,34098.27986073129,9,5,9,9_1,9_0,9_0_0 +3626,1,48.0,406.0,9,221,850.0,0.0,0.0,0,63,0.0,0.0,1449.420461866252,850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,103631,1,2,5,0,1,,396.0,432.0,32,1.0,2.0,4.0,3.0,1.8,2,1,2594.28069687387,850.0,10102.439999999999,0,4,2,3,86.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08413808941206284,5612.466666666666,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +3627,2,62.0,0.0,2,111,500.0,280.0,0.0,0,48,0.0,0.0,852.6002716860306,780.0,0.0,531.581133423141,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,103632,2,1,0,1,1,744.0,0.0,298.0,22,2.0,2.0,4.0,2.0,1.5,2,2,334.076278055856,500.0,41055.83807509823,0,1,2,3,68.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018998516083711288,27370.558716732154,7,4,7,7_0,7_2,7_0_1 +3628,2,45.0,0.0,7,112,944.0,400.0,0.0,53,33,0.0,927.0290939071567,1609.7093129432258,2044.0,0.0,759.4016191759156,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,103633,2,1,2,0,1,,460.0,,43,2.0,2.0,6.0,4.0,2.3,3,2,657.82288368837,944.0,86895.80995817513,1,1,1,2,120.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023522423014226145,37780.78693833701,9,5,9,9_1,9_1,9_0_0 +3630,2,50.0,0.0,5,112,110.0,0.0,0.0,42,38,0.0,0.0,187.57205977092673,170.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,,3,103635,2,1,2,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1491.58729956128,110.0,102838.92175534583,1,1,0,1,125.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016530706185779603,68559.28117023055,10,5,10,10_1,10_0,10_0_0 +3631,1,38.0,250.0,2,111,385.0,0.0,0.0,0,34,0.0,0.0,656.5022091982436,1303.0,0.0,0.0,10,2,1,2,2,2,1,2,2,0,,2,,2,103636,1,3,0,1,1,720.0,0.0,318.0,22,2.0,1.0,3.0,2.0,1.5,2,2,249.099975156162,385.0,14788.908825517306,0,4,2,3,67.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08810656792688841,9859.272550344871,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3632,2,65.0,0.0,1,400,420.0,,,0,78,0.0,0.0,,508.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,1,103637,1,2,0,0,2,,200.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,121.42814261197954,420.0,9238.850427350428,0,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054985195830872136,9238.850427350428,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +3633,2,38.0,0.0,5,111,420.0,,,42,52,0.0,0.0,,468.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,103638,2,2,0,0,2,,175.0,400.0,43,2.0,0.0,4.0,3.0,1.8,2,2,60.71644712901437,420.0,55680.817862960765,1,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008405048955132475,30933.78770164487,8,4,8,8_1,8_2,8_0_0 +3634,2,83.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1227.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103639,2,2,2,0,1,,250.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1271.25432285559,0.0,62332.901899352706,0,5,0,1,95.0,8,6,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019684628223810348,62332.901899352706,10,5,10,10_1,10_2,10_1_0 +3635,2,52.0,0.0,7,111,0.0,0.0,0.0,0,67,0.0,699.2448022613983,0.0,1034.0,299.28727268564853,0.0,50,0,0,0,0,0,0,0,0,3,75.0,7,,5,103640,2,2,0,0,2,,82.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,748.703345620224,0.0,9643.443172598796,0,1,0,1,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10722311331061113,9643.443172598796,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +3636,2,64.0,0.0,1,111,1824.0,0.0,0.0,0,74,1822.4919665912475,0.0,3110.2857911106394,3552.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,103641,2,1,1,0,1,,624.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,820.479307496221,1824.0,53278.895533606286,0,5,1,2,105.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06666804866027176,53278.895533606286,10,5,10,10_1,10_4,10_1_0 +3637,2,72.0,0.0,5,111,1150.0,0.0,0.0,77,74,0.0,0.0,1960.9806248778702,3650.0,3463.9730634913026,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,103642,1,3,3,0,2,,500.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1430.6115590273,1150.0,75974.98658369241,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04804212760181587,50649.99105579494,10,5,10,10_1,10_3,10_0_0 +3638,1,25.0,68.0,1,111,0.0,0.0,0.0,54,63,0.0,0.0,0.0,70.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,103643,2,1,2,1,1,436.0,0.0,500.0,43,2.0,0.0,4.0,2.0,1.5,2,2,920.904369679658,0.0,27168.43853691953,4,1,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0025765190702762004,18112.292357946353,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +3639,0,51.0,0.0,5,112,200.0,,,56,69,0.0,0.0,,320.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,103644,2,2,0,0,2,,200.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,145.18257281633913,200.0,21918.92037304426,1,1,5,0,15.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014599259204095372,14612.613582029508,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3640,1,27.0,369.0,1,111,280.0,1110.0,0.0,0,56,0.0,0.0,477.4561521441771,1390.0,0.0,2107.339493213166,50,2,2,2,2,1,2,2,2,0,,2,,1,103645,1,3,0,0,1,,0.0,460.0,32,1.0,0.0,3.0,2.0,1.3,1,1,394.748876370906,280.0,5771.261417219696,0,4,2,3,70.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.24084855970181163,4439.431859399766,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +3641,2,76.0,0.0,1,300,2877.0,0.0,0.0,77,72,0.0,0.0,4905.86196328142,2967.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,103646,2,1,0,0,1,,191.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1830.06060019263,2877.0,28675.74128726958,5,5,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10346724676711955,19117.16085817972,5,3,5,5_0,5_0,5_1_0 +3642,2,31.0,0.0,2,111,488.0,1654.0,0.0,43,53,0.0,0.0,832.1378651655658,2142.0,0.0,3140.125695292411,41,0,0,0,0,0,0,0,0,2,12.0,1,,2,103647,1,1,2,0,1,,455.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,1318.46255521601,488.0,48915.15800071006,1,1,1,2,105.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043790106943310016,18116.72518544817,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +3643,1,82.0,83.0,1,211,0.0,0.0,1134.0,0,71,0.0,0.0,714.7809413303195,1134.0,0.0,1357.094255338348,71,0,0,0,0,0,0,0,0,0,,1,,1,103648,1,3,2,0,2,,120.0,358.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1211.02640962699,0.0,12108.22209278769,0,5,2,3,60.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0936553683364853,12108.22209278769,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +3644,1,30.0,420.0,6,120,0.0,,,0,85,0.0,0.0,,190.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,4,103649,1,3,0,0,2,,352.0,550.0,31,0.0,0.0,2.0,2.0,1.3,1,1,145.00009524843574,0.0,15796.014306928522,0,6,2,3,39.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012028350716082936,12150.780236098863,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +3645,1,90.0,239.0,5,111,312.0,,,0,86,0.0,0.0,,380.0,94.22006732696343,,70,0,0,0,0,0,0,0,0,0,,2,,3,103650,2,3,0,0,2,,360.0,244.0,11,0.0,8.0,3.0,1.0,1.0,1,1,97.47660180046059,312.0,9826.60524786718,0,5,2,3,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03867052663812635,9826.60524786718,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3646,2,63.0,0.0,7,111,444.0,,,0,77,0.0,0.0,,536.0,127.47420873647992,,31,0,0,0,0,0,0,0,0,0,,1,,5,103651,2,1,0,0,2,,144.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,115.42812238649469,444.0,37391.33657205185,0,5,0,1,125.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014334871366984863,37391.33657205185,9,5,9,9_1,9_3,9_0_0 +3647,2,33.0,0.0,2,111,270.0,0.0,0.0,38,38,0.0,0.0,460.40414671045653,406.0,188.44013465392686,0.0,12,2,1,2,2,1,2,2,2,2,30.0,2,,2,103652,2,3,0,1,2,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,238.231378012615,270.0,61556.96334269543,1,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006595517029320411,34198.31296816413,9,5,9,9_0,9_4,9_0_1 +3648,2,40.0,0.0,2,112,600.0,0.0,0.0,65,62,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,2,1,2,1,2,2,2,2,1,20.0,2,,2,103653,2,1,0,1,1,,200.0,272.0,43,2.0,0.0,4.0,4.0,2.3,3,2,761.1619112572,600.0,39998.14354126727,1,1,2,3,67.0,9,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015000696204336639,17390.49719185534,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +3649,2,60.0,0.0,1,111,400.0,400.0,0.0,33,46,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,10,0,0,0,0,0,0,0,0,3,35.0,2,,1,103654,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,388.47720969206,400.0,98725.02936846513,1,1,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008103314884964087,42923.92581237615,9,5,9,9_0,9_4,9_1_0 +3650,2,71.0,0.0,5,111,600.0,2000.0,0.0,0,74,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,0,,2,,3,103655,1,3,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,656.77783868431,600.0,32309.45539019556,0,5,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0804717990012602,32309.45539019556,8,4,8,8_0,8_4,8_0_0 +3651,2,38.0,0.0,1,111,360.0,120.0,0.0,0,47,0.0,0.0,613.872195613942,480.0,0.0,227.8204857527747,10,2,1,2,2,1,2,2,2,0,,2,,1,103656,2,2,0,1,1,300.0,0.0,265.0,22,1.0,0.0,3.0,2.0,1.5,2,2,487.802602499627,360.0,31557.09778032115,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.015210524216815832,21038.065186880765,5,3,5,5_0,5_3,5_1_0 +3652,2,30.0,0.0,8,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,437.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,1999.0,6,103657,2,1,0,0,1,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2105.48994916416,0.0,22532.8499663921,0,1,2,3,28.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019393907146756335,22532.8499663921,6,3,6,6_0,6_3,6_0_0 +3653,2,33.0,0.0,9,111,1512.0,0.0,0.0,54,38,0.0,0.0,2578.2632215785566,1642.0,180.1265993015477,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,103658,2,1,1,0,1,,680.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,121.399120335502,1512.0,51260.66169840597,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032032360597699046,21358.609041002488,6,3,6,6_1,6_4,6_0_0 +3654,2,46.0,0.0,9,111,720.0,,,62,34,0.0,52.973091080408956,,912.0,210.6095622602712,,20,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,103659,2,1,0,0,2,,260.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,116.20971062267049,720.0,83893.22119754402,1,1,1,2,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010870961765224231,39949.152951211436,9,5,9,9_1,9_2,9_0_0 +3655,2,57.0,0.0,6,112,1940.0,0.0,0.0,43,38,0.0,969.4075667714839,3308.089054141799,2722.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,103660,2,1,2,0,1,,662.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,634.881323098808,1940.0,97935.59758089595,1,1,0,1,165.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027793775371121786,48967.798790447974,10,5,10,10_1,10_0,10_0_0 +3656,2,31.0,0.0,1,111,490.0,1570.0,0.0,34,37,0.0,0.0,835.54826625231,2060.0,0.0,2980.6513552654687,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,103661,1,3,4,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1361.22770446727,490.0,67668.31457182056,1,1,1,2,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030442608376385592,32223.00693896217,8,4,8,8_1,8_3,8_1_0 +3657,2,78.0,0.0,1,300,414.0,0.0,0.0,0,71,1952.2179572687494,0.0,705.9530249560333,2370.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103662,2,1,4,0,2,,141.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1004.70247385721,414.0,11884.15440443037,0,5,0,1,76.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1994252110286006,11884.15440443037,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3658,2,67.0,0.0,2,120,550.0,,,0,78,0.0,0.0,,662.0,155.18599324441035,,71,0,0,0,0,0,0,0,0,0,,1,,2,103663,1,3,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,100.9092786738651,550.0,7528.066666666667,0,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08793758468309704,7528.066666666667,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +3659,1,26.0,191.0,5,111,560.0,0.0,0.0,56,63,0.0,0.0,954.9123042883542,560.0,0.0,0.0,50,1,2,2,2,1,2,2,2,3,30.0,2,,3,103664,1,1,0,1,1,420.0,0.0,420.0,43,2.0,0.0,4.0,4.0,2.1,2,2,370.875085562775,560.0,20412.52120686067,4,1,2,3,85.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.027434141737071822,9720.248193743177,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3660,1,37.0,324.0,2,400,1200.0,0.0,0.0,85,68,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,2,2,2,1,1,2,2,1,2,15.0,1,,2,103665,1,2,2,0,2,,0.0,520.0,42,1.0,0.0,5.0,5.0,2.4,2,2,1049.32205753293,1200.0,17268.60476768839,6,1,2,3,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.06949026954657868,7195.2519865368295,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +3661,2,38.0,0.0,2,400,2080.0,0.0,0.0,63,21,0.0,0.0,3546.817130213887,2110.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103666,2,2,2,0,1,,503.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1443.83298119292,2080.0,40626.01225489042,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051937167417803985,19345.720121376387,5,3,5,5_1,5_0,5_0_1 +3662,2,75.0,0.0,2,111,299.0,189.0,0.0,86,78,0.0,0.0,509.8549624682463,488.0,0.0,358.8172650606201,71,2,1,2,2,1,2,2,2,0,,2,,2,103667,2,1,0,1,1,689.0,0.0,304.0,41,2.0,0.0,3.0,4.0,2.5,4,4,223.07789739321,299.0,21334.968329365332,6,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02287324698430977,8533.987331746133,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +3663,2,58.0,0.0,9,120,224.0,0.0,0.0,0,75,0.0,0.0,381.9649217153417,869.0,893.705050380756,0.0,60,0,0,0,0,0,0,0,0,0,,1,2011.0,6,103668,2,1,1,0,1,,160.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1071.42163124244,224.0,9713.996080430128,0,7,0,1,42.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08945854958194727,9713.996080430128,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3664,2,41.0,0.0,8,400,0.0,,,0,85,0.0,0.0,,320.0,443.3885521268867,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,103669,2,3,0,0,2,,0.0,,31,0.0,0.0,5.0,10.0,4.499999999999999,5,4,144.94688489827038,0.0,30808.0,0,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01038691249026227,6846.2222222222235,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3665,1,41.0,213.0,1,111,336.0,660.0,0.0,0,63,0.0,0.0,572.9473825730125,996.0,0.0,1253.0126716402608,71,0,0,0,0,0,0,0,0,0,,2,,1,103670,2,1,0,0,1,,0.0,336.0,32,1.0,1.0,2.0,2.0,1.3,1,1,2059.49420524803,336.0,13185.397603035426,0,4,2,3,40.0,6,5,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07553810889788486,10142.613540796481,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +3666,2,64.0,0.0,6,300,1700.0,0.0,0.0,0,77,1792.9608467622227,0.0,2898.840923732504,3450.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,103671,2,1,2,0,1,,250.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1450.47873122144,1700.0,24736.986255688273,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13946727238071177,24736.986255688273,7,4,7,7_1,7_0,7_0_0 +3667,1,42.0,321.0,7,111,847.0,1907.0,0.0,85,64,0.0,0.0,1444.3048602361357,2754.0,0.0,3620.4472194211776,71,1,2,2,1,1,2,2,2,0,,1,,5,103672,2,2,1,0,1,,503.0,1000.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,622.735286911416,847.0,27040.586444543413,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0.10184690356653624,10400.22555559362,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +3668,2,62.0,0.0,1,112,1480.0,0.0,0.0,77,78,0.0,715.1367295855209,2523.6968041906507,2020.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103673,2,1,2,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1290.32334794746,1480.0,22401.142618112583,6,5,0,1,99.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09017397167797667,14934.095078741722,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +3669,2,32.0,0.0,6,111,0.0,0.0,774.0,42,38,0.0,0.0,487.8663567810117,774.0,0.0,926.2706822150631,12,0,0,0,0,0,0,0,0,1,5.0,2,,4,103674,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1382.05689364111,0.0,56901.0,1,1,1,2,63.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013602572889755893,37934.0,9,5,9,9_0,9_3,9_0_0 +3670,2,30.0,0.0,1,112,540.0,0.0,0.0,0,64,0.0,0.0,920.8082934209131,575.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103675,2,2,2,0,2,,148.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1461.93325730142,540.0,22741.50158200101,0,1,1,2,89.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025284170349379638,22741.50158200101,6,3,6,6_1,6_0,6_1_0 +3671,2,55.0,0.0,7,111,650.0,,,22,48,0.0,0.0,,725.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,103676,2,1,0,0,1,,700.0,,43,3.0,1.0,3.0,3.0,2.0,3,3,119.92977214023436,650.0,33471.5396714938,1,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021660192722399614,16735.7698357469,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +3672,2,47.0,0.0,6,111,670.0,1200.0,0.0,68,68,0.0,0.0,1142.484364059281,1870.0,0.0,2278.2048575277468,71,1,2,2,1,2,2,2,2,0,,1,,4,103677,2,1,3,0,1,,864.0,782.0,43,4.0,1.0,5.0,7.0,4.0,7,6,907.305449621754,670.0,60832.13395868853,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.030740332096025568,15208.033489672132,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +3673,2,35.0,0.0,8,211,400.0,,,11,52,0.0,0.0,,463.0,87.29212119998083,,31,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,103678,2,1,0,0,1,,240.0,580.0,43,2.0,0.0,3.0,4.0,2.1,2,2,113.06504775713309,400.0,44480.37426352293,1,1,2,3,52.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010409085077768623,21181.130601677585,5,3,5,5_1,5_2,5_0_0 +3675,2,57.0,0.0,7,112,1017.0,0.0,0.0,0,52,0.0,0.0,1734.1889526093862,1017.0,0.0,0.0,70,2,2,2,2,1,2,2,2,2,30.0,2,,5,103680,1,1,0,0,1,,0.0,358.0,12,1.0,3.0,2.0,1.0,1.0,1,1,747.289866920178,1017.0,19973.0,0,1,2,3,49.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.05091874029940419,19973.0,5,3,5,5_0,5_1,5_0_0 +3676,2,43.0,0.0,9,112,360.0,,,0,55,0.0,0.0,,426.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,103681,2,2,0,0,2,,80.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,138.8161880791397,360.0,7890.0866684062,0,4,0,1,95.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05399180235951098,7890.0866684062,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3677,2,45.0,0.0,6,120,2073.0,0.0,0.0,46,38,0.0,0.0,3534.880726410283,2233.0,221.69427606344334,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,103682,2,2,2,0,1,,261.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,2066.17981468515,2073.0,57217.02284000804,4,4,1,2,105.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.039026847066894445,31787.234911115575,8,4,8,8_1,8_1,8_0_0 +3678,2,59.0,0.0,9,400,1600.0,0.0,0.0,0,64,0.0,0.0,2728.320869395298,1665.0,90.06329965077386,0.0,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,103683,2,1,1,0,1,,200.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1489.86214227269,1600.0,29585.241561351093,0,1,1,2,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056278060009997875,29585.241561351093,8,4,8,8_1,8_0,8_0_0 +3679,2,39.0,0.0,2,111,0.0,0.0,1500.0,0,35,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,12,0,0,0,0,0,0,0,0,2,60.0,1,,2,103684,2,3,1,0,1,,130.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1008.12191998506,0.0,31970.04413732805,0,1,1,2,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04691892177429334,31970.04413732805,8,4,8,8_1,8_3,8_0_1 +3680,2,35.0,0.0,9,112,910.0,0.0,0.0,54,47,0.0,0.0,1551.7324944685756,990.0,110.84713803172167,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,103685,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,885.559810333297,910.0,56641.23074090038,1,1,1,2,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017478433767243787,26972.01463852399,7,4,7,7_1,7_1,7_0_0 +3681,1,49.0,87.0,7,111,1050.0,0.0,0.0,0,52,0.0,1324.327277010224,1790.4605705406643,2050.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,5,103686,1,3,3,0,1,,360.0,424.0,12,1.0,3.0,4.0,1.0,1.0,1,1,368.12885992441,1050.0,12265.155699169054,0,1,2,3,90.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.16714015298956902,12265.155699169054,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +3682,1,42.0,390.0,2,400,945.0,,,0,63,0.0,0.0,,1083.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,7.0,1,,2,103687,2,2,0,0,1,,1286.0,569.0,32,1.0,0.0,5.0,4.0,2.3,3,3,99.28075838698956,945.0,38854.667870105535,0,1,2,3,63.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.027873098893048353,16893.333856567624,4,2,4_1,4_1_1,4_1_1,4_0_1_1 +3683,1,58.0,124.0,2,111,720.0,1000.0,0.0,0,54,0.0,0.0,1227.744391227884,1720.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,103688,2,1,0,0,1,,0.0,294.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1735.81926428381,720.0,12805.759837293781,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.13431456015525936,12805.759837293781,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3684,1,53.0,237.0,5,111,150.0,122.0,0.0,0,85,0.0,0.0,255.78008150580916,272.0,0.0,231.61749384865425,71,0,0,0,0,0,0,0,0,0,,2,,3,103689,2,1,0,1,1,534.0,0.0,288.0,11,0.0,4.0,3.0,1.0,1.0,1,1,281.461005056671,150.0,8049.171676693381,0,6,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.033792297012074445,8049.171676693381,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3685,1,39.0,170.0,2,111,650.0,240.0,0.0,85,63,0.0,0.0,1108.3803531918397,890.0,0.0,455.6409715055494,43,1,2,2,1,2,2,2,2,2,30.0,2,,2,103690,2,2,0,1,1,960.0,0.0,550.0,42,1.0,0.0,3.0,7.0,2.9999999999999996,2,2,1218.84665158328,650.0,45489.5731132917,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.019564923104102485,15163.191037763901,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +3686,2,40.0,0.0,5,112,0.0,0.0,0.0,62,85,0.0,0.0,0.0,1475.0,83.13535352379125,0.0,71,2,1,2,2,1,2,2,2,0,,2,,3,103691,2,1,0,1,1,780.0,300.0,313.0,42,1.0,2.0,3.0,3.0,1.8,2,2,1276.66967342622,0.0,27237.05370767688,1,7,2,3,70.0,10,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05415416864946244,15131.696504264934,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +3687,1,59.0,31.0,1,111,260.0,204.0,0.0,0,77,0.0,0.0,443.3521412767359,464.0,0.0,387.294825779717,50,0,0,0,0,0,0,0,0,0,,2,,1,103692,2,1,0,0,1,,0.0,359.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1220.44335612054,260.0,18015.54013131799,0,5,2,3,86.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025755541971977193,18015.54013131799,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +3688,2,31.0,0.0,7,111,376.0,806.0,0.0,47,46,0.0,0.0,641.155404307895,1182.0,0.0,1530.19426263947,20,1,2,2,1,1,1,1,2,3,45.0,2,,5,103693,2,2,0,0,1,,0.0,724.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1022.80105660862,376.0,48616.854792155646,1,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02431255590377509,27009.363773419802,7,4,7,7_0,7_4,7_0_0 +3689,2,55.0,0.0,9,111,590.0,1000.0,0.0,46,47,0.0,0.0,1006.0683205895161,1590.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,1,10.0,1,2004.0,6,103694,2,1,1,0,1,,400.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1685.95640659626,590.0,76690.57808841745,1,1,1,2,120.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020732664163345734,38345.28904420872,9,5,9,9_1,9_2,9_0_0 +3690,2,41.0,0.0,2,111,250.0,150.0,0.0,64,21,0.0,0.0,426.3001358430153,400.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,2,,2,103695,2,2,0,1,2,1000.0,0.0,444.0,43,2.0,0.0,3.0,4.0,2.1,2,2,190.605702080514,250.0,32214.721916405448,1,1,2,3,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012416683311374441,15340.34376971688,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +3691,2,38.0,0.0,9,112,450.0,1000.0,0.0,46,46,0.0,397.2981831030672,767.3402445174275,1750.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,2.0,1,2010.0,6,103696,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,175.987584055499,450.0,53513.95640174191,1,1,1,2,146.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032701749555991276,25482.83638178186,7,4,7,7_1,7_0,7_0_0 +3692,1,27.0,483.0,2,111,900.0,0.0,0.0,0,56,0.0,0.0,1534.680489034855,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103697,2,1,0,1,1,828.0,0.0,516.0,32,1.0,0.0,3.0,3.0,1.6,1,1,215.38102331822,900.0,11173.13338735451,0,4,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08055036745722546,6983.2083670965685,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +3693,2,66.0,0.0,9,221,1480.0,0.0,0.0,77,74,0.0,0.0,2523.6968041906507,1630.0,207.83838380947813,0.0,42,0,0,0,0,0,0,0,0,0,,1,2009.0,6,103698,2,1,1,0,1,,150.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,527.378371581976,1480.0,97464.25014807872,5,5,1,2,169.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016724080855529278,64976.16676538581,10,5,10,10_1,10_1,10_0_0 +3694,2,35.0,0.0,8,120,450.0,,,56,64,0.0,0.0,,560.0,152.4148147936173,,50,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,103699,2,1,0,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,106.91063453857657,450.0,32031.769104164065,4,1,0,1,58.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017482643502422134,17795.427280091146,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3695,2,60.0,0.0,9,111,156.0,,,77,75,0.0,0.0,,244.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,103700,2,1,0,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,149.59985339956526,156.0,37422.444661477835,5,5,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006520151267700861,24948.296440985225,7,4,7,7_1,7_2,7_0_0 +3696,1,77.0,280.0,5,111,1000.0,200.0,0.0,0,86,0.0,0.0,1705.2005433720612,1200.0,0.0,379.7008095879578,71,2,2,2,1,2,2,2,2,0,,1,,3,103701,1,3,3,0,2,,0.0,700.0,21,2.0,2.0,4.0,3.0,2.0,3,3,468.226458176647,1000.0,30866.729577983413,0,6,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,1,0.03887681061151145,15433.364788991707,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +3697,2,65.0,0.0,2,111,264.0,0.0,0.0,0,74,0.0,0.0,450.1729434502241,264.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,103702,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1102.28899923109,264.0,38311.53937219848,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006890874246404642,38311.53937219848,9,5,9,9_0,9_4,9_0_1 +3698,2,64.0,0.0,7,111,562.0,875.0,0.0,75,77,0.0,132.4327277010224,958.3227053750984,1537.0,0.0,1661.1910419473154,71,0,0,0,0,0,0,0,0,0,,1,,5,103703,2,1,1,0,1,,230.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1060.46643874456,562.0,45176.76479476911,5,5,0,1,115.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03402191385289203,30117.84319651274,8,4,8,8_1,8_2,8_0_0 +3699,2,34.0,0.0,5,112,0.0,0.0,0.0,43,38,0.0,0.0,0.0,2746.0,0.0,0.0,12,0,0,0,0,0,0,0,0,4,35.0,1,,3,103704,2,1,3,0,1,,421.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,729.436934583945,0.0,26635.04098222818,1,1,1,2,96.0,9,3,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10309726956426409,14797.244990126766,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +3700,1,83.0,163.0,2,111,600.0,425.0,0.0,0,77,0.0,0.0,1023.1203260232367,1025.0,0.0,806.8642203744104,71,2,2,2,2,1,2,2,2,0,,2,,2,103705,1,3,0,1,2,547.0,0.0,228.0,21,1.0,5.0,3.0,2.0,1.5,2,2,355.201093560213,600.0,21258.785113593858,0,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04821536106240461,14172.523409062573,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +3701,2,77.0,0.0,1,111,220.0,1410.0,0.0,78,77,0.0,0.0,375.14411954185346,1630.0,0.0,2676.8907075951024,50,0,0,0,0,0,0,0,0,0,,1,,1,103706,2,1,1,0,1,,180.0,,41,0.0,12.0,3.0,2.0,1.5,2,2,673.119628695437,220.0,40539.070680299104,5,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04020812447464752,27026.047120199404,7,4,7,7_1,7_4,7_1_0 +3702,2,74.0,0.0,2,111,353.0,0.0,0.0,78,75,1704.367487275148,0.0,601.9357918103376,2089.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103707,2,1,2,0,1,,201.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2080.24129449288,353.0,28885.805363444786,5,5,0,1,71.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07231925763245799,19257.203575629857,5,3,5,5_1,5_3,5_0_1 +3703,1,49.0,360.0,5,111,750.0,0.0,0.0,85,55,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,30.0,2,,3,103708,1,3,0,1,1,840.0,0.0,390.0,42,1.0,0.0,3.0,6.0,2.8999999999999995,3,2,206.543446460037,750.0,19428.981381049987,6,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03860212665248168,6699.648752086204,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +3704,2,65.0,0.0,2,111,560.0,0.0,0.0,75,74,0.0,0.0,954.9123042883542,639.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,103709,2,1,0,1,1,,0.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,373.389445400991,560.0,64675.500352748975,5,5,0,1,180.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009880093644653804,43117.000235165986,9,5,9,9_0,9_3,9_0_1 +3705,2,37.0,0.0,8,111,400.0,,,56,64,0.0,264.8654554020448,,735.0,187.05454542853033,,71,0,0,0,0,0,0,0,0,1,15.0,1,2002.0,6,103710,2,1,0,0,1,,240.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,112.48787386814325,400.0,16687.485831666752,1,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044044981216118155,9270.825462037084,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3706,2,86.0,0.0,5,221,807.0,0.0,0.0,0,78,0.0,0.0,1376.0968385012534,871.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103711,2,1,1,0,1,,116.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1176.231653344,807.0,14633.221165830668,0,5,0,1,80.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05952209634019817,14633.221165830668,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +3707,1,55.0,100.0,6,111,0.0,,,0,77,0.0,0.0,,703.0,8.313535352379127,,71,0,0,0,0,0,0,0,0,0,,1,,4,103712,2,2,0,0,2,,0.0,350.0,11,0.0,0.0,3.0,1.0,1.0,1,1,114.78301992405801,0.0,8188.456497434888,0,6,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08585256576990077,8188.456497434888,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +3708,1,26.0,222.0,1,111,300.0,800.0,0.0,0,34,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,10,0,0,0,0,0,0,0,0,0,,2,,1,103713,2,1,0,0,1,,0.0,1840.0,22,4.0,0.0,5.0,4.0,2.5,4,4,900.507899809396,300.0,101816.73910145518,0,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.01080372451237027,40726.695640582075,9,5,9,9_0,9_4,9_1_0 +3709,2,83.0,0.0,2,111,800.0,1450.0,0.0,78,78,0.0,0.0,1364.160434697649,2250.0,0.0,2752.830869512694,60,2,2,2,2,2,2,2,1,0,,1,,2,103714,2,3,3,0,1,,360.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,520.170312647767,800.0,30544.72864374097,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0736624648476311,20363.152429160647,5,3,5,5_1,5_4,5_0_1 +3710,2,61.0,0.0,5,111,550.0,1400.0,0.0,74,31,0.0,158.91927324122688,937.8602988546337,2070.0,0.0,2657.9056671157045,10,0,0,0,0,0,0,0,0,2,30.0,1,,3,103715,2,1,2,0,1,,403.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1300.13919913653,550.0,97601.87070826083,5,1,0,1,120.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021208609886048006,65067.91380550722,10,5,10,10_1,10_3,10_0_0 +3711,2,57.0,0.0,1,111,400.0,350.0,0.0,0,38,0.0,0.0,682.0802173488245,750.0,0.0,664.4764167789261,41,0,0,0,0,0,0,0,0,3,25.0,2,,1,103716,2,3,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1406.94674550144,400.0,46564.06793380731,0,1,1,2,33.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016106840172687556,46564.06793380731,10,5,10,10_0,10_4,10_1_0 +3712,2,55.0,0.0,1,111,120.0,175.0,0.0,0,78,0.0,0.0,204.62406520464734,295.0,0.0,332.23820838946307,50,0,0,0,0,0,0,0,0,0,,2,,1,103717,2,3,0,1,2,,0.0,700.0,21,0.0,0.0,2.0,2.0,1.5,2,2,993.348116186805,120.0,11194.428049816059,0,7,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026352395914041118,7462.952033210706,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +3713,2,46.0,0.0,2,111,1080.0,0.0,0.0,63,45,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,50,2,1,2,1,2,2,2,2,2,45.0,2,,2,103718,2,1,0,1,1,840.0,0.0,420.0,43,2.0,3.0,4.0,4.0,2.3,3,2,275.383728936359,1080.0,68939.72878436503,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01566585797542237,29973.79512363697,8,4,8,8_0,8_4,8_0_1 +3714,2,25.0,0.0,1,111,410.0,750.0,0.0,43,37,0.0,0.0,699.1322227825451,1160.0,0.0,1423.8780359548418,12,0,0,0,0,0,0,0,0,2,45.0,2,,1,103719,2,1,0,0,1,,0.0,490.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1864.7061794773,410.0,50730.326093102456,1,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02286600716642583,33820.21739540164,9,5,9,9_0,9_3,9_1_0 +3715,2,24.0,0.0,1,120,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1346.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,103720,1,1,2,0,2,,155.0,495.0,12,1.0,0.0,2.0,1.0,1.0,1,1,254.789752307427,0.0,12350.079051311055,0,4,2,3,39.0,0,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10898715663339109,12350.079051311055,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3716,2,52.0,0.0,6,120,700.0,,,0,68,0.0,0.0,,1276.0,798.099393828396,,71,0,0,0,0,0,0,0,0,0,,1,,4,103721,2,2,0,0,2,,500.0,,22,2.0,0.0,3.0,3.0,2.0,3,3,110.06868935468755,700.0,19782.0322536291,0,1,0,1,82.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06450297844226355,9891.01612681455,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3717,2,66.0,0.0,1,112,150.0,0.0,0.0,0,78,0.0,0.0,255.78008150580916,220.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103722,1,2,4,0,1,,110.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1628.19060324782,150.0,11996.859232946892,0,5,0,1,120.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018338132983657548,11996.859232946892,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3719,2,44.0,0.0,9,111,1340.0,,,46,46,0.0,0.0,,1340.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,2011.0,6,103724,2,1,0,0,2,,320.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,183.7389867084592,1340.0,61359.713060740265,1,1,1,2,139.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021838433283961543,30679.856530370133,8,4,8,8_1,8_2,8_0_0 +3720,1,52.0,403.0,2,111,800.0,0.0,0.0,68,68,0.0,0.0,1364.160434697649,1443.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,103725,2,1,0,1,1,960.0,0.0,348.0,43,2.0,4.0,4.0,5.0,2.5999999999999996,3,2,394.619130234436,800.0,22636.562310246118,1,1,2,3,79.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06374642846484012,8706.370119325431,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3721,1,35.0,340.0,9,120,1292.0,0.0,0.0,67,65,0.0,715.1367295855209,2203.119102036703,1912.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2009.0,6,103726,2,1,1,0,1,,130.0,640.0,43,2.0,0.0,5.0,5.0,2.4,2,2,241.19971628776,1292.0,31183.291504636523,4,1,2,3,130.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.061314887163714325,12993.038126931886,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +3722,2,39.0,0.0,7,111,380.0,360.0,0.0,46,34,0.0,728.3800023556231,647.9762064813832,1290.0,0.0,683.461457258324,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,103727,2,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1019.46827709112,380.0,58400.90044791682,1,1,1,2,119.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02208870051841837,27809.952594246104,7,4,7,7_1,7_2,7_0_0 +3723,2,92.0,0.0,2,112,0.0,0.0,0.0,71,71,1054.6828510366015,0.0,0.0,4081.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103728,2,1,2,0,2,,350.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1174.51068689683,0.0,39559.503575681745,5,5,0,1,100.0,6,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10316105186185139,26373.00238378783,7,4,7,7_1,7_0,7_0_1 +3724,2,74.0,0.0,2,400,1300.0,0.0,0.0,78,78,316.40485531098045,0.0,2216.7607063836795,1700.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103729,2,1,2,0,1,,158.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1082.48779614898,1300.0,35509.61048974598,5,5,0,1,85.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04787436349072048,23673.073659830654,6,3,6,6_1,6_0,6_0_1 +3725,2,61.0,0.0,5,111,410.0,0.0,0.0,0,77,0.0,0.0,699.1322227825451,410.0,0.0,0.0,60,2,2,2,1,1,2,2,2,0,,2,,3,103730,1,1,0,1,1,450.0,0.0,382.0,11,0.0,3.0,3.0,1.0,1.0,1,1,349.810901987705,410.0,27363.839300952495,0,5,2,3,74.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.014983277583629447,27363.839300952495,7,4,7,7_0,7_3,7_0_0 +3726,2,69.0,0.0,7,111,340.0,620.0,0.0,86,78,0.0,0.0,579.7681847465008,960.0,0.0,1177.072509722669,71,0,0,0,0,0,0,0,0,0,,2,,5,103731,2,1,0,1,1,700.0,0.0,600.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1703.14498812927,340.0,33155.0,6,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028954908761876036,22103.333333333332,6,3,6,6_0,6_3,6_0_0 +3727,1,23.0,459.0,1,300,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1417.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,103732,2,2,0,0,1,,0.0,490.0,32,1.0,0.0,5.0,4.0,1.9,1,1,1772.53645067342,0.0,17992.49946489665,0,4,2,3,110.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07875503916310048,9469.736560471922,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +3728,1,41.0,300.0,7,300,408.0,1080.0,0.0,0,64,0.0,0.0,695.7218216958009,2553.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,0,,1,,5,103733,2,1,1,0,1,,1000.0,425.0,32,1.0,1.0,4.0,3.0,1.6,1,1,844.622875982549,408.0,29081.015898786536,0,1,2,3,80.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08778923022790718,18175.634936741582,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +3729,2,59.0,0.0,2,111,522.0,0.0,0.0,0,45,0.0,0.0,890.114683640216,522.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,2,103734,2,2,0,0,1,,0.0,433.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2166.47002187518,522.0,38644.775680461134,0,1,3,4,25.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01350764730312367,38644.775680461134,9,5,9,9_0,9_3,9_0_1 +3730,2,61.0,0.0,6,120,800.0,0.0,0.0,72,46,2636.7071275915036,0.0,1364.160434697649,3415.0,159.34276092059991,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,4,103735,2,1,2,0,1,,250.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,2373.63902012167,800.0,91983.61900336728,5,1,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037126175693032754,45991.80950168364,10,5,10,10_1,10_0,10_0_0 +3731,2,44.0,0.0,2,111,400.0,1700.0,0.0,37,37,0.0,0.0,682.0802173488245,2100.0,0.0,3227.4568814976415,20,0,0,0,0,0,0,0,0,3,60.0,1,,2,103736,2,2,3,0,1,,450.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,485.850994610183,400.0,83051.58236465331,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025285490537429643,46139.76798036295,10,5,10,10_1,10_4,10_0_1 +3732,2,56.0,0.0,5,112,0.0,0.0,0.0,74,43,1434.368677409778,0.0,0.0,1751.0,55.423569015860835,0.0,33,0,0,0,0,0,0,0,0,2,45.0,1,,3,103737,2,2,1,0,1,,400.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,832.822781880034,0.0,76809.4781159684,5,1,0,1,120.0,8,0,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022796665762476697,51206.31874397894,10,5,10,10_1,10_0,10_0_0 +3733,2,69.0,0.0,5,111,2097.0,0.0,0.0,55,74,0.0,0.0,3575.805539451212,2337.0,332.541414095165,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,103738,2,2,1,0,1,,469.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,570.747923408899,2097.0,75420.03547878239,1,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030986461159348815,50280.023652521595,10,5,10,10_1,10_4,10_0_0 +3734,2,74.0,0.0,2,111,450.0,330.0,0.0,0,75,0.0,0.0,767.3402445174275,780.0,0.0,626.5063358201304,70,0,0,0,0,0,0,0,0,0,,2,,2,103739,2,1,0,1,1,1200.0,0.0,356.0,21,1.0,1.0,6.0,6.0,3.0999999999999996,3,3,296.011321159513,450.0,52128.86202965327,0,5,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014962920148847687,16815.761945049442,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +3735,1,60.0,270.0,2,111,270.0,1320.0,0.0,0,78,0.0,0.0,460.40414671045653,1590.0,0.0,2506.0253432805216,71,0,0,0,0,0,0,0,0,0,,2,,2,103740,2,3,0,0,1,,0.0,282.0,11,0.0,3.0,4.0,1.0,1.0,1,1,385.060053324298,270.0,11151.178449292125,0,7,2,3,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14258582689087296,11151.178449292125,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3736,2,54.0,0.0,1,112,470.0,0.0,0.0,54,42,2193.740330156131,0.0,801.4442553848687,2650.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,103741,2,1,2,0,1,,709.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,717.715124452664,470.0,51835.97859500641,1,1,0,1,170.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0511227929292973,34557.31906333761,9,5,9,9_1,9_0,9_1_0 +3737,2,86.0,0.0,2,211,444.0,0.0,0.0,0,86,1898.4291318658827,0.0,757.1090412571951,2592.0,482.1850504379893,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103742,1,2,3,0,1,,240.0,,21,0.0,8.0,5.0,2.0,1.5,2,2,857.127123514374,444.0,45823.55588519292,0,6,0,1,90.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05656479402196631,30549.037256795284,8,4,8,8_1,8_1,8_0_1 +3738,2,54.0,0.0,9,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,2374.0,0.0,0.0,33,1,2,2,2,2,2,2,1,0,,2,2009.0,6,103743,2,1,0,1,1,,0.0,850.0,12,1.0,3.0,5.0,1.0,1.0,1,1,3041.92217443798,0.0,44335.49011714717,0,1,2,3,180.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.05354626719423212,44335.49011714717,10,5,10,10_0,10_3,10_0_0 +3740,2,48.0,0.0,2,111,1400.0,1000.0,0.0,85,31,0.0,0.0,2387.2807607208856,2400.0,0.0,1898.504047939789,10,0,0,0,0,0,0,0,0,2,2.0,2,,2,103745,2,1,0,1,1,,360.0,,42,1.0,0.0,5.0,5.0,3.0,5,4,297.549555245115,1400.0,108637.01042106457,6,1,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02209191868128436,36212.33680702152,9,5,9,9_0,9_3,9_0_1 +3741,2,57.0,0.0,7,111,300.0,,,0,45,0.0,0.0,,370.0,96.99124577775646,,41,0,0,0,0,0,0,0,0,1,25.0,2,,5,103746,2,2,0,0,2,,292.0,424.0,22,1.0,2.0,3.0,3.0,1.6,1,1,91.68647569011421,300.0,42390.72362680887,0,1,2,3,77.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008728324698047936,26494.20226675554,7,4,7,7_0,7_2,7_0_0 +3742,2,59.0,0.0,5,111,350.0,900.0,0.0,52,90,0.0,0.0,596.8201901802214,1250.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,103747,2,1,1,0,1,,250.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1000.57015139908,350.0,80743.84606210313,1,1,0,1,97.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015481055968507842,53829.23070806875,10,5,10,10_1,10_2,10_0_0 +3743,2,63.0,0.0,5,111,501.0,875.0,0.0,75,75,0.0,119.18945493092015,854.3054722294027,1466.0,0.0,1661.1910419473154,41,2,2,2,2,1,2,2,2,0,,1,,3,103748,1,2,3,0,1,,222.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,341.180052635418,501.0,57740.64611725549,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.025389393756054517,38493.76407817033,9,5,9,9_1,9_3,9_0_0 +3744,2,88.0,0.0,5,111,650.0,0.0,0.0,77,75,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,103749,2,1,1,0,1,,350.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1290.48593853482,650.0,46480.42416546442,5,5,0,1,90.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013984381848282674,30986.94944364295,8,4,8,8_1,8_2,8_0_0 +3745,2,33.0,0.0,1,111,450.0,1210.0,0.0,0,43,0.0,0.0,767.3402445174275,1660.0,0.0,2297.1898980071446,33,0,0,0,0,0,0,0,0,1,15.0,1,,1,103750,2,1,1,0,1,,360.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,382.918808868651,450.0,28904.75814936756,0,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057429990987014054,18065.473843354725,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3746,2,68.0,0.0,9,111,680.0,,,0,74,0.0,0.0,,768.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,103751,1,1,0,0,2,,490.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,90.44109755224477,680.0,43789.91483992697,0,5,1,2,73.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017538284849545983,43789.91483992697,10,5,10,10_1,10_3,10_0_0 +3747,2,33.0,0.0,2,111,150.0,98.0,0.0,0,54,0.0,0.0,255.78008150580916,248.0,0.0,186.05339669809933,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,103752,1,2,0,1,2,,0.0,508.0,22,2.0,0.0,1.0,2.0,1.5,2,2,600.25521345727,150.0,39112.5709346565,0,1,3,4,35.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0063406724250963135,26075.047289771,7,4,7,7_0,7_3,7_0_1 +3748,1,38.0,433.0,2,211,0.0,0.0,0.0,85,22,0.0,0.0,0.0,393.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,103753,2,1,0,1,1,,575.0,387.0,42,1.0,1.0,5.0,7.0,3.1999999999999993,3,2,3107.12066675192,0.0,44705.433137586835,6,4,2,3,90.0,2,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008790877806518303,13970.44785549589,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +3749,2,44.0,0.0,2,111,937.0,0.0,0.0,0,34,0.0,0.0,1597.7729091396213,937.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,103754,1,2,1,0,2,,192.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1071.69400034936,937.0,34045.16155847072,0,1,1,2,85.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027522266222492535,26188.585814208243,7,4,7,7_1,7_3,7_0_1 +3750,2,40.0,0.0,5,112,4000.0,0.0,0.0,0,37,0.0,0.0,6820.802173488245,4000.0,0.0,0.0,10,2,2,2,1,1,2,2,1,2,23.0,1,,3,103755,2,2,2,0,1,,280.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,796.58961537806,4000.0,122946.34460490932,0,1,1,2,280.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03253451749910975,76841.46537806831,10,5,10,10_1,10_0,10_0_0 +3751,2,58.0,0.0,9,120,715.0,863.0,0.0,47,56,0.0,357.56836479276046,1219.2183885110237,1848.0,0.0,1638.408993372038,50,1,2,2,2,2,2,2,1,0,,1,2005.0,6,103756,2,1,1,0,1,,568.0,950.0,43,2.0,4.0,6.0,6.0,3.3,6,3,310.888911157225,715.0,14798.94497683024,1,1,2,3,150.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.12487376653493172,4484.528780857649,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +3752,2,21.0,0.0,7,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,161.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,103757,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2078.98281120218,0.0,5227.064945939244,0,4,3,4,25.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030801224332419334,5227.064945939244,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +3753,2,54.0,0.0,7,112,488.0,1293.0,0.0,54,65,0.0,0.0,832.1378651655658,1781.0,0.0,2454.765733986147,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,103758,2,1,2,0,1,,304.0,,43,2.0,2.0,5.0,4.0,2.5,4,2,1460.41456325894,488.0,52788.869710279745,1,1,1,2,90.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03373817264462437,21115.547884111897,5,3,5,5_1,5_2,5_0_0 +3754,2,56.0,0.0,2,111,422.0,0.0,0.0,0,52,0.0,417.1630922582205,719.5946293030098,737.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,103759,2,1,0,1,2,315.0,1128.0,598.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1176.26898059081,422.0,22878.949339054438,0,1,2,3,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03221301769928476,22878.949339054438,6,3,6,6_0,6_4,6_0_1 +3755,2,59.0,0.0,5,111,1330.0,,,0,42,0.0,0.0,,1486.0,216.15191916185728,,50,0,0,0,0,0,0,0,0,0,,1,,3,103760,2,1,0,0,2,,228.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,36.103883216401876,1330.0,63133.0,0,1,0,1,103.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023537611075032074,42088.666666666664,9,5,9,9_1,9_2,9_0_0 +3756,2,38.0,0.0,8,111,350.0,0.0,0.0,85,63,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,103761,2,1,0,1,1,500.0,900.0,350.0,42,1.0,0.0,2.0,2.0,1.5,2,2,414.279930270022,350.0,20832.79192822884,6,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016800436600422394,13888.527952152559,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +3757,2,42.0,0.0,5,111,360.0,,,0,52,0.0,0.0,,500.0,193.98249155551292,,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,103762,2,2,0,0,2,,504.0,458.0,32,1.0,0.0,3.0,3.0,1.6,1,1,162.4199888992323,360.0,37739.58871058662,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013248687044110292,23587.242944116635,6,3,6,6_0,6_2,6_0_0 +3758,2,30.0,0.0,1,111,0.0,0.0,0.0,56,53,0.0,0.0,0.0,2738.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,103763,2,1,2,0,1,,632.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,523.902286397927,0.0,45767.0,1,1,1,2,95.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059824764568357114,25426.11111111111,7,4,7,7_1,7_2,7_1_0 +3759,2,38.0,0.0,9,111,750.0,,,22,62,0.0,0.0,,836.0,119.1606733841008,,50,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,103764,2,1,0,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,151.33942414822425,750.0,70803.10567997488,1,1,1,2,160.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011807391666951193,33715.76460951185,9,5,9,9_1,9_2,9_0_0 +3760,2,63.0,0.0,5,111,2000.0,2100.0,0.0,85,75,0.0,0.0,3410.4010867441225,4100.0,0.0,3986.858500673557,71,0,0,0,0,0,0,0,0,0,,1,,3,103765,2,1,2,0,1,,780.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,638.863361795034,2000.0,28148.03263062719,6,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14565849250646704,18765.355087084794,5,3,5,5_1,5_4,5_0_0 +3761,2,71.0,0.0,2,111,619.0,0.0,0.0,77,78,2583.972985039674,0.0,1055.519136347306,3670.0,832.739124463309,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103766,2,1,2,0,2,,671.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,1050.18469599771,619.0,29786.48547060677,5,5,0,1,86.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.123210239208031,14893.242735303385,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3762,2,40.0,0.0,9,300,1200.0,0.0,0.0,63,63,0.0,0.0,2046.2406520464733,1280.0,110.84713803172167,0.0,30,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,103767,2,2,3,0,1,,90.0,,43,2.0,1.0,4.0,4.0,2.3,4,3,742.962832669093,1200.0,40035.01841401112,1,1,1,2,82.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03197200977312493,17406.52974522223,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3763,0,41.0,0.0,2,111,0.0,0.0,0.0,34,37,0.0,0.0,0.0,2939.0,0.0,0.0,31,1,2,2,2,1,2,2,2,2,30.0,2,,2,103768,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,835.17447436668,0.0,86580.0,1,1,5,0,98.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03394548394548395,57720.0,10,5,10,10_0,10_4,10_0_1 +3764,2,75.0,0.0,2,112,1200.0,0.0,0.0,77,75,2425.7705573841836,344.3250920226582,2046.2406520464733,3874.0,157.95717169520339,0.0,42,1,2,2,1,1,2,2,2,0,,1,,2,103769,2,1,1,0,2,,600.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1416.15824025372,1200.0,85723.01116939596,5,5,0,1,180.0,9,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.04519206625097019,57148.67411293064,10,5,10,10_1,10_1,10_0_1 +3765,2,69.0,0.0,2,111,0.0,1200.0,0.0,75,72,0.0,0.0,0.0,1300.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,0,,1,,2,103770,2,3,1,0,1,,340.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,587.718789249168,0.0,126409.43551301895,5,5,0,1,99.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010284042442908564,84272.9570086793,10,5,10,10_1,10_4,10_0_1 +3766,2,40.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,93.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,15.0,2,,2,103771,1,2,0,1,1,,0.0,380.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2132.72730571891,0.0,13121.283451330608,0,1,2,3,35.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007087721284655963,13121.283451330608,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +3767,2,72.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,1,2,2,2,1,2,2,2,0,,2,,3,103772,1,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,404.813468301625,300.0,23666.91834101437,0,5,0,1,85.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012675921540664001,23666.91834101437,6,3,6,6_0,6_2,6_0_0 +3768,2,59.0,0.0,1,111,240.0,0.0,0.0,0,35,0.0,0.0,409.2481304092947,240.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,30.0,8,,1,103773,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,993.186453947666,240.0,22284.97714675893,0,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010769586992145736,22284.97714675893,6,3,6,6_0,6_4,6_1_0 +3769,2,85.0,0.0,2,111,435.0,82.0,0.0,0,75,0.0,0.0,741.7622363668467,517.0,0.0,155.6773319310627,70,0,0,0,0,0,0,0,0,0,,2,,2,103774,2,1,0,1,1,1068.0,206.0,424.0,11,0.0,2.0,3.0,1.0,1.0,1,1,540.042526943095,435.0,35328.28747814159,0,5,2,3,87.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014634165336202034,35328.28747814159,9,5,9,9_0,9_2,9_0_1 +3770,2,41.0,0.0,9,111,512.0,0.0,0.0,0,42,0.0,0.0,873.0626782064953,512.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,2008.0,6,103775,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1461.01177759059,512.0,34309.34665816885,0,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01492304721221195,34309.34665816885,9,5,9,9_0,9_4,9_0_0 +3771,2,40.0,0.0,9,120,300.0,,,22,31,0.0,0.0,,386.0,119.1606733841008,,10,0,0,0,0,0,0,0,0,0,,1,2008.0,6,103776,2,3,0,0,2,,180.0,1500.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,168.96114905869206,300.0,79838.0,1,1,2,3,180.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004834790450662592,30706.92307692308,8,4,8,8_1,8_2,8_0_0 +3772,2,74.0,0.0,2,111,1240.0,0.0,0.0,77,77,0.0,0.0,2114.448673781356,1360.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103777,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1412.60680821491,1240.0,39885.68376476717,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03409744729514577,26590.455843178115,7,4,7,7_1,7_3,7_0_1 +3773,2,85.0,0.0,2,111,450.0,,,75,86,0.0,0.0,,570.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,103778,2,1,0,0,2,,250.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,43.2874003047518,450.0,32260.735953927553,5,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017668536787692406,21507.15730261837,6,3,6,6_1,6_2,6_0_1 +3774,2,38.0,0.0,7,120,0.0,0.0,0.0,85,67,0.0,0.0,0.0,3214.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,5,103779,1,2,5,0,1,,378.0,700.0,42,1.0,0.0,6.0,5.0,2.4,2,2,253.539571911998,0.0,30291.210695833855,6,1,2,3,125.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1061033853111075,12621.337789930774,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3775,2,38.0,0.0,2,111,0.0,,,54,42,0.0,0.0,,792.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,2,103780,2,1,0,0,2,,300.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,78.90218117588331,0.0,21985.0,4,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03602456220150102,14656.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3776,2,34.0,0.0,9,221,720.0,0.0,0.0,0,63,0.0,0.0,1227.744391227884,735.0,20.783838380947813,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,103781,2,1,1,0,1,,544.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2157.46368434529,720.0,23950.76301729984,0,1,1,2,69.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03068795760156381,23950.76301729984,6,3,6,6_1,6_1,6_0_0 +3777,2,50.0,0.0,8,111,750.0,720.0,0.0,37,34,0.0,0.0,1278.9004075290459,1470.0,0.0,1366.922914516648,10,0,0,0,0,0,0,0,0,3,90.0,2,2003.0,6,103782,2,1,0,0,1,,360.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1862.25987375165,750.0,77557.94964375964,1,1,0,1,100.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01895356964375704,43087.749802088685,9,5,9,9_0,9_3,9_0_0 +3779,0,39.0,0.0,2,111,1200.0,,,46,22,0.0,0.0,,1452.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,2,103784,2,2,0,0,2,,600.0,,43,2.0,6.0,5.0,8.0,3.8999999999999995,5,5,108.62465070552018,1200.0,53992.59305537904,1,1,5,0,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026892577626540643,13844.254629584371,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +3780,1,51.0,357.0,1,111,324.0,,,0,85,0.0,0.0,,393.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,8,,1,103785,2,3,0,0,2,,300.0,500.0,31,1.0,5.0,3.0,2.0,1.5,2,2,121.86764974202893,324.0,5110.0,0,6,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07690802348336595,3406.6666666666665,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +3781,2,59.0,0.0,5,111,300.0,0.0,0.0,0,77,527.3414255183008,1456.7600047112462,511.56016301161833,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,103786,1,2,2,0,1,,180.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1864.59880881807,300.0,9458.0,0,7,0,1,133.0,9,7,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20088813702685557,9458.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +3782,1,61.0,270.0,2,111,240.0,358.0,0.0,0,86,0.0,0.0,409.2481304092947,598.0,0.0,679.6644491624445,70,0,0,0,0,0,0,0,0,0,,2,,2,103787,2,1,0,0,1,,212.0,316.0,11,0.0,2.0,4.0,1.0,1.0,1,1,2287.26796804246,240.0,9157.679755692832,0,6,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06530038349815147,9157.679755692832,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3783,2,47.0,0.0,2,111,1200.0,0.0,0.0,0,54,0.0,66.2163638505112,2046.2406520464733,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,103788,1,1,2,0,2,,208.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,349.64857611428,1200.0,14260.676893357306,0,1,1,2,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08765362327101431,14260.676893357306,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +3784,2,37.0,0.0,1,112,1200.0,0.0,0.0,43,47,0.0,662.163638505112,2046.2406520464733,1700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,103789,1,2,2,0,1,,300.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,248.381869848747,1200.0,47474.81633567435,1,1,1,2,120.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03580845869902937,19781.173473197647,5,3,5,5_1,5_0,5_1_0 +3785,2,50.0,0.0,1,111,252.0,,,0,34,0.0,0.0,,378.0,174.58424239996165,,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,103790,2,1,0,0,2,,200.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,91.93411890023383,252.0,49488.77746526199,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007638095329094202,32992.51831017466,8,4,8,8_0,8_3,8_1_0 +3786,1,39.0,24.0,2,111,552.0,1100.0,0.0,85,47,0.0,0.0,941.2706999413778,1652.0,0.0,2088.354452733768,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,103791,1,2,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1437.18062883853,552.0,29620.384606804913,6,1,1,2,63.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05577240207814431,14104.945050859482,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +3787,2,66.0,0.0,1,300,327.0,0.0,0.0,0,78,0.0,397.2981831030672,557.600577682664,697.0,96.99124577775646,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,103792,2,2,4,0,1,,203.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1216.69833005642,327.0,21535.459602716706,0,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.032365225208013354,21535.459602716706,6,3,6,6_1,6_0,6_1_0 +3788,2,37.0,0.0,2,111,363.0,0.0,0.0,52,63,0.0,0.0,618.9877972440582,427.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,103793,2,2,0,1,1,586.0,0.0,312.0,43,2.0,0.0,4.0,4.0,2.3,3,2,375.076724621882,363.0,47804.389838061354,1,1,2,3,79.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008932234078219048,20784.51732089624,5,3,5,5_0,5_3,5_0_1 +3789,2,30.0,0.0,1,111,0.0,0.0,1650.0,37,67,0.0,0.0,1040.0251791843273,1650.0,0.0,1974.6080434817231,20,0,0,0,0,0,0,0,0,0,,1,,1,103794,1,1,1,0,1,,444.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,345.92776880396,0.0,61675.95165987258,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02675272866642312,29369.500790415514,8,4,8,8_1,8_3,8_1_0 +3790,2,90.0,0.0,2,211,72.0,0.0,0.0,0,77,0.0,0.0,122.77443912278841,72.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103795,2,2,2,0,2,,220.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1136.88025200955,72.0,25157.579042319252,0,5,0,1,90.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0028619605995824945,25157.579042319252,7,4,7,7_1,7_1,7_0_1 +3791,1,53.0,276.0,2,111,1180.0,0.0,0.0,0,85,0.0,0.0,2012.1366411790323,2020.0,1163.8949493330776,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103796,2,1,0,0,1,,160.0,240.0,21,0.0,1.0,3.0,3.0,1.6,1,1,409.044109871655,1180.0,10024.884444444444,0,6,2,3,60.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.20149858197312556,6265.552777777777,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +3792,1,60.0,219.0,2,111,444.0,144.0,0.0,75,56,0.0,0.0,757.1090412571951,686.0,0.0,273.3845829033296,31,0,0,0,0,0,0,0,0,0,,2,,2,103797,1,1,0,1,1,528.0,0.0,340.0,42,1.0,4.0,4.0,3.0,2.0,3,2,304.570196015388,444.0,18939.0,5,1,2,3,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.036221553408310896,9469.5,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3793,2,43.0,0.0,2,111,640.0,0.0,0.0,46,53,633.8643934729976,0.0,1091.3283477581192,1241.0,0.0,0.0,44,2,1,1,2,1,2,2,2,2,50.0,2,,2,103798,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1835.61708610187,640.0,62136.20318449224,1,1,0,1,65.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.019972253475405863,29588.66818309154,8,4,8,8_0,8_3,8_0_1 +3794,2,50.0,0.0,1,221,900.0,0.0,0.0,34,34,0.0,1801.0850967339045,1534.680489034855,2350.0,124.70303028568689,0.0,10,0,0,0,0,0,0,0,0,1,5.0,1,,1,103799,2,2,2,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,1946.61444313249,900.0,89850.50223769678,1,1,0,1,140.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02615455608454081,35940.20089507871,9,5,9,9_1,9_1,9_1_0 +3796,2,51.0,0.0,7,111,576.0,,,65,64,0.0,0.0,,708.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,103801,1,1,0,0,2,,492.0,,43,3.0,0.0,5.0,5.0,2.8,4,4,87.58309191711778,576.0,27133.138115164176,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026093553830557947,9690.406469701493,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +3797,2,80.0,0.0,2,111,358.0,180.0,0.0,0,74,0.0,0.0,610.4617945271979,538.0,0.0,341.730728629162,70,2,2,2,1,2,2,2,2,0,,2,,2,103802,1,2,0,1,1,418.0,140.0,302.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1468.63713035762,358.0,27565.112913781573,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019517424132553404,27565.112913781573,7,4,7,7_0,7_4,7_0_1 +3798,2,59.0,0.0,2,111,274.0,1300.0,0.0,0,74,0.0,0.0,467.22494888394476,1574.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,1,,2,103803,1,1,2,0,1,,351.0,,31,1.0,1.0,6.0,4.0,2.3,3,2,814.252105410722,274.0,83771.7289891736,0,7,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018789154992890487,36422.49086485809,9,5,9,9_1,9_4,9_0_1 +3799,1,47.0,189.0,5,111,550.0,680.0,0.0,0,52,0.0,0.0,937.8602988546337,1230.0,0.0,1290.9827525990565,42,0,0,0,0,0,0,0,0,1,10.0,2,,3,103804,1,1,0,1,1,,0.0,448.0,32,1.0,0.0,3.0,3.0,1.8,2,2,1606.2301363259,550.0,25437.65959932022,0,1,2,3,74.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04835350497546833,14132.033110733455,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +3800,1,61.0,236.0,1,111,72.0,53.0,0.0,0,81,0.0,0.0,122.77443912278841,125.0,0.0,100.62071454080882,71,0,0,0,0,0,0,0,0,0,,2,,1,103805,2,1,0,0,1,,189.0,223.0,12,1.0,0.0,1.0,1.0,1.0,1,1,502.257794656919,72.0,4839.267902296582,0,4,2,3,32.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025830353376525915,4839.267902296582,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +3801,2,76.0,0.0,2,111,453.0,2062.0,0.0,72,77,0.0,0.0,772.4558461475438,2515.0,0.0,3914.715346851845,70,0,0,0,0,0,0,0,0,0,,1,,2,103806,2,2,3,0,1,,275.0,,41,1.0,2.0,7.0,3.0,2.0,3,3,349.531077610419,453.0,68850.78629044349,5,5,0,1,209.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03652826838303055,34425.393145221744,9,5,9,9_1,9_3,9_0_1 +3802,2,54.0,0.0,6,300,610.0,0.0,0.0,68,64,0.0,397.2981831030672,1040.1723314569574,1030.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,4,103807,2,1,2,0,1,,370.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1150.05108676507,610.0,37637.32766357394,1,1,0,1,89.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027366448787405594,25091.551775715958,7,4,7,7_1,7_0,7_0_0 +3803,2,56.0,0.0,2,120,910.0,0.0,0.0,0,62,0.0,30.45952737123515,1551.7324944685756,989.0,77.59299662220518,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,103808,2,2,1,0,1,,214.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1191.07424159652,910.0,29199.79730440412,0,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033870098127387754,29199.79730440412,8,4,8,8_1,8_0,8_0_1 +3804,1,27.0,565.0,2,300,0.0,0.0,0.0,0,68,0.0,0.0,0.0,2078.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,103809,2,2,5,0,1,,790.0,570.0,32,1.0,0.0,6.0,6.0,2.5,1,1,1217.77501145275,0.0,23691.966406090432,0,1,2,3,130.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.08770905565127823,9476.786562436173,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +3805,2,49.0,0.0,9,111,360.0,,,0,46,0.0,0.0,,881.0,131.6309764126695,,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,103810,2,1,0,0,2,,320.0,,32,1.0,1.0,3.0,3.0,2.0,3,3,84.8999903293639,360.0,15699.219179854419,0,4,0,1,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056117440613257914,7849.6095899272095,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3806,2,52.0,0.0,1,400,600.0,0.0,0.0,0,37,970.3082229536734,0.0,1023.1203260232367,1555.0,48.49562288887823,0.0,42,2,2,2,2,1,2,2,2,2,50.0,1,,1,103811,2,2,3,0,1,,60.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1371.55188486807,600.0,32502.755911940905,0,1,1,2,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0478420969659598,32502.755911940905,8,4,8,8_1,8_0,8_1_0 +3807,1,49.0,270.0,2,111,630.0,150.0,0.0,0,54,0.0,0.0,1074.2763423243985,780.0,0.0,284.77560719096834,50,2,2,2,1,1,1,2,2,0,,2,,2,103812,1,3,0,1,1,593.0,0.0,325.0,32,1.0,0.0,4.0,2.0,1.5,2,2,393.44817268629,630.0,9182.772737452098,0,4,2,3,127.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.08494166438626499,6121.848491634732,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3808,2,53.0,0.0,2,111,354.0,0.0,0.0,68,56,0.0,0.0,603.6409923537096,564.0,290.9737373332694,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,103813,2,1,0,1,1,693.0,0.0,440.0,43,3.0,0.0,4.0,6.0,3.5,6,6,379.523165349022,354.0,21913.123814357557,1,1,2,3,82.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02573800087920213,6260.892518387874,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +3809,1,41.0,315.0,6,111,300.0,270.0,0.0,0,46,0.0,0.0,511.56016301161833,570.0,0.0,512.596092943743,41,0,0,0,0,0,0,0,0,0,,2,,4,103814,1,1,0,1,1,1236.0,0.0,649.0,32,1.0,0.0,3.0,3.0,1.6,1,1,970.220024184091,300.0,11225.63304364743,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050776646429090445,7016.020652279644,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +3810,0,85.0,0.0,1,111,300.0,770.0,0.0,0,78,0.0,0.0,511.56016301161833,1070.0,0.0,1461.8481169136376,71,0,0,0,0,0,0,0,0,0,,1,,1,103815,2,1,1,0,1,,80.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,294.029439469842,300.0,24780.0877806332,0,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0431798308977846,24780.0877806332,7,4,7,7_1,7_3,7_1_0 +3811,2,32.0,0.0,7,111,318.0,,,0,46,0.0,0.0,,410.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,45.0,2,,5,103816,2,1,0,0,2,,120.0,465.0,12,1.0,0.0,2.0,1.0,1.0,1,1,159.5135891836593,318.0,20773.11687129894,0,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019737047769007365,20773.11687129894,5,3,5,5_0,5_2,5_0_0 +3812,1,30.0,240.0,7,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1398.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,103817,1,2,0,0,1,,0.0,610.0,32,1.0,0.0,3.0,3.0,1.6,1,1,2535.47352315129,0.0,14063.229594777069,0,4,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09940817580900493,8789.518496735667,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3813,2,45.0,0.0,1,111,604.0,818.0,0.0,38,38,0.0,331.081819252556,1029.941128196725,1672.0,0.0,1552.9763112147475,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,103818,2,1,2,0,1,,325.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1051.64343754617,604.0,65721.44899705863,1,1,1,2,97.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02544070505923919,31295.92809383744,8,4,8,8_1,8_3,8_1_0 +3814,2,67.0,0.0,2,111,157.0,0.0,0.0,0,77,0.0,0.0,267.7164853094136,190.0,45.72444443808519,0.0,60,2,1,2,2,2,2,2,1,0,,2,,2,103819,1,1,0,1,1,790.0,0.0,456.0,11,0.0,3.0,5.0,1.0,1.0,1,1,1042.3993022351,157.0,28702.484090370854,0,5,2,3,87.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006619636105424807,28702.484090370854,8,4,8,8_0,8_3,8_0_1 +3815,2,29.0,0.0,1,112,965.0,0.0,0.0,56,64,0.0,397.2981831030672,1645.518524354039,1295.0,41.567676761895626,0.0,43,0,0,0,0,0,0,0,0,2,50.0,1,,1,103820,2,1,2,0,1,,156.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,938.863811241082,965.0,30878.972936282033,1,1,1,2,110.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04193792334583794,20585.981957521355,5,3,5,5_1,5_0,5_1_0 +3816,1,26.0,31.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,470.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,1,103821,1,3,0,0,2,,0.0,511.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2805.54031652949,0.0,14885.238528845297,0,1,2,3,25.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03157490550717158,14885.238528845297,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +3817,2,42.0,0.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,492.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,120.0,1,,4,103822,2,2,1,0,1,,424.0,387.0,32,1.0,0.0,3.0,4.0,1.9,1,1,1130.63464369162,0.0,46572.78700033427,0,1,2,3,83.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010564109036387897,24511.99315807067,7,4,7,7_1,7_3,7_0_0 +3818,2,62.0,0.0,5,211,480.0,0.0,0.0,67,78,2109.365702073203,158.91927324122688,818.4962608185893,2699.0,137.1733333142556,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,103823,2,1,2,0,1,,320.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1036.77027716175,480.0,58723.53834791502,1,5,0,1,120.0,4,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045961126933622996,29361.76917395751,8,4,8,8_1,8_2,8_0_0 +3819,1,35.0,280.0,8,111,420.0,,,0,43,0.0,0.0,,580.0,221.69427606344334,,20,0,0,0,0,0,0,0,0,0,,2,2001.0,6,103824,2,1,0,0,2,,180.0,700.0,32,1.0,0.0,3.0,3.0,1.6,1,1,110.9207952697156,420.0,25827.33512345118,0,4,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02245682712628609,16142.084452156987,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +3820,2,52.0,0.0,8,111,893.0,680.0,0.0,56,47,0.0,720.4340386935618,1522.7440852312507,2117.0,0.0,1290.9827525990565,50,0,0,0,0,0,0,0,0,2,75.0,1,2001.0,6,103825,2,1,2,0,1,,745.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1930.01049864861,893.0,65130.390665482104,1,1,1,2,130.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0325040273575692,28317.561158905264,8,4,8,8_1,8_3,8_0_0 +3821,2,45.0,0.0,1,112,402.0,0.0,0.0,0,52,3164.0485531098047,0.0,685.4906184355685,3432.0,41.567676761895626,0.0,71,2,2,2,2,2,1,2,1,2,10.0,1,,1,103826,1,1,3,0,2,,121.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,2178.71698924262,402.0,19306.12496487359,0,1,1,2,70.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.17776741869455062,19306.12496487359,5,3,5,5_1,5_0,5_1_0 +3822,2,67.0,0.0,1,111,0.0,0.0,1690.0,0,75,0.0,0.0,1065.237910800917,1690.0,0.0,2022.4773293843107,20,2,2,2,2,1,2,2,2,0,,2,,1,103827,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1541.16301602183,0.0,16212.435408479567,0,5,0,1,130.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.10424097042916092,16212.435408479567,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +3823,2,47.0,0.0,8,112,830.0,0.0,0.0,54,65,1371.087706347582,0.0,1415.3164509988108,2170.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,103828,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1568.57918542295,830.0,30135.528840149564,4,4,1,2,136.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0720080278501338,16741.96046674976,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3824,2,78.0,0.0,1,111,670.0,1978.0,0.0,74,74,0.0,0.0,1142.484364059281,2648.0,0.0,3755.241006824903,20,1,2,2,1,1,2,2,2,0,,1,,1,103829,2,2,2,0,2,,202.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,711.311570227518,670.0,42502.325435125036,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.062302473403293444,28334.883623416692,8,4,8,8_1,8_4,8_1_0 +3825,2,39.0,0.0,8,112,1596.0,0.0,0.0,0,43,0.0,0.0,2721.50006722181,1626.0,41.567676761895626,0.0,20,2,2,2,2,1,2,2,2,2,15.0,1,2002.0,6,103830,2,1,2,0,1,,178.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,713.191105554174,1596.0,26851.4301286214,0,1,1,2,97.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.06055543381530426,20654.946252785692,5,3,5,5_1,5_0,5_0_0 +3826,0,53.0,0.0,2,111,1700.0,0.0,0.0,65,45,0.0,198.6490915515336,2898.840923732504,2150.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,103831,1,1,2,0,1,,0.0,,43,3.0,1.0,3.0,3.0,2.0,3,3,876.792634085239,1700.0,69338.5596175023,1,1,5,0,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031007278083943664,34669.27980875115,9,5,9,9_1,9_4,9_0_1 +3827,2,60.0,0.0,1,111,400.0,400.0,0.0,0,74,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,1,,1,103832,1,1,2,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1254.97558406459,400.0,17183.338554828082,0,5,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04655672688094831,17183.338554828082,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +3828,2,78.0,0.0,5,300,2000.0,0.0,0.0,86,86,0.0,0.0,3410.4010867441225,2100.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103833,2,1,2,0,1,,250.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,897.05869901067,2000.0,21825.10968555601,5,5,0,1,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09621944770292691,14550.073123704007,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3829,2,76.0,0.0,2,120,200.0,0.0,0.0,0,77,3164.0485531098047,0.0,341.04010867441224,3200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103834,2,3,2,0,1,,190.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,892.59861810027,200.0,15977.658184165106,0,5,0,1,95.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20027966320943122,15977.658184165106,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +3830,2,51.0,0.0,7,111,720.0,,,68,21,0.0,0.0,,842.0,169.04188549837556,,71,0,0,0,0,0,0,0,0,1,30.0,1,,5,103835,2,2,0,0,2,,648.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,128.3449487389137,720.0,14981.69826653351,1,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056201906153782344,6513.78185501457,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +3831,0,25.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,1133.6241491207516,0.0,856.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,103836,2,1,0,1,1,856.0,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1015.13291426834,0.0,8517.282648119388,0,4,5,0,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10050153732881043,8517.282648119388,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +3832,1,72.0,253.0,5,111,300.0,,,0,77,0.0,0.0,,340.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,2,,3,103837,2,2,0,0,2,,150.0,266.0,21,1.0,3.0,3.0,2.0,1.5,2,2,131.79924147916003,300.0,16881.05003423104,0,5,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02014092721190655,11254.033356154026,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +3833,2,27.0,0.0,2,111,300.0,0.0,0.0,0,46,1582.0242765549024,0.0,511.56016301161833,1860.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,103838,2,1,3,0,1,,170.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1119.04877537949,300.0,21107.635864380434,0,1,1,2,75.0,7,6,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08811976916556477,21107.635864380434,5,3,5,5_1,5_2,5_0_1 +3834,1,48.0,212.0,5,111,250.0,80.0,0.0,0,68,0.0,0.0,426.3001358430153,330.0,0.0,151.8803238351831,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,103839,2,3,0,1,1,1243.0,0.0,264.0,32,1.0,3.0,4.0,2.0,1.5,2,1,572.541030251634,250.0,11486.6,0,1,2,3,75.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028729127853324744,7657.733333333334,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3835,0,76.0,0.0,1,111,239.0,1200.0,0.0,86,78,0.0,0.0,407.54292986592264,1439.0,0.0,2278.2048575277468,50,2,2,2,2,1,2,2,2,0,,1,,1,103840,1,1,4,0,1,,241.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,216.116312792979,239.0,28785.390860291747,5,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.049990636117609254,19190.26057352783,5,3,5,5_1,5_3,5_1_0 +3836,2,42.0,0.0,9,111,496.0,0.0,0.0,52,34,0.0,0.0,845.7794695125424,496.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,103841,2,1,1,0,1,,437.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1125.99136149122,496.0,59807.71284605535,1,1,1,2,125.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008293244740468518,28479.863260026355,8,4,8,8_1,8_3,8_0_0 +3837,2,24.0,0.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,395.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,5.0,2,,1,103842,2,1,0,0,2,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,551.969507815683,0.0,8057.704962209085,0,1,3,4,23.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04902140272603225,8057.704962209085,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +3838,2,61.0,0.0,7,112,2150.0,2865.0,0.0,77,37,0.0,0.0,3666.1811682499315,5015.0,0.0,5439.214097347495,12,0,0,0,0,0,0,0,0,2,30.0,1,,5,103843,2,1,1,0,1,,1200.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,666.223947416306,2150.0,5179191.751455111,6,1,0,1,300.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0009682978041102685,3452794.5009700744,10,5,10,10_1,10_1,10_0_0 +3839,2,44.0,0.0,7,112,400.0,900.0,0.0,46,47,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,1,3.0,1,,5,103844,2,2,2,0,1,,300.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1980.55139716274,400.0,61776.35730133916,1,1,1,2,126.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021043649331065676,41184.238200892774,9,5,9,9_1,9_1,9_0_0 +3840,2,79.0,0.0,2,111,360.0,0.0,0.0,0,78,3164.0485531098047,0.0,613.872195613942,3400.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,103845,2,1,2,0,1,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1003.31192849182,360.0,20685.871090204513,0,5,0,1,120.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16436339495560423,20685.871090204513,5,3,5,5_1,5_2,5_0_1 +3841,2,46.0,0.0,7,112,0.0,0.0,0.0,45,43,2109.365702073203,0.0,0.0,2496.0,88.67771042537734,0.0,43,0,0,0,0,0,0,0,0,2,50.0,1,,5,103846,1,2,3,0,1,,563.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1081.32678811473,0.0,67916.27176584989,1,1,1,2,110.0,5,0,4,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036751133934519876,29528.813811239084,8,4,8,8_1,8_0,8_0_0 +3842,2,37.0,0.0,2,111,331.0,50.0,0.0,0,42,0.0,0.0,564.4213798561523,381.0,0.0,94.92520239698945,10,0,0,0,0,0,0,0,0,3,20.0,2,,2,103847,1,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1621.1428292179,331.0,26803.222284739593,0,1,1,2,71.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014214708811967068,26803.222284739593,7,4,7,7_0,7_3,7_0_1 +3843,1,60.0,221.0,2,111,60.0,244.0,0.0,0,78,0.0,121.8381094849406,102.31203260232367,396.0,0.0,463.2349876973085,71,2,2,2,1,2,2,2,2,0,,2,,2,103848,1,2,0,1,1,204.0,0.0,208.0,11,0.0,1.0,2.0,1.0,1.0,1,1,391.057928473611,60.0,9902.114902985624,0,7,2,3,52.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0399914567624943,9902.114902985624,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +3844,2,34.0,0.0,6,111,0.0,0.0,0.0,43,33,0.0,0.0,0.0,2083.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,103849,2,1,1,0,1,,712.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,364.587250315672,0.0,62984.80296957978,4,1,0,1,120.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03307146965286279,26243.667903991576,7,4,7,7_1,7_3,7_0_0 +3845,2,84.0,0.0,1,111,490.0,844.0,0.0,0,78,0.0,0.0,835.54826625231,1334.0,0.0,1602.3374164611819,70,0,0,0,0,0,0,0,0,0,,1,,1,103850,1,1,1,0,2,,180.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1117.36917298016,490.0,19315.49231575253,0,5,0,1,80.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06906373278987414,19315.49231575253,5,3,5,5_1,5_2,5_1_0 +3846,2,34.0,0.0,7,111,380.0,47.0,0.0,0,55,0.0,0.0,647.9762064813832,427.0,0.0,89.22969025317008,31,0,0,0,0,0,0,0,0,2,30.0,2,,5,103851,1,1,0,0,1,,200.0,260.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1158.67904995857,380.0,32598.73515057959,0,1,2,3,31.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013098667725223325,32598.73515057959,8,4,8,8_0,8_4,8_0_0 +3847,2,54.0,0.0,7,112,1700.0,,,85,22,0.0,0.0,,1700.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,5,103852,2,1,0,0,2,,400.0,750.0,42,2.0,0.0,4.0,5.0,2.8,5,3,92.24731560969643,1700.0,10154.93448556818,6,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16740629911655044,3626.76231627435,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +3848,1,40.0,47.0,9,111,924.0,,,0,52,0.0,0.0,,1022.0,135.78774408885906,,43,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,103853,1,1,0,0,2,,238.0,,32,1.0,1.0,7.0,3.0,1.6,1,1,88.06817101260756,924.0,36314.88067732628,0,1,1,2,132.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02814273325254516,22696.80042332892,6,3,6,6_1,6_3,6_0_0 +3849,1,60.0,249.0,2,111,0.0,0.0,1800.0,0,67,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,71,1,2,2,2,1,2,2,2,0,,2,,2,103854,2,2,0,1,1,416.0,0.0,273.0,22,1.0,2.0,3.0,2.0,1.5,2,2,372.845240206055,0.0,19045.487041525696,0,4,2,3,48.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.09451057859929665,12696.99136101713,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3850,1,64.0,184.0,2,111,250.0,900.0,0.0,0,90,0.0,0.0,426.3001358430153,1150.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,103855,2,1,0,0,1,,0.0,330.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1641.6976777721,250.0,9878.910692167341,0,5,2,3,54.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11640959573729082,9878.910692167341,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +3851,2,60.0,0.0,7,111,600.0,1500.0,0.0,46,22,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,5,103856,2,1,2,0,2,,300.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,2558.53380644298,600.0,33566.18376199683,1,1,0,1,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06256296559925263,22377.45584133122,6,3,6,6_1,6_3,6_0_0 +3852,2,56.0,0.0,6,400,1211.0,0.0,0.0,56,23,3164.0485531098047,0.0,2064.997858023566,4331.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,103857,2,2,3,0,2,,560.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,902.009957165014,1211.0,98957.38413128316,1,1,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04376631454055232,49478.69206564158,10,5,10,10_1,10_0,10_0_0 +3853,2,63.0,0.0,9,111,600.0,0.0,0.0,0,74,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2005.0,6,103858,2,1,0,0,1,,0.0,685.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1114.39415594923,600.0,33732.64402749263,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017786924722265788,33732.64402749263,9,5,9,9_0,9_4,9_0_0 +3854,1,35.0,22.0,9,300,1490.0,0.0,0.0,11,55,0.0,0.0,2540.748809624371,1490.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,103859,2,1,1,0,1,,196.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1116.75907494764,1490.0,30214.13554960889,1,1,1,2,94.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04931466589714454,14387.683595051853,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +3855,1,50.0,335.0,1,300,1000.0,0.0,0.0,85,85,0.0,1059.4618216081792,1705.2005433720612,1920.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103860,2,2,4,0,1,,180.0,392.0,41,0.0,0.0,4.0,4.0,2.3,3,2,933.580880536142,1000.0,18914.467466610942,6,7,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10150959858580792,8223.681507222149,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +3856,2,71.0,0.0,2,112,600.0,1800.0,0.0,75,75,0.0,0.0,1023.1203260232367,2400.0,0.0,3417.30728629162,60,0,0,0,0,0,0,0,0,0,,1,,2,103861,2,3,3,0,1,,410.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1914.79351156924,600.0,69279.79834398367,5,5,0,1,140.0,8,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03464213316678077,46186.532229322445,10,5,10,10_1,10_1,10_0_1 +3857,2,67.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1764.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103862,2,1,0,1,1,852.0,0.0,410.0,21,1.0,5.0,4.0,2.0,1.5,2,2,278.170736554453,0.0,30301.72450851264,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05821450853414104,20201.149672341762,5,3,5,5_0,5_4,5_0_1 +3858,2,58.0,0.0,7,111,650.0,1200.0,0.0,54,37,0.0,0.0,1108.3803531918397,1850.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,103863,2,1,1,0,1,,450.0,,43,3.0,0.0,7.0,4.0,2.5,4,4,1689.29645748234,650.0,79059.78241431157,1,1,1,2,135.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023400013806072772,31623.91296572463,8,4,8,8_1,8_3,8_0_0 +3859,1,54.0,142.0,2,111,500.0,0.0,0.0,85,68,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,103864,2,1,0,1,1,612.0,0.0,261.0,42,1.0,0.0,2.0,2.0,1.5,2,2,234.245972466567,500.0,21118.541501963446,7,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023675877425224357,14079.02766797563,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +3860,2,58.0,0.0,1,111,600.0,1300.0,0.0,46,62,0.0,0.0,1023.1203260232367,1900.0,0.0,2468.055262321726,41,0,0,0,0,0,0,0,0,2,60.0,2,,1,103865,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,301.516794708603,600.0,81262.37795402095,1,1,1,2,92.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023381053420256034,40631.188977010475,9,5,9,9_0,9_3,9_1_0 +3861,2,50.0,0.0,2,111,416.0,0.0,0.0,21,52,0.0,0.0,709.3634260427774,540.0,171.8130639491686,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,103866,2,1,0,1,1,804.0,0.0,313.0,43,4.0,1.0,5.0,4.0,2.5,4,4,258.02790019854,416.0,41761.73217991833,4,1,2,3,87.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012930498133400367,16704.69287196733,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +3862,2,87.0,0.0,2,111,250.0,80.0,0.0,0,74,0.0,0.0,426.3001358430153,330.0,0.0,151.8803238351831,31,0,0,0,0,0,0,0,0,0,,2,,2,103867,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,648.011568884213,250.0,381342.11427966546,0,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0008653646886689976,381342.11427966546,10,5,10,10_0,10_4,10_0_1 +3863,2,68.0,0.0,5,111,499.0,0.0,0.0,0,78,2088.272045052471,0.0,850.8950711426585,2578.0,137.1733333142556,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,103868,2,1,2,0,1,,328.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,999.542939519729,499.0,25783.474567483478,0,5,0,1,160.0,6,5,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09998652405255008,25783.474567483478,7,4,7,7_1,7_2,7_0_0 +3864,1,41.0,106.0,5,111,484.0,,,21,21,0.0,0.0,,760.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,103869,2,2,0,0,2,,473.0,248.0,43,2.0,2.0,4.0,4.0,2.3,3,3,110.69315581875449,484.0,20915.08413029808,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036337410610701115,9093.514839260035,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3865,1,93.0,253.0,2,111,360.0,,,0,77,0.0,0.0,,440.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,2,,2,103870,2,1,0,0,2,,0.0,393.0,11,0.0,4.0,5.0,1.0,1.0,1,1,100.40777716030985,360.0,9218.718411024478,0,5,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04772897710747005,9218.718411024478,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3866,2,55.0,0.0,7,111,0.0,,,78,68,0.0,0.0,,300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,103871,1,1,0,0,1,,0.0,,42,2.0,0.0,3.0,3.0,2.0,3,3,108.37154518496695,0.0,10101.152546903322,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029699581172246532,5050.576273451661,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3867,2,71.0,0.0,2,111,350.0,0.0,0.0,0,77,0.0,0.0,596.8201901802214,350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,103872,2,2,0,1,1,920.0,80.0,350.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1691.52924496095,350.0,23615.74444111946,0,5,2,3,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014820621084914184,23615.74444111946,6,3,6,6_0,6_2,6_0_1 +3868,2,46.0,0.0,2,111,460.0,447.0,0.0,54,52,0.0,0.0,784.3922499511482,907.0,0.0,848.6313094290857,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,103873,2,1,3,0,1,,340.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,1151.05019745196,460.0,58045.899494167264,4,1,0,1,110.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015625565421570214,23218.359797666904,6,3,6,6_1,6_2,6_0_1 +3869,2,61.0,0.0,6,211,1680.0,,,52,72,0.0,0.0,,1968.0,399.049696914198,,43,0,0,0,0,0,0,0,0,0,,1,,4,103874,2,1,0,0,2,,1200.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,44.88941064353977,1680.0,13775.752437452116,4,5,0,1,140.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14285971012731047,9183.834958301411,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3870,2,46.0,0.0,2,111,60.0,1.0,0.0,46,22,0.0,0.0,102.31203260232367,61.0,0.0,1.898504047939789,20,0,0,0,0,0,0,0,0,1,3.0,2,,2,103875,1,3,0,1,2,,0.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,4,2,778.586783190697,60.0,174058.2651540372,1,1,1,2,113.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0003504573594710744,60020.09143242663,10,5,10,10_0,10_4,10_0_1 +3871,2,76.0,0.0,1,221,400.0,0.0,0.0,71,72,2003.897416969543,324.46018286750484,682.0802173488245,2665.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103876,2,1,2,0,1,,110.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2559.860215288,400.0,21206.73517159069,5,5,0,1,140.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12566762297150436,14137.823447727127,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +3872,1,70.0,115.0,1,111,450.0,0.0,0.0,0,77,0.0,0.0,767.3402445174275,726.0,382.4226262094398,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,103877,2,1,0,1,1,65.0,0.0,395.0,11,0.0,9.0,3.0,1.0,1.0,1,1,1383.45526496694,450.0,10371.306702108694,0,5,2,3,65.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07000082254364243,10371.306702108694,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +3873,2,85.0,0.0,1,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,3021.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,103878,1,2,3,0,2,,64.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,408.813418093956,0.0,10784.269110057174,0,5,0,1,120.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.28013024982682244,10784.269110057174,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +3874,1,53.0,400.0,1,111,1080.0,,,0,56,0.0,0.0,,1402.0,446.15973057767974,,71,0,0,0,0,0,0,0,0,0,,1,,1,103879,2,1,0,0,2,,800.0,400.0,32,1.0,5.0,3.0,4.0,2.1,1,1,106.11297608898226,1080.0,13822.591293324795,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10142815990494154,6582.186330154664,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +3875,2,28.0,0.0,2,111,0.0,0.0,0.0,43,54,0.0,0.0,0.0,1145.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,103880,2,3,0,1,1,750.0,0.0,356.0,43,2.0,0.0,3.0,3.0,1.8,2,2,718.646586745355,0.0,43769.66385832321,1,1,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026159670855737394,24316.479921290673,7,4,7,7_0,7_4,7_0_1 +3876,1,45.0,210.0,7,111,850.0,1000.0,0.0,64,52,0.0,0.0,1449.420461866252,1850.0,0.0,1898.504047939789,43,0,0,0,0,0,0,0,0,0,,1,,5,103881,2,1,2,0,1,,550.0,600.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1086.03858492823,850.0,30754.228642245216,4,1,2,3,103.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06015432939386967,11828.549477786622,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +3877,1,45.0,70.0,5,111,900.0,,,0,52,0.0,0.0,,948.0,66.50828281903301,,60,0,0,0,0,0,0,0,0,2,30.0,2,,3,103882,2,2,0,0,2,,600.0,384.0,32,2.0,0.0,3.0,2.0,1.5,2,2,50.20048820756423,900.0,9585.144752173197,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09890304471250308,6390.096501448798,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3878,2,59.0,0.0,2,111,170.0,61.0,0.0,0,67,0.0,0.0,289.8840923732504,231.0,0.0,115.80874692432712,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,103883,2,2,0,1,2,,60.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1729.53590056735,170.0,7961.553522819775,0,1,0,1,20.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029014437865411198,7961.553522819775,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +3879,2,28.0,0.0,5,111,400.0,0.0,0.0,0,54,0.0,0.0,682.0802173488245,732.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,10.0,2,,3,103884,1,1,0,1,2,564.0,0.0,498.0,12,1.0,0.0,2.0,1.0,1.0,1,1,581.471191298392,400.0,21093.28128281524,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03470299334586519,21093.28128281524,5,3,5,5_0,5_3,5_0_0 +3880,2,57.0,0.0,1,111,570.0,0.0,0.0,0,55,0.0,0.0,971.9643097220749,570.0,0.0,0.0,44,2,2,2,1,1,2,2,2,0,,2,,1,103885,1,2,0,1,1,598.0,0.0,258.0,22,2.0,1.0,3.0,2.0,1.5,2,2,797.772626856537,570.0,25509.466272750393,0,4,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.022344646254276315,17006.310848500263,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +3881,2,78.0,0.0,5,211,850.0,0.0,0.0,77,78,0.0,0.0,1449.420461866252,910.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,103886,2,1,0,0,1,,250.0,396.0,41,0.0,4.0,2.0,2.0,1.5,2,2,928.243749855263,850.0,20138.576303361864,5,5,2,3,45.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04518690826461689,13425.717535574577,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +3882,1,73.0,108.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,235.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,103887,2,2,0,1,1,,0.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,1181.97729147428,0.0,9885.017063435309,0,5,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023773352993923025,9885.017063435309,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +3883,1,21.0,200.0,7,111,0.0,,,0,54,0.0,0.0,,344.0,0.0,,41,0,0,0,0,0,0,0,0,0,,8,,5,103888,2,2,0,0,2,,407.0,368.0,32,1.0,0.0,3.0,2.0,1.3,1,1,112.79734028876933,0.0,13393.882240200286,0,4,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02568336751293223,10302.986338615605,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +3884,1,99.0,161.0,7,112,600.0,0.0,0.0,0,78,0.0,0.0,1023.1203260232367,700.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,103889,2,1,2,0,1,,216.0,317.0,11,0.0,3.0,2.0,1.0,1.0,1,1,731.907135626208,600.0,11830.89168763369,0,5,2,3,50.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.059167137903196186,11830.89168763369,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +3885,2,56.0,0.0,2,111,450.0,,,0,43,0.0,0.0,,693.0,336.6981817713546,,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,103890,2,1,0,0,1,,388.0,511.0,22,1.0,1.0,4.0,2.0,1.3,1,1,117.21971200656749,450.0,47608.0,0,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01455637707948244,36621.53846153846,9,5,9,9_0,9_2,9_0_1 +3886,2,69.0,0.0,1,211,600.0,0.0,0.0,78,71,4218.731404146406,0.0,1023.1203260232367,4780.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103891,1,2,4,0,2,,550.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,621.523836875478,600.0,20480.228144788332,5,5,0,1,120.0,2,3,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2333958374978543,13653.485429858889,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +3887,2,64.0,0.0,6,111,400.0,690.0,0.0,0,78,0.0,0.0,682.0802173488245,1090.0,0.0,1309.9677930784544,71,2,2,2,2,1,2,2,2,0,,1,,4,103892,1,3,3,0,1,,240.0,498.0,11,0.0,2.0,4.0,1.0,1.0,1,1,205.10511747718,400.0,20814.009657779516,0,5,2,3,86.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.0523685737597704,20814.009657779516,5,3,5,5_1,5_2,5_0_0 +3888,2,37.0,0.0,5,111,300.0,0.0,0.0,52,48,0.0,0.0,511.56016301161833,300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,3,103893,1,1,0,1,2,576.0,0.0,297.0,43,2.0,0.0,3.0,4.0,2.1,2,2,281.569285294504,300.0,33386.2736482201,1,1,2,3,70.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008985728780665935,15898.225546771475,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +3889,2,50.0,0.0,9,111,1314.0,,,43,42,0.0,0.0,,1482.0,232.77898986661552,,20,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,103894,2,1,0,0,2,,940.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,80.03826131115457,1314.0,75822.3647861949,1,1,1,2,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019545684234182976,30328.94591447796,8,4,8,8_1,8_3,8_0_0 +3890,2,52.0,0.0,7,112,1000.0,0.0,0.0,42,42,1792.9608467622227,0.0,1705.2005433720612,2810.0,152.4148147936173,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,103895,1,2,1,0,1,,200.0,,43,2.0,0.0,6.0,5.0,3.0,5,4,1251.89144432759,1000.0,67258.71575307587,1,1,0,1,160.0,6,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04177897196723524,22419.571917691956,6,3,6,6_1,6_0,6_0_0 +3891,0,38.0,0.0,9,211,1000.0,,,0,53,0.0,0.0,,1075.0,103.91919190473907,,20,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,103896,2,3,0,0,2,,566.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,68.95598444516163,1000.0,40896.854223641334,0,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026285640311634835,25560.533889775834,7,4,7,7_1,7_2,7_0_0 +3892,2,83.0,0.0,1,111,290.0,1500.0,0.0,0,77,0.0,0.0,494.50815757789775,1790.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,103897,2,1,2,0,2,,320.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1634.20824322392,290.0,25767.42687533937,0,5,0,1,120.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06946754942431266,25767.42687533937,7,4,7,7_1,7_2,7_1_0 +3893,2,65.0,0.0,1,300,510.0,1200.0,0.0,77,71,0.0,0.0,869.6522771197511,1710.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,1,103898,1,3,3,0,2,,340.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,1603.35465920371,510.0,17591.577645834186,5,5,0,1,75.0,0,0,9,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09720560795779112,11727.718430556124,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +3894,1,28.0,468.0,2,111,600.0,,,81,81,0.0,0.0,,888.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,2,,2,103899,1,3,0,0,2,,549.0,534.0,43,2.0,0.0,4.0,7.0,2.9999999999999996,2,2,70.09967988026196,600.0,9447.12,4,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09399690064273555,3149.040000000001,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3895,2,45.0,0.0,7,111,902.0,0.0,0.0,45,38,84.37462808292813,0.0,1538.0908901215992,1072.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,103900,2,1,2,0,1,,91.0,,43,2.0,0.0,7.0,4.0,2.5,4,2,1229.57238119844,902.0,70297.34871482605,1,1,0,1,140.0,6,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015249508261666633,28118.93948593042,8,4,8,8_1,8_2,8_0_0 +3896,1,93.0,184.0,2,111,150.0,0.0,0.0,0,77,0.0,0.0,255.78008150580916,200.0,69.27946126982604,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,103901,2,2,0,1,1,427.0,155.0,261.0,11,0.0,5.0,2.0,1.0,1.0,1,1,376.586673810983,150.0,32710.491874504754,0,5,2,3,45.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.006114246180317582,32710.491874504754,8,4,8,8_0,8_2,8_0_1 +3897,2,60.0,0.0,2,112,700.0,0.0,0.0,38,38,1792.9608467622227,0.0,1193.6403803604428,2480.0,110.84713803172167,0.0,12,2,2,2,2,1,2,2,2,2,20.0,1,,2,103902,2,2,2,0,1,,460.0,,43,2.0,0.0,5.0,5.0,3.0,5,5,1287.72543474072,700.0,88228.85074046395,1,1,0,1,100.0,9,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.028108719304246927,29409.616913487986,8,4,8,8_1,8_1,8_0_1 +3898,1,35.0,150.0,5,111,0.0,0.0,0.0,31,53,0.0,0.0,0.0,1083.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,3,103903,1,1,0,1,1,,0.0,567.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1040.01896489972,0.0,56062.16121963075,1,1,2,3,47.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019317842488397973,37374.774146420496,9,5,9,9_0,9_4,9_0_0 +3899,1,31.0,162.0,2,111,0.0,0.0,500.0,63,63,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,71,0,0,0,0,0,0,0,0,3,100.0,2,,2,103904,1,1,0,1,1,312.0,0.0,413.0,43,2.0,0.0,3.0,4.0,2.1,2,2,312.647392005988,0.0,31084.35022197704,1,1,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01608526465663398,14802.07153427478,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +3900,2,55.0,0.0,6,111,280.0,0.0,0.0,0,68,0.0,0.0,477.4561521441771,280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,103905,2,1,0,1,1,,0.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,317.780847560336,280.0,16393.948514480173,0,4,0,1,87.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017079472937998205,10929.299009653449,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +3901,1,34.0,300.0,1,111,600.0,0.0,0.0,0,81,843.7462808292812,1589.1927324122687,1023.1203260232367,2720.0,166.2707070475825,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,103906,1,3,1,0,1,,500.0,,32,1.0,0.0,6.0,4.0,1.9,2,1,236.588120116894,600.0,14196.315345946128,0,4,1,2,100.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.19159901239984203,7471.744918919016,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +3902,2,44.0,0.0,7,111,1500.0,0.0,0.0,45,68,0.0,0.0,2557.8008150580918,1600.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,103907,2,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1259.67013910871,1500.0,50644.13635712828,1,1,0,1,147.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031592996052242805,24116.25540815632,6,3,6,6_1,6_2,6_0_0 +3903,2,59.0,0.0,1,112,378.0,0.0,0.0,42,54,2109.365702073203,430.4063650283228,644.5658053946391,2783.0,110.84713803172167,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,103908,2,2,1,0,1,,428.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1430.58551948711,378.0,46534.76118713411,1,1,0,1,98.0,6,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05980475517664076,31023.17412475607,8,4,8,8_1,8_0,8_1_0 +3904,2,50.0,0.0,9,112,1700.0,0.0,0.0,0,52,0.0,0.0,2898.840923732504,1800.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,2012.0,6,103909,2,2,1,0,1,,400.0,,22,3.0,0.0,5.0,3.0,2.0,3,3,225.47678471799,1700.0,36380.23387528555,0,1,0,1,180.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04947741694488685,18190.116937642775,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3905,2,52.0,0.0,2,222,180.0,0.0,0.0,55,55,284.76436977988243,132.4327277010224,306.936097806971,650.0,138.5589225396521,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,103910,2,3,1,0,1,,110.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1371.14473646922,180.0,21308.40041859786,4,4,0,1,64.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030504401420609846,11838.000232554366,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +3906,2,55.0,0.0,7,112,1950.0,0.0,0.0,45,62,0.0,0.0,3325.141059575519,1983.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,5,103911,2,1,2,0,1,,786.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,937.073434261653,1950.0,68167.10409792169,1,1,0,1,90.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02909027787290818,34083.552048960846,9,5,9,9_1,9_0,9_0_0 +3907,2,74.0,0.0,5,211,1827.0,0.0,0.0,77,74,0.0,26.486545540204478,3115.401392740756,1847.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,103912,2,3,3,0,1,,679.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1573.06810448899,1827.0,69198.24620692858,5,5,0,1,104.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026691427908111725,46132.164137952386,10,5,10,10_1,10_1,10_0_0 +3908,2,41.0,0.0,8,111,700.0,1299.0,0.0,37,63,0.0,0.0,1193.6403803604428,1999.0,0.0,2466.1567582737857,50,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,103913,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,592.625440905999,700.0,69992.82042211368,1,1,1,2,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028560072132318755,33329.9144867208,8,4,8,8_1,8_4,8_0_0 +3909,2,49.0,0.0,7,112,1710.0,0.0,0.0,68,64,0.0,662.163638505112,2915.892929166225,2338.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,103914,2,2,2,0,1,,245.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,678.739996758967,1710.0,33839.23518696105,1,1,1,2,110.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06909139604020599,13535.69407478442,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +3910,2,46.0,0.0,5,111,0.0,0.0,1389.0,0,52,0.0,463.51454695357836,875.5121053860792,1770.0,42.95326598729215,1662.2609529673416,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,103915,2,2,3,0,1,,325.0,,32,1.0,2.0,4.0,2.0,1.5,2,2,1422.9968884266,0.0,25475.416506459685,0,1,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06947874628668738,16983.61100430646,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +3911,2,67.0,0.0,7,112,432.0,,,0,78,0.0,0.0,,501.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,5,103916,2,2,0,0,2,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,113.99497844659733,432.0,18516.473594765102,0,5,0,1,80.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027056987791759687,18516.473594765102,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +3912,2,44.0,0.0,7,400,1591.0,0.0,0.0,22,22,0.0,0.0,2712.974064504949,1591.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,103917,2,1,1,0,1,,219.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,1924.88416129526,1591.0,53230.56373174528,1,1,1,2,170.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02988884371050105,26615.28186587264,7,4,7,7_1,7_0,7_0_0 +3913,1,36.0,300.0,5,111,420.0,,,0,54,0.0,0.0,,558.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,3,103918,2,3,0,0,2,,0.0,400.0,32,1.0,0.0,2.0,3.0,1.6,1,1,122.09279450368044,420.0,13984.356930810598,0,4,2,3,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03990172753461433,8740.223081756623,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +3914,2,56.0,0.0,7,111,1000.0,0.0,0.0,77,38,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,103919,2,1,2,0,1,,560.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,712.953908357572,1000.0,56651.93052372077,6,1,1,2,150.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017651649127496002,28325.965261860387,8,4,8,8_1,8_2,8_0_0 +3915,0,85.0,0.0,5,211,256.0,,,0,86,0.0,0.0,,388.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,103920,1,3,0,0,2,,156.0,,11,0.0,11.0,5.0,1.0,1.0,1,1,109.16892852266155,256.0,9426.264587082384,0,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041161585951205906,9426.264587082384,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3916,2,76.0,0.0,1,112,173.0,0.0,0.0,0,72,0.0,0.0,294.9996940033666,293.0,166.2707070475825,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,103921,1,2,4,0,2,,185.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,833.773905449492,173.0,13935.716092338942,0,5,0,1,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.021025112599780547,13935.716092338942,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +3917,2,47.0,0.0,9,120,500.0,0.0,0.0,0,46,1582.0242765549024,0.0,852.6002716860306,2000.0,0.0,0.0,20,2,1,2,2,2,2,2,1,2,60.0,1,2006.0,6,103922,1,1,1,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,497.687487874984,500.0,35283.44852900631,0,1,1,2,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.05668380170820922,35283.44852900631,9,5,9,9_1,9_0,9_0_0 +3918,2,51.0,0.0,6,300,1100.0,0.0,0.0,77,67,0.0,1019.7320032978724,1875.7205977092674,1960.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,4,103923,2,1,2,0,1,,397.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,1185.15843490721,1100.0,43212.79711942523,5,1,0,1,115.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04535693430312409,21606.398559712616,6,3,6,6_1,6_0,6_0_0 +3919,0,69.0,0.0,1,111,429.0,80.0,0.0,74,74,1582.0242765549024,0.0,731.5310331066142,2009.0,0.0,151.8803238351831,10,2,2,1,2,2,2,2,1,0,,2,,1,103924,1,3,0,1,1,,478.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1589.37114877443,429.0,103241.27364692895,5,5,0,1,136.0,7,5,7,1,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.01945927175279245,68827.5157646193,10,5,10,10_0,10_2,10_1_0 +3920,2,55.0,0.0,1,111,2000.0,0.0,0.0,67,37,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,103925,2,1,2,0,2,,600.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,616.393012762014,2000.0,134059.02535791928,1,4,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.014918801585050117,67029.51267895964,10,5,10,10_1,10_4,10_1_0 +3921,1,46.0,180.0,2,111,400.0,200.0,0.0,0,47,0.0,0.0,682.0802173488245,650.0,69.27946126982604,379.7008095879578,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,103926,1,1,0,1,1,810.0,253.0,386.0,32,1.0,0.0,5.0,3.0,1.8,2,2,337.555424705126,400.0,24781.41775323597,0,1,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026229330640904217,13767.454307353317,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +3922,2,66.0,0.0,6,211,372.0,,,0,72,0.0,0.0,,372.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,103927,1,2,0,0,2,,420.0,,21,1.0,5.0,6.0,2.0,1.5,2,2,121.30464181727413,372.0,11113.789473684199,0,5,0,1,102.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03347193150282725,7409.192982456133,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3924,2,68.0,0.0,5,111,367.0,1709.0,0.0,75,74,0.0,0.0,625.8085994175465,2076.0,0.0,3244.543417929099,41,0,0,0,0,0,0,0,0,0,,1,,3,103929,2,1,2,0,1,,227.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1069.84285005888,367.0,96866.94332159936,5,5,0,1,130.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02143145978197801,64577.96221439957,10,5,10,10_1,10_3,10_0_0 +3925,2,75.0,0.0,5,111,2400.0,,,0,86,0.0,0.0,,2670.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,3,103930,1,2,0,0,2,,1200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,119.51022677350656,2400.0,5503.741114659989,0,6,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4851245624341013,5503.741114659989,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +3926,1,33.0,353.0,2,111,0.0,0.0,0.0,34,67,0.0,0.0,0.0,1027.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,103931,2,1,0,1,1,450.0,0.0,324.0,43,2.0,0.0,3.0,3.0,1.8,2,2,107.631624624632,0.0,9390.093595873583,4,4,2,3,100.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1093705818279925,5216.7186643742125,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +3927,1,43.0,330.0,9,111,360.0,900.0,0.0,85,47,0.0,0.0,613.872195613942,1260.0,0.0,1708.65364314581,43,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,103932,2,1,1,0,1,,250.0,460.0,42,1.0,0.0,4.0,4.0,2.1,2,2,2161.70206341885,360.0,22327.735051209875,6,1,2,3,94.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05643205623454961,10632.254786290416,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +3928,2,60.0,0.0,2,111,920.0,0.0,0.0,77,21,1727.5705099979534,254.270837185963,1568.7844999022964,2750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,2,103933,2,1,1,0,1,,516.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,1846.91494268966,920.0,61021.59847737774,7,1,1,2,140.0,7,6,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04506601053755573,30510.79923868887,8,4,8,8_1,8_2,8_0_1 +3929,2,37.0,0.0,1,400,300.0,0.0,0.0,0,34,738.277995725621,0.0,511.56016301161833,1060.0,83.13535352379125,0.0,20,2,2,2,1,2,2,2,2,1,10.0,1,,1,103934,2,1,3,0,1,,110.0,270.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2029.86080866265,300.0,31142.633137414865,0,1,2,3,50.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03403694206982493,31142.633137414865,8,4,8,8_1,8_0,8_1_0 +3930,2,53.0,0.0,8,112,600.0,0.0,0.0,54,37,1582.0242765549024,662.163638505112,1023.1203260232367,2670.0,96.99124577775646,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,103935,2,1,1,0,1,,360.0,,43,2.0,3.0,5.0,4.0,2.3,3,3,1033.97403701761,600.0,42773.55212871698,1,1,1,2,140.0,9,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0624217505239046,18597.19657770304,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +3931,2,48.0,0.0,2,111,431.0,75.0,0.0,52,47,0.0,0.0,734.9414341933584,506.0,0.0,142.38780359548417,31,0,0,0,0,0,0,0,0,2,8.0,2,,2,103936,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1682.26288342106,431.0,37787.73974192009,1,1,0,1,65.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013390586562092396,25191.826494613397,7,4,7,7_0,7_2,7_0_1 +3932,2,32.0,0.0,1,300,0.0,0.0,0.0,63,43,0.0,0.0,0.0,1243.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,1,103937,1,1,4,0,1,,158.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1205.64111773584,0.0,41569.62146208345,1,1,1,2,70.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029901643466582133,27713.0809747223,7,4,7,7_1,7_0,7_1_0 +3933,1,26.0,270.0,6,111,665.0,0.0,0.0,0,55,0.0,0.0,1133.9583613424206,665.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,103938,2,1,0,0,1,,0.0,469.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1830.87500152674,665.0,6562.857164941195,0,4,2,3,60.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.10132781855324115,6562.857164941195,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3934,1,59.0,175.0,5,211,430.0,,,0,52,0.0,0.0,,518.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,3,103939,2,3,0,0,1,,240.0,182.0,12,1.0,5.0,1.0,1.0,1.0,1,1,99.95265975973959,430.0,6968.5084076151325,0,4,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07433441558798058,6968.5084076151325,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3935,2,51.0,0.0,1,111,900.0,0.0,0.0,35,22,3796.8582637317654,0.0,1534.680489034855,4500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,103940,2,1,0,1,2,,0.0,2017.0,43,2.0,0.0,6.0,4.0,2.3,3,3,234.296953969433,900.0,94001.78950580672,1,4,2,3,115.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04787142908297532,40870.34326339423,9,5,9,9_0,9_4,9_1_0 +3936,1,68.0,50.0,1,111,633.0,0.0,0.0,0,77,0.0,397.2981831030672,1079.3919439545148,933.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,103941,1,1,1,0,1,,280.0,223.0,21,1.0,5.0,3.0,2.0,1.5,2,2,197.795150081947,633.0,41854.819088364224,0,5,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.022291339929823684,27903.212725576148,7,4,7,7_1,7_3,7_1_0 +3937,2,52.0,0.0,2,111,0.0,0.0,600.0,0,52,0.0,0.0,378.19097424884626,1631.0,0.0,718.0392885388085,41,2,2,1,1,2,2,2,2,0,,2,,2,103942,2,2,0,1,1,528.0,0.0,418.0,32,1.0,3.0,3.0,2.0,1.5,2,2,913.633254354607,0.0,20657.439783329708,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0789546050772563,13771.626522219805,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +3938,2,49.0,0.0,9,221,1000.0,0.0,0.0,85,53,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,8.0,1,2005.0,6,103943,2,1,1,0,1,,880.0,,42,2.0,0.0,4.0,5.0,3.0,5,4,2006.89803980704,1000.0,52419.073275262235,6,1,1,2,135.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019077025546575678,17473.024425087413,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +3939,2,61.0,0.0,2,112,1000.0,0.0,0.0,77,63,105.46828510366015,1059.4618216081792,1705.2005433720612,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103944,1,2,2,0,2,,289.0,520.0,42,1.0,2.0,5.0,2.0,1.5,2,2,1244.95113813737,1000.0,20693.146569141765,6,4,2,3,100.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09181783899570578,13795.43104609451,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +3940,1,60.0,291.0,2,211,264.0,420.0,0.0,78,78,0.0,0.0,450.1729434502241,754.0,96.99124577775646,797.3717001347114,70,2,2,2,2,1,2,2,2,0,,2,,2,103945,1,2,0,1,2,,420.0,280.0,41,0.0,3.0,3.0,2.0,1.5,2,2,262.790106460624,264.0,23164.032655618168,6,7,2,3,65.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03255046352290157,15442.68843707878,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +3941,2,71.0,0.0,2,112,360.0,0.0,0.0,0,78,1898.4291318658827,0.0,613.872195613942,2160.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,103946,2,1,1,0,1,,192.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,2126.87745606928,360.0,9279.511641314739,0,5,0,1,90.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.232770870223723,9279.511641314739,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +3942,2,31.0,0.0,1,111,400.0,0.0,0.0,56,47,0.0,0.0,682.0802173488245,400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,2,,1,103947,1,3,0,0,1,,0.0,800.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1173.06190372782,400.0,39781.984074868335,1,1,3,4,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01005480267769485,26521.32271657889,7,4,7,7_0,7_4,7_1_0 +3943,2,67.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,103948,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1077.18307085734,300.0,29643.946042487936,0,5,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010120110175953545,29643.946042487936,8,4,8,8_0,8_4,8_0_1 +3944,2,75.0,0.0,6,111,400.0,0.0,0.0,0,74,0.0,0.0,682.0802173488245,400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,103949,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,933.134598696034,400.0,21827.186689735212,0,5,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018325769861496175,21827.186689735212,6,3,6,6_0,6_4,6_0_0 +3945,2,67.0,0.0,2,111,320.0,120.0,0.0,0,77,0.0,0.0,545.6641738790596,440.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,2,,2,103950,1,1,0,1,2,,0.0,249.0,11,0.0,0.0,2.0,1.0,1.0,1,1,339.726484496406,320.0,17349.100108738556,0,5,2,3,40.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025361545973118037,17349.100108738556,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +3946,2,56.0,0.0,2,120,539.0,1035.0,0.0,56,38,0.0,132.4327277010224,919.1030928775409,1674.0,0.0,1964.9516896176817,12,0,0,0,0,0,0,0,0,0,,1,,2,103951,2,1,1,0,1,,345.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,1345.72356875777,539.0,78819.58100806538,1,1,1,2,120.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02123837729902046,52546.38733871025,10,5,10,10_1,10_0,10_0_1 +3948,2,70.0,0.0,5,211,1400.0,0.0,0.0,75,75,0.0,953.5156394473612,2387.2807607208856,2210.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,103953,2,1,2,0,1,,700.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1398.63054577927,1400.0,38154.0,5,5,0,1,90.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05792315353567123,25436.0,7,4,7,7_1,7_1,7_0_0 +3949,2,46.0,0.0,9,211,1418.0,0.0,0.0,45,47,0.0,0.0,2417.9743705015826,1418.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,103954,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,1562.57424682947,1418.0,29865.679628697075,1,1,1,2,124.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04747924767255202,11946.27185147883,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +3950,2,55.0,0.0,2,111,754.0,824.0,0.0,56,48,0.0,0.0,1285.7212097025342,1578.0,0.0,1564.3673355023861,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,103955,2,2,4,0,1,,825.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,788.700139847576,754.0,51781.24744503906,1,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030474352740823774,25890.62372251953,7,4,7,7_1,7_4,7_0_1 +3951,1,27.0,467.0,5,111,900.0,,,0,52,0.0,0.0,,992.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,2,,3,103956,2,2,0,0,2,,720.0,619.0,32,1.0,0.0,5.0,4.0,1.9,1,1,118.40642234466115,900.0,15909.011554210478,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06235459674032717,8373.163975900252,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +3952,2,54.0,0.0,6,111,1166.0,0.0,0.0,77,46,0.0,172.1625460113291,1988.2638335718234,1345.0,67.89387204442953,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,4,103957,2,1,2,0,1,,230.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,546.513769102551,1166.0,62091.62764092899,5,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021661535558030937,41394.41842728599,9,5,9,9_1,9_4,9_0_0 +3953,0,61.0,0.0,7,111,240.0,,,0,67,0.0,0.0,,366.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,103958,2,1,0,0,2,,300.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,99.45549056060123,240.0,8060.528618523346,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04540645127900428,8060.528618523346,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +3954,2,50.0,0.0,6,111,1100.0,0.0,0.0,38,37,0.0,198.6490915515336,1875.7205977092674,1250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,103959,2,1,1,0,1,,486.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,294.271085915859,1100.0,77987.27319236819,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016028256263258153,43326.26288464899,10,5,10,10_1,10_4,10_0_0 +3955,2,63.0,0.0,7,120,900.0,,,77,74,0.0,0.0,,1260.0,498.81212114274757,,41,0,0,0,0,0,0,0,0,0,,1,,5,103960,2,1,0,0,1,,960.0,,41,1.0,0.0,5.0,4.0,2.5,4,4,82.46589108309136,900.0,64427.783629025565,5,5,0,1,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019556780150238682,25771.113451610225,7,4,7,7_1,7_1,7_0_0 +3956,2,39.0,0.0,9,111,600.0,0.0,0.0,0,67,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,120.0,8,2007.0,6,103961,2,1,0,0,1,,130.0,457.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2477.58736679617,600.0,19252.517962296788,0,1,2,3,33.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031164754718058768,19252.517962296788,5,3,5,5_0,5_2,5_0_0 +3957,2,74.0,0.0,1,400,900.0,0.0,0.0,0,86,0.0,0.0,1534.680489034855,900.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,103962,2,1,0,0,1,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2165.86478438393,900.0,22798.011678160823,0,5,0,1,66.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03947712689620858,22798.011678160823,6,3,6,6_0,6_0,6_1_0 +3958,1,33.0,230.0,2,111,200.0,600.0,0.0,0,52,0.0,0.0,341.04010867441224,800.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,0,,2,,2,103963,2,2,0,1,1,556.0,156.0,369.0,12,1.0,0.0,3.0,1.0,1.0,1,1,305.182291255254,200.0,10702.128772337494,0,1,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07475148328132748,10702.128772337494,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +3959,2,64.0,0.0,5,120,282.0,0.0,0.0,0,78,1727.5705099979534,0.0,480.8665532309212,1984.0,88.67771042537734,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,103964,1,2,2,0,1,,294.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,603.894096187556,282.0,10813.468068514592,0,5,0,1,123.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.18347490254091398,10813.468068514592,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +3960,2,81.0,0.0,2,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1625.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,103965,2,1,2,0,2,,241.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1163.45505729756,0.0,25103.449162020894,0,5,0,1,100.0,10,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06473214057207999,25103.449162020894,7,4,7,7_1,7_0,7_0_1 +3961,2,61.0,0.0,5,111,650.0,0.0,0.0,0,75,0.0,0.0,1108.3803531918397,685.0,48.49562288887823,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,103966,2,1,0,0,1,,213.0,728.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2724.30371556052,650.0,6786.550812859461,0,6,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.10093492539715923,6786.550812859461,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +3962,2,30.0,0.0,1,221,1560.0,0.0,0.0,0,63,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,103967,2,2,1,0,1,,138.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1791.42854140602,1560.0,21642.73618810703,0,1,1,2,90.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07207961074982935,21642.73618810703,6,3,6,6_1,6_1,6_1_0 +3963,2,43.0,0.0,9,211,900.0,0.0,0.0,63,45,0.0,301.94661915833103,1534.680489034855,1128.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,103968,2,1,1,0,1,,270.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,1511.86464872026,900.0,40798.53591160031,1,1,1,2,101.0,3,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027648050960556014,15691.744581384737,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +3964,2,75.0,0.0,2,112,2539.0,0.0,0.0,77,74,0.0,66.2163638505112,4329.504179621664,2589.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,103969,2,1,2,0,1,,500.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1703.01747488062,2539.0,37572.95579622345,5,5,0,1,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06890594431913784,25048.637197482298,7,4,7,7_1,7_0,7_0_1 +3965,2,51.0,0.0,8,111,0.0,0.0,0.0,38,34,0.0,0.0,0.0,1171.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,90.0,2,2003.0,6,103970,2,1,0,0,1,,0.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,688.889348668647,0.0,389766.8527282429,1,1,0,1,116.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003004360149672492,139202.44740294392,10,5,10,10_0,10_4,10_0_0 +3966,2,50.0,0.0,6,112,600.0,,,52,63,0.0,0.0,,750.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,,4,103971,2,2,0,0,2,,500.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,92.38729991058618,600.0,31298.442325740594,4,4,0,1,80.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023962853876059575,13608.01840249591,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +3967,2,55.0,0.0,2,111,411.0,2286.0,0.0,52,54,0.0,0.0,700.8374233259171,2697.0,0.0,4339.980253590357,20,0,0,0,0,0,0,0,0,0,,1,,2,103972,2,2,2,0,1,,240.0,,43,2.0,3.0,3.0,2.0,1.5,2,2,519.078842594681,411.0,35975.02227058262,1,4,1,2,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07496868187362825,23983.348180388417,6,3,6,6_1,6_2,6_0_1 +3968,2,71.0,0.0,2,111,300.0,480.0,0.0,0,77,0.0,0.0,511.56016301161833,780.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,0,,2,,2,103973,2,1,0,1,1,700.0,0.0,356.0,11,0.0,4.0,4.0,1.0,1.0,1,1,399.243695686694,300.0,13116.814461623886,0,5,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.059465657784674844,13116.814461623886,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +3969,2,57.0,0.0,8,111,700.0,0.0,0.0,0,52,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,103974,2,1,0,0,1,,0.0,517.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1555.13782920475,700.0,25801.591839372835,0,1,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027130109039699275,25801.591839372835,7,4,7,7_0,7_3,7_0_0 +3970,2,45.0,0.0,9,111,420.0,,,0,52,0.0,0.0,,512.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,103975,2,2,0,0,2,,360.0,606.0,32,1.0,1.0,4.0,2.0,1.5,2,2,38.29247681406775,420.0,37584.628881043,0,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013622590278076245,25056.419254028664,7,4,7,7_0,7_2,7_0_0 +3971,2,75.0,0.0,2,111,600.0,700.0,0.0,78,78,0.0,1059.4618216081792,1023.1203260232367,2100.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,2,103976,2,1,1,0,1,,700.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,290.901932030918,600.0,23265.861947608355,5,5,0,1,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09026100149347238,15510.574631738904,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +3972,2,63.0,0.0,9,111,200.0,,,0,77,0.0,0.0,,452.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,103977,1,1,0,0,1,,190.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,82.76875462301109,200.0,18054.11191001592,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025035847913917216,12036.074606677279,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +3973,2,66.0,0.0,2,111,1392.0,201.0,0.0,22,78,0.0,0.0,2373.6391563739094,1593.0,0.0,381.5993136358976,70,0,0,0,0,0,0,0,0,0,,2,,2,103978,2,2,0,0,1,,0.0,700.0,42,3.0,0.0,4.0,4.0,2.5,4,4,926.157279701057,1392.0,46299.0,1,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03440679064342642,18519.6,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +3974,2,23.0,0.0,7,111,1200.0,0.0,0.0,0,47,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,5,103979,2,2,0,0,1,,0.0,780.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1934.74771019254,1200.0,27716.331231766504,0,4,3,4,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.04329577352664355,18477.554154511003,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +3975,0,55.0,0.0,1,112,400.0,,,81,62,0.0,0.0,,530.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,1,103980,1,3,0,0,2,,0.0,,43,2.0,2.0,4.0,3.0,2.0,3,2,150.3663733400958,400.0,29190.81266457902,4,1,5,0,55.0,8,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01815639756556409,14595.40633228951,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +3976,1,47.0,350.0,1,112,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1388.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,103981,2,2,1,0,2,,161.0,520.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2221.5429906965,0.0,13179.451178785803,0,7,2,3,45.0,6,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.10531546277391148,13179.451178785803,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +3977,2,30.0,0.0,9,300,986.0,0.0,0.0,46,52,0.0,370.8116375628627,1681.3277357648524,1266.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,103982,2,1,1,0,1,,164.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,6175.94254526416,986.0,41512.0,1,1,1,2,136.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030497205627288495,23062.222222222223,6,3,6,6_1,6_0,6_0_0 +3978,2,78.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,1084.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,103983,2,1,2,0,1,,668.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,588.411600428868,0.0,61303.6356149017,5,5,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017682474931984313,40869.09040993447,9,5,9,9_1,9_4,9_0_1 +3980,2,44.0,0.0,9,111,2200.0,0.0,0.0,46,46,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,75.0,1,2011.0,6,103985,2,1,1,0,1,,239.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,282.015881386717,2200.0,4940.996799394919,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.44525428558654695,2470.4983996974597,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +3981,2,36.0,0.0,2,111,277.0,114.0,0.0,34,34,0.0,0.0,472.34055051406096,391.0,0.0,216.42946146513594,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,103986,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,585.200033574663,277.0,58454.0,1,1,1,2,91.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0066890204263181305,27835.238095238095,7,4,7,7_0,7_4,7_0_1 +3982,2,68.0,0.0,2,300,102.0,,,72,77,0.0,0.0,,192.0,124.70303028568689,,70,0,0,0,0,0,0,0,0,0,,1,,2,103987,1,2,0,0,2,,191.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,71.51826536523362,102.0,15002.636752756123,5,5,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012797750366429942,10001.757835170749,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +3983,2,40.0,0.0,9,111,0.0,0.0,1177.0,42,34,0.0,0.0,741.8846278181535,1177.0,0.0,1408.5537376836294,20,0,0,0,0,0,0,0,0,3,70.0,1,2012.0,6,103988,2,1,1,0,1,,645.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,288.369924105865,0.0,38547.822920208084,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030533501267667608,16061.592883420035,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +3984,2,56.0,0.0,1,120,1000.0,0.0,0.0,21,65,1582.0242765549024,13.243272770102239,1705.2005433720612,2580.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,103989,2,1,2,0,1,,350.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,826.38406791595,1000.0,41174.83380000952,1,1,0,1,150.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06265963361337001,20587.41690000476,5,3,5,5_1,5_0,5_1_0 +3985,2,52.0,0.0,8,112,0.0,0.0,0.0,33,34,0.0,0.0,0.0,978.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,103990,2,1,2,0,1,,277.0,780.0,43,2.0,5.0,5.0,2.0,1.5,2,2,2445.59234260318,0.0,77797.72535962677,1,1,2,3,100.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012571061627818934,51865.15023975118,10,5,10,10_1,10_1,10_0_0 +3986,2,61.0,0.0,5,111,350.0,700.0,0.0,78,75,0.0,0.0,596.8201901802214,1050.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,1,,3,103991,2,1,1,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,240.284445704602,350.0,53803.97644064631,5,5,0,1,100.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019515286219751887,35869.31762709754,9,5,9,9_1,9_2,9_0_0 +3987,2,54.0,0.0,1,300,945.0,0.0,0.0,42,35,0.0,456.89291056852727,1611.4145134865978,1371.0,112.2327272571182,0.0,20,2,2,2,2,2,2,2,1,2,20.0,2,,1,103992,2,3,0,0,1,,217.0,333.0,43,2.0,0.0,4.0,4.0,2.5,4,4,2097.6512970246,945.0,64894.93986429696,1,1,2,3,110.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02112645458747514,25957.975945718783,7,4,7,7_0,7_0,7_1_0 +3988,1,66.0,76.0,7,111,480.0,0.0,0.0,0,74,0.0,0.0,818.4962608185893,480.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,103993,2,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1974.58606508598,480.0,16217.84961704355,0,5,2,3,20.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02959701879930874,16217.84961704355,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +3989,1,37.0,472.0,5,111,360.0,0.0,0.0,0,85,0.0,0.0,613.872195613942,360.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,3,103994,1,1,0,1,1,780.0,0.0,427.0,31,0.0,0.0,3.0,6.0,2.5,1,1,131.384187804487,360.0,17368.471624915204,0,6,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.020727212375070313,6947.388649966082,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +3990,2,67.0,0.0,6,111,900.0,1600.0,0.0,0,72,0.0,0.0,1534.680489034855,2500.0,0.0,3037.6064767036623,44,0,0,0,0,0,0,0,0,0,,1,,4,103995,2,2,2,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1496.91680006049,900.0,45859.4209042348,0,5,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05451442584110656,45859.4209042348,10,5,10,10_1,10_3,10_0_0 +3991,2,45.0,0.0,6,211,1452.0,,,77,11,0.0,0.0,,1804.0,487.7274073395754,,50,0,0,0,0,0,0,0,0,0,,1,,4,103996,2,3,0,0,2,,100.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,116.55083361517484,1452.0,42279.00563321953,5,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042668931612302584,21139.502816609765,5,3,5,5_1,5_2,5_0_0 +3992,2,20.0,0.0,6,111,770.0,1080.0,0.0,0,53,0.0,0.0,1313.0044183964872,1850.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,0,,1,,4,103997,2,2,2,0,1,,417.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,590.303938503157,770.0,22605.353381804267,0,1,0,1,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08183902143680359,15070.23558786951,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +3993,2,59.0,0.0,2,111,610.0,0.0,0.0,43,74,2109.365702073203,132.4327277010224,1040.1723314569574,2710.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,103998,2,1,1,0,1,,654.0,,42,1.0,0.0,8.0,4.0,2.5,4,4,843.012650354329,610.0,87106.65793845872,1,7,0,1,127.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031111284305209232,34842.66317538349,9,5,9,9_1,9_4,9_0_1 +3994,2,67.0,0.0,7,120,1510.0,0.0,0.0,75,75,0.0,0.0,2574.8528204918125,1510.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,103999,2,1,2,0,1,,500.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,2048.49279613041,1510.0,56268.9631072751,5,5,1,2,190.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026835397644012562,37512.64207151673,9,5,9,9_1,9_0,9_0_0 +3995,2,39.0,0.0,1,111,0.0,0.0,1850.0,55,53,0.0,0.0,1166.0888372672762,1850.0,0.0,2213.9544729946597,44,1,2,2,1,2,2,2,2,2,20.0,2,,1,104000,2,1,0,0,1,,0.0,720.0,43,2.0,2.0,6.0,3.0,1.8,2,2,3044.04479182702,0.0,45471.01566055211,1,1,2,3,120.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04068525791925399,25261.675366973395,7,4,7,7_0,7_3,7_1_0 +3996,2,50.0,0.0,1,120,574.0,0.0,0.0,63,54,0.0,26.486545540204478,978.7851118955631,714.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,104001,2,1,4,0,2,,567.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,981.879674263784,574.0,37910.897342659315,1,1,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01883363491891209,15164.358937063726,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +3997,2,61.0,0.0,5,111,700.0,1000.0,0.0,43,74,0.0,0.0,1193.6403803604428,1700.0,0.0,1898.504047939789,71,2,2,2,2,1,2,2,2,0,,1,,3,104002,1,2,4,0,1,,500.0,669.0,42,1.0,3.0,6.0,2.0,1.5,2,2,765.815621510727,700.0,56347.50065041442,1,5,2,3,130.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.030169927332659732,37565.00043360961,9,5,9,9_1,9_2,9_0_0 +3998,2,30.0,0.0,7,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,816.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,104003,2,1,0,0,1,,378.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1219.25481964233,0.0,42582.47962190761,0,1,3,4,26.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019162810790853725,42582.47962190761,9,5,9,9_0,9_2,9_0_0 +3999,2,74.0,0.0,1,111,620.0,1600.0,0.0,0,74,0.0,0.0,1057.224336890678,2220.0,0.0,3037.6064767036623,41,0,0,0,0,0,0,0,0,0,,1,,1,104004,2,2,2,0,1,,300.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,884.909238016416,620.0,38821.904230014065,0,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05718421195536486,38821.904230014065,9,5,9,9_1,9_2,9_1_0 +4000,2,57.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,756.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,2,104005,2,1,1,0,1,,170.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1172.41710548103,0.0,30900.828984438143,0,1,1,2,110.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.024465363061318725,30900.828984438143,8,4,8,8_1,8_3,8_0_1 +4001,2,63.0,0.0,5,111,534.0,1178.0,0.0,77,77,0.0,132.4327277010224,910.5770901606807,1812.0,0.0,2236.4377684730716,44,0,0,0,0,0,0,0,0,0,,1,,3,104006,2,1,1,0,1,,624.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,341.180052635418,534.0,52510.5574240245,5,5,0,1,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03450734650116242,35007.038282682995,9,5,9,9_1,9_3,9_0_0 +4002,2,40.0,0.0,2,111,400.0,300.0,0.0,85,43,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,104007,2,2,0,1,1,1161.0,0.0,667.0,42,1.0,2.0,3.0,3.0,1.8,2,2,144.440604562438,400.0,36584.370783957354,6,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019133853746828897,20324.650435531865,5,3,5,5_0,5_4,5_0_1 +4003,2,54.0,0.0,1,111,437.0,430.0,0.0,0,62,0.0,0.0,745.1726374535907,867.0,0.0,816.3567406141093,50,0,0,0,0,0,0,0,0,2,7.0,2,,1,104008,2,1,0,0,1,,0.0,321.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2005.94948353317,437.0,25485.496975748785,0,1,2,3,40.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03401934836997727,25485.496975748785,7,4,7,7_0,7_3,7_1_0 +4004,2,45.0,0.0,9,111,1840.0,,,0,68,0.0,0.0,,1888.0,66.50828281903301,,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,104009,1,3,0,0,2,,1100.0,,22,1.0,8.0,2.0,2.0,1.5,2,2,49.911063484619866,1840.0,17173.50922900126,0,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10993676218554652,11449.006152667507,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4005,2,79.0,0.0,2,111,660.0,,,0,77,0.0,0.0,,786.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,104010,1,2,0,0,2,,380.0,,21,1.0,5.0,6.0,2.0,1.5,2,2,105.1415077297635,660.0,21324.426955305495,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036859138191492835,14216.28463687033,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +4006,2,51.0,0.0,7,111,850.0,,,68,68,0.0,0.0,,1102.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,2,5.0,2,,5,104011,1,1,0,0,2,,810.0,465.0,43,2.0,4.0,4.0,3.0,1.8,2,2,144.44787278375668,850.0,34981.051219787114,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03150276968739725,19433.917344326175,5,3,5,5_0,5_2,5_0_0 +4007,2,47.0,0.0,5,111,264.0,0.0,0.0,0,31,0.0,0.0,450.1729434502241,264.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,35.0,2,,3,104012,1,1,0,3,2,167.0,0.0,540.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1289.48518986435,264.0,30888.010336558935,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008547005686783606,30888.010336558935,8,4,8,8_0,8_4,8_0_0 +4008,2,47.0,0.0,7,112,840.0,1617.0,0.0,0,56,0.0,0.0,1432.3684564325313,2512.0,0.0,3069.881045518639,44,0,0,0,0,0,0,0,0,2,20.0,1,,5,104013,2,1,1,0,1,,600.0,,32,3.0,0.0,5.0,3.0,2.0,3,3,1620.53061030626,840.0,15152.218197265876,0,1,1,2,220.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1657843074391098,7576.109098632938,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4009,2,62.0,0.0,5,211,1450.0,0.0,0.0,52,72,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,1,,3,104014,1,1,2,0,1,,210.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1711.27681869406,1450.0,17494.5360519375,4,5,0,1,88.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.08288302105841865,11663.024034625,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +4010,2,85.0,0.0,1,112,1000.0,0.0,0.0,0,78,0.0,662.163638505112,1705.2005433720612,1535.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104015,2,1,2,0,1,,100.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1783.04997152414,1000.0,24759.306323258028,0,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06199689037968219,24759.306323258028,7,4,7,7_1,7_0,7_1_0 +4011,2,55.0,0.0,7,111,540.0,780.0,0.0,52,62,0.0,66.2163638505112,920.8082934209131,1370.0,0.0,1480.8331573930354,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,104016,2,1,2,0,1,,600.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,1372.62361377392,540.0,20476.569017645696,1,1,0,1,115.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0669057398639099,10238.284508822848,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4012,1,49.0,200.0,2,111,1172.0,,,0,56,0.0,0.0,,1304.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,104017,1,3,0,0,2,,0.0,800.0,32,2.0,4.0,4.0,3.0,2.0,3,2,145.9904171120024,1172.0,17567.0,0,4,2,3,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07423009051061649,8783.5,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +4013,2,48.0,0.0,2,112,1000.0,2000.0,0.0,52,38,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,104018,2,1,2,0,1,,741.0,,43,2.0,0.0,6.0,5.0,3.0,5,4,690.649115048854,1000.0,98110.34395393489,1,1,1,2,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030577815540108293,32703.447984644965,8,4,8,8_1,8_1,8_0_1 +4014,2,64.0,0.0,2,111,240.0,66.0,0.0,0,42,0.0,0.0,409.2481304092947,306.0,0.0,125.30126716402607,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,104019,2,2,0,1,1,1116.0,0.0,970.0,22,2.0,1.0,4.0,2.0,1.5,2,2,1263.68786486366,240.0,59039.13335896302,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005183002909942691,39359.42223930868,9,5,9,9_0,9_4,9_0_1 +4015,2,61.0,0.0,5,111,500.0,0.0,0.0,77,78,0.0,0.0,852.6002716860306,790.0,0.0,0.0,71,2,1,2,1,2,2,2,2,0,,2,,3,104020,1,1,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,181.703846113599,500.0,32556.309557058994,5,5,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02426564960059206,21704.206371372664,6,3,6,6_0,6_4,6_0_0 +4016,2,26.0,0.0,1,112,400.0,0.0,0.0,0,69,0.0,0.0,682.0802173488245,900.0,692.7946126982605,0.0,42,0,0,0,0,0,0,0,0,2,5.0,2,,1,104021,2,1,0,0,1,,100.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1362.39204451651,400.0,19164.223761219026,0,1,2,3,35.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04696250738948539,19164.223761219026,5,3,5,5_0,5_0,5_1_0 +4017,1,25.0,271.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1223.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,104022,1,2,0,0,1,,64.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1669.64297273349,0.0,11713.176290181464,0,4,2,3,63.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10441232759598916,11713.176290181464,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4018,2,35.0,0.0,2,111,300.0,,,0,52,0.0,0.0,,369.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,3,20.0,1,,2,104023,1,3,0,0,2,,360.0,690.0,12,1.0,0.0,3.0,1.0,1.0,1,1,123.62762057921506,300.0,34963.65008225681,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010553818011903122,34963.65008225681,9,5,9,9_1,9_2,9_0_1 +4019,1,52.0,122.0,6,112,0.0,0.0,0.0,68,64,0.0,0.0,0.0,1072.0,0.0,0.0,71,2,1,2,1,1,2,2,2,2,30.0,2,,4,104024,2,1,0,1,1,,0.0,389.0,43,3.0,1.0,2.0,3.0,2.0,3,3,464.021408169948,0.0,42327.88567052639,1,1,2,3,60.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02532609373272928,21163.942835263195,5,3,5,5_0,5_2,5_0_0 +4020,2,42.0,0.0,9,111,0.0,,,42,38,0.0,0.0,,585.0,0.0,,41,0,0,0,0,0,0,0,0,2,4.0,1,2006.0,6,104025,2,1,0,0,1,,512.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,122.64013516234219,0.0,95621.50209882186,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006117870846615865,36777.50080723918,9,5,9,9_1,9_2,9_0_0 +4021,2,60.0,0.0,1,111,621.0,1665.0,0.0,75,37,0.0,0.0,1058.92953743405,2286.0,0.0,3161.0092398197485,10,0,0,0,0,0,0,0,0,3,60.0,1,,1,104026,2,2,1,0,1,,500.0,,42,1.0,2.0,7.0,3.0,2.0,3,3,364.271106693759,621.0,133068.72007758034,5,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017179093619200968,66534.36003879017,10,5,10,10_1,10_4,10_1_0 +4022,2,49.0,0.0,9,111,250.0,,,31,42,0.0,0.0,,290.0,55.423569015860835,,10,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,104027,2,1,0,0,2,,500.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,134.1431286359909,250.0,51005.579476655585,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005685652490875596,22176.338902893734,6,3,6,6_1,6_2,6_0_0 +4023,1,50.0,377.0,9,112,430.0,640.0,0.0,0,56,0.0,0.0,733.2362336499863,1070.0,0.0,1215.0425906814648,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,104028,2,1,0,0,1,,0.0,535.0,32,2.0,1.0,4.0,3.0,1.8,2,2,1545.52864419572,430.0,19986.57934827386,0,1,2,3,83.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05353592434977677,11103.655193485478,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +4024,2,30.0,0.0,2,111,417.0,140.0,0.0,33,37,0.0,0.0,711.0686265861495,557.0,0.0,265.7905667115705,10,0,0,0,0,0,0,0,0,2,25.0,2,,2,104029,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,244.756718805873,417.0,51960.52402977577,1,1,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010719676338922474,34640.34935318385,9,5,9,9_0,9_4,9_0_1 +4025,1,40.0,105.0,8,112,876.0,0.0,0.0,47,56,1054.6828510366015,0.0,1493.7556759939255,1996.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,104030,2,1,1,0,1,,600.0,,43,2.0,1.0,7.0,3.0,1.8,3,2,1133.50461116956,876.0,29445.46951920921,4,1,1,2,150.0,9,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06778631934185592,16358.594177338451,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +4026,2,51.0,0.0,5,400,1620.0,,,12,11,0.0,0.0,,1770.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,104031,2,2,0,0,2,,1080.0,,43,6.0,0.0,8.0,12.0,5.699999999999999,8,8,8.630211236835555,1620.0,43384.04726643321,1,1,0,1,160.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04079840659240364,7611.236362532143,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +4027,2,66.0,0.0,1,400,800.0,0.0,0.0,11,71,0.0,0.0,1364.160434697649,940.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104032,1,2,3,0,2,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,1182.68427560274,800.0,12063.364688016798,1,5,0,1,60.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07792187538968738,8042.243125344532,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4028,2,46.0,0.0,6,111,900.0,,,21,22,0.0,0.0,,900.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,4,104033,2,2,0,0,2,,120.0,1200.0,43,2.0,2.0,4.0,2.0,1.5,2,2,52.916684796003125,900.0,48792.60719346703,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018445417282815405,32528.40479564469,8,4,8,8_1,8_2,8_0_0 +4029,2,60.0,0.0,1,112,3500.0,0.0,0.0,0,46,0.0,0.0,5968.201901802214,3530.0,41.567676761895626,0.0,60,2,2,2,2,1,2,2,2,2,15.0,1,,1,104034,2,3,3,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,3291.22131337246,3500.0,18551.6279558873,0,1,0,1,100.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.1902797969209902,18551.6279558873,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +4030,2,41.0,0.0,9,111,980.0,0.0,0.0,0,53,0.0,0.0,1671.09653250462,980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2004.0,6,104035,2,1,0,0,1,,312.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,738.954795440632,980.0,26204.900931911998,0,1,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03739758461771433,26204.900931911998,7,4,7,7_0,7_3,7_0_0 +4031,2,70.0,0.0,2,212,377.0,0.0,0.0,78,78,1371.087706347582,1589.1927324122687,642.8606048512671,2975.0,135.78774408885906,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104036,2,2,2,0,2,,314.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,708.072596983889,377.0,28339.592928041144,5,5,0,1,81.0,2,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10497680780221548,18893.06195202743,5,3,5,5_1,5_0,5_0_1 +4032,1,42.0,279.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104037,2,2,0,1,1,500.0,256.0,407.0,42,1.0,1.0,6.0,7.0,3.3999999999999995,4,4,270.686847130352,0.0,29023.356414777503,6,1,2,3,105.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.045825161672990326,8536.281298463973,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4033,2,43.0,0.0,9,120,2800.0,0.0,0.0,46,22,0.0,397.2981831030672,4774.561521441771,3100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,104038,2,1,1,0,1,,490.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1767.98652057294,2800.0,99746.2393133752,1,1,1,2,169.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031078865943613712,47498.20919684533,10,5,10,10_1,10_0,10_0_0 +4034,2,78.0,0.0,2,111,320.0,0.0,0.0,86,75,0.0,0.0,545.6641738790596,320.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,104039,2,1,0,1,1,670.0,0.0,385.0,41,0.0,2.0,4.0,2.0,1.5,2,2,652.828937666806,320.0,43992.50935720991,5,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007273965606318735,29328.339571473272,8,4,8,8_0,8_4,8_0_1 +4035,2,80.0,0.0,2,111,1000.0,,,86,78,0.0,0.0,,2200.0,1662.707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,104040,2,2,0,0,2,,450.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,85.42435011149784,1000.0,23184.0,6,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09489302967563837,15456.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +4036,2,57.0,0.0,5,300,622.0,0.0,0.0,78,62,0.0,331.081819252556,1060.634737977422,972.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104041,2,1,2,0,1,,257.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,268.890275240733,622.0,24557.899921809945,5,4,0,1,84.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039579931634820445,16371.93328120663,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4037,2,82.0,0.0,5,111,1000.0,0.0,0.0,74,74,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,104042,1,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,901.990033802749,1000.0,92758.58309053163,5,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010780673514859623,61839.05539368775,10,5,10,10_0,10_4,10_0_0 +4038,1,71.0,194.0,2,111,240.0,160.0,0.0,0,77,0.0,0.0,409.2481304092947,460.0,83.13535352379125,303.7606476703662,70,2,1,2,2,1,2,2,2,0,,2,,2,104043,2,2,0,1,1,657.0,0.0,332.0,11,0.0,3.0,4.0,1.0,1.0,1,1,340.620145770637,240.0,17201.43461948058,0,5,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.026741955550559207,17201.43461948058,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +4040,1,30.0,162.0,8,111,174.0,,,0,56,0.0,0.0,,174.0,0.0,,70,0,0,0,0,0,0,0,0,3,25.0,1,2000.0,6,104045,2,2,0,0,2,,100.0,338.0,12,1.0,0.0,1.0,1.0,1.0,1,1,151.1977877185416,174.0,22906.0,0,1,2,3,24.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0075962629878634415,22906.0,6,3,6,6_1,6_2,6_0_0 +4041,1,58.0,253.0,6,211,330.0,,,0,52,0.0,0.0,,528.0,274.3466666285112,,71,0,0,0,0,0,0,0,0,0,,1,,4,104046,1,2,0,0,1,,350.0,297.0,12,1.0,6.0,2.0,1.0,1.0,1,1,104.92041765374766,330.0,5241.0,0,4,2,3,46.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10074413279908415,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4042,2,44.0,0.0,9,111,1440.0,0.0,0.0,21,46,0.0,0.0,2455.488782455768,1440.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,104047,2,1,0,0,1,,0.0,707.0,43,2.0,0.0,3.0,4.0,2.3,3,3,2091.00695997127,1440.0,30944.349705193235,4,1,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.046535151448289507,13454.065089214451,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +4043,2,50.0,0.0,2,400,607.0,0.0,0.0,56,64,1233.9789357128238,0.0,1035.056729826841,1967.0,263.261952825339,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,104048,1,2,1,0,1,,153.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,756.714070121598,607.0,57097.43815491473,1,1,0,1,97.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03444988187846897,22838.97526196589,6,3,6,6_1,6_0,6_0_1 +4044,2,49.0,0.0,1,211,150.0,0.0,0.0,0,62,0.0,0.0,255.78008150580916,200.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,104049,2,2,3,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1595.93098728273,150.0,29710.357706004066,0,1,0,1,60.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006731659106197253,29710.357706004066,8,4,8,8_1,8_1,8_1_0 +4045,2,79.0,0.0,2,111,270.0,100.0,0.0,0,77,0.0,0.0,460.40414671045653,370.0,0.0,189.8504047939789,60,2,1,2,2,1,2,2,2,0,,2,,2,104050,1,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,905.81799986508,270.0,18722.08589859323,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.019762755176110033,18722.08589859323,5,3,5,5_0,5_4,5_0_1 +4046,2,77.0,0.0,2,111,385.0,320.0,0.0,86,75,0.0,0.0,656.5022091982436,705.0,0.0,607.5212953407324,70,0,0,0,0,0,0,0,0,0,,2,,2,104051,2,1,0,1,1,320.0,350.0,431.0,41,0.0,7.0,5.0,2.0,1.5,2,2,271.898206016784,385.0,26514.91636682912,5,5,2,3,85.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026588807230105926,17676.610911219414,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +4047,2,53.0,0.0,9,111,850.0,0.0,0.0,22,56,0.0,1721.6254601132912,1449.420461866252,2270.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,104052,2,1,1,0,1,,800.0,,43,3.0,3.0,5.0,4.0,2.5,4,3,666.128676495993,850.0,20671.376142223933,1,1,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10981368557090083,8268.550456889574,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +4048,2,60.0,0.0,9,111,238.0,,,0,69,0.0,0.0,,330.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,104053,2,1,0,0,2,,120.0,,32,1.0,2.0,4.0,2.0,1.5,2,2,102.84498231934847,238.0,6838.129520010216,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048258810985420904,4558.753013340144,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4049,1,39.0,150.0,9,112,610.0,0.0,0.0,85,62,0.0,331.081819252556,1040.1723314569574,960.0,138.5589225396521,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,104054,2,1,1,0,1,,210.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,308.816576661763,610.0,29990.507763144535,6,1,1,2,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032010128257306404,12496.044901310222,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +4050,2,84.0,0.0,1,120,1800.0,0.0,0.0,77,78,0.0,0.0,3069.36097806971,1860.0,83.13535352379125,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,104055,1,1,2,0,1,,450.0,627.0,41,0.0,0.0,6.0,2.0,1.5,2,2,1272.05185899344,1800.0,33836.18134905582,5,5,2,3,92.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05497074214173705,22557.45423270388,6,3,6,6_1,6_0,6_1_0 +4051,2,65.0,0.0,1,111,675.0,2500.0,0.0,31,31,0.0,0.0,1151.0103667761414,3175.0,0.0,4746.260119849472,10,0,0,0,0,0,0,0,0,1,10.0,1,,1,104056,2,1,1,0,1,,301.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,2169.05325103448,675.0,114471.6883629385,1,1,0,1,70.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027736115762820722,76314.45890862566,10,5,10,10_1,10_2,10_1_0 +4053,1,23.0,340.0,7,111,450.0,,,0,56,0.0,0.0,,580.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,2,,5,104058,2,1,0,0,1,,450.0,550.0,32,1.0,0.0,2.0,2.0,1.3,1,1,138.22691350816336,450.0,14614.901878914405,0,4,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03968552131279053,11242.232214549542,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4054,2,58.0,0.0,7,111,2000.0,0.0,0.0,34,33,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,104059,2,1,2,0,1,,330.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,939.372071948076,2000.0,66974.56785498906,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02986208144456159,44649.71190332604,10,5,10,10_1,10_4,10_0_0 +4055,2,70.0,0.0,2,112,600.0,1350.0,0.0,0,56,0.0,0.0,1023.1203260232367,1950.0,0.0,2562.980464718715,70,0,0,0,0,0,0,0,0,1,3.0,1,,2,104060,2,1,1,0,1,,250.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1163.45505729756,600.0,24850.11933187495,0,5,0,1,100.0,10,1,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0784704481277383,24850.11933187495,7,4,7,7_1,7_1,7_0_1 +4056,1,42.0,120.0,2,111,0.0,0.0,840.0,85,63,0.0,0.0,529.4673639483848,840.0,0.0,1005.255003954332,41,2,1,2,2,1,2,2,2,0,,2,,2,104061,2,3,0,1,1,912.0,0.0,360.0,42,1.0,0.0,3.0,5.0,2.4,2,2,168.265107760119,0.0,31217.254800223564,6,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.026908195655755876,13007.189500093153,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +4058,2,45.0,0.0,7,111,2400.0,0.0,0.0,43,43,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,45.0,1,,5,104063,2,1,1,0,1,,1052.0,,43,2.0,0.0,6.0,5.0,3.0,5,4,444.676714770685,2400.0,97334.50325868076,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024657237871976875,32444.834419560255,8,4,8,8_1,8_4,8_0_0 +4059,2,54.0,0.0,6,120,700.0,0.0,0.0,86,54,0.0,529.7309108040896,1193.6403803604428,1160.0,83.13535352379125,0.0,50,2,2,2,2,1,2,2,2,2,10.0,1,,4,104064,2,2,2,0,1,,400.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,1218.47029698815,700.0,38617.457353525155,5,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.030038228290918553,15446.982941410062,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4061,2,57.0,0.0,7,111,437.0,875.0,0.0,52,47,0.0,39.72981831030672,745.1726374535907,1342.0,0.0,1661.1910419473154,42,0,0,0,0,0,0,0,0,2,16.0,1,,5,104066,2,1,3,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2046.03256870803,437.0,53296.76194420429,1,1,0,1,130.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02517976610670875,35531.174629469526,9,5,9,9_1,9_3,9_0_0 +4062,2,53.0,0.0,2,111,560.0,0.0,0.0,56,56,0.0,0.0,954.9123042883542,560.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,30.0,2,,2,104067,1,1,0,1,1,,0.0,400.0,43,2.0,2.0,3.0,3.0,2.0,3,3,289.427537337591,560.0,43976.54605436256,1,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012734060544630856,21988.27302718128,6,3,6,6_0,6_4,6_0_1 +4063,1,24.0,287.0,2,111,1036.0,0.0,0.0,84,38,0.0,0.0,1766.5877629334555,1071.0,48.49562288887823,0.0,10,2,2,1,2,1,1,2,2,2,60.0,2,,2,104068,2,2,0,0,1,,202.0,579.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1741.96717926033,1036.0,30654.532743814612,3,1,2,3,58.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.034937736906660355,20436.355162543074,5,3,5,5_0,5_3,5_0_1 +4064,2,81.0,0.0,1,112,300.0,0.0,0.0,77,78,1898.4291318658827,0.0,511.56016301161833,2140.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104069,2,1,2,0,1,,100.0,,41,0.0,7.0,6.0,2.0,1.5,2,2,1723.14159331787,300.0,30379.89335950182,5,5,0,1,110.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07044132692225791,20253.26223966788,5,3,5,5_1,5_0,5_1_0 +4065,2,46.0,0.0,6,400,750.0,0.0,0.0,0,54,1582.0242765549024,278.10872817214704,1278.9004075290459,2490.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,104070,2,1,2,0,1,,700.0,,32,1.0,1.0,7.0,2.0,1.5,2,2,2166.52282536277,750.0,29446.557200524934,0,1,1,2,150.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08455997022142919,19631.03813368329,5,3,5,5_1,5_1,5_0_0 +4066,2,57.0,0.0,2,111,245.0,0.0,0.0,0,54,0.0,0.0,417.774133126155,245.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,2,104071,1,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,359.989787562309,245.0,7160.344969892183,0,4,0,1,55.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.034216228551861114,7160.344969892183,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +4067,2,32.0,0.0,2,111,480.0,1116.0,0.0,56,53,0.0,0.0,818.4962608185893,1596.0,0.0,2118.7305175008046,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,104072,1,3,0,0,1,,0.0,650.0,43,2.0,0.0,5.0,4.0,2.1,2,2,2237.17792895847,480.0,22898.353204161085,4,1,2,3,102.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06969933539631029,10903.977716267183,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +4068,2,31.0,0.0,9,111,1010.0,0.0,0.0,52,38,0.0,0.0,1722.2525488057818,1010.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,2006.0,6,104073,2,1,1,0,1,,280.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,227.93531084173,1010.0,49940.327495549165,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02022413649750323,33293.55166369944,8,4,8,8_1,8_3,8_0_0 +4069,2,31.0,0.0,9,112,1700.0,0.0,0.0,43,43,0.0,0.0,2898.840923732504,1820.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,104074,2,1,1,0,2,,306.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,755.118693906883,1700.0,54812.60950483223,1,1,1,2,109.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03320403856779616,30451.449724906794,8,4,8,8_1,8_1,8_0_0 +4070,2,77.0,0.0,2,211,586.0,1466.0,0.0,75,33,0.0,0.0,999.2475184160279,2052.0,0.0,2783.206934279731,20,0,0,0,0,0,0,0,0,0,,1,,2,104075,2,1,1,0,1,,415.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1732.94522543838,586.0,94148.79836521715,5,5,0,1,150.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021795286138862734,62765.86557681143,10,5,10,10_1,10_1,10_0_1 +4071,2,41.0,0.0,9,221,500.0,0.0,0.0,0,21,0.0,0.0,852.6002716860306,500.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,8,2008.0,6,104076,2,1,0,0,1,,0.0,450.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1137.34527183425,500.0,34610.09340383789,0,1,2,3,150.0,1,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014446652719653029,34610.09340383789,9,5,9,9_0,9_1,9_0_0 +4072,1,35.0,100.0,5,111,450.0,1400.0,0.0,85,63,0.0,0.0,767.3402445174275,1850.0,0.0,2657.9056671157045,41,0,0,0,0,0,0,0,0,2,25.0,1,,3,104077,2,1,1,0,1,,350.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,261.893603891805,450.0,37832.353518704236,6,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04889994483386723,15763.480632793433,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +4073,1,31.0,30.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1617.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,20.0,1,,2,104078,1,3,3,0,1,,283.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,195.903617254172,0.0,26729.917496867074,6,1,1,2,100.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.060494013877503486,12728.532141365273,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +4074,0,20.0,0.0,7,211,600.0,,,0,56,0.0,0.0,,656.0,77.59299662220518,,50,0,0,0,0,0,0,0,0,1,25.0,1,,5,104079,2,1,0,0,1,,300.0,,32,1.0,0.0,1.0,3.0,1.6,1,1,126.09536253662671,600.0,40399.14352631413,0,1,5,0,27.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0162379680047601,25249.46470394633,7,4,7,7_1,7_2,7_0_0 +4075,2,46.0,0.0,2,300,180.0,0.0,0.0,0,67,1265.6194212439218,0.0,306.936097806971,1410.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,104080,2,2,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,933.957341833938,180.0,16684.514921842085,0,1,1,2,115.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08450949917364013,16684.514921842085,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +4076,2,64.0,0.0,5,211,252.0,,,0,78,0.0,0.0,,384.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,104081,2,1,0,0,1,,225.0,,11,0.0,6.0,6.0,1.0,1.0,1,1,90.93633288715688,252.0,31099.717997499592,0,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012347378842177074,31099.717997499592,8,4,8,8_1,8_2,8_0_0 +4077,2,57.0,0.0,1,120,2310.0,0.0,0.0,46,46,210.9365702073203,0.0,3939.0132551894612,2510.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,104082,2,2,2,0,1,,459.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,858.286522385753,2310.0,10709.679446592469,1,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23436742551604703,7139.786297728312,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4078,2,64.0,0.0,5,112,480.0,0.0,0.0,77,77,0.0,92.70290939071567,818.4962608185893,1700.0,1593.427609205999,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104083,2,1,2,0,2,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,962.805462695382,480.0,40069.33842543671,5,5,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04242645540962589,26712.892283624475,7,4,7,7_1,7_0,7_0_0 +4079,1,34.0,58.0,9,300,1100.0,0.0,0.0,85,35,0.0,297.97363732730037,1875.7205977092674,1430.0,145.4868686666347,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,104084,2,1,1,0,1,,100.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,867.554895573581,1100.0,29052.967142685415,7,1,1,2,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.049220445986702846,16140.537301491897,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +4080,2,36.0,0.0,1,120,1200.0,0.0,0.0,0,42,1054.6828510366015,0.0,2046.2406520464733,2275.0,103.91919190473907,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,104085,2,1,1,0,1,,300.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,1184.03851430622,1200.0,23776.094369248138,0,1,1,2,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0956843443110855,14860.058980780086,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4081,1,58.0,227.0,2,111,710.0,0.0,0.0,85,54,0.0,0.0,1210.6923857941633,820.0,152.4148147936173,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104086,1,2,0,1,1,610.0,194.0,214.0,42,2.0,4.0,4.0,3.0,2.0,3,3,117.833365127593,710.0,9580.919774290438,6,4,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08558677238905585,4790.459887145219,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4082,0,61.0,0.0,2,111,245.0,1600.0,0.0,0,77,0.0,463.51454695357836,417.774133126155,2195.0,0.0,3037.6064767036623,71,0,0,0,0,0,0,0,0,0,,1,,2,104087,2,1,2,0,1,,420.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,348.365434045248,245.0,13506.687198312557,0,6,5,0,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1625120925488102,13506.687198312557,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +4083,1,46.0,253.0,6,120,165.0,,,0,85,0.0,0.0,,249.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,2,,4,104088,2,1,0,0,1,,240.0,315.0,11,0.0,1.0,2.0,1.0,1.0,1,1,118.2694555877726,165.0,5241.0,0,7,2,3,35.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04751001717229536,5241.0,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +4084,0,37.0,0.0,5,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1050.0,0.0,0.0,20,2,2,2,1,1,2,2,2,1,2.0,2,,3,104089,2,3,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1145.28991020866,0.0,37474.62199220353,0,1,5,0,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028018961744789555,37474.62199220353,9,5,9,9_0,9_4,9_0_0 +4085,2,64.0,0.0,9,221,1090.0,0.0,0.0,0,75,0.0,238.3789098618403,1858.6685922755466,1270.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2009.0,6,104090,2,1,1,0,1,,284.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2004.67696182174,1090.0,32108.639004168035,0,5,1,2,140.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039553218055587494,32108.639004168035,8,4,8,8_1,8_1,8_0_0 +4086,0,62.0,0.0,6,120,567.0,0.0,0.0,0,78,0.0,0.0,966.8487080919587,607.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104091,2,2,2,0,1,,152.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,331.684217980395,567.0,20394.823136668994,0,5,0,1,70.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029762454713747468,20394.823136668994,5,3,5,5_1,5_0,5_0_0 +4087,2,55.0,0.0,5,111,0.0,0.0,740.0,0,78,0.0,0.0,466.4355349069104,740.0,0.0,885.5817891978638,70,2,2,2,1,1,2,2,2,0,,2,,3,104092,1,2,0,1,1,557.0,0.0,279.0,11,0.0,4.0,2.0,1.0,1.0,1,1,467.952363453665,0.0,12363.429992749747,0,7,2,3,49.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.05985394024424907,12363.429992749747,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +4088,1,27.0,407.0,2,111,300.0,840.0,0.0,0,55,0.0,0.0,511.56016301161833,1140.0,0.0,1594.7434002694229,50,2,2,2,2,2,2,1,2,0,,2,,2,104093,2,2,0,1,1,840.0,0.0,378.0,32,1.0,0.0,4.0,3.0,1.6,1,1,291.28625864432,300.0,9498.993155390841,0,4,2,3,80.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.12001271938521511,5936.870722119275,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4089,2,64.0,0.0,8,112,1750.0,0.0,0.0,74,74,0.0,331.081819252556,2984.100950901107,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,104094,2,1,2,0,1,,334.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,300.840996884038,1750.0,69017.16879477496,5,5,0,1,120.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028978296776372734,46011.445863183304,10,5,10,10_1,10_0,10_0_0 +4090,2,41.0,0.0,2,112,530.0,400.0,0.0,0,33,0.0,0.0,903.7562879871924,930.0,0.0,759.4016191759156,31,0,0,0,0,0,0,0,0,2,60.0,1,,2,104095,2,1,1,0,1,,516.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,982.86078728436,530.0,32273.387399778374,0,1,1,2,88.0,10,1,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02881631198113361,32273.387399778374,8,4,8,8_1,8_1,8_0_1 +4091,2,35.0,0.0,2,111,300.0,250.0,0.0,0,46,0.0,0.0,511.56016301161833,550.0,0.0,474.62601198494724,30,2,1,2,2,1,2,2,2,2,10.0,2,,2,104096,2,1,0,1,1,,600.0,,22,3.0,0.0,3.0,3.0,2.0,3,3,186.938925792504,300.0,73274.73555619465,0,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007505997747043428,36637.36777809732,9,5,9,9_0,9_4,9_0_1 +4092,1,27.0,30.0,6,120,1455.0,0.0,0.0,52,63,0.0,0.0,2481.066790606349,1731.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,104097,1,3,4,0,1,,420.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,963.051670003169,1455.0,36527.1193405747,1,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04738944738183028,17393.86635265462,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +4093,1,61.0,164.0,5,111,230.0,0.0,0.0,0,78,0.0,0.0,392.1961249755741,355.0,173.19865317456512,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,104098,2,2,0,1,1,57.0,120.0,198.0,11,0.0,0.0,3.0,1.0,1.0,1,1,123.741004354822,230.0,10824.38419256119,0,5,2,3,80.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032796322976411496,10824.38419256119,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4094,2,24.0,0.0,8,112,0.0,0.0,0.0,55,67,0.0,0.0,0.0,2043.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,104099,2,1,1,0,1,,121.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,718.765001042879,0.0,35876.31043468359,1,1,1,2,75.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05694565509236201,23917.54028978906,6,3,6,6_1,6_0,6_0_0 +4095,1,55.0,254.0,2,111,550.0,550.0,0.0,0,78,0.0,0.0,937.8602988546337,1100.0,0.0,1044.177226366884,71,1,2,2,2,1,2,2,2,0,,2,,2,104100,1,3,0,0,1,,300.0,376.0,31,1.0,5.0,5.0,2.0,1.5,2,2,274.116696748036,550.0,13369.880239919048,0,7,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.0822744841584804,8913.253493279366,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4096,2,42.0,0.0,9,120,450.0,,,42,42,0.0,39.72981831030672,,480.0,0.0,,20,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,104101,2,1,0,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,141.9026110912535,450.0,82431.29835465917,1,1,1,2,160.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005823030930979744,39252.999216504366,9,5,9,9_1,9_1,9_0_0 +4097,1,66.0,54.0,2,111,236.0,69.0,0.0,0,78,0.0,0.0,402.42732823580644,305.0,0.0,130.99677930784543,70,0,0,0,0,0,0,0,0,0,,2,,2,104102,2,1,0,1,1,916.0,0.0,258.0,11,0.0,3.0,3.0,1.0,1.0,1,1,310.597735028782,236.0,19241.891644972697,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015850832424767706,19241.891644972697,5,3,5,5_0,5_4,5_0_1 +4098,2,53.0,0.0,9,111,1300.0,0.0,0.0,46,48,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,104103,2,1,1,0,1,,450.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,104.544585983231,1300.0,148022.73136995427,1,1,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00878243488664522,74011.36568497714,10,5,10,10_1,10_3,10_0_0 +4099,2,82.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,444.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,104104,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1090.53375046394,0.0,38009.26807998978,0,5,0,1,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011681361479142678,38009.26807998978,9,5,9,9_0,9_4,9_1_0 +4100,2,44.0,0.0,7,400,880.0,,,63,56,0.0,0.0,,1150.0,374.10909085706066,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,104105,2,1,0,0,1,,400.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,109.19486889455028,880.0,43065.0,1,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026703819807268082,17226.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4101,2,65.0,0.0,1,120,900.0,0.0,0.0,85,72,0.0,0.0,1534.680489034855,1900.0,1385.589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104106,2,2,3,0,1,,200.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,616.877309161363,900.0,51400.08929328442,6,5,0,1,230.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036964916328428264,34266.72619552295,9,5,9,9_1,9_0,9_1_0 +4102,2,50.0,0.0,6,111,559.0,1498.0,0.0,54,37,0.0,137.73003680906328,953.2071037449822,2161.0,0.0,2843.959063813804,42,0,0,0,0,0,0,0,0,3,60.0,1,,4,104107,2,1,2,0,1,,873.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,661.244895203757,559.0,60269.61368704538,1,1,0,1,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0358555475603537,24107.84547481815,6,3,6,6_1,6_4,6_0_0 +4103,2,85.0,0.0,1,111,384.0,0.0,0.0,0,78,1085.268653716663,0.0,654.7970086548714,2442.0,1425.77131293302,0.0,70,2,2,1,2,1,2,2,2,0,,1,,1,104108,2,2,2,0,1,,240.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,458.096992662694,384.0,14231.927918466285,0,5,0,1,150.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.17158602924284372,14231.927918466285,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +4104,2,51.0,0.0,7,111,1080.0,0.0,0.0,85,46,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,40.0,2,,5,104109,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,5.0,2.8,4,2,593.996248138497,1080.0,53125.02473497433,6,1,0,1,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020329402299345996,18973.22311963369,5,3,5,5_0,5_4,5_0_0 +4105,2,38.0,0.0,1,112,0.0,0.0,0.0,22,48,0.0,0.0,0.0,3455.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,80.0,1,,1,104110,2,1,1,0,1,,294.0,590.0,43,2.0,0.0,6.0,2.0,1.5,2,2,1349.04822638443,0.0,38623.21787887209,1,1,2,3,121.0,9,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08945396550943455,25748.811919248063,7,4,7,7_1,7_0,7_1_0 +4106,2,27.0,0.0,5,112,480.0,0.0,0.0,43,38,0.0,0.0,818.4962608185893,600.0,166.2707070475825,0.0,10,2,2,2,2,1,2,2,2,2,20.0,2,,3,104111,1,2,0,0,1,,0.0,690.0,43,2.0,0.0,1.0,2.0,1.5,2,2,2128.15727201479,480.0,31794.50380632158,1,1,2,3,40.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.018871186153900734,21196.335870881052,5,3,5,5_0,5_1,5_0_0 +4107,1,62.0,100.0,1,111,330.0,735.0,0.0,0,68,0.0,0.0,562.7161793127802,1065.0,0.0,1395.4004752357448,50,2,2,2,2,1,2,2,2,0,,2,,1,104112,1,3,0,0,1,,300.0,308.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1926.94092249977,330.0,10209.609608429748,0,1,2,3,50.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.10431348904082127,10209.609608429748,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +4108,2,46.0,0.0,8,300,910.0,0.0,0.0,64,54,1502.9230627271572,198.6490915515336,1551.7324944685756,2605.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,12.0,1,2000.0,6,104113,2,1,1,0,1,,241.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,785.209118528695,910.0,53710.0234782918,1,1,1,2,142.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04850118900158131,21484.00939131672,6,3,6,6_1,6_0,6_0_0 +4109,2,67.0,0.0,2,112,0.0,0.0,0.0,0,77,1582.0242765549024,0.0,0.0,1639.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,104114,1,1,2,0,1,,433.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1052.87181959524,0.0,14163.013694293833,0,5,0,1,110.0,6,1,5,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11572395786500865,14163.013694293833,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +4111,2,67.0,0.0,6,211,540.0,,,0,78,0.0,0.0,,628.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,4,104116,1,3,0,0,2,,348.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,87.86195309988703,540.0,9659.419894315723,0,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.065014256225631,9659.419894315723,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4112,1,87.0,126.0,5,111,400.0,0.0,0.0,78,86,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,104117,1,1,0,1,2,634.0,0.0,456.0,41,0.0,0.0,3.0,2.0,1.5,2,2,1506.62018509459,400.0,17954.35086263457,5,5,2,3,63.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02227872247013141,11969.567241756378,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4113,2,38.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,875.0,0.0,0.0,50,2,1,2,2,1,2,2,2,1,2.0,2,,3,104118,1,2,0,1,1,,0.0,300.0,32,1.0,0.0,4.0,4.0,2.1,3,1,316.464986746677,0.0,36063.53955246721,0,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02426273213495869,17173.114072603435,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +4114,2,40.0,0.0,1,111,0.0,0.0,0.0,33,33,0.0,0.0,0.0,1715.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,75.0,2,,1,104119,2,1,0,0,2,,0.0,600.0,43,2.0,1.0,3.0,3.0,1.8,2,2,925.397660086199,0.0,62766.55869635791,1,1,2,3,46.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027323467075780823,34870.31038686551,9,5,9,9_0,9_4,9_1_0 +4115,2,38.0,0.0,1,111,0.0,0.0,0.0,33,33,0.0,0.0,0.0,686.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,104120,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,735.728949509424,0.0,132662.73411586494,1,1,1,2,88.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0051710075521348865,55276.13921494372,10,5,10,10_0,10_4,10_1_0 +4116,2,61.0,0.0,5,111,1350.0,0.0,0.0,78,47,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,104121,2,1,2,0,1,,450.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,793.577683064988,1350.0,40262.50380547648,5,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033529956470724355,26841.66920365099,7,4,7,7_1,7_4,7_0_0 +4117,2,62.0,0.0,2,112,480.0,,,0,71,0.0,0.0,,570.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,0,,1,,2,104122,2,1,0,0,2,,290.0,,11,0.0,9.0,5.0,1.0,1.0,1,1,118.81378842159988,480.0,13128.779333219652,0,5,0,1,100.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043416069806104005,13128.779333219652,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +4118,2,32.0,0.0,2,111,330.0,375.0,0.0,0,45,0.0,0.0,562.7161793127802,705.0,0.0,711.9390179774209,10,2,1,2,2,1,2,2,2,0,,2,,2,104123,1,3,0,1,1,1780.0,0.0,471.0,22,1.0,3.0,5.0,4.0,2.5,4,4,206.703800546864,330.0,44350.09032600409,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01589624721883898,17740.036130401633,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4119,2,71.0,0.0,1,112,1272.0,0.0,0.0,77,74,0.0,463.51454695357836,2169.0150911692617,1982.0,498.81212114274757,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104124,2,1,4,0,1,,650.0,,41,0.0,0.0,7.0,3.0,2.0,3,3,1231.19983130308,1272.0,71222.30878682461,5,5,0,1,165.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027828359312702448,35611.154393412304,9,5,9,9_1,9_0,9_1_0 +4120,2,58.0,0.0,1,111,250.0,0.0,0.0,0,63,0.0,0.0,426.3001358430153,250.0,0.0,0.0,71,2,2,2,1,1,2,2,2,1,15.0,2,,1,104125,1,3,0,0,2,,0.0,120.0,22,3.0,0.0,1.0,3.0,2.0,3,3,703.789716105881,250.0,11987.384787165849,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.020855257792980794,5993.6923935829245,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +4121,2,72.0,0.0,5,211,144.0,,,77,78,0.0,0.0,,444.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,3,104126,2,1,0,0,2,,400.0,,41,2.0,0.0,4.0,4.0,2.5,4,4,93.86813475563595,144.0,58868.537703989496,5,5,0,1,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007542229131502791,23547.4150815958,6,3,6,6_1,6_2,6_0_0 +4122,2,39.0,0.0,9,112,1234.0,0.0,0.0,46,46,0.0,378.75760122492403,2104.2174705211237,1520.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,1,2006.0,6,104127,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,460.566141219178,1234.0,66993.83507635102,1,1,1,2,157.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022688654833205143,27914.097948479593,7,4,7,7_1,7_0,7_0_0 +4123,2,38.0,0.0,2,111,700.0,2100.0,0.0,37,37,0.0,0.0,1193.6403803604428,2800.0,0.0,3986.858500673557,31,0,0,0,0,0,0,0,0,2,60.0,1,,2,104128,2,2,1,0,1,,500.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,1061.09055402468,700.0,77891.77851906871,1,1,1,2,200.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035947311169875665,28848.80685891434,8,4,8,8_1,8_3,8_0_1 +4124,0,77.0,0.0,9,111,1010.0,0.0,0.0,77,74,0.0,0.0,1722.2525488057818,1010.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2009.0,6,104129,2,1,0,0,1,,446.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1730.5451283999,1010.0,40962.76434689845,5,5,0,1,80.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02465653908136386,27308.509564598968,7,4,7,7_0,7_2,7_0_0 +4125,1,56.0,327.0,1,111,680.0,1000.0,0.0,85,62,0.0,0.0,1159.5363694930015,1680.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,1,104130,1,1,1,0,1,,250.0,443.0,42,1.0,3.0,4.0,2.0,1.5,2,2,265.504123538415,680.0,21271.890105643415,6,4,2,3,65.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07897746705424627,14181.260070428943,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +4126,2,57.0,0.0,6,112,600.0,0.0,0.0,55,47,1160.1511361402618,529.7309108040896,1023.1203260232367,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,104131,2,1,3,0,1,,450.0,,43,3.0,0.0,7.0,3.0,2.0,3,3,1199.15198798643,600.0,47859.81938059982,1,1,0,1,140.0,9,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04387814302640774,23929.90969029991,6,3,6,6_1,6_0,6_0_0 +4127,2,48.0,0.0,2,112,1300.0,0.0,0.0,52,38,2425.7705573841836,0.0,2216.7607063836795,3720.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,104132,2,1,2,0,1,,1000.0,,43,3.0,4.0,7.0,4.0,2.3,3,3,347.187933154462,1300.0,69452.48484312507,1,1,1,2,160.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05356179852171601,30196.732540489164,8,4,8,8_1,8_0,8_0_1 +4128,2,36.0,0.0,9,111,851.0,855.0,0.0,43,62,0.0,0.0,1451.125662409624,1706.0,0.0,1623.2209609885197,31,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,104133,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,382.874300172813,851.0,56758.589879977626,1,1,1,2,116.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03005712445653649,27027.89994284649,7,4,7,7_1,7_3,7_0_0 +4129,2,71.0,0.0,5,112,300.0,0.0,0.0,0,72,1898.4291318658827,172.1625460113291,511.56016301161833,2295.0,90.06329965077386,0.0,70,1,2,2,1,2,2,2,2,0,,1,,3,104134,2,2,3,0,1,,189.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1768.79211027714,300.0,21672.22037648715,0,5,0,1,98.0,9,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.10589593314074618,21672.22037648715,6,3,6,6_1,6_2,6_0_0 +4130,2,78.0,0.0,7,111,600.0,,,0,77,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,104135,2,2,0,0,2,,350.0,,11,0.0,4.0,1.0,1.0,1.0,1,1,127.67926421986236,600.0,30759.76696198365,0,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019505999533141683,30759.76696198365,8,4,8,8_0,8_2,8_0_0 +4131,2,78.0,0.0,8,112,660.0,0.0,0.0,77,77,0.0,397.2981831030672,1125.4323586255605,1040.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,104136,2,1,1,0,1,,340.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1053.33530670565,660.0,22778.901701953546,5,5,0,1,74.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04565628376678092,15185.934467969031,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4132,2,40.0,0.0,2,111,355.0,900.0,0.0,46,37,0.0,0.0,605.3461928970817,1255.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,3,40.0,2,,2,104137,2,2,0,0,1,,0.0,487.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1217.32525381561,355.0,72294.25848053952,1,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017359608167747186,40163.476933633065,9,5,9,9_0,9_4,9_0_1 +4133,2,36.0,0.0,6,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1083.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,104138,2,2,0,0,1,,0.0,180.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1069.40762872211,0.0,21809.19895968423,0,1,2,3,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04965794488839312,21809.19895968423,6,3,6,6_0,6_4,6_0_0 +4134,1,41.0,522.0,2,111,480.0,,,0,42,0.0,0.0,,568.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,2,104139,2,3,0,0,2,,350.0,700.0,32,1.0,1.0,5.0,6.0,2.6999999999999997,3,1,120.94950432779615,480.0,17842.28278717286,0,4,2,3,113.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03183449151519701,6608.252884138096,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +4135,2,52.0,0.0,5,112,650.0,0.0,0.0,0,62,0.0,1059.4618216081792,1108.3803531918397,1522.0,99.7624242285495,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,104140,2,1,2,0,1,,320.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,780.679991575923,650.0,13461.987425241643,0,1,0,1,160.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11305908644263052,13461.987425241643,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4136,2,46.0,0.0,9,111,720.0,,,55,52,0.0,0.0,,858.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,104141,2,1,0,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,179.65918585201675,720.0,54030.958759551904,1,1,1,2,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01587978484369052,23491.72119980518,6,3,6,6_1,6_2,6_0_0 +4137,2,32.0,0.0,5,211,0.0,,,85,63,0.0,0.0,,550.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,104142,2,2,0,0,2,,558.0,600.0,42,1.0,0.0,3.0,3.0,1.8,2,2,67.4160374187625,0.0,23012.0,6,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02390057361376673,12784.444444444443,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +4138,2,40.0,0.0,1,111,595.0,959.0,0.0,54,48,0.0,0.0,1014.5943233063764,1554.0,0.0,1820.6653819742576,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,104143,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1031.43409008569,595.0,64867.967140000954,1,1,1,2,98.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023956354245633867,27028.319641667065,7,4,7,7_1,7_2,7_1_0 +4139,1,76.0,92.0,2,111,264.0,1215.0,0.0,0,74,0.0,0.0,450.1729434502241,1479.0,0.0,2306.6824182468436,20,0,0,0,0,0,0,0,0,0,,2,,2,104144,2,1,0,0,1,,0.0,218.0,21,0.0,0.0,4.0,2.0,1.5,2,2,352.957278472613,264.0,14175.788866675766,0,5,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10433281801175885,9450.525911117178,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4140,2,72.0,0.0,1,112,1390.0,120.0,0.0,78,75,0.0,0.0,2370.228755287165,1510.0,0.0,227.8204857527747,70,0,0,0,0,0,0,0,0,0,,2,,1,104145,1,1,0,0,2,,0.0,580.0,41,0.0,3.0,3.0,2.0,1.5,2,2,678.583980376184,1390.0,37828.70567516859,5,5,2,3,65.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03991677677175167,25219.13711677906,7,4,7,7_0,7_2,7_1_0 +4141,1,31.0,350.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,979.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,104146,2,1,1,0,1,,245.0,1150.0,32,1.0,0.0,4.0,2.0,1.3,1,1,799.823599303564,0.0,18457.42592975993,0,4,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05304098218926096,14198.019945969178,3,2,3_1,3_1_1,3_4_1,3_0_1_1 +4142,1,35.0,400.0,2,111,720.0,120.0,0.0,0,52,0.0,0.0,1227.744391227884,840.0,0.0,227.8204857527747,71,2,1,2,2,1,2,2,2,3,90.0,2,,2,104147,2,1,0,1,1,,0.0,710.0,32,1.0,0.0,3.0,4.0,2.1,2,1,830.325638076304,720.0,22784.092127934222,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03686782845168212,10849.567679968677,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +4143,2,65.0,0.0,9,111,494.0,,,0,71,0.0,0.0,,620.0,174.58424239996165,,50,2,2,2,2,1,2,2,2,0,,1,2005.0,6,104148,1,1,0,0,2,,200.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,142.4925924083059,494.0,16683.52295464844,0,5,0,1,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.037162414778064166,16683.52295464844,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4144,2,40.0,0.0,9,112,0.0,0.0,0.0,37,42,0.0,0.0,0.0,1593.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,104149,2,1,1,0,1,,218.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,822.955633689174,0.0,68485.29376217144,1,1,1,2,159.0,8,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023260468233253166,32612.044648653064,8,4,8,8_1,8_0,8_0_0 +4145,2,65.0,0.0,6,112,1368.0,0.0,0.0,77,77,0.0,595.9472746546007,2332.7143433329798,1878.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,104150,2,1,2,0,1,,271.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,647.998476487727,1368.0,52378.77896046037,5,5,0,1,102.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03585421495635976,34919.18597364025,9,5,9,9_1,9_0,9_0_0 +4146,0,76.0,0.0,7,111,1076.0,0.0,0.0,0,74,0.0,0.0,1834.7957846683378,1076.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,104151,2,1,0,0,1,,128.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,763.827267511266,1076.0,62912.19971873239,0,5,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017103201045434377,62912.19971873239,10,5,10,10_0,10_4,10_0_0 +4147,1,51.0,325.0,2,111,350.0,0.0,0.0,0,52,0.0,0.0,596.8201901802214,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,104152,1,2,0,1,1,,0.0,414.0,32,1.0,0.0,4.0,4.0,2.5,4,3,286.873541026214,350.0,26396.720449240525,0,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013259222889943134,10558.68817969621,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +4148,2,36.0,0.0,9,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1536.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,7.0,1,2007.0,6,104153,2,1,1,0,1,,189.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,288.22960422199,0.0,43694.96506018953,0,1,2,3,46.0,8,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03515279158329043,43694.96506018953,10,5,10,10_1,10_0,10_0_0 +4149,2,40.0,0.0,1,112,600.0,0.0,0.0,46,64,1160.1511361402618,450.2712741834761,1023.1203260232367,2112.0,99.7624242285495,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,104154,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,2022.62121212264,600.0,52086.36574563311,1,1,1,2,216.0,8,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04054803919924224,24803.03130744434,7,4,7,7_1,7_1,7_1_0 +4150,2,53.0,0.0,2,111,811.0,737.0,0.0,43,37,0.0,0.0,1382.9176406747415,1548.0,0.0,1399.1974833316244,71,0,0,0,0,0,0,0,0,2,3.0,1,,2,104155,2,1,1,0,1,,560.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1070.41179757829,811.0,61527.37887503598,1,1,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025159531062489044,30763.68943751799,8,4,8,8_1,8_3,8_0_1 +4151,1,39.0,179.0,5,111,360.0,168.0,0.0,81,65,0.0,0.0,613.872195613942,528.0,0.0,318.9486800538846,71,0,0,0,0,0,0,0,0,0,,2,,3,104156,2,1,0,1,1,1200.0,0.0,373.0,43,2.0,0.0,4.0,3.0,1.8,2,2,427.141731513299,360.0,18997.374014825375,4,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027793314991216875,10554.096674902985,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +4152,2,32.0,0.0,7,112,0.0,0.0,1800.0,37,65,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,41,0,0,0,0,0,0,0,0,2,45.0,1,,5,104157,2,3,3,0,1,,260.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,834.122651705954,0.0,76171.97393307395,1,1,1,2,89.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02363073853884254,42317.763296152196,9,5,9,9_1,9_1,9_0_0 +4154,2,82.0,0.0,2,111,930.0,,,86,78,0.0,0.0,,1194.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,104159,1,3,0,0,2,,480.0,,41,1.0,0.0,4.0,4.0,2.5,4,4,81.3164591927682,930.0,29233.14180585372,5,5,0,1,81.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04084405323005379,11693.256722341488,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +4155,2,31.0,0.0,9,111,300.0,1200.0,0.0,46,48,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,104160,1,2,0,0,1,,0.0,640.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1419.46256002221,300.0,37281.97792754578,1,1,2,3,67.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0402339168515983,24854.651951697186,7,4,7,7_0,7_3,7_0_0 +4156,2,62.0,0.0,2,111,450.0,450.0,0.0,78,56,0.0,0.0,767.3402445174275,900.0,0.0,854.326821572905,60,0,0,0,0,0,0,0,0,0,,2,,2,104161,2,2,0,1,1,,0.0,846.0,42,2.0,1.0,4.0,3.0,2.0,3,3,200.579549430615,450.0,37506.56985738109,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023995796027796047,18753.284928690544,5,3,5,5_0,5_4,5_0_1 +4157,2,83.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,678.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,104162,2,1,0,2,1,,0.0,311.0,11,0.0,5.0,3.0,1.0,1.0,1,1,875.68386140855,0.0,19175.12491902379,0,5,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035358309417184076,19175.12491902379,5,3,5,5_0,5_4,5_1_0 +4158,2,66.0,0.0,2,111,120.0,84.0,0.0,0,72,0.0,0.0,204.62406520464734,204.0,0.0,159.4743400269423,70,2,2,2,2,1,1,2,2,0,,2,,2,104163,1,1,0,1,2,852.0,0.0,389.0,21,1.0,1.0,6.0,2.0,1.5,2,2,1174.08901132086,120.0,28629.1714442953,0,5,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.007125599160175814,19086.11429619687,5,3,5,5_0,5_4,5_0_1 +4159,2,61.0,0.0,1,111,420.0,420.0,0.0,74,31,0.0,26.486545540204478,716.1842282162656,860.0,0.0,797.3717001347114,10,0,0,0,0,0,0,0,0,0,,1,,1,104164,2,2,3,0,1,,230.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,736.052242198184,420.0,368595.8257378215,5,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0023331788912110724,245730.550491881,10,5,10,10_1,10_3,10_1_0 +4161,2,38.0,0.0,1,111,350.0,1300.0,0.0,42,42,0.0,0.0,596.8201901802214,1650.0,0.0,2468.055262321726,10,0,0,0,0,0,0,0,0,0,,1,,1,104166,2,2,2,0,1,,550.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1305.04772181394,350.0,61335.0,1,1,1,2,85.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02690144289557349,25556.25,7,4,7,7_1,7_2,7_1_0 +4162,1,37.0,400.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,623.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,104167,1,3,0,0,2,,0.0,400.0,31,0.0,3.0,2.0,3.0,1.8,2,1,650.122575113073,0.0,8148.291549296695,0,6,2,3,50.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07645774531150314,4526.828638498164,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +4163,2,33.0,0.0,8,112,1397.0,0.0,0.0,43,38,0.0,0.0,2382.1651590907695,1447.0,69.27946126982604,0.0,31,2,2,2,2,1,2,2,2,2,30.0,1,2001.0,6,104168,2,1,1,0,1,,418.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,842.12588520572,1397.0,56544.80205843855,1,1,1,2,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.02559032744520952,26926.096218304072,7,4,7,7_1,7_0,7_0_0 +4164,2,51.0,0.0,6,111,640.0,0.0,0.0,52,54,0.0,0.0,1091.3283477581192,640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,4,104169,1,1,0,1,1,1432.0,0.0,648.0,43,3.0,0.0,5.0,5.0,2.8,4,4,681.592305900101,640.0,54931.97742939481,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011650773009630048,19618.563367641003,5,3,5,5_0,5_4,5_0_0 +4165,2,58.0,0.0,6,211,819.0,0.0,0.0,52,47,3164.0485531098047,0.0,1396.5592450217182,3883.0,88.67771042537734,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,104170,1,2,3,0,1,,590.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,918.120116090728,819.0,47398.12746046181,1,1,0,1,86.0,4,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08192306759880102,31598.751640307873,8,4,8,8_1,8_2,8_0_0 +4166,2,48.0,0.0,8,111,600.0,927.0,0.0,63,55,0.0,0.0,1023.1203260232367,1527.0,0.0,1759.9132524401844,50,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,104171,1,1,0,0,1,,0.0,581.0,43,4.0,0.0,4.0,4.0,2.5,4,4,783.895466725847,600.0,37878.6863570524,1,1,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040312908045600615,15151.47454282096,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +4167,2,68.0,0.0,2,111,1000.0,800.0,0.0,77,78,0.0,0.0,1705.2005433720612,1800.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,2,104172,2,1,2,0,1,,500.0,,41,1.0,2.0,7.0,3.0,2.0,3,3,1559.43683209727,1000.0,49941.19624742111,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03604238855397761,24970.598123710555,7,4,7,7_1,7_3,7_0_1 +4168,2,62.0,0.0,5,120,1485.0,0.0,0.0,77,21,0.0,0.0,2532.222806907511,1575.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104173,2,1,4,0,1,,114.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,318.842425656306,1485.0,14496.429388665125,6,1,0,1,95.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10864744398586215,9664.286259110084,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4169,2,40.0,0.0,1,111,560.0,0.0,0.0,54,46,0.0,993.245457757668,954.9123042883542,1420.0,152.4148147936173,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,104174,2,1,3,0,1,,380.0,,43,2.0,2.0,6.0,3.0,1.8,2,2,390.627965960393,560.0,60074.7154671937,1,1,1,2,100.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02363723221919295,33374.84192621872,8,4,8,8_1,8_3,8_1_0 +4170,2,50.0,0.0,1,400,510.0,0.0,0.0,63,34,2109.365702073203,0.0,869.6522771197511,2610.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,1,104175,2,2,3,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1068.69594238755,510.0,60949.531907390716,1,1,1,2,108.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04282231410678828,26499.796481474226,7,4,7,7_1,7_0,7_1_0 +4171,2,53.0,0.0,7,111,1024.0,,,42,34,0.0,0.0,,1116.0,127.47420873647992,,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,104176,2,2,0,0,2,,367.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,126.77946632862815,1024.0,101472.77688838658,1,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010998023649510715,50736.38844419329,10,5,10,10_1,10_2,10_0_0 +4172,2,53.0,0.0,6,111,1600.0,0.0,0.0,63,67,0.0,2317.5727347678917,2728.320869395298,3542.0,266.03313127613205,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,104177,2,1,2,0,1,,780.0,,43,2.0,3.0,7.0,3.0,2.0,3,3,493.753746848385,1600.0,20923.92586016816,4,4,0,1,100.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16927989630964663,10461.96293008408,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4173,2,58.0,0.0,5,112,800.0,,,78,68,0.0,0.0,,1052.0,349.1684847999233,,71,2,2,2,2,1,2,2,2,0,,1,,3,104178,2,3,0,0,2,,796.0,,42,1.0,0.0,7.0,6.0,3.0999999999999996,4,3,137.79764312562412,800.0,38175.36739974705,5,1,0,1,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0275570366876671,12314.634645079694,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +4174,2,45.0,0.0,2,111,480.0,480.0,0.0,56,63,0.0,0.0,818.4962608185893,960.0,0.0,911.2819430110987,50,0,0,0,0,0,0,0,0,0,,2,,2,104179,2,1,0,1,1,930.0,900.0,411.0,43,2.0,1.0,5.0,4.0,2.5,4,3,320.717026576107,480.0,35169.19758023543,4,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027296613686162288,14067.67903209417,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +4175,2,57.0,0.0,2,111,600.0,0.0,0.0,34,31,2109.365702073203,0.0,1023.1203260232367,2600.0,0.0,0.0,10,1,2,2,1,2,2,2,2,2,12.0,1,,2,104180,2,1,1,0,1,,115.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,1852.88550188438,600.0,259826.01576308275,1,1,1,2,150.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.010006696182305158,103930.4063052331,10,5,10,10_1,10_3,10_0_1 +4176,2,44.0,0.0,1,111,1621.0,1855.0,0.0,47,46,0.0,0.0,2764.130080806111,3476.0,0.0,3521.7250089283084,31,0,0,0,0,0,0,0,0,0,,1,,1,104181,2,1,2,0,1,,464.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,383.651875455983,1621.0,116389.91669118969,1,1,1,2,160.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029865130062964648,64661.06482843871,10,5,10,10_1,10_3,10_1_0 +4177,2,87.0,0.0,1,221,120.0,0.0,0.0,0,71,0.0,0.0,204.62406520464734,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104182,2,1,2,0,2,,122.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,604.965498694245,120.0,12930.290643976568,0,5,0,1,80.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009280533849090288,12930.290643976568,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +4178,2,66.0,0.0,2,111,426.0,266.0,0.0,86,67,0.0,1059.4618216081792,726.415431476498,2373.0,0.0,505.00207675198385,70,0,0,0,0,0,0,0,0,1,15.0,1,,2,104183,2,1,1,0,1,,276.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,272.591830165985,426.0,30160.14016412246,6,5,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07868000569913947,20106.760109414972,5,3,5,5_1,5_3,5_0_1 +4179,2,66.0,0.0,1,112,1220.0,0.0,0.0,0,78,0.0,0.0,2080.344662913915,1260.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104184,2,2,5,0,1,,254.0,392.0,11,0.0,2.0,4.0,1.0,1.0,1,1,967.153375002244,1220.0,13547.870022370242,0,5,2,3,60.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09300354948191031,13547.870022370242,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4180,0,63.0,0.0,1,400,0.0,0.0,0.0,77,78,0.0,0.0,0.0,111.0,153.80040401901383,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104185,2,1,2,0,1,,272.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1210.00388993907,0.0,39012.640712304514,5,5,5,0,130.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0028452316473155533,26008.427141536344,7,4,7,7_1,7_0,7_1_0 +4181,2,51.0,0.0,1,300,700.0,0.0,0.0,55,63,1898.4291318658827,0.0,1193.6403803604428,2590.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,1,104186,2,2,2,0,1,,125.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1186.55250942404,700.0,43756.87508732115,1,1,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05919069848638415,29171.250058214096,8,4,8,8_1,8_0,8_1_0 +4182,2,68.0,0.0,7,111,900.0,,,75,78,0.0,0.0,,1159.0,358.86760937769895,,71,0,0,0,0,0,0,0,0,0,,1,,5,104187,2,1,0,0,2,,840.0,,41,1.0,5.0,7.0,3.0,2.0,3,3,120.58360267310597,900.0,9758.28318328598,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11877089219803942,4879.14159164299,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4183,2,62.0,0.0,5,211,400.0,900.0,0.0,72,21,0.0,144.3516731941144,682.0802173488245,1409.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,104188,2,1,3,0,1,,160.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,264.521161853169,400.0,16630.52443957208,5,1,0,1,100.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08472372624926403,11087.016293048053,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +4184,2,36.0,0.0,9,120,450.0,,,0,33,0.0,0.0,,514.0,88.67771042537734,,20,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,104189,2,1,0,0,1,,307.0,820.0,32,1.0,0.0,4.0,5.0,2.4000000000000004,2,2,108.75070474508264,450.0,41683.614177995856,0,1,2,3,91.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012330984492014916,17368.17257416494,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4185,2,59.0,0.0,5,111,0.0,,,77,55,0.0,0.0,,297.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,104190,2,1,0,0,2,,600.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,112.06913666141347,0.0,26965.124718046747,5,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011014226824666939,17976.749812031165,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +4186,1,35.0,162.0,1,111,700.0,1300.0,0.0,85,33,0.0,0.0,1193.6403803604428,2000.0,0.0,2468.055262321726,43,2,2,2,2,2,2,2,1,1,3.0,1,,1,104191,2,3,3,0,1,,511.0,543.0,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,399.214097188852,700.0,53753.135519143885,7,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.03720713183862011,19908.568710794032,5,3,5,5_1,5_3,5_1_0 +4187,2,52.0,0.0,7,111,360.0,600.0,0.0,53,53,0.0,0.0,613.872195613942,960.0,0.0,1139.1024287638734,42,0,0,0,0,0,0,0,0,2,25.0,2,,5,104192,2,1,0,0,1,,0.0,820.0,43,2.0,4.0,4.0,3.0,2.0,3,3,1159.35502910624,360.0,64346.322666553984,1,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0149192674921731,32173.161333276992,8,4,8,8_0,8_4,8_0_0 +4188,2,81.0,0.0,5,111,192.0,0.0,0.0,0,74,0.0,0.0,327.3985043274357,192.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,104193,1,2,0,1,2,348.0,0.0,297.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1289.51043867765,192.0,34323.1668030779,0,5,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00559388943047011,34323.1668030779,9,5,9,9_0,9_4,9_0_0 +4189,2,69.0,0.0,1,111,240.0,976.0,0.0,77,78,0.0,0.0,409.2481304092947,1216.0,0.0,1852.939950789234,71,0,0,0,0,0,0,0,0,0,,1,,1,104194,2,1,1,0,1,,0.0,250.0,41,0.0,2.0,4.0,2.0,1.5,2,2,476.167556630962,240.0,30884.444829778146,5,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03937257110179808,20589.629886518764,5,3,5,5_1,5_4,5_1_0 +4190,1,51.0,300.0,2,112,1200.0,0.0,0.0,0,55,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,104195,2,3,0,1,1,,184.0,460.0,32,2.0,3.0,3.0,2.0,1.5,2,2,1324.24738841829,1200.0,11917.3375508713,0,4,2,3,60.0,6,1,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10069363185171051,7944.891700580866,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +4191,2,63.0,0.0,2,112,1378.0,0.0,0.0,75,74,527.3414255183008,0.0,2349.7663487667005,1948.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,104196,2,2,2,0,1,,355.0,,41,0.0,7.0,7.0,2.0,1.5,2,2,239.969294643663,1378.0,62775.47036148983,5,5,0,1,180.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031031229057823483,41850.31357432655,9,5,9,9_1,9_0,9_0_1 +4192,2,30.0,0.0,1,111,233.0,1200.0,0.0,37,38,0.0,0.0,397.31172660569024,1433.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,104197,2,1,0,0,1,,0.0,1025.0,43,2.0,0.0,3.0,2.0,1.5,2,2,922.084802306082,233.0,53191.84314452932,4,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026940220817435266,35461.22876301954,9,5,9,9_0,9_4,9_1_0 +4193,2,19.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,3620.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,104198,2,2,0,0,1,,212.0,580.0,22,1.0,0.0,3.0,2.0,1.5,2,2,1533.48457634033,0.0,24717.957757687265,0,2,2,3,64.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.146452228597817,16478.638505124844,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4194,2,57.0,0.0,1,111,945.0,1046.0,0.0,0,67,0.0,0.0,1611.4145134865978,1991.0,0.0,1985.8352341450193,71,2,2,2,1,2,2,2,2,1,10.0,1,,1,104199,1,3,2,0,1,,684.0,,32,4.0,1.0,4.0,4.0,2.5,4,4,225.902117373493,945.0,89222.00024647449,0,1,0,1,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.022315124010892955,35688.800098589796,9,5,9,9_1,9_3,9_1_0 +4195,1,46.0,89.0,5,111,534.0,204.0,0.0,85,53,0.0,0.0,910.5770901606807,738.0,0.0,387.294825779717,71,0,0,0,0,0,0,0,0,0,,2,,3,104200,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,330.84061092565,534.0,51937.275939427884,6,1,1,2,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.014209447581746418,19236.028125714034,5,3,5,5_0,5_3,5_0_0 +4196,2,87.0,0.0,2,211,130.0,1257.0,0.0,0,72,0.0,0.0,221.67607063836795,1387.0,0.0,2386.419588260315,60,0,0,0,0,0,0,0,0,0,,2,,2,104201,1,3,0,0,2,,110.0,430.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2609.67586500245,130.0,20774.0,0,5,2,3,90.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06676614999518629,20774.0,5,3,5,5_0,5_1,5_0_1 +4197,1,43.0,121.0,7,112,900.0,0.0,0.0,0,55,0.0,0.0,1534.680489034855,950.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,5,104202,2,2,0,0,1,,180.0,460.0,32,1.0,0.0,2.0,2.0,1.3,1,1,747.016623039022,900.0,17004.803258966786,0,1,2,3,60.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05586656814150769,13080.617891512911,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +4198,1,27.0,60.0,5,111,360.0,,,0,54,0.0,0.0,,402.0,58.19474746665388,,31,0,0,0,0,0,0,0,0,2,25.0,8,,3,104203,1,2,0,0,2,,240.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,140.2594794825154,360.0,25740.0,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015617715617715617,25740.0,7,4,7,7_0,7_2,7_0_0 +4199,2,62.0,0.0,6,111,230.0,430.0,0.0,0,77,0.0,0.0,392.1961249755741,660.0,0.0,816.3567406141093,71,0,0,0,0,0,0,0,0,0,,1,,4,104204,2,1,1,0,1,,160.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1072.34586956947,230.0,20241.580670785235,0,5,0,1,93.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03260614922986627,20241.580670785235,5,3,5,5_1,5_2,5_0_0 +4200,2,38.0,0.0,7,400,900.0,,,0,52,0.0,0.0,,990.0,124.70303028568689,,43,0,0,0,0,0,0,0,0,0,,1,,5,104205,2,2,0,0,2,,800.0,,32,3.0,5.0,7.0,8.0,3.8999999999999995,5,5,129.3178208496,900.0,20458.0,0,1,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04839182715807997,5245.641025641026,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4201,2,61.0,0.0,2,111,100.0,1400.0,0.0,0,21,0.0,0.0,170.52005433720612,1500.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,2,,2,104206,1,2,0,0,2,,60.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1509.59200643561,100.0,17664.38025376135,0,1,1,2,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08491665025613332,17664.38025376135,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4202,2,80.0,0.0,5,111,550.0,0.0,0.0,75,72,0.0,0.0,937.8602988546337,550.0,0.0,0.0,20,2,1,2,1,2,2,2,2,0,,2,,3,104207,1,2,0,1,1,,534.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1617.31350751519,550.0,58482.14264292161,5,5,0,1,135.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.009404580187120919,38988.095095281074,9,5,9,9_0,9_3,9_0_0 +4203,1,35.0,311.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,275.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,,2,104208,2,2,0,1,1,432.0,0.0,392.0,42,1.0,0.0,3.0,4.0,2.1,2,2,792.526194036312,0.0,32578.31857665044,6,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008441196845471892,15513.48503650021,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +4204,2,63.0,0.0,8,111,210.0,,,0,74,0.0,0.0,,210.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104209,1,2,0,0,2,,101.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,96.08175430733556,210.0,43176.2911954982,0,5,1,2,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004863780426371957,43176.2911954982,9,5,9,9_1,9_3,9_0_0 +4205,1,33.0,446.0,2,112,850.0,0.0,0.0,0,56,0.0,0.0,1449.420461866252,920.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,104210,2,2,5,0,1,,447.0,520.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1182.69269615443,850.0,19433.437538991577,0,1,2,3,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.047341084054434344,12145.898461869734,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +4206,1,66.0,65.0,2,111,170.0,250.0,0.0,0,77,0.0,0.0,289.8840923732504,420.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,0,,2,,2,104211,1,1,0,1,2,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,302.207473132044,170.0,10798.429934176396,0,5,1,2,66.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0388945432400987,10798.429934176396,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4207,2,80.0,0.0,2,300,120.0,0.0,0.0,0,78,2109.365702073203,0.0,204.62406520464734,2280.0,221.69427606344334,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,104212,2,2,2,0,1,,120.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1106.47563703925,120.0,20939.0899270221,0,5,0,1,56.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.10888725383702744,20939.0899270221,5,3,5,5_1,5_0,5_0_1 +4208,2,36.0,0.0,9,111,600.0,1500.0,0.0,85,64,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,104213,2,1,0,0,1,,150.0,700.0,42,1.0,0.0,2.0,3.0,1.8,2,2,1061.87646053096,600.0,35999.59703762473,6,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.058333986288935394,19999.776132013736,5,3,5,5_0,5_4,5_0_0 +4209,2,50.0,0.0,7,120,600.0,0.0,0.0,56,63,2109.365702073203,0.0,1023.1203260232367,2690.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,1,3.0,1,,5,104214,2,1,1,0,1,,700.0,,43,2.0,1.0,5.0,4.0,2.5,4,3,1607.68556655764,600.0,31738.77358783256,1,1,0,1,170.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08475437756143306,12695.509435133023,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4210,2,27.0,0.0,7,111,0.0,0.0,1536.0,0,62,0.0,0.0,968.1688940770465,1536.0,0.0,1838.1805786593497,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,104215,2,1,0,0,1,,180.0,413.0,12,1.0,0.0,3.0,1.0,1.0,1,1,358.799513702639,0.0,21163.322322882297,0,1,2,3,59.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07257839655634973,21163.322322882297,5,3,5,5_0,5_2,5_0_0 +4211,2,87.0,0.0,2,120,1525.0,0.0,0.0,72,75,0.0,0.0,2600.4308286423934,1625.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,104216,2,1,1,0,1,,221.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,304.682507105013,1525.0,49558.07173771542,5,5,0,1,76.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03278981491855177,33038.71449181028,8,4,8,8_1,8_0,8_0_1 +4212,1,64.0,246.0,2,111,131.0,108.0,0.0,0,77,0.0,0.0,223.38127118174,239.0,0.0,205.0384371774972,71,2,1,2,2,1,2,2,2,0,,2,,2,104217,2,3,0,1,1,504.0,444.0,328.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1456.58055284834,131.0,9887.459611942497,0,5,2,3,73.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.024172032997366238,9887.459611942497,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4213,2,63.0,0.0,6,111,1076.0,,,75,75,0.0,0.0,,1223.0,203.68161613328857,,70,2,2,1,2,1,2,2,2,0,,1,,4,104218,2,2,0,0,1,,250.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,131.10573627993912,1076.0,41716.531249284366,5,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02931691498249822,27811.020832856244,7,4,7,7_1,7_2,7_0_0 +4214,1,81.0,150.0,2,111,1670.0,1603.0,0.0,0,78,0.0,0.0,2847.6849074313423,3333.0,83.13535352379125,3043.301988847482,70,2,2,2,1,2,2,2,2,0,,1,,2,104219,1,2,3,0,2,,1601.0,560.0,11,0.0,0.0,5.0,1.0,1.0,1,1,506.569110635002,1670.0,7798.671894849036,0,5,2,3,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.42738046233249294,7798.671894849036,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +4215,2,35.0,0.0,9,112,1402.0,0.0,0.0,63,54,0.0,0.0,2390.6911618076297,1402.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,104220,2,1,1,0,1,,120.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1667.33966318708,1402.0,39658.77500132732,1,1,1,2,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035351570994138805,22032.652778515177,6,3,6,6_1,6_0,6_0_0 +4216,2,44.0,0.0,2,111,480.0,250.0,0.0,56,68,0.0,0.0,818.4962608185893,730.0,0.0,474.62601198494724,71,2,2,2,1,1,2,2,2,0,,2,,2,104221,1,2,0,1,1,1340.0,0.0,451.0,43,2.0,0.0,4.0,6.0,3.3,5,4,252.034726389184,480.0,31643.161887322603,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02306975524757734,9588.836935552305,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +4217,2,42.0,0.0,7,111,1600.0,0.0,0.0,62,54,0.0,1324.327277010224,2728.320869395298,2600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,1.0,1,,5,104222,2,1,2,0,1,,900.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,1210.05451971863,1600.0,31327.68036730607,1,1,1,2,140.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0829936966132159,13620.730594480901,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +4218,2,53.0,0.0,2,111,385.0,85.0,0.0,34,47,0.0,0.0,656.5022091982436,470.0,0.0,161.37284407488207,31,0,0,0,0,0,0,0,0,3,75.0,2,,2,104223,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,586.357544257489,385.0,96643.47576299007,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0048632356844515315,32214.49192099669,8,4,8,8_0,8_4,8_0_1 +4219,2,66.0,0.0,6,111,0.0,0.0,0.0,85,78,0.0,0.0,0.0,2666.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,104224,2,1,1,0,1,,433.0,,41,0.0,5.0,7.0,4.0,2.5,4,4,589.600132861362,0.0,20459.12852385178,6,5,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1303085806852383,8183.651409540713,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +4220,1,64.0,50.0,2,111,210.0,84.0,0.0,0,77,774.1372126608655,0.0,358.0921141081328,1028.0,0.0,159.4743400269423,50,0,0,0,0,0,0,0,0,0,,2,,2,104225,2,3,0,1,1,738.0,0.0,358.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2414.72578445498,210.0,13164.078985394095,0,5,2,3,35.0,9,7,9,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0780912968647935,13164.078985394095,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4221,2,25.0,0.0,2,111,390.0,1300.0,0.0,56,63,0.0,0.0,665.0282119151038,1690.0,0.0,2468.055262321726,60,0,0,0,0,0,0,0,0,2,12.0,1,,2,104226,2,3,3,0,1,,440.0,450.0,43,2.0,0.0,4.0,3.0,1.8,2,2,274.971669369368,390.0,23676.224448232504,1,1,2,3,73.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07137962404838426,13153.458026795835,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +4222,2,47.0,0.0,7,112,690.0,0.0,0.0,46,52,0.0,0.0,1176.5883749267223,690.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,90.0,2,,5,104227,1,3,0,0,1,,0.0,570.0,43,2.0,0.0,3.0,3.0,2.0,3,3,657.84101408657,690.0,43640.83304372154,4,1,2,3,72.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.0158108805876534,21820.41652186077,6,3,6,6_0,6_1,6_0_0 +4223,1,30.0,337.0,8,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,938.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,6,104228,2,2,0,0,1,,120.0,315.0,31,0.0,0.0,3.0,2.0,1.3,1,1,272.340415183352,0.0,9404.62557733465,0,6,2,3,52.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09973815462261466,7234.327367180499,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4224,2,34.0,0.0,6,111,1380.0,0.0,0.0,56,47,0.0,39.72981831030672,2353.1767498534446,1410.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,104229,2,1,1,0,1,,324.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,557.769406213127,1380.0,40045.3495929224,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03521008092907754,19069.21409186781,5,3,5,5_1,5_4,5_0_0 +4225,2,58.0,0.0,7,111,3468.0,0.0,0.0,52,22,0.0,0.0,5913.635484414308,3522.0,74.82181817141213,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,104230,2,1,2,0,1,,605.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,641.06436984319,3468.0,155742.7867810945,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022614209446183694,86523.77043394139,10,5,10,10_1,10_4,10_0_0 +4226,2,36.0,0.0,9,112,1250.0,0.0,0.0,45,33,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,120.0,1,2012.0,6,104231,2,1,1,0,1,,286.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,755.118693906883,1250.0,52133.80877338674,1,1,1,2,113.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023976763436438193,28963.22709632597,8,4,8,8_1,8_2,8_0_0 +4227,2,66.0,0.0,5,111,300.0,1800.0,0.0,78,77,0.0,0.0,511.56016301161833,2170.0,96.99124577775646,3417.30728629162,50,1,2,2,1,2,2,2,2,0,,2,,3,104232,2,2,0,1,2,,340.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,372.780558278427,300.0,44021.740845926426,5,5,0,1,66.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.049293825239553245,29347.82723061762,8,4,8,8_0,8_2,8_0_0 +4228,2,32.0,0.0,1,211,1500.0,0.0,0.0,55,47,0.0,529.7309108040896,2557.8008150580918,1900.0,0.0,0.0,43,1,2,2,2,2,2,1,2,2,25.0,1,,1,104233,2,2,3,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1078.53167785651,1500.0,44908.04174476202,1,1,1,2,145.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.04230868072134568,29938.694496508015,8,4,8,8_1,8_1,8_1_0 +4229,0,58.0,0.0,2,111,800.0,1200.0,0.0,52,52,0.0,0.0,1364.160434697649,2010.0,13.855892253965209,2278.2048575277468,71,2,2,2,1,2,2,2,2,0,,8,,2,104234,2,3,0,0,1,,0.0,,43,2.0,1.0,3.0,4.0,2.3,3,3,1166.96382084918,800.0,45374.629952728996,1,1,5,0,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.04429788192419432,19728.09997944739,5,3,5,5_0,5_4,5_0_1 +4230,2,56.0,0.0,2,111,300.0,270.0,0.0,0,22,0.0,0.0,511.56016301161833,570.0,0.0,512.596092943743,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,104235,2,2,0,0,1,,140.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1804.65933436279,300.0,10238.68398567624,0,1,0,1,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05567121719914602,10238.68398567624,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +4231,1,31.0,404.0,6,111,450.0,,,56,56,0.0,0.0,,690.0,332.541414095165,,50,0,0,0,0,0,0,0,0,0,,1,,4,104236,2,1,0,0,2,,250.0,550.0,43,2.0,0.0,2.0,4.0,2.1,2,2,143.95175570050486,450.0,18409.186489514086,4,4,2,3,53.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037481286877778415,8766.279280720993,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4233,1,51.0,141.0,9,120,627.0,0.0,0.0,78,54,1265.6194212439218,0.0,1069.1607406942824,1827.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,104238,2,1,1,0,1,,0.0,690.0,42,1.0,6.0,3.0,2.0,1.5,2,2,1516.52484021863,627.0,25479.5575971029,5,1,2,3,87.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07170454169140422,16986.371731401934,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +4234,2,50.0,0.0,5,111,1000.0,0.0,0.0,47,33,0.0,794.5963662061343,1705.2005433720612,1680.0,110.84713803172167,0.0,12,0,0,0,0,0,0,0,0,3,250.0,1,,3,104239,2,2,2,0,1,,200.0,900.0,43,2.0,0.0,7.0,2.0,1.5,2,2,1653.65884903012,1000.0,74532.10346063925,1,1,2,3,120.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02254062238948101,49688.0689737595,10,5,10,10_1,10_2,10_0_0 +4235,2,32.0,0.0,8,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,905.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104240,2,2,5,0,1,,93.0,262.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1188.41312743985,0.0,16375.244181252008,0,1,2,3,40.0,6,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05526635144996086,16375.244181252008,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4236,2,41.0,0.0,9,211,720.0,,,0,54,0.0,0.0,,726.0,8.313535352379127,,71,0,0,0,0,0,0,0,0,2,1.0,1,2007.0,6,104241,2,2,0,0,2,,520.0,,32,1.0,2.0,5.0,2.0,1.3,1,1,44.75534367382771,720.0,24470.0,0,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029668982427462198,18823.076923076922,5,3,5,5_1,5_2,5_0_0 +4237,2,58.0,0.0,2,112,410.0,0.0,0.0,78,47,0.0,1589.1927324122687,699.1322227825451,1700.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,2,104242,2,1,1,0,1,,320.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1209.28528242975,410.0,38913.446385198185,6,1,0,1,107.0,6,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04368669850446971,25942.297590132122,7,4,7,7_1,7_0,7_0_1 +4238,2,59.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,818.4962608185893,3098.0,47.110033663481715,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,104243,2,1,0,1,1,,454.0,711.0,11,0.0,2.0,5.0,1.0,1.0,1,1,307.671695556226,480.0,35703.24369026249,0,5,2,3,78.0,3,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08677082751573442,35703.24369026249,9,5,9,9_0,9_2,9_0_1 +4239,2,64.0,0.0,2,111,390.0,0.0,0.0,75,75,1160.1511361402618,291.3520009422493,665.0282119151038,1710.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,104244,2,1,1,0,1,,165.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1568.18796619525,390.0,71952.89379463888,5,5,0,1,100.0,7,6,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023765548678007585,47968.59586309258,10,5,10,10_1,10_2,10_0_1 +4240,2,57.0,0.0,1,111,500.0,0.0,0.0,0,35,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,1,104245,2,1,0,1,1,,0.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,1714.53612734736,500.0,44926.55023405916,0,1,1,2,48.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011129276505654026,44926.55023405916,10,5,10,10_0,10_3,10_1_0 +4241,2,39.0,0.0,9,120,1170.0,0.0,0.0,43,63,0.0,0.0,1995.0846357453115,1275.0,145.4868686666347,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,104246,2,1,1,0,1,,320.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,1332.36223079022,1170.0,46015.15692527097,1,1,1,2,130.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02770826147720438,19172.982052196236,5,3,5,5_1,5_0,5_0_0 +4242,2,34.0,0.0,1,111,1200.0,0.0,0.0,43,63,0.0,0.0,2046.2406520464733,1347.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,104247,1,3,3,0,1,,250.0,620.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1137.33973522843,1200.0,36351.746917801,1,1,2,3,80.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03705461536816518,20195.41495433389,5,3,5,5_1,5_2,5_1_0 +4243,2,57.0,0.0,1,111,0.0,0.0,850.0,21,48,0.0,0.0,535.7705468525322,850.0,0.0,1017.2223254299786,50,2,2,2,1,1,2,2,2,0,,2,,1,104248,2,3,0,1,1,1270.0,0.0,235.0,43,2.0,2.0,3.0,2.0,1.5,2,2,702.454482593954,0.0,76092.50058264719,1,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01117061462682226,50728.33372176479,10,5,10,10_0,10_4,10_1_0 +4244,2,36.0,0.0,7,300,540.0,,,0,43,0.0,0.0,,747.0,286.8169696570798,,33,0,0,0,0,0,0,0,0,2,10.0,1,,5,104249,2,1,0,0,2,,900.0,,32,2.0,2.0,6.0,5.0,2.5999999999999996,3,3,76.01455925785838,540.0,72046.81894318525,0,1,0,1,119.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01036825790447556,27710.314978148177,7,4,7,7_1,7_1,7_0_0 +4245,2,76.0,0.0,5,111,330.0,,,0,71,0.0,0.0,,430.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,3,104250,2,2,0,0,2,,750.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,239.8382989040056,330.0,9936.588235294117,0,5,0,1,96.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0432744106747493,9936.588235294117,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4246,2,32.0,0.0,1,111,600.0,0.0,0.0,0,37,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,2,2,2,1,2,2,2,2,2,40.0,2,,1,104251,2,2,0,0,1,,150.0,650.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1018.20844913584,600.0,29259.440798150816,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.020506201883322382,29259.440798150816,8,4,8,8_0,8_4,8_1_0 +4247,2,82.0,0.0,8,112,1725.0,0.0,0.0,78,75,0.0,0.0,2941.4709373168057,1815.0,124.70303028568689,0.0,44,0,0,0,0,0,0,0,0,0,,1,2001.0,6,104252,2,1,1,0,1,,360.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1315.79524821253,1725.0,37357.047656110866,5,5,0,1,120.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04858520985672973,24904.698437407245,7,4,7,7_1,7_0,7_0_0 +4248,2,42.0,0.0,2,111,825.0,0.0,0.0,0,67,0.0,264.8654554020448,1406.7904482819504,1205.0,249.40606057137379,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,104253,2,1,2,0,1,,116.0,,22,1.0,3.0,5.0,2.0,1.5,2,2,284.794481695472,825.0,29781.428906496727,0,1,0,1,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0404614568287935,19854.285937664485,5,3,5,5_1,5_3,5_0_1 +4249,2,54.0,0.0,7,211,150.0,,,85,81,0.0,0.0,,238.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,5,104254,1,2,0,0,2,,208.0,,42,1.0,2.0,1.0,2.0,1.5,2,2,129.7820428294462,150.0,8324.523819609009,7,4,0,1,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028590223916396762,5549.682546406006,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4250,0,44.0,0.0,8,111,700.0,,,22,21,0.0,0.0,,832.0,182.89777775234077,,50,2,2,1,2,1,2,2,2,2,15.0,1,2000.0,6,104255,2,1,0,0,1,,420.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,105.60156559278101,700.0,18383.8305950477,1,1,5,0,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04525716203151518,9191.91529752385,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4251,2,44.0,0.0,2,300,345.0,0.0,0.0,55,21,843.7462808292812,0.0,588.2941874633611,1145.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,2,104256,2,1,2,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1694.72407032784,345.0,53404.99801232548,1,1,1,2,90.0,0,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021439940878487485,25430.951434440703,7,4,7,7_1,7_0,7_0_1 +4252,2,52.0,0.0,1,111,396.0,288.0,0.0,56,52,0.0,0.0,675.2594151753362,2222.0,0.0,546.7691658066592,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,104257,1,2,0,1,2,708.0,0.0,600.0,43,2.0,2.0,3.0,3.0,1.8,2,2,692.16203102601,396.0,19085.581230442633,4,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11642296732654799,10603.10068357924,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +4253,2,49.0,0.0,7,400,344.0,1040.0,0.0,0,52,0.0,0.0,586.588986919989,1384.0,0.0,1974.4442098573807,71,0,0,0,0,0,0,0,0,0,,1,,5,104258,2,2,2,0,1,,92.0,412.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1172.05936631175,344.0,10702.100872851472,0,4,2,3,81.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12932040320334287,10702.100872851472,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4254,2,62.0,0.0,1,111,808.0,1200.0,0.0,35,74,0.0,0.0,1377.8020390446254,2008.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,0,,2,,1,104259,2,1,0,0,1,,0.0,,42,1.0,2.0,6.0,4.0,2.5,4,3,1047.29025371642,808.0,132937.39931649505,1,5,1,2,136.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015104853941210241,53174.95972659802,10,5,10,10_0,10_4,10_1_0 +4255,2,48.0,0.0,5,120,1540.0,0.0,0.0,68,64,0.0,0.0,2626.0088367929743,1572.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,104260,1,2,2,0,1,,469.0,500.0,43,2.0,1.0,3.0,3.0,2.0,3,2,2966.48531409071,1540.0,29835.190910328478,1,1,2,3,80.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05268945671320635,14917.595455164239,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4256,2,68.0,0.0,5,111,2312.0,0.0,0.0,74,74,0.0,0.0,3942.4236562762053,2312.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,104261,2,1,1,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,809.945400466067,2312.0,72775.55227013073,5,5,0,1,190.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031768910408515226,48517.03484675382,10,5,10,10_1,10_3,10_0_0 +4257,2,65.0,0.0,7,111,452.0,,,77,74,0.0,0.0,,516.0,88.67771042537734,,10,0,0,0,0,0,0,0,0,0,,1,,5,104262,2,1,0,0,2,,154.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,124.92491378070531,452.0,72103.21555900054,5,5,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007156407602623049,48068.81037266703,10,5,10,10_1,10_2,10_0_0 +4258,2,80.0,0.0,8,211,1080.0,,,0,72,0.0,0.0,,1080.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104263,2,1,0,0,2,,640.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,103.26072115095879,1080.0,17701.78261408302,0,5,0,1,88.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06101080459211965,17701.78261408302,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4259,2,62.0,0.0,5,112,1200.0,0.0,0.0,0,56,1160.1511361402618,0.0,2046.2406520464733,2335.0,48.49562288887823,0.0,50,2,2,2,2,1,1,2,2,0,,1,,3,104264,2,1,2,0,2,,0.0,,12,1.0,1.0,7.0,1.0,1.0,1,1,1318.07664465762,1200.0,13319.524356569791,0,1,0,1,160.0,9,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.17530656031634287,13319.524356569791,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4260,2,80.0,0.0,5,300,1400.0,0.0,0.0,0,72,0.0,0.0,2387.2807607208856,1435.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104265,2,1,2,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,953.848293182777,1400.0,12296.867455463018,0,5,0,1,104.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11669638671778035,12296.867455463018,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4261,2,76.0,0.0,6,211,480.0,,,0,77,0.0,0.0,,580.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,4,104266,2,1,0,0,2,,400.0,,31,1.0,6.0,3.0,6.0,2.8999999999999995,3,3,108.8537094719219,480.0,10311.538862514188,0,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05624766659305232,3555.703056039376,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4262,1,51.0,220.0,1,111,720.0,480.0,0.0,55,46,0.0,0.0,1227.744391227884,1200.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,1,1.0,2,,1,104267,2,1,0,1,1,512.0,0.0,500.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,2,696.478409853761,720.0,41999.43824785166,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.028571810720858435,13548.205886403764,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +4264,0,36.0,0.0,7,111,500.0,,,0,55,0.0,0.0,,730.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,5,104269,1,2,0,0,2,,260.0,,22,2.0,1.0,4.0,4.0,2.5,4,4,78.72395517876922,500.0,22416.873404676964,0,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03256475543318614,8966.749361870785,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +4265,2,51.0,0.0,1,211,457.0,1635.0,0.0,85,62,0.0,0.0,779.276648321032,2092.0,0.0,3104.054118381555,50,2,2,2,2,1,2,2,2,0,,1,,1,104270,1,1,2,0,1,,450.0,650.0,42,2.0,1.0,3.0,4.0,2.3,3,3,628.614442454667,457.0,15994.500428150113,6,1,2,3,110.0,1,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.13079495726656815,6954.130620934832,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +4266,2,47.0,0.0,1,300,1300.0,0.0,0.0,56,52,0.0,105.94618216081791,2216.7607063836795,1430.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,104271,1,1,1,0,1,,70.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,931.190982754479,1300.0,45814.661852297766,1,1,1,2,170.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031212715366320674,30543.107901531843,8,4,8,8_1,8_0,8_1_0 +4267,2,76.0,0.0,5,400,2400.0,0.0,0.0,0,72,0.0,0.0,4092.4813040929466,2432.0,44.33885521268867,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,104272,2,2,2,0,1,,170.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1123.62113302009,2400.0,15005.54404208825,0,5,0,1,115.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.16207343053864712,15005.54404208825,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4268,1,42.0,300.0,2,111,1272.0,0.0,0.0,0,52,0.0,0.0,2169.0150911692617,1272.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,2,,2,104273,1,2,0,1,2,620.0,0.0,721.0,32,2.0,0.0,3.0,4.0,2.1,2,2,732.827503205094,1272.0,26587.82578600002,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.047841444811549026,12660.86942190477,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +4269,1,43.0,577.0,9,111,1663.0,,,85,62,0.0,0.0,,1939.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,104274,2,1,0,0,2,,900.0,571.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,3,2,172.8502397295234,1663.0,8873.93446338563,6,4,2,3,117.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.21850510706388768,2773.10451980801,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4270,1,67.0,296.0,2,111,0.0,0.0,1020.0,86,77,0.0,0.0,642.9246562230387,1020.0,0.0,1220.6667905159743,71,1,2,2,2,2,2,2,1,0,,2,,2,104275,2,2,0,1,1,492.0,0.0,458.0,41,2.0,3.0,4.0,4.0,2.5,4,4,431.463364026594,0.0,18133.511041743957,6,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.056249448749992506,7253.404416697583,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4271,1,43.0,427.0,2,111,1000.0,1500.0,0.0,85,43,0.0,0.0,1705.2005433720612,2500.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,2,1.0,1,,2,104276,2,2,1,0,1,,500.0,600.0,42,1.0,2.0,6.0,6.0,3.0999999999999996,4,2,311.624365378672,1000.0,40788.44727316934,6,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.061291864906181444,13157.56363650624,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +4272,2,45.0,0.0,8,111,960.0,950.0,0.0,68,52,0.0,0.0,1636.9925216371787,1910.0,0.0,1803.5788455427996,71,0,0,0,0,0,0,0,0,3,15.0,1,2003.0,6,104277,2,1,1,0,1,,0.0,534.0,43,4.0,1.0,6.0,6.0,3.3,5,5,298.607962461391,960.0,36935.33696043806,1,1,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051711996076977094,11192.526351647897,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +4273,1,47.0,190.0,5,111,600.0,0.0,0.0,0,56,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,104278,1,1,0,0,1,,0.0,395.0,32,1.0,0.0,3.0,3.0,2.0,3,3,934.457128368659,600.0,21317.5801508846,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02814578370308612,10658.7900754423,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +4274,1,44.0,400.0,1,111,1500.0,0.0,0.0,56,85,0.0,0.0,2557.8008150580918,2904.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,104279,2,2,2,0,1,,300.0,,42,1.0,0.0,7.0,6.0,2.8999999999999995,3,2,309.249907668817,1500.0,34297.20838394788,1,7,1,2,72.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08467161430430468,11826.623580671685,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +4275,2,64.0,0.0,5,111,200.0,100.0,0.0,77,78,0.0,0.0,341.04010867441224,300.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,3,104280,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,346.482931167126,200.0,33734.18657702182,5,5,0,1,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008893055693370304,22489.457718014546,6,3,6,6_0,6_3,6_0_0 +4276,2,50.0,0.0,2,111,720.0,2484.0,0.0,0,54,0.0,59.594727465460075,1227.744391227884,3249.0,0.0,4715.884055082436,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,104281,2,3,2,0,1,,300.0,,32,2.0,0.0,5.0,3.0,2.0,3,3,539.638494697062,720.0,45487.46255914636,0,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07142627478451663,22743.73127957318,6,3,6,6_1,6_4,6_0_1 +4277,2,46.0,0.0,2,111,680.0,0.0,0.0,48,46,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,2,,2,104282,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,821.555423670641,680.0,36989.70042842554,4,1,1,2,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018383495733245766,14795.880171370216,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +4278,2,38.0,0.0,5,111,400.0,0.0,0.0,46,21,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,1,1,2,1,2,2,2,2,0,,2,,3,104283,2,1,0,1,2,600.0,0.0,730.0,43,2.0,0.0,3.0,5.0,2.8,4,4,788.284158084065,400.0,58151.64101227054,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.006878567707411666,20768.443218668053,5,3,5,5_0,5_4,5_0_0 +4279,2,71.0,0.0,2,111,534.0,,,77,78,0.0,0.0,,884.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,0,,1,,2,104284,2,1,0,0,2,,270.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,110.82241601418218,534.0,29316.390931117498,5,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03015377991366904,19544.260620744997,5,3,5,5_1,5_2,5_0_1 +4280,2,53.0,0.0,2,111,500.0,1500.0,0.0,52,52,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,104285,2,3,0,0,1,,250.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1208.94322966357,500.0,31469.77405542812,1,1,1,2,85.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06355304605865215,20979.849370285414,5,3,5,5_0,5_2,5_0_1 +4281,1,46.0,180.0,9,400,1600.0,0.0,0.0,55,11,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,104286,2,1,1,0,1,,230.0,,43,4.0,0.0,6.0,5.0,3.0,5,4,1470.59047110001,1600.0,56316.88034651429,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02841066462054181,18772.293448838096,5,3,5,5_1,5_0,5_0_0 +4282,2,60.0,0.0,2,111,830.0,0.0,0.0,0,52,0.0,794.5963662061343,1415.3164509988108,1480.0,69.27946126982604,0.0,31,2,2,2,1,1,2,2,2,2,60.0,1,,2,104287,2,1,3,0,1,,30.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,910.833992337001,830.0,28422.626172579297,0,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,1,0,0,0.05207119113531559,28422.626172579297,8,4,8,8_1,8_4,8_0_1 +4283,2,43.0,0.0,8,300,500.0,0.0,0.0,55,64,316.40485531098045,0.0,852.6002716860306,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,104288,2,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,974.059432490536,500.0,36205.683890452194,1,1,1,2,94.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02209597814587803,17240.801852596283,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4284,2,24.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,1554.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,1,,1,104289,2,1,2,0,1,,537.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,542.579568849151,0.0,32573.948150330758,0,1,1,2,36.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047706835929995195,32573.948150330758,8,4,8,8_1,8_4,8_1_0 +4285,2,44.0,0.0,7,120,1456.0,0.0,0.0,67,22,105.46828510366015,834.326184516441,2482.771991149721,2186.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,104290,2,1,1,0,1,,660.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,929.534512469844,1456.0,66056.55215568643,1,1,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033092856479216344,33028.27607784321,8,4,8,8_1,8_0,8_0_0 +4286,1,49.0,128.0,2,111,266.0,162.0,0.0,0,56,0.0,0.0,453.5833445369683,428.0,0.0,307.55765576624583,60,1,2,2,1,1,2,2,2,0,,2,,2,104291,1,3,0,1,1,780.0,180.0,262.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1309.32652188538,266.0,10964.121311009194,0,1,2,3,56.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03903641594791919,10964.121311009194,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4287,2,76.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,562.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104292,1,3,0,1,2,748.0,0.0,90.0,11,0.0,4.0,2.0,1.0,1.0,1,1,643.926718651623,0.0,11210.715266892617,0,5,2,3,55.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05013061045798686,11210.715266892617,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +4288,2,75.0,0.0,6,211,360.0,,,77,78,0.0,0.0,,360.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,104293,2,1,0,0,2,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,90.43158505581748,360.0,25466.94077911831,5,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014135973500797669,16977.96051941221,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4289,0,51.0,0.0,1,111,1060.0,0.0,0.0,0,68,0.0,0.0,1807.5125759743848,1234.0,241.09252521899464,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,104294,2,2,2,0,1,,340.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1592.52777240993,1060.0,13647.582514386231,0,1,0,1,70.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09041894406567699,13647.582514386231,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +4290,2,51.0,0.0,1,300,1500.0,0.0,0.0,85,85,0.0,794.5963662061343,2557.8008150580918,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104295,2,1,1,0,1,,443.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1237.78199941512,1500.0,45786.131437136864,6,6,1,2,130.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04586541675579742,30524.08762475791,8,4,8,8_1,8_0,8_1_0 +4291,2,55.0,0.0,6,111,280.0,1000.0,0.0,52,67,0.0,0.0,477.4561521441771,1280.0,0.0,1898.504047939789,71,2,2,2,1,1,2,2,2,2,10.0,1,,4,104296,1,2,3,0,1,,240.0,565.0,43,2.0,3.0,5.0,2.0,1.5,2,2,586.141082246071,280.0,36364.338239052144,1,1,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03519932059771106,24242.892159368097,7,4,7,7_1,7_3,7_0_0 +4292,2,61.0,0.0,2,112,460.0,1730.0,0.0,0,75,0.0,0.0,784.3922499511482,2190.0,0.0,3284.412002935835,70,0,0,0,0,0,0,0,0,0,,1,,2,104297,2,1,2,0,1,,220.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1163.45505729756,460.0,32579.206030290297,0,5,0,1,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06722079101509909,32579.206030290297,8,4,8,8_1,8_2,8_0_1 +4293,2,65.0,0.0,5,111,197.0,849.0,0.0,0,38,0.0,0.0,335.92450704429604,1046.0,0.0,1611.8299367008808,12,0,0,0,0,0,0,0,0,0,,2,,3,104298,2,3,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1891.64518366004,197.0,38257.35699020934,0,1,0,1,71.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027341146443223663,38257.35699020934,9,5,9,9_0,9_3,9_0_0 +4294,2,29.0,0.0,2,111,266.0,0.0,0.0,0,52,0.0,0.0,453.5833445369683,266.0,0.0,0.0,33,2,1,2,1,1,2,2,2,2,20.0,2,,2,104299,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,837.917848923652,266.0,21559.430695299663,0,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012337988129621285,21559.430695299663,6,3,6,6_0,6_4,6_0_1 +4295,2,68.0,0.0,2,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,537.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104300,2,2,1,0,1,,228.0,414.0,41,0.0,3.0,2.0,2.0,1.5,2,2,322.929728653576,0.0,27157.83696860323,5,5,2,3,58.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019773297874231207,18105.22464573549,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +4296,2,44.0,0.0,2,111,350.0,,,0,68,0.0,0.0,,494.0,199.524848457099,,71,0,0,0,0,0,0,0,0,2,15.0,3,,2,104301,2,3,0,0,2,,200.0,325.0,12,1.0,2.0,2.0,1.0,1.0,1,1,75.87772699546169,350.0,21069.933209962048,0,1,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02344573165359786,21069.933209962048,5,3,5,5_0,5_2,5_0_1 +4298,1,51.0,231.0,7,111,240.0,0.0,0.0,0,63,0.0,0.0,409.2481304092947,240.0,0.0,0.0,71,2,2,2,1,2,2,2,2,1,20.0,2,,5,104303,1,3,0,0,1,,180.0,307.0,12,1.0,0.0,2.0,1.0,1.0,1,1,296.949305706245,240.0,14613.449621427802,0,1,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.016423226973601518,14613.449621427802,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +4299,2,41.0,0.0,7,111,450.0,,,46,38,0.0,0.0,,538.0,121.93185183489385,,31,0,0,0,0,0,0,0,0,0,,1,,5,104304,2,1,0,0,2,,450.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,134.92218339146368,450.0,65346.692337812085,1,1,1,2,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008233010436378165,36303.71796545116,9,5,9,9_1,9_2,9_0_0 +4300,0,38.0,0.0,1,111,360.0,,,63,52,0.0,0.0,,402.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,104305,2,2,0,0,2,,120.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,155.5105197183949,360.0,21640.901373758414,4,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01857593605077199,12022.72298542134,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +4301,2,48.0,0.0,1,111,200.0,500.0,0.0,0,52,0.0,529.7309108040896,341.04010867441224,1100.0,0.0,949.2520239698945,44,2,2,1,1,2,2,2,2,1,15.0,1,,1,104306,2,1,2,0,1,,240.0,150.0,32,1.0,0.0,5.0,2.0,1.5,2,2,2006.35475223375,200.0,8913.152648173724,0,1,2,3,120.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.12341312254148216,5942.101765449149,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +4302,2,52.0,0.0,2,111,850.0,0.0,0.0,37,31,0.0,0.0,1449.420461866252,3008.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,1,,2,104307,2,1,2,0,1,,362.0,,43,2.0,1.0,6.0,4.0,2.5,4,4,1257.52128301651,850.0,127642.29262521697,1,1,1,2,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023565856881246117,51056.91705008679,10,5,10,10_1,10_4,10_0_1 +4303,2,62.0,0.0,1,111,450.0,950.0,0.0,0,78,0.0,0.0,767.3402445174275,1400.0,0.0,1803.5788455427996,20,0,0,0,0,0,0,0,0,0,,2,,1,104308,2,1,0,0,1,,260.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2177.42852146184,450.0,10445.553529966757,0,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.13402832085284958,10445.553529966757,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +4304,2,22.0,0.0,1,112,0.0,0.0,0.0,56,67,0.0,0.0,0.0,1068.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,1,104309,2,1,0,0,1,,0.0,360.0,43,2.0,0.0,1.0,2.0,1.5,2,2,941.483590890463,0.0,14164.284707263301,4,1,2,3,32.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07540091307627701,9442.856471508867,1,1,1_0,1_0_0,1_1_0,1_1_0_0 +4305,2,42.0,0.0,9,111,450.0,400.0,0.0,38,37,0.0,397.2981831030672,767.3402445174275,1150.0,0.0,759.4016191759156,10,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,104310,2,1,1,0,1,,467.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1251.20837273715,450.0,91670.40045235341,1,1,1,2,150.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012544943562210397,43652.57164397781,10,5,10,10_1,10_3,10_0_0 +4306,2,65.0,0.0,1,120,2328.0,0.0,0.0,21,77,991.4018799744055,0.0,3969.706864970158,3268.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104311,2,2,1,0,1,,295.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,544.461703021895,2328.0,25461.921519329066,7,5,0,1,100.0,0,2,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12834852222441825,16974.614346219376,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +4307,1,57.0,122.0,2,111,600.0,70.0,0.0,0,52,0.0,0.0,1023.1203260232367,670.0,0.0,132.89528335578524,71,1,2,2,2,1,2,2,2,3,20.0,2,,2,104312,1,2,0,1,1,768.0,0.0,379.0,12,1.0,1.0,4.0,1.0,1.0,1,1,294.852613286613,600.0,11833.170664759971,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05662049665144338,11833.170664759971,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +4308,2,86.0,0.0,1,111,362.0,0.0,0.0,0,77,1898.4291318658827,0.0,617.2825967006861,3094.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104313,1,1,1,0,1,,153.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,428.013059499172,362.0,17480.553412248915,0,5,0,1,135.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17699668466056587,17480.553412248915,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +4309,2,72.0,0.0,2,111,260.0,90.0,0.0,0,75,0.0,0.0,443.3521412767359,350.0,0.0,170.865364314581,33,0,0,0,0,0,0,0,0,0,,2,,2,104314,2,1,0,1,1,504.0,110.0,507.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1828.45136383893,260.0,21520.898492160763,0,5,2,3,45.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016263261504973484,21520.898492160763,6,3,6,6_0,6_3,6_0_1 +4310,2,62.0,0.0,2,120,29.0,101.0,0.0,0,77,0.0,0.0,49.450815757789776,130.0,0.0,191.74890884191868,60,0,0,0,0,0,0,0,0,0,,1,,2,104315,2,1,2,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1364.26445522015,29.0,10672.696495436989,0,5,0,1,85.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012180614341987545,10672.696495436989,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +4311,2,80.0,0.0,1,112,2000.0,0.0,0.0,0,78,0.0,79.45963662061344,3410.4010867441225,2110.0,69.27946126982604,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,104316,2,2,4,0,1,,223.0,320.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1458.99887484342,2000.0,20834.264146551548,0,5,2,3,70.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.10127547510955617,20834.264146551548,5,3,5,5_1,5_0,5_1_0 +4312,1,57.0,230.0,5,111,232.0,0.0,0.0,0,56,0.0,0.0,395.6065260623182,232.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,104317,2,1,0,1,1,488.0,0.0,631.0,12,1.0,3.0,1.0,1.0,1.0,1,1,1289.51043867765,232.0,9474.862624213656,0,4,3,4,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024485843141103514,9474.862624213656,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +4313,0,84.0,0.0,1,111,0.0,0.0,1300.0,78,78,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,71,0,0,0,0,0,0,0,0,0,,1,,1,104318,2,1,3,0,1,,400.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,366.680628885205,0.0,28941.952259365455,5,5,5,0,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04491749514165297,19294.63483957697,5,3,5,5_1,5_3,5_1_0 +4314,2,67.0,0.0,2,112,1236.0,0.0,0.0,0,75,0.0,476.7578197236806,2107.6278716078677,1656.0,83.13535352379125,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,104319,1,2,2,0,1,,430.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,681.855986646023,1236.0,27063.527147745503,0,5,0,1,81.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.061189363491297596,27063.527147745503,7,4,7,7_1,7_0,7_0_1 +4316,2,42.0,0.0,5,111,480.0,1000.0,0.0,21,34,0.0,0.0,818.4962608185893,1480.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,0,,2,,3,104321,2,2,0,0,1,,0.0,369.0,43,4.0,4.0,4.0,5.0,2.8,4,4,340.036743547509,480.0,61282.44720510935,1,1,2,3,95.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024150471586856063,21886.588287539053,6,3,6,6_0,6_2,6_0_0 +4317,2,85.0,0.0,5,111,410.0,0.0,0.0,0,75,1582.0242765549024,0.0,699.1322227825451,1942.0,44.33885521268867,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104322,2,1,1,0,1,,238.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,949.206583418332,410.0,36734.801784707604,0,5,0,1,60.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052865400264891005,36734.801784707604,9,5,9,9_1,9_3,9_0_0 +4318,1,56.0,37.0,8,300,600.0,,,0,42,0.0,0.0,,732.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104323,2,1,0,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,92.73109719272854,600.0,6332.0,0,4,1,2,85.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11560328490208464,6332.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +4319,2,29.0,0.0,5,111,2800.0,,,0,63,0.0,0.0,,2800.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,104324,2,1,0,0,2,,800.0,,22,4.0,3.0,5.0,5.0,2.8,4,4,84.77954907351213,2800.0,29697.938842001007,0,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09428263742128913,10606.406729286075,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4320,2,64.0,0.0,1,111,800.0,0.0,0.0,0,75,0.0,0.0,1364.160434697649,800.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,2,,1,104325,2,2,0,0,1,,0.0,500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,978.875749815251,800.0,20441.0407928448,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.03913695041790791,20441.0407928448,5,3,5,5_0,5_4,5_1_0 +4321,1,28.0,243.0,2,111,260.0,0.0,0.0,0,56,0.0,0.0,443.3521412767359,260.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,104326,1,1,0,1,1,200.0,0.0,409.0,32,1.0,0.0,1.0,2.0,1.3,1,1,247.892875142167,260.0,9411.566655270733,0,4,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027625581321723193,7239.666657900564,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4322,2,92.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,198.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,104327,2,1,0,1,2,568.0,190.0,718.0,11,0.0,2.0,2.0,1.0,1.0,1,1,857.394584464641,0.0,24698.56651826671,0,5,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008016659584416042,24698.56651826671,7,4,7,7_0,7_4,7_1_0 +4323,2,79.0,0.0,5,111,300.0,1313.0,0.0,77,75,0.0,0.0,511.56016301161833,1613.0,0.0,2492.735814944943,44,0,0,0,0,0,0,0,0,0,,1,,3,104328,1,1,2,0,2,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,328.153120295582,300.0,23994.89461379501,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.067222633229348,15996.596409196674,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4324,2,64.0,0.0,1,112,1188.0,0.0,0.0,78,78,0.0,0.0,2025.7782455260087,1267.0,109.46154880632515,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,104329,2,1,1,0,1,,216.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,784.420882581884,1188.0,21800.101213622147,5,5,1,2,85.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05811899621861822,14533.400809081431,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4325,1,47.0,285.0,2,211,595.0,0.0,0.0,85,67,0.0,0.0,1014.5943233063764,1019.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104330,2,1,0,3,1,,638.0,162.0,42,1.0,1.0,4.0,4.0,2.1,2,2,2404.55460981785,595.0,21310.60329015714,7,4,2,3,60.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04781657216014395,10147.906328646257,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +4326,1,33.0,411.0,1,111,1300.0,0.0,0.0,85,43,2109.365702073203,0.0,2216.7607063836795,3480.0,249.40606057137379,0.0,43,1,2,1,2,1,2,2,2,0,,1,,1,104331,1,2,2,0,2,,850.0,721.0,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,334.145680938492,1300.0,35464.5376162224,6,1,2,3,130.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.09812619122963435,13135.013931934223,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +4327,1,57.0,307.0,7,111,0.0,0.0,900.0,0,77,0.0,0.0,567.2864613732694,922.0,30.482962958723462,1077.0589328082126,50,2,2,2,1,1,1,2,2,0,,2,,5,104332,2,1,0,0,1,,0.0,443.0,11,0.0,2.0,2.0,1.0,1.0,1,1,930.140419312903,0.0,9655.07794172415,0,7,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.09549379151209154,9655.07794172415,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +4328,1,46.0,194.0,2,111,720.0,,,85,62,0.0,0.0,,870.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,104333,2,2,0,0,2,,350.0,700.0,42,2.0,1.0,4.0,5.0,2.8,4,3,89.234239045537,720.0,41093.11841595532,6,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02117142805259099,14676.113719984045,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +4329,2,49.0,0.0,2,111,596.0,1295.0,0.0,0,46,0.0,0.0,1016.2995238497484,1891.0,0.0,2458.562742082027,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,104334,2,1,0,0,1,,426.0,368.0,32,1.0,0.0,2.0,2.0,1.5,2,1,1016.24506221887,596.0,34206.90894961425,0,1,2,3,62.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055281229963963896,22804.605966409497,6,3,6,6_0,6_2,6_0_1 +4330,2,32.0,0.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,302.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,2,,3,104335,2,1,0,1,2,408.0,0.0,790.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1609.21818132423,0.0,29219.195049770773,0,1,2,3,26.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010335671447676284,29219.195049770773,8,4,8,8_0,8_4,8_0_0 +4331,2,67.0,0.0,1,111,0.0,0.0,1804.0,0,74,0.0,0.0,1137.094195908198,1804.0,0.0,2158.904794206684,44,0,0,0,0,0,0,0,0,0,,1,,1,104336,2,1,2,0,1,,168.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,317.604622677479,0.0,37170.62240752125,0,5,0,1,125.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04853295110912567,37170.62240752125,9,5,9,9_1,9_3,9_1_0 +4332,2,54.0,0.0,2,211,800.0,0.0,0.0,85,21,0.0,1324.327277010224,1364.160434697649,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104337,2,1,1,0,1,,240.0,970.0,42,1.0,3.0,5.0,2.0,1.5,2,2,2827.94888258133,800.0,26080.93062100358,6,1,2,3,127.0,2,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06901594218997761,17387.28708066905,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +4333,2,34.0,0.0,9,112,1480.0,0.0,0.0,46,48,0.0,927.0290939071567,2523.6968041906507,2180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,104338,2,1,1,0,1,,337.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1497.13305318589,1480.0,30102.967558952412,1,1,1,2,130.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07241810946813725,14334.746456644005,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4334,1,53.0,184.0,2,111,0.0,0.0,370.0,0,56,0.0,0.0,233.2177674534552,370.0,0.0,442.7908945989319,50,0,0,0,0,0,0,0,0,0,,2,,2,104339,2,2,0,1,2,541.0,350.0,500.0,32,2.0,3.0,4.0,3.0,1.8,2,2,509.620874644539,0.0,14775.297092997225,0,1,2,3,68.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025041797648546915,8208.498384998458,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4335,1,39.0,113.0,2,111,400.0,160.0,0.0,85,68,0.0,0.0,682.0802173488245,560.0,0.0,303.7606476703662,71,0,0,0,0,0,0,0,0,0,,2,,2,104340,2,2,0,1,1,780.0,0.0,287.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,264.839989550443,400.0,34226.161908648675,6,1,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016361752787083395,12676.356262462474,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4336,2,72.0,0.0,1,112,660.0,0.0,0.0,77,78,1687.4925616585624,1032.9752760679746,1125.4323586255605,3140.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104341,2,2,2,0,1,,580.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,907.98286985245,660.0,50654.41354956274,5,5,0,1,111.0,10,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06198867541774363,25327.20677478137,7,4,7,7_1,7_1,7_1_0 +4337,2,58.0,0.0,6,111,1456.0,0.0,0.0,47,52,0.0,0.0,2482.771991149721,1456.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,,4,104342,2,1,1,0,1,,396.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,594.058034024833,1456.0,42670.59176496665,1,1,0,1,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03412186097675362,28447.061176644434,8,4,8,8_1,8_4,8_0_0 +4338,1,46.0,172.0,2,111,468.0,0.0,0.0,0,42,0.0,0.0,798.0338542981247,468.0,0.0,0.0,31,2,2,1,2,2,2,2,1,0,,2,,2,104343,2,1,0,0,1,,180.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2155.66820011241,468.0,8845.393501832257,0,1,1,2,36.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05290889544971145,8845.393501832257,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4339,2,58.0,0.0,9,111,600.0,,,85,38,0.0,0.0,,644.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,104344,2,1,0,0,1,,1400.0,,42,1.0,0.0,7.0,3.0,1.8,2,2,251.72368761809156,600.0,35538.0,6,4,1,2,175.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018121447464685688,19743.333333333332,5,3,5,5_1,5_2,5_0_0 +4340,2,51.0,0.0,2,111,750.0,1500.0,0.0,54,63,0.0,66.2163638505112,1278.9004075290459,2300.0,0.0,2847.7560719096837,42,0,0,0,0,0,0,0,0,2,75.0,1,,2,104345,2,3,2,0,1,,336.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,546.942977301196,750.0,125122.1844257525,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01838203201579189,50048.873770301,10,5,10,10_1,10_4,10_0_1 +4341,2,66.0,0.0,6,111,300.0,0.0,0.0,0,64,1582.0242765549024,0.0,511.56016301161833,1920.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,104346,2,1,2,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1283.81150411273,300.0,31343.955137315417,0,5,0,1,100.0,6,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061255830401384576,31343.955137315417,8,4,8,8_1,8_2,8_0_0 +4342,2,53.0,0.0,9,111,2000.0,0.0,0.0,56,64,0.0,0.0,3410.4010867441225,2200.0,277.1178450793042,0.0,31,0,0,0,0,0,0,0,0,3,180.0,1,2005.0,6,104347,2,1,1,0,1,,840.0,,43,3.0,0.0,6.0,6.0,3.5,6,5,513.476901548294,2000.0,41480.23197503123,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05303731187724014,11851.494850008923,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +4343,1,47.0,300.0,5,211,480.0,,,0,62,0.0,0.0,,1080.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,2,6.0,1,,3,104348,2,2,0,0,2,,1200.0,500.0,32,2.0,0.0,5.0,6.0,2.9,3,2,72.79753428801938,480.0,30889.05269648609,0,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03496384335939379,10651.397481546928,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +4344,2,75.0,0.0,7,111,802.0,,,54,74,0.0,0.0,,902.0,138.5589225396521,,30,2,2,1,1,2,2,2,2,0,,1,,5,104349,1,2,0,0,1,,812.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,121.38108860031038,802.0,60087.58612777981,1,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.015011420130638026,40058.39075185321,9,5,9,9_1,9_2,9_0_0 +4345,2,88.0,0.0,1,111,600.0,780.0,0.0,0,78,0.0,0.0,1023.1203260232367,1380.0,0.0,1480.8331573930354,71,0,0,0,0,0,0,0,0,0,,2,,1,104350,2,1,0,0,1,,360.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2391.59021686252,600.0,10660.34780988842,0,5,0,1,108.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.12945168624985456,10660.34780988842,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +4346,2,38.0,0.0,1,120,0.0,0.0,0.0,90,42,0.0,0.0,0.0,1562.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,104351,1,2,5,0,1,,190.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1632.0405750224,0.0,29273.410955655938,1,1,1,2,66.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05335900221419892,19515.607303770626,5,3,5,5_1,5_0,5_1_0 +4348,2,70.0,0.0,1,111,1017.0,0.0,0.0,0,90,0.0,0.0,1734.1889526093862,1017.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,104353,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,993.252042912073,1017.0,88717.18647158881,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011463393288804179,88717.18647158881,10,5,10,10_0,10_4,10_1_0 +4349,2,79.0,0.0,7,120,1200.0,0.0,0.0,77,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,104354,2,1,1,0,1,,360.0,700.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1149.84659068198,1200.0,35249.18240232779,5,5,2,3,90.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034043342801640536,23499.45493488519,6,3,6,6_1,6_1,6_0_0 +4350,2,83.0,0.0,9,112,1015.0,0.0,0.0,86,78,0.0,0.0,1730.7785515226421,1015.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,2006.0,6,104355,2,1,0,1,1,,260.0,405.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1700.79296239261,1015.0,21387.54661944095,5,5,2,3,73.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.04745752367302291,14258.364412960633,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +4351,2,61.0,0.0,2,111,198.0,82.0,0.0,0,33,0.0,0.0,337.6297075876681,280.0,0.0,155.6773319310627,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,104356,2,2,0,1,1,573.0,0.0,548.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1698.49919962972,198.0,39876.19618031495,0,1,2,3,81.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007021732933950785,39876.19618031495,9,5,9,9_0,9_3,9_0_1 +4352,2,52.0,0.0,5,111,447.0,0.0,0.0,0,37,0.0,0.0,762.2246428873113,447.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,2,,3,104357,1,1,0,1,1,720.0,0.0,490.0,32,2.0,6.0,6.0,4.0,2.5,4,4,961.658508628988,447.0,70814.62150742828,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0063122557246614785,28325.848602971313,8,4,8,8_0,8_4,8_0_0 +4353,2,56.0,0.0,5,120,558.0,0.0,0.0,56,63,0.0,423.78472864327165,951.5019032016102,998.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,104358,2,1,1,0,1,,91.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1410.82666390269,558.0,50896.63696408679,1,1,0,1,98.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019608368244530563,33931.091309391195,9,5,9,9_1,9_0,9_0_0 +4354,2,46.0,0.0,5,111,0.0,0.0,253.0,0,68,0.0,0.0,159.47052747493018,253.0,0.0,302.77323333386425,71,2,1,2,2,1,2,2,2,3,60.0,2,,3,104359,2,2,0,1,2,,120.0,219.0,12,1.0,0.0,1.0,1.0,1.0,1,1,509.889060598849,0.0,6868.219281663516,0,1,2,3,32.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.036836331168902656,6868.219281663516,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +4355,1,41.0,76.0,9,111,1200.0,1080.0,0.0,56,53,0.0,0.0,2046.2406520464733,2280.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,104360,2,1,1,0,1,,700.0,,43,2.0,0.0,8.0,6.0,2.9,3,2,1042.53944410356,1200.0,36411.80548922318,1,1,1,2,165.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06261705425936137,12555.794996283856,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +4357,0,53.0,0.0,1,111,300.0,920.0,0.0,85,37,0.0,0.0,511.56016301161833,1220.0,0.0,1746.6237241046058,41,0,0,0,0,0,0,0,0,3,50.0,2,,1,104362,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,2.0,3,2,1086.66351610284,300.0,59934.93253088509,6,1,5,0,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02035540791459674,29967.466265442545,8,4,8,8_0,8_4,8_1_0 +4358,2,53.0,0.0,2,111,430.0,130.0,0.0,56,53,0.0,0.0,733.2362336499863,560.0,0.0,246.80552623217258,50,2,1,2,1,2,2,2,2,2,20.0,2,,2,104363,2,2,0,1,1,,0.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,694.453522789119,430.0,58631.755901686,1,1,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009551138139867592,32573.19772315889,8,4,8,8_0,8_4,8_0_1 +4359,2,47.0,0.0,2,111,187.0,64.0,0.0,52,34,0.0,0.0,318.87250161057545,251.0,0.0,121.5042590681465,12,0,0,0,0,0,0,0,0,1,30.0,2,,2,104364,2,1,0,1,1,833.0,0.0,325.0,43,2.0,0.0,3.0,2.0,1.5,2,2,290.164540720944,187.0,53070.672768547294,1,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004729542455485074,35380.44851236486,9,5,9,9_0,9_3,9_0_1 +4360,2,48.0,0.0,1,300,480.0,0.0,0.0,0,64,0.0,397.2981831030672,818.4962608185893,815.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104365,1,3,4,0,2,,500.0,525.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2079.428202882,480.0,21490.9941448627,0,1,2,3,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03792286175811095,21490.9941448627,6,3,6,6_1,6_0,6_1_0 +4361,2,85.0,0.0,2,111,600.0,0.0,0.0,0,86,0.0,1324.327277010224,1023.1203260232367,1660.0,83.13535352379125,0.0,71,2,2,1,2,1,2,2,2,0,,1,,2,104366,2,1,2,0,2,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1111.66868834253,600.0,11331.564657008556,0,6,0,1,80.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.14649344995558866,11331.564657008556,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +4362,0,54.0,0.0,6,111,300.0,,,0,75,0.0,0.0,,384.0,116.38949493330776,,60,0,0,0,0,0,0,0,0,0,,1,,4,104367,2,1,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,91.03494580244833,300.0,14909.765318414953,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02575493254248101,14909.765318414953,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4363,2,57.0,0.0,6,221,1400.0,0.0,0.0,0,68,0.0,0.0,2387.2807607208856,1470.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,104368,2,2,2,0,1,,380.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1012.20870944183,1400.0,8244.12939727759,0,1,0,1,120.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.17830870055065237,8244.12939727759,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +4364,2,49.0,0.0,2,111,1250.0,0.0,0.0,0,37,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,104369,2,2,0,0,2,,601.0,950.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1634.91385688133,1250.0,72462.37667205384,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01725033123957802,72462.37667205384,10,5,10,10_0,10_4,10_0_1 +4365,2,48.0,0.0,2,111,400.0,0.0,0.0,54,45,1288.8224439667272,291.3520009422493,682.0802173488245,1842.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,104370,2,1,3,0,1,,350.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,757.313993360877,400.0,60790.7012692611,1,1,1,2,120.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030300686808023544,30395.35063463055,8,4,8,8_1,8_3,8_0_1 +4366,2,51.0,0.0,2,111,360.0,,,0,21,0.0,0.0,,510.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,,2,104371,2,1,0,0,2,,180.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,180.0637551890422,360.0,5371.193308218416,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0949509672682332,5371.193308218416,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +4367,0,67.0,0.0,6,111,248.0,0.0,0.0,0,77,0.0,0.0,422.8897347562712,248.0,0.0,0.0,71,2,1,2,1,2,2,2,2,0,,2,,4,104372,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,930.420214884535,248.0,9721.259529602197,0,5,5,0,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.025511097532661838,9721.259529602197,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +4368,2,71.0,0.0,2,111,250.0,1200.0,0.0,77,74,0.0,0.0,426.3001358430153,1450.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,104373,2,1,2,0,1,,170.0,700.0,41,0.0,2.0,5.0,2.0,1.5,2,2,297.536537345451,250.0,53398.894036232996,5,5,2,3,110.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027154120439575487,35599.262690822,9,5,9,9_1,9_2,9_0_1 +4369,1,31.0,426.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,272.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,104374,2,2,0,1,1,1000.0,404.0,379.0,31,0.0,0.0,6.0,7.0,2.8,1,1,637.947031627554,0.0,21229.718104182488,0,6,2,3,92.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01281222853102383,7582.042180065175,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4370,2,71.0,0.0,5,111,330.0,89.0,0.0,0,72,0.0,0.0,562.7161793127802,419.0,0.0,168.96686026664122,71,0,0,0,0,0,0,0,0,0,,2,,3,104375,2,2,0,1,1,562.0,0.0,216.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1108.81806003541,330.0,12542.804325314593,0,5,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03340560764025877,12542.804325314593,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +4372,2,42.0,0.0,9,111,624.0,1122.0,0.0,55,47,0.0,66.2163638505112,1064.0451390641663,1796.0,0.0,2130.121541788443,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,104377,2,1,1,0,1,,460.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,480.72510004346,624.0,41589.24021948885,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043184246466671176,19804.4001045185,5,3,5,5_1,5_4,5_0_0 +4373,2,58.0,0.0,6,300,700.0,0.0,0.0,34,31,0.0,0.0,1193.6403803604428,1500.0,1108.4713803172167,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,104378,1,2,3,0,1,,600.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,698.160399883241,700.0,159149.9409407951,1,1,0,1,102.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009425074185594644,106099.96062719672,10,5,10,10_1,10_0,10_0_0 +4374,1,47.0,416.0,2,111,520.0,900.0,0.0,85,68,0.0,0.0,886.7042825534718,1420.0,0.0,1708.65364314581,71,2,1,2,1,2,2,2,2,0,,2,,2,104379,2,1,0,1,1,938.0,800.0,401.0,42,1.0,0.0,5.0,8.0,3.8999999999999995,5,3,455.852262148425,520.0,42311.87548646344,6,1,2,3,95.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.033560318082669044,10849.198842682934,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4375,2,62.0,0.0,1,120,1006.0,0.0,0.0,77,74,2109.365702073203,0.0,1715.4317466322937,3006.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,104380,2,1,4,0,1,,383.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1272.58759676741,1006.0,35467.98846401801,6,5,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08475248048108404,23645.325642678672,6,3,6,6_1,6_0,6_1_0 +4376,2,51.0,0.0,9,111,60.0,0.0,0.0,0,56,0.0,0.0,102.31203260232367,60.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,104381,2,1,2,0,1,,62.0,62.0,12,1.0,0.0,1.0,1.0,1.0,1,1,353.92600780737,60.0,5156.287900306788,0,4,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011636278105501077,5156.287900306788,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +4377,2,48.0,0.0,1,111,440.0,2180.0,0.0,0,42,0.0,0.0,750.2882390837069,3604.0,0.0,4138.73882450874,20,1,2,2,2,1,2,2,2,2,10.0,1,,1,104382,2,1,3,0,1,,870.0,,32,1.0,0.0,6.0,3.0,2.0,3,2,1023.05438940015,440.0,39496.65980095086,0,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.09124822246141523,19748.32990047543,5,3,5,5_1,5_4,5_1_0 +4379,2,49.0,0.0,2,111,162.0,57.0,0.0,0,52,0.0,0.0,276.2424880262739,219.0,0.0,108.21473073256797,60,2,1,2,1,1,2,2,2,2,30.0,2,,2,104384,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1102.18414121524,162.0,16616.124521101243,0,1,0,1,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.013179968633593608,16616.124521101243,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +4380,0,60.0,0.0,2,211,600.0,,,0,52,0.0,0.0,,738.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,1,20.0,1,,2,104385,1,1,0,0,2,,216.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,152.29650147717697,600.0,31744.908840519092,0,1,5,0,95.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023247822310896647,31744.908840519092,8,4,8,8_1,8_2,8_0_1 +4381,2,47.0,0.0,7,112,1500.0,0.0,0.0,0,47,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,104386,2,1,1,0,1,,600.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,700.793829728993,1500.0,38902.941038282595,0,1,0,1,90.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038557496167806925,38902.941038282595,9,5,9,9_1,9_2,9_0_0 +4382,2,41.0,0.0,1,112,0.0,0.0,0.0,68,64,0.0,0.0,0.0,1989.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,104387,2,2,2,0,1,,280.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,787.827453786285,0.0,30771.767139066775,1,1,1,2,79.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0646371718273805,13379.029190898598,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4383,2,66.0,0.0,1,111,850.0,0.0,0.0,74,74,0.0,953.5156394473612,1449.420461866252,3270.0,2355.5016831740854,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104388,2,1,2,0,1,,432.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,345.537907974845,850.0,56525.66502097382,5,5,0,1,100.0,4,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05784982801682507,37683.776680649215,9,5,9,9_1,9_2,9_1_0 +4384,2,37.0,0.0,2,111,200.0,350.0,0.0,0,38,0.0,0.0,341.04010867441224,550.0,0.0,664.4764167789261,10,0,0,0,0,0,0,0,0,0,,1,,2,104389,2,2,2,0,2,,300.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,718.671384727673,200.0,5350.1024582791015,0,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.102801769552823,3566.734972186068,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +4385,1,70.0,78.0,2,111,0.0,0.0,1200.0,0,78,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,71,2,2,2,1,1,2,2,2,0,,2,,2,104390,1,1,0,0,1,,0.0,287.0,21,0.0,4.0,4.0,2.0,1.5,2,2,739.765458801291,0.0,28102.151307967084,0,5,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,1,0,1,0.042701357161214724,18734.767538644723,5,3,5,5_0,5_3,5_0_1 +4386,1,38.0,600.0,7,111,840.0,,,68,22,0.0,0.0,,1008.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,2,,5,104391,2,2,0,0,2,,1900.0,600.0,43,2.0,0.0,5.0,6.0,3.0999999999999996,4,2,98.6760508293382,840.0,19399.770345033183,4,4,2,3,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05195937797573324,6257.990433881672,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4387,2,30.0,0.0,1,111,700.0,0.0,0.0,55,68,527.3414255183008,0.0,1193.6403803604428,1200.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,,1,104392,2,1,1,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,398.728919258556,700.0,7639.490760964688,1,1,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.1570785327906422,3321.5177221585604,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +4388,2,40.0,0.0,9,111,700.0,,,52,43,0.0,0.0,,700.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,104393,2,1,0,0,1,,248.0,,43,2.0,3.0,5.0,4.0,2.3,3,2,119.30269656091917,700.0,109726.28993449226,1,1,1,2,169.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006379510329000528,47707.08258021403,10,5,10,10_1,10_2,10_0_0 +4389,2,79.0,0.0,2,111,264.0,300.0,0.0,0,78,544.2163511348864,0.0,450.1729434502241,1080.0,0.0,569.5512143819367,50,1,2,2,1,1,2,2,2,0,,2,,2,104394,2,2,0,1,1,860.0,0.0,250.0,11,0.0,6.0,3.0,1.0,1.0,1,1,343.694102670759,264.0,18619.69380625357,0,5,2,3,48.0,6,4,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05800310205086582,18619.69380625357,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +4390,1,52.0,302.0,2,111,348.0,516.0,0.0,0,54,0.0,0.0,593.4097890934773,864.0,0.0,979.6280887369311,41,0,0,0,0,0,0,0,0,3,40.0,2,,2,104395,2,2,0,1,1,681.0,0.0,288.0,12,1.0,5.0,2.0,1.0,1.0,1,1,932.441361638951,348.0,16962.984080739876,0,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050934434406561965,16962.984080739876,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +4391,2,81.0,0.0,2,111,180.0,130.0,0.0,0,78,0.0,0.0,306.936097806971,310.0,0.0,246.80552623217258,71,1,2,2,2,1,2,2,2,0,,2,,2,104396,2,3,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,484.560110924137,180.0,10721.29425000553,0,5,0,1,57.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02891441954406205,10721.29425000553,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +4392,2,61.0,0.0,2,111,1081.0,1131.0,0.0,48,75,0.0,0.0,1843.3217873851981,2212.0,0.0,2147.2080782199014,30,0,0,0,0,0,0,0,0,0,,1,,2,104397,2,1,3,0,1,,521.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,917.006733960889,1081.0,39137.937587255765,4,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05651805221132243,26091.958391503842,7,4,7,7_1,7_3,7_0_1 +4393,2,42.0,0.0,9,111,990.0,1210.0,0.0,42,48,0.0,0.0,1688.1485379383405,2200.0,0.0,2297.1898980071446,42,0,0,0,0,0,0,0,0,0,,1,2007.0,6,104398,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,852.795679908765,990.0,38920.167309078206,1,1,1,2,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05652596461184394,16921.811873512266,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +4394,2,87.0,0.0,2,111,130.0,120.0,0.0,0,86,0.0,0.0,221.67607063836795,250.0,0.0,227.8204857527747,70,0,0,0,0,0,0,0,0,0,,2,,2,104399,2,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1686.82823979257,130.0,15326.040276172356,0,5,0,1,51.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01631210642116601,15326.040276172356,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +4395,2,25.0,0.0,2,111,0.0,0.0,0.0,46,47,0.0,0.0,0.0,393.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,40.0,2,,2,104400,2,1,0,1,1,,394.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1453.54605011448,0.0,30733.429770056708,1,1,1,2,47.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012787378530166399,20488.953180037806,5,3,5,5_0,5_3,5_0_1 +4396,2,48.0,0.0,1,111,520.0,900.0,0.0,31,35,0.0,0.0,886.7042825534718,1420.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,0,,2,,1,104401,2,1,0,0,1,,0.0,1538.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1073.7200585456,520.0,67009.06216075049,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021191163615952573,44672.70810716699,10,5,10,10_0,10_4,10_1_0 +4397,2,40.0,0.0,9,111,0.0,0.0,1260.0,63,64,0.0,0.0,794.2010459225771,1260.0,0.0,1507.882505931498,50,2,2,1,1,2,2,2,1,2,10.0,2,2004.0,6,104402,2,2,0,0,1,,398.0,535.0,43,2.0,2.0,4.0,3.0,1.8,2,2,1432.59257919095,0.0,35953.35460102343,1,1,2,3,89.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03504540852953214,19974.08588945746,5,3,5,5_0,5_3,5_0_0 +4398,2,41.0,0.0,9,211,900.0,,,0,81,0.0,0.0,,1000.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,104403,2,2,0,0,2,,0.0,600.0,32,2.0,0.0,4.0,7.0,3.3999999999999995,4,2,10.546682620195273,900.0,31343.65290570761,0,4,3,4,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031904385969572235,9218.721442855182,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4399,1,66.0,124.0,2,111,0.0,0.0,380.0,85,77,0.0,0.0,239.52095035760266,380.0,0.0,454.75821607457874,71,2,2,2,1,2,2,2,2,0,,2,,2,104404,2,2,0,2,1,1545.0,0.0,295.0,41,1.0,5.0,3.0,3.0,2.0,3,3,346.220810210935,0.0,26896.57017984595,7,5,2,3,59.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01412819543380815,13448.285089922974,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +4400,1,43.0,285.0,2,111,0.0,0.0,800.0,0,42,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,104405,2,1,0,1,1,864.0,345.0,365.0,32,2.0,0.0,4.0,4.0,2.3,3,2,323.825899172311,0.0,25427.418709964582,0,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03146210038561615,11055.399439115037,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4401,2,50.0,0.0,8,112,420.0,0.0,0.0,0,34,2109.365702073203,754.8665478958276,716.1842282162656,3040.0,69.27946126982604,0.0,10,0,0,0,0,0,0,0,0,2,3.0,1,2002.0,6,104406,2,1,2,0,1,,150.0,,32,1.0,1.0,7.0,3.0,2.0,3,2,1463.99026145704,420.0,85150.1564596996,0,1,1,2,240.0,4,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0357016372769531,42575.0782298498,9,5,9,9_1,9_0,9_0_0 +4402,2,79.0,0.0,6,112,480.0,800.0,0.0,71,71,0.0,0.0,818.4962608185893,1280.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,0,,1,,4,104407,2,1,2,0,1,,200.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1938.15647126041,480.0,25469.44538743423,5,5,0,1,80.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050256296536064705,16979.630258289486,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4404,2,35.0,0.0,1,111,0.0,0.0,0.0,43,65,0.0,0.0,0.0,1550.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,60.0,1,,1,104409,2,2,5,0,2,,133.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1177.71395492526,0.0,32484.33930407724,1,1,1,2,75.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04771530014789167,21656.22620271816,6,3,6,6_1,6_3,6_1_0 +4405,1,26.0,220.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,710.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,,2,104410,2,2,0,0,1,,231.0,229.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1273.39523151871,0.0,13028.0,0,1,2,3,63.0,4,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05449800429843414,10021.538461538461,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +4406,0,91.0,0.0,1,400,600.0,0.0,0.0,0,71,0.0,794.5963662061343,1023.1203260232367,1350.0,207.83838380947813,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,104411,1,2,4,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,916.506351713283,600.0,10063.668264762615,0,5,0,1,75.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.13414591622887168,10063.668264762615,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4407,1,63.0,316.0,2,111,180.0,160.0,0.0,75,78,0.0,0.0,306.936097806971,340.0,0.0,303.7606476703662,71,2,2,1,2,2,2,2,1,0,,2,,2,104412,1,1,0,1,1,1000.0,0.0,415.0,41,1.0,5.0,5.0,3.0,2.0,3,3,307.300272157551,180.0,11664.88990825688,6,5,2,3,110.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.029147296088867007,5832.44495412844,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4408,2,43.0,0.0,1,111,261.0,1700.0,0.0,34,31,0.0,0.0,445.057341820108,1961.0,0.0,3227.4568814976415,10,0,0,0,0,0,0,0,0,2,35.0,1,,1,104413,2,2,1,0,1,,538.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,444.907801166824,261.0,114573.20197577422,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017115695172896024,49814.43564164097,10,5,10,10_1,10_4,10_1_0 +4409,2,47.0,0.0,8,111,200.0,,,85,37,0.0,0.0,,440.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104414,2,2,0,0,2,,0.0,800.0,42,1.0,0.0,4.0,3.0,2.0,3,2,118.81928359701651,200.0,91522.1004043929,6,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004807581972614789,45761.05020219645,10,5,10,10_1,10_3,10_0_0 +4410,1,39.0,335.0,1,111,206.0,685.0,0.0,0,56,0.0,0.0,351.2713119346446,891.0,0.0,1300.4752728387555,50,2,2,2,2,1,2,2,2,0,,2,,1,104415,1,3,0,1,1,,165.0,413.0,32,1.0,0.0,4.0,3.0,1.6,1,1,250.774673557175,206.0,14824.91138518508,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.06010153968882401,9265.569615740675,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +4411,1,34.0,114.0,9,120,1336.0,0.0,0.0,85,62,0.0,397.2981831030672,2278.147925945074,1706.0,96.99124577775646,0.0,43,2,2,1,1,2,2,2,2,0,,1,2005.0,6,104416,2,1,1,0,1,,290.0,,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,91.7143916300437,1336.0,32352.12608709256,6,1,1,2,89.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.052732237609590615,12443.125418112526,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +4412,2,93.0,0.0,1,111,230.0,0.0,0.0,0,77,3164.0485531098047,0.0,392.1961249755741,3255.0,34.63973063491302,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104417,2,3,4,0,1,,110.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2391.02935153459,230.0,20752.264101222503,0,5,0,1,90.0,4,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15685035541776138,20752.264101222503,5,3,5,5_1,5_2,5_1_0 +4413,2,52.0,0.0,6,120,853.0,0.0,0.0,67,47,1054.6828510366015,529.7309108040896,1454.5360634963681,2253.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,104418,2,1,3,0,1,,626.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,791.847102935961,853.0,107244.34835147278,1,1,0,1,117.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02100810005032829,42897.73934058911,9,5,9,9_1,9_0,9_0_0 +4414,0,46.0,0.0,6,112,720.0,,,53,53,0.0,0.0,,808.0,121.93185183489385,,20,0,0,0,0,0,0,0,0,2,50.0,1,,4,104419,2,1,0,0,2,,480.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,105.68211885948745,720.0,97997.2587819427,1,1,5,0,80.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008245128588728287,46665.361324734615,10,5,10,10_1,10_0,10_0_0 +4415,2,45.0,0.0,2,111,600.0,700.0,0.0,0,52,0.0,0.0,1023.1203260232367,1300.0,0.0,1328.9528335578523,50,1,2,2,2,1,2,2,2,3,45.0,2,,2,104420,1,3,0,1,1,303.0,0.0,325.0,32,3.0,0.0,3.0,4.0,2.5,4,4,207.809108867566,600.0,11980.40681570327,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.1085105055277447,4792.162726281308,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +4416,2,49.0,0.0,2,111,480.0,0.0,0.0,21,21,0.0,0.0,818.4962608185893,516.0,49.88121211427475,0.0,71,2,2,2,2,2,2,2,1,2,5.0,1,,2,104421,2,1,4,0,1,,480.0,,43,2.0,3.0,8.0,2.0,1.5,2,2,1756.45286705988,480.0,13376.03362387478,1,1,1,2,160.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03857645805248243,8917.355749249853,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +4417,2,81.0,0.0,5,111,923.0,2026.0,0.0,71,72,0.0,0.0,1573.9001015324125,2949.0,0.0,3846.3692011260123,70,0,0,0,0,0,0,0,0,0,,1,,3,104422,1,1,2,0,2,,209.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,757.845799110556,923.0,72852.75055524823,5,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04047891091996055,48568.500370165486,10,5,10,10_1,10_4,10_0_0 +4418,2,50.0,0.0,8,112,1600.0,0.0,0.0,52,45,0.0,662.163638505112,2728.320869395298,2100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,104423,1,1,1,0,1,,310.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,628.467456937142,1600.0,58930.77147317979,1,1,0,1,120.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03563503323481416,32739.317485099884,8,4,8,8_1,8_1,8_0_0 +4419,2,61.0,0.0,1,111,723.0,0.0,0.0,77,22,1455.46233443051,0.0,1232.8599928580002,2103.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,104424,2,1,1,0,1,,330.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,278.684611148164,723.0,39702.485059097206,5,1,0,1,169.0,6,5,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05296897654818537,26468.32337273147,7,4,7,7_1,7_2,7_1_0 +4420,2,46.0,0.0,1,211,1500.0,0.0,0.0,54,38,0.0,0.0,2557.8008150580918,1680.0,249.40606057137379,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,,1,104425,2,1,0,0,2,,180.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1546.27717594854,1500.0,82765.68078912939,1,1,0,1,80.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.020298268364158187,45980.93377173855,10,5,10,10_0,10_1,10_1_0 +4421,2,64.0,0.0,2,111,1000.0,0.0,0.0,85,78,2531.2388424878436,0.0,1705.2005433720612,3400.0,0.0,0.0,71,1,2,2,1,1,2,2,2,0,,1,,2,104426,1,2,2,0,2,,1100.0,,41,4.0,4.0,6.0,7.0,4.0,7,7,305.395130965167,1000.0,45997.76546092588,6,5,0,1,100.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07391663412189506,11499.44136523147,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +4422,2,39.0,0.0,9,111,1420.0,0.0,0.0,55,46,0.0,0.0,2421.3847715883267,1420.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,13.0,2,2007.0,6,104427,2,1,0,0,1,,265.0,690.0,43,2.0,0.0,4.0,3.0,1.8,2,2,471.503920468476,1420.0,39603.79324934903,1,1,2,3,85.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03585515132501457,22002.10736074946,6,3,6,6_0,6_2,6_0_0 +4423,1,64.0,66.0,2,111,600.0,0.0,0.0,0,77,0.0,0.0,1023.1203260232367,986.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104428,2,1,0,1,1,501.0,0.0,264.0,11,0.0,2.0,3.0,1.0,1.0,1,1,317.6602357826,600.0,13099.886031992644,0,5,2,3,53.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07526783039119447,13099.886031992644,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +4424,2,65.0,0.0,1,112,0.0,0.0,0.0,0,86,0.0,0.0,0.0,2508.0,1385.589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104429,2,1,2,0,1,,100.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,964.223612729469,0.0,16570.004879474396,0,5,0,1,120.0,6,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15135783110762452,16570.004879474396,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4425,2,70.0,0.0,7,112,450.0,,,75,75,0.0,0.0,,610.0,221.69427606344334,,41,0,0,0,0,0,0,0,0,0,,1,,5,104430,2,1,0,0,2,,300.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,81.24529308041659,450.0,56083.84621578833,5,5,0,1,75.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010876572153289249,37389.23081052556,9,5,9,9_1,9_1,9_0_0 +4426,2,39.0,0.0,1,112,600.0,0.0,0.0,56,52,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,104431,2,1,2,0,1,,290.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,574.532019318439,600.0,38432.75977897683,1,1,0,1,120.0,8,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0171728495116041,25621.83985265122,7,4,7,7_1,7_1,7_1_0 +4427,1,49.0,100.0,1,111,447.0,960.0,0.0,0,52,0.0,0.0,762.2246428873113,1407.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,104432,1,2,0,0,2,,250.0,475.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2475.22132095005,447.0,15046.290763971312,0,1,2,3,48.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09351141899830182,15046.290763971312,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +4428,1,35.0,330.0,6,111,900.0,0.0,0.0,85,67,0.0,0.0,1534.680489034855,1038.0,191.2113131047199,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,104433,1,1,0,0,1,,0.0,410.0,42,1.0,0.0,3.0,4.0,2.1,2,2,509.288663543556,900.0,24556.153042635557,6,4,2,3,73.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.042270464685481283,11693.406210778836,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4429,1,51.0,220.0,6,111,260.0,,,0,63,0.0,0.0,,326.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,4,104434,2,2,0,0,2,,180.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,152.55220713143925,260.0,5241.0,0,4,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0622018698721618,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4430,2,29.0,0.0,2,111,0.0,0.0,1000.0,56,63,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,50,2,2,2,1,2,2,2,2,0,,2,,2,104435,1,3,0,1,1,,0.0,560.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1829.07032412618,0.0,27618.93886854432,1,1,2,3,78.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03620703911760046,15343.854926969067,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +4431,2,65.0,0.0,5,112,700.0,0.0,0.0,77,72,1898.4291318658827,172.1625460113291,1193.6403803604428,2630.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104436,2,1,1,0,1,,165.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,737.769795051416,700.0,34791.4267716423,5,5,0,1,140.0,7,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0755933356013917,23194.2845144282,6,3,6,6_1,6_1,6_0_0 +4432,1,41.0,540.0,2,111,2000.0,240.0,0.0,48,43,0.0,0.0,3410.4010867441225,2240.0,0.0,455.6409715055494,20,2,1,2,1,2,1,2,2,1,15.0,2,,2,104437,1,3,0,1,2,960.0,0.0,536.0,43,2.0,0.0,5.0,8.0,3.8999999999999995,5,4,293.585702937555,2000.0,59418.11666837109,1,1,2,3,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03769893974428806,15235.414530351563,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +4433,1,54.0,221.0,2,111,0.0,0.0,1099.0,0,78,0.0,0.0,692.7198011658035,1099.0,0.0,1315.2086301735842,71,2,2,2,2,1,2,2,2,0,,2,,2,104438,1,2,0,0,1,,0.0,207.0,11,0.0,4.0,1.0,1.0,1.0,1,1,266.435931187483,0.0,10659.38180919742,0,7,2,3,30.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10310166383680248,10659.38180919742,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +4434,2,79.0,0.0,5,111,150.0,886.0,0.0,77,75,0.0,0.0,255.78008150580916,1036.0,0.0,1682.074586474653,41,0,0,0,0,0,0,0,0,0,,1,,3,104439,2,2,3,0,2,,790.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1340.11034077018,150.0,61401.322669684734,5,5,0,1,90.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016872600702321636,40934.21511312316,9,5,9,9_1,9_3,9_0_0 +4436,1,83.0,270.0,2,111,332.0,0.0,0.0,0,72,0.0,0.0,566.1265803995243,412.0,110.84713803172167,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,104441,2,3,0,0,2,,325.0,315.0,11,0.0,3.0,1.0,1.0,1.0,1,1,633.444595778267,332.0,9306.85884585958,0,5,2,3,28.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.044268426847721004,9306.85884585958,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4437,2,54.0,0.0,8,111,459.0,,,85,63,0.0,66.2163638505112,,605.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,104442,2,1,0,0,2,,223.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,111.12651039031593,459.0,9372.74443800457,6,4,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06454886335605697,4686.372219002285,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4438,1,43.0,495.0,5,111,500.0,950.0,0.0,0,52,0.0,0.0,852.6002716860306,1450.0,0.0,1803.5788455427996,43,0,0,0,0,0,0,0,0,1,20.0,2,,3,104443,2,1,0,0,1,,600.0,548.0,32,1.0,0.0,5.0,6.0,3.0999999999999996,4,3,1195.17934635081,500.0,58265.02574456871,0,1,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024886284378500677,18795.169595022166,5,3,5,5_0,5_2,5_0_0 +4439,2,85.0,0.0,6,111,350.0,0.0,0.0,0,75,0.0,0.0,596.8201901802214,350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,104444,2,1,0,0,1,,160.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1913.14059550009,350.0,23304.34099778655,0,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015018661116967138,23304.34099778655,6,3,6,6_0,6_3,6_0_0 +4440,2,49.0,0.0,1,111,568.0,1060.0,0.0,52,37,0.0,0.0,968.5539086353308,1628.0,0.0,2012.4142908161764,20,0,0,0,0,0,0,0,0,1,15.0,1,,1,104445,2,1,1,0,1,,360.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,1990.7605927621,568.0,76645.16167115298,1,1,0,1,80.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02124074063520088,38322.58083557649,9,5,9,9_1,9_2,9_1_0 +4441,2,62.0,0.0,5,111,456.0,1300.0,0.0,72,75,0.0,0.0,777.5714477776598,1756.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,3,104446,2,2,2,0,1,,498.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1695.83477489896,456.0,36549.975233716155,5,5,0,1,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04804380820428429,24366.65015581077,7,4,7,7_1,7_3,7_0_0 +4442,2,77.0,0.0,7,112,62.0,0.0,0.0,0,86,0.0,132.4327277010224,105.7224336890678,252.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,104447,2,1,2,0,1,,45.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1470.9131022559,62.0,19550.227539679265,0,5,0,1,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012889875552012845,19550.227539679265,5,3,5,5_1,5_0,5_0_0 +4443,2,56.0,0.0,6,112,1300.0,0.0,0.0,45,47,0.0,0.0,2216.7607063836795,1350.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,104448,2,1,2,0,1,,339.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1997.8929299855,1300.0,46384.475773842365,1,1,0,1,94.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02910456521234,30922.983849228243,8,4,8,8_1,8_1,8_0_0 +4444,2,83.0,0.0,2,120,486.0,0.0,0.0,71,71,1267.7287869459951,0.0,828.7274640788218,1718.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104449,2,1,1,0,1,,0.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,601.834154497021,486.0,22203.510174194726,5,5,0,1,98.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07737515314117707,14802.340116129817,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4445,2,70.0,0.0,5,111,250.0,,,85,75,0.0,0.0,,338.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,0,,2,,3,104450,2,2,0,0,2,,150.0,485.0,41,0.0,1.0,3.0,2.0,1.5,2,2,113.68933768881998,250.0,47729.10286653963,6,5,2,3,38.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007081633211190192,31819.40191102642,8,4,8,8_0,8_2,8_0_0 +4446,2,34.0,0.0,5,111,350.0,0.0,0.0,46,37,0.0,0.0,596.8201901802214,350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,104451,1,2,0,1,1,440.0,0.0,680.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2133.66910952659,350.0,50954.946115453684,1,1,2,3,70.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0068688130727676605,28308.30339747427,8,4,8,8_0,8_2,8_0_0 +4447,2,39.0,0.0,6,211,2100.0,0.0,0.0,52,62,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,50,2,2,2,2,2,2,2,1,2,15.0,1,,4,104452,2,1,2,0,1,,450.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1720.38541290019,2100.0,41581.26776103344,1,1,0,1,150.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.050503510669002445,27720.845174022295,7,4,7,7_1,7_1,7_0_0 +4448,2,46.0,0.0,9,111,840.0,0.0,0.0,37,53,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,2012.0,6,104453,2,1,1,0,1,,372.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,179.343329680875,840.0,67415.25687786474,1,1,1,2,144.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012460087506924672,29310.981251245543,8,4,8,8_1,8_4,8_0_0 +4449,1,28.0,352.0,6,400,1000.0,0.0,0.0,67,56,0.0,0.0,1705.2005433720612,1100.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,4,104454,2,2,0,0,1,,140.0,362.0,43,2.0,1.0,3.0,3.0,1.8,2,2,2243.66120204707,1000.0,15652.284582350512,4,1,2,3,62.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07027728087951825,8695.713656861395,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +4450,2,31.0,0.0,9,112,1100.0,0.0,0.0,42,42,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,104455,2,1,1,0,1,,240.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,774.211272154444,1100.0,55132.01081644131,1,1,1,2,140.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0199521110097432,26253.33848401967,7,4,7,7_1,7_0,7_0_0 +4451,2,42.0,0.0,5,111,280.0,0.0,0.0,46,37,0.0,0.0,477.4561521441771,280.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,3,104456,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,706.579790175262,280.0,105110.76952249874,4,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0026638564370900794,50052.74739166607,10,5,10,10_0,10_4,10_0_0 +4452,2,26.0,0.0,9,111,1200.0,,,0,43,0.0,0.0,,1250.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,104457,2,3,0,0,2,,300.0,700.0,32,2.0,0.0,3.0,3.0,1.8,2,2,103.5851666745111,1200.0,65778.17364463766,0,1,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01900326401205732,36543.42980257648,9,5,9,9_1,9_2,9_0_0 +4453,2,69.0,0.0,5,112,520.0,0.0,0.0,0,74,0.0,529.7309108040896,886.7042825534718,920.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,104458,2,1,1,0,1,,352.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,837.123100161729,520.0,64138.59771640444,0,5,0,1,140.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014343936923408847,64138.59771640444,10,5,10,10_1,10_0,10_0_0 +4454,1,43.0,254.0,2,120,480.0,0.0,0.0,0,52,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,2,,2,104459,1,3,0,1,1,767.0,0.0,287.0,12,1.0,0.0,3.0,1.0,1.0,1,1,650.144298424817,480.0,6060.0,0,4,2,3,62.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.07920792079207921,6060.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +4455,2,65.0,0.0,1,222,350.0,0.0,0.0,0,90,0.0,0.0,596.8201901802214,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104460,2,1,2,0,1,,100.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1185.52691821383,350.0,7963.561143833095,0,5,0,1,40.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04395018681699162,7963.561143833095,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4456,2,43.0,0.0,8,112,980.0,1334.0,0.0,0,48,0.0,0.0,1671.09653250462,2314.0,0.0,2532.6043999516787,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104461,2,1,1,0,1,,340.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,2144.58089872529,980.0,26989.678722525903,0,4,1,2,120.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08573647814743006,16868.549201578688,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4457,2,79.0,0.0,1,300,900.0,0.0,0.0,0,77,0.0,0.0,1534.680489034855,900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104462,1,3,4,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1053.08412054772,900.0,21662.34002031837,0,5,0,1,40.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04154675806749583,21662.34002031837,6,3,6,6_1,6_0,6_1_0 +4458,1,24.0,257.0,9,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,2328.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,104463,2,1,2,0,1,,450.0,378.0,42,1.0,0.0,4.0,4.0,2.1,2,2,351.85020044404,0.0,16611.7140802277,6,1,2,3,91.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14014207015343053,7910.340038203666,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +4459,2,32.0,0.0,2,111,460.0,0.0,0.0,46,64,0.0,0.0,784.3922499511482,460.0,0.0,0.0,43,2,2,2,1,2,2,2,2,3,40.0,2,,2,104464,1,3,0,1,1,729.0,0.0,890.0,43,2.0,0.0,4.0,5.0,2.4,2,2,775.856288536797,460.0,48365.185579741905,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009510973533670761,20152.160658225795,5,3,5,5_0,5_4,5_0_1 +4460,2,73.0,0.0,7,111,198.0,,,0,75,0.0,0.0,,221.0,31.86855218411998,,41,0,0,0,0,0,0,0,0,0,,1,,5,104465,2,2,0,0,2,,178.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,121.4833765731022,198.0,69686.39942595757,0,5,0,1,43.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0031713505335401134,69686.39942595757,10,5,10,10_1,10_2,10_0_0 +4461,1,33.0,354.0,5,111,0.0,,,0,55,0.0,0.0,,530.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,3,104466,2,1,0,0,2,,0.0,580.0,32,1.0,0.0,3.0,2.0,1.3,1,1,120.12981911320719,0.0,15517.0,0,1,3,4,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03415608687246246,11936.153846153846,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4462,2,66.0,0.0,1,111,490.0,0.0,0.0,0,77,0.0,0.0,835.54826625231,526.0,49.88121211427475,0.0,71,2,2,2,1,2,2,2,2,0,,2,,1,104467,2,3,0,0,1,,93.0,677.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1841.85340846934,490.0,20786.362516647438,0,5,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0.02530505275171333,20786.362516647438,5,3,5,5_0,5_3,5_1_0 +4463,2,25.0,0.0,9,212,0.0,0.0,0.0,56,48,0.0,0.0,0.0,1199.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,104468,2,2,5,0,1,,302.0,530.0,43,2.0,0.0,4.0,4.0,2.1,2,2,845.838272187214,0.0,20350.482456359183,1,1,2,3,98.0,2,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058917522106476286,9690.70593159961,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4464,2,45.0,0.0,1,112,2571.0,0.0,0.0,42,42,0.0,0.0,4384.07059700957,2661.0,124.70303028568689,0.0,20,2,1,2,2,1,2,2,2,2,10.0,1,,1,104469,2,1,1,0,1,,470.0,,43,2.0,1.0,8.0,5.0,2.5999999999999996,3,2,843.391380648776,2571.0,67267.09403156972,1,1,1,2,210.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.039558717948349933,25871.959242911435,7,4,7,7_1,7_0,7_1_0 +4465,2,44.0,0.0,2,111,1200.0,0.0,0.0,56,64,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,104470,2,1,1,0,1,,0.0,400.0,43,2.0,2.0,2.0,2.0,1.5,2,2,722.810086502358,1200.0,29750.9026149122,4,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040334910692710134,19833.935076608133,5,3,5,5_1,5_4,5_0_1 +4466,2,41.0,0.0,5,111,1050.0,0.0,0.0,65,37,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,104471,2,2,0,0,2,,0.0,1267.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1022.0692239295,1050.0,84558.9695964987,1,1,2,3,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012417369854557415,40266.175998332714,9,5,9,9_0,9_4,9_0_0 +4467,2,43.0,0.0,9,111,1360.0,0.0,0.0,0,47,0.0,297.97363732730037,2319.072738986003,1585.0,0.0,0.0,41,2,2,2,2,2,2,2,1,2,15.0,1,2007.0,6,104472,2,1,1,0,1,,330.0,,32,1.0,0.0,6.0,3.0,2.0,3,2,361.085437929233,1360.0,40039.34013101038,0,1,1,2,128.0,4,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03958606697347694,20019.67006550519,5,3,5,5_1,5_2,5_0_0 +4468,2,47.0,0.0,8,111,458.0,859.0,0.0,34,38,0.0,0.0,780.981848864404,1317.0,0.0,1630.8149771802787,10,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,104473,2,3,3,0,1,,380.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,1136.50426447361,458.0,163782.03183093359,1,1,0,1,110.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008041175123285152,58493.582796762,10,5,10,10_1,10_3,10_0_0 +4469,2,61.0,0.0,7,111,400.0,0.0,0.0,0,77,0.0,0.0,682.0802173488245,400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,104474,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1538.05621267939,400.0,16365.151731969363,0,5,0,1,52.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024442180955682742,16365.151731969363,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +4470,2,53.0,0.0,9,111,1359.0,0.0,0.0,52,46,0.0,0.0,2317.367538442631,1359.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2012.0,6,104475,2,1,1,0,1,,649.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,197.914729130474,1359.0,48879.05245754947,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027803321293518642,24439.526228774736,7,4,7,7_1,7_4,7_0_0 +4471,2,60.0,0.0,2,112,800.0,0.0,0.0,0,78,2058.740925223446,0.0,1364.160434697649,2914.0,224.4654545142364,0.0,70,2,2,2,1,1,2,2,1,0,,1,,2,104476,1,1,2,0,2,,193.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2383.18729561707,800.0,20668.696817145454,0,5,0,1,62.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.14098615049511629,20668.696817145454,5,3,5,5_1,5_1,5_0_1 +4472,2,66.0,0.0,2,111,250.0,0.0,0.0,0,75,0.0,0.0,426.3001358430153,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,104477,1,3,0,1,1,651.0,0.0,350.0,21,0.0,0.0,3.0,2.0,1.5,2,2,275.25943258784,250.0,39305.740928006264,0,5,2,3,63.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006360394031444631,26203.82728533751,7,4,7,7_0,7_3,7_0_1 +4473,2,61.0,0.0,1,300,1560.0,0.0,0.0,0,74,0.0,52.973091080408956,2660.1128476604154,1615.0,20.783838380947813,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,104478,2,2,3,0,1,,340.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1364.93495507605,1560.0,31631.783276278195,0,5,0,1,64.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05105624257394133,31631.783276278195,8,4,8,8_1,8_0,8_1_0 +4474,2,78.0,0.0,1,111,600.0,,,86,78,0.0,0.0,,780.0,249.40606057137379,,71,2,2,2,2,1,2,2,2,0,,1,,1,104479,2,2,0,0,2,,600.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,91.9141399889666,600.0,17227.77981651376,7,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04527571215255071,11485.186544342507,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +4475,1,59.0,350.0,6,211,0.0,,,0,77,0.0,0.0,,525.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,104480,2,1,0,0,1,,429.0,437.0,31,0.0,3.0,3.0,3.0,1.8,2,1,97.69018389833997,0.0,10958.290807666926,0,7,2,3,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.047908931165860806,6087.939337592737,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4476,1,51.0,200.0,6,111,0.0,,,0,85,0.0,0.0,,575.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,104481,2,2,0,0,1,,391.0,312.0,11,0.0,0.0,1.0,1.0,1.0,1,1,58.43193642240871,0.0,10999.563972629503,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05227479938575631,10999.563972629503,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4477,2,36.0,0.0,5,111,500.0,0.0,0.0,0,67,0.0,0.0,852.6002716860306,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,10.0,2,,3,104482,2,1,0,1,2,,0.0,540.0,12,1.0,0.0,2.0,1.0,1.0,1,1,489.05062794516,500.0,29835.161572138342,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016758749530853104,29835.161572138342,8,4,8,8_0,8_4,8_0_0 +4478,2,90.0,0.0,2,111,284.0,465.0,0.0,0,78,0.0,0.0,484.2769543176654,749.0,0.0,882.8043822920018,71,0,0,0,0,0,0,0,0,0,,2,,2,104483,2,1,0,1,2,,0.0,,21,0.0,3.0,4.0,2.0,1.5,2,2,1439.65880467087,284.0,33864.661416627605,0,5,0,1,80.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0221174513096487,22576.440944418402,6,3,6,6_0,6_2,6_0_1 +4479,2,28.0,0.0,9,111,960.0,0.0,0.0,46,34,0.0,0.0,1636.9925216371787,990.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,104484,2,1,1,0,1,,200.0,750.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1832.34058042845,960.0,50091.0759785897,1,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01976399948811547,33394.05065239313,8,4,8,8_1,8_3,8_0_0 +4480,2,51.0,0.0,1,300,900.0,0.0,0.0,0,62,0.0,0.0,1534.680489034855,1005.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104485,2,1,2,0,2,,123.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1286.15768425297,900.0,9304.50290051776,0,4,0,1,102.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1080122184651128,9304.50290051776,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4481,2,71.0,0.0,1,111,404.0,491.0,0.0,22,74,0.0,0.0,688.9010195223127,895.0,0.0,932.1654875384364,60,0,0,0,0,0,0,0,0,0,,1,,1,104486,2,2,2,0,1,,160.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1032.21833137669,404.0,51576.966383269646,5,5,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01735270727923845,34384.6442555131,9,5,9,9_1,9_3,9_1_0 +4482,2,83.0,0.0,6,111,600.0,,,0,77,0.0,0.0,,720.0,166.2707070475825,,71,2,2,1,2,1,2,2,2,0,,1,,4,104487,2,1,0,0,2,,350.0,,11,0.0,10.0,4.0,1.0,1.0,1,1,119.18501507518114,600.0,6956.088731368982,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.10350644274462864,6956.088731368982,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4483,2,57.0,0.0,2,111,600.0,1810.0,0.0,37,37,0.0,0.0,1023.1203260232367,2410.0,0.0,3436.292326771018,41,0,0,0,0,0,0,0,0,2,25.0,1,,2,104488,2,1,1,0,1,,550.0,,43,2.0,1.0,8.0,3.0,2.0,3,3,473.355134106607,600.0,145734.2581059863,1,1,0,1,175.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016536949042189587,72867.12905299314,10,5,10,10_1,10_4,10_0_1 +4484,2,61.0,0.0,2,300,318.0,0.0,0.0,0,77,0.0,0.0,542.2537727923154,607.0,400.43528613959455,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104489,2,1,2,0,1,,186.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1482.64682680645,318.0,18717.42471844222,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03242967497563513,18717.42471844222,5,3,5,5_1,5_0,5_0_1 +4485,2,54.0,0.0,2,221,695.0,0.0,0.0,0,52,0.0,417.1630922582205,1185.1143776435824,1070.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104490,2,1,2,0,1,,234.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,1068.8555385047,695.0,35498.98020601139,0,1,0,1,90.0,1,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030141710939031608,35498.98020601139,9,5,9,9_1,9_1,9_0_1 +4486,2,60.0,0.0,6,111,300.0,,,0,45,0.0,0.0,,450.0,207.83838380947813,,42,0,0,0,0,0,0,0,0,3,30.0,2,,4,104491,2,1,0,0,2,,266.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,116.5634748249648,300.0,29436.684733108283,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015287047576178716,29436.684733108283,8,4,8,8_0,8_2,8_0_0 +4487,1,47.0,80.0,8,211,1400.0,0.0,0.0,56,46,0.0,728.3800023556231,2387.2807607208856,1950.0,0.0,0.0,42,2,2,2,2,1,2,2,2,2,1.0,1,2000.0,6,104492,2,2,4,0,1,,400.0,847.0,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,1026.78124246753,1400.0,38083.10865312044,1,1,2,3,100.0,3,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.051203803181130846,14647.349481969402,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +4488,2,79.0,0.0,1,112,522.0,0.0,0.0,0,78,2425.7705573841836,66.2163638505112,890.114683640216,2972.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104493,2,1,2,0,1,,350.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,991.156752463724,522.0,26951.382203796133,0,5,0,1,115.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11027263750433514,26951.382203796133,7,4,7,7_1,7_0,7_1_0 +4489,1,51.0,153.0,2,111,250.0,200.0,0.0,0,22,0.0,0.0,426.3001358430153,450.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,104494,1,2,0,1,1,60.0,0.0,387.0,32,2.0,1.0,3.0,3.0,2.0,3,2,235.094801669081,250.0,17958.312353968413,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025058033913780288,8979.156176984206,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4490,2,28.0,0.0,6,111,1772.0,0.0,0.0,46,46,0.0,595.9472746546007,3021.6153628552925,2342.0,166.2707070475825,0.0,30,1,2,2,2,1,2,2,2,2,35.0,1,,4,104495,2,2,4,0,2,,420.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,370.761281673073,1772.0,46761.65133125665,1,1,1,2,130.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05008377448883095,31174.434220837767,8,4,8,8_1,8_3,8_0_0 +4491,1,26.0,350.0,2,111,0.0,,,0,56,0.0,0.0,,802.0,60.965925917446924,,60,0,0,0,0,0,0,0,0,0,,1,,2,104496,2,1,0,0,2,,0.0,400.0,32,1.0,0.0,2.0,2.0,1.3,1,1,107.89853294098602,0.0,12012.273866831289,0,4,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06676504456117259,9240.210666793299,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +4492,2,80.0,0.0,5,111,300.0,0.0,0.0,85,78,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,104497,1,2,0,1,2,,0.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,452.90583617277,300.0,17590.607236570653,6,5,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017054556216587212,11727.071491047102,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +4493,2,46.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,292.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,104498,2,2,0,1,2,,0.0,566.0,12,1.0,0.0,1.0,1.0,1.0,1,1,284.692709434927,0.0,13966.786505804834,0,1,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02090674185351368,13966.786505804834,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +4494,2,47.0,0.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,3140.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,104499,1,2,0,0,2,,362.0,610.0,31,1.0,1.0,3.0,5.0,2.8,4,4,2021.09292292581,0.0,7508.250079604197,0,6,2,3,54.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,0,0,0,0.4182066349294438,2681.5178855729278,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +4495,2,68.0,0.0,8,111,329.0,2000.0,0.0,86,78,0.0,0.0,561.0109787694081,2329.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,104500,2,1,1,0,1,,1000.0,,41,0.0,8.0,6.0,4.0,2.5,4,3,872.896060727803,329.0,17731.343507769772,6,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13134932493860071,7092.537403107909,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +4496,2,45.0,0.0,6,211,1200.0,,,43,53,0.0,0.0,,1200.0,0.0,,42,0,0,0,0,0,0,0,0,2,40.0,2,,4,104501,2,1,0,0,2,,642.0,660.0,43,2.0,2.0,3.0,2.0,1.5,2,2,106.06814110413335,1200.0,71039.5603256008,1,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016891996438321864,47359.70688373387,10,5,10,10_0,10_2,10_0_0 +4497,2,45.0,0.0,8,111,420.0,,,63,63,0.0,0.0,,549.0,178.7410100761512,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,104502,2,1,0,0,2,,400.0,,43,2.0,2.0,4.0,5.0,2.8,4,2,139.11305392836744,420.0,27493.832944270212,4,1,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019968114344508413,9819.226051525076,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4498,2,78.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,818.4962608185893,480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104503,2,1,0,1,1,,0.0,570.0,11,0.0,1.0,2.0,1.0,1.0,1,1,911.182917426586,480.0,10705.987012517717,0,5,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04483472653560775,10705.987012517717,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +4499,0,90.0,0.0,2,111,0.0,2100.0,0.0,0,86,0.0,0.0,0.0,6718.0,0.0,3986.858500673557,60,0,0,0,0,0,0,0,0,0,,1,,2,104504,2,2,2,0,1,,270.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1410.87898788408,0.0,15060.111571075844,0,5,0,1,120.0,8,7,7,0,1,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.44607903256855413,15060.111571075844,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +4500,2,82.0,0.0,2,111,475.0,1600.0,0.0,77,75,0.0,333.7304738065764,809.9702581017291,2327.0,0.0,3037.6064767036623,70,0,0,0,0,0,0,0,0,0,,1,,2,104505,2,1,4,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1715.77826743902,475.0,25343.568473894913,5,5,0,1,80.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09181816690088143,16895.71231592994,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +4501,0,82.0,0.0,5,111,548.0,0.0,0.0,86,86,0.0,0.0,934.4498977678895,663.0,159.34276092059991,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104506,2,1,1,0,1,,158.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1160.95165561467,548.0,11541.069537313144,5,5,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05744701544830583,7694.046358208762,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +4502,2,46.0,0.0,7,111,990.0,,,0,85,0.0,0.0,,1119.0,178.7410100761512,,71,2,2,1,2,1,2,2,2,0,,1,,5,104507,2,3,0,0,2,,192.0,,31,2.0,0.0,5.0,5.0,2.8,4,3,150.8815090061402,990.0,23737.656646933865,0,6,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04714028923088912,8477.734516762095,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4503,2,31.0,0.0,6,111,0.0,,,38,33,0.0,0.0,,290.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,104508,2,1,0,0,1,,603.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,127.84382591761137,0.0,96833.0,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0029948467980956905,64555.333333333336,10,5,10,10_1,10_2,10_0_0 +4504,2,48.0,0.0,1,300,1000.0,0.0,0.0,0,67,0.0,264.8654554020448,1705.2005433720612,1230.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,104509,2,2,3,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1707.11934890515,1000.0,25486.287513440628,0,1,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048261246340854415,25486.287513440628,7,4,7,7_1,7_0,7_1_0 +4505,2,52.0,0.0,7,111,1560.0,0.0,0.0,85,38,0.0,0.0,2660.1128476604154,1690.0,180.1265993015477,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,104510,2,1,2,0,1,,289.0,,42,1.0,1.0,5.0,3.0,2.0,3,2,1592.60540296655,1560.0,43686.29101962899,6,1,0,1,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038684904590336,21843.145509814494,6,3,6,6_1,6_3,6_0_0 +4506,2,32.0,0.0,2,111,480.0,1200.0,0.0,48,54,0.0,0.0,818.4962608185893,1680.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,104511,1,1,1,0,1,,400.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1020.95300952628,480.0,89296.45696190813,1,1,1,2,160.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0188137363693685,49609.14275661563,10,5,10,10_1,10_2,10_0_1 +4507,1,44.0,491.0,9,111,590.0,990.0,0.0,0,81,0.0,0.0,1006.0683205895161,1580.0,0.0,1879.519007460391,50,2,2,2,2,1,2,2,2,0,,1,2006.0,6,104512,1,1,1,0,1,,790.0,556.0,32,3.0,0.0,5.0,4.0,2.3,3,2,235.979321238934,590.0,16948.01250741486,0,4,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.09322627059124132,7368.701090180374,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4508,2,64.0,0.0,6,112,1323.0,0.0,0.0,75,78,0.0,0.0,2255.980318881237,1383.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,104513,2,1,2,0,2,,260.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1942.4250605829,1323.0,19764.206022375758,6,5,0,1,89.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06997498399046523,13176.137348250506,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +4509,2,67.0,0.0,1,112,730.0,0.0,0.0,75,74,2425.7705573841836,0.0,1244.7963966616046,3030.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,104514,2,1,2,0,1,,274.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,638.921445511485,730.0,48421.060325624385,5,5,0,1,200.0,10,2,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06257607701326041,32280.70688374959,8,4,8,8_1,8_1,8_1_0 +4510,2,68.0,0.0,5,112,540.0,912.0,0.0,52,75,0.0,0.0,920.8082934209131,2119.0,0.0,1731.4356917210876,44,0,0,0,0,0,0,0,0,0,,1,,3,104515,2,1,1,0,1,,275.0,,42,1.0,7.0,5.0,2.0,1.5,2,2,1478.05650176546,540.0,58239.32172080398,1,5,0,1,95.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03638435231368879,38826.214480535986,9,5,9,9_1,9_2,9_0_0 +4511,1,46.0,343.0,2,111,400.0,800.0,0.0,0,85,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,42,2,2,2,2,1,2,2,2,0,,2,,2,104516,2,1,0,0,1,,440.0,334.0,31,0.0,0.0,4.0,5.0,2.4,2,1,347.953960003808,400.0,12933.710193290259,0,6,2,3,68.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.09278080164673361,5389.045913870941,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4512,2,90.0,0.0,1,221,1138.0,0.0,0.0,0,75,0.0,0.0,1940.5182183574057,1222.0,116.38949493330776,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,104517,2,1,2,0,1,,147.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1649.96766775797,1138.0,24896.046662488057,0,5,0,1,80.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.049084098233204226,24896.046662488057,7,4,7,7_1,7_1,7_1_0 +4513,1,26.0,90.0,2,111,500.0,0.0,0.0,0,55,0.0,0.0,852.6002716860306,568.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,,2,104518,2,1,0,1,1,229.0,0.0,346.0,12,1.0,0.0,1.0,1.0,1.0,1,1,947.182303863397,500.0,16676.223406688063,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034060469576834854,16676.223406688063,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +4514,2,76.0,0.0,5,111,0.0,0.0,883.0,78,78,0.0,0.0,556.5710504362188,958.0,103.91919190473907,1056.714486299613,71,1,2,2,1,2,2,2,2,0,,1,,3,104519,2,2,2,0,1,,322.0,560.0,41,0.0,1.0,4.0,2.0,1.5,2,2,1064.58381933652,0.0,21534.507895855262,5,5,2,3,70.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04448673750210869,14356.338597236841,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +4515,2,66.0,0.0,7,211,1500.0,,,54,22,0.0,0.0,,1546.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,0,,1,,5,104520,2,1,0,0,2,,200.0,3.0,43,2.0,2.0,4.0,2.0,1.5,2,2,67.23825539832274,1500.0,53667.88313379392,1,1,2,3,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028806800449830028,35778.58875586261,9,5,9,9_1,9_2,9_0_0 +4516,2,51.0,0.0,2,111,450.0,120.0,0.0,63,56,0.0,0.0,767.3402445174275,570.0,0.0,227.8204857527747,42,0,0,0,0,0,0,0,0,3,60.0,2,,2,104521,1,3,0,1,2,439.0,0.0,550.0,43,2.0,3.0,2.0,2.0,1.5,2,2,247.254915693315,450.0,47274.46742582116,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012057248469152883,31516.311617214105,8,4,8,8_0,8_4,8_0_1 +4517,2,27.0,0.0,9,111,950.0,0.0,0.0,47,38,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,104522,2,2,1,0,1,,190.0,810.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1177.88685793203,950.0,62365.92673350821,1,1,2,3,80.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015232676715594771,41577.28448900548,9,5,9,9_1,9_3,9_0_0 +4518,1,52.0,139.0,9,111,400.0,,,0,52,0.0,0.0,,488.0,121.93185183489385,,71,2,2,1,2,1,2,2,2,0,,2,2007.0,6,104523,2,2,0,0,2,,252.0,142.0,12,1.0,0.0,1.0,1.0,1.0,1,1,135.76182969215049,400.0,3384.618466907041,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.14418168687886054,3384.618466907041,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4519,2,70.0,0.0,6,111,160.0,772.0,0.0,0,78,0.0,0.0,272.8320869395298,932.0,0.0,1465.6451250095172,71,0,0,0,0,0,0,0,0,0,,2,,4,104524,1,2,0,0,1,,0.0,237.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2141.86596777344,160.0,17062.52900067496,0,5,2,3,59.0,6,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05462261778210791,17062.52900067496,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +4520,1,54.0,288.0,8,112,420.0,,,81,62,0.0,0.0,,490.0,96.99124577775646,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104525,2,2,0,0,2,,440.0,389.0,43,2.0,0.0,3.0,3.0,1.8,2,2,90.87911469197765,420.0,18322.81954153159,4,4,2,3,92.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02674260906676164,10179.344189739772,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +4521,2,60.0,0.0,5,111,341.0,1419.0,0.0,77,78,0.0,0.0,581.4733852898729,1760.0,0.0,2693.9772440265606,70,0,0,0,0,0,0,0,0,0,,1,,3,104526,2,1,1,0,1,,334.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1200.3658217813,341.0,32006.663066104527,5,5,0,1,103.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05498855023921138,21337.775377403017,6,3,6,6_1,6_2,6_0_0 +4522,2,34.0,0.0,2,112,1200.0,0.0,0.0,46,47,0.0,198.6490915515336,2046.2406520464733,1380.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,2,104527,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,3206.57801465826,1200.0,51576.529570834005,1,1,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026756356262876122,24560.25217658762,7,4,7,7_1,7_1,7_0_1 +4523,2,73.0,0.0,1,120,980.0,0.0,0.0,71,71,0.0,158.91927324122688,1671.09653250462,1160.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104528,2,1,1,0,1,,278.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,233.365736067924,980.0,29922.096606688556,5,5,0,1,190.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03876733690314677,19948.064404459037,5,3,5,5_1,5_0,5_1_0 +4524,2,52.0,0.0,7,111,2400.0,0.0,0.0,0,37,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,104529,2,1,2,0,1,,250.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,2245.13399125987,2400.0,49001.79912932742,0,1,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04897779352276084,32667.866086218277,8,4,8,8_1,8_3,8_0_0 +4525,1,37.0,413.0,5,111,0.0,,,0,68,0.0,0.0,,300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,2,,3,104530,2,2,0,0,2,,0.0,500.0,32,1.0,0.0,2.0,3.0,1.6,1,1,187.56580294893337,0.0,10021.406216899508,0,4,2,3,30.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029935918523499996,6263.378885562192,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4526,2,61.0,0.0,5,111,0.0,0.0,470.0,77,77,0.0,0.0,296.24959649492956,470.0,0.0,562.4641093554,50,0,0,0,0,0,0,0,0,0,,2,,3,104531,2,1,0,1,1,528.0,0.0,334.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1547.07651788966,0.0,29035.784118664364,6,5,2,3,74.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01618692293892216,19357.18941244291,5,3,5,5_0,5_3,5_0_0 +4527,2,50.0,0.0,2,111,620.0,760.0,0.0,0,43,0.0,0.0,1057.224336890678,1380.0,0.0,1442.8630764342397,33,0,0,0,0,0,0,0,0,2,90.0,2,,2,104532,2,1,0,1,1,1164.0,0.0,512.0,32,1.0,3.0,4.0,2.0,1.5,2,1,186.001215287461,620.0,36306.57745928067,0,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03800964168400966,24204.38497285378,7,4,7,7_0,7_4,7_0_1 +4528,2,72.0,0.0,5,111,1271.0,0.0,0.0,75,75,0.0,0.0,2167.3098906258897,1341.0,96.99124577775646,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,104533,2,1,2,0,1,,732.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,283.013101867107,1271.0,47618.66021078003,5,5,0,1,120.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02816122910775262,31745.77347385335,8,4,8,8_1,8_2,8_0_0 +4529,2,60.0,0.0,2,400,1660.0,0.0,0.0,37,34,0.0,0.0,2830.6329019976215,1710.0,69.27946126982604,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,104534,2,1,1,0,1,,149.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1141.57054736292,1660.0,55197.63975429491,4,1,0,1,140.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030979585496985772,27598.819877147456,7,4,7,7_1,7_0,7_0_1 +4530,1,64.0,226.0,6,211,0.0,,,0,78,0.0,0.0,,729.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,104535,2,2,0,0,1,,202.0,333.0,11,0.0,3.0,1.0,1.0,1.0,1,1,116.27982775299365,0.0,9478.713394495015,0,5,2,3,38.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0769091721270298,9478.713394495015,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4531,2,47.0,0.0,7,112,3360.0,0.0,0.0,67,64,2636.7071275915036,0.0,5729.473825730125,5988.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,104536,2,1,2,0,1,,550.0,,43,3.0,0.0,6.0,5.0,3.0,5,4,1492.70181915342,3360.0,45874.1515566835,1,1,1,2,150.0,9,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1305310244833857,15291.383852227833,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +4532,2,41.0,0.0,7,111,360.0,,,0,63,0.0,0.0,,510.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,1,20.0,3,,5,104537,2,2,0,0,2,,0.0,200.0,12,1.0,5.0,1.0,1.0,1.0,1,1,47.43316462840856,360.0,8719.070819672132,0,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05849247133643282,8719.070819672132,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +4533,2,86.0,0.0,2,111,360.0,,,0,71,0.0,0.0,,498.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,104538,1,2,0,0,2,,120.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,91.87591063952193,360.0,11429.525192972484,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04357136377862822,11429.525192972484,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +4535,2,35.0,0.0,1,111,600.0,0.0,0.0,43,38,949.2145659329414,0.0,1023.1203260232367,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,2,,1,104540,1,1,0,1,2,,0.0,1400.0,43,2.0,0.0,3.0,4.0,2.1,2,2,811.594382828065,600.0,122989.18692214214,1,1,2,3,55.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012196194133306772,58566.27948673435,10,5,10,10_0,10_4,10_1_0 +4536,2,58.0,0.0,5,111,957.0,0.0,0.0,52,37,0.0,0.0,1631.8769200070626,957.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,50.0,1,,3,104541,2,1,2,0,1,,224.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,713.638020930592,957.0,49129.19130931653,1,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019479254074726057,32752.79420621102,8,4,8,8_1,8_4,8_0_0 +4537,2,37.0,0.0,7,111,268.0,,,0,47,0.0,0.0,,406.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,2,90.0,1,,5,104542,2,2,0,0,2,,804.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,113.05822095894565,268.0,19869.189393146207,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020433646887479364,15283.991840881697,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4538,1,31.0,35.0,2,111,280.0,0.0,0.0,85,65,1310.9707838384957,0.0,477.4561521441771,1589.0,91.44888887617039,0.0,71,2,1,2,1,1,2,2,2,2,60.0,2,,2,104543,2,1,0,1,1,,0.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,563.013714028019,280.0,25816.771164185306,6,1,1,2,104.0,7,6,8,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.061549137570091006,14342.650646769614,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +4539,2,83.0,0.0,2,111,350.0,60.0,0.0,0,75,0.0,0.0,596.8201901802214,410.0,0.0,113.91024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,104544,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1043.7205214452,350.0,54180.02854545563,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007567364045517634,54180.02854545563,10,5,10,10_0,10_4,10_0_1 +4540,2,25.0,0.0,1,112,0.0,0.0,0.0,84,68,0.0,0.0,0.0,1094.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,1,104545,1,2,0,0,2,,432.0,500.0,42,1.0,0.0,2.0,2.0,1.5,2,2,2207.26919060182,0.0,21142.983876369555,3,1,2,3,40.0,9,0,9,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.051742933088205614,14095.32258424637,3,2,3_0,3_0_0,3_0_0,3_1_0_0 +4541,2,32.0,0.0,1,400,900.0,0.0,0.0,67,55,527.3414255183008,264.8654554020448,1534.680489034855,1672.0,99.7624242285495,0.0,31,2,1,2,1,1,2,2,2,2,30.0,1,,1,104546,2,1,3,0,1,,180.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1352.72612012768,900.0,33109.479876609505,4,1,1,2,160.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05049913215885943,18394.15548700528,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4542,2,50.0,0.0,1,400,690.0,0.0,0.0,0,21,1054.6828510366015,0.0,1176.5883749267223,1690.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,104547,2,1,2,0,1,,264.0,,32,2.0,0.0,5.0,3.0,2.0,3,2,1059.54406860092,690.0,28513.42292569415,0,1,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05927033048273903,14256.711462847075,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4543,1,35.0,350.0,7,111,420.0,,,0,55,0.0,0.0,,948.0,731.5911110093631,,50,0,0,0,0,0,0,0,0,0,,1,,5,104548,2,1,0,0,2,,120.0,700.0,32,1.0,0.0,3.0,3.0,1.6,1,1,161.20709261018825,420.0,9432.283302687112,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10050588702418739,5895.177064179445,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4544,1,22.0,244.0,2,400,308.0,0.0,0.0,0,69,0.0,0.0,525.2017673585948,404.0,133.01656563806603,0.0,43,2,2,2,2,1,2,2,2,2,5.0,2,,2,104549,1,1,0,1,1,772.0,210.0,232.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1815.09563963856,308.0,27103.675198933368,0,1,2,3,44.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.014905727619400446,27103.675198933368,7,4,7,7_0,7_0,7_0_1 +4545,2,68.0,0.0,1,112,440.0,1045.0,0.0,0,74,0.0,0.0,750.2882390837069,1485.0,0.0,1983.9367300970796,10,0,0,0,0,0,0,0,0,0,,1,,1,104550,2,1,1,0,1,,441.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,647.020829712887,440.0,38795.65234180049,0,5,0,1,150.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038277484985088976,38795.65234180049,9,5,9,9_1,9_0,9_1_0 +4546,2,64.0,0.0,5,120,491.0,0.0,0.0,78,65,1318.3535637957518,0.0,837.253466795682,1781.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,104551,2,1,1,0,1,,311.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1808.65512687236,491.0,23431.209414302535,5,4,0,1,90.0,0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07600973421853624,15620.80627620169,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4547,2,72.0,0.0,2,111,400.0,300.0,0.0,77,74,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,60,2,2,2,1,2,1,2,2,0,,2,,2,104552,1,1,0,1,2,750.0,0.0,653.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1071.823493225,400.0,53039.7727993411,5,5,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013197643260053632,35359.848532894066,9,5,9,9_0,9_4,9_0_1 +4548,1,48.0,117.0,9,112,1200.0,0.0,0.0,67,68,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,104553,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1336.99573686128,1200.0,37171.14102034127,4,1,1,2,126.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032283109074949315,17700.54334301965,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +4549,2,68.0,0.0,6,111,560.0,,,72,71,0.0,0.0,,800.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,4,104554,2,2,0,0,2,,360.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,97.59860530646782,560.0,24548.389462460716,5,5,0,1,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03258869593964021,16365.592974973812,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4550,2,80.0,0.0,2,120,1100.0,0.0,0.0,0,77,0.0,0.0,1875.7205977092674,1280.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104555,2,2,2,0,1,,200.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,2628.31846205924,1100.0,16080.90956435934,0,5,0,1,55.0,0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07959748762202526,16080.90956435934,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +4551,2,30.0,0.0,9,300,1045.0,0.0,0.0,54,64,0.0,622.4338201948052,1781.934567823804,1515.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,104556,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1346.82266342692,1045.0,36853.55272571278,4,1,1,2,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04110865541988797,17549.31082176799,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4552,2,83.0,0.0,9,112,900.0,0.0,0.0,0,71,0.0,0.0,1534.680489034855,952.0,72.05063972061909,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,104557,2,1,1,0,1,,200.0,,21,0.0,3.0,4.0,2.0,1.5,2,2,1792.91693527014,900.0,22341.443335109972,0,5,0,1,90.0,8,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0426113920090344,14894.295556739982,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4553,1,87.0,270.0,7,111,120.0,1400.0,0.0,0,86,0.0,0.0,204.62406520464734,1520.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,2,,5,104558,2,1,0,0,1,,0.0,333.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1519.64463674014,120.0,7714.813186813187,0,6,2,3,48.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.19702356534026164,7714.813186813187,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4554,1,28.0,397.0,2,111,1560.0,60.0,0.0,0,85,0.0,0.0,2660.1128476604154,1620.0,0.0,113.91024287638734,50,2,2,2,2,1,2,2,2,0,,2,,2,104559,1,2,0,0,1,,371.0,646.0,31,0.0,0.0,3.0,3.0,1.6,1,1,1279.60025912461,1560.0,10231.231616219025,0,6,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.15833870845342807,6394.519760136891,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4555,2,43.0,0.0,1,111,0.0,0.0,0.0,46,62,0.0,0.0,0.0,3470.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,104560,2,2,2,0,1,,238.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,603.738586513463,0.0,52149.61950786314,1,1,1,2,150.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06653931577538724,18624.864109951122,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +4556,1,43.0,254.0,7,112,0.0,0.0,951.0,0,62,0.0,0.0,599.4326941844214,951.0,0.0,1138.0922723340116,50,2,2,2,2,1,2,2,2,0,,2,,5,104561,1,2,0,0,1,,335.0,400.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2715.98248252821,0.0,21542.79331538748,0,4,2,3,59.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.04414469312671372,16571.379473374986,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +4557,2,57.0,0.0,5,111,400.0,350.0,0.0,85,62,0.0,0.0,682.0802173488245,750.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,60.0,2,,3,104562,2,1,0,1,1,871.0,0.0,386.0,42,5.0,2.0,5.0,6.0,3.5,6,6,749.724877023188,400.0,83543.88895856614,6,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00897731730410545,23869.682559590325,6,3,6,6_0,6_4,6_0_0 +4558,2,35.0,0.0,9,400,2900.0,0.0,0.0,54,46,0.0,0.0,4945.081575778978,2972.0,99.7624242285495,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,104563,2,1,1,0,1,,626.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1996.01510635534,2900.0,46148.650621868575,1,1,1,2,130.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06440058289790278,21975.54791517551,6,3,6,6_1,6_1,6_0_0 +4559,2,74.0,0.0,2,112,653.0,0.0,0.0,77,78,0.0,132.4327277010224,1113.495954821956,828.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104564,2,2,1,0,1,,134.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1193.75122638448,653.0,21387.275093153195,5,5,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03871460933632781,14258.183395435464,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4560,2,34.0,0.0,1,111,550.0,0.0,0.0,0,64,0.0,0.0,937.8602988546337,550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,104565,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,502.717878791233,550.0,16828.461573710214,0,1,1,2,35.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03268272608229512,16828.461573710214,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +4562,1,43.0,357.0,7,111,0.0,,,0,63,0.0,0.0,,125.0,173.19865317456512,,71,0,0,0,0,0,0,0,0,0,,2,,5,104567,2,2,0,0,2,,0.0,550.0,32,1.0,2.0,1.0,2.0,1.3,1,1,149.1823830064137,0.0,4060.0363636363636,0,4,2,3,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03078790158619269,3123.104895104895,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +4563,0,86.0,0.0,1,222,140.0,0.0,0.0,0,71,843.7462808292812,874.0560028267478,238.72807607208856,1750.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104568,2,2,4,0,1,,120.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1563.71426104986,140.0,13277.108330474759,0,5,0,1,80.0,1,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1318058086475991,13277.108330474759,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4564,2,48.0,0.0,8,111,1200.0,0.0,0.0,0,47,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2003.0,6,104569,1,2,0,0,1,,396.0,650.0,32,1.0,0.0,2.0,3.0,2.0,3,2,1089.09000630415,1200.0,27714.79025034082,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04329818083271415,13857.39512517041,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +4565,2,56.0,0.0,5,111,890.0,0.0,0.0,90,46,0.0,0.0,1517.6284836011343,890.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,104570,2,1,0,0,1,400.0,0.0,490.0,42,1.0,1.0,3.0,2.0,1.5,2,2,201.221959953648,890.0,53381.47065486792,5,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016672451865445935,35587.647103245276,9,5,9,9_0,9_4,9_0_0 +4566,2,50.0,0.0,7,111,2000.0,0.0,0.0,74,38,0.0,66.2163638505112,3410.4010867441225,2050.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,5,104571,2,2,1,0,1,,400.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,874.377086353767,2000.0,113081.24155292584,5,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018128559360046738,75387.49436861723,10,5,10,10_1,10_4,10_0_0 +4567,0,30.0,0.0,1,111,840.0,0.0,0.0,53,46,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,104572,2,1,1,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1818.72966585573,840.0,65388.014465657514,1,1,5,0,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012846390991749368,36326.674703143064,9,5,9,9_1,9_3,9_1_0 +4568,2,67.0,0.0,1,120,660.0,1760.0,0.0,86,78,0.0,39.72981831030672,1125.4323586255605,2450.0,0.0,3341.3671243740287,50,0,0,0,0,0,0,0,0,0,,1,,1,104573,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,216.625337526907,660.0,26018.05579866228,6,5,0,1,88.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0941653757282651,17345.37053244152,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4569,2,49.0,0.0,1,111,338.0,0.0,0.0,85,64,0.0,0.0,576.3577836597567,423.0,117.77508415870429,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,104574,2,1,0,0,1,,428.0,348.0,42,1.0,0.0,2.0,2.0,1.5,2,2,3847.3423581773,338.0,19768.63870060623,6,1,2,3,48.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02139752799402562,13179.09246707082,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +4570,2,60.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1843.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104575,2,2,5,0,1,,340.0,205.0,11,0.0,3.0,3.0,1.0,1.0,1,1,279.901432513473,0.0,10542.291014975803,0,6,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1748196855296382,10542.291014975803,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +4571,1,56.0,44.0,2,111,360.0,110.0,0.0,0,77,0.0,0.0,613.872195613942,470.0,0.0,208.8354452733768,50,2,2,2,2,1,2,2,2,0,,2,,2,104576,1,3,0,1,1,408.0,0.0,317.0,31,0.0,0.0,3.0,2.0,1.5,2,2,365.64898414152,360.0,15507.852179401581,0,7,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.030307227239648373,10338.568119601054,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +4572,2,75.0,0.0,8,221,720.0,,,75,78,0.0,0.0,,892.0,238.3213467682016,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,104577,2,2,0,0,2,,1800.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,87.52851394772053,720.0,68336.99999999999,5,5,0,1,180.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01305295813395379,45557.99999999999,10,5,10,10_1,10_1,10_0_0 +4573,2,63.0,0.0,9,111,1400.0,0.0,0.0,68,64,0.0,0.0,2387.2807607208856,1480.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,104578,2,1,1,0,1,,844.0,925.0,43,2.0,6.0,4.0,2.0,1.5,2,2,1579.66899259014,1400.0,51921.09510097472,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028504791686726493,34614.063400649815,9,5,9,9_1,9_3,9_0_0 +4574,2,92.0,0.0,1,221,313.0,0.0,0.0,72,72,3164.0485531098047,0.0,533.7277700754552,3429.0,160.72835014599644,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104579,2,1,2,0,1,,631.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2495.25588878677,313.0,19155.15040214949,5,5,0,1,100.0,1,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17901190687676435,12770.10026809966,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +4575,2,83.0,0.0,2,111,400.0,0.0,0.0,0,78,1582.0242765549024,0.0,682.0802173488245,2040.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104580,2,1,2,0,1,,350.0,,11,0.0,6.0,6.0,1.0,1.0,1,1,1475.03922745806,400.0,14167.67145726301,0,5,0,1,130.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14398978732346315,14167.67145726301,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +4576,2,60.0,0.0,9,111,1000.0,,,85,55,0.0,0.0,,1088.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,104581,2,1,0,0,2,,700.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,158.15579838890216,1000.0,112158.55175949524,6,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00970055321624542,74772.3678396635,10,5,10,10_1,10_2,10_0_0 +4577,2,51.0,0.0,7,111,360.0,810.0,0.0,0,54,0.0,0.0,613.872195613942,1170.0,0.0,1537.788278831229,50,1,2,2,1,2,2,2,2,2,10.0,1,,5,104582,2,2,2,0,1,,260.0,362.0,32,1.0,1.0,4.0,2.0,1.5,2,2,687.548466337273,360.0,42757.607959977584,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027363551326237787,28505.07197331839,8,4,8,8_1,8_4,8_0_0 +4578,2,81.0,0.0,2,111,451.0,1292.0,0.0,77,78,0.0,0.0,769.0454450607996,1743.0,0.0,2452.8672299382074,71,0,0,0,0,0,0,0,0,0,,1,,2,104583,2,2,1,0,2,,548.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,484.068560078316,451.0,41064.81123461325,5,5,0,1,96.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04244509952917639,20532.405617306624,5,3,5,5_1,5_2,5_0_1 +4579,1,39.0,200.0,5,111,300.0,300.0,0.0,0,65,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,8,,3,104584,2,1,0,0,1,,350.0,330.0,32,1.0,0.0,3.0,3.0,1.8,2,1,2133.75390561018,300.0,11941.374967979054,0,4,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05024547019157404,6634.097204432808,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4581,2,26.0,0.0,1,111,0.0,0.0,800.0,69,69,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,43,0,0,0,0,0,0,0,0,1,10.0,2,,1,104586,2,1,0,0,1,,450.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,779.683661081401,0.0,35667.034040753046,1,1,1,2,43.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022429675511732274,19815.01891152947,5,3,5,5_0,5_2,5_1_0 +4582,1,46.0,307.0,6,400,319.0,,,63,85,0.0,0.0,,515.0,271.5754881777181,,71,2,2,2,2,1,2,2,2,0,,1,,4,104587,1,2,0,0,2,,197.0,400.0,42,1.0,1.0,2.0,2.0,1.5,2,2,121.3434191239727,319.0,10976.897938400627,4,7,3,4,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.04691671571422457,7317.931958933751,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +4583,2,84.0,0.0,2,111,280.0,1370.0,0.0,0,77,0.0,0.0,477.4561521441771,1650.0,0.0,2600.950545677511,50,0,0,0,0,0,0,0,0,0,,1,,2,104588,2,1,3,0,2,,230.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,921.395384224285,280.0,21055.060186232666,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07836595979330852,21055.060186232666,5,3,5,5_1,5_4,5_0_1 +4584,2,75.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,501.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104589,2,1,0,1,1,894.0,0.0,281.0,41,1.0,0.0,3.0,3.0,2.0,3,3,1278.3963165305,0.0,4514.86212970783,6,5,2,3,70.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11096684363923671,2257.431064853915,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +4585,2,44.0,0.0,1,120,410.0,0.0,0.0,34,34,316.40485531098045,595.9472746546007,699.1322227825451,1220.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,1,104590,2,2,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,196.876792089134,410.0,55521.789998360444,1,1,0,1,110.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021973354966329912,26438.947618266877,7,4,7,7_1,7_0,7_1_0 +4586,2,57.0,0.0,6,111,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1030.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104591,1,3,3,0,1,,180.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1300.41878569858,1000.0,21641.44510488516,0,5,0,1,90.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047593864227093434,21641.44510488516,6,3,6,6_1,6_2,6_0_0 +4587,2,49.0,0.0,5,112,2900.0,0.0,0.0,64,54,0.0,0.0,4945.081575778978,2900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,3,104592,2,3,3,0,1,,800.0,1056.0,43,3.0,2.0,5.0,4.0,2.5,4,4,1179.66074049928,2900.0,80041.60489286258,1,1,2,3,140.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03623115758213135,32016.64195714503,8,4,8,8_1,8_1,8_0_0 +4588,2,34.0,0.0,5,111,383.0,861.0,0.0,43,37,0.0,0.0,653.0918081114994,1244.0,0.0,1634.6119852761583,31,0,0,0,0,0,0,0,0,1,4.0,8,,3,104593,2,1,0,0,1,,253.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1601.31792683684,383.0,44326.50356789383,1,1,1,2,100.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028064473844515967,29551.002378595887,8,4,8,8_0,8_2,8_0_0 +4589,2,58.0,0.0,1,111,476.0,879.0,0.0,0,35,0.0,331.081819252556,811.6754586451011,1605.0,0.0,1668.7850581390746,31,2,2,2,2,1,2,2,2,0,,1,,1,104594,2,3,3,0,1,,183.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1189.0866593127,476.0,35208.031298016744,0,1,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.045586189878512436,35208.031298016744,9,5,9,9_1,9_3,9_1_0 +4590,2,70.0,0.0,1,112,1500.0,1500.0,0.0,0,77,0.0,0.0,2557.8008150580918,3000.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,104595,2,1,2,0,1,,450.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1246.69596273125,1500.0,22997.26043312723,0,5,0,1,90.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1304503207555341,22997.26043312723,6,3,6,6_1,6_1,6_1_0 +4591,1,25.0,314.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,321.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104596,2,1,0,1,1,420.0,0.0,291.0,32,1.0,0.0,3.0,2.0,1.3,1,1,605.545111421693,0.0,5578.899350510867,0,4,2,3,67.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.057538231079685205,4291.461038854513,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4592,2,62.0,0.0,1,120,1850.0,0.0,0.0,0,71,0.0,0.0,3154.621005238313,2050.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104597,2,1,4,0,1,,257.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,104.845404842619,1850.0,22224.290190065472,0,5,0,1,175.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09224141614729162,22224.290190065472,6,3,6,6_1,6_0,6_1_0 +4593,2,56.0,0.0,7,111,470.0,0.0,0.0,0,52,0.0,0.0,801.4442553848687,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,5,104598,2,1,0,0,1,,92.0,376.0,12,1.0,0.0,2.0,1.0,1.0,1,1,867.062982954509,470.0,23814.834274556528,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019735598181430225,23814.834274556528,6,3,6,6_0,6_4,6_0_0 +4594,2,41.0,0.0,6,111,500.0,0.0,0.0,55,67,0.0,0.0,852.6002716860306,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,104599,2,1,0,1,1,1140.0,0.0,439.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1184.27778491566,500.0,34319.41509560054,1,4,2,3,90.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014569012863628198,16342.578616952636,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +4595,1,22.0,200.0,9,111,662.0,0.0,0.0,0,38,0.0,0.0,1128.8427597123045,662.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,104600,2,1,0,0,1,,0.0,486.0,12,1.0,0.0,2.0,1.0,1.0,1,1,728.087165722878,662.0,13499.169708619624,0,1,2,3,46.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04904005315062401,13499.169708619624,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +4596,1,66.0,270.0,5,111,160.0,350.0,0.0,0,77,0.0,0.0,272.8320869395298,510.0,0.0,664.4764167789261,70,2,2,2,2,1,2,2,2,0,,2,,3,104601,1,2,0,0,1,,0.0,381.0,11,0.0,3.0,3.0,1.0,1.0,1,1,509.73275875709,160.0,10462.919839285752,0,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04874356373113674,10462.919839285752,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4597,2,47.0,0.0,6,111,2960.0,0.0,0.0,23,37,0.0,0.0,5047.393608381301,2960.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,104602,2,1,2,0,1,,772.0,,43,2.0,0.0,6.0,4.0,2.3,4,2,479.112058805737,2960.0,80183.7876413286,1,1,1,2,143.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036915193046759325,34862.51636579505,9,5,9,9_1,9_4,9_0_0 +4598,2,50.0,0.0,1,112,0.0,0.0,0.0,34,31,0.0,0.0,0.0,1948.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,104603,2,1,2,0,2,,584.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,606.617751105062,0.0,7040.940996277746,1,1,1,2,110.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2766675648936452,2816.3763985110986,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +4599,2,24.0,0.0,2,111,246.0,420.0,0.0,85,21,0.0,0.0,419.479333669527,666.0,0.0,797.3717001347114,50,2,1,2,1,1,2,2,2,2,5.0,2,,2,104604,1,2,0,1,2,44.0,0.0,421.0,42,1.0,0.0,3.0,3.0,1.8,2,2,398.73927453736,246.0,15381.454601208325,6,1,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04329889579803986,8545.252556226847,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +4600,1,46.0,134.0,2,111,0.0,0.0,820.0,85,56,0.0,0.0,516.8609981400899,820.0,0.0,981.3203610030382,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,104605,2,3,0,0,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,370.631082859701,0.0,19164.37780323809,6,1,1,2,54.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.042787718360543354,7985.157418015871,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4601,2,48.0,0.0,1,111,0.0,0.0,0.0,53,68,0.0,0.0,0.0,1744.0,0.0,0.0,50,2,2,2,2,2,1,2,2,1,10.0,1,,1,104606,1,2,2,0,2,,527.0,990.0,43,2.0,0.0,6.0,7.0,3.6,5,3,135.703773305523,0.0,21123.279472669303,1,1,2,3,120.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08256293736285138,5867.577631297028,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +4602,1,38.0,196.0,6,111,383.0,,,85,68,0.0,0.0,,543.0,221.69427606344334,,60,0,0,0,0,0,0,0,0,0,,2,,4,104607,2,1,0,0,2,,282.0,424.0,42,1.0,0.0,4.0,7.0,3.8,6,5,174.61961413961598,383.0,26822.805629392806,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02024396729792401,7058.633060366528,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4603,2,66.0,0.0,6,211,800.0,,,0,22,0.0,0.0,,800.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,104608,2,1,0,0,2,,400.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,90.89114220444327,800.0,31392.496375667135,0,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02548379684197698,31392.496375667135,8,4,8,8_1,8_2,8_0_0 +4604,2,72.0,0.0,2,111,120.0,,,0,77,0.0,0.0,,200.0,110.84713803172167,,44,0,0,0,0,0,0,0,0,0,,1,,2,104609,2,1,0,0,2,,260.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,104.97224777582264,120.0,32330.347230342544,0,5,0,1,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0061861383230767415,32330.347230342544,8,4,8,8_1,8_2,8_0_1 +4605,2,49.0,0.0,2,111,847.0,792.0,0.0,62,45,0.0,0.0,1444.3048602361357,1639.0,0.0,1503.615205968313,50,2,1,2,1,1,2,2,2,2,25.0,2,,2,104610,1,3,0,1,1,2000.0,0.0,589.0,43,2.0,0.0,4.0,4.0,2.1,2,2,987.419474965817,847.0,22256.10553321773,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0736427133468502,10598.145492008443,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +4606,2,51.0,0.0,7,111,1100.0,0.0,0.0,42,38,0.0,860.8127300566456,1875.7205977092674,1750.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,,5,104611,2,1,1,0,1,,804.0,,43,2.0,0.0,6.0,5.0,3.0,5,4,473.954827102988,1100.0,131330.14785726543,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013325196297669338,43776.71595242181,10,5,10,10_1,10_4,10_0_0 +4607,2,51.0,0.0,7,111,300.0,,,52,52,0.0,0.0,,576.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,104612,1,2,0,0,2,,194.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,98.79951125401492,300.0,9762.430596432374,4,4,0,1,93.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05900169986463166,4881.215298216187,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +4608,2,63.0,0.0,1,111,670.0,1350.0,0.0,78,78,0.0,0.0,1142.484364059281,2020.0,0.0,2562.980464718715,60,0,0,0,0,0,0,0,0,0,,1,,1,104613,2,1,2,0,1,,320.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,446.279328199451,670.0,26148.25491837231,5,5,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07725180920508412,17432.16994558154,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +4609,1,34.0,380.0,2,111,500.0,1000.0,0.0,0,85,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,71,1,2,2,1,1,2,2,2,0,,2,,2,104614,2,2,0,0,1,,0.0,348.0,31,1.0,0.0,4.0,3.0,1.8,2,1,595.737598175378,500.0,5655.670345358841,0,7,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.2652205500681154,3142.0390807549115,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4610,1,39.0,467.0,2,111,380.0,,,85,46,0.0,0.0,,580.0,277.1178450793042,,50,0,0,0,0,0,0,0,0,0,,8,,2,104615,2,3,0,0,2,,500.0,505.0,42,1.0,0.0,4.0,5.0,2.4,2,2,63.12038170377205,380.0,23004.114425154246,6,4,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025212881021222402,9585.047677147602,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4611,2,65.0,0.0,5,300,879.0,70.0,0.0,78,75,0.0,132.4327277010224,1498.8712776240418,1049.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,0,,1,,3,104616,2,1,2,0,2,,186.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1894.69838684535,879.0,31301.395333286782,5,5,0,1,54.0,0,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03351288301465794,20867.596888857854,5,3,5,5_1,5_0,5_0_0 +4612,2,65.0,0.0,2,111,433.0,1780.0,0.0,0,56,0.0,0.0,738.3518352801025,2213.0,0.0,3379.3372053328244,70,0,0,0,0,0,0,0,0,0,,1,,2,104617,2,1,2,0,1,,220.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,386.593098880225,433.0,9492.06562063616,0,1,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2331420881866685,9492.06562063616,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +4613,1,27.0,90.0,9,111,400.0,600.0,0.0,0,35,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,104618,2,1,0,0,1,,250.0,860.0,22,1.0,0.0,3.0,2.0,1.5,2,2,478.074962692115,400.0,34667.29877051225,0,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028845627881760223,23111.532513674832,6,3,6,6_0,6_3,6_0_0 +4614,1,76.0,167.0,2,211,635.0,,,0,77,0.0,0.0,,887.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,104619,2,2,0,0,1,,360.0,172.0,11,0.0,1.0,1.0,1.0,1.0,1,1,100.26478617228588,635.0,10610.22912225631,0,5,2,3,28.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08359857169713746,10610.22912225631,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +4615,0,23.0,0.0,1,112,0.0,0.0,0.0,0,68,0.0,0.0,0.0,657.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,104620,2,1,1,0,1,,201.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,993.242709415664,0.0,15506.107721059503,0,4,5,0,78.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.042370400865182976,15506.107721059503,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4616,2,50.0,0.0,7,300,1800.0,0.0,0.0,43,43,0.0,331.081819252556,3069.36097806971,3120.0,1482.5804711742774,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,104621,2,1,2,0,1,,649.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,2264.91839054909,1800.0,86717.55075421892,4,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03597887593531011,30970.553840792472,8,4,8,8_1,8_0,8_0_0 +4617,1,52.0,255.0,2,112,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1423.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104622,1,1,0,0,2,,132.0,373.0,31,0.0,0.0,3.0,2.0,1.5,2,1,1532.42053955081,0.0,9097.910531697251,0,7,2,3,56.0,4,0,7,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.15640953986547215,6065.273687798167,1,1,1_1,1_0_1,1_0_1,1_0_1_1 +4618,2,48.0,0.0,7,211,394.0,,,55,68,0.0,0.0,,526.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,104623,2,3,0,0,2,,258.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,99.81073512767937,394.0,42000.0,1,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012523809523809524,18260.869565217392,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4619,2,37.0,0.0,9,120,810.0,0.0,0.0,52,53,0.0,754.8665478958276,1381.2124401313695,1380.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,104624,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,179.281273686072,810.0,46161.865944083256,1,1,1,2,105.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029894805415180144,21981.84092575393,6,3,6,6_1,6_0,6_0_0 +4620,2,45.0,0.0,6,111,240.0,420.0,0.0,0,53,0.0,0.0,409.2481304092947,660.0,0.0,797.3717001347114,10,1,2,2,2,2,2,2,1,3,15.0,2,,4,104625,1,1,0,0,2,,0.0,249.0,12,1.0,3.0,1.0,1.0,1.0,1,1,1105.96187260948,240.0,18384.585296434892,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03589964034315129,18384.585296434892,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +4621,2,58.0,0.0,6,211,900.0,,,85,31,0.0,0.0,,984.0,116.38949493330776,,10,0,0,0,0,0,0,0,0,2,6.0,1,,4,104626,2,1,0,0,1,,300.0,,42,2.0,0.0,8.0,5.0,3.0,5,5,107.92136435137674,900.0,66662.33367049161,6,1,0,1,300.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014760959387708505,22220.77789016387,6,3,6,6_1,6_2,6_0_0 +4622,1,38.0,310.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,288.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,104627,1,3,0,1,1,110.0,369.0,282.0,32,1.0,3.0,4.0,2.0,1.3,1,1,268.974782320131,0.0,9412.799948743015,0,4,2,3,47.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030596634536831892,7240.615345186934,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4623,2,39.0,0.0,5,111,230.0,0.0,0.0,0,54,0.0,0.0,392.1961249755741,230.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,2,,3,104628,2,1,0,1,1,480.0,0.0,412.0,12,1.0,0.0,2.0,1.0,1.0,1,1,565.679006928589,230.0,20073.211621885148,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011458056853704403,20073.211621885148,5,3,5,5_0,5_3,5_0_0 +4624,2,62.0,0.0,5,300,745.0,0.0,0.0,77,38,0.0,0.0,1270.3744048121855,2216.0,2038.2017505582824,0.0,42,2,2,1,1,2,2,2,2,0,,1,,3,104629,2,1,2,0,1,,208.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1769.09778690017,745.0,10332.487637010205,5,5,0,1,96.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.21446916539850988,6888.325091340136,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4625,2,82.0,0.0,2,111,240.0,120.0,0.0,0,77,0.0,0.0,409.2481304092947,360.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,104630,1,1,0,1,2,534.0,0.0,370.0,11,0.0,7.0,2.0,1.0,1.0,1,1,2151.07215490079,240.0,18244.717727989566,0,5,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.019731738543025918,18244.717727989566,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4626,2,41.0,0.0,9,111,1340.0,0.0,0.0,46,38,0.0,0.0,2284.968728118562,1340.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,2004.0,6,104631,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,684.522193150304,1340.0,61450.32762015438,4,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021806230363538518,34139.07090008577,9,5,9,9_0,9_4,9_0_0 +4627,0,54.0,0.0,5,111,684.0,,,56,67,0.0,66.2163638505112,,872.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,104632,2,1,0,0,2,,258.0,,43,2.0,2.0,4.0,4.0,2.5,3,2,86.57365307306519,684.0,33169.13416901283,4,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02628950142493129,13267.653667605133,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +4628,2,80.0,0.0,6,400,1590.0,0.0,0.0,0,74,0.0,0.0,2711.268863961577,1620.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,104633,2,1,1,0,1,,372.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,2393.4295907953,1590.0,46421.81697340378,0,5,0,1,140.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03489738458380762,46421.81697340378,10,5,10,10_1,10_1,10_0_0 +4629,2,56.0,0.0,1,120,792.0,0.0,0.0,54,42,3164.0485531098047,0.0,1350.5188303506725,3842.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,104634,2,1,1,0,1,,192.0,,43,3.0,1.0,8.0,6.0,2.8999999999999995,3,2,326.050624028497,792.0,70056.68201662597,1,1,1,2,220.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05484130691613699,24157.476557457238,6,3,6,6_1,6_0,6_1_0 +4630,2,40.0,0.0,2,111,1000.0,600.0,0.0,43,54,0.0,0.0,1705.2005433720612,1600.0,0.0,1139.1024287638734,31,2,2,2,2,2,2,1,2,3,1.0,1,,2,104635,2,3,1,0,1,,340.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,231.252998002255,1000.0,50459.98071767827,1,1,1,2,83.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03170829590585737,28033.322620932373,7,4,7,7_1,7_2,7_0_1 +4631,1,46.0,220.0,9,111,620.0,,,0,53,0.0,0.0,,624.0,5.542356901586084,,43,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,104636,2,2,0,0,2,,900.0,450.0,32,2.0,0.0,5.0,5.0,2.5999999999999996,3,3,83.4213339019624,620.0,36053.67722536142,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01730752722113617,13866.798932831316,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +4632,2,29.0,0.0,2,111,600.0,84.0,0.0,63,55,0.0,0.0,1023.1203260232367,684.0,0.0,159.4743400269423,20,0,0,0,0,0,0,0,0,3,45.0,2,,2,104637,1,2,0,1,2,675.0,0.0,649.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1791.87852759526,600.0,41719.391717282975,1,1,2,3,62.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016395253426397423,19866.37700822999,5,3,5,5_0,5_3,5_0_1 +4634,2,60.0,0.0,6,112,1044.0,0.0,0.0,22,62,0.0,834.326184516441,1780.229367280432,1770.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104639,2,1,3,0,2,,688.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,893.377540745,1044.0,37123.87523995774,1,1,0,1,100.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04767821216290713,18561.93761997887,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4635,2,42.0,0.0,2,111,444.0,1125.0,0.0,0,37,0.0,0.0,757.1090412571951,1569.0,0.0,2135.8170539322628,12,0,0,0,0,0,0,0,0,2,40.0,1,,2,104640,2,2,2,0,1,,348.0,,32,1.0,0.0,5.0,4.0,1.9,1,1,549.521976349099,444.0,64591.58857618478,0,1,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024291088585774428,33995.5729348341,9,5,9,9_1,9_4,9_0_1 +4636,2,64.0,0.0,1,111,600.0,790.0,0.0,72,72,0.0,0.0,1023.1203260232367,1390.0,0.0,1499.8181978724333,50,0,0,0,0,0,0,0,0,0,,1,,1,104641,2,1,1,0,1,,350.0,340.0,41,0.0,2.0,4.0,2.0,1.5,2,2,258.320180757945,600.0,13327.32935684287,5,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10429696473932411,8884.886237895247,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +4637,2,52.0,0.0,2,211,850.0,700.0,0.0,52,62,0.0,0.0,1449.420461866252,1550.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,104642,1,3,0,0,1,,288.0,311.0,43,2.0,1.0,4.0,2.0,1.5,2,2,341.59208328793,850.0,31758.597118821337,1,1,2,3,75.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04880568225985687,21172.398079214225,5,3,5,5_0,5_1,5_0_1 +4638,2,74.0,0.0,5,400,1715.0,0.0,0.0,78,75,0.0,0.0,2924.418931883085,1715.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104643,2,1,2,0,1,,285.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1796.90648155163,1715.0,53198.994967886305,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03223745112168498,35465.99664525754,9,5,9,9_1,9_0,9_0_0 +4639,2,50.0,0.0,9,111,360.0,,,0,45,0.0,0.0,,456.0,133.01656563806603,,10,0,0,0,0,0,0,0,0,2,75.0,1,2011.0,6,104644,2,1,0,0,1,,678.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,223.8936035539207,360.0,35299.054732408214,0,1,1,2,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01291819295040058,35299.054732408214,9,5,9,9_1,9_2,9_0_0 +4640,2,52.0,0.0,2,120,630.0,1400.0,0.0,68,62,0.0,0.0,1074.2763423243985,2030.0,0.0,2657.9056671157045,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,104645,2,2,2,0,1,,900.0,,43,2.0,7.0,5.0,2.0,1.5,2,2,261.617849682652,630.0,39102.776345587896,1,1,1,2,90.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.051914472314164774,26068.517563725265,7,4,7,7_1,7_0,7_0_1 +4641,1,31.0,468.0,2,300,220.0,,,0,52,0.0,0.0,,308.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,2,104646,2,3,0,0,2,,440.0,600.0,32,1.0,0.0,3.0,4.0,1.9,1,1,101.9469520931869,220.0,16553.887969925196,0,4,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01860590095568901,8712.572615750103,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +4642,2,38.0,0.0,9,112,1624.0,0.0,0.0,46,47,0.0,1854.0581878143134,2769.2456824362275,3078.0,74.82181817141213,0.0,42,0,0,0,0,0,0,0,0,2,19.0,1,2006.0,6,104647,2,1,1,0,1,,384.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,798.16442797225,1624.0,52463.98593997755,1,1,1,2,120.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05866881718673541,24982.850447608358,7,4,7,7_1,7_0,7_0_0 +4643,2,38.0,0.0,7,111,0.0,0.0,0.0,47,90,0.0,0.0,0.0,2295.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,70.0,2,,5,104648,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,693.86478185704,0.0,69672.62477668497,1,1,1,2,103.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0329397666207631,33177.44036984998,8,4,8,8_0,8_4,8_0_0 +4644,2,67.0,0.0,5,111,983.0,954.0,0.0,78,78,0.0,0.0,1676.212134134736,1937.0,0.0,1811.1728617345586,71,0,0,0,0,0,0,0,0,0,,1,,3,104649,2,1,1,0,1,,144.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2203.42387829555,983.0,50507.35837163503,5,5,0,1,98.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038350847528937894,33671.57224775669,9,5,9,9_1,9_3,9_0_0 +4645,1,51.0,307.0,2,111,300.0,84.0,0.0,0,85,0.0,0.0,511.56016301161833,384.0,0.0,159.4743400269423,71,0,0,0,0,0,0,0,0,0,,2,,2,104650,2,1,0,1,1,672.0,0.0,347.0,31,0.0,0.0,3.0,2.0,1.5,2,2,234.65718038306,300.0,9379.749083283317,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04093926144403678,6253.1660555222115,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4646,2,53.0,0.0,9,111,1600.0,0.0,0.0,55,38,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,104651,2,1,1,0,1,,660.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,242.18622131415,1600.0,92108.03336880429,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017370906114057776,46054.016684402144,10,5,10,10_1,10_4,10_0_0 +4647,2,27.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,1811.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,104652,2,2,0,0,1,,135.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1860.96316517715,0.0,24601.868182220216,0,1,2,3,40.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.07361229588689572,24601.868182220216,7,4,7,7_0,7_3,7_1_0 +4648,2,69.0,0.0,9,120,1000.0,0.0,0.0,77,74,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2005.0,6,104653,2,1,1,0,1,,300.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,913.627986286845,1000.0,46386.84552139393,5,5,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021557835820907312,30924.56368092929,8,4,8,8_1,8_0,8_0_0 +4650,2,65.0,0.0,5,112,900.0,0.0,0.0,78,78,0.0,331.081819252556,1534.680489034855,1240.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104655,2,1,1,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,477.507085355221,900.0,32472.214197499365,5,5,0,1,90.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03818649361137469,21648.14279833291,6,3,6,6_1,6_1,6_0_0 +4651,2,64.0,0.0,5,111,2744.0,0.0,0.0,74,72,0.0,132.4327277010224,4679.070291012936,2875.0,42.95326598729215,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,104656,2,1,1,0,2,,334.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,800.157074415274,2744.0,47968.5725254422,5,5,0,1,145.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05993507516770735,31979.0483502948,8,4,8,8_1,8_3,8_0_0 +4652,2,52.0,0.0,5,112,500.0,0.0,0.0,78,21,1582.0242765549024,0.0,852.6002716860306,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104657,2,1,1,0,1,,160.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1177.11770307305,500.0,22902.866128575366,5,1,0,1,100.0,4,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0873253150401402,15268.577419050243,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4653,2,30.0,0.0,2,111,1000.0,0.0,0.0,84,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,2,104658,2,1,0,0,1,,0.0,418.0,42,1.0,0.0,2.0,2.0,1.5,2,2,2008.10978091936,1000.0,28000.571681280453,3,1,2,3,45.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035713556543866626,18667.047787520303,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4654,2,75.0,0.0,7,211,180.0,,,0,77,0.0,0.0,,180.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,104659,2,2,0,0,2,,160.0,320.0,11,0.0,2.0,2.0,1.0,1.0,1,1,107.19181195259962,180.0,20099.313401127958,0,5,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008955529793863434,20099.313401127958,5,3,5,5_0,5_2,5_0_0 +4655,2,76.0,0.0,2,111,1788.0,0.0,0.0,0,75,0.0,0.0,3048.8985715492454,1788.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,,2,104660,2,1,2,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,181.127177032456,1788.0,23552.54093351972,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07591537596927973,23552.54093351972,6,3,6,6_1,6_4,6_0_1 +4656,2,40.0,0.0,9,111,400.0,,,43,45,0.0,0.0,,520.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,2,60.0,1,2005.0,6,104661,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,150.7441673867193,400.0,75726.0228924253,1,1,1,2,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006866860032233574,36060.01090115491,9,5,9,9_1,9_2,9_0_0 +4657,2,54.0,0.0,9,211,1200.0,0.0,0.0,55,47,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,104662,2,1,1,0,1,,267.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1585.97586129504,1200.0,46567.95975156119,1,1,1,2,90.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025768790524686235,31045.30650104079,8,4,8,8_1,8_1,8_0_0 +4658,2,52.0,0.0,7,111,480.0,,,56,63,0.0,264.8654554020448,,932.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,104663,2,2,0,0,2,,572.0,,43,2.0,2.0,4.0,4.0,2.3,3,3,129.0425542335468,480.0,48976.88731636085,1,1,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01902938408437122,21294.298833200373,6,3,6,6_1,6_2,6_0_0 +4659,2,52.0,0.0,6,112,1632.0,0.0,0.0,52,48,0.0,529.7309108040896,2782.8872867832038,2032.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,,4,104664,2,1,2,0,1,,232.0,,43,2.0,2.0,7.0,3.0,2.0,3,3,1442.99143863683,1632.0,59745.2070942634,1,1,0,1,144.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0340110964347985,29872.6035471317,8,4,8,8_1,8_0,8_0_0 +4660,2,67.0,0.0,5,112,414.0,0.0,0.0,56,77,0.0,0.0,705.9530249560333,2614.0,3048.296295872346,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,104665,2,2,4,0,1,,219.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1333.3732658137,414.0,65640.10177591801,5,5,0,1,98.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03982321674216267,43760.06785061201,10,5,10,10_1,10_0,10_0_0 +4661,2,77.0,0.0,7,111,411.0,0.0,0.0,86,86,0.0,927.0290939071567,700.8374233259171,3111.0,2771.178450793042,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,104666,2,1,2,0,1,,276.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2251.63965851413,411.0,54017.123197267065,5,5,0,1,160.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05759284863503056,36011.41546484471,9,5,9,9_1,9_3,9_0_0 +4662,2,55.0,0.0,7,111,1180.0,0.0,0.0,0,75,3164.0485531098047,158.91927324122688,2012.1366411790323,4300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,104667,2,1,2,0,1,,520.0,,31,1.0,0.0,6.0,3.0,2.0,3,3,1471.05333772586,1180.0,27884.5935549809,0,7,0,1,200.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15420701727359085,13942.29677749045,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4663,2,29.0,0.0,1,111,1800.0,0.0,0.0,21,46,0.0,662.163638505112,3069.36097806971,2300.0,0.0,0.0,31,1,2,2,1,1,2,2,2,2,15.0,1,,1,104668,2,2,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1403.16943663094,1800.0,37795.463973129445,1,1,1,2,82.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.06085386335342191,17997.839987204497,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +4664,2,32.0,0.0,7,111,300.0,,,0,33,0.0,0.0,,366.0,91.44888887617039,,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,104669,2,1,0,0,2,,240.0,636.0,32,1.0,0.0,3.0,2.0,1.5,2,1,104.19286652595798,300.0,38051.01335210391,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009618666304974061,25367.34223473594,7,4,7,7_0,7_3,7_0_0 +4665,1,36.0,368.0,7,111,460.0,640.0,0.0,65,53,0.0,0.0,784.3922499511482,1100.0,0.0,1215.0425906814648,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,104670,2,2,5,0,1,,336.0,765.0,43,2.0,0.0,5.0,7.0,2.9999999999999996,2,2,1083.05643060321,460.0,43478.34785478862,1,1,2,3,94.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02529994938339977,14492.782618262876,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +4666,2,60.0,0.0,7,111,0.0,0.0,1200.0,75,52,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,50,0,0,0,0,0,0,0,0,1,20.0,1,,5,104671,2,2,2,0,1,,120.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,216.345580459698,0.0,40479.88608512949,5,1,0,1,72.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029644352196950146,26986.59072341966,7,4,7,7_1,7_2,7_0_0 +4667,0,77.0,0.0,2,211,150.0,,,0,86,0.0,0.0,,238.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,104672,1,2,0,0,1,,140.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,87.47377919369562,150.0,7545.736660929431,0,6,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03154098939502148,7545.736660929431,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +4668,2,57.0,0.0,5,111,1620.0,0.0,0.0,47,56,0.0,0.0,2762.424880262739,1740.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,104673,2,1,1,0,1,,258.0,,43,3.0,2.0,8.0,5.0,2.8,4,3,869.262104112064,1620.0,54435.77329108018,1,1,0,1,110.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03196427449823911,19441.34760395721,5,3,5,5_1,5_2,5_0_0 +4669,2,38.0,0.0,5,111,700.0,200.0,0.0,42,45,0.0,0.0,1193.6403803604428,900.0,0.0,379.7008095879578,20,2,1,2,2,1,2,2,2,3,90.0,2,,3,104674,1,3,0,1,1,756.0,0.0,807.0,43,2.0,0.0,4.0,4.0,2.1,2,2,615.879830293456,700.0,49485.01184720217,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0181873251395591,23564.291355810557,6,3,6,6_0,6_4,6_0_0 +4670,2,89.0,0.0,2,111,350.0,700.0,0.0,0,77,0.0,0.0,596.8201901802214,1050.0,0.0,1328.9528335578523,41,0,0,0,0,0,0,0,0,0,,1,,2,104675,2,2,2,0,2,,220.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,564.541046579136,350.0,25148.997077146727,0,5,0,1,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04175116792049536,25148.997077146727,7,4,7,7_1,7_3,7_0_1 +4671,2,53.0,0.0,7,111,2400.0,,,0,31,0.0,0.0,,2400.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,104676,2,1,0,0,2,,419.0,,32,1.0,1.0,4.0,2.0,1.5,2,1,47.42011570329166,2400.0,144742.55443736174,0,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01658116377266656,96495.03629157449,10,5,10,10_1,10_2,10_0_0 +4672,2,48.0,0.0,5,111,213.0,711.0,0.0,0,68,0.0,0.0,363.207715738249,924.0,0.0,1349.83637808519,60,0,0,0,0,0,0,0,0,2,10.0,2,,3,104677,2,1,0,0,1,635.0,204.0,371.0,32,2.0,2.0,3.0,2.0,1.5,2,2,373.16929058109,213.0,20197.86656186257,0,1,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04574740590398237,13465.244374575048,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +4673,2,55.0,0.0,8,111,400.0,700.0,0.0,68,56,0.0,0.0,682.0802173488245,1100.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,1,5.0,2,2002.0,6,104678,2,1,0,0,1,,400.0,550.0,43,3.0,2.0,5.0,3.0,2.0,3,3,129.2324876155,400.0,45594.44662337154,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024125745161169346,22797.22331168577,6,3,6,6_0,6_3,6_0_0 +4674,0,56.0,0.0,2,120,300.0,200.0,0.0,0,77,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,70,2,1,2,2,2,2,2,1,0,,2,,2,104679,2,1,0,1,1,,300.0,,31,0.0,2.0,4.0,2.0,1.5,2,2,269.54220636868,300.0,29910.712175393033,0,5,5,0,75.0,0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016716419089858395,19940.474783595357,5,3,5,5_0,5_1,5_0_1 +4675,2,30.0,0.0,1,111,300.0,1237.0,0.0,45,45,0.0,0.0,511.56016301161833,1537.0,0.0,2348.449507301519,10,2,2,2,2,1,2,2,2,2,5.0,2,,1,104680,2,1,0,0,1,,540.0,510.0,43,2.0,0.0,3.0,3.0,1.8,2,2,564.376292136383,300.0,44409.74398179684,1,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.03460952174437219,24672.079989887134,7,4,7,7_0,7_4,7_1_0 +4676,1,45.0,323.0,9,111,660.0,,,0,42,0.0,0.0,,900.0,332.541414095165,,71,2,2,2,1,1,2,2,2,0,,1,2009.0,6,104681,1,1,0,0,2,,330.0,,32,1.0,4.0,5.0,4.0,2.1,2,1,176.47784166927292,660.0,17818.660600102536,0,4,1,2,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.05050884688801026,8485.076476239303,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4677,1,22.0,173.0,5,111,0.0,,,0,56,0.0,0.0,,919.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,3,104682,2,2,0,0,2,,406.0,460.0,22,2.0,3.0,4.0,2.0,1.5,2,2,69.7075136174704,0.0,22290.192622950817,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041228894498370694,14860.128415300545,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +4678,2,29.0,0.0,8,111,1035.0,0.0,0.0,0,31,0.0,0.0,1764.8825623900834,1035.0,0.0,0.0,20,2,2,2,2,2,2,2,1,1,20.0,2,,6,104683,1,1,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,832.495074102968,1035.0,6203.970585489605,0,1,0,1,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.16682864396887206,6203.970585489605,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +4679,2,48.0,0.0,2,111,579.0,1687.0,0.0,46,37,0.0,0.0,987.3111146124235,2266.0,0.0,3202.776328874424,42,0,0,0,0,0,0,0,0,3,40.0,1,,2,104684,2,1,2,0,1,,720.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,382.215256943159,579.0,83928.63069149462,1,1,1,2,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026999129871776138,32280.24257365178,8,4,8,8_1,8_4,8_0_1 +4680,2,63.0,0.0,5,112,800.0,0.0,0.0,74,34,0.0,264.8654554020448,1364.160434697649,1060.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,2,8.0,1,,3,104685,2,1,1,0,2,,700.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,3516.05503055052,800.0,75594.12042788486,5,1,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014022254561599362,50396.080285256576,10,5,10,10_1,10_1,10_0_0 +4681,2,45.0,0.0,1,300,3000.0,0.0,0.0,43,31,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,104686,2,1,1,0,1,,214.0,,43,2.0,0.0,8.0,7.0,3.6,5,3,853.848472785976,3000.0,220123.63202513964,1,1,1,2,250.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01362870479829889,61145.45334031656,10,5,10,10_1,10_0,10_1_0 +4682,2,55.0,0.0,9,111,680.0,0.0,0.0,38,54,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2007.0,6,104687,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1292.74842463239,680.0,40771.33769646721,1,4,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01667838335505291,27180.89179764481,7,4,7,7_0,7_4,7_0_0 +4683,2,44.0,0.0,1,300,530.0,0.0,0.0,85,62,1803.5076752725886,0.0,903.7562879871924,2240.0,0.0,0.0,50,1,2,2,2,1,2,2,2,2,25.0,1,,1,104688,2,1,2,0,1,,390.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,1309.8722945795,530.0,45468.01705118626,6,1,1,2,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04926539896117063,22734.00852559313,6,3,6,6_1,6_0,6_1_0 +4685,2,40.0,0.0,2,111,1800.0,0.0,0.0,54,21,0.0,662.163638505112,3069.36097806971,2360.0,83.13535352379125,0.0,50,2,2,2,1,1,2,2,2,2,10.0,1,,2,104690,2,3,2,0,1,,140.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1199.93242834582,1800.0,39491.780745492484,1,1,1,2,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0.0597592702949807,16454.9086439552,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +4686,2,40.0,0.0,7,111,2040.0,0.0,0.0,0,42,0.0,0.0,3478.6091084790046,2040.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,5,104691,2,1,0,0,1,,0.0,1200.0,22,2.0,0.0,4.0,2.0,1.5,2,2,950.052378349954,2040.0,25787.402209374686,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07910839499988036,17191.601472916456,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +4687,2,57.0,0.0,6,211,857.0,0.0,0.0,0,52,0.0,0.0,1461.3568656698565,925.0,94.22006732696343,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,4,104692,2,1,1,0,1,,250.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1689.8515931153,857.0,17840.316013475618,0,1,1,2,81.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05184885734654614,17840.316013475618,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4688,1,59.0,351.0,5,120,200.0,700.0,0.0,85,52,0.0,0.0,341.04010867441224,900.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,1,20.0,2,,3,104693,2,1,0,0,1,,0.0,430.0,42,3.0,0.0,4.0,5.0,3.0,5,5,1227.30415060842,200.0,17528.757382465752,6,1,2,3,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05134419858536475,5842.919127488584,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +4689,2,66.0,0.0,9,111,1200.0,0.0,0.0,74,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2004.0,6,104694,2,1,0,0,1,,0.0,1414.0,41,0.0,0.0,5.0,2.0,1.5,2,2,1692.45212006553,1200.0,59658.970458128395,5,5,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020114326324860383,39772.6469720856,9,5,9,9_0,9_4,9_0_0 +4690,2,61.0,0.0,2,111,750.0,500.0,0.0,0,77,0.0,0.0,1278.9004075290459,1250.0,0.0,949.2520239698945,70,2,1,2,1,1,2,2,2,0,,2,,2,104695,2,2,0,1,1,400.0,170.0,472.0,21,0.0,0.0,4.0,2.0,1.5,2,2,546.676733720748,750.0,35052.226630486446,0,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03566107263818786,23368.151086990965,6,3,6,6_0,6_3,6_0_1 +4691,1,25.0,243.0,5,111,500.0,0.0,0.0,63,54,0.0,0.0,852.6002716860306,620.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,1,10.0,2,,3,104696,1,1,0,1,1,737.0,0.0,371.0,43,2.0,1.0,4.0,2.0,1.5,2,2,374.696022186602,500.0,23109.4763641861,4,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026828820793224236,15406.317576124065,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +4692,2,63.0,0.0,2,111,252.0,120.0,0.0,0,33,0.0,0.0,429.7105369297594,372.0,0.0,227.8204857527747,20,0,0,0,0,0,0,0,0,3,50.0,2,,2,104697,2,2,0,1,1,,0.0,750.0,12,1.0,1.0,2.0,1.0,1.0,1,1,485.65855739955,252.0,42871.811213995956,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008677030185245746,42871.811213995956,9,5,9,9_0,9_4,9_0_1 +4693,2,70.0,0.0,2,300,600.0,0.0,0.0,78,78,0.0,99.3245457757668,1023.1203260232367,675.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104698,2,1,1,0,1,,93.0,421.0,41,0.0,7.0,4.0,2.0,1.5,2,2,1138.05769030445,600.0,30988.107306111477,5,5,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02178255010324159,20658.738204074318,5,3,5,5_1,5_0,5_0_1 +4694,2,61.0,0.0,1,400,495.0,0.0,0.0,0,11,0.0,0.0,844.0742689691702,615.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,104699,2,3,4,0,2,,100.0,,22,1.0,0.0,5.0,3.0,2.0,3,3,1382.73588308601,495.0,17714.07729332324,0,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034718150418808706,8857.03864666162,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4695,1,43.0,336.0,2,120,530.0,0.0,0.0,52,67,0.0,0.0,903.7562879871924,626.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,104700,1,2,0,1,1,1128.0,0.0,403.0,43,2.0,1.0,5.0,4.0,2.1,2,2,666.612119386631,530.0,29255.896157650015,1,1,2,3,96.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021397396156545682,13931.379122690483,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +4696,2,67.0,0.0,2,120,589.0,0.0,0.0,75,78,843.7462808292812,0.0,1004.363120046144,1449.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104701,2,2,1,0,1,,130.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,579.521007760734,589.0,36792.59579884858,5,5,0,1,95.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039382923888326093,24528.39719923239,7,4,7,7_1,7_0,7_0_1 +4697,1,38.0,310.0,2,111,350.0,0.0,0.0,85,67,0.0,0.0,596.8201901802214,540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,104702,2,3,0,1,2,416.0,0.0,430.0,42,1.0,0.0,3.0,3.0,1.8,2,2,327.400348709852,350.0,16091.480173899032,6,4,2,3,55.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.033558131021153646,8939.711207721684,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4698,2,65.0,0.0,1,111,0.0,0.0,2700.0,0,74,0.0,0.0,1701.8593841198083,2700.0,0.0,3231.1767984246385,30,0,0,0,0,0,0,0,0,0,,1,,1,104703,1,1,1,0,1,,172.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,1444.09223279683,0.0,47811.744482543036,0,5,0,1,170.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05647148057912467,47811.744482543036,10,5,10,10_1,10_3,10_1_0 +4699,2,81.0,0.0,1,400,400.0,2145.0,0.0,77,75,0.0,0.0,682.0802173488245,2545.0,0.0,4072.2911828308474,50,0,0,0,0,0,0,0,0,0,,1,,1,104704,2,1,1,0,1,,600.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,214.884266678211,400.0,37014.80577350749,5,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06875627054678553,24676.53718233833,7,4,7,7_1,7_0,7_1_0 +4700,2,44.0,0.0,6,112,650.0,0.0,0.0,52,68,0.0,0.0,1108.3803531918397,1090.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,104705,2,1,2,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,943.394488018621,650.0,43337.132381599244,1,1,1,2,75.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025151641100803642,24076.184656444024,6,3,6,6_1,6_0,6_0_0 +4701,2,71.0,0.0,1,111,550.0,1600.0,0.0,86,77,0.0,0.0,937.8602988546337,2150.0,0.0,3037.6064767036623,71,0,0,0,0,0,0,0,0,0,,1,,1,104706,2,1,2,0,1,,350.0,,41,0.0,1.0,7.0,3.0,2.0,3,3,422.003911638103,550.0,19184.901390583254,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11206729480795295,9592.450695291627,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +4702,1,26.0,200.0,7,111,700.0,0.0,0.0,45,42,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,60.0,2,,5,104707,2,3,0,0,1,,0.0,490.0,42,1.0,0.0,2.0,2.0,1.5,2,2,364.798028315683,700.0,24486.330076034552,3,1,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.028587379073400195,16324.2200506897,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +4703,2,77.0,0.0,2,400,330.0,0.0,0.0,86,78,2320.3022722805235,0.0,562.7161793127802,2705.0,242.47811444439117,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104708,2,1,2,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,951.620231276742,330.0,19997.431826847285,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13526736950133958,13331.62121789819,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4704,2,31.0,0.0,6,112,1020.0,0.0,0.0,43,43,0.0,1152.1647309988948,1739.3045542395023,1960.0,96.99124577775646,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,104709,2,1,2,0,1,,81.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1618.50578845939,1020.0,58891.21916141166,1,1,1,2,100.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03328170188883245,32717.343978562032,8,4,8,8_1,8_2,8_0_0 +4705,2,34.0,0.0,5,111,180.0,400.0,0.0,0,55,0.0,0.0,306.936097806971,580.0,0.0,759.4016191759156,43,0,0,0,0,0,0,0,0,2,3.0,2,,3,104710,1,2,0,0,2,,223.0,267.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1548.34573916728,180.0,20388.82340785316,0,1,2,3,55.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0284469578453753,20388.82340785316,5,3,5,5_0,5_2,5_0_0 +4706,2,74.0,0.0,2,111,433.0,0.0,0.0,0,75,1255.072592733556,0.0,738.3518352801025,1623.0,0.0,0.0,50,2,2,2,1,1,1,2,2,0,,1,,2,104711,1,1,2,0,1,,200.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1198.88571700561,433.0,20330.455472487574,0,5,0,1,85.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0.07983097093896119,20330.455472487574,5,3,5,5_1,5_3,5_0_1 +4708,2,92.0,0.0,2,400,480.0,0.0,0.0,78,78,3164.0485531098047,0.0,818.4962608185893,3592.0,155.18599324441035,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104713,2,1,1,0,1,,165.0,,41,0.0,1.0,6.0,3.0,2.0,3,3,1291.8362234975,480.0,39105.17608411452,5,5,0,1,90.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09185484786652472,19552.58804205726,5,3,5,5_1,5_0,5_0_1 +4709,2,44.0,0.0,2,111,260.0,250.0,0.0,0,47,0.0,0.0,443.3521412767359,510.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,104714,2,3,0,1,1,,150.0,350.0,12,1.0,1.0,3.0,1.0,1.0,1,1,413.512506527281,260.0,22742.45287930557,0,1,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022425021729475497,22742.45287930557,6,3,6,6_0,6_2,6_0_1 +4710,2,80.0,0.0,2,211,0.0,0.0,0.0,78,78,0.0,0.0,0.0,861.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104715,2,1,0,0,1,,490.0,300.0,41,0.0,1.0,3.0,3.0,2.0,3,3,3111.49507703423,0.0,25007.72884914754,5,5,2,3,91.0,2,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034429356028040495,12503.86442457377,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +4711,1,51.0,234.0,2,112,350.0,220.0,0.0,0,85,0.0,0.0,596.8201901802214,570.0,0.0,417.6708905467536,20,2,1,2,2,1,1,2,2,0,,2,,2,104716,1,2,0,1,1,592.0,0.0,209.0,31,0.0,0.0,3.0,2.0,1.3,1,1,257.465416049333,350.0,12316.687521203372,0,7,2,3,65.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04627867671553216,9474.375016310285,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4712,2,86.0,0.0,2,111,198.0,196.0,0.0,0,77,0.0,0.0,337.6297075876681,394.0,0.0,372.10679339619867,50,2,1,2,2,1,1,2,1,0,,2,,2,104717,1,3,0,1,1,561.0,147.0,292.0,11,0.0,1.0,3.0,1.0,1.0,1,1,399.092651452545,198.0,19883.235762791246,0,5,2,3,62.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019815688185789007,19883.235762791246,5,3,5,5_0,5_3,5_0_1 +4713,2,34.0,0.0,1,111,900.0,0.0,0.0,0,42,0.0,0.0,1534.680489034855,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,104718,2,1,3,0,1,,250.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,307.214808004024,900.0,23518.144774317952,0,1,1,2,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03826832467596717,23518.144774317952,6,3,6,6_1,6_3,6_1_0 +4714,2,77.0,0.0,1,112,925.0,0.0,0.0,75,72,0.0,370.8116375628627,1577.3105026191565,1415.0,290.9737373332694,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104719,2,2,2,0,1,,350.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1258.61269592589,925.0,42319.02900367747,5,5,0,1,80.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03343649496015228,28212.686002451646,8,4,8,8_1,8_0,8_1_0 +4715,1,38.0,350.0,5,111,360.0,,,47,22,0.0,0.0,,510.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,3,104720,1,2,0,0,2,,0.0,457.0,43,2.0,0.0,3.0,5.0,2.4,2,2,130.20410288412813,360.0,19635.56342432556,4,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02597328067338192,8181.48476013565,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4716,2,84.0,0.0,5,111,903.0,0.0,0.0,0,72,0.0,0.0,1539.7960906649712,918.0,20.783838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104721,2,1,2,0,1,,187.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1544.74680446072,903.0,10661.102366744368,0,5,0,1,80.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08610741820316412,10661.102366744368,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4717,2,53.0,0.0,6,112,2312.0,0.0,0.0,54,37,0.0,603.8932383166621,3942.4236562762053,2768.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,104722,2,1,2,0,1,,451.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,228.148929320156,2312.0,87652.70607685222,1,1,0,1,132.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031579173352310086,43826.35303842611,10,5,10,10_1,10_0,10_0_0 +4718,2,62.0,0.0,2,111,935.0,0.0,0.0,0,78,0.0,0.0,1594.3625080528773,960.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,104723,2,2,0,0,2,,108.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,400.249773778257,935.0,19141.42622163192,0,5,0,1,63.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05015300264904474,19141.42622163192,5,3,5,5_0,5_3,5_0_1 +4719,2,30.0,0.0,2,111,720.0,0.0,0.0,0,42,0.0,0.0,1227.744391227884,720.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,2,104724,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,808.52005738929,720.0,17629.0,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04084179476998128,17629.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4720,2,72.0,0.0,1,111,650.0,1250.0,0.0,75,74,0.0,0.0,1108.3803531918397,1900.0,0.0,2373.130059924736,41,0,0,0,0,0,0,0,0,0,,1,,1,104725,2,1,1,0,1,,350.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,434.991802568067,650.0,62916.79341103921,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030198614662180656,41944.528940692806,9,5,9,9_1,9_4,9_1_0 +4721,2,46.0,0.0,5,111,540.0,0.0,0.0,56,52,0.0,0.0,920.8082934209131,540.0,0.0,0.0,42,2,2,2,2,1,2,2,2,2,10.0,2,,3,104726,1,2,0,1,2,624.0,0.0,477.0,43,2.0,0.0,4.0,4.0,2.3,4,3,205.432278753443,540.0,40861.29583292878,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01321543991673489,17765.78079692556,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +4722,2,45.0,0.0,9,111,1600.0,0.0,0.0,0,43,0.0,635.6770929649075,2728.320869395298,2080.0,0.0,0.0,10,2,2,1,2,2,2,2,1,0,,1,2007.0,6,104727,2,1,1,0,1,,150.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,709.285972646419,1600.0,30284.386863704607,0,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,1,0,0.06868225562436099,18927.74178981538,5,3,5,5_1,5_4,5_0_0 +4723,1,60.0,343.0,2,111,240.0,345.0,0.0,0,68,0.0,0.0,409.2481304092947,585.0,0.0,654.9838965392272,71,2,2,2,2,1,2,2,2,3,35.0,2,,2,104728,1,2,0,0,1,,0.0,399.0,32,1.0,0.0,3.0,2.0,1.5,2,2,976.79703344472,240.0,11646.761467889908,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0.050228555089141605,7764.507645259939,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4724,0,78.0,0.0,9,111,0.0,,,0,86,0.0,0.0,,60.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,104729,2,1,0,0,2,,600.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,94.07635261167295,0.0,5677.447425294951,0,7,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010568129566938776,5677.447425294951,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +4725,1,36.0,300.0,5,111,320.0,150.0,0.0,0,54,0.0,0.0,545.6641738790596,470.0,0.0,284.77560719096834,31,0,0,0,0,0,0,0,0,1,10.0,2,,3,104730,2,1,0,1,1,436.0,0.0,490.0,32,1.0,0.0,3.0,3.0,1.6,1,1,235.154446854671,320.0,20467.904479830708,0,1,2,3,121.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022962780604294058,12792.440299894191,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +4726,1,64.0,77.0,2,111,474.0,417.0,0.0,85,62,0.0,0.0,808.265057558357,891.0,0.0,791.676187990892,50,2,1,2,1,1,2,2,2,2,5.0,2,,2,104731,2,2,0,1,1,600.0,0.0,350.0,42,1.0,3.0,4.0,3.0,1.8,2,2,2226.08910314127,474.0,18598.461782677157,6,1,2,3,62.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04790718772398095,10332.478768153976,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +4727,1,34.0,500.0,8,111,0.0,,,0,85,0.0,0.0,,488.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,104732,2,3,0,0,2,,481.0,800.0,31,0.0,0.0,3.0,5.0,2.4,2,1,67.31759018148082,0.0,22320.214801667928,0,6,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021863588873863936,9300.08950069497,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4728,2,76.0,0.0,2,221,720.0,,,0,78,0.0,0.0,,852.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,104733,1,2,0,0,1,,640.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,109.77728611840861,720.0,17523.713692946058,0,5,0,1,90.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048619831100239985,17523.713692946058,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +4729,2,48.0,0.0,8,112,1200.0,0.0,0.0,68,62,0.0,1933.517824434927,2046.2406520464733,2660.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,2003.0,6,104734,2,1,1,0,1,,420.0,,43,3.0,1.0,5.0,4.0,2.3,3,2,819.218078887717,1200.0,25138.509450427617,1,1,1,2,120.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.10581375181553385,10929.786717577226,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +4730,2,72.0,0.0,2,112,500.0,,,0,78,0.0,0.0,,544.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,2,104735,2,2,0,0,2,,200.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,86.93560954055549,500.0,9472.153779756442,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05743150002089471,9472.153779756442,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +4731,1,56.0,300.0,2,111,360.0,180.0,0.0,0,77,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,60,2,1,2,2,1,2,2,2,0,,2,,2,104736,2,1,0,1,1,672.0,0.0,,31,0.0,2.0,3.0,2.0,1.5,2,2,301.432689568234,360.0,16370.781516817813,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03298559689684053,10913.854344545209,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +4732,2,63.0,0.0,7,211,708.0,,,0,78,0.0,0.0,,840.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,104737,1,1,0,0,2,,504.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,101.81147229236797,708.0,8016.091859220167,0,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10478921833135257,8016.091859220167,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4733,2,62.0,0.0,1,111,1220.0,1510.0,0.0,22,22,0.0,0.0,2080.344662913915,2730.0,0.0,2866.7411123890815,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,104738,2,1,1,0,1,,760.0,,43,3.0,0.0,6.0,5.0,3.0,5,4,210.725398257245,1220.0,70279.94700030531,1,1,1,2,137.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03884465080755027,23426.64900010177,6,3,6,6_1,6_4,6_1_0 +4734,2,69.0,0.0,2,120,320.0,0.0,0.0,78,86,0.0,662.163638505112,545.6641738790596,945.0,173.19865317456512,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104739,2,2,3,0,2,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1568.01834409358,320.0,24040.691868668095,5,5,0,1,110.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039308352902755084,16027.127912445396,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +4735,2,67.0,0.0,2,400,445.0,982.0,0.0,77,78,0.0,423.78472864327165,758.8142418005672,1747.0,0.0,1864.3309750768728,50,0,0,0,0,0,0,0,0,0,,1,,2,104740,2,1,3,0,1,,94.0,,41,0.0,7.0,6.0,2.0,1.5,2,2,1450.65996957974,445.0,39457.23363722405,5,5,0,1,90.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04427578517192031,26304.822424816037,7,4,7,7_1,7_0,7_0_1 +4736,2,37.0,0.0,2,111,2000.0,0.0,0.0,56,47,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,104741,2,1,1,0,1,,1092.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,713.679677726248,2000.0,22495.484972020677,1,1,1,2,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08890672961652306,9780.64564000899,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +4737,2,44.0,0.0,7,111,800.0,,,0,21,0.0,0.0,,960.0,221.69427606344334,,42,0,0,0,0,0,0,0,0,2,5.0,1,,5,104742,2,1,0,0,2,,600.0,,32,1.0,0.0,7.0,3.0,1.6,1,1,83.74876530448387,800.0,29917.90308607386,0,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03208781034011903,18698.689428796162,5,3,5,5_1,5_2,5_0_0 +4738,2,64.0,0.0,2,111,560.0,1420.0,0.0,52,77,0.0,0.0,954.9123042883542,1980.0,0.0,2695.8757480745003,50,0,0,0,0,0,0,0,0,0,,1,,2,104743,2,1,2,0,1,,420.0,816.0,42,1.0,2.0,3.0,2.0,1.5,2,2,1930.38957963866,560.0,43627.163409820176,1,5,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04538456881554476,29084.775606546784,8,4,8,8_1,8_3,8_0_1 +4739,2,54.0,0.0,2,120,2500.0,,,0,31,0.0,0.0,,2500.0,0.0,,10,0,0,0,0,0,0,0,0,2,5.0,1,,2,104744,2,1,0,0,2,,2000.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,159.6050282409052,2500.0,113797.85689004144,0,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021968779275128664,113797.85689004144,10,5,10,10_1,10_1,10_0_1 +4740,2,44.0,0.0,8,300,1680.0,0.0,0.0,55,67,0.0,0.0,2864.7369128650625,1752.0,99.7624242285495,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,104745,2,1,2,0,1,,540.0,,43,2.0,0.0,6.0,5.0,2.8,5,4,1674.3338981864,1680.0,42317.393945300035,1,1,1,2,119.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04140141527298812,15113.354980464299,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4741,2,29.0,0.0,1,111,600.0,800.0,0.0,56,62,0.0,331.081819252556,1023.1203260232367,1650.0,0.0,1518.8032383518312,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,104746,2,1,2,0,1,,390.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,905.248698753803,600.0,20612.78825579235,4,1,1,2,125.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08004739482715723,11451.549030995751,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +4742,2,34.0,0.0,2,111,275.0,200.0,0.0,38,38,0.0,0.0,468.93014942731685,475.0,0.0,379.7008095879578,10,0,0,0,0,0,0,0,0,3,40.0,2,,2,104747,2,2,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1109.58179433161,275.0,155932.21396087037,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003046195445664592,64971.75581702933,10,5,10,10_0,10_4,10_0_1 +4743,2,68.0,0.0,2,112,1900.0,0.0,0.0,0,74,0.0,52.973091080408956,3239.8810324069163,1970.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,104748,2,2,4,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1847.53615291099,1900.0,18700.565035824806,0,5,1,2,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10534441051519336,18700.565035824806,5,3,5,5_1,5_0,5_0_1 +4744,2,42.0,0.0,1,112,1400.0,0.0,0.0,53,53,0.0,0.0,2387.2807607208856,1553.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,75.0,1,,1,104749,1,1,2,0,2,,160.0,,43,3.0,3.0,4.0,4.0,2.5,4,4,541.389309413672,1400.0,49491.81401564421,1,1,1,2,100.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031378926614189194,19796.725606257685,5,3,5,5_1,5_1,5_1_0 +4745,0,54.0,0.0,1,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,1209.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,104750,1,3,3,0,2,,0.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,121.423818361539,0.0,55769.34405712085,1,1,5,0,80.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02167857665246522,22307.73762284834,6,3,6,6_1,6_3,6_1_0 +4748,2,68.0,0.0,5,112,2500.0,0.0,0.0,77,75,0.0,172.1625460113291,4263.001358430153,2830.0,277.1178450793042,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,104753,1,1,2,0,1,,600.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,483.860183104142,2500.0,49598.92320284237,5,5,0,1,88.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05705769031368449,33065.94880189491,8,4,8,8_1,8_1,8_0_0 +4749,0,95.0,0.0,6,111,360.0,,,0,86,0.0,0.0,,360.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,104754,1,1,0,0,2,,130.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,40.31693812676762,360.0,41000.916792841635,0,5,5,0,131.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008780291470527618,41000.916792841635,9,5,9,9_1,9_2,9_0_0 +4750,0,60.0,0.0,1,400,120.0,0.0,0.0,0,55,1582.0242765549024,0.0,204.62406520464734,1655.0,48.49562288887823,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,104755,2,2,2,0,2,,257.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,2328.73353069166,120.0,22708.673824434252,0,1,0,1,95.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07287964118006929,22708.673824434252,6,3,6,6_1,6_1,6_1_0 +4751,2,55.0,0.0,1,300,800.0,0.0,0.0,72,43,3691.3899786281054,0.0,1364.160434697649,4410.0,152.4148147936173,0.0,33,0,0,0,0,0,0,0,0,2,25.0,1,,1,104756,2,2,2,0,1,,320.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1748.47751789844,800.0,46047.81164734551,7,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09577002342204075,30698.54109823034,8,4,8,8_1,8_0,8_1_0 +4752,2,55.0,0.0,9,211,550.0,0.0,0.0,85,33,0.0,0.0,937.8602988546337,550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,104757,2,1,1,0,1,,300.0,,42,1.0,1.0,5.0,6.0,3.1,4,3,4044.36714946916,550.0,42338.00654087961,6,1,0,1,110.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012990691932293639,13657.421464799872,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4753,2,36.0,0.0,2,111,240.0,130.0,0.0,52,68,843.7462808292812,0.0,409.2481304092947,1170.0,0.0,246.80552623217258,71,0,0,0,0,0,0,0,0,0,,2,,2,104758,2,1,0,1,1,800.0,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,296.610968222941,240.0,38887.80733641042,1,1,2,3,72.0,9,7,4,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030086551033298707,21604.3374091169,6,3,6,6_0,6_3,6_0_1 +4754,2,66.0,0.0,8,112,1300.0,0.0,0.0,71,33,0.0,0.0,2216.7607063836795,1440.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,104759,2,1,1,0,1,,140.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,158.346946632409,1300.0,31641.284092457452,5,5,0,1,100.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045510163108180006,21094.189394971636,5,3,5,5_1,5_0,5_0_0 +4755,2,67.0,0.0,2,112,2243.0,0.0,0.0,74,77,0.0,0.0,3824.7648187835334,2363.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,104760,2,1,2,0,1,,589.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,916.118217056956,2243.0,60668.76943836975,5,5,0,1,108.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03894919942954256,40445.846292246504,9,5,9,9_1,9_0,9_0_1 +4756,2,61.0,0.0,2,111,374.0,930.0,0.0,43,47,0.0,0.0,637.7450032211509,1304.0,0.0,1765.6087645840037,31,0,0,0,0,0,0,0,0,3,30.0,1,,2,104761,2,2,1,0,1,,451.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,231.64796746612,374.0,41788.049952588466,1,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03120509335753837,27858.69996839231,7,4,7,7_1,7_3,7_0_1 +4757,2,35.0,0.0,7,120,600.0,,,63,85,0.0,0.0,,732.0,182.89777775234077,,71,2,2,2,1,1,2,2,2,0,,1,,5,104762,1,2,0,0,2,,200.0,,42,1.0,0.0,2.0,5.0,2.4,2,2,128.84413294556072,600.0,30813.333069355947,4,6,0,1,38.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.023755950008795983,12838.888778898312,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4758,2,52.0,0.0,8,221,150.0,150.0,0.0,56,38,0.0,185.40581878143135,255.78008150580916,440.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,104763,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,1552.15049063322,150.0,75041.05351942785,4,1,1,2,150.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005863457125986187,32626.545008446894,8,4,8,8_1,8_1,8_0_0 +4759,1,56.0,200.0,2,111,0.0,0.0,1560.0,0,54,0.0,0.0,983.2965330470004,1560.0,0.0,1866.902150200902,20,2,1,2,1,1,1,2,2,3,75.0,2,,2,104764,2,2,0,0,1,,0.0,330.0,32,1.0,0.0,2.0,2.0,1.5,2,1,1096.23088993627,0.0,12871.11985477403,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.12120157512334719,8580.746569849352,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4760,2,34.0,0.0,6,112,1000.0,0.0,0.0,46,46,0.0,1059.4618216081792,1705.2005433720612,1800.0,0.0,0.0,31,2,2,2,1,2,2,2,2,2,20.0,1,,4,104765,1,3,4,0,1,,75.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,358.050151565908,1000.0,48714.1765040681,1,1,1,2,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03695022946451087,32476.11766937873,8,4,8,8_1,8_0,8_0_0 +4761,2,68.0,0.0,5,111,391.0,400.0,0.0,77,78,0.0,0.0,666.7334124584759,791.0,0.0,759.4016191759156,70,0,0,0,0,0,0,0,0,0,,1,,3,104766,2,1,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,912.04946545822,391.0,36021.55306967687,5,5,0,1,93.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021959075403272046,24014.368713117914,6,3,6,6_1,6_3,6_0_0 +4762,2,65.0,0.0,6,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,1249.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104767,2,1,2,0,1,,120.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,761.006516854737,0.0,47933.16928566207,5,5,0,1,100.0,7,5,9,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026057112822156014,31955.44619044138,8,4,8,8_1,8_2,8_0_0 +4763,2,68.0,0.0,5,111,1040.0,0.0,0.0,0,77,0.0,0.0,1773.4085651069436,1110.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104768,2,1,2,0,1,,240.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1491.91088112228,1040.0,22768.57193164434,0,5,0,1,100.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04875141064325136,22768.57193164434,6,3,6,6_1,6_2,6_0_0 +4764,2,88.0,0.0,5,111,213.0,56.0,0.0,0,78,0.0,0.0,363.207715738249,269.0,0.0,106.31622668462819,71,0,0,0,0,0,0,0,0,0,,2,,3,104769,2,1,0,3,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,422.045172827603,213.0,19055.53385028496,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014116634155383547,19055.53385028496,5,3,5,5_0,5_4,5_0_0 +4765,2,29.0,0.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,325.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,104770,2,1,0,1,1,360.0,0.0,390.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1821.29339812248,0.0,11261.444470378508,0,4,2,3,40.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028859530485175533,11261.444470378508,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +4766,2,57.0,0.0,2,111,300.0,100.0,0.0,75,56,0.0,0.0,511.56016301161833,1130.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,104771,2,1,0,1,1,1900.0,0.0,293.0,42,1.0,1.0,3.0,2.0,1.5,2,2,176.250983142544,300.0,19998.825867912048,5,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05650331711788519,13332.550578608032,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +4767,2,68.0,0.0,2,111,770.0,1500.0,0.0,52,77,0.0,0.0,1313.0044183964872,2270.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,,2,104772,2,2,2,0,1,,330.0,,42,1.0,2.0,4.0,3.0,2.0,3,3,594.424887060875,770.0,17479.64883206606,4,5,1,2,110.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12986530918377096,8739.82441603303,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +4768,2,34.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,705.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,104773,1,2,0,0,1,,0.0,750.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1460.24867044094,0.0,10735.46699262656,4,4,2,3,65.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06567017536211654,5112.12713934598,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +4769,1,86.0,210.0,1,112,2000.0,0.0,0.0,0,86,0.0,0.0,3410.4010867441225,2200.0,277.1178450793042,0.0,71,2,2,1,1,1,2,2,2,0,,1,,1,104774,1,3,3,0,2,,250.0,415.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1013.03697915666,2000.0,15562.98402625352,0,5,2,3,70.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0.14136106522301728,15562.98402625352,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +4770,2,52.0,0.0,2,111,200.0,0.0,0.0,0,85,0.0,0.0,341.04010867441224,398.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,104775,1,2,0,1,2,1014.0,0.0,494.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2065.62291627942,200.0,38437.04357345319,0,7,2,3,86.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010354594500469891,38437.04357345319,9,5,9,9_0,9_2,9_0_1 +4771,2,83.0,0.0,2,300,508.0,0.0,0.0,0,75,0.0,0.0,866.2418760330071,3098.0,2771.178450793042,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,104776,2,1,2,0,1,,104.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,622.769278560976,508.0,30962.399085087534,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10005684609536908,30962.399085087534,8,4,8,8_1,8_0,8_0_1 +4772,2,64.0,0.0,2,111,0.0,0.0,360.0,0,74,0.0,0.0,226.91458454930776,360.0,0.0,430.8235731232851,50,2,2,2,2,1,2,2,2,0,,2,,2,104777,1,2,0,1,2,,248.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,2033.27088619799,0.0,32547.57254291999,0,5,0,1,48.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011060732702116985,32547.57254291999,8,4,8,8_0,8_2,8_0_1 +4773,2,43.0,0.0,5,111,1170.0,0.0,0.0,56,48,0.0,1350.8138225504283,1995.0846357453115,2190.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,104778,2,1,2,0,1,,530.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,1455.42177508883,1170.0,30261.263004065204,1,1,1,2,97.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07236974873473728,15130.631502032602,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +4774,2,82.0,0.0,5,111,600.0,,,0,86,0.0,0.0,,729.0,178.7410100761512,,71,0,0,0,0,0,0,0,0,0,,1,,3,104779,2,2,0,0,2,,440.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,149.79274420916462,600.0,11072.591753602512,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06583824421800948,11072.591753602512,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4775,2,47.0,0.0,7,111,450.0,,,53,54,0.0,0.0,,500.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,0,,1,,5,104780,2,1,0,0,2,,800.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,119.49067980434202,450.0,70353.88635814466,1,1,0,1,121.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007106927930813824,27059.187060824876,7,4,7,7_1,7_2,7_0_0 +4776,2,50.0,0.0,7,111,470.0,1200.0,0.0,52,48,0.0,0.0,801.4442553848687,1670.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,104781,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,5.0,3.0,5,5,1122.46519401138,470.0,51429.440991691125,1,1,1,2,110.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03247167318559428,17143.146997230375,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4777,2,54.0,0.0,2,111,500.0,0.0,0.0,11,11,2320.3022722805235,0.0,852.6002716860306,2790.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,5,,2,104782,2,2,1,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,285.186088982573,500.0,15464.110921793057,1,1,0,1,80.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1804177436459115,10309.407281195372,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +4779,2,41.0,0.0,8,211,756.0,,,0,52,0.0,0.0,,888.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,104784,2,2,0,0,2,,1200.0,,32,2.0,1.0,5.0,7.0,3.3999999999999995,4,2,8.65391823876718,756.0,38206.36429487303,0,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023242201041337035,11237.165969080304,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4780,2,38.0,0.0,2,111,548.0,118.0,0.0,68,63,0.0,0.0,934.4498977678895,666.0,0.0,224.0234776568951,50,2,1,1,2,1,2,2,2,2,15.0,2,,2,104785,1,2,0,1,2,925.0,0.0,221.0,43,2.0,0.0,4.0,5.0,2.4,2,2,523.147981630149,548.0,41527.167282584705,1,1,2,3,74.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016037693962316114,17302.98636774363,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +4781,2,71.0,0.0,9,111,332.0,,,86,77,0.0,0.0,,472.0,193.98249155551292,,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,104786,2,1,0,0,2,,159.0,680.0,41,0.0,4.0,4.0,2.0,1.5,2,2,152.16280125743873,332.0,31563.40756493152,5,5,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014954025449534003,21042.271709954348,5,3,5,5_1,5_2,5_0_0 +4782,2,57.0,0.0,2,111,328.0,0.0,0.0,54,46,0.0,0.0,559.3057782260361,328.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,104787,1,3,0,1,1,802.0,0.0,533.0,43,2.0,3.0,4.0,3.0,2.0,3,2,876.896781435573,328.0,59398.64737798913,1,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0055220112658919615,29699.323688994566,8,4,8,8_0,8_4,8_0_1 +4783,1,57.0,245.0,1,112,613.0,0.0,0.0,0,63,0.0,0.0,1045.2879330870735,682.0,95.60565655235995,0.0,71,0,0,0,0,0,0,0,0,1,3.0,2,,1,104788,1,2,0,0,1,,300.0,341.0,32,2.0,2.0,4.0,3.0,2.0,3,3,1763.21977260686,613.0,13777.672886338787,0,1,2,3,100.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04950037685074053,6888.8364431693935,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +4784,2,76.0,0.0,9,112,1600.0,0.0,0.0,86,78,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,104789,2,1,1,0,2,,380.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1528.91440637375,1600.0,32565.657543258232,5,5,0,1,142.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04913151217274387,21710.438362172154,6,3,6,6_1,6_0,6_0_0 +4785,2,72.0,0.0,2,111,135.0,,,0,74,0.0,0.0,,157.0,30.482962958723462,,20,0,0,0,0,0,0,0,0,0,,2,,2,104790,2,1,0,0,2,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,108.05261568685063,135.0,16628.82296835559,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009441437935731755,16628.82296835559,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +4786,1,74.0,170.0,2,111,636.0,1400.0,0.0,77,78,0.0,0.0,1084.5075455846309,2036.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,1,,2,104791,2,1,1,0,2,,400.0,,41,1.0,0.0,4.0,5.0,2.8,4,4,274.432246627283,636.0,20160.545881159505,6,5,1,2,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10098932895972271,7200.194957556967,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +4787,2,47.0,0.0,8,111,0.0,,,0,47,0.0,0.0,,311.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,2,2000.0,6,104792,2,1,0,0,2,,124.0,723.0,12,1.0,0.0,3.0,1.0,1.0,1,1,141.8330745384084,0.0,36990.07902674272,0,1,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00840765978832206,36990.07902674272,9,5,9,9_0,9_3,9_0_0 +4788,2,81.0,0.0,1,112,1350.0,0.0,0.0,0,77,0.0,0.0,2302.0207335522828,1478.0,177.35542085075468,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104793,2,2,1,0,1,,146.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,935.142790958595,1350.0,12901.868113083508,0,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11455705383480023,12901.868113083508,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4789,1,58.0,120.0,7,111,576.0,1573.0,0.0,77,42,0.0,0.0,982.1955129823073,2149.0,0.0,2986.3468674092883,30,0,0,0,0,0,0,0,0,3,45.0,2,,5,104794,2,3,0,0,1,,0.0,638.0,42,1.0,0.0,6.0,7.0,4.0,7,6,872.272649090839,576.0,56991.14592000131,7,1,2,3,103.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03770761168790253,14247.786480000328,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +4790,1,43.0,548.0,2,111,500.0,0.0,0.0,0,81,0.0,0.0,852.6002716860306,700.0,277.1178450793042,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,104795,1,3,0,0,2,,0.0,644.0,32,1.0,0.0,4.0,4.0,2.3,3,3,349.294423270731,500.0,3820.5654038033913,0,4,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.18321895479217465,1661.1153929579964,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4791,2,33.0,0.0,1,111,400.0,910.0,0.0,46,46,0.0,0.0,682.0802173488245,1310.0,0.0,1727.638683625208,41,1,2,2,2,2,2,2,1,2,3.0,1,,1,104796,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,388.439581777065,400.0,55102.84927469988,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.023773725265446084,26239.452035571372,7,4,7,7_1,7_4,7_1_0 +4792,2,49.0,0.0,6,111,1130.0,0.0,0.0,62,54,0.0,476.7578197236806,1926.8766140104292,1490.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,4,104797,2,1,2,0,1,,411.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,373.942170759377,1130.0,43402.68584780675,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034329672712530845,28935.123898537833,8,4,8,8_1,8_3,8_0_0 +4793,2,47.0,0.0,7,111,1680.0,,,0,63,0.0,0.0,,1956.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,104798,2,1,0,0,2,,1000.0,,22,3.0,7.0,4.0,4.0,2.5,4,4,45.412604352531325,1680.0,52064.18496046994,0,4,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03756901220071159,20825.673984187975,5,3,5,5_1,5_2,5_0_0 +4794,2,65.0,0.0,8,111,421.0,1135.0,0.0,77,77,0.0,0.0,717.8894287596378,1556.0,0.0,2154.8020944116606,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104799,2,1,2,0,1,,240.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1077.63233431756,421.0,47183.239013951395,5,5,0,1,127.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03297781230194717,31455.4926759676,8,4,8,8_1,8_3,8_0_0 +4795,2,51.0,0.0,2,111,700.0,700.0,0.0,0,62,0.0,0.0,1193.6403803604428,1400.0,0.0,1328.9528335578523,71,1,2,2,2,2,2,2,1,2,10.0,2,,2,104800,2,3,0,1,1,552.0,0.0,539.0,22,1.0,0.0,3.0,2.0,1.5,2,2,275.280920364374,700.0,25207.84849704923,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.055538258259679736,16805.232331366155,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +4796,2,49.0,0.0,2,111,1200.0,1200.0,0.0,37,47,0.0,185.40581878143135,2046.2406520464733,2540.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,104801,2,1,1,0,1,,1200.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,914.976192555486,1200.0,54198.82875402793,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04686448136226991,23564.70815392519,6,3,6,6_1,6_4,6_0_1 +4797,2,83.0,0.0,2,111,600.0,0.0,0.0,0,77,1582.0242765549024,0.0,1023.1203260232367,2100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104802,2,1,2,0,2,,210.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1160.2683822585,600.0,16935.982570674685,0,5,0,1,125.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12399634867576163,16935.982570674685,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +4798,2,80.0,0.0,7,111,150.0,,,0,78,0.0,0.0,,195.0,62.351515142843446,,71,0,0,0,0,0,0,0,0,0,,1,,5,104803,2,2,0,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,106.2774234569179,150.0,9218.718411024478,0,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021152614854446954,9218.718411024478,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +4799,2,84.0,0.0,1,111,600.0,950.0,0.0,0,77,0.0,0.0,1023.1203260232367,1550.0,0.0,1803.5788455427996,71,0,0,0,0,0,0,0,0,0,,2,,1,104804,2,1,0,0,1,,0.0,,21,0.0,3.0,5.0,2.0,1.5,2,2,823.207405280466,600.0,44266.429347721874,0,5,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03501524796193595,29510.95289848125,8,4,8,8_0,8_4,8_1_0 +4800,1,37.0,308.0,2,111,350.0,110.0,0.0,0,56,0.0,0.0,596.8201901802214,460.0,0.0,208.8354452733768,50,0,0,0,0,0,0,0,0,4,25.0,2,,2,104805,1,1,0,1,1,448.0,400.0,274.0,32,1.0,0.0,3.0,3.0,1.8,2,1,349.981314097007,350.0,17242.28532532388,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02667859806985066,9579.04740295771,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4801,2,61.0,0.0,6,211,0.0,0.0,0.0,55,74,0.0,0.0,0.0,1412.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,104806,1,2,3,0,1,,389.0,582.0,42,1.0,2.0,4.0,2.0,1.5,2,2,705.315057240198,0.0,59041.49194575658,1,5,2,3,86.0,4,3,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023915384816109532,39360.994630504385,9,5,9,9_1,9_1,9_0_0 +4802,2,68.0,0.0,7,111,450.0,,,77,77,0.0,0.0,,700.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,5,104807,2,3,0,0,2,,500.0,,41,0.0,2.0,4.0,4.0,2.5,4,3,89.7652050040474,450.0,25843.724546559682,6,5,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02708587915564918,10337.489818623873,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +4803,2,67.0,0.0,2,111,700.0,900.0,0.0,0,78,0.0,794.5963662061343,1193.6403803604428,2290.0,124.70303028568689,1708.65364314581,70,0,0,0,0,0,0,0,0,0,,1,,2,104808,2,1,1,0,1,,250.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1129.66689444794,700.0,24318.997216987627,0,5,0,1,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09416506690499389,24318.997216987627,7,4,7,7_1,7_3,7_0_1 +4804,1,36.0,240.0,2,111,540.0,600.0,0.0,0,85,0.0,0.0,920.8082934209131,1140.0,0.0,1139.1024287638734,71,2,2,2,1,2,2,2,2,0,,2,,2,104809,2,1,0,1,1,,0.0,200.0,31,0.0,0.0,2.0,2.0,1.3,1,1,516.234607430193,540.0,12221.230044427075,0,6,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.09328029959798066,9400.946188020827,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4805,2,35.0,0.0,8,111,400.0,0.0,0.0,37,37,0.0,0.0,682.0802173488245,400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,2003.0,6,104810,2,2,0,1,1,,352.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,794.719508062714,400.0,101069.79924322615,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003957660972862856,67379.86616215076,10,5,10,10_0,10_4,10_0_0 +4806,1,43.0,183.0,6,111,600.0,0.0,0.0,0,45,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,1,2,2,1,1,2,2,2,3,20.0,2,,4,104811,2,2,0,1,1,672.0,0.0,572.0,32,2.0,0.0,4.0,3.0,2.0,3,2,241.759927051488,600.0,22943.665006454212,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.026151009432504174,11471.832503227106,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +4807,2,58.0,0.0,6,111,1660.0,0.0,0.0,52,48,0.0,556.2174563442941,2830.6329019976215,2080.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,30.0,1,,4,104812,1,3,3,0,1,,480.0,554.0,43,3.0,2.0,4.0,3.0,2.0,3,3,186.782803759834,1660.0,56233.19069857328,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,1,0,0,0.03698883122512863,28116.59534928664,8,4,8,8_1,8_4,8_0_0 +4809,2,41.0,0.0,1,111,0.0,0.0,1300.0,55,47,0.0,66.2163638505112,819.4137775391669,1350.0,0.0,1555.751791834085,50,2,2,2,1,1,2,2,2,0,,1,,1,104814,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1211.21757870668,0.0,39772.622285242396,1,1,1,2,70.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03394294674155585,17292.444471844523,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +4810,2,62.0,0.0,1,120,600.0,0.0,0.0,0,77,2109.365702073203,0.0,1023.1203260232367,2750.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104815,2,2,3,0,1,,140.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,246.34984164804,600.0,28536.00828147585,0,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09636947021021025,28536.00828147585,8,4,8,8_1,8_0,8_1_0 +4811,2,39.0,0.0,2,111,1000.0,0.0,0.0,0,31,0.0,52.973091080408956,1705.2005433720612,1100.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,3.0,1,,2,104816,2,1,3,0,1,,120.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,1461.71388384825,1000.0,73642.1336196516,0,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01493710116658627,56647.7950920397,10,5,10,10_1,10_3,10_0_1 +4812,2,77.0,0.0,2,112,1000.0,0.0,0.0,72,74,2900.3778403506544,0.0,1705.2005433720612,3750.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,104817,2,2,2,0,2,,300.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,889.257536428598,1000.0,88372.0760791217,5,5,0,1,230.0,8,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04243421866249394,58914.71738608114,10,5,10,10_1,10_0,10_0_1 +4813,1,31.0,118.0,8,120,500.0,1300.0,0.0,56,48,0.0,198.6490915515336,852.6002716860306,1950.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,104818,2,1,0,0,1,,0.0,570.0,43,2.0,0.0,4.0,3.0,1.8,2,2,246.514936673715,500.0,21208.875918121554,1,4,2,3,120.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09194263795630284,11782.708843400864,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +4814,0,90.0,0.0,2,300,0.0,0.0,0.0,0,71,0.0,0.0,0.0,1699.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104819,2,2,2,0,1,,100.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1005.44037344609,0.0,13780.468262757513,0,5,0,1,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12329044032499553,13780.468262757513,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4815,2,83.0,0.0,2,111,512.0,0.0,0.0,0,74,2615.613470570772,0.0,873.0626782064953,2992.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,104820,1,1,2,0,2,,346.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,381.876064285639,512.0,60226.857137541345,0,5,0,1,110.0,8,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04967883336776326,60226.857137541345,10,5,10,10_1,10_2,10_0_1 +4816,2,56.0,0.0,2,111,357.0,0.0,0.0,0,45,0.0,0.0,608.7565939838258,357.0,0.0,0.0,60,2,1,2,1,2,2,2,2,3,45.0,2,,2,104821,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1203.04657790821,357.0,46994.23468180363,0,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007596676537393042,46994.23468180363,10,5,10,10_0,10_4,10_0_1 +4817,2,41.0,0.0,1,111,1554.0,0.0,0.0,43,47,0.0,0.0,2649.881644400183,1654.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104822,2,1,1,0,2,,520.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1995.52835975439,1554.0,42642.63142149229,1,1,1,2,70.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038787474995418986,20306.014962615376,5,3,5,5_1,5_2,5_1_0 +4818,2,52.0,0.0,2,111,1731.0,0.0,0.0,0,46,0.0,0.0,2951.702140577038,1731.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,2,104823,2,2,2,0,1,,545.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,1905.5180048587,1731.0,63073.849263637894,0,1,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027444020306493684,42049.23284242526,9,5,9,9_1,9_3,9_0_1 +4819,0,78.0,0.0,2,111,0.0,0.0,1400.0,0,86,0.0,0.0,882.4456065806413,1761.0,0.0,1675.4250065905533,44,2,2,2,2,1,2,2,2,0,,2,,2,104824,2,3,0,0,1,,130.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,386.215882315013,0.0,5387.933201442921,0,7,5,0,60.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.32684146854834684,5387.933201442921,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +4820,1,32.0,118.0,7,111,0.0,,,0,46,0.0,0.0,,547.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,104825,2,2,0,0,1,,195.0,600.0,22,2.0,0.0,4.0,2.0,1.5,2,2,145.66183003671972,0.0,14934.171388258237,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03662740876471194,9956.114258838825,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +4821,2,47.0,0.0,1,111,688.0,2071.0,0.0,56,37,0.0,66.2163638505112,1173.177973839978,2809.0,0.0,3931.801883283303,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,104826,2,1,2,0,1,,900.0,,43,2.0,0.0,7.0,4.0,2.3,3,3,1266.83321603609,688.0,52735.625351332106,4,1,0,1,170.0,7,6,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053265700013720316,22928.532761448743,6,3,6,6_1,6_2,6_1_0 +4822,2,32.0,0.0,5,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1637.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,75.0,2,,3,104827,2,1,0,0,1,,0.0,350.0,12,1.0,0.0,3.0,1.0,1.0,1,1,844.767498421927,0.0,11352.490539005645,0,1,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1441974335389654,11352.490539005645,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +4823,2,30.0,0.0,8,112,1400.0,0.0,0.0,54,37,0.0,397.2981831030672,2387.2807607208856,1760.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,2002.0,6,104828,2,1,2,0,1,,150.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,839.980779612015,1400.0,51424.402928508476,1,1,1,2,130.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03422499630081845,28569.112738060263,8,4,8,8_1,8_0,8_0_0 +4824,2,28.0,0.0,8,400,0.0,,,85,85,0.0,0.0,,240.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,104829,2,2,0,0,2,,0.0,,41,0.0,0.0,3.0,5.0,2.4,2,2,131.9698308104695,0.0,44164.991157732074,6,6,0,1,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005434168415042977,18402.07964905503,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4825,0,92.0,0.0,1,111,260.0,1500.0,0.0,0,77,0.0,0.0,443.3521412767359,1760.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,104830,2,1,2,0,2,,160.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,477.226269154147,260.0,17754.0459957858,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09913233301399374,17754.0459957858,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +4826,1,31.0,270.0,2,111,180.0,0.0,0.0,0,55,0.0,0.0,306.936097806971,460.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,104831,1,3,0,1,2,672.0,0.0,334.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1701.17072523825,180.0,5293.616352783102,0,4,2,3,30.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08689711708294774,5293.616352783102,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4827,2,28.0,0.0,9,111,2400.0,0.0,0.0,0,23,0.0,0.0,4092.4813040929466,2515.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2012.0,6,104832,2,1,1,0,1,,313.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1442.43379773084,2400.0,10912.529837468142,0,1,1,2,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.23046901474346984,10912.529837468142,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +4828,2,75.0,0.0,2,111,0.0,1200.0,0.0,77,75,0.0,0.0,0.0,2463.0,103.91919190473907,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,104833,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1513.4854996245,0.0,51535.44208895304,5,5,0,1,94.0,7,6,4,0,1,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04779235221750354,34356.961392635356,9,5,9,9_1,9_2,9_0_1 +4829,2,50.0,0.0,6,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1104.0,0.0,0.0,60,1,2,2,2,1,2,2,2,2,10.0,1,,4,104834,2,1,3,0,1,,452.0,560.0,43,2.0,6.0,4.0,3.0,1.8,2,2,1190.82626033625,0.0,40722.8871276659,1,1,2,3,70.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027110062126463913,22623.82618203661,6,3,6,6_1,6_2,6_0_0 +4830,2,80.0,0.0,7,112,1590.0,0.0,0.0,77,75,0.0,463.51454695357836,2711.268863961577,2080.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,104835,2,1,1,0,1,,250.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,348.236843635159,1590.0,40066.022297189345,5,5,0,1,80.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05191431244588293,26710.681531459562,7,4,7,7_1,7_0,7_0_0 +4831,0,87.0,0.0,1,221,400.0,0.0,0.0,0,71,0.0,463.51454695357836,682.0802173488245,750.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104836,2,2,4,0,1,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1581.04809678348,400.0,10966.194578967898,0,5,0,1,80.0,1,1,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06839200185617968,10966.194578967898,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +4832,2,65.0,0.0,9,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,596.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,104837,2,1,0,0,1,,286.0,430.0,11,0.0,4.0,2.0,1.0,1.0,1,1,1755.15132463407,0.0,15919.383263178956,0,5,2,3,50.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03743863629306103,15919.383263178956,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +4833,1,43.0,481.0,9,111,720.0,,,0,81,0.0,0.0,,1032.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,104838,2,2,0,0,2,,2000.0,104.0,32,2.0,0.0,5.0,6.0,3.0999999999999996,4,3,138.50821095461345,720.0,30646.15283353369,0,4,2,3,107.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03367469990787108,9885.855752752805,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4834,2,41.0,0.0,1,400,0.0,0.0,0.0,0,11,0.0,0.0,0.0,1801.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,104839,2,1,4,0,2,,471.0,,22,2.0,0.0,7.0,4.0,2.5,4,4,772.600913566237,0.0,45239.31497551869,0,1,0,1,80.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03981050555196544,18095.725990207477,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +4835,2,78.0,0.0,1,111,950.0,0.0,0.0,0,74,2847.643697798824,0.0,1619.9405162034582,3730.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,104840,2,2,2,0,2,,800.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,704.407129926614,950.0,47949.38233836461,0,5,0,1,88.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07779036596714621,47949.38233836461,10,5,10,10_1,10_4,10_1_0 +4836,2,60.0,0.0,6,221,980.0,0.0,0.0,62,62,0.0,0.0,1671.09653250462,1075.0,131.6309764126695,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,104841,2,1,1,0,1,,263.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,2557.99926962146,980.0,25064.975823607383,4,4,0,1,110.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042888531294233846,16709.983882404922,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4837,2,45.0,0.0,6,300,1570.0,0.0,0.0,0,65,0.0,79.45963662061344,2677.164853094136,1660.0,41.567676761895626,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,4,104842,2,1,2,0,1,,200.0,475.0,12,1.0,0.0,4.0,1.0,1.0,1,1,857.02381855635,1570.0,17989.293077199127,0,1,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09227711132818213,17989.293077199127,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +4838,2,22.0,0.0,7,111,0.0,,,0,68,0.0,0.0,,444.0,0.0,,50,0,0,0,0,0,0,0,0,3,45.0,2,,5,104843,2,1,0,0,2,,0.0,50.0,12,1.0,0.0,1.0,1.0,1.0,1,1,128.9219421314448,0.0,17372.79800861202,0,1,3,4,24.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02555719578273465,17372.79800861202,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +4839,2,60.0,0.0,2,111,780.0,600.0,0.0,75,86,0.0,0.0,1330.0564238302077,1380.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,2,,2,104844,1,1,0,0,2,,0.0,540.0,41,1.0,5.0,5.0,3.0,2.0,3,3,1698.76911133411,780.0,28589.542241557097,5,7,2,3,108.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04826939824150328,14294.771120778549,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +4840,2,36.0,0.0,7,120,720.0,,,56,63,0.0,0.0,,976.0,354.71084170150937,,50,0,0,0,0,0,0,0,0,1,2.0,1,,5,104845,2,1,0,0,2,,600.0,,43,3.0,0.0,5.0,5.0,2.5999999999999996,3,3,110.45722232473346,720.0,51961.65787056668,1,1,0,1,148.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018783080448109574,19985.253027141036,5,3,5,5_1,5_2,5_0_0 +4841,2,44.0,0.0,9,112,1176.0,0.0,0.0,54,21,0.0,0.0,2005.315839005544,1206.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,104846,2,1,1,0,1,,204.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,839.041342287583,1176.0,74604.4715487262,1,1,1,2,95.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016165250888645847,35525.93883272676,9,5,9,9_1,9_0,9_0_0 +4842,1,38.0,402.0,6,111,230.0,,,0,85,0.0,0.0,,335.0,145.4868686666347,,71,0,0,0,0,0,0,0,0,0,,1,,4,104847,2,1,0,0,2,,192.0,415.0,31,0.0,0.0,3.0,3.0,1.8,2,2,118.46744883932188,230.0,2633.3046039495566,0,6,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.127216577792615,1462.9470021941981,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4843,2,48.0,0.0,6,111,570.0,,,0,22,0.0,0.0,,720.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,4,104848,2,2,0,0,1,,677.0,600.0,32,3.0,3.0,5.0,3.0,2.0,3,3,60.15118059037085,570.0,18024.29311272615,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0399460880655364,9012.146556363075,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +4844,2,70.0,0.0,7,111,760.0,0.0,0.0,77,74,1792.9608467622227,66.2163638505112,1295.9524129627664,2600.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,104849,2,1,2,0,1,,167.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,966.647149818489,760.0,46293.21930986994,5,5,0,1,184.0,6,5,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05616373280493948,30862.14620657996,8,4,8,8_1,8_2,8_0_0 +4845,2,76.0,0.0,1,400,400.0,0.0,0.0,0,78,0.0,1191.8945493092015,682.0802173488245,1420.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,104850,1,2,4,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1484.6355551422,400.0,23855.849744959327,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059524184431956444,23855.849744959327,6,3,6,6_1,6_0,6_1_0 +4847,2,41.0,0.0,2,111,660.0,0.0,0.0,46,33,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,10.0,1,,2,104852,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,715.396142394339,660.0,50672.25592036974,1,1,1,2,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013024878960138948,21113.439966820726,5,3,5,5_1,5_4,5_0_1 +4848,2,56.0,0.0,7,120,625.0,,,0,37,0.0,92.70290939071567,,737.0,58.19474746665388,,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,104853,2,1,0,0,2,,156.0,,12,1.0,3.0,9.0,1.0,1.0,1,1,136.241029703621,625.0,63649.08205258908,0,1,1,2,90.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011579114360063592,63649.08205258908,10,5,10,10_1,10_2,10_0_0 +4849,1,30.0,438.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,382.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,104854,2,1,0,1,2,444.0,0.0,392.0,32,1.0,0.0,4.0,4.0,1.9,1,1,342.179837588467,0.0,13249.307233736883,0,1,2,3,87.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02883169612274583,6973.319596703623,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4850,2,45.0,0.0,9,111,2400.0,0.0,0.0,54,34,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,104855,2,1,1,0,1,,371.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,1191.27562923563,2400.0,72886.40108662787,4,1,1,2,140.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03292795314653445,34707.81004125137,9,5,9,9_1,9_3,9_0_0 +4851,2,87.0,0.0,1,300,480.0,0.0,0.0,71,71,738.277995725621,0.0,818.4962608185893,1360.0,249.40606057137379,0.0,70,2,2,2,2,2,2,1,2,0,,1,,1,104856,2,3,3,0,1,,170.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,775.4953710527,480.0,17074.74926550319,5,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0.07964977867919053,11383.166177002126,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4852,2,87.0,0.0,2,111,465.0,,,0,77,0.0,0.0,,741.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,0,,1,,2,104857,2,1,0,0,1,,499.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,99.6964590069803,465.0,26593.7705246255,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027863668272005402,26593.7705246255,7,4,7,7_1,7_2,7_0_1 +4854,1,43.0,377.0,2,111,900.0,100.0,0.0,85,67,0.0,0.0,1534.680489034855,1000.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,3,90.0,2,,2,104859,2,1,0,1,1,,0.0,344.0,42,3.0,0.0,4.0,5.0,3.0,5,4,198.453925330174,900.0,21176.550464657135,6,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04722204410340401,7058.850154885712,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +4855,2,51.0,0.0,6,112,2000.0,0.0,0.0,43,43,0.0,0.0,3410.4010867441225,2300.0,415.67676761895626,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,4,104860,2,2,1,0,1,,0.0,,43,3.0,0.0,7.0,5.0,3.0,5,4,1228.48993675731,2000.0,141420.39264865607,1,1,0,1,150.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016263566780740778,47140.13088288536,10,5,10,10_1,10_1,10_0_0 +4856,2,73.0,0.0,2,400,1915.0,0.0,0.0,78,75,949.2145659329414,0.0,3265.4590405574972,2815.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,104861,2,1,1,0,1,,259.0,,41,1.0,4.0,7.0,3.0,2.0,3,3,1285.75807252105,1915.0,58078.142224622796,5,5,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04846918121300638,29039.071112311398,8,4,8,8_1,8_0,8_0_1 +4857,1,82.0,180.0,1,221,1695.0,0.0,0.0,0,78,0.0,0.0,2890.314921015644,1785.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,104862,2,2,0,0,2,,298.0,370.0,11,0.0,6.0,2.0,1.0,1.0,1,1,3766.66107764342,1695.0,14337.137323031631,0,5,2,3,55.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.12450184160073012,14337.137323031631,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +4858,2,58.0,0.0,2,111,238.0,80.0,0.0,0,55,0.0,0.0,405.83772932255056,318.0,0.0,151.8803238351831,50,2,1,2,2,1,1,2,2,2,12.0,2,,2,104863,2,3,0,1,1,477.0,0.0,253.0,12,1.0,1.0,3.0,1.0,1.0,1,1,339.853010650107,238.0,19305.883395656903,0,1,2,3,61.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01647166273010527,19305.883395656903,5,3,5,5_0,5_3,5_0_1 +4859,1,55.0,270.0,5,111,750.0,0.0,0.0,0,78,0.0,1085.9483671483836,1278.9004075290459,1635.0,90.06329965077386,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,104864,2,2,0,1,1,820.0,0.0,342.0,11,0.0,3.0,4.0,1.0,1.0,1,1,322.332532055352,750.0,9900.89362873203,0,7,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16513660900823032,9900.89362873203,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4860,2,30.0,0.0,1,112,320.0,800.0,0.0,54,67,0.0,0.0,545.6641738790596,1120.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,104865,1,2,0,0,1,,0.0,609.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1497.0222088091,320.0,38793.972441031656,1,1,2,3,45.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02887046439243734,25862.648294021103,7,4,7,7_0,7_2,7_1_0 +4861,2,47.0,0.0,8,111,240.0,,,0,45,0.0,0.0,,290.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,104866,2,2,0,0,2,,180.0,501.0,12,1.0,0.0,2.0,1.0,1.0,1,1,156.77893372447764,240.0,31723.804410218803,0,1,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009141400452796444,31723.804410218803,8,4,8,8_0,8_2,8_0_0 +4862,1,23.0,300.0,7,111,600.0,0.0,0.0,0,42,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,104867,2,2,2,0,1,,0.0,738.0,12,1.0,0.0,2.0,1.0,1.0,1,1,901.777357641988,600.0,11904.237094790786,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.050402221933445526,11904.237094790786,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +4863,2,44.0,0.0,8,400,520.0,0.0,0.0,46,47,1835.1481608036868,357.56836479276046,886.7042825534718,2630.0,138.5589225396521,0.0,31,2,2,2,2,2,2,2,1,2,30.0,1,2001.0,6,104868,2,1,2,0,1,,222.0,,43,2.0,0.0,7.0,4.0,2.3,3,3,1060.58613592192,520.0,54201.02545919152,1,1,1,2,166.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.048523067187726046,23565.66324312675,6,3,6,6_1,6_0,6_0_0 +4864,2,65.0,0.0,6,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,2408.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,4,104869,1,2,0,0,1,,0.0,503.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1471.35480284326,0.0,19748.030440616818,0,5,2,3,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12193621066368923,19748.030440616818,5,3,5,5_0,5_4,5_0_0 +4865,2,62.0,0.0,5,111,530.0,0.0,0.0,0,54,0.0,0.0,903.7562879871924,530.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,75.0,2,,3,104870,1,3,0,1,2,960.0,0.0,530.0,32,2.0,1.0,4.0,3.0,2.0,3,3,427.909900575856,530.0,24978.384207663486,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02121834605448152,12489.192103831743,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +4866,2,35.0,0.0,1,111,490.0,1187.0,0.0,54,53,0.0,0.0,835.54826625231,1677.0,0.0,2253.5243049045293,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,104871,2,2,2,0,1,,498.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,291.499170051089,490.0,38591.46985798005,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043455198938301784,21439.705476655585,6,3,6,6_1,6_3,6_1_0 +4867,2,63.0,0.0,1,112,273.0,0.0,0.0,0,72,0.0,264.8654554020448,465.5197483405727,2465.0,2760.0937369898697,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,104872,2,3,1,0,1,,118.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,2910.82490875271,273.0,11070.029184553037,0,5,0,1,108.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22267330635764052,11070.029184553037,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +4868,2,59.0,0.0,2,112,600.0,2666.0,0.0,46,37,0.0,0.0,1023.1203260232367,3266.0,0.0,5061.411791807477,50,0,0,0,0,0,0,0,0,3,105.0,1,,2,104873,2,3,1,0,1,,383.0,,43,2.0,1.0,8.0,2.0,1.5,2,2,846.137209892864,600.0,43904.798640606336,4,1,1,2,160.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07438822409219221,29269.865760404224,8,4,8,8_1,8_2,8_0_1 +4869,1,24.0,327.0,9,111,0.0,0.0,0.0,67,85,0.0,0.0,0.0,1609.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,104874,1,2,5,0,1,,237.0,620.0,42,1.0,0.0,3.0,3.0,1.8,2,2,253.225631457344,0.0,21038.866898601904,4,7,2,3,70.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0764775026979672,11688.259388112168,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +4870,2,81.0,0.0,1,111,300.0,100.0,0.0,0,78,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,1,104875,2,1,0,1,2,,0.0,550.0,11,0.0,2.0,1.0,1.0,1.0,1,1,698.754435088962,300.0,19264.028816020276,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02076408854140384,19264.028816020276,5,3,5,5_0,5_4,5_1_0 +4871,2,74.0,0.0,9,111,402.0,,,0,75,0.0,0.0,,402.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,104876,2,2,0,0,2,,600.0,1021.0,11,0.0,2.0,4.0,1.0,1.0,1,1,109.6501166697795,402.0,33620.96775358173,0,5,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011956824174318238,33620.96775358173,9,5,9,9_1,9_3,9_0_0 +4872,2,27.0,0.0,2,111,0.0,,,42,43,0.0,0.0,,1138.0,0.0,,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,104877,2,1,0,0,2,,263.0,250.0,43,2.0,0.0,3.0,2.0,1.5,2,2,97.49076290778572,0.0,6599.905308195379,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.17242671627226192,4399.936872130253,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +4874,1,55.0,219.0,1,111,500.0,1000.0,0.0,56,78,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,1,104879,1,2,2,0,1,,410.0,336.0,42,1.0,2.0,4.0,2.0,1.5,2,2,276.350529806376,500.0,11837.37807317742,4,7,2,3,53.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12671725028356437,7891.58538211828,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +4875,2,81.0,0.0,7,112,230.0,0.0,0.0,0,75,0.0,0.0,392.1961249755741,936.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,104880,2,3,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,847.56960289136,230.0,22001.988179874847,0,5,0,1,62.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04254160998305401,22001.988179874847,6,3,6,6_0,6_1,6_0_0 +4876,2,60.0,0.0,5,300,520.0,0.0,0.0,0,72,1252.9632270314826,0.0,886.7042825534718,1808.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104881,1,1,2,0,2,,218.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1683.72093577618,520.0,37010.86501377994,0,5,0,1,85.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04885051995750012,37010.86501377994,9,5,9,9_1,9_0,9_0_0 +4877,2,71.0,0.0,2,112,0.0,0.0,1200.0,77,75,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,33,0,0,0,0,0,0,0,0,0,,1,,2,104882,2,1,2,0,1,,205.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,686.059187377151,0.0,44368.770422756934,5,5,0,1,90.0,7,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027046050376562044,29579.180281837955,8,4,8,8_1,8_1,8_0_1 +4878,2,78.0,0.0,1,112,400.0,0.0,0.0,86,72,2636.7071275915036,0.0,682.0802173488245,3020.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,104883,1,2,1,0,1,,320.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,593.866543219071,400.0,63387.88376723077,6,5,0,1,56.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04764317438155634,42258.589178153845,9,5,9,9_1,9_0,9_1_0 +4879,2,35.0,0.0,2,111,190.0,50.0,0.0,0,34,0.0,0.0,323.9881032406916,240.0,0.0,94.92520239698945,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,104884,1,1,0,1,1,,0.0,838.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1305.75912063781,190.0,28433.475750454145,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008440754908276265,28433.475750454145,8,4,8,8_0,8_4,8_0_1 +4880,2,42.0,0.0,8,112,860.0,0.0,0.0,42,43,0.0,0.0,1466.4724672999725,1663.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,104885,2,2,2,0,1,,600.0,715.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2476.3445705776,860.0,46823.37953391178,1,1,2,3,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03551644534319814,26012.98862995099,7,4,7,7_1,7_0,7_0_0 +4881,2,68.0,0.0,2,111,572.0,1674.0,0.0,74,74,0.0,0.0,975.374710808819,2246.0,0.0,3178.0957762512066,10,1,2,2,1,1,2,2,2,0,,1,,2,104886,2,3,3,0,1,,303.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,663.982783346761,572.0,75378.42311184846,5,5,0,1,89.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.029796325092491346,50252.28207456564,10,5,10,10_1,10_2,10_0_1 +4882,1,51.0,315.0,1,111,350.0,0.0,0.0,0,85,0.0,264.8654554020448,596.8201901802214,670.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,104887,2,1,1,0,1,,320.0,315.0,21,1.0,0.0,4.0,2.0,1.5,2,2,353.239366876938,350.0,14446.14010947697,0,7,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.046379170831969574,9630.760072984647,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +4883,2,64.0,0.0,1,111,415.0,1247.0,0.0,0,74,0.0,0.0,707.6582254994054,1765.0,142.71569021584165,2367.434547780917,20,0,0,0,0,0,0,0,0,0,,1,,1,104888,2,1,3,0,1,,191.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,270.00359552945,415.0,32804.357918253954,0,5,1,2,126.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05380382705243767,32804.357918253954,8,4,8,8_1,8_3,8_1_0 +4884,2,86.0,0.0,2,112,550.0,0.0,0.0,72,72,2953.111982902484,0.0,937.8602988546337,3350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104889,2,2,2,0,1,,480.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,942.180613568674,550.0,19980.500910475697,5,5,0,1,70.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.16766346424496337,13320.333940317132,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +4885,2,31.0,0.0,1,111,180.0,0.0,0.0,0,54,0.0,0.0,306.936097806971,180.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,3.0,2,,1,104890,2,1,0,0,1,,0.0,490.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1652.21358189436,180.0,20206.36204883046,0,1,2,3,35.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008908085461648866,20206.36204883046,5,3,5,5_0,5_3,5_1_0 +4886,2,68.0,0.0,6,111,564.0,,,72,77,0.0,0.0,,828.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,104891,2,1,0,0,1,,331.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,83.19506270799614,564.0,47974.244810328266,5,5,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017259260740290834,23987.122405164133,6,3,6,6_1,6_2,6_0_0 +4887,2,63.0,0.0,2,111,800.0,0.0,0.0,0,77,0.0,0.0,1364.160434697649,800.0,0.0,0.0,60,2,2,2,1,2,2,2,2,0,,2,,2,104892,1,2,0,1,1,,700.0,398.0,21,2.0,0.0,4.0,4.0,2.5,4,4,286.358555561316,800.0,19041.641870161475,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04201318381339854,7616.65674806459,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +4888,1,45.0,448.0,7,120,360.0,,,0,67,0.0,0.0,,402.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,2,,5,104893,2,1,0,0,2,,534.0,442.0,32,1.0,3.0,4.0,4.0,2.3,3,1,135.08200153546053,360.0,25461.56443845443,0,4,2,3,86.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015788503529377093,11070.245408023666,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +4889,1,47.0,450.0,1,111,1200.0,0.0,0.0,35,63,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,2,2,2,2,1,1,2,2,0,,2,,1,104894,2,3,0,0,1,,0.0,500.0,43,2.0,0.0,4.0,4.0,2.5,4,3,304.084602622556,1200.0,15975.500703894071,1,4,2,3,75.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.07511501656455104,6390.200281557629,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +4890,2,58.0,0.0,6,111,500.0,70.0,0.0,90,38,0.0,0.0,852.6002716860306,640.0,96.99124577775646,132.89528335578524,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,104895,2,1,2,0,1,,200.0,920.0,42,2.0,2.0,4.0,3.0,2.0,3,3,691.082390224393,500.0,53562.90513863966,5,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01194856773252785,26781.45256931983,7,4,7,7_1,7_4,7_0_0 +4891,2,60.0,0.0,8,112,545.0,1150.0,0.0,77,37,0.0,46.35145469535784,929.3342961377733,1730.0,0.0,2183.2796551307574,70,0,0,0,0,0,0,0,0,2,60.0,3,1999.0,6,104896,2,1,0,0,1,,450.0,,42,1.0,0.0,6.0,3.0,2.0,3,3,676.665654374995,545.0,37002.03477450605,5,1,0,1,140.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04675418556149104,18501.017387253025,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +4893,2,51.0,0.0,1,111,360.0,800.0,0.0,0,42,0.0,0.0,613.872195613942,1160.0,0.0,1518.8032383518312,10,0,0,0,0,0,0,0,0,2,15.0,2,,1,104898,2,3,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,849.348332419121,360.0,47983.268867047496,0,1,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024175093264573934,47983.268867047496,10,5,10,10_0,10_4,10_1_0 +4894,2,42.0,0.0,2,111,200.0,800.0,0.0,62,38,0.0,0.0,341.04010867441224,1000.0,0.0,1518.8032383518312,12,2,2,1,2,1,2,2,2,3,45.0,2,,2,104899,2,1,0,0,1,,0.0,,43,2.0,2.0,3.0,5.0,2.6,3,3,785.818959602169,200.0,91770.2527181091,1,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010896777227711275,35296.25104542657,9,5,9,9_0,9_4,9_0_1 +4895,2,46.0,0.0,8,111,360.0,,,0,47,0.0,0.0,,498.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,104900,1,1,0,0,2,,329.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,80.62760012483152,360.0,14305.224458578403,0,4,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03481245620730996,7947.346921432446,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +4896,2,42.0,0.0,1,112,1350.0,0.0,0.0,46,46,1054.6828510366015,0.0,2302.0207335522828,2350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,104901,2,2,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,387.499157993891,1350.0,53253.89993051419,1,1,0,1,130.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04412822353041346,23153.86953500617,6,3,6,6_1,6_1,6_1_0 +4897,2,62.0,0.0,2,111,1500.0,,,22,22,0.0,0.0,,1750.0,346.39730634913025,,70,0,0,0,0,0,0,0,0,0,,1,,2,104902,2,2,0,0,2,,1120.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,104.66902557429529,1500.0,53145.731887882546,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03292832628012048,35430.48792525503,9,5,9,9_1,9_3,9_0_1 +4898,2,40.0,0.0,9,111,1300.0,0.0,0.0,67,21,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,104903,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,921.83413601158,1300.0,43607.94654294699,1,1,1,2,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029811080389206213,18959.97675780304,5,3,5,5_1,5_3,5_0_0 +4899,2,69.0,0.0,5,120,0.0,0.0,2922.0,0,75,0.0,0.0,1841.7900445918813,2922.0,0.0,3496.8513351839974,41,0,0,0,0,0,0,0,0,0,,1,,3,104904,1,2,3,0,2,,356.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,298.196780490445,0.0,23693.128135433686,0,5,0,1,110.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12332689813254644,23693.128135433686,6,3,6,6_1,6_0,6_0_0 +4900,2,52.0,0.0,1,221,450.0,0.0,0.0,0,63,0.0,0.0,767.3402445174275,630.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104905,2,1,2,0,1,,370.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1108.94627117384,450.0,14698.161773692917,0,4,0,1,108.0,1,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04286250278776952,14698.161773692917,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +4901,2,49.0,0.0,1,112,2359.0,0.0,0.0,31,43,0.0,0.0,4022.5680818146925,2439.0,110.84713803172167,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,104906,2,1,2,0,1,,299.0,,43,3.0,0.0,7.0,5.0,3.0,5,4,810.218843994523,2359.0,25369.85421369579,1,1,0,1,180.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09613772233201552,8456.618071231931,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +4902,2,27.0,0.0,9,300,0.0,0.0,0.0,0,54,0.0,0.0,0.0,501.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,104907,2,1,1,0,1,,243.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1888.37976285223,0.0,14854.485534354495,0,1,1,2,69.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03372718623215321,14854.485534354495,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +4903,1,32.0,200.0,9,300,1350.0,0.0,0.0,52,47,0.0,529.7309108040896,2302.0207335522828,1810.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,2009.0,6,104908,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,714.724923606135,1350.0,38369.502837451815,1,1,1,2,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.047172881224650375,15987.292848938258,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +4904,2,57.0,0.0,7,111,300.0,,,0,43,0.0,0.0,,346.0,63.73710436823996,,33,0,0,0,0,0,0,0,0,2,7.0,1,,5,104909,2,1,0,0,1,,180.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,138.28778747932637,300.0,52058.00339618942,0,1,1,2,145.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006646432391322306,52058.00339618942,10,5,10,10_1,10_3,10_0_0 +4905,1,56.0,185.0,7,111,0.0,,,0,63,0.0,0.0,,66.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,2,,5,104910,2,2,0,0,2,,0.0,325.0,12,1.0,1.0,1.0,1.0,1.0,1,1,131.0845435045899,0.0,8726.6936863218,0,4,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.007563001793388056,8726.6936863218,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4906,2,58.0,0.0,8,111,510.0,,,0,52,0.0,0.0,,636.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,104911,2,2,0,0,2,,400.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,82.38977593633344,510.0,41073.19581940614,0,1,1,2,130.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015484551112029727,41073.19581940614,9,5,9,9_1,9_3,9_0_0 +4907,1,34.0,491.0,9,112,418.0,757.0,0.0,52,65,0.0,0.0,712.7738271295216,1175.0,0.0,1437.1675642904202,71,0,0,0,0,0,0,0,0,3,60.0,2,2005.0,6,104912,2,1,0,1,1,,0.0,461.0,43,2.0,0.0,4.0,5.0,2.4,2,2,463.215847328255,418.0,34399.47996153551,4,1,2,3,75.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034157493116577654,14333.116650639795,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +4908,2,64.0,0.0,8,111,320.0,,,71,56,0.0,0.0,,572.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,104913,2,1,0,0,1,,275.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,104.15114332750784,320.0,33937.0,5,1,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016854760291127677,22624.666666666668,6,3,6,6_1,6_2,6_0_0 +4909,2,48.0,0.0,7,211,0.0,,,0,52,0.0,0.0,,559.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,104914,2,2,0,0,2,,616.0,,32,2.0,0.0,5.0,5.0,3.0,5,4,7.559826641115449,0.0,53585.13499130134,0,1,0,1,92.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010431997606999486,17861.711663767113,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4910,2,41.0,0.0,1,112,1700.0,0.0,0.0,55,55,0.0,0.0,2898.840923732504,1800.0,138.5589225396521,0.0,44,2,2,1,1,2,2,2,2,2,45.0,1,,1,104915,2,1,2,0,2,,380.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,4,2,1153.64106178104,1700.0,37667.75028424556,1,1,1,2,80.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.047786235875967496,14487.59626317137,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +4911,2,63.0,0.0,7,111,3510.0,0.0,0.0,0,31,0.0,0.0,5985.253907235935,3510.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,5,104916,2,1,0,0,1,,0.0,,12,1.0,2.0,8.0,1.0,1.0,1,1,781.367284055097,3510.0,492786.19061724324,0,1,0,1,300.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007122764531212861,492786.19061724324,10,5,10,10_0,10_4,10_0_0 +4912,2,64.0,0.0,8,111,732.0,,,0,77,0.0,0.0,,870.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,104917,2,1,0,0,2,,558.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,96.79278250254946,732.0,15127.0,0,5,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05751305612480994,15127.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +4913,2,62.0,0.0,1,111,380.0,1220.0,0.0,75,78,0.0,0.0,647.9762064813832,1600.0,0.0,2316.1749384865425,42,2,2,2,2,1,2,2,2,0,,1,,1,104918,1,3,2,0,1,,440.0,219.0,41,0.0,3.0,5.0,2.0,1.5,2,2,851.659808246863,380.0,27416.407671251647,5,5,2,3,87.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.05835921391254082,18277.605114167764,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +4914,2,78.0,0.0,6,112,166.0,0.0,0.0,0,75,0.0,0.0,283.06329019976215,216.0,69.27946126982604,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,104919,2,1,3,0,1,,114.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,344.524675525854,166.0,37217.28819395809,0,5,0,1,206.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005803754396997301,37217.28819395809,9,5,9,9_1,9_0,9_0_0 +4915,2,91.0,0.0,1,111,156.0,99.0,0.0,0,72,0.0,0.0,266.01128476604157,255.0,0.0,187.95190074603912,70,0,0,0,0,0,0,0,0,0,,2,,1,104920,1,2,0,0,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1029.94744862886,156.0,20770.349732382227,0,5,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012277116335814011,20770.349732382227,5,3,5,5_0,5_4,5_1_0 +4916,2,58.0,0.0,6,112,1550.0,0.0,0.0,0,42,0.0,0.0,2643.0608422266946,1646.0,133.01656563806603,0.0,20,2,2,2,1,2,2,2,2,2,5.0,1,,4,104921,2,2,1,0,1,,250.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1878.9267702147,1550.0,43883.66981846159,0,1,0,1,105.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03750825778266015,43883.66981846159,10,5,10,10_1,10_2,10_0_0 +4917,2,41.0,0.0,1,111,450.0,1200.0,0.0,0,46,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,1,15.0,2,,1,104922,2,3,0,0,1,,200.0,870.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1746.00336794334,450.0,26889.1410036588,0,1,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.061363061013198036,20683.954618199074,5,3,5,5_0,5_3,5_1_0 +4918,2,46.0,0.0,5,111,0.0,0.0,475.0,62,46,0.0,0.0,299.40118794700334,475.0,0.0,568.4477700932234,31,0,0,0,0,0,0,0,0,2,75.0,2,,3,104923,1,2,0,1,1,336.0,0.0,267.0,43,4.0,2.0,3.0,4.0,2.5,4,4,278.661852484057,0.0,57592.4851533284,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008247603810382692,23036.99406133136,6,3,6,6_0,6_4,6_0_0 +4920,2,36.0,0.0,2,111,600.0,,,0,43,0.0,0.0,,688.0,121.93185183489385,,33,0,0,0,0,0,0,0,0,2,10.0,2,,2,104925,2,1,0,0,2,,800.0,325.0,32,1.0,0.0,3.0,2.0,1.3,1,1,106.94228275519184,600.0,36260.99680129891,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01897355452664652,27893.074462537625,7,4,7,7_0,7_3,7_0_1 +4921,2,68.0,0.0,2,111,430.0,52.0,0.0,77,74,0.0,0.0,733.2362336499863,482.0,0.0,98.72221049286902,20,2,1,2,2,1,2,2,2,0,,2,,2,104926,2,2,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1269.28558096758,430.0,67577.65316992169,5,5,0,1,84.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.007132535348453542,45051.76877994779,10,5,10,10_0,10_3,10_0_1 +4922,2,81.0,0.0,2,111,262.0,658.0,0.0,0,77,0.0,0.0,446.76254236348,920.0,0.0,1249.2156635443812,70,0,0,0,0,0,0,0,0,0,,2,,2,104927,2,1,0,0,1,,0.0,411.0,11,0.0,6.0,3.0,1.0,1.0,1,1,1430.43516033157,262.0,16080.89411136057,0,5,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05721074920517344,16080.89411136057,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +4923,1,75.0,34.0,2,111,150.0,155.0,0.0,0,77,0.0,0.0,255.78008150580916,305.0,0.0,294.2681274306673,70,0,0,0,0,0,0,0,0,0,,2,,2,104928,2,2,0,1,1,490.0,120.0,326.0,11,0.0,1.0,3.0,1.0,1.0,1,1,347.283885129709,150.0,14131.021846408148,0,5,2,3,63.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.021583718666284953,14131.021846408148,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +4925,2,66.0,0.0,1,120,1851.0,1433.0,0.0,0,75,0.0,0.0,3156.326205781685,3284.0,0.0,2720.5563006977177,31,0,0,0,0,0,0,0,0,0,,1,,1,104930,1,2,3,0,1,,415.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1298.4992856376,1851.0,52545.52200843049,0,5,0,1,150.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06249818965492644,52545.52200843049,10,5,10,10_1,10_0,10_1_0 +4926,1,27.0,250.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,439.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,104931,2,2,0,0,1,,197.0,355.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1291.98047726594,0.0,5634.294493369121,0,4,2,3,45.0,4,3,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07791570009637402,5634.294493369121,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +4927,2,55.0,0.0,2,111,721.0,370.0,0.0,0,52,0.0,0.0,1229.449591771256,1091.0,0.0,702.446497737722,50,2,2,2,1,1,1,1,2,1,5.0,2,,2,104932,1,3,0,0,2,,0.0,425.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1922.37323811381,721.0,16426.60549678887,0,1,2,3,44.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.06641664342722983,16426.60549678887,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +4928,1,23.0,100.0,7,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,1065.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,104933,2,1,0,0,1,,0.0,610.0,22,1.0,0.0,2.0,2.0,1.5,2,2,1646.76926162674,0.0,18558.0,0,1,2,3,45.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.057387649531199486,12372.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +4929,0,50.0,0.0,2,111,665.0,0.0,0.0,78,56,0.0,0.0,1133.9583613424206,893.0,315.91434339040677,0.0,50,2,1,2,1,1,2,2,2,0,,2,,2,104934,1,2,0,1,1,,0.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,732.545241355224,665.0,46616.10410532198,5,1,5,0,77.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019156470004065604,23308.05205266099,6,3,6,6_0,6_2,6_0_1 +4930,2,82.0,0.0,2,111,786.0,110.0,0.0,0,72,0.0,0.0,1340.28762709044,896.0,0.0,208.8354452733768,71,0,0,0,0,0,0,0,0,0,,2,,2,104935,2,1,0,1,1,,0.0,503.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1169.61409593547,786.0,24416.542387155165,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03669643251664329,24416.542387155165,7,4,7,7_0,7_4,7_0_1 +4931,2,54.0,0.0,2,111,250.0,170.0,0.0,0,52,0.0,0.0,426.3001358430153,570.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,104936,1,3,0,1,1,,215.0,312.0,22,1.0,1.0,3.0,2.0,1.5,2,2,286.60373490052,250.0,33188.62574663465,0,1,2,3,58.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017174558668124378,22125.750497756435,6,3,6,6_0,6_3,6_0_1 +4932,2,42.0,0.0,6,111,0.0,,,74,42,0.0,0.0,,516.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,104937,1,3,0,0,2,,0.0,1100.0,42,1.0,2.0,6.0,3.0,1.8,2,2,150.9630851333323,0.0,58335.34524578596,5,1,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008845409208189693,32408.525136547756,8,4,8,8_1,8_2,8_0_0 +4933,2,25.0,0.0,2,111,175.0,550.0,0.0,85,67,0.0,0.0,298.4100950901107,725.0,0.0,1044.177226366884,50,2,2,2,2,1,2,2,2,0,,2,,2,104938,2,2,0,1,1,722.0,0.0,322.0,42,3.0,0.0,4.0,5.0,3.0,5,5,654.178830849693,175.0,23798.662824207495,6,1,2,3,90.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.030463896453146323,7932.887608069165,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +4935,2,85.0,0.0,1,221,380.0,1153.0,0.0,77,78,0.0,0.0,647.9762064813832,1533.0,0.0,2188.9751672745765,71,0,0,0,0,0,0,0,0,0,,1,,1,104940,2,1,2,0,1,,285.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,525.469212872718,380.0,27260.67436147672,5,5,0,1,60.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056234852435138254,18173.782907651144,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +4936,1,62.0,270.0,1,111,375.0,1272.0,0.0,0,78,0.0,0.0,639.4502037645229,1647.0,0.0,2414.8971489794117,71,0,0,0,0,0,0,0,0,0,,2,,1,104941,2,1,0,0,1,,0.0,298.0,11,0.0,5.0,5.0,1.0,1.0,1,1,553.473545322663,375.0,11380.400632271067,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1447224973196155,11380.400632271067,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +4937,2,63.0,0.0,5,111,1500.0,0.0,0.0,78,56,0.0,662.163638505112,2557.8008150580918,2180.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,104942,2,1,1,0,1,,973.0,405.0,42,1.0,4.0,5.0,4.0,2.1,2,2,284.761010945724,1500.0,38188.476917008025,5,1,2,3,90.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05708528268193624,18184.98900809906,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4939,2,43.0,0.0,2,112,1200.0,0.0,0.0,54,37,0.0,0.0,2046.2406520464733,1360.0,221.69427606344334,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,104944,2,3,1,0,1,,500.0,,43,3.0,0.0,5.0,5.0,3.0,5,3,1353.84860408055,1200.0,70690.28425516376,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019238853179468652,23563.428085054587,6,3,6,6_1,6_0,6_0_1 +4940,2,70.0,0.0,2,120,456.0,1550.0,0.0,77,77,0.0,0.0,777.5714477776598,2006.0,0.0,2942.681274306673,60,0,0,0,0,0,0,0,0,0,,1,,2,104945,2,1,2,0,1,,388.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,894.543514986331,456.0,30396.87500340197,5,5,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06599362598212782,20264.583335601314,5,3,5,5_1,5_0,5_0_1 +4941,2,52.0,0.0,2,221,489.0,0.0,0.0,52,31,0.0,0.0,833.843065708938,539.0,69.27946126982604,0.0,10,2,2,1,1,2,2,2,2,0,,1,,2,104946,2,1,3,0,1,,240.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1346.25254396971,489.0,20500.961249940585,1,1,0,1,100.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.026291450114397055,13667.30749996039,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +4942,2,54.0,0.0,6,111,1250.0,0.0,0.0,77,48,0.0,264.8654554020448,2131.5006792150766,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,104947,2,1,2,0,1,,260.0,,42,1.0,7.0,5.0,2.0,1.5,2,2,750.270187160712,1250.0,43657.46398376048,5,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03321310648138804,29104.97598917365,8,4,8,8_1,8_4,8_0_0 +4943,2,58.0,0.0,2,111,600.0,340.0,0.0,56,75,0.0,0.0,1023.1203260232367,940.0,0.0,645.4913762995283,60,0,0,0,0,0,0,0,0,0,,2,,2,104948,2,1,0,1,1,2100.0,550.0,512.0,42,3.0,2.0,5.0,4.0,2.5,4,4,215.463600852791,600.0,25357.430841044705,4,5,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03707000152706609,10142.972336417883,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +4944,2,59.0,0.0,2,111,450.0,1000.0,0.0,0,85,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,1,,2,104949,2,1,3,0,1,,195.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,403.73681787307,450.0,10420.178018000875,0,6,0,1,86.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13915309292174496,10420.178018000875,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +4945,2,34.0,0.0,7,111,1300.0,0.0,0.0,42,42,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,25.0,2,,5,104950,2,1,0,0,1,,200.0,580.0,43,2.0,0.0,2.0,2.0,1.5,2,2,219.405282060899,1300.0,5288.562986161947,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.24581346641830298,3525.7086574412983,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +4946,2,45.0,0.0,9,400,1400.0,0.0,0.0,56,68,0.0,264.8654554020448,2387.2807607208856,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,2011.0,6,104951,2,1,1,0,1,,290.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,1311.49902137752,1400.0,20878.441569555016,1,1,1,2,127.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07663407226395302,9077.583291110877,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +4947,1,32.0,364.0,6,211,0.0,,,0,85,0.0,0.0,,607.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,104952,1,1,0,0,1,,598.0,436.0,31,0.0,0.0,4.0,5.0,2.4,2,1,93.88785905833714,0.0,18471.36470588235,0,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03286167587859364,7696.401960784314,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4948,2,44.0,0.0,9,111,540.0,,,55,62,0.0,0.0,,540.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,104953,2,1,0,0,2,,500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,199.03978870355564,540.0,37456.06497195378,1,1,1,2,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01441689084009063,14406.178835366842,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +4949,2,26.0,0.0,2,112,840.0,0.0,0.0,55,65,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,25.0,2,,2,104954,2,2,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,3.0,1.8,2,2,2350.94621037362,840.0,46164.81995847318,1,1,2,3,47.0,9,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.01819567369169009,25647.122199151763,7,4,7,7_0,7_1,7_0_1 +4950,0,66.0,0.0,1,120,1325.0,0.0,0.0,0,77,0.0,569.4607291143963,2259.390719967981,1825.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,104955,2,2,4,0,1,,409.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1843.81944957782,1325.0,12684.457953505987,0,5,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14387686148587606,12684.457953505987,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +4951,2,49.0,0.0,1,120,1040.0,0.0,0.0,64,52,0.0,993.245457757668,1773.4085651069436,1790.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,104956,2,1,2,0,1,,362.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1341.28973965357,1040.0,54270.81567351997,1,1,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03298273626046465,23596.0068145739,6,3,6,6_1,6_0,6_1_0 +4952,2,82.0,0.0,5,120,342.0,1000.0,0.0,86,86,0.0,0.0,583.1785858332449,1342.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,3,104957,2,1,2,0,2,,180.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1007.50471943738,342.0,13434.611585228513,5,5,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09989123924323515,8956.407723485676,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +4953,1,30.0,377.0,2,111,0.0,0.0,0.0,56,22,0.0,0.0,0.0,782.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,104958,2,2,0,1,1,923.0,0.0,359.0,43,2.0,0.0,3.0,3.0,1.8,2,2,531.94454053975,0.0,16708.87620299551,4,1,2,3,70.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.046801471894310026,9282.709001664172,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +4954,2,58.0,0.0,6,111,970.0,,,77,75,0.0,0.0,,1120.0,207.83838380947813,,33,0,0,0,0,0,0,0,0,0,,1,,4,104959,2,1,0,0,2,,320.0,,41,0.0,3.0,6.0,3.0,2.0,3,3,111.18197494652526,970.0,62773.4958554541,5,5,0,1,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01784192491969823,31386.74792772705,8,4,8,8_1,8_2,8_0_0 +4955,2,67.0,0.0,2,112,380.0,700.0,0.0,78,77,0.0,0.0,647.9762064813832,1080.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,2,104960,2,1,1,0,1,,160.0,470.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1810.28984886204,380.0,29020.729010907537,5,5,2,3,71.0,8,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037214778429379855,19347.15267393836,5,3,5,5_1,5_0,5_0_1 +4956,2,52.0,0.0,8,111,1142.0,1272.0,0.0,64,54,0.0,662.163638505112,1947.3390205308938,2914.0,0.0,2414.8971489794117,31,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,104961,2,1,2,0,1,,225.0,,43,4.0,0.0,5.0,5.0,3.0,5,5,460.597409669825,1142.0,46425.75212623752,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06276688834413417,15475.250708745842,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +4957,2,24.0,0.0,1,112,1860.0,0.0,0.0,21,52,0.0,0.0,3171.673010672034,1860.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,104962,1,3,3,0,2,,75.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1949.60198150307,1860.0,27650.44185692705,1,1,2,3,70.0,9,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06726836444872322,18433.62790461803,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +4958,2,56.0,0.0,2,111,300.0,100.0,0.0,0,63,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,31,2,2,2,2,1,2,2,2,2,3.0,2,,2,104963,1,3,0,1,1,583.0,0.0,338.0,32,3.0,1.0,3.0,3.0,2.0,3,3,294.20918795168,300.0,55211.773364325956,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.007244831593445112,27605.886682162978,7,4,7,7_0,7_4,7_0_1 +4959,0,83.0,0.0,2,111,216.0,667.0,0.0,0,78,0.0,0.0,368.3233173683652,883.0,0.0,1266.3021999758394,71,0,0,0,0,0,0,0,0,0,,1,,2,104964,2,1,2,0,1,,282.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1101.83801903303,216.0,23102.29275902578,0,5,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03822131462060288,23102.29275902578,6,3,6,6_1,6_3,6_0_1 +4960,2,44.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,1559.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,104965,2,1,1,0,1,,146.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,654.52890521604,0.0,525119.8803574452,1,1,1,2,250.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0029688458927489094,250057.0858844977,10,5,10,10_1,10_4,10_1_0 +4961,2,57.0,0.0,8,221,2004.0,,,72,45,0.0,0.0,,2109.0,145.4868686666347,,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,104966,2,1,0,0,2,,600.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,94.67961842688156,2004.0,62748.467315434435,5,1,0,1,134.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03361038269505656,41832.31154362296,9,5,9,9_1,9_1,9_0_0 +4962,0,78.0,0.0,1,111,169.0,1049.0,0.0,0,77,0.0,0.0,288.17889182987835,1218.0,0.0,1991.5307462888386,70,0,0,0,0,0,0,0,0,0,,2,,1,104967,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1441.15463576883,169.0,25326.429394707913,0,5,5,0,61.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.048092053602096285,25326.429394707913,7,4,7,7_0,7_2,7_1_0 +4963,2,59.0,0.0,7,221,700.0,0.0,0.0,43,11,0.0,0.0,1193.6403803604428,800.0,138.5589225396521,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,5,104968,2,1,2,0,1,,258.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,579.159145879608,700.0,30580.239756934687,1,1,0,1,135.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026160684362148724,15290.119878467343,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +4964,2,38.0,0.0,6,111,300.0,1284.0,0.0,0,52,0.0,0.0,511.56016301161833,1584.0,0.0,2437.679197554689,42,2,2,2,2,1,2,2,2,2,10.0,2,,4,104969,1,3,0,0,1,,0.0,293.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2204.02173019759,300.0,20223.844353504574,0,1,2,3,70.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.07832338759695359,20223.844353504574,5,3,5,5_0,5_3,5_0_0 +4965,1,45.0,406.0,9,111,331.0,1252.0,0.0,0,54,0.0,0.0,564.4213798561523,1583.0,0.0,2376.927068020616,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,104970,1,3,3,0,1,,458.0,405.0,32,1.0,3.0,5.0,3.0,1.8,2,1,490.857617346164,331.0,9770.011306906217,0,4,2,3,93.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.16202642456319474,5427.784059392343,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +4966,2,84.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,540.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,104971,2,2,0,1,1,,0.0,560.0,11,0.0,0.0,1.0,1.0,1.0,1,1,747.798053116979,0.0,22646.707817441154,0,5,2,3,30.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023844525409742953,22646.707817441154,6,3,6,6_0,6_2,6_0_1 +4967,1,41.0,500.0,7,111,1000.0,,,56,68,0.0,0.0,,1130.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,0,,1,,5,104972,2,2,0,0,2,,600.0,880.0,43,2.0,0.0,6.0,3.0,1.8,2,2,116.45532878142681,1000.0,24023.587366883723,4,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0470371049395268,13346.437426046512,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +4968,0,27.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,526.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,104973,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1151.90748461844,0.0,12777.020217364232,0,1,0,1,26.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041167658112112496,12777.020217364232,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +4969,2,32.0,0.0,9,111,1750.0,0.0,0.0,54,37,0.0,0.0,2984.100950901107,1750.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,104974,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,259.456432152017,1750.0,53140.824989549954,1,1,1,2,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0329313668040369,25305.154756928547,7,4,7,7_1,7_2,7_0_0 +4970,1,31.0,220.0,1,111,270.0,112.0,0.0,0,52,0.0,0.0,460.40414671045653,382.0,0.0,212.63245336925638,50,1,2,2,2,1,2,2,2,2,30.0,2,,1,104975,2,1,0,1,1,571.0,0.0,161.0,32,1.0,0.0,3.0,2.0,1.3,1,1,334.582386970465,270.0,18352.380708571814,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.02081473821113464,14117.215929670627,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +4971,1,51.0,472.0,7,111,394.0,,,0,81,0.0,0.0,,658.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,2,,5,104976,2,2,0,0,2,,397.0,405.0,32,3.0,0.0,4.0,3.0,2.0,3,3,117.02668356997007,394.0,17820.209287076537,0,4,2,3,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03692436993302827,8910.104643538269,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +4972,2,48.0,0.0,2,111,250.0,200.0,0.0,42,67,0.0,0.0,426.3001358430153,450.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,104977,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,184.605240549706,250.0,40015.296560923656,4,1,0,1,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011245699486816769,16673.04023371819,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +4973,2,66.0,0.0,2,111,180.0,180.0,0.0,78,77,0.0,0.0,306.936097806971,360.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,2,,2,104978,2,1,0,1,1,,400.0,404.0,41,0.0,7.0,3.0,2.0,1.5,2,2,353.802629770399,180.0,21874.45919357144,5,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01645754973022594,14582.972795714295,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +4974,1,46.0,253.0,1,300,360.0,,,0,81,0.0,0.0,,448.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,1,104979,2,3,0,0,2,,160.0,530.0,12,1.0,0.0,3.0,1.0,1.0,1,1,124.9753839058977,360.0,21641.368955175847,0,4,2,3,40.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0207010933979227,21641.368955175847,6,3,6,6_1,6_1,6_1_0 +4975,2,67.0,0.0,6,112,1100.0,0.0,0.0,77,78,0.0,516.4876380339873,1875.7205977092674,1550.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,104980,2,1,2,0,1,,240.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,734.679505906513,1100.0,26855.76021473911,5,5,0,1,170.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05771573724244534,17903.840143159407,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +4976,2,49.0,0.0,9,112,1300.0,0.0,0.0,55,62,0.0,370.8116375628627,2216.7607063836795,1700.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,104981,2,1,1,0,1,,380.0,,43,4.0,0.0,5.0,5.0,2.8,4,4,1705.98216737894,1300.0,77458.0146344122,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021947373787253546,27663.57665514722,7,4,7,7_1,7_0,7_0_0 +4977,2,75.0,0.0,1,111,600.0,1800.0,0.0,75,74,0.0,185.40581878143135,1023.1203260232367,2540.0,0.0,3417.30728629162,20,0,0,0,0,0,0,0,0,0,,1,,1,104982,2,1,1,0,1,,300.0,,41,0.0,1.0,11.0,2.0,1.5,2,2,1069.2767311562,600.0,62550.42010131595,5,5,0,1,330.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.040607241260503746,41700.280067543965,9,5,9,9_1,9_2,9_1_0 +4978,2,75.0,0.0,5,111,415.0,0.0,0.0,77,78,958.7067115922708,0.0,707.6582254994054,1429.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,104983,2,2,2,0,1,,1700.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1155.92950508696,415.0,25316.107758742313,5,5,0,1,100.0,7,5,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056446275771066305,16877.405172494877,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +4979,1,58.0,245.0,6,111,550.0,,,0,46,0.0,0.0,,574.0,33.25414140951651,,50,0,0,0,0,0,0,0,0,0,,1,,4,104984,2,1,0,0,2,,400.0,650.0,22,2.0,2.0,4.0,2.0,1.5,2,2,122.41994980932007,550.0,24888.0,0,4,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023063323690131792,16592.0,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +4980,2,81.0,0.0,5,112,2000.0,0.0,0.0,86,78,0.0,0.0,3410.4010867441225,2300.0,415.67676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,104985,2,1,1,0,1,,300.0,,41,1.0,2.0,7.0,3.0,2.0,3,3,1199.13288920226,2000.0,65511.451369394286,6,5,0,1,160.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03510836581884242,32755.725684697143,8,4,8,8_1,8_1,8_0_0 +4981,2,72.0,0.0,1,111,550.0,2000.0,0.0,86,78,0.0,0.0,937.8602988546337,2550.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,0,,1,,1,104986,2,1,2,0,1,,277.0,,41,0.0,6.0,6.0,3.0,2.0,3,3,717.622322173017,550.0,23561.970856224252,6,5,0,1,120.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10822524208862515,11780.985428112126,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +4982,2,59.0,0.0,6,112,850.0,0.0,0.0,37,11,0.0,0.0,1449.420461866252,1730.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,104987,2,1,1,0,1,,228.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,932.767756052088,850.0,66517.6085113644,1,1,0,1,150.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026008150904950726,44345.072340909595,10,5,10,10_1,10_0,10_0_0 +4983,2,60.0,0.0,1,111,1713.0,0.0,0.0,0,21,0.0,0.0,2921.008530796341,1713.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,1,,1,104988,1,1,3,0,2,,0.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,1045.89902450806,1713.0,4626.097724879991,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.3702904914410208,3084.065149919994,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +4984,1,43.0,339.0,9,111,840.0,,,63,56,0.0,0.0,,1092.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,104989,1,2,0,0,2,,880.0,,43,5.0,1.0,8.0,8.0,4.3,7,7,99.42252607286531,840.0,43579.351359860826,4,1,1,2,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025057738720861204,10134.73287438624,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +4985,2,61.0,0.0,5,112,707.0,0.0,0.0,54,74,0.0,0.0,1205.5767841640472,777.0,96.99124577775646,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,104990,2,2,1,0,1,,124.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,731.672462860284,707.0,58429.24457748512,1,5,0,1,150.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013298135302255917,38952.82971832342,9,5,9,9_1,9_0,9_0_0 +4986,2,62.0,0.0,7,120,920.0,,,77,75,0.0,529.7309108040896,,1540.0,304.8296295872346,,42,0,0,0,0,0,0,0,0,0,,1,,5,104991,2,1,0,0,2,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,111.44903511413065,920.0,62556.63845436299,5,5,0,1,115.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02461769107244274,41704.42563624199,9,5,9,9_1,9_2,9_0_0 +4987,2,42.0,0.0,2,111,1199.0,0.0,0.0,43,34,0.0,582.7040018844986,2044.5354515031013,1729.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,1,20.0,1,,2,104992,2,2,1,0,1,,330.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1079.04845057549,1199.0,54464.93119714993,1,1,1,2,110.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031745197542643294,22693.721332145804,6,3,6,6_1,6_3,6_0_1 +4988,0,70.0,0.0,2,112,2650.0,0.0,0.0,0,77,1898.4291318658827,0.0,4518.781439935962,4603.0,211.99515148566772,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,104993,1,1,2,0,1,,2100.0,,21,1.0,2.0,9.0,2.0,1.5,2,2,1398.07020437248,2650.0,44506.430597763065,0,5,0,1,280.0,9,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1034232567783441,29670.953731842044,8,4,8,8_1,8_1,8_0_1 +4989,1,41.0,317.0,5,400,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1489.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,104994,2,2,2,0,1,,359.0,336.0,32,1.0,0.0,4.0,4.0,2.3,3,2,1338.93683843776,0.0,19430.352772769318,0,1,2,3,90.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07663267967459449,8447.979466421444,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +4990,2,49.0,0.0,7,112,1370.0,0.0,0.0,85,47,0.0,529.7309108040896,2336.124744419724,1890.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,104995,2,1,2,0,1,,460.0,,42,2.0,2.0,7.0,3.0,2.0,3,3,507.212626432611,1370.0,52361.869644270155,7,1,0,1,169.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03609496782372473,26180.934822135077,7,4,7,7_1,7_1,7_0_0 +4991,2,34.0,0.0,6,111,700.0,0.0,0.0,46,22,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,104996,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1636.74850957896,700.0,50548.31791721427,4,1,1,2,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013848136374120858,24070.62757962584,6,3,6,6_0,6_3,6_0_0 +4992,2,81.0,0.0,2,111,447.0,296.0,0.0,0,74,3496.273651186334,0.0,762.2246428873113,4058.0,0.0,561.9571981901776,70,2,2,2,2,1,2,2,2,0,,1,,2,104997,1,3,3,0,2,,110.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1787.82310893273,447.0,34824.044142236475,0,5,0,1,132.0,9,7,2,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.11652868298194692,34824.044142236475,9,5,9,9_1,9_3,9_0_1 +4993,2,80.0,0.0,6,112,10300.0,0.0,0.0,0,77,0.0,0.0,17563.56559673223,10300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,104998,2,2,2,0,1,,320.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1067.83189594575,10300.0,30274.44576946788,0,5,0,1,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.34022092686458577,30274.44576946788,8,4,8,8_1,8_1,8_0_0 +4994,2,64.0,0.0,5,112,870.0,1390.0,0.0,74,43,0.0,0.0,1483.5244727336933,2260.0,0.0,2638.9206266363067,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,104999,1,2,2,0,1,,680.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,846.408807368057,870.0,77209.04294525788,5,1,0,1,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02927118267224691,51472.69529683859,10,5,10,10_1,10_1,10_0_0 +4995,1,44.0,369.0,2,111,410.0,350.0,0.0,85,53,0.0,0.0,699.1322227825451,760.0,0.0,664.4764167789261,31,1,2,2,2,1,2,2,2,0,,2,,2,105000,1,3,0,1,1,663.0,0.0,299.0,42,1.0,0.0,4.0,7.0,3.1999999999999997,3,2,288.916789411193,410.0,27010.311151347854,6,1,2,3,74.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.028137402628998404,8440.722234796205,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +4996,2,54.0,0.0,7,112,750.0,0.0,0.0,43,38,0.0,370.8116375628627,1278.9004075290459,1180.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,2,12.0,1,,5,105001,2,1,2,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,3455.96201290806,750.0,86889.58649998243,1,1,0,1,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013580453625478339,37778.081086948885,9,5,9,9_1,9_1,9_0_0 +4997,0,88.0,0.0,6,111,1900.0,886.0,0.0,0,72,0.0,0.0,3239.8810324069163,2786.0,0.0,1682.074586474653,70,0,0,0,0,0,0,0,0,0,,1,,4,105002,2,2,2,0,1,,300.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1507.34039465653,1900.0,12584.128159505108,0,5,5,0,60.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22138998941262883,12584.128159505108,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4998,2,50.0,0.0,8,111,864.0,,,0,47,0.0,0.0,,1002.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,105003,2,2,0,0,2,,960.0,,32,1.0,1.0,5.0,4.0,2.3,3,2,76.69673224165932,864.0,30035.963512547703,0,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03336000856378083,13059.114570672915,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +4999,2,70.0,0.0,2,111,415.0,914.0,0.0,0,22,0.0,0.0,707.6582254994054,1329.0,0.0,1735.2326998169672,41,0,0,0,0,0,0,0,0,0,,1,,2,105004,2,1,1,0,1,,400.0,,22,2.0,1.0,6.0,3.0,2.0,3,3,1521.66048689946,415.0,52452.480786462686,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025337219137650357,26226.240393231343,7,4,7,7_1,7_4,7_0_1 +5000,1,59.0,160.0,1,111,500.0,0.0,0.0,0,78,0.0,0.0,852.6002716860306,540.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,105005,2,1,0,0,1,,0.0,420.0,11,0.0,1.0,3.0,1.0,1.0,1,1,4173.23303637721,500.0,4847.300729038085,0,7,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.11140220716348241,4847.300729038085,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +5001,2,58.0,0.0,6,112,2030.0,0.0,0.0,78,75,0.0,0.0,3461.5571030452843,2080.0,69.27946126982604,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,105006,2,1,1,0,1,,354.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1233.40647148948,2030.0,43177.95458744741,5,5,0,1,99.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048172731197523945,28785.303058298276,8,4,8,8_1,8_0,8_0_0 +5002,2,51.0,0.0,6,111,500.0,800.0,0.0,75,48,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,105007,2,1,1,0,1,,406.0,,42,2.0,2.0,5.0,4.0,2.5,4,4,356.35394070021,500.0,67744.69388210654,5,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019189694801224424,27097.877552842616,7,4,7,7_1,7_3,7_0_0 +5003,1,30.0,247.0,1,112,1551.0,0.0,0.0,46,62,0.0,0.0,2644.766042770067,1608.0,78.97858584760169,0.0,43,2,2,1,2,2,1,2,2,2,10.0,2,,1,105008,2,1,0,0,1,,495.0,459.0,43,2.0,1.0,3.0,6.0,2.8999999999999995,3,2,708.039069792325,1551.0,19965.55743084924,1,1,3,4,62.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08053869798373084,6884.674976154912,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +5004,2,49.0,0.0,5,112,361.0,561.0,0.0,0,46,0.0,0.0,615.5773961573141,922.0,0.0,1065.0607708942216,31,0,0,0,0,0,0,0,0,1,10.0,1,,3,105009,2,1,1,0,1,,443.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,1757.81234465957,361.0,37767.64352588384,0,1,0,1,100.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024412431222194535,29052.033481449107,8,4,8,8_1,8_0,8_0_0 +5005,0,27.0,0.0,9,112,240.0,,,0,46,0.0,0.0,,284.0,60.965925917446924,,31,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,105010,2,1,0,0,1,,180.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,116.20537031430644,240.0,42502.28515857898,0,1,5,0,120.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0066819936608202655,42502.28515857898,9,5,9,9_1,9_1,9_0_0 +5006,2,42.0,0.0,9,112,416.0,1000.0,0.0,55,52,0.0,0.0,709.3634260427774,1416.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,105011,1,1,1,0,1,,570.0,520.0,43,2.0,0.0,4.0,4.0,2.1,2,2,94.5539829739896,416.0,41978.66711113994,1,1,2,3,85.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033731418776377343,19989.84148149521,5,3,5,5_1,5_0,5_0_0 +5007,2,49.0,0.0,7,111,0.0,0.0,1400.0,56,68,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,71,2,2,2,1,2,2,2,2,0,,2,,5,105012,2,1,0,0,2,,0.0,609.0,43,4.0,0.0,4.0,5.0,3.0,5,4,1308.09021020261,0.0,64483.56734575462,1,1,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,0,0,0,0.02171095765365052,21494.522448584874,6,3,6,6_0,6_3,6_0_0 +5008,2,70.0,0.0,7,112,900.0,0.0,0.0,78,74,1160.1511361402618,529.7309108040896,1534.680489034855,2550.0,207.83838380947813,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,105013,2,1,2,0,1,,900.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,912.400278630235,900.0,94373.69988105427,6,5,1,2,150.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027020239783053353,62915.79992070285,10,5,10,10_1,10_0,10_0_0 +5009,2,75.0,0.0,2,111,240.0,1400.0,0.0,0,86,0.0,0.0,409.2481304092947,1640.0,0.0,2657.9056671157045,41,1,2,2,2,1,2,1,2,0,,2,,2,105014,1,3,0,0,1,,360.0,365.0,11,0.0,1.0,5.0,1.0,1.0,1,1,415.652843959781,240.0,9569.527858119265,0,6,2,3,118.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.171377316030126,9569.527858119265,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +5010,1,52.0,350.0,7,111,700.0,,,0,65,0.0,0.0,,722.0,30.482962958723462,,20,0,0,0,0,0,0,0,0,0,,2,,5,105015,2,1,0,0,2,,1000.0,700.0,32,1.0,1.0,4.0,2.0,1.5,2,1,87.6241941557986,700.0,16026.945692202302,0,4,2,3,97.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04504913249636077,10684.630461468201,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5011,1,68.0,219.0,1,111,0.0,0.0,2400.0,0,86,0.0,0.0,1512.763896995385,2400.0,0.0,2872.157154155234,71,0,0,0,0,0,0,0,0,0,,1,,1,105016,2,1,1,0,1,,400.0,645.0,11,0.0,2.0,3.0,1.0,1.0,1,1,560.511158802559,0.0,9572.335324966947,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0.25072251634773224,9572.335324966947,1,1,1_1,1_1_1,1_4_1,1_1_0_1 +5012,1,37.0,400.0,2,111,434.0,0.0,0.0,85,85,0.0,0.0,740.0570358234745,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,105017,1,2,0,1,2,492.0,0.0,350.0,41,0.0,0.0,1.0,3.0,1.8,2,2,2807.68485989512,434.0,4602.500374049054,6,6,2,3,20.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.13036392205051567,2556.944652249474,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5013,2,61.0,0.0,7,111,2000.0,2800.0,0.0,42,22,0.0,0.0,3410.4010867441225,4800.0,0.0,5315.811334231409,10,0,0,0,0,0,0,0,0,1,1.0,1,,5,105018,1,2,2,0,2,,1250.0,,43,3.0,1.0,7.0,5.0,3.0,5,5,464.585003622126,2000.0,102579.94389113045,1,1,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046792772718752006,34193.314630376815,9,5,9,9_1,9_4,9_0_0 +5014,2,32.0,0.0,9,300,778.0,0.0,0.0,68,63,0.0,0.0,1326.6460227434636,898.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,105019,2,1,1,0,1,,345.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,985.941858582955,778.0,39062.66966813083,4,1,1,2,82.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02298870014848552,18601.27127053849,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5015,2,43.0,0.0,7,112,1500.0,0.0,0.0,56,38,0.0,198.6490915515336,2557.8008150580918,1710.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,5,105020,2,1,3,0,1,,1032.0,,43,2.0,1.0,6.0,4.0,2.3,3,2,3117.27604235022,1500.0,36130.04233846976,1,1,1,2,130.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04732903393747932,15708.714060204244,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5016,1,46.0,364.0,9,111,470.0,204.0,0.0,0,43,0.0,0.0,801.4442553848687,674.0,0.0,387.294825779717,10,0,0,0,0,0,0,0,0,0,,2,2008.0,6,105021,2,1,0,0,1,,0.0,558.0,32,1.0,0.0,3.0,3.0,1.8,2,2,804.083080991584,470.0,21435.90052892905,0,4,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03144257919514023,11908.833627182807,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +5017,1,27.0,160.0,1,112,1570.0,0.0,0.0,55,21,0.0,1854.0581878143134,2677.164853094136,3110.0,193.98249155551292,0.0,60,1,2,2,1,1,2,1,2,0,,1,,1,105022,1,3,3,0,1,,558.0,527.0,43,2.0,0.0,5.0,3.0,1.8,2,2,65.5012658253251,1570.0,11503.071465233641,4,1,2,3,62.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.2703625731092363,6390.595258463134,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +5018,2,24.0,0.0,2,111,0.0,0.0,0.0,55,56,0.0,0.0,0.0,625.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,105023,2,1,1,0,2,,1224.0,550.0,43,2.0,0.0,2.0,3.0,1.8,2,2,446.194214468837,0.0,29526.800937198495,4,1,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02116721013323904,16403.77829844361,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +5019,0,74.0,0.0,2,111,280.0,,,71,71,0.0,0.0,,409.0,178.7410100761512,,71,2,2,1,2,1,2,2,2,0,,1,,2,105024,2,1,0,0,2,,220.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,130.63446578750373,280.0,16543.288535844582,5,5,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.02472301677588551,11028.859023896388,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +5021,1,24.0,160.0,6,111,360.0,0.0,0.0,85,81,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,105026,2,1,0,1,2,885.0,0.0,760.0,42,1.0,0.0,2.0,3.0,1.8,2,2,825.339293123666,360.0,13673.683803971517,6,4,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.02632794535554772,7596.491002206398,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +5022,2,54.0,0.0,7,111,600.0,1700.0,0.0,21,54,0.0,0.0,1023.1203260232367,2300.0,0.0,3227.4568814976415,42,0,0,0,0,0,0,0,0,3,60.0,1,,5,105027,2,1,2,0,1,,460.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,835.389429730405,600.0,80373.09585592836,1,1,0,1,220.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028616541088859287,53582.06390395224,10,5,10,10_1,10_4,10_0_0 +5023,2,74.0,0.0,1,112,473.0,1862.0,0.0,0,75,0.0,0.0,806.5598570149849,2335.0,0.0,3535.014537263887,31,0,0,0,0,0,0,0,0,0,,1,,1,105028,2,1,3,0,1,,340.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,719.553753669181,473.0,35560.155954846756,0,5,0,1,140.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06566337906292972,35560.155954846756,9,5,9,9_1,9_0,9_1_0 +5024,2,56.0,0.0,1,221,633.0,0.0,0.0,77,48,3164.0485531098047,0.0,1079.3919439545148,3733.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105029,1,1,1,0,2,,337.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,504.871840684648,633.0,30025.932895331593,6,1,0,1,230.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12432586234749109,20017.288596887727,5,3,5,5_1,5_1,5_1_0 +5026,2,62.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,431.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,105031,1,2,0,1,1,916.0,0.0,324.0,21,0.0,4.0,3.0,2.0,1.5,2,2,276.436720664843,0.0,9833.723544784367,0,5,2,3,52.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04382876923854492,6555.815696522911,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +5027,2,46.0,0.0,9,111,800.0,1500.0,0.0,54,48,0.0,0.0,1364.160434697649,2300.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,105032,2,1,1,0,1,,1200.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,622.044928238254,800.0,38399.19286090076,1,1,1,2,150.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05989709232513402,15359.677144360303,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5028,2,41.0,0.0,2,112,1621.0,0.0,0.0,56,38,0.0,258.24381901699365,2764.130080806111,1891.0,103.91919190473907,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,2,105033,2,1,1,0,1,,253.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,938.63613120421,1621.0,55079.621402150886,1,1,1,2,240.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03433211688572274,26228.391143881374,7,4,7,7_1,7_0,7_0_1 +5029,2,94.0,0.0,2,111,140.0,88.0,0.0,0,77,0.0,0.0,238.72807607208856,228.0,0.0,167.06835621870144,71,0,0,0,0,0,0,0,0,0,,2,,2,105034,2,1,0,1,1,912.0,0.0,354.0,11,0.0,1.0,3.0,1.0,1.0,1,1,705.100031811949,140.0,20040.2714099914,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011377091424337044,20040.2714099914,5,3,5,5_0,5_4,5_0_1 +5031,2,39.0,0.0,5,112,725.0,0.0,0.0,85,62,0.0,0.0,1236.2703939447445,2425.0,2355.5016831740854,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,105036,2,1,3,0,1,,470.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,561.029933376762,725.0,51472.010189181376,6,1,1,2,93.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04711298414589018,21446.67091215891,6,3,6,6_1,6_1,6_0_0 +5032,2,66.0,0.0,5,111,694.0,0.0,0.0,0,77,1802.452992421552,0.0,1183.4091771002104,2403.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,105037,2,1,2,0,1,,175.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,976.148379386786,694.0,32315.61597751054,0,5,0,1,100.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07436033407725613,32315.61597751054,8,4,8,8_1,8_2,8_0_0 +5033,2,79.0,0.0,2,400,420.0,0.0,0.0,0,78,2847.643697798824,92.70290939071567,716.1842282162656,3340.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105038,2,2,2,0,1,,180.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1106.71043657649,420.0,18202.946765904093,0,5,0,1,134.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1834867751333618,18202.946765904093,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +5034,2,64.0,0.0,6,111,1377.0,0.0,0.0,77,78,0.0,0.0,2348.061148223328,1527.0,207.83838380947813,0.0,50,2,2,1,1,1,2,2,2,0,,1,,4,105039,2,1,3,0,1,,383.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2003.47818426635,1377.0,41208.42255836071,5,5,0,1,79.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.037055531495713355,27472.28170557381,7,4,7,7_1,7_3,7_0_0 +5035,2,55.0,0.0,2,111,250.0,280.0,0.0,0,55,0.0,0.0,426.3001358430153,530.0,0.0,531.581133423141,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,105040,1,1,0,1,1,456.0,0.0,300.0,12,1.0,2.0,4.0,1.0,1.0,1,1,329.904452537372,250.0,15807.664277106338,0,1,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.033528039988018954,15807.664277106338,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +5036,2,26.0,0.0,9,111,680.0,0.0,0.0,47,43,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,8,2007.0,6,105041,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,2.0,2.0,1.5,2,2,390.668505245692,680.0,45559.48958505863,1,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014925540347208104,30372.993056705756,8,4,8,8_0,8_4,8_0_0 +5037,2,67.0,0.0,1,111,660.0,0.0,0.0,0,74,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,10,2,2,1,2,2,2,2,1,0,,2,,1,105042,1,3,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,493.367500399121,660.0,20323.753306028255,0,5,0,1,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03247431663147754,20323.753306028255,5,3,5,5_0,5_4,5_1_0 +5038,2,68.0,0.0,2,111,882.0,0.0,0.0,86,72,1822.4919665912475,463.51454695357836,1503.9868792541579,2960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105043,2,1,2,0,1,,398.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,412.523185408052,882.0,35823.118795849216,5,5,0,1,87.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08262820489942857,23882.07919723281,6,3,6,6_1,6_3,6_0_1 +5039,2,67.0,0.0,1,400,550.0,0.0,0.0,0,77,1371.087706347582,0.0,937.8602988546337,1950.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,105044,1,1,2,0,2,,400.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,2453.46566561671,550.0,29234.041888749347,0,5,0,1,150.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06670305828461076,29234.041888749347,8,4,8,8_1,8_1,8_1_0 +5040,2,50.0,0.0,1,120,400.0,0.0,0.0,0,85,0.0,0.0,682.0802173488245,580.0,249.40606057137379,0.0,71,2,2,1,2,1,1,2,2,0,,1,,1,105045,1,3,4,0,2,,250.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1756.79138676347,400.0,12012.094381400068,0,7,0,1,70.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04828466889987908,12012.094381400068,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +5041,2,74.0,0.0,1,111,238.0,276.0,0.0,0,77,0.0,0.0,405.83772932255056,514.0,0.0,523.9871172313817,50,0,0,0,0,0,0,0,0,0,,2,,1,105046,2,2,0,1,1,408.0,0.0,246.0,11,0.0,4.0,3.0,1.0,1.0,1,1,876.366344086448,238.0,15126.478602948948,0,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03398014921330033,15126.478602948948,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +5043,2,39.0,0.0,1,111,667.0,68.0,0.0,0,38,0.0,0.0,1137.3687624291647,735.0,0.0,129.09827525990565,20,0,0,0,0,0,0,0,0,3,35.0,2,,1,105048,1,3,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,536.632486208635,667.0,54435.03288658069,0,1,1,2,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013502334085687528,54435.03288658069,10,5,10,10_0,10_4,10_1_0 +5044,1,37.0,195.0,2,111,0.0,0.0,0.0,85,21,0.0,0.0,0.0,993.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,105049,2,3,0,0,1,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,328.715987391687,0.0,16173.353861926145,6,1,1,2,54.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06139728398187288,7701.597077107688,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +5045,2,74.0,0.0,7,111,0.0,0.0,500.0,0,77,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,71,0,0,0,0,0,0,0,0,0,,2,,5,105050,2,2,0,1,1,534.0,0.0,360.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1491.96325725076,0.0,12254.307219622986,0,5,2,3,52.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.040801980155952294,12254.307219622986,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +5046,2,26.0,0.0,2,111,240.0,0.0,0.0,0,43,0.0,0.0,409.2481304092947,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,105051,2,1,0,1,2,,0.0,800.0,12,1.0,0.0,1.0,1.0,1.0,1,1,735.04456884693,240.0,37589.24938936823,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006384804269804913,37589.24938936823,9,5,9,9_0,9_4,9_0_1 +5047,2,43.0,0.0,2,111,400.0,1300.0,0.0,62,54,0.0,0.0,682.0802173488245,1700.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,3,45.0,1,,2,105052,2,1,3,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,209.400037337422,400.0,47373.92698524617,1,1,1,2,93.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03588471778008686,20597.359558802684,5,3,5,5_1,5_3,5_0_1 +5048,2,81.0,0.0,2,111,258.0,108.0,0.0,0,74,0.0,0.0,439.9417401899918,366.0,0.0,205.0384371774972,20,0,0,0,0,0,0,0,0,0,,2,,2,105053,2,1,0,1,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1277.58818656435,258.0,35944.92627008373,0,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010182243726136525,35944.92627008373,9,5,9,9_0,9_4,9_0_1 +5049,2,49.0,0.0,2,112,600.0,,,0,47,0.0,0.0,,750.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,105054,2,2,0,0,2,,400.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,107.81882287902812,600.0,24172.914500543568,0,1,1,2,58.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031026461454746593,24172.914500543568,7,4,7,7_1,7_2,7_0_1 +5050,2,92.0,0.0,2,120,260.0,,,0,72,0.0,0.0,,524.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,2,,2,105055,2,2,0,0,2,,220.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,87.0586712427935,260.0,10396.048780487807,0,5,0,1,50.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.050403765032681264,6930.699186991871,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +5051,2,80.0,0.0,2,111,720.0,0.0,0.0,0,74,0.0,0.0,1227.744391227884,1321.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,105056,2,1,0,1,2,,302.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1008.10625187041,720.0,53489.20805274526,0,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024696570543676265,53489.20805274526,10,5,10,10_0,10_4,10_0_1 +5052,1,56.0,410.0,2,111,1100.0,190.0,0.0,52,64,0.0,0.0,1875.7205977092674,1290.0,0.0,360.7157691085599,41,1,2,2,2,1,2,2,2,0,,2,,2,105057,1,3,0,1,1,41.0,0.0,381.0,43,4.0,3.0,4.0,5.0,3.0,5,4,228.924429946998,1100.0,13150.407264052448,4,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09809582122420685,4383.469088017483,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +5053,2,54.0,0.0,2,111,2000.0,0.0,0.0,46,37,0.0,0.0,3410.4010867441225,2080.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,3,40.0,1,,2,105058,2,2,3,0,2,,200.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1179.29287638607,2000.0,94762.51107557728,4,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021949608303869328,63175.007383718184,10,5,10,10_1,10_4,10_0_1 +5054,2,49.0,0.0,7,111,0.0,,,54,63,0.0,0.0,,797.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,105059,2,2,0,0,2,,541.0,609.0,43,2.0,0.0,3.0,2.0,1.5,2,2,48.444383995032595,0.0,42664.783680189204,4,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018680511917609364,28443.189120126135,8,4,8,8_0,8_2,8_0_0 +5055,2,67.0,0.0,1,112,600.0,0.0,0.0,77,78,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105060,2,1,2,0,1,,120.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,726.255255270748,600.0,20830.651295797117,5,5,0,1,80.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028803708126066065,13887.100863864745,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5056,1,45.0,255.0,2,111,250.0,110.0,0.0,0,67,0.0,0.0,426.3001358430153,360.0,0.0,208.8354452733768,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,105061,2,1,0,1,1,1341.0,0.0,257.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1214.80441742159,250.0,14062.53525096257,0,1,2,3,50.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02559993582774189,14062.53525096257,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +5057,2,81.0,0.0,2,400,2000.0,0.0,0.0,0,75,0.0,0.0,3410.4010867441225,2040.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105062,2,1,3,0,1,,45.0,,11,0.0,7.0,6.0,1.0,1.0,1,1,1770.1465908888,2000.0,15209.970575105246,0,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13412254743864843,15209.970575105246,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +5058,1,59.0,85.0,2,111,600.0,450.0,0.0,0,63,0.0,0.0,1023.1203260232367,1050.0,0.0,854.326821572905,50,0,0,0,0,0,0,0,0,0,,2,,2,105063,1,2,0,1,1,,0.0,456.0,12,1.0,1.0,2.0,1.0,1.0,1,1,373.295214684476,600.0,12240.20932411863,0,4,2,3,55.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0857828466978122,12240.20932411863,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5059,2,64.0,0.0,9,112,1404.0,0.0,0.0,0,75,0.0,0.0,2394.1015628943737,1404.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2008.0,6,105064,2,1,1,0,1,,100.0,700.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1408.02688701208,1404.0,25212.012369999677,0,5,2,3,83.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05568774040705494,25212.012369999677,7,4,7,7_1,7_0,7_0_0 +5060,2,47.0,0.0,5,111,574.0,0.0,0.0,67,43,0.0,0.0,978.7851118955631,574.0,0.0,0.0,31,2,2,2,1,1,2,2,2,3,45.0,2,,3,105065,1,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,734.105908483897,574.0,73695.10148924009,1,1,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0077888487620009226,36847.55074462004,9,5,9,9_0,9_4,9_0_0 +5061,2,84.0,0.0,5,300,142.0,0.0,0.0,86,75,0.0,0.0,242.1384771588327,142.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,105066,2,1,2,0,1,,461.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,588.457290157963,142.0,30261.897480186806,6,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.004692369343097895,20174.598320124536,5,3,5,5_1,5_0,5_0_0 +5062,0,84.0,0.0,2,221,800.0,1200.0,0.0,72,72,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,105067,2,1,1,0,1,,1000.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2559.2266793364,800.0,23280.503584500228,5,5,0,1,64.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08590879457313659,15520.335723000151,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +5063,2,46.0,0.0,5,120,1150.0,0.0,0.0,56,65,1318.3535637957518,218.51400070668694,1960.9806248778702,2565.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,105068,2,1,1,0,1,,220.0,,43,2.0,2.0,6.0,6.0,3.5,6,6,258.182631962555,1150.0,95670.6358061741,1,1,0,1,83.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026810734332283676,27334.4673731926,7,4,7,7_1,7_0,7_0_0 +5064,2,40.0,0.0,2,112,600.0,840.0,0.0,54,65,0.0,0.0,1023.1203260232367,1440.0,0.0,1594.7434002694229,50,0,0,0,0,0,0,0,0,3,65.0,8,,2,105069,1,3,0,1,1,934.0,864.0,496.0,43,2.0,0.0,5.0,4.0,2.3,3,2,898.880255414313,600.0,55672.8389060831,1,1,2,3,99.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02586539555543768,24205.582133079613,7,4,7,7_0,7_2,7_0_1 +5065,2,58.0,0.0,1,111,800.0,0.0,0.0,11,11,3164.0485531098047,0.0,1364.160434697649,3960.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,105070,2,2,4,0,2,,400.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,291.712674711435,800.0,29639.850839682553,1,1,0,1,100.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13360391121463594,14819.925419841276,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +5066,0,58.0,0.0,7,120,1600.0,0.0,0.0,54,62,158.20242765549023,397.2981831030672,2728.320869395298,2200.0,207.83838380947813,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,,5,105071,2,1,2,0,1,,220.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,258.371650514293,1600.0,58725.70029240589,1,1,0,1,200.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037462303370514136,39150.46686160393,9,5,9,9_1,9_0,9_0_0 +5067,2,44.0,0.0,2,111,1200.0,0.0,0.0,54,64,0.0,0.0,2046.2406520464733,2254.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,105072,1,3,0,0,1,,261.0,613.0,43,2.0,0.0,3.0,4.0,2.1,2,2,2031.04727376143,1200.0,52563.41621763589,1,1,2,3,56.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.042881535527817274,25030.19819887423,7,4,7,7_0,7_3,7_0_1 +5068,1,47.0,89.0,8,300,367.0,0.0,0.0,0,62,1371.087706347582,0.0,625.8085994175465,1697.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,105073,2,2,3,0,1,,570.0,,32,1.0,0.0,7.0,4.0,2.1,2,1,1114.42784398035,367.0,31628.98666699272,0,1,1,2,140.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05365331548136349,15061.422222377485,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +5069,1,53.0,35.0,2,111,240.0,0.0,0.0,0,85,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,105074,1,3,0,1,1,415.0,37.0,326.0,31,1.0,2.0,2.0,2.0,1.5,2,2,265.668557092648,240.0,18225.261351957557,0,5,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.013168535439093817,12150.17423463837,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +5070,2,35.0,0.0,7,111,972.0,0.0,0.0,0,46,0.0,0.0,1657.4549281576435,972.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,10.0,2,,5,105075,2,2,0,0,1,,124.0,390.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1687.59216947531,972.0,19729.662192382533,0,1,2,3,35.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04926592206810725,19729.662192382533,5,3,5,5_0,5_2,5_0_0 +5071,1,43.0,253.0,7,211,0.0,,,0,62,0.0,0.0,,310.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,5,105076,1,2,0,0,2,,0.0,370.0,12,1.0,0.0,2.0,1.0,1.0,1,1,146.18924919962717,0.0,7386.788069748004,0,4,2,3,34.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04196681928233193,7386.788069748004,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5072,2,58.0,0.0,2,111,780.0,553.0,0.0,77,78,0.0,0.0,1330.0564238302077,1333.0,0.0,1049.8727385107034,70,0,0,0,0,0,0,0,0,0,,2,,2,105077,2,2,0,1,1,646.0,0.0,258.0,41,0.0,4.0,4.0,2.0,1.5,2,2,364.363079705158,780.0,48547.39758769324,5,5,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027457702497690945,32364.931725128827,8,4,8,8_0,8_4,8_0_1 +5073,2,83.0,0.0,2,112,420.0,0.0,0.0,72,72,4218.731404146406,0.0,716.1842282162656,4540.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105078,2,2,2,0,1,,407.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1668.71694166676,420.0,24093.582483717655,5,5,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1884319197059264,16062.388322478437,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +5074,1,83.0,242.0,2,111,350.0,,,0,86,0.0,0.0,,494.0,199.524848457099,,71,2,2,2,2,1,2,2,2,0,,1,,2,105079,2,1,0,0,2,,270.0,380.0,11,0.0,0.0,3.0,1.0,1.0,1,1,121.03435440484127,350.0,11980.691891312435,0,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.04123301095475249,11980.691891312435,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +5075,1,48.0,440.0,2,111,420.0,360.0,0.0,85,67,0.0,0.0,716.1842282162656,780.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,0,,2,,2,105080,2,1,0,0,1,,400.0,510.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,1808.90713211529,420.0,12579.132657220052,6,1,2,3,70.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06200745482656969,4838.127945084636,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5076,1,54.0,178.0,2,111,430.0,240.0,0.0,0,77,0.0,0.0,733.2362336499863,670.0,0.0,455.6409715055494,50,2,2,2,2,1,2,2,1,0,,2,,2,105081,2,3,0,1,1,681.0,120.0,161.0,11,0.0,0.0,2.0,1.0,1.0,1,1,364.383419077455,430.0,9395.362840208516,0,7,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07131177490374926,9395.362840208516,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5077,2,58.0,0.0,1,221,1100.0,0.0,0.0,77,78,0.0,715.1367295855209,1875.7205977092674,1690.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105082,2,2,1,0,1,,288.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2396.70351449421,1100.0,21027.081934452894,7,7,0,1,90.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08037254076757715,14018.054622968595,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +5078,2,64.0,0.0,2,111,500.0,0.0,0.0,77,77,0.0,0.0,852.6002716860306,620.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,105083,2,3,0,1,1,1143.0,0.0,337.0,41,1.0,1.0,5.0,3.0,2.0,3,3,216.421718853938,500.0,40043.42898583495,5,5,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015483189519541899,20021.714492917476,5,3,5,5_0,5_4,5_0_1 +5079,0,79.0,0.0,2,111,104.0,0.0,0.0,0,78,0.0,0.0,177.34085651069435,144.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105084,2,1,0,1,1,,149.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1856.48685132703,104.0,16234.68425521534,0,5,0,1,79.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008869898406169524,16234.68425521534,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +5080,2,72.0,0.0,7,111,950.0,0.0,0.0,0,77,0.0,304.5952737123515,1619.9405162034582,1180.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,105085,2,2,2,0,1,,270.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,701.516826221886,950.0,32200.231225145966,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036645699583626234,32200.231225145966,8,4,8,8_1,8_4,8_0_0 +5081,1,34.0,351.0,2,111,0.0,0.0,0.0,67,63,0.0,0.0,0.0,278.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105086,2,3,0,1,2,250.0,0.0,320.0,43,2.0,0.0,1.0,3.0,1.8,2,2,506.999255665869,0.0,12323.859445998212,4,4,2,3,27.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02255786843546579,6846.588581110118,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5082,2,32.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,849.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,105087,2,1,0,0,1,,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2113.07656115198,0.0,15897.978957103667,0,4,2,3,47.0,8,6,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05340301445176104,15897.978957103667,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +5083,2,47.0,0.0,9,111,120.0,0.0,0.0,90,31,0.0,0.0,204.62406520464734,120.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2004.0,6,105088,2,1,1,0,1,,0.0,2452.0,43,2.0,0.0,5.0,3.0,1.8,2,2,859.528044110562,120.0,81360.2403153726,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0014749218971680767,45200.13350854033,10,5,10,10_1,10_4,10_0_0 +5084,2,53.0,0.0,5,111,0.0,0.0,0.0,90,23,0.0,0.0,0.0,2513.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,3,105089,2,2,5,0,1,,594.0,2500.0,43,2.0,0.0,5.0,4.0,2.3,3,2,901.24178585837,0.0,122027.00746730695,1,1,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02059380175059422,53055.220637959545,10,5,10,10_1,10_4,10_0_0 +5085,1,40.0,300.0,2,112,750.0,500.0,0.0,85,42,0.0,0.0,1278.9004075290459,1250.0,0.0,949.2520239698945,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,105090,2,1,0,1,1,1032.0,0.0,357.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,2566.27317844626,750.0,23590.34887439134,6,1,2,3,100.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0529877708318653,9073.211105535132,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +5086,2,51.0,0.0,2,111,330.0,90.0,0.0,46,33,0.0,0.0,562.7161793127802,420.0,0.0,170.865364314581,30,2,2,2,2,1,1,2,2,3,45.0,2,,2,105091,1,3,0,1,2,722.0,0.0,830.0,43,2.0,0.0,4.0,4.0,2.3,3,2,276.810084059116,330.0,82263.75610363086,1,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005105529091947973,35766.85047983951,9,5,9,9_0,9_4,9_0_1 +5087,2,64.0,0.0,6,400,590.0,0.0,0.0,74,74,0.0,264.8654554020448,1006.0683205895161,790.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,105092,2,1,2,0,1,,77.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1125.33394928466,590.0,47264.53086370993,5,5,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016714436503728593,31509.687242473286,8,4,8,8_1,8_0,8_0_0 +5088,0,81.0,0.0,1,112,850.0,0.0,0.0,71,71,949.2145659329414,662.163638505112,1449.420461866252,2355.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105093,2,2,4,0,1,,474.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1207.53798692006,850.0,22578.813793836525,5,5,0,1,180.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10430131633588557,15052.54252922435,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5089,2,52.0,0.0,5,300,2098.0,0.0,0.0,0,52,0.0,0.0,3577.510739994584,2098.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,3,105094,2,1,2,0,1,,321.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,858.257221837224,2098.0,27443.333778273925,0,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07644843796860148,27443.333778273925,7,4,7,7_1,7_0,7_0_0 +5090,2,44.0,0.0,1,300,530.0,0.0,0.0,85,62,1054.6828510366015,794.5963662061343,903.7562879871924,2226.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,105095,2,2,2,0,1,,528.0,,42,1.0,0.0,7.0,5.0,2.8,4,2,1062.22203424199,530.0,40726.41511078032,6,1,1,2,140.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0546574009508334,14545.148253850115,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5091,2,38.0,0.0,5,111,360.0,922.0,0.0,0,31,0.0,0.0,613.872195613942,1282.0,0.0,1750.4207322004854,10,0,0,0,0,0,0,0,0,3,30.0,2,,3,105096,1,2,0,0,1,,0.0,700.0,32,1.0,0.0,4.0,3.0,1.6,1,1,738.084853314577,360.0,23413.284957082426,0,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05475523841912666,14633.303098176515,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +5092,2,100.0,0.0,2,111,210.0,0.0,0.0,0,72,0.0,0.0,358.0921141081328,210.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,105097,2,2,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,885.258180867619,210.0,13477.584169599862,0,5,0,1,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015581427454460091,13477.584169599862,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +5094,1,59.0,279.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,633.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,105099,1,3,0,0,2,,201.0,500.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1669.03322029513,0.0,2474.1176631647304,0,7,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.25584878578099135,2474.1176631647304,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +5095,1,25.0,130.0,1,111,1180.0,0.0,0.0,22,67,0.0,0.0,2012.1366411790323,1180.0,0.0,0.0,50,1,2,2,1,2,2,2,2,2,6.0,1,,1,105100,2,1,1,0,1,,160.0,525.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1362.2528868507,1180.0,13164.631357680406,4,1,2,3,65.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08963410884358518,8776.42090512027,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +5096,2,66.0,0.0,6,111,1552.0,0.0,0.0,75,77,0.0,397.2981831030672,2646.471243313439,1852.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,105101,2,1,1,0,1,,436.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,1144.29802338254,1552.0,50937.71799071377,5,5,0,1,122.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03635812661135762,25468.858995356884,7,4,7,7_1,7_2,7_0_0 +5097,2,45.0,0.0,7,111,320.0,,,67,64,0.0,0.0,,824.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,105102,2,1,0,0,2,,400.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,108.5486051660345,320.0,34384.134399323484,1,1,0,1,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023964541041818763,17192.067199661742,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5098,2,48.0,0.0,2,111,0.0,,,0,21,0.0,0.0,,857.0,0.0,,44,0,0,0,0,0,0,0,0,0,,2,,2,105103,2,1,0,0,2,,397.0,450.0,12,1.0,2.0,2.0,1.0,1.0,1,1,127.0332339516811,0.0,7481.842057929631,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11454398440444336,7481.842057929631,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +5099,2,70.0,0.0,2,111,600.0,,,77,71,0.0,132.4327277010224,,763.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,2,105104,1,2,0,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,133.8444557999974,600.0,9052.0,5,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08429076447193991,6034.666666666667,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +5100,2,48.0,0.0,1,111,377.0,1815.0,0.0,31,34,0.0,317.83854648245375,642.8606048512671,2432.0,0.0,3445.784847010717,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,105105,2,2,1,0,1,,600.0,,43,2.0,4.0,7.0,2.0,1.5,2,2,663.499089087557,377.0,139988.74547062622,1,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01737282516407939,93325.83031375082,10,5,10,10_1,10_4,10_1_0 +5101,2,41.0,0.0,8,112,1000.0,1000.0,0.0,45,46,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,105106,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,915.98194045945,1000.0,82210.49898779014,1,1,1,2,130.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024327792978084697,54806.99932519343,10,5,10,10_1,10_0,10_0_0 +5102,2,58.0,0.0,1,111,1000.0,0.0,0.0,78,55,0.0,0.0,1705.2005433720612,2359.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,105107,2,3,1,0,1,,240.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,900.338620315975,1000.0,50114.307757785195,5,1,0,1,63.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04707238522382926,25057.153878892597,7,4,7,7_1,7_3,7_1_0 +5103,2,48.0,0.0,7,111,800.0,0.0,0.0,0,52,0.0,927.0290939071567,1364.160434697649,1560.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,5,105108,2,1,2,0,1,,400.0,,32,2.0,0.0,5.0,3.0,2.0,3,2,1705.15174709989,800.0,32763.03796249173,0,1,1,2,120.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04761463212861831,16381.518981245865,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5104,2,42.0,0.0,1,111,470.0,0.0,0.0,0,54,0.0,0.0,801.4442553848687,470.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,,1,105109,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,941.838144943243,470.0,15203.372104151138,0,1,0,1,29.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030914194349796312,15203.372104151138,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +5105,2,46.0,0.0,7,400,500.0,,,11,54,0.0,0.0,,566.0,91.44888887617039,,42,0,0,0,0,0,0,0,0,2,75.0,1,,5,105110,2,2,0,0,2,,170.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,139.8767115904356,500.0,48799.04407997284,1,1,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01159858785496757,32532.696053315227,8,4,8,8_1,8_0,8_0_0 +5106,2,62.0,0.0,6,112,1900.0,0.0,0.0,45,21,0.0,0.0,3239.8810324069163,2238.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,105111,2,1,1,0,1,,260.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1245.48590577169,1900.0,47341.49854143259,1,1,0,1,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0472735352481784,31560.99902762173,8,4,8,8_1,8_0,8_0_0 +5107,0,77.0,0.0,1,221,250.0,,,0,86,0.0,0.0,,342.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,1,105112,1,1,0,0,2,,499.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,138.79703615480094,250.0,5363.432352941177,0,5,5,0,50.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06376513722830035,5363.432352941177,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +5108,1,28.0,160.0,2,111,0.0,0.0,360.0,0,52,0.0,0.0,226.91458454930776,360.0,0.0,430.8235731232851,30,0,0,0,0,0,0,0,0,0,,2,,2,105113,2,2,0,1,1,856.0,0.0,400.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1433.89322612961,0.0,17076.320387396754,0,4,2,3,64.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02108182511413287,11384.213591597836,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5109,2,54.0,0.0,8,112,550.0,0.0,0.0,0,52,0.0,0.0,937.8602988546337,608.0,80.36417507299822,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,105114,2,1,1,0,1,,140.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1003.18641720001,550.0,25304.734508702422,0,1,1,2,58.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02402712424391988,25304.734508702422,7,4,7,7_1,7_2,7_0_0 +5110,2,48.0,0.0,7,111,1050.0,0.0,0.0,52,90,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,105115,1,3,4,0,2,,708.0,750.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1874.27283698918,1050.0,31956.68520426567,1,1,2,3,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03285697478597821,21304.45680284378,6,3,6,6_1,6_2,6_0_0 +5111,2,41.0,0.0,8,111,200.0,,,34,43,0.0,0.0,,242.0,58.19474746665388,,33,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,105116,2,2,0,0,2,,200.0,815.0,43,2.0,0.0,4.0,3.0,1.8,2,2,91.79321682467639,200.0,38937.30069631277,1,1,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006215120094930375,21631.83372017376,6,3,6,6_0,6_3,6_0_0 +5112,2,78.0,0.0,7,300,410.0,0.0,0.0,86,78,316.40485531098045,1324.327277010224,699.1322227825451,1830.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,105117,2,1,1,0,1,,270.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,665.741170289322,410.0,23081.25300981166,6,5,0,1,90.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07928512369853064,15387.502006541106,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +5113,2,28.0,0.0,6,111,0.0,0.0,0.0,37,33,0.0,0.0,0.0,537.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,4,105118,2,1,0,0,1,,183.0,500.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1741.87141507346,0.0,22212.664822518505,4,1,2,3,70.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024175397427129326,14808.443215012338,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +5114,2,51.0,0.0,1,300,2040.0,0.0,0.0,54,11,3555.335890844384,0.0,3478.6091084790046,5411.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,10.0,1,,1,105119,2,3,1,0,1,,173.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1514.54725969317,2040.0,105651.8854174508,1,1,1,2,112.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05121536618698383,70434.59027830053,10,5,10,10_1,10_0,10_1_0 +5115,2,57.0,0.0,2,111,300.0,0.0,0.0,0,54,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,105120,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1020.09497404801,300.0,23920.721860535832,0,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012541427543411096,23920.721860535832,6,3,6,6_0,6_4,6_0_1 +5116,2,71.0,0.0,5,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,122.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,105121,2,2,0,1,1,,297.0,700.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1171.78684668516,0.0,34819.745034864834,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0035037591423441503,34819.745034864834,9,5,9,9_0,9_4,9_0_0 +5117,2,49.0,0.0,5,111,500.0,,,67,21,0.0,0.0,,550.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,105122,2,2,0,0,2,,450.0,1130.0,43,2.0,98.0,4.0,3.0,1.8,2,2,65.42155261885603,500.0,61457.80192179094,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008949229923645998,34143.223289883856,9,5,9,9_1,9_2,9_0_0 +5118,2,39.0,0.0,8,111,450.0,1200.0,0.0,31,38,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,105123,2,2,3,0,1,,400.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1253.76609448808,450.0,142469.5885414462,1,1,1,2,130.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011581419002413938,59362.328558935915,10,5,10,10_1,10_2,10_0_0 +5119,1,34.0,331.0,5,111,288.0,0.0,0.0,63,85,0.0,0.0,491.09775649115363,288.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,105124,2,1,0,1,1,463.0,0.0,297.0,42,1.0,0.0,4.0,4.0,2.1,2,2,313.86416975512,288.0,9412.046345947518,4,7,2,3,73.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030599084345138423,4481.92683140358,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5120,2,74.0,0.0,5,111,944.0,,,0,78,0.0,0.0,,1044.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,3,105125,2,1,0,0,2,,600.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,102.94561333819446,944.0,44649.14521619273,0,5,0,1,156.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023382306535655168,29766.096810795152,8,4,8,8_1,8_2,8_0_0 +5122,2,26.0,0.0,1,111,1000.0,0.0,0.0,0,62,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,2,2,2,2,2,2,1,2,2,20.0,2,,1,105127,2,3,0,0,1,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,335.126965029454,1000.0,24019.019064047603,0,1,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04163367360396621,24019.019064047603,6,3,6,6_0,6_3,6_1_0 +5123,2,43.0,0.0,5,111,0.0,0.0,0.0,43,64,0.0,0.0,0.0,2516.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,3,105128,2,1,1,0,1,,336.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,4,2,521.873896602375,0.0,53506.3930716113,1,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04702241836097349,18450.48036952114,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +5124,2,40.0,0.0,7,111,0.0,,,21,54,0.0,0.0,,2067.0,0.0,,50,0,0,0,0,0,0,0,0,2,55.0,1,,5,105129,2,1,0,0,2,,490.0,700.0,43,2.0,0.0,4.0,3.0,1.8,2,2,83.854455094848,0.0,18360.877495166747,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11257631889021152,10200.48749731486,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +5125,1,36.0,327.0,1,111,0.0,0.0,0.0,45,52,0.0,0.0,0.0,3043.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,105130,2,2,0,0,1,,0.0,420.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1539.57266319535,0.0,12740.349146344168,4,1,2,3,80.0,8,6,7,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.23884745740058358,8493.566097562778,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +5126,2,29.0,0.0,2,111,0.0,0.0,720.0,0,47,0.0,0.0,453.8291690986155,720.0,0.0,861.6471462465702,71,2,2,2,1,1,2,2,2,0,,2,,2,105131,1,3,0,1,1,980.0,0.0,416.0,22,2.0,2.0,5.0,4.0,2.5,4,4,311.443088252483,0.0,40785.888499585635,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.01765316452545382,16314.355399834254,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +5127,2,68.0,0.0,2,111,540.0,948.0,0.0,77,74,0.0,0.0,920.8082934209131,1488.0,0.0,1799.78183744692,60,0,0,0,0,0,0,0,0,0,,2,,2,105132,2,2,0,0,1,,600.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,2041.59764382071,540.0,56154.81512533602,5,5,0,1,110.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026498172893612497,28077.40756266801,8,4,8,8_0,8_3,8_0_1 +5128,1,24.0,109.0,1,111,950.0,0.0,0.0,0,56,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,44,2,2,2,1,1,2,2,2,2,15.0,1,,1,105133,2,2,3,0,1,,350.0,445.0,12,1.0,0.0,2.0,1.0,1.0,1,1,337.859627874092,950.0,14428.608964672061,0,1,2,3,50.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.06584141287119509,14428.608964672061,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +5129,2,73.0,0.0,5,111,230.0,600.0,0.0,0,75,0.0,0.0,392.1961249755741,830.0,0.0,1139.1024287638734,41,2,2,2,2,2,2,2,1,0,,2,,3,105134,1,1,0,0,2,,87.0,330.0,11,0.0,2.0,2.0,1.0,1.0,1,1,376.846539811288,230.0,20036.330092411663,0,5,2,3,45.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.041424751747044984,20036.330092411663,5,3,5,5_0,5_3,5_0_0 +5130,2,30.0,0.0,1,112,1500.0,2500.0,0.0,54,47,0.0,264.8654554020448,2557.8008150580918,4200.0,0.0,4746.260119849472,31,2,2,1,1,2,2,2,2,0,,1,,1,105135,2,1,1,0,1,,780.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,588.176085268871,1500.0,51490.40130242297,1,1,1,2,115.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08156860101617351,21454.333876009572,6,3,6,6_1,6_1,6_1_0 +5131,1,32.0,235.0,2,111,300.0,80.0,0.0,0,85,0.0,0.0,511.56016301161833,380.0,0.0,151.8803238351831,60,0,0,0,0,0,0,0,0,0,,2,,2,105136,2,3,0,1,1,534.0,0.0,236.0,11,0.0,0.0,3.0,1.0,1.0,1,1,384.393876964237,300.0,11436.711098525326,0,7,2,3,65.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033226335502083114,11436.711098525326,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5132,2,74.0,0.0,5,221,326.0,0.0,0.0,0,77,2046.084731011007,0.0,555.8953771392919,2296.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,105137,2,1,3,0,1,,158.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,2322.29052210467,326.0,32739.157844285117,0,5,0,1,83.0,1,3,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07013008736878017,32739.157844285117,8,4,8,8_1,8_1,8_0_0 +5133,2,60.0,0.0,1,112,680.0,0.0,0.0,63,43,3691.3899786281054,0.0,1159.5363694930015,4230.0,69.27946126982604,0.0,33,2,2,2,2,1,2,2,2,2,30.0,1,,1,105138,2,3,1,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1747.86963017633,680.0,49093.81119518544,1,5,1,2,180.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.08616157305821126,32729.207463456958,8,4,8,8_1,8_0,8_1_0 +5134,2,34.0,0.0,2,111,0.0,0.0,0.0,34,38,0.0,0.0,0.0,1381.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,1,,2,105139,2,1,1,0,1,,451.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,593.231186250301,0.0,74219.40746209111,1,1,1,2,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018606993065868525,35342.57498194815,9,5,9,9_1,9_4,9_0_1 +5135,2,56.0,0.0,7,111,3300.0,0.0,0.0,37,48,0.0,264.8654554020448,5627.1617931278015,3570.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,105140,2,1,3,0,1,,207.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,588.715851031259,3300.0,37011.4709060531,4,1,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09645658258386425,24674.313937368734,7,4,7,7_1,7_4,7_0_0 +5136,2,55.0,0.0,2,111,130.0,0.0,0.0,0,56,0.0,0.0,221.67607063836795,230.0,138.5589225396521,0.0,71,2,2,1,1,2,2,2,2,0,,1,,2,105141,2,2,5,0,1,,360.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,304.607667273082,130.0,9582.967769291106,0,4,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.024000915534438252,9582.967769291106,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +5137,2,49.0,0.0,8,400,500.0,,,90,22,0.0,0.0,,906.0,562.5492255109875,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105142,2,1,0,0,1,,0.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,98.0508829100671,500.0,9450.339449501296,4,1,0,1,86.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09586957218217283,3780.1357798005183,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +5138,2,53.0,0.0,2,111,0.0,0.0,1100.0,77,63,0.0,0.0,693.3501194562182,1412.0,432.30383832371456,1316.405362321149,50,2,2,2,1,1,2,2,2,0,,1,,2,105143,2,3,1,0,1,,180.0,330.0,42,1.0,4.0,4.0,2.0,1.5,2,2,492.468846644359,0.0,30199.15216910448,7,1,2,3,70.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.046756279517163386,20132.76811273632,5,3,5,5_1,5_2,5_0_1 +5139,2,80.0,0.0,1,400,400.0,0.0,0.0,71,90,1054.6828510366015,211.89236432163582,682.0802173488245,1660.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,105144,2,1,2,0,2,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,874.538877567734,400.0,19354.147011294765,5,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08576973188388262,12902.764674196509,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +5140,1,44.0,357.0,9,120,270.0,,,0,85,0.0,0.0,,480.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,105145,2,1,0,0,1,,320.0,427.0,21,0.0,5.0,3.0,2.0,1.5,2,2,99.16307027860518,270.0,10646.378039114934,0,7,2,3,55.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04508575575998463,7097.585359409956,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +5141,2,85.0,0.0,9,111,1500.0,,,0,77,0.0,0.0,,1800.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105146,2,2,0,0,2,,800.0,,21,1.0,4.0,4.0,5.0,2.8,4,3,102.69401067857032,1500.0,24860.18244756041,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07240493925565049,8878.636588414432,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5142,2,58.0,0.0,7,111,780.0,,,0,31,0.0,0.0,,780.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,105147,2,1,0,0,2,,292.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,101.01588343057323,780.0,98227.47559599708,0,1,0,1,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00794075176285795,98227.47559599708,10,5,10,10_1,10_2,10_0_0 +5143,1,47.0,20.0,2,111,564.0,1344.0,0.0,0,68,0.0,0.0,961.7331064618425,1908.0,0.0,2551.5894404310766,50,0,0,0,0,0,0,0,0,0,,2,,2,105148,2,2,0,0,1,,0.0,254.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3336.90351022141,564.0,13909.058306408038,0,1,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13717679212840497,13909.058306408038,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +5144,0,25.0,0.0,5,111,270.0,,,84,64,0.0,0.0,,345.0,103.91919190473907,,41,0,0,0,0,0,0,0,0,0,,2,,3,105149,2,1,0,0,2,,388.0,,42,1.0,0.0,1.0,2.0,1.5,2,2,237.4664490113746,270.0,4768.206744632489,3,1,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07235424520724949,3178.804496421659,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +5145,2,33.0,0.0,2,111,800.0,0.0,0.0,0,63,0.0,0.0,1364.160434697649,864.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105150,2,2,0,0,1,,150.0,450.0,12,1.0,1.0,2.0,1.0,1.0,1,1,965.64746303728,800.0,15246.563129068876,0,1,2,3,38.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05666850900664361,15246.563129068876,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +5146,2,59.0,0.0,8,111,800.0,,,63,46,0.0,0.0,,800.0,0.0,,42,0,0,0,0,0,0,0,0,2,10.0,2,1999.0,6,105151,2,3,0,0,2,,400.0,900.0,43,2.0,1.0,4.0,3.0,2.0,3,3,148.56739527134718,800.0,24857.7108368368,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032183172668276236,12428.8554184184,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +5147,1,48.0,453.0,7,111,366.0,,,0,85,0.0,0.0,,654.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,2,,5,105152,2,2,0,0,2,,680.0,551.0,31,2.0,2.0,4.0,7.0,3.6,5,4,124.94541879663453,366.0,25203.157540337226,0,6,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025949129546696047,7000.877094538118,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5148,1,43.0,292.0,1,111,180.0,150.0,0.0,85,62,0.0,0.0,306.936097806971,330.0,0.0,284.77560719096834,71,2,2,2,2,2,2,2,1,0,,2,,1,105153,2,3,0,1,1,384.0,0.0,306.0,42,1.0,0.0,1.0,4.0,2.1,2,2,724.209094166883,180.0,17550.562477249165,6,1,2,3,22.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.018802816173429188,8357.410703451982,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +5149,2,95.0,0.0,2,111,430.0,796.0,0.0,0,72,0.0,0.0,733.2362336499863,1226.0,0.0,1511.209222160072,70,0,0,0,0,0,0,0,0,0,,2,,2,105154,2,2,0,0,1,,368.0,318.0,21,0.0,0.0,4.0,2.0,1.5,2,2,355.120095269644,430.0,33855.701939850915,0,5,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03621251162295053,22570.46795990061,6,3,6,6_0,6_2,6_0_1 +5150,1,40.0,412.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,201.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105155,2,1,0,1,1,796.0,0.0,383.0,42,1.0,1.0,4.0,4.0,2.1,2,2,414.414356499643,0.0,11495.0,7,4,2,3,76.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017485863418877774,5473.809523809524,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5151,2,72.0,0.0,5,111,0.0,0.0,1900.0,0,86,0.0,0.0,1197.6047517880133,1900.0,0.0,2273.7910803728937,70,0,0,0,0,0,0,0,0,0,,1,,3,105156,2,1,2,0,1,,240.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1162.45888861048,0.0,9150.102787189193,0,6,0,1,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.20764794059583,9150.102787189193,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +5152,2,49.0,0.0,2,112,283.0,700.0,0.0,0,37,0.0,0.0,482.5717537742933,983.0,0.0,1328.9528335578523,31,0,0,0,0,0,0,0,0,0,,1,,2,105157,2,1,1,0,1,,400.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,1853.89023598352,283.0,49615.19699230482,0,1,1,2,97.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019812478022660288,33076.79799486988,8,4,8,8_1,8_0,8_0_1 +5153,2,46.0,0.0,9,111,0.0,0.0,0.0,42,37,0.0,0.0,0.0,1618.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,105158,1,1,1,0,1,,399.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,135.301125135029,0.0,52731.78734937547,1,1,1,2,118.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030683579702692608,25110.374928274032,7,4,7,7_1,7_3,7_0_0 +5154,2,49.0,0.0,8,111,588.0,,,85,68,0.0,0.0,,1239.0,198.1392592317025,,50,0,0,0,0,0,0,0,0,2,16.0,1,2001.0,6,105159,2,1,0,0,2,,400.0,,42,1.0,0.0,6.0,4.0,2.3,3,2,85.89931143346216,588.0,25748.983823170885,6,1,1,2,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048118403759493375,11195.210357900385,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +5155,2,70.0,0.0,2,120,800.0,0.0,0.0,77,75,0.0,1191.8945493092015,1364.160434697649,2040.0,471.10033663481715,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105160,2,1,2,0,1,,432.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,1490.07990684872,800.0,25970.10818496112,5,5,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07855184835854215,17313.405456640747,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +5156,2,60.0,0.0,2,111,735.0,0.0,0.0,0,77,0.0,0.0,1253.322399378465,735.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105161,1,1,2,0,1,,191.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1581.94435433519,735.0,18059.11086771974,0,5,0,1,80.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04069967815047839,18059.11086771974,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +5157,2,79.0,0.0,1,111,1000.0,2700.0,0.0,74,75,0.0,0.0,1705.2005433720612,3700.0,0.0,5125.96092943743,41,0,0,0,0,0,0,0,0,0,,1,,1,105162,2,2,1,0,1,,246.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1155.69110014364,1000.0,51768.69276063438,5,5,0,1,80.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07147176802605165,34512.46184042292,9,5,9,9_1,9_3,9_1_0 +5158,2,48.0,0.0,2,111,281.0,,,0,56,0.0,158.91927324122688,,499.0,135.78774408885906,,71,0,0,0,0,0,0,0,0,0,,1,,2,105163,1,1,0,0,2,,198.0,,22,2.0,3.0,4.0,3.0,2.0,3,3,89.54908940066784,281.0,32120.501202799296,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015535249492200085,16060.250601399648,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +5159,1,46.0,175.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,385.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,1,30.0,2,,2,105164,2,2,0,1,1,50.0,0.0,212.0,42,1.0,0.0,2.0,2.0,1.5,2,2,521.294522232214,0.0,23838.81657996944,7,1,2,3,55.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01615013055318762,15892.544386646294,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +5160,2,84.0,0.0,2,400,330.0,,,0,78,0.0,0.0,,462.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,105165,1,2,0,0,1,,214.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,122.02830407362475,330.0,9583.657931034482,0,5,0,1,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048207062827641076,9583.657931034482,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +5161,2,66.0,0.0,2,111,250.0,1100.0,0.0,0,77,0.0,0.0,426.3001358430153,1350.0,0.0,2088.354452733768,70,2,2,2,1,2,2,2,2,0,,2,,2,105166,2,2,0,0,1,,0.0,344.0,11,0.0,3.0,3.0,1.0,1.0,1,1,632.430444995867,250.0,17303.06903358613,0,5,2,3,50.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.07802084112243798,17303.06903358613,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +5162,2,68.0,0.0,1,111,700.0,0.0,0.0,37,90,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,105167,2,2,0,0,2,,324.0,844.0,42,1.0,0.0,3.0,2.0,1.5,2,2,843.381336344713,700.0,53632.60941982861,1,5,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013051761000858588,35755.072946552405,9,5,9,9_0,9_4,9_1_0 +5163,2,32.0,0.0,1,400,1000.0,0.0,0.0,0,38,0.0,0.0,1705.2005433720612,1100.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,1,105168,2,1,1,0,1,,92.0,,12,1.0,2.0,9.0,1.0,1.0,1,1,1312.46748891491,1000.0,78193.11565640429,0,1,1,2,450.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01406773461788648,78193.11565640429,10,5,10,10_1,10_0,10_1_0 +5165,1,43.0,270.0,1,111,420.0,900.0,0.0,0,52,0.0,0.0,716.1842282162656,1320.0,0.0,1708.65364314581,71,2,2,2,2,1,2,2,2,3,25.0,2,,1,105170,2,2,0,0,1,,300.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,407.614635282344,420.0,11223.51659690417,0,1,2,3,45.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.11761019717867226,11223.51659690417,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +5166,2,40.0,0.0,8,112,1900.0,0.0,0.0,45,47,0.0,0.0,3239.8810324069163,1970.0,96.99124577775646,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,105171,2,1,1,0,1,,334.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1420.83632242215,1900.0,52518.64851002082,1,1,1,2,110.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03751048543498057,25008.880242867057,7,4,7,7_1,7_2,7_0_0 +5167,2,39.0,0.0,9,300,1500.0,0.0,0.0,21,37,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,105172,2,1,1,0,1,,286.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,4,2,1644.42415488483,1500.0,78655.69363903573,1,1,1,2,156.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019070456703156845,30252.189861167593,8,4,8,8_1,8_0,8_0_0 +5168,2,34.0,0.0,1,400,540.0,0.0,0.0,0,13,0.0,0.0,920.8082934209131,575.0,48.49562288887823,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,105173,2,1,1,0,1,,170.0,340.0,12,1.0,0.0,5.0,1.0,1.0,1,1,935.424423688069,540.0,26796.84467798548,0,1,3,4,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021457750228047637,26796.84467798548,7,4,7,7_1,7_0,7_1_0 +5169,1,42.0,350.0,6,111,0.0,,,0,68,0.0,0.0,,230.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,4,105174,2,2,0,0,2,,0.0,500.0,32,1.0,0.0,2.0,3.0,1.6,1,1,114.1961970547753,0.0,13250.196331788897,0,4,3,4,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017358233360527716,8281.37270736806,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +5170,1,61.0,176.0,7,111,0.0,,,0,75,0.0,0.0,,497.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,5,105175,2,3,0,0,1,,158.0,461.0,11,0.0,2.0,2.0,1.0,1.0,1,1,158.06414046725985,0.0,23654.376119277083,0,7,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0210109113634568,23654.376119277083,6,3,6,6_0,6_2,6_0_0 +5171,2,58.0,0.0,5,112,636.0,0.0,0.0,0,47,0.0,0.0,1084.5075455846309,676.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,105176,2,2,0,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,2044.61626398383,636.0,34046.42597612528,0,4,0,1,32.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019855241207227984,34046.42597612528,9,5,9,9_0,9_1,9_0_0 +5172,2,57.0,0.0,5,111,587.0,,,72,52,0.0,0.0,,656.0,95.60565655235995,,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,105177,2,1,0,0,2,,352.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,140.03306236608412,587.0,43890.115554425676,5,1,0,1,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014946417700507785,29260.077036283783,8,4,8,8_1,8_2,8_0_0 +5173,2,47.0,0.0,5,111,250.0,0.0,0.0,0,42,0.0,0.0,426.3001358430153,250.0,0.0,0.0,31,1,2,2,2,2,2,2,1,0,,2,,3,105178,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,928.947427962521,250.0,36354.41273968425,0,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0068767442838404465,36354.41273968425,9,5,9,9_0,9_4,9_0_0 +5174,2,56.0,0.0,1,111,900.0,2400.0,0.0,0,75,0.0,0.0,1534.680489034855,3300.0,0.0,4556.4097150554935,31,0,0,0,0,0,0,0,0,0,,1,,1,105179,1,1,3,0,2,,300.0,,11,0.0,1.0,14.0,1.0,1.0,1,1,1967.02850485985,900.0,32028.630806456404,0,5,0,1,400.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.103032815231514,32028.630806456404,8,4,8,8_1,8_3,8_1_0 +5175,2,60.0,0.0,2,111,809.0,0.0,0.0,43,43,3796.8582637317654,0.0,1379.5072395879974,4824.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,1.0,1,,2,105180,2,2,2,0,1,,576.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,459.174786162472,809.0,124727.19776058997,1,1,0,1,140.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03867640808590537,49890.87910423599,10,5,10,10_1,10_3,10_0_1 +5176,2,44.0,0.0,9,120,700.0,0.0,0.0,54,11,0.0,0.0,1193.6403803604428,775.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,105181,2,1,1,0,1,,340.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1025.40227844358,700.0,27453.309159936107,1,1,1,2,100.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02822974802363693,11936.221373885264,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5177,2,81.0,0.0,8,112,651.0,2798.0,0.0,74,74,0.0,0.0,1110.0855537352118,3449.0,0.0,5312.01432613553,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,105182,2,1,2,0,1,,238.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,254.692635467568,651.0,118650.16647187239,5,5,0,1,140.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02906864863790673,79100.11098124826,10,5,10,10_1,10_0,10_0_0 +5178,2,81.0,0.0,6,120,1194.0,0.0,0.0,0,78,0.0,0.0,2036.0094487862411,1244.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,105183,2,3,3,0,1,,181.0,508.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2096.05609036474,1194.0,16381.873967811614,0,5,2,3,65.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07593758824199895,16381.873967811614,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +5179,2,61.0,0.0,5,111,4800.0,0.0,0.0,86,78,2109.365702073203,0.0,8184.962608185893,6910.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,105184,2,1,2,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,736.690614449186,4800.0,20505.842034786787,6,5,0,1,80.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.3369771398939701,13670.561356524524,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5180,1,62.0,230.0,1,111,1104.0,0.0,0.0,0,78,0.0,0.0,1882.5413998827555,1209.0,145.4868686666347,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,105185,1,1,0,0,2,,0.0,172.0,11,0.0,2.0,1.0,1.0,1.0,1,1,976.864811633117,1104.0,9755.237381655916,0,5,2,3,35.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12393342700952058,9755.237381655916,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +5181,2,36.0,0.0,9,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,1365.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,105186,2,2,1,0,1,,0.0,810.0,43,2.0,0.0,4.0,4.0,2.1,2,2,428.245736584345,0.0,83472.45353418487,1,1,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016352700108916592,39748.78739723089,9,5,9,9_1,9_3,9_0_0 +5182,2,67.0,0.0,1,400,180.0,0.0,0.0,0,71,0.0,0.0,306.936097806971,275.0,131.6309764126695,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,105187,1,3,4,0,2,,40.0,50.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1779.97934634415,180.0,8324.990802868286,0,5,2,3,35.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033033069526665626,8324.990802868286,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +5183,1,40.0,35.0,6,112,0.0,0.0,0.0,43,21,0.0,0.0,0.0,2255.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,105188,2,2,2,0,1,,639.0,800.0,43,2.0,0.0,3.0,5.0,2.4,2,2,1610.0211166726,0.0,43983.2312108277,1,1,2,3,75.0,9,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05126953927488777,18326.346337844876,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +5184,2,41.0,0.0,2,111,700.0,0.0,0.0,0,62,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,2,105189,2,2,3,0,1,,160.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1452.29230348387,700.0,22202.69755418892,0,1,1,2,95.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031527700554923474,22202.69755418892,6,3,6,6_1,6_2,6_0_1 +5185,1,41.0,363.0,2,111,247.0,352.0,0.0,0,85,0.0,0.0,421.1845342128991,599.0,0.0,668.2734248748058,71,0,0,0,0,0,0,0,0,0,,2,,2,105190,2,2,0,0,1,,0.0,293.0,31,2.0,2.0,5.0,7.0,3.1999999999999993,3,3,256.819778024865,247.0,16735.481909290433,0,6,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.035792216994210056,5229.838096653261,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5186,2,83.0,0.0,5,111,198.0,1200.0,0.0,0,75,0.0,0.0,337.6297075876681,1398.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,0,,1,,3,105191,2,2,3,0,1,,97.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1122.49749482425,198.0,29881.03900368041,0,5,0,1,120.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0467855217426613,29881.03900368041,8,4,8,8_1,8_2,8_0_0 +5187,2,52.0,0.0,2,111,600.0,2000.0,0.0,31,37,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,31,1,2,2,1,1,2,2,2,3,30.0,1,,2,105192,2,2,1,0,1,,520.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,714.305003615969,600.0,71171.83926212176,1,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.036531302646603675,25418.514022186348,7,4,7,7_1,7_4,7_0_1 +5188,2,43.0,0.0,1,112,670.0,0.0,0.0,56,23,2109.365702073203,397.2981831030672,1142.484364059281,3100.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,105193,2,1,1,0,1,,360.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1662.8934322158,670.0,36565.18981620159,1,1,0,1,100.0,9,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08478008771682699,17411.995150572187,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +5189,2,30.0,0.0,2,111,240.0,60.0,0.0,0,52,0.0,0.0,409.2481304092947,300.0,0.0,113.91024287638734,50,2,1,2,2,1,2,2,2,3,60.0,2,,2,105194,1,2,0,1,1,336.0,0.0,320.0,12,1.0,0.0,2.0,1.0,1.0,1,1,698.067206061977,240.0,18781.413442004698,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01597323869826799,18781.413442004698,5,3,5,5_0,5_4,5_0_1 +5190,0,43.0,0.0,5,111,1200.0,,,53,21,0.0,0.0,,1338.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,5.0,3,,3,105195,2,1,0,0,2,,1100.0,,43,2.0,0.0,2.0,3.0,2.0,2,2,127.1371172544304,1200.0,21576.836533329635,1,1,5,0,19.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.062010943908908885,10788.418266664818,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +5191,2,42.0,0.0,2,111,360.0,0.0,0.0,21,42,0.0,0.0,613.872195613942,360.0,0.0,0.0,10,2,2,2,2,1,2,2,2,1,10.0,2,,2,105196,1,2,0,1,2,806.0,0.0,716.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1808.70082213783,360.0,40901.99064476482,1,1,2,3,76.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.008801527610883594,19477.13840226896,5,3,5,5_0,5_3,5_0_1 +5192,1,21.0,365.0,7,111,0.0,,,0,85,0.0,0.0,,841.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,105197,2,2,0,0,2,,641.0,450.0,31,0.0,0.0,3.0,2.0,1.3,1,1,138.18004171848443,0.0,10945.0,0,6,2,3,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07683873915029694,8419.23076923077,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +5193,2,29.0,0.0,5,120,1570.0,0.0,0.0,42,43,0.0,264.8654554020448,2677.164853094136,1830.0,83.13535352379125,0.0,31,2,2,2,2,1,2,2,2,0,,1,,3,105198,1,3,3,0,1,,88.0,657.0,43,2.0,0.0,4.0,2.0,1.5,2,2,319.824870947334,1570.0,32846.99720003741,1,1,2,3,130.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.05571285523773588,21897.998133358273,6,3,6,6_1,6_0,6_0_0 +5194,2,29.0,0.0,9,112,1645.0,0.0,0.0,52,45,0.0,0.0,2805.0548938470406,1795.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,105199,2,1,1,0,1,,540.0,665.0,43,2.0,0.0,5.0,3.0,1.8,2,2,878.942190532172,1645.0,39903.43136554274,1,1,2,3,120.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044983600120916206,22168.572980857076,6,3,6,6_1,6_0,6_0_0 +5195,2,45.0,0.0,7,211,1200.0,,,0,21,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,105200,2,2,0,0,2,,1200.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,90.76991765010659,1200.0,19091.602438654478,0,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0628548600808059,19091.602438654478,5,3,5,5_1,5_2,5_0_0 +5196,1,28.0,270.0,7,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,999.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,105201,2,1,0,0,1,,0.0,381.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2671.18939890527,0.0,11132.170758160824,0,7,2,3,52.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08973990982555206,11132.170758160824,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5197,2,70.0,0.0,2,111,600.0,,,0,74,0.0,0.0,,680.0,110.84713803172167,,10,0,0,0,0,0,0,0,0,0,,1,,2,105202,1,3,0,0,2,,600.0,1259.0,11,0.0,2.0,5.0,1.0,1.0,1,1,245.6124384998736,600.0,68507.0,0,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009925992964222634,68507.0,10,5,10,10_1,10_2,10_0_1 +5198,2,39.0,0.0,8,112,1007.0,0.0,0.0,63,63,0.0,0.0,1717.1369471756657,1037.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,105203,2,1,1,0,1,,114.0,695.0,43,2.0,0.0,4.0,2.0,1.5,2,2,927.407972797418,1007.0,35099.91921278712,1,1,2,3,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029544227544039885,23399.94614185808,6,3,6,6_1,6_0,6_0_0 +5199,2,80.0,0.0,2,111,300.0,90.0,0.0,0,77,0.0,0.0,511.56016301161833,390.0,0.0,170.865364314581,71,0,0,0,0,0,0,0,0,0,,2,,2,105204,2,1,0,1,1,,641.0,641.0,11,0.0,5.0,5.0,1.0,1.0,1,1,240.066502568931,300.0,13119.828336544857,0,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02972599869418014,13119.828336544857,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +5200,2,34.0,0.0,7,111,570.0,,,45,43,0.0,0.0,,696.0,174.58424239996165,,20,0,0,0,0,0,0,0,0,2,10.0,8,,5,105205,2,1,0,0,2,,480.0,997.0,43,2.0,0.0,4.0,4.0,2.1,2,2,105.07036293453162,570.0,61735.60624070621,1,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011273882972596176,29397.907733669625,8,4,8,8_0,8_2,8_0_0 +5201,2,46.0,0.0,8,111,900.0,480.0,0.0,54,54,0.0,79.45963662061344,1534.680489034855,1440.0,0.0,911.2819430110987,31,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,105206,2,1,1,0,1,,529.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1685.98262599131,900.0,72982.8561407075,1,1,0,1,136.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019730661091472604,31731.67658291631,8,4,8,8_1,8_3,8_0_0 +5202,2,61.0,0.0,2,111,0.0,50.0,0.0,85,75,0.0,0.0,0.0,334.0,0.0,94.92520239698945,44,0,0,0,0,0,0,0,0,0,,2,,2,105207,1,1,0,1,2,,0.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,906.451829629994,0.0,51614.106025236084,6,5,0,1,82.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006471099195958074,25807.053012618042,7,4,7,7_0,7_4,7_0_1 +5203,2,54.0,0.0,7,112,0.0,,,0,48,0.0,0.0,,976.0,69.27946126982604,,42,0,0,0,0,0,0,0,0,2,3.0,1,,5,105208,2,1,0,0,2,,0.0,800.0,12,1.0,0.0,3.0,1.0,1.0,1,1,104.33684123722037,0.0,54360.495277491995,0,1,2,3,70.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017954214637262763,54360.495277491995,10,5,10,10_1,10_0,10_0_0 +5204,1,33.0,400.0,1,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,261.0,0.0,0.0,60,2,2,2,2,1,2,2,2,3,60.0,2,,1,105209,1,3,0,0,1,,144.0,592.0,42,1.0,3.0,1.0,3.0,1.8,2,2,1034.14046208606,0.0,20921.456325458705,6,1,2,3,18.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,1,0.012475230975312019,11623.031291921503,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +5205,2,44.0,0.0,7,111,1000.0,,,63,85,0.0,476.7578197236806,,1360.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,105210,2,1,0,0,1,,300.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,99.26944027796048,1000.0,16952.89458088264,1,7,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08022228850131814,11301.929720588427,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +5206,2,56.0,0.0,7,111,900.0,0.0,0.0,47,47,0.0,0.0,1534.680489034855,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,50.0,2,,5,105211,1,1,0,0,1,,0.0,900.0,43,2.0,0.0,2.0,2.0,1.5,2,2,911.778248240408,900.0,81513.90982931045,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011041060377113473,54342.60655287363,10,5,10,10_0,10_4,10_0_0 +5207,2,46.0,0.0,1,111,2500.0,0.0,0.0,62,67,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,105212,1,1,1,0,2,,240.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1389.1329093566,2500.0,28489.6551329534,4,1,1,2,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0877511499641953,18993.103421968935,5,3,5,5_1,5_3,5_1_0 +5208,2,32.0,0.0,9,300,1140.0,0.0,0.0,42,63,0.0,0.0,1943.9286194441497,1140.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,105213,2,1,1,0,1,,196.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2209.53922261762,1140.0,39276.053773309344,1,1,1,2,136.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029025319258899295,21820.029874060747,6,3,6,6_1,6_0,6_0_0 +5209,2,86.0,0.0,6,111,600.0,0.0,0.0,0,71,0.0,529.7309108040896,1023.1203260232367,1031.0,42.95326598729215,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,105214,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,287.048869606493,600.0,20206.002914965644,0,5,0,1,200.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051024440822800554,20206.002914965644,5,3,5,5_1,5_2,5_0_0 +5210,1,65.0,230.0,6,111,650.0,,,0,46,0.0,33.1081819252556,,812.0,189.82572387932336,,31,0,0,0,0,0,0,0,0,0,,1,,4,105215,2,1,0,0,1,,600.0,900.0,22,1.0,1.0,4.0,3.0,1.8,2,2,106.96023809066517,650.0,18015.515158256036,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0450722609299286,10008.619532364464,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +5211,1,52.0,300.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,533.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,12.0,2,,5,105216,2,1,0,0,1,,0.0,293.0,12,1.0,4.0,1.0,1.0,1.0,1,1,950.33347361239,0.0,8888.752918617116,0,1,2,3,29.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059963417239740587,8888.752918617116,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +5212,2,40.0,0.0,1,112,484.0,0.0,0.0,46,46,1291.986492519837,238.3789098618403,825.3170629920776,2029.0,193.98249155551292,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,105217,2,1,2,0,1,,42.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1922.08480201006,484.0,48995.56357100743,1,1,1,2,100.0,8,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041411912673673945,23331.220748098774,6,3,6,6_1,6_1,6_1_0 +5213,2,54.0,0.0,9,111,480.0,,,0,85,0.0,0.0,,780.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,105218,2,1,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,46.37883996853858,480.0,5616.515527950311,0,7,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13887614057476896,5616.515527950311,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5214,1,87.0,138.0,2,111,114.0,80.0,0.0,0,78,0.0,668.7852748901631,194.39286194441496,699.0,0.0,151.8803238351831,71,0,0,0,0,0,0,0,0,0,,2,,2,105219,1,1,0,1,1,505.0,0.0,326.0,11,0.0,1.0,3.0,1.0,1.0,1,1,173.77529845991,114.0,13513.360128617363,0,5,2,3,61.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.051726587121712346,13513.360128617363,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +5215,2,44.0,0.0,8,211,1500.0,0.0,0.0,52,62,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,45.0,1,2003.0,6,105220,2,1,1,0,1,,450.0,457.0,43,2.0,0.0,5.0,4.0,2.3,3,2,204.713225705995,1500.0,38826.46556921795,1,1,2,3,98.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038633441854908794,16881.0719866165,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5216,2,37.0,0.0,2,111,370.0,1400.0,0.0,0,42,0.0,0.0,630.9242010476627,1770.0,0.0,2657.9056671157045,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,105221,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1111.15807254622,370.0,17871.718165566763,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09903916252496858,17871.718165566763,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +5217,2,56.0,0.0,1,111,704.0,0.0,0.0,85,37,3164.0485531098047,0.0,1200.4611825339312,3704.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,1,,1,105222,2,2,1,0,1,,400.0,,42,1.0,0.0,6.0,4.0,2.5,4,3,408.284675444452,704.0,131179.3544742644,6,1,1,2,135.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02823615053485169,52471.74178970576,10,5,10,10_1,10_4,10_1_0 +5218,2,23.0,0.0,7,111,0.0,0.0,0.0,52,47,0.0,0.0,0.0,592.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,5,105223,2,1,0,0,1,,0.0,715.0,43,2.0,0.0,2.0,2.0,1.5,2,2,653.108260768726,0.0,41505.32897859337,1,1,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01426322871227759,27670.219319062246,7,4,7,7_0,7_4,7_0_0 +5219,2,66.0,0.0,5,112,290.0,10.0,0.0,72,22,949.2145659329414,0.0,494.50815757789775,1200.0,0.0,18.985040479397888,50,0,0,0,0,0,0,0,0,0,,8,,3,105224,2,1,0,1,1,,150.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1443.42046279413,290.0,20069.518478789952,5,1,0,1,80.0,9,0,4,1,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.059792166975415714,13379.678985859968,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +5220,2,69.0,0.0,2,211,90.0,84.0,0.0,0,78,0.0,0.0,153.4680489034855,174.0,0.0,159.4743400269423,71,0,0,0,0,0,0,0,0,0,,2,,2,105225,2,1,0,1,1,738.0,320.0,276.0,11,0.0,0.0,2.0,1.0,1.0,1,1,273.161379112995,90.0,15316.354244478154,0,5,2,3,53.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011360405826519088,15316.354244478154,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +5221,1,61.0,307.0,5,111,420.0,0.0,0.0,0,54,0.0,0.0,716.1842282162656,420.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,8,,3,105226,2,1,0,1,1,856.0,0.0,452.0,32,1.0,1.0,3.0,2.0,1.5,2,2,871.172512066254,420.0,25091.923230023145,0,4,3,4,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016738453890113095,16727.94882001543,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +5222,2,76.0,0.0,6,112,1000.0,0.0,0.0,0,86,0.0,0.0,1705.2005433720612,1500.0,692.7946126982605,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,105227,2,1,2,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,905.235672056854,1000.0,30162.334466904653,0,5,0,1,120.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04973089870234883,30162.334466904653,8,4,8,8_1,8_0,8_0_0 +5223,2,65.0,0.0,2,111,805.0,600.0,0.0,78,77,0.0,264.8654554020448,1372.6864374145093,1605.0,0.0,1139.1024287638734,42,0,0,0,0,0,0,0,0,0,,1,,2,105228,2,1,1,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,656.055134621047,805.0,47422.23550715865,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033844882739821835,31614.8236714391,8,4,8,8_1,8_4,8_0_1 +5224,2,45.0,0.0,9,112,2409.0,0.0,0.0,21,33,0.0,331.081819252556,4107.828108983295,2759.0,138.5589225396521,0.0,50,2,2,1,2,1,2,2,2,2,15.0,1,2006.0,6,105229,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,1608.55892702342,2409.0,60721.064921640194,1,1,1,2,126.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04543727952664296,24288.425968656076,7,4,7,7_1,7_0,7_0_0 +5225,1,43.0,210.0,7,111,750.0,1300.0,0.0,85,43,0.0,0.0,1278.9004075290459,2050.0,0.0,2468.055262321726,33,0,0,0,0,0,0,0,0,2,30.0,2,,5,105230,2,1,0,0,1,,700.0,355.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1732.08162600159,750.0,14964.864027823758,7,1,2,3,95.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13698754604041116,9976.576018549173,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5226,1,53.0,357.0,5,111,221.0,,,0,55,0.0,0.0,,326.0,145.4868686666347,,60,0,0,0,0,0,0,0,0,0,,1,,3,105231,2,2,0,0,2,,319.0,500.0,32,1.0,1.0,3.0,2.0,1.5,2,2,100.60107978120348,221.0,13281.350547716134,0,4,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02454569652602529,8854.233698477423,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +5227,0,79.0,0.0,2,111,1188.0,0.0,0.0,0,56,0.0,0.0,2025.7782455260087,1188.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,105232,2,2,0,0,1,,360.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1393.72981767493,1188.0,15365.36314523135,0,5,5,0,60.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.07731675384246917,15365.36314523135,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +5228,2,83.0,0.0,2,111,530.0,0.0,0.0,0,77,0.0,0.0,903.7562879871924,903.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,105233,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1937.81109463455,530.0,35993.139495239935,0,5,0,1,135.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025088114364667218,35993.139495239935,9,5,9,9_0,9_3,9_0_1 +5229,1,46.0,66.0,7,112,264.0,758.0,0.0,81,56,0.0,0.0,450.1729434502241,1022.0,0.0,1439.06606833836,20,0,0,0,0,0,0,0,0,3,15.0,2,,5,105234,2,1,0,0,1,,0.0,433.0,43,2.0,0.0,2.0,2.0,1.5,2,2,905.971136760726,264.0,19465.69417704837,4,1,2,3,30.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052502622855598986,12977.129451365581,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +5230,2,65.0,0.0,2,111,200.0,750.0,0.0,0,77,0.0,0.0,341.04010867441224,950.0,0.0,1423.8780359548418,41,0,0,0,0,0,0,0,0,0,,2,,2,105235,2,1,0,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1765.4357670923,200.0,21258.751296622424,0,5,0,1,79.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04468747889961605,21258.751296622424,5,3,5,5_0,5_3,5_0_1 +5231,2,33.0,0.0,9,112,913.0,0.0,0.0,85,37,0.0,0.0,1556.848096098692,2263.0,1870.5454542853033,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,105236,2,1,1,0,1,,286.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1199.71583982207,913.0,37691.378022010365,7,1,1,2,80.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06004025638644711,17948.275248576363,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5233,2,57.0,0.0,6,111,980.0,0.0,0.0,74,34,0.0,662.163638505112,1671.09653250462,1530.0,69.27946126982604,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,4,105238,2,1,2,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,548.883144460122,980.0,228971.60603718826,5,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0066820512223314974,152647.7373581255,10,5,10,10_1,10_4,10_0_0 +5234,2,59.0,0.0,1,111,272.0,70.0,0.0,0,33,0.0,0.0,463.81454779720065,342.0,0.0,132.89528335578524,41,2,2,2,2,1,2,2,2,1,30.0,2,,1,105239,2,2,0,0,1,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1103.0305673035,272.0,17616.792552685667,0,1,3,4,17.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.019413295523415943,17616.792552685667,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +5235,2,28.0,0.0,5,111,600.0,200.0,0.0,0,67,0.0,0.0,1023.1203260232367,800.0,0.0,379.7008095879578,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,105240,2,2,0,0,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1069.02680258318,600.0,17264.99554891338,0,1,2,3,26.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04633653091502536,17264.99554891338,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +5236,1,47.0,192.0,9,112,1440.0,,,0,67,0.0,0.0,,1584.0,199.524848457099,,71,0,0,0,0,0,0,0,0,3,2.0,2,2005.0,6,105241,2,1,0,0,2,,120.0,496.0,32,3.0,1.0,4.0,3.0,2.0,3,3,94.23128904223186,1440.0,24015.117200898938,0,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06595845386674638,12007.558600449469,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +5238,2,73.0,0.0,5,111,800.0,,,0,78,0.0,0.0,,1100.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,3,105243,2,3,0,0,2,,100.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,38.5027714733164,800.0,15871.127519452604,0,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06930824534373971,15871.127519452604,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5239,2,55.0,0.0,1,112,1050.0,0.0,0.0,75,37,2109.365702073203,0.0,1790.4605705406643,3050.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,45.0,1,,1,105244,2,1,1,0,1,,156.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,90.1286742846706,1050.0,104514.70967861454,5,1,0,1,96.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029182495070586997,69676.47311907636,10,5,10,10_1,10_0,10_1_0 +5240,2,43.0,0.0,2,111,616.0,125.0,0.0,85,47,0.0,0.0,1050.4035347171896,741.0,0.0,237.31300599247362,42,0,0,0,0,0,0,0,0,2,1.0,2,,2,105245,2,1,0,1,1,,1150.0,,42,1.0,2.0,3.0,3.0,1.8,3,2,420.834993563515,616.0,39161.24171500228,6,1,1,2,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018921769779228687,21756.24539722349,6,3,6,6_0,6_2,6_0_1 +5241,1,35.0,118.0,7,112,408.0,,,0,56,0.0,0.0,,453.0,62.351515142843446,,42,0,0,0,0,0,0,0,0,2,5.0,2,,5,105246,2,2,0,0,2,,344.0,387.0,32,1.0,0.0,2.0,2.0,1.3,1,1,151.11420210616626,408.0,29006.064685320714,0,1,2,3,24.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015617423628971379,22312.3574502467,6,3,6,6_0,6_2,6_0_0 +5242,2,57.0,0.0,7,211,500.0,,,0,56,0.0,0.0,,500.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,5,105247,2,1,0,0,2,,300.0,,32,2.0,0.0,4.0,3.0,2.0,3,3,79.91536132210038,500.0,7618.0,0,4,0,1,64.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06563402467839329,3809.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5243,2,58.0,0.0,1,111,85.0,4.0,0.0,77,75,0.0,0.0,144.9420461866252,89.0,0.0,7.594016191759156,50,0,0,0,0,0,0,0,0,0,,1,,1,105248,2,1,2,0,1,,0.0,440.0,41,0.0,0.0,3.0,3.0,2.0,3,3,2348.60331827399,85.0,26681.84139713023,6,5,2,3,100.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0033356018677771024,13340.920698565114,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +5244,2,65.0,0.0,5,111,0.0,0.0,450.0,0,75,0.0,0.0,283.6432306866347,450.0,0.0,538.5294664041063,50,0,0,0,0,0,0,0,0,0,,2,,3,105249,2,2,0,1,1,640.0,0.0,492.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1512.88982869324,0.0,21925.990095922698,0,5,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020523588582833523,21925.990095922698,6,3,6,6_0,6_4,6_0_0 +5245,2,51.0,0.0,9,300,873.0,0.0,0.0,21,21,0.0,0.0,1488.6400743638094,873.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2008.0,6,105250,1,1,1,0,1,,423.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,1693.30681844579,873.0,35014.764409609124,1,1,0,1,180.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024932339677842356,23343.17627307275,6,3,6,6_1,6_0,6_0_0 +5246,2,47.0,0.0,2,111,500.0,1200.0,0.0,34,62,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,105251,1,2,3,0,2,,250.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,370.345230967434,500.0,77267.34885884021,1,1,1,2,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022001531372659512,36793.97564706676,9,5,9,9_1,9_2,9_0_1 +5247,2,26.0,0.0,5,111,400.0,600.0,0.0,53,54,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,3,45.0,2,,3,105252,1,3,0,0,1,,480.0,319.0,43,2.0,0.0,3.0,2.0,1.5,2,2,145.624816053699,400.0,31304.807184527315,4,2,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03194397570013653,20869.871456351542,5,3,5,5_0,5_3,5_0_0 +5248,2,53.0,0.0,1,112,600.0,1400.0,0.0,0,37,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,105253,2,1,1,0,1,,350.0,,32,3.0,0.0,4.0,4.0,2.5,4,4,560.442929593469,600.0,54291.87452310222,0,1,0,1,110.0,10,5,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036837924967003347,21716.749809240886,6,3,6,6_1,6_2,6_1_0 +5249,2,38.0,0.0,9,221,176.0,,,0,81,0.0,0.0,,440.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,105254,2,2,0,0,2,,480.0,,32,2.0,0.0,4.0,4.0,2.3,3,3,79.83403032611209,176.0,24118.28975172955,0,4,0,1,63.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01824341628404423,10486.212935534588,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5250,2,92.0,0.0,2,111,308.0,825.0,0.0,0,77,0.0,0.0,525.2017673585948,1133.0,0.0,1566.2658395503258,70,0,0,0,0,0,0,0,0,0,,1,,2,105255,2,2,2,0,1,,60.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,215.781251194206,308.0,16264.586046725937,0,5,0,1,75.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06966054941361836,16264.586046725937,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +5251,2,57.0,0.0,2,111,300.0,60.0,0.0,0,37,0.0,0.0,511.56016301161833,360.0,0.0,113.91024287638734,31,1,2,2,2,1,1,2,2,3,120.0,2,,2,105256,2,3,0,1,1,1304.0,0.0,291.0,32,2.0,0.0,3.0,2.0,1.5,2,2,627.156412169108,300.0,31250.127110987254,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011519953141996256,20833.418073991503,5,3,5,5_0,5_4,5_0_1 +5252,1,54.0,358.0,7,111,720.0,,,0,56,0.0,0.0,,830.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,2,,5,105257,1,1,0,0,2,,510.0,481.0,32,2.0,4.0,4.0,2.0,1.5,2,2,80.47353151352436,720.0,9010.755092596384,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09211214725855361,6007.1700617309225,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5253,2,48.0,0.0,9,111,800.0,,,0,45,0.0,0.0,,844.0,60.965925917446924,,42,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,105258,1,1,0,0,2,,100.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,112.48944861286252,800.0,38738.707793304566,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021786994148159825,25825.805195536377,7,4,7,7_1,7_3,7_0_0 +5254,2,80.0,0.0,2,111,1680.0,,,71,77,0.0,0.0,,2116.0,604.1169022728832,,71,0,0,0,0,0,0,0,0,0,,1,,2,105259,2,1,0,0,2,,480.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,58.26754432471683,1680.0,26633.450983806928,5,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07944896068055629,17755.63398920462,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +5256,2,74.0,0.0,2,112,550.0,0.0,0.0,77,75,2847.643697798824,463.51454695357836,937.8602988546337,3600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105261,2,1,1,0,1,,700.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,666.790312327385,550.0,42452.77603246762,5,5,0,1,130.0,9,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08480010817777246,28301.850688311748,8,4,8,8_1,8_1,8_0_1 +5257,2,73.0,0.0,2,221,1100.0,0.0,0.0,77,75,0.0,0.0,1875.7205977092674,1180.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105262,2,1,2,0,1,,290.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,2640.12934240414,1100.0,29793.21457921632,5,5,0,1,150.0,1,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03960633374631435,19862.14305281088,5,3,5,5_1,5_1,5_0_1 +5258,2,58.0,0.0,7,111,550.0,850.0,0.0,0,52,0.0,0.0,937.8602988546337,1400.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,2,40.0,2,,5,105263,2,1,0,0,1,,120.0,567.0,12,1.0,2.0,3.0,1.0,1.0,1,1,510.979873500862,550.0,23679.139926341515,0,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05912376903700756,23679.139926341515,6,3,6,6_0,6_2,6_0_0 +5259,2,32.0,0.0,7,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,882.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,2,,5,105264,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,768.477398367274,0.0,75054.04810314883,1,1,1,2,77.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01175153136027844,41696.69339063824,9,5,9,9_0,9_4,9_0_0 +5260,2,44.0,0.0,2,112,0.0,0.0,0.0,48,43,0.0,0.0,0.0,2813.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,105265,2,2,3,0,1,,137.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,378.394224173139,0.0,65759.88333168102,4,1,1,2,100.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04277683988293796,28591.253622470012,8,4,8,8_1,8_0,8_0_1 +5261,0,27.0,0.0,1,111,200.0,0.0,0.0,0,46,0.0,0.0,341.04010867441224,200.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,15.0,2,,1,105266,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2412.12079282957,200.0,23540.952489526957,0,1,5,0,28.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.008495832957012985,23540.952489526957,6,3,6,6_0,6_3,6_1_0 +5262,2,83.0,0.0,1,120,540.0,1160.0,0.0,0,77,0.0,1748.1120056534955,920.8082934209131,3020.0,0.0,2202.2646956101553,70,0,0,0,0,0,0,0,0,0,,1,,1,105267,1,2,3,0,2,,310.0,,21,0.0,3.0,4.0,3.0,2.0,3,3,234.666720339072,540.0,25975.110369416157,0,5,0,1,50.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11626514602054723,12987.555184708079,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +5263,2,33.0,0.0,9,120,1488.0,0.0,0.0,22,22,0.0,0.0,2537.338408537627,1538.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,105268,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,282.443831019838,1488.0,27798.842877079882,1,1,1,2,148.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05532604385012296,18532.561918053256,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5264,2,58.0,0.0,1,211,432.0,0.0,0.0,52,67,2429.9892887883298,0.0,736.6466347367304,2736.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,45.0,1,,1,105269,2,2,2,0,1,,92.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1001.51424388113,432.0,27491.085245940994,1,1,0,1,120.0,4,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09952317180362914,18327.390163960663,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +5265,2,50.0,0.0,8,111,233.0,,,0,42,0.0,0.0,,509.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105270,2,1,0,0,2,,240.0,,32,1.0,0.0,5.0,5.0,2.8,4,2,137.70063690336985,233.0,41909.84475255159,0,4,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01214511776422199,14967.801697339853,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5266,2,67.0,0.0,5,111,1200.0,0.0,0.0,72,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,105271,2,1,2,0,1,,496.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1104.17520360751,1200.0,33558.961117474224,5,5,0,1,125.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03575796031943186,22372.640744982815,6,3,6,6_1,6_2,6_0_0 +5267,2,26.0,0.0,1,111,1000.0,0.0,0.0,34,55,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,105272,2,3,0,0,1,,0.0,526.0,42,1.0,0.0,2.0,2.0,1.5,2,2,174.805778777803,1000.0,16811.42878361587,3,4,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.059483343912718645,11207.619189077246,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +5268,2,93.0,0.0,5,120,1500.0,0.0,0.0,86,75,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,105273,2,1,2,0,1,,507.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,2002.98500881405,1500.0,30883.709934117,5,5,0,1,120.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04856929440147867,20589.139956078,5,3,5,5_1,5_1,5_0_0 +5269,2,53.0,0.0,2,111,210.0,816.0,0.0,0,47,0.0,0.0,358.0921141081328,1026.0,0.0,1549.179303118868,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,105274,2,2,0,0,1,,279.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1510.11464615419,210.0,54303.82993850442,0,1,2,3,67.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018893694996501696,54303.82993850442,10,5,10,10_0,10_2,10_0_1 +5270,2,86.0,0.0,2,111,580.0,871.0,0.0,78,78,0.0,0.0,989.0163151557955,1451.0,0.0,1653.5970257555562,71,2,2,2,2,1,2,2,2,0,,2,,2,105275,2,3,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1430.88886338456,580.0,31331.532241532048,5,5,0,1,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.046311172681066715,20887.688161021364,5,3,5,5_0,5_3,5_0_1 +5271,2,52.0,0.0,8,111,1000.0,,,52,52,0.0,0.0,,1088.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,105276,1,2,0,0,1,,480.0,688.0,43,3.0,0.0,4.0,5.0,2.8,4,4,114.74226270256017,1000.0,46104.67829049272,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023598472873941675,16465.95653231883,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5272,1,72.0,213.0,5,111,110.0,128.0,0.0,0,86,0.0,584.0283291615087,187.57205977092673,679.0,0.0,243.008518136293,71,0,0,0,0,0,0,0,0,0,,2,,3,105277,2,3,0,1,1,442.0,48.0,232.0,11,0.0,7.0,3.0,1.0,1.0,1,1,351.099566057422,110.0,9972.3328,0,5,2,3,52.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06808838148682723,9972.3328,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5273,2,73.0,0.0,5,112,2118.0,0.0,0.0,75,74,0.0,0.0,3611.6147508620256,2118.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,105278,2,1,1,0,1,,225.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,817.813585671694,2118.0,48633.36819751023,5,5,0,1,138.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0435503457502339,32422.24546500682,8,4,8,8_1,8_0,8_0_0 +5274,2,51.0,0.0,6,111,557.0,0.0,0.0,33,62,0.0,573.4337109454269,949.796702658238,990.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,105279,2,3,3,0,1,,390.0,472.0,43,2.0,2.0,5.0,2.0,1.5,2,2,1447.66457582923,557.0,41682.51739494207,1,1,2,3,90.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023750964717887475,27788.344929961382,7,4,7,7_1,7_3,7_0_0 +5275,2,47.0,0.0,2,300,515.0,0.0,0.0,0,46,1624.2115905963662,0.0,878.1782798366115,2105.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,2,105280,2,1,3,0,1,,240.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1101.28495092131,515.0,30921.354679001553,0,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06807593075569515,30921.354679001553,8,4,8,8_1,8_0,8_0_1 +5276,2,71.0,0.0,5,111,550.0,,,0,77,0.0,0.0,,558.0,11.084713803172168,,71,0,0,0,0,0,0,0,0,0,,1,,3,105281,2,3,0,0,2,,360.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,101.24512528309506,550.0,12056.500090080419,0,5,0,1,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04628208815418157,12056.500090080419,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +5277,2,84.0,0.0,2,111,0.0,0.0,200.0,72,75,0.0,0.0,126.06365808294876,200.0,0.0,239.34642951293617,70,2,2,2,1,2,2,2,2,0,,2,,2,105282,2,2,0,1,1,936.0,0.0,383.0,41,0.0,5.0,4.0,2.0,1.5,2,2,828.082733792378,0.0,31150.8916044807,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.006420361976773477,20767.2610696538,5,3,5,5_0,5_4,5_0_1 +5278,2,63.0,0.0,9,120,509.0,0.0,0.0,85,74,0.0,482.0551288317215,867.9470765763791,963.0,124.70303028568689,0.0,33,0,0,0,0,0,0,0,0,0,,1,2004.0,6,105283,2,1,1,0,1,,265.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1591.38595769158,509.0,31568.936636935498,6,5,1,2,125.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03050467017863677,21045.957757957,5,3,5,5_1,5_1,5_0_0 +5279,2,51.0,0.0,5,111,825.0,1950.0,0.0,52,48,0.0,0.0,1406.7904482819504,2775.0,0.0,3702.0828934825886,43,0,0,0,0,0,0,0,0,2,25.0,1,,3,105284,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,3.0,2.0,3,3,972.192813011755,825.0,50052.60620228146,1,1,0,1,250.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05544166848745455,25026.30310114073,7,4,7,7_1,7_2,7_0_0 +5280,1,55.0,357.0,9,211,270.0,,,0,22,0.0,0.0,,358.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105285,2,1,0,0,2,,360.0,530.0,32,1.0,2.0,4.0,2.0,1.5,2,1,120.9104535104114,270.0,9557.590909090908,0,4,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037457137829521515,6371.727272727272,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +5281,2,72.0,0.0,1,112,500.0,0.0,0.0,90,75,2109.365702073203,0.0,852.6002716860306,2620.0,166.2707070475825,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,105286,1,2,3,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1370.88540306973,500.0,25362.26914361491,5,5,0,1,88.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.10330305956317001,16908.17942907661,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5282,2,47.0,0.0,2,120,350.0,,,0,52,0.0,0.0,,482.0,182.89777775234077,,71,2,2,1,2,1,2,2,2,1,20.0,1,,2,105287,2,2,0,0,1,,150.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,85.51654210704396,350.0,19119.123019058214,0,1,0,1,60.0,0,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.025210361349709165,12746.082012705476,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +5283,2,48.0,0.0,2,111,200.0,0.0,0.0,0,68,0.0,0.0,341.04010867441224,200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,105288,2,1,0,1,2,170.0,0.0,423.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1236.26652240414,200.0,24772.98906768237,0,1,2,3,10.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008073309177733025,24772.98906768237,7,4,7,7_0,7_4,7_0_1 +5284,2,61.0,0.0,1,111,963.0,1518.0,0.0,21,35,0.0,0.0,1642.108123267295,2481.0,0.0,2881.9291447725996,41,2,2,2,2,1,2,2,1,0,,2,,1,105289,1,2,0,0,2,,0.0,,43,4.0,1.0,5.0,4.0,2.5,4,4,967.575058082622,963.0,75575.45129574733,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.032828120209182354,30230.180518298934,8,4,8,8_0,8_4,8_1_0 +5285,2,46.0,0.0,9,111,1200.0,0.0,0.0,0,42,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,105290,2,1,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,431.040120883224,1200.0,23901.804099967667,0,1,1,2,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050205415247362994,23901.804099967667,6,3,6,6_1,6_3,6_0_0 +5286,1,63.0,186.0,5,112,0.0,0.0,0.0,56,78,0.0,0.0,0.0,881.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,105291,2,2,5,0,1,,0.0,490.0,42,1.0,3.0,3.0,3.0,2.0,3,3,1746.68535735123,0.0,16349.922912350215,4,5,2,3,70.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05388404610363762,8174.961456175108,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +5287,2,49.0,0.0,8,111,520.0,780.0,0.0,77,55,0.0,52.973091080408956,886.7042825534718,1340.0,0.0,1480.8331573930354,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,105292,2,1,2,0,1,,370.0,,42,1.0,6.0,7.0,2.0,1.5,2,2,1073.56141133723,520.0,29507.29193145516,5,1,1,2,200.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045412503563959476,19671.527954303438,5,3,5,5_1,5_3,5_0_0 +5288,0,41.0,0.0,2,111,480.0,,,21,55,0.0,0.0,,552.0,99.7624242285495,,10,0,0,0,0,0,0,0,0,2,1.0,1,,2,105293,2,2,0,0,2,,160.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,150.29876208987037,480.0,45640.08108167656,1,1,5,0,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012094632325743508,25355.600600931422,7,4,7,7_1,7_2,7_0_1 +5289,2,48.0,0.0,1,112,600.0,0.0,0.0,69,69,0.0,0.0,1023.1203260232367,728.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,105294,2,1,1,0,1,,100.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1286.8890320073,600.0,27178.429842738566,1,1,1,2,60.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026785947687647763,18118.953228492377,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5290,2,78.0,0.0,2,111,192.0,1500.0,0.0,74,77,0.0,0.0,327.3985043274357,1692.0,0.0,2847.7560719096837,31,2,2,1,2,2,2,1,2,0,,1,,2,105295,2,2,5,0,1,,350.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,826.063633469024,192.0,27932.38343603102,5,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06057485226332051,18621.588957354015,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +5291,0,54.0,0.0,1,112,260.0,0.0,0.0,0,69,0.0,58.270400188449855,443.3521412767359,336.0,44.33885521268867,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105296,2,1,3,0,2,,70.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1119.40682351663,260.0,19267.9337687147,0,1,5,0,84.0,9,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017438299510119885,19267.9337687147,5,3,5,5_1,5_1,5_1_0 +5292,2,50.0,0.0,9,111,900.0,0.0,0.0,64,37,0.0,728.3800023556231,1534.680489034855,1510.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,4,60.0,1,2011.0,6,105297,2,1,1,0,1,,230.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,420.454740282431,900.0,78570.56388313233,1,1,1,2,140.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01921839331897896,52380.37592208822,10,5,10,10_1,10_3,10_0_0 +5293,1,28.0,64.0,7,111,0.0,,,0,46,0.0,0.0,,594.0,0.0,,42,0,0,0,0,0,0,0,0,2,15.0,8,,5,105298,2,1,0,0,2,,442.0,378.0,12,1.0,0.0,2.0,1.0,1.0,1,1,105.25466302618503,0.0,16286.164074662687,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03647267688553621,16286.164074662687,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +5294,2,37.0,0.0,5,112,1050.0,0.0,0.0,54,48,0.0,899.2182210899421,1790.4605705406643,1729.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,3,105299,2,1,0,0,1,,140.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,925.615239287636,1050.0,60361.02613974655,1,1,1,2,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028644310916733858,28743.34578083169,8,4,8,8_0,8_0,8_0_0 +5295,2,47.0,0.0,9,111,445.0,1300.0,0.0,34,34,0.0,0.0,758.8142418005672,1745.0,0.0,2468.055262321726,20,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,105300,2,2,1,0,1,,536.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1131.83575041092,445.0,80707.0,1,1,0,1,157.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02162142069461137,44837.22222222222,10,5,10,10_1,10_2,10_0_0 +5297,2,69.0,0.0,6,112,1000.0,0.0,0.0,77,78,0.0,0.0,1705.2005433720612,1066.0,91.44888887617039,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,105302,2,1,0,0,1,,0.0,299.0,41,0.0,0.0,2.0,2.0,1.5,2,2,897.142670017843,1000.0,24444.13077707234,5,5,2,3,49.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04360965050145564,16296.087184714894,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +5298,2,61.0,0.0,9,111,539.0,509.0,0.0,56,75,0.0,0.0,919.1030928775409,1048.0,0.0,966.3385604013527,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,105303,2,1,1,0,1,,239.0,618.0,42,1.0,2.0,3.0,2.0,1.5,2,2,955.80833008357,539.0,39931.0,1,5,2,3,71.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026245273096090756,26620.666666666668,7,4,7,7_1,7_2,7_0_0 +5299,2,35.0,0.0,7,111,600.0,,,0,64,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,105304,2,2,0,0,2,,280.0,188.0,12,1.0,4.0,2.0,1.0,1.0,1,1,193.76819475341563,600.0,28568.2352875579,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02100234732599368,28568.2352875579,8,4,8,8_0,8_2,8_0_0 +5301,2,63.0,0.0,9,111,732.0,,,77,54,0.0,0.0,,892.0,221.69427606344334,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,105306,2,2,0,0,2,,200.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,126.21601110546527,732.0,63714.11285547095,5,1,1,2,107.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014000037982533197,42476.075236980636,9,5,9,9_1,9_3,9_0_0 +5302,2,34.0,0.0,5,111,0.0,0.0,0.0,62,54,0.0,0.0,0.0,1220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,3,105307,1,1,2,0,2,,728.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,178.673015572738,0.0,44789.91465368023,1,1,1,2,80.0,7,6,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027238274719502215,29859.943102453486,8,4,8,8_1,8_2,8_0_0 +5303,1,44.0,95.0,2,111,600.0,330.0,0.0,56,62,0.0,0.0,1023.1203260232367,930.0,0.0,626.5063358201304,20,0,0,0,0,0,0,0,0,2,7.0,2,,2,105308,2,2,0,1,1,1152.0,0.0,697.0,43,2.0,0.0,5.0,7.0,3.1999999999999993,3,2,1229.06336813929,600.0,49449.96038497338,1,1,2,3,100.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018806890698391823,15453.112620304186,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +5304,2,45.0,0.0,1,111,0.0,0.0,0.0,69,43,0.0,0.0,0.0,2174.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,,1,105309,1,1,3,0,2,,344.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,255.722234941741,0.0,24717.820507083878,4,1,0,1,36.0,6,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08795273836449106,16478.547004722586,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +5305,2,62.0,0.0,1,111,481.0,1207.0,0.0,75,43,0.0,397.2981831030672,820.2014613619614,1988.0,0.0,2291.4943858633255,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,105310,2,1,3,0,1,,273.0,,42,1.0,2.0,7.0,3.0,2.0,3,3,1053.22864919812,481.0,68008.27633313928,5,1,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029231736300178533,34004.13816656964,9,5,9,9_1,9_2,9_1_0 +5306,2,39.0,0.0,2,111,0.0,,,56,52,0.0,0.0,,86.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,105311,1,3,0,0,2,,430.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,86.54772311453227,0.0,14631.523255813954,1,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.005877720213842206,8128.624031007752,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +5307,2,40.0,0.0,9,111,1340.0,,,54,54,0.0,0.0,,1440.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,105312,2,1,0,0,2,,300.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,163.94225456287901,1340.0,56449.09489177863,1,1,1,2,130.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025509709283394105,28224.547445889315,8,4,8,8_1,8_3,8_0_0 +5308,1,44.0,72.0,1,111,1300.0,0.0,0.0,81,45,0.0,264.8654554020448,2216.7607063836795,1570.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,105313,2,1,3,0,1,,400.0,,43,2.0,0.0,3.0,4.0,2.5,4,3,1766.94546135814,1300.0,48225.72975023806,4,1,1,2,65.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03255523572439564,19290.291900095224,5,3,5,5_1,5_2,5_1_0 +5309,2,86.0,0.0,2,111,468.0,0.0,0.0,77,75,0.0,0.0,798.0338542981247,468.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,105314,2,2,0,1,1,,384.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,345.938837173651,468.0,39650.145874511865,5,5,0,1,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011803235263778498,26433.43058300791,7,4,7,7_0,7_3,7_0_1 +5310,0,79.0,0.0,1,300,390.0,0.0,0.0,77,86,5273.414255183007,0.0,665.0282119151038,11351.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,105315,2,1,1,0,2,,258.0,,41,0.0,1.0,9.0,2.0,1.5,2,2,1331.11402407117,390.0,73171.92877420428,5,5,0,1,180.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15512779545592126,48781.28584946952,10,5,10,10_1,10_0,10_1_0 +5311,2,87.0,0.0,2,111,3.0,3.0,0.0,0,78,0.0,0.0,5.115601630116183,327.0,0.0,5.695512143819367,70,0,0,0,0,0,0,0,0,0,,2,,2,105316,2,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,2177.40259698157,3.0,9773.106371435548,0,5,0,1,82.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03345916718513806,9773.106371435548,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +5312,2,31.0,0.0,8,111,0.0,0.0,0.0,56,53,0.0,0.0,0.0,3313.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,10.0,1,2000.0,6,105317,2,2,2,0,1,,183.0,763.0,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,266.289380148377,0.0,35961.27783411395,1,1,2,3,140.0,7,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09212687088825271,13318.991790412576,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5313,2,58.0,0.0,1,111,1500.0,0.0,0.0,0,34,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,105318,2,1,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,851.400065435342,1500.0,47510.23583989303,0,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03157214384401122,47510.23583989303,10,5,10,10_0,10_4,10_1_0 +5314,2,50.0,0.0,1,112,1829.0,0.0,0.0,47,43,0.0,0.0,3118.8117938275,1829.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,105319,2,1,2,0,1,,410.0,,43,4.0,0.0,7.0,4.0,2.5,4,4,866.477068098292,1829.0,73534.69843568509,4,1,0,1,169.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024872611690924112,29413.879374274034,8,4,8,8_1,8_0,8_1_0 +5315,2,66.0,0.0,5,111,300.0,0.0,0.0,0,31,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,3,105320,2,1,0,1,2,2000.0,0.0,650.0,12,1.0,2.0,4.0,1.0,1.0,1,1,327.723543560727,300.0,35600.061065180635,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008426951837265838,35600.061065180635,9,5,9,9_0,9_4,9_0_0 +5316,2,61.0,0.0,6,111,100.0,100.0,0.0,77,75,0.0,0.0,170.52005433720612,200.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,1,,4,105321,2,1,2,0,1,,480.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,663.517474220185,100.0,49229.56527857266,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004062599352000589,32819.71018571511,8,4,8,8_1,8_4,8_0_0 +5317,2,47.0,0.0,9,111,150.0,,,0,35,0.0,0.0,,173.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,105322,2,1,0,0,2,,110.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,221.8656335643617,150.0,52980.206345540704,0,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003265370445552469,52980.206345540704,10,5,10,10_1,10_2,10_0_0 +5318,2,77.0,0.0,2,211,0.0,0.0,0.0,0,77,3691.3899786281054,0.0,0.0,6426.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105323,2,1,2,0,1,,240.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2274.27129337373,0.0,26692.999607964535,0,5,0,1,129.0,1,2,2,1,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.24073727547962198,26692.999607964535,7,4,7,7_1,7_1,7_0_1 +5319,2,36.0,0.0,5,111,1000.0,,,85,38,0.0,0.0,,1000.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,3,105324,1,2,0,0,2,,700.0,962.0,42,1.0,0.0,5.0,4.0,2.1,2,2,125.18357145327195,1000.0,61545.3688772735,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01624817623555205,29307.31851298738,8,4,8,8_1,8_2,8_0_0 +5320,0,39.0,0.0,6,111,660.0,,,65,56,0.0,99.3245457757668,,877.0,196.75367000630598,,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,105325,2,1,0,0,2,,200.0,,43,2.0,3.0,3.0,3.0,1.8,2,2,80.89275310214704,660.0,25235.321033812615,1,1,5,0,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03475287668521888,14019.622796562564,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5321,2,59.0,0.0,2,111,1850.0,0.0,0.0,74,31,0.0,0.0,3154.621005238313,1850.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,7.0,1,,2,105326,2,2,2,0,1,,600.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,1443.44019794663,1850.0,156518.45812285,6,1,0,1,180.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011819692208748638,104345.63874856666,10,5,10,10_1,10_3,10_0_1 +5322,2,71.0,0.0,8,111,1140.0,0.0,0.0,74,74,0.0,158.91927324122688,1943.9286194441497,1410.0,207.83838380947813,0.0,10,0,0,0,0,0,0,0,0,0,,1,2001.0,6,105327,2,1,3,0,1,,261.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1373.38784690477,1140.0,78753.90846526672,5,5,0,1,108.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01790387331216533,52502.605643511146,10,5,10,10_1,10_2,10_0_0 +5323,1,69.0,60.0,2,120,10.0,70.0,0.0,86,77,0.0,0.0,17.052005433720613,80.0,0.0,132.89528335578524,71,0,0,0,0,0,0,0,0,0,,2,,2,105328,2,2,0,0,1,,240.0,360.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1341.29005783038,10.0,15969.514154558065,5,5,2,3,70.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.005009545013438381,10646.342769705376,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +5324,2,66.0,0.0,9,112,499.0,1010.0,0.0,0,71,0.0,0.0,850.8950711426585,1509.0,0.0,1917.4890884191868,31,0,0,0,0,0,0,0,0,0,,1,2004.0,6,105329,2,1,1,0,1,,181.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,400.498763137806,499.0,35279.0,0,5,0,1,117.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04277332123926415,35279.0,9,5,9,9_1,9_0,9_0_0 +5325,1,57.0,160.0,8,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1666.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,105330,2,2,0,0,1,,0.0,317.0,11,0.0,2.0,2.0,1.0,1.0,1,1,3571.2119868743,0.0,9503.817975975091,0,7,2,3,54.0,10,1,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17529797016436108,9503.817975975091,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +5326,2,65.0,0.0,1,111,720.0,0.0,0.0,72,37,0.0,0.0,1227.744391227884,720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,105331,2,2,0,0,2,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,760.586511410611,720.0,124465.2158438423,5,1,0,1,61.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005784748735769944,82976.81056256154,10,5,10,10_0,10_4,10_1_0 +5327,1,42.0,252.0,2,111,360.0,0.0,0.0,0,81,0.0,0.0,613.872195613942,360.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,105332,1,3,0,1,1,49.0,0.0,240.0,12,1.0,2.0,2.0,1.0,1.0,1,1,405.622165687888,360.0,6484.6511981603035,0,4,2,3,50.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05551570763006221,6484.6511981603035,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5328,1,41.0,321.0,6,111,250.0,,,0,56,0.0,0.0,,388.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,,4,105333,2,1,0,0,2,,0.0,262.0,32,1.0,0.0,4.0,6.0,3.0999999999999996,4,2,170.9788195178932,250.0,26496.213787434135,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014643601652399465,8547.16573788198,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5329,2,42.0,0.0,5,211,300.0,,,0,52,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,1,30.0,1,,3,105334,2,2,0,0,2,,140.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,81.255346956633,300.0,16166.750573306,0,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01855660472026766,10777.833715537334,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +5330,2,70.0,0.0,5,111,1000.0,0.0,0.0,78,75,0.0,0.0,1705.2005433720612,1090.0,124.70303028568689,0.0,71,2,2,2,1,1,2,2,2,0,,1,,3,105335,1,1,3,0,2,,600.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,1192.03773120908,1000.0,52997.75479765193,5,5,0,1,125.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.020566908997591962,26498.877398825964,7,4,7,7_1,7_3,7_0_0 +5331,2,45.0,0.0,9,111,1080.0,,,85,64,0.0,33.1081819252556,,1381.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105336,2,1,0,0,2,,300.0,,42,1.0,1.0,3.0,4.0,2.1,2,2,77.91173562154486,1080.0,23597.75429827771,6,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058522517971161044,11237.025856322718,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +5332,1,33.0,260.0,2,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1565.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,105337,2,2,5,0,1,,85.0,540.0,32,1.0,0.0,5.0,2.0,1.3,1,1,887.608466495631,0.0,17878.006506351507,0,1,2,3,90.0,9,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0875377240434499,13752.312697193467,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +5333,2,59.0,0.0,7,211,500.0,,,85,75,0.0,0.0,,632.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,105338,2,1,0,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,110.3979431438901,500.0,35460.37512491727,6,5,0,1,55.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017822710497946953,23640.25008327818,6,3,6,6_1,6_2,6_0_0 +5334,2,45.0,0.0,7,112,900.0,0.0,0.0,0,43,1582.0242765549024,0.0,1534.680489034855,2400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,105339,2,1,2,0,1,,735.0,,32,1.0,0.0,6.0,3.0,1.8,2,1,960.717051564077,900.0,42479.82638395137,0,1,0,1,160.0,8,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056497406046525325,23599.90354663965,6,3,6,6_1,6_1,6_0_0 +5335,2,58.0,0.0,1,112,461.0,0.0,0.0,52,63,0.0,344.3250920226582,786.0974504945202,721.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,1,105340,2,1,0,0,1,,0.0,400.0,43,2.0,2.0,2.0,2.0,1.5,2,2,723.517940005703,461.0,37196.50830233675,1,1,2,3,35.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019383539824212627,24797.67220155783,7,4,7,7_0,7_0,7_1_0 +5336,1,36.0,133.0,2,111,150.0,80.0,0.0,81,42,0.0,0.0,255.78008150580916,230.0,0.0,151.8803238351831,20,2,1,2,2,1,2,2,2,2,30.0,2,,2,105341,1,2,0,1,1,,120.0,258.0,43,2.0,0.0,2.0,2.0,1.5,2,2,266.271585052901,150.0,16502.75978279781,4,1,2,3,57.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.013937062832348078,11001.83985519854,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5337,2,46.0,0.0,2,111,130.0,270.0,0.0,0,63,94.92145659329414,0.0,221.67607063836795,490.0,0.0,512.596092943743,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,105342,2,1,0,1,1,52.0,160.0,280.0,12,1.0,0.0,2.0,1.0,1.0,1,1,299.233027736605,130.0,18900.684175852824,0,1,2,3,50.0,7,5,5,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025924987447068993,18900.684175852824,5,3,5,5_0,5_2,5_0_1 +5339,1,20.0,250.0,6,111,660.0,,,0,68,0.0,0.0,,960.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,105344,2,1,0,0,1,,700.0,,22,5.0,1.0,5.0,5.0,3.0,5,5,116.27759040806794,660.0,17739.701718877845,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.054115904270160775,5913.233906292615,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +5340,2,66.0,0.0,2,111,550.0,1050.0,0.0,75,77,0.0,0.0,937.8602988546337,1600.0,0.0,1993.4292503367785,70,0,0,0,0,0,0,0,0,0,,1,,2,105345,2,2,3,0,1,,262.0,427.0,41,0.0,4.0,3.0,2.0,1.5,2,2,777.561433961646,550.0,32922.588392025464,5,5,2,3,75.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04859885197810125,21948.39226135031,6,3,6,6_1,6_2,6_0_1 +5341,2,30.0,0.0,5,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,458.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,3,105346,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,806.095318339108,0.0,70806.4852677339,1,1,1,2,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0064683340553934815,47204.32351182259,10,5,10,10_0,10_4,10_0_0 +5342,1,52.0,217.0,6,111,300.0,,,0,85,0.0,0.0,,540.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,4,105347,1,2,0,0,2,,240.0,443.0,31,0.0,0.0,3.0,2.0,1.5,2,2,92.61430417907452,300.0,10598.0,0,7,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05095301000188715,7065.333333333333,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5343,2,65.0,0.0,7,111,290.0,0.0,0.0,75,74,0.0,0.0,494.50815757789775,672.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,105348,1,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,656.257649682303,290.0,172143.5847459381,5,5,0,1,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0039037179398336915,114762.3898306254,10,5,10,10_0,10_4,10_0_0 +5344,1,70.0,115.0,2,111,104.0,0.0,0.0,78,77,0.0,0.0,177.34085651069435,236.0,182.89777775234077,0.0,70,1,2,2,2,1,2,2,2,0,,2,,2,105349,1,1,0,0,2,,260.0,163.0,41,0.0,2.0,4.0,2.0,1.5,2,2,333.896670104469,104.0,15319.766890172945,5,5,2,3,42.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.01540493414109226,10213.177926781964,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5345,1,41.0,247.0,6,120,320.0,,,0,64,0.0,0.0,,383.0,87.29212119998083,,43,2,2,1,2,1,2,2,2,0,,1,,4,105350,2,1,0,0,2,,150.0,330.0,12,1.0,0.0,4.0,1.0,1.0,1,1,127.1022499109794,320.0,5344.567670559723,0,4,2,3,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.07166154937278385,5344.567670559723,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +5346,2,92.0,0.0,6,111,264.0,120.0,0.0,77,75,0.0,0.0,450.1729434502241,384.0,0.0,227.8204857527747,70,0,0,0,0,0,0,0,0,0,,2,,4,105351,2,1,0,1,2,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1680.49523130385,264.0,62586.44209603402,5,5,0,1,88.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006135514132769872,41724.29473068935,9,5,9,9_0,9_3,9_0_0 +5347,2,35.0,0.0,1,111,1600.0,0.0,0.0,46,37,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,1,105352,1,3,0,0,2,,0.0,810.0,43,2.0,0.0,2.0,2.0,1.5,2,2,890.56458776775,1600.0,50512.162209548325,2,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03167553971185085,33674.77480636555,9,5,9,9_0,9_4,9_1_0 +5348,2,74.0,0.0,2,111,180.0,0.0,0.0,0,78,0.0,0.0,306.936097806971,180.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,105353,2,1,0,1,1,727.0,0.0,169.0,11,0.0,4.0,1.0,1.0,1.0,1,1,603.874357656326,180.0,12422.717222269472,0,5,2,3,36.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014489583621635098,12422.717222269472,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +5349,2,41.0,0.0,5,111,1500.0,0.0,0.0,52,62,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,1,1,2,2,1,2,2,2,0,,2,,3,105354,1,2,0,1,1,656.0,1548.0,479.0,43,2.0,0.0,4.0,5.0,2.8,4,3,1136.58491005792,1500.0,49340.0558211864,4,1,2,3,75.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.030401262727309416,17621.448507566573,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +5350,2,30.0,0.0,9,111,600.0,2000.0,0.0,21,46,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,10,2,1,2,2,1,2,2,2,2,10.0,1,2010.0,6,105355,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1114.48013926569,600.0,76686.55837904399,1,1,1,2,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.03390424678010453,42603.64354391333,9,5,9,9_1,9_3,9_0_0 +5351,2,68.0,0.0,6,111,2172.0,0.0,0.0,77,75,0.0,0.0,3703.695580204117,2172.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,105356,2,1,2,0,1,,335.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,596.047213357512,2172.0,46770.716261554946,5,5,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04643931446021839,31180.477507703297,8,4,8,8_1,8_4,8_0_0 +5352,2,57.0,0.0,5,111,280.0,580.0,0.0,0,54,0.0,0.0,477.4561521441771,860.0,0.0,1101.1323478050776,42,0,0,0,0,0,0,0,0,3,45.0,2,,3,105357,2,1,0,0,1,,0.0,534.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1254.96572959384,280.0,40204.760254192326,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021390501884918565,40204.760254192326,9,5,9,9_0,9_4,9_0_0 +5353,1,35.0,180.0,2,111,240.0,0.0,0.0,0,52,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,105358,2,1,0,1,1,516.0,561.0,700.0,32,1.0,1.0,2.0,2.0,1.3,1,1,665.972358870388,240.0,21234.288720651046,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.011302474180196679,16334.06824665465,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +5354,2,35.0,0.0,2,111,256.0,235.0,0.0,64,64,0.0,0.0,436.53133910324766,491.0,0.0,446.14845126585044,43,2,2,2,1,2,2,2,2,2,7.0,2,,2,105359,2,1,0,1,1,960.0,0.0,590.0,43,2.0,0.0,3.0,3.0,1.8,2,2,396.458928203258,256.0,26832.26605196219,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01829886447343474,14906.814473312326,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +5355,1,36.0,248.0,2,111,430.0,0.0,0.0,0,63,0.0,0.0,733.2362336499863,456.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,105360,2,2,0,1,1,,206.0,53.0,12,1.0,0.0,2.0,1.0,1.0,1,1,332.64632761656,430.0,6060.0,0,4,2,3,44.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.07524752475247524,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5356,2,86.0,0.0,9,111,0.0,0.0,1137.0,71,71,0.0,0.0,716.6718962015636,1137.0,0.0,1360.684451781042,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,105361,2,1,3,0,1,,198.0,392.0,41,0.0,8.0,2.0,2.0,1.5,2,2,307.798597076313,0.0,22003.27262054231,5,5,2,3,54.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051674131371643964,14668.848413694874,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5357,2,43.0,0.0,5,112,1800.0,0.0,0.0,42,31,0.0,0.0,3069.36097806971,1888.0,121.93185183489385,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,3,105362,2,1,2,0,1,,335.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1443.69448989434,1800.0,71995.16538823368,4,1,1,2,90.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026223983094128146,27690.448226243727,7,4,7,7_1,7_2,7_0_0 +5358,1,81.0,26.0,2,111,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105363,2,3,3,0,1,,200.0,180.0,11,0.0,4.0,1.0,1.0,1.0,1,1,443.885336949695,1200.0,13192.958147128626,0,5,2,3,28.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0909576144044066,13192.958147128626,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +5359,2,65.0,0.0,1,112,3431.0,0.0,0.0,74,74,0.0,0.0,5850.5430643095415,3431.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,105364,2,2,2,0,1,,206.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,202.413926991174,3431.0,86310.6356090411,5,5,0,1,160.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03975176379816395,57540.42373936073,10,5,10,10_1,10_0,10_1_0 +5360,0,57.0,0.0,9,111,425.0,,,56,62,0.0,0.0,,677.0,349.1684847999233,,70,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,105365,1,2,0,0,2,,153.0,,43,2.0,1.0,1.0,2.0,1.5,2,2,198.82238581805834,425.0,26341.0,1,1,5,0,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025701378079799553,17560.666666666668,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5361,2,63.0,0.0,2,111,307.0,834.0,0.0,0,53,0.0,0.0,523.4965668152228,1141.0,0.0,1583.352375981784,12,0,0,0,0,0,0,0,0,4,15.0,2,,2,105366,2,1,0,0,1,,0.0,450.0,12,1.0,3.0,3.0,1.0,1.0,1,1,2322.23128411592,307.0,32151.7589734058,0,1,2,3,55.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.035487949537808296,32151.7589734058,8,4,8,8_0,8_2,8_0_1 +5362,2,71.0,0.0,2,111,1200.0,,,0,71,0.0,0.0,,1364.0,227.23663296502943,,71,0,0,0,0,0,0,0,0,0,,1,,2,105367,2,3,0,0,2,,800.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,93.0475576248084,1200.0,13821.64843584949,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09868576865709922,13821.64843584949,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +5363,2,79.0,0.0,2,400,280.0,0.0,0.0,0,77,1442.8061402180708,0.0,477.4561521441771,1679.0,42.95326598729215,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105368,2,1,1,0,1,,156.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1683.48072157407,280.0,16112.002636917576,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1042080266392765,16112.002636917576,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +5364,2,47.0,0.0,2,111,0.0,0.0,460.0,52,47,0.0,0.0,289.94641359078213,460.0,0.0,550.4967878797532,60,2,2,2,2,1,2,2,2,1,10.0,2,,2,105369,2,1,0,1,1,612.0,0.0,275.0,43,2.0,0.0,3.0,4.0,2.1,2,2,741.681759431803,0.0,46021.10328049887,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.009995414434032525,21914.811085951842,6,3,6,6_0,6_4,6_0_1 +5365,1,65.0,67.0,1,111,800.0,0.0,0.0,0,78,0.0,0.0,1364.160434697649,800.0,0.0,0.0,70,2,2,2,2,2,2,2,1,0,,1,,1,105370,1,1,1,0,1,,400.0,370.0,11,0.0,4.0,3.0,1.0,1.0,1,1,267.769485541676,800.0,2216.3182453019217,0,5,2,3,69.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.3609589921013436,2216.3182453019217,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +5366,1,32.0,342.0,5,112,600.0,0.0,0.0,0,68,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,2,,3,105371,2,1,0,1,1,600.0,0.0,283.0,32,1.0,1.0,3.0,5.0,2.2,1,1,174.795412860792,600.0,13548.08046604486,0,1,2,3,74.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044286716594558295,6158.2183936567535,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5367,2,70.0,0.0,2,111,1000.0,0.0,0.0,78,75,2425.7705573841836,0.0,1705.2005433720612,3400.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105372,2,1,4,0,2,,600.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,1291.97376030636,1000.0,79397.99737889826,5,5,0,1,100.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04282223874960886,39698.99868944913,9,5,9,9_1,9_2,9_0_1 +5368,2,39.0,0.0,1,112,1050.0,0.0,0.0,0,47,0.0,0.0,1790.4605705406643,1110.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,105373,2,1,1,0,1,,130.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,835.51723071911,1050.0,28286.406443959593,0,1,1,2,83.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03924146399434328,28286.406443959593,8,4,8,8_1,8_0,8_1_0 +5369,2,42.0,0.0,7,111,500.0,,,0,21,0.0,0.0,,660.0,221.69427606344334,,41,0,0,0,0,0,0,0,0,0,,2,,5,105374,2,2,0,0,2,,260.0,509.0,32,1.0,2.0,2.0,2.0,1.5,2,2,163.37496342034376,500.0,20411.287997138614,0,1,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0323350491204927,13607.525331425742,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +5370,2,78.0,0.0,1,111,320.0,1600.0,0.0,0,77,0.0,0.0,545.6641738790596,1920.0,0.0,3037.6064767036623,70,0,0,0,0,0,0,0,0,0,,1,,1,105375,1,2,1,0,1,,600.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,642.500480398067,320.0,24344.35602856484,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07886838319925725,24344.35602856484,7,4,7,7_1,7_4,7_1_0 +5371,2,76.0,0.0,2,111,357.0,360.0,0.0,78,78,0.0,132.4327277010224,608.7565939838258,817.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,0,,1,,2,105376,2,1,1,0,1,,288.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,368.192834622339,357.0,26924.68155482922,5,5,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030343905770483015,17949.78770321948,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +5372,2,36.0,0.0,7,112,1300.0,0.0,0.0,37,38,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,105377,2,1,1,0,1,,780.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1004.75560338688,1300.0,80629.96223438611,1,1,1,2,172.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016123038681588164,38395.220111612434,9,5,9,9_1,9_0,9_0_0 +5373,2,52.0,0.0,1,400,1750.0,0.0,0.0,67,67,0.0,0.0,2984.100950901107,1988.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,105378,2,1,1,0,1,,345.0,550.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1451.16564958138,1750.0,29878.12782631413,1,1,2,3,180.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06653696682591798,19918.751884209418,5,3,5,5_1,5_0,5_1_0 +5374,1,34.0,180.0,2,111,500.0,800.0,0.0,0,90,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,50,2,2,1,2,1,2,2,2,0,,2,,2,105379,2,2,0,0,1,,0.0,500.0,22,2.0,1.0,3.0,3.0,2.0,3,3,326.750670204551,500.0,9798.327531795823,0,1,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.13267570366284112,4899.163765897912,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5375,1,25.0,333.0,2,111,288.0,120.0,0.0,84,46,0.0,0.0,491.09775649115363,408.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,105380,1,1,0,1,1,552.0,216.0,308.0,42,1.0,0.0,4.0,3.0,1.8,2,2,1472.94825140771,288.0,17184.25276113693,3,4,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023742667526557393,9546.807089520516,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5376,2,66.0,0.0,6,111,745.0,0.0,0.0,77,75,0.0,0.0,1270.3744048121855,2298.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,105381,2,1,2,0,1,,323.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,915.196742041465,745.0,38191.44643716988,5,5,0,1,94.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06017054116503606,25460.964291446584,7,4,7,7_1,7_2,7_0_0 +5377,1,66.0,236.0,7,111,240.0,0.0,0.0,0,74,253.12388424878438,0.0,409.2481304092947,480.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,105382,2,1,0,1,1,240.0,0.0,223.0,11,0.0,0.0,1.0,1.0,1.0,1,1,659.213919625951,240.0,13703.241874628438,0,5,2,3,27.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03502820751407157,13703.241874628438,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +5378,2,43.0,0.0,7,120,540.0,,,0,55,0.0,0.0,,672.0,182.89777775234077,,42,0,0,0,0,0,0,0,0,0,,1,,5,105383,2,1,0,0,2,,160.0,,32,1.0,1.0,4.0,2.0,1.3,2,1,104.96534189495993,540.0,17348.73814065658,0,4,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03873480564129187,13345.183185120446,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5379,2,64.0,0.0,2,120,384.0,,,90,78,0.0,0.0,,510.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,105384,1,2,0,0,2,,1500.0,,41,1.0,4.0,6.0,5.0,2.8,4,4,118.23912765143406,384.0,39626.965568473366,6,5,0,1,114.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01287002405265541,14152.487703026203,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +5380,2,39.0,0.0,7,111,80.0,0.0,0.0,46,46,0.0,0.0,136.4160434697649,80.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,105385,2,1,1,0,1,,654.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1725.99527064407,80.0,83387.99036079268,1,1,0,1,110.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0009593707637498643,34744.99598366362,9,5,9,9_1,9_2,9_0_0 +5381,2,41.0,0.0,7,111,211.0,737.0,0.0,42,47,0.0,0.0,359.7973146515049,948.0,0.0,1399.1974833316244,20,0,0,0,0,0,0,0,0,2,45.0,2,,5,105386,2,1,0,0,1,,0.0,489.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1196.19271954501,211.0,48307.12291077693,1,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019624435132494896,32204.74860718462,8,4,8,8_0,8_4,8_0_0 +5382,2,73.0,0.0,1,120,383.0,0.0,0.0,0,77,3218.892061363708,0.0,653.0918081114994,3480.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105387,2,1,1,0,1,,321.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1814.76237683352,383.0,19729.27658592404,0,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1763876128374025,19729.27658592404,5,3,5,5_1,5_0,5_1_0 +5383,2,50.0,0.0,5,111,160.0,0.0,0.0,43,38,0.0,0.0,272.8320869395298,160.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,3,105388,2,1,2,0,1,,360.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,1562.95335474791,160.0,58249.06804779068,1,1,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002746825062827226,23299.62721911627,6,3,6,6_1,6_3,6_0_0 +5384,2,65.0,0.0,5,111,440.0,0.0,0.0,77,75,0.0,794.5963662061343,750.2882390837069,1040.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,105389,2,2,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,970.597396880893,440.0,34368.83157215193,5,5,0,1,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030259975461100104,22912.55438143462,6,3,6,6_1,6_3,6_0_0 +5385,2,32.0,0.0,9,111,600.0,,,0,46,0.0,0.0,,711.0,153.80040401901383,,31,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,105390,2,1,0,0,2,,500.0,760.0,12,1.0,0.0,2.0,1.0,1.0,1,1,51.26627671717156,600.0,25417.476513589685,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02797287919671559,25417.476513589685,7,4,7,7_1,7_2,7_0_0 +5386,2,63.0,0.0,2,111,1300.0,0.0,0.0,74,74,0.0,317.83854648245375,2216.7607063836795,1540.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,105391,2,1,2,0,1,,374.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,513.625260708941,1300.0,57473.03236479434,5,5,0,1,175.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026795175696059877,38315.354909862894,9,5,9,9_1,9_4,9_0_1 +5387,1,69.0,550.0,2,111,120.0,200.0,0.0,56,86,0.0,0.0,204.62406520464734,320.0,0.0,379.7008095879578,71,2,1,2,1,2,2,2,2,0,,2,,2,105392,1,2,0,1,2,,1200.0,715.0,42,1.0,3.0,4.0,5.0,2.4,3,2,199.05654153658,120.0,26111.750179487884,4,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01225501920784216,10879.895908119952,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +5388,2,73.0,0.0,1,400,650.0,0.0,0.0,78,78,1265.6194212439218,0.0,1108.3803531918397,2030.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105393,2,2,2,0,1,,132.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1369.12593855192,650.0,20308.0,5,5,0,1,140.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09996060665747489,13538.666666666666,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5389,2,78.0,0.0,1,111,530.0,710.0,0.0,0,72,0.0,0.0,903.7562879871924,1240.0,0.0,1347.9378740372501,70,0,0,0,0,0,0,0,0,0,,1,,1,105394,2,1,1,0,1,,170.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,433.029777993778,530.0,17633.243080452896,0,5,0,1,40.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07032172098702513,17633.243080452896,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +5390,1,43.0,190.0,2,111,240.0,300.0,0.0,0,67,0.0,0.0,409.2481304092947,540.0,0.0,569.5512143819367,71,2,2,2,1,2,2,2,2,0,,2,,2,105395,2,3,0,1,1,,120.0,255.0,12,1.0,0.0,2.0,1.0,1.0,1,1,382.70056962537,240.0,6060.0,0,4,2,3,35.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.0891089108910891,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5391,1,30.0,24.0,2,111,1000.0,0.0,0.0,55,54,0.0,0.0,1705.2005433720612,1030.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,105396,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1927.49976375283,1000.0,47497.03169078859,1,1,1,2,58.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021685565672933504,26387.239828215883,7,4,7,7_0,7_3,7_0_1 +5392,2,74.0,0.0,5,111,210.0,72.0,0.0,77,38,0.0,0.0,358.0921141081328,282.0,0.0,136.6922914516648,50,0,0,0,0,0,0,0,0,0,,2,,3,105397,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,786.745264041394,210.0,59130.34784539185,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004769124658920417,39420.2318969279,9,5,9,9_0,9_4,9_0_0 +5393,2,86.0,0.0,5,111,180.0,100.0,0.0,77,72,0.0,0.0,306.936097806971,280.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,0,,2,,3,105398,2,1,0,1,2,,0.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,761.774293600208,180.0,36098.43610909766,5,5,0,1,118.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0077565687098958115,24065.624072731775,6,3,6,6_0,6_4,6_0_0 +5394,1,71.0,516.0,8,111,524.0,,,86,86,0.0,0.0,,800.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,105399,2,2,0,0,1,,710.0,850.0,41,2.0,1.0,6.0,7.0,3.6,5,5,126.61493210265549,524.0,14475.194154488518,5,5,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055266961635325164,4020.887265135699,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +5395,1,76.0,293.0,1,111,0.0,0.0,700.0,86,78,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,71,0,0,0,0,0,0,0,0,0,,2,,1,105400,1,2,0,0,1,,0.0,290.0,41,0.0,5.0,2.0,2.0,1.5,2,2,2415.93989686767,0.0,14413.822164054738,5,5,2,3,50.0,6,5,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04856449538732783,9609.214776036491,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +5396,2,59.0,0.0,2,111,606.0,,,54,62,0.0,0.0,,858.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,2,105401,1,2,0,0,2,,800.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,104.99682968115252,606.0,30110.88877824295,4,4,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028494675342162604,12044.355511297179,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +5397,1,44.0,610.0,9,111,932.0,0.0,0.0,81,56,0.0,0.0,1589.246906422761,1112.0,249.40606057137379,0.0,71,2,2,2,1,1,2,2,2,1,15.0,2,2005.0,6,105402,2,3,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,8.0,3.8999999999999995,5,5,1142.11384002431,932.0,10491.2836649764,4,1,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.10599274936319258,2690.0727346093336,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +5398,2,67.0,0.0,5,112,1600.0,0.0,0.0,0,75,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,105403,2,1,2,0,1,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,533.705941478201,1600.0,30121.99292201414,0,5,1,2,91.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0531173353682939,30121.99292201414,8,4,8,8_1,8_1,8_0_0 +5399,1,81.0,113.0,1,111,280.0,660.0,0.0,0,78,0.0,0.0,477.4561521441771,940.0,0.0,1253.0126716402608,70,0,0,0,0,0,0,0,0,0,,1,,1,105404,2,1,1,0,1,,150.0,285.0,11,0.0,2.0,2.0,1.0,1.0,1,1,318.746968880179,280.0,11095.405678803121,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.084719750427494,11095.405678803121,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +5400,2,53.0,0.0,1,112,600.0,0.0,0.0,0,68,0.0,397.2981831030672,1023.1203260232367,980.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,105405,2,1,3,0,1,,250.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,923.128203159052,600.0,20408.326868696575,0,1,0,1,250.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04801961504758033,20408.326868696575,5,3,5,5_1,5_0,5_1_0 +5401,0,53.0,0.0,6,400,0.0,,,42,63,0.0,0.0,,270.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,105406,2,1,0,0,2,,339.0,,43,3.0,2.0,3.0,3.0,2.0,3,3,119.2569322365979,0.0,55876.85792470294,1,1,0,1,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004832054092301315,27938.42896235147,7,4,7,7_1,7_1,7_0_0 +5402,2,53.0,0.0,1,111,1200.0,1500.0,0.0,77,56,0.0,0.0,2046.2406520464733,2700.0,0.0,2847.7560719096837,71,2,2,2,1,1,2,2,2,3,60.0,2,,1,105407,1,3,0,0,1,,0.0,292.0,42,3.0,3.0,3.0,4.0,2.5,4,4,884.669946323871,1200.0,53515.293772643934,5,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.0504528670153763,21406.117509057574,6,3,6,6_0,6_4,6_1_0 +5403,2,43.0,0.0,9,111,670.0,,,74,42,0.0,0.0,,754.0,116.38949493330776,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,105408,2,1,0,0,1,,95.0,1176.0,42,1.0,4.0,5.0,4.0,2.1,2,2,157.30280609789128,670.0,72845.62867702493,5,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010350655402302912,34688.394608107104,9,5,9,9_1,9_2,9_0_0 +5404,2,25.0,0.0,9,112,1578.0,0.0,0.0,46,21,0.0,0.0,2690.8064574411123,1628.0,69.27946126982604,0.0,31,1,2,2,1,2,2,2,1,2,20.0,1,2011.0,6,105409,2,1,1,0,1,,226.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1018.98894702934,1578.0,57899.854617261386,1,1,1,2,145.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.02811751446979718,32166.58589847855,8,4,8,8_1,8_0,8_0_0 +5405,2,58.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,66.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,1,10.0,1,,3,105410,2,3,0,0,2,,300.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,99.6259813014227,0.0,26258.0,0,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0025135196892375655,26258.0,7,4,7,7_1,7_2,7_0_0 +5406,2,78.0,0.0,1,120,275.0,0.0,0.0,0,78,512.5758656037883,0.0,468.93014942731685,793.0,44.33885521268867,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105411,2,1,4,0,1,,150.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1964.64597336533,275.0,15413.849937900985,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051447237594424676,15413.849937900985,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5408,0,67.0,0.0,2,111,400.0,,,0,75,0.0,0.0,,400.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,2,105413,1,1,0,0,2,,100.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,75.12149065477017,400.0,35800.20786413075,0,5,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011173119483498067,35800.20786413075,9,5,9,9_1,9_2,9_0_1 +5409,1,58.0,168.0,9,111,180.0,,,0,67,0.0,0.0,,243.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,105414,2,1,0,0,2,,210.0,172.0,12,1.0,3.0,1.0,1.0,1.0,1,1,95.5070182786505,180.0,6265.351063829787,0,4,2,3,36.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03878473808161401,6265.351063829787,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5410,2,48.0,0.0,5,400,600.0,,,11,11,0.0,0.0,,750.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,105415,2,2,0,0,2,,200.0,,43,2.0,5.0,5.0,3.0,2.0,3,3,58.651010798553415,600.0,9932.0,1,1,0,1,90.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07551349174385824,4966.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +5411,2,55.0,0.0,5,111,334.0,0.0,0.0,33,34,794.1761868305609,0.0,569.5369814862685,1087.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,,3,105416,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,875.673892016561,334.0,180200.22775373177,1,1,0,1,71.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006032178835453716,120133.48516915452,10,5,10,10_0,10_4,10_0_0 +5412,1,91.0,178.0,2,111,182.0,111.0,0.0,0,75,0.0,0.0,310.34649889371514,293.0,0.0,210.73394932131657,70,0,0,0,0,0,0,0,0,0,,2,,2,105417,2,1,0,1,2,724.0,124.0,355.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2414.01018789384,182.0,11271.849273438575,0,5,2,3,35.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025993960076314774,11271.849273438575,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +5413,2,27.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,2718.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,105418,1,3,0,0,1,,140.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,429.218280695555,0.0,26475.510902163987,0,1,2,3,47.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10266090841623166,26475.510902163987,7,4,7,7_0,7_3,7_1_0 +5414,2,66.0,0.0,2,111,290.0,590.0,0.0,78,78,0.0,0.0,494.50815757789775,880.0,0.0,1120.1173882844755,71,0,0,0,0,0,0,0,0,0,,2,,2,105419,2,2,0,0,1,,300.0,317.0,41,0.0,2.0,4.0,2.0,1.5,2,2,296.205469987582,290.0,22350.94019478832,5,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039371945534765196,14900.626796525547,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +5415,2,60.0,0.0,2,112,780.0,0.0,0.0,52,46,1098.9795307801387,595.9472746546007,1330.0564238302077,2307.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105420,2,2,1,0,1,,500.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1371.81587448343,780.0,65125.93584112904,1,1,0,1,104.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03542367522560894,43417.29056075269,10,5,10,10_1,10_0,10_0_1 +5416,2,29.0,0.0,1,111,0.0,0.0,0.0,42,33,0.0,0.0,0.0,2279.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,1,,1,105421,1,3,3,0,1,,228.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,430.774079677583,0.0,38670.964137644674,1,1,1,2,65.0,7,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05893310525923719,25780.64275842978,7,4,7,7_1,7_2,7_1_0 +5417,2,53.0,0.0,6,400,300.0,,,78,78,0.0,0.0,,480.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,4,105422,2,3,0,0,2,,0.0,,41,0.0,5.0,3.0,3.0,1.8,2,2,51.09776526581672,300.0,9344.217222222222,5,6,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05136866883386166,5191.231790123456,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +5418,2,83.0,0.0,7,111,200.0,873.0,0.0,77,75,0.0,0.0,341.04010867441224,1073.0,0.0,1657.3940338514358,70,0,0,0,0,0,0,0,0,0,,8,,5,105423,2,1,0,0,1,,672.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1551.48664148247,200.0,37529.70546939882,5,5,0,1,104.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028590685340573983,25019.80364626588,7,4,7,7_0,7_2,7_0_0 +5419,0,78.0,0.0,1,120,600.0,2500.0,0.0,0,78,0.0,0.0,1023.1203260232367,3100.0,0.0,4746.260119849472,70,0,0,0,0,0,0,0,0,0,,1,,1,105424,2,1,3,0,1,,150.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1491.79545041607,600.0,27663.27223743275,0,5,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11206194167460831,27663.27223743275,7,4,7,7_1,7_0,7_1_0 +5420,2,48.0,0.0,7,112,1270.0,0.0,0.0,85,65,1476.555991451242,284.73036455719813,2165.6046900825177,2885.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,105425,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,3.0,2.0,3,3,1146.69884528349,1270.0,23174.165249718237,6,1,0,1,150.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12449207852416938,11587.082624859118,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +5421,2,48.0,0.0,8,111,600.0,,,85,68,0.0,0.0,,1224.0,864.6076766474291,,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,105426,1,1,0,0,2,,0.0,,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,8.479138180820623,600.0,26048.490999217902,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046989286252195964,8682.830333072636,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5422,2,57.0,0.0,6,111,400.0,,,54,67,0.0,0.0,,493.0,128.85979796187644,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,105427,2,1,0,0,2,,500.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,93.54116294366494,400.0,56291.38520825837,1,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008758000858853855,37527.59013883891,9,5,9,9_1,9_2,9_0_0 +5423,1,78.0,88.0,2,111,204.0,390.0,0.0,0,86,0.0,683.3528749372755,347.86091084790047,1110.0,0.0,740.4165786965177,71,0,0,0,0,0,0,0,0,0,,2,,2,105428,2,1,0,1,1,,0.0,245.0,11,0.0,8.0,3.0,1.0,1.0,1,1,343.694102670759,204.0,11620.963302752294,0,5,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0955170385691786,11620.963302752294,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5425,2,90.0,0.0,1,112,280.0,1620.0,0.0,77,77,0.0,158.91927324122688,477.4561521441771,2020.0,0.0,3075.576557662458,71,0,0,0,0,0,0,0,0,0,,1,,1,105430,2,1,2,0,1,,300.0,140.0,41,0.0,0.0,3.0,2.0,1.5,2,2,698.090926091439,280.0,33018.35061896888,5,5,2,3,60.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06117810133252144,22012.23374597925,6,3,6,6_1,6_2,6_1_0 +5426,2,58.0,0.0,2,111,200.0,350.0,0.0,0,53,0.0,0.0,341.04010867441224,550.0,0.0,664.4764167789261,41,0,0,0,0,0,0,0,0,0,,2,,2,105431,1,2,0,1,2,,0.0,530.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2019.04300647293,200.0,25566.848249261457,0,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02151223313244673,25566.848249261457,7,4,7,7_0,7_3,7_0_1 +5427,0,62.0,0.0,1,111,417.0,957.0,0.0,0,77,0.0,0.0,711.0686265861495,1374.0,0.0,1816.8683738783782,70,1,2,2,1,2,2,2,2,0,,1,,1,105432,2,2,2,0,1,,390.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,460.837966326272,417.0,14977.928304311095,0,5,5,0,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.09173498310874686,14977.928304311095,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +5428,1,40.0,45.0,2,111,1391.0,426.0,0.0,46,56,0.0,0.0,2371.933955830537,1817.0,0.0,808.7627244223501,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,105433,2,1,2,0,1,,1000.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,241.448912307509,1391.0,31318.939862249077,4,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05801601229134062,14913.780886785275,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +5429,2,83.0,0.0,1,112,500.0,0.0,0.0,0,74,4746.072829664707,0.0,852.6002716860306,5070.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105434,2,3,1,0,2,,700.0,,21,1.0,0.0,8.0,2.0,1.5,2,2,964.183965409509,500.0,265235.65545244986,0,5,0,1,160.0,9,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0191150770862665,176823.77030163325,10,5,10,10_1,10_1,10_1_0 +5430,2,90.0,0.0,2,111,600.0,0.0,0.0,77,78,0.0,0.0,1023.1203260232367,1069.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105435,2,1,0,1,1,,250.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1814.60027854651,600.0,32894.77811216077,5,5,0,1,91.0,6,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.032497559228247375,21929.852074773848,6,3,6,6_0,6_2,6_0_1 +5431,0,51.0,0.0,5,212,324.0,0.0,0.0,0,64,2657.800784612236,0.0,552.4849760525478,3036.0,266.03313127613205,0.0,71,2,2,2,2,2,2,2,1,0,,1,,3,105436,2,1,2,0,1,,254.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,708.072596983889,324.0,41530.62362744239,0,1,0,1,70.0,2,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.07310268266701123,27687.08241829493,7,4,7,7_1,7_0,7_0_0 +5432,2,64.0,0.0,2,111,500.0,1000.0,0.0,77,75,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,105437,2,1,1,0,1,,220.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,513.605210938444,500.0,38352.03480956776,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03911135373776287,25568.023206378508,7,4,7,7_1,7_3,7_0_1 +5433,2,93.0,0.0,1,111,118.0,1300.0,0.0,72,86,0.0,0.0,201.21366411790322,1418.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,2,,1,105438,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,900.196029095386,118.0,204677.16512069103,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006927983388688497,136451.443413794,10,5,10,10_0,10_4,10_1_0 +5434,2,84.0,0.0,2,111,270.0,1200.0,0.0,77,75,0.0,0.0,460.40414671045653,1470.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,105439,2,1,3,0,1,,300.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,534.250300715098,270.0,27857.048987859605,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05276940858454323,18571.365991906405,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +5435,2,79.0,0.0,2,221,0.0,0.0,0.0,0,77,0.0,291.3520009422493,0.0,2540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105440,1,2,4,0,2,,168.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2119.87745886348,0.0,16399.008383779375,0,5,0,1,100.0,1,2,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15488741395561273,16399.008383779375,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +5436,2,78.0,0.0,7,111,0.0,0.0,1200.0,0,77,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,60,0,0,0,0,0,0,0,0,0,,1,,5,105441,2,1,2,0,1,,200.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,2251.35732206261,0.0,34914.75247958535,0,5,0,1,135.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03436942595258665,34914.75247958535,9,5,9,9_1,9_3,9_0_0 +5437,2,54.0,0.0,1,111,2600.0,0.0,0.0,33,38,0.0,0.0,4433.521412767359,2600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,60.0,1,,1,105442,1,2,3,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,395.019856091739,2600.0,176840.6151582491,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014702504838457737,70736.24606329964,10,5,10,10_1,10_4,10_1_0 +5438,0,37.0,0.0,9,221,1100.0,0.0,0.0,22,62,0.0,185.40581878143135,1875.7205977092674,1240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,105443,1,1,0,0,1,,240.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,898.395203318451,1100.0,23099.913588564392,1,1,5,0,45.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05367985448282637,12833.285326980218,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +5439,0,77.0,0.0,5,111,1200.0,0.0,0.0,86,74,0.0,0.0,2046.2406520464733,1929.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,105444,1,2,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,790.9777969595,1200.0,66042.9719032738,6,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029208255540426064,44028.64793551587,10,5,10,10_0,10_4,10_0_0 +5440,1,43.0,129.0,1,120,567.0,0.0,0.0,42,52,0.0,476.7578197236806,966.8487080919587,1017.0,124.70303028568689,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,105445,2,1,1,0,1,,400.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1340.51794700539,567.0,30327.0883051609,4,1,1,2,60.0,0,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.03353437658658884,14441.47062150519,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +5441,1,25.0,356.0,6,111,486.0,,,0,42,0.0,0.0,,510.0,33.25414140951651,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,105446,2,2,0,0,2,,134.0,650.0,32,1.0,0.0,3.0,2.0,1.3,1,1,64.1475403291763,486.0,21210.6640058468,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02404450892529421,16315.895389112922,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +5442,2,72.0,0.0,2,111,500.0,0.0,0.0,0,77,2636.7071275915036,0.0,852.6002716860306,3300.0,415.67676761895626,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,105447,2,2,1,0,1,,400.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1198.88571700561,500.0,35433.345687013556,0,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09313261099161352,35433.345687013556,9,5,9,9_1,9_3,9_0_1 +5443,1,61.0,284.0,1,111,400.0,430.0,0.0,77,78,0.0,0.0,682.0802173488245,920.0,124.70303028568689,816.3567406141093,71,0,0,0,0,0,0,0,0,0,,1,,1,105448,2,3,2,0,1,,580.0,423.0,41,0.0,4.0,4.0,2.0,1.5,2,2,183.017766776858,400.0,17816.78773595474,5,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.051636693080392725,11877.858490636492,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +5444,2,43.0,0.0,2,111,960.0,,,85,47,0.0,0.0,,1512.0,764.8452524188796,,50,0,0,0,0,0,0,0,0,0,,1,,2,105449,2,1,0,0,2,,520.0,,42,1.0,0.0,5.0,6.0,2.8999999999999995,3,3,105.95791702962703,960.0,33720.49843509146,6,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044839194856815257,11627.758081066022,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +5445,2,32.0,0.0,2,111,0.0,0.0,0.0,63,23,0.0,0.0,0.0,299.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,105450,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1688.75804620891,0.0,62456.45527257034,1,1,1,2,75.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.004787335411449695,34698.03070698352,9,5,9,9_0,9_3,9_0_1 +5446,2,36.0,0.0,9,111,300.0,1200.0,0.0,54,38,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,3,30.0,1,2006.0,6,105451,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1223.20002385413,300.0,50383.96311673346,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029771377779963124,23992.363388920694,6,3,6,6_1,6_4,6_0_0 +5447,0,40.0,0.0,2,111,1240.0,,,0,56,0.0,0.0,,1332.0,127.47420873647992,,30,0,0,0,0,0,0,0,0,0,,1,,2,105452,2,1,0,0,2,,1000.0,,32,1.0,2.0,4.0,2.0,1.3,1,1,137.4926129041652,1240.0,8832.517763238415,0,4,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15080637658538107,6794.244433260319,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +5449,2,79.0,0.0,5,111,0.0,0.0,0.0,86,86,0.0,0.0,0.0,2559.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,105454,2,1,0,1,2,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2117.5069122177,0.0,40881.692206812804,5,5,0,1,122.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06259525625931772,27254.461471208535,7,4,7,7_0,7_3,7_0_0 +5450,2,59.0,0.0,9,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,1111.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2012.0,6,105455,2,1,1,0,1,,390.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1977.05938636714,0.0,41416.0,5,5,0,1,140.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026825381495074366,27610.666666666668,7,4,7,7_1,7_3,7_0_0 +5451,2,59.0,0.0,6,211,540.0,,,81,81,0.0,0.0,,840.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,7,,4,105456,2,3,0,0,2,,600.0,61.0,43,3.0,0.0,3.0,6.0,3.3,5,3,125.55254642385934,540.0,19399.0,4,4,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04330120109283984,5878.484848484849,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5452,2,58.0,0.0,1,111,1200.0,1200.0,0.0,37,34,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,105457,1,1,1,0,2,,600.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,415.06060164833,1200.0,205094.66486628636,1,1,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011701913365541251,102547.33243314318,10,5,10,10_1,10_3,10_1_0 +5454,2,47.0,0.0,9,112,600.0,,,85,63,0.0,0.0,,680.0,110.84713803172167,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105459,2,1,0,0,2,,240.0,,42,2.0,0.0,6.0,4.0,2.5,4,3,126.85497918598885,600.0,39381.812292734525,6,4,0,1,80.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01726685392092664,15752.72491709381,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5455,2,43.0,0.0,8,112,590.0,0.0,0.0,22,37,0.0,0.0,1006.0683205895161,1670.0,1496.4363634282427,0.0,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105460,2,1,2,0,1,,183.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,684.512684158638,590.0,90811.5957838086,1,4,0,1,220.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018389721990743336,60541.0638558724,10,5,10,10_1,10_0,10_0_0 +5456,2,40.0,0.0,5,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,272.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,,3,105461,2,3,0,0,2,,235.0,440.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1637.93235632128,0.0,22804.585858554437,0,1,2,3,42.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011927425548838353,22804.585858554437,6,3,6,6_0,6_2,6_0_0 +5457,2,51.0,0.0,2,112,540.0,0.0,0.0,0,52,3164.0485531098047,0.0,920.8082934209131,3570.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,,2,105462,2,2,2,0,2,,220.0,,32,1.0,1.0,6.0,2.0,1.5,2,2,1424.96531695275,540.0,30101.14488626942,0,1,1,2,90.0,10,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11860014007734465,20067.429924179614,5,3,5,5_1,5_1,5_0_1 +5458,2,65.0,0.0,1,111,1700.0,0.0,0.0,71,71,0.0,0.0,2898.840923732504,2500.0,1108.4713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105463,2,1,1,0,1,,0.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,808.395019491392,1700.0,46862.443192160164,5,6,0,1,115.0,4,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05334762401842157,31241.62879477344,8,4,8,8_1,8_1,8_1_0 +5459,2,47.0,0.0,2,111,0.0,0.0,936.0,67,52,0.0,0.0,589.9779198282001,936.0,0.0,1120.1412901205413,50,0,0,0,0,0,0,0,0,3,60.0,1,,2,105464,1,3,4,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,260.715023520955,0.0,45107.54626183483,1,1,1,2,116.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020750408248030615,19611.976635580362,5,3,5,5_1,5_4,5_0_1 +5460,2,73.0,0.0,2,111,300.0,1090.0,0.0,78,78,0.0,0.0,511.56016301161833,1390.0,0.0,2069.36941225437,50,0,0,0,0,0,0,0,0,0,,1,,2,105465,2,1,2,0,2,,360.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,269.292695754137,300.0,19274.91714299188,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07211444748053751,12849.944761994586,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +5461,2,73.0,0.0,5,111,720.0,,,74,72,0.0,0.0,,786.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,3,105466,1,2,0,0,2,,720.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,97.83841816948629,720.0,51897.051272975594,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01514536916299317,25948.525636487797,7,4,7,7_1,7_2,7_0_0 +5462,1,27.0,120.0,6,112,1600.0,0.0,0.0,43,47,0.0,0.0,2728.320869395298,1690.0,124.70303028568689,0.0,50,2,2,2,1,1,2,2,2,2,3.0,1,,4,105467,2,3,4,0,1,,0.0,306.0,43,2.0,0.0,4.0,2.0,1.5,2,2,3021.01008876874,1600.0,22814.80438271095,1,1,2,3,73.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.07407470919543283,15209.869588473966,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +5463,2,76.0,0.0,2,300,1191.0,0.0,0.0,0,77,0.0,0.0,2030.8938471561248,1281.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105468,2,2,5,0,1,,183.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,786.026488746591,1191.0,20903.623235905696,0,5,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06128124227763799,20903.623235905696,5,3,5,5_1,5_0,5_0_1 +5464,2,43.0,0.0,2,111,588.0,1700.0,0.0,55,46,0.0,0.0,1002.657919502772,2288.0,0.0,3227.4568814976415,31,0,0,0,0,0,0,0,0,3,37.0,1,,2,105469,2,1,1,0,1,,540.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,819.724840048335,588.0,58422.524554124175,1,1,1,2,108.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03916297724998748,27820.249787678178,7,4,7,7_1,7_4,7_0_1 +5466,1,43.0,150.0,6,111,500.0,,,0,56,0.0,0.0,,575.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,0,,3,,4,105471,1,3,0,0,2,,500.0,300.0,12,1.0,4.0,3.0,1.0,1.0,1,1,47.63879255069119,500.0,3023.1755325266026,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.19019735831198886,3023.1755325266026,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5467,0,83.0,0.0,1,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,777.0,131.6309764126695,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105472,1,3,2,0,2,,225.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,1117.51729372352,0.0,19361.990502498655,0,6,0,1,80.0,7,5,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.040130171528579596,12907.993668332436,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +5468,2,74.0,0.0,1,111,10.0,10.0,0.0,0,74,0.0,0.0,17.052005433720613,20.0,0.0,18.985040479397888,10,0,0,0,0,0,0,0,0,0,,2,,1,105473,2,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1102.23258381658,10.0,92047.86514052661,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0002172782602775917,92047.86514052661,10,5,10,10_0,10_4,10_1_0 +5469,2,57.0,0.0,9,111,2300.0,0.0,0.0,37,37,0.0,0.0,3921.9612497557405,2545.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,1,2010.0,6,105474,2,1,1,0,1,,40.0,,43,2.0,3.0,8.0,2.0,1.5,2,2,1485.45675174769,2300.0,128841.64017364121,1,1,1,2,200.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019752930780530868,85894.42678242747,10,5,10,10_1,10_3,10_0_0 +5470,2,33.0,0.0,2,111,450.0,1200.0,0.0,0,42,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,105475,2,3,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1213.05637464516,450.0,42537.54700969917,0,1,1,2,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038789260688299125,26585.96688106198,7,4,7,7_0,7_4,7_0_1 +5471,2,68.0,0.0,1,111,300.0,2000.0,0.0,0,74,0.0,0.0,511.56016301161833,2300.0,0.0,3797.008095879578,60,0,0,0,0,0,0,0,0,0,,1,,1,105476,2,2,2,0,1,,300.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,297.057667267742,300.0,55944.586824340164,0,5,0,1,80.0,6,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04111210986724679,37296.39121622677,9,5,9,9_1,9_2,9_1_0 +5472,2,57.0,0.0,1,112,195.0,0.0,0.0,0,46,0.0,1403.7869136308373,332.5141059575519,1285.0,41.567676761895626,0.0,42,0,0,0,0,0,0,0,0,2,55.0,1,,1,105477,1,3,4,0,2,,225.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,822.929790846227,195.0,38371.64095696171,0,1,0,1,76.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03348827331729905,25581.093971307808,7,4,7,7_1,7_0,7_1_0 +5473,2,50.0,0.0,1,112,800.0,0.0,0.0,0,11,0.0,3310.81819252556,1364.160434697649,3460.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,105478,2,2,2,0,1,,108.0,,32,1.0,2.0,7.0,3.0,2.0,3,3,766.987528774146,800.0,61102.1797732754,0,1,1,2,150.0,8,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05662645772767209,30551.0898866377,8,4,8,8_1,8_1,8_1_0 +5474,2,72.0,0.0,1,111,529.0,1085.0,0.0,75,75,0.0,13.243272770102239,902.0510874438204,1624.0,0.0,2059.8768920146713,44,0,0,0,0,0,0,0,0,0,,1,,1,105479,2,2,1,0,1,,305.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,999.976725884421,529.0,20432.631340773587,5,5,0,1,100.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07948070774219307,13621.754227182391,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +5475,2,44.0,0.0,2,111,900.0,0.0,0.0,52,62,1582.0242765549024,0.0,1534.680489034855,2500.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,,2,105480,2,3,4,0,1,,400.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,1324.04578158878,900.0,51939.66194876672,1,1,1,2,120.0,8,6,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04813277380330276,19236.911832876565,5,3,5,5_1,5_2,5_0_1 +5476,2,67.0,0.0,2,211,460.0,999.0,0.0,0,72,0.0,0.0,784.3922499511482,1459.0,0.0,1896.6055438918493,50,0,0,0,0,0,0,0,0,0,,2,,2,105481,1,1,0,0,2,,0.0,430.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2089.66515313637,460.0,26180.60444703321,0,5,2,3,70.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.055728277891816745,26180.60444703321,7,4,7,7_0,7_1,7_0_1 +5477,2,53.0,0.0,7,111,550.0,0.0,0.0,78,68,0.0,0.0,937.8602988546337,550.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,105482,2,1,2,0,1,,450.0,,42,1.0,5.0,2.0,2.0,1.5,2,2,1188.6961186363,550.0,23117.151090582407,7,1,0,1,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023791859033359092,15411.434060388272,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +5478,2,56.0,0.0,8,120,800.0,,,0,52,0.0,0.0,,1076.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,5.0,2,1999.0,6,105483,2,2,0,0,2,,200.0,465.0,12,1.0,1.0,4.0,1.0,1.0,1,1,84.15872660748799,800.0,26553.869063645274,0,1,2,3,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04052140188764975,26553.869063645274,7,4,7,7_0,7_0,7_0_0 +5479,2,74.0,0.0,8,112,414.0,1262.0,0.0,86,78,0.0,0.0,705.9530249560333,1676.0,0.0,2395.912108500014,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,105484,2,1,2,0,1,,308.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,909.270569304801,414.0,44574.701096315715,5,5,0,1,100.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037599803448564874,29716.46739754381,8,4,8,8_1,8_1,8_0_0 +5480,1,44.0,237.0,2,111,500.0,300.0,0.0,0,81,0.0,0.0,852.6002716860306,800.0,0.0,569.5512143819367,71,2,1,2,2,1,2,2,2,0,,2,,2,105485,2,1,0,1,1,,0.0,450.0,32,1.0,0.0,4.0,5.0,2.2,1,1,383.138602763208,500.0,15059.128670832244,0,4,2,3,85.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05312392353413552,6845.058486741928,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5481,2,49.0,0.0,2,211,2000.0,0.0,0.0,0,31,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,105486,2,2,0,0,1,,510.0,,32,1.0,1.0,5.0,2.0,1.5,2,1,1372.73106178297,2000.0,89853.24322679739,0,1,1,2,157.0,4,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02225851764695712,59902.16215119826,10,5,10,10_0,10_2,10_0_1 +5482,1,47.0,346.0,7,211,300.0,,,0,52,0.0,0.0,,780.0,665.08282819033,,71,0,0,0,0,0,0,0,0,0,,2,,5,105487,2,2,0,0,2,,330.0,385.0,32,2.0,2.0,4.0,3.0,1.8,2,2,92.09064703438149,300.0,15071.301801680695,0,4,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.051753989818783756,8372.945445378164,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5484,2,32.0,0.0,7,120,0.0,,,55,21,0.0,0.0,,481.0,0.0,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,105489,2,2,0,0,2,,463.0,890.0,43,2.0,1.0,3.0,4.0,2.3,3,2,139.12736073637285,0.0,22403.610248854013,1,1,2,3,79.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021469753966310144,9740.700108197398,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5485,2,49.0,0.0,2,111,450.0,150.0,0.0,33,33,0.0,0.0,767.3402445174275,600.0,0.0,284.77560719096834,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,105490,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,321.749024553838,450.0,94762.735233706,1,1,0,1,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0063316028027290095,52645.96401872556,10,5,10,10_0,10_3,10_0_1 +5486,2,45.0,0.0,1,111,900.0,0.0,0.0,0,33,0.0,0.0,1534.680489034855,900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,105491,1,1,0,0,1,,0.0,1538.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1250.73916148531,900.0,105582.69629885853,0,1,2,3,81.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00852412404256558,105582.69629885853,10,5,10,10_0,10_4,10_1_0 +5487,2,66.0,0.0,6,211,800.0,740.0,0.0,78,78,0.0,0.0,1364.160434697649,1540.0,0.0,1404.892995475444,71,0,0,0,0,0,0,0,0,0,,2,,4,105492,1,2,0,0,1,,540.0,340.0,41,0.0,0.0,3.0,2.0,1.5,2,2,347.980347735786,800.0,13890.558610141185,5,5,2,3,78.0,3,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1108666716164806,9260.372406760789,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +5488,2,54.0,0.0,1,111,0.0,0.0,0.0,47,31,0.0,0.0,0.0,2165.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,105493,2,1,1,0,1,,245.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,736.052242198184,0.0,117461.30242946299,1,1,0,1,180.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0184316021976694,78307.53495297533,10,5,10,10_1,10_3,10_1_0 +5489,2,68.0,0.0,1,400,200.0,0.0,0.0,71,11,0.0,0.0,341.04010867441224,570.0,512.6680133967128,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105494,1,2,4,0,2,,120.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1872.99548637704,200.0,37777.61846212884,5,1,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.015088298924174147,18888.80923106442,5,3,5,5_1,5_0,5_1_0 +5490,2,60.0,0.0,7,111,700.0,,,34,34,0.0,0.0,,746.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,105495,2,1,0,0,2,,120.0,1700.0,43,2.0,5.0,4.0,2.0,1.5,2,2,73.07120407667558,700.0,168267.99294487247,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0044334040416373335,112178.66196324832,10,5,10,10_1,10_2,10_0_0 +5491,2,59.0,0.0,9,300,1284.0,0.0,0.0,74,75,0.0,79.45963662061344,2189.4774976897265,1344.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,105496,2,1,1,0,1,,280.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,1053.63128586814,1284.0,63004.05575835833,5,5,0,1,175.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02133196004325008,42002.70383890555,9,5,9,9_1,9_0,9_0_0 +5492,2,81.0,0.0,2,111,144.0,126.0,0.0,0,78,0.0,0.0,245.54887824557682,270.0,0.0,239.2115100404134,50,0,0,0,0,0,0,0,0,0,,2,,2,105497,2,1,0,1,1,390.0,0.0,221.0,11,0.0,6.0,2.0,1.0,1.0,1,1,384.109605354217,144.0,28806.796493389822,0,5,2,3,40.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00937278812178771,28806.796493389822,8,4,8,8_0,8_2,8_0_1 +5493,2,38.0,0.0,1,111,460.0,0.0,0.0,0,35,0.0,0.0,784.3922499511482,460.0,0.0,0.0,20,2,2,2,1,2,2,2,2,2,45.0,2,,1,105498,1,3,0,1,2,518.0,0.0,783.0,12,1.0,0.0,2.0,1.0,1.0,1,1,960.574834730593,460.0,18957.27866803261,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.024265086147395802,18957.27866803261,5,3,5,5_0,5_4,5_1_0 +5494,2,67.0,0.0,2,111,700.0,1800.0,0.0,72,56,0.0,0.0,1193.6403803604428,2500.0,0.0,3417.30728629162,60,0,0,0,0,0,0,0,0,1,10.0,2,,2,105499,1,1,0,0,1,,0.0,,41,0.0,1.0,3.0,3.0,2.0,3,3,2076.26186949963,700.0,56676.16718612506,5,5,0,1,79.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04411025170050714,28338.08359306253,8,4,8,8_0,8_3,8_0_1 +5495,2,29.0,0.0,2,111,450.0,1270.0,0.0,90,46,0.0,0.0,767.3402445174275,1720.0,0.0,2411.100140883532,31,0,0,0,0,0,0,0,0,0,,1,,2,105500,1,1,3,0,2,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1000.75269061888,450.0,69880.77764020993,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02461334945148491,46587.18509347329,10,5,10,10_1,10_4,10_0_1 +5496,2,70.0,0.0,2,112,450.0,0.0,0.0,78,78,1371.087706347582,0.0,767.3402445174275,1930.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105501,2,1,3,0,1,,420.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,733.813372761091,450.0,34056.26183583394,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05667092910265499,22704.174557222625,6,3,6,6_1,6_0,6_0_1 +5497,1,50.0,254.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,773.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,105502,2,1,0,0,1,,114.0,350.0,11,0.0,0.0,2.0,1.0,1.0,1,1,486.754843352005,0.0,9309.01223976173,0,7,2,3,45.0,6,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08303781111150256,9309.01223976173,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5498,2,41.0,0.0,2,111,696.0,0.0,0.0,85,37,0.0,0.0,1186.8195781869547,696.0,0.0,0.0,71,2,2,1,1,2,1,1,2,2,30.0,2,,2,105503,2,1,0,1,2,,0.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,873.298346020445,696.0,48466.29895384489,7,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014360494096378396,23079.189978021375,6,3,6,6_0,6_4,6_0_1 +5499,2,79.0,0.0,5,211,265.0,0.0,0.0,0,78,0.0,0.0,451.8781439935962,292.0,37.410909085706066,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,105504,2,1,0,1,1,688.0,48.0,336.0,11,0.0,5.0,3.0,1.0,1.0,1,1,2909.53962419989,265.0,18455.281460674756,0,5,2,3,50.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015822029082688614,18455.281460674756,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +5501,1,46.0,139.0,7,111,169.0,444.0,0.0,0,54,0.0,0.0,288.17889182987835,613.0,0.0,842.9357972852663,71,0,0,0,0,0,0,0,0,0,,2,,5,105506,2,1,0,0,1,,0.0,382.0,12,1.0,0.0,2.0,1.0,1.0,1,1,887.073916572114,169.0,12491.953589965777,0,1,2,3,47.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04907158800945236,12491.953589965777,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5502,2,76.0,0.0,7,111,330.0,,,86,77,0.0,0.0,,600.0,374.10909085706066,,50,0,0,0,0,0,0,0,0,0,,1,,5,105507,2,1,0,0,2,,550.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,173.02690149369172,330.0,26375.81329062146,6,5,0,1,130.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022748113712699965,17583.875527080974,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5503,0,79.0,0.0,1,120,750.0,0.0,0.0,86,86,0.0,397.2981831030672,1278.9004075290459,1350.0,415.67676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105508,2,2,1,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1472.60330126567,750.0,22715.40147835,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05943104291098188,15143.600985566665,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5504,2,46.0,0.0,1,111,768.0,324.0,0.0,0,52,0.0,0.0,1309.5940173097429,1092.0,0.0,615.1153115324917,50,2,2,2,2,2,2,2,1,3,75.0,2,,1,105509,2,2,0,0,1,,0.0,360.0,12,1.0,0.0,3.0,1.0,1.0,1,1,999.65966249874,768.0,16754.435641605607,0,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.06517677010189951,16754.435641605607,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +5505,2,61.0,0.0,2,111,0.0,0.0,0.0,85,78,0.0,0.0,0.0,154.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105510,2,1,0,1,1,562.0,0.0,291.0,41,0.0,3.0,3.0,3.0,2.0,3,3,703.343454166706,0.0,28783.765968106673,6,5,2,3,57.0,6,4,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005350238053305356,14391.882984053336,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +5506,2,48.0,0.0,7,112,600.0,0.0,0.0,56,63,1582.0242765549024,0.0,1023.1203260232367,2164.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,105511,2,2,2,0,1,,212.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,689.822322536728,600.0,44468.866501555174,1,1,0,1,114.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04866325971956852,17787.54660062207,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5507,2,72.0,0.0,5,211,0.0,0.0,1000.0,86,78,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,71,2,2,2,2,2,2,2,1,0,,8,,3,105512,2,1,0,0,1,,0.0,453.0,41,0.0,5.0,4.0,2.0,1.5,2,2,1398.17285205336,0.0,17674.216010672357,5,5,2,3,65.0,3,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.05657959591509815,11782.81067378157,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +5508,2,24.0,0.0,9,400,324.0,240.0,0.0,63,63,0.0,0.0,552.4849760525478,654.0,124.70303028568689,455.6409715055494,50,0,0,0,0,0,0,0,0,2,20.0,2,2010.0,6,105513,2,2,0,0,1,,0.0,378.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1067.10469359723,324.0,32339.128052231783,1,1,2,3,67.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020223179763650623,21559.418701487855,6,3,6,6_0,6_0,6_0_0 +5509,2,51.0,0.0,7,112,500.0,0.0,0.0,0,52,3164.0485531098047,927.0290939071567,852.6002716860306,4290.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,105514,1,1,3,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,796.610164677107,500.0,25974.953976891193,0,1,1,2,90.0,7,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16515909917748572,25974.953976891193,7,4,7,7_1,7_0,7_0_0 +5510,2,60.0,0.0,1,111,800.0,0.0,0.0,0,74,0.0,0.0,1364.160434697649,800.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,1,105515,2,2,0,0,1,,0.0,161.0,11,0.0,0.0,1.0,1.0,1.0,1,1,301.719015424516,800.0,39198.108302982444,0,5,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.020409148161344582,39198.108302982444,9,5,9,9_0,9_4,9_1_0 +5511,2,43.0,0.0,1,112,290.0,0.0,0.0,31,31,0.0,0.0,494.50815757789775,3590.0,4572.444443808519,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,105516,1,2,1,0,1,,350.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,950.265098019576,290.0,72011.03832393434,1,1,1,2,110.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04985346807319664,34290.97063044492,9,5,9,9_1,9_1,9_1_0 +5512,1,68.0,287.0,2,111,468.0,0.0,0.0,86,75,0.0,0.0,798.0338542981247,1168.0,969.9124577775647,0.0,20,2,2,2,1,2,2,2,2,0,,2,,2,105517,2,2,0,0,1,,150.0,317.0,41,0.0,3.0,2.0,2.0,1.5,2,2,789.222978183201,468.0,9358.026706122924,7,5,2,3,33.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.12481263803572837,6238.684470748616,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5513,2,47.0,0.0,7,112,1500.0,0.0,0.0,56,43,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,105518,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,2580.48491393409,1500.0,41602.568639338126,1,1,1,2,75.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03605546602191398,16641.02745573525,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5514,2,55.0,0.0,2,111,350.0,420.0,0.0,68,68,0.0,132.4327277010224,596.8201901802214,870.0,0.0,797.3717001347114,44,2,2,2,2,1,2,2,2,2,15.0,2,,2,105519,2,1,0,0,1,63.0,105.0,594.0,43,2.0,4.0,2.0,2.0,1.5,2,2,1411.90883288554,350.0,31455.287670312777,1,1,2,3,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0.027658306899577278,20970.19178020852,5,3,5,5_0,5_2,5_0_1 +5515,2,41.0,0.0,1,111,360.0,0.0,0.0,0,37,0.0,0.0,613.872195613942,1115.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,2,,1,105520,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,865.668956898534,360.0,66042.07847835633,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016883175479787692,41276.2990489727,9,5,9,9_0,9_4,9_1_0 +5516,1,33.0,306.0,6,111,760.0,740.0,0.0,67,53,0.0,0.0,1295.9524129627664,1500.0,0.0,1404.892995475444,71,2,2,2,2,2,2,2,1,2,35.0,2,,4,105521,1,2,0,0,2,,0.0,386.0,43,2.0,0.0,3.0,4.0,2.1,2,2,289.948664376546,760.0,25827.915608059204,4,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.058076695880636534,12299.007432409144,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5517,2,62.0,0.0,9,111,612.0,,,0,77,0.0,0.0,,796.0,254.94841747295985,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,105522,2,3,0,0,2,,625.0,522.0,21,0.0,4.0,4.0,2.0,1.5,2,2,83.97695604639117,612.0,30034.47736361508,0,5,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026502875024697618,20022.98490907672,5,3,5,5_0,5_2,5_0_0 +5518,2,71.0,0.0,1,112,250.0,750.0,0.0,77,77,0.0,0.0,426.3001358430153,1000.0,0.0,1423.8780359548418,44,0,0,0,0,0,0,0,0,0,,1,,1,105523,1,2,3,0,1,,370.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,523.954912721286,250.0,37231.49792531422,5,5,0,1,80.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02685897843825633,24820.99861687615,7,4,7,7_1,7_1,7_1_0 +5519,2,42.0,0.0,5,111,230.0,55.0,0.0,0,34,0.0,0.0,392.1961249755741,285.0,0.0,104.4177226366884,20,0,0,0,0,0,0,0,0,1,15.0,2,,3,105524,1,2,0,1,1,747.0,64.0,439.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1969.98309488309,230.0,30003.96875829024,0,1,2,3,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009498743392780434,30003.96875829024,8,4,8,8_0,8_2,8_0_0 +5520,2,66.0,0.0,9,112,520.0,,,74,72,0.0,0.0,,520.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,2011.0,6,105525,2,1,0,0,2,,360.0,,41,0.0,6.0,3.0,2.0,1.5,2,2,195.472300209563,520.0,23198.116915271254,6,5,1,2,133.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022415612521449337,15465.411276847502,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5521,2,53.0,0.0,7,111,180.0,,,0,64,0.0,0.0,,268.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,5,105526,2,2,0,0,1,,120.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,92.26699789170326,180.0,5096.093186267324,0,4,1,2,36.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05258930521957328,5096.093186267324,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5522,2,78.0,0.0,1,111,90.0,1000.0,0.0,77,74,0.0,0.0,153.4680489034855,1090.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,0,,2,,1,105527,2,2,0,0,1,,199.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,714.156141220676,90.0,32485.62636879536,5,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03355330100844288,21657.084245863574,6,3,6,6_0,6_4,6_1_0 +5523,1,46.0,100.0,6,111,360.0,300.0,0.0,56,67,0.0,0.0,613.872195613942,660.0,0.0,569.5512143819367,71,2,2,1,2,2,2,2,1,2,15.0,2,,4,105528,2,3,0,1,1,720.0,0.0,400.0,43,2.0,2.0,5.0,3.0,2.0,3,3,1485.34201690455,360.0,22731.03427627743,4,1,2,3,80.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.029035194438503373,11365.517138138715,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5524,2,43.0,0.0,1,400,487.0,0.0,0.0,45,33,0.0,662.163638505112,830.4326646221938,1017.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,105529,2,1,1,0,1,,150.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1171.92143354106,487.0,60136.29403748755,1,1,1,2,240.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01691158419848796,40090.86269165837,9,5,9,9_1,9_0,9_1_0 +5525,2,43.0,0.0,1,111,341.0,1228.0,0.0,52,33,0.0,0.0,581.4733852898729,1569.0,0.0,2331.362970870061,10,0,0,0,0,0,0,0,0,3,50.0,2,,1,105530,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1643.22968926376,341.0,61576.48991430836,1,1,1,2,78.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025480504039503814,41050.993276205576,9,5,9,9_0,9_2,9_1_0 +5526,2,56.0,0.0,2,111,450.0,0.0,0.0,53,46,0.0,0.0,767.3402445174275,450.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,15.0,2,,2,105531,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1275.2853692786,450.0,39561.08091395552,4,1,1,2,72.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01137481559158457,26374.053942637012,7,4,7,7_0,7_3,7_0_1 +5527,2,54.0,0.0,1,111,330.0,900.0,0.0,52,38,0.0,397.2981831030672,562.7161793127802,1530.0,0.0,1708.65364314581,12,0,0,0,0,0,0,0,0,2,45.0,1,,1,105532,2,1,1,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,183.261747510204,330.0,71067.89758944567,1,1,1,2,220.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02152870778362833,47378.59839296378,10,5,10,10_1,10_2,10_1_0 +5528,2,53.0,0.0,2,111,220.0,,,0,52,0.0,0.0,,260.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,2,4.0,1,,2,105533,1,3,0,0,2,,210.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,89.71335019265352,220.0,19335.782607163776,0,1,0,1,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01344657236183819,19335.782607163776,5,3,5,5_1,5_2,5_0_1 +5530,2,72.0,0.0,6,211,0.0,0.0,636.0,0,75,0.0,0.0,400.88243270377706,636.0,0.0,761.1216458511369,20,0,0,0,0,0,0,0,0,0,,1,,4,105535,1,1,4,0,1,,330.0,404.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1051.86248697946,0.0,28637.499333567837,0,5,2,3,69.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02220864303101018,28637.499333567837,8,4,8,8_1,8_2,8_0_0 +5531,2,56.0,0.0,5,111,300.0,0.0,0.0,0,43,0.0,0.0,511.56016301161833,517.0,0.0,0.0,33,1,2,2,2,1,2,2,2,2,18.0,2,,3,105536,1,1,0,1,2,260.0,0.0,580.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2264.77650157002,300.0,34110.5243880271,0,1,2,3,38.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.015156612490585709,34110.5243880271,9,5,9,9_0,9_3,9_0_0 +5532,2,52.0,0.0,2,111,351.0,0.0,0.0,0,46,0.0,0.0,598.5253907235934,351.0,0.0,0.0,60,2,2,1,2,2,2,2,1,2,15.0,2,,2,105537,2,1,0,1,1,803.0,0.0,399.0,32,2.0,0.0,3.0,2.0,1.5,2,2,392.379795774994,351.0,22180.380254916243,0,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015824796327475108,14786.920169944162,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +5533,2,70.0,0.0,2,111,336.0,,,0,78,0.0,0.0,,428.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,,2,105538,2,1,0,0,2,,325.0,424.0,11,0.0,3.0,3.0,1.0,1.0,1,1,96.9362827321509,336.0,25932.84533288143,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016504166608255648,25932.84533288143,7,4,7,7_0,7_2,7_0_1 +5534,2,55.0,0.0,1,111,1100.0,0.0,0.0,0,43,0.0,52.973091080408956,1875.7205977092674,1140.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,,1,105539,2,2,1,0,1,,135.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1616.43127011496,1100.0,32849.90785392163,0,1,1,2,98.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03470329369170229,32849.90785392163,8,4,8,8_1,8_2,8_1_0 +5535,2,39.0,0.0,1,111,680.0,0.0,0.0,0,35,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,105540,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1151.86006065914,680.0,22001.476469418045,0,1,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03090701666977655,22001.476469418045,6,3,6,6_0,6_4,6_1_0 +5536,2,30.0,0.0,6,111,2400.0,,,0,46,0.0,0.0,,2520.0,166.2707070475825,,60,0,0,0,0,0,0,0,0,0,,1,,4,105541,1,1,0,0,2,,750.0,,22,1.0,4.0,5.0,3.0,2.0,3,2,48.80084852505189,2400.0,15208.649510882331,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1656951853744049,7604.3247554411655,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5537,2,30.0,0.0,1,221,0.0,0.0,0.0,0,63,0.0,0.0,0.0,504.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,1.0,2,,1,105542,2,1,0,0,2,,216.0,380.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2117.39001554314,0.0,17064.97159249044,0,1,2,3,50.0,1,1,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02953418335731591,17064.97159249044,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +5538,2,55.0,0.0,2,111,600.0,60.0,0.0,56,54,0.0,0.0,1023.1203260232367,660.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,105543,2,2,0,1,1,960.0,0.0,358.0,43,3.0,1.0,4.0,3.0,2.0,3,3,386.196354090767,600.0,32008.24402082484,1,1,2,3,87.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020619687839501546,16004.12201041242,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +5539,2,39.0,0.0,1,111,188.0,819.0,0.0,54,45,0.0,0.0,320.5777021539475,1007.0,0.0,1554.8748152626872,20,0,0,0,0,0,0,0,0,3,20.0,2,,1,105544,2,1,0,0,1,,0.0,287.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1044.54404653872,188.0,41262.57225081863,1,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024404683107947096,27508.381500545755,7,4,7,7_0,7_4,7_1_0 +5540,1,53.0,271.0,7,111,140.0,590.0,0.0,0,65,0.0,0.0,238.72807607208856,730.0,0.0,1120.1173882844755,60,0,0,0,0,0,0,0,0,0,,2,,5,105545,2,1,0,0,1,,159.0,362.0,12,1.0,0.0,2.0,1.0,1.0,1,1,268.089993546936,140.0,9345.254457179739,0,4,2,3,50.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07811451291614196,9345.254457179739,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5541,2,52.0,0.0,1,111,1300.0,1780.0,0.0,56,38,0.0,0.0,2216.7607063836795,3080.0,0.0,3379.3372053328244,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,105546,2,2,2,0,1,,600.0,,43,2.0,0.0,8.0,2.0,1.5,2,2,368.552788970354,1300.0,43395.05048588631,1,1,0,1,150.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07097583631114177,28930.033657257543,8,4,8,8_1,8_2,8_1_0 +5543,1,28.0,275.0,2,111,250.0,100.0,0.0,0,63,0.0,0.0,426.3001358430153,350.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,105548,2,1,0,1,1,329.0,0.0,278.0,12,1.0,0.0,2.0,1.0,1.0,1,1,74.0239069510859,250.0,9384.270700056306,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037296451816751196,9384.270700056306,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5544,1,20.0,351.0,1,300,0.0,0.0,0.0,67,62,0.0,0.0,0.0,444.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,,1,105549,2,1,0,0,1,,268.0,367.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1603.92336865345,0.0,38657.807421384365,4,1,2,3,67.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.011485390135044033,21476.55967854687,6,3,6,6_0,6_0,6_1_0 +5545,0,44.0,0.0,7,111,513.0,,,0,62,0.0,0.0,,546.0,45.72444443808519,,43,0,0,0,0,0,0,0,0,0,,1,,5,105550,1,3,0,0,2,,70.0,,32,2.0,2.0,3.0,3.0,1.8,2,2,165.39802243380205,513.0,8804.426203280078,0,4,5,0,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062014262757587583,4891.347890711154,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5547,2,71.0,0.0,1,111,675.0,0.0,0.0,0,22,0.0,0.0,1151.0103667761414,675.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,1,105552,2,2,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1152.02433781891,675.0,25359.807002318277,0,1,0,1,29.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.026616921806159433,25359.807002318277,7,4,7,7_0,7_4,7_1_0 +5548,2,39.0,0.0,6,111,500.0,1255.0,0.0,46,54,0.0,0.0,852.6002716860306,1755.0,0.0,2382.622580164435,20,1,2,2,2,2,2,2,1,2,60.0,2,,4,105553,2,1,0,0,1,,0.0,496.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1033.5722599875,500.0,42345.39219226953,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.041444887132734795,23525.21788459418,6,3,6,6_0,6_4,6_0_0 +5549,2,36.0,0.0,1,111,836.0,1297.0,0.0,0,43,0.0,0.0,1425.5476542590432,2133.0,0.0,2462.3597501779063,31,0,0,0,0,0,0,0,0,2,10.0,2,,1,105554,1,2,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,779.21378278905,836.0,46674.25185184738,0,1,1,2,81.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045699714840004985,25930.139917692988,7,4,7,7_0,7_4,7_1_0 +5550,2,60.0,0.0,5,111,240.0,,,0,56,0.0,0.0,,600.0,498.81212114274757,,70,0,0,0,0,0,0,0,0,0,,1,,3,105555,2,1,0,0,2,,160.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,103.38432388626195,240.0,7543.164064129236,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07954221794713973,7543.164064129236,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +5551,2,55.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,3212.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,105556,2,1,1,0,1,,726.0,650.0,42,1.0,3.0,4.0,2.0,1.5,2,2,1580.11412460358,0.0,35755.4033990452,6,1,2,3,90.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08983257618863201,23836.935599363467,6,3,6,6_1,6_2,6_0_1 +5552,2,55.0,0.0,2,112,520.0,0.0,0.0,55,43,1792.9608467622227,0.0,886.7042825534718,2220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,105557,2,1,4,0,1,,150.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,753.018563108515,520.0,40334.03989435581,1,1,1,2,108.0,7,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05504035811475107,26889.35992957054,7,4,7,7_1,7_1,7_0_1 +5553,2,57.0,0.0,6,111,368.0,0.0,0.0,64,52,0.0,86.08127300566456,627.5137999609185,533.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,105558,2,1,2,0,1,,450.0,,43,3.0,2.0,4.0,4.0,2.5,4,4,1415.39920338116,368.0,26340.238476356983,4,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02023520024233726,10536.095390542792,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +5554,2,82.0,0.0,1,111,1120.0,0.0,0.0,86,78,0.0,0.0,1909.8246085767084,1520.0,554.2356901586083,0.0,71,2,2,1,1,2,2,2,2,0,,1,,1,105559,2,1,1,0,1,,0.0,,41,1.0,6.0,5.0,4.0,2.5,4,4,1511.99801461893,1120.0,51740.45060936997,5,5,0,1,143.0,6,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.029377401667327857,20696.180243747986,5,3,5,5_1,5_2,5_1_0 +5555,1,56.0,245.0,5,400,1600.0,0.0,0.0,77,78,2742.175412695164,0.0,2728.320869395298,4320.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,105560,2,1,1,0,1,,247.0,600.0,41,1.0,4.0,5.0,3.0,2.0,3,3,222.752553498185,1600.0,12179.281758375073,7,7,2,3,121.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.3547007192792264,6089.6408791875365,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +5556,1,55.0,342.0,7,111,558.0,420.0,0.0,0,55,0.0,0.0,951.5019032016102,978.0,0.0,797.3717001347114,41,2,1,2,1,2,2,2,2,1,5.0,2,,5,105561,1,2,0,1,1,516.0,0.0,436.0,32,1.0,1.0,4.0,4.0,2.5,4,2,201.794326496415,558.0,18335.82792757656,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.053338196882242554,7334.331171030624,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +5557,2,67.0,0.0,2,211,460.0,0.0,0.0,77,75,2154.717064667777,0.0,784.3922499511482,2663.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105562,2,2,1,0,1,,250.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,880.866343975492,460.0,39747.108781466566,5,5,0,1,90.0,1,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06699858383766806,26498.072520977712,7,4,7,7_1,7_1,7_0_1 +5558,2,58.0,0.0,5,111,400.0,1360.0,0.0,77,47,0.0,0.0,682.0802173488245,1760.0,0.0,2581.965505198113,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,105563,1,2,0,0,1,,332.0,309.0,42,1.0,2.0,3.0,2.0,1.5,2,2,279.51528928664,400.0,41010.09311414319,5,1,2,3,72.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04291626442060009,27340.06207609546,7,4,7,7_0,7_3,7_0_0 +5559,2,34.0,0.0,2,111,360.0,70.0,0.0,0,52,0.0,0.0,613.872195613942,430.0,0.0,132.89528335578524,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,105564,2,1,0,1,1,586.0,0.0,520.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1608.60547349383,360.0,19731.376246099127,0,1,2,3,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02179270186918718,19731.376246099127,5,3,5,5_0,5_3,5_0_1 +5560,2,50.0,0.0,5,111,0.0,,,0,42,0.0,0.0,,333.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,105565,2,1,0,0,2,,0.0,330.0,12,1.0,2.0,1.0,1.0,1.0,1,1,94.07951242283501,0.0,29321.0,0,1,2,3,41.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011357047849664063,29321.0,8,4,8,8_1,8_2,8_0_0 +5561,2,22.0,0.0,1,400,0.0,0.0,0.0,63,56,0.0,0.0,0.0,894.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,5.0,1,,1,105566,2,1,2,0,1,,168.0,350.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1584.51169366414,0.0,20167.084139519517,1,1,2,3,70.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04432966083818301,13444.722759679678,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5562,2,35.0,0.0,2,111,300.0,1000.0,0.0,0,47,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,105567,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,377.166711341395,300.0,23496.699004736103,0,1,1,2,69.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.055326920591610165,23496.699004736103,6,3,6,6_0,6_2,6_0_1 +5563,2,41.0,0.0,9,400,550.0,,,52,45,0.0,0.0,,616.0,91.44888887617039,,20,0,0,0,0,0,0,0,0,2,60.0,1,2005.0,6,105568,2,2,0,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,87.90935708740614,550.0,39900.62812108424,4,1,0,1,89.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015438353454754113,19000.29910527821,5,3,5,5_1,5_1,5_0_0 +5564,1,38.0,44.0,2,111,300.0,1700.0,0.0,0,52,0.0,0.0,511.56016301161833,2000.0,0.0,3227.4568814976415,31,2,2,1,2,1,2,2,2,2,20.0,1,,2,105569,1,2,5,0,2,,300.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,420.699019575414,300.0,23742.42630545641,0,1,1,2,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.08423738897908535,18263.404850351086,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +5565,2,76.0,0.0,1,111,285.0,840.0,0.0,78,78,0.0,0.0,485.98215486103743,1125.0,0.0,1594.7434002694229,71,0,0,0,0,0,0,0,0,0,,1,,1,105570,2,2,2,0,1,,310.0,310.0,41,0.0,1.0,2.0,2.0,1.5,2,2,1147.67098899497,285.0,20147.912626969995,5,5,2,3,58.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055837049764354996,13431.94175131333,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +5566,2,58.0,0.0,5,111,800.0,0.0,0.0,0,46,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,2,2,1,1,1,2,2,2,0,,2,,3,105571,1,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1154.52585677925,800.0,18398.266973563204,0,4,0,1,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.043482356308316115,18398.266973563204,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +5568,2,55.0,0.0,7,111,818.0,430.0,0.0,22,68,0.0,0.0,1394.854044478346,1248.0,0.0,816.3567406141093,42,0,0,0,0,0,0,0,0,2,20.0,1,,5,105573,1,2,2,0,1,,789.0,,43,2.0,0.0,5.0,5.0,3.0,5,5,407.000913048956,818.0,32356.08434551314,1,1,0,1,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038570798205162356,10785.36144850438,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +5570,2,89.0,0.0,1,221,0.0,0.0,0.0,0,78,0.0,0.0,0.0,733.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105575,2,2,2,0,2,,231.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,607.544591519734,0.0,19415.595860418347,0,5,0,1,50.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03775315500331011,19415.595860418347,5,3,5,5_1,5_1,5_1_0 +5571,2,66.0,0.0,2,111,300.0,0.0,0.0,0,43,0.0,0.0,511.56016301161833,300.0,0.0,0.0,10,2,1,2,2,1,2,2,2,3,10.0,2,,2,105576,1,3,0,1,2,894.0,0.0,997.0,22,1.0,1.0,2.0,2.0,1.5,2,2,1061.19774056556,300.0,94279.50180759338,0,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0031820278453766463,62853.00120506225,10,5,10,10_0,10_4,10_0_1 +5572,2,48.0,0.0,6,111,264.0,486.0,0.0,0,43,0.0,0.0,450.1729434502241,750.0,0.0,922.6729672987375,42,2,2,2,2,1,2,2,2,2,30.0,2,,4,105577,1,2,0,0,1,,0.0,361.0,12,1.0,0.0,2.0,1.0,1.0,1,1,348.391815158443,264.0,33185.438312836464,0,1,2,3,53.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.022600274039770402,33185.438312836464,8,4,8,8_0,8_3,8_0_0 +5573,1,44.0,211.0,1,111,1146.0,0.0,0.0,85,52,0.0,662.163638505112,1954.1598227043821,1646.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,20.0,1,,1,105578,1,2,1,0,1,,215.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,239.013929538937,1146.0,24789.22101356996,6,1,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.06639982753386874,10328.842088987483,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +5574,2,56.0,0.0,8,111,1000.0,,,72,22,0.0,0.0,,1252.0,349.1684847999233,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105579,2,2,0,0,1,,1300.0,,42,2.0,1.0,4.0,4.0,2.5,4,3,147.48783646762675,1000.0,3248.0410567491963,6,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.38546310780106485,1299.2164226996786,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5575,1,48.0,434.0,2,111,1200.0,0.0,0.0,0,85,0.0,0.0,2046.2406520464733,1370.0,235.55016831740858,0.0,70,2,2,1,2,2,2,2,1,0,,1,,2,105580,2,1,2,0,1,,1000.0,464.0,31,1.0,1.0,3.0,3.0,2.0,3,2,241.991236279387,1200.0,9252.142653273044,0,6,2,3,60.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.1480738085588583,4626.071326636522,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +5576,2,48.0,0.0,7,111,720.0,,,85,22,0.0,0.0,,972.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,5,105581,2,1,0,0,1,,480.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,101.42805333745189,720.0,12814.009618086224,6,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07585447716755878,4928.4652377254715,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5577,0,50.0,0.0,6,111,0.0,0.0,0.0,52,47,0.0,0.0,0.0,1375.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,105582,2,1,2,0,1,,0.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,2318.62460865329,0.0,107841.90649919999,1,1,5,0,110.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01275014551055067,53920.953249599996,10,5,10,10_1,10_3,10_0_0 +5578,2,50.0,0.0,7,111,600.0,800.0,0.0,55,64,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,105583,2,1,2,0,1,,490.0,,43,3.0,0.0,5.0,5.0,3.0,5,4,1275.15935132011,600.0,71315.70767206672,1,1,0,1,130.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019631018827404256,23771.902557355574,6,3,6,6_1,6_2,6_0_0 +5579,1,34.0,92.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,769.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,105584,2,1,0,1,1,924.0,274.0,378.0,32,1.0,0.0,3.0,2.0,1.3,1,1,297.403269202473,0.0,22634.49421718671,0,1,2,3,80.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03397469334287517,17411.149397835932,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +5580,2,53.0,0.0,7,111,1800.0,1800.0,0.0,22,21,0.0,0.0,3069.36097806971,3600.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,105585,2,1,2,0,1,,1000.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,563.710324106003,1800.0,113708.53692605949,1,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03165989201268985,54146.92234574261,10,5,10,10_1,10_4,10_0_0 +5581,2,66.0,0.0,2,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,916.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105586,2,1,0,1,1,,393.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,304.870270734803,0.0,29774.803107494172,5,5,0,1,90.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030764267246134947,19849.86873832945,5,3,5,5_0,5_3,5_0_1 +5582,2,44.0,0.0,5,111,450.0,,,90,46,0.0,0.0,,576.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,105587,2,1,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,157.14542955789764,450.0,161376.650479642,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003569289598513904,62067.94249217001,10,5,10,10_1,10_2,10_0_0 +5583,2,23.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,985.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,12.0,2,,2,105588,2,2,0,0,1,,186.0,495.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1865.67942447286,0.0,7093.012431695202,0,1,3,4,30.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1388690643764442,7093.012431695202,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +5584,2,54.0,0.0,2,112,500.0,0.0,0.0,0,45,0.0,0.0,852.6002716860306,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,105589,2,1,0,1,1,,0.0,290.0,12,1.0,1.0,3.0,1.0,1.0,1,1,948.411350272112,500.0,17531.606081363047,0,4,2,3,66.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028519919833900696,17531.606081363047,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +5585,1,28.0,412.0,1,111,400.0,1180.0,0.0,0,85,0.0,0.0,682.0802173488245,1580.0,0.0,2240.234776568951,50,2,2,1,2,1,2,2,2,0,,1,,1,105590,2,3,1,0,1,,720.0,384.0,31,0.0,0.0,4.0,3.0,1.6,1,1,184.853402188068,400.0,10124.836968562275,0,6,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.15605189544344433,6328.023105351422,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +5586,2,52.0,0.0,6,120,320.0,0.0,0.0,56,38,0.0,0.0,545.6641738790596,320.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,105591,2,1,2,0,2,,540.0,,43,2.0,2.0,6.0,3.0,2.0,3,2,263.365940895792,320.0,38217.36286721203,1,1,0,1,145.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008373157538678285,19108.681433606016,5,3,5,5_1,5_0,5_0_0 +5587,2,41.0,0.0,2,111,432.0,1008.0,0.0,38,38,0.0,0.0,736.6466347367304,1440.0,0.0,1913.6920803233072,43,0,0,0,0,0,0,0,0,2,33.0,2,,2,105592,2,1,0,0,1,,223.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,1725.45504296188,432.0,88431.53898043136,1,1,1,2,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016283783100491462,44215.76949021568,10,5,10,10_0,10_3,10_0_1 +5588,2,57.0,0.0,2,111,3250.0,450.0,0.0,0,37,0.0,0.0,5541.901765959199,3700.0,0.0,854.326821572905,20,0,0,0,0,0,0,0,0,0,,1,,2,105593,2,2,5,0,1,,334.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,593.394205044581,3250.0,41111.94531045882,0,1,0,1,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08999817381686206,41111.94531045882,9,5,9,9_1,9_4,9_0_1 +5589,2,58.0,0.0,1,112,978.0,850.0,0.0,78,63,0.0,0.0,1667.686131417876,1828.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,105594,2,1,3,0,1,,342.0,,42,1.0,2.0,5.0,4.0,2.5,4,3,125.3145533257,978.0,41705.90236651816,6,1,0,1,100.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04383072649849997,16682.360946607263,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5590,2,33.0,0.0,1,112,1900.0,0.0,0.0,43,62,0.0,0.0,3239.8810324069163,2020.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,105595,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,742.120560150811,1900.0,47780.542236299756,1,1,1,2,150.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042276623609879604,22752.63916014274,6,3,6,6_1,6_0,6_1_0 +5591,2,67.0,0.0,1,112,613.0,2608.0,0.0,77,75,0.0,0.0,1045.2879330870735,3311.0,124.70303028568689,4951.298557026969,70,0,0,0,0,0,0,0,0,0,,1,,1,105596,2,1,2,0,1,,160.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,2630.49969525647,613.0,20397.777604674036,6,5,0,1,180.0,6,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16232160503805584,13598.518403116024,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +5592,2,60.0,0.0,1,111,1500.0,3500.0,0.0,38,37,0.0,0.0,2557.8008150580918,5000.0,0.0,6644.764167789262,10,0,0,0,0,0,0,0,0,3,40.0,1,,1,105597,2,2,2,0,1,,600.0,,43,2.0,1.0,9.0,3.0,2.0,3,3,718.133060549577,1500.0,192215.3173335534,1,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026012495098522475,96107.6586667767,10,5,10,10_1,10_4,10_1_0 +5593,2,33.0,0.0,9,112,0.0,0.0,0.0,0,90,0.0,0.0,0.0,1053.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,4.0,1,2005.0,6,105598,2,1,1,0,1,,188.0,800.0,32,1.0,0.0,6.0,2.0,1.3,1,1,2326.20212451859,0.0,23956.04690720954,0,1,2,3,130.0,9,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04395549917224035,18427.728390161185,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5594,2,33.0,0.0,2,111,0.0,0.0,740.0,54,64,0.0,0.0,466.4355349069104,1433.0,0.0,885.5817891978638,43,0,0,0,0,0,0,0,0,2,45.0,2,,2,105599,2,2,0,1,1,,320.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,214.73666602135,0.0,47483.22492579409,1,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030179079079811152,26379.56940321894,7,4,7,7_0,7_4,7_0_1 +5595,2,74.0,0.0,1,120,696.0,0.0,0.0,0,77,0.0,794.5963662061343,1186.8195781869547,1356.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,105600,2,1,3,0,1,,295.0,,21,1.0,3.0,4.0,2.0,1.5,2,2,274.122200386741,696.0,75309.25554474782,0,5,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018005754939302007,50206.17036316521,10,5,10,10_1,10_0,10_1_0 +5596,2,63.0,0.0,2,111,612.0,,,77,65,0.0,0.0,,762.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,105601,2,1,0,0,2,,240.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,40.25831403353306,612.0,70920.75626459322,5,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010744386271870935,47280.50417639548,10,5,10,10_1,10_2,10_0_1 +5598,2,50.0,0.0,2,400,612.0,0.0,0.0,56,64,1265.6194212439218,0.0,1043.5827325437015,1842.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,105603,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1811.92724173505,612.0,38709.349437957484,1,1,1,2,85.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.047585403184114944,25806.232958638324,7,4,7,7_1,7_1,7_0_1 +5599,2,60.0,0.0,7,111,360.0,,,0,54,0.0,0.0,,429.0,95.60565655235995,,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,105604,2,2,0,0,2,,360.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,188.78446410211535,360.0,46178.16326788694,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00929010531474156,46178.16326788694,10,5,10,10_0,10_2,10_0_0 +5600,2,55.0,0.0,9,111,760.0,,,0,37,0.0,0.0,,806.0,63.73710436823996,,20,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,105605,2,1,0,0,1,,460.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,113.05822095894565,760.0,51735.84612764329,0,1,1,2,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015579140196362638,51735.84612764329,10,5,10,10_1,10_3,10_0_0 +5601,2,42.0,0.0,2,111,292.0,901.0,0.0,78,55,0.0,0.0,497.91855866464186,1193.0,0.0,1710.55214719375,31,0,0,0,0,0,0,0,0,0,,1,,2,105606,2,1,1,0,1,,160.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,657.075170123773,292.0,26474.767668818342,7,4,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045061774098403166,17649.84511254556,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +5602,2,35.0,0.0,8,300,989.0,0.0,0.0,56,53,0.0,331.081819252556,1686.4433373949685,1239.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,105607,2,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,993.817951632291,989.0,52489.262299667134,1,1,1,2,99.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02360482783938568,24994.8868093653,7,4,7,7_1,7_0,7_0_0 +5603,2,44.0,0.0,1,112,780.0,0.0,0.0,56,62,2636.7071275915036,0.0,1330.0564238302077,3590.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,105608,2,1,1,0,1,,324.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,2131.60279508076,780.0,61418.061353578996,1,1,0,1,87.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05845186124212957,30709.030676789498,8,4,8,8_1,8_0,8_1_0 +5604,1,97.0,94.0,1,111,183.0,1358.0,0.0,0,78,0.0,0.0,312.0516994370872,1541.0,0.0,2578.1684971022332,71,1,2,2,1,2,2,2,2,0,,2,,1,105609,2,3,0,0,1,,200.0,306.0,11,0.0,1.0,3.0,1.0,1.0,1,1,423.641219999191,183.0,15178.833855838315,0,5,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.10152295061898164,15178.833855838315,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +5605,2,41.0,0.0,7,111,800.0,0.0,0.0,38,37,0.0,0.0,1364.160434697649,1323.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,105610,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,990.451321109308,800.0,108906.13863830788,1,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012148075549660825,72604.09242553859,10,5,10,10_0,10_4,10_0_0 +5606,2,82.0,0.0,2,211,250.0,0.0,0.0,0,78,2013.3895626288722,0.0,426.3001358430153,2199.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105611,2,1,2,0,2,,150.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2183.39379350531,250.0,17850.0,0,5,0,1,75.0,1,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12319327731092437,17850.0,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +5607,1,24.0,308.0,2,111,360.0,0.0,0.0,0,68,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,105612,1,3,0,1,1,726.0,0.0,390.0,32,1.0,0.0,4.0,3.0,1.6,1,1,324.21125142458,360.0,11754.773678748983,0,2,2,3,72.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03062585548974291,7346.733549218114,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5608,2,26.0,0.0,9,112,1800.0,0.0,0.0,55,64,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,60,2,2,1,2,1,2,1,2,2,10.0,2,2006.0,6,105613,1,3,0,0,2,,0.0,325.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1463.52940302992,1800.0,34512.81855984332,1,1,3,4,29.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.05215453489777717,23008.545706562214,6,3,6,6_0,6_0,6_0_0 +5609,1,73.0,276.0,2,111,500.0,800.0,0.0,86,77,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,71,2,2,2,1,2,2,2,2,0,,2,,2,105614,2,2,0,1,1,,0.0,316.0,41,1.0,0.0,3.0,3.0,2.0,3,3,414.111954450179,500.0,15550.150116109404,6,5,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.08360047911391197,7775.075058054702,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5610,2,74.0,0.0,2,111,225.0,469.0,0.0,86,78,0.0,0.0,383.6701222587138,694.0,0.0,890.3983984837611,71,0,0,0,0,0,0,0,0,0,,2,,2,105615,2,1,0,1,1,994.0,0.0,328.0,41,0.0,6.0,4.0,3.0,2.0,3,3,215.740678915579,225.0,22920.61559066799,6,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030278418886906272,11460.307795333994,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +5611,2,45.0,0.0,6,112,1220.0,0.0,0.0,46,47,0.0,0.0,2080.344662913915,1220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,105616,2,2,2,0,1,,463.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,735.023026791173,1220.0,53797.616047763666,1,1,1,2,96.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022677584800724914,25617.912403696984,7,4,7,7_1,7_2,7_0_0 +5612,1,47.0,318.0,2,111,250.0,,,0,52,0.0,0.0,,250.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,105617,2,1,0,0,2,,0.0,306.0,32,1.0,2.0,3.0,2.0,1.3,1,1,97.39674155358506,250.0,9394.355957757965,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026611723158472312,7226.427659813819,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5613,1,67.0,210.0,1,111,1200.0,0.0,0.0,55,21,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,105618,1,2,0,0,2,,0.0,542.0,42,2.0,0.0,2.0,3.0,2.0,3,3,520.803648072052,1200.0,4826.891096262556,1,5,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.2486072248303169,2413.445548131278,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +5614,1,38.0,500.0,5,112,0.0,0.0,0.0,56,67,0.0,0.0,0.0,615.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,2.0,2,,3,105619,2,1,0,1,2,836.0,0.0,650.0,43,2.0,0.0,3.0,7.0,2.9999999999999996,2,2,575.294613120202,0.0,31375.956132773084,4,1,2,3,65.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019600996297850344,10458.652044257697,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +5615,1,47.0,150.0,9,300,1400.0,0.0,0.0,0,56,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,105620,2,1,1,0,1,,240.0,,32,1.0,1.0,7.0,4.0,2.1,2,1,566.374548581386,1400.0,8494.933040203703,0,1,1,2,162.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.16480412422019855,4045.206209620811,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +5616,2,80.0,0.0,2,111,350.0,900.0,0.0,0,75,0.0,0.0,596.8201901802214,1250.0,0.0,1708.65364314581,41,2,2,2,2,1,2,2,2,0,,2,,2,105621,2,2,0,0,2,,280.0,400.0,11,0.0,1.0,5.0,1.0,1.0,1,1,242.924355401916,350.0,24656.28787545856,0,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.0506970070399031,24656.28787545856,7,4,7,7_0,7_4,7_0_1 +5617,2,41.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,822.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,3.0,2,,2,105622,2,2,0,0,1,,0.0,835.0,32,1.0,0.0,4.0,4.0,2.1,2,1,1043.99798744706,0.0,52187.1056838288,0,1,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015751017214482407,24851.002706585143,7,4,7,7_0,7_4,7_0_1 +5618,2,48.0,0.0,7,111,1000.0,0.0,0.0,42,31,0.0,105.94618216081791,1705.2005433720612,1080.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,105623,2,1,1,0,1,,629.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1318.72592557298,1000.0,174681.70914525498,1,1,0,1,137.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006182673648458156,67185.272748175,10,5,10,10_1,10_3,10_0_0 +5619,0,74.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,894.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105624,2,2,0,1,1,,298.0,,21,1.0,5.0,4.0,2.0,1.5,2,2,359.508357935034,0.0,23458.5959008086,0,7,5,0,64.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03810969777475832,15639.0639338724,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +5620,2,69.0,0.0,1,111,554.0,2212.0,0.0,72,21,0.0,0.0,944.6811010281219,2766.0,0.0,4199.490954042813,10,2,2,2,2,1,2,2,2,1,10.0,2,,1,105625,2,2,0,0,1,,0.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,1060.57096466632,554.0,16548.7959482534,6,5,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.16714206934746395,8274.3979741267,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +5621,2,35.0,0.0,6,111,300.0,72.0,0.0,35,34,0.0,0.0,511.56016301161833,372.0,0.0,136.6922914516648,10,0,0,0,0,0,0,0,0,3,25.0,2,,4,105626,1,3,0,1,2,,0.0,1400.0,43,2.0,0.0,3.0,3.0,1.8,2,2,293.922017195988,300.0,64221.31436785466,1,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005792469426415241,35678.50798214148,9,5,9,9_0,9_4,9_0_0 +5622,2,62.0,0.0,1,111,150.0,0.0,0.0,0,75,0.0,0.0,255.78008150580916,150.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,105627,2,3,0,0,1,,0.0,190.0,11,0.0,2.0,1.0,1.0,1.0,1,1,2349.90724826867,150.0,37836.63236359498,0,5,2,3,35.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003964412016338021,37836.63236359498,9,5,9,9_0,9_3,9_1_0 +5623,2,65.0,0.0,1,111,600.0,0.0,0.0,77,46,0.0,0.0,1023.1203260232367,2027.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,105628,2,1,2,0,1,,513.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,327.315975287819,600.0,37031.60375596865,6,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05473702984503591,24687.735837312433,7,4,7,7_1,7_4,7_1_0 +5624,2,32.0,0.0,2,111,1200.0,0.0,0.0,54,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,2,,2,105629,1,3,0,0,2,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1124.80697478968,1200.0,58016.31652851765,1,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020683836406783004,38677.5443523451,9,5,9,9_0,9_4,9_0_1 +5625,2,52.0,0.0,1,300,400.0,0.0,0.0,0,43,2109.365702073203,0.0,682.0802173488245,2460.0,83.13535352379125,0.0,60,1,2,2,1,1,2,2,2,2,10.0,1,,1,105630,1,1,2,0,1,,400.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,1628.33538444152,400.0,17396.377350672108,0,1,0,1,220.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.1414087513975982,17396.377350672108,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +5626,2,87.0,0.0,2,112,71.0,0.0,0.0,0,77,0.0,0.0,121.06923857941635,121.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105631,2,2,2,0,1,,220.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,992.884680072414,71.0,27198.064718505317,0,5,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.004448845947398334,27198.064718505317,7,4,7,7_1,7_1,7_0_1 +5627,2,51.0,0.0,2,211,360.0,,,0,21,0.0,0.0,,452.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,,2,105632,2,1,0,0,2,,600.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,74.56633655941022,360.0,44079.0,0,1,0,1,58.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010254316114249417,29386.0,8,4,8,8_1,8_2,8_0_1 +5628,2,40.0,0.0,5,112,1200.0,0.0,0.0,85,37,0.0,264.8654554020448,2046.2406520464733,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,105633,2,1,2,0,1,,350.0,,42,1.0,0.0,8.0,4.0,2.1,2,2,2004.22472748482,1200.0,61254.659876735655,6,1,1,2,140.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022855404026685584,29168.885655588405,8,4,8,8_1,8_1,8_0_0 +5629,2,27.0,0.0,1,111,328.0,1347.0,0.0,52,38,0.0,0.0,559.3057782260361,1675.0,0.0,2557.2849525748957,20,2,2,2,2,1,2,2,2,3,60.0,2,,1,105634,2,2,0,0,1,,0.0,707.0,43,2.0,0.0,3.0,2.0,1.5,2,2,741.350875636996,328.0,51087.58003302991,1,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.03278683388246329,34058.38668868661,9,5,9,9_0,9_4,9_1_0 +5630,2,65.0,0.0,7,400,400.0,,,63,71,0.0,0.0,,610.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,1,30.0,1,,5,105635,2,1,0,0,1,,100.0,,42,2.0,3.0,4.0,4.0,2.5,4,4,103.07330374395461,400.0,20583.755395683453,1,5,0,1,72.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029635019862698182,8233.50215827338,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +5631,2,41.0,0.0,1,221,0.0,0.0,0.0,0,43,0.0,0.0,0.0,2631.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,1,105636,2,1,1,0,1,,291.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1340.46889391588,0.0,29028.922511143915,0,1,1,2,120.0,1,3,7,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09063374636071957,29028.922511143915,8,4,8,8_1,8_1,8_1_0 +5632,2,77.0,0.0,1,112,250.0,950.0,0.0,0,86,0.0,0.0,426.3001358430153,1200.0,0.0,1803.5788455427996,71,0,0,0,0,0,0,0,0,0,,1,,1,105637,2,2,2,0,2,,200.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,375.721034461273,250.0,15054.871651199594,0,6,0,1,100.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07970841783326545,15054.871651199594,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +5633,2,31.0,0.0,9,400,1800.0,,,81,21,0.0,0.0,,1975.0,242.47811444439117,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,105638,2,2,0,0,2,,0.0,,43,3.0,0.0,4.0,5.0,2.8,4,4,4.386640891614599,1800.0,30238.808329267078,4,1,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06531342037339702,10799.57440330967,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5634,2,87.0,0.0,1,111,256.0,1109.0,0.0,77,78,0.0,0.0,436.53133910324766,1365.0,0.0,2105.440989165226,70,0,0,0,0,0,0,0,0,0,,1,,1,105639,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1392.16061266653,256.0,28892.56144994163,5,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04724399400741804,19261.70763329442,5,3,5,5_1,5_3,5_1_0 +5635,1,85.0,253.0,6,111,210.0,,,0,86,0.0,0.0,,420.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,2,,4,105640,2,2,0,0,2,,204.0,282.0,11,0.0,6.0,2.0,1.0,1.0,1,1,129.4911093910001,210.0,8244.472413123041,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05094322340523209,8244.472413123041,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5636,2,60.0,0.0,7,111,900.0,0.0,0.0,63,45,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,105641,2,1,2,0,1,,270.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,917.507936955086,900.0,38163.26939099342,4,1,0,1,81.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02358288517629994,25442.17959399561,7,4,7,7_1,7_2,7_0_0 +5637,2,91.0,0.0,5,300,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,700.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,105642,2,1,2,0,1,,75.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1485.03005678289,600.0,37496.67137496271,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018668323729327193,37496.67137496271,9,5,9,9_1,9_0,9_0_0 +5638,2,49.0,0.0,7,120,850.0,,,52,48,0.0,0.0,,1290.0,609.6592591744692,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,105643,2,1,0,0,1,,400.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,114.29235043247014,850.0,60320.73787287368,1,1,0,1,102.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021385680041226995,26226.407770814647,7,4,7,7_1,7_2,7_0_0 +5639,2,65.0,0.0,1,112,330.0,0.0,0.0,0,11,1265.6194212439218,0.0,562.7161793127802,1650.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105644,2,1,4,0,1,,56.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,914.789546907823,330.0,8998.00449042858,0,1,0,1,146.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18337399161726908,8998.00449042858,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +5640,2,52.0,0.0,2,111,312.0,97.0,0.0,0,68,0.0,397.2981831030672,532.0225695320831,709.0,0.0,184.15489265015952,50,0,0,0,0,0,0,0,0,0,,1,,2,105645,2,2,2,0,1,,110.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1536.32521511681,312.0,15730.063788611431,0,1,1,2,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04507292592883928,15730.063788611431,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +5641,0,87.0,0.0,2,211,434.0,0.0,0.0,74,75,3456.1957028469433,26.486545540204478,740.0570358234745,3830.0,137.1733333142556,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105646,2,1,3,0,1,,430.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1209.35454660324,434.0,49725.09931145963,5,5,0,1,120.0,3,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07702347613245168,33150.06620763975,8,4,8,8_1,8_1,8_0_1 +5642,2,37.0,0.0,9,111,0.0,0.0,0.0,54,21,0.0,0.0,0.0,2060.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2012.0,6,105647,2,1,1,0,1,,411.0,400.0,43,2.0,0.0,3.0,4.0,2.1,2,2,648.138475366065,0.0,48210.002480177776,1,1,2,3,90.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04272972192538256,22957.144038179893,6,3,6,6_1,6_2,6_0_0 +5643,2,48.0,0.0,2,111,300.0,0.0,0.0,38,56,0.0,0.0,511.56016301161833,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,105648,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.8,4,2,1553.2689071798,300.0,122359.78467048783,1,1,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0024517859426436005,43699.9230966028,10,5,10,10_0,10_4,10_0_1 +5644,2,74.0,0.0,5,111,446.0,0.0,0.0,75,74,0.0,0.0,760.5194423439393,446.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,105649,2,2,0,1,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1689.39308979447,446.0,45271.0,5,5,0,1,90.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009851781493671446,30180.666666666668,8,4,8,8_0,8_2,8_0_0 +5645,2,67.0,0.0,2,111,997.0,0.0,0.0,0,77,0.0,0.0,1700.084941741945,997.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105650,2,1,1,0,1,,235.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,601.586143024428,997.0,12626.325973266741,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07896200384109453,12626.325973266741,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +5646,2,44.0,0.0,2,111,600.0,270.0,0.0,68,53,0.0,0.0,1023.1203260232367,870.0,0.0,512.596092943743,71,2,2,1,2,1,2,2,2,0,,2,,2,105651,1,3,0,1,1,1136.0,0.0,279.0,43,2.0,0.0,3.0,5.0,2.4,2,2,187.903354940141,600.0,17317.316242812336,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.050238731440912454,7215.54843450514,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +5647,2,55.0,0.0,2,221,646.0,0.0,0.0,0,21,1054.6828510366015,0.0,1101.5595510183516,1701.0,76.20740739680865,0.0,44,0,0,0,0,0,0,0,0,1,5.0,1,,2,105652,2,3,4,0,1,,400.0,,32,1.0,1.0,6.0,2.0,1.5,2,1,2395.05651739887,646.0,20889.084287752266,0,1,0,1,80.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08143008935041418,13926.056191834845,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +5649,2,80.0,0.0,1,211,837.0,3316.0,0.0,72,72,0.0,26.486545540204478,1427.2528548024152,4173.0,0.0,6295.43942296834,41,0,0,0,0,0,0,0,0,0,,1,,1,105654,2,1,1,0,1,,270.0,,41,0.0,0.0,11.0,2.0,1.5,2,2,1153.69399484173,837.0,51934.130034977985,5,5,0,1,525.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08035178402313578,34622.75335665199,9,5,9,9_1,9_1,9_1_0 +5650,1,49.0,300.0,9,111,1200.0,0.0,0.0,63,54,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,60.0,2,2009.0,6,105655,2,1,0,0,1,,0.0,542.0,43,2.0,1.0,5.0,4.0,2.3,3,3,2968.35792966651,1200.0,19568.813323838534,1,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06132206282218308,8508.179706016756,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5651,2,63.0,0.0,6,111,360.0,,,0,86,0.0,0.0,,426.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,4,105656,2,2,0,0,2,,240.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,92.55976558806019,360.0,4643.697520661157,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0917372413049305,4643.697520661157,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +5652,2,64.0,0.0,1,112,900.0,0.0,0.0,0,77,0.0,0.0,1534.680489034855,1532.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105657,2,1,1,0,1,,0.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,959.440672124527,900.0,24704.94778536217,0,5,0,1,180.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0620118695781142,24704.94778536217,7,4,7,7_1,7_0,7_1_0 +5653,2,87.0,0.0,1,112,867.0,0.0,0.0,0,74,4218.731404146406,0.0,1478.408871103577,5017.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105658,2,1,4,0,1,,204.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1539.79069194566,867.0,70657.95446812618,0,5,0,1,200.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07100403681036606,70657.95446812618,10,5,10,10_1,10_0,10_1_0 +5654,2,66.0,0.0,1,221,2500.0,0.0,0.0,75,72,0.0,264.8654554020448,4263.001358430153,3500.0,1108.4713803172167,0.0,20,2,2,1,2,2,2,2,1,0,,1,,1,105659,2,2,2,0,1,,600.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1917.81720372757,2500.0,61343.722508713596,5,5,0,1,150.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05705555282372766,40895.81500580906,9,5,9,9_1,9_1,9_1_0 +5655,2,41.0,0.0,1,111,500.0,1200.0,0.0,55,55,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,43,0,0,0,0,0,0,0,0,2,40.0,1,,1,105660,2,1,2,0,1,,350.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,1374.12818609135,500.0,50969.65478514336,1,1,1,2,90.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03335317861512212,24271.264183401596,7,4,7,7_1,7_2,7_1_0 +5656,2,40.0,0.0,5,112,1000.0,2000.0,0.0,52,37,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,31,0,0,0,0,0,0,0,0,0,,1,,3,105661,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,658.274661834447,1000.0,68508.42591022802,1,4,1,2,140.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04379023397692915,28545.17746259501,8,4,8,8_1,8_1,8_0_0 +5657,2,48.0,0.0,6,112,792.0,,,64,43,0.0,0.0,,930.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,4,105662,2,1,0,0,1,,600.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,84.61166481170939,792.0,35620.084308946025,1,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026108865771730626,23746.722872630682,6,3,6,6_1,6_1,6_0_0 +5658,2,50.0,0.0,1,112,480.0,0.0,0.0,37,37,0.0,0.0,818.4962608185893,871.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,90.0,1,,1,105663,1,2,2,0,2,,900.0,,43,2.0,0.0,9.0,4.0,2.5,4,3,641.025814966044,480.0,203894.65196745362,1,1,1,2,210.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.004271813858752077,81557.86078698144,10,5,10,10_1,10_1,10_1_0 +5659,2,55.0,0.0,2,111,660.0,768.0,0.0,67,52,0.0,0.0,1125.4323586255605,1428.0,0.0,1458.051108817758,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,105664,2,2,0,1,1,609.0,0.0,314.0,43,2.0,4.0,4.0,3.0,2.0,3,3,262.385128343365,660.0,30239.494920194815,4,1,2,3,80.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04722301095863675,15119.747460097407,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +5660,2,54.0,0.0,2,111,600.0,0.0,0.0,67,63,0.0,715.1367295855209,1023.1203260232367,1190.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,105665,2,3,0,1,1,528.0,456.0,256.0,43,2.0,2.0,3.0,2.0,1.5,2,2,237.647764152239,600.0,36166.42901699054,1,1,2,3,54.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032903442013613025,24110.952677993697,6,3,6,6_0,6_2,6_0_1 +5661,2,75.0,0.0,1,112,513.0,1470.0,0.0,78,78,0.0,0.0,874.7678787498674,2068.0,117.77508415870429,2790.8009504714896,71,0,0,0,0,0,0,0,0,0,,1,,1,105666,2,2,1,0,1,,250.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,383.807181883064,513.0,35447.99684522204,5,5,0,1,100.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05833898059260128,23631.997896814693,6,3,6,6_1,6_1,6_1_0 +5662,0,34.0,0.0,8,221,1180.0,0.0,0.0,54,47,0.0,397.2981831030672,2012.1366411790323,1480.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,15.0,1,1999.0,6,105667,1,1,2,0,1,,341.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,586.338780576137,1180.0,39543.476312230225,1,1,5,0,70.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03742715962334999,21968.597951239015,6,3,6,6_1,6_1,6_0_0 +5663,2,28.0,0.0,6,111,750.0,750.0,0.0,0,46,0.0,0.0,1278.9004075290459,1500.0,0.0,1423.8780359548418,42,0,0,0,0,0,0,0,0,3,90.0,2,,4,105668,2,2,0,0,1,,0.0,451.0,12,1.0,0.0,1.0,1.0,1.0,1,1,959.968479331886,750.0,20263.57207064616,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07402446097709012,20263.57207064616,5,3,5,5_0,5_4,5_0_0 +5664,2,59.0,0.0,7,112,485.0,0.0,0.0,11,34,0.0,0.0,827.0222635354497,585.0,138.5589225396521,0.0,30,0,0,0,0,0,0,0,0,2,25.0,1,,5,105669,2,1,2,0,1,,124.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1513.53796777273,485.0,54868.15694802134,1,1,0,1,114.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010661921823876687,36578.77129868089,9,5,9,9_1,9_0,9_0_0 +5665,2,63.0,0.0,1,112,720.0,0.0,0.0,75,75,0.0,264.8654554020448,1227.744391227884,1124.0,282.6602019808903,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,105670,1,2,3,0,1,,140.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1451.73229030469,720.0,48808.51160622107,5,5,0,1,120.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02302877024950575,32539.007737480715,8,4,8,8_1,8_0,8_1_0 +5666,2,48.0,0.0,2,111,727.0,1105.0,0.0,0,46,0.0,0.0,1239.6807950314885,1832.0,0.0,2097.846972973467,42,2,2,2,2,1,2,2,2,2,20.0,1,,2,105671,2,2,3,0,1,,287.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,338.858287507514,727.0,29683.287151813627,0,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.061718231900339454,29683.287151813627,8,4,8,8_1,8_3,8_0_1 +5667,2,74.0,0.0,2,112,650.0,0.0,0.0,86,78,1582.0242765549024,0.0,1108.3803531918397,2270.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105672,2,1,4,0,1,,120.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1080.4963219663,650.0,24277.59124062407,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09350186258188471,16185.060827082714,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +5668,2,39.0,0.0,2,111,750.0,,,0,42,0.0,0.0,,930.0,249.40606057137379,,20,0,0,0,0,0,0,0,0,0,,1,,2,105673,1,1,0,0,1,,500.0,,32,1.0,3.0,5.0,4.0,2.3,3,3,46.7213884865647,750.0,41793.50100295059,0,1,0,1,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022252263574050492,18171.087392587215,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +5669,2,56.0,0.0,9,111,312.0,,,0,43,0.0,0.0,,382.0,96.99124577775646,,33,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,105674,2,2,0,0,2,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,96.49877356885459,312.0,50319.45782202005,0,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007591496739713178,50319.45782202005,10,5,10,10_1,10_3,10_0_0 +5670,2,57.0,0.0,2,111,500.0,0.0,0.0,0,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,1,2,2,2,2,2,2,1,2,2.0,2,,2,105675,1,2,0,0,1,,127.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,223.245447388481,500.0,32765.779692866716,0,1,1,2,75.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015259823043638808,32765.779692866716,8,4,8,8_0,8_2,8_0_1 +5671,2,37.0,0.0,5,112,0.0,0.0,0.0,77,63,0.0,0.0,0.0,279.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,105676,2,1,0,0,1,43.0,119.0,333.0,42,1.0,2.0,3.0,2.0,1.5,2,2,294.354322511153,0.0,12134.601910921463,6,4,2,3,65.0,9,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02299210159905556,8089.734607280975,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +5672,2,37.0,0.0,9,112,1698.0,0.0,0.0,84,53,0.0,476.7578197236806,2895.43052264576,2058.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,105677,2,1,1,0,1,,246.0,,42,1.0,1.0,4.0,3.0,1.8,2,2,1777.64420663855,1698.0,34256.972742410966,3,1,1,2,93.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06007536087542686,19031.651523561646,5,3,5,5_1,5_1,5_0_0 +5673,2,51.0,0.0,1,111,0.0,0.0,0.0,35,35,0.0,0.0,0.0,806.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,1,,1,105678,2,1,1,0,2,,450.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,691.621478134645,0.0,111784.65715989802,1,1,1,2,90.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007210291827858707,44713.862863959206,10,5,10,10_1,10_4,10_1_0 +5674,2,56.0,0.0,7,111,1070.0,0.0,0.0,0,33,0.0,0.0,1824.5645814081054,1070.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,5,105679,2,1,0,0,1,,0.0,1387.0,32,1.0,0.0,4.0,3.0,2.0,3,2,911.421762082488,1070.0,56066.259131443934,0,1,2,3,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019084562026716462,28033.129565721967,7,4,7,7_0,7_4,7_0_0 +5675,2,56.0,0.0,1,111,601.0,0.0,0.0,56,47,0.0,0.0,1024.8255265666087,601.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,105680,1,2,0,0,2,,0.0,642.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1539.9726791426,601.0,64159.60464783822,1,1,2,3,55.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.009367264703372045,42773.06976522548,9,5,9,9_0,9_3,9_1_0 +5676,0,57.0,0.0,2,111,432.0,,,0,56,0.0,0.0,,524.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,105681,2,3,0,0,2,,537.0,,32,1.0,4.0,4.0,2.0,1.5,2,2,107.62992413534647,432.0,11429.525192972484,0,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04584617393574536,7619.6834619816555,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +5677,2,92.0,0.0,2,111,0.0,970.0,0.0,86,75,0.0,0.0,0.0,1240.0,0.0,1841.5489265015954,71,0,0,0,0,0,0,0,0,0,,8,,2,105682,2,1,0,0,1,,140.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1571.05946487779,0.0,23887.46328028319,5,5,0,1,55.0,6,5,8,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05191007456298221,15924.975520188795,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +5678,2,46.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,105683,2,2,0,0,1,,442.0,321.0,12,1.0,0.0,3.0,1.0,1.0,1,1,293.629410055721,0.0,18887.75514536596,0,1,2,3,56.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09529983770684486,18887.75514536596,5,3,5,5_0,5_2,5_0_1 +5679,2,50.0,0.0,7,221,0.0,0.0,0.0,46,21,0.0,0.0,0.0,60.0,83.13535352379125,0.0,50,2,2,2,1,1,2,2,2,0,,2,,5,105684,1,2,0,0,2,,0.0,569.0,43,3.0,4.0,3.0,3.0,2.0,3,3,1085.85032989037,0.0,17450.386462492883,4,1,2,3,110.0,1,1,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.0034383192675395153,8725.193231246441,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +5680,0,72.0,0.0,8,111,264.0,0.0,0.0,0,77,0.0,0.0,450.1729434502241,264.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,105685,1,1,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,2213.02534825672,264.0,20956.522492248692,0,5,0,1,48.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012597509920725024,20956.522492248692,5,3,5,5_0,5_3,5_0_0 +5681,2,89.0,0.0,2,111,220.0,0.0,0.0,77,78,0.0,0.0,375.14411954185346,400.0,249.40606057137379,0.0,60,2,1,2,1,1,2,2,2,0,,2,,2,105686,1,2,0,1,2,,0.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,449.842230202535,220.0,26068.485728358133,5,5,0,1,47.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015344197747737499,17378.99048557209,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +5682,1,29.0,130.0,6,300,650.0,0.0,0.0,65,56,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,2,,4,105687,1,1,0,0,2,,400.0,500.0,43,2.0,0.0,2.0,2.0,1.5,2,2,9038.27092072922,650.0,36116.0,1,4,3,4,40.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.01799756340680031,24077.333333333332,6,3,6,6_0,6_0,6_0_0 +5683,2,40.0,0.0,9,112,480.0,0.0,0.0,43,48,1582.0242765549024,158.91927324122688,818.4962608185893,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,105688,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,1075.79943659554,480.0,45706.44442612313,1,1,1,2,137.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045945380927503575,17579.401702355055,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5684,2,40.0,0.0,2,111,700.0,0.0,0.0,34,34,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,2,105689,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,706.652963237703,700.0,68008.05458765767,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010292898455105028,28336.68941152403,8,4,8,8_0,8_4,8_0_1 +5685,2,58.0,0.0,7,211,704.0,0.0,0.0,52,34,1302.5333210302028,331.081819252556,1200.4611825339312,2288.0,137.1733333142556,0.0,30,0,0,0,0,0,0,0,0,2,7.0,1,,5,105690,2,1,2,0,1,,212.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,941.556988912032,704.0,64804.24250368203,1,1,0,1,140.0,4,4,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03530633044387489,43202.82833578802,9,5,9,9_1,9_2,9_0_0 +5686,2,40.0,0.0,7,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,618.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,,5,105691,2,2,0,0,1,,195.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1436.48994851867,0.0,57402.30468240686,1,1,1,2,100.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01076611824941952,27334.43080114612,7,4,7,7_0,7_3,7_0_0 +5687,1,79.0,114.0,1,112,324.0,0.0,0.0,0,77,0.0,0.0,552.4849760525478,324.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,105692,2,1,0,1,1,1452.0,0.0,311.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1570.12946349017,324.0,14260.046454657837,0,5,2,3,114.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.022720823598310937,14260.046454657837,3,2,3_1,3_0_1,3_0_1,3_1_0_1 +5688,2,93.0,0.0,2,111,420.0,40.0,0.0,0,74,0.0,0.0,716.1842282162656,460.0,0.0,75.94016191759155,12,2,1,2,1,2,2,2,2,0,,2,,2,105693,1,1,0,1,2,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,395.812753281795,420.0,30387.56069535991,0,5,0,1,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015137773137224557,30387.56069535991,8,4,8,8_0,8_3,8_0_1 +5689,2,85.0,0.0,2,112,420.0,1193.0,0.0,0,78,0.0,0.0,716.1842282162656,1613.0,0.0,2264.9153291921684,70,0,0,0,0,0,0,0,0,0,,1,,2,105694,2,1,3,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,3150.54499868886,420.0,26734.203268760117,0,5,0,1,80.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06033469498920317,26734.203268760117,7,4,7,7_1,7_1,7_0_1 +5690,1,21.0,250.0,9,111,0.0,,,43,53,0.0,0.0,,307.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,2005.0,6,105695,2,1,0,0,1,,538.0,520.0,43,2.0,0.0,3.0,3.0,1.8,2,2,135.11346842378856,0.0,29039.221866242257,1,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010571908621177063,16132.901036801253,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +5691,2,45.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,958.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105696,1,3,0,0,1,,0.0,347.0,43,2.0,0.0,4.0,4.0,2.1,2,2,851.063123853527,0.0,9412.372085425348,4,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10178093166157569,4482.081945440642,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +5692,1,44.0,467.0,9,111,500.0,,,0,55,0.0,0.0,,750.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105697,1,2,0,0,2,,600.0,750.0,32,2.0,2.0,4.0,5.0,2.5999999999999996,3,2,120.35239916026313,500.0,13590.023166023166,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055187543894339934,5226.931986931988,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +5693,2,65.0,0.0,6,111,1445.0,75.0,0.0,55,74,0.0,264.8654554020448,2464.0147851726283,1720.0,0.0,142.38780359548417,50,0,0,0,0,0,0,0,0,0,,1,,4,105698,2,1,2,0,1,,418.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1562.84319022065,1445.0,44376.723706407705,4,5,0,1,86.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03875905782002657,29584.48247093847,8,4,8,8_1,8_2,8_0_0 +5694,1,42.0,251.0,2,111,270.0,0.0,0.0,0,81,0.0,0.0,460.40414671045653,330.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105699,2,1,0,1,1,142.0,0.0,256.0,12,1.0,0.0,3.0,1.0,1.0,1,1,307.121532000088,270.0,4827.223969130187,0,4,2,3,70.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0683622724179219,4827.223969130187,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5695,2,51.0,0.0,9,111,900.0,,,0,52,0.0,7.945963662061343,,1056.0,207.83838380947813,,42,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,105700,2,1,0,0,2,,400.0,,32,1.0,0.0,6.0,5.0,2.8,4,3,56.86747741182683,900.0,42280.90881064918,0,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024975811298881732,15100.324575231853,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5696,1,41.0,24.0,9,112,1100.0,0.0,0.0,54,64,0.0,0.0,1875.7205977092674,1204.0,144.10127944123818,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,105701,2,1,1,0,1,,690.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,885.812633937079,1100.0,36826.31135001482,1,1,1,2,95.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03269401566061314,14163.965903851855,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +5697,2,82.0,0.0,2,120,650.0,0.0,0.0,78,77,1582.0242765549024,0.0,1108.3803531918397,2250.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105702,2,1,1,0,1,,322.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,3279.66320492935,650.0,32863.82911152044,5,5,0,1,90.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06846432874163348,21909.219407680295,6,3,6,6_1,6_1,6_0_1 +5698,2,75.0,0.0,2,221,300.0,,,0,78,0.0,0.0,,321.0,29.09737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,2,105703,1,3,0,0,2,,510.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,110.48692587542146,300.0,6416.299686656137,0,5,0,1,72.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050028835259608884,6416.299686656137,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +5699,2,63.0,0.0,5,111,0.0,0.0,787.0,0,77,0.0,0.0,496.06049455640334,787.0,0.0,941.8282001334038,50,1,2,2,1,1,2,2,2,0,,2,,3,105704,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,343.525965246221,0.0,13888.077395988326,0,5,0,1,1.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.056667310928676905,13888.077395988326,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +5700,2,44.0,0.0,5,111,2000.0,0.0,0.0,53,53,0.0,0.0,3410.4010867441225,2030.0,41.567676761895626,0.0,50,2,2,2,2,2,2,2,1,2,8.0,1,,3,105705,1,2,3,0,2,,240.0,995.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1425.11729735198,2000.0,56993.95269982672,1,1,2,3,75.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03561781388793152,31663.307055459285,8,4,8,8_1,8_2,8_0_0 +5701,2,35.0,0.0,1,111,650.0,1100.0,0.0,0,37,0.0,0.0,1108.3803531918397,1750.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,105706,2,1,0,0,1,,0.0,890.0,22,1.0,1.0,2.0,2.0,1.5,2,2,1115.81004864982,650.0,32706.736626675287,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.053505796679596505,21804.49108445019,6,3,6,6_0,6_4,6_1_0 +5702,2,75.0,0.0,2,111,480.0,0.0,0.0,0,77,0.0,0.0,818.4962608185893,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,105707,2,1,0,1,1,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1582.07883267757,480.0,79150.50225311445,0,5,0,1,150.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006064396135668397,79150.50225311445,10,5,10,10_0,10_3,10_0_1 +5703,2,38.0,0.0,1,111,435.0,0.0,0.0,46,37,1582.0242765549024,0.0,741.7622363668467,1935.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,1,,1,105708,2,1,2,0,1,,308.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,976.399038379258,435.0,89684.14468885139,1,1,0,1,118.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021575720064156884,59789.42979256759,10,5,10,10_1,10_3,10_1_0 +5704,1,75.0,210.0,6,111,360.0,,,86,71,0.0,0.0,,612.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,105709,2,1,0,0,2,,220.0,251.0,41,1.0,0.0,4.0,3.0,2.0,3,3,106.11924672697575,360.0,4936.930105382548,6,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12396367518607555,2468.465052691274,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +5705,1,75.0,47.0,1,111,200.0,900.0,0.0,0,78,0.0,0.0,341.04010867441224,1100.0,0.0,1708.65364314581,71,2,2,2,2,2,2,2,1,0,,2,,1,105710,2,2,0,0,1,,170.0,235.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1985.96979127299,200.0,13819.664912862705,0,5,2,3,65.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.07959672010398536,13819.664912862705,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +5706,0,70.0,0.0,5,111,300.0,,,0,78,0.0,0.0,,476.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,3,105711,1,2,0,0,2,,400.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,107.50184873907624,300.0,23126.10321834101,0,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0205828018454268,15417.402145560673,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5707,2,54.0,0.0,1,111,1114.0,2780.0,0.0,0,48,0.0,0.0,1899.593405316476,3894.0,0.0,5277.841253272613,71,0,0,0,0,0,0,0,0,0,,1,,1,105712,2,1,2,0,1,,1200.0,,32,3.0,1.0,9.0,4.0,2.5,4,4,793.986364449385,1114.0,64149.33731392574,0,4,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060702107972589736,25659.734925570294,7,4,7,7_1,7_4,7_1_0 +5708,2,24.0,0.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,492.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,5,105713,1,1,0,0,1,,0.0,545.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1241.03875265088,0.0,17175.81784555515,0,1,2,3,26.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02864492418492447,17175.81784555515,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +5709,2,83.0,0.0,1,111,210.0,240.0,0.0,0,90,0.0,0.0,358.0921141081328,450.0,0.0,455.6409715055494,70,2,2,2,2,1,2,2,2,0,,2,,1,105714,2,1,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,476.880890311966,210.0,15287.856607023961,0,5,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.029435126948616774,15287.856607023961,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +5710,1,54.0,179.0,2,111,360.0,950.0,0.0,78,68,0.0,0.0,613.872195613942,1310.0,0.0,1803.5788455427996,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,105715,2,2,0,0,1,,0.0,364.0,42,1.0,4.0,2.0,2.0,1.5,2,2,1634.43153368374,360.0,12936.795445223346,6,1,2,3,63.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10126155318345792,8624.530296815565,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5711,2,77.0,0.0,1,111,166.0,655.0,0.0,0,74,0.0,0.0,283.06329019976215,821.0,0.0,1243.5201514005619,10,0,0,0,0,0,0,0,0,0,,2,,1,105716,1,1,0,0,2,,0.0,680.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1148.05148231809,166.0,44672.02862972878,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01837839080031465,44672.02862972878,10,5,10,10_0,10_4,10_1_0 +5712,2,75.0,0.0,2,111,0.0,0.0,0.0,77,21,0.0,0.0,0.0,2472.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,105717,2,3,3,0,1,,240.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1028.04163480821,0.0,61450.11347951259,5,1,0,1,84.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04022775321357482,40966.74231967506,9,5,9,9_1,9_4,9_0_1 +5713,2,53.0,0.0,6,112,1554.0,0.0,0.0,77,43,0.0,0.0,2649.881644400183,1618.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,105718,1,2,3,0,1,,282.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1674.12065601354,1554.0,47527.13537447906,5,1,0,1,96.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03404370970922913,31684.756916319373,8,4,8,8_1,8_2,8_0_0 +5714,2,43.0,0.0,1,120,620.0,0.0,0.0,67,56,210.9365702073203,794.5963662061343,1057.224336890678,1420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105719,1,1,2,0,2,,336.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,193.128092541145,620.0,7832.611520466916,4,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.18129330125584364,3916.305760233458,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +5715,2,54.0,0.0,1,400,2000.0,0.0,0.0,42,42,632.8097106219609,39.72981831030672,3410.4010867441225,2790.0,221.69427606344334,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,105720,2,2,1,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,966.1977006733,2000.0,63584.536416354444,1,1,0,1,170.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.043878593086390576,27645.450615806283,7,4,7,7_1,7_0,7_1_0 +5716,2,66.0,0.0,9,211,1084.0,0.0,0.0,77,75,0.0,0.0,1848.4373890153142,1148.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,105721,2,1,1,0,1,,186.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1417.23876893048,1084.0,33693.724884572766,5,5,0,1,110.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034071626213272456,22462.483256381845,6,3,6,6_1,6_1,6_0_0 +5717,2,49.0,0.0,5,111,1282.0,0.0,0.0,34,53,0.0,0.0,2186.0670966029825,2542.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,,3,105722,1,1,1,0,1,,344.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1086.83433538563,1282.0,50881.42497128544,1,1,1,2,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04995929263841488,22122.358683167586,6,3,6,6_1,6_2,6_0_0 +5718,2,64.0,0.0,7,111,908.0,,,0,74,0.0,0.0,,948.0,55.423569015860835,,60,0,0,0,0,0,0,0,0,0,,1,,5,105723,2,2,0,0,2,,205.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,112.80396833320184,908.0,25842.906087849802,0,5,0,1,138.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036683180938606126,25842.906087849802,7,4,7,7_1,7_3,7_0_0 +5719,2,76.0,0.0,5,111,384.0,0.0,0.0,90,72,0.0,0.0,654.7970086548714,384.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,105724,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,684.332204340703,384.0,46509.513260513166,5,5,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00825637537527227,31006.342173675443,8,4,8,8_0,8_4,8_0_0 +5720,2,47.0,0.0,9,111,1800.0,0.0,0.0,54,46,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,105725,2,1,1,0,1,,680.0,790.0,43,2.0,0.0,4.0,3.0,2.0,3,2,810.917537018711,1800.0,50269.97417030668,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0358066625198948,25134.98708515334,7,4,7,7_1,7_4,7_0_0 +5721,2,38.0,0.0,2,111,1014.0,0.0,0.0,0,47,0.0,0.0,1729.0733509792701,1014.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,105726,2,1,2,0,1,,41.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1632.02096398543,1014.0,23695.743113220065,0,1,0,1,80.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04279249632117595,23695.743113220065,6,3,6,6_1,6_3,6_0_1 +5724,2,43.0,0.0,8,111,2600.0,0.0,0.0,43,38,0.0,0.0,4433.521412767359,2600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,1,2001.0,6,105729,2,1,2,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,526.354469105778,2600.0,88010.28645820575,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029542001334522252,41909.66021819321,9,5,9,9_1,9_4,9_0_0 +5725,2,29.0,0.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,323.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,105730,1,2,0,0,2,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1214.23376107196,0.0,11526.498865602383,0,4,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02802238596178613,11526.498865602383,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +5726,2,74.0,0.0,6,111,252.0,1276.0,0.0,77,77,0.0,0.0,429.7105369297594,1528.0,0.0,2422.491165171171,70,0,0,0,0,0,0,0,0,0,,1,,4,105731,1,1,2,0,2,,285.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1245.04577466291,252.0,29988.65834161373,5,5,0,1,58.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05095259623134498,19992.43889440915,5,3,5,5_1,5_2,5_0_0 +5727,2,49.0,0.0,2,111,450.0,0.0,0.0,85,37,2109.365702073203,0.0,767.3402445174275,2450.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,2,105732,2,1,0,1,1,,0.0,,42,1.0,0.0,6.0,5.0,2.8,4,3,736.819944051623,450.0,151268.4749718916,6,1,1,2,118.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016196368744084012,54024.45534710415,10,5,10,10_0,10_4,10_0_1 +5728,2,80.0,0.0,1,111,1800.0,0.0,0.0,86,74,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,1,105733,2,2,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,803.407187184639,1800.0,56294.74105240813,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.031974567541296135,37529.82736827208,9,5,9,9_0,9_4,9_1_0 +5729,2,65.0,0.0,2,111,380.0,0.0,0.0,56,78,0.0,0.0,647.9762064813832,450.0,96.99124577775646,0.0,50,2,1,2,1,1,1,2,2,0,,2,,2,105734,2,2,0,1,1,1165.0,0.0,356.0,42,1.0,3.0,5.0,2.0,1.5,2,2,328.31799247592,380.0,22570.795051779463,1,5,2,3,79.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.019937268446577044,15047.196701186309,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +5730,2,64.0,0.0,1,112,490.0,1000.0,0.0,0,78,0.0,0.0,835.54826625231,1490.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,1,,1,105735,1,3,4,0,1,,250.0,,21,0.0,5.0,5.0,2.0,1.5,2,2,439.028780635143,490.0,27460.736029895394,0,5,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05425928854848964,18307.157353263596,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +5731,2,71.0,0.0,2,111,270.0,1200.0,0.0,86,74,0.0,0.0,460.40414671045653,1470.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,0,,1,,2,105736,2,1,2,0,1,,122.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1032.25119539732,270.0,37746.16080817749,5,5,0,1,140.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0389443580095577,25164.10720545166,7,4,7,7_1,7_2,7_0_1 +5732,2,41.0,0.0,2,111,522.0,120.0,0.0,65,43,0.0,0.0,890.114683640216,642.0,0.0,227.8204857527747,33,1,2,2,1,1,2,2,2,2,10.0,2,,2,105737,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,254.747260852712,522.0,59633.561461024176,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010765749760218563,33129.756367235655,8,4,8,8_0,8_4,8_0_1 +5733,2,43.0,0.0,6,111,600.0,624.0,0.0,0,54,0.0,0.0,1023.1203260232367,1224.0,0.0,1184.6665259144283,31,2,2,2,2,1,2,2,2,2,5.0,1,,4,105738,2,3,3,0,1,,420.0,673.0,32,1.0,0.0,3.0,3.0,1.6,1,1,284.203571339723,600.0,28336.718038760024,0,1,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.04319483993614811,17710.448774225013,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +5734,2,33.0,0.0,2,111,450.0,1110.0,0.0,56,62,0.0,0.0,767.3402445174275,1560.0,0.0,2107.339493213166,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,105739,2,2,0,0,1,,400.0,311.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1610.84836370151,450.0,30988.957334172468,1,1,2,3,70.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.050340512692233774,17216.087407873594,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +5735,0,46.0,0.0,7,111,0.0,,,11,11,0.0,397.2981831030672,,568.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,1,10.0,1,,5,105740,2,1,0,0,1,,1200.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,108.76225612112184,0.0,76265.11079632032,1,1,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0074477043836853,38132.55539816016,9,5,9,9_1,9_2,9_0_0 +5736,2,70.0,0.0,7,111,900.0,0.0,0.0,0,75,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,105741,2,1,0,0,1,,80.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,865.925584898937,900.0,18297.398680076552,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04918731977895749,18297.398680076552,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +5738,2,66.0,0.0,8,111,236.0,325.0,0.0,0,78,0.0,0.0,402.42732823580644,561.0,0.0,617.0138155804315,70,0,0,0,0,0,0,0,0,0,,2,1999.0,6,105743,2,1,0,0,1,,180.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1306.56912393194,236.0,12747.779063753818,0,5,0,1,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04400766574274179,12747.779063753818,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +5739,2,32.0,0.0,9,111,0.0,0.0,0.0,37,56,0.0,0.0,0.0,1304.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,2008.0,6,105744,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1888.48675719463,0.0,65712.0,1,1,3,4,61.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01984416849281714,31291.42857142857,8,4,8,8_1,8_3,8_0_0 +5740,2,95.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1257.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,105745,2,2,2,0,1,,278.0,,21,1.0,4.0,4.0,3.0,2.0,3,3,1702.50019472475,0.0,28150.87811006295,0,7,0,1,150.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04465224832722595,14075.439055031475,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +5741,2,37.0,0.0,2,111,550.0,1460.0,0.0,48,64,0.0,0.0,937.8602988546337,2010.0,0.0,2771.8159099920917,43,0,0,0,0,0,0,0,0,0,,1,,2,105746,2,2,5,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,329.153691109543,550.0,53337.257394090855,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037684727303258087,25398.69399718612,7,4,7,7_1,7_3,7_0_1 +5742,2,44.0,0.0,1,111,850.0,0.0,0.0,52,47,1371.087706347582,0.0,1449.420461866252,2255.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,1,105747,2,2,4,0,1,,750.0,,43,3.0,0.0,7.0,5.0,2.8,4,3,1546.14796851537,850.0,62781.66336944378,1,1,1,2,180.0,6,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03591813085184236,22422.022631944208,6,3,6,6_1,6_2,6_1_0 +5743,2,36.0,0.0,1,112,0.0,0.0,0.0,0,64,0.0,0.0,0.0,797.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105748,2,3,4,0,2,,441.0,360.0,32,1.0,0.0,4.0,2.0,1.3,1,1,872.374452607224,0.0,52815.34161499257,0,4,2,3,86.0,8,1,9,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.015090312315120149,40627.18585768659,9,5,9,9_1,9_1,9_1_0 +5744,2,59.0,0.0,1,112,600.0,0.0,0.0,21,21,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,105749,2,1,1,0,1,,500.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,844.034248874163,600.0,5429.3986764437095,1,1,0,1,75.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11050947549738672,3619.5991176291395,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +5745,2,60.0,0.0,5,400,550.0,0.0,0.0,81,62,1476.555991451242,0.0,937.8602988546337,2040.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,105750,2,1,2,0,1,,138.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1282.1615345732,550.0,30397.0,4,4,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06711188604138567,20264.666666666668,5,3,5,5_1,5_0,5_0_0 +5746,2,62.0,0.0,1,111,192.0,450.0,0.0,0,35,0.0,0.0,327.3985043274357,642.0,0.0,854.326821572905,41,0,0,0,0,0,0,0,0,3,40.0,2,,1,105751,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1116.00840133267,192.0,21421.639093702586,0,1,0,1,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02996969546502777,21421.639093702586,6,3,6,6_0,6_4,6_1_0 +5747,2,41.0,0.0,9,120,1500.0,0.0,0.0,54,37,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,3.0,1,2008.0,6,105752,2,1,1,0,1,,308.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,3,2,1266.85448669124,1500.0,49279.135422036146,1,1,1,2,131.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03165639954191272,16992.8053179435,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5748,2,68.0,0.0,2,111,658.0,1659.0,0.0,72,72,0.0,0.0,1122.0219575388162,2317.0,0.0,3149.61821553211,70,0,0,0,0,0,0,0,0,0,,1,,2,105753,2,1,1,0,1,,240.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,967.65436859565,658.0,58418.05766705396,5,5,0,1,110.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039662393659259214,38945.37177803597,9,5,9,9_1,9_3,9_0_1 +5749,1,44.0,490.0,7,111,300.0,,,0,85,0.0,0.0,,460.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,2,,5,105754,2,3,0,0,2,,700.0,464.0,31,2.0,2.0,4.0,8.0,3.6999999999999993,4,3,77.37521908149635,300.0,35062.45049633457,0,6,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013119448112963138,9476.337971982317,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5750,2,64.0,0.0,1,111,262.0,686.0,0.0,0,75,0.0,0.0,446.76254236348,948.0,0.0,1302.3737768866952,42,0,0,0,0,0,0,0,0,0,,2,,1,105755,1,2,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1774.53229053644,262.0,22682.78356168696,0,5,0,1,75.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041793812360897714,22682.78356168696,6,3,6,6_0,6_3,6_1_0 +5751,2,34.0,0.0,6,112,0.0,0.0,0.0,56,37,0.0,662.163638505112,0.0,991.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,120.0,1,,4,105756,2,1,2,0,1,,469.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1591.04394445569,0.0,70504.52181836109,1,1,1,2,130.0,10,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014055836057623181,39169.17878797838,9,5,9,9_1,9_1,9_0_0 +5752,2,39.0,0.0,5,211,100.0,,,0,42,0.0,0.0,,100.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,3,105757,2,2,0,0,2,,100.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,65.81314527786792,100.0,64308.72034642032,0,1,0,1,48.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0015549990648440325,64308.72034642032,10,5,10,10_0,10_2,10_0_0 +5753,1,40.0,377.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1682.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,1,,1,105758,1,3,4,0,1,,232.0,372.0,32,1.0,0.0,4.0,4.0,2.1,2,1,94.7418507092736,0.0,13790.949481124257,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.12196404622482028,6567.11880053536,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +5754,2,32.0,0.0,5,111,550.0,0.0,0.0,42,46,0.0,0.0,937.8602988546337,630.0,110.84713803172167,0.0,20,0,0,0,0,0,0,0,0,4,40.0,2,,3,105759,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2170.63395334297,550.0,44534.68077321212,1,1,1,2,89.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01414627856452378,24741.48931845118,7,4,7,7_0,7_3,7_0_0 +5755,2,51.0,0.0,2,111,800.0,2200.0,0.0,34,38,0.0,0.0,1364.160434697649,3000.0,0.0,4176.708905467536,12,0,0,0,0,0,0,0,0,3,30.0,1,,2,105760,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,569.254839983061,800.0,96438.69204056519,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03110784620283013,38575.47681622607,9,5,9,9_1,9_4,9_0_1 +5756,1,64.0,253.0,7,111,0.0,,,0,86,0.0,0.0,,487.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,5,105761,2,1,0,0,2,,78.0,323.0,11,0.0,3.0,2.0,1.0,1.0,1,1,139.26071710889988,0.0,10637.4639507303,0,6,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0457815887560837,10637.4639507303,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +5757,2,86.0,0.0,1,221,600.0,0.0,0.0,72,72,1898.4291318658827,0.0,1023.1203260232367,2400.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,105762,1,2,4,0,1,,280.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,2626.04139072255,600.0,22668.024210192427,5,5,0,1,100.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.10587601185465766,15112.016140128284,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +5758,2,31.0,0.0,1,111,574.0,2106.0,0.0,34,43,0.0,198.6490915515336,978.7851118955631,2830.0,0.0,3998.2495249611957,33,0,0,0,0,0,0,0,0,2,7.0,1,,1,105763,1,2,3,0,1,,475.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,730.100628327554,574.0,64890.66403674056,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043611820621802806,36050.36890930031,9,5,9,9_1,9_3,9_1_0 +5759,2,47.0,0.0,9,120,1050.0,0.0,0.0,54,21,949.2145659329414,211.89236432163582,1790.4605705406643,2238.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,105764,2,1,2,0,1,,405.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,942.240300280469,1050.0,42409.168738994194,1,1,0,1,129.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05277160733269015,16963.667495597678,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5760,2,79.0,0.0,2,111,1188.0,84.0,0.0,0,77,0.0,0.0,2025.7782455260087,1272.0,0.0,159.4743400269423,71,0,0,0,0,0,0,0,0,0,,2,,2,105765,2,1,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1390.33070462223,1188.0,22798.10167379519,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05579411909817361,22798.10167379519,6,3,6,6_0,6_4,6_0_1 +5761,2,31.0,0.0,9,112,2000.0,0.0,0.0,43,47,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,105766,2,1,1,0,1,,160.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,219.943178044531,2000.0,41619.808992131155,1,1,1,2,180.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04805404081451046,23122.11610673953,6,3,6,6_1,6_0,6_0_0 +5762,1,43.0,50.0,9,111,428.0,0.0,0.0,68,63,0.0,198.6490915515336,729.8258325632422,578.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2008.0,6,105767,2,1,0,0,1,,288.0,665.0,43,2.0,0.0,3.0,4.0,2.3,3,2,2523.23025476847,428.0,35506.68398091511,1,1,2,3,49.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01627862518253396,15437.688687354399,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +5763,2,29.0,0.0,7,111,1100.0,,,0,54,0.0,0.0,,1330.0,318.68552184119983,,31,0,0,0,0,0,0,0,0,0,,1,,5,105768,2,2,0,0,2,,890.0,,32,3.0,1.0,5.0,5.0,2.5999999999999996,3,3,108.82649689007262,1100.0,7139.198278275593,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18629542816413402,2745.8454916444593,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5764,2,42.0,0.0,7,111,1200.0,0.0,0.0,54,46,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,5,105769,2,1,0,0,1,,0.0,1000.0,43,2.0,0.0,3.0,4.0,2.1,2,2,853.583597456691,1200.0,44413.5875241124,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027018758602837766,21149.327392434476,5,3,5,5_0,5_4,5_0_0 +5765,2,79.0,0.0,2,111,300.0,300.0,0.0,0,75,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,10,2,1,2,2,1,2,2,2,0,,2,,2,105770,2,2,0,1,1,1170.0,0.0,312.0,11,0.0,3.0,3.0,1.0,1.0,1,1,263.807968811051,300.0,19959.698820122598,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.030060573829656347,19959.698820122598,5,3,5,5_0,5_4,5_0_1 +5766,2,63.0,0.0,1,111,550.0,900.0,0.0,0,74,0.0,0.0,937.8602988546337,1450.0,0.0,1708.65364314581,42,0,0,0,0,0,0,0,0,0,,8,,1,105771,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,891.803245259116,550.0,33224.94317555962,0,5,0,1,46.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0436419106072881,33224.94317555962,8,4,8,8_0,8_4,8_1_0 +5767,2,88.0,0.0,2,111,215.0,0.0,0.0,0,75,0.0,0.0,366.61811682499314,215.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,105772,1,1,0,1,2,855.0,0.0,504.0,11,0.0,5.0,3.0,1.0,1.0,1,1,1642.40095853865,215.0,29214.818792039343,0,5,2,3,50.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0073592789169921085,29214.818792039343,8,4,8,8_0,8_2,8_0_1 +5768,1,54.0,288.0,5,111,564.0,0.0,0.0,0,78,0.0,370.8116375628627,961.7331064618425,844.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,105773,1,2,0,1,1,383.0,0.0,263.0,11,0.0,5.0,3.0,1.0,1.0,1,1,350.058072676932,564.0,8934.234634323875,0,7,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0944680808759476,8934.234634323875,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5769,2,44.0,0.0,1,111,420.0,0.0,0.0,0,64,0.0,0.0,716.1842282162656,420.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,105774,2,1,1,0,1,,582.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,325.509883798307,420.0,8059.457587785868,0,1,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05211268815863133,8059.457587785868,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +5770,2,45.0,0.0,9,112,1800.0,0.0,0.0,0,46,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2009.0,6,105775,2,1,1,0,1,,190.0,1107.0,32,1.0,0.0,5.0,2.0,1.3,1,1,1217.85013308682,1800.0,36258.13783513448,0,1,2,3,105.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049644027726536546,27890.875257795757,7,4,7,7_1,7_1,7_0_0 +5771,2,46.0,0.0,2,112,0.0,0.0,2400.0,85,33,0.0,0.0,1512.763896995385,2400.0,0.0,2872.157154155234,10,0,0,0,0,0,0,0,0,0,,1,,2,105776,2,1,2,0,1,,0.0,,42,1.0,0.0,8.0,4.0,2.5,4,2,1847.12205641164,0.0,102036.8113002792,6,1,1,2,200.0,9,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02352092317876493,40814.724520111675,9,5,9,9_1,9_1,9_0_1 +5772,1,48.0,120.0,2,111,900.0,0.0,0.0,0,52,1582.0242765549024,0.0,1534.680489034855,2400.0,0.0,0.0,42,2,2,2,2,2,2,2,1,3,45.0,1,,2,105777,2,1,2,0,1,,250.0,,32,1.0,1.0,4.0,3.0,2.0,3,2,314.549295383551,900.0,20746.85545207161,0,1,1,2,90.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,0.1156801812951541,10373.427726035805,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +5773,2,71.0,0.0,1,211,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,750.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105778,1,2,4,0,2,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1162.83893861125,600.0,19066.56369431777,0,5,0,1,140.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039335876774875565,19066.56369431777,5,3,5,5_1,5_1,5_1_0 +5774,1,35.0,50.0,1,111,1100.0,0.0,0.0,0,52,0.0,0.0,1875.7205977092674,1170.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,105779,2,2,0,0,1,,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1185.93293723933,1100.0,15090.453122096678,0,1,2,3,66.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07753246310985785,15090.453122096678,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +5775,2,80.0,0.0,2,111,500.0,0.0,0.0,77,75,0.0,0.0,852.6002716860306,500.0,0.0,0.0,70,1,2,2,1,2,2,2,2,0,,2,,2,105780,2,1,0,1,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,239.030716019449,500.0,49303.24084279998,5,5,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010141321167795356,32868.82722853332,8,4,8,8_0,8_4,8_0_1 +5776,2,77.0,0.0,1,111,840.0,,,81,22,0.0,0.0,,990.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,1,105781,1,2,0,0,2,,150.0,716.0,43,2.0,0.0,2.0,2.0,1.5,2,2,29.87259429545926,840.0,8279.02142426722,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11957934993357328,5519.347616178146,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +5777,2,52.0,0.0,2,111,900.0,0.0,0.0,55,37,3374.985123317125,0.0,1534.680489034855,4100.0,0.0,0.0,20,2,2,1,1,2,2,2,2,2,5.0,1,,2,105782,2,1,1,0,1,,400.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,1266.797511824,900.0,234198.11746207313,1,1,0,1,160.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.017506545502715104,117099.05873103657,10,5,10,10_1,10_2,10_0_1 +5778,1,32.0,387.0,5,111,400.0,144.0,0.0,0,85,0.0,0.0,682.0802173488245,544.0,0.0,273.3845829033296,50,2,2,2,1,1,2,2,2,0,,2,,3,105783,1,3,0,1,1,592.0,0.0,356.0,31,0.0,0.0,3.0,3.0,1.6,1,1,179.557478812386,400.0,18619.447880847532,0,6,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.02921676321882633,11637.154925529707,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +5779,2,79.0,0.0,2,111,1020.0,1187.0,0.0,0,78,0.0,0.0,1739.3045542395023,2207.0,0.0,2253.5243049045293,70,2,2,2,2,1,2,2,2,0,,1,,2,105784,2,1,3,0,1,,252.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,120.981839170787,1020.0,13597.87473839634,0,5,0,1,85.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.16230477500782461,13597.87473839634,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +5780,1,60.0,220.0,2,111,240.0,130.0,0.0,0,78,0.0,0.0,409.2481304092947,370.0,0.0,246.80552623217258,70,0,0,0,0,0,0,0,0,0,,2,,2,105785,2,1,0,1,1,,0.0,294.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1318.7746185079,240.0,6060.0,0,7,2,3,40.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06105610561056106,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5781,2,53.0,0.0,6,111,0.0,0.0,1084.0,0,52,0.0,0.0,683.2650268095823,1084.0,0.0,1297.2576479601141,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,105786,2,3,0,0,1,,0.0,462.0,12,1.0,2.0,5.0,1.0,1.0,1,1,1433.87373838248,0.0,11489.6,0,1,2,3,87.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09434619133825373,11489.6,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +5782,2,80.0,0.0,2,111,220.0,162.0,0.0,0,75,0.0,0.0,375.14411954185346,382.0,0.0,307.55765576624583,50,2,2,2,2,1,2,2,2,0,,2,,2,105787,2,1,0,1,1,576.0,112.0,324.0,11,0.0,3.0,4.0,1.0,1.0,1,1,417.640292609736,220.0,21461.283363949853,0,5,2,3,85.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.01779949472367875,21461.283363949853,6,3,6,6_0,6_3,6_0_1 +5783,2,39.0,0.0,7,112,1400.0,0.0,0.0,56,43,0.0,0.0,2387.2807607208856,1550.0,207.83838380947813,0.0,33,2,2,2,1,1,2,2,2,2,45.0,1,,5,105788,1,3,3,0,1,,350.0,1250.0,43,2.0,0.0,4.0,4.0,2.1,2,2,574.749862017035,1400.0,69456.0,1,1,2,3,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.022316286569914766,33074.28571428571,8,4,8,8_1,8_1,8_0_0 +5784,2,55.0,0.0,6,112,967.0,0.0,0.0,68,62,0.0,0.0,1648.9289254407831,992.0,34.63973063491302,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,105789,1,1,3,0,1,,221.0,286.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2183.02799327659,967.0,19643.191477802866,1,1,2,3,50.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05050095862075043,13095.460985201911,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5785,2,38.0,0.0,1,112,752.0,1347.0,0.0,0,38,0.0,0.0,1282.31080861579,2099.0,0.0,2557.2849525748957,42,0,0,0,0,0,0,0,0,0,,1,,1,105790,2,2,3,0,1,,424.0,,22,1.0,3.0,6.0,3.0,2.0,3,3,2936.72149937715,752.0,33539.861327816754,0,1,0,1,140.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06258225040003862,16769.930663908377,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +5786,2,63.0,0.0,2,111,0.0,0.0,650.0,0,78,0.0,0.0,409.70688876958343,650.0,0.0,777.8758959170425,50,0,0,0,0,0,0,0,0,0,,2,,2,105791,1,2,0,1,1,1100.0,0.0,460.0,11,0.0,3.0,5.0,1.0,1.0,1,1,1087.33468721192,0.0,30066.45488698331,0,5,2,3,83.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0216187775527006,30066.45488698331,8,4,8,8_0,8_2,8_0_1 +5787,2,82.0,0.0,2,111,360.0,2020.0,0.0,0,75,0.0,0.0,613.872195613942,2380.0,0.0,3834.9781768383737,33,0,0,0,0,0,0,0,0,0,,1,,2,105792,2,2,2,0,1,,250.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,674.107072185755,360.0,38867.09349463079,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06123431895746925,38867.09349463079,9,5,9,9_1,9_4,9_0_1 +5788,2,54.0,0.0,5,111,1400.0,0.0,0.0,53,52,0.0,66.2163638505112,2387.2807607208856,1510.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,105793,2,1,1,0,1,,298.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1021.95854682025,1400.0,36993.57670433717,1,1,0,1,100.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04081789690324715,24662.38446955811,7,4,7,7_1,7_2,7_0_0 +5789,2,28.0,0.0,2,111,0.0,0.0,1040.0,63,31,0.0,0.0,655.5310220313336,1040.0,0.0,1244.6014334672682,10,2,2,1,2,1,2,2,1,2,20.0,2,,2,105794,2,3,0,0,1,,95.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1598.95027250169,0.0,38065.69860965049,4,1,1,2,50.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.027321185161076674,25377.132406433662,7,4,7,7_0,7_2,7_0_1 +5790,2,84.0,0.0,2,111,360.0,,,78,78,0.0,0.0,,636.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,105795,2,2,0,0,2,,240.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,90.57908110587749,360.0,16094.678028869947,5,5,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039516167944408105,10729.785352579964,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +5791,2,67.0,0.0,2,111,384.0,0.0,0.0,74,38,0.0,0.0,654.7970086548714,384.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,105796,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,876.205106498856,384.0,94244.1376737496,5,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004074523991394722,62829.425115833066,10,5,10,10_0,10_4,10_0_1 +5792,2,27.0,0.0,1,112,400.0,0.0,0.0,52,63,0.0,0.0,682.0802173488245,442.0,58.19474746665388,0.0,50,0,0,0,0,0,0,0,0,2,13.0,2,,1,105797,1,2,0,0,1,,250.0,280.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1912.54534407366,400.0,27533.351959598906,1,1,2,3,55.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016053257905124272,18355.567973065936,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +5793,2,71.0,0.0,2,112,2437.0,0.0,0.0,0,75,0.0,0.0,4155.573724197713,2437.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,105798,2,1,2,0,1,,112.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,875.425343869638,2437.0,22615.788959901438,0,5,0,1,100.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10775657680220149,22615.788959901438,6,3,6,6_1,6_1,6_0_1 +5794,2,77.0,0.0,1,111,220.0,1224.0,0.0,0,78,0.0,0.0,375.14411954185346,1444.0,0.0,2323.7689546783017,70,2,2,2,2,1,2,2,2,0,,1,,1,105799,2,2,3,0,2,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,434.619518241951,220.0,16006.163709716522,0,5,0,1,85.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0902152462131461,16006.163709716522,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +5795,0,66.0,0.0,7,112,1332.0,0.0,0.0,0,77,0.0,927.0290939071567,2271.3271237715853,2112.0,110.84713803172167,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,105800,2,1,2,0,1,,365.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,911.308573162627,1332.0,16111.784612752617,0,5,0,1,70.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13108417538851244,16111.784612752617,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +5796,1,24.0,214.0,1,111,900.0,0.0,0.0,42,42,0.0,0.0,1534.680489034855,900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,105801,2,1,0,0,1,,0.0,440.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1918.17999010294,900.0,34701.66104143606,1,1,2,3,55.0,8,6,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.02593535793359692,23134.440694290708,6,3,6,6_0,6_2,6_1_0 +5797,2,53.0,0.0,7,112,750.0,0.0,0.0,43,43,0.0,529.7309108040896,1278.9004075290459,1214.0,88.67771042537734,0.0,10,0,0,0,0,0,0,0,0,2,1.0,1,,5,105802,2,2,1,0,1,,156.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,1054.84007311993,750.0,57273.84739224419,1,1,0,1,140.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0211964108450028,38182.56492816279,9,5,9,9_1,9_0,9_0_0 +5798,2,63.0,0.0,5,111,140.0,0.0,0.0,0,77,0.0,0.0,238.72807607208856,160.0,27.711784507930417,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,105803,2,2,0,1,1,504.0,45.0,306.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1022.96099084221,140.0,19988.777935072856,0,5,2,3,70.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008004491346079723,19988.777935072856,5,3,5,5_0,5_1,5_0_0 +5799,2,43.0,0.0,2,111,1132.0,1456.0,0.0,85,63,0.0,0.0,1930.2870150971733,2588.0,0.0,2764.221893800333,71,2,1,2,2,1,2,2,2,0,,2,,2,105804,2,1,0,1,1,359.0,482.0,432.0,42,1.0,0.0,3.0,5.0,2.8,4,2,706.446291345923,1132.0,42125.62248034016,6,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06143529395222132,15044.865171550056,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +5800,2,100.0,0.0,7,111,360.0,,,0,78,0.0,0.0,,404.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,5,105805,2,2,0,0,2,,0.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,106.09437650688845,360.0,12683.0,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03185366238271702,12683.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +5801,2,54.0,0.0,7,120,300.0,,,0,34,0.0,0.0,,300.0,0.0,,10,0,0,0,0,0,0,0,0,3,90.0,2,,5,105806,2,1,0,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,134.51356793841393,300.0,55076.85917212115,0,1,1,2,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0054469336942847,55076.85917212115,10,5,10,10_0,10_1,10_0_0 +5802,1,51.0,34.0,9,112,1200.0,360.0,0.0,0,56,0.0,0.0,2046.2406520464733,1560.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105807,2,1,1,0,1,,676.0,514.0,32,1.0,1.0,4.0,2.0,1.5,2,1,831.983498464797,1200.0,22631.64734605282,0,1,2,3,78.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06893002423317095,15087.764897368548,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +5803,2,59.0,0.0,7,112,1370.0,0.0,0.0,56,77,0.0,0.0,2336.124744419724,1414.0,60.965925917446924,0.0,50,0,0,0,0,0,0,0,0,0,,7,,5,105808,2,2,0,0,1,,150.0,,42,1.0,4.0,2.0,2.0,1.5,2,2,2487.29286469686,1370.0,23638.18829772319,4,7,0,1,30.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05981845910484583,15758.792198482128,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5804,2,75.0,0.0,1,111,470.0,0.0,0.0,74,74,3269.516838213465,0.0,801.4442553848687,3570.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,105809,2,2,1,0,1,,400.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,790.087375621406,470.0,122402.3448330134,5,5,0,1,120.0,7,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029166107927673685,81601.56322200893,10,5,10,10_1,10_2,10_1_0 +5805,2,38.0,0.0,1,112,0.0,0.0,0.0,43,53,0.0,0.0,0.0,4140.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,105810,2,2,1,0,1,,530.0,870.0,43,3.0,2.0,4.0,4.0,2.3,3,3,1662.04536365937,0.0,48467.10361270325,1,1,2,3,95.0,9,4,8,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08541876224092962,21072.653744653588,5,3,5,5_1,5_2,5_1_0 +5807,1,59.0,270.0,5,111,180.0,0.0,0.0,0,77,0.0,0.0,306.936097806971,180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,105812,1,2,0,1,2,,0.0,282.0,11,0.0,2.0,2.0,1.0,1.0,1,1,296.234011357034,180.0,11126.246102377707,0,7,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01617796320014291,11126.246102377707,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +5808,2,47.0,0.0,2,111,180.0,0.0,0.0,0,62,0.0,0.0,306.936097806971,230.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,105813,2,2,0,1,1,384.0,0.0,198.0,12,1.0,0.0,1.0,1.0,1.0,1,1,455.527290455942,180.0,17191.833225513245,0,1,2,3,30.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013378445275904169,17191.833225513245,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +5809,2,21.0,0.0,9,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,271.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,105814,2,1,0,0,1,,165.0,322.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1970.14673751841,0.0,17695.057252249873,1,1,2,3,30.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01531501119983905,11796.704834833248,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +5810,2,76.0,0.0,6,111,1200.0,0.0,0.0,77,75,0.0,331.081819252556,2046.2406520464733,1450.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,105815,1,1,2,0,1,,300.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,596.095868451312,1200.0,38788.82570227678,5,5,0,1,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03738189990925375,25859.217134851187,7,4,7,7_1,7_4,7_0_0 +5811,2,61.0,0.0,1,300,818.4,0.0,0.0,11,11,0.0,132.4327277010224,1395.5361246956948,1268.0,484.95622888878233,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105816,2,1,1,0,1,,0.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1118.14843659543,818.4,18719.071454059995,1,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06773840268262785,12479.38096937333,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +5812,2,64.0,0.0,6,112,600.0,0.0,0.0,0,54,0.0,0.0,1023.1203260232367,1952.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,1,,4,105817,2,1,2,0,1,,400.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1499.12491848976,600.0,14641.255137781718,0,1,0,1,146.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1333219031859413,14641.255137781718,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +5813,2,70.0,0.0,2,111,900.0,,,77,78,0.0,0.0,,1080.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,2,105818,2,1,0,0,2,,900.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,85.24123833721185,900.0,26880.52748136794,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0401777829973238,17920.351654245293,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +5814,1,69.0,237.0,5,111,480.0,1500.0,0.0,0,78,0.0,0.0,818.4962608185893,1980.0,0.0,2847.7560719096837,70,2,2,2,1,1,2,2,2,0,,1,,3,105819,1,3,4,0,1,,380.0,392.0,11,0.0,2.0,3.0,1.0,1.0,1,1,410.043611101064,480.0,16845.762107656676,0,5,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,1,1,0,1,0.11753697976656441,16845.762107656676,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +5815,2,55.0,0.0,7,221,650.0,850.0,0.0,22,46,0.0,0.0,1108.3803531918397,1500.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,105820,2,1,2,0,1,,350.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1746.05150864295,650.0,64466.263727472964,1,1,1,2,100.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02326798410934989,42977.50915164864,9,5,9,9_1,9_1,9_0_0 +5816,2,67.0,0.0,6,111,700.0,700.0,0.0,86,75,0.0,0.0,1193.6403803604428,1400.0,0.0,1328.9528335578523,42,0,0,0,0,0,0,0,0,0,,1,,4,105821,2,1,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1462.10820871378,700.0,26767.461514824226,6,5,0,1,95.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05230230738259057,17844.974343216152,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5817,2,74.0,0.0,2,111,300.0,400.0,0.0,0,75,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,20,0,0,0,0,0,0,0,0,0,,2,,2,105822,2,2,0,0,1,,80.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1677.98394325928,300.0,26951.070677621516,0,5,0,1,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02597299411118521,26951.070677621516,7,4,7,7_0,7_3,7_0_1 +5818,2,42.0,0.0,9,111,540.0,,,0,46,0.0,0.0,,563.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,105823,2,1,0,0,2,,660.0,515.0,32,1.0,0.0,3.0,3.0,1.8,2,1,98.34094131227987,540.0,37574.10070532076,0,1,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014983725210495197,20874.500391844864,5,3,5,5_0,5_2,5_0_0 +5819,1,20.0,244.0,7,111,0.0,0.0,0.0,84,54,0.0,0.0,0.0,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,5,105824,1,1,0,1,1,,0.0,,42,1.0,0.0,1.0,2.0,1.5,2,2,799.102937265593,0.0,4896.820652726059,3,1,2,3,45.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05105353406415345,3264.5471018173725,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5820,2,32.0,0.0,9,112,0.0,0.0,0.0,43,45,0.0,0.0,0.0,2374.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,105825,2,1,1,0,1,,392.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1413.0543898695,0.0,44042.48949360651,1,1,1,2,107.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053902493417058654,24468.04971867028,7,4,7,7_1,7_0,7_0_0 +5821,2,30.0,0.0,9,111,330.0,450.0,0.0,34,38,0.0,0.0,562.7161793127802,780.0,0.0,854.326821572905,12,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,105826,2,1,0,0,1,,345.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1709.67594624386,330.0,65296.360240287446,1,1,0,1,77.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011945535664310197,43530.9068268583,10,5,10,10_0,10_3,10_0_0 +5822,2,46.0,0.0,2,111,450.0,0.0,0.0,52,48,0.0,0.0,767.3402445174275,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,105827,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,828.429507889623,450.0,53218.22413400947,1,1,1,2,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008455750024030291,35478.81608933965,9,5,9,9_0,9_4,9_0_1 +5823,2,63.0,0.0,1,112,344.0,1650.0,0.0,74,74,0.0,0.0,586.588986919989,1994.0,0.0,3132.5316791006517,20,0,0,0,0,0,0,0,0,0,,1,,1,105828,2,2,1,0,1,,754.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,604.440376849048,344.0,71719.6159075635,5,5,0,1,120.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027802714428504273,47813.07727170899,10,5,10,10_1,10_2,10_1_0 +5824,2,50.0,0.0,7,111,600.0,1450.0,0.0,34,46,0.0,0.0,1023.1203260232367,2050.0,0.0,2752.830869512694,50,0,0,0,0,0,0,0,0,2,3.0,1,,5,105829,2,2,2,0,1,,500.0,,43,3.0,0.0,7.0,4.0,2.5,4,4,352.443329440328,600.0,74477.97270289982,1,1,0,1,180.0,4,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027524916772072434,29791.189081159926,8,4,8,8_1,8_2,8_0_0 +5825,1,52.0,186.0,5,111,156.0,0.0,0.0,0,43,0.0,0.0,266.01128476604157,231.0,103.91919190473907,0.0,20,2,1,2,2,2,2,2,1,0,,2,,3,105830,1,3,0,1,2,480.0,0.0,300.0,12,1.0,0.0,3.0,1.0,1.0,1,1,394.812303714185,156.0,6924.848439946703,0,4,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.033358130795679605,6924.848439946703,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5826,2,77.0,0.0,6,221,1200.0,0.0,0.0,75,74,0.0,66.2163638505112,2046.2406520464733,1250.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,105831,2,2,1,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1761.23894453698,1200.0,88156.11481666412,6,5,0,1,126.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014179390761487063,58770.74321110942,10,5,10,10_1,10_1,10_0_0 +5827,2,54.0,0.0,7,211,2400.0,,,85,11,0.0,0.0,,2668.0,371.3379124062676,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,105832,2,1,0,0,1,,800.0,,42,1.0,0.0,5.0,4.0,2.5,4,3,90.91012241560881,2400.0,26619.208491104277,6,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10022837459241524,10647.683396441711,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +5828,2,69.0,0.0,2,211,780.0,0.0,0.0,78,78,0.0,1292.5434223619786,1330.0564238302077,1972.0,299.28727268564853,0.0,70,1,2,2,1,1,2,2,2,0,,2,,2,105833,2,1,0,1,1,,204.0,327.0,41,0.0,2.0,4.0,2.0,1.5,2,2,291.625837520758,780.0,16445.87814425434,7,7,2,3,60.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.11990846476561991,10963.918762836227,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +5829,1,51.0,43.0,2,111,380.0,180.0,0.0,0,68,0.0,0.0,647.9762064813832,560.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,105834,2,2,0,1,1,478.0,0.0,243.0,12,1.0,1.0,2.0,1.0,1.0,1,1,297.936988974529,380.0,15372.786030082465,0,1,2,3,46.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036428009789777574,15372.786030082465,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +5830,2,23.0,0.0,1,120,0.0,0.0,0.0,54,63,0.0,0.0,0.0,2769.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,1,105835,2,1,1,0,1,,131.0,520.0,43,2.0,0.0,4.0,2.0,1.5,2,2,2152.60633314316,0.0,28843.546006702527,4,1,2,3,127.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09600067895107463,19229.030671135017,5,3,5,5_1,5_0,5_1_0 +5831,1,24.0,146.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,351.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,2,2012.0,6,105836,2,1,0,1,1,,0.0,454.0,12,1.0,0.0,1.0,1.0,1.0,1,1,5584.15793280227,0.0,10652.0,0,1,3,4,25.0,8,6,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.032951558392790084,10652.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +5832,2,51.0,0.0,7,300,1000.0,0.0,0.0,22,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,105837,2,1,2,0,2,,140.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,736.804913741442,1000.0,67999.19009418224,1,1,0,1,140.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014706057507669585,45332.793396121495,10,5,10,10_1,10_0,10_0_0 +5833,0,28.0,0.0,6,111,360.0,,,42,42,0.0,0.0,,416.0,77.59299662220518,,20,0,0,0,0,0,0,0,0,2,20.0,2,,4,105838,2,1,0,0,1,,200.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,149.16950105247753,360.0,54329.19649020613,1,1,5,0,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007657024710000854,36219.46432680409,9,5,9,9_0,9_2,9_0_0 +5834,2,46.0,0.0,5,111,300.0,,,0,56,0.0,0.0,,420.0,166.2707070475825,,71,2,2,2,2,2,2,2,1,0,,1,,3,105839,2,3,0,0,2,,400.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,92.94890165121593,300.0,8056.072925119644,0,4,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.05213458268114702,5370.715283413097,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5835,1,43.0,24.0,6,300,1212.0,0.0,0.0,85,47,1265.6194212439218,0.0,2066.703058566938,2472.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,3,1.0,1,,4,105840,2,3,1,0,1,,400.0,,42,1.0,0.0,7.0,6.0,2.6999999999999997,2,2,739.924619112555,1212.0,32449.67243535289,6,1,1,2,200.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07617950550732938,12018.39719827885,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +5836,2,87.0,0.0,1,111,616.0,2317.0,0.0,71,71,0.0,0.0,1050.4035347171896,2933.0,0.0,4398.833879076491,70,0,0,0,0,0,0,0,0,0,,1,,1,105841,2,1,3,0,2,,555.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,656.099038112394,616.0,19279.975930905795,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1521267459311711,12853.31728727053,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +5837,2,87.0,0.0,1,111,325.0,935.0,0.0,0,75,0.0,0.0,554.1901765959199,1260.0,0.0,1775.1012848237026,41,0,0,0,0,0,0,0,0,0,,1,,1,105842,2,2,1,0,1,,1263.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1055.74114529175,325.0,41771.15324830674,0,5,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030164357505525086,41771.15324830674,9,5,9,9_1,9_3,9_1_0 +5838,2,54.0,0.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,318.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,105843,1,2,0,3,1,,0.0,164.0,22,1.0,0.0,3.0,2.0,1.5,2,2,1730.89210065044,0.0,26643.90750594671,0,1,2,3,62.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011935186305875927,17762.605003964472,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +5839,2,32.0,0.0,1,112,1200.0,0.0,0.0,42,46,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,105844,2,2,3,0,1,,200.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,986.605571212801,1200.0,45180.28857831659,1,1,1,2,60.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027888268084341382,25100.160321286996,7,4,7,7_1,7_0,7_1_0 +5840,2,48.0,0.0,1,112,500.0,0.0,0.0,34,42,1054.6828510366015,198.6490915515336,852.6002716860306,1712.0,85.9065319745843,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,105845,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,2.0,1.5,2,2,1237.09477563334,500.0,53608.22968128139,1,1,0,1,250.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03193539518425445,35738.81978752092,9,5,9,9_1,9_0,9_1_0 +5841,2,34.0,0.0,6,111,240.0,1171.0,0.0,0,35,0.0,0.0,409.2481304092947,1411.0,0.0,2223.148240137493,20,0,0,0,0,0,0,0,0,2,45.0,2,,4,105846,2,2,0,0,1,,244.0,387.0,32,1.0,0.0,3.0,2.0,1.3,1,1,276.934703677895,240.0,27869.036946795102,0,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05062966483893025,21437.720728303924,6,3,6,6_0,6_2,6_0_0 +5842,2,42.0,0.0,1,112,2300.0,0.0,0.0,54,22,0.0,529.7309108040896,3921.9612497557405,2700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,105847,2,1,1,0,1,,275.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1393.22655239431,2300.0,60223.44552071141,1,1,1,2,150.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04483303764264774,28677.831200338765,8,4,8,8_1,8_0,8_1_0 +5843,1,43.0,270.0,2,211,330.0,550.0,0.0,0,62,0.0,0.0,562.7161793127802,880.0,0.0,1044.177226366884,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,105848,2,1,0,0,1,,300.0,290.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1680.07650202303,330.0,17679.71573096631,0,1,2,3,50.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04977455595955458,17679.71573096631,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +5844,2,60.0,0.0,6,111,840.0,0.0,0.0,0,46,1493.4309170678277,264.8654554020448,1432.3684564325313,2552.0,133.01656563806603,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,4,105849,2,1,2,0,1,,420.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1661.71257551834,840.0,46206.31631593835,0,1,1,2,97.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05523054429508194,46206.31631593835,10,5,10,10_1,10_2,10_0_0 +5845,2,65.0,0.0,1,111,570.0,0.0,0.0,52,78,1265.6194212439218,0.0,971.9643097220749,1770.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,105850,2,1,1,0,1,,256.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1478.31844707514,570.0,37750.64652596028,1,5,0,1,96.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046886614214217776,25167.09768397352,7,4,7,7_1,7_2,7_1_0 +5846,2,71.0,0.0,6,111,642.0,,,71,71,0.0,0.0,,867.0,311.75757571421724,,71,0,0,0,0,0,0,0,0,0,,1,,4,105851,1,1,0,0,1,,980.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,71.56634871919583,642.0,22217.80292240525,5,5,0,1,167.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039022760397504706,14811.868614936835,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +5847,0,61.0,0.0,6,111,370.0,,,0,86,0.0,0.0,,542.0,238.3213467682016,,71,0,0,0,0,0,0,0,0,0,,1,,4,105852,1,1,0,0,2,,200.0,,21,1.0,0.0,6.0,2.0,1.5,2,2,153.27586671188865,370.0,5241.0,0,7,5,0,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10341537874451441,3494.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5848,2,87.0,0.0,2,111,230.0,0.0,0.0,0,77,0.0,0.0,392.1961249755741,230.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,105853,1,2,0,1,2,,0.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,443.872700148275,230.0,37398.73852620383,0,5,0,1,89.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006149940053161098,37398.73852620383,9,5,9,9_0,9_3,9_0_1 +5849,2,81.0,0.0,5,221,450.0,,,0,78,0.0,0.0,,708.0,357.4820201523024,,71,0,0,0,0,0,0,0,0,0,,1,,3,105854,2,2,0,0,2,,1092.0,,11,0.0,11.0,4.0,1.0,1.0,1,1,105.92597110094013,450.0,12212.933333333334,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0579713309387862,12212.933333333334,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5850,2,31.0,0.0,2,111,380.0,0.0,0.0,43,65,0.0,0.0,647.9762064813832,1819.0,0.0,0.0,43,2,1,2,1,1,2,2,2,2,10.0,2,,2,105855,1,3,0,1,1,,350.0,648.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1473.51028868789,380.0,50860.63510798737,1,1,2,3,82.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03576439806813062,33907.09007199158,9,5,9,9_0,9_3,9_0_1 +5851,1,49.0,400.0,2,111,340.0,,,0,56,0.0,0.0,,640.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,105856,2,3,0,0,2,,408.0,500.0,32,1.0,0.0,3.0,4.0,2.1,2,1,60.51067416015491,340.0,18263.0,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03504353063571155,8696.666666666666,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +5852,2,42.0,0.0,5,111,1134.6,658.0,0.0,54,22,0.0,993.245457757668,1934.7205365099405,2543.0,0.0,1249.2156635443812,71,0,0,0,0,0,0,0,0,0,,1,,3,105857,2,1,1,0,1,,353.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,379.307841010109,1134.6,58673.08014238253,1,1,1,2,120.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0433418527513619,32596.155634656963,8,4,8,8_1,8_2,8_0_0 +5853,2,30.0,0.0,2,111,208.0,60.0,0.0,46,38,0.0,0.0,354.6817130213887,268.0,0.0,113.91024287638734,20,0,0,0,0,0,0,0,0,0,,2,,2,105858,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,904.876980582418,208.0,73189.76889467314,1,1,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0036617139806203905,48793.179263115424,10,5,10,10_0,10_4,10_0_1 +5854,2,77.0,0.0,2,112,600.0,,,0,77,0.0,0.0,,600.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,2,105859,2,1,0,0,2,,130.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,98.31566835640307,600.0,19675.185932270335,0,5,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03049526454618696,19675.185932270335,5,3,5,5_1,5_1,5_0_1 +5855,2,31.0,0.0,7,111,540.0,1000.0,0.0,56,48,0.0,0.0,920.8082934209131,1540.0,0.0,1898.504047939789,43,0,0,0,0,0,0,0,0,2,5.0,1,,5,105860,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,750.91805308106,540.0,30888.4786483431,1,1,1,2,110.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04985677726418577,14708.799356353857,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +5856,2,32.0,0.0,8,111,1050.0,0.0,0.0,0,37,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,80.0,2,1999.0,6,105861,2,1,0,0,1,,0.0,790.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1064.0272721317,1050.0,38939.7175044521,0,1,2,3,39.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02696475648237433,38939.7175044521,9,5,9,9_0,9_4,9_0_0 +5857,2,71.0,0.0,1,111,1400.0,0.0,0.0,0,77,0.0,635.6770929649075,2387.2807607208856,1940.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105862,2,1,1,0,1,,300.0,288.0,11,0.0,3.0,4.0,1.0,1.0,1,1,328.568625107026,1400.0,15330.098570866394,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12654843613900907,15330.098570866394,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +5858,2,48.0,0.0,2,112,1000.0,0.0,0.0,22,21,4746.072829664707,0.0,1705.2005433720612,5500.0,0.0,0.0,30,2,2,1,2,1,2,2,1,2,20.0,1,,2,105863,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,483.414565085489,1000.0,148467.46915699352,1,1,1,2,240.0,9,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.037045152256109055,59386.98766279741,10,5,10,10_1,10_1,10_0_1 +5859,2,25.0,0.0,1,111,500.0,0.0,0.0,0,38,0.0,0.0,852.6002716860306,500.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,60.0,2,,1,105864,2,3,0,0,2,,0.0,750.0,12,1.0,0.0,1.0,1.0,1.0,1,1,763.4353476854,500.0,24520.66199435443,0,1,3,4,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.020390966610735008,24520.66199435443,7,4,7,7_0,7_4,7_1_0 +5860,2,29.0,0.0,1,111,700.0,304.0,0.0,0,37,0.0,0.0,1193.6403803604428,1004.0,0.0,577.1452305736958,10,1,2,2,2,1,2,2,2,2,10.0,2,,1,105865,2,1,0,0,1,,0.0,890.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1744.03952193881,700.0,61735.659784228206,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01626288604526253,61735.659784228206,10,5,10,10_0,10_4,10_1_0 +5861,2,56.0,0.0,1,111,500.0,1700.0,0.0,68,65,0.0,0.0,852.6002716860306,2200.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,105866,2,2,1,0,1,,650.0,,43,2.0,0.0,10.0,5.0,2.8,4,4,290.568245966891,500.0,15004.799794210423,1,1,1,2,270.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14661975035807318,5358.857069360865,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +5862,2,39.0,0.0,1,111,495.0,1486.0,0.0,21,52,0.0,0.0,844.0742689691702,1981.0,0.0,2821.1770152385266,70,0,0,0,0,0,0,0,0,3,30.0,2,,1,105867,2,1,0,0,1,,0.0,367.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,3,947.36453221687,495.0,33147.97645726117,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.059762320712221206,10692.895631374571,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +5863,1,46.0,192.0,2,211,0.0,0.0,1200.0,0,55,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,105868,2,1,0,0,1,,440.0,337.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1136.07004649659,0.0,14995.509627255975,0,1,2,3,60.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08002395582600734,14995.509627255975,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +5864,2,77.0,0.0,2,111,720.0,,,86,78,0.0,0.0,,996.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,,2,105869,2,3,0,0,2,,480.0,273.0,41,1.0,1.0,4.0,4.0,2.5,4,3,122.7525219817204,720.0,54869.806301793156,6,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01815205970514699,21947.922520717264,6,3,6,6_0,6_2,6_0_1 +5865,2,84.0,0.0,5,112,800.0,0.0,0.0,0,78,0.0,0.0,1364.160434697649,880.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,105870,2,1,1,0,2,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1515.12958425083,800.0,16341.502455496211,0,5,0,1,75.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0538506176158867,16341.502455496211,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +5866,2,45.0,0.0,8,111,2445.0,0.0,0.0,0,52,0.0,0.0,4169.215328544689,2445.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,105871,2,1,2,0,1,,214.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,463.229407241319,2445.0,19046.821550003428,0,1,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12836787458638,19046.821550003428,5,3,5,5_1,5_3,5_0_0 +5867,2,30.0,0.0,8,112,1500.0,0.0,0.0,85,47,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105872,2,2,1,0,1,,400.0,660.0,42,1.0,0.0,5.0,3.0,1.8,2,2,224.709056135753,1500.0,8317.188857992485,6,1,2,3,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18034939756821322,4620.660476662491,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +5868,2,46.0,0.0,2,400,700.0,0.0,0.0,52,63,0.0,1589.1927324122687,1193.6403803604428,2020.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,105873,2,2,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1157.99396647162,700.0,53606.15910288078,1,1,1,2,114.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037682237149713,25526.742429943228,7,4,7,7_1,7_0,7_0_1 +5869,2,60.0,0.0,7,111,300.0,,,0,34,0.0,0.0,,404.0,144.10127944123818,,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,105874,2,1,0,0,2,,300.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,37.26136934283069,300.0,78938.7047050561,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005117894973188273,52625.80313670406,10,5,10,10_1,10_2,10_0_0 +5870,2,73.0,0.0,1,400,830.0,0.0,0.0,0,77,0.0,0.0,1415.3164509988108,875.0,62.351515142843446,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,105875,2,1,3,0,1,,380.0,330.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2661.96872329047,830.0,17595.738514895427,0,5,2,3,40.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04972794971119177,17595.738514895427,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +5871,2,61.0,0.0,5,112,490.0,1595.0,0.0,77,74,0.0,26.486545540204478,835.54826625231,2105.0,0.0,3028.1139564639634,41,0,0,0,0,0,0,0,0,0,,1,,3,105876,2,3,3,0,1,,341.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,861.260317493722,490.0,75852.49658773256,5,5,0,1,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027751228960081937,50568.33105848837,10,5,10,10_1,10_1,10_0_0 +5872,2,33.0,0.0,9,120,2000.0,0.0,0.0,43,62,0.0,0.0,3410.4010867441225,2040.0,55.423569015860835,0.0,31,2,2,1,2,2,2,2,1,2,45.0,1,2012.0,6,105877,2,1,1,0,1,,486.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,216.592787723416,2000.0,38835.15609611409,1,1,1,2,110.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.052529723195940126,21575.086720063384,6,3,6,6_1,6_0,6_0_0 +5873,2,61.0,0.0,6,111,1514.0,0.0,0.0,0,75,0.0,0.0,2581.6736226653006,1514.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,105878,2,1,0,0,1,,0.0,1260.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1219.1157762604,1514.0,74431.08652542079,1,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020340963308159106,49620.72435028053,10,5,10,10_0,10_4,10_0_0 +5874,1,83.0,209.0,2,111,523.0,90.0,0.0,0,77,0.0,0.0,891.819884183588,613.0,0.0,170.865364314581,70,0,0,0,0,0,0,0,0,0,,2,,2,105879,1,2,0,0,2,,204.0,294.0,11,0.0,0.0,3.0,1.0,1.0,1,1,646.463787878091,523.0,10230.308839316473,0,5,2,3,38.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05991998967266339,10230.308839316473,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5875,2,71.0,0.0,7,111,300.0,270.0,0.0,0,78,0.0,0.0,511.56016301161833,570.0,0.0,512.596092943743,50,0,0,0,0,0,0,0,0,0,,2,,5,105880,2,1,0,1,1,,270.0,485.0,11,0.0,2.0,1.0,1.0,1.0,1,1,1113.80723250537,300.0,25590.77889411545,0,5,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022273647955712298,25590.77889411545,7,4,7,7_0,7_4,7_0_0 +5876,2,35.0,0.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,414.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,105881,2,1,0,0,1,,278.0,400.0,12,1.0,1.0,1.0,1.0,1.0,1,1,581.637167684756,0.0,16043.583032032946,0,1,3,4,35.0,6,4,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02580470953236563,16043.583032032946,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +5877,2,62.0,0.0,5,221,0.0,0.0,1900.0,0,77,0.0,0.0,1197.6047517880133,1900.0,0.0,2273.7910803728937,71,0,0,0,0,0,0,0,0,0,,1,,3,105882,2,1,2,0,1,,217.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,562.724426718804,0.0,20326.03135923355,0,5,0,1,84.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09347619151128007,20326.03135923355,5,3,5,5_1,5_1,5_0_0 +5878,2,72.0,0.0,5,111,800.0,,,0,71,0.0,0.0,,1030.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,3,105883,2,1,0,0,2,,600.0,,21,1.0,13.0,4.0,2.0,1.5,2,2,86.8474831527283,800.0,14440.302325581397,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07132814651500241,9626.868217054265,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5879,2,52.0,0.0,8,111,480.0,,,46,56,0.0,0.0,,522.0,58.19474746665388,,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,105884,2,1,0,0,1,,56.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,138.64201627108153,480.0,44048.451019638596,4,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011850586976764997,29365.634013092396,8,4,8,8_1,8_2,8_0_0 +5881,2,52.0,0.0,7,111,800.0,,,85,22,0.0,0.0,,892.0,127.47420873647992,,31,0,0,0,0,0,0,0,0,0,,1,,5,105886,2,2,0,0,2,,300.0,200.0,42,1.0,1.0,2.0,2.0,1.5,2,2,38.96423937206759,800.0,9625.516380101755,6,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09267035292194581,6417.010920067837,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5882,1,53.0,209.0,7,111,1104.0,,,0,56,0.0,0.0,,1214.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,5,105887,1,1,0,0,2,,636.0,275.0,32,2.0,0.0,3.0,3.0,1.8,2,2,108.57252396115665,1104.0,21821.671327239234,0,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055632768993482455,12123.15073735513,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +5883,2,43.0,0.0,7,111,360.0,,,0,52,0.0,0.0,,456.0,133.01656563806603,,31,0,0,0,0,0,0,0,0,2,5.0,2,,5,105888,2,2,0,0,2,,518.0,377.0,32,1.0,0.0,3.0,3.0,1.8,2,2,83.01720064899582,360.0,27825.461280518386,0,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016387868485014556,15458.589600287993,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +5884,2,59.0,0.0,2,111,420.0,,,78,56,0.0,0.0,,552.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,3,5.0,2,,2,105889,2,3,0,0,1,,280.0,325.0,42,1.0,2.0,3.0,2.0,1.5,2,2,155.1897171658427,420.0,21123.300086902516,5,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026132280360030822,14082.200057935012,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +5885,2,55.0,0.0,1,111,1200.0,0.0,0.0,37,42,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,1,105890,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,724.003592299485,1200.0,89706.24599705027,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013376994953500324,59804.16399803351,10,5,10,10_0,10_4,10_1_0 +5886,1,51.0,114.0,2,111,564.0,349.0,0.0,85,63,0.0,0.0,961.7331064618425,913.0,0.0,662.5779127309863,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,105891,2,1,0,1,1,,0.0,278.0,42,2.0,0.0,4.0,3.0,2.0,3,3,366.90742743954,564.0,18260.64016236276,6,1,2,3,117.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049998247152462705,9130.32008118138,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +5887,1,46.0,320.0,6,111,380.0,,,54,21,0.0,0.0,,470.0,124.70303028568689,,50,0,0,0,0,0,0,0,0,0,,1,,4,105892,1,2,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,4.0,2.1,2,2,159.23569945669445,380.0,9349.29491255623,4,1,2,3,94.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05027117064932711,4452.045196455348,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +5888,2,71.0,0.0,1,221,492.0,1917.0,0.0,77,72,0.0,0.0,838.958667339054,2409.0,0.0,3639.4322599005754,60,0,0,0,0,0,0,0,0,0,,1,,1,105893,2,1,1,0,1,,335.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,465.594563575133,492.0,84224.54772576045,5,5,0,1,115.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028602112626877268,56149.6984838403,10,5,10,10_1,10_1,10_1_0 +5889,2,50.0,0.0,2,111,780.0,0.0,0.0,85,53,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,50.0,2,,2,105894,2,2,0,1,1,,1400.0,,42,1.0,2.0,5.0,4.0,2.3,3,2,1277.19488686447,780.0,57215.316046066044,6,1,1,2,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013632713299564662,24876.224367854804,7,4,7,7_0,7_2,7_0_1 +5890,1,45.0,90.0,9,111,500.0,700.0,0.0,0,52,0.0,0.0,852.6002716860306,1200.0,0.0,1328.9528335578523,31,2,2,2,2,1,2,2,2,2,20.0,1,2006.0,6,105895,1,3,1,0,1,,500.0,760.0,32,1.0,0.0,5.0,4.0,2.5,4,2,414.779123188238,500.0,35995.53119211717,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.03333747163211176,14398.212476846868,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +5891,2,70.0,0.0,7,221,1100.0,0.0,0.0,78,78,0.0,0.0,1875.7205977092674,1170.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,105896,2,1,1,0,1,,989.0,365.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1566.47738308174,1100.0,26853.681703690276,5,5,2,3,60.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04356944470073229,17902.45446912685,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +5892,2,61.0,0.0,2,111,2100.0,0.0,0.0,0,52,0.0,0.0,3580.9211410813286,2154.0,74.82181817141213,0.0,71,2,2,2,2,1,1,2,2,1,30.0,2,,2,105897,1,1,0,0,1,,120.0,396.0,12,1.0,2.0,2.0,1.0,1.0,1,1,763.793547083002,2100.0,24539.5786934157,0,1,2,3,80.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.08777656808663742,24539.5786934157,7,4,7,7_0,7_2,7_0_1 +5893,0,76.0,0.0,1,111,400.0,1250.0,0.0,0,86,0.0,23.83789098618403,682.0802173488245,1818.0,207.83838380947813,2373.130059924736,71,0,0,0,0,0,0,0,0,0,,1,,1,105898,2,2,5,0,1,,210.0,,21,1.0,10.0,8.0,2.0,1.5,2,2,409.319794828461,400.0,30058.862448100102,0,6,5,0,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06048133069370056,20039.241632066736,5,3,5,5_1,5_3,5_1_0 +5894,2,68.0,0.0,1,111,451.0,1173.0,0.0,86,74,0.0,0.0,769.0454450607996,1624.0,0.0,2226.9452482333727,10,0,0,0,0,0,0,0,0,0,,2,,1,105899,2,2,0,0,1,,241.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,386.713301271594,451.0,94792.43580458163,5,5,1,2,139.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01713216868219254,63194.95720305442,10,5,10,10_0,10_3,10_1_0 +5895,2,69.0,0.0,2,211,0.0,0.0,0.0,77,74,0.0,0.0,0.0,2573.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,105900,2,3,3,0,2,,142.0,550.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1399.210819407,0.0,35202.72713743179,5,5,2,3,70.0,3,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07309092815323605,23468.48475828786,6,3,6,6_1,6_2,6_0_1 +5896,2,76.0,0.0,2,111,414.0,1354.0,0.0,77,74,0.0,0.0,705.9530249560333,1768.0,0.0,2570.5744809104744,60,0,0,0,0,0,0,0,0,0,,1,,2,105901,2,2,2,0,1,,504.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,281.897244493477,414.0,34241.02139372874,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051633973755345106,22827.34759581916,6,3,6,6_1,6_4,6_0_1 +5897,2,52.0,0.0,2,211,0.0,,,81,53,0.0,0.0,,707.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,2,105902,2,2,0,0,2,,131.0,180.0,43,2.0,2.0,4.0,2.0,1.5,2,2,93.44721156807083,0.0,74277.13281021948,4,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009518407257404621,49518.088540146324,10,5,10,10_1,10_2,10_0_1 +5898,1,59.0,250.0,2,111,230.0,178.0,0.0,0,77,0.0,0.0,392.1961249755741,408.0,0.0,337.93372053328244,70,2,2,2,2,2,2,2,1,0,,2,,2,105903,1,3,0,1,1,492.0,120.0,300.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2408.62244652176,230.0,10387.6675955523,0,7,2,3,31.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.039277344624956405,10387.6675955523,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +5899,1,55.0,150.0,2,111,590.0,0.0,0.0,0,65,0.0,0.0,1006.0683205895161,590.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,105904,2,2,0,1,1,686.0,0.0,311.0,32,1.0,1.0,4.0,2.0,1.5,2,1,308.711837974916,590.0,19877.011946698178,0,1,2,3,58.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029682529828031143,13251.341297798785,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5900,2,67.0,0.0,2,111,247.0,0.0,0.0,0,75,442.96679743537265,0.0,421.1845342128991,667.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,105905,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1019.53767656962,247.0,29420.41856962496,0,5,0,1,51.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022671329383758074,29420.41856962496,8,4,8,8_0,8_4,8_0_1 +5902,2,38.0,0.0,9,111,520.0,0.0,0.0,0,54,0.0,0.0,886.7042825534718,550.0,41.567676761895626,0.0,31,2,2,2,2,1,2,2,2,1,15.0,2,2007.0,6,105907,2,1,0,0,1,,300.0,405.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1638.09288922171,520.0,22154.0,0,1,2,3,37.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.024826216484607744,22154.0,6,3,6,6_0,6_3,6_0_0 +5903,1,30.0,312.0,2,111,330.0,,,0,81,0.0,0.0,,462.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,2,105908,2,2,0,0,2,,703.0,387.0,32,1.0,0.0,3.0,3.0,1.6,1,1,97.39674155358506,330.0,11797.0,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03916249894040858,7373.125,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5904,2,93.0,0.0,2,111,565.0,705.0,0.0,86,74,0.0,0.0,963.4383070052146,1270.0,0.0,1338.4453537975512,10,0,0,0,0,0,0,0,0,0,,2,,2,105909,2,1,0,0,1,,833.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1754.56165664243,565.0,41603.560092238,6,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03052623374500454,27735.706728158668,7,4,7,7_0,7_3,7_0_1 +5905,2,62.0,0.0,2,112,461.0,1600.0,0.0,74,74,0.0,0.0,786.0974504945202,2061.0,0.0,3037.6064767036623,10,0,0,0,0,0,0,0,0,0,,1,,2,105910,2,2,2,0,1,,300.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,938.78209836068,461.0,76609.24722270937,5,5,0,1,200.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026902757496213268,51072.83148180624,10,5,10,10_1,10_1,10_0_1 +5906,2,42.0,0.0,1,120,830.0,0.0,0.0,43,43,0.0,529.7309108040896,1415.3164509988108,1350.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,2,4.0,1,,1,105911,1,3,1,0,1,,347.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1801.93960932953,830.0,60716.318870790274,1,1,0,1,170.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022234549542980694,25298.466196162615,7,4,7,7_1,7_0,7_1_0 +5907,2,61.0,0.0,6,111,1080.0,,,0,22,0.0,0.0,,1168.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,4,105912,1,1,0,0,2,,1200.0,,32,3.0,1.0,8.0,3.0,2.0,3,3,106.50431822872041,1080.0,54731.82698552292,0,4,0,1,270.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021340416798236003,27365.91349276146,7,4,7,7_1,7_2,7_0_0 +5908,2,68.0,0.0,6,111,1080.0,0.0,0.0,0,75,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,105913,2,1,0,0,1,,0.0,523.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1091.64479182551,1080.0,24941.44782788876,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04330141567773693,24941.44782788876,7,4,7,7_0,7_4,7_0_0 +5909,2,52.0,0.0,7,112,480.0,0.0,0.0,56,47,1740.2267042103924,0.0,818.4962608185893,2230.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,105914,2,1,1,0,1,,500.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,937.073434261653,480.0,41898.72296536875,1,1,1,2,80.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05322357919698888,20949.361482684373,5,3,5,5_1,5_0,5_0_0 +5911,1,48.0,415.0,2,111,500.0,120.0,0.0,52,63,0.0,0.0,852.6002716860306,620.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,105916,2,2,0,1,1,600.0,0.0,373.0,43,3.0,0.0,6.0,5.0,2.8,5,3,293.189293473436,500.0,34651.70281259655,4,1,2,3,153.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0178923386060733,12375.608147355912,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +5912,2,78.0,0.0,1,111,200.0,800.0,0.0,77,75,0.0,0.0,341.04010867441224,1000.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,0,,1,,1,105917,2,1,1,0,1,,300.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,252.488352538408,200.0,43293.52709956612,5,5,0,1,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023098141153993015,28862.351399710748,8,4,8,8_1,8_3,8_1_0 +5913,2,55.0,0.0,6,120,360.0,0.0,0.0,67,62,2109.365702073203,0.0,613.872195613942,2360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,105918,2,2,2,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1623.38536821279,360.0,41474.63805491746,1,1,1,2,102.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05690224461694092,27649.758703278305,7,4,7,7_1,7_0,7_0_0 +5914,0,86.0,0.0,1,111,0.0,0.0,0.0,0,71,0.0,0.0,0.0,595.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,105919,2,1,0,0,1,,387.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,1815.04580550451,0.0,10681.538383087089,0,5,0,1,40.0,8,6,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05570358675507919,10681.538383087089,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +5915,2,87.0,0.0,7,112,0.0,,,0,78,0.0,0.0,,331.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,105920,2,1,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,94.73573173727101,0.0,9994.414019949681,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033118499927989424,9994.414019949681,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +5916,2,58.0,0.0,1,111,400.0,150.0,0.0,0,46,0.0,0.0,682.0802173488245,550.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,105921,1,2,0,1,1,600.0,0.0,235.0,12,1.0,0.0,2.0,1.0,1.0,1,1,447.287757445734,400.0,18697.365677538415,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02941590860902549,18697.365677538415,5,3,5,5_0,5_4,5_1_0 +5917,0,79.0,0.0,2,120,300.0,,,0,86,0.0,0.0,,510.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,2,105922,2,1,0,0,2,,174.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,126.98098632198418,300.0,22461.515814644084,0,5,5,0,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02270550234492628,22461.515814644084,6,3,6,6_1,6_2,6_0_1 +5918,2,53.0,0.0,7,111,1200.0,3500.0,0.0,42,42,0.0,0.0,2046.2406520464733,4700.0,0.0,6644.764167789262,20,1,2,2,1,1,2,2,2,2,45.0,1,,5,105923,2,1,1,0,1,,400.0,,43,2.0,1.0,7.0,4.0,2.1,2,2,839.640862373258,1200.0,26547.339646307784,4,1,0,1,220.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.17704222203122633,12641.590307765611,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +5919,2,61.0,0.0,2,111,703.0,144.0,0.0,0,77,0.0,0.0,1198.755981990559,907.0,0.0,273.3845829033296,60,2,2,2,1,2,2,2,2,0,,2,,2,105924,2,3,0,1,1,,0.0,,31,0.0,0.0,3.0,2.0,1.5,2,2,244.756718805873,703.0,25833.733845030187,0,5,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03510913309863978,17222.489230020125,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +5920,2,74.0,0.0,1,112,360.0,1572.0,0.0,0,78,0.0,519.1362925880078,613.872195613942,2324.0,0.0,2984.448363361348,50,0,0,0,0,0,0,0,0,0,,1,,1,105925,2,1,2,0,1,,150.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1698.90080902217,360.0,21444.05570564228,0,5,0,1,90.0,10,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10837502158644914,21444.05570564228,6,3,6,6_1,6_1,6_1_0 +5921,2,54.0,0.0,9,111,1500.0,,,0,67,0.0,0.0,,1615.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,105926,2,2,0,0,1,,1000.0,,32,1.0,1.0,4.0,2.0,1.5,2,1,96.25616428351259,1500.0,28833.96933584887,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05601032522400907,19222.646223899246,5,3,5,5_1,5_3,5_0_0 +5922,2,31.0,0.0,9,211,0.0,0.0,0.0,52,69,0.0,0.0,0.0,1681.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2010.0,6,105927,2,1,1,0,1,,915.0,760.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1796.47032920558,0.0,35221.99063300917,4,1,2,3,80.0,2,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047725865852244274,19567.77257389398,5,3,5,5_1,5_1,5_0_0 +5923,2,45.0,0.0,9,400,0.0,,,81,53,0.0,0.0,,89.0,123.31744106029036,,41,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,105928,2,2,0,0,2,,260.0,500.0,43,2.0,0.0,2.0,2.0,1.5,2,2,50.17968712931973,0.0,34506.07279612262,4,1,2,3,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0025792561363285815,23004.048530748416,6,3,6,6_0,6_1,6_0_0 +5924,2,59.0,0.0,1,111,0.0,0.0,0.0,37,47,0.0,0.0,0.0,725.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,105929,2,1,1,0,1,,924.0,1000.0,43,2.0,2.0,4.0,3.0,1.8,2,2,522.092883109773,0.0,49356.93183403865,1,1,2,3,100.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014688919530853191,27420.51768557703,7,4,7,7_1,7_3,7_1_0 +5925,1,43.0,63.0,9,111,0.0,0.0,0.0,46,68,0.0,0.0,0.0,2439.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,1,2012.0,6,105930,2,1,1,0,1,,669.0,,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,255.527947420902,0.0,42681.971940516574,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05714356411177757,15808.13775574688,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +5926,0,24.0,0.0,5,111,1415.0,0.0,0.0,43,63,0.0,79.45963662061344,2412.8587688714665,1475.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,105931,1,1,3,0,2,,347.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1320.32679848114,1415.0,42385.628471565054,1,1,5,0,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0347995311899061,23547.571373091698,6,3,6,6_1,6_3,6_0_0 +5927,2,51.0,0.0,7,211,640.0,,,0,56,0.0,0.0,,686.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,0,,1,,5,105932,2,1,0,0,2,,360.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,61.30925591776677,640.0,33424.05573703862,0,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020524140020500688,33424.05573703862,8,4,8,8_1,8_2,8_0_0 +5928,2,27.0,0.0,6,111,1200.0,,,0,43,0.0,0.0,,1212.0,16.627070704758253,,43,0,0,0,0,0,0,0,0,0,,1,,4,105933,2,3,0,0,2,,700.0,,22,1.0,2.0,6.0,3.0,2.0,3,3,144.09422152729448,1200.0,36587.17056682083,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03312636591524531,18293.585283410415,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5929,2,53.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,652.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,105934,1,2,0,0,1,,0.0,,22,1.0,2.0,3.0,2.0,1.5,2,2,886.775264091757,0.0,45566.17494974579,0,1,0,1,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01430885960296383,30377.449966497195,8,4,8,8_0,8_4,8_0_1 +5930,2,57.0,0.0,9,111,900.0,0.0,0.0,46,62,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,105935,2,2,1,0,1,,180.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1485.31276295868,900.0,49986.53187538629,1,1,1,2,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018004849831223562,33324.35458359086,8,4,8,8_1,8_3,8_0_0 +5931,1,23.0,380.0,2,111,480.0,360.0,0.0,0,55,0.0,0.0,818.4962608185893,840.0,0.0,683.461457258324,41,0,0,0,0,0,0,0,0,0,,2,,2,105936,2,3,0,1,1,804.0,0.0,735.0,22,2.0,1.0,3.0,3.0,2.0,3,3,1124.94729815231,480.0,13370.815604823785,0,4,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06282339274030176,6685.407802411893,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +5932,1,82.0,71.0,2,111,158.0,150.0,0.0,0,86,0.0,0.0,269.4216858527857,308.0,0.0,284.77560719096834,71,1,2,2,1,2,2,2,2,0,,2,,2,105937,2,2,0,1,1,575.0,0.0,278.0,11,0.0,4.0,3.0,1.0,1.0,1,1,264.24529189766,158.0,11840.784929451267,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.026011789069314135,11840.784929451267,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +5933,1,47.0,268.0,2,111,0.0,0.0,0.0,56,62,0.0,0.0,0.0,465.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,105938,1,2,0,1,1,736.0,0.0,272.0,43,2.0,1.0,3.0,4.0,2.3,3,2,300.815976556831,0.0,24840.640669898887,4,1,2,3,60.0,5,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018719323957029518,10800.278552129952,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5934,1,56.0,75.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,391.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,8.0,2,,2,105939,2,2,0,1,1,436.0,189.0,313.0,22,2.0,2.0,4.0,2.0,1.5,2,2,1702.61568718459,0.0,19289.867440524056,0,1,2,3,54.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020269709017211243,12859.911627016038,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +5935,2,48.0,0.0,1,111,60.0,0.0,0.0,0,37,0.0,0.0,102.31203260232367,60.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,15.0,2,,1,105940,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1904.87429078732,60.0,78046.6411353754,0,1,0,1,95.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0007687710723633489,78046.6411353754,10,5,10,10_0,10_3,10_1_0 +5936,1,37.0,300.0,7,120,420.0,980.0,0.0,0,63,0.0,0.0,716.1842282162656,1464.0,88.67771042537734,1860.5339669809932,43,0,0,0,0,0,0,0,0,1,5.0,2,,5,105941,2,1,0,0,1,,380.0,540.0,32,1.0,0.0,3.0,3.0,1.6,1,1,916.198895967364,420.0,23501.54734757008,0,1,2,3,90.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0622937706334204,14688.467092231298,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +5937,2,67.0,0.0,1,111,310.0,350.0,0.0,0,77,0.0,0.0,528.612168445339,660.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,0,,2,,1,105942,2,1,0,0,1,,247.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1758.92601245248,310.0,26623.7745439634,0,5,0,1,58.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.024789873385915016,26623.7745439634,7,4,7,7_0,7_3,7_1_0 +5938,2,75.0,0.0,2,111,441.0,199.0,0.0,78,77,0.0,0.0,751.9934396270789,640.0,0.0,377.802305540018,70,2,2,2,2,1,2,2,2,0,,2,,2,105943,1,3,0,1,2,184.0,0.0,708.0,41,0.0,7.0,3.0,2.0,1.5,2,2,2064.60505887212,441.0,42705.630470904674,5,5,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.014986314285560815,28470.42031393645,8,4,8,8_0,8_3,8_0_1 +5939,2,50.0,0.0,9,400,0.0,0.0,0.0,22,64,0.0,0.0,0.0,1630.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,105944,2,1,1,0,1,,251.0,421.0,43,3.0,2.0,6.0,4.0,2.3,3,2,1395.23052369493,0.0,28861.67548631504,1,1,2,3,190.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05647627771204328,12548.55455926741,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +5940,2,46.0,0.0,7,400,460.0,0.0,0.0,0,46,0.0,397.2981831030672,784.3922499511482,790.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,105945,2,1,3,0,1,,340.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1114.61046743295,460.0,25772.475513348647,0,1,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030652856749861915,25772.475513348647,7,4,7,7_1,7_0,7_0_0 +5941,2,74.0,0.0,2,221,126.0,0.0,0.0,0,74,0.0,496.622728878834,214.8552684648797,611.0,152.4148147936173,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,105946,1,2,3,0,2,,204.0,,11,0.0,1.0,8.0,1.0,1.0,1,1,2279.74529481916,126.0,60821.361175528975,0,5,0,1,135.0,1,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.010045812658428818,60821.361175528975,10,5,10,10_1,10_1,10_0_1 +5942,2,64.0,0.0,1,400,2000.0,0.0,0.0,75,47,0.0,397.2981831030672,3410.4010867441225,2300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,105947,2,2,3,0,1,,250.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,1765.56970567868,2000.0,44645.35572661107,5,1,0,1,190.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05151711667579063,29763.57048440738,8,4,8,8_1,8_0,8_1_0 +5943,2,70.0,0.0,7,112,400.0,1600.0,0.0,46,74,0.0,0.0,682.0802173488245,2000.0,0.0,3037.6064767036623,41,2,2,2,2,1,2,2,2,0,,1,,5,105948,2,3,2,0,1,,330.0,,42,1.0,5.0,5.0,2.0,1.5,2,2,838.961469222506,400.0,97337.0376280807,1,5,0,1,200.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.020547163225183476,64891.35841872046,10,5,10,10_1,10_1,10_0_0 +5944,2,68.0,0.0,2,120,660.0,0.0,0.0,77,78,1898.4291318658827,0.0,1125.4323586255605,2660.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,105949,2,1,1,0,1,,360.0,,41,2.0,3.0,6.0,4.0,2.5,4,4,771.031266920802,660.0,53230.35803460925,5,5,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049971484284785844,21292.1432138437,6,3,6,6_1,6_0,6_0_1 +5945,2,67.0,0.0,6,300,65.0,,,0,77,0.0,0.0,,131.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,4,105950,2,1,0,0,1,,80.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,71.51826536523362,65.0,27357.30901944785,0,5,0,1,90.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004788482664975356,27357.30901944785,7,4,7,7_1,7_1,7_0_0 +5946,2,40.0,0.0,1,112,460.0,0.0,0.0,0,53,0.0,79.45963662061344,784.3922499511482,550.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,105951,2,1,1,0,1,,300.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1709.47628026298,460.0,14520.69292810599,0,4,2,3,70.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037876980301362204,14520.69292810599,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5947,2,48.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,328.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,105952,1,2,0,1,2,,247.0,600.0,12,1.0,1.0,2.0,1.0,1.0,1,1,328.184621977577,0.0,31176.590260047476,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010520714332905388,31176.590260047476,8,4,8,8_0,8_4,8_0_1 +5948,1,57.0,100.0,7,111,1000.0,2000.0,0.0,56,63,0.0,410.5414558731694,1705.2005433720612,3310.0,0.0,3797.008095879578,71,2,2,2,2,1,2,2,1,3,60.0,1,,5,105953,1,1,2,0,2,,800.0,,43,4.0,1.0,7.0,11.0,5.3999999999999995,8,8,864.605485009197,1000.0,74593.31993004048,4,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,1,0.04437394666311112,13813.577764822312,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +5949,0,81.0,0.0,1,112,372.0,0.0,0.0,78,78,0.0,1456.7600047112462,634.3346021344067,1572.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,105954,2,2,2,0,1,,95.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,247.042424534119,372.0,42074.58260609215,5,5,5,0,70.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03736222447450693,28049.721737394768,8,4,8,8_1,8_0,8_1_0 +5950,2,71.0,0.0,5,111,900.0,1860.0,0.0,74,74,0.0,0.0,1534.680489034855,2760.0,0.0,3531.2175291680073,70,0,0,0,0,0,0,0,0,0,,1,,3,105955,2,1,3,0,1,,600.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,360.609066413081,900.0,72186.82292938892,5,5,0,1,158.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038234124844360486,48124.54861959261,10,5,10,10_1,10_3,10_0_0 +5951,2,54.0,0.0,9,112,1250.0,0.0,0.0,85,38,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,2007.0,6,105956,2,1,1,0,1,,396.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,3228.27034398267,1250.0,51075.42098698802,6,1,1,2,80.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024473611295704252,34050.280657992014,9,5,9,9_1,9_1,9_0_0 +5952,1,46.0,300.0,7,211,0.0,,,85,67,0.0,0.0,,449.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,105957,2,2,0,0,2,,1000.0,600.0,42,1.0,0.0,3.0,5.0,2.8,4,2,8.86637268138834,0.0,15035.826446280991,6,4,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029862010020144724,5369.938016528926,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +5954,2,53.0,0.0,6,111,1332.0,0.0,0.0,56,23,0.0,225.13563709173806,2271.3271237715853,1537.0,48.49562288887823,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,105959,2,2,2,0,1,,305.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,950.353846683667,1332.0,70517.6579207258,1,1,1,2,100.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021795959272043,35258.8289603629,9,5,9,9_1,9_3,9_0_0 +5955,2,52.0,0.0,7,111,300.0,,,77,68,0.0,0.0,,420.0,166.2707070475825,,41,0,0,0,0,0,0,0,0,0,,1,,5,105960,2,1,0,0,2,,600.0,,42,1.0,1.0,5.0,3.0,2.0,3,2,93.6440359319431,300.0,56032.51371592251,6,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007495648011248341,28016.256857961256,7,4,7,7_1,7_2,7_0_0 +5956,2,29.0,0.0,1,112,1490.0,0.0,0.0,43,62,0.0,0.0,2540.748809624371,1586.0,133.01656563806603,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,105961,2,3,4,0,1,,110.0,500.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1924.87961920128,1490.0,41580.334219514654,4,1,2,3,70.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03814303155013246,23100.18567750814,6,3,6,6_1,6_0,6_1_0 +5957,2,49.0,0.0,1,300,1200.0,0.0,0.0,85,62,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,105962,2,3,4,0,1,,300.0,280.0,42,1.0,0.0,3.0,2.0,1.5,2,2,819.973934673514,1200.0,20539.046083642625,6,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06280720120820805,13692.697389095083,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +5958,2,46.0,0.0,1,111,834.0,1797.0,0.0,22,31,0.0,0.0,1422.137253172299,2631.0,0.0,3411.611774147801,10,0,0,0,0,0,0,0,0,0,,1,,1,105963,1,1,3,0,2,,797.0,,43,2.0,0.0,8.0,5.0,2.8,4,3,1277.04693147432,834.0,102419.29789875109,1,1,0,1,255.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02568851821851908,36578.32067812539,9,5,9,9_1,9_3,9_1_0 +5959,2,31.0,0.0,1,111,0.0,0.0,0.0,46,52,0.0,0.0,0.0,1345.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,,1,105964,2,1,0,0,1,,296.0,599.0,43,2.0,0.0,2.0,2.0,1.5,2,2,431.236257105824,0.0,35842.93194582653,1,1,2,3,54.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03752483200963722,23895.287963884355,6,3,6,6_0,6_4,6_1_0 +5960,0,60.0,0.0,1,112,0.0,0.0,0.0,0,11,2109.365702073203,0.0,0.0,3040.0,177.35542085075468,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,105965,2,2,3,0,2,,240.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,809.250593173927,0.0,84236.69572157848,0,1,0,1,100.0,7,0,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03608878498805194,56157.797147718986,10,5,10,10_1,10_0,10_1_0 +5961,2,52.0,0.0,2,111,250.0,150.0,0.0,0,46,0.0,0.0,426.3001358430153,400.0,0.0,284.77560719096834,50,2,2,1,1,1,1,2,2,2,30.0,2,,2,105966,1,3,0,1,2,463.0,0.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2116.70851329729,250.0,21816.833234143476,0,1,2,3,61.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01833446658857884,21816.833234143476,6,3,6,6_0,6_2,6_0_1 +5962,2,55.0,0.0,6,112,710.0,0.0,0.0,52,63,0.0,900.5425483669522,1210.6923857941633,1600.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,105967,1,2,2,0,1,,278.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,1527.99152282413,710.0,64050.150541041,1,1,0,1,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02498042528369669,32025.0752705205,8,4,8,8_1,8_0,8_0_0 +5963,1,34.0,180.0,6,111,2000.0,0.0,0.0,85,62,0.0,0.0,3410.4010867441225,2125.0,173.19865317456512,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,105968,2,3,4,0,1,,800.0,535.0,42,1.0,0.0,4.0,5.0,2.4,2,2,124.483779519353,2000.0,37143.60758070535,6,1,2,3,45.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05721038257748163,15476.503158627229,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +5964,2,41.0,0.0,8,112,1600.0,0.0,0.0,46,47,0.0,344.3250920226582,2728.320869395298,1920.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,105969,2,1,2,0,1,,213.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,923.862803444261,1600.0,54351.9479643998,1,1,1,2,120.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035325320837766266,25881.87998304752,7,4,7,7_1,7_1,7_0_0 +5965,1,77.0,100.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,241.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105970,1,1,0,1,1,810.0,73.0,201.0,11,0.0,5.0,2.0,1.0,1.0,1,1,272.918771797413,0.0,12347.606614423963,0,5,2,3,55.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019517952549482243,12347.606614423963,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +5966,2,65.0,0.0,1,300,1700.0,0.0,0.0,0,52,316.40485531098045,0.0,2898.840923732504,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,105971,1,1,1,0,1,,300.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,799.53122852284,1700.0,31157.95740032463,0,1,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06418906009477894,31157.95740032463,8,4,8,8_1,8_0,8_1_0 +5967,2,71.0,0.0,5,111,900.0,0.0,0.0,0,75,0.0,172.1625460113291,1534.680489034855,1030.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,105972,2,1,1,0,1,,60.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1487.66625020437,900.0,26092.903988814538,0,5,0,1,80.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039474333728493335,26092.903988814538,7,4,7,7_1,7_2,7_0_0 +5968,2,81.0,0.0,2,111,800.0,1500.0,0.0,78,72,0.0,0.0,1364.160434697649,2300.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,0,,1,,2,105973,1,2,2,0,2,,700.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1154.10049527532,800.0,75433.07668906823,5,5,0,1,90.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03049060307430515,50288.71779271215,10,5,10,10_1,10_2,10_0_1 +5969,0,90.0,0.0,2,111,306.0,2063.0,0.0,0,77,0.0,0.0,521.7913662718507,2369.0,0.0,3916.6138508997847,60,1,2,2,1,1,2,2,2,0,,1,,2,105974,1,2,1,0,2,,178.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1360.22417334122,306.0,18362.24143914086,0,5,0,1,180.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.129014750614827,18362.24143914086,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +5970,2,53.0,0.0,8,111,200.0,,,81,56,0.0,0.0,,327.0,175.96983162535815,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,105975,2,1,0,0,2,,216.0,,43,4.0,3.0,3.0,4.0,2.5,4,4,81.66972340070275,200.0,12476.983603002725,4,4,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026208257572872325,4990.79344120109,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5971,1,23.0,270.0,2,111,170.0,72.0,0.0,0,54,0.0,0.0,289.8840923732504,242.0,0.0,136.6922914516648,31,0,0,0,0,0,0,0,0,0,,2,,2,105976,2,1,0,1,1,250.0,116.0,290.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1680.95538268605,170.0,7961.852668269768,0,4,2,3,36.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030394935711940307,7961.852668269768,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +5972,1,52.0,270.0,2,111,612.0,120.0,0.0,0,56,0.0,0.0,1043.5827325437015,732.0,0.0,227.8204857527747,71,2,1,2,1,1,2,2,2,0,,2,,2,105977,1,3,0,1,2,707.0,0.0,398.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1168.52337523081,612.0,18253.177904123593,0,1,2,3,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0401026059048399,18253.177904123593,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +5973,2,81.0,0.0,2,111,65.0,60.0,0.0,75,75,0.0,0.0,110.83803531918397,125.0,0.0,113.91024287638734,44,0,0,0,0,0,0,0,0,0,,1,,2,105978,2,1,1,0,1,,230.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,367.770700151514,65.0,35341.14181165743,5,5,0,1,104.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.003536954201031734,23560.76120777162,6,3,6,6_1,6_3,6_0_1 +5974,2,61.0,0.0,2,111,294.0,667.0,0.0,77,75,0.0,0.0,501.328959751386,961.0,0.0,1266.3021999758394,50,0,0,0,0,0,0,0,0,0,,1,,2,105979,2,2,3,0,1,,245.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1056.00390583996,294.0,43895.43381557578,5,5,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021892937749233506,29263.622543717185,8,4,8,8_1,8_3,8_0_1 +5975,2,52.0,0.0,5,111,600.0,,,56,65,0.0,0.0,,720.0,166.2707070475825,,70,0,0,0,0,0,0,0,0,2,60.0,2,,3,105980,2,2,0,0,2,,1200.0,479.0,43,3.0,0.0,5.0,6.0,3.3,5,4,86.53140569742423,600.0,55646.97110667827,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012938709613138168,16862.718517175235,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +5976,2,54.0,0.0,6,112,720.0,,,0,56,0.0,0.0,,852.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,105981,2,2,0,0,1,,480.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,105.83438414616009,720.0,16616.007265084645,0,4,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0512758562515987,16616.007265084645,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +5977,1,31.0,400.0,2,111,0.0,,,0,52,0.0,0.0,,872.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,105982,1,2,0,0,2,,277.0,730.0,32,1.0,0.0,1.0,3.0,1.6,1,1,47.67863265842137,0.0,21789.821148033418,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04001868551723749,13618.638217520886,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +5978,2,56.0,0.0,1,120,600.0,0.0,0.0,0,22,2109.365702073203,0.0,1023.1203260232367,2660.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,105983,2,1,3,0,1,,300.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,236.103149970643,600.0,23540.83921246548,0,1,1,2,150.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11299512205119101,23540.83921246548,6,3,6,6_1,6_0,6_1_0 +5979,2,48.0,0.0,7,300,736.0,0.0,0.0,42,37,1582.0242765549024,0.0,1255.027599921837,2236.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,70.0,1,,5,105984,2,1,2,0,1,,172.0,,43,2.0,0.0,7.0,5.0,3.0,5,4,1308.81452462595,736.0,92180.04622912768,1,1,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024256876530980232,30726.68207637589,8,4,8,8_1,8_0,8_0_0 +5980,2,69.0,0.0,2,111,420.0,700.0,0.0,0,77,0.0,0.0,716.1842282162656,1120.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,2,105985,2,1,3,0,1,,250.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,534.264188885736,420.0,21710.687857308196,0,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05158749494079196,21710.687857308196,6,3,6,6_1,6_3,6_0_1 +5981,2,43.0,0.0,1,111,431.0,1527.0,0.0,55,33,0.0,0.0,734.9414341933584,1958.0,0.0,2899.0156812040577,20,0,0,0,0,0,0,0,0,4,10.0,1,,1,105986,2,2,5,0,1,,400.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,943.019672376643,431.0,72506.58186339209,1,1,0,1,130.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02700444497147888,27887.14687053542,7,4,7,7_1,7_2,7_1_0 +5982,1,36.0,260.0,5,111,0.0,0.0,3300.0,81,63,0.0,0.0,2080.0503583686545,3300.0,0.0,3949.2160869634463,71,2,2,2,2,1,2,2,2,0,,1,,3,105987,2,3,1,0,1,,250.0,805.0,43,2.0,0.0,2.0,4.0,2.1,2,2,839.651581898794,0.0,13597.263581072964,4,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,1,0.2426958910021803,6474.887419558554,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +5983,2,38.0,0.0,7,111,600.0,,,63,68,0.0,0.0,,900.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,105988,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,56.36584781487021,600.0,23665.579010453766,4,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03802991676655974,9466.231604181507,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5984,1,58.0,270.0,5,111,600.0,,,0,68,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,105989,1,3,0,0,2,,1000.0,400.0,31,3.0,6.0,3.0,5.0,3.0,5,5,37.506444684985446,600.0,6836.364321781199,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08776594864734644,2278.7881072603996,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +5985,2,59.0,0.0,2,111,850.0,700.0,0.0,0,46,0.0,0.0,1449.420461866252,1550.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,105990,1,1,2,0,1,,370.0,342.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1263.86285443945,850.0,25526.604666307736,0,1,2,3,72.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06072096231606653,25526.604666307736,7,4,7,7_1,7_3,7_0_1 +5986,2,57.0,0.0,5,111,1340.0,0.0,0.0,54,47,0.0,0.0,2284.968728118562,1540.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,105991,2,1,2,0,1,,291.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,334.372709382502,1340.0,48439.70824180659,1,1,0,1,84.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03179209900093661,32293.138827871062,8,4,8,8_1,8_2,8_0_0 +5987,1,34.0,310.0,7,111,0.0,0.0,1150.0,0,85,0.0,0.0,724.8660339769554,1150.0,0.0,1376.241969699383,60,2,2,1,2,1,2,2,2,0,,2,,5,105992,1,2,0,0,1,,280.0,450.0,31,0.0,0.0,4.0,4.0,2.1,2,1,402.38231332937,0.0,12226.506832643316,0,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.0940579362316011,5822.146110782531,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +5988,2,60.0,0.0,9,111,540.0,,,65,45,0.0,0.0,,783.0,336.6981817713546,,71,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,105993,1,2,0,0,1,,630.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,82.62210755885155,540.0,62902.61167020056,1,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012447813838084848,34945.895372333645,9,5,9,9_1,9_2,9_0_0 +5989,2,45.0,0.0,9,111,1800.0,,,47,45,0.0,0.0,,1800.0,0.0,,42,0,0,0,0,0,0,0,0,3,30.0,1,2004.0,6,105994,1,2,0,0,2,,125.0,800.0,43,2.0,0.0,4.0,4.0,2.5,4,3,138.59330491187464,1800.0,57687.88286935751,1,1,2,3,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031202393127797014,23075.153147743004,6,3,6,6_1,6_3,6_0_0 +5990,2,33.0,0.0,1,111,418.0,0.0,0.0,84,43,0.0,0.0,712.7738271295216,418.0,0.0,0.0,33,2,2,2,1,1,2,2,2,1,22.0,2,,1,105995,2,2,0,1,1,552.0,0.0,325.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1036.36578982471,418.0,37618.41185595761,3,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.01111158019111861,25078.941237305073,7,4,7,7_0,7_4,7_1_0 +5991,2,60.0,0.0,6,111,540.0,,,0,43,0.0,33.1081819252556,,705.0,193.98249155551292,,33,0,0,0,0,0,0,0,0,2,60.0,1,,4,105996,2,1,0,0,2,,420.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,69.81995634346106,540.0,45751.84792269407,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015409213660423587,45751.84792269407,10,5,10,10_1,10_2,10_0_0 +5992,2,32.0,0.0,6,112,1400.0,1400.0,0.0,85,46,0.0,0.0,2387.2807607208856,2800.0,0.0,2657.9056671157045,43,0,0,0,0,0,0,0,0,4,60.0,1,,4,105997,2,1,2,0,1,,700.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,839.944989719497,1400.0,54574.62184744085,7,1,1,2,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051305898331777434,20212.822906459576,5,3,5,5_1,5_1,5_0_0 +5993,2,96.0,0.0,2,111,435.0,0.0,0.0,0,72,0.0,0.0,741.7622363668467,1175.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,105998,2,1,0,1,1,,0.0,287.0,11,0.0,2.0,2.0,1.0,1.0,1,1,372.644033490033,435.0,18360.192511322733,0,5,2,3,48.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06399715031720812,18360.192511322733,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +5994,2,51.0,0.0,1,111,540.0,798.0,0.0,56,62,0.0,0.0,920.8082934209131,1338.0,0.0,1515.0062302559516,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,105999,2,1,1,0,1,,552.0,,43,3.0,0.0,6.0,5.0,3.0,5,5,723.361695035965,540.0,75476.9504883682,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017727266289146115,25158.98349612273,7,4,7,7_1,7_3,7_1_0 +5995,2,58.0,0.0,2,111,500.0,1200.0,0.0,74,47,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,106000,2,2,0,0,1,,600.0,425.0,42,1.0,2.0,4.0,2.0,1.5,2,2,384.52688281447,500.0,33729.30192133495,5,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05040128028634626,22486.201280889964,6,3,6,6_0,6_3,6_0_1 +5996,1,57.0,221.0,2,111,138.0,0.0,0.0,0,62,0.0,0.0,235.31767498534444,138.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,106001,2,3,0,1,1,220.0,0.0,207.0,12,1.0,0.0,1.0,1.0,1.0,1,1,946.607764840063,138.0,6076.874971198873,0,4,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02270904052725224,6076.874971198873,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +5997,2,44.0,0.0,9,111,300.0,,,56,67,0.0,0.0,,426.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,106002,2,2,0,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,107.3106517506706,300.0,17939.519394904426,4,4,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02374645555560434,8542.628283287822,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +5998,2,44.0,0.0,1,111,1800.0,1500.0,0.0,34,31,0.0,0.0,3069.36097806971,3300.0,0.0,2847.7560719096837,12,0,0,0,0,0,0,0,0,3,5.0,2,,1,106003,1,2,0,0,1,,0.0,,43,2.0,0.0,10.0,5.0,2.5999999999999996,3,2,1804.04802822469,1800.0,126310.02164192355,1,1,0,1,244.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026126192974261175,48580.77755458599,10,5,10,10_0,10_3,10_1_0 +5999,2,36.0,0.0,7,111,650.0,0.0,0.0,0,34,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,5,106004,2,1,0,1,1,305.0,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,1,1,246.757822075878,650.0,28387.83170364272,0,1,2,3,38.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022897134475987194,28387.83170364272,8,4,8,8_0,8_3,8_0_0 +6000,2,54.0,0.0,2,112,553.0,0.0,0.0,74,43,3691.3899786281054,0.0,942.9759004847498,4113.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,106005,2,1,1,0,1,,140.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,2261.04415640579,553.0,68767.62051757122,5,1,0,1,130.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059810125303798506,45845.080345047485,10,5,10,10_1,10_1,10_0_1 +6001,2,69.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,1493.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,106006,2,1,2,0,1,,433.0,270.0,41,0.0,6.0,2.0,2.0,1.5,2,2,315.862484909941,0.0,20162.886389071795,6,5,2,3,50.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07404693808170243,13441.924259381196,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +6002,2,40.0,0.0,2,111,196.0,557.0,0.0,0,62,0.0,0.0,334.219306500924,753.0,0.0,1057.4667547024624,41,2,2,2,1,1,2,2,2,1,10.0,2,,2,106007,1,3,0,0,1,,233.0,201.0,12,1.0,0.0,1.0,1.0,1.0,1,1,596.690078248948,196.0,22446.449151786735,0,1,2,3,39.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03354650862183524,22446.449151786735,6,3,6,6_0,6_2,6_0_1 +6003,2,54.0,0.0,2,111,360.0,888.0,0.0,0,56,0.0,0.0,613.872195613942,1248.0,0.0,1685.8715945705326,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,106008,2,2,0,0,2,,170.0,,32,1.0,2.0,4.0,2.0,1.5,2,1,353.086709617738,360.0,17916.82757705506,0,1,1,2,92.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0696551883771117,11944.551718036708,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +6004,2,77.0,0.0,5,221,998.0,0.0,0.0,77,75,0.0,0.0,1701.790142285317,998.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106009,2,2,3,0,1,,462.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,701.835970595495,998.0,41948.29199111768,5,5,0,1,120.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023791195126879564,27965.527994078453,7,4,7,7_1,7_1,7_0_0 +6005,2,38.0,0.0,2,111,211.0,0.0,0.0,0,63,1265.6194212439218,0.0,359.7973146515049,1441.0,41.567676761895626,0.0,44,0,0,0,0,0,0,0,0,2,8.0,1,,2,106010,2,1,1,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,986.039237670565,211.0,26190.8120693048,0,1,0,1,64.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055019294407019484,26190.8120693048,7,4,7,7_1,7_3,7_0_1 +6007,2,82.0,0.0,2,111,300.0,2000.0,0.0,0,72,0.0,0.0,511.56016301161833,2300.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,2,,2,106012,2,1,0,0,1,,210.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1167.45314274439,300.0,29773.493690606214,0,5,0,1,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07724991980788835,29773.493690606214,8,4,8,8_0,8_2,8_0_1 +6008,2,61.0,0.0,2,221,320.0,0.0,0.0,0,75,0.0,0.0,545.6641738790596,390.0,96.99124577775646,0.0,60,2,2,2,2,1,2,2,2,0,,2,,2,106013,1,2,0,1,2,366.0,0.0,450.0,11,0.0,2.0,3.0,1.0,1.0,1,1,3163.66624175871,320.0,32688.52659138518,0,5,2,3,60.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011930791646717464,32688.52659138518,8,4,8,8_0,8_1,8_0_1 +6009,1,24.0,112.0,2,111,300.0,0.0,0.0,22,65,0.0,633.028438410887,511.56016301161833,778.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,106014,2,1,0,1,1,478.0,0.0,293.0,43,2.0,0.0,2.0,2.0,1.5,2,2,350.613905146957,300.0,16200.006974667258,1,1,2,3,58.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04802467068172234,10800.004649778171,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6010,2,53.0,0.0,7,111,980.0,0.0,0.0,68,56,0.0,0.0,1671.09653250462,980.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,106015,1,1,0,0,1,,0.0,706.0,43,2.0,4.0,4.0,3.0,1.8,2,2,1703.75050104788,980.0,12818.445500865775,4,4,2,3,84.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07645232800918095,7121.358611592097,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +6011,2,59.0,0.0,5,111,360.0,180.0,0.0,0,31,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,12,0,0,0,0,0,0,0,0,0,,2,,3,106016,1,1,0,1,1,60.0,0.0,600.0,12,1.0,1.0,3.0,1.0,1.0,1,1,931.812436542112,360.0,21051.086995203706,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025651882020298236,21051.086995203706,5,3,5,5_0,5_4,5_0_0 +6012,2,79.0,0.0,2,111,0.0,0.0,730.0,0,78,0.0,0.0,460.13235200276296,730.0,0.0,873.614467722217,71,0,0,0,0,0,0,0,0,0,,2,,2,106017,2,1,0,0,1,,160.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,370.333728726091,0.0,19613.03714405286,0,5,0,1,80.0,4,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03722014059517311,19613.03714405286,5,3,5,5_0,5_2,5_0_1 +6013,2,69.0,0.0,2,111,19.0,6.0,0.0,0,75,0.0,0.0,32.39881032406916,25.0,0.0,11.391024287638734,60,0,0,0,0,0,0,0,0,0,,2,,2,106018,2,1,0,1,1,1068.0,0.0,370.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1197.4510833029,19.0,30025.882368561033,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0008326149983914063,30025.882368561033,8,4,8,8_0,8_4,8_0_1 +6014,2,61.0,0.0,5,212,500.0,0.0,0.0,0,75,1582.0242765549024,529.7309108040896,852.6002716860306,2400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,106019,2,1,1,0,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,807.991958018278,500.0,17992.659688333835,0,5,0,1,100.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13338772819429934,17992.659688333835,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6015,2,74.0,0.0,2,111,603.0,645.0,0.0,0,75,0.0,0.0,1028.235927653353,1248.0,0.0,1224.535110921164,41,0,0,0,0,0,0,0,0,0,,1,,2,106020,2,1,4,0,1,,108.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,815.740587222719,603.0,81907.3139072999,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015236734553552162,81907.3139072999,10,5,10,10_1,10_4,10_0_1 +6016,2,88.0,0.0,1,112,520.0,0.0,0.0,0,77,0.0,0.0,886.7042825534718,565.0,62.351515142843446,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106021,1,2,3,0,2,,220.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1006.93583670875,520.0,13417.973845094699,0,5,0,1,75.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.042107698712391735,13417.973845094699,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +6017,2,65.0,0.0,1,120,520.0,1418.0,0.0,0,52,0.0,9.270290939071568,886.7042825534718,1945.0,0.0,2692.078739978621,70,2,2,2,2,1,2,2,2,0,,1,,1,106022,1,2,3,0,1,,182.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,242.625171930297,520.0,19541.098613746777,0,4,0,1,86.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.09953381017338149,19541.098613746777,5,3,5,5_1,5_0,5_1_0 +6018,2,71.0,0.0,2,112,421.0,0.0,0.0,72,72,1582.0242765549024,0.0,717.8894287596378,2015.0,130.24538718727297,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106023,2,1,2,0,1,,641.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1102.52886710474,421.0,19331.088500660473,5,5,0,1,85.0,6,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10423624101307874,12887.392333773649,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +6019,2,37.0,0.0,9,221,800.0,0.0,0.0,43,42,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,7.0,1,2011.0,6,106024,2,3,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,493.568867693931,800.0,34060.275092146105,1,1,0,1,140.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0234877727157427,16219.178615307668,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6020,2,76.0,0.0,1,112,350.0,1300.0,0.0,77,75,0.0,397.2981831030672,596.8201901802214,1950.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,1,,1,106025,2,1,1,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,331.298156289192,350.0,32583.10241839804,5,5,0,1,100.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05984697144428251,21722.068278932027,6,3,6,6_1,6_0,6_1_0 +6021,2,88.0,0.0,1,112,230.0,0.0,0.0,78,78,0.0,582.7040018844986,392.1961249755741,790.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106026,2,2,3,0,1,,235.0,,41,0.0,2.0,3.0,3.0,2.0,3,3,1508.96653907424,230.0,19880.02942921255,5,5,0,1,70.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03973837175709312,9940.014714606275,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6022,2,31.0,0.0,1,111,1003.0,0.0,0.0,0,37,0.0,0.0,1710.3161450021773,1003.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,20.0,1,,1,106027,2,2,2,0,1,,0.0,567.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1141.42932310072,1003.0,39291.81056041592,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025526947872706603,39291.81056041592,9,5,9,9_1,9_4,9_1_0 +6023,2,53.0,0.0,8,111,560.0,,,43,65,0.0,0.0,,564.0,5.542356901586084,,71,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,106028,2,2,0,0,2,,670.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,155.05346390972593,560.0,83816.15081061168,1,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006729013376841852,41908.07540530584,9,5,9,9_1,9_3,9_0_0 +6024,2,37.0,0.0,6,112,1343.3,0.0,0.0,31,37,0.0,132.4327277010224,2290.5958899116895,1443.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,4,106029,1,3,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,915.400709018298,1343.3,130500.70853825021,1,1,1,2,111.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011057411229127937,62143.194542023906,10,5,10,10_0,10_0,10_0_0 +6025,2,46.0,0.0,5,111,384.0,100.0,0.0,78,63,0.0,0.0,654.7970086548714,484.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,106030,2,1,0,1,1,564.0,0.0,260.0,42,1.0,3.0,3.0,2.0,1.5,2,2,676.015347867176,384.0,20242.060692381514,7,1,2,3,55.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02391060907065468,13494.707128254342,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +6026,2,74.0,0.0,7,112,1358.0,0.0,0.0,72,78,0.0,715.1367295855209,2315.662337899259,1978.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,106031,2,1,1,0,1,,262.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1654.42639209437,1358.0,42054.271535846536,5,5,0,1,110.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04703446113230085,28036.18102389769,7,4,7,7_1,7_2,7_0_0 +6027,2,52.0,0.0,2,111,0.0,0.0,612.0,56,67,0.0,924.3804393531362,385.7547937338232,1310.0,0.0,732.4000743095846,50,2,2,2,2,1,2,1,2,1,15.0,2,,2,106032,2,2,0,1,1,698.0,276.0,305.0,43,3.0,1.0,4.0,5.0,3.0,5,4,255.160228729402,0.0,43546.5985382309,1,1,2,3,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03008271699682607,14515.532846076967,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6028,2,86.0,0.0,1,112,280.0,0.0,0.0,0,71,949.2145659329414,0.0,477.4561521441771,1180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106033,2,1,4,0,2,,130.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,2236.35485707694,280.0,11991.39082332172,0,5,0,1,100.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09840393140260686,11991.39082332172,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6029,2,36.0,0.0,1,111,1055.0,1549.0,0.0,55,55,0.0,0.0,1798.9865732575245,2604.0,0.0,2940.7827702587333,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,106034,2,2,4,0,1,,432.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,264.555848230733,1055.0,35776.29006729185,4,1,1,2,140.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07278563526576178,17036.328603472306,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +6030,2,59.0,0.0,5,111,715.0,0.0,0.0,0,56,0.0,0.0,1219.2183885110237,715.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,106035,1,3,0,1,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1130.14473849338,715.0,13162.285897813252,0,4,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05432187125784802,13162.285897813252,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +6031,1,30.0,356.0,6,111,413.0,,,0,63,0.0,0.0,,505.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,1,15.0,1,,4,106036,2,1,0,0,2,,500.0,500.0,32,1.0,1.0,3.0,2.0,1.3,1,1,119.76000018324545,413.0,23414.0,0,1,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021568292474587854,18010.76923076923,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +6032,2,38.0,0.0,9,111,1150.0,0.0,0.0,68,63,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,106037,2,1,1,0,1,,0.0,583.0,43,2.0,2.0,1.0,6.0,3.0999999999999996,4,2,916.308490531942,1150.0,22170.844369371767,1,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05186992343821979,7151.885280442506,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +6033,2,33.0,0.0,9,112,0.0,0.0,0.0,34,37,0.0,0.0,0.0,748.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2008.0,6,106038,2,1,1,0,1,,316.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1210.20260641021,0.0,60803.46628692142,1,1,1,2,96.0,9,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012301930229936442,33779.70349273412,9,5,9,9_1,9_0,9_0_0 +6034,2,50.0,0.0,1,111,390.0,900.0,0.0,0,42,0.0,0.0,665.0282119151038,1290.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,0,,1,,1,106039,2,2,2,0,1,,300.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1407.00758611605,390.0,26594.98680682749,0,1,1,2,80.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04850538221244125,26594.98680682749,7,4,7,7_1,7_3,7_1_0 +6035,2,73.0,0.0,2,111,400.0,480.0,0.0,0,77,0.0,0.0,682.0802173488245,880.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,0,,2,,2,106040,2,1,0,0,1,,200.0,242.0,11,0.0,1.0,4.0,1.0,1.0,1,1,908.182198463135,400.0,14362.791660160476,0,5,2,3,45.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.061269425945998005,14362.791660160476,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6036,2,42.0,0.0,5,111,1800.0,,,22,22,0.0,0.0,,2080.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,1,2.0,2,,3,106041,2,2,0,0,2,,200.0,,43,2.0,0.0,4.0,7.0,2.9999999999999996,2,2,115.88541270262212,1800.0,131722.64221095992,1,1,1,2,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015790755219355405,43907.54740365331,10,5,10,10_0,10_2,10_0_0 +6037,2,62.0,0.0,1,111,500.0,0.0,0.0,69,77,0.0,0.0,852.6002716860306,650.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106042,2,1,1,0,1,,450.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,1230.14358396391,500.0,23042.80666708705,4,5,0,1,110.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02820836929246213,15361.871111391367,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +6038,2,42.0,0.0,5,111,700.0,600.0,0.0,85,37,0.0,0.0,1193.6403803604428,1300.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,0,,2,,3,106043,1,3,0,1,1,276.0,0.0,593.0,42,2.0,0.0,3.0,6.0,3.0999999999999996,4,4,798.790259863621,700.0,43056.31465059164,6,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030193016066277206,13889.133758255368,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +6039,2,50.0,0.0,1,111,855.0,1382.0,0.0,0,38,0.0,0.0,1457.9464645831124,2237.0,0.0,2623.732594252788,10,0,0,0,0,0,0,0,0,2,40.0,1,,1,106044,2,1,1,0,1,,403.0,,32,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,2592.51018397067,855.0,97462.11388702696,0,1,0,1,200.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022952508526472293,37485.4284180873,9,5,9,9_1,9_3,9_1_0 +6040,2,58.0,0.0,2,111,1050.0,0.0,0.0,48,52,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,60.0,1,,2,106045,2,1,2,0,1,,280.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,567.421790309548,1050.0,15290.989409986672,4,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06866789138669054,10193.992939991114,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +6041,2,54.0,0.0,8,111,600.0,0.0,0.0,55,53,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,75.0,2,2003.0,6,106046,2,2,0,1,1,,0.0,534.0,43,3.0,1.0,3.0,4.0,2.3,3,3,436.631430850079,600.0,50495.88668182615,1,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011882155942336279,21954.733339924416,6,3,6,6_0,6_4,6_0_0 +6042,2,42.0,0.0,1,111,720.0,0.0,0.0,0,43,738.277995725621,0.0,1227.744391227884,1420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,106047,2,1,2,0,1,,450.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,385.270679047753,720.0,21424.515234707207,0,1,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06627921259565461,16480.39633439016,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +6043,2,38.0,0.0,8,120,1304.0,0.0,0.0,43,46,0.0,198.6490915515336,2223.5815085571676,1454.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,8.0,1,2002.0,6,106048,2,2,2,0,1,,432.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2151.85814842299,1304.0,55323.689324232044,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026281689051477285,26344.61396392002,7,4,7,7_1,7_0,7_0_0 +6044,2,67.0,0.0,1,111,200.0,167.0,0.0,0,77,0.0,987.948148649627,341.04010867441224,1225.0,155.18599324441035,317.05017600594476,70,2,2,2,1,1,2,2,2,0,,1,,1,106049,1,3,4,0,2,,100.0,339.0,11,0.0,2.0,4.0,1.0,1.0,1,1,710.737261967321,200.0,21997.451264999014,0,5,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.055688269756466936,21997.451264999014,6,3,6,6_1,6_2,6_1_0 +6045,2,57.0,0.0,6,111,2849.0,0.0,0.0,0,46,0.0,0.0,4858.116348067002,2939.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,106050,2,1,2,0,1,,407.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,568.970553790996,2849.0,57053.96952924945,0,1,0,1,119.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051512629607538246,38035.9796861663,9,5,9,9_1,9_4,9_0_0 +6046,0,77.0,0.0,1,112,0.0,0.0,2800.0,0,78,0.0,0.0,1764.8912131612826,2800.0,0.0,3350.8500131811065,50,2,2,2,1,1,2,2,2,0,,1,,1,106051,1,3,4,0,2,,318.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,819.406407789727,0.0,27951.306051185078,0,5,0,1,60.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1001742099232349,27951.306051185078,7,4,7,7_1,7_2,7_1_0 +6047,0,46.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,291.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,2,,2,106052,1,3,0,1,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,1381.78248849865,0.0,20846.44984255638,0,1,5,0,18.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013959211386005232,20846.44984255638,5,3,5,5_0,5_4,5_0_1 +6048,1,33.0,491.0,8,111,420.0,1080.0,0.0,0,85,0.0,0.0,716.1842282162656,1500.0,0.0,2050.384371774972,50,1,2,2,1,1,2,2,2,0,,2,,6,106053,1,2,0,0,2,,0.0,646.0,31,0.0,0.0,4.0,4.0,1.9,1,1,384.214554609394,420.0,17915.894430375305,0,6,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.08372453889083213,9429.41812125016,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +6049,2,65.0,0.0,1,112,700.0,1200.0,0.0,74,74,0.0,0.0,1193.6403803604428,1915.0,20.783838380947813,2278.2048575277468,44,2,2,1,2,2,2,2,1,0,,1,,1,106054,2,2,2,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,338.611076924371,700.0,37776.935506756156,5,5,0,1,115.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.050692306676318806,25184.62367117077,7,4,7,7_1,7_1,7_1_0 +6050,2,64.0,0.0,5,111,384.0,888.0,0.0,0,64,0.0,0.0,654.7970086548714,1272.0,0.0,1685.8715945705326,70,0,0,0,0,0,0,0,0,2,5.0,2,,3,106055,1,1,0,0,1,,250.0,299.0,31,0.0,3.0,3.0,2.0,1.3,1,1,495.549360045251,384.0,25065.50776652747,0,5,2,3,55.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05074702702406976,19281.159820405745,5,3,5,5_0,5_2,5_0_0 +6051,2,54.0,0.0,8,112,1056.0,,,75,37,0.0,0.0,,1129.0,101.14801345394604,,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,106056,2,2,0,0,2,,170.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,110.73313876128293,1056.0,22791.577639004885,5,1,1,2,85.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04953584248893153,15194.385092669923,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6052,2,83.0,0.0,1,221,800.0,0.0,0.0,0,71,0.0,0.0,1364.160434697649,900.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106057,2,1,1,0,1,,140.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2469.7764983492,800.0,15353.419767801355,0,5,0,1,65.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05861886235192031,15353.419767801355,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +6054,2,48.0,0.0,1,112,590.0,0.0,0.0,56,48,0.0,648.9203657350097,1006.0683205895161,1200.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,106059,1,2,3,0,2,,280.0,696.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1408.86914565148,590.0,34534.7286102848,1,1,2,3,95.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03474763081365659,16445.108862040383,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +6055,1,57.0,169.0,2,111,440.0,60.0,0.0,0,52,0.0,0.0,750.2882390837069,500.0,0.0,113.91024287638734,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,106060,1,1,0,1,1,564.0,0.0,347.0,32,1.0,3.0,3.0,2.0,1.3,1,1,272.446618025505,440.0,21428.28296200167,0,1,2,3,83.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.023333647445604466,16483.29458615513,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +6056,1,44.0,100.0,1,111,970.0,0.0,0.0,34,34,0.0,993.245457757668,1654.0445270708994,1720.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,1,106061,2,1,0,1,1,,0.0,,43,2.0,0.0,1.0,6.0,3.0999999999999996,4,3,690.554240587748,970.0,67003.68667220713,1,1,1,2,13.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025670229287748272,21614.092474905527,6,3,6,6_0,6_4,6_1_0 +6057,2,67.0,0.0,5,111,512.0,1900.0,0.0,77,75,0.0,0.0,873.0626782064953,2412.0,0.0,3607.1576910855993,60,0,0,0,0,0,0,0,0,0,,1,,3,106062,2,1,2,0,1,,215.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,337.594929555823,512.0,28470.965802500556,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08471788476484202,18980.643868333704,5,3,5,5_1,5_3,5_0_0 +6058,2,55.0,0.0,2,112,378.0,1538.0,0.0,0,62,0.0,0.0,644.5658053946391,1916.0,0.0,2919.8992257313953,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,106063,2,1,2,0,1,,280.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,365.802067199205,378.0,29117.928373942777,0,1,0,1,90.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06580138447330619,29117.928373942777,8,4,8,8_1,8_1,8_0_1 +6059,1,43.0,576.0,6,111,0.0,,,81,85,0.0,0.0,,412.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,106064,2,1,0,0,2,,2179.0,900.0,42,1.0,2.0,4.0,6.0,2.6999999999999997,2,2,114.59428842992514,0.0,25878.9821798952,4,6,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01592025517603523,9584.808214776001,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6060,0,87.0,0.0,1,211,247.0,0.0,0.0,0,77,2742.175412695164,0.0,421.1845342128991,2879.0,44.33885521268867,0.0,70,1,2,2,1,1,2,2,2,0,,1,,1,106065,1,3,3,0,2,,159.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,1683.37631443975,247.0,18090.46585963686,0,5,0,1,172.0,2,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.1591446025955349,18090.46585963686,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +6061,2,88.0,0.0,1,112,1000.0,0.0,0.0,0,71,2109.365702073203,0.0,1705.2005433720612,3000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106066,2,1,2,0,1,,150.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,216.154314264417,1000.0,8295.928762298765,0,5,0,1,100.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.36162316311509807,8295.928762298765,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6062,2,57.0,0.0,2,111,260.0,0.0,0.0,0,90,0.0,0.0,443.3521412767359,260.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,106067,2,1,0,1,1,,0.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,208.79311050033,260.0,77827.17644672828,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003340735355829936,51884.78429781885,10,5,10,10_0,10_4,10_0_1 +6063,2,55.0,0.0,2,111,1200.0,,,86,34,0.0,0.0,,1200.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,106068,2,1,0,0,2,,330.0,,42,1.0,2.0,5.0,4.0,2.5,4,3,89.21137886089859,1200.0,154142.4530111775,7,1,1,2,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007785006508965983,61656.981204471005,10,5,10,10_1,10_2,10_0_1 +6064,1,37.0,331.0,9,111,0.0,,,0,54,0.0,0.0,,989.0,0.0,,41,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,106069,2,2,0,0,1,,766.0,850.0,32,1.0,0.0,4.0,4.0,1.9,1,1,252.87098954638643,0.0,22708.019664317246,0,1,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04355289517183602,11951.589297009077,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +6065,2,35.0,0.0,2,111,300.0,90.0,0.0,0,55,0.0,0.0,511.56016301161833,390.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,106070,2,1,0,1,1,660.0,600.0,285.0,32,1.0,0.0,3.0,2.0,1.3,1,1,369.735742350203,300.0,18718.220296008574,0,1,2,3,63.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02083531413951585,14398.630996929673,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6066,2,51.0,0.0,2,111,700.0,0.0,0.0,0,56,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,41,1,2,2,2,1,2,2,2,3,20.0,2,,2,106071,2,3,0,0,1,,180.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,448.982520099976,700.0,3198.8861643881096,0,1,0,1,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.21882616761822082,3198.8861643881096,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +6067,2,74.0,0.0,2,111,1500.0,0.0,0.0,86,74,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,106072,2,1,0,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1613.03234278819,1500.0,129025.30839157398,6,5,0,1,160.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011625626155821363,86016.87226104933,10,5,10,10_0,10_2,10_0_1 +6068,2,72.0,0.0,7,120,0.0,0.0,0.0,0,71,0.0,1456.7600047112462,0.0,1278.0,193.98249155551292,0.0,71,2,2,2,2,1,2,2,2,0,,1,,5,106073,1,2,4,0,1,,300.0,,21,0.0,3.0,6.0,2.0,1.5,2,2,1343.53284550725,0.0,22914.07160564178,0,5,0,1,100.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.05577358847413821,15276.047737094521,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6069,1,47.0,346.0,9,211,470.0,,,85,43,0.0,0.0,,734.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,106074,2,3,0,0,2,,460.0,,42,1.0,2.0,6.0,5.0,2.4,2,2,116.32794735976758,470.0,17491.174311926603,6,1,1,2,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.041964020648945895,7287.989296636085,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6070,2,49.0,0.0,5,111,450.0,0.0,0.0,38,38,0.0,0.0,767.3402445174275,450.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,3,106075,2,2,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,560.425121657832,450.0,113570.18659017367,1,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003962307481485946,45428.07463606947,10,5,10,10_0,10_4,10_0_0 +6071,2,49.0,0.0,7,111,800.0,0.0,0.0,68,64,2109.365702073203,0.0,1364.160434697649,3100.0,415.67676761895626,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,106076,2,1,2,0,1,,1000.0,,43,2.0,1.0,6.0,5.0,2.5999999999999996,4,2,228.558727267414,800.0,33004.81442717618,1,1,0,1,150.0,7,5,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0939256909576034,12694.159395067762,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +6072,2,32.0,0.0,2,111,218.0,125.0,0.0,0,42,0.0,0.0,371.73371845510934,343.0,0.0,237.31300599247362,10,0,0,0,0,0,0,0,0,0,,2,,2,106077,2,1,0,1,1,1080.0,0.0,326.0,22,1.0,0.0,3.0,3.0,2.0,3,3,300.472592207033,218.0,41553.84495002551,0,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008254350479781281,20776.922475012754,5,3,5,5_0,5_4,5_0_1 +6073,2,60.0,0.0,2,111,1100.0,0.0,0.0,46,78,2109.365702073203,0.0,1875.7205977092674,3100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106078,2,1,1,0,1,,250.0,,42,1.0,2.0,4.0,3.0,2.0,3,2,820.393906224664,1100.0,47223.028687270096,4,5,0,1,100.0,7,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0656459377167324,23611.514343635048,6,3,6,6_1,6_2,6_0_1 +6074,2,30.0,0.0,9,120,2400.0,0.0,0.0,37,21,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,106079,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1483.53552810819,2400.0,97588.472172644,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024593068695185166,54215.817873691114,10,5,10,10_1,10_0,10_0_0 +6075,2,51.0,0.0,9,112,1200.0,0.0,0.0,33,43,0.0,0.0,2046.2406520464733,1272.0,99.7624242285495,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,106080,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,1032.12038453508,1200.0,57861.321669055644,1,1,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02198359738955407,28930.660834527822,8,4,8,8_1,8_1,8_0_0 +6076,1,42.0,296.0,2,111,250.0,210.0,0.0,85,63,0.0,0.0,426.3001358430153,460.0,0.0,398.6858500673557,71,2,1,2,1,1,2,2,2,0,,2,,2,106081,2,1,0,1,1,540.0,340.0,385.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,1366.34817868515,250.0,33790.53105629923,6,4,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.013613281165471556,12515.011502333049,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6077,2,46.0,0.0,2,111,180.0,0.0,0.0,0,42,0.0,0.0,306.936097806971,180.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,,2,106082,2,1,0,1,1,48.0,0.0,278.0,12,1.0,0.0,2.0,1.0,1.0,1,1,925.72994465995,180.0,16039.069556041615,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011222596134462014,16039.069556041615,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +6078,2,42.0,0.0,9,300,700.0,,,85,64,0.0,0.0,,800.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,106083,2,1,0,0,2,,300.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,91.99128441199979,700.0,35133.4586288416,6,1,1,2,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02277031727651395,14053.383451536642,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6079,2,47.0,0.0,8,112,1200.0,0.0,0.0,21,46,0.0,0.0,2046.2406520464733,1929.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,106084,2,2,2,0,1,,379.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1571.54168571911,1200.0,55003.14928074845,4,1,1,2,125.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03507071913562531,26191.97584797545,7,4,7,7_1,7_0,7_0_0 +6080,2,61.0,0.0,1,111,1018.0,0.0,0.0,74,38,0.0,0.0,1735.8941531527582,1018.0,0.0,0.0,10,2,2,2,2,1,2,2,2,1,25.0,1,,1,106085,2,1,3,0,1,,697.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,778.163074441066,1018.0,92338.61394093736,5,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,0,0.011024640251272824,61559.075960624905,10,5,10,10_1,10_4,10_1_0 +6081,2,56.0,0.0,5,111,750.0,700.0,0.0,52,47,0.0,0.0,1278.9004075290459,1450.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,106086,2,1,0,0,1,,650.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,503.213790591737,750.0,98721.22402653117,1,1,0,1,108.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014687824369056798,39488.489610612465,9,5,9,9_0,9_2,9_0_0 +6082,2,38.0,0.0,5,112,464.0,1380.0,0.0,67,48,0.0,0.0,791.2130521246364,1844.0,0.0,2619.935586156909,42,0,0,0,0,0,0,0,0,2,15.0,1,,3,106087,2,1,1,0,1,,322.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,402.636013361596,464.0,65172.88492300942,1,1,1,2,120.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02829397535767167,31034.70710619496,8,4,8,8_1,8_1,8_0_0 +6083,2,79.0,0.0,5,111,1600.0,0.0,0.0,86,74,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,106088,2,1,0,0,1,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1837.71411158139,1600.0,65590.47345658664,6,5,0,1,132.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024393786409531198,43726.982304391095,10,5,10,10_0,10_3,10_0_0 +6084,2,43.0,0.0,2,111,400.0,0.0,0.0,0,46,0.0,0.0,682.0802173488245,400.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,45.0,2,,2,106089,2,1,0,1,2,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,349.354622864139,400.0,4511.671437663694,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0886589383838497,4511.671437663694,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +6085,1,50.0,31.0,6,111,8626.8,0.0,0.0,0,85,1898.4291318658827,0.0,14710.424047562095,10427.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,1,,4,106090,1,1,1,0,1,,428.0,,31,1.0,1.0,4.0,3.0,2.0,3,2,693.273249815162,8626.8,41827.9509219672,0,7,1,2,125.0,7,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.24928306957833662,20913.9754609836,5,3,5,5_1,5_2,5_0_0 +6086,2,36.0,0.0,8,111,840.0,0.0,0.0,38,38,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,2,2001.0,6,106091,1,2,0,0,1,,0.0,1430.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1327.63596454642,840.0,82327.23511849073,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010203184873037667,54884.823412327154,10,5,10,10_0,10_4,10_0_0 +6087,2,30.0,0.0,9,112,1451.0,0.0,0.0,48,46,0.0,0.0,2474.245988432861,1451.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,106092,2,1,1,0,1,,430.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,804.886793469462,1451.0,50064.47433517384,1,1,1,2,96.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028982627287480967,23840.225873892305,6,3,6,6_1,6_0,6_0_0 +6088,2,70.0,0.0,1,120,408.0,0.0,0.0,0,78,1371.087706347582,0.0,695.7218216958009,1740.0,44.33885521268867,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106093,2,1,3,0,1,,205.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1446.76685283664,408.0,14520.061538586499,0,5,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1198342028631227,14520.061538586499,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6089,2,56.0,0.0,1,211,0.0,0.0,0.0,0,63,0.0,0.0,0.0,138.0,191.2113131047199,0.0,71,0,0,0,0,0,0,0,0,0,,7,,1,106094,1,3,0,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,1536.2294752447,0.0,7200.504983565699,0,1,0,1,25.0,2,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019165322475988653,7200.504983565699,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +6090,2,53.0,0.0,7,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1605.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,106095,1,2,0,0,1,,149.0,372.0,12,1.0,0.0,2.0,1.0,1.0,1,1,451.976711636695,0.0,17329.78590332871,0,1,2,3,75.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09261510840083208,17329.78590332871,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +6091,2,54.0,0.0,7,120,1984.0,0.0,0.0,46,43,0.0,139.05436408607352,3383.1178780501696,2139.0,69.27946126982604,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,5,106096,2,1,2,0,1,,613.0,,43,4.0,0.0,7.0,4.0,2.5,4,4,1678.33391451326,1984.0,70740.13293926128,1,1,0,1,200.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03023743257362243,28296.053175704514,8,4,8,8_1,8_0,8_0_0 +6092,2,31.0,0.0,5,111,400.0,900.0,0.0,55,62,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,106097,2,2,0,0,1,,350.0,366.0,43,2.0,0.0,3.0,3.0,1.8,2,2,245.29757557873,400.0,31113.504035367438,4,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04178250056702903,17285.280019648577,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +6093,2,27.0,0.0,5,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,2947.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,106098,2,1,2,0,1,,383.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,282.372511284781,0.0,34668.51798661068,1,1,1,2,85.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08500507581945557,23112.345324407117,6,3,6,6_1,6_3,6_0_0 +6094,2,62.0,0.0,1,111,600.0,45.0,0.0,0,21,0.0,0.0,1023.1203260232367,645.0,0.0,85.4326821572905,41,0,0,0,0,0,0,0,0,0,,2,,1,106099,1,3,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1135.75737327452,600.0,15869.573600525971,0,4,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04064381414624918,15869.573600525971,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +6095,2,39.0,0.0,1,120,808.0,1919.0,0.0,65,65,0.0,0.0,1377.8020390446254,2727.0,0.0,3643.2292679964553,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,106100,1,2,1,0,1,,360.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,263.243093797647,808.0,42920.59415697632,1,1,0,1,250.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06353593312400016,20438.378169988726,5,3,5,5_1,5_0,5_1_0 +6096,1,28.0,400.0,2,111,800.0,,,68,42,0.0,0.0,,888.0,121.93185183489385,,20,0,0,0,0,0,0,0,0,0,,2,,2,106101,2,1,0,0,2,,300.0,750.0,43,3.0,0.0,6.0,5.0,2.6,3,3,105.69968931563494,800.0,16978.079002036997,4,4,2,3,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05230273695236425,6530.030385398844,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6097,1,48.0,280.0,5,111,500.0,0.0,0.0,53,31,0.0,0.0,852.6002716860306,640.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,106102,2,1,0,1,1,,0.0,444.0,43,2.0,2.0,3.0,3.0,1.8,2,2,179.571019319297,500.0,33844.43596597805,4,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018910050699126935,18802.464425543363,5,3,5,5_0,5_4,5_0_0 +6098,2,60.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,909.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,106103,1,1,0,1,2,566.0,0.0,765.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1014.10425280894,0.0,35228.29774358928,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025803120168229433,35228.29774358928,9,5,9,9_0,9_4,9_1_0 +6099,2,67.0,0.0,6,111,190.0,107.0,0.0,0,52,0.0,0.0,323.9881032406916,297.0,0.0,203.13993312955742,71,0,0,0,0,0,0,0,0,2,5.0,8,,4,106104,2,1,0,0,1,,0.0,444.0,12,1.0,2.0,2.0,1.0,1.0,1,1,714.485697066949,190.0,22001.507342739722,0,1,2,3,50.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013499075103052293,22001.507342739722,6,3,6,6_0,6_2,6_0_0 +6100,2,54.0,0.0,8,111,2000.0,,,43,31,0.0,0.0,,2000.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,106105,2,1,0,0,2,,800.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,107.67197427870458,2000.0,222569.6584157959,1,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008985950799563517,89027.86336631836,10,5,10,10_1,10_2,10_0_0 +6101,2,54.0,0.0,2,111,720.0,0.0,0.0,0,46,0.0,0.0,1227.744391227884,720.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,2,,2,106106,2,1,0,0,1,,0.0,422.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1081.58450211767,720.0,29713.499437790386,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024231410423650256,29713.499437790386,8,4,8,8_0,8_4,8_0_1 +6102,2,67.0,0.0,2,221,221.0,0.0,0.0,0,78,0.0,0.0,376.84932008522554,271.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106107,2,1,0,1,1,646.0,35.0,204.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2628.14021772459,221.0,13929.62081487949,0,5,2,3,49.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019454944510084605,13929.62081487949,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +6103,1,24.0,350.0,8,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,634.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,3,2000.0,6,106108,1,3,0,0,1,,0.0,400.0,32,1.0,0.0,3.0,2.0,1.3,1,1,878.428604590312,0.0,6664.347018205155,0,4,2,3,40.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09513310130281138,5126.420783234735,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +6104,1,30.0,274.0,5,111,360.0,0.0,0.0,0,46,0.0,0.0,613.872195613942,720.0,0.0,0.0,43,2,2,2,1,2,2,2,2,2,7.0,2,,3,106109,1,2,0,1,1,68.0,0.0,580.0,32,1.0,0.0,3.0,2.0,1.3,1,1,771.427395193639,360.0,21461.999244662555,0,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.033547666822281656,16509.230188201964,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +6105,1,29.0,585.0,1,112,0.0,0.0,0.0,22,67,0.0,0.0,0.0,5622.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106110,2,1,2,0,1,,251.0,650.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,901.048210359705,0.0,22907.50093603876,1,1,2,3,100.0,8,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.24542179505732564,8484.259605940282,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +6106,2,50.0,0.0,2,111,370.0,100.0,0.0,67,55,0.0,0.0,630.9242010476627,470.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,2,35.0,8,,2,106111,1,2,0,1,2,720.0,0.0,340.0,43,2.0,2.0,5.0,2.0,1.5,2,2,2712.79144091988,370.0,38702.0,1,1,2,3,95.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012144075241589582,25801.333333333332,7,4,7,7_0,7_2,7_0_1 +6107,2,61.0,0.0,8,120,800.0,0.0,0.0,0,34,0.0,0.0,1364.160434697649,847.0,65.12269359363648,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,106112,2,1,1,0,1,,188.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,671.800369677675,800.0,31925.668221113992,0,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026530376565143836,31925.668221113992,8,4,8,8_1,8_0,8_0_0 +6108,2,88.0,0.0,2,111,330.0,2000.0,0.0,0,75,0.0,0.0,562.7161793127802,2330.0,0.0,3797.008095879578,70,0,0,0,0,0,0,0,0,0,,1,,2,106113,2,2,1,0,1,,150.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1230.57622398653,330.0,26171.993108987044,0,5,0,1,60.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08902646391114612,26171.993108987044,7,4,7,7_1,7_2,7_0_1 +6109,2,21.0,0.0,2,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,106114,2,1,0,1,2,612.0,0.0,228.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1673.26737729997,0.0,12804.612648208258,0,1,2,3,59.0,4,0,7,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02733389986997969,12804.612648208258,2,1,2_0,2_0_0,2_0_0,2_0_1_0 +6110,2,54.0,0.0,2,111,205.0,126.0,0.0,0,64,0.0,0.0,349.56611139127256,331.0,0.0,239.2115100404134,71,0,0,0,0,0,0,0,0,0,,2,,2,106115,2,1,0,1,1,721.0,0.0,355.0,11,0.0,2.0,4.0,1.0,1.0,1,1,281.980134566628,205.0,40825.40024351293,0,5,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008107697610450132,40825.40024351293,9,5,9,9_0,9_4,9_0_1 +6111,1,53.0,187.0,2,111,164.0,0.0,0.0,0,56,0.0,908.4885120290136,279.65288911301803,900.0,69.27946126982604,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,106116,2,1,0,1,1,,385.0,238.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1014.68710365265,164.0,19668.014640486024,0,1,2,3,80.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.045759575455439044,19668.014640486024,5,3,5,5_0,5_2,5_0_1 +6112,2,70.0,0.0,2,111,540.0,546.0,0.0,77,75,0.0,0.0,920.8082934209131,1086.0,0.0,1036.5832101751248,44,0,0,0,0,0,0,0,0,0,,1,,2,106117,2,1,2,0,1,,133.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1387.87076934031,540.0,49747.40444980753,5,5,0,1,89.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02183028465526711,33164.93629987169,8,4,8,8_1,8_3,8_0_1 +6113,1,32.0,577.0,7,111,0.0,,,0,68,0.0,0.0,,725.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,106118,2,1,0,0,1,,225.0,700.0,32,1.0,0.0,5.0,6.0,2.6999999999999997,2,1,132.10324776920172,0.0,17062.179243394927,0,4,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04249164128788885,6319.325645701825,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6114,0,26.0,0.0,2,111,0.0,,,0,46,0.0,0.0,,597.0,0.0,,10,0,0,0,0,0,0,0,0,1,5.0,2,,2,106119,1,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,125.22347847858498,0.0,13217.981145165948,0,1,5,0,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04516574758607018,13217.981145165948,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +6115,2,50.0,0.0,1,400,650.0,0.0,0.0,85,85,1054.6828510366015,0.0,1108.3803531918397,1774.0,171.8130639491686,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106120,2,1,2,0,2,,160.0,,41,0.0,9.0,4.0,2.0,1.5,2,2,1219.30365187775,650.0,6970.525751990338,6,7,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.25450017159659133,4647.017167993558,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6116,2,80.0,0.0,2,112,250.0,,,0,71,0.0,0.0,,350.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,2,106121,2,2,0,0,2,,200.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,99.56194567044426,250.0,10421.292682926825,0,5,0,1,57.0,8,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03358508494569047,10421.292682926825,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +6117,2,39.0,0.0,5,111,282.0,,,0,81,0.0,0.0,,482.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,3,106122,2,1,0,0,2,,240.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,64.70671659150732,282.0,7773.286647401461,0,4,0,1,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062007233473260405,4318.4925818897,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6118,1,33.0,137.0,1,111,570.0,1495.0,0.0,22,43,0.0,0.0,971.9643097220749,2065.0,0.0,2838.2635516699847,20,0,0,0,0,0,0,0,0,0,,2,,1,106123,1,1,0,0,2,,0.0,784.0,43,2.0,0.0,2.0,4.0,2.1,2,2,906.663765982496,570.0,24239.21060826487,1,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0851925433287788,11542.48124203089,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +6119,0,49.0,0.0,7,111,800.0,,,81,54,0.0,0.0,,1030.0,318.68552184119983,,50,0,0,0,0,0,0,0,0,2,6.0,1,,5,106124,1,1,0,0,2,,350.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,91.44049022899823,800.0,17190.04809770244,4,1,5,0,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05991838964881465,8595.02404885122,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6120,2,71.0,0.0,5,111,2500.0,0.0,0.0,75,74,0.0,529.7309108040896,4263.001358430153,2900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,106125,2,1,2,0,1,,300.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,1721.4872692973,2500.0,90718.79908950433,5,5,0,1,170.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031966913463424736,45359.39954475217,10,5,10,10_1,10_3,10_0_0 +6121,1,45.0,357.0,6,111,486.0,,,0,69,0.0,0.0,,762.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,106126,2,1,0,0,2,,499.0,500.0,32,2.0,0.0,4.0,3.0,2.0,3,2,120.39850496599287,486.0,7664.693277500857,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09941689411588,3832.3466387504286,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6122,1,36.0,330.0,5,111,240.0,132.0,0.0,0,81,0.0,0.0,409.2481304092947,372.0,0.0,250.60253432805214,33,2,1,1,2,1,2,2,2,0,,2,,3,106127,1,3,0,1,2,,0.0,320.0,32,1.0,0.0,5.0,5.0,2.2,1,1,343.150166519441,240.0,16098.383876115988,0,4,2,3,98.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.02310790964252689,7317.447216416357,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6123,2,62.0,0.0,9,111,0.0,,,0,34,0.0,0.0,,421.0,0.0,,10,0,0,0,0,0,0,0,0,3,30.0,1,2008.0,6,106128,2,1,0,0,1,,1660.0,600.0,12,1.0,1.0,3.0,1.0,1.0,1,1,121.96642457519341,0.0,50356.49458045358,0,1,2,3,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008360391316106735,50356.49458045358,10,5,10,10_1,10_2,10_0_0 +6124,2,77.0,0.0,2,111,710.0,0.0,0.0,78,90,1898.4291318658827,0.0,1210.6923857941633,2510.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106129,2,1,1,0,1,,500.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,534.158908711591,710.0,37762.843284260336,5,5,0,1,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06646745270492319,25175.22885617356,7,4,7,7_1,7_4,7_0_1 +6125,2,62.0,0.0,9,111,430.0,,,74,74,0.0,0.0,,530.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,106130,2,1,0,0,2,,360.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,144.5612067877916,430.0,99525.0,5,5,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005325295151971866,66350.0,10,5,10,10_1,10_2,10_0_0 +6126,2,37.0,0.0,2,111,1800.0,,,0,42,0.0,0.0,,1875.0,103.91919190473907,,20,0,0,0,0,0,0,0,0,2,5.0,1,,2,106131,2,1,0,0,2,,470.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,56.50394498958075,1800.0,33770.84153008237,0,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05552126968259848,21106.77595630148,5,3,5,5_1,5_2,5_0_1 +6127,2,82.0,0.0,2,112,892.0,0.0,0.0,77,77,2141.006187604301,0.0,1521.0388846878786,3163.0,333.92700332056154,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,106132,1,1,1,0,1,,496.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1269.29361500951,892.0,36540.0788707283,5,5,0,1,120.0,9,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08656248420234887,24360.05258048553,7,4,7,7_1,7_0,7_0_1 +6128,2,38.0,0.0,9,120,1250.0,0.0,0.0,42,47,0.0,0.0,2131.5006792150766,1380.0,180.1265993015477,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,106133,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,853.614453568367,1250.0,68191.91051831571,1,1,1,2,160.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02023700449966635,32472.338342055096,8,4,8,8_1,8_0,8_0_0 +6129,2,75.0,0.0,5,112,2660.0,0.0,0.0,0,77,0.0,0.0,4535.8334453696825,2660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,106134,1,1,2,0,2,,1100.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,1640.70807600112,2660.0,20242.711183776533,0,5,0,1,140.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1314053229259058,13495.140789184356,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6130,1,37.0,387.0,1,111,788.0,0.0,0.0,22,53,0.0,0.0,1343.6980281771841,788.0,0.0,0.0,41,2,2,2,2,1,1,2,2,2,30.0,2,,1,106135,2,2,0,1,1,1900.0,0.0,614.0,43,3.0,1.0,3.0,5.0,2.6,3,3,563.466665867329,788.0,35891.88625049486,4,1,2,3,59.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.021954822727912087,13804.571634805716,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +6131,2,63.0,0.0,6,111,480.0,1380.0,0.0,52,78,0.0,317.83854648245375,818.4962608185893,2100.0,0.0,2619.935586156909,71,0,0,0,0,0,0,0,0,0,,1,,4,106136,2,1,2,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,584.548057948458,480.0,56186.675070960744,1,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03737540969184977,37457.783380640496,9,5,9,9_1,9_4,9_0_0 +6132,2,70.0,0.0,2,120,1940.0,0.0,0.0,77,75,0.0,0.0,3308.089054141799,1940.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106137,2,2,2,0,1,,789.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,828.257372112126,1940.0,40096.70545156616,5,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048383027437088964,26731.136967710772,7,4,7,7_1,7_0,7_0_1 +6133,2,57.0,0.0,9,211,360.0,,,0,68,0.0,0.0,,448.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,106138,2,2,0,0,1,,270.0,228.0,12,1.0,4.0,1.0,1.0,1.0,1,1,172.93811258160036,360.0,18680.68894965863,0,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023981984883281657,18680.68894965863,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +6134,2,61.0,0.0,2,111,500.0,,,0,63,0.0,0.0,,580.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,106139,2,1,0,0,2,,300.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,135.94504669963598,500.0,21469.207651257046,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027015435754381013,21469.207651257046,6,3,6,6_1,6_2,6_0_1 +6135,2,35.0,0.0,9,111,600.0,1300.0,0.0,85,21,0.0,0.0,1023.1203260232367,1900.0,0.0,2468.055262321726,60,0,0,0,0,0,0,0,0,2,60.0,1,2010.0,6,106140,2,1,1,0,1,,600.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,233.32825814795,600.0,32319.37351130278,6,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058788268260692896,15390.177862525132,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +6136,1,40.0,270.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,239.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2013.0,2,106141,2,1,0,1,1,52.0,0.0,303.0,12,1.0,0.0,2.0,1.0,1.0,1,1,338.003415210786,0.0,11661.403669724772,0,1,2,3,55.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.020494959849515337,11661.403669724772,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6137,2,48.0,0.0,2,111,800.0,0.0,0.0,37,63,1054.6828510366015,0.0,1364.160434697649,1956.0,216.15191916185728,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106142,2,1,2,0,1,,350.0,,43,2.0,0.0,4.0,5.0,2.8,4,2,1150.15084120383,800.0,46373.47624357986,1,1,1,2,98.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04217928347070588,16561.955801278524,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +6138,1,49.0,329.0,1,111,210.0,210.0,0.0,0,22,0.0,0.0,358.0921141081328,420.0,0.0,398.6858500673557,50,0,0,0,0,0,0,0,0,0,,2,,1,106143,1,3,0,1,2,,521.0,294.0,32,1.0,1.0,4.0,3.0,2.0,3,2,313.938442998361,210.0,8363.999513346718,0,1,2,3,77.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05021521095616896,4181.999756673359,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +6139,1,35.0,60.0,9,111,500.0,0.0,0.0,85,67,0.0,0.0,852.6002716860306,660.0,221.69427606344334,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,106144,1,1,0,1,1,560.0,500.0,250.0,42,1.0,0.0,3.0,3.0,1.8,2,2,106.211651230075,500.0,18733.43840123657,6,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0352311191284796,10407.46577846476,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6140,2,67.0,0.0,6,400,867.0,,,69,78,0.0,0.0,,1131.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,106145,1,2,0,0,2,,1500.0,,42,3.0,5.0,6.0,4.0,2.5,4,4,149.80772596796874,867.0,23720.077363587607,4,5,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047681126105270796,9488.030945435043,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6141,2,30.0,0.0,2,111,620.0,0.0,0.0,46,47,0.0,0.0,1057.224336890678,620.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,106146,2,2,0,0,1,,0.0,620.0,43,2.0,0.0,2.0,2.0,1.5,2,2,724.521240823416,620.0,48140.03746434631,1,4,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.012879092594375051,32093.358309564206,8,4,8,8_0,8_3,8_0_1 +6142,2,66.0,0.0,2,111,300.0,1195.0,0.0,0,77,0.0,0.0,511.56016301161833,1495.0,0.0,2268.712337288048,70,0,0,0,0,0,0,0,0,0,,1,,2,106147,2,2,1,0,2,,240.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,265.303158491335,300.0,22463.52377036463,0,5,0,1,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06655233681424029,22463.52377036463,6,3,6,6_1,6_3,6_0_1 +6143,1,56.0,307.0,1,111,300.0,60.0,0.0,0,45,0.0,0.0,511.56016301161833,360.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,2,,1,106148,2,2,0,1,1,627.0,0.0,413.0,12,1.0,2.0,3.0,1.0,1.0,1,1,860.938989879534,300.0,6073.4840223246065,0,4,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05927405072224281,6073.4840223246065,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +6144,2,69.0,0.0,2,111,250.0,50.0,0.0,0,77,0.0,0.0,426.3001358430153,300.0,0.0,94.92520239698945,50,2,2,2,2,1,2,2,2,0,,2,,2,106149,2,2,0,1,1,724.0,0.0,223.0,11,0.0,6.0,1.0,1.0,1.0,1,1,417.262795176038,250.0,12591.903873095878,0,5,2,3,35.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.02382483244976053,12591.903873095878,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +6145,2,70.0,0.0,5,400,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1120.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,106150,1,2,2,0,2,,280.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1261.83115455452,1000.0,14310.381676557507,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07826485870986401,14310.381676557507,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6146,2,89.0,0.0,5,111,416.0,0.0,0.0,0,72,2009.1708312247258,0.0,709.3634260427774,2367.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,106151,2,1,2,0,1,,161.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,421.618686668935,416.0,15061.298827627761,0,5,0,1,80.0,6,4,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15715776090028058,15061.298827627761,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6147,2,41.0,0.0,9,111,1300.0,0.0,0.0,0,23,0.0,529.7309108040896,2216.7607063836795,1800.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,106152,2,1,1,0,1,,500.0,,32,1.0,0.0,6.0,4.0,2.1,2,1,402.876607828618,1300.0,50481.47204682291,0,1,1,2,160.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035656646429217675,24038.796212772813,6,3,6,6_1,6_2,6_0_0 +6148,1,48.0,212.0,2,111,200.0,0.0,0.0,0,62,0.0,0.0,341.04010867441224,200.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,106153,1,3,0,1,1,250.0,0.0,199.0,12,1.0,0.0,1.0,1.0,1.0,1,1,326.27046944464,200.0,6060.0,0,4,2,3,32.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.033003300330033,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6149,2,31.0,0.0,7,111,1133.0,0.0,0.0,35,37,0.0,0.0,1931.9922156405453,1133.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,106154,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,755.621923722598,1133.0,108313.76413428022,1,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01046035108331552,60174.313407933456,10,5,10,10_0,10_4,10_0_0 +6150,2,41.0,0.0,7,112,1988.0,0.0,0.0,42,23,0.0,264.8654554020448,3389.9386802236577,2188.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,1.0,1,,5,106155,2,1,2,0,1,,521.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,739.689121931862,1988.0,106398.0,1,1,1,2,110.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020564296321359424,46260.0,10,5,10,10_1,10_0,10_0_0 +6151,2,72.0,0.0,2,111,460.0,1742.0,0.0,75,78,0.0,0.0,784.3922499511482,2202.0,0.0,3307.1940515111123,50,0,0,0,0,0,0,0,0,0,,1,,2,106156,2,1,2,0,1,,144.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,388.408926185357,460.0,44340.258462743135,5,5,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049661415524905626,29560.172308495425,8,4,8,8_1,8_3,8_0_1 +6152,2,59.0,0.0,1,111,0.0,0.0,2400.0,0,37,0.0,529.7309108040896,1512.763896995385,2800.0,0.0,2872.157154155234,12,0,0,0,0,0,0,0,0,3,15.0,2,,1,106157,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,989.203837010967,0.0,95279.72680208743,0,1,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02938715395160701,95279.72680208743,10,5,10,10_0,10_4,10_1_0 +6153,2,56.0,0.0,1,111,420.0,0.0,0.0,33,47,3164.0485531098047,0.0,716.1842282162656,3420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,106158,2,3,3,0,1,,200.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1755.19984667785,420.0,40750.496059996556,1,1,0,1,110.0,7,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08392535872360345,27166.997373331036,7,4,7,7_1,7_2,7_1_0 +6154,0,48.0,0.0,1,112,1000.0,1000.0,0.0,85,52,0.0,0.0,1705.2005433720612,2060.0,83.13535352379125,1898.504047939789,50,2,2,2,1,2,2,2,2,1,5.0,1,,1,106159,2,1,3,0,1,,180.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,218.174005383315,1000.0,12527.192881826886,6,1,5,0,95.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.16444226726870534,6263.596440913443,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6155,2,42.0,0.0,9,221,2180.0,0.0,0.0,54,56,0.0,0.0,3717.3371845510933,2180.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,35.0,1,2007.0,6,106160,2,1,1,0,1,,314.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,2348.4990915879,2180.0,44802.07581809461,1,1,1,2,116.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04865845968502076,17231.567622344082,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6156,2,87.0,0.0,5,111,496.0,540.0,0.0,78,77,0.0,0.0,845.7794695125424,1036.0,0.0,1025.192185887486,60,2,1,2,1,1,2,2,2,0,,2,,3,106161,1,3,0,1,2,552.0,0.0,298.0,41,0.0,2.0,3.0,2.0,1.5,2,2,355.061521731631,496.0,36435.90137712868,5,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.028433494461325762,24290.600918085784,7,4,7,7_0,7_3,7_0_0 +6157,1,32.0,295.0,5,111,0.0,0.0,0.0,85,55,0.0,0.0,0.0,877.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,50.0,2,,3,106162,2,2,0,1,1,,647.0,310.0,42,1.0,0.0,3.0,4.0,2.1,2,2,689.978492037896,0.0,14356.072644210699,6,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06108913083228674,6836.225068671761,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6158,2,52.0,0.0,1,300,800.0,0.0,0.0,64,22,2953.111982902484,0.0,1364.160434697649,3690.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106163,2,2,4,0,1,,150.0,,43,3.0,1.0,8.0,3.0,2.0,3,3,291.219181551208,800.0,62110.92477625407,1,1,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05940983833830698,31055.462388127035,8,4,8,8_1,8_0,8_1_0 +6159,2,69.0,0.0,6,111,1000.0,,,75,75,0.0,0.0,,1250.0,346.39730634913025,,41,0,0,0,0,0,0,0,0,0,,1,,4,106164,2,2,0,0,2,,400.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,162.06119682539406,1000.0,41706.05399514855,5,5,0,1,127.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029971667905705154,27804.0359967657,7,4,7,7_1,7_3,7_0_0 +6161,2,32.0,0.0,2,300,810.0,,,0,52,0.0,0.0,,936.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,,2,106166,2,1,0,0,2,,340.0,,22,1.0,6.0,5.0,2.0,1.5,2,2,82.71339437204318,810.0,36266.0,0,1,0,1,65.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025809297965036122,24177.333333333332,7,4,7,7_1,7_1,7_0_1 +6162,2,68.0,0.0,1,300,350.0,0.0,0.0,0,11,0.0,132.4327277010224,596.8201901802214,540.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106167,2,1,4,0,1,,250.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,937.553555595519,350.0,14275.638293150627,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03782667989417251,14275.638293150627,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6163,1,79.0,30.0,1,221,250.0,1300.0,0.0,0,77,0.0,0.0,426.3001358430153,1550.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,0,,1,,1,106168,2,1,3,0,2,,250.0,365.0,11,0.0,2.0,3.0,1.0,1.0,1,1,620.102935953984,250.0,13117.438468754024,0,5,2,3,60.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11816331394975689,13117.438468754024,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +6164,2,75.0,0.0,6,112,1770.0,0.0,0.0,75,75,0.0,0.0,3018.2049617685484,1770.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,106169,2,1,0,0,1,,400.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1010.87303905311,1770.0,55226.38779147121,5,5,1,2,89.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03204989626848901,36817.59186098081,9,5,9,9_0,9_2,9_0_0 +6165,2,30.0,0.0,5,111,238.0,1100.0,0.0,0,37,0.0,0.0,405.83772932255056,1338.0,0.0,2088.354452733768,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,106170,2,2,0,0,1,,697.0,389.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1232.70522502988,238.0,31445.805864535483,0,1,2,3,48.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04254939452860369,31445.805864535483,8,4,8,8_0,8_3,8_0_0 +6166,1,74.0,119.0,5,111,550.0,0.0,0.0,86,78,0.0,0.0,937.8602988546337,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,106171,2,1,0,1,1,675.0,0.0,439.0,41,0.0,5.0,3.0,2.0,1.5,2,2,1609.76581030708,550.0,15246.493874384818,6,5,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03607386750891224,10164.329249589879,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6167,1,19.0,248.0,2,111,0.0,,,0,81,0.0,0.0,,349.0,0.0,,50,0,0,0,0,0,0,0,0,0,,8,,2,106172,2,2,0,0,2,,474.0,577.0,32,2.0,0.0,3.0,3.0,1.8,2,2,138.0538396338918,0.0,13373.556949602686,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02609627351311114,7429.753860890381,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6168,2,50.0,0.0,7,111,570.0,,,0,34,0.0,0.0,,714.0,199.524848457099,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,106173,2,1,0,0,2,,270.0,,32,1.0,1.0,4.0,2.0,1.3,1,1,146.35668520938,570.0,63171.0,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011302654699149926,48593.07692307692,10,5,10,10_1,10_2,10_0_0 +6169,1,35.0,344.0,2,221,603.0,0.0,0.0,0,55,1212.8852786920918,0.0,1028.235927653353,1813.0,83.13535352379125,0.0,42,1,2,2,1,1,2,2,2,1,5.0,8,,2,106174,2,1,0,1,1,,736.0,686.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1156.70915551093,603.0,16789.809919944033,0,1,2,3,65.0,1,2,5,1,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.10798216350540099,10493.63119996502,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +6170,2,70.0,0.0,2,111,240.0,100.0,0.0,0,74,0.0,0.0,409.2481304092947,340.0,0.0,189.8504047939789,20,0,0,0,0,0,0,0,0,0,,2,,2,106175,2,1,0,1,1,771.0,0.0,281.0,11,0.0,0.0,3.0,1.0,1.0,1,1,336.48066339318,240.0,32117.432848688564,0,5,2,3,107.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010586151190906376,32117.432848688564,8,4,8,8_0,8_3,8_0_1 +6171,2,36.0,0.0,9,400,1020.0,0.0,0.0,52,64,0.0,0.0,1739.3045542395023,1116.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,106176,2,1,1,0,1,,239.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1147.90918444941,1020.0,44312.23383321706,1,1,1,2,87.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02518491855320169,22156.11691660853,6,3,6,6_1,6_0,6_0_0 +6172,2,68.0,0.0,5,112,1900.0,0.0,0.0,75,75,0.0,238.3789098618403,3239.8810324069163,2080.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,106177,2,1,2,0,1,,188.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1879.8634565185,1900.0,89347.31373255019,5,5,0,1,112.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023279938848818838,59564.87582170012,10,5,10,10_1,10_0,10_0_0 +6173,2,42.0,0.0,8,111,420.0,,,0,22,0.0,0.0,,512.0,127.47420873647992,,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,106178,1,2,0,0,2,,500.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,126.12574172060916,420.0,22598.370634625502,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022656500695475243,14123.981646640937,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6174,2,62.0,0.0,1,111,480.0,2500.0,0.0,78,52,0.0,0.0,818.4962608185893,2980.0,0.0,4746.260119849472,71,2,2,1,2,2,2,2,1,1,10.0,1,,1,106179,1,1,2,0,2,,478.0,,42,1.0,0.0,8.0,2.0,1.5,2,2,111.642240973376,480.0,38006.92978490653,5,1,0,1,133.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07840675415943305,25337.95318993769,7,4,7,7_1,7_3,7_1_0 +6175,1,31.0,319.0,2,111,294.0,264.0,0.0,85,22,0.0,0.0,501.328959751386,558.0,0.0,501.2050686561043,71,2,2,2,2,2,2,1,2,0,,2,,2,106180,2,2,0,1,1,412.0,350.0,284.0,42,1.0,0.0,3.0,4.0,2.1,2,2,298.245671749072,294.0,9284.151507806073,6,1,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06010242287955298,4421.024527526702,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6176,2,54.0,0.0,2,111,500.0,600.0,0.0,0,43,0.0,0.0,852.6002716860306,1100.0,0.0,1139.1024287638734,33,0,0,0,0,0,0,0,0,0,,1,,2,106181,2,1,1,0,1,,200.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,249.620475839693,500.0,53396.31260407425,0,1,0,1,130.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020600673461411784,35597.5417360495,9,5,9,9_1,9_2,9_0_1 +6177,2,31.0,0.0,1,111,294.0,798.0,0.0,38,38,0.0,0.0,501.328959751386,1092.0,0.0,1515.0062302559516,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,106182,1,2,5,0,1,,295.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,958.566936677895,294.0,72561.7880330061,1,1,1,2,150.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015049243267038612,48374.5253553374,10,5,10,10_1,10_3,10_1_0 +6178,2,86.0,0.0,9,112,1130.0,0.0,0.0,0,75,0.0,728.3800023556231,1926.8766140104292,1880.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,2007.0,6,106183,2,1,1,0,1,,681.0,,11,0.0,5.0,8.0,1.0,1.0,1,1,752.432342211849,1130.0,45808.26359795736,0,5,0,1,150.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04104063005967839,45808.26359795736,10,5,10,10_1,10_1,10_0_0 +6179,2,59.0,0.0,2,300,210.0,0.0,0.0,0,11,2636.7071275915036,0.0,358.0921141081328,2780.0,96.99124577775646,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,106184,2,2,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1530.98252692601,210.0,14277.890510215286,0,1,0,1,110.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.19470663386940923,14277.890510215286,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +6180,1,61.0,253.0,8,111,300.0,,,0,77,0.0,0.0,,426.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,106185,2,1,0,0,2,,180.0,374.0,11,0.0,0.0,2.0,1.0,1.0,1,1,195.42628901352572,300.0,5485.694789081886,0,7,2,3,49.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07765652599701005,5485.694789081886,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6181,2,48.0,0.0,2,112,600.0,0.0,0.0,54,38,1877.3354748451507,0.0,1023.1203260232367,2440.0,83.13535352379125,0.0,31,2,1,2,1,1,2,2,2,2,30.0,1,,2,106186,1,2,3,0,1,,180.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,666.284488131755,600.0,70696.16597098693,1,1,0,1,150.0,7,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03451389430370742,47130.77731399128,10,5,10,10_1,10_0,10_0_1 +6182,2,80.0,0.0,2,111,265.0,55.0,0.0,0,77,0.0,0.0,451.8781439935962,320.0,0.0,104.4177226366884,44,0,0,0,0,0,0,0,0,0,,2,,2,106187,2,1,0,1,1,270.0,0.0,210.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1075.93179835051,265.0,29281.00335930608,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010928587250692613,29281.00335930608,8,4,8,8_0,8_4,8_0_1 +6183,2,51.0,0.0,2,111,699.0,584.0,0.0,85,62,0.0,715.1367295855209,1191.9351798170708,1823.0,0.0,1108.7263639968369,71,0,0,0,0,0,0,0,0,0,,1,,2,106188,1,1,1,0,1,,330.0,,42,1.0,1.0,6.0,3.0,2.0,3,3,180.337006160273,699.0,32990.39448920934,6,1,1,2,61.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05525850867276763,16495.19724460467,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +6184,1,22.0,255.0,2,111,400.0,,,63,55,0.0,0.0,,425.0,34.63973063491302,,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,106189,1,1,0,0,2,,200.0,429.0,43,2.0,0.0,3.0,2.0,1.5,2,2,132.33951365782366,400.0,11465.560322636145,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037067529893060176,7643.70688175743,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +6185,2,43.0,0.0,2,111,276.0,150.0,0.0,0,43,0.0,0.0,470.6353499706889,426.0,0.0,284.77560719096834,33,2,2,1,1,1,1,2,2,2,20.0,2,,2,106190,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1480.47053152061,276.0,27435.156862739477,0,1,1,2,44.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015527521935861923,27435.156862739477,7,4,7,7_0,7_3,7_0_1 +6186,2,36.0,0.0,6,300,1200.0,,,43,42,0.0,0.0,,1300.0,138.5589225396521,,10,0,0,0,0,0,0,0,0,2,25.0,1,,4,106191,2,2,0,0,2,,1250.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,88.14330007594224,1200.0,86289.9349634088,1,1,1,2,68.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015065488235114145,41090.44522067085,9,5,9,9_1,9_1,9_0_0 +6187,0,80.0,0.0,2,111,360.0,,,86,77,0.0,0.0,,486.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,106192,2,1,0,0,2,,720.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,82.83219067217998,360.0,19244.480629907077,6,5,0,1,109.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025253994085178214,12829.653753271385,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +6188,2,82.0,0.0,2,111,392.0,1825.0,0.0,0,74,0.0,0.0,668.438613001848,2217.0,0.0,3464.769887490115,41,0,0,0,0,0,0,0,0,0,,1,,2,106193,2,1,3,0,1,,220.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,616.650035124691,392.0,36918.12885701466,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06005179754874704,36918.12885701466,9,5,9,9_1,9_4,9_0_1 +6189,2,38.0,0.0,2,211,720.0,0.0,0.0,0,31,0.0,0.0,1227.744391227884,720.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,8,,2,106194,2,2,0,0,1,,420.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2061.24442072746,720.0,37577.52994053032,0,1,1,2,36.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01916038656983208,37577.52994053032,9,5,9,9_0,9_1,9_0_1 +6190,2,43.0,0.0,9,111,900.0,,,0,63,0.0,0.0,,1038.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,106195,1,1,0,0,2,,347.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,106.71523384020679,900.0,20304.345113868094,0,4,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05112206250331287,11280.191729926719,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +6191,2,90.0,0.0,7,111,550.0,,,77,78,0.0,0.0,,760.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,5,106196,2,1,0,0,2,,600.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,93.0475576248084,550.0,24261.26248339051,5,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0313256575382383,16174.174988927007,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +6192,1,57.0,270.0,2,111,539.0,320.0,0.0,0,78,0.0,0.0,919.1030928775409,859.0,0.0,607.5212953407324,70,0,0,0,0,0,0,0,0,0,,8,,2,106197,2,1,0,1,1,418.0,0.0,298.0,21,1.0,1.0,3.0,2.0,1.5,2,2,1838.7608791206,539.0,14446.14010947697,0,7,2,3,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05946225036516696,9630.760072984647,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6193,2,64.0,0.0,2,111,655.0,1771.0,0.0,67,74,0.0,0.0,1116.9063559087,2426.0,0.0,3362.250668901366,20,2,2,2,1,1,1,2,2,0,,1,,2,106198,1,1,4,0,1,,340.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,2245.79979555279,655.0,53094.134883860075,1,5,1,2,150.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04569242921664917,35396.08992257338,9,5,9,9_1,9_3,9_0_1 +6194,1,29.0,306.0,6,300,0.0,,,63,55,0.0,0.0,,1446.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,106199,2,1,0,0,2,,630.0,800.0,43,4.0,2.0,8.0,6.0,3.0999999999999996,4,4,108.5843385795152,0.0,40897.02108055375,4,1,2,3,130.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.035357098433938576,13192.587445339921,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +6195,2,49.0,0.0,8,112,870.0,0.0,0.0,55,64,0.0,132.4327277010224,1483.5244727336933,1045.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106200,2,1,2,0,1,,354.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,1081.93639647595,870.0,41561.13323806357,1,1,1,2,80.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025143683980275628,20780.566619031786,5,3,5,5_1,5_1,5_0_0 +6196,2,51.0,0.0,5,112,892.0,0.0,0.0,55,62,2531.2388424878436,0.0,1521.0388846878786,3412.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,106201,1,3,2,0,2,,493.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,961.859527799828,892.0,38869.99926399179,1,1,0,1,90.0,4,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0877797804117993,25913.332842661195,7,4,7,7_1,7_0,7_0_0 +6197,1,36.0,565.0,2,111,850.0,0.0,0.0,85,85,1054.6828510366015,927.0290939071567,1449.420461866252,2750.0,277.1178450793042,0.0,71,2,2,2,2,1,2,2,1,0,,1,,2,106202,1,2,5,0,1,,696.0,680.0,41,0.0,0.0,7.0,7.0,3.1999999999999993,3,2,1435.58047440478,850.0,15832.718817645658,7,6,2,3,120.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.173690951735662,4947.724630514269,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +6198,2,49.0,0.0,2,221,442.0,795.0,0.0,0,63,0.0,0.0,753.6986401704511,1237.0,0.0,1509.3107181121322,50,0,0,0,0,0,0,0,0,0,,1,,2,106203,2,2,3,0,1,,308.0,507.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1984.76378897184,442.0,22015.212470290724,0,1,2,3,68.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05618841978787701,16934.778823300556,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +6199,1,44.0,100.0,1,112,300.0,0.0,0.0,0,63,0.0,1536.2196413318597,511.56016301161833,1550.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,106204,2,2,2,0,1,,200.0,,32,1.0,1.0,8.0,2.0,1.5,2,1,1199.22026052103,300.0,18707.63015620881,0,1,1,2,180.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08285389368174868,12471.753437472538,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +6200,1,50.0,168.0,7,111,465.0,0.0,0.0,85,62,0.0,0.0,792.9182526680084,465.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,10.0,1,,5,106205,2,2,5,0,1,,1125.0,383.0,42,2.0,1.0,4.0,5.0,2.8,4,2,1351.23965400638,465.0,33924.71122285786,6,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.013706822644570998,12115.96829387781,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +6201,1,44.0,153.0,5,111,350.0,130.0,0.0,85,62,0.0,0.0,596.8201901802214,480.0,0.0,246.80552623217258,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,106206,2,2,0,1,1,960.0,0.0,325.0,42,1.0,0.0,4.0,3.0,2.0,3,3,377.917945887513,350.0,30987.97941009544,6,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015489877337520849,15493.98970504772,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +6202,2,56.0,0.0,6,112,0.0,,,0,67,0.0,0.0,,1613.0,0.0,,71,0,0,0,0,0,0,0,0,2,90.0,1,,4,106207,2,2,0,0,1,,320.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,89.96197654298086,0.0,34672.52992459277,0,1,0,1,130.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04652097794732655,34672.52992459277,9,5,9,9_1,9_1,9_0_0 +6203,2,50.0,0.0,1,120,828.0,0.0,0.0,85,11,949.2145659329414,0.0,1411.9060499120667,1858.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106208,2,1,2,0,1,,300.0,,42,1.0,0.0,8.0,3.0,1.8,2,2,1171.89216291677,828.0,9313.750549043963,6,4,0,1,108.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1994899895822011,5174.30586057998,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6204,2,55.0,0.0,7,112,313.0,730.0,0.0,0,33,0.0,0.0,533.7277700754552,1043.0,0.0,1385.9079549960459,50,2,2,2,2,1,2,2,2,2,30.0,1,,5,106209,2,2,3,0,1,,217.0,505.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2291.6089852974,313.0,24325.148785550136,0,1,2,3,65.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.04287743557891712,24325.148785550136,7,4,7,7_1,7_1,7_0_0 +6205,2,57.0,0.0,1,112,538.0,1619.0,0.0,52,77,0.0,0.0,917.3978923341689,2157.0,0.0,3073.6780536145184,60,0,0,0,0,0,0,0,0,0,,1,,1,106210,1,2,2,0,1,,259.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1734.21694057296,538.0,35875.2716303366,1,5,0,1,120.0,9,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060124980299132075,23916.847753557737,6,3,6,6_1,6_2,6_1_0 +6206,2,41.0,0.0,8,300,1980.0,0.0,0.0,34,34,0.0,0.0,3376.297075876681,1980.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,106211,2,1,2,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1974.25998953156,1980.0,72068.79329404286,1,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027473749864543175,34318.47299716326,9,5,9,9_1,9_0,9_0_0 +6207,2,46.0,0.0,9,111,720.0,,,54,68,0.0,0.0,,1032.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,106212,2,1,0,0,2,,0.0,,43,2.0,6.0,4.0,5.0,2.4,2,2,139.39377572549864,720.0,27711.37656934445,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037241022560447035,11546.406903893521,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +6208,2,42.0,0.0,9,111,1500.0,0.0,0.0,62,46,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,8.0,1,2008.0,6,106213,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,371.184499822496,1500.0,76329.01787557933,1,1,1,2,109.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019651766022262804,36347.15136932349,9,5,9,9_1,9_3,9_0_0 +6210,2,51.0,0.0,1,400,720.0,0.0,0.0,54,21,997.7299770806251,0.0,1227.744391227884,1864.0,274.3466666285112,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106215,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,1068.71101491792,720.0,125964.33552537224,1,1,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01479783934258555,50385.7342101489,10,5,10,10_1,10_0,10_1_0 +6211,2,63.0,0.0,5,112,2200.0,0.0,0.0,86,34,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,10,2,2,2,2,2,2,2,1,2,10.0,1,,3,106216,2,1,3,0,1,,311.0,,41,0.0,4.0,11.0,2.0,1.5,2,2,1707.43627548622,2200.0,81458.77636231885,6,5,0,1,225.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.027007525747927568,54305.85090821257,10,5,10,10_1,10_1,10_0_0 +6212,0,81.0,0.0,5,111,1531.0,0.0,0.0,0,78,0.0,0.0,2610.6620319026256,1531.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,106217,2,1,0,0,1,,165.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,415.757046491943,1531.0,12436.885964777437,0,5,0,1,82.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12310155486959937,12436.885964777437,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +6213,2,44.0,0.0,1,400,360.0,0.0,0.0,0,42,0.0,26.486545540204478,613.872195613942,2780.0,3325.41414095165,0.0,20,1,2,2,1,1,2,2,2,2,12.0,1,,1,106218,2,3,2,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1802.47881186861,360.0,27074.236241628445,0,1,1,2,138.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.10268064351619878,27074.236241628445,7,4,7,7_1,7_0,7_1_0 +6214,2,55.0,0.0,1,111,674.0,2086.0,0.0,85,77,0.0,0.0,1149.3051662327691,2760.0,0.0,3960.2794440024,50,0,0,0,0,0,0,0,0,0,,1,,1,106219,2,1,2,0,1,,290.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,241.221434483153,674.0,22462.698197845202,6,5,0,1,88.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12287036827413551,14975.132131896802,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +6215,2,62.0,0.0,7,111,420.0,0.0,0.0,78,68,0.0,0.0,716.1842282162656,600.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,5,106220,1,1,0,1,2,600.0,200.0,430.0,42,1.0,0.0,3.0,2.0,1.5,2,2,288.436295137682,420.0,31782.75438212877,7,1,2,3,76.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018878162439482465,21188.502921419178,5,3,5,5_0,5_2,5_0_0 +6216,2,70.0,0.0,2,111,360.0,480.0,0.0,77,78,0.0,0.0,613.872195613942,1056.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,0,,2,,2,106221,2,1,0,1,1,760.0,480.0,359.0,41,1.0,3.0,5.0,4.0,2.3,3,3,261.514864575074,360.0,38383.2314553737,5,5,2,3,80.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027512013969635655,16688.361502336393,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +6217,2,24.0,0.0,7,111,360.0,260.0,0.0,0,54,0.0,0.0,613.872195613942,620.0,0.0,493.61105246434516,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,106222,2,1,0,0,1,,0.0,210.0,12,1.0,0.0,2.0,1.0,1.0,1,1,982.049406580585,360.0,18382.89676649968,0,1,2,3,22.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03372700221707524,18382.89676649968,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +6218,2,71.0,0.0,1,111,800.0,0.0,0.0,77,72,0.0,0.0,1364.160434697649,910.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106223,1,2,2,0,2,,0.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1122.16217286868,800.0,17779.828724299194,5,5,0,1,160.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05118159539727897,11853.219149532795,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +6219,0,27.0,0.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,640.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,106224,2,1,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,837.056433556746,0.0,7692.5410182689275,0,7,5,0,42.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08319747642294936,7692.5410182689275,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +6220,2,50.0,0.0,1,400,247.5,0.0,0.0,0,11,0.0,0.0,422.0371344845851,424.0,243.8637036697877,0.0,70,2,2,2,1,2,2,2,2,0,,5,,1,106225,2,2,4,0,2,,268.0,,22,1.0,0.0,5.0,3.0,2.0,3,3,1684.36592699875,247.5,18017.323389771012,0,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,0.023532907237526626,9008.661694885506,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +6221,2,49.0,0.0,2,112,479.0,0.0,0.0,67,53,0.0,198.6490915515336,816.7910602752173,2393.0,2444.179393599463,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,106226,2,1,2,0,1,,20.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,754.661417890621,479.0,44679.390124280595,1,1,1,2,92.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05355937029005117,29786.26008285373,8,4,8,8_1,8_0,8_0_1 +6222,1,75.0,332.0,6,111,300.0,,,0,77,0.0,0.0,,384.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,4,106227,2,1,0,0,2,,270.0,333.0,11,0.0,4.0,3.0,1.0,1.0,1,1,128.82423517155607,300.0,7594.8519793459545,0,5,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05056056405632133,7594.8519793459545,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6223,1,39.0,356.0,7,111,0.0,,,0,69,0.0,0.0,,957.0,223.07986528883987,,71,0,0,0,0,0,0,0,0,1,60.0,1,,5,106228,2,2,0,0,2,,324.0,580.0,32,1.0,1.0,3.0,2.0,1.3,1,1,77.37627796373549,0.0,13716.635494957656,0,1,2,3,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06976929585624703,10551.25807304435,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +6224,1,26.0,295.0,2,111,600.0,0.0,0.0,21,68,0.0,0.0,1023.1203260232367,690.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,106229,2,2,5,0,1,,150.0,600.0,43,2.0,2.0,4.0,2.0,1.5,2,2,829.504184346796,600.0,24690.540966369495,1,1,2,3,75.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02794592475474051,16460.36064424633,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +6225,1,27.0,16.0,1,112,1500.0,0.0,0.0,55,55,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,106230,2,2,5,0,1,,500.0,550.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2070.86964208227,1500.0,34192.38238861898,1,1,2,3,110.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.045624197292530574,18995.76799367721,5,3,5,5_1,5_0,5_1_0 +6227,2,40.0,0.0,2,111,0.0,0.0,900.0,54,63,1027.26109690965,0.0,567.2864613732694,1874.0,0.0,1077.0589328082126,50,1,2,2,1,1,2,2,2,0,,2,,2,106232,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,888.976699005713,0.0,51312.56529264962,1,1,1,2,57.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.036521268997409595,28506.980718138675,8,4,8,8_0,8_4,8_0_1 +6228,2,56.0,0.0,2,111,467.0,520.0,0.0,68,63,0.0,0.0,796.3286537547526,987.0,0.0,987.2221049286903,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,106233,1,2,0,1,1,480.0,0.0,353.0,42,1.0,4.0,4.0,2.0,1.5,2,2,379.734848428035,467.0,30750.508296975844,5,1,2,3,75.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03209703041224416,20500.338864650563,5,3,5,5_0,5_3,5_0_1 +6229,2,22.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,589.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,1.0,2,,1,106234,2,1,0,0,2,,137.0,270.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2512.18339445184,0.0,14078.458436662984,0,1,3,4,19.0,9,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041836966927155314,14078.458436662984,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +6230,2,54.0,0.0,2,111,250.0,345.0,0.0,0,54,0.0,0.0,426.3001358430153,595.0,0.0,654.9838965392272,44,0,0,0,0,0,0,0,0,2,17.0,2,,2,106235,2,1,0,0,1,,113.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,374.06453192408,250.0,18966.37366207247,0,1,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0313713106470024,18966.37366207247,5,3,5,5_0,5_3,5_0_1 +6231,1,34.0,491.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,266.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,106236,1,1,0,1,2,792.0,0.0,629.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1359.2539582981,0.0,19792.405244745554,6,1,2,3,63.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01343949846977881,8246.835518643982,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6232,2,60.0,0.0,5,120,550.0,,,47,31,0.0,0.0,,726.0,243.8637036697877,,10,0,0,0,0,0,0,0,0,2,60.0,1,,3,106237,2,1,0,0,1,,340.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,103.76776414961773,550.0,151946.0,1,1,1,2,180.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004778013241546339,101297.33333333333,10,5,10,10_1,10_2,10_0_0 +6233,2,69.0,0.0,2,221,750.0,0.0,0.0,0,72,0.0,0.0,1278.9004075290459,810.0,83.13535352379125,0.0,50,2,2,2,1,2,2,2,2,0,,1,,2,106238,2,1,1,0,1,,610.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2125.43936500236,750.0,105978.440749454,0,5,0,1,70.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.007643063950289088,105978.440749454,10,5,10,10_1,10_1,10_0_1 +6234,2,33.0,0.0,5,111,0.0,,,0,35,0.0,0.0,,572.0,0.0,,71,0,0,0,0,0,0,0,0,1,10.0,3,,3,106239,2,1,0,0,2,,241.0,500.0,22,2.0,1.0,3.0,2.0,1.5,2,2,88.33996846032882,0.0,34095.0,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016776653468250476,22730.0,6,3,6,6_0,6_2,6_0_0 +6236,2,77.0,0.0,2,111,300.0,1300.0,0.0,78,77,0.0,0.0,511.56016301161833,1600.0,0.0,2468.055262321726,20,0,0,0,0,0,0,0,0,0,,1,,2,106241,2,1,2,0,1,,330.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,249.123228958179,300.0,33737.01608942772,5,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04742565245719515,22491.34405961848,6,3,6,6_1,6_2,6_0_1 +6237,2,63.0,0.0,5,112,1040.0,0.0,0.0,0,72,0.0,0.0,1773.4085651069436,2746.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106242,2,1,2,0,1,,391.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,343.250171867648,1040.0,18869.11352115508,0,5,0,1,150.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14552882926488975,18869.11352115508,5,3,5,5_1,5_0,5_0_0 +6238,2,30.0,0.0,1,400,1900.0,0.0,0.0,52,47,0.0,0.0,3239.8810324069163,1950.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,1,106243,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1153.53321378508,1900.0,50556.17945712983,1,1,1,2,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03857095257076424,24074.371170061822,6,3,6,6_1,6_0,6_1_0 +6239,1,24.0,268.0,2,111,0.0,0.0,0.0,68,56,0.0,0.0,0.0,419.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106244,2,1,0,1,1,70.0,0.0,415.0,43,2.0,0.0,4.0,4.0,2.1,2,2,332.291836918064,0.0,15870.27625485709,4,4,2,3,80.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026401556801619333,7557.274407074804,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6241,1,51.0,323.0,5,111,384.0,0.0,0.0,85,67,0.0,0.0,654.7970086548714,504.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,106246,1,1,0,1,1,970.0,0.0,420.0,42,1.0,2.0,4.0,4.0,2.3,3,2,197.902039084384,384.0,16497.70566568964,6,1,2,3,70.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030549702498825115,7172.915506821582,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6242,2,63.0,0.0,6,111,226.0,,,0,77,0.0,0.0,,394.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,4,106247,2,2,0,0,2,,496.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,120.17214816912062,226.0,34317.2393877288,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011481109991058518,34317.2393877288,9,5,9,9_1,9_2,9_0_0 +6243,2,60.0,0.0,6,112,120.0,,,0,46,0.0,0.0,,208.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,1,1.0,1,,4,106248,2,1,0,0,2,,210.0,1020.0,12,1.0,10.0,2.0,1.0,1.0,1,1,120.59536322509446,120.0,19104.21811969184,0,1,2,3,30.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010887647884715166,19104.21811969184,5,3,5,5_1,5_2,5_0_0 +6244,2,52.0,0.0,9,300,1025.0,0.0,0.0,52,62,0.0,0.0,1747.8305569563627,1079.0,74.82181817141213,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,106249,2,1,1,0,1,,300.0,,43,4.0,0.0,7.0,4.0,2.5,4,4,954.014926278047,1025.0,42850.74856477835,1,1,1,2,108.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025180423589773557,17140.29942591134,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6245,2,81.0,0.0,5,111,420.0,2300.0,0.0,0,78,0.0,0.0,716.1842282162656,2825.0,145.4868686666347,4366.559310261515,71,0,0,0,0,0,0,0,0,0,,2,,3,106250,1,1,0,1,1,,130.0,242.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2392.80730511801,420.0,16685.23625168833,0,5,2,3,35.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.16931135750110501,16685.23625168833,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +6246,2,41.0,0.0,2,111,590.0,1333.0,0.0,53,53,0.0,0.0,1006.0683205895161,1923.0,0.0,2530.7058959037386,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,106251,2,1,1,0,1,,500.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,85.5814873014147,590.0,49223.67750684607,1,1,1,2,95.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039066565063785565,32815.785004564044,8,4,8,8_1,8_3,8_0_1 +6247,2,52.0,0.0,8,111,620.0,770.0,0.0,55,47,0.0,0.0,1057.224336890678,1390.0,0.0,1461.8481169136376,50,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,106252,2,1,2,0,1,,500.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,629.860567060517,620.0,82761.0877911357,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016795332650870243,33104.435116454275,8,4,8,8_1,8_4,8_0_0 +6248,2,68.0,0.0,6,111,468.0,,,0,74,0.0,0.0,,588.0,166.2707070475825,,10,0,0,0,0,0,0,0,0,0,,1,,4,106253,1,1,0,0,2,,150.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,95.41086837443598,468.0,81124.44500391625,0,5,0,1,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007248123546134763,81124.44500391625,10,5,10,10_1,10_3,10_0_0 +6249,2,49.0,0.0,7,211,600.0,,,0,46,0.0,0.0,,642.0,58.19474746665388,,43,0,0,0,0,0,0,0,0,0,,1,,5,106254,1,2,0,0,1,,360.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,95.73680537237341,600.0,29387.17477854882,0,1,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02184626473411892,29387.17477854882,8,4,8,8_1,8_2,8_0_0 +6250,2,32.0,0.0,6,111,1650.0,0.0,0.0,46,47,0.0,0.0,2813.5808965639008,1650.0,0.0,0.0,10,2,1,2,2,1,2,2,2,0,,1,,4,106255,2,2,5,0,1,,484.0,525.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1666.58435867734,1650.0,50373.90604564302,1,1,2,3,80.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03275505374756844,27985.503358690567,7,4,7,7_1,7_2,7_0_0 +6251,2,60.0,0.0,6,111,360.0,,,0,52,0.0,0.0,,426.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,35.0,1,,4,106256,2,1,0,0,2,,320.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,111.90232763462313,360.0,42485.03713422551,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010027059612872946,42485.03713422551,9,5,9,9_1,9_2,9_0_0 +6252,2,28.0,0.0,2,111,0.0,0.0,0.0,68,56,0.0,0.0,0.0,399.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,20.0,2,,2,106257,2,1,0,0,1,,0.0,648.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1215.9686632954,0.0,14169.455560556573,4,1,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02815916238240613,9446.303707037716,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +6253,1,38.0,16.0,8,211,336.0,,,0,52,0.0,0.0,,338.0,2.771178450793042,,71,0,0,0,0,0,0,0,0,2,10.0,8,2003.0,6,106258,1,1,0,0,2,,170.0,538.0,32,1.0,0.0,3.0,2.0,1.5,2,1,62.40237272555729,336.0,32924.19281197892,0,1,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010266007185968862,21949.461874652614,6,3,6,6_0,6_2,6_0_0 +6254,2,65.0,0.0,6,111,1200.0,,,0,43,0.0,0.0,,1340.0,193.98249155551292,,33,0,0,0,0,0,0,0,0,2,90.0,1,,4,106259,2,2,0,0,2,,700.0,,12,1.0,5.0,6.0,1.0,1.0,1,1,182.6181854206508,1200.0,47757.57034039619,0,1,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028058378817201853,47757.57034039619,10,5,10,10_1,10_2,10_0_0 +6255,2,71.0,0.0,1,212,2600.0,0.0,0.0,75,77,0.0,52.973091080408956,4433.521412767359,2640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106260,2,1,1,0,1,,335.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,783.833512070409,2600.0,38740.45292772514,5,5,0,1,200.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0681458217570463,25826.968618483428,7,4,7,7_1,7_0,7_1_0 +6256,1,29.0,20.0,9,111,0.0,,,0,68,0.0,0.0,,207.0,0.0,,71,0,0,0,0,0,0,0,0,4,90.0,1,2013.0,6,106261,2,1,0,0,1,,297.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,238.8659852569326,0.0,18376.41083813941,0,1,1,2,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011264441235193809,18376.41083813941,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +6257,2,53.0,0.0,2,111,396.0,552.0,0.0,65,54,0.0,0.0,675.2594151753362,948.0,0.0,1047.9742344627634,41,0,0,0,0,0,0,0,0,1,15.0,2,,2,106262,2,1,0,1,1,688.0,0.0,400.0,43,2.0,1.0,4.0,2.0,1.5,2,2,243.876594364307,396.0,27960.54411519053,1,1,2,3,74.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03390491959292617,18640.36274346035,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +6258,2,48.0,0.0,1,300,500.0,0.0,0.0,0,64,0.0,0.0,852.6002716860306,525.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,106263,1,2,0,0,1,,0.0,440.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1948.14283015056,500.0,23585.52348885392,0,1,2,3,90.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022259416893930944,23585.52348885392,6,3,6,6_0,6_0,6_1_0 +6259,2,31.0,0.0,1,111,334.0,84.0,0.0,0,38,0.0,0.0,569.5369814862685,852.0,0.0,159.4743400269423,20,0,0,0,0,0,0,0,0,3,45.0,2,,1,106264,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,819.53545019206,334.0,38119.9591987335,0,1,1,2,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022350496115649224,38119.9591987335,9,5,9,9_0,9_4,9_1_0 +6260,2,49.0,0.0,6,111,780.0,,,37,54,0.0,0.0,,930.0,207.83838380947813,,42,0,0,0,0,0,0,0,0,2,20.0,2,,4,106265,2,1,0,0,2,,520.0,740.0,43,4.0,0.0,3.0,5.0,2.8,4,3,84.17641364280776,780.0,80339.95463840009,1,1,2,3,84.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011575809373876443,28692.840942285748,8,4,8,8_0,8_2,8_0_0 +6261,2,40.0,0.0,7,112,488.0,0.0,0.0,52,42,1033.5891940158695,0.0,832.1378651655658,4431.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,106266,2,1,2,0,1,,434.0,,43,2.0,1.0,6.0,5.0,2.8,4,4,663.653456284547,488.0,54557.12290485436,1,1,1,2,160.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08121762593176886,19484.6867517337,5,3,5,5_1,5_0,5_0_0 +6262,2,67.0,0.0,5,112,750.0,0.0,0.0,75,75,2109.365702073203,264.8654554020448,1278.9004075290459,3070.0,166.2707070475825,0.0,70,2,2,2,2,1,2,2,2,0,,1,,3,106267,1,2,3,0,2,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,764.332793970108,750.0,35570.69285514239,5,5,1,2,100.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.08630700595296882,23713.795236761594,6,3,6,6_1,6_0,6_0_0 +6263,2,68.0,0.0,2,111,440.0,0.0,0.0,68,77,0.0,0.0,750.2882390837069,444.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,106268,2,2,0,1,1,,658.0,,42,1.0,0.0,1.0,2.0,1.5,2,2,285.37336855934,440.0,26871.96663132855,1,5,0,1,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016522795152713713,17914.6444208857,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +6264,2,64.0,0.0,6,111,1500.0,0.0,0.0,0,75,0.0,198.6490915515336,2557.8008150580918,1650.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106269,2,1,2,0,1,,566.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,786.914568700957,1500.0,50921.54222101479,0,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03240278923286542,33947.69481400986,9,5,9,9_1,9_4,9_0_0 +6265,2,83.0,0.0,7,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,735.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,106270,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,639.68696699846,0.0,41094.70858904605,5,5,0,1,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017885514345657556,27396.472392697367,7,4,7,7_0,7_4,7_0_0 +6266,2,45.0,0.0,5,112,1743.0,0.0,0.0,0,43,0.0,0.0,2972.1645470975027,1803.0,83.13535352379125,0.0,33,2,2,1,2,1,2,2,1,0,,1,,3,106271,2,2,2,0,1,,169.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1598.40985775551,1743.0,10426.207182862387,0,1,0,1,110.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.17292961557138448,8020.1593714326045,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6267,2,60.0,0.0,2,111,550.0,1200.0,0.0,85,21,0.0,0.0,937.8602988546337,1750.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,106272,1,1,4,0,2,,500.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,533.995976045244,550.0,14014.132725279105,6,1,1,2,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12487394220573482,9342.75515018607,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +6268,2,58.0,0.0,9,120,447.0,,,77,74,0.0,0.0,,447.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,106273,2,1,0,0,1,,430.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,303.9244316249469,447.0,65965.69299418108,7,7,1,2,82.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006776249588394841,43977.128662787385,10,5,10,10_1,10_0,10_0_0 +6269,2,48.0,0.0,2,111,444.0,408.0,0.0,0,85,0.0,0.0,757.1090412571951,902.0,69.27946126982604,774.589651559434,71,2,2,2,1,2,2,2,2,0,,2,,2,106274,2,2,0,3,1,,384.0,298.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2154.42094806742,444.0,15791.522750302327,0,7,2,3,48.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05711925406197647,15791.522750302327,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6270,0,49.0,0.0,7,111,900.0,,,56,67,0.0,0.0,,987.0,120.54626260949732,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,106275,2,1,0,0,1,,560.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,107.13866771123372,900.0,51307.70506791732,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01923687677500841,25653.85253395866,7,4,7,7_1,7_2,7_0_0 +6271,2,73.0,0.0,2,221,338.0,0.0,0.0,86,72,2214.833987176863,0.0,576.3577836597567,2638.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106276,1,2,3,0,2,,425.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,953.757025348152,338.0,25352.0,5,5,0,1,100.0,1,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10405490691069738,16901.333333333332,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +6272,2,53.0,0.0,1,111,400.0,850.0,0.0,0,38,0.0,0.0,682.0802173488245,1250.0,0.0,1613.7284407488207,12,0,0,0,0,0,0,0,0,3,25.0,2,,1,106277,1,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,863.095225110851,400.0,163566.6990405856,0,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00764214236352498,163566.6990405856,10,5,10,10_0,10_4,10_1_0 +6273,2,54.0,0.0,6,111,1384.0,0.0,0.0,52,53,0.0,794.5963662061343,2359.9975520269327,1984.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,4,106278,1,1,3,0,1,,396.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,627.513238898581,1384.0,91614.67788080059,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.021655918526301787,45807.338940400296,10,5,10,10_1,10_4,10_0_0 +6274,1,46.0,200.0,9,120,1300.0,0.0,0.0,85,67,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,106279,2,1,1,0,1,,320.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,1644.04326415691,1300.0,30168.32383145799,6,1,1,2,93.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04309155547596006,12570.134929774164,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +6275,2,50.0,0.0,1,112,700.0,0.0,0.0,0,43,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,33,2,2,2,2,1,2,2,2,2,15.0,2,,1,106280,1,3,0,0,2,,300.0,550.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1881.71654824,700.0,25555.0,0,1,2,3,75.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.02973977695167286,25555.0,7,4,7,7_0,7_1,7_1_0 +6276,2,53.0,0.0,1,111,700.0,549.0,0.0,35,34,0.0,0.0,1193.6403803604428,1249.0,0.0,1042.2787223189441,12,0,0,0,0,0,0,0,0,3,45.0,1,,1,106281,2,2,2,0,2,,1380.0,,43,2.0,0.0,10.0,5.0,3.0,5,4,552.924409161768,700.0,317264.5400860564,1,1,0,1,280.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.003936777805868929,105754.84669535213,10,5,10,10_1,10_4,10_1_0 +6277,1,45.0,254.0,5,111,496.0,0.0,0.0,0,46,0.0,0.0,845.7794695125424,621.0,173.19865317456512,0.0,50,2,2,2,1,1,2,2,2,2,6.0,2,,3,106282,1,1,0,1,2,743.0,0.0,369.0,32,1.0,0.0,4.0,3.0,1.6,1,1,433.201219956933,496.0,20311.943661223275,0,1,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.030573145059747602,12694.964788264546,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6278,1,53.0,247.0,2,120,387.0,0.0,0.0,0,85,0.0,0.0,659.9126102849876,489.0,141.33010099044515,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,106283,2,2,0,0,1,,162.0,400.0,11,0.0,0.0,2.0,1.0,1.0,1,1,872.947752752788,387.0,7041.902025569951,0,7,2,3,50.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06944146598807895,7041.902025569951,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +6279,2,85.0,0.0,1,400,0.0,0.0,0.0,0,71,0.0,0.0,0.0,2095.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106284,1,2,4,0,2,,0.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1254.77037971388,0.0,13436.596340459837,0,5,0,1,90.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15591746205038584,13436.596340459837,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6280,2,42.0,0.0,2,111,430.0,425.0,0.0,85,63,0.0,0.0,733.2362336499863,855.0,0.0,806.8642203744104,50,2,1,2,1,2,2,2,2,2,15.0,8,,2,106285,1,3,0,1,1,700.0,0.0,255.0,42,1.0,1.0,4.0,5.0,2.5999999999999996,3,3,187.059918550647,430.0,55451.613407894416,5,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015418848027211364,21327.543618420932,6,3,6,6_0,6_4,6_0_1 +6281,2,27.0,0.0,9,111,550.0,0.0,0.0,0,64,0.0,0.0,937.8602988546337,550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,106286,2,1,0,0,1,,240.0,272.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1387.36069950457,550.0,10847.51065882374,0,1,2,3,55.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.050702877120716264,10847.51065882374,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +6282,2,39.0,0.0,8,111,390.0,1080.0,0.0,0,45,0.0,0.0,665.0282119151038,1470.0,0.0,2050.384371774972,31,1,2,2,2,1,2,2,2,1,5.0,2,2002.0,6,106287,2,1,0,0,1,,0.0,454.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1130.99021568258,390.0,27110.0,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05422353375138325,27110.0,7,4,7,7_0,7_4,7_0_0 +6283,2,59.0,0.0,5,120,1126.0,0.0,0.0,67,62,2953.111982902484,0.0,1920.0558118369408,3926.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,106288,2,2,3,0,1,,540.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,869.581217429266,1126.0,54743.26766025041,1,1,0,1,138.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.071716581194343,36495.51177350027,9,5,9,9_1,9_0,9_0_0 +6284,2,43.0,0.0,2,111,900.0,,,64,54,0.0,0.0,,1005.0,145.4868686666347,,50,2,2,2,2,1,2,2,2,2,10.0,1,,2,106289,2,2,0,0,2,,600.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,140.34826083748206,900.0,37310.18083722211,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.026936347598652544,24873.453891481407,7,4,7,7_1,7_2,7_0_1 +6285,2,48.0,0.0,9,112,1300.0,0.0,0.0,55,53,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,40.0,1,2008.0,6,106290,2,1,1,0,1,,250.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1779.57441764051,1300.0,61230.859542837,1,1,1,2,111.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02123112446413597,40820.573028558,9,5,9,9_1,9_0,9_0_0 +6286,1,47.0,236.0,9,112,0.0,0.0,0.0,55,62,0.0,0.0,0.0,869.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,106291,2,1,1,0,1,,334.0,640.0,43,2.0,1.0,4.0,5.0,2.4,2,2,287.459922292401,0.0,41276.1495866946,4,1,2,3,105.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021053320348468813,17198.39566112275,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +6287,2,31.0,0.0,1,111,1200.0,0.0,0.0,22,46,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,2,2,2,2,1,1,2,2,1,10.0,2,,1,106292,1,2,0,0,2,,0.0,1420.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1110.67352663337,1200.0,64564.67015751975,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.0185860161148866,43043.1134383465,9,5,9,9_0,9_4,9_1_0 +6288,2,71.0,0.0,6,111,720.0,0.0,0.0,77,77,0.0,105.94618216081791,1227.744391227884,950.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106293,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1256.19317819675,720.0,33849.09894421469,5,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028065739698585654,22566.065962809793,6,3,6,6_1,6_3,6_0_0 +6290,2,75.0,0.0,7,111,400.0,,,77,78,0.0,0.0,,400.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,106295,1,1,0,0,1,,270.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,95.79074177487038,400.0,35366.0,5,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011310298026352994,23577.333333333332,6,3,6,6_1,6_2,6_0_0 +6291,0,57.0,0.0,9,112,0.0,0.0,0.0,33,34,0.0,0.0,0.0,1627.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2010.0,6,106296,2,1,1,0,1,,0.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,2398.29827541763,0.0,96341.35446405136,1,1,5,0,100.0,8,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016887867199408078,48170.67723202568,10,5,10,10_1,10_1,10_0_0 +6292,2,60.0,0.0,5,111,600.0,0.0,0.0,67,65,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,106297,2,1,0,1,1,40.0,0.0,429.0,43,2.0,3.0,3.0,2.0,1.5,2,2,293.642553893488,600.0,32187.825591211247,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018640588140996624,21458.55039414083,6,3,6,6_0,6_4,6_0_0 +6293,2,63.0,0.0,6,111,1070.0,0.0,0.0,77,75,970.3082229536734,0.0,1824.5645814081054,2050.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106298,2,1,2,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,221.495334121126,1070.0,22485.070771602714,6,5,0,1,120.0,7,5,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09117160540980045,14990.047181068476,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6294,2,61.0,0.0,9,120,1968.0,0.0,0.0,78,77,475.6619658175073,0.0,3355.834669356216,2479.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,106299,2,1,1,0,1,,312.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1188.77516299504,1968.0,16153.051274359612,7,5,0,1,160.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15346945650664878,10768.700849573075,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6295,2,78.0,0.0,5,111,2803.0,0.0,0.0,74,74,0.0,0.0,4779.677123071888,2883.0,110.84713803172167,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,106300,2,1,2,0,1,,212.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,2708.92696225996,2803.0,75581.8474733356,5,5,0,1,191.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03814407951614426,50387.89831555707,10,5,10,10_1,10_3,10_0_0 +6296,2,48.0,0.0,2,120,200.0,1000.0,0.0,52,47,0.0,0.0,341.04010867441224,1200.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,106301,2,1,1,0,1,,200.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,1170.23326109478,200.0,71856.47263572374,1,1,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01669995695563012,35928.23631786187,9,5,9,9_1,9_1,9_0_1 +6297,1,45.0,89.0,2,111,370.0,942.0,0.0,85,63,0.0,0.0,630.9242010476627,1312.0,0.0,1788.3908131592812,50,0,0,0,0,0,0,0,0,0,,1,,2,106302,2,2,2,0,1,,490.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,431.296912110909,370.0,23139.281029385427,6,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05670011952116588,8570.104084957566,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +6298,2,38.0,0.0,7,111,350.0,,,43,23,0.0,0.0,,425.0,103.91919190473907,,42,0,0,0,0,0,0,0,0,2,20.0,2,,5,106303,1,1,0,0,2,,152.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,126.17777710874847,350.0,36001.84724858693,1,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011804949814531566,20001.02624921496,5,3,5,5_0,5_2,5_0_0 +6299,2,52.0,0.0,9,111,500.0,,,0,23,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,106304,2,1,0,0,2,,500.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,233.59196266234878,500.0,136891.8829034942,0,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0036525175152458756,136891.8829034942,10,5,10,10_0,10_2,10_0_0 +6300,2,36.0,0.0,9,111,864.0,0.0,0.0,54,31,0.0,39.72981831030672,1473.293269473461,894.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,106305,2,1,1,0,1,,130.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,288.150170916599,864.0,84693.39807581452,1,1,1,2,155.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010555722409434122,47051.887819896954,10,5,10,10_1,10_3,10_0_0 +6301,2,82.0,0.0,1,111,0.0,0.0,0.0,0,75,2109.365702073203,0.0,0.0,2963.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106306,2,1,2,0,2,,400.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,717.403863255139,0.0,33442.11584688196,0,5,0,1,120.0,7,6,2,1,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08860085329428284,33442.11584688196,8,4,8,8_1,8_2,8_1_0 +6302,1,23.0,271.0,9,211,700.0,,,46,53,0.0,0.0,,850.0,207.83838380947813,,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,106307,2,1,0,0,2,,500.0,507.0,43,2.0,0.0,3.0,3.0,1.8,2,2,169.91306879937773,700.0,32323.154386971237,4,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02629693840594396,17957.3079927618,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +6303,2,66.0,0.0,2,221,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106308,2,1,0,0,1,,480.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,3459.36232141097,1200.0,22119.54588956994,0,5,0,1,65.0,1,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05696319473692855,22119.54588956994,6,3,6,6_0,6_1,6_0_1 +6304,1,25.0,350.0,1,112,350.0,0.0,0.0,0,67,0.0,0.0,596.8201901802214,420.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,,1,106309,2,1,0,0,1,,160.0,410.0,32,1.0,0.0,1.0,2.0,1.3,1,1,1973.34131936374,350.0,19202.341155076865,0,1,2,3,30.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.021872332993571313,14771.031657751435,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +6305,2,23.0,0.0,1,112,166.0,740.0,0.0,0,52,0.0,0.0,283.06329019976215,926.0,27.711784507930417,1404.892995475444,50,2,2,1,2,2,2,2,1,2,20.0,1,,1,106310,1,1,2,0,2,,0.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1463.11930329731,166.0,17235.934279987385,0,1,2,3,50.0,4,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.05372496697641607,17235.934279987385,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6306,2,45.0,0.0,5,111,640.0,1200.0,0.0,67,64,0.0,0.0,1091.3283477581192,1840.0,0.0,2278.2048575277468,20,1,2,2,2,1,2,2,1,2,15.0,2,,3,106311,2,3,0,0,1,,700.0,306.0,43,2.0,1.0,3.0,3.0,1.8,2,2,692.539113627336,640.0,36415.15681318847,4,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0505284107230209,20230.642673993596,5,3,5,5_0,5_2,5_0_0 +6307,2,66.0,0.0,1,221,557.0,0.0,0.0,75,75,2098.818873562837,728.3800023556231,949.796702658238,3287.0,263.261952825339,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106312,2,2,1,0,1,,417.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,2643.44344556444,557.0,65360.0,5,5,0,1,160.0,1,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05029069767441861,43573.333333333336,10,5,10,10_1,10_1,10_1_0 +6308,2,64.0,0.0,2,300,1000.0,0.0,0.0,71,11,2109.365702073203,0.0,1705.2005433720612,3000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,106313,2,2,2,0,1,,600.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,830.427872375448,1000.0,174079.56618259387,5,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017233498829226566,116053.04412172925,10,5,10,10_1,10_0,10_0_1 +6309,2,55.0,0.0,2,111,2160.0,0.0,0.0,0,42,0.0,0.0,3683.2331736836522,3160.0,1385.589225396521,0.0,20,2,2,2,2,1,2,2,2,2,15.0,1,,2,106314,1,2,1,0,2,,195.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1767.13976832566,2160.0,19058.46602075006,0,1,0,1,150.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.16580557934513324,19058.46602075006,5,3,5,5_1,5_3,5_0_1 +6310,2,85.0,0.0,1,112,0.0,0.0,0.0,77,78,1845.6949893140527,0.0,0.0,2288.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106315,2,1,2,0,1,,120.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,600.645197866976,0.0,34320.0991272433,5,5,0,1,70.0,10,0,1,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06666647411236015,22880.066084828868,6,3,6,6_1,6_0,6_1_0 +6311,2,62.0,0.0,5,111,1000.0,0.0,0.0,85,72,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106316,2,1,1,0,1,,270.0,,41,0.0,0.0,3.0,4.0,2.3,3,2,914.400836476326,1000.0,37278.23114761268,6,5,1,2,98.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02682530713542294,16207.926585918556,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +6312,2,34.0,0.0,2,111,145.0,120.0,0.0,0,46,0.0,0.0,247.25407878894887,265.0,0.0,227.8204857527747,42,0,0,0,0,0,0,0,0,3,45.0,2,,2,106317,2,3,0,1,1,407.0,0.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,488.132533588762,145.0,17893.379127667606,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014809947193833512,17893.379127667606,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +6313,1,48.0,254.0,6,112,1200.0,0.0,0.0,0,56,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,60,2,2,2,2,1,2,2,2,1,5.0,1,,4,106318,1,3,3,0,2,,750.0,275.0,12,1.0,2.0,2.0,1.0,1.0,1,1,477.586052033063,1200.0,7544.420722135008,0,1,2,3,51.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.17496373129446194,7544.420722135008,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +6314,2,28.0,0.0,5,111,0.0,0.0,0.0,53,42,0.0,0.0,0.0,674.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,40.0,2,,3,106319,2,2,0,0,2,,0.0,505.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1892.94386759197,0.0,18422.196881237807,1,1,2,3,34.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.036586298819031686,12281.464587491871,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +6315,2,44.0,0.0,7,111,900.0,,,56,52,0.0,0.0,,1001.0,139.94451176504862,,50,0,0,0,0,0,0,0,0,2,7.0,1,,5,106320,2,1,0,0,2,,200.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,3,2,90.4967013005385,900.0,40365.07810417466,1,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024798663771109463,13918.992449715402,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6316,2,75.0,0.0,1,400,1000.0,0.0,0.0,86,74,4218.731404146406,0.0,1705.2005433720612,5100.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,106321,2,2,1,0,2,,400.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,921.07028161489,1000.0,70166.53823255979,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07268421855296,46777.69215503986,10,5,10,10_1,10_0,10_1_0 +6317,2,68.0,0.0,7,111,365.0,,,0,75,0.0,0.0,,448.0,115.00390570791124,,70,0,0,0,0,0,0,0,0,0,,1,,5,106322,2,2,0,0,2,,320.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,93.57343009790448,365.0,32170.0,0,5,0,1,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01392601802921977,32170.0,8,4,8,8_1,8_3,8_0_0 +6318,2,25.0,0.0,8,111,1500.0,,,0,21,0.0,0.0,,1500.0,0.0,,41,2,2,2,2,1,2,2,2,2,20.0,1,2000.0,6,106323,2,2,0,0,1,,600.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,113.88739749980964,1500.0,14041.329479768787,0,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.10682749109770907,10801.02267674522,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +6319,1,78.0,209.0,2,111,272.0,0.0,0.0,0,78,0.0,0.0,463.81454779720065,272.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,106324,1,1,0,1,1,808.0,165.0,294.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1799.45984787706,272.0,8954.103885508199,0,5,2,3,65.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030377132483376628,8954.103885508199,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6320,2,34.0,0.0,9,112,360.0,0.0,0.0,0,48,0.0,0.0,613.872195613942,410.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,106325,2,1,2,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1768.14718583626,360.0,25166.405320694485,0,1,1,2,140.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016291559909942903,25166.405320694485,7,4,7,7_1,7_0,7_0_0 +6321,2,61.0,0.0,6,111,1500.0,0.0,0.0,85,72,0.0,0.0,2557.8008150580918,1600.0,138.5589225396521,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,106326,2,1,2,0,1,,1000.0,,41,2.0,5.0,5.0,4.0,2.5,4,4,587.141686567039,1500.0,18439.47251779947,6,7,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08677037797342269,7375.789007119788,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +6322,1,54.0,68.0,9,400,972.0,0.0,0.0,11,11,0.0,0.0,1657.4549281576435,972.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,106327,2,1,1,0,1,,148.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,945.921228364934,972.0,21601.310750155688,1,1,1,2,113.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04499726943620745,14400.873833437125,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +6324,2,56.0,0.0,8,111,792.0,0.0,0.0,0,54,0.0,0.0,1350.5188303506725,792.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,106329,2,2,2,0,1,,172.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,1125.05564887701,792.0,22041.646836622407,0,1,0,1,60.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035931979396570515,14694.431224414939,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6325,1,62.0,65.0,1,111,270.0,735.0,0.0,0,77,0.0,0.0,460.40414671045653,1005.0,0.0,1395.4004752357448,41,2,2,2,1,1,2,2,2,0,,1,,1,106330,1,1,3,0,2,,248.0,500.0,21,0.0,2.0,3.0,2.0,1.5,2,2,390.298960444397,270.0,9240.11852518081,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.10876483859608654,6160.0790167872065,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +6326,2,52.0,0.0,6,111,385.0,576.0,0.0,22,46,0.0,0.0,656.5022091982436,961.0,0.0,1093.5383316133184,42,0,0,0,0,0,0,0,0,2,10.0,2,,4,106331,2,2,0,0,1,,384.0,405.0,43,2.0,0.0,2.0,2.0,1.5,2,2,880.38362998937,385.0,20312.90083120917,4,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0473098356549597,13541.933887472778,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +6327,1,52.0,246.0,2,211,240.0,245.0,0.0,0,67,0.0,0.0,409.2481304092947,485.0,0.0,465.1334917452483,71,2,2,2,2,1,2,2,2,0,,2,,2,106332,1,2,0,1,2,,250.0,234.0,12,1.0,0.0,2.0,1.0,1.0,1,1,335.798213173326,240.0,7204.897959183673,0,4,2,3,35.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06731531837752096,7204.897959183673,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +6328,2,55.0,0.0,7,111,900.0,,,56,64,0.0,0.0,,1176.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,106333,2,2,0,0,2,,420.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,93.15920356132074,900.0,40097.0,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029328877472130085,20048.5,5,3,5,5_1,5_2,5_0_0 +6329,2,31.0,0.0,1,111,360.0,0.0,0.0,0,54,0.0,0.0,613.872195613942,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,30.0,2,,1,106334,1,2,0,0,2,,0.0,670.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1142.60626725419,360.0,24518.773062480068,0,1,2,3,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014682627025529723,24518.773062480068,7,4,7,7_0,7_4,7_1_0 +6330,2,34.0,0.0,6,111,511.0,1443.0,0.0,21,46,0.0,0.0,871.3574776631233,1954.0,0.0,2739.5413411771156,43,0,0,0,0,0,0,0,0,1,10.0,1,,4,106335,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,640.022846907422,511.0,52409.39059955907,1,1,1,2,95.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0372833947818588,24956.8526664567,7,4,7,7_1,7_2,7_0_0 +6331,2,53.0,0.0,1,111,730.0,0.0,0.0,77,53,843.7462808292812,0.0,1244.7963966616046,1530.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,106336,1,2,3,0,1,,0.0,770.0,42,1.0,5.0,6.0,2.0,1.5,2,2,1535.18274417369,730.0,54132.80566070267,7,1,2,3,113.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028263822303795587,36088.53710713511,9,5,9,9_1,9_3,9_1_0 +6332,2,35.0,0.0,9,111,620.0,,,84,62,0.0,0.0,,707.0,120.54626260949732,,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,106337,2,1,0,0,1,,360.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,244.87770563687934,620.0,35409.181392253144,3,4,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01996657285487764,16861.514948691973,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +6333,2,63.0,0.0,1,111,1800.0,0.0,0.0,85,78,0.0,0.0,3069.36097806971,1858.0,80.36417507299822,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106338,2,1,2,0,1,,350.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1198.36248122306,1800.0,37665.218118889745,6,5,0,1,110.0,6,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04932933068740631,25110.145412593163,7,4,7,7_1,7_2,7_1_0 +6334,2,56.0,0.0,2,111,0.0,0.0,384.0,68,75,0.0,0.0,242.04222351926163,384.0,0.0,459.54514466483744,71,0,0,0,0,0,0,0,0,0,,2,,2,106339,2,1,0,1,1,,434.0,342.0,42,1.0,3.0,4.0,3.0,2.0,3,3,393.968439394963,0.0,18797.008880767746,1,7,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020428782176769175,9398.504440383873,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +6335,2,31.0,0.0,6,111,840.0,,,0,63,0.0,0.0,,1008.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,4,106340,2,1,0,0,2,,480.0,,22,1.0,2.0,3.0,2.0,1.5,2,2,84.75317883036678,840.0,30462.023889670556,0,1,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03309038177012937,20308.01592644704,5,3,5,5_1,5_2,5_0_0 +6336,2,70.0,0.0,5,112,1200.0,0.0,0.0,77,75,0.0,794.5963662061343,2046.2406520464733,1928.0,177.35542085075468,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,106341,2,1,1,0,1,,240.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,783.465001275417,1200.0,37526.16946846814,5,5,0,1,108.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051377479431254695,25017.446312312095,7,4,7,7_1,7_0,7_0_0 +6337,2,57.0,0.0,2,111,600.0,800.0,0.0,85,69,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,2,30.0,8,,2,106342,2,1,0,0,1,,600.0,,42,1.0,6.0,4.0,3.0,2.0,3,2,452.807985902125,600.0,17821.695862174383,6,1,1,2,85.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07855593602466455,8910.847931087192,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +6338,2,61.0,0.0,1,400,360.0,0.0,0.0,71,71,0.0,0.0,613.872195613942,431.0,98.37683500315299,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106343,1,3,4,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,941.546019571724,360.0,19935.57058555581,5,5,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021619647060028384,13290.380390370541,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6339,2,66.0,0.0,2,111,210.0,340.0,0.0,0,77,0.0,0.0,358.0921141081328,550.0,0.0,645.4913762995283,71,0,0,0,0,0,0,0,0,0,,2,,2,106344,2,2,0,1,1,500.0,160.0,305.0,11,0.0,5.0,4.0,1.0,1.0,1,1,334.317644127366,210.0,19564.42265301419,0,5,2,3,90.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028112253029621823,19564.42265301419,5,3,5,5_0,5_3,5_0_1 +6340,2,73.0,0.0,1,111,262.0,214.0,0.0,0,77,0.0,0.0,446.76254236348,476.0,0.0,406.27986625911484,70,2,2,2,1,2,2,2,2,0,,2,,1,106345,2,2,0,2,1,419.0,0.0,328.0,21,1.0,2.0,3.0,2.0,1.5,2,2,777.555805510342,262.0,30274.61591078467,0,5,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01572274282199681,20183.077273856445,5,3,5,5_0,5_4,5_1_0 +6341,2,44.0,0.0,1,111,620.0,0.0,0.0,0,54,0.0,264.8654554020448,1057.224336890678,870.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,106346,2,2,1,0,1,,420.0,,32,2.0,0.0,3.0,4.0,2.3,3,1,400.890504983931,620.0,33820.18165765664,0,1,1,2,62.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025724285245021395,14704.426807676802,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +6342,1,44.0,61.0,2,111,520.0,72.0,0.0,0,22,0.0,0.0,886.7042825534718,1313.0,0.0,136.6922914516648,31,0,0,0,0,0,0,0,0,0,,2,,2,106347,2,1,0,1,1,766.0,0.0,620.0,32,1.0,0.0,3.0,3.0,1.8,2,1,1179.05948913534,520.0,38464.65454497309,0,4,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03413523442579818,21369.25252498505,6,3,6,6_0,6_4,6_0_1 +6343,2,57.0,0.0,7,111,1080.0,0.0,0.0,0,43,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,5,106348,2,1,0,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,392.313769531259,1080.0,39128.33710063624,0,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02760147964433783,39128.33710063624,9,5,9,9_0,9_3,9_0_0 +6344,1,86.0,242.0,2,111,270.0,554.0,0.0,0,77,0.0,0.0,460.40414671045653,824.0,0.0,1051.771242558643,71,0,0,0,0,0,0,0,0,0,,2,,2,106349,2,1,0,0,1,,0.0,248.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1141.16162776678,270.0,10148.426432398715,0,6,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08119485375283315,10148.426432398715,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +6345,2,71.0,0.0,5,111,465.0,997.0,0.0,0,74,0.0,0.0,792.9182526680084,1462.0,0.0,1892.8085357959696,30,0,0,0,0,0,0,0,0,0,,1,,3,106350,2,1,1,0,1,,443.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,2815.76871072016,465.0,43999.1551736661,0,5,0,1,98.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03322791072304544,29332.7701157774,8,4,8,8_1,8_3,8_0_0 +6346,2,50.0,0.0,1,111,1050.0,2255.0,0.0,0,34,0.0,198.6490915515336,1790.4605705406643,3455.0,0.0,4281.126628104224,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,106351,2,1,3,0,2,,371.0,,32,1.0,1.0,4.0,3.0,1.6,1,1,1430.18953076894,1050.0,44121.39079214938,0,1,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0783066883878637,27575.869245093363,7,4,7,7_1,7_3,7_1_0 +6347,2,72.0,0.0,2,400,594.0,,,0,75,0.0,0.0,,726.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,,2,106352,1,3,0,0,2,,280.0,400.0,11,0.0,2.0,3.0,1.0,1.0,1,1,126.58207613024149,594.0,38921.53586378613,0,5,2,3,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018652912427217297,38921.53586378613,9,5,9,9_1,9_0,9_0_1 +6348,2,44.0,0.0,5,211,465.0,1165.0,0.0,56,48,0.0,0.0,792.9182526680084,1630.0,0.0,2211.757215849854,50,0,0,0,0,0,0,0,0,0,,2,,3,106353,1,1,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1718.99569754224,465.0,28528.791542110634,1,4,1,2,70.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.057135262725517055,15849.328634505908,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +6349,2,75.0,0.0,2,111,240.0,107.0,0.0,78,78,0.0,0.0,409.2481304092947,347.0,0.0,203.13993312955742,70,0,0,0,0,0,0,0,0,0,,8,,2,106354,2,1,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,508.602712355733,240.0,33940.29784320655,5,5,0,1,79.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010223834852688398,22626.865228804367,6,3,6,6_0,6_3,6_0_1 +6350,2,58.0,0.0,2,112,1130.0,0.0,0.0,86,11,2109.365702073203,0.0,1926.8766140104292,3258.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106355,2,2,1,0,1,,120.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,763.632242588405,1130.0,64412.35272090568,5,1,0,1,100.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05058036016968191,42941.56848060378,9,5,9,9_1,9_0,9_0_1 +6351,2,29.0,0.0,9,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,474.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,2006.0,6,106356,1,2,0,0,1,,50.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1410.31615409571,0.0,29900.382899714117,0,1,2,3,52.0,7,5,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.015852639800292726,29900.382899714117,8,4,8,8_0,8_2,8_0_0 +6352,1,28.0,320.0,1,111,0.0,0.0,0.0,81,67,0.0,0.0,0.0,2003.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,2,,1,106357,2,3,0,0,1,,0.0,445.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1407.63911859247,0.0,12137.72076421341,4,1,2,3,70.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.16502274511913317,8091.8138428089405,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +6353,2,63.0,0.0,1,111,498.0,1940.0,0.0,43,74,0.0,59.594727465460075,849.1898705992865,2483.0,0.0,3683.0978530031907,20,0,0,0,0,0,0,0,0,0,,1,,1,106358,2,1,1,0,2,,310.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1314.42150974926,498.0,68905.28247070729,1,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03603497309593879,45936.85498047152,10,5,10,10_1,10_3,10_1_0 +6354,2,41.0,0.0,6,111,0.0,0.0,0.0,42,38,0.0,0.0,0.0,5082.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,50.0,1,,4,106359,2,1,2,0,1,,733.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,675.25284923782,0.0,81602.17359351466,1,1,1,2,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06227775286127786,35479.20591022377,9,5,9,9_1,9_4,9_0_0 +6355,2,51.0,0.0,7,212,0.0,0.0,0.0,0,55,2109.365702073203,0.0,0.0,3556.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,106360,2,1,1,0,1,,328.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1519.41606195901,0.0,34825.27980216391,0,1,0,1,220.0,3,0,8,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10210973236111785,34825.27980216391,9,5,9,9_1,9_0,9_0_0 +6356,2,54.0,0.0,5,111,1200.0,0.0,0.0,54,21,2214.833987176863,0.0,2046.2406520464733,3360.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106361,2,1,2,0,1,,300.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,980.065815477282,1200.0,159408.9731431413,1,1,0,1,150.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02107785988297464,63763.58925725652,10,5,10,10_1,10_3,10_0_0 +6357,2,67.0,0.0,6,111,250.0,720.0,0.0,0,74,0.0,0.0,426.3001358430153,970.0,0.0,1366.922914516648,10,0,0,0,0,0,0,0,0,0,,2,,4,106362,2,1,0,0,1,,50.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1656.55394544308,250.0,40918.27948443736,0,5,0,1,60.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023705786563409263,40918.27948443736,9,5,9,9_0,9_2,9_0_0 +6359,1,52.0,307.0,6,111,420.0,960.0,0.0,0,85,0.0,0.0,716.1842282162656,1380.0,0.0,1822.5638860221975,60,2,2,2,2,1,2,2,2,0,,2,,4,106364,2,1,0,0,2,,0.0,348.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1426.38750305185,420.0,10850.007858651714,0,7,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.12718884796932184,10850.007858651714,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +6360,2,52.0,0.0,7,221,260.0,,,52,53,0.0,0.0,,524.0,365.79555550468154,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,106365,1,3,0,0,2,,558.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,99.62722522205016,260.0,73013.23259723486,1,1,0,1,66.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007176781267726595,34768.20599868327,9,5,9,9_1,9_1,9_0_0 +6361,2,69.0,0.0,2,112,180.0,1038.0,0.0,0,75,0.0,66.2163638505112,306.936097806971,1268.0,0.0,1970.647201761501,41,0,0,0,0,0,0,0,0,0,,1,,2,106366,2,1,1,0,1,,198.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1861.28117597465,180.0,25346.133736643023,0,5,0,1,99.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05002735380374193,25346.133736643023,7,4,7,7_1,7_0,7_0_1 +6362,2,59.0,0.0,5,111,2000.0,60.0,0.0,21,77,0.0,0.0,3410.4010867441225,2060.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,1,,3,106367,2,1,2,0,1,,380.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1050.85088745263,2000.0,34494.2561147682,1,5,0,1,101.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05972008769071677,22996.170743178798,6,3,6,6_1,6_3,6_0_0 +6363,2,49.0,0.0,9,112,0.0,0.0,0.0,67,67,0.0,0.0,0.0,1071.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,2006.0,6,106368,2,1,1,0,1,,190.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,2522.85081636225,0.0,31375.189173391715,1,1,0,1,100.0,6,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03413525235118839,20916.792782261142,5,3,5,5_1,5_1,5_0_0 +6364,2,30.0,0.0,2,111,320.0,400.0,0.0,0,56,0.0,0.0,545.6641738790596,720.0,0.0,759.4016191759156,42,0,0,0,0,0,0,0,0,3,60.0,1,,2,106369,2,3,2,0,1,,500.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,1234.96542419269,320.0,21652.72683725868,0,1,1,2,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03325216289899655,14435.151224839121,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +6365,2,61.0,0.0,1,112,555.0,0.0,0.0,0,55,0.0,0.0,946.386301571494,555.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,1,106370,2,1,0,0,1,,92.0,410.0,12,1.0,2.0,2.0,1.0,1.0,1,1,741.595206817627,555.0,15042.384044445462,0,1,2,3,28.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03689574726719857,15042.384044445462,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +6366,2,51.0,0.0,7,111,90.0,0.0,0.0,46,46,0.0,0.0,153.4680489034855,90.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,,5,106371,1,2,5,0,1,,0.0,700.0,43,2.0,2.0,4.0,2.0,1.5,2,2,603.337013646099,90.0,67124.5127635392,1,1,2,3,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0013407918552354296,44749.6751756928,10,5,10,10_1,10_4,10_0_0 +6367,1,59.0,50.0,2,111,450.0,1000.0,0.0,0,78,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,2,106372,2,3,3,0,1,,170.0,304.0,11,0.0,3.0,2.0,1.0,1.0,1,1,189.070930068573,450.0,15972.506354960688,0,7,2,3,35.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09078099377619993,15972.506354960688,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +6368,2,52.0,0.0,7,111,320.0,,,56,62,0.0,0.0,,421.0,139.6673939199693,,71,0,0,0,0,0,0,0,0,0,,1,,5,106373,2,1,0,0,1,,224.0,,43,2.0,4.0,4.0,5.0,3.0,5,4,121.19820627799815,320.0,49748.100658678355,1,1,1,2,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008462634641842517,16582.70021955945,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +6369,2,56.0,0.0,6,111,900.0,,,63,56,0.0,0.0,,1038.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,0,,1,,4,106374,2,1,0,0,2,,600.0,,43,2.0,4.0,8.0,4.0,2.3,3,2,104.35768118362043,900.0,20569.975325815965,4,1,0,1,235.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05046189815781049,8943.467532963465,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6370,2,78.0,0.0,6,111,1096.0,,,78,77,0.0,0.0,,1256.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,1,,4,106375,2,1,0,0,2,,400.0,,41,0.0,7.0,4.0,2.0,1.5,2,2,85.15876486556523,1096.0,23112.984986375675,5,5,0,1,162.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05434174775522805,15408.656657583784,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +6371,1,83.0,120.0,1,111,500.0,800.0,0.0,0,78,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,1,106376,2,1,0,0,1,,200.0,450.0,11,0.0,3.0,2.0,1.0,1.0,1,1,3068.42018648266,500.0,14070.36675198839,0,5,2,3,40.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09239275869026564,14070.36675198839,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +6372,2,69.0,0.0,2,111,180.0,250.0,0.0,86,22,0.0,0.0,306.936097806971,430.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,106377,2,2,0,1,1,624.0,0.0,240.0,42,2.0,0.0,4.0,3.0,2.0,3,3,417.858394537324,180.0,50872.600052683425,6,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008452487184745698,25436.300026341713,7,4,7,7_0,7_2,7_0_1 +6373,2,51.0,0.0,5,111,920.0,0.0,0.0,0,37,0.0,0.0,1568.7844999022964,960.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,106378,2,1,3,0,1,,314.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,1287.45190850387,920.0,32535.914047492384,0,1,0,1,170.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029505856162476227,32535.914047492384,8,4,8,8_1,8_3,8_0_0 +6374,2,55.0,0.0,1,111,1350.0,0.0,0.0,54,65,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,106379,2,1,0,0,1,,450.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,561.082081217285,1350.0,71547.09407016085,1,1,0,1,64.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01886869086082178,35773.547035080424,9,5,9,9_0,9_4,9_1_0 +6375,1,28.0,283.0,7,111,400.0,,,85,65,0.0,0.0,,444.0,60.965925917446924,,43,0,0,0,0,0,0,0,0,2,10.0,2,,5,106380,2,3,0,0,2,,320.0,438.0,42,1.0,0.0,3.0,4.0,2.1,2,2,135.77648077835116,400.0,24032.778790906166,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018474767477492302,11444.180376621984,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6376,0,40.0,0.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1256.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,106381,2,1,1,0,1,,693.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,677.627598809442,0.0,18897.322583450266,0,1,5,0,110.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06646444195750613,11810.826614656416,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +6379,2,31.0,0.0,1,120,792.0,0.0,0.0,65,62,0.0,0.0,1350.5188303506725,825.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,106384,2,1,1,0,1,,283.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,543.948329391462,792.0,41947.649263757696,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01966737146133218,19975.071077979854,5,3,5,5_1,5_0,5_1_0 +6380,0,80.0,0.0,5,120,510.0,,,77,75,0.0,0.0,,642.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,,3,106385,2,1,0,0,2,,600.0,,41,0.0,6.0,8.0,2.0,1.5,2,2,120.51903184233608,510.0,65483.746783133734,5,5,0,1,110.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009803959479077275,43655.83118875582,10,5,10,10_1,10_2,10_0_0 +6381,2,43.0,0.0,2,111,393.0,0.0,0.0,0,62,0.0,0.0,670.14381354522,393.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,106386,1,1,0,1,1,918.0,291.0,357.0,32,1.0,0.0,5.0,3.0,1.8,2,1,1628.10096267209,393.0,29514.0,0,1,2,3,93.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01331571457613336,16396.666666666668,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +6382,0,74.0,0.0,2,211,552.0,0.0,0.0,0,77,0.0,0.0,941.2706999413778,876.0,448.9309090284728,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106387,2,1,0,1,1,,240.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1411.9508800342,552.0,11770.109064985434,0,5,5,0,70.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07442581841539496,11770.109064985434,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +6383,2,42.0,0.0,2,111,1200.0,0.0,0.0,48,52,0.0,278.10872817214704,2046.2406520464733,1410.0,0.0,0.0,43,2,2,2,2,1,2,1,2,2,7.0,2,,2,106388,2,2,0,0,1,,600.0,,43,2.0,0.0,3.0,5.0,2.6,3,2,1578.39517414086,1200.0,52036.47342501623,1,1,1,2,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.0270963788895454,20014.028240390857,5,3,5,5_0,5_3,5_0_1 +6384,2,60.0,0.0,1,111,353.0,1248.0,0.0,43,77,0.0,0.0,601.9357918103376,1601.0,0.0,2369.3330518288567,12,2,2,2,2,2,2,2,1,0,,2,,1,106389,2,3,0,0,2,,0.0,1390.0,42,1.0,0.0,4.0,2.0,1.5,2,2,1134.09047698636,353.0,75999.04748199145,1,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.021066053497306912,50666.03165466097,10,5,10,10_0,10_4,10_1_0 +6385,2,55.0,0.0,6,112,200.0,,,43,64,0.0,0.0,,320.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,2,90.0,1,,4,106390,2,2,0,0,2,,400.0,,43,2.0,2.0,4.0,3.0,1.8,2,2,91.06039185815996,200.0,42403.31001734697,1,1,0,1,100.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007546580676581372,23557.394454081652,6,3,6,6_1,6_1,6_0_0 +6386,2,57.0,0.0,7,111,450.0,1310.0,0.0,85,67,0.0,0.0,767.3402445174275,1760.0,0.0,2487.0403028011237,71,2,2,2,2,1,2,2,2,2,4.0,1,,5,106391,1,2,2,0,1,,150.0,601.0,42,1.0,3.0,6.0,2.0,1.5,2,2,260.754107785803,450.0,20048.201226611003,6,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08778842451281176,13365.467484407336,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6387,2,79.0,0.0,5,111,450.0,0.0,0.0,74,74,0.0,0.0,767.3402445174275,450.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,106392,2,1,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,821.986745971309,450.0,88398.42381584199,5,5,0,1,113.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0050905885034497065,58932.28254389466,10,5,10,10_0,10_4,10_0_0 +6388,2,50.0,0.0,9,111,1800.0,0.0,0.0,77,64,0.0,0.0,3069.36097806971,1860.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,2004.0,6,106393,2,1,1,0,1,,600.0,,42,2.0,2.0,7.0,4.0,2.5,4,3,1495.22397358982,1800.0,61945.466876374674,7,1,1,2,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03002641022485188,24778.18675054987,7,4,7,7_1,7_3,7_0_0 +6389,1,46.0,124.0,2,111,580.0,,,85,42,0.0,0.0,,664.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,2,106394,1,2,0,0,2,,0.0,750.0,42,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,84.77173336295814,580.0,35745.16463134206,6,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.018575939063315765,13748.14024282387,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +6390,1,52.0,439.0,6,111,1140.0,,,0,85,0.0,0.0,,1255.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,2,,4,106395,1,3,0,0,2,,300.0,485.0,31,1.0,2.0,4.0,5.0,2.8,4,3,69.75499753554982,1140.0,30554.93765313043,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041073557872942416,10912.477733260868,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6391,2,44.0,0.0,1,111,650.0,1600.0,0.0,34,34,0.0,39.72981831030672,1108.3803531918397,2280.0,0.0,3037.6064767036623,10,0,0,0,0,0,0,0,0,1,10.0,1,,1,106396,2,2,1,0,1,,720.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,489.694761276827,650.0,184274.14074901247,1,1,0,1,160.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01237287006593853,76780.8919787552,10,5,10,10_1,10_3,10_1_0 +6392,2,80.0,0.0,6,111,1065.0,0.0,0.0,75,74,0.0,0.0,1816.0385786912452,1065.0,0.0,0.0,50,2,2,1,2,1,2,2,1,0,,2,,4,106397,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,375.969139827226,1065.0,62123.28616246138,5,5,0,1,92.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017143330074569314,41415.52410830759,9,5,9,9_0,9_3,9_0_0 +6393,2,84.0,0.0,1,300,350.0,0.0,0.0,77,75,2109.365702073203,0.0,596.8201901802214,2380.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106398,2,1,2,0,1,,250.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,966.532666072199,350.0,35197.45152867567,5,5,0,1,115.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0676185319286822,23464.96768578378,6,3,6,6_1,6_0,6_1_0 +6394,1,74.0,71.0,6,111,180.0,330.0,0.0,0,77,0.0,0.0,306.936097806971,510.0,0.0,626.5063358201304,71,0,0,0,0,0,0,0,0,0,,8,,4,106399,2,1,0,0,1,,0.0,239.0,11,0.0,3.0,2.0,1.0,1.0,1,1,8860.31864541099,180.0,10337.122370048126,0,5,2,3,60.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.049336747862995994,10337.122370048126,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6395,2,35.0,0.0,8,111,0.0,0.0,0.0,33,47,0.0,0.0,0.0,2433.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,17.0,1,2003.0,6,106400,2,1,2,0,1,,678.0,650.0,43,2.0,0.0,5.0,4.0,2.1,2,2,839.728178530503,0.0,68139.29522418306,1,1,2,3,120.0,4,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03570626893036183,32447.283440087172,8,4,8,8_1,8_1,8_0_0 +6396,0,28.0,0.0,2,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,1910.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,106401,1,2,2,0,2,,197.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,302.490810091985,0.0,45626.71582699548,1,1,5,0,85.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041861439408486426,30417.81055133032,8,4,8,8_1,8_3,8_0_1 +6397,2,47.0,0.0,2,111,1092.0,0.0,0.0,0,46,0.0,0.0,1862.0789933622907,1137.0,62.351515142843446,0.0,50,2,2,1,1,2,2,2,2,3,40.0,1,,2,106402,2,2,2,0,1,,240.0,630.0,32,3.0,0.0,4.0,3.0,2.0,3,3,388.886136517347,1092.0,41564.60352088356,0,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.027355006512421804,20782.30176044178,5,3,5,5_1,5_3,5_0_1 +6398,2,26.0,0.0,1,112,900.0,0.0,0.0,64,63,0.0,635.6770929649075,1534.680489034855,1520.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,106403,1,1,1,0,2,,0.0,320.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1846.8203046383,900.0,14613.22688694136,1,1,3,4,100.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10401535620844285,9742.151257960906,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +6399,2,46.0,0.0,7,112,2037.0,0.0,0.0,47,46,0.0,1324.327277010224,3473.4935068488885,3037.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,90.0,1,,5,106404,1,1,2,0,1,,320.0,,43,3.0,0.0,5.0,4.0,2.3,3,2,2611.12259021024,2037.0,75455.45286237022,1,1,1,2,96.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040248913561481754,32806.718635813144,8,4,8,8_1,8_1,8_0_0 +6400,2,79.0,0.0,5,111,294.0,659.0,0.0,86,75,0.0,0.0,501.328959751386,953.0,0.0,1251.1141675923209,70,0,0,0,0,0,0,0,0,0,,1,,3,106405,2,1,1,0,1,,140.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1166.67835165778,294.0,28964.08249246001,6,5,0,1,92.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032902820251533495,19309.38832830667,5,3,5,5_1,5_2,5_0_0 +6401,2,56.0,0.0,9,111,350.0,,,56,77,0.0,0.0,,422.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,106406,2,1,0,0,2,,120.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,119.34826448923036,350.0,32004.93417934001,1,5,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013185466891927296,21336.62278622667,6,3,6,6_1,6_2,6_0_0 +6402,2,46.0,0.0,2,111,240.0,180.0,0.0,78,52,0.0,0.0,409.2481304092947,420.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,2,,2,106407,2,2,0,1,1,,0.0,485.0,42,1.0,0.0,2.0,2.0,1.5,2,2,281.166099697159,240.0,12871.273511014764,5,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03263080375384607,8580.849007343177,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +6403,2,40.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,737.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,5.0,2,,2,106408,2,1,0,0,1,,0.0,430.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1092.38827646204,0.0,14141.972381243751,0,1,2,3,60.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05211437132895763,14141.972381243751,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6404,2,40.0,0.0,5,111,600.0,523.0,0.0,52,53,0.0,0.0,1023.1203260232367,1123.0,0.0,992.9176170725096,50,2,2,2,1,1,2,1,2,0,,2,,3,106409,1,3,0,1,1,579.0,0.0,341.0,43,2.0,0.0,3.0,3.0,1.8,2,2,404.433241886028,600.0,39643.0060628759,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028327821513304582,22023.89225715328,6,3,6,6_0,6_4,6_0_0 +6405,1,42.0,455.0,2,111,450.0,175.0,0.0,85,62,0.0,0.0,767.3402445174275,625.0,0.0,332.23820838946307,50,0,0,0,0,0,0,0,0,0,,2,,2,106410,2,3,0,1,1,1166.0,0.0,408.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,273.974012351628,450.0,16207.877813860568,6,4,2,3,99.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03856149504443548,6002.917708837248,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6406,1,46.0,85.0,7,111,2400.0,0.0,0.0,56,67,0.0,0.0,4092.4813040929466,2580.0,249.40606057137379,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,106411,2,2,2,0,1,,900.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,649.178289072713,2400.0,34843.308290916924,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07404578171678845,13401.272419583434,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +6407,2,43.0,0.0,7,111,216.0,185.0,0.0,0,56,0.0,0.0,368.3233173683652,401.0,0.0,351.223248868861,60,0,0,0,0,0,0,0,0,0,,2,,5,106412,2,1,0,0,1,,107.0,290.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2422.92982796872,216.0,24602.787342639756,0,1,2,3,47.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016298966227497973,24602.787342639756,7,4,7,7_0,7_3,7_0_0 +6408,2,69.0,0.0,2,111,190.0,100.0,0.0,77,75,0.0,0.0,323.9881032406916,290.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,2,,2,106413,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,897.034711426431,190.0,41327.244207717886,5,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007017162783523861,27551.49613847859,7,4,7,7_0,7_4,7_0_1 +6409,2,67.0,0.0,6,111,600.0,,,0,75,0.0,0.0,,680.0,110.84713803172167,,60,0,0,0,0,0,0,0,0,0,,1,,4,106414,1,1,0,0,1,,180.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,106.9601690242614,600.0,42384.920767552656,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016043441575112418,42384.920767552656,9,5,9,9_1,9_2,9_0_0 +6410,1,43.0,255.0,5,111,284.0,,,67,56,0.0,0.0,,330.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,2,120.0,1,,3,106415,2,2,0,0,2,,178.0,510.0,43,2.0,4.0,3.0,2.0,1.5,2,2,59.604375186514005,284.0,14494.27293744797,1,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.022767613210000974,9662.848624965312,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6411,2,28.0,0.0,2,221,425.0,84.0,0.0,0,55,0.0,0.0,724.710230933126,509.0,0.0,159.4743400269423,50,0,0,0,0,0,0,0,0,1,2.0,2,,2,106416,2,1,0,0,1,,140.0,182.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3302.56634535165,425.0,13005.230128608304,0,1,2,3,42.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039138100207879084,13005.230128608304,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +6412,2,61.0,0.0,2,111,700.0,144.0,0.0,78,52,0.0,0.0,1193.6403803604428,844.0,0.0,273.3845829033296,70,0,0,0,0,0,0,0,0,3,45.0,2,,2,106417,2,1,0,1,1,,0.0,458.0,42,3.0,0.0,4.0,4.0,2.5,4,4,1874.27091549999,700.0,31727.139461932755,5,1,2,3,80.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02660183093444836,12690.855784773103,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +6413,1,56.0,229.0,2,111,0.0,0.0,3500.0,63,56,0.0,0.0,2206.114016451603,3500.0,0.0,4188.562516476382,71,2,2,2,1,1,1,2,2,0,,2,,2,106418,1,3,0,0,1,,0.0,293.0,43,2.0,5.0,3.0,2.0,1.5,2,2,854.082601062478,0.0,8338.005536615057,4,4,2,3,63.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.41976465290533727,5558.670357743372,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6414,2,55.0,0.0,5,111,2200.0,,,72,45,0.0,0.0,,2266.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,3,106419,2,1,0,0,2,,200.0,,42,1.0,2.0,2.0,2.0,1.5,2,2,69.91909836257922,2200.0,47555.05515535802,5,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04765003410462221,31703.370103572015,8,4,8,8_1,8_2,8_0_0 +6415,2,54.0,0.0,2,111,800.0,0.0,0.0,0,11,0.0,0.0,1364.160434697649,975.0,242.47811444439117,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106420,2,3,2,0,1,,150.0,,22,1.0,0.0,10.0,2.0,1.5,2,2,1190.14338298003,800.0,15018.349489281882,0,1,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06492058269757449,10012.232992854588,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +6416,2,43.0,0.0,1,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1277.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,106421,2,1,2,0,2,,142.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1353.76213277534,0.0,3550.3872314972396,0,1,2,3,39.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.35967907631908486,3550.3872314972396,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +6417,2,34.0,0.0,9,111,500.0,,,85,34,0.0,0.0,,500.0,0.0,,20,0,0,0,0,0,0,0,0,2,60.0,1,2005.0,6,106422,2,1,0,0,2,,120.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,146.51882036500575,500.0,45279.0,7,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01104264670156143,30186.0,8,4,8,8_1,8_2,8_0_0 +6418,2,60.0,0.0,9,112,1800.0,0.0,0.0,74,74,0.0,397.2981831030672,3069.36097806971,2100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2009.0,6,106423,2,1,1,0,1,,160.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1108.83033572845,1800.0,41374.4275547911,5,5,0,1,168.0,9,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05075598924526565,27582.951703194067,7,4,7,7_1,7_0,7_0_0 +6419,1,29.0,220.0,2,111,480.0,,,0,43,0.0,0.0,,656.0,243.8637036697877,,43,0,0,0,0,0,0,0,0,0,,8,,2,106424,2,2,0,0,2,,200.0,267.0,32,1.0,0.0,3.0,2.0,1.3,1,1,106.94228275519184,480.0,19089.119417891503,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03436512631301139,14683.938013762694,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +6420,2,31.0,0.0,1,112,850.0,0.0,0.0,56,38,738.277995725621,609.190547424703,1449.420461866252,2035.0,33.946936022214764,0.0,20,2,2,2,2,1,2,2,2,2,25.0,1,,1,106425,1,2,3,0,2,,342.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,833.677107813936,850.0,30798.948067385634,1,1,1,2,110.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.06607368522936506,20532.632044923757,5,3,5,5_1,5_0,5_1_0 +6421,2,55.0,0.0,5,400,780.0,,,11,11,0.0,0.0,,1080.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,106426,2,2,0,0,2,,320.0,,43,4.0,5.0,5.0,5.0,3.0,5,4,56.42415996501417,780.0,11018.952299136665,1,1,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09801294811709259,3672.9840997122215,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +6422,2,59.0,0.0,7,111,2280.0,0.0,0.0,75,31,0.0,0.0,3887.8572388882994,2280.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,106427,2,2,2,0,1,,710.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1826.9621898109,2280.0,91048.0,6,1,0,1,162.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025041736227045076,60698.666666666664,10,5,10,10_1,10_2,10_0_0 +6423,1,69.0,294.0,1,111,216.0,0.0,0.0,0,72,0.0,0.0,368.3233173683652,216.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,106428,1,3,0,0,2,,0.0,381.0,11,0.0,3.0,1.0,1.0,1.0,1,1,428.441973601149,216.0,8266.872143187466,0,5,2,3,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.026128382810178152,8266.872143187466,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +6424,2,51.0,0.0,2,111,260.0,885.0,0.0,0,52,0.0,0.0,443.3521412767359,1145.0,0.0,1680.1760824267133,60,0,0,0,0,0,0,0,0,2,5.0,1,,2,106429,2,3,3,0,1,,250.0,270.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1253.86436201483,260.0,18970.37250746687,0,1,2,3,101.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06035727551208181,18970.37250746687,5,3,5,5_1,5_3,5_0_1 +6425,2,62.0,0.0,2,112,320.0,1650.0,0.0,0,78,0.0,0.0,545.6641738790596,2060.0,124.70303028568689,3132.5316791006517,71,0,0,0,0,0,0,0,0,0,,1,,2,106430,2,2,2,0,1,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,398.51329610731,320.0,23009.777809604497,0,5,0,1,150.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08952715741306014,23009.777809604497,6,3,6,6_1,6_0,6_0_1 +6426,2,40.0,0.0,9,120,1530.0,0.0,0.0,42,42,0.0,0.0,2608.9568313592536,1560.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,106431,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,561.503382469726,1530.0,47513.48083473263,1,1,1,2,140.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032832787086809916,22625.467064158394,6,3,6,6_1,6_0,6_0_0 +6427,0,85.0,0.0,1,111,0.0,0.0,1150.0,0,78,0.0,0.0,724.8660339769554,1150.0,0.0,1376.241969699383,70,0,0,0,0,0,0,0,0,0,,1,,1,106432,2,2,4,0,1,,120.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,344.115322059094,0.0,18820.43482110979,0,5,5,0,38.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06110379547183,18820.43482110979,5,3,5,5_1,5_2,5_1_0 +6428,2,40.0,0.0,7,111,80.0,0.0,0.0,34,37,0.0,0.0,136.4160434697649,80.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,5,106433,2,2,1,0,1,,0.0,900.0,43,2.0,0.0,4.0,5.0,2.4,2,2,398.098733728573,80.0,114304.39738309884,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.000699885584732796,47626.832242957855,10,5,10,10_1,10_4,10_0_0 +6429,2,92.0,0.0,1,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1760.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106434,2,1,1,0,1,,129.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,980.915025941898,0.0,25222.29875506024,0,5,0,1,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06977952394790736,25222.29875506024,7,4,7,7_1,7_0,7_1_0 +6430,1,45.0,75.0,9,111,1850.0,0.0,0.0,56,63,0.0,0.0,3154.621005238313,1850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,106435,2,1,1,0,1,,330.0,,43,2.0,2.0,4.0,3.0,2.0,3,2,114.119085621804,1850.0,24555.777246568236,1,4,1,2,86.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07533868634756999,12277.888623284118,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +6431,1,66.0,333.0,2,111,120.0,65.0,0.0,0,78,0.0,0.0,204.62406520464734,185.0,0.0,123.40276311608629,71,0,0,0,0,0,0,0,0,0,,2,,2,106436,2,1,0,1,1,717.0,0.0,309.0,21,0.0,3.0,3.0,2.0,1.5,2,1,480.781899678326,120.0,13669.855305466237,0,5,2,3,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013533427813681618,9113.236870310824,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6432,2,85.0,0.0,5,111,390.0,,,86,78,0.0,0.0,,633.0,336.6981817713546,,71,0,0,0,0,0,0,0,0,0,,1,,3,106437,2,2,0,0,2,,260.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,105.82340789989861,390.0,17091.13502432225,6,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037036744435005806,11394.090016214834,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +6433,1,50.0,254.0,2,111,480.0,140.0,0.0,0,85,0.0,0.0,818.4962608185893,620.0,0.0,265.7905667115705,60,2,2,2,1,1,2,2,2,0,,2,,2,106438,1,3,0,1,1,1000.0,800.0,280.0,31,2.0,1.0,3.0,3.0,2.0,3,3,309.293520612991,480.0,13289.257514090501,0,6,2,3,30.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.046654224236577446,6644.6287570452505,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6434,2,33.0,0.0,2,111,800.0,0.0,0.0,0,52,0.0,0.0,1364.160434697649,835.0,48.49562288887823,0.0,42,2,2,2,2,1,2,2,2,0,,1,,2,106439,1,1,4,0,1,,270.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1665.82154140189,800.0,14176.480771910323,0,4,2,3,47.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.05890037262664599,14176.480771910323,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +6435,2,52.0,0.0,2,111,486.0,436.0,0.0,67,52,0.0,0.0,828.7274640788218,922.0,0.0,827.747764901748,71,2,1,2,2,1,2,2,2,2,15.0,2,,2,106440,1,3,0,1,1,752.0,0.0,395.0,43,2.0,0.0,4.0,4.0,2.5,4,3,836.05672709926,486.0,44926.1049582722,1,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020522589279804306,17970.44198330888,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +6436,2,37.0,0.0,9,112,760.0,0.0,0.0,62,64,0.0,662.163638505112,1295.9524129627664,1260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,106441,2,1,1,0,1,,348.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1024.43618195016,760.0,47758.79824551991,1,1,1,2,86.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02638257339564017,22742.284878819002,6,3,6,6_1,6_1,6_0_0 +6437,2,57.0,0.0,5,111,624.0,85.0,0.0,78,67,0.0,0.0,1064.0451390641663,709.0,0.0,161.37284407488207,44,1,2,2,2,1,2,2,2,2,10.0,2,,3,106442,2,2,0,1,1,,0.0,411.0,42,1.0,1.0,3.0,2.0,1.5,2,2,525.385027752546,624.0,16815.84980179645,5,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04216260304158147,11210.566534530966,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +6438,2,53.0,0.0,2,111,480.0,760.0,0.0,56,64,0.0,0.0,818.4962608185893,1240.0,0.0,1442.8630764342397,70,0,0,0,0,0,0,0,0,2,30.0,1,,2,106443,2,1,2,0,1,,400.0,,43,2.0,2.0,6.0,4.0,2.3,3,2,558.319454757248,480.0,35742.57374457198,1,1,1,2,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034692521273410305,15540.24945416173,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +6439,1,32.0,300.0,2,111,2000.0,0.0,0.0,85,63,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,2,2,2,2,1,2,2,1,0,,2,,2,106444,2,3,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,292.764955713607,2000.0,23688.006817514866,6,4,1,2,80.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08443091119516244,11280.00324643565,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6440,2,45.0,0.0,7,111,950.0,,,0,31,0.0,0.0,,950.0,0.0,,10,0,0,0,0,0,0,0,0,1,5.0,1,,5,106445,2,1,0,0,2,,222.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,50.33056854293909,950.0,77281.96247310375,0,1,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012292648499067634,59447.663440849035,10,5,10,10_1,10_2,10_0_0 +6441,2,52.0,0.0,2,300,802.0,0.0,0.0,54,69,0.0,1153.489058275905,1367.570835784393,1673.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106446,2,2,3,0,1,,461.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1726.03735221716,802.0,45540.0219367146,1,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03673691686677074,30360.0146244764,8,4,8,8_1,8_0,8_0_1 +6442,2,43.0,0.0,2,111,352.0,76.0,0.0,0,54,0.0,0.0,600.2305912669656,428.0,0.0,144.28630764342395,31,2,2,1,2,1,2,2,2,2,60.0,2,,2,106447,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1019.0805596309,352.0,23737.992159588208,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018030168563650948,23737.992159588208,6,3,6,6_0,6_4,6_0_1 +6443,2,82.0,0.0,2,300,800.0,0.0,0.0,78,78,0.0,0.0,1364.160434697649,920.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106448,2,1,4,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2399.38425327885,800.0,26278.649406805966,5,5,0,1,67.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.035009409568884736,17519.09960453731,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +6444,2,41.0,0.0,1,111,844.0,1200.0,0.0,0,37,0.0,0.0,1439.1892586060196,2044.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,0,,2,,1,106449,2,2,0,0,1,,0.0,463.0,12,1.0,0.0,2.0,1.0,1.0,1,1,4467.14253434587,844.0,28044.75932620091,0,4,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0728834922855047,28044.75932620091,8,4,8,8_0,8_3,8_1_0 +6445,2,59.0,0.0,8,112,800.0,0.0,0.0,52,33,0.0,370.8116375628627,1364.160434697649,1080.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2002.0,6,106450,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,3.0,2.0,3,2,842.192907321841,800.0,93773.8616795986,1,1,0,1,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011517068622918451,46886.9308397993,10,5,10,10_1,10_0,10_0_0 +6446,2,60.0,0.0,1,400,324.0,0.0,0.0,0,11,0.0,0.0,552.4849760525478,1324.0,1385.589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106451,2,1,4,0,1,,386.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1221.363057048,324.0,12783.915870875553,0,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10356764025773592,12783.915870875553,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6447,1,55.0,179.0,7,111,540.0,,,0,55,0.0,0.0,,678.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,106452,2,1,0,0,2,,200.0,492.0,12,1.0,1.0,3.0,1.0,1.0,1,1,85.12465466363705,540.0,18410.210188560726,0,1,2,3,61.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.036827390510798114,18410.210188560726,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +6448,2,23.0,0.0,1,120,1000.0,0.0,0.0,0,48,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,106453,2,1,1,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1248.16865897134,1000.0,20984.315154380936,0,1,1,2,80.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050513919191625456,20984.315154380936,5,3,5,5_1,5_1,5_1_0 +6449,2,89.0,0.0,6,111,306.0,1220.0,0.0,0,77,0.0,0.0,521.7913662718507,1526.0,0.0,2316.1749384865425,70,0,0,0,0,0,0,0,0,0,,1,,4,106454,1,2,2,0,1,,220.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,706.294516117815,306.0,20381.005611015826,0,5,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07487363622407352,20381.005611015826,5,3,5,5_1,5_2,5_0_0 +6450,2,29.0,0.0,7,111,600.0,0.0,0.0,55,55,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,106455,2,1,0,0,2,,0.0,645.0,43,2.0,0.0,1.0,3.0,1.8,2,2,395.151001152077,600.0,35417.74403646155,4,1,3,4,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016940661138166148,19676.52446470086,5,3,5,5_0,5_4,5_0_0 +6451,2,31.0,0.0,2,111,1200.0,600.0,0.0,0,53,0.0,0.0,2046.2406520464733,1800.0,0.0,1139.1024287638734,50,2,2,2,1,1,2,2,2,2,30.0,2,,2,106456,2,1,0,1,1,,0.0,,22,3.0,0.0,4.0,4.0,2.5,4,4,218.498909040549,1200.0,34895.94932730177,0,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05158191809362017,13958.37973092071,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +6452,1,33.0,160.0,9,111,320.0,,,85,47,0.0,0.0,,404.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,106457,2,1,0,0,1,,200.0,750.0,42,1.0,0.0,4.0,4.0,2.1,2,2,259.74758497398807,320.0,36333.67924978299,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011119160193566496,17301.752023706184,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +6453,2,51.0,0.0,2,111,820.0,2230.0,0.0,46,21,0.0,0.0,1398.2644455650902,3050.0,0.0,4233.66402690573,44,0,0,0,0,0,0,0,0,3,60.0,1,,2,106458,2,1,3,0,1,,700.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,511.898692111503,820.0,89318.77614853505,1,1,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03414735547795596,44659.388074267525,10,5,10,10_1,10_4,10_0_1 +6454,2,55.0,0.0,7,111,535.0,,,85,63,0.0,264.8654554020448,,795.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,1,,5,106459,2,1,0,0,2,,500.0,,42,2.0,0.0,5.0,4.0,2.5,4,4,124.74751195859986,535.0,17025.45974567045,6,4,0,1,62.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04669477428955581,6810.18389826818,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6455,1,37.0,359.0,2,111,324.0,120.0,0.0,85,63,0.0,0.0,552.4849760525478,444.0,0.0,227.8204857527747,71,2,1,1,2,1,1,2,2,2,30.0,2,,2,106460,1,3,0,1,1,1200.0,0.0,325.0,42,1.0,0.0,3.0,4.0,2.1,2,2,333.663427757086,324.0,21556.270263544597,7,1,2,3,66.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.020597255210280104,10264.890601687903,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6456,2,46.0,0.0,5,111,347.0,0.0,0.0,42,34,0.0,0.0,591.7045885501052,816.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,5.0,2,,3,106461,1,1,0,1,2,,0.0,1365.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,4,2,932.465329829823,347.0,57805.042449946624,1,1,2,3,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014116415548117177,19932.773258602287,5,3,5,5_0,5_4,5_0_0 +6457,2,68.0,0.0,5,111,950.0,0.0,0.0,77,72,0.0,0.0,1619.9405162034582,1109.0,220.30868683804684,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,106462,2,1,3,0,1,,386.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1085.54427481306,950.0,31591.447271810604,5,5,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035104437934047196,21060.964847873736,5,3,5,5_1,5_2,5_0_0 +6458,2,82.0,0.0,2,111,314.0,0.0,0.0,78,77,1202.3384501817256,0.0,535.4329706188272,2244.0,1094.6154880632516,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106463,2,2,2,0,1,,336.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,877.676980326022,314.0,25755.77000653762,5,5,0,1,80.0,7,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08712610803056568,17170.513337691747,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +6459,2,40.0,0.0,2,111,960.0,300.0,0.0,0,52,0.0,0.0,1636.9925216371787,1260.0,0.0,569.5512143819367,50,2,2,2,2,1,2,2,2,2,30.0,2,,2,106464,2,1,0,1,1,650.0,0.0,308.0,32,2.0,0.0,3.0,3.0,2.0,3,2,270.642009555052,960.0,41526.542348639494,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.030342039783172087,20763.271174319747,5,3,5,5_0,5_4,5_0_1 +6460,2,51.0,0.0,7,111,1200.0,0.0,0.0,43,47,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,106465,2,1,1,0,1,,600.0,,43,3.0,1.0,6.0,4.0,2.5,4,4,975.057924730359,1200.0,49146.64095127897,1,1,0,1,164.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024416724658550073,19658.656380511587,5,3,5,5_1,5_3,5_0_0 +6461,2,53.0,0.0,5,111,340.0,300.0,0.0,85,56,0.0,0.0,579.7681847465008,640.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,3,30.0,2,,3,106466,1,1,0,1,1,52.0,0.0,446.0,42,1.0,1.0,3.0,2.0,1.5,2,2,430.418154738296,340.0,15389.398267883069,7,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04158707110307549,10259.59884525538,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +6463,2,68.0,0.0,6,111,500.0,0.0,0.0,47,74,0.0,0.0,852.6002716860306,500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,106468,2,2,0,1,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,1619.89693392841,500.0,68289.5670001961,1,5,0,1,116.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0073217626346725,45526.37800013073,10,5,10,10_0,10_2,10_0_0 +6464,2,85.0,0.0,7,111,1400.0,0.0,0.0,0,77,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,106469,2,1,2,0,1,,175.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,2077.44025482342,1400.0,30954.911679366705,0,5,0,1,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045227071377276246,30954.911679366705,8,4,8,8_1,8_2,8_0_0 +6465,2,48.0,0.0,6,111,1200.0,900.0,0.0,55,47,0.0,132.4327277010224,2046.2406520464733,2200.0,0.0,1708.65364314581,43,0,0,0,0,0,0,0,0,3,90.0,1,,4,106470,2,1,2,0,1,,600.0,,43,4.0,0.0,5.0,5.0,3.0,5,4,532.24889271117,1200.0,63732.1572815093,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03451946542908393,21244.05242716977,5,3,5,5_1,5_4,5_0_0 +6466,2,41.0,0.0,5,221,960.0,0.0,0.0,54,45,0.0,0.0,1636.9925216371787,1631.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,40.0,2,,3,106471,2,1,0,1,1,,317.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,635.424626407589,960.0,52013.63985579615,1,1,1,2,90.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0313571594782027,24768.3999313315,7,4,7,7_0,7_1,7_0_0 +6468,2,78.0,0.0,1,120,2000.0,0.0,0.0,77,72,0.0,0.0,3410.4010867441225,2075.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106473,1,1,3,0,2,,350.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2655.82852750357,2000.0,25886.816870152357,5,5,0,1,108.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08015662993283992,17257.877913434906,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +6469,2,65.0,0.0,1,300,400.0,0.0,0.0,0,71,0.0,0.0,682.0802173488245,460.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106474,2,2,4,0,1,,30.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1151.22225698452,400.0,11168.19053090637,0,5,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041188409055792505,11168.19053090637,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6470,2,26.0,0.0,8,111,2400.0,1350.0,0.0,54,21,0.0,0.0,4092.4813040929466,3870.0,166.2707070475825,2562.980464718715,50,2,2,2,1,2,2,2,2,0,,1,2003.0,6,106475,2,1,1,0,1,,1800.0,,43,4.0,0.0,13.0,6.0,3.5,6,6,311.331771548227,2400.0,26714.040430994533,1,1,1,2,440.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,1,0,0.1448676402956213,7632.582980284153,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +6471,1,26.0,98.0,1,120,0.0,0.0,0.0,55,67,0.0,0.0,0.0,2560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,106476,2,2,2,0,1,,248.0,495.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1800.95155423842,0.0,26473.712275980564,4,1,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0966996986789296,14707.617931100312,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +6472,1,33.0,425.0,5,111,636.0,1392.0,0.0,0,56,0.0,0.0,1084.5075455846309,2028.0,0.0,2642.717634732186,50,1,2,2,1,1,2,2,2,0,,2,,3,106477,1,2,0,0,1,,0.0,396.0,32,1.0,0.0,3.0,3.0,1.6,1,1,306.187449783921,636.0,16658.045402299565,0,1,2,3,109.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.12174297470218469,10411.278376437227,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +6473,1,41.0,300.0,6,111,289.0,,,0,85,0.0,0.0,,431.0,196.75367000630598,,20,0,0,0,0,0,0,0,0,0,,2,,4,106478,2,1,0,0,2,,340.0,490.0,31,0.0,2.0,4.0,3.0,2.0,3,3,83.32108792185984,289.0,12090.812902088244,0,7,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03564690012906912,6045.406451044122,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6474,2,46.0,0.0,2,112,1780.0,0.0,0.0,43,65,1054.6828510366015,0.0,3035.2569672022687,2830.0,69.27946126982604,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,106479,1,1,2,0,2,,364.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1156.38467978751,1780.0,73679.62660640728,1,1,1,2,120.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03840953232727023,32034.620263655343,8,4,8,8_1,8_0,8_0_1 +6475,2,71.0,0.0,5,111,188.0,,,52,78,0.0,0.0,,518.0,457.2444443808519,,71,0,0,0,0,0,0,0,0,1,1.0,1,,3,106480,2,2,0,0,2,,432.0,,42,1.0,6.0,4.0,2.0,1.5,2,2,116.21307776434034,188.0,28853.176791232494,1,5,1,2,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01795296246746052,19235.451194154997,5,3,5,5_1,5_2,5_0_0 +6476,2,54.0,0.0,2,111,900.0,1347.0,0.0,0,54,0.0,0.0,1534.680489034855,2247.0,0.0,2557.2849525748957,50,0,0,0,0,0,0,0,0,0,,1,,2,106481,2,3,3,0,1,,459.0,518.0,12,1.0,2.0,6.0,1.0,1.0,1,1,1531.53718098245,900.0,33710.87162443483,0,4,2,3,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06665505493400814,33710.87162443483,9,5,9,9_1,9_3,9_0_1 +6477,2,80.0,0.0,2,111,480.0,0.0,0.0,86,74,0.0,0.0,818.4962608185893,620.0,193.98249155551292,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,106482,2,1,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1872.34438065372,480.0,49704.832563290096,6,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012473636224617442,33136.555042193395,8,4,8,8_0,8_3,8_0_1 +6479,1,43.0,270.0,2,111,700.0,800.0,0.0,0,85,0.0,0.0,1193.6403803604428,1500.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,2,106484,2,1,0,0,1,,0.0,395.0,11,0.0,0.0,5.0,1.0,1.0,1,1,407.284678168066,700.0,15224.124449213712,0,7,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09852783357124167,15224.124449213712,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +6480,2,75.0,0.0,1,300,960.0,0.0,0.0,72,72,0.0,0.0,1636.9925216371787,3660.0,3741.0909085706066,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,106485,2,2,2,0,1,,500.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,910.714206475434,960.0,43997.21949874504,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08318707504014876,29331.47966583003,8,4,8,8_1,8_0,8_1_0 +6481,1,37.0,420.0,1,111,600.0,0.0,0.0,0,81,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,71,2,2,2,2,2,2,2,1,0,,2,,1,106486,1,1,0,0,1,,450.0,600.0,32,1.0,0.0,3.0,3.0,1.8,2,1,548.776414516831,600.0,9141.995774635738,0,4,2,3,69.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.07219430158031305,5078.886541464299,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +6482,1,43.0,450.0,6,221,1200.0,0.0,0.0,85,21,0.0,476.7578197236806,2046.2406520464733,1710.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106487,2,2,2,0,1,,850.0,636.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,970.02520113536,1200.0,17163.768538261902,6,1,2,3,85.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09962847006402034,6356.9513104673715,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +6483,0,74.0,0.0,7,221,444.0,1632.0,0.0,0,72,0.0,0.0,757.1090412571951,2076.0,0.0,3098.358606237736,41,0,0,0,0,0,0,0,0,0,,1,,5,106488,2,1,2,0,1,,290.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1299.69269744689,444.0,11216.539170430959,0,5,0,1,119.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.18508382741378476,11216.539170430959,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +6484,2,40.0,0.0,2,111,436.0,761.0,0.0,31,42,0.0,0.0,743.4674369102187,1197.0,0.0,1444.7615804821794,12,0,0,0,0,0,0,0,0,2,20.0,2,,2,106489,2,1,0,0,1,,0.0,695.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1820.09488077458,436.0,44722.30082350186,4,1,2,3,105.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02676517035033602,21296.333725477074,6,3,6,6_0,6_3,6_0_1 +6485,2,49.0,0.0,1,221,275.0,0.0,0.0,0,65,980.8550514640394,0.0,468.93014942731685,1240.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,106490,2,1,2,0,1,,210.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1683.15822029521,275.0,19578.071099113135,0,1,1,2,80.0,1,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06333616798726258,19578.071099113135,5,3,5,5_1,5_1,5_1_0 +6486,2,83.0,0.0,2,111,324.0,1188.0,0.0,0,75,0.0,0.0,552.4849760525478,1512.0,0.0,2255.4228089524695,71,0,0,0,0,0,0,0,0,0,,1,,2,106491,2,1,2,0,2,,84.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1035.85046154575,324.0,27849.764109880663,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05429130365465343,27849.764109880663,7,4,7,7_1,7_4,7_0_1 +6487,2,48.0,0.0,7,111,564.0,750.0,0.0,37,38,0.0,0.0,961.7331064618425,1314.0,0.0,1423.8780359548418,50,0,0,0,0,0,0,0,0,0,,1,,5,106492,2,1,2,0,1,,474.0,,43,4.0,0.0,7.0,4.0,2.5,4,4,626.904525495896,564.0,139147.50602288317,1,1,0,1,134.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009443216321706185,55659.00240915327,10,5,10,10_1,10_4,10_0_0 +6488,2,68.0,0.0,6,111,620.0,0.0,0.0,78,78,0.0,503.2443652638851,1057.224336890678,1120.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,106493,2,1,3,0,1,,325.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,325.868227831726,620.0,62732.032798384345,5,5,0,1,105.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0178537176309843,31366.016399192173,8,4,8,8_1,8_3,8_0_0 +6489,2,81.0,0.0,2,111,365.0,469.0,0.0,77,78,0.0,0.0,622.3981983308023,834.0,0.0,890.3983984837611,70,0,0,0,0,0,0,0,0,0,,2,,2,106494,1,1,0,1,1,,0.0,505.0,41,1.0,3.0,4.0,4.0,2.5,4,4,352.127254374857,365.0,35257.395959707166,5,5,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02365461138857536,14102.958383882866,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6490,2,71.0,0.0,2,111,210.0,230.0,0.0,77,78,0.0,0.0,358.0921141081328,440.0,0.0,436.65593102615145,70,2,1,2,2,1,2,2,2,0,,2,,2,106495,1,3,0,1,1,860.0,350.0,310.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1334.87165995372,210.0,28121.385107012615,5,5,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.015646455475988537,18747.590071341743,5,3,5,5_0,5_3,5_0_1 +6491,2,36.0,0.0,9,112,390.0,1220.0,0.0,37,38,0.0,0.0,665.0282119151038,1610.0,0.0,2316.1749384865425,10,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,106496,2,1,1,0,1,,328.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1993.30998530529,390.0,76413.22159686036,1,1,1,2,110.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02106965216692488,36387.24837945731,9,5,9,9_1,9_1,9_0_0 +6492,2,56.0,0.0,2,111,150.0,230.0,0.0,0,52,0.0,0.0,255.78008150580916,380.0,0.0,436.65593102615145,50,2,2,2,2,1,2,2,2,3,20.0,2,,2,106497,2,3,0,1,1,1200.0,0.0,288.0,22,2.0,1.0,4.0,2.0,1.5,2,2,1038.43977743319,150.0,34829.69164099716,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010910231532245651,23219.79442733144,6,3,6,6_0,6_4,6_0_1 +6494,2,43.0,0.0,6,221,43.0,,,0,85,0.0,0.0,,307.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,106499,2,1,0,0,2,,288.0,,31,0.0,0.0,3.0,5.0,2.5999999999999996,3,2,71.40445973736117,43.0,5251.303226520376,0,6,0,1,28.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05846167832197812,2019.7320102001447,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +6495,2,45.0,0.0,7,111,3500.0,,,11,21,0.0,0.0,,3600.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,106500,2,1,0,0,1,,1500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,3,107.9277956517961,3500.0,50849.27838522525,1,1,0,1,149.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07079746486719102,19557.414763548175,5,3,5,5_1,5_2,5_0_0 +6496,2,51.0,0.0,8,112,2100.0,0.0,0.0,42,42,316.40485531098045,0.0,3580.9211410813286,2500.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,80.0,1,2003.0,6,106501,2,1,1,0,1,,225.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,313.917001326337,2100.0,86028.20510993227,1,1,1,2,143.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02906023666081772,37403.56743910099,9,5,9,9_1,9_0,9_0_0 +6497,1,49.0,280.0,2,111,700.0,600.0,0.0,85,69,421.8731404146406,0.0,1193.6403803604428,1700.0,0.0,1139.1024287638734,42,0,0,0,0,0,0,0,0,0,,2,,2,106502,2,1,0,1,2,948.0,650.0,334.0,42,1.0,5.0,4.0,3.0,1.8,2,2,463.392610489823,700.0,28815.061694632197,6,4,2,3,82.0,6,4,7,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.058996923831562846,16008.367608128998,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +6498,2,55.0,0.0,1,111,300.0,650.0,0.0,0,62,0.0,0.0,511.56016301161833,950.0,0.0,1234.027631160863,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,106503,2,1,2,0,1,,150.0,373.0,12,1.0,0.0,4.0,1.0,1.0,1,1,275.603012259319,300.0,26713.02801544959,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03556317162736338,26713.02801544959,7,4,7,7_1,7_3,7_1_0 +6499,2,79.0,0.0,2,111,300.0,0.0,0.0,0,78,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106504,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,950.373995054701,300.0,41647.308163499845,0,5,0,1,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007203346704239657,41647.308163499845,9,5,9,9_0,9_4,9_0_1 +6500,0,91.0,0.0,2,111,400.0,0.0,0.0,0,72,1265.6194212439218,0.0,682.0802173488245,1680.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,106505,2,1,2,0,1,,80.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1576.38186616698,400.0,19501.679098188015,0,5,0,1,70.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08614642829171033,19501.679098188015,5,3,5,5_1,5_2,5_0_1 +6501,2,33.0,0.0,2,111,600.0,0.0,0.0,34,38,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,2,106506,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,877.976798029557,600.0,82435.74256510244,1,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007278396255436878,39255.11550719164,9,5,9,9_0,9_4,9_0_1 +6502,2,56.0,0.0,5,400,1500.0,,,52,68,0.0,0.0,,1800.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,3,106507,2,1,0,0,2,,1200.0,,43,3.0,0.0,4.0,7.0,3.6,5,4,6.1918988573027525,1500.0,18645.9375,4,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09653577354316456,5179.427083333333,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6503,2,79.0,0.0,2,111,620.0,1200.0,0.0,74,74,0.0,0.0,1057.224336890678,1820.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,0,,2,,2,106508,2,1,0,1,2,,430.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,825.402003823219,620.0,114600.35793649306,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015881276749664004,76400.2386243287,10,5,10,10_0,10_4,10_0_1 +6504,0,73.0,0.0,5,400,700.0,0.0,0.0,0,75,0.0,0.0,1193.6403803604428,765.0,90.06329965077386,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,106509,2,1,3,0,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2048.86666484581,700.0,22306.447161103297,0,5,5,0,114.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03429501769039953,22306.447161103297,6,3,6,6_1,6_0,6_0_0 +6505,2,46.0,0.0,2,111,520.0,100.0,0.0,46,21,0.0,0.0,886.7042825534718,620.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,106510,2,2,0,1,2,1500.0,0.0,600.0,43,2.0,0.0,3.0,3.0,2.0,3,2,2386.17964992987,520.0,26753.01033554289,1,1,2,3,82.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023174962078054254,13376.505167771445,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6506,2,49.0,0.0,6,111,730.0,910.0,0.0,38,38,0.0,198.6490915515336,1244.7963966616046,1790.0,0.0,1727.638683625208,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,106511,2,1,2,0,1,,375.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,886.458443610995,730.0,115195.28574635266,1,1,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015538830329753103,50084.906846240294,10,5,10,10_1,10_3,10_0_0 +6507,1,33.0,318.0,7,111,0.0,0.0,1280.0,85,62,0.0,0.0,806.807411730872,1280.0,0.0,1531.8171488827913,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,106512,2,2,2,0,1,,0.0,564.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,1190.08911077945,0.0,37618.65207341804,6,1,2,3,110.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.034025674218786515,13932.834101265942,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +6508,2,57.0,0.0,1,111,960.0,0.0,0.0,0,45,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,1,106513,2,2,0,0,1,,0.0,,32,2.0,2.0,3.0,2.0,1.5,2,2,1022.87117324394,960.0,37741.227606848755,0,1,1,2,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025436374513313195,25160.818404565838,7,4,7,7_0,7_4,7_1_0 +6509,2,76.0,0.0,2,112,635.0,0.0,0.0,75,78,1111.635724992578,0.0,1082.8023450412588,1782.0,128.85979796187644,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106514,2,2,2,0,1,,249.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1749.76354000821,635.0,55279.629330809854,5,5,0,1,120.0,9,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03223610616735468,36853.0862205399,9,5,9,9_1,9_2,9_0_1 +6510,1,40.0,340.0,7,111,516.0,,,43,64,0.0,0.0,,696.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,2,,5,106515,2,2,0,0,1,,600.0,455.0,43,2.0,0.0,3.0,3.0,2.0,3,2,134.8511275064913,516.0,31709.836120244716,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021949025449414045,15854.918060122358,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +6511,2,69.0,0.0,5,111,5018.0,0.0,0.0,75,74,0.0,211.89236432163582,8556.696326641002,5178.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,106516,2,1,1,0,1,,1570.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1893.8340496583,5018.0,102377.37597149526,5,5,0,1,180.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05057758074832569,68251.58398099685,10,5,10,10_1,10_3,10_0_0 +6512,2,32.0,0.0,5,112,1700.0,0.0,0.0,53,46,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,12.0,1,,3,106517,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,668.222373559399,1700.0,52723.2207959473,1,1,1,2,145.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03224385715317822,25106.29561711776,7,4,7,7_1,7_1,7_0_0 +6513,2,41.0,0.0,1,111,280.0,,,0,56,0.0,0.0,,544.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,1,106518,1,1,0,0,2,,280.0,638.0,32,1.0,1.0,4.0,2.0,1.5,2,1,88.7106756073776,280.0,9339.867980412619,0,4,2,3,63.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05824493463300185,6226.578653608412,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +6514,2,58.0,0.0,6,111,800.0,0.0,0.0,67,53,0.0,344.3250920226582,1364.160434697649,1285.0,311.75757571421724,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,106519,2,1,2,0,2,,400.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1688.1508924486,800.0,66653.29870530468,1,1,0,1,140.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019278865786994153,44435.53247020312,10,5,10,10_1,10_2,10_0_0 +6515,2,72.0,0.0,2,111,300.0,170.0,0.0,86,78,0.0,0.0,511.56016301161833,470.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,0,,2,,2,106520,1,1,0,1,1,,175.0,354.0,41,0.0,3.0,4.0,2.0,1.5,2,2,283.065325837259,300.0,23220.231325244793,6,5,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020240969756792255,15480.154216829862,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6516,1,65.0,97.0,2,111,270.0,651.0,0.0,0,78,0.0,0.0,460.40414671045653,921.0,0.0,1235.9261352088026,70,2,2,1,2,1,2,2,2,0,,2,,2,106521,1,2,0,0,1,,0.0,226.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1947.44330265388,270.0,10870.604845485661,0,5,2,3,75.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08472389651643647,10870.604845485661,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +6517,2,61.0,0.0,5,112,1000.0,0.0,0.0,90,78,0.0,794.5963662061343,1705.2005433720612,1600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,8,,3,106522,1,3,0,0,1,,290.0,365.0,42,1.0,8.0,4.0,2.0,1.5,2,2,939.114379556587,1000.0,23245.60812854549,1,5,2,3,80.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.06883020616850234,15497.072085696993,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +6518,1,38.0,295.0,1,111,200.0,1000.0,0.0,85,62,0.0,0.0,341.04010867441224,1200.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,1,106523,2,1,2,0,1,,450.0,459.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,3,2,230.810360354944,200.0,28774.74292156197,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04170323965260506,9922.325145366198,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +6519,2,57.0,0.0,1,300,1260.0,0.0,0.0,0,43,0.0,211.89236432163582,2148.552684648797,1420.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,106524,2,2,1,0,1,,200.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,1578.33830366041,1260.0,56644.532382356694,0,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02506861545638416,56644.532382356694,10,5,10,10_1,10_0,10_1_0 +6520,2,35.0,0.0,6,111,991.0,0.0,0.0,55,38,0.0,582.7040018844986,1689.8537384817125,1431.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,4,106525,1,2,2,0,2,,381.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,129.930913657086,991.0,54801.70725757347,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026112325173997916,22834.044690655614,6,3,6,6_1,6_4,6_0_0 +6521,1,34.0,200.0,9,111,920.0,0.0,0.0,54,52,0.0,0.0,1568.7844999022964,920.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,95.0,2,2009.0,6,106526,2,2,0,0,1,,0.0,570.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1518.69874824674,920.0,8204.741702831872,4,1,2,3,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11213028189326928,4558.189834906596,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +6522,1,44.0,41.0,2,111,0.0,0.0,2001.0,77,38,0.0,0.0,1261.2668991199023,2001.0,0.0,2394.6610272769262,31,0,0,0,0,0,0,0,0,0,,1,,2,106527,2,1,2,0,1,,558.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,217.841242528211,0.0,33607.85359772313,7,4,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05953965474711435,16803.926798861565,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +6523,1,67.0,280.0,5,111,0.0,,,67,78,0.0,0.0,,138.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,106528,1,2,0,0,2,,30.0,550.0,42,1.0,6.0,3.0,2.0,1.5,2,2,116.21741033806188,0.0,19227.0,4,5,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.007177406771727258,12818.0,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +6524,2,79.0,0.0,1,111,1080.0,0.0,0.0,86,77,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,106529,2,1,0,0,2,,0.0,264.0,41,0.0,2.0,1.0,2.0,1.5,2,2,901.002225782581,1080.0,32892.11356866082,6,5,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03283461847915453,21928.075712440546,6,3,6,6_0,6_4,6_1_0 +6525,2,42.0,0.0,7,112,1200.0,0.0,0.0,56,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,106530,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,701.522631657544,1200.0,57945.48283518021,1,1,1,2,90.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020709120733591484,27593.087064371528,7,4,7,7_1,7_1,7_0_0 +6526,2,51.0,0.0,5,112,1000.0,0.0,0.0,54,38,0.0,331.081819252556,1705.2005433720612,1340.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,106531,2,2,2,0,1,,364.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,1089.33629462056,1000.0,59887.24723108497,1,1,0,1,123.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02237538143687563,23954.898892433986,6,3,6,6_1,6_0,6_0_0 +6527,2,70.0,0.0,5,112,939.0,0.0,0.0,75,74,0.0,0.0,1601.1833102263654,939.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,106532,2,2,3,0,1,,305.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1023.94797154677,939.0,49067.2133292201,5,5,0,1,120.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019137015051164816,32711.4755528134,8,4,8,8_1,8_2,8_0_0 +6528,1,45.0,345.0,2,111,600.0,1000.0,0.0,0,85,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,71,2,2,2,2,1,2,2,2,0,,1,,2,106533,1,2,3,0,1,,300.0,350.0,31,0.0,0.0,3.0,2.0,1.3,1,1,443.32670009908,600.0,9333.209198105083,0,6,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.17143085149370135,7179.391690850064,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +6529,2,66.0,0.0,7,111,372.0,,,77,78,0.0,0.0,,602.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,5,106534,2,1,0,0,2,,350.0,,41,1.0,2.0,4.0,4.0,2.5,4,4,124.25972947842942,372.0,53579.20866698955,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011235701589801484,21431.68346679582,6,3,6,6_1,6_2,6_0_0 +6530,1,40.0,540.0,5,111,300.0,0.0,0.0,0,85,0.0,0.0,511.56016301161833,300.0,0.0,0.0,60,2,2,2,2,1,1,2,2,0,,2,,3,106535,2,1,0,1,1,,0.0,700.0,31,0.0,0.0,4.0,6.0,2.8999999999999995,3,1,206.673722865552,300.0,17944.78702640266,0,6,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.01671794708728511,6187.857595311263,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6531,1,34.0,389.0,1,221,364.0,1598.0,0.0,65,56,0.0,0.0,620.6929977874303,1962.0,0.0,3033.809468607783,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,106536,2,3,1,0,1,,702.0,467.0,43,2.0,1.0,5.0,5.0,2.4,2,2,1881.97138617121,364.0,41008.1821671375,1,1,2,3,82.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.047844110524174296,17086.742569640624,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +6532,0,80.0,0.0,1,111,380.0,900.0,0.0,78,78,0.0,0.0,647.9762064813832,1280.0,0.0,1708.65364314581,50,2,2,2,2,2,2,2,1,0,,1,,1,106537,1,2,1,0,1,,300.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,299.494623469645,380.0,44384.734434047525,5,5,5,0,74.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.028838744138527776,29589.822956031683,8,4,8,8_1,8_3,8_1_0 +6533,2,51.0,0.0,1,111,750.0,0.0,0.0,65,62,527.3414255183008,0.0,1278.9004075290459,1250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,106538,2,1,2,0,1,,480.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1762.54728738961,750.0,40634.435848887944,1,1,0,1,125.0,8,7,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030762085750335552,27089.62389925863,7,4,7,7_1,7_3,7_1_0 +6534,2,72.0,0.0,1,111,668.0,0.0,0.0,0,75,0.0,0.0,1139.073962972537,668.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,106539,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,940.771181012376,668.0,23191.943101544082,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028803106194043984,23191.943101544082,6,3,6,6_0,6_4,6_1_0 +6535,2,61.0,0.0,2,111,700.0,500.0,0.0,56,47,0.0,0.0,1193.6403803604428,1200.0,0.0,949.2520239698945,70,2,1,2,2,1,2,2,2,2,7.0,2,,2,106540,2,2,0,1,1,400.0,0.0,353.0,43,2.0,3.0,3.0,2.0,1.5,2,2,260.304974383295,700.0,40478.957798850635,1,1,2,3,60.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.029645032017945702,26985.971865900425,7,4,7,7_0,7_2,7_0_1 +6536,2,41.0,0.0,9,111,158.0,,,43,47,0.0,0.0,,308.0,207.83838380947813,,43,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,106541,2,1,0,0,2,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,297.4801500580795,158.0,75304.0,1,1,1,2,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00409008817592691,35859.04761904762,9,5,9,9_1,9_2,9_0_0 +6538,1,70.0,50.0,2,111,264.0,0.0,0.0,0,77,0.0,0.0,450.1729434502241,264.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,106543,1,1,0,1,2,490.0,102.0,575.0,11,0.0,2.0,5.0,1.0,1.0,1,1,1852.84505803967,264.0,12458.128634455687,0,5,2,3,77.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02119098363375781,12458.128634455687,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6539,2,73.0,0.0,2,221,1000.0,0.0,0.0,78,78,0.0,0.0,1705.2005433720612,1070.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106544,2,1,2,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1560.99081469386,1000.0,24201.357395074916,5,5,0,1,83.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.044212396128563834,16134.238263383277,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +6540,1,35.0,64.0,1,400,0.0,0.0,0.0,0,68,0.0,0.0,0.0,577.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,106545,2,2,5,0,1,,450.0,250.0,32,1.0,0.0,2.0,3.0,1.6,1,1,1097.05673459006,0.0,18387.874430196684,0,1,2,3,57.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.031379374608543495,11492.421518872927,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +6541,2,49.0,0.0,9,111,550.0,,,0,46,0.0,0.0,,550.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,106546,2,1,0,0,1,,180.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,281.0250748056108,550.0,32113.42942820345,0,1,1,2,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01712679118340956,32113.42942820345,8,4,8,8_1,8_2,8_0_0 +6543,1,34.0,100.0,5,221,676.0,0.0,0.0,63,31,0.0,211.89236432163582,1152.7155673195134,836.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,3,106548,1,2,0,0,1,,331.0,600.0,43,2.0,0.0,2.0,3.0,1.8,2,2,890.336064073622,676.0,62304.35335670334,1,1,3,4,42.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013418002995934385,34613.529642612964,9,5,9,9_0,9_1,9_0_0 +6544,1,47.0,270.0,1,111,800.0,0.0,0.0,0,68,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,106549,1,2,5,0,1,,115.0,380.0,12,1.0,1.0,2.0,1.0,1.0,1,1,326.404162921538,800.0,13742.648395367769,0,1,2,3,56.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0582129424390757,13742.648395367769,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +6546,2,77.0,0.0,1,111,430.0,800.0,0.0,72,74,0.0,0.0,733.2362336499863,1230.0,0.0,1518.8032383518312,10,0,0,0,0,0,0,0,0,0,,2,,1,106551,2,1,0,0,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,973.750625883834,430.0,108918.3266407986,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01129286537844465,72612.2177605324,10,5,10,10_0,10_4,10_1_0 +6547,2,75.0,0.0,2,211,480.0,,,77,78,0.0,0.0,,756.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,106552,2,1,0,0,2,,480.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,70.31460043447625,480.0,14641.434388551732,5,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05163428527133401,9760.956259034489,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +6548,2,40.0,0.0,2,111,450.0,1100.0,0.0,34,38,0.0,0.0,767.3402445174275,1550.0,0.0,2088.354452733768,12,2,2,1,2,1,2,2,2,2,30.0,2,,2,106553,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,816.733539621204,450.0,112221.63896798047,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013811952973189531,46759.01623665853,10,5,10,10_0,10_4,10_0_1 +6549,2,49.0,0.0,5,111,2933.0,0.0,0.0,42,34,0.0,0.0,5001.353193710255,3053.0,166.2707070475825,0.0,30,0,0,0,0,0,0,0,0,0,,2,,3,106554,1,2,0,0,1,,900.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,565.714640134948,2933.0,74972.5900183048,1,1,0,1,135.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04072154902551186,29989.036007321924,8,4,8,8_0,8_3,8_0_0 +6550,2,55.0,0.0,9,111,480.0,,,0,38,0.0,0.0,,480.0,0.0,,20,0,0,0,0,0,0,0,0,2,6.0,2,2008.0,6,106555,1,1,0,0,1,,100.0,900.0,12,1.0,1.0,4.0,1.0,1.0,1,1,129.5876327848858,480.0,58836.890155369685,0,1,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008158147018519695,58836.890155369685,10,5,10,10_0,10_3,10_0_0 +6552,2,87.0,0.0,1,400,2200.0,0.0,0.0,71,71,0.0,0.0,3751.441195418535,2380.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106557,2,1,4,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1012.99522507914,2200.0,18993.167499254378,5,5,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1253082193948657,12662.111666169585,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6553,2,50.0,0.0,1,111,690.0,1776.0,0.0,53,37,0.0,132.4327277010224,1176.5883749267223,2566.0,0.0,3371.743189141065,12,0,0,0,0,0,0,0,0,3,45.0,1,,1,106558,2,1,1,0,1,,700.0,,43,5.0,0.0,5.0,6.0,3.3,5,5,622.311275944584,690.0,112656.31572630405,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022777240525369554,34138.27749281941,9,5,9,9_1,9_4,9_1_0 +6554,2,80.0,0.0,8,111,900.0,0.0,0.0,0,77,0.0,0.0,1534.680489034855,980.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106559,2,1,2,0,1,,250.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,631.57824804305,900.0,16612.567398530504,0,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05899148376588002,16612.567398530504,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +6555,2,61.0,0.0,2,111,250.0,0.0,0.0,0,75,0.0,0.0,426.3001358430153,250.0,0.0,0.0,44,2,2,2,2,1,2,2,2,0,,2,,2,106560,1,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1012.66764731067,250.0,32229.136519472355,0,5,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.007756956189283998,32229.136519472355,8,4,8,8_0,8_4,8_0_1 +6556,2,54.0,0.0,2,111,130.0,417.0,0.0,0,43,0.0,0.0,221.67607063836795,547.0,0.0,791.676187990892,20,0,0,0,0,0,0,0,0,1,20.0,2,,2,106561,1,2,0,0,1,,300.0,164.0,12,1.0,0.0,1.0,1.0,1.0,1,1,497.053674471306,130.0,36388.34427032388,0,1,2,3,21.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015032286051171058,36388.34427032388,9,5,9,9_0,9_4,9_0_1 +6557,1,25.0,98.0,5,111,650.0,0.0,0.0,0,68,0.0,0.0,1108.3803531918397,830.0,249.40606057137379,0.0,41,2,1,2,2,1,1,1,2,2,10.0,2,,3,106562,1,3,0,1,2,1891.0,0.0,771.0,22,3.0,0.0,8.0,5.0,3.0,5,5,387.132104061338,650.0,22102.345368908813,0,2,2,3,160.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.0375525758079753,7367.448456302937,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +6558,2,45.0,0.0,2,111,296.0,0.0,0.0,0,85,0.0,0.0,504.7393608381301,406.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,106563,1,1,0,1,2,720.0,210.0,409.0,11,0.0,0.0,4.0,1.0,1.0,1,1,2086.94149721434,296.0,14269.991044055812,0,7,2,3,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028451314282297323,14269.991044055812,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6559,0,41.0,0.0,7,211,0.0,,,46,43,0.0,0.0,,1217.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,106564,1,3,0,0,2,,312.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,85.90880290533619,0.0,54897.1983994642,1,1,5,0,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022168708704302077,36598.13226630947,9,5,9,9_1,9_2,9_0_0 +6560,2,69.0,0.0,1,111,420.0,1623.0,0.0,77,78,0.0,0.0,716.1842282162656,2043.0,0.0,3081.2720698062776,70,0,0,0,0,0,0,0,0,0,,1,,1,106565,2,1,1,0,1,,333.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1302.05765982306,420.0,26528.14189647321,5,5,0,1,110.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07701255549570198,17685.42793098214,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +6561,1,39.0,200.0,2,111,1100.0,960.0,0.0,68,52,0.0,0.0,1875.7205977092674,2060.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,2,40.0,2,,2,106566,1,1,0,1,1,,1500.0,700.0,43,2.0,2.0,5.0,6.0,2.8999999999999995,3,2,542.068489352022,1100.0,35428.30878416387,4,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05814559234396199,12216.65820143582,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +6562,2,39.0,0.0,1,111,700.0,1200.0,0.0,42,37,0.0,0.0,1193.6403803604428,1900.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,4,60.0,1,,1,106567,2,1,2,0,1,,192.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,367.576504862254,700.0,171330.0790550412,1,1,0,1,109.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011089704799526822,71387.5329396005,10,5,10,10_1,10_4,10_1_0 +6563,1,72.0,147.0,2,111,200.0,240.0,0.0,0,78,0.0,0.0,341.04010867441224,440.0,0.0,455.6409715055494,70,0,0,0,0,0,0,0,0,0,,2,,2,106568,1,2,0,1,1,860.0,0.0,248.0,11,0.0,3.0,3.0,1.0,1.0,1,1,375.950436314356,200.0,10677.51448683819,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04120809206509371,10677.51448683819,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +6564,0,76.0,0.0,1,112,500.0,0.0,0.0,0,77,0.0,264.8654554020448,852.6002716860306,950.0,346.39730634913025,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106569,2,1,3,0,2,,150.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1154.74893243495,500.0,14754.976582558873,0,5,0,1,90.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06438505643736148,14754.976582558873,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6565,2,64.0,0.0,2,111,507.0,1896.0,0.0,77,78,0.0,198.6490915515336,864.5366754896351,2553.0,0.0,3599.56367489384,71,0,0,0,0,0,0,0,0,0,,1,,2,106570,2,1,2,0,1,,232.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,229.910705875348,507.0,35392.929871760156,5,5,0,1,68.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07213305056264997,23595.286581173437,6,3,6,6_1,6_2,6_0_1 +6566,1,51.0,610.0,2,111,600.0,0.0,0.0,85,63,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,2,1,2,2,1,2,2,2,0,,2,,2,106571,2,3,0,1,1,,0.0,850.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,207.348072300298,600.0,16544.01176590089,6,4,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03626689877219919,6127.4117651484785,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +6567,2,59.0,0.0,2,111,520.0,600.0,0.0,46,22,0.0,0.0,886.7042825534718,1120.0,0.0,1139.1024287638734,44,0,0,0,0,0,0,0,0,0,,8,,2,106572,2,1,0,0,2,,320.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,780.819477075965,520.0,83232.30025087927,1,1,0,1,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013456314395061649,55488.20016725285,10,5,10,10_0,10_2,10_0_1 +6568,2,42.0,0.0,5,111,1200.0,,,56,46,0.0,0.0,,1464.0,365.79555550468154,,31,0,0,0,0,0,0,0,0,3,20.0,1,,3,106573,2,1,0,0,2,,1200.0,170.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,144.90148638016154,1200.0,40494.26910590464,1,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03615326396362906,15574.718886886403,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6569,1,74.0,186.0,2,211,113.0,246.0,0.0,0,78,0.0,0.0,192.6876614010429,488.0,0.0,467.0319957931881,71,0,0,0,0,0,0,0,0,0,,2,,2,106574,2,1,0,1,1,49.0,158.0,225.0,11,0.0,8.0,2.0,1.0,1.0,1,1,681.868452496739,113.0,8656.4317515779,0,5,2,3,38.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.056374267597159425,8656.4317515779,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +6570,2,63.0,0.0,1,111,220.0,1030.0,0.0,0,77,0.0,0.0,375.14411954185346,1250.0,0.0,1955.4591693779826,70,0,0,0,0,0,0,0,0,0,,1,,1,106575,2,1,1,0,1,,310.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,313.737864873026,220.0,15588.719144696217,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08018619030834809,15588.719144696217,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +6571,2,67.0,0.0,5,300,900.0,0.0,0.0,0,71,316.40485531098045,0.0,1534.680489034855,1380.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106576,1,1,2,0,2,,250.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2144.56671798606,900.0,11601.982758865379,0,5,0,1,90.0,0,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11894518623943875,11601.982758865379,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6572,2,47.0,0.0,2,111,1300.0,1400.0,0.0,42,22,0.0,0.0,2216.7607063836795,2700.0,0.0,2657.9056671157045,30,0,0,0,0,0,0,0,0,2,20.0,1,,2,106577,2,1,1,0,1,,1200.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,253.065899882153,1300.0,83842.6917370915,1,1,1,2,120.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03220316456998405,29943.81847753268,8,4,8,8_1,8_3,8_0_1 +6573,2,59.0,0.0,2,111,396.0,1344.0,0.0,56,38,0.0,0.0,675.2594151753362,1740.0,0.0,2551.5894404310766,60,2,2,2,1,1,2,1,2,1,10.0,2,,2,106578,2,3,0,0,1,,0.0,600.0,43,3.0,1.0,4.0,3.0,2.0,3,3,2215.68289234851,396.0,43076.39097873705,1,1,2,3,85.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.040393356092874214,21538.195489368525,6,3,6,6_0,6_3,6_0_1 +6574,2,51.0,0.0,1,300,1500.0,0.0,0.0,0,37,0.0,0.0,2557.8008150580918,1525.0,34.63973063491302,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,106579,2,1,1,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,921.923969501811,1500.0,12292.417260211978,0,4,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1240602208433089,12292.417260211978,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6575,2,65.0,0.0,5,111,832.0,0.0,0.0,0,75,0.0,0.0,1418.7268520855548,832.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,106580,1,2,0,1,1,,0.0,600.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2659.97603846182,832.0,21960.812095446283,0,5,2,3,49.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037885666358054244,21960.812095446283,6,3,6,6_0,6_3,6_0_0 +6576,1,70.0,100.0,5,111,500.0,100.0,0.0,0,77,0.0,0.0,852.6002716860306,600.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,3,106581,2,2,0,1,1,,0.0,400.0,11,0.0,4.0,5.0,1.0,1.0,1,1,349.100770591561,500.0,13827.624229329906,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043391401881411724,13827.624229329906,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +6577,2,55.0,0.0,2,112,900.0,0.0,0.0,11,11,928.1209089122093,635.6770929649075,1534.680489034855,2365.0,145.4868686666347,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,106582,2,1,2,0,1,,150.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1567.2369652196,900.0,58515.22038043721,1,1,0,1,100.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040416834878582567,39010.146920291474,9,5,9,9_1,9_0,9_0_1 +6578,2,53.0,0.0,1,112,660.0,0.0,0.0,77,74,2953.111982902484,0.0,1125.4323586255605,3460.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106583,2,1,2,0,1,,559.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,615.046188484028,660.0,40597.437572213916,6,7,0,1,120.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08522705389583815,27064.958381475943,7,4,7,7_1,7_0,7_1_0 +6579,1,49.0,190.0,2,221,42.0,70.0,0.0,0,68,0.0,0.0,71.61842282162657,112.0,0.0,132.89528335578524,71,2,1,2,2,1,2,2,2,0,,2,,2,106584,2,2,0,0,1,,277.0,190.0,32,1.0,2.0,4.0,2.0,1.5,2,1,2475.9276487609,42.0,9386.269648596022,0,4,2,3,74.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.011932322870859853,6257.513099064015,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +6580,0,45.0,0.0,7,111,160.0,,,0,63,0.0,0.0,,223.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,5,106585,1,3,0,0,2,,240.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,128.66615065299263,160.0,5214.799999999999,0,4,5,0,35.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042762905576436305,5214.799999999999,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6581,2,58.0,0.0,2,221,810.0,,,0,22,0.0,0.0,,1074.0,365.79555550468154,,41,0,0,0,0,0,0,0,0,0,,1,,2,106586,2,3,0,0,2,,672.0,800.0,32,2.0,0.0,3.0,2.0,1.5,2,2,132.2092029971902,810.0,5644.225879682179,0,1,2,3,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19028295870761217,3762.8172531214527,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +6582,2,73.0,0.0,1,112,491.0,0.0,0.0,71,71,0.0,2781.0872817214704,837.253466795682,2711.0,166.2707070475825,0.0,71,2,2,1,1,1,2,2,2,0,,1,,1,106587,1,3,4,0,1,,622.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1085.21440095101,491.0,22492.550066301475,5,5,0,1,80.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.12052879695760431,14995.033377534317,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6584,2,59.0,0.0,9,111,400.0,,,55,33,0.0,0.0,,400.0,0.0,,20,0,0,0,0,0,0,0,0,1,5.0,2,2011.0,6,106589,2,2,0,0,2,,160.0,1150.0,43,2.0,0.0,3.0,2.0,1.5,2,2,56.285866412826536,400.0,119306.4147531855,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003352711594154412,79537.609835457,10,5,10,10_0,10_2,10_0_0 +6585,2,58.0,0.0,7,300,1892.0,0.0,0.0,62,52,0.0,0.0,3226.2394280599397,1948.0,77.59299662220518,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,106590,2,1,2,0,1,,960.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1103.08000730983,1892.0,33514.30936574987,1,1,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05812442615901759,22342.87291049991,6,3,6,6_1,6_0,6_0_0 +6586,2,81.0,0.0,2,111,40.0,0.0,0.0,0,77,0.0,0.0,68.20802173488245,40.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,106591,2,2,0,1,1,,0.0,,21,1.0,3.0,4.0,2.0,1.5,2,2,1484.14858973151,40.0,21709.199619785777,0,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0018425368369428036,14472.799746523851,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6587,2,40.0,0.0,8,111,1500.0,1500.0,0.0,85,31,0.0,264.8654554020448,2557.8008150580918,3200.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,106592,2,2,1,0,1,,842.0,,42,1.0,0.0,7.0,3.0,1.8,2,2,565.047045264865,1500.0,115889.86935212972,6,1,1,2,146.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027612422189180707,64383.26075118318,10,5,10,10_1,10_4,10_0_0 +6588,2,62.0,0.0,9,400,1200.0,0.0,0.0,0,46,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,106593,2,1,1,0,1,,338.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,891.696069255593,1200.0,12958.045166470345,0,5,1,2,111.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09260656098846345,12958.045166470345,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +6589,2,81.0,0.0,2,111,425.0,1662.0,0.0,77,74,0.0,0.0,724.710230933126,2087.0,0.0,3155.3137276759294,44,0,0,0,0,0,0,0,0,0,,2,,2,106594,2,2,0,0,1,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,328.065824278131,425.0,18478.890986904054,5,5,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11293967811591354,12319.260657936036,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +6590,2,55.0,0.0,7,111,1800.0,0.0,0.0,43,47,0.0,145.67600047112464,3069.36097806971,1910.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,5,106595,2,1,1,0,1,,400.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,520.001944558439,1800.0,75360.31078729568,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025344906092425377,41866.839326275374,9,5,9,9_1,9_4,9_0_0 +6591,2,62.0,0.0,6,111,1100.0,0.0,0.0,77,77,0.0,529.7309108040896,1875.7205977092674,1628.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106596,1,2,1,0,1,,264.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1566.94507135287,1100.0,23816.647547843433,6,5,0,1,108.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06835554822439371,15877.765031895622,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6592,2,60.0,0.0,7,111,600.0,,,0,34,0.0,0.0,,692.0,127.47420873647992,,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,106597,2,1,0,0,1,,1500.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,96.34252728089929,600.0,75816.86867097631,0,1,1,2,191.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009127256402570299,50544.57911398421,10,5,10,10_1,10_3,10_0_0 +6593,1,45.0,128.0,9,300,1440.0,0.0,0.0,0,47,0.0,397.2981831030672,2455.488782455768,1860.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,106598,2,1,1,0,1,,220.0,,32,1.0,1.0,6.0,2.0,1.5,2,1,1280.93220660888,1440.0,20179.385093529865,0,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09217327442729528,13452.923395686577,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +6594,2,38.0,0.0,2,111,264.0,336.0,0.0,0,65,0.0,0.0,450.1729434502241,600.0,0.0,637.8973601077691,42,1,2,2,2,1,2,2,2,3,16.0,2,,2,106599,2,1,0,1,1,576.0,0.0,293.0,12,1.0,0.0,2.0,1.0,1.0,1,1,917.541231833613,264.0,28293.764635007847,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021206085783919353,28293.764635007847,8,4,8,8_0,8_4,8_0_1 +6595,2,54.0,0.0,5,111,360.0,0.0,0.0,0,37,0.0,0.0,613.872195613942,360.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,2,,3,106600,2,1,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,987.381030735584,360.0,141286.2207389681,0,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002548019177787438,141286.2207389681,10,5,10,10_0,10_4,10_0_0 +6596,2,50.0,0.0,2,111,360.0,840.0,0.0,37,35,0.0,0.0,613.872195613942,1200.0,0.0,1594.7434002694229,41,2,2,2,2,2,1,2,2,3,45.0,2,,2,106601,1,2,0,1,2,768.0,0.0,1460.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,723.104257875683,360.0,81880.42759769404,4,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01465551701678943,31492.47215295925,8,4,8,8_0,8_4,8_0_1 +6597,2,28.0,0.0,1,300,1050.0,0.0,0.0,54,43,0.0,137.73003680906328,1790.4605705406643,1224.0,96.99124577775646,0.0,33,0,0,0,0,0,0,0,0,2,22.0,1,,1,106602,2,1,1,0,1,,195.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,939.325085568797,1050.0,41932.93594848359,4,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029189465805679254,27955.29063232239,7,4,7,7_1,7_0,7_1_0 +6598,2,73.0,0.0,1,112,2200.0,0.0,0.0,72,74,0.0,2648.654554020448,3751.441195418535,4260.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106603,1,1,3,0,2,,320.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1137.70819862951,2200.0,92918.20768641843,5,5,0,1,150.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.045846773265114014,61945.47179094562,10,5,10,10_1,10_0,10_1_0 +6599,2,88.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1669.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106604,1,2,5,0,2,,261.0,,21,0.0,0.0,4.0,3.0,2.0,3,3,1111.1496707723,0.0,19773.441193686747,0,5,0,1,80.0,5,4,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08440614780460558,9886.720596843374,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +6600,1,69.0,53.0,2,111,370.0,0.0,0.0,0,75,0.0,0.0,630.9242010476627,370.0,0.0,0.0,50,2,2,2,2,1,2,1,2,0,,2,,2,106605,1,1,0,1,2,535.0,0.0,429.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1893.01337070211,370.0,12745.48932423749,0,5,2,3,62.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.029029877989571466,12745.48932423749,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +6601,2,28.0,0.0,2,111,0.0,0.0,0.0,67,65,0.0,0.0,0.0,2905.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,2,106606,2,1,3,0,1,,453.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,598.425105309382,0.0,35808.30900620699,1,1,1,2,105.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08112642234785365,17051.575717241423,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +6602,2,42.0,0.0,8,111,490.0,620.0,0.0,0,43,0.0,0.0,835.54826625231,1110.0,0.0,1177.072509722669,44,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,106607,2,1,0,0,1,,0.0,406.0,32,1.0,0.0,3.0,4.0,2.3,3,1,1210.58550850513,490.0,17264.543969148788,0,1,2,3,69.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06429361829559681,7506.3234648473,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +6603,2,45.0,0.0,2,400,750.0,0.0,0.0,62,67,0.0,0.0,1278.9004075290459,875.0,173.19865317456512,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,106608,2,1,1,0,1,,1180.0,417.0,43,3.0,0.0,5.0,5.0,3.0,5,4,680.893344331272,750.0,52874.79007448895,1,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016548529058315265,17624.93002482965,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +6604,2,34.0,0.0,2,111,500.0,820.0,0.0,46,46,0.0,0.0,852.6002716860306,1320.0,0.0,1556.773319310627,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,106609,2,3,3,0,2,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1136.71042763878,500.0,50951.820574217054,1,1,1,2,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025906826981329775,28306.56698567614,8,4,8,8_1,8_2,8_0_1 +6605,2,52.0,0.0,9,112,720.0,0.0,0.0,0,68,0.0,0.0,1227.744391227884,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,106610,2,1,1,0,1,,300.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1331.72229682564,720.0,30520.994141706757,0,1,1,2,72.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023590319393172198,23477.687801312888,6,3,6,6_1,6_0,6_0_0 +6606,2,39.0,0.0,2,111,300.0,900.0,0.0,0,55,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,43,0,0,0,0,0,0,0,0,0,,2,,2,106611,2,1,0,0,1,,240.0,,32,1.0,0.0,1.0,2.0,1.3,1,1,2158.98678583865,300.0,18464.507451079997,0,4,1,2,28.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06498954836349081,14203.467270061536,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6607,2,67.0,0.0,6,111,800.0,0.0,0.0,75,74,0.0,0.0,1364.160434697649,1520.0,997.6242422854951,0.0,41,0,0,0,0,0,0,0,0,0,,7,,4,106612,2,1,0,0,1,,600.0,,41,1.0,2.0,3.0,3.0,2.0,3,3,1362.10398065086,800.0,45212.913739343225,5,5,0,1,36.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0336187136436936,22606.456869671612,6,3,6,6_1,6_3,6_0_0 +6608,2,88.0,0.0,2,112,720.0,,,0,78,0.0,0.0,,805.0,117.77508415870429,,71,0,0,0,0,0,0,0,0,0,,1,,2,106613,2,1,0,0,2,,560.0,,21,1.0,9.0,9.0,2.0,1.5,2,2,91.2399571362685,720.0,14777.088991885168,0,5,0,1,110.0,6,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05447622332396221,9851.39266125678,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +6609,2,58.0,0.0,5,111,330.0,0.0,0.0,56,63,0.0,0.0,562.7161793127802,330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,106614,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1218.86045443463,330.0,26700.934610254106,1,1,0,1,68.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012359117941634459,17800.62307350274,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +6610,2,65.0,0.0,7,111,300.0,0.0,0.0,52,75,0.0,794.5963662061343,511.56016301161833,900.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,106615,2,1,2,0,1,,560.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,490.123303160416,300.0,58686.36802545126,1,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015335759057532502,39124.24535030084,9,5,9,9_1,9_4,9_0_0 +6611,1,23.0,357.0,5,111,200.0,,,0,54,0.0,0.0,,440.0,332.541414095165,,71,2,2,2,2,1,2,2,2,0,,1,,3,106616,1,3,0,0,2,,200.0,365.0,22,2.0,0.0,3.0,3.0,2.0,3,3,131.55436591504738,200.0,7779.849381532944,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.05655636483714319,3889.924690766472,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6612,1,34.0,106.0,2,111,394.0,1157.0,0.0,0,42,0.0,0.0,671.8490140885921,1551.0,0.0,2196.5691834663357,43,0,0,0,0,0,0,0,0,0,,1,,2,106617,2,1,2,0,1,,520.0,447.0,22,2.0,3.0,4.0,3.0,2.0,3,3,311.161450435174,394.0,33378.62596391956,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04646686180780912,16689.31298195978,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +6613,0,48.0,0.0,2,111,300.0,,,0,63,0.0,0.0,,468.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,2,106618,1,2,0,0,2,,400.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,87.52851394772053,300.0,7872.607817054656,0,4,0,1,56.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05944662948739275,7872.607817054656,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +6614,1,34.0,100.0,2,111,400.0,300.0,0.0,0,52,0.0,0.0,682.0802173488245,887.0,0.0,569.5512143819367,50,2,1,2,2,1,2,2,2,2,40.0,2,,2,106619,1,3,0,1,1,548.0,0.0,296.0,32,1.0,0.0,3.0,2.0,1.3,1,1,324.320752145178,400.0,18520.56858998417,0,1,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.047892698093496174,14246.591223064746,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +6615,2,56.0,0.0,6,111,983.0,0.0,0.0,75,33,0.0,463.51454695357836,1676.212134134736,1403.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,106620,2,1,2,0,1,,500.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2647.61954543942,983.0,63670.18262251138,7,1,0,1,93.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022035432320308,42446.788415007584,9,5,9,9_1,9_3,9_0_0 +6616,2,43.0,0.0,5,111,450.0,0.0,0.0,0,37,1054.6828510366015,0.0,767.3402445174275,1450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,8,,3,106621,2,1,0,1,2,,0.0,,32,1.0,0.0,3.0,3.0,2.0,3,2,881.635877929545,450.0,39406.73672515937,0,1,1,2,64.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036795739015716124,19703.368362579684,5,3,5,5_0,5_4,5_0_0 +6617,2,52.0,0.0,7,111,400.0,,,55,64,0.0,0.0,,652.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,106622,2,2,0,0,2,,500.0,489.0,43,3.0,0.0,4.0,3.0,2.0,3,3,87.31380568248343,400.0,25492.73173791101,1,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025575917351783495,12746.365868955505,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +6618,1,49.0,255.0,9,111,500.0,,,56,54,0.0,0.0,,788.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,106623,2,1,0,0,2,,420.0,551.0,43,2.0,0.0,3.0,4.0,2.1,2,2,178.2170696352627,500.0,12523.299500650097,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0629227145736708,5963.475952690522,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6619,1,91.0,390.0,1,111,360.0,,,0,86,0.0,0.0,,452.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,1,106624,2,3,0,0,2,,800.0,550.0,21,2.0,0.0,4.0,3.0,2.0,3,3,103.49119559611681,360.0,5110.0,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08845401174168298,2555.0,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +6620,1,43.0,221.0,2,111,350.0,100.0,0.0,0,63,0.0,0.0,596.8201901802214,450.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,2,,2,106625,2,1,0,1,1,780.0,300.0,407.0,32,1.0,3.0,4.0,3.0,1.6,1,1,314.759485443338,350.0,4774.519684465351,0,4,2,3,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09425031830199498,2984.0748027908444,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6622,2,47.0,0.0,5,211,450.0,,,46,34,0.0,0.0,,534.0,116.38949493330776,,44,0,0,0,0,0,0,0,0,2,10.0,1,,3,106627,2,1,0,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,93.17216882489325,450.0,79915.78676818204,1,1,1,2,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006682033945921292,31966.314707272813,8,4,8,8_1,8_2,8_0_0 +6623,2,62.0,0.0,6,111,1325.0,1519.0,0.0,33,38,0.0,0.0,2259.390719967981,2844.0,0.0,2883.8276488205397,12,0,0,0,0,0,0,0,0,2,20.0,1,,4,106628,2,1,2,0,1,,771.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,2649.04033293828,1325.0,147008.81795216224,1,1,0,1,205.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01934577829831581,98005.87863477482,10,5,10,10_1,10_3,10_0_0 +6624,2,53.0,0.0,2,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,990.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,106629,1,2,0,1,2,612.0,168.0,370.0,43,2.0,2.0,2.0,2.0,1.5,2,2,392.91139834355,0.0,20630.94187156393,4,1,2,3,46.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04798617562703418,13753.961247709287,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6625,1,28.0,370.0,6,111,650.0,,,55,65,0.0,0.0,,694.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,106630,1,3,0,0,2,,350.0,612.0,43,2.0,0.0,5.0,4.0,2.1,2,2,130.57931698632413,650.0,13972.293436293436,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.049669726961023807,6653.473064901636,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6626,2,57.0,0.0,7,111,1600.0,0.0,0.0,54,37,0.0,198.6490915515336,2728.320869395298,1790.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,5,106631,2,1,2,0,1,,480.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,947.050863065833,1600.0,69037.70780522667,1,1,1,2,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02592785967126915,46025.13853681778,10,5,10,10_1,10_4,10_0_0 +6627,2,83.0,0.0,2,111,268.0,100.0,0.0,0,78,0.0,0.0,456.9937456237124,368.0,0.0,189.8504047939789,50,2,1,2,2,1,2,2,2,0,,2,,2,106632,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1949.04102593658,268.0,15510.218600230677,0,5,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.02372629358006127,15510.218600230677,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6628,0,69.0,0.0,1,211,1000.0,0.0,0.0,77,74,1898.4291318658827,0.0,1705.2005433720612,2800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106633,2,2,2,0,1,,300.0,,41,0.0,0.0,4.0,3.0,2.0,3,3,1935.99915086593,1000.0,73218.10924749769,5,5,0,1,120.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03824190529880001,36609.054623748845,9,5,9,9_1,9_1,9_1_0 +6630,2,38.0,0.0,6,211,600.0,,,0,52,0.0,0.0,,660.0,83.13535352379125,,31,0,0,0,0,0,0,0,0,0,,1,,4,106635,2,1,0,0,2,,400.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,35.38671842737109,600.0,40336.24855928446,0,1,0,1,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016362453712817658,26890.83237285631,7,4,7,7_1,7_2,7_0_0 +6631,2,76.0,0.0,7,111,200.0,,,77,77,0.0,0.0,,332.0,182.89777775234077,,70,0,0,0,0,0,0,0,0,0,,2,,5,106636,2,1,0,0,2,,640.0,492.0,41,0.0,3.0,3.0,2.0,1.5,2,2,115.70875262408745,200.0,32826.87773649364,5,5,2,3,74.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010113663646753574,21884.585157662426,6,3,6,6_0,6_2,6_0_0 +6632,1,50.0,400.0,7,111,1019.0,,,22,81,0.0,0.0,,1163.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,5,106637,2,2,0,0,2,,700.0,550.0,43,2.0,4.0,5.0,4.0,2.3,3,2,71.27700981005358,1019.0,15575.619385396321,4,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07466797764013335,6772.008428433183,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6633,2,60.0,0.0,5,112,1900.0,0.0,0.0,52,78,0.0,39.72981831030672,3239.8810324069163,2050.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106638,2,1,2,0,1,,429.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2007.15078170091,1900.0,34280.36232959689,1,5,0,1,88.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05980100152646509,22853.574886397924,6,3,6,6_1,6_0,6_0_0 +6634,2,77.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,470.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,106639,2,3,0,0,2,,652.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,87.29388650547807,240.0,16428.976770509053,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028607989807598773,16428.976770509053,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +6635,2,53.0,0.0,6,111,720.0,,,33,31,0.0,0.0,,860.0,193.98249155551292,,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,106640,1,3,0,0,2,,360.0,900.0,43,2.0,0.0,4.0,5.0,2.4,2,2,86.82215852645525,720.0,248391.40933504837,1,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0034622775493816276,103496.42055627015,10,5,10,10_1,10_3,10_0_0 +6636,2,40.0,0.0,2,112,432.0,0.0,0.0,68,56,0.0,0.0,736.6466347367304,432.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,75.0,2,,2,106641,2,1,0,1,1,824.0,0.0,350.0,43,2.0,0.0,3.0,4.0,2.1,2,2,244.448034681546,432.0,32027.27424161568,1,1,2,3,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013488503478034567,15251.082972197943,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6637,2,44.0,0.0,8,300,630.0,0.0,0.0,46,47,1634.7584191067324,0.0,1074.2763423243985,2255.0,103.91919190473907,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,106642,2,2,1,0,1,,680.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1106.69006514922,630.0,53546.57057212458,1,1,1,2,107.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042112874380304643,23281.11764005417,6,3,6,6_1,6_0,6_0_0 +6638,2,34.0,0.0,1,222,1600.0,0.0,0.0,55,63,0.0,0.0,2728.320869395298,1749.0,206.45279458408163,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,106643,2,1,0,0,2,,250.0,430.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1917.89562163712,1600.0,24706.196009632797,1,1,2,3,77.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.07079195839448839,16470.797339755198,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +6639,2,75.0,0.0,2,211,0.0,0.0,1456.0,77,78,0.0,0.0,917.743430843867,1456.0,0.0,1742.4420068541754,50,1,2,2,1,2,2,2,2,0,,1,,2,106644,2,1,1,0,1,,72.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,1042.56466132655,0.0,23049.158315392076,5,5,0,1,73.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.0631693348658069,15366.105543594718,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +6640,2,58.0,0.0,7,111,1250.0,0.0,0.0,77,34,0.0,0.0,2131.5006792150766,1320.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,2,7.0,1,,5,106645,2,2,2,0,1,,250.0,,42,2.0,0.0,6.0,3.0,2.0,3,3,1643.41621137182,1250.0,57548.412864761514,5,1,0,1,132.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022937209460528362,28774.206432380757,8,4,8,8_1,8_3,8_0_0 +6642,2,33.0,0.0,2,111,0.0,0.0,750.0,0,64,759.3716527463531,0.0,472.7387178110578,1470.0,0.0,897.5491106735105,42,0,0,0,0,0,0,0,0,0,,2,,2,106647,2,1,0,1,1,,500.0,450.0,22,1.0,0.0,4.0,2.0,1.5,2,2,370.70839023164,0.0,46231.714131068715,0,1,2,3,70.0,9,7,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0317963551131263,30821.14275404581,8,4,8,8_0,8_3,8_0_1 +6643,2,56.0,0.0,2,111,350.0,,,0,85,0.0,0.0,,710.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,0,,1,,2,106648,2,1,0,0,2,,600.0,,21,1.0,0.0,5.0,6.0,3.5,6,6,110.21393622809765,350.0,43803.76846758498,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016208651100998395,12515.362419309995,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +6644,2,81.0,0.0,1,300,470.0,0.0,0.0,77,78,1265.6194212439218,0.0,801.4442553848687,2532.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106649,2,1,2,0,1,,260.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,1490.40127777633,470.0,24050.54383827723,5,5,0,1,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10527828464195636,16033.69589218482,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6645,1,31.0,261.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,1525.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,106650,1,1,0,0,1,,0.0,244.0,42,1.0,0.0,3.0,3.0,1.8,2,2,445.935044872026,0.0,9507.738142699794,6,1,2,3,47.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1603956668885461,5282.0767459443305,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6646,1,51.0,178.0,2,111,1068.0,216.0,0.0,0,52,0.0,0.0,1821.1541803213613,1284.0,0.0,410.0768743549944,71,2,1,2,2,1,2,2,2,2,20.0,2,,2,106651,1,3,0,1,1,945.0,588.0,385.0,32,2.0,0.0,5.0,4.0,2.5,4,3,283.703127054294,1068.0,34667.91004941346,0,1,2,3,96.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.037037133134644316,13867.164019765385,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +6647,2,57.0,0.0,2,111,0.0,0.0,1810.0,77,46,0.0,0.0,1140.8761056506864,1810.0,0.0,2166.0851870920724,50,0,0,0,0,0,0,0,0,3,25.0,1,,2,106652,1,2,5,0,1,,396.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,264.266770124886,0.0,40267.18851628909,5,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04494974858420546,26844.792344192727,7,4,7,7_1,7_3,7_0_1 +6648,2,57.0,0.0,6,111,0.0,,,0,33,0.0,0.0,,444.0,0.0,,70,0,0,0,0,0,0,0,0,2,10.0,8,,4,106653,2,1,0,0,2,,186.0,670.0,12,1.0,0.0,3.0,1.0,1.0,1,1,117.18517260285371,0.0,27401.50138654351,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016203491689621142,27401.50138654351,7,4,7,7_0,7_2,7_0_0 +6649,2,44.0,0.0,1,120,490.0,0.0,0.0,0,67,0.0,0.0,835.54826625231,2090.0,2216.9427606344334,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,106654,2,2,5,0,1,,232.0,411.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2289.25518582322,490.0,17451.651431560516,0,1,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11975943985566491,17451.651431560516,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6650,1,41.0,424.0,2,111,1080.0,0.0,0.0,78,56,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,71,2,2,2,1,1,2,2,2,3,50.0,2,,2,106655,1,2,0,1,2,950.0,0.0,392.0,42,1.0,0.0,3.0,4.0,2.1,2,2,784.562302956159,1080.0,23008.10750335669,7,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04693997539095456,10956.24166826509,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +6651,2,48.0,0.0,7,221,2413.0,0.0,0.0,62,21,0.0,158.91927324122688,4114.6489111567835,2603.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,106656,2,1,2,0,1,,304.0,,43,3.0,1.0,5.0,3.0,2.0,3,2,527.159723423158,2413.0,89965.66687916745,1,1,0,1,148.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028933259656665242,44982.83343958372,10,5,10,10_1,10_1,10_0_0 +6652,2,39.0,0.0,7,111,300.0,0.0,0.0,0,67,0.0,0.0,511.56016301161833,420.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,2,60.0,2,,5,106657,2,1,0,1,1,400.0,0.0,578.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1066.54574172515,300.0,54068.688730548,0,1,2,3,70.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007767896907821741,41591.29902349846,9,5,9,9_0,9_2,9_0_0 +6653,2,44.0,0.0,9,120,0.0,0.0,0.0,62,47,0.0,0.0,0.0,3047.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,106658,2,1,1,0,1,,146.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1181.54951418298,0.0,46133.27213767569,4,1,1,2,96.0,0,1,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06604777547334659,30755.51475845046,8,4,8,8_1,8_1,8_0_0 +6654,2,45.0,0.0,2,300,2500.0,0.0,0.0,65,64,0.0,0.0,4263.001358430153,2640.0,193.98249155551292,0.0,50,1,2,2,1,1,2,2,2,2,45.0,1,,2,106659,2,1,3,0,1,,410.0,,43,2.0,0.0,4.0,5.0,2.8,4,4,226.881684005162,2500.0,49398.258359062944,1,1,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.053443179733393326,17642.235128236767,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +6655,2,64.0,0.0,1,111,300.0,1800.0,0.0,75,72,0.0,0.0,511.56016301161833,2100.0,0.0,3417.30728629162,50,2,2,1,2,1,2,2,2,0,,1,,1,106660,2,2,1,0,1,,140.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1471.18439741778,300.0,30172.226872054238,7,5,1,2,78.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06960043118146633,20114.817914702824,5,3,5,5_1,5_2,5_1_0 +6656,2,82.0,0.0,7,111,600.0,0.0,0.0,0,72,0.0,0.0,1023.1203260232367,640.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,106661,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1670.4145219,600.0,31444.48405882059,0,5,0,1,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020353331248902193,31444.48405882059,8,4,8,8_0,8_3,8_0_0 +6657,2,73.0,0.0,6,112,1059.0,0.0,0.0,72,72,0.0,0.0,1805.8073754310128,1059.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106662,2,1,2,0,2,,457.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1614.9528001405,1059.0,33658.69424893032,5,5,0,1,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031462896099531706,22439.12949928688,6,3,6,6_1,6_0,6_0_0 +6658,2,45.0,0.0,8,112,600.0,1100.0,0.0,33,63,0.0,0.0,1023.1203260232367,1700.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,35.0,1,1999.0,6,106663,2,1,1,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,293.607370348931,600.0,63912.84837862017,1,1,1,2,120.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026598720650489367,27788.194947226162,7,4,7,7_1,7_0,7_0_0 +6659,2,63.0,0.0,5,111,570.0,0.0,0.0,72,78,0.0,860.8127300566456,971.9643097220749,1220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,106664,2,1,3,0,1,,140.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1504.24831742082,570.0,23946.222984597658,5,5,0,1,70.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050947491835547955,15964.148656398438,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6660,2,90.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,372.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,2,106665,2,2,0,0,2,,200.0,500.0,11,0.0,4.0,5.0,1.0,1.0,1,1,140.62535066564968,240.0,9135.558332619748,0,5,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04072000708174821,9135.558332619748,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +6661,2,87.0,0.0,9,111,540.0,,,0,72,0.0,0.0,,816.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,106666,2,2,0,0,2,,480.0,,11,0.0,9.0,3.0,1.0,1.0,1,1,118.73698828209724,540.0,10981.023487957675,0,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07431001316906984,10981.023487957675,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +6662,2,95.0,0.0,5,111,280.0,0.0,0.0,0,72,0.0,0.0,477.4561521441771,280.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,106667,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,383.494682061493,280.0,23120.829923845307,0,5,0,1,67.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012110291928198753,23120.829923845307,6,3,6,6_0,6_3,6_0_0 +6663,2,69.0,0.0,5,111,450.0,,,86,74,0.0,0.0,,625.0,242.47811444439117,,10,0,0,0,0,0,0,0,0,0,,1,,3,106668,1,1,0,0,1,,200.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,56.291579145260506,450.0,7383.843484271387,6,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08464426437685697,4922.5623228475915,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6664,2,34.0,0.0,9,112,1056.0,0.0,0.0,85,64,0.0,211.89236432163582,1800.6917738008965,1306.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,106669,2,1,1,0,1,,170.0,650.0,42,1.0,0.0,5.0,4.0,2.1,2,2,1777.85701394494,1056.0,31789.214860931585,6,1,2,3,120.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041083115947133764,15137.721362348373,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6665,1,63.0,253.0,6,111,372.0,,,0,86,0.0,0.0,,477.0,145.4868686666347,,71,0,0,0,0,0,0,0,0,0,,1,,4,106670,2,1,0,0,2,,480.0,313.0,21,1.0,0.0,4.0,2.0,1.5,2,2,147.56699563369708,372.0,13076.088759641116,0,6,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03647879796229615,8717.39250642741,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6666,2,54.0,0.0,5,111,1460.0,0.0,0.0,0,43,0.0,0.0,2489.592793323209,1520.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,3,106671,2,1,1,0,1,,260.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1128.9400828642,1460.0,43292.2741570685,0,1,0,1,100.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03511019066555143,43292.2741570685,9,5,9,9_1,9_2,9_0_0 +6667,2,61.0,0.0,5,111,2489.0,0.0,0.0,77,23,0.0,0.0,4244.24415245306,2489.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,,3,106672,2,1,1,0,1,,414.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1480.65911276077,2489.0,128652.72766437879,5,1,0,1,175.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019346655490221302,85768.48510958586,10,5,10,10_1,10_3,10_0_0 +6668,2,36.0,0.0,2,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,602.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,40.0,2,,2,106673,1,1,0,1,2,376.0,0.0,860.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1120.63628504131,0.0,57340.7377766768,1,1,2,3,46.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010498644128797066,38227.15851778453,9,5,9,9_0,9_4,9_0_1 +6669,2,32.0,0.0,2,111,330.0,0.0,0.0,0,47,0.0,0.0,562.7161793127802,330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,106674,1,1,0,1,1,72.0,0.0,372.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1432.45881376907,330.0,25513.11289807858,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012934525132950462,25513.11289807858,7,4,7,7_0,7_4,7_0_1 +6670,2,31.0,0.0,7,111,900.0,0.0,0.0,85,53,0.0,0.0,1534.680489034855,900.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,5,106675,2,1,0,0,1,,0.0,570.0,42,1.0,0.0,3.0,4.0,2.1,2,2,490.971276804892,900.0,35845.983986173465,7,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025107415110913082,17069.516183892127,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +6671,1,68.0,367.0,9,111,324.0,0.0,0.0,86,77,0.0,0.0,552.4849760525478,324.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,106676,2,1,0,1,1,506.0,0.0,377.0,41,0.0,4.0,3.0,2.0,1.5,2,2,289.715065782966,324.0,10123.2289924641,6,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032005598237597015,6748.819328309401,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6672,0,50.0,0.0,1,211,550.0,,,0,52,0.0,0.0,,748.0,274.3466666285112,,50,0,0,0,0,0,0,0,0,0,,1,,1,106677,2,1,0,0,1,,240.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,93.43579584664872,550.0,29775.908509734312,0,1,5,0,85.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02512097992763057,19850.60567315621,5,3,5,5_1,5_2,5_1_0 +6673,2,31.0,0.0,2,111,300.0,350.0,0.0,81,65,0.0,0.0,511.56016301161833,650.0,0.0,664.4764167789261,50,2,2,2,2,1,2,2,2,0,,2,,2,106678,2,3,0,1,1,876.0,0.0,650.0,43,2.0,0.0,4.0,4.0,2.3,3,3,780.869299970219,300.0,46990.40094407762,4,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01383261234083856,20430.609106120708,5,3,5,5_0,5_4,5_0_1 +6674,2,71.0,0.0,2,211,240.0,,,0,86,0.0,0.0,,372.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,106679,1,3,0,0,2,,240.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,102.81427528991169,240.0,11435.88694716802,0,5,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03252917781704042,11435.88694716802,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +6675,2,41.0,0.0,2,400,393.0,0.0,0.0,67,67,2414.169046022781,0.0,670.14381354522,2784.0,141.33010099044515,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106680,2,2,1,0,1,,114.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,728.100839067933,393.0,45360.63815413434,1,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06137479791488021,25200.354530074634,7,4,7,7_1,7_0,7_0_1 +6676,2,61.0,0.0,7,111,243.0,948.0,0.0,0,37,0.0,0.0,414.3637320394109,1191.0,0.0,1799.78183744692,60,0,0,0,0,0,0,0,0,0,,2,,5,106681,1,3,0,0,1,,110.0,503.0,12,1.0,0.0,3.0,1.0,1.0,1,1,360.632131102715,243.0,40623.05088204265,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029318329720195376,40623.05088204265,9,5,9,9_0,9_3,9_0_0 +6677,2,45.0,0.0,1,111,0.0,0.0,7500.0,21,21,0.0,0.0,4727.387178110579,7500.0,0.0,8975.491106735106,42,0,0,0,0,0,0,0,0,1,2.0,1,,1,106682,2,3,1,0,1,,700.0,,43,2.0,0.0,11.0,6.0,3.3,5,3,1335.13691891871,0.0,103476.83660174636,1,1,1,2,400.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07247998920633243,31356.617152044353,8,4,8,8_1,8_3,8_1_0 +6678,2,67.0,0.0,2,111,600.0,665.0,0.0,0,77,0.0,0.0,1023.1203260232367,1265.0,0.0,1262.5051918799597,60,0,0,0,0,0,0,0,0,0,,1,,2,106683,2,1,1,0,1,,170.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1180.16427933773,600.0,30893.063304921365,0,5,0,1,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04094770361599205,30893.063304921365,8,4,8,8_1,8_2,8_0_1 +6679,0,41.0,0.0,6,111,103.0,,,33,34,0.0,0.0,,123.0,27.711784507930417,,20,0,0,0,0,0,0,0,0,1,1.0,1,,4,106684,2,3,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,127.53394272621571,103.0,100588.4841897675,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001222803991836198,47899.27818560357,10,5,10,10_1,10_2,10_0_0 +6680,1,33.0,300.0,7,111,908.0,,,54,62,0.0,0.0,,1038.0,180.1265993015477,,43,0,0,0,0,0,0,0,0,0,,1,,5,106685,2,1,0,0,2,,650.0,800.0,43,2.0,0.0,4.0,3.0,1.8,2,2,53.13384324671726,908.0,36625.13462062899,4,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028341192756062932,20347.29701146055,5,3,5,5_1,5_2,5_0_0 +6681,2,58.0,0.0,5,211,0.0,0.0,0.0,0,56,0.0,0.0,0.0,117.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,3,,3,106686,1,2,0,1,2,,0.0,270.0,12,1.0,3.0,1.0,1.0,1.0,1,1,1856.91243027623,0.0,19486.730285163012,0,1,3,4,10.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.006004085769539416,19486.730285163012,5,3,5,5_0,5_2,5_0_0 +6683,2,65.0,0.0,2,111,936.0,120.0,0.0,77,77,0.0,0.0,1596.0677085962493,1056.0,0.0,227.8204857527747,71,2,2,2,2,1,2,2,2,0,,2,,2,106688,2,2,0,1,1,780.0,0.0,406.0,41,1.0,3.0,4.0,3.0,2.0,3,3,183.649724564201,936.0,47592.24250150469,5,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02218849006677114,23796.121250752345,6,3,6,6_0,6_4,6_0_1 +6684,2,53.0,0.0,9,111,942.0,,,0,43,0.0,0.0,,988.0,63.73710436823996,,33,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,106689,2,1,0,0,1,,200.0,1071.0,32,1.0,0.0,3.0,2.0,1.3,1,1,35.871988112843475,942.0,56190.54826050821,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017583028295425716,43223.498661929385,9,5,9,9_1,9_2,9_0_0 +6685,0,35.0,0.0,8,400,0.0,,,81,68,0.0,0.0,,715.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106690,2,3,0,0,2,,0.0,,43,2.0,0.0,2.0,7.0,2.9999999999999996,2,2,4.386640891614599,0.0,17280.502189083832,4,4,5,0,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04137611234768794,5760.167396361278,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +6686,2,60.0,0.0,1,111,0.0,0.0,2000.0,22,37,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,106691,2,1,2,0,1,,561.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,679.37712968588,0.0,273918.00325299933,1,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0073014550933066516,136959.00162649967,10,5,10,10_1,10_4,10_1_0 +6687,2,65.0,0.0,8,300,360.0,,,77,75,0.0,264.8654554020448,,648.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,106692,2,1,0,0,1,,140.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,104.012135754505,360.0,37298.85766793076,5,5,1,2,47.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017373186218438665,24865.905111953838,7,4,7,7_1,7_1,7_0_0 +6688,2,75.0,0.0,2,221,1200.0,0.0,0.0,78,72,843.7462808292812,0.0,2046.2406520464733,2030.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,106693,2,2,4,0,1,,244.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1336.52013928183,1200.0,60292.852643386825,5,5,0,1,150.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033668999077001854,40195.23509559122,9,5,9,9_1,9_1,9_0_1 +6689,2,34.0,0.0,2,111,1500.0,0.0,0.0,34,64,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,106694,2,1,2,0,1,,320.0,1062.0,43,2.0,0.0,4.0,3.0,1.8,2,2,966.825985148826,1500.0,55474.03939783924,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027039675067513223,30818.910776577355,8,4,8,8_1,8_4,8_0_1 +6690,2,51.0,0.0,7,111,654.0,,,22,42,0.0,0.0,,746.0,127.47420873647992,,30,0,0,0,0,0,0,0,0,2,5.0,1,,5,106695,2,1,0,0,2,,969.0,,43,2.0,0.0,8.0,5.0,2.8,4,4,98.63928969696023,654.0,49380.26185072865,1,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015107250792939893,17635.807803831663,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +6691,2,36.0,0.0,1,111,700.0,1200.0,0.0,33,53,0.0,0.0,1193.6403803604428,1900.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,3,40.0,1,,1,106696,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,699.365274606927,700.0,103890.55112794126,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018288477434874217,43287.729636642194,9,5,9,9_1,9_4,9_1_0 +6692,2,88.0,0.0,8,111,204.0,312.0,0.0,77,75,0.0,0.0,347.86091084790047,516.0,0.0,592.3332629572142,70,0,0,0,0,0,0,0,0,0,,2,2001.0,6,106697,2,1,0,0,1,,103.0,,41,0.0,7.0,3.0,2.0,1.5,2,2,1984.91105196683,204.0,35626.07753900633,5,5,0,1,74.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014483772439866309,23750.718359337552,6,3,6,6_0,6_3,6_0_0 +6693,2,78.0,0.0,2,111,300.0,1000.0,0.0,72,75,0.0,132.4327277010224,511.56016301161833,1400.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,2,106698,2,2,2,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,265.815776135012,300.0,34342.832486858286,5,5,0,1,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04076542028196793,22895.221657905524,6,3,6,6_1,6_3,6_0_1 +6694,2,23.0,0.0,1,112,769.0,0.0,0.0,52,62,0.0,198.6490915515336,1311.2992178531151,964.0,62.351515142843446,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,106699,2,1,1,0,1,,385.0,250.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1114.60431319747,769.0,23577.550999675153,1,1,2,3,100.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.040886349901789285,15718.367333116768,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6695,0,34.0,0.0,1,111,1152.0,0.0,0.0,0,85,0.0,0.0,1964.3910259646145,1152.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106700,2,2,1,0,1,,144.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,672.028204081292,1152.0,10297.722550398594,0,7,5,0,56.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1118693958165934,10297.722550398594,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +6696,1,56.0,392.0,7,211,250.0,,,0,85,0.0,0.0,,502.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,2,,5,106701,2,1,0,0,1,,450.0,384.0,31,0.0,2.0,4.0,3.0,2.0,3,1,117.13323511063386,250.0,19025.31186763066,0,6,2,3,82.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026385901240026148,9512.65593381533,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6698,2,62.0,0.0,2,111,300.0,300.0,0.0,0,54,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,60,2,1,2,2,1,2,2,2,0,,2,,2,106703,1,2,0,1,1,670.0,0.0,338.0,22,1.0,1.0,3.0,2.0,1.5,2,2,770.663389341848,300.0,42921.20439134936,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01397910446615818,28614.136260899573,8,4,8,8_0,8_4,8_0_1 +6699,2,49.0,0.0,8,400,0.0,,,81,81,0.0,0.0,,699.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106704,2,3,0,0,2,,0.0,,43,3.0,0.0,3.0,7.0,3.1999999999999993,3,3,73.41059475153847,0.0,21499.18435586136,4,4,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03251286134533892,6718.495111206676,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +6700,2,60.0,0.0,1,120,300.0,1400.0,0.0,74,34,0.0,0.0,511.56016301161833,1700.0,0.0,2657.9056671157045,10,0,0,0,0,0,0,0,0,0,,1,,1,106705,2,1,1,0,1,,230.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1015.1541210096,300.0,122402.47454224018,5,1,0,1,120.0,0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013888608105004795,81601.64969482679,10,5,10,10_1,10_1,10_1_0 +6701,2,47.0,0.0,9,120,373.0,0.0,0.0,0,63,818.4338924044027,0.0,636.0398026777788,1149.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,12.0,1,2004.0,6,106706,2,1,1,0,1,,261.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,544.822389851797,373.0,24585.43558326791,0,1,1,2,67.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04673498649671979,24585.43558326791,7,4,7,7_1,7_0,7_0_0 +6702,2,24.0,0.0,9,112,1000.0,0.0,0.0,63,65,0.0,0.0,1705.2005433720612,1070.0,96.99124577775646,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,106707,2,1,0,0,1,,200.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,2090.57079987657,1000.0,37823.0,1,1,1,2,80.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028289665018639453,21012.777777777777,5,3,5,5_0,5_0,5_0_0 +6703,2,34.0,0.0,9,120,816.0,0.0,0.0,56,63,0.0,463.51454695357836,1391.4436433916019,1286.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,106708,2,1,1,0,1,,193.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1989.20106768259,816.0,31359.428713591347,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041008400112934475,17421.904840884083,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6704,1,40.0,190.0,5,111,250.0,0.0,0.0,0,46,0.0,79.45963662061344,426.3001358430153,370.0,83.13535352379125,0.0,71,2,2,2,1,2,2,2,2,2,30.0,2,,3,106709,1,1,0,1,1,,180.0,396.0,32,1.0,0.0,3.0,2.0,1.5,2,1,256.527036626846,250.0,16845.990689473445,0,1,2,3,60.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.02196368304009582,11230.660459648963,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6705,2,72.0,0.0,8,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,740.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106710,2,2,2,0,1,,2106.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,816.360153515142,0.0,49041.23199555486,5,5,0,1,90.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015089343596977218,32694.15466370324,8,4,8,8_1,8_2,8_0_0 +6706,2,77.0,0.0,2,111,150.0,120.0,0.0,0,75,0.0,0.0,255.78008150580916,270.0,0.0,227.8204857527747,50,2,1,2,2,1,2,2,2,0,,2,,2,106711,2,1,0,1,1,316.0,0.0,252.0,11,0.0,0.0,2.0,1.0,1.0,1,1,355.970299407887,150.0,14183.05614932383,0,5,2,3,44.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019036799767084906,14183.05614932383,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +6707,2,58.0,0.0,5,112,326.0,0.0,0.0,77,37,1033.5891940158695,529.7309108040896,555.8953771392919,1766.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,4,120.0,1,,3,106712,2,1,2,0,1,,297.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1505.81442397371,326.0,65756.16147503625,7,1,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026856798821361348,43837.4409833575,10,5,10,10_1,10_0,10_0_0 +6708,2,49.0,0.0,5,111,250.0,0.0,0.0,0,47,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,17.0,2,,3,106713,1,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1329.8437685704,250.0,15902.629347032798,0,1,0,1,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015720670748491438,15902.629347032798,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +6709,2,63.0,0.0,9,221,700.0,0.0,0.0,77,78,0.0,662.163638505112,1193.6403803604428,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,106714,2,1,1,0,1,,150.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1927.87251121426,700.0,25102.355143331042,5,5,0,1,99.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0478042794450227,16734.903428887363,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6710,1,65.0,145.0,2,111,540.0,0.0,0.0,0,77,0.0,0.0,920.8082934209131,540.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,2,106715,1,3,0,1,1,564.0,0.0,313.0,11,0.0,4.0,3.0,1.0,1.0,1,1,296.567554934968,540.0,10671.72783562055,0,5,2,3,92.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05060099060974596,10671.72783562055,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +6711,2,45.0,0.0,2,111,270.0,90.0,0.0,0,54,0.0,0.0,460.40414671045653,360.0,0.0,170.865364314581,31,0,0,0,0,0,0,0,0,2,50.0,2,,2,106716,2,1,0,1,1,192.0,0.0,281.0,12,1.0,3.0,2.0,1.0,1.0,1,1,282.996200683116,270.0,22701.19651980712,0,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01585819494958756,22701.19651980712,6,3,6,6_0,6_4,6_0_1 +6712,2,37.0,0.0,9,111,2000.0,0.0,0.0,55,37,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,106717,2,1,1,0,1,,550.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1591.59709551254,2000.0,41572.565058184075,1,1,1,2,72.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04810865043330482,19796.459551516225,5,3,5,5_1,5_3,5_0_0 +6713,2,52.0,0.0,1,112,1000.0,0.0,0.0,56,47,0.0,1456.7600047112462,1705.2005433720612,2100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,106718,1,1,1,0,2,,700.0,,43,3.0,1.0,5.0,4.0,2.5,4,3,396.954437033281,1000.0,47904.18353189611,1,1,1,2,109.0,7,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04383750739852928,19161.673412758442,5,3,5,5_1,5_1,5_1_0 +6714,2,82.0,0.0,2,111,180.0,,,0,77,0.0,0.0,,272.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,2,106719,2,2,0,0,2,,230.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,93.20712841238112,180.0,12382.51193003715,0,5,0,1,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021966463794812912,12382.51193003715,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +6716,1,28.0,357.0,8,111,285.0,,,0,56,0.0,0.0,,325.0,55.423569015860835,,43,0,0,0,0,0,0,0,0,1,30.0,2,2001.0,6,106721,2,2,0,0,2,,120.0,481.0,32,1.0,0.0,2.0,2.0,1.3,1,1,176.02549272331777,285.0,13110.691860566578,0,1,2,3,48.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024788928262246195,10085.147585051214,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6717,2,65.0,0.0,2,120,268.0,0.0,0.0,0,78,1054.6828510366015,0.0,456.9937456237124,1348.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106722,1,1,2,0,2,,147.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,385.494803262566,268.0,17065.34152835702,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07899050820401482,17065.34152835702,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +6718,1,33.0,321.0,2,111,190.0,90.0,0.0,0,43,0.0,0.0,323.9881032406916,280.0,0.0,170.865364314581,50,2,2,2,2,2,2,2,1,0,,2,,2,106723,1,2,0,1,1,744.0,0.0,384.0,32,1.0,0.0,3.0,2.0,1.3,1,1,311.816192104489,190.0,9259.469918205963,0,4,2,3,60.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03023931202038512,7122.66916785074,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +6719,2,72.0,0.0,2,111,685.0,2260.0,0.0,75,74,0.0,211.89236432163582,1168.062372209862,3105.0,0.0,4290.619148343923,12,0,0,0,0,0,0,0,0,0,,1,,2,106724,2,1,1,0,1,,490.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1226.22294940863,685.0,217297.89813143213,5,5,0,1,235.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014289139594539235,144865.26542095476,10,5,10,10_1,10_3,10_0_1 +6720,2,54.0,0.0,1,111,900.0,0.0,0.0,0,54,0.0,0.0,1534.680489034855,930.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,106725,2,2,0,0,1,,62.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1244.82753009464,900.0,19252.23398642871,0,1,0,1,50.0,8,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.048306082330786954,19252.23398642871,5,3,5,5_0,5_3,5_1_0 +6721,0,62.0,0.0,8,112,768.0,1185.0,0.0,75,77,0.0,0.0,1309.5940173097429,1953.0,0.0,2249.72729680865,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106726,2,1,1,0,1,,389.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1642.16023657091,768.0,51756.32159774706,5,5,0,1,150.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037734520918600474,34504.21439849804,9,5,9,9_1,9_2,9_0_0 +6722,0,65.0,0.0,8,111,600.0,0.0,0.0,0,71,3374.985123317125,0.0,1023.1203260232367,3900.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106727,2,1,2,0,1,,280.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1516.81910272246,600.0,34981.99758788739,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11148591472518955,34981.99758788739,9,5,9,9_1,9_3,9_0_0 +6723,2,89.0,0.0,1,111,350.0,0.0,0.0,0,78,0.0,0.0,596.8201901802214,1154.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,106728,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,751.8592154888,350.0,19050.92389584425,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06057449005146319,19050.92389584425,5,3,5,5_0,5_4,5_1_0 +6724,2,55.0,0.0,2,112,300.0,400.0,0.0,54,47,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,4,60.0,1,,2,106729,2,1,3,0,1,,700.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,2959.13482703091,300.0,50503.33101642283,1,1,0,1,100.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013860471891891088,25251.665508211416,7,4,7,7_1,7_1,7_0_1 +6725,2,64.0,0.0,2,111,330.0,,,0,78,0.0,0.0,,410.0,110.84713803172167,,70,0,0,0,0,0,0,0,0,0,,1,,2,106730,1,2,0,0,2,,180.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,127.01410466327413,330.0,28381.02118034759,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014446273705045684,28381.02118034759,8,4,8,8_1,8_2,8_0_1 +6726,2,48.0,0.0,1,212,450.0,0.0,0.0,11,11,1582.0242765549024,66.2163638505112,767.3402445174275,2120.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,106731,1,3,2,0,2,,170.0,,43,2.0,3.0,4.0,3.0,2.0,3,2,844.433261297831,450.0,46092.88520837465,1,1,0,1,80.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04599408326070279,23046.442604187327,6,3,6,6_1,6_0,6_1_0 +6727,2,80.0,0.0,8,211,0.0,0.0,0.0,0,78,0.0,602.5689110396519,0.0,1168.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,106732,1,1,1,0,1,,90.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1573.9921509941,0.0,13843.980404667569,0,5,0,1,90.0,3,3,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08436879899123541,13843.980404667569,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6728,2,70.0,0.0,1,120,823.0,0.0,0.0,77,78,0.0,264.8654554020448,1403.3800471952063,1023.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,106733,2,2,3,0,1,,267.0,,41,1.0,3.0,6.0,3.0,2.0,3,3,1316.40663632699,823.0,48606.79623259838,5,5,0,1,140.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021046439578215198,24303.39811629919,7,4,7,7_1,7_0,7_1_0 +6729,2,57.0,0.0,9,112,1850.0,0.0,0.0,55,33,0.0,72.83800023556232,3154.621005238313,1905.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,106734,2,1,1,0,1,,681.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,912.103966940709,1850.0,124060.38662435654,1,1,1,2,153.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015355425304034921,62030.19331217827,10,5,10,10_1,10_0,10_0_0 +6730,2,75.0,0.0,2,111,300.0,500.0,0.0,0,77,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,106735,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,411.731838241927,300.0,13047.614563645233,0,5,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06131388968440654,13047.614563645233,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +6731,2,34.0,0.0,2,111,854.0,0.0,0.0,54,46,0.0,182.7571642274109,1456.2412640397401,992.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,106736,2,3,3,0,1,,394.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1778.19010347864,854.0,50226.474847712765,1,1,1,2,85.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019750539989273688,27903.597137618202,7,4,7,7_1,7_2,7_0_1 +6732,2,36.0,0.0,7,111,800.0,800.0,0.0,85,38,0.0,0.0,1364.160434697649,1600.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,3,45.0,2,,5,106737,2,1,0,0,1,,0.0,600.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,777.551868705443,800.0,39692.645017677736,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04030973494679972,14700.97963617694,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +6733,2,56.0,0.0,6,112,902.0,1150.0,0.0,0,52,0.0,0.0,1538.0908901215992,2052.0,0.0,2183.2796551307574,60,1,2,2,1,1,1,1,2,3,60.0,2,,4,106738,1,2,0,1,1,809.0,0.0,682.0,12,1.0,4.0,3.0,1.0,1.0,1,1,808.906885580311,902.0,21867.094072537624,0,1,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.0938396292252229,21867.094072537624,6,3,6,6_0,6_2,6_0_0 +6734,0,45.0,0.0,6,111,150.0,1400.0,0.0,35,38,0.0,52.973091080408956,255.78008150580916,1590.0,0.0,2657.9056671157045,12,0,0,0,0,0,0,0,0,2,2.0,1,,4,106739,2,3,3,0,1,,524.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,213.011247140765,150.0,84318.61044819337,1,1,5,0,135.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01885704699767224,35132.754353413904,9,5,9,9_1,9_2,9_0_0 +6735,0,75.0,0.0,1,111,360.0,1200.0,0.0,85,78,0.0,0.0,613.872195613942,1560.0,0.0,2278.2048575277468,71,2,2,2,2,1,2,2,2,0,,1,,1,106740,2,2,4,0,2,,450.0,,41,0.0,2.0,4.0,4.0,2.1,2,2,219.014940634465,360.0,15444.779964390218,6,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.10100499998036658,7354.657125900104,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +6736,2,74.0,0.0,2,300,306.0,,,78,78,0.0,0.0,,438.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,106741,1,1,0,0,1,,726.0,,41,0.0,7.0,4.0,2.0,1.5,2,2,71.51826536523362,306.0,15469.365182788766,5,5,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028314025483561493,10312.910121859177,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +6737,2,71.0,0.0,8,112,1100.0,0.0,0.0,0,77,0.0,0.0,1875.7205977092674,1152.0,72.05063972061909,0.0,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,106742,2,2,1,0,1,,190.0,428.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1456.95732933433,1100.0,19778.50284425308,0,5,2,3,70.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05824505570879091,19778.50284425308,5,3,5,5_1,5_0,5_0_0 +6738,2,76.0,0.0,5,221,1216.0,0.0,0.0,0,77,0.0,0.0,2073.5238607404262,1376.0,221.69427606344334,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,106743,2,1,2,0,1,,261.0,308.0,21,1.0,5.0,5.0,2.0,1.5,2,2,2595.76804012689,1216.0,30884.004519944163,0,5,2,3,137.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044553807752210746,20589.336346629443,5,3,5,5_1,5_1,5_0_0 +6739,1,45.0,330.0,5,111,540.0,,,0,56,0.0,0.0,,672.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,3,106744,2,1,0,0,2,,280.0,575.0,32,1.0,1.0,4.0,2.0,1.5,2,1,135.2852747323889,540.0,9468.968807325455,0,4,2,3,79.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07096865706011433,6312.645871550303,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6740,2,23.0,0.0,1,111,360.0,1100.0,0.0,53,55,0.0,0.0,613.872195613942,1460.0,0.0,2088.354452733768,20,2,2,1,2,1,2,2,2,2,30.0,1,,1,106745,2,3,1,0,1,,0.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,307.488007392846,360.0,18950.404401220894,4,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.07704321074572627,10528.002445122718,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +6741,2,42.0,0.0,9,111,0.0,0.0,0.0,47,38,0.0,0.0,0.0,1983.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2009.0,6,106746,2,1,0,0,1,,0.0,1220.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1659.30392904802,0.0,72653.56910071315,1,1,2,3,61.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02729391032739416,40363.09394484064,9,5,9,9_0,9_4,9_0_0 +6742,2,50.0,0.0,1,212,1000.0,0.0,0.0,46,52,0.0,741.6232751257254,1705.2005433720612,1642.0,113.61831648251471,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106747,2,2,3,0,1,,300.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,1008.17318687717,1000.0,40421.855469572736,1,1,1,2,100.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04062158901231053,22456.586371984853,6,3,6,6_1,6_0,6_1_0 +6743,2,83.0,0.0,2,111,279.0,189.0,0.0,0,78,0.0,0.0,475.7509516008051,468.0,0.0,358.8172650606201,71,2,1,2,1,2,2,2,2,0,,2,,2,106748,2,2,0,1,1,,160.0,394.0,11,0.0,2.0,3.0,1.0,1.0,1,1,415.871427000257,279.0,28094.414330339197,0,5,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.016658115542013848,28094.414330339197,8,4,8,8_0,8_3,8_0_1 +6744,2,54.0,0.0,8,111,786.0,,,0,52,0.0,0.0,,834.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,106749,1,2,0,0,2,,300.0,,32,2.0,0.0,4.0,3.0,2.0,3,2,34.72193268363897,786.0,27148.0,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03072049506409312,13574.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6745,2,81.0,0.0,1,111,800.0,3000.0,0.0,0,75,0.0,0.0,1364.160434697649,4163.0,0.0,5695.512143819367,20,0,0,0,0,0,0,0,0,0,,1,,1,106750,2,2,2,0,1,,2000.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,1238.82928489779,800.0,49433.18451499225,0,5,0,1,150.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08421468373613342,32955.456343328166,8,4,8,8_1,8_3,8_1_0 +6746,1,41.0,252.0,2,111,215.0,273.0,0.0,0,85,0.0,0.0,366.61811682499314,488.0,0.0,518.2916050875624,50,2,2,2,2,1,2,2,2,0,,2,,2,106751,1,1,0,0,1,,0.0,228.0,31,0.0,0.0,3.0,2.0,1.3,1,1,355.201093560213,215.0,9864.079380385898,0,7,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.04947243236610173,7587.753369527613,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6747,2,67.0,0.0,9,221,576.0,,,77,78,0.0,0.0,,834.0,357.4820201523024,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,106752,2,2,0,0,2,,570.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,92.4344950097329,576.0,45720.0,5,5,0,1,100.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018241469816272966,30480.0,8,4,8,8_1,8_1,8_0_0 +6748,2,51.0,0.0,7,221,660.0,1000.0,0.0,63,53,0.0,0.0,1125.4323586255605,1722.0,85.9065319745843,1898.504047939789,44,1,2,2,1,2,2,2,2,2,30.0,2,,5,106753,2,1,0,0,1,601.0,600.0,463.0,43,4.0,1.0,5.0,4.0,2.5,4,3,2263.04630106443,660.0,65314.75045537614,1,1,2,3,90.0,1,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.026364641799810476,26125.900182150457,7,4,7,7_0,7_1,7_0_0 +6749,2,56.0,0.0,1,111,550.0,0.0,0.0,0,52,0.0,1059.4618216081792,937.8602988546337,1500.0,207.83838380947813,0.0,70,2,2,2,2,1,2,2,2,1,10.0,1,,1,106754,1,2,3,0,2,,500.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,370.787117187628,550.0,13155.02596088227,0,1,0,1,90.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.11402486049517452,13155.02596088227,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +6750,2,39.0,0.0,8,111,700.0,1000.0,0.0,0,45,0.0,0.0,1193.6403803604428,1700.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,2,10.0,2,2002.0,6,106755,2,1,0,0,1,850.0,0.0,387.0,32,1.0,0.0,3.0,2.0,1.3,1,1,523.184896883855,700.0,36626.76968632096,0,1,2,3,58.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04641413956401678,28174.438220246888,8,4,8,8_0,8_3,8_0_0 +6751,1,46.0,219.0,2,111,260.0,1040.0,0.0,0,35,0.0,0.0,443.3521412767359,1300.0,0.0,1974.4442098573807,71,0,0,0,0,0,0,0,0,0,,1,,2,106756,1,1,3,0,2,,186.0,472.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1607.0889825665,260.0,12428.64679279847,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.10459706689494619,12428.64679279847,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +6752,2,49.0,0.0,9,400,260.0,,,85,64,0.0,39.72981831030672,,590.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,2,150.0,1,2011.0,6,106757,2,2,0,0,2,,400.0,,42,1.0,2.0,3.0,7.0,2.9999999999999996,2,2,6.1918988573027525,260.0,47392.94520936368,6,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012449110250346512,15797.64840312123,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +6753,2,24.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,616.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,106758,2,2,0,1,1,1092.0,0.0,304.0,42,1.0,0.0,3.0,2.0,1.5,2,2,231.951109875939,0.0,20954.428893567016,3,1,2,3,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029397126647012137,13969.61926237801,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +6754,2,57.0,0.0,8,111,1080.0,,,46,21,0.0,0.0,,1128.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,106759,2,1,0,0,2,,320.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,131.26185770092502,1080.0,48532.0,4,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02324239676914201,24266.0,7,4,7,7_1,7_3,7_0_0 +6755,2,30.0,0.0,1,111,240.0,655.0,0.0,0,37,0.0,0.0,409.2481304092947,895.0,0.0,1243.5201514005619,12,0,0,0,0,0,0,0,0,3,40.0,2,,1,106760,2,3,0,0,1,,0.0,1036.0,22,2.0,0.0,4.0,2.0,1.5,2,2,1425.86258072475,240.0,59063.15053000845,0,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01515327225128761,39375.433686672295,9,5,9,9_0,9_4,9_1_0 +6756,2,39.0,0.0,9,211,400.0,,,85,22,0.0,0.0,,796.0,548.6933332570223,,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,106761,2,2,0,0,2,,224.0,,42,1.0,0.0,3.0,3.0,2.0,3,2,98.4426056056904,400.0,12433.632911392406,6,1,0,1,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06401990517756555,6216.816455696203,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6757,1,67.0,160.0,2,111,344.0,0.0,0.0,0,78,0.0,0.0,586.588986919989,414.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,106762,2,2,0,1,1,,396.0,260.0,11,0.0,4.0,3.0,1.0,1.0,1,1,301.288699811542,344.0,10081.332186535705,0,5,2,3,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04106600123274628,10081.332186535705,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +6758,2,69.0,0.0,5,111,600.0,,,85,71,0.0,0.0,,720.0,166.2707070475825,,71,2,2,1,2,1,2,2,1,0,,1,,3,106763,2,3,0,0,2,,120.0,,41,1.0,5.0,4.0,3.0,2.0,3,3,122.56927376496536,600.0,16299.88184817213,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04417209932602922,8149.940924086065,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6759,2,34.0,0.0,9,400,0.0,0.0,0.0,54,47,0.0,0.0,0.0,1192.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,8,2010.0,6,106764,2,1,0,0,1,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1288.77817240352,0.0,44191.84604942693,1,1,2,3,64.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026973301786641646,29461.230699617954,8,4,8,8_0,8_0,8_0_0 +6760,0,76.0,0.0,1,111,500.0,0.0,0.0,0,86,0.0,0.0,852.6002716860306,500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,106765,2,1,0,1,1,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,711.275147886608,500.0,71892.81924273263,0,6,0,1,122.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006954797506435848,71892.81924273263,10,5,10,10_0,10_4,10_1_0 +6761,1,63.0,255.0,1,400,0.0,0.0,0.0,0,86,0.0,0.0,0.0,420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,106766,2,2,0,0,1,,236.0,248.0,11,0.0,3.0,1.0,1.0,1.0,1,1,1967.0475841803,0.0,6046.957107914801,0,7,2,3,30.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06945642122221543,6046.957107914801,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +6762,2,73.0,0.0,2,111,510.0,113.0,0.0,86,75,0.0,0.0,869.6522771197511,623.0,0.0,214.53095741719616,50,0,0,0,0,0,0,0,0,0,,2,,2,106767,2,1,0,1,1,953.0,0.0,371.0,41,0.0,2.0,3.0,2.0,1.5,2,2,331.626504417845,510.0,30653.925535262715,7,5,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020323661296930227,20435.95035684181,5,3,5,5_0,5_2,5_0_1 +6763,1,48.0,280.0,2,221,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1589.0,66.50828281903301,0.0,71,2,2,1,2,1,2,2,2,0,,1,,2,106768,1,3,3,0,1,,288.0,360.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2048.32591617684,0.0,10290.0,0,1,2,3,40.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.154421768707483,10290.0,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +6764,2,39.0,0.0,9,112,1420.0,0.0,0.0,42,45,0.0,105.94618216081791,2421.3847715883267,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,106769,2,1,1,0,1,,740.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,912.054085372477,1420.0,51983.290417994125,1,1,1,2,120.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028855426194429042,28879.60578777451,8,4,8,8_1,8_0,8_0_0 +6765,0,66.0,0.0,5,111,0.0,0.0,0.0,74,77,0.0,0.0,0.0,1500.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,106770,2,1,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1154.24891731892,0.0,32025.260746329383,5,5,5,0,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04683802614072157,21350.173830886255,6,3,6,6_1,6_3,6_0_0 +6766,2,77.0,0.0,7,111,300.0,3800.0,0.0,74,75,0.0,0.0,511.56016301161833,4100.0,0.0,7214.3153821711985,50,0,0,0,0,0,0,0,0,0,,1,,5,106771,2,1,2,0,2,,50.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,441.229206122537,300.0,60115.18597984598,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06820240066086716,30057.59298992299,8,4,8,8_1,8_4,8_0_0 +6767,2,60.0,0.0,2,112,740.0,0.0,0.0,37,46,1476.555991451242,662.163638505112,1261.8484020953254,2640.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,35.0,1,,2,106772,2,1,4,0,1,,260.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1107.34554169508,740.0,39969.426986793034,4,1,0,1,160.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06605048405803582,26646.284657862023,7,4,7,7_1,7_0,7_0_1 +6768,2,51.0,0.0,1,211,960.0,1200.0,0.0,0,43,0.0,0.0,1636.9925216371787,2160.0,0.0,2278.2048575277468,33,0,0,0,0,0,0,0,0,0,,1,,1,106773,2,2,5,0,1,,820.0,708.0,22,2.0,1.0,8.0,2.0,1.5,2,2,1889.56575717127,960.0,86442.39574600988,0,1,2,3,240.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024987738728882977,57628.26383067325,10,5,10,10_1,10_1,10_1_0 +6769,2,42.0,0.0,7,120,1200.0,0.0,0.0,55,46,0.0,662.163638505112,2046.2406520464733,1830.0,180.1265993015477,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,5,106774,2,1,2,0,1,,300.0,,43,2.0,1.0,5.0,4.0,2.5,4,3,237.920656995479,1200.0,45945.866998274156,1,1,1,2,113.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03982948020262061,18378.346799309664,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6770,2,84.0,0.0,2,111,54.0,64.0,0.0,75,75,0.0,0.0,92.0808293420913,118.0,0.0,121.5042590681465,71,0,0,0,0,0,0,0,0,0,,1,,2,106775,2,1,2,0,1,,280.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,2218.9582921735,54.0,44565.41695549623,5,5,0,1,102.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0026477930211634007,29710.27797033082,8,4,8,8_1,8_3,8_0_1 +6771,2,88.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,535.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,106776,2,1,1,0,1,,380.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1561.52262975948,0.0,21424.603555476726,0,5,0,1,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.024971290535886675,21424.603555476726,6,3,6,6_1,6_3,6_0_1 +6772,2,41.0,0.0,9,111,560.0,,,52,52,0.0,0.0,,612.0,72.05063972061909,,44,0,0,0,0,0,0,0,0,2,1.0,1,2008.0,6,106777,2,1,0,0,2,,320.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,96.36120637587157,560.0,87330.33930732301,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007007873836907001,30113.910105973457,8,4,8,8_1,8_2,8_0_0 +6773,2,73.0,0.0,1,112,498.0,0.0,0.0,77,75,0.0,92.70290939071567,849.1898705992865,696.0,177.35542085075468,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106778,2,1,2,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,859.474136731421,498.0,22267.785801823145,5,5,0,1,150.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03125591409016589,14845.190534548763,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +6774,2,60.0,0.0,5,111,1320.0,,,78,11,0.0,0.0,,1467.0,203.68161613328857,,71,0,0,0,0,0,0,0,0,0,,1,,3,106779,2,2,0,0,2,,780.0,,42,2.0,0.0,3.0,3.0,2.0,3,3,115.4993686369066,1320.0,35403.825446452574,6,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0414362002269727,17701.912723226287,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +6775,2,49.0,0.0,7,111,430.0,0.0,0.0,0,90,0.0,0.0,733.2362336499863,430.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,106780,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1003.43567703214,430.0,49382.912439695705,0,1,0,1,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008707465371247546,49382.912439695705,10,5,10,10_0,10_4,10_0_0 +6776,2,59.0,0.0,7,111,1000.0,,,71,56,0.0,132.4327277010224,,1310.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,5,106781,2,2,0,0,1,,492.0,,42,3.0,4.0,5.0,5.0,2.8,4,4,89.7634036999083,1000.0,49429.35544139152,5,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026502469803662915,17653.3412290684,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +6777,1,58.0,104.0,2,111,625.0,920.0,0.0,0,56,0.0,0.0,1065.7503396075383,1545.0,0.0,1746.6237241046058,70,2,2,1,2,1,2,2,2,2,10.0,1,,2,106782,1,2,5,0,1,,607.0,317.0,32,4.0,1.0,3.0,4.0,2.5,4,4,313.580279752691,625.0,30529.263632668477,0,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.05060718196775439,12211.70545306739,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +6779,2,55.0,0.0,1,112,900.0,0.0,0.0,0,46,0.0,0.0,1534.680489034855,2242.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,1,,1,106784,2,1,2,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,626.003347537518,900.0,58875.21913992564,0,1,0,1,80.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03808053766511775,58875.21913992564,10,5,10,10_1,10_0,10_1_0 +6780,2,40.0,0.0,1,112,1200.0,0.0,0.0,54,63,0.0,0.0,2046.2406520464733,2100.0,1247.030302856869,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,106785,2,2,1,0,1,,296.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,311.420306350122,1200.0,40296.43548425283,1,1,0,1,180.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0521137905813194,19188.778802025154,5,3,5,5_1,5_0,5_1_0 +6781,2,60.0,0.0,7,111,840.0,0.0,0.0,0,34,0.0,0.0,1432.3684564325313,870.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,106786,2,1,0,0,1,,154.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1735.59574436165,840.0,33581.96910618968,0,1,1,2,96.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02590675958425694,33581.96910618968,9,5,9,9_0,9_2,9_0_0 +6782,1,52.0,295.0,2,111,350.0,,,0,68,0.0,0.0,,350.0,0.0,,71,0,0,0,0,0,0,0,0,3,45.0,8,,2,106787,2,2,0,0,1,,250.0,484.0,12,1.0,0.0,2.0,1.0,1.0,1,1,57.863151453019796,350.0,14376.352400887476,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02434553565745884,14376.352400887476,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +6783,2,51.0,0.0,8,112,1350.0,0.0,0.0,75,54,0.0,278.10872817214704,2302.0207335522828,1660.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,106788,2,1,1,0,1,,170.0,,42,1.0,2.0,5.0,3.0,1.8,2,2,612.634775813094,1350.0,63634.453865740856,5,1,1,2,150.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026086497159264553,35352.47436985603,9,5,9,9_1,9_0,9_0_0 +6784,1,40.0,175.0,2,111,0.0,0.0,912.0,0,52,0.0,0.0,574.8502808582463,912.0,0.0,1091.419718578989,20,2,1,2,2,1,2,2,2,3,20.0,2,,2,106789,2,2,0,0,1,614.0,0.0,343.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1554.4567389583,0.0,25834.724999624057,0,1,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03530132409047401,16146.703124765036,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +6785,2,53.0,0.0,6,112,943.0,0.0,0.0,45,63,0.0,0.0,1608.0041123998537,972.0,40.18208753649911,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,106790,2,1,2,0,1,,157.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,665.96237278597,943.0,62593.82734141647,1,1,0,1,98.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015528687752200392,41729.21822761098,9,5,9,9_1,9_0,9_0_0 +6786,2,29.0,0.0,5,111,303.0,999.0,0.0,43,47,0.0,0.0,516.6757646417345,1302.0,0.0,1896.6055438918493,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,106791,2,1,0,0,1,,773.0,233.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1310.64061861786,303.0,32995.940548480554,1,1,2,3,33.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03945939950058361,21997.293698987036,6,3,6,6_0,6_2,6_0_0 +6787,2,56.0,0.0,7,111,210.0,0.0,0.0,0,54,0.0,0.0,358.0921141081328,210.0,0.0,0.0,30,0,0,0,0,0,0,0,0,1,15.0,2,,5,106792,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1566.92148214901,210.0,27180.355282267137,0,1,0,1,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007726168323377549,27180.355282267137,7,4,7,7_0,7_2,7_0_0 +6788,0,83.0,0.0,1,300,600.0,0.0,0.0,86,86,0.0,463.51454695357836,1023.1203260232367,1070.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106793,2,2,2,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1363.34961376211,600.0,19100.543921253484,5,5,0,1,120.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05601934711447634,12733.695947502323,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6789,2,36.0,0.0,1,111,600.0,0.0,0.0,33,63,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,106794,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1141.51143318317,600.0,32825.15362864804,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018278665403605364,21883.435752432026,6,3,6,6_0,6_4,6_1_0 +6790,1,38.0,459.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,2376.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,106795,2,3,1,0,1,,467.0,634.0,32,1.0,0.0,5.0,4.0,2.1,2,1,718.202562614927,0.0,13152.386337329337,0,4,2,3,104.0,7,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.18065162770168897,6263.04111301397,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6791,2,32.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,592.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,31.0,2,,2,106796,2,2,0,1,1,583.0,0.0,306.0,12,1.0,0.0,3.0,1.0,1.0,1,1,320.330990218549,0.0,23089.82889564943,0,1,2,3,75.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025638994670573078,23089.82889564943,6,3,6,6_0,6_3,6_0_1 +6792,2,46.0,0.0,2,111,950.0,0.0,0.0,85,67,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,106797,2,1,0,1,1,,0.0,480.0,42,1.0,0.0,3.0,4.0,2.1,2,2,278.841722623984,950.0,19172.46121883631,6,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04955023714256657,9129.7434375411,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +6793,2,89.0,0.0,2,112,315.0,0.0,0.0,86,72,3164.0485531098047,0.0,537.1381711621992,3465.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,106798,1,1,2,0,2,,178.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,894.13109582863,315.0,17745.473182366946,5,5,0,1,166.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19526106542163377,11830.315454911297,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +6794,2,54.0,0.0,2,111,386.0,168.0,0.0,0,48,0.0,0.0,658.2074097416156,664.0,0.0,318.9486800538846,50,1,2,2,1,1,2,2,2,3,35.0,2,,2,106799,1,3,0,1,2,300.0,0.0,332.0,12,1.0,1.0,3.0,1.0,1.0,1,1,385.044220053805,386.0,17605.91387169937,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03771460003944169,17605.91387169937,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +6795,0,62.0,0.0,9,111,0.0,0.0,0.0,42,34,0.0,0.0,0.0,1933.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,1,2010.0,6,106800,2,1,1,0,1,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,449.653862726277,0.0,81267.66679098045,1,1,5,0,120.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02378559735167068,54178.4445273203,10,5,10,10_1,10_2,10_0_0 +6796,2,51.0,0.0,5,112,297.0,0.0,0.0,38,38,0.0,0.0,506.4445613815022,297.0,0.0,0.0,10,2,2,1,1,2,2,2,2,3,90.0,2,,3,106801,2,1,0,1,2,1048.0,0.0,1000.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1265.97985378425,297.0,111701.46301277404,1,1,2,3,95.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.002658872963606891,74467.64200851602,10,5,10,10_0,10_2,10_0_0 +6798,2,59.0,0.0,2,111,300.0,0.0,0.0,37,46,0.0,0.0,511.56016301161833,300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,106803,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,749.213508180625,300.0,72837.44628683571,1,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004118760545483602,36418.723143417854,9,5,9,9_0,9_4,9_0_1 +6799,2,47.0,0.0,7,112,800.0,0.0,0.0,55,37,0.0,794.5963662061343,1364.160434697649,1460.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,106804,2,1,1,0,1,,600.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1727.59854213754,800.0,97487.7499292637,1,1,0,1,138.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014976240615455418,64991.833286175795,10,5,10,10_1,10_0,10_0_0 +6800,2,41.0,0.0,2,111,0.0,0.0,0.0,68,68,0.0,0.0,0.0,675.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,106805,2,2,0,1,1,,0.0,563.0,43,2.0,0.0,4.0,5.0,2.6,3,3,177.627459867969,0.0,10904.855918860145,4,1,2,3,68.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0618990296637093,4194.175353407748,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +6801,2,48.0,0.0,1,300,1100.0,0.0,0.0,54,62,1054.6828510366015,1059.4618216081792,1875.7205977092674,2900.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,15.0,1,,1,106806,2,2,4,0,1,,200.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1137.77864973863,1100.0,45840.33066589567,1,1,1,2,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06326306895856544,22920.165332947836,6,3,6,6_1,6_0,6_1_0 +6802,2,52.0,0.0,1,111,1300.0,3000.0,0.0,37,22,0.0,0.0,2216.7607063836795,4300.0,0.0,5695.512143819367,50,2,2,2,2,1,2,2,2,2,15.0,1,,1,106807,2,1,4,0,1,,600.0,,43,2.0,1.0,9.0,2.0,1.5,2,2,420.636025339957,1300.0,51929.294177240954,1,1,1,2,300.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.082804899780143,34619.52945149397,9,5,9,9_1,9_3,9_1_0 +6803,2,44.0,0.0,9,111,720.0,,,46,34,0.0,0.0,,762.0,58.19474746665388,,31,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,106808,2,1,0,0,2,,220.0,,43,2.0,0.0,7.0,3.0,2.0,3,2,167.37393482753984,720.0,65165.59719516734,1,1,1,2,151.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01169328653150914,32582.79859758367,8,4,8,8_1,8_3,8_0_0 +6804,2,61.0,0.0,7,112,994.0,0.0,0.0,0,75,0.0,0.0,1694.9693401118288,994.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,1,,5,106809,2,2,5,0,1,,266.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1046.88812150008,994.0,35090.46567715489,0,5,0,1,144.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.028326782811751865,35090.46567715489,9,5,9,9_1,9_1,9_0_0 +6805,2,57.0,0.0,6,111,1000.0,0.0,0.0,62,47,0.0,331.081819252556,1705.2005433720612,1310.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,106810,2,1,1,0,1,,300.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,233.846662298524,1000.0,48593.91895109717,1,1,0,1,100.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026958105628778935,32395.945967398115,8,4,8,8_1,8_2,8_0_0 +6806,1,61.0,270.0,2,111,250.0,120.0,0.0,0,72,0.0,0.0,426.3001358430153,370.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,106811,2,1,0,1,1,528.0,170.0,273.0,11,0.0,7.0,2.0,1.0,1.0,1,1,558.079110206239,250.0,4657.286435883953,0,7,2,3,42.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07944540347554852,4657.286435883953,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6807,1,70.0,183.0,1,111,100.0,700.0,0.0,0,77,0.0,0.0,170.52005433720612,800.0,0.0,1328.9528335578523,71,2,2,2,2,1,2,2,2,0,,2,,1,106812,2,3,0,0,1,,0.0,213.0,11,0.0,3.0,1.0,1.0,1.0,1,1,312.104265291725,100.0,10422.668785112479,0,5,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,0.07675577306483183,10422.668785112479,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +6808,2,82.0,0.0,1,111,600.0,70.0,0.0,85,74,0.0,0.0,1023.1203260232367,670.0,0.0,132.89528335578524,71,0,0,0,0,0,0,0,0,0,,2,,1,106813,2,2,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,680.514894951248,600.0,97905.97935455077,6,5,0,1,144.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00684330011728602,65270.65290303385,10,5,10,10_0,10_4,10_1_0 +6809,2,32.0,0.0,9,111,560.0,350.0,0.0,63,54,0.0,0.0,954.9123042883542,910.0,0.0,664.4764167789261,42,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,106814,2,1,0,0,1,,310.0,550.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1079.66386879493,560.0,21315.397817570985,1,1,2,3,77.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04269214244971103,10150.189436938565,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +6810,2,74.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,249.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,106815,2,1,0,0,1,,98.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,2327.12255641107,0.0,34559.391403932736,0,5,0,1,28.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0072049879897961595,34559.391403932736,9,5,9,9_0,9_3,9_0_1 +6811,2,50.0,0.0,6,300,1500.0,0.0,0.0,55,21,2109.365702073203,331.081819252556,2557.8008150580918,3830.0,110.84713803172167,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,106816,2,1,1,0,1,,180.0,,43,3.0,2.0,7.0,3.0,2.0,3,3,291.219181551208,1500.0,77250.26638323966,1,1,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0495791170608955,38625.13319161983,9,5,9,9_1,9_0,9_0_0 +6812,2,52.0,0.0,9,112,1500.0,0.0,0.0,71,11,0.0,397.2981831030672,2557.8008150580918,1860.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,1,5.0,1,2008.0,6,106817,2,1,1,0,1,,240.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,272.189960141381,1500.0,43065.12814868266,5,1,1,2,120.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04319039742731838,28710.085432455107,8,4,8,8_1,8_0,8_0_0 +6813,2,77.0,0.0,1,111,1500.0,0.0,0.0,78,78,0.0,0.0,2557.8008150580918,1610.0,152.4148147936173,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,106818,2,3,0,0,1,,389.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1043.14682716371,1500.0,27233.795731117254,5,5,0,1,85.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05911772328381015,18155.863820744835,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +6814,2,56.0,0.0,2,111,890.0,,,52,52,0.0,0.0,,980.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,106819,2,2,0,0,2,,550.0,400.0,43,2.0,2.0,4.0,2.0,1.5,2,2,181.70228370764477,890.0,53012.03863903211,1,1,2,3,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01848636696794449,35341.35909268807,9,5,9,9_0,9_2,9_0_1 +6815,2,64.0,0.0,5,112,830.0,1013.0,0.0,0,74,0.0,198.6490915515336,1415.3164509988108,1993.0,0.0,1923.1846005630061,31,0,0,0,0,0,0,0,0,0,,1,,3,106820,2,1,2,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,994.051250696411,830.0,69058.15213365646,0,5,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02885973543199809,69058.15213365646,10,5,10,10_1,10_1,10_0_0 +6816,2,81.0,0.0,5,111,867.0,0.0,0.0,0,77,0.0,0.0,1478.408871103577,867.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,106821,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1100.36194938214,867.0,35478.28632306923,0,5,0,1,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024437482467585987,35478.28632306923,9,5,9,9_0,9_4,9_0_0 +6818,2,58.0,0.0,1,111,612.0,1966.0,0.0,74,34,0.0,0.0,1043.5827325437015,2578.0,0.0,3732.458958249625,10,0,0,0,0,0,0,0,0,3,240.0,1,,1,106823,2,1,2,0,2,,980.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,686.133158544448,612.0,101465.67700173832,5,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0254076065540452,67643.78466782554,10,5,10,10_1,10_4,10_1_0 +6819,2,66.0,0.0,1,111,510.0,0.0,0.0,0,77,0.0,0.0,869.6522771197511,708.0,274.3466666285112,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,106824,2,1,0,1,1,755.0,0.0,418.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1137.92183742801,510.0,15765.623763039235,0,5,2,3,70.0,7,5,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04490783305763187,15765.623763039235,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +6820,1,58.0,271.0,1,111,330.0,0.0,0.0,0,67,0.0,0.0,562.7161793127802,330.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106825,2,3,2,0,1,,100.0,302.0,22,2.0,0.0,4.0,2.0,1.5,2,2,333.84186228999,330.0,10761.373573671466,0,4,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.030665230394693346,7174.249049114311,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +6821,2,47.0,0.0,1,300,1210.0,0.0,0.0,0,54,0.0,158.91927324122688,2063.292657480194,1365.0,48.49562288887823,0.0,60,2,2,2,2,1,2,1,2,2,60.0,1,,1,106826,2,1,2,0,1,,100.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,810.346916926516,1210.0,40301.265578800434,0,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.03386990409348403,40301.265578800434,9,5,9,9_1,9_0,9_1_0 +6822,2,34.0,0.0,9,112,1020.0,0.0,0.0,43,52,0.0,0.0,1739.3045542395023,1110.0,124.70303028568689,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,106827,2,1,1,0,1,,245.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1611.69482366829,1020.0,46932.54483087492,1,1,1,2,155.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02365096552935647,22348.8308718452,6,3,6,6_1,6_0,6_0_0 +6823,2,53.0,0.0,1,112,825.0,0.0,0.0,11,11,0.0,0.0,1406.7904482819504,2100.0,1766.6262623805642,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106828,2,1,2,0,1,,288.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,814.566103719671,825.0,43831.812962855714,1,1,0,1,190.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04791040703197921,29221.20864190381,8,4,8,8_1,8_0,8_1_0 +6824,2,94.0,0.0,1,112,400.0,0.0,0.0,0,72,3164.0485531098047,264.8654554020448,682.0802173488245,3650.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106829,2,1,2,0,1,,116.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,222.479836096273,400.0,29119.447826855678,0,5,0,1,70.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12534578339887867,19412.965217903784,5,3,5,5_1,5_0,5_1_0 +6825,2,65.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,930.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,106830,2,1,1,0,1,,457.0,905.0,41,0.0,5.0,5.0,2.0,1.5,2,2,1029.80309481043,0.0,110079.37265412473,5,5,2,3,95.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.008448449310499885,73386.24843608316,10,5,10,10_1,10_3,10_0_1 +6826,2,32.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,737.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,106831,1,2,0,1,1,359.0,0.0,350.0,12,1.0,0.0,3.0,1.0,1.0,1,1,310.415407822667,0.0,18567.05787514157,0,1,2,3,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03969395716629555,18567.05787514157,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +6827,0,27.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,300.0,415.67676761895626,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,106832,2,2,0,0,2,,0.0,,32,1.0,0.0,3.0,5.0,2.2,1,1,205.2550700183692,0.0,3466.0,0,4,5,0,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08655510675129832,1575.4545454545453,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6828,2,72.0,0.0,7,211,1000.0,1400.0,0.0,74,72,0.0,728.3800023556231,1705.2005433720612,2950.0,0.0,2657.9056671157045,20,0,0,0,0,0,0,0,0,0,,1,,5,106833,2,3,3,0,1,,400.0,988.0,41,0.0,9.0,6.0,2.0,1.5,2,2,1113.0805904617,1000.0,112092.97794038593,5,5,2,3,150.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026317438025144534,74728.65196025728,10,5,10,10_1,10_1,10_0_0 +6829,2,74.0,0.0,1,111,240.0,160.0,0.0,86,78,1898.4291318658827,0.0,409.2481304092947,2200.0,0.0,303.7606476703662,71,0,0,0,0,0,0,0,0,0,,1,,1,106834,2,2,2,0,1,,150.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,673.508969123488,240.0,43747.989692628056,6,5,0,1,75.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05028802501456931,29165.326461752036,8,4,8,8_1,8_4,8_1_0 +6830,2,73.0,0.0,2,111,250.0,1620.0,0.0,0,75,0.0,0.0,426.3001358430153,1870.0,0.0,3075.576557662458,31,2,2,2,2,1,2,2,2,0,,1,,2,106835,2,2,3,0,1,,240.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,255.545089342424,250.0,29936.321405361516,0,5,0,1,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.062465924743348326,29936.321405361516,8,4,8,8_1,8_2,8_0_1 +6831,2,65.0,0.0,7,111,780.0,,,78,77,0.0,0.0,,906.0,174.58424239996165,,60,0,0,0,0,0,0,0,0,0,,1,,5,106836,2,1,0,0,1,,480.0,,41,0.0,3.0,9.0,3.0,2.0,3,3,120.66611882750112,780.0,55765.71992111626,5,5,0,1,228.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01624654001206454,27882.85996055813,7,4,7,7_1,7_2,7_0_0 +6832,2,30.0,0.0,7,112,490.0,0.0,0.0,54,52,1529.2901340030721,0.0,835.54826625231,1970.0,41.567676761895626,0.0,31,2,2,2,2,2,2,2,1,2,10.0,1,,5,106837,2,3,3,0,1,,404.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,727.909425059023,490.0,49961.15086262185,1,1,1,2,124.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.03943063692461585,23791.024220296116,6,3,6,6_1,6_0,6_0_0 +6833,2,69.0,0.0,6,112,2213.0,0.0,0.0,77,74,0.0,0.0,3773.608802482371,2213.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,106838,2,1,1,0,2,,1870.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1414.86338540962,2213.0,55894.70717191186,5,5,1,2,94.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039592299735887584,37263.13811460791,9,5,9,9_1,9_0,9_0_0 +6834,1,49.0,30.0,2,111,330.0,0.0,0.0,0,52,0.0,700.5691295384084,562.7161793127802,859.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,10.0,2,,2,106839,2,1,0,1,1,529.0,204.0,321.0,32,1.0,0.0,3.0,2.0,1.5,2,1,271.999828512404,330.0,23376.313354972976,0,1,2,3,85.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03674659844586914,15584.208903315317,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +6835,2,55.0,0.0,5,112,1400.0,0.0,0.0,0,21,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,106840,1,1,0,0,1,,680.0,560.0,22,2.0,2.0,4.0,2.0,1.5,2,2,1816.22316006832,1400.0,14646.924990440588,0,1,2,3,90.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09558320267999729,9764.616660293725,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +6836,2,62.0,0.0,1,111,1164.0,300.0,0.0,78,77,0.0,993.245457757668,1984.853432485079,2214.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,1,,1,106841,2,1,1,0,1,,552.0,,41,1.0,4.0,9.0,4.0,2.5,4,4,231.004336577559,1164.0,23136.58955388824,5,5,0,1,150.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09569258229884293,9254.635821555295,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +6837,2,42.0,0.0,9,111,1152.0,1800.0,0.0,38,38,0.0,0.0,1964.3910259646145,2952.0,0.0,3417.30728629162,31,0,0,0,0,0,0,0,0,3,70.0,1,2010.0,6,106842,2,1,1,0,1,,504.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,247.186675005035,1152.0,69352.58188390001,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04256510601064295,38529.21215772223,9,5,9,9_1,9_4,9_0_0 +6838,2,45.0,0.0,2,111,621.0,1150.0,0.0,0,55,0.0,0.0,1058.92953743405,1771.0,0.0,2183.2796551307574,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,106843,2,1,2,0,2,,423.0,,32,2.0,0.0,3.0,4.0,2.3,3,1,481.553770798206,621.0,47520.03906784178,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03726848787880076,20660.88655123556,5,3,5,5_1,5_4,5_0_1 +6839,2,43.0,0.0,6,400,800.0,,,0,47,0.0,0.0,,892.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,1,5.0,1,,4,106844,2,2,0,0,1,,485.0,,32,2.0,0.0,4.0,4.0,2.5,4,3,6.920226120575992,800.0,38126.84600201475,0,1,0,1,61.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023395588503514395,15250.738400805898,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +6840,0,64.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,748.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,106845,2,2,0,0,2,,268.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,112.40955995701913,0.0,27527.334888973404,0,5,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027172990157489803,27527.334888973404,7,4,7,7_1,7_3,7_0_1 +6841,2,81.0,0.0,9,111,720.0,,,74,74,0.0,0.0,,720.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,2006.0,6,106846,2,1,0,0,2,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,155.9892189324855,720.0,90328.27724483391,5,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007970925849149619,60218.85149655594,10,5,10,10_0,10_2,10_0_0 +6842,2,40.0,0.0,7,111,785.0,0.0,0.0,0,37,0.0,0.0,1338.582426547068,785.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,5,106847,2,2,0,1,1,550.0,0.0,318.0,32,1.0,0.0,3.0,3.0,2.0,3,2,162.960146450885,785.0,19571.757052216915,0,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04010881587716633,9785.878526108458,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +6843,2,50.0,0.0,7,111,312.0,882.0,0.0,52,42,0.0,0.0,532.0225695320831,1194.0,0.0,1674.480570282894,10,0,0,0,0,0,0,0,0,3,30.0,2,,5,106848,1,2,0,0,1,,0.0,825.0,43,2.0,0.0,5.0,4.0,2.1,2,2,300.395910122128,312.0,37233.03661202499,1,1,2,3,105.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032068294951112825,17730.017434297613,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +6844,2,51.0,0.0,1,111,900.0,1200.0,0.0,31,37,0.0,39.72981831030672,1534.680489034855,2130.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,2,45.0,1,,1,106849,2,1,1,0,1,,1000.0,,43,2.0,1.0,7.0,4.0,2.3,3,3,555.819486562985,900.0,630786.2667785455,1,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0033767380683127554,274254.8985993676,10,5,10,10_1,10_4,10_1_0 +6845,2,75.0,0.0,5,111,1870.0,0.0,0.0,77,74,0.0,0.0,3188.7250161057545,1945.0,103.91919190473907,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,106850,2,1,2,0,1,,253.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1513.4854996245,1870.0,33464.277587003446,5,5,0,1,98.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0581216790036245,22309.51839133563,6,3,6,6_1,6_2,6_0_0 +6846,2,30.0,0.0,1,112,700.0,0.0,0.0,45,47,1371.087706347582,105.94618216081791,1193.6403803604428,2140.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,1,106851,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,514.930926839802,700.0,55419.36256756923,1,1,1,2,110.0,8,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038614662833605075,36946.24171171282,9,5,9,9_1,9_1,9_1_0 +6847,1,40.0,220.0,7,111,570.0,,,85,55,0.0,0.0,,658.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,106852,2,3,0,0,2,,460.0,400.0,42,1.0,0.0,3.0,4.0,2.3,3,2,121.32237445116658,570.0,26807.324127536143,6,1,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024545530798581672,11655.358316320064,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6849,1,32.0,120.0,1,400,1800.0,0.0,0.0,85,64,0.0,0.0,3069.36097806971,1840.0,55.423569015860835,0.0,71,2,2,2,2,1,2,2,2,2,20.0,1,,1,106854,1,3,4,0,2,,170.0,500.0,42,1.0,0.0,3.0,4.0,2.1,2,2,2238.86527219543,1800.0,30384.506681420346,6,1,2,3,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.06055717867307457,14468.812705438258,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +6850,2,50.0,0.0,1,111,510.0,0.0,0.0,85,47,1582.0242765549024,0.0,869.6522771197511,2010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,106855,2,1,2,0,1,,0.0,,42,1.0,1.0,7.0,4.0,2.3,3,2,931.432879557384,510.0,39677.54989413291,6,1,0,1,200.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050658369918582524,17251.108649623005,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +6851,2,40.0,0.0,8,111,280.0,,,0,52,0.0,0.0,,530.0,346.39730634913025,,20,2,2,2,1,1,2,2,2,2,15.0,1,2000.0,6,106856,2,3,0,0,2,,140.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,121.89004159344256,280.0,14422.940769468052,0,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.036747013557870106,14422.940769468052,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +6852,1,56.0,159.0,5,111,570.0,490.0,0.0,22,22,0.0,0.0,971.9643097220749,1060.0,0.0,930.2669834904966,50,1,2,2,2,1,2,2,2,0,,2,,3,106857,1,2,0,0,2,,460.0,511.0,43,2.0,2.0,3.0,4.0,2.3,3,3,1364.7634690236,570.0,12885.397637974036,1,1,2,3,110.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.08226366230841932,5602.346799119146,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +6853,2,27.0,0.0,9,111,1018.0,0.0,0.0,52,43,0.0,0.0,1735.8941531527582,1018.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,106858,2,1,0,0,1,,0.0,636.0,43,2.0,0.0,3.0,2.0,1.5,2,2,562.684784666484,1018.0,38354.16593043418,1,1,2,3,65.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02654209719607572,25569.443953622787,7,4,7,7_0,7_2,7_0_0 +6854,2,75.0,0.0,1,111,671.0,1015.0,0.0,78,75,0.0,0.0,1144.189564602653,1686.0,0.0,1926.9816086588858,50,0,0,0,0,0,0,0,0,0,,1,,1,106859,2,1,2,0,1,,340.0,350.0,41,0.0,1.0,3.0,2.0,1.5,2,2,368.65406454584,671.0,23102.52203074759,5,5,2,3,56.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07297904522095337,15401.681353831727,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +6855,2,58.0,0.0,2,111,600.0,800.0,0.0,78,52,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,1,15.0,1,,2,106860,2,2,1,0,1,,250.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,458.598206178744,600.0,22036.960052977258,7,1,0,1,140.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06352963369876671,14691.306701984839,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +6856,2,57.0,0.0,1,111,956.0,3355.0,0.0,34,34,0.0,0.0,1630.1717194636906,4311.0,0.0,6369.4810808379925,10,0,0,0,0,0,0,0,0,3,248.0,1,,1,106861,2,1,1,0,1,,259.0,,43,2.0,0.0,9.0,4.0,2.5,4,4,442.110136674449,956.0,132626.22463111038,1,1,0,1,250.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032504883645679536,53050.48985244415,10,5,10,10_1,10_4,10_1_0 +6857,0,48.0,0.0,5,400,120.0,,,81,42,0.0,39.72981831030672,,270.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,106862,2,2,0,0,2,,160.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,43.69068323183109,120.0,41179.92762839526,4,1,5,0,55.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006556592387350965,19609.489346854883,5,3,5,5_1,5_1,5_0_0 +6858,2,69.0,0.0,6,111,1400.0,0.0,0.0,74,74,0.0,198.6490915515336,2387.2807607208856,1550.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,106863,2,1,2,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1237.50842389729,1400.0,69972.05264679487,5,5,0,1,155.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02215170116309285,46648.03509786324,10,5,10,10_1,10_3,10_0_0 +6859,2,51.0,0.0,1,221,560.0,0.0,0.0,52,67,1792.9608467622227,0.0,954.9123042883542,2315.0,76.20740739680865,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,106864,1,2,1,0,1,,373.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2396.70351449421,560.0,36352.09620010088,1,1,0,1,80.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06368270999441225,24234.730800067253,7,4,7,7_1,7_1,7_1_0 +6860,2,41.0,0.0,6,112,1110.0,0.0,0.0,46,53,0.0,662.163638505112,1892.772603142988,1650.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,106865,2,1,3,0,1,,225.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,893.038887423432,1110.0,70024.730788178,1,1,1,2,130.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023563103798159308,46683.153858785336,10,5,10,10_1,10_0,10_0_0 +6861,2,24.0,0.0,6,111,900.0,,,0,55,0.0,33.1081819252556,,1210.0,394.8929292380085,,43,0,0,0,0,0,0,0,0,0,,1,,4,106866,2,1,0,0,2,,1798.0,,22,4.0,2.0,5.0,4.0,2.5,4,4,81.13518831335047,900.0,19948.040648350827,0,2,0,1,138.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06065758644320964,7979.216259340331,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6862,1,39.0,124.0,9,112,750.0,0.0,0.0,52,48,0.0,0.0,1278.9004075290459,850.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,106867,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1951.19779198618,750.0,53243.457531043816,1,1,1,2,160.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.01596440275322849,20478.252896555317,5,3,5,5_1,5_0,5_0_0 +6863,1,65.0,215.0,2,112,0.0,0.0,0.0,78,75,0.0,0.0,0.0,1006.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106868,1,1,0,0,1,,0.0,345.0,41,1.0,4.0,4.0,3.0,2.0,3,3,1018.46539643503,0.0,27061.360248793593,5,5,2,3,78.0,10,1,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037174775796602756,13530.680124396797,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +6864,2,28.0,0.0,2,111,270.0,900.0,0.0,33,46,0.0,0.0,460.40414671045653,1170.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,2,40.0,2,,2,106869,2,1,0,0,1,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1382.05689364111,270.0,40392.58957114865,1,1,1,2,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028965709116993574,26928.393047432433,7,4,7,7_0,7_3,7_0_1 +6865,2,62.0,0.0,6,111,1650.0,0.0,0.0,74,72,0.0,0.0,2813.5808965639008,1802.0,210.6095622602712,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106870,2,1,2,0,1,,427.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1066.24368742866,1650.0,19861.728455239798,6,5,0,1,88.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09072724984942625,13241.152303493198,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +6866,2,90.0,0.0,2,111,366.0,,,0,75,0.0,0.0,,462.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,2,,2,106871,2,1,0,0,2,,322.0,270.0,11,0.0,5.0,4.0,1.0,1.0,1,1,99.79708847847996,366.0,35356.96072221973,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013066733977212603,35356.96072221973,9,5,9,9_0,9_2,9_0_1 +6867,2,49.0,0.0,9,112,1400.0,0.0,0.0,52,21,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,106872,2,1,1,0,1,,600.0,,43,3.0,1.0,4.0,4.0,2.3,4,3,1370.98460657268,1400.0,60406.11703811464,1,1,1,2,103.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023176460740170365,26263.529147006368,7,4,7,7_1,7_0,7_0_0 +6868,2,59.0,0.0,6,111,1300.0,0.0,0.0,54,47,0.0,0.0,2216.7607063836795,1350.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,,4,106873,2,1,2,0,1,,413.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,634.736301953565,1300.0,66747.6455844518,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020225432495471703,44498.43038963454,10,5,10,10_1,10_4,10_0_0 +6869,2,48.0,0.0,9,111,360.0,,,47,42,0.0,0.0,,360.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,106874,2,1,0,0,2,,320.0,1090.0,43,2.0,0.0,3.0,4.0,2.1,2,2,157.69760431668217,360.0,65174.66758885871,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0055236185057511555,31035.555994694623,8,4,8,8_1,8_2,8_0_0 +6870,2,63.0,0.0,5,111,277.0,1610.0,0.0,0,74,0.0,0.0,472.34055051406096,1887.0,0.0,3056.59151718306,20,0,0,0,0,0,0,0,0,0,,2,,3,106875,1,3,0,0,2,,0.0,947.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2279.41255630695,277.0,33768.11347432512,0,5,2,3,83.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05588111996350466,33768.11347432512,9,5,9,9_0,9_3,9_0_0 +6872,2,87.0,0.0,2,111,0.0,,,0,86,0.0,0.0,,993.0,0.0,,71,2,2,2,2,1,2,2,2,0,,1,,2,106877,1,2,0,0,2,,215.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,106.94339891987676,0.0,9403.33614668342,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.10560081916780499,9403.33614668342,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +6873,2,64.0,0.0,1,111,500.0,1200.0,0.0,0,72,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,106878,2,2,2,0,2,,250.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,224.983264859939,500.0,14725.446554696066,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11544641404833024,14725.446554696066,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +6874,2,60.0,0.0,1,111,580.0,500.0,0.0,0,34,0.0,0.0,989.0163151557955,1080.0,0.0,949.2520239698945,10,2,1,2,2,1,2,2,2,0,,2,,1,106879,2,1,0,1,2,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,787.382791523555,580.0,42401.0856293471,0,1,1,2,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.025471045940684563,42401.0856293471,9,5,9,9_0,9_4,9_1_0 +6875,2,79.0,0.0,1,111,300.0,0.0,0.0,0,77,2003.897416969543,0.0,511.56016301161833,2320.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106880,2,1,2,0,2,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,975.483618694684,300.0,16457.061890506724,0,5,0,1,80.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14097291578749513,16457.061890506724,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +6876,2,57.0,0.0,6,111,230.0,765.0,0.0,0,54,0.0,0.0,392.1961249755741,995.0,0.0,1452.3555966739386,50,2,2,2,2,1,2,2,2,2,20.0,1,,4,106881,2,2,2,0,1,,230.0,500.0,12,1.0,2.0,2.0,1.0,1.0,1,1,701.24383342958,230.0,29278.368116995574,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03398413449902695,29278.368116995574,8,4,8,8_1,8_4,8_0_0 +6877,2,55.0,0.0,1,112,1450.0,0.0,0.0,52,90,0.0,0.0,2472.540787889489,1650.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,,1,106882,2,1,2,0,1,,500.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,570.219449603841,1450.0,51214.69090745033,7,1,0,1,80.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03221731832730773,34143.12727163355,9,5,9,9_1,9_2,9_1_0 +6878,2,88.0,0.0,2,111,200.0,700.0,0.0,0,78,0.0,0.0,341.04010867441224,900.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,,2,106883,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,301.847013585811,200.0,13290.528989280027,0,5,0,1,52.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06771739490022773,13290.528989280027,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +6879,2,55.0,0.0,5,112,900.0,0.0,0.0,85,52,0.0,238.3789098618403,1534.680489034855,1170.0,124.70303028568689,0.0,71,2,2,2,1,1,2,2,2,0,,1,,3,106884,1,3,3,0,1,,450.0,486.0,42,1.0,2.0,5.0,2.0,1.5,2,2,400.288464400834,900.0,24083.64553314121,7,1,2,3,86.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04858068511222594,16055.763688760808,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +6880,2,78.0,0.0,6,111,171.0,0.0,0.0,0,74,0.0,99.3245457757668,291.58929291662247,246.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,106885,2,1,2,0,1,,315.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1423.7862112174,171.0,60230.13928747954,0,5,0,1,300.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.004084333905087577,60230.13928747954,10,5,10,10_1,10_2,10_0_0 +6881,2,43.0,0.0,1,111,1060.0,1800.0,0.0,55,47,0.0,0.0,1807.5125759743848,2860.0,0.0,3417.30728629162,43,2,2,2,2,1,2,2,1,2,40.0,1,,1,106886,1,1,1,0,1,,600.0,,43,3.0,0.0,6.0,5.0,2.8,4,3,757.782751262428,1060.0,23584.376658724108,1,1,1,2,100.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.12126671997252284,8422.991663830038,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +6882,2,50.0,0.0,7,111,540.0,,,55,46,0.0,0.0,,640.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,0,,1,,5,106887,2,1,0,0,2,,450.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,28.39740735594959,540.0,44737.00778531428,1,1,0,1,148.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01430582937221142,29824.671856876186,8,4,8,8_1,8_2,8_0_0 +6883,2,67.0,0.0,1,111,428.0,803.0,0.0,0,77,0.0,0.0,729.8258325632422,1231.0,0.0,1524.4987504956505,70,0,0,0,0,0,0,0,0,0,,1,,1,106888,2,1,2,0,1,,240.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,430.755295897702,428.0,10083.296639225406,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12208308889884696,10083.296639225406,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +6884,2,90.0,0.0,2,221,600.0,0.0,0.0,77,75,0.0,0.0,1023.1203260232367,2920.0,3214.5670029199287,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,106889,2,2,3,0,2,,420.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,810.173343152517,600.0,39810.56230152129,5,5,0,1,100.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0733473689189368,26540.37486768086,7,4,7,7_1,7_1,7_0_1 +6885,2,71.0,0.0,2,111,1000.0,0.0,0.0,72,72,3164.0485531098047,0.0,1705.2005433720612,4000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106890,2,1,2,0,1,,600.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,711.211509611851,1000.0,50222.97321643248,5,5,0,1,140.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0796448267362084,33481.98214428832,8,4,8,8_1,8_4,8_0_1 +6886,2,80.0,0.0,7,112,1855.0,0.0,0.0,75,75,0.0,397.2981831030672,3163.1470079551736,2155.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,106891,2,1,2,0,1,,397.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,763.751581591896,1855.0,56258.86436603139,5,5,0,1,150.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03830507466306359,37505.90957735426,9,5,9,9_1,9_1,9_0_0 +6887,1,34.0,50.0,9,111,2500.0,0.0,0.0,85,62,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,106892,2,1,1,0,1,,650.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,173.652248319289,2500.0,36018.97246419954,6,1,1,2,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.069407865604296,15007.905193416476,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +6888,2,53.0,0.0,7,400,0.0,,,0,11,0.0,0.0,,300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,106893,2,3,0,0,2,,0.0,,32,1.0,1.0,3.0,3.0,2.0,3,2,75.51707914969296,0.0,7467.737553159412,0,1,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040172809751874254,3733.868776579706,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6889,2,68.0,0.0,1,400,0.0,0.0,0.0,78,78,0.0,0.0,0.0,3030.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106894,2,1,1,0,1,,0.0,420.0,41,0.0,3.0,5.0,2.0,1.5,2,2,1018.54211694743,0.0,24578.005068351194,5,5,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12328095757054322,16385.33671223413,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6890,2,39.0,0.0,2,111,0.0,0.0,660.0,0,52,0.0,0.0,416.0100716737309,660.0,0.0,789.8432173926894,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,106895,1,3,0,1,1,756.0,0.0,347.0,32,1.0,0.0,3.0,2.0,1.3,1,1,826.688335660027,0.0,20626.143915921664,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031998225295545184,15866.264550708973,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +6891,2,97.0,0.0,2,111,656.0,0.0,0.0,0,86,0.0,0.0,1118.6115564520721,656.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,106896,2,2,0,1,1,,0.0,,11,0.0,7.0,6.0,1.0,1.0,1,1,1129.70248739525,656.0,94481.04825536824,0,5,0,1,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006943191381904755,94481.04825536824,10,5,10,10_0,10_4,10_0_1 +6892,2,57.0,0.0,7,111,120.0,644.0,0.0,0,38,0.0,0.0,204.62406520464734,764.0,0.0,1222.636606873224,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,106897,2,1,0,0,1,,85.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,2328.39585406065,120.0,86134.02679992527,0,1,1,2,72.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008869897627968125,86134.02679992527,10,5,10,10_0,10_2,10_0_0 +6893,2,50.0,0.0,1,111,1100.0,756.0,0.0,0,63,0.0,0.0,1875.7205977092674,1926.0,96.99124577775646,1435.2690602424805,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,106898,2,1,0,0,1,,320.0,490.0,32,2.0,1.0,3.0,2.0,1.5,2,2,933.693312685404,1100.0,46623.21713355149,0,1,2,3,72.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04130989061700746,31082.144755700992,8,4,8,8_0,8_2,8_1_0 +6894,2,22.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1296.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,3,106899,2,2,0,0,1,,0.0,732.0,22,2.0,0.0,4.0,2.0,1.5,2,2,436.322185095302,0.0,14313.89106413486,0,1,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0905414184160784,9542.594042756573,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +6895,2,51.0,0.0,6,111,200.0,,,0,63,0.0,0.0,,320.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,,4,106900,1,1,0,0,2,,200.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,110.35085485130972,200.0,6332.0,0,4,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05053695514845231,4221.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6896,2,47.0,0.0,9,112,718.0,0.0,0.0,52,48,0.0,37.08116375628627,1224.33399014114,746.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,106901,2,1,1,0,1,,238.0,,43,4.0,0.0,6.0,5.0,3.0,5,4,1707.67179684972,718.0,19919.133690365576,1,1,1,2,122.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037451427938395884,6639.7112301218585,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6898,0,46.0,0.0,1,111,1080.0,,,85,31,0.0,0.0,,1126.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,0,,2,,1,106903,1,2,0,0,2,,0.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,121.66564363263869,1080.0,13927.818084347538,6,1,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08084539826560698,6632.2943258797795,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +6899,2,69.0,0.0,5,111,422.0,0.0,0.0,77,75,0.0,0.0,719.5946293030098,1422.0,1385.589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106904,2,1,2,0,2,,147.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1076.15696238511,422.0,32357.030516544684,5,5,0,1,130.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043947172447512076,21571.353677696457,6,3,6,6_1,6_2,6_0_0 +6900,2,55.0,0.0,5,120,550.0,0.0,0.0,56,48,0.0,132.4327277010224,937.8602988546337,710.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,2,3.0,1,,3,106905,2,1,2,0,1,,350.0,,43,2.0,3.0,3.0,2.0,1.5,2,2,1684.80307029771,550.0,43759.84357599283,1,1,1,2,80.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016224920885903587,29173.22905066189,8,4,8,8_1,8_0,8_0_0 +6901,2,36.0,0.0,9,111,540.0,,,46,63,0.0,0.0,,540.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,106906,2,1,0,0,1,,140.0,800.0,43,2.0,0.0,4.0,3.0,1.8,2,2,146.8700789644294,540.0,48727.645227974775,1,1,2,3,87.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011082004834700763,27070.91401554154,7,4,7,7_1,7_2,7_0_0 +6902,2,63.0,0.0,2,111,350.0,300.0,0.0,0,77,0.0,0.0,596.8201901802214,650.0,0.0,569.5512143819367,71,2,2,2,2,1,2,2,2,0,,2,,2,106907,2,2,0,1,1,900.0,0.0,303.0,21,1.0,3.0,5.0,2.0,1.5,2,2,257.081555380273,350.0,33592.8254657552,0,5,2,3,92.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.01934936972368148,22395.216977170134,6,3,6,6_0,6_3,6_0_1 +6903,2,26.0,0.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,844.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,4,106908,2,1,0,0,1,,0.0,620.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1077.45521632661,0.0,23999.14592005174,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03516791817557233,23999.14592005174,6,3,6,6_0,6_4,6_0_0 +6904,2,75.0,0.0,7,111,564.0,,,0,77,0.0,0.0,,660.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,5,106909,1,1,0,0,2,,350.0,348.0,11,0.0,9.0,3.0,1.0,1.0,1,1,38.798418654470325,564.0,2265.0,0,5,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2913907284768212,2265.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6905,2,62.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,629.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,1,106910,2,2,0,0,1,,0.0,720.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1285.15127461948,0.0,38725.56157661921,0,1,2,3,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016242501706670215,38725.56157661921,9,5,9,9_0,9_4,9_1_0 +6906,2,34.0,0.0,2,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,744.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,7.0,8,,2,106911,2,2,0,0,1,,559.0,272.0,43,2.0,0.0,3.0,2.0,1.5,2,2,374.176246309722,0.0,26946.238563880335,1,1,2,3,70.0,7,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027610532662517253,17964.15904258689,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +6907,1,41.0,69.0,2,111,350.0,,,0,52,0.0,0.0,,372.0,30.482962958723462,,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,106912,2,1,0,0,1,,540.0,219.0,12,1.0,0.0,1.0,1.0,1.0,1,1,138.31290864339792,350.0,20112.053931657123,0,1,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018496370448492987,20112.053931657123,5,3,5,5_0,5_2,5_0_1 +6908,2,43.0,0.0,8,221,480.0,,,0,45,0.0,0.0,,606.0,174.58424239996165,,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106913,2,1,0,0,2,,600.0,,22,1.0,4.0,6.0,3.0,2.0,3,3,64.07015420384268,480.0,55374.409268864736,0,1,0,1,100.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010943683336785219,27687.204634432368,7,4,7,7_1,7_1,7_0_0 +6910,2,46.0,0.0,1,400,252.0,0.0,0.0,22,62,0.0,0.0,429.7105369297594,1036.0,1086.3019527108725,0.0,31,2,2,2,2,1,2,2,2,2,20.0,8,,1,106915,1,3,0,0,1,,345.0,428.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,1183.24320290456,252.0,43829.218599245716,1,1,2,3,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.023637199865977742,16857.391768940663,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +6911,2,83.0,0.0,2,211,400.0,0.0,0.0,78,78,2109.365702073203,0.0,682.0802173488245,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,106916,1,2,1,0,2,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1192.2058655209,400.0,32658.739994445234,5,5,0,1,90.0,3,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07348721966641103,21772.493329630157,6,3,6,6_1,6_1,6_0_1 +6912,2,91.0,0.0,5,111,120.0,100.0,0.0,0,77,0.0,0.0,204.62406520464734,220.0,0.0,189.8504047939789,60,2,2,2,2,1,2,2,2,0,,2,,3,106917,2,2,0,1,2,,0.0,,21,1.0,5.0,4.0,2.0,1.5,2,2,2446.73791071549,120.0,36220.45221431116,0,5,0,1,84.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0060739164353413345,24146.968142874106,6,3,6,6_0,6_2,6_0_0 +6913,2,41.0,0.0,1,111,2500.0,0.0,0.0,56,64,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,15.0,1,,1,106918,1,3,3,0,2,,660.0,288.0,43,3.0,2.0,4.0,6.0,3.0999999999999996,4,3,233.915341053403,2500.0,36233.78152168612,1,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.0689963866593316,11688.31661989875,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +6914,2,50.0,0.0,1,221,1158.0,0.0,0.0,0,56,0.0,0.0,1974.622229224847,1204.0,63.73710436823996,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,106919,2,1,2,0,1,,204.0,405.0,32,1.0,4.0,3.0,2.0,1.3,1,1,1993.28066636366,1158.0,22830.907361205183,0,1,2,3,70.0,1,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05273552999675629,17562.236431696296,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +6915,1,48.0,54.0,7,111,300.0,0.0,0.0,78,67,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,106920,2,2,0,1,1,600.0,0.0,454.0,42,1.0,2.0,3.0,2.0,1.5,2,2,537.880722274098,300.0,2768.525654929994,7,4,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10836092469137186,1845.6837699533291,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +6916,0,60.0,0.0,2,111,780.0,,,0,21,0.0,0.0,,870.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,3,10.0,1,,2,106921,2,2,0,0,2,,440.0,,22,4.0,0.0,5.0,4.0,2.5,4,4,105.95626404215407,780.0,5110.0,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17025440313111545,2044.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +6917,2,35.0,0.0,9,111,630.0,,,0,52,0.0,0.0,,674.0,60.965925917446924,,31,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,106922,2,1,0,0,2,,1105.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,166.5086174796991,630.0,37477.23010123398,0,1,1,2,97.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017984253323401502,28828.638539410753,8,4,8,8_1,8_3,8_0_0 +6918,2,63.0,0.0,1,400,150.0,0.0,0.0,0,11,0.0,0.0,255.78008150580916,150.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,106923,1,3,4,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,965.665906573062,150.0,11458.911483825468,0,5,0,1,50.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013090248599243362,11458.911483825468,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +6919,2,74.0,0.0,7,221,157.0,,,0,22,0.0,0.0,,241.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,5,106924,2,1,0,0,1,,124.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,80.77496699043493,157.0,29809.818701300144,0,5,0,1,26.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00808458455970042,29809.818701300144,8,4,8,8_1,8_1,8_0_0 +6920,1,30.0,304.0,1,111,520.0,0.0,0.0,85,68,0.0,662.163638505112,886.7042825534718,1100.0,110.84713803172167,0.0,60,2,2,2,1,2,2,2,2,2,20.0,1,,1,106925,1,3,3,0,1,,600.0,374.0,42,1.0,0.0,4.0,4.0,2.1,2,2,218.951958907576,520.0,18503.164488334187,6,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05944929045480433,8811.030708730565,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +6921,2,47.0,0.0,9,400,900.0,,,0,68,0.0,0.0,,1200.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,1,5.0,1,2007.0,6,106926,2,3,0,0,2,,400.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,36.88319467298755,900.0,53250.73644518473,0,1,1,2,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022534899610923816,53250.73644518473,10,5,10,10_1,10_0,10_0_0 +6922,2,48.0,0.0,9,120,800.0,0.0,0.0,55,63,0.0,0.0,1364.160434697649,950.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,2007.0,6,106927,2,1,1,0,1,,290.0,,43,2.0,2.0,5.0,5.0,3.0,5,4,1854.62101814169,800.0,51490.389989380135,1,1,1,2,123.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01845004475972967,17163.46332979338,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6923,2,55.0,0.0,6,111,2140.0,0.0,0.0,21,21,126.56194212439219,0.0,3649.1291628162107,2350.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,1,3.0,1,,4,106928,2,1,1,0,1,,327.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,2561.84459343095,2140.0,24143.111727024698,1,1,0,1,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09733625170485034,9657.24469080988,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +6924,2,44.0,0.0,1,111,220.0,1000.0,0.0,63,46,0.0,0.0,375.14411954185346,1220.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,106929,2,1,2,0,1,,120.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1634.39393388896,220.0,44617.67611969666,1,1,1,2,85.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02734342319234833,29745.11741313111,8,4,8,8_1,8_2,8_1_0 +6925,2,57.0,0.0,7,111,1037.0,2423.0,0.0,0,31,0.0,0.0,1768.2929634768275,3460.0,0.0,4600.075308158109,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,106930,2,1,4,0,1,,540.0,,32,2.0,0.0,7.0,3.0,2.0,3,3,2009.33609620413,1037.0,144241.73170120202,0,1,0,1,220.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023987510127564327,72120.86585060101,10,5,10,10_1,10_3,10_0_0 +6926,2,74.0,0.0,2,221,982.0,0.0,0.0,77,72,0.0,105.94618216081791,1674.506933591364,1062.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106931,2,1,2,0,2,,223.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,763.311565287307,982.0,28984.313475903054,5,5,0,1,85.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03664050904234542,19322.875650602036,5,3,5,5_1,5_1,5_0_1 +6927,2,75.0,0.0,5,221,308.0,0.0,0.0,77,78,0.0,0.0,525.2017673585948,2688.0,3297.70235644372,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,106932,2,1,1,0,1,,230.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1564.65048651911,308.0,25311.068152351087,5,5,0,1,96.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10619859990975204,16874.045434900723,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +6928,2,67.0,0.0,5,112,627.0,0.0,0.0,77,74,2109.365702073203,0.0,1069.1607406942824,2717.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,106933,2,1,2,0,1,,244.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,683.644379154422,627.0,33230.31522783561,5,5,0,1,90.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08176269112620653,22153.543485223738,6,3,6,6_1,6_0,6_0_0 +6929,2,72.0,0.0,7,111,520.0,0.0,0.0,0,77,0.0,0.0,886.7042825534718,520.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,106934,1,1,0,0,1,,395.0,1579.0,11,0.0,2.0,3.0,1.0,1.0,1,1,986.189265600444,520.0,56253.0,0,5,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009243951433701313,56253.0,10,5,10,10_0,10_4,10_0_0 +6930,1,53.0,220.0,6,111,200.0,,,0,78,0.0,0.0,,326.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,106935,2,2,0,0,2,,120.0,455.0,11,0.0,0.0,3.0,1.0,1.0,1,1,125.00864183669597,200.0,6595.9181202306645,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04942450680218564,6595.9181202306645,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +6931,2,72.0,0.0,2,111,253.0,167.0,0.0,77,90,0.0,0.0,431.41573747313146,504.0,0.0,317.05017600594476,71,0,0,0,0,0,0,0,0,0,,2,,2,106936,2,2,0,1,1,,198.0,316.0,41,0.0,2.0,3.0,2.0,1.5,2,2,293.163418245694,253.0,35689.69986354384,5,5,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014121721446999998,23793.13324236256,6,3,6,6_0,6_4,6_0_1 +6932,2,54.0,0.0,1,211,900.0,1000.0,0.0,75,65,0.0,0.0,1534.680489034855,1900.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,106937,1,2,1,0,1,,700.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,1420.34634843264,900.0,106297.35789374865,5,1,0,1,120.0,3,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01787438594568999,53148.67894687432,10,5,10,10_1,10_2,10_1_0 +6933,0,67.0,0.0,6,111,270.0,,,0,78,0.0,0.0,,414.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,4,106938,2,2,0,0,2,,152.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,101.76871018127795,270.0,11810.744719344963,0,5,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03505282772913586,11810.744719344963,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +6934,2,37.0,0.0,9,111,600.0,1000.0,0.0,38,35,0.0,331.081819252556,1023.1203260232367,1850.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,3,60.0,1,2011.0,6,106939,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,745.965243820699,600.0,89969.03099552103,1,1,1,2,118.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020562631157960337,37487.09624813376,9,5,9,9_1,9_4,9_0_0 +6935,2,47.0,0.0,9,112,2150.0,0.0,0.0,45,54,0.0,397.2981831030672,3666.1811682499315,2450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,106940,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,511.558675828864,2150.0,73207.41562673802,1,1,1,2,115.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03346655497978228,26145.505580977864,7,4,7,7_1,7_1,7_0_0 +6936,2,59.0,0.0,6,112,1380.0,0.0,0.0,68,78,0.0,0.0,2353.1767498534446,1380.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,106941,2,1,2,0,1,,690.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,795.334109014668,1380.0,27109.852496115258,1,5,0,1,88.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05090400252814909,18073.23499741017,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +6937,2,28.0,0.0,2,111,280.0,160.0,0.0,54,45,1001.9487084847715,0.0,477.4561521441771,1390.0,0.0,303.7606476703662,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,106942,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,312.259853406534,280.0,41173.583208761156,1,1,1,2,80.0,4,4,3,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033759510143975706,22874.212893756197,6,3,6,6_1,6_2,6_0_1 +6938,2,57.0,0.0,7,212,920.0,0.0,0.0,0,38,0.0,0.0,1568.7844999022964,962.0,58.19474746665388,0.0,70,2,2,1,2,1,2,2,2,2,1.0,1,,5,106943,2,1,2,0,1,,96.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1298.57982097106,920.0,33818.70580150422,0,1,0,1,49.0,3,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0284457958162672,33818.70580150422,9,5,9,9_1,9_0,9_0_0 +6939,2,36.0,0.0,5,111,360.0,0.0,0.0,0,62,0.0,0.0,613.872195613942,360.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,3,106944,1,1,0,1,2,,300.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,413.687852741321,360.0,24280.468344399942,0,1,0,1,48.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014826732124507415,24280.468344399942,7,4,7,7_0,7_2,7_0_0 +6940,2,39.0,0.0,9,111,800.0,0.0,0.0,46,37,0.0,0.0,1364.160434697649,860.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,106945,2,1,1,0,1,,720.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2386.96243200397,800.0,50829.60443027901,1,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016919273908173504,24204.5735382281,7,4,7,7_1,7_3,7_0_0 +6941,2,36.0,0.0,6,112,60.0,80.0,0.0,53,45,0.0,397.2981831030672,102.31203260232367,440.0,0.0,151.8803238351831,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,106946,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,229.527645311683,60.0,69964.95051451161,1,1,1,2,100.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006288863163116773,33316.64310214839,8,4,8,8_1,8_0,8_0_0 +6942,2,59.0,0.0,6,111,540.0,,,85,52,0.0,0.0,,716.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,3,75.0,1,,4,106947,2,1,0,0,2,,150.0,,42,2.0,0.0,4.0,4.0,2.3,3,3,157.1090063986078,540.0,42353.11315071664,6,1,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0169054869107747,18414.397022050714,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +6943,2,70.0,0.0,2,111,245.0,1348.0,0.0,0,75,0.0,0.0,417.774133126155,1593.0,0.0,2559.1834566228354,50,0,0,0,0,0,0,0,0,0,,1,,2,106948,1,1,2,0,2,,420.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,405.046072299278,245.0,36781.32965417491,0,5,0,1,120.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04331001665730115,36781.32965417491,9,5,9,9_1,9_2,9_0_1 +6944,2,70.0,0.0,6,111,1370.0,0.0,0.0,78,78,0.0,556.2174563442941,2336.124744419724,1890.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,106949,2,1,2,0,1,,380.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,894.732489326388,1370.0,42178.502331675285,6,5,0,1,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04480955689554308,28119.00155445019,8,4,8,8_1,8_3,8_0_0 +6945,2,30.0,0.0,9,111,420.0,,,47,43,0.0,0.0,,420.0,0.0,,33,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,106950,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,136.2253840869313,420.0,53125.47189994901,1,1,1,2,93.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007905812127014784,29514.151055527225,8,4,8,8_1,8_3,8_0_0 +6946,2,55.0,0.0,6,112,2500.0,0.0,0.0,34,37,0.0,0.0,4263.001358430153,2749.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,75.0,1,,4,106951,1,2,2,0,1,,150.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1097.97447692323,2500.0,99569.58561245476,1,1,0,1,120.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02760883238682615,66379.72374163651,10,5,10,10_1,10_0,10_0_0 +6947,2,45.0,0.0,7,400,0.0,,,0,11,0.0,0.0,,207.0,286.8169696570798,,71,0,0,0,0,0,0,0,0,0,,1,,5,106952,2,2,0,0,2,,0.0,,32,1.0,2.0,5.0,4.0,2.5,4,1,8.280596007637794,0.0,12155.11924613385,0,1,0,1,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017029861723967865,4862.04769845354,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +6948,2,30.0,0.0,9,111,1500.0,0.0,0.0,46,46,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,2006.0,6,106953,2,2,0,0,1,,0.0,900.0,43,2.0,0.0,4.0,2.0,1.5,2,2,857.500353612262,1500.0,25716.27646626615,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05832881762519763,17144.1843108441,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +6949,2,58.0,0.0,2,111,600.0,400.0,0.0,0,62,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,106954,2,1,0,0,1,,220.0,235.0,22,2.0,0.0,4.0,2.0,1.5,2,2,452.432882512254,600.0,30872.584827770246,0,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03239119774319928,20581.723218513496,5,3,5,5_0,5_3,5_0_1 +6950,2,56.0,0.0,6,400,520.0,0.0,0.0,55,65,2109.365702073203,218.51400070668694,886.7042825534718,2685.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,4,106955,2,2,2,0,1,,220.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,1072.67940755586,520.0,54664.36717363039,1,1,0,1,183.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04911791974965404,27332.183586815194,7,4,7,7_1,7_0,7_0_0 +6951,2,41.0,0.0,1,112,880.0,1600.0,0.0,46,37,0.0,0.0,1500.5764781674138,2580.0,138.5589225396521,3037.6064767036623,10,2,2,2,1,1,2,2,2,2,90.0,1,,1,106956,1,3,3,0,1,,1098.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,647.327088669488,880.0,92146.2186912904,1,1,1,2,140.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.027998978543477226,38394.25778803767,9,5,9,9_1,9_0,9_1_0 +6952,1,71.0,136.0,2,111,150.0,286.0,0.0,0,77,0.0,0.0,255.78008150580916,436.0,0.0,542.9721577107797,71,0,0,0,0,0,0,0,0,0,,2,,2,106957,1,2,0,1,1,,0.0,250.0,11,0.0,3.0,4.0,1.0,1.0,1,1,422.498431713012,150.0,10538.539915835188,0,5,2,3,55.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0413719550793623,10538.539915835188,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +6953,2,55.0,0.0,1,111,182.0,364.0,0.0,0,55,0.0,0.0,310.34649889371514,546.0,0.0,691.0554734500832,71,1,2,2,1,2,2,2,2,0,,2,,1,106958,2,2,0,1,1,540.0,0.0,728.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1029.62052582207,182.0,25582.44267670015,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.02134276256963074,25582.44267670015,7,4,7,7_0,7_4,7_1_0 +6954,2,42.0,0.0,8,111,400.0,,,55,37,0.0,0.0,,740.0,471.10033663481715,,43,0,0,0,0,0,0,0,0,2,25.0,1,1999.0,6,106959,2,1,0,0,2,,240.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,148.53530152192567,400.0,52870.92864489859,1,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013996349581262767,29372.73813605477,8,4,8,8_1,8_2,8_0_0 +6956,2,22.0,0.0,7,111,0.0,0.0,0.0,43,68,0.0,0.0,0.0,779.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,106961,2,1,0,0,2,,432.0,540.0,43,2.0,0.0,2.0,2.0,1.5,2,2,508.190429537943,0.0,7681.31707808365,1,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10141489956489942,5120.878052055767,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +6957,2,78.0,0.0,1,300,1763.0,0.0,0.0,71,72,0.0,0.0,3006.2685579649437,2457.0,961.5989224251855,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106962,2,1,2,0,1,,510.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,1126.84107863998,1763.0,35553.23896353885,5,5,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06910762764877043,17776.619481769427,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +6958,2,47.0,0.0,7,112,1080.0,,,22,81,0.0,0.0,,1680.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,0,,1,,5,106963,2,2,0,0,2,,600.0,,43,5.0,0.0,4.0,7.0,4.0,7,6,231.17647247235192,1080.0,27073.10690543078,4,4,0,1,66.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06205420034975732,6768.276726357695,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +6959,1,45.0,109.0,5,111,786.0,0.0,0.0,0,56,0.0,0.0,1340.28762709044,786.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,106964,2,1,0,0,1,,0.0,300.0,12,1.0,3.0,1.0,1.0,1.0,1,1,2028.21333361409,786.0,11350.10157353002,0,4,2,3,25.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06925048158450484,11350.10157353002,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +6960,2,55.0,0.0,5,111,1200.0,0.0,0.0,52,67,0.0,264.8654554020448,2046.2406520464733,1430.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,106965,2,1,1,0,1,,600.0,,43,4.0,0.0,5.0,4.0,2.5,4,3,988.290024464288,1200.0,26501.993343716145,1,1,0,1,90.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05395820538680595,10600.797337486458,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +6961,2,65.0,0.0,8,111,314.0,543.0,0.0,77,77,0.0,728.3800023556231,535.4329706188272,1407.0,0.0,1030.8876980313055,70,2,2,1,2,1,2,2,1,0,,1,2000.0,6,106966,2,2,2,0,1,,178.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,467.148788550668,314.0,32221.34387691134,5,5,0,1,121.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04366670755182889,21480.895917940896,6,3,6,6_1,6_2,6_0_0 +6962,2,86.0,0.0,2,111,400.0,700.0,0.0,0,78,0.0,0.0,682.0802173488245,1100.0,0.0,1328.9528335578523,70,0,0,0,0,0,0,0,0,0,,1,,2,106967,2,1,2,0,1,,160.0,,21,1.0,2.0,3.0,2.0,1.5,2,2,591.604087025609,400.0,83971.88838173187,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013099622042551393,55981.25892115458,10,5,10,10_1,10_4,10_0_1 +6963,2,64.0,0.0,2,111,1000.0,0.0,0.0,0,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,106968,2,1,1,0,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1071.50253579477,1000.0,41096.96702061888,0,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02433269587749108,41096.96702061888,9,5,9,9_1,9_4,9_0_1 +6964,2,66.0,0.0,5,111,450.0,0.0,0.0,75,74,2425.7705573841836,0.0,767.3402445174275,2750.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,106969,2,2,3,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,640.901899278032,450.0,45828.89885990289,5,5,0,1,105.0,7,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06000580569056743,30552.599239935258,8,4,8,8_1,8_2,8_0_0 +6965,2,59.0,0.0,1,111,330.0,1100.0,0.0,0,54,0.0,132.4327277010224,562.7161793127802,1530.0,0.0,2088.354452733768,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,106970,2,1,2,0,1,,210.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,1149.38626459497,330.0,24917.30658863829,0,1,0,1,90.0,5,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.061403105289784585,16611.53772575886,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +6966,2,54.0,0.0,6,111,300.0,0.0,0.0,0,56,2109.365702073203,0.0,511.56016301161833,2600.0,415.67676761895626,0.0,41,2,2,2,1,2,2,2,2,0,,1,,4,106971,1,2,2,0,2,,300.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,708.985873800917,300.0,9649.480838517124,0,1,0,1,90.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.2694445476923247,9649.480838517124,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6967,2,54.0,0.0,6,111,0.0,,,31,62,0.0,0.0,,306.0,131.6309764126695,,50,0,0,0,0,0,0,0,0,0,,1,,4,106972,2,1,0,0,2,,357.0,,43,2.0,2.0,4.0,5.0,2.5999999999999996,3,3,91.7460427960533,0.0,9053.84068274322,1,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033797811417561316,3482.2464164397006,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +6968,2,35.0,0.0,6,112,1000.0,0.0,0.0,0,54,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,4,106973,2,1,0,0,1,,146.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,2461.01178624309,1000.0,29208.25363602528,0,1,1,2,91.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03423689798306209,22467.887412327138,6,3,6,6_0,6_1,6_0_0 +6969,2,57.0,0.0,8,111,689.0,1837.0,0.0,37,45,0.0,92.70290939071567,1174.8831743833503,2596.0,0.0,3487.5519360653925,41,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,106974,2,1,1,0,1,,674.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,779.065795338777,689.0,95981.01503369608,4,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027047015486225286,63987.343355797384,10,5,10,10_1,10_4,10_0_0 +6970,2,58.0,0.0,8,111,1440.0,,,56,48,0.0,0.0,,1571.0,181.6507474494839,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,106975,2,1,0,0,1,,540.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,140.69453881684987,1440.0,57706.45265301584,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027223991906872077,28853.22632650792,8,4,8,8_1,8_2,8_0_0 +6971,1,42.0,474.0,2,111,450.0,350.0,0.0,0,56,0.0,0.0,767.3402445174275,800.0,0.0,664.4764167789261,71,0,0,0,0,0,0,0,0,0,,2,,2,106976,2,1,0,1,1,600.0,0.0,416.0,32,1.0,0.0,5.0,5.0,2.8,4,2,313.00261191339,450.0,18524.232708755022,0,4,2,3,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04318667404895533,6615.797395983936,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6972,2,61.0,0.0,1,111,1400.0,1700.0,0.0,0,90,0.0,0.0,2387.2807607208856,3100.0,0.0,3227.4568814976415,60,2,2,2,1,2,2,2,2,2,15.0,1,,1,106977,2,2,2,0,1,,240.0,406.0,12,1.0,3.0,4.0,1.0,1.0,1,1,417.586657171047,1400.0,24295.054990966808,0,1,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.12759798243521642,24295.054990966808,7,4,7,7_1,7_2,7_1_0 +6973,2,88.0,0.0,6,112,480.0,0.0,0.0,0,74,0.0,0.0,818.4962608185893,3180.0,3741.0909085706066,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,106978,2,1,2,0,1,,255.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,325.038626506652,480.0,34656.3194584589,0,5,0,1,150.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09175815694484622,34656.3194584589,9,5,9,9_1,9_0,9_0_0 +6974,2,48.0,0.0,1,111,990.0,1830.0,0.0,85,38,0.0,331.081819252556,1688.1485379383405,3070.0,0.0,3474.2624077298137,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,106979,2,1,1,0,1,,600.0,,42,1.0,1.0,10.0,4.0,2.3,3,2,352.390233717972,990.0,106794.47549189834,6,1,1,2,330.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028746805355422126,46432.38064865145,10,5,10,10_1,10_3,10_1_0 +6975,1,25.0,265.0,9,111,0.0,,,84,53,0.0,0.0,,1492.0,0.0,,43,0,0,0,0,0,0,0,0,1,15.0,2,2005.0,6,106980,2,1,0,0,1,,87.0,540.0,42,1.0,0.0,2.0,2.0,1.5,2,2,179.08501252923145,0.0,21091.53045934414,3,1,2,3,43.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07073929522923748,14061.020306229426,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +6976,1,62.0,130.0,1,111,0.0,0.0,0.0,67,78,0.0,0.0,0.0,1880.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,106981,1,2,2,0,2,,0.0,600.0,42,1.0,0.0,1.0,2.0,1.5,2,2,584.128458875546,0.0,6615.526845637585,4,5,3,4,35.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.28417993666516683,4410.351230425057,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +6977,2,52.0,0.0,9,112,1200.0,0.0,0.0,52,63,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,2005.0,6,106982,2,1,1,0,1,,160.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1129.5498633541,1200.0,38619.82364026667,1,1,1,2,90.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.031072125320345298,19309.911820133337,5,3,5,5_1,5_0,5_0_0 +6978,2,56.0,0.0,1,111,770.0,0.0,0.0,78,78,0.0,1190.5702220321914,1313.0044183964872,1979.0,429.5326598729215,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,106983,2,1,4,0,1,,465.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,268.996169989563,770.0,13099.747613153539,6,7,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15107161286167634,8733.165075435692,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +6979,2,66.0,0.0,6,111,760.0,,,78,75,0.0,0.0,,880.0,166.2707070475825,,60,0,0,0,0,0,0,0,0,0,,1,,4,106984,2,1,0,0,2,,800.0,,41,0.0,0.0,7.0,3.0,2.0,3,3,95.78190495397969,760.0,36674.55833435204,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02399483565629551,18337.27916717602,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +6980,2,61.0,0.0,1,112,600.0,0.0,0.0,77,72,2109.365702073203,264.8654554020448,1023.1203260232367,2900.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,106985,2,2,1,0,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1209.99665787691,600.0,16843.826354995734,6,5,0,1,100.0,9,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1721699059869425,11229.217569997156,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +6981,0,92.0,0.0,1,221,1100.0,0.0,0.0,77,78,1687.4925616585624,0.0,1875.7205977092674,2820.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,106986,2,1,0,1,1,,250.0,,41,0.0,7.0,3.0,2.0,1.5,2,2,653.034034429032,1100.0,39043.50131214214,5,5,0,1,100.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07222712884930245,26029.00087476143,7,4,7,7_0,7_1,7_1_0 +6982,2,76.0,0.0,2,112,535.0,0.0,0.0,77,78,1898.4291318658827,0.0,912.2822907040527,2335.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,106987,2,2,3,0,2,,310.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,586.915912414492,535.0,17940.33984376434,5,5,0,1,90.0,8,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1301536102623827,11960.22656250956,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +6983,1,64.0,30.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1116.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,106988,2,1,0,0,2,,177.0,210.0,11,0.0,4.0,2.0,1.0,1.0,1,1,4173.23303637721,0.0,11346.902228316918,0,5,2,3,43.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09835283476885444,11346.902228316918,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +6984,2,50.0,0.0,1,221,1100.0,0.0,0.0,37,90,1371.087706347582,271.4870917870959,1875.7205977092674,2605.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,180.0,1,,1,106989,2,1,1,0,1,,980.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,1560.86185812039,1100.0,87930.89220469556,1,1,1,2,245.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02962553813210247,31403.89007310556,8,4,8,8_1,8_1,8_1_0 +6985,2,28.0,0.0,9,111,0.0,0.0,0.0,37,21,0.0,0.0,0.0,2797.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,106990,2,1,1,0,1,,633.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,611.289430633832,0.0,175204.61367790806,1,1,1,2,145.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015964191474671652,97335.8964877267,10,5,10,10_1,10_3,10_0_0 +6986,2,77.0,0.0,1,120,350.0,0.0,0.0,78,72,949.2145659329414,2118.9236432163584,596.8201901802214,2940.0,124.70303028568689,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,106991,2,1,1,0,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,87.1903009894763,350.0,28276.763526393028,5,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.10397229503496241,18851.17568426202,5,3,5,5_1,5_0,5_1_0 +6987,1,32.0,210.0,2,111,180.0,576.0,0.0,85,53,0.0,0.0,306.936097806971,756.0,0.0,1093.5383316133184,50,2,1,2,2,1,2,2,2,2,22.0,8,,2,106992,2,1,0,1,1,672.0,360.0,310.0,42,1.0,0.0,4.0,3.0,1.8,2,2,363.495855898871,180.0,14479.435456004217,6,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05221198038398023,8044.130808891232,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +6989,2,90.0,0.0,5,111,269.0,92.0,0.0,0,75,0.0,0.0,458.69894616708444,1240.0,0.0,174.6623724104606,60,0,0,0,0,0,0,0,0,0,,2,,3,106994,1,3,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,749.248055212182,269.0,19345.47693157482,0,5,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06409767018853527,19345.47693157482,5,3,5,5_0,5_4,5_0_0 +6990,2,40.0,0.0,1,112,600.0,1350.0,0.0,55,62,0.0,0.0,1023.1203260232367,1950.0,0.0,2562.980464718715,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,106995,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,377.241256539344,600.0,48462.67455033176,1,1,1,2,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040237151954434405,32308.449700221172,8,4,8,8_1,8_1,8_1_0 +6991,2,49.0,0.0,7,112,1100.0,0.0,0.0,46,37,0.0,0.0,1875.7205977092674,1130.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,106996,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1840.34094614295,1100.0,63530.39157646624,1,1,1,2,95.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01778676271245571,27621.90938107228,7,4,7,7_1,7_1,7_0_0 +6992,2,61.0,0.0,5,111,300.0,448.0,0.0,0,78,0.0,0.0,511.56016301161833,1160.0,69.27946126982604,850.5298134770255,70,0,0,0,0,0,0,0,0,0,,2,,3,106997,2,1,0,1,1,598.0,0.0,257.0,11,0.0,2.0,4.0,1.0,1.0,1,1,579.783900808317,300.0,25808.777778154476,0,7,2,3,118.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04494594862147513,25808.777778154476,7,4,7,7_0,7_2,7_0_0 +6993,2,32.0,0.0,1,120,1644.0,0.0,0.0,43,47,0.0,0.0,2803.3496933036686,1708.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,106998,2,1,2,0,1,,321.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1500.13244616847,1644.0,49563.08470753001,1,1,1,2,80.0,0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034461131910550905,27535.047059738896,7,4,7,7_1,7_1,7_1_0 +6994,2,41.0,0.0,2,112,492.0,0.0,0.0,67,62,0.0,0.0,838.958667339054,1362.0,73.43622894601562,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,106999,1,3,0,1,1,245.0,0.0,318.0,43,3.0,1.0,4.0,4.0,2.3,3,3,760.107249398257,492.0,34752.52977006089,4,1,2,3,70.0,9,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03919139150478062,15109.79555220039,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +6995,2,65.0,0.0,5,112,461.0,881.0,0.0,86,77,0.0,0.0,786.0974504945202,1342.0,0.0,1672.582066234954,50,2,2,2,2,1,2,2,2,0,,1,,3,107000,2,2,5,0,1,,134.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1522.53536880613,461.0,29460.75886510413,5,5,0,1,83.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04555211921542119,19640.50591006942,5,3,5,5_1,5_2,5_0_0 +6996,0,79.0,0.0,1,112,840.0,0.0,0.0,77,77,0.0,211.89236432163582,1432.3684564325313,1114.0,157.95717169520339,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107001,2,2,3,0,1,,150.0,,41,0.0,9.0,5.0,2.0,1.5,2,2,1726.14297773015,840.0,30834.81285107992,5,5,5,0,70.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03612799615097987,20556.54190071995,5,3,5,5_1,5_0,5_1_0 +6997,2,50.0,0.0,1,111,1767.0,0.0,0.0,0,90,0.0,0.0,3013.0893601384323,1767.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,2,,1,107002,1,3,0,0,2,,0.0,980.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1285.53370374727,1767.0,19348.50373122679,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.09132489129628235,19348.50373122679,5,3,5,5_0,5_4,5_1_0 +6998,2,47.0,0.0,6,111,320.0,450.0,0.0,0,47,0.0,0.0,545.6641738790596,770.0,0.0,854.326821572905,31,2,2,1,2,1,2,2,2,2,15.0,2,,4,107003,2,3,0,0,1,,0.0,408.0,32,2.0,0.0,3.0,2.0,1.5,2,2,1312.46533474004,320.0,45126.976905567164,0,1,2,3,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.017062964390708115,30084.651270378108,8,4,8,8_0,8_3,8_0_0 +6999,2,83.0,0.0,1,112,0.0,0.0,0.0,86,86,0.0,1271.354185929815,0.0,1229.0,182.89777775234077,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107004,2,1,2,0,2,,190.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1664.65418206866,0.0,15079.203848909212,5,5,0,1,80.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08150297670317007,10052.802565939475,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7000,2,32.0,0.0,1,112,0.0,0.0,0.0,56,53,0.0,0.0,0.0,968.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,107005,2,1,1,0,1,,265.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,986.918251146334,0.0,48174.493884908254,1,1,1,2,120.0,10,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02009362054353098,32116.329256605502,8,4,8,8_1,8_0,8_1_0 +7001,1,33.0,253.0,7,111,0.0,,,0,62,0.0,0.0,,364.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,107006,2,1,0,0,2,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,146.26050022917173,0.0,15972.941941385685,0,1,3,4,35.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.022788538350401233,15972.941941385685,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +7002,2,71.0,0.0,2,120,648.0,,,0,86,0.0,0.0,,734.0,119.1606733841008,,71,0,0,0,0,0,0,0,0,0,,1,,2,107007,2,2,0,0,1,,240.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,94.9336267427484,648.0,13221.703211591894,0,5,0,1,80.0,0,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055514784158555194,13221.703211591894,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +7003,1,64.0,126.0,1,111,550.0,750.0,0.0,78,78,0.0,0.0,937.8602988546337,1300.0,0.0,1423.8780359548418,50,0,0,0,0,0,0,0,0,0,,1,,1,107008,2,2,4,0,1,,300.0,359.0,41,0.0,4.0,4.0,2.0,1.5,2,2,206.22795395853,550.0,18449.313089216732,5,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07046332802275576,12299.54205947782,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +7004,1,53.0,290.0,2,111,180.0,120.0,0.0,0,64,0.0,0.0,306.936097806971,300.0,0.0,227.8204857527747,20,2,2,2,2,2,2,2,1,2,30.0,2,,2,107009,1,3,0,1,2,612.0,0.0,266.0,32,1.0,0.0,3.0,3.0,1.8,2,2,388.9495124069,180.0,11292.662243276629,0,1,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.02656592338787185,6273.701246264794,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7005,0,80.0,0.0,7,111,780.0,,,0,86,0.0,0.0,,1044.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,107010,1,3,0,0,2,,600.0,,21,1.0,0.0,5.0,3.0,2.0,3,3,78.72395517876922,780.0,23108.886305279237,0,7,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04517742595676269,11554.443152639618,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +7006,2,57.0,0.0,2,112,599.0,,,63,77,0.0,0.0,,737.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,0,,1,,2,107011,1,3,0,0,2,,220.0,,42,1.0,5.0,4.0,2.0,1.5,2,2,117.0547500142049,599.0,42174.38682603699,1,5,1,2,65.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017475061416779198,28116.25788402466,8,4,8,8_1,8_2,8_0_1 +7007,2,84.0,0.0,5,111,2136.0,,,77,75,0.0,0.0,,2286.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,3,107012,2,2,0,0,2,,1118.0,,41,4.0,1.0,5.0,6.0,3.5,6,6,88.96695931565563,2136.0,71770.80068555352,6,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03185139329872546,20505.943053015293,5,3,5,5_1,5_2,5_0_0 +7008,0,73.0,0.0,2,111,800.0,,,71,72,0.0,0.0,,938.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,107013,2,2,0,0,2,,1000.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,114.92297737359058,800.0,23334.51441674754,7,5,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04019796526499746,15556.342944498361,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +7009,1,72.0,280.0,1,111,145.0,0.0,0.0,0,78,0.0,0.0,247.25407878894887,325.0,249.40606057137379,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,107014,1,2,0,0,2,,0.0,280.0,11,0.0,3.0,1.0,1.0,1.0,1,1,550.685141684646,145.0,10796.91645135901,0,5,2,3,25.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.030101186895735606,10796.91645135901,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +7010,2,87.0,0.0,1,211,228.0,0.0,0.0,0,77,1582.0242765549024,0.0,388.7857238888299,1766.0,52.6523905650678,0.0,71,2,2,2,2,1,2,1,2,0,,1,,1,107015,2,3,2,0,1,,252.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,960.428166351675,228.0,14893.958216548926,0,5,0,1,60.0,1,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.11857156937890209,14893.958216548926,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +7011,2,50.0,0.0,2,111,350.0,800.0,0.0,0,63,0.0,0.0,596.8201901802214,1150.0,0.0,1518.8032383518312,71,2,2,2,2,1,2,2,2,1,10.0,2,,2,107016,1,2,0,0,2,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2049.51035723045,350.0,15770.505194746038,0,1,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.07292093600039673,15770.505194746038,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7012,2,73.0,0.0,8,112,520.0,0.0,0.0,75,75,0.0,0.0,886.7042825534718,640.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,107017,2,1,1,0,1,,330.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1608.07683884857,520.0,29071.79903700006,5,5,0,1,109.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022014461478130874,19381.199358000038,5,3,5,5_1,5_1,5_0_0 +7013,1,35.0,190.0,1,120,496.0,0.0,0.0,0,21,2109.365702073203,0.0,845.7794695125424,2496.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,107018,2,1,3,0,2,,249.0,420.0,32,1.0,0.0,3.0,2.0,1.5,2,1,96.2411829391777,496.0,14865.962826653606,0,4,2,3,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1679003256704538,9910.641884435738,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +7014,2,65.0,0.0,6,111,370.0,780.0,0.0,0,77,0.0,0.0,630.9242010476627,1150.0,0.0,1480.8331573930354,70,0,0,0,0,0,0,0,0,0,,1,,4,107019,2,1,2,0,1,,260.0,320.0,11,0.0,5.0,2.0,1.0,1.0,1,1,229.821933064646,370.0,18631.571989245815,0,5,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06172318689286028,18631.571989245815,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7015,2,82.0,0.0,1,111,120.0,60.0,0.0,86,86,0.0,0.0,204.62406520464734,180.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,0,,2,,1,107020,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,221.993803391632,120.0,31510.60480462289,5,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005712362587645172,21007.069869748593,5,3,5,5_0,5_4,5_1_0 +7016,1,77.0,315.0,2,111,600.0,220.0,0.0,68,78,0.0,0.0,1023.1203260232367,820.0,0.0,417.6708905467536,71,2,1,2,2,1,2,2,2,0,,2,,2,107021,2,1,0,1,1,1000.0,1020.0,393.0,42,3.0,0.0,5.0,6.0,3.5,6,6,338.939232606694,600.0,13753.354469356267,1,5,2,3,100.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.059621818213660895,3929.529848387505,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7017,2,54.0,0.0,6,111,394.0,990.0,0.0,78,43,0.0,0.0,671.8490140885921,1384.0,0.0,1879.519007460391,33,0,0,0,0,0,0,0,0,2,10.0,1,,4,107022,2,1,1,0,1,,235.0,,42,1.0,7.0,5.0,2.0,1.5,2,2,1222.08508213088,394.0,55637.711978541025,5,1,1,2,95.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024875214144927393,37091.80798569402,9,5,9,9_1,9_2,9_0_0 +7018,2,59.0,0.0,5,112,1000.0,0.0,0.0,56,69,1160.1511361402618,397.2981831030672,1705.2005433720612,2450.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,107023,2,2,2,0,1,,120.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,300.108911530643,1000.0,49069.953888893,4,1,0,1,108.0,7,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04992872024187001,32713.30259259533,8,4,8,8_1,8_0,8_0_0 +7019,2,83.0,0.0,7,111,452.0,,,0,75,0.0,0.0,,590.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,1,,5,107024,2,2,0,0,2,,310.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,87.4216980208191,452.0,16866.28334003502,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03498103216370933,11244.18889335668,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7020,0,85.0,0.0,2,211,272.0,,,0,77,0.0,0.0,,404.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,107025,1,1,0,0,2,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,102.81427528991169,272.0,6453.091843399954,0,5,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06260564854864109,6453.091843399954,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +7021,2,68.0,0.0,6,111,444.0,0.0,0.0,77,75,0.0,0.0,757.1090412571951,1703.0,1744.45683477422,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,107026,2,1,1,0,1,,229.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,945.934260372309,444.0,20829.653807618546,5,5,0,1,95.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08175843994954538,13886.435871745698,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +7022,2,81.0,0.0,2,111,0.0,0.0,1427.0,85,77,0.0,0.0,899.4642004218393,1427.0,0.0,1707.7367745747995,71,2,2,2,1,1,2,2,2,0,,1,,2,107027,2,2,1,0,1,,300.0,481.0,41,0.0,0.0,4.0,2.0,1.5,2,2,370.751699528593,0.0,18810.578546572015,7,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0758615688755651,12540.385697714677,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +7023,2,43.0,0.0,1,111,612.0,1110.0,0.0,0,52,0.0,0.0,1043.5827325437015,1722.0,0.0,2107.339493213166,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,107028,1,3,1,0,1,,578.0,290.0,22,4.0,0.0,5.0,4.0,2.5,4,4,396.931795068816,612.0,58164.14353651809,0,1,2,3,89.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029605868758625326,23265.657414607234,6,3,6,6_1,6_2,6_1_0 +7024,1,48.0,283.0,2,111,250.0,0.0,0.0,0,47,0.0,0.0,426.3001358430153,407.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,107029,2,1,0,1,1,720.0,0.0,350.0,12,1.0,2.0,2.0,1.0,1.0,1,1,255.553192439627,250.0,12171.0,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03344014460603073,12171.0,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +7025,2,73.0,0.0,9,111,384.0,684.0,0.0,0,77,0.0,0.0,654.7970086548714,1068.0,0.0,1298.5767687908158,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,107030,2,1,0,0,1,,161.0,405.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1862.44855264571,384.0,33533.8556532055,0,5,2,3,71.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031848410485357054,33533.8556532055,8,4,8,8_0,8_2,8_0_0 +7026,1,30.0,125.0,5,111,192.0,0.0,0.0,0,52,0.0,0.0,327.3985043274357,192.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,2,,3,107031,2,2,0,1,1,600.0,0.0,392.0,32,1.0,0.0,3.0,2.0,1.3,1,1,409.885749211003,192.0,19700.81940880842,0,1,2,3,79.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00974578752364762,15154.47646831417,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +7027,2,45.0,0.0,5,111,700.0,,,0,21,0.0,0.0,,763.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,3,107032,1,2,0,0,2,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,138.07963716204168,700.0,46681.76747562818,0,4,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016344711035167003,46681.76747562818,10,5,10,10_1,10_2,10_0_0 +7028,2,54.0,0.0,9,211,540.0,,,0,63,0.0,0.0,,760.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,107033,2,1,0,0,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,123.81451635600042,540.0,2057.0,0,4,0,1,95.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.36947010209042297,2057.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7029,2,59.0,0.0,7,111,490.0,1031.0,0.0,0,54,0.0,158.91927324122688,835.54826625231,1641.0,0.0,1957.3576734259225,31,0,0,0,0,0,0,0,0,2,8.0,1,,5,107034,2,2,2,0,1,,205.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,946.658792251549,490.0,50048.65929469892,0,1,0,1,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03278809109225854,33365.77286313261,8,4,8,8_1,8_3,8_0_0 +7030,2,33.0,0.0,7,120,0.0,,,0,31,0.0,0.0,,540.0,0.0,,10,0,0,0,0,0,0,0,0,2,2.0,1,,5,107035,2,1,0,0,2,,169.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,117.28678310103706,0.0,88258.12059892724,0,1,1,2,163.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006118417164738081,88258.12059892724,10,5,10,10_1,10_2,10_0_0 +7031,1,32.0,391.0,2,111,240.0,120.0,0.0,0,85,0.0,0.0,409.2481304092947,360.0,0.0,227.8204857527747,42,0,0,0,0,0,0,0,0,0,,2,,2,107036,2,2,0,1,1,1020.0,0.0,348.0,31,0.0,0.0,4.0,4.0,1.9,1,1,235.603480343325,240.0,2240.052155511172,0,6,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1607105437765351,1178.9748186900904,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +7032,0,31.0,0.0,2,111,0.0,,,0,68,0.0,0.0,,430.0,0.0,,71,0,0,0,0,0,0,0,0,2,35.0,1,,2,107037,2,1,0,0,2,,836.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,42.87560842879176,0.0,34459.49503779985,0,1,5,0,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0124784184889627,21537.184398624904,6,3,6,6_1,6_2,6_0_1 +7033,2,58.0,0.0,2,111,0.0,0.0,1000.0,56,64,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,50,2,2,2,1,1,2,2,2,2,25.0,2,,2,107038,1,3,0,1,1,600.0,0.0,358.0,43,2.0,3.0,4.0,4.0,2.5,4,4,404.850439224998,0.0,24457.784025021632,1,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.04088677858046935,9783.113610008653,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +7034,1,47.0,434.0,5,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,238.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,107039,1,3,0,1,1,600.0,0.0,454.0,32,2.0,0.0,5.0,4.0,2.3,3,2,263.336216337854,0.0,26357.979603115484,0,4,2,3,87.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009029523642694855,11459.991131789342,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7035,2,75.0,0.0,1,111,270.0,1050.0,0.0,0,77,0.0,0.0,460.40414671045653,1320.0,0.0,1993.4292503367785,70,0,0,0,0,0,0,0,0,0,,1,,1,107040,1,2,3,0,2,,145.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1471.78384851886,270.0,17094.676112450616,0,5,0,1,58.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07721702308466673,17094.676112450616,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +7036,2,58.0,0.0,1,300,250.0,0.0,0.0,0,62,1054.6828510366015,0.0,426.3001358430153,1310.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,107041,1,3,4,0,2,,260.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,816.899635302752,250.0,21534.79704547138,0,1,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06083177831831408,21534.79704547138,6,3,6,6_1,6_0,6_1_0 +7037,1,78.0,264.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,275.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107042,2,1,0,1,1,1312.0,636.0,373.0,11,0.0,4.0,3.0,1.0,1.0,1,1,248.153205988536,0.0,7631.368257233742,0,6,2,3,78.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036035477614296575,7631.368257233742,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7038,1,41.0,721.0,5,111,390.0,0.0,0.0,68,68,0.0,0.0,665.0282119151038,390.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,10.0,2,,3,107043,2,2,0,1,1,,0.0,833.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,828.555088362892,390.0,42970.96139705462,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.009075896543164892,15915.170887798009,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +7039,2,65.0,0.0,2,111,560.0,,,0,77,0.0,0.0,,698.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,107044,2,2,0,0,2,,300.0,200.0,11,0.0,6.0,4.0,1.0,1.0,1,1,93.10028634761764,560.0,15136.887803113033,0,5,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046112517254468265,15136.887803113033,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +7040,1,30.0,276.0,2,111,165.0,165.0,0.0,55,63,455.6229916478119,0.0,281.3580896563901,762.0,0.0,313.2531679100652,31,0,0,0,0,0,0,0,0,0,,2,,2,107045,2,1,0,1,1,36.0,0.0,264.0,43,2.0,0.0,3.0,2.0,1.5,2,2,458.249871212585,165.0,7601.719844070817,4,4,2,3,60.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10024047394937136,5067.813229380545,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7041,2,56.0,0.0,1,400,1419.0,0.0,0.0,42,47,1371.087706347582,0.0,2419.6795710449546,2784.0,90.06329965077386,0.0,31,0,0,0,0,0,0,0,0,2,9.0,1,,1,107046,2,1,2,0,2,,136.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,994.260703035935,1419.0,71015.71231563116,1,1,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03920259206337945,47343.80821042077,10,5,10,10_1,10_0,10_1_0 +7042,2,29.0,0.0,9,112,12.0,25.0,0.0,37,38,0.0,0.0,20.462406520464732,37.0,0.0,47.462601198494724,12,0,0,0,0,0,0,0,0,2,55.0,2,2006.0,6,107047,2,1,0,0,1,,215.0,695.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2837.77785689636,12.0,69511.62651410689,1,1,2,3,69.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0005322850558315034,46341.08434273792,10,5,10,10_0,10_1,10_0_0 +7043,2,86.0,0.0,2,111,0.0,0.0,2877.0,86,74,0.0,0.0,1813.4257215232178,2877.0,0.0,3442.9983885435868,50,0,0,0,0,0,0,0,0,0,,1,,2,107048,2,1,2,0,1,,360.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,366.085777285003,0.0,48863.97031351629,6,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05887773714540325,32575.98020901086,8,4,8,8_1,8_3,8_0_1 +7044,1,62.0,170.0,5,112,480.0,0.0,0.0,0,72,0.0,0.0,818.4962608185893,612.0,182.89777775234077,0.0,31,2,2,2,1,2,2,2,2,0,,1,,3,107049,2,1,2,0,1,,160.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1711.64736540964,480.0,13006.626589701013,0,5,1,2,72.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.047052938421757846,13006.626589701013,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +7045,2,62.0,0.0,2,111,150.0,110.0,0.0,0,75,0.0,0.0,255.78008150580916,260.0,0.0,208.8354452733768,50,2,1,2,2,2,2,2,1,0,,2,,2,107050,2,3,0,1,1,38.0,85.0,256.0,11,0.0,3.0,3.0,1.0,1.0,1,1,387.353023651667,150.0,22039.748196127202,0,5,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011796867989884153,22039.748196127202,6,3,6,6_0,6_2,6_0_1 +7046,2,44.0,0.0,2,111,800.0,0.0,0.0,0,54,0.0,0.0,1364.160434697649,800.0,0.0,0.0,10,2,2,1,2,1,2,2,2,3,60.0,8,,2,107051,2,2,0,0,1,,0.0,,32,1.0,0.0,2.0,2.0,1.5,2,1,1351.30902241376,800.0,29878.80786618814,0,1,1,2,20.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026774829959173397,19919.205244125427,5,3,5,5_0,5_4,5_0_1 +7047,1,40.0,210.0,2,111,398.0,,,52,56,0.0,0.0,,498.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,107052,1,3,0,0,2,,425.0,400.0,43,2.0,0.0,4.0,2.0,1.5,2,2,88.21738448616928,398.0,9294.60330613573,4,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0535794787144117,6196.4022040904865,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7048,2,28.0,0.0,5,111,410.0,467.0,0.0,0,53,0.0,0.0,699.1322227825451,877.0,0.0,886.6013903878815,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,107053,1,3,0,0,1,,280.0,313.0,12,1.0,1.0,3.0,1.0,1.0,1,1,301.50290328319,410.0,15447.897492289634,0,1,2,3,67.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.056771479771776635,15447.897492289634,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7049,1,44.0,70.0,9,111,396.0,,,0,56,0.0,0.0,,419.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,107054,2,2,0,0,2,,257.0,289.0,12,1.0,0.0,2.0,1.0,1.0,1,1,90.17623797282018,396.0,14031.193375768104,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02986203587811809,14031.193375768104,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +7050,2,52.0,0.0,5,300,0.0,0.0,0.0,85,85,0.0,0.0,0.0,436.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107055,2,3,3,0,2,,511.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,908.106469755322,0.0,23957.52697067294,6,7,0,1,70.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018198873386794864,15971.684647115295,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7051,2,72.0,0.0,2,111,1080.0,560.0,0.0,77,78,0.0,0.0,1841.6165868418261,1640.0,0.0,1063.162266846282,71,2,2,2,2,1,2,2,2,0,,2,,2,107056,2,2,0,0,1,,0.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,1484.85032382785,1080.0,57495.348010037116,5,5,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.02852404684486301,28747.674005018558,8,4,8,8_0,8_3,8_0_1 +7052,2,69.0,0.0,2,111,1400.0,0.0,0.0,77,78,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107057,2,1,2,0,1,,240.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,302.485031239924,1400.0,35458.07937324896,5,5,0,1,64.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03948324400943774,23638.719582165973,6,3,6,6_1,6_3,6_0_1 +7053,2,57.0,0.0,6,300,1000.0,2000.0,0.0,43,37,0.0,529.7309108040896,1705.2005433720612,3400.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,2,3.0,1,,4,107058,2,1,2,0,1,,450.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1407.54252674622,1000.0,89603.05615923453,1,1,0,1,200.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03794513430387714,59735.37077282302,10,5,10,10_1,10_0,10_0_0 +7054,2,33.0,0.0,2,111,334.0,455.0,0.0,0,68,0.0,0.0,569.5369814862685,789.0,0.0,863.819341812604,71,1,2,2,1,1,2,2,1,1,15.0,2,,2,107059,1,1,0,0,1,,0.0,307.0,12,1.0,1.0,3.0,1.0,1.0,1,1,509.260038353041,334.0,14571.605410161821,0,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05414640170325872,14571.605410161821,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7055,2,28.0,0.0,2,111,0.0,0.0,800.0,85,63,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,107060,1,2,0,0,2,,0.0,233.0,42,1.0,0.0,3.0,3.0,1.8,2,2,358.008993660696,0.0,21487.403247129616,6,1,2,3,39.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03723111586817116,11937.446248405342,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +7056,0,67.0,0.0,6,111,1809.0,0.0,0.0,0,74,0.0,79.45963662061344,3084.7077829600585,1899.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,107061,2,1,2,0,1,,196.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1370.69265391957,1809.0,54278.236866825406,0,5,0,1,150.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03498639804124993,54278.236866825406,10,5,10,10_1,10_2,10_0_0 +7057,1,45.0,186.0,5,111,300.0,60.0,0.0,0,54,0.0,0.0,511.56016301161833,360.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,107062,2,2,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,2108.41631650888,300.0,18708.67072908458,0,1,1,2,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.019242414665000353,12472.447152723054,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7058,2,35.0,0.0,2,111,360.0,0.0,0.0,0,52,0.0,0.0,613.872195613942,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,107063,2,1,0,1,1,,480.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,378.586950925926,360.0,27087.6982836982,0,1,1,2,75.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013290165750873474,16929.81142731137,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +7059,2,50.0,0.0,2,111,300.0,240.0,0.0,0,85,885.9335948707453,0.0,511.56016301161833,1380.0,0.0,455.6409715055494,31,1,2,2,2,1,2,2,2,0,,2,,2,107064,2,3,0,1,1,840.0,0.0,675.0,31,0.0,1.0,4.0,2.0,1.5,2,2,293.773563284645,300.0,14068.342658448428,0,7,2,3,64.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.09809257803166117,9378.895105632286,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +7060,2,42.0,0.0,9,112,960.0,0.0,0.0,43,47,253.12388424878438,0.0,1636.9925216371787,1200.0,0.0,0.0,31,2,1,2,1,2,2,2,2,2,15.0,1,2004.0,6,107065,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,763.591007403195,960.0,54196.732182091044,1,1,0,1,115.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.0221415563574612,25807.967705757637,7,4,7,7_1,7_0,7_0_0 +7061,2,78.0,0.0,1,300,570.0,,,0,78,0.0,0.0,,834.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,1,107066,2,2,0,0,2,,240.0,,11,0.0,10.0,5.0,1.0,1.0,1,1,94.88346375469598,570.0,10959.0,0,5,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07610183410895155,10959.0,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +7062,2,74.0,0.0,2,120,1200.0,0.0,0.0,86,11,0.0,0.0,2046.2406520464733,1600.0,554.2356901586083,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107067,2,1,4,0,2,,90.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,247.90007591583,1200.0,17360.508002308274,5,1,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09216320166364153,11573.67200153885,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +7063,2,67.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107068,2,2,0,1,1,,100.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1657.48383753296,300.0,33507.105496015305,0,5,0,1,92.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008953324841373608,33507.105496015305,8,4,8,8_0,8_3,8_0_1 +7064,2,69.0,0.0,2,111,550.0,0.0,0.0,0,77,0.0,0.0,937.8602988546337,550.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,107069,1,2,0,0,2,,161.0,456.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1835.46421422769,550.0,17631.846179788696,0,5,2,3,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.031193557066670787,17631.846179788696,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +7065,1,51.0,377.0,2,111,700.0,0.0,0.0,85,85,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107070,1,3,0,1,2,60.0,300.0,409.0,41,1.0,3.0,4.0,5.0,2.8,4,3,669.104346649929,700.0,28866.37575548479,6,7,2,3,83.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024249667014987,10309.41991267314,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7066,1,28.0,270.0,9,111,193.0,0.0,0.0,0,81,0.0,0.0,329.1037048708078,193.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2010.0,6,107071,2,1,0,1,1,206.0,150.0,287.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1265.85115877754,193.0,11161.14764320297,0,4,2,3,49.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.017292128566862488,11161.14764320297,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7067,1,55.0,243.0,2,211,270.0,700.0,0.0,0,77,0.0,0.0,460.40414671045653,970.0,0.0,1328.9528335578523,70,0,0,0,0,0,0,0,0,0,,8,,2,107072,2,1,0,0,1,,300.0,270.0,11,0.0,3.0,4.0,1.0,1.0,1,1,2019.04688321292,270.0,11937.031044902682,0,7,2,3,65.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08125973672609377,11937.031044902682,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +7068,2,50.0,0.0,5,111,500.0,,,78,52,0.0,0.0,,625.0,173.19865317456512,,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,107073,2,2,0,0,2,,300.0,459.0,42,2.0,1.0,4.0,3.0,2.0,3,3,154.1973947813894,500.0,12032.565765334888,7,1,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05194237141014331,6016.282882667444,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +7069,2,60.0,0.0,1,111,730.0,1100.0,0.0,75,37,0.0,0.0,1244.7963966616046,1830.0,0.0,2088.354452733768,20,0,0,0,0,0,0,0,0,2,40.0,1,,1,107074,2,1,2,0,1,,540.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,492.071130852758,730.0,102121.02424379585,5,1,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017919914273785576,68080.68282919723,10,5,10,10_1,10_4,10_1_0 +7070,2,67.0,0.0,9,300,980.0,0.0,0.0,75,74,0.0,92.70290939071567,1671.09653250462,1050.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2004.0,6,107075,2,1,1,0,1,,235.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1764.24296723056,980.0,119065.74048662797,5,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008818657623163428,79377.16032441864,10,5,10,10_1,10_0,10_0_0 +7071,2,35.0,0.0,1,111,600.0,0.0,0.0,0,63,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,107076,2,3,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1898.34968519281,600.0,70744.21830557904,0,4,1,2,31.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008481258459996055,70744.21830557904,10,5,10,10_0,10_3,10_1_0 +7072,2,43.0,0.0,2,111,85.0,,,21,52,0.0,0.0,,385.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,107077,1,3,0,0,2,,73.0,900.0,43,4.0,0.0,5.0,7.0,3.8,6,5,105.92597110094013,85.0,42327.08655382303,1,4,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00909583038535938,11138.706987848165,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +7073,2,66.0,0.0,5,111,1082.0,0.0,0.0,0,78,0.0,728.3800023556231,1845.0269879285702,1757.0,173.19865317456512,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107078,2,2,2,0,1,,244.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,581.031279978943,1082.0,23825.178314549186,0,5,0,1,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07374551312075858,15883.452209699457,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +7074,2,38.0,0.0,1,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,667.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,1,107079,1,1,0,1,2,72.0,0.0,2750.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1567.82421607896,0.0,118834.60682710251,6,1,2,3,98.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0056128430750012615,56587.90801290596,10,5,10,10_0,10_4,10_1_0 +7075,1,49.0,125.0,5,111,2184.0,0.0,0.0,52,21,0.0,0.0,3724.1579867245814,2184.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,107080,2,2,3,0,1,,936.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,4,3,989.012231800895,2184.0,35281.77825045995,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.061901641819074926,11381.218790470954,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +7076,2,72.0,0.0,2,120,600.0,0.0,0.0,86,78,843.7462808292812,0.0,1023.1203260232367,1580.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107081,2,1,2,0,1,,300.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,98.0886154547178,600.0,41217.25436596897,6,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03833346069030079,20608.627182984485,5,3,5,5_1,5_0,5_0_1 +7077,2,57.0,0.0,1,211,533.0,1635.0,0.0,56,42,0.0,0.0,908.8718896173086,2168.0,0.0,3104.054118381555,31,0,0,0,0,0,0,0,0,1,5.0,1,,1,107082,2,2,3,0,1,,623.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1631.06651767219,533.0,38843.836129272495,1,1,0,1,140.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055813231030655275,16888.62440403152,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7078,2,78.0,0.0,1,221,880.0,800.0,0.0,86,78,0.0,0.0,1500.5764781674138,1800.0,166.2707070475825,1518.8032383518312,71,2,2,2,1,2,2,2,2,0,,1,,1,107083,1,2,2,0,1,,120.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,260.140317768899,880.0,14942.32260133809,6,5,0,1,80.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.12046320026839799,9961.54840089206,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +7079,2,58.0,0.0,1,111,574.0,812.0,0.0,0,45,0.0,0.0,978.7851118955631,1386.0,0.0,1541.5852869271087,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,107084,2,2,0,0,1,,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,1,1,453.775892801968,574.0,36804.941741775445,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03765798652051175,36804.941741775445,9,5,9,9_0,9_4,9_1_0 +7080,2,61.0,0.0,5,111,1200.0,,,85,21,0.0,0.0,,1440.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,3,107085,1,2,0,0,2,,420.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,83.26335569929125,1200.0,5598.247351687003,6,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2572233610874774,2799.1236758435016,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +7081,2,60.0,0.0,5,111,200.0,520.0,0.0,0,52,0.0,0.0,341.04010867441224,720.0,0.0,987.2221049286903,50,0,0,0,0,0,0,0,0,2,4.0,2,,3,107086,2,2,0,0,1,,242.0,326.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1395.24067010537,200.0,13366.147406380467,0,1,2,3,63.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05386742926808518,13366.147406380467,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +7082,2,82.0,0.0,6,112,420.0,0.0,0.0,86,75,0.0,0.0,716.1842282162656,1520.0,1524.148147936173,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,107087,2,1,3,0,1,,145.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,517.371249286162,420.0,47905.997481823084,6,5,0,1,92.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0317288039055388,31937.33165454872,8,4,8,8_1,8_1,8_0_0 +7083,2,47.0,0.0,6,400,1200.0,0.0,0.0,56,62,0.0,0.0,2046.2406520464733,1350.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,107088,1,1,2,0,1,,550.0,,43,3.0,0.0,7.0,5.0,2.5999999999999996,3,3,2185.27599892468,1200.0,38321.17717153477,1,1,1,2,140.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035228562889837035,14738.914296744144,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7084,1,64.0,98.0,2,111,360.0,600.0,0.0,0,77,0.0,0.0,613.872195613942,960.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,107089,2,1,0,0,1,,0.0,177.0,11,0.0,1.0,1.0,1.0,1.0,1,1,339.260459479085,360.0,11682.667674126787,0,5,2,3,39.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08217301277225234,11682.667674126787,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7085,0,30.0,0.0,7,111,0.0,,,42,43,0.0,0.0,,352.0,0.0,,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,107090,2,2,0,0,2,,253.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,125.83512430532878,0.0,21292.0,4,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01653203080969378,14194.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +7086,2,63.0,0.0,1,111,1100.0,0.0,0.0,77,74,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107091,2,1,4,0,1,,330.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1097.89992045265,1100.0,50194.969220191306,5,5,0,1,160.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021914546758154334,33463.31281346087,8,4,8,8_1,8_2,8_1_0 +7087,1,39.0,218.0,1,111,0.0,0.0,1200.0,85,53,0.0,184.0814915044211,756.3819484976925,1339.0,0.0,1436.078577077617,50,1,2,2,1,1,2,2,2,0,,2,,1,107092,2,3,0,0,1,,516.0,530.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1717.41289156209,0.0,26322.02991277101,6,1,2,3,106.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.05086993687178889,12534.299958462385,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +7088,2,55.0,0.0,6,112,0.0,,,63,52,0.0,0.0,,358.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,2,1.0,1,,4,107093,2,2,0,0,2,,600.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,146.88096156522872,0.0,52972.823517344106,1,1,0,1,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0067581823325461475,26486.411758672053,7,4,7,7_1,7_1,7_0_0 +7089,2,84.0,0.0,6,111,300.0,300.0,0.0,0,86,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,4,107094,2,1,0,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,637.782615070725,300.0,13762.858558864791,0,5,0,1,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04359559443510623,13762.858558864791,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +7090,2,21.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,369.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,1,107095,2,1,0,0,1,,0.0,880.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1285.62868866082,0.0,59241.59186918595,0,1,3,4,32.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006228732016769665,59241.59186918595,10,5,10,10_0,10_4,10_1_0 +7091,1,37.0,253.0,9,211,250.0,,,52,65,0.0,0.0,,376.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,107096,2,2,0,0,1,,300.0,416.0,43,2.0,0.0,2.0,2.0,1.5,2,2,149.56531312745932,250.0,7285.048696423714,4,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05161255822278597,4856.699130949143,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7093,2,35.0,0.0,2,111,0.0,0.0,2941.0,52,64,0.0,0.0,1853.7660921097615,2941.0,0.0,3519.5892459877264,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,107098,2,2,3,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,590.252530871598,0.0,48560.08201090093,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06056414812766985,23123.84857661949,6,3,6,6_1,6_4,6_0_1 +7094,2,48.0,0.0,8,112,1400.0,0.0,0.0,45,53,0.0,794.5963662061343,2387.2807607208856,2000.0,0.0,0.0,41,2,2,1,2,1,2,2,2,2,45.0,1,2001.0,6,107099,2,1,2,0,1,,1514.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,471.759123774436,1400.0,88830.32483573965,1,1,1,2,150.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02251483379913666,31725.116012764163,8,4,8,8_1,8_2,8_0_0 +7095,2,63.0,0.0,1,112,2248.0,0.0,0.0,77,74,0.0,0.0,3833.2908215003936,2368.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107100,2,1,1,0,1,,420.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1531.54869464464,2248.0,48210.71667808201,5,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04911770998576674,32140.477785388008,8,4,8,8_1,8_0,8_1_0 +7096,2,56.0,0.0,1,111,2100.0,0.0,0.0,77,72,0.0,3972.981831030672,3580.9211410813286,5160.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,107101,2,1,1,0,1,,598.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1000.20977573992,2100.0,55630.718009115604,7,7,1,2,120.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0927545101818475,37087.1453394104,9,5,9,9_1,9_3,9_1_0 +7097,1,51.0,110.0,2,111,600.0,250.0,0.0,22,47,0.0,0.0,1023.1203260232367,850.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,3,120.0,2,,2,107102,2,1,0,1,1,,0.0,680.0,43,2.0,0.0,4.0,3.0,1.8,2,2,206.61996600047,600.0,22582.825655478035,1,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03763922252102279,12546.014253043351,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +7098,2,37.0,0.0,7,111,1200.0,,,46,52,0.0,0.0,,1288.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,107103,1,2,0,0,2,,300.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,105.96297165708928,1200.0,45799.08460761036,1,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028122832825920173,25443.935893116868,7,4,7,7_1,7_2,7_0_0 +7099,0,82.0,0.0,6,112,142.0,0.0,0.0,0,78,0.0,0.0,242.1384771588327,3395.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,107104,2,1,2,0,1,,121.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,2417.25147908745,142.0,26028.0,0,5,5,0,90.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13043645305056092,26028.0,7,4,7,7_1,7_0,7_0_0 +7100,0,80.0,0.0,1,112,1161.6,0.0,0.0,0,11,0.0,0.0,1980.760951180986,4292.0,4336.89427549111,0.0,70,2,2,1,1,1,2,2,2,0,,5,,1,107105,1,1,3,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,216.526924964161,1161.6,13585.570707442415,0,5,0,1,85.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.31592342290403497,13585.570707442415,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7101,1,43.0,350.0,1,120,0.0,0.0,0.0,52,56,0.0,0.0,0.0,1587.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,107106,2,1,2,0,1,,677.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2984.20009682155,0.0,19372.205338848635,4,1,2,3,115.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08192149382277411,10762.336299360353,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +7102,2,61.0,0.0,5,112,700.0,0.0,0.0,77,78,0.0,490.00109249378283,1193.6403803604428,1140.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107107,2,1,2,0,1,,430.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1141.63654440029,700.0,47228.98038119707,5,5,1,2,90.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0241377220257302,31485.98692079805,8,4,8,8_1,8_1,8_0_0 +7103,2,51.0,0.0,6,111,429.0,896.0,0.0,0,45,0.0,0.0,731.5310331066142,1325.0,0.0,1701.059626954051,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,107108,2,1,1,0,1,,240.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,232.506114720669,429.0,18386.5445356573,0,1,1,2,89.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0720635678678181,18386.5445356573,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7104,2,41.0,0.0,1,112,1400.0,2200.0,0.0,37,31,0.0,158.91927324122688,2387.2807607208856,3720.0,0.0,4176.708905467536,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,107109,2,1,1,0,1,,740.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,147.556889867924,1400.0,133772.65594571602,1,1,1,2,200.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02780837364483179,55738.60664404834,10,5,10,10_1,10_0,10_1_0 +7105,1,23.0,357.0,7,221,0.0,,,0,52,0.0,0.0,,282.0,0.0,,42,0,0,0,0,0,0,0,0,2,15.0,2,,5,107110,1,1,0,0,2,,312.0,447.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.66213593050543,0.0,15664.552211651751,0,1,2,3,66.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018002429701772144,12049.655547424423,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +7106,2,74.0,0.0,2,112,480.0,0.0,0.0,86,75,0.0,0.0,818.4962608185893,480.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,107111,2,1,0,0,1,,0.0,308.0,41,0.0,1.0,3.0,2.0,1.5,2,2,851.456387666244,480.0,20286.431557837317,5,5,2,3,62.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023661135209093003,13524.287705224879,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +7107,2,35.0,0.0,2,111,240.0,120.0,0.0,0,85,0.0,0.0,409.2481304092947,360.0,0.0,227.8204857527747,41,0,0,0,0,0,0,0,0,0,,2,,2,107112,1,1,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1608.06728424993,240.0,30485.290319310396,0,7,0,1,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011808973974965364,30485.290319310396,8,4,8,8_0,8_3,8_0_1 +7108,2,57.0,0.0,8,112,950.0,0.0,0.0,52,63,0.0,370.8116375628627,1619.9405162034582,1294.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,107113,2,2,1,0,1,,247.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,834.883219122145,950.0,38931.15319971474,1,1,1,2,109.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03323816259338245,25954.10213314316,7,4,7,7_1,7_0,7_0_0 +7109,2,56.0,0.0,9,221,740.0,1100.0,0.0,52,62,0.0,0.0,1261.8484020953254,1840.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,107114,2,1,1,0,1,,200.0,,43,4.0,3.0,7.0,5.0,3.0,5,4,1510.13275623914,740.0,69896.309417941,1,1,1,2,130.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02632470891986335,23298.769805980333,6,3,6,6_1,6_1,6_0_0 +7110,2,51.0,0.0,1,221,1946.0,0.0,0.0,85,38,0.0,463.51454695357836,3318.320257402031,2418.0,169.04188549837556,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,,1,107115,2,1,2,0,1,,2400.0,,42,1.0,0.0,9.0,6.0,3.3,5,3,526.46259226409,1946.0,67552.69862222255,6,1,0,1,230.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03579427690257454,20470.514734006836,5,3,5,5_1,5_1,5_1_0 +7111,0,43.0,0.0,2,112,852.0,,,52,52,0.0,0.0,,992.0,193.98249155551292,,42,0,0,0,0,0,0,0,0,1,5.0,1,,2,107116,2,3,0,0,2,,1000.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,103.2165867202408,852.0,27698.52425464416,1,1,5,0,60.0,8,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035814182404814335,15388.069030357865,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +7112,2,46.0,0.0,9,111,1200.0,,,42,33,0.0,0.0,,1235.0,48.49562288887823,,12,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,107117,2,1,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,202.31994759885947,1200.0,102822.58496091263,1,1,1,2,144.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012010979888022438,42842.7437337136,9,5,9,9_1,9_2,9_0_0 +7113,2,47.0,0.0,1,112,1800.0,0.0,0.0,52,56,0.0,529.7309108040896,3069.36097806971,2200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107118,2,1,1,0,1,,210.0,,43,3.0,3.0,6.0,6.0,3.0999999999999996,4,4,1408.75969234756,1800.0,59183.55278039539,2,1,1,2,130.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037172489596277704,19091.468638837225,5,3,5,5_1,5_0,5_1_0 +7114,2,68.0,0.0,1,111,577.0,0.0,0.0,77,75,1792.9608467622227,331.081819252556,983.9007135256793,2557.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107119,2,1,2,0,1,,379.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1485.31613377968,577.0,43185.94847884412,5,5,0,1,180.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0592090735543905,28790.63231922941,8,4,8,8_1,8_3,8_1_0 +7115,1,51.0,222.0,5,211,185.0,0.0,0.0,0,85,0.0,0.0,315.46210052383134,275.0,124.70303028568689,0.0,50,1,2,2,2,1,2,2,2,0,,2,,3,107120,2,1,0,1,1,461.0,0.0,233.0,11,0.0,5.0,2.0,1.0,1.0,1,1,2831.00755048641,185.0,7288.200941915227,0,7,2,3,87.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.037732219815516534,7288.200941915227,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +7116,2,24.0,0.0,1,112,0.0,0.0,0.0,52,53,0.0,0.0,0.0,1506.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,107121,2,1,1,0,1,,602.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1989.67316566119,0.0,43551.33840142732,1,1,1,2,120.0,8,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03457987871965477,24195.188000792954,7,4,7,7_1,7_0,7_1_0 +7117,2,44.0,0.0,7,211,200.0,,,0,69,0.0,0.0,,200.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,107122,2,3,0,0,2,,80.0,280.0,12,1.0,0.0,1.0,1.0,1.0,1,1,58.91759720654866,200.0,11493.94843888116,0,4,3,4,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017400460865428097,11493.94843888116,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7118,2,52.0,0.0,2,111,600.0,1100.0,0.0,68,62,0.0,0.0,1023.1203260232367,1700.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,2,107123,1,2,3,0,1,,720.0,580.0,43,2.0,2.0,4.0,3.0,2.0,3,3,332.710628208613,600.0,42574.20533476378,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0399302814141283,21287.10266738189,6,3,6,6_1,6_3,6_0_1 +7119,2,73.0,0.0,5,111,480.0,0.0,0.0,75,75,1313.080149540569,0.0,818.4962608185893,1845.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107124,1,1,3,0,2,,140.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,857.004183982799,480.0,78247.91972616839,6,5,0,1,110.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023578901604753823,52165.27981744559,10,5,10,10_1,10_3,10_0_0 +7120,1,20.0,267.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,663.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,107125,2,1,0,0,1,,0.0,250.0,12,1.0,0.0,2.0,1.0,1.0,1,1,418.175196204225,0.0,6584.93310519463,0,4,2,3,39.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10068439411738014,6584.93310519463,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7121,1,79.0,91.0,1,112,1160.0,0.0,0.0,0,77,0.0,0.0,1978.032630311591,1160.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,107127,1,2,0,0,1,,158.0,636.0,11,0.0,3.0,3.0,1.0,1.0,1,1,621.981001920062,1160.0,16743.07594596096,0,5,2,3,65.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.0692823710376727,16743.07594596096,4,2,4_1,4_0_1,4_1_1,4_1_0_1 +7122,2,60.0,0.0,8,112,1480.0,0.0,0.0,46,42,0.0,0.0,2523.6968041906507,1480.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,107128,2,1,1,0,1,,220.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,283.599628867204,1480.0,95702.16213960467,1,1,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01546464538430243,63801.441426403115,10,5,10,10_1,10_0,10_0_0 +7123,2,56.0,0.0,2,111,300.0,100.0,0.0,54,63,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,107129,1,3,0,1,1,700.0,240.0,318.0,43,2.0,0.0,4.0,3.0,2.0,3,3,375.373695464163,300.0,56406.68155299731,1,1,2,3,72.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.007091358487809234,28203.340776498655,8,4,8,8_0,8_3,8_0_1 +7124,2,61.0,0.0,1,112,360.0,1430.0,0.0,0,74,0.0,198.6490915515336,613.872195613942,1940.0,0.0,2714.860788553898,10,0,0,0,0,0,0,0,0,0,,1,,1,107130,2,1,3,0,1,,186.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1305.94800975156,360.0,44653.3303555555,0,5,0,1,175.0,8,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0434458076150783,44653.3303555555,10,5,10,10_1,10_0,10_1_0 +7125,2,44.0,0.0,9,112,1860.0,0.0,0.0,53,45,0.0,0.0,3171.673010672034,1908.0,66.50828281903301,0.0,41,0,0,0,0,0,0,0,0,2,90.0,1,2006.0,6,107131,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,924.346013357751,1860.0,61446.9575862853,1,1,1,2,120.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03105117120437965,30723.47879314265,8,4,8,8_1,8_0,8_0_0 +7126,1,82.0,100.0,2,111,190.0,0.0,0.0,0,78,0.0,0.0,323.9881032406916,508.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107132,2,2,0,1,2,727.0,0.0,290.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1012.24896254567,190.0,12241.161294349695,0,5,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041499330642304655,12241.161294349695,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +7127,1,70.0,420.0,7,111,490.0,1358.0,0.0,85,72,0.0,0.0,835.54826625231,1848.0,0.0,2578.1684971022332,71,1,2,2,2,1,2,2,2,0,,2,,5,107133,2,1,0,0,1,,0.0,814.0,41,0.0,1.0,4.0,3.0,2.0,3,3,818.866852720804,490.0,25639.24489744201,6,5,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07207700567595,12819.622448721006,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +7128,2,58.0,0.0,1,111,340.0,260.0,0.0,0,77,0.0,238.3789098618403,579.7681847465008,800.0,27.711784507930417,493.61105246434516,70,2,2,2,1,1,2,2,2,0,,1,,1,107134,1,1,1,0,2,,160.0,,31,1.0,3.0,5.0,2.0,1.5,2,1,223.141629387924,340.0,20432.82991104237,0,7,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03915267750394485,13621.886607361579,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +7129,2,53.0,0.0,6,111,980.0,0.0,0.0,0,34,0.0,0.0,1671.09653250462,980.0,0.0,0.0,10,2,2,2,1,1,2,1,2,0,,2,,4,107135,2,3,0,0,1,,0.0,898.0,32,1.0,2.0,5.0,2.0,1.5,2,2,1224.5284155034,980.0,33838.68555684336,0,1,2,3,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.028960935800941886,22559.12370456224,6,3,6,6_0,6_4,6_0_0 +7130,2,26.0,0.0,9,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,1039.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2013.0,6,107136,2,1,1,0,1,,133.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,3901.92013994194,0.0,16014.250070800506,0,1,1,2,82.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06487971621565064,16014.250070800506,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7131,2,51.0,0.0,2,111,0.0,0.0,1570.0,85,52,0.0,0.0,989.5997159511478,1570.0,0.0,1878.869471676549,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,107137,2,2,0,0,1,,0.0,361.0,42,1.0,3.0,4.0,2.0,1.5,2,2,402.377081257118,0.0,23365.099644442435,7,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06719423515805277,15576.733096294956,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7132,0,85.0,0.0,1,111,400.0,800.0,0.0,0,86,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,1,107138,2,1,2,0,1,,150.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,450.856507906538,400.0,18835.813817791895,0,6,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0637084233051033,18835.813817791895,5,3,5,5_1,5_3,5_1_0 +7133,2,50.0,0.0,1,111,550.0,3164.0,0.0,31,31,0.0,0.0,937.8602988546337,3714.0,0.0,6006.866807681492,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,107139,2,1,1,0,1,,260.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1696.5954682079,550.0,305713.0491676189,1,1,1,2,210.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012148647269432248,145577.6424607709,10,5,10,10_1,10_2,10_1_0 +7134,2,80.0,0.0,2,221,874.0,0.0,0.0,0,78,0.0,0.0,1490.3452749071814,874.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107140,2,1,1,0,1,,154.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1643.1367734119,874.0,14454.719761247314,0,5,0,1,58.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06046467966422765,14454.719761247314,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +7135,2,24.0,0.0,7,111,840.0,0.0,0.0,67,47,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,42,2,2,2,2,1,2,2,2,3,90.0,2,,5,107141,1,3,0,0,1,,0.0,745.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1091.48891558217,840.0,34117.50712807687,1,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02462079063533705,22745.004752051245,6,3,6,6_0,6_4,6_0_0 +7136,2,36.0,0.0,8,111,420.0,,,11,11,0.0,0.0,,500.0,110.84713803172167,,44,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,107142,2,1,0,0,2,,190.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,138.06627229793233,420.0,19018.29370723597,1,1,0,1,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026290476301234263,7314.728348936913,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7138,2,55.0,0.0,1,112,1025.0,0.0,0.0,55,63,0.0,0.0,1747.8305569563627,1085.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,107144,2,1,2,0,1,,313.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1817.96375644914,1025.0,39562.85915094245,1,1,1,2,90.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02742471154221809,26375.239433961633,7,4,7,7_1,7_0,7_1_0 +7139,2,32.0,0.0,9,111,1300.0,0.0,0.0,0,63,0.0,0.0,2216.7607063836795,1335.0,48.49562288887823,0.0,60,2,1,1,2,1,2,2,2,2,20.0,1,2009.0,6,107145,2,1,1,0,1,,500.0,730.0,32,1.0,0.0,6.0,3.0,1.6,1,1,1667.8172224658,1300.0,22990.0,0,1,2,3,101.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.058068725532840364,14368.75,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +7140,2,28.0,0.0,9,120,0.0,0.0,0.0,53,47,0.0,0.0,0.0,2160.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,107146,2,2,1,0,1,,484.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,599.497740033215,0.0,57975.44405460759,1,1,1,2,140.0,0,2,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0372571531830869,32208.58003033755,8,4,8,8_1,8_1,8_0_0 +7141,2,94.0,0.0,2,111,0.0,170.0,0.0,77,74,0.0,0.0,0.0,442.0,0.0,322.74568814976413,41,0,0,0,0,0,0,0,0,0,,2,,2,107147,1,2,0,1,1,,550.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,457.442033557921,0.0,49093.5934294913,5,5,0,1,70.0,7,5,3,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009003211399361196,32729.062286327535,8,4,8,8_0,8_2,8_0_1 +7142,2,60.0,0.0,8,111,517.0,1250.0,0.0,74,77,0.0,0.0,881.5886809233556,1767.0,0.0,2373.130059924736,41,0,0,0,0,0,0,0,0,0,,1,1999.0,6,107148,2,1,2,0,1,,235.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1006.19502459161,517.0,70725.27246046753,5,5,0,1,140.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02498399707102831,47150.18164031169,10,5,10,10_1,10_3,10_0_0 +7143,1,24.0,350.0,9,400,0.0,,,0,43,0.0,0.0,,947.0,0.0,,71,0,0,0,0,0,0,0,0,1,10.0,2,2007.0,6,107149,2,2,0,0,2,,186.0,827.0,32,1.0,0.0,3.0,2.0,1.3,1,1,128.88431626553282,0.0,3210.116216939825,0,1,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.2950048957737632,2469.3201668767883,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +7144,2,49.0,0.0,2,111,474.0,180.0,0.0,56,65,0.0,0.0,808.265057558357,654.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,107150,1,2,0,1,1,684.0,0.0,363.0,43,4.0,0.0,4.0,5.0,3.0,5,5,316.638516807903,474.0,41769.6196910282,1,1,2,3,77.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01565731277511426,13923.206563676067,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7145,2,28.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1244.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,,1,107151,2,1,0,0,1,,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1253.18415378759,0.0,33732.18821984381,0,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03687872224275642,33732.18821984381,9,5,9,9_0,9_4,9_1_0 +7146,2,58.0,0.0,2,111,393.0,0.0,0.0,75,37,2601.902593507296,0.0,670.14381354522,3100.0,332.541414095165,0.0,12,0,0,0,0,0,0,0,0,2,50.0,1,,2,107152,2,3,1,0,1,,510.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,819.505549094266,393.0,94146.89104674758,5,1,0,1,126.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03292726892554242,62764.594031165056,10,5,10,10_1,10_4,10_0_1 +7147,2,59.0,0.0,7,111,359.0,,,0,56,0.0,0.0,,543.0,254.94841747295985,,50,0,0,0,0,0,0,0,0,0,,1,,5,107153,2,2,0,0,2,,600.0,,22,2.0,2.0,4.0,2.0,1.5,2,2,100.76443618730778,359.0,13955.201073332018,0,4,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03891022401946305,9303.467382221346,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +7148,2,66.0,0.0,5,400,1000.0,0.0,0.0,0,75,1898.4291318658827,0.0,1705.2005433720612,2920.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,107154,2,1,2,0,1,,290.0,,21,1.0,2.0,6.0,2.0,1.5,2,2,207.610983570215,1000.0,110439.53598678517,0,5,0,1,130.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02643980684914683,73626.35732452344,10,5,10,10_1,10_0,10_0_0 +7149,2,38.0,0.0,5,111,490.0,195.0,0.0,0,52,0.0,0.0,835.54826625231,685.0,0.0,370.20828934825886,42,0,0,0,0,0,0,0,0,0,,1,,3,107155,1,1,3,0,2,,280.0,,22,1.0,3.0,4.0,2.0,1.5,2,2,1012.85906715936,490.0,26023.54692200687,0,1,0,1,91.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026322315019276954,17349.031281337913,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7150,2,55.0,0.0,1,112,630.0,0.0,0.0,55,37,1653.7427104253911,0.0,1074.2763423243985,2970.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107156,2,1,2,0,1,,380.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1268.82992718525,630.0,44793.70720513692,1,1,0,1,85.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06630395618738612,29862.471470091277,8,4,8,8_1,8_0,8_1_0 +7151,2,80.0,0.0,9,120,2097.0,0.0,0.0,90,71,0.0,0.0,3575.805539451212,2187.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,2,2010.0,6,107157,2,1,0,0,1,,231.0,580.0,41,0.0,7.0,4.0,2.0,1.5,2,2,1498.96365502807,2097.0,28661.26021490706,5,5,2,3,101.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07630508859699461,19107.50680993804,5,3,5,5_0,5_0,5_0_0 +7152,1,52.0,450.0,7,211,1500.0,,,81,81,0.0,0.0,,1800.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,107158,1,2,0,0,2,,1000.0,565.0,43,2.0,3.0,4.0,4.0,2.3,3,3,89.21317059240481,1500.0,10131.940074210248,4,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17765600534706125,4405.191336613152,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7153,0,64.0,0.0,1,211,1443.3,,,0,22,0.0,0.0,,1719.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,0,,1,,1,107159,2,1,0,0,2,,308.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,153.4499408195908,1443.3,7691.99411082565,0,1,5,0,10.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22347911025837805,7691.99411082565,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +7154,2,61.0,0.0,7,111,800.0,1000.0,0.0,74,37,0.0,0.0,1364.160434697649,1800.0,0.0,1898.504047939789,44,0,0,0,0,0,0,0,0,3,40.0,2,,5,107160,1,1,0,0,1,,800.0,,42,1.0,3.0,4.0,3.0,2.0,3,3,625.111969141616,800.0,36142.95335016009,6,1,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04980223897480772,18071.476675080045,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7155,2,51.0,0.0,1,111,1160.0,1560.0,0.0,90,68,0.0,0.0,1978.032630311591,2720.0,0.0,2961.666314786071,60,0,0,0,0,0,0,0,0,1,30.0,1,,1,107161,2,2,3,0,1,,876.0,980.0,43,3.0,3.0,5.0,5.0,3.0,5,5,731.281481588377,1160.0,50873.58604172587,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05346585942986387,16957.862013908623,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +7156,2,57.0,0.0,7,111,596.0,1523.0,0.0,47,47,0.0,0.0,1016.2995238497484,2119.0,0.0,2891.4216650122985,10,0,0,0,0,0,0,0,0,2,10.0,2,,5,107162,2,2,0,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,1281.70345223801,596.0,195800.3376982237,1,1,0,1,150.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010822248954779118,78320.13507928948,10,5,10,10_0,10_3,10_0_0 +7157,1,35.0,310.0,8,112,550.0,,,85,63,0.0,0.0,,638.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,107163,2,2,0,0,2,,239.0,390.0,42,1.0,0.0,3.0,5.0,2.4,2,2,110.40026801177076,550.0,25162.772784992216,6,4,2,3,50.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02535491638586512,10484.488660413424,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7159,1,83.0,61.0,7,111,281.0,910.0,0.0,0,77,0.0,0.0,479.1613526875492,1191.0,0.0,1727.638683625208,50,0,0,0,0,0,0,0,0,0,,2,,5,107165,2,1,0,0,1,,0.0,686.0,21,0.0,2.0,3.0,2.0,1.5,2,2,3060.974884102,281.0,21158.04325020697,0,5,2,3,80.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05629064965581586,14105.362166804647,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +7160,2,28.0,0.0,1,112,900.0,0.0,0.0,22,42,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107166,2,1,1,0,1,,100.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1063.63983121791,900.0,27961.67620533318,1,1,1,2,160.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03433270569869833,15534.264558518433,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7161,2,82.0,0.0,1,400,468.0,0.0,0.0,0,71,0.0,132.4327277010224,798.0338542981247,688.0,166.2707070475825,0.0,70,2,2,1,2,1,2,2,1,0,,1,,1,107167,2,3,4,0,2,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1246.9096432418,468.0,22230.514531304583,0,5,0,1,78.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.030948451464367664,22230.514531304583,6,3,6,6_1,6_0,6_1_0 +7162,2,31.0,0.0,1,111,665.0,953.0,0.0,55,47,0.0,0.0,1133.9583613424206,1618.0,0.0,1809.274357686619,50,0,0,0,0,0,0,0,0,0,,1,,1,107168,2,2,1,0,1,,285.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,352.886998700954,665.0,14851.305002533407,1,1,1,2,117.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1089466548376721,7072.050001206384,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +7163,2,53.0,0.0,7,112,720.0,0.0,0.0,0,21,0.0,0.0,1227.744391227884,880.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,107169,2,1,2,0,1,,285.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,646.079045526033,720.0,12015.527047219195,0,1,0,1,100.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07323856844079613,8010.351364812796,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +7164,2,67.0,0.0,5,111,0.0,0.0,300.0,0,75,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,20,0,0,0,0,0,0,0,0,0,,2,,3,107170,2,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,413.787766593464,0.0,16786.649724115432,0,5,0,1,64.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01787134448686475,16786.649724115432,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +7165,2,44.0,0.0,1,111,750.0,960.0,0.0,67,48,0.0,331.081819252556,1278.9004075290459,1960.0,0.0,1822.5638860221975,71,2,2,2,2,2,1,2,2,2,15.0,1,,1,107171,1,1,2,0,1,,750.0,500.0,43,2.0,2.0,7.0,3.0,1.8,2,2,1103.32381216128,750.0,27285.19049069693,4,1,2,3,130.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.07183383970393299,15158.439161498292,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +7166,1,43.0,450.0,2,111,1000.0,1200.0,0.0,85,68,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,107172,2,1,0,0,1,,0.0,750.0,42,1.0,0.0,3.0,6.0,2.7,2,2,409.951269831546,1000.0,26378.393761792875,6,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08340159070589563,9769.775467330694,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7167,2,47.0,0.0,1,112,900.0,0.0,0.0,85,64,0.0,463.51454695357836,1534.680489034855,1425.0,242.47811444439117,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,107173,2,1,1,0,1,,350.0,,42,1.0,3.0,8.0,6.0,2.6999999999999997,2,2,915.54926919809,900.0,20936.52976917473,6,1,1,2,180.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06806285548324517,7754.27028487953,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +7168,2,85.0,0.0,1,300,350.0,0.0,0.0,0,71,0.0,405.2441467651285,596.8201901802214,746.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107174,2,1,2,0,1,,85.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,927.882153850561,350.0,9786.839222857481,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07622481406026296,9786.839222857481,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7169,2,28.0,0.0,1,211,2600.0,0.0,0.0,52,63,0.0,794.5963662061343,4433.521412767359,3200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107175,2,1,3,0,1,,600.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,1617.87727056876,2600.0,53496.63444616094,1,1,1,2,220.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.059816847043349664,20575.628633138826,5,3,5,5_1,5_1,5_1_0 +7170,1,40.0,23.0,9,120,480.0,,,63,54,0.0,0.0,,566.0,119.1606733841008,,41,0,0,0,0,0,0,0,0,2,10.0,8,2007.0,6,107176,2,1,0,0,1,,320.0,509.0,43,2.0,0.0,4.0,3.0,2.0,3,2,97.30150607896893,480.0,44462.177783579544,4,1,2,3,69.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012729920759955018,22231.088891789772,6,3,6,6_0,6_1,6_0_0 +7171,1,46.0,400.0,7,111,0.0,,,85,53,0.0,0.0,,573.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,107177,2,1,0,0,2,,665.0,650.0,42,1.0,2.0,3.0,7.0,3.3999999999999995,4,3,76.37350497139732,0.0,22066.991496433475,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025966385136488124,6490.291616598081,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7172,2,43.0,0.0,8,400,1347.0,0.0,0.0,54,47,928.1209089122093,0.0,2296.905131922166,2332.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,107178,2,1,2,0,1,,525.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1194.07465550278,1347.0,42443.603217649725,1,1,0,1,130.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05494349732847993,20211.23962745225,5,3,5,5_1,5_0,5_0_0 +7173,2,68.0,0.0,6,111,372.0,744.0,0.0,77,77,0.0,529.7309108040896,634.3346021344067,1516.0,0.0,1412.487011667203,60,0,0,0,0,0,0,0,0,0,,2,,4,107179,2,1,0,0,1,,353.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,505.218004461413,372.0,36063.684438134456,5,5,0,1,93.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04203674759301497,24042.45629208964,6,3,6,6_0,6_2,6_0_0 +7174,2,63.0,0.0,6,112,400.0,1320.0,0.0,68,78,0.0,0.0,682.0802173488245,1720.0,0.0,2506.0253432805216,71,2,2,2,1,2,2,2,2,0,,1,,4,107180,1,2,3,0,2,,240.0,710.0,42,1.0,2.0,4.0,2.0,1.5,2,2,3672.4197012873,400.0,27851.13468892179,1,5,2,3,85.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.06175690934000459,18567.42312594786,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7175,2,54.0,0.0,2,111,0.0,0.0,0.0,75,43,0.0,0.0,0.0,1584.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,90.0,1,,2,107181,2,1,1,0,1,,250.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,520.44159604636,0.0,47709.25793243289,7,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03320110327943693,31806.17195495526,8,4,8,8_1,8_4,8_0_1 +7176,2,66.0,0.0,2,111,1200.0,804.0,0.0,78,77,0.0,0.0,2046.2406520464733,2004.0,0.0,1526.3972545435904,71,0,0,0,0,0,0,0,0,0,,2,,2,107182,2,2,0,1,1,,130.0,338.0,41,1.0,4.0,4.0,3.0,2.0,3,3,319.887098030045,1200.0,21405.024254649965,5,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09362287919690897,10702.512127324982,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +7177,2,45.0,0.0,7,300,2150.8,0.0,0.0,54,42,0.0,662.163638505112,3667.5453286846296,2711.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,5,107183,1,2,2,0,1,,224.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,872.09129179075,2150.8,82045.57691725994,1,1,1,2,85.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03304260999631885,41022.78845862997,9,5,9,9_1,9_0,9_0_0 +7178,1,35.0,263.0,1,111,218.0,400.0,0.0,85,68,0.0,0.0,371.73371845510934,618.0,0.0,759.4016191759156,60,2,1,2,1,1,2,2,2,0,,2,,1,107184,2,1,0,1,1,869.0,0.0,295.0,42,1.0,0.0,3.0,4.0,2.1,2,2,322.670242920735,218.0,30170.314900822803,6,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.020483710628527312,14366.816619439429,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +7179,1,32.0,24.0,7,120,1300.0,0.0,0.0,46,48,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,5,107185,2,1,2,0,1,,436.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1267.70482158873,1300.0,41927.352349665,4,1,1,2,80.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.031006012236553426,19965.405880792856,5,3,5,5_1,5_1,5_0_0 +7180,2,90.0,0.0,1,221,2274.0,0.0,0.0,0,74,0.0,0.0,3877.6260356280673,2344.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,107186,2,1,2,0,1,,259.0,,11,0.0,1.0,8.0,1.0,1.0,1,1,544.993768489066,2274.0,23853.123140629898,0,5,0,1,122.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0982680542996644,23853.123140629898,6,3,6,6_1,6_1,6_1_0 +7181,1,41.0,278.0,2,111,400.0,300.0,0.0,85,55,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,71,2,2,2,2,1,2,2,2,2,20.0,2,,2,107187,2,3,0,1,1,742.0,550.0,329.0,42,1.0,0.0,4.0,4.0,2.5,4,3,317.994199098747,400.0,22061.754204040426,6,1,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03172911788999085,8824.70168161617,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7182,1,37.0,327.0,2,111,168.0,90.0,0.0,84,63,0.0,0.0,286.47369128650627,258.0,0.0,170.865364314581,41,0,0,0,0,0,0,0,0,0,,2,,2,107188,1,2,0,1,2,380.0,0.0,340.0,42,1.0,1.0,2.0,2.0,1.5,2,2,2385.52307713666,168.0,9121.849895573565,3,4,2,3,38.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028283736627281723,6081.23326371571,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7183,2,31.0,0.0,8,300,392.0,0.0,0.0,0,33,0.0,39.72981831030672,668.438613001848,455.0,45.72444443808519,0.0,12,0,0,0,0,0,0,0,0,2,75.0,1,2001.0,6,107189,2,1,1,0,1,,230.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1983.59590737428,392.0,35478.58954301122,0,1,1,2,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012824636093506387,35478.58954301122,9,5,9,9_1,9_0,9_0_0 +7184,1,30.0,320.0,2,111,600.0,0.0,0.0,0,56,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,2,2,2,1,1,1,2,2,0,,2,,2,107190,1,3,0,1,1,560.0,0.0,315.0,32,1.0,0.0,4.0,3.0,1.6,1,1,371.04337998738,600.0,5172.725857789822,0,1,2,3,73.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.11599300185151609,3232.9536611186386,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7185,2,60.0,0.0,2,112,520.0,2200.0,0.0,0,77,0.0,0.0,886.7042825534718,2720.0,0.0,4176.708905467536,71,0,0,0,0,0,0,0,0,0,,1,,2,107191,2,2,5,0,1,,1000.0,,31,3.0,6.0,6.0,5.0,3.0,5,5,669.825076622902,520.0,29242.57037469611,0,6,0,1,120.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09301507922004158,9747.523458232037,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +7186,1,65.0,184.0,2,111,260.0,100.0,0.0,77,78,0.0,0.0,443.3521412767359,360.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,107192,2,1,0,1,1,720.0,0.0,311.0,41,0.0,2.0,3.0,2.0,1.5,2,2,274.628413534487,260.0,12864.806233451334,7,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027983320810842885,8576.537488967557,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +7187,2,21.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,332.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,40.0,2,,1,107193,1,1,0,0,1,,0.0,360.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2465.82537409351,0.0,15797.518477705064,0,1,2,3,26.0,8,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021015958960171464,15797.518477705064,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +7188,2,62.0,0.0,2,111,1600.0,0.0,0.0,0,75,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,1,,2,107194,1,3,3,0,1,,300.0,,21,1.0,1.0,6.0,2.0,1.5,2,2,1639.64430068902,1600.0,40791.72520372514,0,5,0,1,163.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.039223641363760865,27194.48346915009,7,4,7,7_1,7_2,7_0_1 +7189,1,66.0,107.0,5,300,318.0,,,54,71,0.0,0.0,,582.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,3,7.0,1,,3,107195,2,2,0,0,2,,319.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,66.4413384119763,318.0,23610.77740182144,1,5,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024649760153814416,11805.38870091072,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +7190,2,54.0,0.0,7,120,660.0,,,33,22,0.0,0.0,,752.0,127.47420873647992,,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,107196,2,1,0,0,2,,360.0,,43,3.0,2.0,4.0,4.0,2.5,4,4,104.65659834738923,660.0,110216.16876311338,1,1,1,2,90.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0068229553652537755,44086.46750524535,10,5,10,10_1,10_1,10_0_0 +7191,2,52.0,0.0,6,111,400.0,400.0,0.0,0,67,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,107197,2,1,2,0,1,,160.0,,32,3.0,0.0,4.0,3.0,2.0,3,3,461.263396573375,400.0,58589.8591237658,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013654240033417253,29294.9295618829,8,4,8,8_1,8_3,8_0_0 +7192,2,70.0,0.0,8,111,0.0,0.0,740.0,0,77,0.0,0.0,466.4355349069104,740.0,0.0,885.5817891978638,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107198,2,1,2,0,1,,174.0,357.0,11,0.0,1.0,3.0,1.0,1.0,1,1,808.706475765131,0.0,22897.07642272,0,5,2,3,54.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03231853649515371,22897.07642272,6,3,6,6_1,6_1,6_0_0 +7193,2,56.0,0.0,1,112,1245.0,0.0,0.0,77,22,0.0,463.51454695357836,2122.974676498216,1595.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,50.0,1,,1,107199,2,1,3,0,1,,231.0,,42,1.0,6.0,7.0,2.0,1.5,2,2,1841.44611377646,1245.0,88385.30758061442,5,1,0,1,120.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018045985737451142,58923.53838707628,10,5,10,10_1,10_0,10_1_0 +7194,2,31.0,0.0,1,112,1830.0,0.0,0.0,42,21,0.0,0.0,3120.516994370872,1860.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,107200,2,2,2,0,1,,450.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1096.27011985312,1830.0,45075.94955250067,1,1,1,2,80.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0412636898049952,25042.194195833705,7,4,7,7_1,7_0,7_1_0 +7195,1,78.0,205.0,2,111,194.0,,,77,78,0.0,0.0,,446.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,107201,2,2,0,0,2,,188.0,256.0,41,0.0,6.0,6.0,2.0,1.5,2,2,136.32624624384115,194.0,15906.185985820393,5,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.028039405574509676,10604.123990546928,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +7196,2,49.0,0.0,8,221,440.0,0.0,0.0,85,53,1054.6828510366015,0.0,750.2882390837069,1540.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,55.0,1,2000.0,6,107202,2,1,1,0,1,,200.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1623.67838556947,440.0,34825.20225407695,6,1,1,2,100.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0442208487050413,23216.801502717964,6,3,6,6_1,6_1,6_0_0 +7197,2,57.0,0.0,6,111,837.0,0.0,0.0,78,46,0.0,238.3789098618403,1427.2528548024152,1273.0,354.71084170150937,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,107203,2,1,2,0,1,,87.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,300.45709761411,837.0,42391.559388521804,5,1,0,1,105.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030029562921544357,28261.039592347868,8,4,8,8_1,8_2,8_0_0 +7198,2,43.0,0.0,8,112,728.0,0.0,0.0,52,38,0.0,0.0,1241.3859955748605,3428.0,3741.0909085706066,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,107204,1,1,2,0,1,,821.0,,43,3.0,0.0,5.0,5.0,2.8,4,3,1143.66104785812,728.0,111532.12363724367,1,1,1,2,142.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030735539575571173,39832.9012990156,9,5,9,9_1,9_1,9_0_0 +7199,2,32.0,0.0,5,111,1900.0,0.0,0.0,52,67,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,3,107205,2,1,3,0,1,,368.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,944.176048080102,1900.0,39956.76938975655,1,1,2,3,100.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04755139189223567,22198.205216531416,6,3,6,6_1,6_3,6_0_0 +7200,0,35.0,0.0,2,111,960.0,0.0,0.0,84,33,0.0,0.0,1636.9925216371787,990.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,107206,1,1,1,0,2,,300.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1347.71370862065,960.0,41924.996959259544,3,1,5,0,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02361359741926824,27949.997972839697,7,4,7,7_1,7_3,7_0_1 +7201,1,28.0,166.0,8,111,1800.0,0.0,0.0,0,67,0.0,0.0,3069.36097806971,1920.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,107207,2,1,2,0,1,,800.0,,22,3.0,1.0,5.0,3.0,2.0,3,3,340.95765966899,1800.0,27398.527700107414,0,1,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07007675817531148,13699.263850053707,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +7202,2,67.0,0.0,1,111,632.0,510.0,0.0,86,78,0.0,0.0,1077.6867434111427,1142.0,0.0,968.2370644492923,50,0,0,0,0,0,0,0,0,0,,2,,1,107208,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,4.0,2.5,4,4,837.395177245991,632.0,20979.00214264519,6,5,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05443538220908004,8391.600857058076,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +7203,2,43.0,0.0,9,111,900.0,0.0,0.0,48,46,0.0,0.0,1534.680489034855,900.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,107209,2,1,0,0,1,,600.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1802.86103157388,900.0,30000.886983667733,1,1,2,3,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029999113042556157,16667.159435370962,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +7204,2,33.0,0.0,7,211,540.0,,,62,43,0.0,0.0,,632.0,127.47420873647992,,33,0,0,0,0,0,0,0,0,1,5.0,1,,5,107210,2,3,0,0,2,,900.0,580.0,43,2.0,0.0,4.0,4.0,2.3,3,2,65.81162384000251,540.0,35226.2864940702,1,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017941147446989266,15315.776736552261,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +7205,2,54.0,0.0,6,111,0.0,,,0,37,0.0,0.0,,688.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,2,2.0,1,,4,107211,2,1,0,0,2,,479.0,,32,2.0,0.0,6.0,5.0,3.0,5,4,136.02722740704942,0.0,172901.562976053,0,1,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003979142745489747,57633.85432535101,10,5,10,10_1,10_2,10_0_0 +7206,0,38.0,0.0,8,111,810.0,,,0,53,0.0,0.0,,810.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,107212,2,1,0,0,2,,108.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,168.08566389565343,810.0,26078.40792466645,0,1,5,0,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031060178303057205,20060.313788204963,5,3,5,5_0,5_2,5_0_0 +7207,2,48.0,0.0,6,211,700.0,350.0,0.0,0,54,0.0,0.0,1193.6403803604428,1050.0,0.0,664.4764167789261,42,0,0,0,0,0,0,0,0,2,3.0,2,,4,107213,2,1,0,0,1,,0.0,435.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1364.60108718381,700.0,24941.99330742799,0,1,2,3,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.042097677882356695,24941.99330742799,7,4,7,7_0,7_1,7_0_0 +7208,2,52.0,0.0,9,211,420.0,,,55,69,0.0,0.0,,598.0,246.63488212058073,,71,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,107214,1,2,0,0,2,,600.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,147.98398401235207,420.0,42296.28225371038,1,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014138358459331053,23497.934585394654,6,3,6,6_1,6_2,6_0_0 +7209,2,36.0,0.0,2,112,1500.0,0.0,0.0,55,62,0.0,0.0,2557.8008150580918,1620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,107215,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,720.03419770206,1500.0,48275.10388234108,1,1,0,1,97.0,7,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033557669890226634,26819.502156856153,7,4,7,7_1,7_1,7_0_1 +7210,2,49.0,0.0,1,111,960.0,0.0,0.0,42,63,0.0,0.0,1636.9925216371787,990.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,107216,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,1254.81716785131,960.0,15116.3365066595,1,1,0,1,60.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06549205884400996,7558.16825332975,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +7211,2,23.0,0.0,7,111,0.0,,,85,63,0.0,0.0,,1071.0,0.0,,50,0,0,0,0,0,0,0,0,1,40.0,3,,5,107217,2,1,0,0,2,,0.0,700.0,42,1.0,0.0,2.0,3.0,1.8,2,2,101.17921562520054,0.0,21425.511316765722,6,1,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04998713842417985,11903.061842647623,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +7212,2,67.0,0.0,1,111,0.0,0.0,2880.0,0,78,0.0,0.0,1815.316676394462,2880.0,0.0,3446.5885849862807,71,0,0,0,0,0,0,0,0,0,,1,,1,107218,2,1,2,0,1,,300.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,1466.35295170433,0.0,24211.129672279974,0,5,0,1,50.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11895355726822593,16140.753114853316,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +7213,2,32.0,0.0,2,111,590.0,0.0,0.0,54,47,0.0,0.0,1006.0683205895161,590.0,0.0,0.0,43,2,2,1,1,1,2,2,2,0,,2,,2,107219,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,393.624046831654,590.0,78458.31400074446,1,1,1,2,70.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.007519916882159891,37361.10190511641,9,5,9,9_0,9_2,9_0_1 +7214,2,76.0,0.0,8,111,300.0,,,86,78,0.0,0.0,,552.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107220,1,2,0,0,2,,800.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,147.8253677453463,300.0,17269.99052692445,5,5,0,1,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03196295904965408,11513.327017949632,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7215,1,72.0,202.0,2,111,360.0,220.0,0.0,0,86,0.0,0.0,613.872195613942,580.0,0.0,417.6708905467536,71,2,2,2,2,1,2,2,2,0,,2,,2,107221,2,2,0,1,1,1545.0,200.0,268.0,11,0.0,4.0,3.0,1.0,1.0,1,1,277.26086028607,360.0,10687.356143044759,0,5,2,3,58.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05426973633488008,10687.356143044759,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7216,2,87.0,0.0,1,111,480.0,1700.0,0.0,0,33,0.0,0.0,818.4962608185893,2180.0,0.0,3227.4568814976415,41,0,0,0,0,0,0,0,0,0,,1,,1,107222,2,2,1,0,1,,360.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,757.77482715283,480.0,35765.21854204562,0,5,0,1,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06095307365274981,35765.21854204562,9,5,9,9_1,9_4,9_1_0 +7217,2,41.0,0.0,2,111,0.0,100.0,0.0,0,53,0.0,0.0,0.0,173.0,0.0,189.8504047939789,50,2,1,2,2,1,2,2,2,2,7.0,2,,2,107223,2,2,0,1,1,556.0,0.0,240.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2344.06956795392,0.0,21010.725042301106,0,1,2,3,70.0,6,5,2,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.008233890056230679,21010.725042301106,5,3,5,5_0,5_2,5_0_1 +7218,2,58.0,0.0,5,112,626.0,0.0,0.0,46,45,1987.0224913529573,0.0,1067.4555401509103,2570.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,3,107224,1,1,3,0,1,,283.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1452.25872490602,626.0,52492.87471838617,1,1,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048959025654196665,34995.24981225745,9,5,9,9_1,9_0,9_0_0 +7219,2,38.0,0.0,9,112,819.0,0.0,0.0,0,68,0.0,0.0,1396.5592450217182,834.0,20.783838380947813,0.0,42,0,0,0,0,0,0,0,0,2,18.0,1,2007.0,6,107225,2,1,1,0,2,,211.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,904.605918573588,819.0,20774.70649011455,0,1,1,2,71.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040144971501611885,20774.70649011455,5,3,5,5_1,5_0,5_0_0 +7220,2,26.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,533.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,30.0,2,,1,107226,2,3,0,0,1,,0.0,1214.0,22,2.0,0.0,3.0,2.0,1.5,2,2,982.033511342562,0.0,41946.475372049164,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012706669518058293,27964.316914699444,7,4,7,7_0,7_4,7_1_0 +7221,2,41.0,0.0,9,400,1560.0,0.0,0.0,65,62,0.0,264.8654554020448,2660.1128476604154,1760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,107227,2,1,1,0,1,,300.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,600.330697786902,1560.0,49189.6559829302,1,1,1,2,110.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03577988023764093,23423.645706157236,6,3,6,6_1,6_0,6_0_0 +7222,2,55.0,0.0,5,111,1800.0,0.0,0.0,56,62,0.0,0.0,3069.36097806971,1980.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,107228,2,2,2,0,1,,700.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1449.21406283759,1800.0,47625.72784649771,1,1,0,1,110.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0415741677771672,31750.485230998474,8,4,8,8_1,8_3,8_0_0 +7223,0,85.0,0.0,2,111,750.0,1100.0,0.0,78,86,0.0,0.0,1278.9004075290459,1850.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,0,,1,,2,107229,1,3,3,0,2,,150.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1678.3529154602,750.0,19821.012180251204,5,5,0,1,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09333529403928523,13214.00812016747,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +7224,0,48.0,0.0,7,111,420.0,,,0,43,0.0,0.0,,696.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,107230,2,1,0,0,2,,170.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,86.85788013858651,420.0,9942.549019607843,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07000216932573412,7648.114630467571,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7225,2,71.0,0.0,5,111,450.0,0.0,0.0,0,77,0.0,0.0,767.3402445174275,450.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,3,107231,2,2,0,1,2,,0.0,241.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1363.63951718937,450.0,11131.689864939215,0,5,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04042512910976228,11131.689864939215,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +7226,2,33.0,0.0,9,112,1200.0,0.0,0.0,69,11,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,107232,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,142.386921442506,1200.0,30356.092286413535,1,1,1,2,135.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04348385778859922,14455.282041149301,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7228,1,40.0,546.0,2,111,450.0,0.0,0.0,0,56,0.0,0.0,767.3402445174275,723.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,107234,2,2,0,1,1,756.0,0.0,592.0,32,3.0,0.0,4.0,6.0,3.3,5,4,226.42252899437,450.0,39675.740121212,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01822272244427419,12022.951551882426,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +7229,2,50.0,0.0,7,111,740.0,,,0,42,0.0,0.0,,740.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,107235,2,3,0,0,2,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,58.536882308571705,740.0,50353.60702095185,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014696067348106565,50353.60702095185,10,5,10,10_0,10_2,10_0_0 +7230,2,61.0,0.0,2,111,2400.0,864.0,0.0,46,90,0.0,0.0,4092.4813040929466,3264.0,0.0,1640.3074974199776,20,0,0,0,0,0,0,0,0,2,120.0,2,,2,107236,1,1,0,1,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1073.37412643161,2400.0,135414.02070088973,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02410385559121467,90276.01380059315,10,5,10,10_0,10_4,10_0_1 +7231,0,35.0,0.0,2,120,0.0,0.0,0.0,52,11,0.0,0.0,0.0,1668.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,107237,2,1,2,0,1,,239.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,287.231135346012,0.0,15527.447602638502,4,1,5,0,100.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10742267774367277,10351.631735092335,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +7232,2,44.0,0.0,2,111,380.0,550.0,0.0,85,63,0.0,0.0,647.9762064813832,930.0,0.0,1044.177226366884,71,2,2,2,1,1,1,2,2,2,10.0,2,,2,107238,1,3,0,0,1,,0.0,228.0,42,2.0,0.0,3.0,3.0,2.0,3,3,334.043690808439,380.0,14558.47033754453,6,1,2,3,67.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0.06388033759299855,7279.235168772265,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +7233,2,56.0,0.0,2,111,494.0,1073.0,0.0,0,46,0.0,0.0,842.3690684257982,1567.0,0.0,2037.0948434393936,31,0,0,0,0,0,0,0,0,0,,1,,2,107239,2,3,3,0,1,,280.0,,32,1.0,1.0,5.0,2.0,1.5,2,1,1140.98803478213,494.0,15742.48480037212,0,4,0,1,108.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09953955934344999,10494.989866914746,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +7234,1,56.0,210.0,1,221,700.0,1300.0,0.0,0,77,0.0,0.0,1193.6403803604428,2000.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,2,,1,107240,1,1,0,0,2,,120.0,420.0,11,0.0,1.0,2.0,1.0,1.0,1,1,650.962191089599,700.0,11525.0,0,7,3,4,50.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1735357917570499,11525.0,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +7235,1,69.0,278.0,2,111,0.0,0.0,0.0,85,78,0.0,0.0,0.0,301.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107241,2,1,0,1,1,744.0,138.0,295.0,41,0.0,6.0,4.0,2.0,1.5,2,2,361.436188193131,0.0,14562.190462626975,6,5,2,3,72.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020669967253381227,9708.12697508465,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7236,1,25.0,300.0,2,111,500.0,0.0,0.0,84,54,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,2,107242,1,3,0,0,1,,0.0,472.0,42,1.0,0.0,2.0,2.0,1.5,2,2,381.510826104711,500.0,1183.7287893321309,3,4,2,3,38.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.4223940521731367,789.1525262214205,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7237,2,77.0,0.0,7,111,1500.0,0.0,0.0,78,77,0.0,0.0,2557.8008150580918,1828.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,107243,2,1,1,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,530.80664933234,1500.0,57537.8472819407,5,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031770392643343665,38358.56485462713,9,5,9,9_1,9_4,9_0_0 +7238,1,75.0,114.0,6,111,180.0,750.0,0.0,0,78,0.0,0.0,306.936097806971,930.0,0.0,1423.8780359548418,70,2,2,2,2,1,2,2,2,0,,2,,4,107244,2,1,0,0,1,,73.0,249.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1895.13751462236,180.0,13869.121050945092,0,5,2,3,60.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06705543895563781,13869.121050945092,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +7239,1,19.0,384.0,2,111,600.0,240.0,0.0,0,67,0.0,0.0,1023.1203260232367,840.0,0.0,455.6409715055494,60,0,0,0,0,0,0,0,0,0,,2,,2,107245,1,3,0,1,1,1045.0,0.0,346.0,22,2.0,2.0,5.0,5.0,2.8,4,4,227.928468706355,600.0,20017.39028744243,0,1,2,3,85.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041963512123104264,7149.067959800868,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7240,0,47.0,0.0,2,111,1123.0,223.0,0.0,63,56,0.0,0.0,1914.9402102068248,1346.0,0.0,423.36640269057295,71,0,0,0,0,0,0,0,0,0,,2,,2,107246,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,4.0,2.3,3,3,1695.70476655055,1123.0,16446.61992309695,4,1,5,0,24.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08184052445388693,7150.704314389979,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +7241,2,29.0,0.0,9,111,1010.0,0.0,0.0,55,42,0.0,0.0,1722.2525488057818,1010.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,20.0,2,2008.0,6,107247,2,1,0,0,1,,0.0,588.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1113.93542050155,1010.0,28384.351879318452,4,1,2,3,44.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.035582986157098456,18922.901252878968,5,3,5,5_0,5_3,5_0_0 +7242,2,45.0,0.0,7,112,1310.0,0.0,0.0,0,67,0.0,0.0,2233.8127118174,1310.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,,5,107248,2,1,1,0,1,,319.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,879.910222219787,1310.0,21312.796529895502,0,1,1,2,67.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061465420465233664,21312.796529895502,6,3,6,6_1,6_1,6_0_0 +7243,2,41.0,0.0,7,211,682.0,0.0,0.0,38,31,1907.9212775252122,0.0,1162.9467705797458,2491.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,107249,2,1,2,0,1,,660.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1397.77904091724,682.0,90275.2807596071,1,1,1,2,136.0,2,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02759337859755044,42988.22893314624,9,5,9,9_1,9_1,9_0_0 +7244,2,44.0,0.0,7,111,1260.0,0.0,0.0,42,38,0.0,0.0,2148.552684648797,1260.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,,5,107250,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,888.913133761936,1260.0,39125.11984884397,1,1,1,2,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03220437419406983,21736.177693802205,6,3,6,6_0,6_4,6_0_0 +7245,2,61.0,0.0,2,111,720.0,0.0,0.0,47,31,0.0,0.0,1227.744391227884,720.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,,2,107251,2,1,0,1,1,,0.0,450.0,43,2.0,1.0,5.0,2.0,1.5,2,2,1631.84096265063,720.0,37238.52193844679,1,1,2,3,95.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01933481681120749,24825.68129229786,7,4,7,7_0,7_3,7_0_1 +7246,2,57.0,0.0,5,112,545.0,0.0,0.0,65,42,0.0,264.8654554020448,929.3342961377733,1215.0,651.2269359363648,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,107252,2,1,1,0,1,,400.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,855.317090776675,545.0,61677.90041173435,1,1,0,1,87.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019699114137952136,30838.950205867175,8,4,8,8_1,8_0,8_0_0 +7247,2,35.0,0.0,9,111,372.0,0.0,0.0,0,45,0.0,0.0,634.3346021344067,372.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,5.0,2,2006.0,6,107253,2,1,0,1,1,,0.0,244.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1665.55767577611,372.0,17479.672607651803,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02128186313038583,17479.672607651803,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7248,2,26.0,0.0,2,111,450.0,70.0,0.0,0,67,0.0,0.0,767.3402445174275,1503.0,0.0,132.89528335578524,42,0,0,0,0,0,0,0,0,0,,2,,2,107254,2,1,0,1,1,840.0,0.0,319.0,22,4.0,0.0,4.0,4.0,2.5,4,4,233.817255013388,450.0,62219.64790824569,0,1,2,3,75.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024156356561458685,24887.85916329828,7,4,7,7_0,7_2,7_0_1 +7249,2,37.0,0.0,7,111,350.0,,,63,56,0.0,0.0,,570.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,0,,1,,5,107255,2,1,0,0,2,,220.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,115.29288628379754,350.0,20553.372686765386,4,1,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027732674762766855,8936.248994245821,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7251,1,41.0,158.0,7,221,250.0,800.0,0.0,85,69,0.0,0.0,426.3001358430153,1050.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,12.0,8,,5,107257,1,3,0,0,1,,120.0,350.0,42,1.0,0.0,3.0,3.0,1.8,2,2,694.897770664426,250.0,18890.479931495407,6,1,2,3,60.0,1,2,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.055583553398734636,10494.711073053004,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +7252,2,50.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,958.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,107258,2,3,0,0,2,,312.0,560.0,12,1.0,0.0,3.0,1.0,1.0,1,1,114.30980128661957,0.0,30081.885827474853,0,1,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03184640768515332,30081.885827474853,8,4,8,8_0,8_2,8_0_0 +7253,1,37.0,23.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,909.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107259,2,2,0,1,1,576.0,450.0,354.0,42,1.0,0.0,3.0,4.0,2.1,2,2,293.619701059567,0.0,26072.21405985314,6,1,2,3,70.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03486470300961928,12415.340028501494,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7254,2,72.0,0.0,2,111,0.0,0.0,1800.0,0,75,0.0,0.0,1134.5729227465388,1850.0,69.27946126982604,2154.117865616425,60,0,0,0,0,0,0,0,0,0,,1,,2,107260,2,2,1,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1147.95923434852,0.0,23830.95157605077,0,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07763013550240193,23830.95157605077,6,3,6,6_1,6_3,6_0_1 +7255,1,34.0,66.0,7,111,580.0,,,85,62,0.0,0.0,,668.0,121.93185183489385,,43,0,0,0,0,0,0,0,0,0,,2,,5,107261,2,1,0,0,2,,360.0,500.0,42,1.0,0.0,4.0,5.0,2.4,2,2,154.35983940550747,580.0,39605.74341587788,6,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016866240660747194,16502.393089949117,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +7256,2,83.0,0.0,2,111,210.0,210.0,0.0,77,78,0.0,0.0,358.0921141081328,420.0,0.0,398.6858500673557,70,0,0,0,0,0,0,0,0,0,,2,,2,107262,2,1,0,1,2,,400.0,700.0,41,0.0,3.0,3.0,2.0,1.5,2,2,705.498491366,210.0,27085.949619387862,5,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015506194388671832,18057.299746258574,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +7257,2,25.0,0.0,6,112,0.0,0.0,0.0,48,37,0.0,0.0,0.0,2035.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,107263,2,1,1,1,1,1030.0,246.0,750.0,43,2.0,0.0,3.0,2.0,1.5,2,2,208.421688057022,0.0,53023.23708839398,1,1,2,3,88.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038379399518884375,35348.82472559599,9,5,9,9_1,9_0,9_0_0 +7258,2,58.0,0.0,1,211,710.0,0.0,0.0,52,48,1223.4321072024577,0.0,1210.6923857941633,1965.0,131.6309764126695,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,107264,2,1,2,0,1,,581.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1699.94264766804,710.0,69249.31566163753,1,1,0,1,120.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028375731676559556,34624.65783081877,9,5,9,9_1,9_1,9_1_0 +7259,1,42.0,170.0,6,112,860.0,110.0,0.0,52,52,0.0,0.0,1466.4724672999725,970.0,0.0,208.8354452733768,71,0,0,0,0,0,0,0,0,2,45.0,1,,4,107265,1,1,2,0,1,,300.0,449.0,43,3.0,0.0,4.0,5.0,3.0,5,3,508.350966667593,860.0,54081.48144611478,1,1,2,3,100.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01793589920362074,18027.16048203826,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +7260,2,67.0,0.0,5,300,411.0,0.0,0.0,78,75,1919.5227888866148,0.0,700.8374233259171,2346.0,159.34276092059991,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107266,2,2,1,0,1,,305.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,709.055059869215,411.0,38455.81958789199,5,5,0,1,71.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06100507088759721,25637.213058594658,7,4,7,7_1,7_0,7_0_0 +7261,1,67.0,161.0,5,111,625.0,0.0,0.0,0,77,0.0,0.0,1065.7503396075383,625.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,3,107267,2,1,0,1,1,760.0,0.0,412.0,11,0.0,3.0,5.0,1.0,1.0,1,1,349.268910362976,625.0,25508.066130885032,0,5,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.024502053459993713,25508.066130885032,7,4,7,7_0,7_4,7_0_0 +7263,2,56.0,0.0,2,111,480.0,500.0,0.0,54,52,0.0,0.0,818.4962608185893,980.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,107269,1,1,0,1,1,600.0,0.0,268.0,43,2.0,2.0,3.0,2.0,1.5,2,2,372.845240206055,480.0,32161.410647209694,4,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.030471300240837672,21440.94043147313,6,3,6,6_0,6_3,6_0_1 +7264,2,61.0,0.0,2,300,1600.0,0.0,0.0,71,71,0.0,0.0,2728.320869395298,1635.0,48.49562288887823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,107270,2,1,1,0,1,,300.0,400.0,41,0.0,3.0,6.0,2.0,1.5,2,2,1067.85180462613,1600.0,38323.10838561751,6,5,2,3,125.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04266355389412014,25548.738923745008,7,4,7,7_1,7_0,7_0_1 +7265,2,42.0,0.0,5,112,3259.0,0.0,0.0,75,54,0.0,397.2981831030672,5557.248570849547,3679.0,166.2707070475825,0.0,12,0,0,0,0,0,0,0,0,2,90.0,1,,3,107271,2,1,2,0,1,,550.0,,42,1.0,2.0,6.0,3.0,1.8,2,2,590.309240003905,3259.0,54660.313379631305,5,1,0,1,110.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06730660277134357,30366.840766461835,8,4,8,8_1,8_1,8_0_0 +7266,2,49.0,0.0,1,111,650.0,1700.0,0.0,85,37,0.0,397.2981831030672,1108.3803531918397,2650.0,0.0,3227.4568814976415,71,0,0,0,0,0,0,0,0,4,75.0,1,,1,107272,2,1,2,0,1,,250.0,,42,1.0,0.0,6.0,4.0,2.5,4,3,682.146252508897,650.0,52487.42263270254,6,1,0,1,200.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05048828589935191,20994.969053081015,5,3,5,5_1,5_2,5_1_0 +7267,1,27.0,309.0,7,111,240.0,,,55,54,0.0,0.0,,282.0,58.19474746665388,,41,0,0,0,0,0,0,0,0,0,,2,,5,107273,2,1,0,0,2,,360.0,425.0,43,2.0,0.0,2.0,2.0,1.5,2,2,189.98973135518054,240.0,8080.420912340447,4,4,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03489917209254887,5386.947274893631,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7268,1,49.0,450.0,6,211,900.0,,,85,81,0.0,0.0,,1200.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,2,,4,107274,2,2,0,0,2,,1000.0,480.0,42,1.0,0.0,4.0,10.0,4.499999999999999,5,3,7.253920819854411,900.0,7885.321315290212,6,4,2,3,48.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15218149673534706,1752.2936256200474,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7269,2,59.0,0.0,2,111,414.0,0.0,0.0,52,54,0.0,0.0,705.9530249560333,459.0,62.351515142843446,0.0,31,2,1,2,1,1,2,1,2,2,45.0,2,,2,107275,1,2,0,1,2,807.0,0.0,615.0,43,2.0,4.0,4.0,2.0,1.5,2,2,434.797954878208,414.0,36152.00859631224,1,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.012696389988323394,24101.33906420816,6,3,6,6_0,6_3,6_0_1 +7270,1,74.0,126.0,2,111,420.0,0.0,0.0,86,78,0.0,0.0,716.1842282162656,939.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,107276,2,1,0,1,1,,0.0,500.0,41,0.0,4.0,4.0,2.0,1.5,2,2,342.27923569588,420.0,14601.147423315604,6,5,2,3,78.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0643100143280913,9734.098282210403,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7271,2,83.0,0.0,5,112,1550.0,0.0,0.0,77,78,0.0,158.91927324122688,2643.0608422266946,1760.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,107277,2,2,1,0,1,,422.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,1565.74310796179,1550.0,48101.08289096706,5,5,0,1,104.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03658961283656489,24050.54144548353,6,3,6,6_1,6_2,6_0_0 +7272,1,43.0,140.0,8,111,591.0,,,0,56,0.0,0.0,,612.0,29.09737373332694,,41,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,107278,1,3,0,0,2,,285.0,421.0,32,2.0,0.0,3.0,2.0,1.5,2,2,92.18014725498269,591.0,44165.52637376836,0,1,2,3,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013856961531958346,29443.68424917891,8,4,8,8_0,8_3,8_0_0 +7273,2,47.0,0.0,9,120,250.0,,,85,53,0.0,52.973091080408956,,374.0,116.38949493330776,,41,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,107279,2,1,0,0,1,,240.0,,42,1.0,0.0,6.0,4.0,2.5,4,3,113.21278155770004,250.0,50051.276831656505,6,1,0,1,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007472336844830538,20020.510732662602,5,3,5,5_1,5_2,5_0_0 +7274,2,47.0,0.0,6,112,2180.0,0.0,0.0,22,37,0.0,132.4327277010224,3717.3371845510933,2280.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,,4,107280,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,1071.70547214424,2180.0,86444.13399802467,1,1,0,1,140.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026375416058330808,34577.653599209865,9,5,9,9_1,9_0,9_0_0 +7275,2,48.0,0.0,1,111,700.0,1600.0,0.0,0,55,0.0,0.0,1193.6403803604428,2300.0,0.0,3037.6064767036623,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,107281,2,1,1,0,2,,250.0,,32,1.0,0.0,6.0,2.0,1.5,2,2,713.823341185727,700.0,22315.363248556394,0,1,0,1,88.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1030680063049742,14876.90883237093,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +7276,2,75.0,0.0,2,111,2500.0,0.0,0.0,71,71,0.0,648.9203657350097,4263.001358430153,3170.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107282,1,1,2,0,2,,50.0,,41,0.0,2.0,6.0,3.0,2.0,3,3,1171.50167870826,2500.0,42984.22558541415,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07374798444840838,21492.112792707074,6,3,6,6_1,6_3,6_0_1 +7277,1,57.0,95.0,8,111,480.0,850.0,0.0,85,67,0.0,0.0,818.4962608185893,1330.0,0.0,1613.7284407488207,50,2,2,2,2,2,2,2,1,0,,1,,6,107283,1,2,1,0,1,,280.0,525.0,42,2.0,2.0,5.0,3.0,2.0,3,3,214.006480900246,480.0,23318.801324647375,6,4,2,3,84.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.05703552174417405,11659.400662323687,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +7278,2,56.0,0.0,5,211,200.0,,,0,71,0.0,0.0,,288.0,121.93185183489385,,60,2,2,1,2,1,2,2,2,0,,1,,3,107284,2,1,0,0,2,,100.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,105.24351744262312,200.0,1241.9663970130678,0,7,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.2318903318903319,1241.9663970130678,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7279,1,42.0,429.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1187.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107285,1,3,0,1,1,562.0,302.0,382.0,31,0.0,0.0,5.0,4.0,2.1,2,1,251.193037487724,0.0,19020.40372766603,0,7,2,3,86.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06240666691388129,9057.335108412395,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7280,2,56.0,0.0,6,211,318.0,,,0,64,0.0,0.0,,428.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,107286,1,3,0,0,2,,240.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,103.97174975917966,318.0,18839.82617363542,0,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022717831685673727,12559.884115756948,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7281,0,27.0,0.0,6,211,600.0,,,22,64,0.0,0.0,,600.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,107287,2,2,0,0,2,,1000.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,7.560188772991673,600.0,13121.959520653938,6,1,5,0,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04572487813695822,6248.552152692351,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7282,1,52.0,47.0,2,111,410.0,0.0,0.0,56,52,0.0,0.0,699.1322227825451,410.0,0.0,0.0,50,1,2,1,2,1,2,2,2,2,20.0,2,,2,107288,1,3,0,1,1,960.0,0.0,374.0,43,2.0,0.0,4.0,3.0,2.0,3,2,322.634014949639,410.0,23644.78981412648,4,1,2,3,78.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.017339972282394627,11822.39490706324,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7283,0,64.0,0.0,6,111,600.0,,,71,54,0.0,0.0,,900.0,415.67676761895626,,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,107289,2,1,0,0,2,,1200.0,,42,2.0,6.0,5.0,4.0,2.5,4,4,96.05785916573058,600.0,25344.97142728346,6,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0355100025495063,10137.988570913385,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +7284,1,43.0,250.0,2,111,902.0,0.0,0.0,0,56,0.0,0.0,1538.0908901215992,902.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107290,2,1,0,1,1,60.0,332.0,356.0,32,1.0,0.0,4.0,4.0,2.3,4,3,243.313536396349,902.0,25205.809109138077,0,1,2,3,77.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.035785401535592454,10959.047438755686,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7286,1,24.0,62.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,545.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,5,107293,2,2,0,0,1,,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1837.90977094332,0.0,13765.750964481145,0,1,2,3,37.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.039591011155601125,13765.750964481145,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +7287,1,30.0,456.0,2,111,462.0,288.0,0.0,0,85,0.0,0.0,787.8026510378922,750.0,0.0,546.7691658066592,71,0,0,0,0,0,0,0,0,0,,2,,2,107294,2,1,0,1,1,980.0,790.0,406.0,31,0.0,0.0,5.0,5.0,2.2,1,1,288.757045237734,462.0,14081.037177528879,0,6,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05326312192378002,6400.471444331308,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7288,2,62.0,0.0,5,300,480.0,,,0,43,0.0,0.0,,720.0,332.541414095165,,33,0,0,0,0,0,0,0,0,0,,1,,3,107295,2,2,0,0,2,,720.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,88.67350010961052,480.0,48462.91770639825,0,1,0,1,64.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0148567200258548,48462.91770639825,10,5,10,10_1,10_1,10_0_0 +7289,2,48.0,0.0,9,211,795.0,0.0,0.0,52,47,0.0,0.0,1355.6344319807886,795.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,107296,1,1,0,0,1,,170.0,627.0,43,2.0,1.0,3.0,2.0,1.5,2,2,3569.08418965444,795.0,46808.13833381033,1,1,2,3,66.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016984225997848705,31205.425555873557,8,4,8,8_0,8_1,8_0_0 +7290,2,26.0,0.0,9,120,911.0,0.0,0.0,46,63,0.0,238.3789098618403,1553.4376950119477,1126.0,48.49562288887823,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,107297,2,1,1,0,1,,253.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1278.99989312115,911.0,14834.499019454737,1,1,1,2,115.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0759041473880112,9889.666012969825,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +7291,1,41.0,300.0,2,111,480.0,,,0,52,0.0,0.0,,730.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,2,35.0,7,,2,107298,2,3,0,0,2,,380.0,415.0,32,1.0,0.0,3.0,4.0,2.1,2,1,98.27609172976652,480.0,26610.673687451294,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.027432601240164906,12671.749374976805,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +7292,1,43.0,468.0,2,111,600.0,,,0,85,0.0,0.0,,705.0,145.4868686666347,,71,0,0,0,0,0,0,0,0,0,,2,,2,107299,2,3,0,0,2,,760.0,516.0,31,0.0,0.0,5.0,6.0,3.0999999999999996,4,3,120.9901679873741,600.0,25777.437314632447,0,6,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02734949915288165,8315.302359558855,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7293,2,51.0,0.0,7,111,150.0,200.0,0.0,0,45,0.0,0.0,255.78008150580916,350.0,0.0,379.7008095879578,42,0,0,0,0,0,0,0,0,3,90.0,2,,5,107300,2,2,0,0,1,,0.0,282.0,12,1.0,0.0,1.0,1.0,1.0,1,1,317.41518072702,150.0,27668.152025717376,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012649923264650172,27668.152025717376,7,4,7,7_0,7_4,7_0_0 +7294,1,35.0,170.0,2,112,500.0,0.0,0.0,37,63,0.0,476.7578197236806,852.6002716860306,1860.0,1385.589225396521,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,107301,1,1,1,0,1,,200.0,650.0,43,2.0,0.0,5.0,5.0,2.4,2,2,808.017399040423,500.0,37325.895001917306,1,1,2,3,110.0,7,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04983135702183318,15552.456250798878,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +7295,2,46.0,0.0,7,111,430.0,533.0,0.0,52,45,0.0,0.0,733.2362336499863,963.0,0.0,1011.9026575519075,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,107302,2,2,0,0,1,,0.0,479.0,43,2.0,0.0,3.0,5.0,2.8,4,3,721.636995836065,430.0,49937.18411549866,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019284227115663903,17834.708612678096,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7296,0,90.0,0.0,2,211,200.0,,,0,86,0.0,0.0,,326.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,107303,2,2,0,0,2,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,110.13918820814193,200.0,13569.5444015444,0,7,5,0,140.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024024388023145177,13569.5444015444,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +7297,2,43.0,0.0,9,111,1500.0,0.0,0.0,52,62,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,2005.0,6,107304,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,516.416009124108,1500.0,61308.55892968164,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024466404465980637,34060.3105164898,9,5,9,9_1,9_4,9_0_0 +7298,2,36.0,0.0,1,112,870.0,0.0,0.0,42,43,0.0,529.7309108040896,1483.5244727336933,1345.0,103.91919190473907,0.0,33,0,0,0,0,0,0,0,0,2,60.0,1,,1,107305,2,1,3,0,1,,104.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,524.278541661432,870.0,75504.6525894767,1,1,1,2,100.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017813471804351517,41947.029216375944,9,5,9,9_1,9_1,9_1_0 +7299,1,35.0,369.0,2,111,600.0,160.0,0.0,85,67,0.0,0.0,1023.1203260232367,760.0,0.0,303.7606476703662,20,1,2,2,2,1,2,2,2,2,25.0,2,,2,107306,1,3,0,1,2,577.0,0.0,316.0,42,1.0,0.0,4.0,5.0,2.4,2,2,288.485731812462,600.0,28257.74969429367,6,1,2,3,77.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.026895276808028112,11774.062372622364,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7300,0,52.0,0.0,5,111,1250.0,0.0,0.0,0,37,0.0,0.0,2131.5006792150766,1310.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,3,107307,2,1,1,0,1,1250.0,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,944.47567638837,1250.0,53180.214583330344,0,1,5,0,41.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024633221401303397,53180.214583330344,10,5,10,10_1,10_4,10_0_0 +7301,2,42.0,0.0,9,111,1296.0,0.0,0.0,0,38,0.0,0.0,2209.9399042101913,1296.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,50.0,2,2008.0,6,107308,2,1,0,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1587.35699809822,1296.0,57956.845604522445,0,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02236146544005272,57956.845604522445,10,5,10,10_0,10_4,10_0_0 +7304,2,81.0,0.0,9,111,250.0,700.0,0.0,0,78,0.0,0.0,426.3001358430153,950.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,107311,2,1,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,3924.0387410808,250.0,19316.761464633943,0,5,0,1,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0491800865139483,19316.761464633943,5,3,5,5_0,5_3,5_0_0 +7305,2,56.0,0.0,5,111,2400.0,0.0,0.0,56,63,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,107312,2,1,2,0,1,,300.0,,43,3.0,3.0,5.0,3.0,2.0,3,3,1562.5822707974,2400.0,47898.441136266294,1,1,0,1,120.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050106014790173216,23949.220568133147,6,3,6,6_1,6_3,6_0_0 +7306,2,62.0,0.0,1,111,272.0,387.0,0.0,74,47,0.0,953.5156394473612,463.81454779720065,1379.0,0.0,734.7210665526983,20,0,0,0,0,0,0,0,0,0,,1,,1,107313,2,1,1,0,1,,610.0,,42,1.0,0.0,6.0,3.0,2.0,3,3,1396.08729252676,272.0,83016.51059141282,5,1,0,1,145.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01661115349435854,41508.25529570641,9,5,9,9_1,9_3,9_1_0 +7308,1,54.0,253.0,7,111,0.0,,,0,77,0.0,0.0,,214.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,5,107315,2,1,0,0,2,,273.0,426.0,31,1.0,0.0,4.0,3.0,2.0,3,1,122.01455412530437,0.0,6573.323218900845,0,7,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03255583102694042,3286.6616094504225,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7309,2,52.0,0.0,6,111,800.0,,,31,11,0.0,264.8654554020448,,1090.0,124.70303028568689,,30,0,0,0,0,0,0,0,0,2,15.0,1,,4,107316,2,1,0,0,2,,700.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,221.24756787449328,800.0,19035.038296176423,1,1,0,1,150.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0572628214895133,12690.025530784282,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7310,2,67.0,0.0,5,112,1200.0,0.0,0.0,74,74,0.0,26.486545540204478,2046.2406520464733,1220.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,107317,2,1,1,0,1,,600.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1609.55285121478,1200.0,67451.86930240397,5,5,0,1,300.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01808697094116737,44967.91286826931,10,5,10,10_1,10_0,10_0_0 +7311,2,62.0,0.0,6,112,359.0,0.0,0.0,74,54,930.2302746142825,0.0,612.16699507057,1263.0,30.482962958723462,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,107318,2,1,2,0,1,,321.0,,42,1.0,0.0,7.0,3.0,2.0,3,3,1725.18767267795,359.0,146961.13372372554,5,1,0,1,130.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00859410898649117,73480.56686186277,10,5,10,10_1,10_1,10_0_0 +7312,1,56.0,304.0,7,211,700.0,0.0,0.0,21,31,0.0,397.2981831030672,1193.6403803604428,1060.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,107319,2,1,3,0,1,,250.0,684.0,43,2.0,5.0,4.0,2.0,1.5,2,2,696.015370029002,700.0,2485.083211213205,1,1,2,3,104.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.4265450731054247,1656.7221408088033,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +7313,2,59.0,0.0,5,112,400.0,2075.0,0.0,56,75,0.0,0.0,682.0802173488245,2475.0,0.0,3939.3958994750624,50,0,0,0,0,0,0,0,0,0,,1,,3,107320,1,1,3,0,2,,250.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,62.9502790013165,400.0,71608.0067096943,1,5,0,1,104.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03456317406004452,35804.00335484715,9,5,9,9_1,9_0,9_0_0 +7314,2,60.0,0.0,2,111,540.0,,,45,34,0.0,0.0,,580.0,55.423569015860835,,41,0,0,0,0,0,0,0,0,2,5.0,2,,2,107321,2,1,0,0,2,,320.0,,43,3.0,3.0,4.0,3.0,2.0,3,3,101.02518260068908,540.0,73935.50612804541,1,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00784467477635881,36967.753064022705,9,5,9,9_0,9_3,9_0_1 +7315,2,56.0,0.0,1,112,4275.0,0.0,0.0,31,31,0.0,0.0,7289.732322915562,4275.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,12.0,1,,1,107322,2,1,1,0,1,,1085.0,,43,2.0,2.0,7.0,4.0,2.3,3,3,712.632308372846,4275.0,176137.36329860092,1,1,0,1,250.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02427082999279777,76581.46230373954,10,5,10,10_1,10_0,10_1_0 +7316,2,61.0,0.0,6,112,1700.0,0.0,0.0,74,77,0.0,0.0,2898.840923732504,1790.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,107323,2,1,2,0,1,,280.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1504.98411327996,1700.0,48444.21243603431,5,5,0,1,210.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03694971824267995,32296.141624022872,8,4,8,8_1,8_1,8_0_0 +7317,2,75.0,0.0,2,111,567.0,619.0,0.0,0,56,0.0,0.0,966.8487080919587,1186.0,0.0,1175.1740056747294,50,0,0,0,0,0,0,0,0,0,,1,,2,107324,2,1,1,0,1,,267.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1297.45996035551,567.0,25302.251447426563,0,4,0,1,103.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04687329910005402,25302.251447426563,7,4,7,7_1,7_2,7_0_1 +7318,2,69.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1079.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,107325,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,434.958902447352,0.0,52849.70248180398,0,5,1,2,110.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02041638740296593,52849.70248180398,10,5,10,10_0,10_2,10_0_1 +7319,2,26.0,0.0,1,111,600.0,250.0,0.0,55,37,0.0,0.0,1023.1203260232367,850.0,0.0,474.62601198494724,30,0,0,0,0,0,0,0,0,3,15.0,2,,1,107326,2,1,0,1,1,,0.0,1200.0,43,2.0,0.0,2.0,2.0,1.5,2,2,901.686751714145,600.0,48393.56301494135,1,1,3,4,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01756431944755887,32262.375343294232,8,4,8,8_0,8_4,8_1_0 +7320,2,33.0,0.0,2,221,350.0,1400.0,0.0,42,52,0.0,0.0,596.8201901802214,1810.0,83.13535352379125,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,2,107327,2,1,3,0,1,,503.0,,43,2.0,0.0,3.0,4.0,2.3,3,3,2080.70688537993,350.0,28723.756692642368,1,1,0,1,75.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06301404162999452,12488.589866366248,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +7321,2,40.0,0.0,7,120,240.0,,,52,52,0.0,0.0,,492.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,107328,2,1,0,0,2,,792.0,,43,2.0,2.0,6.0,3.0,1.8,2,2,126.83935436188733,240.0,23529.69764506023,4,4,0,1,96.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020909745948362805,13072.054247255683,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7322,2,74.0,0.0,5,111,700.0,,,0,77,0.0,0.0,,700.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,107329,1,1,0,0,1,,600.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,84.94014318143101,700.0,19903.600000000002,0,5,0,1,78.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03516951707228843,19903.600000000002,5,3,5,5_1,5_2,5_0_0 +7323,0,89.0,0.0,2,111,150.0,55.0,0.0,0,78,0.0,0.0,255.78008150580916,205.0,0.0,104.4177226366884,70,2,1,2,1,2,2,2,2,0,,2,,2,107330,2,1,0,1,2,710.0,53.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1922.06346338596,150.0,15937.0,0,5,5,0,65.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.012863148647800715,15937.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +7324,0,34.0,0.0,1,112,800.0,0.0,0.0,46,21,2109.365702073203,0.0,1364.160434697649,2890.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107331,1,2,1,0,1,,315.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1755.08703504102,800.0,40005.614187705156,1,1,5,0,75.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07223986079654235,26670.409458470105,7,4,7,7_1,7_0,7_1_0 +7325,1,34.0,275.0,1,111,450.0,0.0,0.0,43,67,0.0,834.326184516441,767.3402445174275,1130.0,69.27946126982604,0.0,60,2,2,1,2,1,2,2,2,0,,1,,1,107332,2,2,2,0,1,,350.0,263.0,43,2.0,0.0,3.0,2.0,1.5,2,2,61.5774426432309,450.0,17274.62363276109,1,1,2,3,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.06541387089076547,11516.415755174059,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +7326,2,57.0,0.0,1,111,275.0,562.0,0.0,0,54,0.0,0.0,468.93014942731685,837.0,0.0,1066.9592749421615,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,107333,2,1,2,0,1,,125.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,649.114056125141,275.0,17945.53142437683,0,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046641137573838407,17945.53142437683,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +7327,2,43.0,0.0,1,112,1600.0,0.0,0.0,21,52,0.0,264.8654554020448,2728.320869395298,1865.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,107334,2,1,2,0,1,,127.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,1986.95605487421,1600.0,49708.00624124314,1,1,0,1,120.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037519106900984374,19883.20249649726,5,3,5,5_1,5_1,5_1_0 +7328,2,79.0,0.0,2,111,435.0,1093.0,0.0,77,78,0.0,0.0,741.7622363668467,1648.0,166.2707070475825,2075.0649243981893,50,0,0,0,0,0,0,0,0,0,,1,,2,107335,2,1,1,0,1,,344.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1051.42351983304,435.0,26595.631802244094,5,5,0,1,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061965062994327684,17730.42120149606,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +7329,2,59.0,0.0,6,120,1040.0,0.0,0.0,67,62,0.0,233.08160075379942,1773.4085651069436,1216.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,7.0,1,,4,107336,2,1,1,0,1,,470.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,522.862533052857,1040.0,41662.527276736015,1,1,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02918689958299778,27775.018184490677,7,4,7,7_1,7_0,7_0_0 +7330,2,41.0,0.0,2,111,300.0,0.0,0.0,0,46,0.0,0.0,511.56016301161833,300.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,2,107337,1,2,0,1,1,336.0,0.0,650.0,22,2.0,0.0,2.0,2.0,1.5,2,2,866.648655561795,300.0,43635.40164552019,0,4,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0068751515670029215,29090.267763680127,8,4,8,8_0,8_4,8_0_1 +7332,2,61.0,0.0,9,112,720.0,,,0,47,0.0,0.0,,810.0,124.70303028568689,,44,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107339,2,1,0,0,2,,300.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,101.0781440922649,720.0,10809.339982653939,0,4,0,1,90.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07493519505352135,10809.339982653939,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +7333,2,33.0,0.0,9,111,780.0,0.0,0.0,0,53,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,107340,2,1,0,0,1,,0.0,380.0,32,1.0,0.0,2.0,2.0,1.3,1,1,553.241550293957,780.0,31229.394845177914,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024976468608082513,24022.611419367626,6,3,6,6_0,6_4,6_0_0 +7335,2,65.0,0.0,2,112,2170.0,0.0,0.0,75,72,0.0,0.0,3700.2851791173725,2210.0,55.423569015860835,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,107342,2,2,2,0,1,,67.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1748.17545158439,2170.0,57949.68375987057,5,5,0,1,118.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03813653253325253,38633.12250658038,9,5,9,9_1,9_0,9_0_1 +7336,2,33.0,0.0,5,111,200.0,120.0,0.0,0,52,0.0,0.0,341.04010867441224,320.0,0.0,227.8204857527747,71,2,1,2,2,1,2,2,2,3,30.0,2,,3,107343,2,3,0,1,1,,0.0,468.0,12,1.0,0.0,2.0,1.0,1.0,1,1,387.829498950194,200.0,16669.516416808587,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01919671764906931,16669.516416808587,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7337,2,49.0,0.0,2,112,500.0,1600.0,0.0,56,53,0.0,0.0,852.6002716860306,2190.0,124.70303028568689,3037.6064767036623,60,2,2,2,1,2,1,2,2,2,10.0,1,,2,107344,2,3,4,0,1,,295.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,1609.9121147398,500.0,38199.28940963077,1,1,1,2,100.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05733090939246265,15279.71576385231,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +7338,1,40.0,302.0,2,111,340.0,600.0,0.0,0,56,0.0,0.0,579.7681847465008,940.0,0.0,1139.1024287638734,41,2,2,2,2,1,2,2,2,0,,2,,2,107345,2,3,0,0,1,,0.0,264.0,32,1.0,0.0,2.0,3.0,1.8,2,1,1494.79460850272,340.0,11443.002713122196,0,4,3,4,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.08214627083169879,6357.2237295123305,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +7339,1,34.0,160.0,1,112,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1457.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,107346,1,2,0,0,1,,285.0,560.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2536.07438742529,0.0,16941.803194361346,0,4,2,3,70.0,9,5,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08600029071786915,13032.156303354881,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +7340,2,30.0,0.0,1,111,70.0,204.0,0.0,56,55,0.0,0.0,119.36403803604428,274.0,0.0,387.294825779717,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,107347,2,1,0,0,1,,0.0,843.0,43,2.0,0.0,3.0,3.0,1.8,2,2,482.842134707468,70.0,43932.98027420629,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006236772426769998,24407.211263447938,7,4,7,7_0,7_4,7_1_0 +7341,2,56.0,0.0,9,112,590.0,0.0,0.0,77,63,0.0,407.892801319149,1006.0683205895161,991.0,128.85979796187644,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,107348,2,1,1,0,1,,461.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,741.853616118483,590.0,49157.67594271239,5,1,1,2,67.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020159618635244195,24578.837971356195,7,4,7,7_1,7_0,7_0_0 +7342,2,48.0,0.0,2,111,600.0,,,0,67,0.0,0.0,,784.0,254.94841747295985,,41,0,0,0,0,0,0,0,0,0,,1,,2,107349,2,2,0,0,1,,760.0,,22,1.0,2.0,4.0,3.0,2.0,3,3,86.27834227390791,600.0,32077.265328719077,0,1,0,1,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02444098622391222,16038.632664359538,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +7343,2,44.0,0.0,2,111,1440.0,1300.0,0.0,0,37,0.0,0.0,2455.488782455768,2740.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,2,90.0,1,,2,107350,2,1,2,0,1,,490.0,,32,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,479.30326573149,1440.0,140010.8287774393,0,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019569914869624075,53850.318760553586,10,5,10,10_1,10_4,10_0_1 +7344,2,57.0,0.0,2,111,1140.0,0.0,0.0,0,52,0.0,0.0,1943.9286194441497,1140.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,5.0,2,,2,107351,1,1,0,0,1,,0.0,480.0,32,3.0,1.0,4.0,3.0,2.0,3,3,337.868211571636,1140.0,63447.77472562017,0,1,2,3,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.017967533218145613,31723.887362810085,8,4,8,8_0,8_4,8_0_1 +7345,2,30.0,0.0,5,111,3000.0,0.0,0.0,54,43,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,20,2,2,2,2,1,2,1,2,0,,2,,3,107352,1,3,0,0,1,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,733.835174547312,3000.0,74604.46543131258,1,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.040212070184485985,41446.9252396181,9,5,9,9_0,9_4,9_0_0 +7346,2,63.0,0.0,2,111,0.0,0.0,0.0,86,75,0.0,0.0,0.0,384.0,0.0,0.0,50,2,2,2,2,2,1,2,2,0,,2,,2,107353,1,3,0,1,1,840.0,0.0,220.0,41,0.0,1.0,3.0,2.0,1.5,2,2,904.838685640157,0.0,35257.47865469294,5,5,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010891306317188616,23504.985769795294,6,3,6,6_0,6_4,6_0_1 +7347,1,53.0,254.0,1,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,939.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,107354,2,1,0,0,1,,81.0,420.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2647.20701873986,0.0,21369.809411642433,0,1,2,3,50.0,6,4,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04394049483138702,21369.809411642433,6,3,6,6_0,6_2,6_1_0 +7348,2,59.0,0.0,5,111,205.0,0.0,0.0,0,77,0.0,0.0,349.56611139127256,205.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,107355,2,1,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1081.76681877849,205.0,13147.162827228145,0,5,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015592717812503184,13147.162827228145,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +7349,2,23.0,0.0,9,111,570.0,0.0,0.0,43,47,0.0,0.0,971.9643097220749,570.0,0.0,0.0,43,2,2,1,2,1,2,2,2,0,,2,2006.0,6,107356,2,1,0,0,1,,0.0,485.0,43,2.0,0.0,2.0,2.0,1.5,2,2,944.029150793529,570.0,20726.818830384345,1,1,2,3,34.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.027500602222875235,13817.87922025623,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7350,2,68.0,0.0,2,111,950.0,0.0,0.0,78,77,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107357,2,2,2,0,1,,0.0,558.0,41,0.0,6.0,4.0,2.0,1.5,2,2,1221.58420452225,950.0,34525.72357289657,5,5,2,3,70.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027515715868899858,23017.149048597712,6,3,6,6_1,6_2,6_0_1 +7351,2,50.0,0.0,2,111,405.0,852.0,0.0,56,33,0.0,0.0,690.6062200656847,1347.0,124.70303028568689,1617.5254488447001,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,107358,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,2167.2226246806,405.0,44327.442691454125,1,1,0,1,80.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030387496282515927,29551.628460969416,8,4,8,8_0,8_2,8_0_1 +7352,2,60.0,0.0,2,111,1200.0,1200.0,0.0,0,43,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,33,0,0,0,0,0,0,0,0,0,,2,,2,107359,2,1,0,1,1,1060.0,0.0,387.0,32,2.0,0.0,4.0,2.0,1.5,2,2,291.828044047622,1200.0,37595.35391354998,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06383767540847649,25063.56927569999,7,4,7,7_0,7_4,7_0_1 +7354,2,32.0,0.0,1,111,280.0,584.0,0.0,84,52,0.0,0.0,477.4561521441771,864.0,0.0,1108.7263639968369,50,0,0,0,0,0,0,0,0,1,20.0,2,,1,107361,2,1,0,0,1,,0.0,257.0,42,1.0,0.0,1.0,2.0,1.5,2,2,1044.49806872304,280.0,27006.785333569296,3,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03199196014366258,18004.523555712865,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +7355,2,50.0,0.0,9,111,480.0,,,56,52,0.0,0.0,,526.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,107362,2,1,0,0,2,,300.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,219.27889552545665,480.0,35109.73323602947,4,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014981600585339136,23406.488824019645,6,3,6,6_1,6_2,6_0_0 +7356,2,48.0,0.0,2,111,704.0,720.0,0.0,78,68,0.0,0.0,1200.4611825339312,1424.0,0.0,1366.922914516648,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,107363,1,3,0,1,1,628.0,0.0,339.0,42,3.0,0.0,3.0,5.0,3.0,5,5,365.797248682815,704.0,48106.5671102987,5,1,2,3,75.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029600948176889318,16035.522370099568,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +7357,1,53.0,271.0,2,111,250.0,1500.0,0.0,0,67,0.0,0.0,426.3001358430153,1870.0,166.2707070475825,2847.7560719096837,71,2,2,2,2,2,2,2,1,0,,1,,2,107364,2,2,2,0,1,,350.0,386.0,32,2.0,6.0,4.0,2.0,1.5,2,2,272.07567575015,250.0,7463.642072213501,0,4,2,3,73.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.25054792042638935,4975.761381475667,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +7358,2,56.0,0.0,7,112,2000.0,0.0,0.0,21,56,0.0,0.0,3410.4010867441225,2075.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,107365,2,1,1,0,1,,500.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1481.6972900064,2000.0,52505.04400019217,1,1,0,1,150.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03952001259140751,35003.362666794776,9,5,9,9_1,9_0,9_0_0 +7359,1,49.0,485.0,5,111,2000.0,0.0,0.0,85,68,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,3,107366,2,1,0,1,1,984.0,0.0,439.0,42,2.0,0.0,4.0,8.0,3.6999999999999993,4,4,206.526587777914,2000.0,21537.640750898376,6,4,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.09286068159144015,5820.983986729292,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +7360,2,55.0,0.0,6,111,500.0,1100.0,0.0,67,38,0.0,331.081819252556,852.6002716860306,1850.0,0.0,2088.354452733768,42,0,0,0,0,0,0,0,0,2,90.0,1,,4,107367,2,1,2,0,1,,600.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,692.736570678398,500.0,86228.37711930684,1,1,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02145465404550422,57485.58474620456,10,5,10,10_1,10_2,10_0_0 +7361,2,66.0,0.0,1,111,186.0,,,0,55,0.0,0.0,,324.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,107368,1,2,0,0,2,,255.0,,22,2.0,2.0,4.0,2.0,1.5,2,2,104.48993766980698,186.0,12378.423533163677,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02617457700748038,8252.282355442452,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +7362,2,65.0,0.0,6,111,0.0,,,0,22,0.0,0.0,,645.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,107369,2,2,0,0,2,,126.0,900.0,22,1.0,2.0,4.0,2.0,1.5,2,2,82.38977593633344,0.0,16962.544680851064,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03802495510759877,11308.363120567376,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +7363,2,47.0,0.0,8,111,1400.0,0.0,0.0,22,55,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,107370,2,2,2,0,1,,512.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,811.699139752858,1400.0,27375.495270317013,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05114062727179247,11902.38924796392,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +7364,2,45.0,0.0,1,300,0.0,0.0,0.0,54,46,0.0,0.0,0.0,2165.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,2,,1,107371,2,2,0,0,1,,630.0,340.0,43,2.0,5.0,3.0,2.0,1.5,2,2,1847.5767304383,0.0,40869.87074470094,1,1,2,3,80.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05297300824668518,27246.58049646729,7,4,7,7_0,7_0,7_1_0 +7365,1,53.0,336.0,2,111,216.0,,,0,56,0.0,0.0,,540.0,448.9309090284728,,71,0,0,0,0,0,0,0,0,0,,2,,2,107372,2,3,0,0,2,,672.0,334.0,32,1.0,2.0,3.0,2.0,1.5,2,2,94.39396462533622,216.0,9136.34188034188,0,4,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.059104618355174034,6090.8945868945875,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7366,2,63.0,0.0,5,211,600.0,0.0,0.0,74,34,0.0,0.0,1023.1203260232367,725.0,173.19865317456512,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,107373,2,2,2,0,1,,200.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,2395.87775254684,600.0,43154.770688222685,6,1,1,2,120.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0167999965806297,28769.84712548179,8,4,8,8_1,8_1,8_0_0 +7367,2,72.0,0.0,5,112,600.0,0.0,0.0,77,74,0.0,662.163638505112,1023.1203260232367,1200.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,107374,2,1,2,0,1,,300.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,1044.63259599628,600.0,46372.07750039763,5,5,0,1,155.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025877641561125018,23186.038750198815,6,3,6,6_1,6_1,6_0_0 +7368,0,46.0,0.0,6,111,800.0,,,85,68,0.0,0.0,,1376.0,798.099393828396,,50,0,0,0,0,0,0,0,0,0,,1,,4,107375,1,2,0,0,2,,320.0,,42,3.0,0.0,3.0,7.0,3.6,5,4,122.19783975119373,800.0,27564.506363702334,6,4,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04991926870897833,7656.807323250649,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7369,2,66.0,0.0,6,111,1804.0,0.0,0.0,77,78,0.0,0.0,3076.1817802431983,1924.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,107376,2,1,2,0,1,,500.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,633.260949405186,1804.0,30162.206526483522,7,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06378843664208245,20108.137684322348,5,3,5,5_1,5_4,5_0_0 +7370,2,51.0,0.0,9,111,420.0,,,54,33,0.0,0.0,,492.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,107377,2,1,0,0,1,,142.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,254.65766019943496,420.0,61306.288689159366,1,1,1,2,123.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008025277838862217,26654.908125721464,7,4,7,7_1,7_2,7_0_0 +7371,2,66.0,0.0,6,111,1700.0,0.0,0.0,52,75,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,107378,2,1,2,0,1,,318.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1429.05610002759,1700.0,31651.71070371946,1,5,0,1,100.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05370957721410709,21101.140469146307,5,3,5,5_1,5_2,5_0_0 +7372,2,65.0,0.0,7,111,200.0,,,0,34,0.0,0.0,,248.0,66.50828281903301,,20,0,0,0,0,0,0,0,0,0,,1,,5,107379,1,2,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,46.11037383939535,200.0,45343.49028266956,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005469362822622996,45343.49028266956,10,5,10,10_1,10_2,10_0_0 +7373,2,74.0,0.0,7,111,400.0,0.0,0.0,77,74,0.0,0.0,682.0802173488245,400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,107380,2,1,0,0,1,,0.0,,41,0.0,2.0,2.0,3.0,2.0,3,3,889.602526993328,400.0,50593.791761471286,5,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007906108359812878,25296.895880735643,7,4,7,7_0,7_4,7_0_0 +7374,2,41.0,0.0,1,111,800.0,0.0,0.0,0,53,3164.0485531098047,0.0,1364.160434697649,3800.0,0.0,0.0,60,2,2,2,1,1,2,2,2,2,10.0,1,,1,107381,2,3,3,0,1,,392.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1660.42237688533,800.0,25361.593930520154,0,1,1,2,70.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.14983285397638507,25361.593930520154,7,4,7,7_1,7_2,7_1_0 +7375,2,53.0,0.0,6,112,3132.0,0.0,0.0,0,33,0.0,0.0,5340.688101841296,3132.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,107382,2,1,2,0,1,,297.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,730.778273661512,3132.0,47115.83543674393,0,1,0,1,116.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06647446598299023,47115.83543674393,10,5,10,10_1,10_0,10_0_0 +7376,1,50.0,250.0,2,111,1080.0,1200.0,0.0,56,53,0.0,0.0,1841.6165868418261,2280.0,0.0,2278.2048575277468,30,2,2,2,1,2,2,2,2,3,180.0,2,,2,107383,1,2,0,0,1,,0.0,1000.0,43,2.0,1.0,4.0,6.0,2.9,3,2,931.723389288459,1080.0,34144.253748217016,4,1,2,3,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06677551124159684,11773.880602833455,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +7377,2,55.0,0.0,1,112,984.0,0.0,0.0,56,62,0.0,635.6770929649075,1677.917334678108,1564.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,107384,2,1,1,0,1,,150.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,568.00578033006,984.0,26998.369062249603,1,1,0,1,110.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05792942515875371,17998.9127081664,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7378,1,79.0,130.0,6,111,0.0,,,0,86,0.0,0.0,,410.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,4,107385,2,2,0,0,2,,63.0,400.0,11,0.0,6.0,3.0,1.0,1.0,1,1,120.12774465382644,0.0,8331.158985932203,0,6,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04921284069747273,8331.158985932203,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7379,2,63.0,0.0,2,111,500.0,1208.0,0.0,53,75,0.0,0.0,852.6002716860306,1708.0,0.0,2293.3928899112652,33,0,0,0,0,0,0,0,0,0,,1,,2,107386,2,1,2,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,249.453321317259,500.0,50674.89115891235,1,5,0,1,110.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033705055125700226,33783.260772608235,9,5,9,9_1,9_2,9_0_1 +7380,2,57.0,0.0,1,221,850.0,0.0,0.0,0,21,0.0,0.0,1449.420461866252,850.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,107387,2,2,2,0,1,,159.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,565.810732046679,850.0,8910.442241054592,0,1,0,1,120.0,1,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.09539369393851753,8910.442241054592,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +7381,2,75.0,0.0,1,211,240.0,0.0,0.0,86,78,0.0,635.6770929649075,409.2481304092947,1080.0,498.81212114274757,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107388,2,1,2,0,2,,120.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,1262.75014755114,240.0,19300.532501355745,5,5,0,1,120.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05595700532739895,9650.266250677872,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +7382,1,34.0,255.0,2,211,253.0,1000.0,0.0,0,67,0.0,0.0,431.41573747313146,1253.0,0.0,1898.504047939789,50,2,2,1,2,2,2,2,1,0,,2,,2,107389,2,1,0,0,1,,198.0,245.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1407.04308133487,253.0,6065.861552841339,0,4,2,3,80.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.20656587511679628,6065.861552841339,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +7383,2,71.0,0.0,6,111,1000.0,0.0,0.0,77,72,0.0,0.0,1705.2005433720612,1090.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,107390,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,383.941791771389,1000.0,22710.42571068774,5,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04799557762085612,15140.28380712516,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7384,1,68.0,190.0,2,111,250.0,,,0,77,0.0,0.0,,290.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,0,,8,,2,107391,1,3,0,0,2,,200.0,293.0,11,0.0,4.0,2.0,1.0,1.0,1,1,124.04781866730336,250.0,10812.854992824257,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026819928704532977,10812.854992824257,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7385,2,46.0,0.0,1,400,1625.0,0.0,0.0,0,22,0.0,0.0,2770.9508829795996,1691.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,0,,8,,1,107392,2,2,0,0,2,,113.0,300.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1308.10176220594,1625.0,9462.10823270607,0,1,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.17871281520063426,9462.10823270607,1,1,1_0,1_0_0,1_0_0,1_1_0_0 +7386,2,51.0,0.0,2,111,439.0,965.0,0.0,42,38,0.0,0.0,748.5830385403349,1404.0,0.0,1832.0564062618964,31,0,0,0,0,0,0,0,0,3,90.0,1,,2,107393,2,2,2,0,1,,797.0,,43,3.0,2.0,4.0,6.0,2.8999999999999995,3,3,633.435828063613,439.0,57697.98642722544,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024333604809084062,19895.85738869843,5,3,5,5_1,5_4,5_0_1 +7387,2,65.0,0.0,7,112,900.0,0.0,0.0,37,72,2531.2388424878436,0.0,1534.680489034855,3340.0,55.423569015860835,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,107394,2,1,2,0,1,,711.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,819.252927622257,900.0,127555.09512259858,1,5,0,1,230.0,10,4,1,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026184763507798612,85036.73008173238,10,5,10,10_1,10_2,10_0_0 +7388,2,67.0,0.0,5,111,1666.0,0.0,0.0,75,77,0.0,0.0,2840.864105257854,1666.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,107395,1,1,2,0,1,,245.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1248.50702462091,1666.0,48478.400795273774,5,5,0,1,125.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03436582009038591,32318.93386351585,8,4,8,8_1,8_3,8_0_0 +7389,2,44.0,0.0,7,112,1000.0,0.0,0.0,56,48,0.0,0.0,1705.2005433720612,2600.0,2216.9427606344334,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,107396,2,1,2,0,1,,550.0,360.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,4,2,345.025805078236,1000.0,36512.11954292421,1,1,2,3,130.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07120923223707679,14043.122901124698,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7391,2,48.0,0.0,9,111,540.0,,,55,67,0.0,0.0,,540.0,0.0,,50,2,2,1,2,1,2,2,2,0,,1,2005.0,6,107398,2,2,0,0,1,,100.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,107.00080740724314,540.0,44720.892325276676,1,1,0,1,101.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.012074893230490994,19443.866228381165,5,3,5,5_1,5_2,5_0_0 +7392,2,45.0,0.0,9,212,666.0,0.0,0.0,63,55,689.7625845779374,0.0,1135.6635618857927,1360.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,107399,2,1,1,0,1,,182.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,846.134679259727,666.0,38614.620079786335,1,1,1,2,90.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03521982081372132,25743.08005319089,7,4,7,7_1,7_0,7_0_0 +7393,2,40.0,0.0,1,120,1320.0,0.0,0.0,85,65,0.0,0.0,2250.864717251121,1410.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,107400,2,1,1,0,1,,575.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1125.85382628186,1320.0,19537.03004854501,6,1,1,2,121.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07217064192952949,9303.34764216429,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +7394,0,35.0,0.0,8,211,0.0,,,0,81,0.0,0.0,,100.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107401,1,2,0,0,2,,0.0,,32,1.0,0.0,4.0,8.0,3.499999999999999,3,1,7.559826641115449,0.0,6743.026618342536,0,4,5,0,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014830135732814357,1926.5790338121535,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7395,2,31.0,0.0,7,111,200.0,,,0,56,0.0,0.0,,375.0,242.47811444439117,,50,0,0,0,0,0,0,0,0,0,,1,,5,107402,2,1,0,0,2,,120.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,66.35294690058242,200.0,14499.959101258564,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025862141912348625,14499.959101258564,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +7396,1,34.0,366.0,7,111,600.0,0.0,0.0,63,52,0.0,0.0,1023.1203260232367,756.0,216.15191916185728,0.0,50,2,2,2,1,2,1,2,2,2,10.0,1,,5,107403,1,3,3,0,2,,112.0,600.0,43,2.0,0.0,5.0,5.0,2.4,2,2,2703.27241438241,600.0,8717.393168680459,4,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.08672317347302058,3632.247153616858,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +7397,2,29.0,0.0,2,111,500.0,300.0,0.0,85,62,0.0,0.0,852.6002716860306,800.0,0.0,569.5512143819367,43,2,1,2,1,1,2,2,2,3,45.0,2,,2,107404,2,3,0,1,1,673.0,0.0,430.0,42,1.0,0.0,3.0,2.0,1.5,2,2,231.935107497739,500.0,23816.59611953646,6,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03359002251979114,15877.730746357642,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +7398,1,47.0,282.0,7,112,300.0,,,0,55,0.0,0.0,,450.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,107405,2,3,0,0,2,,600.0,414.0,32,1.0,0.0,4.0,3.0,1.8,2,1,98.86767685264869,300.0,14552.773167858117,0,1,2,3,80.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030921941461568948,8084.873982143398,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +7399,1,66.0,200.0,6,400,564.0,,,0,90,0.0,0.0,,564.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,107406,1,1,0,0,2,,560.0,670.0,11,0.0,2.0,3.0,1.0,1.0,1,1,140.03920430815933,564.0,19488.66125962556,0,5,2,3,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02893990472133827,19488.66125962556,5,3,5,5_1,5_0,5_0_0 +7400,2,67.0,0.0,2,400,500.0,0.0,0.0,77,78,1582.0242765549024,0.0,852.6002716860306,2100.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107407,2,1,1,0,1,,282.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,846.076546452269,500.0,21823.66628925316,5,5,0,1,70.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09622581156467387,14549.110859502107,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +7401,1,40.0,24.0,5,111,260.0,0.0,0.0,0,52,0.0,0.0,443.3521412767359,632.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,3,107408,2,2,0,1,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,292.79575935125,260.0,23668.916011480236,0,1,1,2,85.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026701687550602586,18206.85847036941,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +7402,2,66.0,0.0,2,111,0.0,0.0,580.0,0,78,0.0,0.0,365.5846084405514,580.0,0.0,694.1046455875148,70,0,0,0,0,0,0,0,0,0,,2,,2,107409,2,1,0,1,1,,170.0,341.0,11,0.0,4.0,2.0,1.0,1.0,1,1,438.648109454016,0.0,16721.052724457466,0,5,2,3,92.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03468681126467884,16721.052724457466,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +7403,2,63.0,0.0,2,111,1000.0,500.0,0.0,78,62,0.0,0.0,1705.2005433720612,1500.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,107410,2,2,0,0,1,,0.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,501.629766482129,1000.0,38230.97846126707,5,1,0,1,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03923519774728482,25487.318974178048,7,4,7,7_0,7_3,7_0_1 +7404,1,29.0,330.0,5,111,500.0,0.0,0.0,85,67,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,107411,1,2,0,1,1,864.0,0.0,530.0,42,1.0,0.0,3.0,4.0,2.1,2,2,794.008865450127,500.0,27341.66782460019,6,4,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.01828710681468135,13019.841821238186,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +7405,2,64.0,0.0,9,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1778.0,105.3047811301356,0.0,70,0,0,0,0,0,0,0,0,0,,1,2009.0,6,107412,2,1,1,0,1,,260.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1693.45769334085,0.0,18885.88532919754,0,5,0,1,114.0,9,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0941443818496142,18885.88532919754,5,3,5,5_1,5_2,5_0_0 +7406,1,33.0,50.0,5,111,350.0,700.0,0.0,54,42,0.0,0.0,596.8201901802214,1050.0,0.0,1328.9528335578523,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,107413,2,2,0,0,1,,0.0,365.0,43,2.0,0.0,3.0,4.0,2.1,2,2,428.319339600677,350.0,20033.38242900628,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05241251714337105,9539.705918574418,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7407,2,80.0,0.0,2,300,0.0,0.0,0.0,0,72,1160.1511361402618,0.0,0.0,2795.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107414,2,1,1,0,1,,168.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,1523.96346612236,0.0,15874.25876665876,0,5,0,1,80.0,0,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17607121321912886,15874.25876665876,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +7408,2,32.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1220.0,0.0,0.0,33,0,0,0,0,0,0,0,0,4,20.0,2,,1,107415,2,2,0,1,1,,0.0,369.0,32,2.0,0.0,4.0,4.0,2.1,2,2,619.82208424185,0.0,21280.715635972116,0,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.057328899124884605,10133.674112367673,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +7409,2,44.0,0.0,6,112,1280.0,0.0,0.0,85,52,0.0,0.0,2182.6566955162384,1330.0,69.27946126982604,0.0,50,2,2,2,2,1,2,2,2,2,10.0,1,,4,107416,1,2,3,0,1,,300.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,985.258728304985,1280.0,37859.27363336584,7,1,1,2,90.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03513009818624346,21032.929796314354,5,3,5,5_1,5_0,5_0_0 +7410,2,38.0,0.0,9,120,976.0,0.0,0.0,62,43,0.0,264.8654554020448,1664.2757303311316,1176.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,107417,2,1,1,0,1,,733.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,889.355585285334,976.0,46228.40292548331,1,1,1,2,95.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025438906074597107,22013.525202611097,6,3,6,6_1,6_0,6_0_0 +7411,1,44.0,60.0,9,111,230.0,650.0,0.0,0,54,63.280971062196095,0.0,392.1961249755741,940.0,0.0,1234.027631160863,43,2,2,1,1,2,2,2,2,0,,1,2005.0,6,107418,2,1,1,0,1,,400.0,435.0,32,1.0,0.0,3.0,2.0,1.3,2,1,985.069564747432,230.0,24405.413221692812,0,4,2,3,55.0,8,6,5,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,1,0.03851604525034137,18773.394785917546,5,3,5,5_1,5_2,5_0_0 +7412,2,50.0,0.0,6,111,500.0,1000.0,0.0,68,62,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,50,2,2,2,2,1,2,2,2,2,10.0,2,,4,107419,1,3,0,0,2,,500.0,410.0,43,2.0,0.0,4.0,5.0,2.8,4,3,244.208070214457,500.0,43661.24239337469,1,1,2,3,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.034355412667496955,15593.300854776677,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +7413,2,76.0,0.0,2,111,0.0,60.0,0.0,78,78,0.0,0.0,0.0,182.0,0.0,113.91024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,107420,2,2,0,1,1,240.0,0.0,247.0,41,0.0,0.0,2.0,2.0,1.5,2,2,769.583120466144,0.0,24741.47101859277,5,5,2,3,50.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007356070294415004,16494.314012395178,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +7414,2,84.0,0.0,6,111,1250.0,0.0,0.0,0,74,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,107421,1,2,0,0,2,,0.0,713.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1198.75659626671,1250.0,32348.637056817668,0,5,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.038641504363985404,32348.637056817668,8,4,8,8_0,8_4,8_0_0 +7415,2,82.0,0.0,5,111,326.0,0.0,0.0,72,72,0.0,0.0,555.8953771392919,1326.0,1385.589225396521,0.0,70,2,2,1,2,1,2,2,2,0,,1,,3,107422,2,1,2,0,1,,128.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,927.923412700959,326.0,20736.683343484096,5,5,0,1,124.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06394465199839477,13824.45556232273,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +7416,0,53.0,0.0,1,111,550.0,0.0,0.0,78,56,0.0,0.0,937.8602988546337,550.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,107423,2,1,0,0,1,,0.0,,42,1.0,1.0,1.0,2.0,1.5,2,2,940.52390811212,550.0,42657.83369483466,7,1,5,0,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012893294205575147,28438.55579655644,8,4,8,8_0,8_4,8_1_0 +7417,2,91.0,0.0,1,400,252.0,0.0,0.0,0,71,0.0,662.163638505112,429.7105369297594,997.0,339.46936022214766,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107424,1,1,4,0,2,,84.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1492.29844438718,252.0,14790.476977174501,0,5,0,1,50.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06740823852662944,14790.476977174501,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7419,2,68.0,0.0,1,111,878.0,2213.0,0.0,31,74,0.0,0.0,1497.1660770806698,3091.0,0.0,4201.389458090753,10,0,0,0,0,0,0,0,0,0,,2,,1,107426,1,3,0,0,2,,0.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,479.163125304214,878.0,75442.93533213729,5,5,0,1,165.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0409713644676189,37721.467666068645,9,5,9,9_0,9_4,9_1_0 +7420,2,81.0,0.0,2,111,326.0,935.0,0.0,0,75,0.0,0.0,555.8953771392919,1261.0,0.0,1775.1012848237026,60,2,2,2,2,1,2,2,2,0,,1,,2,107427,2,1,2,0,2,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,548.846302337459,326.0,26584.395025533246,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0474338422517744,26584.395025533246,7,4,7,7_1,7_3,7_0_1 +7421,2,63.0,0.0,9,111,600.0,,,77,22,0.0,0.0,,715.0,159.34276092059991,,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,107428,1,1,0,0,2,,300.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,258.6967117823583,600.0,38205.64612451987,5,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018714511401526135,25470.430749679916,7,4,7,7_1,7_2,7_0_0 +7422,0,31.0,0.0,7,111,360.0,,,0,64,0.0,0.0,,426.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,5,107429,2,2,0,0,2,,200.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,163.77540649961767,360.0,9062.113734750887,0,4,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04700890018256988,9062.113734750887,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7423,2,68.0,0.0,1,211,1150.0,1800.0,0.0,75,71,0.0,0.0,1960.9806248778702,2950.0,0.0,3417.30728629162,60,1,2,2,1,1,2,2,2,0,,1,,1,107430,2,2,2,0,1,,280.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1523.04908885268,1150.0,84158.21760081749,5,5,0,1,170.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.035053023746208056,56105.47840054499,10,5,10,10_1,10_1,10_1_0 +7424,2,55.0,0.0,2,111,152.0,0.0,0.0,0,77,0.0,0.0,259.1904825925533,184.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107431,2,3,0,1,1,624.0,0.0,251.0,11,0.0,0.0,2.0,1.0,1.0,1,1,373.040830465548,152.0,12294.934825858769,0,7,2,3,46.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014965512433055788,12294.934825858769,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +7425,2,55.0,0.0,6,111,508.0,1051.0,0.0,0,37,0.0,0.0,866.2418760330071,1559.0,0.0,1995.3277543847182,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,107432,2,1,1,0,1,,432.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,690.266919318032,508.0,62653.330087256414,0,1,0,1,90.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024882955109150662,41768.88672483761,9,5,9,9_1,9_2,9_0_0 +7426,2,48.0,0.0,7,112,960.0,,,0,54,0.0,0.0,,1120.0,221.69427606344334,,42,0,0,0,0,0,0,0,0,0,,1,,5,107433,1,1,0,0,2,,582.0,,22,2.0,0.0,5.0,3.0,2.0,3,3,102.78416314416867,960.0,24654.079748933236,0,1,0,1,74.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0454285867250211,12327.039874466618,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7427,2,32.0,0.0,9,400,360.0,,,81,68,0.0,0.0,,480.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,107434,2,3,0,0,2,,0.0,,43,2.0,0.0,1.0,6.0,2.8999999999999995,3,2,128.69740850918578,360.0,19540.427320490366,4,1,0,1,25.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024564457681878087,6738.07838637599,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +7428,2,46.0,0.0,5,211,1700.0,0.0,0.0,54,63,0.0,331.081819252556,2898.840923732504,2050.0,138.5589225396521,0.0,50,2,2,2,2,1,2,2,2,2,10.0,1,,3,107435,1,2,5,0,1,,260.0,680.0,43,3.0,0.0,4.0,3.0,2.0,3,3,1254.39224363607,1700.0,38493.838460536426,4,1,2,3,90.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.05325527622041755,19246.919230268213,5,3,5,5_1,5_1,5_0_0 +7429,2,54.0,0.0,1,120,570.0,0.0,0.0,56,62,1582.0242765549024,0.0,971.9643097220749,2170.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,1,10.0,2,,1,107436,2,2,0,0,1,,423.0,300.0,43,2.0,0.0,3.0,3.0,2.0,3,3,2558.30473897999,570.0,24707.95156381753,1,1,2,3,80.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08782597757629414,12353.975781908764,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +7430,2,37.0,0.0,2,111,546.0,1581.0,0.0,48,38,0.0,0.0,931.0394966811454,2127.0,0.0,3001.5348997928063,12,1,2,2,2,2,2,2,1,2,20.0,2,,2,107437,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,706.622685891401,546.0,124876.22876444121,1,1,1,2,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01703286543039541,59464.8708402101,10,5,10,10_0,10_4,10_0_1 +7431,1,41.0,300.0,2,111,180.0,420.0,0.0,85,47,0.0,0.0,306.936097806971,600.0,0.0,797.3717001347114,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,107438,1,3,0,1,1,45.0,0.0,452.0,42,1.0,0.0,3.0,5.0,2.4,2,2,663.705057092557,180.0,24114.51008645533,7,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02488128507893713,10047.712536023055,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +7432,2,67.0,0.0,1,212,600.0,0.0,0.0,0,77,0.0,927.0290939071567,1023.1203260232367,1350.0,69.27946126982604,0.0,31,2,2,2,2,1,2,2,2,0,,1,,1,107439,2,1,2,0,2,,262.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1515.34422769506,600.0,24844.454010999725,0,5,0,1,100.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.054338082833387924,24844.454010999725,7,4,7,7_1,7_0,7_1_0 +7433,2,63.0,0.0,7,112,2100.0,0.0,0.0,0,46,0.0,0.0,3580.9211410813286,2175.0,103.91919190473907,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,5,107440,2,1,3,0,1,,180.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,603.307959243539,2100.0,60898.0,0,1,0,1,95.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03571545863575158,40598.666666666664,9,5,9,9_1,9_1,9_0_0 +7434,2,40.0,0.0,6,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,516.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,107441,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1759.09133888551,0.0,26423.124481736413,0,4,0,1,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01952834913057529,26423.124481736413,7,4,7,7_0,7_3,7_0_0 +7435,2,36.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,334.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,107442,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,275.606490416,0.0,17707.390843841175,6,1,1,2,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018862180371207477,11804.927229227449,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +7436,2,63.0,0.0,1,112,350.0,1800.0,0.0,78,78,0.0,39.72981831030672,596.8201901802214,2180.0,0.0,3417.30728629162,70,2,2,2,1,1,2,2,2,0,,1,,1,107443,2,1,2,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,126.699867598461,350.0,27683.053546027375,5,5,0,1,80.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07874853821221028,18455.369030684917,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7437,2,42.0,0.0,9,111,617.0,895.0,0.0,42,33,0.0,529.7309108040896,1052.1087352605618,1912.0,0.0,1699.1611229061111,20,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,107444,2,1,1,0,1,,431.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,441.745820861492,617.0,52743.466223407755,1,1,1,2,189.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036250935649569556,25115.936296860833,7,4,7,7_1,7_3,7_0_0 +7438,0,45.0,0.0,7,111,1300.0,,,56,46,0.0,0.0,,1612.0,432.30383832371456,,31,0,0,0,0,0,0,0,0,2,12.0,1,,5,107445,2,1,0,0,2,,1000.0,,43,2.0,0.0,7.0,6.0,3.3,5,2,121.04152434874675,1300.0,98827.06278982172,1,1,5,0,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016311321560049656,29947.594784794463,8,4,8,8_1,8_2,8_0_0 +7439,2,64.0,0.0,1,111,115.0,73.0,0.0,75,74,0.0,0.0,196.09806248778705,188.0,0.0,138.5907954996046,12,0,0,0,0,0,0,0,0,0,,1,,1,107446,2,1,3,0,1,,629.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,710.914568683211,115.0,107963.49618372344,5,5,0,1,93.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.001741329307084285,71975.6641224823,10,5,10,10_1,10_4,10_1_0 +7440,1,57.0,254.0,2,111,170.0,400.0,0.0,0,78,0.0,0.0,289.8840923732504,570.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,107447,2,1,0,0,1,,0.0,277.0,11,0.0,2.0,3.0,1.0,1.0,1,1,301.164206889019,170.0,11134.0,0,7,2,3,71.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.051194539249146756,11134.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7441,2,88.0,0.0,2,112,400.0,0.0,0.0,0,74,3164.0485531098047,0.0,682.0802173488245,3400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,107448,1,2,1,0,1,,300.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1497.60798337815,400.0,78358.17430163587,0,5,0,1,120.0,6,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043390495379740095,78358.17430163587,10,5,10,10_1,10_0,10_0_1 +7442,2,53.0,0.0,7,111,1200.0,0.0,0.0,33,52,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,1,,5,107449,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,749.328529428993,1200.0,84812.27179671249,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014148895844651984,33924.908718684994,9,5,9,9_1,9_4,9_0_0 +7443,2,51.0,0.0,8,111,350.0,,,0,21,0.0,0.0,,438.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,35.0,1,2002.0,6,107450,2,1,0,0,2,,400.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,109.94059095709824,350.0,14912.186500263491,0,1,0,1,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029371950249700858,14912.186500263491,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +7444,2,94.0,0.0,1,111,150.0,,,0,78,0.0,0.0,,318.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,1,107451,2,1,0,0,2,,448.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,142.97843732388225,150.0,12669.688926082668,0,5,0,1,58.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025099274485369878,12669.688926082668,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +7445,2,38.0,0.0,1,400,420.0,0.0,0.0,85,69,0.0,0.0,716.1842282162656,660.0,332.541414095165,0.0,31,0,0,0,0,0,0,0,0,0,,5,,1,107452,2,1,1,0,1,,400.0,,42,1.0,0.0,6.0,6.0,3.3,5,2,1359.17489096293,420.0,26397.893426830266,6,1,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0250019950201477,7999.36164449402,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +7446,2,71.0,0.0,7,400,222.0,,,77,75,0.0,0.0,,480.0,357.4820201523024,,41,0,0,0,0,0,0,0,0,0,,1,,5,107453,1,1,0,0,1,,228.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,103.68884957413042,222.0,51255.323525922075,5,5,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009364880893927884,34170.21568394805,9,5,9,9_1,9_1,9_0_0 +7447,2,40.0,0.0,7,120,1500.0,0.0,0.0,46,38,0.0,0.0,2557.8008150580918,1530.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,107454,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,535.879865138288,1500.0,66146.47312670226,1,1,1,2,90.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023130484932572526,31498.320536524883,8,4,8,8_1,8_1,8_0_0 +7448,2,46.0,0.0,9,111,0.0,0.0,0.0,54,53,0.0,0.0,0.0,484.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,107455,2,1,0,0,1,,0.0,810.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1431.29188174279,0.0,48370.84674911817,4,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010006027029262695,26872.692638398985,7,4,7,7_0,7_4,7_0_0 +7449,1,23.0,467.0,8,111,480.0,,,0,81,0.0,0.0,,606.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,107456,2,1,0,0,1,,120.0,590.0,32,1.0,0.0,4.0,4.0,1.9,1,1,146.97041882198593,480.0,17873.448162820838,0,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033905041404409086,9407.077980432021,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7450,2,48.0,0.0,6,212,1310.0,0.0,0.0,0,62,0.0,0.0,2233.8127118174,1341.0,42.95326598729215,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,107457,1,2,1,0,2,,238.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,807.2844311611,1310.0,17773.572904357316,0,1,1,2,56.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07544909553167245,17773.572904357316,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7451,1,59.0,157.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,575.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107458,1,1,0,1,1,337.0,0.0,226.0,12,1.0,7.0,2.0,1.0,1.0,1,1,431.125088952765,0.0,11704.546983618611,0,1,2,3,45.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049126207174421656,11704.546983618611,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7452,1,53.0,447.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,556.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,107459,1,3,0,1,1,1188.0,333.0,403.0,32,1.0,4.0,4.0,3.0,2.0,3,2,288.38865287236,0.0,9270.052318599804,0,1,2,3,91.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05997808651893143,4635.026159299902,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7453,2,41.0,0.0,2,111,600.0,930.0,0.0,52,67,0.0,0.0,1023.1203260232367,1530.0,0.0,1765.6087645840037,71,0,0,0,0,0,0,0,0,0,,2,,2,107460,2,1,0,1,1,906.0,0.0,282.0,43,3.0,0.0,3.0,5.0,2.8,4,4,232.784037437373,600.0,54996.50493720338,1,1,2,3,69.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027819949681293362,19641.608906144065,5,3,5,5_0,5_3,5_0_1 +7454,2,50.0,0.0,1,111,1900.0,0.0,0.0,52,63,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,107461,2,1,2,0,1,,175.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,1297.31370026342,1900.0,44686.352394057525,1,1,0,1,90.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04251857442391439,17874.54095762301,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +7455,2,37.0,0.0,5,111,220.0,0.0,0.0,0,46,0.0,0.0,375.14411954185346,231.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,,3,107462,2,1,0,1,1,,350.0,497.0,32,1.0,0.0,4.0,2.0,1.3,1,1,324.352554826614,220.0,25778.447884474455,0,1,2,3,68.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008960973951388439,19829.57529574958,5,3,5,5_0,5_3,5_0_0 +7456,2,29.0,0.0,6,111,180.0,0.0,0.0,0,38,0.0,0.0,306.936097806971,486.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,15.0,2,,4,107463,2,1,0,1,1,182.0,0.0,772.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1289.52189294989,180.0,33442.98297090572,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014532196497627133,33442.98297090572,8,4,8,8_0,8_4,8_0_0 +7457,2,36.0,0.0,9,120,653.0,1160.0,0.0,52,62,0.0,52.973091080408956,1113.495954821956,1853.0,0.0,2202.2646956101553,31,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,107464,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,270.883220946972,653.0,46689.59325072494,1,1,1,2,162.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03968764495439739,25938.66291706941,7,4,7,7_1,7_0,7_0_0 +7458,2,67.0,0.0,6,111,360.0,463.0,0.0,52,68,0.0,0.0,613.872195613942,823.0,0.0,879.0073741961223,71,0,0,0,0,0,0,0,0,2,20.0,2,,4,107465,2,2,0,1,1,,480.0,1600.0,43,2.0,1.0,4.0,5.0,2.8,4,3,283.432545653327,360.0,24603.39411592781,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033450669290673356,8786.926469974218,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +7459,1,49.0,100.0,2,111,876.0,,,0,56,0.0,0.0,,1002.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,3,15.0,1,,2,107466,1,3,0,0,2,,264.0,304.0,22,2.0,0.0,4.0,2.0,1.5,2,2,93.40224846839058,876.0,33937.82091896533,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.029524582688809482,22625.213945976884,6,3,6,6_1,6_2,6_0_1 +7460,2,69.0,0.0,1,111,750.0,750.0,0.0,72,86,0.0,0.0,1278.9004075290459,1500.0,0.0,1423.8780359548418,60,0,0,0,0,0,0,0,0,0,,2,,1,107467,2,3,0,0,1,,0.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,2097.99432775163,750.0,61321.3999534654,5,5,0,1,140.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.024461281072159082,40880.933302310266,9,5,9,9_0,9_3,9_1_0 +7461,2,61.0,0.0,1,111,421.0,1603.0,0.0,75,52,0.0,0.0,717.8894287596378,2024.0,0.0,3043.301988847482,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,107468,2,2,2,0,1,,220.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,638.994729607695,421.0,67405.46724245354,5,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030027237890359694,44936.97816163569,10,5,10,10_1,10_4,10_1_0 +7462,1,67.0,170.0,6,111,370.0,0.0,0.0,0,77,0.0,0.0,630.9242010476627,370.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,107469,2,2,0,1,1,416.0,0.0,376.0,11,0.0,0.0,3.0,1.0,1.0,1,1,820.114885992737,370.0,12146.950090047638,0,5,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030460321089419158,12146.950090047638,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +7463,2,52.0,0.0,1,111,1800.0,0.0,0.0,38,38,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,107470,2,2,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,601.80620649206,1800.0,97121.06425045867,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018533569559720915,38848.42570018347,9,5,9,9_1,9_4,9_1_0 +7464,1,31.0,272.0,2,111,160.0,0.0,0.0,0,34,0.0,0.0,272.8320869395298,160.0,0.0,0.0,10,2,1,2,2,2,2,1,2,0,,2,,2,107471,1,2,0,1,1,330.0,0.0,260.0,12,1.0,0.0,1.0,1.0,1.0,1,1,249.521546079486,160.0,10022.396871478119,0,4,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.01596424508545758,10022.396871478119,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +7465,2,77.0,0.0,2,111,213.0,1000.0,0.0,77,78,0.0,0.0,363.207715738249,1213.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,107472,2,1,2,0,1,,217.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,918.452556753097,213.0,39365.36446553485,5,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030813889734515362,26243.576310356566,7,4,7,7_1,7_4,7_0_1 +7466,2,66.0,0.0,2,111,265.0,0.0,0.0,0,77,0.0,0.0,451.8781439935962,265.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,107473,2,1,0,1,1,1063.0,0.0,310.0,11,0.0,2.0,2.0,1.0,1.0,1,1,262.645259439273,265.0,19790.81923726747,0,5,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013390047012353426,19790.81923726747,5,3,5,5_0,5_4,5_0_1 +7467,0,45.0,0.0,1,112,0.0,100.0,0.0,63,56,0.0,403.91981948811826,0.0,1317.0,0.0,189.8504047939789,50,2,2,1,1,2,2,2,2,0,,1,,1,107474,2,1,2,0,2,,371.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1849.42801537435,0.0,35760.68828892446,1,1,5,0,80.0,6,0,9,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.036828150212307065,23840.45885928297,6,3,6,6_1,6_0,6_1_0 +7468,2,65.0,0.0,5,120,779.0,0.0,0.0,78,78,1634.7584191067324,0.0,1328.3512232868356,2429.0,138.5589225396521,0.0,71,2,2,2,1,1,2,2,2,0,,1,,3,107475,2,2,2,0,1,,420.0,,41,1.0,3.0,4.0,3.0,2.0,3,3,1422.74661491303,779.0,39684.864467134874,6,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.061207214201565004,19842.432233567437,5,3,5,5_1,5_0,5_0_0 +7469,2,67.0,0.0,7,211,693.0,809.0,0.0,0,77,0.0,0.0,1181.7039765568384,1502.0,0.0,1535.8897747832893,50,0,0,0,0,0,0,0,0,0,,1,,5,107476,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1061.70041275178,693.0,17252.61502560128,0,5,0,1,100.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08705926595888051,17252.61502560128,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7470,0,45.0,0.0,1,111,1000.0,400.0,0.0,56,38,0.0,0.0,1705.2005433720612,1400.0,0.0,759.4016191759156,50,2,2,2,2,1,2,2,2,2,15.0,2,,1,107477,2,2,0,0,1,,0.0,,43,2.0,1.0,2.0,4.0,2.3,3,2,1215.65439828389,1000.0,65819.37974614935,1,1,5,0,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.021270331100042075,28617.12162876059,8,4,8,8_0,8_4,8_1_0 +7472,1,55.0,245.0,2,111,480.0,,,0,77,0.0,0.0,,687.0,286.8169696570798,,71,0,0,0,0,0,0,0,0,0,,2,,2,107479,2,3,0,0,1,,480.0,251.0,21,1.0,2.0,3.0,2.0,1.5,2,2,139.20890507392602,480.0,12633.0,0,6,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05438138209451437,8422.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7473,2,33.0,0.0,6,112,308.0,958.0,0.0,67,46,0.0,0.0,525.2017673585948,1326.0,83.13535352379125,1818.7668779263179,43,2,2,1,2,1,2,2,2,2,15.0,1,,4,107480,1,3,2,0,2,,1228.0,706.0,43,2.0,2.0,4.0,5.0,2.4,2,2,361.139113184339,308.0,35392.835073510876,1,1,2,3,80.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03746521004169063,14747.014613962865,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7474,2,23.0,0.0,7,111,240.0,,,0,53,0.0,0.0,,366.0,174.58424239996165,,50,2,2,2,2,1,2,2,2,2,15.0,1,,5,107481,2,3,0,0,2,,300.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,117.78664900813699,240.0,24727.008953864202,0,4,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.014801628481749853,16484.67263590947,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7475,2,23.0,0.0,7,111,970.0,,,0,52,0.0,0.0,,1102.0,182.89777775234077,,43,0,0,0,0,0,0,0,0,0,,1,,5,107482,2,1,0,0,2,,600.0,,22,1.0,2.0,4.0,2.0,1.5,2,2,227.90980521020458,970.0,52103.419624956376,0,1,0,1,111.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02115024326488096,34735.61308330425,9,5,9,9_1,9_2,9_0_0 +7476,2,55.0,0.0,1,111,320.0,0.0,0.0,46,38,0.0,0.0,545.6641738790596,320.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,,1,107483,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.5,4,2,812.97781533402,320.0,92944.96232387872,1,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003442897732153774,37177.98492955149,9,5,9,9_0,9_4,9_1_0 +7477,2,32.0,0.0,1,111,358.0,1893.0,0.0,21,55,0.0,0.0,610.4617945271979,2251.0,0.0,3593.8681627500205,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,107484,2,2,3,0,1,,423.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1320.67960565266,358.0,37075.28939795645,1,1,1,2,50.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06071429344322456,20597.382998864694,5,3,5,5_1,5_3,5_1_0 +7478,2,66.0,0.0,2,111,600.0,1400.0,0.0,86,77,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,0,,1,,2,107485,2,2,2,0,1,,200.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,2247.18615695669,600.0,30718.44057433902,6,5,0,1,125.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0651074716882185,20478.96038289268,5,3,5,5_1,5_2,5_0_1 +7479,1,49.0,100.0,2,111,250.0,360.0,0.0,0,56,0.0,0.0,426.3001358430153,610.0,0.0,683.461457258324,30,0,0,0,0,0,0,0,0,2,25.0,2,,2,107486,2,2,0,1,1,440.0,320.0,380.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1414.72311142203,250.0,18985.37994678516,0,1,2,3,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.032129986426913344,12656.91996452344,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7480,2,50.0,0.0,7,112,832.5,0.0,0.0,37,43,0.0,0.0,1419.5794523572408,1537.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,107487,2,1,2,0,1,,99.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,691.10369249683,832.5,65283.03481363243,1,1,0,1,180.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02354363586784484,28383.92817984019,8,4,8,8_1,8_1,8_0_0 +7481,2,64.0,0.0,9,111,2100.0,,,56,63,0.0,0.0,,2400.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,107488,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,6.0,2.6999999999999997,2,2,70.36500856902221,2100.0,12478.024390243903,1,4,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19233813983217324,4621.49051490515,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7482,2,30.0,0.0,2,111,85.0,364.0,0.0,56,62,0.0,0.0,144.9420461866252,449.0,0.0,691.0554734500832,31,0,0,0,0,0,0,0,0,0,,2,,2,107489,2,1,0,1,2,192.0,0.0,149.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1051.74570403514,85.0,45433.4515430585,1,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009882586172755786,21634.976925265953,6,3,6,6_0,6_4,6_0_1 +7483,2,33.0,0.0,9,111,1130.0,0.0,0.0,0,48,0.0,0.0,1926.8766140104292,1130.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,2012.0,6,107490,2,1,0,0,1,,240.0,,32,1.0,0.0,2.0,2.0,1.3,1,1,263.975751483303,1130.0,25640.934767892766,0,1,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0440701561869332,19723.795975302128,5,3,5,5_0,5_4,5_0_0 +7484,1,40.0,406.0,2,111,363.0,803.0,0.0,0,22,0.0,0.0,618.9877972440582,1166.0,0.0,1524.4987504956505,31,0,0,0,0,0,0,0,0,0,,2,,2,107491,2,1,0,0,1,,600.0,503.0,32,1.0,0.0,4.0,3.0,1.8,2,1,416.874321863536,363.0,12850.737923994999,0,1,2,3,85.0,4,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09073408911583479,7139.298846663888,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7485,1,75.0,317.0,5,111,400.0,,,0,77,0.0,0.0,,821.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,107492,2,2,0,0,2,,120.0,387.0,11,0.0,4.0,5.0,1.0,1.0,1,1,152.3297895489136,400.0,5998.755319148937,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13686172486136305,5998.755319148937,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7486,1,61.0,85.0,2,111,267.0,801.0,0.0,0,75,0.0,0.0,455.2885450803403,1068.0,0.0,1520.701742399771,50,0,0,0,0,0,0,0,0,0,,2,,2,107493,2,3,0,0,1,,219.0,495.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1736.60034401497,267.0,15437.228460330696,0,5,2,3,70.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06918340314418857,15437.228460330696,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +7487,2,77.0,0.0,7,111,1012.0,0.0,0.0,75,74,0.0,0.0,1725.6629498925258,1012.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,107494,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,715.607498539626,1012.0,78103.73499588725,5,5,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012957126826947385,52069.156663924834,10,5,10,10_0,10_4,10_0_0 +7488,1,37.0,266.0,9,111,480.0,0.0,0.0,54,65,0.0,0.0,818.4962608185893,1080.0,188.44013465392686,0.0,50,2,2,2,2,1,1,2,2,0,,2,2005.0,6,107495,1,3,0,1,1,320.0,360.0,493.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1060.69858599827,480.0,36581.068605091765,4,4,2,3,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.029523467771241475,17419.556478615126,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +7489,1,34.0,100.0,2,111,0.0,0.0,0.0,56,53,0.0,0.0,0.0,1152.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,107496,2,2,2,0,1,,138.0,500.0,43,2.0,0.0,5.0,4.0,2.1,2,2,158.732216477228,0.0,30404.537544612125,1,4,2,3,110.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037889081467188494,14478.351211720059,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +7490,2,56.0,0.0,1,111,687.0,366.0,0.0,68,38,0.0,264.8654554020448,1171.472773296606,1253.0,0.0,694.8524815459627,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,107497,2,1,1,0,1,,322.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,287.257496391276,687.0,87781.40812809484,1,1,0,1,127.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014274093190343475,58520.93875206323,10,5,10,10_1,10_2,10_1_0 +7491,1,74.0,156.0,8,211,96.0,,,0,77,0.0,0.0,,360.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,107498,1,1,0,0,1,,29.0,339.0,11,0.0,3.0,2.0,1.0,1.0,1,1,150.801740634028,96.0,10674.15969581749,0,5,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033726308230245104,10674.15969581749,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7492,2,47.0,0.0,1,111,547.0,871.0,0.0,37,35,0.0,0.0,932.7446972245175,1418.0,0.0,1653.5970257555562,20,2,2,2,1,2,2,2,2,3,50.0,2,,1,107499,2,3,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,891.899173717387,547.0,77211.24003981525,4,1,1,2,96.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0183652017409484,36767.257161816786,9,5,9,9_0,9_4,9_1_0 +7493,2,45.0,0.0,2,111,312.0,0.0,0.0,0,65,0.0,0.0,532.0225695320831,312.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,107500,2,1,0,1,1,30.0,0.0,356.0,22,3.0,1.0,3.0,3.0,2.0,3,3,206.719481775798,312.0,60640.35912127861,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005145088263346377,30320.179560639306,8,4,8,8_0,8_4,8_0_1 +7494,2,63.0,0.0,1,400,750.0,0.0,0.0,56,72,0.0,0.0,1278.9004075290459,855.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107501,1,1,1,0,2,,0.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1085.98670507325,750.0,32002.945203241394,4,5,0,1,140.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026716291096652005,21335.29680216093,6,3,6,6_1,6_0,6_1_0 +7495,2,52.0,0.0,2,111,600.0,0.0,0.0,34,34,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,50.0,2,,2,107502,2,2,0,1,2,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,742.640564536081,600.0,116824.25289718877,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0051359198549981765,48676.77204049532,10,5,10,10_0,10_4,10_0_1 +7496,1,20.0,309.0,9,111,0.0,,,55,55,0.0,0.0,,831.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,2010.0,6,107503,2,1,0,0,1,,247.0,414.0,43,2.0,0.0,2.0,2.0,1.5,2,2,229.69002679883184,0.0,4849.247242512332,4,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17136680363805695,3232.8314950082217,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7497,1,40.0,21.0,6,400,1500.0,0.0,0.0,11,54,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,43,2,2,2,1,1,2,2,2,2,5.0,1,,4,107504,2,3,3,0,1,,205.0,491.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1165.57620885257,1500.0,33039.64424187989,1,1,2,3,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.04540000458293836,18355.357912155494,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +7498,2,42.0,0.0,1,221,600.0,0.0,0.0,0,67,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,107505,2,2,5,0,1,,125.0,280.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2838.00795508169,600.0,16643.46045202441,0,1,2,3,51.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03965521484564357,16643.46045202441,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7499,2,43.0,0.0,5,112,380.0,1033.0,0.0,43,34,0.0,0.0,647.9762064813832,1413.0,0.0,1961.154681521802,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,107506,2,1,2,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,483.414565085489,380.0,54194.12957520825,1,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026072934671625275,21677.6518300833,6,3,6,6_1,6_1,6_0_0 +7500,2,31.0,0.0,8,111,400.0,,,0,52,0.0,0.0,,421.0,29.09737373332694,,42,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,107507,2,1,0,0,2,,220.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,142.73373104957608,400.0,20036.800000000003,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021011339135989775,20036.800000000003,5,3,5,5_1,5_2,5_0_0 +7501,2,75.0,0.0,6,111,487.0,0.0,0.0,75,75,1582.0242765549024,0.0,830.4326646221938,2417.0,595.803366920504,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,107508,2,1,2,0,1,,334.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,943.499847371177,487.0,47939.91292749278,5,5,0,1,90.0,8,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05041727972379959,31959.941951661855,8,4,8,8_1,8_3,8_0_0 +7502,1,46.0,195.0,2,211,0.0,0.0,0.0,0,52,0.0,0.0,0.0,567.0,0.0,0.0,30,0,0,0,0,0,0,0,0,1,5.0,2,,2,107509,2,2,0,0,1,,230.0,540.0,32,1.0,1.0,5.0,3.0,2.0,3,2,1489.1857855564,0.0,28937.801495232852,0,1,2,3,69.0,4,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.019593748339638253,14468.900747616426,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +7503,1,34.0,457.0,2,111,660.0,,,0,85,0.0,198.6490915515336,,986.0,243.8637036697877,,50,2,2,2,2,1,1,2,2,0,,1,,2,107510,2,2,0,0,2,,100.0,650.0,31,0.0,1.0,4.0,4.0,1.9,1,1,161.31467432793028,660.0,16562.034184301465,0,6,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.05953374984182756,8716.860097000772,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +7504,2,73.0,0.0,2,111,625.0,0.0,0.0,77,74,1879.444840547224,0.0,1065.7503396075383,2407.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107511,2,1,2,0,2,,148.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,136.176905810283,625.0,39096.73609538302,5,5,0,1,90.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06156524151089547,26064.490730255347,7,4,7,7_1,7_3,7_0_1 +7505,2,55.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,2242.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,5,107512,1,3,0,0,1,,310.0,836.0,22,2.0,3.0,3.0,2.0,1.5,2,2,1038.45685583165,0.0,75968.51894629592,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.02951222468329186,50645.679297530616,10,5,10,10_0,10_4,10_0_0 +7506,2,44.0,0.0,1,111,330.0,1090.0,0.0,0,54,0.0,0.0,562.7161793127802,1420.0,0.0,2069.36941225437,31,0,0,0,0,0,0,0,0,0,,1,,1,107513,2,2,3,0,1,,100.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,855.06285175006,330.0,18951.545526740032,0,4,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07492792595709014,10528.636403744462,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +7507,1,57.0,254.0,6,211,300.0,,,0,85,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,4,107514,2,1,0,0,2,,360.0,100.0,11,0.0,0.0,2.0,1.0,1.0,1,1,129.278414213353,300.0,13979.0,0,7,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021460762572430073,13979.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +7508,2,43.0,0.0,2,221,1700.0,0.0,0.0,0,62,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,107515,2,2,1,0,1,,170.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1648.96044868921,1700.0,21309.330498038118,0,1,1,2,69.0,1,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07977726002027673,21309.330498038118,6,3,6,6_1,6_1,6_0_1 +7509,2,48.0,0.0,1,211,3267.0,0.0,0.0,22,22,1687.4925616585624,0.0,5570.890175196524,5548.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107516,2,1,2,0,1,,900.0,,43,2.0,0.0,11.0,6.0,3.3,5,3,963.485589936443,3267.0,216296.47731110512,1,1,1,2,300.0,1,3,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025649978533955318,65544.38706397125,10,5,10,10_1,10_1,10_1_0 +7510,2,66.0,0.0,5,211,600.0,,,0,78,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,107517,2,1,0,0,2,,1000.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,104.84235401678097,600.0,12290.937195776936,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04881645642174097,12290.937195776936,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7511,2,59.0,0.0,1,111,817.0,1807.0,0.0,43,43,0.0,178.78418239638023,1393.148843934974,2759.0,0.0,3430.596814627199,20,0,0,0,0,0,0,0,0,1,1.0,1,,1,107518,2,1,2,0,1,,434.0,,43,2.0,2.0,7.0,4.0,2.5,4,3,985.42320156924,817.0,66723.57255061972,1,1,0,1,180.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04134970437781774,26689.429020247888,7,4,7,7_1,7_2,7_1_0 +7512,2,73.0,0.0,1,211,300.0,0.0,0.0,86,78,2109.365702073203,0.0,511.56016301161833,2425.0,173.19865317456512,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107519,2,1,2,0,1,,360.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1579.937045525,300.0,27460.99077403538,5,5,0,1,130.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08830708330789215,18307.327182690253,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +7513,2,35.0,0.0,9,112,1420.0,0.0,0.0,42,22,0.0,0.0,2421.3847715883267,1420.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,107520,2,1,1,0,1,,571.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,937.811811473442,1420.0,50135.41747560497,1,1,1,2,121.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02832329062964216,27853.009708669426,7,4,7,7_1,7_0,7_0_0 +7514,2,83.0,0.0,2,111,400.0,1100.0,0.0,77,78,0.0,66.2163638505112,682.0802173488245,1550.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,0,,2,,2,107521,2,1,0,0,1,,0.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,365.884142249545,400.0,21890.056842767823,5,5,0,1,52.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07080840452509372,14593.371228511882,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7515,2,59.0,0.0,2,111,318.0,1162.0,0.0,0,52,0.0,158.91927324122688,542.2537727923154,1600.0,0.0,2206.0617037060347,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,107522,2,3,3,0,1,,96.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,1720.16431559649,318.0,24149.87354139836,0,1,0,1,150.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06625293491732936,24149.87354139836,6,3,6,6_1,6_2,6_0_1 +7516,2,91.0,0.0,5,112,692.0,2260.0,0.0,0,75,0.0,0.0,1179.9987760134663,2952.0,0.0,4290.619148343923,41,0,0,0,0,0,0,0,0,0,,1,,3,107523,2,1,2,0,1,,270.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,892.855593310912,692.0,46380.995089408505,0,5,0,1,70.0,10,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06364675864132364,46380.995089408505,10,5,10,10_1,10_1,10_0_0 +7517,0,49.0,0.0,6,111,0.0,,,85,33,0.0,0.0,,477.0,0.0,,10,0,0,0,0,0,0,0,0,2,5.0,1,,4,107524,2,1,0,0,2,,0.0,,42,1.0,1.0,6.0,3.0,2.0,3,2,79.6893955277597,0.0,193522.70655188255,6,1,5,0,215.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0024648270401908547,96761.35327594128,10,5,10,10_1,10_2,10_0_0 +7518,2,60.0,0.0,7,111,700.0,0.0,0.0,0,34,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,20,2,2,2,1,2,2,2,2,2,15.0,2,,5,107525,1,2,0,0,1,845.0,80.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1658.48232151182,700.0,57675.855998756364,0,1,2,3,67.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.012136794294220684,57675.855998756364,10,5,10,10_0,10_2,10_0_0 +7519,2,90.0,0.0,2,111,500.0,,,0,86,0.0,0.0,,680.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,2,107526,2,2,0,0,2,,286.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,38.48563029243881,500.0,14513.313746943319,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046853531306261215,14513.313746943319,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +7520,0,28.0,0.0,2,112,0.0,0.0,0.0,55,55,0.0,0.0,0.0,1248.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,107527,2,1,1,0,1,,286.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1636.06524857655,0.0,16968.0,4,4,5,0,110.0,7,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07355021216407355,11312.0,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +7521,0,52.0,0.0,9,222,300.0,0.0,0.0,78,11,0.0,92.70290939071567,511.56016301161833,370.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2009.0,6,107528,2,3,4,0,2,,66.0,,42,1.0,1.0,1.0,2.0,1.5,2,2,1329.17871485031,300.0,5296.365258121456,6,1,5,0,35.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06985923023957635,3530.9101720809704,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +7522,2,92.0,0.0,9,111,0.0,,,0,72,0.0,0.0,,949.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,107529,2,3,0,0,2,,520.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,130.19920712402154,0.0,16651.0,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056993573959521954,16651.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7523,2,27.0,0.0,1,300,211.0,0.0,0.0,0,21,0.0,0.0,359.7973146515049,241.0,41.567676761895626,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,107530,2,2,1,0,2,,20.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1172.63356450151,211.0,14596.769477045442,0,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016510502572435037,14596.769477045442,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7524,1,82.0,145.0,6,112,804.0,0.0,0.0,0,77,0.0,0.0,1370.981236871137,869.0,90.06329965077386,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,107531,2,2,2,0,1,,55.0,310.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1834.3133778753,804.0,10753.221585395051,0,5,2,3,90.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08081299107425347,10753.221585395051,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +7525,2,81.0,0.0,5,112,900.0,1000.0,0.0,86,77,0.0,0.0,1534.680489034855,1900.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,3,107532,2,1,2,0,1,,600.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1861.80241949585,900.0,45058.41852028282,6,5,0,1,100.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042167480848106655,30038.94568018855,8,4,8,8_1,8_1,8_0_0 +7526,2,61.0,0.0,2,111,120.0,54.0,0.0,0,45,0.0,0.0,204.62406520464734,1999.0,0.0,102.5192185887486,20,2,1,2,1,2,2,2,2,3,60.0,2,,2,107533,2,3,0,1,2,624.0,0.0,358.0,12,1.0,0.0,2.0,1.0,1.0,1,1,839.213527864605,120.0,28759.655076921335,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06950709230181731,28759.655076921335,8,4,8,8_0,8_4,8_0_1 +7527,1,29.0,312.0,7,221,700.0,,,0,55,0.0,0.0,,763.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,1,5.0,2,,5,107534,2,1,0,0,2,,500.0,489.0,32,1.0,0.0,3.0,2.0,1.3,1,1,74.20356471131996,700.0,8363.297983155211,0,4,2,3,63.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09123195198075962,6433.306140888623,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +7528,2,42.0,0.0,9,111,1200.0,0.0,0.0,54,52,0.0,0.0,2046.2406520464733,1275.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,107535,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,892.31530732775,1200.0,39740.94985331855,1,1,1,2,80.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03208277619699449,26493.96656887903,7,4,7,7_1,7_2,7_0_0 +7529,2,54.0,0.0,6,111,1500.0,0.0,0.0,62,48,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,107536,2,2,2,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,829.002312073147,1500.0,51587.4345314592,1,1,0,1,110.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0290768481438104,34391.6230209728,9,5,9,9_1,9_1,9_0_0 +7530,2,78.0,0.0,2,112,350.0,0.0,0.0,77,78,527.3414255183008,893.9209119819011,596.8201901802214,1637.0,155.18599324441035,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107537,2,1,2,0,2,,234.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2392.00143786118,350.0,25031.085239756983,5,5,0,1,90.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06539868265080036,16687.39015983799,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +7531,1,35.0,120.0,2,112,521.0,989.0,0.0,22,37,0.0,0.0,888.4094830968438,1510.0,0.0,1877.6205034124514,31,1,2,2,2,2,2,2,1,0,,1,,2,107538,2,2,2,0,1,,573.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,817.715230228066,521.0,19988.538228983078,4,4,1,2,95.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.0755432929963094,9518.351537610988,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +7532,2,66.0,0.0,5,300,443.0,0.0,0.0,78,77,0.0,0.0,755.4038407138231,970.0,730.2055217839666,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107539,2,1,2,0,1,,143.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1047.34621965827,443.0,33774.315902947455,5,5,0,1,92.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02872004877278207,22516.21060196497,6,3,6,6_1,6_0,6_0_0 +7533,2,64.0,0.0,2,120,500.0,0.0,0.0,0,71,1898.4291318658827,0.0,852.6002716860306,2360.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107540,2,2,2,0,2,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,184.631021568816,500.0,6291.169890593171,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.375128957100455,6291.169890593171,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +7534,1,36.0,200.0,9,111,300.0,,,0,52,0.0,0.0,,323.0,31.86855218411998,,42,0,0,0,0,0,0,0,0,2,60.0,2,2009.0,6,107541,2,1,0,0,2,,300.0,450.0,32,1.0,0.0,3.0,2.0,1.3,1,1,267.87901414880145,300.0,32849.656260223535,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009832675186653598,25268.966354018103,7,4,7,7_0,7_2,7_0_0 +7535,2,63.0,0.0,6,111,1500.0,0.0,0.0,77,31,0.0,529.7309108040896,2557.8008150580918,1960.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,1,5.0,1,,4,107542,2,1,2,0,1,,400.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,265.354447443643,1500.0,157940.48149667215,5,1,0,1,300.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012409738031862957,105293.65433111477,10,5,10,10_1,10_3,10_0_0 +7536,2,41.0,0.0,2,111,1400.0,240.0,0.0,85,46,0.0,0.0,2387.2807607208856,1640.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,107543,2,1,0,1,1,528.0,0.0,340.0,42,3.0,0.0,3.0,4.0,2.5,4,4,210.240002294762,1400.0,41476.94147445174,7,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03954004180877655,16590.776589780697,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +7537,2,25.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,748.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,107544,2,1,0,0,1,,197.0,560.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1836.79973075258,0.0,15347.67045176606,0,1,2,3,80.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04873703812906196,15347.67045176606,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7538,2,49.0,0.0,1,112,850.0,1200.0,0.0,52,37,0.0,0.0,1449.420461866252,2050.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,107545,2,1,2,0,1,,500.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,582.412628384069,850.0,57780.25587390159,1,1,0,1,97.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03547924752140033,28890.127936950794,8,4,8,8_1,8_2,8_1_0 +7539,2,53.0,0.0,2,111,887.0,0.0,0.0,0,31,4603.690644774766,0.0,1512.5128819710183,5252.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,2,107546,1,1,2,0,1,,505.0,,32,1.0,1.0,7.0,3.0,2.0,3,3,405.246959015816,887.0,90179.87272860677,0,1,0,1,180.0,6,4,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058239159593911974,45089.93636430339,10,5,10,10_1,10_2,10_0_1 +7540,1,69.0,60.0,5,111,0.0,0.0,800.0,0,86,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,71,0,0,0,0,0,0,0,0,0,,2,,3,107547,2,2,0,1,1,504.0,0.0,348.0,21,1.0,4.0,4.0,2.0,1.5,2,2,380.000871879153,0.0,13287.017993928597,0,7,2,3,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06020914552577215,8858.011995952398,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7541,2,82.0,0.0,7,111,234.0,,,0,78,0.0,0.0,,325.0,126.08861951108341,,71,0,0,0,0,0,0,0,0,0,,1,,5,107548,2,2,0,0,2,,156.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,107.07401108983797,234.0,11130.60429286462,0,5,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02919877406910821,11130.60429286462,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7543,2,57.0,0.0,5,111,0.0,0.0,420.0,0,54,0.0,0.0,264.7336819741924,420.0,0.0,502.627501977166,60,0,0,0,0,0,0,0,0,0,,2,,3,107550,2,1,0,3,2,656.0,0.0,515.0,22,1.0,1.0,2.0,2.0,1.5,2,2,1668.59503021992,0.0,39978.638789821685,0,4,2,3,54.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010505610313749086,26652.425859881125,7,4,7,7_0,7_3,7_0_0 +7544,2,54.0,0.0,2,111,243.0,267.0,0.0,0,75,0.0,0.0,414.3637320394109,510.0,0.0,506.90058079992366,31,0,0,0,0,0,0,0,0,0,,2,,2,107551,2,3,0,0,1,,155.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1654.28767401228,243.0,31595.753118841887,0,7,1,2,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01614140983067327,31595.753118841887,8,4,8,8_0,8_3,8_0_1 +7545,2,53.0,0.0,8,300,260.0,0.0,0.0,0,62,1054.6828510366015,0.0,443.3521412767359,1350.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,107552,2,1,2,0,1,,119.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1234.21750154564,260.0,22577.154347006828,0,1,1,2,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05979495817988136,22577.154347006828,6,3,6,6_1,6_0,6_0_0 +7546,2,80.0,0.0,2,111,0.0,0.0,800.0,0,78,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,70,0,0,0,0,0,0,0,0,0,,2,,2,107553,2,2,0,1,1,1116.0,0.0,315.0,11,0.0,2.0,4.0,1.0,1.0,1,1,926.246280948813,0.0,20024.05139247391,0,5,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039951954992518746,20024.05139247391,5,3,5,5_0,5_4,5_0_1 +7547,2,48.0,0.0,1,111,788.0,2515.0,0.0,0,43,0.0,0.0,1343.6980281771841,3303.0,0.0,4774.737680568569,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,107554,2,2,2,0,1,,396.0,,32,1.0,0.0,5.0,3.0,2.0,3,2,217.649607843055,788.0,40060.923912830585,0,1,1,2,150.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08244942146584207,20030.461956415293,5,3,5,5_1,5_3,5_1_0 +7548,2,67.0,0.0,2,111,250.0,76.0,0.0,0,74,0.0,0.0,426.3001358430153,326.0,0.0,144.28630764342395,42,0,0,0,0,0,0,0,0,0,,2,,2,107555,1,3,0,1,2,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,993.995267538458,250.0,45429.138280203275,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007176011087625263,45429.138280203275,10,5,10,10_0,10_4,10_0_1 +7549,2,30.0,0.0,1,111,600.0,0.0,0.0,31,37,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,107556,2,1,0,1,1,704.0,0.0,1600.0,43,2.0,0.0,3.0,2.0,1.5,2,2,209.912445068981,600.0,73793.94176670784,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008130748753018778,49195.96117780523,10,5,10,10_0,10_4,10_1_0 +7550,2,37.0,0.0,6,120,310.0,,,52,52,0.0,0.0,,442.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,107557,2,2,0,0,2,,200.0,650.0,43,2.0,1.0,3.0,3.0,1.8,2,2,113.92875780012241,310.0,37604.71173640856,1,1,2,3,69.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011753846249326768,20891.506520226976,5,3,5,5_1,5_2,5_0_0 +7551,2,49.0,0.0,8,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1782.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,107558,2,2,1,0,1,,209.0,370.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1506.03027226881,0.0,19388.182395457177,0,1,2,3,55.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09191165853780797,19388.182395457177,5,3,5,5_1,5_0,5_0_0 +7552,2,56.0,0.0,2,111,0.0,0.0,0.0,56,37,0.0,0.0,0.0,3326.0,0.0,0.0,42,2,2,2,1,2,2,2,2,0,,1,,2,107559,2,3,4,0,1,,500.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,308.965637535976,0.0,132054.76557075058,1,1,0,1,110.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.025186520044352654,66027.38278537529,10,5,10,10_1,10_2,10_0_1 +7553,1,49.0,200.0,9,111,1020.0,3600.0,0.0,52,21,0.0,0.0,1739.3045542395023,4620.0,0.0,6834.61457258324,41,1,2,2,1,2,2,2,2,0,,2,2005.0,6,107560,2,1,0,0,1,,0.0,589.0,43,3.0,0.0,5.0,6.0,3.3,5,5,1218.98079890182,1020.0,22955.126503613814,1,1,2,3,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.20126223217600983,6956.098940489035,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +7554,1,34.0,35.0,5,111,0.0,0.0,0.0,52,67,0.0,0.0,0.0,2476.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107561,1,1,3,0,2,,3340.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1473.33527149938,0.0,47737.5108144202,1,1,1,2,90.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05186696913514116,19890.62950600842,5,3,5,5_1,5_3,5_0_0 +7555,2,72.0,0.0,5,111,900.0,0.0,0.0,0,75,0.0,0.0,1534.680489034855,1050.0,207.83838380947813,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,107562,2,1,3,0,1,,116.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1497.35478730584,900.0,25707.709384346985,0,5,0,1,100.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04084377897314057,25707.709384346985,7,4,7,7_1,7_2,7_0_0 +7556,2,30.0,0.0,6,400,1200.0,,,0,12,0.0,0.0,,1380.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,4,107563,2,2,0,0,2,,0.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,4.386640891614599,1200.0,14494.27293744797,0,4,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09521001887818589,14494.27293744797,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7557,2,27.0,0.0,1,120,0.0,0.0,0.0,54,63,0.0,0.0,0.0,612.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,17.0,2,,1,107564,2,2,0,0,1,,0.0,450.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1871.11229244556,0.0,36211.135929272576,1,1,2,3,68.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01690087826008429,24140.757286181717,6,3,6,6_0,6_0,6_1_0 +7558,1,49.0,230.0,2,111,360.0,600.0,0.0,0,85,0.0,0.0,613.872195613942,960.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,2,,2,107565,2,1,0,0,1,,0.0,230.0,11,0.0,1.0,3.0,1.0,1.0,1,1,401.084044031682,360.0,11437.432544803803,0,7,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08393492125434587,11437.432544803803,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7559,1,46.0,440.0,1,111,800.0,1600.0,0.0,0,85,0.0,0.0,1364.160434697649,2400.0,0.0,3037.6064767036623,71,2,2,2,2,1,2,2,2,0,,2,,1,107566,1,3,0,0,1,,300.0,392.0,31,0.0,0.0,4.0,5.0,2.8,4,3,447.009447931208,800.0,16469.684071412477,0,7,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.14572228523592867,5882.030025504457,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +7560,1,39.0,428.0,2,111,110.0,140.0,0.0,0,52,0.0,33.1081819252556,187.57205977092673,275.0,0.0,265.7905667115705,50,1,1,1,1,1,2,2,2,1,5.0,2,,2,107567,1,2,0,1,1,920.0,0.0,401.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1465.65684534013,110.0,14420.031993510429,0,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.019070692778196376,8011.128885283571,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7561,2,66.0,0.0,1,111,800.0,0.0,0.0,0,75,0.0,0.0,1364.160434697649,800.0,0.0,0.0,31,1,2,2,1,1,2,2,2,0,,2,,1,107568,1,3,0,0,1,,305.0,473.0,21,1.0,1.0,4.0,2.0,1.5,2,2,436.368161474964,800.0,31656.73810698495,0,5,2,3,85.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.02527108122436287,21104.4920713233,5,3,5,5_0,5_2,5_1_0 +7562,2,81.0,0.0,6,111,360.0,0.0,0.0,0,77,0.0,0.0,613.872195613942,360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,107569,2,1,0,1,2,44.0,0.0,302.0,11,0.0,0.0,2.0,1.0,1.0,1,1,866.891255007948,360.0,14294.499457468859,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025184512481260784,14294.499457468859,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +7563,2,84.0,0.0,2,111,550.0,0.0,0.0,0,63,1582.0242765549024,0.0,937.8602988546337,2080.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107570,2,1,2,0,1,,160.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1519.76848351043,550.0,8784.207263371598,0,5,0,1,52.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.23678858406189793,8784.207263371598,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +7564,1,64.0,68.0,8,111,660.0,0.0,0.0,77,77,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,107571,2,1,0,0,1,,0.0,376.0,41,0.0,5.0,3.0,2.0,1.5,2,2,137.951094005042,660.0,17247.350634345734,5,5,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038266746817664885,11498.23375623049,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7565,2,67.0,0.0,7,111,2400.0,0.0,0.0,42,74,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,107572,2,1,2,0,1,,160.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,2309.08427792419,2400.0,28265.11788697818,1,5,0,1,180.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08491031276065142,18843.41192465212,5,3,5,5_1,5_3,5_0_0 +7566,2,43.0,0.0,1,120,450.0,0.0,0.0,0,64,527.3414255183008,397.2981831030672,767.3402445174275,1310.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,107573,2,1,1,0,1,,200.0,,32,1.0,1.0,5.0,2.0,1.3,1,1,248.600381178928,450.0,21509.68185804204,0,1,1,2,110.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060902806868350645,16545.9091215708,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7568,2,60.0,0.0,6,112,750.0,0.0,0.0,85,37,0.0,463.51454695357836,1278.9004075290459,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,107575,2,1,2,0,1,,250.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,2382.05386938885,750.0,25266.006259403388,6,4,0,1,120.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043536757994374634,16844.00417293559,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7569,2,79.0,0.0,5,111,0.0,0.0,1850.0,77,74,0.0,662.163638505112,1166.0888372672762,2350.0,0.0,2213.9544729946597,31,0,0,0,0,0,0,0,0,0,,1,,3,107576,2,2,2,0,1,,250.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,1975.69475880297,0.0,25423.81423832939,5,5,1,2,118.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0924330227545912,16949.209492219594,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7570,2,45.0,0.0,6,111,930.0,200.0,0.0,0,38,0.0,397.2981831030672,1585.836505336017,1430.0,0.0,379.7008095879578,12,0,0,0,0,0,0,0,0,0,,1,,4,107577,2,1,2,0,1,,270.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,906.337652137124,930.0,75169.36693169526,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019023706841902892,50112.91128779684,10,5,10,10_1,10_4,10_0_0 +7571,2,64.0,0.0,7,111,420.0,,,0,54,0.0,0.0,,504.0,116.38949493330776,,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,107578,2,1,0,0,1,,480.0,,22,3.0,0.0,5.0,3.0,2.0,3,3,92.26052520870017,420.0,30614.76639330067,0,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01646264399098236,15307.383196650335,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +7572,2,47.0,0.0,8,111,1022.0,1436.0,0.0,85,62,0.0,0.0,1742.7149553262466,2458.0,0.0,2726.251812841537,50,2,2,1,2,1,2,2,2,2,45.0,1,2002.0,6,107579,2,1,2,0,1,,350.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,765.871912455706,1022.0,85258.95808260396,6,1,1,2,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.028829815133543425,56839.30538840264,10,5,10,10_1,10_3,10_0_0 +7573,2,60.0,0.0,2,112,678.0,778.0,0.0,0,75,0.0,152.29763685617576,1156.1259684062575,1571.0,0.0,1477.0361492971558,42,2,2,2,1,1,2,2,2,0,,1,,2,107580,2,2,1,0,1,,340.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,2925.19386410597,678.0,43880.57976177483,0,5,1,2,120.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.03580171475693506,43880.57976177483,10,5,10,10_1,10_1,10_0_1 +7574,2,74.0,0.0,1,112,2000.0,0.0,0.0,77,74,0.0,0.0,3410.4010867441225,5000.0,4156.767676189563,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107581,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,853.814393804551,2000.0,53904.22976858683,5,5,0,1,214.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09275709942364846,35936.15317905789,9,5,9,9_1,9_0,9_1_0 +7575,2,43.0,0.0,9,300,0.0,0.0,0.0,85,47,0.0,0.0,0.0,1573.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,107582,2,1,1,0,1,,594.0,700.0,42,1.0,0.0,4.0,4.0,2.1,2,2,2421.90663979445,0.0,58611.54248009172,6,1,2,3,100.0,0,1,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02683771717037293,27910.2583238532,7,4,7,7_1,7_1,7_0_0 +7576,2,51.0,0.0,8,112,600.0,0.0,0.0,0,43,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,107583,2,1,2,0,1,,300.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,1479.49945207703,600.0,66601.37214314713,0,1,1,2,45.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009008823402473042,44400.91476209809,10,5,10,10_1,10_1,10_0_0 +7577,1,74.0,121.0,2,111,840.0,0.0,0.0,0,78,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107584,1,3,0,1,1,452.0,0.0,184.0,11,0.0,4.0,1.0,1.0,1.0,1,1,413.87313973924,840.0,11516.0,0,5,2,3,35.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0729419937478291,11516.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7578,2,66.0,0.0,1,400,0.0,0.0,0.0,78,78,0.0,0.0,0.0,2147.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107585,2,2,4,0,2,,100.0,,41,0.0,1.0,4.0,3.0,2.0,3,3,901.089443567129,0.0,22903.994630691723,5,5,0,1,80.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09373910685095016,11451.997315345861,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7579,1,57.0,351.0,9,111,668.0,,,0,85,0.0,0.0,,800.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,107586,2,2,0,0,1,,400.0,341.0,31,1.0,3.0,3.0,3.0,1.8,2,2,120.98794372567501,668.0,2117.149987222796,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.377866473716117,1176.1944373459978,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7580,1,70.0,152.0,7,111,165.0,,,0,78,0.0,0.0,,165.0,0.0,,71,0,0,0,0,0,0,0,0,0,,3,,5,107587,2,1,0,0,2,,80.0,200.0,11,0.0,2.0,1.0,1.0,1.0,1,1,42.887186109422316,165.0,8987.433281648899,0,5,2,3,18.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01835896799778278,8987.433281648899,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7581,2,93.0,0.0,2,111,390.0,1100.0,0.0,75,75,0.0,0.0,665.0282119151038,1490.0,0.0,2088.354452733768,70,0,0,0,0,0,0,0,0,0,,1,,2,107588,2,1,2,0,1,,240.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1380.32089420336,390.0,39939.827749441116,5,5,0,1,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037306119829744376,26626.551832960744,7,4,7,7_1,7_3,7_0_1 +7582,2,44.0,0.0,7,221,806.0,0.0,0.0,56,63,1265.6194212439218,0.0,1374.3916379578814,2056.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,107589,2,1,1,0,1,,340.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,903.336854543844,806.0,32243.831033362258,1,1,1,2,165.0,1,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06376413515728588,12897.532413344903,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +7583,2,37.0,0.0,2,111,360.0,,,0,67,0.0,0.0,,435.0,103.91919190473907,,60,0,0,0,0,0,0,0,0,0,,2,,2,107590,2,2,0,0,2,,380.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,146.96163511115694,360.0,21331.172964696492,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020392690112256532,21331.172964696492,6,3,6,6_0,6_2,6_0_1 +7584,0,89.0,0.0,1,111,400.0,1000.0,0.0,0,77,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,1,,1,107591,2,2,1,0,1,,300.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,330.186166134992,400.0,22486.664576865325,0,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06225912229954924,22486.664576865325,6,3,6,6_1,6_3,6_1_0 +7585,2,60.0,0.0,1,111,750.0,1140.0,0.0,85,78,0.0,0.0,1278.9004075290459,1890.0,0.0,2164.2946146513596,31,0,0,0,0,0,0,0,0,0,,1,,1,107592,2,1,2,0,1,,350.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,859.254485538195,750.0,23361.196309807452,6,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08090339103081566,11680.598154903726,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +7586,2,77.0,0.0,1,111,300.0,1521.0,0.0,75,75,0.0,0.0,511.56016301161833,1821.0,0.0,2887.624656916419,44,0,0,0,0,0,0,0,0,0,,1,,1,107593,2,2,5,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,325.852490760817,300.0,57579.01218391015,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03162610699509116,38386.00812260676,9,5,9,9_1,9_4,9_1_0 +7587,2,40.0,0.0,2,112,0.0,0.0,0.0,85,42,0.0,0.0,0.0,369.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,107594,2,2,0,1,2,,530.0,,42,1.0,0.0,5.0,7.0,3.3999999999999995,4,2,835.531056157738,0.0,12652.850686666821,6,1,1,2,80.0,10,5,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02916338848358028,3721.4266725490656,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +7588,2,77.0,0.0,2,111,460.0,,,78,77,0.0,0.0,,712.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,107595,1,1,0,0,2,,268.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,117.68629316850709,460.0,15459.89192482667,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046054655715711455,10306.594616551114,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +7589,2,66.0,0.0,1,111,423.0,1040.0,0.0,52,78,0.0,0.0,721.2998298463818,1463.0,0.0,1974.4442098573807,70,0,0,0,0,0,0,0,0,0,,1,,1,107596,2,1,1,0,1,,258.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,289.337393530365,423.0,20880.23122784658,4,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07006627388536263,13920.15415189772,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +7590,2,55.0,0.0,1,222,600.0,0.0,0.0,77,47,1582.0242765549024,0.0,1023.1203260232367,2240.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,107597,2,1,1,0,1,,260.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1145.61192361132,600.0,16905.756333800906,5,1,0,1,100.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13249924793494186,11270.504222533937,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7591,1,45.0,212.0,2,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,2784.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,107598,2,1,0,0,1,,453.0,389.0,42,1.0,0.0,3.0,2.0,1.5,2,2,274.681013150947,0.0,18358.234918231898,6,1,2,3,69.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15164856601955556,12238.823278821264,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7592,2,44.0,0.0,1,111,2000.0,0.0,0.0,0,43,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,2,,1,107599,2,1,0,0,1,,200.0,900.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1358.92328049116,2000.0,21600.057058537997,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09259234800074043,21600.057058537997,6,3,6,6_0,6_4,6_1_0 +7593,1,63.0,147.0,2,111,283.0,660.0,0.0,0,77,0.0,0.0,482.5717537742933,943.0,0.0,1253.0126716402608,70,2,2,2,2,1,2,2,2,0,,2,,2,107600,1,3,0,0,1,,0.0,279.0,11,0.0,2.0,2.0,1.0,1.0,1,1,157.971536929731,283.0,11409.496760973434,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08265044635671953,11409.496760973434,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7594,2,56.0,0.0,7,111,0.0,,,0,55,0.0,0.0,,300.0,58.19474746665388,,70,0,0,0,0,0,0,0,0,0,,2,,5,107601,2,2,0,0,1,,398.0,466.0,22,2.0,0.0,2.0,2.0,1.5,2,2,165.42413491398887,0.0,21625.103456279296,0,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013872766001167445,14416.73563751953,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +7595,1,48.0,31.0,6,111,600.0,240.0,0.0,68,53,0.0,0.0,1023.1203260232367,840.0,0.0,455.6409715055494,41,2,1,2,2,1,2,2,2,2,15.0,2,,4,107602,2,1,0,1,1,720.0,0.0,281.0,43,2.0,3.0,3.0,3.0,1.8,2,2,298.366727873271,600.0,26481.249130620363,1,1,2,3,63.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03172055803926201,14711.805072566867,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +7596,2,60.0,0.0,9,120,557.0,0.0,0.0,11,21,2109.365702073203,662.163638505112,949.796702658238,3197.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,107603,2,1,1,0,1,,263.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1510.86078461625,557.0,8464.178217726887,1,1,1,2,106.0,0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3777094382658895,5642.785478484591,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +7597,2,58.0,0.0,5,112,2060.0,0.0,0.0,22,55,0.0,0.0,3512.713119346446,2060.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,107604,2,2,2,0,1,,700.0,,43,4.0,0.0,6.0,5.0,3.0,5,5,1128.71589237,2060.0,76481.70325643927,1,1,0,1,120.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026934546594666237,25493.901085479756,7,4,7,7_1,7_1,7_0_0 +7598,1,39.0,425.0,9,111,0.0,,,0,52,0.0,0.0,,594.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2011.0,6,107605,2,1,0,0,2,,328.0,850.0,32,1.0,0.0,3.0,3.0,1.8,2,1,97.14855764632246,0.0,21051.79761793032,0,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028216117729256338,11695.4431210724,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +7599,2,90.0,0.0,1,400,563.0,0.0,0.0,0,71,3691.3899786281054,0.0,960.0279059184704,4128.0,90.06329965077386,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107606,2,1,2,0,1,,291.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1439.38466983271,563.0,17325.849472466227,0,5,0,1,125.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23825671616044605,17325.849472466227,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7600,2,75.0,0.0,1,111,0.0,0.0,0.0,86,74,0.0,0.0,0.0,7385.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,107607,2,1,2,0,2,,612.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,633.55278557079,0.0,100279.73449337998,6,5,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07364399235109188,66853.15632891998,10,5,10,10_1,10_4,10_1_0 +7601,1,43.0,200.0,6,211,480.0,,,0,81,0.0,0.0,,780.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,2,,4,107608,2,2,0,0,2,,500.0,450.0,32,1.0,0.0,3.0,7.0,3.1999999999999993,3,1,136.47444156188607,480.0,22184.559459578042,0,4,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0351595893270371,6932.67483111814,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7602,2,50.0,0.0,1,112,420.0,0.0,0.0,11,11,0.0,662.163638505112,716.1842282162656,1040.0,166.2707070475825,0.0,50,2,2,2,2,1,2,2,2,0,,5,,1,107609,1,3,4,0,2,,0.0,,43,3.0,1.0,5.0,4.0,2.5,4,3,578.888080995443,420.0,39004.29435625296,1,1,0,1,120.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.026663730677985532,15601.717742501185,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7603,2,53.0,0.0,9,111,1592.0,0.0,0.0,0,52,0.0,317.83854648245375,2714.679265048321,1832.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,2007.0,6,107610,2,1,1,0,1,,153.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,1359.44030774337,1592.0,42075.03368848365,0,1,1,2,116.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04354126044351656,21037.516844241825,5,3,5,5_1,5_3,5_0_0 +7604,2,53.0,0.0,1,112,0.0,0.0,0.0,0,68,0.0,0.0,0.0,730.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,107611,2,2,5,0,1,,83.0,490.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1013.03697915666,0.0,18724.32759483526,0,1,2,3,70.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0389867137446023,18724.32759483526,5,3,5,5_1,5_0,5_1_0 +7605,0,61.0,0.0,2,112,580.0,850.0,0.0,0,75,0.0,0.0,989.0163151557955,1430.0,0.0,1613.7284407488207,41,0,0,0,0,0,0,0,0,0,,1,,2,107612,2,1,2,0,1,,102.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,3188.99392971675,580.0,9822.461154083097,0,7,0,1,110.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1455846938529824,9822.461154083097,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +7606,2,69.0,0.0,2,111,240.0,0.0,0.0,0,90,0.0,0.0,409.2481304092947,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,107613,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1008.92506931162,240.0,18534.37820224247,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012948910256453191,18534.37820224247,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +7607,2,48.0,0.0,8,112,500.0,1200.0,0.0,56,62,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,2,8.0,1,2001.0,6,107614,1,2,3,0,1,,215.0,462.0,43,3.0,0.0,4.0,4.0,2.3,4,3,223.575846156883,500.0,38518.512885508026,1,1,2,3,85.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044134621838933914,16747.179515438274,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +7608,2,64.0,0.0,1,112,478.0,0.0,0.0,72,72,3090.2207535372427,297.97363732730037,815.0858597318453,3777.0,199.524848457099,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,107615,1,1,1,0,2,,110.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,3332.39128864154,478.0,31650.806662677383,7,5,0,1,200.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11933345144260847,21100.537775118257,5,3,5,5_1,5_0,5_1_0 +7609,2,60.0,0.0,6,212,1600.0,0.0,0.0,90,38,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,107616,2,1,1,0,2,,760.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,1544.57524897116,1600.0,41253.48097494949,4,4,0,1,154.0,3,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038784605860813885,27502.320649966325,7,4,7,7_1,7_0,7_0_0 +7610,2,42.0,0.0,1,112,1500.0,0.0,0.0,33,37,0.0,662.163638505112,2557.8008150580918,2060.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,1,107617,2,2,3,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,450.708840110865,1500.0,87995.41068386749,1,1,1,2,166.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02341031178774494,38258.87421037717,9,5,9,9_1,9_0,9_1_0 +7611,2,38.0,0.0,1,111,1040.0,0.0,0.0,0,48,0.0,0.0,1773.4085651069436,1040.0,0.0,0.0,43,2,2,2,2,1,1,2,2,0,,2,,1,107618,2,2,0,0,1,,0.0,550.0,12,1.0,3.0,1.0,1.0,1.0,1,1,1181.85632493484,1040.0,8952.564559951985,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.11616783023853199,8952.564559951985,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +7613,2,53.0,0.0,7,111,1800.0,0.0,0.0,42,31,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,5,107620,2,1,3,0,1,,230.0,,43,4.0,0.0,6.0,6.0,3.5,6,4,813.397741170424,1800.0,191818.15485318046,1,1,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009383887575072017,54805.187100908704,10,5,10,10_1,10_4,10_0_0 +7614,2,38.0,0.0,1,111,1640.0,2057.0,0.0,46,43,0.0,0.0,2796.5288911301805,3697.0,0.0,3905.222826612146,33,0,0,0,0,0,0,0,0,0,,1,,1,107621,2,2,2,0,1,,336.0,,43,2.0,0.0,8.0,7.0,2.9999999999999996,3,2,236.712882064917,1640.0,139711.60503465676,1,1,1,2,250.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026461652910528977,46570.53501155226,10,5,10,10_1,10_3,10_1_0 +7615,2,52.0,0.0,7,111,326.0,976.0,0.0,55,52,0.0,0.0,555.8953771392919,1302.0,0.0,1852.939950789234,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,107622,2,1,2,0,1,,310.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1303.23739156997,326.0,42665.72709839704,1,1,1,2,133.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030516297003383694,21332.86354919852,6,3,6,6_1,6_3,6_0_0 +7616,2,44.0,0.0,1,111,755.0,1172.0,0.0,43,53,0.0,0.0,1287.4264102459063,1927.0,0.0,2225.0467441854325,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,107623,2,1,1,0,1,,642.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,514.253058848756,755.0,54939.29435336543,1,1,1,2,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03507507736822538,26161.568739697825,7,4,7,7_1,7_3,7_1_0 +7617,2,63.0,0.0,6,222,340.0,0.0,0.0,72,72,1291.986492519837,0.0,579.7681847465008,1565.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,107624,2,1,2,0,1,,213.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1121.15085452919,340.0,44275.430354652344,5,5,0,1,170.0,1,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035346917860857203,29516.95356976823,8,4,8,8_1,8_0,8_0_0 +7618,2,67.0,0.0,2,111,450.0,200.0,0.0,74,31,0.0,0.0,767.3402445174275,650.0,0.0,379.7008095879578,10,0,0,0,0,0,0,0,0,1,20.0,2,,2,107625,2,2,0,1,2,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,930.599470090102,450.0,230451.05943500888,5,1,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0028205554862433214,153634.03962333925,10,5,10,10_0,10_4,10_0_1 +7619,2,65.0,0.0,6,111,360.0,0.0,0.0,0,77,0.0,0.0,613.872195613942,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,107626,2,1,0,0,1,,0.0,400.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1054.32351530813,360.0,21179.805626260728,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01699732312716024,21179.805626260728,5,3,5,5_0,5_4,5_0_0 +7620,2,59.0,0.0,6,111,1979.0,0.0,0.0,46,46,0.0,0.0,3374.591875333309,4983.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,107627,2,1,2,0,1,,240.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1157.3016941286,1979.0,91898.39849788799,1,1,0,1,142.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054222925333290976,61265.598998591995,10,5,10,10_1,10_2,10_0_0 +7621,2,30.0,0.0,2,111,400.0,0.0,0.0,0,43,0.0,0.0,682.0802173488245,400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,,2,107628,2,1,0,1,2,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,466.748599330875,400.0,18735.07963097932,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021350322917153847,18735.07963097932,5,3,5,5_0,5_4,5_0_1 +7622,2,75.0,0.0,1,111,292.0,1284.0,0.0,0,56,0.0,0.0,497.91855866464186,1576.0,0.0,2437.679197554689,31,0,0,0,0,0,0,0,0,1,10.0,1,,1,107629,2,1,2,0,1,,352.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,683.372028472254,292.0,39555.47652531144,0,5,0,1,103.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03984277623331176,39555.47652531144,9,5,9,9_1,9_4,9_1_0 +7623,2,75.0,0.0,1,221,1200.0,1700.0,0.0,75,74,0.0,0.0,2046.2406520464733,2900.0,0.0,3227.4568814976415,50,2,2,2,1,1,2,2,2,0,,1,,1,107630,1,2,4,0,2,,201.0,350.0,41,1.0,3.0,6.0,3.0,2.0,3,3,613.071420862431,1200.0,60148.71081026723,5,5,2,3,100.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.048213834692945365,30074.355405133614,8,4,8,8_1,8_1,8_1_0 +7624,2,72.0,0.0,5,112,1142.0,0.0,0.0,56,75,0.0,794.5963662061343,1947.3390205308938,1742.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107631,2,1,2,0,1,,478.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1454.52052285367,1142.0,41100.74342876611,5,5,0,1,153.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042383661575833856,27400.495619177407,7,4,7,7_1,7_0,7_0_0 +7625,0,64.0,0.0,6,111,0.0,0.0,0.0,77,53,0.0,0.0,0.0,436.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,107632,2,1,0,0,1,436.0,0.0,,42,1.0,2.0,4.0,3.0,2.0,3,3,946.370040072039,0.0,67342.79735896,5,1,5,0,51.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006474337525303141,33671.39867948,9,5,9,9_0,9_4,9_0_0 +7626,2,63.0,0.0,2,111,367.0,86.0,0.0,74,38,0.0,0.0,625.8085994175465,453.0,0.0,163.27134812282185,10,0,0,0,0,0,0,0,0,0,,2,,2,107633,2,2,0,1,2,,0.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,954.88638857895,367.0,81427.23012023895,5,4,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005563249533738047,54284.8200801593,10,5,10,10_0,10_4,10_0_1 +7627,2,32.0,0.0,8,111,540.0,780.0,0.0,55,55,0.0,0.0,920.8082934209131,1320.0,0.0,1480.8331573930354,60,2,2,2,1,2,2,2,2,2,15.0,2,2000.0,6,107634,1,3,0,0,1,,0.0,409.0,43,2.0,0.0,3.0,4.0,2.1,2,2,332.324340194147,540.0,43991.65277339813,1,1,2,3,61.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.030005692370762838,20948.406082570535,5,3,5,5_0,5_3,5_0_0 +7628,2,30.0,0.0,9,112,2800.0,0.0,0.0,21,54,0.0,0.0,4774.561521441771,2800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,107635,2,1,1,0,1,,478.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1526.73435114315,2800.0,47659.0,1,1,1,2,214.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058750708155857236,22694.761904761905,6,3,6,6_1,6_0,6_0_0 +7629,2,33.0,0.0,2,111,0.0,0.0,188.0,0,47,0.0,0.0,118.49983859797183,188.0,0.0,224.98564374216,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,107636,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,213.853126852257,0.0,17021.184988577494,0,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011045059443638164,17021.184988577494,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +7630,2,57.0,0.0,2,111,300.0,86.0,0.0,0,52,0.0,0.0,511.56016301161833,386.0,0.0,163.27134812282185,20,0,0,0,0,0,0,0,0,4,35.0,2,,2,107637,2,1,0,1,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1972.61757417668,300.0,19534.932698076744,0,1,1,2,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019759474269292084,19534.932698076744,5,3,5,5_0,5_3,5_0_1 +7631,2,44.0,0.0,1,112,740.0,0.0,0.0,0,33,0.0,662.163638505112,1261.8484020953254,1300.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,4,60.0,1,,1,107638,2,1,3,0,1,,150.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,321.658146309479,740.0,40554.50059910101,0,1,1,2,100.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03205562837158492,31195.769691616162,8,4,8,8_1,8_0,8_1_0 +7632,2,55.0,0.0,6,111,600.0,,,77,65,0.0,0.0,,840.0,332.541414095165,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,107639,2,1,0,0,2,,360.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,114.92297737359058,600.0,138253.63283310033,5,1,0,1,182.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006075789711898908,69126.81641655017,10,5,10,10_1,10_3,10_0_0 +7633,2,65.0,0.0,1,120,140.0,0.0,0.0,0,78,0.0,370.8116375628627,238.72807607208856,612.0,266.03313127613205,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107640,2,2,2,0,2,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,905.102474237639,140.0,6166.376836223049,0,6,0,1,64.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09924790784840429,6166.376836223049,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +7634,2,51.0,0.0,1,112,1794.4,0.0,0.0,56,21,0.0,132.4327277010224,3059.811855026827,1894.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107641,2,1,1,0,1,,450.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2821.38312748619,1794.4,55806.39675652211,1,1,0,1,100.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03393876168467457,37204.26450434807,9,5,9,9_1,9_1,9_1_0 +7635,0,51.0,0.0,1,112,640.0,0.0,0.0,0,85,1637.9224676598421,0.0,1091.3283477581192,2253.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,107642,2,3,4,0,1,,471.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,935.170882337312,640.0,23198.086332589737,0,7,5,0,120.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09712007997982498,15465.390888393158,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7636,0,78.0,0.0,2,211,378.0,0.0,0.0,0,86,0.0,0.0,644.5658053946391,714.0,465.55797973323104,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107643,2,1,0,1,1,,200.0,,21,1.0,4.0,5.0,2.0,1.5,2,2,370.72038890048,378.0,23059.685522695916,0,6,5,0,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030963128239423016,15373.123681797277,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +7637,2,68.0,0.0,2,111,1198.0,0.0,0.0,86,78,0.0,119.18945493092015,2042.8302509597293,1288.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107644,2,1,1,0,1,,171.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,289.259661135403,1198.0,20500.009807084694,6,5,0,1,90.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06282923823552874,13666.673204723129,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +7638,2,61.0,0.0,5,212,1400.0,0.0,0.0,78,78,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107645,2,1,2,0,1,,260.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1404.56216688066,1400.0,29034.25690428392,6,5,0,1,100.0,3,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048218902402610966,19356.171269522612,5,3,5,5_1,5_0,5_0_0 +7639,2,59.0,0.0,2,111,760.0,1298.0,0.0,90,21,0.0,0.0,1295.9524129627664,2058.0,0.0,2464.258254225846,50,0,0,0,0,0,0,0,0,0,,1,,2,107646,2,1,1,0,1,,184.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,277.446749225661,760.0,70746.91875339496,5,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029089606109541585,47164.612502263306,10,5,10,10_1,10_4,10_0_1 +7640,2,29.0,0.0,1,111,0.0,0.0,0.0,42,42,0.0,0.0,0.0,561.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,107647,2,1,0,0,1,,1022.0,670.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2128.75461998966,0.0,22753.87655275627,1,4,2,3,80.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02465513947477419,12641.042529309037,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +7641,2,77.0,0.0,2,300,650.0,0.0,0.0,0,86,1054.6828510366015,0.0,1108.3803531918397,1714.0,88.67771042537734,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,107648,2,3,4,0,2,,200.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1426.77506326184,650.0,9743.47040523098,0,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.17591268087393216,9743.47040523098,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +7642,2,85.0,0.0,1,120,500.0,0.0,0.0,0,72,2636.7071275915036,0.0,852.6002716860306,3090.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107649,2,2,4,0,2,,200.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,2072.95897578205,500.0,14555.427835233007,0,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.21229193912942335,14555.427835233007,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7643,2,52.0,0.0,2,211,340.0,,,0,11,0.0,0.0,,540.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,2,107650,2,1,0,0,1,,150.0,,22,1.0,3.0,4.0,2.0,1.5,2,2,87.81476709017497,340.0,9401.0,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05744069779810659,6267.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +7644,2,37.0,0.0,1,112,2600.0,0.0,0.0,55,64,0.0,0.0,4433.521412767359,2620.0,27.711784507930417,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,107651,1,3,4,0,1,,480.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2765.57699485419,2600.0,37988.02550134914,1,1,1,2,40.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06896910185308133,21104.458611860635,5,3,5,5_1,5_1,5_1_0 +7645,1,34.0,306.0,2,111,1450.0,0.0,0.0,68,63,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,60.0,2,,2,107652,2,1,0,0,1,,0.0,902.0,43,2.0,0.0,3.0,5.0,2.4,2,2,760.674362687954,1450.0,23235.308484998393,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06240502470350999,9681.378535415997,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +7646,2,56.0,0.0,2,112,950.0,0.0,0.0,78,52,2109.365702073203,0.0,1619.9405162034582,3078.0,177.35542085075468,0.0,70,2,2,2,2,1,2,2,2,1,5.0,1,,2,107653,2,2,3,0,1,,500.0,300.0,42,1.0,7.0,5.0,2.0,1.5,2,2,1207.62968682716,950.0,30820.215899878036,5,1,2,3,100.0,8,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.09986951454198542,20546.810599918692,5,3,5,5_1,5_0,5_0_1 +7647,2,28.0,0.0,6,111,480.0,,,0,52,0.0,0.0,,744.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,107654,2,2,0,0,2,,510.0,,22,2.0,2.0,4.0,3.0,2.0,3,3,161.64347099102147,480.0,44046.68633401756,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01689116848332365,22023.34316700878,6,3,6,6_1,6_2,6_0_0 +7648,2,22.0,0.0,6,111,357.0,,,0,81,0.0,0.0,,609.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,107655,1,1,0,0,2,,172.0,,32,3.0,0.0,4.0,5.0,2.8,4,3,119.8033098496317,357.0,7029.158370954522,0,4,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08663910639949077,2510.4137039123293,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7649,1,81.0,144.0,8,221,600.0,0.0,0.0,86,78,0.0,0.0,1023.1203260232367,1000.0,554.2356901586083,0.0,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,107656,2,1,0,0,1,,240.0,333.0,41,2.0,6.0,3.0,4.0,2.5,4,4,1408.03763632528,600.0,21120.339322999014,6,5,2,3,60.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0473477241395951,8448.135729199606,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +7650,2,61.0,0.0,6,211,850.0,,,85,43,0.0,0.0,,1114.0,365.79555550468154,,33,0,0,0,0,0,0,0,0,0,,1,,4,107657,2,1,0,0,1,,400.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,92.72892263296244,850.0,89069.76283915146,6,4,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012507050254660954,59379.84189276764,10,5,10,10_1,10_2,10_0_0 +7651,2,46.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,282.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,107658,2,1,0,0,2,,232.0,470.0,32,1.0,0.0,3.0,2.0,1.3,1,1,98.09803310045908,0.0,30671.20575248258,0,1,2,3,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009194291293134912,23593.235194217366,6,3,6,6_0,6_2,6_0_0 +7652,2,73.0,0.0,7,111,639.0,825.0,0.0,0,78,0.0,0.0,1089.6231472147472,1464.0,0.0,1566.2658395503258,50,0,0,0,0,0,0,0,0,0,,1,,5,107659,2,1,2,0,1,,660.0,,21,1.0,3.0,2.0,3.0,2.0,3,3,1608.43423827605,639.0,38760.687009577734,0,5,0,1,57.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03777022836665013,19380.343504788867,5,3,5,5_1,5_3,5_0_0 +7654,2,52.0,0.0,8,112,1500.0,0.0,0.0,46,21,0.0,595.9472746546007,2557.8008150580918,2050.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,107661,2,1,1,0,1,,180.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,779.182410838691,1500.0,56724.5494147266,1,1,1,2,125.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03613955546851443,22689.81976589064,6,3,6,6_1,6_0,6_0_0 +7655,2,66.0,0.0,5,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,107662,2,1,0,0,1,,303.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1069.14465265537,0.0,23359.495538734096,0,5,0,1,47.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019264114640396318,23359.495538734096,6,3,6,6_0,6_4,6_0_0 +7656,2,39.0,0.0,9,112,2000.0,0.0,0.0,54,38,0.0,0.0,3410.4010867441225,2120.0,166.2707070475825,0.0,31,2,2,1,2,1,2,2,2,2,20.0,1,2004.0,6,107663,2,1,4,0,1,,294.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1426.08746054824,2000.0,68654.22458364331,1,1,1,2,110.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03087938160917026,32692.487896973005,8,4,8,8_1,8_1,8_0_0 +7657,2,31.0,0.0,9,111,0.0,,,85,67,0.0,0.0,,959.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,107664,2,2,0,0,2,,520.0,701.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,186.6008243762856,0.0,24025.175910508806,6,4,2,3,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03991646111446475,8008.391970169603,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +7658,2,79.0,0.0,5,111,1200.0,,,72,90,0.0,0.0,,1752.0,764.8452524188796,,71,0,0,0,0,0,0,0,0,0,,1,,3,107665,2,1,0,0,2,,700.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,78.8815443707613,1200.0,11578.905195829197,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15130964200579886,7719.270130552798,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +7659,2,59.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,619.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,35.0,2,,1,107666,1,3,0,0,1,,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,1,1,428.441973601149,0.0,15480.0854316141,0,1,2,3,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03998685942235509,15480.0854316141,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +7660,2,92.0,0.0,1,120,600.0,1200.0,0.0,71,71,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,1,107667,2,2,2,0,1,,220.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,2028.38043789852,600.0,20463.16149187673,5,5,0,1,120.0,0,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08796294750029446,13642.107661251153,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7661,1,57.0,255.0,2,111,244.0,1172.0,0.0,0,42,0.0,0.0,416.0689325827829,1416.0,0.0,2225.0467441854325,44,2,2,2,2,1,1,1,2,2,5.0,2,,2,107668,1,3,0,0,1,,212.0,239.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1264.56235065632,244.0,9117.64161328159,0,1,2,3,70.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.1553033185618225,9117.64161328159,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7662,2,45.0,0.0,5,111,450.0,0.0,0.0,68,65,0.0,0.0,767.3402445174275,450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,107669,2,1,0,1,1,912.0,0.0,446.0,43,2.0,0.0,4.0,4.0,2.1,2,2,699.601799984152,450.0,37458.18332495597,1,1,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012013396274351459,17837.230154740937,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7663,2,68.0,0.0,1,111,450.0,850.0,0.0,86,72,0.0,0.0,767.3402445174275,1300.0,0.0,1613.7284407488207,44,0,0,0,0,0,0,0,0,0,,1,,1,107670,2,1,1,0,1,,300.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,870.927415980932,450.0,20141.145410789788,6,5,0,1,115.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06454449205771479,13427.430273859858,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +7664,2,81.0,0.0,2,111,3400.0,0.0,0.0,0,77,0.0,0.0,5797.681847465008,3400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,107671,1,2,2,0,2,,210.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1453.8899436644,3400.0,46037.14658260476,0,5,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07385340431339196,46037.14658260476,10,5,10,10_1,10_3,10_0_1 +7665,2,53.0,0.0,9,111,450.0,900.0,0.0,46,37,0.0,0.0,767.3402445174275,1350.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,2,50.0,1,2005.0,6,107672,2,1,1,0,1,,650.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1262.29676944783,450.0,63822.28443944198,1,1,1,2,120.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021152486343245087,26592.61851643416,7,4,7,7_1,7_2,7_0_0 +7666,2,78.0,0.0,5,112,839.0,0.0,0.0,86,86,0.0,0.0,1430.6632558891592,959.0,166.2707070475825,0.0,70,2,2,2,2,1,2,2,2,0,,1,,3,107673,2,2,3,0,1,,160.0,413.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1853.35680559054,839.0,20895.049820904576,5,5,2,3,70.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.045896037971661724,13930.033213936384,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +7667,2,34.0,0.0,1,400,2160.0,,,85,22,0.0,0.0,,2385.0,311.75757571421724,,71,0,0,0,0,0,0,0,0,0,,1,,1,107674,2,2,0,0,2,,420.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,3,155.27140151123842,2160.0,58598.30164630908,6,1,0,1,160.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0407008383006647,22537.808325503498,6,3,6,6_1,6_1,6_1_0 +7668,2,73.0,0.0,8,300,604.0,0.0,0.0,77,75,1336.2831722633741,0.0,1029.941128196725,2600.0,1010.0945453140638,0.0,44,0,0,0,0,0,0,0,0,0,,1,2003.0,6,107675,2,1,2,0,1,,340.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,936.679526696119,604.0,54211.10232358083,5,5,0,1,166.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047960655448045515,36140.73488238722,9,5,9,9_1,9_0,9_0_0 +7669,2,88.0,0.0,6,111,375.0,,,0,77,0.0,0.0,,555.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,4,107676,2,1,0,0,2,,249.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,112.80396833320184,375.0,21878.250938405916,0,5,0,1,160.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025367658573918806,21878.250938405916,6,3,6,6_1,6_3,6_0_0 +7670,2,45.0,0.0,1,111,0.0,0.0,0.0,54,45,0.0,0.0,0.0,3413.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,107677,2,1,1,0,1,,718.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,1315.53829953807,0.0,65252.39204780808,1,1,1,2,113.0,6,5,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05230459593725572,26100.956819123232,7,4,7,7_1,7_2,7_1_0 +7671,2,82.0,0.0,1,112,360.0,0.0,0.0,77,78,0.0,2251.3563709173804,613.872195613942,5560.0,4849.562288887823,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,107678,1,2,3,0,1,,423.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,875.005089556291,360.0,32761.760449411784,5,5,0,1,74.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.1697100498791977,16380.880224705892,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7672,2,49.0,0.0,2,111,1500.0,,,0,63,0.0,0.0,,1684.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,2,107679,2,1,0,0,2,,1680.0,,22,4.0,0.0,7.0,7.0,3.6,5,5,84.0427201047741,1500.0,9413.458790874007,0,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17889279991670803,2614.8496641316683,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +7673,1,33.0,491.0,9,112,1447.0,0.0,0.0,0,52,0.0,0.0,2467.4251862593724,1447.0,0.0,0.0,50,1,2,2,1,1,2,2,2,3,180.0,2,2007.0,6,107680,2,2,0,0,1,,760.0,708.0,32,1.0,0.0,4.0,4.0,2.3,3,1,797.391161732166,1447.0,28623.670512190427,0,1,2,3,53.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.050552566253993965,12445.074135734969,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +7674,2,38.0,0.0,9,111,466.0,0.0,0.0,0,53,0.0,0.0,794.6234532113805,466.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,2004.0,6,107681,2,1,0,0,1,,0.0,730.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1430.44361643427,466.0,31525.140276483777,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014781853337147982,31525.140276483777,8,4,8,8_0,8_4,8_0_0 +7675,2,29.0,0.0,1,111,1020.0,0.0,0.0,0,31,0.0,0.0,1739.3045542395023,1020.0,0.0,0.0,10,2,2,2,1,2,2,2,1,0,,2,,1,107682,1,1,0,0,1,,120.0,593.0,12,1.0,0.0,2.0,1.0,1.0,1,1,446.850880171965,1020.0,36304.18713531431,0,1,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.028095932741813455,36304.18713531431,9,5,9,9_0,9_3,9_1_0 +7676,2,89.0,0.0,2,111,870.0,900.0,0.0,0,77,0.0,0.0,1483.5244727336933,1770.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,2,107683,2,2,2,0,2,,200.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,356.942436750202,870.0,23784.087145302958,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07441950532667602,23784.087145302958,6,3,6,6_1,6_3,6_0_1 +7677,2,81.0,0.0,6,111,0.0,,,0,90,0.0,0.0,,132.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,107684,2,3,0,0,2,,160.0,,11,0.0,12.0,7.0,1.0,1.0,1,1,140.6607691661918,0.0,3367.9987406210075,0,5,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03919241370489979,3367.9987406210075,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7678,2,52.0,0.0,5,111,0.0,0.0,1800.0,77,38,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,12,0,0,0,0,0,0,0,0,2,15.0,1,,3,107685,2,1,2,0,1,,800.0,,42,2.0,0.0,5.0,4.0,2.5,4,4,467.735626313765,0.0,72674.18522723849,6,1,1,2,140.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024768079537069995,29069.674090895394,8,4,8,8_1,8_3,8_0_0 +7679,2,87.0,0.0,2,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,2267.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107686,2,1,2,0,1,,70.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,276.585477344036,0.0,21292.849535777197,5,5,0,1,60.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10646766634925425,14195.233023851464,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +7680,1,39.0,606.0,5,111,867.0,1896.0,0.0,0,85,0.0,0.0,1478.408871103577,2763.0,0.0,3599.56367489384,71,1,2,2,2,1,2,2,2,0,,1,,3,107687,1,3,3,0,2,,650.0,603.0,31,0.0,1.0,6.0,6.0,3.0999999999999996,4,2,312.357141882356,867.0,22280.301384548125,0,6,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.12401088981301665,7187.193995015526,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7681,2,57.0,0.0,7,111,0.0,0.0,2000.0,52,46,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,20,1,2,2,1,2,2,2,2,2,12.0,1,,5,107688,2,1,2,0,2,,1000.0,,43,2.0,2.0,8.0,5.0,3.0,5,4,559.873814006016,0.0,48918.818557073675,1,1,1,2,132.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04088406177811912,16306.272852357892,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +7682,2,46.0,0.0,9,111,2000.0,0.0,0.0,54,38,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,12,2,2,1,2,1,2,2,2,2,50.0,3,2012.0,6,107689,2,1,0,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,353.200106148359,2000.0,61423.21454426879,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.032560979018096896,29249.149782985136,8,4,8,8_0,8_4,8_0_0 +7684,0,50.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,776.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107691,1,3,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,716.418726777123,0.0,29530.277574037125,0,1,5,0,36.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026278113981639487,29530.277574037125,8,4,8,8_0,8_2,8_0_1 +7685,1,53.0,268.0,2,111,564.0,0.0,0.0,0,75,0.0,0.0,961.7331064618425,564.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,107692,2,1,0,0,1,,0.0,400.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1530.09953588341,564.0,9468.275317958238,0,7,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.059567342632113315,9468.275317958238,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7686,2,59.0,0.0,8,111,380.0,,,0,67,0.0,0.0,,452.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,2,30.0,2,1999.0,6,107693,1,1,0,0,2,,390.0,395.0,32,1.0,4.0,3.0,2.0,1.5,2,1,88.690654472359,380.0,31365.0,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014410967639088156,20910.0,5,3,5,5_0,5_2,5_0_0 +7687,2,47.0,0.0,7,112,542.0,847.0,0.0,75,33,0.0,0.0,924.2186945076571,1389.0,0.0,1608.0329286050012,10,0,0,0,0,0,0,0,0,3,45.0,1,,5,107694,2,1,1,0,1,,413.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,669.365391766785,542.0,58256.264766727974,5,1,0,1,99.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02384292926369187,38837.509844485314,9,5,9,9_1,9_1,9_0_0 +7688,1,56.0,259.0,7,111,173.0,601.0,0.0,0,77,0.0,0.0,294.9996940033666,774.0,0.0,1141.0009328118133,50,0,0,0,0,0,0,0,0,0,,2,,5,107695,1,1,0,0,1,,150.0,311.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1496.95676596921,173.0,11525.072256886924,0,7,2,3,48.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06715793035809285,11525.072256886924,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7689,2,23.0,0.0,6,111,0.0,0.0,0.0,38,38,0.0,0.0,0.0,991.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,120.0,2,,4,107696,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1491.63526551043,0.0,18306.177106718926,2,2,2,3,66.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05413473245794573,12204.118071145951,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +7690,1,39.0,264.0,5,112,1100.0,0.0,0.0,55,54,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,43,2,2,2,1,2,2,2,2,0,,2,,3,107697,2,2,0,0,1,,0.0,424.0,43,2.0,0.0,3.0,3.0,1.8,2,2,770.335394004335,1100.0,20249.606389450702,1,4,2,3,68.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.05432204354219247,11249.781327472612,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +7691,2,51.0,0.0,2,111,0.0,0.0,0.0,54,22,0.0,0.0,0.0,828.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,2,107698,2,1,0,0,1,,0.0,900.0,43,2.0,0.0,3.0,4.0,2.5,4,4,1109.17520874569,0.0,10803.606317336871,1,1,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0766410748114066,4321.4425269347485,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +7692,2,62.0,0.0,5,111,350.0,473.0,0.0,0,74,0.0,0.0,596.8201901802214,823.0,0.0,897.9924146755202,41,0,0,0,0,0,0,0,0,0,,2,,3,107699,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,453.268410951837,350.0,52864.14998503396,0,5,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01556820643541974,52864.14998503396,10,5,10,10_0,10_4,10_0_0 +7694,2,43.0,0.0,9,300,2000.0,0.0,0.0,63,48,0.0,0.0,3410.4010867441225,2081.0,112.2327272571182,0.0,50,2,2,1,1,1,2,2,2,2,40.0,1,2006.0,6,107701,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1262.63585499956,2000.0,51615.22794884519,1,1,1,2,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04031755903630683,24578.679975640567,7,4,7,7_1,7_0,7_0_0 +7695,1,72.0,102.0,2,111,0.0,0.0,200.0,86,78,0.0,0.0,126.06365808294876,200.0,0.0,239.34642951293617,71,1,2,2,2,2,2,2,1,0,,2,,2,107702,2,2,0,1,1,700.0,0.0,338.0,41,0.0,0.0,3.0,2.0,1.5,2,2,472.22920338489,0.0,15090.16462479494,6,5,2,3,72.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.01325366587925596,10060.109749863293,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7696,2,63.0,0.0,2,111,210.0,0.0,0.0,86,34,1898.4291318658827,0.0,358.0921141081328,2130.0,166.2707070475825,0.0,12,0,0,0,0,0,0,0,0,1,10.0,2,,2,107703,2,3,0,1,1,,160.0,,42,1.0,1.0,2.0,2.0,1.5,2,2,1703.26231560178,210.0,33954.53601062494,6,1,0,1,40.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06273094114239958,22636.357340416627,6,3,6,6_0,6_2,6_0_1 +7697,2,39.0,0.0,1,111,990.0,0.0,0.0,54,21,2109.365702073203,1125.6781854586902,1688.1485379383405,4020.0,249.40606057137379,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,107704,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,355.285866432407,990.0,54736.149391603874,4,1,1,2,120.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07344323714186293,30408.971884224375,8,4,8,8_1,8_3,8_1_0 +7698,1,42.0,118.0,7,400,750.0,0.0,0.0,56,69,0.0,397.2981831030672,1278.9004075290459,1050.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,20.0,7,,5,107705,1,3,0,0,2,,250.0,250.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1520.20994800677,750.0,9251.65378382803,1,1,2,3,35.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.11349322235073356,5139.807657682239,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +7699,2,58.0,0.0,5,112,1700.0,,,78,63,0.0,0.0,,1850.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,3,107706,2,2,0,0,2,,1200.0,,42,1.0,5.0,8.0,3.0,2.0,3,3,91.40685935103743,1700.0,9377.242934792495,7,4,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19728613334052839,4688.621467396248,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7700,1,73.0,122.0,2,111,324.0,108.0,0.0,77,78,0.0,0.0,552.4849760525478,432.0,0.0,205.0384371774972,71,1,1,2,2,1,2,2,2,0,,2,,2,107707,2,1,0,1,1,685.0,0.0,257.0,41,0.0,3.0,3.0,2.0,1.5,2,2,330.899174706107,324.0,18659.158922673745,6,5,2,3,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.023152168958433257,12439.439281782497,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7701,1,28.0,406.0,1,111,1650.0,0.0,0.0,0,85,0.0,0.0,2813.5808965639008,1719.0,95.60565655235995,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,107708,1,3,1,0,1,,432.0,506.0,31,0.0,0.0,4.0,3.0,1.6,1,1,1085.16291201385,1650.0,10393.035088529716,0,6,2,3,65.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.16539922990322395,6495.646930331072,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +7702,2,44.0,0.0,9,111,914.0,0.0,0.0,64,85,0.0,1052.840185223128,1558.553296642064,1709.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,2008.0,6,107709,2,1,1,0,1,,411.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,376.330106617718,914.0,52213.86140771755,1,7,1,2,97.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03273077213453128,34809.24093847837,9,5,9,9_1,9_3,9_0_0 +7703,1,38.0,359.0,2,111,0.0,0.0,1010.0,0,52,0.0,0.0,636.6214733188913,1010.0,0.0,1208.6994690403278,50,2,2,2,1,2,2,2,2,0,,2,,2,107710,1,3,0,1,1,696.0,0.0,324.0,32,1.0,0.0,3.0,3.0,1.8,2,1,406.115718050208,0.0,11074.478248520367,0,4,2,3,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09120068479388124,6152.487915844648,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7704,2,47.0,0.0,2,112,390.0,974.0,0.0,54,64,0.0,0.0,665.0282119151038,1364.0,0.0,1849.1429426933544,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,107711,2,2,3,0,1,,350.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,871.77152468218,390.0,57328.51538549058,1,1,1,2,90.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023792697069305552,28664.25769274529,8,4,8,8_1,8_1,8_0_1 +7705,2,57.0,0.0,1,111,1317.0,150.0,0.0,77,47,0.0,980.0021849875657,2245.7491156210044,2207.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,1,,1,107712,2,1,3,0,1,,271.0,,42,1.0,5.0,5.0,3.0,2.0,3,3,248.272944786162,1317.0,18417.58436305847,6,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11983113292678844,9208.792181529236,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +7707,2,76.0,0.0,6,111,1800.0,0.0,0.0,75,74,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,107714,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1674.20801055229,1800.0,70711.86443104922,5,5,0,1,90.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02545541705741857,47141.242954032816,10,5,10,10_0,10_3,10_0_0 +7708,2,67.0,0.0,1,300,737.0,0.0,0.0,0,74,0.0,39.72981831030672,1256.732800465209,887.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107715,1,1,3,0,2,,197.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1275.91041341345,737.0,22685.68298697443,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039099550166036175,22685.68298697443,6,3,6,6_1,6_0,6_1_0 +7709,2,27.0,0.0,9,111,480.0,,,43,42,0.0,0.0,,580.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,107716,2,1,0,0,2,,280.0,450.0,43,2.0,0.0,3.0,4.0,2.5,4,2,101.06486519083425,480.0,28843.801348558907,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020108306564418144,11537.520539423564,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +7710,1,45.0,631.0,8,111,466.0,,,0,85,0.0,0.0,,718.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,107717,2,1,0,0,1,,960.0,700.0,31,0.0,2.0,3.0,7.0,3.1999999999999993,3,3,99.13770494394376,466.0,28614.708603713334,0,6,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025091990624249275,8942.09643866042,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7711,1,79.0,164.0,2,111,228.0,0.0,0.0,0,77,0.0,0.0,388.7857238888299,228.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,2,107718,1,2,0,1,1,380.0,0.0,240.0,11,0.0,1.0,2.0,1.0,1.0,1,1,353.921925387268,228.0,9907.0,0,5,2,3,40.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02301403048349652,9907.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7712,2,67.0,0.0,1,300,1250.0,0.0,0.0,72,77,0.0,198.6490915515336,2131.5006792150766,1520.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107719,2,2,3,0,1,,762.0,370.0,41,0.0,2.0,3.0,2.0,1.5,2,2,963.052902426663,1250.0,34639.10680228035,5,5,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04388103910057911,23092.7378681869,6,3,6,6_1,6_0,6_1_0 +7713,2,44.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,503.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,20.0,2,,3,107720,2,1,0,1,1,704.0,529.0,1600.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1069.31233450479,0.0,61956.835279910956,0,1,2,3,82.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008118555405993986,61956.835279910956,10,5,10,10_0,10_4,10_0_0 +7714,2,65.0,0.0,7,211,100.0,,,85,86,0.0,0.0,,125.0,34.63973063491302,,71,0,0,0,0,0,0,0,0,0,,1,,5,107721,2,1,0,0,2,,600.0,,41,3.0,4.0,1.0,8.0,4.3,7,5,7.269211664376101,100.0,491.16101350144726,6,6,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.25449902692578363,114.22349151196448,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7715,0,76.0,0.0,2,111,800.0,3500.0,0.0,75,74,0.0,0.0,1364.160434697649,4300.0,0.0,6644.764167789262,12,0,0,0,0,0,0,0,0,0,,1,,2,107722,2,2,2,0,2,,900.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,431.499909588677,800.0,85578.40461807504,5,5,0,1,173.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05024632112727882,57052.26974538336,10,5,10,10_1,10_4,10_0_1 +7716,2,59.0,0.0,7,112,1440.0,0.0,0.0,75,52,0.0,92.70290939071567,2455.488782455768,1510.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,107723,2,1,2,0,1,,250.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,779.116657651791,1440.0,45737.44768623501,5,1,0,1,135.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033014522593363786,30491.631790823343,8,4,8,8_1,8_0,8_0_0 +7717,1,49.0,100.0,9,111,160.0,,,0,85,0.0,0.0,,286.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107724,2,2,0,0,2,,140.0,150.0,11,0.0,3.0,2.0,1.0,1.0,1,1,112.85723289847972,160.0,12878.939443404965,0,7,3,4,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.022206797481795337,12878.939443404965,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +7718,2,56.0,0.0,6,111,100.0,,,0,77,0.0,0.0,,172.0,99.7624242285495,,41,0,0,0,0,0,0,0,0,0,,1,,4,107725,2,2,0,0,2,,500.0,400.0,21,1.0,4.0,4.0,2.0,1.5,2,2,97.10953187490497,100.0,66411.26577800419,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002589922025804354,44274.17718533613,10,5,10,10_1,10_2,10_0_0 +7719,2,74.0,0.0,2,111,0.0,0.0,500.0,0,77,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,60,1,2,2,1,1,1,2,2,0,,2,,2,107726,2,1,0,1,1,,425.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1045.40968706972,0.0,30970.939023664774,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01614416662077801,30970.939023664774,8,4,8,8_0,8_4,8_0_1 +7720,2,70.0,0.0,2,111,450.0,900.0,0.0,0,75,0.0,79.45963662061344,767.3402445174275,1410.0,0.0,1708.65364314581,70,2,2,2,2,1,2,2,2,0,,1,,2,107727,2,1,1,0,1,,260.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,919.503262643637,450.0,24670.81544976559,0,5,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.05715254945143685,24670.81544976559,7,4,7,7_1,7_3,7_0_1 +7721,2,49.0,0.0,9,112,700.0,1300.0,0.0,42,43,0.0,0.0,1193.6403803604428,2000.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,2,90.0,1,2008.0,6,107728,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,781.150502750867,700.0,77243.00629132144,1,1,1,2,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02589231175774043,38621.50314566072,9,5,9,9_1,9_1,9_0_0 +7722,2,50.0,0.0,7,211,727.0,989.0,0.0,43,53,0.0,0.0,1239.6807950314885,1716.0,0.0,1877.6205034124514,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,107729,2,1,2,0,1,,360.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,897.688742635713,727.0,56122.58127840717,1,1,0,1,127.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03057592792262071,37415.05418560478,9,5,9,9_1,9_1,9_0_0 +7723,2,59.0,0.0,6,120,420.0,,,68,67,0.0,0.0,,672.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,3,15.0,1,,4,107730,1,1,0,0,2,,390.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,143.99660214247191,420.0,31153.648097216974,1,1,0,1,44.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02157050750213845,20769.09873147798,5,3,5,5_1,5_2,5_0_0 +7724,2,38.0,0.0,7,111,341.0,930.0,0.0,37,37,0.0,0.0,581.4733852898729,1271.0,0.0,1765.6087645840037,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,107731,2,1,2,0,1,,264.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,716.506567880908,341.0,102820.62320938343,1,1,1,2,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012361333362196626,68547.08213958895,10,5,10,10_1,10_4,10_0_0 +7725,2,43.0,0.0,2,111,345.0,233.0,0.0,46,53,0.0,0.0,588.2941874633611,578.0,0.0,442.3514431699708,20,0,0,0,0,0,0,0,0,3,40.0,2,,2,107732,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,254.4083191538,345.0,56540.1258359696,1,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010222828326856835,37693.41722397973,9,5,9,9_0,9_4,9_0_1 +7726,2,66.0,0.0,1,111,473.0,1161.0,0.0,0,74,0.0,0.0,806.5598570149849,1634.0,0.0,2204.163199658095,10,0,0,0,0,0,0,0,0,0,,1,,1,107733,1,2,3,0,2,,192.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1305.92464068964,473.0,42244.59963301636,0,5,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038679500201084724,42244.59963301636,9,5,9,9_1,9_3,9_1_0 +7727,2,34.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,685.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,2,,1,107734,2,1,0,0,1,,0.0,900.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1116.75777899657,0.0,38908.03350764606,0,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01760561864082353,38908.03350764606,9,5,9,9_0,9_4,9_1_0 +7728,1,27.0,263.0,2,111,420.0,0.0,0.0,43,52,0.0,0.0,716.1842282162656,420.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,10.0,2,,2,107735,2,2,0,1,1,1305.0,0.0,843.0,43,2.0,0.0,6.0,5.0,2.4,2,2,203.752747718517,420.0,53173.27237826566,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.007898705142918253,22155.530157610694,6,3,6,6_0,6_4,6_0_1 +7729,2,26.0,0.0,9,111,300.0,0.0,0.0,0,55,0.0,0.0,511.56016301161833,300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,15.0,2,2004.0,6,107736,2,1,0,0,1,,0.0,627.0,12,1.0,0.0,1.0,1.0,1.0,1,1,886.733038770676,300.0,18035.08090907893,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016634247526385027,18035.08090907893,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +7730,2,37.0,0.0,2,112,500.0,0.0,0.0,11,11,3164.0485531098047,0.0,852.6002716860306,3500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,5,,2,107737,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,758.15429316235,500.0,83019.25122365364,1,1,1,2,170.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042158896260952886,34591.35467652235,9,5,9,9_1,9_0,9_0_1 +7731,2,83.0,0.0,2,221,220.0,0.0,0.0,77,78,1371.087706347582,0.0,375.14411954185346,1640.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107738,2,1,2,0,1,,360.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2128.17676010063,220.0,14258.528268158801,5,5,0,1,92.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11501888337678855,9505.685512105867,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +7732,2,83.0,0.0,7,111,331.0,,,75,74,0.0,0.0,,463.0,182.89777775234077,,10,0,0,0,0,0,0,0,0,0,,1,,5,107739,2,1,0,0,2,,113.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,115.76425187412767,331.0,81940.10468803711,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0056504687388762385,54626.73645869141,10,5,10,10_1,10_2,10_0_0 +7733,2,44.0,0.0,9,120,840.0,,,46,52,0.0,0.0,,1060.0,304.8296295872346,,42,0,0,0,0,0,0,0,0,1,15.0,1,2011.0,6,107740,2,1,0,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,239.05078299068865,840.0,37361.372887167374,1,1,1,2,110.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02837154842251746,16244.075168333642,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7734,2,44.0,0.0,5,111,500.0,0.0,0.0,0,46,0.0,0.0,852.6002716860306,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,2.0,2,,3,107741,2,2,0,0,1,,180.0,375.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1088.7879024434,500.0,22782.64050925406,0,1,2,3,51.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02194653423938746,22782.64050925406,6,3,6,6_0,6_3,6_0_0 +7735,2,32.0,0.0,9,111,2051.0,0.0,0.0,54,42,0.0,0.0,3497.3663144560974,2051.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,2008.0,6,107742,2,1,1,0,1,,423.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1001.16527975525,2051.0,52810.46822340437,1,1,1,2,167.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03883699707648198,25147.842011144938,7,4,7,7_1,7_2,7_0_0 +7736,2,58.0,0.0,5,111,600.0,,,85,63,0.0,0.0,,900.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,107743,2,1,0,0,2,,320.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,109.89722965755256,600.0,22159.891063203027,6,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04061391806634236,14773.260708802018,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +7738,2,73.0,0.0,1,300,400.0,0.0,0.0,0,77,1476.555991451242,0.0,682.0802173488245,1870.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107745,2,1,1,0,1,,130.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,936.75314314815,400.0,17619.230980149165,0,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10613403060024862,17619.230980149165,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7739,2,60.0,0.0,1,112,145.0,0.0,0.0,0,74,0.0,198.6490915515336,247.25407878894887,1495.0,1662.707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107746,1,2,4,0,2,,150.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,512.060629242675,145.0,49632.49327305335,0,5,0,1,96.0,4,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030121396315418852,49632.49327305335,10,5,10,10_1,10_0,10_1_0 +7740,2,31.0,0.0,9,112,437.0,790.0,0.0,54,21,0.0,0.0,745.1726374535907,1227.0,0.0,1499.8181978724333,44,0,0,0,0,0,0,0,0,2,8.0,2,2009.0,6,107747,2,2,0,0,1,,272.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1931.91972215378,437.0,36134.82102404606,1,1,1,2,67.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03395616652379398,24089.880682697374,6,3,6,6_0,6_2,6_0_0 +7741,2,49.0,0.0,7,112,790.0,0.0,0.0,68,90,4218.731404146406,0.0,1347.1084292639284,4860.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,5,107748,2,1,2,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1473.31371315255,790.0,32202.151560523635,1,1,1,2,80.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15092159264158722,21468.10104034909,6,3,6,6_1,6_0,6_0_0 +7742,2,25.0,0.0,1,112,1596.0,0.0,0.0,63,43,0.0,0.0,2721.50006722181,1596.0,0.0,0.0,33,2,2,1,2,1,2,2,2,2,15.0,1,,1,107749,2,1,1,0,1,,384.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,424.043521583545,1596.0,43976.83312034358,1,1,1,2,96.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.036291835649750186,29317.888746895722,8,4,8,8_1,8_1,8_1_0 +7743,2,41.0,0.0,6,111,4000.0,0.0,0.0,54,37,0.0,529.7309108040896,6820.802173488245,4535.0,187.05454542853033,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,4,107750,2,1,4,0,1,,330.0,,43,2.0,0.0,4.0,5.0,2.6,3,3,132.138024688729,4000.0,70333.91870566685,1,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06447813634525404,27051.507194487247,7,4,7,7_1,7_4,7_0_0 +7744,2,39.0,0.0,6,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,764.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,107751,2,2,0,0,1,,0.0,485.0,22,1.0,0.0,3.0,2.0,1.5,2,2,249.981980177454,0.0,28624.707223990856,0,1,2,3,63.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026690229319085525,19083.13814932724,5,3,5,5_0,5_3,5_0_0 +7745,2,25.0,0.0,9,112,0.0,0.0,0.0,84,46,0.0,0.0,0.0,1187.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,107752,2,1,1,0,1,,192.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,824.585532364925,0.0,31094.66350815561,3,1,1,2,87.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0381737528591898,20729.77567210374,5,3,5,5_1,5_0,5_0_0 +7746,2,52.0,0.0,1,111,350.0,570.0,0.0,0,56,0.0,0.0,596.8201901802214,920.0,0.0,1082.1473073256798,71,0,0,0,0,0,0,0,0,0,,1,,1,107753,2,2,4,0,1,,48.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2152.53248274782,350.0,16936.207083326382,0,1,1,2,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05432148978065672,16936.207083326382,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +7747,2,74.0,0.0,1,111,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,107754,2,3,0,0,2,,156.0,350.0,11,0.0,1.0,1.0,1.0,1.0,1,1,628.247058450917,1000.0,16372.26300948052,0,5,2,3,25.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.061078911291673005,16372.26300948052,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +7748,2,55.0,0.0,9,111,0.0,0.0,0.0,68,38,0.0,0.0,0.0,1625.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,107755,2,1,1,0,1,,323.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,358.756189452802,0.0,45122.97382972332,1,1,1,2,150.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03601269734863049,30081.98255314888,8,4,8,8_1,8_3,8_0_0 +7749,2,61.0,0.0,6,111,1400.0,0.0,0.0,78,75,0.0,0.0,2387.2807607208856,1500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,107756,2,1,1,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1036.55887837194,1400.0,43101.30259049622,5,5,0,1,87.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034801732426777005,28734.20172699748,8,4,8,8_1,8_3,8_0_0 +7750,1,41.0,371.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,245.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107757,2,1,0,1,1,,0.0,522.0,32,1.0,1.0,4.0,3.0,2.0,3,2,671.84700304385,0.0,9369.521616772989,0,4,2,3,68.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026148613560099974,4684.760808386494,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7751,1,51.0,146.0,8,111,672.0,,,56,65,0.0,0.0,,948.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,12.0,2,2002.0,6,107758,1,2,0,0,2,,280.0,553.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,76.44569774955478,672.0,29089.348102630312,4,1,2,3,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0325892487055865,11188.210808703969,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7752,2,73.0,0.0,6,221,675.0,0.0,0.0,71,77,0.0,0.0,1151.0103667761414,785.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,107759,2,2,5,0,1,,200.0,379.0,41,0.0,2.0,2.0,2.0,1.5,2,2,2086.08137117191,675.0,16742.529349810608,5,5,2,3,51.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04688658347843243,11161.686233207072,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +7753,2,65.0,0.0,1,300,4200.0,0.0,0.0,56,56,0.0,0.0,7161.842282162657,4250.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,107760,2,2,3,0,1,,430.0,,41,1.0,3.0,13.0,4.0,2.5,4,3,752.599121103489,4200.0,74762.35100424704,5,5,0,1,245.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05684679444816508,29904.94040169882,8,4,8,8_1,8_0,8_1_0 +7754,2,42.0,0.0,1,111,600.0,0.0,0.0,0,37,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,107761,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1610.92180335344,600.0,50702.93323371387,0,4,1,2,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011833634895131518,50702.93323371387,10,5,10,10_0,10_4,10_1_0 +7755,0,35.0,0.0,1,300,2000.0,0.0,0.0,69,54,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,107762,2,2,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1412.66605271779,2000.0,42100.0,1,1,5,0,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047505938242280284,20047.619047619046,5,3,5,5_1,5_0,5_1_0 +7756,2,28.0,0.0,5,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,277.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,5.0,2,,3,107763,2,1,0,1,1,576.0,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,1,1,286.665199960809,0.0,15430.850787506559,0,1,2,3,60.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017951051683052395,15430.850787506559,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +7757,2,46.0,0.0,6,111,258.0,518.0,0.0,0,33,0.0,993.245457757668,439.9417401899918,1646.0,166.2707070475825,983.4250968328107,20,0,0,0,0,0,0,0,0,0,,1,,4,107764,2,1,3,0,2,,243.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,448.688869354021,258.0,64019.20543142752,0,1,0,1,114.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025711034507653635,42679.47028761835,9,5,9,9_1,9_3,9_0_0 +7758,2,73.0,0.0,2,111,560.0,0.0,0.0,77,78,1582.0242765549024,0.0,954.9123042883542,2210.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107765,2,2,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1282.45623553546,560.0,22650.539466852093,5,5,0,1,80.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09756942006764219,15100.359644568061,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +7760,1,55.0,133.0,2,111,150.0,0.0,0.0,0,64,0.0,0.0,255.78008150580916,150.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,107767,2,3,0,0,1,,110.0,360.0,12,1.0,0.0,1.0,1.0,1.0,1,1,342.785579150197,150.0,10461.31786773534,0,4,2,3,20.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.014338537638993652,10461.31786773534,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7761,0,72.0,0.0,2,120,392.0,,,0,78,0.0,0.0,,502.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,2,107768,2,1,0,0,2,,400.0,,21,1.0,4.0,4.0,2.0,1.5,2,2,74.01669285250334,392.0,9184.0,0,5,0,1,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0546602787456446,6122.666666666667,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +7762,1,61.0,309.0,5,111,300.0,,,71,56,0.0,0.0,,564.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,,3,107769,2,2,0,0,2,,360.0,365.0,42,1.0,3.0,5.0,2.0,1.5,2,2,117.60375452719973,300.0,13299.277408693919,5,4,2,3,94.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042408319088923244,8866.18493912928,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7763,2,58.0,0.0,7,120,100.0,0.0,0.0,56,78,0.0,0.0,170.52005433720612,100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,107770,2,1,2,0,1,,220.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1183.06416783482,100.0,37458.710616382305,1,5,0,1,122.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002669606037007203,24972.47374425487,7,4,7,7_1,7_0,7_0_0 +7764,2,37.0,0.0,1,111,150.0,1400.0,0.0,22,46,0.0,0.0,255.78008150580916,1550.0,0.0,2657.9056671157045,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,107771,2,1,0,0,1,,450.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,792.122915532895,150.0,42664.00592786841,1,1,1,2,61.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.036330390601871015,20316.19329898496,5,3,5,5_0,5_4,5_1_0 +7765,0,72.0,0.0,2,111,360.0,540.0,0.0,0,72,0.0,0.0,613.872195613942,900.0,0.0,1025.192185887486,50,0,0,0,0,0,0,0,0,0,,2,,2,107772,2,1,0,0,2,,0.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,505.901194651471,360.0,17535.649690444206,0,5,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05132401797980954,17535.649690444206,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +7766,2,47.0,0.0,7,112,1200.0,800.0,0.0,56,47,0.0,0.0,2046.2406520464733,2000.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,107773,2,1,1,0,1,,400.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,666.073829994473,1200.0,65995.15630955962,1,1,0,1,110.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030305254382893148,26398.06252382385,7,4,7,7_1,7_1,7_0_0 +7767,2,53.0,0.0,1,400,500.0,0.0,0.0,22,34,1582.0242765549024,0.0,852.6002716860306,2095.0,131.6309764126695,0.0,20,2,2,2,2,2,2,1,2,2,30.0,1,,1,107774,1,3,4,0,1,,150.0,730.0,43,2.0,2.0,9.0,3.0,1.8,2,2,1904.05610672426,500.0,41370.28763966673,1,1,2,3,210.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.050640208698749016,22983.493133148182,6,3,6,6_1,6_0,6_1_0 +7768,2,37.0,0.0,6,111,1500.0,0.0,0.0,42,38,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,2,2,1,1,2,2,2,2,2,20.0,1,,4,107775,2,1,1,0,1,,340.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,382.745920462434,1500.0,51179.0,1,1,1,2,95.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02930889622696809,24370.95238095238,7,4,7,7_1,7_3,7_0_0 +7769,2,56.0,0.0,6,211,360.0,,,0,85,0.0,0.0,,372.0,16.627070704758253,,71,0,0,0,0,0,0,0,0,0,,2,,4,107776,1,2,0,0,2,,200.0,170.0,31,0.0,0.0,3.0,3.0,1.6,1,1,62.44188813167663,360.0,6508.659587629834,0,7,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05715462530979684,4067.9122422686464,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +7770,1,44.0,329.0,2,111,0.0,0.0,0.0,77,85,0.0,0.0,0.0,738.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,107777,1,3,0,1,1,383.0,0.0,281.0,41,2.0,0.0,3.0,6.0,3.0999999999999996,4,4,340.90572135361,0.0,15370.725958683166,7,7,2,3,65.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04801334705880252,4958.298696349409,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7771,1,55.0,300.0,5,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1105.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,107778,2,1,0,1,2,,0.0,750.0,31,0.0,1.0,3.0,2.0,1.5,2,2,374.646109167517,0.0,11172.18541828562,0,7,2,3,76.0,10,5,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0989063427278459,7448.123612190414,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7772,2,67.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,508.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,107779,1,3,4,0,2,,223.0,,21,0.0,5.0,3.0,2.0,1.5,2,2,697.944349560828,0.0,19627.84668054209,0,5,0,1,55.0,7,6,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.025881596094980797,13085.231120361394,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +7773,2,86.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2063.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,107780,2,2,5,0,2,,196.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1317.80477979006,0.0,39784.63728673174,0,5,0,1,80.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05185418645724375,39784.63728673174,9,5,9,9_1,9_2,9_0_1 +7774,2,54.0,0.0,6,111,0.0,0.0,1250.0,54,33,0.0,0.0,787.8978630184298,1250.0,0.0,1495.915184455851,41,0,0,0,0,0,0,0,0,2,90.0,1,,4,107781,2,1,2,0,1,,273.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1558.47326506011,0.0,82329.50525155943,4,1,0,1,170.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015182892162179286,54886.33683437295,10,5,10,10_1,10_3,10_0_0 +7775,2,50.0,0.0,8,111,451.0,1045.0,0.0,52,62,0.0,0.0,769.0454450607996,1496.0,0.0,1983.9367300970796,50,2,2,2,2,1,2,2,2,2,20.0,1,1999.0,6,107782,2,2,2,0,1,,466.0,468.0,43,2.0,3.0,4.0,3.0,2.0,3,2,1044.61528606129,451.0,40758.450556340904,1,1,2,3,84.0,5,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03670404491780326,20379.225278170452,5,3,5,5_1,5_2,5_0_0 +7776,2,43.0,0.0,2,111,441.0,719.0,0.0,56,38,0.0,0.0,751.9934396270789,1160.0,0.0,1365.0244104687083,31,0,0,0,0,0,0,0,0,3,90.0,2,,2,107783,2,3,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1098.5498149325,441.0,56664.35369417154,1,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02047142382071,26983.025568653113,7,4,7,7_0,7_4,7_0_1 +7777,1,45.0,256.0,2,111,480.0,0.0,0.0,67,55,0.0,0.0,818.4962608185893,892.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,107784,2,1,0,1,1,,0.0,411.0,43,2.0,1.0,3.0,6.0,3.0999999999999996,4,3,265.867606150223,480.0,39750.90756428254,4,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02243973923255756,12822.87340783308,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +7778,2,34.0,0.0,5,111,255.0,0.0,0.0,0,46,0.0,0.0,434.8261385598756,255.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,107785,2,3,0,1,1,35.0,0.0,515.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1028.50104766461,255.0,23429.33878112121,0,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01088378986629673,23429.33878112121,6,3,6,6_0,6_3,6_0_0 +7779,1,41.0,302.0,2,111,328.0,0.0,0.0,56,21,0.0,0.0,559.3057782260361,428.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,107786,2,2,0,1,2,,0.0,550.0,43,2.0,0.0,1.0,3.0,2.0,3,2,1993.37565728819,328.0,8429.800294872604,1,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05077225853859545,4214.900147436302,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7780,2,78.0,0.0,2,111,240.0,300.0,0.0,77,75,0.0,0.0,409.2481304092947,2425.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,107787,2,1,0,1,2,980.0,0.0,500.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1064.79901704792,240.0,33646.62188422575,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07207261425364343,22431.0812561505,6,3,6,6_0,6_4,6_0_1 +7781,2,81.0,0.0,2,111,433.0,0.0,0.0,77,77,0.0,0.0,738.3518352801025,433.0,0.0,0.0,60,2,1,2,2,2,2,2,1,0,,2,,2,107788,1,3,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1822.50699300304,433.0,32351.029758314522,5,5,0,1,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,0,0.013384427118234617,21567.35317220968,6,3,6,6_0,6_3,6_0_1 +7782,2,56.0,0.0,5,111,788.0,0.0,0.0,75,52,0.0,238.3789098618403,1343.6980281771841,2576.0,2228.0274744376056,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,3,107789,2,1,3,0,2,,135.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1302.22852504023,788.0,49273.0,5,1,0,1,130.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05228015343088507,32848.666666666664,8,4,8,8_1,8_2,8_0_0 +7783,2,62.0,0.0,5,112,1650.0,0.0,0.0,75,11,0.0,0.0,2813.5808965639008,1720.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,107790,2,1,2,0,1,,201.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,233.89308738577,1650.0,82730.46393354281,5,1,0,1,130.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02079040680083303,55153.64262236187,10,5,10,10_1,10_0,10_0_0 +7784,2,43.0,0.0,6,111,300.0,600.0,0.0,55,34,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,2,7.0,1,,4,107791,2,1,2,0,1,,320.0,760.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1146.12933173274,300.0,46692.84656673242,4,1,2,3,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019274901107469197,22234.68884130115,6,3,6,6_1,6_2,6_0_0 +7785,2,67.0,0.0,1,111,740.0,0.0,0.0,71,71,0.0,0.0,1261.8484020953254,740.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107792,2,1,2,0,1,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1691.11435796103,740.0,31411.911473125678,5,5,0,1,200.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023557942363141567,20941.27431541712,5,3,5,5_1,5_2,5_1_0 +7786,2,29.0,0.0,2,111,300.0,70.0,0.0,84,64,0.0,0.0,511.56016301161833,370.0,0.0,132.89528335578524,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,107793,2,2,0,1,1,1056.0,247.0,362.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1636.78208290144,300.0,21896.343302938832,3,1,2,3,58.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.016897798636101042,14597.562201959221,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +7787,2,37.0,0.0,9,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,1006.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,2008.0,6,107794,1,1,0,0,1,,238.0,398.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1643.54410183936,0.0,25974.00831485228,1,1,2,3,69.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03873102633237997,14430.004619362377,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +7788,2,65.0,0.0,5,111,576.0,0.0,0.0,72,54,685.543853173791,0.0,982.1955129823073,1226.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,3,107795,1,1,0,1,1,,246.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,710.122680866965,576.0,71461.55486178731,5,1,0,1,104.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01715607787111808,47641.03657452488,10,5,10,10_0,10_4,10_0_0 +7789,2,58.0,0.0,2,112,0.0,0.0,1544.0,0,54,0.0,0.0,973.2114404003645,1544.0,0.0,1847.7544358398673,43,0,0,0,0,0,0,0,0,2,5.0,1,,2,107796,2,2,1,0,1,,203.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,2441.97158398846,0.0,21179.67207955066,0,1,1,2,60.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07290008996365713,21179.67207955066,5,3,5,5_1,5_1,5_0_1 +7790,1,56.0,43.0,2,111,653.0,327.0,0.0,85,77,0.0,0.0,1113.495954821956,980.0,0.0,620.810823676311,42,2,1,2,1,1,2,2,2,0,,2,,2,107797,2,1,0,1,1,846.0,358.0,387.0,41,0.0,1.0,5.0,3.0,2.0,3,3,302.27096908175,653.0,31258.0,7,7,2,3,110.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03135197389468296,15629.0,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +7791,2,54.0,0.0,9,111,1680.0,,,0,45,0.0,0.0,,1732.0,72.05063972061909,,31,0,0,0,0,0,0,0,0,2,90.0,1,2008.0,6,107798,2,1,0,0,2,,130.0,,22,3.0,0.0,4.0,3.0,2.0,3,3,47.10522303541269,1680.0,96247.08710480703,0,1,1,2,138.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01799534980330325,48123.54355240351,10,5,10,10_1,10_2,10_0_0 +7792,2,73.0,0.0,6,111,235.0,774.0,0.0,0,77,0.0,0.0,400.72212769243436,1009.0,0.0,1469.4421331053966,31,2,2,2,2,1,2,2,2,0,,2,,4,107799,2,1,0,0,1,,92.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2431.7913416098,235.0,25233.562130980077,0,5,0,1,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.039986427392318794,25233.562130980077,7,4,7,7_0,7_3,7_0_0 +7793,0,39.0,0.0,2,111,520.0,,,0,21,0.0,0.0,,820.0,415.67676761895626,,60,0,0,0,0,0,0,0,0,0,,1,,2,107800,2,1,0,0,2,,600.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,84.15881497230515,520.0,5407.711701050646,0,1,0,1,48.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15163530256997335,5407.711701050646,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +7794,2,25.0,0.0,5,112,400.0,,,0,69,0.0,132.4327277010224,,750.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,3,107801,2,2,0,0,2,,450.0,,22,4.0,1.0,4.0,5.0,3.0,5,5,80.16189460133205,400.0,16380.145938791778,0,1,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04578713784373773,5460.0486462639265,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7795,2,26.0,0.0,8,111,517.0,0.0,0.0,38,38,0.0,0.0,881.5886809233556,517.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,107802,2,1,0,0,1,,173.0,472.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1665.82932960152,517.0,34323.59751903222,1,1,2,3,35.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015062523667961283,22882.39834602148,6,3,6,6_0,6_3,6_0_0 +7796,2,45.0,0.0,1,111,1700.0,1500.0,0.0,46,38,0.0,99.3245457757668,2898.840923732504,3275.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,0,,1,,1,107803,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.3,4,2,1700.75656278914,1700.0,76383.33624269675,1,1,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04287584388294028,33210.14619247685,8,4,8,8_1,8_3,8_1_0 +7797,2,26.0,0.0,2,111,371.0,821.0,0.0,56,62,0.0,0.0,632.6294015910347,1192.0,0.0,1558.6718233585668,50,0,0,0,0,0,0,0,0,0,,1,,2,107804,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,376.157842194539,371.0,32101.119267802307,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03713266163886024,17833.95514877906,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +7798,2,74.0,0.0,2,111,140.0,240.0,0.0,0,77,0.0,0.0,238.72807607208856,380.0,0.0,455.6409715055494,60,0,0,0,0,0,0,0,0,0,,2,,2,107805,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1019.68872296547,140.0,30809.285994112422,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012333943736074151,30809.285994112422,8,4,8,8_0,8_4,8_0_1 +7799,2,64.0,0.0,1,212,503.0,0.0,0.0,77,78,0.0,132.4327277010224,857.7158733161468,675.0,99.7624242285495,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107806,2,2,3,0,1,,208.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,962.964224560276,503.0,27501.580488604945,5,5,0,1,100.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024544043942481077,18334.386992403295,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +7800,2,68.0,0.0,6,111,2749.0,0.0,0.0,74,74,0.0,0.0,4687.596293729796,2749.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,107807,2,1,1,0,1,,190.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,615.148030576496,2749.0,97442.67354041943,5,5,0,1,128.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028211459108413203,64961.78236027962,10,5,10,10_1,10_4,10_0_0 +7801,2,51.0,0.0,5,111,600.0,450.0,0.0,48,67,0.0,0.0,1023.1203260232367,1050.0,0.0,854.326821572905,42,0,0,0,0,0,0,0,0,2,20.0,2,,3,107808,2,1,0,1,2,,0.0,,43,3.0,0.0,4.0,5.0,2.8,4,4,122.222201761882,600.0,40594.179245879444,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025865777298763378,14497.92115924266,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +7803,1,55.0,90.0,2,120,374.0,450.0,0.0,85,65,0.0,0.0,637.7450032211509,824.0,0.0,854.326821572905,71,0,0,0,0,0,0,0,0,2,35.0,1,,2,107810,2,2,1,0,1,,190.0,,42,1.0,1.0,4.0,3.0,1.8,2,2,226.353640352575,374.0,23863.402582489496,6,1,1,2,73.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03452986208281275,13257.44587916083,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +7804,2,61.0,0.0,7,111,660.0,,,85,72,0.0,0.0,,912.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,107811,1,1,0,0,2,,900.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,76.65057716911467,660.0,5172.438939896493,6,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17631914278687458,3448.292626597662,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7805,2,59.0,0.0,5,112,1445.0,0.0,0.0,75,37,0.0,66.2163638505112,2464.0147851726283,1495.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,107812,2,1,2,0,1,,700.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1114.48199103196,1445.0,102723.34993000833,5,1,0,1,120.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014553653098527594,68482.23328667223,10,5,10,10_1,10_1,10_0_0 +7806,2,67.0,0.0,5,211,740.0,0.0,0.0,78,75,0.0,860.8127300566456,1261.8484020953254,1490.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,107813,2,1,3,0,1,,540.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1470.41532103029,740.0,44326.18726705753,5,5,0,1,97.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03361444085012343,29550.791511371688,8,4,8,8_1,8_1,8_0_0 +7807,1,27.0,89.0,9,112,0.0,0.0,0.0,46,52,0.0,0.0,0.0,1238.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,107814,2,1,1,0,1,,758.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,233.281803938629,0.0,31111.357513718085,1,1,2,3,95.0,7,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.039792541982590204,17284.08750762116,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +7808,1,75.0,253.0,2,211,360.0,,,0,77,0.0,0.0,,360.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,107815,2,2,0,0,2,,300.0,50.0,11,0.0,5.0,4.0,1.0,1.0,1,1,110.7371742577413,360.0,10755.0,0,5,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03347280334728033,10755.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7809,2,45.0,0.0,6,111,450.0,1200.0,0.0,37,38,0.0,0.0,767.3402445174275,3052.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,3,70.0,1,,4,107816,1,2,2,0,1,,250.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,698.077029781828,450.0,90814.87364707388,1,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03360682977835468,60543.24909804925,10,5,10,10_1,10_4,10_0_0 +7810,2,59.0,0.0,1,111,400.0,1100.0,0.0,0,67,0.0,0.0,682.0802173488245,1500.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,1,20.0,1,,1,107817,1,1,2,0,1,,300.0,,32,2.0,1.0,5.0,3.0,2.0,3,2,259.275424235024,400.0,33767.9142547678,0,1,0,1,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044420866171448845,16883.9571273839,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +7811,2,43.0,0.0,1,111,600.0,,,0,63,0.0,0.0,,710.0,152.4148147936173,,31,0,0,0,0,0,0,0,0,0,,1,,1,107818,1,1,0,0,2,,200.0,870.0,32,1.0,0.0,4.0,2.0,1.3,1,1,137.6525479140053,600.0,6135.641530309774,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11571732091789166,4719.724254084441,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +7812,2,42.0,0.0,9,111,2165.0,0.0,0.0,46,37,0.0,0.0,3691.7591764005124,2165.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,107819,2,1,1,0,1,,388.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,276.207421505703,2165.0,54005.405717925205,1,1,1,2,135.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040088579489764006,30003.003176625112,8,4,8,8_1,8_3,8_0_0 +7813,2,55.0,0.0,6,111,875.0,0.0,0.0,85,33,2109.365702073203,52.973091080408956,1492.0504754505534,2915.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,4,107820,2,2,3,0,2,,350.0,,42,1.0,1.0,8.0,2.0,1.5,2,2,868.64188926161,875.0,63768.6764211927,6,1,1,2,160.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04571209822117677,42512.4509474618,9,5,9,9_1,9_2,9_0_0 +7815,2,33.0,0.0,9,112,1060.0,0.0,0.0,64,62,0.0,0.0,1807.5125759743848,1130.0,96.99124577775646,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,107822,2,1,1,0,1,,470.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,975.817719324087,1060.0,35144.99772779006,4,1,1,2,90.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03215251310448883,16735.71320370955,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +7816,2,26.0,0.0,5,111,300.0,0.0,0.0,0,54,0.0,0.0,511.56016301161833,300.0,0.0,0.0,31,1,2,2,2,1,2,2,2,2,20.0,2,,3,107823,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,521.990355290602,300.0,25921.74001250167,0,1,1,2,23.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011573297157340305,25921.74001250167,7,4,7,7_0,7_4,7_0_0 +7817,1,36.0,546.0,5,111,800.0,1400.0,0.0,85,67,0.0,0.0,1364.160434697649,2200.0,0.0,2657.9056671157045,71,2,2,2,2,2,2,2,1,0,,2,,3,107824,2,3,0,1,1,,0.0,662.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,3,2,764.099527234693,800.0,17326.707142354782,6,4,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.1269716156638987,6664.118131674917,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +7818,1,50.0,405.0,2,111,1100.0,550.0,0.0,62,63,0.0,0.0,1875.7205977092674,1650.0,0.0,1044.177226366884,71,2,1,2,2,1,2,2,2,0,,2,,2,107825,2,2,0,1,1,384.0,0.0,580.0,43,4.0,1.0,4.0,5.0,3.0,5,4,147.074548509705,1100.0,21754.048459440724,4,4,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07584795092629944,7251.3494864802415,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +7819,1,78.0,146.0,6,111,100.0,,,0,86,0.0,0.0,,100.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,107826,1,1,0,0,2,,220.0,149.0,11,0.0,3.0,2.0,1.0,1.0,1,1,122.45239685319356,100.0,10675.868690731106,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.009366919254713293,10675.868690731106,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +7820,2,63.0,0.0,2,111,511.0,0.0,0.0,0,37,0.0,0.0,871.3574776631233,514.0,4.156767676189563,0.0,42,0,0,0,0,0,0,0,0,3,1.0,1,,2,107827,1,2,3,0,1,,0.0,727.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1604.52283287296,511.0,52956.781813552574,0,1,2,3,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.00970602786645276,52956.781813552574,10,5,10,10_1,10_3,10_0_1 +7821,2,66.0,0.0,5,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,859.0,498.81212114274757,0.0,71,2,1,2,2,1,1,2,2,0,,2,,3,107828,1,3,0,1,2,,0.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,414.056472150612,0.0,71174.81610422705,6,5,1,2,140.0,7,6,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012068875580122282,35587.408052113526,9,5,9,9_0,9_2,9_0_0 +7822,0,84.0,0.0,7,112,410.0,,,75,77,0.0,0.0,,433.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,0,,1,,5,107829,2,1,0,0,2,,100.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,99.28582383637027,410.0,35076.510002807794,5,5,0,1,90.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012344443616692178,23384.340001871864,6,3,6,6_1,6_1,6_0_0 +7823,2,37.0,0.0,1,120,1500.0,0.0,0.0,38,38,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,3,75.0,5,,1,107830,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,321.915702042405,1500.0,104887.63495090573,1,1,0,1,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01487305916212318,58270.908306058736,10,5,10,10_1,10_0,10_1_0 +7824,1,41.0,491.0,8,111,270.0,500.0,0.0,85,68,0.0,0.0,460.40414671045653,770.0,0.0,949.2520239698945,71,2,2,2,2,1,2,2,2,0,,2,2000.0,6,107831,2,1,0,0,1,,240.0,467.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1184.35262510079,270.0,22400.26585335153,6,4,2,3,89.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.03437459202676349,9333.444105563138,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7825,2,61.0,0.0,9,111,0.0,0.0,0.0,56,78,0.0,0.0,0.0,2877.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2013.0,6,107832,2,1,1,0,1,,263.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,267.519522979358,0.0,20329.710790329806,4,5,0,1,72.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14151701564630703,13553.140526886536,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +7826,2,36.0,0.0,5,111,490.0,,,0,42,0.0,0.0,,565.0,103.91919190473907,,20,0,0,0,0,0,0,0,0,2,10.0,2,,3,107833,2,2,0,0,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,113.1149230042783,490.0,38939.232850298285,0,1,1,2,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014509787652266804,29953.256038690986,8,4,8,8_0,8_2,8_0_0 +7827,2,53.0,0.0,2,111,922.0,2304.0,0.0,0,35,0.0,13.243272770102239,1572.1949009890404,3236.0,0.0,4374.153326453274,41,0,0,0,0,0,0,0,0,0,,1,,2,107834,2,1,3,0,1,,389.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,777.242354469198,922.0,9633.557603158184,0,4,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.33590913484953233,9633.557603158184,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +7828,2,65.0,0.0,1,300,375.0,1102.0,0.0,78,77,0.0,0.0,639.4502037645229,1570.0,128.85979796187644,2092.1514608296475,60,0,0,0,0,0,0,0,0,0,,1,,1,107835,1,2,5,0,1,,250.0,381.0,41,0.0,2.0,3.0,2.0,1.5,2,2,198.902119711103,375.0,22127.967779005015,6,5,2,3,56.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07095093483865308,14751.978519336677,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7829,1,78.0,102.0,5,112,450.0,0.0,0.0,0,77,0.0,0.0,767.3402445174275,643.0,30.482962958723462,0.0,70,2,2,2,1,2,2,2,2,0,,1,,3,107836,1,3,3,0,1,,173.0,202.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2416.47952651192,450.0,11996.713910679187,0,5,2,3,50.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.0535980106542023,11996.713910679187,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +7830,2,56.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,463.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,30.0,2,,2,107837,1,3,0,1,2,,0.0,450.0,41,0.0,1.0,3.0,2.0,1.5,2,2,275.528612615951,0.0,24563.385860087175,6,6,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.018849192967013744,16375.59057339145,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +7831,2,81.0,0.0,1,120,600.0,0.0,0.0,71,71,0.0,0.0,1023.1203260232367,780.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107838,2,1,2,0,2,,200.0,,41,1.0,3.0,3.0,3.0,2.0,3,3,2411.40112807937,600.0,45425.73899925034,5,5,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017170881909326172,22712.86949962517,6,3,6,6_1,6_0,6_1_0 +7832,2,60.0,0.0,5,111,478.0,578.0,0.0,56,78,0.0,0.0,815.0858597318453,1173.0,0.0,1097.335339709198,50,1,2,1,1,1,1,2,2,0,,1,,3,107839,2,2,1,0,1,,345.0,348.0,42,1.0,3.0,4.0,2.0,1.5,2,2,1284.26164663002,478.0,16761.58207132507,1,7,2,3,50.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.06998146087932318,11174.388047550046,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7833,2,25.0,0.0,1,400,800.0,0.0,0.0,63,63,0.0,189.37880061246202,1364.160434697649,1033.0,124.70303028568689,0.0,43,2,2,2,2,1,2,2,2,2,30.0,1,,1,107840,2,3,1,0,1,,340.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1158.42126620105,800.0,29760.0,1,1,1,2,72.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03471102150537635,19840.0,5,3,5,5_1,5_0,5_1_0 +7834,2,72.0,0.0,5,111,200.0,0.0,0.0,0,77,0.0,0.0,341.04010867441224,200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,107841,1,3,0,1,1,,298.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2316.25749983566,200.0,16898.73800536607,0,5,0,1,65.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011835203311424288,16898.73800536607,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +7835,2,66.0,0.0,1,300,650.0,0.0,0.0,0,78,0.0,1006.4887305277701,1108.3803531918397,1485.0,103.91919190473907,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,107842,1,3,4,0,2,,113.0,,21,0.0,6.0,7.0,2.0,1.3,1,1,1342.16084289558,650.0,13849.25823627988,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0.10722595930154981,10653.275566369139,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7836,2,52.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,3086.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,107843,2,1,3,0,1,,222.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,1448.44099992428,0.0,15408.507728398778,0,4,1,2,200.0,6,5,7,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.20027896629550454,15408.507728398778,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +7837,2,49.0,0.0,1,111,150.0,1200.0,0.0,0,52,0.0,0.0,255.78008150580916,1350.0,0.0,2278.2048575277468,31,2,2,2,2,1,2,2,2,3,90.0,1,,1,107844,1,3,3,0,1,,189.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,1096.01446590198,150.0,26334.288621743814,0,1,0,1,90.0,6,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.0512639630935512,17556.192414495876,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +7838,2,66.0,0.0,2,211,1500.0,0.0,0.0,56,75,0.0,0.0,2557.8008150580918,1590.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,107845,2,1,1,0,1,,120.0,,42,3.0,3.0,7.0,4.0,2.5,4,4,1093.50790182496,1500.0,64562.49997422856,1,5,1,2,150.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0246272991385817,25824.999989691423,7,4,7,7_1,7_1,7_0_1 +7839,2,38.0,0.0,9,111,404.0,,,56,63,0.0,132.4327277010224,,546.0,58.19474746665388,,43,0,0,0,0,0,0,0,0,1,10.0,1,2004.0,6,107846,2,3,0,0,2,,474.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,128.5646787508704,404.0,45178.390181169605,1,1,1,2,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012085423978377462,18824.329242154003,5,3,5,5_1,5_2,5_0_0 +7840,2,48.0,0.0,8,111,488.0,,,0,90,0.0,0.0,,534.0,63.73710436823996,,42,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,107847,2,1,0,0,2,,350.0,,32,2.0,0.0,4.0,4.0,2.3,3,3,143.32040819652494,488.0,89524.79587544987,0,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005964827897992866,38923.82429367386,9,5,9,9_1,9_2,9_0_0 +7842,2,54.0,0.0,2,111,900.0,0.0,0.0,0,45,0.0,0.0,1534.680489034855,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,2,107849,2,1,0,0,1,,300.0,515.0,12,1.0,1.0,1.0,1.0,1.0,1,1,348.473847449392,900.0,27014.76241451301,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03331511808952639,27014.76241451301,7,4,7,7_0,7_4,7_0_1 +7843,2,38.0,0.0,2,111,300.0,840.0,0.0,0,53,0.0,0.0,511.56016301161833,1140.0,0.0,1594.7434002694229,41,0,0,0,0,0,0,0,0,3,60.0,2,,2,107850,2,1,0,0,1,,0.0,300.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1075.47277209283,300.0,30457.97230937462,0,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03742862421767718,30457.97230937462,8,4,8,8_0,8_4,8_0_1 +7844,2,48.0,0.0,2,112,793.0,596.0,0.0,54,37,0.0,397.2981831030672,1352.2240308940445,1689.0,0.0,1131.5084125721141,42,0,0,0,0,0,0,0,0,2,45.0,1,,2,107851,2,2,3,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,697.954922082479,793.0,69294.27168117043,1,1,1,2,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02437430914594572,32997.27222912877,8,4,8,8_1,8_2,8_0_1 +7845,2,56.0,0.0,6,111,400.0,,,77,48,0.0,0.0,,520.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,0,,1,,4,107852,2,1,0,0,2,,400.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,116.94109565800622,400.0,90452.48598293116,5,1,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00574887460913044,60301.65732195411,10,5,10,10_1,10_2,10_0_0 +7846,2,48.0,0.0,2,111,400.0,,,22,68,0.0,0.0,,800.0,554.2356901586083,,71,0,0,0,0,0,0,0,0,0,,1,,2,107853,2,2,0,0,2,,500.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,107.5253431087642,400.0,15670.47261141063,4,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051051427728955094,7835.236305705315,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +7847,2,32.0,0.0,1,111,360.0,0.0,0.0,52,38,0.0,0.0,613.872195613942,360.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,107854,2,1,0,1,1,324.0,0.0,961.0,43,2.0,0.0,2.0,2.0,1.5,2,2,993.46101844253,360.0,75939.52053910754,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0047406146028352416,50626.34702607169,10,5,10,10_0,10_4,10_1_0 +7848,2,61.0,0.0,9,111,180.0,,,0,77,0.0,0.0,,226.0,63.73710436823996,,70,0,0,0,0,0,0,0,0,0,,1,2010.0,6,107855,2,1,0,0,1,,230.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,300.023512413001,180.0,17533.055880997406,0,5,1,2,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012889937814259877,17533.055880997406,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7849,2,48.0,0.0,7,111,0.0,0.0,900.0,45,67,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,71,0,0,0,0,0,0,0,0,2,23.0,1,,5,107856,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,2028.95163215859,0.0,42994.001270051886,1,1,0,1,97.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020933152844904167,17197.600508020754,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7850,2,77.0,0.0,2,111,318.0,,,0,78,0.0,0.0,,582.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,107857,1,2,0,0,2,,900.0,,21,3.0,9.0,4.0,4.0,2.5,4,4,73.70124828659587,318.0,20801.727002503354,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02797844620929599,8320.690801001341,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +7851,2,43.0,0.0,7,111,330.0,,,55,11,0.0,0.0,,468.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,107858,2,3,0,0,2,,192.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,104.20952786715924,330.0,14668.260634862363,4,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03190562341711427,5867.304253944945,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +7852,2,57.0,0.0,2,111,700.0,,,0,46,0.0,0.0,,950.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,107859,2,2,0,0,1,,1000.0,210.0,32,1.0,0.0,4.0,4.0,2.3,3,2,38.52140713843477,700.0,18568.479687500003,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05116196996136008,8073.25203804348,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +7853,2,33.0,0.0,1,300,542.0,720.0,0.0,43,37,0.0,158.91927324122688,924.2186945076571,1382.0,0.0,1366.922914516648,31,0,0,0,0,0,0,0,0,0,,1,,1,107860,2,1,1,0,2,,561.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,183.370735347115,542.0,59338.268676051026,1,1,1,2,160.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023290197554378198,28256.318417167153,8,4,8,8_1,8_0,8_1_0 +7854,1,34.0,80.0,9,211,700.0,,,81,42,0.0,0.0,,800.0,138.5589225396521,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,107861,2,1,0,0,1,,400.0,400.0,43,2.0,1.0,4.0,6.0,2.6999999999999997,2,2,8.154053824490994,700.0,58217.35687000005,4,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013741606335485278,21561.984025925947,6,3,6,6_1,6_2,6_0_0 +7855,1,53.0,254.0,2,111,186.0,390.0,0.0,0,77,0.0,0.0,317.16730106720337,576.0,0.0,740.4165786965177,71,2,2,2,2,1,2,2,2,0,,2,,2,107862,2,2,0,0,1,,0.0,1514.0,11,0.0,1.0,3.0,1.0,1.0,1,1,287.185086888679,186.0,11793.183486238533,0,7,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.04884177378162007,11793.183486238533,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +7856,2,49.0,0.0,1,120,2200.0,0.0,0.0,78,68,0.0,0.0,3751.441195418535,2320.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107863,2,1,1,0,1,,320.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,988.179528949722,2200.0,45076.60086025136,7,1,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051467944692470825,30051.067240167573,8,4,8,8_1,8_0,8_1_0 +7857,1,45.0,300.0,7,112,0.0,,,56,85,0.0,0.0,,1266.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,107864,2,2,0,0,2,,485.0,380.0,42,1.0,0.0,3.0,3.0,1.8,2,2,117.89822017817362,0.0,9242.82688353784,4,7,2,3,60.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13697108211069492,5134.903824187689,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7858,1,38.0,110.0,2,111,372.0,192.0,0.0,85,62,0.0,0.0,634.3346021344067,564.0,0.0,364.5127772044395,50,0,0,0,0,0,0,0,0,0,,2,,2,107865,2,2,0,1,1,43.0,0.0,338.0,42,1.0,0.0,3.0,3.0,1.8,2,2,312.44008492587,372.0,22204.999067664503,6,4,2,3,67.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025399685822158465,12336.110593146946,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7859,2,25.0,0.0,2,111,0.0,,,0,65,0.0,0.0,,1855.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,107866,2,2,0,0,2,,100.0,130.0,12,1.0,0.0,4.0,1.0,1.0,1,1,178.29093675299404,0.0,25998.308739856533,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07135079510599875,25998.308739856533,7,4,7,7_1,7_2,7_0_1 +7860,2,55.0,0.0,7,112,700.0,0.0,0.0,52,34,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,5,107867,2,1,1,0,1,,380.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,862.408217119184,700.0,57501.62049335053,1,1,0,1,112.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012173569961927382,28750.810246675264,8,4,8,8_1,8_0,8_0_0 +7861,2,43.0,0.0,2,111,542.0,498.0,0.0,55,67,0.0,0.0,924.2186945076571,1040.0,0.0,945.455015874015,71,2,2,2,1,1,2,2,2,3,15.0,2,,2,107868,2,1,0,1,1,372.0,355.0,280.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1031.58942954225,542.0,34518.302855279166,1,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.030128943603058525,23012.201903519443,6,3,6,6_0,6_4,6_0_1 +7862,0,36.0,0.0,2,211,1200.0,,,22,55,0.0,0.0,,1508.0,426.76148142212844,,71,0,0,0,0,0,0,0,0,0,,1,,2,107869,2,2,0,0,2,,500.0,,43,2.0,1.0,5.0,4.0,2.5,4,4,95.28542144281795,1200.0,44143.91013187476,1,1,0,1,200.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03416099741719813,17657.564052749905,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +7863,2,79.0,0.0,2,111,759.0,0.0,0.0,0,77,2109.365702073203,0.0,1294.2472124193944,2759.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107870,2,2,2,0,1,,100.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,2020.76154211507,759.0,38754.220146547166,0,5,0,1,115.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07119224666544645,38754.220146547166,9,5,9,9_1,9_3,9_0_1 +7864,2,26.0,0.0,9,111,300.0,,,0,34,0.0,0.0,,300.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,107871,2,1,0,0,2,,160.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,167.4915292157282,300.0,30383.57605969121,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009873755459549053,30383.57605969121,8,4,8,8_0,8_2,8_0_0 +7865,1,30.0,440.0,8,111,588.0,,,0,52,0.0,0.0,,700.0,155.18599324441035,,41,0,0,0,0,0,0,0,0,0,,2,2001.0,6,107872,1,2,0,0,2,,300.0,520.0,32,1.0,0.0,4.0,4.0,1.9,1,1,87.66037901564637,588.0,15898.662485016102,0,4,2,3,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044028860959827526,8367.717097376897,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +7866,2,62.0,0.0,7,111,497.0,0.0,0.0,0,74,0.0,0.0,847.4846700559144,497.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,107873,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1966.63494275155,497.0,70924.9230888878,0,5,0,1,95.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00700740978424646,70924.9230888878,10,5,10,10_0,10_3,10_0_0 +7867,2,57.0,0.0,6,120,1300.0,0.0,0.0,77,21,0.0,0.0,2216.7607063836795,1420.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,107874,1,1,2,0,2,,800.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1246.5119868402,1300.0,57554.10229632634,6,1,0,1,150.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02467243764291391,38369.40153088423,9,5,9,9_1,9_1,9_0_0 +7868,1,48.0,60.0,1,111,240.0,0.0,0.0,0,56,0.0,0.0,409.2481304092947,300.0,83.13535352379125,0.0,71,2,2,2,1,1,2,2,1,3,40.0,2,,1,107875,2,2,0,0,1,,0.0,380.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2038.75517323014,240.0,18224.231030650306,0,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.016461599915817953,18224.231030650306,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +7869,2,42.0,0.0,6,112,1200.0,0.0,0.0,85,38,0.0,1059.4618216081792,2046.2406520464733,2150.0,207.83838380947813,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,107876,2,2,2,0,1,,800.0,,42,1.0,0.0,8.0,4.0,2.3,3,2,1244.13459635665,1200.0,100718.01503549007,6,1,1,2,145.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021346727288483625,43790.44131977829,10,5,10,10_1,10_1,10_0_0 +7871,2,58.0,0.0,6,111,530.0,0.0,0.0,0,54,0.0,0.0,903.7562879871924,530.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,2,,4,107878,2,1,0,0,1,,0.0,437.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2204.02173019759,530.0,8548.712216553971,0,1,2,3,65.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06199764205112588,8548.712216553971,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +7873,2,66.0,0.0,5,120,280.0,0.0,0.0,0,75,0.0,0.0,477.4561521441771,280.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,107880,2,2,4,0,2,,340.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2972.66407591003,280.0,27796.38038152107,0,5,0,1,80.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010073254004904284,27796.38038152107,7,4,7,7_1,7_1,7_0_0 +7874,2,37.0,0.0,8,111,660.0,937.0,0.0,38,38,0.0,0.0,1125.4323586255605,1597.0,0.0,1778.8982929195822,12,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,107881,2,1,1,0,1,,417.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1091.412594737,660.0,113362.0234489738,1,1,1,2,124.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014087610219121019,53981.915928082766,10,5,10,10_1,10_3,10_0_0 +7875,1,49.0,139.0,6,111,90.0,,,0,68,0.0,0.0,,90.0,0.0,,50,0,0,0,0,0,0,0,0,1,10.0,2,,4,107882,2,3,0,0,2,,50.0,202.0,12,1.0,1.0,1.0,1.0,1.0,1,1,165.87454911839146,90.0,7602.039586919105,0,1,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01183892808909648,7602.039586919105,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7876,2,79.0,0.0,2,111,420.0,180.0,0.0,86,78,0.0,0.0,716.1842282162656,600.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,2,,2,107883,2,1,0,1,1,990.0,0.0,332.0,41,0.0,4.0,4.0,2.0,1.5,2,2,232.411254300184,420.0,16720.111924368393,6,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03588492724893438,11146.741282912262,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +7877,2,56.0,0.0,5,112,580.0,0.0,0.0,77,37,2425.7705573841836,0.0,989.0163151557955,2940.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,90.0,1,,3,107884,2,1,2,0,1,,720.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,806.668949968402,580.0,82706.89636384312,6,1,1,2,130.0,10,4,1,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035547217091382435,55137.930909228744,10,5,10,10_1,10_2,10_0_0 +7878,2,56.0,0.0,2,111,590.0,100.0,0.0,55,56,0.0,0.0,1006.0683205895161,690.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,107885,2,1,0,1,1,1056.0,0.0,404.0,43,3.0,2.0,4.0,3.0,2.0,3,3,686.947540842368,590.0,24562.433573420316,1,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028091679024291303,12281.216786710158,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +7879,2,87.0,0.0,1,111,960.0,720.0,0.0,0,78,0.0,0.0,1636.9925216371787,1680.0,0.0,1366.922914516648,50,0,0,0,0,0,0,0,0,0,,1,,1,107886,2,1,2,0,2,,252.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,433.029777993778,960.0,11223.462189514366,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14968643112368277,11223.462189514366,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +7880,2,58.0,0.0,8,112,1400.0,0.0,0.0,0,33,0.0,434.37934685935346,2387.2807607208856,1728.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,107887,2,1,2,0,1,,240.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1979.6003964444,1400.0,42117.711132788805,0,1,1,2,99.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04102787054481565,42117.711132788805,9,5,9,9_1,9_0,9_0_0 +7881,2,48.0,0.0,7,120,625.0,0.0,0.0,85,62,1265.6194212439218,0.0,1065.7503396075383,1925.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,107888,2,1,2,0,1,,520.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,1203.99714035261,625.0,60840.63159526569,6,1,1,2,96.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03164003971565926,24336.252638106274,7,4,7,7_1,7_0,7_0_0 +7882,1,50.0,400.0,9,211,900.0,,,0,81,0.0,0.0,,1500.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,107889,2,2,0,0,2,,1000.0,600.0,32,1.0,3.0,5.0,4.0,2.1,2,2,48.03729357507415,900.0,25554.25680395643,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05869863528051276,12168.693716169728,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +7883,2,36.0,0.0,7,111,600.0,0.0,0.0,52,52,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,107890,1,3,2,0,2,,590.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,341.636585455785,600.0,37766.963784429245,1,1,2,3,80.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015886900610405198,20981.646546905136,5,3,5,5_1,5_2,5_0_0 +7884,2,59.0,0.0,7,211,900.0,,,85,63,0.0,0.0,,900.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,107891,2,3,0,0,2,,800.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,40.81623983388713,900.0,24906.939860075105,6,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03613450729218913,16604.626573383404,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +7885,2,42.0,0.0,7,111,200.0,1600.0,0.0,34,34,0.0,0.0,341.04010867441224,1800.0,0.0,3037.6064767036623,10,0,0,0,0,0,0,0,0,3,90.0,1,,5,107892,2,1,2,0,1,,880.0,,43,2.0,0.0,6.0,5.0,3.0,5,3,785.453896545445,200.0,148742.6573582504,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012101437690901643,49580.88578608347,10,5,10,10_1,10_4,10_0_0 +7886,2,50.0,0.0,6,111,720.0,0.0,0.0,45,48,0.0,264.8654554020448,1227.744391227884,965.0,62.351515142843446,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,107893,2,1,2,0,1,,226.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1460.88993995652,720.0,66046.20253193568,1,1,1,2,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014610983871985499,36692.334739964266,9,5,9,9_1,9_3,9_0_0 +7887,1,44.0,354.0,5,111,672.0,672.0,0.0,85,52,0.0,0.0,1145.894765146025,1344.0,0.0,1275.7947202155383,50,0,0,0,0,0,0,0,0,1,3.0,2,,3,107894,2,1,0,0,1,,0.0,440.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,4,3,349.338416179176,672.0,35792.994081233854,6,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03754924768097717,11546.127122978663,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7888,2,51.0,0.0,1,111,300.0,870.0,0.0,0,37,0.0,0.0,511.56016301161833,1170.0,0.0,1651.6985217076165,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,107895,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,743.306748369206,300.0,198914.32389713908,0,1,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005881929350673713,110507.95772063282,10,5,10,10_0,10_4,10_1_0 +7889,2,83.0,0.0,7,111,0.0,0.0,0.0,0,71,0.0,0.0,0.0,387.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,107896,2,1,0,1,1,,0.0,1558.0,11,0.0,2.0,1.0,1.0,1.0,1,1,914.205577053709,0.0,33695.22404271041,0,5,2,3,34.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011485307220674888,33695.22404271041,9,5,9,9_0,9_2,9_0_0 +7890,2,60.0,0.0,2,111,360.0,0.0,0.0,77,21,0.0,0.0,613.872195613942,480.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,107897,1,1,0,1,2,995.0,260.0,580.0,42,1.0,2.0,3.0,2.0,1.5,2,2,985.328242802276,360.0,17442.70140303277,7,1,2,3,40.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027518673220911883,11628.467602021847,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +7891,2,62.0,0.0,2,112,600.0,0.0,0.0,75,75,3164.0485531098047,0.0,1023.1203260232367,3640.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,107898,1,2,1,0,1,,200.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,246.596835112019,600.0,39592.58238920389,5,5,0,1,160.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09193641284162751,26395.054926135927,7,4,7,7_1,7_0,7_0_1 +7892,2,33.0,0.0,9,111,260.0,622.0,0.0,43,47,0.0,0.0,443.3521412767359,882.0,0.0,1180.8695178185487,10,0,0,0,0,0,0,0,0,1,10.0,2,2004.0,6,107899,2,2,0,0,1,,260.0,541.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1178.21134593384,260.0,57479.86566178336,1,1,2,3,79.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015344503503013845,38319.910441188906,9,5,9,9_0,9_1,9_0_0 +7893,2,74.0,0.0,2,221,1037.0,0.0,0.0,0,77,0.0,0.0,1768.2929634768275,1092.0,76.20740739680865,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107900,2,1,0,0,1,,164.0,450.0,11,0.0,7.0,3.0,1.0,1.0,1,1,3184.56690569769,1037.0,15370.403290179453,0,5,2,3,65.0,1,1,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07104563096907854,15370.403290179453,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +7894,1,23.0,130.0,2,120,0.0,0.0,0.0,84,63,0.0,0.0,0.0,587.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,107901,2,2,0,1,1,405.0,0.0,400.0,42,1.0,0.0,2.0,2.0,1.5,2,2,867.72522095243,0.0,17362.654275816538,3,1,2,3,65.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033808194915082725,11575.10285054436,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +7895,1,50.0,73.0,2,111,145.0,264.0,0.0,67,63,0.0,0.0,247.25407878894887,409.0,0.0,501.2050686561043,71,2,2,2,2,1,2,2,2,2,25.0,2,,2,107902,2,1,0,1,1,444.0,0.0,254.0,43,2.0,2.0,3.0,2.0,1.5,2,2,269.693510302569,145.0,26425.040587026993,1,1,2,3,68.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.015477743493071223,17616.69372468466,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +7896,0,73.0,0.0,1,111,711.0,910.0,0.0,77,72,0.0,0.0,1212.3975863375356,1621.0,0.0,1727.638683625208,50,0,0,0,0,0,0,0,0,0,,2,,1,107903,2,2,0,0,1,,171.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1743.75843258275,711.0,30743.921140308943,5,5,0,1,67.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05272587034692448,20495.94742687263,5,3,5,5_0,5_3,5_1_0 +7897,2,32.0,0.0,1,111,770.0,0.0,0.0,81,38,0.0,0.0,1313.0044183964872,770.0,0.0,0.0,12,2,2,2,2,1,2,2,2,3,40.0,2,,1,107904,1,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1022.90028759969,770.0,78150.52845994094,4,1,0,1,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.009852780463214566,52100.35230662729,10,5,10,10_0,10_4,10_1_0 +7898,2,74.0,0.0,1,211,128.0,,,0,78,0.0,0.0,,172.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,1,107905,2,2,0,0,2,,120.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,122.61289018950107,128.0,8653.99464378294,0,5,0,1,20.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01987521451998649,8653.99464378294,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +7899,1,51.0,357.0,9,111,0.0,,,21,21,0.0,0.0,,303.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,107906,2,1,0,0,2,,302.0,650.0,43,2.0,0.0,4.0,3.0,2.0,3,2,112.39707083003103,0.0,10968.923453800471,4,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02762349480112542,5484.461726900236,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7900,1,51.0,217.0,2,112,420.0,0.0,0.0,62,63,0.0,0.0,716.1842282162656,420.0,0.0,0.0,71,2,1,2,1,2,2,2,2,3,150.0,2,,2,107907,2,1,0,1,1,405.0,0.0,334.0,43,2.0,0.0,3.0,6.0,2.8999999999999995,3,3,262.290156931808,420.0,41643.122175341996,1,1,2,3,60.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01008569910372122,14359.69730184207,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +7901,2,67.0,0.0,1,111,2160.0,0.0,0.0,74,75,0.0,0.0,3683.2331736836522,2160.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,107908,2,2,2,0,1,,220.0,,41,0.0,4.0,8.0,3.0,2.0,3,3,989.069837132911,2160.0,52120.36223124857,5,5,0,1,150.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041442536228287766,26060.181115624284,7,4,7,7_1,7_2,7_1_0 +7902,2,52.0,0.0,1,111,561.0,0.0,0.0,0,38,0.0,0.0,956.6175048317264,561.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,1,107909,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,942.062247015447,561.0,28738.669221351058,0,1,1,2,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01952073687473363,28738.669221351058,8,4,8,8_0,8_4,8_1_0 +7903,1,35.0,70.0,5,112,1800.0,0.0,0.0,54,47,1582.0242765549024,0.0,3069.36097806971,3300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,3,107910,2,2,1,0,1,,556.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1636.42304326879,1800.0,45981.36099985925,1,1,1,2,110.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07176821060190239,21895.886190409165,6,3,6,6_1,6_0,6_0_0 +7904,2,41.0,0.0,1,111,1525.0,0.0,0.0,35,31,0.0,0.0,2600.4308286423934,1525.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,1,107911,1,2,0,0,2,,0.0,1270.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1543.74912772457,1525.0,14475.24281903697,1,1,3,4,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.1053522914306081,9650.16187935798,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +7905,1,24.0,42.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,176.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,60.0,2,,1,107912,1,3,0,0,2,,0.0,258.0,12,1.0,0.0,1.0,1.0,1.0,1,1,564.511633678504,0.0,18997.99078519501,0,1,3,4,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.009264137560123226,18997.99078519501,5,3,5,5_0,5_4,5_1_0 +7906,1,51.0,351.0,9,112,372.0,720.0,0.0,0,85,0.0,0.0,634.3346021344067,1092.0,0.0,1366.922914516648,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,107913,2,1,2,0,1,,0.0,401.0,31,1.0,1.0,3.0,2.0,1.5,2,2,722.134983252177,372.0,9294.534278037509,0,7,2,3,74.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1174884041882914,6196.356185358339,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +7907,2,56.0,0.0,7,111,250.0,670.0,0.0,0,68,0.0,0.0,426.3001358430153,920.0,0.0,1271.9977121196587,60,0,0,0,0,0,0,0,0,0,,2,,5,107914,2,1,0,1,1,600.0,0.0,330.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1566.65978724956,250.0,19631.022354259425,0,1,2,3,50.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04686459947922089,19631.022354259425,5,3,5,5_0,5_2,5_0_0 +7908,2,71.0,0.0,2,111,342.0,,,77,78,0.0,0.0,,522.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,2,107915,1,3,0,0,2,,143.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,117.9428548452591,342.0,14810.363636363638,6,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03524558969763188,9873.575757575758,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +7909,2,55.0,0.0,2,111,260.0,1300.0,0.0,0,53,0.0,0.0,443.3521412767359,1560.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,2,,2,107916,2,2,0,1,1,,0.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,1815.57186563153,260.0,33466.01777315001,0,1,0,1,78.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04661444963588102,22310.678515433337,6,3,6,6_0,6_2,6_0_1 +7910,1,62.0,308.0,5,111,570.0,0.0,0.0,0,78,0.0,0.0,971.9643097220749,570.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,107917,1,2,0,0,1,,0.0,480.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1025.50089240602,570.0,9322.06565169153,0,5,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.061145246268091986,9322.06565169153,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +7911,1,60.0,301.0,9,111,420.0,,,54,55,0.0,0.0,,558.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,107918,2,2,0,0,2,,330.0,450.0,43,2.0,2.0,3.0,3.0,2.0,3,3,86.51080132246483,420.0,19412.662449418414,4,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02874412520456292,9706.331224709207,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +7912,2,87.0,0.0,2,111,600.0,0.0,0.0,0,72,791.0121382774512,0.0,1023.1203260232367,1385.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,107919,2,1,2,0,1,,240.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,308.949230048237,600.0,35134.68063105323,0,5,0,1,90.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03941974069847926,23423.12042070215,6,3,6,6_1,6_3,6_0_1 +7913,2,76.0,0.0,1,400,300.0,0.0,0.0,77,78,0.0,0.0,511.56016301161833,2360.0,2854.3138043168333,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107920,1,2,2,0,2,,85.0,291.0,41,0.0,2.0,3.0,2.0,1.5,2,2,782.363651580056,300.0,19063.429436042486,5,5,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12379724266915162,12708.952957361658,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7914,2,54.0,0.0,9,120,0.0,0.0,1440.0,0,42,0.0,0.0,907.658338197231,1440.0,0.0,1723.2942924931403,50,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,107921,2,1,0,0,1,,220.0,600.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1008.26461959931,0.0,25338.8481240016,0,1,2,3,100.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05682973404919679,25338.8481240016,7,4,7,7_0,7_1,7_0_0 +7915,2,50.0,0.0,1,112,200.0,0.0,0.0,0,68,0.0,46.35145469535784,341.04010867441224,375.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,107922,2,1,2,0,1,,0.0,,22,1.0,3.0,3.0,2.0,1.5,2,2,1120.39019409201,200.0,36195.00241368636,0,1,0,1,70.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010360546345983993,24130.00160912424,6,3,6,6_1,6_0,6_1_0 +7916,2,83.0,0.0,1,112,468.0,0.0,0.0,0,71,0.0,0.0,798.0338542981247,588.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,107923,2,3,1,0,1,,100.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,592.7226131222,468.0,15631.357742407243,0,5,0,1,70.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03761669393598355,15631.357742407243,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +7917,1,52.0,181.0,1,111,350.0,0.0,0.0,0,63,0.0,0.0,596.8201901802214,410.0,83.13535352379125,0.0,50,2,2,2,1,2,1,2,2,0,,1,,1,107924,1,3,4,0,2,,246.0,480.0,12,1.0,4.0,2.0,1.0,1.0,1,1,1606.25199464515,350.0,11913.19781376022,0,4,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,1,1,0,1,0.034415612534061474,11913.19781376022,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +7919,0,27.0,0.0,2,400,1200.0,0.0,0.0,47,46,0.0,264.8654554020448,2046.2406520464733,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,2,107926,2,1,2,0,1,,180.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1812.49656058467,1200.0,59541.71057707214,1,1,5,0,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023512928776001626,33078.72809837341,8,4,8,8_1,8_0,8_0_1 +7920,2,83.0,0.0,1,400,244.0,0.0,0.0,0,71,1470.2278943450226,0.0,416.0689325827829,1700.0,85.9065319745843,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107927,1,3,2,0,2,,147.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1227.23730810288,244.0,11124.636928737082,0,5,0,1,200.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1528139759427629,11124.636928737082,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +7921,2,52.0,0.0,6,111,480.0,1185.0,0.0,85,62,0.0,0.0,818.4962608185893,1665.0,0.0,2249.72729680865,50,2,2,2,1,1,1,2,2,1,15.0,1,,4,107928,1,3,3,0,1,,290.0,572.0,42,2.0,0.0,5.0,4.0,2.5,4,4,1266.6977191516,480.0,44390.97014692995,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03750762811646166,17756.38805877198,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +7922,2,81.0,0.0,9,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,791.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,2006.0,6,107929,2,1,0,0,1,,565.0,540.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2358.59471944403,0.0,20040.204508408387,0,5,2,3,70.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03947065508578595,20040.204508408387,5,3,5,5_0,5_0,5_0_0 +7923,1,48.0,250.0,2,111,900.0,1300.0,0.0,55,62,0.0,0.0,1534.680489034855,2200.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,2,,2,107930,2,2,0,0,1,,0.0,385.0,43,2.0,0.0,4.0,5.0,3.0,5,4,343.695970699738,900.0,25050.391209233945,1,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08782297975406657,8350.130403077981,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7924,1,24.0,413.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,577.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,107931,1,2,0,1,2,963.0,0.0,364.0,31,0.0,0.0,4.0,4.0,1.9,1,1,519.192100996944,0.0,10876.139136645323,0,7,2,3,76.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05305191417199652,5724.283756129117,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7925,2,53.0,0.0,2,112,1200.0,2000.0,0.0,52,47,0.0,264.8654554020448,2046.2406520464733,3400.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,107932,2,1,1,0,1,,700.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,772.877655315007,1200.0,19035.0,1,1,1,2,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17861833464670343,9517.5,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +7926,2,31.0,0.0,1,111,960.0,0.0,0.0,0,34,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,107933,2,2,0,0,2,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,904.770074336923,960.0,14746.270190072628,0,1,3,4,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06510120780550216,14746.270190072628,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +7927,2,51.0,0.0,1,111,0.0,0.0,660.0,48,68,0.0,0.0,416.0100716737309,660.0,0.0,789.8432173926894,50,2,2,2,2,1,2,2,2,0,,1,,1,107934,2,2,4,0,1,,190.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,228.936418835541,0.0,18853.475257379203,4,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.03500680861167374,12568.983504919468,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +7928,2,77.0,0.0,8,111,1246.0,0.0,0.0,75,78,0.0,331.081819252556,2124.679877041588,1556.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,107935,2,1,1,0,1,,223.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1619.95895929385,1246.0,45760.19183469936,5,5,0,1,90.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034003353954912954,30506.79455646624,8,4,8,8_1,8_3,8_0_0 +7929,2,21.0,0.0,2,221,600.0,,,0,63,0.0,0.0,,660.0,83.13535352379125,,43,0,0,0,0,0,0,0,0,0,,1,,2,107936,2,2,0,0,2,,500.0,,22,2.0,4.0,6.0,3.0,2.0,3,3,85.83159063789836,600.0,23911.822315881473,0,1,0,1,130.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027601409515394776,11955.911157940736,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +7930,2,46.0,0.0,7,112,450.0,,,42,34,0.0,0.0,,714.0,365.79555550468154,,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,107937,2,2,0,0,2,,240.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,113.41849043258448,450.0,57090.54897476994,1,1,1,2,120.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012506448314510664,24821.977815117367,7,4,7,7_1,7_1,7_0_0 +7931,2,47.0,0.0,1,111,100.0,0.0,0.0,0,68,0.0,0.0,170.52005433720612,100.0,0.0,0.0,71,2,2,1,2,1,2,2,2,3,20.0,2,,1,107938,2,1,0,0,1,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1420.45986672332,100.0,21180.66802397774,0,1,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.004721286405452095,21180.66802397774,5,3,5,5_0,5_4,5_1_0 +7932,2,78.0,0.0,8,112,560.0,1700.0,0.0,72,72,0.0,0.0,954.9123042883542,2260.0,0.0,3227.4568814976415,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,107939,2,1,1,0,1,,350.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1730.84529478485,560.0,22052.47799771769,5,5,0,1,120.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10248281396013172,14701.65199847846,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7933,2,77.0,0.0,2,111,404.0,808.0,0.0,75,75,0.0,0.0,688.9010195223127,1212.0,0.0,1533.9912707353494,50,0,0,0,0,0,0,0,0,0,,1,,2,107940,2,1,2,0,1,,345.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1384.34744655741,404.0,45584.81739270805,5,5,0,1,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02658779982727049,30389.878261805366,8,4,8,8_1,8_3,8_0_1 +7934,1,28.0,120.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,664.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,107941,2,2,0,1,1,536.0,195.0,225.0,32,1.0,0.0,3.0,2.0,1.3,1,1,475.999292837448,0.0,11248.821058280031,0,4,2,3,53.0,5,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05902840809359688,8652.939275600023,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +7935,2,33.0,0.0,1,111,850.0,1200.0,0.0,55,63,0.0,0.0,1449.420461866252,2050.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,3.0,2,,1,107942,2,3,0,0,1,,180.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1212.41902005957,850.0,17639.253002666803,1,1,1,2,103.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11621807338950631,9799.585001481557,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +7936,2,42.0,0.0,9,111,1200.0,0.0,0.0,52,47,0.0,476.7578197236806,2046.2406520464733,1650.0,124.70303028568689,0.0,42,1,2,2,1,1,2,2,2,2,10.0,1,2007.0,6,107943,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,445.091082512407,1200.0,54563.97872554367,1,1,0,1,222.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0302397302861561,25982.84701216365,7,4,7,7_1,7_3,7_0_0 +7937,1,43.0,450.0,1,111,1000.0,0.0,0.0,0,85,0.0,0.0,1705.2005433720612,1213.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,107944,2,3,0,0,1,,620.0,550.0,31,2.0,1.0,4.0,6.0,2.8999999999999995,3,3,1851.21273381703,1000.0,18766.759690689378,0,6,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06463555882808034,6471.2964450653035,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +7938,0,75.0,0.0,2,112,720.0,,,0,22,0.0,0.0,,866.0,202.29602690789207,,41,0,0,0,0,0,0,0,0,1,1.0,1,,2,107945,2,1,0,0,2,,60.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,93.24902938345701,720.0,33942.06787274571,0,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025514061289570622,33942.06787274571,9,5,9,9_1,9_1,9_0_1 +7939,1,71.0,179.0,2,111,280.0,240.0,0.0,0,78,506.24776849756876,0.0,477.4561521441771,1000.0,0.0,455.6409715055494,70,0,0,0,0,0,0,0,0,0,,2,,2,107946,2,1,0,1,1,480.0,290.0,256.0,11,0.0,2.0,4.0,1.0,1.0,1,1,478.449250230574,280.0,9500.802463109934,0,5,2,3,92.0,9,7,5,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10525426708773673,9500.802463109934,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7940,2,38.0,0.0,1,112,1000.0,0.0,0.0,42,35,2109.365702073203,132.4327277010224,1705.2005433720612,3100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,1,107947,2,2,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,383.015645677761,1000.0,55344.808079381255,1,1,1,2,150.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05601248080133658,26354.670513991074,7,4,7,7_1,7_1,7_1_0 +7941,1,42.0,301.0,6,111,1146.0,,,0,68,0.0,0.0,,1650.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,1,,4,107948,1,3,0,0,2,,1495.0,,32,2.0,2.0,6.0,5.0,2.5999999999999996,3,2,141.2031921775923,1146.0,20799.665887805648,0,4,1,2,122.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07932819733260023,7999.871495309866,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7942,2,54.0,0.0,5,111,500.0,,,85,11,0.0,0.0,,800.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,3,107949,2,1,0,0,2,,700.0,,42,1.0,1.0,5.0,4.0,2.3,3,3,89.44933511336902,500.0,22599.130926591555,6,1,0,1,128.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03539959136475774,9825.709098518068,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7943,1,35.0,357.0,9,211,0.0,,,0,63,0.0,0.0,,663.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,107950,2,1,0,0,2,,148.0,750.0,32,1.0,0.0,3.0,2.0,1.3,1,1,144.83233376785418,0.0,12055.0,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05499792617171298,9273.076923076922,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +7944,2,77.0,0.0,8,111,222.0,1078.0,0.0,77,78,0.0,0.0,378.5545206285976,1300.0,0.0,2046.5873636790925,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,107951,2,1,0,0,1,,234.0,504.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1178.21134593384,222.0,29791.56732010244,5,5,2,3,79.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.043636509151460445,19861.044880068293,5,3,5,5_0,5_1,5_0_0 +7945,2,41.0,0.0,7,211,1440.0,,,90,46,0.0,0.0,,1440.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,107952,2,1,0,0,2,,450.0,,43,4.0,1.0,6.0,7.0,3.6,5,4,107.98446237448567,1440.0,129418.06158760846,4,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011126731325868331,35949.46155211346,9,5,9,9_1,9_2,9_0_0 +7946,2,54.0,0.0,5,211,0.0,,,34,22,0.0,0.0,,1730.0,0.0,,44,0,0,0,0,0,0,0,0,0,,1,,3,107953,2,1,0,0,2,,262.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,37.64076666298087,0.0,125222.79590528943,1,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013815375926508318,50089.11836211577,10,5,10,10_1,10_2,10_0_0 +7947,2,66.0,0.0,2,111,155.0,0.0,0.0,0,74,0.0,0.0,264.3060842226695,185.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,107954,2,1,0,1,1,,100.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,373.949016762014,155.0,31980.099712910458,0,5,1,2,65.0,7,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005784847503940551,31980.099712910458,8,4,8,8_0,8_2,8_0_1 +7948,1,49.0,496.0,6,111,0.0,,,68,21,0.0,0.0,,84.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,2,,4,107955,2,3,0,0,2,,0.0,550.0,43,2.0,3.0,2.0,3.0,1.8,2,2,138.6348000578148,0.0,18948.313469755805,4,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.004433112220466265,10526.840816531003,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +7949,2,65.0,0.0,2,112,700.0,0.0,0.0,78,74,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,107956,2,1,2,0,1,,140.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1275.37008222989,700.0,32949.491231667045,5,5,0,1,96.0,5,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023065606526560884,21966.32748777803,6,3,6,6_1,6_0,6_0_1 +7950,2,65.0,0.0,5,112,1500.0,0.0,0.0,78,78,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,107957,2,1,1,0,1,,205.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1174.51068689683,1500.0,33990.67198721219,5,5,0,1,100.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04412975420328032,22660.447991474794,6,3,6,6_1,6_0,6_0_0 +7951,2,37.0,0.0,5,111,400.0,1000.0,0.0,54,64,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,107958,1,3,0,0,1,,0.0,380.0,43,2.0,1.0,5.0,3.0,1.8,2,2,419.514971183295,400.0,18618.36521835266,1,1,2,3,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07519457178871856,10343.536232418144,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +7952,2,68.0,0.0,6,111,360.0,1114.0,0.0,77,78,0.0,0.0,613.872195613942,1474.0,0.0,2114.9335094049247,50,0,0,0,0,0,0,0,0,0,,1,,4,107959,2,1,2,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,623.855234545718,360.0,26923.482281938093,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05474774713629257,17948.98818795873,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +7953,2,60.0,0.0,1,221,1400.0,0.0,0.0,75,44,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,1,107960,2,1,0,0,1,,327.0,677.0,42,1.0,4.0,4.0,2.0,1.5,2,2,2749.78187145754,1400.0,64836.5424332019,6,1,2,3,71.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021592761542495197,43224.3616221346,9,5,9,9_0,9_1,9_1_0 +7955,2,25.0,0.0,7,111,0.0,0.0,448.0,0,46,0.0,0.0,282.3825941058052,448.0,0.0,536.1360021089771,71,0,0,0,0,0,0,0,0,0,,2,,5,107963,2,1,0,0,1,,0.0,1250.0,22,3.0,0.0,5.0,3.0,2.0,3,3,2004.36376580676,0.0,22883.79253216804,0,1,2,3,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019577174516428632,11441.89626608402,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +7956,1,33.0,407.0,7,111,450.0,,,0,46,0.0,0.0,,579.0,178.7410100761512,,31,0,0,0,0,0,0,0,0,2,60.0,2,,5,107964,1,3,0,0,2,,100.0,469.0,32,1.0,0.0,3.0,3.0,1.6,1,1,184.14986283611032,450.0,35154.16081706235,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01647031209230225,21971.350510663968,6,3,6,6_0,6_2,6_0_0 +7957,2,34.0,0.0,9,111,558.0,0.0,0.0,56,47,0.0,529.7309108040896,951.5019032016102,958.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,107965,1,2,4,0,1,,286.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,204.374822726668,558.0,49261.7771815067,1,1,1,2,75.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019447126246993005,32841.18478767113,8,4,8,8_1,8_2,8_0_0 +7958,2,53.0,0.0,5,111,1500.0,0.0,0.0,56,62,0.0,0.0,2557.8008150580918,1528.0,38.79649831110259,0.0,60,2,2,2,2,1,2,2,2,0,,1,,3,107966,2,2,2,0,1,,300.0,276.0,43,3.0,1.0,2.0,3.0,2.0,3,3,250.287711268984,1500.0,40884.375933713745,1,1,2,3,45.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03737369019591645,20442.187966856873,5,3,5,5_1,5_3,5_0_0 +7959,2,33.0,0.0,2,111,780.0,,,0,56,0.0,0.0,,969.0,261.87636359994247,,50,0,0,0,0,0,0,0,0,0,,1,,2,107967,2,1,0,0,1,,420.0,,22,2.0,2.0,6.0,4.0,2.5,4,4,93.93505827890125,780.0,66254.35619016811,0,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01462545341499818,26501.742476067244,7,4,7,7_1,7_2,7_0_1 +7960,1,49.0,203.0,2,111,300.0,216.0,0.0,0,85,0.0,0.0,511.56016301161833,516.0,0.0,410.0768743549944,71,2,1,2,2,1,2,2,2,0,,2,,2,107968,1,1,0,1,1,204.0,0.0,392.0,11,0.0,0.0,2.0,1.0,1.0,1,1,378.745561201903,300.0,9914.916994513396,0,7,2,3,48.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05204279574761324,9914.916994513396,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7961,2,73.0,0.0,2,111,255.0,982.0,0.0,0,77,0.0,0.0,434.8261385598756,1237.0,0.0,1864.3309750768728,70,0,0,0,0,0,0,0,0,0,,1,,2,107969,1,2,3,0,2,,134.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1805.07844995559,255.0,15166.0,0,5,0,1,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08156402479229856,15166.0,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +7962,2,51.0,0.0,6,111,450.0,300.0,0.0,56,37,0.0,397.2981831030672,767.3402445174275,1050.0,0.0,569.5512143819367,12,0,0,0,0,0,0,0,0,2,60.0,1,,4,107970,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,189.903717002407,450.0,81716.73766603737,1,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01284926478943854,32686.695066414948,8,4,8,8_1,8_4,8_0_0 +7963,2,27.0,0.0,7,111,600.0,,,54,52,0.0,0.0,,744.0,199.524848457099,,60,0,0,0,0,0,0,0,0,0,,2,,5,107971,1,1,0,0,2,,516.0,580.0,43,2.0,0.0,3.0,2.0,1.5,2,2,125.25424297604043,600.0,39091.06191094968,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019032483734896966,26060.707940633118,7,4,7,7_0,7_2,7_0_0 +7964,2,35.0,0.0,2,111,444.0,1100.0,0.0,37,54,0.0,0.0,757.1090412571951,1544.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,4,45.0,2,,2,107972,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,933.836506226699,444.0,61361.234413714556,1,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025162466413076397,34089.57467428586,9,5,9,9_0,9_4,9_0_1 +7965,2,89.0,0.0,6,111,0.0,0.0,3207.0,72,72,0.0,0.0,2021.4307573600836,3207.0,0.0,3837.9199972399315,70,0,0,0,0,0,0,0,0,0,,1,,4,107973,2,1,2,0,1,,345.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1504.32437841516,0.0,44224.75688904895,5,5,0,1,139.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07251594413612539,29483.171259365965,8,4,8,8_1,8_3,8_0_0 +7966,2,77.0,0.0,2,111,170.0,660.0,0.0,86,78,0.0,0.0,289.8840923732504,830.0,0.0,1253.0126716402608,71,0,0,0,0,0,0,0,0,0,,2,,2,107974,2,1,0,0,2,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1646.12586853977,170.0,33029.980068293284,6,5,0,1,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025128686068955523,22019.98671219552,6,3,6,6_0,6_3,6_0_1 +7967,2,80.0,0.0,1,111,685.0,1760.0,0.0,77,74,0.0,0.0,1168.062372209862,2445.0,0.0,3341.3671243740287,10,0,0,0,0,0,0,0,0,0,,1,,1,107975,2,2,2,0,1,,287.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,725.332898685465,685.0,62529.025063888395,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03910184106503893,41686.01670925893,9,5,9,9_1,9_4,9_1_0 +7968,2,34.0,0.0,9,400,0.0,,,0,52,0.0,0.0,,90.0,124.70303028568689,,60,0,0,0,0,0,0,0,0,1,15.0,1,2013.0,6,107976,2,3,0,0,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,86.84870127644176,0.0,15229.504132231405,0,1,0,1,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005909581770920951,11715.003178639541,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +7969,2,37.0,0.0,9,111,750.0,710.0,0.0,43,53,0.0,0.0,1278.9004075290459,1460.0,0.0,1347.9378740372501,30,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,107977,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1267.91086721322,750.0,49784.86425991514,1,1,1,2,120.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029326182198221556,23707.07821900721,6,3,6,6_1,6_3,6_0_0 +7970,2,68.0,0.0,1,111,651.0,600.0,0.0,77,78,0.0,0.0,1110.0855537352118,1251.0,0.0,1139.1024287638734,70,0,0,0,0,0,0,0,0,0,,1,,1,107978,2,1,2,0,1,,264.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,362.024967886381,651.0,30863.679560943863,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040533080235289426,20575.786373962575,5,3,5,5_1,5_4,5_1_0 +7971,0,55.0,0.0,2,111,460.0,51.0,0.0,0,53,0.0,0.0,784.3922499511482,511.0,0.0,96.82370644492924,71,0,0,0,0,0,0,0,0,0,,2,,2,107979,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2290.48607262607,460.0,5676.49490526056,0,4,5,0,28.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09002033975692335,5676.49490526056,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +7972,2,79.0,0.0,2,111,500.0,1000.0,0.0,0,78,0.0,0.0,852.6002716860306,1550.0,69.27946126982604,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,107980,2,1,2,0,1,,120.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,361.071675346738,500.0,14584.871886712695,0,5,0,1,68.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1062745022403729,14584.871886712695,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +7973,1,43.0,141.0,7,111,820.0,0.0,0.0,0,46,0.0,0.0,1398.2644455650902,1413.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,107981,1,1,2,0,1,,400.0,501.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1053.71232583748,820.0,24847.584149769194,0,1,2,3,78.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.056866695429347205,13804.213416538441,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +7974,2,77.0,0.0,9,120,468.0,807.0,0.0,0,72,0.0,0.0,798.0338542981247,1275.0,0.0,1532.0927666874097,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,107982,2,1,1,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2029.55817662604,468.0,22534.0,0,5,0,1,150.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056581166237685276,22534.0,6,3,6,6_1,6_1,6_0_0 +7975,1,64.0,50.0,2,111,690.0,700.0,0.0,0,78,0.0,0.0,1176.5883749267223,1390.0,0.0,1328.9528335578523,60,0,0,0,0,0,0,0,0,0,,2,,2,107983,2,2,0,0,1,,350.0,480.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1858.67087326327,690.0,12775.333927391834,0,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10880341820417506,12775.333927391834,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +7976,2,53.0,0.0,5,112,158.0,0.0,0.0,75,38,0.0,92.70290939071567,269.4216858527857,228.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,3,107984,2,2,3,0,1,,321.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,1759.08128454228,158.0,96347.43982784075,5,1,1,2,180.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0023664354798363482,64231.62655189383,10,5,10,10_1,10_0,10_0_0 +7977,2,37.0,0.0,9,120,770.0,0.0,0.0,55,48,1054.6828510366015,0.0,1313.0044183964872,1860.0,124.70303028568689,0.0,50,2,2,2,2,2,2,2,1,2,20.0,1,2006.0,6,107985,2,1,1,0,1,,940.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1605.26681476892,770.0,35091.69099119963,1,1,1,2,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.053004000304985435,15257.256952695494,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +7978,1,52.0,216.0,2,111,400.0,550.0,0.0,0,62,0.0,0.0,682.0802173488245,950.0,0.0,1044.177226366884,70,0,0,0,0,0,0,0,0,0,,2,,2,107986,2,3,0,1,1,,0.0,238.0,12,1.0,4.0,3.0,1.0,1.0,1,1,421.042621492546,400.0,7160.722135007849,0,4,2,3,40.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.13266818375140857,7160.722135007849,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +7979,2,77.0,0.0,1,111,500.0,0.0,0.0,77,78,0.0,0.0,852.6002716860306,560.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,107987,2,1,1,0,1,,60.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1046.20837052482,500.0,18987.902609633376,5,5,0,1,84.0,3,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029492462201480222,12658.601739755584,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +7981,2,32.0,0.0,9,111,1667.0,0.0,0.0,55,62,0.0,0.0,2842.569305801226,1667.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,7.0,1,2012.0,6,107989,2,1,1,0,1,,420.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1013.92668191114,1667.0,35066.784458979615,1,1,1,2,90.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04753786312942441,19481.546921655343,5,3,5,5_1,5_2,5_0_0 +7982,2,55.0,0.0,6,111,480.0,,,68,68,0.0,0.0,,624.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,2,,4,107990,2,1,0,0,2,,800.0,331.0,43,4.0,0.0,4.0,4.0,2.5,4,4,137.76720498696795,480.0,45206.85738539898,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01380321562014928,18082.742954159592,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +7983,2,60.0,0.0,7,111,120.0,,,0,63,0.0,0.0,,330.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,5,107991,2,1,0,0,2,,600.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,90.49538663304989,120.0,7046.390000420159,0,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046832491528331945,7046.390000420159,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +7984,2,62.0,0.0,6,111,650.0,2000.0,0.0,78,78,0.0,158.91927324122688,1108.3803531918397,2770.0,0.0,3797.008095879578,71,2,2,2,2,1,2,2,2,0,,1,,4,107992,2,1,2,0,1,,750.0,,41,0.0,2.0,5.0,4.0,2.5,4,4,583.872796988459,650.0,45668.91902807366,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06065394274598928,18267.567611229464,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +7985,2,37.0,0.0,2,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,627.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,107993,2,1,3,0,1,,290.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,814.618729170649,0.0,70200.84976879886,1,1,1,2,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00893151581590503,33428.97608038041,8,4,8,8_1,8_4,8_0_1 +7986,2,55.0,0.0,2,111,396.0,,,0,52,0.0,0.0,,444.0,66.50828281903301,,70,0,0,0,0,0,0,0,0,3,6.0,2,,2,107994,2,1,0,0,2,,370.0,290.0,32,1.0,2.0,3.0,2.0,1.5,2,2,88.5742382803468,396.0,24562.783330656286,0,1,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018076127368100547,16375.18888710419,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +7987,2,50.0,0.0,1,111,1300.0,2600.0,0.0,85,56,0.0,0.0,2216.7607063836795,3900.0,0.0,4936.110524643452,41,0,0,0,0,0,0,0,0,0,,1,,1,107995,1,1,2,0,1,,500.0,,42,1.0,2.0,6.0,3.0,2.0,3,3,250.628429412642,1300.0,31316.82319103471,7,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12453370433551769,15658.411595517355,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +7988,2,46.0,0.0,6,111,446.0,,,52,63,0.0,0.0,,614.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,4,107996,2,1,0,0,2,,240.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,105.26816114498001,446.0,28995.066057066237,4,1,1,2,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021176016595084297,11598.026422826495,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +7989,2,39.0,0.0,5,111,312.0,66.0,0.0,0,47,0.0,0.0,532.0225695320831,378.0,0.0,125.30126716402607,43,2,2,2,1,2,2,2,2,2,10.0,2,,3,107997,1,2,0,1,1,535.0,100.0,347.0,12,1.0,0.0,2.0,1.0,1.0,1,1,407.023762799744,312.0,28187.432929700648,0,1,2,3,53.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01341023146530337,28187.432929700648,8,4,8,8_0,8_2,8_0_0 +7990,2,79.0,0.0,1,111,300.0,800.0,0.0,0,63,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,41,2,2,2,2,1,1,1,2,1,15.0,2,,1,107998,2,2,0,0,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1063.55621304677,300.0,73450.7338194844,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.014976024646716341,73450.7338194844,10,5,10,10_0,10_4,10_1_0 +7991,2,75.0,0.0,9,211,468.0,1012.0,0.0,77,72,0.0,0.0,798.0338542981247,1480.0,0.0,1921.2860965150664,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,107999,2,1,1,0,1,,249.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1032.76713122776,468.0,33580.89495365326,5,5,1,2,150.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044072678886093564,22387.263302435505,6,3,6,6_1,6_1,6_0_0 +7992,1,44.0,40.0,9,300,1700.0,0.0,0.0,0,67,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,108000,2,1,1,0,1,,570.0,,32,1.0,1.0,5.0,3.0,2.0,3,2,872.992361691192,1700.0,50311.85066668818,0,4,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03378925596003928,25155.92533334409,7,4,7,7_1,7_0,7_0_0 +7993,2,47.0,0.0,2,111,1610.0,0.0,0.0,43,37,0.0,0.0,2745.3728748290187,4210.0,3602.5319860309546,0.0,20,1,2,2,1,1,2,2,2,2,30.0,1,,2,108001,1,2,5,0,2,,637.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1421.72030683905,1610.0,69653.4306260938,1,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.06044210546641526,33168.300298139904,8,4,8,8_1,8_3,8_0_1 +7994,2,30.0,0.0,2,120,1300.0,0.0,0.0,52,54,0.0,251.62218263194254,2216.7607063836795,1515.0,34.63973063491302,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,108002,2,2,3,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1636.90741138669,1300.0,33630.372666898125,1,1,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04504856413593037,22420.24844459875,6,3,6,6_1,6_0,6_0_1 +7995,1,49.0,255.0,7,300,290.0,0.0,0.0,0,67,0.0,264.8654554020448,494.50815757789775,550.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,108003,2,1,2,0,1,,180.0,366.0,12,1.0,0.0,3.0,1.0,1.0,1,1,704.505496916242,290.0,15101.659422558903,0,4,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03641983868199334,15101.659422558903,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +7996,1,85.0,81.0,1,111,170.0,300.0,0.0,0,77,0.0,0.0,289.8840923732504,470.0,0.0,569.5512143819367,70,0,0,0,0,0,0,0,0,0,,2,,1,108004,2,1,0,0,1,,0.0,486.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1973.27895252516,170.0,16459.937418602683,0,5,2,3,176.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.028554179037692796,16459.937418602683,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +7997,2,40.0,0.0,9,112,911.0,0.0,0.0,0,34,0.0,0.0,1553.4376950119477,911.0,0.0,0.0,10,1,2,2,2,1,2,2,2,2,45.0,1,2007.0,6,108005,2,1,1,0,1,,375.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1183.52363810277,911.0,39648.67176724275,0,1,1,2,138.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.022976810051746982,39648.67176724275,9,5,9,9_1,9_1,9_0_0 +7998,2,43.0,0.0,2,112,1238.0,0.0,0.0,65,52,0.0,331.081819252556,2111.038272694612,1588.0,138.5589225396521,0.0,50,2,2,2,1,2,2,2,2,2,40.0,1,,2,108006,2,2,1,0,1,,50.0,,43,3.0,0.0,5.0,5.0,2.8,4,4,604.927426898588,1238.0,72465.35590389877,1,1,1,2,120.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.021913919833719642,25880.48425139242,7,4,7,7_1,7_1,7_0_1 +7999,2,29.0,0.0,2,111,0.0,0.0,0.0,56,47,0.0,0.0,0.0,2083.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,150.0,1,,2,108007,2,2,2,0,1,,575.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,455.295929190201,0.0,47529.11182822199,1,1,1,2,85.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04382577161400162,22632.910394391423,6,3,6,6_1,6_3,6_0_1 +8000,0,81.0,0.0,1,400,1032.0,0.0,0.0,0,71,0.0,0.0,1759.766960759967,4671.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,108008,2,2,4,0,2,,150.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1248.21657516749,1032.0,19810.80829007753,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.235780384707449,19810.80829007753,5,3,5,5_1,5_0,5_1_0 +8001,2,50.0,0.0,8,111,624.0,,,43,33,0.0,0.0,,716.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,108009,2,1,0,0,2,,350.0,,43,2.0,0.0,4.0,5.0,2.8,4,2,94.53887721329991,624.0,77966.01000374819,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009183489061009773,27845.00357276721,7,4,7,7_1,7_2,7_0_0 +8002,2,39.0,0.0,7,111,600.0,,,54,68,0.0,0.0,,888.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,,5,108010,2,1,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,108.81399145094568,600.0,20254.33114605712,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043842474658703584,8806.230933068315,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8003,2,71.0,0.0,1,111,430.0,1450.0,0.0,0,77,0.0,0.0,733.2362336499863,1880.0,0.0,2752.830869512694,50,0,0,0,0,0,0,0,0,0,,1,,1,108011,1,1,2,0,2,,200.0,287.0,11,0.0,2.0,4.0,1.0,1.0,1,1,310.171770698391,430.0,17223.306650882765,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10915441721544465,17223.306650882765,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +8005,2,71.0,0.0,2,211,700.0,,,0,86,0.0,0.0,,876.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,2,108013,2,2,0,0,2,,200.0,,21,1.0,7.0,4.0,2.0,1.5,2,2,86.91378837175154,700.0,15373.823208678958,0,6,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05697997096164559,10249.215472452639,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +8006,0,66.0,0.0,2,300,600.0,0.0,0.0,0,71,2109.365702073203,595.9472746546007,1023.1203260232367,3143.0,128.85979796187644,0.0,70,2,2,2,1,2,2,2,2,0,,1,,2,108014,1,2,3,0,1,,225.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1534.80947365076,600.0,15584.028265116976,0,5,0,1,150.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.2016808457050375,15584.028265116976,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +8007,2,72.0,0.0,5,111,600.0,,,74,78,0.0,0.0,,860.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,1,,3,108015,2,1,0,0,2,,400.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,111.86819398274164,600.0,35915.68256507549,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023944971627415663,23943.788376716995,6,3,6,6_1,6_2,6_0_0 +8008,1,51.0,270.0,2,111,150.0,250.0,0.0,0,67,0.0,0.0,255.78008150580916,400.0,0.0,474.62601198494724,50,2,2,1,1,2,2,2,2,0,,2,,2,108016,2,2,0,0,1,,160.0,309.0,12,1.0,0.0,2.0,1.0,1.0,1,1,261.143858100312,150.0,13627.450160771705,0,4,2,3,35.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.029352519751013238,13627.450160771705,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +8009,2,34.0,0.0,2,111,900.0,1500.0,0.0,0,56,0.0,0.0,1534.680489034855,2400.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,2,,2,108017,1,3,0,0,2,,0.0,800.0,22,1.0,0.0,3.0,4.0,2.3,3,3,1200.00082810314,900.0,17982.547807747145,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13346273429430533,7818.499046846586,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +8010,2,68.0,0.0,2,120,790.0,0.0,0.0,0,78,1476.555991451242,0.0,1347.1084292639284,2250.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,108018,1,2,3,0,2,,110.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,266.405300337139,790.0,27912.89306507005,0,5,0,1,90.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08060791100208922,27912.89306507005,7,4,7,7_1,7_0,7_0_1 +8011,2,68.0,0.0,6,221,1640.0,0.0,0.0,77,21,0.0,662.163638505112,2796.5288911301805,2140.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,108019,2,1,2,0,1,,600.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1884.53421865943,1640.0,39916.16529457271,5,5,0,1,85.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053612364419459144,26610.776863048475,7,4,7,7_1,7_1,7_0_0 +8012,2,57.0,0.0,6,112,1200.0,0.0,0.0,54,42,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,4,108020,2,1,2,0,1,,430.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,904.710397051169,1200.0,45602.66329088891,1,1,0,1,170.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027629965205381746,30401.775527259273,8,4,8,8_1,8_0,8_0_0 +8013,2,83.0,0.0,2,111,192.0,432.0,0.0,0,75,0.0,0.0,327.3985043274357,624.0,0.0,820.1537487099888,50,2,1,2,1,2,2,2,2,0,,2,,2,108021,2,1,0,1,1,,575.0,477.0,11,0.0,1.0,4.0,1.0,1.0,1,1,594.696439114672,192.0,24708.51438963108,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.025254452378644886,24708.51438963108,7,4,7,7_0,7_4,7_0_1 +8014,2,97.0,0.0,2,111,546.0,654.0,0.0,75,72,0.0,0.0,931.0394966811454,1200.0,0.0,1241.621647352622,71,0,0,0,0,0,0,0,0,0,,8,,2,108022,2,1,0,0,1,,267.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,2007.31662902614,546.0,78310.29367497451,5,5,0,1,67.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015323655980407616,52206.86244998301,10,5,10,10_0,10_2,10_0_1 +8015,1,35.0,420.0,2,111,228.0,312.0,0.0,0,56,0.0,0.0,388.7857238888299,540.0,0.0,592.3332629572142,50,0,0,0,0,0,0,0,0,0,,2,,2,108023,1,1,0,1,1,408.0,0.0,406.0,32,1.0,0.0,2.0,2.0,1.3,1,1,299.541536554654,228.0,8178.167722223179,0,4,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0660294601849037,6290.898247863984,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +8016,1,60.0,187.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,820.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108024,2,1,0,1,1,724.0,0.0,430.0,11,0.0,2.0,1.0,1.0,1.0,1,1,537.463994038577,0.0,8305.135572749885,0,5,2,3,30.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09873408962648549,8305.135572749885,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8017,2,60.0,0.0,6,111,540.0,1200.0,0.0,54,45,0.0,0.0,920.8082934209131,1740.0,0.0,2278.2048575277468,30,0,0,0,0,0,0,0,0,2,15.0,1,,4,108025,2,1,2,0,1,,276.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,260.324152069152,540.0,50897.7899256283,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034186160195609334,33931.85995041887,9,5,9,9_1,9_3,9_0_0 +8018,2,29.0,0.0,2,111,429.0,48.0,0.0,46,53,0.0,0.0,731.5310331066142,477.0,0.0,91.12819430110987,41,2,1,2,1,1,2,2,2,3,10.0,2,,2,108026,1,3,0,1,1,420.0,0.0,348.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1039.93243151822,429.0,45982.275537883805,1,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01037356230026089,30654.850358589203,8,4,8,8_0,8_4,8_0_1 +8019,1,36.0,337.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,406.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108027,1,2,0,1,2,829.0,0.0,534.0,32,1.0,0.0,5.0,4.0,1.9,1,1,1709.54049499917,0.0,13131.451345817106,0,4,2,3,75.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030918136107577116,6911.290182009004,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8020,2,45.0,0.0,2,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,2342.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,108028,2,1,2,0,1,,554.0,,32,1.0,2.0,5.0,2.0,1.5,2,2,423.64942062354,0.0,34582.0290323924,0,1,1,2,112.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06772303608346082,23054.68602159493,6,3,6,6_1,6_0,6_0_1 +8021,2,77.0,0.0,2,111,1570.0,0.0,0.0,77,75,0.0,0.0,2677.164853094136,1570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108029,2,1,2,0,1,,371.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,2204.52188491195,1570.0,34775.0,5,5,0,1,95.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04514737598849748,17387.5,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +8023,2,47.0,0.0,5,111,1200.0,0.0,0.0,0,31,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,33,2,2,2,2,2,1,2,2,2,10.0,2,,3,108031,2,2,0,0,1,,0.0,453.0,32,2.0,0.0,3.0,4.0,2.3,3,2,783.218867792398,1200.0,46620.351604695075,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.02573983161206252,20269.71808899786,5,3,5,5_0,5_4,5_0_0 +8024,0,64.0,0.0,1,111,390.0,726.0,0.0,0,72,0.0,0.0,665.0282119151038,1116.0,0.0,1378.3139388042869,42,0,0,0,0,0,0,0,0,0,,2,,1,108032,1,2,0,0,1,,280.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,408.96129188798,390.0,18769.419512128035,0,5,5,0,78.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05945841848113023,18769.419512128035,5,3,5,5_0,5_2,5_1_0 +8025,2,39.0,0.0,9,111,538.0,949.0,0.0,47,31,0.0,0.0,917.3978923341689,1487.0,0.0,1801.6803414948597,10,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,108033,2,2,1,0,1,,325.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1005.18025058192,538.0,87580.89866606017,1,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01697858805571095,41705.18984098103,9,5,9,9_1,9_3,9_0_0 +8026,2,31.0,0.0,1,211,1300.0,0.0,0.0,52,43,0.0,1356.1111316584693,2216.7607063836795,2394.0,96.99124577775646,0.0,20,1,2,2,1,1,2,2,2,2,25.0,1,,1,108034,2,2,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,931.500791730055,1300.0,44258.033262012934,1,1,1,2,200.0,4,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05409187493324046,21075.25393429187,5,3,5,5_1,5_2,5_1_0 +8027,2,82.0,0.0,2,211,371.0,2415.0,0.0,86,75,0.0,0.0,632.6294015910347,2786.0,0.0,4584.88727577459,71,0,0,0,0,0,0,0,0,0,,1,,2,108035,2,2,1,0,2,,250.0,,41,0.0,0.0,9.0,2.0,1.5,2,2,1337.19349493388,371.0,24206.18173426484,5,5,0,1,190.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11509456677573825,16137.454489509893,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +8028,2,31.0,0.0,2,111,514.0,2395.0,0.0,46,37,0.0,0.0,876.4730792932395,2909.0,0.0,4546.917194815795,31,1,2,1,2,1,1,2,2,2,6.0,1,,2,108036,1,3,3,0,2,,696.0,950.0,43,2.0,0.0,3.0,4.0,2.1,2,2,877.505582018582,514.0,59082.094877635776,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,0,0.04923657507447553,28134.330894112274,8,4,8,8_1,8_4,8_0_1 +8030,2,65.0,0.0,6,111,1700.0,0.0,0.0,75,47,0.0,0.0,2898.840923732504,1840.0,193.98249155551292,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,108038,2,2,2,0,2,,45.0,,41,0.0,1.0,7.0,3.0,2.0,3,3,2922.64970802906,1700.0,61993.57575778901,5,5,0,1,142.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029680494753019926,30996.787878894505,8,4,8,8_1,8_3,8_0_0 +8031,2,60.0,0.0,7,111,1950.0,0.0,0.0,37,47,0.0,0.0,3325.141059575519,2050.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,3,75.0,1,,5,108039,2,1,3,0,1,,460.0,,43,2.0,1.0,8.0,3.0,2.0,3,3,536.776269480728,1950.0,76269.45830940342,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026878386780770556,38134.72915470171,9,5,9,9_1,9_4,9_0_0 +8032,2,63.0,0.0,7,111,1300.0,0.0,0.0,74,75,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,5,108040,1,2,0,0,1,,260.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,590.467434791493,1300.0,43445.24474174629,5,5,0,1,99.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02992272244586615,28963.496494497525,8,4,8,8_0,8_2,8_0_0 +8033,2,31.0,0.0,2,111,298.0,1020.0,0.0,53,53,0.0,264.8654554020448,508.1497619248742,1518.0,0.0,1936.4741288985847,43,1,2,2,1,1,2,2,2,2,30.0,1,,2,108041,2,2,1,0,1,,636.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,635.517696957542,298.0,58478.83239748595,1,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.02595811061482924,38985.88826499064,9,5,9,9_1,9_4,9_0_1 +8034,1,27.0,100.0,1,111,300.0,2000.0,0.0,56,46,0.0,0.0,511.56016301161833,2300.0,0.0,3797.008095879578,31,0,0,0,0,0,0,0,0,2,35.0,1,,1,108042,2,1,3,0,1,,360.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,233.950743258434,300.0,24040.85420105376,1,1,1,2,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09567047746161973,13356.030111696533,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +8035,2,58.0,0.0,2,111,400.0,1220.0,0.0,0,34,0.0,0.0,682.0802173488245,1620.0,0.0,2316.1749384865425,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,108043,2,1,3,0,1,,220.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,381.536054796329,400.0,129942.48661995964,0,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012467054018582726,129942.48661995964,10,5,10,10_1,10_3,10_0_1 +8036,2,55.0,0.0,2,111,665.0,0.0,0.0,48,38,748.8248242359871,0.0,1133.9583613424206,1375.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,7.0,2,,2,108044,2,1,0,1,1,864.0,212.0,819.0,43,2.0,3.0,4.0,2.0,1.5,2,2,1909.48279387383,665.0,48425.937196699364,4,1,2,3,93.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02839387484469207,32283.95813113291,8,4,8,8_0,8_3,8_0_1 +8037,1,28.0,221.0,1,111,1459.0,1789.0,0.0,81,65,0.0,0.0,2487.887592779837,3248.0,0.0,3396.4237417642826,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,108045,1,2,5,0,1,,930.0,424.0,43,2.0,0.0,3.0,3.0,1.8,2,2,211.905705659539,1459.0,18384.192815669383,4,1,2,3,66.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17667351689390653,10213.440453149657,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +8038,2,59.0,0.0,2,111,279.0,100.0,0.0,0,56,0.0,0.0,475.7509516008051,379.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,2,5.0,2,,2,108046,2,1,0,1,1,925.0,0.0,306.0,12,1.0,2.0,4.0,1.0,1.0,1,1,389.075962139148,279.0,11875.290149271812,0,1,2,3,63.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031915009674373315,11875.290149271812,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +8039,2,39.0,0.0,9,112,240.0,1200.0,0.0,52,67,0.0,0.0,409.2481304092947,1440.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,2,25.0,2,2007.0,6,108047,2,2,0,0,1,,500.0,545.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1347.88566017174,240.0,38918.190199346805,1,1,2,3,55.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03700069280262083,18532.47152349848,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +8040,2,51.0,0.0,1,111,245.0,522.0,0.0,0,65,0.0,0.0,417.774133126155,767.0,0.0,991.0191130245698,71,2,2,2,2,2,2,2,1,0,,2,,1,108048,1,1,0,0,2,,0.0,656.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1565.7628498472,245.0,22823.630581514648,0,4,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.03360552114005955,22823.630581514648,6,3,6,6_0,6_3,6_1_0 +8041,2,63.0,0.0,8,111,0.0,0.0,1500.0,22,77,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,50,1,2,2,1,1,2,2,2,0,,1,2003.0,6,108049,2,2,1,0,1,,540.0,476.0,42,1.0,2.0,3.0,2.0,1.5,2,2,297.585151853616,0.0,26614.797557043054,1,5,2,3,83.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05635962463306643,17743.198371362036,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +8042,1,24.0,322.0,7,111,600.0,,,0,56,0.0,0.0,,663.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,0,,2,,5,108050,2,1,0,0,2,,210.0,407.0,32,1.0,0.0,2.0,2.0,1.3,1,1,90.82595486185217,600.0,7245.582196319569,0,4,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09150403404943418,5573.524766399669,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8043,2,60.0,0.0,6,120,650.0,,,75,77,0.0,0.0,,870.0,304.8296295872346,,60,0,0,0,0,0,0,0,0,0,,1,,4,108051,2,1,0,0,2,,800.0,,41,3.0,0.0,5.0,5.0,3.0,5,5,113.45638796147904,650.0,75988.83165338176,6,5,0,1,119.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011449050881166984,25329.61055112725,7,4,7,7_1,7_2,7_0_0 +8044,2,74.0,0.0,5,111,300.0,,,0,78,0.0,0.0,,576.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,108052,2,1,0,0,2,,331.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,95.10105104532023,300.0,10162.239165278224,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05668042157165961,10162.239165278224,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +8045,1,32.0,352.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,2173.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108053,1,3,0,0,1,,277.0,415.0,31,0.0,0.0,4.0,2.0,1.3,1,1,1713.21848690343,0.0,11811.206323704582,0,7,2,3,83.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.18397782076153243,9085.543325926601,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8046,2,54.0,0.0,6,111,450.0,0.0,0.0,56,46,0.0,0.0,767.3402445174275,576.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,4,108054,2,2,0,1,1,,0.0,,43,2.0,1.0,4.0,4.0,2.5,4,3,188.197282018357,450.0,40802.05961949007,1,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01411693442369414,16320.82384779603,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +8047,0,24.0,0.0,7,111,600.0,,,0,55,0.0,66.2163638505112,,696.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,108055,2,2,0,0,2,,150.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,113.09820704828928,600.0,20324.324674025367,0,1,5,0,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03424468026184865,20324.324674025367,5,3,5,5_1,5_2,5_0_0 +8048,2,64.0,0.0,1,221,600.0,0.0,0.0,0,78,0.0,92.70290939071567,1023.1203260232367,730.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,108056,2,1,0,0,2,,400.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,2033.10840630792,600.0,13452.198254617613,0,5,0,1,67.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.054266223719191736,13452.198254617613,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +8049,0,52.0,0.0,7,111,720.0,,,0,52,0.0,0.0,,820.0,138.5589225396521,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,108057,2,2,0,0,1,,1000.0,,32,1.0,0.0,4.0,5.0,2.2,1,1,91.50816303236259,720.0,32922.63547468136,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024906876019406412,14964.834306673343,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8050,2,67.0,0.0,2,112,11002.0,0.0,0.0,54,75,2847.643697798824,0.0,18760.616378179417,13782.0,110.84713803172167,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,108058,2,2,3,0,1,,546.0,1075.0,42,1.0,3.0,6.0,2.0,1.5,2,2,984.046702820272,11002.0,53465.85637040022,1,5,2,3,120.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.25777198637802035,35643.90424693348,9,5,9,9_1,9_0,9_0_1 +8051,1,58.0,87.0,2,120,350.0,0.0,0.0,0,56,0.0,0.0,596.8201901802214,500.0,207.83838380947813,0.0,10,0,0,0,0,0,0,0,0,0,,7,,2,108059,1,3,0,0,2,,0.0,200.0,12,1.0,0.0,1.0,1.0,1.0,1,1,585.793876559235,350.0,9815.875763375341,0,1,2,3,30.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05093789001136127,9815.875763375341,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +8052,2,30.0,0.0,1,111,720.0,0.0,0.0,0,47,0.0,0.0,1227.744391227884,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,108060,2,1,0,0,1,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1032.36653985264,720.0,22133.653555988258,0,4,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0325296498464983,22133.653555988258,6,3,6,6_0,6_4,6_1_0 +8053,2,65.0,0.0,2,111,0.0,0.0,1200.0,0,43,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,33,0,0,0,0,0,0,0,0,2,10.0,2,,2,108061,2,1,0,0,1,,200.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1946.99119745426,0.0,25950.43495062031,0,1,1,2,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.046241999499561974,25950.43495062031,7,4,7,7_0,7_3,7_0_1 +8054,2,37.0,0.0,2,111,2000.0,0.0,0.0,46,43,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,108062,2,1,2,0,2,,160.0,817.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1399.48434029129,2000.0,31353.121362367412,1,1,2,3,100.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0637895020685425,20902.08090824494,5,3,5,5_1,5_2,5_0_1 +8055,1,40.0,240.0,2,111,480.0,0.0,0.0,0,43,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,2,1,2,1,1,2,2,2,4,45.0,2,,2,108063,1,2,0,1,2,,0.0,750.0,32,2.0,0.0,5.0,4.0,2.3,3,2,1619.88459450686,480.0,35286.14220985968,0,1,2,3,82.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.013603073896411324,15341.800960808558,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +8056,2,81.0,0.0,2,111,309.0,0.0,0.0,0,74,0.0,0.0,526.9069679019669,496.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,108064,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1011.05904260796,309.0,51034.560884575214,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009718904040769596,51034.560884575214,10,5,10,10_0,10_4,10_0_1 +8057,1,25.0,178.0,8,111,300.0,0.0,0.0,0,42,0.0,0.0,511.56016301161833,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,2000.0,6,108065,2,1,0,1,1,,0.0,386.0,12,1.0,0.0,1.0,1.0,1.0,1,1,981.613021049411,300.0,9386.710170811926,0,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03196007914816132,9386.710170811926,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +8058,2,49.0,0.0,7,111,800.0,0.0,0.0,56,62,1160.1511361402618,0.0,1364.160434697649,2040.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108066,2,1,1,0,1,,600.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,780.333034466405,800.0,78183.60523739705,1,1,0,1,90.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02609242684327149,39091.80261869852,9,5,9,9_1,9_2,9_0_0 +8059,1,37.0,420.0,9,111,400.0,720.0,0.0,85,56,0.0,0.0,682.0802173488245,1120.0,0.0,1366.922914516648,71,0,0,0,0,0,0,0,0,3,15.0,3,2012.0,6,108067,2,1,0,0,1,,0.0,700.0,42,1.0,0.0,2.0,3.0,1.8,2,2,1603.87828183704,400.0,9042.076859568968,6,1,2,3,31.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12386534834801105,5023.376033093871,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +8060,2,64.0,0.0,9,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,616.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2012.0,6,108068,2,1,0,0,1,,196.0,380.0,41,0.0,2.0,3.0,2.0,1.5,2,2,6809.2195596182,0.0,26920.19843779162,5,5,2,3,71.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022882446480603773,17946.798958527746,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +8061,2,48.0,0.0,5,111,441.0,155.0,0.0,55,90,0.0,0.0,751.9934396270789,596.0,0.0,294.2681274306673,71,2,2,2,2,1,2,2,2,3,30.0,2,,3,108069,1,3,0,1,1,512.0,0.0,495.0,43,2.0,0.0,3.0,4.0,2.3,3,2,292.473802121422,441.0,31918.043240192757,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01867282387942528,13877.410104431634,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +8062,1,60.0,250.0,1,120,120.0,0.0,0.0,0,67,0.0,0.0,204.62406520464734,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,108070,2,2,0,0,2,,120.0,300.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1751.53697893471,120.0,10244.982332155476,0,4,2,3,38.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.011713050946253101,10244.982332155476,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +8063,2,52.0,0.0,2,111,220.0,150.0,0.0,0,85,0.0,0.0,375.14411954185346,370.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,2,,2,108071,2,2,0,1,1,,140.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,941.633492721896,220.0,11593.548480808524,0,7,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03191430135583446,11593.548480808524,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +8064,2,38.0,0.0,7,111,750.0,,,38,33,0.0,0.0,,820.0,96.99124577775646,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,108072,2,1,0,0,2,,313.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,108.50897348205525,750.0,114822.71744223943,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007141443943028903,47842.79893426643,10,5,10,10_1,10_3,10_0_0 +8065,2,31.0,0.0,2,111,1356.0,1.0,0.0,0,67,0.0,0.0,2312.251936812515,1357.0,0.0,1.898504047939789,71,0,0,0,0,0,0,0,0,2,6.0,2,,2,108073,2,3,0,0,1,,0.0,270.0,12,1.0,3.0,1.0,1.0,1.0,1,1,1284.53163688599,1356.0,16312.366120074556,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08318842220749505,16312.366120074556,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +8066,2,38.0,0.0,2,111,500.0,0.0,0.0,0,65,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,2,108074,2,2,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,2043.67119355053,500.0,34218.48466297133,0,1,1,2,78.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014611985449521159,21386.55291435708,6,3,6,6_0,6_3,6_0_1 +8067,2,61.0,0.0,6,111,459.0,937.0,0.0,75,75,0.0,0.0,782.687049407776,1396.0,0.0,1778.8982929195822,44,0,0,0,0,0,0,0,0,0,,1,,4,108075,2,1,2,0,1,,663.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1993.47300985931,459.0,45884.030572968695,5,5,0,1,102.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030424528590180452,30589.353715312463,8,4,8,8_1,8_3,8_0_0 +8068,2,52.0,0.0,1,111,1350.0,0.0,0.0,11,54,0.0,927.0290939071567,2302.0207335522828,2180.0,180.1265993015477,0.0,31,1,2,2,1,1,2,2,2,2,25.0,1,,1,108076,2,1,3,0,1,,270.0,,42,1.0,0.0,3.0,3.0,2.0,3,3,1212.86479751519,1350.0,36075.405160716095,5,1,1,2,100.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06042898174776112,18037.702580358047,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +8069,1,63.0,253.0,9,111,162.0,,,0,86,0.0,0.0,,294.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,108077,1,1,0,0,2,,225.0,309.0,11,0.0,0.0,3.0,1.0,1.0,1,1,91.3201874764336,162.0,4851.981640828003,0,5,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06059379893898942,4851.981640828003,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8070,2,56.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1679.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,108078,2,2,1,0,1,,121.0,,32,2.0,1.0,2.0,2.0,1.5,2,2,268.458424107986,0.0,21693.31251450136,0,1,0,1,65.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0773971240619724,14462.208343000906,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8071,2,71.0,0.0,1,300,859.0,0.0,0.0,75,75,0.0,0.0,1464.7672667566005,924.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108079,2,1,1,0,2,,260.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,989.028114063423,859.0,40223.5976340769,5,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022971590169676905,26815.731756051264,7,4,7,7_1,7_0,7_1_0 +8072,1,72.0,150.0,2,111,270.0,1100.0,0.0,0,77,0.0,0.0,460.40414671045653,1370.0,0.0,2088.354452733768,60,0,0,0,0,0,0,0,0,0,,2,,2,108080,2,1,0,0,1,,220.0,417.0,11,0.0,3.0,2.0,1.0,1.0,1,1,686.192503354874,270.0,12372.932234946456,0,5,2,3,55.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11072557207826077,12372.932234946456,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8073,2,58.0,0.0,9,112,1700.0,600.0,0.0,55,43,0.0,0.0,2898.840923732504,2300.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,108081,2,1,1,0,1,,180.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,417.883849805788,1700.0,48682.98052990751,4,1,0,1,106.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04724443686407073,32455.320353271673,8,4,8,8_1,8_0,8_0_0 +8074,2,46.0,0.0,9,111,0.0,0.0,0.0,46,35,0.0,0.0,0.0,1293.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,108082,2,1,0,0,1,,0.0,1145.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1022.26264240966,0.0,54891.258504529134,4,1,2,3,81.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023555663237222246,26138.694525966253,7,4,7,7_0,7_4,7_0_0 +8075,2,59.0,0.0,7,400,480.0,,,21,31,0.0,0.0,,612.0,182.89777775234077,,10,0,0,0,0,0,0,0,0,1,2.0,1,,5,108083,2,1,0,0,2,,280.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,123.305972049678,480.0,113108.63254247268,1,1,0,1,150.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005410727600921104,75405.75502831512,10,5,10,10_1,10_0,10_0_0 +8078,2,56.0,0.0,2,111,700.0,650.0,0.0,56,63,0.0,0.0,1193.6403803604428,1350.0,0.0,1234.027631160863,50,1,2,2,2,1,2,2,2,2,40.0,2,,2,108086,2,1,0,1,1,,0.0,607.0,43,2.0,2.0,4.0,3.0,2.0,3,3,181.122094855178,700.0,44476.7619662035,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03035292904249241,22238.38098310175,6,3,6,6_0,6_4,6_0_1 +8079,2,57.0,0.0,2,112,500.0,1600.0,0.0,0,37,0.0,0.0,852.6002716860306,2100.0,0.0,3037.6064767036623,60,2,2,1,1,1,2,2,2,4,120.0,1,,2,108087,2,1,2,0,1,,750.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1163.64091603747,500.0,32461.95099697206,0,7,1,2,65.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06469112100489219,32461.95099697206,8,4,8,8_1,8_1,8_0_1 +8080,2,34.0,0.0,9,112,1600.0,0.0,0.0,37,38,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,108088,2,1,1,0,1,,370.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,2067.04144632252,1600.0,84657.5855800286,1,1,1,2,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01889966491528968,56438.39038668573,10,5,10,10_1,10_0,10_0_0 +8081,2,65.0,0.0,1,111,1300.0,0.0,0.0,0,78,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,108089,2,2,2,0,1,,343.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1350.34156984317,1300.0,16042.29436778885,0,5,0,1,70.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.0810357901554441,16042.29436778885,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +8082,2,37.0,0.0,1,111,0.0,0.0,0.0,84,55,0.0,0.0,0.0,655.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,10.0,2,,1,108090,2,2,0,1,1,264.0,0.0,728.0,42,1.0,0.0,1.0,2.0,1.5,2,2,1278.41417522427,0.0,19634.466050836458,3,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0333597052399648,13089.644033890972,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +8083,2,35.0,0.0,8,400,120.0,,,0,42,0.0,0.0,,120.0,0.0,,10,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,108091,2,1,0,0,1,,200.0,490.0,12,1.0,0.0,3.0,1.0,1.0,1,1,35.94943019102867,120.0,55711.14054142817,0,1,2,3,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0021539677492469402,55711.14054142817,10,5,10,10_0,10_0,10_0_0 +8084,2,77.0,0.0,1,111,600.0,1300.0,0.0,78,77,0.0,0.0,1023.1203260232367,1900.0,0.0,2468.055262321726,44,0,0,0,0,0,0,0,0,0,,1,,1,108092,2,1,1,0,1,,320.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,752.856476839732,600.0,27184.249922539395,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06989341274502647,18122.83328169293,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +8085,2,44.0,0.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,451.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,2,,4,108093,1,1,0,1,1,,0.0,450.0,32,1.0,0.0,3.0,2.0,1.5,2,1,649.544573131125,0.0,20680.093458154097,0,1,2,3,71.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021808412080563982,13786.728972102732,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +8087,2,82.0,0.0,1,111,250.0,1000.0,0.0,0,77,0.0,0.0,426.3001358430153,1250.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,108095,2,1,2,0,2,,100.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1416.04640626661,250.0,9580.275457317988,0,5,0,1,30.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13047641537751142,9580.275457317988,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +8088,2,55.0,0.0,1,111,400.0,1500.0,0.0,34,31,0.0,0.0,682.0802173488245,1900.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,1,15.0,1,,1,108096,2,2,2,0,1,,0.0,,43,2.0,1.0,9.0,3.0,2.0,3,2,1425.67189958998,400.0,182137.35975218227,1,1,1,2,230.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010431687395629085,91068.67987609113,10,5,10,10_1,10_2,10_1_0 +8089,2,53.0,0.0,7,111,1100.0,0.0,0.0,0,34,0.0,198.6490915515336,1875.7205977092674,1250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,8.0,1,,5,108097,2,1,2,0,1,,140.0,,22,1.0,2.0,8.0,2.0,1.5,2,2,988.869480250997,1100.0,60595.30405444978,0,1,0,1,180.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020628661238778073,40396.86936963318,9,5,9,9_1,9_2,9_0_0 +8090,2,48.0,0.0,2,211,386.0,867.0,0.0,78,37,0.0,158.91927324122688,658.2074097416156,1373.0,0.0,1646.0030095637971,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,108098,2,1,1,0,1,,304.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1400.43875342199,386.0,36083.64141560068,5,1,0,1,100.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038050483436141966,24055.760943733785,6,3,6,6_1,6_1,6_0_1 +8091,2,50.0,0.0,1,112,410.0,0.0,0.0,0,63,0.0,953.5156394473612,699.1322227825451,1195.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,108099,1,1,1,0,2,,150.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1432.65761234929,410.0,23468.7810215395,0,1,1,2,200.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05091870766117918,23468.7810215395,6,3,6,6_1,6_0,6_1_0 +8092,2,80.0,0.0,2,112,450.0,0.0,0.0,75,78,2224.3261328361928,0.0,767.3402445174275,2609.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108100,2,2,2,0,1,,363.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,778.202863614797,450.0,44116.82022001204,5,5,0,1,80.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05913844168706699,29411.213480008028,8,4,8,8_1,8_0,8_0_1 +8093,1,29.0,220.0,9,111,320.0,,,0,81,0.0,0.0,,498.0,246.63488212058073,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,108101,2,2,0,0,2,,380.0,389.0,32,1.0,0.0,3.0,2.0,1.3,1,1,124.60286116221201,320.0,3461.783462124391,0,4,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14385648480000324,2662.9103554803005,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8094,1,58.0,208.0,1,111,400.0,,,0,68,0.0,0.0,,670.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,1,30.0,2,,1,108102,2,1,0,0,2,,1189.0,357.0,22,2.0,3.0,3.0,2.0,1.5,2,2,91.68647569011421,400.0,4870.545928014164,0,1,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.13756158137146954,3247.0306186761095,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +8095,2,76.0,0.0,1,221,863.0,0.0,0.0,0,86,0.0,0.0,1471.5880689300889,903.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,108103,2,1,0,0,1,,135.0,425.0,11,0.0,8.0,3.0,1.0,1.0,1,1,3327.22575153497,863.0,18979.64618507394,0,5,2,3,60.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.047577283116591575,18979.64618507394,5,3,5,5_0,5_1,5_1_0 +8096,2,31.0,0.0,2,211,290.0,600.0,0.0,85,67,0.0,0.0,494.50815757789775,890.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,108104,2,2,0,1,2,600.0,128.0,359.0,42,1.0,0.0,3.0,3.0,1.8,2,2,457.01704207594,290.0,16861.33918951965,6,1,2,3,65.0,2,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05278347051776227,9367.41066084425,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +8097,2,57.0,0.0,2,111,0.0,0.0,800.0,78,78,0.0,635.6770929649075,504.25463233179505,1280.0,0.0,957.3857180517447,71,0,0,0,0,0,0,0,0,0,,1,,2,108105,2,1,2,0,1,,260.0,310.0,41,0.0,2.0,5.0,2.0,1.5,2,2,268.2893894054,0.0,33769.05429429862,5,7,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03790452610383312,22512.702862865746,6,3,6,6_1,6_2,6_0_1 +8098,2,71.0,0.0,5,120,470.0,1700.0,0.0,75,75,0.0,0.0,801.4442553848687,2170.0,0.0,3227.4568814976415,60,0,0,0,0,0,0,0,0,0,,1,,3,108106,1,1,2,0,1,,380.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,310.842811121598,470.0,57645.326870743775,5,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037643988121807685,38430.21791382918,9,5,9,9_1,9_0,9_0_0 +8099,2,54.0,0.0,7,111,1200.0,,,54,31,0.0,0.0,,1200.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,5,108107,2,1,0,0,2,,1200.0,,43,2.0,2.0,3.0,4.0,2.1,2,2,108.81004295602109,1200.0,85306.54853335522,4,1,1,2,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014066915384940171,40622.16596826439,9,5,9,9_0,9_2,9_0_0 +8100,1,54.0,445.0,5,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,621.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,108108,2,2,0,0,1,,795.0,407.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,3,2,281.374589345747,0.0,30067.11980483763,6,4,2,3,99.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020653790719924046,9395.974939011761,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8101,2,39.0,0.0,1,111,410.0,1050.0,0.0,46,62,0.0,0.0,699.1322227825451,1460.0,0.0,1993.4292503367785,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,108109,2,1,2,0,1,,340.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,241.055856090511,410.0,46261.897092045285,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031559449390825924,25701.05394002516,7,4,7,7_1,7_3,7_1_0 +8102,2,36.0,0.0,1,300,1600.0,0.0,0.0,68,62,0.0,0.0,2728.320869395298,1625.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,2,13.0,1,,1,108110,2,2,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,914.851475317033,1600.0,28531.97847084145,1,1,1,2,64.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.056953638937471,13586.656414686406,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +8103,2,44.0,0.0,2,111,600.0,,,0,43,0.0,0.0,,700.0,138.5589225396521,,33,0,0,0,0,0,0,0,0,2,45.0,1,,2,108111,2,2,0,0,2,,600.0,525.0,22,1.0,0.0,4.0,2.0,1.5,2,2,83.60818328165023,600.0,13924.562188545884,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05027088037107612,9283.04145903059,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8105,2,66.0,0.0,1,112,2000.0,0.0,0.0,56,74,0.0,0.0,3410.4010867441225,2100.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108113,2,1,1,0,1,,660.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1373.37309713023,2000.0,31735.307172178473,1,5,0,1,170.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06617235461457943,21156.87144811898,5,3,5,5_1,5_0,5_1_0 +8106,1,49.0,318.0,5,111,0.0,0.0,2000.0,0,52,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,41,0,0,0,0,0,0,0,0,0,,1,,3,108114,2,3,1,0,1,,250.0,998.0,22,2.0,0.0,4.0,4.0,2.3,3,3,866.738277298059,0.0,13608.44702832641,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14696754125117562,5916.716099272353,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +8107,1,21.0,350.0,1,111,0.0,0.0,1750.0,0,63,0.0,0.0,1103.0570082258016,1750.0,0.0,2094.281258238191,71,0,0,0,0,0,0,0,0,0,,1,,1,108115,1,1,3,0,1,,380.0,340.0,22,1.0,5.0,4.0,2.0,1.5,2,2,213.768699607978,0.0,19285.311852689483,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09074263425799615,12856.874568459656,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +8108,2,67.0,0.0,5,221,450.0,0.0,0.0,77,74,2373.0364148323533,198.6490915515336,767.3402445174275,2970.0,166.2707070475825,0.0,41,2,2,2,1,2,2,2,2,0,,1,,3,108116,2,1,3,0,1,,125.0,740.0,41,0.0,4.0,6.0,2.0,1.5,2,2,1246.41667937368,450.0,41270.59786092037,5,5,2,3,220.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.071964065313731,27513.731907280246,7,4,7,7_1,7_1,7_0_0 +8109,2,40.0,0.0,8,111,739.0,1145.0,0.0,90,46,0.0,0.0,1260.143201551953,1884.0,0.0,2173.7871348910585,31,0,0,0,0,0,0,0,0,2,90.0,1,1999.0,6,108117,2,1,2,0,1,,768.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,646.601699677634,739.0,41766.60832715054,1,1,1,2,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04510780442699482,19888.861108166922,5,3,5,5_1,5_4,5_0_0 +8110,2,32.0,0.0,2,111,485.0,76.0,0.0,56,52,0.0,0.0,827.0222635354497,612.0,0.0,144.28630764342395,42,2,1,2,1,1,2,2,2,2,3.0,2,,2,108118,1,3,0,1,1,750.0,0.0,323.0,43,2.0,0.0,3.0,3.0,1.8,2,2,71.8880835391736,485.0,28712.85246743392,1,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02131449672909125,15951.584704129955,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +8111,2,35.0,0.0,9,112,600.0,,,65,43,0.0,0.0,,696.0,133.01656563806603,,20,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,108119,2,2,0,0,2,,120.0,900.0,43,2.0,0.0,4.0,4.0,2.1,2,2,138.0352583885894,600.0,18619.428732601016,1,1,2,3,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037380309030714994,8866.394634571912,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +8112,2,36.0,0.0,6,111,800.0,0.0,0.0,46,37,0.0,0.0,1364.160434697649,800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,4,108120,2,1,0,0,1,,0.0,960.0,43,2.0,1.0,4.0,3.0,1.8,2,2,2256.07555477291,800.0,60192.78557329061,4,1,2,3,86.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013290629306828169,33440.43642960589,8,4,8,8_0,8_3,8_0_0 +8113,2,40.0,0.0,9,112,1500.0,0.0,0.0,67,67,0.0,728.3800023556231,2557.8008150580918,2050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,108121,2,1,1,0,1,,460.0,,43,2.0,0.0,6.0,7.0,3.8,6,5,1508.07958344468,1500.0,69062.07075557219,1,1,1,2,120.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029683442410168365,18174.229146203208,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +8114,2,63.0,0.0,1,112,628.0,0.0,0.0,43,74,0.0,512.5146562029566,1070.8659412376544,1015.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,108122,2,2,2,0,1,,400.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,223.668163995629,628.0,50480.81453100911,1,5,0,1,120.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02010664862343912,33653.876354006075,9,5,9,9_1,9_0,9_1_0 +8115,2,72.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,667.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108123,1,2,0,1,2,,362.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2097.03138444452,0.0,19036.44724694587,0,5,0,1,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.035038050501099184,19036.44724694587,5,3,5,5_0,5_3,5_0_1 +8116,2,51.0,0.0,9,111,900.0,,,0,46,0.0,0.0,,1038.0,191.2113131047199,,42,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,108124,2,3,0,0,2,,280.0,,32,1.0,1.0,5.0,2.0,1.5,2,1,35.10308114355226,900.0,50756.513388647785,0,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020450577289498364,33837.67559243186,9,5,9,9_1,9_2,9_0_0 +8117,1,39.0,289.0,1,111,740.0,1037.0,0.0,67,64,0.0,0.0,1261.8484020953254,1777.0,0.0,1968.7486977135611,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,108125,2,1,2,0,1,,408.0,732.0,43,3.0,0.0,6.0,4.0,2.3,3,3,380.462259182572,740.0,30378.83896364564,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05849466472785665,13208.190853758975,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +8118,2,58.0,0.0,2,211,600.0,,,0,68,0.0,0.0,,840.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,108126,2,2,0,0,2,,400.0,,22,2.0,2.0,5.0,3.0,2.0,3,3,86.60710037601925,600.0,14733.548395118452,0,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057012742448269316,7366.774197559226,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8119,2,66.0,0.0,6,211,1200.0,0.0,0.0,75,78,0.0,662.163638505112,2046.2406520464733,1805.0,145.4868686666347,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,108127,2,1,2,0,1,,450.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,694.156240596797,1200.0,24585.957716545774,5,5,0,1,124.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07341589133154969,16390.638477697183,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +8120,2,76.0,0.0,7,111,210.0,,,0,78,0.0,0.0,,273.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,5,108128,1,3,0,0,2,,181.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,128.78282894707004,210.0,10604.30576855487,0,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02574425954497951,10604.30576855487,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +8121,0,83.0,0.0,1,112,550.0,0.0,0.0,71,71,0.0,874.0560028267478,937.8602988546337,1338.0,177.35542085075468,0.0,71,2,2,2,2,2,2,2,1,0,,1,,1,108129,2,1,4,0,2,,330.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1216.76149796814,550.0,14591.575073130112,5,5,0,1,80.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.09169674920590865,9727.716715420074,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8122,2,45.0,0.0,7,111,842.0,2800.0,0.0,0,33,0.0,0.0,1435.7788575192756,3642.0,0.0,5315.811334231409,33,0,0,0,0,0,0,0,0,2,60.0,1,,5,108130,2,1,2,0,2,,513.0,,32,1.0,0.0,7.0,4.0,2.1,2,1,828.334048349359,842.0,103918.56528344454,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03504667322981425,49485.03108735454,10,5,10,10_1,10_4,10_0_0 +8123,1,32.0,320.0,9,120,919.0,0.0,0.0,0,52,0.0,927.0290939071567,1567.0792993589241,1619.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,108131,2,1,1,0,1,,320.0,,32,1.0,0.0,5.0,4.0,1.9,1,1,1378.62499945384,919.0,22005.641837612882,0,1,1,2,137.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07357204174943643,11581.91675663836,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +8124,2,44.0,0.0,1,112,2233.0,0.0,0.0,21,37,0.0,662.163638505112,3807.7128133498127,2733.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,1,108132,2,1,1,0,1,,630.0,,43,2.0,1.0,6.0,4.0,2.3,3,3,527.372225587722,2233.0,74810.02801193575,1,1,1,2,200.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03653253544516728,32526.09913562424,8,4,8,8_1,8_0,8_1_0 +8125,2,30.0,0.0,6,112,0.0,0.0,0.0,43,43,0.0,0.0,0.0,1203.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,4,108133,2,1,2,0,1,,603.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,821.348070755958,0.0,67691.56048324096,1,1,1,2,114.0,10,3,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017771787079688288,32234.076420590933,8,4,8,8_1,8_1,8_0_0 +8126,2,46.0,0.0,1,111,473.0,1700.0,0.0,37,33,0.0,0.0,806.5598570149849,2173.0,0.0,3227.4568814976415,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,108134,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,710.87508654726,473.0,140303.97782114628,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015487800372773825,93535.98521409753,10,5,10,10_1,10_4,10_1_0 +8127,2,77.0,0.0,6,111,311.0,0.0,0.0,0,75,0.0,0.0,530.317368988711,311.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,4,108135,1,1,0,1,1,768.0,0.0,430.0,11,0.0,1.0,3.0,1.0,1.0,1,1,866.896370394739,311.0,20838.556116170123,0,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014924258584243892,20838.556116170123,5,3,5,5_0,5_4,5_0_0 +8128,2,66.0,0.0,2,112,830.0,0.0,0.0,0,75,0.0,821.0829117463388,1415.3164509988108,1550.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108136,2,1,3,0,1,,113.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1005.74098448622,830.0,33285.97753658153,0,5,0,1,130.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04656615532160769,33285.97753658153,8,4,8,8_1,8_1,8_0_1 +8129,2,27.0,0.0,5,111,580.0,400.0,0.0,0,47,0.0,0.0,989.0163151557955,980.0,0.0,759.4016191759156,43,2,1,2,2,1,2,2,2,2,20.0,2,,3,108137,2,2,0,1,1,,380.0,680.0,12,1.0,0.0,2.0,1.0,1.0,1,1,206.651689653947,580.0,19759.20261169098,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.049597143126623985,19759.20261169098,5,3,5,5_0,5_4,5_0_0 +8130,2,53.0,0.0,2,221,200.0,1400.0,0.0,0,55,0.0,0.0,341.04010867441224,1600.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,1,6.0,2,,2,108138,2,1,0,1,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,2672.41374744231,200.0,17206.932016293387,0,1,0,1,89.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09298578029395052,17206.932016293387,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +8131,1,48.0,301.0,5,111,0.0,0.0,528.0,0,85,0.0,0.0,332.8080573389847,528.0,0.0,631.8745739141515,60,2,1,2,2,1,2,2,2,0,,2,,3,108139,2,2,0,1,1,700.0,0.0,399.0,21,0.0,2.0,4.0,3.0,2.0,3,3,544.182499434084,0.0,4875.874078051573,0,7,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.1082882764296062,2437.9370390257864,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +8132,2,87.0,0.0,2,111,210.0,220.0,0.0,0,77,0.0,0.0,358.0921141081328,430.0,0.0,417.6708905467536,70,0,0,0,0,0,0,0,0,0,,2,,2,108140,2,1,0,1,1,321.0,0.0,320.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1105.25131260495,210.0,37547.62886003171,0,5,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011452121293808825,37547.62886003171,9,5,9,9_0,9_4,9_0_1 +8133,2,40.0,0.0,2,111,0.0,,,46,43,0.0,0.0,,615.0,0.0,,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,108141,2,2,0,0,2,,249.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,159.31230217206476,0.0,79955.19393606059,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007691807995510706,44419.552186700326,10,5,10,10_1,10_2,10_0_1 +8134,2,52.0,0.0,9,112,400.0,0.0,0.0,0,43,0.0,397.2981831030672,682.0802173488245,800.0,138.5589225396521,0.0,33,0,0,0,0,0,0,0,0,2,3.0,2,2012.0,6,108142,2,1,0,0,1,,180.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,664.228794050709,400.0,21797.115244346805,0,1,0,1,96.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0367021044313414,21797.115244346805,6,3,6,6_0,6_1,6_0_0 +8135,2,55.0,0.0,6,111,576.0,,,0,68,0.0,0.0,,786.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,3,30.0,2,,4,108143,2,3,0,0,2,,480.0,352.0,22,2.0,1.0,3.0,2.0,1.5,2,2,163.4570580721283,576.0,25477.06885234146,0,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030851272748660917,16984.712568227642,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +8136,2,31.0,0.0,5,111,552.0,0.0,0.0,0,63,791.0121382774512,0.0,941.2706999413778,1302.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108144,2,2,0,1,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,318.107732611488,552.0,15059.196254111324,0,1,1,2,80.0,8,7,5,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08645879753672377,15059.196254111324,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +8137,2,69.0,0.0,5,111,2500.0,0.0,0.0,77,74,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,108145,2,1,2,0,1,,300.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1309.41623049329,2500.0,110572.2047630345,5,5,0,1,80.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022609660405684316,73714.80317535634,10,5,10,10_1,10_2,10_0_0 +8138,2,35.0,0.0,6,111,120.0,,,0,63,0.0,0.0,,820.0,969.9124577775647,,71,0,0,0,0,0,0,0,0,0,,1,,4,108146,2,2,0,0,2,,320.0,,32,3.0,2.0,6.0,6.0,2.8999999999999995,3,3,76.4996791628951,120.0,43182.00951680119,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018989389543832037,14890.348109241793,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8139,1,28.0,247.0,2,111,324.0,70.0,0.0,0,47,0.0,0.0,552.4849760525478,394.0,0.0,132.89528335578524,20,1,2,2,1,2,1,2,2,0,,2,,2,108147,1,2,0,1,2,488.0,0.0,585.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1401.68401963037,324.0,11103.90319142332,0,4,3,4,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03548301828714848,11103.90319142332,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +8140,2,66.0,0.0,2,111,208.0,102.0,0.0,0,77,0.0,0.0,354.6817130213887,310.0,0.0,193.6474128898585,60,0,0,0,0,0,0,0,0,0,,2,,2,108148,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,443.511648812778,208.0,15158.940606903327,0,5,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020449977873706237,15158.940606903327,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +8141,1,42.0,200.0,5,111,700.0,,,0,52,0.0,0.0,,976.0,382.4226262094398,,43,0,0,0,0,0,0,0,0,2,5.0,1,,3,108149,2,1,0,0,2,,300.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,94.72656535101584,700.0,25755.923230712535,0,1,1,2,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03789419588097596,16097.452019195334,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +8142,2,72.0,0.0,2,111,214.0,650.0,0.0,0,78,0.0,0.0,364.9129162816211,864.0,0.0,1234.027631160863,70,0,0,0,0,0,0,0,0,0,,1,,2,108150,2,1,2,0,1,,115.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,219.483300691913,214.0,18066.751628701913,0,5,0,1,90.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04782265333339715,18066.751628701913,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +8143,1,44.0,377.0,2,111,350.0,0.0,0.0,67,68,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,75.0,2,,2,108151,2,3,0,1,1,444.0,0.0,359.0,43,3.0,0.0,4.0,4.0,2.5,4,3,362.175535084963,350.0,19338.728678022606,4,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.018098397564145757,7735.491471209042,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8144,2,44.0,0.0,5,111,0.0,,,0,22,0.0,0.0,,248.0,0.0,,71,0,0,0,0,0,0,0,0,1,3.0,2,,3,108152,2,1,0,0,1,,256.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,155.92939188026895,0.0,14625.423799582462,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0169567735881322,14625.423799582462,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +8145,2,61.0,0.0,7,111,10.0,27.0,0.0,74,37,0.0,0.0,17.052005433720613,37.0,0.0,51.2596092943743,10,0,0,0,0,0,0,0,0,3,50.0,2,,5,108153,2,1,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,622.603240839078,10.0,162742.98817238395,5,1,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00022735234504117687,108495.32544825597,10,5,10,10_0,10_4,10_0_0 +8146,2,78.0,0.0,2,211,510.0,,,0,78,0.0,0.0,,648.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,108154,2,1,0,0,2,,400.0,,21,2.0,7.0,7.0,3.0,2.0,3,3,105.82669696866449,510.0,7519.682096810329,0,5,0,1,108.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08617385571058465,3759.8410484051647,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8147,2,68.0,0.0,2,111,720.0,,,0,86,0.0,0.0,,950.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,108155,1,2,0,0,2,,360.0,,21,1.0,3.0,5.0,3.0,2.0,3,3,106.95171565636808,720.0,9445.12,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10058104079143515,4722.56,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8148,2,71.0,0.0,1,111,700.0,300.0,0.0,0,74,0.0,0.0,1193.6403803604428,1000.0,0.0,569.5512143819367,20,0,0,0,0,0,0,0,0,0,,2,,1,108156,2,2,0,0,2,,0.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,961.049310682147,700.0,81568.5833480954,0,5,0,1,103.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012259622013201847,54379.055565396935,10,5,10,10_0,10_4,10_1_0 +8149,2,41.0,0.0,9,112,1030.0,0.0,0.0,55,62,0.0,264.8654554020448,1756.356559673223,1338.0,149.64363634282427,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,108157,2,2,1,0,1,,400.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,1754.00494894948,1030.0,22150.789261229125,1,1,1,2,89.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060404168186545044,8860.31570449165,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8150,2,29.0,0.0,1,112,1122.0,0.0,0.0,54,48,0.0,182.7571642274109,1913.2350096634527,1290.0,41.567676761895626,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,108158,2,1,1,0,1,,176.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2138.61607480073,1122.0,79975.92822727379,1,1,1,2,120.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016129853427072544,44431.07123737433,10,5,10,10_1,10_0,10_1_0 +8151,2,42.0,0.0,1,111,0.0,0.0,0.0,52,65,0.0,0.0,0.0,3678.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,108159,2,2,5,0,1,,0.0,780.0,43,2.0,0.0,6.0,4.0,2.3,3,3,302.516201782034,0.0,57060.935756471976,1,1,2,3,120.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06445740770353268,24809.102502813905,7,4,7,7_1,7_3,7_1_0 +8152,1,42.0,324.0,2,111,600.0,1200.0,0.0,0,56,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,50,2,2,2,2,1,2,2,2,0,,2,,2,108160,1,3,0,0,1,,0.0,290.0,32,2.0,0.0,3.0,4.0,2.3,3,3,501.763998422132,600.0,17773.64537003332,0,1,2,3,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.1012735408254984,7727.671900014487,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8153,2,72.0,0.0,2,211,215.0,204.0,0.0,77,78,0.0,0.0,366.61811682499314,419.0,0.0,387.294825779717,70,0,0,0,0,0,0,0,0,0,,8,,2,108161,2,2,0,1,1,1122.0,113.0,258.0,41,0.0,2.0,4.0,2.0,1.5,2,2,346.140477593262,215.0,18854.36759158926,6,5,2,3,79.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022222967594357903,12569.57839439284,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +8154,2,74.0,0.0,1,112,1200.0,2300.0,0.0,0,71,0.0,0.0,2046.2406520464733,3500.0,0.0,4366.559310261515,70,0,0,0,0,0,0,0,0,0,,5,,1,108162,2,2,4,0,1,,350.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,215.774025970058,1200.0,24290.72075352011,0,5,0,1,130.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14408794352027593,24290.72075352011,7,4,7,7_1,7_0,7_1_0 +8155,2,44.0,0.0,8,112,500.0,1000.0,0.0,0,38,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,108163,2,1,2,0,1,,503.0,,32,1.0,0.0,6.0,3.0,2.0,3,2,2246.83839688629,500.0,41123.57602397896,0,1,1,2,110.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03647542711570991,20561.78801198948,5,3,5,5_1,5_0,5_0_0 +8156,2,67.0,0.0,2,111,532.0,1372.0,0.0,74,43,0.0,0.0,907.1666890739366,1904.0,0.0,2604.7475537733903,20,0,0,0,0,0,0,0,0,2,12.0,1,,2,108164,2,2,2,0,1,,397.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,341.076833765126,532.0,201018.36538237828,5,5,0,1,130.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00947177137958614,134012.2435882522,10,5,10,10_1,10_3,10_0_1 +8157,2,77.0,0.0,1,300,530.0,0.0,0.0,77,75,3164.0485531098047,198.6490915515336,903.7562879871924,3780.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,108165,2,3,1,0,1,,480.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,1108.46731816054,530.0,64800.25288363242,5,5,0,1,135.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05833310568691888,32400.12644181621,8,4,8,8_1,8_0,8_1_0 +8158,2,84.0,0.0,2,111,449.0,0.0,0.0,74,75,0.0,0.0,765.6350439740555,449.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,108166,2,1,0,1,1,,0.0,,41,0.0,10.0,3.0,2.0,1.5,2,2,334.709594717799,449.0,65839.27372225959,5,5,0,1,67.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006819637803024514,43892.84914817306,10,5,10,10_0,10_3,10_0_1 +8159,2,80.0,0.0,1,111,300.0,1200.0,0.0,0,78,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,108167,2,1,4,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1158.3376676693,300.0,19791.208636021962,0,5,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07579122769035193,19791.208636021962,5,3,5,5_1,5_3,5_1_0 +8160,2,49.0,0.0,1,300,475.0,0.0,0.0,0,43,0.0,456.89291056852727,809.9702581017291,868.0,66.50828281903301,0.0,43,0,0,0,0,0,0,0,0,2,40.0,2,,1,108168,1,2,0,0,2,,191.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,2051.49994699239,475.0,17926.0,0,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04842128751534085,17926.0,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +8161,2,26.0,0.0,2,112,0.0,0.0,0.0,67,52,0.0,0.0,0.0,399.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,40.0,2,,2,108169,1,1,0,1,1,364.0,152.0,279.0,43,2.0,0.0,2.0,2.0,1.5,2,2,386.917131185996,0.0,36377.03438213932,4,1,2,3,40.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010968458720645577,24251.356254759547,7,4,7,7_0,7_2,7_0_1 +8163,2,66.0,0.0,2,111,241.0,571.0,0.0,75,77,0.0,0.0,410.95333095266676,812.0,0.0,1084.0458113736195,50,0,0,0,0,0,0,0,0,0,,1,,2,108171,2,1,1,0,1,,225.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1558.30080958344,241.0,47963.914642838026,5,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.016929393817133896,31975.94309522535,8,4,8,8_1,8_2,8_0_1 +8164,2,68.0,0.0,7,211,335.0,,,77,77,0.0,92.70290939071567,,471.0,91.44888887617039,,60,0,0,0,0,0,0,0,0,0,,1,,5,108172,1,1,0,0,2,,249.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,115.8699966831568,335.0,28994.049349092435,6,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016244712641862946,19329.36623272829,5,3,5,5_1,5_2,5_0_0 +8165,2,60.0,0.0,2,111,600.0,0.0,0.0,54,37,4746.072829664707,0.0,1023.1203260232367,5200.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108173,2,1,2,0,2,,1000.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,567.706860704782,600.0,77862.23149004678,4,1,0,1,135.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06678462587685689,38931.11574502339,9,5,9,9_1,9_4,9_0_1 +8166,2,35.0,0.0,8,111,0.0,0.0,0.0,81,38,0.0,0.0,0.0,3241.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,108174,2,1,2,0,1,,119.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,402.866738195192,0.0,42057.83889916192,4,1,0,1,116.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07706054530691978,23365.466055089957,6,3,6,6_1,6_3,6_0_0 +8167,2,43.0,0.0,1,111,264.0,0.0,0.0,0,46,0.0,0.0,450.1729434502241,264.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,40.0,2,,1,108175,2,1,0,1,1,,0.0,930.0,32,1.0,0.0,2.0,2.0,1.5,2,1,741.957103653813,264.0,37070.27240242842,0,1,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007121609389163964,24713.51493495228,7,4,7,7_0,7_4,7_1_0 +8168,0,71.0,0.0,1,112,200.0,1200.0,0.0,0,77,0.0,0.0,341.04010867441224,1430.0,41.567676761895626,2278.2048575277468,60,0,0,0,0,0,0,0,0,0,,1,,1,108176,2,1,4,0,1,,100.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,161.788577502767,200.0,12810.404023971942,0,5,0,1,150.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11162801714325792,12810.404023971942,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8169,2,49.0,0.0,7,111,700.0,0.0,0.0,55,47,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,5,108177,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,625.261655757816,700.0,54230.040546196884,1,1,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012907974859500461,25823.828831522325,7,4,7,7_0,7_4,7_0_0 +8170,2,53.0,0.0,6,112,325.0,720.0,0.0,68,62,0.0,0.0,554.1901765959199,1115.0,96.99124577775646,1366.922914516648,50,0,0,0,0,0,0,0,0,2,2.0,2,,4,108178,2,1,0,1,1,480.0,480.0,306.0,43,2.0,2.0,5.0,2.0,1.5,2,2,2437.98287687368,325.0,31173.47755691549,1,1,2,3,86.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.035767584734948815,20782.318371276993,5,3,5,5_0,5_0,5_0_0 +8171,2,53.0,0.0,6,111,600.0,,,85,85,0.0,0.0,,840.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,4,108179,1,2,0,0,2,,450.0,,41,0.0,0.0,3.0,4.0,2.1,2,2,95.41004356230935,600.0,14407.941860465116,6,7,0,1,66.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05830117917847311,6860.924695459579,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +8172,2,33.0,0.0,2,111,360.0,,,53,55,0.0,0.0,,406.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,108180,1,2,0,0,2,,0.0,430.0,43,2.0,0.0,2.0,2.0,1.5,2,2,121.59676621852934,360.0,17677.606808572273,4,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02296690974047015,11785.071205714848,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +8173,2,67.0,0.0,2,112,1500.0,0.0,0.0,0,74,0.0,198.6490915515336,2557.8008150580918,1650.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,108181,2,1,1,0,1,,600.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1474.52054320348,1500.0,45338.13551437087,0,5,0,1,130.0,9,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.036393203674575415,45338.13551437087,10,5,10,10_1,10_1,10_0_1 +8175,2,51.0,0.0,8,111,348.0,,,85,45,0.0,0.0,,726.0,523.7527271998849,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,108183,1,1,0,0,2,,360.0,,42,1.0,0.0,3.0,5.0,2.5999999999999996,4,3,134.56582819492712,348.0,38160.1502158415,6,1,1,2,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01902508234096558,14676.980852246734,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8176,2,64.0,0.0,7,112,263.0,,,0,75,0.0,0.0,,329.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,5,108184,2,1,0,0,2,,180.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,111.66216820331185,263.0,28138.8878460103,0,5,0,1,73.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01169200438199435,28138.8878460103,8,4,8,8_1,8_2,8_0_0 +8177,2,38.0,0.0,7,211,450.0,,,0,53,0.0,0.0,,450.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,108185,2,3,0,0,2,,1200.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,50.727760929570884,450.0,31002.7604741955,0,1,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014514836521559042,31002.7604741955,8,4,8,8_1,8_2,8_0_0 +8178,1,41.0,74.0,1,111,850.0,1100.0,0.0,56,62,0.0,0.0,1449.420461866252,1950.0,0.0,2088.354452733768,60,0,0,0,0,0,0,0,0,2,7.0,1,,1,108186,2,1,1,0,1,,112.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,441.17002147242,850.0,32651.200601015746,1,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05972215306347227,11661.143071791339,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +8179,2,69.0,0.0,6,111,296.0,898.0,0.0,0,75,0.0,0.0,504.7393608381301,1194.0,0.0,1704.8566350499304,33,2,2,2,2,1,2,1,2,0,,2,,4,108187,1,3,0,0,1,,0.0,402.0,11,0.0,1.0,3.0,1.0,1.0,1,1,965.502377161745,296.0,24413.742032613776,0,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04890688196856352,24413.742032613776,7,4,7,7_0,7_4,7_0_0 +8180,2,73.0,0.0,2,112,2995.0,0.0,0.0,86,86,0.0,198.6490915515336,5107.075627399323,3145.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108188,2,1,2,0,1,,1468.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,763.751581591896,2995.0,54041.51744762558,5,5,0,1,121.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058195997235791566,36027.67829841705,9,5,9,9_1,9_1,9_0_1 +8181,2,26.0,0.0,9,112,1410.0,0.0,0.0,47,62,0.0,0.0,2404.3327661546064,1410.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,108189,2,1,1,0,1,,412.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1804.66694128634,1410.0,75306.09929030477,1,1,1,2,138.0,7,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01872358299378188,41836.7218279471,9,5,9,9_1,9_0,9_0_0 +8182,1,50.0,80.0,7,111,360.0,,,0,69,0.0,0.0,,490.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,2,35.0,8,,5,108190,2,2,0,0,2,,360.0,430.0,12,1.0,2.0,3.0,1.0,1.0,1,1,91.66243158126704,360.0,20914.83203241751,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023428349758702876,20914.83203241751,5,3,5,5_0,5_2,5_0_0 +8183,2,67.0,0.0,9,111,600.0,0.0,0.0,0,72,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2005.0,6,108191,1,1,0,0,1,,130.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,651.072948712836,600.0,30075.503018520572,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019949791018641267,30075.503018520572,8,4,8,8_0,8_3,8_0_0 +8184,0,87.0,0.0,9,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,510.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,108192,2,1,1,3,1,681.0,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1397.44646545959,0.0,24887.41373645096,0,5,5,0,80.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020492285996476865,24887.41373645096,7,4,7,7_1,7_0,7_0_0 +8185,1,73.0,26.0,5,111,130.0,555.0,0.0,86,78,0.0,0.0,221.67607063836795,895.0,290.9737373332694,1053.669746606583,71,2,2,2,1,1,2,2,2,0,,2,,3,108193,2,1,0,0,1,,0.0,395.0,41,0.0,6.0,4.0,2.0,1.5,2,2,555.623283394578,130.0,18711.44947648791,5,5,2,3,93.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.04783167659590577,12474.29965099194,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8186,1,39.0,197.0,2,221,0.0,0.0,0.0,56,62,0.0,0.0,0.0,4260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,108194,2,1,2,0,2,,355.0,650.0,43,2.0,0.0,5.0,4.0,2.1,2,2,619.624294587825,0.0,25286.022402168037,1,1,2,3,120.0,1,2,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1684725233666939,12040.963048651445,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +8187,2,44.0,0.0,5,111,0.0,0.0,1070.0,52,52,0.0,0.0,674.4405707437758,1070.0,0.0,1280.5033978942083,50,0,0,0,0,0,0,0,0,2,13.0,1,,3,108195,2,2,4,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1167.00693823969,0.0,32763.443283662556,1,1,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03265835006217292,15601.63965888693,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8188,2,37.0,0.0,9,111,1200.0,0.0,0.0,52,62,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,108196,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.6,3,2,1878.27386428996,1200.0,41117.532957332,1,1,1,2,136.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029184630343587245,15814.435752819998,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8189,1,22.0,270.0,2,111,0.0,0.0,0.0,67,55,0.0,0.0,0.0,901.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,15.0,2,,2,108197,1,1,0,1,1,,402.0,373.0,43,2.0,0.0,4.0,2.0,1.5,2,2,224.849099196356,0.0,16610.833022255298,1,1,2,3,68.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054241710743394664,11073.888681503531,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8190,2,52.0,0.0,7,300,1080.0,,,56,11,0.0,95.35156394473611,,1362.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,5,108198,2,1,0,0,2,,300.0,,43,2.0,4.0,4.0,3.0,1.8,2,2,71.40445973736117,1080.0,8766.81096428792,4,1,0,1,62.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15535865955684236,4870.450535715511,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +8191,1,33.0,413.0,8,111,600.0,,,0,85,0.0,0.0,,864.0,365.79555550468154,,60,0,0,0,0,0,0,0,0,0,,2,2002.0,6,108199,2,1,0,0,1,,840.0,568.0,31,0.0,0.0,4.0,3.0,1.6,1,1,136.40521630303604,600.0,9397.8368386965,0,6,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09193605026663122,5873.648024185311,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8192,2,43.0,0.0,8,112,1600.0,0.0,0.0,46,54,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,108200,2,2,1,0,1,,280.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,4342.1731298409,1600.0,44701.17031719694,4,1,1,2,120.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035793246320990964,24833.983509553855,7,4,7,7_1,7_1,7_0_0 +8193,2,48.0,0.0,9,112,275.0,804.0,0.0,0,53,0.0,0.0,468.93014942731685,1079.0,0.0,1526.3972545435904,42,0,0,0,0,0,0,0,0,1,15.0,8,2006.0,6,108201,2,1,0,0,1,,150.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1217.08827684567,275.0,27597.07884855859,0,1,1,2,67.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.039098341020841657,27597.07884855859,7,4,7,7_0,7_1,7_0_0 +8194,2,37.0,0.0,5,111,420.0,,,0,62,0.0,0.0,,552.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,,3,108202,2,1,0,0,2,,180.0,,22,2.0,0.0,4.0,3.0,2.0,3,3,106.94008005511871,420.0,17683.865824804558,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031214894156555314,8841.932912402279,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8195,2,48.0,0.0,5,111,0.0,0.0,348.0,0,52,0.0,0.0,219.35076506433083,348.0,0.0,416.46278735250894,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,108203,1,2,0,1,2,974.0,0.0,353.0,32,1.0,0.0,3.0,2.0,1.3,1,1,479.647719272545,0.0,34687.902881021175,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01003231591121646,26683.002216170134,7,4,7,7_0,7_4,7_0_0 +8196,2,67.0,0.0,2,111,0.0,,,0,74,0.0,0.0,,620.0,69.27946126982604,,41,0,0,0,0,0,0,0,0,0,,1,,2,108204,2,1,0,0,2,,151.0,785.0,11,0.0,0.0,2.0,1.0,1.0,1,1,158.74545539180133,0.0,37870.07346110818,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016371766498861635,37870.07346110818,9,5,9,9_1,9_2,9_0_1 +8197,2,54.0,0.0,6,111,1000.0,,,22,52,0.0,0.0,,1250.0,346.39730634913025,,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,108205,2,2,0,0,2,,800.0,,43,3.0,1.0,4.0,5.0,2.8,4,4,115.55214021818195,1000.0,39785.41850214195,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031418545966349534,14209.078036479268,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8198,2,75.0,0.0,2,112,420.0,2778.0,0.0,0,75,0.0,0.0,716.1842282162656,3198.0,0.0,5274.044245176734,70,0,0,0,0,0,0,0,0,0,,1,,2,108206,2,1,2,0,1,,785.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,698.846100725259,420.0,68070.84869358425,0,5,0,1,102.0,8,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046980463170006204,45380.56579572283,10,5,10,10_1,10_0,10_0_1 +8199,2,50.0,0.0,9,111,740.0,738.0,0.0,52,63,0.0,0.0,1261.8484020953254,1478.0,0.0,1401.0959873795643,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,108207,2,2,1,0,1,,439.0,740.0,43,2.0,3.0,5.0,3.0,1.8,2,2,1094.55909082446,740.0,32480.247913009138,1,1,2,3,106.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0455045787814946,18044.582173893967,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +8200,1,42.0,231.0,2,111,1152.0,0.0,0.0,48,52,1696.984707317892,0.0,1964.3910259646145,2851.0,124.70303028568689,0.0,50,1,2,1,1,2,2,2,2,2,45.0,1,,2,108208,2,3,4,1,1,693.0,500.0,511.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,1207.37116734017,1152.0,43875.486167622395,1,1,2,3,98.0,5,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.06497933696068935,16875.186987547077,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +8201,2,29.0,0.0,5,112,600.0,1400.0,0.0,67,46,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,108209,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,907.568360660573,600.0,73032.85391344142,1,1,1,2,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02738493558488624,34777.54948259115,9,5,9,9_1,9_1,9_0_0 +8202,2,38.0,0.0,8,111,0.0,0.0,0.0,46,53,0.0,0.0,0.0,2494.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,2002.0,6,108210,2,2,5,0,2,,860.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,412.031634790764,0.0,64698.894670569745,1,1,1,2,165.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03854779919655214,30808.997462176067,8,4,8,8_1,8_3,8_0_0 +8203,1,28.0,310.0,9,211,600.0,,,52,52,0.0,0.0,,732.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,108211,2,1,0,0,1,,248.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,165.02021616467192,600.0,9498.30303030303,4,4,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07706639782544888,4523.001443001443,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +8204,2,50.0,0.0,2,111,700.0,175.0,0.0,78,56,0.0,0.0,1193.6403803604428,875.0,0.0,332.23820838946307,42,0,0,0,0,0,0,0,0,1,10.0,2,,2,108212,1,2,0,1,1,876.0,0.0,306.0,42,1.0,0.0,3.0,4.0,2.1,2,2,247.782130176567,700.0,27276.59611379861,5,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03207878271722319,12988.85529228505,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +8205,2,52.0,0.0,1,111,400.0,0.0,0.0,55,21,1898.4291318658827,0.0,682.0802173488245,2260.0,83.13535352379125,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,,1,108213,2,2,2,0,1,,560.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,826.688861577346,400.0,13644.888083269418,1,1,0,1,110.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.16562979382521156,9096.592055512945,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +8206,2,63.0,0.0,1,111,251.0,798.0,0.0,0,77,0.0,0.0,428.00533638638734,1049.0,0.0,1515.0062302559516,60,0,0,0,0,0,0,0,0,0,,2,,1,108214,2,3,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1645.432219684,251.0,19986.784903609852,0,5,0,1,68.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.052484679504933185,19986.784903609852,5,3,5,5_0,5_2,5_1_0 +8207,2,62.0,0.0,5,111,700.0,,,0,86,0.0,0.0,,760.0,83.13535352379125,,41,0,0,0,0,0,0,0,0,0,,1,,3,108215,2,1,0,0,2,,400.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,58.51785790328975,700.0,45061.28226971379,0,5,0,1,240.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01686592040259815,45061.28226971379,10,5,10,10_1,10_2,10_0_0 +8208,2,43.0,0.0,9,112,600.0,,,0,52,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,2,2.0,1,2005.0,6,108216,2,1,0,0,1,,700.0,,32,1.0,0.0,6.0,8.0,3.8999999999999995,5,4,99.02842059596908,600.0,50480.0,0,1,1,2,161.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011885895404120444,12943.589743589746,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8209,2,58.0,0.0,5,400,2400.0,0.0,0.0,13,54,0.0,529.7309108040896,4092.4813040929466,2870.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,108217,1,2,2,0,1,,592.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1305.44175410255,2400.0,28868.032808476997,1,4,0,1,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09941792774869074,19245.355205651333,5,3,5,5_1,5_0,5_0_0 +8210,1,35.0,247.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1053.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,108218,1,3,3,0,1,,363.0,790.0,32,1.0,0.0,4.0,4.0,2.1,2,1,259.491656017753,0.0,29185.018040034567,0,1,2,3,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03608015587160325,13897.627638111699,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +8211,2,44.0,0.0,7,111,106.0,0.0,0.0,55,48,0.0,0.0,180.7512575974385,106.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,108219,2,1,3,0,1,,491.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1685.98262599131,106.0,55509.27796192284,1,1,0,1,150.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0019095906827091462,26432.989505677542,7,4,7,7_1,7_3,7_0_0 +8212,2,45.0,0.0,1,112,1500.0,0.0,0.0,46,46,0.0,0.0,2557.8008150580918,1700.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108220,2,1,1,0,1,,240.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,930.972512450156,1500.0,56778.07743445288,1,1,1,2,192.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029941133564491594,37852.05162296859,9,5,9,9_1,9_0,9_1_0 +8213,2,42.0,0.0,7,211,800.0,,,0,52,0.0,0.0,,1040.0,332.541414095165,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,108221,2,2,0,0,2,,1800.0,,32,1.0,1.0,4.0,6.0,3.0999999999999996,4,3,7.269211664376101,800.0,47765.43645952128,0,1,1,2,83.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021773065988444296,15408.205309522997,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8214,2,76.0,0.0,2,111,0.0,0.0,318.0,0,78,0.0,0.0,200.44121635188853,318.0,0.0,380.56082292556846,71,0,0,0,0,0,0,0,0,0,,2,,2,108222,1,2,0,1,1,576.0,190.0,423.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1822.99837899636,0.0,17524.97200865826,0,5,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018145535401876318,17524.97200865826,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8215,2,60.0,0.0,1,111,664.0,1040.0,0.0,43,43,0.0,0.0,1132.2531607990486,1704.0,0.0,1974.4442098573807,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,108223,2,2,2,0,1,,323.0,,43,2.0,0.0,7.0,5.0,2.8,4,4,1050.42815900426,664.0,56217.006852218845,1,1,0,1,130.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030311112160051692,20077.502447221017,5,3,5,5_1,5_2,5_1_0 +8216,1,39.0,269.0,1,111,0.0,0.0,240.0,0,63,0.0,0.0,151.2763896995385,240.0,0.0,287.2157154155234,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,108224,2,2,0,0,1,,0.0,180.0,32,1.0,3.0,3.0,2.0,1.3,1,1,392.729913606075,0.0,13548.69774919614,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.017713879550840188,10422.075191689339,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +8217,2,45.0,0.0,7,111,410.0,0.0,0.0,56,43,0.0,0.0,699.1322227825451,410.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,45.0,2,,5,108225,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,786.291963873548,410.0,25804.79629172657,1,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015888519148335712,17203.197527817712,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +8218,2,51.0,0.0,6,112,1159.0,0.0,0.0,56,56,0.0,0.0,1976.327429768219,1219.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,108226,2,1,2,0,1,,210.0,760.0,43,2.0,4.0,7.0,6.0,2.8999999999999995,3,3,1418.42196887558,1159.0,6901.458858579181,1,1,2,3,120.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17662932214464558,2379.813399510063,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8219,2,35.0,0.0,2,111,321.0,0.0,0.0,67,67,0.0,0.0,547.3693744224316,453.0,182.89777775234077,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,108227,1,2,0,1,1,,0.0,572.0,43,2.0,0.0,4.0,5.0,2.4,2,2,294.153052949403,321.0,45197.0799938125,1,1,2,3,70.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010022771383948165,18832.116664088542,5,3,5,5_0,5_2,5_0_1 +8220,2,29.0,0.0,2,111,0.0,0.0,1200.0,54,62,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,43,0,0,0,0,0,0,0,0,1,15.0,2,,2,108228,1,2,0,0,1,,140.0,373.0,43,2.0,0.0,3.0,2.0,1.5,2,2,301.232409455095,0.0,34831.322594201956,1,1,2,3,58.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034451749477918264,23220.881729467972,6,3,6,6_0,6_2,6_0_1 +8221,2,57.0,0.0,6,111,1610.0,0.0,0.0,43,38,0.0,0.0,2745.3728748290187,1700.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,4,108229,2,1,2,0,1,,345.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,1328.03480048215,1610.0,143380.03218307142,1,1,0,1,150.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011856602165002969,71690.01609153571,10,5,10,10_1,10_3,10_0_0 +8222,2,42.0,0.0,1,120,1500.0,0.0,0.0,52,48,0.0,66.2163638505112,2557.8008150580918,1710.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108230,2,1,1,0,1,,220.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1233.53650458463,1500.0,42493.32599229452,1,1,1,2,85.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04024161347855145,20234.917139187866,5,3,5,5_1,5_0,5_1_0 +8223,1,58.0,346.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1527.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,108231,2,1,1,0,1,,601.0,510.0,32,1.0,4.0,3.0,2.0,1.5,2,1,1054.51880772021,0.0,11405.146368381182,0,1,2,3,54.0,3,4,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.13388692706595562,7603.430912254121,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +8224,2,63.0,0.0,8,111,160.0,,,0,45,0.0,0.0,,204.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,2,40.0,2,2000.0,6,108232,2,1,0,0,1,,120.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,110.56803382988531,160.0,65388.41564145377,0,1,1,2,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003119818671224567,65388.41564145377,10,5,10,10_0,10_2,10_0_0 +8225,0,57.0,0.0,8,111,1200.0,1570.0,0.0,0,34,0.0,0.0,2046.2406520464733,2770.0,0.0,2980.6513552654687,10,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,108233,2,1,2,0,1,,147.0,,32,1.0,2.0,6.0,2.0,1.5,2,2,271.211136328741,1200.0,87008.61585875774,0,1,0,1,200.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03183592765682629,58005.74390583849,10,5,10,10_1,10_3,10_0_0 +8226,2,33.0,0.0,2,111,2200.0,0.0,0.0,56,65,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,108234,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,214.854603278092,2200.0,32351.240818949373,1,1,1,2,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06800357403019222,15405.352770928272,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +8227,2,49.0,0.0,1,300,515.0,0.0,0.0,0,67,0.0,662.163638505112,878.1782798366115,1015.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108235,2,1,4,0,1,,150.0,,22,1.0,5.0,4.0,2.0,1.5,2,2,1065.49076488412,515.0,29704.278120288334,0,1,0,1,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03417016215272858,19802.852080192224,5,3,5,5_1,5_0,5_1_0 +8228,1,35.0,120.0,2,111,200.0,0.0,0.0,0,68,0.0,0.0,341.04010867441224,529.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,108236,2,2,0,0,1,1600.0,0.0,180.0,32,1.0,0.0,1.0,2.0,1.3,1,1,391.42152163518,200.0,6268.5526385038975,0,4,2,3,35.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08438949634891402,4821.963568079921,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8229,2,75.0,0.0,2,111,330.0,260.0,0.0,78,78,0.0,595.9472746546007,562.7161793127802,1040.0,0.0,493.61105246434516,70,0,0,0,0,0,0,0,0,0,,1,,2,108237,2,2,1,0,1,,120.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1975.69475880297,330.0,28078.025599863853,5,5,0,1,92.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037039641419980854,18718.683733242568,5,3,5,5_1,5_2,5_0_1 +8231,2,54.0,0.0,6,111,300.0,,,0,48,0.0,0.0,,552.0,349.1684847999233,,71,2,2,2,2,1,2,2,2,2,12.0,1,,4,108239,2,1,0,0,1,,300.0,,22,2.0,1.0,3.0,2.0,1.5,2,2,145.85954785661372,300.0,25870.707595893746,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.021336872907473728,17247.138397262497,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8232,2,54.0,0.0,1,112,1000.0,0.0,0.0,34,31,5273.414255183007,0.0,1705.2005433720612,6640.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,108240,2,1,2,0,1,,2550.0,,43,2.0,0.0,8.0,3.0,2.0,3,3,871.778723994792,1000.0,286144.892320959,1,1,0,1,300.0,7,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02320502716697853,143072.4461604795,10,5,10,10_1,10_0,10_1_0 +8233,1,23.0,270.0,6,111,960.0,0.0,0.0,0,56,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,1.0,2,,4,108241,2,1,0,0,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,4642.47085468184,960.0,15372.0,0,1,3,4,37.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0624512099921936,15372.0,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +8234,2,20.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1277.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,108242,2,1,0,0,1,,812.0,435.0,22,2.0,0.0,2.0,2.0,1.5,2,2,735.657355211658,0.0,12658.22277336985,0,1,2,3,49.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10088304044439245,8438.815182246566,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +8235,2,64.0,0.0,5,111,724.0,0.0,0.0,75,78,0.0,0.0,1234.5651934013722,724.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,3,108243,2,1,2,0,1,,58.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,737.462011229043,724.0,28672.872858437524,5,5,0,1,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02525034737797296,19115.248572291683,5,3,5,5_1,5_4,5_0_0 +8236,1,41.0,302.0,7,111,0.0,,,0,69,0.0,26.486545540204478,,180.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,108244,2,2,0,0,2,,0.0,800.0,32,1.0,0.0,4.0,3.0,1.8,2,1,100.35233102760473,0.0,28963.449992910955,0,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.00621472925511486,16090.805551617197,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +8237,2,67.0,0.0,2,111,290.0,345.0,0.0,86,74,0.0,0.0,494.50815757789775,635.0,0.0,654.9838965392272,10,0,0,0,0,0,0,0,0,0,,2,,2,108245,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,742.929314564408,290.0,61090.250227650504,6,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010394457341944035,40726.83348510034,9,5,9,9_0,9_4,9_0_1 +8238,2,30.0,0.0,9,111,300.0,0.0,0.0,0,53,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,2006.0,6,108246,2,1,0,1,1,569.0,0.0,310.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1468.06067591424,300.0,16027.439015324042,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01871789995352134,16027.439015324042,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +8239,2,49.0,0.0,6,120,443.0,0.0,0.0,77,54,0.0,993.245457757668,755.4038407138231,1263.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,108247,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,1277.67597123786,443.0,31869.983329976647,5,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039629766571356584,21246.655553317763,5,3,5,5_1,5_0,5_0_0 +8240,2,58.0,0.0,6,112,700.0,0.0,0.0,0,74,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,108248,2,2,3,0,1,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1329.96831794122,700.0,28297.244892387236,0,5,0,1,90.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024737390606826178,28297.244892387236,8,4,8,8_1,8_0,8_0_0 +8241,2,44.0,0.0,1,111,600.0,0.0,0.0,34,34,0.0,0.0,1023.1203260232367,2810.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,108249,2,2,0,0,1,,247.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1059.03049971858,600.0,77940.40725484143,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03605318600417566,43300.22625268968,9,5,9,9_0,9_4,9_1_0 +8242,1,22.0,377.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1957.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108250,1,1,2,0,1,,755.0,400.0,31,0.0,0.0,3.0,2.0,1.3,1,1,74.5931407538074,0.0,8758.633406624458,0,6,2,3,70.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.22343668345793,6737.410312788044,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +8243,2,93.0,0.0,2,111,350.0,1300.0,0.0,0,78,0.0,0.0,596.8201901802214,1650.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,1,,2,108251,2,1,3,0,1,,280.0,,21,1.0,2.0,6.0,2.0,1.5,2,2,265.237839724293,350.0,21085.74491597938,0,5,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07825191884729588,14057.163277319587,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +8244,1,36.0,36.0,9,120,1020.0,0.0,0.0,56,63,0.0,0.0,1739.3045542395023,1080.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,1,2.0,1,2008.0,6,108252,2,1,1,0,1,,283.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,2259.34605860692,1020.0,52547.78676800806,1,1,1,2,125.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02055272098838464,21894.911153336692,6,3,6,6_1,6_0,6_0_0 +8245,2,64.0,0.0,1,400,488.0,0.0,0.0,0,71,0.0,0.0,832.1378651655658,578.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108253,2,3,4,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1831.54526126314,488.0,10216.465929211612,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05657533671671563,10216.465929211612,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8246,1,44.0,91.0,2,111,500.0,824.0,0.0,67,56,0.0,0.0,852.6002716860306,1324.0,0.0,1564.3673355023861,71,2,2,2,1,2,2,2,2,2,10.0,2,,2,108254,2,2,0,0,1,,0.0,371.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1033.94168657304,500.0,38315.0298190505,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03455563016009185,21286.127677250275,6,3,6,6_0,6_4,6_0_1 +8247,2,37.0,0.0,7,111,624.0,0.0,0.0,0,46,0.0,0.0,1064.0451390641663,624.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,108255,2,1,0,0,2,,0.0,744.0,32,1.0,0.0,2.0,2.0,1.3,1,1,951.868313989854,624.0,16715.90765954498,0,4,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03732971087834938,12858.390507342292,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +8248,2,41.0,0.0,5,111,600.0,0.0,0.0,0,33,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,2,2,1,2,1,2,2,2,1,5.0,2,,3,108256,2,2,0,0,1,,125.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2334.69164951003,600.0,34676.96653090269,0,1,1,2,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017302551521203698,34676.96653090269,9,5,9,9_0,9_3,9_0_0 +8249,2,53.0,0.0,1,211,997.0,0.0,0.0,52,63,1993.3505884591768,0.0,1700.084941741945,2920.0,45.72444443808519,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,108257,2,1,2,0,1,,421.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1641.25315636688,997.0,68504.9252970104,1,1,0,1,105.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04262467242085192,34252.4626485052,9,5,9,9_1,9_1,9_1_0 +8250,2,35.0,0.0,7,111,0.0,0.0,1500.0,43,54,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,41,0,0,0,0,0,0,0,0,0,,1,,5,108258,2,1,2,0,1,,600.0,730.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1747.50290218518,0.0,52740.18165583066,1,1,2,3,95.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028441312731697206,29300.100919905923,8,4,8,8_1,8_3,8_0_0 +8251,2,73.0,0.0,1,212,1380.0,0.0,0.0,77,78,3164.0485531098047,0.0,2353.1767498534446,4380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108259,2,2,4,0,2,,156.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,979.998831218473,1380.0,24782.878973547016,5,5,0,1,120.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17673491464309557,16521.91931569801,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8252,2,69.0,0.0,1,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,1111.0,374.10909085706066,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108260,2,2,4,0,2,,100.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,234.70955895846,0.0,35186.82518271839,5,5,0,1,45.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03157431778032805,23457.883455145595,6,3,6,6_1,6_2,6_1_0 +8253,2,40.0,0.0,9,111,2719.0,,,37,37,0.0,0.0,,2809.0,124.70303028568689,,41,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,108261,2,1,0,0,2,,300.0,1600.0,43,2.0,2.0,5.0,4.0,2.3,3,2,215.53423224474096,2719.0,84796.04107073342,1,1,2,3,222.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033126546528945214,36867.84394379715,9,5,9,9_1,9_3,9_0_0 +8254,2,36.0,0.0,1,112,70.0,0.0,0.0,43,38,0.0,0.0,119.36403803604428,95.0,34.63973063491302,0.0,12,0,0,0,0,0,0,0,0,2,75.0,1,,1,108262,2,1,2,0,1,,270.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,521.60143836002,70.0,80412.71791980231,1,1,1,2,64.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0011814051614913198,38291.7704380011,9,5,9,9_1,9_0,9_1_0 +8255,2,52.0,0.0,7,300,0.0,,,0,56,0.0,0.0,,941.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,108263,2,2,0,0,2,,0.0,300.0,22,2.0,2.0,5.0,2.0,1.5,2,2,82.71339437204318,0.0,8060.528618523346,0,4,3,4,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1167417230971121,5373.685745682231,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +8256,0,86.0,0.0,2,111,770.0,0.0,0.0,0,71,4746.072829664707,0.0,1313.0044183964872,5270.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108264,2,1,2,0,1,,750.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1406.32353912281,770.0,59069.189853942036,0,5,0,1,126.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0892174078065217,59069.189853942036,10,5,10,10_1,10_3,10_0_1 +8257,2,58.0,0.0,2,111,0.0,,,0,62,0.0,0.0,,501.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,3,,2,108265,1,3,0,0,2,,156.0,250.0,12,1.0,1.0,1.0,1.0,1.0,1,1,37.35754739027432,0.0,7777.584329778205,0,1,2,3,15.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06441588785888319,7777.584329778205,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +8258,2,44.0,0.0,5,111,1900.0,0.0,0.0,63,52,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,,3,108266,2,1,0,0,1,,720.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,737.325540678747,1900.0,43275.550614318316,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.043904698450476995,21637.775307159158,6,3,6,6_0,6_4,6_0_0 +8259,2,34.0,0.0,2,111,47.0,150.0,0.0,0,52,0.0,0.0,80.14442553848687,197.0,0.0,284.77560719096834,71,2,2,2,1,1,2,2,2,1,20.0,2,,2,108267,2,3,0,0,1,,0.0,387.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2237.72037418082,47.0,17874.120565425987,0,1,2,3,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,1,0,0,0.011021521270314033,17874.120565425987,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8260,2,26.0,0.0,2,111,230.0,0.0,0.0,43,63,0.0,0.0,392.1961249755741,230.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,108268,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,305.36799325118,230.0,38280.655821387896,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006008256521861781,21267.031011882165,5,3,5,5_0,5_4,5_0_1 +8261,1,44.0,388.0,7,111,200.0,609.0,0.0,0,56,0.0,0.0,341.04010867441224,809.0,0.0,1156.1889651953315,50,0,0,0,0,0,0,0,0,0,,2,,5,108269,2,2,0,0,1,,346.0,466.0,32,1.0,1.0,4.0,3.0,1.8,2,2,1588.36616696677,200.0,13394.932563823131,0,1,2,3,80.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.060395974085374435,7441.6292021239615,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8262,1,41.0,406.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,246.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108270,2,1,0,1,1,,0.0,532.0,31,0.0,2.0,4.0,3.0,1.6,1,1,2016.57575489727,0.0,6605.314311271848,0,6,2,3,65.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03724273946815907,4128.321444544905,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8263,2,64.0,0.0,8,120,360.0,,,0,74,0.0,0.0,,400.0,55.423569015860835,,30,0,0,0,0,0,0,0,0,0,,2,2000.0,6,108271,2,1,0,0,2,,0.0,1189.0,11,0.0,2.0,5.0,1.0,1.0,1,1,174.5056895771935,360.0,35847.887969068,0,5,2,3,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011158258482205348,35847.887969068,9,5,9,9_0,9_2,9_0_0 +8264,2,62.0,0.0,2,111,480.0,,,0,86,0.0,0.0,,756.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,,2,108272,2,2,0,0,2,,540.0,464.0,21,0.0,1.0,4.0,2.0,1.5,2,2,88.690654472359,480.0,21616.623154679208,0,5,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03497308504618834,14411.082103119472,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +8265,1,48.0,374.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,756.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,108273,2,2,0,0,1,,0.0,530.0,31,0.0,3.0,1.0,2.0,1.3,1,1,279.670590600086,0.0,6874.099800074486,0,6,2,3,50.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10997803668660851,5287.769076980373,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +8266,1,33.0,247.0,1,120,900.0,0.0,0.0,85,65,527.3414255183008,1324.327277010224,1534.680489034855,2460.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,108274,2,1,3,0,1,,200.0,473.0,42,1.0,0.0,5.0,5.0,2.4,2,2,239.854675435378,900.0,26781.09426780822,6,1,2,3,130.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09185584335726726,11158.789278253425,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +8267,1,30.0,413.0,8,120,270.0,,,0,55,0.0,0.0,,312.0,58.19474746665388,,42,0,0,0,0,0,0,0,0,0,,2,2001.0,6,108275,2,1,0,0,2,,300.0,580.0,32,1.0,0.0,5.0,3.0,1.6,1,1,160.12285463560724,270.0,9397.8368386965,0,4,2,3,95.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03319912926295016,5873.648024185311,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8268,2,24.0,0.0,1,120,0.0,0.0,0.0,42,46,0.0,0.0,0.0,2454.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,108276,2,1,2,0,1,,335.0,520.0,43,2.0,0.0,3.0,2.0,1.5,2,2,969.938899295354,0.0,32957.92306258739,1,1,2,3,100.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07445857541871896,21971.948708391592,6,3,6,6_1,6_0,6_1_0 +8270,2,35.0,0.0,2,111,1510.0,0.0,0.0,46,54,0.0,0.0,2574.8528204918125,1510.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,108278,2,2,2,0,1,,240.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,889.669832001723,1510.0,51080.593886362236,1,1,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029561128505264846,34053.72925757482,9,5,9,9_1,9_3,9_0_1 +8271,2,60.0,0.0,9,212,0.0,0.0,0.0,71,71,0.0,0.0,0.0,1584.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,108279,2,1,1,0,1,,192.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,768.14666119128,0.0,18195.126610143456,6,5,1,2,120.0,1,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08705627797703526,12130.084406762304,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8272,2,32.0,0.0,2,111,200.0,0.0,0.0,0,54,0.0,0.0,341.04010867441224,200.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,10.0,2,,2,108280,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1112.49688227812,200.0,22051.18865572053,0,1,1,2,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00906980585593584,22051.18865572053,6,3,6,6_0,6_4,6_0_1 +8273,2,48.0,0.0,1,111,364.0,899.0,0.0,46,21,0.0,0.0,620.6929977874303,1263.0,0.0,1706.7551390978704,50,0,0,0,0,0,0,0,0,0,,1,,1,108281,2,1,2,0,1,,495.0,,43,3.0,0.0,8.0,3.0,2.0,3,3,111.661572748265,364.0,53891.5586788119,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023435952326548003,26945.77933940595,7,4,7,7_1,7_3,7_1_0 +8274,1,59.0,270.0,2,111,288.0,432.0,0.0,0,53,0.0,0.0,491.09775649115363,720.0,0.0,820.1537487099888,71,2,1,2,1,2,2,2,2,3,20.0,2,,2,108282,2,2,0,1,1,,580.0,472.0,32,2.0,4.0,5.0,2.0,1.5,2,2,435.378188009499,288.0,18542.092197295045,0,1,2,3,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03883056951388878,12361.394798196698,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +8275,2,53.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,328.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,108283,2,1,0,0,1,,710.0,419.0,12,1.0,1.0,1.0,1.0,1.0,1,1,164.9418744813372,0.0,20045.712242340924,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016362601439882607,20045.712242340924,5,3,5,5_0,5_2,5_0_0 +8276,2,82.0,0.0,2,111,160.0,,,0,75,0.0,0.0,,235.0,103.91919190473907,,42,0,0,0,0,0,0,0,0,0,,2,,2,108284,2,3,0,0,2,,120.0,559.0,11,0.0,4.0,2.0,1.0,1.0,1,1,151.55276213416337,160.0,31538.240745069714,0,5,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007451271676805146,31538.240745069714,8,4,8,8_0,8_2,8_0_1 +8278,2,83.0,0.0,2,111,700.0,,,0,78,0.0,0.0,,976.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,108286,2,2,0,0,2,,800.0,,21,3.0,9.0,7.0,5.0,3.0,5,4,113.68428904216536,700.0,12102.109112361637,0,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08064709968637367,4034.0363707872125,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8279,2,44.0,0.0,1,111,525.0,0.0,0.0,0,35,0.0,0.0,895.2302852703322,525.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,108287,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,254.386309884522,525.0,41802.32009462513,0,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012559111523274125,41802.32009462513,9,5,9,9_0,9_4,9_1_0 +8280,2,59.0,0.0,7,111,800.0,0.0,0.0,77,46,0.0,105.94618216081791,1364.160434697649,3380.0,3463.9730634913026,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,108288,2,1,2,0,1,,240.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,1113.23903284667,800.0,74121.13556915689,5,1,1,2,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04560102829032314,49414.09037943793,10,5,10,10_1,10_3,10_0_0 +8281,2,32.0,0.0,9,112,1139.0,0.0,0.0,13,55,0.0,0.0,1942.2234189007777,1207.0,94.22006732696343,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,108289,2,1,1,0,1,,190.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1546.25632675958,1139.0,44741.339679984805,1,1,1,2,135.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02697728786471621,24856.29982221378,7,4,7,7_1,7_0,7_0_0 +8282,2,49.0,0.0,1,111,550.0,860.0,0.0,67,56,0.0,0.0,937.8602988546337,1410.0,0.0,1632.7134812282186,50,0,0,0,0,0,0,0,0,0,,1,,1,108290,2,1,2,0,1,,400.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,222.693565519395,550.0,55503.228992258984,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025403927403875048,22201.291596903593,6,3,6,6_1,6_3,6_1_0 +8283,1,56.0,250.0,9,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,525.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,108291,2,1,0,0,1,,87.0,486.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1577.14544626135,0.0,17626.83595139991,0,7,2,3,50.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02978413150536554,17626.83595139991,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +8284,2,53.0,0.0,7,112,510.0,,,52,45,0.0,0.0,,598.0,121.93185183489385,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,108292,2,1,0,0,2,,480.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,99.2468757756999,510.0,40801.41446321503,1,1,1,2,110.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014656354635428966,15692.851716621166,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8285,1,47.0,140.0,2,111,750.0,1600.0,0.0,52,48,0.0,0.0,1278.9004075290459,2350.0,0.0,3037.6064767036623,50,2,2,2,1,2,2,2,2,2,3.0,1,,2,108293,1,2,3,0,2,,240.0,,43,5.0,1.0,5.0,7.0,3.8,6,5,1378.57597952258,750.0,54943.35243215658,1,1,1,2,80.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.042771325300940695,14458.776955830679,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +8286,2,58.0,0.0,5,111,415.0,600.0,0.0,68,63,0.0,0.0,707.6582254994054,1015.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,108294,1,1,0,0,1,,320.0,381.0,43,3.0,1.0,4.0,3.0,2.0,3,3,283.747078622117,415.0,35986.08959412917,1,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028205342993576854,17993.044797064584,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +8287,2,76.0,0.0,5,400,344.0,,,0,86,0.0,0.0,,620.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,108295,1,1,0,0,2,,388.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,91.52532425605514,344.0,15796.171351309842,0,5,0,1,37.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03925001737516532,15796.171351309842,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8288,2,24.0,0.0,1,300,1900.0,0.0,0.0,55,21,105.46828510366015,662.163638505112,3239.8810324069163,2580.0,110.84713803172167,0.0,44,1,2,2,1,2,2,2,2,0,,1,,1,108296,1,1,3,0,2,,317.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1102.07136516113,1900.0,15412.373589326417,1,1,1,2,130.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.16739796664329082,10274.91572621761,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8289,2,71.0,0.0,7,400,228.0,0.0,0.0,0,77,2742.175412695164,0.0,388.7857238888299,2873.0,62.351515142843446,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,108297,2,1,1,0,1,,59.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,976.582294190525,228.0,15910.746971270168,0,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18056977495699852,15910.746971270168,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8290,1,38.0,300.0,5,112,960.0,0.0,0.0,0,46,0.0,119.18945493092015,1636.9925216371787,1110.0,83.13535352379125,0.0,41,2,2,2,1,1,1,1,2,2,15.0,1,,3,108298,2,3,3,0,1,,300.0,417.0,32,1.0,0.0,4.0,3.0,2.0,3,1,941.360333045584,960.0,17073.875688157666,0,1,2,3,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.06501160136534724,8536.937844078833,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +8292,2,57.0,0.0,6,111,468.0,,,0,56,0.0,0.0,,512.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,2,8.0,1,,4,108300,2,3,0,0,1,,300.0,600.0,12,1.0,2.0,4.0,1.0,1.0,1,1,184.03319918203397,468.0,19402.120538615487,0,1,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026388868112688042,19402.120538615487,5,3,5,5_1,5_2,5_0_0 +8293,2,37.0,0.0,1,111,0.0,0.0,0.0,42,54,0.0,0.0,0.0,669.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,1,108301,2,3,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,769.03479203627,0.0,22633.36926576376,1,1,1,2,43.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029558126858821643,15088.912843842505,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +8294,2,55.0,0.0,7,112,1300.0,0.0,0.0,56,65,0.0,0.0,2216.7607063836795,1393.0,128.85979796187644,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108302,2,1,2,0,1,,360.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,733.744822783372,1300.0,46417.71544005235,1,1,0,1,150.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0300100939219862,30945.143626701567,8,4,8,8_1,8_0,8_0_0 +8295,2,84.0,0.0,5,111,309.0,1754.0,0.0,0,77,0.0,0.0,526.9069679019669,2063.0,0.0,3329.97610008639,50,0,0,0,0,0,0,0,0,0,,1,,3,108303,1,3,1,0,2,,324.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1154.72749340279,309.0,18486.171683999637,0,5,0,1,41.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11159692960038835,18486.171683999637,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +8296,2,38.0,0.0,2,111,392.0,0.0,0.0,0,54,0.0,0.0,668.438613001848,392.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,108304,1,2,0,1,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,280.960657621418,392.0,28054.957370721484,0,1,1,2,81.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013972575143140166,21580.736439016524,6,3,6,6_0,6_3,6_0_1 +8297,2,41.0,0.0,7,111,1020.0,,,85,21,0.0,0.0,,1089.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,5,108305,2,1,0,0,2,,1000.0,1000.0,42,1.0,0.0,5.0,3.0,1.8,2,2,98.38188497133288,1020.0,70536.4891982891,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015438817729340778,39186.93844349394,9,5,9,9_1,9_2,9_0_0 +8298,2,65.0,0.0,5,120,200.0,0.0,0.0,77,74,0.0,132.4327277010224,341.04010867441224,300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,108306,2,1,2,0,1,,250.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2853.13680499504,200.0,46755.22945274183,6,5,0,1,115.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006416394561879481,31170.152968494553,8,4,8,8_1,8_1,8_0_0 +8299,2,56.0,0.0,2,120,1300.0,0.0,0.0,68,62,0.0,529.7309108040896,2216.7607063836795,1810.0,152.4148147936173,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,108307,2,2,2,0,1,,194.0,,43,4.0,1.0,5.0,4.0,2.5,4,4,297.73356455769,1300.0,57311.37402653051,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03158186364825448,22924.549610612205,6,3,6,6_1,6_0,6_0_1 +8300,2,59.0,0.0,5,400,666.0,0.0,0.0,90,78,0.0,1051.5158579461179,1135.6635618857927,1610.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,108308,2,1,3,0,1,,265.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,1064.24634427354,666.0,27709.64032540987,5,7,0,1,75.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058102522482892806,18473.093550273246,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8301,2,61.0,0.0,1,112,480.0,0.0,0.0,0,78,0.0,0.0,818.4962608185893,1480.0,1385.589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,108309,2,1,0,0,1,,120.0,337.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1051.32117327034,480.0,18272.20528961007,0,5,2,3,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0809973386650574,18272.20528961007,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +8302,2,73.0,0.0,2,111,500.0,130.0,0.0,74,74,944.995834528795,0.0,852.6002716860306,1526.0,0.0,246.80552623217258,20,2,2,1,2,1,2,2,2,0,,2,,2,108310,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,928.113982966735,500.0,73758.29252964769,5,5,1,2,79.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020689199107837442,49172.195019765124,10,5,10,10_0,10_4,10_0_1 +8303,2,73.0,0.0,1,212,2229.0,0.0,0.0,0,77,0.0,0.0,3800.8920111763246,2304.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,108311,2,3,4,0,2,,294.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,813.779906954832,2229.0,22074.617825221605,0,5,0,1,100.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1043732678971927,22074.617825221605,6,3,6,6_1,6_0,6_1_0 +8304,2,66.0,0.0,6,111,1600.0,0.0,0.0,77,75,0.0,496.622728878834,2728.320869395298,2065.0,124.70303028568689,0.0,44,2,2,2,1,2,2,2,2,0,,1,,4,108312,2,1,1,0,1,,460.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,570.994229398645,1600.0,34549.821888997576,5,5,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.059768759637444074,23033.214592665052,6,3,6,6_1,6_4,6_0_0 +8305,1,63.0,244.0,2,111,350.0,0.0,0.0,0,77,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108313,2,1,0,1,1,650.0,300.0,237.0,11,0.0,4.0,2.0,1.0,1.0,1,1,359.925975606271,350.0,9386.028525189551,0,5,2,3,50.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037289466898667,9386.028525189551,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8306,2,41.0,0.0,8,400,340.0,,,85,69,0.0,0.0,,634.0,407.36323226657714,,71,2,2,2,2,1,2,2,2,0,,1,2000.0,6,108314,1,2,0,0,2,,392.0,,42,1.0,0.0,6.0,7.0,2.9999999999999996,2,2,109.6717425136937,340.0,35992.18679082682,6,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.017614934143473187,11997.395596942275,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +8307,1,69.0,100.0,6,111,800.0,600.0,0.0,85,78,0.0,0.0,1364.160434697649,1400.0,0.0,1139.1024287638734,41,0,0,0,0,0,0,0,0,0,,2,,4,108315,2,1,0,0,1,,1000.0,470.0,41,1.0,0.0,4.0,3.0,2.0,3,3,350.925404033187,800.0,25726.835492171904,6,5,2,3,90.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05441788596292725,12863.417746085952,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8308,2,55.0,0.0,9,112,1000.0,0.0,0.0,0,56,0.0,0.0,1705.2005433720612,1093.0,128.85979796187644,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,2006.0,6,108316,2,1,1,0,1,,460.0,,32,2.0,2.0,4.0,2.0,1.5,2,2,692.670423327507,1000.0,21868.41171469654,0,1,1,2,96.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04998076743110958,14578.941143131027,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8309,1,39.0,455.0,5,111,1400.0,0.0,0.0,52,64,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,108317,2,1,0,0,1,,0.0,552.0,43,2.0,0.0,4.0,5.0,2.4,2,2,630.864870127365,1400.0,28204.98268283214,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.049636619732872755,11752.076117846726,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +8310,2,42.0,0.0,1,111,550.0,1100.0,0.0,0,31,0.0,0.0,937.8602988546337,1650.0,0.0,2088.354452733768,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,108318,2,2,0,0,1,,250.0,630.0,32,1.0,0.0,5.0,2.0,1.3,1,1,1350.05769647113,550.0,22621.92636480446,0,4,2,3,120.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0729380855278132,17401.481819080356,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +8311,2,59.0,0.0,2,111,254.0,810.0,0.0,0,54,0.0,0.0,433.12093801650354,1064.0,0.0,1537.788278831229,31,0,0,0,0,0,0,0,0,0,,1,,2,108319,2,2,1,0,1,,210.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,469.438122660578,254.0,31413.588256617382,0,1,1,2,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03387069287685926,31413.588256617382,8,4,8,8_1,8_2,8_0_1 +8312,2,74.0,0.0,2,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,605.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,108320,1,2,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,291.68430116513,0.0,41647.0547654,5,5,0,1,63.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014526837573701098,27764.70317693333,7,4,7,7_0,7_3,7_0_1 +8313,2,57.0,0.0,5,111,535.0,2400.0,0.0,46,46,0.0,0.0,912.2822907040527,2935.0,0.0,4556.4097150554935,42,0,0,0,0,0,0,0,0,2,60.0,2,,3,108321,1,2,0,1,2,,600.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,816.70134607432,535.0,65211.24460065564,1,1,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04500757527284629,32605.62230032782,8,4,8,8_0,8_4,8_0_0 +8314,2,42.0,0.0,2,111,320.0,,,0,43,0.0,0.0,,452.0,182.89777775234077,,33,2,2,1,2,1,2,2,2,2,20.0,1,,2,108322,2,1,0,0,2,,260.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,114.03886440696728,320.0,58751.4407446483,0,1,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.0076934283529238034,32639.68930258239,8,4,8,8_1,8_2,8_0_1 +8315,2,54.0,0.0,7,111,1300.0,0.0,0.0,0,47,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,108323,2,1,0,0,1,,280.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,831.606394674639,1300.0,20926.033090208508,0,1,0,1,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0621235756627128,20926.033090208508,5,3,5,5_0,5_4,5_0_0 +8316,0,31.0,0.0,5,111,900.0,,,52,46,0.0,0.0,,1120.0,304.8296295872346,,31,0,0,0,0,0,0,0,0,0,,1,,3,108324,2,2,0,0,2,,420.0,,43,5.0,0.0,8.0,8.0,4.1,6,6,128.31694691155417,900.0,34637.93440620136,1,1,5,0,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0323344916260215,8448.276684439357,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8317,1,49.0,347.0,5,111,130.0,,,0,68,0.0,0.0,,270.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,2,,3,108325,2,2,0,0,2,,90.0,345.0,32,1.0,0.0,3.0,2.0,1.3,1,1,129.65715919551994,130.0,13095.0,0,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020618556701030927,10073.076923076922,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8318,2,90.0,0.0,1,400,400.0,0.0,0.0,0,86,3164.0485531098047,0.0,682.0802173488245,3530.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108326,1,3,4,0,2,,184.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1791.44410001827,400.0,11399.80052117747,0,6,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.30965454118625146,11399.80052117747,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8319,2,45.0,0.0,1,111,500.0,1600.0,0.0,52,62,0.0,0.0,852.6002716860306,2100.0,0.0,3037.6064767036623,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,108327,2,1,0,0,1,,390.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1801.26856952235,500.0,48865.094671660336,1,1,1,2,100.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04297546160732008,32576.72978110689,8,4,8,8_0,8_2,8_1_0 +8320,1,80.0,42.0,2,111,210.0,81.0,0.0,0,77,0.0,0.0,358.0921141081328,291.0,0.0,153.77882788312291,70,0,0,0,0,0,0,0,0,0,,2,,2,108328,2,2,0,1,1,640.0,0.0,325.0,11,0.0,3.0,4.0,1.0,1.0,1,1,993.025855950211,210.0,15523.720517747475,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01874550625072866,15523.720517747475,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +8321,2,55.0,0.0,7,111,1000.0,0.0,0.0,54,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,108329,2,2,0,0,1,,428.0,700.0,43,2.0,2.0,4.0,3.0,2.0,3,3,647.306105686774,1000.0,49641.95266763774,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020144251913199084,24820.97633381887,7,4,7,7_0,7_4,7_0_0 +8322,2,58.0,0.0,5,111,1200.0,,,53,52,0.0,0.0,,1292.0,127.47420873647992,,42,0,0,0,0,0,0,0,0,2,80.0,2,,3,108330,2,1,0,0,2,,1200.0,515.0,43,2.0,0.0,4.0,4.0,2.5,4,4,212.17697923932647,1200.0,40921.15347652082,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031572912546106655,16368.461390608329,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +8323,2,83.0,0.0,2,300,340.0,0.0,0.0,0,77,1265.6194212439218,0.0,579.7681847465008,1540.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108331,2,1,2,0,2,,155.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1591.42273909834,340.0,27248.06433203332,0,5,0,1,74.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0565177761339013,27248.06433203332,7,4,7,7_1,7_1,7_0_1 +8324,1,39.0,100.0,6,111,300.0,,,56,55,0.0,0.0,,475.0,242.47811444439117,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,108332,2,2,0,0,2,,250.0,650.0,43,2.0,0.0,3.0,4.0,2.1,2,2,60.92057281074341,300.0,35846.658784809624,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013250886305791097,17069.83751657601,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +8325,2,46.0,0.0,6,111,700.0,820.0,0.0,52,64,0.0,0.0,1193.6403803604428,4634.0,0.0,1556.773319310627,50,0,0,0,0,0,0,0,0,0,,1,,4,108333,2,1,2,0,1,,520.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,268.920453555007,700.0,37711.04299570972,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12288177764076154,15084.417198283889,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8326,2,41.0,0.0,7,111,250.0,,,0,42,0.0,0.0,,250.0,0.0,,20,0,0,0,0,0,0,0,0,2,2.0,2,,5,108334,2,2,0,0,2,,200.0,500.0,12,1.0,2.0,1.0,1.0,1.0,1,1,131.8306194529527,250.0,25273.970691385606,0,1,3,4,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009891599664045276,25273.970691385606,7,4,7,7_0,7_2,7_0_0 +8327,2,43.0,0.0,9,211,950.0,0.0,0.0,21,45,0.0,0.0,1619.9405162034582,1070.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,108335,2,1,1,0,1,,343.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,1032.71145007247,950.0,82002.095716901,1,1,1,2,144.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013048447001818127,29286.462756036075,8,4,8,8_1,8_1,8_0_0 +8328,1,49.0,113.0,1,111,2500.0,0.0,0.0,64,56,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,108336,1,3,4,0,2,,600.0,624.0,42,2.0,0.0,7.0,4.0,2.5,4,4,833.786379854199,2500.0,26800.793303678092,5,1,2,3,110.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.09328082089483913,10720.317321471237,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +8329,2,87.0,0.0,5,300,160.0,0.0,0.0,0,71,0.0,397.2981831030672,272.8320869395298,460.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,108337,2,1,2,0,1,,60.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,354.935274797162,160.0,12321.0,0,5,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03733463192922652,12321.0,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8330,2,52.0,0.0,5,112,1800.0,0.0,0.0,38,43,0.0,198.6490915515336,3069.36097806971,1950.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,3.0,1,,3,108338,2,1,1,0,1,,159.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,299.287469637676,1800.0,93930.06600639707,1,1,0,1,130.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0207601259416468,46965.033003198536,10,5,10,10_1,10_0,10_0_0 +8331,1,40.0,185.0,2,111,420.0,0.0,0.0,85,22,0.0,0.0,716.1842282162656,540.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,108339,1,2,0,1,1,710.0,0.0,310.0,42,1.0,0.0,3.0,5.0,2.4,2,2,334.951699088428,420.0,28753.510082646262,7,1,2,3,58.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018780315810065524,11980.629201102609,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8332,1,72.0,100.0,7,111,220.0,,,0,77,0.0,0.0,,262.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,2,,5,108340,2,1,0,0,2,,180.0,155.0,11,0.0,0.0,3.0,1.0,1.0,1,1,120.18569888146273,220.0,2938.2144740622753,0,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08916980101788408,2938.2144740622753,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8333,2,40.0,0.0,2,111,341.0,83.0,0.0,0,47,0.0,0.0,581.4733852898729,424.0,0.0,157.57583597900248,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,108341,2,1,0,1,1,922.0,0.0,370.0,22,2.0,0.0,4.0,2.0,1.5,2,2,209.663361429173,341.0,23370.390880990442,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018142614822282802,15580.260587326962,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8334,2,49.0,0.0,1,111,249.6,471.2,0.0,62,35,0.0,0.0,425.61805562566644,721.0,0.0,894.5751073892286,20,0,0,0,0,0,0,0,0,0,,2,,1,108342,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,740.453401968869,249.6,19033.86653143366,4,1,1,2,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03787984952029046,10574.370295240922,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +8335,2,35.0,0.0,2,111,609.0,648.0,0.0,46,45,0.0,0.0,1038.4671309135852,1257.0,0.0,1230.2306230649833,50,2,2,2,2,1,2,2,2,2,10.0,2,,2,108343,1,3,0,1,1,922.0,0.0,345.0,43,3.0,0.0,4.0,5.0,2.6,3,3,226.617020659412,609.0,54023.304994557526,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.023267736028490558,20778.19422867597,5,3,5,5_0,5_4,5_0_1 +8336,2,59.0,0.0,2,111,230.0,1480.0,0.0,0,43,0.0,0.0,392.1961249755741,1710.0,0.0,2809.785990950888,30,0,0,0,0,0,0,0,0,2,10.0,2,,2,108344,2,2,0,1,1,,0.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,1815.41642981226,230.0,39676.26308899754,0,1,0,1,100.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04309881694665426,39676.26308899754,9,5,9,9_0,9_2,9_0_1 +8337,2,42.0,0.0,1,112,1010.0,0.0,0.0,42,22,0.0,0.0,1722.2525488057818,4210.0,4433.885521268867,0.0,41,2,2,2,2,2,2,2,1,2,35.0,1,,1,108345,2,2,1,0,1,,700.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,512.361247361478,1010.0,88893.0603092373,1,1,1,2,180.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.04736027745421786,37038.77512884888,9,5,9,9_1,9_0,9_1_0 +8338,2,49.0,0.0,2,111,430.0,1630.0,0.0,46,48,0.0,0.0,733.2362336499863,2060.0,0.0,3094.561598141856,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,108346,2,2,1,0,1,,350.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1258.72800001555,430.0,69130.0,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02979892955301606,46086.666666666664,10,5,10,10_1,10_4,10_0_1 +8339,2,85.0,0.0,8,112,450.0,950.0,0.0,71,71,0.0,0.0,767.3402445174275,1400.0,0.0,1803.5788455427996,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,108347,2,1,1,0,1,,550.0,,41,0.0,0.0,3.0,3.0,2.0,3,3,462.408966571125,450.0,28915.255847054403,5,5,0,1,70.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04841734783206554,14457.627923527201,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +8340,0,56.0,0.0,6,111,360.0,,,77,48,0.0,0.0,,636.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,108348,2,1,0,0,2,,240.0,,42,1.0,1.0,3.0,4.0,2.3,3,3,55.78096732511658,360.0,30181.205630237233,6,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021072716835500414,13122.26331749445,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +8341,2,31.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,727.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108349,2,2,0,1,1,603.0,204.0,285.0,12,1.0,0.0,2.0,1.0,1.0,1,1,343.357691664784,0.0,9531.046026987548,0,1,2,3,45.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07627704219888035,9531.046026987548,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +8342,1,60.0,254.0,9,111,235.0,427.0,0.0,0,78,0.0,0.0,400.72212769243436,662.0,0.0,810.6612284702899,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,108350,2,1,0,0,1,,80.0,275.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1284.88592599481,235.0,8924.040044758687,0,7,2,3,60.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07418164829827374,8924.040044758687,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8343,2,58.0,0.0,5,111,239.0,607.0,0.0,0,54,0.0,0.0,407.54292986592264,846.0,0.0,1152.391957099452,50,0,0,0,0,0,0,0,0,1,15.0,2,,3,108351,1,2,0,0,1,,220.0,372.0,12,1.0,1.0,3.0,1.0,1.0,1,1,420.783061194973,239.0,19063.77478817556,0,1,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.044377360171330676,19063.77478817556,5,3,5,5_0,5_2,5_0_0 +8344,2,69.0,0.0,1,111,450.0,900.0,0.0,0,77,0.0,0.0,767.3402445174275,1350.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,2,,1,108352,2,1,0,0,1,,0.0,243.0,11,0.0,2.0,3.0,1.0,1.0,1,1,531.973672370978,450.0,16415.597782063167,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08223885708719694,16415.597782063167,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +8345,2,57.0,0.0,6,111,249.0,,,0,34,0.0,0.0,,293.0,60.965925917446924,,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,108353,2,2,0,0,2,,250.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,121.63758474493326,249.0,54715.65166401526,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005354957696550597,54715.65166401526,10,5,10,10_1,10_3,10_0_0 +8346,2,27.0,0.0,5,120,50.0,0.0,0.0,34,47,0.0,0.0,85.26002716860306,50.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,108354,1,3,3,0,2,,300.0,350.0,43,2.0,0.0,4.0,2.0,1.5,2,2,3361.3440052205,50.0,75989.80306503327,1,1,3,4,90.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0006579830185532816,50659.86871002218,10,5,10,10_1,10_1,10_0_0 +8347,2,57.0,0.0,7,112,610.0,,,45,45,0.0,0.0,,779.0,234.16457909201205,,20,0,0,0,0,0,0,0,0,2,40.0,1,,5,108355,2,1,0,0,2,,548.0,,43,2.0,1.0,7.0,4.0,2.3,3,3,117.13631949422533,610.0,132051.58310698153,1,1,0,1,94.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005899209851720547,57413.73178564415,10,5,10,10_1,10_2,10_0_0 +8348,2,87.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2514.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108356,1,3,4,0,2,,84.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,488.027522934542,0.0,23663.30252843974,0,5,0,1,80.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10624045384107096,23663.30252843974,6,3,6,6_1,6_3,6_1_0 +8349,1,48.0,190.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,893.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,108357,1,3,0,1,1,245.0,0.0,352.0,42,1.0,0.0,4.0,5.0,2.4,2,2,232.784037437373,0.0,34495.59647956557,6,1,2,3,72.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025887362189228807,14373.165199818986,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +8350,2,75.0,0.0,6,112,1100.0,300.0,0.0,86,86,0.0,0.0,1875.7205977092674,1400.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,1,,4,108358,1,1,2,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,867.438581804002,1100.0,42963.616699700004,6,5,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03258571106304874,28642.411133133337,8,4,8,8_1,8_1,8_0_0 +8351,1,37.0,302.0,7,111,240.0,,,0,52,0.0,0.0,,378.0,191.2113131047199,,43,0,0,0,0,0,0,0,0,2,5.0,2,,5,108359,2,2,0,0,2,,240.0,380.0,32,1.0,0.0,3.0,4.0,2.1,2,2,83.53020998057588,240.0,10434.475285171104,0,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03622606692424607,4968.797754843383,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8352,2,67.0,0.0,6,111,420.0,909.0,0.0,56,77,0.0,0.0,716.1842282162656,1329.0,0.0,1725.7401795772682,31,0,0,0,0,0,0,0,0,0,,1,,4,108360,2,1,2,0,1,,662.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,553.529200651661,420.0,28424.213781212708,1,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04675591065524623,18949.475854141805,5,3,5,5_1,5_4,5_0_0 +8353,2,32.0,0.0,5,111,495.0,1109.0,0.0,54,85,0.0,0.0,844.0742689691702,1604.0,0.0,2105.440989165226,31,0,0,0,0,0,0,0,0,0,,1,,3,108361,2,1,1,0,1,,388.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,675.25284923782,495.0,62618.71514989463,1,7,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025615345127417533,29818.43578566411,8,4,8,8_1,8_4,8_0_0 +8354,2,58.0,0.0,5,111,500.0,1000.0,0.0,78,78,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,3,108362,2,2,3,0,1,,360.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,312.800343734179,500.0,19723.838105975123,6,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07605010708060879,13149.225403983415,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +8355,2,78.0,0.0,5,111,200.0,70.0,0.0,0,77,0.0,0.0,341.04010867441224,270.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,0,,2,,3,108363,2,3,0,1,1,461.0,0.0,202.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1108.81806003541,200.0,22739.895692545997,0,5,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01187340538630986,22739.895692545997,6,3,6,6_0,6_4,6_0_0 +8356,2,68.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,108364,2,2,3,0,1,,280.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1263.47549354669,300.0,30583.785949003606,0,5,0,1,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.009809119135879047,30583.785949003606,8,4,8,8_1,8_2,8_0_1 +8357,2,84.0,0.0,1,112,1400.0,0.0,0.0,0,78,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108365,2,3,3,0,2,,95.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,151.04034800885,1400.0,18961.32671861409,0,5,0,1,54.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07383449590716867,18961.32671861409,5,3,5,5_1,5_0,5_1_0 +8358,2,36.0,0.0,7,111,590.0,622.0,0.0,43,63,0.0,0.0,1006.0683205895161,1212.0,0.0,1180.8695178185487,50,0,0,0,0,0,0,0,0,0,,2,,5,108366,2,1,0,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,839.339052912689,590.0,49046.09151972191,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024711449219407076,32697.394346481273,8,4,8,8_0,8_4,8_0_0 +8359,1,26.0,231.0,2,111,670.0,660.0,0.0,0,68,0.0,0.0,1142.484364059281,1330.0,0.0,1253.0126716402608,71,2,2,2,2,1,2,2,2,0,,2,,2,108367,2,3,0,1,1,100.0,440.0,327.0,22,1.0,4.0,4.0,2.0,1.5,2,2,404.941477355799,670.0,16401.37340303494,0,1,2,3,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.08109077010306309,10934.248935356627,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8360,1,64.0,129.0,2,111,430.0,550.0,0.0,0,77,0.0,0.0,733.2362336499863,980.0,0.0,1044.177226366884,70,0,0,0,0,0,0,0,0,0,,2,,2,108368,2,1,0,0,1,,250.0,350.0,21,1.0,1.0,5.0,2.0,1.5,2,2,258.240000802299,430.0,36700.5520390853,0,5,2,3,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026702595616445255,24467.034692723533,7,4,7,7_0,7_2,7_0_1 +8361,2,35.0,0.0,1,111,580.0,0.0,0.0,46,48,0.0,0.0,989.0163151557955,580.0,0.0,0.0,20,2,2,2,2,1,2,2,1,4,60.0,2,,1,108369,1,3,0,0,1,,0.0,800.0,43,2.0,0.0,1.0,2.0,1.5,2,2,994.552728605694,580.0,55421.071857589865,1,1,3,4,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.010465333501495056,36947.381238393245,9,5,9,9_0,9_4,9_1_0 +8362,2,31.0,0.0,1,111,1200.0,0.0,0.0,21,35,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,2,2,2,1,2,2,2,2,3,40.0,2,,1,108370,2,2,0,0,1,,0.0,650.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1049.52637072574,1200.0,42916.47531461911,1,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.027961289719224236,28610.983543079405,8,4,8,8_0,8_4,8_1_0 +8363,2,37.0,0.0,1,111,1200.0,0.0,0.0,0,42,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,1,108371,2,1,0,0,1,,150.0,571.0,12,1.0,0.0,3.0,1.0,1.0,1,1,560.182800529877,1200.0,28535.549284414028,0,1,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04205280886796996,28535.549284414028,8,4,8,8_0,8_3,8_1_0 +8364,2,51.0,0.0,5,112,540.0,1653.0,0.0,38,34,0.0,0.0,920.8082934209131,2193.0,0.0,3138.227191244471,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,108372,1,2,2,0,1,,605.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,767.616785396229,540.0,130229.52892267663,1,1,1,2,110.0,10,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01683949883057695,50088.280354875635,10,5,10,10_1,10_2,10_0_0 +8365,2,27.0,0.0,2,112,0.0,0.0,0.0,54,46,0.0,0.0,0.0,2144.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108373,2,3,1,0,1,,494.0,750.0,43,2.0,0.0,4.0,2.0,1.5,2,2,815.623035986341,0.0,38510.64407207998,1,1,2,3,105.0,6,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05567291982930997,25673.762714719986,7,4,7,7_1,7_0,7_0_1 +8367,2,76.0,0.0,2,211,550.0,460.0,0.0,77,75,0.0,0.0,937.8602988546337,1010.0,0.0,873.3118620523029,50,0,0,0,0,0,0,0,0,0,,1,,2,108375,2,1,2,0,1,,320.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,255.150863990734,550.0,49590.18793129105,5,5,0,1,110.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02036693229312602,33060.12528752737,8,4,8,8_1,8_1,8_0_1 +8368,2,51.0,0.0,1,112,0.0,0.0,3100.0,85,42,0.0,0.0,1953.9867002857056,3100.0,0.0,3709.8696574505107,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,108376,2,1,3,0,1,,573.0,,42,1.0,2.0,7.0,3.0,2.0,3,3,150.129514138884,0.0,56580.986697248234,5,1,1,2,150.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05478872287235609,28290.493348624117,8,4,8,8_1,8_0,8_1_0 +8369,2,81.0,0.0,9,111,310.0,804.0,0.0,0,74,0.0,0.0,528.612168445339,1114.0,0.0,1526.3972545435904,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,108377,2,1,1,0,1,,265.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,325.122027102196,310.0,19722.892400337703,0,5,0,1,56.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05648258771522404,19722.892400337703,5,3,5,5_1,5_3,5_0_0 +8371,2,64.0,0.0,5,111,1100.0,1520.0,0.0,75,74,0.0,0.0,1875.7205977092674,2620.0,0.0,2885.7261528684794,71,0,0,0,0,0,0,0,0,0,,1,,3,108379,2,1,2,0,1,,600.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,664.64065845936,1100.0,63494.82285954365,5,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04126320669947658,31747.411429771826,8,4,8,8_1,8_4,8_0_0 +8372,2,43.0,0.0,9,120,1800.0,0.0,0.0,0,64,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,108380,2,1,1,0,1,,364.0,,32,1.0,2.0,4.0,3.0,1.6,1,1,1840.02413262901,1800.0,19713.581251759,0,1,1,2,98.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09130761057630714,12320.988282349374,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +8373,2,76.0,0.0,7,111,1080.0,,,77,72,0.0,132.4327277010224,,1456.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,108381,1,1,0,0,2,,572.0,,41,0.0,5.0,4.0,4.0,2.5,4,4,101.31773022259395,1080.0,17854.89604898441,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08154626025295832,7141.958419593764,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8374,2,48.0,0.0,5,111,0.0,0.0,1280.0,0,53,0.0,0.0,806.807411730872,1280.0,0.0,1531.8171488827913,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,108382,1,1,0,0,1,,0.0,530.0,12,1.0,3.0,4.0,1.0,1.0,1,1,2032.58013783983,0.0,15065.02036586211,0,1,2,3,72.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08496503615093193,15065.02036586211,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +8375,2,74.0,0.0,5,111,1440.0,,,86,78,0.0,0.0,,1580.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,3,108383,1,3,0,0,2,,368.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,99.30578473873457,1440.0,21447.2733253831,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07366903829821815,14298.182216922067,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8376,2,56.0,0.0,2,111,450.0,700.0,0.0,52,67,0.0,0.0,767.3402445174275,1150.0,0.0,1328.9528335578523,71,2,2,2,1,1,2,2,2,2,15.0,1,,2,108384,2,3,4,0,1,,340.0,313.0,43,2.0,0.0,4.0,3.0,2.0,3,3,1203.22874321643,450.0,20740.81280458844,1,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.055446235923096915,10370.40640229422,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +8377,2,87.0,0.0,2,111,2300.0,0.0,0.0,0,77,0.0,0.0,3921.9612497557405,2370.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108385,2,3,3,0,1,,139.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1908.96386313275,2300.0,11307.995411239426,0,5,0,1,90.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20958621876025624,11307.995411239426,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +8378,2,77.0,0.0,5,111,237.0,60.0,0.0,0,75,0.0,0.0,404.1325287791785,297.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,2,,3,108386,2,2,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,414.995220368138,237.0,21564.292285877727,0,5,0,1,97.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013772768244033808,21564.292285877727,6,3,6,6_0,6_2,6_0_0 +8379,2,37.0,0.0,8,111,1130.0,0.0,0.0,54,67,0.0,34.43250920226582,1926.8766140104292,1192.0,49.88121211427475,0.0,50,0,0,0,0,0,0,0,0,1,20.0,1,2000.0,6,108387,2,1,2,0,1,,398.0,810.0,43,2.0,1.0,4.0,2.0,1.5,2,2,1382.41470549964,1130.0,32285.18813651154,4,1,2,3,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036920955670441305,21523.45875767436,6,3,6,6_1,6_3,6_0_0 +8380,2,86.0,0.0,2,211,252.0,1450.0,0.0,0,78,0.0,0.0,429.7105369297594,1702.0,0.0,2752.830869512694,71,0,0,0,0,0,0,0,0,0,,1,,2,108388,1,2,2,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1019.015233104,252.0,16158.418266595563,0,5,0,1,60.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10533209203518139,16158.418266595563,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +8381,2,60.0,0.0,5,111,375.0,1000.0,0.0,0,37,0.0,0.0,639.4502037645229,1375.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,1,10.0,1,,3,108389,2,1,2,0,1,,227.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,718.956211158982,375.0,92851.78685652763,0,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01480854646475051,92851.78685652763,10,5,10,10_1,10_4,10_0_0 +8382,0,53.0,0.0,7,112,216.0,,,0,55,0.0,0.0,,348.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,5,108390,1,1,0,0,2,,300.0,,22,2.0,2.0,3.0,2.0,1.5,2,2,99.6390625769713,216.0,7928.032598601553,0,4,5,0,78.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04389487501115783,5285.3550657343685,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +8383,2,58.0,0.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,382.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,20.0,1,,2,108391,1,3,3,0,2,,245.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,939.04198531088,0.0,47375.626119062406,7,1,0,1,75.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.008063217972887025,31583.750746041605,8,4,8,8_1,8_2,8_0_1 +8384,2,74.0,0.0,2,111,450.0,650.0,0.0,0,78,0.0,0.0,767.3402445174275,1100.0,0.0,1234.027631160863,70,2,2,2,1,2,2,2,2,0,,8,,2,108392,2,2,0,0,1,,0.0,310.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2199.45132922826,450.0,17844.77713296283,0,5,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06164268636160676,17844.77713296283,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +8385,2,38.0,0.0,1,111,760.0,0.0,0.0,0,38,0.0,0.0,1295.9524129627664,760.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,108393,2,1,0,0,2,,0.0,872.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1083.02355205286,760.0,44142.2219077107,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017217076240270638,44142.2219077107,10,5,10,10_0,10_4,10_1_0 +8386,2,29.0,0.0,2,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,534.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,,2,108394,2,2,0,1,1,329.0,0.0,304.0,42,1.0,0.0,2.0,3.0,1.8,2,2,893.117630724955,0.0,26250.57514836582,6,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020342411432202206,14583.652860203234,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8387,2,46.0,0.0,5,111,650.0,0.0,0.0,85,62,0.0,0.0,1108.3803531918397,878.0,0.0,0.0,50,2,2,2,1,2,2,2,2,3,90.0,2,,3,108395,1,2,0,1,2,,0.0,,42,1.0,1.0,3.0,4.0,2.1,2,2,763.890370857378,650.0,27814.519556190568,6,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0315662471978448,13245.009312471699,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +8388,2,42.0,0.0,2,111,15.0,20.0,0.0,0,43,0.0,0.0,25.578008150580917,35.0,0.0,37.970080958795776,20,1,2,2,2,1,1,2,2,3,30.0,2,,2,108396,2,2,0,1,1,389.0,0.0,281.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1049.50754812339,15.0,19641.70210637212,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0017819229621981374,19641.70210637212,5,3,5,5_0,5_4,5_0_1 +8389,2,31.0,0.0,8,112,0.0,0.0,0.0,46,52,0.0,0.0,0.0,442.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,108397,2,1,2,0,1,,560.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,674.222431173557,0.0,41931.03002466546,1,1,1,2,100.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010541119541780835,19967.1571546026,5,3,5,5_1,5_0,5_0_0 +8390,2,60.0,0.0,6,112,1200.0,0.0,0.0,0,11,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,4,108398,1,1,2,0,1,,130.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,395.298861359634,1200.0,15286.360510476032,0,1,0,1,117.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08242642185080604,15286.360510476032,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8391,2,36.0,0.0,2,112,300.0,0.0,0.0,0,55,0.0,0.0,511.56016301161833,1038.0,0.0,0.0,43,2,2,2,2,1,1,1,2,2,15.0,2,,2,108399,1,3,0,1,2,974.0,250.0,247.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1102.32436998676,300.0,19453.18799189227,0,1,2,3,65.0,10,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.05335886336124543,19453.18799189227,5,3,5,5_0,5_1,5_0_1 +8392,2,68.0,0.0,1,111,0.0,0.0,1215.0,0,78,0.0,0.0,765.8367228539137,1242.0,37.410909085706066,1454.029559291087,71,0,0,0,0,0,0,0,0,0,,1,,1,108400,1,1,1,0,2,,150.0,370.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1905.95375490404,0.0,17781.54782313046,0,5,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06984768774652964,17781.54782313046,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +8393,2,77.0,0.0,1,221,1258.0,1170.0,0.0,77,72,0.0,0.0,2145.142283562053,2428.0,0.0,2221.249736089553,50,0,0,0,0,0,0,0,0,0,,1,,1,108401,2,1,1,0,1,,360.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2512.17764901119,1258.0,17194.929526910528,5,5,0,1,120.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14120441704632256,11463.286351273686,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +8394,2,64.0,0.0,6,120,400.0,0.0,0.0,75,86,0.0,463.51454695357836,682.0802173488245,750.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,108402,2,1,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,997.300725565818,400.0,22533.839312855827,5,5,0,1,80.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03328327630223741,15022.559541903885,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +8395,2,68.0,0.0,2,120,2000.0,0.0,0.0,78,78,0.0,331.081819252556,3410.4010867441225,2550.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108403,2,1,1,0,1,,500.0,,41,1.0,4.0,7.0,3.0,2.0,3,3,2373.63902012167,2000.0,53330.00920230744,5,5,0,1,125.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04781548021727453,26665.00460115372,7,4,7,7_1,7_0,7_0_1 +8396,2,52.0,0.0,1,120,500.0,0.0,0.0,62,56,1845.6949893140527,0.0,852.6002716860306,2350.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108404,2,2,4,0,1,,600.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,738.982519020221,500.0,12882.030295900451,4,1,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.18242466024535425,8588.020197266967,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8397,2,26.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,390.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,7.0,2,,2,108405,2,2,0,0,1,,0.0,540.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1448.68396116072,0.0,29410.226576639943,0,1,2,3,49.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013260693486454488,29410.226576639943,8,4,8,8_0,8_2,8_0_1 +8398,2,51.0,0.0,7,111,1200.0,,,22,22,0.0,0.0,,1452.0,349.1684847999233,,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,108406,2,1,0,0,2,,0.0,550.0,43,3.0,0.0,4.0,5.0,2.8,4,3,149.70731316595987,1200.0,39921.476435626595,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03637140029981985,14257.670155580927,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8400,1,39.0,521.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1617.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,1,,2,108408,2,1,2,0,1,,357.0,765.0,42,1.0,0.0,7.0,8.0,3.499999999999999,3,2,1432.76285406374,0.0,43639.972045042334,6,1,2,3,170.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03705318597204962,12468.56344144067,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +8401,2,58.0,0.0,5,111,1082.0,413.0,0.0,75,52,0.0,0.0,1845.0269879285702,1495.0,0.0,784.0821717991329,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,108409,1,1,1,0,1,,399.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,360.609066413081,1082.0,63046.20616868524,5,1,0,1,203.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02371276704580774,42030.804112456826,9,5,9,9_1,9_3,9_0_0 +8402,2,33.0,0.0,6,112,868.0,0.0,0.0,43,21,0.0,238.3789098618403,1480.114071646949,4148.0,4295.326598729215,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,108410,1,3,2,0,1,,557.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,710.017114693342,868.0,32198.152356094914,4,1,1,2,169.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1288272679166576,15332.45350290234,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8403,2,36.0,0.0,2,111,600.0,0.0,0.0,0,52,0.0,463.51454695357836,1023.1203260232367,1070.0,166.2707070475825,0.0,50,2,2,1,2,1,2,1,2,0,,7,,2,108411,1,1,0,0,1,,240.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,577.932326263809,600.0,22159.597736336433,0,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.048286075078224744,17045.844412566486,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +8404,1,28.0,270.0,1,111,0.0,0.0,600.0,0,68,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,71,2,2,2,2,1,2,2,2,0,,2,,1,108412,2,2,0,0,2,,144.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1881.12915006371,0.0,8198.213476388215,0,4,2,3,23.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.07318667679587365,8198.213476388215,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +8405,2,58.0,0.0,6,111,700.0,900.0,0.0,77,43,0.0,0.0,1193.6403803604428,1600.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,1,15.0,1,,4,108413,2,1,2,0,1,,650.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,623.495137775669,700.0,65489.33343223586,5,1,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024431459539217586,32744.66671611793,8,4,8,8_1,8_4,8_0_0 +8406,2,37.0,0.0,9,112,492.0,500.0,0.0,0,55,0.0,0.0,838.958667339054,992.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,108414,1,2,1,0,1,,280.0,479.0,32,1.0,0.0,3.0,2.0,1.3,1,1,410.666384928039,492.0,22828.847746132316,0,1,2,3,90.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04345379193166092,17560.652112409472,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +8407,1,46.0,317.0,5,111,316.0,244.0,0.0,85,52,0.0,0.0,538.8433717055714,560.0,0.0,463.2349876973085,71,2,1,2,1,1,2,1,2,2,20.0,2,,3,108415,1,3,0,1,1,791.0,262.0,340.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,4,2,415.562662941022,316.0,21590.454536911686,6,1,2,3,93.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.02593738816580296,6964.66275384248,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8408,1,73.0,19.0,2,111,220.0,120.0,0.0,0,78,0.0,0.0,375.14411954185346,340.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,8,,2,108416,1,1,0,1,1,,176.0,455.0,11,0.0,3.0,2.0,1.0,1.0,1,1,285.83443917518,220.0,14125.427216140068,0,5,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024070068451558582,14125.427216140068,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +8409,2,62.0,0.0,2,112,820.0,918.0,0.0,77,75,0.0,0.0,1398.2644455650902,1738.0,0.0,1742.8267160087264,50,0,0,0,0,0,0,0,0,0,,1,,2,108417,2,1,2,0,1,,605.0,,41,2.0,0.0,6.0,4.0,2.5,4,4,796.543805656945,820.0,111705.28105510556,5,5,0,1,80.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01555879886415239,44682.11242204222,10,5,10,10_1,10_1,10_0_1 +8410,2,62.0,0.0,8,111,450.0,920.0,0.0,75,77,0.0,0.0,767.3402445174275,1370.0,0.0,1746.6237241046058,70,2,2,1,2,1,2,2,2,0,,1,2002.0,6,108418,2,1,1,0,1,,450.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1711.31967487668,450.0,19295.9341548659,6,5,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.07099941308902756,12863.956103243932,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +8411,2,67.0,0.0,5,111,1200.0,0.0,0.0,77,78,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,3,108419,1,3,3,0,2,,240.0,454.0,41,0.0,4.0,5.0,2.0,1.5,2,2,438.146816192393,1200.0,23429.3246752571,7,5,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.05121786550114603,15619.549783504734,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8412,2,39.0,0.0,2,111,0.0,0.0,0.0,56,67,0.0,0.0,0.0,761.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,108420,1,3,0,1,1,597.0,0.0,348.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1144.72974271441,0.0,26502.96401912294,4,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028713769503324545,14723.868899512745,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8413,2,55.0,0.0,9,111,480.0,,,43,63,0.0,0.0,,546.0,91.44888887617039,,60,0,0,0,0,0,0,0,0,0,,1,2011.0,6,108421,2,1,0,0,1,,300.0,,43,3.0,1.0,6.0,4.0,2.5,4,4,253.1090024709405,480.0,55109.04627808792,1,4,0,1,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00990762927096956,22043.618511235167,6,3,6,6_1,6_2,6_0_0 +8414,2,59.0,0.0,8,112,320.0,1280.0,0.0,56,78,0.0,0.0,545.6641738790596,1600.0,0.0,2430.0851813629297,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,108422,2,1,2,0,1,,180.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1614.50523761245,320.0,22240.037591245462,1,7,1,2,120.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07194232444237512,14826.691727496975,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8415,2,89.0,0.0,2,112,593.0,2014.0,0.0,0,78,0.0,0.0,1011.1839222196322,2607.0,0.0,3823.587152550735,71,0,0,0,0,0,0,0,0,0,,1,,2,108423,2,1,2,0,2,,235.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,944.838960413347,593.0,23167.79963505478,0,5,0,1,95.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11252687096168577,23167.79963505478,6,3,6,6_1,6_1,6_0_1 +8416,2,53.0,0.0,7,111,0.0,,,0,43,0.0,0.0,,456.0,0.0,,33,0,0,0,0,0,0,0,0,2,8.0,2,,5,108424,2,1,0,0,2,,427.0,700.0,32,1.0,1.0,3.0,2.0,1.3,1,1,118.18100356284391,0.0,51669.80250734713,0,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008825270813356788,39746.00192872856,9,5,9,9_0,9_2,9_0_0 +8417,2,53.0,0.0,8,111,443.0,1233.0,0.0,42,38,0.0,0.0,755.4038407138231,3895.0,0.0,2340.85549110976,31,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,108425,2,1,1,0,1,,298.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,940.400654228897,443.0,97902.09658378751,1,1,0,1,173.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039784643392866914,48951.048291893756,10,5,10,10_1,10_1,10_0_0 +8418,2,38.0,0.0,5,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,217.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,3,108426,1,1,0,1,1,718.0,0.0,351.0,12,1.0,0.0,2.0,1.0,1.0,1,1,243.698166570718,0.0,17095.399154893756,0,1,2,3,46.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012693473725524639,17095.399154893756,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +8419,2,57.0,0.0,1,111,384.0,544.0,0.0,0,74,0.0,0.0,654.7970086548714,928.0,0.0,1032.7862020792452,10,0,0,0,0,0,0,0,0,0,,2,,1,108427,2,1,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,938.368529330551,384.0,60300.28583268785,0,7,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015389645126639609,60300.28583268785,10,5,10,10_0,10_4,10_1_0 +8420,2,30.0,0.0,6,111,1650.0,0.0,0.0,85,38,0.0,0.0,2813.5808965639008,1650.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,2,,4,108428,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,262.645926801151,1650.0,40045.61188612284,6,1,1,2,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04120301631779488,16685.67161921785,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +8421,2,90.0,0.0,2,111,430.0,125.0,0.0,0,90,0.0,0.0,733.2362336499863,555.0,0.0,237.31300599247362,70,2,1,2,2,1,2,2,2,0,,2,,2,108429,1,2,0,1,2,,0.0,460.0,11,0.0,5.0,2.0,1.0,1.0,1,1,641.578466826212,430.0,10150.927561837456,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05467480647645735,10150.927561837456,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +8422,0,83.0,0.0,2,111,250.0,880.0,0.0,0,77,0.0,0.0,426.3001358430153,1130.0,0.0,1670.6835621870143,70,2,2,2,2,1,2,2,2,0,,1,,2,108430,1,2,2,0,1,,180.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,1129.4602579851,250.0,24545.0,0,5,5,0,46.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.04603788959054797,24545.0,7,4,7,7_1,7_3,7_0_1 +8423,2,67.0,0.0,1,400,708.0,0.0,0.0,77,74,0.0,0.0,1207.2819847074193,836.0,177.35542085075468,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,108431,2,1,2,0,1,,135.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,884.058752906889,708.0,44725.183009254266,5,5,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018691930222555376,29816.788672836177,8,4,8,8_1,8_0,8_1_0 +8424,2,48.0,0.0,9,120,1000.0,,,42,43,0.0,0.0,,1000.0,0.0,,33,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,108432,2,2,0,0,1,,100.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,146.117611309136,1000.0,90470.52864890403,1,1,1,2,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011053323274817783,39335.01245604523,9,5,9,9_1,9_2,9_0_0 +8425,2,49.0,0.0,2,111,220.0,79.0,0.0,0,52,0.0,1190.5702220321914,375.14411954185346,1198.0,0.0,149.98181978724332,30,0,0,0,0,0,0,0,0,3,15.0,8,,2,108433,1,2,0,1,1,,190.0,451.0,12,1.0,2.0,4.0,1.0,1.0,1,1,338.300505959537,220.0,20088.58927798878,0,1,2,3,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.059635845176677374,20088.58927798878,5,3,5,5_0,5_3,5_0_1 +8426,1,41.0,300.0,2,111,350.0,300.0,0.0,0,85,0.0,0.0,596.8201901802214,650.0,0.0,569.5512143819367,71,2,2,2,2,2,2,2,1,0,,8,,2,108434,2,2,0,0,1,,400.0,314.0,31,1.0,0.0,3.0,3.0,2.0,3,2,416.744541190908,350.0,10837.753458626292,0,6,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0599755292904023,5418.876729313146,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8427,2,91.0,0.0,2,400,360.0,,,0,78,0.0,0.0,,498.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,108435,2,3,0,0,2,,180.0,,21,0.0,8.0,4.0,2.0,1.5,2,2,91.52532425605514,360.0,15159.135360117358,0,5,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032851477882452566,10106.090240078238,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +8428,1,35.0,140.0,5,300,0.0,0.0,0.0,85,65,0.0,0.0,0.0,871.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,108436,1,2,2,0,1,,157.0,426.0,42,1.0,0.0,4.0,3.0,1.8,2,2,987.609633709372,0.0,27965.838535107538,6,1,2,3,81.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.031145141559283867,15536.576963948632,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +8429,2,45.0,0.0,2,111,450.0,0.0,0.0,64,52,0.0,0.0,767.3402445174275,450.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,15.0,2,,2,108437,2,1,0,1,1,,0.0,595.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1061.19774056556,450.0,23805.86455331412,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018902905164070317,15870.57636887608,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8430,2,59.0,0.0,9,111,3500.0,0.0,0.0,46,37,0.0,0.0,5968.201901802214,3865.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,108438,2,1,1,0,1,,755.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,922.988854957382,3500.0,260473.52251778706,4,1,1,2,180.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014838360393179961,173649.01501185805,10,5,10,10_1,10_3,10_0_0 +8431,2,57.0,0.0,1,112,1500.0,0.0,0.0,0,77,0.0,430.4063650283228,2557.8008150580918,2025.0,277.1178450793042,0.0,60,2,2,2,1,1,2,2,2,0,,1,,1,108439,2,2,1,0,1,,93.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,855.087271884837,1500.0,12851.577194652433,0,5,0,1,90.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.15756820889210443,12851.577194652433,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8432,1,48.0,380.0,2,111,720.0,240.0,0.0,65,68,0.0,0.0,1227.744391227884,960.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,108440,2,2,0,1,1,636.0,0.0,323.0,43,3.0,0.0,4.0,6.0,3.3,5,3,271.344401832477,720.0,38211.35551075672,4,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025123421746442737,11579.19863962325,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +8433,2,42.0,0.0,9,112,2150.0,0.0,0.0,55,62,0.0,158.91927324122688,3666.1811682499315,2270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,108441,2,1,1,0,1,,107.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,2382.34414701811,2150.0,28788.479242600537,4,1,1,2,100.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07885098691287956,15993.59957922252,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8434,2,50.0,0.0,7,111,300.0,,,84,47,0.0,0.0,,480.0,249.40606057137379,,31,0,0,0,0,0,0,0,0,0,,1,,5,108442,2,2,0,0,2,,270.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,42.60848796401718,300.0,38808.0,3,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012368583797155226,25872.0,7,4,7,7_1,7_2,7_0_0 +8435,1,39.0,431.0,5,111,400.0,492.0,0.0,62,56,0.0,0.0,682.0802173488245,892.0,0.0,934.0639915863762,50,0,0,0,0,0,0,0,0,0,,2,,3,108443,2,1,0,1,1,1423.0,600.0,388.0,43,2.0,3.0,5.0,5.0,2.8,4,2,283.700966594731,400.0,20707.835996089823,4,1,2,3,93.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0430754811931306,7395.655712889223,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8436,2,71.0,0.0,6,221,1564.0,0.0,0.0,0,77,0.0,0.0,2666.9336498339035,1594.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,108444,2,1,2,0,1,,310.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1612.97045690788,1564.0,15779.603829564549,0,5,0,1,105.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1010164778036755,15779.603829564549,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +8437,2,71.0,0.0,1,111,350.0,790.0,0.0,0,77,0.0,0.0,596.8201901802214,1140.0,0.0,1499.8181978724333,50,2,2,2,1,2,2,2,2,0,,2,,1,108445,2,1,0,0,1,,181.0,305.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1471.22310358067,350.0,23421.16801466023,0,5,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.04867391751284262,23421.16801466023,6,3,6,6_0,6_3,6_1_0 +8438,2,45.0,0.0,2,111,500.0,0.0,0.0,62,37,1054.6828510366015,0.0,852.6002716860306,1600.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,108446,2,2,5,0,1,,230.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,1258.36420870765,500.0,74140.60351335918,1,1,0,1,65.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021580617423915368,37070.30175667959,9,5,9,9_1,9_2,9_0_1 +8439,2,57.0,0.0,2,111,460.0,0.0,0.0,77,63,0.0,0.0,784.3922499511482,680.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108447,2,1,0,1,1,698.0,0.0,424.0,42,2.0,4.0,5.0,3.0,2.0,3,3,374.608874010911,460.0,52380.82191010514,5,1,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012981850517103408,26190.41095505257,7,4,7,7_0,7_2,7_0_1 +8440,2,47.0,0.0,1,111,600.0,0.0,0.0,85,69,0.0,264.8654554020448,1023.1203260232367,1790.0,1371.7333331425557,0.0,71,2,2,2,1,1,2,2,2,2,30.0,2,,1,108448,2,2,0,0,1,,220.0,420.0,42,1.0,0.0,2.0,6.0,3.0999999999999996,4,3,423.856181957152,600.0,14234.785183948596,6,1,2,3,50.0,4,4,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,1,0,0,0,0.1257482973482759,4591.866188370515,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +8441,2,89.0,0.0,1,111,260.0,2360.0,0.0,0,86,0.0,0.0,443.3521412767359,2620.0,0.0,4480.469553137902,50,0,0,0,0,0,0,0,0,0,,1,,1,108449,1,3,4,0,2,,230.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,256.06731267347,260.0,16721.63875243673,0,5,0,1,75.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15668320783560793,16721.63875243673,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +8442,2,30.0,0.0,7,221,540.0,0.0,0.0,54,62,0.0,0.0,920.8082934209131,690.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,108450,2,1,0,0,1,,200.0,567.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2873.10612371834,540.0,29645.698584947975,4,1,2,3,67.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02327487739993194,16469.83254719332,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +8443,1,63.0,480.0,7,400,641.0,,,0,56,0.0,0.0,,733.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,5,108451,2,2,0,0,1,,732.0,540.0,21,0.0,1.0,4.0,3.0,1.6,1,1,37.71523486049669,641.0,21514.140374035458,0,6,2,3,55.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03407061529098453,13446.337733772161,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +8444,2,60.0,0.0,2,111,600.0,0.0,0.0,52,67,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,2,,2,108452,1,2,0,1,1,,0.0,666.0,43,3.0,0.0,3.0,3.0,2.0,3,3,617.16185298835,600.0,37600.9944863142,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015957024759501632,18800.4972431571,5,3,5,5_0,5_4,5_0_1 +8445,2,98.0,0.0,2,111,1890.0,0.0,0.0,0,86,0.0,0.0,3222.8290269731956,2285.0,547.3077440316258,0.0,71,2,2,2,2,1,1,2,2,0,,1,,2,108453,1,3,2,0,2,,25.0,0.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1673.83671862301,1890.0,21462.850540942476,0,6,2,3,70.0,7,5,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.10646302529298893,21462.850540942476,6,3,6,6_1,6_2,6_0_1 +8446,2,54.0,0.0,2,111,680.0,925.0,0.0,85,74,0.0,0.0,1159.5363694930015,1605.0,0.0,1756.1162443443047,60,1,2,2,1,1,2,2,2,0,,1,,2,108454,2,2,3,0,1,,650.0,349.0,41,0.0,2.0,4.0,2.0,1.5,2,2,304.352521892238,680.0,19848.72632411541,6,5,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08086161166170089,13232.48421607694,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +8447,2,70.0,0.0,1,221,700.0,0.0,0.0,77,78,1582.0242765549024,0.0,1193.6403803604428,2550.0,484.95622888878233,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,108455,1,2,1,0,2,,114.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1453.88217432632,700.0,28562.90378915737,5,5,0,1,120.0,1,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.08927663723630205,19041.935859438247,5,3,5,5_1,5_1,5_1_0 +8449,2,58.0,0.0,2,111,285.0,590.0,0.0,0,55,0.0,0.0,485.98215486103743,875.0,0.0,1120.1173882844755,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,108457,2,1,0,0,1,,0.0,456.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1354.94608836593,285.0,21744.633590765443,0,1,2,3,72.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04023981348536482,21744.633590765443,6,3,6,6_0,6_3,6_0_1 +8450,1,44.0,331.0,7,112,1900.0,0.0,0.0,85,65,0.0,0.0,3239.8810324069163,1980.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,108458,2,1,2,0,1,,623.0,456.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,4,2,1443.40332867108,1900.0,35934.14706193775,6,1,2,3,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05510079303085115,11591.660342560566,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +8451,2,52.0,0.0,2,111,453.0,102.0,0.0,77,63,0.0,0.0,772.4558461475438,555.0,0.0,193.6474128898585,50,0,0,0,0,0,0,0,0,2,18.0,2,,2,108459,1,1,0,1,1,,0.0,,42,2.0,4.0,4.0,3.0,2.0,3,3,1432.1253035613,453.0,38612.89536390882,5,1,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014373436510507168,19306.44768195441,5,3,5,5_0,5_3,5_0_1 +8452,2,63.0,0.0,2,111,350.0,0.0,0.0,0,56,0.0,0.0,596.8201901802214,574.0,91.44888887617039,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,108460,1,1,0,1,2,,0.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,357.120331472385,350.0,15499.557554421946,0,1,0,1,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.03703331517590582,15499.557554421946,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +8453,2,57.0,0.0,2,111,0.0,0.0,320.0,52,78,0.0,0.0,201.701852932718,320.0,0.0,382.95428722069784,70,0,0,0,0,0,0,0,0,0,,2,,2,108461,1,2,0,1,2,852.0,0.0,623.0,42,1.0,3.0,4.0,2.0,1.5,2,2,371.05684855487,0.0,36824.41996923194,1,5,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00868988568638341,24549.613312821293,7,4,7,7_0,7_2,7_0_1 +8454,2,69.0,0.0,9,111,660.0,,,0,77,0.0,0.0,,890.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,2,2009.0,6,108462,2,1,0,0,2,,840.0,650.0,21,1.0,2.0,1.0,2.0,1.5,2,2,196.55296636041243,660.0,25926.88378260422,0,5,2,3,28.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03432730317544564,17284.589188402813,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +8456,1,38.0,228.0,2,111,0.0,0.0,0.0,90,48,0.0,0.0,0.0,353.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,2,108464,2,2,0,1,1,489.0,0.0,344.0,43,2.0,0.0,3.0,4.0,2.3,3,3,586.791759252481,0.0,21817.5715191072,4,1,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01617961924363822,9485.900660481393,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +8457,2,38.0,0.0,9,300,864.0,0.0,0.0,52,48,632.8097106219609,0.0,1473.293269473461,1489.0,34.63973063491302,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,108465,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,695.403590172103,864.0,49615.74397565507,1,1,1,2,130.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030010635348541925,23626.544750311936,6,3,6,6_1,6_0,6_0_0 +8458,2,75.0,0.0,6,111,1200.0,0.0,0.0,74,75,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,108466,2,1,2,0,1,,280.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,578.677306855648,1200.0,70406.56265343048,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017043865724660986,46937.70843562032,10,5,10,10_1,10_4,10_0_0 +8459,2,84.0,0.0,2,111,397.0,82.0,0.0,72,74,0.0,0.0,676.9646157187083,479.0,0.0,155.6773319310627,10,0,0,0,0,0,0,0,0,0,,2,,2,108467,2,2,0,1,1,,629.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1582.48561103272,397.0,42213.993621154885,5,5,0,1,88.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011346948225243408,28142.662414103255,8,4,8,8_0,8_2,8_0_1 +8460,2,59.0,0.0,2,111,485.0,1421.0,0.0,75,43,0.0,0.0,827.0222635354497,1906.0,0.0,2697.77425212244,33,0,0,0,0,0,0,0,0,3,75.0,1,,2,108468,2,1,2,0,1,,313.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1319.63789315337,485.0,81266.43115243688,5,1,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02345371850309002,54177.62076829126,10,5,10,10_1,10_3,10_0_1 +8461,2,80.0,0.0,1,111,1000.0,0.0,0.0,77,75,0.0,0.0,1705.2005433720612,1120.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108469,2,3,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1582.9713715166,1000.0,25539.011434213837,5,5,0,1,80.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043854477409394556,17026.007622809226,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +8462,1,42.0,394.0,7,111,930.0,,,0,54,0.0,0.0,,974.0,60.965925917446924,,71,2,2,2,2,1,2,2,2,0,,2,,5,108470,2,3,0,0,1,,530.0,392.0,32,1.0,0.0,4.0,3.0,1.6,1,1,126.34205554870161,930.0,9438.015412786852,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.10319966194168334,5898.759632991782,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8463,1,33.0,345.0,2,111,370.0,320.0,0.0,85,63,0.0,0.0,630.9242010476627,690.0,0.0,607.5212953407324,71,0,0,0,0,0,0,0,0,2,60.0,2,,2,108471,1,3,0,1,2,600.0,0.0,311.0,42,1.0,0.0,3.0,4.0,2.1,2,2,334.894873590808,370.0,18659.36280403492,6,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03697875470060498,8885.410859064248,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8464,2,37.0,0.0,2,111,0.0,0.0,0.0,56,64,0.0,0.0,0.0,1255.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,108472,2,1,2,0,1,,0.0,750.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1701.04533611463,0.0,24222.0,1,1,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05181240194864173,16148.0,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +8465,2,42.0,0.0,7,111,233.0,0.0,0.0,0,46,0.0,0.0,397.31172660569024,233.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,20.0,2,,5,108473,2,1,0,1,1,308.0,113.0,346.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1304.7650222874,233.0,32526.21890658224,0,1,2,3,45.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007163451757770973,32526.21890658224,8,4,8,8_0,8_3,8_0_0 +8466,2,34.0,0.0,2,112,1900.0,0.0,0.0,47,53,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,108474,1,1,2,0,2,,324.0,830.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1638.16365679267,1900.0,48739.78936229356,1,1,2,3,150.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03898252382415695,23209.423505854076,6,3,6,6_1,6_2,6_0_1 +8467,1,35.0,427.0,2,111,516.0,0.0,0.0,0,85,0.0,0.0,879.8834803799836,516.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108475,2,1,0,1,1,980.0,451.0,385.0,31,1.0,0.0,5.0,4.0,2.3,3,2,257.193661179859,516.0,13105.156151135761,0,6,2,3,85.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03937381546997292,5697.89397875468,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8468,2,50.0,0.0,1,120,1600.0,0.0,0.0,0,42,0.0,0.0,2728.320869395298,3000.0,1939.8249155551293,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,108476,2,1,2,0,1,,455.0,,32,2.0,0.0,7.0,3.0,1.8,2,1,644.089905157398,1600.0,25614.564802765955,0,4,0,1,164.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1171208655349104,14230.31377931442,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +8469,1,34.0,374.0,2,111,0.0,0.0,450.0,55,43,0.0,0.0,283.6432306866347,450.0,0.0,538.5294664041063,31,2,2,2,1,1,2,2,2,0,,2,,2,108477,2,3,0,1,1,1416.0,0.0,341.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,3,303.505040986352,0.0,9983.004444444443,4,4,2,3,125.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04507661020329663,3442.415325670498,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8470,2,69.0,0.0,2,111,200.0,94.0,0.0,0,77,0.0,0.0,341.04010867441224,294.0,0.0,178.45938050634015,70,2,1,2,1,1,2,2,2,0,,2,,2,108478,2,3,0,1,1,557.0,0.0,308.0,11,0.0,5.0,3.0,1.0,1.0,1,1,310.216828057597,200.0,16800.816271154767,0,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.017499149758858266,16800.816271154767,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8471,2,57.0,0.0,8,120,500.0,,,0,46,0.0,0.0,,632.0,182.89777775234077,,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,108479,2,1,0,0,1,,350.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,138.62086477767136,500.0,61960.88616784348,0,1,1,2,180.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010199983232776873,41307.257445228985,9,5,9,9_1,9_2,9_0_0 +8472,2,86.0,0.0,2,111,300.0,,,0,86,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,108480,1,3,0,0,1,,350.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,94.9455381875873,300.0,9447.12,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03175570967659985,9447.12,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8473,2,39.0,0.0,2,111,300.0,0.0,0.0,37,37,0.0,0.0,511.56016301161833,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,,2,108481,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,879.905625219465,300.0,120920.96202161598,1,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002480959421629243,57581.4104864838,10,5,10,10_0,10_4,10_0_1 +8474,1,46.0,306.0,2,111,1100.0,0.0,0.0,0,53,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,108482,2,2,0,0,2,,0.0,500.0,32,1.0,0.0,1.0,2.0,1.3,1,1,971.740346700837,1100.0,10887.846667337573,0,4,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10103007817880899,8375.266667182748,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +8475,2,89.0,0.0,7,111,312.0,,,0,72,0.0,0.0,,400.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,5,108483,1,3,0,0,2,,136.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,119.64292257518935,312.0,11645.121363145368,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034349148242106366,11645.121363145368,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +8476,1,43.0,210.0,1,111,159.0,1056.0,0.0,0,46,0.0,0.0,271.1268863961577,1215.0,0.0,2004.8202746244172,10,2,2,2,1,1,1,2,2,0,,2,,1,108484,1,3,0,0,1,,0.0,615.0,12,1.0,1.0,1.0,1.0,1.0,1,1,2067.41822367127,159.0,4848.0,0,4,2,3,40.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.2506188118811881,4848.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +8477,2,41.0,0.0,8,111,1700.0,2210.0,0.0,37,38,0.0,0.0,2898.840923732504,3910.0,0.0,4195.693945946934,12,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,108485,2,1,1,0,1,,150.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,543.341145751496,1700.0,182245.87400495724,1,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021454532352779877,79237.33652389445,10,5,10,10_1,10_4,10_0_0 +8478,2,40.0,0.0,2,111,1200.0,1000.0,0.0,85,21,0.0,0.0,2046.2406520464733,2200.0,0.0,1898.504047939789,43,0,0,0,0,0,0,0,0,0,,1,,2,108486,2,1,1,0,1,,372.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,576.164266224258,1200.0,43852.96367798566,6,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05016764696121115,20882.363656183647,5,3,5,5_1,5_4,5_0_1 +8479,1,67.0,227.0,2,300,650.0,0.0,0.0,0,77,0.0,503.2443652638851,1108.3803531918397,1102.0,99.7624242285495,0.0,71,2,2,2,2,1,1,2,2,0,,1,,2,108487,1,3,4,0,2,,155.0,230.0,21,1.0,4.0,4.0,2.0,1.5,2,2,1803.90784707333,650.0,15061.683328697101,0,5,2,3,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,1,0,0,1,0.07316579269067182,10041.122219131401,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +8480,2,25.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,156.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,108488,1,2,0,1,2,291.0,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1605.00388960043,0.0,21354.26608099998,0,1,2,3,23.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007305331843682581,21354.26608099998,6,3,6,6_0,6_4,6_0_1 +8482,2,78.0,0.0,5,112,430.0,0.0,0.0,86,74,0.0,0.0,733.2362336499863,430.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,108490,2,2,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1094.36398241147,430.0,91455.04656250287,5,5,1,2,155.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004701763501985932,60970.03104166858,10,5,10,10_0,10_2,10_0_0 +8483,2,28.0,0.0,2,111,563.0,0.0,0.0,0,63,0.0,0.0,960.0279059184704,563.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108491,2,3,0,0,1,,0.0,524.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1884.41711915557,563.0,16174.180814925163,0,4,2,3,47.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034808563502670656,16174.180814925163,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8484,2,23.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1101.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,108492,2,1,0,0,1,,93.0,369.0,12,1.0,0.0,2.0,1.0,1.0,1,1,252.847304809406,0.0,15159.598420180628,0,1,2,3,53.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0726272536701458,15159.598420180628,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +8485,2,58.0,0.0,9,111,450.0,750.0,0.0,37,37,0.0,0.0,767.3402445174275,1200.0,0.0,1423.8780359548418,10,0,0,0,0,0,0,0,0,2,45.0,2,2012.0,6,108493,2,1,0,0,1,,240.0,1018.0,43,3.0,1.0,3.0,3.0,2.0,3,3,632.195659959826,450.0,98673.31245585765,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01216134302308773,49336.65622792883,10,5,10,10_0,10_4,10_0_0 +8486,0,65.0,0.0,5,111,200.0,,,77,11,0.0,0.0,,288.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,3,108494,2,1,0,0,2,,250.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,104.15114332750784,200.0,15861.308300395256,5,4,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018157392476434192,10574.205533596838,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +8487,2,46.0,0.0,7,111,0.0,,,47,31,0.0,0.0,,770.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,108495,2,1,0,0,1,,636.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,124.91184024441851,0.0,65103.0,4,1,1,2,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011827411947222094,22449.31034482759,6,3,6,6_1,6_3,6_0_0 +8488,2,42.0,0.0,9,111,210.0,496.0,0.0,0,37,0.0,0.0,358.0921141081328,706.0,0.0,941.6580077781354,10,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,108496,2,1,1,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1423.68102809037,210.0,37208.89960242441,0,1,1,2,83.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018973955358626067,37208.89960242441,9,5,9,9_1,9_2,9_0_0 +8489,2,58.0,0.0,2,112,960.0,0.0,0.0,0,77,1476.555991451242,0.0,1636.9925216371787,2459.0,137.1733333142556,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,108497,2,1,1,0,1,,240.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1797.16535771368,960.0,14537.28656595009,0,7,1,2,142.0,9,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1691512366385887,14537.28656595009,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +8490,1,44.0,35.0,2,111,700.0,0.0,0.0,0,56,0.0,893.9209119819011,1193.6403803604428,1465.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108498,2,3,3,0,1,,550.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,890.576755382776,700.0,13781.55350076155,0,1,1,2,70.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.1063015138256399,7656.4186115341945,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +8493,2,78.0,0.0,1,111,1200.0,0.0,0.0,77,75,0.0,0.0,2046.2406520464733,2278.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,108501,2,1,2,0,1,,234.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1758.68956245097,1200.0,34349.40461243869,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06631847118465295,22899.603074959126,6,3,6,6_1,6_3,6_1_0 +8494,2,66.0,0.0,7,211,583.0,1018.0,0.0,77,77,0.0,0.0,994.1319167859117,1601.0,0.0,1932.6771208027053,71,2,2,2,1,2,2,2,2,0,,1,,5,108502,2,1,3,0,1,,620.0,627.0,41,1.0,2.0,5.0,3.0,2.0,3,3,1435.83487828074,583.0,44347.533257855284,5,5,2,3,111.0,2,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.036101218768834556,22173.766628927642,6,3,6,6_1,6_1,6_0_0 +8495,1,29.0,285.0,5,111,350.0,1266.0,0.0,0,55,0.0,0.0,596.8201901802214,1736.0,166.2707070475825,2403.506124691773,50,2,2,2,1,1,2,2,2,2,2.0,2,,3,108503,2,1,0,0,1,,300.0,495.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1362.65210358636,350.0,16801.904530619868,0,1,2,3,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.10332162028633753,12924.541946630667,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8496,2,46.0,0.0,5,120,1123.0,0.0,0.0,63,37,0.0,0.0,1914.9402102068248,1123.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,3,108504,2,1,2,0,1,,118.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,2303.83650606024,1123.0,44749.569834847134,1,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025095213298017085,29833.046556564757,8,4,8,8_1,8_0,8_0_0 +8497,2,53.0,0.0,7,221,1700.0,0.0,0.0,46,38,0.0,145.67600047112464,2898.840923732504,1871.0,84.52094274918778,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,108505,2,1,3,0,1,,450.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,1718.2559327733,1700.0,59622.080664513196,1,1,1,2,130.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03138099139021847,29811.040332256598,8,4,8,8_1,8_1,8_0_0 +8498,2,60.0,0.0,1,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,3455.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108506,2,2,3,0,2,,187.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,999.071091373456,0.0,80171.08163572462,1,1,0,1,93.0,8,6,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.043095339734825724,53447.38775714975,10,5,10,10_1,10_2,10_1_0 +8499,2,51.0,0.0,1,211,2500.0,0.0,0.0,11,11,0.0,1191.8945493092015,4263.001358430153,3592.0,266.03313127613205,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108507,1,1,1,0,2,,0.0,,43,2.0,1.0,7.0,4.0,2.5,4,3,920.190678481015,2500.0,8452.83811251729,1,1,0,1,150.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.42494603021922633,3381.1352450069157,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +8500,2,72.0,0.0,7,112,670.0,,,0,77,0.0,0.0,,713.0,59.5803366920504,,70,0,0,0,0,0,0,0,0,0,,1,,5,108508,1,2,0,0,2,,184.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,124.21205812053016,670.0,18796.277442264,0,5,0,1,75.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0379330429756691,18796.277442264,5,3,5,5_1,5_2,5_0_0 +8501,2,81.0,0.0,1,300,420.0,0.0,0.0,71,78,2109.365702073203,0.0,716.1842282162656,2528.0,149.64363634282427,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108509,1,1,2,0,2,,90.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,806.023317471346,420.0,24580.617273504886,5,5,0,1,60.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10284526103927004,16387.07818233659,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8502,2,77.0,0.0,2,111,323.0,1310.0,0.0,77,77,0.0,0.0,550.7797755091758,1633.0,0.0,2487.0403028011237,70,0,0,0,0,0,0,0,0,0,,1,,2,108510,2,2,3,0,1,,367.0,,41,0.0,2.0,7.0,3.0,2.0,3,3,1268.78570659201,323.0,47550.45563680675,5,5,0,1,125.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034342467977025344,23775.227818403375,6,3,6,6_1,6_2,6_0_1 +8503,2,45.0,0.0,8,112,973.0,1300.0,0.0,45,42,0.0,0.0,1659.1601287010155,2273.0,0.0,2468.055262321726,10,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,108511,2,2,3,0,1,,940.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,632.539845943788,973.0,73702.02921697982,1,1,1,2,140.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03084039916062902,35096.20438903801,9,5,9,9_1,9_0,9_0_0 +8504,2,57.0,0.0,5,111,2400.0,,,45,33,0.0,0.0,,2688.0,399.049696914198,,10,0,0,0,0,0,0,0,0,1,15.0,1,,3,108512,2,2,0,0,2,,400.0,,43,2.0,3.0,4.0,5.0,2.5999999999999996,3,2,88.90892625310548,2400.0,69204.58444910604,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038841357424475115,26617.147865040788,7,4,7,7_1,7_2,7_0_0 +8505,2,60.0,0.0,5,111,692.0,0.0,0.0,54,78,0.0,397.2981831030672,1179.9987760134663,1062.0,96.99124577775646,0.0,50,2,2,2,2,2,2,2,1,0,,1,,3,108513,2,1,2,0,1,,300.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1126.13308972104,692.0,37740.49354968293,1,5,0,1,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.028139536612099295,25160.32903312195,7,4,7,7_1,7_2,7_0_0 +8506,0,76.0,0.0,6,400,1871.0,0.0,0.0,0,71,0.0,66.2163638505112,3190.4302166491266,2057.0,188.44013465392686,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,108514,2,2,2,0,2,,215.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1028.30679582276,1871.0,14478.34449452127,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14207425446869193,14478.34449452127,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8507,2,47.0,0.0,8,111,675.0,856.0,0.0,67,37,0.0,0.0,1151.0103667761414,1531.0,0.0,1625.1194650364594,31,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,108515,2,2,2,0,1,,895.0,567.0,43,2.0,0.0,4.0,4.0,2.3,3,2,604.5917899625,675.0,40554.0480965569,4,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037752088185001295,17632.19482458996,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +8508,2,63.0,0.0,1,111,400.0,400.0,0.0,22,22,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,1,,1,108516,2,2,4,0,1,,160.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,270.911021997955,400.0,23206.59787670284,1,1,0,1,70.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034472954814420344,11603.29893835142,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +8509,2,51.0,0.0,1,300,315.0,0.0,0.0,0,52,0.0,529.7309108040896,537.1381711621992,745.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,108517,2,1,2,0,1,,250.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1203.47110008872,315.0,23798.312947447972,0,1,1,2,50.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03130474003115799,23798.312947447972,6,3,6,6_1,6_0,6_1_0 +8510,2,33.0,0.0,1,120,740.0,0.0,0.0,43,38,3164.0485531098047,0.0,1261.8484020953254,3806.0,91.44888887617039,0.0,41,0,0,0,0,0,0,0,0,2,80.0,1,,1,108518,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,240.783026657717,740.0,64343.26028574319,1,1,1,2,200.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059151494392697276,30639.647755115806,8,4,8,8_1,8_0,8_1_0 +8511,1,44.0,270.0,9,112,825.0,0.0,0.0,0,52,0.0,0.0,1406.7904482819504,825.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,108519,2,2,1,0,1,,340.0,600.0,32,1.0,0.0,4.0,4.0,2.3,3,1,880.769054374121,825.0,30190.73572096104,0,1,2,3,90.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02732626351424795,13126.406835200454,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +8512,2,73.0,0.0,1,112,550.0,0.0,0.0,71,75,2109.365702073203,0.0,937.8602988546337,2710.0,221.69427606344334,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,108520,2,1,3,0,1,,750.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,942.629566921316,550.0,36217.04983044033,5,5,0,1,150.0,8,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07482663587143568,24144.69988696022,6,3,6,6_1,6_1,6_1_0 +8513,2,57.0,0.0,9,111,650.0,0.0,0.0,0,65,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,108521,2,1,0,0,1,,263.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1248.43009309685,650.0,19323.8395665454,0,1,0,1,40.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033637207438076605,19323.8395665454,5,3,5,5_0,5_2,5_0_0 +8514,2,24.0,0.0,6,111,876.0,0.0,0.0,63,46,0.0,895.2452392589114,1493.7556759939255,1642.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,2.0,2,,4,108522,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1109.4803961746,876.0,32739.75716312982,4,1,1,2,66.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05015309037933713,21826.50477541988,6,3,6,6_0,6_2,6_0_0 +8515,2,41.0,0.0,7,112,347.4,,,22,46,0.0,0.0,,485.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,0,,1,,5,108523,2,1,0,0,2,,538.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,111.23782651749289,347.4,32066.813979174898,1,1,0,1,90.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01512467064283258,17814.896655097164,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8516,2,52.0,0.0,7,212,850.0,0.0,0.0,0,67,0.0,0.0,1449.420461866252,882.0,44.33885521268867,0.0,70,2,2,2,2,1,2,2,2,2,10.0,1,,5,108524,2,2,3,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,806.513743521335,850.0,21712.53636180818,0,1,1,2,72.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.04062169362909699,21712.53636180818,6,3,6,6_1,6_0,6_0_0 +8517,2,42.0,0.0,7,111,0.0,0.0,1500.0,46,52,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,50,0,0,0,0,0,0,0,0,2,3.0,1,,5,108525,2,1,2,0,1,,900.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,359.763521455343,0.0,25098.431765290043,4,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05976469024150066,10912.361637082628,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +8518,2,71.0,0.0,5,111,1135.0,0.0,0.0,0,77,0.0,0.0,1935.4026167272893,1235.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,108526,2,1,2,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,387.747796983353,1135.0,23216.855722576227,0,5,0,1,90.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05319411098373143,23216.855722576227,6,3,6,6_1,6_2,6_0_0 +8519,2,43.0,0.0,9,112,800.0,1500.0,0.0,37,43,0.0,0.0,1364.160434697649,3768.0,0.0,2847.7560719096837,33,0,0,0,0,0,0,0,0,2,1.0,1,2007.0,6,108527,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,938.672521030906,800.0,235832.55114338594,4,1,1,2,160.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015977438151483423,112301.21483018377,10,5,10,10_1,10_0,10_0_0 +8520,2,64.0,0.0,5,111,200.0,,,0,75,0.0,0.0,,200.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,108528,1,1,0,0,1,,180.0,,21,1.0,98.0,3.0,2.0,1.5,2,2,59.137216165573115,200.0,41006.89674584086,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00487722836574521,27337.931163893907,7,4,7,7_1,7_2,7_0_0 +8521,2,34.0,0.0,2,111,0.0,0.0,0.0,34,42,0.0,0.0,0.0,964.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,108529,2,1,0,0,1,,313.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1481.5579272927,0.0,26716.780294627406,1,1,1,2,91.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03608219214176249,17811.18686308494,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +8522,2,58.0,0.0,8,111,540.0,0.0,0.0,55,62,0.0,278.10872817214704,920.8082934209131,810.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,108530,2,1,1,0,1,,240.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,371.449673833019,540.0,40882.42064085803,1,1,1,2,77.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01981291683082198,27254.947093905354,7,4,7,7_1,7_3,7_0_0 +8523,2,30.0,0.0,2,111,0.0,0.0,0.0,46,54,0.0,0.0,0.0,2785.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,,2,108531,1,1,2,0,2,,257.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,804.791413185955,0.0,41653.01026294901,1,1,1,2,106.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06686191423906042,23140.56125719389,6,3,6,6_1,6_3,6_0_1 +8524,2,42.0,0.0,2,111,712.0,460.0,0.0,85,53,0.0,0.0,1214.1027868809076,1172.0,0.0,873.3118620523029,71,2,2,2,1,1,2,2,2,2,50.0,2,,2,108532,1,3,0,1,2,444.0,0.0,480.0,42,1.0,0.0,3.0,3.0,2.0,3,2,966.109258229047,712.0,34515.986536891505,7,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0339552803668914,17257.993268445753,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +8525,2,42.0,0.0,8,112,480.0,0.0,0.0,64,43,1054.6828510366015,0.0,818.4962608185893,1600.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,108533,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,697.846118933895,480.0,55399.70077758544,1,1,1,2,110.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028881022416051665,24086.82642503715,6,3,6,6_1,6_0,6_0_0 +8526,2,46.0,0.0,5,111,0.0,0.0,0.0,55,48,0.0,0.0,0.0,1316.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108534,2,1,0,1,2,,150.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,166.115622969674,0.0,18919.31383193242,1,1,0,1,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06955854803670666,12612.875887954948,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +8527,2,66.0,0.0,6,112,3494.0,0.0,0.0,42,72,0.0,0.0,5957.970698541982,3494.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,108535,2,2,2,0,1,,323.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,237.645908741151,3494.0,136142.3644047376,1,5,0,1,230.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025664311144271656,90761.57626982506,10,5,10,10_1,10_0,10_0_0 +8528,2,27.0,0.0,9,111,0.0,0.0,0.0,52,48,0.0,0.0,0.0,5990.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,108536,2,1,1,0,1,,515.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,227.671814764136,0.0,41004.12009951706,1,1,1,2,86.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14608288107298148,17085.05004146544,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +8529,0,65.0,0.0,6,112,718.0,0.0,0.0,77,75,585.3489823253138,728.3800023556231,1224.33399014114,1823.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,108537,2,1,1,0,1,,486.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1933.67957847455,718.0,36371.3431283685,6,5,0,1,170.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050121877368287715,24247.562085579,7,4,7,7_1,7_0,7_0_0 +8530,2,66.0,0.0,8,111,703.0,0.0,0.0,86,75,0.0,0.0,1198.755981990559,767.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,2,2003.0,6,108538,2,1,0,0,1,,0.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,2199.4197875052,703.0,40562.80068940198,6,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018908950737230465,20281.40034470099,5,3,5,5_0,5_3,5_0_0 +8532,2,49.0,0.0,1,112,450.0,0.0,0.0,0,42,1792.9608467622227,463.51454695357836,767.3402445174275,2540.0,55.423569015860835,0.0,42,2,2,2,1,1,2,2,2,2,40.0,1,,1,108540,2,3,4,0,1,,120.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,871.437280256689,450.0,34920.11014043757,0,1,1,2,150.0,8,3,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07273745672006554,23280.07342695838,6,3,6,6_1,6_1,6_1_0 +8533,2,59.0,0.0,6,112,900.0,0.0,0.0,0,54,0.0,357.56836479276046,1534.680489034855,1215.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,108541,2,1,2,0,1,,160.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,802.24072564118,900.0,27498.133334625833,0,1,0,1,92.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044184817391588686,27498.133334625833,7,4,7,7_1,7_0,7_0_0 +8534,1,47.0,53.0,2,111,0.0,0.0,1000.0,0,56,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,71,0,0,0,0,0,0,0,0,0,,1,,2,108542,2,1,1,0,1,,280.0,397.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1307.43639392127,0.0,17403.530995852903,0,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05745960404462121,11602.353997235268,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +8536,0,81.0,0.0,1,300,150.0,0.0,0.0,0,71,0.0,0.0,255.78008150580916,210.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108544,2,1,4,0,1,,393.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,784.58723336,150.0,18206.300012633576,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011534468829706114,18206.300012633576,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8537,2,47.0,0.0,7,112,1630.0,0.0,0.0,65,67,0.0,794.5963662061343,2779.4768856964597,2310.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,3,90.0,1,,5,108545,2,1,1,0,1,,600.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,530.731142952413,1630.0,37118.39321612547,4,1,1,2,97.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062233297291447914,14847.357286450188,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8538,2,64.0,0.0,2,111,1021.0,0.0,0.0,75,75,0.0,423.78472864327165,1741.0097547828746,1392.0,70.66505049522257,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,108546,1,2,5,0,1,,180.0,589.0,41,0.0,2.0,3.0,2.0,1.5,2,2,345.767608979136,1021.0,33220.11167314549,7,5,2,3,71.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04190232753266951,22146.741115430326,6,3,6,6_1,6_3,6_0_1 +8539,2,62.0,0.0,1,400,1276.0,0.0,0.0,68,78,0.0,662.163638505112,2175.83589334275,1957.0,250.7916497967703,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108547,2,1,3,0,1,,490.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,2285.23299577703,1276.0,18895.059225175744,1,5,0,1,110.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10357204900382089,12596.706150117163,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +8540,2,66.0,0.0,2,112,720.0,0.0,0.0,77,74,2182.1388187947286,172.1625460113291,1227.744391227884,2919.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,108548,2,1,1,0,1,,223.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1688.41577521945,720.0,37338.58832355147,5,5,0,1,95.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07817649598066964,24892.39221570098,7,4,7,7_1,7_0,7_0_1 +8541,1,35.0,440.0,9,111,0.0,0.0,1560.0,64,85,0.0,0.0,983.2965330470004,1560.0,0.0,1866.902150200902,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,108549,2,1,0,0,1,,1348.0,403.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1565.82376592178,0.0,15801.74454731898,1,6,2,3,92.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09872327674507807,6584.060228049575,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8542,2,57.0,0.0,1,111,640.0,2143.0,0.0,0,54,0.0,0.0,1091.3283477581192,2783.0,0.0,4068.4941747349676,41,2,2,2,2,1,1,2,2,2,45.0,1,,1,108550,1,3,2,0,2,,971.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1422.79441608088,640.0,11306.533410019527,0,1,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.24614087263332057,11306.533410019527,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +8543,2,88.0,0.0,2,111,167.0,0.0,0.0,0,77,0.0,0.0,284.76849074313424,859.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108551,2,2,4,0,1,,183.0,212.0,11,0.0,3.0,1.0,1.0,1.0,1,1,851.361608239471,167.0,20865.13507614505,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041169155956344045,20865.13507614505,5,3,5,5_1,5_4,5_0_1 +8544,2,72.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,108552,2,1,0,1,1,727.0,0.0,700.0,11,0.0,4.0,1.0,1.0,1.0,1,1,521.990355290602,0.0,9186.111467623545,0,5,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06531599383642364,9186.111467623545,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +8545,2,58.0,0.0,2,111,0.0,0.0,0.0,85,90,0.0,0.0,0.0,404.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108553,1,1,0,1,1,240.0,0.0,250.0,41,0.0,9.0,2.0,2.0,1.5,2,2,290.072178818841,0.0,8338.005536615057,7,7,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.048452834221073215,5558.670357743372,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +8546,2,77.0,0.0,6,300,325.0,,,0,75,0.0,0.0,,486.0,223.07986528883987,,50,0,0,0,0,0,0,0,0,0,,1,,4,108554,2,2,0,0,1,,647.0,,21,0.0,4.0,5.0,2.0,1.5,2,2,63.509051162801164,325.0,45195.0,0,5,0,1,174.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010753401924991702,30130.0,8,4,8,8_1,8_1,8_0_0 +8547,2,27.0,0.0,2,111,0.0,0.0,1070.0,23,46,0.0,0.0,674.4405707437758,1070.0,0.0,1280.5033978942083,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,108555,1,3,0,0,2,,0.0,508.0,43,2.0,0.0,4.0,4.0,2.1,2,2,2011.99049985373,0.0,25518.314573452826,1,1,2,3,87.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.041930668928783436,12151.57836831087,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +8548,1,29.0,22.0,2,111,300.0,480.0,0.0,85,62,0.0,0.0,511.56016301161833,780.0,0.0,911.2819430110987,30,2,2,2,2,1,2,2,2,2,40.0,2,,2,108556,2,3,0,1,1,1128.0,0.0,340.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1422.60895938609,300.0,23320.105556567087,6,2,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03344753299284905,9716.71064856962,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8549,2,71.0,0.0,5,111,1200.0,0.0,0.0,72,74,0.0,0.0,2046.2406520464733,1365.0,228.62222219042596,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,108557,2,2,3,0,1,,157.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1307.29832047632,1200.0,43520.84180486591,5,5,0,1,108.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031364283028353195,29013.89453657727,8,4,8,8_1,8_2,8_0_0 +8551,2,61.0,0.0,2,111,240.0,0.0,0.0,52,78,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,108559,1,2,0,1,2,732.0,0.0,336.0,42,1.0,2.0,3.0,2.0,1.5,2,2,291.164969345376,240.0,40867.60520781217,1,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005872622062868565,27245.070138541447,7,4,7,7_0,7_4,7_0_1 +8552,2,67.0,0.0,2,111,1005.0,0.0,0.0,77,74,0.0,496.622728878834,1713.7265460889214,1440.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108560,2,1,1,0,1,,351.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1416.80812293239,1005.0,37592.45296674793,5,5,0,1,91.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03830556099315305,25061.635311165286,7,4,7,7_1,7_3,7_0_1 +8553,2,44.0,0.0,2,111,696.0,0.0,0.0,37,37,0.0,0.0,1186.8195781869547,917.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,60.0,2,,2,108561,1,1,0,1,2,740.0,0.0,1930.0,43,2.0,0.0,4.0,5.0,2.8,4,2,785.090766427222,696.0,98350.26600823143,1,1,2,3,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009323818198145511,35125.09500293979,9,5,9,9_0,9_4,9_0_1 +8554,2,60.0,0.0,2,111,500.0,0.0,0.0,78,52,0.0,695.2718204303676,852.6002716860306,1075.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,108562,1,2,2,0,1,,160.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1595.67921456183,500.0,41682.16721912208,5,1,1,2,93.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02579040562715352,27788.111479414718,7,4,7,7_1,7_2,7_0_1 +8555,2,83.0,0.0,2,111,500.0,0.0,0.0,74,74,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108563,1,2,0,1,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1072.82840288564,500.0,104339.49152688596,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0047920494213944025,69559.66101792398,10,5,10,10_0,10_4,10_0_1 +8556,2,61.0,0.0,2,111,450.0,450.0,0.0,75,75,0.0,0.0,767.3402445174275,900.0,0.0,854.326821572905,50,2,1,2,2,1,2,2,2,0,,2,,2,108564,2,1,0,1,1,,200.0,624.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1635.30139243972,450.0,45643.8580523675,5,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019717877462668124,30429.23870157833,8,4,8,8_0,8_3,8_0_1 +8557,2,64.0,0.0,2,111,360.0,850.0,0.0,56,75,0.0,0.0,613.872195613942,1210.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,0,,1,,2,108565,2,1,1,0,1,,223.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,362.605202094572,360.0,18272.17947287147,1,5,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06622089071511558,12181.452981914314,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +8558,2,46.0,0.0,6,111,1114.0,0.0,0.0,47,46,0.0,1986.490915515336,1899.593405316476,2614.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,108566,2,1,2,0,1,,700.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,357.030794597855,1114.0,84225.8600703359,1,1,0,1,200.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031035598779485106,30080.66431083425,8,4,8,8_1,8_3,8_0_0 +8559,2,44.0,0.0,7,112,779.4,0.0,0.0,75,21,0.0,0.0,1329.0333035041845,1079.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108567,2,2,2,0,1,,476.0,505.0,42,1.0,1.0,4.0,3.0,2.0,3,2,843.320056373758,779.4,38293.12340070198,7,4,2,3,65.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02817738288698122,19146.56170035099,5,3,5,5_1,5_1,5_0_0 +8560,2,67.0,0.0,7,112,439.0,470.0,0.0,77,77,0.0,198.6490915515336,748.5830385403349,1059.0,0.0,892.2969025317009,70,0,0,0,0,0,0,0,0,0,,1,,5,108568,2,1,2,0,1,,477.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1741.95934920744,439.0,30014.944982326142,5,5,0,1,84.0,6,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035282423493482214,20009.96332155076,5,3,5,5_1,5_1,5_0_0 +8561,2,57.0,0.0,2,111,390.0,129.0,0.0,74,56,0.0,0.0,665.0282119151038,519.0,0.0,244.90702218423277,50,0,0,0,0,0,0,0,0,0,,2,,2,108569,2,1,0,1,2,1620.0,0.0,327.0,42,1.0,1.0,5.0,3.0,2.0,3,3,917.95537350199,390.0,35467.59742808942,5,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014633074626841382,17733.79871404471,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +8562,2,44.0,0.0,9,111,979.0,520.0,0.0,21,38,0.0,529.7309108040896,1669.391331961248,1899.0,0.0,987.2221049286903,31,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,108570,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,190.954326586132,979.0,68512.41755372302,1,1,1,2,86.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02771760314122512,29788.00763205349,8,4,8,8_1,8_3,8_0_0 +8563,2,78.0,0.0,2,111,150.0,140.0,0.0,75,75,0.0,0.0,255.78008150580916,290.0,0.0,265.7905667115705,60,0,0,0,0,0,0,0,0,0,,2,,2,108571,2,1,0,1,1,,0.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,876.550126214243,150.0,48723.0862989586,5,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005952003906743453,32482.057532639068,8,4,8,8_0,8_4,8_0_1 +8564,2,75.0,0.0,7,112,3340.0,0.0,0.0,71,71,1371.087706347582,0.0,5695.3698148626845,4910.0,374.10909085706066,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,108572,2,2,2,0,2,,344.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,1687.54791460792,3340.0,21326.678584337806,5,5,0,1,114.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23022806765634274,14217.785722891871,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8565,0,86.0,0.0,1,111,240.0,2400.0,0.0,0,77,0.0,0.0,409.2481304092947,2640.0,0.0,4556.4097150554935,41,0,0,0,0,0,0,0,0,0,,1,,1,108573,2,2,2,0,1,,150.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1957.51815901193,240.0,31543.266512014365,0,5,5,0,130.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08369456597002922,31543.266512014365,8,4,8,8_1,8_2,8_1_0 +8566,2,90.0,0.0,2,112,250.0,0.0,0.0,72,75,2636.7071275915036,0.0,426.3001358430153,2825.0,103.91919190473907,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,108574,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1782.12645213263,250.0,48049.0354814419,6,5,0,1,120.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05879410422486227,32032.690320961265,8,4,8,8_1,8_0,8_0_1 +8567,1,41.0,255.0,7,111,200.0,,,0,85,0.0,0.0,,308.0,149.64363634282427,,71,0,0,0,0,0,0,0,0,0,,2,,5,108575,2,2,0,0,2,,600.0,121.0,11,0.0,0.0,1.0,1.0,1.0,1,1,169.1844934482373,200.0,14339.81481711458,0,7,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02147865951744382,14339.81481711458,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +8568,2,49.0,0.0,5,111,785.0,1100.0,0.0,55,63,0.0,0.0,1338.582426547068,1885.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,108576,2,1,2,0,1,,300.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,716.616173343004,785.0,55198.2397143249,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03414963973046426,23999.234658402132,6,3,6,6_1,6_4,6_0_0 +8569,2,71.0,0.0,5,111,408.0,990.0,0.0,86,78,0.0,0.0,695.7218216958009,1398.0,0.0,1879.519007460391,70,2,2,2,1,1,2,2,2,0,,1,,3,108577,2,1,1,0,1,,210.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,518.440767410451,408.0,22047.736604341473,6,5,0,1,92.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06340786925605399,14698.491069560981,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8570,2,49.0,0.0,2,300,201.0,,,0,56,0.0,0.0,,270.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,2,108578,1,1,0,0,2,,145.0,,22,2.0,3.0,5.0,3.0,2.0,3,3,66.12159595861756,201.0,5431.850500123086,0,4,0,1,51.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049706817224421364,2715.925250061543,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +8571,1,51.0,411.0,2,111,400.0,240.0,0.0,0,85,0.0,0.0,682.0802173488245,640.0,0.0,455.6409715055494,71,2,2,1,2,1,2,2,2,0,,2,,2,108579,1,2,0,1,1,650.0,0.0,370.0,31,0.0,0.0,4.0,4.0,2.5,4,2,343.729050814499,400.0,1322.7400351332192,0,7,2,3,75.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.4838441288544976,529.0960140532877,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8572,2,61.0,0.0,2,111,3000.0,40.0,0.0,54,78,0.0,0.0,5115.6016301161835,3040.0,0.0,75.94016191759155,50,0,0,0,0,0,0,0,0,0,,2,,2,108580,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,876.696938577607,3000.0,43314.0760709766,1,5,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07018503626900652,28876.050713984398,8,4,8,8_0,8_4,8_0_1 +8573,2,63.0,0.0,2,300,582.0,0.0,0.0,78,78,0.0,927.0290939071567,992.4267162425396,1427.0,200.91043768249554,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108581,2,1,1,0,1,,266.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1339.39261280412,582.0,37205.74418751607,5,5,0,1,85.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038354292627717744,24803.829458344047,7,4,7,7_1,7_0,7_0_1 +8574,2,46.0,0.0,6,111,480.0,1600.0,0.0,46,46,0.0,0.0,818.4962608185893,2080.0,0.0,3037.6064767036623,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,108582,2,2,2,0,1,,564.0,,43,2.0,1.0,6.0,4.0,2.3,3,2,248.641917975932,480.0,54519.31326752097,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03815161775412765,23704.04924674825,6,3,6,6_1,6_4,6_0_0 +8575,2,67.0,0.0,8,111,1300.0,0.0,0.0,56,78,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2002.0,6,108583,2,1,0,0,1,,200.0,671.0,42,1.0,5.0,3.0,2.0,1.5,2,2,1965.68204929,1300.0,47990.390080137586,1,5,2,3,65.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02708875668293532,31993.59338675839,8,4,8,8_0,8_3,8_0_0 +8576,2,79.0,0.0,1,111,0.0,0.0,0.0,86,78,527.3414255183008,198.6490915515336,0.0,1680.0,207.83838380947813,0.0,71,2,2,2,1,2,2,1,2,0,,1,,1,108584,2,3,3,0,1,,250.0,,41,2.0,1.0,3.0,4.0,2.5,4,4,1325.78029866295,0.0,42753.56910081118,6,5,0,1,48.0,9,7,9,1,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.039294964966284526,17101.427640324473,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +8577,1,38.0,416.0,9,112,0.0,0.0,1800.0,85,67,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,50,2,2,2,2,1,2,2,2,2,30.0,2,2011.0,6,108585,1,3,0,0,1,,287.0,362.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,8270.30854006821,0.0,20119.237558582987,6,2,2,3,90.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.08946661098656342,7451.569466141847,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +8578,2,68.0,0.0,2,400,700.0,,,68,77,0.0,0.0,,835.0,187.05454542853033,,71,0,0,0,0,0,0,0,0,0,,1,,2,108586,2,1,0,0,1,,500.0,,42,1.0,5.0,8.0,2.0,1.5,2,2,92.56589324743646,700.0,17567.0,1,5,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04753230488985029,11711.333333333334,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +8579,1,28.0,413.0,6,111,800.0,1000.0,0.0,85,65,0.0,0.0,1364.160434697649,1800.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,4,108587,2,2,3,0,1,,720.0,645.0,42,1.0,0.0,4.0,5.0,2.4,2,2,277.593792800583,800.0,19939.26891049878,6,1,2,3,84.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09027412229002196,8308.028712707826,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +8580,2,48.0,0.0,6,400,600.0,0.0,0.0,65,52,1265.6194212439218,0.0,1023.1203260232367,1860.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,108588,2,1,3,0,1,,202.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1724.30329499847,600.0,38021.75292803507,1,1,0,1,89.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04891936475207965,25347.835285356716,7,4,7,7_1,7_0,7_0_0 +8581,2,69.0,0.0,2,111,147.0,64.0,0.0,0,77,0.0,487.3524379397624,250.664479875693,579.0,0.0,121.5042590681465,50,0,0,0,0,0,0,0,0,0,,2,,2,108589,2,1,0,1,1,368.0,0.0,274.0,11,0.0,0.0,2.0,1.0,1.0,1,1,260.026999114292,147.0,16133.949145150527,0,5,2,3,53.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03588705993746319,16133.949145150527,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8582,2,69.0,0.0,7,112,538.0,0.0,0.0,78,78,1177.0260617568474,331.081819252556,917.3978923341689,2014.0,152.4148147936173,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,108590,2,1,2,0,1,,325.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1315.29870341123,538.0,30411.74807018868,5,5,0,1,135.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06622440759905666,20274.49871345912,5,3,5,5_1,5_0,5_0_0 +8583,2,60.0,0.0,2,111,0.0,0.0,867.0,0,77,0.0,0.0,546.4859577895828,867.0,0.0,1037.5667719385783,71,0,0,0,0,0,0,0,0,0,,2,,2,108591,2,2,0,0,1,,240.0,220.0,11,0.0,1.0,3.0,1.0,1.0,1,1,394.858113494259,0.0,21962.209278215014,0,5,2,3,55.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039476902756773374,21962.209278215014,6,3,6,6_0,6_2,6_0_1 +8584,1,61.0,231.0,6,112,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,108592,2,2,0,0,2,,170.0,247.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1026.24297813657,1200.0,18577.31746149867,0,5,2,3,50.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06943951960090652,18577.31746149867,4,2,4_1,4_0_1,4_0_1,4_0_0_1 +8585,0,86.0,0.0,2,111,290.0,1420.0,0.0,0,78,0.0,0.0,494.50815757789775,1710.0,0.0,2695.8757480745003,70,0,0,0,0,0,0,0,0,0,,1,,2,108593,2,1,1,0,1,,240.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,405.55744555496,290.0,19355.03401615419,0,5,5,0,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08834910848375631,19355.03401615419,5,3,5,5_1,5_3,5_0_1 +8586,2,48.0,0.0,1,111,120.0,120.0,0.0,43,46,0.0,0.0,204.62406520464734,240.0,0.0,227.8204857527747,31,2,2,2,1,2,2,2,2,2,50.0,1,,1,108594,1,3,4,0,2,,1200.0,,43,2.0,0.0,8.0,5.0,2.8,4,4,720.685264719292,120.0,76092.33369464033,1,1,1,2,169.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0031540628122029165,27175.83346237155,7,4,7,7_1,7_3,7_1_0 +8588,1,41.0,270.0,2,111,140.0,0.0,0.0,0,69,0.0,0.0,238.72807607208856,215.0,103.91919190473907,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,2,108596,2,2,0,1,2,500.0,140.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,358.235122986033,140.0,9777.672115231124,0,1,2,3,44.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.021988873984134193,9777.672115231124,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +8589,0,81.0,0.0,6,400,200.0,,,0,77,0.0,0.0,,332.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,108597,2,3,0,0,2,,200.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,130.84286552957414,200.0,22029.191685933944,0,5,5,0,65.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015070911576478238,22029.191685933944,6,3,6,6_1,6_0,6_0_0 +8590,2,47.0,0.0,6,111,1081.0,,,85,21,0.0,0.0,,1161.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,4,108598,2,1,0,0,1,,400.0,,42,1.0,0.0,5.0,5.0,2.8,4,3,160.56467512459687,1081.0,7004.165149116668,6,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1657585130108504,2501.4875532559527,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8591,1,32.0,51.0,9,112,1740.0,0.0,0.0,46,55,0.0,0.0,2967.0489454673866,1740.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,108599,2,1,1,0,1,,210.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1004.60235631176,1740.0,40682.42424596705,1,1,1,2,117.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04277031254282961,16951.01010248627,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +8592,2,50.0,0.0,2,111,500.0,1600.0,0.0,64,64,0.0,0.0,852.6002716860306,2100.0,0.0,3037.6064767036623,50,1,2,2,1,1,2,2,2,1,10.0,1,,2,108600,2,1,2,0,1,,528.0,,43,2.0,5.0,6.0,3.0,2.0,3,3,891.548615279894,500.0,30234.74247935002,1,1,0,1,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.0694565201418294,15117.37123967501,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +8593,2,39.0,0.0,2,111,540.0,600.0,0.0,0,67,0.0,0.0,920.8082934209131,1140.0,0.0,1139.1024287638734,71,1,2,2,2,1,2,2,2,0,,2,,2,108601,2,2,0,1,1,,0.0,350.0,22,2.0,1.0,3.0,2.0,1.5,2,2,835.184772095839,540.0,32943.373140884745,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03460483524636978,21962.24876058983,6,3,6,6_0,6_4,6_0_1 +8594,0,52.0,0.0,1,111,430.0,900.0,0.0,0,85,0.0,0.0,733.2362336499863,1330.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,1,108602,2,2,3,0,1,,240.0,,31,0.0,0.0,4.0,2.0,1.5,2,1,794.45423326567,430.0,5398.661593978442,0,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24635735669808514,3599.1077293189614,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +8595,2,57.0,0.0,6,111,470.0,,,77,62,0.0,0.0,,638.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,4,108603,2,1,0,0,1,,125.0,,42,3.0,0.0,4.0,4.0,2.5,4,4,119.32014190472087,470.0,57646.51591383199,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011067451170052676,23058.606365532796,6,3,6,6_1,6_2,6_0_0 +8596,2,62.0,0.0,7,111,959.0,0.0,0.0,0,74,0.0,0.0,1635.2873210938067,959.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,108604,1,1,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1794.37618623454,959.0,59200.055399589575,0,5,0,1,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016199309164947988,59200.055399589575,10,5,10,10_0,10_3,10_0_0 +8597,1,32.0,180.0,5,111,360.0,0.0,0.0,0,56,0.0,0.0,613.872195613942,360.0,0.0,0.0,41,2,1,2,2,1,2,2,2,0,,2,,3,108605,2,1,0,1,1,240.0,0.0,288.0,32,1.0,0.0,1.0,2.0,1.3,1,1,1019.01692858861,360.0,12856.929206842067,0,4,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.028000465290609126,9889.945543724667,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +8598,2,67.0,0.0,2,111,310.0,0.0,0.0,78,75,1328.900392306118,211.89236432163582,528.612168445339,1780.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108606,2,2,2,0,1,,193.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1217.85308417236,310.0,42897.0,5,5,0,1,108.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04149474322213675,28598.0,8,4,8,8_1,8_2,8_0_1 +8599,2,74.0,0.0,9,111,180.0,,,0,78,0.0,0.0,,280.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,108607,2,1,0,0,2,,120.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,137.66178546161223,180.0,5000.014334213207,0,5,0,1,61.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055999839457272334,5000.014334213207,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +8600,2,26.0,0.0,2,111,350.0,350.0,0.0,46,46,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,20,0,0,0,0,0,0,0,0,3,35.0,2,,2,108608,2,2,0,1,1,650.0,0.0,395.0,43,2.0,0.0,3.0,3.0,1.8,2,2,834.137354012351,350.0,54812.96811892394,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012770700511624511,30451.648954957745,8,4,8,8_0,8_4,8_0_1 +8601,1,25.0,200.0,9,111,300.0,0.0,0.0,0,43,0.0,0.0,511.56016301161833,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,108609,2,1,0,1,1,,0.0,368.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2451.96147051082,300.0,23175.92920117919,0,1,2,3,20.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012944464810702648,23175.92920117919,6,3,6,6_0,6_3,6_0_0 +8602,1,95.0,253.0,7,111,710.0,,,0,78,0.0,0.0,,962.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,2,,5,108610,2,1,0,0,2,,225.0,444.0,21,0.0,1.0,4.0,2.0,1.5,2,2,99.21935212618025,710.0,11129.39086755929,0,5,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08643779443528248,7419.5939117061935,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8603,1,51.0,243.0,1,111,770.0,0.0,0.0,0,85,0.0,0.0,1313.0044183964872,770.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,2,,1,108611,1,3,0,0,1,,0.0,395.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1085.20426960968,770.0,14420.420692446438,0,7,2,3,50.0,7,5,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.0533965004504573,14420.420692446438,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +8604,2,73.0,0.0,6,111,486.0,,,0,77,0.0,0.0,,572.0,119.1606733841008,,70,0,0,0,0,0,0,0,0,0,,1,,4,108612,2,1,0,0,2,,362.0,,21,1.0,3.0,4.0,3.0,2.0,3,3,166.8360835937458,486.0,37594.70315332446,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015214909336221709,18797.35157666223,5,3,5,5_1,5_2,5_0_0 +8605,2,32.0,0.0,5,111,0.0,0.0,2000.0,55,52,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,50,0,0,0,0,0,0,0,0,1,1.0,1,,3,108613,2,2,3,0,1,,400.0,305.0,43,2.0,0.0,4.0,3.0,1.8,2,2,343.166073175289,0.0,30995.5320756722,1,1,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06452542886236697,17219.74004204011,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8606,2,61.0,0.0,1,111,282.0,0.0,0.0,0,35,632.8097106219609,0.0,480.8665532309212,882.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,1,108614,2,2,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,281.847336184144,282.0,26323.21405546271,0,5,0,1,37.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03350654666035979,26323.21405546271,7,4,7,7_0,7_4,7_1_0 +8607,2,88.0,0.0,6,111,210.0,,,0,75,0.0,0.0,,258.0,66.50828281903301,,60,0,0,0,0,0,0,0,0,0,,1,,4,108615,2,1,0,0,2,,80.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,32.4196017417474,210.0,44360.98724808173,0,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005815921060484435,44360.98724808173,10,5,10,10_1,10_2,10_0_0 +8608,2,64.0,0.0,2,111,800.0,800.0,0.0,77,22,0.0,0.0,1364.160434697649,1600.0,0.0,1518.8032383518312,44,0,0,0,0,0,0,0,0,0,,1,,2,108616,2,2,3,0,1,,300.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,2852.04411099887,800.0,56541.463747819376,6,5,0,1,87.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028297817105269175,28270.731873909688,8,4,8,8_1,8_2,8_0_1 +8609,2,36.0,0.0,1,120,1500.0,0.0,0.0,64,64,0.0,1125.6781854586902,2557.8008150580918,2450.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,108617,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,997.009772644702,1500.0,27779.4690856619,1,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08819463008616472,13228.318612219953,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8610,2,41.0,0.0,9,112,1875.0,0.0,0.0,46,38,0.0,0.0,3197.2510188226147,1875.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,80.0,1,2011.0,6,108618,2,1,1,0,1,,900.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,970.762896228061,1875.0,86317.25454265151,1,1,1,2,170.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02172219227702053,33198.94405486597,8,4,8,8_1,8_2,8_0_0 +8611,2,50.0,0.0,2,111,255.0,288.0,0.0,0,45,0.0,0.0,434.8261385598756,543.0,0.0,546.7691658066592,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,108619,2,1,0,1,1,1167.0,0.0,292.0,12,1.0,1.0,3.0,1.0,1.0,1,1,782.689914527828,255.0,24574.711627141853,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02209588491774108,24574.711627141853,7,4,7,7_0,7_4,7_0_1 +8612,2,40.0,0.0,2,112,1200.0,1600.0,0.0,54,47,0.0,0.0,2046.2406520464733,2800.0,0.0,3037.6064767036623,71,0,0,0,0,0,0,0,0,2,60.0,1,,2,108620,2,1,1,0,1,,570.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,849.185248125321,1200.0,48492.46507477382,1,1,1,2,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057740929352271333,23091.65003560658,6,3,6,6_1,6_1,6_0_1 +8613,0,92.0,0.0,1,111,943.0,0.0,0.0,0,71,2109.365702073203,0.0,1608.0041123998537,2978.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108621,2,2,3,0,2,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1660.37031989201,943.0,28083.77167832519,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10603988787939031,28083.77167832519,8,4,8,8_1,8_3,8_1_0 +8614,2,37.0,0.0,2,111,400.0,100.0,0.0,0,35,0.0,0.0,682.0802173488245,500.0,0.0,189.8504047939789,20,2,2,2,1,1,2,2,2,3,60.0,2,,2,108622,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1045.53519640763,400.0,22327.612793791624,0,1,1,2,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.02239379572808738,22327.612793791624,6,3,6,6_0,6_4,6_0_1 +8615,2,34.0,0.0,2,111,435.0,,,0,47,0.0,0.0,,711.0,382.4226262094398,,31,0,0,0,0,0,0,0,0,0,,1,,2,108623,2,1,0,0,2,,380.0,,22,2.0,0.0,4.0,4.0,2.5,4,4,112.1974176562404,435.0,28576.07547738546,0,1,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02488095331924327,11430.430190954185,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +8616,2,61.0,0.0,1,111,297.0,0.0,0.0,0,78,1611.5553963839272,0.0,506.4445613815022,1855.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108624,2,3,2,0,1,,147.0,143.0,11,0.0,3.0,4.0,1.0,1.0,1,1,462.875489731455,297.0,19685.122042162115,0,5,2,3,90.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09423360424318995,19685.122042162115,5,3,5,5_1,5_3,5_1_0 +8618,1,44.0,120.0,9,111,0.0,,,22,22,0.0,0.0,,551.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108626,2,1,0,0,2,,89.0,,43,2.0,1.0,7.0,3.0,2.0,3,2,112.59737906777806,0.0,7925.023386208677,4,4,1,2,210.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06952660871119497,3962.5116931043385,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +8619,2,53.0,0.0,2,111,600.0,150.0,0.0,65,56,0.0,0.0,1023.1203260232367,750.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,2,,2,108627,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,861.157826539876,600.0,32058.08521259064,1,1,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023395034202025315,12823.234085036256,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +8620,2,65.0,0.0,2,111,600.0,480.0,0.0,0,54,0.0,0.0,1023.1203260232367,1080.0,0.0,911.2819430110987,10,0,0,0,0,0,0,0,0,3,90.0,2,,2,108628,2,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,225.789399831632,600.0,15979.767790523892,0,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06758546270243346,15979.767790523892,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8621,2,56.0,0.0,8,111,0.0,,,0,56,0.0,0.0,,150.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,7,1999.0,6,108629,2,2,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,36.05562993719607,0.0,9456.0,0,4,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015862944162436547,9456.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8622,1,43.0,55.0,7,111,550.0,860.0,0.0,55,48,0.0,0.0,937.8602988546337,1410.0,0.0,1632.7134812282186,71,2,2,2,2,1,1,2,2,2,60.0,1,,5,108630,1,1,2,0,1,,624.0,558.0,43,5.0,0.0,4.0,6.0,3.5,6,5,404.443991882387,550.0,42047.70744942487,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.03353333833232056,12013.630699835678,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +8623,2,40.0,0.0,9,111,480.0,1200.0,0.0,46,38,0.0,0.0,818.4962608185893,1680.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,108631,2,1,1,0,1,,299.0,700.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1255.87465329549,480.0,88412.54469922082,1,1,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019001828368534743,42101.21176153372,9,5,9,9_1,9_4,9_0_0 +8624,2,65.0,0.0,1,211,1372.0,0.0,0.0,56,63,0.0,662.163638505112,2339.535145506468,1968.0,133.01656563806603,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108632,2,1,1,0,1,,232.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1523.04908885268,1372.0,53031.317554870606,5,5,0,1,130.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03711014718734348,35354.21170324707,9,5,9,9_1,9_1,9_1_0 +8625,2,25.0,0.0,1,111,0.0,1814.0,0.0,55,62,0.0,0.0,0.0,5106.0,0.0,3443.8863429627772,50,2,2,2,2,1,2,2,2,2,10.0,1,,1,108633,1,3,4,0,2,,350.0,510.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1686.33110124957,0.0,31151.094255054337,1,1,2,3,90.0,5,4,2,0,1,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.16391077495364517,20767.396170036223,5,3,5,5_1,5_2,5_1_0 +8626,2,43.0,0.0,7,111,1680.0,,,42,37,0.0,0.0,,1730.0,69.27946126982604,,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,108634,2,1,0,0,2,,840.0,1600.0,43,2.0,0.0,5.0,6.0,3.0999999999999996,4,2,151.19417261351725,1680.0,99235.93852689605,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01743320036753737,32011.593073192278,8,4,8,8_1,8_2,8_0_0 +8627,0,71.0,0.0,6,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,5978.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,108635,2,2,2,0,2,,555.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,965.663130189262,0.0,37971.724531556116,0,5,0,1,140.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1574329339462059,37971.724531556116,9,5,9,9_1,9_4,9_0_0 +8629,2,71.0,0.0,2,111,350.0,300.0,0.0,86,74,1792.9608467622227,0.0,596.8201901802214,2350.0,0.0,569.5512143819367,20,0,0,0,0,0,0,0,0,0,,1,,2,108637,2,1,1,0,1,,400.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,724.406165227841,350.0,62797.20278826938,6,5,0,1,135.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037422049003096425,41864.80185884625,9,5,9,9_1,9_4,9_0_1 +8630,1,44.0,179.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,460.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,108638,2,3,0,1,1,720.0,0.0,314.0,42,1.0,6.0,4.0,4.0,2.1,2,2,352.637640824097,0.0,21509.301646208307,6,1,2,3,72.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02138609646962153,10242.524593432527,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8631,2,57.0,0.0,2,111,600.0,1400.0,0.0,56,75,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,10,0,0,0,0,0,0,0,0,0,,1,,2,108639,2,1,1,0,1,,480.0,,42,1.0,3.0,8.0,3.0,2.0,3,2,1108.36749047166,600.0,68308.24287418726,1,7,1,2,155.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029279043287406423,34154.12143709363,9,5,9,9_1,9_3,9_0_1 +8632,2,75.0,0.0,2,211,1200.0,90.0,0.0,0,77,0.0,0.0,2046.2406520464733,1290.0,0.0,170.865364314581,60,2,2,2,2,1,2,2,2,0,,1,,2,108640,2,2,2,0,1,,350.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1227.25378396695,1200.0,13009.794504532483,0,5,0,1,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.09915606273032036,13009.794504532483,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +8633,1,53.0,341.0,2,111,0.0,0.0,960.0,85,77,0.0,0.0,605.105558798154,960.0,0.0,1148.8628616620936,71,2,2,2,2,1,2,2,2,0,,2,,2,108641,2,1,0,0,1,,261.0,318.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1155.02382807322,0.0,8855.802632902234,6,6,2,3,74.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.10840349991916969,5903.868421934822,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8634,2,68.0,0.0,7,120,990.0,0.0,0.0,56,75,0.0,0.0,1688.1485379383405,1062.0,99.7624242285495,0.0,30,0,0,0,0,0,0,0,0,0,,1,,5,108642,2,1,2,0,1,,484.0,,42,1.0,3.0,5.0,3.0,2.0,3,2,580.815135314961,990.0,27348.238178928896,1,5,0,1,104.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038832483213424814,13674.119089464448,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8635,1,28.0,300.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1742.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108643,2,1,1,0,1,,240.0,500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1668.70209879296,0.0,11175.873047025014,0,7,2,3,47.0,6,5,7,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.15587149144144183,11175.873047025014,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +8636,1,28.0,313.0,2,111,352.0,123.0,0.0,0,52,0.0,0.0,600.2305912669656,475.0,0.0,233.51599789659406,42,2,1,2,2,1,1,2,2,0,,2,,2,108644,2,1,0,1,1,912.0,0.0,290.0,32,1.0,0.0,3.0,2.0,1.3,1,1,376.164325748182,352.0,8084.645219323521,0,4,2,3,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.058753351212577444,6218.957861018092,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8637,0,78.0,0.0,5,400,584.0,0.0,0.0,64,64,2109.365702073203,0.0,995.8371173292837,2644.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,3,90.0,1,,3,108645,2,3,3,0,2,,300.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,926.793649677791,584.0,34620.202633757624,5,5,0,1,145.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07637159227432934,23080.13508917175,6,3,6,6_1,6_0,6_0_0 +8638,2,40.0,0.0,2,111,360.0,120.0,0.0,37,34,0.0,0.0,613.872195613942,480.0,0.0,227.8204857527747,10,2,2,2,1,2,2,2,1,2,60.0,2,,2,108646,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,876.550126214243,360.0,59925.32448364956,1,1,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.008009969143028445,39950.216322433036,9,5,9,9_0,9_4,9_0_1 +8639,2,55.0,0.0,7,111,827.0,1271.0,0.0,56,47,0.0,0.0,1410.2008493686947,2098.0,0.0,2412.998644931472,31,0,0,0,0,0,0,0,0,2,60.0,1,,5,108647,2,1,3,0,1,,807.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,428.018487053065,827.0,77686.27171521835,1,1,0,1,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027006058518174614,38843.13585760917,9,5,9,9_1,9_4,9_0_0 +8640,2,34.0,0.0,9,112,0.0,0.0,0.0,46,38,0.0,0.0,0.0,3167.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,75.0,1,2012.0,6,108648,2,1,1,0,1,,335.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1059.00294281864,0.0,63425.67495418046,1,1,1,2,135.0,10,1,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04993246035281268,35236.48608565581,9,5,9,9_1,9_1,9_0_0 +8641,2,32.0,0.0,6,111,330.0,1200.0,0.0,35,47,0.0,0.0,562.7161793127802,1530.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,20.0,2,,4,108649,2,1,0,0,1,,50.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,326.731980810142,330.0,43312.78503022769,1,1,1,2,74.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03532444286213005,24062.658350126494,6,3,6,6_0,6_3,6_0_0 +8642,2,53.0,0.0,7,112,0.0,0.0,0.0,37,22,0.0,0.0,0.0,943.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,90.0,1,,5,108650,2,1,2,0,1,,417.0,875.0,43,2.0,3.0,7.0,3.0,2.0,3,3,3080.05858682733,0.0,46176.621152366126,4,1,2,3,180.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020421589463820698,23088.310576183063,6,3,6,6_1,6_1,6_0_0 +8643,2,55.0,0.0,1,111,700.0,0.0,0.0,0,75,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,42,2,2,2,2,1,2,2,2,0,,2,,1,108651,1,3,0,0,1,,119.0,705.0,11,0.0,1.0,2.0,1.0,1.0,1,1,974.358353962101,700.0,25554.31937323872,0,7,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.027392629393724405,25554.31937323872,7,4,7,7_0,7_4,7_1_0 +8644,2,45.0,0.0,8,112,1500.0,0.0,0.0,64,33,0.0,158.91927324122688,2557.8008150580918,1770.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,108652,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,731.728867008349,1500.0,71795.01733228711,1,1,1,2,142.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024653521452720772,34188.10349156529,9,5,9,9_1,9_0,9_0_0 +8645,2,75.0,0.0,6,112,1071.0,0.0,0.0,78,78,0.0,0.0,1826.2697819514776,1106.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,108653,2,1,1,0,1,,410.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,1602.43265083894,1071.0,48636.01896836788,6,5,0,1,89.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02274034806835908,24318.00948418394,7,4,7,7_1,7_0,7_0_0 +8646,2,70.0,0.0,7,111,540.0,,,78,77,0.0,0.0,,678.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,108654,2,1,0,0,2,,480.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,90.29936303597611,540.0,26717.49777477065,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02537662792060699,17811.665183180434,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8647,2,67.0,0.0,5,111,270.0,90.0,0.0,0,75,0.0,0.0,460.40414671045653,360.0,0.0,170.865364314581,20,1,2,2,2,1,2,2,2,0,,2,,3,108655,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,550.072303057149,270.0,37204.80883640375,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009676168518510199,37204.80883640375,9,5,9,9_0,9_4,9_0_0 +8648,2,58.0,0.0,2,111,480.0,516.0,0.0,0,37,0.0,0.0,818.4962608185893,996.0,0.0,979.6280887369311,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,108656,2,1,0,1,1,514.0,0.0,668.0,32,1.0,0.0,3.0,2.0,1.5,2,2,904.49955267101,480.0,49759.96119154447,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0200160927812228,33173.307461029646,8,4,8,8_0,8_4,8_0_1 +8649,2,44.0,0.0,7,111,1000.0,0.0,0.0,0,45,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,10.0,2,,5,108657,2,1,0,0,1,,350.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,819.996096134536,1000.0,20362.499051547096,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049109885651487474,20362.499051547096,5,3,5,5_0,5_4,5_0_0 +8650,2,57.0,0.0,2,111,456.0,884.0,0.0,0,52,0.0,0.0,777.5714477776598,1340.0,0.0,1678.2775783787736,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,108658,1,2,0,0,1,,0.0,311.0,32,2.0,1.0,3.0,2.0,1.5,2,2,1927.08615757408,456.0,31896.0,0,1,2,3,70.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04201153749686481,21264.0,5,3,5,5_0,5_2,5_0_1 +8651,2,60.0,0.0,2,111,760.0,0.0,0.0,43,62,0.0,0.0,1295.9524129627664,760.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108659,1,2,0,1,2,457.0,300.0,350.0,43,5.0,2.0,4.0,6.0,3.5,6,6,297.546326035464,760.0,53540.375854807564,4,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014194894747489098,15297.250244230732,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +8652,2,48.0,0.0,5,112,1418.0,0.0,0.0,56,43,527.3414255183008,0.0,2417.9743705015826,2038.0,166.2707070475825,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,3,108660,2,3,3,0,1,,246.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,729.26024534232,1418.0,40040.53641591554,1,1,1,2,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0508984190129362,16016.214566366218,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +8653,2,83.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,2710.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108661,2,2,2,0,1,,179.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,775.766444242023,0.0,18518.866400392424,0,5,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14633725096383726,18518.866400392424,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +8654,2,47.0,0.0,6,211,1000.0,,,0,65,0.0,0.0,,1000.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,108662,2,1,0,0,2,,300.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,60.776706753632986,1000.0,46988.810096923655,0,1,1,2,92.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021281662547685362,31325.873397949104,8,4,8,8_1,8_2,8_0_0 +8655,2,58.0,0.0,6,111,576.0,1651.0,0.0,0,45,0.0,0.0,982.1955129823073,2227.0,0.0,3134.430183148592,12,1,2,2,1,2,2,2,2,2,15.0,1,,4,108663,2,1,2,0,1,,271.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1860.93386054544,576.0,42388.54550830479,0,1,0,1,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05253777814961083,42388.54550830479,9,5,9,9_1,9_3,9_0_0 +8656,2,21.0,0.0,2,111,0.0,0.0,0.0,54,55,0.0,0.0,0.0,432.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,108664,2,1,0,1,1,70.0,339.0,219.0,43,2.0,0.0,2.0,2.0,1.5,2,2,249.686080549858,0.0,24682.215176783033,4,1,2,3,42.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017502480912100406,16454.810117855355,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +8657,0,35.0,0.0,7,112,0.0,0.0,0.0,0,85,0.0,0.0,0.0,823.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,108665,2,2,5,0,1,,249.0,,31,0.0,0.0,3.0,2.0,1.3,1,1,1637.79183885271,0.0,7399.699488629729,0,7,5,0,98.0,9,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11122073285065291,5692.076529715176,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8658,2,55.0,0.0,6,111,440.0,,,11,52,0.0,0.0,,690.0,346.39730634913025,,50,0,0,0,0,0,0,0,0,0,,1,,4,108666,2,3,0,0,2,,400.0,,42,1.0,0.0,6.0,4.0,2.5,4,3,86.24628522782258,440.0,29510.56884452458,5,1,0,1,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02338145373053435,11804.227537809831,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +8659,2,72.0,0.0,1,300,605.0,1360.0,0.0,78,77,0.0,0.0,1031.646328740097,1965.0,0.0,2581.965505198113,71,0,0,0,0,0,0,0,0,0,,1,,1,108667,2,1,1,0,1,,555.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,1323.83347080527,605.0,28186.544174535535,5,5,0,1,160.0,0,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06971411563732005,18791.029449690355,5,3,5,5_1,5_0,5_1_0 +8660,2,62.0,0.0,6,111,590.0,,,0,75,0.0,0.0,,657.0,92.8344781015669,,41,0,0,0,0,0,0,0,0,0,,1,,4,108668,2,2,0,0,2,,260.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,81.38072162442728,590.0,34526.668794810714,0,5,0,1,168.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019028768859935475,34526.668794810714,9,5,9,9_1,9_2,9_0_0 +8661,2,50.0,0.0,6,111,580.0,,,0,37,0.0,0.0,,580.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,4,108669,1,3,0,0,2,,600.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,98.27538169296517,580.0,1376.0502183257452,0,4,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.4214962450321705,917.3668122171634,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +8662,2,49.0,0.0,7,111,600.0,,,0,85,0.0,0.0,,840.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,5,108670,2,1,0,0,2,,600.0,,31,2.0,3.0,5.0,4.0,2.3,3,3,111.2568183335381,600.0,15267.5386940933,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05501869140996374,6638.060301779697,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8663,2,73.0,0.0,2,111,236.0,0.0,0.0,0,75,0.0,0.0,402.42732823580644,236.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,108671,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1018.69495273976,236.0,41565.085953270565,0,5,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00567784222232386,41565.085953270565,9,5,9,9_0,9_4,9_0_1 +8664,1,47.0,252.0,1,111,240.0,1380.0,0.0,0,64,0.0,0.0,409.2481304092947,1620.0,0.0,2619.935586156909,42,0,0,0,0,0,0,0,0,0,,2,,1,108672,2,1,0,0,1,,130.0,280.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1132.60523509789,240.0,7204.897959183673,0,1,2,3,45.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.22484704282800816,7204.897959183673,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +8665,2,66.0,0.0,6,300,700.0,0.0,0.0,90,74,1582.0242765549024,0.0,1193.6403803604428,2320.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,108673,2,1,2,0,1,,320.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1685.22501840498,700.0,45725.84571022915,5,5,0,1,220.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050737169842678315,30483.897140152767,8,4,8,8_1,8_1,8_0_0 +8666,2,33.0,0.0,9,112,1500.0,0.0,0.0,54,64,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,108674,2,1,1,0,1,,200.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,494.041069901417,1500.0,50487.53298755198,1,1,1,2,100.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02971030492557112,24041.682375024753,6,3,6,6_1,6_0,6_0_0 +8667,2,53.0,0.0,2,111,621.0,1320.0,0.0,75,43,0.0,132.4327277010224,1058.92953743405,2041.0,0.0,2506.0253432805216,50,2,2,1,2,1,2,2,1,2,10.0,1,,2,108675,2,2,2,0,1,,400.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,1464.78945841597,621.0,44626.752118910554,7,1,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04573489898080949,22313.376059455277,6,3,6,6_1,6_2,6_0_1 +8668,0,39.0,0.0,7,111,900.0,1400.0,0.0,54,47,0.0,0.0,1534.680489034855,2300.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,108676,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,927.948513158322,900.0,30463.79131800944,1,1,5,0,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0754994667600778,13245.126660004105,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +8669,2,62.0,0.0,5,221,468.0,0.0,0.0,0,78,0.0,0.0,798.0338542981247,528.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108677,2,1,0,1,1,,0.0,,31,1.0,2.0,4.0,2.0,1.5,2,2,3164.28448504558,468.0,34485.33215670426,0,5,0,1,85.0,1,3,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015310857311761518,22990.22143780284,6,3,6,6_0,6_1,6_0_0 +8670,1,22.0,414.0,2,120,0.0,,,0,85,0.0,0.0,,181.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,108678,2,2,0,0,2,,397.0,650.0,31,0.0,0.0,4.0,3.0,1.6,1,1,139.18570599151215,0.0,18872.676479616726,0,6,2,3,81.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009590584578477118,11795.422799760454,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8671,2,51.0,0.0,2,111,600.0,,,0,85,0.0,0.0,,700.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,2,108679,2,2,0,0,2,,550.0,,21,1.0,0.0,4.0,3.0,2.0,3,3,114.1304464618988,600.0,21214.025992088667,0,7,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03299703697266377,10607.012996044334,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +8672,2,52.0,0.0,5,120,750.0,0.0,0.0,0,48,0.0,0.0,1278.9004075290459,780.0,41.567676761895626,0.0,50,2,2,2,2,1,2,2,2,2,5.0,1,,3,108680,1,3,4,0,2,,650.0,469.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1887.48812909439,750.0,13618.084195769596,0,1,2,3,60.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.05727677908191403,13618.084195769596,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8673,2,61.0,0.0,1,111,565.0,0.0,0.0,0,52,0.0,0.0,963.4383070052146,765.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,1,108681,2,1,0,0,1,,180.0,,22,2.0,3.0,2.0,2.0,1.5,2,2,1178.66420178229,565.0,25443.402010995127,0,1,0,1,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030066733987436603,16962.268007330083,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +8674,2,24.0,0.0,2,111,300.0,420.0,0.0,52,47,0.0,0.0,511.56016301161833,720.0,0.0,797.3717001347114,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,108682,2,1,0,1,1,573.0,0.0,750.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2593.01314378659,300.0,37082.807383454754,1,1,2,3,80.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019416005712697,24721.871588969836,7,4,7,7_0,7_3,7_0_1 +8676,2,78.0,0.0,5,112,308.0,0.0,0.0,71,71,0.0,0.0,525.2017673585948,368.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,108684,2,1,3,0,1,,180.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,954.446487294094,308.0,31963.19392135837,5,5,0,1,100.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01151324241580551,21308.795947572245,6,3,6,6_1,6_0,6_0_0 +8677,1,85.0,200.0,7,111,1000.0,0.0,0.0,0,86,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,108685,2,1,1,0,1,,180.0,246.0,11,0.0,8.0,2.0,1.0,1.0,1,1,364.275819328031,1000.0,10477.091450503201,0,6,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09544633686975895,10477.091450503201,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +8678,2,25.0,0.0,2,221,516.0,1433.0,0.0,0,67,0.0,0.0,879.8834803799836,1949.0,0.0,2720.5563006977177,50,1,2,2,1,1,2,2,2,2,25.0,1,,2,108686,2,2,1,0,1,,207.0,338.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1410.41076640062,516.0,16616.925657750042,0,1,2,3,78.0,1,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.11729004751796535,16616.925657750042,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +8680,2,74.0,0.0,2,111,1000.0,,,75,74,0.0,0.0,,1150.0,207.83838380947813,,20,0,0,0,0,0,0,0,0,0,,1,,2,108688,2,1,0,0,2,,1000.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,87.17934639004365,1000.0,68191.65470635203,5,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01686423368009103,45461.10313756802,10,5,10,10_1,10_2,10_0_1 +8681,2,42.0,0.0,7,111,0.0,700.0,0.0,85,65,0.0,0.0,0.0,1492.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,45.0,2,,5,108689,1,1,0,0,1,,0.0,550.0,42,1.0,0.0,3.0,4.0,2.1,2,2,767.24805370247,0.0,38726.04278568899,6,1,2,3,71.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03852704517879015,18440.97275508999,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +8682,0,25.0,0.0,8,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,757.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2000.0,6,108690,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1242.46981866439,0.0,5400.5808405429525,0,4,5,0,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1401701080589499,5400.5808405429525,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +8683,2,53.0,0.0,5,111,411.0,0.0,0.0,55,48,0.0,0.0,700.8374233259171,411.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,108691,1,1,0,1,1,,0.0,,43,2.0,3.0,5.0,4.0,2.3,3,3,334.674277951988,411.0,47911.573819138815,1,1,1,2,116.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008578303053693916,20831.119051799487,5,3,5,5_0,5_4,5_0_0 +8684,2,83.0,0.0,2,111,150.0,100.0,0.0,0,78,1582.0242765549024,0.0,255.78008150580916,1750.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,0,,1,,2,108692,1,2,2,0,2,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,980.610370681522,150.0,19470.3848222552,0,5,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08988009307344047,19470.3848222552,5,3,5,5_1,5_4,5_0_1 +8685,2,61.0,0.0,6,221,2200.0,0.0,0.0,85,12,0.0,860.8127300566456,3751.441195418535,2850.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,4,108693,2,1,1,0,1,,260.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,972.803382413001,2200.0,33364.41728265004,6,1,0,1,116.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08542034395074058,22242.944855100028,6,3,6,6_1,6_1,6_0_0 +8686,1,68.0,150.0,2,111,780.0,0.0,0.0,86,78,0.0,0.0,1330.0564238302077,1556.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,108694,2,3,0,1,1,931.0,816.0,457.0,41,0.0,5.0,5.0,7.0,3.3999999999999995,4,4,357.984465600845,780.0,19562.63760056509,6,5,2,3,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.07953937663063662,5753.7169413426745,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8687,2,36.0,0.0,9,111,1000.0,0.0,0.0,37,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,108695,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1661.2916958686,1000.0,117057.18156159423,1,1,1,2,87.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00854283339697369,55741.515029330585,10,5,10,10_0,10_3,10_0_0 +8688,0,52.0,0.0,2,111,700.0,,,85,67,0.0,0.0,,860.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,108696,2,2,0,0,2,,480.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,54.033308037715244,700.0,19584.224168126093,6,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04391289604413718,9325.821032440996,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8689,1,67.0,18.0,2,111,230.0,299.0,0.0,86,75,0.0,0.0,392.1961249755741,529.0,0.0,567.6527103339969,50,1,2,2,1,1,2,2,2,0,,2,,2,108697,1,3,0,1,2,1019.0,0.0,232.0,41,0.0,4.0,3.0,2.0,1.5,2,2,473.378592975229,230.0,16523.113165866005,6,5,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.032015758452397805,11015.408777244003,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8690,2,68.0,0.0,2,111,330.0,730.0,0.0,78,78,0.0,0.0,562.7161793127802,1060.0,0.0,1385.9079549960459,50,0,0,0,0,0,0,0,0,0,,1,,2,108699,2,2,5,0,1,,216.0,353.0,41,0.0,3.0,5.0,2.0,1.5,2,2,163.922124348766,330.0,24185.22062299802,6,5,2,3,75.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0438284196999234,16123.480415332013,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +8691,2,78.0,0.0,2,111,150.0,585.0,0.0,75,74,0.0,0.0,255.78008150580916,735.0,0.0,1110.6248680447766,50,0,0,0,0,0,0,0,0,0,,2,,2,108700,2,1,0,1,1,492.0,0.0,294.0,41,0.0,1.0,3.0,2.0,1.5,2,2,778.812067665821,150.0,48456.27120717589,5,5,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015168315301387736,32304.180804783926,8,4,8,8_0,8_4,8_0_1 +8692,2,59.0,0.0,7,111,0.0,0.0,0.0,86,90,0.0,0.0,0.0,2624.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,18.0,1,,5,108701,2,1,2,0,1,,220.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,1065.79758840113,0.0,27337.829595313684,7,1,0,1,120.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0959842108478799,18225.219730209123,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +8693,1,39.0,320.0,2,111,263.0,220.0,0.0,85,68,0.0,0.0,448.4677429068521,1405.0,0.0,417.6708905467536,50,0,0,0,0,0,0,0,0,0,,2,,2,108702,2,1,0,1,1,616.0,0.0,285.0,42,1.0,0.0,4.0,4.0,2.1,2,2,482.690207069639,263.0,16444.110817677712,6,4,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08544092262438416,7830.528960798911,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8694,2,62.0,0.0,6,111,1200.0,0.0,0.0,0,54,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,45.0,1,,4,108703,2,1,1,0,1,,1200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1436.89513146031,1200.0,45557.35461664217,0,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026340423189577345,45557.35461664217,10,5,10,10_1,10_3,10_0_0 +8695,2,76.0,0.0,5,112,1450.0,0.0,0.0,0,72,3164.0485531098047,278.10872817214704,2472.540787889489,4720.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,108704,2,1,2,0,1,,110.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,553.857442381345,1450.0,19188.030829824515,0,5,0,1,90.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.24598668002260904,19188.030829824515,5,3,5,5_1,5_1,5_0_0 +8696,2,73.0,0.0,1,111,780.0,,,0,86,0.0,0.0,,924.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,1,108705,1,3,0,0,2,,700.0,,21,0.0,6.0,3.0,2.0,1.5,2,2,28.979355299167874,780.0,14901.857992252197,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06200569086622674,9934.571994834798,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +8697,2,71.0,0.0,1,111,780.0,0.0,0.0,74,74,0.0,0.0,1330.0564238302077,2380.0,2216.9427606344334,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,108706,1,1,3,0,1,,200.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1147.53079759281,780.0,63250.037016215596,5,5,0,1,170.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0376284364764851,42166.69134414373,9,5,9,9_1,9_3,9_1_0 +8698,2,63.0,0.0,2,211,450.0,0.0,0.0,0,75,0.0,0.0,767.3402445174275,450.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,108707,2,1,0,0,1,,100.0,347.0,11,0.0,3.0,1.0,1.0,1.0,1,1,582.315123751508,450.0,17263.155341420403,0,5,2,3,30.0,1,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02606707702619643,17263.155341420403,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +8699,1,31.0,270.0,7,111,0.0,0.0,0.0,84,62,0.0,0.0,0.0,1130.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,108708,1,2,0,1,1,44.0,0.0,405.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1308.37224016214,0.0,21717.726541839682,3,4,2,3,65.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0520312288592008,12065.403634355378,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8700,2,82.0,0.0,2,221,265.0,0.0,0.0,0,78,2847.643697798824,0.0,451.8781439935962,2995.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108709,2,1,2,0,2,,310.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1068.8555385047,265.0,18758.695865293783,0,5,0,1,100.0,1,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15965928663202913,18758.695865293783,5,3,5,5_1,5_1,5_0_1 +8701,0,81.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,1589.1927324122687,0.0,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108710,2,1,1,0,1,,0.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,738.601829682066,0.0,26676.55165070071,0,5,5,0,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04498332527054635,26676.55165070071,7,4,7,7_1,7_3,7_0_1 +8702,2,58.0,0.0,5,111,1150.0,800.0,0.0,64,56,0.0,0.0,1960.9806248778702,1950.0,0.0,1518.8032383518312,70,2,2,2,2,2,2,2,1,0,,2,,3,108711,1,3,0,0,1,,600.0,389.0,43,4.0,0.0,4.0,4.0,2.5,4,4,1376.02303686136,1150.0,57478.83808879265,1,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.033925529200636635,22991.535235517058,6,3,6,6_0,6_3,6_0_0 +8703,2,31.0,0.0,9,120,1340.0,0.0,0.0,62,42,0.0,0.0,2284.968728118562,1400.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,7.0,1,2004.0,6,108712,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1823.1744589706,1340.0,54797.89374019611,1,1,1,2,105.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02554842721943987,26094.2351143791,7,4,7,7_1,7_1,7_0_0 +8704,2,42.0,0.0,9,111,2300.0,0.0,0.0,55,37,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,108713,1,1,1,0,1,,432.0,757.0,43,2.0,0.0,5.0,4.0,2.1,2,2,988.006796434062,2300.0,67393.41804608269,1,1,3,4,120.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03412796184973571,32092.103831467946,8,4,8,8_1,8_2,8_0_0 +8705,2,33.0,0.0,9,111,1674.0,0.0,0.0,54,38,0.0,0.0,2854.5057096048304,1674.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2009.0,6,108714,2,1,1,0,1,,379.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,885.32219102817,1674.0,49948.2712935689,1,1,1,2,144.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033514673414043385,23784.891092175665,6,3,6,6_1,6_2,6_0_0 +8706,2,47.0,0.0,9,111,320.0,,,0,68,0.0,0.0,,364.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,108715,2,2,0,0,2,,120.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,119.64292257518935,320.0,12822.776551497056,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02838698768072217,12822.776551497056,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +8707,2,48.0,0.0,1,111,300.0,945.0,0.0,0,46,0.0,172.1625460113291,511.56016301161833,1375.0,0.0,1794.0863253031007,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,108716,2,1,1,0,1,,212.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,272.090537539937,300.0,29259.652839502065,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04699303876031222,16255.362688612258,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +8708,1,26.0,395.0,9,111,523.0,930.0,0.0,85,55,0.0,0.0,891.819884183588,1453.0,0.0,1765.6087645840037,71,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,108717,2,1,1,0,1,,672.0,650.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,809.311524381158,523.0,28786.78611144998,6,1,2,3,104.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.050474547397358384,10661.772633870363,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +8709,1,47.0,450.0,2,111,700.0,,,0,85,0.0,0.0,,976.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,0,,1,,2,108718,2,1,0,0,2,,600.0,500.0,31,0.0,1.0,4.0,6.0,3.0999999999999996,4,3,83.16734173391669,700.0,32180.333701337964,0,6,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.030329082633453883,10380.752806883216,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +8710,2,53.0,0.0,7,111,1539.0,2446.0,0.0,54,35,0.0,0.0,2624.3036362496023,3985.0,0.0,4643.740901260724,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,108719,2,1,2,0,1,,876.0,,43,3.0,2.0,7.0,4.0,2.5,4,4,793.691901037069,1539.0,115774.58820674894,1,1,0,1,121.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03442033404501195,46309.835282699576,10,5,10,10_1,10_4,10_0_0 +8711,2,30.0,0.0,2,111,320.0,,,81,85,0.0,0.0,,360.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,1,,2,108720,2,1,0,0,2,,60.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,136.55287596867151,320.0,15471.0,4,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02326934264107039,7367.142857142857,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8712,1,20.0,297.0,5,111,0.0,0.0,0.0,67,56,0.0,0.0,0.0,831.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108721,2,1,0,0,1,,524.0,268.0,43,2.0,2.0,2.0,3.0,1.8,2,2,470.368322192378,0.0,14597.691658584055,1,1,2,3,65.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.056926808665076656,8109.8286992133635,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8713,2,41.0,0.0,8,111,500.0,,,45,46,0.0,0.0,,698.0,274.3466666285112,,43,0,0,0,0,0,0,0,0,2,5.0,2,2003.0,6,108722,2,2,0,0,2,,500.0,700.0,43,2.0,0.0,4.0,4.0,2.3,3,2,110.79232453173103,500.0,33767.18072764098,1,1,2,3,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020670958752225188,14681.382925061298,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +8714,1,58.0,236.0,2,111,720.0,565.0,0.0,78,78,0.0,0.0,1227.744391227884,1405.0,166.2707070475825,1072.6547870859808,50,2,1,2,1,1,2,2,2,0,,2,,2,108723,1,2,0,1,1,565.0,0.0,291.0,41,0.0,1.0,3.0,3.0,2.0,3,3,407.458845849046,720.0,27519.43116911657,6,7,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.05105483435924898,13759.715584558286,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +8715,2,52.0,0.0,2,111,0.0,0.0,1350.0,46,46,0.0,0.0,850.9296920599041,1350.0,0.0,1615.5883992123192,20,1,2,2,2,1,2,2,2,3,75.0,2,,2,108724,1,3,0,0,1,,0.0,168.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1150.60820167976,0.0,34166.28909391932,4,1,2,3,33.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.039512631772476096,22777.526062612877,6,3,6,6_0,6_4,6_0_1 +8716,1,42.0,130.0,9,221,600.0,0.0,0.0,52,67,0.0,582.7040018844986,1023.1203260232367,1220.0,249.40606057137379,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,108725,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1272.28118210613,600.0,32453.238877461834,4,1,1,2,95.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03759254984091179,15453.923274981826,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +8717,2,49.0,0.0,7,111,1000.0,0.0,0.0,35,90,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,5,108727,1,2,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,886.986415087604,1000.0,265526.63780517445,1,1,2,3,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003766100487190037,110636.09908548936,10,5,10,10_0,10_4,10_0_0 +8718,2,32.0,0.0,5,120,360.0,,,47,34,0.0,0.0,,381.0,29.09737373332694,,10,2,2,2,2,1,2,2,2,2,60.0,1,,3,108728,2,3,0,0,2,,216.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,133.68941683617973,360.0,72380.28587107215,1,1,1,2,108.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.005263864261031778,48253.5239140481,10,5,10,10_1,10_2,10_0_0 +8719,0,78.0,0.0,1,111,609.0,93.0,0.0,75,74,1816.1638694850278,0.0,1038.4671309135852,2424.0,0.0,176.56087645840037,12,0,0,0,0,0,0,0,0,0,,1,,1,108729,2,2,2,0,1,,345.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1308.87575818424,609.0,84258.61204591059,5,5,0,1,120.0,9,7,7,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028768572625896306,56172.40803060706,10,5,10,10_1,10_3,10_1_0 +8720,2,31.0,0.0,2,111,489.0,197.0,0.0,0,52,0.0,0.0,833.843065708938,686.0,0.0,374.0052974441384,43,2,1,2,2,1,2,2,2,0,,2,,2,108730,2,3,0,1,1,900.0,0.0,385.0,22,2.0,1.0,4.0,3.0,2.0,3,3,1024.72231078043,489.0,45582.06367750038,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015049779335432202,22791.03183875019,6,3,6,6_0,6_4,6_0_1 +8721,2,41.0,0.0,5,111,460.0,,,55,56,0.0,0.0,,700.0,332.541414095165,,43,0,0,0,0,0,0,0,0,0,,1,,3,108731,2,1,0,0,2,,480.0,397.0,43,2.0,2.0,4.0,4.0,2.3,3,3,123.87113919590674,460.0,23830.261823975852,4,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029374414984216553,10360.983401728632,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +8722,0,90.0,0.0,6,111,1329.0,0.0,0.0,0,71,0.0,0.0,2266.2115221414692,1419.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,108732,2,1,3,0,1,,195.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1287.58692777246,1329.0,15117.455452746926,0,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09386500290577406,15117.455452746926,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +8723,2,43.0,0.0,8,111,480.0,,,55,42,0.0,0.0,,572.0,127.47420873647992,,20,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,108733,2,1,0,0,2,,360.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,104.17218421074864,480.0,62106.03586627289,1,1,1,2,96.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009210054900809223,41404.02391084859,9,5,9,9_1,9_2,9_0_0 +8724,1,89.0,77.0,5,112,1281.0,0.0,0.0,0,77,0.0,0.0,2184.3618960596104,1281.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,108734,1,3,0,0,1,,148.0,334.0,11,0.0,3.0,2.0,1.0,1.0,1,1,3071.3974414447,1281.0,14875.553764752984,0,5,2,3,49.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08611444120052035,14875.553764752984,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +8725,1,27.0,250.0,9,112,1350.0,0.0,0.0,0,46,0.0,0.0,2302.0207335522828,1400.0,69.27946126982604,0.0,42,2,2,2,2,1,2,2,2,1,2.0,8,2010.0,6,108735,1,2,0,0,1,,310.0,600.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2339.15445788441,1350.0,10344.95074008206,0,1,2,3,75.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.13533172222615095,10344.95074008206,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +8726,1,61.0,307.0,2,111,480.0,0.0,0.0,0,46,0.0,0.0,818.4962608185893,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,50.0,2,,2,108736,2,1,0,0,1,,320.0,580.0,12,1.0,2.0,2.0,1.0,1.0,1,1,868.701339268387,480.0,10084.9356065978,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04759574267246414,10084.9356065978,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +8727,2,64.0,0.0,1,111,950.0,0.0,0.0,31,37,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,20,1,2,2,1,1,1,1,2,3,30.0,2,,1,108737,1,1,0,1,1,,0.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,582.016687897659,950.0,142588.75987866524,5,1,0,1,180.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.006662516742612776,95059.17325244349,10,5,10,10_0,10_4,10_1_0 +8728,2,96.0,0.0,2,300,0.0,,,0,71,0.0,0.0,,427.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,108738,2,1,0,0,2,,121.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,70.87449904138447,0.0,6026.133860164249,0,5,0,1,65.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0708580343398415,6026.133860164249,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +8729,2,83.0,0.0,7,120,260.0,0.0,0.0,77,72,0.0,397.2981831030672,443.3521412767359,680.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108739,2,1,1,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1419.33392736162,260.0,37858.67399952376,5,5,0,1,80.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01796153769169396,25239.115999682504,7,4,7,7_1,7_1,7_0_0 +8730,2,82.0,0.0,9,111,2266.0,0.0,0.0,74,74,0.0,0.0,3863.9844312810906,2266.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108740,2,1,1,0,1,,1615.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1015.62779242522,2266.0,59958.2424622173,5,5,1,2,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037792969022197746,39972.1616414782,9,5,9,9_1,9_2,9_0_0 +8731,2,66.0,0.0,2,111,500.0,0.0,0.0,71,71,0.0,0.0,852.6002716860306,600.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108741,2,1,2,0,1,,160.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1568.32421621823,500.0,17003.006713480394,5,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03528787643918917,11335.33780898693,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +8732,2,58.0,0.0,2,111,552.0,,,0,63,0.0,0.0,,636.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,2,108742,1,1,0,0,2,,120.0,76.0,12,1.0,3.0,3.0,1.0,1.0,1,1,144.0287250640613,552.0,5013.587952244074,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12685525935878464,5013.587952244074,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8733,2,35.0,0.0,9,111,0.0,,,0,54,0.0,0.0,,1307.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,108743,2,1,0,0,1,,153.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,299.9976131578885,0.0,5795.0,0,1,1,2,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22553925798101812,5795.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8734,2,52.0,0.0,9,400,1500.0,,,0,85,0.0,0.0,,1950.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108744,2,2,0,0,2,,1000.0,,31,1.0,0.0,5.0,2.0,1.5,2,2,25.338392378701943,1500.0,9456.0,0,6,0,1,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20621827411167512,6304.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8735,2,88.0,0.0,2,111,270.0,130.0,0.0,75,31,0.0,0.0,460.40414671045653,400.0,0.0,246.80552623217258,10,0,0,0,0,0,0,0,0,0,,2,,2,108745,2,1,0,1,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,951.773459169417,270.0,122557.87986468148,5,4,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0032637640308534033,81705.25324312098,10,5,10,10_0,10_4,10_0_1 +8736,2,55.0,0.0,6,112,1330.0,0.0,0.0,65,47,0.0,728.3800023556231,2267.9167226848413,1880.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,108746,2,1,1,0,1,,303.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1478.13446586546,1330.0,48691.42835313511,1,1,0,1,105.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0386104918994218,32460.952235423407,8,4,8,8_1,8_2,8_0_0 +8737,2,74.0,0.0,1,111,0.0,0.0,900.0,77,74,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,50,0,0,0,0,0,0,0,0,0,,2,,1,108747,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,662.03525699488,0.0,87411.43517133415,5,5,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010296135719953806,58274.290114222764,10,5,10,10_0,10_4,10_1_0 +8738,2,53.0,0.0,2,111,1080.0,0.0,0.0,52,62,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,108748,2,1,1,0,1,,280.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,2294.17417420906,1080.0,51155.69744175915,1,1,0,1,87.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021112017898486907,34103.7982945061,9,5,9,9_1,9_2,9_0_1 +8739,2,62.0,0.0,6,112,1570.0,0.0,0.0,0,54,0.0,0.0,2677.164853094136,1640.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,108749,2,1,2,0,1,,258.0,,22,2.0,0.0,5.0,3.0,2.0,3,3,724.981780082319,1570.0,5471.987891506012,0,1,0,1,120.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.29970826553650065,2735.993945753006,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +8740,1,46.0,270.0,5,111,640.0,0.0,0.0,0,62,0.0,0.0,1091.3283477581192,665.0,34.63973063491302,0.0,71,2,2,2,1,1,2,2,2,0,,1,,3,108750,1,2,5,0,1,,180.0,451.0,12,1.0,2.0,4.0,1.0,1.0,1,1,407.043964414509,640.0,7204.897959183673,0,4,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.09229832313618853,7204.897959183673,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +8741,0,68.0,0.0,2,111,640.0,,,42,72,0.0,0.0,,766.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,,2,108751,2,1,0,0,2,,660.0,,42,1.0,2.0,3.0,4.0,2.3,3,3,91.90446101579518,640.0,11138.69966565313,4,7,5,0,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06876924802650065,4842.912898110057,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8742,2,62.0,0.0,5,300,940.0,0.0,0.0,78,77,0.0,264.8654554020448,1602.8885107697374,1280.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,108752,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1238.1424768297,940.0,32598.264059422552,5,5,0,1,77.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03926589457851867,21732.176039615035,6,3,6,6_1,6_0,6_0_0 +8743,2,52.0,0.0,8,111,600.0,,,64,42,0.0,0.0,,726.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,108753,2,2,0,0,2,,500.0,,43,2.0,3.0,4.0,3.0,2.0,3,2,113.54095718939438,600.0,37611.76452305372,4,1,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01930247116045317,18805.88226152686,5,3,5,5_1,5_3,5_0_0 +8744,2,61.0,0.0,6,111,2000.0,0.0,0.0,77,74,0.0,264.8654554020448,3410.4010867441225,2200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,108754,2,1,2,0,1,,550.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,1805.89694517628,2000.0,75855.07586710775,5,5,0,1,120.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029002673517250586,37927.537933553875,9,5,9,9_1,9_2,9_0_0 +8745,2,67.0,0.0,2,221,200.0,,,0,86,0.0,0.0,,338.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,108755,1,1,0,0,2,,180.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,128.3702473473919,200.0,11108.403091319648,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0304274158239829,11108.403091319648,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +8746,2,91.0,0.0,2,111,320.0,,,0,71,0.0,0.0,,410.0,124.70303028568689,,70,0,0,0,0,0,0,0,0,0,,1,,2,108756,2,1,0,0,2,,320.0,,21,1.0,5.0,3.0,2.0,1.5,2,2,88.57414691219984,320.0,13725.454980158445,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02987150521368487,9150.30332010563,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8747,2,79.0,0.0,7,111,318.0,,,0,75,0.0,0.0,,387.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,5,108757,2,1,0,0,2,,172.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,86.92400310740058,318.0,4640.096579245869,0,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08340343641357938,4640.096579245869,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8748,2,80.0,0.0,2,111,600.0,1400.0,0.0,0,77,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,60,2,2,2,1,2,2,2,2,0,,2,,2,108758,2,2,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1314.25612345459,600.0,23101.55294636275,0,5,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.08657426644189703,23101.55294636275,6,3,6,6_0,6_4,6_0_1 +8749,2,66.0,0.0,7,111,576.0,,,0,77,0.0,0.0,,760.0,254.94841747295985,,70,0,0,0,0,0,0,0,0,0,,1,,5,108759,2,2,0,0,2,,252.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,102.59037127442791,576.0,10119.592625174884,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07510183741085782,10119.592625174884,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +8750,1,55.0,430.0,2,111,0.0,0.0,122.0,0,85,0.0,0.0,76.89883143059875,122.0,0.0,146.00132200289107,71,0,0,0,0,0,0,0,0,0,,1,,2,108760,2,1,3,0,1,,400.0,550.0,31,0.0,3.0,4.0,3.0,2.0,3,1,350.896966146691,0.0,10066.681067175636,0,6,2,3,90.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01211918796134355,5033.340533587818,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +8751,1,54.0,346.0,6,111,612.0,,,0,54,0.0,0.0,,696.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,2,,4,108761,2,1,0,0,2,,190.0,524.0,22,1.0,1.0,4.0,2.0,1.5,2,2,130.10966076830368,612.0,16027.685426594016,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04342486026367591,10685.123617729345,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8752,1,28.0,98.0,2,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,1506.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,108762,2,1,0,0,1,,0.0,277.0,42,1.0,0.0,3.0,3.0,1.8,2,2,336.067203342689,0.0,19313.225064020946,6,1,2,3,59.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07797765494927941,10729.569480011636,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +8753,2,43.0,0.0,8,112,972.0,0.0,0.0,43,63,949.2145659329414,0.0,1657.4549281576435,1917.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,108763,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,2016.20868807755,972.0,53814.064781300745,1,1,1,2,150.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03562265752997192,25625.745133952736,7,4,7,7_1,7_0,7_0_0 +8754,2,62.0,0.0,5,112,400.0,800.0,0.0,75,90,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,3,108764,2,1,2,0,1,,240.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,384.157914942416,400.0,22122.26941231253,6,5,0,1,90.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054243982732265224,14748.179608208353,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +8755,2,43.0,0.0,7,111,908.0,1024.0,0.0,46,48,0.0,0.0,1548.3220933818316,1932.0,0.0,1944.068145090344,71,0,0,0,0,0,0,0,0,0,,1,,5,108765,2,1,2,0,1,,468.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,595.408708439048,908.0,81952.67759493485,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023574580559151966,35631.5989543195,9,5,9,9_1,9_4,9_0_0 +8756,2,82.0,0.0,7,300,750.0,0.0,0.0,71,71,0.0,0.0,1278.9004075290459,2274.0,2111.637979504298,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,108766,2,1,1,0,1,,178.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,995.972661257182,750.0,29820.45963618547,5,5,0,1,112.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07625636987971263,19880.306424123646,5,3,5,5_1,5_0,5_0_0 +8757,2,41.0,0.0,8,120,450.0,,,63,52,0.0,0.0,,582.0,182.89777775234077,,20,0,0,0,0,0,0,0,0,2,5.0,1,1999.0,6,108767,2,1,0,0,2,,280.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,131.19151533787112,450.0,22252.127301354245,4,1,0,1,79.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026154802734953794,10596.251095882973,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +8758,1,40.0,92.0,8,111,426.0,970.0,0.0,68,64,0.0,0.0,726.415431476498,1396.0,0.0,1841.5489265015954,50,2,2,2,2,1,2,2,2,0,,1,1999.0,6,108768,2,1,2,0,1,,380.0,456.0,43,3.0,0.0,3.0,3.0,2.0,3,3,436.094576313179,426.0,16582.92185368712,1,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.0841829933420091,8291.46092684356,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +8759,2,35.0,0.0,9,112,330.0,720.0,0.0,53,53,0.0,0.0,562.7161793127802,1050.0,0.0,1366.922914516648,41,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,108769,2,1,1,0,1,,474.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,2228.30425501966,330.0,48447.034139036536,1,1,1,2,150.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02167315334488051,23070.016256684063,6,3,6,6_1,6_1,6_0_0 +8760,1,24.0,35.0,9,111,80.0,700.0,0.0,62,64,0.0,0.0,136.4160434697649,780.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,108770,2,1,1,0,1,,432.0,483.0,43,2.0,0.0,3.0,4.0,2.1,2,2,973.516063585544,80.0,43333.84473991806,1,1,2,3,73.0,5,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01799978757207951,20635.16416186574,5,3,5,5_1,5_2,5_0_0 +8761,2,59.0,0.0,2,211,1100.0,0.0,0.0,0,13,0.0,0.0,1875.7205977092674,1200.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108771,2,1,3,0,1,,0.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,1242.36244324801,1100.0,23474.945070964463,0,1,0,1,100.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.051118330474146594,15649.963380642976,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +8762,1,47.0,353.0,5,111,0.0,,,0,85,0.0,0.0,,500.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,108772,2,2,0,0,2,,181.0,494.0,31,0.0,0.0,4.0,4.0,2.3,3,2,115.01806936607005,0.0,25716.09523309987,0,6,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019443076231745973,11180.910970912988,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8763,2,40.0,0.0,1,120,600.0,0.0,0.0,22,62,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,108773,2,1,3,0,1,,150.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,295.838022816425,600.0,43071.9532287979,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015323196431192353,21535.97661439895,6,3,6,6_1,6_0,6_1_0 +8764,2,59.0,0.0,9,111,241.0,0.0,0.0,34,37,0.0,0.0,410.95333095266676,241.0,0.0,0.0,12,0,0,0,0,0,0,0,0,4,10.0,2,2008.0,6,108774,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1844.79599673902,241.0,145650.4849789815,1,1,1,2,130.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0016546460523957623,97100.32331932099,10,5,10,10_0,10_3,10_0_0 +8765,2,28.0,0.0,2,221,0.0,0.0,0.0,56,68,0.0,0.0,0.0,1158.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,2,,2,108775,1,3,0,0,1,,120.0,180.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2598.11227585193,0.0,27337.0000575113,4,1,2,3,42.0,1,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04236017110742991,18224.666705007534,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +8766,2,64.0,0.0,5,111,1800.0,0.0,0.0,46,75,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,108776,2,2,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,961.121372408275,1800.0,95971.97113686723,5,5,0,1,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01875547598613964,63981.31409124482,10,5,10,10_0,10_4,10_0_0 +8767,2,54.0,0.0,1,400,960.0,0.0,0.0,78,52,1054.6828510366015,1324.327277010224,1636.9925216371787,3020.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,108777,2,2,4,0,1,,170.0,416.0,42,3.0,0.0,4.0,5.0,3.0,5,4,729.305041136769,960.0,49924.53037206798,5,1,2,3,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06049130512581936,16641.51012402266,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8768,2,25.0,0.0,5,111,500.0,0.0,0.0,0,67,0.0,0.0,852.6002716860306,919.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,108778,1,3,0,1,1,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,340.125884932311,500.0,16076.180288082302,0,1,2,3,40.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05716532058808018,16076.180288082302,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +8769,2,67.0,0.0,2,111,0.0,0.0,240.0,77,74,0.0,0.0,151.2763896995385,360.0,166.2707070475825,287.2157154155234,50,0,0,0,0,0,0,0,0,0,,2,,2,108779,2,1,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1357.54825795719,0.0,31764.674207926873,6,5,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01133334463446699,21176.449471951248,5,3,5,5_0,5_3,5_0_1 +8770,2,48.0,0.0,2,111,2000.0,,,0,52,0.0,0.0,,2252.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,108780,2,1,0,0,2,,340.0,178.0,32,2.0,1.0,3.0,2.0,1.5,2,2,114.31491090642399,2000.0,15970.211270404798,0,1,2,3,47.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.14101253651999548,10646.807513603198,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +8771,2,37.0,0.0,7,111,800.0,,,0,42,0.0,0.0,,821.0,29.09737373332694,,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,108781,2,1,0,0,1,,450.0,850.0,12,1.0,0.0,4.0,1.0,1.0,1,1,146.2766429612708,800.0,47832.80826859428,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017163951474265547,47832.80826859428,10,5,10,10_1,10_2,10_0_0 +8772,2,48.0,0.0,8,111,0.0,0.0,176.0,67,48,0.0,0.0,110.93601911299491,3337.0,0.0,210.62485797138385,50,0,0,0,0,0,0,0,0,2,50.0,1,2001.0,6,108782,2,1,1,0,1,,250.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,272.994954355034,0.0,47622.16020925938,1,1,1,2,160.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07007241975871503,31748.10680617292,8,4,8,8_1,8_3,8_0_0 +8773,2,41.0,0.0,2,120,1000.0,0.0,0.0,0,63,0.0,0.0,1705.2005433720612,1090.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108783,2,2,2,0,1,,180.0,,22,3.0,0.0,4.0,3.0,2.0,3,3,1105.32093521789,1000.0,28443.094690157108,0,1,0,1,90.0,0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03832213097322355,14221.547345078554,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +8774,2,80.0,0.0,1,111,11500.0,100.0,0.0,86,74,0.0,0.0,19609.806248778703,11600.0,0.0,189.8504047939789,12,2,2,2,1,1,2,2,2,0,,1,,1,108784,2,3,1,0,2,,1034.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,376.391837627182,11500.0,727379.557024667,6,5,0,1,250.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.015947657434104406,484919.70468311134,10,5,10,10_1,10_4,10_1_0 +8775,0,57.0,0.0,7,111,0.0,0.0,0.0,56,52,0.0,0.0,0.0,2189.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,108785,1,2,2,0,1,,0.0,,43,4.0,2.0,9.0,4.0,2.5,4,4,498.879246803739,0.0,66154.96756918778,1,1,5,0,120.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03308897397176784,26461.98702767511,7,4,7,7_1,7_2,7_0_0 +8776,2,58.0,0.0,6,111,1500.0,0.0,0.0,52,37,0.0,0.0,2557.8008150580918,1650.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,4,120.0,1,,4,108786,2,1,2,0,1,,440.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1101.64547998187,1500.0,74740.03859437114,1,1,0,1,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022076520577609997,37370.01929718557,9,5,9,9_1,9_2,9_0_0 +8777,2,53.0,0.0,5,111,420.0,,,52,52,0.0,0.0,,672.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,108787,2,1,0,0,2,,360.0,,43,2.0,3.0,5.0,3.0,2.0,3,2,126.7858435278003,420.0,32571.277610862733,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020631674570109084,16285.638805431367,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8778,2,49.0,0.0,2,300,240.0,0.0,0.0,0,42,1582.0242765549024,264.8654554020448,409.2481304092947,1970.0,41.567676761895626,0.0,10,0,0,0,0,0,0,0,0,2,6.0,1,,2,108788,2,2,3,0,1,,220.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1156.60530277878,240.0,31312.93101636121,0,1,0,1,77.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06291330565543872,31312.93101636121,8,4,8,8_1,8_0,8_0_1 +8779,2,39.0,0.0,6,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,1308.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,4,108789,1,1,3,0,1,,820.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,469.46881863373,0.0,193789.32430890514,6,1,1,2,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006749597815383341,80745.55179537715,10,5,10,10_1,10_4,10_0_0 +8780,2,67.0,0.0,7,111,1673.0,0.0,0.0,77,77,0.0,483.37945610873174,2852.8005090614583,2038.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,108790,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2173.82363761734,1673.0,38034.26893062581,5,5,0,1,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05358325681814195,25356.179287083873,7,4,7,7_0,7_3,7_0_0 +8781,2,39.0,0.0,2,111,777.0,2084.0,0.0,43,38,0.0,0.0,1324.9408222000916,2861.0,0.0,3956.48243590652,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,108791,2,1,1,0,1,,360.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,233.738805220497,777.0,65066.983944487394,1,1,1,2,110.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04397007247855369,30984.27806880352,8,4,8,8_1,8_2,8_0_1 +8782,1,31.0,314.0,1,112,1526.0,0.0,0.0,52,21,0.0,0.0,2602.1360291857654,1701.0,242.47811444439117,0.0,50,2,2,2,2,1,2,2,1,2,120.0,2,,1,108792,1,3,0,0,1,,515.0,670.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,662.583314919712,1526.0,35176.10041236355,6,1,2,3,70.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.048356696167553,13028.185337912428,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +8783,2,56.0,0.0,1,112,0.0,0.0,0.0,47,64,0.0,0.0,0.0,2223.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,108793,2,1,1,0,1,,284.0,600.0,43,2.0,5.0,3.0,3.0,2.0,3,3,1916.72264987672,0.0,40206.898772688735,1,1,2,3,80.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05528901924437935,20103.449386344368,5,3,5,5_1,5_0,5_1_0 +8784,2,46.0,0.0,2,111,200.0,200.0,0.0,0,52,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,42,2,1,2,2,1,2,2,2,2,25.0,2,,2,108794,2,1,0,1,1,,160.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,803.804256517284,200.0,22469.757015672432,0,1,1,2,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01780170563130718,22469.757015672432,6,3,6,6_0,6_4,6_0_1 +8785,2,64.0,0.0,1,212,720.0,0.0,0.0,0,77,1054.6828510366015,794.5963662061343,1227.744391227884,2360.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108795,2,1,2,0,1,,176.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,3455.52986218749,720.0,6951.586329766857,0,7,0,1,110.0,2,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.3394908569133961,6951.586329766857,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8786,2,68.0,0.0,2,111,395.0,80.0,0.0,0,75,0.0,0.0,673.5542146319642,475.0,0.0,151.8803238351831,33,0,0,0,0,0,0,0,0,0,,2,,2,108796,2,1,0,1,2,840.0,0.0,354.0,11,0.0,1.0,3.0,1.0,1.0,1,1,310.968577996645,395.0,27773.09936741374,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017102880514564354,27773.09936741374,7,4,7,7_0,7_4,7_0_1 +8787,1,59.0,180.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,694.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108797,2,1,2,0,1,,149.0,550.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1824.1682290516,0.0,5116.933018527592,0,7,2,3,100.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1356281189312304,5116.933018527592,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +8788,2,45.0,0.0,5,112,0.0,0.0,0.0,0,42,0.0,0.0,0.0,679.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,3,108798,2,1,2,0,1,,424.0,,32,2.0,0.0,5.0,3.0,2.0,3,2,3933.73304115818,0.0,32044.63295754163,0,1,0,1,105.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021189195735200297,16022.316478770816,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +8789,2,64.0,0.0,6,111,609.0,0.0,0.0,78,72,1371.087706347582,0.0,1038.4671309135852,1969.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,108799,2,1,2,0,1,,171.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1268.98305579449,609.0,20611.177985683717,5,5,0,1,140.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09553068734681949,13740.785323789145,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8790,1,57.0,201.0,5,111,432.0,,,0,77,0.0,0.0,,726.0,407.36323226657714,,50,0,0,0,0,0,0,0,0,0,,1,,3,108800,2,2,0,0,2,,392.0,228.0,21,1.0,0.0,4.0,2.0,1.5,2,2,123.40755248089914,432.0,5474.697270471464,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13261007214330942,3649.79818031431,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +8791,2,56.0,0.0,6,112,360.0,1356.0,0.0,55,22,0.0,0.0,613.872195613942,1716.0,0.0,2574.371489006354,50,2,2,2,1,2,1,2,2,0,,2,,4,108801,1,2,0,0,1,,336.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,936.805540012842,360.0,32677.37298646725,1,1,0,1,84.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.05251340126731273,21784.9153243115,6,3,6,6_0,6_2,6_0_0 +8793,2,50.0,0.0,5,211,1500.0,,,0,42,0.0,0.0,,1500.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,3,108803,2,2,0,0,2,,300.0,,32,1.0,0.0,2.0,2.0,1.3,1,1,31.05207928486083,1500.0,74667.96414931654,0,1,0,1,75.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020088936628838434,57436.89549947426,10,5,10,10_0,10_2,10_0_0 +8794,2,46.0,0.0,2,111,210.0,,,0,42,0.0,0.0,,210.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,108804,2,2,0,0,2,,500.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,81.42426447208145,210.0,9393.964867160612,0,4,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022354778090997257,9393.964867160612,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +8795,2,61.0,0.0,2,111,240.0,180.0,0.0,85,68,0.0,0.0,409.2481304092947,420.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,108805,2,2,0,1,1,1100.0,0.0,380.0,42,2.0,0.0,4.0,4.0,2.5,4,3,299.363810513648,240.0,22734.466572152334,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018474152391790094,9093.786628860933,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +8796,2,55.0,0.0,2,111,197.0,0.0,0.0,0,34,0.0,0.0,335.92450704429604,197.0,0.0,0.0,10,0,0,0,0,0,0,0,0,4,90.0,2,,2,108806,2,2,0,1,2,,182.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1545.16166359341,197.0,53840.23451055448,0,1,0,1,50.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0036589736614423816,53840.23451055448,10,5,10,10_0,10_2,10_0_1 +8797,2,39.0,0.0,1,111,1053.0,0.0,0.0,55,46,0.0,0.0,1795.5761721707804,1113.0,83.13535352379125,0.0,43,1,1,2,1,1,2,2,2,2,5.0,2,,1,108807,1,3,0,1,1,21.0,0.0,540.0,43,2.0,0.0,2.0,4.0,2.1,2,2,814.213700788634,1053.0,49107.4604048978,1,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02266458071387038,23384.504954713237,6,3,6,6_0,6_4,6_1_0 +8798,2,40.0,0.0,8,111,0.0,0.0,1200.0,37,37,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,10,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,108808,2,1,1,0,1,,150.0,1650.0,43,2.0,0.0,6.0,4.0,2.1,2,2,1288.962884586,0.0,136862.79505511982,1,1,2,3,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008767905109030652,65172.75955005705,10,5,10,10_1,10_3,10_0_0 +8799,1,43.0,80.0,2,111,340.0,433.0,0.0,0,52,0.0,0.0,579.7681847465008,773.0,0.0,822.0522527579286,71,1,2,2,2,2,2,2,1,2,15.0,2,,2,108809,2,1,0,1,1,,115.0,441.0,32,2.0,0.0,4.0,4.0,2.3,3,2,260.464804719486,340.0,23161.387037344168,0,1,2,3,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.033374512448397696,10070.16827710616,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8800,2,52.0,0.0,9,111,1540.0,0.0,0.0,54,47,0.0,0.0,2626.0088367929743,1540.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,35.0,2,2007.0,6,108810,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1307.72887896176,1540.0,78497.22510122748,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019618527890814814,37379.631000584515,9,5,9,9_0,9_4,9_0_0 +8801,1,51.0,29.0,5,111,378.0,1261.0,0.0,0,52,0.0,0.0,644.5658053946391,1639.0,0.0,2394.013604452074,70,1,2,2,2,1,2,2,2,3,15.0,8,,3,108811,1,1,0,0,1,,0.0,347.0,32,2.0,1.0,3.0,2.0,1.5,2,2,281.426370106599,378.0,18379.672689206476,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0891746021659302,12253.11512613765,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8802,2,36.0,0.0,2,111,480.0,0.0,0.0,46,54,0.0,0.0,818.4962608185893,726.0,0.0,0.0,31,2,1,2,2,1,2,2,2,2,15.0,2,,2,108812,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,707.280060083753,480.0,36763.31278614195,4,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01974794829354084,17506.339421972356,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +8803,2,62.0,0.0,7,111,700.0,1300.0,0.0,90,75,0.0,0.0,1193.6403803604428,2000.0,0.0,2468.055262321726,44,0,0,0,0,0,0,0,0,0,,1,,5,108813,2,1,2,0,1,,650.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,663.023528240677,700.0,71168.08181234844,1,5,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0281024856799355,47445.38787489896,10,5,10,10_1,10_4,10_0_0 +8804,2,24.0,0.0,9,111,0.0,,,46,46,0.0,0.0,,661.0,0.0,,12,0,0,0,0,0,0,0,0,2,25.0,2,2009.0,6,108814,2,1,0,0,2,,127.0,830.0,43,2.0,0.0,3.0,2.0,1.5,2,2,189.6987656487426,0.0,17088.863841683935,1,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03868016072476736,11392.575894455957,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +8805,2,53.0,0.0,1,111,400.0,1600.0,0.0,78,75,0.0,0.0,682.0802173488245,2000.0,0.0,3037.6064767036623,60,0,0,0,0,0,0,0,0,0,,1,,1,108815,2,1,2,0,1,,900.0,,41,1.0,2.0,6.0,4.0,2.5,4,4,212.100249842698,400.0,26899.0,5,7,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07435220640172498,10759.6,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +8806,1,76.0,253.0,7,111,756.0,,,0,72,0.0,0.0,,756.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,108816,1,1,0,0,2,,348.0,450.0,11,0.0,2.0,2.0,1.0,1.0,1,1,154.69419876048406,756.0,5363.502010103677,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14095268326102228,5363.502010103677,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +8808,2,42.0,0.0,1,300,700.0,0.0,0.0,52,62,0.0,1191.8945493092015,1193.6403803604428,1750.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,108818,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1117.68228611496,700.0,41246.411562910645,1,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04242793333259625,22914.673090505912,6,3,6,6_1,6_0,6_1_0 +8809,2,84.0,0.0,7,111,460.0,950.0,0.0,77,75,0.0,145.67600047112464,784.3922499511482,1520.0,0.0,1803.5788455427996,50,0,0,0,0,0,0,0,0,0,,1,,5,108819,2,1,2,0,1,,156.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1355.77746177959,460.0,61997.5343446381,5,5,0,1,150.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024517104044016844,41331.68956309207,9,5,9,9_1,9_3,9_0_0 +8810,2,38.0,0.0,6,111,1073.0,0.0,0.0,46,46,0.0,211.89236432163582,1829.6801830382217,1263.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,108820,2,1,2,0,1,,196.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1254.56271635157,1073.0,59586.47720427667,1,1,1,2,99.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021196084401333786,33103.598446820375,8,4,8,8_1,8_3,8_0_0 +8811,2,61.0,0.0,2,111,600.0,75.0,0.0,35,46,0.0,0.0,1023.1203260232367,675.0,0.0,142.38780359548417,31,0,0,0,0,0,0,0,0,0,,2,,2,108821,2,1,0,1,2,,0.0,,43,4.0,0.0,3.0,4.0,2.5,4,4,833.116917834602,600.0,76260.2043688416,1,4,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008851274469909387,30504.081747536642,8,4,8,8_0,8_4,8_0_1 +8812,1,65.0,144.0,5,111,320.0,738.0,0.0,77,75,0.0,0.0,545.6641738790596,1058.0,0.0,1401.0959873795643,50,2,2,1,2,1,2,2,2,0,,2,,3,108822,2,1,0,0,1,,0.0,333.0,41,0.0,6.0,4.0,2.0,1.5,2,2,332.043232145453,320.0,32726.382337877534,5,5,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.032328657322305686,21817.58822525169,6,3,6,6_0,6_2,6_0_0 +8813,2,52.0,0.0,2,111,540.0,,,0,65,0.0,0.0,,840.0,415.67676761895626,,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,108823,2,1,0,0,2,,200.0,151.0,22,1.0,0.0,4.0,2.0,1.5,2,1,73.59903547396465,540.0,59495.0,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014118833515421463,39663.333333333336,9,5,9,9_1,9_2,9_0_1 +8814,2,82.0,0.0,5,111,0.0,0.0,1420.0,72,75,0.0,0.0,895.0519723889361,1420.0,0.0,1699.3596495418467,30,2,2,2,1,1,2,2,2,0,,2,,3,108824,2,1,0,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,773.749621858202,0.0,63584.22500385872,5,5,0,1,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.022332583276965707,42389.48333590582,9,5,9,9_0,9_4,9_0_0 +8815,1,71.0,253.0,7,211,190.0,,,0,86,0.0,0.0,,278.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,108825,2,2,0,0,2,,120.0,345.0,11,0.0,3.0,2.0,1.0,1.0,1,1,139.18793409949149,190.0,4836.0,0,5,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05748552522746071,4836.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8816,2,69.0,0.0,1,111,1200.0,0.0,0.0,72,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,108826,2,1,2,0,2,,320.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1504.23797817464,1200.0,30834.73378722774,5,5,0,1,125.0,6,5,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038917151296991574,20556.489191485158,5,3,5,5_1,5_2,5_1_0 +8817,1,37.0,300.0,2,111,700.0,180.0,0.0,54,47,0.0,0.0,1193.6403803604428,880.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,108827,2,2,0,1,1,101.0,0.0,376.0,43,2.0,0.0,4.0,5.0,2.8,4,4,185.585467901965,700.0,47622.00725887971,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018478851494356387,17007.859735314185,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +8818,2,64.0,0.0,9,221,270.0,0.0,0.0,71,71,0.0,0.0,460.40414671045653,270.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,108828,2,1,1,0,1,,460.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1791.27029815104,270.0,15812.651013997263,5,5,0,1,170.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017074935743601603,10541.767342664842,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +8819,2,32.0,0.0,9,112,0.0,0.0,0.0,54,21,0.0,0.0,0.0,1944.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,108829,2,1,1,0,1,,217.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,225.545237925279,0.0,36369.50298991542,1,1,1,2,190.0,7,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05345137657061288,24246.33532661028,7,4,7,7_1,7_0,7_0_0 +8820,1,37.0,356.0,6,211,900.0,,,0,43,0.0,0.0,,900.0,0.0,,50,0,0,0,0,0,0,0,0,0,,8,,4,108830,2,1,0,0,2,,800.0,367.0,22,2.0,2.0,4.0,4.0,2.3,4,3,76.08080348430555,900.0,28682.790900064254,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03137769972021739,12470.77865220185,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8821,2,69.0,0.0,5,111,431.0,1317.0,0.0,77,78,0.0,280.75738272616746,734.9414341933584,1960.0,0.0,2500.329831136702,71,0,0,0,0,0,0,0,0,0,,1,,3,108831,2,1,2,0,1,,230.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,280.94825024363,431.0,24641.632775887727,5,5,0,1,108.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07954018379487801,16427.75518392515,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +8822,2,41.0,0.0,8,112,630.0,514.0,0.0,85,52,0.0,0.0,1074.2763423243985,1144.0,0.0,975.8310806410516,50,0,0,0,0,0,0,0,0,2,12.0,1,2001.0,6,108832,2,1,2,0,1,,270.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,578.580197444127,630.0,22906.61432112676,6,1,0,1,97.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049941906907861516,12725.896845070421,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +8823,2,56.0,0.0,2,111,0.0,0.0,600.0,65,78,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,71,2,2,2,1,2,2,2,2,0,,2,,2,108833,1,2,0,1,1,881.0,0.0,284.0,42,1.0,0.0,3.0,2.0,1.5,2,2,354.20012235617,0.0,23966.036325424924,4,7,2,3,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02503542896509241,15977.357550283283,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +8824,2,78.0,0.0,1,111,501.0,705.0,0.0,0,77,0.0,0.0,854.3054722294027,1206.0,0.0,1338.4453537975512,70,0,0,0,0,0,0,0,0,0,,2,,1,108834,2,1,0,0,1,,0.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,937.027238341824,501.0,31519.043525019908,0,5,0,1,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03826258239856402,31519.043525019908,8,4,8,8_0,8_4,8_1_0 +8825,2,41.0,0.0,5,111,430.0,990.0,0.0,63,52,0.0,0.0,733.2362336499863,1420.0,0.0,1879.519007460391,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,108835,1,2,4,0,2,,310.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,350.021152657998,430.0,41005.273256972745,1,1,1,2,74.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034629692408123046,19526.32059855845,5,3,5,5_1,5_3,5_0_0 +8826,1,40.0,270.0,1,111,168.0,240.0,0.0,0,52,0.0,0.0,286.47369128650627,408.0,0.0,455.6409715055494,42,0,0,0,0,0,0,0,0,0,,2,,1,108836,2,1,0,0,1,,157.0,272.0,12,1.0,0.0,2.0,1.0,1.0,1,1,310.340721630694,168.0,6491.253536299808,0,4,2,3,50.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06285380746852959,6491.253536299808,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +8827,2,67.0,0.0,2,111,500.0,0.0,0.0,0,78,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108837,2,1,0,1,1,865.0,0.0,370.0,11,0.0,5.0,4.0,1.0,1.0,1,1,527.361424329679,500.0,18260.642993184876,0,5,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027381292114774212,18260.642993184876,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8828,2,62.0,0.0,6,111,600.0,,,72,77,0.0,99.3245457757668,,767.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,,4,108838,2,1,0,0,2,,720.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,70.01022994040224,600.0,9315.565257221942,5,5,0,1,129.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08233531501541241,6210.376838147961,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8829,2,35.0,0.0,2,111,516.0,130.0,0.0,0,54,0.0,0.0,879.8834803799836,646.0,0.0,246.80552623217258,20,2,1,2,2,1,2,2,2,0,,2,,2,108839,2,1,0,1,1,756.0,348.0,330.0,22,2.0,2.0,4.0,3.0,2.0,3,3,495.101913581407,516.0,64952.99031904495,0,1,2,3,82.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00994565449299392,32476.495159522474,8,4,8,8_0,8_3,8_0_1 +8830,1,41.0,282.0,5,111,550.0,0.0,0.0,55,55,0.0,0.0,937.8602988546337,550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,108840,2,2,0,1,1,880.0,0.0,450.0,43,3.0,2.0,3.0,5.0,2.8,4,3,574.279248668479,550.0,40390.370329147656,1,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013617107135140409,14425.132260409879,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +8831,2,44.0,0.0,7,112,900.0,920.0,0.0,62,43,0.0,0.0,1534.680489034855,1820.0,0.0,1746.6237241046058,33,1,2,2,2,1,2,2,2,2,15.0,1,,5,108841,2,1,2,0,1,,386.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,989.533026081429,900.0,72529.17681904767,1,1,0,1,122.0,8,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.025093349736213057,25903.27743537417,7,4,7,7_1,7_0,7_0_0 +8832,0,77.0,0.0,1,300,200.0,,,0,78,0.0,0.0,,338.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,108842,2,1,0,0,2,,106.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,82.56454739687867,200.0,4498.689720303293,0,5,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0751329878285566,4498.689720303293,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8833,2,67.0,0.0,2,111,391.0,0.0,0.0,0,75,0.0,0.0,666.7334124584759,391.0,0.0,0.0,44,2,2,1,2,1,2,2,2,0,,2,,2,108843,2,1,0,1,1,,121.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,326.140787185336,391.0,33019.86275818392,0,5,0,1,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011841357514518782,33019.86275818392,8,4,8,8_0,8_3,8_0_1 +8834,2,36.0,0.0,8,111,496.0,560.0,0.0,0,54,0.0,0.0,845.7794695125424,1056.0,0.0,1063.162266846282,20,1,2,2,1,2,2,2,2,3,30.0,2,2000.0,6,108844,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,346.045296755027,496.0,25870.893029743293,0,1,1,2,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04081807298982436,25870.893029743293,7,4,7,7_0,7_3,7_0_0 +8835,2,27.0,0.0,1,112,749.0,0.0,0.0,0,46,0.0,0.0,1277.1952069856738,781.0,44.33885521268867,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,1,108845,1,1,2,0,1,,79.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1847.55760986521,749.0,20254.631671397034,0,1,1,2,82.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03855908182733849,20254.631671397034,5,3,5,5_1,5_1,5_1_0 +8836,1,45.0,200.0,2,111,250.0,250.0,0.0,0,56,0.0,0.0,426.3001358430153,500.0,0.0,474.62601198494724,50,1,2,2,2,1,2,2,2,3,15.0,2,,2,108846,2,1,0,1,1,533.0,0.0,392.0,32,2.0,0.0,4.0,3.0,2.0,3,2,280.918908075668,250.0,17790.310568270696,0,1,2,3,72.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.028105186701560907,8895.155284135348,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8837,1,47.0,289.0,2,111,460.0,0.0,0.0,0,55,0.0,0.0,784.3922499511482,460.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,108847,2,2,0,1,1,530.0,0.0,334.0,32,2.0,0.0,3.0,3.0,2.0,3,3,708.345710297198,460.0,23429.649902253157,0,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01963324257592783,11714.824951126579,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +8838,2,67.0,0.0,5,111,307.0,860.0,0.0,54,77,0.0,0.0,523.4965668152228,1167.0,0.0,1632.7134812282186,31,0,0,0,0,0,0,0,0,0,,2,,3,108848,2,1,0,0,1,,100.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1669.32311647272,307.0,54347.9440920158,5,5,0,1,97.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021472753376358955,36231.962728010534,9,5,9,9_0,9_2,9_0_0 +8839,1,39.0,533.0,7,112,820.0,,,0,63,0.0,0.0,,1086.0,368.5667339554746,,71,0,0,0,0,0,0,0,0,0,,2,,5,108849,2,2,0,0,2,,654.0,506.0,32,1.0,0.0,5.0,7.0,3.3999999999999995,4,2,125.33170360004269,820.0,32930.61706438125,0,4,2,3,80.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03297842849032581,9685.475607170958,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8840,1,45.0,310.0,5,111,1020.0,,,55,69,0.0,0.0,,1284.0,365.79555550468154,,41,0,0,0,0,0,0,0,0,0,,2,,3,108850,2,1,0,0,2,,678.0,386.0,43,2.0,0.0,2.0,2.0,1.5,2,2,189.98973135518054,1020.0,8324.523819609009,4,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15424305675904806,5549.682546406006,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8841,2,38.0,0.0,1,400,600.0,0.0,0.0,63,54,1703.3128044241114,556.2174563442941,1023.1203260232367,2669.0,47.110033663481715,0.0,30,0,0,0,0,0,0,0,0,2,35.0,1,,1,108851,1,2,3,0,1,,120.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1276.68812599003,600.0,45692.80035658881,1,1,1,2,125.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05841182810357422,25384.889086993782,7,4,7,7_1,7_0,7_1_0 +8842,1,43.0,412.0,2,111,440.0,937.0,0.0,0,85,0.0,0.0,750.2882390837069,1377.0,0.0,1778.8982929195822,71,0,0,0,0,0,0,0,0,0,,2,,2,108852,1,3,0,0,2,,0.0,357.0,31,1.0,1.0,4.0,5.0,2.5999999999999996,4,3,139.793488043922,440.0,12798.987525545494,0,6,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10758663505622193,4922.68750982519,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8843,2,66.0,0.0,6,112,940.0,1742.0,0.0,75,78,0.0,413.19011042718984,1602.8885107697374,2994.0,0.0,3307.1940515111123,50,0,0,0,0,0,0,0,0,0,,1,,4,108853,2,1,2,0,1,,600.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,894.13109582863,940.0,56699.81291274982,5,5,0,1,140.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05280440703758924,37799.875275166545,9,5,9,9_1,9_1,9_0_0 +8844,1,46.0,100.0,2,111,330.0,1110.0,0.0,56,31,0.0,0.0,562.7161793127802,1440.0,0.0,2107.339493213166,30,0,0,0,0,0,0,0,0,0,,1,,2,108854,1,3,2,0,1,,300.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,358.500385452239,330.0,24761.858385680087,1,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05815395506957424,13756.587992044493,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +8845,2,26.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,986.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,108855,1,1,0,0,1,,153.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3190.41603790997,0.0,15134.123749033379,0,1,2,3,38.0,4,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06515078218935379,15134.123749033379,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +8846,2,54.0,0.0,6,111,400.0,,,0,68,0.0,0.0,,500.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,2,15.0,2,,4,108856,2,2,0,0,2,,500.0,684.0,32,3.0,0.0,5.0,3.0,2.0,3,3,45.40290222786706,400.0,32383.303058813337,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01544005560803723,16191.651529406668,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +8847,2,44.0,0.0,9,111,600.0,0.0,0.0,56,62,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,108857,2,1,0,0,1,,220.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1467.77743813978,600.0,34843.45885846827,4,1,1,2,55.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01721987482463089,23228.97257231218,6,3,6,6_0,6_2,6_0_0 +8848,2,57.0,0.0,2,111,190.0,0.0,0.0,0,62,0.0,0.0,323.9881032406916,190.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,108858,2,1,0,1,1,744.0,0.0,259.0,12,1.0,1.0,4.0,1.0,1.0,1,1,264.48010690762,190.0,19271.048374900678,0,1,2,3,70.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009859349439829282,19271.048374900678,5,3,5,5_0,5_3,5_0_1 +8849,2,81.0,0.0,2,111,240.0,102.0,0.0,78,75,0.0,0.0,409.2481304092947,342.0,0.0,193.6474128898585,60,0,0,0,0,0,0,0,0,0,,2,,2,108859,2,3,0,1,1,,0.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1018.95518996368,240.0,44506.44553302835,5,5,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007684280240851876,29670.96368868557,8,4,8,8_0,8_4,8_0_1 +8850,2,35.0,0.0,2,111,515.0,740.0,0.0,48,31,0.0,0.0,878.1782798366115,1255.0,0.0,1404.892995475444,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,108860,2,1,1,0,1,,192.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1115.92913714878,515.0,66868.11750310862,1,1,1,2,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018768286694203058,31841.960715766007,8,4,8,8_1,8_2,8_0_1 +8851,2,73.0,0.0,2,111,100.0,0.0,0.0,0,74,0.0,0.0,170.52005433720612,100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,108861,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1947.29955982389,100.0,31842.283764271793,0,5,0,1,76.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003140478262812407,31842.283764271793,8,4,8,8_0,8_3,8_0_1 +8852,2,57.0,0.0,1,212,980.0,0.0,0.0,0,67,0.0,0.0,1671.09653250462,1060.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,108862,2,1,1,0,1,,201.0,339.0,12,1.0,1.0,2.0,1.0,1.0,1,1,795.666453082674,980.0,32562.732839178694,0,1,2,3,80.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032552550341371646,32562.732839178694,8,4,8,8_1,8_0,8_1_0 +8853,2,25.0,0.0,9,112,0.0,0.0,0.0,63,37,0.0,0.0,0.0,635.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,108863,2,1,0,0,1,,315.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,960.043440009996,0.0,43554.489737120704,1,1,1,2,52.0,10,3,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014579438396193653,29036.3264914138,8,4,8,8_0,8_1,8_0_0 +8854,2,51.0,0.0,8,111,0.0,,,21,63,0.0,0.0,,288.0,399.049696914198,,71,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,108864,2,1,0,0,2,,0.0,,42,2.0,1.0,3.0,3.0,2.0,3,3,63.087178459660024,0.0,12208.418335913128,1,7,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023590279434707713,6104.209167956564,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8855,2,41.0,0.0,1,120,300.0,0.0,0.0,85,62,0.0,397.2981831030672,511.56016301161833,650.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108865,2,2,2,0,2,,890.0,,42,1.0,0.0,4.0,4.0,2.5,4,4,961.62638613093,300.0,37830.13791816327,6,1,0,1,80.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017182067942922232,15132.05516726531,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +8856,1,73.0,80.0,1,120,396.0,85.0,0.0,0,86,0.0,0.0,675.2594151753362,481.0,0.0,161.37284407488207,71,0,0,0,0,0,0,0,0,0,,3,,1,108866,2,1,0,1,1,,210.0,377.0,11,0.0,2.0,2.0,1.0,1.0,1,1,337.864318864249,396.0,13662.489681927458,0,5,2,3,48.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03520588203160803,13662.489681927458,3,2,3_1,3_0_1,3_0_1,3_1_0_1 +8857,1,45.0,354.0,2,111,160.0,40.0,0.0,75,52,851.1290607865375,0.0,272.8320869395298,1007.0,0.0,75.94016191759155,41,2,2,2,2,1,2,2,2,0,,2,,2,108867,1,3,0,1,2,807.0,0.0,320.0,42,1.0,3.0,4.0,4.0,2.1,2,2,327.100430399914,160.0,16089.389763328541,5,1,2,3,75.0,7,6,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06258783054004864,7661.6141730135905,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8858,2,64.0,0.0,2,111,133.0,802.0,0.0,0,78,0.0,0.0,226.79167226848415,935.0,0.0,1522.6002464477108,71,1,2,2,2,1,2,2,2,0,,2,,2,108868,1,3,0,1,1,,0.0,0.0,11,0.0,2.0,3.0,1.0,1.0,1,1,247.826516806506,133.0,10735.662323976718,0,7,3,4,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,1,0,0.08709290324005423,10735.662323976718,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +8859,2,57.0,0.0,7,112,330.0,1200.0,0.0,62,52,0.0,0.0,562.7161793127802,1530.0,0.0,2278.2048575277468,50,2,2,2,2,1,1,1,2,2,10.0,1,,5,108869,2,3,3,0,2,,0.0,476.0,43,2.0,1.0,4.0,2.0,1.5,2,2,831.512510656562,330.0,30451.38003760224,1,1,2,3,82.0,9,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.05024402828741134,20300.92002506816,5,3,5,5_1,5_0,5_0_0 +8860,0,36.0,0.0,5,111,250.0,,,0,42,0.0,0.0,,270.0,27.711784507930417,,33,0,0,0,0,0,0,0,0,0,,1,,3,108870,1,1,0,0,2,,160.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,153.25357916377004,250.0,7645.45427333315,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03531510232710992,7645.45427333315,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8861,1,75.0,87.0,5,111,80.0,60.0,0.0,0,77,0.0,0.0,136.4160434697649,635.0,0.0,113.91024287638734,71,0,0,0,0,0,0,0,0,0,,2,,3,108871,2,2,0,1,1,1200.0,0.0,327.0,11,0.0,5.0,4.0,1.0,1.0,1,1,325.247575112512,80.0,14376.059387733298,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044170657818917214,14376.059387733298,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +8862,2,76.0,0.0,1,111,454.0,0.0,0.0,0,77,2109.365702073203,0.0,774.1610466909158,2454.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,108872,2,1,1,0,2,,232.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1608.30592998764,454.0,25855.55934174285,0,5,0,1,150.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09491188984019028,25855.55934174285,7,4,7,7_1,7_3,7_1_0 +8863,2,31.0,0.0,5,111,367.0,62.0,0.0,0,38,0.0,0.0,625.8085994175465,429.0,0.0,117.70725097226692,42,0,0,0,0,0,0,0,0,0,,2,,3,108873,2,1,0,1,1,714.0,241.0,280.0,32,1.0,0.0,3.0,4.0,2.1,2,2,262.629813333006,367.0,61590.59316263612,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006965349381636618,29328.85388696958,8,4,8,8_0,8_4,8_0_0 +8864,2,88.0,0.0,2,111,600.0,860.0,0.0,0,77,0.0,0.0,1023.1203260232367,1460.0,0.0,1632.7134812282186,70,0,0,0,0,0,0,0,0,0,,1,,2,108874,2,1,1,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,661.059431442304,600.0,26388.046335554933,0,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05532808232312423,26388.046335554933,7,4,7,7_1,7_4,7_0_1 +8865,1,36.0,158.0,7,111,1240.0,563.0,0.0,85,63,0.0,0.0,2114.448673781356,1803.0,0.0,1068.8577789901012,71,2,2,2,1,2,2,1,2,0,,2,,5,108875,2,1,0,1,1,552.0,0.0,513.0,42,1.0,0.0,2.0,4.0,2.1,2,2,628.062570131639,1240.0,31458.315916756394,7,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,1,0.05731393901603058,14980.150436550663,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +8866,2,58.0,0.0,6,111,840.0,1347.0,0.0,68,78,0.0,1.324327277010224,1432.3684564325313,2188.0,0.0,2557.2849525748957,70,0,0,0,0,0,0,0,0,0,,1,,4,108876,2,1,1,0,1,,406.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1456.73020851628,840.0,52768.69533152604,1,7,1,2,100.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041463977577114834,35179.13022101736,9,5,9,9_1,9_3,9_0_0 +8867,1,59.0,309.0,5,111,0.0,,,52,68,0.0,0.0,,365.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,108877,2,1,0,0,1,,769.0,730.0,43,2.0,5.0,3.0,2.0,1.5,2,2,158.59621499911702,0.0,27539.90923755574,4,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013253493206951286,18359.939491703826,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +8868,2,52.0,0.0,2,211,1200.0,200.0,0.0,0,52,0.0,0.0,2046.2406520464733,1400.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,1,10.0,1,,2,108878,2,2,3,0,1,,350.0,450.0,32,1.0,0.0,3.0,2.0,1.5,2,1,1080.52744629677,1200.0,23469.273011845096,0,1,2,3,75.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059652465557557356,15646.18200789673,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +8869,1,37.0,173.0,5,300,396.0,300.0,0.0,0,52,0.0,0.0,675.2594151753362,736.0,55.423569015860835,569.5512143819367,41,0,0,0,0,0,0,0,0,2,15.0,2,,3,108879,1,2,0,1,1,,500.0,450.0,32,1.0,0.0,4.0,4.0,2.3,3,1,1374.33462603503,396.0,22451.274718682595,0,1,2,3,75.0,0,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03278210298623023,9761.423790731564,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +8870,2,54.0,0.0,9,221,872.0,0.0,0.0,0,65,0.0,0.0,1486.9348738204374,928.0,77.59299662220518,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,108880,2,1,1,0,1,,198.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1734.37128494961,872.0,19060.327138867684,0,1,1,2,92.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04868751691609893,19060.327138867684,5,3,5,5_1,5_1,5_0_0 +8871,2,47.0,0.0,7,111,700.0,,,54,21,0.0,0.0,,988.0,399.049696914198,,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,108881,2,2,0,0,2,,350.0,560.0,43,3.0,1.0,4.0,4.0,2.3,3,3,122.44655420254524,700.0,40806.27320811084,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02421196356161289,17741.857916569934,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +8873,2,46.0,0.0,2,400,900.0,0.0,0.0,62,38,2320.3022722805235,105.94618216081791,1534.680489034855,3180.0,0.0,0.0,12,2,2,2,2,1,2,2,2,2,25.0,1,,2,108883,2,3,3,0,1,,142.0,492.0,43,2.0,0.0,5.0,3.0,2.0,3,2,1518.90053006509,900.0,71354.18220532009,1,1,2,3,150.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.04456641365252593,35677.091102660044,9,5,9,9_1,9_0,9_0_1 +8874,2,63.0,0.0,5,111,1846.0,0.0,0.0,75,11,0.0,0.0,3147.800203064825,1986.0,193.98249155551292,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,108884,2,1,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1185.16692083597,1846.0,64309.10993545029,5,5,0,1,125.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030882094340808484,42872.739956966856,9,5,9,9_1,9_2,9_0_0 +8875,1,28.0,459.0,2,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1405.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108885,2,3,1,0,1,,638.0,704.0,31,0.0,0.0,5.0,4.0,1.9,1,1,1516.95549744566,0.0,18730.213277641535,0,6,2,3,120.0,2,3,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07501249340695786,9858.006988232388,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +8876,0,38.0,0.0,6,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,460.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,4,108886,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1290.93788290367,0.0,57957.641495457414,1,1,5,0,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007936830901513715,32198.689719698563,8,4,8,8_0,8_4,8_0_0 +8877,2,67.0,0.0,2,111,470.0,1530.0,0.0,77,74,0.0,0.0,801.4442553848687,2000.0,0.0,2904.7111933478773,20,0,0,0,0,0,0,0,0,0,,1,,2,108887,2,1,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,265.067431668965,470.0,49959.57763660639,5,5,0,1,150.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04003236405534701,33306.38509107092,8,4,8,8_1,8_3,8_0_1 +8878,2,38.0,0.0,6,111,500.0,40.0,0.0,37,22,1107.4169935884315,0.0,852.6002716860306,1590.0,0.0,75.94016191759155,50,0,0,0,0,0,0,0,0,0,,1,,4,108888,2,1,1,1,1,800.0,0.0,880.0,43,2.0,1.0,3.0,3.0,1.8,2,2,563.447269494293,500.0,48971.265795955034,1,1,2,3,60.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03246801923856606,27206.258775530572,7,4,7,7_1,7_4,7_0_0 +8879,2,52.0,0.0,9,112,1200.0,0.0,0.0,56,56,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,108889,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,550.075608973817,1200.0,43226.09450855044,1,1,0,1,80.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027761009030381662,15437.890895910874,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8880,2,53.0,0.0,9,300,700.0,0.0,0.0,56,63,0.0,0.0,1193.6403803604428,880.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,108890,2,1,1,0,1,,140.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1924.14914636889,700.0,32739.20048316778,1,1,1,2,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026879092556106703,21826.13365544519,6,3,6,6_1,6_0,6_0_0 +8881,2,52.0,0.0,2,111,280.0,100.0,0.0,53,53,0.0,0.0,477.4561521441771,380.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,108891,2,1,0,1,1,555.0,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,301.432689568234,280.0,40247.503166651746,1,1,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009441579479515643,26831.66877776783,7,4,7,7_0,7_4,7_0_1 +8882,2,59.0,0.0,2,111,500.0,,,0,42,0.0,0.0,,500.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,108892,2,1,0,0,2,,240.0,850.0,22,2.0,0.0,4.0,3.0,1.8,2,2,30.712854944700297,500.0,73419.49327852244,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006810180480314839,40788.60737695691,9,5,9,9_1,9_2,9_0_1 +8883,2,48.0,0.0,1,211,398.0,0.0,0.0,0,63,1582.0242765549024,0.0,678.6698162620803,1924.0,36.025319860309544,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,108893,2,1,4,0,1,,188.0,,32,1.0,1.0,3.0,2.0,1.5,2,1,978.221170453294,398.0,21196.346936599282,0,1,1,2,85.0,4,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09077035801286447,14130.897957732856,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +8885,2,59.0,0.0,5,111,283.0,0.0,0.0,0,54,0.0,0.0,482.5717537742933,283.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,3,108895,2,3,0,0,1,,167.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1594.35617393812,283.0,7750.592685859881,0,4,0,1,39.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,0,0,0,0.03651333665311853,7750.592685859881,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +8886,2,44.0,0.0,1,120,1800.0,0.0,0.0,52,65,0.0,0.0,3069.36097806971,1960.0,221.69427606344334,0.0,50,2,2,1,2,2,1,2,2,2,30.0,1,,1,108896,1,1,2,0,1,,400.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,154.212679859537,1800.0,46245.50357719928,1,1,1,2,90.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04238249880289663,20106.740685738816,5,3,5,5_1,5_0,5_1_0 +8887,2,38.0,0.0,2,111,720.0,0.0,0.0,0,65,0.0,0.0,1227.744391227884,720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,108897,2,1,1,0,1,,480.0,,22,1.0,0.0,2.0,2.0,1.5,2,2,308.069032376389,720.0,47336.77939064668,0,1,1,2,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015210160244705314,31557.85292709779,8,4,8,8_1,8_3,8_0_1 +8888,1,22.0,321.0,2,111,131.0,0.0,0.0,0,56,0.0,0.0,223.38127118174,221.0,124.70303028568689,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,108898,2,1,0,1,1,856.0,198.0,299.0,32,1.0,0.0,3.0,2.0,1.3,1,1,313.63072437102,131.0,9721.366313453731,0,4,2,3,63.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02273342993917949,7477.9740872721,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8889,1,51.0,338.0,2,111,333.0,256.0,0.0,85,85,0.0,0.0,567.8317809428963,589.0,0.0,486.017036272586,60,1,2,2,2,1,2,2,2,0,,2,,2,108899,2,1,0,1,1,806.0,0.0,269.0,41,0.0,1.0,4.0,4.0,2.5,4,3,1203.24662334267,333.0,12170.144898307453,6,7,2,3,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04839712303523308,4868.057959322981,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8890,1,31.0,83.0,7,111,0.0,0.0,0.0,67,68,0.0,0.0,0.0,536.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,108900,2,1,0,1,1,376.0,0.0,310.0,43,2.0,0.0,4.0,3.0,1.8,2,2,538.792668681974,0.0,22880.72237103799,4,1,2,3,90.0,8,6,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.023425833822382253,12711.51242835444,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +8891,2,58.0,0.0,6,111,952.0,1066.0,0.0,68,78,0.0,0.0,1623.3509172902022,2122.0,144.10127944123818,2023.805315103815,70,1,2,2,1,1,2,2,2,0,,1,,4,108901,2,2,2,0,1,,274.0,,42,2.0,4.0,6.0,3.0,2.0,3,3,971.654954223116,952.0,40576.86780717225,1,5,0,1,108.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05229580582917544,20288.433903586127,5,3,5,5_1,5_2,5_0_0 +8892,1,31.0,208.0,5,111,0.0,0.0,0.0,63,63,0.0,0.0,0.0,1341.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,3,108902,2,1,0,1,1,,0.0,313.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1553.76471614996,0.0,9455.268218846071,4,1,2,3,60.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14182569642256607,6303.512145897381,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8893,2,28.0,0.0,1,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,2642.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,45.0,1,,1,108903,2,1,2,0,1,,539.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,635.323694542819,0.0,46347.73179463924,1,1,1,2,95.0,7,6,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057003868316714126,22070.348473637732,6,3,6,6_1,6_2,6_1_0 +8894,0,44.0,0.0,5,120,2400.0,0.0,0.0,0,55,0.0,0.0,4092.4813040929466,2610.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108904,1,1,0,0,1,,0.0,,32,1.0,0.0,4.0,4.0,2.3,3,2,1684.00515248724,2400.0,12617.203680232575,0,4,5,0,70.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.20686041583755185,5485.740730535903,1,1,1_0,1_0_0,1_0_0,1_0_0_0 +8895,2,31.0,0.0,8,111,1575.0,0.0,0.0,62,43,0.0,0.0,2685.6908558109963,1575.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,2003.0,6,108905,2,1,0,0,1,,0.0,344.0,43,2.0,0.0,2.0,2.0,1.5,2,2,147.063475687793,1575.0,34778.02054608147,1,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04528722380599834,23185.34703072098,6,3,6,6_0,6_3,6_0_0 +8896,2,44.0,0.0,9,111,230.0,350.0,0.0,0,34,0.0,0.0,392.1961249755741,580.0,0.0,664.4764167789261,10,0,0,0,0,0,0,0,0,2,60.0,2,2008.0,6,108906,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1448.33799921168,230.0,38849.411319463004,0,1,1,2,68.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014929441149843839,38849.411319463004,9,5,9,9_0,9_2,9_0_0 +8897,2,76.0,0.0,2,111,612.0,,,0,77,0.0,0.0,,750.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,108907,2,1,0,0,2,,640.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,76.21105549415755,612.0,24730.334912643528,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030327126690733095,16486.88994176235,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +8898,2,69.0,0.0,1,300,691.0,0.0,0.0,71,78,0.0,0.0,1178.2935754700943,841.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108908,2,1,2,0,2,,280.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1308.77402891448,691.0,22365.618259074872,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037602358685468636,14910.412172716582,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +8899,2,75.0,0.0,1,111,230.0,230.0,0.0,0,74,0.0,0.0,392.1961249755741,460.0,0.0,436.65593102615145,20,0,0,0,0,0,0,0,0,0,,2,,1,108909,2,2,0,0,2,,231.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,362.253038617738,230.0,32282.648439352968,0,5,0,1,53.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014249140706784577,32282.648439352968,8,4,8,8_0,8_3,8_1_0 +8900,1,21.0,305.0,1,111,0.0,0.0,0.0,67,62,0.0,0.0,0.0,1557.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,108910,2,2,3,0,1,,160.0,470.0,43,2.0,0.0,2.0,2.0,1.5,2,2,823.462183487856,0.0,28957.123801301586,4,1,2,3,45.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05376915230545151,19304.749200867725,5,3,5,5_1,5_2,5_1_0 +8901,2,66.0,0.0,1,112,400.0,0.0,0.0,77,77,2953.111982902484,0.0,682.0802173488245,3200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,108911,2,1,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2034.35583755457,400.0,43401.549228752236,5,5,0,1,160.0,8,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07373008698685105,28934.36615250149,8,4,8,8_1,8_1,8_1_0 +8902,2,48.0,0.0,7,112,420.0,0.0,0.0,85,47,0.0,529.7309108040896,716.1842282162656,915.0,131.6309764126695,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,108912,2,1,2,0,1,,0.0,,42,1.0,0.0,7.0,5.0,3.0,5,4,1161.0962603451,420.0,64256.62060316121,5,1,0,1,110.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014239777806724325,21418.87353438707,6,3,6,6_1,6_1,6_0_0 +8904,2,53.0,0.0,7,120,540.0,0.0,0.0,11,11,0.0,0.0,920.8082934209131,540.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,108914,2,1,1,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1674.39301123445,540.0,43149.91332211511,1,1,0,1,150.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012514509495509002,28766.608881410077,8,4,8,8_1,8_1,8_0_0 +8905,2,60.0,0.0,1,111,780.0,0.0,0.0,63,46,1054.6828510366015,0.0,1330.0564238302077,1830.0,69.27946126982604,0.0,30,1,2,2,1,2,2,2,2,4,20.0,1,,1,108915,2,2,2,0,1,,260.0,625.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1233.22159852734,780.0,49791.767668795794,1,1,2,3,80.0,9,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03675306352192132,33194.51177919719,8,4,8,8_1,8_3,8_1_0 +8906,2,62.0,0.0,7,111,648.0,,,0,75,0.0,0.0,,648.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,,5,108916,2,2,0,0,2,,558.0,566.0,11,0.0,1.0,5.0,1.0,1.0,1,1,103.36737138873625,648.0,23765.0207258027,0,5,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027266965490016958,23765.0207258027,6,3,6,6_1,6_2,6_0_0 +8907,2,49.0,0.0,6,111,700.0,,,11,11,0.0,132.4327277010224,,865.0,90.06329965077386,,71,0,0,0,0,0,0,0,0,0,,1,,4,108917,2,1,0,0,2,,216.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,149.79274420916462,700.0,7537.149248593651,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1147648761448368,3768.5746242968253,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8908,0,82.0,0.0,5,111,0.0,0.0,700.0,0,86,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,70,0,0,0,0,0,0,0,0,0,,2,,3,108918,2,1,0,0,1,,180.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1232.52986255603,0.0,17528.055284135487,0,5,5,0,50.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.039935976276476305,17528.055284135487,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +8909,0,36.0,0.0,2,111,270.0,0.0,0.0,0,46,0.0,0.0,460.40414671045653,270.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,108919,1,2,0,1,2,856.0,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1193.96907681411,270.0,18411.942206345913,0,4,5,0,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014664395367640304,14163.032466419932,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8910,2,76.0,0.0,2,111,480.0,0.0,0.0,0,77,0.0,0.0,818.4962608185893,480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,108920,2,1,0,1,1,,0.0,190.0,11,0.0,0.0,3.0,1.0,1.0,1,1,330.754594352314,480.0,18424.923763469582,0,5,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026051668173068827,18424.923763469582,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +8911,2,69.0,0.0,7,211,0.0,,,81,72,0.0,0.0,,341.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,108921,2,2,0,0,2,,0.0,,42,1.0,0.0,1.0,2.0,1.5,2,2,42.45452822950569,0.0,24886.287295942857,4,5,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013702325137731263,16590.858197295238,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8912,2,55.0,0.0,7,112,1700.0,0.0,0.0,45,77,0.0,198.6490915515336,2898.840923732504,1850.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,108922,2,1,1,0,1,,134.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,2004.38952944465,1700.0,59998.710793189006,1,7,0,1,103.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030833995856624476,29999.355396594503,8,4,8,8_1,8_0,8_0_0 +8913,2,71.0,0.0,5,221,1027.0,150.0,0.0,75,74,0.0,0.0,1751.2409580431067,1177.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,1,,3,108923,2,1,2,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1319.22526400612,1027.0,36693.43906511847,5,5,0,1,104.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032076579083013236,24462.292710078982,7,4,7,7_1,7_1,7_0_0 +8914,2,44.0,0.0,1,111,730.0,0.0,0.0,53,56,3164.0485531098047,0.0,1244.7963966616046,4150.0,581.9474746665388,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108924,2,2,1,0,1,,370.0,,43,2.0,0.0,6.0,6.0,3.3,5,4,198.613481076095,730.0,23196.30240817771,4,1,0,1,82.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1789078244874469,7029.18254793264,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +8915,2,36.0,0.0,1,111,500.0,0.0,0.0,0,47,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,1,108925,2,1,0,0,1,,0.0,777.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1285.49711417577,500.0,30191.819448605987,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01656077736060673,30191.819448605987,8,4,8,8_0,8_4,8_1_0 +8916,1,40.0,280.0,5,111,250.0,0.0,0.0,85,53,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,108926,2,3,0,1,1,729.0,0.0,478.0,42,1.0,0.0,4.0,4.0,2.1,2,2,447.370211491756,250.0,20816.49029902982,6,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012009709437505494,9912.614428109438,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8917,2,52.0,0.0,9,111,1200.0,,,0,46,0.0,0.0,,1202.0,2.771178450793042,,71,0,0,0,0,0,0,0,0,2,75.0,1,2009.0,6,108927,2,2,0,0,2,,400.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,77.92852786946528,1200.0,9454.270110742476,0,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12713831802142184,6302.846740494984,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8918,2,81.0,0.0,2,111,420.0,264.0,0.0,77,75,0.0,0.0,716.1842282162656,684.0,0.0,501.2050686561043,50,1,2,2,1,1,2,2,2,0,,2,,2,108928,1,2,0,1,1,515.0,0.0,393.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1133.94976580767,420.0,27753.72301468892,5,5,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0.024645342163211275,18502.482009792613,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +8919,2,70.0,0.0,2,111,245.0,0.0,0.0,78,78,1265.6194212439218,0.0,417.774133126155,1565.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,108929,2,1,2,0,1,,378.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,708.210664595905,245.0,27256.051313336764,5,5,0,1,160.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05741844194555885,18170.700875557843,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +8920,1,33.0,283.0,6,111,1000.0,0.0,0.0,63,52,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,108930,1,2,0,0,1,,300.0,454.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1475.68564718714,1000.0,25492.243589843438,4,1,2,3,73.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03922761825477055,12139.16361421116,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +8921,1,37.0,179.0,9,300,2076.0,0.0,0.0,52,21,0.0,0.0,3539.996328040399,2136.0,83.13535352379125,0.0,50,2,2,1,2,1,2,2,2,0,,1,2007.0,6,108931,2,3,1,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1168.98114963562,2076.0,31435.274632921493,1,1,1,2,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,1,0.06794914391372973,13098.031097050623,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +8922,0,48.0,0.0,2,111,1200.0,80.0,0.0,56,63,0.0,0.0,2046.2406520464733,1280.0,0.0,151.8803238351831,71,2,2,2,2,1,2,2,2,0,,2,,2,108932,1,3,0,1,2,733.0,0.0,,43,3.0,0.0,2.0,4.0,2.5,4,4,888.614791761435,1200.0,53052.0,1,1,5,0,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.024127271356405036,21220.8,5,3,5,5_0,5_4,5_0_1 +8923,2,57.0,0.0,6,111,780.0,,,52,38,0.0,0.0,,780.0,0.0,,44,0,0,0,0,0,0,0,0,0,,1,,4,108933,2,2,0,0,2,,360.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,89.57505685088898,780.0,88483.91817879693,1,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008815161173399626,58989.27878586462,10,5,10,10_1,10_2,10_0_0 +8924,2,90.0,0.0,1,120,432.0,2450.0,0.0,0,86,0.0,0.0,736.6466347367304,2882.0,0.0,4651.334917452483,70,0,0,0,0,0,0,0,0,0,,1,,1,108934,2,1,4,0,2,,290.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,285.315005150819,432.0,11923.55248707702,0,6,0,1,99.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.241706488324144,11923.55248707702,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8925,2,38.0,0.0,1,111,600.0,1845.0,0.0,42,31,0.0,397.2981831030672,1023.1203260232367,2745.0,0.0,3502.7399684489105,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,108935,2,1,2,0,1,,900.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,675.421361486751,600.0,118421.89019153018,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023179836055313437,56391.376281681034,10,5,10,10_1,10_4,10_1_0 +8926,0,34.0,0.0,2,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,502.0,0.0,0.0,60,2,2,1,1,2,2,2,2,0,,2,,2,108936,1,1,0,1,2,172.0,0.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,963.531155602538,0.0,48144.07585965251,1,1,5,0,68.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01042703574710642,20932.206895501095,5,3,5,5_0,5_4,5_0_1 +8927,2,28.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,655.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,7.0,2,,2,108937,2,2,0,0,1,,0.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1800.80142086527,0.0,11620.949366042794,0,1,3,4,25.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.056363725489928955,11620.949366042794,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +8928,2,40.0,0.0,9,300,1600.0,0.0,0.0,45,31,0.0,0.0,2728.320869395298,2022.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,2005.0,6,108938,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,912.098842377461,1600.0,63560.228722144624,1,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031812346189615384,30266.77558197363,8,4,8,8_1,8_0,8_0_0 +8929,2,88.0,0.0,1,112,300.0,0.0,0.0,0,78,0.0,0.0,511.56016301161833,390.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108939,2,2,3,0,2,,170.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,976.102126511049,300.0,9771.880477993302,0,5,0,1,35.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039910434934022875,9771.880477993302,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +8930,2,77.0,0.0,2,111,187.0,60.0,0.0,0,77,0.0,0.0,318.87250161057545,247.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,0,,2,,2,108940,2,2,0,1,2,,112.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1359.80362356854,187.0,15821.549753667117,0,5,0,1,60.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015611618573758892,15821.549753667117,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +8931,2,32.0,0.0,9,111,480.0,,,54,62,0.0,0.0,,530.0,69.27946126982604,,60,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,108941,2,3,0,0,2,,240.0,370.0,43,2.0,2.0,2.0,2.0,1.5,2,2,127.39622278461582,480.0,39751.42047165161,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013332856881880862,26500.946981101075,7,4,7,7_0,7_3,7_0_0 +8932,2,73.0,0.0,1,111,391.0,1176.0,0.0,0,74,0.0,0.0,666.7334124584759,1567.0,0.0,2232.640760377192,20,0,0,0,0,0,0,0,0,0,,2,,1,108942,2,1,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1032.93078416508,391.0,45803.224626489195,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034211565076004785,45803.224626489195,10,5,10,10_0,10_4,10_1_0 +8933,2,71.0,0.0,1,112,632.0,0.0,0.0,90,71,2149.443650412594,542.9741835741918,1077.6867434111427,3165.0,117.77508415870429,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108943,1,3,4,0,2,,184.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1499.72232922711,632.0,27649.420261610067,5,5,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11446894618598767,18432.94684107338,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +8934,1,35.0,266.0,2,111,360.0,120.0,0.0,21,55,0.0,0.0,613.872195613942,480.0,0.0,227.8204857527747,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,108944,2,1,0,1,1,672.0,0.0,236.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1091.31111149719,360.0,32415.24026101171,1,1,2,3,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014807849521860022,15435.828695719862,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +8935,2,52.0,0.0,2,300,200.0,0.0,0.0,52,47,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,108945,2,1,2,0,2,,395.0,,43,4.0,0.0,5.0,5.0,3.0,5,4,1402.29715594219,200.0,69221.10544457288,1,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0028892921994744095,23073.701814857628,6,3,6,6_1,6_0,6_0_1 +8936,1,57.0,230.0,9,111,208.0,,,0,77,0.0,0.0,,460.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,108946,2,1,0,0,2,,128.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,92.26699789170326,208.0,10311.743138158421,0,7,1,2,41.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04460933460394084,10311.743138158421,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +8937,2,37.0,0.0,2,111,0.0,0.0,0.0,67,54,0.0,0.0,0.0,926.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,45.0,2,,2,108947,2,3,0,0,1,,0.0,620.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1115.5766191552,0.0,23736.88246920678,1,1,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039011020137175764,15824.588312804519,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +8938,2,37.0,0.0,8,111,280.8,,,0,45,0.0,0.0,,281.0,0.0,,20,0,0,0,0,0,0,0,0,1,15.0,2,2001.0,6,108948,2,1,0,0,1,,131.0,380.0,12,1.0,0.0,1.0,1.0,1.0,1,1,173.9325543670062,280.8,25046.084848980743,0,1,2,3,21.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011219318376278493,25046.084848980743,7,4,7,7_0,7_2,7_0_0 +8939,2,86.0,0.0,1,211,350.0,0.0,0.0,0,77,0.0,0.0,596.8201901802214,2850.0,3463.9730634913026,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108949,1,2,2,0,2,,190.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1571.20226875082,350.0,19726.644645138458,0,5,0,1,70.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14447464590499273,19726.644645138458,5,3,5,5_1,5_1,5_1_0 +8940,2,54.0,0.0,5,111,0.0,0.0,0.0,47,33,0.0,0.0,0.0,1413.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,30.0,1,,3,108950,2,1,2,0,1,,300.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,667.608698147623,0.0,98231.92673533107,1,1,0,1,90.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014384325411910977,65487.95115688738,10,5,10,10_1,10_2,10_0_0 +8941,1,77.0,167.0,7,111,280.0,,,0,78,0.0,0.0,,424.0,199.524848457099,,70,0,0,0,0,0,0,0,0,0,,2,,5,108951,2,2,0,0,2,,360.0,326.0,11,0.0,1.0,2.0,1.0,1.0,1,1,205.17559084691297,280.0,7030.428637013594,0,5,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.060309267313764806,7030.428637013594,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +8942,2,46.0,0.0,7,112,800.0,0.0,0.0,0,53,0.0,0.0,1364.160434697649,936.0,188.44013465392686,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,108952,2,1,2,0,2,,250.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1490.96696835313,800.0,35520.429625305085,0,1,1,2,45.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026351032627521625,35520.429625305085,9,5,9,9_1,9_1,9_0_0 +8943,2,77.0,0.0,2,111,530.0,0.0,0.0,86,77,0.0,0.0,903.7562879871924,650.0,166.2707070475825,0.0,50,2,2,1,1,2,2,2,2,0,,2,,2,108953,2,1,0,1,1,875.0,380.0,387.0,41,1.0,3.0,5.0,3.0,2.0,3,3,444.770690546763,530.0,29032.7702080851,5,5,2,3,97.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.022388493944645583,14516.38510404255,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +8944,2,35.0,0.0,2,120,350.0,,,0,42,0.0,0.0,,570.0,304.8296295872346,,42,0,0,0,0,0,0,0,0,0,,1,,2,108954,2,2,0,0,2,,240.0,550.0,22,3.0,0.0,5.0,3.0,2.0,3,3,144.27311208347794,350.0,23582.726988468567,0,4,2,3,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0241702327419012,11791.363494234283,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +8945,2,85.0,0.0,1,111,340.0,1501.0,0.0,0,78,0.0,0.0,579.7681847465008,1905.0,88.67771042537734,2849.6545759576234,70,0,0,0,0,0,0,0,0,0,,1,,1,108955,2,1,1,0,1,,270.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,692.521383741882,340.0,14661.823917998454,0,6,0,1,79.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1299292646436351,14661.823917998454,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +8946,2,66.0,0.0,6,111,380.0,1320.0,0.0,77,78,0.0,0.0,647.9762064813832,1700.0,0.0,2506.0253432805216,71,0,0,0,0,0,0,0,0,0,,1,,4,108956,1,2,2,0,1,,320.0,419.0,41,0.0,2.0,4.0,2.0,1.5,2,2,261.164608609935,380.0,25891.200696038202,5,5,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0656593728486346,17260.80046402547,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +8947,2,67.0,0.0,6,111,600.0,0.0,0.0,52,78,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,108957,1,2,0,1,2,,0.0,812.0,42,1.0,2.0,4.0,2.0,1.5,2,2,589.544608685053,600.0,19308.502172539156,1,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.031074393789764235,12872.33478169277,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +8948,2,74.0,0.0,1,111,220.0,0.0,0.0,0,71,0.0,0.0,375.14411954185346,250.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,108958,2,2,2,0,2,,130.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1425.55878891892,220.0,13939.0,0,5,0,1,108.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017935289475572137,13939.0,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +8949,2,37.0,0.0,2,111,70.0,90.0,0.0,0,53,0.0,0.0,119.36403803604428,160.0,0.0,170.865364314581,30,0,0,0,0,0,0,0,0,2,35.0,2,,2,108959,1,3,0,1,2,,140.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,676.733308678441,70.0,21341.719059853498,0,1,1,2,64.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007497053051409549,21341.719059853498,6,3,6,6_0,6_2,6_0_1 +8950,1,32.0,120.0,9,111,1400.0,0.0,0.0,55,46,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,108960,2,1,0,0,1,,550.0,430.0,43,2.0,0.0,4.0,4.0,2.1,2,2,2551.42878162219,1400.0,27923.477176574706,4,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.050137022375367865,13296.893893607003,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +8951,2,53.0,0.0,2,111,480.0,240.0,0.0,68,67,0.0,0.0,818.4962608185893,720.0,0.0,455.6409715055494,71,1,2,2,2,1,2,2,2,3,2.0,2,,2,108961,1,3,0,1,2,802.0,0.0,562.0,43,3.0,0.0,4.0,6.0,3.3,5,3,235.346525866321,480.0,37403.54193287315,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019249513890747545,11334.406646325198,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +8952,2,74.0,0.0,9,111,1400.0,0.0,0.0,77,72,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,108962,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,944.991490061128,1400.0,23125.099094520072,5,5,0,1,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06054028111523883,15416.732729680049,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +8953,2,72.0,0.0,5,111,504.0,600.0,0.0,0,77,0.0,0.0,859.4210738595189,1104.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,0,,1,,3,108963,2,1,2,0,1,,360.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1159.97779742369,504.0,43020.1506658703,0,5,0,1,150.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02566239269068506,43020.1506658703,9,5,9,9_1,9_2,9_0_0 +8954,2,81.0,0.0,1,221,240.0,1930.0,0.0,0,77,0.0,0.0,409.2481304092947,2170.0,0.0,3664.112812523793,71,0,0,0,0,0,0,0,0,0,,1,,1,108964,2,1,2,0,1,,156.0,,21,0.0,3.0,6.0,2.0,1.5,2,2,538.708215498075,240.0,26879.193997967723,0,5,0,1,80.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08073158741903008,17919.462665311814,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +8955,2,55.0,0.0,7,111,380.0,0.0,0.0,85,81,0.0,0.0,647.9762064813832,380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,108965,2,1,0,1,1,,0.0,350.0,42,1.0,0.0,3.0,2.0,1.5,2,2,371.766381925633,380.0,7883.154611289552,6,4,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04820405265879193,5255.436407526368,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +8956,0,72.0,0.0,7,111,930.0,0.0,0.0,0,75,0.0,0.0,1585.836505336017,930.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,108966,2,1,0,0,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,944.330591639855,930.0,48589.974404101566,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019139750769687523,48589.974404101566,10,5,10,10_0,10_4,10_0_0 +8957,2,74.0,0.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,825.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,108967,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1226.74362062545,0.0,45086.93086563342,0,5,0,1,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01829798533989013,45086.93086563342,10,5,10,10_0,10_4,10_0_0 +8958,2,51.0,0.0,9,111,560.0,0.0,0.0,0,48,0.0,0.0,954.9123042883542,560.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,108968,2,1,0,0,1,,267.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1185.5600584845,560.0,21195.362363280663,0,1,1,2,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0264208740762157,21195.362363280663,5,3,5,5_0,5_3,5_0_0 +8959,2,52.0,0.0,8,112,1360.0,0.0,0.0,0,38,0.0,0.0,2319.072738986003,1360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,108969,2,1,1,0,1,,250.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,1006.73877818977,1360.0,9835.0,0,1,1,2,140.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13828164717844432,6556.666666666667,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +8960,2,30.0,0.0,9,120,1400.0,0.0,0.0,55,64,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,108970,1,1,1,0,1,,360.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1702.22009575948,1400.0,51320.81364874485,4,1,1,2,83.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027279380439718334,24438.4826898785,7,4,7,7_1,7_1,7_0_0 +8961,2,59.0,0.0,2,111,1500.0,0.0,0.0,75,48,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,108971,2,2,2,0,1,,600.0,,42,2.0,0.0,5.0,4.0,2.5,4,4,550.027088877553,1500.0,108898.36578872518,5,1,0,1,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013774311387832626,43559.34631549007,10,5,10,10_1,10_3,10_0_1 +8962,1,59.0,255.0,2,111,0.0,0.0,550.0,0,77,0.0,0.0,346.6750597281091,550.0,0.0,658.2026811605745,71,0,0,0,0,0,0,0,0,0,,2,,2,108972,1,2,0,0,1,,210.0,419.0,11,0.0,5.0,3.0,1.0,1.0,1,1,381.624645292319,0.0,12563.10052598871,0,7,2,3,65.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04377900175695006,12563.10052598871,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +8963,2,60.0,0.0,1,112,400.0,0.0,0.0,0,78,527.3414255183008,0.0,682.0802173488245,935.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,108973,2,2,4,0,2,,250.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1452.8760968963,400.0,23491.85476193411,0,7,0,1,80.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03980102931314992,23491.85476193411,6,3,6,6_1,6_0,6_1_0 +8964,0,86.0,0.0,5,111,1200.0,,,86,71,0.0,0.0,,1266.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,3,108974,2,2,0,0,2,,600.0,,41,0.0,11.0,5.0,2.0,1.5,2,2,103.25043268729937,1200.0,9391.185314685314,6,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13480726421406178,6260.790209790209,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +8965,2,34.0,0.0,2,111,0.0,0.0,0.0,33,47,0.0,0.0,0.0,1125.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,108975,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,744.681919133713,0.0,76110.12084987902,1,1,1,2,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014781214212219822,36242.91469041858,9,5,9,9_0,9_4,9_0_1 +8966,2,81.0,0.0,2,111,900.0,3366.0,0.0,0,72,0.0,0.0,1534.680489034855,4266.0,0.0,6390.36462536533,70,2,2,1,2,1,2,2,2,0,,1,,2,108976,2,1,1,0,2,,180.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,941.559086968313,900.0,40505.78895662377,0,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.10531827943330051,40505.78895662377,9,5,9,9_1,9_3,9_0_1 +8967,2,74.0,0.0,1,112,780.0,0.0,0.0,0,86,0.0,0.0,1330.0564238302077,850.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,108977,2,2,4,0,2,,120.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1044.00255943316,780.0,11914.281148302609,0,6,0,1,55.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07134295300065979,11914.281148302609,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +8968,2,63.0,0.0,6,221,1055.0,0.0,0.0,78,52,0.0,662.163638505112,1798.9865732575245,1805.0,346.39730634913025,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,108978,2,1,2,0,1,,570.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1341.21277149924,1055.0,29770.03921652849,5,1,0,1,120.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06063142835894734,19846.692811018995,5,3,5,5_1,5_1,5_0_0 +8969,1,81.0,250.0,2,111,0.0,,,0,77,0.0,0.0,,144.0,199.524848457099,,71,2,2,2,2,2,2,2,1,0,,2,,2,108979,1,3,0,0,2,,0.0,426.0,21,1.0,2.0,3.0,2.0,1.5,2,2,111.89378262375052,0.0,12019.597296829275,0,5,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.011980434655492714,8013.06486455285,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +8970,2,35.0,0.0,2,112,2340.0,36.0,0.0,62,62,0.0,0.0,3990.169271490623,2376.0,0.0,68.3461457258324,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,108980,2,1,1,0,1,,291.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,2067.08665185859,2340.0,42001.599159730125,1,1,1,2,88.0,8,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056569274683189626,28001.06610648675,7,4,7,7_1,7_0,7_0_1 +8971,1,44.0,373.0,1,111,4060.0,0.0,0.0,0,67,0.0,1059.4618216081792,6923.114206090569,4860.0,0.0,0.0,71,2,2,2,1,2,2,2,2,3,15.0,1,,1,108981,1,3,3,0,2,,604.0,454.0,32,3.0,1.0,9.0,4.0,2.3,3,3,204.774984022663,4060.0,26619.458021203718,0,1,2,3,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.18257321377951305,11573.677400523356,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +8972,2,36.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,645.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,70.0,2,,2,108982,2,1,0,1,1,382.0,0.0,325.0,12,1.0,0.0,2.0,1.0,1.0,1,1,426.451712865184,0.0,19427.519037880244,0,1,2,3,29.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033200327779494825,19427.519037880244,5,3,5,5_0,5_4,5_0_1 +8973,2,62.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,585.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,108983,1,3,0,1,1,468.0,0.0,480.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1076.15021790382,0.0,12219.551688953386,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.047874096766483396,12219.551688953386,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +8974,2,52.0,0.0,7,111,1200.0,,,85,47,0.0,0.0,,1326.0,174.58424239996165,,31,0,0,0,0,0,0,0,0,0,,1,,5,108984,2,1,0,0,1,,400.0,,42,1.0,0.0,5.0,5.0,3.0,5,3,136.4620594449141,1200.0,46640.64217270958,5,1,0,1,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02843014028601584,15546.880724236527,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +8975,2,54.0,0.0,1,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,528.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,108985,2,1,0,1,1,30.0,272.0,540.0,42,1.0,2.0,3.0,2.0,1.5,2,2,171.960756622496,0.0,17982.547807747145,6,1,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02936180154474717,11988.365205164764,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +8976,2,49.0,0.0,7,111,660.0,0.0,0.0,52,62,0.0,1456.7600047112462,1125.4323586255605,1880.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,108986,2,1,2,0,1,,500.0,,43,3.0,1.0,4.0,4.0,2.3,3,3,387.92031139883,660.0,38064.729324358086,1,1,1,2,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04938955388281101,16549.8823149383,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +8977,2,47.0,0.0,1,111,600.0,1020.0,0.0,37,48,0.0,397.2981831030672,1023.1203260232367,1920.0,0.0,1936.4741288985847,50,0,0,0,0,0,0,0,0,1,25.0,1,,1,108987,2,1,2,0,1,,370.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1104.17464986267,600.0,61480.115865468,1,1,1,2,80.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031229609329321725,29276.245650222856,8,4,8,8_1,8_3,8_1_0 +8978,2,61.0,0.0,2,111,950.0,,,0,52,0.0,0.0,,1080.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,1,5.0,1,,2,108988,1,1,0,0,2,,500.0,,32,1.0,2.0,3.0,4.0,2.1,2,2,150.14988924883062,950.0,29404.713667918626,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03672880519079193,14002.244603770774,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +8979,2,66.0,0.0,2,111,600.0,1300.0,0.0,78,78,0.0,0.0,1023.1203260232367,2000.0,138.5589225396521,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,2,108989,2,1,2,0,1,,230.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,199.439595669167,600.0,53237.3951875857,7,5,0,1,77.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.037567578070881555,35491.5967917238,9,5,9,9_1,9_2,9_0_1 +8981,2,54.0,0.0,8,111,600.0,1200.0,0.0,85,37,0.0,39.72981831030672,1023.1203260232367,1830.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,0,,1,2003.0,6,108991,2,1,1,0,1,,620.0,,42,1.0,0.0,8.0,4.0,2.5,4,3,626.904525495896,600.0,83489.9078526988,6,1,1,2,156.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021918816861418364,33395.96314107952,8,4,8,8_1,8_4,8_0_0 +8982,1,37.0,50.0,2,111,0.0,0.0,511.0,85,63,0.0,0.0,322.0926464019341,511.0,0.0,611.5301274055519,50,0,0,0,0,0,0,0,0,0,,2,,2,108992,2,1,0,0,1,441.0,229.0,272.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1285.83546718576,0.0,17975.339402061716,6,4,2,3,56.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.028427835968504154,11983.559601374478,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +8983,2,65.0,0.0,5,112,2413.0,0.0,0.0,74,74,0.0,0.0,4114.6489111567835,2512.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,108993,2,3,3,0,1,,396.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,966.460295527064,2413.0,38716.963505408334,5,5,0,1,220.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0648811211563402,25811.309003605555,7,4,7,7_1,7_1,7_0_0 +8984,2,76.0,0.0,5,400,1000.0,0.0,0.0,72,72,0.0,0.0,1705.2005433720612,3000.0,2771.178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,108994,2,1,1,0,1,,210.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,874.263414060118,1000.0,52189.71409249747,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05748259119954185,34793.142728331644,9,5,9,9_1,9_0,9_0_0 +8985,2,66.0,0.0,2,111,1600.0,800.0,0.0,77,78,0.0,0.0,2728.320869395298,2400.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,2,108995,2,2,1,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1119.21122455005,1600.0,36419.764207300155,5,5,0,1,115.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06589828496250759,24279.84280486677,7,4,7,7_1,7_2,7_0_1 +8986,1,40.0,472.0,1,111,690.0,0.0,0.0,0,67,0.0,0.0,1176.5883749267223,840.0,207.83838380947813,0.0,71,2,1,2,1,2,2,2,2,0,,8,,1,108996,1,3,0,1,1,600.0,0.0,406.0,32,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,333.823569289495,690.0,15142.273117605546,0,4,2,3,90.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.05547383761182809,5823.951199079057,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +8987,0,52.0,0.0,1,120,630.0,0.0,0.0,0,68,1054.6828510366015,0.0,1074.2763423243985,1760.0,180.1265993015477,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,108997,2,1,2,0,1,,380.0,,22,1.0,0.0,4.0,3.0,2.0,3,3,1369.72229854425,630.0,45061.52324004859,0,1,5,0,50.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0390577120667726,22530.761620024296,6,3,6,6_1,6_0,6_1_0 +8988,2,71.0,0.0,9,221,1800.0,0.0,0.0,0,72,0.0,0.0,3069.36097806971,2000.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,108998,2,1,1,0,1,,2000.0,,31,0.0,1.0,3.0,2.0,1.3,1,1,1603.01145690501,1800.0,12730.619741069557,0,5,0,1,120.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1571015426333024,9792.78441620735,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +8989,1,35.0,289.0,5,111,650.0,0.0,0.0,0,56,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,60,2,2,2,2,1,2,1,2,2,12.0,2,,3,108999,1,3,0,1,2,885.0,0.0,257.0,32,1.0,0.0,4.0,4.0,2.3,3,2,340.411666492675,650.0,31493.404470416208,0,1,2,3,82.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.020639242118475537,13692.784552354875,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +8990,1,28.0,360.0,2,111,500.0,0.0,0.0,0,56,0.0,0.0,852.6002716860306,500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,109000,2,1,0,1,1,,0.0,430.0,32,1.0,0.0,3.0,2.0,1.3,1,1,424.626076765217,500.0,1329.3171928364611,0,4,2,3,57.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.37613295208580994,1022.5516867972777,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +8991,2,58.0,0.0,1,111,1145.0,0.0,0.0,45,22,0.0,0.0,1952.45462216101,1145.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,109001,2,2,2,0,1,,450.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,953.772377083945,1145.0,95211.04664678982,1,1,0,1,100.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012025915482766152,63474.03109785988,10,5,10,10_1,10_2,10_1_0 +8992,2,54.0,0.0,1,112,640.0,840.0,0.0,0,46,0.0,0.0,1091.3283477581192,1480.0,0.0,1594.7434002694229,20,0,0,0,0,0,0,0,0,0,,1,,1,109002,1,1,4,0,2,,500.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,1207.79523095874,640.0,9996.709847285922,0,4,0,1,70.0,4,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14804871028659652,6664.473231523948,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +8993,2,57.0,0.0,7,111,0.0,0.0,180.0,0,33,0.0,0.0,113.45729227465388,180.0,0.0,215.41178656164254,10,0,0,0,0,0,0,0,0,3,55.0,2,,5,109003,1,2,0,1,1,555.0,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,721.068430772021,0.0,35522.05888569399,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005067273847476574,35522.05888569399,9,5,9,9_0,9_4,9_0_0 +8994,1,28.0,168.0,5,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,505.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,109004,2,2,0,1,1,336.0,0.0,224.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2755.26052282803,0.0,9367.594777792336,0,4,2,3,56.0,1,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05390924906329195,9367.594777792336,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +8995,2,52.0,0.0,2,111,550.0,80.0,0.0,0,54,0.0,0.0,937.8602988546337,630.0,0.0,151.8803238351831,43,0,0,0,0,0,0,0,0,2,60.0,2,,2,109005,2,1,0,1,1,281.0,0.0,299.0,12,1.0,0.0,2.0,1.0,1.0,1,1,183.260520568808,550.0,4694.7159576096265,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13419342207036788,4694.7159576096265,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +8996,2,45.0,0.0,1,111,1915.0,1648.0,0.0,37,38,0.0,0.0,3265.4590405574972,3563.0,0.0,3128.7346710047723,42,0,0,0,0,0,0,0,0,2,60.0,1,,1,109006,2,1,2,0,1,,747.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,4,2,345.29238299195,1915.0,168454.9886022578,4,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021151050672726976,64790.380231637624,10,5,10,10_1,10_4,10_1_0 +8997,2,47.0,0.0,5,111,2400.0,0.0,0.0,48,43,0.0,595.9472746546007,4092.4813040929466,2950.0,138.5589225396521,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,,3,109007,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,1405.46368365908,2400.0,62394.04974672907,1,1,0,1,175.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04728014950102914,22283.589195260385,6,3,6,6_1,6_2,6_0_0 +8999,2,51.0,0.0,2,112,1300.0,1300.0,0.0,52,85,0.0,0.0,2216.7607063836795,2600.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,2,109009,2,2,2,0,1,,600.0,,42,1.0,0.0,5.0,4.0,2.3,3,3,660.882453622593,1300.0,22698.149889177144,1,6,0,1,120.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11454678080347523,9868.760821381367,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +9000,2,41.0,0.0,2,111,500.0,840.0,0.0,37,37,0.0,0.0,852.6002716860306,1340.0,0.0,1594.7434002694229,31,0,0,0,0,0,0,0,0,3,50.0,1,,2,109010,2,1,1,0,1,,1000.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,488.462019799905,500.0,90936.42346730245,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014735569631038075,34975.547487424024,9,5,9,9_1,9_4,9_0_1 +9001,2,47.0,0.0,2,111,181.0,67.0,0.0,0,54,0.0,0.0,308.64129835034305,248.0,0.0,127.19977121196587,43,2,2,1,2,2,1,2,2,2,18.0,2,,2,109011,2,3,0,1,1,,118.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2758.77770737659,181.0,19336.631215794216,0,1,0,1,31.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01282539844879665,19336.631215794216,5,3,5,5_0,5_3,5_0_1 +9002,2,75.0,0.0,5,211,600.0,,,0,86,0.0,0.0,,625.0,34.63973063491302,,71,0,0,0,0,0,0,0,0,0,,1,,3,109012,2,2,0,0,2,,600.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,43.23707715105118,600.0,13900.036557195055,0,5,0,1,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04496391052126278,13900.036557195055,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9003,1,76.0,254.0,2,111,240.0,300.0,0.0,0,78,0.0,0.0,409.2481304092947,540.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,109013,2,1,0,0,1,,220.0,277.0,11,0.0,1.0,3.0,1.0,1.0,1,1,272.292597630345,240.0,18784.701710116395,0,5,2,3,60.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.028746796639798972,18784.701710116395,5,3,5,5_0,5_2,5_0_1 +9004,1,32.0,248.0,2,111,0.0,0.0,560.0,85,38,0.0,0.0,352.9782426322565,680.0,166.2707070475825,670.1700026362213,60,2,1,2,2,1,2,2,2,2,30.0,2,,2,109014,1,2,0,1,2,750.0,0.0,487.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,1645.70087436097,0.0,49972.38198148593,7,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01360751625271596,18508.28962277257,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +9005,2,67.0,0.0,1,120,322.0,0.0,0.0,78,78,0.0,0.0,549.0745749658037,522.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109015,2,2,2,0,2,,272.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1470.24875116486,322.0,29904.249951606478,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01745571284498837,19936.16663440432,5,3,5,5_1,5_0,5_1_0 +9006,2,60.0,0.0,6,111,1240.0,0.0,0.0,72,63,0.0,1271.354185929815,2114.448673781356,2290.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,109016,2,1,3,0,1,,189.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1431.76828101535,1240.0,13141.176083670816,6,1,0,1,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1742614196339357,8760.784055780545,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +9007,2,41.0,0.0,1,111,1440.0,0.0,0.0,68,63,0.0,0.0,2455.488782455768,1440.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,109017,2,2,0,0,1,,0.0,536.0,43,2.0,0.0,3.0,4.0,2.1,2,2,220.527956700783,1440.0,13902.012518729383,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10358212511030117,6620.0059612997065,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +9008,2,64.0,0.0,2,111,800.0,200.0,0.0,68,62,0.0,0.0,1364.160434697649,1000.0,0.0,379.7008095879578,70,0,0,0,0,0,0,0,0,0,,2,,2,109018,2,1,0,1,1,,0.0,,43,4.0,2.0,5.0,5.0,2.8,4,4,363.688132292587,800.0,90098.63959203375,1,1,1,2,87.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011098946715821633,32178.085568583487,8,4,8,8_0,8_3,8_0_1 +9009,2,61.0,0.0,5,111,672.0,,,78,77,0.0,0.0,,808.0,188.44013465392686,,71,0,0,0,0,0,0,0,0,0,,1,,3,109019,2,2,0,0,2,,600.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,77.68559259809525,672.0,43118.57589316018,5,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018739023338852235,28745.717262106788,8,4,8,8_1,8_2,8_0_0 +9010,2,66.0,0.0,7,111,1053.0,0.0,0.0,78,74,0.0,0.0,1795.5761721707804,1053.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,109020,2,2,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1431.15894105799,1053.0,58525.193043559906,6,5,0,1,67.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017992251631126773,39016.79536237327,9,5,9,9_0,9_3,9_0_0 +9011,2,40.0,0.0,9,111,1200.0,,,85,46,0.0,331.081819252556,,1586.0,188.44013465392686,,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,109021,2,2,0,0,1,,1100.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,176.03629075822735,1200.0,51960.314978876726,6,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030523294569033153,21650.131241198636,6,3,6,6_1,6_2,6_0_0 +9012,2,40.0,0.0,5,111,1350.0,0.0,0.0,43,34,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,1,,3,109022,1,1,2,0,1,,571.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,1234.60160653859,1350.0,63655.158244569146,1,1,1,2,180.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021208022055544534,23575.98453502561,6,3,6,6_1,6_2,6_0_0 +9013,2,35.0,0.0,1,111,25.0,75.0,0.0,38,33,0.0,0.0,42.63001358430153,100.0,0.0,142.38780359548417,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,109023,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,644.570780164496,25.0,109801.94774764225,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0009107306568898936,47739.97728158359,10,5,10,10_1,10_3,10_1_0 +9014,2,38.0,0.0,9,112,1800.0,0.0,0.0,56,62,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,109024,2,1,1,0,1,,260.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,2102.92321209478,1800.0,20771.239503923523,1,1,1,2,148.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08665828534979793,8654.683126634802,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +9015,2,44.0,0.0,2,111,400.0,0.0,0.0,0,38,0.0,0.0,682.0802173488245,400.0,0.0,0.0,31,2,2,1,1,2,2,2,2,0,,2,,2,109025,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,795.713095234412,400.0,32108.005620620104,0,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01245795222307784,24698.465862015462,7,4,7,7_0,7_4,7_0_1 +9016,2,89.0,0.0,2,111,454.0,984.0,0.0,0,86,0.0,0.0,774.1610466909158,1438.0,0.0,1868.1279831727525,70,0,0,0,0,0,0,0,0,0,,2,,2,109026,2,1,0,0,1,,120.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,432.158360577775,454.0,15270.826521646635,0,5,0,1,90.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09416648129435644,15270.826521646635,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +9017,2,40.0,0.0,2,111,0.0,0.0,0.0,85,54,0.0,0.0,0.0,2265.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,2,,2,109027,2,1,0,0,1,,0.0,,42,1.0,0.0,7.0,5.0,2.4,2,2,1031.47939007622,0.0,49986.149941627424,6,1,0,1,130.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04531255162970164,20827.562475678093,5,3,5,5_0,5_2,5_0_1 +9019,1,25.0,26.0,2,111,0.0,0.0,0.0,37,52,0.0,0.0,0.0,232.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,109029,1,2,0,1,1,30.0,0.0,264.0,43,2.0,0.0,2.0,2.0,1.5,2,2,216.048767754148,0.0,13982.654654655395,4,4,2,3,44.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016591985265312817,9321.769769770262,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +9020,2,58.0,0.0,5,111,750.0,950.0,0.0,68,21,0.0,0.0,1278.9004075290459,1700.0,0.0,1803.5788455427996,41,0,0,0,0,0,0,0,0,0,,8,,3,109030,2,1,0,0,1,,950.0,,43,2.0,1.0,3.0,3.0,2.0,3,3,882.077268502033,750.0,43081.493110085714,1,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03946009939014896,21540.746555042857,6,3,6,6_0,6_4,6_0_0 +9021,2,54.0,0.0,1,111,726.0,1470.0,0.0,56,65,0.0,0.0,1237.9755944881165,2196.0,0.0,2790.8009504714896,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,109031,2,1,3,0,1,,300.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,246.60742327852,726.0,27417.480166068217,1,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0800948878853485,10966.992066427287,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +9022,2,89.0,0.0,2,111,270.0,870.0,0.0,0,77,0.0,0.0,460.40414671045653,1140.0,0.0,1651.6985217076165,70,2,2,2,2,1,2,2,2,0,,1,,2,109032,1,2,5,0,2,,170.0,270.0,11,0.0,6.0,2.0,1.0,1.0,1,1,86.1303630688165,270.0,17424.855404213147,0,5,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.06542378536606737,17424.855404213147,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +9023,2,50.0,0.0,1,111,860.0,0.0,0.0,65,63,1438.5874088139244,0.0,1466.4724672999725,2274.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,109033,2,1,2,0,1,,365.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,414.39184790537,860.0,43161.27566752295,1,1,0,1,100.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052686116543841865,17264.51026700918,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +9024,2,76.0,0.0,1,221,1010.0,0.0,0.0,78,78,0.0,0.0,1722.2525488057818,1138.0,177.35542085075468,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109034,2,1,3,0,1,,308.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1562.85701938938,1010.0,30816.61074494341,5,5,0,1,110.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03692813623856188,20544.407163295607,5,3,5,5_1,5_1,5_1_0 +9025,2,70.0,0.0,2,111,0.0,,,0,86,0.0,0.0,,182.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,2,109035,2,1,0,0,2,,0.0,,11,0.0,3.0,1.0,1.0,1.0,1,1,158.34265760135054,0.0,13068.525606156269,0,5,0,1,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013926590151398882,13068.525606156269,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +9026,2,58.0,0.0,2,111,600.0,0.0,0.0,46,33,2425.7705573841836,0.0,1023.1203260232367,2900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,2,109036,2,1,0,1,1,,0.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,979.42967963895,600.0,172474.35128053886,1,1,0,1,155.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016814094260792396,114982.90085369257,10,5,10,10_0,10_4,10_0_1 +9027,0,60.0,0.0,5,111,100.0,,,0,69,0.0,0.0,,242.0,196.75367000630598,,71,0,0,0,0,0,0,0,0,0,,1,,3,109037,2,1,0,0,2,,440.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,80.95332394917754,100.0,3091.211681393622,0,4,5,0,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07828645364425457,3091.211681393622,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9028,2,46.0,0.0,5,111,500.0,0.0,0.0,46,43,0.0,0.0,852.6002716860306,500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,,3,109038,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,906.329462075618,500.0,57562.15480655266,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008686262730787866,28781.07740327633,8,4,8,8_0,8_4,8_0_0 +9029,2,35.0,0.0,9,112,1650.0,0.0,0.0,56,63,0.0,0.0,2813.5808965639008,1770.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,109039,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,969.331831365125,1650.0,28888.782368042775,1,1,1,2,105.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06126945668565117,13756.563032401322,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9030,2,33.0,0.0,2,111,480.0,600.0,0.0,0,56,0.0,0.0,818.4962608185893,1080.0,0.0,1139.1024287638734,20,2,2,2,2,1,2,2,2,0,,2,,2,109040,1,3,0,0,1,,0.0,1260.0,22,4.0,0.0,6.0,4.0,2.5,4,4,593.724053165166,480.0,6785.779048374587,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.15915637575300878,2714.3116193498345,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +9031,2,39.0,0.0,9,111,1800.0,,,33,33,0.0,0.0,,1950.0,207.83838380947813,,12,0,0,0,0,0,0,0,0,2,60.0,1,2009.0,6,109041,2,1,0,0,2,,1300.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,101.86126694897999,1800.0,124014.23693497584,1,1,1,2,163.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01572400111627861,51672.5987229066,10,5,10,10_1,10_2,10_0_0 +9032,2,49.0,0.0,1,112,690.0,1540.0,0.0,43,62,0.0,0.0,1176.5883749267223,2230.0,0.0,2923.696233827275,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,109042,2,1,4,0,1,,298.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,883.688503994334,690.0,51184.81223099894,1,1,0,1,196.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04356761122686018,19686.466242691902,5,3,5,5_1,5_0,5_1_0 +9033,2,69.0,0.0,2,111,394.0,30.0,0.0,77,75,0.0,0.0,671.8490140885921,424.0,0.0,56.95512143819367,33,0,0,0,0,0,0,0,0,0,,2,,2,109043,1,1,0,1,2,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,296.487052187887,394.0,45441.816788894255,5,5,0,1,43.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009330612857530455,30294.544525929505,8,4,8,8_0,8_3,8_0_1 +9034,0,85.0,0.0,2,111,550.0,,,0,77,0.0,0.0,,551.0,1.385589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,2,109044,2,2,0,0,2,,360.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,122.3121400285982,550.0,38509.42348934846,0,5,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014308186154809723,38509.42348934846,9,5,9,9_1,9_2,9_0_1 +9035,2,65.0,0.0,7,112,586.0,,,74,77,0.0,0.0,,784.0,274.3466666285112,,60,0,0,0,0,0,0,0,0,0,,2,,5,109045,2,1,0,0,2,,112.0,632.0,41,0.0,3.0,4.0,2.0,1.5,2,2,95.00143224416139,586.0,34214.84678845652,5,5,2,3,85.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022914029247224563,22809.897858971013,6,3,6,6_0,6_1,6_0_0 +9036,2,43.0,0.0,2,111,491.0,230.0,0.0,56,38,0.0,0.0,837.253466795682,721.0,0.0,436.65593102615145,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,109046,2,1,0,1,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,676.24566601357,491.0,47729.18314072863,1,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015106062005589843,19091.67325629145,5,3,5,5_0,5_4,5_0_1 +9037,2,37.0,0.0,2,111,600.0,0.0,0.0,68,62,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,43,2,1,2,1,1,2,1,2,0,,2,,2,109047,1,3,0,1,2,,0.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1557.56433985353,600.0,34101.77432639179,1,1,0,1,75.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.017594392428304018,18945.43018132877,5,3,5,5_0,5_2,5_0_1 +9038,1,33.0,429.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,864.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109048,2,1,0,0,1,,241.0,339.0,32,1.0,2.0,4.0,4.0,2.1,2,2,330.061708450499,0.0,14360.663872045945,0,4,2,3,75.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06016434948260557,6838.411367640926,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9039,1,27.0,413.0,7,111,0.0,,,0,55,0.0,0.0,,1220.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,109049,2,1,0,0,2,,485.0,520.0,32,1.0,0.0,5.0,3.0,1.6,1,1,90.37023403020542,0.0,18212.36557453559,0,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06698745393656033,11382.728484084742,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9040,2,52.0,0.0,7,111,360.0,,,56,53,0.0,0.0,,498.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,109050,1,1,0,0,2,,450.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,88.25615875702071,360.0,12598.977227817722,1,1,0,1,102.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039527018026546505,8399.318151878482,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +9041,2,49.0,0.0,7,211,590.0,,,77,68,0.0,0.0,,854.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,109051,2,2,0,0,2,,188.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,101.2545264025056,590.0,9402.762935673445,6,4,0,1,93.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09082436788446319,4701.381467836723,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9042,2,32.0,0.0,9,112,2000.0,0.0,0.0,63,67,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,109052,2,1,1,0,1,,900.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,5414.69421181159,2000.0,41993.0,1,1,1,2,100.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047626985449955944,17497.083333333336,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9043,2,33.0,0.0,9,300,1200.0,0.0,0.0,54,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,109053,2,1,1,0,1,,200.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1401.2062262705,1200.0,58082.85231728511,1,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020660142402181704,32268.25128738062,8,4,8,8_1,8_0,8_0_0 +9044,2,73.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,280.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,8,,2,109054,1,3,0,0,2,,220.0,359.0,11,0.0,1.0,4.0,1.0,1.0,1,1,99.44651008926839,240.0,28973.039138696375,0,5,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009664157034393819,28973.039138696375,8,4,8,8_0,8_3,8_0_1 +9045,2,49.0,0.0,8,112,1050.0,0.0,0.0,56,21,0.0,0.0,1790.4605705406643,2250.0,1662.707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,109055,2,1,1,0,1,,276.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1318.38157467204,1050.0,62347.15991298735,1,1,1,2,98.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03608825170449038,34637.31106277075,9,5,9,9_1,9_0,9_0_0 +9046,2,85.0,0.0,2,111,320.0,150.0,0.0,0,78,0.0,0.0,545.6641738790596,470.0,0.0,284.77560719096834,71,2,2,2,2,1,2,2,2,0,,2,,2,109056,2,1,0,1,1,525.0,0.0,274.0,11,0.0,2.0,3.0,1.0,1.0,1,1,356.557580387217,320.0,28677.220071415082,0,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.016389315241489785,28677.220071415082,8,4,8,8_0,8_3,8_0_1 +9047,2,68.0,0.0,9,111,720.0,,,74,74,0.0,0.0,,783.0,87.29212119998083,,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,109057,2,1,0,0,2,,300.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,81.71930661958524,720.0,77067.3780502631,5,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010159940818141366,51378.25203350873,10,5,10,10_1,10_3,10_0_0 +9048,2,33.0,0.0,9,120,1224.0,0.0,0.0,46,64,0.0,0.0,2087.165465087403,1320.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109058,2,1,1,0,1,,130.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,886.30771078139,1224.0,34157.09085612409,1,1,1,2,127.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03864497727748775,16265.281360059089,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9049,2,61.0,0.0,2,211,284.0,1500.0,0.0,45,75,0.0,0.0,484.2769543176654,1784.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,2,109059,1,2,1,0,2,,158.0,528.0,42,1.0,1.0,4.0,2.0,1.5,2,2,1192.73261690981,284.0,31766.374164871588,1,5,2,3,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05616001343876419,21177.582776581057,5,3,5,5_1,5_1,5_0_1 +9050,2,40.0,0.0,9,112,0.0,0.0,0.0,38,22,0.0,0.0,0.0,666.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2012.0,6,109060,2,1,1,0,1,,528.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,938.203397084528,0.0,16090.068610842765,1,1,1,2,179.0,9,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0413919925457121,7661.93743373465,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +9052,2,52.0,0.0,5,111,1360.0,0.0,0.0,56,62,0.0,0.0,2319.072738986003,1360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,109062,2,1,2,0,1,,360.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1277.17131068296,1360.0,34494.04380211986,1,1,1,2,115.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03942709668375907,22996.02920141324,6,3,6,6_1,6_3,6_0_0 +9053,2,39.0,0.0,6,211,0.0,,,52,42,0.0,0.0,,1002.0,207.83838380947813,,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,109063,2,3,0,0,2,,300.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,113.11114746543952,0.0,87635.4279727104,1,1,1,2,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011433732032575021,36514.761655296,9,5,9,9_1,9_2,9_0_0 +9054,2,60.0,0.0,2,111,399.0,0.0,0.0,0,54,0.0,0.0,680.3750168054524,434.0,48.49562288887823,0.0,30,0,0,0,0,0,0,0,0,2,15.0,2,,2,109064,2,1,0,1,1,289.0,186.0,263.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1487.75552530248,399.0,23370.331176604683,0,1,2,3,63.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018570554123531806,23370.331176604683,6,3,6,6_0,6_2,6_0_1 +9055,2,61.0,0.0,5,111,1010.0,0.0,0.0,0,54,0.0,145.67600047112464,1722.2525488057818,1240.0,166.2707070475825,0.0,41,2,2,1,1,2,2,2,2,2,10.0,1,,3,109065,2,2,3,0,1,,480.0,505.0,22,2.0,2.0,5.0,2.0,1.5,2,2,901.37293069188,1010.0,50890.8046042051,0,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.024365894971476613,33927.203069470066,9,5,9,9_1,9_3,9_0_0 +9056,2,43.0,0.0,1,111,140.0,98.0,0.0,0,46,0.0,0.0,238.72807607208856,238.0,0.0,186.05339669809933,10,0,0,0,0,0,0,0,0,3,35.0,2,,1,109066,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,312.441478905503,140.0,164328.15832763098,0,1,1,2,128.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0014483214710255866,164328.15832763098,10,5,10,10_0,10_4,10_1_0 +9057,2,84.0,0.0,1,112,0.0,0.0,0.0,86,78,527.3414255183008,264.8654554020448,0.0,1667.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109067,2,2,4,0,1,,230.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1076.88539716302,0.0,17146.365431980208,5,5,0,1,200.0,7,0,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09722177021206066,11430.910287986806,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9058,0,29.0,0.0,2,111,600.0,,,43,43,0.0,0.0,,600.0,0.0,,33,0,0,0,0,0,0,0,0,2,60.0,1,,2,109068,2,1,0,0,1,,250.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,152.28727948139488,600.0,60179.97129559397,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009970094486301767,40119.98086372931,9,5,9,9_1,9_2,9_0_1 +9059,2,70.0,0.0,5,120,700.0,0.0,0.0,0,77,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,109069,2,1,1,0,1,,252.0,409.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2147.1465258102,700.0,17812.91699584908,0,5,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03929732565211639,17812.91699584908,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9060,2,62.0,0.0,2,111,400.0,3054.0,0.0,75,74,0.0,0.0,682.0802173488245,3454.0,0.0,5798.0313624081155,30,0,0,0,0,0,0,0,0,0,,1,,2,109070,2,2,2,0,1,,350.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,276.377028350721,400.0,51801.747091029116,5,5,0,1,150.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06667728781290765,34534.49806068608,9,5,9,9_1,9_2,9_0_1 +9061,2,59.0,0.0,9,211,400.0,,,77,77,0.0,0.0,,526.0,174.58424239996165,,42,0,0,0,0,0,0,0,0,0,,1,2004.0,6,109071,2,1,0,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,105.34660464312107,400.0,39482.642461410534,5,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013322309936932434,26321.761640940356,7,4,7,7_1,7_2,7_0_0 +9062,2,53.0,0.0,7,111,350.0,,,0,22,0.0,0.0,,475.0,173.19865317456512,,20,0,0,0,0,0,0,0,0,2,40.0,1,,5,109072,2,3,0,0,2,,200.0,1400.0,12,1.0,1.0,4.0,1.0,1.0,1,1,105.02866112597569,350.0,33097.94591270785,0,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01435134377380275,33097.94591270785,8,4,8,8_1,8_2,8_0_0 +9063,2,31.0,0.0,9,111,700.0,1300.0,0.0,84,38,0.0,0.0,1193.6403803604428,2000.0,0.0,2468.055262321726,10,1,2,2,2,1,2,2,2,2,5.0,1,2012.0,6,109073,2,2,1,0,1,,200.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,317.242935026347,700.0,37041.572875393285,3,1,1,2,140.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05399338755748679,20578.651597440712,5,3,5,5_1,5_2,5_0_0 +9064,2,55.0,0.0,9,111,480.0,,,56,56,0.0,0.0,,735.0,353.32525247611284,,71,0,0,0,0,0,0,0,0,3,45.0,1,2009.0,6,109074,2,2,0,0,2,,150.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,146.5378417031201,480.0,24881.48293333479,1,1,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029540039955387423,16587.655288889862,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9066,2,51.0,0.0,7,111,540.0,,,56,69,0.0,0.0,,724.0,254.94841747295985,,50,0,0,0,0,0,0,0,0,0,,1,,5,109076,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,90.08533283129113,540.0,27309.826891379806,4,1,0,1,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026510603779349717,11873.837778860787,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9067,2,59.0,0.0,2,111,420.0,1420.0,0.0,55,62,0.0,0.0,716.1842282162656,1840.0,0.0,2695.8757480745003,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,109077,1,2,4,0,1,,285.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,404.296586400564,420.0,34045.82454440021,1,1,0,1,151.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054044806510719086,22697.216362933472,6,3,6,6_1,6_3,6_0_1 +9068,2,68.0,0.0,9,111,1250.0,0.0,0.0,86,22,0.0,635.6770929649075,2131.5006792150766,1975.0,339.46936022214766,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,109078,2,1,1,0,1,,420.0,,42,1.0,4.0,5.0,3.0,2.0,3,3,1599.20238426418,1250.0,24728.473049979693,6,1,0,1,200.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07986744656688868,12364.236524989847,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9069,2,74.0,0.0,1,112,850.0,0.0,0.0,71,71,1582.0242765549024,0.0,1449.420461866252,2440.0,124.70303028568689,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,109079,2,2,3,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1314.62507390266,850.0,17828.633772353234,5,5,0,1,90.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1368584957857901,11885.755848235489,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9070,2,49.0,0.0,1,111,150.0,0.0,0.0,0,45,1265.6194212439218,0.0,255.78008150580916,1412.0,85.9065319745843,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,109080,2,2,1,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1080.92855633116,150.0,27549.412554390216,0,1,1,2,60.0,6,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05125336147231156,27549.412554390216,7,4,7,7_1,7_2,7_1_0 +9071,2,46.0,0.0,7,111,510.0,,,0,46,0.0,0.0,,630.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,0,,1,,5,109081,2,2,0,0,2,,450.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,66.40558857462858,510.0,16039.588456515294,0,1,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03927781574371339,10693.058971010196,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9072,0,27.0,0.0,5,111,0.0,0.0,0.0,46,47,0.0,0.0,0.0,506.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,109082,1,1,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1142.28777505385,0.0,35996.16384444102,1,1,5,0,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014057053473439584,23997.44256296068,6,3,6,6_0,6_4,6_0_0 +9073,2,46.0,0.0,6,111,552.0,825.0,0.0,52,43,0.0,0.0,941.2706999413778,1377.0,0.0,1566.2658395503258,33,0,0,0,0,0,0,0,0,2,5.0,1,,4,109083,2,1,2,0,1,,340.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,356.466328398544,552.0,57317.89681947767,1,1,0,1,110.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024023910094553055,31843.276010820926,8,4,8,8_1,8_2,8_0_0 +9074,2,59.0,0.0,7,111,800.0,800.0,0.0,0,56,0.0,0.0,1364.160434697649,1600.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,0,,1,,5,109084,1,1,2,0,1,,0.0,499.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1396.23678239261,800.0,16412.36399044176,0,1,2,3,68.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0974874796179154,16412.36399044176,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9075,2,79.0,0.0,5,111,1000.0,0.0,0.0,77,77,0.0,0.0,1705.2005433720612,1070.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,109085,2,1,1,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2428.9222923679,1000.0,29435.000207892692,5,5,0,1,85.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03635128223009458,19623.33347192846,5,3,5,5_1,5_2,5_0_0 +9076,2,57.0,0.0,1,120,1400.0,0.0,0.0,0,55,1054.6828510366015,0.0,2387.2807607208856,2465.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,109086,2,2,2,0,1,,164.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,1714.10979855873,1400.0,35634.177592700486,0,1,0,1,90.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06917516178358345,23756.118395133657,6,3,6,6_1,6_1,6_1_0 +9077,2,71.0,0.0,2,112,300.0,0.0,0.0,0,86,0.0,0.0,511.56016301161833,1676.0,1906.5707741456129,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109087,1,1,0,0,2,,400.0,650.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2019.18908878145,300.0,27167.152859241916,0,6,2,3,60.0,6,0,9,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06169214745040338,27167.152859241916,7,4,7,7_0,7_0,7_0_1 +9078,2,61.0,0.0,5,111,800.0,410.0,0.0,52,74,0.0,0.0,1364.160434697649,1210.0,0.0,778.3866596553135,10,0,0,0,0,0,0,0,0,0,,2,,3,109088,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,2.0,3,3,772.331942695345,800.0,79593.67308941904,1,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015202213354830763,39796.83654470952,9,5,9,9_0,9_4,9_0_0 +9079,2,69.0,0.0,2,111,464.0,0.0,0.0,85,86,0.0,1144.2187673368335,791.2130521246364,1328.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,109089,2,1,2,0,1,,410.0,,41,0.0,2.0,4.0,3.0,1.8,2,2,1663.07144493359,464.0,25265.128948364894,6,5,0,1,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052562565689416176,14036.182749091608,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +9080,2,34.0,0.0,7,111,800.0,0.0,0.0,0,47,0.0,0.0,1364.160434697649,800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,2,,5,109090,2,2,0,0,1,,0.0,950.0,32,1.0,0.0,2.0,3.0,1.6,1,1,1383.99072810842,800.0,34768.10855081522,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023009592219569913,21730.06784425951,6,3,6,6_0,6_4,6_0_0 +9081,2,48.0,0.0,1,111,487.0,0.0,0.0,0,21,0.0,0.0,830.4326646221938,487.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,2,,1,109091,2,1,0,0,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,2833.57745498423,487.0,13802.0788369883,0,1,0,1,27.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03528453979663446,13802.0788369883,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +9082,2,58.0,0.0,1,111,642.0,1813.0,0.0,85,46,0.0,0.0,1094.7387488448633,2455.0,0.0,3441.9878389148375,41,0,0,0,0,0,0,0,0,3,60.0,1,,1,109092,1,2,1,0,1,,658.0,618.0,42,1.0,5.0,5.0,2.0,1.5,2,2,1242.11428405357,642.0,30349.08946749451,6,1,2,3,100.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08089204793538982,20232.726311663006,5,3,5,5_1,5_2,5_1_0 +9083,1,25.0,347.0,2,111,400.0,759.0,0.0,84,42,0.0,0.0,682.0802173488245,1159.0,0.0,1440.9645723862998,10,2,2,2,2,1,1,2,2,3,60.0,2,,2,109093,1,1,0,0,2,,0.0,719.0,42,1.0,0.0,2.0,2.0,1.5,2,2,2026.21299897051,400.0,25992.892893488166,3,1,2,3,89.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.044589111521725115,17328.595262325445,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +9084,2,60.0,0.0,9,112,320.0,730.0,0.0,54,78,0.0,463.51454695357836,545.6641738790596,1400.0,0.0,1385.9079549960459,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,109094,2,1,1,0,1,,130.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2133.21641344711,320.0,44681.11127870572,1,5,1,2,120.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031333150853551324,29787.40751913715,8,4,8,8_1,8_1,8_0_0 +9085,2,43.0,0.0,1,111,413.0,1822.0,0.0,0,54,0.0,0.0,704.2478244126613,2235.0,0.0,3459.0743753462957,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,109095,2,1,2,0,1,,113.0,,32,1.0,0.0,5.0,3.0,1.8,3,1,635.822393247676,413.0,32037.0,0,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06976308643131379,17798.333333333332,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +9086,2,63.0,0.0,7,400,554.0,0.0,0.0,77,78,0.0,0.0,944.6811010281219,554.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,109096,2,1,1,0,1,,156.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,766.383634180304,554.0,15932.195671517715,6,5,0,1,70.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034772357270906246,10621.46378101181,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +9087,2,47.0,0.0,1,112,1200.0,0.0,0.0,56,53,1265.6194212439218,529.7309108040896,2046.2406520464733,2860.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,109097,2,1,1,0,1,,200.0,,43,2.0,2.0,6.0,4.0,2.1,2,2,783.424611839359,1200.0,64766.65243567283,1,1,1,2,120.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044158527458873886,30841.263064606108,8,4,8,8_1,8_0,8_1_0 +9088,2,35.0,0.0,1,112,800.0,0.0,0.0,68,63,0.0,1324.327277010224,1364.160434697649,1865.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,109098,2,1,3,0,1,,260.0,737.0,43,2.0,0.0,5.0,2.0,1.5,2,2,950.757379226101,800.0,35340.747614959226,1,1,2,3,115.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05277194530006413,23560.498409972817,6,3,6,6_1,6_0,6_1_0 +9089,2,52.0,0.0,8,221,900.0,0.0,0.0,0,53,0.0,582.7040018844986,1534.680489034855,1370.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,109099,2,1,2,0,1,,35.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,1061.95984940068,900.0,29755.628693260063,0,1,1,2,91.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0460417090871388,29755.628693260063,8,4,8,8_1,8_1,8_0_0 +9090,2,61.0,0.0,2,111,678.0,1172.0,0.0,52,62,0.0,0.0,1156.1259684062575,1850.0,0.0,2225.0467441854325,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,109100,1,1,3,0,1,,342.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,696.948998599103,678.0,38950.70866900114,1,1,0,1,99.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04749592660100481,25967.139112667428,7,4,7,7_1,7_3,7_0_1 +9091,0,22.0,0.0,7,211,250.0,,,54,42,0.0,0.0,,271.0,29.09737373332694,,41,0,0,0,0,0,0,0,0,2,45.0,1,,5,109101,2,1,0,0,2,,180.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,112.89845536207224,250.0,27660.10201804852,2,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009797505440260831,18440.06801203235,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +9092,1,68.0,30.0,6,111,500.0,2680.0,0.0,0,77,0.0,0.0,852.6002716860306,3180.0,0.0,5087.990848478635,70,0,0,0,0,0,0,0,0,0,,1,,4,109102,2,2,5,0,1,,223.0,396.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1684.20196237156,500.0,14314.537294766717,0,5,2,3,40.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.22215178419791348,14314.537294766717,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +9093,2,64.0,0.0,8,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,735.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2000.0,6,109103,2,1,0,0,1,,95.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2364.8710468059,0.0,38429.653848196154,0,5,1,2,70.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01912585533305552,38429.653848196154,9,5,9,9_0,9_2,9_0_0 +9094,2,40.0,0.0,2,111,200.0,800.0,0.0,0,65,0.0,0.0,341.04010867441224,1000.0,0.0,1518.8032383518312,30,2,2,2,2,1,2,2,1,2,10.0,2,,2,109104,1,3,0,0,1,,120.0,278.0,12,1.0,0.0,3.0,1.0,1.0,1,1,332.933723361733,200.0,18561.735873961432,0,1,2,3,57.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05387427160855192,18561.735873961432,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +9095,2,62.0,0.0,5,111,750.0,,,0,77,0.0,0.0,,888.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,109105,2,2,0,0,2,,140.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,82.38977593633344,750.0,19751.425672574216,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04495877992407554,19751.425672574216,5,3,5,5_1,5_3,5_0_0 +9096,2,65.0,0.0,7,111,753.0,1245.0,0.0,77,77,0.0,0.0,1284.016009159162,1998.0,0.0,2363.637539685037,50,0,0,0,0,0,0,0,0,0,,1,,5,109106,2,1,2,0,1,,327.0,,41,0.0,2.0,6.0,3.0,2.0,3,3,490.545178289407,753.0,71055.53788545428,5,5,0,1,147.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02811884983857126,35527.76894272714,9,5,9,9_1,9_3,9_0_0 +9097,2,45.0,0.0,2,111,655.0,650.0,0.0,56,64,0.0,662.163638505112,1116.9063559087,1805.0,0.0,1234.027631160863,50,1,2,2,2,1,2,2,1,2,25.0,1,,2,109107,1,3,2,0,1,,520.0,397.0,43,2.0,0.0,5.0,4.0,2.1,2,2,269.042320104735,655.0,38472.86679728451,1,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.046916181461356565,18320.41276061167,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +9098,2,41.0,0.0,1,221,480.0,0.0,0.0,52,33,0.0,0.0,818.4962608185893,830.0,484.95622888878233,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,109108,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2344.50537093656,480.0,43033.712989146574,1,1,1,2,140.0,1,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01928720396981158,23907.61832730365,6,3,6,6_1,6_1,6_1_0 +9099,2,56.0,0.0,2,111,509.0,104.0,0.0,0,52,0.0,0.0,867.9470765763791,613.0,0.0,197.44442098573805,50,1,1,2,1,2,2,2,2,2,15.0,2,,2,109109,2,2,0,1,2,,0.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,1465.59464849677,509.0,47317.89156997835,0,1,1,2,62.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012954930569833937,31545.26104665223,8,4,8,8_0,8_3,8_0_1 +9100,2,56.0,0.0,6,112,750.0,0.0,0.0,77,38,2109.365702073203,0.0,1278.9004075290459,2950.0,277.1178450793042,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,109110,2,1,2,0,1,,180.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,336.902463857004,750.0,25564.24495880001,6,4,0,1,110.0,9,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.11539554580056229,17042.829972533338,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9101,2,58.0,0.0,1,111,900.0,1000.0,0.0,31,31,0.0,0.0,1534.680489034855,1900.0,0.0,1898.504047939789,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,109111,2,2,0,0,1,,220.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1899.43966695145,900.0,219348.1225851643,5,1,1,2,90.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0086620299166787,146232.08172344285,10,5,10,10_0,10_2,10_1_0 +9102,0,65.0,0.0,5,111,0.0,,,0,31,0.0,0.0,,2334.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,3,109112,2,2,0,0,2,,1089.0,,22,2.0,2.0,4.0,2.0,1.5,2,2,128.19615544318634,0.0,144383.78702514523,0,1,5,0,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01616524990852,96255.85801676348,10,5,10,10_1,10_3,10_0_0 +9103,2,39.0,0.0,2,211,1000.0,,,52,42,0.0,0.0,,1002.0,2.771178450793042,,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,109113,1,2,0,0,2,,200.0,569.0,43,2.0,0.0,3.0,2.0,1.5,2,2,50.377326144033994,1000.0,77945.07287990273,1,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012855206403410197,51963.38191993515,10,5,10,10_1,10_2,10_0_1 +9104,2,53.0,0.0,7,112,1700.0,0.0,0.0,52,53,0.0,66.2163638505112,2898.840923732504,1810.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,109114,2,2,5,0,1,,230.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1730.69818778071,1700.0,57936.761235711856,1,1,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03124095930451023,38624.50749047457,9,5,9,9_1,9_0,9_0_0 +9105,2,54.0,0.0,1,111,1082.0,0.0,0.0,0,52,0.0,0.0,1845.0269879285702,1082.0,0.0,0.0,50,1,2,2,1,1,2,1,2,0,,2,,1,109115,1,2,0,0,2,,0.0,420.0,22,1.0,3.0,3.0,2.0,1.5,2,2,1388.40400377344,1082.0,41293.029702820524,0,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.026202969551689104,27528.686468547017,7,4,7,7_0,7_3,7_1_0 +9106,2,39.0,0.0,5,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,1378.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,3,109116,2,2,0,1,1,704.0,0.0,1850.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1157.57392877213,0.0,102700.13735349575,4,1,2,3,82.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013417703573821901,48904.82731118845,10,5,10,10_0,10_4,10_0_0 +9107,0,88.0,0.0,1,400,0.0,0.0,0.0,71,71,2003.897416969543,0.0,0.0,2203.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109117,2,1,1,0,1,,59.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1412.4925775599,0.0,20473.83528979311,5,5,0,1,240.0,0,0,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10760074840976516,13649.22352652874,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9108,2,55.0,0.0,6,112,572.0,0.0,0.0,52,52,0.0,794.5963662061343,975.374710808819,1712.0,748.2181817141213,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,109118,1,2,1,0,2,,150.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1003.49748471331,572.0,31960.58629264918,1,1,0,1,85.0,9,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053565976053253875,15980.29314632459,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9109,2,45.0,0.0,6,111,1000.0,0.0,0.0,63,62,0.0,860.8127300566456,1705.2005433720612,1650.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,109119,2,1,1,0,1,,600.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,413.335123907454,1000.0,26309.58837333622,1,1,1,2,92.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06271477822405663,13154.79418666811,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9110,2,65.0,0.0,2,111,1100.0,0.0,0.0,77,78,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109120,2,2,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1475.7796742779,1100.0,18860.986730848257,6,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058321444985743244,12573.991153898838,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +9111,2,96.0,0.0,1,111,700.0,1000.0,0.0,0,86,0.0,0.0,1193.6403803604428,1700.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,1,109121,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,488.154932999469,700.0,14247.880478658688,0,6,0,1,50.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.11931599247666064,14247.880478658688,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +9112,2,50.0,0.0,6,211,900.0,,,85,45,0.0,0.0,,1252.0,487.7274073395754,,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,109122,2,1,0,0,2,,550.0,,42,1.0,1.0,7.0,4.0,2.3,3,3,118.99575448491504,900.0,45543.666132366314,6,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027490101397661677,19801.59397059405,5,3,5,5_1,5_2,5_0_0 +9113,2,77.0,0.0,1,112,580.0,0.0,0.0,71,78,0.0,0.0,989.0163151557955,802.0,307.60080803802765,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109123,2,1,3,0,1,,241.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,242.39471126186,580.0,41871.58378991362,5,5,0,1,60.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019153801394854154,27914.389193275743,7,4,7,7_1,7_0,7_1_0 +9114,2,43.0,0.0,5,111,180.0,90.0,0.0,0,62,0.0,0.0,306.936097806971,270.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,0,,2,,3,109124,2,1,0,1,1,421.0,120.0,295.0,12,1.0,1.0,4.0,1.0,1.0,1,1,290.48292601894,180.0,24375.277315036594,0,1,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011076797055902322,24375.277315036594,7,4,7,7_0,7_2,7_0_0 +9115,0,64.0,0.0,9,111,3000.0,0.0,0.0,77,72,0.0,0.0,5115.6016301161835,3075.0,103.91919190473907,0.0,44,0,0,0,0,0,0,0,0,0,,1,2010.0,6,109125,2,1,1,0,1,,500.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1883.17086072106,3000.0,49088.58157450077,5,5,0,1,180.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06264185888796019,32725.72104966718,8,4,8,8_1,8_3,8_0_0 +9116,2,41.0,0.0,9,111,2500.0,0.0,0.0,37,37,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,2011.0,6,109126,2,1,1,0,1,,750.0,1700.0,43,2.0,2.0,5.0,3.0,1.8,2,2,318.480026537885,2500.0,96162.3535055346,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02599769981561561,53423.529725297,10,5,10,10_1,10_4,10_0_0 +9117,1,70.0,165.0,5,111,240.0,0.0,0.0,0,22,0.0,0.0,409.2481304092947,240.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,15.0,2,,3,109127,2,1,0,1,1,325.0,143.0,388.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1766.84566767412,240.0,11504.28756829637,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020861787274980365,11504.28756829637,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9118,2,57.0,0.0,7,111,342.0,,,0,56,0.0,66.2163638505112,,530.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,109128,1,1,0,0,2,,260.0,,32,2.0,2.0,5.0,2.0,1.5,2,2,68.73468729971734,342.0,10085.634099021105,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052549992870695256,6723.75606601407,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9119,2,50.0,0.0,9,300,1300.0,0.0,0.0,52,52,0.0,238.3789098618403,2216.7607063836795,1582.0,141.33010099044515,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,109129,2,1,1,0,1,,500.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,986.246458561968,1300.0,63907.94256932872,1,1,1,2,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02475435660104082,27786.061986664663,7,4,7,7_1,7_0,7_0_0 +9120,2,50.0,0.0,1,111,720.0,1500.0,0.0,52,47,0.0,0.0,1227.744391227884,2220.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,109130,2,1,2,0,1,,765.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,824.230956294362,720.0,88568.49119257803,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025065347395079415,35427.396477031216,9,5,9,9_1,9_4,9_1_0 +9121,1,36.0,118.0,9,111,541.5,926.25,0.0,56,34,0.0,0.0,923.3660942359711,1468.0,0.0,1758.4893744042295,20,0,0,0,0,0,0,0,0,4,45.0,1,2007.0,6,109131,2,1,1,0,1,,542.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,331.117936581591,541.5,32026.17442863703,1,1,1,2,89.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.045837507169989994,13344.23934526543,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +9123,2,31.0,0.0,1,111,800.0,800.0,0.0,0,62,0.0,0.0,1364.160434697649,1600.0,0.0,1518.8032383518312,50,1,2,2,1,1,2,2,2,0,,2,,1,109133,1,2,0,1,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2134.64101209609,800.0,17744.17454220569,0,4,2,3,37.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.09017043853994416,17744.17454220569,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +9124,2,71.0,0.0,5,112,609.0,0.0,0.0,78,78,1868.8980120368578,0.0,1038.4671309135852,2509.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109134,2,2,2,0,1,,140.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,816.82981762217,609.0,22355.692273332475,5,5,0,1,160.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1122309239778238,14903.794848888318,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9125,1,96.0,240.0,5,111,360.0,120.0,0.0,0,86,0.0,0.0,613.872195613942,480.0,0.0,227.8204857527747,70,2,2,1,2,2,2,2,1,0,,2,,3,109135,2,1,0,0,1,,211.0,350.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1176.62038038895,360.0,18409.093725722556,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02607407008468365,18409.093725722556,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +9126,2,78.0,0.0,2,111,610.0,,,77,71,0.0,66.2163638505112,,826.0,230.0078114158225,,71,0,0,0,0,0,0,0,0,0,,1,,2,109136,2,1,0,0,2,,108.0,,41,2.0,5.0,5.0,4.0,2.5,4,4,76.13350630441292,610.0,21740.517731621178,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03799357541511527,8696.20709264847,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +9127,1,32.0,150.0,2,111,400.0,0.0,0.0,85,62,0.0,0.0,682.0802173488245,500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109137,2,1,0,1,1,,0.0,350.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1646.71044040256,400.0,24421.026668823324,6,1,2,3,50.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02047415969772951,10175.427778676385,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +9128,2,61.0,0.0,6,111,356.0,1225.0,0.0,78,77,0.0,0.0,607.0513934404538,1581.0,0.0,2325.6674587262414,50,0,0,0,0,0,0,0,0,0,,1,,4,109138,2,1,2,0,1,,314.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1256.1230856684,356.0,38674.553025258356,5,5,0,1,140.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04087959333279039,25783.03535017224,7,4,7,7_1,7_2,7_0_0 +9129,2,72.0,0.0,1,221,422.0,1853.0,0.0,78,78,0.0,0.0,719.5946293030098,2275.0,0.0,3517.928000832429,71,0,0,0,0,0,0,0,0,0,,1,,1,109139,2,2,2,0,1,,283.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2353.2141666692,422.0,24015.804485900913,5,5,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09472928551427859,16010.536323933942,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +9130,2,75.0,0.0,1,111,208.0,1252.0,0.0,62,78,0.0,0.0,354.6817130213887,1460.0,0.0,2376.927068020616,71,0,0,0,0,0,0,0,0,0,,1,,1,109140,2,1,2,0,1,,263.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,571.586778804126,208.0,21525.960449967562,4,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06782508048332868,14350.640299978375,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +9131,2,45.0,0.0,9,120,599.0,0.0,0.0,46,46,1792.9608467622227,198.6490915515336,1021.4151254798646,2449.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,2007.0,6,109141,2,1,1,0,1,,530.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,916.581426708276,599.0,71204.0413646168,4,1,1,2,145.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03439411518033545,35602.0206823084,9,5,9,9_1,9_0,9_0_0 +9132,2,64.0,0.0,1,111,250.0,1100.0,0.0,0,75,0.0,0.0,426.3001358430153,1380.0,41.567676761895626,2088.354452733768,70,0,0,0,0,0,0,0,0,0,,1,,1,109142,1,2,3,0,2,,100.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,286.366893006624,250.0,16938.47887813361,0,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08147130624471147,16938.47887813361,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +9133,2,56.0,0.0,6,111,0.0,0.0,1620.0,21,63,0.0,0.0,1021.1156304718849,1620.0,0.0,1938.706079054783,41,1,2,2,2,1,2,2,2,3,75.0,1,,4,109143,2,1,3,0,1,,540.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,626.12686049364,0.0,42779.00766533609,1,1,1,2,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03786904111178552,28519.338443557393,8,4,8,8_1,8_4,8_0_0 +9134,1,44.0,152.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,520.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,109144,2,1,0,0,1,,135.0,420.0,12,1.0,2.0,2.0,1.0,1.0,1,1,642.633810584686,0.0,13464.03005358918,0,1,2,3,32.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0386214230011601,13464.03005358918,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +9135,2,64.0,0.0,5,111,600.0,0.0,0.0,77,78,0.0,0.0,1023.1203260232367,666.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,109145,2,2,0,1,1,1068.0,0.0,540.0,41,0.0,2.0,4.0,2.0,1.5,2,2,291.38487147115,600.0,19465.897518503094,5,5,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034213680585081736,12977.265012335396,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +9136,2,90.0,0.0,2,111,250.0,275.0,0.0,0,77,0.0,0.0,426.3001358430153,525.0,0.0,522.088613183442,71,0,0,0,0,0,0,0,0,0,,2,,2,109146,2,2,0,1,1,744.0,0.0,497.0,11,0.0,2.0,4.0,1.0,1.0,1,1,472.26051244334,250.0,19669.305729875974,0,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026691333553403994,19669.305729875974,5,3,5,5_0,5_3,5_0_1 +9137,2,82.0,0.0,2,111,180.0,,,78,77,0.0,0.0,,432.0,349.1684847999233,,41,0,0,0,0,0,0,0,0,0,,1,,2,109147,2,2,0,0,2,,220.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,126.57557935853136,180.0,26812.0,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01611218857228107,17874.666666666668,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +9138,1,39.0,85.0,2,111,325.0,563.0,0.0,0,54,0.0,0.0,554.1901765959199,888.0,0.0,1068.8577789901012,30,2,1,2,2,1,2,2,2,3,90.0,2,,2,109148,2,1,0,0,1,400.0,0.0,360.0,32,1.0,0.0,3.0,3.0,1.6,1,1,705.830260127953,325.0,24430.0657267269,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.036348653742200664,15268.791079204313,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +9139,1,35.0,351.0,2,211,0.0,0.0,1100.0,0,85,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,71,0,0,0,0,0,0,0,0,0,,2,,2,109149,2,1,0,0,1,,200.0,316.0,31,0.0,0.0,4.0,3.0,1.6,1,1,1253.42798068271,0.0,9491.454373227949,0,6,2,3,80.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.11589372468593567,5932.158983267468,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9140,2,71.0,0.0,8,112,934.0,980.0,0.0,77,77,0.0,0.0,1592.6573075095052,1914.0,0.0,1860.5339669809932,60,0,0,0,0,0,0,0,0,0,,1,2001.0,6,109150,2,1,2,0,1,,710.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2062.78990402529,934.0,35024.330162225975,5,5,0,1,110.0,7,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05464772605599363,23349.553441483982,6,3,6,6_1,6_1,6_0_0 +9141,2,57.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,936.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,109151,2,1,0,1,1,,159.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1407.11900441134,0.0,36564.639861487245,0,1,1,2,80.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02559850181885338,36564.639861487245,9,5,9,9_0,9_3,9_0_1 +9142,2,71.0,0.0,9,111,3200.0,,,46,75,0.0,0.0,,3263.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109152,2,1,0,0,1,,170.0,,42,1.0,1.0,5.0,3.0,2.0,3,2,71.56634871919583,3200.0,34516.0,1,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09453586742380346,17258.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9143,2,73.0,0.0,8,112,544.0,1561.0,0.0,77,72,0.0,0.0,927.6290955944013,2105.0,0.0,2963.5648188340106,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,109153,2,1,1,0,1,,480.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1888.99607948624,544.0,69822.03989694822,5,5,0,1,100.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03014807363272131,46548.02659796548,10,5,10,10_1,10_1,10_0_0 +9144,2,78.0,0.0,7,111,480.0,,,0,77,0.0,0.0,,620.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,5,109154,2,1,0,0,2,,446.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,68.96611006404868,480.0,21008.986939154107,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02951118022947199,21008.986939154107,5,3,5,5_1,5_2,5_0_0 +9145,2,51.0,0.0,7,111,1232.0,0.0,0.0,0,37,0.0,0.0,2100.807069434379,1232.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,109155,2,1,0,0,1,,0.0,,32,2.0,1.0,5.0,4.0,2.5,4,3,916.031059314317,1232.0,112772.96507927877,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010924604129490706,45109.186031711506,10,5,10,10_0,10_4,10_0_0 +9146,2,88.0,0.0,2,111,150.0,233.0,0.0,0,77,0.0,0.0,255.78008150580916,383.0,0.0,442.3514431699708,71,0,0,0,0,0,0,0,0,0,,2,,2,109156,2,1,0,1,1,49.0,0.0,330.0,11,0.0,4.0,2.0,1.0,1.0,1,1,369.085836991667,150.0,19700.04744339924,0,5,2,3,38.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01944157754444034,19700.04744339924,5,3,5,5_0,5_3,5_0_1 +9147,2,72.0,0.0,8,111,700.0,920.0,0.0,0,78,0.0,0.0,1193.6403803604428,1620.0,0.0,1746.6237241046058,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,109157,2,1,0,0,1,,550.0,372.0,11,0.0,2.0,4.0,1.0,1.0,1,1,718.005614961464,700.0,15887.999226508087,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10196375118757156,15887.999226508087,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +9148,2,74.0,0.0,8,300,1510.0,0.0,0.0,72,75,0.0,0.0,2574.8528204918125,1510.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,109158,2,1,2,0,1,,392.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1576.7218986008,1510.0,31812.766943247916,5,5,0,1,126.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0474652205730407,21208.51129549861,5,3,5,5_1,5_1,5_0_0 +9149,2,62.0,0.0,1,400,2088.0,0.0,0.0,0,77,0.0,0.0,3560.458734560864,2088.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109159,2,1,1,0,1,,1328.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,852.081426168232,2088.0,23177.64911608536,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09008678962832868,23177.64911608536,6,3,6,6_1,6_0,6_1_0 +9150,2,51.0,0.0,1,111,710.0,1200.0,0.0,47,47,0.0,0.0,1210.6923857941633,1910.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,109160,2,1,2,0,1,,1200.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,692.135892866296,710.0,40968.97474885908,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046620644321913145,16387.589899543633,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +9151,2,64.0,0.0,1,111,293.0,1523.0,0.0,75,75,0.0,0.0,499.62375920801395,1816.0,0.0,2891.4216650122985,10,0,0,0,0,0,0,0,0,0,,1,,1,109161,2,1,3,0,1,,219.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,390.939199099847,293.0,50449.8082419185,5,5,0,1,109.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035996172498651724,33633.20549461233,9,5,9,9_1,9_4,9_1_0 +9152,2,50.0,0.0,2,111,260.0,70.0,0.0,0,38,0.0,0.0,443.3521412767359,330.0,0.0,132.89528335578524,12,0,0,0,0,0,0,0,0,3,45.0,2,,2,109162,2,3,0,1,1,663.0,0.0,698.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1262.13113127637,260.0,58152.32921694095,0,1,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005674751199885977,58152.32921694095,10,5,10,10_0,10_4,10_0_1 +9153,1,43.0,110.0,5,111,480.0,0.0,0.0,0,56,0.0,0.0,818.4962608185893,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,109163,2,1,0,0,1,,53.0,280.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1927.11089982474,480.0,12942.800208294377,0,4,3,4,14.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.037086255854617355,12942.800208294377,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9154,2,78.0,0.0,6,111,760.0,,,72,77,0.0,0.0,,880.0,166.2707070475825,,42,0,0,0,0,0,0,0,0,0,,2,,4,109164,2,1,0,0,2,,800.0,407.0,41,0.0,1.0,3.0,2.0,1.5,2,2,163.04456025203893,760.0,35776.7037749349,5,5,2,3,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024597011662559218,23851.135849956598,6,3,6,6_0,6_2,6_0_0 +9155,1,38.0,384.0,2,111,850.0,1000.0,0.0,85,55,0.0,0.0,1449.420461866252,2402.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,2,,2,109165,2,2,0,1,1,600.0,0.0,404.0,42,1.0,0.0,2.0,6.0,2.8999999999999995,3,2,289.808475711292,850.0,11574.247706422018,6,4,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.20752968667391147,3991.119898766214,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +9156,2,81.0,0.0,1,112,725.0,0.0,0.0,0,43,0.0,0.0,1236.2703939447445,725.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,109166,2,2,1,0,1,,190.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1623.83711110048,725.0,24776.12153159727,0,4,0,1,65.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02926204567875562,24776.12153159727,7,4,7,7_1,7_0,7_1_0 +9157,1,29.0,173.0,5,111,246.0,219.0,0.0,85,53,0.0,0.0,419.479333669527,465.0,0.0,415.7723864988138,43,0,0,0,0,0,0,0,0,2,25.0,2,,3,109167,2,1,0,1,1,572.0,0.0,388.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,393.077251600228,246.0,35973.792924642854,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012926076518371922,13323.627009126983,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +9158,2,44.0,0.0,5,111,510.0,,,0,46,0.0,0.0,,510.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,109168,2,2,0,0,2,,659.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,113.1149230042783,510.0,51300.696793146344,0,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009941385436856968,39462.07445626642,9,5,9,9_0,9_2,9_0_0 +9159,1,39.0,244.0,2,111,930.0,630.0,0.0,0,52,0.0,0.0,1585.836505336017,1560.0,0.0,1196.057550202067,71,2,2,2,1,2,2,2,2,2,20.0,1,,2,109169,1,2,2,0,1,,590.0,426.0,32,1.0,0.0,5.0,4.0,2.1,2,1,213.105234543385,930.0,30091.54912262927,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.051841797630380486,14329.309106013938,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +9160,1,40.0,200.0,1,111,225.0,450.0,0.0,0,35,0.0,66.2163638505112,383.6701222587138,725.0,0.0,854.326821572905,31,2,2,2,1,1,2,2,2,0,,2,,1,109170,1,2,0,0,2,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,1,1,984.599356844257,225.0,5351.0,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.13548869370211175,5351.0,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +9161,1,17.0,380.0,6,111,480.0,,,63,85,0.0,0.0,,600.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,4,109171,1,3,0,0,2,,840.0,500.0,42,1.0,0.0,3.0,3.0,1.8,2,1,84.8426824595595,480.0,8953.545725608205,4,6,2,3,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06701255774948786,4974.192069782336,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9162,2,32.0,0.0,1,111,600.0,0.0,0.0,55,38,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,2,2,2,1,1,2,2,2,2,10.0,2,,1,109172,2,3,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,2.0,1.5,2,2,967.846892256479,600.0,34694.345340755564,1,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.017293884467541112,23129.56356050371,6,3,6,6_0,6_4,6_1_0 +9164,2,58.0,0.0,1,400,700.0,0.0,0.0,22,46,0.0,728.3800023556231,1193.6403803604428,1250.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,1.0,1,,1,109174,2,3,1,0,1,,400.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,1313.27833374362,700.0,33968.74247161387,1,1,1,2,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0367985362144203,16984.371235806935,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9165,2,54.0,0.0,6,111,468.0,,,56,67,0.0,0.0,,583.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,1,,4,109175,1,1,0,0,2,,420.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,106.41147828229735,468.0,16610.974637297604,4,4,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035097278319295946,8305.487318648802,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +9167,2,61.0,0.0,2,111,340.0,0.0,0.0,0,37,0.0,0.0,579.7681847465008,340.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,,2,109177,2,1,1,0,1,,734.0,,32,1.0,2.0,7.0,3.0,2.0,3,2,1373.47151345662,340.0,131467.54928097004,0,1,1,2,237.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0025861895339157667,65733.77464048502,10,5,10,10_1,10_3,10_0_1 +9168,2,46.0,0.0,9,111,576.0,980.0,0.0,56,43,0.0,0.0,982.1955129823073,1556.0,0.0,1860.5339669809932,33,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,109178,2,1,1,0,1,,420.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1074.3222182751,576.0,130476.18366022033,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011925548068236414,62131.51602867634,10,5,10,10_1,10_4,10_0_0 +9169,2,32.0,0.0,2,111,0.0,0.0,0.0,38,38,0.0,0.0,0.0,314.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,109179,2,2,3,0,1,,926.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,483.820666739494,0.0,29584.14737959789,1,1,1,2,165.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010613792446712315,12326.728074832454,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +9170,2,66.0,0.0,5,111,1600.0,0.0,0.0,0,75,0.0,331.081819252556,2728.320869395298,1920.0,96.99124577775646,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,109180,2,1,1,0,1,,300.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2389.22909123924,1600.0,21960.99965242207,0,5,0,1,100.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0874277141472585,21960.99965242207,6,3,6,6_1,6_2,6_0_0 +9171,2,67.0,0.0,2,112,1800.0,0.0,0.0,74,75,0.0,794.5963662061343,3069.36097806971,2460.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,109181,2,1,2,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1236.42958558521,1800.0,73952.71881707852,5,5,0,1,130.0,4,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03326449709151047,49301.81254471902,10,5,10,10_1,10_0,10_0_1 +9172,2,29.0,0.0,6,111,1433.0,0.0,0.0,54,47,0.0,0.0,2443.5523786521635,1433.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,2,,4,109182,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,714.165201039281,1433.0,56201.071627525846,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025497734447080422,31222.817570847692,8,4,8,8_0,8_4,8_0_0 +9173,2,88.0,0.0,2,111,745.0,0.0,0.0,0,86,2425.7705573841836,0.0,1270.3744048121855,3045.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,109183,2,1,2,0,1,,563.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1320.72635230435,745.0,43892.67733896697,0,6,0,1,85.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06937375855395166,43892.67733896697,10,5,10,10_1,10_3,10_0_1 +9174,2,26.0,0.0,2,111,0.0,0.0,0.0,54,33,0.0,0.0,0.0,2104.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,2,,2,109184,1,2,0,0,1,,629.0,762.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1858.8862925652,0.0,40683.55008700176,4,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05171623409217231,27122.366724667838,7,4,7,7_0,7_3,7_0_1 +9175,2,47.0,0.0,9,120,500.0,0.0,0.0,0,46,0.0,198.6490915515336,852.6002716860306,650.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,109185,2,1,1,0,1,,349.0,,12,1.0,1.0,7.0,1.0,1.0,1,1,1091.13178879209,500.0,31993.47056836915,0,1,0,1,116.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020316645504618456,31993.47056836915,8,4,8,8_1,8_1,8_0_0 +9176,2,54.0,0.0,5,112,840.0,0.0,0.0,63,42,1476.555991451242,0.0,1432.3684564325313,2240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,109186,2,1,2,0,1,,180.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1517.50289988855,840.0,51162.638460620685,4,1,0,1,90.0,7,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04378194845686278,34108.42564041379,9,5,9,9_1,9_0,9_0_0 +9177,2,54.0,0.0,7,112,550.0,0.0,0.0,0,54,0.0,0.0,937.8602988546337,550.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,35.0,8,,5,109187,2,2,0,0,1,,255.0,272.0,12,1.0,0.0,2.0,1.0,1.0,1,1,880.353480067684,550.0,22356.6537686987,0,1,2,3,49.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024601177156934318,22356.6537686987,6,3,6,6_0,6_0,6_0_0 +9178,2,62.0,0.0,6,111,415.0,1315.0,0.0,78,77,0.0,0.0,707.6582254994054,1730.0,0.0,2496.5328230408227,70,0,0,0,0,0,0,0,0,0,,1,,4,109188,2,1,2,0,1,,360.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,1957.15718870533,415.0,84903.74275262143,5,5,0,1,144.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02037601575516629,42451.871376310715,9,5,9,9_1,9_2,9_0_0 +9179,2,82.0,0.0,1,111,190.0,821.0,0.0,0,77,0.0,0.0,323.9881032406916,1011.0,0.0,1558.6718233585668,71,1,1,2,2,1,2,2,2,0,,2,,1,109189,1,3,0,0,2,,124.0,332.0,11,0.0,1.0,3.0,1.0,1.0,1,1,3477.63974305133,190.0,12553.246904881216,0,5,2,3,60.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.08053693260879637,12553.246904881216,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +9180,2,64.0,0.0,1,111,990.0,1500.0,0.0,54,78,0.0,132.4327277010224,1688.1485379383405,2590.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,109190,2,1,2,0,1,,324.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,1992.5438654023,990.0,63040.768976835156,1,5,0,1,125.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041084524221963674,31520.384488417578,8,4,8,8_1,8_2,8_1_0 +9181,2,55.0,0.0,5,111,750.0,2500.0,0.0,43,35,0.0,0.0,1278.9004075290459,3250.0,0.0,4746.260119849472,42,0,0,0,0,0,0,0,0,2,15.0,1,,3,109191,2,1,2,0,1,,850.0,,43,2.0,0.0,9.0,4.0,2.5,4,4,597.871654718184,750.0,211147.177175389,1,1,0,1,220.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015392107266015656,84458.8708701556,10,5,10,10_1,10_4,10_0_0 +9182,2,40.0,0.0,8,111,1300.0,0.0,0.0,56,53,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,109192,1,1,1,0,1,,440.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,547.299796729253,1300.0,38223.05334389664,1,1,1,2,75.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03401088835849323,15926.2722266236,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +9183,1,67.0,333.0,5,111,480.0,500.0,0.0,85,78,0.0,0.0,818.4962608185893,980.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,3,109193,2,2,0,1,1,1080.0,0.0,479.0,41,3.0,2.0,5.0,6.0,3.5,6,5,275.467461303229,480.0,21841.47720119932,6,5,2,3,94.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044868760064735363,6240.42205748552,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9184,2,47.0,0.0,1,111,575.0,1300.0,0.0,67,37,0.0,0.0,980.4903124389351,1875.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,3,45.0,1,,1,109194,2,3,3,0,1,,550.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,651.078250559797,575.0,56017.719945123354,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03347155153470735,26675.104735773024,7,4,7,7_1,7_4,7_1_0 +9185,1,34.0,599.0,9,120,400.0,,,0,85,0.0,0.0,,658.0,357.4820201523024,,71,2,2,1,2,1,2,2,2,0,,1,2010.0,6,109195,2,3,0,0,1,,400.0,580.0,31,0.0,0.0,5.0,7.0,3.1999999999999993,3,2,151.95844342482482,400.0,34727.0,0,6,2,3,74.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.01894779278371296,10852.187500000002,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +9186,2,70.0,0.0,9,111,500.0,0.0,0.0,0,75,0.0,0.0,852.6002716860306,545.0,62.351515142843446,0.0,10,2,2,2,2,1,2,2,1,0,,2,2005.0,6,109196,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,878.038331713482,500.0,35256.44836021965,0,5,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.015458165111575198,35256.44836021965,9,5,9,9_0,9_4,9_0_0 +9187,2,45.0,0.0,5,111,550.0,1360.0,0.0,46,38,0.0,264.8654554020448,937.8602988546337,2110.0,0.0,2581.965505198113,50,0,0,0,0,0,0,0,0,0,,1,,3,109197,1,3,2,0,1,,552.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,548.137022616965,550.0,64468.573250612666,1,1,0,1,129.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032729125116476,24795.60509638949,7,4,7,7_1,7_4,7_0_0 +9188,2,67.0,0.0,1,112,1979.0,0.0,0.0,75,75,0.0,2052.707279365847,3374.591875333309,3599.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,109198,2,2,1,0,1,,126.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,2422.41340233951,1979.0,50461.98611238594,5,5,0,1,270.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07132101364350822,33641.324074923956,9,5,9,9_1,9_0,9_1_0 +9189,1,36.0,419.0,9,111,0.0,0.0,1500.0,0,52,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,50,2,2,2,2,2,2,2,1,0,,2,2009.0,6,109199,1,1,0,0,1,,513.0,470.0,32,1.0,0.0,4.0,4.0,2.1,2,1,126.660881393477,0.0,19911.239911026314,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.0753343341099185,9481.542814774435,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9190,2,77.0,0.0,5,111,600.0,0.0,0.0,77,75,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,109200,2,1,0,1,1,69.0,670.0,598.0,41,0.0,3.0,7.0,2.0,1.5,2,2,339.49144242737,600.0,35851.64669126538,5,5,2,3,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016735632958978685,23901.09779417692,6,3,6,6_0,6_3,6_0_0 +9191,0,70.0,0.0,8,111,403.0,,,0,86,0.0,0.0,,571.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,109201,2,2,0,0,2,,180.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,106.04872920959623,403.0,12890.836073410972,0,7,5,0,48.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04429503228093652,12890.836073410972,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9192,2,55.0,0.0,7,111,0.0,,,34,34,0.0,0.0,,1401.0,0.0,,20,0,0,0,0,0,0,0,0,2,40.0,1,,5,109202,2,1,0,0,2,,480.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,107.57126398880396,0.0,97132.29924126278,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014423626445000708,48566.14962063139,10,5,10,10_1,10_2,10_0_0 +9193,2,67.0,0.0,5,120,263.0,0.0,0.0,0,78,2636.7071275915036,397.2981831030672,448.4677429068521,3123.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,109203,1,1,3,0,1,,188.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,176.624922014796,263.0,15121.399928297104,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2065284970180467,15121.399928297104,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9194,2,57.0,0.0,1,111,448.0,1914.0,0.0,74,33,0.0,0.0,763.9298434306834,2362.0,0.0,3633.7367477567564,30,0,0,0,0,0,0,0,0,1,25.0,1,,1,109204,1,2,3,0,1,,364.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1428.92297749805,448.0,99583.96525691162,5,1,1,2,150.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023718677940835115,66389.31017127441,10,5,10,10_1,10_3,10_1_0 +9195,2,65.0,0.0,5,111,360.0,,,77,77,0.0,0.0,,423.0,87.29212119998083,,60,0,0,0,0,0,0,0,0,0,,1,,3,109205,2,2,0,0,2,,135.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,121.88017685543369,360.0,58913.11719757864,5,5,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007180064816149051,39275.41146505243,9,5,9,9_1,9_2,9_0_0 +9196,2,49.0,0.0,9,120,550.0,0.0,0.0,55,43,0.0,397.2981831030672,937.8602988546337,1450.0,831.3535352379125,0.0,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109206,2,1,1,0,1,,475.0,,43,4.0,0.0,5.0,4.0,2.5,4,3,1266.83187268071,550.0,93414.6365573755,1,1,1,2,109.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015522192810860067,37365.8546229502,9,5,9,9_1,9_0,9_0_0 +9197,2,42.0,0.0,8,221,800.0,1340.0,0.0,90,34,0.0,0.0,1364.160434697649,2140.0,0.0,2543.9954242393173,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,109207,2,1,1,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,495.523391349911,800.0,33175.45832609651,4,1,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06450551425589895,15797.837298141194,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9198,1,47.0,60.0,2,111,516.0,420.0,0.0,0,63,0.0,0.0,879.8834803799836,936.0,0.0,797.3717001347114,50,0,0,0,0,0,0,0,0,2,10.0,2,2011.0,2,109208,2,1,0,0,1,,172.0,481.0,12,1.0,2.0,3.0,1.0,1.0,1,1,446.078368399112,516.0,23320.021935162928,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0401371835156235,23320.021935162928,6,3,6,6_0,6_4,6_0_1 +9199,1,48.0,100.0,5,111,400.0,,,0,54,0.0,0.0,,600.0,277.1178450793042,,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,109209,2,2,0,0,2,,300.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,43.701699670374715,400.0,24405.35549336433,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024584767886832722,24405.35549336433,7,4,7,7_1,7_2,7_0_0 +9200,2,45.0,0.0,1,111,1200.0,0.0,0.0,56,68,0.0,0.0,2046.2406520464733,1279.0,0.0,0.0,71,2,2,2,2,1,2,2,2,4,15.0,2,,1,109210,1,3,0,1,2,,300.0,420.0,43,2.0,0.0,1.0,2.0,1.5,2,2,989.391600053168,1200.0,29750.9026149122,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.042990292313313555,19833.935076608133,5,3,5,5_0,5_4,5_1_0 +9201,2,43.0,0.0,9,120,1300.0,0.0,0.0,85,48,0.0,662.163638505112,2216.7607063836795,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,109211,2,1,1,0,1,,300.0,,42,2.0,0.0,7.0,6.0,2.8999999999999995,3,3,2151.3938980878,1300.0,27859.0,7,1,1,2,119.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06461107721023726,9606.551724137933,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +9202,2,45.0,0.0,1,112,813.0,0.0,0.0,55,46,2984.752468433582,0.0,1386.3280417614858,3767.0,171.8130639491686,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,109212,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,704.453322586184,813.0,51084.5849586707,1,1,0,1,250.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07374044446182035,20433.833983468277,5,3,5,5_1,5_0,5_1_0 +9203,2,56.0,0.0,2,111,342.0,516.0,0.0,55,53,0.0,0.0,583.1785858332449,858.0,0.0,979.6280887369311,44,0,0,0,0,0,0,0,0,2,10.0,8,,2,109213,2,1,0,1,1,593.0,0.0,317.0,43,2.0,0.0,3.0,5.0,2.4,2,2,382.016331423097,342.0,39413.95137837891,1,1,2,3,65.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021768941453321738,16422.479740991213,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +9204,2,75.0,0.0,1,111,336.0,120.0,0.0,86,78,0.0,0.0,572.9473825730125,456.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,1,109214,2,2,0,1,1,720.0,0.0,247.0,41,0.0,1.0,4.0,2.0,1.5,2,2,704.459958399319,336.0,18647.170733093393,5,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024454111914722295,12431.447155395595,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +9205,2,77.0,0.0,2,111,410.0,1200.0,0.0,0,86,0.0,0.0,699.1322227825451,1610.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,109215,2,1,1,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,272.738687123383,410.0,15135.34216400762,0,6,0,1,128.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10637354494889696,15135.34216400762,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +9206,2,56.0,0.0,2,300,800.0,0.0,0.0,67,62,0.0,0.0,1364.160434697649,860.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,109216,2,1,1,0,1,,420.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,1185.59932061185,800.0,39407.27301746143,4,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021823382694329863,15762.909206984574,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +9207,1,39.0,28.0,2,111,260.0,120.0,0.0,0,62,0.0,0.0,443.3521412767359,380.0,0.0,227.8204857527747,43,2,1,2,2,1,2,2,2,2,20.0,2,,2,109217,2,1,0,1,1,512.0,0.0,406.0,32,1.0,0.0,3.0,2.0,1.3,1,1,209.663361429173,260.0,23155.228942684924,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.016410980039998593,17811.714571296096,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +9208,2,63.0,0.0,2,111,300.0,1500.0,0.0,85,64,0.0,0.0,511.56016301161833,1800.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,109218,2,2,0,0,1,,600.0,675.0,42,2.0,3.0,5.0,4.0,2.5,4,4,1047.24786034996,300.0,34383.485806095196,6,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.052350713076360404,13753.394322438078,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +9209,1,43.0,377.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,354.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,109219,1,3,0,1,1,1045.0,362.0,530.0,42,1.0,0.0,3.0,3.0,1.8,2,2,2070.25932365463,0.0,17248.769117036187,7,1,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02052320357458799,9582.649509464549,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9210,2,39.0,0.0,8,400,40.0,0.0,0.0,42,21,0.0,0.0,68.20802173488245,150.0,152.4148147936173,0.0,12,0,0,0,0,0,0,0,0,0,,1,1999.0,6,109220,2,3,2,0,1,,277.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,734.39795695617,40.0,30355.98921988194,1,1,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.004941364253145672,20237.32614658796,5,3,5,5_1,5_0,5_0_0 +9211,2,87.0,0.0,1,111,240.0,160.0,0.0,0,72,0.0,0.0,409.2481304092947,400.0,0.0,303.7606476703662,70,0,0,0,0,0,0,0,0,0,,2,,1,109221,2,2,0,0,2,,70.0,263.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1104.4525029298,240.0,15057.561382611388,0,5,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02656472650756873,15057.561382611388,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +9212,0,56.0,0.0,1,120,1000.0,0.0,0.0,0,69,1582.0242765549024,0.0,1705.2005433720612,2563.0,87.29212119998083,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,109222,2,3,4,0,1,,150.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,2186.35087865234,1000.0,18974.804150243766,0,1,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.135073857927913,18974.804150243766,5,3,5,5_1,5_0,5_1_0 +9213,2,85.0,0.0,2,111,170.0,,,0,86,0.0,0.0,,330.0,221.69427606344334,,70,0,0,0,0,0,0,0,0,0,,1,,2,109223,2,1,0,0,2,,160.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,104.660377662021,170.0,12315.14181398427,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02679628095108686,12315.14181398427,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +9214,1,29.0,162.0,2,111,0.0,0.0,960.0,0,67,0.0,0.0,605.105558798154,960.0,0.0,1148.8628616620936,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,109224,1,3,0,0,2,,0.0,228.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2058.93746687674,0.0,9490.449029527976,0,1,2,3,30.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10115432863219827,9490.449029527976,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9215,2,60.0,0.0,5,111,220.0,0.0,0.0,0,54,0.0,0.0,375.14411954185346,220.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,2,,3,109225,1,3,0,1,1,,0.0,350.0,12,1.0,2.0,3.0,1.0,1.0,1,1,416.874284962139,220.0,26720.065248056497,0,1,2,3,80.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.008233512828566235,26720.065248056497,7,4,7,7_0,7_3,7_0_0 +9216,2,57.0,0.0,8,111,0.0,0.0,350.0,0,54,0.0,0.0,220.61140164516033,350.0,0.0,418.8562516476383,50,0,0,0,0,0,0,0,0,2,10.0,2,1999.0,6,109226,2,1,0,1,1,693.0,100.0,528.0,32,2.0,3.0,4.0,2.0,1.5,2,2,1500.27435915294,0.0,34055.23065070045,0,1,2,3,84.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010277422684048132,22703.487100466966,6,3,6,6_0,6_2,6_0_0 +9217,2,67.0,0.0,2,111,1320.0,,,0,77,0.0,0.0,,1484.0,227.23663296502943,,50,0,0,0,0,0,0,0,0,0,,1,,2,109227,2,2,0,0,2,,960.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,62.242423239826316,1320.0,40849.74976943468,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03632825190793175,40849.74976943468,9,5,9,9_1,9_2,9_0_1 +9218,2,25.0,0.0,6,111,330.0,0.0,0.0,21,46,0.0,13.243272770102239,562.7161793127802,340.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,109228,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,466.85810179773,330.0,32636.02653105648,1,1,1,2,92.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010417934906274684,21757.35102070432,6,3,6,6_0,6_3,6_0_0 +9219,2,55.0,0.0,7,112,1800.0,0.0,0.0,43,37,0.0,662.163638505112,3069.36097806971,2550.0,346.39730634913025,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,109229,1,2,2,0,1,,300.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,588.527097305839,1800.0,78486.40985554307,1,1,0,1,129.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032489701143081494,39243.204927771534,9,5,9,9_1,9_1,9_0_0 +9220,2,44.0,0.0,7,111,504.0,,,0,42,0.0,0.0,,548.0,60.965925917446924,,30,0,0,0,0,0,0,0,0,2,20.0,1,,5,109230,2,2,0,0,1,,192.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,115.31479906339841,504.0,48796.88471552337,0,1,1,2,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011230225109548214,37536.06516578721,9,5,9,9_1,9_2,9_0_0 +9221,1,33.0,271.0,2,111,0.0,0.0,550.0,0,63,0.0,0.0,346.6750597281091,550.0,0.0,658.2026811605745,50,0,0,0,0,0,0,0,0,0,,2,,2,109231,2,1,0,0,1,,150.0,308.0,12,1.0,0.0,2.0,1.0,1.0,1,1,271.023046733175,0.0,6065.990556644509,0,4,2,3,47.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09066944547045924,6065.990556644509,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9222,2,32.0,0.0,7,111,0.0,,,81,54,0.0,0.0,,572.0,0.0,,31,0,0,0,0,0,0,0,0,1,25.0,3,,5,109232,2,1,0,0,2,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,68.61463820518577,0.0,26022.0,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021981400353547,17348.0,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +9223,2,49.0,0.0,1,111,400.0,800.0,0.0,22,43,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,33,0,0,0,0,0,0,0,0,0,,2,,1,109233,1,3,0,0,2,,665.0,,43,2.0,2.0,3.0,3.0,1.8,2,2,1911.0311894315,400.0,88031.68229914334,1,1,1,2,63.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.013631455956075457,48906.49016619074,10,5,10,10_0,10_3,10_1_0 +9224,2,46.0,0.0,2,222,305.4,0.0,0.0,46,21,1961.7101029280789,66.2163638505112,520.7682459458274,2290.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109234,2,1,1,0,1,,242.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1337.42493976708,305.4,32493.258373058467,1,1,0,1,120.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07047615766040674,14127.503640460203,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +9225,2,40.0,0.0,1,111,325.0,808.0,0.0,47,38,0.0,0.0,554.1901765959199,1133.0,0.0,1533.9912707353494,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,109235,1,2,1,0,1,,339.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,379.706574395493,325.0,61631.590743826375,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01838342944463903,41087.72716255092,9,5,9,9_1,9_3,9_1_0 +9226,2,50.0,0.0,7,211,350.0,,,0,52,0.0,0.0,,476.0,174.58424239996165,,60,0,0,0,0,0,0,0,0,0,,1,,5,109236,2,3,0,0,1,,280.0,,32,2.0,1.0,5.0,4.0,2.3,3,3,93.86764860077558,350.0,9420.532476982644,0,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050527929409831064,4095.8836856446283,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9227,2,48.0,0.0,7,111,530.0,2100.0,0.0,42,46,0.0,397.2981831030672,903.7562879871924,2930.0,0.0,3986.858500673557,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,109237,2,1,3,0,1,,360.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,1523.36644124721,530.0,89323.76562399724,1,1,0,1,150.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03280202059923951,44661.88281199862,10,5,10,10_1,10_3,10_0_0 +9228,2,48.0,0.0,2,111,1047.0,0.0,0.0,52,62,2531.2388424878436,0.0,1785.344968910548,3597.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,13.0,1,,2,109238,2,1,2,0,1,,315.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1475.17200813745,1047.0,47479.69555176186,1,1,0,1,120.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07575869975995504,23739.84777588093,6,3,6,6_1,6_2,6_0_1 +9229,1,41.0,214.0,1,111,0.0,0.0,0.0,67,67,0.0,0.0,0.0,1396.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,109239,1,2,5,0,1,,362.0,523.0,43,3.0,0.0,5.0,5.0,2.8,4,3,316.307570033231,0.0,33594.266152104356,4,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.041554710368708385,11997.952197180128,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +9230,2,70.0,0.0,2,111,465.0,72.0,0.0,0,75,0.0,0.0,792.9182526680084,537.0,0.0,136.6922914516648,33,0,0,0,0,0,0,0,0,0,,2,,2,109240,2,2,0,1,1,,30.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1851.36007446572,465.0,26723.533241520407,0,5,0,1,74.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020094648231831186,26723.533241520407,7,4,7,7_0,7_2,7_0_1 +9231,2,63.0,0.0,1,111,480.0,1000.0,0.0,77,11,0.0,0.0,818.4962608185893,1480.0,0.0,1898.504047939789,50,2,2,2,1,1,2,2,2,0,,1,,1,109241,2,2,1,0,1,,120.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,242.800806400668,480.0,54023.607388470475,5,1,1,2,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02739543084114476,36015.73825898032,9,5,9,9_1,9_2,9_1_0 +9232,2,94.0,0.0,1,111,420.0,,,0,86,0.0,0.0,,604.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,1,109242,2,1,0,0,2,,360.0,,21,1.0,7.0,6.0,2.0,1.5,2,2,62.2230188396972,420.0,19030.138535916645,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03173912785028007,12686.75902394443,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +9233,1,50.0,310.0,1,111,430.0,1400.0,0.0,0,85,0.0,0.0,733.2362336499863,1830.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,1,,1,109243,1,2,4,0,1,,750.0,590.0,31,0.0,2.0,4.0,3.0,2.0,3,2,1480.29105390886,430.0,17698.556364437125,0,6,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10339826380851827,8849.278182218563,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +9234,1,50.0,307.0,2,111,480.0,0.0,0.0,0,55,0.0,0.0,818.4962608185893,480.0,0.0,0.0,41,2,1,2,1,2,2,2,2,0,,2,,2,109244,2,1,0,1,1,627.0,450.0,454.0,12,1.0,1.0,3.0,1.0,1.0,1,1,236.123016034446,480.0,4704.247304912236,0,4,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.1020354519837377,4704.247304912236,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +9235,1,65.0,108.0,2,111,300.0,650.0,0.0,0,77,0.0,0.0,511.56016301161833,950.0,0.0,1234.027631160863,70,0,0,0,0,0,0,0,0,0,,2,,2,109245,2,2,0,0,1,,200.0,311.0,11,0.0,2.0,3.0,1.0,1.0,1,1,345.844638323463,300.0,11871.768201679142,0,5,2,3,60.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08002177804192909,11871.768201679142,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +9236,2,66.0,0.0,5,111,420.0,1090.0,0.0,0,75,0.0,0.0,716.1842282162656,1510.0,0.0,2069.36941225437,41,0,0,0,0,0,0,0,0,0,,2,,3,109246,1,2,0,0,1,,0.0,500.0,21,0.0,3.0,2.0,2.0,1.5,2,2,1404.16866666413,420.0,35562.180229693084,0,5,2,3,47.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0424608387406801,23708.120153128722,6,3,6,6_0,6_3,6_0_0 +9237,2,77.0,0.0,1,111,260.0,0.0,0.0,0,75,0.0,0.0,443.3521412767359,260.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,109247,2,1,0,1,2,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,766.396323882913,260.0,52938.012584287935,0,5,0,1,154.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004911404627932109,52938.012584287935,10,5,10,10_0,10_4,10_1_0 +9238,2,45.0,0.0,8,111,500.0,984.0,0.0,62,55,0.0,556.2174563442941,852.6002716860306,1904.0,0.0,1868.1279831727525,42,0,0,0,0,0,0,0,0,3,60.0,1,2000.0,6,109248,2,1,2,0,1,,585.0,,43,2.0,0.0,6.0,5.0,3.0,5,4,456.499776196013,500.0,62111.546368373434,1,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03065452578990204,20703.84878945781,5,3,5,5_1,5_4,5_0_0 +9239,2,66.0,0.0,8,112,1100.0,0.0,0.0,77,78,0.0,0.0,1875.7205977092674,1230.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,1999.0,6,109249,2,1,2,0,1,,517.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,893.894552707584,1100.0,30270.763895313812,5,5,1,2,72.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040633265954362494,20180.509263542543,5,3,5,5_1,5_1,5_0_0 +9240,2,72.0,0.0,6,111,1800.0,0.0,0.0,0,86,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,109250,1,1,1,0,1,,320.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,349.14225336195,1800.0,10855.976978158878,0,6,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1658072786651461,10855.976978158878,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9241,2,53.0,0.0,1,111,1000.0,1000.0,0.0,75,37,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,109251,1,1,1,0,1,,400.0,,42,1.0,2.0,5.0,3.0,2.0,3,3,426.606475847547,1000.0,97969.62283624936,5,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020414491166745492,48984.81141812468,10,5,10,10_1,10_4,10_1_0 +9242,2,44.0,0.0,7,120,0.0,,,54,63,0.0,0.0,,234.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,109252,2,1,0,0,2,,326.0,800.0,43,2.0,0.0,4.0,3.0,2.0,3,2,159.78786834340895,0.0,61560.661511783204,1,1,2,3,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003801128744453315,30780.330755891602,8,4,8,8_1,8_2,8_0_0 +9243,2,53.0,0.0,1,111,300.0,1800.0,0.0,22,22,0.0,0.0,511.56016301161833,2100.0,0.0,3417.30728629162,60,0,0,0,0,0,0,0,0,2,30.0,2,,1,109253,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,784.624811308774,300.0,15303.440146906072,1,1,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1372240476547073,6653.669629089597,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +9244,2,66.0,0.0,2,111,355.0,1320.0,0.0,42,31,0.0,0.0,605.3461928970817,1675.0,0.0,2506.0253432805216,12,0,0,0,0,0,0,0,0,2,30.0,2,,2,109254,2,2,0,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1423.74784796764,355.0,100951.25037495233,1,1,0,1,119.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016592166949678466,67300.83358330156,10,5,10,10_0,10_2,10_0_1 +9245,2,90.0,0.0,5,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,488.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,109255,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1268.1288710632,0.0,17559.862361555366,0,5,0,1,55.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027790650629950345,17559.862361555366,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +9246,2,28.0,0.0,1,111,518.0,0.0,0.0,0,46,0.0,0.0,883.2938814667277,518.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,2,,1,109256,2,1,0,0,1,,100.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,353.467486238448,518.0,32470.82437251225,0,1,1,2,30.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01595278253663637,32470.82437251225,8,4,8,8_0,8_3,8_1_0 +9247,2,65.0,0.0,6,300,1416.0,0.0,0.0,0,77,0.0,0.0,2414.5639694148385,1456.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,109257,2,1,2,0,1,,160.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,3101.69872227203,1416.0,50074.37122282947,0,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029076750530143317,33382.914148552976,8,4,8,8_1,8_0,8_0_0 +9248,2,62.0,0.0,7,111,332.0,1257.0,0.0,0,34,0.0,0.0,566.1265803995243,1589.0,0.0,2386.419588260315,10,0,0,0,0,0,0,0,0,2,10.0,2,,5,109258,2,1,0,0,1,,178.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,2084.1004165987,332.0,95176.56694018006,0,1,1,2,94.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016695285941535496,95176.56694018006,10,5,10,10_0,10_3,10_0_0 +9249,0,45.0,0.0,1,111,391.0,1211.0,0.0,0,31,0.0,0.0,666.7334124584759,1602.0,0.0,2299.0884020550843,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,109259,2,1,2,0,1,,533.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,682.828057910173,391.0,38952.47356834547,0,1,5,0,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041127041577710154,25968.315712230313,7,4,7,7_1,7_4,7_1_0 +9250,2,52.0,0.0,6,400,690.0,0.0,0.0,56,62,0.0,556.2174563442941,1176.5883749267223,1250.0,193.98249155551292,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,4,109260,2,2,3,0,2,,85.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1015.01516556139,690.0,23829.605116227463,4,1,0,1,45.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052455758033051754,15886.40341081831,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9251,2,44.0,0.0,6,111,130.0,,,0,22,0.0,0.0,,130.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,4,109261,2,2,0,0,2,,140.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,84.62790010779054,130.0,18319.5703125,0,1,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007096236308080711,18319.5703125,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +9252,2,87.0,0.0,1,111,256.0,1540.0,0.0,0,90,0.0,0.0,436.53133910324766,1796.0,0.0,2923.696233827275,71,0,0,0,0,0,0,0,0,0,,1,,1,109262,1,2,3,0,2,,360.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1200.27969723104,256.0,11853.312088833834,0,5,0,1,85.0,6,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15151883174424172,11853.312088833834,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +9253,2,62.0,0.0,2,111,418.0,0.0,0.0,54,74,0.0,0.0,712.7738271295216,418.0,0.0,0.0,50,2,2,2,2,2,1,2,2,0,,2,,2,109263,1,2,0,1,2,600.0,0.0,823.0,42,1.0,4.0,2.0,2.0,1.5,2,2,901.927698055555,418.0,67496.46382725924,1,5,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.006192917025546245,44997.642551506164,10,5,10,10_0,10_4,10_0_1 +9254,2,71.0,0.0,5,111,0.0,,,74,74,0.0,0.0,,381.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,3,109264,2,1,0,0,2,,1046.0,,41,1.0,1.0,6.0,4.0,2.3,3,3,207.75734736681758,0.0,101432.31491431395,5,5,0,1,190.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003756199395841985,44101.00648448433,10,5,10,10_1,10_2,10_0_0 +9255,1,48.0,99.0,9,111,396.0,,,0,54,0.0,0.0,,516.0,166.2707070475825,,41,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,109265,2,1,0,0,2,,600.0,375.0,32,2.0,2.0,4.0,3.0,1.8,2,2,104.34832776922721,396.0,27930.52784175685,0,1,2,3,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018474409181360577,15516.959912087139,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +9256,2,62.0,0.0,5,111,200.0,,,85,78,0.0,198.6490915515336,,718.0,509.8968349459197,,71,0,0,0,0,0,0,0,0,0,,1,,3,109266,2,2,0,0,2,,300.0,,41,2.0,0.0,3.0,4.0,2.5,4,4,111.43442903302564,200.0,36820.47416494388,6,5,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019500020471860058,14728.189665977552,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9257,2,79.0,0.0,5,111,571.0,1941.0,0.0,74,74,0.0,0.0,973.6695102654469,2512.0,0.0,3684.9963570511304,20,0,0,0,0,0,0,0,0,0,,1,,3,109267,2,2,3,0,1,,274.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,714.616038516742,571.0,70899.06802641437,5,5,0,1,126.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0354306490892676,47266.04535094291,10,5,10,10_1,10_4,10_0_0 +9258,2,64.0,0.0,2,112,255.0,851.0,0.0,75,77,0.0,198.6490915515336,434.8261385598756,1256.0,0.0,1615.6269447967604,44,0,0,0,0,0,0,0,0,0,,1,,2,109268,2,1,1,0,2,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,815.472421946975,255.0,42117.811766238585,5,5,0,1,83.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029821112430318684,28078.54117749239,8,4,8,8_1,8_1,8_0_1 +9259,1,43.0,413.0,6,111,840.0,,,65,52,0.0,0.0,,990.0,207.83838380947813,,60,0,0,0,0,0,0,0,0,0,,2,,4,109269,2,2,0,0,2,,0.0,695.0,43,2.0,4.0,4.0,4.0,2.1,2,2,58.2349320378823,840.0,17540.21784832729,4,4,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05644171632078165,8352.484689679663,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9260,2,61.0,0.0,2,111,370.0,1080.0,0.0,85,75,0.0,0.0,630.9242010476627,1450.0,0.0,2050.384371774972,71,2,2,2,2,1,2,2,2,0,,1,,2,109270,1,3,3,0,2,,400.0,520.0,41,1.0,4.0,5.0,3.0,2.0,3,3,201.253020636079,370.0,30302.711247413503,6,5,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.047850503810076245,15151.355623706751,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +9261,2,62.0,0.0,1,111,1100.0,1400.0,0.0,35,21,0.0,0.0,1875.7205977092674,2500.0,0.0,2657.9056671157045,12,0,0,0,0,0,0,0,0,0,,2,,1,109271,2,2,0,0,2,,0.0,,41,0.0,4.0,10.0,2.0,1.5,2,2,615.218568755953,1100.0,16313.460146898851,6,5,0,1,175.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.15324768488647358,10875.640097932568,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +9262,2,70.0,0.0,6,111,300.0,,,0,78,0.0,0.0,,450.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,4,109272,1,3,0,0,2,,400.0,,21,1.0,5.0,3.0,2.0,1.5,2,2,123.38057291511973,300.0,8060.528618523346,0,5,0,1,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05582760403156264,5373.685745682231,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +9264,0,58.0,0.0,2,111,540.0,,,0,45,0.0,0.0,,624.0,116.38949493330776,,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,109274,2,1,0,0,2,,440.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,79.33400357892992,540.0,39979.46797106175,0,1,5,0,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015608011603647866,26652.9786473745,7,4,7,7_1,7_2,7_0_1 +9266,2,84.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,299.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,109276,1,1,0,1,1,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,554.264842117708,0.0,19605.011894273135,0,5,0,1,90.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01525120217281488,19605.011894273135,5,3,5,5_0,5_2,5_0_1 +9267,1,57.0,240.0,8,111,390.0,822.0,0.0,0,78,0.0,0.0,665.0282119151038,1212.0,0.0,1560.5703274065065,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,109277,2,1,1,0,1,,260.0,378.0,21,1.0,1.0,3.0,2.0,1.5,2,2,878.721939144016,390.0,6150.577428905412,0,7,2,3,66.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1970546690956289,4100.384952603607,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9268,1,39.0,25.0,2,211,460.0,1000.0,0.0,54,63,0.0,0.0,784.3922499511482,1460.0,0.0,1898.504047939789,43,0,0,0,0,0,0,0,0,3,105.0,1,,2,109278,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1095.91824377159,460.0,38740.225959439136,4,1,1,2,78.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037686925252542774,16141.760816432974,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +9269,1,46.0,67.0,8,211,840.0,,,0,42,0.0,0.0,,1040.0,277.1178450793042,,71,2,2,2,2,2,2,2,1,1,5.0,1,1999.0,6,109279,1,3,0,0,2,,300.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,96.92977070080465,840.0,13974.0,0,1,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.074423930156004,13974.0,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +9270,2,32.0,0.0,9,111,500.0,640.0,0.0,85,45,0.0,0.0,852.6002716860306,1140.0,0.0,1215.0425906814648,31,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,109280,2,1,1,0,1,,441.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,371.969213754154,500.0,46408.6191917917,7,1,1,2,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02456440247206562,25782.566217662057,7,4,7,7_1,7_3,7_0_0 +9271,2,44.0,0.0,7,111,345.0,,,0,54,0.0,0.0,,390.0,62.351515142843446,,42,0,0,0,0,0,0,0,0,2,30.0,2,,5,109281,2,1,0,0,2,,145.0,306.0,32,1.0,0.0,2.0,2.0,1.3,1,1,136.4145735352268,345.0,30968.50955669646,0,1,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01259343783678051,23821.930428228046,6,3,6,6_0,6_2,6_0_0 +9272,0,36.0,0.0,6,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,173.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,4,109282,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,876.00654214158,0.0,14202.955746638643,0,1,5,0,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012180563193048265,14202.955746638643,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +9273,2,51.0,0.0,9,111,776.0,1172.0,0.0,37,33,0.0,0.0,1323.2356216567196,1948.0,0.0,2225.0467441854325,41,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,109283,2,1,1,0,1,,570.0,,43,3.0,0.0,6.0,5.0,3.0,5,5,562.596117334288,776.0,120060.63626561171,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016225134736837593,40020.212088537235,9,5,9,9_1,9_4,9_0_0 +9274,1,43.0,29.0,2,111,0.0,0.0,105.0,55,62,0.0,0.0,66.1834204935481,105.0,0.0,125.6568754942915,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,109284,2,1,2,0,2,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,180.195459861619,0.0,26194.915033029924,4,1,1,2,66.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.004008411551158019,14552.730573905512,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +9275,1,47.0,380.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,216.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,2,109285,2,1,0,1,1,,359.0,374.0,32,2.0,3.0,4.0,3.0,1.8,2,2,188.412941629171,0.0,20831.742432714535,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010368791794429533,11573.190240396963,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9276,0,53.0,0.0,2,111,400.0,,,0,63,0.0,0.0,,526.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,109286,1,1,0,0,2,,396.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,127.0164137464683,400.0,12591.34499166817,0,4,5,0,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041774727032581505,12591.34499166817,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +9277,2,35.0,0.0,9,300,150.0,,,0,55,0.0,0.0,,203.0,73.1591111009363,,50,0,0,0,0,0,0,0,0,2,50.0,1,2009.0,6,109287,2,1,0,0,2,,160.0,,32,2.0,0.0,4.0,4.0,2.1,2,2,141.06761155755245,150.0,31852.021514773925,0,1,0,1,110.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0063732218661802205,15167.629292749487,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9278,2,51.0,0.0,2,111,1300.0,400.0,0.0,68,65,0.0,0.0,2216.7607063836795,1700.0,0.0,759.4016191759156,30,0,0,0,0,0,0,0,0,3,180.0,2,,2,109288,1,2,0,1,2,840.0,600.0,678.0,43,2.0,0.0,5.0,4.0,2.3,3,3,204.796688796523,1300.0,30244.146060720803,4,1,2,3,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05620922464092492,13149.628722052525,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +9279,2,63.0,0.0,1,111,520.0,,,0,34,0.0,0.0,,540.0,27.711784507930417,,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,109289,2,1,0,0,2,,700.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,127.66158581093266,520.0,107505.61273820295,0,1,0,1,127.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.005022993555834195,107505.61273820295,10,5,10,10_1,10_3,10_1_0 +9280,2,32.0,0.0,1,111,420.0,1200.0,0.0,47,37,0.0,0.0,716.1842282162656,1620.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,60.0,2,,1,109290,1,1,0,0,1,,0.0,640.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1086.47469257858,420.0,83326.95084481189,1,1,3,4,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019441489020966193,46292.75046933994,10,5,10,10_0,10_4,10_1_0 +9281,2,89.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,339.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,109291,2,1,0,1,2,,175.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1743.76197486888,0.0,13608.80112849499,0,6,0,1,105.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02491035005943175,13608.80112849499,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +9282,1,59.0,184.0,7,300,660.0,,,0,52,0.0,0.0,,936.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,,5,109292,2,1,0,0,2,,0.0,334.0,12,1.0,3.0,4.0,1.0,1.0,1,1,79.62136752303144,660.0,9269.108974358975,0,4,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1009805799661268,9269.108974358975,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +9283,2,32.0,0.0,9,120,0.0,0.0,0.0,54,47,0.0,0.0,0.0,5460.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,109293,2,1,1,0,1,,693.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1075.04996953895,0.0,47345.209883024174,1,1,1,2,133.0,0,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11532317658935347,26302.894379457874,7,4,7,7_1,7_1,7_0_0 +9284,2,54.0,0.0,2,211,195.0,560.0,0.0,0,34,0.0,0.0,332.5141059575519,755.0,0.0,1063.162266846282,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,109294,2,2,0,0,2,,179.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1926.2464395119,195.0,29776.455797522623,0,1,0,1,75.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02535560327038033,29776.455797522623,8,4,8,8_0,8_1,8_0_1 +9285,1,49.0,120.0,6,111,780.0,0.0,0.0,78,68,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,4,109295,2,2,0,1,1,,0.0,600.0,42,1.0,0.0,4.0,4.0,2.3,3,2,234.801296946682,780.0,19658.361311303484,7,1,2,3,70.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03967777311893758,8547.11361361021,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9286,2,56.0,0.0,7,112,1300.0,0.0,0.0,22,46,0.0,0.0,2216.7607063836795,2000.0,969.9124577775647,0.0,20,2,2,2,2,2,2,1,2,0,,1,,5,109296,2,2,1,0,2,,200.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,976.842846685958,1300.0,95118.73257999064,4,1,0,1,120.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02102635249390112,47559.36628999532,10,5,10,10_1,10_1,10_0_0 +9287,2,42.0,0.0,9,112,2167.2,0.0,0.0,47,47,0.0,0.0,3695.510617595931,2167.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,12.0,1,2009.0,6,109297,2,2,1,0,1,,324.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,700.768261660786,2167.2,54562.89714147158,1,1,1,2,192.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039715633031387004,25982.331972129323,7,4,7,7_1,7_0,7_0_0 +9288,2,55.0,0.0,8,111,650.0,1200.0,0.0,37,37,0.0,0.0,1108.3803531918397,1850.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,4,70.0,1,2000.0,6,109298,2,1,1,0,1,,480.0,,43,3.0,0.0,7.0,4.0,2.5,4,4,574.572524342566,650.0,108407.05766234473,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01706530958309183,43362.82306493789,10,5,10,10_1,10_4,10_0_0 +9289,2,36.0,0.0,1,111,880.0,0.0,0.0,85,22,1054.6828510366015,0.0,1500.5764781674138,2000.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,109299,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,1494.66325047807,880.0,56445.59988269707,6,1,1,2,107.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03543234555317541,20905.77773433225,5,3,5,5_0,5_3,5_1_0 +9290,2,59.0,0.0,2,120,630.0,2450.0,0.0,77,37,0.0,0.0,1074.2763423243985,3080.0,0.0,4651.334917452483,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,109300,2,2,5,0,1,,430.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,273.476437770966,630.0,55645.32042926444,5,1,0,1,175.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05535056634124793,37096.88028617629,9,5,9,9_1,9_0,9_0_1 +9291,2,69.0,0.0,2,111,534.0,117.0,0.0,0,74,0.0,0.0,910.5770901606807,651.0,0.0,222.12497360895532,31,0,0,0,0,0,0,0,0,0,,2,,2,109301,2,2,0,1,1,705.0,0.0,1963.0,21,2.0,0.0,5.0,3.0,2.0,3,3,1213.17863879461,534.0,61428.63805469182,0,5,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01059766292426009,30714.31902734591,8,4,8,8_0,8_4,8_0_1 +9292,1,86.0,130.0,2,221,180.0,180.0,0.0,0,77,0.0,0.0,306.936097806971,360.0,0.0,341.730728629162,71,2,1,2,1,2,2,2,2,0,,2,,2,109302,2,2,0,1,1,600.0,78.0,303.0,11,0.0,5.0,3.0,1.0,1.0,1,1,2394.41590788361,180.0,19179.0,0,5,2,3,70.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.018770530267480056,19179.0,5,3,5,5_0,5_1,5_0_1 +9293,2,64.0,0.0,1,112,863.0,0.0,0.0,0,63,2188.466915900948,0.0,1471.5880689300889,3088.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109303,2,2,2,0,1,,480.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,1363.70039251888,863.0,26239.16632732603,0,5,0,1,96.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11768666585965769,17492.777551550687,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9294,2,53.0,0.0,6,400,341.7,0.0,0.0,78,11,0.0,0.0,582.6670256702333,534.0,266.03313127613205,0.0,60,0,0,0,0,0,0,0,0,1,1.0,1,,4,109304,2,1,1,0,2,,260.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1640.00469432833,341.7,36093.53663261383,5,1,0,1,84.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01479489265447825,18046.768316306916,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9295,2,33.0,0.0,2,211,1200.0,0.0,0.0,52,62,0.0,374.78461939389337,2046.2406520464733,1583.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,109305,2,1,1,0,1,,146.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,490.099093354238,1200.0,25836.633836012505,1,1,1,2,125.0,1,2,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061269591466421164,14353.685464451391,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +9296,2,79.0,0.0,5,111,420.0,1750.0,0.0,77,77,0.0,0.0,716.1842282162656,2170.0,0.0,3322.382083894631,71,0,0,0,0,0,0,0,0,0,,1,,3,109306,2,1,2,0,1,,207.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2026.53662420539,420.0,21536.708189688794,5,5,0,1,96.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1007582022696922,14357.80545979253,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +9297,2,65.0,0.0,9,111,721.0,960.0,0.0,78,72,0.0,643.6230566269688,1229.449591771256,2167.0,0.0,1822.5638860221975,60,0,0,0,0,0,0,0,0,0,,1,2008.0,6,109307,2,1,1,0,1,,242.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,331.100371079632,721.0,44483.808804037195,5,5,0,1,110.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04871435378985198,29655.872536024795,8,4,8,8_1,8_2,8_0_0 +9298,1,64.0,327.0,2,112,480.0,240.0,0.0,85,78,0.0,0.0,818.4962608185893,720.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,2,,2,109308,1,1,0,1,2,1200.0,742.0,348.0,41,0.0,5.0,4.0,3.0,2.0,3,3,226.38188263588,480.0,9383.668553240219,6,6,2,3,73.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07672905281286614,4691.834276620109,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9299,1,35.0,412.0,6,111,250.0,,,0,54,0.0,0.0,,400.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,8,,4,109309,2,1,0,0,2,,180.0,523.0,32,1.0,0.0,3.0,3.0,1.8,2,1,32.79892028094899,250.0,14181.178748412824,0,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028206399982425193,7878.432638007124,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9300,2,60.0,0.0,1,111,170.0,230.0,0.0,0,46,242.57705573841835,0.0,289.8840923732504,630.0,0.0,436.65593102615145,31,2,2,2,2,1,2,2,2,3,50.0,2,,1,109310,2,3,0,2,1,182.0,0.0,232.0,12,1.0,2.0,1.0,1.0,1.0,1,1,312.104265291725,170.0,15138.025409100937,0,1,2,3,32.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04161705261911146,15138.025409100937,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +9301,2,59.0,0.0,1,112,380.0,0.0,0.0,0,33,0.0,953.5156394473612,647.9762064813832,1953.0,1181.9076092632324,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,,1,109311,2,2,3,0,1,,133.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,1360.55971916884,380.0,53769.15506180064,0,1,1,2,140.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03632193955354666,35846.103374533755,9,5,9,9_1,9_0,9_1_0 +9302,1,50.0,137.0,7,111,320.0,,,0,55,0.0,0.0,,366.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,2,,5,109312,2,2,0,0,2,,280.0,310.0,12,1.0,0.0,2.0,1.0,1.0,1,1,205.17559084691297,320.0,13396.97658091789,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0273195969097472,13396.97658091789,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +9303,2,46.0,0.0,6,111,0.0,,,56,68,0.0,0.0,,160.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,1,,4,109313,2,1,0,0,1,,192.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,95.44472572514435,0.0,25557.358720955224,1,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006260427837905305,14198.532622752902,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9304,2,59.0,0.0,8,112,480.0,0.0,0.0,52,53,2636.7071275915036,0.0,818.4962608185893,3150.0,235.55016831740858,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,109314,2,1,1,0,1,,750.0,,43,2.0,1.0,6.0,4.0,2.3,3,3,1127.87870734992,480.0,50969.776467634765,1,1,1,2,180.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061801330480627366,22160.772377232508,6,3,6,6_1,6_0,6_0_0 +9305,2,46.0,0.0,6,112,527.0,812.0,0.0,90,90,0.0,0.0,898.6406863570762,3297.0,0.0,1541.5852869271087,71,0,0,0,0,0,0,0,0,2,60.0,1,,4,109315,2,2,5,0,1,,276.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,501.265074452,527.0,68019.25936521546,1,1,1,2,115.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04847156571196159,37788.4774251197,9,5,9,9_1,9_1,9_0_0 +9306,1,48.0,230.0,7,111,750.0,1500.0,0.0,0,46,0.0,0.0,1278.9004075290459,2250.0,0.0,2847.7560719096837,42,0,0,0,0,0,0,0,0,2,30.0,1,,5,109316,2,1,2,0,1,,400.0,,32,2.0,0.0,6.0,4.0,2.3,3,3,1302.90215088531,750.0,23945.271549236542,0,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0939642716255493,10410.987630102845,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +9307,2,40.0,0.0,7,112,1100.0,0.0,0.0,52,45,0.0,0.0,1875.7205977092674,1270.0,235.55016831740858,0.0,41,0,0,0,0,0,0,0,0,3,40.0,1,,5,109317,1,1,2,0,1,,232.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1954.85329410928,1100.0,39775.10630267258,1,1,1,2,120.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031929518687789545,18940.526810796466,5,3,5,5_1,5_1,5_0_0 +9308,2,71.0,0.0,2,111,0.0,512.0,0.0,77,75,0.0,0.0,0.0,945.0,0.0,972.034072545172,71,0,0,0,0,0,0,0,0,0,,2,,2,109318,2,1,0,1,1,612.0,0.0,331.0,41,0.0,1.0,4.0,2.0,1.5,2,2,305.880825617583,0.0,40283.32033029088,5,5,2,3,75.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023458840836647992,26855.546886860586,7,4,7,7_0,7_4,7_0_1 +9309,2,53.0,0.0,8,112,0.0,0.0,180.0,0,46,0.0,0.0,113.45729227465388,180.0,0.0,215.41178656164254,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,109319,1,3,3,0,1,,550.0,1200.0,32,1.0,0.0,6.0,2.0,1.3,1,1,1283.5947575995,0.0,36218.087673568,0,1,2,3,167.0,8,1,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004969892436683348,27860.067441206153,7,4,7,7_1,7_1,7_0_0 +9310,2,41.0,0.0,7,111,1200.0,0.0,0.0,42,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,2,2,1,1,2,2,2,2,3,15.0,2,,5,109320,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,1245.79005665257,1200.0,105947.91133564635,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011326320499121138,46064.30927636798,10,5,10,10_0,10_4,10_0_0 +9311,1,41.0,308.0,2,111,227.0,216.0,0.0,0,54,0.0,0.0,387.0805233454579,443.0,0.0,410.0768743549944,50,2,2,2,2,1,2,2,2,0,,2,,2,109321,2,3,0,1,1,,300.0,461.0,32,1.0,0.0,3.0,2.0,1.3,1,1,74.9819217387804,227.0,17148.43851752967,0,4,2,3,57.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02583325587033196,13191.106551945899,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9312,1,70.0,150.0,2,111,270.0,300.0,0.0,81,86,0.0,0.0,460.40414671045653,702.0,182.89777775234077,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,109322,2,1,0,1,1,1320.0,0.0,354.0,42,1.0,0.0,3.0,2.0,1.5,2,2,270.670587429505,270.0,18834.139238125106,4,5,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037272741330220856,12556.092825416737,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9313,2,41.0,0.0,2,111,500.0,2000.0,0.0,43,21,0.0,0.0,852.6002716860306,2500.0,0.0,3797.008095879578,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,109324,2,1,2,0,1,,640.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,609.618365904983,500.0,28375.72120644455,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08810348754879269,10509.526372757242,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +9314,2,54.0,0.0,2,111,850.0,1300.0,0.0,37,74,0.0,0.0,1449.420461866252,2150.0,0.0,2468.055262321726,44,0,0,0,0,0,0,0,0,0,,1,,2,109325,2,2,2,0,1,,325.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1160.29812815662,850.0,185335.30093547897,1,7,1,2,110.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011600596266053398,123556.86729031931,10,5,10,10_1,10_2,10_0_1 +9315,2,54.0,0.0,5,111,737.0,0.0,0.0,0,37,0.0,0.0,1256.732800465209,737.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,,3,109326,2,1,0,0,1,,0.0,1308.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1407.29533207004,737.0,90002.28944462573,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008188680582991638,90002.28944462573,10,5,10,10_0,10_4,10_0_0 +9316,2,66.0,0.0,2,111,1019.0,0.0,0.0,77,77,0.0,0.0,1737.5993536961303,1159.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109327,2,2,2,0,1,,163.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,724.000582576207,1019.0,35194.81246914476,5,5,0,1,90.0,7,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0329309895035268,23463.208312763174,6,3,6,6_1,6_2,6_0_1 +9317,2,40.0,0.0,6,111,780.0,1752.0,0.0,42,38,0.0,79.45963662061344,1330.0564238302077,2592.0,0.0,3326.17909199051,20,0,0,0,0,0,0,0,0,3,75.0,1,,4,109328,2,2,3,0,1,,684.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,736.780662555607,780.0,89913.22885337839,1,1,1,2,145.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028827793563356262,42815.823263513514,9,5,9,9_1,9_4,9_0_0 +9318,2,50.0,0.0,2,111,200.0,375.0,0.0,0,52,0.0,0.0,341.04010867441224,575.0,0.0,711.9390179774209,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,109329,2,2,0,0,1,,148.0,240.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1436.79910514491,200.0,25433.785841382094,0,1,2,3,44.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022607723584132922,25433.785841382094,7,4,7,7_0,7_3,7_0_1 +9319,2,63.0,0.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,1450.0,1662.707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,109330,2,1,1,0,1,,120.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,663.685303207265,250.0,28389.73242581483,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05107480332155271,28389.73242581483,8,4,8,8_1,8_4,8_0_1 +9320,1,40.0,141.0,1,111,405.0,0.0,0.0,0,52,0.0,0.0,690.6062200656847,496.0,77.59299662220518,0.0,50,2,2,2,2,1,2,2,2,1,10.0,1,,1,109331,2,2,5,0,1,,252.0,261.0,12,1.0,0.0,3.0,1.0,1.0,1,1,87.1180876507232,405.0,11274.84777552272,0,1,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.04399172475541513,11274.84777552272,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +9321,1,43.0,377.0,6,111,0.0,0.0,180.0,0,67,0.0,0.0,113.45729227465388,213.0,45.72444443808519,215.41178656164254,71,0,0,0,0,0,0,0,0,0,,2,,4,109332,2,2,0,1,1,,0.0,470.0,32,2.0,0.0,3.0,3.0,1.8,2,2,330.103279612408,0.0,9529.751386615437,0,4,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02235105527507875,5294.306325897464,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9322,2,51.0,0.0,6,120,440.0,,,90,63,0.0,158.91927324122688,,812.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,109333,1,2,0,0,2,,426.0,,43,3.0,3.0,5.0,3.0,2.0,3,3,123.74151864690086,440.0,45461.95501710558,4,1,0,1,56.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01786108845724905,22730.97750855279,6,3,6,6_1,6_2,6_0_0 +9323,1,64.0,124.0,6,111,546.0,,,0,77,0.0,0.0,,630.0,116.38949493330776,,60,0,0,0,0,0,0,0,0,0,,1,,4,109334,2,2,0,0,2,,462.0,600.0,11,0.0,2.0,4.0,1.0,1.0,1,1,139.28487539226964,546.0,11917.133333333333,0,5,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.052865062626918105,11917.133333333333,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +9324,2,70.0,0.0,6,221,1527.0,0.0,0.0,75,75,0.0,0.0,2603.8412297291375,1707.0,249.40606057137379,0.0,41,1,2,2,2,1,2,2,2,0,,1,,4,109335,1,2,3,0,1,,439.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1688.49954517571,1527.0,47672.17699773762,5,5,0,1,123.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.035807049467890026,31781.45133182508,8,4,8,8_1,8_1,8_0_0 +9325,2,34.0,0.0,8,111,800.0,0.0,0.0,0,38,0.0,0.0,1364.160434697649,800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,2002.0,6,109336,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1086.1932991906,800.0,56105.800602133146,0,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014258775232049428,56105.800602133146,10,5,10,10_0,10_4,10_0_0 +9326,2,35.0,0.0,9,112,1140.0,0.0,0.0,55,63,0.0,794.5963662061343,1943.9286194441497,1790.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,109337,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,914.386601252561,1140.0,46828.72127438696,1,4,1,2,115.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038224404837187885,26015.95626354831,7,4,7,7_1,7_0,7_0_0 +9327,2,58.0,0.0,2,111,300.0,620.0,0.0,0,68,0.0,0.0,511.56016301161833,920.0,0.0,1177.072509722669,71,0,0,0,0,0,0,0,0,2,7.0,2,,2,109338,2,1,0,0,1,,190.0,310.0,12,1.0,4.0,3.0,1.0,1.0,1,1,612.095905883806,300.0,17019.595652064243,0,1,2,3,53.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05405533825878035,17019.595652064243,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +9328,2,52.0,0.0,2,111,1200.0,0.0,0.0,38,37,0.0,0.0,2046.2406520464733,1317.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,2,,2,109339,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,877.415110902977,1200.0,94104.14601221641,1,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013995132582458478,37641.65840488656,9,5,9,9_0,9_4,9_0_1 +9329,2,69.0,0.0,2,111,804.0,0.0,0.0,68,78,0.0,0.0,1370.981236871137,1092.0,399.049696914198,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109340,2,1,1,0,1,,320.0,,42,1.0,3.0,4.0,3.0,1.8,2,2,1452.37074225353,804.0,28136.68251873381,1,5,0,1,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038810545602628546,15631.49028818545,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +9330,2,68.0,0.0,5,211,1200.0,0.0,0.0,55,77,2109.365702073203,794.5963662061343,2046.2406520464733,3800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,109341,2,1,1,0,1,,500.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,247.991245668229,1200.0,36004.58060129261,1,5,0,1,160.0,2,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10554212648886056,24003.053734195073,6,3,6,6_1,6_1,6_0_0 +9331,1,41.0,256.0,5,111,130.0,0.0,0.0,0,90,0.0,0.0,221.67607063836795,130.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,60.0,2,,3,109342,1,1,0,1,1,,0.0,373.0,12,1.0,0.0,1.0,1.0,1.0,1,1,498.907304373625,130.0,5037.306971506099,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.025807440510446287,5037.306971506099,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9332,2,46.0,0.0,2,111,416.0,0.0,0.0,0,21,0.0,0.0,709.3634260427774,1498.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,109343,2,2,0,1,1,1108.0,165.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2304.07093955407,416.0,6924.6258063476125,0,1,2,3,59.0,6,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.2163293789285805,6924.6258063476125,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +9333,2,51.0,0.0,1,111,780.0,0.0,0.0,0,46,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,109344,2,1,0,0,1,,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,4230.96718011362,780.0,31188.0,0,1,2,3,32.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.025009619084263177,31188.0,8,4,8,8_0,8_3,8_1_0 +9334,2,35.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,221.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,109345,2,1,0,1,1,299.0,0.0,224.0,12,1.0,3.0,1.0,1.0,1.0,1,1,483.550496172563,0.0,20163.79139279612,0,1,2,3,39.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010960240348397784,20163.79139279612,5,3,5,5_0,5_2,5_0_1 +9335,2,90.0,0.0,2,111,26.0,119.0,0.0,0,78,0.0,0.0,44.33521412767359,145.0,0.0,225.92198170483488,71,0,0,0,0,0,0,0,0,0,,1,,2,109346,2,1,2,0,1,,441.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,419.273783099823,26.0,50307.2362661247,0,5,0,1,93.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002882289125026699,33538.1575107498,8,4,8,8_1,8_2,8_0_1 +9336,2,75.0,0.0,2,111,420.0,,,0,78,0.0,0.0,,492.0,99.7624242285495,,71,0,0,0,0,0,0,0,0,0,,1,,2,109347,2,2,0,0,2,,120.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,106.11305552190949,420.0,10710.630180005239,0,5,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04593567247970832,10710.630180005239,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +9337,2,55.0,0.0,8,111,1600.0,0.0,0.0,45,47,0.0,158.91927324122688,2728.320869395298,1720.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,109348,2,1,3,0,1,,410.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,833.528484410137,1600.0,58057.62011843478,1,1,0,1,97.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029625740712266226,38705.08007895652,9,5,9,9_1,9_2,9_0_0 +9338,2,33.0,0.0,1,120,750.0,1200.0,0.0,54,63,0.0,211.89236432163582,1278.9004075290459,2110.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,1,2.0,1,,1,109349,2,1,2,0,2,,800.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,217.763859663427,750.0,46650.28299467378,1,1,1,2,180.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045230165061183145,19437.617914447408,5,3,5,5_1,5_0,5_1_0 +9339,1,25.0,250.0,2,111,0.0,0.0,0.0,54,56,0.0,0.0,0.0,772.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109350,2,1,0,0,1,,187.0,280.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1350.88080650892,0.0,2681.590948412282,4,4,2,3,54.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.28788879991450084,1787.7272989415214,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9340,2,42.0,0.0,9,112,0.0,0.0,1980.0,0,45,0.0,0.0,1248.0302150211928,2100.0,166.2707070475825,2369.529652178068,20,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,109351,2,2,2,0,1,,120.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,668.431458530268,0.0,32224.10557037717,0,1,0,1,137.0,8,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06516860477053794,24787.773515674748,7,4,7,7_1,7_0,7_0_0 +9341,2,39.0,0.0,5,211,1200.0,,,45,37,0.0,0.0,,1200.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,3,109352,2,2,0,0,2,,440.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,55.004935626435845,1200.0,41504.0,1,1,0,1,200.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028912875867386275,19763.809523809523,5,3,5,5_1,5_2,5_0_0 +9342,2,31.0,0.0,1,111,338.0,0.0,0.0,0,42,0.0,0.0,576.3577836597567,338.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,1,109353,1,3,0,0,1,,0.0,634.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1320.68021286477,338.0,26534.719092486306,0,1,2,3,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0127380281970164,26534.719092486306,7,4,7,7_0,7_4,7_1_0 +9343,2,31.0,0.0,1,112,661.0,1045.0,0.0,46,54,0.0,0.0,1127.1375591689325,1706.0,0.0,1983.9367300970796,42,0,0,0,0,0,0,0,0,3,120.0,2,,1,109354,2,2,0,0,1,,150.0,571.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1287.78042969389,661.0,36748.021395885866,1,1,2,3,63.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04642426817001352,17499.0578075647,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +9345,2,58.0,0.0,5,120,2300.0,0.0,0.0,74,56,0.0,794.5963662061343,3921.9612497557405,2900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,109356,2,1,1,0,1,,90.0,,42,1.0,5.0,4.0,2.0,1.5,2,2,759.667262105283,2300.0,54637.543730088706,5,1,0,1,88.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053077056580839305,36425.02915339247,9,5,9,9_1,9_0,9_0_0 +9346,2,40.0,0.0,8,111,380.0,,,0,43,0.0,0.0,,420.0,55.423569015860835,,33,0,0,0,0,0,0,0,0,0,,1,2000.0,6,109357,2,1,0,0,1,,440.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,135.86143776427488,380.0,82017.93328341936,0,1,1,2,63.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005120831300987032,63090.717910322586,10,5,10,10_1,10_2,10_0_0 +9347,2,44.0,0.0,1,111,1110.0,730.0,0.0,55,46,0.0,0.0,1892.772603142988,1840.0,0.0,1385.9079549960459,50,2,2,2,2,1,2,2,2,0,,1,,1,109358,1,2,1,0,1,,460.0,675.0,43,2.0,0.0,6.0,5.0,2.8,4,3,467.476308237971,1110.0,33771.131723395185,1,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05448440446327498,12061.118472641137,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +9348,1,34.0,88.0,6,111,0.0,0.0,740.0,0,67,0.0,0.0,466.4355349069104,740.0,0.0,885.5817891978638,71,0,0,0,0,0,0,0,0,0,,2,,4,109359,2,3,0,0,1,,0.0,347.0,22,2.0,0.0,2.0,2.0,1.5,2,2,251.462975106218,0.0,35404.86167692079,0,1,2,3,43.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.020901084341260978,23603.241117947193,6,3,6,6_0,6_3,6_0_0 +9349,2,47.0,0.0,1,111,251.0,456.0,0.0,85,23,0.0,0.0,428.00533638638734,707.0,0.0,865.7178458605438,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,109360,2,2,0,0,1,,0.0,,42,1.0,0.0,6.0,5.0,2.5999999999999996,3,2,647.745927532922,251.0,112960.75539893178,6,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006258810836587994,43446.44438420454,10,5,10,10_0,10_4,10_1_0 +9350,2,55.0,0.0,7,112,900.0,0.0,0.0,45,48,0.0,0.0,1534.680489034855,1558.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,109361,2,1,2,0,1,,350.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,1269.32443415065,900.0,75727.75538757698,1,1,0,1,110.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020573698401941377,37863.87769378849,9,5,9,9_1,9_0,9_0_0 +9351,2,53.0,0.0,7,112,994.0,0.0,0.0,52,62,0.0,708.5150932004698,1694.9693401118288,1579.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,9.0,1,,5,109362,2,1,2,0,1,,269.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,653.734517334324,994.0,81727.03208268939,1,1,0,1,115.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019320412839688182,32690.812833075754,8,4,8,8_1,8_0,8_0_0 +9352,2,30.0,0.0,2,111,35.0,65.0,0.0,54,64,0.0,0.0,59.68201901802214,100.0,0.0,123.40276311608629,42,0,0,0,0,0,0,0,0,2,30.0,2,,2,109363,2,1,0,1,1,,710.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,968.709951550837,35.0,34073.82190844467,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0029348043277533406,18929.901060247037,5,3,5,5_0,5_3,5_0_1 +9353,0,56.0,0.0,1,111,642.0,1321.0,0.0,0,47,0.0,0.0,1094.7387488448633,1963.0,0.0,2507.9238473284613,50,0,0,0,0,0,0,0,0,0,,1,,1,109364,2,2,1,0,1,,300.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,231.621503354615,642.0,35549.258770778615,0,4,5,0,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055219154150510166,23699.505847185745,6,3,6,6_1,6_3,6_1_0 +9354,2,52.0,0.0,7,112,600.0,0.0,0.0,56,47,1898.4291318658827,0.0,1023.1203260232367,2500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,13.0,1,,5,109365,2,1,2,0,1,,350.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,946.606223817681,600.0,53429.18352949165,1,1,0,1,120.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046790907793304734,26714.591764745826,7,4,7,7_1,7_0,7_0_0 +9355,0,46.0,0.0,7,400,60.0,,,0,52,0.0,0.0,,305.0,339.46936022214766,,71,0,0,0,0,0,0,0,0,0,,1,,5,109366,2,1,0,0,2,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,117.68423820352254,60.0,9466.675963285557,0,4,5,0,72.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03221827821960698,9466.675963285557,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +9356,2,36.0,0.0,2,111,0.0,0.0,0.0,54,42,0.0,0.0,0.0,2607.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,109367,2,1,1,0,1,,732.0,700.0,43,2.0,1.0,4.0,3.0,1.8,2,2,413.233787454924,0.0,59968.575985799434,1,1,2,3,100.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04347276814806038,33315.87554766635,8,4,8,8_1,8_2,8_0_1 +9357,2,32.0,0.0,2,111,380.0,0.0,0.0,63,56,0.0,0.0,647.9762064813832,598.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,109368,2,1,0,1,1,,240.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,2149.94049857011,380.0,41113.19977234902,1,1,1,2,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014545206972729699,22840.6665401939,6,3,6,6_0,6_3,6_0_1 +9358,2,41.0,0.0,9,111,1080.0,,,53,52,0.0,0.0,,1146.0,91.44888887617039,,31,0,0,0,0,0,0,0,0,2,45.0,1,2008.0,6,109369,2,1,0,0,2,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,94.22021330527599,1080.0,57644.0,1,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01988064672819374,27449.52380952381,7,4,7,7_1,7_3,7_0_0 +9359,2,74.0,0.0,2,111,324.0,0.0,0.0,0,75,942.8864688267217,0.0,552.4849760525478,1218.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,109370,2,2,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,317.133957851522,324.0,22299.033497647295,0,5,0,1,69.0,8,6,7,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05462120141343828,22299.033497647295,6,3,6,6_0,6_2,6_0_1 +9360,2,60.0,0.0,2,111,350.0,250.0,0.0,0,77,0.0,0.0,596.8201901802214,600.0,0.0,474.62601198494724,60,2,2,2,1,2,2,2,2,0,,2,,2,109371,1,1,0,1,2,770.0,0.0,411.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1122.94488570777,350.0,45948.75768530193,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013058024421668485,45948.75768530193,10,5,10,10_0,10_4,10_0_1 +9361,2,46.0,0.0,2,111,650.0,0.0,0.0,68,63,0.0,0.0,1108.3803531918397,740.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,109372,2,2,0,0,1,,0.0,370.0,43,3.0,0.0,3.0,3.0,2.0,3,3,445.012338084215,650.0,52008.053377840704,1,1,2,3,46.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014228565615095584,26004.026688920352,7,4,7,7_0,7_3,7_0_1 +9362,2,74.0,0.0,6,111,1200.0,,,78,78,0.0,0.0,,1470.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,4,109373,2,1,0,0,2,,800.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,93.65021560293526,1200.0,57026.64760649609,5,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0257774226909412,38017.76507099739,9,5,9,9_1,9_2,9_0_0 +9363,1,42.0,383.0,2,111,300.0,0.0,0.0,85,81,0.0,0.0,511.56016301161833,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,109374,2,1,0,1,1,640.0,0.0,338.0,42,1.0,0.0,3.0,5.0,2.4,2,2,348.515460593048,300.0,1927.7141597290326,6,4,2,3,81.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15562473226952342,803.2142332204303,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9364,2,54.0,0.0,7,211,220.0,,,22,21,0.0,0.0,,570.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,0,,1,,5,109375,1,2,0,0,2,,1400.0,,43,2.0,2.0,4.0,4.0,2.5,4,3,36.927517815720414,220.0,29639.385469970322,1,1,0,1,52.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019231167953111097,11855.754187988128,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9365,2,60.0,0.0,1,112,1000.0,1000.0,0.0,75,38,0.0,66.2163638505112,1705.2005433720612,2050.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,2,45.0,1,,1,109376,2,1,2,0,2,,150.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,313.450575904918,1000.0,77451.88855576365,5,1,0,1,150.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026468044075181527,51634.592370509105,10,5,10,10_1,10_0,10_1_0 +9366,2,48.0,0.0,7,111,600.0,,,0,52,0.0,0.0,,726.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,10.0,8,,5,109377,2,1,0,0,2,,400.0,440.0,22,2.0,0.0,3.0,2.0,1.5,2,2,85.35162107175336,600.0,30975.751849816967,0,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02343768776041153,20650.50123321131,5,3,5,5_0,5_2,5_0_0 +9367,2,71.0,0.0,2,111,600.0,90.0,0.0,0,74,0.0,0.0,1023.1203260232367,690.0,0.0,170.865364314581,12,0,0,0,0,0,0,0,0,0,,2,,2,109378,2,2,0,1,1,822.0,0.0,900.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1141.12906893684,600.0,34586.287354391185,0,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019950103141451965,34586.287354391185,9,5,9,9_0,9_4,9_0_1 +9368,2,37.0,0.0,2,111,270.0,0.0,0.0,0,53,0.0,0.0,460.40414671045653,768.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,15.0,2,,2,109379,2,1,0,1,1,50.0,0.0,250.0,12,1.0,1.0,2.0,1.0,1.0,1,1,272.033250931265,270.0,33162.79690990703,0,1,2,3,49.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023158480935320875,33162.79690990703,8,4,8,8_0,8_3,8_0_1 +9369,1,72.0,253.0,7,211,180.0,,,0,77,0.0,0.0,,268.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,109380,2,1,0,0,2,,98.0,315.0,11,0.0,4.0,2.0,1.0,1.0,1,1,110.55061945692778,180.0,12800.827177375832,0,5,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02093614703850255,12800.827177375832,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9370,2,77.0,0.0,1,111,200.0,1006.0,0.0,0,77,0.0,0.0,341.04010867441224,1206.0,0.0,1909.8950722274278,70,0,0,0,0,0,0,0,0,0,,1,,1,109381,2,1,2,0,1,,85.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,492.369782156394,200.0,17516.3426737593,0,5,0,1,44.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06884998897667559,17516.3426737593,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +9371,1,24.0,210.0,9,111,0.0,,,55,53,0.0,0.0,,368.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,2005.0,6,109382,2,1,0,0,1,,0.0,690.0,43,2.0,0.0,3.0,2.0,1.5,2,2,131.23606619206214,0.0,9952.32308882625,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03697629153671306,6634.8820592175,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9372,2,87.0,0.0,2,111,350.0,85.0,0.0,0,75,0.0,0.0,596.8201901802214,435.0,0.0,161.37284407488207,33,1,2,2,1,2,2,2,2,0,,2,,2,109383,1,2,0,1,2,580.0,270.0,478.0,11,0.0,2.0,4.0,1.0,1.0,1,1,2332.88026341852,350.0,22161.64976644206,0,5,2,3,70.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01962850259725213,22161.64976644206,6,3,6,6_0,6_2,6_0_1 +9373,2,68.0,0.0,1,111,900.0,2400.0,0.0,77,72,0.0,0.0,1534.680489034855,3300.0,0.0,4556.4097150554935,60,0,0,0,0,0,0,0,0,0,,1,,1,109384,2,1,3,0,1,,350.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1136.67685500494,900.0,54676.32449104077,5,5,0,1,130.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06035519085670684,36450.882994027175,9,5,9,9_1,9_2,9_1_0 +9374,1,46.0,309.0,6,111,400.0,0.0,0.0,0,56,0.0,0.0,682.0802173488245,745.0,277.1178450793042,0.0,71,2,2,2,1,2,2,2,2,0,,2,,4,109385,1,3,0,1,2,809.0,0.0,126.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1801.84317330723,400.0,9523.57711161395,0,1,2,3,63.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.07822690899320557,7325.828547395346,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9375,0,80.0,0.0,2,111,667.0,0.0,0.0,77,75,1251.908544180446,0.0,1137.3687624291647,1854.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109386,2,1,4,1,1,,243.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1255.34696146108,667.0,26079.165782256972,5,5,0,1,65.0,6,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07109123104165294,17386.11052150465,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +9376,2,56.0,0.0,2,111,560.0,1200.0,0.0,85,62,0.0,0.0,954.9123042883542,1760.0,0.0,2278.2048575277468,71,2,2,2,1,2,2,2,2,2,10.0,2,,2,109387,1,3,0,0,1,,0.0,352.0,42,1.0,3.0,4.0,2.0,1.5,2,2,1690.09291711421,560.0,27330.617911445202,6,1,2,3,80.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06439664136766433,18220.41194096347,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +9377,2,33.0,0.0,2,111,728.0,0.0,0.0,37,46,0.0,0.0,1241.3859955748605,728.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,109388,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,174.522231580957,728.0,61395.085564964014,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011857626604814826,34108.38086942445,9,5,9,9_0,9_4,9_0_1 +9378,0,60.0,0.0,6,111,198.0,,,0,75,0.0,0.0,,482.0,393.50734001261196,,71,0,0,0,0,0,0,0,0,0,,1,,4,109389,2,3,0,0,2,,220.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,134.01828268952252,198.0,23685.420684225,0,7,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02035007131289935,23685.420684225,6,3,6,6_1,6_2,6_0_0 +9379,1,42.0,335.0,8,400,696.0,,,0,52,0.0,0.0,,834.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,1,4.0,1,2001.0,6,109390,1,3,0,0,1,,498.0,552.0,32,1.0,0.0,3.0,4.0,1.9,1,1,120.42216770262226,696.0,24005.938571761646,0,1,2,3,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03474140357007495,12634.704511453498,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +9380,2,86.0,0.0,1,120,4000.0,0.0,0.0,0,72,0.0,0.0,6820.802173488245,4000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109391,2,2,5,0,2,,156.0,,21,0.0,1.0,6.0,2.0,1.5,2,2,286.340727036612,4000.0,87586.81211079597,0,5,0,1,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04566897576932086,58391.208073863985,10,5,10,10_1,10_0,10_1_0 +9381,2,52.0,0.0,6,111,400.0,,,0,68,0.0,0.0,,745.0,478.02828276179974,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,109392,2,1,0,0,1,,230.0,,32,3.0,1.0,6.0,5.0,2.8,4,3,109.59491007098632,400.0,28902.46489869528,0,1,0,1,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025776348232279346,10322.308892391173,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9382,2,67.0,0.0,5,112,1400.0,0.0,0.0,0,75,0.0,304.5952737123515,2387.2807607208856,1708.0,108.07595958092864,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,109393,2,1,2,0,1,,150.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1708.78488159525,1400.0,36491.364822667034,0,5,0,1,110.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046805593824735654,36491.364822667034,9,5,9,9_1,9_1,9_0_0 +9383,2,55.0,0.0,5,111,1070.0,0.0,0.0,52,21,0.0,0.0,1824.5645814081054,1070.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109394,2,1,2,0,1,,850.0,,43,3.0,4.0,4.0,3.0,2.0,3,3,591.759262462107,1070.0,60427.35203376836,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0177072131077671,30213.67601688418,8,4,8,8_1,8_4,8_0_0 +9384,2,47.0,0.0,2,112,1700.0,0.0,0.0,56,46,0.0,1138.9214582287925,2898.840923732504,2560.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,109395,2,1,2,0,1,,270.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,1042.12445141317,1700.0,53689.10412074417,1,1,1,2,180.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04768192805457668,19174.680043122917,5,3,5,5_1,5_0,5_0_1 +9385,2,47.0,0.0,9,111,400.0,,,45,47,0.0,0.0,,610.0,290.9737373332694,,42,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,109396,2,1,0,0,2,,390.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,182.89398006287234,400.0,138424.0,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0044067502745188695,65916.19047619047,10,5,10,10_1,10_2,10_0_0 +9386,2,65.0,0.0,5,211,300.0,,,0,86,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,109397,2,2,0,0,2,,160.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,102.34291196547768,300.0,9386.15909090909,0,5,0,1,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0319619555874099,9386.15909090909,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9387,2,53.0,0.0,6,112,810.0,0.0,0.0,54,62,0.0,331.081819252556,1381.2124401313695,1210.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,109398,2,2,2,0,1,,750.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,225.120536701194,810.0,55908.9593144346,1,1,1,2,82.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02164232736286332,22363.58372577384,6,3,6,6_1,6_0,6_0_0 +9388,1,36.0,253.0,2,111,382.0,950.0,0.0,85,68,0.0,0.0,651.3866075681274,1332.0,0.0,1803.5788455427996,50,1,2,2,1,2,2,2,2,3,60.0,1,,2,109399,2,2,2,0,2,,360.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,255.667485969032,382.0,27778.17757146507,6,1,1,2,105.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.04795130985728478,11574.240654777112,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +9389,2,81.0,0.0,1,112,300.0,0.0,0.0,0,77,1871.0073777389312,0.0,511.56016301161833,2104.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109400,2,3,2,0,1,,308.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1894.98825987315,300.0,11070.071444179384,0,5,0,1,60.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1900620073329588,11070.071444179384,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9390,2,80.0,0.0,2,111,500.0,250.0,0.0,78,78,0.0,0.0,852.6002716860306,750.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,0,,2,,2,109401,2,1,0,0,1,,175.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1886.62931464485,500.0,24462.828188472005,5,5,0,1,71.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030658760884950908,16308.552125648004,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +9391,1,56.0,260.0,2,111,0.0,0.0,750.0,63,56,0.0,0.0,472.7387178110578,750.0,0.0,897.5491106735105,71,0,0,0,0,0,0,0,0,0,,2,,2,109402,2,1,0,1,1,457.0,200.0,332.0,43,2.0,2.0,4.0,4.0,2.5,4,4,274.165396049165,0.0,34199.32893713448,1,1,2,3,89.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.021930254870750735,13679.731574853791,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +9392,2,70.0,0.0,9,112,260.0,0.0,0.0,0,75,0.0,105.94618216081791,443.3521412767359,400.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,2010.0,6,109403,2,1,1,0,1,,200.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,904.605918573588,260.0,17357.35789707606,0,5,0,1,82.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023044981982389273,17357.35789707606,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9393,0,27.0,0.0,5,111,360.0,0.0,0.0,0,63,0.0,0.0,613.872195613942,360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,109404,2,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1395.71223736509,360.0,28787.0,0,1,5,0,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012505644909160386,28787.0,8,4,8,8_0,8_4,8_0_0 +9394,2,46.0,0.0,1,112,500.0,0.0,0.0,54,62,2636.7071275915036,132.4327277010224,852.6002716860306,3200.0,138.5589225396521,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,1,109405,2,1,2,0,2,,800.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1082.01447340878,500.0,46594.85437786086,1,1,1,2,100.0,4,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06867711129751813,20258.632338200376,5,3,5,5_1,5_0,5_1_0 +9395,2,55.0,0.0,6,211,1787.0,0.0,0.0,85,77,0.0,1324.327277010224,3047.1933710058734,2917.0,180.1265993015477,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,109406,2,2,3,0,1,,200.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,564.896025676753,1787.0,37345.62391375804,7,7,0,1,95.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07810821441184664,24897.082609172026,7,4,7,7_1,7_1,7_0_0 +9396,2,68.0,0.0,5,111,510.0,961.0,0.0,74,75,0.0,39.72981831030672,869.6522771197511,1501.0,0.0,1824.4623900701372,70,0,0,0,0,0,0,0,0,0,,1,,3,109407,2,1,1,0,1,,310.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,336.634362716988,510.0,76651.00615188852,5,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019582260890687847,51100.67076792568,10,5,10,10_1,10_3,10_0_0 +9397,2,37.0,0.0,9,112,1632.0,0.0,0.0,38,38,0.0,0.0,2782.8872867832038,1752.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,109408,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,4849.19984706828,1632.0,54975.7808915343,1,1,1,2,97.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03186857870116748,30542.100495296832,8,4,8,8_1,8_0,8_0_0 +9398,2,40.0,0.0,6,111,1200.0,0.0,0.0,46,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,109409,1,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1695.0437914261,1200.0,58668.07725146561,1,1,1,2,54.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020454053656071065,39112.051500977075,9,5,9,9_0,9_3,9_0_0 +9399,2,45.0,0.0,2,111,155.0,120.0,0.0,0,37,0.0,0.0,264.3060842226695,275.0,0.0,227.8204857527747,20,0,0,0,0,0,0,0,0,0,,2,,2,109410,2,1,0,1,1,869.0,0.0,335.0,12,1.0,1.0,3.0,1.0,1.0,1,1,219.989312149953,155.0,118663.6988819529,0,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0023174736890139505,118663.6988819529,10,5,10,10_0,10_4,10_0_1 +9400,2,37.0,0.0,9,400,1500.0,0.0,0.0,63,63,0.0,264.8654554020448,2557.8008150580918,1828.0,177.35542085075468,0.0,43,0,0,0,0,0,0,0,0,2,2.0,1,2009.0,6,109411,2,1,1,0,1,,200.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1153.25306711068,1500.0,39552.73847386249,1,1,1,2,165.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046216774628841224,18834.637368505948,5,3,5,5_1,5_0,5_0_0 +9401,2,76.0,0.0,1,120,480.0,0.0,0.0,0,71,632.8097106219609,0.0,818.4962608185893,1180.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,109412,2,1,1,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1829.26043415078,480.0,34156.485400542864,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03454687993107294,34156.485400542864,9,5,9,9_1,9_0,9_1_0 +9402,1,32.0,100.0,9,111,1888.0,0.0,0.0,52,64,0.0,0.0,3219.4186258864515,1888.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,109413,2,1,1,0,1,,588.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,118.455976958056,1888.0,48312.695053920645,1,1,1,2,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03907875555054108,20130.28960580027,5,3,5,5_1,5_4,5_0_0 +9403,2,63.0,0.0,7,111,601.0,1328.0,0.0,56,78,0.0,0.0,1024.8255265666087,1929.0,0.0,2521.2133756640396,71,0,0,0,0,0,0,0,0,0,,1,,5,109414,2,1,2,0,1,,340.0,,42,2.0,3.0,5.0,3.0,2.0,3,3,636.084302955214,601.0,34041.82995845931,1,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056665578858537485,17020.914979229656,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +9404,2,81.0,0.0,5,111,0.0,0.0,1610.0,0,77,0.0,0.0,1014.8124475677375,1610.0,0.0,1926.7387575791363,60,0,0,0,0,0,0,0,0,0,,1,,3,109415,2,2,2,0,1,,360.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,513.73156687849,0.0,29106.568016051307,0,5,0,1,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05531397583913494,29106.568016051307,8,4,8,8_1,8_2,8_0_0 +9405,0,81.0,0.0,2,112,167.0,1544.0,0.0,0,77,0.0,0.0,284.76849074313424,1711.0,0.0,2931.2902500190344,71,0,0,0,0,0,0,0,0,0,,1,,2,109416,2,2,2,0,1,,51.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2259.79085356901,167.0,10756.48311952788,0,5,0,1,40.0,6,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1590668605144521,10756.48311952788,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +9406,2,82.0,0.0,2,111,210.0,109.0,0.0,0,77,0.0,0.0,358.0921141081328,319.0,0.0,206.936941225437,71,0,0,0,0,0,0,0,0,0,,2,,2,109417,2,1,0,1,2,805.0,100.0,330.0,11,0.0,2.0,4.0,1.0,1.0,1,1,346.877745846518,210.0,16254.76292916555,0,5,2,3,75.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019625017072849804,16254.76292916555,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +9407,2,73.0,0.0,6,111,1400.0,0.0,0.0,72,72,2109.365702073203,0.0,2387.2807607208856,3592.0,266.03313127613205,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,109418,1,2,3,0,1,,182.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1247.03257881264,1400.0,34137.43743955398,5,5,0,1,90.0,8,7,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1052217234044071,22758.29162636932,6,3,6,6_1,6_3,6_0_0 +9408,1,49.0,443.0,6,211,500.0,,,0,81,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,109419,2,1,0,0,2,,900.0,620.0,32,1.0,1.0,3.0,4.0,2.5,4,3,126.84033480647406,500.0,9479.75448275862,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05274398202077691,3791.901793103448,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9409,2,56.0,0.0,7,112,900.0,0.0,0.0,0,42,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,5,109420,2,2,0,0,1,,0.0,540.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1020.57368493675,900.0,28249.102645124032,0,1,2,3,40.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03398338035936522,28249.102645124032,8,4,8,8_0,8_2,8_0_0 +9410,2,60.0,0.0,6,111,740.0,766.0,0.0,0,54,0.0,0.0,1261.8484020953254,1506.0,0.0,1454.2541007218783,41,0,0,0,0,0,0,0,0,0,,2,,4,109421,2,1,0,0,2,,272.0,700.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1924.24340783898,740.0,38487.79929419519,0,1,2,3,75.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03912928324345991,38487.79929419519,9,5,9,9_0,9_3,9_0_0 +9411,2,62.0,0.0,7,120,966.0,0.0,0.0,0,46,0.0,0.0,1647.223724897411,4166.0,4433.885521268867,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,109422,2,1,3,0,1,,185.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,321.212898075112,966.0,29243.612926230064,0,1,1,2,182.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14245845786938677,29243.612926230064,8,4,8,8_1,8_0,8_0_0 +9412,2,50.0,0.0,2,111,700.0,1000.0,0.0,52,48,0.0,0.0,1193.6403803604428,1700.0,0.0,1898.504047939789,44,0,0,0,0,0,0,0,0,2,8.0,2,,2,109423,1,2,0,0,1,,384.0,840.0,43,2.0,1.0,5.0,5.0,2.4,2,2,1776.92450196344,700.0,28517.385016515178,1,1,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.059612758989489555,11882.243756881324,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +9413,2,56.0,0.0,2,111,260.0,0.0,0.0,0,37,0.0,0.0,443.3521412767359,260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,109424,2,1,0,1,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,731.776755063349,260.0,51869.37554231612,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005012591674404997,51869.37554231612,10,5,10,10_0,10_4,10_0_1 +9414,2,64.0,0.0,2,112,150.0,280.0,0.0,77,78,0.0,0.0,255.78008150580916,430.0,0.0,531.581133423141,71,0,0,0,0,0,0,0,0,0,,2,,2,109425,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,841.187821495327,150.0,33339.44699651661,5,5,0,1,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012897634446214043,22226.297997677742,6,3,6,6_0,6_2,6_0_1 +9415,2,36.0,0.0,2,111,384.0,240.0,0.0,0,37,0.0,0.0,654.7970086548714,624.0,0.0,455.6409715055494,10,0,0,0,0,0,0,0,0,3,90.0,2,,2,109426,2,1,0,1,1,,0.0,460.0,12,1.0,0.0,2.0,1.0,1.0,1,1,332.427899772686,384.0,41758.91579741,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014942916694180602,41758.91579741,9,5,9,9_0,9_4,9_0_1 +9416,1,29.0,345.0,1,120,0.0,0.0,0.0,0,69,0.0,0.0,0.0,774.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,17.0,1,,1,109427,2,1,1,0,1,,161.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2019.96472686316,0.0,15400.744462184748,0,1,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.050257310735886365,11846.726509372882,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +9417,2,32.0,0.0,1,111,310.0,695.0,0.0,42,37,0.0,0.0,528.612168445339,1005.0,0.0,1319.4603133181533,10,0,0,0,0,0,0,0,0,3,40.0,1,,1,109428,2,3,3,0,1,,240.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,668.363098637482,310.0,67809.71110195358,1,1,1,2,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014820886030453036,37672.061723307546,9,5,9,9_1,9_4,9_1_0 +9418,1,39.0,387.0,7,111,300.0,,,0,52,0.0,0.0,,420.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,5,109429,2,2,0,0,2,,420.0,387.0,32,2.0,0.0,4.0,4.0,2.3,3,2,97.73370296942049,300.0,27704.916004595918,0,4,2,3,76.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015159764423408719,12045.61565417214,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9419,2,70.0,0.0,6,111,300.0,300.0,0.0,77,78,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,4,109430,2,1,0,1,1,,0.0,620.0,41,1.0,2.0,4.0,3.0,2.0,3,3,210.290694225511,300.0,42653.21099813946,5,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014066936250735544,21326.60549906973,6,3,6,6_0,6_4,6_0_0 +9420,1,26.0,150.0,9,112,0.0,0.0,0.0,43,62,0.0,0.0,0.0,2486.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,6.0,1,2013.0,6,109431,2,1,1,0,1,,0.0,580.0,43,2.0,0.0,4.0,2.0,1.5,2,2,5058.17067947629,0.0,31194.53807281862,1,1,2,3,115.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07969343845377141,20796.358715212413,5,3,5,5_1,5_0,5_0_0 +9421,2,73.0,0.0,1,221,1945.0,0.0,0.0,77,74,0.0,0.0,3316.615056858659,2065.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,109432,2,1,2,0,1,,610.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1850.68121528872,1945.0,46242.41052711327,5,5,0,1,131.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044655976547529466,30828.27368474218,8,4,8,8_1,8_1,8_1_0 +9422,1,34.0,380.0,2,111,400.0,350.0,0.0,21,52,0.0,0.0,682.0802173488245,750.0,0.0,664.4764167789261,43,0,0,0,0,0,0,0,0,2,45.0,2,,2,109433,2,2,0,1,1,96.0,0.0,360.0,43,2.0,0.0,3.0,3.0,1.8,2,2,206.61996600047,400.0,40146.39712399113,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01868162658989408,22303.553957772852,6,3,6,6_0,6_4,6_0_1 +9423,1,56.0,59.0,6,120,900.0,0.0,0.0,85,78,0.0,794.5963662061343,1534.680489034855,1750.0,346.39730634913025,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109434,2,2,3,0,1,,280.0,480.0,41,1.0,2.0,4.0,3.0,2.0,3,3,179.319697139785,900.0,23927.744787362197,6,5,2,3,82.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07313685495861227,11963.872393681098,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +9424,1,21.0,55.0,7,112,300.0,0.0,0.0,0,54,0.0,0.0,511.56016301161833,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,109435,1,2,0,4,2,,0.0,343.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1097.69258797389,300.0,756.1456582750606,0,1,3,4,21.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.39674895533271715,756.1456582750606,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9425,1,35.0,170.0,5,111,216.0,330.0,0.0,85,90,0.0,0.0,368.3233173683652,546.0,0.0,626.5063358201304,71,0,0,0,0,0,0,0,0,0,,2,,3,109436,2,3,0,1,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,176.804126087419,216.0,14907.44364304253,6,4,1,2,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03662599792921734,6211.434851267722,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9426,0,48.0,0.0,7,111,600.0,,,0,56,0.0,0.0,,669.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,5,109437,2,1,0,0,1,,1000.0,,32,1.0,0.0,7.0,5.0,2.5999999999999996,3,2,81.75611758047265,600.0,15741.364982916553,0,4,5,0,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04249949103689787,6054.371147275599,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9427,2,38.0,0.0,6,111,1040.0,0.0,0.0,0,63,1476.555991451242,0.0,1773.4085651069436,2580.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109438,2,1,2,0,1,,472.0,,22,1.0,1.0,4.0,3.0,2.0,3,3,770.073145878367,1040.0,41650.72969189223,0,1,0,1,98.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06194369268162486,20825.364845946115,5,3,5,5_1,5_2,5_0_0 +9428,2,32.0,0.0,5,112,120.0,0.0,0.0,54,48,0.0,0.0,204.62406520464734,120.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,1,,3,109439,2,1,2,0,1,,281.0,328.0,43,2.0,0.0,5.0,4.0,2.1,2,2,911.54838798097,120.0,63484.74327281283,4,1,2,3,100.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018902179297524177,30230.83012991087,8,4,8,8_1,8_1,8_0_0 +9429,2,54.0,0.0,5,111,300.0,0.0,0.0,56,63,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,3,109440,2,1,0,1,1,817.0,0.0,948.0,43,3.0,0.0,4.0,5.0,2.8,4,4,233.87115468313,300.0,59701.23856555024,1,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00502502137657678,21321.870916267944,6,3,6,6_0,6_4,6_0_0 +9430,0,34.0,0.0,9,111,1576.0,0.0,0.0,43,46,0.0,0.0,2687.3960563543683,1576.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,12.0,2,2008.0,6,109441,2,1,0,0,1,,288.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1773.89761913021,1576.0,55518.90719633588,1,1,5,0,60.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028386725884691266,30843.83733129771,8,4,8,8_0,8_3,8_0_0 +9431,2,74.0,0.0,1,111,368.0,798.0,0.0,77,78,0.0,0.0,627.5137999609185,1166.0,0.0,1515.0062302559516,71,0,0,0,0,0,0,0,0,0,,1,,1,109442,2,1,1,0,1,,308.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1261.77427448403,368.0,37226.17052663325,5,5,0,1,74.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03132205068382717,24817.4470177555,7,4,7,7_1,7_3,7_1_0 +9432,2,75.0,0.0,2,111,420.0,1281.0,0.0,0,72,0.0,0.0,716.1842282162656,1701.0,0.0,2431.98368541087,44,0,0,0,0,0,0,0,0,0,,1,,2,109443,2,1,2,0,1,,158.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,506.841062660182,420.0,25181.915570154182,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06754847522465843,25181.915570154182,7,4,7,7_1,7_3,7_0_1 +9433,2,25.0,0.0,7,111,1320.0,1800.0,0.0,0,65,0.0,0.0,2250.864717251121,3120.0,0.0,3417.30728629162,20,0,0,0,0,0,0,0,0,0,,1,,5,109444,2,1,2,0,2,,0.0,608.0,22,3.0,0.0,4.0,6.0,3.5,6,5,648.235694946863,1320.0,53335.691739108246,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058497413238052534,15238.769068316642,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +9434,2,61.0,0.0,1,111,1000.0,0.0,0.0,0,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,109445,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,844.083354693517,1000.0,51190.50781644501,0,4,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019534871652098534,51190.50781644501,10,5,10,10_0,10_4,10_1_0 +9435,0,75.0,0.0,9,111,850.0,0.0,0.0,71,78,0.0,0.0,1449.420461866252,1070.0,304.8296295872346,0.0,71,0,0,0,0,0,0,0,0,0,,2,2011.0,6,109446,2,1,0,0,1,,520.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1537.41945305107,850.0,16808.734313404297,5,5,0,1,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06365738074321976,11205.822875602864,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +9436,1,28.0,434.0,1,111,0.0,0.0,1400.0,81,55,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,31,2,2,2,2,1,2,2,2,2,10.0,1,,1,109447,1,3,3,0,1,,300.0,448.0,43,2.0,0.0,4.0,4.0,2.1,2,2,77.2103005498137,0.0,27155.047069093765,4,1,2,3,79.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05155579353030824,12930.974794806554,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +9437,1,51.0,176.0,2,111,550.0,500.0,0.0,0,68,0.0,0.0,937.8602988546337,1050.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,109448,1,1,0,0,2,,250.0,325.0,12,1.0,1.0,3.0,1.0,1.0,1,1,363.124260946022,550.0,21838.783953482114,0,1,2,3,68.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04807960013875138,21838.783953482114,6,3,6,6_0,6_2,6_0_1 +9438,2,58.0,0.0,5,111,2000.0,0.0,0.0,42,37,0.0,132.4327277010224,3410.4010867441225,4491.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,109449,2,1,2,0,1,,700.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,610.781246841932,2000.0,92137.52547436759,1,1,0,1,230.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048742355265981,46068.762737183795,10,5,10,10_1,10_4,10_0_0 +9439,2,66.0,0.0,2,111,450.0,,,0,77,0.0,0.0,,588.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,,2,109450,1,2,0,0,2,,0.0,375.0,21,0.0,2.0,4.0,2.0,1.5,2,2,88.690654472359,450.0,24000.04618731639,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02449995285053859,16000.03079154426,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +9440,2,69.0,0.0,5,111,732.0,0.0,0.0,74,74,1877.3354748451507,0.0,1248.206797748349,2512.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,1,,3,109451,2,1,3,0,1,,403.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,764.751453673191,732.0,176658.72737895223,5,5,0,1,175.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.014219506940132576,88329.36368947611,10,5,10,10_1,10_4,10_0_0 +9441,1,34.0,16.0,5,111,340.0,0.0,0.0,52,63,0.0,0.0,579.7681847465008,430.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,109452,1,2,0,1,2,866.0,0.0,309.0,43,2.0,0.0,3.0,3.0,1.8,2,2,411.329138504883,340.0,38689.096911614004,1,4,2,3,80.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01111424236606875,21493.942728674447,6,3,6,6_0,6_2,6_0_0 +9442,2,70.0,0.0,2,111,352.0,0.0,0.0,62,75,1719.1330471896606,0.0,600.2305912669656,2162.0,249.40606057137379,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,109453,1,2,1,0,2,,350.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1512.22097359394,352.0,45773.379242916126,1,5,0,1,130.0,6,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047232693669532616,30515.586161944084,8,4,8,8_1,8_2,8_0_1 +9443,0,42.0,0.0,1,111,311.0,270.0,0.0,85,21,0.0,0.0,530.317368988711,581.0,0.0,512.596092943743,42,0,0,0,0,0,0,0,0,0,,2,,1,109454,2,3,0,0,1,,0.0,,42,1.0,0.0,2.0,4.0,2.1,2,2,1037.8413628835,311.0,35363.41589212086,6,1,5,0,34.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016429408340313912,16839.721853390885,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +9444,0,74.0,0.0,1,111,392.0,,,0,75,0.0,0.0,,644.0,349.1684847999233,,60,2,2,1,2,1,2,2,2,0,,1,,1,109455,1,1,0,0,2,,300.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,121.483430756056,392.0,50530.68344029413,0,5,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.01274473163935998,50530.68344029413,10,5,10,10_1,10_2,10_1_0 +9445,0,92.0,0.0,2,221,300.0,0.0,0.0,0,86,0.0,529.7309108040896,511.56016301161833,780.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,109456,2,3,0,1,1,,800.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,786.860916600386,300.0,9365.43786410377,0,6,0,1,80.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08328494741176125,9365.43786410377,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +9446,2,53.0,0.0,2,111,0.0,0.0,871.0,85,21,0.0,0.0,549.0072309512418,871.0,0.0,1042.353700528837,50,2,2,2,2,2,2,1,2,2,5.0,2,,2,109457,2,1,0,0,1,,724.0,456.0,42,3.0,0.0,4.0,4.0,2.5,4,4,489.333552262001,0.0,80738.96330410954,6,1,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.010787852164007994,32295.585321643815,8,4,8,8_0,8_2,8_0_1 +9447,2,74.0,0.0,1,111,1370.0,0.0,0.0,77,75,0.0,529.7309108040896,2336.124744419724,1910.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109458,2,1,2,0,1,,299.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1171.13001262387,1370.0,25739.384446635097,5,5,0,1,80.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.074205348770479,17159.589631090064,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +9448,2,33.0,0.0,9,120,345.0,574.0,0.0,65,63,0.0,0.0,588.2941874633611,919.0,0.0,1089.7413235174388,50,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,109459,2,1,1,0,1,,397.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2357.04441019882,345.0,47395.33599685849,1,1,1,2,110.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01939009357504954,22569.207617551663,6,3,6,6_1,6_1,6_0_0 +9449,2,36.0,0.0,2,111,192.0,0.0,0.0,67,43,0.0,0.0,327.3985043274357,588.0,0.0,0.0,44,2,2,1,2,2,2,2,1,0,,2,,2,109460,2,1,0,1,1,590.0,0.0,318.0,43,2.0,0.0,3.0,2.0,1.5,2,2,560.872905853589,192.0,30199.175854792265,1,1,2,3,66.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019470730023471522,20132.783903194842,5,3,5,5_0,5_3,5_0_1 +9450,2,45.0,0.0,9,300,567.0,0.0,0.0,63,43,1993.3505884591768,0.0,966.8487080919587,2529.0,99.7624242285495,0.0,33,1,2,1,1,1,2,2,2,0,,1,2004.0,6,109461,2,1,1,0,1,,366.0,,43,2.0,1.0,6.0,5.0,2.5999999999999996,3,2,1113.90905415165,567.0,57191.87606725239,1,1,1,2,120.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04421956707673181,21996.875410481694,6,3,6,6_1,6_0,6_0_0 +9451,2,36.0,0.0,1,111,0.0,0.0,0.0,31,38,0.0,0.0,0.0,4193.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,109462,2,1,4,0,2,,255.0,950.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1293.14535678897,0.0,71059.01655630396,1,1,2,3,100.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05900729004147778,33837.626931573315,9,5,9,9_1,9_3,9_1_0 +9453,2,60.0,0.0,2,111,190.0,70.0,0.0,0,54,0.0,0.0,323.9881032406916,260.0,0.0,132.89528335578524,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,109464,1,2,0,1,1,576.0,192.0,247.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1430.77577843465,190.0,25076.085968042495,0,1,2,3,59.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010368444275209042,25076.085968042495,7,4,7,7_0,7_3,7_0_1 +9454,0,83.0,0.0,1,400,443.0,0.0,0.0,86,78,1582.0242765549024,0.0,755.4038407138231,2966.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109465,1,3,4,0,2,,120.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,914.260224683101,443.0,18306.266076807147,5,5,0,1,250.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.16202102534485335,12204.177384538098,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9455,1,73.0,64.0,5,211,1200.0,,,0,78,0.0,0.0,,1480.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,,3,109466,1,2,0,0,2,,1200.0,,21,0.0,7.0,5.0,2.0,1.5,2,2,33.3782073906261,1200.0,10675.473380419882,0,5,1,2,118.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13863553842160295,7116.982253613255,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9456,2,50.0,0.0,7,111,383.0,1728.0,0.0,0,43,0.0,0.0,653.0918081114994,2111.0,0.0,3280.614994839955,33,0,0,0,0,0,0,0,0,2,25.0,2,,5,109467,1,2,0,0,1,,0.0,739.0,32,1.0,0.0,4.0,2.0,1.5,2,2,781.797724739965,383.0,35683.71805871474,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05915863354055528,23789.14537247649,6,3,6,6_0,6_4,6_0_0 +9457,2,74.0,0.0,1,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,1093.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,109468,2,1,0,1,1,408.0,0.0,248.0,41,0.0,1.0,1.0,2.0,1.5,2,2,911.788096843235,0.0,37245.11442940745,5,5,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029346130807884032,24830.076286271633,7,4,7,7_0,7_4,7_1_0 +9458,2,31.0,0.0,1,111,564.0,0.0,0.0,46,45,0.0,0.0,961.7331064618425,564.0,0.0,0.0,20,2,2,2,2,1,1,1,2,1,6.0,2,,1,109469,1,2,0,0,1,,0.0,850.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1567.70789172404,564.0,25117.34785077383,4,1,2,3,72.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.02245460003782302,13954.082139318794,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +9459,2,71.0,0.0,1,112,1192.0,0.0,0.0,0,75,0.0,463.51454695357836,2032.5990476994969,1642.0,138.5589225396521,0.0,20,2,2,2,2,1,2,2,1,0,,1,,1,109470,2,3,3,0,1,,191.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2071.41187292223,1192.0,25040.445190655406,0,5,1,2,80.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.06557391402181466,25040.445190655406,7,4,7,7_1,7_0,7_1_0 +9460,2,75.0,0.0,2,111,246.0,1248.0,0.0,0,78,0.0,0.0,419.479333669527,1494.0,0.0,2369.3330518288567,70,0,0,0,0,0,0,0,0,0,,1,,2,109471,2,1,1,0,1,,60.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,527.427305381329,246.0,22693.86633495671,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06583276634967675,22693.86633495671,6,3,6,6_1,6_3,6_0_1 +9461,2,63.0,0.0,2,111,196.0,202.0,0.0,0,77,0.0,0.0,334.219306500924,398.0,0.0,383.49781768383735,50,0,0,0,0,0,0,0,0,0,,2,,2,109472,1,1,0,1,2,,94.0,422.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1766.84566767412,196.0,15298.21179240651,0,5,2,3,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026016112562747568,15298.21179240651,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +9462,1,57.0,150.0,2,400,1800.0,0.0,0.0,0,52,0.0,0.0,3069.36097806971,1870.0,96.99124577775646,0.0,60,2,2,2,2,2,2,2,1,0,,1,,2,109473,1,1,1,0,2,,0.0,308.0,12,1.0,6.0,2.0,1.0,1.0,1,1,2461.52541926895,1800.0,5322.413287281699,0,4,2,3,63.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,1,1,0.3513443806531341,5322.413287281699,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +9463,2,34.0,0.0,9,111,320.0,,,0,54,0.0,0.0,,320.0,0.0,,31,2,2,1,2,1,2,2,2,2,10.0,2,2007.0,6,109474,1,1,0,0,1,,220.0,790.0,32,2.0,0.0,3.0,3.0,1.8,2,2,180.55352340226995,320.0,49254.722929793614,0,1,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.006496838901238356,27363.73496099645,7,4,7,7_0,7_2,7_0_0 +9464,2,49.0,0.0,5,111,1300.0,0.0,0.0,45,47,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,109475,1,2,0,0,1,,0.0,441.0,43,2.0,0.0,4.0,3.0,1.8,2,2,905.129008392887,1300.0,53308.50829039288,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02438635110399971,29615.837939107154,8,4,8,8_0,8_4,8_0_0 +9465,2,46.0,0.0,5,120,715.0,0.0,0.0,47,43,1792.9608467622227,0.0,1219.2183885110237,2535.0,166.2707070475825,0.0,33,0,0,0,0,0,0,0,0,3,60.0,1,,3,109476,2,1,2,0,1,,500.0,,43,2.0,2.0,5.0,4.0,2.5,4,3,288.916785756144,715.0,67888.96013524564,1,1,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03734038634484717,27155.584054098254,7,4,7,7_1,7_0,7_0_0 +9466,1,35.0,157.0,9,111,834.0,,,54,21,0.0,0.0,,926.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,109477,2,1,0,0,2,,780.0,803.0,43,2.0,0.0,4.0,3.0,1.8,2,2,245.31380412116374,834.0,23758.89284447373,1,1,2,3,62.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038974880103278285,13199.384913596516,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9467,1,42.0,256.0,2,111,500.0,300.0,0.0,63,55,0.0,0.0,852.6002716860306,800.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,109478,2,2,0,1,1,114.0,0.0,414.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,248.368970878991,500.0,32237.558181354456,1,1,2,3,93.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024815775298474795,12399.060838982485,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +9468,2,77.0,0.0,5,111,260.0,0.0,0.0,0,78,0.0,0.0,443.3521412767359,260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,109479,1,3,0,1,1,605.0,0.0,455.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1530.09953588341,260.0,14014.000940929247,0,5,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018552874450054074,14014.000940929247,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +9469,2,50.0,0.0,7,120,420.0,0.0,0.0,52,11,1582.0242765549024,0.0,716.1842282162656,1986.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,109480,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1615.34069213748,420.0,52856.87457494496,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037573163679666316,25169.94027378331,7,4,7,7_1,7_0,7_0_0 +9470,2,36.0,0.0,2,111,324.0,84.0,0.0,0,43,0.0,0.0,552.4849760525478,408.0,0.0,159.4743400269423,33,2,1,2,2,1,2,2,2,2,15.0,2,,2,109481,2,1,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,871.278180850453,324.0,30661.06111144975,0,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013306780170358835,23585.431624192115,6,3,6,6_0,6_4,6_0_1 +9471,2,74.0,0.0,2,112,550.0,0.0,0.0,78,74,1771.8671897414906,0.0,937.8602988546337,2362.0,182.89777775234077,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,109482,2,2,2,0,1,,420.0,635.0,41,0.0,2.0,5.0,2.0,1.5,2,2,2107.09310827712,550.0,51052.65222082676,5,5,2,3,100.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04626596067493688,34035.10148055117,9,5,9,9_1,9_1,9_0_1 +9472,2,51.0,0.0,7,111,600.0,,,68,85,0.0,0.0,,945.0,478.02828276179974,,71,0,0,0,0,0,0,0,0,0,,1,,5,109483,1,2,0,0,2,,500.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,114.45607852240879,600.0,8324.523819609009,4,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1135200067268695,5549.682546406006,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9473,2,52.0,0.0,2,111,320.0,1355.0,0.0,47,21,0.0,264.8654554020448,545.6641738790596,1875.0,0.0,2572.472984958414,31,0,0,0,0,0,0,0,0,0,,1,,2,109484,2,1,1,0,1,,316.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,729.879884195947,320.0,88646.58478029764,1,1,0,1,100.0,4,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021151407069398265,59097.72318686509,10,5,10,10_1,10_2,10_0_1 +9474,2,71.0,0.0,2,111,826.0,1954.0,0.0,21,72,0.0,331.081819252556,1408.4956488253226,3030.0,0.0,3709.676909674348,60,0,0,0,0,0,0,0,0,0,,1,,2,109485,2,2,3,0,1,,550.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,784.552238679299,826.0,7849.17184000757,5,5,0,1,150.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.38602798636105257,5232.781226671713,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +9475,2,40.0,0.0,2,111,600.0,0.0,0.0,52,65,0.0,0.0,1023.1203260232367,725.0,173.19865317456512,0.0,50,2,2,2,2,1,2,2,1,1,12.0,2,,2,109486,1,3,0,1,2,,0.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,351.530297301908,600.0,64345.29470946649,1,1,1,2,108.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011267335137301623,22188.032658436725,6,3,6,6_0,6_3,6_0_1 +9476,2,63.0,0.0,5,111,540.0,,,78,52,0.0,0.0,,729.0,261.87636359994247,,71,0,0,0,0,0,0,0,0,2,1.0,1,,3,109487,2,2,0,0,2,,500.0,,42,2.0,12.0,6.0,3.0,2.0,3,3,82.59336715223124,540.0,46322.640046103996,5,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015737445000424004,23161.320023051998,6,3,6,6_1,6_3,6_0_0 +9477,2,36.0,0.0,1,111,400.0,1200.0,0.0,22,21,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,2,,1,109488,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,865.448231209735,400.0,5948.309961638484,1,1,1,2,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.26898396524704205,3304.6166453547135,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +9478,2,60.0,0.0,1,111,0.0,0.0,0.0,43,37,0.0,0.0,0.0,874.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,2,,1,109489,2,1,0,0,1,,163.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1703.66304783958,0.0,102412.85212708826,4,1,0,1,100.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.008534085145050134,68275.23475139217,10,5,10,10_0,10_3,10_1_0 +9479,2,52.0,0.0,8,112,1395.0,0.0,0.0,0,85,0.0,0.0,2378.7547580040255,1395.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,109490,2,1,1,0,1,,511.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,788.178296262995,1395.0,15446.241003498606,0,7,1,2,96.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09031323541332999,15446.241003498606,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9480,2,56.0,0.0,6,111,1500.0,0.0,0.0,85,78,0.0,0.0,2557.8008150580918,1620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109491,2,1,2,0,1,,600.0,,41,2.0,1.0,5.0,4.0,2.5,4,3,942.147105637493,1500.0,78960.28067374445,6,5,1,2,95.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02051664439610681,31584.11226949778,8,4,8,8_1,8_3,8_0_0 +9481,2,47.0,0.0,7,211,750.0,0.0,0.0,52,48,843.7462808292812,0.0,1278.9004075290459,1614.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,23.0,1,,5,109492,2,1,2,0,1,,398.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1428.70295846386,750.0,65479.762991728974,1,1,0,1,120.0,2,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02464883692697347,43653.175327819314,10,5,10,10_1,10_1,10_0_0 +9482,1,88.0,116.0,2,111,740.0,500.0,0.0,0,77,0.0,0.0,1261.8484020953254,1240.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,109493,1,1,0,4,1,,0.0,210.0,11,0.0,0.0,3.0,1.0,1.0,1,1,399.243695686694,740.0,12096.646519764468,0,5,2,3,57.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.102507748570977,12096.646519764468,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9483,1,56.0,223.0,2,111,450.0,0.0,0.0,85,67,0.0,198.6490915515336,767.3402445174275,725.0,173.19865317456512,0.0,71,2,2,2,1,2,2,2,1,2,15.0,1,,2,109494,1,2,1,0,2,,700.0,437.0,42,2.0,4.0,5.0,4.0,2.5,4,3,441.949525065325,450.0,31578.738790544943,7,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.022958484973347758,12631.495516217978,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +9484,2,52.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,515.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,109495,2,1,0,0,1,,221.0,570.0,32,2.0,2.0,3.0,2.0,1.5,2,2,402.653308955098,0.0,51625.48267528742,0,1,2,3,80.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009975693655771379,34416.98845019162,9,5,9,9_0,9_2,9_0_1 +9485,2,52.0,0.0,2,221,960.0,1015.0,0.0,85,67,0.0,198.6490915515336,1636.9925216371787,2125.0,0.0,1926.9816086588858,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,109496,2,2,4,0,1,,900.0,,42,1.0,0.0,6.0,7.0,3.3999999999999995,5,3,2496.82588275452,960.0,34153.0,6,1,0,1,95.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06222000995520159,10045.000000000002,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +9486,2,62.0,0.0,7,111,2995.0,0.0,0.0,23,37,0.0,0.0,5107.075627399323,2995.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,150.0,1,,5,109497,2,1,2,0,1,,470.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,598.057848739794,2995.0,85565.09114740007,1,1,0,1,155.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0350025922936331,42782.54557370004,9,5,9,9_1,9_4,9_0_0 +9487,2,73.0,0.0,5,112,840.0,0.0,0.0,0,78,0.0,0.0,1432.3684564325313,890.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109498,2,1,2,0,1,,180.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1555.25347023138,840.0,22703.054124772716,0,5,0,1,105.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039201774136144334,22703.054124772716,6,3,6,6_1,6_0,6_0_0 +9488,2,93.0,0.0,1,120,1413.0,0.0,0.0,0,71,0.0,946.89400306231,2409.4483677847224,2184.0,77.59299662220518,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109499,2,3,4,0,2,,162.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,583.452054483193,1413.0,17799.24080645851,0,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12270186261020351,17799.24080645851,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9489,2,39.0,0.0,6,111,720.0,0.0,0.0,0,46,0.0,0.0,1227.744391227884,720.0,0.0,0.0,20,2,1,2,1,1,2,2,2,0,,2,,4,109500,1,2,0,1,1,782.0,0.0,762.0,22,2.0,4.0,5.0,3.0,2.0,3,3,424.278895900736,720.0,54396.05056982951,0,1,2,3,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.013236255067373299,27198.025284914755,7,4,7,7_0,7_4,7_0_0 +9490,1,47.0,434.0,7,111,300.0,350.0,0.0,0,85,0.0,0.0,511.56016301161833,650.0,0.0,664.4764167789261,71,2,2,2,2,1,2,2,2,0,,2,2001.0,5,109501,2,1,0,0,1,,0.0,456.0,31,0.0,1.0,4.0,3.0,2.0,3,2,282.805667823256,300.0,12503.438322953432,0,6,2,3,86.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.05198570050981495,6251.719161476716,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9491,2,49.0,0.0,2,111,1100.0,1250.0,0.0,52,52,0.0,0.0,1875.7205977092674,2350.0,0.0,2373.130059924736,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,109502,2,1,4,0,1,,597.0,,43,5.0,1.0,6.0,5.0,3.0,5,5,356.787633107723,1100.0,109379.05942058499,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021484916879416255,36459.68647352833,9,5,9,9_1,9_3,9_0_1 +9492,2,68.0,0.0,1,111,1200.0,3000.0,0.0,77,74,0.0,0.0,2046.2406520464733,4200.0,0.0,5695.512143819367,20,0,0,0,0,0,0,0,0,0,,1,,1,109503,2,2,3,0,1,,250.0,,41,2.0,2.0,5.0,5.0,3.0,5,5,571.150211568641,1200.0,9720.241795391796,6,5,0,1,210.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.43208801678072967,3240.080598463932,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +9493,2,81.0,0.0,5,111,750.0,0.0,0.0,0,86,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,109504,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1068.68321333796,750.0,34101.31789518288,0,5,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021993284901928797,34101.31789518288,9,5,9,9_0,9_4,9_0_0 +9494,2,27.0,0.0,5,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,618.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,3,109505,2,1,0,1,1,470.0,0.0,343.0,43,2.0,0.0,2.0,2.0,1.5,2,2,212.554820206039,0.0,18323.937539678922,1,1,2,3,49.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033726375603593595,12215.958359785947,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +9495,2,51.0,0.0,6,112,200.0,0.0,0.0,90,46,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,109506,2,1,2,0,1,,450.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1674.90048645701,200.0,69412.04074499157,1,1,0,1,95.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0028813444735729227,34706.02037249578,9,5,9,9_1,9_0,9_0_0 +9496,2,43.0,0.0,7,111,1284.0,0.0,0.0,37,37,0.0,0.0,2189.4774976897265,1284.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,5,109507,2,2,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1294.84488211945,1284.0,109194.06076306183,1,1,1,2,101.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011758881307529424,51997.171791934205,10,5,10,10_0,10_4,10_0_0 +9497,1,79.0,73.0,2,211,180.0,150.0,0.0,0,78,0.0,0.0,306.936097806971,330.0,0.0,284.77560719096834,50,2,2,2,2,1,2,2,2,0,,2,,2,109508,1,3,0,1,2,717.0,165.0,223.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1005.62127940239,180.0,11291.870251846776,0,5,2,3,65.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.029224565341248832,11291.870251846776,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +9498,0,73.0,0.0,6,211,1286.0,0.0,0.0,77,78,0.0,0.0,2192.8878987764706,1346.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109509,2,1,2,0,1,,223.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1122.69272212219,1286.0,33379.89737402839,5,5,0,1,88.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04032367100826591,22253.26491601893,6,3,6,6_1,6_1,6_0_0 +9499,1,31.0,420.0,2,111,480.0,200.0,0.0,0,46,0.0,0.0,818.4962608185893,680.0,0.0,379.7008095879578,60,2,2,2,2,1,2,2,2,0,,2,,2,109510,1,3,0,1,2,648.0,0.0,520.0,22,4.0,0.0,4.0,7.0,4.0,7,7,229.253180608383,480.0,22758.507205283626,0,1,2,3,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02987893686814972,5689.626801320906,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +9500,2,79.0,0.0,1,111,700.0,0.0,0.0,0,71,0.0,900.5425483669522,1193.6403803604428,1380.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109511,2,2,2,0,2,,167.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,1866.95411331335,700.0,9500.40274042061,0,5,0,1,130.0,6,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14525699990892213,9500.40274042061,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +9501,2,89.0,0.0,6,112,1676.0,0.0,0.0,77,74,0.0,0.0,2857.9161106915744,1676.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,109512,2,1,2,0,1,,155.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,859.474136731421,1676.0,60718.255828913054,5,5,0,1,106.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027602900925258723,40478.83721927537,9,5,9,9_1,9_0,9_0_0 +9502,2,66.0,0.0,7,111,720.0,0.0,0.0,78,78,1371.087706347582,0.0,1227.744391227884,2074.0,74.82181817141213,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,109513,2,1,2,0,1,,400.0,,41,2.0,1.0,5.0,4.0,2.5,4,4,819.3175473838,720.0,14957.467477884467,6,5,0,1,100.0,7,6,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13865983683845787,5982.986991153787,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9503,2,55.0,0.0,6,111,1185.0,0.0,0.0,90,22,0.0,132.4327277010224,2020.6626438958924,1315.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,1,8.0,1,,4,109514,2,1,2,0,1,,245.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1054.06855479566,1185.0,102178.03119930669,1,1,0,1,95.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01286969404837116,68118.68746620446,10,5,10,10_1,10_2,10_0_0 +9504,2,47.0,0.0,8,111,1200.0,0.0,0.0,53,46,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,109515,2,1,1,0,1,,400.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,843.943391931959,1200.0,61842.41282199865,1,1,1,2,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0194041588166032,30921.206410999326,8,4,8,8_1,8_3,8_0_0 +9505,2,54.0,0.0,2,211,432.0,,,0,55,0.0,0.0,,570.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,109516,2,1,0,0,2,,240.0,,22,3.0,2.0,4.0,5.0,2.5999999999999996,3,3,123.218046826041,432.0,35117.86961650399,0,1,0,1,98.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016231052914785094,13506.872929424613,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +9506,2,45.0,0.0,7,112,1000.0,,,48,52,0.0,0.0,,1250.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,2,35.0,1,,5,109517,2,1,0,0,2,,600.0,,42,1.0,3.0,4.0,3.0,2.0,3,2,82.98362300390062,1000.0,24664.90708752747,4,7,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0506792908468769,12332.453543763735,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9507,2,56.0,0.0,6,111,600.0,,,85,85,0.0,0.0,,840.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,4,109518,2,2,0,0,2,,900.0,,41,0.0,1.0,4.0,3.0,2.0,3,3,116.2817879860915,600.0,25600.119500850713,7,7,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032812346831899986,12800.059750425356,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9508,2,84.0,0.0,1,112,362.0,0.0,0.0,0,78,2923.5808630734596,0.0,617.2825967006861,3198.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109519,1,3,3,0,2,,67.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,857.369454653755,362.0,11425.062541545472,0,5,0,1,180.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2799109403883758,11425.062541545472,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9509,2,47.0,0.0,1,111,2400.0,0.0,0.0,52,23,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,20,2,2,2,2,1,2,2,2,1,60.0,1,,1,109520,1,2,3,0,2,,800.0,,43,2.0,3.0,3.0,4.0,2.3,3,2,362.174865158059,2400.0,72493.1275203314,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03310658654266085,31518.751095796262,8,4,8,8_1,8_4,8_1_0 +9510,1,35.0,357.0,1,111,860.0,,,0,81,0.0,0.0,,1010.0,207.83838380947813,,70,0,0,0,0,0,0,0,0,0,,2,,1,109521,1,2,0,0,2,,408.0,660.0,32,3.0,0.0,4.0,7.0,3.3999999999999995,4,3,8.139914230035334,860.0,25455.710219806162,0,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.039676755874371784,7486.973594060637,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +9511,2,39.0,0.0,9,112,1680.0,0.0,0.0,34,46,0.0,0.0,2864.7369128650625,1680.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,2008.0,6,109522,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,483.053702554974,1680.0,73011.84182807402,1,1,1,2,149.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023009966026552392,34767.543727654294,9,5,9,9_1,9_1,9_0_0 +9512,2,66.0,0.0,6,111,480.0,,,0,86,0.0,0.0,,480.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,4,109523,2,2,0,0,2,,240.0,489.0,11,0.0,2.0,3.0,1.0,1.0,1,1,130.06911341313727,480.0,38264.641545326216,0,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01254421786315228,38264.641545326216,9,5,9,9_0,9_2,9_0_0 +9513,2,66.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,392.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,109524,1,3,0,3,1,830.0,0.0,286.0,11,0.0,2.0,3.0,1.0,1.0,1,1,311.00933136167,0.0,18453.947700046847,0,5,2,3,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02124206735445581,18453.947700046847,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +9514,1,47.0,225.0,2,211,400.0,0.0,0.0,0,22,2109.365702073203,0.0,682.0802173488245,2400.0,0.0,0.0,42,2,2,2,2,1,2,2,2,2,5.0,1,,2,109525,1,2,5,0,2,,500.0,766.0,32,1.0,0.0,5.0,3.0,2.0,3,1,1066.45465644606,400.0,16340.999981211564,0,1,2,3,80.0,4,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,1,0.1468698367761737,8170.499990605782,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +9515,2,39.0,0.0,2,111,0.0,0.0,0.0,37,47,0.0,0.0,0.0,1549.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,55.0,1,,2,109526,2,1,1,0,1,,0.0,1590.0,43,2.0,0.0,5.0,3.0,1.8,2,2,611.910597667713,0.0,57908.23725470413,1,1,2,3,99.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026749216923783466,32171.24291928007,8,4,8,8_1,8_4,8_0_1 +9516,2,51.0,0.0,9,400,1500.0,0.0,0.0,78,56,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,109527,2,1,1,0,1,,180.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,1330.1678490601,1500.0,21662.145310755066,5,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0692452191822046,14441.430207170044,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9517,2,72.0,0.0,2,211,800.0,900.0,0.0,0,74,0.0,0.0,1364.160434697649,1700.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,0,,1,,2,109528,2,1,2,0,1,,300.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,1291.78842016562,800.0,49048.00358675319,0,5,0,1,100.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034659922436866185,32698.66905783546,8,4,8,8_1,8_1,8_0_1 +9518,0,82.0,0.0,1,112,360.0,0.0,0.0,0,71,1239.252349968007,0.0,613.872195613942,1663.0,177.35542085075468,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109529,1,2,4,0,2,,226.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,971.550156264685,360.0,13868.013400982276,0,5,0,1,120.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11991623831876375,13868.013400982276,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9519,2,65.0,0.0,7,112,886.0,0.0,0.0,74,74,0.0,0.0,1510.8076814276462,886.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,109530,2,1,2,0,1,,151.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1377.68208693942,886.0,76867.44356130139,5,5,0,1,97.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01152633623483809,51244.96237420093,10,5,10,10_1,10_1,10_0_0 +9520,2,39.0,0.0,9,221,528.0,0.0,0.0,52,53,0.0,542.9741835741918,900.3458869004482,938.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,109531,2,1,1,0,1,,430.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,913.264022561008,528.0,55149.31057524439,1,1,1,2,127.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01700837218482025,26261.57646440209,7,4,7,7_1,7_1,7_0_0 +9521,2,22.0,0.0,2,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,1970.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,2,109532,2,1,0,1,1,284.0,127.0,0.0,43,2.0,0.0,4.0,2.0,1.5,2,2,560.768560875564,0.0,37865.81063788172,1,1,2,3,65.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05202582400359792,25243.87375858781,7,4,7,7_0,7_2,7_0_1 +9522,1,47.0,223.0,9,211,220.0,,,0,63,0.0,0.0,,388.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,109533,2,1,0,0,1,,120.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,128.2279687083196,220.0,9386.324032372802,0,1,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04133673615590235,9386.324032372802,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9523,2,80.0,0.0,1,111,184.0,493.0,0.0,77,72,0.0,0.0,313.75689998045925,677.0,0.0,935.9624956343159,60,0,0,0,0,0,0,0,0,0,,2,,1,109534,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,832.133769084649,184.0,24957.679494203716,5,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027125919305007084,16638.45299613581,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +9524,2,47.0,0.0,2,111,200.0,0.0,0.0,0,52,0.0,0.0,341.04010867441224,200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,109535,2,1,0,1,1,388.0,0.0,246.0,12,1.0,0.0,2.0,1.0,1.0,1,1,337.952572350705,200.0,14885.073319595562,0,1,2,3,45.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01343627913049703,14885.073319595562,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +9525,2,59.0,0.0,1,111,140.0,,,0,85,0.0,0.0,,190.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,3,,1,109536,1,2,0,0,2,,500.0,0.0,11,0.0,1.0,2.0,1.0,1.0,1,1,36.612761574676135,140.0,11856.401912062705,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016025097783391937,11856.401912062705,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +9526,0,77.0,0.0,1,111,638.0,2200.0,0.0,86,74,0.0,132.4327277010224,1087.917946671375,2938.0,0.0,4176.708905467536,50,0,0,0,0,0,0,0,0,0,,1,,1,109537,2,2,1,0,1,,216.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1895.47178302539,638.0,30777.00786513721,6,5,0,1,135.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0954608717284708,20518.005243424806,5,3,5,5_1,5_3,5_1_0 +9527,2,59.0,0.0,1,111,1157.0,1840.0,0.0,0,33,0.0,0.0,1972.9170286814747,2997.0,0.0,3493.2474482092116,10,2,2,2,1,1,1,2,2,0,,1,,1,109538,2,3,4,0,2,,191.0,,32,1.0,0.0,6.0,2.0,1.5,2,2,871.458881031953,1157.0,41976.44802920032,0,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07139717962594594,27984.29868613355,7,4,7,7_1,7_4,7_1_0 +9528,1,36.0,64.0,1,111,480.0,0.0,0.0,0,63,0.0,0.0,818.4962608185893,480.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,1,109539,1,3,0,0,2,,0.0,440.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1161.23337277464,480.0,7791.484101971582,0,1,2,3,17.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.061605721543927586,7791.484101971582,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +9529,1,30.0,253.0,2,111,0.0,,,0,68,0.0,0.0,,44.0,60.965925917446924,,43,0,0,0,0,0,0,0,0,0,,2,,2,109540,2,2,0,0,2,,0.0,414.0,12,1.0,0.0,2.0,1.0,1.0,1,1,170.70205804269568,0.0,11748.0,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.003745318352059925,11748.0,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +9530,1,36.0,260.0,7,112,700.0,,,0,55,0.0,0.0,,860.0,221.69427606344334,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,109541,2,2,0,0,2,,400.0,523.0,32,1.0,0.0,3.0,3.0,1.8,2,1,104.47031947650174,700.0,25990.23339268374,0,1,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03308935271978321,14439.018551490964,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +9531,2,50.0,0.0,7,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,1327.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,5,109542,2,1,0,0,1,,315.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2758.40080985455,0.0,24200.680683547565,4,1,2,3,85.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05483316842828058,13444.822601970869,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +9532,2,67.0,0.0,1,112,3200.0,0.0,0.0,68,74,79.10121382774511,13.243272770102239,5456.641738790596,4185.0,1247.030302856869,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,109543,2,1,1,0,1,,300.0,,42,2.0,3.0,6.0,3.0,2.0,3,3,929.181239488685,3200.0,75045.0,1,5,1,2,160.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05576654007595443,37522.5,9,5,9,9_1,9_0,9_1_0 +9533,1,51.0,115.0,2,111,700.0,0.0,0.0,85,68,1845.6949893140527,0.0,1193.6403803604428,2450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,,2,109544,2,1,1,0,1,,800.0,,42,2.0,0.0,6.0,7.0,3.6,5,5,574.38052555557,700.0,64198.66606870268,7,1,1,2,250.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03816278670616169,17832.962796861855,4,2,4_1,4_1_1,4_4_1,4_0_1_1 +9534,2,50.0,0.0,2,111,1200.0,170.0,0.0,42,22,0.0,0.0,2046.2406520464733,4715.0,0.0,322.74568814976413,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,109545,2,1,0,1,1,,1100.0,,43,2.0,2.0,8.0,4.0,2.3,4,3,1716.8933730946,1200.0,124393.83180633633,1,1,0,1,153.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03790380866585564,54084.274698407105,10,5,10,10_0,10_3,10_0_1 +9535,2,54.0,0.0,2,111,0.0,,,0,67,0.0,0.0,,681.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,109546,2,1,0,0,2,,751.0,300.0,32,1.0,7.0,4.0,2.0,1.3,1,1,62.866718318120824,0.0,17892.59080977331,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038060446764815264,13763.531392133316,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +9536,2,44.0,0.0,1,111,510.0,1740.0,0.0,31,34,0.0,0.0,869.6522771197511,2250.0,0.0,3303.397043415233,10,2,2,2,1,2,1,2,2,0,,2,,1,109547,1,2,0,0,2,,0.0,1417.0,43,2.0,0.0,5.0,5.0,2.4,2,2,2128.15188145292,510.0,73430.12784690819,1,1,2,3,157.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.03064137386075295,30595.886602878414,8,4,8,8_0,8_3,8_1_0 +9537,2,52.0,0.0,2,111,210.0,796.0,0.0,75,46,0.0,0.0,358.0921141081328,1006.0,0.0,1511.209222160072,50,2,2,2,1,1,2,2,2,2,20.0,2,,2,109548,2,3,0,1,1,736.0,0.0,269.0,42,1.0,3.0,3.0,2.0,1.5,2,2,1595.68240595832,210.0,49270.17763642427,5,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.020418030708626637,32846.78509094951,8,4,8,8_0,8_3,8_0_1 +9538,1,39.0,435.0,8,211,0.0,,,0,53,0.0,0.0,,530.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2003.0,6,109549,2,1,0,0,2,,849.0,700.0,32,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,87.56471616749575,0.0,28005.96826150046,0,4,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018924537621810632,10771.526254423256,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9539,2,72.0,0.0,1,111,357.0,1282.0,0.0,86,31,0.0,0.0,608.7565939838258,1639.0,0.0,2433.8821894588095,10,0,0,0,0,0,0,0,0,0,,2,,1,109550,2,2,0,0,1,,0.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,986.96847242826,357.0,83616.34349497572,5,5,0,1,127.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019601431149623077,55744.22899665048,10,5,10,10_0,10_4,10_1_0 +9540,2,52.0,0.0,9,112,769.0,0.0,0.0,56,63,0.0,397.2981831030672,1311.2992178531151,1193.0,171.8130639491686,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,109551,2,1,1,0,1,,278.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,673.045113729506,769.0,34234.82887928316,1,1,1,2,102.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03484755259641246,22823.21925285544,6,3,6,6_1,6_0,6_0_0 +9541,2,47.0,0.0,2,111,0.0,0.0,650.0,0,52,0.0,26.486545540204478,409.70688876958343,670.0,0.0,777.8758959170425,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,109552,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,302.207473132044,0.0,18582.73233060929,0,1,1,2,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03605497771155982,18582.73233060929,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +9542,0,28.0,0.0,6,211,315.0,,,43,53,0.0,0.0,,369.0,74.82181817141213,,50,0,0,0,0,0,0,0,0,0,,1,,4,109553,1,1,0,0,2,,600.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,100.10047758267427,315.0,66635.84557179574,1,1,0,1,106.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005537560104980236,44423.89704786383,10,5,10,10_1,10_2,10_0_0 +9543,2,55.0,0.0,2,111,200.0,40.0,0.0,0,46,0.0,0.0,341.04010867441224,240.0,0.0,75.94016191759155,31,0,0,0,0,0,0,0,0,3,75.0,2,,2,109554,1,2,0,1,2,973.0,0.0,777.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1012.97145550668,200.0,32416.68935846596,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007403593789176422,32416.68935846596,8,4,8,8_0,8_4,8_0_1 +9544,2,60.0,0.0,1,400,800.0,0.0,0.0,11,11,0.0,0.0,1364.160434697649,930.0,180.1265993015477,0.0,50,2,2,1,1,1,2,2,2,1,4.0,1,,1,109555,2,2,4,0,1,,500.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,841.891205542173,800.0,4954.973544012215,1,1,0,1,168.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.18769020495050848,3303.3156960081433,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +9545,2,62.0,0.0,1,112,1800.0,0.0,0.0,78,75,0.0,0.0,3069.36097806971,1960.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109556,2,1,2,0,1,,240.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1489.57492427919,1800.0,40752.48932344695,5,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04809522148312824,27168.3262156313,7,4,7,7_1,7_0,7_1_0 +9546,2,48.0,0.0,1,111,0.0,0.0,2000.0,48,46,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,50,0,0,0,0,0,0,0,0,3,45.0,1,,1,109557,2,2,2,0,1,,800.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,675.873028487906,0.0,40013.75910246198,4,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049982807035916385,17397.28656628782,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +9547,2,46.0,0.0,2,111,1888.0,0.0,0.0,0,63,0.0,0.0,3219.4186258864515,1888.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,109558,1,1,0,0,1,,0.0,1375.0,32,1.0,0.0,3.0,2.0,1.3,1,1,502.786499640919,1888.0,41827.74290625905,0,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04513750608612166,32175.1868509685,8,4,8,8_0,8_4,8_0_1 +9549,1,38.0,46.0,8,112,240.0,,,0,54,0.0,0.0,,284.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,109560,2,2,0,0,2,,327.0,401.0,32,1.0,0.0,3.0,2.0,1.5,2,1,123.46024862803598,240.0,25181.04873867619,0,4,2,3,59.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011278322954190444,16787.365825784127,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +9550,2,61.0,0.0,6,111,720.0,0.0,0.0,0,77,0.0,0.0,1227.744391227884,720.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,109561,1,1,0,0,1,,180.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,432.336231755523,720.0,28544.056157537936,0,5,0,1,76.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.025224165620549407,28544.056157537936,8,4,8,8_0,8_2,8_0_0 +9551,2,74.0,0.0,1,400,1261.0,0.0,0.0,71,71,0.0,0.0,2150.257885192169,1389.0,177.35542085075468,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109562,2,1,2,0,1,,158.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,817.682397292019,1261.0,22104.72393826076,5,5,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06283724709159562,14736.482625507173,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9552,2,55.0,0.0,7,221,875.0,0.0,0.0,56,21,0.0,0.0,1492.0504754505534,875.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,109563,2,1,2,0,1,,381.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1969.54453505305,875.0,32256.17911260725,1,1,0,1,99.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027126585481353816,21504.119408404833,6,3,6,6_1,6_1,6_0_0 +9553,2,24.0,0.0,8,120,0.0,0.0,0.0,81,65,0.0,0.0,0.0,505.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,8,2000.0,6,109564,2,1,0,0,1,,324.0,530.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1889.39718399425,0.0,17943.38796883597,4,1,2,3,60.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02814407183732987,11962.258645890646,2,1,2_0,2_0_0,2_0_0,2_0_0_0 +9554,1,73.0,87.0,2,111,386.0,132.0,0.0,0,77,0.0,0.0,658.2074097416156,518.0,0.0,250.60253432805214,71,0,0,0,0,0,0,0,0,0,,2,,2,109565,2,1,0,1,1,873.0,0.0,290.0,11,0.0,4.0,2.0,1.0,1.0,1,1,1762.84714955084,386.0,13198.556947533385,0,5,2,3,62.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03924671477792173,13198.556947533385,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9555,2,51.0,0.0,2,112,2060.0,0.0,0.0,33,52,0.0,0.0,3512.713119346446,2150.0,124.70303028568689,0.0,71,2,2,1,2,2,2,2,1,2,45.0,1,,2,109566,2,3,2,0,1,,240.0,431.0,43,3.0,0.0,4.0,4.0,2.5,4,4,223.690331259736,2060.0,61804.32247569472,1,1,2,3,60.0,9,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03478721089201347,24721.728990277887,7,4,7,7_1,7_0,7_0_1 +9556,2,58.0,0.0,9,111,564.0,,,85,77,0.0,0.0,,804.0,332.541414095165,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,109567,2,1,0,0,1,,100.0,,41,0.0,3.0,4.0,3.0,2.0,3,3,174.96318957570068,564.0,60759.63536750511,6,5,1,2,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013232469140688551,30379.817683752553,8,4,8,8_1,8_2,8_0_0 +9557,2,58.0,0.0,2,111,1322.0,0.0,0.0,52,52,0.0,0.0,2254.275118337865,1322.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,30.0,2,,2,109568,2,1,0,0,1,,1200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,939.589054148296,1322.0,57845.92410546675,1,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02285381417003007,38563.9494036445,9,5,9,9_0,9_3,9_0_1 +9558,1,55.0,243.0,9,111,636.0,1452.0,0.0,85,21,0.0,0.0,1084.5075455846309,2088.0,0.0,2756.6278776085737,60,2,1,2,2,1,2,2,2,0,,2,2005.0,6,109569,2,1,0,1,1,1452.0,0.0,671.0,42,3.0,0.0,4.0,7.0,4.0,7,6,847.696388257178,636.0,28380.397834104042,6,1,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07357190734975888,7095.0994585260105,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9560,2,51.0,0.0,2,111,236.0,751.0,0.0,0,52,0.0,0.0,402.42732823580644,987.0,0.0,1425.7765400027815,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,109571,2,1,0,0,1,,229.0,241.0,12,1.0,1.0,3.0,1.0,1.0,1,1,243.477177649922,236.0,15136.229486138389,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06520778512930746,15136.229486138389,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +9561,2,24.0,0.0,1,111,0.0,0.0,0.0,54,62,0.0,0.0,0.0,1321.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,109572,2,1,1,0,1,,379.0,580.0,43,2.0,0.0,5.0,2.0,1.5,2,2,223.974745765975,0.0,8821.273686255683,1,1,2,3,81.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14975161716819121,5880.849124170455,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +9562,2,54.0,0.0,1,111,1920.0,1440.0,0.0,85,37,0.0,397.2981831030672,3273.9850432743574,3660.0,0.0,2733.845829033296,12,0,0,0,0,0,0,0,0,2,30.0,2,,1,109573,2,3,0,0,1,,0.0,2630.0,42,1.0,0.0,5.0,4.0,2.5,4,3,972.95507662785,1920.0,255293.6835581627,6,1,2,3,112.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014336429906876856,102117.47342326508,10,5,10,10_0,10_4,10_1_0 +9563,2,67.0,0.0,5,111,1965.0,0.0,0.0,75,74,0.0,0.0,3350.7190677261,1965.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,109574,2,1,1,0,1,,454.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,834.514726015166,1965.0,119599.37076931272,5,5,0,1,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0164298523258133,79732.91384620848,10,5,10,10_1,10_4,10_0_0 +9564,2,59.0,0.0,5,111,258.0,0.0,0.0,78,52,0.0,0.0,439.9417401899918,298.0,55.423569015860835,0.0,70,2,2,1,2,1,2,2,2,3,20.0,2,,3,109575,2,2,0,1,1,1400.0,0.0,427.0,42,1.0,7.0,2.0,2.0,1.5,2,2,1185.60994026377,258.0,29669.61021494137,5,1,2,3,68.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010043947252462711,19779.740143294246,5,3,5,5_0,5_3,5_0_0 +9565,2,64.0,0.0,9,111,510.0,480.0,0.0,77,22,0.0,0.0,869.6522771197511,990.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,109576,1,2,0,1,1,,0.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,513.40777388561,510.0,29922.87387271105,5,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03308505741164309,19948.582581807368,5,3,5,5_0,5_4,5_0_0 +9566,2,43.0,0.0,8,111,650.0,700.0,0.0,46,46,0.0,0.0,1108.3803531918397,1350.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,109577,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1520.04543325625,650.0,59991.30708821768,1,1,1,2,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022503260314278774,28567.289089627466,8,4,8,8_1,8_3,8_0_0 +9567,2,51.0,0.0,9,112,636.0,0.0,0.0,0,46,0.0,0.0,1084.5075455846309,636.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,2,2009.0,6,109578,2,1,0,0,1,,0.0,712.0,32,1.0,0.0,4.0,4.0,2.1,3,2,2824.11720430746,636.0,40472.32933763217,0,1,2,3,90.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.01571444022147328,19272.53777982484,5,3,5,5_0,5_1,5_0_0 +9568,1,46.0,411.0,6,111,625.0,231.0,0.0,0,52,0.0,0.0,1065.7503396075383,856.0,0.0,438.55443507409126,71,0,0,0,0,0,0,0,0,1,10.0,8,,4,109579,2,3,0,1,1,405.0,0.0,421.0,32,1.0,1.0,3.0,5.0,2.8,5,2,161.425726976899,625.0,22798.06778671902,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037547041618091054,8142.167066685365,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +9569,2,57.0,0.0,6,112,1076.0,0.0,0.0,47,37,0.0,92.70290939071567,1834.7957846683378,1198.0,72.05063972061909,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,109580,2,1,2,0,1,,316.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,849.46817054651,1076.0,52874.32186498547,1,1,0,1,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02265750098997188,35249.54790999031,9,5,9,9_1,9_1,9_0_0 +9570,0,80.0,0.0,1,120,379.0,0.0,0.0,0,77,1582.0242765549024,0.0,646.2710059380112,1999.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109581,2,2,2,0,1,,354.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1936.32684584977,379.0,17570.420625393188,0,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1137707538492845,17570.420625393188,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9571,2,54.0,0.0,2,111,154.0,150.0,0.0,0,67,0.0,0.0,262.6008836792974,304.0,0.0,284.77560719096834,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,109582,1,2,0,1,1,620.0,0.0,225.0,12,1.0,1.0,4.0,1.0,1.0,1,1,390.607007054434,154.0,19700.021673445073,0,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015431455103919056,19700.021673445073,5,3,5,5_0,5_2,5_0_1 +9572,2,67.0,0.0,5,112,726.0,0.0,0.0,77,78,0.0,0.0,1237.9755944881165,1190.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109583,2,1,2,0,1,,234.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,773.201773337155,726.0,32057.40667358754,5,5,0,1,140.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03712090663217791,21371.60444905836,6,3,6,6_1,6_0,6_0_0 +9573,1,56.0,316.0,8,111,610.0,1046.0,0.0,56,63,0.0,0.0,1040.1723314569574,1656.0,0.0,1985.8352341450193,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,109584,2,2,5,0,1,,1063.0,409.0,43,2.0,0.0,5.0,7.0,3.8,6,4,264.457412153622,610.0,30329.353197736746,1,4,2,3,102.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.054600570912391726,7981.4087362465125,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +9574,2,58.0,0.0,7,112,500.0,0.0,0.0,42,13,0.0,0.0,852.6002716860306,3000.0,3463.9730634913026,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,109585,1,2,2,0,2,,200.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1021.71347485186,500.0,208003.00476759765,1,1,0,1,195.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014422868570345455,104001.50238379883,10,5,10,10_1,10_0,10_0_0 +9575,1,37.0,226.0,1,111,180.0,0.0,0.0,0,63,0.0,0.0,306.936097806971,180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,109586,2,1,0,0,2,,0.0,200.0,12,1.0,1.0,1.0,1.0,1.0,1,1,2140.75178282548,180.0,18870.13559976808,0,4,2,3,25.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.009538882169040282,18870.13559976808,5,3,5,5_0,5_3,5_1_0 +9576,2,63.0,0.0,2,112,2300.0,0.0,0.0,75,75,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109587,2,1,2,0,1,,320.0,,41,0.0,1.0,4.0,3.0,2.0,3,3,244.320483699327,2300.0,44081.36427891182,7,5,0,1,110.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05217624358101598,22040.68213945591,6,3,6,6_1,6_0,6_0_1 +9577,2,31.0,0.0,9,112,1400.0,0.0,0.0,54,53,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,109588,2,1,1,0,1,,140.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,952.303854330624,1400.0,41176.49693331236,1,1,1,2,118.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033999978246507426,27450.997955541574,7,4,7,7_1,7_0,7_0_0 +9578,1,26.0,218.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,2249.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,15.0,2,,2,109589,2,3,0,0,1,,0.0,266.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1795.73718326979,0.0,10621.57057856587,0,1,2,3,60.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.21173893101444335,10621.57057856587,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9579,2,58.0,0.0,6,112,2106.0,0.0,0.0,0,43,0.0,132.4327277010224,3591.152344341561,2346.0,193.98249155551292,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,109590,2,1,2,0,1,,598.0,,32,1.0,0.0,6.0,2.0,1.5,2,1,1591.32492636981,2106.0,50165.806341514784,0,1,0,1,130.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046764921588802695,33443.87089434319,8,4,8,8_1,8_0,8_0_0 +9580,2,50.0,0.0,1,111,0.0,0.0,0.0,34,31,0.0,0.0,0.0,2986.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,109591,2,1,0,0,1,,335.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,1901.36930551618,0.0,374689.0103651284,1,1,0,1,138.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00796927563231756,187344.5051825642,10,5,10,10_0,10_3,10_1_0 +9581,1,57.0,173.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,962.0,0.0,0.0,71,2,2,2,1,1,2,2,2,3,50.0,2,,2,109592,1,2,0,1,1,,0.0,549.0,22,1.0,3.0,3.0,2.0,1.5,2,2,234.471368179545,0.0,20009.687552650288,0,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.04807671271571569,13339.791701766859,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +9582,2,42.0,0.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,827.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,109593,2,1,1,0,1,,0.0,465.0,32,1.0,1.0,3.0,2.0,1.3,1,1,958.487038786679,0.0,27309.82289215611,0,1,2,3,77.0,8,6,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030282144386865644,21007.556070889314,5,3,5,5_1,5_2,5_0_0 +9583,2,65.0,0.0,6,111,0.0,4500.0,0.0,31,31,0.0,0.0,0.0,5161.0,0.0,8543.268215729051,10,0,0,0,0,0,0,0,0,0,,1,,4,109594,2,1,2,0,1,,155.0,,43,2.0,2.0,9.0,2.0,1.5,2,2,388.408926185357,0.0,245879.80238024064,1,1,0,1,300.0,8,7,3,0,1,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020989930649198976,163919.86825349377,10,5,10,10_1,10_3,10_0_0 +9584,2,52.0,0.0,6,111,1112.0,1300.0,0.0,43,31,0.0,0.0,1896.183004229732,2412.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,0,,1,,4,109595,1,1,3,0,1,,652.0,,43,3.0,2.0,7.0,3.0,2.0,3,3,655.970114989641,1112.0,70936.13798270021,1,1,1,2,178.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03400241496919715,35468.068991350105,9,5,9,9_1,9_4,9_0_0 +9585,2,75.0,0.0,2,221,0.0,0.0,0.0,0,78,1179.1354274589205,0.0,0.0,2924.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109596,2,3,4,0,1,,0.0,370.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2437.48680496093,0.0,25807.83091620524,0,5,2,3,65.0,1,2,7,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11329894439768526,25807.83091620524,7,4,7,7_1,7_1,7_0_1 +9586,2,54.0,0.0,1,111,0.0,0.0,1890.0,0,31,0.0,0.0,1191.3015688838657,1890.0,0.0,2261.823758897247,20,0,0,0,0,0,0,0,0,1,1.0,1,,1,109597,1,1,1,0,1,,260.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,867.914824645384,0.0,18441.438374764577,0,1,1,2,90.0,4,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1024865827486804,18441.438374764577,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +9587,2,50.0,0.0,2,111,0.0,0.0,1700.0,56,63,0.0,0.0,1071.5410937050644,1700.0,0.0,2034.4446508599572,60,2,2,2,2,1,1,2,2,2,15.0,1,,2,109598,1,1,4,0,2,,700.0,560.0,43,2.0,0.0,7.0,5.0,3.0,5,5,349.383038769341,0.0,30791.713219409303,1,1,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.05520965942643357,10263.904406469768,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +9588,2,68.0,0.0,7,400,1400.0,0.0,0.0,75,75,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,109599,2,1,2,0,1,,370.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,817.519669581343,1400.0,46473.99325390863,5,5,0,1,60.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030124374988634208,30982.66216927242,8,4,8,8_1,8_0,8_0_0 +9589,2,38.0,0.0,1,111,1080.0,0.0,0.0,46,62,0.0,993.245457757668,1841.6165868418261,1905.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109600,2,1,1,0,1,,245.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1408.03104040827,1080.0,44776.38094676991,1,4,1,2,70.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04254475148995764,21322.086165128527,6,3,6,6_1,6_2,6_1_0 +9590,1,39.0,428.0,6,111,900.0,,,0,85,0.0,0.0,,1000.0,138.5589225396521,,42,0,0,0,0,0,0,0,0,0,,1,,4,109601,1,2,0,0,2,,650.0,700.0,31,0.0,0.0,6.0,4.0,2.1,2,2,117.83381441728325,900.0,16159.545284797947,0,6,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06188292940029368,7695.021564189498,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9591,1,28.0,236.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1547.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109602,1,1,0,0,1,,0.0,261.0,42,1.0,0.0,3.0,2.0,1.5,2,2,321.548518804502,0.0,6046.957107914801,6,4,2,3,45.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.25583115150182684,4031.3047386098674,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9592,2,50.0,0.0,8,120,1466.0,0.0,0.0,52,62,0.0,0.0,2499.823996583442,1538.0,99.7624242285495,0.0,50,0,0,0,0,0,0,0,0,3,60.0,1,2002.0,6,109603,1,1,1,0,1,,446.0,,43,2.0,0.0,6.0,5.0,2.8,4,4,275.153314173112,1466.0,41425.59407312081,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03712680613065579,14794.855026114576,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9593,1,18.0,357.0,9,120,752.0,,,0,56,0.0,0.0,,882.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,109604,2,1,0,0,2,,240.0,478.0,22,2.0,0.0,3.0,2.0,1.5,2,2,116.38671713995636,752.0,15529.379446640316,0,1,2,3,76.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05679557274201418,10352.919631093544,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9594,2,48.0,0.0,2,111,676.0,1335.0,0.0,43,46,0.0,0.0,1152.7155673195134,2011.0,0.0,2534.5029039996184,31,0,0,0,0,0,0,0,0,0,,1,,2,109605,2,1,1,0,1,,808.0,,43,2.0,0.0,7.0,6.0,3.3,5,4,1246.84972105029,676.0,85638.84169249661,1,1,0,1,140.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023482335354568406,25951.1641492414,7,4,7,7_1,7_3,7_0_1 +9595,2,62.0,0.0,1,400,237.5,0.0,0.0,22,46,0.0,211.89236432163582,404.98512905086454,428.0,41.567676761895626,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,109606,2,1,1,0,1,,973.0,,42,1.0,0.0,7.0,2.0,1.5,2,2,866.567754396935,237.5,116930.16016697738,4,5,0,1,230.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0036603045731641174,77953.44011131825,10,5,10,10_1,10_0,10_1_0 +9596,2,60.0,0.0,7,112,2317.0,0.0,0.0,0,46,0.0,0.0,3950.949658993066,2317.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,60.0,1,,5,109607,2,1,2,0,1,,300.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,725.409329453428,2317.0,38940.52692572746,0,1,0,1,120.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.0595009924857794,38940.52692572746,9,5,9,9_1,9_1,9_0_0 +9597,1,49.0,128.0,6,111,504.0,,,0,52,0.0,0.0,,630.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,1,3.0,2,,4,109608,2,1,0,0,1,,336.0,361.0,32,1.0,0.0,4.0,3.0,1.8,2,2,121.23841982817133,504.0,24619.088008994306,0,1,2,3,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025589899990196088,13677.271116107948,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +9598,2,48.0,0.0,2,111,600.0,800.0,0.0,52,46,0.0,662.163638505112,1023.1203260232367,1900.0,0.0,1518.8032383518312,42,0,0,0,0,0,0,0,0,1,30.0,1,,2,109609,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,5.0,3.0,5,4,401.199802876034,600.0,50938.47286159951,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0372999011015176,16979.490953866505,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +9599,1,42.0,74.0,5,111,0.0,0.0,0.0,55,65,0.0,0.0,0.0,1569.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,3,109610,1,2,0,1,1,612.0,214.0,409.0,43,2.0,0.0,3.0,4.0,2.1,2,2,288.026941201258,0.0,34615.267988887186,4,1,2,3,70.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045326819382236434,16483.460947089137,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +9600,1,38.0,101.0,1,111,500.0,900.0,0.0,85,63,0.0,0.0,852.6002716860306,1400.0,0.0,1708.65364314581,71,2,2,2,2,2,1,2,2,3,90.0,2,,1,109611,1,1,0,0,2,,0.0,273.0,42,1.0,0.0,2.0,5.0,2.4,2,2,252.327348743962,500.0,36639.962381962,6,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.03820964621648262,15266.650992484168,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +9603,1,40.0,385.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,1931.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,109614,1,1,1,0,1,,936.0,650.0,42,1.0,2.0,6.0,5.0,2.4,2,2,368.137849883105,0.0,36300.38974024569,7,1,2,3,100.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05319502115039634,15125.16239176904,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +9604,2,38.0,0.0,7,112,404.0,580.0,0.0,52,34,0.0,0.0,688.9010195223127,984.0,0.0,1101.1323478050776,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,109615,2,2,5,0,1,,535.0,403.0,43,2.0,0.0,4.0,4.0,2.1,2,2,865.734388791511,404.0,45185.61700851378,1,1,2,3,73.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021776841064593558,21516.960480244656,6,3,6,6_1,6_1,6_0_0 +9605,2,55.0,0.0,9,111,160.0,0.0,0.0,0,75,0.0,0.0,272.8320869395298,160.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,109616,2,1,1,0,1,,280.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,796.140045614754,160.0,23957.238497668757,0,5,1,2,107.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006678566063261814,23957.238497668757,6,3,6,6_1,6_3,6_0_0 +9606,2,35.0,0.0,7,111,750.0,0.0,0.0,0,46,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,41,2,2,2,1,1,2,2,2,0,,2,,5,109617,1,3,0,0,1,,0.0,280.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1308.86817201948,750.0,5924.152180240363,0,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.12660039397731507,5924.152180240363,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +9607,2,46.0,0.0,5,111,0.0,0.0,1400.0,0,37,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,41,0,0,0,0,0,0,0,0,2,45.0,2,,3,109618,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,837.823173571382,0.0,71916.2841634693,0,1,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01946707920584064,71916.2841634693,10,5,10,10_0,10_4,10_0_0 +9608,2,62.0,0.0,5,112,540.0,0.0,0.0,0,43,0.0,0.0,920.8082934209131,540.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,2,,3,109619,2,1,0,1,1,1250.0,0.0,475.0,22,2.0,2.0,3.0,2.0,1.5,2,2,360.417796566714,540.0,27859.856904943917,0,1,2,3,55.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01938272697675534,18573.237936629277,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +9609,2,49.0,0.0,2,111,360.0,0.0,0.0,0,67,0.0,0.0,613.872195613942,430.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,109620,2,1,0,1,1,620.0,0.0,341.0,32,3.0,2.0,3.0,3.0,2.0,3,3,295.942653981587,360.0,40526.51409317415,0,1,2,3,76.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010610337691798283,20263.257046587074,5,3,5,5_0,5_3,5_0_1 +9610,2,79.0,0.0,2,111,2045.0,0.0,0.0,78,78,0.0,0.0,3487.135111195865,2237.0,266.03313127613205,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109621,2,1,2,0,1,,192.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1682.51645742065,2045.0,30042.421025146105,5,5,0,1,94.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07446137573691503,20028.280683430738,5,3,5,5_1,5_2,5_0_1 +9612,2,65.0,0.0,1,120,180.0,0.0,0.0,85,75,0.0,0.0,306.936097806971,230.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109623,1,2,2,0,2,,400.0,,41,1.0,0.0,6.0,4.0,2.5,4,4,189.635209694854,180.0,34894.79708441462,6,5,0,1,130.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006591240506245185,13957.918833765847,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9613,2,67.0,0.0,5,112,1575.0,90.0,0.0,77,75,0.0,0.0,2685.6908558109963,1868.0,0.0,170.865364314581,31,0,0,0,0,0,0,0,0,0,,1,,3,109624,2,1,2,0,1,,552.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,754.1207203602,1575.0,61935.44928645422,5,5,0,1,165.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0301604335081258,41290.29952430281,9,5,9,9_1,9_2,9_0_0 +9614,2,55.0,0.0,1,111,85.0,25.0,0.0,75,37,0.0,0.0,144.9420461866252,110.0,0.0,47.462601198494724,41,0,0,0,0,0,0,0,0,2,45.0,2,,1,109625,2,1,0,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1793.72177315771,85.0,64503.894791740786,5,1,0,1,50.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0017053233817143803,43002.59652782719,9,5,9,9_0,9_3,9_1_0 +9615,1,49.0,250.0,7,111,300.0,,,0,68,0.0,0.0,,645.0,478.02828276179974,,71,0,0,0,0,0,0,0,0,3,45.0,2,,5,109626,2,1,0,0,1,,516.0,237.0,32,1.0,1.0,3.0,3.0,1.8,2,2,150.89225325660124,300.0,9389.065176735587,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06869693498328182,5216.147320408659,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9616,0,73.0,0.0,5,211,600.0,0.0,0.0,0,64,0.0,1059.4618216081792,1023.1203260232367,1400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,109627,2,1,2,0,1,,600.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1776.4573503733,600.0,30240.2357286945,0,5,5,0,110.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046295935407393705,30240.2357286945,8,4,8,8_1,8_1,8_0_0 +9617,2,79.0,0.0,7,111,200.0,562.0,0.0,0,78,0.0,0.0,341.04010867441224,762.0,0.0,1066.9592749421615,70,2,2,2,2,2,2,2,1,0,,1,,5,109628,2,2,4,0,1,,68.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1143.77392672646,200.0,18137.02355471699,0,5,0,1,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.04201350887046859,18137.02355471699,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9618,0,67.0,0.0,1,111,0.0,0.0,0.0,0,22,949.2145659329414,0.0,0.0,2038.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,109629,2,2,0,1,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1532.35088186632,0.0,79359.25320692454,0,1,0,1,85.0,9,7,4,1,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02568068520864273,79359.25320692454,10,5,10,10_0,10_3,10_1_0 +9619,2,56.0,0.0,1,221,360.0,930.0,0.0,74,48,0.0,0.0,613.872195613942,1290.0,0.0,1765.6087645840037,50,2,2,2,2,1,2,2,2,1,3.0,1,,1,109630,2,1,2,0,1,,205.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1993.27200468588,360.0,63254.36355203878,7,1,0,1,100.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.020393849966393682,42169.57570135919,9,5,9,9_1,9_1,9_1_0 +9620,2,76.0,0.0,2,111,138.0,0.0,0.0,0,75,1166.4792332464813,0.0,235.31767498534444,1244.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,109631,2,3,0,1,1,,561.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,993.995267538458,138.0,82370.8850648443,0,5,0,1,47.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015102423617528133,82370.8850648443,10,5,10,10_0,10_4,10_0_1 +9621,2,72.0,0.0,2,111,470.0,990.0,0.0,77,75,0.0,0.0,801.4442553848687,1460.0,0.0,1879.519007460391,31,0,0,0,0,0,0,0,0,0,,1,,2,109632,2,1,1,0,1,,352.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1456.73020851628,470.0,34282.43863618328,5,5,0,1,88.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042587402124277356,22854.959090788852,6,3,6,6_1,6_3,6_0_1 +9622,1,38.0,200.0,6,111,1300.0,0.0,0.0,56,63,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,4,109633,2,1,1,0,1,,620.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,4,2,237.425399447531,1300.0,25615.1933984191,1,1,1,2,89.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05075112960420719,9851.997460930424,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +9623,2,34.0,0.0,2,111,800.0,0.0,0.0,42,38,527.3414255183008,264.8654554020448,1364.160434697649,1500.0,0.0,0.0,10,1,2,2,1,1,2,2,2,2,25.0,1,,2,109634,2,1,1,0,1,,700.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,625.888263603697,800.0,81984.43994435151,1,1,1,2,140.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.018296154746170776,34160.183310146465,9,5,9,9_1,9_2,9_0_1 +9624,2,38.0,0.0,5,111,156.0,180.0,0.0,46,42,0.0,0.0,266.01128476604157,336.0,0.0,341.730728629162,10,0,0,0,0,0,0,0,0,2,45.0,2,,3,109635,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,851.05421015158,156.0,57302.46913693896,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005863621673911498,27286.890065209027,7,4,7,7_0,7_4,7_0_0 +9625,2,73.0,0.0,7,120,450.0,0.0,0.0,0,72,0.0,0.0,767.3402445174275,520.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,7,,5,109636,1,3,0,0,1,,110.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,488.455059296335,450.0,11762.013081279267,0,5,0,1,38.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04421011916979126,11762.013081279267,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +9626,2,37.0,0.0,9,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1180.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,109637,2,1,0,0,1,,0.0,707.0,22,2.0,0.0,2.0,2.0,1.5,2,2,985.623442899827,0.0,32054.283064814976,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03681255318092734,21369.522043209985,6,3,6,6_0,6_4,6_0_0 +9627,2,49.0,0.0,7,111,800.0,,,0,46,0.0,0.0,,900.0,138.5589225396521,,42,0,0,0,0,0,0,0,0,2,10.0,1,,5,109638,1,3,0,0,2,,2800.0,,32,1.0,1.0,4.0,3.0,1.6,1,1,100.57344408017065,800.0,15448.663077533893,0,1,0,1,99.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05825746833127706,9655.414423458682,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +9628,2,55.0,0.0,7,111,8000.0,0.0,0.0,56,63,0.0,0.0,13641.60434697649,8120.0,166.2707070475825,0.0,50,2,2,2,1,2,2,2,2,0,,1,,5,109639,2,1,3,0,1,,750.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,1258.15933416903,8000.0,46511.55257251648,1,1,0,1,174.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.17458028276609458,23255.77628625824,6,3,6,6_1,6_3,6_0_0 +9629,2,52.0,0.0,1,111,700.0,0.0,0.0,0,42,0.0,0.0,1193.6403803604428,750.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,109640,2,1,3,0,1,,221.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1082.04183398212,700.0,27730.34998843752,0,1,1,2,70.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027046178656696396,27730.34998843752,7,4,7,7_1,7_2,7_1_0 +9630,2,44.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,2878.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,1,,1,109641,2,3,1,0,1,,382.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1342.31685827342,0.0,22356.804699110085,0,1,0,1,100.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12873038158778383,22356.804699110085,6,3,6,6_1,6_4,6_1_0 +9631,2,42.0,0.0,7,111,1200.0,,,0,52,0.0,0.0,,1332.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,,5,109642,1,1,0,0,2,,978.0,,32,3.0,0.0,4.0,4.0,2.3,3,3,83.42232159124227,1200.0,23122.34688668306,0,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05760660916159613,10053.194298557852,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9632,2,57.0,0.0,2,111,470.0,530.0,0.0,0,77,0.0,0.0,801.4442553848687,1000.0,0.0,1006.2071454080882,71,0,0,0,0,0,0,0,0,0,,2,,2,109643,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1874.64758191246,470.0,8325.982799107169,0,7,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1201059411397336,8325.982799107169,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +9633,2,52.0,0.0,7,112,1152.0,0.0,0.0,0,46,0.0,662.163638505112,1964.3910259646145,1652.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,109644,2,2,5,0,1,,132.0,700.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1059.21032282166,1152.0,32585.45966223918,0,1,2,3,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05069745883972837,32585.45966223918,8,4,8,8_1,8_0,8_0_0 +9634,1,22.0,270.0,9,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,275.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,109645,2,1,0,0,1,,163.0,286.0,12,1.0,0.0,1.0,1.0,1.0,1,1,337.427353271815,0.0,10023.333333333332,0,4,2,3,37.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.027435982707016963,10023.333333333332,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9635,2,73.0,0.0,2,111,280.0,,,86,75,0.0,0.0,,368.0,121.93185183489385,,33,0,0,0,0,0,0,0,0,0,,1,,2,109646,2,1,0,0,2,,240.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,81.02718146150312,280.0,26694.307817385547,6,5,0,1,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01378571051616959,17796.205211590364,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +9636,0,76.0,0.0,1,111,517.0,1088.0,0.0,77,75,0.0,0.0,881.5886809233556,1605.0,0.0,2065.5724041584904,20,2,2,1,2,2,2,2,1,0,,2,,1,109647,1,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,754.109845808345,517.0,67771.9692193673,6,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.023682357447883287,45181.31281291153,10,5,10,10_0,10_4,10_1_0 +9637,2,64.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1744.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,109648,2,1,0,0,1,,391.0,530.0,11,0.0,2.0,2.0,1.0,1.0,1,1,3240.26915311655,0.0,35998.752655271644,0,5,2,3,66.0,4,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0484461230282269,35998.752655271644,9,5,9,9_0,9_2,9_0_1 +9638,2,53.0,0.0,7,400,600.0,0.0,0.0,64,67,0.0,0.0,1023.1203260232367,720.0,166.2707070475825,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,5,109649,2,1,1,0,1,,150.0,400.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1422.04023339021,600.0,36896.142298433835,1,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.019514235232949068,24597.42819895589,7,4,7,7_1,7_0,7_0_0 +9639,2,51.0,0.0,2,120,444.0,0.0,0.0,54,45,1160.1511361402618,0.0,757.1090412571951,1589.0,62.351515142843446,0.0,50,1,2,2,2,1,2,2,2,2,40.0,1,,2,109650,2,1,2,0,1,,335.0,,43,2.0,3.0,3.0,2.0,1.5,2,2,1023.6772536026,444.0,42987.13733766435,1,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.03696454563881262,28658.091558442902,8,4,8,8_1,8_0,8_0_1 +9640,2,54.0,0.0,7,111,1100.0,0.0,0.0,38,48,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,60.0,2,,5,109651,1,3,0,1,1,,0.0,366.0,43,2.0,1.0,3.0,3.0,2.0,3,2,711.319472697206,1100.0,48137.728732667405,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022851098898098072,24068.864366333702,6,3,6,6_0,6_4,6_0_0 +9641,2,62.0,0.0,5,112,457.0,0.0,0.0,77,71,0.0,0.0,779.276648321032,457.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,109652,1,3,2,0,1,,209.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,860.66773771911,457.0,20907.721306751155,7,5,0,1,105.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02185795349455101,13938.480871167436,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9642,2,75.0,0.0,7,111,430.0,0.0,0.0,0,72,0.0,0.0,733.2362336499863,430.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,109653,2,3,0,1,1,822.0,204.0,516.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1106.14695968361,430.0,19781.15598656074,0,5,2,3,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02173786002658999,19781.15598656074,5,3,5,5_0,5_4,5_0_0 +9643,2,54.0,0.0,7,112,168.0,,,0,52,0.0,0.0,,256.0,121.93185183489385,,71,2,2,2,1,1,2,2,2,1,30.0,1,,5,109654,2,2,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,110.18648670424199,168.0,16069.127096315251,0,1,0,1,41.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0159311702786085,16069.127096315251,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9644,2,50.0,0.0,8,111,840.0,,,34,33,0.0,0.0,,886.0,63.73710436823996,,42,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,109655,2,1,0,0,1,,900.0,,43,2.0,1.0,4.0,4.0,2.3,3,2,133.27656056628703,840.0,130270.63790482288,1,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006801225619600643,56639.4077847056,10,5,10,10_1,10_2,10_0_0 +9645,1,38.0,270.0,2,111,270.0,0.0,0.0,0,67,0.0,0.0,460.40414671045653,270.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109656,2,2,0,1,1,984.0,200.0,300.0,12,1.0,1.0,4.0,1.0,1.0,1,1,134.957565326083,270.0,21433.29894338541,0,4,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012597220834421547,21433.29894338541,6,3,6,6_0,6_3,6_0_1 +9646,2,34.0,0.0,1,111,900.0,1900.0,0.0,54,21,0.0,0.0,1534.680489034855,2800.0,0.0,3607.1576910855993,50,2,2,2,2,1,2,2,2,0,,1,,1,109657,2,1,3,0,1,,500.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1528.99911319547,900.0,57919.37205382725,1,1,1,2,180.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.048343065553228474,27580.653358965355,7,4,7,7_1,7_3,7_1_0 +9647,1,37.0,254.0,5,111,185.0,180.0,0.0,0,56,0.0,0.0,315.46210052383134,365.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,2,,3,109658,2,2,0,1,1,450.0,0.0,258.0,12,1.0,0.0,2.0,1.0,1.0,1,1,375.299403142422,185.0,7237.714285714285,0,4,2,3,45.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05043028580451603,7237.714285714285,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9648,2,50.0,0.0,1,111,700.0,0.0,0.0,0,62,0.0,529.7309108040896,1193.6403803604428,1580.0,665.08282819033,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109659,1,1,2,0,2,,600.0,,22,2.0,1.0,4.0,3.0,2.0,3,3,354.261671229608,700.0,43943.9714453723,0,1,0,1,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03595487499267407,21971.98572268615,6,3,6,6_1,6_3,6_1_0 +9649,1,36.0,300.0,6,111,800.0,0.0,0.0,85,63,0.0,0.0,1364.160434697649,800.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,,4,109660,2,2,2,0,1,,0.0,600.0,42,1.0,0.0,3.0,4.0,2.1,2,2,297.166468094081,800.0,14308.16323111084,6,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.05591213820237432,6813.411062433734,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +9650,2,64.0,0.0,1,112,139.2,871.2,0.0,0,31,0.0,0.0,237.3639156373909,1010.0,0.0,1653.9767265651442,44,0,0,0,0,0,0,0,0,0,,1,,1,109661,2,1,3,0,1,,345.0,1000.0,12,1.0,1.0,4.0,1.0,1.0,1,1,810.323768813713,139.2,11969.822295287546,0,1,2,3,92.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08437886336855907,11969.822295287546,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9651,2,58.0,0.0,5,112,400.0,0.0,0.0,0,75,0.0,0.0,682.0802173488245,520.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,109662,2,1,1,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,849.086884054868,400.0,26657.59320792278,0,7,0,1,110.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019506637225053507,26657.59320792278,7,4,7,7_1,7_0,7_0_0 +9652,2,61.0,0.0,2,111,350.0,80.0,0.0,37,37,1510.3058426844134,0.0,596.8201901802214,1862.0,0.0,151.8803238351831,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,109663,2,3,0,1,2,,0.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,263.247184538553,350.0,121063.56868292394,1,1,0,1,90.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015380349516019477,48425.42747316958,10,5,10,10_0,10_4,10_0_1 +9653,2,81.0,0.0,2,111,480.0,0.0,0.0,86,74,0.0,0.0,818.4962608185893,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,109664,2,1,0,1,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,790.017091278072,480.0,18344.297392821947,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026166169775890254,12229.531595214632,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +9654,2,74.0,0.0,2,111,172.0,99.0,0.0,0,86,0.0,0.0,293.2944934599945,271.0,0.0,187.95190074603912,71,2,1,2,2,1,1,2,2,0,,2,,2,109665,2,3,0,1,1,679.0,46.0,306.0,11,0.0,8.0,3.0,1.0,1.0,1,1,394.400105332834,172.0,13641.585209003215,0,5,2,3,55.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.019865726442198566,13641.585209003215,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +9655,2,50.0,0.0,7,112,2000.0,0.0,0.0,54,22,0.0,860.8127300566456,3410.4010867441225,2650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,1,,5,109666,2,1,2,0,1,,400.0,,43,3.0,1.0,5.0,4.0,2.5,4,3,1501.38917229664,2000.0,70338.16609727945,1,1,0,1,120.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03767513637382845,28135.266438911778,8,4,8,8_1,8_2,8_0_0 +9656,1,47.0,68.0,5,111,510.0,110.0,0.0,0,52,0.0,0.0,869.6522771197511,620.0,0.0,208.8354452733768,50,0,0,0,0,0,0,0,0,1,15.0,2,,3,109667,2,2,0,1,1,876.0,261.0,367.0,32,2.0,0.0,4.0,2.0,1.5,2,2,412.962175067057,510.0,25552.21586283242,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0242640404780642,17034.810575221614,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +9657,2,58.0,0.0,7,112,50.0,,,85,75,0.0,0.0,,134.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,1,,5,109668,2,2,0,0,2,,148.0,,41,0.0,2.0,4.0,3.0,1.8,2,2,100.33918894983226,50.0,32795.83308679181,6,5,0,1,110.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004085884924629865,18219.907270439897,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9658,2,22.0,0.0,1,300,0.0,0.0,0.0,54,53,0.0,0.0,0.0,878.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,240.0,1,,1,109669,2,1,2,1,1,350.0,263.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1638.53389187787,0.0,16049.72717974948,4,1,2,3,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054704979727493705,10699.818119832986,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9659,2,52.0,0.0,1,112,1581.0,0.0,0.0,56,69,0.0,0.0,2695.922059071229,1701.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,109670,2,2,2,0,1,,444.0,,43,3.0,1.0,5.0,4.0,2.5,4,3,606.617751105062,1581.0,33585.609958019384,1,1,0,1,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050646690714451194,13434.243983207754,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9660,2,57.0,0.0,6,111,700.0,,,75,47,0.0,0.0,,798.0,135.78774408885906,,41,0,0,0,0,0,0,0,0,0,,1,,4,109671,2,2,0,0,2,,500.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,137.55361051975493,700.0,71805.0,5,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011113432212241488,47870.0,10,5,10,10_1,10_3,10_0_0 +9661,1,61.0,360.0,1,111,600.0,770.0,0.0,0,77,0.0,0.0,1023.1203260232367,1370.0,0.0,1461.8481169136376,50,0,0,0,0,0,0,0,0,0,,2,,1,109672,2,1,0,0,1,,0.0,495.0,21,0.0,4.0,3.0,2.0,1.5,2,1,2071.49783285871,600.0,9467.58028557015,0,6,2,3,87.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1447043445819057,6311.7201903801,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +9662,1,31.0,200.0,2,111,1500.0,2500.0,0.0,0,67,0.0,0.0,2557.8008150580918,4000.0,0.0,4746.260119849472,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,109673,1,3,0,0,2,,0.0,250.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2046.27717840074,1500.0,11777.335200315563,0,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,1,1,0.3396354041016701,11777.335200315563,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +9663,2,46.0,0.0,9,111,500.0,,,0,21,0.0,0.0,,584.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,109674,2,1,0,0,2,,319.0,,32,1.0,0.0,4.0,4.0,2.1,2,2,122.54014086578667,500.0,9400.577983059286,0,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06212383973117634,4476.465706218707,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9664,1,48.0,331.0,2,111,630.0,,,0,43,0.0,0.0,,770.0,193.98249155551292,,70,0,0,0,0,0,0,0,0,0,,2,,2,109675,2,3,0,0,2,,520.0,447.0,32,3.0,1.0,4.0,4.0,2.3,3,3,80.07597223781342,630.0,15602.006059949112,0,4,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04935262792754687,6783.480895630049,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9665,1,76.0,119.0,2,111,0.0,960.0,0.0,0,77,0.0,0.0,0.0,1762.0,0.0,1822.5638860221975,71,0,0,0,0,0,0,0,0,0,,2,,2,109676,2,1,0,0,1,,0.0,286.0,11,0.0,2.0,3.0,1.0,1.0,1,1,356.590875181936,0.0,11945.587025194909,0,5,2,3,60.0,9,7,9,0,1,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.14750216931856897,11945.587025194909,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9666,2,61.0,0.0,2,120,0.0,0.0,0.0,75,78,0.0,0.0,0.0,2864.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109677,2,2,3,0,1,,150.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,105.345393196656,0.0,22944.79788737654,6,5,1,2,80.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12482132176791486,11472.39894368827,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +9667,2,66.0,0.0,2,112,967.0,0.0,0.0,77,75,1476.555991451242,0.0,1648.9289254407831,2525.0,218.9230976126503,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,109678,2,1,3,0,1,,327.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,987.915076869587,967.0,51063.590274497496,5,5,0,1,110.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04944814860111886,34042.393516331664,9,5,9,9_1,9_0,9_0_1 +9668,2,30.0,0.0,2,111,320.0,50.0,0.0,52,62,0.0,0.0,545.6641738790596,370.0,0.0,94.92520239698945,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,109679,2,1,0,1,1,439.0,162.0,330.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2232.37555072386,320.0,33117.05217235922,1,1,2,3,59.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011172491986132039,18398.362317977342,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +9669,2,44.0,0.0,1,400,460.0,0.0,0.0,85,22,0.0,794.5963662061343,784.3922499511482,1066.0,8.313535352379127,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,109680,2,1,1,0,1,,200.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,1128.56073513849,460.0,43070.9181291431,6,1,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024749878718715118,17946.21588714296,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9670,2,30.0,0.0,2,111,794.0,92.0,0.0,47,37,0.0,0.0,1353.9292314374165,886.0,0.0,174.6623724104606,20,1,2,1,1,1,2,2,2,2,10.0,2,,2,109681,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,405.542912913187,794.0,59154.69780658446,1,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014977677730632919,32863.72100365803,8,4,8,8_0,8_4,8_0_1 +9673,2,53.0,0.0,1,111,120.0,120.0,0.0,0,47,0.0,0.0,204.62406520464734,240.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,3,120.0,2,,1,109684,1,3,0,0,1,,0.0,459.0,12,1.0,1.0,3.0,1.0,1.0,1,1,914.11438756075,120.0,22429.037340559276,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01070041466139962,22429.037340559276,6,3,6,6_0,6_4,6_1_0 +9674,1,39.0,426.0,2,111,420.0,240.0,0.0,85,54,0.0,0.0,716.1842282162656,660.0,0.0,455.6409715055494,71,2,2,2,1,2,2,2,2,0,,2,,2,109685,2,2,0,1,1,720.0,0.0,399.0,42,1.0,0.0,4.0,4.0,2.1,2,2,210.240002294762,420.0,11647.55233513966,6,4,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05666426567656081,5546.453492923648,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +9675,2,81.0,0.0,1,111,360.0,840.0,0.0,0,78,0.0,0.0,613.872195613942,1200.0,0.0,1594.7434002694229,71,0,0,0,0,0,0,0,0,0,,2,,1,109686,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1115.07660658733,360.0,9848.308550290896,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12184833505897363,9848.308550290896,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +9676,2,31.0,0.0,1,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,1153.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,,1,109687,2,1,0,0,1,,0.0,325.0,12,1.0,1.0,2.0,1.0,1.0,1,1,422.565973200928,0.0,8795.282530481212,0,1,2,3,33.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.13109300309616279,8795.282530481212,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +9677,2,62.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,425.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,109688,2,3,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,856.452374332536,0.0,47330.208352464004,5,5,1,2,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008979466070275065,31553.472234976,8,4,8,8_0,8_4,8_0_1 +9678,2,64.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,529.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109689,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1138.59008954542,0.0,16654.74988980204,0,5,0,1,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03176271054805301,16654.74988980204,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +9679,2,54.0,0.0,9,111,1305.0,650.0,0.0,85,31,0.0,0.0,2225.2867091005396,2124.0,0.0,1234.027631160863,10,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,109690,2,1,1,0,1,,250.0,,42,1.0,0.0,7.0,6.0,2.8999999999999995,3,3,1487.16740558877,1305.0,277801.9396212784,6,1,0,1,150.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007645734953814956,95793.77228319946,10,5,10,10_1,10_3,10_0_0 +9680,2,58.0,0.0,7,111,1200.0,,,31,31,0.0,0.0,,1250.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,109691,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,103.10863150864891,1200.0,4929.968431694144,1,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.25355131930742353,1971.9873726776575,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +9681,2,60.0,0.0,9,111,300.0,,,86,42,0.0,0.0,,432.0,182.89777775234077,,30,0,0,0,0,0,0,0,0,0,,1,2004.0,6,109692,2,1,0,0,2,,600.0,,42,2.0,2.0,4.0,4.0,2.5,4,4,90.12829719684957,300.0,36745.56885447627,6,1,1,2,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01175651958773186,14698.227541790508,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9682,2,74.0,0.0,1,111,180.0,1110.0,0.0,0,77,0.0,0.0,306.936097806971,1290.0,0.0,2107.339493213166,71,0,0,0,0,0,0,0,0,0,,1,,1,109693,2,1,3,0,1,,80.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,314.920890356337,180.0,10070.531011266308,0,5,0,1,70.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12809652227442875,10070.531011266308,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +9683,1,47.0,236.0,5,111,288.0,0.0,0.0,0,85,0.0,0.0,491.09775649115363,288.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,109694,2,2,0,1,1,720.0,0.0,224.0,11,0.0,3.0,2.0,1.0,1.0,1,1,325.48438321672,288.0,6079.712665406427,0,7,2,3,43.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04737065974165529,6079.712665406427,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9684,2,48.0,0.0,1,112,1500.0,2300.0,0.0,21,33,0.0,225.13563709173806,2557.8008150580918,3970.0,0.0,4366.559310261515,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,109695,2,2,3,0,1,,260.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,1325.83219409234,1500.0,116155.71826947333,1,1,1,2,177.0,4,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03417825707719246,46462.28730778933,10,5,10,10_1,10_0,10_1_0 +9685,2,57.0,0.0,1,111,1300.0,0.0,0.0,43,56,2109.365702073203,66.2163638505112,2216.7607063836795,3450.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,109696,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,394.56349349802,1300.0,20843.54125612978,1,1,0,1,110.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16551889900116687,13895.694170753188,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +9686,1,42.0,199.0,2,111,300.0,300.0,0.0,0,56,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,60,0,0,0,0,0,0,0,0,0,,2,,2,109697,1,3,0,0,1,,300.0,185.0,12,1.0,0.0,1.0,1.0,1.0,1,1,286.983990983432,300.0,6663.9243856332705,0,4,2,3,37.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09003703602843059,6663.9243856332705,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9687,1,62.0,304.0,1,111,600.0,1000.0,0.0,62,78,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,1,109698,2,1,0,0,1,,0.0,456.0,42,1.0,7.0,4.0,2.0,1.5,2,2,2249.05254137995,600.0,17809.03105492356,4,5,2,3,60.0,5,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08984205794608109,11872.687369949039,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +9688,1,28.0,467.0,9,112,0.0,,,0,85,0.0,0.0,,788.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,2010.0,6,109699,2,1,0,0,2,,314.0,700.0,31,0.0,0.0,4.0,4.0,1.9,1,1,182.05486627838408,0.0,14702.0,0,6,2,3,90.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05359814991157666,7737.894736842106,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9689,1,40.0,270.0,8,111,610.0,224.0,0.0,0,85,0.0,0.0,1040.1723314569574,834.0,0.0,425.26490673851276,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,109700,2,1,1,0,1,,390.0,410.0,21,0.0,3.0,4.0,2.0,1.5,2,2,1580.86307206119,610.0,25337.343884704977,0,7,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03291584168392049,16891.562589803318,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +9690,2,89.0,0.0,1,112,1600.0,2300.0,0.0,71,71,0.0,0.0,2728.320869395298,3960.0,83.13535352379125,4366.559310261515,70,0,0,0,0,0,0,0,0,0,,5,,1,109701,2,1,2,0,1,,350.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,209.919115822603,1600.0,24813.373115315666,5,5,0,1,150.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15959136154510778,16542.248743543776,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9691,2,85.0,0.0,1,111,263.0,1496.0,0.0,0,71,0.0,0.0,448.4677429068521,1759.0,0.0,2840.1620557179244,71,2,2,2,1,1,2,2,2,0,,1,,1,109702,1,3,3,0,2,,240.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,478.01143876352,263.0,14412.873719503847,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,1,0,0,0.12204366972421878,14412.873719503847,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +9692,1,54.0,220.0,2,120,270.0,990.0,0.0,67,67,0.0,0.0,460.40414671045653,1260.0,0.0,1879.519007460391,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,109703,2,1,0,0,1,,130.0,390.0,43,3.0,0.0,3.0,3.0,2.0,3,3,1397.59986061133,270.0,16935.22863128524,4,1,2,3,68.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0744011213212878,8467.61431564262,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +9693,1,23.0,324.0,7,111,0.0,,,0,52,0.0,0.0,,1037.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,5,109704,2,1,0,0,1,,409.0,316.0,22,1.0,1.0,3.0,3.0,2.0,3,3,129.30385064095466,0.0,18929.89896540592,0,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05478106364408498,9464.94948270296,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9694,2,24.0,0.0,1,111,630.0,,,0,63,0.0,0.0,,870.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,1,109705,2,1,0,0,2,,110.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,84.65035547489217,630.0,15845.419165454812,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05490545822206581,10563.612776969874,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +9695,2,72.0,0.0,5,111,1200.0,1482.0,0.0,0,77,0.0,0.0,2046.2406520464733,2682.0,0.0,2813.5829990467673,70,0,0,0,0,0,0,0,0,0,,1,,3,109706,2,1,2,0,1,,252.0,,11,0.0,6.0,6.0,1.0,1.0,1,1,175.82010480347,1200.0,10921.059732613263,0,5,0,1,98.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2455805632113536,10921.059732613263,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +9696,2,70.0,0.0,5,111,350.0,1100.0,0.0,0,77,0.0,0.0,596.8201901802214,1450.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,3,109707,2,2,5,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1198.24987716982,350.0,19015.64218896408,0,5,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07625301241950809,19015.64218896408,5,3,5,5_1,5_2,5_0_0 +9697,0,29.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,109708,2,1,0,1,1,,186.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1566.00728243014,0.0,40494.74770045154,0,1,5,0,76.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00889004180648311,40494.74770045154,9,5,9,9_0,9_4,9_0_1 +9698,2,59.0,0.0,6,112,2000.0,0.0,0.0,78,62,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,109709,2,1,2,0,1,,400.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,741.178204816509,2000.0,56937.09926662024,5,1,0,1,110.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512648213135287,28468.54963331012,8,4,8,8_1,8_0,8_0_0 +9699,2,59.0,0.0,5,111,700.0,500.0,0.0,78,46,0.0,0.0,1193.6403803604428,1200.0,0.0,949.2520239698945,70,0,0,0,0,0,0,0,0,2,25.0,1,,3,109710,2,1,2,0,1,,250.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,256.988601298406,700.0,79514.59868874631,6,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015091568338253286,39757.299344373154,9,5,9,9_1,9_3,9_0_0 +9700,2,27.0,0.0,5,111,0.0,0.0,1000.0,0,38,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,10,0,0,0,0,0,0,0,0,3,20.0,2,,3,109711,2,1,0,1,1,,0.0,1510.0,22,1.0,0.0,5.0,4.0,2.5,4,4,629.460374871795,0.0,24591.630665116245,0,1,3,4,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04066424116471957,9836.652266046498,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +9701,2,54.0,0.0,5,111,389.0,246.0,0.0,69,69,0.0,0.0,663.3230113717318,1012.0,0.0,467.0319957931881,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,109712,1,1,0,1,2,430.0,0.0,340.0,43,3.0,5.0,4.0,4.0,2.5,4,4,271.192055010096,389.0,38020.49037184821,4,1,2,3,76.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02661722639825084,15208.196148739284,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +9702,2,54.0,0.0,9,111,1850.0,0.0,0.0,0,77,0.0,0.0,3154.621005238313,1850.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2008.0,6,109713,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,562.08346562491,1850.0,21960.857951036778,0,5,0,1,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08424078895845966,21960.857951036778,6,3,6,6_0,6_3,6_0_0 +9703,2,50.0,0.0,6,111,270.0,,,0,43,0.0,0.0,,310.0,55.423569015860835,,44,0,0,0,0,0,0,0,0,2,10.0,1,,4,109714,2,1,0,0,2,,300.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,99.89185361374933,270.0,20638.702016234864,0,1,0,1,66.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015020324425254411,20638.702016234864,5,3,5,5_1,5_2,5_0_0 +9704,0,45.0,0.0,1,111,700.0,1400.0,0.0,0,52,0.0,0.0,1193.6403803604428,2200.0,138.5589225396521,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,1,109715,2,1,3,0,1,,280.0,,22,1.0,7.0,4.0,3.0,2.0,3,3,259.699176616518,700.0,55549.18965907082,0,1,5,0,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03960453813102122,27774.59482953541,7,4,7,7_1,7_3,7_1_0 +9705,1,37.0,169.0,6,300,1360.0,0.0,0.0,85,62,0.0,595.9472746546007,2319.072738986003,1810.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,,4,109716,2,1,2,0,1,,461.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1117.31561748513,1360.0,33315.88982773742,7,1,1,2,95.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.054328430348363974,13881.620761557258,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +9706,1,27.0,346.0,5,111,420.0,156.0,0.0,0,56,0.0,0.0,716.1842282162656,576.0,0.0,296.1666314786071,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,109717,2,1,0,1,1,1188.0,0.0,311.0,32,1.0,0.0,4.0,3.0,1.6,1,1,323.675836170257,420.0,9376.729413326339,0,1,2,3,75.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.061428668207208874,5860.455883328961,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9707,2,59.0,0.0,1,400,750.0,0.0,0.0,0,75,0.0,0.0,1278.9004075290459,841.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,109718,1,2,0,0,1,,260.0,430.0,11,0.0,1.0,2.0,1.0,1.0,1,1,3427.20280016529,750.0,6411.15492980682,0,7,2,3,40.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.13117761295862818,6411.15492980682,1,1,1_0,1_0_0,1_1_0,1_1_0_0 +9708,1,48.0,477.0,1,112,450.0,2000.0,0.0,0,63,0.0,0.0,767.3402445174275,2450.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,0,,1,,1,109719,2,1,1,0,1,,400.0,416.0,32,1.0,0.0,5.0,5.0,2.5999999999999996,4,1,140.02875735901,450.0,19742.020561648616,0,4,2,3,90.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12410077237785054,7593.084831403315,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +9709,2,59.0,0.0,2,111,410.0,141.0,0.0,85,43,0.0,0.0,699.1322227825451,551.0,0.0,267.68907075951023,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,109720,2,1,0,1,1,408.0,0.0,450.0,42,2.0,5.0,5.0,4.0,2.3,3,3,180.506228688365,410.0,18149.87753682029,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03035833155800624,7891.251102965345,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +9710,2,55.0,0.0,1,111,1800.0,300.0,0.0,43,37,0.0,0.0,3069.36097806971,3298.0,0.0,569.5512143819367,12,0,0,0,0,0,0,0,0,2,45.0,2,,1,109721,2,1,0,1,2,,0.0,,43,2.0,0.0,6.0,5.0,3.0,5,4,503.05285400563,1800.0,222639.90907935705,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014813157324927183,74213.30302645235,10,5,10,10_0,10_4,10_1_0 +9711,1,57.0,213.0,2,111,580.0,0.0,0.0,0,68,0.0,0.0,989.0163151557955,691.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,109722,2,2,0,1,1,485.0,130.0,326.0,22,1.0,1.0,3.0,5.0,2.8,4,4,246.776617955255,580.0,22741.863690038885,0,1,2,3,60.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030384493083680887,8122.094175013888,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9712,2,31.0,0.0,1,400,0.0,0.0,0.0,67,62,0.0,0.0,0.0,783.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,109723,2,3,3,0,1,,505.0,,43,3.0,0.0,6.0,4.0,2.3,3,3,810.474518599879,0.0,33117.874839261094,1,1,1,2,140.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02364282140083931,14399.076017070041,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9713,2,56.0,0.0,1,111,1200.0,540.0,0.0,68,78,0.0,0.0,2046.2406520464733,1740.0,0.0,1025.192185887486,50,0,0,0,0,0,0,0,0,0,,1,,1,109724,2,1,1,0,1,,795.0,,42,1.0,2.0,7.0,4.0,2.3,3,3,1363.38890364825,1200.0,60294.4390204825,1,7,0,1,180.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028858382767420858,26214.97348716631,7,4,7,7_1,7_3,7_1_0 +9714,2,37.0,0.0,5,111,550.0,0.0,0.0,85,62,0.0,0.0,937.8602988546337,550.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,109725,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,3,2,323.337232555607,550.0,34400.398291053214,7,4,1,2,72.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015988186978144463,14333.49928793884,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +9715,2,66.0,0.0,1,112,595.0,0.0,0.0,78,78,0.0,397.2981831030672,1014.5943233063764,995.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109726,2,1,3,0,2,,500.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,929.307185245436,595.0,31371.615184708884,5,5,0,1,450.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03171656907499559,20914.410123139256,5,3,5,5_1,5_0,5_1_0 +9716,2,49.0,0.0,2,111,630.0,846.0,0.0,56,38,0.0,0.0,1074.2763423243985,1476.0,0.0,1606.1344245570615,60,2,2,2,1,1,2,2,2,2,10.0,1,,2,109727,1,3,3,0,2,,340.0,436.0,43,2.0,1.0,4.0,4.0,2.3,3,3,910.879143555508,630.0,33157.91124084082,1,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.04451426355777203,14416.48314819166,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +9717,2,45.0,0.0,5,111,380.0,800.0,0.0,42,47,0.0,0.0,647.9762064813832,1210.0,41.567676761895626,1518.8032383518312,31,0,0,0,0,0,0,0,0,2,25.0,1,,3,109728,2,1,2,0,2,,480.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1758.08624663561,380.0,52792.87774273543,4,1,1,2,130.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022919758341199768,21997.032392806428,6,3,6,6_1,6_2,6_0_0 +9718,2,28.0,0.0,2,111,660.0,0.0,0.0,46,67,0.0,0.0,1125.4323586255605,895.0,0.0,0.0,31,1,2,2,2,1,2,2,2,2,25.0,2,,2,109729,2,1,0,1,2,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,2576.53380730094,660.0,21919.046886547538,4,1,1,2,69.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04083206740842787,14612.697924365026,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +9719,2,67.0,0.0,5,111,530.0,0.0,0.0,78,78,1898.4291318658827,0.0,903.7562879871924,2400.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,109730,1,1,3,0,1,,280.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,396.797322064882,530.0,28902.9061261523,5,5,0,1,107.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08303663270138781,19268.60408410153,5,3,5,5_1,5_3,5_0_0 +9720,2,73.0,0.0,5,112,1400.0,0.0,0.0,77,74,0.0,0.0,2387.2807607208856,1550.0,207.83838380947813,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,109731,2,1,2,0,1,,250.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,477.507085355221,1400.0,50251.41445932897,5,5,0,1,99.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03084490290824538,33500.942972885976,8,4,8,8_1,8_1,8_0_0 +9721,2,57.0,0.0,6,111,600.0,0.0,0.0,78,52,1392.1813633683141,0.0,1023.1203260232367,1956.0,49.88121211427475,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,4,109732,2,1,2,0,1,,320.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,797.371460478881,600.0,34682.12528626785,5,1,0,1,106.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056397927862121666,23121.4168575119,6,3,6,6_1,6_3,6_0_0 +9723,2,73.0,0.0,2,111,540.0,0.0,0.0,0,75,1113.7450906946513,388.0278921639956,920.8082934209131,1919.0,41.567676761895626,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,109734,2,2,1,0,1,,225.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,742.570209459827,540.0,32964.552828667336,0,5,0,1,104.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058214046159642076,32964.552828667336,8,4,8,8_1,8_2,8_0_1 +9724,1,22.0,230.0,6,111,425.0,950.0,0.0,0,68,0.0,0.0,724.710230933126,1375.0,0.0,1803.5788455427996,71,2,2,2,2,1,2,2,2,0,,2,,4,109735,2,2,0,0,1,,0.0,560.0,22,1.0,0.0,3.0,2.0,1.5,2,2,357.402649546102,425.0,16119.613312233776,0,2,2,3,73.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.08529981292767495,10746.408874822517,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9725,2,65.0,0.0,5,212,720.0,0.0,0.0,71,77,1615.7741277880737,0.0,1227.744391227884,2342.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,109736,1,1,2,0,1,,303.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,711.515792125343,720.0,25666.948849150598,5,5,0,1,120.0,1,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09124575007977641,17111.299232767065,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9726,1,36.0,104.0,5,211,1200.0,,,85,68,0.0,0.0,,1330.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,109737,1,1,0,0,2,,700.0,800.0,42,1.0,3.0,4.0,5.0,2.4,2,2,120.58895457998402,1200.0,27412.01431221649,6,1,2,3,76.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.048518871501072786,11421.672630090205,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +9727,2,23.0,0.0,2,111,1170.0,0.0,0.0,0,90,0.0,0.0,1995.0846357453115,1170.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,109738,2,1,0,0,1,,0.0,750.0,32,1.0,0.0,4.0,4.0,2.3,3,3,302.673333525466,1170.0,34463.05290585954,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03394940091918183,14983.936046025889,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +9728,2,75.0,0.0,1,112,950.0,0.0,0.0,77,77,0.0,860.8127300566456,1619.9405162034582,1700.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109739,2,1,2,0,1,,420.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,936.091495462476,950.0,33708.908799831115,5,5,0,1,75.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050431771912133716,22472.605866554077,6,3,6,6_1,6_1,6_1_0 +9729,0,85.0,0.0,2,111,272.0,88.0,0.0,0,77,0.0,0.0,463.81454779720065,360.0,0.0,167.06835621870144,70,0,0,0,0,0,0,0,0,0,,2,,2,109740,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1054.98890377235,272.0,18598.513505633273,0,5,0,1,74.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019356385653668515,18598.513505633273,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +9730,2,69.0,0.0,5,112,1390.0,0.0,0.0,77,78,0.0,0.0,2370.228755287165,1390.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,109741,2,1,1,0,1,,296.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1644.53043713517,1390.0,24780.14893432742,5,5,0,1,95.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056093286754804864,16520.099289551614,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9731,2,36.0,0.0,8,111,800.0,800.0,0.0,64,52,0.0,264.8654554020448,1364.160434697649,1800.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,109742,1,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1408.52578700985,800.0,33978.13733184765,4,1,1,2,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05297524059133351,16180.065396117927,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9732,1,63.0,305.0,2,111,600.0,0.0,0.0,85,78,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109743,1,1,0,1,1,1100.0,600.0,443.0,41,0.0,5.0,4.0,2.0,1.5,2,2,301.345298387996,600.0,7959.10075367433,6,5,2,3,75.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07538540075937714,5306.06716911622,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9733,2,56.0,0.0,9,111,300.0,0.0,0.0,0,45,0.0,0.0,511.56016301161833,752.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,2005.0,6,109744,2,1,0,1,1,324.0,0.0,425.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1058.44365851676,300.0,30654.25112704666,0,1,2,3,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024531670889082664,30654.25112704666,8,4,8,8_0,8_4,8_0_0 +9734,2,64.0,0.0,5,111,300.0,574.0,0.0,77,68,0.0,0.0,511.56016301161833,874.0,0.0,1089.7413235174388,50,0,0,0,0,0,0,0,0,0,,2,,3,109745,2,1,0,0,1,,230.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,391.252453758996,300.0,49924.956961479525,5,5,0,1,79.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017506274480603958,24962.478480739763,7,4,7,7_0,7_3,7_0_0 +9735,2,41.0,0.0,1,112,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1031.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,109746,2,1,1,0,1,,543.0,,32,1.0,0.0,6.0,4.0,1.9,1,1,842.851344849257,0.0,43061.082220403674,0,1,1,2,220.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02394273313250544,22663.727484422987,6,3,6,6_1,6_0,6_1_0 +9736,2,60.0,0.0,1,111,0.0,0.0,0.0,47,47,0.0,0.0,0.0,2832.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,109747,2,1,2,0,2,,100.0,520.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1556.49399131321,0.0,53564.80101083679,1,1,2,3,53.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.052870540850642814,35709.86734055786,9,5,9,9_1,9_3,9_1_0 +9737,2,46.0,0.0,2,111,1200.0,0.0,0.0,0,56,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109748,2,2,0,1,2,,0.0,,32,1.0,0.0,3.0,4.0,2.5,4,3,832.590077178591,1200.0,47795.57361341791,0,4,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025106927467925973,19118.229445367164,5,3,5,5_0,5_4,5_0_1 +9738,1,41.0,159.0,2,111,672.0,129.0,0.0,56,62,0.0,0.0,1145.894765146025,801.0,0.0,244.90702218423277,71,1,2,2,1,2,2,2,2,0,,2,,2,109749,1,3,0,1,1,861.0,0.0,344.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1393.22091133176,672.0,24512.107855005914,4,1,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03267772827771799,11672.432311907578,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9739,1,27.0,256.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,930.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,109750,1,1,0,0,1,,102.0,384.0,12,1.0,1.0,2.0,1.0,1.0,1,1,252.847304809406,0.0,13323.727417942206,0,4,2,3,40.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06980028717396522,13323.727417942206,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +9740,2,25.0,0.0,1,120,0.0,0.0,0.0,0,53,0.0,0.0,0.0,433.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,1,109751,2,1,0,0,1,,219.0,572.0,12,1.0,1.0,5.0,1.0,1.0,1,1,881.326733137887,0.0,15692.129547187054,0,1,2,3,78.0,0,2,4,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027593450506379416,15692.129547187054,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +9741,2,53.0,0.0,7,111,220.0,,,0,21,0.0,0.0,,243.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,109752,2,2,0,0,2,,240.0,547.0,12,1.0,0.0,3.0,1.0,1.0,1,1,99.05487170615284,220.0,21727.28768321746,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01118409271985189,21727.28768321746,6,3,6,6_0,6_3,6_0_0 +9742,1,30.0,80.0,5,211,0.0,0.0,0.0,85,62,0.0,0.0,0.0,2064.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,109753,2,3,3,0,1,,445.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,235.89307118728,0.0,27121.406263919416,6,1,1,2,100.0,2,3,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07610224853074132,12914.95536377115,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +9743,2,76.0,0.0,1,111,323.0,144.0,0.0,72,72,2132.568724796008,0.0,550.7797755091758,2489.0,0.0,273.3845829033296,70,0,0,0,0,0,0,0,0,0,,1,,1,109754,2,2,2,0,2,,194.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1944.59599118585,323.0,20053.320010168824,5,5,0,1,91.0,6,4,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12411909842050367,13368.880006779216,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +9744,2,39.0,0.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,742.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,109755,2,3,0,1,1,733.0,0.0,270.0,12,1.0,0.0,2.0,1.0,1.0,1,1,406.312117763534,0.0,14921.426663440903,0,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04972714853184781,14921.426663440903,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +9745,2,52.0,0.0,2,111,750.0,2050.0,0.0,0,46,0.0,0.0,1278.9004075290459,2800.0,0.0,3891.9332982765673,60,0,0,0,0,0,0,0,0,2,90.0,1,,2,109756,2,1,1,0,1,,600.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,621.871742475181,750.0,40513.14962600356,0,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06911336259580289,27008.766417335704,7,4,7,7_1,7_4,7_0_1 +9746,2,40.0,0.0,9,111,1200.0,,,22,63,0.0,0.0,,1288.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,109757,1,1,0,0,2,,900.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,108.32208302121559,1200.0,32645.29820114553,1,1,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039454379986481596,14193.607913541537,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +9747,1,90.0,115.0,2,111,110.0,80.0,0.0,77,78,0.0,0.0,187.57205977092673,370.0,249.40606057137379,151.8803238351831,71,0,0,0,0,0,0,0,0,0,,2,,2,109758,2,1,0,1,1,670.0,120.0,206.0,41,0.0,3.0,3.0,2.0,1.5,2,2,866.865940455134,110.0,18282.0904449664,5,5,2,3,50.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02023838581883134,12188.060296644268,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +9748,2,81.0,0.0,1,300,730.0,0.0,0.0,78,78,0.0,119.18945493092015,1244.7963966616046,820.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,109759,2,1,4,0,1,,175.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1187.93856709148,730.0,28265.479508924676,5,5,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029010652366293285,18843.653005949785,5,3,5,5_1,5_0,5_1_0 +9749,2,80.0,0.0,2,111,430.0,230.0,0.0,77,78,0.0,0.0,733.2362336499863,660.0,0.0,436.65593102615145,50,0,0,0,0,0,0,0,0,0,,2,,2,109760,2,3,0,1,1,1225.0,0.0,314.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1697.43143605054,430.0,39128.212583065724,5,5,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016867624571372346,26085.47505537715,7,4,7,7_0,7_3,7_0_1 +9750,2,70.0,0.0,7,112,830.0,0.0,0.0,0,77,1792.9608467622227,0.0,1415.3164509988108,2650.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,109761,2,1,2,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1670.02114567584,830.0,54428.4030732527,0,5,0,1,125.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0486878146403356,54428.4030732527,10,5,10,10_1,10_0,10_0_0 +9751,2,73.0,0.0,5,111,0.0,0.0,1200.0,22,22,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,60,0,0,0,0,0,0,0,0,0,,2,,3,109762,1,1,0,0,2,,0.0,535.0,43,2.0,2.0,2.0,2.0,1.5,2,2,1453.05383185985,0.0,23202.46241049206,1,1,2,3,55.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.051718648597287024,15468.308273661372,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +9752,2,26.0,0.0,2,111,550.0,0.0,0.0,0,38,0.0,0.0,937.8602988546337,550.0,0.0,0.0,12,1,2,2,2,2,2,2,1,0,,2,,2,109763,2,3,0,0,1,,0.0,340.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2500.97018118088,550.0,36426.26852051981,0,1,2,3,30.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015098993730037749,36426.26852051981,9,5,9,9_0,9_3,9_0_1 +9753,2,61.0,0.0,5,112,1600.0,0.0,0.0,85,62,0.0,794.5963662061343,2728.320869395298,2280.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,109764,2,2,2,0,1,,250.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,254.447437383296,1600.0,49065.338659337736,6,1,0,1,100.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04646864899537564,32710.225772891823,8,4,8,8_1,8_0,8_0_0 +9754,2,40.0,0.0,7,112,580.0,990.0,0.0,34,34,0.0,0.0,989.0163151557955,1823.0,0.0,1879.519007460391,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,109765,2,1,2,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1496.61769545967,580.0,64517.61474022236,1,1,1,2,140.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028255849310924435,30722.67368582017,8,4,8,8_1,8_2,8_0_0 +9755,2,65.0,0.0,6,111,2476.0,0.0,0.0,72,46,0.0,0.0,4222.076545389224,2536.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109766,2,1,2,0,1,,419.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1514.50273974472,2476.0,36022.18911673906,5,5,0,1,94.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07040105174567397,24014.792744492705,6,3,6,6_1,6_3,6_0_0 +9756,1,44.0,450.0,6,111,384.0,,,0,85,0.0,0.0,,522.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,4,109767,2,3,0,0,2,,300.0,650.0,31,0.0,1.0,5.0,3.0,1.6,1,1,93.52311005660736,384.0,12814.313091367776,0,6,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04073569892338901,8008.94568210486,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +9757,1,46.0,346.0,5,111,960.0,,,0,81,0.0,0.0,,1167.0,286.8169696570798,,71,0,0,0,0,0,0,0,0,0,,1,,3,109768,2,1,0,0,2,,0.0,700.0,32,3.0,1.0,4.0,3.0,2.0,3,3,111.43442903302564,960.0,15925.964964550983,0,4,2,3,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0732765645659514,7962.982482275492,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9758,2,50.0,0.0,8,111,840.0,1500.0,0.0,42,38,0.0,0.0,1432.3684564325313,2340.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,109769,2,1,2,0,1,,760.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,1009.01206372731,840.0,87901.51136761009,1,1,0,1,180.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026620702688648447,33808.27360292696,9,5,9,9_1,9_3,9_0_0 +9759,2,56.0,0.0,1,111,860.0,2500.0,0.0,72,43,0.0,264.8654554020448,1466.4724672999725,3560.0,0.0,4746.260119849472,33,1,2,2,1,1,2,2,2,2,55.0,1,,1,109770,2,2,1,0,1,,360.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,1374.66315540769,860.0,95692.8238502924,5,1,0,1,119.0,4,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.037202371680132226,63795.21590019494,10,5,10,10_1,10_2,10_1_0 +9760,2,84.0,0.0,2,111,400.0,95.0,0.0,86,86,0.0,0.0,682.0802173488245,495.0,0.0,180.35788455427996,70,2,1,2,2,1,2,1,2,0,,2,,2,109771,2,2,0,1,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,980.18176632666,400.0,39966.49275609065,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012385374994521255,26644.328504060435,7,4,7,7_0,7_4,7_0_1 +9761,1,34.0,174.0,5,111,260.0,0.0,0.0,52,21,0.0,0.0,443.3521412767359,260.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,109772,2,1,0,1,1,324.0,0.0,312.0,43,2.0,0.0,4.0,5.0,2.4,2,2,321.432285599044,260.0,42102.17702500542,4,1,2,3,83.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0061754526338526445,17542.573760418923,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +9762,0,68.0,0.0,1,300,2450.0,0.0,0.0,71,22,0.0,0.0,4177.74133126155,2650.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109773,2,1,2,0,1,,362.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1030.47447167075,2450.0,117342.63090140866,5,1,5,0,200.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022583437746734446,78228.4206009391,10,5,10,10_1,10_0,10_1_0 +9764,2,78.0,0.0,1,111,420.0,840.0,0.0,0,86,0.0,0.0,716.1842282162656,1260.0,0.0,1594.7434002694229,71,0,0,0,0,0,0,0,0,0,,1,,1,109775,2,2,2,0,2,,260.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,140.963010349301,420.0,12077.301641557342,0,6,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10432793991535395,12077.301641557342,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +9765,2,47.0,0.0,7,111,435.0,0.0,0.0,34,35,0.0,0.0,741.7622363668467,435.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,109776,2,2,2,1,1,1416.0,0.0,1532.0,43,2.0,0.0,4.0,4.0,2.3,3,3,352.787640749828,435.0,69897.43498820634,1,1,2,3,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006223404336273523,30390.189125307108,8,4,8,8_1,8_4,8_0_0 +9766,1,30.0,348.0,7,111,330.0,,,0,55,0.0,0.0,,462.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,0,,2,,5,109777,1,3,0,0,2,,347.0,347.0,32,1.0,0.0,3.0,2.0,1.3,1,1,142.46739593625094,330.0,18333.118806114922,0,4,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025200294880863488,14102.399081626863,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +9767,2,73.0,0.0,6,111,300.0,,,0,77,0.0,0.0,,330.0,41.567676761895626,,70,0,0,0,0,0,0,0,0,0,,2,,4,109778,1,2,0,0,2,,200.0,458.0,11,0.0,3.0,2.0,1.0,1.0,1,1,145.8404381410048,300.0,25716.09523309987,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012832430312952342,25716.09523309987,7,4,7,7_0,7_2,7_0_0 +9768,2,59.0,0.0,7,111,500.0,,,0,52,0.0,0.0,,640.0,193.98249155551292,,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,109779,2,1,0,0,1,,350.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,76.24497732716756,500.0,46405.389224838014,0,1,1,2,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013791501605538662,30936.92614989201,8,4,8,8_1,8_2,8_0_0 +9769,2,83.0,0.0,2,111,300.0,0.0,0.0,0,77,1476.555991451242,0.0,511.56016301161833,1740.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109780,1,2,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1248.88315513251,300.0,15133.771532814586,0,5,0,1,80.0,8,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1149746443724986,15133.771532814586,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +9770,2,35.0,0.0,8,112,2200.0,0.0,0.0,21,54,0.0,529.7309108040896,3751.441195418535,2600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,109781,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,3357.36528064124,2200.0,66240.0165276513,1,1,1,2,120.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03925119793583767,36800.0091820285,9,5,9,9_1,9_1,9_0_0 +9771,1,82.0,120.0,9,400,350.0,0.0,0.0,71,71,1054.6828510366015,0.0,596.8201901802214,1530.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,109782,2,1,2,0,1,,0.0,280.0,41,0.0,1.0,2.0,2.0,1.5,2,2,1307.62938564652,350.0,16709.32366724049,5,5,2,3,70.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09156564505358442,11139.54911149366,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +9772,2,73.0,0.0,1,120,440.0,1240.0,0.0,0,86,0.0,0.0,750.2882390837069,1680.0,0.0,2354.145019445338,71,0,0,0,0,0,0,0,0,0,,1,,1,109783,2,1,1,0,1,,290.0,,21,0.0,5.0,7.0,2.0,1.5,2,2,216.625337526907,440.0,33915.01054381771,0,5,0,1,174.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04953558831507553,22610.007029211807,6,3,6,6_1,6_0,6_1_0 +9773,1,30.0,282.0,2,111,460.0,940.0,0.0,0,81,0.0,0.0,784.3922499511482,1400.0,0.0,1784.5938050634018,50,2,2,2,1,1,2,2,2,0,,2,,2,109784,1,3,0,0,1,,0.0,234.0,32,1.0,0.0,4.0,4.0,1.9,1,1,305.605769215782,460.0,13945.294823474223,0,4,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.10039228411602809,7339.6288544601175,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9774,2,77.0,0.0,1,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1645.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,109785,2,2,2,0,1,,283.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,754.671597775646,0.0,28432.09434425395,0,5,0,1,149.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05785715185390309,28432.09434425395,8,4,8,8_1,8_4,8_1_0 +9775,2,44.0,0.0,7,400,450.0,0.0,0.0,0,63,0.0,0.0,767.3402445174275,2750.0,3186.855218411998,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,109786,2,1,1,0,1,,360.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,2375.13007051152,450.0,22283.936942458888,0,1,1,2,200.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12340727794648639,22283.936942458888,6,3,6,6_1,6_1,6_0_0 +9776,1,44.0,470.0,9,221,1800.0,,,0,56,0.0,0.0,,1863.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,109787,2,1,0,0,2,,700.0,540.0,32,2.0,0.0,3.0,5.0,2.8,4,3,69.00936841197445,1800.0,23560.685761670677,0,1,2,3,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07907240132334313,8414.530629168099,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +9777,2,52.0,0.0,5,111,1990.0,0.0,0.0,37,48,0.0,0.0,3393.3490813104017,2060.0,96.99124577775646,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,3,109788,2,1,3,0,1,,500.0,,43,2.0,2.0,9.0,2.0,1.5,2,2,1474.12931922998,1990.0,92356.4023116326,1,1,0,1,156.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022304896557675202,61570.934874421735,10,5,10,10_1,10_3,10_0_0 +9778,2,51.0,0.0,6,112,746.0,0.0,0.0,21,43,0.0,1191.8945493092015,1272.0796053555575,1646.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,4,109789,2,1,2,0,1,,319.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,869.355804532091,746.0,60143.477807385236,1,1,0,1,100.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027367888589207617,24057.391122954094,6,3,6,6_1,6_0,6_0_0 +9779,2,48.0,0.0,5,111,1128.0,0.0,0.0,0,68,0.0,0.0,1923.466212923685,1128.0,0.0,0.0,60,2,1,2,1,1,2,2,2,0,,2,,3,109790,1,1,0,1,1,,0.0,630.0,22,1.0,1.0,4.0,2.0,1.5,2,2,719.640032699783,1128.0,36138.57552127904,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.031213183799561037,24092.383680852694,6,3,6,6_0,6_4,6_0_0 +9780,0,95.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,3208.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,109791,2,1,3,0,2,,149.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,427.006580391646,0.0,29037.26141702348,0,5,5,0,100.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11047873812642907,29037.26141702348,8,4,8,8_1,8_2,8_0_1 +9781,2,49.0,0.0,9,111,403.0,0.0,0.0,46,38,0.0,0.0,687.1958189789407,403.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,109792,2,1,1,0,1,,285.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1012.6120411564,403.0,94484.9244626855,4,1,1,2,112.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00426523069465071,41080.40194029805,9,5,9,9_1,9_3,9_0_0 +9782,2,69.0,0.0,2,111,354.0,1472.0,0.0,72,72,0.0,0.0,603.6409923537096,1826.0,0.0,2794.5979585673695,71,0,0,0,0,0,0,0,0,0,,1,,2,109793,1,1,3,0,2,,402.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,938.514157597428,354.0,11455.217304052992,5,5,0,1,39.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15940334884384424,7636.811536035329,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +9783,2,75.0,0.0,1,111,1900.0,0.0,0.0,0,86,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,1,,1,109794,2,1,1,0,1,,274.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,888.83383332154,1900.0,38562.08794367104,0,5,0,1,130.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04927119098881251,38562.08794367104,9,5,9,9_1,9_2,9_1_0 +9784,2,53.0,0.0,1,211,276.0,1339.0,0.0,0,62,0.0,0.0,470.6353499706889,1615.0,0.0,2542.0969201913776,70,0,0,0,0,0,0,0,0,2,5.0,1,,1,109795,2,1,1,0,1,,209.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,1135.33932987359,276.0,41192.7254585824,0,1,0,1,84.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039205951585403506,27461.816972388264,7,4,7,7_1,7_1,7_1_0 +9785,2,39.0,0.0,5,111,410.0,810.0,0.0,56,68,0.0,0.0,699.1322227825451,1220.0,0.0,1537.788278831229,71,2,2,2,2,1,2,2,2,3,30.0,1,,3,109796,1,2,3,0,1,,340.0,364.0,43,2.0,0.0,3.0,3.0,1.8,2,2,106.404067616267,410.0,33631.43061144211,1,1,2,3,64.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.036275590357578505,18684.12811746784,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9786,2,78.0,0.0,2,111,120.0,,,0,78,0.0,0.0,,215.0,131.6309764126695,,71,0,0,0,0,0,0,0,0,0,,1,,2,109797,2,3,0,0,2,,220.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,139.6068768948758,120.0,8931.949089483975,0,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024070894028396347,8931.949089483975,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +9787,2,20.0,0.0,7,211,270.0,,,0,46,0.0,0.0,,446.0,243.8637036697877,,60,0,0,0,0,0,0,0,0,0,,1,,5,109798,2,2,0,0,2,,396.0,,22,2.0,0.0,4.0,4.0,2.3,3,3,101.2545264025056,270.0,32529.922950647142,0,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013710453623780483,14143.444761150933,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9788,2,30.0,0.0,6,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,2177.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,109799,2,1,2,0,1,,736.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,817.401454214809,0.0,67523.3970142264,4,1,1,2,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032240676510118874,37512.99834123689,9,5,9,9_1,9_4,9_0_0 +9789,2,60.0,0.0,5,112,450.0,0.0,0.0,0,78,1265.6194212439218,0.0,767.3402445174275,1720.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,109800,1,1,2,0,2,,800.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1074.98308041845,450.0,17465.862829592937,0,5,0,1,130.0,8,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09847781451058646,17465.862829592937,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +9790,1,60.0,265.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,778.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,109801,2,3,0,0,1,,0.0,400.0,11,0.0,3.0,1.0,1.0,1.0,1,1,2724.07053210661,0.0,8606.305792531502,0,7,2,3,19.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.09039883299000873,8606.305792531502,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9791,2,69.0,0.0,1,112,152.0,0.0,0.0,0,72,1265.6194212439218,0.0,259.1904825925533,1452.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109802,2,2,2,0,1,,127.0,208.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1033.95028594892,152.0,19570.41225315867,0,5,2,3,80.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07419363379867723,19570.41225315867,5,3,5,5_1,5_0,5_1_0 +9792,2,78.0,0.0,1,400,160.0,0.0,0.0,0,78,1054.6828510366015,0.0,272.8320869395298,1190.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109803,2,2,1,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1281.86390632747,160.0,25467.08878840147,0,5,0,1,90.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04672697416997126,25467.08878840147,7,4,7,7_1,7_0,7_1_0 +9793,0,43.0,0.0,9,111,456.0,,,0,56,0.0,0.0,,548.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,109804,2,2,0,0,2,,220.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,86.61396179678232,456.0,8187.079681126547,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06693473391535318,5458.053120751031,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9794,2,32.0,0.0,9,111,1400.0,0.0,0.0,46,54,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,1,2011.0,6,109805,1,1,1,0,1,,480.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,196.771102401304,1400.0,47161.89816963872,1,1,1,2,117.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029684979916717473,26201.05453868818,7,4,7,7_1,7_4,7_0_0 +9795,2,60.0,0.0,1,111,980.0,0.0,0.0,78,65,1160.1511361402618,0.0,1671.09653250462,2080.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,109806,2,1,2,0,1,,447.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,336.650170752262,980.0,39489.680795996195,6,1,0,1,120.0,4,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05267198817699454,26326.453863997463,7,4,7,7_1,7_2,7_1_0 +9796,2,53.0,0.0,1,212,3000.0,0.0,0.0,55,53,0.0,0.0,5115.6016301161835,3120.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,109807,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1362.89830949146,3000.0,67850.97529003964,1,1,0,1,200.0,3,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045983126796086134,29500.424039147674,8,4,8,8_1,8_0,8_1_0 +9797,2,64.0,0.0,6,111,800.0,,,0,86,0.0,0.0,,954.0,213.38074071106422,,71,0,0,0,0,0,0,0,0,0,,1,,4,109808,2,1,0,0,1,,600.0,,21,2.0,0.0,4.0,3.0,2.0,3,3,78.23654355234346,800.0,25044.53233621193,0,5,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03809214670862948,12522.266168105965,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9798,2,51.0,0.0,7,112,880.0,1940.0,0.0,55,37,0.0,82.10829117463388,1500.5764781674138,2882.0,0.0,3683.0978530031907,42,0,0,0,0,0,0,0,0,2,60.0,1,,5,109809,2,1,2,0,1,,680.0,,43,2.0,2.0,6.0,4.0,2.5,4,4,1610.6728003207,880.0,125854.98681091313,1,1,1,2,160.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02289937072044646,50341.99472436526,10,5,10,10_1,10_2,10_0_0 +9799,2,60.0,0.0,5,112,2787.0,0.0,0.0,42,74,0.0,132.4327277010224,4752.393914377934,3067.0,249.40606057137379,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,109810,2,1,2,0,1,,345.0,,42,1.0,0.0,9.0,2.0,1.5,2,2,1101.75447838055,2787.0,44421.14692455631,1,5,0,1,190.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06904369230287796,29614.09794970421,8,4,8,8_1,8_0,8_0_0 +9800,2,90.0,0.0,1,111,720.0,800.0,0.0,0,72,0.0,0.0,1227.744391227884,1520.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,0,,2,,1,109811,1,1,0,0,2,,222.0,600.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1277.30781391347,720.0,13801.210114051784,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11013526983785306,13801.210114051784,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +9801,2,82.0,0.0,8,111,227.0,0.0,0.0,0,86,0.0,0.0,387.0805233454579,227.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,109812,2,1,0,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1758.40627959686,227.0,22004.395753205485,0,5,0,1,48.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010316120585448561,22004.395753205485,6,3,6,6_0,6_3,6_0_0 +9802,0,29.0,0.0,2,111,0.0,0.0,0.0,54,54,0.0,0.0,0.0,60.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,2,75.0,1,,2,109813,2,1,3,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,459.985926392781,0.0,43624.44018800747,1,1,5,0,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0013753758155157767,24235.800104448597,7,4,7,7_1,7_3,7_0_1 +9803,2,41.0,0.0,9,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,2307.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,109814,1,1,1,0,1,,442.0,1470.0,42,1.0,0.0,5.0,4.0,2.1,2,2,462.714181498594,0.0,42613.46267542127,6,1,2,3,100.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054137820659447104,20292.125083533938,5,3,5,5_1,5_3,5_0_0 +9804,2,30.0,0.0,9,211,0.0,,,42,34,0.0,0.0,,1617.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,109815,2,1,0,0,2,,699.0,850.0,43,2.0,0.0,4.0,4.0,2.1,2,2,140.92035580105693,0.0,75060.5908322816,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021542596215543917,35743.13849156266,9,5,9,9_1,9_2,9_0_0 +9805,1,43.0,156.0,7,111,490.0,0.0,0.0,0,64,0.0,0.0,835.54826625231,523.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,109816,2,1,0,0,1,,0.0,380.0,12,1.0,3.0,1.0,1.0,1.0,1,1,2005.94948353317,490.0,11618.283036320372,0,4,2,3,20.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04501525727726111,11618.283036320372,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9806,2,51.0,0.0,7,111,1150.0,0.0,0.0,46,45,0.0,291.3520009422493,1960.9806248778702,1490.0,166.2707070475825,0.0,50,2,2,1,2,2,2,2,1,2,25.0,1,,5,109817,2,2,2,0,2,,210.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,1379.06509541815,1150.0,57037.83213597554,1,1,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.026123012467372694,31687.68451998641,8,4,8,8_1,8_3,8_0_0 +9807,2,66.0,0.0,6,112,600.0,0.0,0.0,75,77,0.0,119.18945493092015,1023.1203260232367,690.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,109818,2,1,2,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1167.56695259134,600.0,33064.286150244036,5,5,0,1,103.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02086843783242867,22042.857433496025,6,3,6,6_1,6_1,6_0_0 +9808,2,41.0,0.0,1,111,276.0,360.0,0.0,0,37,0.0,0.0,470.6353499706889,636.0,0.0,683.461457258324,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,109819,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1058.03330771466,276.0,82561.58381759915,0,1,1,2,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007703340592461209,82561.58381759915,10,5,10,10_0,10_4,10_1_0 +9809,1,28.0,380.0,7,211,0.0,,,0,42,0.0,0.0,,167.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,109820,2,2,0,0,2,,360.0,800.0,22,3.0,0.0,4.0,5.0,2.5999999999999996,3,3,98.3311809244543,0.0,4437.255484050388,0,4,2,3,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0376358766359696,1706.636724634765,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9810,2,91.0,0.0,1,400,2000.0,0.0,0.0,0,77,0.0,0.0,3410.4010867441225,2030.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,109821,2,1,4,0,1,,75.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1701.76561577077,2000.0,17297.16614684632,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11736026484142413,17297.16614684632,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9811,2,33.0,0.0,1,112,1300.0,0.0,0.0,0,55,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,109822,2,1,2,0,1,,200.0,480.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1512.84223038088,1300.0,15014.11280204308,0,1,2,3,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08658520267831606,15014.11280204308,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +9812,2,60.0,0.0,2,112,973.0,0.0,0.0,75,75,0.0,529.7309108040896,1659.1601287010155,1373.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,109823,2,1,2,0,1,,179.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,247.650929872567,973.0,49677.787174416495,5,5,0,1,106.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027638107051335806,33118.52478294433,8,4,8,8_1,8_0,8_0_1 +9813,0,79.0,0.0,6,400,356.0,,,71,71,0.0,0.0,,664.0,426.76148142212844,,71,0,0,0,0,0,0,0,0,0,,1,,4,109824,2,2,0,0,2,,280.0,,41,0.0,5.0,6.0,3.0,2.0,3,3,109.45914643544457,356.0,34582.79569562101,5,5,0,1,108.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019200298490734163,17291.397847810505,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9814,2,44.0,0.0,5,111,444.0,1089.0,0.0,0,46,0.0,0.0,757.1090412571951,1533.0,0.0,2067.47090820643,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,109825,1,1,4,0,2,,264.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,1035.07294890863,444.0,47674.24349239931,0,1,1,2,140.0,6,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03215572786685972,31782.828994932876,8,4,8,8_1,8_2,8_0_0 +9815,2,81.0,0.0,1,111,600.0,800.0,0.0,0,78,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,1,109826,2,1,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2023.05473783124,600.0,15874.835040810223,0,5,1,2,55.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.08818989277059892,15874.835040810223,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +9816,2,60.0,0.0,5,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,3047.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,109827,2,2,2,0,1,,230.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,883.782620226125,0.0,74120.02542594587,0,1,1,2,135.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041108998310372825,74120.02542594587,10,5,10,10_1,10_4,10_0_0 +9817,2,50.0,0.0,7,111,1100.0,,,0,56,0.0,0.0,,1352.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,109828,2,3,0,0,2,,1114.0,,32,1.0,2.0,3.0,4.0,2.1,2,1,81.3164591927682,1100.0,9878.638749030535,0,4,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13686096175271942,4704.11369001454,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +9818,2,49.0,0.0,7,211,700.0,,,0,53,0.0,0.0,,820.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,2,7.0,1,,5,109829,2,1,0,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,52.2099215827637,700.0,49242.791592491434,0,1,0,1,75.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016652183466483936,49242.791592491434,10,5,10,10_1,10_2,10_0_0 +9819,2,66.0,0.0,7,111,500.0,,,0,75,0.0,0.0,,566.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,8,,5,109830,2,2,0,0,2,,300.0,600.0,11,0.0,2.0,3.0,1.0,1.0,1,1,94.2700622144679,500.0,35753.44947939698,0,5,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015830640350553,35753.44947939698,9,5,9,9_0,9_2,9_0_0 +9820,1,60.0,84.0,8,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,109831,2,1,0,0,1,,396.0,460.0,11,0.0,3.0,5.0,1.0,1.0,1,1,1524.57056198155,0.0,12386.641513776805,0,6,2,3,70.0,5,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04520999492696634,12386.641513776805,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +9821,2,67.0,0.0,1,111,400.0,1200.0,0.0,55,75,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,109832,2,2,1,0,1,,500.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1994.47629713687,400.0,41200.444640321155,4,5,0,1,140.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038834532344686076,27466.963093547438,7,4,7,7_1,7_3,7_1_0 +9822,2,49.0,0.0,9,120,1546.0,0.0,0.0,62,63,0.0,0.0,2636.2400400532065,1636.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,109833,2,1,1,0,1,,454.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,580.815135314961,1546.0,54333.43818018717,1,1,1,2,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03011037134396865,27166.719090093586,7,4,7,7_1,7_0,7_0_0 +9823,2,47.0,0.0,2,400,480.0,,,52,47,0.0,0.0,,504.0,33.25414140951651,,60,0,0,0,0,0,0,0,0,2,2.0,1,,2,109834,2,1,0,0,2,,305.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,43.469093455076255,480.0,73238.13728346316,1,1,0,1,51.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006881660548646981,48825.42485564211,10,5,10,10_1,10_1,10_0_1 +9824,2,76.0,0.0,2,111,400.0,,,0,71,0.0,0.0,,900.0,692.7946126982605,,71,0,0,0,0,0,0,0,0,0,,1,,2,109835,1,1,0,0,2,,150.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,104.60206043996341,400.0,38729.74184711904,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023237955046347607,38729.74184711904,9,5,9,9_1,9_2,9_0_1 +9825,2,82.0,0.0,1,111,480.0,,,0,77,0.0,0.0,,618.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,109836,2,1,0,0,2,,600.0,,21,4.0,0.0,7.0,6.0,3.5,6,6,72.14766715744457,480.0,31405.574842828337,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019678034969677502,8973.021383665238,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +9826,2,55.0,0.0,6,111,480.0,0.0,0.0,54,55,0.0,0.0,818.4962608185893,655.0,242.47811444439117,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,4,109837,2,2,2,0,1,,230.0,,43,2.0,4.0,7.0,2.0,1.5,2,2,1098.40891502055,480.0,37937.73982827124,1,1,0,1,150.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01726512973532212,25291.826552180824,7,4,7,7_1,7_2,7_0_0 +9827,1,59.0,189.0,5,111,210.0,,,0,77,0.0,0.0,,340.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,2,,3,109838,2,1,0,0,2,,130.0,383.0,11,0.0,0.0,2.0,1.0,1.0,1,1,155.28502690689714,210.0,6595.9181202306645,0,6,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05154703163418134,6595.9181202306645,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9828,1,56.0,215.0,5,111,0.0,0.0,1450.0,0,78,0.0,29.135200094224928,913.9615211013785,1472.0,0.0,1735.2616139687873,50,2,2,2,1,2,2,2,2,0,,2,,3,109839,2,2,0,0,1,,240.0,347.0,21,1.0,1.0,3.0,2.0,1.5,2,2,1158.33707862428,0.0,12134.601910921463,0,7,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.1213059984007519,8089.734607280975,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9829,2,62.0,0.0,9,111,0.0,,,85,78,0.0,0.0,,113.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,109840,2,1,0,0,2,,762.0,855.0,41,2.0,1.0,3.0,4.0,2.5,4,4,120.86161667030113,0.0,30414.94369284683,6,5,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037152789477817123,12165.977477138733,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9830,2,75.0,0.0,2,111,300.0,,,77,78,0.0,0.0,,560.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,1,,2,109841,2,2,0,0,2,,340.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,84.66932140342483,300.0,24589.591381214457,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022773863596115686,16393.06092080964,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +9831,2,70.0,0.0,2,111,21.0,39.0,0.0,75,74,0.0,0.0,35.80921141081328,60.0,0.0,74.04165786965177,44,0,0,0,0,0,0,0,0,0,,2,,2,109842,2,3,0,0,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1377.27257014581,21.0,41478.29410469994,5,5,0,1,101.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0014465397214395409,27652.19606979996,7,4,7,7_0,7_3,7_0_1 +9832,2,46.0,0.0,2,111,820.0,895.0,0.0,85,23,0.0,662.163638505112,1398.2644455650902,2215.0,0.0,1699.1611229061111,60,0,0,0,0,0,0,0,0,2,2.0,1,,2,109843,2,1,2,0,1,,0.0,,42,2.0,1.0,3.0,3.0,2.0,3,3,1552.37072545137,820.0,46176.67469699156,6,1,1,2,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.047967940838847554,23088.33734849578,6,3,6,6_1,6_3,6_0_1 +9833,1,64.0,50.0,5,111,360.0,200.0,0.0,0,77,0.0,0.0,613.872195613942,560.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,3,109844,2,1,0,1,1,960.0,0.0,291.0,21,0.0,2.0,3.0,2.0,1.5,2,2,286.49616473817,360.0,14195.718818940142,0,5,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03944851311459054,9463.812545960094,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9834,1,72.0,206.0,2,111,302.0,216.0,0.0,0,77,0.0,0.0,514.9705640983625,518.0,0.0,410.0768743549944,71,2,1,2,2,1,2,2,2,0,,2,,2,109845,2,1,0,1,1,,0.0,430.0,11,0.0,1.0,3.0,1.0,1.0,1,1,335.367958527411,302.0,9856.92775560265,0,5,2,3,50.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05255187141912147,9856.92775560265,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9835,0,26.0,0.0,9,111,0.0,,,0,53,0.0,0.0,,399.0,0.0,,43,0,0,0,0,0,0,0,0,2,3.0,1,2006.0,6,109846,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,107.9418204288335,0.0,24171.342656837995,0,1,5,0,33.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016507150871369745,24171.342656837995,7,4,7,7_1,7_2,7_0_0 +9836,1,61.0,300.0,6,111,600.0,,,0,78,0.0,0.0,,684.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,2,,4,109847,2,2,0,0,2,,270.0,350.0,11,0.0,1.0,1.0,1.0,1.0,1,1,143.61495593758016,600.0,6332.0,0,6,2,3,22.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1080227416298168,6332.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9837,2,78.0,0.0,5,111,310.0,810.0,0.0,0,77,0.0,0.0,528.612168445339,1120.0,0.0,1537.788278831229,50,0,0,0,0,0,0,0,0,0,,1,,3,109848,2,1,1,0,1,,220.0,412.0,11,0.0,3.0,2.0,1.0,1.0,1,1,155.628387248468,310.0,18219.674114277143,0,6,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0614720105845557,18219.674114277143,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +9838,0,77.0,0.0,9,300,960.0,0.0,0.0,71,71,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,109849,2,1,1,0,1,,470.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1463.28846033905,960.0,15699.08771416748,5,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061150050084353494,10466.058476111653,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +9839,1,33.0,276.0,7,111,1100.0,1000.0,0.0,85,68,0.0,0.0,1875.7205977092674,2100.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,109850,2,1,1,0,1,,0.0,721.0,42,1.0,0.0,5.0,5.0,2.4,3,2,941.909910130471,1100.0,27998.23526813815,6,1,2,3,120.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07500472725828508,11665.93136172423,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +9840,1,67.0,300.0,7,112,0.0,,,0,71,0.0,0.0,,435.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,109851,1,1,0,0,2,,224.0,440.0,11,0.0,2.0,2.0,1.0,1.0,1,1,85.30860187512097,0.0,6706.549805302622,0,7,2,3,55.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06486196518753376,6706.549805302622,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +9841,0,53.0,0.0,1,221,0.0,0.0,0.0,85,55,0.0,794.5963662061343,0.0,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,109852,2,1,3,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1065.91000249595,0.0,29382.22757902179,7,1,5,0,80.0,1,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02042050754614622,19588.15171934786,5,3,5,5_1,5_1,5_1_0 +9842,2,59.0,0.0,7,120,640.0,,,0,42,0.0,0.0,,716.0,105.3047811301356,,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,109853,2,1,0,0,2,,560.0,,22,3.0,0.0,4.0,3.0,2.0,3,3,105.77321518320109,640.0,85051.17720755203,0,1,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00841846078453131,42525.588603776014,9,5,9,9_1,9_0,9_0_0 +9843,2,48.0,0.0,1,111,350.0,0.0,0.0,62,55,1582.0242765549024,0.0,596.8201901802214,1910.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,12.0,1,,1,109854,2,1,3,0,1,,350.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1097.68468501255,350.0,35364.664973382496,1,1,0,1,150.0,7,5,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.054008711843801634,23576.44331558833,6,3,6,6_1,6_2,6_1_0 +9844,2,44.0,0.0,8,111,900.0,,,62,43,0.0,0.0,,1032.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,109855,1,2,0,0,2,,300.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,87.59949796143475,900.0,14506.175365344468,4,4,0,1,86.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0711421152721942,5802.470146137787,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9845,0,64.0,0.0,2,111,492.0,1326.0,0.0,21,21,0.0,529.7309108040896,838.958667339054,2278.0,83.13535352379125,2517.4163675681602,44,0,0,0,0,0,0,0,0,2,30.0,2,,2,109856,2,1,0,0,1,,480.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1269.39638989347,492.0,27738.203645281763,1,1,5,0,85.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08212500092404092,18492.135763521175,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +9846,2,57.0,0.0,2,111,156.0,78.0,0.0,0,62,0.0,26.486545540204478,266.01128476604157,254.0,0.0,148.08331573930354,71,0,0,0,0,0,0,0,0,0,,2,,2,109857,2,1,0,1,1,528.0,0.0,301.0,12,1.0,1.0,4.0,1.0,1.0,1,1,389.675417602763,156.0,21126.234887660317,0,1,2,3,117.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01202296582191082,21126.234887660317,5,3,5,5_0,5_2,5_0_1 +9847,2,53.0,0.0,7,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,365.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,109858,2,2,0,1,2,,0.0,358.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1468.23353431185,0.0,32998.9956549006,0,1,2,3,50.0,6,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011060942697078562,32998.9956549006,8,4,8,8_0,8_2,8_0_0 +9848,2,59.0,0.0,6,211,720.0,0.0,0.0,75,63,0.0,364.19000117781155,1227.744391227884,995.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,4,109859,2,1,2,0,1,,230.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1184.74279873119,720.0,43247.43617476371,5,1,0,1,110.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0230071441918357,28831.624116509138,8,4,8,8_1,8_1,8_0_0 +9849,2,70.0,0.0,1,111,1145.0,0.0,0.0,78,75,0.0,0.0,1952.45462216101,1145.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,109860,2,1,2,0,1,,278.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1001.49668587586,1145.0,41809.71477358265,5,5,0,1,78.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02738597969875329,27873.143182388434,7,4,7,7_1,7_2,7_1_0 +9850,1,43.0,230.0,2,111,220.0,450.0,0.0,85,65,0.0,0.0,375.14411954185346,670.0,0.0,854.326821572905,71,2,2,1,2,2,2,2,1,2,18.0,2,,2,109861,1,2,0,2,1,,0.0,520.0,42,1.0,0.0,3.0,5.0,2.4,2,2,168.184104109589,220.0,16751.972406242396,6,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.039995290330727476,6979.988502600999,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +9851,2,49.0,0.0,7,221,1200.0,0.0,0.0,43,38,0.0,158.91927324122688,2046.2406520464733,1410.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,7.0,1,,5,109862,2,1,2,0,1,,180.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,2035.16178363332,1200.0,61864.09459556477,1,1,0,1,150.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02279189583582926,41242.729730376515,9,5,9,9_1,9_1,9_0_0 +9852,2,29.0,0.0,2,111,0.0,0.0,0.0,46,68,0.0,0.0,0.0,413.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,109863,2,1,0,1,1,564.0,0.0,314.0,43,2.0,0.0,3.0,2.0,1.5,2,2,456.404311979092,0.0,24083.64553314121,4,1,2,3,64.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017148566625084884,16055.763688760808,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +9853,2,61.0,0.0,5,111,383.0,1580.0,0.0,85,71,0.0,172.1625460113291,653.0918081114994,2093.0,0.0,2999.6363957448666,70,0,0,0,0,0,0,0,0,0,,1,,3,109864,2,2,2,0,1,,471.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,365.285481119475,383.0,33393.25018298506,6,5,0,1,120.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06267733714241602,22262.166788656705,6,3,6,6_1,6_2,6_0_0 +9854,2,44.0,0.0,2,111,1000.0,0.0,0.0,37,52,1054.6828510366015,0.0,1705.2005433720612,2300.0,415.67676761895626,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,109865,2,2,1,0,1,,400.0,,43,2.0,0.0,6.0,5.0,3.0,5,4,959.35018480571,1000.0,68254.84453457924,4,1,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03369724179555892,22751.61484485975,6,3,6,6_1,6_3,6_0_1 +9855,2,65.0,0.0,7,111,520.0,60.0,0.0,0,74,0.0,0.0,886.7042825534718,580.0,0.0,113.91024287638734,20,0,0,0,0,0,0,0,0,0,,2,,5,109866,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,915.081166481533,520.0,30203.66797257133,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01920296569697137,30203.66797257133,8,4,8,8_0,8_4,8_0_0 +9856,2,83.0,0.0,5,112,1250.0,0.0,0.0,77,77,0.0,0.0,2131.5006792150766,1290.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109867,2,1,2,0,1,,316.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,774.164577126442,1250.0,40583.48696440097,5,5,0,1,89.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03178632730922216,27055.65797626731,7,4,7,7_1,7_2,7_0_0 +9857,2,42.0,0.0,2,112,800.0,450.0,0.0,54,45,0.0,0.0,1364.160434697649,1250.0,0.0,854.326821572905,20,2,2,2,2,1,2,2,2,2,20.0,1,,2,109868,1,3,2,0,1,,600.0,530.0,43,2.0,0.0,4.0,2.0,1.5,2,2,518.346706931589,800.0,42617.77742472773,1,1,2,3,85.0,7,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.029330483087903213,28411.85161648515,8,4,8,8_1,8_1,8_0_1 +9858,2,65.0,0.0,1,111,623.0,156.0,0.0,68,56,0.0,0.0,1062.339938520794,779.0,0.0,296.1666314786071,70,0,0,0,0,0,0,0,0,0,,2,,1,109869,2,2,0,0,2,,0.0,92.0,42,1.0,2.0,2.0,2.0,1.5,2,2,1095.36752686412,623.0,44347.63961895037,5,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01756576013274723,29565.093079300248,8,4,8,8_0,8_4,8_1_0 +9859,2,75.0,0.0,6,111,700.0,0.0,0.0,0,77,0.0,66.2163638505112,1193.6403803604428,850.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,109870,2,1,2,0,1,,208.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,269.104534261677,700.0,15464.67566012796,0,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054963972001787646,15464.67566012796,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +9860,2,56.0,0.0,2,112,900.0,0.0,0.0,0,55,0.0,0.0,1534.680489034855,940.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,109871,2,1,0,0,1,,250.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,944.076322207083,900.0,17974.2699354563,0,1,1,2,42.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.052296978034459284,17974.2699354563,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +9861,2,48.0,0.0,7,111,600.0,,,0,52,0.0,0.0,,852.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,2.0,1,,5,109872,2,1,0,0,1,,252.0,,32,2.0,1.0,7.0,3.0,1.8,2,2,116.65880173671812,600.0,23202.50244497521,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036720177145569535,12890.279136097339,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9862,2,35.0,0.0,2,111,159.0,333.0,0.0,0,43,0.0,0.0,271.1268863961577,492.0,0.0,632.2018479639497,20,0,0,0,0,0,0,0,0,3,50.0,2,,2,109873,2,1,0,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1606.96201429036,159.0,17481.397485448702,0,1,1,2,68.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028144203025503807,17481.397485448702,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +9863,1,78.0,197.0,7,111,400.0,0.0,0.0,0,72,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,109874,2,1,1,1,1,430.0,316.0,384.0,11,0.0,5.0,3.0,1.0,1.0,1,1,176.569115711369,400.0,11773.590683768507,0,5,2,3,50.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03397434230081179,11773.590683768507,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +9864,2,73.0,0.0,1,111,250.0,300.0,0.0,74,74,0.0,0.0,426.3001358430153,550.0,0.0,569.5512143819367,12,0,0,0,0,0,0,0,0,0,,1,,1,109875,2,1,2,0,1,,250.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,754.871397241037,250.0,83323.77485564227,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0066007571182759095,55549.18323709485,10,5,10,10_1,10_4,10_1_0 +9865,1,22.0,137.0,6,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,808.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,2012.0,4,109876,2,1,0,0,1,,0.0,350.0,42,1.0,0.0,2.0,2.0,1.5,2,2,984.807986081634,0.0,14860.938430565093,3,1,3,4,33.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05437072522541064,9907.292287043396,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9866,2,35.0,0.0,1,120,450.0,0.0,0.0,0,62,0.0,0.0,767.3402445174275,500.0,69.27946126982604,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,1,109877,2,3,3,0,1,,300.0,500.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1285.22406308226,450.0,24932.893999833665,0,1,2,3,50.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02005382929086915,24932.893999833665,7,4,7,7_1,7_0,7_1_0 +9867,2,28.0,0.0,9,111,930.0,850.0,0.0,56,52,0.0,0.0,1585.836505336017,1780.0,0.0,1613.7284407488207,60,0,0,0,0,0,0,0,0,2,7.0,1,2008.0,6,109878,1,2,1,0,1,,784.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,809.962484477038,930.0,40552.11909334844,1,1,1,2,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043894130314190274,16896.716288895183,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +9868,1,33.0,398.0,9,111,360.0,1080.0,0.0,52,56,0.0,0.0,613.872195613942,1440.0,0.0,2050.384371774972,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,109879,2,1,0,0,1,,300.0,435.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1495.16935993235,360.0,18084.721386017594,4,1,2,3,73.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07962522447889919,8611.772088579806,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9869,2,33.0,0.0,9,111,0.0,0.0,0.0,42,46,0.0,0.0,0.0,1403.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2013.0,6,109880,2,1,1,0,1,,619.0,,43,2.0,0.0,9.0,5.0,2.4,2,2,162.67199019939,0.0,73959.90609171848,1,1,1,2,175.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018969737444773448,30816.627538216035,8,4,8,8_1,8_3,8_0_0 +9870,2,53.0,0.0,5,111,528.0,,,0,52,0.0,0.0,,624.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,109881,2,2,0,0,2,,396.0,370.0,12,1.0,1.0,3.0,1.0,1.0,1,1,71.73872937782951,528.0,28405.334162550018,0,1,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02196770495390581,28405.334162550018,8,4,8,8_0,8_2,8_0_0 +9871,2,74.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,315.0,0.0,0.0,70,2,1,2,2,2,2,2,1,0,,2,,2,109882,1,1,0,1,2,,0.0,336.0,11,0.0,3.0,2.0,1.0,1.0,1,1,375.224416211108,0.0,16043.36152557429,0,5,2,3,35.0,6,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.019634289204158804,16043.36152557429,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +9872,2,51.0,0.0,2,300,480.0,,,0,45,0.0,0.0,,730.0,346.39730634913025,,20,0,0,0,0,0,0,0,0,0,,1,,2,109883,2,1,0,0,2,,600.0,,22,1.0,2.0,7.0,3.0,2.0,3,3,70.5200567062903,480.0,44945.59081007911,0,1,0,1,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016241860143404688,22472.795405039556,6,3,6,6_1,6_1,6_0_1 +9873,2,63.0,0.0,5,111,410.0,0.0,0.0,0,77,0.0,0.0,699.1322227825451,410.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,109884,1,1,0,0,1,,134.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,963.921383224524,410.0,27228.898997830725,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015057531339503074,27228.898997830725,7,4,7,7_0,7_4,7_0_0 +9874,2,44.0,0.0,9,111,820.0,,,45,38,0.0,0.0,,868.0,66.50828281903301,,31,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,109885,2,1,0,0,1,,484.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,134.14468102564277,820.0,89640.78912631706,1,1,1,2,135.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009683091910055145,34477.22658704503,9,5,9,9_1,9_2,9_0_0 +9875,2,35.0,0.0,7,120,1960.0,0.0,0.0,54,46,0.0,264.8654554020448,3342.19306500924,2160.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,109886,2,1,2,0,1,,359.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1301.78849161456,1960.0,70438.91960393383,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030664865562182328,33542.34266853992,8,4,8,8_1,8_0,8_0_0 +9876,2,42.0,0.0,2,111,600.0,320.0,0.0,0,63,0.0,0.0,1023.1203260232367,920.0,0.0,607.5212953407324,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,109887,2,2,0,1,1,605.0,0.0,365.0,12,1.0,5.0,4.0,1.0,1.0,1,1,260.007246781384,600.0,18029.65212331258,0,1,2,3,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05102705219755337,18029.65212331258,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +9877,2,52.0,0.0,1,211,0.0,0.0,0.0,34,38,0.0,0.0,0.0,3427.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,109888,2,1,2,0,1,,416.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,486.342370487855,0.0,105808.66472531235,1,1,0,1,200.0,1,3,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03238865180745606,42323.46589012494,9,5,9,9_1,9_1,9_1_0 +9878,2,26.0,0.0,2,111,1956.0,1800.0,0.0,0,35,0.0,0.0,3335.372262835752,3756.0,0.0,3417.30728629162,20,0,0,0,0,0,0,0,0,0,,1,,2,109889,2,2,2,0,1,,2100.0,,22,3.0,0.0,6.0,5.0,3.0,5,5,483.577957744598,1956.0,51625.43312606856,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07275483753962708,17208.47770868952,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +9879,1,39.0,36.0,1,112,500.0,0.0,0.0,56,62,2109.365702073203,0.0,852.6002716860306,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109890,2,1,3,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1810.27015320985,500.0,27883.0749212698,1,1,1,2,120.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08966012561595017,13277.65472441419,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +9880,2,75.0,0.0,1,112,800.0,0.0,0.0,77,75,1476.555991451242,139.05436408607352,1364.160434697649,2503.0,274.3466666285112,0.0,44,0,0,0,0,0,0,0,0,0,,5,,1,109891,2,1,2,0,1,,363.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1715.13534146166,800.0,24651.074916590474,5,5,0,1,110.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10153715440276605,16434.04994439365,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +9881,0,80.0,0.0,2,112,600.0,0.0,0.0,0,71,953.4332973370878,0.0,1023.1203260232367,1574.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,109892,1,1,2,0,2,,220.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1583.16514650628,600.0,12331.730305769759,0,5,0,1,90.0,9,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1276382114246821,12331.730305769759,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +9882,1,44.0,75.0,5,111,1200.0,,,0,45,0.0,0.0,,1200.0,0.0,,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,109893,1,3,0,0,1,,342.0,460.0,32,1.0,0.0,4.0,2.0,1.5,2,1,82.83219067217998,1200.0,31074.872445027864,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03861640951617184,20716.581630018576,5,3,5,5_1,5_2,5_0_0 +9883,2,78.0,0.0,2,112,370.0,0.0,0.0,77,78,685.543853173791,860.8127300566456,630.9242010476627,1790.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,109894,2,1,2,0,2,,220.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,400.107910929116,370.0,23129.129753608584,5,5,0,1,44.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07739158451133363,15419.419835739056,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +9884,2,59.0,0.0,5,111,540.0,,,75,54,0.0,0.0,,792.0,349.1684847999233,,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,109895,2,2,0,0,2,,288.0,,42,3.0,2.0,7.0,4.0,2.5,4,4,68.79625788139943,540.0,25159.0,5,1,0,1,180.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031479788544854725,10063.6,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9885,2,64.0,0.0,1,111,2100.0,0.0,0.0,86,78,0.0,529.7309108040896,3580.9211410813286,2575.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,109896,2,1,2,0,2,,220.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,336.90703757496,2100.0,17078.294014661245,6,5,0,1,105.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15077618395546027,11385.529343107497,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +9886,2,26.0,0.0,9,120,0.0,,,54,48,0.0,0.0,,611.0,0.0,,50,0,0,0,0,0,0,0,0,2,60.0,2,2007.0,6,109897,2,1,0,0,1,,328.0,610.0,43,2.0,0.0,3.0,2.0,1.5,2,2,94.31535316003368,0.0,46909.13723764556,1,1,2,3,72.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01302518093446536,31272.758158430373,8,4,8,8_0,8_1,8_0_0 +9887,2,61.0,0.0,6,112,1113.0,0.0,0.0,11,77,0.0,132.4327277010224,1897.888204773104,1349.0,188.44013465392686,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,109898,2,3,4,0,1,,82.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,681.070024508428,1113.0,32020.122496738764,1,5,0,1,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042129757627797804,21346.748331159175,6,3,6,6_1,6_0,6_0_0 +9888,2,52.0,0.0,2,111,200.0,0.0,0.0,0,54,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,2,1,2,2,1,2,2,2,3,45.0,2,,2,109899,2,1,0,1,1,,0.0,620.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1211.7091737225,200.0,27331.21121223832,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007317641301986806,27331.21121223832,7,4,7,7_0,7_4,7_0_1 +9889,2,62.0,0.0,2,111,595.0,1429.0,0.0,35,33,0.0,0.0,1014.5943233063764,2024.0,0.0,2712.9622845059585,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,109900,2,3,4,0,1,,470.0,827.0,43,2.0,2.0,4.0,3.0,2.0,3,2,774.662004599128,595.0,87639.41225956619,1,1,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02309463228718849,43819.706129783095,10,5,10,10_1,10_4,10_0_1 +9890,2,76.0,0.0,5,300,424.0,0.0,0.0,0,77,2024.991073990275,0.0,723.005030389754,2476.0,182.89777775234077,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109901,2,1,2,0,1,,310.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,335.356462144744,424.0,35107.08468994957,0,5,0,1,140.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07052707514357714,35107.08468994957,9,5,9,9_1,9_0,9_0_0 +9891,2,45.0,0.0,7,221,950.0,0.0,0.0,0,37,0.0,794.5963662061343,1619.9405162034582,1598.0,66.50828281903301,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,5,109902,2,1,1,0,1,,650.0,,32,2.0,0.0,6.0,4.0,2.5,4,3,1705.32629321663,950.0,63137.33816368319,0,1,1,2,130.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025309904510975645,25254.935265473276,7,4,7,7_1,7_1,7_0_0 +9892,2,56.0,0.0,1,111,247.5,637.2,0.0,43,34,0.0,0.0,422.0371344845851,885.0,0.0,1209.7267793472336,10,0,0,0,0,0,0,0,0,4,45.0,1,,1,109903,2,2,3,0,1,,180.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1421.75604483795,247.5,65912.3305111493,1,1,0,1,100.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01342692623879077,43941.55367409953,10,5,10,10_1,10_2,10_1_0 +9893,2,63.0,0.0,6,111,735.0,0.0,0.0,77,75,0.0,397.2981831030672,1253.322399378465,1128.0,128.85979796187644,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,109904,2,1,2,0,1,,232.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1481.15669692342,735.0,76255.13195023399,5,5,0,1,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014792447028170655,50836.75463348933,10,5,10,10_1,10_2,10_0_0 +9894,1,43.0,123.0,5,111,488.0,194.0,0.0,85,67,0.0,0.0,832.1378651655658,682.0,0.0,368.30978530031905,71,2,2,2,2,1,2,2,2,2,7.0,2,,3,109905,1,3,0,1,1,880.0,0.0,367.0,42,1.0,5.0,5.0,8.0,3.2999999999999994,2,2,743.164276754012,488.0,40063.00435402295,6,1,2,3,85.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.017023186628077145,12140.304349703927,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +9895,2,58.0,0.0,6,120,350.0,,,77,11,0.0,0.0,,570.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,4,109906,2,1,0,0,2,,300.0,,42,3.0,0.0,4.0,5.0,3.0,5,5,122.30700189541807,350.0,47491.640451660656,6,1,0,1,89.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012002112257633514,15830.546817220218,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +9896,2,51.0,0.0,2,111,350.0,1300.0,0.0,56,21,0.0,0.0,596.8201901802214,1650.0,0.0,2468.055262321726,20,0,0,0,0,0,0,0,0,0,,2,,2,109907,1,2,0,0,2,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,883.27872362749,350.0,21033.338842357916,1,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07844688912048302,11685.188245754398,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +9897,1,65.0,22.0,7,111,171.0,0.0,0.0,0,75,0.0,0.0,291.58929291662247,171.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,109908,2,1,0,1,1,556.0,0.0,308.0,11,0.0,2.0,2.0,1.0,1.0,1,1,322.472903520734,171.0,14446.608876856462,0,5,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011836687866170644,14446.608876856462,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +9898,2,48.0,0.0,8,111,2200.0,0.0,0.0,63,43,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,109909,2,1,1,0,1,,354.0,,43,2.0,1.0,6.0,4.0,2.5,4,3,1266.65731460226,2200.0,75385.81749971579,1,1,1,2,144.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029183208101554302,30154.326999886318,8,4,8,8_1,8_2,8_0_0 +9899,1,39.0,457.0,2,111,336.0,108.0,0.0,85,63,0.0,0.0,572.9473825730125,444.0,0.0,205.0384371774972,50,0,0,0,0,0,0,0,0,0,,2,,2,109910,2,1,0,1,1,,1380.0,572.0,42,1.0,0.0,3.0,5.0,2.4,2,2,90.051083346149,336.0,16987.180643166408,6,4,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026137356711904515,7077.99193465267,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9900,1,36.0,269.0,1,400,840.0,3400.0,0.0,85,63,0.0,0.0,1432.3684564325313,4240.0,0.0,6454.913762995283,50,0,0,0,0,0,0,0,0,0,,1,,1,109911,2,1,4,0,1,,405.0,510.0,42,1.0,0.0,7.0,5.0,2.4,2,2,1038.13185473335,840.0,24822.317466214125,6,4,2,3,180.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17081402676325858,10342.632277589219,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +9901,2,47.0,0.0,5,112,150.0,0.0,0.0,0,55,738.277995725621,0.0,255.78008150580916,851.0,1.385589225396521,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,3,109912,2,1,1,0,1,,194.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1606.69199636573,150.0,15422.065165490916,0,1,0,1,26.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055180677222414716,15422.065165490916,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9902,2,54.0,0.0,8,111,550.0,,,75,33,0.0,0.0,,600.0,69.27946126982604,,12,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,109913,2,2,0,0,2,,230.0,,42,1.0,4.0,5.0,3.0,2.0,2,2,151.60734019818622,550.0,97355.9663745086,5,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006162950483095428,48677.9831872543,10,5,10,10_1,10_2,10_0_0 +9903,2,35.0,0.0,9,111,530.0,860.0,0.0,43,34,0.0,0.0,903.7562879871924,1390.0,0.0,1632.7134812282186,20,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,109914,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1736.68979514513,530.0,49673.285308733546,1,1,1,2,114.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027982848151894044,23653.945385111212,6,3,6,6_1,6_2,6_0_0 +9904,1,46.0,420.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,192.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,109915,2,1,0,1,1,523.0,366.0,690.0,32,1.0,2.0,2.0,2.0,1.5,2,1,1141.34804381641,0.0,15003.892635225162,0,1,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01279667914639931,10002.595090150107,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +9905,2,64.0,0.0,8,111,368.0,1195.0,0.0,0,74,0.0,0.0,627.5137999609185,1563.0,0.0,2268.712337288048,60,0,0,0,0,0,0,0,0,0,,1,2002.0,6,109916,2,1,2,0,1,,230.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,789.859973613682,368.0,33529.5431459257,0,5,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046615606815684454,33529.5431459257,8,4,8,8_1,8_4,8_0_0 +9906,2,81.0,0.0,1,111,200.0,100.0,0.0,77,75,0.0,0.0,341.04010867441224,300.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,1,109917,1,1,0,1,2,240.0,0.0,972.0,41,0.0,2.0,2.0,2.0,1.5,2,2,902.884073715427,200.0,33278.801086866515,5,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009014747833520813,22185.867391244345,6,3,6,6_0,6_4,6_1_0 +9907,2,24.0,0.0,1,111,400.0,0.0,0.0,0,63,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,1,109918,2,3,0,1,1,220.0,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,626.014279272795,400.0,16132.52758297568,0,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.024794626752853762,16132.52758297568,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +9908,1,47.0,200.0,9,211,50.0,,,0,63,0.0,0.0,,72.0,30.482962958723462,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,109919,2,1,0,0,1,,36.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,148.70236940105696,50.0,5201.409772576102,0,4,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013842401031276673,5201.409772576102,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9910,2,52.0,0.0,7,111,1469.0,0.0,0.0,47,43,0.0,397.2981831030672,2504.939598213558,1889.0,166.2707070475825,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,5,109921,1,1,2,0,1,,289.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,415.986590985579,1469.0,65064.3158965339,1,1,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029032811211047106,43376.21059768927,10,5,10,10_1,10_3,10_0_0 +9911,2,31.0,0.0,2,111,1500.0,0.0,0.0,55,47,2109.365702073203,0.0,2557.8008150580918,3500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,109922,1,3,2,0,2,,1000.0,1326.0,43,2.0,0.0,3.0,4.0,2.1,2,2,815.825779462125,1500.0,33655.481716273614,4,1,2,3,100.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10399494589042314,16026.419864892197,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +9912,2,61.0,0.0,1,112,735.0,0.0,0.0,0,86,1506.087111280267,264.8654554020448,1253.322399378465,2463.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,109923,2,1,2,0,1,,115.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1293.94309463427,735.0,13245.129895814329,0,5,0,1,150.0,6,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18595514120086865,13245.129895814329,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +9913,2,70.0,0.0,5,300,1300.0,0.0,0.0,77,78,0.0,1059.4618216081792,2216.7607063836795,2220.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,109924,2,1,2,0,1,,650.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,883.629989196261,1300.0,37234.18809907572,5,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.059622624081203154,24822.79206605048,7,4,7,7_1,7_0,7_0_0 +9914,2,63.0,0.0,1,111,750.0,1500.0,0.0,67,78,0.0,0.0,1278.9004075290459,2250.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,,1,109925,2,1,2,0,1,,1200.0,,42,2.0,4.0,6.0,4.0,2.5,4,3,1066.53114045588,750.0,27209.248343734358,1,5,0,1,90.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0826924717498902,10883.699337493743,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +9915,2,37.0,0.0,9,400,0.0,0.0,0.0,56,62,0.0,0.0,0.0,1329.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,109926,2,1,1,0,1,,1142.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1193.45600883837,0.0,29916.978805442366,1,1,1,2,129.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044422934837198,12465.407835600987,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +9916,2,67.0,0.0,1,120,850.0,0.0,0.0,78,74,0.0,0.0,1449.420461866252,850.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,109927,2,1,1,0,1,,150.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1480.35859235577,850.0,43251.984431526755,5,5,0,1,100.0,0,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019652277489039957,28834.656287684502,8,4,8,8_1,8_1,8_1_0 +9917,2,34.0,0.0,7,112,589.0,0.0,0.0,56,47,0.0,854.1910936715944,1004.363120046144,1234.0,0.0,0.0,43,0,0,0,0,0,0,0,0,4,30.0,1,,5,109928,2,1,1,0,1,,303.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1603.98777637131,589.0,46291.23906239998,1,1,1,2,125.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026657311944849525,22043.447172571417,6,3,6,6_1,6_0,6_0_0 +9918,2,79.0,0.0,9,111,590.0,829.0,0.0,0,77,0.0,0.0,1006.0683205895161,1419.0,0.0,1573.859855742085,70,0,0,0,0,0,0,0,0,0,,2,2009.0,6,109929,2,1,0,0,1,,181.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1823.05368291002,590.0,55159.04079520138,0,5,0,1,130.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025725610517205504,55159.04079520138,10,5,10,10_0,10_3,10_0_0 +9919,2,70.0,0.0,5,111,2394.0,0.0,0.0,86,74,0.0,0.0,4082.2501008327145,2394.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,109930,1,1,3,0,1,,334.0,,41,0.0,7.0,7.0,2.0,1.5,2,2,575.961476938637,2394.0,60324.74759406844,6,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03968520541701189,40216.49839604562,9,5,9,9_1,9_4,9_0_0 +9920,2,50.0,0.0,5,120,1640.0,,,54,63,0.0,0.0,,1640.0,0.0,,31,0,0,0,0,0,0,0,0,2,45.0,2,,3,109931,2,1,0,0,1,,0.0,,43,3.0,1.0,4.0,4.0,2.5,4,4,119.17798458765243,1640.0,59316.35507436255,1,1,1,2,77.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02764836102865723,23726.542029745022,6,3,6,6_0,6_1,6_0_0 +9921,2,31.0,0.0,2,112,1500.0,0.0,0.0,21,54,0.0,529.7309108040896,2557.8008150580918,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,109932,2,1,2,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,738.800278536737,1500.0,18980.11797882188,1,1,1,2,61.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10010475183136536,10544.509988234377,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +9922,1,35.0,539.0,6,111,900.0,,,0,85,0.0,0.0,,1176.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,109933,1,2,0,0,2,,650.0,650.0,31,0.0,0.0,3.0,5.0,2.2,1,1,57.87420575834444,900.0,6878.2244368077645,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17097435694404156,3126.465653094438,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +9923,2,47.0,0.0,7,112,940.0,850.0,0.0,62,47,0.0,0.0,1602.8885107697374,1790.0,0.0,1613.7284407488207,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,109934,2,1,1,0,1,,540.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,207.114807173081,940.0,52167.42410727615,1,1,1,2,90.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03431260083532352,22681.48874229398,6,3,6,6_1,6_0,6_0_0 +9924,1,55.0,272.0,2,111,250.0,200.0,0.0,0,77,0.0,0.0,426.3001358430153,450.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,8,,2,109935,2,3,0,1,1,,200.0,335.0,11,0.0,1.0,3.0,1.0,1.0,1,1,401.781762140196,250.0,4626.967022935495,0,6,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09725593412907138,4626.967022935495,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +9925,2,61.0,0.0,2,111,241.0,98.0,0.0,0,45,0.0,0.0,410.95333095266676,339.0,0.0,186.05339669809933,20,2,1,2,2,1,2,2,2,1,25.0,2,,2,109936,2,2,0,1,1,660.0,0.0,648.0,22,2.0,1.0,3.0,2.0,1.5,2,2,983.23234351929,241.0,40645.58760382459,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.008340388710928648,27097.058402549726,7,4,7,7_0,7_4,7_0_1 +9926,1,27.0,253.0,7,111,0.0,,,0,67,0.0,0.0,,277.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,5,109937,1,3,0,0,1,,289.0,497.0,12,1.0,0.0,2.0,1.0,1.0,1,1,173.99696209970364,0.0,21684.56303124351,0,4,3,4,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012774064185701754,21684.56303124351,6,3,6,6_0,6_2,6_0_0 +9927,2,66.0,0.0,9,112,615.0,0.0,0.0,90,11,0.0,1324.327277010224,1048.6983341738176,1740.0,173.19865317456512,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,109938,2,1,1,0,1,,350.0,,42,1.0,1.0,7.0,2.0,1.5,2,2,61.1463677623537,615.0,21807.998374697265,5,1,1,2,150.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07978723998892238,14538.66558313151,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +9928,2,38.0,0.0,9,300,950.0,,,47,38,0.0,0.0,,996.0,63.73710436823996,,12,0,0,0,0,0,0,0,0,0,,1,2009.0,6,109939,2,1,0,0,1,,330.0,900.0,43,2.0,0.0,5.0,4.0,2.1,2,2,127.65334649653435,950.0,73562.70802583965,1,4,2,3,105.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013539468933772053,35029.86096468555,9,5,9,9_1,9_1,9_0_0 +9929,2,49.0,0.0,1,112,580.0,1200.0,0.0,0,22,0.0,0.0,989.0163151557955,1780.0,0.0,2278.2048575277468,41,2,2,1,1,1,2,2,2,0,,1,,1,109940,2,1,2,0,1,,350.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,719.661377156345,580.0,5978.463556576199,0,1,0,1,58.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.29773536012309265,3985.6423710507993,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +9930,1,48.0,37.0,1,111,850.0,0.0,0.0,0,67,0.0,0.0,1449.420461866252,910.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,109941,2,2,0,0,1,,0.0,507.0,12,1.0,4.0,2.0,1.0,1.0,1,1,2675.39512807679,850.0,15817.905363876998,0,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05752974107925484,15817.905363876998,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +9931,2,86.0,0.0,2,111,214.0,878.0,0.0,75,74,0.0,0.0,364.9129162816211,1092.0,0.0,1666.8865540911347,50,0,0,0,0,0,0,0,0,0,,1,,2,109942,2,1,2,0,1,,120.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1015.56473761138,214.0,41326.51131125197,5,5,0,1,87.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026423716044540184,27551.007540834646,7,4,7,7_1,7_3,7_0_1 +9932,1,46.0,255.0,2,111,250.0,0.0,0.0,0,56,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,109943,2,2,0,1,1,1080.0,0.0,321.0,32,2.0,1.0,5.0,2.0,1.5,2,2,422.032100526522,250.0,22376.93025762757,0,4,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.011172220546863577,14917.953505085046,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +9933,2,67.0,0.0,8,120,338.0,0.0,0.0,77,78,1054.6828510366015,0.0,576.3577836597567,1406.0,94.22006732696343,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,109944,2,1,2,0,1,,360.0,600.0,41,0.0,6.0,6.0,2.0,1.5,2,2,881.959398444071,338.0,37535.59595762147,5,5,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03745777745443034,25023.730638414312,7,4,7,7_1,7_0,7_0_0 +9934,2,44.0,0.0,2,111,840.0,0.0,0.0,64,38,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,109945,2,1,0,1,1,780.0,0.0,378.0,43,2.0,0.0,4.0,5.0,2.8,4,3,624.078188206298,840.0,64225.91909175385,1,1,2,3,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013078831908967574,22937.82824705495,6,3,6,6_0,6_4,6_0_1 +9935,2,72.0,0.0,1,111,380.0,0.0,0.0,0,77,0.0,741.6232751257254,647.9762064813832,1590.0,900.6329965077387,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,109946,2,1,1,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,711.909631314286,380.0,23465.943395802944,0,5,0,1,90.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06775777019407551,23465.943395802944,6,3,6,6_1,6_2,6_1_0 +9936,2,52.0,0.0,1,111,600.0,0.0,0.0,74,31,0.0,19.86490915515336,1023.1203260232367,962.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,,1,109947,2,1,0,1,2,,0.0,,42,1.0,1.0,8.0,4.0,2.5,4,3,584.113285347693,600.0,297905.81537866953,6,1,0,1,139.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0032292085294716288,119162.32615146782,10,5,10,10_0,10_4,10_1_0 +9937,2,66.0,0.0,7,111,180.0,,,0,77,0.0,0.0,,268.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,5,109948,2,1,0,0,2,,120.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,147.8980799843133,180.0,10927.171823230747,0,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024526016826260783,10927.171823230747,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +9938,2,50.0,0.0,6,111,860.0,1250.0,0.0,56,21,0.0,0.0,1466.4724672999725,2110.0,0.0,2373.130059924736,71,0,0,0,0,0,0,0,0,2,75.0,1,,4,109949,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,563.617908637359,860.0,72891.93661775439,1,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028946960362225643,31692.14635554539,8,4,8,8_1,8_4,8_0_0 +9939,1,54.0,110.0,9,120,470.0,,,54,47,0.0,0.0,,539.0,95.60565655235995,,42,0,0,0,0,0,0,0,0,0,,1,2007.0,6,109950,2,1,0,0,1,,540.0,,43,2.0,1.0,4.0,6.0,2.6999999999999997,2,2,163.28290523736044,470.0,29407.852116457194,4,4,1,2,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01832843819621785,10891.797080169332,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +9940,2,37.0,0.0,6,111,1000.0,0.0,0.0,0,52,0.0,662.163638505112,1705.2005433720612,1620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109951,1,1,2,0,2,,0.0,,32,1.0,1.0,4.0,3.0,1.8,2,2,1399.35277820155,1000.0,42067.96294907538,0,1,0,1,125.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03850911445275023,23371.0905272641,6,3,6,6_1,6_3,6_0_0 +9941,2,81.0,0.0,2,111,287.0,194.0,0.0,85,78,0.0,0.0,489.39255594778155,481.0,0.0,368.30978530031905,71,0,0,0,0,0,0,0,0,0,,2,,2,109952,2,1,0,1,1,572.0,435.0,313.0,41,0.0,3.0,3.0,2.0,1.5,2,2,405.554409246653,287.0,19443.576868918328,6,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024738246632434492,12962.384579278885,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +9943,2,37.0,0.0,2,111,373.0,121.0,0.0,31,47,0.0,0.0,636.0398026777788,494.0,0.0,229.71898980071447,10,0,0,0,0,0,0,0,0,0,,2,,2,109954,2,1,0,1,1,726.0,0.0,1495.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1196.62675769058,373.0,57792.298795724266,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00854785170851429,38528.19919714951,9,5,9,9_0,9_4,9_0_1 +9944,1,84.0,115.0,5,111,320.0,0.0,0.0,0,77,0.0,0.0,545.6641738790596,320.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,3,109955,2,1,0,1,1,720.0,0.0,337.0,11,0.0,1.0,2.0,1.0,1.0,1,1,243.698166570718,320.0,14970.652655985752,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02137515359906862,14970.652655985752,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +9945,2,27.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,690.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,109956,2,2,0,0,1,,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,386.696745579262,0.0,19395.733110649162,0,1,2,3,39.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03557483473626258,19395.733110649162,5,3,5,5_0,5_3,5_1_0 +9946,2,53.0,0.0,2,111,240.0,500.0,0.0,0,63,0.0,0.0,409.2481304092947,740.0,0.0,949.2520239698945,60,0,0,0,0,0,0,0,0,1,2.0,2,,2,109957,2,3,0,0,1,,180.0,302.0,12,1.0,0.0,4.0,1.0,1.0,1,1,319.668842278676,240.0,26964.99075129124,0,1,2,3,75.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027442991055525005,26964.99075129124,7,4,7,7_0,7_2,7_0_1 +9947,2,43.0,0.0,9,111,0.0,,,55,55,0.0,0.0,,726.0,0.0,,31,0,0,0,0,0,0,0,0,2,50.0,1,2013.0,6,109958,2,1,0,0,2,,250.0,,43,2.0,1.0,3.0,3.0,2.0,3,2,244.84157931285793,0.0,40291.299178727626,1,1,1,2,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0180187786146966,20145.649589363813,5,3,5,5_1,5_2,5_0_0 +9948,2,57.0,0.0,6,111,450.0,1425.0,0.0,62,54,0.0,0.0,767.3402445174275,1875.0,0.0,2705.368268314199,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,109959,2,1,2,0,1,,182.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,2131.62508584088,450.0,115096.94529759377,1,1,0,1,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01629061479565782,76731.29686506251,10,5,10,10_1,10_3,10_0_0 +9949,2,48.0,0.0,7,111,1038.0,,,90,46,0.0,0.0,,1326.0,399.049696914198,,30,0,0,0,0,0,0,0,0,2,10.0,1,,5,109960,2,3,0,0,2,,500.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,68.16351469782457,1038.0,42636.230147559385,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03110031059056716,21318.115073779692,6,3,6,6_1,6_2,6_0_0 +9950,2,73.0,0.0,2,111,1200.0,,,0,86,0.0,0.0,,1384.0,254.94841747295985,,70,0,0,0,0,0,0,0,0,0,,1,,2,109961,2,2,0,0,2,,0.0,,21,3.0,2.0,5.0,7.0,3.6,5,4,155.01425347027924,1200.0,15119.80932107545,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09153554589282069,4199.947033632069,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +9951,1,35.0,228.0,8,400,1406.0,0.0,0.0,85,52,0.0,0.0,2397.511963981118,1406.0,0.0,0.0,50,2,2,2,2,2,2,2,1,2,35.0,1,2000.0,6,109962,2,2,1,0,1,,780.0,695.0,42,1.0,0.0,5.0,4.0,2.1,2,2,2502.76135695085,1406.0,28623.730015453864,6,1,2,3,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.04912008320512054,13630.347626406601,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +9952,0,43.0,0.0,2,111,1080.0,,,42,47,0.0,0.0,,1280.0,277.1178450793042,,50,2,2,2,1,1,2,2,2,2,5.0,1,,2,109963,1,3,0,0,2,,300.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,122.08157361827739,1080.0,41005.1762347764,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.031215571240843364,20502.5881173882,5,3,5,5_1,5_2,5_0_1 +9953,2,53.0,0.0,6,400,2000.0,0.0,0.0,11,11,0.0,1324.327277010224,3410.4010867441225,3160.0,221.69427606344334,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,109964,2,1,2,0,1,,175.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1057.96275252369,2000.0,24628.129407998284,1,1,0,1,198.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12830856731545967,16418.752938665522,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9954,2,69.0,0.0,2,111,630.0,100.0,0.0,77,78,0.0,0.0,1074.2763423243985,730.0,0.0,189.8504047939789,70,2,1,2,1,1,2,2,2,0,,2,,2,109965,2,2,0,1,1,620.0,0.0,427.0,41,0.0,3.0,3.0,2.0,1.5,2,2,220.055382306973,630.0,33450.4727166018,5,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.021823308931526515,22300.3151444012,6,3,6,6_0,6_4,6_0_1 +9955,1,80.0,44.0,1,112,973.0,0.0,0.0,0,72,0.0,0.0,1659.1601287010155,1129.0,216.15191916185728,0.0,70,2,2,2,2,2,2,2,1,0,,2,,1,109966,1,2,0,0,1,,184.0,400.0,11,0.0,3.0,4.0,1.0,1.0,1,1,2008.4692409224,973.0,13831.184019457554,0,5,2,3,60.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.08162714041051984,13831.184019457554,3,2,3_1,3_0_1,3_0_1,3_1_0_1 +9956,1,41.0,407.0,8,111,673.0,,,0,85,0.0,0.0,,799.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,109967,1,1,0,0,2,,900.0,402.0,31,0.0,0.0,3.0,3.0,2.0,3,2,92.68435573452592,673.0,10748.890055538162,0,6,2,3,52.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07433325635220638,5374.445027769081,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9957,2,58.0,0.0,6,112,1500.0,0.0,0.0,62,21,0.0,662.163638505112,2557.8008150580918,2120.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,109968,2,1,2,0,1,,160.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,433.654386801619,1500.0,29090.248871923817,1,1,0,1,77.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07287665393767388,19393.49924794921,5,3,5,5_1,5_0,5_0_0 +9958,2,59.0,0.0,1,111,1250.0,0.0,0.0,0,45,0.0,99.3245457757668,2131.5006792150766,1325.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,7.0,1,,1,109969,2,1,4,0,1,,300.0,,22,2.0,1.0,3.0,2.0,1.5,2,2,477.979716617781,1250.0,50916.72460844245,0,1,1,2,80.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026022883643625087,33944.48307229496,9,5,9,9_1,9_2,9_1_0 +9959,2,44.0,0.0,2,111,206.0,0.0,0.0,0,63,0.0,0.0,351.2713119346446,311.0,145.4868686666347,0.0,50,2,1,2,1,2,2,2,2,2,30.0,2,,2,109970,1,1,0,3,2,,0.0,571.0,22,1.0,0.0,2.0,2.0,1.5,2,2,1965.51830174995,206.0,28800.884917351363,0,1,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.010798279319974475,19200.58994490091,5,3,5,5_0,5_3,5_0_1 +9960,2,67.0,0.0,5,111,1440.0,0.0,0.0,77,72,0.0,0.0,2455.488782455768,1615.0,242.47811444439117,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,109971,1,2,1,0,2,,280.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,1826.63963706076,1440.0,56228.56443195667,5,5,0,1,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028722056419461756,28114.282215978335,8,4,8,8_1,8_3,8_0_0 +9961,2,43.0,0.0,8,111,1600.0,0.0,0.0,42,38,0.0,264.8654554020448,2728.320869395298,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,4.0,1,2000.0,6,109972,2,1,1,0,1,,330.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,380.135410588341,1600.0,62891.883450994545,1,1,1,2,106.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028620545310947206,31445.941725497272,8,4,8,8_1,8_2,8_0_0 +9962,1,46.0,253.0,2,111,210.0,,,0,63,0.0,0.0,,282.0,99.7624242285495,,71,0,0,0,0,0,0,0,0,0,,1,,2,109973,2,2,0,0,2,,424.0,291.0,12,1.0,4.0,3.0,1.0,1.0,1,1,121.74662584829936,210.0,5241.0,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.053806525472238124,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +9963,2,82.0,0.0,2,111,211.0,100.0,0.0,77,74,0.0,0.0,359.7973146515049,311.0,0.0,189.8504047939789,60,0,0,0,0,0,0,0,0,0,,2,,2,109974,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,779.823581933955,211.0,38651.019344402186,5,5,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008046359585728288,25767.34622960146,7,4,7,7_0,7_4,7_0_1 +9964,2,82.0,0.0,5,300,250.0,0.0,0.0,0,77,1898.4291318658827,0.0,426.3001358430153,2130.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,109975,2,1,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1005.72595436917,250.0,20713.492390223284,0,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.102831524490064,20713.492390223284,5,3,5,5_1,5_0,5_0_0 +9965,2,62.0,0.0,8,111,744.0,,,0,77,0.0,0.0,,1064.0,443.3885521268867,,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,109976,2,2,0,0,2,,456.0,,21,2.0,1.0,4.0,3.0,2.0,3,3,142.82559695128026,744.0,9443.166369426752,0,5,0,1,118.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11267407121458882,4721.583184713376,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +9966,2,63.0,0.0,1,111,350.0,950.0,0.0,0,43,0.0,0.0,596.8201901802214,1300.0,0.0,1803.5788455427996,41,0,0,0,0,0,0,0,0,2,15.0,2,,1,109977,2,1,0,0,1,,250.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,2033.51820423457,350.0,24680.581175349067,0,5,1,2,56.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05267298977944808,24680.581175349067,7,4,7,7_0,7_3,7_1_0 +9967,2,53.0,0.0,1,111,340.0,1400.0,0.0,0,31,0.0,0.0,579.7681847465008,1740.0,0.0,2657.9056671157045,10,0,0,0,0,0,0,0,0,1,15.0,2,,1,109978,1,1,0,0,1,,310.0,824.0,32,1.0,1.0,3.0,2.0,1.5,2,2,2156.71122179825,340.0,32310.203017067815,0,1,2,3,101.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05385295781276421,21540.135344711878,6,3,6,6_0,6_3,6_1_0 +9968,1,36.0,300.0,7,120,315.0,,,0,55,0.0,0.0,,401.0,119.1606733841008,,71,0,0,0,0,0,0,0,0,0,,1,,5,109979,2,1,0,0,1,,224.0,750.0,32,1.0,0.0,4.0,3.0,1.6,1,1,92.53786405574989,315.0,12184.424050632912,0,4,2,3,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03291087033196045,7615.265031645569,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +9969,2,53.0,0.0,2,111,360.0,0.0,0.0,75,45,0.0,0.0,613.872195613942,360.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,109980,2,2,0,1,2,468.0,0.0,421.0,42,1.0,1.0,2.0,2.0,1.5,2,2,231.892821998394,360.0,50554.888827345625,5,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0071209730324888485,33703.259218230414,9,5,9,9_0,9_4,9_0_1 +9970,2,61.0,0.0,2,111,380.0,0.0,0.0,75,78,0.0,0.0,647.9762064813832,657.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,109981,2,3,3,0,1,,400.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,199.097478879657,380.0,54076.88551217629,5,5,0,1,50.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012149368325808367,27038.442756088145,7,4,7,7_1,7_3,7_0_1 +9971,2,57.0,0.0,6,112,2500.0,0.0,0.0,42,37,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,20,2,2,1,1,2,2,2,2,2,60.0,1,,4,109982,1,1,1,0,1,,225.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,289.678421934698,2500.0,130493.79794816957,1,1,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0191579986122633,86995.86529877971,10,5,10,10_1,10_0,10_0_0 +9972,0,42.0,0.0,2,111,480.0,,,0,63,0.0,0.0,,543.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,2,109983,2,1,0,0,2,,450.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,121.83821905996878,480.0,7546.620105408697,0,4,0,1,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07195274075222488,7546.620105408697,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +9973,2,69.0,0.0,1,111,292.0,1463.0,0.0,0,75,0.0,0.0,497.91855866464186,1755.0,0.0,2777.5114221359113,31,0,0,0,0,0,0,0,0,0,,1,,1,109984,2,1,1,0,1,,176.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,836.401820208227,292.0,32201.7633011758,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054500121114048394,32201.7633011758,8,4,8,8_1,8_4,8_1_0 +9974,2,42.0,0.0,2,111,188.0,0.0,0.0,0,62,0.0,0.0,320.5777021539475,370.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,109985,2,1,0,1,1,564.0,0.0,293.0,22,1.0,1.0,2.0,2.0,1.5,2,2,931.901023798289,188.0,25151.916924001514,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014710608384958648,16767.94461600101,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +9975,2,40.0,0.0,2,111,450.0,100.0,0.0,56,52,0.0,0.0,767.3402445174275,550.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,109986,2,2,0,1,1,704.0,0.0,400.0,43,2.0,0.0,3.0,3.0,1.8,2,2,192.50213283003,450.0,40347.14637425603,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013631695161245256,22415.081319031127,6,3,6,6_0,6_4,6_0_1 +9976,2,68.0,0.0,2,111,391.0,1571.0,0.0,0,77,0.0,0.0,666.7334124584759,1962.0,0.0,2982.5498593134084,60,0,0,0,0,0,0,0,0,0,,1,,2,109987,2,1,1,0,1,,228.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,712.52335998385,391.0,35506.22007264582,0,5,0,1,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055257923709866694,35506.22007264582,9,5,9,9_1,9_4,9_0_1 +9977,2,59.0,0.0,7,111,1350.0,0.0,0.0,48,33,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,90.0,2,,5,109988,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,716.235474340901,1350.0,198723.70755599035,1,1,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006793351516047163,132482.47170399356,10,5,10,10_0,10_4,10_0_0 +9978,2,54.0,0.0,9,211,2500.0,0.0,0.0,46,22,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,109989,2,1,1,0,1,,200.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,1587.71941286814,2500.0,40985.058227124595,1,1,1,2,210.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060997839411277406,27323.372151416395,7,4,7,7_1,7_1,7_0_0 +9979,1,23.0,270.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1472.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,,3,109990,1,2,0,0,1,,279.0,580.0,12,1.0,0.0,3.0,1.0,1.0,1,1,748.025793081207,0.0,10012.864050785149,0,1,2,3,60.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14701088445164445,10012.864050785149,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +9980,2,45.0,0.0,9,120,924.0,0.0,0.0,55,48,0.0,0.0,1575.6053020757845,2624.0,2355.5016831740854,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,109991,2,1,1,0,1,,750.0,750.0,43,2.0,2.0,6.0,5.0,2.8,4,3,262.752895966299,924.0,50581.55874504895,1,1,2,3,145.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0518766140289586,18064.842408946053,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +9981,1,21.0,357.0,5,111,0.0,,,64,85,0.0,0.0,,327.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,109992,2,1,0,0,2,,195.0,538.0,42,1.0,0.0,2.0,3.0,1.8,2,2,152.78238203729018,0.0,12710.204859634436,4,6,2,3,47.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025727358733492908,7061.224922019131,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +9982,1,53.0,270.0,5,111,303.0,108.0,0.0,0,77,0.0,0.0,516.6757646417345,411.0,0.0,205.0384371774972,71,0,0,0,0,0,0,0,0,0,,8,,3,109993,2,1,0,1,1,387.0,720.0,276.0,31,1.0,1.0,3.0,2.0,1.5,2,2,317.235212147616,303.0,6757.111531190925,0,7,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.060824806295236955,4504.74102079395,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +9983,2,43.0,0.0,2,112,50.0,100.0,0.0,47,48,0.0,0.0,85.26002716860306,150.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,2,40.0,1,,2,109994,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,838.701152820424,50.0,60826.278046504696,1,1,1,2,185.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002466039429295963,28964.894307859377,8,4,8,8_1,8_1,8_0_1 +9984,0,62.0,0.0,2,111,300.0,0.0,0.0,0,48,822.6526238085492,0.0,511.56016301161833,1160.0,110.84713803172167,0.0,31,2,2,2,2,1,2,2,2,0,,1,,2,109995,2,1,2,0,2,,90.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,2396.6780818448,300.0,58752.42034142013,0,1,0,1,80.0,8,6,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.019743867457017877,39168.280227613424,9,5,9,9_1,9_2,9_0_1 +9985,1,62.0,149.0,2,111,1320.0,0.0,0.0,85,78,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109996,2,2,0,1,1,1480.0,0.0,571.0,41,1.0,0.0,8.0,8.0,4.3,7,6,920.92218223856,1320.0,41570.35209911392,6,5,2,3,126.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031753399558723874,9667.523743979982,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +9986,1,71.0,100.0,2,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,384.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,109997,2,1,0,1,1,,358.0,300.0,41,0.0,6.0,4.0,3.0,2.0,3,3,385.210591295786,0.0,14321.065485832192,5,5,2,3,80.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026813647376997932,7160.532742916096,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +9987,2,58.0,0.0,1,111,210.0,0.0,0.0,0,62,0.0,0.0,358.0921141081328,210.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,109998,2,1,0,0,1,,0.0,350.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1967.73207613321,210.0,27570.521230187675,0,1,2,3,30.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.00761683097126454,27570.521230187675,7,4,7,7_0,7_3,7_1_0 +9988,1,42.0,252.0,7,400,1702.0,0.0,0.0,21,55,0.0,0.0,2902.251324819248,1842.0,193.98249155551292,0.0,50,2,2,1,2,1,2,2,2,1,5.0,1,,5,109999,1,2,2,0,1,,258.0,560.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,1180.22721493666,1702.0,25277.622030102862,1,1,2,3,80.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.07287077865973235,9722.162319270334,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +9989,2,85.0,0.0,7,111,743.0,0.0,0.0,86,75,0.0,0.0,1266.9640037254414,743.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,110000,2,1,0,0,1,,801.0,676.0,41,0.0,1.0,2.0,2.0,1.5,2,2,3238.87743538237,743.0,27879.853712917786,6,5,2,3,43.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026650068097586185,18586.56914194519,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +9990,1,42.0,327.0,2,111,0.0,0.0,0.0,63,85,0.0,0.0,0.0,402.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110001,2,1,0,1,1,619.0,0.0,317.0,42,1.0,0.0,3.0,2.0,1.5,2,2,331.751209233178,0.0,14935.501770137476,4,7,2,3,85.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026915734481969114,9957.00118009165,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +9991,2,53.0,0.0,2,221,280.0,0.0,0.0,0,52,1687.4925616585624,0.0,477.4561521441771,1940.0,83.13535352379125,0.0,50,2,2,2,1,1,2,2,2,0,,1,,2,110002,2,3,2,0,1,,180.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,2091.62623900267,280.0,9470.92091196702,0,4,0,1,120.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.20483752509734351,9470.92091196702,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +9992,2,66.0,0.0,2,112,1000.0,2500.0,0.0,74,74,0.0,0.0,1705.2005433720612,3500.0,0.0,4746.260119849472,10,0,0,0,0,0,0,0,0,0,,1,,2,110003,2,1,2,0,1,,200.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,832.137394786026,1000.0,56172.35300458799,5,5,0,1,110.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062308231946668326,37448.23533639199,9,5,9,9_1,9_2,9_0_1 +9993,0,67.0,0.0,6,400,480.0,,,0,86,0.0,0.0,,612.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,110004,2,2,0,0,2,,268.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,109.08336080848402,480.0,14410.346820809249,0,7,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04246948443435393,9606.8978805395,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +9994,2,57.0,0.0,6,300,500.0,0.0,0.0,78,64,0.0,317.83854648245375,852.6002716860306,872.0,182.89777775234077,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,4,110005,2,1,3,0,1,,250.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,1221.17326227967,500.0,44115.792480563825,6,1,0,1,78.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019766164245699058,22057.896240281912,6,3,6,6_1,6_0,6_0_0 +9996,2,56.0,0.0,1,222,628.0,0.0,0.0,78,46,2636.7071275915036,33.1081819252556,1070.8659412376544,3273.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110007,2,1,1,0,1,,378.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,1571.40200440113,628.0,49248.8312388239,5,1,0,1,180.0,1,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06645842992959851,24624.41561941195,7,4,7,7_1,7_0,7_1_0 +9997,2,61.0,0.0,7,400,921.0,0.0,0.0,78,56,0.0,39.72981831030672,1570.4897004456684,1071.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,110008,2,1,2,0,1,,279.0,,42,1.0,2.0,5.0,3.0,2.0,3,3,1012.55119664661,921.0,22992.452536863577,5,1,0,1,115.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04658050280990582,11496.226268431788,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +9998,2,75.0,0.0,5,221,250.0,1155.0,0.0,78,78,0.0,773.4071297739707,426.3001358430153,1989.0,0.0,2192.7721753704564,71,0,0,0,0,0,0,0,0,0,,1,,3,110009,2,1,2,0,1,,279.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2070.41966965047,250.0,21187.835456566336,5,5,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09387461990052352,14125.223637710891,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +9999,0,49.0,0.0,5,111,120.0,0.0,0.0,0,56,0.0,0.0,204.62406520464734,147.0,37.410909085706066,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,110010,2,1,0,0,1,1250.0,0.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,332.22533905767,120.0,18734.439138680333,0,1,5,0,47.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007846511919136896,18734.439138680333,5,3,5,5_0,5_3,5_0_0 +10000,2,57.0,0.0,7,111,480.0,,,85,37,0.0,0.0,,502.0,30.482962958723462,,60,0,0,0,0,0,0,0,0,0,,1,,5,110011,2,1,0,0,2,,120.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,157.05449057388637,480.0,133234.61058052315,7,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037677897493204717,88823.07372034877,10,5,10,10_1,10_2,10_0_0 +10001,2,32.0,0.0,1,112,534.0,0.0,0.0,0,52,0.0,0.0,910.5770901606807,534.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,110012,1,2,0,0,1,,142.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2474.8024376093,534.0,19815.133080056337,0,1,1,2,50.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.026949099854265614,19815.133080056337,5,3,5,5_0,5_0,5_1_0 +10002,2,50.0,0.0,1,111,600.0,1200.0,0.0,85,35,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,110013,2,2,4,0,1,,400.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,739.816061320225,600.0,137056.38016605342,6,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013133281338812346,76142.43342558523,10,5,10,10_1,10_4,10_1_0 +10003,1,26.0,377.0,6,111,492.0,156.0,0.0,35,81,0.0,0.0,838.958667339054,648.0,0.0,296.1666314786071,70,2,1,2,1,1,2,2,2,0,,2,,4,110014,1,3,0,1,1,,0.0,538.0,43,2.0,3.0,4.0,3.0,1.8,2,2,272.985626462326,492.0,18350.0,1,4,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.0353133514986376,10194.444444444443,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10004,2,94.0,0.0,5,111,330.0,0.0,0.0,0,74,2109.365702073203,0.0,562.7161793127802,2430.0,41.567676761895626,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,110015,2,1,3,0,2,,114.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1363.39541629908,330.0,39283.17459654006,0,5,0,1,106.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06185854440119579,39283.17459654006,9,5,9,9_1,9_2,9_0_0 +10005,2,74.0,0.0,6,111,660.0,0.0,0.0,0,78,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,110016,2,1,0,0,1,,0.0,302.0,11,0.0,3.0,2.0,1.0,1.0,1,1,346.686426193191,660.0,21949.773589315584,0,5,2,3,45.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030068647283052884,21949.773589315584,6,3,6,6_0,6_3,6_0_0 +10006,1,43.0,100.0,7,111,540.0,1140.0,0.0,0,64,0.0,0.0,920.8082934209131,1680.0,0.0,2164.2946146513596,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,110017,1,3,2,0,1,,240.0,369.0,32,1.0,2.0,4.0,2.0,1.5,2,1,129.791484652009,540.0,18095.891011869488,0,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0928387554333772,12063.927341246324,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +10007,2,81.0,0.0,2,222,1484.0,0.0,0.0,78,75,0.0,0.0,2530.517606364139,1484.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110018,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1049.12064790294,1484.0,49037.5064306547,5,5,0,1,70.0,1,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030262550199173885,32691.6709537698,8,4,8,8_1,8_0,8_0_1 +10008,2,47.0,0.0,5,111,232.0,531.0,0.0,43,33,0.0,0.0,395.6065260623182,763.0,0.0,1008.105649456028,10,0,0,0,0,0,0,0,0,2,45.0,1,,3,110019,2,1,2,0,1,,257.0,489.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1105.46487083314,232.0,60239.06919170286,1,1,2,3,60.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012666198369896015,40159.37946113524,9,5,9,9_1,9_2,9_0_0 +10010,2,83.0,0.0,2,120,0.0,,,0,72,0.0,0.0,,544.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,2,110021,2,3,0,0,2,,320.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,120.8367481191157,0.0,11940.785284334332,0,5,0,1,88.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045558142705547075,11940.785284334332,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +10011,2,61.0,0.0,2,111,480.0,216.0,0.0,43,43,0.0,0.0,818.4962608185893,1111.0,0.0,410.0768743549944,10,1,2,2,1,1,2,2,2,2,50.0,2,,2,110022,1,1,0,1,1,1096.0,0.0,454.0,43,2.0,5.0,6.0,2.0,1.5,2,2,253.903437750714,480.0,81654.02209739761,1,1,2,3,139.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013606188298658329,54436.01473159841,10,5,10,10_0,10_4,10_0_1 +10012,0,50.0,0.0,2,111,276.0,,,0,62,0.0,99.3245457757668,,375.0,33.25414140951651,,50,0,0,0,0,0,0,0,0,2,180.0,1,,2,110023,2,2,0,0,2,,160.0,,22,2.0,3.0,8.0,2.0,1.5,2,2,86.13488956330956,276.0,18652.891993629586,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020104121126529418,12435.26132908639,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +10013,2,40.0,0.0,7,112,36.0,0.0,0.0,0,90,0.0,344.3250920226582,61.387219561394204,360.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,7,,5,110024,2,1,0,0,1,,0.0,200.0,12,1.0,0.0,1.0,1.0,1.0,1,1,92.8700668052604,36.0,5490.333333333333,0,4,3,4,10.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06556978932669541,5490.333333333333,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10014,2,53.0,0.0,7,111,495.0,0.0,0.0,0,52,0.0,0.0,844.0742689691702,495.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,5,110025,2,3,0,0,1,,0.0,426.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1037.4115920876,495.0,23908.14433838986,0,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020704241742641946,23908.14433838986,6,3,6,6_0,6_4,6_0_0 +10015,2,50.0,0.0,2,111,600.0,456.0,0.0,62,54,0.0,0.0,1023.1203260232367,1056.0,0.0,865.7178458605438,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,110026,2,1,0,1,1,936.0,0.0,371.0,43,2.0,0.0,4.0,5.0,2.8,4,4,306.807335112009,600.0,39574.477428015554,1,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026683864668101385,14133.741938576984,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +10016,1,56.0,345.0,6,111,1800.0,0.0,0.0,52,52,0.0,0.0,3069.36097806971,1860.0,83.13535352379125,0.0,60,2,2,1,2,2,2,2,1,2,10.0,1,,4,110027,2,1,2,0,1,,650.0,620.0,43,2.0,0.0,4.0,4.0,2.5,4,3,1361.32538502794,1800.0,23715.4319564534,1,1,2,3,198.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,1,0.07842994398817434,9486.172782581361,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +10017,2,55.0,0.0,8,112,613.0,1200.0,0.0,38,38,0.0,0.0,1045.2879330870735,1813.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,0,,1,2002.0,6,110028,2,1,2,0,1,,535.0,,43,2.0,2.0,7.0,3.0,2.0,3,2,650.033403268641,613.0,101820.73551107876,1,1,1,2,159.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0178058034142047,50910.36775553938,10,5,10,10_1,10_1,10_0_0 +10018,1,44.0,491.0,2,111,2400.0,0.0,0.0,0,67,0.0,0.0,4092.4813040929466,2772.0,515.4391918475058,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,110029,2,1,2,0,1,,947.0,750.0,32,4.0,0.0,4.0,7.0,3.6,5,4,333.488030404134,2400.0,13624.290245268794,0,4,2,3,78.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.2034601399483993,3784.5250681302205,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +10019,2,58.0,0.0,5,112,1566.0,0.0,0.0,78,56,0.0,0.0,2670.344050920648,1566.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,3,110030,2,1,2,0,1,,278.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,787.642042241101,1566.0,65770.0093665023,5,4,0,1,85.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02381024444247059,43846.67291100154,10,5,10,10_1,10_0,10_0_0 +10020,2,43.0,0.0,2,111,209.0,155.0,0.0,0,67,0.0,0.0,356.3869135647608,364.0,0.0,294.2681274306673,50,2,1,2,2,1,2,2,2,2,10.0,2,,2,110031,2,2,0,1,1,552.0,0.0,264.0,12,1.0,2.0,3.0,1.0,1.0,1,1,252.603658500696,209.0,18877.882588705732,0,1,2,3,60.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.01928182349315882,18877.882588705732,5,3,5,5_0,5_2,5_0_1 +10021,1,40.0,271.0,2,111,180.0,90.0,0.0,0,85,0.0,0.0,306.936097806971,270.0,0.0,170.865364314581,71,0,0,0,0,0,0,0,0,0,,2,,2,110032,2,1,0,1,1,409.0,0.0,303.0,21,1.0,0.0,3.0,2.0,1.5,2,2,256.938481092764,180.0,14447.017461575038,0,7,2,3,98.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.018688978588011215,9631.344974383359,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10022,2,48.0,0.0,2,112,1032.0,1300.0,0.0,52,64,0.0,198.6490915515336,1759.766960759967,2482.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,110033,2,2,4,0,1,,165.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,64.8537859003579,1032.0,36553.559750538916,1,1,0,1,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06790036365646734,14621.423900215566,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +10023,1,49.0,270.0,2,111,370.0,160.0,0.0,0,68,0.0,0.0,630.9242010476627,530.0,0.0,303.7606476703662,50,2,2,2,2,1,2,2,2,0,,2,,2,110034,2,2,0,1,1,848.0,0.0,300.0,12,1.0,1.0,3.0,1.0,1.0,1,1,286.532097935422,370.0,6060.0,0,4,2,3,63.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.08745874587458746,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10024,2,27.0,0.0,1,111,620.0,0.0,0.0,38,38,0.0,0.0,1057.224336890678,620.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,110035,2,2,0,0,1,,0.0,988.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1275.69222036652,620.0,56939.30481401869,1,1,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010888787666535638,37959.536542679125,9,5,9,9_0,9_4,9_1_0 +10025,2,76.0,0.0,2,111,125.0,125.0,0.0,0,74,0.0,0.0,213.15006792150766,762.0,0.0,237.31300599247362,60,0,0,0,0,0,0,0,0,0,,2,,2,110036,2,1,0,1,1,600.0,0.0,300.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1322.59162535718,125.0,21226.124256341885,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035899158546211354,21226.124256341885,5,3,5,5_0,5_4,5_0_1 +10026,2,64.0,0.0,1,111,0.0,0.0,1300.0,86,78,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,71,2,2,1,1,1,2,2,2,0,,1,,1,110037,2,1,1,0,1,,600.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,221.372899453576,0.0,15480.402525451012,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.08397714451305105,10320.268350300676,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +10027,2,64.0,0.0,2,112,400.0,50.0,0.0,85,75,0.0,794.5963662061343,682.0802173488245,1050.0,0.0,94.92520239698945,50,0,0,0,0,0,0,0,0,0,,1,,2,110038,2,1,2,0,1,,258.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2408.23477140831,400.0,24487.678224215764,6,5,0,1,110.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04287870782954259,16325.118816143842,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +10028,2,26.0,0.0,1,111,390.0,1245.0,0.0,55,63,0.0,0.0,665.0282119151038,1635.0,0.0,2363.637539685037,43,0,0,0,0,0,0,0,0,2,40.0,1,,1,110039,2,1,1,0,1,,395.0,508.0,43,2.0,0.0,5.0,3.0,1.8,2,2,236.653530275282,390.0,34815.42264068289,1,1,2,3,84.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04696194605690216,19341.90146704605,5,3,5,5_1,5_3,5_1_0 +10029,2,67.0,0.0,1,111,495.0,1091.0,0.0,68,78,0.0,0.0,844.0742689691702,1586.0,0.0,2071.26791630231,71,0,0,0,0,0,0,0,0,0,,1,,1,110040,2,1,2,0,1,,131.0,,42,3.0,0.0,5.0,4.0,2.5,4,4,228.175072522604,495.0,51500.64250683683,1,5,0,1,104.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03079573230158157,20600.257002734732,5,3,5,5_1,5_3,5_1_0 +10030,2,45.0,0.0,1,111,630.0,0.0,0.0,0,21,0.0,0.0,1074.2763423243985,630.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,110041,1,3,0,0,2,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2100.97428996942,630.0,16845.98526251278,0,1,2,3,42.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.037397634521379605,16845.98526251278,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +10031,2,57.0,0.0,2,111,1000.0,1800.0,0.0,75,74,0.0,529.7309108040896,1705.2005433720612,3200.0,0.0,3417.30728629162,10,0,0,0,0,0,0,0,0,0,,1,,2,110042,2,1,1,0,1,,600.0,,41,1.0,3.0,6.0,5.0,2.5999999999999996,3,3,511.439526416162,1000.0,109840.02357845301,6,7,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029133278524056457,42246.162914789624,9,5,9,9_1,9_4,9_0_1 +10032,1,36.0,268.0,2,111,400.0,0.0,0.0,0,68,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110043,2,2,0,1,1,692.0,228.0,268.0,32,1.0,0.0,3.0,2.0,1.3,1,1,259.789447387423,400.0,12726.0,0,4,2,3,70.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031431714600031434,9789.23076923077,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10033,2,66.0,0.0,2,112,537.0,1430.0,0.0,56,63,0.0,0.0,915.6926917907969,1967.0,0.0,2714.860788553898,70,0,0,0,0,0,0,0,0,3,120.0,2,,2,110044,1,3,0,0,1,,550.0,407.0,42,1.0,1.0,3.0,4.0,2.1,2,2,905.433083221169,537.0,37892.573319659175,6,1,2,3,76.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.051909908134412555,18044.082533171037,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +10034,0,78.0,0.0,2,211,470.0,2100.0,0.0,0,77,0.0,105.94618216081791,801.4442553848687,2650.0,0.0,3986.858500673557,70,2,2,2,1,1,2,2,2,0,,1,,2,110045,1,2,1,0,1,,462.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,854.812332593512,470.0,15536.344250859936,0,5,0,1,96.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.1705677962081281,15536.344250859936,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +10035,2,62.0,0.0,2,111,290.0,100.0,0.0,0,42,0.0,0.0,494.50815757789775,390.0,0.0,189.8504047939789,20,0,0,0,0,0,0,0,0,0,,2,,2,110046,1,2,0,1,2,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,417.076566973678,290.0,29361.246269197894,0,1,1,2,72.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013282814919513095,29361.246269197894,8,4,8,8_0,8_2,8_0_1 +10036,0,92.0,0.0,1,111,385.0,,,0,86,0.0,0.0,,649.0,365.79555550468154,,71,2,2,1,2,1,2,2,2,0,,1,,1,110047,1,3,0,0,2,,360.0,,21,2.0,3.0,4.0,4.0,2.5,4,3,118.42664379467917,385.0,32274.601166171316,0,6,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.020108691557751936,12909.840466468526,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +10037,2,78.0,0.0,1,111,701.0,0.0,0.0,0,72,0.0,0.0,1195.3455809038148,1474.0,181.51218852694424,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110048,2,1,2,0,1,,250.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1521.30561188649,701.0,27897.07247793134,0,5,0,1,90.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0528370853667905,27897.07247793134,7,4,7,7_1,7_2,7_1_0 +10038,2,55.0,0.0,2,111,636.0,0.0,0.0,85,48,843.7462808292812,0.0,1084.5075455846309,1496.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,110049,1,3,4,0,2,,500.0,500.0,42,1.0,1.0,3.0,3.0,2.0,3,3,1608.30156807686,636.0,60866.679694261795,6,1,2,3,65.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.024578307992394653,30433.339847130897,8,4,8,8_1,8_3,8_0_1 +10039,2,49.0,0.0,8,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1209.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,110050,2,1,1,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1110.64233968217,0.0,19926.54178271722,0,1,1,2,70.0,9,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06067284595506659,19926.54178271722,5,3,5,5_1,5_1,5_0_0 +10040,2,86.0,0.0,1,112,0.0,0.0,1130.0,0,86,0.0,0.0,712.2596681686605,1130.0,0.0,1352.3073267480893,60,0,0,0,0,0,0,0,0,0,,2,,1,110051,2,1,0,0,1,,101.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1357.1910259276,0.0,17578.278282337742,0,6,0,1,75.0,7,4,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06428388388499905,17578.278282337742,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +10041,2,51.0,0.0,6,111,2000.0,0.0,0.0,21,38,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,4,110052,2,1,1,0,1,,700.0,,43,2.0,1.0,7.0,3.0,1.8,2,2,573.149385237436,2000.0,71579.94567033429,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027940786784207958,39766.63648351905,9,5,9,9_1,9_4,9_0_0 +10042,2,43.0,0.0,1,211,2100.0,0.0,0.0,42,38,0.0,0.0,3580.9211410813286,2170.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,2,50.0,1,,1,110053,2,1,3,0,1,,440.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1508.40269773732,2100.0,72024.73872443888,1,1,1,2,90.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03012853692260174,40013.74373579938,9,5,9,9_1,9_1,9_1_0 +10043,2,71.0,0.0,1,120,880.0,0.0,0.0,77,78,0.0,993.245457757668,1500.5764781674138,1780.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110054,2,2,3,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1983.9421461237,880.0,35905.75817795585,5,5,0,1,96.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04957422124824595,23937.172118637234,6,3,6,6_1,6_0,6_1_0 +10044,0,61.0,0.0,6,111,317.0,0.0,0.0,0,75,1792.9608467622227,0.0,540.5485722489434,2107.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,110055,2,1,2,0,1,,360.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1024.95588298543,317.0,35942.81915978414,0,5,0,1,90.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05862088865743423,35942.81915978414,9,5,9,9_1,9_3,9_0_0 +10045,1,30.0,89.0,2,111,450.0,650.0,0.0,52,52,0.0,0.0,767.3402445174275,1100.0,0.0,1234.027631160863,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,110056,1,2,0,0,1,,320.0,364.0,43,2.0,0.0,4.0,4.0,2.1,2,2,271.37584095752,450.0,35667.89894313204,1,1,2,3,83.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030840055977331637,16984.713782443825,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +10046,1,42.0,203.0,9,120,384.0,,,54,42,0.0,0.0,,636.0,349.1684847999233,,20,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,110057,2,1,0,0,1,,300.0,,43,4.0,0.0,5.0,5.0,2.8,4,4,138.14023586357615,384.0,68392.50933903958,1,1,1,2,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.009299264000494287,24425.896192514138,7,4,7,7_1,7_2,7_0_0 +10047,2,30.0,0.0,1,111,0.0,0.0,1900.0,37,37,0.0,0.0,1197.6047517880133,1900.0,0.0,2273.7910803728937,12,2,2,2,2,1,2,2,2,3,90.0,2,,1,110058,2,2,0,0,1,,0.0,717.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1627.22106970699,0.0,53805.07554949208,1,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.03531265369662576,35870.050366328054,9,5,9,9_0,9_3,9_1_0 +10048,1,24.0,229.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,435.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,6.0,2,,1,110059,2,1,0,0,1,,323.0,335.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2267.04219366938,0.0,11988.23176778855,0,1,2,3,60.0,6,4,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03628558476562084,11988.23176778855,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +10049,1,58.0,225.0,2,111,400.0,400.0,0.0,85,54,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,110060,2,3,0,1,1,1176.0,360.0,326.0,42,1.0,0.0,4.0,5.0,3.0,5,4,853.006649257679,400.0,16647.515236533924,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04805521957080744,5549.171745511308,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10050,0,71.0,0.0,5,111,600.0,,,78,77,0.0,0.0,,852.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,110061,2,2,0,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,117.70367729144986,600.0,14998.92607170307,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05680406689965495,9999.284047802046,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10051,2,87.0,0.0,6,400,1700.0,0.0,0.0,0,78,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,110062,2,1,1,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,999.051620395855,1700.0,17390.72444490905,0,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09775325952552005,17390.72444490905,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10052,2,42.0,0.0,1,211,500.0,780.0,0.0,46,38,0.0,0.0,852.6002716860306,1280.0,0.0,1480.8331573930354,20,0,0,0,0,0,0,0,0,2,90.0,1,,1,110063,2,1,1,0,2,,409.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,536.229097133456,500.0,113354.37144263885,1,1,1,2,126.0,1,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011292021504858534,62974.65080146602,10,5,10,10_1,10_1,10_1_0 +10053,2,37.0,0.0,2,111,400.0,410.0,0.0,0,64,0.0,0.0,682.0802173488245,810.0,0.0,778.3866596553135,41,2,2,2,1,2,2,2,2,3,90.0,2,,2,110064,1,3,0,1,2,516.0,0.0,181.0,12,1.0,1.0,2.0,1.0,1.0,1,1,397.996691370921,400.0,3904.352784209713,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.20746076104492017,3904.352784209713,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +10054,1,28.0,206.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2299.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110065,2,1,0,0,1,,0.0,,22,1.0,4.0,4.0,3.0,2.0,3,3,332.376540982282,0.0,21956.710441555177,0,1,2,3,60.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1047060308109234,10978.355220777588,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10055,2,69.0,0.0,1,111,688.0,0.0,0.0,0,75,0.0,0.0,1173.177973839978,688.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,110066,2,1,0,0,1,,0.0,463.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2140.75178282548,688.0,22576.0,0,5,2,3,40.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03047484053862509,22576.0,6,3,6,6_0,6_3,6_1_0 +10056,2,59.0,0.0,9,111,1000.0,,,0,74,0.0,0.0,,1042.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,0,,1,2011.0,6,110067,2,1,0,0,2,,300.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,241.24968252208697,1000.0,47473.98532726187,0,5,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021948862999745525,47473.98532726187,10,5,10,10_1,10_2,10_0_0 +10057,0,64.0,0.0,1,111,308.0,1110.0,0.0,0,77,0.0,0.0,525.2017673585948,1418.0,0.0,2107.339493213166,71,2,2,2,2,1,2,2,2,0,,1,,1,110068,2,3,3,0,1,,186.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,918.734799630947,308.0,32726.123301872984,0,5,5,0,80.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.043329299560478186,32726.123301872984,8,4,8,8_1,8_2,8_1_0 +10058,2,67.0,0.0,2,111,204.0,640.0,0.0,0,77,0.0,0.0,347.86091084790047,844.0,0.0,1215.0425906814648,70,0,0,0,0,0,0,0,0,0,,2,,2,110069,1,1,0,0,1,,130.0,263.0,11,0.0,2.0,2.0,1.0,1.0,1,1,316.693079463433,204.0,26026.952084913974,0,5,2,3,48.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03242792307168416,26026.952084913974,7,4,7,7_0,7_2,7_0_1 +10059,2,56.0,0.0,9,211,549.0,0.0,0.0,78,45,0.0,444.9739650754352,936.1550983112616,1065.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,110070,2,1,1,0,1,,140.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,617.991158993534,549.0,26664.524652316693,6,1,1,2,132.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03994070825888395,17776.34976821113,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10060,2,79.0,0.0,1,112,500.0,590.0,0.0,0,72,0.0,0.0,852.6002716860306,1090.0,0.0,1120.1173882844755,71,0,0,0,0,0,0,0,0,0,,1,,1,110071,2,1,1,0,2,,300.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,637.272068019012,500.0,15385.859341870251,0,5,0,1,125.0,8,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0708442717290241,15385.859341870251,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +10061,2,77.0,0.0,1,400,500.0,0.0,0.0,72,72,4218.731404146406,0.0,852.6002716860306,4590.0,124.70303028568689,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,110072,1,1,4,0,1,,100.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1463.01912408591,500.0,44730.905458579036,5,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10261361698234243,29820.60363905269,8,4,8,8_1,8_0,8_1_0 +10062,2,53.0,0.0,5,112,882.0,0.0,0.0,56,42,0.0,0.0,1503.9868792541579,936.0,74.82181817141213,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,110073,1,1,2,0,1,,630.0,,43,2.0,3.0,7.0,3.0,2.0,3,2,1998.51729608011,882.0,41915.21278204055,1,1,1,2,150.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02233079442700691,20957.606391020276,5,3,5,5_1,5_0,5_0_0 +10063,2,44.0,0.0,1,111,400.0,2000.0,0.0,0,56,0.0,0.0,682.0802173488245,2400.0,0.0,3797.008095879578,31,0,0,0,0,0,0,0,0,0,,1,,1,110074,2,1,2,0,2,,350.0,,22,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,570.591959967391,400.0,63285.25141916663,0,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03792352793392133,24340.48131506409,7,4,7,7_1,7_4,7_1_0 +10064,2,60.0,0.0,1,111,750.0,1200.0,0.0,77,52,0.0,0.0,1278.9004075290459,1950.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,3,35.0,2,,1,110075,2,1,0,0,1,,600.0,,42,3.0,0.0,4.0,4.0,2.5,4,4,347.17303497559,750.0,85020.63690663179,5,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02293560799999013,34008.254762652716,9,5,9,9_0,9_4,9_1_0 +10065,2,40.0,0.0,8,112,500.0,0.0,0.0,0,46,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,2000.0,6,110076,1,2,0,0,2,,0.0,313.0,12,1.0,0.0,1.0,1.0,1.0,1,1,658.23968305526,500.0,17330.99598139026,0,4,2,3,33.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02885004419462631,17330.99598139026,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +10066,1,47.0,240.0,5,111,500.0,500.0,0.0,0,52,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,110077,2,1,0,1,1,,0.0,400.0,32,1.0,0.0,4.0,2.0,1.5,2,2,557.583683297727,500.0,17204.631327856037,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05812388425789159,11469.754218570692,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +10067,2,66.0,0.0,5,112,1210.0,0.0,0.0,77,74,0.0,450.2712741834761,2063.292657480194,1630.0,110.84713803172167,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,110078,2,1,2,0,1,,219.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1374.94575982016,1210.0,45271.881084683264,5,5,0,1,78.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03600468902431965,30181.25405645551,8,4,8,8_1,8_0,8_0_0 +10068,2,86.0,0.0,2,211,368.0,0.0,0.0,0,75,2763.269069715896,0.0,627.5137999609185,3088.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,110079,2,1,1,0,1,,157.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2577.12616054938,368.0,38217.085739189446,0,5,0,1,98.0,2,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08080155616976917,38217.085739189446,9,5,9,9_1,9_1,9_0_1 +10069,2,51.0,0.0,5,112,1370.0,0.0,0.0,55,63,0.0,662.163638505112,2336.124744419724,2110.0,332.541414095165,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,3,110080,1,1,2,0,2,,400.0,,43,3.0,2.0,5.0,5.0,2.8,4,4,605.361154227617,1370.0,43810.883961480846,1,1,0,1,118.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04816154820923363,15646.744271957446,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10070,1,42.0,150.0,8,400,900.0,0.0,0.0,0,52,0.0,794.5963662061343,1534.680489034855,1562.0,85.9065319745843,0.0,50,2,2,2,2,1,2,2,2,0,,1,2000.0,6,110081,1,1,2,0,1,,240.0,475.0,32,1.0,0.0,5.0,3.0,1.8,2,1,1237.97518405987,900.0,24055.22965477659,0,4,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.06493390511820939,13364.016474875883,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +10071,2,31.0,0.0,9,112,0.0,0.0,0.0,43,31,0.0,0.0,0.0,2007.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,110082,2,1,2,0,1,,211.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,962.673348274542,0.0,73393.40562026078,1,1,1,2,120.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027345781041750068,48928.93708017385,10,5,10,10_1,10_1,10_0_0 +10072,2,33.0,0.0,2,111,540.0,0.0,0.0,85,62,0.0,0.0,920.8082934209131,540.0,0.0,0.0,43,1,2,2,2,2,2,2,1,0,,2,,2,110083,2,2,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,386.90742740859,540.0,44163.97507055239,6,1,0,1,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.012227160239479002,21030.46431931066,5,3,5,5_0,5_3,5_0_1 +10073,2,57.0,0.0,9,120,0.0,,,75,45,0.0,0.0,,589.0,63.73710436823996,,42,0,0,0,0,0,0,0,0,2,70.0,1,2008.0,6,110084,2,1,0,0,2,,500.0,,42,1.0,3.0,2.0,2.0,1.5,2,2,97.7336656858712,0.0,47237.162967690114,7,1,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012468996082657882,31491.441978460076,8,4,8,8_1,8_1,8_0_0 +10074,2,39.0,0.0,1,111,350.0,1700.0,0.0,85,34,0.0,0.0,596.8201901802214,2050.0,0.0,3227.4568814976415,10,1,2,2,2,1,2,2,2,1,15.0,1,,1,110085,1,1,1,0,1,,480.0,,42,1.0,0.0,8.0,5.0,2.4,2,2,1189.81218320897,350.0,72000.37535202912,7,1,1,2,100.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.028472073790962907,30000.1563966788,8,4,8,8_1,8_3,8_1_0 +10076,2,49.0,0.0,8,112,670.0,0.0,0.0,56,64,1582.0242765549024,582.7040018844986,1142.484364059281,2610.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110087,2,1,2,0,1,,650.0,,43,2.0,3.0,6.0,3.0,1.8,2,2,462.217924600344,670.0,25942.15180320958,1,1,0,1,137.0,7,1,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10060846223546842,14412.306557338656,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10077,1,27.0,255.0,2,112,500.0,1500.0,0.0,0,52,0.0,0.0,852.6002716860306,2180.0,249.40606057137379,2847.7560719096837,60,0,0,0,0,0,0,0,0,0,,1,,2,110088,2,2,5,0,1,,0.0,618.0,22,1.0,3.0,4.0,2.0,1.5,2,2,336.011064231363,500.0,9690.143750593505,0,4,2,3,80.0,6,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.2249708627765691,6460.095833729003,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +10078,2,49.0,0.0,7,111,1100.0,1300.0,0.0,63,42,0.0,0.0,1875.7205977092674,2400.0,0.0,2468.055262321726,30,0,0,0,0,0,0,0,0,2,10.0,1,,5,110089,2,1,2,0,1,,601.0,,43,3.0,0.0,9.0,6.0,3.0999999999999996,4,4,1285.93051623008,1100.0,67680.22039717884,1,1,1,2,155.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03546087743089029,21832.32916038027,6,3,6,6_1,6_2,6_0_0 +10079,2,50.0,0.0,6,111,600.0,,,56,21,0.0,0.0,,696.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,4,110090,2,1,0,0,2,,300.0,150.0,43,2.0,5.0,3.0,4.0,2.1,2,2,72.13486148915781,600.0,15577.791511784462,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044678990566376635,7417.995957992601,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10080,2,36.0,0.0,1,111,660.0,0.0,0.0,0,21,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,110091,1,2,0,0,2,,0.0,700.0,12,1.0,1.0,3.0,1.0,1.0,1,1,793.969634420849,660.0,30930.062878954446,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021338462924660906,30930.062878954446,8,4,8,8_0,8_4,8_1_0 +10081,2,64.0,0.0,2,120,1000.0,0.0,0.0,86,75,1476.555991451242,0.0,1705.2005433720612,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110092,2,2,2,0,1,,350.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1804.23290107632,1000.0,45178.84705483787,5,5,0,1,120.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05312220555533193,30119.231369891913,8,4,8,8_1,8_1,8_0_1 +10082,2,75.0,0.0,1,400,410.0,0.0,0.0,77,78,1792.9608467622227,0.0,699.1322227825451,2425.0,436.4606059999041,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110093,2,2,2,0,2,,308.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1311.96096628845,410.0,27186.976429179143,5,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08919712003712574,18124.650952786094,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10083,2,54.0,0.0,9,111,1200.0,0.0,0.0,63,67,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,71,2,2,2,2,1,2,2,2,2,15.0,2,2010.0,6,110094,2,3,0,0,1,,400.0,378.0,43,2.0,3.0,3.0,2.0,1.5,2,2,1475.77197503743,1200.0,28432.56905775472,4,1,2,3,74.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04431537640656311,18955.046038503147,5,3,5,5_0,5_2,5_0_0 +10084,2,66.0,0.0,2,112,550.0,0.0,0.0,77,75,1265.6194212439218,662.163638505112,937.8602988546337,2295.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110095,2,2,1,0,1,,300.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,105.549943058712,550.0,30952.799465603544,5,5,0,1,102.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07414515131499916,20635.199643735697,5,3,5,5_1,5_0,5_0_1 +10085,2,57.0,0.0,6,111,190.0,0.0,0.0,77,75,0.0,0.0,323.9881032406916,190.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110096,2,1,2,0,1,,225.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,220.14824661679,190.0,40929.00248457258,5,5,0,1,107.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0046421849658226325,27286.00165638172,7,4,7,7_1,7_2,7_0_0 +10086,2,76.0,0.0,5,112,1200.0,0.0,0.0,77,78,0.0,206.59505521359492,2046.2406520464733,1476.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,110097,2,2,3,0,1,,208.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2062.51202154033,1200.0,18720.553999779062,5,5,0,1,90.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07884382054171152,12480.369333186041,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10087,2,60.0,0.0,2,111,1300.0,0.0,0.0,72,62,0.0,0.0,2216.7607063836795,1400.0,138.5589225396521,0.0,70,2,2,2,1,2,2,2,2,2,30.0,1,,2,110098,1,3,3,0,2,,0.0,644.0,42,1.0,3.0,3.0,2.0,1.5,2,2,1032.53070483502,1300.0,48511.08669244987,5,1,2,3,45.0,5,4,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.02885938236914186,32340.724461633246,8,4,8,8_1,8_2,8_0_1 +10088,1,67.0,299.0,2,111,300.0,720.0,0.0,86,78,0.0,0.0,511.56016301161833,1020.0,0.0,1366.922914516648,60,0,0,0,0,0,0,0,0,0,,2,,2,110099,2,3,0,1,1,780.0,600.0,93.0,41,0.0,3.0,5.0,2.0,1.5,2,2,300.853875859909,300.0,14254.0,5,5,2,3,84.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07155886067068892,9502.666666666666,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10089,1,41.0,205.0,6,111,750.0,0.0,0.0,85,64,0.0,0.0,1278.9004075290459,990.0,332.541414095165,0.0,60,2,2,2,2,1,2,2,2,0,,2,,4,110100,1,3,0,0,1,,0.0,580.0,42,1.0,0.0,2.0,4.0,2.1,2,2,941.653620408964,750.0,35755.40293679796,6,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.02768812315581916,17026.38235085617,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +10090,2,74.0,0.0,1,211,405.0,1080.0,0.0,72,72,0.0,0.0,690.6062200656847,1485.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,0,,1,,1,110101,2,1,2,0,2,,530.0,,41,1.0,2.0,7.0,3.0,2.0,3,3,1283.81050544257,405.0,58113.010566368,5,5,0,1,120.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025553658045371005,29056.505283184,8,4,8,8_1,8_1,8_1_0 +10091,1,47.0,59.0,1,211,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1036.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,110102,2,3,0,0,1,,0.0,400.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1650.81302226965,0.0,14779.554965871823,0,4,2,3,35.0,1,3,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.0700968332532527,14779.554965871823,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +10092,2,52.0,0.0,7,111,753.0,859.0,0.0,34,43,0.0,0.0,1284.016009159162,1612.0,0.0,1630.8149771802787,50,0,0,0,0,0,0,0,0,2,7.0,2,,5,110103,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,1620.2604473713,753.0,96869.37623498427,1,1,0,1,97.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016640966037498112,38747.750493993706,9,5,9,9_0,9_3,9_0_0 +10093,2,43.0,0.0,2,111,0.0,0.0,420.0,0,37,0.0,0.0,264.7336819741924,420.0,0.0,502.627501977166,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,110104,2,1,0,1,1,707.0,0.0,324.0,32,1.0,1.0,4.0,2.0,1.5,2,2,635.926575938992,0.0,53265.27796297411,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007885061639816306,35510.18530864941,9,5,9,9_0,9_4,9_0_1 +10094,2,70.0,0.0,1,221,0.0,,,0,71,0.0,0.0,,259.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,1,110105,2,2,0,0,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,91.86543179355385,0.0,11003.434460261418,0,5,0,1,41.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023538105392036542,11003.434460261418,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +10095,1,55.0,31.0,2,111,137.0,0.0,0.0,0,78,0.0,0.0,233.61247444197238,170.0,45.72444443808519,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,110106,2,1,0,1,1,430.0,95.0,309.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1745.82331611493,137.0,13749.75968893875,0,7,2,3,60.0,6,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012363852448763863,13749.75968893875,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +10096,2,68.0,0.0,7,112,2500.0,,,86,77,0.0,0.0,,2620.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,,5,110107,2,1,0,0,2,,500.0,,41,2.0,0.0,4.0,4.0,2.5,4,4,15.69584203856551,2500.0,27166.485369790294,6,5,1,2,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09644236139995847,10866.594147916117,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10097,2,36.0,0.0,1,111,480.0,0.0,0.0,0,38,0.0,0.0,818.4962608185893,480.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,,1,110108,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,728.783951684121,480.0,43029.512707578906,0,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011155134459969292,43029.512707578906,9,5,9,9_0,9_4,9_1_0 +10098,2,83.0,0.0,2,111,260.0,1937.0,0.0,77,78,0.0,0.0,443.3521412767359,2197.0,0.0,3677.402340859371,50,0,0,0,0,0,0,0,0,0,,1,,2,110109,2,1,2,0,1,,270.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,972.533896312137,260.0,32339.853786001047,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06793475364910324,21559.9025240007,6,3,6,6_1,6_4,6_0_1 +10099,2,32.0,0.0,7,111,1500.0,0.0,0.0,52,48,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,110110,2,1,2,0,1,,200.0,790.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2258.3054917043,1500.0,42968.602271087526,1,1,2,3,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03490921092886728,23871.445706159735,6,3,6,6_1,6_3,6_0_0 +10100,1,60.0,53.0,5,111,600.0,55.0,0.0,0,67,0.0,0.0,1023.1203260232367,721.0,91.44888887617039,104.4177226366884,71,2,2,2,2,1,1,2,2,0,,2,,3,110111,1,1,0,1,1,660.0,230.0,276.0,32,2.0,2.0,2.0,2.0,1.5,2,2,471.554907984039,600.0,11191.21338236794,0,1,2,3,40.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.06442554309043513,7460.808921578627,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10101,0,50.0,0.0,1,112,150.0,0.0,0.0,55,47,0.0,0.0,255.78008150580916,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,110112,2,2,3,0,2,,283.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,907.519203019973,150.0,58348.878833341616,1,1,5,0,35.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.002570743482979955,38899.25255556108,9,5,9,9_1,9_0,9_1_0 +10102,2,25.0,0.0,1,111,840.0,0.0,0.0,56,68,0.0,132.4327277010224,1432.3684564325313,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,110113,1,1,0,0,1,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,374.959066974798,840.0,26704.636710038616,4,1,2,3,33.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0374466805468313,17803.091140025743,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +10103,2,33.0,0.0,6,111,0.0,0.0,0.0,55,48,0.0,0.0,0.0,2019.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,4,110114,1,2,2,0,1,,457.0,560.0,43,2.0,0.0,4.0,3.0,1.8,2,2,239.179164222222,0.0,31405.47717347546,1,1,2,3,85.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06428814912913387,17447.48731859748,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10104,1,28.0,202.0,2,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,3005.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,110115,2,2,5,0,1,,0.0,628.0,32,1.0,0.0,2.0,2.0,1.3,1,1,684.118222117111,0.0,16992.349757823846,0,1,2,3,52.0,10,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.17684428833136498,13071.038275249111,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +10105,0,68.0,0.0,1,400,430.0,0.0,0.0,0,77,2847.643697798824,0.0,733.2362336499863,3130.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,110116,2,1,2,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2707.90007057919,430.0,11506.522984917372,0,5,5,0,120.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2720196191414879,11506.522984917372,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +10106,2,66.0,0.0,5,111,400.0,,,0,77,0.0,0.0,,420.0,27.711784507930417,,70,0,0,0,0,0,0,0,0,0,,2,,3,110117,1,1,0,0,2,,202.0,431.0,11,0.0,2.0,3.0,1.0,1.0,1,1,120.18569888146273,400.0,28026.744371716683,0,5,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014985686329798794,28026.744371716683,7,4,7,7_0,7_2,7_0_0 +10107,2,83.0,0.0,2,111,253.0,0.0,0.0,77,78,0.0,0.0,431.41573747313146,1087.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110118,2,2,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1800.08696678645,253.0,8921.504405808299,5,5,0,1,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.12184043750427499,5947.669603872199,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +10108,2,56.0,0.0,5,111,1243.0,0.0,0.0,46,46,0.0,0.0,2119.564275411472,1243.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,60.0,2,,3,110119,1,1,0,0,1,447.0,0.0,725.0,43,3.0,0.0,5.0,5.0,3.0,5,5,930.25902653729,1243.0,71832.73433514658,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017304088609527153,23944.244778382195,6,3,6,6_0,6_4,6_0_0 +10109,2,33.0,0.0,6,211,600.0,,,0,42,0.0,0.0,,600.0,0.0,,42,0,0,0,0,0,0,0,0,2,5.0,8,,4,110120,1,2,0,0,2,,300.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,38.94582054059674,600.0,39121.48825579738,0,1,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015336839848138611,24450.930159873362,7,4,7,7_0,7_2,7_0_0 +10110,1,46.0,148.0,2,111,1140.0,1200.0,0.0,22,22,0.0,0.0,1943.9286194441497,2340.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,110121,2,1,2,0,1,,420.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,340.349400581688,1140.0,26447.62516747662,1,1,1,2,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.08847675302346476,12594.107222607914,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +10111,1,36.0,250.0,6,111,770.0,,,0,22,0.0,0.0,,909.0,192.59690233011642,,43,0,0,0,0,0,0,0,0,2,15.0,2,,4,110122,2,3,0,0,2,,791.0,430.0,32,1.0,0.0,5.0,5.0,2.4,2,2,80.76445626957289,770.0,16879.50261780105,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053852297699896245,7033.1260907504375,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10112,2,35.0,0.0,1,111,720.0,960.0,0.0,46,38,0.0,0.0,1227.744391227884,1680.0,0.0,1822.5638860221975,12,0,0,0,0,0,0,0,0,0,,1,,1,110123,1,1,1,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,736.484568958145,720.0,98003.16573386012,1,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017142303388058406,46668.17415898101,10,5,10,10_1,10_4,10_1_0 +10113,2,42.0,0.0,8,120,2220.0,0.0,0.0,54,37,0.0,0.0,3785.545206285976,2250.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,110124,2,1,2,0,1,,452.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,507.222832846124,2220.0,68630.93331542274,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03278405073786721,32681.396816867968,8,4,8,8_1,8_0,8_0_0 +10114,2,47.0,0.0,2,111,400.0,600.0,0.0,0,55,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,41,2,2,2,2,1,2,2,2,2,10.0,2,,2,110125,2,1,0,0,1,,0.0,520.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1392.01876989578,400.0,9369.574703689774,0,1,2,3,79.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.10672843022492752,6246.383135793182,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +10115,2,65.0,0.0,1,120,360.0,0.0,0.0,78,77,2109.365702073203,0.0,613.872195613942,2430.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,110126,2,2,2,0,1,,392.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,405.341971596551,360.0,42090.70682508598,5,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05773245885601818,28060.47121672399,8,4,8,8_1,8_0,8_1_0 +10116,1,27.0,251.0,1,300,840.0,80.0,0.0,52,63,0.0,0.0,1432.3684564325313,1020.0,138.5589225396521,151.8803238351831,31,1,2,1,2,1,1,2,1,1,2.0,2,,1,110127,1,1,0,1,1,362.0,0.0,350.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1879.11701849903,840.0,31114.058753400055,1,1,2,3,83.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.0327826082763483,17285.588196333363,4,2,4_1,4_0_1,4_0_1,4_1_0_1 +10117,1,23.0,270.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,565.0,0.0,0.0,50,1,2,2,2,1,2,2,2,1,20.0,2,,1,110128,1,2,0,1,1,272.0,0.0,370.0,12,1.0,0.0,1.0,1.0,1.0,1,1,168.437047741122,0.0,16445.860177602983,0,1,3,4,30.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.03435515040857838,16445.860177602983,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +10118,2,57.0,0.0,5,111,250.0,607.0,0.0,0,34,0.0,0.0,426.3001358430153,857.0,0.0,1152.391957099452,20,0,0,0,0,0,0,0,0,2,40.0,1,,3,110129,1,2,3,0,1,,133.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,240.447931431341,250.0,34241.68394134902,0,1,1,2,120.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025027974718413823,34241.68394134902,9,5,9,9_1,9_3,9_0_0 +10119,2,91.0,0.0,2,111,220.0,0.0,0.0,0,74,3164.0485531098047,0.0,375.14411954185346,3220.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,110130,2,1,2,0,1,,78.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1681.63120219161,220.0,44803.351096566585,0,5,0,1,100.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07186962406137425,44803.351096566585,10,5,10,10_1,10_2,10_0_1 +10120,2,34.0,0.0,1,111,360.0,600.0,0.0,43,52,0.0,0.0,613.872195613942,960.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,3,25.0,2,,1,110131,2,2,0,0,1,,0.0,282.0,43,2.0,0.0,2.0,2.0,1.5,2,2,392.099775249257,360.0,29223.321774285258,1,1,2,3,38.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03285047495335529,19482.21451619017,5,3,5,5_0,5_3,5_1_0 +10121,1,26.0,270.0,6,111,250.0,562.0,0.0,0,55,0.0,0.0,426.3001358430153,812.0,0.0,1066.9592749421615,30,0,0,0,0,0,0,0,0,0,,2,,4,110132,1,2,0,1,1,561.0,0.0,330.0,22,1.0,0.0,3.0,2.0,1.5,2,2,290.010854147501,250.0,10750.693807757954,0,4,2,3,71.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07553000899477219,7167.129205171969,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10122,2,40.0,0.0,9,300,389.0,0.0,0.0,0,62,0.0,0.0,663.3230113717318,1338.0,1314.9241749012983,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,110133,2,2,1,0,1,,298.0,482.0,32,1.0,1.0,3.0,2.0,1.3,1,1,1133.91726478994,389.0,24504.684493341418,0,1,2,3,79.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05460180482485178,18849.75730257032,5,3,5,5_1,5_0,5_0_0 +10123,1,53.0,300.0,6,111,200.0,900.0,0.0,84,56,0.0,0.0,341.04010867441224,1100.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,110134,1,1,3,0,1,,0.0,500.0,42,1.0,0.0,4.0,6.0,3.0999999999999996,4,2,1239.06251412166,200.0,18651.923702264336,3,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0589751501002795,6016.749581375593,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +10124,2,51.0,0.0,6,111,330.0,,,0,56,0.0,0.0,,514.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,4,110135,2,2,0,0,2,,312.0,,32,1.0,3.0,3.0,3.0,1.8,2,2,76.21105549415755,330.0,25279.942052053295,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020332325087677634,14044.412251140719,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +10125,2,91.0,0.0,1,111,337.0,1500.0,0.0,77,78,0.0,0.0,574.6525831163846,1837.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,,1,110136,2,2,2,0,2,,242.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,387.57822891854,337.0,20389.481791650942,5,5,0,1,60.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09009547269377942,13592.987861100628,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +10126,2,33.0,0.0,5,111,360.0,0.0,0.0,0,42,0.0,0.0,613.872195613942,360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,110137,2,2,0,1,1,,0.0,686.0,22,2.0,2.0,5.0,3.0,2.0,3,3,1024.86845569569,360.0,37427.881936196114,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009618497798344495,18713.940968098057,5,3,5,5_0,5_4,5_0_0 +10127,1,31.0,217.0,9,111,1450.0,0.0,0.0,47,63,0.0,0.0,2472.540787889489,1478.0,38.79649831110259,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2007.0,6,110138,2,1,1,0,1,,400.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,1564.77837923481,1450.0,19093.323500957005,7,1,1,2,96.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0774092577400639,7955.551458732086,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +10128,2,31.0,0.0,6,112,232.0,800.0,0.0,0,53,0.0,0.0,395.6065260623182,1032.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,1,10.0,2,,4,110139,2,1,0,1,1,1084.0,0.0,347.0,12,1.0,0.0,5.0,1.0,1.0,1,1,1795.26156290094,232.0,20324.25752934098,0,1,2,3,79.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05077676262024136,20324.25752934098,5,3,5,5_0,5_1,5_0_0 +10129,2,65.0,0.0,1,120,540.0,1380.0,0.0,77,38,0.0,0.0,920.8082934209131,1920.0,0.0,2619.935586156909,20,0,0,0,0,0,0,0,0,2,45.0,1,,1,110140,2,1,2,0,1,,400.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,282.460070419241,540.0,78064.73878494496,5,1,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024594971172442817,52043.159189963306,10,5,10,10_1,10_0,10_1_0 +10130,2,32.0,0.0,1,111,578.0,2331.0,0.0,43,38,0.0,0.0,985.6059140690513,2969.0,83.13535352379125,4425.412935747649,10,0,0,0,0,0,0,0,0,2,45.0,1,,1,110141,1,1,2,0,2,,428.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1670.27898250353,578.0,55233.73903898004,1,1,1,2,146.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0537533770419687,30685.410577211132,8,4,8,8_1,8_3,8_1_0 +10131,1,43.0,235.0,1,120,600.0,0.0,0.0,0,52,0.0,278.10872817214704,1023.1203260232367,888.0,108.07595958092864,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,110142,1,3,1,0,2,,290.0,610.0,32,2.0,1.0,5.0,3.0,1.8,2,1,1075.02115321788,600.0,25336.18315335078,0,1,2,3,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.03504868885045771,14075.6573074171,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +10134,2,47.0,0.0,5,221,700.0,1300.0,0.0,67,65,0.0,0.0,1193.6403803604428,2000.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,110145,1,3,3,0,2,,600.0,547.0,43,2.0,0.0,4.0,3.0,2.0,3,3,2485.17899363588,700.0,39555.178742983095,1,1,2,3,100.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05056227941719997,19777.589371491547,5,3,5,5_1,5_1,5_0_0 +10135,2,46.0,0.0,7,112,0.0,0.0,2240.0,35,23,0.0,0.0,1411.912970529026,2240.0,0.0,2680.680010544885,20,0,0,0,0,0,0,0,0,2,35.0,1,,5,110146,2,1,1,0,1,,854.0,,43,2.0,0.0,8.0,4.0,2.3,3,3,1610.6728003207,0.0,108524.15567402092,1,1,1,2,180.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020640566020420307,47184.41551044388,10,5,10,10_1,10_2,10_0_0 +10136,2,53.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,769.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,2,,1,110147,2,1,0,0,2,,0.0,1200.0,32,1.0,2.0,3.0,2.0,1.5,2,1,850.249271024876,0.0,46026.05617648542,0,1,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016707927289083695,30684.03745099028,8,4,8,8_0,8_4,8_1_0 +10137,1,28.0,300.0,6,111,0.0,0.0,0.0,42,52,0.0,0.0,0.0,771.0,0.0,0.0,41,2,2,2,1,1,2,2,2,2,30.0,2,,4,110148,2,2,0,1,1,,0.0,674.0,43,2.0,0.0,4.0,5.0,2.4,2,2,506.503365983862,0.0,39197.52428992231,1,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.019669609598232312,16332.30178746763,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +10138,2,52.0,0.0,2,111,470.0,0.0,0.0,21,56,0.0,0.0,801.4442553848687,470.0,0.0,0.0,41,2,2,1,2,1,2,2,2,0,,2,,2,110149,1,1,0,1,2,,143.0,,43,2.0,1.0,5.0,4.0,2.5,4,4,764.617808062439,470.0,38616.33434482459,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012171015399937618,15446.533737929834,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +10139,2,48.0,0.0,7,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,810.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,2,,5,110150,1,1,0,0,1,,0.0,1811.0,42,1.0,0.0,4.0,5.0,2.8,4,2,1160.51215619374,0.0,157322.8533432061,6,1,2,3,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005148648036741061,56186.733336859324,10,5,10,10_0,10_4,10_0_0 +10140,2,75.0,0.0,2,111,264.0,100.0,0.0,86,78,0.0,0.0,450.1729434502241,364.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,110151,2,1,0,1,1,763.0,0.0,362.0,41,0.0,3.0,4.0,2.0,1.5,2,2,367.96366044813,264.0,24679.030867770398,5,5,2,3,87.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014749363617651863,16452.687245180266,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10141,2,61.0,0.0,1,120,808.0,946.0,0.0,78,37,0.0,0.0,1377.8020390446254,1754.0,0.0,1795.9848293510404,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,110152,2,2,2,0,1,,163.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,201.306371925819,808.0,71065.29065015403,5,1,0,1,135.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024681528548651598,47376.86043343602,10,5,10,10_1,10_0,10_1_0 +10142,2,36.0,0.0,2,111,568.0,628.0,0.0,52,64,0.0,0.0,968.5539086353308,1196.0,0.0,1192.2605421061876,60,2,2,1,2,2,2,2,1,2,40.0,1,,2,110153,2,2,5,0,1,,399.0,435.0,43,2.0,0.0,5.0,4.0,2.1,2,2,636.793715581616,568.0,40304.62903410403,1,1,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.029674010868280084,19192.68049243049,5,3,5,5_1,5_2,5_0_1 +10143,2,53.0,0.0,2,300,400.0,1500.0,0.0,85,43,0.0,0.0,682.0802173488245,1900.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,1,5.0,1,,2,110154,2,1,2,0,1,,250.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,1349.6822819216,400.0,33683.12729359842,5,1,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05640806399710696,22455.418195732283,6,3,6,6_1,6_0,6_0_1 +10144,2,48.0,0.0,2,111,230.0,50.0,0.0,0,46,0.0,0.0,392.1961249755741,280.0,0.0,94.92520239698945,31,2,1,2,2,2,2,2,1,2,5.0,2,,2,110155,1,3,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1807.752132245,230.0,21553.31414486404,0,1,1,2,65.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012991041568738117,21553.31414486404,6,3,6,6_0,6_2,6_0_1 +10145,2,46.0,0.0,1,112,488.0,1688.0,0.0,43,53,0.0,0.0,832.1378651655658,2176.0,0.0,3204.6748329223637,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,110156,2,1,2,0,1,,496.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,882.707273762096,488.0,66872.7653334467,1,1,1,2,256.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03253940507992817,26749.106133378682,7,4,7,7_1,7_0,7_1_0 +10146,1,32.0,200.0,1,400,1210.0,0.0,0.0,0,52,0.0,860.8127300566456,2063.292657480194,2060.0,277.1178450793042,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,110157,2,1,3,0,1,,340.0,,32,1.0,0.0,5.0,4.0,1.9,1,1,1746.87172672606,1210.0,28009.851057861535,0,1,1,2,135.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07354555351774422,14742.026872558703,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +10147,1,67.0,111.0,2,120,196.0,0.0,0.0,0,77,908.0819347425139,0.0,334.219306500924,1107.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,110158,1,2,0,1,1,578.0,150.0,263.0,11,0.0,3.0,3.0,1.0,1.0,1,1,420.835404362673,196.0,11098.045908222219,0,5,2,3,57.0,0,1,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0997472896719463,11098.045908222219,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +10148,2,58.0,0.0,2,111,210.0,0.0,0.0,0,55,0.0,0.0,358.0921141081328,240.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,12.0,2,,2,110159,1,2,0,1,1,783.0,0.0,343.0,12,1.0,2.0,4.0,1.0,1.0,1,1,373.935937440129,210.0,21180.256974470274,0,1,2,3,75.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011331307277776901,21180.256974470274,5,3,5,5_0,5_2,5_0_1 +10149,2,74.0,0.0,5,400,1100.0,0.0,0.0,0,72,0.0,0.0,1875.7205977092674,1170.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,110160,2,1,1,0,1,,120.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,843.291735469896,1100.0,15614.133313720009,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07493211288083027,15614.133313720009,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10150,2,71.0,0.0,5,111,290.0,,,77,78,0.0,0.0,,422.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,110161,2,2,0,0,2,,180.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,114.03886440696728,290.0,12679.994262386179,6,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03328077215711501,8453.329508257453,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10151,2,42.0,0.0,7,111,900.0,0.0,0.0,46,38,0.0,264.8654554020448,1534.680489034855,1100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,110162,2,1,2,0,1,,590.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,977.552766570064,900.0,86500.13605247372,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012716743004111637,36041.723355197384,9,5,9,9_1,9_4,9_0_0 +10152,2,60.0,0.0,5,111,390.0,770.0,0.0,78,56,0.0,0.0,665.0282119151038,1160.0,0.0,1461.8481169136376,50,0,0,0,0,0,0,0,0,0,,1,,3,110163,1,1,2,0,2,,330.0,365.0,42,1.0,2.0,4.0,3.0,2.0,3,3,282.293086456812,390.0,53595.50297093865,5,1,2,3,85.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021643606938981288,26797.751485469325,7,4,7,7_1,7_3,7_0_0 +10153,1,26.0,270.0,2,111,300.0,780.0,0.0,0,67,0.0,0.0,511.56016301161833,1080.0,0.0,1480.8331573930354,60,0,0,0,0,0,0,0,0,0,,2,,2,110164,2,1,0,0,1,,0.0,309.0,22,2.0,2.0,4.0,2.0,1.5,2,2,278.650305053996,300.0,13991.382136523203,0,4,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0771903725780429,9327.588091015468,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10154,2,74.0,0.0,2,112,350.0,0.0,0.0,78,74,4682.791858602511,0.0,596.8201901802214,4940.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,110165,2,1,2,0,2,,212.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,783.194808530528,350.0,27306.510702125885,5,5,0,1,110.0,8,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.18090923640475998,18204.340468083923,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +10155,2,26.0,0.0,1,300,1250.0,0.0,0.0,46,63,0.0,0.0,2131.5006792150766,1287.0,51.266801339671275,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,110166,2,1,1,0,1,,170.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,999.593750445133,1250.0,34034.96048930524,1,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037814058882319326,22689.973659536827,6,3,6,6_1,6_0,6_1_0 +10156,2,68.0,0.0,1,400,0.0,0.0,0.0,77,90,5273.414255183007,0.0,0.0,7230.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,110167,2,1,1,0,1,,729.0,,41,0.0,2.0,9.0,5.0,2.8,4,3,1377.33903488427,0.0,60743.67929381391,7,5,0,1,120.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11902472955299397,21694.171176362113,6,3,6,6_1,6_0,6_1_0 +10157,2,36.0,0.0,1,111,360.0,890.0,0.0,34,38,0.0,0.0,613.872195613942,1250.0,0.0,1689.6686026664122,12,0,0,0,0,0,0,0,0,0,,1,,1,110168,2,2,1,0,1,,475.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,306.351247919306,360.0,69189.59247578176,1,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01806630094602066,32947.4249884675,8,4,8,8_1,8_3,8_1_0 +10158,2,76.0,0.0,5,111,500.0,0.0,0.0,72,72,1001.9487084847715,529.7309108040896,852.6002716860306,1910.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110169,2,1,2,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1068.37182278767,500.0,17757.447658390458,5,5,0,1,90.0,3,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10756050287990111,11838.298438926971,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10159,2,37.0,0.0,2,111,441.0,1217.0,0.0,38,37,0.0,0.0,751.9934396270789,1658.0,0.0,2310.4794263427234,12,0,0,0,0,0,0,0,0,1,15.0,1,,2,110170,2,1,3,0,1,,428.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,554.414296134312,441.0,55641.022552965405,1,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0297981583358165,30911.679196091893,8,4,8,8_1,8_4,8_0_1 +10160,1,47.0,200.0,2,111,600.0,543.0,0.0,52,43,0.0,264.8654554020448,1023.1203260232367,1343.0,0.0,1030.8876980313055,33,0,0,0,0,0,0,0,0,1,5.0,1,,2,110171,2,1,1,0,1,,435.0,,43,2.0,0.0,8.0,5.0,2.4,3,2,701.939316800129,600.0,30625.45300461551,1,1,1,2,118.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.043852412560153764,12760.605418589796,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +10161,2,53.0,0.0,9,112,1372.0,1994.0,0.0,0,38,0.0,0.0,2339.535145506468,3366.0,0.0,3785.6170715919393,60,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,110172,2,1,1,0,1,,654.0,,32,1.0,0.0,7.0,3.0,2.0,3,1,1132.05874030884,1372.0,70801.666565203,0,1,1,2,240.0,7,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04754125380509465,35400.8332826015,9,5,9,9_1,9_2,9_0_0 +10162,2,44.0,0.0,9,120,0.0,,,0,42,0.0,0.0,,718.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,110173,2,1,0,0,2,,915.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,174.20238517916823,0.0,48572.63565415551,0,1,1,2,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014781985583658015,32381.757102770338,8,4,8,8_1,8_2,8_0_0 +10163,2,74.0,0.0,2,111,250.0,0.0,0.0,77,74,0.0,0.0,426.3001358430153,250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,110174,1,1,0,1,2,718.0,198.0,680.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1746.38404384112,250.0,25768.248158400685,5,5,2,3,90.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009701862480647435,17178.832105600457,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10164,2,44.0,0.0,8,111,930.0,780.0,0.0,85,38,0.0,0.0,1585.836505336017,1710.0,0.0,1480.8331573930354,31,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,110175,2,1,2,0,1,,780.0,,42,1.0,2.0,5.0,6.0,3.0999999999999996,4,2,534.262681240805,930.0,56701.411519846726,6,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03015797939000977,18290.777909627977,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +10165,2,44.0,0.0,2,111,1200.0,0.0,0.0,0,45,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,70.0,2,,2,110176,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,686.217951436816,1200.0,35436.46899349014,0,1,0,1,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03386341907317137,35436.46899349014,9,5,9,9_0,9_4,9_0_1 +10166,1,26.0,404.0,7,111,600.0,,,0,63,0.0,0.0,,852.0,349.1684847999233,,43,0,0,0,0,0,0,0,0,0,,2,,5,110177,2,2,0,0,2,,700.0,451.0,22,2.0,2.0,4.0,5.0,2.8,4,3,125.18134164832598,600.0,35975.62358738064,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023682702759288944,12848.436995493088,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +10167,2,70.0,0.0,5,111,680.0,,,56,78,0.0,0.0,,930.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,3,110178,1,2,0,0,2,,230.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,78.77945560155895,680.0,23782.640452726744,4,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03910415253716595,15855.093635151163,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +10168,1,71.0,254.0,2,111,200.0,800.0,0.0,0,78,0.0,0.0,341.04010867441224,1000.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,2,110179,1,2,0,0,1,,130.0,264.0,11,0.0,4.0,2.0,1.0,1.0,1,1,272.340755224762,200.0,9916.306666666665,0,5,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10084399702577439,9916.306666666665,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10169,2,30.0,0.0,5,111,0.0,0.0,720.0,67,64,0.0,0.0,453.8291690986155,720.0,0.0,861.6471462465702,50,2,2,2,2,1,1,2,1,2,35.0,2,,3,110180,1,2,0,0,1,,360.0,263.0,43,2.0,0.0,2.0,2.0,1.5,2,2,700.489599105082,0.0,37405.02460502306,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0192487508724513,24936.683070015377,7,4,7,7_0,7_3,7_0_0 +10170,2,53.0,0.0,6,211,420.0,,,56,64,0.0,0.0,,618.0,274.3466666285112,,71,0,0,0,0,0,0,0,0,2,90.0,1,,4,110181,2,1,0,0,2,,300.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,96.75418174153984,420.0,38340.683116179964,4,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01611864864606966,19170.341558089982,5,3,5,5_1,5_2,5_0_0 +10171,2,41.0,0.0,1,112,350.0,0.0,0.0,43,43,0.0,662.163638505112,596.8201901802214,2250.0,1939.8249155551293,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,,1,110182,2,1,1,0,1,,400.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,853.910221002696,350.0,55180.85742558658,1,1,0,1,150.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04077500975830627,36787.238283724386,9,5,9,9_1,9_0,9_1_0 +10172,2,55.0,0.0,8,112,360.0,0.0,0.0,0,37,0.0,0.0,613.872195613942,2660.0,3186.855218411998,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,110183,2,1,1,0,1,,227.0,,32,1.0,1.0,7.0,3.0,2.0,3,1,656.553288211767,360.0,74513.30697403483,0,1,1,2,135.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0356983216558475,37256.653487017415,9,5,9,9_1,9_0,9_0_0 +10173,1,41.0,274.0,1,111,312.0,0.0,0.0,0,53,0.0,0.0,532.0225695320831,337.0,34.63973063491302,0.0,71,2,2,2,2,2,2,2,1,0,,2,,1,110184,2,3,0,0,1,,157.0,455.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2161.73679527658,312.0,4839.267902296582,0,4,2,3,55.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.06963863270311386,4839.267902296582,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +10174,2,58.0,0.0,7,111,420.0,,,78,45,0.0,0.0,,489.0,95.60565655235995,,70,0,0,0,0,0,0,0,0,2,35.0,1,,5,110185,2,3,0,0,2,,450.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,78.3658136899747,420.0,31443.730286485254,7,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015551589952740938,20962.486857656837,5,3,5,5_1,5_3,5_0_0 +10175,2,74.0,0.0,5,111,540.0,,,0,77,0.0,0.0,,562.0,30.482962958723462,,50,0,0,0,0,0,0,0,0,0,,2,,3,110186,2,2,0,0,1,,240.0,560.0,11,0.0,4.0,4.0,1.0,1.0,1,1,178.55895950593666,540.0,51364.17110454127,0,5,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010941479009875656,51364.17110454127,10,5,10,10_0,10_2,10_0_0 +10176,2,57.0,0.0,2,111,620.0,180.0,0.0,77,68,0.0,0.0,1057.224336890678,800.0,0.0,341.730728629162,50,2,1,2,2,1,2,2,2,2,10.0,2,,2,110187,2,1,0,1,1,103.0,0.0,281.0,42,2.0,5.0,3.0,3.0,2.0,3,3,404.804763226701,620.0,24095.449773265842,6,1,2,3,116.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.033201289352465566,12047.724886632921,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +10177,2,44.0,0.0,7,111,600.0,,,90,53,0.0,79.45963662061344,,683.0,31.86855218411998,,41,0,0,0,0,0,0,0,0,0,,1,,5,110188,2,2,0,0,2,,499.0,,43,3.0,5.0,4.0,6.0,3.3,5,4,68.76531704385829,600.0,65692.0,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010397004201424831,19906.666666666668,5,3,5,5_1,5_2,5_0_0 +10178,1,32.0,358.0,2,111,360.0,456.0,0.0,56,67,0.0,0.0,613.872195613942,816.0,0.0,865.7178458605438,71,2,1,2,2,1,2,2,1,2,45.0,2,,2,110189,1,1,0,1,1,,480.0,337.0,43,2.0,0.0,4.0,3.0,1.8,2,2,408.66456017221,360.0,26570.363283386498,1,1,2,3,72.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030710908665302884,14761.31293521472,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +10179,2,76.0,0.0,2,112,1140.0,0.0,0.0,0,77,1898.4291318658827,0.0,1943.9286194441497,3054.0,157.95717169520339,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,110190,2,1,4,0,2,,212.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1624.67791239192,1140.0,33896.21406069579,0,5,0,1,90.0,9,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09009855774840803,33896.21406069579,9,5,9,9_1,9_1,9_0_1 +10180,2,41.0,0.0,6,111,420.0,540.0,0.0,43,63,0.0,0.0,716.1842282162656,960.0,0.0,1025.192185887486,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,110191,1,2,0,0,1,,0.0,418.0,43,2.0,1.0,3.0,4.0,2.5,4,4,499.114673139977,420.0,42725.44294401243,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022469047336922576,17090.17717760497,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +10181,1,29.0,436.0,2,111,0.0,0.0,750.0,54,21,0.0,0.0,472.7387178110578,750.0,0.0,897.5491106735105,71,0,0,0,0,0,0,0,0,0,,1,,2,110192,2,1,1,0,1,,400.0,604.0,43,2.0,0.0,6.0,4.0,2.1,2,2,380.035609978234,0.0,11762.21397856355,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0637635058643605,5601.0542755064525,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +10182,2,67.0,0.0,2,111,420.0,500.0,0.0,0,78,0.0,0.0,716.1842282162656,920.0,0.0,949.2520239698945,70,0,0,0,0,0,0,0,0,0,,2,,2,110193,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,725.599044070444,420.0,19333.503457700048,0,5,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04758578816368573,19333.503457700048,5,3,5,5_0,5_4,5_0_1 +10183,1,45.0,160.0,7,111,800.0,0.0,0.0,0,55,0.0,0.0,1364.160434697649,890.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,2,6.0,2,,5,110194,2,1,0,0,1,,400.0,615.0,32,1.0,0.0,4.0,3.0,2.0,3,2,429.764258218837,800.0,19648.387907476143,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04529633699166526,9824.193953738071,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10184,2,37.0,0.0,8,221,1110.0,0.0,0.0,84,63,0.0,58.270400188449855,1892.772603142988,1214.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,2003.0,6,110195,2,1,1,0,1,,530.0,395.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1345.49961218388,1110.0,25222.60808443146,3,1,2,3,70.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048131422251663815,14012.560046906367,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10185,2,53.0,0.0,2,111,630.0,380.0,0.0,48,63,0.0,0.0,1074.2763423243985,1010.0,0.0,721.4315382171199,50,0,0,0,0,0,0,0,0,0,,2,,2,110196,2,1,0,1,1,444.0,0.0,347.0,43,2.0,1.0,3.0,3.0,2.0,3,3,230.845744992689,630.0,56781.04269010588,1,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017787626858356248,28390.52134505294,8,4,8,8_0,8_4,8_0_1 +10186,2,64.0,0.0,6,112,800.0,1700.0,0.0,74,72,0.0,0.0,1364.160434697649,2500.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,0,,1,,4,110197,2,1,1,0,1,,240.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,824.494478810758,800.0,94062.10701551595,5,5,0,1,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02657818413091272,62708.0713436773,10,5,10,10_1,10_0,10_0_0 +10187,1,57.0,311.0,2,111,300.0,300.0,0.0,81,78,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,2,2,2,2,1,2,1,2,0,,2,,2,110198,1,2,0,1,1,456.0,0.0,300.0,42,1.0,2.0,4.0,2.0,1.5,2,2,263.124472348375,300.0,16347.616790523072,4,6,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03670259755219047,10898.411193682048,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10188,2,44.0,0.0,5,111,824.0,0.0,0.0,38,37,0.0,0.0,1405.0852477385783,2124.0,1801.2659930154773,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,110199,2,2,1,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,848.379772947393,824.0,120987.98437373724,1,1,0,1,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017555462313008453,57613.32589225583,10,5,10,10_1,10_2,10_0_0 +10189,2,64.0,0.0,2,111,169.0,183.0,0.0,0,77,0.0,0.0,288.17889182987835,352.0,0.0,347.4262407729814,50,0,0,0,0,0,0,0,0,0,,2,,2,110200,2,3,0,1,1,490.0,156.0,222.0,11,0.0,1.0,3.0,1.0,1.0,1,1,297.776521334165,169.0,17832.57497764766,0,5,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01973915715712489,17832.57497764766,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10190,2,27.0,0.0,1,300,0.0,0.0,0.0,0,43,0.0,0.0,0.0,659.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,5.0,1,,1,110201,2,1,2,0,1,,231.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1630.01160684168,0.0,22043.85536942883,0,1,0,1,70.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029894952083287737,22043.85536942883,6,3,6,6_1,6_0,6_1_0 +10191,1,51.0,172.0,6,111,720.0,600.0,0.0,0,52,0.0,0.0,1227.744391227884,1320.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,110202,2,1,3,0,1,,120.0,390.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1321.57007304363,720.0,18369.773336133592,0,1,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07185717405688083,14130.594873948916,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +10192,2,61.0,0.0,2,111,435.0,0.0,0.0,74,33,0.0,0.0,741.7622363668467,435.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,2,,2,110203,2,1,0,1,2,,0.0,,42,1.0,2.0,4.0,3.0,2.0,3,3,860.111487158347,435.0,169648.61608332256,5,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0025641234808915308,84824.30804166128,10,5,10,10_0,10_4,10_0_1 +10193,2,74.0,0.0,7,111,500.0,,,0,78,0.0,0.0,,550.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,5,110204,2,2,0,0,2,,500.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,109.1712533917608,500.0,15773.569873718956,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03486845428163851,15773.569873718956,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10194,1,24.0,226.0,2,111,0.0,0.0,0.0,85,55,0.0,0.0,0.0,343.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,110205,2,2,0,1,1,,0.0,420.0,42,1.0,0.0,4.0,3.0,1.8,2,2,324.499370018433,0.0,20730.370138559058,6,1,2,3,72.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.016545773071461496,11516.872299199476,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10195,1,40.0,450.0,2,111,870.0,200.0,0.0,0,68,0.0,0.0,1483.5244727336933,1070.0,0.0,379.7008095879578,41,0,0,0,0,0,0,0,0,2,5.0,2,,2,110206,2,1,0,1,1,1080.0,0.0,380.0,32,1.0,0.0,5.0,8.0,3.8999999999999995,5,3,1818.07399779132,870.0,37350.48287226092,0,1,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02864755466908988,9577.046890323316,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10196,2,45.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,808.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,1,110207,2,1,0,0,1,,0.0,420.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2156.27812390128,0.0,20217.253241844275,0,1,2,3,70.0,8,6,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03996586432066139,20217.253241844275,5,3,5,5_0,5_2,5_1_0 +10197,2,51.0,0.0,1,111,1160.0,2520.0,0.0,85,38,0.0,0.0,1978.032630311591,3732.0,0.0,4784.230200808268,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,110208,1,1,2,0,2,,528.0,,42,1.0,0.0,9.0,5.0,3.0,5,3,1227.07009815639,1160.0,190549.5367468765,6,1,0,1,244.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019585458268300805,63516.51224895883,10,5,10,10_1,10_2,10_1_0 +10198,2,37.0,0.0,9,111,1300.0,0.0,0.0,56,21,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,90.0,1,2012.0,6,110209,2,1,1,0,1,,207.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,1532.54400090545,1300.0,60692.17486612984,1,1,1,2,128.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021419565254786808,33717.874925627686,9,5,9,9_1,9_2,9_0_0 +10199,2,55.0,0.0,1,111,640.0,1000.0,0.0,67,64,0.0,0.0,1091.3283477581192,1640.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,110210,2,1,1,0,1,,336.0,600.0,43,2.0,2.0,6.0,2.0,1.5,2,2,373.602280940759,640.0,27317.262937598127,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06003529723114336,18211.508625065417,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +10200,2,55.0,0.0,2,111,300.0,0.0,0.0,0,46,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110211,2,1,0,1,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,331.000737291692,300.0,62467.642105059975,0,1,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004802486373592442,62467.642105059975,10,5,10,10_0,10_4,10_0_1 +10201,2,41.0,0.0,1,112,982.0,0.0,0.0,56,63,0.0,198.6490915515336,1674.506933591364,1182.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,110212,2,1,2,0,1,,197.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,816.314485407357,982.0,45981.34201289851,1,1,1,2,108.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025706078775787577,21895.87714899929,6,3,6,6_1,6_0,6_1_0 +10202,2,46.0,0.0,9,300,1530.0,0.0,0.0,0,52,0.0,0.0,2608.9568313592536,1530.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,110213,2,1,1,0,1,,247.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1005.23215208508,1530.0,9719.443138093156,0,1,1,2,95.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1574164258447597,9719.443138093156,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10203,2,56.0,0.0,5,112,740.0,0.0,0.0,0,78,0.0,893.9209119819011,1261.8484020953254,1575.0,221.69427606344334,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,110214,2,1,2,0,1,,529.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,836.900152573723,740.0,52511.15466973333,0,7,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029993627257025583,35007.436446488886,9,5,9,9_1,9_0,9_0_0 +10204,2,70.0,0.0,2,111,1500.0,840.0,0.0,86,75,0.0,0.0,2557.8008150580918,2340.0,0.0,1594.7434002694229,50,2,1,2,2,1,2,2,2,0,,2,,2,110215,1,2,0,1,1,670.0,0.0,338.0,41,0.0,2.0,3.0,2.0,1.5,2,2,982.031258446221,1500.0,23618.694903298354,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.09907406017058203,15745.796602198903,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +10205,2,45.0,0.0,9,120,400.0,,,0,55,0.0,0.0,,526.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,110216,1,1,0,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,110.90020902482303,400.0,18073.37509295347,0,1,1,2,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029103584543269913,18073.37509295347,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10206,2,63.0,0.0,6,112,1560.0,0.0,0.0,85,72,3374.985123317125,0.0,2660.1128476604154,4760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110217,2,1,2,0,1,,50.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1030.01962355855,1560.0,104532.75278720251,6,5,0,1,250.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04553596717853532,69688.501858135,10,5,10,10_1,10_0,10_0_0 +10207,2,65.0,0.0,6,111,1500.0,,,85,78,0.0,0.0,,1776.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,110218,2,2,0,0,2,,800.0,,41,2.0,0.0,4.0,6.0,3.3,5,5,64.05806307407141,1500.0,24826.20710937633,6,5,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07153730701494239,7523.093063447373,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10208,2,63.0,0.0,1,111,900.0,2000.0,0.0,75,33,0.0,0.0,1534.680489034855,2900.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,2,2.0,1,,1,110219,2,1,2,0,1,,900.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,433.534560186973,900.0,121016.31050028015,6,1,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023963711899754922,80677.5403335201,10,5,10,10_1,10_4,10_1_0 +10209,2,32.0,0.0,9,120,700.0,0.0,0.0,42,42,0.0,0.0,1193.6403803604428,880.0,249.40606057137379,0.0,44,0,0,0,0,0,0,0,0,0,,8,2006.0,6,110220,2,1,0,0,2,,1080.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,3617.01901139843,700.0,9222.300329183945,1,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09542087858657589,5123.5001828799695,1,1,1_0,1_0_0,1_0_0,1_0_0_0 +10210,2,60.0,0.0,9,112,500.0,0.0,0.0,0,56,1160.1511361402618,0.0,852.6002716860306,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,110221,2,1,1,0,1,,200.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1251.89050784222,500.0,22202.39579131776,0,1,1,2,105.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07206429499944685,22202.39579131776,6,3,6,6_1,6_0,6_0_0 +10211,2,60.0,0.0,8,112,400.0,,,0,52,0.0,0.0,,466.0,91.44888887617039,,60,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,110222,2,2,0,0,2,,250.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,116.08529181234579,400.0,34364.19297572665,0,1,0,1,145.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013560626909794211,34364.19297572665,9,5,9,9_1,9_2,9_0_0 +10212,2,57.0,0.0,2,111,217.0,217.0,0.0,0,56,0.0,0.0,370.02851791173725,434.0,0.0,411.9753784029342,50,0,0,0,0,0,0,0,0,0,,2,,2,110223,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1313.12136745409,217.0,5057.19329487125,0,4,0,1,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08581835312487282,5057.19329487125,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +10213,2,29.0,0.0,7,111,0.0,,,0,42,0.0,0.0,,300.0,0.0,,10,0,0,0,0,0,0,0,0,2,40.0,2,,5,110224,2,1,0,0,2,,0.0,650.0,32,1.0,0.0,3.0,2.0,1.3,1,1,102.48229643237781,0.0,26039.20135693257,0,1,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011521090677388584,20030.15488994813,5,3,5,5_0,5_2,5_0_0 +10214,2,34.0,0.0,6,111,0.0,,,81,53,0.0,0.0,,512.0,0.0,,50,0,0,0,0,0,0,0,0,1,20.0,1,,4,110225,2,1,0,0,1,,0.0,146.0,43,2.0,0.0,4.0,4.0,2.1,2,2,227.64229373931454,0.0,42742.29985117151,4,1,3,4,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011978765807707625,20353.476119605482,5,3,5,5_1,5_2,5_0_0 +10215,2,55.0,0.0,5,112,1000.0,400.0,0.0,85,68,0.0,0.0,1705.2005433720612,1400.0,0.0,759.4016191759156,71,2,2,2,2,1,2,1,2,0,,2,,3,110226,2,2,0,1,1,,0.0,477.0,42,2.0,4.0,4.0,3.0,2.0,3,3,226.274074313476,1000.0,20644.16686578971,6,1,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.06781576651174996,10322.083432894855,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +10216,2,50.0,0.0,6,111,600.0,,,0,54,0.0,0.0,,646.0,63.73710436823996,,31,0,0,0,0,0,0,0,0,2,20.0,2,,4,110227,2,2,0,0,2,,480.0,302.0,32,1.0,0.0,3.0,2.0,1.5,2,1,153.11179908916102,600.0,46605.71663620728,0,1,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013860960556459554,31070.477757471523,8,4,8,8_0,8_2,8_0_0 +10217,2,36.0,0.0,1,111,354.0,1376.0,0.0,0,35,0.0,0.0,603.6409923537096,1730.0,0.0,2612.3415699651496,30,2,2,2,2,2,2,2,1,0,,2,,1,110228,1,1,0,0,2,,0.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,964.188368565987,354.0,85181.56119037796,0,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0203095596725858,65524.27783875228,10,5,10,10_0,10_4,10_1_0 +10218,1,42.0,260.0,2,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,967.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,110229,2,3,1,0,1,,548.0,,32,2.0,0.0,5.0,4.0,2.3,3,1,1820.08268632285,0.0,24632.59817678891,0,1,1,2,100.0,7,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03925692259743822,10709.825294256048,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +10219,0,88.0,0.0,1,111,500.0,0.0,0.0,71,71,0.0,0.0,852.6002716860306,600.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,110230,2,2,0,0,1,,650.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1690.6514689645,500.0,16185.330781356897,5,5,0,1,100.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0370706047411222,10790.220520904599,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +10220,2,27.0,0.0,1,111,0.0,0.0,0.0,46,52,0.0,0.0,0.0,275.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,2,,1,110231,1,2,0,0,2,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2007.59395374583,0.0,9481.1106818297,1,1,2,3,70.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.029005040572623028,6320.740454553133,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +10221,2,33.0,0.0,1,111,0.0,0.0,508.0,85,64,0.0,0.0,320.20169153068986,508.0,0.0,607.9399309628578,42,0,0,0,0,0,0,0,0,2,10.0,2,,1,110232,2,1,0,1,1,504.0,0.0,334.0,42,1.0,0.0,3.0,2.0,1.5,2,2,388.353966724171,0.0,14582.066462978317,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034837312070256705,9721.377641985544,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +10222,2,69.0,0.0,2,300,397.0,0.0,0.0,77,74,1877.3354748451507,0.0,676.9646157187083,2241.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110233,2,2,1,0,1,,232.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1073.51563168757,397.0,40925.457691199845,5,5,0,1,102.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.054758092552301005,27283.638460799895,7,4,7,7_1,7_0,7_0_1 +10223,2,34.0,0.0,1,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,505.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,12.0,2,,1,110234,2,2,0,0,1,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,586.710469668805,0.0,24147.31061383573,0,1,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020913302026713036,24147.31061383573,6,3,6,6_0,6_4,6_1_0 +10224,2,75.0,0.0,5,112,270.0,1200.0,0.0,78,78,0.0,291.3520009422493,460.40414671045653,1690.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,3,110235,2,1,1,0,1,,250.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1466.13870786076,270.0,30840.30317398556,5,5,0,1,90.0,6,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054798423688180546,20560.202115990374,5,3,5,5_1,5_0,5_0_0 +10225,2,59.0,0.0,5,111,700.0,0.0,0.0,0,65,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,4,60.0,2,,3,110236,2,1,0,0,1,,200.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1839.72063145116,700.0,24011.21394440949,0,1,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031651877400265725,24011.21394440949,6,3,6,6_0,6_3,6_0_0 +10226,2,68.0,0.0,6,111,240.0,,,0,77,0.0,0.0,,396.0,216.15191916185728,,71,0,0,0,0,0,0,0,0,0,,1,,4,110237,2,2,0,0,2,,130.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,51.0927774587912,240.0,11309.281389060421,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03501548740161817,11309.281389060421,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10227,2,37.0,0.0,2,111,480.0,1200.0,0.0,0,34,0.0,0.0,818.4962608185893,1680.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,2,7.0,1,,2,110238,2,1,1,0,1,,300.0,,32,1.0,0.0,6.0,3.0,1.8,2,1,1449.80996203793,480.0,37286.22349764845,0,1,1,2,100.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.045056855921757635,20714.568609804694,5,3,5,5_1,5_2,5_0_1 +10228,2,87.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,807.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,110239,2,1,0,0,1,,160.0,480.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2169.80304963885,0.0,25334.797501498233,0,5,2,3,50.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0318534221539476,25334.797501498233,7,4,7,7_0,7_3,7_1_0 +10229,1,44.0,260.0,2,111,235.0,306.0,0.0,0,63,0.0,0.0,400.72212769243436,541.0,0.0,580.9422386695754,71,2,2,2,2,1,2,2,2,0,,2,,2,110240,2,3,0,1,1,450.0,270.0,247.0,32,1.0,3.0,2.0,2.0,1.5,2,1,277.165953384539,235.0,8009.981410896433,0,4,2,3,54.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.06754073102642248,5339.987607264288,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10230,1,29.0,171.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1247.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,,1,110241,2,1,2,0,1,,288.0,730.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1704.20150495183,0.0,13610.310936201986,0,1,2,3,80.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0916217128209108,10469.469950924604,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +10231,2,61.0,0.0,2,111,300.0,0.0,0.0,0,46,0.0,0.0,511.56016301161833,738.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,110242,2,3,0,1,1,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,222.418539192585,300.0,25380.461616040837,0,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029077485317823094,25380.461616040837,7,4,7,7_0,7_4,7_0_1 +10232,1,51.0,160.0,1,111,120.0,0.0,0.0,0,85,0.0,0.0,204.62406520464734,120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,110243,2,1,0,1,1,,0.0,200.0,11,0.0,0.0,1.0,1.0,1.0,1,1,928.85520917121,120.0,10830.258063813622,0,7,2,3,16.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.011080068387377354,10830.258063813622,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +10233,2,58.0,0.0,7,111,800.0,0.0,0.0,0,78,0.0,0.0,1364.160434697649,860.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,110244,2,2,1,0,1,,350.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,1116.37260383235,800.0,24750.148109358543,0,7,0,1,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03474726681230712,16500.09873957236,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10234,2,42.0,0.0,2,111,380.0,950.0,0.0,56,48,0.0,0.0,647.9762064813832,1330.0,0.0,1803.5788455427996,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,110245,2,2,3,0,1,,380.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,334.444032067737,380.0,52139.61107035549,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025508437303173235,24828.386223978803,7,4,7,7_1,7_3,7_0_1 +10235,2,32.0,0.0,9,112,1500.0,0.0,0.0,21,52,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,2,2,2,2,2,2,2,1,2,10.0,1,2009.0,6,110246,1,3,1,0,1,,450.0,690.0,43,2.0,0.0,4.0,3.0,1.8,2,2,3719.59908145562,1500.0,22632.756201212254,1,1,2,3,107.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.06627562222932694,12573.753445117918,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10236,2,41.0,0.0,5,112,3400.0,0.0,0.0,42,34,0.0,0.0,5797.681847465008,3400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,110247,1,2,3,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,734.308164983248,3400.0,63268.879581619505,1,1,1,2,160.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053738900111449855,30128.037896009286,8,4,8,8_1,8_0,8_0_0 +10237,2,34.0,0.0,1,111,980.0,0.0,0.0,0,62,0.0,0.0,1671.09653250462,1080.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,110248,2,1,1,0,1,,179.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,912.644266565064,980.0,21187.092238616122,0,1,1,2,70.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05097443234950217,21187.092238616122,5,3,5,5_1,5_2,5_1_0 +10238,2,42.0,0.0,2,111,405.0,0.0,0.0,0,52,0.0,0.0,690.6062200656847,405.0,0.0,0.0,31,2,1,2,2,1,2,2,2,0,,2,,2,110249,1,3,0,1,2,1080.0,0.0,333.0,12,1.0,0.0,3.0,1.0,1.0,1,1,367.010381569522,405.0,17936.363700851474,0,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02257982759241071,17936.363700851474,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +10239,1,41.0,250.0,6,111,30.0,0.0,0.0,85,68,0.0,0.0,51.156016301161834,180.0,207.83838380947813,0.0,50,2,1,2,2,1,2,2,2,0,,2,,4,110250,1,2,0,1,1,,180.0,350.0,42,1.0,0.0,2.0,2.0,1.5,2,2,460.34068107126,30.0,8411.450182914756,6,4,2,3,55.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.021399401540249743,5607.633455276504,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10240,0,23.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,352.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,1,110251,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2712.69297450511,0.0,22875.27969438395,0,1,5,0,28.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015387789994385013,22875.27969438395,6,3,6,6_0,6_3,6_1_0 +10241,2,47.0,0.0,2,111,340.0,94.0,0.0,52,38,0.0,0.0,579.7681847465008,434.0,0.0,178.45938050634015,31,2,2,2,2,2,2,1,2,3,30.0,2,,2,110252,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,890.840533924017,340.0,81031.14089270687,1,1,1,2,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.00535596556112493,40515.570446353435,9,5,9,9_0,9_4,9_0_1 +10242,2,32.0,0.0,2,111,160.0,0.0,0.0,0,53,0.0,0.0,272.8320869395298,160.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,110253,2,1,0,1,1,274.0,0.0,217.0,12,1.0,0.0,3.0,1.0,1.0,1,1,299.012415140078,160.0,16329.737872948215,0,1,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009798075219875723,16329.737872948215,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10243,0,93.0,0.0,1,111,1840.0,0.0,0.0,0,86,0.0,0.0,3137.5689998045927,1990.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,110254,2,1,2,0,1,,165.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1228.47169837208,1840.0,13284.446080253407,0,6,0,1,80.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1497992455220263,13284.446080253407,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +10244,1,81.0,88.0,7,111,300.0,500.0,0.0,0,77,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,5,110255,2,1,0,1,1,,180.0,313.0,11,0.0,2.0,1.0,1.0,1.0,1,1,905.756706915715,300.0,18270.88181688244,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04378551664982002,18270.88181688244,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +10245,2,71.0,0.0,2,112,2600.0,0.0,0.0,0,74,0.0,0.0,4433.521412767359,2660.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,110256,2,1,2,0,1,,360.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,1407.11645631899,2600.0,39172.32363497467,0,5,0,1,130.0,4,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06790508586590564,39172.32363497467,9,5,9,9_1,9_0,9_0_1 +10246,2,42.0,0.0,5,211,396.0,,,0,52,0.0,0.0,,540.0,199.524848457099,,50,2,2,2,2,2,2,2,1,0,,1,,3,110257,1,1,0,0,2,,180.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,94.68803004210261,396.0,6180.435520168099,0,4,1,2,86.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0873724834176917,6180.435520168099,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10247,0,82.0,0.0,1,111,600.0,800.0,0.0,0,78,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,60,0,0,0,0,0,0,0,0,0,,1,,1,110258,2,1,1,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,321.445389702684,600.0,14787.708568128364,0,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09467322090843679,14787.708568128364,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +10248,2,51.0,0.0,9,111,550.0,,,0,56,0.0,0.0,,711.0,223.07986528883987,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,110259,2,2,0,0,2,,700.0,,32,1.0,1.0,5.0,2.0,1.5,2,1,82.54883912628537,550.0,20732.53669619815,0,1,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034293922177423684,13821.691130798767,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +10249,0,64.0,0.0,2,211,186.0,,,0,72,0.0,0.0,,232.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,2,110260,2,1,0,0,2,,228.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,98.88836485156881,186.0,7252.839613839789,0,5,5,0,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031987471439089886,7252.839613839789,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +10250,1,27.0,62.0,1,111,360.0,1100.0,0.0,0,47,0.0,0.0,613.872195613942,1460.0,0.0,2088.354452733768,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,110261,2,3,2,0,1,,400.0,335.0,12,1.0,0.0,2.0,1.0,1.0,1,1,240.616524923934,360.0,16835.4555470617,0,1,2,3,42.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08672174007520779,16835.4555470617,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +10251,2,58.0,0.0,1,111,1200.0,2000.0,0.0,0,75,0.0,0.0,2046.2406520464733,3200.0,0.0,3797.008095879578,44,0,0,0,0,0,0,0,0,0,,1,,1,110262,2,1,3,0,2,,800.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1430.13667734998,1200.0,32311.5179943005,0,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09903589180070262,32311.5179943005,8,4,8,8_1,8_3,8_1_0 +10252,2,43.0,0.0,2,111,175.0,704.0,0.0,0,62,0.0,0.0,298.4100950901107,879.0,0.0,1336.5468497496115,50,2,2,2,2,1,2,2,2,2,20.0,2,,2,110263,1,3,0,0,2,,0.0,387.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2389.38768941312,175.0,23278.249832582434,0,1,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0377605707611948,23278.249832582434,6,3,6,6_0,6_3,6_0_1 +10253,2,31.0,0.0,9,111,800.0,0.0,0.0,48,53,0.0,0.0,1364.160434697649,800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,110264,2,1,1,0,1,,480.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,624.921679804684,800.0,76202.11980718464,1,1,1,2,104.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01049839560925932,42334.511003991465,9,5,9,9_1,9_3,9_0_0 +10254,2,53.0,0.0,1,111,1500.0,2400.0,0.0,34,37,0.0,92.70290939071567,2557.8008150580918,3970.0,0.0,4556.4097150554935,20,0,0,0,0,0,0,0,0,1,30.0,1,,1,110265,2,2,3,0,1,,0.0,,43,2.0,0.0,7.0,5.0,3.0,5,5,503.725611070167,1500.0,229959.48237128922,1,1,0,1,177.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017263910837954036,76653.16079042974,10,5,10,10_1,10_4,10_1_0 +10255,0,38.0,0.0,9,111,420.0,,,0,56,0.0,39.72981831030672,,626.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,110266,2,1,0,0,2,,200.0,,32,1.0,0.0,5.0,3.0,1.8,2,1,89.43965419551192,420.0,20896.0,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029957886676875958,11608.888888888889,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10256,2,67.0,0.0,2,111,180.0,40.0,0.0,74,74,0.0,0.0,306.936097806971,220.0,0.0,75.94016191759155,12,0,0,0,0,0,0,0,0,0,,1,,2,110267,2,2,3,0,1,,532.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1155.00975311285,180.0,84710.95257317921,6,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0025970667702024564,56473.96838211947,10,5,10,10_1,10_4,10_0_1 +10257,2,71.0,0.0,2,111,300.0,1400.0,0.0,77,78,0.0,0.0,511.56016301161833,1700.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,2,,2,110268,2,1,0,0,1,,380.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,217.899615858167,300.0,22817.565549726143,5,5,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07450400421969658,15211.710366484096,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +10258,2,51.0,0.0,2,111,600.0,3000.0,0.0,43,38,0.0,0.0,1023.1203260232367,3600.0,0.0,5695.512143819367,10,2,2,1,2,2,2,2,1,2,90.0,1,,2,110269,2,2,3,0,1,,800.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,713.815600138588,600.0,93043.37183573656,1,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03869163304136936,51690.76213096475,10,5,10,10_1,10_4,10_0_1 +10259,2,55.0,0.0,8,111,660.0,,,0,68,0.0,0.0,,936.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,3,15.0,2,2000.0,6,110270,2,1,0,0,2,,600.0,530.0,32,3.0,1.0,4.0,4.0,2.5,4,4,47.71801660348521,660.0,27173.11950906816,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034445805888707035,10869.247803627264,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +10260,1,40.0,410.0,8,111,580.0,670.0,0.0,63,85,0.0,0.0,989.0163151557955,1250.0,0.0,1271.9977121196587,50,2,2,2,2,1,2,2,2,0,,1,,6,110271,1,1,2,0,1,,440.0,460.0,42,1.0,0.0,4.0,4.0,2.3,3,3,233.666029153784,580.0,7204.897959183673,4,6,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.17349308860185816,3132.5643300798583,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +10261,2,59.0,0.0,9,111,1632.0,0.0,0.0,54,64,0.0,0.0,2782.8872867832038,1710.0,108.07595958092864,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,110272,2,1,1,0,1,,170.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,741.273332597332,1632.0,52704.03716324357,1,1,1,2,100.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0324453323130353,35136.024775495716,9,5,9,9_1,9_2,9_0_0 +10262,2,73.0,0.0,9,120,669.0,,,78,74,0.0,0.0,,712.0,59.5803366920504,,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,110273,2,1,0,0,1,,212.0,900.0,41,0.0,3.0,4.0,2.0,1.5,2,2,109.9228996926692,669.0,32491.180591061297,5,5,2,3,92.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021913638933633562,21660.78706070753,6,3,6,6_1,6_2,6_0_0 +10263,2,64.0,0.0,5,221,1189.0,0.0,0.0,77,75,0.0,0.0,2027.4834460693808,1309.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110274,2,2,2,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1670.09654325281,1189.0,37788.246558726714,5,5,0,1,99.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03464040063265923,25192.164372484476,7,4,7,7_1,7_1,7_0_0 +10264,2,54.0,0.0,5,111,327.0,,,64,34,0.0,0.0,,442.0,159.34276092059991,,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,110275,2,1,0,0,2,,520.0,324.0,43,3.0,1.0,4.0,4.0,2.3,3,3,126.20057474364394,327.0,84050.74656375882,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005258727828963539,36543.802853808185,9,5,9,9_0,9_2,9_0_0 +10266,2,26.0,0.0,1,112,350.0,750.0,0.0,54,46,0.0,0.0,596.8201901802214,1100.0,0.0,1423.8780359548418,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,110277,1,2,2,0,1,,400.0,660.0,43,2.0,0.0,3.0,2.0,1.5,2,2,314.080803697209,350.0,40091.394683551865,1,1,2,3,70.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027437309394758785,26727.596455701245,7,4,7,7_1,7_1,7_1_0 +10267,1,81.0,181.0,2,111,350.0,,,77,78,0.0,0.0,,442.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,2,110278,2,1,0,0,2,,136.0,295.0,41,0.0,3.0,4.0,2.0,1.5,2,2,132.4171632468658,350.0,16208.521803559408,5,5,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02726960578866213,10805.681202372938,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +10268,2,61.0,0.0,9,112,1287.0,0.0,0.0,54,74,0.0,529.7309108040896,2194.5930993198426,1747.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,0,,1,2007.0,6,110279,2,1,1,0,1,,451.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,731.059886696158,1287.0,75712.92688381895,1,5,0,1,108.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023073999010509282,50475.28458921263,10,5,10,10_1,10_0,10_0_0 +10269,1,90.0,40.0,9,221,730.0,0.0,0.0,0,77,0.0,0.0,1244.7963966616046,730.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,110280,2,1,1,0,1,,192.0,365.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1734.05123874314,730.0,15681.223463606584,0,5,2,3,65.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0465524900971027,15681.223463606584,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +10270,2,75.0,0.0,2,111,800.0,0.0,0.0,0,78,0.0,0.0,1364.160434697649,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110281,2,1,0,1,1,526.0,0.0,311.0,11,0.0,3.0,3.0,1.0,1.0,1,1,820.229049625915,800.0,18428.485781858388,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07596934531529478,18428.485781858388,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +10271,0,41.0,0.0,1,111,990.0,0.0,0.0,0,56,0.0,0.0,1688.1485379383405,990.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,110282,1,2,0,1,2,,0.0,,32,2.0,0.0,3.0,3.0,2.0,3,2,723.363962199251,990.0,9469.530949898559,0,1,5,0,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10454583286520704,4734.765474949279,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +10272,0,76.0,0.0,6,111,271.0,,,0,75,0.0,0.0,,311.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,1,,4,110283,2,2,0,0,2,,363.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,119.80821810762042,271.0,28799.616269803835,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010798754993346248,28799.616269803835,8,4,8,8_1,8_2,8_0_0 +10273,1,69.0,280.0,2,111,160.0,0.0,0.0,0,77,0.0,0.0,272.8320869395298,160.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,110284,1,2,0,1,2,240.0,0.0,923.0,11,0.0,2.0,1.0,1.0,1.0,1,1,1236.26652240414,160.0,7565.581029470633,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021148408744383677,7565.581029470633,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10274,2,44.0,0.0,9,300,520.0,,,52,45,0.0,0.0,,586.0,91.44888887617039,,60,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,110285,2,1,0,0,2,,160.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,203.60798709967784,520.0,53832.810338463634,1,1,1,2,150.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01088555467038848,22430.337641026515,6,3,6,6_1,6_1,6_0_0 +10275,2,65.0,0.0,6,111,2700.0,0.0,0.0,77,74,0.0,0.0,4604.0414671045655,2700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110286,2,1,2,0,1,,187.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,713.126715719561,2700.0,67461.7238202152,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04002269504994377,44974.482546810126,10,5,10,10_1,10_4,10_0_0 +10276,2,37.0,0.0,9,400,750.0,0.0,0.0,0,67,0.0,0.0,1278.9004075290459,840.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,110287,2,1,0,0,1,,250.0,457.0,32,2.0,0.0,2.0,3.0,1.8,2,2,277.531893539773,750.0,17115.998119092663,0,1,2,3,45.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049076892516305634,9508.887843940369,1,1,1_0,1_0_0,1_0_0,1_0_0_0 +10277,2,42.0,0.0,7,112,1600.0,0.0,0.0,21,38,0.0,317.83854648245375,2728.320869395298,1840.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,110288,1,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,490.304590813393,1600.0,60909.91405856446,1,1,1,2,110.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030208546973664298,29004.72098026879,8,4,8,8_1,8_1,8_0_0 +10278,1,42.0,413.0,2,111,1000.0,400.0,0.0,0,68,0.0,0.0,1705.2005433720612,1400.0,0.0,759.4016191759156,41,2,1,2,2,1,2,2,2,0,,2,,2,110289,1,3,0,1,1,614.0,0.0,382.0,32,1.0,1.0,4.0,3.0,2.0,3,3,868.640201088387,1000.0,5296.1569634557745,0,4,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.26434261855534047,2648.0784817278873,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10279,2,79.0,0.0,2,111,320.0,1150.0,0.0,71,71,0.0,0.0,545.6641738790596,1470.0,0.0,2183.2796551307574,71,0,0,0,0,0,0,0,0,0,,1,,2,110290,2,2,2,0,1,,340.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1748.87579711988,320.0,22583.88995023549,5,5,0,1,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06509064661753153,15055.926633490328,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +10280,1,21.0,337.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,977.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110291,2,2,0,1,1,850.0,0.0,315.0,32,1.0,0.0,3.0,2.0,1.3,1,1,400.341653526369,0.0,9397.727892833056,0,4,2,3,68.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10396129906517987,7229.021456025427,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10281,2,33.0,0.0,1,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1210.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,110292,2,1,1,0,1,,455.0,950.0,12,1.0,0.0,5.0,1.0,1.0,1,1,1460.73406192683,0.0,55903.47230095751,0,1,2,3,150.0,9,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021644451591234615,55903.47230095751,10,5,10,10_1,10_0,10_1_0 +10282,2,40.0,0.0,1,112,2500.0,0.0,0.0,54,22,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,7.0,1,,1,110293,2,1,3,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,534.107286148929,2500.0,39470.75776912976,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06333802899409395,17161.19903005642,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10283,2,25.0,0.0,2,111,770.0,2101.0,0.0,0,64,0.0,0.0,1313.0044183964872,2871.0,0.0,3988.7570047214967,43,1,2,2,2,1,2,2,2,0,,1,,2,110294,1,2,4,0,2,,312.0,328.0,22,3.0,1.0,5.0,7.0,3.6,5,4,317.784192558501,770.0,64424.262534042915,0,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.044563955986037296,17895.62848167859,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +10284,2,46.0,0.0,9,111,900.0,0.0,0.0,46,37,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,2009.0,6,110295,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,1252.38157815483,900.0,91112.23853808228,1,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009877926549064274,45556.11926904114,10,5,10,10_0,10_4,10_0_0 +10285,2,66.0,0.0,1,112,1572.0,0.0,0.0,0,75,0.0,0.0,2680.57525418088,1572.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,110296,2,1,2,0,1,,171.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,885.498050537374,1572.0,24256.93772883032,0,5,0,1,65.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06480620173797191,24256.93772883032,7,4,7,7_1,7_0,7_1_0 +10286,2,46.0,0.0,7,111,960.0,,,52,42,0.0,0.0,,960.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,110297,1,1,0,0,1,,160.0,1116.0,43,2.0,1.0,4.0,4.0,2.3,3,2,146.90399231384737,960.0,56673.26027144184,1,1,2,3,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016939205463070078,24640.54794410515,7,4,7,7_1,7_2,7_0_0 +10287,2,81.0,0.0,1,111,612.0,,,0,77,0.0,0.0,,658.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,1,110298,2,2,0,0,2,,588.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,72.45661579469035,612.0,15997.894897770106,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04113041148255803,15997.894897770106,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +10288,1,68.0,253.0,7,111,130.0,,,0,77,0.0,0.0,,193.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,5,110299,2,1,0,0,2,,190.0,274.0,11,0.0,2.0,3.0,1.0,1.0,1,1,136.13021227105008,130.0,10637.4639507303,0,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018143422238037277,10637.4639507303,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +10289,2,57.0,0.0,2,111,0.0,0.0,0.0,75,38,0.0,0.0,0.0,3552.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,110300,2,2,3,0,2,,600.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,493.543965686539,0.0,96852.66131444203,5,1,1,2,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03667426327572012,48426.33065722101,10,5,10,10_1,10_4,10_0_1 +10290,2,78.0,0.0,1,300,355.0,90.0,0.0,0,77,0.0,0.0,605.3461928970817,445.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,0,,1,,1,110301,2,3,3,0,1,,360.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,250.354403742255,355.0,21352.455419833423,0,5,0,1,65.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020840694489246313,21352.455419833423,6,3,6,6_1,6_0,6_1_0 +10291,1,44.0,134.0,7,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,909.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,5,110302,2,1,0,0,1,,483.0,525.0,32,1.0,1.0,3.0,2.0,1.5,2,1,328.018739116046,0.0,19905.669914161947,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04566538096531428,13270.446609441298,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +10292,2,89.0,0.0,2,111,500.0,50.0,0.0,0,77,0.0,0.0,852.6002716860306,550.0,0.0,94.92520239698945,70,0,0,0,0,0,0,0,0,0,,2,,2,110303,2,1,0,1,2,,150.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,884.98105974279,500.0,19420.35005266945,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028320807735615402,19420.35005266945,5,3,5,5_0,5_4,5_0_1 +10293,2,38.0,0.0,1,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,3061.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,110304,2,1,1,0,1,,755.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,486.688065699742,0.0,115240.60976929008,1,4,1,2,160.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026561817107077744,54876.480842519086,10,5,10,10_1,10_4,10_1_0 +10294,2,58.0,0.0,2,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,475.0,55.423569015860835,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,110305,2,2,0,1,1,600.0,0.0,815.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2516.06268147968,0.0,13935.517854345708,0,1,2,3,60.0,9,3,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034085565026338374,13935.517854345708,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +10295,2,65.0,0.0,8,112,468.0,0.0,0.0,71,11,1160.1511361402618,0.0,798.0338542981247,1628.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,110306,1,1,2,0,1,,208.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,728.259290737781,468.0,70930.56005954639,5,1,0,1,136.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022952025172694106,47287.0400396976,10,5,10,10_1,10_0,10_0_0 +10296,0,65.0,0.0,2,111,180.0,0.0,0.0,0,74,0.0,0.0,306.936097806971,232.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,110307,2,1,0,1,2,1160.0,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1209.60561172457,180.0,39981.94445818234,0,5,5,0,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005802619235856624,39981.94445818234,9,5,9,9_0,9_4,9_0_1 +10297,2,54.0,0.0,1,111,2153.0,3790.0,0.0,85,34,0.0,0.0,3671.2967698800476,5943.0,0.0,7195.330341691801,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,110308,1,1,2,0,1,,781.0,,42,1.0,4.0,10.0,2.0,1.5,2,2,1408.08891636455,2153.0,134792.52998163027,6,1,0,1,240.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04408998036322874,89861.68665442018,10,5,10,10_1,10_3,10_1_0 +10298,2,57.0,0.0,8,112,462.0,1279.0,0.0,77,85,0.0,278.10872817214704,787.8026510378922,1951.0,0.0,2428.18667731499,50,2,2,2,2,1,2,2,2,0,,1,1999.0,6,110309,2,1,1,0,1,,400.0,,41,0.0,0.0,5.0,3.0,2.0,3,3,409.184818344785,462.0,41118.78066203446,7,6,0,1,142.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04744790503482476,20559.39033101723,5,3,5,5_1,5_0,5_0_0 +10299,2,28.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,783.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,110310,1,3,0,1,1,,0.0,715.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1416.58925644328,0.0,45122.6857185159,0,1,2,3,55.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017352690504384125,45122.6857185159,10,5,10,10_0,10_2,10_0_1 +10300,2,64.0,0.0,2,120,500.0,0.0,0.0,0,75,1476.555991451242,794.5963662061343,852.6002716860306,2860.0,498.81212114274757,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,110311,2,2,2,0,2,,700.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1364.04669051493,500.0,26769.84296267461,0,5,0,1,80.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10683663718116386,26769.84296267461,7,4,7,7_1,7_1,7_0_1 +10301,1,52.0,124.0,2,111,728.0,1251.0,0.0,0,56,0.0,0.0,1241.3859955748605,1979.0,0.0,2375.0285639726762,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,110312,2,1,2,0,1,,210.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,318.216036231619,728.0,16904.7285024304,0,1,1,2,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11706783694961315,13003.637309561846,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +10302,2,43.0,0.0,1,112,360.0,860.0,0.0,0,54,0.0,0.0,613.872195613942,1220.0,0.0,1632.7134812282186,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,110313,2,1,1,0,1,,240.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,147.665652779535,360.0,15497.351899372741,0,1,1,2,67.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07872312688785106,15497.351899372741,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10303,2,76.0,0.0,2,111,509.0,1207.0,0.0,77,77,0.0,0.0,867.9470765763791,1716.0,0.0,2291.4943858633255,50,0,0,0,0,0,0,0,0,0,,1,,2,110314,2,2,2,0,1,,276.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,289.4965161506,509.0,38558.42787479057,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04450388915160926,25705.618583193715,7,4,7,7_1,7_3,7_0_1 +10304,2,34.0,0.0,6,300,600.0,1600.0,0.0,52,48,0.0,0.0,1023.1203260232367,2200.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,110315,2,1,1,0,1,,700.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1293.73024998874,600.0,57761.28593130088,1,1,1,2,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03808779469724061,27505.37425300042,7,4,7,7_1,7_0,7_0_0 +10305,1,50.0,90.0,2,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1024.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110316,2,1,2,0,2,,475.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,3938.2671271084,0.0,14601.470496739024,0,4,2,3,50.0,8,1,9,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07012992288884136,14601.470496739024,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +10306,0,61.0,0.0,2,300,500.0,0.0,0.0,0,75,1687.4925616585624,0.0,852.6002716860306,2160.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,110317,2,1,2,0,1,,200.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1783.37296824359,500.0,43064.60530496603,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050157199507664306,43064.60530496603,9,5,9,9_1,9_0,9_0_1 +10307,2,33.0,0.0,2,112,0.0,0.0,0.0,55,62,0.0,0.0,0.0,3143.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,110318,2,1,1,0,1,,186.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,422.77366733302,0.0,49729.65991812129,1,1,1,2,105.0,9,1,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06320171915864446,33153.10661208086,8,4,8,8_1,8_1,8_0_1 +10308,2,53.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,546.0,0.0,,10,0,0,0,0,0,0,0,0,0,,3,,5,110319,2,1,0,0,2,,0.0,550.0,12,1.0,2.0,2.0,1.0,1.0,1,1,118.74113069034955,0.0,26797.02846828496,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020375393512239853,26797.02846828496,7,4,7,7_0,7_2,7_0_0 +10309,2,79.0,0.0,2,111,200.0,1200.0,0.0,0,77,0.0,0.0,341.04010867441224,1400.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,110320,2,1,2,0,1,,110.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,142.736289779782,200.0,19242.66831357573,0,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07275498268669413,19242.66831357573,5,3,5,5_1,5_2,5_0_1 +10310,2,45.0,0.0,7,112,1320.0,,,55,55,0.0,0.0,,1430.0,152.4148147936173,,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,110321,2,1,0,0,2,,100.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,96.88758180587469,1320.0,45318.2226086575,1,1,0,1,126.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03155463558994071,30212.14840577167,8,4,8,8_1,8_1,8_0_0 +10311,1,60.0,367.0,2,111,360.0,660.0,0.0,77,62,0.0,0.0,613.872195613942,1020.0,0.0,1253.0126716402608,60,0,0,0,0,0,0,0,0,0,,2,,2,110322,2,2,0,0,1,,0.0,445.0,42,1.0,3.0,4.0,2.0,1.5,2,2,336.989267555022,360.0,8338.005536615057,7,4,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12233141313241258,5558.670357743372,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10312,2,54.0,0.0,2,111,800.0,250.0,0.0,0,42,0.0,0.0,1364.160434697649,1050.0,0.0,474.62601198494724,31,2,2,1,2,1,2,2,2,2,5.0,2,,2,110323,1,3,0,1,2,350.0,0.0,397.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1132.80788893958,800.0,36940.00770749609,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028424466186208395,36940.00770749609,9,5,9,9_0,9_4,9_0_1 +10313,1,83.0,38.0,2,111,204.0,252.0,0.0,0,77,0.0,0.0,347.86091084790047,456.0,0.0,478.4230200808268,71,0,0,0,0,0,0,0,0,0,,2,,2,110324,2,1,0,1,1,915.0,0.0,304.0,11,0.0,3.0,4.0,1.0,1.0,1,1,267.217844026221,204.0,17771.96805504998,0,5,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02565838508079164,17771.96805504998,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +10314,2,50.0,0.0,6,111,936.0,0.0,0.0,77,48,0.0,0.0,1596.0677085962493,936.0,0.0,0.0,44,2,1,2,1,1,2,2,2,2,10.0,2,,4,110325,2,1,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,871.278180850453,936.0,47571.921961325825,5,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01967547161035311,31714.614640883883,8,4,8,8_0,8_4,8_0_0 +10315,2,82.0,0.0,2,111,305.0,360.0,0.0,0,75,0.0,0.0,520.0861657284787,665.0,0.0,683.461457258324,60,0,0,0,0,0,0,0,0,0,,2,,2,110326,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1597.30460027075,305.0,23706.91810620985,0,5,0,1,53.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028050883586838233,23706.91810620985,6,3,6,6_0,6_3,6_0_1 +10316,2,62.0,0.0,6,120,1253.0,0.0,0.0,85,72,0.0,264.8654554020448,2136.6162808451927,1486.0,45.72444443808519,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,110327,2,1,2,0,1,,424.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,943.583639709232,1253.0,27614.99259694417,6,5,0,1,99.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05381134884549773,18409.995064629446,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10317,2,31.0,0.0,1,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1344.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,110328,2,1,3,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,198.37128968297,0.0,14745.899935125834,0,1,1,2,86.0,7,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09114397940531875,14745.899935125834,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10318,1,36.0,17.0,9,211,240.0,,,11,11,0.0,0.0,,372.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,110329,1,1,0,0,1,,200.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,173.08496172642987,240.0,30262.06247240215,1,1,1,2,170.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.012292618863610166,12609.19269683423,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +10319,2,53.0,0.0,2,111,845.0,0.0,0.0,56,64,0.0,0.0,1440.8944591493917,845.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,2,110330,2,1,0,1,1,,0.0,719.0,43,2.0,1.0,4.0,6.0,3.0999999999999996,4,4,216.614941934021,845.0,45285.82657903651,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018659259725009925,14608.331154527908,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +10321,2,50.0,0.0,1,222,720.0,0.0,0.0,64,54,1476.555991451242,874.0560028267478,1227.744391227884,2885.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,1,110332,2,1,2,0,1,,270.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1413.69873463505,720.0,53047.94843977304,1,1,0,1,150.0,1,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054384761048307625,35365.2989598487,9,5,9,9_1,9_0,9_1_0 +10322,2,86.0,0.0,2,211,320.0,1120.0,0.0,77,75,0.0,0.0,545.6641738790596,1440.0,0.0,2126.324533692564,50,0,0,0,0,0,0,0,0,0,,1,,2,110333,2,3,2,0,1,,230.0,,41,0.0,0.0,6.0,3.0,2.0,3,3,782.148980897751,320.0,57131.894404351486,5,5,0,1,114.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02520483549536074,28565.947202175743,8,4,8,8_1,8_1,8_0_1 +10323,2,56.0,0.0,8,400,1350.0,0.0,0.0,0,52,0.0,0.0,2302.0207335522828,1385.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,110334,2,1,1,0,1,,316.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,2299.33709981441,1350.0,17829.51960304498,0,1,1,2,130.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07768016361828758,17829.51960304498,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10324,2,51.0,0.0,6,112,923.68,0.0,0.0,43,48,0.0,339.0277829146173,1575.0596379019055,1180.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,,4,110335,2,2,2,0,1,,360.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,752.40662898587,923.68,113972.33695339909,1,1,0,1,110.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010353389528921193,56986.168476699546,10,5,10,10_1,10_0,10_0_0 +10325,2,61.0,0.0,7,111,900.0,1200.0,0.0,86,52,0.0,0.0,1534.680489034855,2100.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,110336,2,1,2,0,1,,0.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,319.661632953559,900.0,38937.79523864654,5,1,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0539321753357958,19468.89761932327,5,3,5,5_1,5_3,5_0_0 +10326,1,33.0,350.0,7,111,360.0,,,0,43,0.0,0.0,,400.0,55.423569015860835,,60,0,0,0,0,0,0,0,0,2,45.0,2,,5,110337,2,2,0,0,1,,360.0,360.0,32,1.0,0.0,2.0,2.0,1.3,1,1,111.57140842280371,360.0,16639.900724045434,0,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024038604955255612,12799.923633881102,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +10327,2,74.0,0.0,2,112,275.0,0.0,0.0,77,78,1898.4291318658827,0.0,468.93014942731685,2195.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,110338,1,1,2,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,897.249831774104,275.0,24367.436977037753,5,5,0,1,85.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09007923164296769,16244.957984691835,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +10328,2,89.0,0.0,2,111,337.0,1522.0,0.0,0,86,0.0,0.0,574.6525831163846,1859.0,0.0,2889.523160964359,70,0,0,0,0,0,0,0,0,0,,1,,2,110339,2,1,3,0,1,,176.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1921.7876741656,337.0,19385.034870242514,0,7,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09589871838991142,19385.034870242514,5,3,5,5_1,5_2,5_0_1 +10329,2,63.0,0.0,2,111,276.0,1186.0,0.0,77,77,0.0,0.0,470.6353499706889,1462.0,0.0,2251.6258008565896,60,0,0,0,0,0,0,0,0,0,,1,,2,110340,2,2,2,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1233.04188756702,276.0,33562.76598901926,5,5,0,1,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043560176192818045,22375.17732601284,6,3,6,6_1,6_3,6_0_1 +10330,2,92.0,0.0,1,111,621.0,0.0,0.0,0,75,0.0,0.0,1058.92953743405,1027.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,110341,2,3,0,1,1,2000.0,0.0,646.0,21,1.0,2.0,6.0,3.0,2.0,3,3,2155.7053834573,621.0,49696.57264951209,0,5,2,3,120.0,7,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020665409006028968,24848.286324756045,7,4,7,7_0,7_2,7_1_0 +10331,0,67.0,0.0,1,111,1055.6,2489.0,0.0,0,75,0.0,0.0,1800.0096935835477,3545.0,0.0,4725.376575322135,50,0,0,0,0,0,0,0,0,0,,1,,1,110342,2,1,1,0,1,,385.0,,21,2.0,1.0,7.0,5.0,2.5999999999999996,3,3,510.26568802649,1055.6,64228.23383737281,0,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05519379544167463,24703.166860528007,7,4,7,7_1,7_4,7_1_0 +10332,2,36.0,0.0,1,300,1020.0,0.0,0.0,47,52,0.0,529.7309108040896,1739.3045542395023,1516.0,133.01656563806603,0.0,43,2,2,2,2,1,1,1,2,2,25.0,1,,1,110343,1,3,3,0,2,,160.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,652.857571883216,1020.0,37746.39784209059,1,1,1,2,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04016277278542127,17974.475162900282,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10333,2,65.0,0.0,5,111,309.0,0.0,0.0,77,78,1015.6595855482473,92.70290939071567,526.9069679019669,1432.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110344,2,1,1,0,1,,125.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1423.29074362679,309.0,30737.251319763258,5,5,0,1,66.0,9,7,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04658842084162747,20491.500879842173,5,3,5,5_1,5_3,5_0_0 +10334,2,47.0,0.0,6,111,1620.0,,,0,11,0.0,0.0,,1666.0,63.73710436823996,,44,0,0,0,0,0,0,0,0,0,,1,,4,110345,2,1,0,0,2,,0.0,,32,1.0,1.0,4.0,2.0,1.5,2,1,54.90964253921248,1620.0,5110.0,0,1,0,1,300.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.32602739726027397,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10335,2,41.0,0.0,6,112,750.0,1600.0,0.0,52,48,0.0,0.0,1278.9004075290459,2350.0,0.0,3037.6064767036623,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,110346,2,1,3,0,1,,650.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,658.274661834447,750.0,84785.17481676668,1,1,1,2,130.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02771710980225845,32609.682621833344,8,4,8,8_1,8_1,8_0_0 +10336,2,40.0,0.0,9,111,1400.0,0.0,0.0,37,43,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,2004.0,6,110347,2,1,0,0,1,,220.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,443.276535107854,1400.0,110270.86587062411,1,1,1,2,65.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012696009856697395,55135.432935312056,10,5,10,10_0,10_2,10_0_0 +10337,2,40.0,0.0,9,112,0.0,0.0,0.0,54,48,0.0,0.0,0.0,1090.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,110348,2,1,1,0,1,,292.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,534.396213194395,0.0,41215.049202256494,1,1,1,2,90.0,4,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02644665046136408,22897.24955680916,6,3,6,6_1,6_0,6_0_0 +10338,1,50.0,377.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,805.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,110349,1,1,0,0,2,,0.0,355.0,32,1.0,1.0,2.0,2.0,1.5,2,1,2597.4106091734,0.0,23239.242389556017,0,1,2,3,45.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034639683450342434,15492.82825970401,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +10339,2,56.0,0.0,6,300,780.0,,,77,21,0.0,0.0,,1044.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,,4,110350,2,1,0,0,2,,780.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,140.18088878984636,780.0,54854.4322177643,6,4,0,1,131.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01903219043185915,36569.62147850953,9,5,9,9_1,9_1,9_0_0 +10340,2,51.0,0.0,7,111,1850.0,0.0,0.0,0,46,0.0,79.45963662061344,3154.621005238313,1910.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,1,,5,110351,2,1,2,0,1,,0.0,,32,1.0,1.0,5.0,2.0,1.3,2,1,605.466250721905,1850.0,30349.085995832655,0,4,0,1,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0629343499920317,23345.45076602512,6,3,6,6_1,6_4,6_0_0 +10341,2,22.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,8,,2,110352,2,1,0,1,1,,156.0,524.0,32,1.0,0.0,3.0,2.0,1.3,1,1,209.663361429173,0.0,12914.170264380713,0,1,2,3,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03639413066252758,9933.977126446702,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +10342,2,49.0,0.0,2,111,800.0,0.0,0.0,85,22,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,45.0,2,,2,110353,2,2,0,1,1,,0.0,,42,1.0,0.0,5.0,5.0,2.8,4,2,628.801032148454,800.0,3895.1792363100835,6,1,1,2,99.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.20538207652745724,1391.1354415393157,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +10343,1,37.0,412.0,2,111,420.0,360.0,0.0,54,65,0.0,0.0,716.1842282162656,780.0,0.0,683.461457258324,41,2,1,2,2,1,2,2,2,3,40.0,2,,2,110354,2,1,0,1,1,672.0,0.0,556.0,43,2.0,0.0,2.0,4.0,2.1,2,2,164.993728892535,420.0,17847.80308396109,4,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04370285778763136,8498.95384950528,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10344,2,44.0,0.0,2,120,500.0,0.0,0.0,42,55,0.0,397.2981831030672,852.6002716860306,2324.0,2111.637979504298,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,110355,2,1,3,0,1,,180.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,668.790006530895,500.0,50448.35536461399,1,1,1,2,170.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046066913048073796,28026.86409145222,7,4,7,7_1,7_0,7_0_1 +10345,2,52.0,0.0,5,111,360.0,,,0,55,0.0,0.0,,470.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,110356,1,2,0,0,2,,300.0,,32,1.0,3.0,4.0,2.0,1.5,2,1,114.87262184534592,360.0,19623.322398793127,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023951091993927896,13082.214932528752,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10346,2,30.0,0.0,2,111,500.0,800.0,0.0,0,47,0.0,635.6770929649075,852.6002716860306,1780.0,0.0,1518.8032383518312,20,0,0,0,0,0,0,0,0,0,,1,,2,110357,2,2,3,0,1,,420.0,,22,1.0,0.0,6.0,5.0,3.0,5,5,415.623991158212,500.0,61199.772562276376,0,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029085075409204943,20399.92418742546,5,3,5,5_1,5_4,5_0_1 +10347,2,58.0,0.0,6,111,792.0,0.0,0.0,77,75,0.0,0.0,1350.5188303506725,862.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,110358,2,1,3,0,1,,0.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1043.37497474974,792.0,27648.24280831271,5,7,0,1,48.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03117738823318028,18432.16187220847,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10348,2,40.0,0.0,2,111,2025.0,0.0,0.0,43,43,0.0,0.0,3453.0311003284237,2025.0,0.0,0.0,33,2,2,2,2,1,2,1,2,2,15.0,2,,2,110359,1,2,0,0,2,442.0,0.0,680.0,43,2.0,0.0,2.0,2.0,1.5,2,2,792.483934792624,2025.0,36807.67757640431,1,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05501569599974254,24538.451717602875,7,4,7,7_0,7_4,7_0_1 +10349,2,72.0,0.0,6,111,360.0,,,90,77,0.0,0.0,,776.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,4,110360,2,2,0,0,2,,116.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,89.51917460487854,360.0,55211.33933420813,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014055083780936317,36807.55955613875,9,5,9,9_0,9_2,9_0_0 +10350,2,73.0,0.0,5,111,230.0,675.0,0.0,0,74,0.0,0.0,392.1961249755741,905.0,0.0,1281.4902323593576,10,2,2,2,2,1,2,2,1,0,,2,,3,110361,1,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,836.982164727665,230.0,55503.5341218188,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.016305268021558985,55503.5341218188,10,5,10,10_0,10_4,10_0_0 +10351,2,40.0,0.0,7,111,900.0,752.0,0.0,55,38,0.0,397.2981831030672,1534.680489034855,1952.0,0.0,1427.6750440507212,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,110362,2,1,1,0,1,,360.0,564.0,43,2.0,0.0,5.0,6.0,2.9,3,2,509.571481082206,900.0,65389.05223959478,1,1,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029852091950309887,22547.94904813613,6,3,6,6_1,6_3,6_0_0 +10352,2,53.0,0.0,8,112,720.0,,,81,81,0.0,0.0,,996.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,110363,1,1,0,0,2,,500.0,,43,3.0,0.0,4.0,5.0,3.0,5,4,88.10377625198923,720.0,16308.16709732222,4,4,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061073693570600086,5436.055699107407,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +10353,2,26.0,0.0,1,111,400.0,0.0,0.0,0,56,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,110364,1,2,0,1,2,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,672.331625006996,400.0,6722.888357358435,0,1,3,4,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.059498236284436595,6722.888357358435,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +10354,2,37.0,0.0,7,111,180.0,0.0,0.0,0,34,0.0,0.0,306.936097806971,180.0,0.0,0.0,10,2,2,2,1,2,2,2,2,0,,2,,5,110365,1,3,0,1,2,330.0,0.0,300.0,12,1.0,1.0,1.0,1.0,1.0,1,1,875.863101345198,180.0,33822.8196132445,0,1,2,3,29.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.005321850811323688,33822.8196132445,9,5,9,9_0,9_2,9_0_0 +10355,1,79.0,46.0,1,400,438.0,0.0,0.0,0,86,0.0,238.3789098618403,746.8778379969627,828.0,290.9737373332694,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,110366,2,2,4,0,2,,250.0,350.0,21,0.0,2.0,2.0,2.0,1.5,2,2,1181.85165473668,438.0,30996.706624484526,0,5,2,3,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.026712515301414528,20664.471082989683,5,3,5,5_1,5_0,5_1_0 +10356,0,76.0,0.0,1,111,385.0,922.0,0.0,0,78,0.0,0.0,656.5022091982436,1307.0,0.0,1750.4207322004854,71,0,0,0,0,0,0,0,0,0,,1,,1,110367,2,2,1,0,1,,150.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,273.865876794323,385.0,15357.103382403551,0,5,5,0,70.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0851071955078185,15357.103382403551,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +10357,2,79.0,0.0,6,400,1600.0,0.0,0.0,0,71,0.0,0.0,2728.320869395298,1650.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,110368,2,1,2,0,1,,70.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1797.99510078597,1600.0,14696.826228695216,0,5,0,1,75.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11226913718136049,14696.826228695216,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10358,1,60.0,271.0,2,111,300.0,96.0,0.0,0,42,0.0,0.0,511.56016301161833,396.0,0.0,182.25638860221974,31,2,1,2,1,1,1,2,2,0,,2,,2,110369,2,2,0,1,1,576.0,0.0,342.0,12,1.0,2.0,4.0,1.0,1.0,1,1,391.714152444559,300.0,6060.0,0,4,2,3,72.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06534653465346535,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10359,1,29.0,200.0,2,111,0.0,0.0,1200.0,85,55,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,110370,2,2,0,1,1,,0.0,550.0,42,1.0,0.0,4.0,4.0,2.1,2,2,252.436550920696,0.0,21500.284658352375,6,1,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.055813214525688944,10238.230789691606,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10360,2,88.0,0.0,2,111,299.0,1382.0,0.0,78,78,0.0,0.0,509.8549624682463,1681.0,0.0,2623.732594252788,70,1,2,2,1,1,2,2,2,0,,1,,2,110371,2,1,1,0,1,,320.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,487.786635095886,299.0,27426.010560796647,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.061292180876020626,18284.007040531098,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +10361,0,39.0,0.0,1,111,0.0,0.0,0.0,56,67,0.0,0.0,0.0,736.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,110372,2,1,2,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,549.473080863965,0.0,44866.57629689901,4,1,5,0,60.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01640419351656367,29911.05086459934,8,4,8,8_1,8_4,8_1_0 +10362,2,50.0,0.0,2,111,360.0,120.0,0.0,0,54,0.0,0.0,613.872195613942,480.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,110373,2,2,0,1,2,809.0,120.0,580.0,32,1.0,0.0,4.0,2.0,1.5,2,1,352.618826074562,360.0,27814.79443967359,0,1,2,3,76.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01725700332033922,18543.19629311573,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10364,2,65.0,0.0,6,120,220.0,0.0,0.0,78,78,0.0,13.243272770102239,375.14411954185346,230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110375,2,1,1,0,1,,280.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1354.362584733,220.0,41291.158275352704,5,5,0,1,160.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005570199762046645,27527.438850235136,7,4,7,7_1,7_0,7_0_0 +10365,2,41.0,0.0,2,111,480.0,863.0,0.0,37,52,0.0,119.18945493092015,818.4962608185893,1433.0,0.0,1638.408993372038,43,0,0,0,0,0,0,0,0,2,25.0,1,,2,110376,2,1,2,0,1,,316.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,429.745440771877,480.0,53738.04908637324,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026666394191138892,25589.547183987255,7,4,7,7_1,7_3,7_0_1 +10366,0,47.0,0.0,2,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,3682.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,,2,110377,2,1,2,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1232.49466652421,0.0,21058.014038426998,0,1,5,0,80.0,10,2,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17485029657977377,21058.014038426998,5,3,5,5_1,5_1,5_0_1 +10367,2,38.0,0.0,9,111,480.0,0.0,0.0,0,42,0.0,0.0,818.4962608185893,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,110378,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,315.5400673151,480.0,42710.53986728567,0,1,1,2,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011238443753965708,42710.53986728567,9,5,9,9_0,9_3,9_0_0 +10368,1,27.0,272.0,5,111,0.0,0.0,633.0,0,63,0.0,0.0,398.99147783253284,633.0,0.0,757.531449408443,20,1,2,2,2,1,2,2,2,0,,2,,3,110379,1,2,0,1,2,512.0,0.0,1265.0,32,2.0,0.0,4.0,6.0,3.0999999999999996,4,4,1012.32799767307,0.0,30831.547840688116,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02053091863148809,9945.66059377036,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +10369,2,49.0,0.0,2,111,330.0,330.0,0.0,90,38,0.0,0.0,562.7161793127802,660.0,0.0,626.5063358201304,12,0,0,0,0,0,0,0,0,2,60.0,2,,2,110380,2,1,0,1,1,,550.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,850.517843197232,330.0,73763.80935327314,1,1,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008947477167822186,35125.623501558635,9,5,9,9_0,9_4,9_0_1 +10371,2,31.0,0.0,1,111,1078.0,0.0,0.0,56,62,0.0,0.0,1838.2061857550818,1111.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,110382,1,2,0,0,2,,240.0,364.0,43,2.0,0.0,2.0,2.0,1.5,2,2,368.783543370537,1078.0,17867.69261579855,4,1,2,3,42.0,4,4,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06217926533041304,11911.795077199034,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +10372,1,56.0,350.0,2,111,500.0,200.0,0.0,0,52,0.0,0.0,852.6002716860306,700.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,1,15.0,8,,2,110383,2,1,0,1,1,,200.0,400.0,32,1.0,4.0,4.0,2.0,1.5,2,1,252.149854020883,500.0,11269.560027426136,0,1,2,3,100.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06211422613628631,7513.04001828409,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10373,2,77.0,0.0,7,111,400.0,1200.0,0.0,0,77,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,0,,2,,5,110384,2,1,0,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,808.750603125749,400.0,32819.21826784694,0,5,1,2,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04875192294167237,32819.21826784694,8,4,8,8_0,8_4,8_0_0 +10374,2,34.0,0.0,5,111,386.0,340.0,0.0,55,46,0.0,0.0,658.2074097416156,726.0,0.0,645.4913762995283,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,110385,2,1,0,1,2,,172.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,260.86393988615,386.0,50949.31708873425,1,1,1,2,96.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014249454977690581,24261.579566063927,7,4,7,7_0,7_3,7_0_0 +10375,2,45.0,0.0,5,111,1100.0,,,0,42,0.0,0.0,,1220.0,166.2707070475825,,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,110386,2,2,0,0,2,,240.0,400.0,32,1.0,0.0,4.0,2.0,1.3,1,1,120.41144479842245,1100.0,37789.422065816965,0,1,2,3,113.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03228416666111363,29068.78620447459,8,4,8,8_1,8_3,8_0_0 +10376,2,66.0,0.0,6,111,204.0,0.0,0.0,0,74,0.0,0.0,347.86091084790047,512.0,0.0,0.0,10,2,2,1,2,1,2,2,2,0,,2,,4,110387,1,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1253.78711078246,204.0,33600.09248457298,0,5,0,1,49.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.015238053295093689,33600.09248457298,9,5,9,9_0,9_3,9_0_0 +10377,2,40.0,0.0,9,111,750.0,800.0,0.0,65,45,0.0,0.0,1278.9004075290459,1550.0,0.0,1518.8032383518312,42,0,0,0,0,0,0,0,0,2,2.0,1,2006.0,6,110388,2,1,1,0,1,,400.0,440.0,43,2.0,0.0,4.0,4.0,2.3,3,3,1484.60874192402,750.0,39809.01088551982,1,1,2,3,74.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03893590836651003,17308.265602399922,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10378,2,63.0,0.0,1,221,720.0,1680.0,0.0,75,78,0.0,0.0,1227.744391227884,2400.0,0.0,3189.4868005388457,71,0,0,0,0,0,0,0,0,0,,1,,1,110389,1,1,3,0,2,,560.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,531.804178763971,720.0,17392.29049733109,6,5,0,1,120.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13799217534736374,11594.86033155406,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +10379,2,69.0,0.0,2,112,360.0,865.0,0.0,77,78,0.0,0.0,613.872195613942,1225.0,0.0,1642.2060014679175,50,0,0,0,0,0,0,0,0,0,,2,,2,110390,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1836.60587024644,360.0,35969.95663879568,5,5,0,1,70.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03405619896351964,23979.971092530453,6,3,6,6_0,6_1,6_0_1 +10380,2,79.0,0.0,1,111,600.0,2950.0,0.0,75,74,0.0,0.0,1023.1203260232367,3550.0,0.0,5600.586941422377,44,0,0,0,0,0,0,0,0,0,,1,,1,110391,2,1,2,0,1,,342.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,379.814301187121,600.0,57478.25929442581,5,5,0,1,70.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06176248278180331,38318.8395296172,9,5,9,9_1,9_2,9_1_0 +10381,2,62.0,0.0,1,221,994.0,0.0,0.0,77,21,3164.0485531098047,264.8654554020448,1694.9693401118288,4394.0,277.1178450793042,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,110392,2,2,1,0,1,,740.0,,42,1.0,2.0,10.0,2.0,1.5,2,2,1950.66122367349,994.0,56169.77423067554,6,1,0,1,170.0,1,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07822712589078452,37446.51615378369,9,5,9,9_1,9_1,9_1_0 +10383,2,37.0,0.0,9,112,1000.0,0.0,0.0,68,64,0.0,794.5963662061343,1705.2005433720612,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,110394,2,1,1,0,1,,130.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1074.56789399393,1000.0,41687.75609023707,1,1,1,2,94.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03838057381972418,19851.312423922413,5,3,5,5_1,5_0,5_0_0 +10384,2,51.0,0.0,6,112,659.0,0.0,0.0,0,52,0.0,0.0,1123.7271580821882,719.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,110395,2,1,1,0,1,,246.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,873.384580818067,659.0,23091.77601585414,0,1,1,2,79.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031136626282290095,15394.517343902759,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10385,2,54.0,0.0,2,111,261.0,75.0,0.0,85,62,0.0,0.0,445.057341820108,336.0,0.0,142.38780359548417,50,2,2,2,2,1,2,2,2,2,40.0,2,,2,110396,2,1,0,1,1,503.0,0.0,313.0,42,1.0,0.0,3.0,2.0,1.5,2,2,277.524593781458,261.0,26912.965645509335,6,1,2,3,68.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.012484688771416187,17941.977097006224,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +10386,2,42.0,0.0,9,111,750.0,1500.0,0.0,85,21,0.0,0.0,1278.9004075290459,2250.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,110397,2,1,1,0,1,,600.0,,42,1.0,0.0,6.0,5.0,3.0,5,4,331.138431915547,750.0,10073.247568665043,6,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22336391363983732,3357.7491895550143,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +10387,0,41.0,0.0,2,111,240.0,,,0,52,0.0,0.0,,264.0,33.25414140951651,,50,0,0,0,0,0,0,0,0,1,10.0,1,,2,110398,2,2,0,0,2,,290.0,,32,1.0,0.0,2.0,2.0,1.3,1,1,163.54083963021813,240.0,5767.643586833145,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04577259257189212,4436.648912948573,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +10388,2,64.0,0.0,1,111,540.0,0.0,0.0,0,45,0.0,0.0,920.8082934209131,540.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,15.0,2,,1,110399,2,2,0,0,1,,0.0,500.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1285.35564681959,540.0,22544.855508652214,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023952249318819542,22544.855508652214,6,3,6,6_0,6_4,6_1_0 +10389,2,59.0,0.0,9,120,600.0,,,75,45,0.0,0.0,,726.0,174.58424239996165,,42,0,0,0,0,0,0,0,0,0,,1,2004.0,6,110400,2,2,0,0,1,,480.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,144.28050449935515,600.0,88554.94913153695,5,1,1,2,88.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008198299554343605,59036.63275435797,10,5,10,10_1,10_2,10_0_0 +10390,2,60.0,0.0,2,111,0.0,0.0,0.0,86,38,0.0,0.0,0.0,2082.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,110401,2,1,2,0,1,,338.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,287.431758410342,0.0,54349.683341323806,6,1,1,2,110.0,7,5,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03830749089971217,36233.122227549204,9,5,9,9_1,9_2,9_0_1 +10391,2,73.0,0.0,5,111,660.0,,,77,75,0.0,0.0,,798.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,110402,1,1,0,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,84.74528844862685,660.0,44507.0,5,5,0,1,118.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017929763857370752,29671.333333333332,8,4,8,8_1,8_3,8_0_0 +10393,1,36.0,181.0,9,111,0.0,0.0,0.0,62,54,0.0,0.0,0.0,2562.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,110404,2,1,3,0,1,,375.0,556.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,3,2,211.388227807225,0.0,40229.207423653,1,4,2,3,92.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06368507271395202,13872.140490914831,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +10394,2,31.0,0.0,6,111,0.0,0.0,0.0,54,54,0.0,0.0,0.0,613.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,4,110405,2,1,0,1,1,663.0,0.0,480.0,43,2.0,0.0,2.0,2.0,1.5,2,2,339.504137415019,0.0,10179.048708566877,1,1,2,3,42.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0602217375661134,6786.032472377919,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +10395,2,60.0,0.0,1,112,360.0,1200.0,0.0,0,75,0.0,0.0,613.872195613942,1560.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,110406,2,1,2,0,1,,70.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,898.092522592709,360.0,35350.46615000603,0,5,0,1,90.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044129545375167105,35350.46615000603,9,5,9,9_1,9_1,9_1_0 +10396,2,66.0,0.0,9,221,307.0,,,77,75,0.0,0.0,,2311.0,2776.720807694628,,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,110407,2,1,0,0,2,,273.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,70.55426115301253,307.0,74085.0421350141,5,5,0,1,158.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031193881158741683,49390.0280900094,10,5,10,10_1,10_1,10_0_0 +10397,1,48.0,253.0,7,111,0.0,,,0,56,0.0,0.0,,419.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,110408,2,2,0,0,1,,0.0,460.0,32,1.0,0.0,2.0,2.0,1.3,1,1,185.0707537464358,0.0,5614.915632754342,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07462267065168059,4319.165871349494,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10398,2,68.0,0.0,1,111,500.0,0.0,0.0,86,78,1582.0242765549024,0.0,852.6002716860306,2360.0,498.81212114274757,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,110409,2,2,0,1,2,,480.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,971.416814045582,500.0,19887.69162654794,6,5,0,1,80.0,7,6,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11866636130105981,13258.461084365294,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +10399,2,76.0,0.0,5,111,160.0,0.0,0.0,0,74,3164.0485531098047,0.0,272.8320869395298,3220.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,110410,2,2,2,0,2,,160.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,583.185304277472,160.0,64463.24881979399,0,5,0,1,140.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04995094195456174,64463.24881979399,10,5,10,10_1,10_4,10_0_0 +10400,1,52.0,150.0,1,112,672.0,0.0,0.0,0,85,0.0,0.0,1145.894765146025,737.0,90.06329965077386,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110411,2,3,4,0,2,,120.0,288.0,11,0.0,0.0,4.0,1.0,1.0,1,1,2056.23843569177,672.0,5889.871346615906,0,7,2,3,70.0,9,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1251300676411976,5889.871346615906,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +10401,1,48.0,270.0,5,111,264.0,0.0,0.0,0,68,0.0,0.0,450.1729434502241,264.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,15.0,2,,3,110412,1,3,0,1,1,,480.0,28.0,12,1.0,0.0,1.0,1.0,1.0,1,1,525.609493944659,264.0,9776.12016048975,0,1,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.027004578060216323,9776.12016048975,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10402,2,57.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,336.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,110413,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1283.37330737854,0.0,8950.924805318708,0,7,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03753802063004107,8950.924805318708,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +10403,2,66.0,0.0,6,222,676.0,0.0,0.0,0,86,2109.365702073203,0.0,1152.7155673195134,2676.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,110414,2,1,1,0,1,,92.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1271.35371316655,676.0,18855.415492424352,0,5,0,1,185.0,1,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1419220913522246,18855.415492424352,5,3,5,5_1,5_0,5_0_0 +10404,2,63.0,0.0,5,221,750.0,800.0,0.0,0,77,0.0,0.0,1278.9004075290459,1550.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,3,110415,2,3,3,0,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1151.93140541014,750.0,21094.833005021297,0,5,0,1,60.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0734777089551288,21094.833005021297,5,3,5,5_1,5_1,5_0_0 +10405,2,88.0,0.0,2,111,175.0,90.0,0.0,72,77,0.0,0.0,298.4100950901107,265.0,0.0,170.865364314581,70,0,0,0,0,0,0,0,0,0,,2,,2,110416,2,1,0,1,1,,0.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,980.209307642869,175.0,38004.435891616406,5,5,0,1,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006972870239562159,25336.290594410937,7,4,7,7_0,7_4,7_0_1 +10406,1,61.0,71.0,6,111,1000.0,0.0,0.0,54,78,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,110417,2,1,2,0,1,,450.0,430.0,42,2.0,0.0,3.0,4.0,2.5,4,4,1160.4009675898,1000.0,32332.58924631093,4,5,2,3,85.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030928546810215566,12933.035698524372,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +10407,2,51.0,0.0,9,111,757.0,1610.0,0.0,0,31,0.0,0.0,1290.8368113326503,2367.0,0.0,3056.59151718306,10,0,0,0,0,0,0,0,0,2,7.0,1,2007.0,6,110418,2,1,1,0,1,,95.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,1543.32453756804,757.0,64132.95202578974,0,1,0,1,200.0,5,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036907703843854875,64132.95202578974,10,5,10,10_1,10_2,10_0_0 +10408,2,54.0,0.0,6,112,1300.0,0.0,0.0,85,13,2003.897416969543,0.0,2216.7607063836795,3380.0,249.40606057137379,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,110419,1,1,2,0,2,,450.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,961.205367376601,1300.0,45196.520066961406,6,1,0,1,100.0,8,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07478451869728739,22598.260033480703,6,3,6,6_1,6_1,6_0_0 +10409,2,60.0,0.0,2,111,300.0,960.0,0.0,74,43,0.0,0.0,511.56016301161833,1260.0,0.0,1822.5638860221975,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,110420,2,1,1,0,1,,200.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,377.28248416478,300.0,62152.960872437005,5,1,1,2,125.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020272565977766197,41435.307248291334,9,5,9,9_1,9_3,9_0_1 +10410,2,42.0,0.0,2,111,180.0,0.0,0.0,0,46,0.0,0.0,306.936097806971,180.0,0.0,0.0,31,2,2,2,2,1,2,1,2,3,110.0,2,,2,110421,1,3,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,793.758237323633,180.0,35296.6518607584,0,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005099633832412241,35296.6518607584,9,5,9,9_0,9_4,9_0_1 +10411,0,83.0,0.0,1,112,350.0,0.0,0.0,0,72,1265.6194212439218,0.0,596.8201901802214,1580.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,110422,1,1,2,0,2,,65.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,344.158344476295,350.0,10541.590438806405,0,5,5,0,110.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14988250674050083,10541.590438806405,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +10412,0,52.0,0.0,2,111,840.0,0.0,0.0,52,53,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,1.0,2,,2,110423,2,1,0,1,1,,0.0,,43,3.0,0.0,3.0,5.0,2.5999999999999996,3,3,235.587644379232,840.0,62350.37236402351,1,1,5,0,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013472253142223162,23980.912447701354,6,3,6,6_0,6_4,6_0_1 +10413,2,40.0,0.0,5,112,826.0,0.0,0.0,46,46,0.0,0.0,1408.4956488253226,826.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,110424,2,2,3,0,1,,223.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,3167.35379627149,826.0,52201.32076618885,1,1,1,2,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015823354426216085,22696.226420082112,6,3,6,6_1,6_1,6_0_0 +10414,1,32.0,305.0,9,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1624.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,110425,2,1,1,0,1,,413.0,690.0,32,1.0,0.0,4.0,4.0,1.9,1,1,1900.58052453759,0.0,27829.730613664455,0,1,2,3,118.0,7,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.058354858785539684,14647.226638770766,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +10415,1,43.0,64.0,2,112,940.0,0.0,0.0,0,85,0.0,0.0,1602.8885107697374,1036.0,133.01656563806603,0.0,71,2,2,1,2,1,1,2,2,0,,1,,2,110426,1,3,4,0,1,,250.0,450.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1192.29886307475,940.0,12525.247101052802,0,7,2,3,40.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,1,0.08271293904556339,12525.247101052802,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +10416,1,34.0,321.0,2,111,0.0,0.0,0.0,81,47,0.0,0.0,0.0,1055.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110427,1,1,0,1,2,44.0,0.0,292.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1289.69505520038,0.0,17883.64652653703,4,4,2,3,62.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05899244309232548,9935.359181409462,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10417,1,34.0,117.0,2,111,500.0,200.0,0.0,85,54,0.0,0.0,852.6002716860306,700.0,0.0,379.7008095879578,60,2,1,2,2,1,2,2,2,2,15.0,2,,2,110428,2,1,0,1,1,588.0,0.0,368.0,42,1.0,0.0,3.0,7.0,2.9999999999999996,2,2,238.635595497328,500.0,47200.0902502019,6,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01483048011750371,15733.36341673397,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +10418,2,51.0,0.0,2,111,500.0,530.0,0.0,64,67,0.0,0.0,852.6002716860306,1030.0,0.0,1006.2071454080882,71,2,2,2,2,1,2,2,2,2,5.0,2,,2,110429,1,3,0,1,1,509.0,200.0,333.0,43,5.0,2.0,4.0,6.0,3.3,5,3,257.76030608941,500.0,29945.774328099586,1,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03439550397711708,9074.477069121087,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +10419,2,40.0,0.0,7,111,800.0,0.0,0.0,56,65,0.0,0.0,1364.160434697649,1000.0,277.1178450793042,0.0,42,2,2,1,2,1,2,2,2,2,15.0,1,,5,110430,2,2,3,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,456.47713223223,800.0,43317.36998598331,1,1,1,2,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.023085427400684328,15470.489280708325,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +10420,2,43.0,0.0,9,112,2200.0,0.0,0.0,85,38,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2012.0,6,110431,2,2,1,0,1,,400.0,1500.0,42,1.0,0.0,4.0,4.0,2.1,3,2,2096.27604254116,2200.0,71291.76782686487,6,1,2,3,95.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030859102909929163,33948.460869935654,9,5,9,9_1,9_1,9_0_0 +10421,2,64.0,0.0,5,112,437.0,0.0,0.0,0,56,2214.833987176863,0.0,745.1726374535907,2597.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,110432,2,1,2,0,1,,308.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,721.583327371046,437.0,35939.45532688879,0,1,0,1,77.0,9,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07226041620216223,23959.636884592528,6,3,6,6_1,6_0,6_0_0 +10422,2,37.0,0.0,2,111,750.0,200.0,0.0,0,46,0.0,0.0,1278.9004075290459,950.0,0.0,379.7008095879578,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,110433,2,1,0,1,1,,240.0,520.0,12,1.0,1.0,2.0,1.0,1.0,1,1,236.123016034446,750.0,18217.76235950589,0,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0521469092225971,18217.76235950589,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +10423,1,31.0,420.0,2,111,350.0,200.0,0.0,56,56,0.0,0.0,596.8201901802214,550.0,0.0,379.7008095879578,60,2,1,2,2,1,2,2,2,0,,2,,2,110434,2,3,0,1,1,660.0,180.0,393.0,43,2.0,0.0,4.0,4.0,2.1,2,2,276.27235353228,350.0,7008.0,1,1,2,3,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07848173515981735,3337.142857142857,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10424,2,57.0,0.0,2,111,1200.0,2500.0,0.0,46,31,0.0,0.0,2046.2406520464733,3700.0,0.0,4746.260119849472,10,0,0,0,0,0,0,0,0,1,5.0,1,,2,110435,2,1,3,0,1,,531.0,,43,2.0,1.0,8.0,4.0,2.5,4,4,1140.04504309287,1200.0,247479.31324769807,1,1,0,1,180.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014950744575150528,98991.72529907923,10,5,10,10_1,10_3,10_0_1 +10425,2,48.0,0.0,2,111,170.0,0.0,0.0,0,52,0.0,0.0,289.8840923732504,240.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,110436,1,2,0,0,2,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1756.68309647922,170.0,17029.618764309413,0,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014093092941281268,17029.618764309413,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10426,0,32.0,0.0,7,112,0.0,,,42,55,0.0,0.0,,829.0,0.0,,60,0,0,0,0,0,0,0,0,2,30.0,2,,5,110437,1,1,0,0,2,,117.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,89.0463586007787,0.0,24136.177784554562,1,1,5,0,65.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03434678048031702,13408.987658085867,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +10427,2,56.0,0.0,2,111,300.0,0.0,0.0,62,65,0.0,0.0,511.56016301161833,300.0,0.0,0.0,70,1,2,2,1,1,2,2,2,2,20.0,2,,2,110438,1,1,0,1,1,768.0,0.0,315.0,43,2.0,1.0,3.0,2.0,1.5,2,2,249.099975156162,300.0,37244.824226585915,1,1,2,3,45.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.008054810466412552,24829.882817723945,7,4,7,7_0,7_3,7_0_1 +10428,2,51.0,0.0,1,300,842.0,0.0,0.0,0,67,0.0,66.2163638505112,1435.7788575192756,927.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,110439,2,2,1,0,1,,240.0,400.0,32,1.0,0.0,4.0,3.0,2.0,3,1,1412.29254156561,842.0,16752.903542301225,0,1,2,3,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05533369171853208,8376.451771150612,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +10429,2,45.0,0.0,2,111,540.0,210.0,0.0,0,46,0.0,0.0,920.8082934209131,750.0,0.0,398.6858500673557,43,0,0,0,0,0,0,0,0,3,45.0,2,,2,110440,2,2,0,1,1,,0.0,646.0,32,2.0,0.0,3.0,2.0,1.5,2,2,785.064152503383,540.0,29628.40743913571,0,1,3,4,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025313544156589953,19752.271626090474,5,3,5,5_0,5_4,5_0_1 +10430,2,73.0,0.0,7,111,450.0,1000.0,0.0,74,77,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,2,,5,110441,2,1,0,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1657.0758830052,450.0,53131.573040971896,5,5,0,1,90.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027290741022891352,35421.04869398126,9,5,9,9_0,9_2,9_0_0 +10431,1,46.0,116.0,6,111,408.0,860.0,0.0,78,56,0.0,0.0,695.7218216958009,1268.0,0.0,1632.7134812282186,71,0,0,0,0,0,0,0,0,0,,1,,4,110442,2,1,1,0,1,,430.0,515.0,42,1.0,4.0,4.0,5.0,2.4,2,2,261.237762722647,408.0,23114.427312980602,7,1,2,3,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0548575131380355,9631.011380408585,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +10432,2,68.0,0.0,2,120,1200.0,,,0,77,0.0,0.0,,1310.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,2,110443,2,2,0,0,2,,500.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,104.90314915300236,1200.0,17014.22523782702,0,5,0,1,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07699439625893346,17014.22523782702,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +10433,1,67.0,83.0,2,111,254.0,1800.0,0.0,0,77,0.0,0.0,433.12093801650354,2054.0,0.0,3417.30728629162,70,0,0,0,0,0,0,0,0,0,,1,,2,110444,2,3,2,0,2,,220.0,274.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1351.57200192639,254.0,11209.100526903298,0,5,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.18324396280237948,11209.100526903298,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +10434,2,66.0,0.0,2,111,210.0,210.0,0.0,0,77,0.0,0.0,358.0921141081328,420.0,0.0,398.6858500673557,70,0,0,0,0,0,0,0,0,0,,2,,2,110445,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,308.575581008909,210.0,16665.146781131087,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02520229827651683,16665.146781131087,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +10435,2,52.0,0.0,5,111,774.0,1647.0,0.0,56,38,0.0,0.0,1319.8252205699753,3070.0,0.0,3126.8361669568326,41,0,0,0,0,0,0,0,0,4,120.0,1,,3,110446,2,1,2,0,1,,416.0,,43,4.0,0.0,6.0,5.0,3.0,5,5,357.199407651253,774.0,111364.23231329308,1,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02756719941608709,37121.41077109769,9,5,9,9_1,9_3,9_0_0 +10436,2,42.0,0.0,2,111,1200.0,0.0,0.0,85,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,1,2,2,2,1,1,2,2,3,50.0,2,,2,110447,2,3,0,1,1,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,764.771845264958,1200.0,50898.703457820324,6,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023576239048887327,24237.477837057297,7,4,7,7_0,7_4,7_0_1 +10437,2,84.0,0.0,1,120,575.0,89.0,0.0,77,77,1684.3285131054527,0.0,980.4903124389351,2261.0,0.0,168.96686026664122,50,0,0,0,0,0,0,0,0,0,,1,,1,110448,2,2,1,0,1,,430.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1072.32811613602,575.0,25505.594213122422,5,5,0,1,100.0,0,0,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08864721915934559,17003.729475414948,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10438,1,38.0,300.0,2,111,300.0,200.0,0.0,0,56,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,41,2,2,2,1,1,2,2,2,0,,2,,2,110449,1,2,0,1,1,1236.0,300.0,289.0,32,1.0,0.0,3.0,2.0,1.3,1,1,274.73825679415,300.0,8121.1378915679,0,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.061567726921512474,6247.029147359923,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10439,2,78.0,0.0,2,111,373.0,1207.0,0.0,86,75,0.0,66.2163638505112,636.0398026777788,1630.0,0.0,2291.4943858633255,70,0,0,0,0,0,0,0,0,0,,1,,2,110450,2,1,1,0,1,,455.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,534.158908711591,373.0,51570.97734434949,5,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03160692474598981,34380.651562899664,9,5,9,9_1,9_4,9_0_1 +10440,2,48.0,0.0,7,111,800.0,,,55,22,0.0,0.0,,860.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,110451,2,1,0,0,2,,324.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,136.67010819590652,800.0,77305.08178494127,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011124753769648358,42947.267658300705,9,5,9,9_1,9_2,9_0_0 +10441,1,47.0,310.0,1,400,300.0,0.0,0.0,0,63,0.0,0.0,511.56016301161833,390.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110452,1,1,1,0,1,,330.0,422.0,12,1.0,2.0,5.0,1.0,1.0,1,1,1192.94518072408,300.0,5351.0,0,4,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0728835731638946,5351.0,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +10442,1,38.0,168.0,5,111,600.0,0.0,0.0,0,62,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,2,1,2,2,1,2,2,2,1,15.0,2,,3,110453,1,2,0,1,1,,720.0,380.0,32,1.0,0.0,3.0,2.0,1.3,1,1,308.590769068985,600.0,14391.194184828144,0,1,2,3,100.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.04169216204674296,11070.149372944727,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +10443,2,78.0,0.0,2,111,300.0,207.0,0.0,78,75,0.0,0.0,511.56016301161833,507.0,0.0,392.99033792353634,44,0,0,0,0,0,0,0,0,0,,2,,2,110454,2,2,0,1,1,,350.0,430.0,41,0.0,3.0,3.0,2.0,1.5,2,2,285.745366518178,300.0,27042.552686576742,5,5,2,3,61.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01874823009041089,18028.36845771783,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10444,2,84.0,0.0,5,111,0.0,910.0,0.0,0,75,0.0,0.0,0.0,2285.0,0.0,1727.638683625208,33,2,2,2,2,2,2,2,1,0,,2,,3,110455,1,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1681.88365781448,0.0,19204.71090196273,0,5,0,1,53.0,9,7,9,0,1,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.11898122349587006,19204.71090196273,5,3,5,5_0,5_3,5_0_0 +10445,2,67.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,363.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,110456,2,3,0,1,1,720.0,500.0,235.0,11,0.0,2.0,3.0,1.0,1.0,1,1,385.61416128914,0.0,21537.560968276208,0,5,2,3,55.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.016854276142720226,21537.560968276208,6,3,6,6_0,6_2,6_0_1 +10447,2,47.0,0.0,2,111,480.0,0.0,0.0,0,46,0.0,0.0,818.4962608185893,480.0,0.0,0.0,50,1,2,2,1,1,2,2,2,2,60.0,2,,2,110458,2,1,0,1,1,,0.0,638.0,12,1.0,2.0,4.0,1.0,1.0,1,1,247.324350982782,480.0,35079.29796894991,0,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013683284096074761,35079.29796894991,9,5,9,9_0,9_4,9_0_1 +10448,1,31.0,176.0,7,221,1176.0,0.0,0.0,55,62,0.0,0.0,2005.315839005544,1236.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,110459,2,2,5,0,1,,584.0,459.0,43,2.0,1.0,4.0,4.0,2.1,2,2,799.776344446007,1176.0,33772.0,4,1,2,3,82.0,1,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.036598365509889846,16081.904761904761,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +10449,2,56.0,0.0,2,112,0.0,0.0,0.0,85,52,0.0,0.0,0.0,1303.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,110460,2,2,5,0,1,,125.0,350.0,42,1.0,2.0,3.0,2.0,1.5,2,2,1121.9934330302,0.0,35142.97087371732,7,1,2,3,60.0,5,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037077115781764654,23428.64724914488,6,3,6,6_1,6_0,6_0_1 +10451,0,44.0,0.0,2,111,340.0,,,0,43,0.0,0.0,,415.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,110462,1,1,0,0,2,,408.0,,32,1.0,1.0,4.0,2.0,1.3,1,1,125.85018533496495,340.0,5350.233922890207,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07756670193885955,4115.56455606939,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +10452,2,41.0,0.0,1,111,600.0,0.0,0.0,0,62,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,110463,2,2,0,0,2,,0.0,532.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1095.86901068631,600.0,26559.18291837658,0,1,2,3,75.0,7,5,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02485016207118853,26559.18291837658,7,4,7,7_0,7_2,7_1_0 +10453,0,75.0,0.0,2,111,720.0,3000.0,0.0,75,34,0.0,0.0,1227.744391227884,3720.0,0.0,5695.512143819367,10,2,2,1,2,1,2,2,2,0,,1,,2,110464,1,2,2,0,2,,350.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,713.971631773673,720.0,70680.30159721813,5,5,0,1,250.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,1,0,0,0.052631354365166055,47120.201064812085,10,5,10,10_1,10_4,10_0_1 +10454,2,60.0,0.0,5,111,328.0,0.0,0.0,75,77,0.0,0.0,559.3057782260361,328.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,110465,2,1,0,1,1,1220.0,0.0,400.0,41,0.0,2.0,4.0,2.0,1.5,2,2,756.442099096595,328.0,20280.7594013154,5,7,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016172964409741288,13520.5062675436,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +10455,1,58.0,200.0,6,111,204.0,,,0,54,0.0,0.0,,456.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,110466,2,2,0,0,2,,120.0,320.0,32,1.0,1.0,3.0,2.0,1.5,2,1,107.20750581764014,204.0,6642.424207395696,0,4,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06864963539851733,4428.2828049304635,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +10456,2,56.0,0.0,9,112,1360.0,0.0,0.0,0,54,0.0,0.0,2319.072738986003,1360.0,0.0,0.0,42,2,2,1,2,1,2,2,2,2,20.0,1,2004.0,6,110467,2,1,2,0,1,,276.0,770.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1651.98687054863,1360.0,31793.0,0,1,2,3,75.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04277671185481081,31793.0,8,4,8,8_1,8_0,8_0_0 +10457,2,54.0,0.0,6,111,1500.0,0.0,0.0,52,68,0.0,1165.408003768997,2557.8008150580918,2450.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,110468,2,1,2,0,1,,1000.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,987.924881628031,1500.0,68993.35478547661,1,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03551066631877619,34496.677392738304,9,5,9,9_1,9_3,9_0_0 +10458,2,82.0,0.0,1,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1764.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,110469,2,1,2,0,1,,237.0,,11,0.0,0.0,9.0,1.0,1.0,1,1,923.128203159052,0.0,32171.96393130142,0,5,0,1,300.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05483034867771104,32171.96393130142,8,4,8,8_1,8_0,8_1_0 +10459,0,75.0,0.0,2,222,274.0,0.0,0.0,0,77,2197.9590615602774,0.0,467.22494888394476,2483.0,173.19865317456512,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,110470,2,2,2,0,1,,388.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,1295.62914486146,274.0,40304.808408955825,0,5,0,1,71.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06160555273718337,26869.872272637218,7,4,7,7_1,7_0,7_0_1 +10460,1,30.0,178.0,6,112,0.0,0.0,0.0,69,21,0.0,0.0,0.0,1138.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,110471,2,3,0,0,1,,923.0,583.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1101.36589247184,0.0,9440.077459712229,1,1,2,3,56.0,7,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12054985828841819,5244.487477617905,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +10461,2,31.0,0.0,2,111,420.0,0.0,0.0,0,37,0.0,0.0,716.1842282162656,420.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,,2,110472,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,614.809061939963,420.0,40568.895692665246,0,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010352758999943272,25355.55980791578,7,4,7,7_0,7_4,7_0_1 +10462,2,52.0,0.0,2,111,600.0,320.0,0.0,52,63,0.0,0.0,1023.1203260232367,920.0,0.0,607.5212953407324,50,0,0,0,0,0,0,0,0,0,,2,,2,110473,2,3,0,1,1,960.0,0.0,493.0,43,2.0,1.0,3.0,3.0,2.0,3,2,813.915429963944,600.0,38230.66874320971,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02406444957004328,19115.334371604855,5,3,5,5_0,5_4,5_0_1 +10463,2,91.0,0.0,2,111,420.0,,,0,86,0.0,0.0,,552.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,110474,1,3,0,0,2,,400.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,83.9492775382804,420.0,14412.354651162792,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03830047298728279,14412.354651162792,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +10464,2,74.0,0.0,5,112,360.0,960.0,0.0,75,77,0.0,0.0,613.872195613942,1320.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,0,,1,,3,110475,2,1,2,0,2,,240.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,932.840440769412,360.0,38967.17420207396,5,5,0,1,100.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03387466571619518,25978.116134715976,7,4,7,7_1,7_1,7_0_0 +10465,2,74.0,0.0,1,120,600.0,0.0,0.0,0,71,1476.555991451242,0.0,1023.1203260232367,2060.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,110476,2,2,3,0,1,,0.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1940.55763109413,600.0,27223.911927933794,0,5,0,1,170.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07566877256483791,27223.911927933794,7,4,7,7_1,7_1,7_1_0 +10466,2,75.0,0.0,1,111,842.0,2320.0,0.0,72,90,0.0,0.0,1435.7788575192756,3162.0,0.0,4404.529391220311,70,0,0,0,0,0,0,0,0,0,,2,,1,110477,2,2,0,0,2,,0.0,1831.0,41,0.0,2.0,6.0,2.0,1.5,2,2,1099.41816522563,842.0,161180.5273541112,5,5,2,3,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01961775440188959,107453.6849027408,10,5,10,10_0,10_4,10_1_0 +10467,2,60.0,0.0,5,111,540.0,,,0,52,0.0,0.0,,714.0,241.09252521899464,,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,110478,2,1,0,0,2,,200.0,488.0,12,1.0,2.0,3.0,1.0,1.0,1,1,93.66414177236153,540.0,38992.0,0,1,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018311448502256873,38992.0,9,5,9,9_1,9_2,9_0_0 +10468,1,92.0,94.0,1,111,132.0,65.0,0.0,0,78,0.0,0.0,225.08647172511206,803.0,0.0,123.40276311608629,71,0,0,0,0,0,0,0,0,0,,2,,1,110479,2,1,0,1,1,,0.0,334.0,11,0.0,4.0,4.0,1.0,1.0,1,1,75.4571283091472,132.0,15994.612831027192,0,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05020440372537798,15994.612831027192,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +10469,2,70.0,0.0,1,112,210.0,900.0,0.0,78,78,0.0,0.0,358.0921141081328,1110.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,1,110480,2,1,1,0,1,,220.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,286.542808826537,210.0,15558.497790439764,5,5,0,1,60.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07134364865752413,10372.331860293176,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +10470,2,25.0,0.0,8,111,210.0,,,42,56,0.0,0.0,,463.0,350.5540740253198,,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,110481,2,2,0,0,2,,400.0,500.0,43,2.0,0.0,5.0,3.0,1.8,2,2,120.39639531442879,210.0,32666.36743839549,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014173599218620119,18147.981910219714,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10471,2,63.0,0.0,9,111,650.0,,,0,75,0.0,0.0,,820.0,235.55016831740858,,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,110482,2,1,0,0,2,,150.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,111.83337685436422,650.0,31069.430569351105,0,5,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026392501728335536,31069.430569351105,8,4,8,8_1,8_2,8_0_0 +10472,2,34.0,0.0,1,120,1200.0,0.0,0.0,52,62,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,110483,2,1,1,0,1,,690.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1450.74654960034,1200.0,48545.48093802189,1,1,1,2,134.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024719087684640356,32363.653958681258,8,4,8,8_1,8_0,8_1_0 +10473,0,38.0,0.0,5,111,400.0,2500.0,0.0,85,42,0.0,0.0,682.0802173488245,2900.0,0.0,4746.260119849472,20,1,2,2,2,1,2,2,2,0,,8,,3,110484,2,2,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,324.375049283885,400.0,11428.360450747296,7,1,5,0,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.2537546844534791,6349.089139304053,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +10474,2,51.0,0.0,7,111,800.0,,,52,33,0.0,0.0,,926.0,174.58424239996165,,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,110485,2,1,0,0,1,,450.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,105.53568121405718,800.0,81778.08206320077,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011323327432457477,45432.26781288932,10,5,10,10_0,10_2,10_0_0 +10475,2,75.0,0.0,1,111,539.0,112.0,0.0,74,74,2047.1394138620435,0.0,919.1030928775409,2592.0,0.0,212.63245336925638,20,1,2,2,2,2,2,2,1,0,,1,,1,110486,2,2,2,0,1,,243.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,115.905395757078,539.0,70045.64569964827,5,5,0,1,110.0,9,7,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03700444151966773,46697.09713309885,10,5,10,10_1,10_3,10_1_0 +10476,1,25.0,270.0,2,111,390.0,0.0,0.0,0,65,0.0,0.0,665.0282119151038,454.0,88.67771042537734,0.0,43,2,1,2,2,1,2,2,2,0,,2,,2,110487,2,3,0,1,1,564.0,0.0,327.0,22,3.0,0.0,3.0,3.0,2.0,3,3,415.056311890184,390.0,32650.605665192,0,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.013904795661539538,16325.302832596,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +10477,2,32.0,0.0,2,111,511.0,200.0,0.0,52,64,0.0,0.0,871.3574776631233,711.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,110488,2,2,0,1,1,726.0,0.0,412.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1677.80241856274,511.0,23859.80103079733,1,4,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029799074983159667,13255.445017109629,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +10478,2,52.0,0.0,1,111,630.0,0.0,0.0,54,47,0.0,765.4611661119094,1074.2763423243985,1388.0,249.40606057137379,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,110489,2,2,1,0,1,,300.0,160.0,43,2.0,4.0,4.0,2.0,1.5,2,2,218.934182154569,630.0,44373.140642780934,1,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03128018391066519,29582.093761853957,8,4,8,8_1,8_3,8_1_0 +10479,2,72.0,0.0,5,111,600.0,,,0,77,0.0,0.0,,650.0,69.27946126982604,,42,0,0,0,0,0,0,0,0,0,,2,,3,110490,2,1,0,0,2,,200.0,529.0,11,0.0,0.0,4.0,1.0,1.0,1,1,124.87001944227815,600.0,21333.432210429633,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030468608782145405,21333.432210429633,6,3,6,6_0,6_2,6_0_0 +10480,2,61.0,0.0,6,111,400.0,1000.0,0.0,0,22,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,4,110491,2,2,3,0,1,,400.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,268.873184628936,400.0,4339.990587426309,0,1,0,1,120.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.32258134477435,4339.990587426309,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10481,2,55.0,0.0,2,111,330.0,91.0,0.0,52,47,0.0,0.0,562.7161793127802,421.0,0.0,172.7638683625208,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,110492,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,2080.66498063633,330.0,52882.8190568211,1,1,1,2,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.007960997683343003,35255.2127045474,9,5,9,9_0,9_3,9_0_1 +10482,2,55.0,0.0,9,111,420.0,,,56,21,0.0,0.0,,552.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,110493,2,1,0,0,2,,200.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,97.62405209140432,420.0,22516.076024573515,1,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024515817027689915,15010.717349715676,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +10483,1,29.0,120.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,962.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,110494,1,2,0,0,1,,0.0,280.0,12,1.0,0.0,3.0,1.0,1.0,1,1,359.791274045249,0.0,11351.039171383673,0,1,2,3,60.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08474994980417584,11351.039171383673,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10484,0,54.0,0.0,1,300,900.0,0.0,0.0,77,64,0.0,0.0,1534.680489034855,975.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,2,75.0,1,,1,110495,2,2,1,0,1,,130.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,610.204917322615,900.0,33635.60558482065,5,1,5,0,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028987139760016864,22423.737056547103,6,3,6,6_1,6_0,6_1_0 +10485,1,25.0,254.0,9,111,426.0,0.0,0.0,0,46,0.0,0.0,726.415431476498,426.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,12.0,2,2005.0,6,110496,1,1,0,0,1,,114.0,348.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1824.33645320576,426.0,25786.098976021814,0,1,2,3,38.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.016520529157827722,25786.098976021814,7,4,7,7_0,7_2,7_0_0 +10486,2,54.0,0.0,1,112,1100.0,0.0,0.0,85,63,0.0,1589.1927324122687,1875.7205977092674,2370.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110497,1,2,1,0,2,,613.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,1638.09942791983,1100.0,25356.0,6,4,1,2,80.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0934690014197823,16904.0,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +10487,2,44.0,0.0,1,112,850.0,0.0,0.0,85,46,3796.8582637317654,0.0,1449.420461866252,4450.0,0.0,0.0,31,2,2,1,2,1,2,2,2,4,90.0,1,,1,110498,1,1,3,0,1,,400.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,484.859455534203,850.0,30588.13248793886,7,1,1,2,250.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.14548125818909244,12745.055203307858,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +10488,0,29.0,0.0,5,111,560.0,,,63,21,0.0,0.0,,780.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,0,,1,,3,110499,2,1,0,0,2,,650.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,119.47815639012325,560.0,17872.149653656343,4,4,5,0,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043643322997825564,8510.547454122068,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10489,2,84.0,0.0,1,111,0.0,0.0,0.0,78,74,0.0,0.0,0.0,1211.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,110500,2,3,3,0,2,,173.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1541.67625908883,0.0,53352.29562070413,5,5,0,1,59.0,5,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.022698179823588585,35568.19708046942,9,5,9,9_1,9_2,9_1_0 +10490,2,48.0,0.0,8,111,1100.0,,,0,46,0.0,0.0,,1100.0,0.0,,20,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,110501,1,2,0,0,2,,250.0,653.0,32,1.0,0.0,3.0,2.0,1.5,2,2,153.82221518899013,1100.0,40141.203985565946,0,1,2,3,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02740326374852982,26760.802657043965,7,4,7,7_1,7_3,7_0_0 +10491,2,74.0,0.0,5,111,316.0,0.0,0.0,0,75,0.0,0.0,538.8433717055714,316.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,110502,2,1,0,1,1,,0.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,1042.82021895099,316.0,43490.28994814204,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007265989727288537,43490.28994814204,10,5,10,10_0,10_4,10_0_0 +10492,2,69.0,0.0,6,211,700.0,,,75,77,0.0,0.0,,700.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,4,110503,2,1,0,0,2,,700.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,124.6346294470269,700.0,26442.18489554643,5,5,0,1,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026472850211326473,17628.12326369762,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10493,1,43.0,196.0,6,111,160.0,,,0,67,0.0,0.0,,280.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,4,110504,2,3,0,0,2,,180.0,204.0,12,1.0,0.0,1.0,1.0,1.0,1,1,144.7714784643564,160.0,6354.905681268247,0,4,2,3,26.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04406044936675134,6354.905681268247,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10495,2,75.0,0.0,5,111,300.0,0.0,0.0,77,75,0.0,59.594727465460075,511.56016301161833,3810.0,4801.066665998945,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,110506,2,2,2,0,1,,199.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,812.353012169636,300.0,33529.80806425043,5,5,0,1,124.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.113630235899329,22353.205376166952,6,3,6,6_1,6_2,6_0_0 +10496,1,26.0,295.0,9,111,888.0,,,0,54,0.0,0.0,,1392.0,698.3369695998466,,42,2,2,2,2,1,2,1,2,0,,1,2004.0,6,110507,1,1,0,0,2,,600.0,,22,2.0,1.0,6.0,4.0,2.5,4,4,125.8777170935276,888.0,13141.454042176003,0,1,1,2,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.10592435171424214,5256.581616870401,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +10497,2,65.0,0.0,1,120,500.0,1700.0,0.0,85,75,0.0,0.0,852.6002716860306,2200.0,0.0,3227.4568814976415,70,2,2,1,2,1,2,2,2,0,,1,,1,110508,1,1,2,0,1,,550.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,213.918768517883,500.0,26032.320123319398,6,5,0,1,95.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08451033137185764,17354.88008221293,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10498,2,54.0,0.0,1,300,1260.0,1630.0,0.0,62,64,0.0,0.0,2148.552684648797,2970.0,110.84713803172167,3094.561598141856,50,2,2,2,2,1,2,2,2,0,,1,,1,110509,2,1,2,0,1,,290.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,236.109247721633,1260.0,48672.239949396186,1,1,0,1,100.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06102040923302206,32448.159966264124,8,4,8,8_1,8_0,8_1_0 +10499,2,81.0,0.0,2,112,500.0,0.0,0.0,0,78,1687.4925616585624,0.0,852.6002716860306,2100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,110510,2,1,2,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,982.86078728436,500.0,20887.822577488078,0,5,0,1,80.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10053704699039728,20887.822577488078,5,3,5,5_1,5_2,5_0_1 +10500,2,39.0,0.0,6,400,757.3,0.0,0.0,22,22,0.0,13.243272770102239,1291.348371495662,767.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,8,,4,110511,2,2,0,0,1,,126.0,600.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1765.92479016593,757.3,28644.11925528679,1,1,2,3,70.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026776874972632866,11935.04968970283,2,1,2_0,2_0_0,2_0_0,2_0_0_0 +10501,2,64.0,0.0,1,111,0.0,0.0,0.0,78,52,0.0,0.0,0.0,1611.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,110512,2,1,0,0,1,,0.0,177.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1065.18152665617,0.0,39754.53821806749,5,1,2,3,76.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04052367533897901,26503.02547871166,7,4,7,7_0,7_4,7_1_0 +10502,2,50.0,0.0,2,111,400.0,1300.0,0.0,0,37,0.0,0.0,682.0802173488245,1700.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,3,50.0,1,,2,110513,2,2,1,0,2,,1200.0,600.0,32,1.0,0.0,4.0,3.0,2.0,3,2,814.05110191924,400.0,42848.93038224393,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039674269225270065,21424.465191121966,6,3,6,6_1,6_4,6_0_1 +10503,2,54.0,0.0,8,111,900.0,,,63,46,0.0,0.0,,1068.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,110514,2,1,0,0,2,,540.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,90.86452220363346,900.0,73853.58928094075,4,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014461043943812988,36926.794640470376,9,5,9,9_1,9_2,9_0_0 +10504,0,32.0,0.0,9,211,900.0,,,0,81,0.0,0.0,,1050.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,110515,1,3,0,0,2,,0.0,,32,1.0,0.0,3.0,11.0,4.399999999999999,3,1,7.559826641115449,900.0,9679.614001039128,0,4,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10847539993715453,2199.912272963439,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10505,0,49.0,0.0,9,111,2760.0,,,85,53,0.0,0.0,,2852.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,110516,2,1,0,0,2,,75.0,,42,1.0,1.0,4.0,3.0,2.0,3,2,79.05754063393327,2760.0,63033.29587677528,5,1,5,0,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04524592852601928,31516.64793838764,8,4,8,8_1,8_2,8_0_0 +10506,1,41.0,251.0,5,112,1400.0,0.0,0.0,0,46,0.0,0.0,2387.2807607208856,1849.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,110517,2,1,3,0,1,,480.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,759.327494137544,1400.0,16446.432856885815,0,4,1,2,90.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11242559502657491,16446.432856885815,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +10507,2,45.0,0.0,9,111,1000.0,,,0,54,0.0,0.0,,1120.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,110518,2,2,0,0,1,,300.0,,32,1.0,1.0,5.0,3.0,1.6,1,1,114.70066234899492,1000.0,26423.85017436649,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042385950291471935,16514.906358979053,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10508,2,56.0,0.0,6,112,2200.0,0.0,0.0,78,37,0.0,741.6232751257254,3751.441195418535,2888.0,177.35542085075468,0.0,41,0,0,0,0,0,0,0,0,2,12.0,1,,4,110519,2,1,1,0,1,,226.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,733.897042340981,2200.0,72712.52149622353,5,1,0,1,130.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03971805599053519,48475.01433081569,10,5,10,10_1,10_1,10_0_0 +10509,2,47.0,0.0,8,111,1200.0,0.0,0.0,47,21,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,110520,2,1,2,0,1,,1051.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,1443.28737101256,1200.0,78048.03238952534,1,1,0,1,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015375147370929104,31219.212955810137,8,4,8,8_1,8_3,8_0_0 +10510,2,47.0,0.0,7,111,0.0,0.0,2000.0,46,46,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,20,2,2,2,1,1,2,2,2,2,30.0,2,,5,110521,2,3,0,0,1,,0.0,450.0,43,2.0,0.0,4.0,3.0,1.8,2,2,343.230577157503,0.0,40233.12362001157,1,1,2,3,79.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04971028396624962,22351.73534445087,6,3,6,6_0,6_3,6_0_0 +10511,2,67.0,0.0,1,111,499.0,0.0,0.0,78,64,2109.365702073203,0.0,850.8950711426585,2639.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,110522,2,1,1,0,1,,136.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,165.438520550715,499.0,23121.434225017765,5,1,0,1,100.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11413651827638613,15414.289483345177,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +10512,1,45.0,467.0,7,111,1200.0,,,0,21,0.0,0.0,,1244.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,5,110523,2,2,0,0,2,,2000.0,770.0,32,1.0,1.0,5.0,4.0,2.3,3,2,93.39171664573445,1200.0,18817.248922698447,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06610955751876225,8181.412575086282,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +10513,1,19.0,351.0,8,112,0.0,0.0,0.0,85,55,0.0,0.0,0.0,934.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,110524,1,2,0,0,1,,343.0,431.0,42,1.0,0.0,3.0,3.0,1.8,2,2,2747.29413040849,0.0,11369.0,6,1,2,3,75.0,7,1,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08215322367842379,6316.111111111111,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +10514,2,39.0,0.0,6,111,1700.0,0.0,0.0,33,47,0.0,99.3245457757668,2898.840923732504,1925.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,3,60.0,1,,4,110525,2,2,2,0,1,,1000.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,788.008140832424,1700.0,54095.03566044442,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03558552049181116,25759.540790687817,7,4,7,7_1,7_4,7_0_0 +10515,2,43.0,0.0,1,111,1000.0,2000.0,0.0,42,21,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,2,5.0,2,,1,110526,2,1,0,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2001.80815987137,1000.0,68126.77094312938,1,1,1,2,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.044035552521700015,32441.319496728272,8,4,8,8_0,8_3,8_1_0 +10516,2,59.0,0.0,5,211,660.0,,,48,75,0.0,0.0,,756.0,133.01656563806603,,41,0,0,0,0,0,0,0,0,0,,1,,3,110527,2,1,0,0,2,,360.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,81.67363721121518,660.0,83616.56366661987,1,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009041270854111872,41808.281833309935,9,5,9,9_1,9_2,9_0_0 +10517,2,57.0,0.0,5,112,1620.0,0.0,0.0,0,75,0.0,0.0,2762.424880262739,1665.0,62.351515142843446,0.0,12,2,2,1,2,1,1,2,1,0,,1,,3,110528,2,1,3,0,2,,216.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,733.921971758337,1620.0,6654.006692341818,0,7,0,1,75.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.2502251766467668,6654.006692341818,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10518,2,60.0,0.0,2,111,400.0,2400.0,0.0,85,64,0.0,0.0,682.0802173488245,2800.0,0.0,4556.4097150554935,71,0,0,0,0,0,0,0,0,0,,1,,2,110529,2,1,2,0,1,,250.0,,42,3.0,1.0,5.0,4.0,2.5,4,4,190.648021828599,400.0,30152.830048310036,6,1,0,1,80.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09286027200478088,12061.132019324014,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +10519,2,78.0,0.0,2,112,0.0,0.0,0.0,75,77,0.0,0.0,0.0,1035.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110530,2,1,0,1,1,768.0,0.0,1100.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1153.64017500373,0.0,52037.17718848344,5,5,2,3,75.0,10,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019889626146536252,34691.45145898896,9,5,9,9_0,9_2,9_0_1 +10520,2,41.0,0.0,5,111,0.0,0.0,0.0,54,53,0.0,0.0,0.0,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,,3,110531,1,1,0,1,1,48.0,0.0,750.0,43,2.0,2.0,2.0,2.0,1.5,2,2,891.307932704452,0.0,17982.547807747145,4,1,2,3,52.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03336568357357633,11988.365205164764,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +10521,2,69.0,0.0,7,111,1100.0,0.0,0.0,0,37,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,110532,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1039.62561859901,1100.0,49953.04368714307,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022020680198974907,49953.04368714307,10,5,10,10_0,10_4,10_0_0 +10522,1,43.0,350.0,6,111,480.0,,,0,56,0.0,0.0,,543.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,110533,1,2,0,0,2,,240.0,400.0,32,2.0,1.0,6.0,2.0,1.5,2,2,124.38734879424355,480.0,8430.686480780108,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06440756648203043,5620.457653853406,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +10523,2,44.0,0.0,1,112,1300.0,0.0,0.0,52,64,0.0,556.2174563442941,2216.7607063836795,1800.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,110534,2,1,1,0,1,,540.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,128.35226977774,1300.0,33891.10247878763,1,1,0,1,100.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05311128491988764,12103.965170995583,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +10524,1,39.0,343.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,256.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110535,2,1,0,1,1,600.0,0.0,338.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,332.080372726883,0.0,34458.67761808698,6,4,2,3,83.0,6,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007429188166687755,12762.473191884068,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10525,2,36.0,0.0,7,400,180.0,,,0,81,0.0,0.0,,300.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,110536,2,2,0,0,2,,0.0,,32,1.0,0.0,2.0,2.0,1.3,1,1,31.89304821477367,180.0,14730.984619290954,0,4,0,1,56.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020365237474156014,11331.52663022381,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10526,2,37.0,0.0,1,211,0.0,0.0,1500.0,43,67,0.0,662.163638505112,945.4774356221156,2000.0,0.0,1795.098221347021,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,110537,2,2,2,0,1,,500.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2551.97396728034,0.0,40440.49798608982,1,1,1,2,85.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049455375170897584,22466.943325605454,6,3,6,6_1,6_1,6_1_0 +10527,1,53.0,300.0,2,112,500.0,250.0,0.0,85,63,0.0,0.0,852.6002716860306,750.0,0.0,474.62601198494724,50,2,1,2,2,1,1,2,2,0,,2,,2,110538,1,3,0,1,2,1000.0,0.0,338.0,42,1.0,4.0,5.0,4.0,2.5,4,2,251.489169719978,500.0,18022.38535819998,6,4,2,3,100.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04161491307024786,7208.9541432799915,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10528,2,46.0,0.0,8,300,1200.0,0.0,0.0,52,62,0.0,794.5963662061343,2046.2406520464733,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,110539,2,2,2,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,1167.66129511155,1200.0,48042.44179892295,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03746687163682746,20888.01817344476,5,3,5,5_1,5_0,5_0_0 +10529,2,52.0,0.0,8,111,1300.0,1200.0,0.0,54,31,0.0,304.5952737123515,2216.7607063836795,2730.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,110540,1,1,2,0,1,,430.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,314.158582079881,1300.0,56416.451487993174,1,1,1,2,155.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048390140251572046,28208.225743996587,8,4,8,8_1,8_3,8_0_0 +10530,2,65.0,0.0,1,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,744.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,110541,2,1,3,0,1,,159.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1181.72044290251,0.0,2856.1877725663003,0,5,0,1,65.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2604870755158762,2856.1877725663003,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +10531,2,21.0,0.0,2,111,600.0,,,53,54,0.0,0.0,,700.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,0,,2,,2,110542,2,2,0,0,2,,0.0,780.0,43,2.0,0.0,2.0,2.0,1.5,2,2,136.24785218357002,600.0,40607.42118721596,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01723822837142818,27071.61412481064,7,4,7,7_0,7_2,7_0_1 +10532,2,62.0,0.0,7,112,600.0,0.0,0.0,77,75,0.0,569.4607291143963,1023.1203260232367,1030.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,110543,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1839.49203097886,600.0,34283.68533107865,5,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03004344457292899,22855.790220719096,6,3,6,6_1,6_0,6_0_0 +10533,1,35.0,429.0,2,111,550.0,,,0,85,0.0,0.0,,800.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,8,,2,110544,2,3,0,0,2,,450.0,496.0,31,0.0,0.0,4.0,6.0,2.8999999999999995,3,1,70.03277683597857,550.0,15574.8578313253,0,6,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05136483482956622,5370.640631491484,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10534,2,46.0,0.0,2,111,330.0,1070.0,0.0,0,43,0.0,0.0,562.7161793127802,1400.0,0.0,2031.3993312955743,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,110545,2,1,3,0,1,,410.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,337.679846202502,330.0,32680.486522070467,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04283901951871258,21786.991014713643,6,3,6,6_1,6_3,6_0_1 +10535,1,33.0,495.0,2,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,776.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,110546,2,1,0,1,1,,540.0,695.0,42,1.0,0.0,5.0,5.0,2.4000000000000004,2,2,277.924972622097,0.0,30334.330320312925,6,1,2,3,95.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025581576774759498,12639.304300130383,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +10536,2,65.0,0.0,2,111,720.0,0.0,0.0,77,74,0.0,2251.3563709173804,1227.744391227884,2420.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,110547,2,1,0,1,1,,610.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,805.335343881928,720.0,35381.073753038494,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06839815029051154,23587.382502025663,6,3,6,6_0,6_4,6_0_1 +10537,2,64.0,0.0,1,120,700.0,0.0,0.0,78,75,527.3414255183008,794.5963662061343,1193.6403803604428,1940.0,193.98249155551292,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,110548,2,1,2,0,1,,300.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,1851.24943803329,700.0,31253.171938650856,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06207369939307819,15626.585969325428,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10538,2,30.0,0.0,9,111,1400.0,0.0,0.0,81,37,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,7.0,2,2009.0,6,110549,2,1,0,0,1,,0.0,965.0,43,2.0,0.0,3.0,4.0,2.1,2,2,2876.0201125808,1400.0,62455.04216903761,4,1,2,3,88.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02241612448536712,29740.49627097029,8,4,8,8_0,8_3,8_0_0 +10539,2,69.0,0.0,5,111,2010.0,888.0,0.0,72,90,0.0,0.0,3427.453092177843,2898.0,0.0,1685.8715945705326,70,0,0,0,0,0,0,0,0,0,,1,,3,110550,2,1,2,0,2,,436.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,456.984654969366,2010.0,28266.068611515475,5,5,0,1,89.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10252575410573253,18844.045741010315,5,3,5,5_1,5_2,5_0_0 +10540,2,48.0,0.0,1,111,384.0,,,0,65,0.0,0.0,,432.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,1,15.0,2,,1,110551,2,2,0,0,2,,114.0,492.0,12,1.0,1.0,2.0,1.0,1.0,1,1,26.708959323454874,384.0,25871.63205425856,0,1,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016697825598864426,25871.63205425856,7,4,7,7_0,7_2,7_1_0 +10541,2,30.0,0.0,2,112,1500.0,0.0,0.0,0,63,0.0,662.163638505112,2557.8008150580918,2060.0,83.13535352379125,0.0,50,2,2,2,2,1,2,1,2,2,10.0,1,,2,110552,1,2,2,0,1,,200.0,450.0,12,1.0,0.0,5.0,1.0,1.0,1,1,814.766447076278,1500.0,19765.14602388984,0,1,2,3,60.0,6,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.10422386950797674,19765.14602388984,5,3,5,5_1,5_0,5_0_1 +10542,2,57.0,0.0,2,120,490.0,,,81,35,0.0,0.0,,720.0,318.68552184119983,,31,0,0,0,0,0,0,0,0,0,,1,,2,110553,2,2,0,0,2,,580.0,,43,4.0,0.0,6.0,5.0,2.8,4,4,108.29172571734978,490.0,9411.944935927044,4,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07649853509572009,3361.4089056882303,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +10543,2,65.0,0.0,7,120,320.0,,,0,78,0.0,0.0,,430.0,152.4148147936173,,50,0,0,0,0,0,0,0,0,0,,1,,5,110554,2,2,0,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,122.99218030902344,320.0,15259.249366636815,0,5,0,1,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028179629919421998,15259.249366636815,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10544,1,31.0,257.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,381.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,110555,2,3,0,0,1,,0.0,240.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1813.15816129666,0.0,8219.864650121066,0,1,2,3,20.0,8,6,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.046351128177565364,8219.864650121066,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +10545,2,45.0,0.0,6,111,1600.0,,,0,21,0.0,0.0,,1621.0,29.09737373332694,,71,0,0,0,0,0,0,0,0,2,60.0,1,,4,110556,2,1,0,0,2,,980.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,176.60059186787524,1600.0,153990.77548554554,0,1,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010526604563739965,153990.77548554554,10,5,10,10_1,10_2,10_0_0 +10546,2,56.0,0.0,6,112,0.0,0.0,0.0,54,22,1687.4925616585624,0.0,0.0,2286.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110557,2,1,2,0,1,,104.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,3256.744278124,0.0,97471.57269724076,1,1,0,1,157.0,9,0,9,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023452991849229828,48735.78634862038,10,5,10,10_1,10_0,10_0_0 +10547,2,91.0,0.0,1,111,420.0,0.0,0.0,0,77,1582.0242765549024,0.0,716.1842282162656,1980.0,83.13535352379125,0.0,70,2,2,2,2,2,2,2,1,0,,1,,1,110558,1,2,3,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1250.36946958774,420.0,25508.894307621555,0,5,0,1,85.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,1,0,0.07761998525386556,25508.894307621555,7,4,7,7_1,7_3,7_1_0 +10548,2,78.0,0.0,1,400,300.0,0.0,0.0,0,75,843.7462808292812,264.8654554020448,511.56016301161833,1350.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110559,2,2,3,0,1,,55.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1843.90260477995,300.0,22300.80976393856,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06053591839445276,22300.80976393856,6,3,6,6_1,6_0,6_1_0 +10549,2,61.0,0.0,6,112,400.0,1200.0,0.0,33,38,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,0,,1,,4,110560,2,1,2,0,1,,300.0,,43,2.0,3.0,4.0,3.0,2.0,3,3,593.816379536229,400.0,69455.59869382337,1,4,0,1,120.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023036299882075405,34727.799346911685,9,5,9,9_1,9_1,9_0_0 +10550,1,42.0,295.0,2,112,468.0,1572.0,0.0,22,65,0.0,52.973091080408956,798.0338542981247,2080.0,0.0,2984.448363361348,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,110561,2,2,5,0,1,,200.0,271.0,43,2.0,0.0,4.0,3.0,2.0,3,3,129.11203930032,468.0,12379.517363184084,4,1,2,3,60.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.16801947434443534,6189.758681592042,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +10551,2,68.0,0.0,1,111,1734.0,0.0,0.0,74,75,0.0,0.0,2956.817742207154,1734.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,110562,2,1,2,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1834.96588344152,1734.0,40846.68563780182,5,5,0,1,90.0,4,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04245142470984865,27231.123758534548,7,4,7,7_1,7_2,7_1_0 +10552,2,64.0,0.0,5,111,370.0,0.0,0.0,0,75,0.0,0.0,630.9242010476627,450.0,110.84713803172167,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,110563,2,2,0,1,1,320.0,0.0,383.0,11,0.0,3.0,5.0,1.0,1.0,1,1,342.652719602484,370.0,16980.829170246256,0,5,2,3,92.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026500472708864433,16980.829170246256,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +10553,1,21.0,28.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1135.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,30.0,1,,1,110564,2,1,2,0,2,,0.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,314.934150381815,0.0,16643.589301594933,0,1,2,3,28.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06819442485829871,16643.589301594933,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +10554,1,44.0,246.0,9,112,900.0,0.0,0.0,0,56,0.0,0.0,1534.680489034855,935.0,48.49562288887823,0.0,50,2,2,2,2,1,2,2,2,0,,1,2004.0,6,110565,2,2,1,0,1,,324.0,550.0,32,2.0,0.0,3.0,3.0,2.0,3,2,2059.75846450807,900.0,19781.489007571694,0,1,2,3,50.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.047266411524537574,9890.744503785847,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +10555,2,28.0,0.0,9,112,1500.0,0.0,0.0,22,54,0.0,0.0,2557.8008150580918,2263.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,110566,2,1,1,0,1,,500.0,1250.0,43,2.0,1.0,6.0,4.0,2.3,3,2,235.907781169849,1500.0,123855.9077421841,1,1,2,3,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018271231798733526,53850.394670514834,10,5,10,10_1,10_0,10_0_0 +10556,2,65.0,0.0,2,120,1500.0,0.0,0.0,0,90,0.0,0.0,2557.8008150580918,1550.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,110567,2,2,1,0,1,,600.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,1063.2365683392,1500.0,26862.138394542813,0,5,0,1,120.0,0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05770203314546584,17908.092263028542,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +10557,1,47.0,50.0,9,111,1200.0,0.0,0.0,68,21,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,110568,2,1,1,0,1,,700.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,237.008815340527,1200.0,28748.04665149256,1,1,1,2,86.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04174196649071103,10647.424685737986,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +10558,2,47.0,0.0,9,111,336.0,,,0,63,0.0,0.0,,428.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,110569,2,2,0,0,2,,418.0,504.0,32,1.0,1.0,4.0,3.0,2.0,3,1,71.68604690483487,336.0,38565.89945069696,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011097887151501796,19282.94972534848,5,3,5,5_0,5_3,5_0_0 +10559,2,54.0,0.0,7,111,660.0,1111.0,0.0,47,47,0.0,66.2163638505112,1125.4323586255605,1821.0,0.0,2109.2379972611056,50,0,0,0,0,0,0,0,0,3,105.0,1,,5,110570,2,2,2,0,1,,258.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,645.226043570412,660.0,74330.4774671389,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0244986990808051,49553.651644759266,10,5,10,10_1,10_4,10_0_0 +10560,1,59.0,77.0,2,111,670.0,0.0,0.0,0,52,0.0,423.78472864327165,1142.484364059281,990.0,0.0,0.0,44,2,2,1,1,1,2,2,1,2,30.0,2,,2,110571,2,3,0,1,1,280.0,0.0,377.0,32,2.0,1.0,4.0,3.0,2.0,3,2,388.16881911971,670.0,18243.87194541562,0,1,2,3,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05426479658276545,9121.93597270781,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10561,1,27.0,140.0,5,111,300.0,0.0,0.0,0,90,0.0,0.0,511.56016301161833,300.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,3,110572,1,1,0,1,1,274.0,0.0,243.0,12,1.0,0.0,3.0,1.0,1.0,1,1,365.145983474356,300.0,11366.575540947544,0,1,2,3,45.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.026393173468936566,11366.575540947544,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10562,2,63.0,0.0,5,111,1068.0,0.0,0.0,75,75,0.0,0.0,1821.1541803213613,1148.0,110.84713803172167,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,110573,2,1,3,0,1,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,765.179779883033,1068.0,91368.01689862483,5,5,0,1,100.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012564571706461962,60912.01126574989,10,5,10,10_1,10_2,10_0_0 +10563,2,69.0,0.0,2,111,279.0,913.0,0.0,0,77,0.0,0.0,475.7509516008051,1192.0,0.0,1733.3341957690272,71,2,2,2,2,1,2,2,2,0,,2,,2,110574,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1529.46044551729,279.0,20960.866789712214,0,5,0,1,55.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.056867877266652184,20960.866789712214,5,3,5,5_0,5_3,5_0_1 +10564,2,53.0,0.0,9,111,966.0,,,63,56,0.0,0.0,,1098.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,2011.0,6,110575,1,1,0,0,2,,900.0,,43,2.0,2.0,5.0,5.0,2.5999999999999996,3,2,113.34661141939573,966.0,39473.76947103048,4,1,1,2,134.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02781593991943978,15182.219027319417,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10565,2,86.0,0.0,6,211,380.0,1340.0,0.0,0,78,0.0,0.0,647.9762064813832,1720.0,0.0,2543.9954242393173,71,0,0,0,0,0,0,0,0,0,,1,,4,110576,2,1,1,0,1,,340.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,867.425335175586,380.0,29271.196824557126,0,5,0,1,80.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058760836132159884,29271.196824557126,8,4,8,8_1,8_1,8_0_0 +10566,0,47.0,0.0,2,120,760.0,0.0,0.0,21,38,3269.516838213465,0.0,1295.9524129627664,3860.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,110577,2,1,3,0,1,,360.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,977.500361685647,760.0,77988.20275982076,1,1,5,0,90.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04949466539045131,51992.13517321384,10,5,10,10_1,10_0,10_0_1 +10567,2,20.0,0.0,2,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,422.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,2,110578,2,2,0,1,1,1340.0,0.0,415.0,43,2.0,0.0,4.0,3.0,1.8,2,2,868.640201088387,0.0,21264.557040600514,1,1,2,3,79.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019845228809340986,11813.642800333619,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +10568,2,51.0,0.0,1,111,600.0,180.0,0.0,56,21,0.0,0.0,1023.1203260232367,780.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,0,,2,,1,110579,1,2,0,1,2,563.0,0.0,920.0,43,4.0,0.0,3.0,5.0,2.8,4,4,822.354709661823,600.0,40480.85155507733,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019268369365667854,14457.44698395619,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +10569,2,42.0,0.0,8,111,1373.0,800.0,0.0,43,43,0.0,529.7309108040896,2341.24034604984,2573.0,0.0,1518.8032383518312,33,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,110580,2,1,1,0,1,,430.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,365.472013822128,1373.0,104719.51740077097,1,1,1,2,116.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024570395890509106,43633.13225032124,10,5,10,10_1,10_3,10_0_0 +10570,2,61.0,0.0,1,111,400.0,0.0,0.0,74,35,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,110581,2,1,0,1,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,707.815679617938,400.0,38760.21858221978,5,1,0,1,69.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010319859243092333,25840.145721479854,7,4,7,7_0,7_4,7_1_0 +10571,2,68.0,0.0,2,111,240.0,500.0,0.0,0,77,0.0,0.0,409.2481304092947,740.0,0.0,949.2520239698945,70,0,0,0,0,0,0,0,0,0,,2,,2,110582,2,3,0,0,1,,0.0,260.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1279.78372572202,240.0,25329.72636409372,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029214685913425055,25329.72636409372,7,4,7,7_0,7_4,7_0_1 +10572,2,39.0,0.0,9,112,440.0,671.0,0.0,69,52,0.0,0.0,750.2882390837069,1111.0,0.0,1273.8962161675984,42,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,110583,2,2,1,0,1,,312.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,798.991460425415,440.0,49237.96112476444,1,1,1,2,97.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022563891246122656,20515.817135318517,5,3,5,5_1,5_0,5_0_0 +10573,0,33.0,0.0,5,111,0.0,0.0,450.0,85,53,0.0,0.0,283.6432306866347,450.0,0.0,538.5294664041063,42,0,0,0,0,0,0,0,0,1,1.0,2,,3,110584,2,1,0,1,1,,450.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,385.088398503528,0.0,46433.38530627034,6,1,5,0,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009691302863916585,22111.135860128732,6,3,6,6_0,6_2,6_0_0 +10574,2,39.0,0.0,2,111,290.0,910.0,0.0,55,46,0.0,0.0,494.50815757789775,1200.0,0.0,1727.638683625208,31,0,0,0,0,0,0,0,0,0,,2,,2,110585,2,3,0,0,1,,0.0,802.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1031.47431704159,290.0,81279.31829102641,1,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014763903354889299,45155.176828348005,10,5,10,10_0,10_4,10_0_1 +10575,1,25.0,420.0,2,111,0.0,0.0,960.0,0,56,0.0,0.0,605.105558798154,960.0,0.0,1148.8628616620936,71,2,2,2,1,2,2,2,2,0,,2,,2,110586,1,1,0,0,1,,0.0,590.0,32,1.0,0.0,3.0,3.0,1.6,1,1,482.147657274508,0.0,11672.143229400326,0,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.08224710587700022,7295.089518375204,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10576,1,39.0,141.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,637.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,17.0,2,,2,110587,2,2,0,1,1,816.0,0.0,315.0,32,1.0,0.0,4.0,3.0,1.8,2,1,2345.27672109287,0.0,20371.029568458092,0,1,2,3,70.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031269897177230166,11317.238649143384,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10577,2,28.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,310.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,6.0,2,,2,110588,2,1,0,1,1,166.0,113.0,315.0,12,1.0,0.0,5.0,1.0,1.0,1,1,114.33787292951,0.0,13853.499466573168,0,1,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022377017500018158,13853.499466573168,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +10578,2,74.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,522.0,224.4654545142364,,71,0,0,0,0,0,0,0,0,0,,2,,2,110589,2,2,0,0,2,,300.0,185.0,21,1.0,4.0,3.0,2.0,1.5,2,2,83.03863488362332,360.0,7638.561316359615,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06833747591735961,5092.374210906411,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +10579,1,36.0,468.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1215.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110590,1,3,0,0,1,,438.0,425.0,31,0.0,0.0,4.0,4.0,1.9,1,1,1367.36042288111,0.0,19938.28070472417,0,6,2,3,84.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06093805268335491,10493.831949854826,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +10580,1,47.0,150.0,2,111,500.0,0.0,0.0,0,22,949.2145659329414,0.0,852.6002716860306,1500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110591,2,2,0,1,1,800.0,300.0,721.0,32,1.0,2.0,3.0,2.0,1.3,1,1,1949.97905825568,500.0,17641.93559512628,0,1,2,3,67.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08502468404965646,13570.719688558676,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +10581,2,79.0,0.0,1,111,960.0,0.0,0.0,0,72,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110592,2,1,2,0,1,,116.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1050.48999305539,960.0,15310.519970539226,0,5,0,1,60.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06270198542226188,15310.519970539226,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +10582,2,44.0,0.0,7,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1376.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,5,110593,1,1,0,0,1,,388.0,497.0,22,1.0,6.0,3.0,2.0,1.5,2,2,399.293753191699,0.0,41584.227905956795,0,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0330894685146455,27722.818603971198,7,4,7,7_0,7_3,7_0_0 +10583,2,69.0,0.0,5,221,365.0,0.0,0.0,77,78,527.3414255183008,0.0,622.3981983308023,929.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110594,2,1,1,0,1,,492.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,2326.11707126937,365.0,18613.037128171094,6,5,0,1,88.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049911252720489414,12408.691418780729,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10584,2,81.0,0.0,2,112,360.0,,,0,77,0.0,0.0,,475.0,159.34276092059991,,70,0,0,0,0,0,0,0,0,0,,1,,2,110595,2,1,0,0,2,,250.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,98.55195204739874,360.0,16141.359979105284,0,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029427508005203988,16141.359979105284,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +10585,2,73.0,0.0,2,112,246.0,0.0,0.0,0,77,1693.8206587647821,576.0823654994474,419.479333669527,2319.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110596,1,2,2,0,2,,155.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,957.119123164753,246.0,13578.54799695295,0,5,0,1,100.0,10,2,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17078409271156147,13578.54799695295,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +10586,2,42.0,0.0,5,400,720.0,1440.0,0.0,52,52,0.0,0.0,1227.744391227884,2160.0,0.0,2733.845829033296,60,0,0,0,0,0,0,0,0,2,5.0,1,,3,110597,2,3,3,0,1,,230.0,328.0,43,2.0,0.0,4.0,4.0,2.5,4,2,1340.9888620824,720.0,36571.17271611013,1,1,2,3,90.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05906291320673151,14628.469086444053,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10588,2,82.0,0.0,1,120,0.0,0.0,149.0,0,78,0.0,0.0,93.91742527179683,149.0,0.0,178.31308998713743,44,0,0,0,0,0,0,0,0,0,,1,,1,110599,2,1,3,0,1,,200.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1897.97068964165,0.0,23303.889727399343,0,5,0,1,100.0,0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.006393782400403936,23303.889727399343,6,3,6,6_1,6_1,6_1_0 +10589,1,54.0,91.0,2,111,580.0,460.0,0.0,52,21,0.0,0.0,989.0163151557955,1040.0,0.0,873.3118620523029,71,0,0,0,0,0,0,0,0,0,,2,,2,110600,2,2,0,1,1,519.0,0.0,303.0,43,2.0,0.0,3.0,5.0,2.4,2,2,175.350463286416,580.0,37324.8418990878,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02786348038155835,15552.01745795325,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +10590,1,63.0,225.0,2,111,408.0,204.0,0.0,0,77,0.0,0.0,695.7218216958009,612.0,0.0,387.294825779717,71,2,2,2,1,1,2,2,2,0,,2,,2,110601,2,1,0,1,1,1018.0,108.0,357.0,11,0.0,3.0,4.0,1.0,1.0,1,1,426.244143215417,408.0,10170.551177097808,0,5,2,3,75.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06017372995262148,10170.551177097808,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10591,2,41.0,0.0,2,112,2500.0,0.0,0.0,47,64,0.0,99.3245457757668,4263.001358430153,2725.0,207.83838380947813,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,2,110602,1,3,3,0,1,,300.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,738.371518498646,2500.0,36689.95888635258,1,1,1,2,60.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07427100173212807,17471.408993501227,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +10592,2,65.0,0.0,5,111,1500.0,0.0,0.0,0,78,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,110603,2,1,2,0,1,,260.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,387.747796983353,1500.0,21693.581938897238,0,5,0,1,110.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06914487447139632,21693.581938897238,6,3,6,6_1,6_2,6_0_0 +10593,2,58.0,0.0,2,111,800.0,,,0,54,0.0,0.0,,1000.0,277.1178450793042,,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,110604,2,2,0,0,2,,700.0,,32,2.0,3.0,6.0,2.0,1.5,2,2,108.88948471323322,800.0,96852.49359005917,0,1,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010324979388064396,64568.32906003945,10,5,10,10_1,10_3,10_0_1 +10594,0,29.0,0.0,2,111,400.0,0.0,0.0,0,46,0.0,0.0,682.0802173488245,400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,110605,2,1,0,1,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,671.580696200696,400.0,7548.161110116377,0,4,5,0,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05299303951844674,7548.161110116377,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +10596,1,39.0,19.0,7,111,840.0,,,85,46,0.0,0.0,,882.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,2,40.0,2,,5,110607,2,2,0,0,2,,320.0,397.0,42,2.0,0.0,3.0,4.0,2.3,3,3,106.95405144179861,840.0,37897.50111340905,6,1,2,3,54.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02327330230456612,16477.17439713437,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +10597,2,63.0,0.0,1,111,500.0,500.0,0.0,78,77,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,42,2,2,2,2,2,2,2,1,0,,2,,1,110608,2,1,0,0,1,,0.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,1896.69409888733,500.0,36328.0,5,5,0,1,56.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0.02752697643690817,24218.666666666668,7,4,7,7_0,7_3,7_1_0 +10598,2,40.0,0.0,2,111,660.0,120.0,0.0,0,55,0.0,0.0,1125.4323586255605,780.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,2,60.0,2,,2,110609,2,1,0,0,1,,60.0,450.0,12,1.0,1.0,2.0,1.0,1.0,1,1,646.37178786671,660.0,18035.9451290709,0,1,2,3,25.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04324697122430094,18035.9451290709,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +10599,2,49.0,0.0,1,112,662.0,1802.0,0.0,46,33,0.0,0.0,1128.8427597123045,2464.0,0.0,3421.1042943875,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,110610,2,1,1,0,1,,855.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,641.025814966044,662.0,58417.51535243266,1,1,0,1,76.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042179130439470025,23367.006140973062,6,3,6,6_1,6_0,6_1_0 +10600,1,47.0,491.0,5,111,594.0,869.0,0.0,77,85,0.0,0.0,1012.8891227630044,1463.0,0.0,1649.8000176596765,71,0,0,0,0,0,0,0,0,0,,2,,3,110611,2,1,0,0,1,,0.0,615.0,41,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,1465.0085449208,594.0,24972.866871640377,7,7,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05858358223426115,9604.948796784762,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10601,2,58.0,0.0,6,112,450.0,0.0,0.0,78,62,0.0,0.0,767.3402445174275,550.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,110612,2,2,1,0,1,,250.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,816.732744158588,450.0,29626.615895075163,7,1,0,1,123.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01856438824966933,19751.077263383442,5,3,5,5_1,5_0,5_0_0 +10602,2,38.0,0.0,5,111,270.0,833.0,0.0,67,67,0.0,0.0,460.40414671045653,1103.0,0.0,1581.4538719338443,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,110613,2,1,2,0,1,,282.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,239.929308360651,270.0,44847.436457980344,1,1,0,1,117.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024594493846564723,24915.242476655745,7,4,7,7_1,7_2,7_0_0 +10603,0,66.0,0.0,1,111,1000.0,0.0,0.0,0,75,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,110614,2,2,0,0,1,,0.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,459.810204220169,1000.0,30051.281017325826,0,5,5,0,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03327645165686807,20034.187344883885,5,3,5,5_0,5_3,5_1_0 +10604,2,29.0,0.0,5,400,450.0,0.0,0.0,0,11,0.0,99.3245457757668,767.3402445174275,525.0,0.0,0.0,42,2,2,2,1,1,2,2,2,2,5.0,8,,3,110615,1,3,0,0,1,,30.0,247.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2109.43085029975,450.0,10338.058208510596,0,1,2,3,83.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.05078323118434412,10338.058208510596,2,1,2_0,2_0_0,2_0_0,2_0_0_0 +10605,2,48.0,0.0,8,112,720.0,0.0,0.0,21,65,0.0,0.0,1227.744391227884,2720.0,2771.178450793042,0.0,50,2,2,2,2,1,2,2,2,0,,1,2001.0,6,110616,2,1,2,0,1,,345.0,,43,2.0,3.0,5.0,3.0,2.0,3,2,944.814730173369,720.0,56538.805991103945,1,1,1,2,145.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04810855044282287,28269.402995551973,8,4,8,8_1,8_0,8_0_0 +10606,2,40.0,0.0,1,111,950.0,0.0,0.0,0,46,0.0,0.0,1619.9405162034582,990.0,55.423569015860835,0.0,20,2,2,2,2,1,2,2,2,2,25.0,2,,1,110617,2,1,0,0,1,,50.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2963.66918708112,950.0,32356.0,0,1,1,2,59.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0.030597107182593647,32356.0,8,4,8,8_0,8_3,8_1_0 +10607,2,53.0,0.0,8,111,600.0,0.0,0.0,75,33,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,110618,2,1,1,0,1,,350.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,1022.90323557215,600.0,31202.303955254043,6,1,0,1,99.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019229349244864597,15601.151977627022,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10608,2,51.0,0.0,6,111,1485.0,0.0,0.0,0,38,0.0,0.0,2532.222806907511,1485.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,110619,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1072.16382849311,1485.0,7158.203264597558,0,4,0,1,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2074542933621889,7158.203264597558,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +10609,2,52.0,0.0,7,112,600.0,0.0,0.0,52,48,1582.0242765549024,0.0,1023.1203260232367,2160.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,5,110620,2,1,2,0,1,,0.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,1110.5586618342,600.0,47165.168448920274,1,1,0,1,153.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045796507699093096,23582.584224460137,6,3,6,6_1,6_0,6_0_0 +10610,2,37.0,0.0,5,120,1000.0,0.0,0.0,54,38,0.0,595.9472746546007,1705.2005433720612,2050.0,831.3535352379125,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,3,110621,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,606.513657592396,1000.0,69490.53878384388,1,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02950041884661013,33090.73275421137,8,4,8,8_1,8_0,8_0_0 +10611,2,42.0,0.0,2,111,646.0,1699.0,0.0,0,42,0.0,0.0,1101.5595510183516,2345.0,0.0,3225.5583774497013,10,0,0,0,0,0,0,0,0,2,5.0,1,,2,110622,1,2,2,0,2,,420.0,240.0,32,1.0,0.0,4.0,2.0,1.5,2,1,355.706873002804,646.0,34755.7522557372,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06747084576806725,23170.5015038248,6,3,6,6_1,6_3,6_0_1 +10612,2,76.0,0.0,1,111,580.0,0.0,0.0,78,77,0.0,1589.1927324122687,989.0163151557955,1840.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110623,2,1,2,0,1,,260.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,405.619369842931,580.0,30009.17085984825,5,5,0,1,110.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061314589749691756,20006.1139065655,5,3,5,5_1,5_3,5_1_0 +10613,2,46.0,0.0,1,111,450.0,1500.0,0.0,56,68,0.0,0.0,767.3402445174275,1950.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,3,60.0,2,,1,110624,2,3,0,0,2,,0.0,279.0,43,2.0,0.0,3.0,4.0,2.3,3,2,234.54175541904,450.0,32549.224052642287,1,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05990926225602919,14151.836544627082,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +10614,1,62.0,93.0,2,111,210.0,278.0,0.0,0,77,0.0,0.0,358.0921141081328,488.0,0.0,527.7841253272613,70,0,0,0,0,0,0,0,0,0,,2,,2,110625,2,1,0,1,1,802.0,0.0,308.0,11,0.0,1.0,3.0,1.0,1.0,1,1,939.232844329878,210.0,20886.402075082657,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02336448366002591,20886.402075082657,5,3,5,5_0,5_4,5_0_1 +10615,2,34.0,0.0,7,112,0.0,,,45,43,0.0,0.0,,582.0,0.0,,41,0,0,0,0,0,0,0,0,2,40.0,1,,5,110626,1,2,0,0,2,,403.0,890.0,43,2.0,0.0,4.0,4.0,2.1,2,2,96.69448462735278,0.0,65121.23515845873,1,1,2,3,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008937176922148763,31010.11198021844,8,4,8,8_1,8_1,8_0_0 +10616,2,55.0,0.0,2,400,463.0,0.0,0.0,0,11,1400.618826176607,0.0,789.5078515812643,1791.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,110627,2,2,3,0,1,,185.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,885.037152090151,463.0,24854.060490598655,0,1,0,1,80.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07206065989408318,24854.060490598655,7,4,7,7_1,7_0,7_0_1 +10617,2,64.0,0.0,8,112,1390.0,0.0,0.0,77,74,0.0,0.0,2370.228755287165,1390.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,110628,2,1,1,0,1,,200.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1114.70312529492,1390.0,56953.2007468852,5,5,0,1,110.0,6,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024406003205641076,37968.80049792347,9,5,9,9_1,9_0,9_0_0 +10618,2,56.0,0.0,5,400,550.0,0.0,0.0,78,56,1582.0242765549024,450.2712741834761,937.8602988546337,2450.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,110629,2,1,3,0,1,,180.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1196.37850697345,550.0,35160.98626582723,5,1,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06967950163505912,23440.65751055149,6,3,6,6_1,6_0,6_0_0 +10619,2,58.0,0.0,2,111,500.0,600.0,0.0,55,52,0.0,0.0,852.6002716860306,1100.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,110630,2,2,0,1,1,,0.0,380.0,43,2.0,1.0,4.0,2.0,1.5,2,2,350.308825318924,500.0,30570.649640306336,1,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.035982225204324356,20380.43309353756,5,3,5,5_0,5_3,5_0_1 +10620,1,67.0,253.0,7,111,160.0,500.0,0.0,0,77,0.0,0.0,272.8320869395298,660.0,0.0,949.2520239698945,50,2,2,2,1,2,1,2,2,0,,2,,5,110631,1,3,0,0,1,,150.0,241.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1138.17054318731,160.0,10436.518660093547,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.06323947874722471,10436.518660093547,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10621,2,73.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,850.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,110632,1,1,4,0,2,,107.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,433.029777993778,0.0,17602.369894133004,0,5,0,1,70.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048288952289504555,17602.369894133004,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +10622,2,58.0,0.0,2,400,370.0,0.0,0.0,52,65,0.0,0.0,630.9242010476627,2890.0,3491.6848479992327,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,110633,2,1,2,0,1,,219.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1278.91541263142,370.0,28232.591038828337,1,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1023639663828721,18821.72735921889,5,3,5,5_1,5_0,5_0_1 +10623,2,33.0,0.0,1,111,600.0,1600.0,0.0,37,37,0.0,0.0,1023.1203260232367,2200.0,0.0,3037.6064767036623,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,110634,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1272.94989519331,600.0,66087.425666447,1,1,1,2,140.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033289237367237226,44058.28377763133,10,5,10,10_1,10_3,10_1_0 +10624,2,31.0,0.0,2,111,581.0,0.0,0.0,55,43,0.0,0.0,990.7215156991675,581.0,0.0,0.0,33,2,2,2,2,1,2,2,2,3,45.0,2,,2,110635,2,2,0,1,1,1080.0,0.0,1114.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1045.10534513618,581.0,37626.65762190366,1,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.015441180182365752,20903.698678835364,5,3,5,5_0,5_4,5_0_1 +10625,2,48.0,0.0,7,111,1200.0,,,67,67,0.0,0.0,,1376.0,243.8637036697877,,71,2,2,2,2,2,2,2,1,0,,1,,5,110636,1,3,0,0,2,,1120.0,,43,3.0,3.0,5.0,5.0,2.5999999999999996,3,3,140.89378301893962,1200.0,28020.969155208288,4,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04910608167684455,10777.295828926266,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10626,1,25.0,56.0,2,112,420.0,0.0,0.0,0,65,0.0,0.0,716.1842282162656,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110637,2,1,0,1,1,781.0,0.0,311.0,22,2.0,3.0,3.0,2.0,1.5,2,2,257.465416049333,420.0,28462.930202971424,0,1,2,3,60.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014756035201047346,18975.28680198095,5,3,5,5_0,5_2,5_0_1 +10627,2,59.0,0.0,5,111,250.0,0.0,0.0,0,37,0.0,0.0,426.3001358430153,310.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,3,110638,2,2,0,1,1,732.0,110.0,550.0,12,1.0,3.0,4.0,1.0,1.0,1,1,2234.84215010439,250.0,44030.437667369435,0,1,2,3,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007040584114605298,44030.437667369435,10,5,10,10_0,10_2,10_0_0 +10628,2,48.0,0.0,1,111,500.0,0.0,0.0,0,37,0.0,0.0,852.6002716860306,610.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,1,110639,2,1,0,1,1,912.0,0.0,780.0,32,1.0,0.0,4.0,3.0,2.0,3,3,734.175869216244,500.0,51783.93008310696,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011779716198075803,25891.96504155348,7,4,7,7_0,7_4,7_1_0 +10629,1,24.0,324.0,7,211,240.0,,,0,43,0.0,0.0,,328.0,121.93185183489385,,43,0,0,0,0,0,0,0,0,2,15.0,2,,5,110640,1,2,0,0,2,,160.0,324.0,32,1.0,0.0,3.0,2.0,1.3,1,1,116.58594229424011,240.0,8997.40075897024,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036454972806784246,6921.077506900184,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10630,1,47.0,76.0,2,111,348.0,108.0,0.0,0,56,0.0,0.0,593.4097890934773,456.0,0.0,205.0384371774972,71,2,2,2,1,1,2,2,2,3,70.0,2,,2,110641,2,1,0,1,1,68.0,0.0,425.0,32,1.0,0.0,3.0,3.0,2.0,3,3,358.011395661247,348.0,26070.703703661562,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0174908972608958,13035.351851830781,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +10631,2,41.0,0.0,2,400,0.0,0.0,0.0,69,62,0.0,0.0,0.0,210.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,2,20.0,5,,2,110642,2,1,1,0,1,,0.0,278.0,43,2.0,0.0,4.0,4.0,2.3,3,2,948.236360739273,0.0,36626.41610008375,1,1,2,3,120.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.005733566708415128,15924.528739166848,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +10632,2,52.0,0.0,6,112,983.0,0.0,0.0,78,46,0.0,331.081819252556,1676.212134134736,1278.0,62.351515142843446,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,4,110643,2,1,2,0,1,,400.0,,42,3.0,1.0,4.0,4.0,2.5,4,4,800.861482847039,983.0,98487.17153890287,5,1,0,1,93.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012976309300294855,39394.86861556115,9,5,9,9_1,9_0,9_0_0 +10633,2,33.0,0.0,9,111,0.0,0.0,1800.0,46,37,0.0,66.2163638505112,1134.5729227465388,1850.0,0.0,2154.117865616425,10,0,0,0,0,0,0,0,0,2,27.0,1,2005.0,6,110644,2,1,1,0,1,,550.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1704.80176064227,0.0,78766.94182715759,1,1,1,2,78.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023487010630164513,37508.067536741706,9,5,9,9_1,9_2,9_0_0 +10634,2,51.0,0.0,5,111,292.0,,,0,64,0.0,0.0,,292.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,110645,2,2,0,0,2,,472.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,152.15161227619382,292.0,5214.799999999999,0,4,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05599447725703767,5214.799999999999,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10635,2,29.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,2102.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,110646,2,2,2,0,1,,179.0,400.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1019.85907539338,0.0,21363.5585597986,0,1,2,3,90.0,7,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09839184769317832,21363.5585597986,6,3,6,6_1,6_2,6_0_0 +10636,2,70.0,0.0,2,111,290.0,115.0,0.0,77,74,0.0,0.0,494.50815757789775,983.0,0.0,218.32796551307572,50,0,0,0,0,0,0,0,0,0,,2,,2,110647,1,2,0,1,2,649.0,0.0,718.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1881.99295783362,290.0,30375.117919243057,5,5,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03236201428463446,20250.078612828704,5,3,5,5_0,5_3,5_0_1 +10637,1,61.0,153.0,2,112,0.0,,,63,74,0.0,0.0,,21.0,29.09737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,2,110648,1,1,0,0,2,,40.0,152.0,42,1.0,3.0,2.0,2.0,1.5,2,2,133.54309589436093,0.0,7168.483092320717,4,7,2,3,35.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0029294900649896745,4778.988728213812,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +10638,2,79.0,0.0,2,111,330.0,1200.0,0.0,78,74,0.0,158.91927324122688,562.7161793127802,1650.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,110649,1,1,2,0,1,,140.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,350.996680243532,330.0,21896.725961992823,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07535373109495834,14597.817307995216,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +10639,1,36.0,370.0,2,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,1162.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110650,1,3,0,1,1,1108.0,328.0,317.0,41,0.0,0.0,4.0,5.0,2.4,2,2,185.131808527986,0.0,13696.830581234739,6,6,2,3,120.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0848371448495531,5707.012742181141,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10640,2,40.0,0.0,1,111,748.0,508.0,0.0,33,38,0.0,0.0,1275.4900064423018,1256.0,0.0,964.4400563534128,10,0,0,0,0,0,0,0,0,0,,1,,1,110651,2,3,2,0,1,,430.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,839.013886494463,748.0,79937.39072650087,1,1,1,2,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015712296693512293,44409.661514722706,10,5,10,10_1,10_4,10_1_0 +10641,2,34.0,0.0,5,112,350.0,,,0,81,0.0,0.0,,626.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,0,,1,,3,110652,1,3,0,0,2,,304.0,,32,1.0,2.0,3.0,3.0,1.8,2,2,109.64160393242207,350.0,14562.58961374443,0,4,0,1,32.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04298685993383829,8090.32756319135,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10642,2,33.0,0.0,6,111,249.0,859.0,0.0,52,52,0.0,0.0,424.5949352996432,1108.0,0.0,1630.8149771802787,60,0,0,0,0,0,0,0,0,2,15.0,2,,4,110653,2,1,0,0,1,,0.0,640.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1890.16015860661,249.0,34275.50348941112,1,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032326293918404414,16321.66832829101,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +10643,2,29.0,0.0,1,111,720.0,720.0,0.0,34,33,0.0,0.0,1227.744391227884,1440.0,0.0,1366.922914516648,12,2,2,1,2,1,2,2,2,1,5.0,2,,1,110654,1,2,0,1,1,898.0,0.0,387.0,43,2.0,0.0,3.0,2.0,1.5,2,2,562.85466775334,720.0,31039.732578296836,4,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04639215226380064,20693.15505219789,5,3,5,5_0,5_4,5_1_0 +10644,2,33.0,0.0,9,111,340.0,450.0,0.0,52,45,0.0,0.0,579.7681847465008,790.0,0.0,854.326821572905,10,0,0,0,0,0,0,0,0,2,25.0,2,2005.0,6,110655,2,1,0,0,1,,216.0,561.0,43,2.0,0.0,2.0,2.0,1.5,2,2,359.030015329064,340.0,37379.83997142058,1,1,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021134386894219145,24919.893314280387,7,4,7,7_0,7_3,7_0_0 +10645,2,48.0,0.0,5,111,252.0,120.0,0.0,0,42,860.6212064458668,0.0,429.7105369297594,1188.0,0.0,227.8204857527747,60,0,0,0,0,0,0,0,0,2,15.0,2,,3,110656,2,1,0,1,1,645.0,0.0,334.0,12,1.0,0.0,3.0,1.0,1.0,1,1,820.89958579582,252.0,19132.25376579908,0,1,2,3,55.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.062094095893902225,19132.25376579908,5,3,5,5_0,5_4,5_0_0 +10646,2,40.0,0.0,8,111,1020.0,,,63,56,0.0,0.0,,1272.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,110657,1,2,0,0,2,,350.0,,43,2.0,1.0,4.0,6.0,2.8999999999999995,3,2,90.00457888406275,1020.0,24695.433394679523,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051507498559391324,8515.666687820527,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +10647,0,86.0,0.0,2,111,260.0,,,0,77,0.0,0.0,,340.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,2,110658,2,3,0,0,2,,240.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,117.50114624688857,260.0,9267.899746424551,0,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036685765847992484,9267.899746424551,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +10648,2,47.0,0.0,1,111,355.0,970.0,0.0,52,43,0.0,0.0,605.3461928970817,1325.0,0.0,1841.5489265015954,33,0,0,0,0,0,0,0,0,3,40.0,2,,1,110659,2,2,0,0,2,,0.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,819.586124002694,355.0,86889.1918596426,1,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015249307441371457,43444.5959298213,10,5,10,10_0,10_4,10_1_0 +10649,1,39.0,120.0,5,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,381.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,3,110660,2,2,0,0,1,,272.0,465.0,32,1.0,0.0,3.0,2.0,1.3,1,1,290.933818150234,0.0,14473.358133725835,0,1,2,3,60.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02632422942068941,11133.352410558335,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10650,2,52.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,655.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,2011.0,6,110661,2,1,0,0,1,,66.0,590.0,12,1.0,3.0,3.0,1.0,1.0,1,1,391.782482016448,0.0,31147.767500490223,0,1,2,3,52.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021028794438949474,31147.767500490223,8,4,8,8_0,8_2,8_0_0 +10651,1,48.0,32.0,2,111,540.0,900.0,0.0,0,47,0.0,0.0,920.8082934209131,1440.0,0.0,1708.65364314581,50,2,2,2,2,1,2,2,2,0,,8,,2,110662,1,3,0,0,2,,0.0,330.0,12,1.0,2.0,3.0,1.0,1.0,1,1,3554.86838009844,540.0,20392.602533412726,0,1,2,3,84.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.07061384134960699,20392.602533412726,5,3,5,5_0,5_3,5_0_1 +10652,2,57.0,0.0,1,111,850.0,1250.0,0.0,78,56,0.0,0.0,1449.420461866252,2100.0,0.0,2373.130059924736,71,0,0,0,0,0,0,0,0,0,,2,,1,110663,2,2,0,0,1,,750.0,,42,2.0,0.0,5.0,5.0,3.0,5,4,666.988446454902,850.0,59168.53608598147,5,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035491836352827114,19722.845361993823,5,3,5,5_0,5_4,5_1_0 +10653,2,55.0,0.0,5,111,528.0,1451.0,0.0,63,37,0.0,26.486545540204478,900.3458869004482,1999.0,0.0,2754.729373560634,31,0,0,0,0,0,0,0,0,3,30.0,1,,3,110664,2,1,2,0,1,,352.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,475.703589957938,528.0,45711.08470611104,1,1,0,1,97.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0437311871475401,22855.54235305552,6,3,6,6_1,6_3,6_0_0 +10654,2,80.0,0.0,6,221,311.0,0.0,0.0,0,77,0.0,385.3792376099752,530.317368988711,952.0,484.95622888878233,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,110665,2,1,2,0,1,,264.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2260.29876491849,311.0,23238.244461420723,0,5,0,1,85.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04096695004566611,23238.244461420723,6,3,6,6_1,6_1,6_0_0 +10655,2,30.0,0.0,9,112,1012.0,0.0,0.0,42,34,0.0,0.0,1725.6629498925258,1012.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,110666,1,2,0,0,1,,274.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,533.712852754345,1012.0,42927.02034617053,1,1,1,2,45.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023574895062342227,28618.013564113688,8,4,8,8_0,8_1,8_0_0 +10657,2,62.0,0.0,1,111,220.0,800.0,0.0,78,78,0.0,0.0,375.14411954185346,1188.0,232.77898986661552,1518.8032383518312,70,1,2,2,1,1,2,2,2,0,,1,,1,110668,2,1,1,0,1,,50.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,297.651100533677,220.0,29604.514232954585,5,5,0,1,50.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.040129015144506744,19736.342821969723,5,3,5,5_1,5_3,5_1_0 +10658,1,36.0,331.0,2,111,360.0,720.0,0.0,0,56,0.0,0.0,613.872195613942,1080.0,0.0,1366.922914516648,50,1,1,2,2,1,2,2,2,3,60.0,2,,2,110669,1,3,0,1,1,528.0,0.0,272.0,32,1.0,0.0,3.0,5.0,2.5999999999999996,3,1,187.903354940141,360.0,25320.67252381981,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0426528955336402,9738.72020146916,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10659,2,33.0,0.0,7,112,0.0,0.0,0.0,46,68,0.0,0.0,0.0,1269.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,110670,2,1,2,0,1,,430.0,500.0,43,2.0,1.0,4.0,2.0,1.5,2,2,1787.17806248135,0.0,39800.09460772683,1,1,2,3,96.0,8,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03188434631895661,26533.39640515122,7,4,7,7_1,7_0,7_0_0 +10660,2,81.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,539.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,110671,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,300.506151956063,0.0,17977.684649400904,0,5,0,1,60.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02998161390142984,17977.684649400904,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10661,1,50.0,170.0,2,111,400.0,260.0,0.0,0,54,0.0,0.0,682.0802173488245,660.0,0.0,493.61105246434516,50,2,1,2,1,2,2,2,2,1,10.0,2,,2,110672,2,3,0,1,1,540.0,0.0,340.0,32,2.0,0.0,3.0,3.0,2.0,3,2,789.791419036153,400.0,17477.4296599541,0,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03776298991563118,8738.71482997705,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10662,2,57.0,0.0,6,111,1200.0,,,78,21,0.0,0.0,,1287.0,120.54626260949732,,50,0,0,0,0,0,0,0,0,0,,1,,4,110673,2,1,0,0,2,,540.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,74.14484678009136,1200.0,50474.49017023167,7,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025498028720239232,33649.66011348778,9,5,9,9_1,9_2,9_0_0 +10663,2,67.0,0.0,2,221,800.0,0.0,0.0,0,77,0.0,662.163638505112,1364.160434697649,1370.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110674,2,1,1,0,1,,294.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,2237.29603976425,800.0,23655.65484566936,0,5,0,1,110.0,1,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05791427077110934,23655.65484566936,6,3,6,6_1,6_1,6_0_1 +10664,1,45.0,170.0,1,111,350.0,1300.0,0.0,85,63,0.0,0.0,596.8201901802214,1750.0,138.5589225396521,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,1,110675,2,1,2,0,1,,900.0,,42,1.0,0.0,5.0,5.0,2.8,4,3,348.322722567168,350.0,46813.765222120084,6,4,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03738216722574375,16719.201865042887,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +10665,2,70.0,0.0,1,111,250.0,0.0,0.0,0,74,1582.0242765549024,572.1093836684167,426.3001358430153,2284.0,141.33010099044515,0.0,30,0,0,0,0,0,0,0,0,0,,1,,1,110676,2,2,2,0,1,,164.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,422.643736130715,250.0,41137.809206438826,0,5,0,1,190.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05552070088463806,41137.809206438826,9,5,9,9_1,9_3,9_1_0 +10667,1,82.0,240.0,1,111,450.0,0.0,0.0,0,78,0.0,0.0,767.3402445174275,470.0,27.711784507930417,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,110678,2,2,0,0,1,,200.0,342.0,11,0.0,2.0,1.0,1.0,1.0,1,1,3775.37470247469,450.0,2139.0628890602356,0,5,2,3,34.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.2197223851639478,2139.0628890602356,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +10668,2,44.0,0.0,2,112,3095.0,2596.0,0.0,85,37,0.0,0.0,5277.5956817365295,5691.0,0.0,4928.516508451692,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,110679,2,1,1,0,1,,1811.0,,42,1.0,0.0,9.0,5.0,2.8,4,4,1714.47717626412,3095.0,55297.96482517808,6,1,1,2,165.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10291517993459305,19749.273151849316,5,3,5,5_1,5_0,5_0_1 +10669,2,64.0,0.0,2,111,400.0,1400.0,0.0,0,74,0.0,0.0,682.0802173488245,1800.0,0.0,2657.9056671157045,41,0,0,0,0,0,0,0,0,0,,2,,2,110680,2,2,0,0,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,412.570008092825,400.0,30246.041785244786,0,5,1,2,74.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05951191937049135,30246.041785244786,8,4,8,8_0,8_3,8_0_1 +10670,2,63.0,0.0,1,211,0.0,0.0,0.0,21,74,0.0,0.0,0.0,5372.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,110681,2,1,2,0,1,,231.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1437.20066802048,0.0,35582.8684876914,1,5,0,1,135.0,2,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15097152726341465,23721.9123251276,6,3,6,6_1,6_1,6_1_0 +10671,2,41.0,0.0,8,112,1200.0,0.0,0.0,52,43,2109.365702073203,0.0,2046.2406520464733,3200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,110682,2,1,1,0,1,,670.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,864.814444433606,1200.0,55083.51176228442,1,1,1,2,120.0,6,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058093609096851996,30601.9509790469,8,4,8,8_1,8_0,8_0_0 +10672,0,44.0,0.0,5,111,0.0,,,0,63,0.0,0.0,,1416.0,0.0,,50,0,0,0,0,0,0,0,0,1,1.0,1,,3,110683,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,127.67783021889832,0.0,16095.499067956038,0,1,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08797490491109186,16095.499067956038,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10673,2,27.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,2363.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,2,110684,1,2,4,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,311.498349176264,0.0,20092.60099897633,0,1,1,2,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11760548074987351,20092.60099897633,5,3,5,5_1,5_3,5_0_1 +10674,2,65.0,0.0,5,111,660.0,1600.0,0.0,74,74,0.0,198.6490915515336,1125.4323586255605,2410.0,0.0,3037.6064767036623,44,0,0,0,0,0,0,0,0,0,,1,,3,110685,2,1,3,0,1,,490.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,857.699462255083,660.0,74565.66533726378,5,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032320505545004714,49710.44355817585,10,5,10,10_1,10_4,10_0_0 +10675,2,56.0,0.0,1,120,1060.0,0.0,0.0,78,52,843.7462808292812,927.0290939071567,1807.5125759743848,2560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,110686,2,2,3,0,1,,500.0,,42,1.0,1.0,6.0,3.0,2.0,3,3,1940.40651371819,1060.0,49127.99177297258,5,1,0,1,120.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052108785798331086,24563.99588648629,7,4,7,7_1,7_1,7_1_0 +10676,2,65.0,0.0,7,111,1320.0,,,0,22,0.0,0.0,,1572.0,349.1684847999233,,70,0,0,0,0,0,0,0,0,2,10.0,3,,5,110687,2,2,0,0,2,,650.0,458.0,11,0.0,8.0,3.0,1.0,1.0,1,1,111.80195824393986,1320.0,14753.111342512317,0,6,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10655379489139699,14753.111342512317,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +10677,2,32.0,0.0,2,111,800.0,0.0,0.0,22,22,0.0,794.5963662061343,1364.160434697649,1450.0,69.27946126982604,0.0,43,2,2,2,2,1,2,2,2,2,7.0,1,,2,110688,1,3,3,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1124.27246110421,800.0,57468.87230454662,1,1,1,2,105.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.02523105016426926,31927.151280303675,8,4,8,8_1,8_2,8_0_1 +10678,2,49.0,0.0,1,112,800.0,850.0,0.0,37,37,0.0,79.45963662061344,1364.160434697649,1710.0,0.0,1613.7284407488207,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,110689,2,2,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,641.025814966044,800.0,103929.17077400815,1,1,1,2,120.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016453513361694764,41571.66830960326,9,5,9,9_1,9_1,9_1_0 +10679,2,77.0,0.0,1,111,450.0,1000.0,0.0,75,78,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,2,,1,110690,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1207.06559541588,450.0,33054.0,5,5,0,1,75.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04386761057663218,22036.0,6,3,6,6_0,6_2,6_1_0 +10680,1,41.0,447.0,2,111,600.0,,,0,81,0.0,0.0,,750.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,2,110691,2,2,0,0,2,,600.0,767.0,32,1.0,0.0,5.0,6.0,2.6999999999999997,2,1,6.461381361456224,600.0,6671.145839705059,0,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11242446470532542,2470.7947554463185,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10681,2,76.0,0.0,9,111,500.0,0.0,0.0,86,74,0.0,0.0,852.6002716860306,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2004.0,6,110692,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1600.70982673116,500.0,76781.2003882314,6,5,0,1,89.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.006512010719705252,51187.4669254876,10,5,10,10_0,10_3,10_0_0 +10682,2,61.0,0.0,9,111,900.0,,,0,22,0.0,0.0,,1084.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,110693,2,3,0,0,2,,302.0,,12,1.0,4.0,6.0,1.0,1.0,1,1,53.27083480783222,900.0,6943.6305974856705,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1561142956528423,6943.6305974856705,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10683,1,32.0,231.0,8,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,641.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2002.0,6,110694,2,1,0,0,1,,0.0,454.0,32,1.0,0.0,4.0,3.0,1.6,1,1,886.203913119189,0.0,18353.210560391002,0,1,2,3,76.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03492576941188561,11470.756600244376,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10684,2,68.0,0.0,5,111,600.0,,,0,77,0.0,0.0,,1200.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,0,,1,,3,110695,2,2,0,0,2,,600.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,116.00707150981351,600.0,14992.0,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08004268943436499,14992.0,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +10685,2,61.0,0.0,2,111,944.0,0.0,0.0,0,52,0.0,0.0,1609.7093129432258,944.0,0.0,0.0,31,2,2,2,2,2,2,2,1,3,60.0,2,,2,110696,1,2,0,1,1,852.0,0.0,444.0,12,1.0,2.0,4.0,1.0,1.0,1,1,932.227014481305,944.0,35039.11415413265,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02694132037264021,35039.11415413265,9,5,9,9_0,9_4,9_0_1 +10686,2,69.0,0.0,2,111,243.0,0.0,0.0,0,77,0.0,0.0,414.3637320394109,271.0,38.79649831110259,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,110697,2,1,0,1,1,512.0,130.0,286.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1085.51562198298,243.0,18863.601354144528,0,5,2,3,65.0,4,3,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.014366291722999039,18863.601354144528,5,3,5,5_0,5_1,5_0_1 +10687,2,50.0,0.0,2,111,700.0,700.0,0.0,0,63,0.0,0.0,1193.6403803604428,1400.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,,2,110698,1,3,0,0,2,,200.0,386.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2412.53432479846,700.0,12985.81312707208,0,4,2,3,37.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.10780996047766621,12985.81312707208,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +10688,0,63.0,0.0,2,112,300.0,,,0,68,0.0,0.0,,300.0,0.0,,70,0,0,0,0,0,0,0,0,2,5.0,1,,2,110699,2,1,0,0,2,,400.0,,12,1.0,7.0,4.0,1.0,1.0,1,1,128.47046698853623,300.0,3530.8302078278166,0,1,5,0,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0849658528849399,3530.8302078278166,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +10689,2,43.0,0.0,1,111,0.0,0.0,0.0,64,37,0.0,0.0,0.0,1227.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,110700,2,2,1,0,1,,356.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,1786.33713977214,0.0,50313.826063432105,1,4,1,2,80.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024386934884520317,25156.913031716053,7,4,7,7_1,7_2,7_1_0 +10690,2,44.0,0.0,7,111,1068.0,,,38,46,0.0,0.0,,1068.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,5,110701,2,1,0,0,2,,330.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,115.58028983069161,1068.0,74332.99246385359,4,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014367778890636533,41296.10692436311,9,5,9,9_0,9_2,9_0_0 +10691,2,79.0,0.0,2,112,460.0,0.0,0.0,86,72,0.0,1456.7600047112462,784.3922499511482,1740.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,110702,2,1,2,0,2,,193.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,727.078415111052,460.0,21937.010152443712,6,5,0,1,75.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0793180104266018,14624.673434962475,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +10692,2,52.0,0.0,6,111,1000.0,1000.0,0.0,54,46,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,3,30.0,2,,4,110703,2,1,0,0,1,,0.0,950.0,43,2.0,1.0,4.0,3.0,2.0,3,3,996.336669660053,1000.0,48959.305603261804,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04085025257929219,24479.652801630902,7,4,7,7_0,7_4,7_0_0 +10693,2,37.0,0.0,7,111,420.0,,,0,33,0.0,0.0,,470.0,69.27946126982604,,10,0,0,0,0,0,0,0,0,2,5.0,2,,5,110704,2,1,0,0,2,,300.0,800.0,32,1.0,0.0,4.0,2.0,1.3,1,1,136.57290930931669,420.0,40856.38209568095,0,1,2,3,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011503710703001407,31427.986227446883,8,4,8,8_0,8_2,8_0_0 +10694,1,61.0,271.0,1,111,190.0,1525.0,0.0,0,78,0.0,0.0,323.9881032406916,1715.0,0.0,2895.2186731081783,71,0,0,0,0,0,0,0,0,0,,1,,1,110705,2,1,1,0,1,,200.0,406.0,11,0.0,0.0,4.0,1.0,1.0,1,1,102.642608523025,190.0,9413.686339147103,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.18218155334835406,9413.686339147103,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +10695,2,51.0,0.0,9,112,1284.0,0.0,0.0,52,46,0.0,0.0,2189.4774976897265,1284.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,22.0,1,2008.0,6,110706,2,1,1,0,1,,189.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1050.48170108997,1284.0,44248.36183292934,1,1,1,2,153.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029018023420800534,19238.41818823015,5,3,5,5_1,5_2,5_0_0 +10696,2,76.0,0.0,2,300,492.0,1145.0,0.0,0,77,0.0,105.94618216081791,838.958667339054,1717.0,0.0,2173.7871348910585,70,0,0,0,0,0,0,0,0,0,,1,,2,110707,1,1,1,0,1,,182.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1049.28168963251,492.0,20032.433974269068,0,5,0,1,100.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08571100257739145,20032.433974269068,5,3,5,5_1,5_0,5_0_1 +10697,2,47.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,2097.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,,1,110708,1,3,0,0,2,,504.0,750.0,32,1.0,0.0,5.0,3.0,1.6,1,1,925.768831225998,0.0,70333.61304802797,0,1,2,3,110.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029815047302746183,43958.50815501748,10,5,10,10_0,10_3,10_1_0 +10698,2,52.0,0.0,1,111,476.0,912.0,0.0,0,68,0.0,0.0,811.6754586451011,1388.0,0.0,1731.4356917210876,50,2,2,2,1,1,2,2,2,0,,1,,1,110709,1,2,3,0,2,,308.0,,22,3.0,1.0,5.0,4.0,2.5,4,4,1509.61292402071,476.0,33631.54324165422,0,1,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04127077934029795,13452.617296661687,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +10699,2,55.0,0.0,6,120,849.0,0.0,0.0,52,48,0.0,701.8934568154186,1447.71526132288,1569.0,263.261952825339,0.0,44,0,0,0,0,0,0,0,0,2,35.0,1,,4,110710,1,2,2,0,1,,258.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1435.77864484455,849.0,58213.7601455501,1,1,0,1,115.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026952390570151745,38809.17343036673,9,5,9,9_1,9_1,9_0_0 +10700,2,47.0,0.0,2,111,750.0,0.0,0.0,0,64,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,15.0,1,,2,110711,2,2,5,0,1,,0.0,434.0,32,2.0,3.0,2.0,2.0,1.5,2,2,484.955969205422,750.0,18597.921378302653,0,1,2,3,29.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.04032708735262161,12398.614252201769,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +10701,2,44.0,0.0,9,112,720.0,960.0,0.0,42,48,0.0,0.0,1227.744391227884,1680.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,110712,2,1,1,0,1,,302.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,923.198047785005,720.0,64119.64819525056,1,1,1,2,200.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02620101711856305,25647.859278100223,7,4,7,7_1,7_0,7_0_0 +10702,2,41.0,0.0,9,111,700.0,0.0,0.0,22,37,0.0,264.8654554020448,1193.6403803604428,900.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,110713,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1290.66205342778,700.0,10037.650956082682,1,1,1,2,180.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08966241244467782,4779.8337886108,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +10703,1,30.0,413.0,2,111,0.0,,,56,53,0.0,0.0,,433.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,110714,1,1,0,0,2,,862.0,520.0,43,2.0,0.0,3.0,4.0,2.1,2,2,116.90852406659972,0.0,11080.566238202671,4,4,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03907742534917918,5276.460113429844,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10704,2,41.0,0.0,8,111,449.0,1584.0,0.0,0,48,0.0,0.0,765.6350439740555,2033.0,0.0,3007.230411936626,50,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,110715,2,1,2,0,1,,197.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1052.616156095,449.0,30396.09210390518,0,1,1,2,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06688359783390732,23381.60931069629,6,3,6,6_1,6_3,6_0_0 +10705,2,68.0,0.0,1,111,413.0,1223.0,0.0,0,75,0.0,0.0,704.2478244126613,1636.0,0.0,2321.870450630362,33,0,0,0,0,0,0,0,0,0,,1,,1,110716,2,1,3,0,1,,157.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2510.29216657981,413.0,34739.642689483066,0,5,0,1,85.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047093172909785735,34739.642689483066,9,5,9,9_1,9_3,9_1_0 +10706,2,70.0,0.0,1,111,200.0,900.0,0.0,0,75,0.0,0.0,341.04010867441224,1100.0,0.0,1708.65364314581,60,0,0,0,0,0,0,0,0,0,,1,,1,110717,1,2,3,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1511.54755663252,200.0,22955.019009889587,0,5,0,1,50.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047919803487250126,22955.019009889587,6,3,6,6_1,6_2,6_1_0 +10707,2,42.0,0.0,1,300,1435.0,746.0,0.0,55,46,0.0,0.0,2446.9627797389076,2181.0,0.0,1416.2840197630826,10,0,0,0,0,0,0,0,0,2,18.0,1,,1,110718,2,1,1,0,1,,804.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,1150.3327406654,1435.0,44512.0,1,1,1,2,160.0,0,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04899802300503235,15897.142857142859,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10708,2,43.0,0.0,5,111,1370.0,0.0,0.0,85,62,0.0,0.0,2336.124744419724,1490.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,110719,2,1,2,0,1,,290.0,,42,1.0,0.0,5.0,4.0,2.3,3,2,393.065496823531,1370.0,29467.611267779866,6,1,1,2,88.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0505639899501857,12812.004899034726,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10709,2,51.0,0.0,6,112,495.0,0.0,0.0,54,48,0.0,529.7309108040896,844.0742689691702,1035.0,193.98249155551292,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,4,110720,2,2,2,0,1,,436.0,,43,2.0,2.0,4.0,4.0,2.3,3,3,1612.02090181148,495.0,111150.63376331702,1,1,0,1,94.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00931168779661588,48326.36250579001,10,5,10,10_1,10_1,10_0_0 +10710,2,56.0,0.0,6,112,800.0,0.0,0.0,11,11,0.0,662.163638505112,1364.160434697649,1600.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110721,2,1,2,0,1,,130.0,,43,4.0,2.0,6.0,4.0,2.5,4,4,737.202445360112,800.0,22042.51410021258,1,1,0,1,150.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07258700131599642,8817.005640085032,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10711,2,48.0,0.0,6,300,1586.0,0.0,0.0,46,22,0.0,0.0,2704.448061788089,1586.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,110722,2,1,2,0,1,,450.0,,43,2.0,0.0,9.0,4.0,2.5,4,4,1213.11813266394,1586.0,112485.2507871244,1,1,1,2,160.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014099626296797492,44994.10031484976,10,5,10,10_1,10_0,10_0_0 +10712,1,49.0,333.0,1,111,213.0,2297.0,0.0,0,68,0.0,0.0,363.207715738249,2510.0,0.0,4360.863798117695,70,2,2,2,2,1,1,2,2,0,,2,,1,110723,2,1,0,0,1,,0.0,305.0,32,1.0,0.0,5.0,2.0,1.5,2,1,1187.15760059933,213.0,6589.7122102005615,0,4,2,3,84.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.3808967554174277,4393.141473467041,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +10713,2,86.0,0.0,6,211,1830.0,0.0,0.0,75,75,0.0,0.0,3120.516994370872,1950.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,110724,2,2,2,0,2,,292.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1051.49477536211,1830.0,33113.73616413085,5,5,0,1,120.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05888794880573641,22075.82410942057,6,3,6,6_1,6_1,6_0_0 +10714,0,71.0,0.0,5,111,1030.0,0.0,0.0,0,77,0.0,0.0,1756.356559673223,1030.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,110725,2,1,1,0,1,,210.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,239.057551616334,1030.0,12640.913966152293,0,5,0,1,68.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08148145005637727,12640.913966152293,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10715,1,57.0,103.0,2,111,1140.0,120.0,0.0,85,64,0.0,0.0,1943.9286194441497,1260.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,110726,2,1,0,1,1,976.0,0.0,600.0,42,1.0,0.0,5.0,4.0,2.3,3,3,2249.24096110762,1140.0,25469.929262614354,6,1,2,3,81.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04947010205676039,11073.882288093198,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +10716,1,52.0,259.0,2,112,570.0,0.0,0.0,0,67,0.0,0.0,971.9643097220749,570.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,20.0,2,,2,110727,2,1,0,1,1,,0.0,329.0,32,2.0,2.0,4.0,2.0,1.5,2,2,672.870997617082,570.0,16462.43151457105,0,1,2,3,70.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03462428982592807,10974.954343047366,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +10717,2,50.0,0.0,9,112,1200.0,1200.0,0.0,38,37,0.0,158.91927324122688,2046.2406520464733,2520.0,0.0,2278.2048575277468,60,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,110728,2,1,1,0,1,,800.0,,43,2.0,1.0,7.0,4.0,2.3,3,3,226.738974268472,1200.0,162655.5919408417,1,1,1,2,198.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015492858068578001,70719.82258297465,10,5,10,10_1,10_0,10_0_0 +10718,2,51.0,0.0,2,111,0.0,0.0,0.0,52,68,0.0,0.0,0.0,90.0,124.70303028568689,0.0,71,2,2,2,2,1,2,2,2,2,90.0,2,,2,110729,2,3,0,1,2,,240.0,416.0,43,2.0,1.0,3.0,2.0,1.5,2,2,316.985680157506,0.0,45639.96368808632,1,1,2,3,80.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0019719559948618726,30426.64245872421,8,4,8,8_0,8_2,8_0_1 +10719,1,23.0,357.0,2,111,372.0,,,0,81,0.0,0.0,,570.0,274.3466666285112,,50,0,0,0,0,0,0,0,0,0,,2,,2,110730,2,1,0,0,2,,300.0,419.0,32,1.0,0.0,3.0,2.0,1.3,1,1,114.88059286215415,372.0,17932.00763535581,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03178673640960057,13793.852027196777,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +10720,2,46.0,0.0,6,112,830.0,0.0,0.0,56,53,0.0,0.0,1415.3164509988108,830.0,0.0,0.0,42,2,2,1,1,1,2,2,2,2,20.0,1,,4,110731,2,2,2,0,1,,600.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,953.147728879455,830.0,49278.15591020719,1,1,1,2,112.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.01684316274968558,24639.077955103596,7,4,7,7_1,7_1,7_0_0 +10721,2,36.0,0.0,2,111,550.0,300.0,0.0,68,62,0.0,0.0,937.8602988546337,850.0,0.0,569.5512143819367,60,0,0,0,0,0,0,0,0,3,60.0,2,,2,110732,2,1,0,1,1,519.0,0.0,337.0,43,2.0,0.0,3.0,5.0,2.4,2,2,196.68440570637,550.0,47580.611746529394,1,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01786441932541988,19825.25489438725,5,3,5,5_0,5_4,5_0_1 +10722,2,78.0,0.0,6,111,420.0,0.0,0.0,0,77,0.0,0.0,716.1842282162656,470.0,69.27946126982604,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,110733,2,1,2,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1481.7607909985,420.0,27117.33485259697,0,5,0,1,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017332086746533245,27117.33485259697,7,4,7,7_1,7_3,7_0_0 +10723,2,58.0,0.0,5,111,252.0,0.0,0.0,37,35,0.0,1234.2730221735287,429.7105369297594,1184.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,10.0,2,,3,110734,2,1,0,1,1,,320.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,876.598610133933,252.0,155354.29883032062,1,1,1,2,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007621288943495381,103569.53255354708,10,5,10,10_0,10_4,10_0_0 +10724,2,54.0,0.0,2,212,1060.0,0.0,0.0,43,22,0.0,264.8654554020448,1807.5125759743848,1660.0,554.2356901586083,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,110735,1,2,2,0,2,,1952.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1362.43689829289,1060.0,47645.8072007004,1,1,1,2,120.0,3,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03484042138288294,31763.871467133602,8,4,8,8_1,8_0,8_0_1 +10725,1,46.0,105.0,2,111,911.0,1500.0,0.0,46,54,0.0,0.0,1553.4376950119477,2411.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,110736,1,1,1,0,1,,460.0,,43,2.0,0.0,8.0,4.0,2.3,3,2,355.241576255454,911.0,96510.10341787133,1,1,1,2,200.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.024981840394065324,41960.914529509275,9,5,9,9_1,9_2,9_0_1 +10726,2,33.0,0.0,7,120,1200.0,0.0,0.0,42,43,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,33,2,2,2,2,2,2,2,1,2,15.0,2,,5,110737,1,3,0,0,1,,540.0,750.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1652.00328820647,1200.0,41079.19632879958,1,1,2,3,110.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.029211866522293923,19561.522061333133,5,3,5,5_0,5_1,5_0_0 +10727,2,54.0,0.0,8,111,1092.0,0.0,0.0,0,35,0.0,0.0,1862.0789933622907,1092.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,10.0,2,2003.0,6,110738,1,2,0,0,1,,0.0,,32,1.0,1.0,4.0,2.0,1.5,2,1,786.166943051408,1092.0,36222.22235570862,0,1,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030147239152704855,24148.148237139078,6,3,6,6_0,6_4,6_0_0 +10728,2,64.0,0.0,7,111,647.0,,,0,74,0.0,0.0,,695.0,66.50828281903301,,70,0,0,0,0,0,0,0,0,0,,1,,5,110739,2,1,0,0,2,,328.0,800.0,21,1.0,0.0,4.0,2.0,1.5,2,2,121.4197123667801,647.0,49482.794829503495,0,5,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014045285889664723,32988.529886335666,8,4,8,8_1,8_2,8_0_0 +10729,2,74.0,0.0,1,111,520.0,1780.0,0.0,74,74,0.0,0.0,886.7042825534718,2340.0,55.423569015860835,3379.3372053328244,12,0,0,0,0,0,0,0,0,0,,1,,1,110740,2,1,1,0,1,,330.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1427.15409837447,520.0,133128.55735070488,5,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017576995098321856,88752.3715671366,10,5,10,10_1,10_3,10_1_0 +10730,1,33.0,80.0,5,111,240.0,1380.0,0.0,0,54,0.0,0.0,409.2481304092947,1620.0,0.0,2619.935586156909,41,0,0,0,0,0,0,0,0,2,39.0,2,,3,110741,1,3,0,0,1,,0.0,328.0,32,1.0,0.0,3.0,2.0,1.3,1,1,310.08860206133,240.0,23586.903540632095,0,1,2,3,45.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06868218192393499,18143.77195433238,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +10731,1,32.0,643.0,5,111,780.0,,,84,53,0.0,0.0,,880.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,110742,2,2,0,0,2,,234.0,800.0,42,1.0,0.0,3.0,3.0,1.8,2,2,89.25458816119051,780.0,29266.79305560513,3,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030068207279425985,16259.329475336182,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +10732,0,76.0,0.0,2,111,0.0,,,0,74,0.0,0.0,,641.0,138.5589225396521,,41,0,0,0,0,0,0,0,0,0,,1,,2,110743,1,2,0,0,2,,400.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,83.996750295969,0.0,49688.81872071699,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012900286553456439,49688.81872071699,10,5,10,10_1,10_2,10_0_1 +10733,2,65.0,0.0,5,111,501.0,1257.0,0.0,74,72,0.0,0.0,854.3054722294027,1758.0,0.0,2386.419588260315,71,0,0,0,0,0,0,0,0,0,,2,,3,110744,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,840.71193277778,501.0,34111.66545150052,5,5,0,1,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05153662176065544,22741.110301000346,6,3,6,6_0,6_4,6_0_0 +10734,2,47.0,0.0,5,111,340.0,0.0,0.0,0,45,0.0,0.0,579.7681847465008,340.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,110745,2,1,0,0,1,587.0,0.0,312.0,12,1.0,0.0,3.0,1.0,1.0,1,1,721.10214114351,340.0,19356.89800659788,0,1,2,3,100.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01756479782473977,19356.89800659788,5,3,5,5_0,5_2,5_0_0 +10735,2,66.0,0.0,8,221,1823.0,0.0,0.0,74,74,0.0,0.0,3108.5805905672673,1823.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,110746,2,1,1,0,1,,448.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,518.234338724812,1823.0,67317.80996248442,5,5,0,1,123.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02708050070279976,44878.53997498961,10,5,10,10_1,10_1,10_0_0 +10736,1,53.0,232.0,2,111,516.0,,,0,90,0.0,0.0,,616.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,2,,2,110747,2,3,0,0,2,,350.0,238.0,32,1.0,0.0,3.0,2.0,1.3,1,1,99.21935212618025,516.0,4472.333268923714,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13773571041324545,3440.256360710549,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10737,1,24.0,118.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1014.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,110748,2,3,0,1,1,420.0,0.0,265.0,22,1.0,0.0,2.0,2.0,1.5,2,2,661.148100319612,0.0,8597.945303931663,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11793515359260529,5731.963535954442,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10738,2,59.0,0.0,2,111,445.0,0.0,0.0,37,75,0.0,0.0,758.8142418005672,445.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,110749,2,2,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2156.82172187585,445.0,29052.075432287184,1,5,0,1,88.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015317322200858904,19368.050288191454,5,3,5,5_0,5_2,5_0_1 +10739,2,70.0,0.0,2,112,390.0,2094.0,0.0,0,77,0.0,0.0,665.0282119151038,2484.0,0.0,3975.467476385918,50,0,0,0,0,0,0,0,0,0,,1,,2,110750,2,2,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,976.909903399571,390.0,32375.580923844034,0,5,0,1,110.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07672449201276196,32375.580923844034,8,4,8,8_1,8_2,8_0_1 +10740,2,39.0,0.0,2,111,928.0,0.0,0.0,68,64,0.0,0.0,1582.4261042492728,928.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,110751,1,1,0,1,1,583.0,0.0,410.0,43,2.0,0.0,3.0,5.0,2.4,2,2,615.037533704636,928.0,36242.442924204704,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025605337971857035,15101.017885085294,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +10741,2,74.0,0.0,2,111,516.0,0.0,0.0,0,77,4218.731404146406,0.0,879.8834803799836,4516.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,110752,2,2,1,0,2,,160.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,522.678090395848,516.0,30218.638685269565,0,5,0,1,130.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14944419062137893,30218.638685269565,8,4,8,8_1,8_3,8_0_1 +10742,1,65.0,139.0,2,111,370.0,390.0,0.0,85,78,0.0,0.0,630.9242010476627,760.0,0.0,740.4165786965177,71,2,2,2,1,2,2,1,2,0,,2,,2,110753,1,3,0,0,1,,130.0,380.0,41,0.0,0.0,2.0,2.0,1.5,2,2,1832.79536181445,370.0,18425.477947804717,7,5,2,3,40.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04124723397422368,12283.651965203144,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10743,1,32.0,280.0,6,221,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1781.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110754,2,1,1,0,1,,136.0,650.0,42,1.0,0.0,6.0,3.0,1.8,2,2,2999.65565908269,0.0,21480.312230619544,6,4,2,3,100.0,1,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08291313370488337,11933.506794788635,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +10744,2,60.0,0.0,2,111,200.0,100.0,0.0,0,43,0.0,0.0,341.04010867441224,1021.0,0.0,189.8504047939789,10,2,2,1,1,1,2,2,2,2,20.0,2,,2,110755,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2092.77917633806,200.0,26064.79039680378,0,1,1,2,56.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.039171617513762975,26064.79039680378,7,4,7,7_0,7_3,7_0_1 +10745,2,78.0,0.0,2,111,221.0,1189.0,0.0,75,75,0.0,0.0,376.84932008522554,1410.0,0.0,2257.321313000409,50,0,0,0,0,0,0,0,0,0,,1,,2,110756,2,2,2,0,1,,118.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,939.29386820745,221.0,25297.021650717877,6,5,0,1,78.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05573778682203037,16864.681100478585,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +10746,2,54.0,0.0,6,111,1600.0,0.0,0.0,0,78,0.0,0.0,2728.320869395298,1780.0,249.40606057137379,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,110757,2,2,2,0,1,,159.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1016.67853964449,1600.0,8749.922125846853,0,7,0,1,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.20343038193928203,8749.922125846853,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +10747,2,27.0,0.0,1,111,700.0,0.0,0.0,52,64,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,110758,2,2,5,0,1,,0.0,530.0,43,2.0,0.0,2.0,2.0,1.5,2,2,758.665118439422,700.0,36065.032685933926,1,1,2,3,48.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02107304342736434,24043.35512395595,6,3,6,6_1,6_3,6_1_0 +10748,2,46.0,0.0,2,111,210.0,240.0,0.0,0,47,0.0,0.0,358.0921141081328,450.0,0.0,455.6409715055494,20,0,0,0,0,0,0,0,0,3,45.0,2,,2,110759,2,2,0,1,1,310.0,0.0,552.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1001.92178014231,210.0,38531.53645369406,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011678745293242985,38531.53645369406,9,5,9,9_0,9_4,9_0_1 +10749,2,59.0,0.0,2,111,238.0,96.0,0.0,0,43,0.0,1334.9218952263057,405.83772932255056,1342.0,0.0,182.25638860221974,12,0,0,0,0,0,0,0,0,3,45.0,2,,2,110760,2,1,0,1,1,,171.0,,22,1.0,0.0,2.0,2.0,1.5,2,2,978.797649210851,238.0,59200.52033755902,0,1,0,1,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022668719672529383,39467.01355837268,9,5,9,9_0,9_4,9_0_1 +10750,2,50.0,0.0,9,111,360.0,,,0,85,0.0,0.0,,486.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,110761,2,1,0,0,2,,460.0,,31,0.0,0.0,4.0,2.0,1.5,2,2,73.7031739703013,360.0,11320.335895867967,0,6,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.042931588291244493,7546.890597245311,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +10751,1,40.0,27.0,9,120,2500.0,0.0,0.0,56,48,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,43,1,2,2,1,1,2,2,2,2,1.0,1,2005.0,6,110762,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,7.0,3.1999999999999993,3,2,1037.39608279739,2500.0,55156.92882816504,1,1,1,2,188.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.04532522120273334,17236.54025880158,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +10752,1,36.0,255.0,2,111,586.0,0.0,0.0,85,67,0.0,0.0,999.2475184160279,632.0,63.73710436823996,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,110763,2,1,0,1,2,612.0,312.0,389.0,42,1.0,2.0,4.0,2.0,1.5,2,2,532.60127140023,586.0,19714.39770307058,6,1,2,3,100.0,6,4,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03205778890732046,13142.931802047053,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10753,1,73.0,188.0,1,400,450.0,0.0,0.0,77,78,0.0,0.0,767.3402445174275,903.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110764,2,2,1,0,2,,200.0,270.0,41,0.0,2.0,3.0,2.0,1.5,2,2,889.718999161728,450.0,10407.993872572373,5,5,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08676023555121677,6938.662581714915,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +10754,2,52.0,0.0,6,111,1000.0,0.0,0.0,68,46,0.0,0.0,1705.2005433720612,1068.0,94.22006732696343,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,4,110765,2,2,0,0,1,,0.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1725.91698280824,1000.0,55764.14815766382,1,1,1,2,76.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019152090281741745,27882.07407883191,7,4,7,7_0,7_3,7_0_0 +10755,2,55.0,0.0,1,111,275.0,1056.0,0.0,53,52,0.0,0.0,468.93014942731685,1331.0,0.0,2004.8202746244172,50,2,2,2,2,1,2,2,2,1,7.0,2,,1,110766,1,3,0,0,1,,0.0,304.0,43,2.0,2.0,3.0,2.0,1.5,2,2,882.369417120557,275.0,29107.073552932707,4,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04572771623981738,19404.715701955138,5,3,5,5_0,5_4,5_1_0 +10756,2,55.0,0.0,1,111,1148.0,0.0,0.0,75,48,1792.9608467622227,397.2981831030672,1957.5702237911262,3148.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,110767,2,3,2,0,1,,600.0,,42,1.0,1.0,5.0,4.0,2.5,4,4,1170.07783593846,1148.0,63687.06594523257,5,1,0,1,90.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04942918869440633,25474.82637809303,7,4,7,7_1,7_3,7_1_0 +10757,2,31.0,0.0,9,120,650.0,0.0,0.0,0,62,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,110768,2,1,0,0,1,,0.0,550.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2088.48829367144,650.0,24494.71086450788,0,1,2,3,68.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02653634099195802,24494.71086450788,7,4,7,7_0,7_0,7_0_0 +10758,2,39.0,0.0,2,112,1008.0,412.8,0.0,56,47,0.0,229.63834983357285,1718.8421477190377,1594.0,0.0,783.702470989545,31,0,0,0,0,0,0,0,0,0,,1,,2,110769,2,1,1,0,1,,290.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,230.225722666882,1008.0,32107.92905632239,1,1,1,2,124.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04964505799187084,15289.490026820185,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +10759,2,81.0,0.0,1,111,550.0,0.0,0.0,0,75,0.0,0.0,937.8602988546337,640.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110770,2,1,2,0,1,,0.0,95.0,11,0.0,1.0,4.0,1.0,1.0,1,1,254.459218319503,550.0,21201.76931122606,0,5,2,3,80.0,8,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030186159966429232,21201.76931122606,5,3,5,5_1,5_3,5_1_0 +10760,2,88.0,0.0,2,111,600.0,1300.0,0.0,68,78,0.0,39.72981831030672,1023.1203260232367,1930.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,1,,2,110771,1,3,3,0,1,,700.0,,42,1.0,0.0,4.0,4.0,2.5,4,4,1763.97149185049,600.0,24016.80912165575,1,5,0,1,77.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08036038385547793,9606.7236486623,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +10761,1,40.0,130.0,2,221,660.0,1376.0,0.0,85,64,0.0,0.0,1125.4323586255605,2232.0,0.0,2612.3415699651496,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,110772,2,3,4,0,1,,720.0,528.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1838.69482229527,660.0,37344.77254525997,7,1,2,3,55.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05976740110801128,15560.321893858321,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +10762,0,49.0,0.0,1,111,12.0,8.0,0.0,56,63,0.0,0.0,20.462406520464732,20.0,0.0,15.188032383518312,71,0,0,0,0,0,0,0,0,2,45.0,2,,1,110773,2,3,0,0,1,,0.0,,43,3.0,0.0,2.0,4.0,2.3,3,3,900.507899809396,12.0,76671.92757501513,1,1,5,0,17.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0002608516654342905,33335.62068478919,8,4,8,8_0,8_4,8_1_0 +10763,2,74.0,0.0,1,111,480.0,0.0,0.0,0,75,0.0,0.0,818.4962608185893,480.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,110774,2,2,0,0,1,,178.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,992.352264045864,480.0,20598.999537589138,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023302102566879233,20598.999537589138,5,3,5,5_0,5_4,5_1_0 +10764,1,57.0,141.0,7,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1152.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,120.0,2,,5,110775,2,1,0,0,1,,0.0,380.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1148.02912999218,0.0,21688.353262204655,0,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05311606584754132,21688.353262204655,6,3,6,6_0,6_4,6_0_0 +10765,2,65.0,0.0,2,111,600.0,800.0,0.0,75,78,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,0,,2,,2,110776,2,1,0,0,1,,320.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,985.997143481412,600.0,58926.43124608128,5,5,0,1,94.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023758438622449286,29463.21562304064,8,4,8,8_0,8_2,8_0_1 +10766,1,26.0,105.0,2,111,238.0,110.0,0.0,0,55,0.0,0.0,405.83772932255056,348.0,0.0,208.8354452733768,50,2,2,2,2,2,2,2,1,0,,2,,2,110777,1,2,0,0,1,,0.0,232.0,12,1.0,0.0,1.0,1.0,1.0,1,1,638.744335679906,238.0,4667.199371932893,0,4,2,3,35.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0745629171302956,4667.199371932893,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10767,2,36.0,0.0,2,112,1096.0,,,55,42,0.0,0.0,,1216.0,166.2707070475825,,30,0,0,0,0,0,0,0,0,2,15.0,1,,2,110778,2,2,0,0,2,,240.0,721.0,43,2.0,0.0,5.0,4.0,2.1,2,2,85.23734910129548,1096.0,49079.51751352743,4,1,2,3,57.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02477611968505686,23371.198815965443,6,3,6,6_1,6_2,6_0_1 +10768,2,63.0,0.0,2,112,1155.0,0.0,0.0,0,78,0.0,0.0,1969.5066275947306,1155.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,110779,2,2,5,0,1,,0.0,419.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2682.72982166786,1155.0,20772.037100868944,0,5,2,3,25.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055603597971220824,20772.037100868944,5,3,5,5_1,5_1,5_0_1 +10769,0,64.0,0.0,1,111,1138.0,0.0,0.0,78,78,0.0,675.4069112752142,1940.5182183574057,1648.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,110780,2,1,1,0,1,,190.0,,41,0.0,8.0,6.0,2.0,1.5,2,2,275.057309830324,1138.0,30177.850179184014,5,5,5,0,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05460958915942768,20118.566786122676,5,3,5,5_1,5_3,5_1_0 +10770,1,48.0,326.0,2,111,1200.0,0.0,0.0,85,55,0.0,0.0,2046.2406520464733,1680.0,665.08282819033,0.0,71,2,2,1,1,1,2,2,2,3,90.0,2,,2,110781,1,3,0,0,2,,0.0,530.0,42,1.0,0.0,2.0,4.0,2.1,2,2,1259.63230617833,1200.0,27874.07412272184,6,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06027106021902018,13273.368629867542,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +10771,2,84.0,0.0,7,111,1200.0,,,0,77,0.0,0.0,,1300.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,5,110782,2,1,0,0,2,,1200.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,123.26389364856854,1200.0,9398.232580493304,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1383238804600603,9398.232580493304,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +10772,1,45.0,413.0,2,111,900.0,,,0,68,0.0,0.0,,1068.0,232.77898986661552,,60,0,0,0,0,0,0,0,0,0,,2,,2,110783,2,1,0,0,2,,540.0,410.0,32,1.0,1.0,4.0,3.0,1.8,2,1,99.6410430932962,900.0,17741.049154323457,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06019937100167104,9856.138419068588,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +10773,2,66.0,0.0,7,111,610.0,0.0,0.0,74,74,2376.200463385463,0.0,1040.1723314569574,2863.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,110784,2,1,2,0,1,,520.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,663.499089087557,610.0,121235.03290386908,5,5,1,2,270.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0236152862041961,80823.35526924605,10,5,10,10_1,10_4,10_0_0 +10774,2,48.0,0.0,9,111,689.0,,,34,34,0.0,0.0,,781.0,127.47420873647992,,20,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,110785,2,1,0,0,2,,220.0,700.0,43,2.0,1.0,4.0,3.0,2.0,3,2,199.92013256709203,689.0,130590.64014090522,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005980520496394791,65295.32007045261,10,5,10,10_1,10_2,10_0_0 +10775,0,105.0,0.0,1,211,1200.0,0.0,0.0,0,71,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110786,2,1,2,0,2,,220.0,,21,0.0,0.0,2.0,2.0,1.5,2,2,999.673010139625,1200.0,35192.3782750053,0,5,5,0,60.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034098292267228686,23461.5855166702,6,3,6,6_1,6_1,6_1_0 +10776,2,66.0,0.0,8,111,720.0,,,77,78,0.0,0.0,,996.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110787,1,1,0,0,2,,504.0,,41,1.0,2.0,5.0,4.0,2.3,3,3,82.75253144449648,720.0,57717.24212595096,5,5,0,1,245.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01725654177700525,25094.453098239548,7,4,7,7_1,7_3,7_0_0 +10777,2,26.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,299.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,110788,2,2,0,0,2,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2306.1968075163,0.0,22920.54339264222,0,1,3,4,43.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.013045065942720308,22920.54339264222,6,3,6,6_0,6_3,6_1_0 +10778,2,68.0,0.0,7,111,1080.0,0.0,0.0,46,74,0.0,503.2443652638851,1841.6165868418261,1460.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,110789,2,1,2,0,1,,180.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,1896.76228240174,1080.0,61604.49287386391,1,5,0,1,122.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02369957014319347,41069.66191590927,9,5,9,9_1,9_3,9_0_0 +10779,0,34.0,0.0,1,111,900.0,1300.0,0.0,0,35,0.0,0.0,1534.680489034855,2200.0,0.0,2468.055262321726,60,0,0,0,0,0,0,0,0,0,,1,,1,110790,2,1,1,0,1,,300.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1446.52320772132,900.0,17355.55939120818,0,1,5,0,180.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12676053536565673,17355.55939120818,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +10780,2,93.0,0.0,1,112,480.0,0.0,0.0,35,86,4746.072829664707,0.0,818.4962608185893,5060.0,110.84713803172167,0.0,20,2,2,2,1,1,1,2,2,0,,1,,1,110791,1,2,3,0,2,,483.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,561.609579676293,480.0,26564.891275071164,1,5,0,1,360.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.19047697005815978,17709.92751671411,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10781,2,62.0,0.0,6,112,21188.0,0.0,0.0,33,22,3164.0485531098047,0.0,36129.789112967235,24228.0,55.423569015860835,0.0,10,2,2,1,2,1,2,2,2,2,10.0,1,,4,110792,2,1,3,0,1,,458.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,799.620992042026,21188.0,173728.74732804231,4,1,1,2,200.0,9,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.1394587848737067,115819.16488536155,10,5,10,10_1,10_0,10_0_0 +10782,2,79.0,0.0,1,112,485.0,1053.0,0.0,0,78,0.0,0.0,827.0222635354497,1538.0,0.0,1999.1247624805978,70,0,0,0,0,0,0,0,0,0,,1,,1,110793,2,1,1,0,1,,288.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,454.410558939673,485.0,22303.668818332375,0,5,0,1,80.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06895726494718436,22303.668818332375,6,3,6,6_1,6_0,6_1_0 +10783,2,86.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,444.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,2,,2,110794,2,2,0,2,1,,273.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,333.325054248812,0.0,45601.332441554034,5,5,0,1,72.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.00973655760101007,30400.888294369357,8,4,8,8_0,8_3,8_0_1 +10784,2,57.0,0.0,7,212,1200.0,0.0,0.0,62,62,0.0,662.163638505112,2046.2406520464733,1796.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,110795,2,1,2,0,1,,200.0,,43,4.0,2.0,4.0,4.0,2.5,4,4,1195.85361001942,1200.0,60722.88232514793,4,1,1,2,96.0,3,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02957698862816003,24289.152930059172,7,4,7,7_1,7_0,7_0_0 +10785,2,62.0,0.0,2,111,318.0,180.0,0.0,0,86,0.0,0.0,542.2537727923154,498.0,0.0,341.730728629162,20,0,0,0,0,0,0,0,0,0,,2,,2,110796,2,1,0,1,1,,0.0,,31,0.0,0.0,4.0,2.0,1.5,2,2,711.567411810548,318.0,25100.11466988753,0,5,0,1,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019840546808236215,16733.40977992502,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +10786,2,43.0,0.0,2,111,447.0,1230.0,0.0,54,43,0.0,0.0,762.2246428873113,1677.0,0.0,2335.1599789659404,33,0,0,0,0,0,0,0,0,1,7.0,1,,2,110797,2,2,2,0,1,,717.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1086.35712602761,447.0,50009.120095035476,1,1,1,2,90.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0335338833559377,27782.84449724193,7,4,7,7_1,7_3,7_0_1 +10787,1,68.0,127.0,5,111,540.0,,,0,77,0.0,0.0,,666.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,2,,3,110798,2,3,0,0,2,,350.0,410.0,11,0.0,2.0,3.0,1.0,1.0,1,1,94.40365587054822,540.0,8988.446039344575,0,5,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07409512134631047,8988.446039344575,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10788,2,70.0,0.0,7,300,420.0,,,0,77,0.0,0.0,,588.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,5,110799,2,3,0,0,2,,1380.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,118.96131279135167,420.0,11023.550765791606,0,5,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05334034491179444,11023.550765791606,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10789,2,55.0,0.0,2,111,660.0,0.0,0.0,54,48,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,110800,2,1,2,0,1,,293.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,563.781510677374,660.0,67917.30839154271,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.009717699591319278,33958.654195771356,9,5,9,9_1,9_4,9_0_1 +10790,0,91.0,0.0,2,111,450.0,,,0,72,0.0,0.0,,522.0,99.7624242285495,,71,0,0,0,0,0,0,0,0,0,,1,,2,110801,2,2,0,0,2,,260.0,,21,0.0,5.0,5.0,2.0,1.5,2,2,68.96611006404868,450.0,23286.41800519769,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022416500463209324,15524.278670131795,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +10791,2,84.0,0.0,5,111,259.0,1140.0,0.0,0,74,0.0,0.0,441.64694073336386,1399.0,0.0,2164.2946146513596,41,0,0,0,0,0,0,0,0,0,,1,,3,110802,1,3,4,0,2,,206.0,1124.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1732.72957885098,259.0,30828.245510197245,0,5,2,3,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04538046122466633,30828.245510197245,8,4,8,8_1,8_3,8_0_0 +10792,1,41.0,200.0,1,111,1752.0,0.0,0.0,85,62,0.0,0.0,2987.511351987851,1872.0,166.2707070475825,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,,1,110803,2,2,4,0,1,,590.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,1627.04457079631,1752.0,34989.63521490732,6,1,1,2,125.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.053501558061469445,12959.12415366938,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +10793,1,82.0,68.0,2,111,0.0,1000.0,0.0,0,77,0.0,0.0,0.0,2398.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,110804,2,2,5,0,1,,360.0,571.0,11,0.0,3.0,2.0,1.0,1.0,1,1,439.400284081429,0.0,13550.948655983018,0,5,2,3,50.0,6,4,3,0,1,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.17696178037994664,13550.948655983018,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +10794,1,41.0,413.0,7,111,310.0,,,0,54,0.0,0.0,,373.0,87.29212119998083,,43,0,0,0,0,0,0,0,0,0,,2,,5,110805,2,1,0,0,1,,410.0,465.0,32,1.0,0.0,3.0,3.0,1.6,1,1,102.26958486943803,310.0,10977.170874711319,0,4,2,3,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033979611345879616,6860.731796694574,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10795,2,67.0,0.0,2,120,500.0,0.0,0.0,78,78,0.0,0.0,852.6002716860306,600.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110806,2,2,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1571.86160133924,500.0,25521.16795012892,5,5,0,1,88.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023509895831274802,17014.111966752615,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +10796,2,49.0,0.0,7,111,80.0,0.0,0.0,0,52,0.0,0.0,136.4160434697649,80.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,110807,2,2,0,0,1,,0.0,414.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1650.76024264085,80.0,21018.512790661407,0,1,2,3,53.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.003806168438118241,21018.512790661407,5,3,5,5_0,5_2,5_0_0 +10797,2,39.0,0.0,6,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,2119.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,110808,2,1,1,0,1,,1182.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,570.091657418249,0.0,55333.750427164865,1,1,1,2,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038294892062109794,26349.4049653166,7,4,7,7_1,7_4,7_0_0 +10798,1,49.0,220.0,9,112,200.0,0.0,0.0,62,56,0.0,0.0,341.04010867441224,328.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,110809,2,1,1,0,1,,288.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1602.0806549129,200.0,39590.52329815552,1,1,1,2,120.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.008284810926338051,16496.051374231465,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +10799,2,51.0,0.0,2,111,890.0,0.0,0.0,85,62,0.0,0.0,1517.6284836011343,890.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,2,110810,2,2,0,0,1,635.0,0.0,318.0,42,2.0,1.0,3.0,3.0,2.0,3,3,1477.78912864282,890.0,39092.21949382474,6,1,2,3,78.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.022766678677341154,19546.10974691237,5,3,5,5_0,5_2,5_0_1 +10800,2,52.0,0.0,2,111,1250.0,0.0,0.0,55,55,0.0,0.0,2131.5006792150766,1355.0,145.4868686666347,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,110811,2,1,1,0,2,,360.0,630.0,43,2.0,2.0,4.0,2.0,1.5,2,2,291.073026533133,1250.0,31487.171782452293,1,1,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04303339815216867,20991.447854968195,5,3,5,5_1,5_3,5_0_1 +10801,2,63.0,0.0,7,111,510.0,,,75,74,0.0,0.0,,594.0,116.38949493330776,,42,0,0,0,0,0,0,0,0,0,,1,,5,110812,2,2,0,0,2,,580.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,116.88476529525157,510.0,63193.59994437965,5,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009399686052429579,42129.066629586436,9,5,9,9_1,9_2,9_0_0 +10802,2,65.0,0.0,1,111,980.0,0.0,0.0,11,78,0.0,264.8654554020448,1671.09653250462,1300.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,110813,2,1,1,0,1,,180.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1511.84590853435,980.0,27588.312729887075,1,5,0,1,176.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04712140291898602,18392.208486591382,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +10803,2,60.0,0.0,7,112,714.0,1120.0,0.0,54,35,0.0,0.0,1217.5131879676517,1834.0,0.0,2126.324533692564,31,0,0,0,0,0,0,0,0,0,,1,,5,110814,2,1,3,0,1,,300.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,845.328325749047,714.0,35647.68998170959,1,5,0,1,112.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05144793395984435,23765.12665447306,6,3,6,6_1,6_1,6_0_0 +10805,2,81.0,0.0,1,111,280.0,1085.0,0.0,0,77,0.0,0.0,477.4561521441771,1365.0,0.0,2059.8768920146713,70,0,0,0,0,0,0,0,0,0,,1,,1,110816,2,1,1,0,2,,310.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1799.49934533197,280.0,24117.214618754802,0,5,0,1,64.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05659857581308353,24117.214618754802,6,3,6,6_1,6_3,6_1_0 +10806,0,65.0,0.0,1,111,26.0,81.0,0.0,77,77,0.0,0.0,44.33521412767359,107.0,0.0,153.77882788312291,41,0,0,0,0,0,0,0,0,0,,1,,1,110817,2,2,1,0,1,,533.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,299.020292328335,26.0,48611.456765184834,5,5,0,1,140.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0022011272058119562,32407.637843456556,8,4,8,8_1,8_3,8_1_0 +10807,1,63.0,33.0,2,111,203.0,120.0,0.0,0,77,0.0,0.0,346.15571030452844,323.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,2,,2,110818,2,1,0,1,1,329.0,0.0,247.0,11,0.0,2.0,2.0,1.0,1.0,1,1,273.56007104595,203.0,13788.471453044906,0,5,2,3,44.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023425366698545252,13788.471453044906,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +10808,2,61.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,409.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110819,2,3,0,0,1,,328.0,2.0,11,0.0,1.0,1.0,1.0,1.0,1,1,349.627865143564,0.0,5502.599999999999,0,7,3,4,35.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07432849925489769,5502.599999999999,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +10809,2,21.0,0.0,1,111,600.0,400.0,0.0,0,63,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,50,2,2,2,2,1,1,1,2,2,15.0,2,,1,110820,2,1,0,0,1,,680.0,422.0,22,2.0,0.0,1.0,2.0,1.5,2,2,1819.21692344218,600.0,23325.15953369744,0,1,2,3,35.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.042872161219532835,15550.106355798292,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +10810,2,48.0,0.0,7,111,900.0,,,54,48,0.0,0.0,,988.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,110821,2,1,0,0,2,,800.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,173.8725330184036,900.0,76811.63766222492,1,1,0,1,114.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012862634231868317,33396.36420096736,8,4,8,8_1,8_2,8_0_0 +10811,2,81.0,0.0,2,111,258.0,169.0,0.0,86,78,0.0,0.0,439.9417401899918,427.0,0.0,320.8471841018243,50,2,1,1,1,1,2,2,2,0,,2,,2,110822,1,3,0,1,2,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,675.420559534608,258.0,23132.827717669228,6,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01845861669880723,15421.88514511282,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +10812,1,82.0,83.0,1,112,410.0,0.0,0.0,0,86,1054.6828510366015,0.0,699.1322227825451,1510.0,138.5589225396521,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,110823,1,3,4,0,2,,225.0,405.0,11,0.0,5.0,3.0,1.0,1.0,1,1,845.41222617557,410.0,12564.976400141426,0,5,2,3,60.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,1,0.12017531525033379,12564.976400141426,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +10813,1,58.0,255.0,1,111,355.0,1245.0,0.0,0,75,0.0,0.0,605.3461928970817,1600.0,0.0,2363.637539685037,31,2,2,2,2,1,2,2,2,0,,2,,1,110824,2,3,0,0,1,,0.0,243.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1277.21142467774,355.0,9902.114902985624,0,7,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.16158164348482545,9902.114902985624,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +10814,2,60.0,0.0,6,300,800.0,0.0,0.0,77,78,0.0,264.8654554020448,1364.160434697649,1120.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110825,2,1,2,0,1,,300.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,313.222619467186,800.0,11463.539564028655,6,7,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09770106289984279,7642.359709352437,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10815,2,47.0,0.0,2,111,260.0,20.0,0.0,0,45,0.0,0.0,443.3521412767359,280.0,0.0,37.970080958795776,43,1,2,2,1,1,2,2,2,1,15.0,2,,2,110826,2,2,0,1,1,763.0,0.0,350.0,12,1.0,2.0,3.0,1.0,1.0,1,1,245.973680690639,260.0,20578.413244747986,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01360649126197626,20578.413244747986,5,3,5,5_0,5_4,5_0_1 +10816,1,41.0,78.0,7,111,480.0,,,0,43,0.0,0.0,,526.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,2,,5,110827,2,2,0,0,1,,480.0,220.0,12,1.0,0.0,1.0,1.0,1.0,1,1,166.2701413892021,480.0,8258.3101856755,0,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06369341768154657,8258.3101856755,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10817,2,35.0,0.0,5,111,1200.0,0.0,0.0,0,42,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,2,2,2,2,1,1,2,2,3,70.0,2,,3,110828,1,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,815.794228898644,1200.0,26781.524901015822,0,1,1,2,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.04480700798162856,26781.524901015822,7,4,7,7_0,7_4,7_0_0 +10818,0,76.0,0.0,1,400,843.0,0.0,0.0,78,78,611.7160536012289,0.0,1437.4840580626476,1500.0,106.69037035553211,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,110829,2,2,0,1,1,,370.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1551.19805032846,843.0,33103.4595256195,5,5,5,0,50.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04531248460116734,22068.97301707967,6,3,6,6_0,6_0,6_1_0 +10819,2,89.0,0.0,1,112,2200.0,0.0,0.0,0,71,0.0,0.0,3751.441195418535,2270.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,110830,2,2,3,0,1,,195.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1809.55358679938,2200.0,13353.213549313949,0,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16999653241647036,13353.213549313949,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10820,1,83.0,50.0,6,111,572.0,908.0,0.0,78,78,0.0,0.0,975.374710808819,1480.0,0.0,1723.8416755293283,71,0,0,0,0,0,0,0,0,0,,2,,4,110831,2,1,0,0,1,,0.0,257.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1396.69870579637,572.0,18973.317501475212,5,5,2,3,69.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07800428153299638,12648.878334316809,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +10821,2,64.0,0.0,5,112,1875.0,0.0,0.0,75,77,0.0,0.0,3197.2510188226147,1875.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,110832,2,1,3,0,1,,700.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1372.72875442403,1875.0,65083.34049028403,5,5,0,1,96.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02880921578203119,43388.89366018935,10,5,10,10_1,10_1,10_0_0 +10822,2,57.0,0.0,9,400,520.0,0.0,0.0,0,52,0.0,569.4607291143963,886.7042825534718,980.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,110833,2,1,1,0,1,,150.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1339.67060110628,520.0,19343.115341111188,0,1,1,2,72.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05066402090448904,19343.115341111188,5,3,5,5_1,5_0,5_0_0 +10823,2,34.0,0.0,1,111,480.0,0.0,0.0,46,46,0.0,0.0,818.4962608185893,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,75.0,2,,1,110834,2,2,0,0,1,,0.0,937.0,43,2.0,0.0,3.0,2.0,1.5,2,2,982.095657737482,480.0,67738.8960873212,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0070860322167228575,45159.26405821414,10,5,10,10_0,10_4,10_1_0 +10824,2,28.0,0.0,7,111,154.0,308.0,0.0,84,63,0.0,0.0,262.6008836792974,462.0,0.0,584.739246765455,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,110835,2,1,0,0,1,,180.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,1473.58306893204,154.0,27015.796219457523,3,1,1,2,33.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017101106191615957,18010.530812971683,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +10825,2,43.0,0.0,2,111,1280.0,0.0,0.0,0,62,936.5583717205021,0.0,2182.6566955162384,2168.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110836,2,1,2,0,1,,677.0,,22,1.0,0.0,5.0,3.0,2.0,3,3,599.819205938477,1280.0,58839.34971746041,0,1,0,1,89.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03684609042095943,29419.674858730206,8,4,8,8_1,8_4,8_0_1 +10827,2,64.0,0.0,5,112,648.0,1408.0,0.0,54,22,0.0,0.0,1104.9699521050957,2106.0,69.27946126982604,2673.093699499223,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,110838,2,1,2,0,1,,357.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,883.049661455308,648.0,166013.25927714043,1,1,0,1,120.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012685733712897416,110675.50618476029,10,5,10,10_1,10_0,10_0_0 +10828,2,57.0,0.0,6,111,1200.0,0.0,0.0,52,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,110839,2,1,2,0,1,,199.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1812.57478091287,1200.0,52626.31876544882,1,1,0,1,90.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02280227893857257,35084.212510299214,9,5,9,9_1,9_3,9_0_0 +10829,2,63.0,0.0,8,111,400.0,,,0,34,0.0,0.0,,400.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2001.0,6,110840,2,1,0,0,2,,70.0,900.0,12,1.0,2.0,4.0,1.0,1.0,1,1,126.08376933579424,400.0,96197.4769304234,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004158113214230217,96197.4769304234,10,5,10,10_0,10_2,10_0_0 +10830,2,32.0,0.0,5,111,800.0,,,54,22,0.0,0.0,,800.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,3,110841,2,2,0,0,1,,240.0,800.0,43,2.0,0.0,3.0,4.0,2.1,2,2,85.27660418104446,800.0,45053.4128714821,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01775670141309947,21454.00612927719,6,3,6,6_0,6_2,6_0_0 +10831,2,71.0,0.0,5,111,492.0,,,0,77,0.0,0.0,,636.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,3,110842,1,2,0,0,2,,500.0,,11,0.0,8.0,5.0,1.0,1.0,1,1,76.46728882834721,492.0,25652.920555344455,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024792498718727664,25652.920555344455,7,4,7,7_1,7_2,7_0_0 +10832,2,54.0,0.0,2,300,750.0,900.0,0.0,43,62,0.0,52.973091080408956,1278.9004075290459,1690.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,110843,2,2,2,0,1,,300.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1366.74367944489,750.0,61987.130713025545,1,1,0,1,150.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027263723623924332,41324.753808683694,9,5,9,9_1,9_0,9_0_1 +10833,2,50.0,0.0,8,120,600.0,,,85,12,0.0,66.2163638505112,,943.0,405.97764304118067,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,110844,2,2,0,0,2,,1400.0,,42,4.0,0.0,4.0,9.0,4.8,8,6,117.29757021890502,600.0,39812.04016455646,6,1,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023686301834878742,8294.175034282596,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +10834,2,62.0,0.0,9,400,800.0,0.0,0.0,77,75,1160.1511361402618,0.0,1364.160434697649,2706.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,110845,2,2,5,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,885.001603169953,800.0,40922.0,5,5,1,2,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06612580030301549,27281.333333333332,7,4,7,7_1,7_0,7_0_0 +10835,2,63.0,0.0,1,112,600.0,0.0,0.0,0,77,0.0,0.0,1023.1203260232367,900.0,415.67676761895626,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,110846,2,1,0,1,1,,200.0,550.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1227.95734289519,600.0,20734.31498997659,0,5,2,3,100.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0434063049796957,20734.31498997659,5,3,5,5_0,5_0,5_1_0 +10836,2,29.0,0.0,8,400,0.0,,,85,52,0.0,0.0,,150.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,110847,2,3,0,0,2,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,168.2587017445297,0.0,27696.5,6,1,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005415846767642121,11540.208333333334,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +10837,1,29.0,389.0,7,211,360.0,,,0,81,0.0,0.0,,426.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,2,,5,110848,1,3,0,0,2,,300.0,439.0,32,1.0,0.0,3.0,3.0,1.6,1,1,92.09064703438149,360.0,10955.255425800802,0,4,2,3,64.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038885446613752546,6847.034641125501,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10838,1,41.0,271.0,9,111,360.0,350.0,0.0,0,67,0.0,0.0,613.872195613942,710.0,0.0,664.4764167789261,71,2,2,2,1,2,1,1,2,0,,2,2008.0,6,110849,2,3,0,0,1,,100.0,289.0,12,1.0,0.0,2.0,1.0,1.0,1,1,473.591684722641,360.0,6060.0,0,4,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.11716171617161716,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10839,2,58.0,0.0,6,211,500.0,,,0,52,0.0,0.0,,650.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,1,5.0,2,,4,110850,2,2,0,0,2,,300.0,496.0,32,2.0,0.0,3.0,2.0,1.5,2,2,41.48161307231833,500.0,12550.414634146342,0,1,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.051791117580412264,8366.943089430895,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +10840,2,51.0,0.0,1,112,321.0,300.0,0.0,0,42,0.0,0.0,547.3693744224316,621.0,0.0,569.5512143819367,20,0,0,0,0,0,0,0,0,1,5.0,8,,1,110851,2,2,0,0,1,,320.0,182.0,12,1.0,5.0,3.0,1.0,1.0,1,1,1505.44978384147,321.0,31305.37719659636,0,1,2,3,70.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0198368477115017,31305.37719659636,8,4,8,8_0,8_1,8_1_0 +10841,2,46.0,0.0,9,111,600.0,,,42,35,0.0,0.0,,855.0,353.32525247611284,,20,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,110852,2,2,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,131.69432623185952,600.0,60177.15081017925,1,1,1,2,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014208050538932673,30088.575405089625,8,4,8,8_1,8_3,8_0_0 +10842,2,83.0,0.0,2,111,490.0,0.0,0.0,0,90,1808.7810895277717,0.0,835.54826625231,2250.0,62.351515142843446,0.0,70,1,2,2,1,1,2,2,2,0,,1,,2,110853,2,1,2,0,1,,220.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1367.35325712939,490.0,18711.487907226678,0,5,0,1,170.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.12024698469494849,18711.487907226678,5,3,5,5_1,5_3,5_0_1 +10843,2,37.0,0.0,9,111,280.0,,,0,52,0.0,0.0,,330.0,69.27946126982604,,60,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,110854,2,2,0,0,2,,350.0,576.0,12,1.0,1.0,3.0,1.0,1.0,1,1,113.76261563807253,280.0,18763.942266555474,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017586922583330812,18763.942266555474,5,3,5,5_0,5_3,5_0_0 +10844,2,81.0,0.0,1,111,370.0,0.0,0.0,0,71,1687.4925616585624,0.0,630.9242010476627,2153.0,253.56282824756335,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,110855,2,2,2,0,1,,120.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,1701.86749284714,370.0,13927.770498741122,0,5,0,1,100.0,6,5,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15458324792145314,13927.770498741122,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +10845,2,28.0,0.0,1,112,1280.0,0.0,0.0,46,38,0.0,26.486545540204478,2182.6566955162384,1300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,110856,2,3,2,0,1,,320.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,394.478317129916,1280.0,49611.04440043167,1,1,1,2,85.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026203842626394875,33074.02960028778,8,4,8,8_1,8_1,8_1_0 +10846,2,28.0,0.0,5,111,0.0,0.0,0.0,65,43,0.0,0.0,0.0,2394.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,110857,2,2,1,0,1,,161.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1473.10421691889,0.0,31290.400051163997,4,1,1,2,100.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07650908892457396,20860.266700776,5,3,5,5_1,5_3,5_0_0 +10847,2,49.0,0.0,5,120,720.0,0.0,0.0,85,65,0.0,238.3789098618403,1227.744391227884,1060.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,110858,1,2,2,0,1,,200.0,,42,2.0,0.0,4.0,5.0,2.8,4,4,198.548635233031,720.0,62636.99805942256,6,1,0,1,104.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016922905516551057,22370.356449793773,6,3,6,6_1,6_0,6_0_0 +10848,1,22.0,271.0,2,111,300.0,300.0,0.0,0,64,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,70,2,2,2,2,1,2,2,2,0,,2,,2,110859,1,3,0,1,1,1131.0,0.0,304.0,22,1.0,3.0,3.0,2.0,1.5,2,2,242.273322925712,300.0,19431.297351065678,0,1,2,3,68.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.030878020605613038,12954.198234043784,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +10850,2,51.0,0.0,1,400,924.0,0.0,0.0,67,67,0.0,1271.354185929815,1575.6053020757845,2120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,110861,2,1,1,0,1,,207.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,179.596697019755,924.0,29151.96441108486,1,1,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07272237198512367,19434.64294072324,5,3,5,5_1,5_0,5_1_0 +10851,2,50.0,0.0,1,300,1100.0,0.0,0.0,69,65,316.40485531098045,0.0,1875.7205977092674,1820.0,581.9474746665388,0.0,50,0,0,0,0,0,0,0,0,2,9.0,1,,1,110862,2,1,2,0,1,,150.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1408.54396403604,1100.0,40075.99325794272,1,1,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04541372158353908,26717.32883862848,7,4,7,7_1,7_0,7_1_0 +10852,1,43.0,326.0,2,111,300.0,1200.0,0.0,0,52,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,110863,2,1,0,0,1,,0.0,460.0,32,1.0,0.0,4.0,4.0,2.1,2,1,858.475012941159,300.0,26530.180228528756,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05653938220845563,12633.419156442264,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +10853,2,40.0,0.0,9,111,1000.0,,,56,21,0.0,0.0,,1078.0,108.07595958092864,,71,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,110864,1,1,0,0,2,,400.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,148.031666741988,1000.0,49712.84996492456,1,1,1,2,104.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021684534295671937,23672.78569758312,6,3,6,6_1,6_3,6_0_0 +10854,1,58.0,350.0,1,120,460.0,1100.0,0.0,85,63,0.0,0.0,784.3922499511482,1560.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,4.0,1,,1,110865,2,1,1,0,1,,120.0,400.0,42,1.0,3.0,3.0,3.0,2.0,3,2,406.073868942431,460.0,8923.107853660655,6,1,2,3,70.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17482698019390394,4461.553926830327,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +10855,2,67.0,0.0,9,112,1300.0,0.0,0.0,0,77,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,110866,2,1,1,0,1,,780.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2104.07855037433,1300.0,16951.670899203466,0,5,0,1,88.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07668860537288304,16951.670899203466,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10856,2,52.0,0.0,2,120,0.0,0.0,0.0,22,22,0.0,0.0,0.0,1532.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,110867,2,1,1,0,1,,413.0,,43,2.0,0.0,4.0,6.0,3.3,5,4,582.1814218309,0.0,38950.73038814686,1,1,0,1,100.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03933173998878862,11803.251632771777,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +10857,1,80.0,190.0,2,111,425.0,0.0,0.0,0,77,0.0,0.0,724.710230933126,425.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110868,2,1,0,0,2,,0.0,380.0,11,0.0,6.0,3.0,1.0,1.0,1,1,333.208030623651,425.0,9016.095949203287,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0471379189390232,9016.095949203287,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +10858,2,31.0,0.0,2,112,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1960.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,110869,2,3,3,0,1,,169.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1534.27205231379,0.0,19905.608255702824,0,1,1,2,71.0,7,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09846471279964394,15312.006350540632,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +10859,2,62.0,0.0,1,111,417.0,748.0,0.0,72,35,0.0,0.0,711.0686265861495,1165.0,0.0,1420.0810278589622,20,0,0,0,0,0,0,0,0,3,20.0,2,,1,110870,1,2,0,0,2,,0.0,,42,1.0,2.0,5.0,3.0,2.0,3,3,246.38957142757,417.0,101339.61855811407,5,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01149599748426052,50669.80927905704,10,5,10,10_0,10_4,10_1_0 +10860,2,51.0,0.0,7,111,960.0,,,85,56,0.0,0.0,,1440.0,665.08282819033,,60,0,0,0,0,0,0,0,0,0,,1,,5,110871,2,1,0,0,2,,480.0,,42,1.0,2.0,8.0,5.0,2.8,4,3,173.08496172642987,960.0,21725.021272095157,7,1,1,2,140.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06628301910339748,7758.9361686054135,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +10861,2,65.0,0.0,5,112,1997.0,0.0,0.0,75,74,0.0,0.0,3405.285485114006,1997.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,110872,2,2,1,0,1,,281.0,,41,0.0,3.0,7.0,3.0,2.0,3,3,1937.8286378884,1997.0,62002.228975064216,5,5,0,1,160.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032208519484084104,31001.114487532108,8,4,8,8_1,8_0,8_0_0 +10862,1,27.0,310.0,7,111,540.0,,,0,55,0.0,0.0,,628.0,121.93185183489385,,31,0,0,0,0,0,0,0,0,0,,2,,5,110873,2,2,0,0,2,,90.0,445.0,22,1.0,3.0,3.0,3.0,2.0,3,3,125.2699495359496,540.0,1258.6068062429226,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.4989644080144838,629.3034031214613,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10863,2,42.0,0.0,9,112,1500.0,0.0,0.0,0,46,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,110874,2,1,1,0,1,,88.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,213.137812856244,1500.0,39663.32607223322,0,1,0,1,95.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03781831098249959,39663.32607223322,9,5,9,9_1,9_0,9_0_0 +10864,2,33.0,0.0,1,112,1128.0,0.0,0.0,46,47,0.0,794.5963662061343,1923.466212923685,1758.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,110875,1,2,3,0,1,,178.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,825.222474188933,1128.0,43108.49758699683,4,1,1,2,170.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04078082277054999,23949.165326109352,6,3,6,6_1,6_0,6_1_0 +10865,0,54.0,0.0,5,111,420.0,,,0,63,0.0,0.0,,570.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,110876,2,1,0,0,2,,600.0,,32,3.0,1.0,3.0,3.0,2.0,3,3,79.64484672048923,420.0,28872.10956094321,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01974223597333076,14436.054780471604,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +10866,2,66.0,0.0,7,111,320.0,400.0,0.0,0,74,0.0,0.0,545.6641738790596,720.0,0.0,759.4016191759156,30,0,0,0,0,0,0,0,0,0,,2,,5,110877,2,1,0,0,1,,100.0,450.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1582.01035031157,320.0,26952.963655491047,0,5,2,3,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026713203386571426,26952.963655491047,7,4,7,7_0,7_2,7_0_0 +10867,2,33.0,0.0,9,112,1800.0,0.0,0.0,54,62,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,110878,2,1,1,0,1,,210.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,236.121511083452,1800.0,38147.53848194704,1,1,1,2,96.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047185220111956444,18165.494515212875,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10868,2,34.0,0.0,1,111,300.0,600.0,0.0,45,37,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,110879,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,764.28143153286,300.0,68270.4431629451,1,1,1,2,53.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0131828644769731,32509.734839497665,8,4,8,8_0,8_4,8_1_0 +10869,1,40.0,135.0,1,300,280.0,,,85,85,0.0,0.0,,544.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,,1,110880,2,1,0,0,2,,835.0,500.0,41,0.0,0.0,3.0,9.0,3.999999999999999,4,2,100.08979374069176,280.0,26523.871671650544,7,6,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.02050982627025158,6630.967917912638,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +10870,1,22.0,295.0,1,111,0.0,0.0,1100.0,85,81,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,60,0,0,0,0,0,0,0,0,0,,2,,1,110881,1,3,0,0,1,,300.0,270.0,42,1.0,0.0,4.0,3.0,1.8,2,2,1820.296677372,0.0,9113.057894982783,7,4,2,3,76.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12070591591496503,5062.809941657101,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +10871,2,72.0,0.0,2,400,2550.0,0.0,0.0,78,72,0.0,0.0,4348.261385598756,2550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110882,2,2,1,0,1,,450.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,888.441954968808,2550.0,48205.18608810705,5,5,0,1,108.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05289887265115492,32136.790725404702,8,4,8,8_1,8_0,8_0_1 +10872,1,77.0,203.0,2,111,240.0,590.0,0.0,0,86,0.0,0.0,409.2481304092947,830.0,0.0,1120.1173882844755,60,0,0,0,0,0,0,0,0,0,,2,,2,110883,1,1,0,0,1,,80.0,340.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1891.19233652549,240.0,17501.92034273232,0,6,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.047423367478909705,17501.92034273232,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +10873,2,49.0,0.0,5,111,900.0,,,71,52,0.0,0.0,,1130.0,318.68552184119983,,50,0,0,0,0,0,0,0,0,0,,1,,3,110884,2,1,0,0,2,,600.0,,42,2.0,1.0,3.0,3.0,2.0,3,3,99.98924133978386,900.0,33828.43010515462,7,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0334038557653261,16914.21505257731,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10874,2,71.0,0.0,6,112,1200.0,0.0,0.0,77,75,0.0,158.91927324122688,2046.2406520464733,1355.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,110885,2,1,2,0,1,,156.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1496.92973994579,1200.0,27315.705574460088,5,5,0,1,84.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04960516199394503,18210.47038297339,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +10875,1,51.0,405.0,7,120,1880.0,0.0,0.0,85,68,0.0,0.0,3205.777021539475,1970.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,110886,2,3,3,0,1,,450.0,462.0,42,1.0,2.0,4.0,4.0,2.3,3,2,834.013857442836,1880.0,34506.85717086033,7,4,2,3,87.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.057090102127978985,15002.981378634926,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +10876,2,54.0,0.0,5,112,1200.0,2200.0,0.0,54,38,0.0,0.0,2046.2406520464733,3400.0,0.0,4176.708905467536,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,110887,2,1,2,0,2,,400.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,808.713100249817,1200.0,78664.24999318515,4,1,0,1,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04322166677104974,39332.124996592574,9,5,9,9_1,9_1,9_0_0 +10877,0,50.0,0.0,2,111,1100.0,250.0,0.0,55,45,0.0,0.0,1875.7205977092674,1350.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,0,,2,,2,110888,2,2,0,1,1,703.0,0.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,227.78586261863,1100.0,48197.36517177179,1,1,5,0,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028009829898142803,19278.946068708716,5,3,5,5_0,5_4,5_0_1 +10878,1,28.0,64.0,5,111,276.0,0.0,0.0,0,52,0.0,0.0,470.6353499706889,276.0,0.0,0.0,30,2,2,2,2,1,2,1,2,3,75.0,2,,3,110889,1,3,0,1,2,291.0,0.0,629.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1253.01429676311,276.0,24060.735659402846,0,1,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.011470970958950718,24060.735659402846,6,3,6,6_0,6_4,6_0_0 +10879,2,60.0,0.0,1,112,1980.0,0.0,0.0,71,56,0.0,0.0,3376.297075876681,1980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110890,2,1,1,0,1,,425.0,,42,1.0,2.0,7.0,3.0,2.0,3,2,2300.33345807733,1980.0,18036.511499427663,7,1,0,1,210.0,7,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10977732584612217,9018.255749713831,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +10880,2,44.0,0.0,1,112,1420.0,0.0,0.0,47,47,0.0,1238.2460040045594,2421.3847715883267,2390.0,48.49562288887823,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,110891,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,836.697214312746,1420.0,67149.01473039629,1,1,1,2,190.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03559248053893069,25826.5441270755,7,4,7,7_1,7_0,7_1_0 +10881,0,93.0,0.0,2,111,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,110892,2,1,0,1,2,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,992.109390199207,600.0,36517.447570961296,0,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016430502127348038,36517.447570961296,9,5,9,9_0,9_4,9_0_1 +10882,2,62.0,0.0,1,400,880.0,3000.0,0.0,0,46,0.0,0.0,1500.5764781674138,3880.0,0.0,5695.512143819367,20,0,0,0,0,0,0,0,0,0,,1,,1,110893,2,1,1,0,2,,400.0,,12,1.0,2.0,9.0,1.0,1.0,1,1,243.932868485255,880.0,96476.19695575786,0,1,1,2,230.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04021717400178299,96476.19695575786,10,5,10,10_1,10_0,10_1_0 +10883,2,45.0,0.0,9,112,1000.0,,,54,55,0.0,0.0,,1138.0,191.2113131047199,,43,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,110894,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,115.66829146429319,1000.0,43990.78366016384,1,1,0,1,176.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02586905495458413,21995.39183008192,6,3,6,6_1,6_1,6_0_0 +10884,2,77.0,0.0,7,111,182.0,360.0,0.0,78,77,0.0,0.0,310.34649889371514,542.0,0.0,683.461457258324,50,0,0,0,0,0,0,0,0,0,,2,,5,110895,2,1,0,0,1,,281.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,1902.07641903772,182.0,32813.095560848415,5,5,0,1,48.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01651779543307392,21875.39704056561,6,3,6,6_0,6_3,6_0_0 +10885,2,73.0,0.0,7,300,540.0,,,0,77,0.0,0.0,,672.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,110896,2,2,0,0,2,,480.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,89.76897894460375,540.0,18300.19419699734,0,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03672092179821023,18300.19419699734,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10886,0,41.0,0.0,9,111,0.0,,,0,42,0.0,0.0,,874.0,0.0,,30,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,110897,2,2,0,0,1,,275.0,,32,1.0,0.0,5.0,5.0,2.6,3,3,206.03000556568716,0.0,84650.78174853773,0,1,5,0,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01032477174984976,32557.992980206818,8,4,8,8_1,8_2,8_0_0 +10887,2,55.0,0.0,7,111,560.0,978.4,0.0,47,43,0.0,0.0,954.9123042883542,1538.0,0.0,1857.4963605042894,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,110898,2,1,1,0,1,,396.0,,43,2.0,2.0,6.0,4.0,2.5,4,3,2766.85742531485,560.0,45057.95239412203,1,1,0,1,150.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034133819187945114,18023.180957648812,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10889,1,24.0,50.0,1,111,480.0,1200.0,0.0,84,46,0.0,0.0,818.4962608185893,1680.0,0.0,2278.2048575277468,41,2,2,2,2,2,1,2,2,1,7.0,2,,1,110900,1,3,0,0,2,,0.0,537.0,42,1.0,0.0,2.0,2.0,1.5,2,2,2024.98627597306,480.0,20973.737895286788,3,1,2,3,64.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,1,0.08010017138516493,13982.491930191192,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +10890,2,57.0,0.0,7,111,1240.0,,,85,37,0.0,0.0,,1282.0,58.19474746665388,,41,0,0,0,0,0,0,0,0,0,,1,,5,110901,2,2,0,0,2,,330.0,,42,1.0,1.0,9.0,3.0,2.0,3,2,125.91976137746684,1240.0,82852.20603591335,6,1,1,2,210.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015473335730424616,41426.10301795667,9,5,9,9_1,9_2,9_0_0 +10891,2,70.0,0.0,2,111,310.0,70.0,0.0,0,77,0.0,0.0,528.612168445339,380.0,0.0,132.89528335578524,70,0,0,0,0,0,0,0,0,0,,2,,2,110902,2,3,0,1,1,529.0,0.0,277.0,11,0.0,0.0,2.0,1.0,1.0,1,1,867.264438355924,310.0,19150.673758200257,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019842643908926975,19150.673758200257,5,3,5,5_0,5_4,5_0_1 +10892,2,50.0,0.0,1,112,1736.0,0.0,0.0,85,46,1582.0242765549024,264.8654554020448,2960.228143293898,3496.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,110903,2,1,2,0,1,,700.0,,42,1.0,1.0,7.0,4.0,2.5,4,3,1118.03889229621,1736.0,50000.431070023056,6,1,1,2,191.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06991939719687676,20000.172428009224,5,3,5,5_1,5_0,5_1_0 +10893,2,61.0,0.0,6,400,620.0,0.0,0.0,56,48,1054.6828510366015,476.7578197236806,1057.224336890678,1980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,110904,2,1,2,0,1,,463.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,960.78464121525,620.0,66465.8808202023,1,1,0,1,210.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02978972031313514,44310.58721346821,10,5,10,10_1,10_0,10_0_0 +10894,2,50.0,0.0,8,112,0.0,0.0,0.0,0,54,0.0,198.6490915515336,0.0,1306.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,110905,2,1,1,0,1,,244.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1144.52786062514,0.0,14594.56455200772,0,1,1,2,80.0,7,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08948536938845075,14594.56455200772,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +10895,2,33.0,0.0,9,120,510.0,0.0,0.0,0,55,1582.0242765549024,0.0,869.6522771197511,2130.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,110906,2,1,1,0,1,,320.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,165.890699342983,510.0,16998.719973484884,0,1,1,2,69.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1253035524629171,13075.938441142218,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10896,2,64.0,0.0,2,111,712.0,0.0,0.0,77,53,0.0,0.0,1214.1027868809076,1362.0,900.6329965077387,0.0,50,2,2,2,2,1,2,2,2,2,20.0,2,,2,110907,1,2,0,1,1,80.0,844.0,332.0,42,5.0,2.0,4.0,6.0,3.5,6,6,361.784210978152,712.0,60579.452091371604,7,1,2,3,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.022482870890705713,17308.41488324903,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +10897,2,26.0,0.0,2,221,0.0,0.0,0.0,52,62,0.0,0.0,0.0,2224.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,110908,2,3,2,0,1,,495.0,530.0,43,2.0,0.0,5.0,2.0,1.5,2,2,2701.00214658996,0.0,37548.326293377264,1,1,2,3,100.0,1,3,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05923033646355275,25032.217528918176,7,4,7,7_1,7_1,7_0_1 +10898,1,56.0,271.0,2,111,306.0,50.0,0.0,0,54,0.0,0.0,521.7913662718507,356.0,0.0,94.92520239698945,50,0,0,0,0,0,0,0,0,0,,2,,2,110909,2,1,0,1,1,557.0,155.0,282.0,12,1.0,1.0,2.0,1.0,1.0,1,1,369.806182742421,306.0,6060.0,0,4,2,3,53.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.058745874587458745,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +10899,1,51.0,468.0,5,111,0.0,0.0,0.0,81,53,0.0,0.0,0.0,621.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,110910,2,1,0,0,1,,471.0,426.0,43,2.0,5.0,4.0,2.0,1.5,2,2,345.94640194113,0.0,1840.376449713293,4,4,2,3,52.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.3374309642447032,1226.9176331421952,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +10900,2,70.0,0.0,2,111,396.0,1212.0,0.0,0,75,0.0,0.0,675.2594151753362,1608.0,0.0,2300.9869061030245,41,0,0,0,0,0,0,0,0,0,,1,,2,110911,2,2,5,0,1,,264.0,699.0,11,0.0,0.0,5.0,1.0,1.0,1,1,342.402794662668,396.0,24086.474993214993,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06675945734911246,24086.474993214993,6,3,6,6_1,6_3,6_0_1 +10901,1,63.0,190.0,2,111,150.0,220.0,0.0,0,74,0.0,0.0,255.78008150580916,370.0,0.0,417.6708905467536,20,2,2,2,2,1,2,2,2,0,,2,,2,110912,1,3,0,0,1,,0.0,265.0,11,0.0,1.0,3.0,1.0,1.0,1,1,989.59159250759,150.0,11758.24793751938,0,5,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,1,0.03146727318271351,11758.24793751938,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +10902,2,39.0,0.0,1,400,1074.0,0.0,0.0,47,52,843.7462808292812,0.0,1831.3853835815937,2054.0,249.40606057137379,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,110913,2,2,1,0,1,,670.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,1069.36784986309,1074.0,31276.59336927453,1,1,1,2,59.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0656721138312271,14893.615890130728,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +10903,2,88.0,0.0,2,111,540.0,,,86,78,0.0,0.0,,1044.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,1,,2,110914,1,1,0,0,2,,780.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,121.02859360856543,540.0,8992.620643170483,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11609518975904694,5995.080428780322,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +10904,2,53.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,885.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,110915,2,3,0,1,2,,0.0,420.0,32,1.0,1.0,1.0,3.0,2.0,3,2,874.69476463484,0.0,17531.640596829522,0,1,3,4,26.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05048015872285485,8765.820298414761,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +10905,0,80.0,0.0,2,111,356.0,,,0,86,0.0,0.0,,419.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,2,110916,2,1,0,0,2,,289.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,124.90905059896846,356.0,8921.81816766605,0,6,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04696352157439345,8921.81816766605,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +10906,2,54.0,0.0,7,111,400.0,940.0,0.0,42,46,0.0,0.0,682.0802173488245,1340.0,0.0,1784.5938050634018,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,110917,2,1,2,0,1,,540.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,368.505213092212,400.0,91448.69417712434,1,1,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014653024978187141,45724.34708856217,10,5,10,10_1,10_3,10_0_0 +10907,2,47.0,0.0,8,111,560.0,,,64,54,0.0,0.0,,626.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,2,40.0,1,1999.0,6,110918,2,1,0,0,2,,162.0,,43,2.0,2.0,4.0,4.0,2.3,3,2,120.10267272587804,560.0,47353.75561598019,1,1,1,2,103.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01321964840712122,20588.589398252258,5,3,5,5_1,5_2,5_0_0 +10908,2,47.0,0.0,2,111,83.0,81.0,0.0,55,47,0.0,0.0,141.53164509988108,164.0,0.0,153.77882788312291,60,0,0,0,0,0,0,0,0,2,25.0,2,,2,110919,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,663.958037206861,83.0,49679.26436665171,1,1,1,2,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0033011760961196633,27599.591314806505,7,4,7,7_0,7_4,7_0_1 +10909,2,60.0,0.0,5,221,390.0,0.0,0.0,55,64,1687.4925616585624,0.0,665.0282119151038,1990.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,110920,1,1,0,1,1,,400.0,,43,3.0,3.0,5.0,3.0,2.0,3,3,856.07036957141,390.0,62820.484433608755,1,1,0,1,88.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031677565334649924,31410.242216804378,8,4,8,8_0,8_1,8_0_0 +10910,2,26.0,0.0,7,111,650.0,990.0,0.0,0,47,0.0,0.0,1108.3803531918397,1640.0,0.0,1879.519007460391,10,0,0,0,0,0,0,0,0,2,45.0,2,,5,110921,2,1,0,0,2,,440.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,1391.40216239123,650.0,41553.52138383497,0,1,0,1,82.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03946717258571468,27702.34758922331,7,4,7,7_0,7_2,7_0_0 +10911,2,49.0,0.0,7,111,1400.0,1500.0,0.0,22,22,0.0,145.67600047112464,2387.2807607208856,3010.0,0.0,2847.7560719096837,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,110922,2,1,2,0,1,,800.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,265.237839724293,1400.0,32179.928507811004,1,1,1,2,140.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0935365657903617,21453.285671874004,6,3,6,6_1,6_2,6_0_0 +10912,2,39.0,0.0,7,111,720.0,,,42,21,0.0,0.0,,984.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,110923,2,2,0,0,2,,320.0,,43,2.0,5.0,4.0,5.0,2.8,4,4,96.2563870112737,720.0,54228.98493671791,4,1,0,1,55.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018145277864748365,19367.4946202564,5,3,5,5_1,5_2,5_0_0 +10913,2,50.0,0.0,7,400,396.0,1381.0,0.0,54,47,0.0,145.67600047112464,675.2594151753362,1887.0,0.0,2621.8340902048485,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,110924,2,1,2,0,1,,354.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,794.307482744604,396.0,58977.69716831649,1,1,0,1,130.0,0,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03199514546345696,28084.617699198327,8,4,8,8_1,8_0,8_0_0 +10914,2,66.0,0.0,1,112,2000.0,0.0,0.0,74,75,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,110925,2,1,3,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1551.62004370619,2000.0,106833.46292334486,5,5,0,1,230.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.018720726121505955,71222.30861556325,10,5,10,10_1,10_0,10_1_0 +10915,2,75.0,0.0,1,111,0.0,0.0,650.0,0,78,0.0,0.0,409.70688876958343,650.0,0.0,777.8758959170425,50,0,0,0,0,0,0,0,0,0,,2,,1,110926,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,309.703155890177,0.0,17261.086325359873,0,5,0,1,45.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.037656957838454484,17261.086325359873,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +10916,2,41.0,0.0,1,111,250.0,823.0,0.0,52,90,0.0,0.0,426.3001358430153,1073.0,0.0,1562.4688314544464,43,0,0,0,0,0,0,0,0,2,5.0,2,,1,110927,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,835.487794301913,250.0,44895.32232995982,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02390004001116079,21378.724919028482,6,3,6,6_0,6_4,6_1_0 +10917,2,77.0,0.0,2,211,350.0,1400.0,0.0,77,72,0.0,0.0,596.8201901802214,1750.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,0,,1,,2,110928,2,1,2,0,1,,217.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1304.58137464125,350.0,16016.027865044955,5,5,0,1,90.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.109265544162756,10677.351910029969,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +10918,2,80.0,0.0,5,120,600.0,1100.0,0.0,0,72,0.0,0.0,1023.1203260232367,1700.0,0.0,2088.354452733768,70,0,0,0,0,0,0,0,0,0,,1,,3,110929,2,1,1,0,1,,220.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2070.77398671982,600.0,10490.76092260713,0,5,0,1,100.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1620473493335049,10490.76092260713,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +10919,2,63.0,0.0,2,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,656.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,110930,2,1,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,217.899615858167,0.0,44801.056777118916,6,5,0,1,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014642511743942535,29867.371184745945,8,4,8,8_0,8_4,8_0_1 +10920,2,63.0,0.0,7,111,120.0,,,0,62,0.0,0.0,,140.0,27.711784507930417,,70,0,0,0,0,0,0,0,0,0,,1,,5,110931,2,1,0,0,2,,120.0,655.0,11,0.0,0.0,4.0,1.0,1.0,1,1,115.21739653157984,120.0,33693.13801237624,0,7,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0041551487412236545,33693.13801237624,9,5,9,9_1,9_3,9_0_0 +10922,2,68.0,0.0,1,300,3000.0,0.0,0.0,72,72,0.0,953.5156394473612,5115.6016301161835,3870.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,110933,2,1,1,0,2,,440.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,2154.39394335146,3000.0,22239.26936939604,5,5,0,1,170.0,0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1740165081738519,14826.17957959736,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +10923,2,42.0,0.0,2,111,910.0,,,0,54,0.0,0.0,,1464.0,767.6164308696726,,42,0,0,0,0,0,0,0,0,2,30.0,1,,2,110934,2,1,0,0,2,,752.0,,32,2.0,0.0,4.0,6.0,3.1,4,4,118.30299890384838,910.0,55542.63846275414,0,1,0,1,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02635812846704665,17916.98014927553,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +10924,2,76.0,0.0,5,111,650.0,0.0,0.0,86,74,1792.9608467622227,0.0,1108.3803531918397,2350.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,110935,2,1,2,0,1,,400.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,888.768104890183,650.0,60823.6169621601,6,5,0,1,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0386363080226221,40549.0779747734,9,5,9,9_1,9_4,9_0_0 +10925,2,50.0,0.0,5,120,650.0,0.0,0.0,0,63,0.0,0.0,1108.3803531918397,694.0,60.965925917446924,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,110936,2,3,0,0,2,,325.0,260.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1280.74362699489,650.0,14947.920848288031,0,4,2,3,41.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0464278615764468,14947.920848288031,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +10926,1,79.0,90.0,2,111,120.0,130.0,0.0,0,86,0.0,0.0,204.62406520464734,250.0,0.0,246.80552623217258,71,0,0,0,0,0,0,0,0,0,,2,,2,110937,2,1,0,1,1,466.0,0.0,259.0,11,0.0,11.0,2.0,1.0,1.0,1,1,522.3103275531,120.0,12847.2457925462,0,5,2,3,45.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.019459423757973607,12847.2457925462,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +10927,0,84.0,0.0,7,111,804.0,,,0,78,0.0,0.0,,870.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,5,110938,2,1,0,0,2,,650.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,99.56194567044426,804.0,16957.08085106383,0,5,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05130600058119196,16957.08085106383,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +10928,1,53.0,347.0,2,111,0.0,0.0,0.0,85,22,0.0,0.0,0.0,876.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,110939,2,2,0,1,1,976.0,0.0,405.0,42,2.0,0.0,5.0,5.0,2.8,4,3,267.910259542506,0.0,18130.330691579482,6,1,2,3,88.0,7,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04831682416067858,6475.118104135529,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10929,0,66.0,0.0,6,211,780.0,1600.0,0.0,86,78,0.0,0.0,1330.0564238302077,2380.0,0.0,3037.6064767036623,71,2,2,2,2,1,2,2,2,0,,2,,4,110940,2,2,0,0,1,,420.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,355.777039056935,780.0,25101.417155065385,6,5,5,0,80.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.09481536382178819,16734.278103376924,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +10930,1,81.0,300.0,8,211,700.0,,,81,86,0.0,0.0,,850.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,110941,2,3,0,0,2,,600.0,400.0,42,1.0,0.0,2.0,4.0,2.3,3,2,35.355300599177795,700.0,14585.98919777924,4,5,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.058275101432915845,6341.7344338170615,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10931,2,55.0,0.0,1,111,600.0,896.0,0.0,77,43,0.0,0.0,1023.1203260232367,1496.0,0.0,1701.059626954051,33,0,0,0,0,0,0,0,0,0,,1,,1,110942,2,2,1,0,1,,800.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,1434.95950794467,600.0,59877.90018394808,6,1,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02498417605500876,29938.95009197404,8,4,8,8_1,8_3,8_1_0 +10932,1,33.0,69.0,9,111,280.0,984.0,0.0,0,46,0.0,0.0,477.4561521441771,1264.0,0.0,1868.1279831727525,31,0,0,0,0,0,0,0,0,3,45.0,1,2007.0,6,110943,2,1,1,0,1,,130.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,832.145390885818,280.0,27354.572432844696,0,1,1,2,90.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04620799696661727,21041.97879449592,5,3,5,5_1,5_3,5_0_0 +10933,1,58.0,350.0,5,111,1500.0,0.0,0.0,85,68,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,40.0,2,,3,110944,1,1,0,1,2,,0.0,360.0,42,5.0,0.0,5.0,10.0,4.8999999999999995,7,6,180.985061911216,1500.0,30888.990825973106,6,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04856099082197014,6303.875678770022,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +10934,2,41.0,0.0,2,111,0.0,0.0,0.0,37,46,0.0,0.0,0.0,1606.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,110945,2,1,2,0,1,,864.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,803.448461254728,0.0,57821.917942515836,1,1,1,2,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027774934785051907,27534.246639293255,7,4,7,7_1,7_4,7_0_1 +10935,2,44.0,0.0,7,111,270.0,640.0,0.0,0,43,0.0,0.0,460.40414671045653,910.0,0.0,1215.0425906814648,33,0,0,0,0,0,0,0,0,2,15.0,2,,5,110946,1,3,0,0,2,,0.0,366.0,12,1.0,0.0,2.0,1.0,1.0,1,1,368.368964790318,270.0,31969.080393728265,0,1,2,3,51.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028465003959842552,31969.080393728265,8,4,8,8_0,8_3,8_0_0 +10936,2,44.0,0.0,7,112,203.0,0.0,0.0,0,47,0.0,0.0,346.15571030452844,203.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,2,,5,110947,1,3,0,0,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,542.763727863987,203.0,36640.36762375667,0,1,1,2,28.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005540337424681843,36640.36762375667,9,5,9,9_0,9_1,9_0_0 +10937,1,72.0,191.0,1,112,320.0,0.0,0.0,0,74,0.0,0.0,545.6641738790596,350.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110948,2,2,3,0,1,,104.0,410.0,11,0.0,3.0,2.0,1.0,1.0,1,1,936.896979700751,320.0,8900.404444288633,0,5,2,3,60.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.03932405568654738,8900.404444288633,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +10938,1,26.0,129.0,6,111,336.0,0.0,0.0,46,42,0.0,0.0,572.9473825730125,336.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,4,110949,2,1,0,1,1,612.0,0.0,480.0,43,2.0,0.0,2.0,2.0,1.5,2,2,855.679431913485,336.0,35105.7204301094,1,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009571089722227156,23403.813620072935,6,3,6,6_0,6_3,6_0_0 +10939,1,50.0,150.0,7,111,550.0,,,0,55,0.0,0.0,,706.0,216.15191916185728,,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,110950,1,2,0,0,2,,600.0,420.0,32,2.0,0.0,4.0,5.0,2.6,3,2,73.77779456709425,550.0,9389.697552447553,0,1,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07518879027322573,3611.422135556751,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10940,2,96.0,0.0,5,111,600.0,,,77,78,0.0,0.0,,750.0,207.83838380947813,,70,0,0,0,0,0,0,0,0,0,,1,,3,110951,2,1,0,0,2,,1000.0,,41,0.0,12.0,4.0,2.0,1.5,2,2,104.278361747097,600.0,17920.707963985886,6,5,0,1,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04185102516637332,11947.138642657257,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +10941,1,29.0,401.0,9,111,2244.0,0.0,0.0,85,63,0.0,0.0,3826.4700193269055,2244.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,110952,2,1,1,0,1,,880.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,262.069448799369,2244.0,23319.472780035107,6,4,1,2,127.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09622859063611393,8636.841770383373,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +10942,2,53.0,0.0,2,111,360.0,400.0,0.0,0,34,0.0,0.0,613.872195613942,760.0,0.0,759.4016191759156,10,0,0,0,0,0,0,0,0,1,15.0,2,,2,110953,2,3,0,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2266.84045264979,360.0,41700.46776798908,0,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018225215223686433,41700.46776798908,9,5,9,9_0,9_3,9_0_1 +10943,2,61.0,0.0,2,111,276.0,108.0,0.0,0,78,0.0,0.0,470.6353499706889,384.0,0.0,205.0384371774972,70,2,2,1,2,2,2,2,1,0,,2,,2,110954,2,1,0,1,1,122.0,0.0,466.0,11,0.0,1.0,5.0,1.0,1.0,1,1,233.185750540489,276.0,21719.268649139274,0,5,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01768015333311961,21719.268649139274,6,3,6,6_0,6_3,6_0_1 +10944,1,39.0,213.0,7,111,480.0,,,56,42,0.0,0.0,,568.0,121.93185183489385,,42,0,0,0,0,0,0,0,0,0,,2,,5,110955,2,3,0,0,2,,400.0,458.0,43,2.0,0.0,4.0,4.0,2.3,3,2,128.44360658366045,480.0,21320.620099120224,4,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026640876173364112,9269.834825704445,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +10945,0,37.0,0.0,6,111,890.0,0.0,0.0,0,56,0.0,0.0,1517.6284836011343,890.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,110956,2,3,0,0,1,,0.0,,32,1.0,0.0,1.0,2.0,1.3,1,1,1214.64664905932,890.0,17337.0,0,4,5,0,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0513352944569418,13336.153846153846,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +10946,1,83.0,84.0,2,111,253.0,798.0,0.0,0,77,0.0,0.0,431.41573747313146,1051.0,0.0,1515.0062302559516,71,0,0,0,0,0,0,0,0,0,,2,,2,110957,2,1,0,1,1,798.0,0.0,364.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1814.78743040189,253.0,16129.162241328619,0,5,2,3,86.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0651614748661258,16129.162241328619,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +10948,1,77.0,230.0,7,111,700.0,,,86,78,0.0,0.0,,780.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,5,110959,2,1,0,0,2,,500.0,250.0,41,0.0,3.0,3.0,2.0,1.5,2,2,53.42623762445469,700.0,14994.771470474916,5,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05201813188922817,9996.514313649945,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +10949,2,58.0,0.0,1,400,3796.0,0.0,0.0,11,11,2453.1923115111354,0.0,6472.941262640345,6242.0,166.2707070475825,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,110960,2,2,1,0,1,,1000.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,1250.88352991053,3796.0,40160.67158489779,1,1,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15542568771054294,20080.335792448896,5,3,5,5_1,5_0,5_1_0 +10950,2,51.0,0.0,1,120,430.0,250.0,0.0,54,62,0.0,423.78472864327165,733.2362336499863,1000.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,110961,2,1,2,0,1,,446.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,728.615646842374,430.0,52170.497056508895,1,1,0,1,160.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019167921649602876,34780.33137100593,9,5,9,9_1,9_0,9_1_0 +10951,2,44.0,0.0,2,111,882.0,1500.0,0.0,35,35,0.0,0.0,1503.9868792541579,2382.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,1,20.0,1,,2,110962,2,1,2,0,1,,580.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,1189.81218320897,882.0,73629.0,1,1,1,2,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0323513832864768,26296.07142857143,7,4,7,7_1,7_3,7_0_1 +10952,1,47.0,80.0,8,111,480.0,,,0,52,0.0,0.0,,522.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,2,45.0,2,1999.0,6,110963,2,1,0,0,2,,741.0,441.0,32,2.0,0.0,3.0,3.0,1.8,2,2,75.94736418827296,480.0,35694.52635511162,0,1,2,3,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014624090954641487,19830.292419506455,5,3,5,5_0,5_3,5_0_0 +10953,1,26.0,55.0,9,111,800.0,0.0,0.0,47,42,0.0,0.0,1364.160434697649,800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,2004.0,6,110964,2,1,0,0,1,,0.0,346.0,43,2.0,0.0,2.0,2.0,1.5,2,2,871.721756016557,800.0,35737.0,1,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02238576265495145,23824.666666666668,6,3,6,6_0,6_4,6_0_0 +10954,1,42.0,108.0,7,112,454.0,835.0,0.0,0,33,0.0,0.0,774.1610466909158,1289.0,0.0,1585.2508800297237,41,0,0,0,0,0,0,0,0,4,50.0,2,,5,110965,2,2,0,0,1,,0.0,550.0,32,1.0,0.0,3.0,3.0,2.0,3,2,700.320950585234,454.0,26962.813012815175,0,1,2,3,65.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04780658454988915,13481.406506407588,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +10955,1,26.0,252.0,9,111,900.0,0.0,0.0,47,43,0.0,0.0,1534.680489034855,900.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,4.0,2,2006.0,6,110966,2,1,0,0,1,,500.0,538.0,43,2.0,0.0,3.0,4.0,2.1,2,2,2341.16928778428,900.0,26174.746517057454,1,1,2,3,60.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03438428713773758,12464.165008122596,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +10956,1,55.0,348.0,1,112,480.0,0.0,0.0,0,53,0.0,0.0,818.4962608185893,515.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110967,2,2,5,0,1,,0.0,503.0,32,1.0,2.0,3.0,2.0,1.5,2,1,1345.91722295775,480.0,7739.3797299323,0,4,2,3,80.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06654280032393564,5159.586486621533,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +10957,2,36.0,0.0,1,111,250.0,440.0,0.0,43,34,0.0,0.0,426.3001358430153,690.0,0.0,835.3417810935072,12,0,0,0,0,0,0,0,0,3,75.0,2,,1,110968,2,1,0,0,1,,0.0,803.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1037.4062289759,250.0,69720.6954514887,1,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009896631058135362,46480.4636343258,10,5,10,10_0,10_4,10_1_0 +10958,2,51.0,0.0,2,112,912.0,0.0,0.0,0,67,0.0,750.8935660647969,1555.1428955553197,1529.0,69.27946126982604,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,110969,1,3,2,0,2,,250.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,899.184894392247,912.0,25833.424798122716,0,1,1,2,75.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.05918688721872876,25833.424798122716,7,4,7,7_1,7_0,7_0_1 +10959,2,57.0,0.0,2,111,500.0,0.0,0.0,52,47,3290.6104952341966,0.0,852.6002716860306,3725.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,110970,2,1,1,0,1,,200.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,389.064713824454,500.0,39807.94378488101,1,1,0,1,85.0,6,4,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09357428809007584,26538.629189920674,7,4,7,7_1,7_2,7_0_1 +10960,1,65.0,121.0,5,111,330.0,240.0,0.0,0,78,0.0,0.0,562.7161793127802,570.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,2,,3,110971,2,1,0,1,1,937.0,0.0,372.0,31,3.0,3.0,5.0,6.0,3.5,6,5,282.889552965489,330.0,41150.66475502394,0,5,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01385153808312199,11757.332787149699,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +10961,2,42.0,0.0,2,111,156.0,0.0,0.0,0,47,0.0,0.0,266.01128476604157,156.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,2,,2,110972,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,710.934761087975,156.0,23890.908533316066,0,1,0,1,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006529680517693864,23890.908533316066,6,3,6,6_0,6_4,6_0_1 +10962,0,45.0,0.0,7,111,480.0,,,0,52,0.0,0.0,,710.0,318.68552184119983,,50,0,0,0,0,0,0,0,0,0,,1,,5,110973,2,2,0,0,2,,350.0,,32,2.0,2.0,4.0,3.0,1.8,2,2,116.69789537825717,480.0,33209.78551116871,0,4,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021379240759059448,18449.88083953817,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +10963,2,64.0,0.0,8,112,1500.0,0.0,0.0,77,75,0.0,450.2712741834761,2557.8008150580918,1900.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,110974,2,1,1,0,1,,500.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1584.60602103667,1500.0,54047.02304160377,5,5,0,1,134.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03515457268640749,36031.34869440251,9,5,9,9_1,9_0,9_0_0 +10964,2,77.0,0.0,1,112,454.0,0.0,0.0,86,75,0.0,0.0,774.1610466909158,454.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,110975,2,1,2,0,1,,220.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,723.047675518035,454.0,29481.392934245872,5,5,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015399543739760994,19654.261956163915,5,3,5,5_1,5_0,5_1_0 +10965,2,72.0,0.0,2,111,420.0,110.0,0.0,75,75,0.0,0.0,716.1842282162656,530.0,0.0,208.8354452733768,60,2,2,1,1,1,2,2,2,0,,3,,2,110976,1,2,0,1,2,468.0,0.0,486.0,41,0.0,1.0,3.0,2.0,1.5,2,2,859.627951473178,420.0,32232.986965427517,5,5,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.016442782686211112,21488.65797695168,6,3,6,6_0,6_4,6_0_1 +10966,2,44.0,0.0,1,112,700.0,0.0,0.0,0,52,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,110977,2,2,0,0,1,,0.0,468.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1087.56406735685,700.0,21022.31088768282,0,1,2,3,35.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03329795681073944,21022.31088768282,5,3,5,5_0,5_2,5_1_0 +10967,2,20.0,0.0,8,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,998.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,10.0,2,2003.0,6,110978,2,2,0,0,1,,234.0,580.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1777.59580121619,0.0,13818.708895011048,0,1,2,3,52.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07222092943576709,13818.708895011048,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +10968,2,37.0,0.0,6,111,400.0,380.0,0.0,63,35,0.0,0.0,682.0802173488245,780.0,0.0,721.4315382171199,10,0,0,0,0,0,0,0,0,3,60.0,2,,4,110979,2,1,0,0,1,,0.0,661.0,43,2.0,0.0,5.0,5.0,2.6,3,2,878.990208815992,400.0,40917.99639075868,1,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019062516955892856,15737.690919522569,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +10969,2,58.0,0.0,2,111,324.0,168.0,0.0,0,74,0.0,0.0,552.4849760525478,492.0,0.0,318.9486800538846,12,2,1,2,1,1,2,2,2,0,,2,,2,110980,2,1,0,1,1,545.0,0.0,287.0,11,0.0,1.0,3.0,1.0,1.0,1,1,362.308089747963,324.0,18922.833375883056,0,7,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026000334634191127,18922.833375883056,5,3,5,5_0,5_3,5_0_1 +10970,1,21.0,305.0,2,111,0.0,0.0,0.0,84,63,0.0,0.0,0.0,314.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,7.0,2,,2,110981,2,1,0,0,1,,260.0,464.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1924.67599102293,0.0,12281.765725458776,3,1,2,3,50.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025566356419672774,8187.843816972517,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +10971,2,45.0,0.0,2,111,645.0,1219.0,0.0,46,48,0.0,0.0,1099.8543504749794,1864.0,0.0,2314.276434438603,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,110982,2,2,5,0,1,,468.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,402.908379625688,645.0,51733.8415892553,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03603057385143302,25866.92079462765,7,4,7,7_1,7_3,7_0_1 +10972,1,24.0,310.0,9,111,0.0,,,84,43,0.0,0.0,,223.0,0.0,,20,0,0,0,0,0,0,0,0,2,20.0,2,2004.0,6,110983,2,2,0,0,2,,0.0,780.0,42,1.0,0.0,2.0,2.0,1.5,2,2,181.53677273196203,0.0,18046.746350965135,3,1,3,4,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012356798043436456,12031.164233976757,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +10973,2,39.0,0.0,7,400,857.0,0.0,0.0,0,12,0.0,0.0,1461.3568656698565,962.0,145.4868686666347,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,110984,2,1,3,0,1,,288.0,,22,3.0,0.0,6.0,3.0,2.0,3,3,1597.69640169358,857.0,44378.42874473102,0,1,1,2,200.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021677198296801276,22189.21437236551,6,3,6,6_1,6_0,6_0_0 +10974,2,36.0,0.0,9,112,0.0,0.0,0.0,85,48,0.0,0.0,0.0,1401.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,1.0,1,2009.0,6,110985,1,1,1,0,1,,292.0,850.0,42,1.0,0.0,4.0,3.0,1.8,2,2,1314.39745279747,0.0,31285.197696284937,7,1,2,3,100.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044781561350541385,17380.665386824963,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +10975,1,24.0,108.0,7,111,0.0,,,85,68,0.0,0.0,,413.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,110986,2,2,0,0,2,,374.0,434.0,42,1.0,0.0,2.0,2.0,1.5,2,2,144.1627806676667,0.0,23166.441340782127,6,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017827511525171376,15444.294227188084,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +10976,2,68.0,0.0,7,111,450.0,,,0,75,0.0,0.0,,588.0,191.2113131047199,,10,0,0,0,0,0,0,0,0,0,,1,,5,110987,1,1,0,0,2,,445.0,,21,2.0,0.0,4.0,4.0,2.3,3,3,96.34252728089929,450.0,65107.44359709446,0,5,0,1,181.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009031225425447983,28307.584172649767,8,4,8,8_1,8_3,8_0_0 +10977,2,39.0,0.0,9,120,700.0,0.0,0.0,0,65,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,110988,1,1,1,0,1,,300.0,605.0,32,1.0,0.0,3.0,2.0,1.3,1,1,3027.11019555883,700.0,26370.80169946765,0,1,2,3,55.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026544509642804335,20285.232076513577,5,3,5,5_1,5_1,5_0_0 +10978,1,67.0,154.0,7,112,528.0,,,0,77,0.0,0.0,,612.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,2,,5,110989,2,1,0,0,2,,104.0,450.0,11,0.0,4.0,3.0,1.0,1.0,1,1,93.51175401094162,528.0,9571.30655709294,0,5,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06394111361384298,9571.30655709294,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +10979,2,30.0,0.0,2,111,408.0,84.0,0.0,46,46,0.0,0.0,695.7218216958009,492.0,0.0,159.4743400269423,42,2,1,2,2,1,2,2,2,0,,2,,2,110990,2,1,0,1,1,,147.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,747.475118680537,408.0,91961.05038732111,1,1,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005350091130188235,38317.10432805047,9,5,9,9_0,9_4,9_0_1 +10980,2,63.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,493.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,110991,1,2,0,1,1,,0.0,288.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1169.93712852088,0.0,17782.96816039321,0,5,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02772315597449166,17782.96816039321,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +10981,2,77.0,0.0,1,111,692.0,997.0,0.0,0,72,0.0,52.973091080408956,1179.9987760134663,1729.0,0.0,1892.8085357959696,71,2,2,2,2,1,2,2,2,0,,2,,1,110992,2,3,0,0,1,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1058.59486186588,692.0,32411.630233141295,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.05334504890877337,32411.630233141295,8,4,8,8_0,8_4,8_1_0 +10982,2,31.0,0.0,6,111,0.0,0.0,1288.0,46,46,0.0,0.0,811.84995805419,1288.0,0.0,1541.391006063309,50,0,0,0,0,0,0,0,0,2,5.0,2,,4,110993,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,672.383997903037,0.0,20704.122314570963,1,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06220983340566641,11502.290174761645,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +10983,1,88.0,141.0,7,112,960.0,0.0,0.0,0,86,0.0,0.0,1636.9925216371787,1035.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,110994,2,1,2,0,1,,450.0,371.0,11,0.0,6.0,3.0,1.0,1.0,1,1,819.565083223437,960.0,11611.201834862386,0,6,2,3,82.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08913805949806458,11611.201834862386,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +10984,2,80.0,0.0,2,111,0.0,1600.0,0.0,0,77,0.0,0.0,0.0,1672.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,0,,1,,2,110995,2,1,2,0,1,,312.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,236.732917067063,0.0,14373.373594779085,0,5,0,1,80.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1163262047684706,14373.373594779085,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +10985,2,61.0,0.0,2,111,216.0,108.0,0.0,52,64,0.0,0.0,368.3233173683652,324.0,0.0,205.0384371774972,42,0,0,0,0,0,0,0,0,3,90.0,2,,2,110996,1,2,0,1,1,612.0,0.0,504.0,43,2.0,1.0,3.0,2.0,1.5,2,2,626.482857672929,216.0,36342.819831207555,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008915103492376269,24228.54655413837,7,4,7,7_0,7_4,7_0_1 +10986,2,68.0,0.0,1,211,1000.0,2400.0,0.0,74,74,0.0,0.0,1705.2005433720612,3400.0,0.0,4556.4097150554935,41,0,0,0,0,0,0,0,0,0,,1,,1,110997,2,2,1,0,1,,320.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2541.59122047786,1000.0,123391.56844819296,5,5,0,1,140.0,2,2,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027554556950360184,82261.04563212865,10,5,10,10_1,10_1,10_1_0 +10987,2,41.0,0.0,9,212,1200.0,0.0,0.0,45,64,0.0,0.0,2046.2406520464733,1350.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,110998,2,1,1,0,1,,590.0,,43,2.0,4.0,5.0,5.0,2.8,4,2,878.610272026831,1200.0,44208.9563482285,1,1,1,2,140.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03053679868319479,15788.91298151018,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +10988,1,67.0,93.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,359.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,110999,1,3,0,1,1,1019.0,109.0,416.0,21,1.0,5.0,3.0,3.0,1.8,2,2,294.20918795168,0.0,20771.09653607365,0,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01728363254084907,11539.498075596473,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +10989,2,89.0,0.0,1,112,1700.0,0.0,0.0,0,71,0.0,357.56836479276046,2898.840923732504,2063.0,128.85979796187644,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111000,2,1,3,0,1,,120.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1357.42862543857,1700.0,17510.134426911707,0,5,0,1,200.0,5,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1178174849891118,17510.134426911707,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +10990,1,29.0,240.0,1,111,620.0,0.0,0.0,0,64,0.0,0.0,1057.224336890678,620.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,1,111001,2,3,0,0,1,,320.0,403.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2455.93291131994,620.0,7956.0,0,4,2,3,30.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07792860734037205,7956.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +10991,2,65.0,0.0,1,211,0.0,0.0,2260.0,0,34,0.0,0.0,1424.519336337321,2260.0,0.0,2704.6146534961786,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,111002,2,1,1,0,1,,114.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2398.29316141082,0.0,65965.73589169225,0,1,0,1,120.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03426021053885681,65965.73589169225,10,5,10,10_1,10_1,10_1_0 +10993,2,82.0,0.0,6,112,523.0,1116.0,0.0,0,77,0.0,0.0,891.819884183588,1639.0,0.0,2118.7305175008046,44,2,2,1,1,2,2,2,2,0,,2,,4,111004,2,2,0,0,1,,713.0,418.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1362.35258616624,523.0,20949.295432725023,0,5,2,3,66.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.07823652137912515,20949.295432725023,5,3,5,5_0,5_1,5_0_0 +10994,2,48.0,0.0,6,221,1230.0,0.0,0.0,85,47,0.0,198.6490915515336,2097.396668347635,1520.0,193.98249155551292,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,111005,2,1,2,0,1,,464.0,,42,2.0,0.0,7.0,5.0,3.0,5,4,2108.58332823937,1230.0,47797.51953175347,5,1,1,2,150.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03180081340811449,15932.50651058449,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +10995,2,64.0,0.0,1,112,2000.0,3000.0,0.0,85,31,0.0,0.0,3410.4010867441225,5000.0,0.0,5695.512143819367,10,2,2,1,2,1,2,2,2,2,10.0,1,,1,111006,1,2,3,0,2,,700.0,,42,2.0,1.0,5.0,5.0,2.8,4,4,512.361247361478,2000.0,108493.71980112819,6,1,1,2,220.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.04608561683722459,38747.7570718315,9,5,9,9_1,9_1,9_1_0 +10996,2,62.0,0.0,7,111,780.0,0.0,0.0,0,45,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,20,2,2,2,1,1,2,2,2,2,20.0,2,,5,111007,1,2,0,0,1,,0.0,622.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1400.64430861278,780.0,43033.44832916776,0,1,2,3,24.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01812543568513708,43033.44832916776,9,5,9,9_0,9_2,9_0_0 +10997,2,50.0,0.0,7,112,432.0,,,21,33,0.0,0.0,,708.0,382.4226262094398,,10,0,0,0,0,0,0,0,0,0,,1,,5,111008,2,1,0,0,2,,160.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,181.0881822304678,432.0,73275.41400693203,1,1,1,2,120.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00966217672865037,29310.16560277281,8,4,8,8_1,8_1,8_0_0 +10998,2,44.0,0.0,1,111,620.0,2274.0,0.0,0,35,0.0,145.67600047112464,1057.224336890678,3004.0,0.0,4317.19820501508,10,0,0,0,0,0,0,0,0,1,5.0,1,,1,111009,2,1,2,0,1,,450.0,,32,1.0,0.0,7.0,4.0,2.3,3,1,1461.50409151144,620.0,53235.24133869767,0,1,1,2,280.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056428785226833145,23145.757103781598,6,3,6,6_1,6_2,6_1_0 +10999,1,49.0,100.0,9,111,1500.0,,,0,63,0.0,0.0,,1764.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,111010,2,1,0,0,2,,800.0,525.0,32,1.0,0.0,4.0,3.0,1.8,1,1,32.39294006959973,1500.0,24678.82290170531,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07147828755957836,13710.45716761406,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +11000,2,36.0,0.0,1,112,1420.0,0.0,0.0,67,47,0.0,0.0,2421.3847715883267,1520.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,111011,2,1,1,0,1,,155.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,595.319776626598,1420.0,47991.48652133326,1,1,1,2,90.0,4,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03167228419407944,26661.936956296253,7,4,7,7_1,7_0,7_1_0 +11001,1,50.0,390.0,1,111,0.0,0.0,800.0,0,37,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,20,0,0,0,0,0,0,0,0,0,,2,,1,111012,2,3,0,1,1,270.0,0.0,372.0,32,1.0,0.0,3.0,2.0,1.5,2,2,700.450345718301,0.0,5916.528187062814,0,4,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.13521443229989072,3944.3521247085428,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +11002,2,58.0,0.0,5,112,550.0,0.0,0.0,78,54,2109.365702073203,198.6490915515336,937.8602988546337,2820.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,111013,2,1,2,0,1,,300.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,626.358596362258,550.0,46550.99500105292,7,1,0,1,125.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06057872661875896,31033.996667368614,8,4,8,8_1,8_0,8_0_0 +11003,2,48.0,0.0,1,300,1260.0,0.0,0.0,68,63,1687.4925616585624,0.0,2148.552684648797,3060.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,1,111014,2,1,2,0,1,,396.0,,43,2.0,2.0,7.0,5.0,2.5999999999999996,3,3,1367.10307459708,1260.0,30760.860865945902,1,1,0,1,172.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09947705993454824,11831.100333056118,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11004,2,88.0,0.0,1,111,162.0,84.0,0.0,0,75,0.0,0.0,276.2424880262739,246.0,0.0,159.4743400269423,60,2,2,2,2,1,2,2,2,0,,2,,1,111015,2,2,0,1,1,559.0,0.0,440.0,11,0.0,2.0,2.0,1.0,1.0,1,1,835.497618643108,162.0,23241.591685600186,0,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.010584473014058432,23241.591685600186,6,3,6,6_0,6_4,6_1_0 +11005,2,42.0,0.0,9,111,0.0,0.0,0.0,65,53,0.0,0.0,0.0,766.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,111016,2,2,1,0,1,,406.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,271.701148054441,0.0,5406.405317976716,1,1,1,2,106.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.141683790790341,2574.478722846055,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +11006,2,74.0,0.0,9,111,198.0,0.0,0.0,0,77,0.0,0.0,337.6297075876681,475.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2005.0,6,111017,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1690.42059519213,198.0,7025.3648463278705,0,5,0,1,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06761214689772027,7025.3648463278705,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +11007,1,45.0,240.0,2,111,700.0,1400.0,0.0,85,67,0.0,0.0,1193.6403803604428,2100.0,0.0,2657.9056671157045,71,2,1,2,2,1,2,2,2,0,,1,,2,111018,2,2,3,0,1,,603.0,475.0,42,1.0,0.0,5.0,7.0,4.0,7,5,1061.2757688103,700.0,35076.37869540151,7,1,2,3,100.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0.05986935020391112,8769.094673850377,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +11008,2,66.0,0.0,2,111,394.0,84.0,0.0,77,77,0.0,0.0,671.8490140885921,478.0,0.0,159.4743400269423,41,0,0,0,0,0,0,0,0,0,,2,,2,111019,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1822.14210676033,394.0,44200.88681666432,5,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010814262663612162,29467.257877776214,8,4,8,8_0,8_3,8_0_1 +11009,2,81.0,0.0,2,111,510.0,0.0,0.0,0,77,0.0,0.0,869.6522771197511,510.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,111020,2,1,0,1,1,,0.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,93.9157207450918,510.0,14026.909601473784,0,5,0,1,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03635868587521339,14026.909601473784,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +11010,0,83.0,0.0,2,120,420.0,,,0,77,0.0,0.0,,670.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,2,111021,2,2,0,0,2,,450.0,,11,0.0,8.0,5.0,1.0,1.0,1,1,119.05621838738013,420.0,15089.391849529782,0,5,0,1,107.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04440205454806839,15089.391849529782,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +11011,2,82.0,0.0,1,300,600.0,0.0,0.0,56,71,0.0,0.0,1023.1203260232367,668.0,94.22006732696343,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111022,2,2,4,0,2,,320.0,,42,2.0,0.0,3.0,3.0,2.0,3,3,1079.87838123858,600.0,22255.56296012274,1,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03001496754752574,11127.78148006137,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11012,2,54.0,0.0,6,111,300.0,0.0,0.0,0,47,0.0,662.163638505112,511.56016301161833,860.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,111023,2,1,2,0,1,,225.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,669.028550039831,300.0,23751.56609087475,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03620813872691992,23751.56609087475,6,3,6,6_1,6_4,6_0_0 +11013,2,70.0,0.0,8,111,369.0,796.0,0.0,0,77,0.0,0.0,629.2190005042905,1165.0,0.0,1511.209222160072,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,111024,2,1,1,0,1,,182.0,,21,0.0,5.0,3.0,2.0,1.5,2,2,344.979974865916,369.0,19969.286571415727,0,5,0,1,86.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05833959044223416,13312.857714277152,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +11014,1,50.0,254.0,1,111,516.0,0.0,0.0,0,85,0.0,0.0,879.8834803799836,516.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,3,,1,111025,2,2,0,0,1,,80.0,340.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1300.49420600976,516.0,9003.600661711953,0,7,2,3,30.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.057310404957685815,9003.600661711953,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +11015,1,44.0,381.0,6,111,411.0,1176.0,0.0,0,85,0.0,0.0,700.8374233259171,1587.0,0.0,2232.640760377192,60,0,0,0,0,0,0,0,0,0,,2,,4,111026,1,1,0,0,1,,0.0,337.0,31,0.0,2.0,4.0,4.0,2.1,2,1,391.611637336835,411.0,15702.731273271387,0,6,2,3,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10106522059008506,7477.491082510184,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11016,2,51.0,0.0,7,111,900.0,,,0,68,0.0,0.0,,1032.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,5,111027,1,1,0,0,2,,360.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,113.72681535785031,900.0,19237.19486494092,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05364607507723395,19237.19486494092,5,3,5,5_0,5_3,5_0_0 +11017,1,43.0,249.0,2,111,0.0,0.0,337.0,0,65,0.0,0.0,212.41726386976865,337.0,0.0,403.29873372929745,71,2,1,2,2,1,2,2,2,0,,2,,2,111028,2,2,0,1,1,740.0,0.0,216.0,32,1.0,2.0,4.0,2.0,1.3,1,1,358.781859145524,0.0,8230.218758138712,0,4,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04094666374046825,6330.937506260547,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11018,2,29.0,0.0,1,112,0.0,0.0,0.0,54,37,0.0,0.0,0.0,1839.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,111029,2,1,4,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2185.74161703379,0.0,52974.01713671035,1,1,1,2,90.0,9,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03471513204773733,29430.009520394637,8,4,8,8_1,8_1,8_1_0 +11019,1,37.0,413.0,6,111,1200.0,,,0,81,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,111030,2,1,0,0,2,,360.0,771.0,32,1.0,0.0,4.0,3.0,1.6,1,1,118.90608038610974,1200.0,13327.21814393002,0,4,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09004129646865193,8329.511339956262,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11020,0,35.0,0.0,8,111,300.0,,,63,22,0.0,0.0,,564.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,1,2.0,2,2003.0,6,111031,2,1,0,0,1,,280.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,119.85021213744277,300.0,46380.76398441268,1,1,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012160213665077727,25767.09110245149,7,4,7,7_0,7_2,7_0_0 +11022,2,79.0,0.0,2,111,219.0,0.0,0.0,86,75,3796.8582637317654,0.0,373.43891899848137,3819.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,111033,2,1,2,0,1,,494.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1288.50439617775,219.0,77474.9454713015,5,5,0,1,160.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0492933551197483,51649.963647534336,10,5,10,10_1,10_2,10_0_1 +11023,2,71.0,0.0,2,111,240.0,,,77,78,0.0,0.0,,540.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,111034,1,2,0,0,2,,296.0,297.0,41,0.0,4.0,3.0,2.0,1.5,2,2,121.76126901004731,240.0,23373.21912350598,6,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023103364459409564,15582.14608233732,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +11024,2,41.0,0.0,2,111,220.0,130.0,0.0,0,47,0.0,0.0,375.14411954185346,350.0,0.0,246.80552623217258,31,0,0,0,0,0,0,0,0,2,15.0,8,,2,111035,2,3,0,1,2,,144.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,449.682388022705,220.0,23577.83227871804,0,1,1,2,53.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014844452020125659,23577.83227871804,6,3,6,6_0,6_2,6_0_1 +11025,0,50.0,0.0,1,111,776.0,1150.0,0.0,55,63,0.0,0.0,1323.2356216567196,1926.0,0.0,2183.2796551307574,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,111036,1,1,2,0,2,,380.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,1106.5442039276,776.0,50164.68324525311,1,1,5,0,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03839354452980125,20065.873298101244,5,3,5,5_1,5_3,5_1_0 +11026,2,86.0,0.0,2,111,840.0,,,0,75,0.0,0.0,,940.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,2,111037,2,2,0,0,2,,160.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,43.3648147885949,840.0,56419.944860390904,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016660774878919073,37613.296573593936,9,5,9,9_1,9_2,9_0_1 +11027,2,80.0,0.0,8,111,524.0,0.0,0.0,0,77,0.0,0.0,893.52508472696,524.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2000.0,6,111038,2,1,0,0,1,,0.0,487.0,11,0.0,1.0,3.0,1.0,1.0,1,1,351.612141777858,524.0,15084.93661800056,0,5,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03473663915662205,15084.93661800056,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +11028,2,57.0,0.0,9,212,1063.0,0.0,0.0,46,48,0.0,214.54101887565628,1812.628177604501,1255.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,111039,2,1,1,0,1,,228.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,681.642275374822,1063.0,43659.78653936636,1,1,1,2,80.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0287449870802372,29106.524359577572,8,4,8,8_1,8_0,8_0_0 +11029,1,37.0,171.0,9,112,1200.0,0.0,0.0,54,62,0.0,0.0,2046.2406520464733,1305.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,111040,2,1,1,0,1,,190.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1334.77090007106,1200.0,29354.53179073453,4,1,1,2,100.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04445650877020326,12231.054912806056,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +11030,2,55.0,0.0,2,112,242.0,45.0,0.0,0,21,3322.250980765295,0.0,412.6585314960388,3437.0,0.0,85.4326821572905,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,111041,2,1,1,0,1,,39.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,714.057780398593,242.0,12487.667940447947,0,1,0,1,75.0,8,0,7,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.275231533733168,12487.667940447947,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +11031,1,56.0,140.0,8,112,400.0,,,56,68,0.0,0.0,,520.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,111042,2,2,0,0,2,,500.0,318.0,43,2.0,0.0,3.0,3.0,2.0,3,2,79.30632973461181,400.0,25104.697977172535,4,4,2,3,45.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02071325456585182,12552.348988586267,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +11032,1,28.0,459.0,2,400,0.0,0.0,0.0,0,63,0.0,0.0,0.0,741.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111043,2,3,0,0,1,,232.0,480.0,32,1.0,0.0,3.0,4.0,1.9,1,1,2864.78632485567,0.0,11465.489456350535,0,4,2,3,60.0,0,1,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06462872804698042,6034.468134921334,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +11033,0,94.0,0.0,2,111,200.0,150.0,0.0,0,77,0.0,0.0,341.04010867441224,350.0,0.0,284.77560719096834,70,0,0,0,0,0,0,0,0,0,,2,,2,111044,2,2,0,1,1,936.0,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1285.31559992954,200.0,18579.176881426083,0,5,5,0,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01883829419536346,18579.176881426083,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +11034,2,64.0,0.0,6,111,1397.0,0.0,0.0,0,75,0.0,1059.4618216081792,2382.1651590907695,2197.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,111045,2,2,2,0,1,,520.0,,31,0.0,0.0,5.0,2.0,1.5,2,2,731.368987903574,1397.0,38490.211920854235,0,5,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05707944670498558,25660.14128056949,7,4,7,7_1,7_4,7_0_0 +11037,2,69.0,0.0,2,112,546.0,762.0,0.0,77,78,0.0,0.0,931.0394966811454,1308.0,0.0,1446.6600845301193,70,0,0,0,0,0,0,0,0,0,,1,,2,111048,2,1,2,0,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,586.915912414492,546.0,29488.68603140207,5,5,0,1,80.0,8,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0443559946552766,19659.124020934712,5,3,5,5_1,5_1,5_0_1 +11038,2,84.0,0.0,6,112,1083.0,0.0,0.0,72,75,0.0,463.51454695357836,1846.7321884719422,1493.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111049,1,1,3,0,1,,800.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1225.28826023452,1083.0,15310.370829271,5,5,0,1,85.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0975156001542184,10206.913886180666,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11039,2,59.0,0.0,2,111,618.0,69.0,0.0,78,54,0.0,0.0,1053.8139358039339,687.0,0.0,130.99677930784543,70,0,0,0,0,0,0,0,0,3,30.0,2,,2,111050,2,1,0,1,1,1674.0,0.0,505.0,42,1.0,1.0,4.0,2.0,1.5,2,2,322.018098698234,618.0,36713.52648186223,5,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018712449220572754,24475.684321241486,7,4,7,7_0,7_4,7_0_1 +11040,2,51.0,0.0,9,120,400.0,0.0,0.0,0,67,0.0,264.8654554020448,682.0802173488245,640.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,111051,2,1,1,0,1,,142.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1924.4964014516,400.0,15890.318403652378,0,1,1,2,70.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040276096661027036,15890.318403652378,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11041,2,66.0,0.0,6,112,530.0,1000.0,0.0,0,78,0.0,86.08127300566456,903.7562879871924,1595.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,1,,4,111052,2,1,2,0,1,,150.0,,31,0.0,2.0,8.0,2.0,1.5,2,2,657.193200869301,530.0,31369.180216209126,0,5,0,1,120.0,9,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0508460848835262,20912.786810806083,5,3,5,5_1,5_1,5_0_0 +11043,2,70.0,0.0,5,300,1074.0,0.0,0.0,78,74,0.0,635.6770929649075,1831.3853835815937,1644.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,111054,2,1,2,0,1,,412.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,762.971662484904,1074.0,46832.59854332271,5,5,0,1,150.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035103753606138474,31221.73236221514,8,4,8,8_1,8_0,8_0_0 +11044,2,86.0,0.0,2,111,0.0,80.0,0.0,77,75,0.0,0.0,0.0,257.0,0.0,151.8803238351831,43,0,0,0,0,0,0,0,0,0,,2,,2,111055,1,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,217.899615858167,0.0,32961.18688166537,5,5,0,1,68.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007797049327218129,21974.124587776914,6,3,6,6_0,6_4,6_0_1 +11045,2,69.0,0.0,5,111,680.0,595.0,0.0,22,72,0.0,0.0,1159.5363694930015,1275.0,0.0,1129.6099085241744,70,0,0,0,0,0,0,0,0,0,,1,,3,111056,2,1,1,0,1,,330.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,274.645668500398,680.0,23254.026920237677,1,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05482921320996598,15502.684613491785,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +11046,2,62.0,0.0,6,111,780.0,,,54,21,0.0,0.0,,868.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,30.0,2,,4,111057,2,2,0,0,2,,460.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,97.66038542785533,780.0,52018.095662395324,1,1,0,1,86.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016686500898330472,26009.047831197662,7,4,7,7_0,7_3,7_0_0 +11047,2,81.0,0.0,1,211,900.0,1400.0,0.0,77,72,0.0,0.0,1534.680489034855,2300.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,1,111058,2,2,2,0,1,,500.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1036.74033423542,900.0,43780.40343668285,5,5,0,1,154.0,1,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05253492018012949,29186.935624455233,8,4,8,8_1,8_1,8_1_0 +11048,2,69.0,0.0,5,111,400.0,,,86,78,0.0,0.0,,500.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,0,,1,,3,111059,2,2,0,0,2,,400.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,36.61334004831492,400.0,36842.96857427145,6,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013571110563255887,24561.9790495143,7,4,7,7_1,7_2,7_0_0 +11049,2,56.0,0.0,2,111,100.0,,,0,63,0.0,0.0,,226.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,3,,2,111060,2,3,0,0,2,,0.0,150.0,12,1.0,0.0,2.0,1.0,1.0,1,1,166.787400379696,100.0,8893.601158237056,0,4,3,4,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025411528578688714,8893.601158237056,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +11050,2,41.0,0.0,9,120,511.0,,,42,38,0.0,0.0,,511.0,0.0,,10,0,0,0,0,0,0,0,0,2,22.0,1,2008.0,6,111061,2,2,0,0,1,,220.0,1600.0,43,2.0,0.0,6.0,5.0,2.4,2,2,121.09920961455839,511.0,87226.29244742004,1,1,2,3,130.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005858325347349029,36344.28851975835,9,5,9,9_1,9_2,9_0_0 +11051,2,21.0,0.0,7,111,720.0,0.0,0.0,0,47,0.0,0.0,1227.744391227884,720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,7.0,2,,5,111062,2,1,0,0,1,,0.0,345.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2465.66278837903,720.0,20200.019364111293,0,1,2,3,35.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03564353018785716,20200.019364111293,5,3,5,5_0,5_2,5_0_0 +11052,1,61.0,152.0,6,111,510.0,,,0,86,0.0,0.0,,552.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,4,111063,1,1,0,0,2,,516.0,968.0,11,0.0,0.0,4.0,1.0,1.0,1,1,126.98519451253466,510.0,9631.39892466108,0,7,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.057312546631892766,9631.39892466108,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11053,2,41.0,0.0,8,112,1300.0,0.0,0.0,54,52,0.0,26.486545540204478,2216.7607063836795,1380.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,111064,2,1,1,0,1,,788.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1724.24358373986,1300.0,60863.9602155745,1,1,1,2,120.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02267351639808136,33813.31123087472,9,5,9,9_1,9_1,9_0_0 +11054,2,73.0,0.0,2,222,2150.0,0.0,0.0,0,75,0.0,437.0280014133739,3666.1811682499315,2704.0,310.3719864888207,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,111065,1,2,1,0,2,,115.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1540.52180307378,2150.0,24749.288735017682,0,5,0,1,100.0,1,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10925566503954191,24749.288735017682,7,4,7,7_1,7_0,7_0_1 +11055,1,31.0,301.0,2,111,500.0,,,0,55,0.0,0.0,,642.0,196.75367000630598,,71,0,0,0,0,0,0,0,0,0,,2,,2,111066,2,2,0,0,2,,0.0,398.0,32,1.0,0.0,4.0,4.0,2.1,2,1,97.30278481369292,500.0,37707.11749732078,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01702596333558555,17955.77023681942,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +11056,1,78.0,250.0,2,111,758.0,0.0,0.0,0,77,0.0,0.0,1292.5420118760223,758.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,111067,2,3,0,0,1,,131.0,350.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2004.90562588549,758.0,9362.356000074458,0,5,2,3,40.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0809625269530417,9362.356000074458,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11057,2,66.0,0.0,1,120,1236.0,0.0,0.0,75,77,3784.2020695193264,119.18945493092015,2107.6278716078677,4914.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111068,2,1,1,0,1,,400.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1863.71227228177,1236.0,42024.34701058604,5,5,0,1,200.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11693221547885446,28016.231340390692,7,4,7,7_1,7_0,7_1_0 +11058,2,48.0,0.0,8,111,540.0,,,52,55,0.0,0.0,,666.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,3,20.0,1,2002.0,6,111069,2,1,0,0,2,,438.0,,43,3.0,1.0,3.0,5.0,2.5999999999999996,3,3,113.82435351254354,540.0,43195.69871628982,1,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015418201806950752,16613.730275496087,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11059,2,63.0,0.0,2,300,292.0,730.0,0.0,0,74,0.0,0.0,497.91855866464186,1022.0,0.0,1385.9079549960459,31,0,0,0,0,0,0,0,0,0,,1,,2,111070,2,2,1,0,1,,311.0,414.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1454.1386608305,292.0,17478.436361267282,0,5,2,3,68.0,0,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05847204972321102,17478.436361267282,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +11060,2,46.0,0.0,5,111,1470.0,0.0,0.0,52,64,0.0,0.0,2506.64479875693,1470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,111071,2,2,3,0,1,,530.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,276.665742740225,1470.0,57719.82180891621,1,1,1,2,110.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02546785409120794,20614.222074612935,5,3,5,5_1,5_2,5_0_0 +11061,2,35.0,0.0,9,111,870.0,0.0,0.0,43,46,0.0,0.0,1483.5244727336933,930.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,111072,2,1,1,0,1,,111.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1143.78444043914,870.0,55897.34685918477,1,1,1,2,106.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016637641180767188,26617.784218659413,7,4,7,7_1,7_2,7_0_0 +11062,2,64.0,0.0,1,111,0.0,0.0,2000.0,75,75,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,31,0,0,0,0,0,0,0,0,0,,1,,1,111073,1,2,3,0,1,,420.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,319.563027980253,0.0,40252.96660087647,5,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049685778934774265,26835.31106725098,7,4,7,7_1,7_3,7_1_0 +11063,2,36.0,0.0,7,111,0.0,,,42,33,0.0,0.0,,341.0,0.0,,12,0,0,0,0,0,0,0,0,2,40.0,1,,5,111074,2,3,0,0,1,,686.0,1175.0,43,2.0,0.0,4.0,4.0,2.1,2,2,170.34268321707867,0.0,90064.0,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003786196482501332,42887.619047619046,9,5,9,9_1,9_2,9_0_0 +11064,2,90.0,0.0,1,212,570.0,0.0,0.0,0,77,0.0,0.0,971.9643097220749,2670.0,2909.737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111075,2,1,3,0,1,,280.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,739.487535249257,570.0,31821.26287413021,0,5,0,1,100.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08390616081332947,31821.26287413021,8,4,8,8_1,8_0,8_1_0 +11065,2,53.0,0.0,1,111,537.0,2983.0,0.0,0,35,0.0,0.0,915.6926917907969,3520.0,0.0,5663.23757500439,31,0,0,0,0,0,0,0,0,0,,1,,1,111076,2,2,1,0,1,,344.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,815.654948675959,537.0,24188.62406328016,0,4,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14552295288856795,24188.62406328016,7,4,7,7_1,7_4,7_1_0 +11066,2,41.0,0.0,9,111,360.0,,,43,21,0.0,0.0,,382.0,30.482962958723462,,71,2,2,2,2,2,2,2,1,0,,1,2005.0,6,111077,1,1,0,0,2,,320.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,110.34692013896344,360.0,35591.08655115617,1,1,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.01073302438943356,16948.13645293151,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11067,0,75.0,0.0,1,300,572.0,0.0,0.0,0,77,0.0,370.8116375628627,975.374710808819,912.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111078,2,1,1,0,1,,46.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,814.308780620359,572.0,14953.529729669466,0,5,0,1,72.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06098894485029114,14953.529729669466,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11068,2,51.0,0.0,2,111,480.0,190.0,0.0,56,67,0.0,0.0,818.4962608185893,670.0,0.0,360.7157691085599,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,111079,2,1,0,1,1,,0.0,,43,3.0,0.0,4.0,7.0,3.6,5,4,708.152402836853,480.0,63120.38486795815,1,1,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010614637432924028,17533.440241099484,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +11069,2,45.0,0.0,9,400,603.0,0.0,0.0,62,47,0.0,357.56836479276046,1028.235927653353,1005.0,182.89777775234077,0.0,31,0,0,0,0,0,0,0,0,0,,1,2009.0,6,111080,2,1,1,0,1,,198.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1205.88619921899,603.0,60669.403034838346,1,1,1,2,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016565186893678453,33705.223908243526,9,5,9,9_1,9_0,9_0_0 +11070,2,42.0,0.0,9,111,1300.0,0.0,0.0,0,46,0.0,0.0,2216.7607063836795,1550.0,346.39730634913025,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,111081,2,1,1,0,1,,142.0,750.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1633.25232945897,1300.0,24284.190870432416,0,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06382753324045175,13491.21715024023,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +11071,2,48.0,0.0,8,111,1280.0,0.0,0.0,46,37,0.0,0.0,2182.6566955162384,1280.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,30.0,2,2001.0,6,111082,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,714.921775211029,1280.0,82507.489426442,1,1,0,1,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015513743163172599,35872.82148975739,9,5,9,9_0,9_4,9_0_0 +11072,1,80.0,40.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,863.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111083,1,2,0,0,2,,135.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1237.97993172525,0.0,14372.83496963387,0,5,2,3,60.0,4,3,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.060043825857828234,14372.83496963387,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +11073,2,37.0,0.0,2,211,0.0,0.0,0.0,0,68,0.0,0.0,0.0,3165.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,1,,2,111084,1,2,1,0,2,,329.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,852.895105574607,0.0,20634.027059889762,0,1,1,2,80.0,4,3,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15338741152241706,20634.027059889762,5,3,5,5_1,5_1,5_0_1 +11074,2,61.0,0.0,2,111,336.0,690.0,0.0,77,78,0.0,0.0,572.9473825730125,1026.0,0.0,1309.9677930784544,50,2,1,2,2,1,2,2,2,0,,2,,2,111085,2,2,0,1,1,984.0,0.0,573.0,41,1.0,3.0,4.0,3.0,2.0,3,3,218.221453882199,336.0,36475.56061225857,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028128423053083544,18237.780306129283,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +11075,1,42.0,253.0,6,111,360.0,,,0,63,0.0,0.0,,400.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,0,,2,,4,111086,2,1,0,0,1,,350.0,358.0,12,1.0,0.0,2.0,1.0,1.0,1,1,132.71664363348384,360.0,5241.0,0,4,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0763213127265789,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11076,2,80.0,0.0,2,111,250.0,65.0,0.0,0,77,0.0,0.0,426.3001358430153,315.0,0.0,123.40276311608629,71,0,0,0,0,0,0,0,0,0,,2,,2,111087,2,1,0,1,1,,127.0,318.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1606.89730934532,250.0,14599.281729317137,0,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021576403951945225,14599.281729317137,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +11077,2,36.0,0.0,1,300,680.0,750.0,0.0,43,47,0.0,0.0,1159.5363694930015,1430.0,0.0,1423.8780359548418,31,0,0,0,0,0,0,0,0,0,,8,,1,111088,2,1,0,1,1,750.0,200.0,416.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1423.81577916944,680.0,51073.00370257702,1,1,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02799913645822726,28373.890945876123,8,4,8,8_0,8_0,8_1_0 +11078,2,50.0,0.0,2,111,539.0,1541.0,0.0,46,38,0.0,0.0,919.1030928775409,2080.0,0.0,2925.594737875215,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,111089,2,2,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,214.055229149836,539.0,68362.07414828017,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030426227201480076,32553.368642038175,8,4,8,8_1,8_3,8_0_1 +11079,1,28.0,304.0,2,111,0.0,0.0,640.0,0,43,0.0,0.0,403.403705865436,640.0,0.0,765.9085744413957,43,2,2,2,1,1,2,2,2,1,20.0,2,,2,111090,1,3,0,1,1,1048.0,270.0,281.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1836.77066843638,0.0,11306.960846822321,0,1,2,3,56.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05660230088970936,8697.662189863324,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11080,2,78.0,0.0,2,111,250.0,700.0,0.0,0,75,0.0,0.0,426.3001358430153,950.0,0.0,1328.9528335578523,44,2,2,2,2,1,2,2,2,0,,2,,2,111091,1,3,0,0,1,,180.0,455.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2135.89902180669,250.0,22013.06912921345,0,5,2,3,67.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.04315618119507284,22013.06912921345,6,3,6,6_0,6_2,6_0_1 +11081,2,40.0,0.0,2,111,0.0,0.0,600.0,42,33,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,111092,1,3,0,1,2,1056.0,0.0,1800.0,43,2.0,0.0,4.0,4.0,2.1,2,2,873.215403377235,0.0,74901.43682506509,1,1,2,3,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008010527239968986,35667.35086907861,9,5,9,9_0,9_4,9_0_1 +11082,2,67.0,0.0,6,111,1230.0,0.0,0.0,77,77,0.0,0.0,2097.396668347635,1230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,111093,2,1,2,0,1,,169.0,469.0,41,0.0,0.0,4.0,2.0,1.5,2,2,1110.71856613981,1230.0,26162.52570623906,5,5,2,3,83.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047013809515595736,17441.683804159373,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11083,2,45.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,1581.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,111094,1,2,3,0,2,,567.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,251.769941456347,0.0,29929.456179486016,0,1,0,1,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05282421406252062,19952.97078632401,5,3,5,5_1,5_3,5_0_1 +11084,1,24.0,357.0,6,111,600.0,,,0,90,0.0,0.0,,647.0,65.12269359363648,,71,0,0,0,0,0,0,0,0,0,,2,,4,111095,2,1,0,0,2,,483.0,409.0,22,2.0,0.0,3.0,2.0,1.5,2,2,85.92156640229788,600.0,18920.441730522158,0,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03419581895682012,12613.627820348105,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11085,2,91.0,0.0,2,111,276.0,965.0,0.0,0,74,0.0,0.0,470.6353499706889,1241.0,0.0,1832.0564062618964,70,0,0,0,0,0,0,0,0,0,,1,,2,111096,2,1,2,0,2,,160.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1413.2824694036,276.0,32191.887555085785,0,5,0,1,93.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038550084951571674,32191.887555085785,8,4,8,8_1,8_2,8_0_1 +11086,2,51.0,0.0,8,221,0.0,0.0,0.0,52,31,0.0,258.24381901699365,0.0,3079.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,111097,2,1,1,0,1,,449.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,939.683859279441,0.0,137212.99737102355,1,1,1,2,170.0,1,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022439565194209646,91475.33158068237,10,5,10,10_1,10_1,10_0_0 +11087,1,50.0,270.0,9,111,250.0,0.0,0.0,0,67,0.0,0.0,426.3001358430153,326.0,105.3047811301356,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,111098,2,1,0,1,1,768.0,160.0,462.0,12,1.0,6.0,3.0,1.0,1.0,1,1,319.183736610397,250.0,7828.597645912888,0,4,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04164219630960295,7828.597645912888,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11088,2,52.0,0.0,9,111,600.0,,,54,38,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,111099,2,1,0,0,2,,0.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,139.93720992416084,600.0,155879.61752622313,1,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0038491241479923694,77939.80876311156,10,5,10,10_1,10_2,10_0_0 +11089,2,66.0,0.0,8,111,350.0,850.0,0.0,74,75,0.0,0.0,596.8201901802214,1200.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,111100,2,1,1,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,786.898119881103,350.0,52117.706342397185,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02302480450916953,34745.13756159812,9,5,9,9_1,9_4,9_0_0 +11090,1,48.0,300.0,7,111,1200.0,,,0,46,0.0,0.0,,1296.0,133.01656563806603,,41,0,0,0,0,0,0,0,0,0,,1,,5,111101,1,3,0,0,2,,510.0,485.0,32,1.0,2.0,4.0,2.0,1.3,1,1,35.32167603508057,1200.0,11452.330414949793,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1131647405412099,8809.484934576763,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11091,2,47.0,0.0,1,111,900.0,1500.0,0.0,34,34,0.0,0.0,1534.680489034855,2400.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,111102,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,306.08746976089,900.0,75117.03332901208,1,1,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031950143577795694,25039.011109670693,7,4,7,7_1,7_4,7_1_0 +11092,2,77.0,0.0,1,111,161.0,820.0,0.0,86,86,0.0,1537.54396860887,274.53728748290183,2142.0,0.0,1556.773319310627,50,0,0,0,0,0,0,0,0,0,,1,,1,111103,2,1,2,0,1,,203.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,710.97260035293,161.0,30721.385320790676,5,5,0,1,113.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06972341831702501,20480.923547193783,5,3,5,5_1,5_4,5_1_0 +11093,2,29.0,0.0,9,111,1500.0,0.0,0.0,54,43,0.0,0.0,2557.8008150580918,1585.0,117.77508415870429,0.0,33,2,2,2,2,1,2,1,2,2,15.0,1,2009.0,6,111104,1,3,1,0,1,,360.0,895.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1183.99754502062,1500.0,36327.69600496857,4,1,2,3,117.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04363062275634596,20182.05333609365,5,3,5,5_1,5_2,5_0_0 +11094,2,32.0,0.0,2,112,0.0,0.0,0.0,67,37,0.0,0.0,0.0,3983.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,111105,2,1,1,0,1,,226.0,750.0,43,2.0,0.0,6.0,2.0,1.5,2,2,865.543657027144,0.0,52778.733556834166,4,1,2,3,200.0,7,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07546600176965126,35185.82237122278,9,5,9,9_1,9_0,9_0_1 +11095,1,57.0,337.0,2,111,800.0,600.0,0.0,0,43,0.0,264.8654554020448,1364.160434697649,1600.0,0.0,1139.1024287638734,10,2,2,2,1,1,2,2,2,0,,2,,2,111106,1,2,0,0,2,,0.0,627.0,32,2.0,2.0,5.0,3.0,2.0,3,3,2075.90231675183,800.0,12394.11252411998,0,4,2,3,110.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.12909355122331398,6197.05626205999,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11096,1,74.0,365.0,6,111,220.0,0.0,0.0,0,78,0.0,0.0,375.14411954185346,430.0,290.9737373332694,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,111107,2,1,0,1,2,,0.0,520.0,11,0.0,9.0,2.0,1.0,1.0,1,1,461.024670992069,220.0,5079.162731134245,0,5,2,3,58.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08465962261145651,5079.162731134245,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11097,2,46.0,0.0,5,111,0.0,0.0,0.0,52,48,0.0,0.0,0.0,625.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,111108,2,1,0,1,1,810.0,0.0,546.0,43,3.0,0.0,5.0,4.0,2.3,3,3,757.960795008795,0.0,36465.71676041946,1,1,2,3,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01713938612824378,15854.65946105194,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +11098,2,23.0,0.0,1,120,1300.0,0.0,0.0,67,67,0.0,0.0,2216.7607063836795,1330.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,111109,2,2,5,0,1,,400.0,475.0,43,2.0,0.0,5.0,2.0,1.5,2,2,586.796012792645,1300.0,19101.979150224015,4,1,2,3,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0696262931469278,12734.65276681601,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11099,2,71.0,0.0,1,111,300.0,140.0,0.0,0,72,0.0,0.0,511.56016301161833,440.0,0.0,265.7905667115705,71,0,0,0,0,0,0,0,0,0,,2,,1,111110,2,1,0,3,1,,0.0,410.0,21,0.0,0.0,2.0,2.0,1.5,2,2,233.599672676355,300.0,27609.236165389168,0,5,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015936695871057175,18406.15744359278,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +11100,2,50.0,0.0,1,111,1364.0,0.0,0.0,69,67,0.0,0.0,2325.8935411594916,1484.0,166.2707070475825,0.0,71,2,2,2,2,1,2,2,2,2,20.0,1,,1,111111,2,1,2,0,1,,305.0,,43,3.0,3.0,5.0,3.0,2.0,3,3,247.289448897085,1364.0,39871.70636745589,4,1,0,1,122.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.03721937522120376,19935.853183727944,5,3,5,5_1,5_3,5_1_0 +11101,2,45.0,0.0,2,111,750.0,1250.0,0.0,45,37,0.0,198.6490915515336,1278.9004075290459,2150.0,0.0,2373.130059924736,31,0,0,0,0,0,0,0,0,2,75.0,1,,2,111112,2,1,2,0,1,,530.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,606.067430923295,750.0,71698.38128532754,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02998672998549242,39832.43404740419,9,5,9,9_1,9_4,9_0_1 +11102,2,56.0,0.0,9,111,1500.0,0.0,0.0,54,37,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,2008.0,6,111113,1,2,0,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,2574.24849531796,1500.0,56354.0,1,1,1,2,94.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026617453951804662,37569.333333333336,9,5,9,9_0,9_3,9_0_0 +11103,2,66.0,0.0,1,112,480.0,0.0,0.0,77,78,0.0,1364.0570953205306,818.4962608185893,1690.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111114,2,1,1,0,1,,160.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1235.11517465425,480.0,14155.19165786331,5,5,0,1,85.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1193908242889239,9436.79443857554,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +11104,1,65.0,100.0,9,111,0.0,,,0,78,0.0,0.0,,826.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2011.0,6,111115,2,1,0,0,1,,0.0,450.0,11,0.0,4.0,1.0,1.0,1.0,1,1,202.8417309280999,0.0,15893.0,0,5,3,4,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05197256653872774,15893.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +11105,1,61.0,255.0,2,111,550.0,300.0,0.0,54,90,0.0,0.0,937.8602988546337,850.0,0.0,569.5512143819367,50,2,2,1,2,1,2,2,2,0,,2,,2,111116,2,1,0,1,1,387.0,720.0,308.0,42,1.0,3.0,3.0,3.0,2.0,3,2,400.517586478329,550.0,18238.332063924547,4,7,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04660513894696004,9119.166031962273,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11106,2,70.0,0.0,1,212,1500.0,0.0,0.0,77,74,0.0,66.2163638505112,2557.8008150580918,1550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,111117,2,2,1,0,1,,400.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,760.365129044905,1500.0,66291.94808511471,5,5,0,1,180.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023381421798163136,44194.63205674314,10,5,10,10_1,10_0,10_1_0 +11107,2,58.0,0.0,2,111,1112.0,0.0,0.0,0,47,0.0,1191.8945493092015,1896.183004229732,2072.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,111118,2,1,1,0,1,,586.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,1243.76311333684,1112.0,54403.24918222623,0,1,1,2,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03808596051055221,36268.83278815082,9,5,9,9_1,9_3,9_0_1 +11108,1,30.0,341.0,7,111,500.0,,,0,21,0.0,0.0,,520.0,27.711784507930417,,43,0,0,0,0,0,0,0,0,2,45.0,2,,5,111119,2,1,0,0,2,,400.0,339.0,32,1.0,0.0,3.0,2.0,1.3,1,1,164.49944850654958,500.0,9318.558392837374,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05580262290352693,7168.121840644134,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11109,2,64.0,0.0,2,111,282.0,70.0,0.0,77,75,0.0,0.0,480.8665532309212,352.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,0,,2,,2,111120,2,1,0,1,1,,230.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1772.38714989379,282.0,32747.946819927376,5,5,0,1,63.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010748765470261644,21831.964546618252,6,3,6,6_0,6_3,6_0_1 +11110,2,43.0,0.0,8,111,1000.0,0.0,0.0,85,38,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,2002.0,6,111121,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,1646.25372349297,1000.0,19083.604714858313,6,1,0,1,51.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.052401001537272965,9087.430816599197,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +11111,1,61.0,180.0,5,111,220.0,180.0,0.0,0,77,0.0,0.0,375.14411954185346,400.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,0,,2,,3,111122,1,2,0,0,2,,0.0,350.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1578.11089364615,220.0,9029.400265706925,0,5,2,3,68.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04429973068301934,9029.400265706925,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11112,2,55.0,0.0,6,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,581.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,2,,4,111123,2,1,0,1,1,576.0,0.0,500.0,32,1.0,4.0,4.0,2.0,1.5,2,2,568.031830205567,0.0,20278.712997059418,0,1,2,3,88.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02865073341115138,13519.141998039611,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +11113,0,72.0,0.0,6,211,816.0,,,0,86,0.0,0.0,,970.0,213.38074071106422,,71,0,0,0,0,0,0,0,0,0,,1,,4,111124,2,1,0,0,2,,312.0,,21,0.0,3.0,5.0,2.0,1.5,2,2,110.13918820814193,816.0,18564.744470588234,0,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05224957453827346,12376.496313725489,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11114,2,56.0,0.0,1,111,737.0,0.0,0.0,54,48,3164.0485531098047,0.0,1256.732800465209,3797.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,111125,2,1,2,0,2,,483.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1457.89127620254,737.0,62953.96152390551,1,1,1,2,125.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06031391683838935,41969.30768260368,9,5,9,9_1,9_3,9_1_0 +11115,2,46.0,0.0,8,111,264.0,,,0,46,0.0,0.0,,352.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,111126,2,2,0,0,2,,200.0,430.0,32,1.0,0.0,3.0,2.0,1.3,1,1,99.49079946489928,264.0,35891.76727602843,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00980726296626512,27609.051750791103,7,4,7,7_0,7_3,7_0_0 +11116,1,31.0,350.0,2,211,0.0,0.0,0.0,85,67,0.0,0.0,0.0,1101.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,111127,1,2,0,0,1,,0.0,400.0,42,1.0,1.0,3.0,3.0,1.8,2,2,1195.7934815409,0.0,22016.695600146722,6,4,2,3,51.0,4,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05000750430471786,12231.497555637068,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +11117,0,75.0,0.0,1,112,1100.0,0.0,0.0,0,72,1698.0393901689285,662.163638505112,1875.7205977092674,3280.0,96.99124577775646,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,111128,2,1,2,0,1,,200.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1904.79375177268,1100.0,15840.069084553397,0,5,0,1,110.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.20706980395675956,15840.069084553397,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11118,2,49.0,0.0,2,111,302.4,,,0,45,0.0,0.0,,378.0,104.81982490124682,,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,111129,2,2,0,0,2,,60.0,430.0,32,2.0,1.0,4.0,2.0,1.5,2,2,75.9417063821041,302.4,5669.017736209078,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06667821791871337,3779.3451574727187,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +11119,2,57.0,0.0,2,111,700.0,700.0,0.0,85,63,0.0,0.0,1193.6403803604428,2086.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,,2,111130,1,2,0,1,1,,180.0,,42,2.0,2.0,4.0,5.0,3.0,5,4,455.685924639913,700.0,17295.249988403906,6,4,1,2,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12061115054125371,5765.083329467969,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +11120,2,74.0,0.0,6,112,1100.0,0.0,0.0,0,75,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,111131,2,1,1,0,1,,125.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,871.016707805032,1100.0,31892.585189717094,0,5,0,1,100.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034490775628771085,31892.585189717094,8,4,8,8_1,8_2,8_0_0 +11122,2,74.0,0.0,5,111,153.0,0.0,0.0,77,78,0.0,0.0,260.89568313592537,886.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,111133,2,1,0,1,2,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,1796.84471844831,153.0,21458.462524631836,5,5,0,1,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04128907180479377,14305.64168308789,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +11123,2,27.0,0.0,7,120,0.0,,,65,22,0.0,0.0,,619.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,111134,2,1,0,0,2,,297.0,980.0,43,2.0,0.0,4.0,2.0,1.5,2,2,168.96149606524688,0.0,14626.008350730688,1,1,2,3,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04232186835645256,9750.672233820458,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +11124,1,46.0,360.0,9,111,360.0,,,81,63,0.0,0.0,,864.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,1,90.0,1,2006.0,6,111135,1,2,0,0,2,,1200.0,,43,3.0,0.0,4.0,7.0,3.6,5,4,113.66845883391366,360.0,18295.830726017295,4,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.047223873730497655,5082.175201671471,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11125,2,55.0,0.0,7,111,288.0,102.0,0.0,52,63,0.0,0.0,491.09775649115363,390.0,0.0,193.6474128898585,70,2,2,2,1,1,2,2,2,2,10.0,2,,5,111136,1,2,0,1,1,708.0,17.0,373.0,43,2.0,0.0,3.0,2.0,1.5,2,2,627.842968760144,288.0,38504.346716857515,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.010128726579050226,25669.56447790501,7,4,7,7_0,7_4,7_0_0 +11126,2,73.0,0.0,7,111,643.0,0.0,0.0,0,90,0.0,0.0,1096.4439493882353,643.0,0.0,0.0,10,2,2,2,1,1,2,1,2,0,,2,,5,111137,1,3,0,0,1,,0.0,778.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1345.7411546581,643.0,28490.674537983494,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.022568788223766293,28490.674537983494,8,4,8,8_0,8_4,8_0_0 +11127,1,30.0,371.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1747.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,111138,2,2,0,0,1,,0.0,472.0,31,0.0,0.0,4.0,4.0,1.9,1,1,1076.26273548368,0.0,6221.285444234403,0,6,2,3,85.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.2808101341209216,3274.3607601233703,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11128,2,29.0,0.0,5,112,386.0,0.0,0.0,56,45,1993.3505884591768,0.0,658.2074097416156,2296.0,27.711784507930417,0.0,12,2,2,2,2,1,2,2,2,3,80.0,1,,3,111139,1,2,3,0,2,,180.0,817.0,43,2.0,0.0,4.0,2.0,1.5,2,2,754.723020598009,386.0,35017.118416734826,4,1,2,3,77.0,10,1,1,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06556793088099254,23344.74561115655,6,3,6,6_1,6_1,6_0_0 +11129,1,38.0,200.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,426.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,111140,2,1,0,1,2,170.0,0.0,250.0,12,1.0,0.0,1.0,1.0,1.0,1,1,679.94761839109,0.0,985.4799287875253,0,4,3,4,10.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.4322766882975735,985.4799287875253,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11130,2,29.0,0.0,5,111,450.0,0.0,0.0,0,63,0.0,0.0,767.3402445174275,450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,111141,1,2,0,0,1,,0.0,950.0,22,3.0,0.0,4.0,3.0,2.0,3,3,1747.68923217858,450.0,56132.62611446722,0,1,2,3,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008016728080427726,28066.31305723361,8,4,8,8_0,8_3,8_0_0 +11131,2,30.0,0.0,9,211,458.0,,,0,81,0.0,0.0,,546.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,111142,1,3,0,0,2,,240.0,,22,2.0,7.0,6.0,3.0,2.0,3,3,103.23110766644673,458.0,16868.907293951896,0,4,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032367241723816956,8434.453646975948,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11132,2,50.0,0.0,9,211,100.0,,,0,81,0.0,0.0,,400.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,111143,2,3,0,0,2,,0.0,150.0,32,1.0,2.0,3.0,4.0,2.3,3,1,7.559826641115449,100.0,24729.51555912082,0,4,2,3,52.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016175003470800732,10751.96328657427,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11133,0,64.0,0.0,6,111,1559.0,0.0,0.0,0,74,0.0,0.0,2658.4076471170433,1619.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,111144,2,1,2,0,1,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1284.79740269633,1559.0,57776.31364198838,0,5,0,1,130.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028021863942932615,57776.31364198838,10,5,10,10_1,10_3,10_0_0 +11134,2,53.0,0.0,6,111,750.0,0.0,0.0,0,43,0.0,0.0,1278.9004075290459,1050.0,415.67676761895626,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,4,111145,2,3,3,0,1,,500.0,600.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1325.93728516681,750.0,22100.55780988383,0,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04751011304929227,22100.55780988383,6,3,6,6_1,6_3,6_0_0 +11135,2,56.0,0.0,2,112,10.0,10.0,0.0,0,75,0.0,0.0,17.052005433720613,20.0,0.0,18.985040479397888,70,2,1,2,1,2,2,2,2,0,,2,,2,111146,1,1,0,1,1,700.0,120.0,251.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2034.46896932857,10.0,17950.62212024886,0,5,2,3,60.0,9,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0011141675127481726,17950.62212024886,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +11136,2,52.0,0.0,6,112,1200.0,0.0,0.0,43,46,0.0,370.8116375628627,2046.2406520464733,1480.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,111147,2,2,2,0,1,,300.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,920.440746791861,1200.0,115917.50945876306,1,1,0,1,85.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012767700124945325,57958.75472938153,10,5,10,10_1,10_1,10_0_0 +11137,2,28.0,0.0,1,111,35.0,65.0,0.0,56,63,0.0,0.0,59.68201901802214,100.0,0.0,123.40276311608629,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,111148,2,1,1,0,1,,260.0,610.0,43,2.0,0.0,5.0,2.0,1.5,2,2,111.127760090373,35.0,20999.460739422873,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.004762027046354919,13999.640492948582,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +11138,2,34.0,0.0,2,111,360.0,1280.0,0.0,55,64,0.0,0.0,613.872195613942,1640.0,0.0,2430.0851813629297,43,0,0,0,0,0,0,0,0,2,7.0,2,,2,111149,2,2,0,0,1,,247.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,461.710175058293,360.0,33844.5791611562,1,1,1,2,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04845679989669501,16116.466267217238,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +11139,0,65.0,0.0,2,111,700.0,70.0,0.0,0,78,0.0,0.0,1193.6403803604428,770.0,0.0,132.89528335578524,70,0,0,0,0,0,0,0,0,0,,2,,2,111150,2,3,0,0,1,,100.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2101.70002604238,700.0,13084.712209465577,0,5,5,0,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05884730116134892,13084.712209465577,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +11140,1,91.0,199.0,2,111,284.0,180.0,0.0,0,77,0.0,0.0,484.2769543176654,464.0,0.0,341.730728629162,70,1,1,2,1,1,2,2,2,0,,2,,2,111151,2,2,0,1,1,752.0,0.0,304.0,11,0.0,2.0,3.0,1.0,1.0,1,1,190.468847334169,284.0,12718.450036768347,0,5,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03648243289540795,12718.450036768347,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +11141,2,48.0,0.0,7,300,875.0,0.0,0.0,55,47,0.0,26.486545540204478,1492.0504754505534,985.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,111152,2,1,1,0,1,,173.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1002.69766354338,875.0,53425.38886065229,1,1,1,2,118.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01843692710537201,21370.155544260917,6,3,6,6_1,6_0,6_0_0 +11142,2,75.0,0.0,5,111,396.0,100.0,0.0,0,75,0.0,0.0,675.2594151753362,496.0,0.0,189.8504047939789,41,0,0,0,0,0,0,0,0,0,,2,,3,111153,2,1,0,1,1,600.0,0.0,876.0,11,0.0,3.0,6.0,1.0,1.0,1,1,1641.90880794905,396.0,32511.798177828503,0,5,2,3,113.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015256000215277184,32511.798177828503,8,4,8,8_0,8_3,8_0_0 +11143,1,51.0,140.0,9,112,1950.0,50.0,0.0,85,47,0.0,0.0,3325.141059575519,2000.0,0.0,94.92520239698945,50,2,2,2,2,2,2,2,1,0,,1,2012.0,6,111154,2,3,1,0,1,,330.0,445.0,42,1.0,0.0,5.0,2.0,1.5,2,2,9577.27612508069,1950.0,26717.96900328366,7,1,2,3,85.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.0748559892315991,17811.97933552244,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +11144,2,28.0,0.0,9,111,400.0,0.0,0.0,47,43,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2009.0,6,111155,2,1,0,0,1,,0.0,352.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1948.35529069963,400.0,28414.45272980002,4,4,2,3,40.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014077343097320854,18942.968486533347,5,3,5,5_0,5_2,5_0_0 +11145,2,74.0,0.0,6,112,1400.0,0.0,0.0,0,75,0.0,423.78472864327165,2387.2807607208856,1757.0,51.266801339671275,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111156,2,2,3,0,1,,130.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,728.904088427671,1400.0,29302.750320164872,0,5,0,1,80.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059960241984210925,29302.750320164872,8,4,8,8_1,8_0,8_0_0 +11146,2,35.0,0.0,1,111,0.0,0.0,0.0,65,47,0.0,0.0,0.0,1039.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111157,2,2,2,0,1,,397.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,362.388946569344,0.0,31161.919823918746,1,1,1,2,70.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033341976549291476,14839.009439961306,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +11147,0,29.0,0.0,2,111,390.0,,,0,67,0.0,0.0,,438.0,66.50828281903301,,71,0,0,0,0,0,0,0,0,0,,1,,2,111158,2,2,0,0,2,,220.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,93.69440024727459,390.0,17500.602205451527,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025027710181513684,11667.068136967684,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11148,0,81.0,0.0,1,112,1766.0,0.0,0.0,0,77,0.0,0.0,3011.38415959506,1968.0,279.88902353009723,0.0,60,2,2,2,2,1,2,2,2,0,,1,,1,111159,2,1,3,0,2,,133.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1592.24104347515,1766.0,36063.64529416229,0,5,0,1,96.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.05457019067117336,36063.64529416229,9,5,9,9_1,9_0,9_1_0 +11149,2,89.0,0.0,1,300,2000.0,0.0,0.0,0,71,0.0,0.0,3410.4010867441225,2100.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111160,2,2,4,0,1,,250.0,229.0,21,0.0,2.0,4.0,2.0,1.5,2,2,1108.84343388751,2000.0,31979.910176071393,0,5,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0656662257160216,21319.940117380927,6,3,6,6_1,6_0,6_1_0 +11150,1,56.0,229.0,1,111,1100.0,0.0,0.0,0,78,0.0,0.0,1875.7205977092674,1160.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,111161,2,1,0,1,1,,0.0,217.0,11,0.0,4.0,2.0,1.0,1.0,1,1,365.710112176381,1100.0,8252.397025615765,0,7,2,3,37.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.14056521958399656,8252.397025615765,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +11151,2,77.0,0.0,1,111,283.0,1235.0,0.0,77,75,0.0,0.0,482.5717537742933,1518.0,0.0,2344.6524992056393,70,0,0,0,0,0,0,0,0,0,,1,,1,111162,2,1,2,0,2,,360.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1644.5027186215,283.0,31015.961374370236,5,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048942542250339074,20677.30758291349,5,3,5,5_1,5_3,5_1_0 +11152,2,86.0,0.0,2,111,360.0,,,0,86,0.0,0.0,,705.0,478.02828276179974,,70,0,0,0,0,0,0,0,0,0,,1,,2,111163,2,3,0,0,2,,800.0,,21,1.0,5.0,4.0,2.0,1.5,2,2,77.01468311682488,360.0,34270.49506015279,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020571631625471386,22846.996706768525,6,3,6,6_1,6_2,6_0_1 +11153,2,50.0,0.0,1,111,70.0,80.0,0.0,0,33,0.0,0.0,119.36403803604428,150.0,0.0,151.8803238351831,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,111164,2,1,2,0,1,,890.0,,32,1.0,0.0,6.0,3.0,2.0,3,3,1691.39108002593,70.0,38175.2272851801,0,1,0,1,95.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.003929249690629375,19087.61364259005,5,3,5,5_1,5_2,5_1_0 +11154,2,34.0,0.0,9,112,1320.0,0.0,0.0,56,65,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,111165,2,1,1,0,1,,530.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,593.770678160222,1320.0,45998.26444812968,1,1,1,2,120.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028696734884171744,21903.935451490324,6,3,6,6_1,6_0,6_0_0 +11155,1,46.0,259.0,1,111,300.0,678.0,0.0,85,68,0.0,0.0,511.56016301161833,978.0,0.0,1287.185744503177,42,1,2,2,1,1,2,2,2,2,30.0,2,,1,111166,1,2,0,0,1,,0.0,580.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1720.8219269083,300.0,21680.184930771036,6,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.04511031631524087,9033.410387821266,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +11157,2,51.0,0.0,6,111,1500.0,0.0,0.0,0,46,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,111168,2,1,0,0,1,,250.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,716.834101236189,1500.0,24143.85029104989,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06212762181332979,24143.85029104989,6,3,6,6_0,6_4,6_0_0 +11159,2,32.0,0.0,2,111,300.0,700.0,0.0,0,62,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,50,2,2,2,2,2,2,2,1,2,10.0,2,,2,111170,1,1,0,0,1,,0.0,314.0,12,1.0,1.0,3.0,1.0,1.0,1,1,202.743978220866,300.0,24362.108710341716,0,1,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.041047349878030055,24362.108710341716,7,4,7,7_0,7_2,7_0_1 +11160,2,40.0,0.0,2,111,861.0,0.0,0.0,0,52,0.0,0.0,1468.1776678433446,861.0,0.0,0.0,20,2,2,2,1,2,2,2,2,2,90.0,2,,2,111171,2,1,0,0,1,,203.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,124.24134776162,861.0,20067.75927326289,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.04290464063654312,20067.75927326289,5,3,5,5_0,5_3,5_0_1 +11161,1,54.0,158.0,5,111,484.0,0.0,0.0,0,77,0.0,0.0,825.3170629920776,484.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,111172,1,1,0,1,1,324.0,0.0,306.0,31,1.0,1.0,4.0,2.0,1.5,2,2,319.760363698945,484.0,17776.733627059064,0,5,2,3,78.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02722659911285804,11851.15575137271,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +11162,1,40.0,45.0,9,111,400.0,,,85,63,0.0,0.0,,526.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,111173,1,2,0,0,2,,900.0,,42,2.0,0.0,6.0,8.0,4.1,6,5,176.59112814511923,400.0,46956.813759551704,6,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011201782188490246,11452.881404768708,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +11163,2,54.0,0.0,5,111,155.0,0.0,0.0,0,38,0.0,0.0,264.3060842226695,155.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,12.0,8,,3,111174,1,3,0,1,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,540.157021135457,155.0,34147.642423222766,0,1,1,2,75.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00453911277618947,34147.642423222766,9,5,9,9_0,9_3,9_0_0 +11164,1,30.0,40.0,8,111,600.0,0.0,0.0,0,54,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,2,2003.0,6,111175,2,3,0,0,1,,0.0,668.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1156.11468514185,600.0,19579.576023988608,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03064417734402874,15061.212326145082,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +11165,1,72.0,207.0,2,111,108.0,0.0,0.0,0,86,0.0,0.0,184.1616586841826,195.0,120.54626260949732,0.0,71,2,2,2,2,2,1,2,2,0,,2,,2,111176,1,3,0,1,2,263.0,0.0,193.0,11,0.0,1.0,1.0,1.0,1.0,1,1,364.331979096824,108.0,9412.71828769044,0,5,2,3,40.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.020716651028960767,9412.71828769044,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11166,1,36.0,420.0,9,111,420.0,712.0,0.0,55,55,0.0,0.0,716.1842282162656,1132.0,0.0,1351.7348821331298,43,2,2,2,1,1,2,2,2,0,,1,2006.0,6,111177,2,3,2,0,1,,0.0,479.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1068.16963807023,420.0,31509.99886064203,1,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,1,0.03592510444086176,17505.554922578904,4,2,4_1,4_1_1,4_4_1,4_0_0_1 +11167,2,72.0,0.0,1,400,549.0,0.0,0.0,86,78,1977.5303456936279,0.0,936.1550983112616,2535.0,153.80040401901383,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111178,2,1,2,0,2,,146.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1247.01001835913,549.0,17918.048011851137,5,5,0,1,70.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14147746441595263,11945.365341234092,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11168,2,56.0,0.0,2,111,0.0,0.0,880.0,52,62,0.0,0.0,554.6800955649745,880.0,0.0,1053.1242898569192,70,2,1,2,2,1,1,2,2,2,25.0,2,,2,111179,2,3,0,1,2,1848.0,0.0,350.0,43,2.0,0.0,4.0,6.0,3.3,5,4,176.853254012092,0.0,45957.562104458426,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019148100110267373,13926.53397104801,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +11169,2,52.0,0.0,2,112,1200.0,0.0,0.0,56,53,0.0,993.245457757668,2046.2406520464733,1950.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,35.0,1,,2,111180,2,2,2,0,2,,700.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,530.944349004208,1200.0,43613.04575876816,1,1,1,2,106.0,7,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04471139233856336,21806.52287938408,6,3,6,6_1,6_1,6_0_1 +11170,2,40.0,0.0,5,111,2000.0,0.0,0.0,52,55,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,2,,3,111181,2,2,0,1,1,577.0,0.0,367.0,43,2.0,0.0,4.0,4.0,2.3,3,2,411.519018941291,2000.0,45726.17931937315,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.043738620408914096,19880.94753016224,5,3,5,5_0,5_4,5_0_0 +11171,2,81.0,0.0,6,111,1700.0,100.0,0.0,75,78,0.0,0.0,2898.840923732504,1800.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,1,,4,111182,2,1,1,0,1,,170.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1034.78225794478,1700.0,25544.533065752625,5,5,0,1,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07046517528297463,17029.68871050175,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +11172,1,41.0,180.0,1,300,912.0,0.0,0.0,0,62,0.0,0.0,1555.1428955553197,912.0,0.0,0.0,50,1,2,2,2,1,1,2,2,2,40.0,1,,1,111183,2,2,4,0,2,,120.0,500.0,22,1.0,0.0,4.0,2.0,1.5,2,2,1078.66039600076,912.0,25259.137662212946,0,1,2,3,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.03610574565909785,16839.425108141964,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +11173,2,31.0,0.0,6,120,1300.0,0.0,0.0,67,63,0.0,0.0,2216.7607063836795,1500.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,111184,2,1,2,0,1,,607.0,435.0,43,2.0,0.0,3.0,3.0,1.8,2,2,781.372392054011,1300.0,29248.81419511488,1,1,2,3,78.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05128413035802761,16249.341219508266,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11174,1,59.0,348.0,2,111,700.0,,,77,68,0.0,0.0,,950.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,8,,2,111185,2,2,0,0,2,,1200.0,680.0,42,3.0,1.0,4.0,8.0,4.3,7,6,7.835959960480189,700.0,36791.77759516548,6,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02582098670124686,8556.227347712902,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11175,2,72.0,0.0,2,112,944.0,0.0,0.0,77,21,5273.414255183007,66.2163638505112,1609.7093129432258,6058.0,88.67771042537734,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,111186,2,1,2,0,1,,456.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1797.60081171265,944.0,101357.96819926439,5,1,0,1,150.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059768364615303785,67571.9787995096,10,5,10,10_1,10_0,10_0_1 +11176,2,56.0,0.0,9,111,450.0,660.0,0.0,46,37,0.0,0.0,767.3402445174275,1110.0,0.0,1253.0126716402608,42,0,0,0,0,0,0,0,0,1,20.0,1,2008.0,6,111187,2,1,1,0,1,,200.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1291.66688689294,450.0,152948.41133718524,1,1,0,1,112.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007257348999545533,101965.60755812349,10,5,10,10_1,10_2,10_0_0 +11178,2,86.0,0.0,2,111,391.0,105.0,0.0,86,74,0.0,1365.381422597541,666.7334124584759,1527.0,0.0,199.34292503367786,20,0,0,0,0,0,0,0,0,0,,2,,2,111189,2,1,0,1,1,1031.0,0.0,723.0,41,0.0,1.0,5.0,2.0,1.5,2,2,1066.71593936986,391.0,54309.55084381376,5,5,2,3,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0281166015235778,36206.36722920917,9,5,9,9_0,9_4,9_0_1 +11179,2,74.0,0.0,2,400,900.0,0.0,0.0,0,78,0.0,0.0,1534.680489034855,1050.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111190,1,2,3,0,2,,201.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1322.39573219643,900.0,19531.17052534384,0,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.053760218755834914,19531.17052534384,5,3,5,5_1,5_0,5_0_1 +11180,2,73.0,0.0,7,111,240.0,,,0,75,0.0,0.0,,324.0,116.38949493330776,,70,0,0,0,0,0,0,0,0,0,,1,,5,111191,2,1,0,0,2,,88.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,123.26389364856854,240.0,15589.06547683822,0,5,0,1,113.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02078379877750785,15589.06547683822,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +11181,2,58.0,0.0,5,120,550.0,920.0,0.0,52,37,0.0,0.0,937.8602988546337,1470.0,0.0,1746.6237241046058,42,0,0,0,0,0,0,0,0,2,50.0,1,,3,111192,2,1,1,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1764.92199884848,550.0,57577.98454954956,1,1,0,1,97.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02553059144914964,38385.32303303304,9,5,9,9_1,9_1,9_0_0 +11182,2,72.0,0.0,1,120,734.0,0.0,0.0,0,75,0.0,0.0,1251.617198835093,734.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,111193,2,1,4,0,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,975.690999233664,734.0,23279.851715068144,0,5,0,1,74.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03152941045259796,23279.851715068144,6,3,6,6_1,6_0,6_1_0 +11183,1,51.0,296.0,2,111,471.0,187.0,0.0,0,38,0.0,0.0,803.1494559282409,658.0,0.0,355.02025696474055,42,0,0,0,0,0,0,0,0,0,,2,,2,111194,2,2,0,1,2,453.0,0.0,540.0,32,1.0,0.0,3.0,3.0,2.0,3,3,758.493620890337,471.0,21941.84325061638,0,4,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029988364809848678,10970.92162530819,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +11184,2,71.0,0.0,2,111,223.0,106.0,0.0,0,72,0.0,0.0,380.25972117196966,329.0,0.0,201.24142908161764,60,1,2,2,1,1,1,2,2,0,,2,,2,111195,2,1,0,1,1,456.0,89.0,275.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1430.27498474829,223.0,18348.301711706164,0,5,2,3,59.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01793081480615173,18348.301711706164,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +11185,0,54.0,0.0,1,111,300.0,,,0,43,0.0,0.0,,396.0,133.01656563806603,,41,0,0,0,0,0,0,0,0,3,60.0,1,,1,111196,2,1,0,0,2,,237.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,93.0369899865139,300.0,26322.259531885065,0,1,5,0,56.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015044301174840688,26322.259531885065,7,4,7,7_1,7_2,7_1_0 +11186,2,49.0,0.0,1,111,800.0,1400.0,0.0,52,63,0.0,0.0,1364.160434697649,2200.0,0.0,2657.9056671157045,50,2,2,2,2,1,2,2,2,2,25.0,1,,1,111197,2,1,2,0,1,,820.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1301.23793988521,800.0,34649.49904501262,1,1,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06349298144662971,23099.666030008415,6,3,6,6_1,6_3,6_1_0 +11187,1,61.0,44.0,2,111,400.0,0.0,0.0,0,78,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111198,2,1,0,1,1,366.0,0.0,267.0,11,0.0,3.0,3.0,1.0,1.0,1,1,324.096378043182,400.0,14721.198465437703,0,5,2,3,76.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027171700791828627,14721.198465437703,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +11188,2,45.0,0.0,2,111,1440.0,0.0,0.0,55,65,0.0,1324.327277010224,2455.488782455768,2440.0,0.0,0.0,50,2,2,2,1,2,2,2,1,2,20.0,1,,2,111199,2,3,3,0,1,,880.0,,43,2.0,1.0,5.0,4.0,2.3,3,3,689.880531402536,1440.0,41547.711704193505,4,1,1,2,110.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.058727662725976924,18064.222480084136,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +11189,2,68.0,0.0,7,112,600.0,1500.0,0.0,77,86,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,5,111200,2,1,1,0,1,,550.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1951.7530721694,600.0,28837.514540924676,6,5,1,2,75.0,8,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07282180983454004,19225.009693949785,5,3,5,5_1,5_0,5_0_0 +11190,1,33.0,300.0,9,111,0.0,,,84,68,0.0,0.0,,785.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,2011.0,6,111201,1,1,0,0,2,,778.0,900.0,42,1.0,0.0,4.0,5.0,2.4000000000000004,2,2,200.03017408609062,0.0,27021.0,3,4,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029051478479700972,11258.749999999998,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +11191,2,38.0,0.0,2,111,300.0,,,0,65,0.0,0.0,,476.0,243.8637036697877,,50,0,0,0,0,0,0,0,0,0,,1,,2,111202,2,3,0,0,2,,300.0,,22,2.0,8.0,7.0,3.0,2.0,3,3,109.59957123954585,300.0,53471.191098826595,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008901989841973908,26735.595549413298,7,4,7,7_1,7_2,7_0_1 +11192,2,74.0,0.0,1,111,1860.0,0.0,0.0,0,78,0.0,0.0,3171.673010672034,1860.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111203,2,1,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1103.87043828489,1860.0,15832.79073330498,0,5,0,1,90.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11747771011003177,15832.79073330498,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +11193,2,36.0,0.0,5,111,620.0,0.0,0.0,63,42,0.0,0.0,1057.224336890678,620.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,3,111204,1,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1787.25560194687,620.0,37713.195649905916,1,1,1,2,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01643986910458347,17958.66459519329,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11194,2,46.0,0.0,1,211,605.0,0.0,0.0,42,21,2636.7071275915036,0.0,1031.646328740097,3225.0,166.2707070475825,0.0,44,2,2,1,2,1,2,2,2,2,15.0,1,,1,111205,2,1,1,0,1,,334.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,1469.76615380056,605.0,52585.62758776595,1,1,1,2,135.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06132854447001592,25040.77504179331,7,4,7,7_1,7_1,7_1_0 +11195,2,77.0,0.0,7,111,321.0,1100.0,0.0,78,75,0.0,0.0,547.3693744224316,1421.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,0,,1,,5,111206,2,1,1,0,1,,278.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2027.57706302307,321.0,33524.37485704721,5,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042387069290906985,22349.58323803147,6,3,6,6_1,6_3,6_0_0 +11196,2,61.0,0.0,7,111,60.0,,,77,75,0.0,0.0,,60.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,111207,2,1,0,0,2,,420.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,117.7030889804762,60.0,82517.59160925043,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0007271176827860042,55011.72773950029,10,5,10,10_1,10_2,10_0_0 +11197,2,46.0,0.0,2,112,300.0,0.0,0.0,0,67,0.0,2675.1410995606525,511.56016301161833,2560.0,332.541414095165,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,111208,2,1,1,0,1,,315.0,,22,1.0,0.0,6.0,4.0,2.5,4,4,912.749680418383,300.0,82457.82234505242,0,1,0,1,170.0,5,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031046175210490547,32983.12893802097,8,4,8,8_1,8_0,8_0_1 +11198,2,35.0,0.0,6,111,360.0,320.0,0.0,52,56,0.0,0.0,613.872195613942,680.0,0.0,607.5212953407324,50,2,1,2,1,1,2,2,2,2,45.0,2,,4,111209,1,3,0,1,1,600.0,0.0,330.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2027.50203375479,360.0,38591.53989688888,1,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.017620442247623797,21439.74438716049,6,3,6,6_0,6_3,6_0_0 +11199,0,23.0,0.0,9,111,0.0,,,0,54,0.0,0.0,,75.0,0.0,,71,0,0,0,0,0,0,0,0,2,5.0,2,2011.0,6,111210,2,3,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,260.5260497782397,0.0,1187.1827077433936,0,1,5,0,29.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06317477462467475,1187.1827077433936,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +11200,2,71.0,0.0,1,111,333.0,0.0,0.0,0,77,2003.897416969543,0.0,567.8317809428963,2333.0,138.5589225396521,0.0,71,1,2,2,1,2,2,2,2,0,,1,,1,111211,2,1,2,0,1,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1443.58179239068,333.0,19497.492952337154,0,5,0,1,75.0,7,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.11965640945239293,19497.492952337154,5,3,5,5_1,5_2,5_1_0 +11201,2,48.0,0.0,6,111,0.0,1830.0,0.0,21,56,0.0,0.0,0.0,2269.0,0.0,3474.2624077298137,71,0,0,0,0,0,0,0,0,0,,1,,4,111212,2,1,3,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,282.318684893387,0.0,24789.701595413713,1,1,0,1,200.0,7,5,7,0,1,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09152994404820841,16526.46773027581,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11202,2,35.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,363.0,0.0,0.0,42,2,1,2,2,1,2,2,2,0,,2,,2,111213,2,2,0,1,2,300.0,0.0,335.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1328.51051645837,0.0,16134.475922197475,0,4,2,3,19.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02249840662630958,16134.475922197475,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +11203,2,72.0,0.0,8,112,500.0,1500.0,0.0,77,78,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,111214,2,1,2,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,2954.7799728385,500.0,37387.73481698659,5,5,0,1,135.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05349347880501518,24925.156544657726,7,4,7,7_1,7_1,7_0_0 +11204,2,45.0,0.0,8,221,640.0,0.0,0.0,52,42,0.0,1854.0581878143134,1091.3283477581192,2070.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,111215,2,1,3,0,1,,552.0,,43,3.0,0.0,6.0,6.0,3.3,5,4,565.120871903287,640.0,56250.374401538495,1,1,0,1,140.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03679975505982381,17045.56800046621,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11205,2,45.0,0.0,1,112,300.0,2000.0,0.0,0,55,0.0,0.0,511.56016301161833,2300.0,0.0,3797.008095879578,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,111216,2,1,2,0,1,,100.0,,12,1.0,0.0,8.0,1.0,1.0,1,1,1723.41166768986,300.0,91812.41952154829,0,1,0,1,150.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025051077098128233,91812.41952154829,10,5,10,10_1,10_2,10_1_0 +11206,0,63.0,0.0,5,111,0.0,,,0,78,0.0,0.0,,309.0,90.06329965077386,,71,0,0,0,0,0,0,0,0,0,,1,,3,111217,2,2,0,0,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,101.22090672440463,0.0,5280.430867774738,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058517951988682655,5280.430867774738,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11207,1,35.0,465.0,7,111,643.0,,,85,68,0.0,0.0,,907.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,111218,2,1,0,0,2,,318.0,474.0,42,2.0,1.0,4.0,6.0,2.8999999999999995,3,3,124.41994275289575,643.0,21173.402452453076,6,1,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042836761925097125,7301.173259466579,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11209,2,37.0,0.0,6,111,400.0,0.0,0.0,55,67,0.0,0.0,682.0802173488245,400.0,0.0,0.0,41,2,1,2,1,1,2,2,2,3,60.0,2,,4,111220,1,3,0,1,1,466.0,0.0,426.0,43,2.0,0.0,3.0,4.0,2.1,2,2,300.827180935837,400.0,37921.36831781464,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010548142584087311,18057.79443705459,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +11210,0,64.0,0.0,1,221,0.0,0.0,0.0,0,71,0.0,278.10872817214704,0.0,2978.0,83.13535352379125,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,111221,1,3,4,0,2,,156.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,592.226160324968,0.0,6176.761004949769,0,5,0,1,100.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.48212971128615295,6176.761004949769,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +11211,2,85.0,0.0,7,112,612.0,0.0,0.0,72,72,0.0,0.0,1043.5827325437015,707.0,131.6309764126695,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,111222,2,1,2,0,1,,1114.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,794.787108477748,612.0,20678.048532553436,5,5,0,1,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03419084730780907,13785.365688368956,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11212,2,69.0,0.0,1,120,600.0,0.0,0.0,71,71,527.3414255183008,1059.4618216081792,1023.1203260232367,2000.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,111223,2,3,4,0,1,,373.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,262.445424921509,600.0,19006.249761940748,5,5,0,1,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10522854456037507,12670.833174627165,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11213,2,59.0,0.0,5,120,725.0,0.0,0.0,78,46,2109.365702073203,0.0,1236.2703939447445,2865.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111224,2,1,1,0,1,,226.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,91.3225036107926,725.0,33132.49552468895,5,4,0,1,99.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08647099938080793,22088.330349792635,6,3,6,6_1,6_0,6_0_0 +11214,2,30.0,0.0,1,300,630.0,0.0,0.0,54,47,1582.0242765549024,0.0,1074.2763423243985,2190.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,111225,2,2,1,0,1,,168.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1485.66119766084,630.0,44931.95382958343,1,1,1,2,150.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04874036878757079,24962.196571990793,7,4,7,7_1,7_0,7_1_0 +11215,2,38.0,0.0,9,111,1000.0,0.0,0.0,22,47,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,2.0,1,2009.0,6,111226,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1537.61792840247,1000.0,60268.63874384524,1,1,1,2,170.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016592377409588036,33482.57707991402,8,4,8,8_1,8_2,8_0_0 +11216,2,36.0,0.0,1,400,720.0,0.0,0.0,11,11,0.0,231.75727347678918,1227.744391227884,1045.0,207.83838380947813,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,,1,111227,2,1,1,0,1,,205.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,975.060807550997,720.0,31640.60368249259,1,1,1,2,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03302718274551191,13183.584867705247,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11217,2,71.0,0.0,1,111,1200.0,0.0,0.0,0,23,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,2,2,2,1,1,2,2,2,0,,2,,1,111228,1,3,0,1,2,,0.0,3800.0,11,0.0,1.0,5.0,1.0,1.0,1,1,1299.18089973199,1200.0,60858.39401385932,0,5,2,3,130.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.0197179044804686,60858.39401385932,10,5,10,10_0,10_4,10_1_0 +11218,2,55.0,0.0,2,111,1200.0,,,85,42,0.0,0.0,,1320.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,111229,2,3,0,0,2,,280.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,128.3498418276666,1200.0,52209.22345125054,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02528288897521196,34806.14896750036,9,5,9,9_1,9_2,9_0_1 +11219,2,35.0,0.0,2,111,550.0,1730.0,0.0,48,45,0.0,0.0,937.8602988546337,2280.0,0.0,3284.412002935835,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,111230,1,1,1,0,1,,280.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,593.282054631346,550.0,38533.5146728293,1,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059169271719915824,18349.292701347284,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +11220,2,80.0,0.0,5,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,527.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,111231,2,1,0,1,1,612.0,0.0,292.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1045.21717294318,0.0,36808.79268363277,5,5,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014317231334629822,24539.195122421846,7,4,7,7_0,7_4,7_0_0 +11221,2,25.0,0.0,9,111,473.0,0.0,0.0,0,55,0.0,0.0,806.5598570149849,506.0,45.72444443808519,0.0,42,2,2,2,2,1,2,2,2,2,10.0,2,2009.0,6,111232,2,1,0,0,1,1600.0,200.0,390.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2142.06640840197,473.0,16730.709651428235,0,1,2,3,33.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,1,0,0,0,0.030243785860978395,16730.709651428235,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +11222,2,80.0,0.0,6,111,2202.0,0.0,0.0,77,74,0.0,0.0,3754.851596505279,2257.0,76.20740739680865,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,111233,2,1,0,0,1,,527.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,2737.35243528357,2202.0,57328.875761007504,5,5,0,1,110.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03936933997116875,38219.250507338336,9,5,9,9_0,9_2,9_0_0 +11223,2,72.0,0.0,1,112,200.0,0.0,0.0,77,75,1265.6194212439218,0.0,341.04010867441224,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111234,2,2,1,0,1,,220.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1040.07554363437,200.0,28028.5056969434,5,5,0,1,90.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.049949148739409054,18685.670464628933,5,3,5,5_1,5_1,5_1_0 +11224,1,67.0,94.0,6,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,963.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,111235,2,1,0,0,1,,197.0,627.0,11,0.0,0.0,1.0,1.0,1.0,1,1,905.521684791139,0.0,16225.671796667351,0,5,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059350393134279596,16225.671796667351,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +11225,2,39.0,0.0,1,112,1589.0,0.0,0.0,52,33,0.0,0.0,2709.563663418205,1589.0,0.0,0.0,42,2,2,1,2,1,2,2,2,2,15.0,1,,1,111236,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1581.31668595755,1589.0,44394.22443686161,1,1,1,2,170.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03579294424345466,18497.593515359004,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11226,2,57.0,0.0,7,111,1200.0,0.0,0.0,0,43,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,3.0,2,,5,111237,2,1,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,2010.69613970359,1200.0,55176.03755781989,0,1,1,2,85.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021748571537825636,55176.03755781989,10,5,10,10_0,10_3,10_0_0 +11227,2,69.0,0.0,2,400,1310.0,0.0,0.0,77,77,738.277995725621,0.0,2233.8127118174,2080.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111238,2,1,1,0,1,,418.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2399.88917209558,1310.0,47664.7469083445,5,5,0,1,153.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0436381211464245,31776.497938896337,8,4,8,8_1,8_1,8_0_1 +11228,0,84.0,0.0,2,211,0.0,0.0,0.0,0,78,0.0,0.0,0.0,5079.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111239,2,1,2,0,1,,230.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1380.08537357608,0.0,15698.0,0,5,0,1,100.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.323544400560581,15698.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +11229,0,85.0,0.0,5,400,115.0,,,0,86,0.0,0.0,,403.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,,3,111240,1,1,0,0,2,,134.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,109.08336080848402,115.0,7225.277883196109,0,5,5,0,64.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05577640147754879,4816.851922130739,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11230,2,45.0,0.0,2,111,280.0,,,55,68,0.0,0.0,,480.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,2,,2,111241,2,2,0,0,2,,480.0,256.0,43,2.0,1.0,3.0,3.0,2.0,3,3,114.07353475862064,280.0,41884.68498193407,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0114600360539189,20942.342490967036,5,3,5,5_0,5_2,5_0_1 +11231,2,74.0,0.0,2,112,350.0,0.0,0.0,72,74,3164.0485531098047,595.9472746546007,596.8201901802214,3920.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,111242,2,3,4,0,1,,178.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1273.89108281384,350.0,42035.575362476586,5,5,0,1,220.0,4,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09325434387890456,28023.716908317725,7,4,7,7_1,7_0,7_0_1 +11232,2,29.0,0.0,5,120,720.0,0.0,0.0,31,63,0.0,0.0,1227.744391227884,2570.0,2563.3400669835637,0.0,50,2,2,2,2,1,2,2,2,2,18.0,1,,3,111243,2,2,3,0,1,,150.0,500.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1791.51853446373,720.0,68095.41977341518,1,1,2,3,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.0377411580478037,32426.39036829294,8,4,8,8_1,8_0,8_0_0 +11233,1,36.0,138.0,6,111,264.0,0.0,0.0,0,52,0.0,0.0,450.1729434502241,264.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,4,111244,2,1,0,1,1,453.0,0.0,249.0,32,1.0,0.0,1.0,2.0,1.3,1,1,195.667177027434,264.0,15596.853410685784,0,1,2,3,41.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01692649107153416,11997.579546681372,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +11234,2,31.0,0.0,9,211,500.0,,,0,46,0.0,0.0,,522.0,30.482962958723462,,42,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,111245,2,1,0,0,2,,164.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,108.14241863923492,500.0,30079.078209103573,0,1,1,2,72.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01735425521923123,30079.078209103573,8,4,8,8_1,8_2,8_0_0 +11235,2,87.0,0.0,7,111,1200.0,,,0,77,0.0,0.0,,1326.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,111246,2,2,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,148.98703442485947,1200.0,21202.963765795914,0,5,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06253842692213953,21202.963765795914,5,3,5,5_1,5_3,5_0_0 +11236,1,71.0,335.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,1434.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111247,2,2,0,0,2,,0.0,440.0,41,0.0,0.0,1.0,2.0,1.5,2,2,665.28883401586,0.0,14675.45614443185,6,5,2,3,18.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09771416887400036,9783.637429621233,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +11237,2,41.0,0.0,9,111,780.0,0.0,0.0,0,37,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,2009.0,6,111248,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1458.71737926226,780.0,66716.89211959968,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011691192068745306,66716.89211959968,10,5,10,10_0,10_4,10_0_0 +11238,2,40.0,0.0,9,221,1200.0,0.0,0.0,33,55,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,111249,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1471.96504116594,1200.0,79519.0,1,1,1,2,140.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015090733032357046,37866.19047619047,9,5,9,9_1,9_1,9_0_0 +11239,2,38.0,0.0,9,111,324.0,935.0,0.0,56,46,0.0,0.0,552.4849760525478,1259.0,0.0,1775.1012848237026,42,0,0,0,0,0,0,0,0,2,7.0,2,2004.0,6,111250,1,2,0,0,1,,244.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1417.74564043423,324.0,38553.6220446443,1,1,1,2,86.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03265581632102177,21418.678913691274,6,3,6,6_0,6_2,6_0_0 +11240,1,53.0,341.0,2,112,1000.0,0.0,0.0,62,63,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,111251,2,1,0,1,1,871.0,0.0,430.0,43,2.0,0.0,5.0,8.0,3.499999999999999,3,3,272.832544089268,1000.0,42364.35331200309,1,1,2,3,75.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023604750735488508,12104.1009462866,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +11241,2,42.0,0.0,6,112,1400.0,0.0,0.0,52,23,0.0,0.0,2387.2807607208856,1520.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,111252,2,1,2,0,1,,600.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,3118.70087640421,1400.0,68838.0,1,1,0,1,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022080827449954966,27535.2,7,4,7,7_1,7_1,7_0_0 +11243,1,83.0,70.0,5,111,0.0,0.0,1200.0,0,78,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,71,2,1,2,2,2,2,2,1,0,,2,,3,111254,2,1,0,1,1,466.0,0.0,300.0,11,0.0,2.0,2.0,1.0,1.0,1,1,376.766393464682,0.0,16331.787097054945,0,5,2,3,50.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.07347634357885989,16331.787097054945,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +11244,1,27.0,200.0,7,111,500.0,,,55,47,0.0,0.0,,500.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,5,111255,2,1,0,0,1,,300.0,690.0,43,2.0,0.0,3.0,3.0,1.8,2,2,151.20195422384424,500.0,27194.8272112471,4,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018385849489538676,15108.237339581721,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +11245,2,52.0,0.0,9,111,1650.0,0.0,0.0,77,63,0.0,0.0,2813.5808965639008,1650.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,111256,2,1,1,0,1,,110.0,664.0,42,1.0,0.0,3.0,2.0,1.5,2,2,384.345212015798,1650.0,26324.717653478045,7,4,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06267873493344003,17549.811768985364,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11246,2,50.0,0.0,2,120,750.0,,,0,47,0.0,0.0,,975.0,311.75757571421724,,71,0,0,0,0,0,0,0,0,0,,1,,2,111257,2,3,0,0,2,,850.0,,22,3.0,5.0,4.0,4.0,2.5,4,4,80.35311707851864,750.0,47014.888206794836,0,1,0,1,82.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020738111632031656,18805.955282717936,5,3,5,5_1,5_1,5_0_1 +11247,2,62.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,529.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111258,2,2,0,1,1,920.0,0.0,276.0,21,1.0,1.0,3.0,2.0,1.5,2,2,473.378592975229,0.0,19259.8318908125,0,5,2,3,66.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027466491036837574,12839.887927208334,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +11248,2,25.0,0.0,6,112,1200.0,,,0,22,0.0,0.0,,1300.0,138.5589225396521,,60,0,0,0,0,0,0,0,0,1,3.0,1,,4,111259,2,2,0,0,2,,840.0,,22,4.0,0.0,5.0,6.0,3.0999999999999996,4,4,10.711852557034108,1200.0,29906.214715229933,0,1,0,1,120.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04346922579065035,9647.166037170948,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +11249,1,66.0,37.0,7,300,540.0,,,0,86,0.0,0.0,,672.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,,5,111260,1,3,0,0,1,,272.0,560.0,11,0.0,3.0,4.0,1.0,1.0,1,1,125.81302609498199,540.0,17141.387434554974,0,5,2,3,65.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03920336102113466,17141.387434554974,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +11250,2,72.0,0.0,1,111,300.0,0.0,0.0,0,75,2109.365702073203,331.081819252556,511.56016301161833,2720.0,235.55016831740858,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111261,2,1,2,0,2,,150.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,558.729102120053,300.0,15301.886954750433,0,5,0,1,108.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1777558550813619,15301.886954750433,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +11251,2,54.0,0.0,2,111,338.0,179.0,0.0,0,65,0.0,0.0,576.3577836597567,517.0,0.0,339.83222458122225,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,111262,2,1,0,1,1,517.0,95.0,262.0,12,1.0,1.0,2.0,1.0,1.0,1,1,388.472447560674,338.0,22125.176853088124,0,1,2,3,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02336704485721838,22125.176853088124,6,3,6,6_0,6_3,6_0_1 +11252,2,55.0,0.0,9,111,600.0,,,68,64,0.0,0.0,,866.0,368.5667339554746,,71,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,111263,2,1,0,0,2,,1500.0,,43,4.0,0.0,4.0,5.0,2.8,4,4,87.71274823263465,600.0,81115.86166976468,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010676087046028323,28969.95059634453,8,4,8,8_1,8_2,8_0_0 +11254,2,33.0,0.0,1,111,982.0,765.0,0.0,63,62,0.0,0.0,1674.506933591364,1913.0,230.0078114158225,1452.3555966739386,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,111265,2,1,1,0,1,,520.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,666.785825171133,982.0,48381.53253059589,1,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03953988019685491,23038.82501456947,6,3,6,6_1,6_3,6_1_0 +11255,2,51.0,0.0,5,300,300.0,0.0,0.0,43,42,0.0,529.7309108040896,511.56016301161833,760.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,1,15.0,1,,3,111266,2,2,3,0,1,,60.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1304.68559436723,300.0,42676.052575798836,1,1,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017808582428052132,28450.701717199223,8,4,8,8_1,8_0,8_0_0 +11256,2,58.0,0.0,2,111,1200.0,1300.0,0.0,0,22,0.0,0.0,2046.2406520464733,2960.0,637.3710436823997,2468.055262321726,20,0,0,0,0,0,0,0,0,0,,1,,2,111267,2,1,2,0,1,,1500.0,,32,1.0,0.0,6.0,5.0,3.0,5,4,799.586530957602,1200.0,6810.150118465689,0,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4346453379895363,2270.050039488563,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +11257,2,90.0,0.0,1,300,254.0,1423.0,0.0,77,78,0.0,0.0,433.12093801650354,1677.0,0.0,2701.57126021832,71,2,2,1,2,1,2,2,2,0,,1,,1,111268,2,1,4,0,1,,323.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,219.282668938643,254.0,22122.43725851969,5,5,0,1,65.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07580539071725298,14748.291505679794,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11259,2,70.0,0.0,5,111,500.0,80.0,0.0,77,78,0.0,0.0,852.6002716860306,580.0,0.0,151.8803238351831,71,2,2,2,1,2,2,2,2,0,,2,,3,111270,1,3,0,1,2,184.0,0.0,314.0,41,0.0,1.0,3.0,2.0,1.5,2,2,375.203249665557,500.0,32270.30381624247,5,5,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.017973180646290388,21513.535877494982,6,3,6,6_0,6_3,6_0_0 +11260,2,63.0,0.0,1,111,300.0,63.0,0.0,0,35,0.0,0.0,511.56016301161833,363.0,0.0,119.6057550202067,20,1,2,2,2,1,2,2,2,3,30.0,2,,1,111271,2,1,0,1,1,240.0,0.0,991.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1031.60032103123,300.0,23542.393798436227,0,5,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.015418992779914835,23542.393798436227,6,3,6,6_0,6_4,6_1_0 +11261,2,52.0,0.0,1,111,430.0,635.0,0.0,68,63,0.0,0.0,733.2362336499863,1065.0,0.0,1205.550070441766,71,0,0,0,0,0,0,0,0,0,,2,,1,111272,2,1,0,0,1,,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,1081.32727231477,430.0,42813.55125848964,1,4,1,2,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024875301597150682,28542.36750565976,8,4,8,8_0,8_4,8_1_0 +11262,2,70.0,0.0,2,111,1100.0,1300.0,0.0,90,72,0.0,0.0,1875.7205977092674,2400.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,2,111273,2,3,1,0,1,,600.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,255.605888096571,1100.0,50315.1478660109,5,5,0,1,125.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04769935301375231,33543.431910673935,8,4,8,8_1,8_2,8_0_1 +11263,2,46.0,0.0,1,112,913.0,0.0,0.0,21,65,0.0,0.0,1556.848096098692,913.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,111274,2,1,1,0,1,,143.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,1328.12442068817,913.0,38208.80069120306,1,1,1,2,250.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023895018516249922,16612.522039653508,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11264,2,58.0,0.0,1,111,2672.0,0.0,0.0,72,68,0.0,0.0,4556.295851890148,2765.0,128.85979796187644,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,111275,2,2,3,0,1,,410.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,947.010943756916,2672.0,14691.932676399663,6,1,0,1,100.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1881985209775395,9794.621784266443,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +11265,1,64.0,254.0,5,111,310.0,20.0,0.0,0,78,734.0592643214746,0.0,528.612168445339,1026.0,0.0,37.970080958795776,70,2,2,1,1,1,1,2,2,0,,2,,3,111276,1,3,0,1,2,687.0,0.0,264.0,11,0.0,5.0,3.0,1.0,1.0,1,1,435.596392482786,310.0,6060.0,0,7,2,3,70.0,7,5,2,1,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.16930693069306932,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11266,2,34.0,0.0,1,112,2800.0,0.0,0.0,55,62,0.0,529.7309108040896,4774.561521441771,3260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,111277,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1123.71571651564,2800.0,39854.4799651814,1,1,0,1,95.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08179757966602694,22141.37775843411,6,3,6,6_1,6_0,6_1_0 +11267,2,49.0,0.0,1,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1882.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111278,2,2,4,0,1,,239.0,750.0,32,1.0,0.0,3.0,2.0,1.5,2,2,539.904400754079,0.0,29022.310592921425,0,1,2,3,60.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06484666318949195,19348.207061947618,5,3,5,5_1,5_0,5_1_0 +11268,2,50.0,0.0,1,112,780.0,0.0,0.0,52,11,1318.3535637957518,198.6490915515336,1330.0564238302077,2300.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111279,1,2,3,0,1,,404.0,,43,2.0,0.0,6.0,5.0,2.8,4,4,1430.88462625296,780.0,80798.0858391489,1,1,0,1,107.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028466020897806796,28856.459228267468,8,4,8,8_1,8_0,8_1_0 +11269,2,56.0,0.0,2,111,590.0,100.0,0.0,55,56,0.0,0.0,1006.0683205895161,690.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,111280,2,1,0,1,1,1056.0,0.0,404.0,43,3.0,2.0,4.0,3.0,2.0,3,3,690.921884619039,590.0,50761.61443789555,1,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013592948286626749,25380.807218947775,7,4,7,7_0,7_4,7_0_1 +11270,2,32.0,0.0,2,111,768.0,1090.0,0.0,52,62,0.0,0.0,1309.5940173097429,1858.0,0.0,2069.36941225437,43,0,0,0,0,0,0,0,0,1,20.0,1,,2,111281,2,1,1,0,1,,924.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,74.7476855430664,768.0,37487.84608483147,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049562730165812155,17851.355278491177,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +11271,1,78.0,165.0,2,111,200.0,,,0,86,0.0,0.0,,325.0,173.19865317456512,,71,0,0,0,0,0,0,0,0,0,,2,,2,111282,2,3,0,0,2,,200.0,246.0,21,1.0,4.0,3.0,2.0,1.5,2,2,122.92974569191142,200.0,6972.684299930439,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.046610456750959206,4648.456199953626,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11272,2,52.0,0.0,2,111,300.0,350.0,0.0,0,47,0.0,0.0,511.56016301161833,657.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,111283,1,3,0,1,1,577.0,250.0,224.0,22,2.0,0.0,4.0,2.0,1.5,2,2,296.922195981127,300.0,40524.24955418261,0,1,2,3,60.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016212514907193127,27016.16636945507,7,4,7,7_0,7_2,7_0_1 +11273,2,74.0,0.0,2,111,300.0,980.0,0.0,77,78,0.0,331.081819252556,511.56016301161833,1650.0,166.2707070475825,1860.5339669809932,50,0,0,0,0,0,0,0,0,0,,1,,2,111284,1,2,2,0,2,,280.0,112.0,41,0.0,2.0,6.0,2.0,1.5,2,2,351.13383372685,300.0,19073.813899903907,5,5,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08650603432847337,12715.875933269272,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11274,2,53.0,0.0,6,111,270.0,1200.0,0.0,0,52,0.0,0.0,460.40414671045653,5497.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,111285,2,1,2,0,1,,220.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1622.03330240099,270.0,18126.887996894373,0,1,0,1,90.0,5,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3032511703576359,18126.887996894373,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11275,1,40.0,465.0,7,111,250.0,,,53,63,0.0,0.0,,442.0,266.03313127613205,,71,0,0,0,0,0,0,0,0,0,,1,,5,111286,2,2,0,0,2,,278.0,780.0,43,2.0,0.0,5.0,7.0,3.8,5,2,7.574688069164691,250.0,44642.288199704184,1,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.009900926180637148,11747.970578869523,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +11276,2,64.0,0.0,5,211,713.0,0.0,0.0,78,77,1054.6828510366015,662.163638505112,1215.8079874242796,2213.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,111287,2,2,2,0,1,,375.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,244.005007272282,713.0,33248.10436632867,5,5,0,1,84.0,2,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06656018567606428,22165.40291088578,6,3,6,6_1,6_1,6_0_0 +11277,0,51.0,0.0,2,111,650.0,,,0,53,0.0,0.0,,722.0,99.7624242285495,,71,0,0,0,0,0,0,0,0,0,,1,,2,111288,2,2,0,0,2,,700.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,112.4729138488867,650.0,9227.735042735043,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07824238522847787,9227.735042735043,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +11278,1,49.0,170.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,3830.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,4.0,1,,1,111289,1,3,1,0,2,,322.0,580.0,32,1.0,0.0,3.0,2.0,1.5,2,1,1771.99815974887,0.0,21326.67036101163,0,1,2,3,102.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.17958733994415826,14217.780240674421,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +11279,2,55.0,0.0,5,111,1080.0,,,54,55,0.0,0.0,,1218.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,2,60.0,2,,3,111290,2,1,0,0,2,,760.0,,43,3.0,1.0,3.0,4.0,2.5,4,4,82.86024430015026,1080.0,47628.26584682188,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025573049497901765,19051.30633872875,5,3,5,5_0,5_2,5_0_0 +11280,2,39.0,0.0,8,111,1500.0,0.0,0.0,46,38,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,1999.0,6,111291,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,878.289813036144,1500.0,73616.94284482196,4,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020375744251725694,40898.30158045664,9,5,9,9_0,9_4,9_0_0 +11281,2,57.0,0.0,2,111,1250.0,540.0,0.0,38,37,0.0,0.0,2131.5006792150766,1790.0,0.0,1025.192185887486,42,0,0,0,0,0,0,0,0,3,60.0,2,,2,111292,2,2,0,1,1,,0.0,,43,3.0,0.0,7.0,6.0,3.5,6,6,819.005684358764,1250.0,120192.02206568982,1,1,0,1,131.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014892835391534492,34340.57773305423,9,5,9,9_0,9_4,9_0_1 +11282,2,68.0,0.0,5,111,206.0,0.0,0.0,0,74,0.0,0.0,351.2713119346446,206.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,111293,2,2,0,1,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,1289.00314290312,206.0,23210.87989985645,0,5,1,2,30.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008875148244650305,23210.87989985645,6,3,6,6_0,6_3,6_0_0 +11283,0,51.0,0.0,9,111,350.0,,,46,53,0.0,0.0,,420.0,96.99124577775646,,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,111294,2,1,0,0,2,,200.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,89.41251563124493,350.0,66439.6644348064,4,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00632152500427095,33219.8322174032,8,4,8,8_1,8_2,8_0_0 +11284,2,44.0,0.0,2,111,570.0,643.0,0.0,64,34,0.0,0.0,971.9643097220749,1213.0,0.0,1220.7381028252844,20,1,2,2,2,1,2,2,2,2,15.0,2,,2,111295,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1189.46725021122,570.0,51813.97380684522,4,1,0,1,85.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.023410673045883016,21589.155752852177,6,3,6,6_0,6_3,6_0_1 +11285,2,52.0,0.0,7,111,229.0,517.0,0.0,0,47,0.0,0.0,390.490924432202,746.0,0.0,981.5265927848709,50,0,0,0,0,0,0,0,0,3,20.0,2,,5,111296,1,2,0,0,1,,0.0,305.0,12,1.0,0.0,2.0,1.0,1.0,1,1,525.031335529389,229.0,15824.10327768416,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04714327168554579,15824.10327768416,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +11286,2,78.0,0.0,2,400,0.0,0.0,0.0,0,71,1582.0242765549024,0.0,0.0,4284.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111297,2,2,1,0,1,,217.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,856.28777984895,0.0,41448.93685718685,0,5,0,1,60.0,0,0,7,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10335608883674409,41448.93685718685,9,5,9,9_1,9_0,9_0_1 +11287,0,53.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1713.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111298,2,1,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,322.373192236053,0.0,36740.09893414675,0,1,5,0,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0466248064021383,36740.09893414675,9,5,9,9_0,9_4,9_0_1 +11288,1,43.0,215.0,2,112,105.0,0.0,0.0,0,64,0.0,0.0,179.0460570540664,105.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111299,2,1,0,1,1,200.0,0.0,202.0,12,1.0,2.0,1.0,1.0,1.0,1,1,327.481911648136,105.0,6046.957107914801,0,4,2,3,31.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017364105305553858,6046.957107914801,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11289,1,25.0,93.0,2,111,0.0,0.0,0.0,56,62,0.0,0.0,0.0,985.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,111300,1,1,0,0,2,60.0,303.0,409.0,43,2.0,0.0,4.0,3.0,1.8,2,2,552.390481432452,0.0,27805.02486378374,1,4,2,3,110.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03542525154447785,15447.23603543541,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +11290,2,78.0,0.0,9,111,0.0,,,0,71,0.0,0.0,,126.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,111301,2,2,0,0,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,90.59713755746766,0.0,5528.837936098043,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022789599090496045,5528.837936098043,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +11291,2,42.0,0.0,7,111,2066.0,0.0,0.0,54,22,0.0,0.0,3522.9443226066783,2066.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,111302,2,1,2,0,1,,714.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1092.75311913343,2066.0,47031.63179725925,1,1,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04392788259837489,18812.6527189037,5,3,5,5_1,5_3,5_0_0 +11292,1,94.0,102.0,7,111,250.0,0.0,0.0,0,78,0.0,0.0,426.3001358430153,250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,111303,1,1,0,1,1,873.0,0.0,400.0,11,0.0,3.0,2.0,1.0,1.0,1,1,756.910541576033,250.0,15800.464463515902,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01582231969049157,15800.464463515902,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +11293,0,82.0,0.0,2,111,2516.0,0.0,0.0,77,78,0.0,0.0,4290.284567124106,2516.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111304,2,1,2,0,1,,311.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1722.53712591999,2516.0,42505.41159267038,5,5,5,0,108.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059192462929446334,28336.941061780253,8,4,8,8_1,8_2,8_0_1 +11294,2,29.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1203.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,111305,1,2,0,0,1,,0.0,359.0,12,1.0,0.0,3.0,1.0,1.0,1,1,359.791274045249,0.0,23128.296752081107,0,1,2,3,65.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05201420635921895,23128.296752081107,6,3,6,6_0,6_2,6_0_1 +11295,2,79.0,0.0,9,111,230.0,686.0,0.0,0,77,0.0,0.0,392.1961249755741,916.0,0.0,1302.3737768866952,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,111306,2,1,0,0,1,,0.0,331.0,11,0.0,1.0,2.0,1.0,1.0,1,1,953.110325682381,230.0,24836.758885353614,0,5,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036880818637739836,24836.758885353614,7,4,7,7_0,7_4,7_0_0 +11296,2,55.0,0.0,6,111,270.0,754.0,0.0,0,56,0.0,0.0,460.40414671045653,1024.0,0.0,1431.4720521466008,71,0,0,0,0,0,0,0,0,0,,1,,4,111307,2,1,1,0,1,,193.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,1607.07447852279,270.0,12677.107297801287,0,1,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08077552520026411,8451.404865200859,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +11297,2,67.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,524.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,111308,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,225.62693201483,0.0,19587.79285912519,0,5,0,1,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02675135497748991,19587.79285912519,5,3,5,5_0,5_4,5_0_1 +11298,2,57.0,0.0,2,111,1119.0,1865.0,0.0,47,37,0.0,0.0,1908.1194080333364,2984.0,0.0,3540.7100494077063,20,0,0,0,0,0,0,0,0,2,60.0,1,,2,111309,2,2,2,0,1,,689.0,,43,3.0,0.0,6.0,3.0,2.0,3,3,509.969654844903,1119.0,123514.57656899774,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024159091848831925,61757.28828449887,10,5,10,10_1,10_4,10_0_1 +11299,2,56.0,0.0,2,111,900.0,360.0,0.0,68,52,0.0,0.0,1534.680489034855,1260.0,0.0,683.461457258324,71,2,2,2,2,2,2,2,1,2,30.0,2,,2,111310,2,1,0,1,1,,0.0,435.0,43,4.0,1.0,5.0,7.0,3.6,5,4,305.323082706649,900.0,45934.159848299125,1,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.027430565926561862,12759.488846749757,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +11300,2,40.0,0.0,1,112,1000.0,0.0,0.0,42,42,843.7462808292812,423.78472864327165,1705.2005433720612,2120.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,111311,2,1,4,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1336.26298626453,1000.0,63644.92630522772,1,1,1,2,150.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03330980367284777,35358.29239179318,9,5,9,9_1,9_0,9_1_0 +11301,2,43.0,0.0,2,120,220.0,0.0,0.0,63,45,2636.7071275915036,0.0,375.14411954185346,2720.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,111312,2,3,3,0,1,,320.0,650.0,43,2.0,0.0,4.0,2.0,1.5,2,2,615.096951786756,220.0,48456.926989541964,1,1,2,3,107.0,0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056132325530816964,32304.617993027976,8,4,8,8_1,8_1,8_0_1 +11302,2,28.0,0.0,7,111,600.0,0.0,0.0,55,62,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,111313,2,2,0,0,1,,0.0,690.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1247.7301150303,600.0,50513.917458701224,1,1,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011877914645811094,28063.287477056234,8,4,8,8_0,8_4,8_0_0 +11303,2,69.0,0.0,2,111,400.0,,,0,77,0.0,0.0,,550.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,111314,1,3,0,0,2,,135.0,250.0,21,1.0,2.0,2.0,2.0,1.5,2,2,20.753901604856523,400.0,8280.832517596638,0,5,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06641844269054575,5520.555011731092,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +11304,2,70.0,0.0,1,120,801.0,0.0,0.0,90,71,0.0,0.0,1365.865635241021,925.0,171.8130639491686,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111315,2,1,1,0,1,,262.0,530.0,41,0.0,0.0,6.0,2.0,1.5,2,2,957.696044813414,801.0,24581.59407299027,5,5,2,3,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037629780935011466,16387.72938199351,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11305,2,64.0,0.0,6,221,563.0,,,0,86,0.0,0.0,,1199.0,881.2347473521874,,71,0,0,0,0,0,0,0,0,0,,1,,4,111316,2,3,0,0,2,,1716.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,129.52885222203167,563.0,9345.77579397037,0,5,0,1,40.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12829325530937313,9345.77579397037,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11306,2,76.0,0.0,7,111,300.0,,,77,78,0.0,0.0,,600.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,111317,2,2,0,0,2,,225.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,102.07574117003496,300.0,18873.79300815116,5,5,0,1,136.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03179011233941549,12582.528672100772,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +11307,2,68.0,0.0,2,111,220.0,1020.0,0.0,0,77,0.0,0.0,375.14411954185346,1240.0,0.0,1936.4741288985847,60,0,0,0,0,0,0,0,0,0,,2,,2,111318,1,2,0,0,1,,0.0,414.0,11,0.0,2.0,5.0,1.0,1.0,1,1,1077.36883508417,220.0,26262.357936651486,0,5,2,3,100.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04721586702119646,26262.357936651486,7,4,7,7_0,7_2,7_0_1 +11308,1,87.0,253.0,7,111,120.0,,,0,86,0.0,0.0,,209.0,123.31744106029036,,71,0,0,0,0,0,0,0,0,0,,2,,5,111319,1,1,0,0,2,,120.0,402.0,11,0.0,0.0,2.0,1.0,1.0,1,1,114.44154940977204,120.0,10057.20688,0,5,2,3,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020781117709293855,10057.20688,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11309,2,32.0,0.0,9,111,2000.0,0.0,0.0,52,62,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,111320,2,1,1,0,1,,292.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1176.23486234738,2000.0,80900.939904583,1,1,1,2,120.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024721591644780147,44944.96661365723,10,5,10,10_1,10_2,10_0_0 +11310,2,55.0,0.0,8,111,700.0,1200.0,0.0,0,43,0.0,0.0,1193.6403803604428,1900.0,0.0,2278.2048575277468,33,0,0,0,0,0,0,0,0,0,,2,2003.0,6,111321,2,1,0,0,1,,0.0,582.0,32,2.0,3.0,4.0,5.0,3.0,5,5,749.727928464354,700.0,30679.97101517952,0,1,2,3,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06192965433572078,10226.65700505984,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +11311,2,66.0,0.0,2,111,327.0,70.0,0.0,75,74,0.0,0.0,557.600577682664,397.0,0.0,132.89528335578524,10,0,0,0,0,0,0,0,0,0,,2,,2,111322,2,2,0,1,2,,0.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,720.297750000026,327.0,59150.538495111716,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006711688686195285,39433.692330074475,9,5,9,9_0,9_4,9_0_1 +11312,2,55.0,0.0,6,112,2000.0,0.0,0.0,78,43,0.0,79.45963662061344,3410.4010867441225,2060.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,4,111323,2,1,2,0,1,,160.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1752.46027898854,2000.0,57400.012522434256,5,1,0,1,130.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035888493912695024,38266.67501495617,9,5,9,9_1,9_0,9_0_0 +11313,2,61.0,0.0,7,400,372.0,0.0,0.0,72,72,0.0,0.0,634.3346021344067,1053.0,943.5862624950307,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111324,2,1,2,0,1,,300.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1410.58319006333,372.0,7871.381377102146,5,5,0,1,115.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13377575670049197,5247.587584734764,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +11314,1,27.0,300.0,6,111,350.0,,,69,56,0.0,0.0,,450.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,2,,4,111325,1,3,0,0,2,,0.0,403.0,43,2.0,1.0,4.0,4.0,2.1,2,2,94.80665632298394,350.0,21519.947840853278,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02091083135181787,10247.594209930132,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11315,2,32.0,0.0,8,112,550.0,1340.0,0.0,47,43,0.0,0.0,937.8602988546337,1890.0,0.0,2543.9954242393173,20,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,111326,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,108.02850999519,550.0,77939.08223307223,1,1,1,2,114.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024249708180397435,37113.848682415344,9,5,9,9_1,9_0,9_0_0 +11316,2,76.0,0.0,7,221,0.0,,,0,77,0.0,0.0,,340.0,90.06329965077386,,71,0,0,0,0,0,0,0,0,0,,1,,5,111327,2,3,0,0,2,,540.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,109.91647591844047,0.0,10959.0,0,5,0,1,44.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03102472853362533,10959.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +11317,2,35.0,0.0,1,400,697.0,0.0,0.0,0,64,0.0,331.081819252556,1188.5247787303267,1067.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,111328,2,1,1,0,1,,244.0,,22,1.0,2.0,7.0,2.0,1.5,2,2,1031.5943591803,697.0,41070.304019788906,0,1,0,1,190.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025979841772923992,27380.20267985927,7,4,7,7_1,7_0,7_1_0 +11318,2,57.0,0.0,5,111,730.0,0.0,0.0,62,52,0.0,1059.4618216081792,1244.7963966616046,1650.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,111329,2,1,2,0,2,,500.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,396.3710594248,730.0,14205.21613021846,4,1,0,1,130.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11615451569863759,9470.144086812306,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11320,2,60.0,0.0,6,111,1300.0,250.0,0.0,85,72,0.0,0.0,2216.7607063836795,1550.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,0,,1,,4,111331,2,1,2,0,1,,287.0,,41,1.0,3.0,4.0,3.0,2.0,3,3,2686.962376075,1300.0,29058.69624803532,7,7,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053340314609083554,14529.34812401766,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +11321,2,51.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,272.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111332,1,2,0,1,2,441.0,0.0,495.0,22,2.0,2.0,3.0,2.0,1.5,2,2,337.412737463069,0.0,1087.7559276504298,0,4,2,3,57.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.25005609538485746,725.1706184336199,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +11322,1,66.0,80.0,7,112,540.0,600.0,0.0,77,78,0.0,0.0,920.8082934209131,1200.0,83.13535352379125,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,1,,5,111333,1,1,2,0,1,,270.0,304.0,41,0.0,2.0,2.0,2.0,1.5,2,2,530.776751845603,540.0,14944.77935466258,6,5,2,3,49.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08029559831712171,9963.18623644172,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +11323,2,47.0,0.0,7,111,3360.0,,,85,22,0.0,0.0,,3612.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,111334,2,1,0,0,2,,1200.0,,42,3.0,0.0,5.0,5.0,2.8,4,3,88.60939282856413,3360.0,21930.24014058151,6,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16470407879009313,7832.2286216362545,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +11324,0,50.0,0.0,2,112,270.0,,,0,63,0.0,0.0,,417.0,203.68161613328857,,71,2,2,2,2,1,1,2,2,0,,1,,2,111335,1,3,0,0,2,,198.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,130.12954748580162,270.0,5241.0,0,4,5,0,40.0,7,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.0795649685174585,5241.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +11325,1,41.0,398.0,2,111,588.0,696.0,0.0,81,68,0.0,0.0,1002.657919502772,1356.0,99.7624242285495,1321.358817366093,71,2,2,2,1,1,2,2,2,0,,1,,2,111336,1,3,4,0,1,,608.0,341.0,43,2.0,1.0,3.0,6.0,2.8999999999999995,3,2,218.209987355211,588.0,18989.355177041987,4,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0.07140842789856264,6548.0535093248245,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +11326,1,38.0,220.0,2,111,480.0,,,22,53,0.0,0.0,,756.0,382.4226262094398,,41,0,0,0,0,0,0,0,0,0,,1,,2,111337,2,3,0,0,2,,400.0,630.0,43,2.0,0.0,4.0,5.0,2.4,2,2,84.45061219675743,480.0,27567.198017246687,1,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02742389703614523,11486.33250718612,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +11327,1,52.0,251.0,2,112,420.0,588.0,0.0,0,56,0.0,0.0,716.1842282162656,1008.0,0.0,1116.320380188596,60,0,0,0,0,0,0,0,0,0,,2,,2,111338,2,2,0,1,1,780.0,0.0,317.0,32,1.0,2.0,4.0,2.0,1.5,2,1,912.543658544068,420.0,13800.594309027822,0,1,2,3,70.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0730403327152806,9200.396206018548,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +11328,2,52.0,0.0,2,111,300.0,1500.0,0.0,90,63,0.0,0.0,511.56016301161833,1800.0,0.0,2847.7560719096837,60,2,2,2,2,1,2,2,2,2,15.0,1,,2,111339,1,1,2,0,1,,200.0,600.0,43,2.0,3.0,4.0,2.0,1.5,2,2,253.404485367822,300.0,30954.711381517085,1,1,2,3,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05814946803460657,20636.474254344725,5,3,5,5_1,5_3,5_0_1 +11329,1,59.0,523.0,7,111,694.0,,,0,56,0.0,0.0,,838.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,5,111340,2,2,0,0,2,,550.0,483.0,32,1.0,3.0,4.0,2.0,1.5,2,1,119.22543118545771,694.0,12492.73605397606,0,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0670789806475812,8328.490702650706,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11330,2,64.0,0.0,5,111,840.0,0.0,0.0,72,77,0.0,0.0,1432.3684564325313,960.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,111341,2,1,1,0,2,,560.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1137.01729614586,840.0,40123.84696547096,5,5,0,1,120.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023925921181638915,26749.231310313975,7,4,7,7_1,7_2,7_0_0 +11332,2,34.0,0.0,2,111,180.0,880.0,0.0,46,46,0.0,0.0,306.936097806971,1060.0,0.0,1670.6835621870143,31,0,0,0,0,0,0,0,0,0,,2,,2,111343,2,1,0,1,1,,0.0,317.0,43,2.0,0.0,3.0,4.0,2.3,3,3,1304.58967085804,180.0,68824.98868516379,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015401382844375217,29923.908123984256,8,4,8,8_0,8_4,8_0_1 +11333,2,55.0,0.0,7,112,1420.0,0.0,0.0,86,34,0.0,0.0,2421.3847715883267,1420.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,111344,2,1,2,0,1,,700.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1420.72816079353,1420.0,52370.976068595606,6,1,0,1,115.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02711425500529303,34913.9840457304,9,5,9,9_1,9_1,9_0_0 +11334,2,58.0,0.0,9,111,1000.0,1200.0,0.0,48,46,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,90.0,1,2005.0,6,111345,2,1,1,0,1,,1100.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,650.704031135053,1000.0,87616.68791500045,4,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025109371882834526,43808.34395750023,10,5,10,10_1,10_4,10_0_0 +11335,1,47.0,260.0,2,111,204.0,0.0,0.0,0,63,0.0,0.0,347.86091084790047,1027.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,111346,2,1,0,1,1,50.0,215.0,231.0,12,1.0,0.0,2.0,1.0,1.0,1,1,444.114886919538,204.0,6072.490156687267,0,4,2,3,45.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.1691233700673894,6072.490156687267,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11336,2,69.0,0.0,2,111,1700.0,0.0,0.0,63,78,0.0,0.0,2898.840923732504,1760.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111347,2,3,3,0,1,,240.0,,42,1.0,4.0,2.0,2.0,1.5,2,2,514.56210695376,1700.0,32654.318669146087,4,5,0,1,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05389792443175248,21769.545779430726,6,3,6,6_1,6_4,6_0_1 +11337,2,50.0,0.0,1,111,2400.0,3000.0,0.0,46,22,0.0,0.0,4092.4813040929466,5400.0,0.0,5695.512143819367,10,2,2,2,1,2,2,2,2,0,,2,,1,111348,1,2,0,0,2,,320.0,1660.0,43,2.0,1.0,4.0,4.0,2.5,4,3,1073.43897173156,2400.0,50010.85654158252,1,1,2,3,128.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.1079765549608226,20004.34261663301,5,3,5,5_0,5_4,5_1_0 +11338,2,54.0,0.0,1,111,475.0,776.0,0.0,0,43,0.0,0.0,809.9702581017291,1251.0,0.0,1473.2391412012762,33,0,0,0,0,0,0,0,0,0,,1,,1,111349,2,1,2,0,1,,170.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1107.23199907978,475.0,17857.024478959214,0,1,1,2,100.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07005646441679257,17857.024478959214,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +11339,0,55.0,0.0,5,111,150.0,,,0,47,0.0,0.0,,250.0,138.5589225396521,,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,111350,1,2,0,0,2,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,126.11806614451763,150.0,18924.167477851362,0,1,5,0,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01321062077328354,18924.167477851362,5,3,5,5_1,5_2,5_0_0 +11340,2,81.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,111351,2,2,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,287.880180698454,300.0,18907.802240737798,0,5,0,1,97.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01586646592662341,18907.802240737798,5,3,5,5_0,5_3,5_0_1 +11341,2,42.0,0.0,2,111,880.0,,,81,37,0.0,0.0,,1006.0,174.58424239996165,,31,0,0,0,0,0,0,0,0,0,,1,,2,111352,2,3,0,0,1,,284.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,129.95123866463672,880.0,59155.1168868608,4,1,1,2,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017006136627606715,28169.103279457522,8,4,8,8_1,8_2,8_0_1 +11343,2,67.0,0.0,2,300,364.0,0.0,0.0,0,77,2208.5058900706435,0.0,620.6929977874303,2518.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111354,2,2,3,0,1,,201.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1119.42239917779,364.0,17248.734203937867,0,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14598172655620975,17248.734203937867,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +11344,2,47.0,0.0,2,111,1300.0,0.0,0.0,0,43,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,10.0,1,,2,111355,2,1,1,0,1,,50.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1307.99026273208,1300.0,30668.714149499196,0,1,1,2,80.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.042388474249782926,23591.31857653784,6,3,6,6_1,6_2,6_0_1 +11345,2,43.0,0.0,2,111,670.0,640.0,0.0,56,68,0.0,0.0,1142.484364059281,1310.0,0.0,1215.0425906814648,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,111356,2,1,0,1,1,,1200.0,,43,5.0,0.0,3.0,9.0,4.3999999999999995,6,6,198.813481555101,670.0,21249.492820407297,1,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.061648530205950146,4829.430186456204,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +11346,2,55.0,0.0,7,211,1200.0,,,81,85,0.0,0.0,,1500.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,111357,1,2,0,0,2,,1700.0,,42,4.0,0.0,7.0,9.0,4.199999999999999,5,5,7.559826641115449,1200.0,15347.512396694216,4,7,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09773570864312142,3654.1696182605283,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11347,2,65.0,0.0,2,111,150.0,150.0,0.0,0,75,0.0,0.0,255.78008150580916,300.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,2,,2,111358,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1095.54269126103,150.0,30562.380893420843,0,5,0,1,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009815989174605862,30562.380893420843,8,4,8,8_0,8_4,8_0_1 +11348,2,46.0,0.0,2,111,375.0,1855.0,0.0,0,42,0.0,0.0,639.4502037645229,2230.0,0.0,3521.7250089283084,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,111359,2,2,1,0,1,,468.0,,32,1.0,0.0,3.0,3.0,2.0,3,2,988.426866464877,375.0,42351.32133574754,0,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05265479162553827,21175.66066787377,5,3,5,5_1,5_4,5_0_1 +11349,2,80.0,0.0,2,111,320.0,0.0,0.0,0,72,2636.7071275915036,0.0,545.6641738790596,2820.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111360,2,1,2,0,2,,100.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1061.29997023931,320.0,10752.954283231278,0,5,0,1,106.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.26225350966084326,10752.954283231278,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +11350,2,55.0,0.0,1,111,0.0,0.0,1407.0,22,54,0.0,0.0,886.8578346135446,1407.0,0.0,1683.802131623506,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,111361,1,3,4,0,1,,487.0,4300.0,43,3.0,0.0,5.0,3.0,2.0,3,3,346.403845513876,0.0,63239.04211311611,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022248913851087265,31619.521056558056,8,4,8,8_1,8_3,8_1_0 +11351,2,37.0,0.0,2,111,2369.0,0.0,0.0,47,52,0.0,463.51454695357836,4039.620087248413,2819.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,111362,2,1,3,0,1,,320.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,359.240279264108,2369.0,50012.937763463444,1,1,1,2,180.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05636541515182494,23815.684649268307,6,3,6,6_1,6_3,6_0_1 +11352,2,58.0,0.0,7,211,720.0,,,86,52,0.0,0.0,,720.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,111363,2,1,0,0,2,,500.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,106.88243833018346,720.0,56816.436035849605,5,1,0,1,103.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012672389368909022,37877.624023899734,9,5,9,9_1,9_2,9_0_0 +11353,2,57.0,0.0,1,400,1000.0,0.0,0.0,52,63,0.0,1324.327277010224,1705.2005433720612,2060.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,,1,111364,1,1,2,0,2,,140.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1439.41580953509,1000.0,45438.00150675282,1,1,0,1,59.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045336500983518185,30292.001004501883,8,4,8,8_1,8_0,8_1_0 +11354,2,42.0,0.0,2,111,300.0,840.0,0.0,56,68,0.0,0.0,511.56016301161833,1140.0,0.0,1594.7434002694229,50,2,2,2,1,1,2,2,2,2,1.0,2,,2,111365,2,2,0,1,1,,440.0,387.0,43,2.0,1.0,2.0,3.0,1.8,2,2,420.606252962789,300.0,10722.392428087145,4,1,2,3,50.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.10631955579370395,5956.884682270636,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +11355,2,45.0,0.0,1,300,930.0,0.0,0.0,0,63,0.0,0.0,1585.836505336017,994.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,111366,2,1,3,0,1,,300.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1524.37450638632,930.0,20952.007106045236,0,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04744175557830941,20952.007106045236,5,3,5,5_1,5_0,5_1_0 +11356,1,46.0,190.0,6,112,995.0,0.0,0.0,0,56,1582.0242765549024,0.0,1696.6745406552009,2565.0,96.99124577775646,0.0,60,2,2,2,2,1,2,2,2,2,15.0,2,,4,111367,2,2,0,0,1,,320.0,626.0,32,1.0,0.0,4.0,4.0,2.3,3,3,2471.27775114771,995.0,18792.39248066051,0,1,2,3,100.0,9,5,8,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.13649140217988073,8170.605426374135,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11357,2,54.0,0.0,2,111,1200.0,600.0,0.0,47,55,0.0,0.0,2046.2406520464733,1800.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,1,,2,111368,2,1,2,0,1,,500.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,1506.92003558368,1200.0,28749.86838866545,1,1,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06260898226266819,14374.934194332725,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +11358,2,56.0,0.0,2,111,316.0,2200.0,0.0,0,52,0.0,0.0,538.8433717055714,2516.0,0.0,4176.708905467536,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,111369,1,3,3,0,1,,200.0,,22,2.0,1.0,3.0,2.0,1.5,2,2,621.600010194482,316.0,37801.54541300441,0,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06655812540231361,25201.030275336274,7,4,7,7_1,7_4,7_0_1 +11359,1,46.0,253.0,6,111,542.0,,,0,69,0.0,0.0,,752.0,290.9737373332694,,43,0,0,0,0,0,0,0,0,0,,1,,4,111370,2,2,0,0,2,,660.0,500.0,12,1.0,4.0,4.0,1.0,1.0,1,1,87.58385116289233,542.0,6678.583574650995,0,4,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1125987257019985,6678.583574650995,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +11360,2,45.0,0.0,2,111,350.0,353.0,0.0,0,54,0.0,0.0,596.8201901802214,703.0,0.0,670.1719289227456,71,2,2,2,1,1,2,2,2,0,,2,,2,111371,1,3,0,0,2,,222.0,971.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1270.16504477278,350.0,14036.527387724907,0,4,3,4,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0500836126045521,10797.32875978839,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +11361,2,50.0,0.0,2,111,0.0,1380.0,0.0,43,21,0.0,0.0,0.0,3287.0,0.0,2619.935586156909,71,2,2,1,2,1,2,2,2,2,20.0,1,,2,111372,2,2,1,0,2,,618.0,,43,4.0,0.0,7.0,4.0,2.5,4,4,546.942977301196,0.0,66077.92067149571,1,1,1,2,110.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04974430137324109,26431.168268598285,7,4,7,7_1,7_4,7_0_1 +11362,2,43.0,0.0,5,112,2000.0,0.0,0.0,56,47,0.0,0.0,3410.4010867441225,2060.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,111373,2,1,2,0,1,,700.0,737.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1629.88115589741,2000.0,40542.84447123288,4,1,2,3,120.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050810445760944824,16892.8518630137,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11363,1,43.0,389.0,6,111,534.0,,,0,43,0.0,0.0,,672.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,111374,1,1,0,0,2,,642.0,650.0,32,2.0,1.0,4.0,3.0,2.0,3,3,85.60979090780224,534.0,25513.9922142603,0,4,2,3,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026338488871388982,12756.99610713015,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +11364,1,57.0,239.0,2,211,116.0,1180.0,0.0,0,78,0.0,0.0,197.8032630311591,1296.0,0.0,2240.234776568951,70,0,0,0,0,0,0,0,0,0,,2,,2,111375,2,2,0,0,1,,165.0,225.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1385.53074211161,116.0,9902.114902985624,0,7,2,3,70.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1308811312227086,9902.114902985624,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +11365,2,87.0,0.0,1,400,360.0,0.0,0.0,0,71,0.0,662.163638505112,613.872195613942,980.0,166.2707070475825,0.0,71,2,2,1,1,1,2,2,2,0,,1,,1,111376,1,2,4,0,2,,50.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1487.63139519098,360.0,8632.546694627199,0,5,0,1,50.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.11352385740466844,8632.546694627199,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +11366,1,32.0,191.0,2,111,0.0,0.0,0.0,43,63,0.0,0.0,0.0,869.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111377,2,1,0,1,1,1416.0,0.0,380.0,43,2.0,0.0,4.0,3.0,1.8,2,2,188.412941629171,0.0,18894.27709178406,4,1,2,3,125.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04599276255866247,10496.8206065467,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11367,2,41.0,0.0,1,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,850.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,111378,2,1,0,0,1,,0.0,320.0,22,1.0,0.0,3.0,2.0,1.5,2,2,1073.76732268559,0.0,24308.114530499173,0,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034967747043215244,16205.409686999448,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +11368,2,28.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1495.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,1,111379,2,1,0,0,1,,0.0,720.0,22,2.0,0.0,3.0,2.0,1.5,2,2,297.750274521137,0.0,23849.207238005827,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06268552179032538,15899.471492003884,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +11369,0,74.0,0.0,2,111,900.0,,,0,75,0.0,0.0,,900.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,2,111380,1,1,0,0,2,,840.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,103.38432388626195,900.0,43254.0,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020807324178110695,43254.0,9,5,9,9_1,9_3,9_0_1 +11370,2,52.0,0.0,5,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1164.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,3,111381,2,3,0,0,1,,0.0,444.0,12,1.0,3.0,3.0,1.0,1.0,1,1,300.693523252475,0.0,30721.859336988004,0,1,2,3,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037888331797632645,30721.859336988004,8,4,8,8_0,8_4,8_0_0 +11371,2,65.0,0.0,2,111,497.0,1469.0,0.0,56,75,0.0,0.0,847.4846700559144,1966.0,0.0,2788.90244642355,60,0,0,0,0,0,0,0,0,0,,1,,2,111382,2,2,2,0,1,,340.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,272.630385315515,497.0,44793.60346921911,4,5,0,1,78.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043890195200548654,22396.801734609555,6,3,6,6_1,6_2,6_0_1 +11372,1,38.0,271.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,907.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,111383,2,1,0,1,1,783.0,0.0,380.0,32,1.0,0.0,4.0,3.0,1.6,1,1,356.812187322244,0.0,21411.152467402997,0,1,2,3,78.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04236110136438685,13381.970292126873,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +11373,2,72.0,0.0,9,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,992.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,111384,2,1,1,0,1,,290.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,3642.06838622398,0.0,22633.55948397706,0,5,0,1,70.0,9,3,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04382872259673804,22633.55948397706,6,3,6,6_1,6_1,6_0_0 +11374,2,58.0,0.0,1,111,924.0,4560.0,0.0,37,37,0.0,0.0,1575.6053020757845,5484.0,0.0,8657.178458605438,12,0,0,0,0,0,0,0,0,3,60.0,1,,1,111385,2,1,2,0,1,,1200.0,,43,2.0,2.0,6.0,3.0,2.0,3,2,282.165571698248,924.0,223575.44844365938,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024528632451259327,111787.72422182969,10,5,10,10_1,10_4,10_1_0 +11375,1,61.0,256.0,2,111,1400.0,0.0,0.0,77,78,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,111386,1,3,0,1,1,480.0,0.0,232.0,41,0.0,0.0,3.0,4.0,2.5,4,3,283.448484324973,1400.0,23117.825625329882,7,5,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06055932866220945,9247.130250131953,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +11376,2,69.0,0.0,7,111,1635.0,170.0,0.0,68,78,0.0,0.0,2788.00288841332,1805.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,0,,1,,5,111387,2,2,2,0,1,,380.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1435.12236443117,1635.0,25655.0275666958,1,5,0,1,100.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07035658002344809,17103.351711130534,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11377,1,44.0,243.0,6,111,700.0,0.0,0.0,0,52,0.0,0.0,1193.6403803604428,728.0,38.79649831110259,0.0,71,2,2,2,2,1,1,1,2,0,,2,,4,111388,2,3,0,0,1,,0.0,242.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1128.55717067726,700.0,8993.842387876844,0,4,2,3,48.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,1,0,1,0.08094426926819398,8993.842387876844,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11378,1,52.0,255.0,8,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,404.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,111389,1,2,0,0,1,,322.0,332.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1713.47603509792,0.0,11793.183486238533,0,7,2,3,58.0,6,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034257077444052965,11793.183486238533,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11379,2,47.0,0.0,2,211,1200.0,0.0,0.0,21,21,0.0,0.0,2046.2406520464733,1400.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111390,2,1,2,0,1,,600.0,800.0,43,3.0,0.0,3.0,4.0,2.3,3,3,698.553691706645,1200.0,231361.21161449386,1,1,2,3,70.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.006051143967610064,100591.83113673647,10,5,10,10_1,10_1,10_0_1 +11380,2,30.0,0.0,1,221,800.0,0.0,0.0,0,52,0.0,0.0,1364.160434697649,1000.0,277.1178450793042,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,111391,2,1,2,0,1,,150.0,,22,2.0,1.0,3.0,3.0,2.0,3,3,2786.25292721551,800.0,41540.772594409485,0,1,0,1,150.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024072734750594866,20770.386297204743,5,3,5,5_1,5_1,5_1_0 +11381,1,34.0,180.0,1,111,287.0,332.0,0.0,85,67,0.0,595.9472746546007,489.39255594778155,1069.0,0.0,630.3033439160099,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,111392,1,2,1,0,1,,418.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,577.391903311592,287.0,26844.48342564336,6,1,1,2,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0398219620415132,11185.201427351401,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +11382,1,46.0,242.0,6,111,220.0,,,0,67,0.0,0.0,,346.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,2,,4,111393,2,2,0,0,2,,140.0,315.0,12,1.0,2.0,3.0,1.0,1.0,1,1,123.33580513288109,220.0,5241.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06601793550849075,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11384,2,57.0,0.0,8,111,702.0,,,0,53,0.0,0.0,,978.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,111395,2,1,0,0,2,,512.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,147.4736507343097,702.0,36931.31676679508,0,1,1,2,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026481590303850718,36931.31676679508,9,5,9,9_1,9_3,9_0_0 +11385,2,47.0,0.0,9,111,260.0,,,81,46,0.0,0.0,,428.0,232.77898986661552,,42,0,0,0,0,0,0,0,0,0,,1,2006.0,6,111396,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,71.79898465195423,260.0,35069.6404932842,4,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012204288209967867,13488.32326664777,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +11386,2,62.0,0.0,5,400,1200.0,,,86,52,0.0,0.0,,1260.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,1,,3,111397,2,2,0,0,2,,300.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,44.00555365239861,1200.0,34165.94391788906,5,1,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036878828901322186,22777.295945259375,6,3,6,6_1,6_0,6_0_0 +11388,2,39.0,0.0,1,112,300.0,900.0,0.0,0,37,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,111399,2,1,2,0,1,,297.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,595.848407820874,300.0,73571.59206925488,0,1,1,2,100.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016310643364498736,56593.53236096529,10,5,10,10_1,10_2,10_1_0 +11389,2,88.0,0.0,2,400,1322.0,0.0,0.0,0,71,843.7462808292812,0.0,2254.275118337865,2122.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111400,2,1,2,0,1,,100.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1046.32414967309,1322.0,19912.99797258793,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1065635622984107,19912.99797258793,5,3,5,5_1,5_0,5_0_1 +11390,1,68.0,111.0,6,112,1190.0,0.0,0.0,0,78,0.0,0.0,2029.1886466127528,1310.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111401,2,1,2,0,1,,240.0,297.0,11,0.0,0.0,2.0,1.0,1.0,1,1,236.179735664026,1190.0,10876.218382683744,0,5,2,3,50.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12044627589362113,10876.218382683744,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +11391,1,88.0,203.0,2,111,140.0,106.0,0.0,0,86,0.0,0.0,238.72807607208856,246.0,0.0,201.24142908161764,71,0,0,0,0,0,0,0,0,0,,2,,2,111402,1,1,0,1,2,534.0,0.0,437.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2129.98350672141,140.0,9979.699646643108,0,5,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.024650040453146053,9979.699646643108,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11392,2,55.0,0.0,2,221,300.0,0.0,0.0,55,67,2425.7705573841836,0.0,511.56016301161833,2750.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,111403,1,1,0,1,2,,50.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,2535.31381566529,300.0,40228.820168982165,1,1,0,1,122.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06835895232444193,26819.21344598811,7,4,7,7_0,7_1,7_0_1 +11393,2,33.0,0.0,6,221,480.0,0.0,0.0,52,38,0.0,1191.8945493092015,818.4962608185893,1380.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,75.0,1,,4,111404,2,1,1,0,1,,210.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2009.66690289073,480.0,83629.27986521051,1,1,0,1,130.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016501397623227356,46460.71103622806,10,5,10,10_1,10_1,10_0_0 +11394,0,26.0,0.0,1,111,0.0,0.0,0.0,84,38,0.0,0.0,0.0,1044.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,40.0,2,,1,111405,2,2,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,1275.69222036652,0.0,28808.398165016028,3,1,5,0,50.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.036239432474513604,19205.59877667735,5,3,5,5_0,5_4,5_1_0 +11395,2,63.0,0.0,8,112,2200.0,0.0,0.0,74,72,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2001.0,6,111406,2,1,2,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1410.4991491556,2200.0,32985.27030649053,5,5,0,1,140.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06669643691132962,21990.180204327018,6,3,6,6_1,6_0,6_0_0 +11396,1,45.0,377.0,1,111,500.0,0.0,0.0,0,67,0.0,0.0,852.6002716860306,558.0,80.36417507299822,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,111407,2,1,0,0,1,,0.0,505.0,32,2.0,0.0,3.0,3.0,2.0,3,2,345.686374707399,500.0,17794.458776452866,0,4,2,3,90.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03135807652314735,8897.229388226433,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +11397,2,41.0,0.0,9,112,600.0,400.0,0.0,47,54,0.0,397.2981831030672,1023.1203260232367,1300.0,0.0,759.4016191759156,31,0,0,0,0,0,0,0,0,2,7.0,1,2006.0,6,111408,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,71.4357743281192,600.0,50418.587473472566,1,1,1,2,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025784141626022092,24008.851177844077,6,3,6,6_1,6_0,6_0_0 +11398,2,62.0,0.0,7,111,1080.0,,,77,75,0.0,0.0,,1220.0,193.98249155551292,,33,0,0,0,0,0,0,0,0,0,,1,,5,111409,2,1,0,0,2,,560.0,,41,2.0,2.0,5.0,4.0,2.5,4,4,126.19448556754797,1080.0,85536.81133964035,5,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014262865085720293,34214.72453585614,9,5,9,9_1,9_2,9_0_0 +11399,1,28.0,221.0,9,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,260.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2006.0,6,111410,2,1,0,0,2,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,210.596362818701,0.0,2125.513472183765,0,4,2,3,22.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12232338369178836,2125.513472183765,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11401,2,63.0,0.0,5,112,840.0,1800.0,0.0,77,77,0.0,297.97363732730037,1432.3684564325313,2865.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,0,,1,,3,111412,2,1,2,0,1,,130.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,338.067134127464,840.0,53019.77174976244,5,5,0,1,99.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054036445375924065,35346.51449984163,9,5,9,9_1,9_0,9_0_0 +11402,2,62.0,0.0,2,111,600.0,,,0,52,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,111413,2,1,0,0,1,,400.0,210.0,22,3.0,0.0,3.0,6.0,3.3,5,4,100.93073256933879,600.0,37889.0,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015835730687006784,11481.515151515152,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11403,1,49.0,348.0,6,111,300.0,300.0,0.0,85,34,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,10,2,1,2,2,2,2,2,1,2,5.0,2,,4,111414,2,1,0,1,1,1250.0,0.0,330.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,239.043451154984,300.0,37430.59635397452,7,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.016029667129155684,13863.183834805379,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +11404,1,46.0,260.0,6,120,0.0,0.0,0.0,0,68,0.0,0.0,0.0,464.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,111415,2,2,5,0,1,,394.0,600.0,32,2.0,0.0,4.0,3.0,1.8,2,2,1204.05699568059,0.0,16180.652769524208,0,1,2,3,85.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.028676222560929717,8989.25153862456,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +11405,1,30.0,413.0,9,111,540.0,,,81,48,0.0,0.0,,624.0,116.38949493330776,,42,0,0,0,0,0,0,0,0,0,,2,2005.0,6,111416,2,2,0,0,2,,200.0,433.0,43,2.0,0.0,3.0,4.0,2.1,2,2,111.46101125971747,540.0,12871.550103151065,4,4,2,3,63.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04847900952094647,6129.309572929078,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11406,2,76.0,0.0,2,400,342.0,1790.0,0.0,0,75,0.0,198.6490915515336,583.1785858332449,2402.0,166.2707070475825,3398.3222458122223,33,0,0,0,0,0,0,0,0,0,,1,,2,111417,2,1,2,0,1,,91.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1683.48072157407,342.0,31896.89680017311,0,5,0,1,82.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07530513124985137,31896.89680017311,8,4,8,8_1,8_0,8_0_1 +11407,2,40.0,0.0,9,112,1000.0,0.0,0.0,67,62,0.0,741.6232751257254,1705.2005433720612,1620.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,111418,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1166.08010924295,1000.0,42980.07556086345,1,1,1,2,115.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03769188347996136,20466.702648030212,5,3,5,5_1,5_0,5_0_0 +11408,2,85.0,0.0,2,111,321.0,0.0,0.0,0,78,0.0,1721.6254601132912,547.3693744224316,2021.0,554.2356901586083,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111419,1,2,3,0,2,,276.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,310.856407845709,321.0,31039.74515652837,0,5,0,1,200.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06511007064679258,20693.16343768558,5,3,5,5_1,5_3,5_0_1 +11409,2,85.0,0.0,5,111,570.0,0.0,0.0,86,74,1809.8357723788083,0.0,971.9643097220749,2426.0,193.98249155551292,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,111420,2,2,2,0,1,,343.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1092.65612986458,570.0,43042.67570518595,6,5,0,1,107.0,6,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05636266705667896,28695.117136790635,8,4,8,8_1,8_2,8_0_0 +11410,2,68.0,0.0,1,300,700.0,0.0,0.0,75,71,1160.1511361402618,0.0,1193.6403803604428,1860.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111421,2,3,2,1,1,,100.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1105.80694153465,700.0,29579.32370849148,5,5,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0628817622177765,19719.54913899432,5,3,5,5_1,5_0,5_1_0 +11411,2,62.0,0.0,2,111,980.0,1300.0,0.0,0,56,0.0,0.0,1671.09653250462,2280.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,111422,2,1,2,0,1,,340.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,230.301163451013,980.0,25389.006360394615,0,1,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08980264795067634,25389.006360394615,7,4,7,7_1,7_2,7_0_1 +11412,2,47.0,0.0,7,120,405.0,0.0,0.0,55,54,1233.9789357128238,0.0,690.6062200656847,1575.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,5,111423,2,1,2,0,1,,335.0,550.0,43,3.0,0.0,5.0,3.0,2.0,3,3,979.825441766219,405.0,37234.72111410725,1,1,2,3,120.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04229922913007328,18617.360557053624,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11413,0,55.0,0.0,1,112,800.0,0.0,0.0,11,62,0.0,0.0,1364.160434697649,875.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,111424,2,1,1,0,1,,150.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,2079.66466329515,800.0,23349.70643028737,1,1,5,0,90.0,9,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03747370454581048,15566.470953524913,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +11414,2,52.0,0.0,7,112,2220.0,,,85,47,0.0,0.0,,2448.0,0.0,,71,0,0,0,0,0,0,0,0,0,,7,,5,111425,2,3,0,0,2,,2160.0,,42,1.0,0.0,3.0,4.0,2.3,3,2,11.322476408817927,2220.0,24823.12784512411,7,1,0,1,75.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0986177090684746,10792.664280488743,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +11415,2,67.0,0.0,8,300,1000.0,0.0,0.0,0,74,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,111426,2,1,2,0,1,,150.0,480.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1334.20275101084,1000.0,42015.77827501234,0,5,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025228617522251258,42015.77827501234,9,5,9,9_1,9_0,9_0_0 +11416,1,39.0,150.0,9,111,0.0,,,42,68,0.0,0.0,,42.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,1,15.0,2,2007.0,6,111427,2,2,0,0,2,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,119.04942397258989,0.0,25554.36719107144,1,1,3,4,53.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0016435546881659654,14196.870661706354,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11417,2,55.0,0.0,2,111,240.0,0.0,0.0,75,46,0.0,0.0,409.2481304092947,240.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,111428,2,1,0,1,1,,650.0,510.0,42,2.0,2.0,4.0,3.0,2.0,3,3,320.090221124267,240.0,35414.12392550106,5,1,2,3,83.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00677695714017594,17707.06196275053,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +11418,2,37.0,0.0,7,111,1400.0,0.0,0.0,46,38,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,10,2,2,2,2,2,2,1,2,0,,1,,5,111429,2,2,3,0,1,,503.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1253.19093766599,1400.0,50668.5078180658,1,4,1,2,89.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.027630574893323216,24127.86086574562,6,3,6,6_1,6_3,6_0_0 +11419,2,65.0,0.0,6,111,600.0,,,56,21,0.0,0.0,,675.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,111430,2,2,0,0,2,,500.0,,43,4.0,1.0,4.0,4.0,2.5,4,4,87.01171884178348,600.0,54448.91194121663,1,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012396941939422665,21779.56477648665,6,3,6,6_1,6_2,6_0_0 +11420,2,59.0,0.0,1,111,480.0,0.0,0.0,0,52,0.0,0.0,818.4962608185893,480.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,15.0,2,,1,111431,2,3,0,0,1,,0.0,281.0,12,1.0,0.0,1.0,1.0,1.0,1,1,858.704145382524,480.0,19065.534135984166,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.02517632060955749,19065.534135984166,5,3,5,5_0,5_4,5_1_0 +11421,2,28.0,0.0,6,211,906.0,0.0,0.0,52,63,0.0,927.0290939071567,1544.9116922950875,1638.0,44.33885521268867,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,4,111432,2,1,2,0,1,,314.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1722.13821288824,906.0,46809.360789359205,1,1,1,2,150.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03499300080962339,31206.24052623947,8,4,8,8_1,8_1,8_0_0 +11422,1,31.0,251.0,2,211,420.0,1000.0,0.0,54,65,0.0,0.0,716.1842282162656,1420.0,0.0,1898.504047939789,50,2,2,2,2,2,2,2,1,0,,2,,2,111433,2,2,0,0,1,,0.0,310.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1664.69530943805,420.0,19667.74219509399,4,4,2,3,80.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.07219944139567841,10926.523441718882,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +11423,2,68.0,0.0,7,112,660.0,,,0,52,0.0,0.0,,706.0,63.73710436823996,,70,0,0,0,0,0,0,0,0,0,,1,,5,111434,2,1,0,0,2,,425.0,800.0,12,1.0,2.0,4.0,1.0,1.0,1,1,134.64279329562788,660.0,64463.10497975908,0,1,2,3,80.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010952001152002818,64463.10497975908,10,5,10,10_1,10_2,10_0_0 +11424,2,81.0,0.0,2,111,170.0,,,0,77,0.0,264.8654554020448,,370.0,0.0,,70,2,2,2,2,1,2,2,2,0,,1,,2,111435,2,2,0,0,2,,60.0,,21,2.0,0.0,4.0,3.0,2.0,3,3,119.02272953192342,170.0,19625.306271978574,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.01885320895747211,9812.653135989287,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11425,2,56.0,0.0,6,112,2332.0,0.0,0.0,56,33,0.0,0.0,3976.527667143647,2332.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,111436,2,2,2,0,1,,723.0,,43,2.0,3.0,6.0,5.0,2.4,2,2,71.541483333809,2332.0,45048.48222658891,1,1,0,1,130.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05176644993876368,18770.20092774538,5,3,5,5_1,5_0,5_0_0 +11426,1,55.0,412.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,141.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,50.0,2,,2,111437,2,2,0,1,1,888.0,267.0,276.0,22,2.0,1.0,4.0,2.0,1.5,2,2,1187.62901049381,0.0,37027.36934182852,0,1,2,3,73.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.003807993992182352,24684.912894552344,7,4,7,7_0,7_2,7_0_1 +11427,2,27.0,0.0,8,211,936.0,,,0,47,0.0,0.0,,1200.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,111438,2,3,0,0,2,,528.0,,22,3.0,2.0,4.0,3.0,2.0,3,3,98.43988362717349,936.0,9394.967642074607,0,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12772795455152997,4697.483821037304,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11428,2,56.0,0.0,9,111,1060.0,0.0,0.0,0,37,0.0,0.0,1807.5125759743848,1060.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,111439,2,1,1,0,1,,210.0,780.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2037.10954214869,1060.0,59320.53534157908,0,1,2,3,90.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017869022824833183,59320.53534157908,10,5,10,10_1,10_2,10_0_0 +11429,2,57.0,0.0,5,120,1200.0,0.0,0.0,0,68,0.0,0.0,2046.2406520464733,1270.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111440,1,2,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,482.513278893701,1200.0,28241.19178448427,0,4,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044969773573710826,28241.19178448427,8,4,8,8_1,8_0,8_0_0 +11430,2,80.0,0.0,2,112,323.0,0.0,0.0,77,78,2109.365702073203,0.0,550.7797755091758,2384.0,84.52094274918778,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111441,1,1,2,0,1,,295.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1562.28708479116,323.0,20756.36943300778,5,5,0,1,80.0,9,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11485630990017204,13837.579622005187,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +11431,2,37.0,0.0,2,111,600.0,400.0,0.0,46,53,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,20,1,2,2,2,1,2,2,2,2,30.0,2,,2,111442,1,3,0,1,2,480.0,0.0,450.0,43,2.0,0.0,5.0,3.0,1.8,2,2,342.324587116415,600.0,27244.15612299391,1,1,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03670511927348727,15135.642290552172,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +11432,2,42.0,0.0,8,111,1360.0,0.0,0.0,48,38,0.0,0.0,2319.072738986003,1360.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,75.0,1,2002.0,6,111443,2,1,2,0,1,,300.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,1139.01652995388,1360.0,115272.44232941316,1,1,1,2,100.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011798136419401428,44335.554742081986,10,5,10,10_1,10_2,10_0_0 +11433,1,47.0,202.0,8,120,315.0,0.0,0.0,56,62,1075.7765080573336,52.973091080408956,537.1381711621992,1403.0,38.79649831110259,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111444,2,1,2,0,1,,313.0,,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,3,669.123384813293,315.0,21658.249582359054,1,4,1,2,106.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06477901155699872,6986.532123341632,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +11434,2,41.0,0.0,7,112,1800.0,0.0,0.0,47,54,0.0,463.51454695357836,3069.36097806971,2190.0,55.423569015860835,0.0,50,2,2,2,2,1,2,2,2,2,60.0,1,,5,111445,2,2,4,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,2817.80600222783,1800.0,49362.297966852144,1,1,1,2,130.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.044365843775559896,21461.868681240063,6,3,6,6_1,6_1,6_0_0 +11435,2,54.0,0.0,2,111,550.0,2000.0,0.0,56,47,0.0,52.973091080408956,937.8602988546337,2590.0,0.0,3797.008095879578,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,111446,2,1,2,0,1,,600.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,238.864751562156,550.0,73426.24488438733,1,1,0,1,137.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03527349116215956,36713.122442193664,9,5,9,9_1,9_2,9_0_1 +11436,2,22.0,0.0,2,111,0.0,0.0,0.0,35,34,0.0,0.0,0.0,745.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,35.0,1,,2,111447,2,2,5,0,1,,0.0,500.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1260.76484485395,0.0,46370.294627601324,1,1,2,3,55.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016066320172927008,30913.529751734215,8,4,8,8_1,8_2,8_0_1 +11437,0,74.0,0.0,2,111,413.0,0.0,0.0,72,78,1109.5263592905048,0.0,704.2478244126613,1585.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111448,2,1,2,0,1,,204.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1289.99786936895,413.0,25738.174355020874,5,5,0,1,180.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061581679342801024,17158.782903347248,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +11438,2,45.0,0.0,1,111,605.0,0.0,0.0,52,62,0.0,92.70290939071567,1031.646328740097,795.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,111449,2,1,1,0,1,,467.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1120.17871300305,605.0,38508.406447889625,1,1,1,2,95.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020644842862449022,16742.785412125926,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +11439,2,38.0,0.0,1,111,600.0,800.0,0.0,42,34,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,20,0,0,0,0,0,0,0,0,1,15.0,1,,1,111450,2,1,1,0,1,,300.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,103.18108370924,600.0,52548.391532412876,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026642109476109323,25023.043586863274,7,4,7,7_1,7_3,7_1_0 +11440,0,50.0,0.0,8,112,0.0,0.0,0.0,75,46,0.0,0.0,0.0,891.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111451,2,1,1,0,1,,386.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,803.010300589457,0.0,20784.657656500076,7,4,0,1,100.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04286815855835632,13856.438437666717,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11441,2,25.0,0.0,9,111,360.0,,,46,46,0.0,0.0,,360.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,111452,2,1,0,0,2,,160.0,538.0,43,2.0,0.0,2.0,2.0,1.5,2,2,138.22691350816336,360.0,46930.12457013749,1,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007670978999043073,31286.74971342499,8,4,8,8_0,8_2,8_0_0 +11442,2,39.0,0.0,2,111,1200.0,1000.0,0.0,52,62,0.0,0.0,2046.2406520464733,2200.0,0.0,1898.504047939789,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,111453,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,319.262063161543,1200.0,34966.341474721405,4,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06291764900798871,14569.308947800586,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +11443,0,40.0,0.0,7,120,950.0,0.0,0.0,56,69,0.0,0.0,1619.9405162034582,1020.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,111454,2,2,5,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1626.51494001689,950.0,42812.39907254912,1,1,5,0,132.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02382487368370846,20386.856701213863,5,3,5,5_1,5_0,5_0_0 +11444,2,57.0,0.0,1,112,2000.0,0.0,0.0,77,45,0.0,238.3789098618403,3410.4010867441225,2180.0,0.0,0.0,41,0,0,0,0,0,0,0,0,4,75.0,1,,1,111455,2,1,2,0,1,,500.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,692.260360460674,2000.0,59445.22986131144,5,1,1,2,161.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0366724126576017,39630.15324087429,9,5,9,9_1,9_2,9_1_0 +11445,1,57.0,319.0,2,111,230.0,1500.0,0.0,0,78,0.0,0.0,392.1961249755741,1730.0,0.0,2847.7560719096837,71,2,2,2,2,1,2,2,2,0,,2,,2,111456,1,1,0,0,1,,600.0,296.0,31,1.0,0.0,3.0,3.0,2.0,3,3,219.94558972871,230.0,23604.51230176076,0,7,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.0732910715495254,11802.25615088038,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11448,2,66.0,0.0,8,211,324.0,1200.0,0.0,77,77,0.0,0.0,552.4849760525478,1524.0,0.0,2278.2048575277468,60,0,0,0,0,0,0,0,0,0,,1,2002.0,6,111459,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2404.0485520202,324.0,32017.15096133679,5,5,1,2,123.0,2,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047599488219309365,21344.76730755786,6,3,6,6_1,6_1,6_0_0 +11449,2,52.0,0.0,7,111,1600.0,0.0,0.0,52,62,0.0,132.4327277010224,2728.320869395298,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,111460,2,1,3,0,1,,494.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,839.098694697762,1600.0,38639.09276526724,1,1,0,1,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04399689222331155,19319.54638263362,5,3,5,5_1,5_2,5_0_0 +11450,1,52.0,150.0,5,112,1100.0,0.0,0.0,0,38,0.0,0.0,1875.7205977092674,1150.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,111461,1,1,1,0,2,,300.0,475.0,32,1.0,1.0,3.0,2.0,1.5,2,1,4129.93571670025,1100.0,8100.989407187086,0,4,2,3,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.14195796861303583,5400.659604791391,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +11451,2,56.0,0.0,6,112,495.0,0.0,0.0,54,48,0.0,0.0,844.0742689691702,555.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,111462,2,2,1,0,1,,320.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,793.404575351608,495.0,59564.60522812864,1,1,0,1,102.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009317614007083324,39709.736818752426,9,5,9,9_1,9_0,9_0_0 +11452,2,70.0,0.0,2,400,246.0,730.0,0.0,85,78,0.0,0.0,419.479333669527,976.0,0.0,1385.9079549960459,71,2,2,2,1,1,2,2,2,0,,1,,2,111463,1,3,4,0,1,,480.0,393.0,41,0.0,5.0,5.0,2.0,1.5,2,2,844.380353543672,246.0,15403.563651946943,6,5,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.06336196104053089,10269.042434631296,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +11453,2,71.0,0.0,2,111,210.0,0.0,0.0,0,77,0.0,0.0,358.0921141081328,210.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,111464,1,1,0,1,2,744.0,0.0,400.0,11,0.0,2.0,4.0,1.0,1.0,1,1,386.343150519931,210.0,17683.17247964213,0,5,2,3,78.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011875697092349459,17683.17247964213,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +11454,2,69.0,0.0,2,111,289.0,1110.0,0.0,78,78,0.0,0.0,492.80295703452566,1399.0,0.0,2107.339493213166,70,0,0,0,0,0,0,0,0,0,,1,,2,111465,2,2,1,0,1,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,350.996680243532,289.0,23112.47672068185,5,5,0,1,128.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.060530077191949146,15408.3178137879,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +11455,2,43.0,0.0,2,111,300.0,,,0,52,0.0,0.0,,366.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,2,111466,1,1,0,0,2,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,105.87506110615159,300.0,10678.833518930274,0,4,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03427340629959209,10678.833518930274,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11456,2,67.0,0.0,2,400,1200.0,0.0,0.0,77,78,2109.365702073203,0.0,2046.2406520464733,3380.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111467,2,3,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1140.33337428637,1200.0,20792.54157892912,5,5,0,1,94.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1625582898160582,13861.694385952746,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +11457,2,38.0,0.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,1824.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,2,111468,2,2,2,0,1,,902.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,1073.70177018041,0.0,38675.54886059706,6,1,1,2,115.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047161580216339344,14324.27735577669,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +11458,1,74.0,69.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,678.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,111469,2,1,0,1,2,,0.0,260.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2947.49655915313,0.0,9437.927192867788,0,5,3,4,20.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.0718378078305544,9437.927192867788,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +11459,2,51.0,0.0,1,400,2568.7,0.0,0.0,42,11,3164.0485531098047,0.0,4380.148635759813,5569.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,2.0,1,,1,111470,2,2,1,0,1,,1440.0,,43,2.0,0.0,7.0,4.0,2.5,4,4,1179.38483304575,2568.7,71134.92308189326,1,1,0,1,161.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07828784735718,28453.969232757303,8,4,8,8_1,8_0,8_1_0 +11460,1,56.0,250.0,2,111,450.0,120.0,0.0,0,78,0.0,0.0,767.3402445174275,570.0,0.0,227.8204857527747,70,2,1,2,1,1,2,2,2,0,,2,,2,111471,1,2,0,1,1,720.0,0.0,362.0,11,0.0,2.0,3.0,1.0,1.0,1,1,354.491398815642,450.0,19792.510250499898,0,5,2,3,57.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.02879877250464496,19792.510250499898,5,3,5,5_0,5_3,5_0_1 +11461,2,56.0,0.0,6,221,1000.0,,,56,62,0.0,0.0,,1105.0,145.4868686666347,,50,0,0,0,0,0,0,0,0,0,,1,,4,111472,2,1,0,0,2,,600.0,,43,2.0,3.0,4.0,3.0,2.0,3,3,101.31307430705638,1000.0,46878.98316159281,1,1,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023571330380418927,23439.491580796406,6,3,6,6_1,6_1,6_0_0 +11462,2,72.0,0.0,2,111,241.0,641.0,0.0,0,86,0.0,251.62218263194254,410.95333095266676,1072.0,0.0,1216.9410947294048,70,0,0,0,0,0,0,0,0,0,,1,,2,111473,2,1,2,0,1,,142.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1167.46247550275,241.0,22470.68433491348,0,6,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04770660225662983,22470.68433491348,6,3,6,6_1,6_2,6_0_1 +11463,2,36.0,0.0,6,221,150.0,0.0,0.0,0,62,378.63114352213995,0.0,255.78008150580916,535.0,36.025319860309544,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,4,111474,2,3,0,1,1,,168.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,957.221048251514,150.0,25674.267611653228,0,1,0,1,33.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02083798486844354,25674.267611653228,7,4,7,7_0,7_1,7_0_0 +11464,2,90.0,0.0,2,111,207.0,,,0,78,0.0,0.0,,357.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,111475,2,1,0,0,2,,156.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,82.41640104595002,207.0,11359.684210526313,0,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031426929955428715,11359.684210526313,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11465,2,54.0,0.0,1,400,450.0,0.0,0.0,0,64,0.0,662.163638505112,767.3402445174275,972.0,30.482962958723462,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111476,2,1,3,0,2,,140.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,921.069085364218,450.0,26378.723050806508,0,4,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03684787918383645,26378.723050806508,7,4,7,7_1,7_0,7_1_0 +11466,2,57.0,0.0,1,111,336.0,1100.0,0.0,77,62,0.0,0.0,572.9473825730125,1436.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,1,111477,2,2,1,0,1,,198.0,505.0,42,1.0,3.0,3.0,2.0,1.5,2,2,1536.42670145231,336.0,20834.35327619828,6,4,2,3,70.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06892462563935328,13889.568850798853,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +11467,2,78.0,0.0,2,111,1300.0,,,72,75,0.0,0.0,,1438.0,191.2113131047199,,41,0,0,0,0,0,0,0,0,0,,1,,2,111478,2,2,0,0,2,,190.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,107.81893636210343,1300.0,39246.69926942828,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03664002391967134,26164.466179618856,7,4,7,7_1,7_3,7_0_1 +11468,2,68.0,0.0,1,111,388.0,1043.0,0.0,68,78,0.0,0.0,661.6178108283598,1431.0,0.0,1980.1397220012,50,0,0,0,0,0,0,0,0,0,,1,,1,111479,1,1,4,0,2,,228.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1297.42701998533,388.0,17117.168565405907,5,5,0,1,100.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08360027504152034,11411.445710270606,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +11469,2,69.0,0.0,1,300,936.0,0.0,0.0,72,72,0.0,264.8654554020448,1596.0677085962493,1236.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111480,2,2,4,0,1,,174.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,956.835575304989,936.0,20431.54323621164,5,5,0,1,260.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.060494696152436876,13621.028824141094,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11470,2,46.0,0.0,7,221,150.0,0.0,0.0,0,48,0.0,0.0,255.78008150580916,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,111481,2,2,3,0,1,,500.0,374.0,12,1.0,1.0,5.0,1.0,1.0,1,1,1271.01667778205,150.0,26656.86655210445,0,1,2,3,92.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.005627067971653935,26656.86655210445,7,4,7,7_1,7_1,7_0_0 +11471,2,29.0,0.0,1,112,326.0,1392.0,0.0,43,34,0.0,0.0,555.8953771392919,1718.0,0.0,2642.717634732186,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,111482,2,2,1,0,1,,367.0,828.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1026.66071483082,326.0,52690.52063626981,1,1,2,3,80.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032605485374866565,29272.511464594336,8,4,8,8_1,8_0,8_1_0 +11473,2,29.0,0.0,7,111,280.0,520.0,0.0,0,54,0.0,0.0,477.4561521441771,800.0,0.0,987.2221049286903,31,0,0,0,0,0,0,0,0,1,10.0,2,,5,111484,2,1,0,0,1,,0.0,463.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2075.04844344409,280.0,16591.69049036688,0,1,2,3,30.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048216907159911115,16591.69049036688,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11474,2,58.0,0.0,6,111,900.0,,,0,74,0.0,0.0,,1000.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,0,,1,,4,111485,2,1,0,0,2,,500.0,,21,3.0,1.0,5.0,4.0,2.5,4,4,161.69775800798254,900.0,14302.09849643522,0,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06991980933771703,5720.839398574088,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11475,2,49.0,0.0,1,111,808.0,0.0,0.0,31,37,3164.0485531098047,0.0,1377.8020390446254,3808.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,111486,2,1,2,0,1,,500.0,,43,2.0,0.0,9.0,5.0,2.8,4,3,1083.73413879552,808.0,204150.10825535227,1,1,1,2,300.0,8,6,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018652941370165373,72910.7529483401,10,5,10,10_1,10_2,10_1_0 +11476,1,22.0,98.0,9,111,185.0,,,0,62,0.0,105.94618216081791,,308.0,59.5803366920504,,43,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,111487,2,1,0,0,2,,320.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,157.05449057388637,185.0,34382.544157162905,0,1,1,2,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008958034012612021,22921.69610477527,6,3,6,6_1,6_2,6_0_0 +11477,1,31.0,218.0,2,111,546.0,0.0,0.0,53,67,0.0,0.0,931.0394966811454,546.0,0.0,0.0,41,2,1,2,2,1,2,2,2,0,,2,,2,111488,2,1,0,1,1,492.0,0.0,363.0,43,2.0,1.0,3.0,5.0,2.4,2,2,139.288422199275,546.0,10796.912367601757,1,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05057001311211709,4498.713486500732,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +11478,2,51.0,0.0,1,120,1800.0,0.0,0.0,56,46,263.6707127591504,0.0,3069.36097806971,2050.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,111489,2,1,3,0,1,,500.0,,43,2.0,0.0,7.0,6.0,2.9,3,3,266.923277478164,1800.0,53349.14923971874,1,1,0,1,99.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03842610480606809,18396.258358523704,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11479,2,36.0,0.0,9,111,2400.0,,,85,22,0.0,0.0,,2400.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,111490,2,1,0,0,2,,480.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,189.3153851872568,2400.0,104955.99843629457,6,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022866725444536974,49979.046874425985,10,5,10,10_1,10_2,10_0_0 +11480,2,58.0,0.0,6,111,650.0,0.0,0.0,90,56,0.0,397.2981831030672,1108.3803531918397,1004.0,74.82181817141213,0.0,50,2,2,1,2,1,2,2,2,0,,1,,4,111491,2,1,2,0,1,,399.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,276.828679045452,650.0,14787.393098416862,4,4,0,1,75.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06789567257175899,9858.262065611241,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11481,1,78.0,19.0,2,112,950.0,0.0,0.0,0,77,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,111492,2,2,0,0,1,,0.0,363.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1009.02622890566,950.0,20776.371574398334,0,5,2,3,46.0,10,1,1,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.045725019722434916,20776.371574398334,5,3,5,5_0,5_1,5_0_1 +11482,2,31.0,0.0,2,111,455.0,0.0,0.0,56,63,0.0,0.0,775.8662472342878,455.0,0.0,0.0,50,2,1,2,1,2,2,2,2,2,15.0,2,,2,111493,1,3,0,1,1,1131.0,0.0,370.0,43,2.0,0.0,3.0,2.0,1.5,2,2,249.099975156162,455.0,35828.360467330545,1,1,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.012699436816677215,23885.57364488703,6,3,6,6_0,6_3,6_0_1 +11483,2,92.0,0.0,1,111,1831.0,900.0,0.0,0,75,0.0,0.0,3122.222194914244,2731.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,1,111494,2,1,2,0,2,,250.0,,21,1.0,2.0,7.0,2.0,1.5,2,2,670.141092132479,1831.0,70048.61649067879,0,5,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03898720826789503,46699.07766045252,10,5,10,10_1,10_4,10_1_0 +11484,2,45.0,0.0,7,112,1000.0,0.0,0.0,46,64,0.0,595.9472746546007,1705.2005433720612,1540.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,5,111495,2,1,1,0,1,,220.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1209.11222778478,1000.0,51316.82204453501,1,1,1,2,141.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03000965255922356,20526.728817814004,5,3,5,5_1,5_0,5_0_0 +11485,2,38.0,0.0,6,111,0.0,,,34,34,0.0,0.0,,876.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,,4,111496,1,3,0,0,2,,385.0,1300.0,43,2.0,0.0,6.0,3.0,1.8,2,2,121.55862045564004,0.0,122718.37112265959,1,1,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007138295529724882,68176.872845922,10,5,10,10_1,10_3,10_0_0 +11486,2,50.0,0.0,1,111,700.0,0.0,0.0,54,48,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,60,1,2,2,1,1,2,2,2,2,30.0,1,,1,111497,1,1,2,0,1,,400.0,,43,2.0,4.0,5.0,4.0,2.5,4,2,1549.1367625596,700.0,59174.69935117,1,1,1,2,110.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.011829379915322876,23669.879740468,6,3,6,6_1,6_3,6_1_0 +11487,2,60.0,0.0,5,300,440.0,0.0,0.0,75,75,527.3414255183008,1059.4618216081792,750.2882390837069,1840.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,111498,2,1,1,0,2,,180.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1194.33120484461,440.0,46106.31007837735,5,5,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03990776960620216,30737.540052251567,8,4,8,8_1,8_0,8_0_0 +11488,1,23.0,222.0,2,111,160.0,0.0,0.0,84,47,0.0,0.0,272.8320869395298,160.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,66.0,2,,2,111499,2,1,0,1,1,576.0,0.0,500.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1515.07894138663,160.0,20556.496684422276,3,1,2,3,55.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007783427422302366,13704.331122948184,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +11489,2,70.0,0.0,1,111,480.0,,,0,77,0.0,0.0,,526.0,63.73710436823996,,41,0,0,0,0,0,0,0,0,0,,2,,1,111500,2,1,0,0,2,,426.0,396.0,11,0.0,2.0,3.0,1.0,1.0,1,1,97.49076290778572,480.0,35789.0,0,5,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014697253346000168,35789.0,9,5,9,9_0,9_2,9_1_0 +11490,1,63.0,250.0,2,111,300.0,100.0,0.0,85,78,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,111501,2,2,0,1,1,,0.0,400.0,41,0.0,4.0,4.0,3.0,2.0,3,3,334.405390618052,300.0,17952.066038200843,6,5,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02228155796379234,8976.033019100421,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11491,2,66.0,0.0,7,111,600.0,,,67,74,0.0,0.0,,750.0,207.83838380947813,,20,0,0,0,0,0,0,0,0,2,8.0,1,,5,111502,2,1,0,0,2,,200.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,59.137216165573115,600.0,80142.81362960718,1,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00935829385110242,53428.542419738114,10,5,10,10_1,10_2,10_0_0 +11492,2,49.0,0.0,2,111,240.0,860.0,0.0,0,67,0.0,0.0,409.2481304092947,1100.0,0.0,1632.7134812282186,60,2,2,2,2,1,2,2,2,2,10.0,2,,2,111503,1,3,0,0,2,,0.0,491.0,12,1.0,0.0,3.0,1.0,1.0,1,1,328.536476491304,240.0,25372.774156743904,0,1,2,3,65.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.043353556580159276,25372.774156743904,7,4,7,7_0,7_3,7_0_1 +11493,2,59.0,0.0,7,111,672.0,,,0,77,0.0,0.0,,810.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,111504,1,1,0,0,2,,1700.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,99.6971601541575,672.0,31344.733945719163,0,7,0,1,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02584166135857803,31344.733945719163,8,4,8,8_1,8_3,8_0_0 +11494,2,51.0,0.0,2,112,224.0,1361.0,0.0,0,52,0.0,0.0,381.9649217153417,1585.0,0.0,2583.864009246053,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,111505,2,1,2,0,1,,110.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,953.226157548646,224.0,19905.019685467374,0,1,0,1,70.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07962815536209723,19905.019685467374,5,3,5,5_1,5_1,5_0_1 +11495,1,65.0,228.0,7,111,180.0,,,0,78,0.0,0.0,,201.0,29.09737373332694,,70,0,0,0,0,0,0,0,0,0,,1,,5,111506,2,3,0,0,2,,0.0,334.0,11,0.0,0.0,1.0,1.0,1.0,1,1,146.15766522256433,180.0,4998.745490138595,0,6,2,3,15.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.040210088790583146,4998.745490138595,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11496,2,75.0,0.0,2,112,0.0,0.0,0.0,0,77,1898.4291318658827,0.0,0.0,4767.0,45.72444443808519,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111507,2,1,2,0,1,,150.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1847.45116747895,0.0,10170.017904031145,0,5,0,1,80.0,8,0,4,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4687307382330643,10170.017904031145,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +11497,2,52.0,0.0,1,111,960.0,1800.0,0.0,13,13,0.0,0.0,1636.9925216371787,2760.0,0.0,3417.30728629162,12,0,0,0,0,0,0,0,0,2,40.0,1,,1,111508,2,1,2,0,1,,534.0,,43,2.0,1.0,8.0,6.0,3.0999999999999996,5,3,1267.00594023684,960.0,45127.830581740185,1,1,0,1,250.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06115959850985531,14557.364703787158,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +11498,0,53.0,0.0,7,111,0.0,,,86,21,0.0,0.0,,50.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,5,111509,2,1,0,0,2,,0.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,122.84975015334693,0.0,8719.2312023403,5,1,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00573445053120964,5812.8208015601995,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +11499,2,72.0,0.0,6,111,1400.0,0.0,0.0,72,72,0.0,0.0,2387.2807607208856,1520.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,111510,2,1,2,0,1,,130.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,255.337261056604,1400.0,22448.55391591928,5,5,0,1,98.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06771037482829126,14965.702610612854,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +11500,2,41.0,0.0,9,112,840.0,0.0,0.0,68,21,0.0,529.7309108040896,1432.3684564325313,1340.0,138.5589225396521,0.0,50,2,2,2,1,1,2,2,2,2,120.0,1,2011.0,6,111511,2,1,1,0,1,,271.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,736.8119501923,840.0,22684.802562039666,1,1,1,2,85.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.059070384074769576,12602.668090022036,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11501,2,42.0,0.0,8,111,0.0,0.0,0.0,45,33,0.0,0.0,0.0,1150.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,90.0,2,2000.0,6,111512,2,2,0,0,1,,0.0,790.0,43,2.0,0.0,3.0,2.0,1.5,2,2,745.489759099133,0.0,55997.591543400384,1,1,2,3,79.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020536597526854414,37331.72769560025,9,5,9,9_0,9_3,9_0_0 +11502,1,46.0,130.0,2,111,372.0,1200.0,0.0,85,63,0.0,0.0,634.3346021344067,1572.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,10.0,3,,2,111513,2,1,0,0,1,,1000.0,335.0,42,3.0,3.0,4.0,5.0,2.8,4,4,473.679217137091,372.0,27276.59611379861,6,1,2,3,136.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05763182449311412,9741.64146921379,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11503,1,35.0,283.0,1,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1253.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,111514,2,1,0,1,1,744.0,0.0,390.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1564.6777430523,0.0,11173.11288724947,0,4,2,3,80.0,9,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11214421734071069,7448.74192483298,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +11504,1,77.0,28.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,688.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111515,2,1,0,1,1,679.0,0.0,330.0,11,0.0,5.0,3.0,1.0,1.0,1,1,319.071009457053,0.0,15669.190529932333,0,5,2,3,50.0,6,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.043907820170144496,15669.190529932333,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +11505,2,49.0,0.0,5,112,800.0,0.0,0.0,56,48,316.40485531098045,662.163638505112,1364.160434697649,1600.0,0.0,0.0,50,2,2,1,1,1,2,2,2,2,45.0,1,,3,111516,2,1,1,0,1,,400.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,967.392971987198,800.0,65281.621048354034,1,1,1,2,103.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.024509195303451206,26112.648419341614,7,4,7,7_1,7_0,7_0_0 +11506,2,74.0,0.0,1,400,1321.0,0.0,0.0,0,78,0.0,0.0,2252.569917794493,1461.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111517,2,1,2,0,1,,198.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1547.18184610115,1321.0,14429.666163272435,0,5,0,1,43.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1012497436509416,14429.666163272435,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11507,2,79.0,0.0,6,111,1400.0,0.0,0.0,0,77,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111518,2,1,2,0,1,,186.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,758.393576736872,1400.0,10562.37118808146,0,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1325459951246321,10562.37118808146,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +11508,2,30.0,0.0,1,111,400.0,600.0,0.0,38,37,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,111519,1,3,0,0,2,,470.0,1840.0,43,2.0,0.0,3.0,4.0,2.1,2,2,875.464445641332,400.0,109666.60189722134,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009118546418874107,52222.19137962921,10,5,10,10_0,10_4,10_1_0 +11509,2,73.0,0.0,1,111,1380.0,,,0,71,0.0,0.0,,1518.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,111520,2,1,0,0,2,,880.0,,21,0.0,5.0,3.0,2.0,1.5,2,2,114.00600804837084,1380.0,13355.451827285042,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11366144849541837,8903.63455152336,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +11510,2,37.0,0.0,6,111,840.0,0.0,0.0,85,38,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,30.0,2,,4,111521,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,754.398638946561,840.0,71058.04071788248,6,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011821322281246145,39476.68928771249,9,5,9,9_0,9_4,9_0_0 +11511,2,55.0,0.0,6,111,1780.0,0.0,0.0,54,65,0.0,0.0,3035.2569672022687,1780.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,4,111522,2,1,1,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,379.924279001897,1780.0,37111.27788764837,1,1,0,1,113.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04796385630774606,24740.851925098916,7,4,7,7_1,7_3,7_0_0 +11512,2,94.0,0.0,2,400,456.0,0.0,0.0,77,72,0.0,0.0,777.5714477776598,576.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,111523,2,2,0,1,1,,184.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1511.2754476767,456.0,57557.94594040353,5,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010007306386444021,38371.96396026902,9,5,9,9_0,9_0,9_0_1 +11513,2,33.0,0.0,9,120,1200.0,0.0,0.0,69,43,0.0,0.0,2046.2406520464733,1218.0,24.940606057137376,0.0,33,0,0,0,0,0,0,0,0,2,55.0,1,2009.0,6,111524,2,1,1,0,1,,650.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2872.91905200816,1200.0,42226.75522214288,4,1,1,2,89.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028844271684917547,20107.978677210893,5,3,5,5_1,5_1,5_0_0 +11514,1,62.0,167.0,2,111,0.0,0.0,2000.0,0,77,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,71,2,2,2,2,1,2,2,2,0,,2,,2,111525,2,3,0,0,1,,0.0,302.0,31,1.0,6.0,4.0,2.0,1.5,2,2,344.161139194706,0.0,15811.123073460829,0,5,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.12649322826137666,10540.748715640553,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +11515,1,51.0,239.0,5,111,600.0,,,77,85,0.0,66.2163638505112,,797.0,203.68161613328857,,71,2,2,2,2,1,2,2,2,0,,1,,3,111526,1,2,0,0,2,,348.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,121.1427986228867,600.0,8789.938902227537,6,7,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.09067184753673602,4394.969451113769,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11516,2,86.0,0.0,2,112,300.0,0.0,0.0,78,78,2109.365702073203,0.0,511.56016301161833,2428.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111527,2,1,2,0,1,,214.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,872.151860065948,300.0,35622.86312534224,5,5,0,1,90.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0681584742769514,23748.57541689483,6,3,6,6_1,6_0,6_0_1 +11517,2,43.0,0.0,9,112,597.0,0.0,0.0,0,62,0.0,0.0,1018.0047243931206,661.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,111528,2,1,1,0,1,,165.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,810.61301472886,597.0,19324.722439772147,0,1,1,2,99.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03420488972403547,14865.171107517035,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11519,1,52.0,420.0,7,111,1700.0,0.0,0.0,21,56,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,5,111530,1,2,0,0,1,,0.0,638.0,43,4.0,0.0,3.0,4.0,2.5,4,4,609.184151124811,1700.0,17462.626267774533,4,4,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09735076350669968,6985.050507109813,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +11521,1,48.0,115.0,2,111,160.0,0.0,0.0,0,85,0.0,0.0,272.8320869395298,675.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,111532,2,2,0,2,1,,90.0,400.0,11,0.0,1.0,3.0,1.0,1.0,1,1,226.703411760616,160.0,7836.369568295788,0,7,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08613682574784377,7836.369568295788,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +11522,2,50.0,0.0,6,111,100.0,600.0,0.0,0,43,0.0,0.0,170.52005433720612,700.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,5.0,2,,4,111533,1,1,0,0,1,,200.0,406.0,12,1.0,1.0,3.0,1.0,1.0,1,1,284.635607998993,100.0,11753.959103695917,0,1,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.059554401527557796,11753.959103695917,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +11523,2,55.0,0.0,8,111,0.0,0.0,546.0,54,21,0.0,0.0,344.1537865664501,546.0,0.0,653.4157525703158,50,1,2,2,2,1,2,2,2,0,,2,1999.0,6,111534,1,3,0,0,1,,0.0,499.0,43,2.0,0.0,3.0,4.0,2.1,2,2,746.892750043671,0.0,41323.248267248986,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.013212901281836935,19677.737270118563,5,3,5,5_0,5_4,5_0_0 +11524,2,53.0,0.0,7,111,480.0,,,22,67,0.0,0.0,,572.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,1,5.0,1,,5,111535,1,1,0,0,2,,380.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,106.41147828229735,480.0,45737.14639277979,1,1,0,1,78.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012506245909786311,30491.430928519858,8,4,8,8_1,8_3,8_0_0 +11525,2,68.0,0.0,9,111,0.0,,,0,78,0.0,0.0,,44.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,111536,2,2,0,0,2,,0.0,500.0,11,0.0,0.0,3.0,1.0,1.0,1,1,148.0590858880648,0.0,21359.35890053165,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00205998692212175,21359.35890053165,6,3,6,6_1,6_3,6_0_0 +11526,1,59.0,286.0,2,111,350.0,200.0,0.0,52,53,0.0,0.0,596.8201901802214,1104.0,0.0,379.7008095879578,30,0,0,0,0,0,0,0,0,0,,2,,2,111537,2,2,0,1,1,624.0,0.0,275.0,43,2.0,4.0,4.0,3.0,2.0,3,2,453.418203202471,350.0,14527.668988332542,1,1,2,3,67.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07599292087991846,7263.834494166271,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11527,2,52.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,221.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,2,,2,111538,1,1,0,0,2,,0.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2408.54698810442,0.0,24058.219077480775,0,1,3,4,18.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009186049860476279,24058.219077480775,6,3,6,6_0,6_3,6_0_1 +11528,2,48.0,0.0,7,400,672.0,0.0,0.0,54,11,0.0,264.8654554020448,1145.894765146025,1082.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,111539,2,2,3,0,1,,400.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,967.061834929314,672.0,42177.60471154186,1,1,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025653424546034302,21088.80235577093,5,3,5,5_1,5_0,5_0_0 +11529,2,58.0,0.0,2,111,470.0,70.0,0.0,0,52,0.0,0.0,801.4442553848687,540.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,111540,1,1,0,1,1,528.0,0.0,456.0,32,2.0,0.0,3.0,2.0,1.5,2,2,1012.96575768121,470.0,23357.944666489006,0,1,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02311847243883247,15571.96311099267,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +11530,2,77.0,0.0,5,111,973.0,0.0,0.0,78,78,0.0,0.0,1659.1601287010155,1018.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,3,111541,2,2,2,0,1,,514.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1256.1230856684,973.0,32353.678399222503,5,5,0,1,150.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.0314647375620963,21569.118932815003,6,3,6,6_1,6_2,6_0_0 +11531,2,60.0,0.0,6,111,507.0,422.0,0.0,75,47,0.0,264.8654554020448,864.5366754896351,1129.0,0.0,801.1687082305909,42,0,0,0,0,0,0,0,0,0,,1,,4,111542,1,1,3,0,1,,401.0,,42,2.0,4.0,5.0,3.0,2.0,3,3,1201.06702220117,507.0,17818.117654032023,6,4,0,1,125.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06336247306934362,8909.058827016011,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11532,2,29.0,0.0,7,111,0.0,,,46,45,0.0,0.0,,368.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,5,111543,2,2,0,0,2,,247.0,620.0,43,2.0,0.0,3.0,2.0,1.5,2,2,129.42387065254547,0.0,16035.145046955971,4,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022949589724469577,10690.096697970648,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +11533,2,45.0,0.0,1,112,1600.0,0.0,0.0,48,37,580.0755680701309,0.0,2728.320869395298,2200.0,69.27946126982604,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,111544,2,1,4,0,1,,468.0,,43,4.0,0.0,6.0,5.0,3.0,5,4,950.153186568799,1600.0,83212.60106283882,1,1,1,2,120.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026438303476881444,27737.53368761294,7,4,7,7_1,7_0,7_1_0 +11534,1,62.0,198.0,6,300,2500.0,0.0,0.0,78,64,0.0,0.0,4263.001358430153,2650.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111545,2,3,4,0,1,,520.0,480.0,41,0.0,2.0,5.0,2.0,1.5,2,2,741.946339258278,2500.0,29512.34680530669,5,5,2,3,94.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08979292692248712,19674.89787020446,5,3,5,5_1,5_0,5_0_0 +11535,2,60.0,0.0,1,400,1200.0,0.0,0.0,77,63,0.0,0.0,2046.2406520464733,1305.0,145.4868686666347,0.0,71,0,0,0,0,0,0,0,0,3,40.0,1,,1,111546,2,1,2,0,2,,400.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,827.024505869952,1200.0,38778.003047377926,5,1,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03365309962984907,25852.002031585285,7,4,7,7_1,7_0,7_1_0 +11536,2,84.0,0.0,2,211,407.0,0.0,0.0,77,75,2109.365702073203,0.0,694.0166211524289,2617.0,290.9737373332694,0.0,70,2,2,1,2,2,2,2,1,0,,1,,2,111547,2,1,2,0,1,,294.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1698.18977571459,407.0,40318.635242482356,5,5,0,1,140.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.06490795098249152,26879.090161654905,7,4,7,7_1,7_1,7_0_1 +11537,2,59.0,0.0,1,111,1129.0,1640.0,0.0,77,37,0.0,0.0,1925.1714134670572,2769.0,0.0,3113.546638621254,71,0,0,0,0,0,0,0,0,0,,1,,1,111548,2,1,2,0,1,,600.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,481.078908717799,1129.0,68807.35150427133,7,1,1,2,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040242792949647395,45871.56766951422,10,5,10,10_1,10_2,10_1_0 +11538,2,31.0,0.0,2,111,600.0,0.0,0.0,0,52,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,111549,2,2,0,0,1,,300.0,313.0,12,1.0,0.0,2.0,1.0,1.0,1,1,270.975782242569,600.0,20908.285158473256,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028696758029285105,20908.285158473256,5,3,5,5_0,5_3,5_0_1 +11539,2,76.0,0.0,1,300,327.0,0.0,0.0,0,77,1634.7584191067324,0.0,557.600577682664,1997.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111550,2,1,1,0,2,,55.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,816.899635302752,327.0,25365.52872048808,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0787288931370469,25365.52872048808,7,4,7,7_1,7_0,7_1_0 +11540,2,72.0,0.0,8,112,445.0,1280.0,0.0,75,75,0.0,0.0,758.8142418005672,1725.0,0.0,2430.0851813629297,44,0,0,0,0,0,0,0,0,0,,1,2001.0,6,111551,2,1,2,0,1,,266.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1596.23172125304,445.0,61510.28137408117,5,5,0,1,182.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028044092165815878,41006.85424938745,9,5,9,9_1,9_0,9_0_0 +11541,2,38.0,0.0,5,111,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1081.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,111552,2,2,0,1,1,420.0,0.0,230.0,43,2.0,0.0,4.0,3.0,1.8,2,2,352.028841631114,0.0,23608.044405493314,4,1,2,3,73.0,5,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04578947673228131,13115.580225274063,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +11542,2,66.0,0.0,2,111,0.0,,,86,86,0.0,0.0,,1199.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,2,111553,2,1,0,0,2,,473.0,750.0,41,0.0,0.0,3.0,2.0,1.5,2,2,35.62863978029368,0.0,26185.91682332468,5,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04578797099561587,17457.27788221645,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +11543,2,67.0,0.0,2,111,400.0,,,77,53,0.0,0.0,,1000.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,0,,2,,2,111554,2,1,0,0,2,,400.0,243.0,42,2.0,0.0,4.0,3.0,2.0,3,3,80.66818877960829,400.0,23834.93847928926,5,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04195521632535044,11917.46923964463,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +11545,2,74.0,0.0,6,111,204.0,390.0,0.0,0,75,0.0,0.0,347.86091084790047,594.0,0.0,740.4165786965177,10,0,0,0,0,0,0,0,0,0,,2,,4,111556,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2114.12005495328,204.0,36090.93010681003,0,5,0,1,56.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016458428703335568,36090.93010681003,9,5,9,9_0,9_3,9_0_0 +11546,2,82.0,0.0,6,111,1500.0,0.0,0.0,75,74,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,3,,4,111557,1,2,0,0,1,,0.0,1200.0,41,0.0,0.0,5.0,2.0,1.5,2,2,914.084524385702,1500.0,51219.01592646378,5,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029285998039352838,34146.01061764252,9,5,9,9_0,9_4,9_0_0 +11547,2,64.0,0.0,7,111,209.0,648.0,0.0,0,77,0.0,0.0,356.3869135647608,857.0,0.0,1230.2306230649833,70,0,0,0,0,0,0,0,0,0,,2,,5,111558,2,2,0,0,1,,181.0,386.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1234.6818343641,209.0,23687.706583082425,0,5,2,3,70.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03617910400038739,23687.706583082425,6,3,6,6_0,6_2,6_0_0 +11548,2,52.0,0.0,2,111,300.0,720.0,0.0,55,43,0.0,0.0,511.56016301161833,1086.0,91.44888887617039,1366.922914516648,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,111559,2,2,4,0,1,,160.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,271.054098566592,300.0,51602.8810815267,1,1,1,2,80.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021045336563364422,34401.9207210178,9,5,9,9_1,9_2,9_0_1 +11549,2,38.0,0.0,8,300,100.0,0.0,0.0,52,48,0.0,595.9472746546007,170.52005433720612,550.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,111560,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,914.270533192337,100.0,48679.5304891995,1,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011298383416455265,23180.728804380713,6,3,6,6_1,6_0,6_0_0 +11550,2,47.0,0.0,9,400,2160.0,,,85,65,0.0,0.0,,2610.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,1,10.0,1,2009.0,6,111561,2,3,0,0,2,,1200.0,,42,1.0,0.0,5.0,6.0,3.0999999999999996,4,2,5.787927237187181,2160.0,39281.00852672391,6,1,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06644432253373403,12671.293073136747,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +11551,2,58.0,0.0,2,111,1236.0,0.0,0.0,77,54,0.0,0.0,2107.6278716078677,1266.0,41.567676761895626,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,2,111562,2,1,3,0,1,,300.0,,42,2.0,0.0,3.0,3.0,2.0,3,3,456.007855347552,1236.0,87137.89923555082,5,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01452869544832328,43568.94961777541,10,5,10,10_1,10_4,10_0_1 +11552,2,61.0,0.0,9,112,1880.0,0.0,0.0,74,31,0.0,0.0,3205.777021539475,1880.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,111563,2,1,1,0,1,,432.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,898.606478528489,1880.0,64163.205908087715,5,1,1,2,133.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029300281577155852,42775.47060539181,9,5,9,9_1,9_0,9_0_0 +11553,1,61.0,262.0,2,111,250.0,120.0,0.0,0,78,0.0,0.0,426.3001358430153,370.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,111564,2,1,0,1,1,,180.0,314.0,11,0.0,2.0,3.0,1.0,1.0,1,1,264.111610044583,250.0,9463.35260087033,0,7,2,3,60.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03909819443544475,9463.35260087033,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11554,1,28.0,280.0,6,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,111565,2,1,3,0,1,,240.0,500.0,32,1.0,1.0,5.0,2.0,1.3,1,1,1184.60975567298,0.0,15475.57059288383,0,1,2,3,88.0,1,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.1279435861906422,11904.2850714491,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +11555,2,72.0,0.0,2,211,350.0,1274.0,0.0,77,75,0.0,0.0,596.8201901802214,1624.0,0.0,2418.694157075291,60,0,0,0,0,0,0,0,0,0,,1,,2,111566,2,2,1,0,1,,574.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1773.6622886713,350.0,30886.375608050515,5,5,0,1,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05257981773609932,20590.917072033677,5,3,5,5_1,5_1,5_0_1 +11556,2,41.0,0.0,8,111,480.0,,,0,56,0.0,0.0,,528.0,66.50828281903301,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111567,2,1,0,0,1,,78.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,122.6118192854429,480.0,20328.359712230216,0,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025973566361202162,11293.533173461232,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11557,2,52.0,0.0,9,112,700.0,,,0,42,0.0,0.0,,703.0,4.156767676189563,,50,0,0,0,0,0,0,0,0,2,45.0,1,2004.0,6,111568,2,1,0,0,1,,720.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,115.84088547277196,700.0,40496.686033055055,0,1,0,1,92.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017359445151294173,40496.686033055055,9,5,9,9_1,9_1,9_0_0 +11558,2,70.0,0.0,2,111,0.0,0.0,0.0,72,77,0.0,0.0,0.0,541.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111569,2,2,0,1,1,546.0,389.0,293.0,41,0.0,4.0,3.0,2.0,1.5,2,2,373.87616770029,0.0,26625.48970776225,5,5,2,3,77.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020318875105695418,17750.3264718415,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +11559,0,21.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,135.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,111570,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1513.88988587588,0.0,9485.0,0,1,5,0,33.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014232999472851872,9485.0,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +11560,2,52.0,0.0,1,111,1300.0,0.0,0.0,22,22,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,1,111571,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,881.949441273271,1300.0,66867.43846689897,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01944145057453535,44578.29231126598,10,5,10,10_0,10_4,10_1_0 +11561,0,73.0,0.0,5,111,500.0,0.0,0.0,75,74,0.0,0.0,852.6002716860306,780.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,111572,2,2,0,1,2,,272.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,901.990033802749,500.0,65774.1376031563,5,5,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011858764377969894,43849.42506877086,10,5,10,10_0,10_4,10_0_0 +11562,2,28.0,0.0,1,112,892.0,1003.0,0.0,55,62,0.0,0.0,1521.0388846878786,1895.0,0.0,1904.1995600836083,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,111573,1,1,2,0,1,,191.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,992.307575139749,892.0,42915.73244598092,1,1,1,2,210.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04415630101118006,23842.07358110051,6,3,6,6_1,6_0,6_1_0 +11563,2,49.0,0.0,7,112,1200.0,,,85,85,0.0,0.0,,1420.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,5,111574,2,3,0,0,2,,900.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,95.80831051815663,1200.0,15155.75260214832,6,5,0,1,80.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09369379649274004,10103.83506809888,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +11564,2,62.0,0.0,5,111,1650.0,,,0,77,0.0,0.0,,1719.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,3,111575,2,2,0,0,2,,1428.0,,31,0.0,3.0,4.0,2.0,1.5,2,2,36.89677394115294,1650.0,9448.161896238462,0,5,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1819401507804788,6298.774597492308,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11565,2,67.0,0.0,5,111,402.0,1034.0,0.0,0,75,0.0,0.0,685.4906184355685,1436.0,0.0,1963.0531855697418,41,0,0,0,0,0,0,0,0,0,,1,,3,111576,2,2,3,0,1,,187.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,584.18736310852,402.0,45713.067377746556,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03141333720036155,30475.378251831036,8,4,8,8_1,8_4,8_0_0 +11566,2,83.0,0.0,5,111,360.0,,,0,77,0.0,0.0,,498.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,111577,2,1,0,0,2,,360.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,126.96337587751336,360.0,11411.803650342421,0,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04363902633262158,11411.803650342421,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11567,2,42.0,0.0,9,111,441.0,1273.0,0.0,34,34,0.0,0.0,751.9934396270789,1714.0,0.0,2416.7956530273514,20,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,111578,2,1,1,0,1,,332.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1234.4616890871,441.0,69540.83711363228,1,1,1,2,198.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024647388083627195,33114.6843398249,8,4,8,8_1,8_2,8_0_0 +11568,2,47.0,0.0,7,300,600.0,0.0,0.0,43,37,0.0,0.0,1023.1203260232367,2500.0,2632.61952825339,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,5,111579,2,1,2,0,1,,436.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,1285.09807446084,600.0,68524.21809278593,1,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036483451684408114,29793.138301211275,8,4,8,8_1,8_0,8_0_0 +11569,2,60.0,0.0,7,111,240.0,,,0,85,0.0,0.0,,424.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,5,111580,2,2,0,0,2,,320.0,,31,1.0,2.0,4.0,2.0,1.5,2,2,79.03402367197336,240.0,3372.9326570899325,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12570663072941834,2248.6217713932883,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11570,2,64.0,0.0,2,111,2160.0,,,71,77,0.0,0.0,,2436.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,111581,2,1,0,0,2,,800.0,516.0,41,0.0,4.0,4.0,2.0,1.5,2,2,69.59979898362016,2160.0,22484.485364051612,5,5,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10834137230886759,14989.65690936774,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +11571,2,27.0,0.0,2,111,0.0,0.0,600.0,0,65,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,111582,2,2,0,0,1,,120.0,286.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2980.79535998924,0.0,20895.590751264,0,1,2,3,45.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028714191770993852,20895.590751264,5,3,5,5_0,5_2,5_0_1 +11572,2,60.0,0.0,1,111,900.0,3000.0,0.0,31,31,0.0,0.0,1534.680489034855,3900.0,0.0,5695.512143819367,10,0,0,0,0,0,0,0,0,0,,1,,1,111583,2,3,1,0,1,,520.0,,43,2.0,1.0,9.0,4.0,2.5,4,4,636.293773299751,900.0,157678.82214020274,1,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024733822507452843,63071.528856081095,10,5,10,10_1,10_4,10_1_0 +11573,0,76.0,0.0,1,120,150.0,,,0,77,0.0,0.0,,192.0,58.19474746665388,,71,2,2,1,1,2,2,2,2,0,,1,,1,111584,2,2,0,0,2,,125.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,93.46712649223552,150.0,12617.335443037975,0,5,5,0,48.0,0,3,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.015217159032253695,12617.335443037975,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +11574,2,56.0,0.0,7,112,450.0,,,52,77,0.0,0.0,,538.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,0,,1,,5,111585,2,1,0,0,2,,180.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,127.12873398376998,450.0,13029.222365312822,4,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041291796618061864,8686.148243541882,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11575,2,62.0,0.0,2,111,330.0,0.0,0.0,0,52,0.0,0.0,562.7161793127802,355.0,34.63973063491302,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,2,111586,1,3,0,1,1,,0.0,680.0,12,1.0,7.0,3.0,1.0,1.0,1,1,226.639348880022,330.0,25690.768776694887,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01381819295038125,25690.768776694887,7,4,7,7_0,7_3,7_0_1 +11576,0,41.0,0.0,6,111,500.0,,,85,22,0.0,0.0,,620.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,4,111587,2,1,0,0,2,,0.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,45.149309608244366,500.0,26443.048383831778,6,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023446615949887614,14690.582435462098,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +11577,2,71.0,0.0,5,112,400.0,0.0,0.0,0,86,0.0,1946.761097205029,682.0802173488245,1870.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111588,1,2,3,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1980.72178118642,400.0,17029.12680782169,0,5,0,1,150.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10981185477702156,17029.12680782169,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11578,2,62.0,0.0,7,400,1800.0,0.0,0.0,0,68,0.0,132.4327277010224,3069.36097806971,1940.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111589,1,2,5,0,1,,42.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1783.60778236539,1800.0,16642.156065350355,0,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11657143415684935,16642.156065350355,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11579,2,59.0,0.0,6,112,944.0,0.0,0.0,56,78,0.0,778.7044388820117,1609.7093129432258,1612.0,110.84713803172167,0.0,71,2,2,1,2,1,2,2,2,0,,1,,4,111590,2,1,1,0,1,,226.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,977.040888953002,944.0,40317.27512818149,1,5,0,1,75.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03998286081772484,26878.183418787663,7,4,7,7_1,7_0,7_0_0 +11581,1,37.0,377.0,2,111,300.0,600.0,0.0,22,56,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,41,2,2,2,2,1,2,2,2,0,,2,,2,111592,1,2,0,0,2,,0.0,580.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1697.88214298956,300.0,11164.441460955415,4,4,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.08061307886717882,6202.467478308564,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11582,0,41.0,0.0,5,120,480.0,,,0,63,0.0,0.0,,549.0,95.60565655235995,,42,0,0,0,0,0,0,0,0,0,,1,,3,111593,2,3,0,0,2,,600.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,86.27834062814715,480.0,15555.492517665876,0,4,5,0,45.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03529300016547327,15555.492517665876,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11583,2,54.0,0.0,6,112,1629.0,0.0,0.0,85,67,0.0,0.0,2777.7716851530877,1659.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,111594,2,1,1,0,1,,505.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,953.891182241098,1629.0,25687.438687839145,7,1,0,1,85.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06458409575826639,17124.959125226098,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11584,2,54.0,0.0,2,111,430.0,440.0,0.0,52,62,0.0,66.2163638505112,733.2362336499863,1090.0,235.55016831740858,835.3417810935072,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,111595,2,1,2,0,1,,200.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1601.725037413,430.0,49968.710030028196,1,1,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021813650969676333,33312.47335335213,8,4,8,8_1,8_3,8_0_1 +11585,2,70.0,0.0,1,222,110.0,0.0,0.0,85,74,0.0,198.6490915515336,187.57205977092673,560.0,415.67676761895626,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,111596,2,1,1,0,2,,112.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1124.16391286817,110.0,5836.614510174148,7,5,0,1,150.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0959460315605615,3891.0763401160984,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +11586,2,26.0,0.0,2,221,360.0,0.0,0.0,0,55,843.7462808292812,0.0,613.872195613942,1340.0,249.40606057137379,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,111597,2,1,2,0,1,,150.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,2081.96784053541,360.0,11334.025522789832,0,1,1,2,120.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11822807327419566,7556.017015193222,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +11587,2,70.0,0.0,2,111,320.0,1300.0,0.0,77,78,0.0,0.0,545.6641738790596,1920.0,415.67676761895626,2468.055262321726,42,0,0,0,0,0,0,0,0,0,,1,,2,111598,2,1,2,0,2,,120.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,328.474426512653,320.0,31819.930833146886,5,5,0,1,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06033954033614467,21213.287222097922,5,3,5,5_1,5_2,5_0_1 +11588,1,32.0,190.0,6,111,300.0,500.0,0.0,0,53,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,71,1,2,1,2,1,2,2,2,0,,2,,4,111599,1,2,0,0,2,,0.0,355.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2020.4607927512,300.0,18136.846306659754,0,1,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.04410910179606276,18136.846306659754,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +11589,2,86.0,0.0,6,112,252.0,154.0,0.0,0,77,0.0,0.0,429.7105369297594,406.0,0.0,292.3696233827275,71,0,0,0,0,0,0,0,0,0,,1,,4,111600,2,1,2,0,1,,101.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1252.49903007383,252.0,15029.153145039832,0,5,0,1,80.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027014163478265893,15029.153145039832,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11590,0,43.0,0.0,8,111,0.0,0.0,1300.0,45,53,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,43,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,111601,2,2,2,0,1,,500.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1140.02318939588,0.0,61167.5328129883,1,1,5,0,101.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02125310504143725,25486.472005411793,7,4,7,7_1,7_2,7_0_0 +11591,1,27.0,200.0,7,211,720.0,,,67,85,0.0,0.0,,720.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,111602,2,3,0,0,2,,240.0,330.0,42,1.0,0.0,1.0,5.0,2.4000000000000004,2,2,160.63397029989346,720.0,12546.536585365855,4,6,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05738635480008086,5227.723577235772,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11592,1,68.0,392.0,7,111,287.0,0.0,0.0,0,77,0.0,0.0,489.39255594778155,287.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,111603,2,1,0,1,1,,0.0,520.0,11,0.0,1.0,2.0,1.0,1.0,1,1,745.012229453034,287.0,9782.639786135685,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029337684538558485,9782.639786135685,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +11593,2,60.0,0.0,6,111,608.0,1785.0,0.0,78,37,0.0,463.51454695357836,1036.7619303702131,2743.0,0.0,3388.8297255725233,31,0,0,0,0,0,0,0,0,3,75.0,1,,4,111604,2,1,3,0,1,,641.0,,42,1.0,1.0,7.0,2.0,1.5,2,2,621.043852978147,608.0,64045.78794071459,5,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04282873375746613,42697.19196047639,9,5,9,9_1,9_4,9_0_0 +11594,2,83.0,0.0,9,221,500.0,,,0,78,0.0,0.0,,780.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,111605,2,2,0,0,2,,105.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,101.78975836617957,500.0,12202.733333333334,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06392010533159237,12202.733333333334,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +11595,0,85.0,0.0,6,111,1596.0,0.0,0.0,0,77,0.0,0.0,2721.50006722181,1596.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,111606,2,3,3,0,1,,378.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,897.254765128495,1596.0,16894.30826536132,0,5,5,0,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09446968617663414,16894.30826536132,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +11596,0,63.0,0.0,6,111,310.0,,,0,86,0.0,0.0,,510.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,4,111607,1,2,0,0,2,,500.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,118.67358232401638,310.0,13400.926356620714,0,6,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03805707056572511,8933.950904413809,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11597,2,65.0,0.0,6,111,450.0,830.0,0.0,85,78,0.0,0.0,767.3402445174275,1280.0,0.0,1575.7583597900248,70,0,0,0,0,0,0,0,0,0,,1,,4,111608,2,2,2,0,1,,530.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,640.067082954493,450.0,33156.05867259279,5,5,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03860531230927226,16578.029336296397,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +11598,2,91.0,0.0,5,111,450.0,0.0,0.0,0,72,0.0,0.0,767.3402445174275,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,111609,2,1,1,0,1,,232.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1004.83437410989,450.0,33430.60371998423,0,5,0,1,78.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028716202915178846,33430.60371998423,8,4,8,8_1,8_2,8_0_0 +11599,1,83.0,204.0,7,111,280.0,,,0,77,0.0,0.0,,364.0,116.38949493330776,,71,2,2,2,1,1,2,2,2,0,,2,,5,111610,2,3,0,0,1,,180.0,369.0,11,0.0,5.0,2.0,1.0,1.0,1,1,123.83243363403734,280.0,14835.239699982916,0,5,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.02453617247589327,14835.239699982916,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +11600,1,58.0,117.0,2,211,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1662.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111611,2,3,3,0,1,,126.0,288.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1030.23965886554,0.0,10974.35614537085,0,7,2,3,63.0,4,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.15144396427311654,10974.35614537085,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +11601,2,76.0,0.0,5,111,410.0,1000.0,0.0,74,75,0.0,158.91927324122688,699.1322227825451,1530.0,0.0,1898.504047939789,42,2,2,2,2,1,2,2,2,0,,1,,3,111612,2,1,2,0,1,,312.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,838.55034103708,410.0,45822.08782185216,5,5,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.033390010641775165,30548.05854790144,8,4,8,8_1,8_3,8_0_0 +11602,0,31.0,0.0,2,111,504.0,0.0,0.0,47,54,0.0,0.0,859.4210738595189,2299.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,5.0,2,,2,111613,1,1,0,1,2,733.0,0.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,1228.56929895383,504.0,31718.259689812032,4,1,5,0,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07248190860668322,15103.933185624777,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +11603,2,70.0,0.0,1,111,292.0,722.0,0.0,0,77,0.0,0.0,497.91855866464186,1014.0,0.0,1370.7199226125276,70,0,0,0,0,0,0,0,0,0,,2,,1,111614,2,1,0,0,1,,0.0,1330.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1209.17445496629,292.0,18013.92552430004,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05628978529039414,18013.92552430004,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +11604,2,53.0,0.0,1,111,420.0,0.0,0.0,0,38,0.0,0.0,716.1842282162656,599.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,111615,2,1,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,640.120141389067,420.0,160741.41994191,0,1,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0037264819498077804,160741.41994191,10,5,10,10_0,10_4,10_1_0 +11605,2,67.0,0.0,2,211,294.0,,,0,71,0.0,0.0,,454.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,1,,2,111616,2,1,0,0,2,,288.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,104.96881751639242,294.0,14312.956232322482,0,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0317195129105996,14312.956232322482,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +11606,2,77.0,0.0,7,112,700.0,,,78,78,0.0,0.0,,800.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,5,111617,2,2,0,0,2,,400.0,,41,1.0,2.0,4.0,4.0,2.3,3,3,89.13432338802569,700.0,22444.396028090236,5,5,0,1,30.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03564364124562593,9758.433055691408,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11607,2,74.0,0.0,6,111,2340.0,0.0,0.0,77,78,0.0,66.2163638505112,3990.169271490623,2530.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111618,2,1,2,0,1,,360.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1528.76886347496,2340.0,26931.21338147099,5,5,0,1,80.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09394303792270539,17954.142254313992,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11608,2,81.0,0.0,5,111,250.0,50.0,0.0,0,78,0.0,0.0,426.3001358430153,300.0,0.0,94.92520239698945,71,0,0,0,0,0,0,0,0,0,,2,,3,111619,2,1,0,1,1,,110.0,232.0,11,0.0,0.0,2.0,1.0,1.0,1,1,526.124344050105,250.0,13587.79525846324,0,5,2,3,47.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022078637063149976,13587.79525846324,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +11609,2,55.0,0.0,6,111,300.0,,,85,63,0.0,0.0,,550.0,346.39730634913025,,50,0,0,0,0,0,0,0,0,0,,1,,4,111620,1,2,0,0,2,,800.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,104.50132958514533,300.0,24406.209260544583,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022535248883944366,13559.00514474699,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +11610,2,56.0,0.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,621.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111621,2,1,1,1,1,600.0,0.0,800.0,42,1.0,0.0,3.0,4.0,2.1,2,2,794.8419566008,0.0,20601.009837163932,6,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03014415336474063,9810.004684363777,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +11611,2,45.0,0.0,7,300,2697.0,0.0,0.0,62,43,0.0,0.0,4598.925865474449,2697.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,111622,2,1,2,0,1,,192.0,,43,2.0,4.0,5.0,4.0,2.3,3,2,1436.25284837547,2697.0,49694.077845475396,1,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05427206051365655,21606.12080238061,6,3,6,6_1,6_0,6_0_0 +11612,2,49.0,0.0,8,221,516.0,,,0,68,0.0,0.0,,654.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111623,1,1,0,0,2,,738.0,,32,1.0,2.0,4.0,3.0,1.8,2,2,94.25689816152635,516.0,14276.774111106823,0,4,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045808667624096626,7931.541172837124,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11613,1,59.0,221.0,2,111,501.0,78.0,0.0,0,77,0.0,0.0,854.3054722294027,579.0,0.0,148.08331573930354,70,2,1,2,2,2,2,2,1,0,,2,,2,111624,2,2,0,1,1,673.0,0.0,299.0,11,0.0,3.0,4.0,1.0,1.0,1,1,392.460625348819,501.0,9373.00183866891,0,7,2,3,76.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06177316616020483,9373.00183866891,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11614,1,29.0,210.0,9,111,200.0,,,0,54,0.0,0.0,,266.0,91.44888887617039,,31,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,111625,1,1,0,0,2,,200.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,131.65757733483298,200.0,21155.124026795947,0,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012573785890504518,21155.124026795947,5,3,5,5_0,5_2,5_0_0 +11615,2,71.0,0.0,8,111,1523.0,0.0,0.0,0,75,0.0,0.0,2597.0204275556493,1523.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,2003.0,6,111626,2,1,1,0,1,,360.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1000.1300415793,1523.0,29084.454455108917,0,5,0,1,123.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052364743590109626,29084.454455108917,8,4,8,8_1,8_3,8_0_0 +11616,2,63.0,0.0,6,111,530.0,,,85,75,0.0,0.0,,659.0,178.7410100761512,,20,0,0,0,0,0,0,0,0,0,,1,,4,111627,2,1,0,0,2,,300.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,131.1123953369879,530.0,46585.77092947448,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014145950294514832,31057.18061964965,8,4,8,8_1,8_2,8_0_0 +11617,2,36.0,0.0,7,111,2500.0,0.0,0.0,38,42,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,5,111628,2,1,2,0,1,,280.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,357.661667593184,2500.0,77557.77213830003,4,1,1,2,115.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032234035752626206,36932.27244680954,9,5,9,9_1,9_3,9_0_0 +11618,2,82.0,0.0,2,111,658.0,109.0,0.0,86,74,0.0,0.0,1122.0219575388162,767.0,0.0,206.936941225437,12,0,0,0,0,0,0,0,0,0,,2,,2,111629,2,2,0,1,2,,0.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,898.520575753433,658.0,242035.29472652127,6,5,0,1,152.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0031689593076358676,161356.86315101417,10,5,10,10_0,10_4,10_0_1 +11619,1,63.0,370.0,2,111,850.0,0.0,0.0,21,46,0.0,0.0,1449.420461866252,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111630,2,1,0,0,1,,720.0,360.0,43,2.0,0.0,3.0,3.0,1.8,2,2,796.502908324141,850.0,10228.08,1,4,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08310455139185458,5682.266666666666,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +11620,2,46.0,0.0,1,111,705.0,0.0,0.0,54,21,1466.0091629408762,198.6490915515336,1202.1663830773032,2245.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111631,2,2,4,0,1,,217.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,1059.72325808815,705.0,58368.889222842656,1,1,1,2,120.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03846227039594613,32427.16067935703,8,4,8,8_1,8_2,8_1_0 +11621,1,66.0,114.0,7,111,400.0,,,0,77,0.0,0.0,,463.0,87.29212119998083,,71,2,2,2,2,1,2,2,2,0,,2,,5,111632,1,3,0,0,2,,300.0,307.0,11,0.0,6.0,2.0,1.0,1.0,1,1,156.1566592334326,400.0,12576.457672724202,0,5,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03681481797566524,12576.457672724202,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11622,2,58.0,0.0,6,112,0.0,0.0,0.0,63,62,0.0,0.0,0.0,1443.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111633,1,3,3,0,1,,196.0,490.0,43,3.0,1.0,3.0,3.0,2.0,3,3,599.719619405099,0.0,26951.822136761162,4,4,2,3,50.0,4,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05353997932599177,13475.911068380581,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11624,2,61.0,0.0,7,112,150.0,0.0,0.0,74,37,0.0,0.0,255.78008150580916,150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,111635,2,1,2,0,1,,400.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1481.72137326288,150.0,112492.41890498495,5,1,0,1,120.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0013334231894035033,74994.94593665663,10,5,10,10_1,10_1,10_0_0 +11625,2,62.0,0.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1918.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,111636,2,1,0,0,1,,568.0,590.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1460.11728984808,0.0,26893.333037950364,0,1,2,3,64.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07131879106592798,26893.333037950364,7,4,7,7_0,7_3,7_0_0 +11626,2,65.0,0.0,9,111,840.0,1800.0,0.0,77,78,0.0,0.0,1432.3684564325313,2640.0,0.0,3417.30728629162,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,111637,2,1,1,0,1,,600.0,,41,0.0,2.0,8.0,3.0,2.0,3,3,544.532572204641,840.0,34981.44644029876,5,5,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0754685774502083,17490.72322014938,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +11627,1,61.0,270.0,5,111,300.0,730.0,0.0,0,86,0.0,0.0,511.56016301161833,1030.0,0.0,1385.9079549960459,70,0,0,0,0,0,0,0,0,0,,2,,3,111638,2,2,0,0,1,,150.0,344.0,11,0.0,5.0,3.0,1.0,1.0,1,1,248.22125162295,300.0,5870.878064764619,0,7,2,3,69.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17544224026415642,5870.878064764619,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11628,2,51.0,0.0,8,400,308.0,0.0,0.0,0,52,0.0,0.0,525.2017673585948,3008.0,3741.0909085706066,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,111639,2,1,2,0,1,,123.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1486.56549464863,308.0,25967.781365089297,0,1,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11583584895873741,25967.781365089297,7,4,7,7_1,7_0,7_0_0 +11629,2,85.0,0.0,2,111,250.0,,,0,78,0.0,0.0,,308.0,80.36417507299822,,71,0,0,0,0,0,0,0,0,0,,1,,2,111640,1,3,0,0,2,,300.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,99.55126588929039,250.0,10749.326996197718,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028652956609185543,10749.326996197718,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11630,2,70.0,0.0,5,111,490.0,,,0,77,0.0,0.0,,580.0,124.70303028568689,,60,0,0,0,0,0,0,0,0,0,,1,,3,111641,2,3,0,0,2,,250.0,331.0,11,0.0,4.0,4.0,1.0,1.0,1,1,166.45293188984496,490.0,17010.572597208567,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03409644188551172,17010.572597208567,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11631,2,24.0,0.0,9,112,0.0,0.0,0.0,52,46,0.0,0.0,0.0,1759.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,111642,2,1,1,0,1,,172.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,231.456986208036,0.0,34801.22439164204,1,1,1,2,100.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050544198681194856,23200.816261094693,6,3,6,6_1,6_0,6_0_0 +11632,2,72.0,0.0,2,112,528.0,,,0,77,0.0,0.0,,662.0,185.6689562031338,,50,0,0,0,0,0,0,0,0,0,,1,,2,111643,2,2,0,0,2,,250.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,103.14649166847398,528.0,13168.64895982482,0,5,0,1,142.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05027091253018005,13168.64895982482,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11633,2,47.0,0.0,8,111,580.0,,,0,43,0.0,0.0,,643.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,111644,2,3,0,0,2,,450.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,108.87017942147595,580.0,7528.742510259009,0,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08540602884529772,5791.34039250693,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +11634,0,49.0,0.0,2,111,300.0,,,0,68,0.0,0.0,,438.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,3,60.0,3,,2,111645,1,1,0,0,2,,200.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,105.42950204316338,300.0,7957.690494204764,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05504109519200026,5305.12699613651,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +11635,0,83.0,0.0,2,111,100.0,,,0,86,0.0,0.0,,145.0,62.351515142843446,,71,0,0,0,0,0,0,0,0,0,,1,,2,111646,2,3,0,0,2,,100.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,141.49669188095834,100.0,5821.898148622095,0,5,5,0,30.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024905966456029133,5821.898148622095,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +11636,2,60.0,0.0,2,111,360.0,2540.0,0.0,0,46,0.0,0.0,613.872195613942,2900.0,0.0,4822.200281767064,12,0,0,0,0,0,0,0,0,0,,1,,2,111647,1,3,3,0,1,,384.0,,32,2.0,2.0,7.0,3.0,2.0,3,3,843.880964021163,360.0,54147.449071088995,0,4,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05355746299687458,27073.724535544497,7,4,7,7_1,7_4,7_0_1 +11637,2,52.0,0.0,7,120,2000.0,0.0,0.0,0,48,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,111648,2,1,1,0,1,,290.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1684.32524325073,2000.0,47398.47808078023,0,1,1,2,110.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04219544763845459,47398.47808078023,10,5,10,10_1,10_1,10_0_0 +11638,2,43.0,0.0,2,112,1500.0,0.0,0.0,21,21,0.0,662.163638505112,2557.8008150580918,2030.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,111649,2,2,1,0,1,,380.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,1027.89720793902,1500.0,51439.88124397898,1,1,1,2,180.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03946354367288923,18371.386158563924,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +11639,2,68.0,0.0,5,112,1184.0,0.0,0.0,74,74,0.0,397.2981831030672,2018.9574433525204,1534.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,111650,2,1,2,0,1,,600.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,643.535685766076,1184.0,45493.4478710751,5,5,0,1,220.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03371914136618612,30328.9652473834,8,4,8,8_1,8_0,8_0_0 +11640,2,56.0,0.0,2,111,96.0,,,0,78,0.0,0.0,,182.0,119.1606733841008,,70,2,2,2,2,1,2,2,2,0,,1,,2,111651,1,2,0,0,2,,40.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,159.84172751919235,96.0,6670.436177707557,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.027284572575364676,6670.436177707557,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +11641,2,39.0,0.0,1,111,2029.0,0.0,0.0,85,53,0.0,0.0,3459.8519025019123,2029.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,111652,2,1,1,0,1,,619.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,810.550285524323,2029.0,41932.1258595254,6,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04838772083240535,23295.62547751411,6,3,6,6_1,6_4,6_1_0 +11642,2,47.0,0.0,1,400,1500.0,0.0,0.0,0,11,0.0,0.0,2557.8008150580918,1860.0,498.81212114274757,0.0,44,0,0,0,0,0,0,0,0,0,,5,,1,111653,1,2,4,0,2,,225.0,,22,1.0,2.0,6.0,3.0,2.0,3,3,186.042297551192,1500.0,45405.38833889675,0,1,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04096430111151856,22702.694169448376,6,3,6,6_1,6_0,6_1_0 +11643,2,58.0,0.0,1,400,740.0,0.0,0.0,75,75,0.0,1191.8945493092015,1261.8484020953254,1710.0,96.99124577775646,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,111654,2,1,1,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1336.33867470348,740.0,34666.631680549566,7,7,1,2,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049326972858439865,23111.087787033044,6,3,6,6_1,6_0,6_1_0 +11644,2,36.0,0.0,2,111,600.0,0.0,0.0,85,63,0.0,1419.67884095496,1023.1203260232367,1672.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,111655,2,3,0,1,1,,0.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,272.47895303872,600.0,27568.077991931295,6,1,1,2,85.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060649857436175486,11486.699163304707,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +11645,2,68.0,0.0,1,112,1630.0,0.0,0.0,72,77,843.7462808292812,0.0,2779.4768856964597,2530.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111656,2,1,1,0,1,,76.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2027.28561106623,1630.0,19256.406045881464,5,5,0,1,150.0,8,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13138484896776018,12837.604030587643,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +11646,2,80.0,0.0,2,111,142.0,240.0,0.0,0,77,0.0,0.0,242.1384771588327,382.0,0.0,455.6409715055494,70,1,1,2,2,1,2,2,2,0,,2,,2,111657,2,2,0,1,1,70.0,0.0,291.0,11,0.0,2.0,3.0,1.0,1.0,1,1,809.489657500262,142.0,16047.175115281336,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023804812825668653,16047.175115281336,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +11647,2,62.0,0.0,5,111,720.0,0.0,0.0,37,21,0.0,0.0,1227.744391227884,720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,2,,3,111658,2,1,0,1,1,,340.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,710.122680866965,720.0,199288.19562509286,4,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0036128582415111345,132858.79708339524,10,5,10,10_0,10_4,10_0_0 +11648,2,42.0,0.0,1,400,837.0,0.0,0.0,52,11,0.0,595.9472746546007,1427.2528548024152,1497.0,290.9737373332694,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,111659,1,1,4,0,2,,15.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,762.126274890877,837.0,35633.15105486859,1,1,0,1,133.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04201144034932222,15492.674371681996,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +11649,2,32.0,0.0,1,112,615.0,0.0,0.0,37,46,0.0,0.0,1048.6983341738176,3615.0,4156.767676189563,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,111660,2,2,4,0,1,,318.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,2101.57022730664,615.0,55008.897929977174,1,1,1,2,80.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06571664105326497,26194.71329998913,7,4,7,7_1,7_0,7_1_0 +11650,2,67.0,0.0,2,111,500.0,600.0,0.0,74,74,0.0,0.0,852.6002716860306,1100.0,0.0,1139.1024287638734,60,0,0,0,0,0,0,0,0,0,,1,,2,111661,2,1,2,0,1,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,533.244887805488,500.0,53424.268517777906,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020589893516912726,35616.179011851935,9,5,9,9_1,9_4,9_0_1 +11651,2,65.0,0.0,5,112,630.0,0.0,0.0,77,78,0.0,0.0,1074.2763423243985,665.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111662,2,1,2,0,1,,170.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1164.01803868096,630.0,48119.59497200015,5,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013819733943873602,32079.729981333436,8,4,8,8_1,8_0,8_0_0 +11652,2,52.0,0.0,9,112,850.0,1398.0,0.0,52,52,0.0,0.0,1449.420461866252,2248.0,0.0,2654.108659019825,60,0,0,0,0,0,0,0,0,0,,1,2012.0,6,111663,2,1,1,0,1,,1200.0,880.0,43,2.0,3.0,6.0,5.0,2.5999999999999996,3,2,1988.68130675688,850.0,89905.5882101334,1,1,2,3,135.0,8,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025004007478887997,34579.072388512854,9,5,9,9_1,9_0,9_0_0 +11653,2,41.0,0.0,2,111,720.0,,,0,64,0.0,0.0,,795.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,2,1.0,2,,2,111664,2,2,0,0,2,,240.0,320.0,32,1.0,0.0,3.0,3.0,1.6,1,1,92.39915370683458,720.0,26911.728992179247,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029541022809461,16819.83062011203,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +11654,2,70.0,0.0,1,400,350.0,0.0,0.0,86,78,52.734142551830075,0.0,596.8201901802214,532.0,182.89777775234077,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111665,2,1,2,0,2,,150.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1165.38471859282,350.0,25829.287495318513,5,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020596774111419972,17219.52499687901,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11655,2,55.0,0.0,2,112,961.0,3004.0,0.0,42,90,0.0,0.0,1638.6977221805507,4461.0,0.0,5703.106160011126,33,2,2,2,2,2,2,1,2,2,5.0,1,,2,111666,1,2,2,0,2,,1243.0,,43,2.0,2.0,7.0,5.0,2.8,4,2,2488.74983309071,961.0,115489.85714404924,1,1,1,2,150.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03862676870779954,41246.37755144616,9,5,9,9_1,9_1,9_0_1 +11656,1,43.0,130.0,9,112,250.0,1430.0,0.0,0,54,0.0,0.0,426.3001358430153,1680.0,0.0,2714.860788553898,42,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,111667,2,1,1,0,1,,300.0,477.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1595.04168050897,250.0,19101.841150297812,0,1,2,3,80.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08794963725126609,14693.723961767548,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +11657,1,52.0,129.0,2,111,600.0,0.0,0.0,85,85,0.0,0.0,1023.1203260232367,720.0,166.2707070475825,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,111668,2,2,0,1,1,408.0,0.0,326.0,41,0.0,1.0,3.0,3.0,2.0,3,2,414.111954450179,600.0,21520.89491630879,7,7,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03345585779773384,10760.447458154395,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11658,2,80.0,0.0,5,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,766.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,111669,1,3,0,1,1,1000.0,215.0,378.0,41,0.0,4.0,5.0,2.0,1.5,2,2,329.150020574467,0.0,18558.218263862662,5,5,2,3,100.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.041275514120425405,12372.145509241775,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +11659,1,48.0,117.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,763.0,69.27946126982604,0.0,42,0,0,0,0,0,0,0,0,2,45.0,2,,2,111670,2,3,0,1,1,,0.0,,32,2.0,0.0,4.0,3.0,2.0,3,3,3068.68988919819,0.0,41058.104445913705,0,1,1,2,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.018583420016506324,20529.052222956852,5,3,5,5_0,5_3,5_0_1 +11660,2,54.0,0.0,2,111,500.0,50.0,0.0,0,75,0.0,0.0,852.6002716860306,641.0,0.0,94.92520239698945,30,0,0,0,0,0,0,0,0,0,,2,,2,111671,1,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1604.30466854199,500.0,14548.728563430503,0,5,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04405883285301022,14548.728563430503,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +11661,2,71.0,0.0,1,120,577.0,0.0,0.0,78,78,1792.9608467622227,0.0,983.9007135256793,2341.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111672,2,2,2,0,1,,325.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1670.65441276359,577.0,26499.86889865211,5,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08834005967927912,17666.579265768072,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +11662,2,48.0,0.0,7,111,580.0,870.0,0.0,0,54,0.0,0.0,989.0163151557955,1450.0,0.0,1651.6985217076165,31,0,0,0,0,0,0,0,0,2,30.0,2,,5,111673,2,3,0,0,1,,0.0,547.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1159.52122609029,580.0,44298.84732868549,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03273222865690819,24610.470738158605,7,4,7,7_0,7_4,7_0_0 +11663,2,64.0,0.0,6,112,678.0,0.0,0.0,22,47,1852.0230864202722,0.0,1156.1259684062575,7961.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,111674,2,1,1,0,1,,379.0,,43,2.0,2.0,9.0,2.0,1.5,2,2,666.394559912565,678.0,54113.7100499341,1,1,0,1,170.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14711613734585724,36075.80669995607,9,5,9,9_1,9_0,9_0_0 +11664,2,87.0,0.0,2,111,340.0,,,0,78,0.0,0.0,,592.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,111675,2,1,0,0,2,,223.0,,21,0.0,4.0,6.0,2.0,1.5,2,2,85.10657750434792,340.0,26005.469708256816,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022764441736348957,17336.979805504543,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +11665,1,65.0,307.0,1,111,200.0,0.0,0.0,0,78,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,111676,2,2,0,0,2,,0.0,539.0,11,0.0,3.0,1.0,1.0,1.0,1,1,564.511633678504,200.0,530.4476362814571,0,5,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.37704004376763667,530.4476362814571,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +11666,1,29.0,388.0,7,211,450.0,,,21,56,0.0,0.0,,570.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,111677,2,1,0,0,2,,400.0,563.0,42,1.0,0.0,5.0,4.0,2.1,2,2,155.9978847918949,450.0,20282.109168031835,7,1,2,3,66.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028103586036230397,9658.147222872301,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11667,0,26.0,0.0,9,211,120.0,,,0,81,0.0,0.0,,270.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,3,2010.0,6,111678,1,3,0,0,2,,0.0,,32,1.0,0.0,2.0,3.0,1.6,1,1,117.27493490789412,120.0,4845.729166666666,0,4,5,0,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05571916851179089,3028.580729166666,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +11668,2,84.0,0.0,6,112,801.0,0.0,0.0,0,74,0.0,0.0,1365.865635241021,801.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,111679,2,2,2,0,2,,69.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1980.12529685365,801.0,36886.65671429899,0,5,0,1,168.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021715169423025944,36886.65671429899,9,5,9,9_1,9_1,9_0_0 +11669,2,28.0,0.0,1,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,219.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,2,,1,111680,2,1,0,1,1,,0.0,17.0,43,2.0,0.0,2.0,2.0,1.5,2,2,809.982588210848,0.0,48754.631645906804,1,1,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0044918809271403065,32503.08776393787,8,4,8,8_0,8_4,8_1_0 +11670,0,86.0,0.0,1,211,0.0,1057.0,0.0,0,72,0.0,0.0,0.0,2474.0,0.0,2006.718778672357,50,2,2,1,2,1,2,2,2,0,,1,,1,111681,2,1,1,0,1,,408.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1836.07782121144,0.0,8481.405626209742,0,5,0,1,80.0,2,3,7,0,1,0,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.2916969319748956,8481.405626209742,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +11671,2,37.0,0.0,8,111,1500.0,0.0,0.0,54,37,0.0,397.2981831030672,2557.8008150580918,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,111682,2,1,1,0,1,,390.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1415.08196187341,1500.0,56276.03668677018,1,1,1,2,130.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03198519487110858,26798.112707985798,7,4,7,7_1,7_3,7_0_0 +11672,2,31.0,0.0,1,221,0.0,0.0,0.0,47,67,0.0,0.0,0.0,4222.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,3.0,1,,1,111683,2,3,1,0,1,,457.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,516.089337853162,0.0,33956.40081579134,1,1,1,2,160.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12433591012497912,22637.600543860895,6,3,6,6_1,6_1,6_1_0 +11673,1,40.0,17.0,2,111,183.0,1860.0,0.0,0,55,0.0,0.0,312.0516994370872,2043.0,0.0,3531.2175291680073,50,2,2,2,2,1,2,2,2,3,20.0,2,,2,111684,1,3,0,0,1,,400.0,218.0,12,1.0,0.0,2.0,1.0,1.0,1,1,302.712629777738,183.0,14521.805934395003,0,1,2,3,54.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.14068498155323367,14521.805934395003,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +11674,2,32.0,0.0,6,111,575.0,2030.0,0.0,42,45,0.0,0.0,980.4903124389351,2605.0,0.0,3853.9632173177715,20,2,1,2,1,1,2,2,2,3,90.0,1,,4,111685,2,1,2,0,1,,756.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,809.606061471296,575.0,42073.36084643046,4,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06191566225261537,20034.93373639546,5,3,5,5_1,5_4,5_0_0 +11675,2,34.0,0.0,5,211,384.0,775.0,0.0,52,62,0.0,0.0,654.7970086548714,1159.0,0.0,1471.3406371533365,31,0,0,0,0,0,0,0,0,1,5.0,1,,3,111686,2,1,2,0,1,,430.0,350.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1271.85485820138,384.0,45192.86525510294,4,1,2,3,75.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025645641042180478,25107.147363946075,7,4,7,7_1,7_1,7_0_0 +11676,1,65.0,170.0,2,111,360.0,70.0,0.0,85,52,0.0,0.0,613.872195613942,430.0,0.0,132.89528335578524,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,111687,2,1,0,1,1,,0.0,600.0,42,2.0,1.0,5.0,4.0,2.3,3,3,454.667808602301,360.0,22007.25036501506,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01953901522761659,9568.369723919592,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +11677,2,51.0,0.0,7,111,651.0,,,0,54,0.0,0.0,,676.0,34.63973063491302,,31,0,0,0,0,0,0,0,0,2,45.0,2,,5,111688,2,1,0,0,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,199.73665290996044,651.0,50002.79151141957,0,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01351924521745183,50002.79151141957,10,5,10,10_0,10_2,10_0_0 +11678,2,37.0,0.0,2,112,380.0,750.0,0.0,0,85,0.0,0.0,647.9762064813832,1130.0,0.0,1423.8780359548418,60,0,0,0,0,0,0,0,0,0,,1,,2,111689,2,2,2,0,1,,600.0,,31,0.0,0.0,4.0,4.0,1.9,1,1,68.4008256389007,380.0,12053.86809494739,0,7,0,1,70.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09374584084536824,6344.1411026038895,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +11680,2,66.0,0.0,1,112,2500.0,1000.0,0.0,0,77,0.0,0.0,4263.001358430153,3500.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,1,111691,2,2,3,0,1,,675.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,332.427091668139,2500.0,28662.620729956147,0,5,0,1,80.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12211025757118041,28662.620729956147,8,4,8,8_1,8_0,8_1_0 +11681,2,60.0,0.0,7,221,2354.0,0.0,0.0,75,75,0.0,66.2163638505112,4014.042079097832,2464.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,111692,2,1,2,0,1,,320.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1851.45743201865,2354.0,79527.24828138037,5,7,0,1,220.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03098309137117339,53018.16552092024,10,5,10,10_1,10_1,10_0_0 +11682,2,60.0,0.0,1,112,560.0,0.0,0.0,0,38,3164.0485531098047,0.0,954.9123042883542,3560.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,105.0,1,,1,111693,2,1,1,0,1,,200.0,,12,1.0,0.0,8.0,1.0,1.0,1,1,719.332446230066,560.0,92732.6137642385,0,1,0,1,130.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03838994562421017,92732.6137642385,10,5,10,10_1,10_0,10_1_0 +11683,0,53.0,0.0,7,112,180.0,,,85,11,0.0,0.0,,309.0,178.7410100761512,,71,0,0,0,0,0,0,0,0,0,,1,,5,111694,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,131.27644082968118,180.0,7586.1618802736175,6,1,5,0,60.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04073205988439242,5057.441253515745,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11684,2,39.0,0.0,7,111,1077.0,1500.0,0.0,37,37,0.0,0.0,1836.5009852117098,2577.0,0.0,2847.7560719096837,12,0,0,0,0,0,0,0,0,2,45.0,1,,5,111695,2,2,1,0,1,,600.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,552.868236622854,1077.0,227711.87276448563,1,1,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011316932967589706,94879.94698520235,10,5,10,10_1,10_4,10_0_0 +11685,2,54.0,0.0,6,211,252.0,,,0,11,0.0,0.0,,296.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,1,6.0,1,,4,111696,2,2,0,0,2,,252.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,92.49796853910831,252.0,77416.47567714937,0,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00382347552521522,77416.47567714937,10,5,10,10_1,10_2,10_0_0 +11686,2,27.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,486.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,111697,2,2,0,0,1,,0.0,580.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1839.37356652169,0.0,21258.589030134568,0,1,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02286134791500429,21258.589030134568,5,3,5,5_0,5_3,5_0_1 +11687,2,57.0,0.0,7,211,900.0,,,85,68,0.0,0.0,,1836.0,1296.9115149711436,,71,0,0,0,0,0,0,0,0,0,,1,,5,111698,2,2,0,0,2,,1800.0,,42,4.0,7.0,4.0,12.0,5.499999999999999,7,5,8.86637268138834,900.0,16938.750281126246,6,4,0,1,82.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10839052288560722,3079.7727783865907,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11688,2,35.0,0.0,2,111,500.0,0.0,0.0,38,37,0.0,0.0,852.6002716860306,500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,111699,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,723.551729673526,500.0,148964.7333451136,1,1,0,1,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0033564991442748163,62068.63889379734,10,5,10,10_0,10_4,10_0_1 +11689,0,26.0,0.0,6,111,480.0,,,90,62,0.0,0.0,,612.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,111700,2,2,0,0,2,,320.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,103.34081693887525,480.0,23614.300895421664,4,1,5,0,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025916498765316168,13119.056053012035,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11690,2,34.0,0.0,5,111,400.0,0.0,0.0,0,37,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,2,2,2,2,1,2,2,1,2,45.0,2,,3,111701,1,1,0,0,1,,0.0,517.0,12,1.0,0.0,2.0,1.0,1.0,1,1,493.521021154106,400.0,25316.68956249211,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.015799854045396963,25316.68956249211,7,4,7,7_0,7_3,7_0_0 +11691,2,65.0,0.0,1,112,600.0,0.0,0.0,0,75,2109.365702073203,529.7309108040896,1023.1203260232367,3000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,111702,2,2,4,0,1,,0.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1144.18306663271,600.0,36394.135176018004,0,5,0,1,130.0,9,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08243086380513465,36394.135176018004,9,5,9,9_1,9_0,9_1_0 +11692,2,27.0,0.0,7,112,0.0,0.0,0.0,67,38,0.0,0.0,0.0,943.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,111703,2,3,2,0,1,,177.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,892.709425523902,0.0,40110.87525130389,4,1,2,3,45.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023509833532474357,22283.819584057717,6,3,6,6_1,6_0,6_0_0 +11693,2,41.0,0.0,1,111,600.0,500.0,0.0,31,47,0.0,0.0,1023.1203260232367,1100.0,0.0,949.2520239698945,12,1,2,2,2,1,2,2,2,3,30.0,2,,1,111704,2,2,0,0,1,,0.0,1288.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1109.94039030815,600.0,56320.09220668103,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.019531218023636533,26819.091526990967,7,4,7,7_0,7_4,7_1_0 +11694,0,37.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,111705,1,3,0,0,2,,0.0,,32,1.0,0.0,3.0,6.0,2.6999999999999997,2,1,133.5497045146953,0.0,5055.711805555555,0,4,5,0,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059338825379710115,1872.4858539094648,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11695,2,65.0,0.0,2,112,666.0,2200.0,0.0,75,74,0.0,0.0,1135.6635618857927,2866.0,0.0,4176.708905467536,41,0,0,0,0,0,0,0,0,0,,1,,2,111706,2,3,2,0,1,,340.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,219.760236187223,666.0,55904.92242684633,5,5,0,1,100.0,6,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05126561089053057,37269.94828456422,9,5,9,9_1,9_0,9_0_1 +11696,2,52.0,0.0,9,111,864.0,,,90,52,0.0,0.0,,1003.0,192.59690233011642,,43,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,111707,2,3,0,0,2,,696.0,,43,2.0,4.0,4.0,5.0,2.8,3,2,108.0757026115153,864.0,48660.6696930144,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020612128980707144,17378.810604648002,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11697,2,33.0,0.0,8,111,1117.0,0.0,0.0,46,46,0.0,0.0,1904.7090069465924,1117.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111708,1,1,2,0,2,,313.0,830.0,43,2.0,0.0,4.0,3.0,1.8,2,2,585.449190160613,1117.0,86178.58924592618,1,1,2,3,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012961456085251507,47876.99402551454,10,5,10,10_1,10_3,10_0_0 +11698,2,55.0,0.0,2,111,0.0,0.0,120.0,0,56,0.0,0.0,75.63819484976925,120.0,0.0,143.6078577077617,71,2,2,2,2,1,2,2,2,3,60.0,2,,2,111709,2,3,0,1,1,70.0,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,1,1,247.826516806506,0.0,19297.218495714405,0,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0062185127885995605,19297.218495714405,5,3,5,5_0,5_4,5_0_1 +11699,0,83.0,0.0,1,400,639.0,0.0,0.0,77,77,0.0,317.83854648245375,1089.6231472147472,2879.0,2771.178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111710,1,1,2,0,1,,200.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,1527.85006182108,639.0,38802.0,5,5,0,1,250.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07419720632957064,25868.0,7,4,7,7_1,7_0,7_1_0 +11700,1,62.0,121.0,1,111,290.0,150.0,0.0,0,77,0.0,0.0,494.50815757789775,440.0,0.0,284.77560719096834,70,1,2,2,2,1,2,2,2,0,,2,,1,111711,1,3,0,1,1,749.0,0.0,266.0,21,1.0,2.0,3.0,2.0,1.5,2,2,315.44130562743,290.0,18890.994186065152,0,5,2,3,64.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.023291521646042524,12593.996124043435,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +11702,2,26.0,0.0,7,111,428.0,,,0,52,0.0,0.0,,668.0,332.541414095165,,60,0,0,0,0,0,0,0,0,0,,1,,5,111713,2,2,0,0,2,,380.0,240.0,22,1.0,2.0,4.0,3.0,1.8,2,2,157.4516576507529,428.0,12168.734684643825,0,1,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0548947788994836,6760.4081581354585,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11703,2,50.0,0.0,7,112,2000.0,0.0,0.0,31,38,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,2,2,2,2,2,2,2,1,0,,1,,5,111714,2,1,2,0,1,,650.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,920.916286471265,2000.0,76535.24607878752,1,1,1,2,200.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.026131751088134533,29436.63310722597,8,4,8,8_1,8_2,8_0_0 +11704,2,45.0,0.0,2,111,300.0,1070.0,0.0,47,47,0.0,0.0,511.56016301161833,1370.0,0.0,2031.3993312955743,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,111715,1,3,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,1419.61173282571,300.0,46569.905944795944,1,1,1,2,81.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.029418139723623248,18627.96237791838,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +11705,2,58.0,0.0,2,111,420.0,122.0,0.0,0,64,0.0,0.0,716.1842282162656,778.0,0.0,231.61749384865425,41,2,1,2,2,2,2,2,1,0,,2,,2,111716,2,1,0,1,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,2032.58495284165,420.0,3609.043553484173,0,4,0,1,45.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.21556957916147015,3609.043553484173,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +11706,1,29.0,360.0,2,111,800.0,4200.0,0.0,85,63,0.0,0.0,1364.160434697649,5000.0,0.0,7973.717001347114,50,1,2,2,2,1,2,2,1,2,30.0,2,,2,111717,1,2,0,0,1,,0.0,560.0,42,1.0,0.0,3.0,3.0,1.8,2,2,2694.72066591132,800.0,24094.040419906247,6,1,2,3,87.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.20752019639964792,13385.578011059026,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +11707,2,57.0,0.0,2,211,600.0,1300.0,0.0,77,52,0.0,0.0,1023.1203260232367,1900.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,4.0,1,,2,111718,2,2,1,0,1,,510.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,752.308354509897,600.0,44385.99330980325,7,1,1,2,85.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04280629672379911,29590.6622065355,8,4,8,8_1,8_1,8_0_1 +11708,2,46.0,0.0,2,221,0.0,0.0,0.0,55,63,0.0,0.0,0.0,3516.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,111719,2,1,2,0,2,,323.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,1111.57817106031,0.0,19125.4877236506,1,1,1,2,84.0,1,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1838384490269553,10625.270957583667,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +11709,1,43.0,360.0,2,120,0.0,890.0,0.0,69,69,0.0,0.0,0.0,1155.0,0.0,1689.6686026664122,71,0,0,0,0,0,0,0,0,0,,2,,2,111720,2,1,0,0,1,,0.0,420.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1251.36635754553,0.0,18107.10172384798,4,4,2,3,80.0,0,3,9,0,1,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06378712715126607,8622.42939230856,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +11710,2,70.0,0.0,5,111,398.0,870.0,0.0,0,77,0.0,0.0,678.6698162620803,1268.0,0.0,1651.6985217076165,70,0,0,0,0,0,0,0,0,0,,1,,3,111721,2,1,2,0,1,,124.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,310.908421612473,398.0,25162.181108567318,0,5,0,1,100.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050393087726733926,25162.181108567318,7,4,7,7_1,7_2,7_0_0 +11711,2,62.0,0.0,1,120,400.0,0.0,0.0,0,78,0.0,529.7309108040896,682.0802173488245,860.0,83.13535352379125,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,111722,2,1,1,0,1,,400.0,600.0,11,0.0,4.0,5.0,1.0,1.0,1,1,1963.66855368751,400.0,27063.993011192822,0,5,2,3,130.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.031776537913098445,27063.993011192822,7,4,7,7_1,7_0,7_1_0 +11712,2,70.0,0.0,7,111,700.0,,,0,74,0.0,0.0,,776.0,105.3047811301356,,20,0,0,0,0,0,0,0,0,0,,1,,5,111723,1,2,0,0,2,,1000.0,,31,1.0,3.0,5.0,2.0,1.5,2,2,39.5165621721034,700.0,56942.37058671735,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013627813384028896,37961.5803911449,9,5,9,9_1,9_2,9_0_0 +11713,0,84.0,0.0,2,112,810.0,0.0,0.0,0,71,0.0,0.0,1381.2124401313695,900.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,111724,2,1,2,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,930.131234426944,810.0,12184.704525297224,0,5,0,1,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07386309599313375,12184.704525297224,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +11714,0,82.0,0.0,1,400,600.0,0.0,0.0,0,72,0.0,0.0,1023.1203260232367,4100.0,4849.562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111725,2,1,3,0,1,,100.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1998.91330563214,600.0,62314.0,0,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06579580832557692,62314.0,10,5,10,10_1,10_0,10_1_0 +11715,1,77.0,40.0,2,111,0.0,0.0,40.0,0,77,483.0447457747635,0.0,25.21273161658975,498.0,0.0,47.86928590258723,70,0,0,0,0,0,0,0,0,0,,2,,2,111726,2,2,0,1,1,456.0,0.0,250.0,11,0.0,2.0,2.0,1.0,1.0,1,1,471.351629124627,0.0,15745.418127690657,0,5,2,3,45.0,7,5,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03162824867281187,15745.418127690657,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +11716,2,63.0,0.0,5,112,1000.0,0.0,0.0,0,78,0.0,0.0,1705.2005433720612,4301.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111727,2,1,2,0,1,,320.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1570.66376069476,1000.0,21362.403525955793,0,5,0,1,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20133502275500928,21362.403525955793,6,3,6,6_1,6_1,6_0_0 +11717,2,38.0,0.0,5,111,1300.0,120.0,0.0,0,47,0.0,0.0,2216.7607063836795,1420.0,0.0,227.8204857527747,50,2,2,2,2,1,2,2,2,2,15.0,1,,3,111728,1,2,3,0,1,,437.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,721.454372837454,1300.0,36144.42946327687,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.039286828457002904,22590.268414548045,6,3,6,6_1,6_4,6_0_0 +11718,2,47.0,0.0,1,112,240.0,1500.0,0.0,0,37,0.0,0.0,409.2481304092947,1740.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,3,90.0,1,,1,111729,2,1,2,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,831.117229047175,240.0,49759.19244706857,0,1,0,1,100.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03496841316005938,49759.19244706857,10,5,10,10_1,10_1,10_1_0 +11719,2,63.0,0.0,6,111,2500.0,0.0,0.0,78,90,0.0,198.6490915515336,4263.001358430153,2805.0,214.76632993646075,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,111730,2,1,2,0,1,,457.0,,41,1.0,1.0,7.0,3.0,2.0,3,3,1430.4249202249,2500.0,60652.352381592646,5,5,0,1,140.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04624717574600269,30326.176190796323,8,4,8,8_1,8_2,8_0_0 +11720,2,68.0,0.0,2,111,300.0,1200.0,0.0,75,75,0.0,0.0,511.56016301161833,1560.0,83.13535352379125,2278.2048575277468,60,0,0,0,0,0,0,0,0,0,,1,,2,111731,2,2,1,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1258.08502299082,300.0,49297.51850393633,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03164459484660342,32865.01233595755,8,4,8,8_1,8_4,8_0_1 +11721,2,64.0,0.0,6,111,456.0,,,0,77,0.0,0.0,,525.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,4,111732,2,1,0,0,2,,140.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,115.82242711818547,456.0,46279.025436999764,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011344231972099095,46279.025436999764,10,5,10,10_1,10_2,10_0_0 +11722,1,92.0,197.0,1,111,520.0,0.0,0.0,0,77,0.0,0.0,886.7042825534718,580.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,111733,2,2,0,0,1,,0.0,380.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2271.68894408609,520.0,11213.983663732153,0,5,2,3,20.0,5,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05172113830304696,11213.983663732153,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +11723,2,78.0,0.0,6,112,450.0,0.0,0.0,72,72,0.0,662.163638505112,767.3402445174275,1050.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,111734,2,1,2,0,2,,132.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,271.410627816569,450.0,21373.20273172899,5,5,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049126937744395784,14248.80182115266,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11724,2,42.0,0.0,9,211,2100.0,0.0,0.0,56,54,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,75.0,1,2006.0,6,111735,2,1,1,0,1,,521.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,985.12179603633,2100.0,49671.79956038321,1,1,1,2,153.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04227750994701024,21596.434591470963,6,3,6,6_1,6_1,6_0_0 +11725,2,60.0,0.0,2,111,238.0,1096.0,0.0,0,42,0.0,0.0,405.83772932255056,1334.0,0.0,2080.760436542009,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,111736,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1438.24089125799,238.0,36355.167312789294,0,1,0,1,118.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03669354588641146,36355.167312789294,9,5,9,9_0,9_2,9_0_1 +11726,1,47.0,89.0,2,111,300.0,1100.0,0.0,85,68,0.0,0.0,511.56016301161833,1400.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,2,35.0,2,,2,111737,1,2,0,0,1,,400.0,300.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1331.95236955739,300.0,19885.07414266778,6,1,2,3,60.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07040456525107912,13256.716095111855,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +11727,2,26.0,0.0,9,111,0.0,0.0,0.0,43,37,0.0,0.0,0.0,261.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,2011.0,6,111738,2,1,0,0,1,,0.0,720.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2434.23816422867,0.0,47528.99202096171,1,1,2,3,57.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005491385129415141,31685.994680641143,8,4,8,8_0,8_3,8_0_0 +11728,1,64.0,265.0,5,111,220.0,0.0,0.0,0,68,0.0,0.0,375.14411954185346,220.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,111739,2,1,0,1,2,,0.0,300.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1285.96669442676,220.0,872.4827366441649,0,1,3,4,12.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.2521539862739144,872.4827366441649,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +11729,2,44.0,0.0,8,111,600.0,0.0,0.0,34,38,0.0,132.4327277010224,1023.1203260232367,2000.0,1801.2659930154773,0.0,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111740,2,2,3,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1415.08196187341,600.0,87313.37045820603,1,1,1,2,200.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022905999270264484,41577.795456288586,9,5,9,9_1,9_3,9_0_0 +11730,0,42.0,0.0,9,400,210.0,,,0,63,0.0,0.0,,278.0,94.22006732696343,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,111741,2,1,0,0,2,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,132.53310688045607,210.0,7551.127366609294,0,4,5,0,18.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03681569473047191,7551.127366609294,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +11731,2,35.0,0.0,9,111,1060.0,0.0,0.0,54,37,0.0,0.0,1807.5125759743848,1060.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,2006.0,6,111742,2,1,0,0,1,,0.0,900.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1421.06495473265,1060.0,54708.93399945251,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01937526327986226,30393.85222191806,8,4,8,8_0,8_4,8_0_0 +11732,1,40.0,377.0,5,111,240.0,0.0,0.0,0,56,0.0,0.0,409.2481304092947,529.0,110.84713803172167,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,111743,1,3,0,1,2,,120.0,650.0,32,1.0,0.0,2.0,2.0,1.5,2,1,1296.46288605813,240.0,11551.725004492255,0,4,2,3,45.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04579402641547315,7701.1500029948365,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11733,2,65.0,0.0,2,111,235.0,490.0,0.0,0,56,0.0,0.0,400.72212769243436,725.0,0.0,930.2669834904966,70,0,0,0,0,0,0,0,0,0,,1,,2,111744,2,1,1,0,1,,336.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,246.015827086331,235.0,12331.593808996337,0,1,0,1,102.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.058792075965970164,12331.593808996337,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11734,1,28.0,399.0,1,111,396.0,,,0,54,0.0,0.0,,459.0,87.29212119998083,,43,0,0,0,0,0,0,0,0,2,10.0,2,,1,111745,1,2,0,0,2,,800.0,401.0,32,1.0,0.0,4.0,4.0,2.1,2,2,83.45024918367706,396.0,23401.24211389191,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.019614343450919614,11143.448625662813,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +11735,2,46.0,0.0,9,211,1200.0,,,81,68,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,111746,2,2,0,0,2,,109.0,,43,3.0,0.0,4.0,5.0,3.0,5,4,67.7368070853332,1200.0,23978.542821527655,4,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05004474245710436,7992.847607175885,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11736,2,76.0,0.0,1,111,800.0,0.0,0.0,86,72,6328.0971062196095,0.0,1364.160434697649,6840.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,111747,2,1,4,0,1,,800.0,,41,0.0,1.0,13.0,2.0,1.5,2,2,586.146067143437,800.0,177618.2490203134,5,5,0,1,300.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038509556522076396,118412.16601354227,10,5,10,10_1,10_4,10_1_0 +11737,2,47.0,0.0,8,111,750.0,,,56,33,0.0,0.0,,900.0,207.83838380947813,,12,2,2,2,2,1,2,2,2,2,10.0,1,2001.0,6,111748,2,1,0,0,2,,600.0,1160.0,43,2.0,0.0,4.0,4.0,2.1,2,2,121.87956886224893,750.0,109398.86050088114,4,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.008226776731305634,52094.69547661007,10,5,10,10_1,10_2,10_0_0 +11738,1,64.0,30.0,2,111,600.0,0.0,0.0,0,77,0.0,0.0,1023.1203260232367,680.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111749,2,1,0,0,1,,0.0,560.0,21,1.0,0.0,2.0,2.0,1.5,2,2,4121.30909369237,600.0,23057.836288969618,0,5,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.029491058548511667,15371.890859313078,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +11739,2,48.0,0.0,7,112,695.0,985.0,0.0,54,22,0.0,264.8654554020448,1185.1143776435824,1880.0,0.0,1870.0264872206922,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,111750,1,2,3,0,1,,181.0,,43,2.0,0.0,7.0,5.0,3.0,5,3,1785.46780891327,695.0,60525.54852105102,1,1,0,1,170.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031061263316698874,20175.182840350342,5,3,5,5_1,5_1,5_0_0 +11740,1,29.0,370.0,2,111,660.0,490.0,0.0,0,53,0.0,0.0,1125.4323586255605,1150.0,0.0,930.2669834904966,43,2,1,2,1,2,2,2,2,0,,2,,2,111751,1,2,0,1,1,610.0,0.0,322.0,32,1.0,0.0,3.0,4.0,1.9,1,1,1289.48321442305,660.0,13676.707361087478,0,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08408456579775499,7198.267032151304,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +11741,2,50.0,0.0,9,111,800.0,0.0,0.0,85,34,0.0,0.0,1364.160434697649,800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,2006.0,6,111752,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,1256.40595842323,800.0,32468.02603263466,6,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024639625433215254,15460.964777445077,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +11742,1,28.0,193.0,2,111,610.0,340.0,0.0,55,55,0.0,0.0,1040.1723314569574,950.0,0.0,645.4913762995283,43,2,1,2,2,1,2,2,2,2,5.0,2,,2,111753,1,2,0,1,1,910.0,310.0,324.0,43,2.0,0.0,3.0,3.0,1.8,2,2,164.170235668095,610.0,12336.02281456768,1,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07701023370985823,6853.3460080931545,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11743,2,39.0,0.0,7,111,700.0,,,85,68,0.0,0.0,,788.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,111754,2,1,0,0,2,,160.0,,42,1.0,0.0,3.0,5.0,2.5999999999999996,3,2,82.71357460359182,700.0,17232.126904139972,7,1,0,1,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04572853974344195,6627.741116976913,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +11744,1,42.0,540.0,9,111,349.0,,,0,85,0.0,0.0,,475.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,111755,2,1,0,0,2,,240.0,850.0,31,0.0,0.0,4.0,6.0,2.6999999999999997,2,1,261.806234211721,349.0,21019.033001837834,0,6,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02259856578361467,7784.827037717717,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11745,2,52.0,0.0,2,112,1550.0,0.0,0.0,52,64,0.0,0.0,2643.0608422266946,1550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,111756,2,1,1,0,1,,500.0,695.0,43,2.0,3.0,3.0,2.0,1.5,2,2,660.754456248952,1550.0,33162.89038735847,1,1,2,3,95.0,10,3,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04673898993408766,22108.593591572313,6,3,6,6_1,6_1,6_0_1 +11746,2,61.0,0.0,8,112,2000.0,0.0,0.0,77,78,0.0,0.0,3410.4010867441225,2060.0,83.13535352379125,0.0,71,2,2,1,2,1,2,2,2,0,,1,2002.0,6,111757,2,2,1,0,1,,500.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,349.58932369969,2000.0,42164.5167771007,6,5,1,2,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04885624590197542,21082.25838855035,5,3,5,5_1,5_0,5_0_0 +11747,2,62.0,0.0,9,111,0.0,,,77,77,0.0,0.0,,448.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2013.0,6,111758,2,2,0,0,2,,215.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,177.27052781324562,0.0,36598.55336674199,6,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012240920986978373,24399.03557782799,7,4,7,7_1,7_3,7_0_0 +11748,2,64.0,0.0,6,111,294.0,0.0,0.0,0,77,0.0,0.0,501.328959751386,294.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,111759,2,2,0,0,1,300.0,139.0,406.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1662.68963868223,294.0,20175.0,0,5,2,3,100.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.014572490706319703,20175.0,5,3,5,5_0,5_3,5_0_0 +11749,2,73.0,0.0,6,111,1232.0,0.0,0.0,0,77,0.0,0.0,2100.807069434379,1232.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,111760,2,1,0,1,1,,0.0,450.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1108.90047545323,1232.0,16756.374505363576,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07352425786411297,16756.374505363576,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +11750,2,76.0,0.0,5,111,200.0,0.0,0.0,72,75,0.0,0.0,341.04010867441224,200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,111761,1,3,0,1,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1505.06860855685,200.0,26838.134342698777,5,5,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00745208282536261,17892.089561799185,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +11751,2,28.0,0.0,5,112,1070.0,0.0,0.0,85,68,0.0,794.5963662061343,1824.5645814081054,1670.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,111762,1,2,2,0,1,,450.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,664.252275564144,1070.0,36612.44127471711,6,4,1,2,80.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04561291030743766,17434.495845103385,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +11752,2,81.0,0.0,2,111,221.0,151.0,0.0,0,77,0.0,0.0,376.84932008522554,372.0,0.0,286.67411123890815,71,2,2,2,2,1,2,1,2,0,,2,,2,111763,1,3,0,1,1,468.0,0.0,303.0,11,0.0,3.0,4.0,1.0,1.0,1,1,282.200846572004,221.0,15689.498768435933,0,5,2,3,70.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.02371012646677968,15689.498768435933,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +11753,2,69.0,0.0,2,111,270.0,276.0,0.0,78,78,0.0,1191.8945493092015,460.40414671045653,1446.0,0.0,523.9871172313817,71,0,0,0,0,0,0,0,0,0,,1,,2,111764,2,1,2,0,1,,340.0,,41,0.0,1.0,4.0,3.0,2.0,3,3,587.416207882694,270.0,37860.87969937385,5,5,1,2,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03819245647437807,18930.439849686925,5,3,5,5_1,5_3,5_0_1 +11754,2,59.0,0.0,5,400,750.0,0.0,0.0,35,35,1054.6828510366015,0.0,1278.9004075290459,1810.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,111765,2,2,3,0,2,,150.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1434.35290487357,750.0,12783.061024543465,1,1,0,1,72.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1415936289848575,8522.040683028978,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +11755,2,55.0,0.0,6,120,600.0,,,56,64,0.0,0.0,,726.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,111766,2,1,0,0,1,,400.0,,43,4.0,2.0,5.0,5.0,2.8,4,4,116.84529347026366,600.0,59892.84047634784,1,1,0,1,110.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0121216491691808,21390.30017012423,6,3,6,6_1,6_2,6_0_0 +11756,2,59.0,0.0,2,221,208.0,1370.0,0.0,0,42,0.0,0.0,354.6817130213887,1578.0,0.0,2600.950545677511,50,0,0,0,0,0,0,0,0,0,,2,,2,111767,2,2,0,0,1,,191.0,358.0,12,1.0,3.0,3.0,1.0,1.0,1,1,3828.22272960066,208.0,21168.49155605559,0,1,2,3,60.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07454475420798642,21168.49155605559,5,3,5,5_0,5_1,5_0_1 +11757,2,43.0,0.0,1,111,500.0,0.0,0.0,0,33,0.0,0.0,852.6002716860306,500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,1,111768,1,3,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1151.99097908259,500.0,33889.63689313363,0,1,0,1,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014753772711601547,33889.63689313363,9,5,9,9_0,9_4,9_1_0 +11758,2,54.0,0.0,9,111,720.0,0.0,0.0,85,37,0.0,0.0,1227.744391227884,720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,111769,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,4.0,2.5,4,2,1067.05216511835,720.0,82317.98378250387,6,1,1,2,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008746569909952425,32927.19351300155,8,4,8,8_0,8_4,8_0_0 +11759,1,44.0,230.0,5,111,0.0,0.0,0.0,52,67,0.0,0.0,0.0,2873.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,111770,2,2,0,0,1,,0.0,522.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,245.904172336681,0.0,35661.30814613279,1,1,2,3,120.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08056350564110072,13715.887748512612,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +11760,2,42.0,0.0,2,111,0.0,0.0,0.0,68,21,0.0,0.0,0.0,1959.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111771,2,2,0,0,1,,115.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1534.82713285404,0.0,27449.17765977968,1,1,1,2,85.0,6,4,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07136825825097318,18299.451773186454,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +11761,2,32.0,0.0,2,111,570.0,,,42,47,0.0,0.0,,708.0,191.2113131047199,,20,0,0,0,0,0,0,0,0,0,,2,,2,111772,2,1,0,0,2,,400.0,690.0,43,2.0,0.0,2.0,2.0,1.5,2,2,172.48074781697255,570.0,40207.843470337335,4,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01760850468198612,26805.22898022489,7,4,7,7_0,7_2,7_0_1 +11762,1,45.0,330.0,7,111,534.0,,,0,56,0.0,0.0,,672.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,,5,111773,2,1,0,0,2,,540.0,580.0,32,2.0,1.0,5.0,4.0,2.3,3,2,138.86412101185445,534.0,5110.0,0,4,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13150684931506848,2221.739130434783,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11763,1,26.0,45.0,5,111,228.0,0.0,0.0,0,52,0.0,0.0,388.7857238888299,240.0,16.627070704758253,0.0,31,0,0,0,0,0,0,0,0,1,5.0,2,,3,111774,2,1,0,1,1,330.0,0.0,470.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1375.15316550005,228.0,11448.850508487501,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020962803193392925,11448.850508487501,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +11764,2,42.0,0.0,9,400,1670.0,0.0,0.0,47,46,0.0,0.0,2847.6849074313423,1670.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,111775,2,1,1,0,1,,658.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1220.07190360701,1670.0,42564.0,1,1,1,2,200.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039235034301287476,20268.571428571428,5,3,5,5_1,5_0,5_0_0 +11765,2,51.0,0.0,1,111,539.0,1591.0,0.0,35,46,0.0,0.0,919.1030928775409,2130.0,0.0,3020.519940272204,20,0,0,0,0,0,0,0,0,2,75.0,2,,1,111776,2,1,0,0,1,,0.0,1070.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1073.7200585456,539.0,105747.0,1,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020142415387670573,70498.0,10,5,10,10_0,10_4,10_1_0 +11766,2,63.0,0.0,2,111,200.0,200.0,0.0,0,78,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,111777,2,1,0,1,1,768.0,0.0,326.0,21,1.0,0.0,3.0,2.0,1.5,2,2,196.647661040061,200.0,50383.366758444434,0,5,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007939128044335357,33588.91117229629,9,5,9,9_0,9_4,9_0_1 +11767,2,60.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,128.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,2,,2,111778,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1147.60227824747,0.0,69677.52944130209,0,1,0,1,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0018370341346248516,69677.52944130209,10,5,10,10_0,10_4,10_0_1 +11768,2,38.0,0.0,9,112,1800.0,0.0,0.0,52,48,0.0,198.6490915515336,3069.36097806971,1950.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,111779,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1017.86281959669,1800.0,70597.39514351715,1,1,1,2,115.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027621415719883902,33617.80721119864,9,5,9,9_1,9_1,9_0_0 +11769,2,27.0,0.0,7,112,0.0,,,63,85,0.0,0.0,,1483.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,111780,2,2,0,0,2,,815.0,600.0,42,1.0,0.0,4.0,3.0,1.8,2,2,124.35570745942026,0.0,23626.274857597666,4,6,2,3,64.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06276909961212533,13125.708254220925,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11770,2,35.0,0.0,1,111,1000.0,200.0,0.0,45,33,0.0,0.0,1705.2005433720612,1200.0,0.0,379.7008095879578,10,1,2,2,1,1,2,2,2,3,60.0,1,,1,111781,2,3,1,0,1,,450.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,412.096510706426,1000.0,83911.98055736201,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.014300699280714547,34963.32523223417,9,5,9,9_1,9_4,9_1_0 +11771,1,88.0,162.0,2,111,250.0,370.0,0.0,0,78,0.0,0.0,426.3001358430153,620.0,0.0,702.446497737722,71,0,0,0,0,0,0,0,0,0,,2,,2,111782,2,1,0,1,1,,137.0,299.0,11,0.0,3.0,3.0,1.0,1.0,1,1,388.116307338501,250.0,12638.857777747004,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04905506580599571,12638.857777747004,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +11772,2,40.0,0.0,2,111,384.0,221.0,0.0,0,46,0.0,0.0,654.7970086548714,605.0,0.0,419.5693945946934,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,111783,2,2,0,0,1,,170.0,491.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1792.05131977891,384.0,18015.276057044564,0,1,2,3,43.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033582610562518975,18015.276057044564,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +11773,2,33.0,0.0,1,112,1744.0,0.0,0.0,67,67,0.0,0.0,2973.8697476408747,1744.0,0.0,0.0,43,2,2,1,2,1,1,2,2,2,25.0,1,,1,111784,1,3,1,0,2,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1086.50144037881,1744.0,36462.58093786141,1,1,1,2,70.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04782985611940307,20256.989409923004,5,3,5,5_1,5_0,5_1_0 +11774,2,46.0,0.0,7,400,530.0,,,0,52,0.0,0.0,,662.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,111785,1,3,0,0,2,,270.0,,32,3.0,0.0,5.0,3.0,2.0,3,3,107.28044655781919,530.0,13610.50193050193,0,4,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04863891158315178,6805.250965250965,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11775,1,53.0,230.0,2,111,117.0,,,0,63,0.0,0.0,,159.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,2,111786,2,1,0,0,2,,240.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,138.50096110717487,117.0,5247.546182943535,0,4,1,2,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03029987625774667,5247.546182943535,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +11776,2,70.0,0.0,6,111,550.0,0.0,0.0,78,77,0.0,0.0,937.8602988546337,620.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,111787,1,1,3,0,1,,255.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1367.7625031831,550.0,36187.91275466833,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017132792493538287,24125.275169778888,6,3,6,6_1,6_3,6_0_0 +11777,1,46.0,286.0,7,111,500.0,,,0,52,0.0,0.0,,752.0,349.1684847999233,,70,0,0,0,0,0,0,0,0,1,30.0,2,,5,111788,2,1,0,0,2,,330.0,513.0,32,1.0,1.0,4.0,3.0,1.8,2,1,71.09851596996029,500.0,30989.58106140229,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024266220266417882,17216.43392300127,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +11778,2,63.0,0.0,5,112,0.0,0.0,0.0,77,72,0.0,0.0,0.0,5381.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111789,2,1,2,0,1,,155.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,488.251839799715,0.0,46566.69002030031,5,5,1,2,110.0,9,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11555470224862888,31044.46001353354,8,4,8,8_1,8_1,8_0_0 +11779,2,62.0,0.0,9,112,800.0,0.0,0.0,77,74,0.0,0.0,1364.160434697649,875.0,103.91919190473907,0.0,44,0,0,0,0,0,0,0,0,0,,1,2005.0,6,111790,2,1,1,0,1,,200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,854.384244373528,800.0,38916.49072062034,6,5,0,1,102.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022484041695372377,25944.32714708023,7,4,7,7_1,7_0,7_0_0 +11780,2,70.0,0.0,6,111,450.0,840.0,0.0,56,78,0.0,0.0,767.3402445174275,1290.0,0.0,1594.7434002694229,70,0,0,0,0,0,0,0,0,0,,1,,4,111791,2,1,2,0,1,,200.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1070.43311891853,450.0,25078.458369759304,1,5,0,1,105.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051438568550750234,16718.972246506204,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +11781,2,62.0,0.0,5,111,0.0,0.0,0.0,75,38,0.0,0.0,0.0,571.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,3,111792,2,1,0,1,1,1250.0,0.0,1370.0,42,1.0,3.0,2.0,2.0,1.5,2,2,763.752589484135,0.0,134002.9476704979,6,1,3,4,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004261100296122153,89335.2984469986,10,5,10,10_0,10_4,10_0_0 +11782,2,71.0,0.0,5,111,271.0,100.0,0.0,77,74,0.0,0.0,462.10934725382856,371.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,0,,2,,3,111793,2,1,0,1,2,,914.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1730.59561901329,271.0,32964.657590861694,5,5,0,1,76.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011254477586408993,21976.438393907796,6,3,6,6_0,6_3,6_0_0 +11783,2,54.0,0.0,8,111,900.0,870.0,0.0,34,47,0.0,0.0,1534.680489034855,1770.0,0.0,1651.6985217076165,10,0,0,0,0,0,0,0,0,2,7.0,1,2001.0,6,111794,2,1,2,0,1,,270.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1111.20713308798,900.0,71064.09011173864,1,1,1,2,145.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024907094387853487,47376.06007449242,10,5,10,10_1,10_3,10_0_0 +11784,2,44.0,0.0,9,111,0.0,0.0,0.0,43,52,0.0,0.0,0.0,652.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,111795,2,1,1,0,1,,185.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,500.697063224352,0.0,74319.29380859701,1,1,1,2,123.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008772957419094566,26542.604931641792,7,4,7,7_1,7_4,7_0_0 +11785,2,47.0,0.0,9,111,740.0,740.0,0.0,62,52,0.0,0.0,1261.8484020953254,1480.0,0.0,1404.892995475444,70,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,111796,2,2,1,0,1,,400.0,580.0,43,4.0,0.0,5.0,5.0,3.0,5,4,958.880956990073,740.0,46828.932872114325,1,1,2,3,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03160439303713687,15609.644290704775,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +11786,2,57.0,0.0,9,111,768.0,0.0,0.0,0,64,0.0,0.0,1309.5940173097429,832.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,111797,2,1,1,0,1,,180.0,,22,2.0,3.0,3.0,2.0,1.5,2,2,244.041084936113,768.0,26355.879745616556,0,4,0,1,78.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03156790849064244,17570.586497077704,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +11787,2,66.0,0.0,1,112,418.0,237.0,0.0,63,77,0.0,0.0,712.7738271295216,655.0,0.0,449.94545936173,70,2,2,1,2,2,2,2,1,0,,1,,1,111798,2,2,2,0,1,,456.0,412.0,42,1.0,6.0,4.0,2.0,1.5,2,2,454.601675087298,418.0,28606.134506358765,1,5,2,3,70.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.022897186610599283,19070.75633757251,5,3,5,5_1,5_1,5_1_0 +11788,1,44.0,184.0,9,300,1920.0,0.0,0.0,56,62,0.0,0.0,3273.9850432743574,1920.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,111799,2,1,1,0,1,,960.0,,43,2.0,1.0,6.0,5.0,2.4,2,2,861.660532290549,1920.0,29294.622761197512,1,1,1,2,105.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06554103856026286,12206.09281716563,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +11789,2,78.0,0.0,5,111,360.0,240.0,0.0,0,77,0.0,0.0,613.872195613942,600.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,2,,3,111800,2,1,0,1,1,534.0,360.0,300.0,11,0.0,3.0,2.0,1.0,1.0,1,1,353.486864050931,360.0,19496.248575375554,0,5,2,3,55.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030775151315921415,19496.248575375554,5,3,5,5_0,5_2,5_0_0 +11790,2,49.0,0.0,9,111,400.0,,,56,68,0.0,0.0,,529.0,178.7410100761512,,60,0,0,0,0,0,0,0,0,0,,1,2010.0,6,111801,2,1,0,0,2,,120.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,216.39904736171135,400.0,49212.650143800645,4,1,1,2,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010749268703356723,23434.595306571733,6,3,6,6_1,6_2,6_0_0 +11791,0,69.0,0.0,5,211,695.0,1083.0,0.0,75,75,0.0,132.4327277010224,1185.1143776435824,1878.0,0.0,2056.0798839187914,50,0,0,0,0,0,0,0,0,0,,1,,3,111802,2,1,1,0,1,,313.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1158.44414860642,695.0,50315.23096428636,5,5,0,1,109.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03732468208946512,33543.487309524244,8,4,8,8_1,8_1,8_0_0 +11792,1,89.0,307.0,1,111,325.0,0.0,0.0,0,72,0.0,0.0,554.1901765959199,774.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,111803,2,1,0,1,1,564.0,0.0,385.0,11,0.0,0.0,2.0,1.0,1.0,1,1,835.476843476431,325.0,11553.663926819529,0,5,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06699173568683378,11553.663926819529,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +11793,2,70.0,0.0,2,111,451.0,0.0,0.0,0,86,0.0,0.0,769.0454450607996,670.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111804,1,1,0,1,2,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,318.258294271134,451.0,13091.944930031907,0,5,0,1,90.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.051176506132642824,13091.944930031907,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +11794,2,82.0,0.0,1,112,500.0,0.0,0.0,0,86,0.0,662.163638505112,852.6002716860306,4000.0,4156.767676189563,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111805,2,1,1,0,1,,200.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,2035.46906907633,500.0,17192.40736230852,0,6,0,1,120.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23266084357501507,11461.60490820568,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +11795,1,45.0,358.0,6,211,450.0,,,0,85,0.0,0.0,,450.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,111806,2,1,0,0,2,,400.0,800.0,31,0.0,2.0,4.0,4.0,2.3,3,2,94.59122065883722,450.0,16679.98580560385,0,7,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02697844022438058,7252.167741566892,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11796,2,81.0,0.0,6,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,496.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,111807,2,1,0,0,1,,280.0,435.0,11,0.0,2.0,3.0,1.0,1.0,1,1,442.223780417009,0.0,16352.931320183267,0,5,2,3,90.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030330953532949918,16352.931320183267,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +11797,2,44.0,0.0,9,400,400.0,,,85,54,0.0,0.0,,680.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,2,1.0,1,2008.0,6,111808,2,2,0,0,2,,0.0,,42,1.0,2.0,4.0,3.0,2.0,3,3,6.6931127859640664,400.0,26681.454336760846,6,1,0,1,180.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02548586712768194,13340.727168380423,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11798,1,39.0,200.0,5,111,250.0,,,0,68,0.0,0.0,,350.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,1,,3,111809,2,2,0,0,2,,200.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,95.78506435663864,250.0,17708.0,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0197650779308787,17708.0,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +11799,2,41.0,0.0,9,112,1600.0,0.0,0.0,21,21,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,111810,2,1,1,0,1,,837.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,922.394554193637,1600.0,39808.50582207595,1,1,1,2,100.0,9,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04019241533834998,17308.04600959824,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +11800,2,66.0,0.0,2,111,800.0,600.0,0.0,86,77,0.0,0.0,1364.160434697649,1400.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,0,,2,,2,111811,2,2,0,1,1,725.0,0.0,387.0,41,0.0,3.0,3.0,2.0,1.5,2,2,296.425277000893,800.0,16021.40500705982,6,5,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08738309776096984,10680.936671373214,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +11801,2,44.0,0.0,2,111,0.0,0.0,0.0,90,37,0.0,0.0,0.0,250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,55.0,2,,2,111812,2,1,0,0,1,,709.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,828.970774686065,0.0,51444.79984823054,1,1,1,2,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004859577658724214,28580.444360128076,8,4,8,8_0,8_4,8_0_1 +11803,2,55.0,0.0,2,111,0.0,0.0,0.0,0,45,316.40485531098045,0.0,0.0,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,111814,2,1,0,1,2,310.0,0.0,880.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1107.11648156427,0.0,43176.26658080245,0,1,2,3,35.0,10,8,1,1,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006948261713146584,43176.26658080245,9,5,9,9_0,9_4,9_0_1 +11805,1,95.0,135.0,7,111,298.0,0.0,0.0,0,86,0.0,0.0,508.1497619248742,298.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,111816,1,3,0,1,2,,0.0,738.0,11,0.0,5.0,3.0,1.0,1.0,1,1,2159.58863511884,298.0,20384.633622008154,0,6,2,3,75.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014618854845557095,20384.633622008154,5,3,5,5_0,5_3,5_0_0 +11806,2,51.0,0.0,2,120,500.0,0.0,0.0,56,47,0.0,331.081819252556,852.6002716860306,840.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,111817,2,2,2,0,1,,350.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1804.02670219844,500.0,53628.31153821992,1,1,0,1,110.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01566336839453443,35752.207692146614,9,5,9,9_1,9_1,9_0_1 +11807,2,52.0,0.0,5,221,0.0,0.0,0.0,22,22,0.0,0.0,0.0,4415.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,3,111818,1,1,3,0,2,,449.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,2239.37621983949,0.0,31237.051600198756,1,1,1,2,170.0,1,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1413385634632658,15618.525800099378,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +11808,2,65.0,0.0,9,221,2195.0,0.0,0.0,77,75,0.0,0.0,3742.915192701674,2195.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,111819,2,1,2,0,1,,605.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,760.883495663417,2195.0,73735.81680865062,5,5,0,1,115.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029768436765217805,49157.21120576708,10,5,10,10_1,10_1,10_0_0 +11809,2,48.0,0.0,5,111,303.0,0.0,0.0,0,37,0.0,0.0,516.6757646417345,303.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,20.0,2,,3,111820,2,1,0,1,2,840.0,0.0,1202.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1194.99928413111,303.0,60534.56595400483,0,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005005404684494219,60534.56595400483,10,5,10,10_0,10_4,10_0_0 +11810,2,52.0,0.0,1,111,300.0,0.0,0.0,0,68,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,10.0,8,,1,111821,1,2,0,0,2,,0.0,310.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.25371214467,300.0,11205.917335663524,0,1,2,3,9.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026771569967344973,11205.917335663524,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +11811,2,71.0,0.0,1,111,720.0,,,0,75,0.0,0.0,,996.0,382.4226262094398,,10,0,0,0,0,0,0,0,0,0,,1,,1,111822,1,2,0,0,2,,720.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,118.73698828209724,720.0,26693.923212128662,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037311862781843064,26693.923212128662,7,4,7,7_1,7_3,7_1_0 +11812,2,31.0,0.0,9,111,660.0,0.0,0.0,43,56,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2005.0,6,111823,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1625.498895451,660.0,54111.97536454035,1,1,1,2,64.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01219693044938254,25767.607316447782,7,4,7,7_0,7_3,7_0_0 +11813,2,36.0,0.0,1,120,720.0,960.0,0.0,21,21,0.0,0.0,1227.744391227884,1680.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,0,,8,,1,111824,2,1,0,1,1,,495.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2239.14673475758,720.0,41468.75143668081,1,1,1,2,95.0,0,1,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04051243265824423,19747.02449365753,5,3,5,5_0,5_1,5_1_0 +11814,2,79.0,0.0,6,112,1500.0,0.0,0.0,0,74,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,111825,2,2,1,0,2,,600.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1357.19157180215,1500.0,42300.39199373685,0,5,0,1,120.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03687909086589503,42300.39199373685,9,5,9,9_1,9_1,9_0_0 +11815,2,58.0,0.0,2,111,483.0,1303.0,0.0,74,33,0.0,0.0,823.6118624487056,1786.0,0.0,2473.750774465545,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,111826,2,2,1,0,1,,305.0,,42,1.0,1.0,6.0,4.0,2.5,4,4,1125.11494727032,483.0,89036.2063755128,5,1,0,1,95.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020059255360313676,35614.482550205124,9,5,9,9_1,9_3,9_0_1 +11816,2,39.0,0.0,2,111,476.0,1800.0,0.0,38,52,0.0,0.0,811.6754586451011,2276.0,0.0,3417.30728629162,20,0,0,0,0,0,0,0,0,0,,1,,2,111827,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,610.941502673482,476.0,60918.28750683932,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03736152300316178,33843.493059355176,9,5,9,9_1,9_4,9_0_1 +11817,2,65.0,0.0,9,111,1560.0,0.0,0.0,37,75,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2006.0,6,111828,2,1,0,0,1,,0.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,649.009347794323,1560.0,118323.52930265994,1,5,1,2,118.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013184190914468699,78882.35286843996,10,5,10,10_0,10_3,10_0_0 +11818,2,60.0,0.0,1,111,240.0,1032.0,0.0,0,47,0.0,0.0,409.2481304092947,1272.0,0.0,1959.2561774738622,10,0,0,0,0,0,0,0,0,3,75.0,2,,1,111829,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1007.39569633197,240.0,28705.66231060856,0,1,1,2,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.044311815078027846,28705.66231060856,8,4,8,8_0,8_4,8_1_0 +11819,2,44.0,0.0,1,111,180.0,1098.0,0.0,34,34,0.0,0.0,306.936097806971,1278.0,0.0,2084.5574446378882,10,0,0,0,0,0,0,0,0,1,5.0,2,,1,111830,1,2,0,0,1,,130.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,363.104014092734,180.0,58454.20403902112,4,1,1,2,95.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021863269220924995,27835.33525667672,7,4,7,7_0,7_3,7_1_0 +11820,2,52.0,0.0,5,111,180.0,60.0,0.0,0,47,0.0,0.0,306.936097806971,240.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,111831,2,2,0,1,1,433.0,0.0,183.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1795.73718326979,180.0,35431.547627771215,0,1,2,3,49.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006773624525841716,35431.547627771215,9,5,9,9_0,9_3,9_0_0 +11821,2,28.0,0.0,6,111,1251.0,0.0,0.0,54,43,0.0,0.0,2133.2058797584486,1251.0,0.0,0.0,33,1,2,2,2,1,2,1,2,2,20.0,1,,4,111832,2,2,3,0,1,,228.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,301.668025863917,1251.0,54788.98582210343,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02283305633840207,26089.99324862068,7,4,7,7_1,7_3,7_0_0 +11822,1,82.0,60.0,2,111,251.0,280.0,0.0,0,77,0.0,0.0,428.00533638638734,531.0,0.0,531.581133423141,70,0,0,0,0,0,0,0,0,0,,2,,2,111833,2,1,0,1,1,,0.0,299.0,11,0.0,7.0,3.0,1.0,1.0,1,1,277.645908331778,251.0,13769.751695180303,0,5,2,3,65.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03856278687914619,13769.751695180303,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +11823,2,50.0,0.0,5,112,1000.0,0.0,0.0,74,37,0.0,397.2981831030672,1705.2005433720612,1420.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,3,111834,2,1,2,0,1,,800.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1365.37827672273,1000.0,57219.930660869715,5,1,0,1,186.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024816527800707,38146.62044057981,9,5,9,9_1,9_1,9_0_0 +11824,2,46.0,0.0,2,111,128.0,127.0,0.0,0,52,0.0,0.0,218.26566955162383,255.0,0.0,241.1100140883532,50,1,2,2,2,1,2,2,2,1,2.0,2,,2,111835,2,1,0,1,1,,80.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,349.72080275422,128.0,19469.439133315074,0,1,2,3,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.013097449713569688,19469.439133315074,5,3,5,5_0,5_3,5_0_1 +11825,2,53.0,0.0,1,111,2200.0,0.0,0.0,0,47,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,35.0,2,,1,111836,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,993.974689517265,2200.0,83804.7919774424,0,1,0,1,126.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02625148214188242,83804.7919774424,10,5,10,10_0,10_4,10_1_0 +11826,2,77.0,0.0,9,111,370.0,,,0,75,0.0,0.0,,414.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,1,5.0,1,2011.0,6,111837,2,1,0,0,2,,360.0,,21,2.0,0.0,8.0,5.0,2.5999999999999996,3,3,190.90545478193437,370.0,32062.959289754275,0,5,0,1,154.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012912095738221325,12331.907419136262,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +11827,2,39.0,0.0,9,112,1100.0,0.0,0.0,46,33,0.0,437.0280014133739,1875.7205977092674,1430.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,111838,2,1,1,0,1,,425.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,992.220286681401,1100.0,49954.24594342932,1,1,1,2,134.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028626195291175115,23787.73616353777,6,3,6,6_1,6_1,6_0_0 +11828,2,29.0,0.0,7,111,432.0,,,52,43,0.0,0.0,,532.0,138.5589225396521,,33,0,0,0,0,0,0,0,0,2,10.0,1,,5,111839,2,1,0,0,1,,175.0,820.0,43,2.0,1.0,4.0,2.0,1.5,2,2,90.07888187353525,432.0,60050.41810594792,1,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008859222246569272,40033.61207063195,9,5,9,9_1,9_2,9_0_0 +11829,1,28.0,420.0,7,111,266.0,885.0,0.0,56,85,0.0,0.0,453.5833445369683,1151.0,0.0,1680.1760824267133,71,1,2,2,1,2,2,2,2,0,,2,,5,111840,2,1,0,0,1,,0.0,620.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1215.72682277386,266.0,12308.638026323832,4,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.09351156460515106,6838.132236846573,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +11832,2,59.0,0.0,5,111,465.0,1305.0,0.0,77,75,0.0,0.0,792.9182526680084,1770.0,0.0,2477.547782561425,33,0,0,0,0,0,0,0,0,0,,1,,3,111843,2,1,1,0,2,,240.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1200.3658217813,465.0,37941.732805940876,5,5,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046650478749954594,25294.488537293917,7,4,7,7_1,7_2,7_0_0 +11833,2,51.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1292.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,111844,2,1,2,0,1,,400.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,1683.98409311057,0.0,24331.685900763343,0,1,1,2,100.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0530994853899321,12165.842950381671,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +11834,2,36.0,0.0,1,111,750.0,1519.0,0.0,67,63,0.0,0.0,1278.9004075290459,2269.0,0.0,2883.8276488205397,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,111845,2,2,3,0,1,,559.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1496.10244758995,750.0,45428.15080452848,1,1,1,2,95.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04994700334079669,25237.861558071378,7,4,7,7_1,7_2,7_1_0 +11835,2,48.0,0.0,2,111,550.0,0.0,0.0,0,47,0.0,0.0,937.8602988546337,550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,111846,2,2,0,0,1,,0.0,340.0,12,1.0,1.0,2.0,1.0,1.0,1,1,497.89137491779,550.0,29389.150097196525,0,1,2,3,50.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018714389432189307,29389.150097196525,8,4,8,8_0,8_2,8_0_1 +11836,2,48.0,0.0,5,111,1100.0,0.0,0.0,65,38,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,111847,1,2,0,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,465.921701965948,1100.0,50032.69298033107,1,1,1,2,76.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021985624488220806,33355.12865355405,8,4,8,8_0,8_3,8_0_0 +11837,2,83.0,0.0,2,111,180.0,0.0,0.0,0,74,0.0,0.0,306.936097806971,803.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,111848,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1529.41712112553,180.0,37315.67097790601,0,5,0,1,98.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02151910923631637,37315.67097790601,9,5,9,9_0,9_3,9_0_1 +11838,2,55.0,0.0,2,221,480.0,,,0,22,0.0,0.0,,744.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,111849,1,3,0,0,2,,300.0,540.0,12,1.0,3.0,2.0,1.0,1.0,1,1,191.2069807661293,480.0,15932.0,0,1,2,3,30.0,1,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04669846849108712,15932.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +11839,2,76.0,0.0,1,112,378.0,,,0,72,0.0,0.0,,882.0,698.3369695998466,,70,0,0,0,0,0,0,0,0,0,,1,,1,111850,2,3,0,0,2,,180.0,,21,0.0,4.0,4.0,2.0,1.5,2,2,82.91673747853143,378.0,16791.431343762084,0,5,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05252679071505466,11194.287562508056,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +11840,2,49.0,0.0,2,111,1203.0,0.0,0.0,54,46,0.0,0.0,2051.3562536765894,1203.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,111851,2,1,0,0,1,,374.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,508.505281610646,1203.0,59970.59222599448,1,1,1,2,102.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020059831916726598,23988.23689039779,6,3,6,6_0,6_2,6_0_1 +11841,2,69.0,0.0,2,300,500.0,0.0,0.0,78,75,2636.7071275915036,0.0,852.6002716860306,3100.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,111852,2,2,2,0,2,,340.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,883.629989196261,500.0,37396.73789264371,5,5,0,1,104.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08289493080651292,24931.158595095807,7,4,7,7_1,7_0,7_0_1 +11842,2,55.0,0.0,2,111,168.0,1466.0,0.0,64,55,0.0,0.0,286.47369128650627,1634.0,0.0,2783.206934279731,50,0,0,0,0,0,0,0,0,4,20.0,1,,2,111853,2,1,1,0,1,,249.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,315.280498850065,168.0,16288.768704021742,1,1,0,1,91.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10031451914450482,10859.179136014494,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11843,2,34.0,0.0,1,111,240.0,550.0,0.0,38,38,0.0,0.0,409.2481304092947,790.0,0.0,1044.177226366884,10,2,2,2,2,1,2,2,2,3,50.0,2,,1,111854,1,3,0,0,2,,0.0,1123.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1073.6758535455,240.0,72699.07953903734,1,1,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.010866712549995801,48466.05302602489,10,5,10,10_0,10_4,10_1_0 +11844,2,69.0,0.0,1,111,220.0,190.0,0.0,35,75,0.0,0.0,375.14411954185346,410.0,0.0,360.7157691085599,60,0,0,0,0,0,0,0,0,0,,2,,1,111855,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,889.168186923913,220.0,36077.241996591765,5,5,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011364505081589467,24051.49466439451,6,3,6,6_0,6_4,6_1_0 +11845,2,46.0,0.0,2,111,300.0,0.0,0.0,56,55,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,111856,2,1,0,1,1,630.0,0.0,400.0,43,2.0,0.0,3.0,3.0,1.8,2,2,206.61996600047,300.0,24084.779914754345,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01245599922697321,13380.433285974636,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +11846,2,47.0,0.0,7,112,1500.0,0.0,0.0,56,48,0.0,119.18945493092015,2557.8008150580918,1590.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,111857,1,1,2,0,1,,240.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,752.771584268659,1500.0,39374.4667804025,1,1,0,1,115.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04038149923064803,26249.644520268335,7,4,7,7_1,7_0,7_0_0 +11847,2,63.0,0.0,5,221,1200.0,0.0,0.0,55,78,0.0,927.0290939071567,2046.2406520464733,1900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,111858,2,1,2,0,1,,400.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1800.40331839131,1200.0,48421.90706455865,1,5,0,1,90.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039238438037287944,32281.27137637243,8,4,8,8_1,8_1,8_0_0 +11848,2,52.0,0.0,7,112,660.0,0.0,0.0,52,63,1582.0242765549024,0.0,1125.4323586255605,2270.0,152.4148147936173,0.0,50,2,2,1,2,1,2,2,2,0,,1,,5,111859,1,1,2,0,1,,180.0,457.0,43,3.0,1.0,3.0,3.0,2.0,3,3,1620.0737771176,660.0,38575.56849364288,1,4,2,3,120.0,6,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.058845535883005534,19287.78424682144,5,3,5,5_1,5_0,5_0_0 +11849,1,64.0,128.0,5,111,1068.0,0.0,0.0,0,77,0.0,0.0,1821.1541803213613,1068.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,3,111860,2,3,0,0,1,490.0,672.0,422.0,31,1.0,3.0,4.0,2.0,1.5,2,2,239.282551049163,1068.0,19341.878941625382,0,5,2,3,70.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.05521697262314947,12894.585961083589,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +11850,2,56.0,0.0,2,111,672.0,0.0,0.0,0,52,0.0,0.0,1145.894765146025,897.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,111861,1,2,0,1,2,150.0,0.0,549.0,32,2.0,1.0,3.0,2.0,1.5,2,2,2462.15021652945,672.0,37512.6902676171,0,1,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.023911908039673094,25008.460178411402,7,4,7,7_0,7_2,7_0_1 +11851,2,36.0,0.0,2,300,800.0,0.0,0.0,0,45,0.0,927.0290939071567,1364.160434697649,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,2,111862,1,1,1,0,1,,303.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1024.71349934535,800.0,29386.232995568596,0,1,0,1,60.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05104431045061808,29386.232995568596,8,4,8,8_1,8_0,8_0_1 +11852,2,85.0,0.0,2,112,360.0,,,71,71,0.0,0.0,,492.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,111863,2,2,0,0,2,,280.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,102.78416314416867,360.0,18043.32718241296,5,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027267698192579366,12028.884788275305,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11853,1,19.0,352.0,1,211,0.0,0.0,0.0,81,85,0.0,0.0,0.0,215.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,111864,2,1,0,0,2,,217.0,390.0,42,1.0,0.0,2.0,3.0,1.8,2,2,3674.67410834498,0.0,8882.208942963309,4,6,2,3,30.0,1,2,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.024205690429105246,4934.560523868505,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +11854,2,67.0,0.0,5,211,485.0,0.0,0.0,0,75,3100.7675820476084,0.0,827.0222635354497,3545.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,111865,2,1,3,0,2,,245.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1313.56502491536,485.0,38221.73390598875,0,5,0,1,100.0,3,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0927482779488597,38221.73390598875,9,5,9,9_1,9_1,9_0_0 +11855,2,29.0,0.0,6,111,737.0,0.0,0.0,34,37,0.0,39.72981831030672,1256.732800465209,767.0,0.0,0.0,12,2,2,2,2,1,2,2,2,2,50.0,2,,4,111866,2,2,0,0,1,,0.0,977.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1205.96755538651,737.0,63514.66240244487,1,1,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.012075951772208049,42343.10826829658,9,5,9,9_0,9_4,9_0_0 +11856,2,63.0,0.0,2,111,240.0,0.0,0.0,0,74,0.0,0.0,409.2481304092947,240.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,111867,2,3,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1461.55997535111,240.0,55474.49144580426,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004326312756457943,55474.49144580426,10,5,10,10_0,10_4,10_0_1 +11857,2,50.0,0.0,7,111,540.0,,,0,55,0.0,0.0,,666.0,174.58424239996165,,60,0,0,0,0,0,0,0,0,3,45.0,1,,5,111868,2,1,0,0,1,,300.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,108.27804147317482,540.0,18307.762911648537,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03637801096802763,18307.762911648537,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11858,2,34.0,0.0,1,111,1500.0,2520.0,0.0,37,37,0.0,0.0,2557.8008150580918,4020.0,0.0,4784.230200808268,20,0,0,0,0,0,0,0,0,2,35.0,1,,1,111869,2,1,2,0,1,,600.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,669.058007532943,1500.0,101638.95947112923,1,1,1,2,270.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03955176264020973,42349.56644630385,9,5,9,9_1,9_3,9_1_0 +11860,2,39.0,0.0,7,111,1200.0,,,0,43,0.0,0.0,,1200.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,2,,5,111871,2,1,0,0,1,,600.0,990.0,32,1.0,0.0,3.0,3.0,1.8,2,1,173.9325543670062,1200.0,47892.86305334128,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02505592531946743,26607.146140745153,7,4,7,7_0,7_2,7_0_0 +11861,0,70.0,0.0,7,111,780.0,,,77,78,0.0,0.0,,918.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,111872,2,2,0,0,2,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,43.39829937321188,780.0,10854.64575487579,6,5,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08457208284182322,7236.430503250526,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11862,2,55.0,0.0,2,111,470.0,0.0,0.0,85,64,0.0,1324.327277010224,801.4442553848687,1530.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,111873,2,1,2,0,1,,320.0,,42,2.0,4.0,5.0,4.0,2.3,3,3,1625.13480134766,470.0,23952.79446076529,6,1,0,1,107.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06387563682835179,10414.2584612023,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +11863,2,26.0,0.0,2,111,0.0,0.0,1100.0,0,33,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,41,0,0,0,0,0,0,0,0,3,20.0,1,,2,111874,2,1,2,0,1,,159.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1231.29296226549,0.0,39525.91954961736,0,1,1,2,95.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027829839571958767,39525.91954961736,9,5,9,9_1,9_3,9_0_1 +11864,2,19.0,0.0,9,211,1200.0,,,0,81,0.0,0.0,,1350.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,111875,1,3,0,0,2,,0.0,,32,1.0,0.0,2.0,3.0,1.6,1,1,78.84640262696637,1200.0,4879.334335474739,0,4,0,1,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2766770848607263,3049.583959671712,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11865,2,46.0,0.0,7,112,1200.0,0.0,0.0,42,42,0.0,370.8116375628627,2046.2406520464733,1536.0,77.59299662220518,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,111876,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,4.0,2.3,3,2,62.7857205847081,1200.0,55412.75135434726,1,1,0,1,150.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027719251660646826,24092.500588846637,6,3,6,6_1,6_0,6_0_0 +11866,2,85.0,0.0,9,111,840.0,0.0,0.0,0,75,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2005.0,6,111877,2,1,0,0,1,,171.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1452.92040521534,840.0,34141.7036051811,0,5,0,1,72.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02460334169946129,34141.7036051811,9,5,9,9_0,9_2,9_0_0 +11867,1,69.0,191.0,1,111,1136.0,0.0,0.0,72,72,0.0,0.0,1937.1078172706616,1136.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111878,2,1,2,0,1,,264.0,480.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1039.07251867221,1136.0,14034.07737154396,5,5,2,3,49.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08094582706971515,9356.051581029307,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +11868,2,54.0,0.0,2,111,120.0,360.0,0.0,0,54,0.0,0.0,204.62406520464734,480.0,0.0,683.461457258324,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,111879,2,1,0,1,1,,0.0,409.0,22,2.0,0.0,3.0,2.0,1.5,2,2,327.381627776665,120.0,39505.750497853754,0,1,2,3,60.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01215012989124399,26337.16699856917,7,4,7,7_0,7_2,7_0_1 +11869,0,63.0,0.0,1,111,600.0,,,0,11,0.0,0.0,,622.0,30.482962958723462,,70,0,0,0,0,0,0,0,0,1,30.0,1,,1,111880,2,1,0,0,2,,120.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,119.85410614845819,600.0,4873.127589236246,0,1,5,0,110.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12763876763125848,4873.127589236246,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +11870,2,69.0,0.0,2,300,700.0,0.0,0.0,75,75,0.0,1324.327277010224,1193.6403803604428,1820.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111881,2,2,2,0,1,,100.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,1537.85487589014,700.0,58284.22108306267,5,5,0,1,84.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031226290172193617,29142.110541531336,8,4,8,8_1,8_0,8_0_1 +11871,2,61.0,0.0,6,112,1200.0,,,78,54,0.0,0.0,,1376.0,243.8637036697877,,70,0,0,0,0,0,0,0,0,0,,1,,4,111882,1,1,0,0,2,,120.0,,42,2.0,1.0,4.0,4.0,2.5,4,4,79.00697918652779,1200.0,93322.4059625931,6,1,0,1,139.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014744583423530135,37328.96238503724,9,5,9,9_1,9_2,9_0_0 +11872,1,51.0,75.0,2,300,570.0,0.0,0.0,85,65,2387.8019747468657,0.0,971.9643097220749,2898.0,88.67771042537734,0.0,71,2,2,2,2,1,1,2,2,1,5.0,1,,2,111883,1,3,4,0,1,,177.0,250.0,42,1.0,0.0,4.0,3.0,1.8,2,2,1055.87686728004,570.0,21926.976842601725,6,1,2,3,74.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.13216596254023957,12181.653801445404,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +11873,1,39.0,253.0,7,111,0.0,,,0,63,0.0,0.0,,485.0,29.09737373332694,,71,0,0,0,0,0,0,0,0,3,10.0,1,,5,111884,2,1,0,0,2,,120.0,312.0,12,1.0,0.0,1.0,1.0,1.0,1,1,149.64606471836592,0.0,9470.115229345402,0,1,2,3,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.051213737980411504,9470.115229345402,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +11874,2,72.0,0.0,2,111,720.0,,,77,78,0.0,0.0,,990.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,2,111885,2,1,0,0,2,,600.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,72.29206346397196,720.0,28927.79906126232,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034223135949728194,19285.19937417488,5,3,5,5_1,5_2,5_0_1 +11875,1,38.0,212.0,5,112,400.0,0.0,0.0,85,46,0.0,0.0,682.0802173488245,500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,111886,2,1,0,0,2,,0.0,625.0,42,1.0,1.0,2.0,2.0,1.5,2,2,2508.43106137142,400.0,24541.420012473693,6,1,2,3,30.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.020373719195786736,16360.946674982462,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +11876,2,69.0,0.0,6,211,600.0,,,0,75,0.0,0.0,,600.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,4,111887,2,1,0,0,2,,200.0,630.0,11,0.0,0.0,2.0,1.0,1.0,1,1,58.055861900660496,600.0,44061.489652657096,0,5,2,3,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013617333520266431,44061.489652657096,10,5,10,10_0,10_2,10_0_0 +11877,1,45.0,410.0,2,111,0.0,,,0,56,0.0,0.0,,100.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,2,,2,111888,2,2,0,0,2,,0.0,430.0,32,1.0,0.0,2.0,3.0,1.6,1,1,39.384129140962436,0.0,12972.793722156643,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0077084398427770305,8107.996076347901,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11878,1,79.0,175.0,6,111,1500.0,0.0,0.0,0,77,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,4,111889,1,1,0,0,2,,280.0,300.0,11,0.0,8.0,3.0,1.0,1.0,1,1,3423.37736410479,1500.0,13397.25080385852,0,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.11196326932746437,13397.25080385852,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11879,2,56.0,0.0,2,111,424.0,,,0,52,0.0,0.0,,676.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,1,30.0,1,,2,111890,2,2,0,0,2,,600.0,487.0,12,1.0,2.0,3.0,1.0,1.0,1,1,91.26542804704101,424.0,27349.33103447672,0,1,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024717240767162845,27349.33103447672,7,4,7,7_1,7_2,7_0_1 +11880,2,39.0,0.0,9,111,1920.0,0.0,0.0,85,33,0.0,0.0,3273.9850432743574,1920.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,1,2011.0,6,111891,2,1,1,0,1,,480.0,1300.0,42,1.0,0.0,6.0,4.0,2.1,2,2,2401.40908704538,1920.0,48839.311147808534,6,1,2,3,108.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03931259378719047,23256.814832289776,6,3,6,6_1,6_3,6_0_0 +11881,2,39.0,0.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1077.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,20.0,2,2009.0,6,111892,2,1,0,0,1,,0.0,401.0,12,1.0,0.0,2.0,1.0,1.0,1,1,807.192068136936,0.0,29945.467811781906,0,1,2,3,44.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03596537568787819,29945.467811781906,8,4,8,8_0,8_3,8_0_0 +11882,2,39.0,0.0,5,111,600.0,,,67,42,0.0,0.0,,650.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,111893,2,1,0,0,2,,450.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,84.69395428891494,600.0,55861.29410902056,1,1,1,2,76.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011635963870286297,31034.0522827892,8,4,8,8_0,8_2,8_0_0 +11883,1,45.0,317.0,1,112,550.0,0.0,0.0,56,85,0.0,1059.4618216081792,937.8602988546337,1410.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,111894,1,3,4,0,1,,1400.0,298.0,42,1.0,0.0,4.0,3.0,1.8,2,2,81.0515069785417,550.0,11269.560027426136,4,7,2,3,70.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12511579836023387,6260.866681903409,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +11884,2,61.0,0.0,7,112,1230.0,0.0,0.0,0,74,0.0,119.18945493092015,2097.396668347635,1350.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,111895,2,1,2,0,1,,310.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,448.498671577478,1230.0,35029.32316005379,0,5,0,1,100.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038539140303444186,35029.32316005379,9,5,9,9_1,9_1,9_0_0 +11885,2,24.0,0.0,9,111,380.0,0.0,0.0,46,63,0.0,0.0,647.9762064813832,415.0,48.49562288887823,0.0,43,0,0,0,0,0,0,0,0,2,10.0,8,2009.0,6,111896,2,1,0,0,1,,348.0,395.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1762.79648928832,380.0,18300.463242968104,1,1,2,3,42.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02267702158629577,12200.308828645402,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +11886,2,48.0,0.0,8,112,1200.0,,,52,63,0.0,66.2163638505112,,1400.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,70.0,1,2001.0,6,111897,2,1,0,0,2,,800.0,,43,3.0,0.0,5.0,6.0,3.3,5,3,10.711852557126207,1200.0,84124.8229833998,1,1,1,2,86.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016641936949766414,25492.370601030245,7,4,7,7_1,7_0,7_0_0 +11887,1,40.0,70.0,9,400,930.0,0.0,0.0,21,62,0.0,0.0,1585.836505336017,930.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2011.0,6,111898,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,1899.24571104739,930.0,27346.18885914587,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03400839527548877,10517.764945825336,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +11888,2,41.0,0.0,2,112,720.0,750.0,0.0,54,46,0.0,0.0,1227.744391227884,1470.0,0.0,1423.8780359548418,43,0,0,0,0,0,0,0,0,0,,1,,2,111899,2,2,2,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,425.502018695603,720.0,56354.48571584156,1,1,1,2,100.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026084880046856232,31308.047619911977,8,4,8,8_1,8_0,8_0_1 +11889,2,83.0,0.0,1,111,1210.0,0.0,0.0,0,75,6328.0971062196095,0.0,2063.292657480194,7210.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,111900,2,1,2,0,2,,936.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,775.281272767539,1210.0,34857.21305391671,0,5,0,1,200.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20684384574428427,34857.21305391671,9,5,9,9_1,9_4,9_1_0 +11890,2,80.0,0.0,1,111,618.0,244.0,0.0,0,37,0.0,0.0,1053.8139358039339,862.0,0.0,463.2349876973085,10,1,1,2,1,1,2,2,2,0,,2,,1,111901,1,2,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,912.993671563499,618.0,68021.27515609915,0,5,0,1,99.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.012672505742090731,68021.27515609915,10,5,10,10_0,10_4,10_1_0 +11892,1,48.0,100.0,8,111,229.0,727.0,0.0,11,54,0.0,0.0,390.490924432202,956.0,0.0,1380.2124428522266,50,1,2,2,2,1,2,2,2,2,13.0,1,2001.0,6,111903,2,2,5,0,1,,259.0,444.0,43,4.0,0.0,4.0,5.0,3.0,5,4,1248.92775755279,229.0,41322.1560678855,1,1,2,3,90.0,6,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.023135288449843937,13774.0520226285,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +11893,2,57.0,0.0,2,111,208.0,0.0,0.0,0,54,0.0,0.0,354.6817130213887,208.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,111904,2,2,0,1,2,492.0,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2498.07884824753,208.0,23796.0,0,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.00874096486804505,23796.0,6,3,6,6_0,6_3,6_0_1 +11894,2,62.0,0.0,1,222,420.0,0.0,0.0,77,74,2636.7071275915036,0.0,716.1842282162656,3065.0,200.91043768249554,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,111905,2,2,1,0,1,,472.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1077.53011917163,420.0,64040.87342155044,5,5,0,1,80.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047860059306570835,42693.91561436696,9,5,9,9_1,9_0,9_1_0 +11895,2,35.0,0.0,9,212,1000.0,0.0,0.0,52,62,0.0,463.51454695357836,1705.2005433720612,1410.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,111906,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,892.761711183786,1000.0,49312.967624307596,1,1,1,2,120.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028592884750764335,23482.365535384568,6,3,6,6_1,6_0,6_0_0 +11896,2,39.0,0.0,7,112,1500.0,0.0,0.0,55,64,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,111907,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,5.0,3.0,5,2,273.925435165789,1500.0,42530.8737335256,1,1,1,2,100.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03526849717215197,14176.957911175201,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +11897,2,77.0,0.0,1,112,310.0,0.0,0.0,86,72,1956.4366886728958,0.0,528.612168445339,2255.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,111908,1,1,0,0,2,,218.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1564.50414693952,310.0,21657.369532684548,7,5,0,1,165.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10412160149905705,14438.246355123032,3,2,3_0,3_0_0,3_0_0,3_1_0_0 +11898,2,45.0,0.0,7,300,750.0,0.0,0.0,38,37,0.0,0.0,1278.9004075290459,1950.0,1662.707070475825,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,5,111909,2,1,2,0,1,,140.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,1159.12611465208,750.0,64178.0066970108,1,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03038424065125763,30560.955570005142,8,4,8,8_1,8_0,8_0_0 +11899,2,68.0,0.0,7,111,252.0,,,78,77,0.0,0.0,,390.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,1,,5,111910,2,1,0,0,2,,171.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,117.9950316759091,252.0,31253.03471900468,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0124787881723001,20835.356479336453,5,3,5,5_1,5_2,5_0_0 +11900,2,65.0,0.0,9,112,980.0,0.0,0.0,77,74,0.0,0.0,1671.09653250462,980.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,111911,2,1,1,0,1,,290.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,3983.53129123175,980.0,53019.582290762686,5,5,1,2,113.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018483736718739485,35346.38819384179,9,5,9,9_1,9_1,9_0_0 +11901,1,56.0,140.0,9,111,1200.0,,,64,68,0.0,0.0,,1300.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,111912,2,1,0,0,1,,960.0,766.0,43,2.0,2.0,2.0,2.0,1.5,2,2,174.68579683636602,1200.0,23729.57919502222,4,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05478394662273246,15819.719463348147,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +11902,2,91.0,0.0,5,111,982.0,0.0,0.0,0,86,0.0,0.0,1674.506933591364,982.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,111913,2,1,0,0,1,,0.0,791.0,11,0.0,2.0,4.0,1.0,1.0,1,1,2168.84089632595,982.0,34479.48201215333,0,5,2,3,94.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02848070628363456,34479.48201215333,9,5,9,9_0,9_3,9_0_0 +11903,1,53.0,26.0,5,111,600.0,600.0,0.0,56,63,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,3,111914,2,1,0,1,1,,0.0,517.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,454.988004162316,600.0,22988.877322034874,2,1,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05219915627849291,8841.875893090337,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11904,1,49.0,112.0,2,111,344.0,265.0,0.0,68,56,0.0,165.540909626278,586.588986919989,734.0,0.0,503.1035727040441,60,0,0,0,0,0,0,0,0,0,,2,,2,111915,2,1,0,1,1,486.0,0.0,333.0,43,2.0,2.0,4.0,2.0,1.5,2,2,517.739424623984,344.0,16251.56442364323,1,4,2,3,66.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.045164882645522805,10834.37628242882,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +11905,0,23.0,0.0,1,112,0.0,0.0,0.0,0,69,0.0,0.0,0.0,924.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,3.0,1,,1,111916,2,1,4,0,1,,236.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,2255.24658879141,0.0,21747.46178009596,0,1,5,0,240.0,7,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04248771692730033,21747.46178009596,6,3,6,6_1,6_0,6_1_0 +11906,2,40.0,0.0,8,120,0.0,,,75,43,0.0,0.0,,176.0,243.8637036697877,,33,0,0,0,0,0,0,0,0,0,,1,2000.0,6,111917,2,1,0,0,2,,402.0,,42,1.0,2.0,9.0,4.0,2.3,3,2,220.54540972058524,0.0,56207.77010176035,5,1,0,1,170.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00313123967880889,24438.16091380885,7,4,7,7_1,7_1,7_0_0 +11907,2,49.0,0.0,2,111,576.0,96.0,0.0,0,21,0.0,0.0,982.1955129823073,672.0,0.0,182.25638860221974,71,2,2,1,1,2,2,2,2,2,60.0,2,,2,111918,1,1,0,1,2,,116.0,460.0,12,1.0,3.0,2.0,1.0,1.0,1,1,2329.47254923945,576.0,13305.175577206399,0,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.050506661569444354,13305.175577206399,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +11908,1,27.0,101.0,9,111,700.0,,,55,52,0.0,0.0,,840.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,111919,2,1,0,0,2,,400.0,633.0,43,2.0,0.0,3.0,2.0,1.5,2,2,148.91580928699804,700.0,27578.794704770193,4,1,2,3,69.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030458183868880558,18385.86313651346,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +11909,2,45.0,0.0,9,111,600.0,,,37,37,0.0,0.0,,784.0,254.94841747295985,,10,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,111920,2,1,0,0,2,,350.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,210.75581173906343,600.0,88620.48051596907,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008846713484686264,49233.60028664948,10,5,10,10_1,10_2,10_0_0 +11910,1,38.0,356.0,8,111,135.0,0.0,0.0,0,55,0.0,0.0,230.20207335522826,1517.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,2001.0,6,111921,2,1,0,1,1,,220.0,407.0,32,1.0,0.0,3.0,3.0,1.6,1,1,903.16765199291,135.0,10859.386351824507,0,4,2,3,67.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13969481799909678,6787.116469890317,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11911,2,44.0,0.0,9,111,678.0,0.0,0.0,34,31,0.0,0.0,1156.1259684062575,768.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,111922,2,1,1,0,1,,440.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,1985.61465647983,678.0,172202.49887962465,1,1,1,2,140.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00445986559426677,86101.24943981232,10,5,10,10_1,10_2,10_0_0 +11912,1,24.0,189.0,1,111,700.0,240.0,0.0,0,53,0.0,0.0,1193.6403803604428,940.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,2,,1,111923,2,2,0,1,1,516.0,0.0,237.0,22,4.0,0.0,2.0,11.0,4.999999999999999,6,5,404.607870026766,700.0,25581.81501503599,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03674485174126639,5116.363003007199,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +11913,2,37.0,0.0,9,111,0.0,,,63,43,0.0,0.0,,348.0,0.0,,33,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,111924,2,1,0,0,2,,413.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,239.04863208655777,0.0,44443.41767730299,1,1,1,2,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007830180894880226,21163.532227287138,5,3,5,5_1,5_2,5_0_0 +11914,2,28.0,0.0,6,111,600.0,,,85,56,0.0,0.0,,642.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,111925,1,2,0,0,2,,350.0,450.0,42,1.0,0.0,5.0,3.0,1.8,2,2,125.05721953789612,600.0,29430.03525093897,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02181444889637082,16350.019583854983,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +11915,2,61.0,0.0,1,112,2500.0,0.0,0.0,75,74,0.0,0.0,4263.001358430153,2680.0,249.40606057137379,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,111926,2,1,2,0,1,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1903.35097010497,2500.0,57656.77220562542,5,5,0,1,141.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04648196382624623,38437.848137083616,9,5,9,9_1,9_1,9_1_0 +11916,1,49.0,267.0,1,111,650.0,0.0,0.0,0,85,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,2,,1,111927,1,2,0,0,2,,0.0,367.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2064.80699714441,650.0,10381.222153585364,0,7,2,3,40.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,1,0.06261305175667678,10381.222153585364,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +11917,2,45.0,0.0,6,111,0.0,,,0,45,0.0,0.0,,737.0,0.0,,20,0,0,0,0,0,0,0,0,2,30.0,2,,4,111928,1,1,0,0,2,,383.0,600.0,32,1.0,0.0,4.0,3.0,1.6,1,1,96.87182311096421,0.0,34894.74691785571,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02112065755154899,21809.216823659815,6,3,6,6_0,6_2,6_0_0 +11918,2,68.0,0.0,5,112,826.0,0.0,0.0,52,77,0.0,238.3789098618403,1408.4956488253226,1036.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,111929,2,2,2,0,1,,335.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,3318.2916858774,826.0,50203.65484772164,1,5,0,1,102.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02063594778392944,33469.10323181443,8,4,8,8_1,8_1,8_0_0 +11919,2,70.0,0.0,7,111,456.0,,,77,90,0.0,0.0,,1008.0,764.8452524188796,,70,0,0,0,0,0,0,0,0,0,,1,,5,111930,2,3,0,0,2,,242.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,81.38787634572822,456.0,32149.005612035442,5,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031354002427454265,21432.670408023627,6,3,6,6_1,6_2,6_0_0 +11920,2,52.0,0.0,7,111,900.0,,,85,63,0.0,132.4327277010224,,1120.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,111931,2,2,0,0,2,,450.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,143.87313610199388,900.0,37190.0,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030115622479161063,24793.333333333332,7,4,7,7_1,7_2,7_0_0 +11921,2,83.0,0.0,2,111,372.0,2400.0,0.0,0,77,0.0,0.0,634.3346021344067,2772.0,0.0,4556.4097150554935,60,0,0,0,0,0,0,0,0,0,,1,,2,111932,2,1,3,0,1,,180.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,632.903119814866,372.0,29568.909885857443,0,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09374711515238592,29568.909885857443,8,4,8,8_1,8_4,8_0_1 +11922,2,25.0,0.0,7,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,297.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,111933,2,2,0,1,1,,0.0,790.0,31,0.0,0.0,1.0,2.0,1.3,1,1,277.91497847939,0.0,18903.483038782757,0,6,3,4,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015711390297262623,14541.140799063658,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +11923,2,80.0,0.0,5,112,680.0,0.0,0.0,0,74,2847.643697798824,0.0,1159.5363694930015,3410.0,41.567676761895626,0.0,44,2,2,1,1,2,2,2,2,0,,1,,3,111934,2,1,2,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,399.88639023125,680.0,44539.77997713809,0,5,0,1,96.0,9,1,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07656077335250254,44539.77997713809,10,5,10,10_1,10_1,10_0_0 +11924,2,58.0,0.0,2,111,550.0,840.0,0.0,78,52,0.0,0.0,937.8602988546337,1510.0,166.2707070475825,1594.7434002694229,31,0,0,0,0,0,0,0,0,3,15.0,2,,2,111935,2,1,0,1,1,,374.0,435.0,42,1.0,2.0,4.0,2.0,1.5,2,2,2097.90270773334,550.0,46808.0,5,1,2,3,71.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03225944283028542,31205.333333333332,8,4,8,8_0,8_2,8_0_1 +11925,2,84.0,0.0,2,111,410.0,,,0,86,0.0,0.0,,499.0,123.31744106029036,,71,0,0,0,0,0,0,0,0,0,,1,,2,111936,2,2,0,0,2,,450.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,97.70930341866648,410.0,10026.0,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049770596449232,10026.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11926,2,41.0,0.0,6,111,450.0,1160.0,0.0,37,45,0.0,0.0,767.3402445174275,1610.0,0.0,2202.2646956101553,10,0,0,0,0,0,0,0,0,2,5.0,1,,4,111937,2,2,3,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,612.124064409163,450.0,143412.2290470959,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011226378745366852,68291.53764147423,10,5,10,10_1,10_4,10_0_0 +11927,2,78.0,0.0,2,111,295.0,0.0,0.0,0,74,0.0,0.0,503.03416029475807,295.0,0.0,0.0,31,2,2,1,2,1,2,2,2,0,,2,,2,111938,1,1,0,1,1,780.0,0.0,287.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1018.6479932529,295.0,21497.843627238573,0,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013722306530605886,21497.843627238573,6,3,6,6_0,6_4,6_0_1 +11928,2,58.0,0.0,1,111,1157.0,352.0,0.0,0,46,0.0,0.0,1972.9170286814747,1509.0,0.0,668.2734248748058,31,0,0,0,0,0,0,0,0,3,50.0,2,,1,111939,2,2,0,0,1,,0.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,857.8971282192,1157.0,26993.710358659086,0,1,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05590191122117973,26993.710358659086,7,4,7,7_0,7_4,7_1_0 +11929,2,89.0,0.0,2,111,286.0,124.0,0.0,0,77,0.0,0.0,487.6873554044095,410.0,0.0,235.41450194453384,41,0,0,0,0,0,0,0,0,0,,2,,2,111940,2,2,0,1,1,500.0,0.0,247.0,21,0.0,1.0,3.0,2.0,1.5,2,2,296.115572697879,286.0,27860.939108362203,0,5,2,3,63.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01471594329269907,18573.959405574802,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +11930,2,55.0,0.0,5,300,780.0,0.0,0.0,47,56,1265.6194212439218,0.0,1330.0564238302077,2070.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,111941,2,2,1,0,1,,200.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1488.81887234422,780.0,32130.92245524528,4,1,0,1,140.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06442392069145461,21420.61497016352,6,3,6,6_1,6_1,6_0_0 +11931,2,44.0,0.0,2,111,1000.0,,,56,22,0.0,0.0,,1042.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,111942,2,2,0,0,2,,400.0,800.0,43,2.0,2.0,2.0,2.0,1.5,2,2,155.8118737342918,1000.0,18018.162818006054,1,1,2,3,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05783053525072491,12012.108545337369,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +11932,2,79.0,0.0,2,211,720.0,0.0,0.0,72,78,0.0,633.028438410887,1227.744391227884,1288.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,111943,1,2,0,1,1,,245.0,274.0,41,0.0,3.0,4.0,2.0,1.5,2,2,355.191249074493,720.0,23027.884025673095,5,5,2,3,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055932190667802896,15351.922683782062,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +11934,0,71.0,0.0,2,111,300.0,,,77,86,0.0,132.4327277010224,,568.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,2,111945,2,1,0,0,2,,350.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,131.10573627993912,300.0,21386.503259029945,6,5,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02655880641732189,14257.668839353297,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +11935,2,63.0,0.0,2,111,600.0,100.0,0.0,74,78,0.0,0.0,1023.1203260232367,700.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,2,,2,111946,2,3,0,1,1,408.0,0.0,500.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1004.72752123239,600.0,43973.728527455474,5,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015918595566963293,29315.81901830365,8,4,8,8_0,8_4,8_0_1 +11936,1,53.0,377.0,6,111,700.0,1250.0,0.0,85,67,0.0,0.0,1193.6403803604428,1950.0,0.0,2373.130059924736,71,0,0,0,0,0,0,0,0,0,,2,,4,111947,1,3,0,0,1,,700.0,364.0,42,3.0,0.0,3.0,4.0,2.5,4,4,407.047296109025,700.0,11511.559825269505,6,4,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16939494122416612,4604.623930107802,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +11937,0,84.0,0.0,5,111,453.0,,,86,78,0.0,0.0,,660.0,286.8169696570798,,71,0,0,0,0,0,0,0,0,0,,1,,3,111948,2,1,0,0,2,,398.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,80.51037019868075,453.0,13547.273153596849,6,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0487182913134639,9031.515435731233,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11938,2,100.0,0.0,2,111,181.0,58.0,0.0,0,75,0.0,0.0,308.64129835034305,239.0,0.0,110.11323478050777,70,0,0,0,0,0,0,0,0,0,,2,,2,111949,2,2,0,1,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1278.23192509195,181.0,33128.08980372451,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007214421399362719,33128.08980372451,8,4,8,8_0,8_4,8_0_1 +11939,2,42.0,0.0,7,111,1400.0,0.0,0.0,0,62,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,111950,2,1,1,0,1,,300.0,830.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1517.05942444198,1400.0,28047.43487207192,0,1,2,3,89.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049915438127785525,15581.908262262177,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +11940,2,78.0,0.0,1,111,880.0,0.0,0.0,0,77,0.0,0.0,1500.5764781674138,880.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,1,111951,2,1,0,0,2,,0.0,510.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1067.60909098159,880.0,19941.560677401634,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,1,0,0.044128943277606254,19941.560677401634,5,3,5,5_0,5_4,5_1_0 +11941,2,58.0,0.0,6,111,1600.0,0.0,0.0,0,47,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,111952,2,2,3,0,1,,370.0,532.0,32,1.0,5.0,4.0,2.0,1.5,2,1,317.216938455004,1600.0,16658.165616124297,0,1,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09604899103964229,11105.443744082864,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +11942,2,60.0,0.0,7,212,380.0,0.0,0.0,0,34,1792.9608467622227,291.3520009422493,647.9762064813832,2300.0,0.0,0.0,10,2,2,2,1,1,2,2,2,2,12.0,1,,5,111953,2,1,2,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1406.34361388122,380.0,93171.5187898698,0,1,0,1,170.0,3,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.024685655336232112,93171.5187898698,10,5,10,10_1,10_0,10_0_0 +11943,1,58.0,270.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,928.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,111954,1,1,0,0,2,,119.0,300.0,31,0.0,4.0,1.0,2.0,1.5,2,2,718.293541029016,0.0,8360.749183454349,0,7,2,3,45.0,7,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11099483785932508,5573.832788969566,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +11944,2,58.0,0.0,6,112,1050.0,0.0,0.0,56,64,0.0,595.9472746546007,1790.4605705406643,1580.0,110.84713803172167,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,111955,2,2,1,0,1,,150.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,2053.61891968134,1050.0,56129.035896655885,1,1,0,1,120.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02814942346255648,28064.517948327943,8,4,8,8_1,8_1,8_0_0 +11945,1,48.0,42.0,2,111,300.0,120.0,0.0,0,63,0.0,0.0,511.56016301161833,420.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,111956,2,1,0,1,1,192.0,0.0,328.0,12,1.0,4.0,2.0,1.0,1.0,1,1,866.863061327875,300.0,13951.7117643968,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030103832926923906,13951.7117643968,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +11946,2,75.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,261.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,111957,2,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1735.50778328152,0.0,36514.216349246104,0,5,0,1,83.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0071479009025860905,36514.216349246104,9,5,9,9_0,9_3,9_0_1 +11947,2,62.0,0.0,2,111,363.0,775.0,0.0,72,74,0.0,0.0,618.9877972440582,1138.0,0.0,1471.3406371533365,43,0,0,0,0,0,0,0,0,0,,2,,2,111958,2,1,0,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,709.632729411925,363.0,28983.08269268163,6,5,0,1,110.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039264284343616444,19322.05512845442,5,3,5,5_0,5_2,5_0_1 +11948,1,80.0,250.0,7,300,0.0,,,0,72,0.0,0.0,,356.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,111959,2,1,0,0,2,,277.0,650.0,11,0.0,3.0,4.0,1.0,1.0,1,1,105.73765399009407,0.0,3445.7624479545993,0,5,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10331530550265332,3445.7624479545993,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +11949,2,55.0,0.0,9,112,1890.0,0.0,0.0,43,45,0.0,0.0,3222.8290269731956,2020.0,180.1265993015477,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,111960,2,1,1,0,1,,450.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,1383.70296328543,1890.0,69458.63411259264,1,1,1,2,148.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029082057627646037,27783.453645037058,7,4,7,7_1,7_0,7_0_0 +11950,2,37.0,0.0,5,112,408.0,1176.0,0.0,0,47,0.0,0.0,695.7218216958009,1584.0,0.0,2232.640760377192,31,0,0,0,0,0,0,0,0,0,,2,,3,111961,2,1,0,0,1,,303.0,281.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1888.09200711467,408.0,29794.62733874465,0,4,2,3,65.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.053163947378532285,22918.944106726653,6,3,6,6_0,6_2,6_0_0 +11951,1,38.0,120.0,7,111,391.0,391.0,0.0,85,63,0.0,0.0,666.7334124584759,782.0,0.0,742.3150827444575,71,1,2,2,1,2,2,2,2,2,15.0,2,,5,111962,2,2,0,1,1,,0.0,327.0,42,1.0,0.0,3.0,5.0,2.4,2,2,565.443086835532,391.0,26682.242475799132,6,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.029307881476201867,11117.601031582972,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +11953,2,48.0,0.0,7,112,2050.0,0.0,0.0,33,64,0.0,0.0,3495.6611139127253,2130.0,110.84713803172167,0.0,50,2,2,2,2,1,2,2,1,0,,1,,5,111964,2,1,3,0,1,,530.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,4,2,1268.59285976053,2050.0,69981.1960780327,1,1,1,2,160.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.030436747574661888,22574.579380010553,6,3,6,6_1,6_0,6_0_0 +11954,2,52.0,0.0,2,221,1040.0,2857.0,0.0,54,48,0.0,0.0,1773.4085651069436,3897.0,0.0,5424.026064963977,43,0,0,0,0,0,0,0,0,1,12.0,1,,2,111965,2,1,1,0,1,,173.0,,43,4.0,0.0,8.0,4.0,2.5,4,4,1955.03792420842,1040.0,80377.31382037884,1,1,1,2,180.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04848382976207343,32150.925528151536,8,4,8,8_1,8_1,8_0_1 +11955,2,73.0,0.0,6,112,789.0,0.0,0.0,77,78,0.0,874.0560028267478,1345.4032287205562,1569.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,111966,2,1,1,0,1,,330.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1656.57748753677,789.0,37733.9373454109,5,5,0,1,90.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04158060648793698,25155.958230273933,7,4,7,7_1,7_0,7_0_0 +11957,1,75.0,108.0,5,111,150.0,0.0,0.0,0,78,0.0,0.0,255.78008150580916,170.0,27.711784507930417,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,111968,2,1,0,1,1,,100.0,310.0,11,0.0,0.0,3.0,1.0,1.0,1,1,268.156031165787,150.0,17220.83883230495,0,5,2,3,60.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009871760699664249,17220.83883230495,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +11959,2,88.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2964.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,111970,2,3,2,0,2,,310.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,905.018687495789,0.0,35340.72644934032,0,5,0,1,150.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08386924372504875,35340.72644934032,9,5,9,9_1,9_3,9_0_1 +11960,2,50.0,0.0,2,111,0.0,0.0,0.0,52,21,0.0,0.0,0.0,1754.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,111971,2,1,1,0,2,,435.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,1067.80919830677,0.0,45941.23009581959,1,1,1,2,96.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03817921279734311,18376.492038327837,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +11961,2,60.0,0.0,9,111,332.0,1383.0,0.0,0,43,0.0,0.0,566.1265803995243,1715.0,0.0,2625.6310983007284,31,2,2,2,2,1,2,2,2,3,20.0,2,2009.0,6,111972,1,2,0,0,1,,164.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,2611.17122594968,332.0,49533.493058695996,0,1,0,1,99.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.034623037748776696,49533.493058695996,10,5,10,10_0,10_3,10_0_0 +11962,0,88.0,0.0,2,111,410.0,0.0,0.0,0,86,0.0,0.0,699.1322227825451,847.0,0.0,0.0,71,2,1,1,2,1,2,2,2,0,,2,,2,111973,2,3,0,1,1,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,484.878329180912,410.0,22276.214723531088,0,7,5,0,60.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03802261786897244,22276.214723531088,6,3,6,6_0,6_2,6_0_1 +11963,1,45.0,169.0,2,111,306.0,90.0,0.0,0,55,0.0,0.0,521.7913662718507,396.0,0.0,170.865364314581,41,2,1,2,2,1,2,2,2,3,45.0,2,,2,111974,1,2,0,1,1,742.0,0.0,314.0,32,1.0,0.0,4.0,2.0,1.5,2,2,273.762492101266,306.0,17034.506564355812,0,1,2,3,77.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.02324693107510481,11356.337709570542,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +11964,2,69.0,0.0,2,111,800.0,,,77,78,0.0,0.0,,1052.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,111975,2,2,0,0,2,,800.0,,41,1.0,6.0,4.0,3.0,2.0,3,3,107.4892842788284,800.0,25488.697162756733,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04127319624390801,12744.348581378366,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +11965,2,47.0,0.0,9,111,1295.0,0.0,0.0,33,34,0.0,370.8116375628627,2208.2347036668193,1575.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,111976,2,1,1,0,1,,503.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1030.81010716495,1295.0,72438.24926908394,1,1,1,2,147.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021742656895936293,34494.404413849494,9,5,9,9_1,9_2,9_0_0 +11966,2,44.0,0.0,7,400,400.0,,,22,42,0.0,0.0,,694.0,407.36323226657714,,20,0,0,0,0,0,0,0,0,1,1.0,1,,5,111977,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,123.92179000188538,400.0,58779.61703219988,1,1,1,2,81.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01180681390999574,24491.507096749952,7,4,7,7_1,7_1,7_0_0 +11967,2,57.0,0.0,1,112,595.0,2000.0,0.0,75,37,0.0,0.0,1014.5943233063764,2595.0,0.0,3797.008095879578,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,111978,1,2,3,0,1,,180.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,708.432929251015,595.0,87397.91893942063,6,1,0,1,170.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029691782498833974,58265.27929294709,10,5,10,10_1,10_0,10_1_0 +11968,2,33.0,0.0,2,112,1100.0,1500.0,0.0,43,65,0.0,0.0,1875.7205977092674,2600.0,0.0,2847.7560719096837,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,111979,1,3,4,0,2,,320.0,680.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1197.38442961844,1100.0,39242.1643887447,1,1,2,3,124.0,8,0,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0662552649808919,21801.2024381915,6,3,6,6_1,6_0,6_0_1 +11969,1,64.0,327.0,2,111,350.0,100.0,0.0,78,78,0.0,0.0,596.8201901802214,450.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,111980,2,1,0,1,1,598.0,229.0,335.0,41,0.0,3.0,5.0,2.0,1.5,2,2,244.107774623135,350.0,5078.920713202639,7,5,2,3,72.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08860150126585485,3385.9471421350922,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11970,2,26.0,0.0,2,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,877.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,8.0,1,,2,111981,2,1,3,0,1,,190.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2056.95531521895,0.0,19418.436714973966,0,1,1,2,55.0,7,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045163264832937186,19418.436714973966,5,3,5,5_1,5_0,5_0_1 +11971,2,58.0,0.0,8,111,1000.0,,,0,22,0.0,0.0,,1300.0,415.67676761895626,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,111982,2,2,0,0,2,,350.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,28.815147542524585,1000.0,19679.117338003503,0,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0660598734014098,19679.117338003503,5,3,5,5_1,5_2,5_0_0 +11972,1,52.0,329.0,5,111,1150.0,,,0,85,0.0,0.0,,1300.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,3,111983,2,2,0,0,2,,250.0,315.0,31,0.0,0.0,3.0,3.0,1.6,1,1,128.01266256899873,1150.0,10996.08503968751,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11822389471416309,6872.553149804694,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +11973,2,54.0,0.0,7,112,800.0,0.0,0.0,85,63,0.0,794.5963662061343,1364.160434697649,1600.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,111984,2,2,3,0,1,,500.0,,42,1.0,5.0,5.0,5.0,3.0,5,3,1045.49665622415,800.0,21186.11335368118,6,4,0,1,122.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07552116677984227,7062.037784560393,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +11974,2,80.0,0.0,6,211,720.0,,,0,86,0.0,0.0,,720.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,111985,2,1,0,0,2,,410.0,,21,1.0,7.0,5.0,4.0,2.5,4,4,112.87704417358611,720.0,12108.732730622776,0,6,0,1,140.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05946121828084721,4843.49309224911,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +11975,1,36.0,450.0,7,112,830.0,0.0,0.0,85,53,2636.7071275915036,0.0,1415.3164509988108,6957.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,,5,111986,2,2,4,0,1,,250.0,840.0,42,2.0,0.0,7.0,6.0,3.3,5,4,895.682243961738,830.0,28380.38867129712,6,1,2,3,240.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2451340635456502,8600.117779180946,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +11977,2,59.0,0.0,6,112,1066.0,0.0,0.0,78,46,0.0,397.2981831030672,1817.7437792346173,1436.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,111988,2,1,2,0,1,,305.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,276.714219061887,1066.0,44807.05405230658,5,1,0,1,154.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03204852517917494,29871.369368204385,8,4,8,8_1,8_0,8_0_0 +11978,1,48.0,284.0,1,111,1512.0,420.0,0.0,0,52,0.0,0.0,2578.2632215785566,1932.0,0.0,797.3717001347114,50,2,2,2,2,1,2,2,2,3,45.0,2,,1,111989,2,1,0,1,1,,0.0,523.0,32,1.0,0.0,4.0,4.0,2.5,3,3,604.915574039672,1512.0,17224.0,0,1,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.1121690664189503,6889.6,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +11979,2,38.0,0.0,5,111,200.0,360.0,0.0,85,67,0.0,0.0,341.04010867441224,560.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,111990,1,2,0,1,1,456.0,350.0,249.0,42,1.0,0.0,3.0,4.0,2.1,2,2,366.189369686356,200.0,20816.0,6,1,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026902382782475018,9912.380952380952,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +11980,1,56.0,270.0,2,111,320.0,250.0,0.0,0,85,0.0,0.0,545.6641738790596,570.0,0.0,474.62601198494724,71,1,2,2,2,1,2,2,2,0,,2,,2,111991,2,1,0,1,1,804.0,0.0,389.0,31,1.0,0.0,4.0,4.0,2.5,4,4,210.559072492141,320.0,19843.783825366165,0,6,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02872436048569392,7937.513530146466,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +11981,2,78.0,0.0,1,111,512.0,1340.0,0.0,0,74,0.0,0.0,873.0626782064953,1852.0,0.0,2543.9954242393173,71,0,0,0,0,0,0,0,0,0,,2,,1,111992,2,3,0,0,1,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1117.22097880814,512.0,29983.204625732233,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06176791384102331,29983.204625732233,8,4,8,8_0,8_4,8_1_0 +11982,1,48.0,180.0,6,111,550.0,1150.0,0.0,0,52,0.0,0.0,937.8602988546337,1700.0,0.0,2183.2796551307574,71,0,0,0,0,0,0,0,0,1,12.0,1,,4,111993,1,2,3,0,1,,700.0,259.0,32,2.0,4.0,5.0,2.0,1.5,2,2,450.937949915091,550.0,13486.09967845659,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12605571963224252,8990.73311897106,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +11983,1,45.0,70.0,8,111,240.0,,,0,52,0.0,0.0,,263.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,111994,2,1,0,0,2,,120.0,495.0,22,1.0,0.0,3.0,2.0,1.5,2,2,105.47825271516228,240.0,21184.0,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012415030211480363,14122.666666666666,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +11984,2,26.0,0.0,8,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,282.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,25.0,2,2000.0,6,111995,2,1,0,0,1,,314.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1769.69579624262,0.0,20538.549773033203,0,1,2,3,43.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013730278092480591,20538.549773033203,5,3,5,5_0,5_3,5_0_0 +11985,2,74.0,0.0,2,111,398.0,,,77,78,0.0,0.0,,698.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,8,,2,111996,2,2,0,0,2,,400.0,178.0,41,3.0,1.0,4.0,5.0,3.0,5,5,76.0386657482265,398.0,19704.434924204706,5,5,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03542349743521874,6568.1449747349025,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +11986,2,43.0,0.0,1,111,500.0,700.0,0.0,0,46,0.0,0.0,852.6002716860306,1200.0,0.0,1328.9528335578523,30,0,0,0,0,0,0,0,0,0,,1,,1,111997,2,1,1,0,1,,300.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,360.981762923449,500.0,22393.97065882993,0,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053585852115370196,17226.13127602302,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +11987,2,62.0,0.0,1,111,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,111998,2,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1059.19212642778,600.0,24290.688562355368,0,5,0,1,17.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024700823052412495,24290.688562355368,7,4,7,7_0,7_4,7_1_0 +11988,1,64.0,140.0,2,111,188.0,624.0,0.0,0,68,0.0,0.0,320.5777021539475,812.0,0.0,1184.6665259144283,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,111999,2,1,0,0,1,,0.0,550.0,12,1.0,1.0,3.0,1.0,1.0,1,1,456.152694846594,188.0,5264.071008872197,0,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15425323834565205,5264.071008872197,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +11989,2,30.0,0.0,2,111,0.0,0.0,0.0,55,35,0.0,0.0,0.0,651.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,2,112000,2,1,0,1,1,696.0,0.0,740.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1050.6424156985,0.0,25581.820710401127,1,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025447758678697745,17054.54714026742,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +11990,2,88.0,0.0,7,112,402.0,815.0,0.0,86,78,0.0,0.0,685.4906184355685,1217.0,0.0,1547.280799070928,50,0,0,0,0,0,0,0,0,0,,2,,5,112001,2,1,0,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,2114.41858709277,402.0,29238.509420940918,6,5,0,1,72.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04162318887324578,19492.339613960612,5,3,5,5_0,5_1,5_0_0 +11991,2,47.0,0.0,8,111,696.0,1703.0,0.0,37,43,0.0,0.0,1186.8195781869547,2399.0,0.0,3233.1523936414605,10,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,112002,2,1,1,0,1,,350.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,1420.04880554557,696.0,93449.21509525756,1,1,1,2,180.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025671697697563074,33374.7196768777,8,4,8,8_1,8_2,8_0_0 +11992,2,53.0,0.0,9,300,727.0,0.0,0.0,47,22,0.0,1324.327277010224,1239.6807950314885,1727.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,112003,2,1,1,0,1,,450.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,928.938040685901,727.0,28683.62429077522,4,1,1,2,169.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06020856996636268,19122.416193850146,5,3,5,5_1,5_0,5_0_0 +11993,2,59.0,0.0,2,112,700.0,0.0,0.0,0,54,0.0,132.4327277010224,1193.6403803604428,2410.0,2230.798652888399,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112004,2,2,2,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1406.05255202683,700.0,13913.591962831832,0,4,0,1,107.0,6,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1732119215827207,13913.591962831832,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +11994,2,74.0,0.0,6,111,1884.0,0.0,0.0,75,75,0.0,211.89236432163582,3212.5978237129634,2044.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,112005,2,1,2,0,1,,365.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1008.81045407251,1884.0,60150.46784748098,5,5,0,1,90.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033981448077558055,40100.31189832065,9,5,9,9_1,9_2,9_0_0 +11995,2,75.0,0.0,1,112,600.0,0.0,0.0,0,86,0.0,0.0,1023.1203260232367,670.0,96.99124577775646,0.0,20,2,2,2,2,1,2,2,2,0,,1,,1,112006,2,2,2,0,1,,400.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1459.32153571538,600.0,25959.995997319278,0,5,0,1,115.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.025808940805275418,25959.995997319278,7,4,7,7_1,7_0,7_1_0 +11996,1,36.0,316.0,5,111,150.0,250.0,0.0,81,67,0.0,0.0,255.78008150580916,400.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,1,10.0,2,,3,112007,1,1,0,1,1,291.0,0.0,322.0,43,2.0,0.0,1.0,2.0,1.5,2,2,200.762822611439,150.0,9343.54120872093,4,1,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04281032116887912,6229.0274724806195,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +11997,2,56.0,0.0,5,111,1200.0,1900.0,0.0,56,21,0.0,66.2163638505112,2046.2406520464733,3150.0,0.0,3607.1576910855993,50,0,0,0,0,0,0,0,0,2,60.0,1,,3,112008,2,2,2,0,1,,800.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1010.60105948277,1200.0,71128.9874325508,1,1,0,1,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044285742194587516,28451.59497302032,8,4,8,8_1,8_4,8_0_0 +11998,2,59.0,0.0,6,112,540.0,,,0,52,0.0,0.0,,714.0,241.09252521899464,,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,112009,2,3,0,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,107.25294367961686,540.0,35253.431639600036,0,1,0,1,110.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02025334745562661,35253.431639600036,9,5,9,9_1,9_1,9_0_0 +11999,2,47.0,0.0,6,111,650.0,1550.0,0.0,22,38,0.0,0.0,1108.3803531918397,2200.0,0.0,2942.681274306673,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,112010,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,1081.24364504143,650.0,44870.30435822337,4,1,0,1,140.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049030200072552134,22435.152179111687,6,3,6,6_1,6_2,6_0_0 +12000,2,47.0,0.0,5,111,1540.0,0.0,0.0,67,37,0.0,0.0,2626.0088367929743,1540.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,112011,2,1,2,0,1,,150.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,991.03354773034,1540.0,68065.87468920296,1,4,1,2,155.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02262514082176754,34032.93734460148,9,5,9,9_1,9_3,9_0_0 +12001,2,64.0,0.0,1,111,600.0,500.0,0.0,74,74,0.0,0.0,1023.1203260232367,1100.0,0.0,949.2520239698945,10,0,0,0,0,0,0,0,0,0,,2,,1,112012,2,1,0,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,790.69116181697,600.0,231457.36540811765,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004752495121770797,154304.91027207844,10,5,10,10_0,10_4,10_1_0 +12002,0,77.0,0.0,2,111,250.0,450.0,0.0,0,78,0.0,0.0,426.3001358430153,700.0,0.0,854.326821572905,71,0,0,0,0,0,0,0,0,0,,1,,2,112013,2,1,1,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,700.76971553124,250.0,26267.855093912513,0,5,5,0,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026648540487884093,26267.855093912513,7,4,7,7_1,7_4,7_0_1 +12003,2,40.0,0.0,1,111,660.0,1314.0,0.0,54,35,0.0,0.0,1125.4323586255605,1974.0,0.0,2494.6343189928825,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,112014,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,306.587435347159,660.0,54127.52484714698,1,1,1,2,88.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03646943039746344,30070.847137303877,8,4,8,8_0,8_3,8_1_0 +12004,2,38.0,0.0,9,112,975.0,0.0,0.0,63,38,0.0,0.0,1662.5705297877596,975.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,112015,2,1,1,0,1,,418.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,4483.26328481058,975.0,35458.518345141754,1,1,1,2,130.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0274969188083288,14774.382643809065,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12005,2,57.0,0.0,1,111,500.0,0.0,0.0,0,78,0.0,927.0290939071567,852.6002716860306,1270.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112016,2,1,2,0,1,,310.0,,21,1.0,3.0,7.0,2.0,1.5,2,2,670.666569170356,500.0,29339.456754333274,0,7,0,1,90.0,8,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043286418376251225,19559.637836222184,5,3,5,5_1,5_2,5_1_0 +12006,2,61.0,0.0,1,112,1220.0,0.0,0.0,0,56,0.0,0.0,2080.344662913915,1290.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,1,112017,2,2,3,0,1,,230.0,435.0,11,0.0,3.0,3.0,1.0,1.0,1,1,965.421162882721,1220.0,23642.124278779414,0,5,2,3,65.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.054563624858273506,23642.124278779414,6,3,6,6_1,6_0,6_1_0 +12007,1,39.0,97.0,2,111,0.0,0.0,570.0,56,43,0.0,0.0,359.28142553640396,570.0,0.0,682.1373241118681,44,2,2,2,2,1,2,2,2,0,,2,,2,112018,2,3,0,1,1,,0.0,483.0,43,2.0,0.0,4.0,4.0,2.3,3,2,395.629889770425,0.0,19696.17018360831,1,4,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02893963621792675,8563.552253742744,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12008,2,57.0,0.0,7,111,0.0,0.0,1000.0,0,45,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,42,0,0,0,0,0,0,0,0,3,20.0,1,,5,112019,1,1,2,0,1,,250.0,735.0,22,1.0,0.0,3.0,2.0,1.5,2,2,1192.39922188368,0.0,43182.797951065266,0,1,2,3,66.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023157369310186887,28788.531967376843,8,4,8,8_1,8_3,8_0_0 +12009,2,55.0,0.0,6,400,470.0,900.0,0.0,78,52,0.0,397.2981831030672,801.4442553848687,1670.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,112020,2,1,2,0,1,,520.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1513.07358807107,470.0,57080.0464261464,7,1,0,1,120.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02925715910481514,38053.3642840976,9,5,9,9_1,9_0,9_0_0 +12010,2,46.0,0.0,2,111,350.0,0.0,0.0,0,46,0.0,0.0,596.8201901802214,350.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,112021,2,2,0,1,1,300.0,0.0,478.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1439.90934821315,350.0,13515.015305202098,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.025897121985890805,13515.015305202098,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +12011,2,54.0,0.0,1,112,1319.0,0.0,0.0,0,45,0.0,0.0,2249.1595167077485,1379.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,1,112022,2,2,0,0,1,,0.0,733.0,32,1.0,0.0,4.0,3.0,2.0,3,3,712.413487873843,1319.0,50261.11732262882,0,1,2,3,96.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027436715963716538,25130.55866131441,7,4,7,7_0,7_2,7_1_0 +12012,2,57.0,0.0,1,300,1959.0,0.0,0.0,78,52,0.0,0.0,3340.487864465868,2159.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,112023,2,2,3,0,1,,490.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,857.447998404132,1959.0,27661.73488132917,5,1,0,1,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07805005757094648,18441.156587552778,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +12014,2,68.0,0.0,2,211,0.0,0.0,2024.0,78,77,0.0,0.0,1275.7642197994414,2024.0,0.0,2422.185866670914,50,2,2,2,2,1,2,2,2,0,,1,,2,112025,2,2,3,0,2,,272.0,563.0,41,0.0,4.0,4.0,2.0,1.5,2,2,2596.163842087,0.0,34923.0758823328,5,5,2,3,98.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05795594886371161,23282.050588221868,6,3,6,6_1,6_1,6_0_1 +12015,2,73.0,0.0,2,111,400.0,0.0,0.0,77,78,2109.365702073203,0.0,682.0802173488245,2400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,112026,2,1,2,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1683.63856960129,400.0,24748.99560874235,5,5,0,1,150.0,4,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09697363230175784,16499.330405828234,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +12016,2,49.0,0.0,2,111,432.0,432.0,0.0,0,55,0.0,0.0,736.6466347367304,864.0,0.0,820.1537487099888,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,112027,2,1,0,1,1,,0.0,292.0,22,3.0,0.0,4.0,3.0,2.0,3,3,359.452662030021,432.0,13898.680865401842,0,1,2,3,70.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06216417287130938,6949.340432700921,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +12017,1,90.0,159.0,6,111,171.0,619.0,0.0,0,77,0.0,0.0,291.58929291662247,790.0,0.0,1175.1740056747294,71,0,0,0,0,0,0,0,0,0,,2,,4,112028,2,1,0,0,1,,0.0,354.0,11,0.0,1.0,2.0,1.0,1.0,1,1,615.407767263116,171.0,12171.63510820471,0,5,2,3,57.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0649050019144489,12171.63510820471,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +12018,2,62.0,0.0,2,111,350.0,,,0,52,0.0,0.0,,350.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,112029,2,3,0,0,1,,300.0,,22,2.0,3.0,3.0,2.0,1.5,2,2,25.87410294407039,350.0,48714.107957757,0,1,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007184776950108715,32476.071971838,8,4,8,8_1,8_2,8_0_1 +12019,2,33.0,0.0,6,112,846.0,0.0,0.0,54,55,0.0,132.4327277010224,1442.5996596927637,974.0,38.79649831110259,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,4,112030,1,2,3,0,2,,228.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,774.164577126442,846.0,53628.59255489954,1,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018161953420704025,35752.39503659969,9,5,9,9_1,9_0,9_0_0 +12020,2,59.0,0.0,1,111,433.0,1680.0,0.0,77,21,0.0,0.0,738.3518352801025,2113.0,0.0,3189.4868005388457,70,2,2,2,2,1,2,2,2,0,,1,,1,112031,2,1,3,0,1,,194.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,220.627200799665,433.0,11920.851796546705,6,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.1772524343111207,7947.234531031137,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +12021,1,49.0,189.0,9,120,553.0,540.0,0.0,75,67,0.0,0.0,942.9759004847498,1093.0,0.0,1025.192185887486,60,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,112032,2,1,1,0,1,,400.0,457.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1069.80152428575,553.0,67970.70124108963,7,1,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01608045790381312,32367.00059099506,8,4,8,8_1,8_0,8_0_0 +12022,1,27.0,330.0,6,111,320.0,750.0,0.0,0,55,0.0,0.0,545.6641738790596,1070.0,0.0,1423.8780359548418,50,0,0,0,0,0,0,0,0,0,,2,,4,112033,1,3,0,0,1,,320.0,308.0,32,1.0,0.0,2.0,2.0,1.3,1,1,140.90965409167,320.0,8348.585740027194,0,4,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12816542026632102,6421.98903079015,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +12023,2,66.0,0.0,1,111,340.0,720.0,0.0,78,78,0.0,0.0,579.7681847465008,1060.0,0.0,1366.922914516648,71,0,0,0,0,0,0,0,0,0,,1,,1,112034,2,1,1,0,1,,250.0,278.0,41,0.0,6.0,3.0,2.0,1.5,2,2,317.421299487107,340.0,22411.01075505864,5,5,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04729817907747581,14940.67383670576,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +12024,2,51.0,0.0,8,111,597.0,1593.0,0.0,43,43,0.0,0.0,1018.0047243931206,2190.0,0.0,3024.316948368084,10,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,112035,2,2,3,0,1,,344.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,845.423027047529,597.0,69895.1975594187,1,1,1,2,140.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031332624793545455,29122.998983091125,8,4,8,8_1,8_1,8_0_0 +12025,2,54.0,0.0,8,111,880.0,,,37,54,0.0,0.0,,1132.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,112036,2,3,0,0,2,,300.0,,43,4.0,0.0,4.0,6.0,3.3,5,5,81.94290212958164,880.0,54076.04204146112,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020933484723827868,16386.679406503372,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +12026,2,33.0,0.0,2,111,400.0,700.0,0.0,55,48,0.0,0.0,682.0802173488245,1100.0,0.0,1328.9528335578523,42,0,0,0,0,0,0,0,0,0,,2,,2,112037,2,2,0,0,1,,600.0,360.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1378.74424447067,400.0,38002.99958251985,1,1,2,3,58.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02894508360087356,21112.77754584436,5,3,5,5_0,5_3,5_0_1 +12027,2,62.0,0.0,6,211,360.0,,,0,77,0.0,0.0,,504.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,4,112038,1,2,0,0,2,,480.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,88.0154342563898,360.0,10538.319546662806,0,5,0,1,87.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04782546190294665,10538.319546662806,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12028,2,71.0,0.0,2,111,700.0,0.0,0.0,74,72,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112039,2,2,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1006.31104103815,700.0,90934.9348959287,5,5,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007697811636431271,60623.28993061913,10,5,10,10_0,10_4,10_0_1 +12029,2,37.0,0.0,7,111,486.0,775.0,0.0,34,38,0.0,0.0,828.7274640788218,1261.0,0.0,1471.3406371533365,10,0,0,0,0,0,0,0,0,2,40.0,2,,5,112040,2,1,0,0,1,,0.0,934.0,43,2.0,0.0,3.0,2.0,1.5,2,2,949.321432406438,486.0,92345.16470367933,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013655289955314332,61563.44313578622,10,5,10,10_0,10_4,10_0_0 +12030,1,55.0,100.0,2,211,0.0,0.0,53.0,56,63,0.0,0.0,33.406869391981424,53.0,0.0,63.426803820928086,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,112041,1,2,0,1,2,,300.0,486.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1985.76285991429,0.0,10417.909324049042,1,1,2,3,65.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.005087393098887227,6945.272882699362,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +12031,2,85.0,0.0,2,111,275.0,88.0,0.0,74,74,0.0,0.0,468.93014942731685,363.0,0.0,167.06835621870144,70,0,0,0,0,0,0,0,0,0,,2,,2,112042,1,2,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1926.01695554964,275.0,76327.94232134715,5,5,0,1,108.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004755794391413554,50885.294880898095,10,5,10,10_0,10_3,10_0_1 +12032,2,71.0,0.0,5,111,489.0,1316.0,0.0,74,74,0.0,0.0,833.843065708938,1805.0,0.0,2498.4313270887624,10,0,0,0,0,0,0,0,0,0,,1,,3,112043,2,1,1,0,1,,433.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,716.023080924173,489.0,76210.4915685926,5,5,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02368440306378847,50806.99437906173,10,5,10,10_1,10_4,10_0_0 +12033,2,45.0,0.0,5,112,800.0,0.0,0.0,63,38,2636.7071275915036,0.0,1364.160434697649,3300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,3,112044,2,2,3,0,1,,35.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1215.62656845328,800.0,64693.56574379537,1,1,0,1,173.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05100970957558475,28127.637279911032,8,4,8,8_1,8_0,8_0_0 +12034,2,62.0,0.0,6,111,200.0,,,0,78,0.0,0.0,,373.0,239.70693599359814,,71,0,0,0,0,0,0,0,0,0,,1,,4,112045,2,2,0,0,2,,200.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,114.70475230557643,200.0,5241.0,0,7,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07116962411753482,5241.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12035,2,39.0,0.0,9,111,774.0,0.0,0.0,34,54,0.0,0.0,1319.8252205699753,774.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,60.0,1,2012.0,6,112046,2,1,1,0,1,,70.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,180.503041458087,774.0,55389.51448112232,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013973763938006574,26375.959276724912,7,4,7,7_1,7_4,7_0_0 +12036,0,72.0,0.0,1,111,2375.0,0.0,0.0,0,77,0.0,225.13563709173806,4049.8512905086454,2731.0,257.7195959237529,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,112047,2,2,2,0,1,,235.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,1292.11499249874,2375.0,36749.383163168015,0,5,0,1,77.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.07431417250935353,24499.588775445343,7,4,7,7_1,7_2,7_1_0 +12037,2,80.0,0.0,5,111,550.0,1100.0,0.0,0,75,0.0,0.0,937.8602988546337,1650.0,0.0,2088.354452733768,41,0,0,0,0,0,0,0,0,0,,2,,3,112048,2,2,0,0,1,,0.0,400.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1030.24005718705,550.0,20048.51639145424,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08230035418996486,20048.51639145424,5,3,5,5_0,5_4,5_0_0 +12038,2,37.0,0.0,9,111,0.0,,,55,38,0.0,0.0,,592.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,112049,1,1,0,0,2,,560.0,800.0,43,2.0,0.0,4.0,3.0,1.8,2,2,90.72189027874329,0.0,58195.340234381416,1,1,3,4,78.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010172635774887185,32330.744574656343,8,4,8,8_1,8_3,8_0_0 +12039,2,40.0,0.0,7,111,840.0,800.0,0.0,85,21,0.0,0.0,1432.3684564325313,1640.0,0.0,1518.8032383518312,71,2,2,2,2,1,1,2,2,0,,1,,5,112050,2,2,3,0,1,,540.0,360.0,42,1.0,0.0,4.0,5.0,2.4,2,2,566.184715952285,840.0,23648.656103615933,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.0693485495672306,9853.606709839973,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +12040,2,48.0,0.0,7,111,597.0,0.0,0.0,63,54,0.0,0.0,1018.0047243931206,677.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,112051,2,1,2,0,1,,364.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1457.28524157327,597.0,54665.534507257595,1,1,0,1,96.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012384402825332642,36443.68967150506,9,5,9,9_1,9_3,9_0_0 +12041,1,47.0,300.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,819.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,112052,2,1,0,0,1,,0.0,620.0,32,1.0,0.0,4.0,4.0,1.9,1,1,1849.20274758421,0.0,22777.0,0,1,2,3,75.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.035957325372085874,11987.894736842105,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +12042,2,56.0,0.0,7,111,650.0,,,0,48,0.0,0.0,,725.0,103.91919190473907,,41,0,0,0,0,0,0,0,0,0,,2,,5,112053,2,1,0,0,2,,140.0,570.0,12,1.0,0.0,2.0,1.0,1.0,1,1,34.49347882606973,650.0,26420.304474443008,0,4,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02744101608296414,26420.304474443008,7,4,7,7_0,7_2,7_0_0 +12043,2,32.0,0.0,5,111,500.0,0.0,0.0,38,37,0.0,0.0,852.6002716860306,500.0,0.0,0.0,10,1,2,2,2,1,2,2,2,3,40.0,2,,3,112054,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,985.981862458317,500.0,95832.53168750902,1,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.005217434948190677,63888.354458339345,10,5,10,10_0,10_4,10_0_0 +12044,2,47.0,0.0,9,111,1800.0,,,42,11,0.0,0.0,,2258.0,0.0,,31,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,112055,2,1,0,0,2,,300.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,110.70255985764216,1800.0,103920.77978188971,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021728089461406273,41568.31191275588,9,5,9,9_1,9_3,9_0_0 +12045,2,52.0,0.0,5,111,0.0,0.0,0.0,52,46,0.0,0.0,0.0,1019.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,112056,2,2,2,0,1,,600.0,,43,2.0,2.0,4.0,3.0,2.0,3,2,299.601206430413,0.0,59075.51080541278,1,1,0,1,90.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017249110267644682,29537.75540270639,8,4,8,8_1,8_2,8_0_0 +12046,2,69.0,0.0,2,111,312.0,0.0,0.0,77,78,0.0,0.0,532.0225695320831,312.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,112057,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,994.705045448431,312.0,56540.70088603467,5,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005518148786816026,37693.80059068978,9,5,9,9_0,9_4,9_0_1 +12047,1,57.0,223.0,2,111,1000.0,360.0,0.0,85,64,0.0,0.0,1705.2005433720612,1360.0,0.0,683.461457258324,41,2,2,2,1,2,1,2,2,3,60.0,2,,2,112058,1,3,0,1,2,740.0,0.0,489.0,42,1.0,0.0,4.0,5.0,2.8,4,4,312.89586377444,1000.0,14036.791964297243,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.0968882351080772,5013.139987249016,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +12048,2,27.0,0.0,9,111,683.0,1242.0,0.0,21,46,0.0,0.0,1164.6519711231178,1925.0,0.0,2357.942027541218,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,112059,2,1,1,0,1,,150.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1019.20770575628,683.0,37829.378911389904,1,1,1,2,162.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05088637602295947,21016.321617438836,5,3,5,5_1,5_2,5_0_0 +12049,1,50.0,260.0,8,111,400.0,,,85,47,0.0,0.0,,652.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,112060,2,1,0,0,1,,420.0,577.0,42,1.0,2.0,4.0,4.0,2.1,2,2,163.91225788988697,400.0,21231.21572945116,6,1,2,3,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030709499084198445,10110.102728310076,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +12050,1,41.0,353.0,2,111,0.0,0.0,1900.0,0,42,0.0,0.0,1197.6047517880133,1900.0,0.0,2273.7910803728937,71,2,2,1,1,1,2,1,2,3,10.0,2,,2,112061,1,2,0,0,1,,0.0,318.0,32,1.0,0.0,4.0,3.0,1.8,2,2,534.653070290164,0.0,9766.304751437181,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.19454645829277462,5425.724861909545,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +12051,2,57.0,0.0,6,300,1300.0,0.0,0.0,47,52,0.0,0.0,2216.7607063836795,1390.0,124.70303028568689,0.0,44,0,0,0,0,0,0,0,0,2,12.0,1,,4,112062,2,1,2,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,575.324847480814,1300.0,52479.77020242462,1,1,0,1,96.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026486396465504734,34986.513468283076,9,5,9,9_1,9_0,9_0_0 +12052,2,59.0,0.0,9,111,1300.0,0.0,0.0,37,34,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,2009.0,6,112063,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,1079.57290653565,1300.0,69211.53344848148,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01878299663693584,34605.76672424074,9,5,9,9_0,9_4,9_0_0 +12053,2,59.0,0.0,5,112,466.0,0.0,0.0,54,48,3079.6739250268765,0.0,794.6234532113805,3456.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,112064,2,1,2,0,1,,365.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,726.960448108196,466.0,85912.67396445322,1,1,0,1,90.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040226893664489324,57275.11597630215,10,5,10,10_1,10_0,10_0_0 +12054,2,27.0,0.0,2,111,0.0,0.0,0.0,46,64,0.0,0.0,0.0,192.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,18.0,2,,2,112065,2,1,0,1,1,752.0,0.0,600.0,43,2.0,0.0,4.0,3.0,1.8,2,2,246.046526428322,0.0,41830.53436243295,1,1,2,3,73.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004589948537029229,23239.18575690719,6,3,6,6_0,6_4,6_0_1 +12055,2,66.0,0.0,8,111,1560.0,2850.0,0.0,72,72,0.0,0.0,2660.1128476604154,4410.0,0.0,5410.736536628398,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,112066,2,1,1,0,1,,901.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1345.40891407791,1560.0,44170.52434771183,5,5,0,1,220.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09984033617722837,29447.016231807884,8,4,8,8_1,8_3,8_0_0 +12056,2,60.0,0.0,2,111,240.0,240.0,0.0,0,54,0.0,0.0,409.2481304092947,480.0,0.0,455.6409715055494,42,2,1,2,2,1,2,2,2,3,60.0,2,,2,112067,2,1,0,1,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,838.897685729223,240.0,41437.3018138661,0,1,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011583765809755942,41437.3018138661,9,5,9,9_0,9_4,9_0_1 +12057,1,43.0,328.0,8,111,960.0,,,81,22,0.0,0.0,,1212.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,112068,1,2,0,0,2,,468.0,370.0,43,2.0,1.0,3.0,5.0,2.8,4,2,105.61925664330765,960.0,9397.71939136737,4,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12896746003219978,3356.328354059775,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +12058,2,63.0,0.0,7,112,540.0,,,0,77,0.0,0.0,,740.0,277.1178450793042,,60,0,0,0,0,0,0,0,0,0,,1,,5,112069,2,2,0,0,2,,700.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,144.87583701207163,540.0,3826.5719008264464,0,5,0,1,50.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19338458003106593,2551.0479338842974,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12059,2,45.0,0.0,8,111,840.0,,,68,81,0.0,0.0,,1104.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,112070,1,1,0,0,2,,440.0,,43,4.0,1.0,5.0,6.0,3.0999999999999996,4,4,118.01119567809083,840.0,14282.594390712018,4,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07729688107070604,4607.288513132909,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12060,2,56.0,0.0,2,111,765.0,658.0,0.0,55,62,0.0,0.0,1304.4784156796268,1423.0,0.0,1249.2156635443812,50,0,0,0,0,0,0,0,0,3,75.0,2,,2,112071,2,1,0,1,1,625.0,0.0,485.0,43,3.0,0.0,3.0,3.0,2.0,3,3,206.61996600047,765.0,44297.77192370471,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03212351182020785,22148.885961852357,6,3,6,6_0,6_4,6_0_1 +12061,2,40.0,0.0,5,111,560.0,980.0,0.0,85,63,0.0,0.0,954.9123042883542,1540.0,0.0,1860.5339669809932,71,0,0,0,0,0,0,0,0,0,,2,,3,112072,2,1,0,0,1,,280.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,341.326344289231,560.0,12155.408389085074,6,4,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12669257590578692,6753.004660602819,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +12062,2,62.0,0.0,2,111,1080.0,,,78,74,0.0,0.0,,1218.0,191.2113131047199,,41,0,0,0,0,0,0,0,0,0,,1,,2,112073,2,2,0,0,2,,1200.0,,41,1.0,2.0,6.0,4.0,2.5,4,4,90.08533283129113,1080.0,108234.29954582907,5,5,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011253364276490456,43293.71981833163,9,5,9,9_1,9_3,9_0_1 +12063,2,26.0,0.0,9,111,0.0,,,42,42,0.0,0.0,,262.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,2005.0,6,112074,2,1,0,0,1,,0.0,1100.0,43,2.0,0.0,4.0,2.0,1.5,2,2,173.92484289935388,0.0,51289.67200262692,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005108240894708413,34193.11466841795,9,5,9,9_0,9_2,9_0_0 +12064,2,72.0,0.0,1,300,456.0,0.0,0.0,78,78,1054.6828510366015,794.5963662061343,777.5714477776598,2176.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112075,1,3,1,0,2,,220.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1238.10580728782,456.0,25475.258725974916,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08541620807098305,16983.50581731661,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +12065,2,74.0,0.0,2,111,303.0,0.0,0.0,75,75,1582.0242765549024,0.0,516.6757646417345,1903.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,112076,2,2,2,0,1,,421.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,614.965273876548,303.0,65664.8404797292,5,5,0,1,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02898050137786382,43776.560319819466,10,5,10,10_1,10_4,10_0_1 +12066,2,57.0,0.0,5,112,300.0,100.0,0.0,0,42,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,20,0,0,0,0,0,0,0,0,3,60.0,2,,3,112077,2,2,0,1,1,910.0,0.0,375.0,12,1.0,2.0,3.0,1.0,1.0,1,1,496.548874928565,300.0,28370.59452504032,0,1,2,3,40.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014099105312965998,28370.59452504032,8,4,8,8_0,8_2,8_0_0 +12067,2,60.0,0.0,2,111,300.0,0.0,0.0,0,53,316.40485531098045,169.51389145730866,511.56016301161833,758.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,112078,1,1,4,0,1,,126.0,100.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1768.214199207,300.0,28026.313498807038,0,1,2,3,96.0,6,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027046011600215095,28026.313498807038,7,4,7,7_1,7_2,7_0_1 +12068,2,30.0,0.0,1,111,482.0,954.0,0.0,0,47,0.0,0.0,821.9066619053335,1436.0,0.0,1811.1728617345586,31,0,0,0,0,0,0,0,0,2,75.0,2,,1,112079,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,651.083161881243,482.0,26659.44436917393,0,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05386458847808672,26659.44436917393,7,4,7,7_0,7_4,7_1_0 +12069,2,62.0,0.0,1,112,420.0,0.0,0.0,85,77,1582.0242765549024,0.0,716.1842282162656,2040.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112080,2,1,4,0,1,,140.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,808.023241481224,420.0,29763.407136183898,6,5,0,1,178.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06854054008890455,19842.2714241226,5,3,5,5_1,5_0,5_1_0 +12070,2,61.0,0.0,7,400,900.0,,,52,78,0.0,0.0,,1140.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,5,112081,2,2,0,0,1,,1088.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,114.08880614420652,900.0,8080.420912340447,4,5,0,1,95.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1410817595230699,4040.2104561702236,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +12071,2,28.0,0.0,2,111,600.0,100.0,0.0,55,43,0.0,0.0,1023.1203260232367,700.0,0.0,189.8504047939789,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,112082,2,1,0,1,1,,0.0,331.0,43,2.0,0.0,3.0,2.0,1.5,2,2,175.949392964989,600.0,37284.60760050004,1,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01877450361018717,24856.40506700003,7,4,7,7_0,7_4,7_0_1 +12072,1,61.0,320.0,1,111,300.0,300.0,0.0,77,78,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,1,112083,2,1,0,1,1,773.0,0.0,535.0,41,2.0,0.0,4.0,5.0,2.8,4,4,407.384381547995,300.0,8239.63031495988,5,5,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07281880097346594,2942.725112485672,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +12073,1,46.0,368.0,2,111,0.0,0.0,0.0,85,52,0.0,0.0,0.0,893.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,112084,2,1,0,1,1,43.0,0.0,361.0,42,1.0,0.0,4.0,4.0,2.1,2,2,229.199752522908,0.0,16014.260121784711,6,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05576280097918626,7625.838153230815,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +12074,2,38.0,0.0,6,111,450.0,,,0,62,0.0,0.0,,726.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,0,,1,,4,112085,1,1,0,0,2,,720.0,,22,1.0,3.0,4.0,2.0,1.5,2,2,73.1958938609709,450.0,39404.07190365187,0,1,0,1,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018424491808236604,26269.381269101246,7,4,7,7_1,7_3,7_0_0 +12075,2,67.0,0.0,2,111,600.0,1400.0,0.0,42,74,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,12,0,0,0,0,0,0,0,0,0,,1,,2,112086,2,2,2,0,1,,320.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,305.53205132995,600.0,79806.24739142426,1,5,0,1,100.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025060694687104333,53204.16492761617,10,5,10,10_1,10_2,10_0_1 +12076,1,39.0,360.0,2,111,960.0,0.0,0.0,85,85,0.0,33.1081819252556,1636.9925216371787,985.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,112087,2,1,0,1,1,45.0,560.0,305.0,41,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,529.765902344638,960.0,6231.363697092596,6,7,2,3,63.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.1580713384551085,2396.6783450356143,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12077,2,61.0,0.0,7,112,2900.0,0.0,0.0,43,34,0.0,0.0,4945.081575778978,2900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,5,112088,2,1,2,0,1,,177.0,,43,2.0,3.0,10.0,2.0,1.5,2,2,109.824124943383,2900.0,91152.38278006302,1,1,0,1,300.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03181485674375911,60768.25518670868,10,5,10,10_1,10_0,10_0_0 +12078,2,45.0,0.0,9,112,1602.0,0.0,0.0,0,38,0.0,0.0,2731.731270482042,1602.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,112089,2,1,1,0,1,,207.0,,32,1.0,0.0,6.0,4.0,2.1,2,2,817.715230228066,1602.0,67834.62239707238,0,1,1,2,120.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023616258827573858,32302.201141463036,8,4,8,8_1,8_1,8_0_0 +12079,1,31.0,281.0,2,111,780.0,0.0,0.0,63,55,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,112090,1,2,0,0,2,,0.0,950.0,43,2.0,0.0,3.0,4.0,2.1,2,2,366.900911993631,780.0,24242.913279959805,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03217435095330644,11544.244419028479,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +12080,2,47.0,0.0,7,111,800.0,,,0,56,0.0,0.0,,1010.0,290.9737373332694,,50,0,0,0,0,0,0,0,0,0,,1,,5,112091,2,1,0,0,2,,1100.0,,32,1.0,1.0,3.0,3.0,2.0,3,2,87.3399591016204,800.0,17466.771909118084,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05782407907168898,8733.385954559042,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +12081,2,64.0,0.0,7,111,0.0,0.0,1423.0,0,77,0.0,0.0,896.9429272601805,1423.0,0.0,1702.9498459845408,50,0,0,0,0,0,0,0,0,0,,2,,5,112092,2,1,0,0,1,,176.0,577.0,11,0.0,2.0,3.0,1.0,1.0,1,1,470.421959414859,0.0,18187.10962299326,0,5,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07824222922156669,18187.10962299326,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +12082,2,65.0,0.0,1,111,370.0,988.0,0.0,77,74,0.0,0.0,630.9242010476627,1358.0,0.0,1875.7219993645115,50,0,0,0,0,0,0,0,0,0,,1,,1,112093,2,3,2,0,1,,380.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,388.12345248746,370.0,30163.0909493873,5,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045021911125709246,20108.727299591534,5,3,5,5_1,5_3,5_1_0 +12083,2,71.0,0.0,7,120,343.0,,,77,72,0.0,0.0,,472.0,178.7410100761512,,71,0,0,0,0,0,0,0,0,0,,1,,5,112094,2,1,0,0,1,,250.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,91.50767830497422,343.0,9339.883126970271,5,5,0,1,70.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05053596427101227,6226.588751313514,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +12084,2,59.0,0.0,7,111,900.9,,,0,43,0.0,0.0,,985.0,116.38949493330776,,33,0,0,0,0,0,0,0,0,0,,1,,5,112095,2,1,0,0,2,,217.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,111.99991031247436,900.9,61902.29667340428,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01591217213146141,61902.29667340428,10,5,10,10_1,10_3,10_0_0 +12085,2,41.0,0.0,8,111,239.0,0.0,0.0,0,43,0.0,0.0,407.54292986592264,239.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,2000.0,6,112096,2,1,0,1,1,433.0,0.0,340.0,12,1.0,0.0,2.0,1.0,1.0,1,1,641.679549775147,239.0,25870.824949901613,0,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009238205602752105,25870.824949901613,7,4,7,7_0,7_4,7_0_0 +12086,1,28.0,210.0,9,300,1200.0,0.0,0.0,0,54,0.0,0.0,2046.2406520464733,1230.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,2008.0,6,112097,1,1,1,0,1,,170.0,650.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1603.55582613983,1200.0,22153.591505687415,0,1,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05552147152682789,17041.224235144164,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +12087,2,58.0,0.0,5,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,303.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,3,112098,2,1,0,1,1,66.0,0.0,282.0,12,1.0,3.0,2.0,1.0,1.0,1,1,403.873795903024,0.0,25468.20785527032,0,1,2,3,45.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011897185766736155,25468.20785527032,7,4,7,7_0,7_3,7_0_0 +12088,1,41.0,280.0,5,111,1000.0,600.0,0.0,56,62,0.0,0.0,1705.2005433720612,1600.0,0.0,1139.1024287638734,50,2,2,2,2,1,2,2,2,2,15.0,2,,3,112099,2,3,0,0,1,,0.0,715.0,43,2.0,0.0,3.0,4.0,2.1,2,2,533.10300236389,1000.0,16428.516967088482,4,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,1,0,0,1,0.09739162720562704,7823.103317661182,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +12089,2,84.0,0.0,5,111,0.0,,,0,72,0.0,0.0,,1113.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,3,112100,2,1,0,0,2,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,127.5886434819086,0.0,46140.04003990869,0,7,0,1,143.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024122215737942883,46140.04003990869,10,5,10,10_1,10_2,10_0_0 +12090,2,59.0,0.0,2,111,324.0,2484.0,0.0,0,42,0.0,0.0,552.4849760525478,2808.0,0.0,4715.884055082436,41,0,0,0,0,0,0,0,0,2,25.0,1,,2,112101,2,3,3,0,1,,800.0,,32,1.0,2.0,4.0,2.0,1.3,1,1,261.591770300672,324.0,36552.46534789948,0,1,1,2,78.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07682108370185116,28117.281036845754,8,4,8,8_1,8_2,8_0_1 +12091,2,70.0,0.0,2,400,1080.0,0.0,0.0,0,77,0.0,264.8654554020448,1841.6165868418261,1430.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112102,2,1,2,0,1,,110.0,,21,0.0,1.0,4.0,2.0,1.5,2,2,1163.58931531618,1080.0,32334.168387851685,0,5,0,1,84.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044225661932819876,21556.11225856779,6,3,6,6_1,6_0,6_0_1 +12092,2,63.0,0.0,5,111,448.0,1566.0,0.0,77,75,0.0,0.0,763.9298434306834,2014.0,0.0,2973.0573390737095,31,0,0,0,0,0,0,0,0,0,,1,,3,112103,2,2,4,0,1,,522.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,319.343561554658,448.0,26010.55963942518,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07743009100608911,13005.27981971259,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +12093,2,63.0,0.0,2,111,250.0,400.0,0.0,0,77,0.0,0.0,426.3001358430153,650.0,0.0,759.4016191759156,60,0,0,0,0,0,0,0,0,0,,2,,2,112104,2,1,0,0,1,,0.0,500.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1978.47253707063,250.0,22458.04764974076,0,5,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028942854255966596,22458.04764974076,6,3,6,6_0,6_3,6_0_1 +12094,2,60.0,0.0,6,111,739.0,653.0,0.0,75,48,0.0,0.0,1260.143201551953,1392.0,0.0,1239.7231433046823,50,0,0,0,0,0,0,0,0,2,37.0,1,,4,112105,2,1,2,0,1,,454.0,548.0,42,3.0,0.0,3.0,4.0,2.5,4,4,862.326617883292,739.0,81190.79231837472,5,1,2,3,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017144801279208224,32476.316927349886,8,4,8,8_1,8_2,8_0_0 +12095,2,66.0,0.0,8,112,2003.0,0.0,0.0,77,72,0.0,0.0,3415.5166883742386,2003.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,2003.0,6,112106,2,1,2,0,1,,227.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,718.524179501069,2003.0,23514.331048437216,5,5,0,1,115.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08518209579826092,15676.220698958145,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12096,1,44.0,170.0,2,111,0.0,800.0,0.0,56,47,0.0,0.0,0.0,1229.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,2,17.0,2,,2,112107,2,2,0,2,1,,120.0,560.0,43,2.0,0.0,6.0,2.0,1.5,2,2,214.690222729994,0.0,22702.96089157912,1,1,2,3,110.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054133908165954474,15135.307261052747,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +12097,2,63.0,0.0,6,221,650.0,,,43,43,0.0,0.0,,848.0,274.3466666285112,,33,0,0,0,0,0,0,0,0,2,20.0,1,,4,112108,2,2,0,0,2,,240.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,99.81480168937483,650.0,107969.0,1,1,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007854106271244525,71979.33333333333,10,5,10,10_1,10_1,10_0_0 +12098,2,46.0,0.0,1,111,2000.0,0.0,0.0,43,31,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,112109,2,2,1,0,1,,0.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,2804.78245875977,2000.0,127002.30278224137,1,1,1,2,240.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01574774595567143,63501.151391120686,10,5,10,10_1,10_3,10_1_0 +12100,2,61.0,0.0,5,111,2400.0,0.0,0.0,0,86,0.0,0.0,4092.4813040929466,2425.0,34.63973063491302,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,112111,2,1,2,0,1,,149.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1749.42621082363,2400.0,34014.27346745498,0,5,0,1,110.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07129359979775113,34014.27346745498,9,5,9,9_1,9_2,9_0_0 +12101,0,52.0,0.0,2,111,350.0,0.0,0.0,0,56,0.0,0.0,596.8201901802214,350.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,112112,2,2,3,0,1,,450.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1173.75925136287,350.0,15562.157816076116,0,1,0,1,100.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.022490454353215776,15562.157816076116,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +12102,2,44.0,0.0,2,111,0.0,,,56,63,0.0,0.0,,570.0,0.0,,60,0,0,0,0,0,0,0,0,1,10.0,1,,2,112113,2,1,0,0,2,,1040.0,416.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,144.37918671210932,0.0,19786.0,1,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02880824825634287,7610.000000000001,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +12104,2,40.0,0.0,1,300,1440.0,0.0,0.0,52,63,0.0,52.973091080408956,2455.488782455768,1480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,112115,2,1,2,0,1,,224.0,,43,3.0,0.0,7.0,6.0,2.9,3,2,1114.95409153792,1440.0,49813.42784916403,1,1,1,2,112.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029710864397476663,17177.04408591863,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +12105,1,27.0,357.0,9,111,0.0,,,0,90,0.0,0.0,,700.0,349.1684847999233,,41,0,0,0,0,0,0,0,0,0,,1,2009.0,6,112116,1,2,0,0,2,,336.0,471.0,22,2.0,0.0,4.0,4.0,2.5,4,3,179.27319887896567,0.0,24802.553615273133,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028222900385908162,9921.021446109253,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +12106,1,42.0,212.0,2,111,308.0,396.0,0.0,56,55,0.0,0.0,525.2017673585948,704.0,0.0,751.8076029841565,71,2,2,2,1,1,2,1,2,1,15.0,2,,2,112117,1,1,0,1,1,474.0,0.0,330.0,43,2.0,0.0,4.0,4.0,2.1,2,2,175.405837819609,308.0,37638.999050104525,4,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.018704004297851937,17923.332881002156,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +12107,1,45.0,15.0,9,112,720.0,,,63,63,0.0,0.0,,858.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,112118,2,2,0,0,1,,680.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,4,3,111.19297240574735,720.0,43755.15993023962,1,1,1,2,104.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01960911584754665,14114.567719432138,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +12108,2,37.0,0.0,2,111,770.0,1370.0,0.0,43,47,0.0,0.0,1313.0044183964872,2140.0,0.0,2600.950545677511,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,112119,2,1,3,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,681.13880422407,770.0,59675.57476616584,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035860567885360566,28416.940364840873,8,4,8,8_1,8_4,8_0_1 +12109,1,41.0,125.0,2,111,600.0,0.0,0.0,65,54,0.0,0.0,1023.1203260232367,640.0,55.423569015860835,0.0,42,0,0,0,0,0,0,0,0,2,5.0,2,,2,112120,2,1,0,1,1,468.0,0.0,753.0,43,2.0,0.0,3.0,4.0,2.5,4,2,450.657187845159,600.0,30903.28312516829,4,1,2,3,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02070977369646432,12361.313250067316,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +12110,2,65.0,0.0,6,111,2000.0,0.0,0.0,72,72,0.0,0.0,3410.4010867441225,2150.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112121,2,1,1,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,980.963610625269,2000.0,21894.55891357687,5,5,0,1,95.0,6,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09819791339421684,14596.372609051248,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +12112,2,57.0,0.0,1,111,650.0,0.0,0.0,52,43,1265.6194212439218,662.163638505112,1108.3803531918397,2350.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,1,112123,2,1,1,0,1,,278.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,971.531058257707,650.0,66364.78569555756,1,1,0,1,120.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03541034564295004,44243.19046370504,10,5,10,10_1,10_2,10_1_0 +12113,1,81.0,250.0,2,111,175.0,80.0,0.0,0,86,0.0,0.0,298.4100950901107,255.0,0.0,151.8803238351831,71,0,0,0,0,0,0,0,0,0,,2,,2,112124,2,1,0,3,1,670.0,222.0,237.0,11,0.0,9.0,3.0,1.0,1.0,1,1,307.232424436158,175.0,10032.955381791042,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025416239811332487,10032.955381791042,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +12114,1,44.0,399.0,2,111,550.0,280.0,0.0,85,23,0.0,0.0,937.8602988546337,830.0,0.0,531.581133423141,50,2,2,1,2,1,2,2,2,2,15.0,2,,2,112125,2,2,0,1,1,336.0,0.0,444.0,42,1.0,0.0,3.0,5.0,2.4,2,2,187.903354940141,550.0,13525.393456277505,6,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0613660521361598,5635.580606782294,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +12115,2,60.0,0.0,1,111,1870.0,2542.0,0.0,37,35,0.0,0.0,3188.7250161057545,4412.0,0.0,4825.997289862944,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,112126,1,2,2,0,2,,439.0,,43,2.0,0.0,11.0,3.0,2.0,3,3,1206.34369863545,1870.0,130837.50381350901,1,1,1,2,280.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03372121808658703,65418.75190675451,10,5,10,10_1,10_3,10_1_0 +12116,2,67.0,0.0,2,120,455.0,0.0,0.0,0,75,0.0,0.0,775.8662472342878,615.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112127,2,2,1,0,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,565.4695317174,455.0,34523.32647701944,0,5,0,1,92.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01781404235218691,34523.32647701944,9,5,9,9_1,9_0,9_0_1 +12117,2,66.0,0.0,2,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2788.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112128,2,1,2,0,1,,125.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,413.766919245689,0.0,10022.3599722059,0,5,0,1,80.0,10,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2781779947768496,10022.3599722059,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +12118,2,35.0,0.0,2,111,400.0,0.0,0.0,37,43,0.0,0.0,682.0802173488245,493.0,0.0,0.0,33,1,2,2,2,1,2,2,2,1,15.0,2,,2,112129,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,878.611639894432,400.0,102308.71145465071,4,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0048187489900948155,68205.8076364338,10,5,10,10_0,10_4,10_0_1 +12119,2,52.0,0.0,2,300,0.0,0.0,2244.0,43,42,0.0,0.0,1414.434243690685,2244.0,0.0,2685.466939135144,71,2,2,2,2,2,2,2,1,2,40.0,1,,2,112130,1,2,2,0,2,,489.0,,43,2.0,3.0,4.0,3.0,2.0,3,3,238.092676585519,0.0,68320.96067649059,1,1,1,2,100.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.032844971408198684,34160.480338245296,9,5,9,9_1,9_0,9_0_1 +12120,2,30.0,0.0,1,112,0.0,0.0,0.0,54,65,0.0,0.0,0.0,400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,112131,2,1,0,0,1,,0.0,500.0,43,2.0,0.0,3.0,2.0,1.5,2,2,4302.89356486816,0.0,24517.83769275714,1,4,2,3,60.0,10,1,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016314652418070487,16345.22512850476,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +12121,2,27.0,0.0,9,111,770.0,0.0,0.0,0,43,0.0,0.0,1313.0044183964872,770.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,30.0,2,2006.0,6,112132,2,1,0,0,1,,0.0,1003.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1693.49934798246,770.0,41835.08504177766,0,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018405603794782704,27890.05669451844,7,4,7,7_0,7_4,7_0_0 +12122,2,53.0,0.0,2,111,520.0,680.0,0.0,56,52,0.0,0.0,886.7042825534718,1200.0,0.0,1290.9827525990565,42,2,2,2,2,1,2,2,2,3,90.0,2,,2,112133,1,3,0,1,1,843.0,0.0,450.0,43,4.0,0.0,3.0,4.0,2.5,4,4,793.512994208128,520.0,45583.617364255406,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.026325247301259274,18233.446945702162,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +12123,2,51.0,0.0,6,111,972.0,,,0,85,0.0,0.0,,1260.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,,4,112134,2,3,0,0,2,,661.0,,31,1.0,2.0,5.0,3.0,2.0,3,2,82.73986573978867,972.0,9126.296813983092,0,7,0,1,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1380625707975505,4563.148406991546,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +12124,2,72.0,0.0,2,112,482.0,0.0,0.0,77,74,1943.7804944604566,0.0,821.9066619053335,2325.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,112135,2,2,2,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,210.999662378316,482.0,49067.83886902353,5,5,0,1,100.0,6,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04738337888094293,32711.89257934902,8,4,8,8_1,8_0,8_0_1 +12125,2,56.0,0.0,7,112,1500.0,0.0,0.0,56,48,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,112136,2,1,2,0,1,,400.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,446.88861194918,1500.0,32841.486215473975,4,1,0,1,95.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047500895354272134,16420.743107736987,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +12126,2,59.0,0.0,2,112,1141.0,0.0,0.0,86,52,0.0,0.0,1945.6338199875217,1291.0,207.83838380947813,0.0,70,2,2,2,2,1,2,2,2,2,30.0,1,,2,112137,2,2,3,0,1,,404.0,300.0,42,1.0,1.0,3.0,2.0,1.5,2,2,2056.3122276333,1141.0,23071.82302532267,6,1,2,3,70.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.05595569966807792,15381.215350215112,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +12127,2,48.0,0.0,9,111,410.0,,,62,52,0.0,132.4327277010224,,636.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,112138,2,1,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,139.90200088536412,410.0,36337.0,4,1,1,2,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0175028208162479,12977.5,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12128,2,64.0,0.0,6,112,1450.0,0.0,0.0,77,74,0.0,0.0,2472.540787889489,1587.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112139,2,1,2,0,1,,198.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,795.349749862581,1450.0,49375.62678564099,5,5,0,1,120.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032141364136799536,32917.08452376066,8,4,8,8_1,8_0,8_0_0 +12129,2,83.0,0.0,1,111,360.0,185.0,0.0,0,77,0.0,0.0,613.872195613942,545.0,0.0,351.223248868861,71,0,0,0,0,0,0,0,0,0,,1,,1,112140,1,2,4,0,2,,90.0,263.0,11,0.0,0.0,2.0,1.0,1.0,1,1,786.140902057118,360.0,12713.077494060748,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0428692423415661,12713.077494060748,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +12130,2,46.0,0.0,1,112,0.0,0.0,756.0,0,47,0.0,0.0,476.5206275535463,791.0,48.49562288887823,904.7295035588987,50,0,0,0,0,0,0,0,0,0,,2,,1,112141,2,1,0,0,1,,350.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,998.691588725647,0.0,20993.290840159076,0,1,1,2,50.0,7,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03767870440240165,20993.290840159076,5,3,5,5_0,5_1,5_1_0 +12131,2,33.0,0.0,7,111,350.0,350.0,0.0,54,22,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,112142,1,1,0,0,1,,0.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1515.03443888727,350.0,43811.0737614439,1,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015977695589283584,29207.382507629267,8,4,8,8_0,8_3,8_0_0 +12132,2,53.0,0.0,9,112,1633.0,0.0,0.0,77,48,0.0,0.0,2784.592487326576,1753.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,112143,1,2,1,0,1,,700.0,,42,1.0,2.0,7.0,3.0,2.0,3,2,2977.24477268815,1633.0,45802.88365947214,6,1,1,2,103.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03827269944471008,22901.44182973607,6,3,6,6_1,6_1,6_0_0 +12133,2,44.0,0.0,6,111,470.0,0.0,0.0,56,53,506.24776849756876,26.486545540204478,801.4442553848687,970.0,0.0,0.0,43,2,1,2,1,1,2,2,2,0,,2,,4,112144,1,2,0,1,1,542.0,0.0,339.0,43,2.0,1.0,3.0,3.0,2.0,3,2,2275.67075248838,470.0,43061.57480210624,1,1,2,3,70.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.022525883097813577,21530.78740105312,6,3,6,6_0,6_3,6_0_0 +12134,2,61.0,0.0,5,111,250.0,0.0,0.0,0,38,0.0,0.0,426.3001358430153,250.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,112145,2,1,0,1,1,,0.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,993.505578325819,250.0,36827.16140572534,0,1,0,1,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0067884678171566525,24551.440937150226,7,4,7,7_0,7_4,7_0_0 +12135,2,65.0,0.0,5,222,480.0,0.0,0.0,0,74,2425.7705573841836,0.0,818.4962608185893,2855.0,103.91919190473907,0.0,20,2,2,2,2,1,2,2,2,0,,1,,3,112146,1,3,3,0,2,,201.0,,11,0.0,2.0,9.0,1.0,1.0,1,1,1515.23522313178,480.0,42218.323527895314,0,5,0,1,200.0,1,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.06762466534497961,42218.323527895314,9,5,9,9_1,9_0,9_0_0 +12136,1,36.0,187.0,9,111,1200.0,0.0,0.0,85,65,0.0,317.83854648245375,2046.2406520464733,1440.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,112147,2,1,1,0,1,,820.0,,42,1.0,3.0,5.0,7.0,3.1999999999999993,3,2,592.985545255285,1200.0,36138.97941352166,6,1,1,2,100.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03984617228734505,11293.431066725521,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +12137,2,82.0,0.0,2,112,350.0,,,0,71,0.0,0.0,,550.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,2,112148,2,3,0,0,2,,500.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,99.56194567044426,350.0,7414.0,0,5,0,1,50.0,8,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07418397626112759,7414.0,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +12138,1,27.0,300.0,6,111,444.0,382.0,0.0,54,22,0.0,0.0,757.1090412571951,826.0,0.0,725.2285463129994,20,0,0,0,0,0,0,0,0,2,30.0,2,,4,112149,2,2,0,0,1,,228.0,700.0,43,2.0,0.0,5.0,2.0,1.5,2,2,2165.0248119922,444.0,43634.284039257036,1,1,2,3,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.018930068825166506,29089.522692838025,8,4,8,8_0,8_3,8_0_0 +12139,2,75.0,0.0,1,300,500.0,0.0,0.0,77,75,1582.0242765549024,317.83854648245375,852.6002716860306,2330.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112150,2,2,3,0,1,,340.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,1120.21349554504,500.0,56601.4621418142,5,5,0,1,127.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041165014327054245,28300.7310709071,8,4,8,8_1,8_0,8_1_0 +12140,2,40.0,0.0,2,111,1000.0,1000.0,0.0,55,63,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,3,60.0,2,,2,112151,2,1,0,0,1,,0.0,340.0,43,2.0,0.0,4.0,5.0,2.4,2,2,318.371819705551,1000.0,15509.705236438316,1,1,2,3,96.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12895151580967662,6462.377181849299,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +12141,2,60.0,0.0,7,111,500.0,2200.0,0.0,54,31,0.0,158.91927324122688,852.6002716860306,2820.0,0.0,4176.708905467536,20,1,2,2,2,1,2,2,2,0,,1,,5,112152,2,1,2,0,2,,420.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,695.216666101179,500.0,14757.021290461695,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.19109547546853015,9838.01419364113,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +12142,2,41.0,0.0,5,111,492.0,901.0,0.0,0,63,0.0,0.0,838.958667339054,1393.0,0.0,1710.55214719375,50,0,0,0,0,0,0,0,0,0,,2,,3,112153,2,1,0,0,1,,310.0,361.0,22,1.0,4.0,3.0,2.0,1.5,2,2,1629.49104135016,492.0,15266.0,0,1,2,3,65.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0912485261365125,10177.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +12143,2,73.0,0.0,1,111,1080.0,0.0,0.0,77,78,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,112154,2,1,0,0,1,820.0,0.0,325.0,41,1.0,0.0,2.0,3.0,2.0,3,3,1002.57000067554,1080.0,40429.87083123214,5,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026712922346655094,20214.93541561607,5,3,5,5_0,5_4,5_1_0 +12144,1,24.0,444.0,9,111,0.0,,,0,85,0.0,0.0,,840.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,2011.0,6,112155,2,3,0,0,2,,282.0,479.0,31,0.0,0.0,3.0,4.0,1.9,1,1,189.43424737875515,0.0,3536.2121732692094,0,6,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.23754230765611115,1861.1643017206366,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12145,1,31.0,650.0,7,111,0.0,,,0,81,0.0,0.0,,439.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,112156,2,2,0,0,2,,0.0,930.0,32,1.0,0.0,4.0,7.0,2.8,1,1,92.23247871910645,0.0,28890.48731663615,0,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015195313086574642,10318.03118451291,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12146,2,34.0,0.0,9,112,520.0,1500.0,0.0,37,53,0.0,198.6490915515336,886.7042825534718,2170.0,0.0,2847.7560719096837,43,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,112157,2,2,1,0,1,,194.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,5270.49953807199,520.0,48670.57523238296,1,1,0,1,130.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044585460304076924,23176.464396372838,6,3,6,6_1,6_0,6_0_0 +12147,2,54.0,0.0,7,111,2370.0,0.0,0.0,38,43,0.0,0.0,4041.325287791785,2370.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,2,,5,112158,2,1,0,0,1,,0.0,,43,2.0,0.0,7.0,4.0,2.5,4,4,1036.70618714776,2370.0,206102.9856179965,1,1,0,1,145.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011499105618938963,82441.19424719861,10,5,10,10_0,10_4,10_0_0 +12149,1,49.0,310.0,8,111,420.0,,,0,56,0.0,0.0,,696.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,112160,2,1,0,0,2,,700.0,370.0,32,1.0,0.0,3.0,3.0,1.8,2,2,109.23283071036428,420.0,23247.48441410393,0,1,2,3,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02993872315826767,12915.269118946626,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12150,2,83.0,0.0,7,111,440.0,80.0,0.0,74,77,0.0,0.0,750.2882390837069,520.0,0.0,151.8803238351831,70,0,0,0,0,0,0,0,0,0,,2,,5,112161,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1547.039998483,440.0,46946.64817666241,5,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011076403112810438,31297.765451108276,8,4,8,8_0,8_3,8_0_0 +12151,0,77.0,0.0,2,112,350.0,0.0,0.0,77,74,0.0,0.0,596.8201901802214,700.0,484.95622888878233,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,112162,2,1,2,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,754.419260514728,350.0,29728.36779385352,5,5,0,1,115.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023546533225572118,19818.911862569013,5,3,5,5_1,5_2,5_0_1 +12152,2,54.0,0.0,6,111,1600.0,0.0,0.0,77,63,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,4,112163,2,1,2,0,1,,1200.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,852.198657853697,1600.0,34987.19818308442,7,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04573101257286634,23324.79878872295,6,3,6,6_1,6_4,6_0_0 +12153,2,38.0,0.0,8,111,660.0,,,63,52,0.0,0.0,,910.0,346.39730634913025,,42,2,2,2,2,1,2,2,2,2,30.0,1,2001.0,6,112164,2,3,0,0,1,,350.0,,43,2.0,1.0,4.0,5.0,2.4,2,2,109.05462404339767,660.0,62947.679386944095,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.01445645032291281,26228.19974456004,7,4,7,7_1,7_2,7_0_0 +12154,2,50.0,0.0,2,111,800.0,0.0,0.0,0,63,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,112165,1,2,0,0,1,,110.0,420.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2151.1243728523,800.0,17295.28097749571,0,1,2,3,65.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.046255391921122574,17295.28097749571,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +12155,1,33.0,85.0,7,111,286.0,736.0,0.0,0,55,0.0,0.0,487.6873554044095,1022.0,0.0,1397.2989792836847,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,112166,2,2,2,0,1,,150.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,599.072601516322,286.0,19720.1069244908,0,1,1,2,57.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05182527680571334,15169.313018839075,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +12156,2,45.0,0.0,5,112,650.0,850.0,0.0,0,37,0.0,198.6490915515336,1108.3803531918397,1650.0,0.0,1613.7284407488207,20,0,0,0,0,0,0,0,0,2,25.0,1,,3,112167,2,2,3,0,1,,537.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,976.909903399571,650.0,77005.64094735627,0,1,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02142700170664117,77005.64094735627,10,5,10,10_1,10_1,10_0_0 +12157,2,64.0,0.0,2,111,1800.0,0.0,0.0,0,43,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,13.0,2,,2,112168,1,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,194.951464829074,1800.0,35114.66424712619,0,1,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05126063536681298,35114.66424712619,9,5,9,9_0,9_3,9_0_1 +12158,2,37.0,0.0,8,111,0.0,,,0,34,0.0,0.0,,360.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,112169,2,2,0,0,1,,164.0,750.0,12,1.0,0.0,3.0,1.0,1.0,1,1,143.38112942384194,0.0,17098.60746423236,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021054346136260765,17098.60746423236,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +12159,0,55.0,0.0,9,111,1160.0,0.0,0.0,0,37,0.0,0.0,1978.032630311591,1160.0,0.0,0.0,41,2,1,2,2,2,2,2,1,2,3.0,1,2012.0,6,112170,2,1,1,0,1,,160.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,4545.28337615107,1160.0,34605.0,0,1,5,0,100.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03352116746134952,34605.0,9,5,9,9_1,9_2,9_0_0 +12160,2,85.0,0.0,2,111,150.0,150.0,0.0,0,78,582.1849337722041,0.0,255.78008150580916,852.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,2,,2,112171,2,1,0,1,1,46.0,0.0,280.0,11,0.0,0.0,3.0,1.0,1.0,1,1,584.109983384993,150.0,20494.7456912341,0,5,2,3,70.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041571630740673826,20494.7456912341,5,3,5,5_0,5_3,5_0_1 +12161,0,82.0,0.0,5,211,1100.0,0.0,0.0,71,71,0.0,105.94618216081791,1875.7205977092674,1367.0,259.1051851491494,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,112172,2,1,2,0,1,,180.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,995.200370528154,1100.0,31765.388519681743,5,5,0,1,100.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043034260360234874,21176.92567978783,5,3,5,5_1,5_1,5_0_0 +12162,2,33.0,0.0,1,112,370.0,0.0,0.0,0,67,791.0121382774512,0.0,630.9242010476627,1190.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,112173,1,1,4,0,2,,410.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1048.5303584591,370.0,15843.7411540235,0,1,1,2,128.0,8,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0751085231973637,15843.7411540235,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +12163,2,63.0,0.0,2,111,420.0,0.0,0.0,37,31,0.0,0.0,716.1842282162656,420.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,112174,2,1,0,1,1,,0.0,,43,2.0,4.0,3.0,2.0,1.5,2,2,743.937739761075,420.0,100681.83154921305,1,1,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004171557008224518,67121.2210328087,10,5,10,10_0,10_4,10_0_1 +12164,0,77.0,0.0,9,211,180.0,,,0,77,0.0,0.0,,268.0,121.93185183489385,,70,0,0,0,0,0,0,0,0,0,,1,2012.0,6,112175,2,1,0,0,2,,80.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,252.76252251361134,180.0,9900.813559322034,0,5,5,0,63.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027068482644809193,9900.813559322034,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12166,1,43.0,111.0,2,111,360.0,960.0,0.0,0,52,0.0,0.0,613.872195613942,1320.0,0.0,1822.5638860221975,31,2,2,1,2,1,2,2,2,2,5.0,1,,2,112177,2,2,3,0,1,,310.0,502.0,32,1.0,0.0,5.0,3.0,2.0,3,1,1102.16082260071,360.0,27470.829235857214,0,1,2,3,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,1,0.04805097030988151,13735.414617928607,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +12167,2,74.0,0.0,2,112,360.0,0.0,0.0,86,78,1582.0242765549024,0.0,613.872195613942,1950.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112178,2,1,2,0,1,,110.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,752.024956518252,360.0,25576.82773620695,5,5,0,1,150.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07624088569981453,17051.218490804633,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +12168,2,43.0,0.0,1,111,1000.0,2500.0,0.0,85,33,0.0,0.0,1705.2005433720612,3500.0,0.0,4746.260119849472,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,112179,1,3,3,0,2,,522.0,480.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,3,2,144.295258809278,1000.0,56682.22692678815,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061747750393093534,19545.59549199592,5,3,5,5_1,5_4,5_1_0 +12169,2,23.0,0.0,5,111,254.0,0.0,0.0,55,63,0.0,0.0,433.12093801650354,254.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,112180,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,400.63141224563,254.0,21371.612610817512,1,1,1,2,57.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011884924391313114,14247.741740545009,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +12170,2,38.0,0.0,9,112,1524.0,0.0,0.0,55,54,0.0,0.0,2598.7256280990214,1524.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,112181,2,1,1,0,1,,290.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1948.01271651458,1524.0,42450.28241763906,1,1,1,2,95.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03590082122437761,20214.42019887574,5,3,5,5_1,5_1,5_0_0 +12171,2,61.0,0.0,7,112,590.0,0.0,0.0,75,64,0.0,0.0,1006.0683205895161,780.0,263.261952825339,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,112182,2,1,1,0,1,,302.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1844.51499997962,590.0,51277.029920203575,7,1,0,1,100.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015211489456659687,34184.68661346905,9,5,9,9_1,9_0,9_0_0 +12172,0,66.0,0.0,1,111,1066.0,,,86,77,0.0,66.2163638505112,,1332.0,299.28727268564853,,71,0,0,0,0,0,0,0,0,0,,1,,1,112183,2,2,0,0,2,,250.0,,41,1.0,3.0,4.0,3.0,2.0,3,3,97.61556902209338,1066.0,15400.150560997536,6,5,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08649266088173364,7700.075280498768,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +12173,2,43.0,0.0,6,211,900.0,,,42,34,0.0,0.0,,1000.0,138.5589225396521,,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,112184,2,1,0,0,2,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,93.40480795196316,900.0,87386.47450638845,1,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011443418511258218,41612.606907804024,9,5,9,9_1,9_2,9_0_0 +12174,2,47.0,0.0,8,211,900.0,,,0,81,0.0,0.0,,1300.0,554.2356901586083,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,112185,1,2,0,0,2,,2000.0,,32,5.0,0.0,6.0,15.0,6.399999999999999,6,5,10.546682620195273,900.0,29866.759697007612,0,4,0,1,66.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0435266501350747,4666.681202657441,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12175,2,34.0,0.0,9,112,0.0,0.0,2684.0,43,43,0.0,0.0,1691.7742914731723,2684.0,0.0,3212.0290840636035,33,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,112186,2,1,1,0,1,,493.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,693.53152081447,0.0,83767.93799016511,1,1,1,2,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03204089851555279,39889.494281031,9,5,9,9_1,9_2,9_0_0 +12176,2,35.0,0.0,9,111,390.0,,,54,63,0.0,0.0,,558.0,232.77898986661552,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,112187,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,117.68423820352254,390.0,34238.59517566146,4,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016297397633786532,22825.73011710764,6,3,6,6_1,6_2,6_0_0 +12177,2,81.0,0.0,7,400,1250.0,0.0,0.0,0,71,0.0,0.0,2131.5006792150766,1300.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,112188,2,1,2,0,1,,100.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1991.70782399264,1250.0,25662.28881223306,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050657991167970096,25662.28881223306,7,4,7,7_1,7_0,7_0_0 +12178,1,68.0,46.0,2,211,162.0,980.0,0.0,0,77,0.0,0.0,276.2424880262739,1142.0,0.0,1860.5339669809932,50,2,2,2,1,2,2,2,2,0,,2,,2,112189,2,3,0,0,1,,185.0,337.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1258.13978804699,162.0,18061.0,0,5,2,3,63.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.06323016444272189,18061.0,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +12179,1,29.0,70.0,2,111,312.0,920.0,0.0,67,67,0.0,0.0,532.0225695320831,1232.0,0.0,1746.6237241046058,43,2,2,2,2,1,2,2,2,0,,2,,2,112190,1,3,0,0,1,,249.0,279.0,43,2.0,0.0,3.0,2.0,1.5,2,2,565.706792255394,312.0,15896.0,4,4,2,3,56.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07750377453447409,10597.333333333334,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +12180,2,43.0,0.0,8,112,470.0,1060.0,0.0,46,62,0.0,0.0,801.4442553848687,1530.0,0.0,2012.4142908161764,50,0,0,0,0,0,0,0,0,2,25.0,1,1999.0,6,112191,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,802.330467126256,470.0,46184.86948464651,1,1,1,2,103.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033127732460273084,16494.59624451661,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +12181,2,52.0,0.0,1,300,900.0,0.0,0.0,0,56,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,112192,2,1,0,0,1,,80.0,193.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1343.14687474754,900.0,24517.221949647115,0,1,2,3,40.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.039156149174307965,24517.221949647115,7,4,7,7_0,7_0,7_1_0 +12182,2,60.0,0.0,6,111,200.0,,,86,46,0.0,0.0,,464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,112193,2,3,0,0,1,,200.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,108.88300138314852,200.0,24707.340719614785,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018779843823161325,12353.670359807393,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12183,0,29.0,0.0,2,400,480.0,,,0,81,0.0,0.0,,660.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,2,112194,2,2,0,0,2,,0.0,,32,1.0,1.0,1.0,4.0,1.9,1,1,65.41546846004303,480.0,7261.2119329977795,0,4,5,0,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09089391772201312,3821.690491051463,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +12184,2,41.0,0.0,9,111,95.0,,,0,21,0.0,0.0,,187.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,112195,2,2,0,0,2,,324.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,115.74659449699271,95.0,5110.0,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03659491193737769,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12185,2,28.0,0.0,5,111,504.0,0.0,0.0,56,63,0.0,0.0,859.4210738595189,504.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,3,112196,1,2,0,1,2,744.0,0.0,844.0,43,2.0,0.0,2.0,3.0,1.8,2,2,935.859853334525,504.0,32195.513537147614,4,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015654355052249068,17886.396409526453,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +12186,1,45.0,247.0,2,211,0.0,0.0,0.0,0,63,0.0,0.0,0.0,917.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112197,1,2,0,1,2,870.0,298.0,273.0,32,1.0,2.0,3.0,2.0,1.5,2,2,265.761189781524,0.0,16579.732057003326,0,1,2,3,65.0,4,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05530849333675791,11053.154704668885,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +12187,2,35.0,0.0,2,111,1627.0,0.0,0.0,62,55,1582.0242765549024,0.0,2774.3612840663436,3127.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,112198,1,1,2,0,2,,326.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1247.29176140472,1627.0,40425.234500844184,1,1,0,1,85.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07735267435331018,17576.188913410515,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +12188,2,62.0,0.0,1,111,234.0,778.0,0.0,0,78,0.0,0.0,399.0169271490623,1076.0,88.67771042537734,1477.0361492971558,70,0,0,0,0,0,0,0,0,0,,1,,1,112199,2,1,1,0,1,,160.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,201.512608879449,234.0,14969.1072257878,0,5,0,1,85.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07188137433783208,14969.1072257878,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +12189,1,31.0,301.0,9,300,0.0,0.0,0.0,85,65,0.0,0.0,0.0,1685.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,112200,2,1,1,0,1,,260.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,2307.41819177838,0.0,29113.035975690564,6,1,1,2,100.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0578778524303332,10782.605916922432,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +12190,2,60.0,0.0,6,111,420.0,240.0,0.0,77,56,0.0,0.0,716.1842282162656,660.0,0.0,455.6409715055494,71,1,2,2,1,1,2,2,2,0,,2,,4,112201,2,1,0,1,2,,0.0,,42,1.0,4.0,4.0,3.0,2.0,3,3,194.814541880521,420.0,26553.06051297659,5,4,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02485589183504686,13276.530256488295,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +12191,2,53.0,0.0,5,111,95.0,0.0,0.0,75,46,0.0,0.0,161.9940516203458,95.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,3,112202,2,1,2,0,2,,615.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,495.410324114713,95.0,65265.87824043007,5,1,0,1,106.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0014555844885750823,32632.939120215036,8,4,8,8_1,8_4,8_0_0 +12192,2,77.0,0.0,2,111,0.0,1573.0,0.0,0,77,0.0,0.0,0.0,2213.0,0.0,2986.3468674092883,71,2,2,2,1,1,2,2,2,0,,2,,2,112203,2,3,0,0,1,,367.0,277.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1004.54546838829,0.0,21244.109497432786,0,5,2,3,60.0,9,7,3,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.10417005242170432,21244.109497432786,5,3,5,5_0,5_3,5_0_1 +12193,1,53.0,270.0,2,111,240.0,180.0,0.0,0,62,0.0,0.0,409.2481304092947,420.0,0.0,341.730728629162,43,0,0,0,0,0,0,0,0,0,,2,,2,112204,2,1,0,1,1,157.0,0.0,310.0,12,1.0,3.0,3.0,1.0,1.0,1,1,284.85017241527,240.0,6060.0,0,4,2,3,60.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06930693069306931,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12194,2,68.0,0.0,1,111,300.0,0.0,0.0,0,78,738.277995725621,0.0,511.56016301161833,1120.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,112205,2,2,0,0,1,,200.0,328.0,11,0.0,5.0,2.0,1.0,1.0,1,1,1272.15725610913,300.0,16582.817191221013,0,5,2,3,25.0,7,6,2,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.067539790560613,16582.817191221013,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +12195,2,29.0,0.0,1,120,1000.0,0.0,0.0,0,68,0.0,0.0,1705.2005433720612,1090.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,112206,1,3,0,0,1,,1000.0,480.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1067.96358167917,1000.0,9835.0,0,4,2,3,60.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11082867310625318,9835.0,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +12196,2,86.0,0.0,6,111,1800.0,0.0,0.0,0,72,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,112207,1,2,0,0,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1599.45152674995,1800.0,41064.86270971869,0,5,0,1,80.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04383309431043099,41064.86270971869,9,5,9,9_0,9_2,9_0_0 +12197,1,53.0,234.0,1,111,155.0,289.0,0.0,0,77,0.0,0.0,264.3060842226695,444.0,0.0,548.667669854599,71,0,0,0,0,0,0,0,0,0,,2,,1,112208,1,2,0,0,2,,110.0,219.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1414.41402596889,155.0,10003.678842168436,0,7,2,3,60.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04438367194760491,10003.678842168436,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +12198,2,61.0,0.0,1,112,500.0,0.0,0.0,0,77,0.0,662.163638505112,852.6002716860306,1150.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112209,2,1,2,0,2,,400.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,66.0073517928172,500.0,16089.381504039276,0,5,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0714757120844757,16089.381504039276,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +12199,2,32.0,0.0,5,111,300.0,600.0,0.0,63,62,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,112210,2,2,0,1,1,,300.0,476.0,43,2.0,0.0,3.0,2.0,1.5,2,2,349.82119212565,300.0,25797.938445540876,1,1,2,3,60.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03488650854407955,17198.625630360584,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +12200,0,72.0,0.0,1,111,440.0,1129.0,0.0,0,77,0.0,0.0,750.2882390837069,1569.0,0.0,2143.411070124022,70,1,2,2,1,2,2,2,2,0,,1,,1,112211,2,2,1,0,1,,164.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,64.4424638341269,440.0,17241.743086607614,0,5,5,0,92.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.09100007998719736,17241.743086607614,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +12201,0,25.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,286.0,396.278518463405,,71,0,0,0,0,0,0,0,0,0,,7,2009.0,6,112212,1,3,0,0,2,,0.0,,32,1.0,0.0,3.0,6.0,2.5,1,1,245.85275285700672,0.0,9378.231111111112,0,4,5,0,300.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030496156109988994,3751.2924444444448,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12202,2,49.0,0.0,6,120,450.0,1170.0,0.0,47,46,0.0,0.0,767.3402445174275,1620.0,0.0,2221.249736089553,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,112213,2,1,3,0,1,,577.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1279.23547648984,450.0,78087.7522947381,1,1,0,1,140.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020745891031482066,31235.100917895237,8,4,8,8_1,8_0,8_0_0 +12203,2,34.0,0.0,9,120,0.0,,,0,46,0.0,0.0,,363.0,0.0,,33,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,112214,2,2,0,0,1,,171.0,395.0,12,1.0,0.0,2.0,1.0,1.0,1,1,101.95196987886236,0.0,18588.169696762663,0,1,2,3,51.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019528549928356877,18588.169696762663,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +12204,2,73.0,0.0,5,111,200.0,0.0,0.0,0,75,0.0,0.0,341.04010867441224,843.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,112215,1,2,0,1,2,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,672.309968903739,200.0,31105.041916793598,0,5,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02710171560787593,31105.041916793598,8,4,8,8_0,8_4,8_0_0 +12205,2,48.0,0.0,6,111,1700.0,0.0,0.0,42,38,0.0,238.3789098618403,2898.840923732504,1880.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,4,112216,2,1,1,0,1,,450.0,,43,2.0,0.0,8.0,6.0,3.0999999999999996,4,4,490.879133689656,1700.0,112367.2377331882,1,1,0,1,140.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01673085534472236,36247.49604296394,9,5,9,9_1,9_3,9_0_0 +12206,2,92.0,0.0,2,300,414.0,,,0,77,0.0,0.0,,483.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,2,112217,1,1,0,0,2,,516.0,,11,0.0,10.0,5.0,1.0,1.0,1,1,106.37916305375356,414.0,12848.913976327936,0,5,0,1,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03759072563563349,12848.913976327936,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +12207,2,55.0,0.0,1,112,242.8,0.0,0.0,69,13,3796.8582637317654,0.0,414.02269193073647,3843.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,5,,1,112218,2,1,2,0,1,,139.0,,43,2.0,3.0,10.0,2.0,1.5,2,2,552.849077972803,242.8,266556.0126685506,1,1,0,1,120.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014417232466553223,177704.0084457004,10,5,10,10_1,10_0,10_1_0 +12208,2,28.0,0.0,5,111,1440.0,0.0,0.0,52,42,0.0,0.0,2455.488782455768,1560.0,166.2707070475825,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,112219,2,2,2,0,1,,0.0,582.0,43,2.0,0.0,4.0,2.0,1.5,2,2,318.515398270261,1440.0,22097.449021251592,4,4,2,3,93.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07059638415727147,14731.632680834395,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +12209,2,73.0,0.0,2,111,960.0,2400.0,0.0,77,78,0.0,0.0,1636.9925216371787,3455.0,131.6309764126695,4556.4097150554935,71,0,0,0,0,0,0,0,0,0,,1,,2,112220,1,2,3,0,1,,400.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,1579.26730980054,960.0,24255.071569378517,5,5,1,2,182.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14244443641889146,16170.047712919011,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +12210,2,38.0,0.0,1,211,480.0,,,0,52,0.0,0.0,,710.0,318.68552184119983,,43,0,0,0,0,0,0,0,0,0,,1,,1,112221,2,1,0,0,2,,600.0,,22,2.0,3.0,5.0,3.0,2.0,3,3,82.51179333303571,480.0,34694.68484697148,0,1,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020464229697765256,17347.34242348574,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +12211,2,78.0,0.0,5,112,1000.0,0.0,0.0,78,77,0.0,0.0,1705.2005433720612,1240.0,332.541414095165,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,112222,2,1,3,0,1,,402.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1538.34752557757,1000.0,19702.132966418678,5,5,0,1,110.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06293734805838126,13134.755310945786,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +12212,2,29.0,0.0,1,111,230.0,400.0,0.0,0,55,0.0,0.0,392.1961249755741,630.0,0.0,759.4016191759156,20,2,2,2,2,1,2,2,2,2,10.0,2,,1,112223,1,2,0,0,2,,144.0,363.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1236.80425566941,230.0,16721.456444675518,0,1,2,3,47.0,4,3,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.03767614394621743,16721.456444675518,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +12213,2,75.0,0.0,2,111,360.0,180.0,0.0,0,77,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,2,,2,112224,2,1,0,1,1,750.0,0.0,452.0,11,0.0,2.0,3.0,1.0,1.0,1,1,246.340216068717,360.0,16093.856663489316,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033553175680074834,16093.856663489316,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +12214,2,77.0,0.0,7,112,500.0,,,0,71,0.0,0.0,,600.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,5,112225,2,3,0,0,2,,500.0,,11,0.0,10.0,5.0,1.0,1.0,1,1,116.79383417053975,500.0,14285.631720430109,0,5,0,1,70.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04200024274333843,14285.631720430109,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +12215,2,63.0,0.0,7,111,540.0,800.0,0.0,0,77,0.0,0.0,920.8082934209131,1340.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,5,112226,2,1,0,0,1,,0.0,453.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1051.94899575678,540.0,19301.17023640832,0,5,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06942584224620338,19301.17023640832,5,3,5,5_0,5_4,5_0_0 +12216,2,33.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2432.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,112227,2,1,0,1,1,,0.0,67.0,32,1.0,0.0,4.0,4.0,1.9,1,1,733.976745725103,0.0,12250.176722983593,0,4,3,4,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1985277482109396,6447.46143314926,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +12217,2,28.0,0.0,7,111,0.0,,,21,38,0.0,0.0,,530.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,112228,2,1,0,0,2,,494.0,850.0,43,2.0,0.0,3.0,3.0,1.8,2,2,96.38922238518789,0.0,39728.7146352609,1,1,3,4,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013340476903564427,22071.5081307005,6,3,6,6_1,6_2,6_0_0 +12218,2,61.0,0.0,1,111,288.0,0.0,0.0,0,11,0.0,662.163638505112,491.09775649115363,788.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,112229,2,3,4,0,1,,120.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,1221.28623608116,288.0,35469.76232701916,0,1,0,1,90.0,6,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.022216106009815,23646.508218012776,6,3,6,6_1,6_2,6_1_0 +12219,1,41.0,413.0,7,111,0.0,,,22,85,0.0,0.0,,59.0,81.74976429839474,,71,0,0,0,0,0,0,0,0,0,,2,,5,112230,2,2,0,0,2,,490.0,650.0,42,1.0,0.0,3.0,4.0,2.1,2,2,123.23671175719183,0.0,10260.908186848144,1,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.005749978357239653,4886.146755641973,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12220,2,67.0,0.0,1,111,400.0,0.0,0.0,0,72,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,112231,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1152.49927450192,400.0,20758.07284033796,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01926961154229612,20758.07284033796,5,3,5,5_0,5_4,5_1_0 +12221,2,24.0,0.0,7,111,800.0,0.0,0.0,0,46,1898.4291318658827,0.0,1364.160434697649,2720.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,112232,2,1,2,0,1,,400.0,,22,1.0,2.0,6.0,2.0,1.5,2,2,371.310713869442,800.0,64164.95968239766,0,1,0,1,200.0,6,5,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042390738082956764,42776.63978826511,9,5,9,9_1,9_2,9_0_0 +12222,2,46.0,0.0,1,111,200.0,618.0,0.0,43,46,0.0,0.0,341.04010867441224,818.0,0.0,1173.2755016267895,12,0,0,0,0,0,0,0,0,2,20.0,2,,1,112233,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1591.81649557152,200.0,74070.7890239625,1,1,1,2,98.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011043489758633061,35271.804297124996,9,5,9,9_0,9_3,9_1_0 +12223,2,70.0,0.0,2,111,420.0,0.0,0.0,75,74,1476.555991451242,0.0,716.1842282162656,1880.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112234,2,2,2,0,1,,130.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1375.86315378253,420.0,52215.473272042385,5,5,0,1,86.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03600465306912394,34810.31551469492,9,5,9,9_1,9_3,9_0_1 +12224,2,50.0,0.0,7,300,1680.0,0.0,0.0,0,47,0.0,211.89236432163582,2864.7369128650625,1840.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,5,112235,2,1,2,0,1,,91.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,832.733928171139,1680.0,21253.659944504427,0,1,1,2,125.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.08657332453819419,21253.659944504427,5,3,5,5_1,5_0,5_0_0 +12225,2,46.0,0.0,7,111,525.0,0.0,0.0,42,38,0.0,0.0,895.2302852703322,2125.0,2216.9427606344334,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,5,112236,2,1,2,0,1,,172.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,2171.85925345969,525.0,86749.94915342261,1,1,1,2,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0244956915910326,57833.299435615074,10,5,10,10_1,10_3,10_0_0 +12226,0,33.0,0.0,5,111,0.0,,,0,53,0.0,0.0,,1511.0,0.0,,20,0,0,0,0,0,0,0,0,2,25.0,1,,3,112237,2,2,0,0,2,,650.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,103.8371528684344,0.0,27024.31569847983,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05591260910576902,27024.31569847983,7,4,7,7_1,7_2,7_0_0 +12227,0,87.0,0.0,2,221,250.0,0.0,0.0,0,72,2978.4243713273627,344.3250920226582,426.3001358430153,3409.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112238,2,1,1,0,2,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2054.05823800172,250.0,22206.69588956575,0,5,0,1,100.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15351225670640112,22206.69588956575,6,3,6,6_1,6_1,6_0_1 +12228,2,59.0,0.0,6,112,1800.0,0.0,0.0,0,48,0.0,66.2163638505112,3069.36097806971,1916.0,91.44888887617039,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,112239,2,2,1,0,1,,500.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,921.338661469342,1800.0,25104.471842085804,0,1,1,2,110.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07632106391451608,25104.471842085804,7,4,7,7_1,7_0,7_0_0 +12229,2,65.0,0.0,8,112,460.0,0.0,0.0,77,75,0.0,370.8116375628627,784.3922499511482,840.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,112240,2,1,1,0,1,,270.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1770.70796630842,460.0,28850.99261115526,5,5,0,1,98.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029115116118230654,19233.995074103506,5,3,5,5_1,5_0,5_0_0 +12230,2,33.0,0.0,9,111,432.0,,,54,46,0.0,0.0,,552.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,3,2004.0,6,112241,2,1,0,0,2,,840.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,91.4116501399512,432.0,42830.94913178091,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012887876901854868,23794.97173987828,6,3,6,6_0,6_3,6_0_0 +12231,2,58.0,0.0,6,111,1980.0,0.0,0.0,0,38,0.0,0.0,3376.297075876681,1980.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,,4,112242,2,1,2,0,1,,680.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,732.60128442404,1980.0,64227.31884643198,0,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030828003341291505,64227.31884643198,10,5,10,10_1,10_4,10_0_0 +12232,1,25.0,377.0,1,111,542.0,1002.0,0.0,0,85,0.0,0.0,924.2186945076571,1544.0,0.0,1902.3010560356686,60,2,2,1,1,1,2,2,2,0,,1,,1,112243,1,2,1,0,1,,468.0,369.0,31,0.0,0.0,4.0,2.0,1.3,1,1,251.48185989675,542.0,9111.468354888038,0,6,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.16945677028792935,7008.821811452337,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +12233,2,71.0,0.0,1,400,940.0,0.0,0.0,75,74,0.0,132.4327277010224,1602.8885107697374,1043.0,4.156767676189563,0.0,44,2,2,2,1,2,2,2,2,0,,1,,1,112244,2,2,3,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1082.86866706822,940.0,54190.1723156932,5,5,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.019247032357155885,36126.78154379546,9,5,9,9_1,9_0,9_1_0 +12234,2,66.0,0.0,7,111,390.0,487.0,0.0,0,67,0.0,0.0,665.0282119151038,877.0,0.0,924.5714713466772,70,0,0,0,0,0,0,0,0,0,,1,,5,112245,2,1,2,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1667.64542496931,390.0,16237.83503040481,0,1,0,1,83.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05400966313291436,16237.83503040481,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +12235,2,61.0,0.0,5,111,330.0,,,0,52,0.0,0.0,,399.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,1,3.0,2,,3,112246,2,3,0,0,2,,260.0,213.0,12,1.0,2.0,3.0,1.0,1.0,1,1,124.81733629007391,330.0,19271.011002623243,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020704673976144096,19271.011002623243,5,3,5,5_0,5_2,5_0_0 +12236,2,54.0,0.0,7,112,500.0,0.0,0.0,0,67,0.0,0.0,852.6002716860306,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,15.0,8,,5,112247,2,1,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,847.691330940334,500.0,14245.254449924276,0,1,0,1,65.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03509940814027775,14245.254449924276,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +12237,1,87.0,81.0,2,111,200.0,120.0,0.0,0,77,0.0,0.0,341.04010867441224,320.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,2,,2,112248,2,1,0,1,1,1044.0,190.0,277.0,11,0.0,5.0,3.0,1.0,1.0,1,1,1969.33939916158,200.0,15403.294770163662,0,5,2,3,63.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020774776096594817,15403.294770163662,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +12238,1,41.0,341.0,2,112,700.0,0.0,0.0,65,56,2594.5198135500395,19.86490915515336,1193.6403803604428,3265.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,112249,2,1,4,0,1,,590.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1579.58987856589,700.0,32684.80535866793,4,4,1,2,150.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09989351211278148,18158.22519925996,4,2,4_1,4_1_1,4_0_1,4_0_1_1 +12239,1,23.0,446.0,6,111,750.0,,,62,56,0.0,0.0,,910.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,1,,4,112250,2,1,0,0,2,,500.0,550.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,106.76966053912966,750.0,21790.212834646976,4,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04176186836289536,8070.4491980174,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +12240,2,65.0,0.0,7,120,0.0,0.0,0.0,0,74,843.7462808292812,291.3520009422493,0.0,9189.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,112251,2,1,2,0,1,,180.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2538.84543210243,0.0,44112.60401392238,0,5,0,1,160.0,0,0,5,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.20830781146131977,44112.60401392238,10,5,10,10_1,10_0,10_0_0 +12241,1,69.0,70.0,1,112,300.0,0.0,0.0,0,72,0.0,1324.327277010224,511.56016301161833,1360.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,112252,2,1,1,0,1,,160.0,348.0,11,0.0,3.0,4.0,1.0,1.0,1,1,76.1924160417213,300.0,13660.525675723997,0,5,2,3,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09955693011264159,13660.525675723997,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +12242,2,33.0,0.0,9,112,0.0,,,21,34,0.0,0.0,,890.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2013.0,6,112253,2,1,0,0,2,,364.0,,43,2.0,2.0,4.0,3.0,1.8,2,2,251.50582391167939,0.0,31518.09453710467,1,1,0,1,96.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02823774765166237,17510.052520613706,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +12243,2,33.0,0.0,7,111,0.0,0.0,0.0,43,21,0.0,0.0,0.0,1544.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,112254,2,2,5,0,1,,621.0,950.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,1129.06904494632,0.0,45229.660597061455,1,1,2,3,100.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0341368911377662,16751.7261470598,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +12244,2,75.0,0.0,2,111,280.0,0.0,0.0,71,78,0.0,0.0,477.4561521441771,580.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112255,2,1,4,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1185.61657075088,280.0,54703.84042775609,5,5,0,1,120.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010602546283125576,36469.226951837394,9,5,9,9_1,9_2,9_0_1 +12245,1,39.0,357.0,6,111,251.0,,,0,33,0.0,0.0,,326.0,103.91919190473907,,31,0,0,0,0,0,0,0,0,0,,2,,4,112256,2,1,0,0,2,,300.0,444.0,32,1.0,0.0,2.0,2.0,1.3,1,1,119.06218814803664,251.0,7545.106666666667,0,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04320681130198292,5803.928205128205,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12246,2,65.0,0.0,1,111,0.0,0.0,910.0,0,75,0.0,0.0,573.5896442774168,910.0,0.0,1089.0262542838595,33,0,0,0,0,0,0,0,0,0,,1,,1,112257,1,1,1,0,1,,299.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,386.141025827549,0.0,38899.19299730662,0,5,1,2,160.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023393801513131862,38899.19299730662,9,5,9,9_1,9_3,9_1_0 +12247,1,33.0,413.0,2,111,500.0,,,85,48,0.0,0.0,,632.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,0,,2,,2,112258,2,2,0,0,2,,240.0,422.0,42,1.0,0.0,4.0,4.0,2.1,2,2,100.76279358121737,500.0,15175.69577006324,6,4,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041645537020235504,7226.521795268209,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12248,2,59.0,0.0,2,111,540.0,280.0,0.0,56,62,0.0,0.0,920.8082934209131,820.0,0.0,531.581133423141,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,112259,2,3,0,1,1,1212.0,0.0,396.0,43,2.0,1.0,5.0,3.0,2.0,3,2,382.648040307642,540.0,44525.388987069426,1,1,2,3,91.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018416458983393395,22262.694493534713,6,3,6,6_0,6_3,6_0_1 +12249,1,44.0,228.0,2,111,270.0,240.0,0.0,0,85,0.0,0.0,460.40414671045653,510.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,0,,2,,2,112260,2,1,0,1,1,,180.0,214.0,11,0.0,0.0,2.0,1.0,1.0,1,1,368.501959467904,270.0,11161.967704834256,0,7,2,3,60.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04569086862517248,11161.967704834256,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +12250,1,49.0,147.0,2,111,620.0,0.0,0.0,42,62,0.0,0.0,1057.224336890678,620.0,0.0,0.0,41,2,2,1,1,1,2,2,2,0,,2,,2,112261,2,2,0,1,1,640.0,0.0,495.0,43,3.0,0.0,3.0,5.0,2.8,4,3,199.018901069572,620.0,9491.019533392371,1,4,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06532491033430564,3389.6498333544187,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +12251,1,56.0,253.0,7,112,0.0,,,0,64,0.0,0.0,,471.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,112262,2,2,0,0,2,,508.0,450.0,12,1.0,4.0,2.0,1.0,1.0,1,1,130.74357681086866,0.0,7329.993278872613,0,4,2,3,62.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06425653913729673,7329.993278872613,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +12252,1,71.0,91.0,2,111,672.0,500.0,0.0,0,86,0.0,0.0,1145.894765146025,1172.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,1,,2,112263,2,2,1,0,1,,220.0,409.0,11,0.0,5.0,4.0,1.0,1.0,1,1,245.682242024883,672.0,13038.405312549323,0,5,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08988829323107196,13038.405312549323,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +12253,2,45.0,0.0,8,112,1400.0,0.0,0.0,85,38,0.0,0.0,2387.2807607208856,1440.0,55.423569015860835,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,112264,2,1,2,0,1,,385.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,877.092242714045,1400.0,52808.08957089091,6,1,0,1,130.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027268549415462338,26404.044785445454,7,4,7,7_1,7_0,7_0_0 +12254,2,78.0,0.0,7,111,680.0,0.0,0.0,0,77,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,112265,2,1,0,0,1,,400.0,910.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2306.02693526189,680.0,23029.827196474325,0,5,2,3,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029526925851362983,23029.827196474325,6,3,6,6_0,6_3,6_0_0 +12255,1,55.0,260.0,1,111,300.0,400.0,0.0,0,77,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,71,2,2,2,2,1,2,2,2,0,,1,,1,112266,1,2,3,0,2,,0.0,370.0,11,0.0,3.0,1.0,1.0,1.0,1,1,917.215977994573,300.0,16468.122975255454,0,7,2,3,40.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.04250636220362215,16468.122975255454,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +12256,2,41.0,0.0,7,400,480.0,,,52,11,0.0,0.0,,744.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,112267,2,1,0,0,1,,184.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,92.83702966725653,480.0,20507.894142389963,4,1,0,1,110.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03627871271590712,8916.475714082593,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +12257,1,29.0,404.0,6,111,566.0,,,68,21,0.0,0.0,,642.0,105.3047811301356,,70,0,0,0,0,0,0,0,0,0,,1,,4,112268,2,3,0,0,2,,0.0,660.0,43,2.0,0.0,4.0,4.0,2.1,2,2,106.57780261137003,566.0,9384.211525618382,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06841278015178742,4468.6721550563725,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +12258,2,55.0,0.0,9,221,900.0,0.0,0.0,85,22,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,112269,2,1,1,0,1,,627.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,537.303306801294,900.0,23339.51799847075,7,5,1,2,89.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038561207650430904,15559.678665647167,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +12259,2,39.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1043.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,112270,2,1,0,0,1,,0.0,2400.0,32,1.0,0.0,4.0,3.0,1.6,1,1,743.163467567391,0.0,84191.54551726278,0,1,2,3,78.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012388417311880104,52619.71594828924,10,5,10,10_0,10_4,10_1_0 +12260,2,60.0,0.0,6,111,400.0,0.0,0.0,78,75,0.0,0.0,682.0802173488245,400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,4,112271,2,1,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,232.333326566091,400.0,17834.282162741347,5,5,0,1,95.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022428713213681437,11889.521441827565,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +12261,2,48.0,0.0,5,111,1588.0,0.0,0.0,46,22,0.0,0.0,2707.858462874833,1588.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,3,112272,2,1,0,0,1,,0.0,714.0,43,2.0,1.0,4.0,3.0,2.0,3,3,1213.3198875179,1588.0,56799.068118216,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02795820517151607,28399.534059108,8,4,8,8_0,8_4,8_0_0 +12262,2,50.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,1280.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,112273,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,699.128359765094,0.0,148695.6391427182,1,1,0,1,85.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008608187888896023,99130.42609514546,10,5,10,10_0,10_4,10_1_0 +12263,2,79.0,0.0,2,111,400.0,,,0,77,0.0,0.0,,466.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,2,112274,2,2,0,0,2,,400.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,87.5800333471359,400.0,20818.095624845566,0,5,0,1,84.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022384372153802946,20818.095624845566,5,3,5,5_1,5_2,5_0_1 +12264,2,61.0,0.0,6,112,708.0,0.0,0.0,77,75,0.0,0.0,1207.2819847074193,848.0,193.98249155551292,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,112275,2,2,1,0,1,,553.0,,41,0.0,1.0,7.0,3.0,2.0,3,3,1900.94284946394,708.0,26776.04050350523,6,5,1,2,135.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03167010446854489,13388.020251752616,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +12265,1,43.0,390.0,1,120,480.0,0.0,0.0,0,69,0.0,0.0,818.4962608185893,530.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,112276,2,1,2,0,1,,100.0,520.0,32,1.0,0.0,4.0,3.0,1.8,2,1,293.402016070444,480.0,22125.95360469235,0,1,2,3,70.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.023953769833793763,12292.196447051305,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +12266,2,71.0,0.0,8,120,0.0,0.0,0.0,0,78,0.0,423.78472864327165,0.0,1024.0,345.0117171237337,0.0,50,2,2,2,2,1,2,2,2,0,,7,2003.0,6,112277,2,2,0,0,1,,0.0,230.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1198.5326419176,0.0,14696.83278204167,0,5,2,3,28.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.06967487588558838,14696.83278204167,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12267,2,47.0,0.0,5,111,330.0,90.0,0.0,37,34,0.0,0.0,562.7161793127802,420.0,0.0,170.865364314581,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,112278,2,2,0,1,2,787.0,0.0,1680.0,43,2.0,1.0,5.0,4.0,2.5,4,3,910.955571721406,330.0,118087.06623526332,1,1,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003556697726432118,47234.82649410533,10,5,10,10_0,10_4,10_0_0 +12268,0,81.0,0.0,6,400,200.0,,,86,78,0.0,0.0,,403.0,281.27461275549376,,71,0,0,0,0,0,0,0,0,0,,1,,4,112279,2,1,0,0,1,,200.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,105.35326964349225,200.0,17358.146788990824,6,5,0,1,136.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023216764145329007,11572.097859327216,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +12269,1,63.0,265.0,2,111,320.0,,,0,72,0.0,0.0,,608.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,2,,2,112280,2,1,0,0,2,,0.0,390.0,11,0.0,2.0,4.0,1.0,1.0,1,1,110.51746339122846,320.0,11103.236842105252,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054758806701696805,11103.236842105252,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +12270,1,44.0,200.0,7,112,720.0,0.0,0.0,0,62,0.0,0.0,1227.744391227884,845.0,173.19865317456512,0.0,50,2,2,2,1,1,2,2,2,0,,2,,5,112281,2,1,0,0,1,,40.0,200.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1909.32896139354,720.0,9725.075307107618,0,4,2,3,40.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.08688878731688872,9725.075307107618,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +12271,1,39.0,233.0,1,300,800.0,0.0,0.0,85,85,0.0,33.1081819252556,1364.160434697649,918.0,128.85979796187644,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112282,2,1,1,0,1,,380.0,485.0,41,0.0,0.0,4.0,2.0,1.5,2,2,1111.77821110954,800.0,20480.7492961549,7,7,2,3,114.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04482257883857537,13653.832864103266,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +12272,2,49.0,0.0,1,112,1560.0,0.0,0.0,0,68,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,1,112283,1,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,778.34598013983,1560.0,10443.60263269131,0,1,0,1,65.0,10,5,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1493737415014984,10443.60263269131,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +12273,2,78.0,0.0,9,111,200.0,,,22,75,0.0,0.0,,325.0,173.19865317456512,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,112284,2,2,0,0,2,,150.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,161.6202332164163,200.0,14827.265686499733,1,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021919078464744408,9884.843790999823,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12274,1,52.0,249.0,2,111,180.0,50.0,0.0,0,63,0.0,0.0,306.936097806971,867.0,0.0,94.92520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,112285,1,3,0,1,1,856.0,0.0,318.0,12,1.0,4.0,3.0,1.0,1.0,1,1,332.434790364702,180.0,6247.507976667966,0,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13877533301884698,6247.507976667966,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12275,2,54.0,0.0,2,111,236.0,80.0,0.0,22,46,0.0,0.0,402.42732823580644,316.0,0.0,151.8803238351831,20,1,1,2,1,1,1,2,2,0,,2,,2,112286,1,3,0,1,1,584.0,0.0,195.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1346.50922548048,236.0,22470.15194804493,4,1,2,3,48.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.014063100273226872,14980.101298696622,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +12276,2,34.0,0.0,9,120,1500.0,0.0,0.0,52,62,0.0,0.0,2557.8008150580918,1527.0,37.410909085706066,0.0,43,0,0,0,0,0,0,0,0,2,90.0,1,2010.0,6,112287,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,59.5665165528739,1500.0,27958.71512028571,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054616243751919445,15532.619511269839,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12277,2,34.0,0.0,5,111,0.0,0.0,420.0,0,46,0.0,0.0,264.7336819741924,420.0,0.0,502.627501977166,50,2,1,2,1,2,2,2,2,1,2.0,2,,3,112288,2,1,0,1,1,570.0,0.0,500.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1002.38997702789,0.0,25840.092369191683,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.016253811867203406,25840.092369191683,7,4,7,7_0,7_4,7_0_0 +12278,1,90.0,120.0,2,120,100.0,800.0,0.0,0,86,0.0,0.0,170.52005433720612,900.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,2,112289,2,1,0,0,1,,280.0,380.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1389.34120450116,100.0,13260.954420897639,0,5,2,3,70.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06786841817220263,13260.954420897639,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +12279,2,44.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,3313.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,1,112290,2,1,2,0,1,,522.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,391.907851476452,0.0,122417.40779565068,1,1,0,1,250.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027063144528679573,68009.67099758371,10,5,10,10_1,10_3,10_1_0 +12280,2,68.0,0.0,6,111,498.0,0.0,0.0,0,77,0.0,1.324327277010224,849.1898705992865,499.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,112291,2,1,0,1,1,,0.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,312.618564700809,498.0,20550.87681370488,0,5,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02428120242865886,20550.87681370488,5,3,5,5_0,5_4,5_0_0 +12281,1,30.0,481.0,5,111,250.0,372.0,0.0,85,68,0.0,0.0,426.3001358430153,622.0,0.0,706.2435058336015,71,2,1,2,2,2,2,2,1,0,,2,,3,112292,2,1,0,1,1,68.0,0.0,436.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,409.246889757489,250.0,26772.082029934416,6,1,2,3,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.023233157559599923,9915.585937012747,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12282,1,84.0,63.0,5,111,221.0,786.0,0.0,0,78,0.0,0.0,376.84932008522554,1007.0,0.0,1492.224181680674,71,2,2,2,2,1,2,2,2,0,,8,,3,112293,1,3,0,0,1,,170.0,272.0,11,0.0,4.0,2.0,1.0,1.0,1,1,345.641931701172,221.0,15498.418664901326,0,5,2,3,53.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06497437072599634,15498.418664901326,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +12283,2,79.0,0.0,1,111,430.0,1734.0,0.0,77,78,0.0,0.0,733.2362336499863,2164.0,0.0,3292.0060191275943,71,0,0,0,0,0,0,0,0,0,,1,,1,112294,2,1,2,0,1,,500.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,401.880887488518,430.0,25550.258688343176,5,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0846958156626134,17033.505792228785,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +12284,2,60.0,0.0,6,111,1700.0,0.0,0.0,77,75,0.0,463.51454695357836,2898.840923732504,2110.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,112295,2,1,2,0,1,,597.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,1416.24248474684,1700.0,108381.57631554856,6,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019468253477480532,54190.78815777428,10,5,10,10_1,10_3,10_0_0 +12285,2,73.0,0.0,6,111,782.0,0.0,0.0,0,75,0.0,0.0,1333.4668249169517,782.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,112296,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,818.769679798324,782.0,22811.393359168753,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0342811150413872,22811.393359168753,6,3,6,6_0,6_4,6_0_0 +12286,2,43.0,0.0,2,112,1170.0,0.0,0.0,22,22,3164.0485531098047,529.7309108040896,1995.0846357453115,4570.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,112297,2,1,3,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1453.77373153557,1170.0,144347.59578094614,1,1,1,2,140.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03165968906704326,62759.824252585284,10,5,10,10_1,10_0,10_0_1 +12287,2,76.0,0.0,6,111,790.0,,,78,75,0.0,0.0,,1290.0,692.7946126982605,,71,0,0,0,0,0,0,0,0,0,,1,,4,112298,2,1,0,0,2,,483.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,108.72121795106753,790.0,65439.71931658781,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019712798488012582,32719.859658293906,8,4,8,8_1,8_2,8_0_0 +12288,2,39.0,0.0,2,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,2693.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,112299,2,1,1,0,1,,1516.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,318.656092323213,0.0,88425.4565152343,1,1,1,2,180.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030455030781051596,42107.360245349664,9,5,9,9_1,9_3,9_0_1 +12289,2,27.0,0.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,169.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,10.0,2,,5,112300,2,1,0,1,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2058.78732460452,0.0,9915.693445795241,0,1,3,4,22.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017043689473040798,9915.693445795241,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +12290,2,54.0,0.0,1,112,0.0,0.0,0.0,0,31,0.0,993.245457757668,0.0,1088.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,112301,1,2,2,0,2,,174.0,,12,1.0,1.0,9.0,1.0,1.0,1,1,718.453759706838,0.0,13530.300546417022,0,1,0,1,150.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08041210882696281,13530.300546417022,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +12291,2,83.0,0.0,2,300,800.0,150.0,0.0,78,78,0.0,0.0,1364.160434697649,950.0,0.0,284.77560719096834,70,0,0,0,0,0,0,0,0,0,,1,,2,112302,2,1,2,0,2,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1570.80211870063,800.0,15359.76781099648,5,5,0,1,200.0,0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061849893285487616,10239.845207330987,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +12292,0,52.0,0.0,1,120,487.0,0.0,0.0,0,38,2109.365702073203,0.0,830.4326646221938,2551.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112303,2,1,1,0,1,,148.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,83.7373094987864,487.0,40282.60893174741,0,1,0,1,76.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06332757653115942,26855.07262116494,7,4,7,7_1,7_0,7_1_0 +12293,2,35.0,0.0,1,111,720.0,0.0,0.0,0,47,0.0,0.0,1227.744391227884,720.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,30.0,2,,1,112304,2,1,0,0,1,,360.0,484.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2315.52539767578,720.0,39499.987620234664,0,1,2,3,45.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018227853814089943,39499.987620234664,9,5,9,9_0,9_3,9_1_0 +12294,2,65.0,0.0,1,111,470.0,1500.0,0.0,0,75,0.0,0.0,801.4442553848687,1970.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,0,,1,,1,112305,2,1,2,0,2,,120.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1294.03310715583,470.0,59184.953308712094,0,5,0,1,130.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033285487102175576,59184.953308712094,10,5,10,10_1,10_3,10_1_0 +12295,2,44.0,0.0,7,112,1500.0,0.0,0.0,56,64,0.0,794.5963662061343,2557.8008150580918,2208.0,149.64363634282427,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,112306,1,1,2,0,1,,300.0,,43,2.0,0.0,4.0,5.0,2.8,4,2,718.760140492706,1500.0,42889.09763431865,1,1,1,2,100.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051481614717704405,15317.534869399518,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12296,2,57.0,0.0,2,400,700.0,0.0,0.0,71,11,0.0,132.4327277010224,1193.6403803604428,920.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,112307,2,1,2,0,1,,400.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1031.09773519909,700.0,17605.3188083158,5,1,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0522569349647586,11736.879205543866,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +12297,2,45.0,0.0,1,111,280.0,96.0,0.0,0,33,0.0,0.0,477.4561521441771,376.0,0.0,182.25638860221974,20,2,2,2,2,1,2,2,2,1,15.0,2,,1,112308,1,1,0,1,2,330.0,0.0,538.0,12,1.0,0.0,1.0,1.0,1.0,1,1,726.659930419195,280.0,31243.825637586087,0,1,2,3,22.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.01203437774750845,31243.825637586087,8,4,8,8_0,8_4,8_1_0 +12298,2,71.0,0.0,2,111,1100.0,0.0,0.0,77,72,2109.365702073203,0.0,1875.7205977092674,3250.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112309,2,1,3,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,711.784168600719,1100.0,27764.184067045768,5,5,0,1,110.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11705728474324346,18509.456044697177,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +12299,2,53.0,0.0,2,111,300.0,,,0,33,0.0,0.0,,321.0,29.09737373332694,,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,112310,2,2,0,0,2,,739.0,,32,2.0,0.0,5.0,2.0,1.5,2,2,125.2785653876091,300.0,48226.2206582614,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006656130122131207,32150.813772174268,8,4,8,8_1,8_3,8_0_1 +12300,1,65.0,192.0,9,111,300.0,,,0,77,0.0,0.0,,350.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,112311,2,1,0,0,2,,150.0,410.0,11,0.0,3.0,2.0,1.0,1.0,1,1,118.90590599362822,300.0,16107.719727386948,0,5,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021728711817906598,16107.719727386948,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +12301,2,42.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,666.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,112312,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,611.198377239127,0.0,36495.42099720243,0,1,1,2,65.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018248864701438914,36495.42099720243,9,5,9,9_0,9_3,9_1_0 +12302,2,59.0,0.0,6,112,650.0,0.0,0.0,56,78,0.0,337.7034556376071,1108.3803531918397,905.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,112313,2,1,2,0,1,,190.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1558.62337972055,650.0,21008.934839494897,1,5,0,1,80.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04307691022481929,14005.956559663266,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12303,2,57.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,228.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,112314,1,1,0,1,1,110.0,543.0,553.0,32,1.0,0.0,2.0,2.0,1.3,2,1,1488.18781898302,0.0,40043.82633978929,0,4,2,3,45.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005693761581755969,30802.94333829945,8,4,8,8_0,8_3,8_0_1 +12304,2,64.0,0.0,5,111,0.0,0.0,380.0,77,78,0.0,0.0,239.52095035760266,380.0,0.0,454.75821607457874,50,0,0,0,0,0,0,0,0,0,,2,,3,112315,2,1,0,1,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,595.053449906814,0.0,45372.321994247686,5,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008375149943795613,30248.21466283179,8,4,8,8_0,8_4,8_0_0 +12305,2,43.0,0.0,5,111,589.0,0.0,0.0,52,64,0.0,0.0,1004.363120046144,659.0,96.99124577775646,0.0,50,2,1,2,2,1,2,2,2,2,10.0,2,,3,112316,1,2,0,1,1,710.0,0.0,402.0,43,2.0,0.0,5.0,4.0,2.3,3,3,279.714412298258,589.0,46912.15889606812,1,1,2,3,85.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014047530864226188,20396.590824377443,5,3,5,5_0,5_3,5_0_0 +12306,2,34.0,0.0,1,111,1200.0,0.0,0.0,0,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,112317,2,1,0,0,1,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1285.5709295306,1200.0,28215.405286720466,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04252995793630432,28215.405286720466,8,4,8,8_0,8_4,8_1_0 +12307,1,76.0,64.0,6,211,700.0,0.0,0.0,72,77,0.0,0.0,1193.6403803604428,739.0,54.03797979046432,0.0,20,2,2,2,2,1,2,2,2,0,,1,,4,112318,1,2,3,0,2,,250.0,615.0,41,0.0,3.0,5.0,2.0,1.5,2,2,1152.2378048067,700.0,19405.328143218092,5,5,2,3,80.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.03808232432587185,12936.885428812062,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +12308,2,65.0,0.0,5,111,1850.0,0.0,0.0,77,74,0.0,0.0,3154.621005238313,1880.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,112319,2,1,2,0,1,,334.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1746.58967896382,1850.0,49939.19444429066,5,5,0,1,99.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037645781453227514,33292.796296193774,8,4,8,8_1,8_2,8_0_0 +12309,2,62.0,0.0,5,111,1100.0,0.0,0.0,77,77,0.0,437.0280014133739,1875.7205977092674,1515.0,117.77508415870429,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,112320,2,1,2,0,1,,310.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,443.616026675984,1100.0,26647.333438332833,6,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056853718722213155,17764.888958888554,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +12310,2,77.0,0.0,7,211,70.0,0.0,0.0,72,74,0.0,0.0,119.36403803604428,126.0,77.59299662220518,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,112321,2,1,2,0,1,,461.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1516.25618893077,70.0,49949.35795144946,5,5,0,1,120.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0025225549470019493,33299.571967632975,8,4,8,8_1,8_1,8_0_0 +12311,2,33.0,0.0,6,111,2100.0,0.0,0.0,45,64,0.0,39.72981831030672,3580.9211410813286,2130.0,0.0,0.0,43,1,2,2,1,1,2,2,2,2,30.0,1,,4,112322,1,2,1,0,1,,410.0,450.0,43,2.0,0.0,4.0,2.0,1.5,2,2,389.91012463433,2100.0,46021.807371102856,1,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.046282406573572105,30681.20491406857,8,4,8,8_1,8_3,8_0_0 +12312,2,75.0,0.0,1,111,271.0,997.0,0.0,77,72,0.0,0.0,462.10934725382856,1268.0,0.0,1892.8085357959696,50,0,0,0,0,0,0,0,0,0,,1,,1,112323,2,1,2,0,1,,198.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,353.195647024274,271.0,17500.480712480494,5,5,0,1,95.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0724551525659363,11666.987141653663,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +12313,2,61.0,0.0,2,111,380.0,0.0,0.0,86,42,0.0,0.0,647.9762064813832,1221.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,13.0,8,,2,112324,2,3,0,0,2,672.0,0.0,600.0,42,1.0,4.0,4.0,2.0,1.5,2,2,846.767644948879,380.0,28958.11395257613,7,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0421643482030493,19305.40930171742,5,3,5,5_0,5_4,5_0_1 +12314,2,60.0,0.0,5,111,574.0,1646.0,0.0,75,74,0.0,0.0,978.7851118955631,2220.0,0.0,3124.937662908893,71,0,0,0,0,0,0,0,0,0,,1,,3,112325,2,1,1,0,1,,548.0,,41,0.0,1.0,3.0,3.0,2.0,3,3,773.526731649471,574.0,131292.42017934003,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016908820760311766,65646.21008967001,10,5,10,10_1,10_4,10_0_0 +12315,1,88.0,160.0,2,111,343.0,862.0,0.0,0,72,0.0,0.0,584.883786376617,1205.0,0.0,1636.5104893240982,70,2,2,2,2,1,2,2,2,0,,2,,2,112326,1,2,0,0,2,,130.0,500.0,11,0.0,5.0,2.0,1.0,1.0,1,1,459.080013862114,343.0,11724.914784661341,0,5,2,3,64.0,4,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.10277260194474026,11724.914784661341,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +12316,0,76.0,0.0,1,111,318.0,,,0,86,0.0,0.0,,444.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,1,112327,2,1,0,0,2,,225.0,,11,0.0,7.0,3.0,1.0,1.0,1,1,122.56927376496536,318.0,4905.56983812967,0,7,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09050936275514984,4905.56983812967,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +12318,2,69.0,0.0,1,400,350.0,0.0,0.0,90,78,0.0,1562.706186872064,596.8201901802214,1930.0,554.2356901586083,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112329,2,3,3,0,1,,156.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1287.98980494223,350.0,24357.62450974531,5,5,0,1,92.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07923596979778635,16238.416339830206,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +12319,2,53.0,0.0,2,111,900.0,700.0,0.0,68,68,0.0,0.0,1534.680489034855,1600.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,112330,2,1,0,1,1,684.0,0.0,387.0,43,2.0,1.0,4.0,5.0,2.8,4,3,147.229989696788,900.0,42066.385997498306,1,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03803511906383287,15023.709284820825,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +12320,0,47.0,0.0,1,111,267.0,1097.0,0.0,0,54,0.0,0.0,455.2885450803403,1364.0,0.0,2082.6589405899485,50,0,0,0,0,0,0,0,0,0,,1,,1,112331,2,1,1,0,1,,276.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,543.453306948425,267.0,38196.17903250431,0,1,0,1,96.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03571037822498577,25464.119355002873,7,4,7,7_1,7_2,7_1_0 +12321,2,37.0,0.0,9,112,700.0,0.0,0.0,52,53,0.0,1092.5700035334348,1193.6403803604428,1525.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,90.0,1,2005.0,6,112332,2,1,1,0,1,,1330.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,1173.69887743868,700.0,72255.67023665679,1,1,1,2,90.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02110561005115881,26761.359346909925,7,4,7,7_1,7_1,7_0_0 +12323,2,38.0,0.0,1,112,1300.0,0.0,0.0,46,52,0.0,0.0,2216.7607063836795,1360.0,83.13535352379125,0.0,43,2,2,2,2,1,2,2,2,2,25.0,1,,1,112334,2,2,1,0,1,,320.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1004.03837690408,1300.0,33170.99028090282,1,1,1,2,75.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.040999680397934286,18428.3279338349,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +12324,2,84.0,0.0,5,111,217.0,59.0,0.0,0,75,0.0,0.0,370.02851791173725,276.0,0.0,112.01173882844755,44,0,0,0,0,0,0,0,0,0,,2,,3,112335,2,2,0,1,1,1450.0,0.0,458.0,11,0.0,2.0,4.0,1.0,1.0,1,1,868.223070321124,217.0,22324.100260452924,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01236332021357802,22324.100260452924,6,3,6,6_0,6_4,6_0_0 +12325,2,44.0,0.0,8,120,1280.0,0.0,0.0,43,48,2425.7705573841836,0.0,2182.6566955162384,3580.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,10.0,1,2003.0,6,112336,2,1,1,0,1,,320.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1267.72363004629,1280.0,72964.81390575766,1,1,1,2,170.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049064745160920666,34745.14947893222,9,5,9,9_1,9_0,9_0_0 +12326,2,55.0,0.0,1,111,2000.0,0.0,0.0,90,47,0.0,0.0,3410.4010867441225,2050.0,69.27946126982604,0.0,50,2,2,2,2,1,2,2,2,2,10.0,8,,1,112337,2,3,0,0,1,,412.0,375.0,43,2.0,0.0,5.0,3.0,1.8,2,2,2653.4643710304,2000.0,45887.811477045885,1,1,2,3,90.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04467417237855102,25493.228598358823,7,4,7,7_0,7_2,7_1_0 +12327,2,31.0,0.0,5,111,700.0,,,0,54,0.0,0.0,,750.0,69.27946126982604,,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,112338,2,2,0,0,2,,650.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,148.64199092873534,700.0,37216.40626950945,0,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020152402533676603,37216.40626950945,9,5,9,9_0,9_2,9_0_0 +12328,2,58.0,0.0,8,112,400.0,900.0,0.0,52,48,0.0,331.081819252556,682.0802173488245,1550.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,112339,2,1,1,0,1,,300.0,,43,2.0,4.0,7.0,2.0,1.5,2,2,1895.48490982319,400.0,66281.36185449242,1,1,1,2,160.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023385156198249477,44187.574569661614,10,5,10,10_1,10_0,10_0_0 +12329,1,46.0,359.0,7,111,480.0,,,0,67,0.0,0.0,,710.0,318.68552184119983,,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,112340,2,1,0,0,2,,600.0,428.0,32,1.0,1.0,3.0,3.0,1.8,2,2,98.21185806247662,480.0,23884.350023766376,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029726578252852055,13269.083346536874,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +12330,2,57.0,0.0,6,111,720.0,,,0,52,0.0,0.0,,858.0,191.2113131047199,,42,0,0,0,0,0,0,0,0,2,45.0,1,,4,112341,2,1,0,0,2,,200.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,42.701795549438344,720.0,38381.67311798442,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02235441892703653,25587.78207865628,7,4,7,7_1,7_2,7_0_0 +12331,1,39.0,248.0,1,221,0.0,0.0,300.0,0,55,0.0,0.0,189.09548712442313,348.0,66.50828281903301,359.01964426940424,42,0,0,0,0,0,0,0,0,0,,2,,1,112342,1,1,0,1,1,,250.0,234.0,12,1.0,2.0,3.0,1.0,1.0,1,1,741.190540307202,0.0,7359.057636238965,0,4,2,3,50.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04728866346776628,7359.057636238965,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +12332,2,23.0,0.0,2,400,750.0,0.0,0.0,0,45,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,50.0,1,,2,112343,1,3,4,0,1,,87.0,355.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1334.63051940911,750.0,23750.665851609236,0,1,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.03157806205038178,23750.665851609236,6,3,6,6_1,6_0,6_0_1 +12333,2,71.0,0.0,1,111,1450.0,1600.0,0.0,75,74,0.0,0.0,2472.540787889489,3050.0,0.0,3037.6064767036623,10,0,0,0,0,0,0,0,0,0,,1,,1,112344,2,2,1,0,1,,200.0,836.0,41,0.0,0.0,5.0,2.0,1.5,2,2,467.102096700735,1450.0,57106.22021413418,5,5,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05340924313609368,38070.81347608945,9,5,9,9_1,9_2,9_1_0 +12334,2,42.0,0.0,2,111,300.0,1200.0,0.0,56,38,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,112345,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2204.23904470038,300.0,53756.9311082451,1,1,1,2,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027903378579770412,29864.961726802834,8,4,8,8_0,8_2,8_0_1 +12335,2,79.0,0.0,7,112,1798.0,0.0,0.0,90,74,0.0,0.0,3065.950576982966,1888.0,124.70303028568689,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,112346,2,1,1,0,1,,1200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1383.26715048428,1798.0,66232.95751645407,5,5,0,1,92.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02850544609201498,44155.30501096938,10,5,10,10_1,10_0,10_0_0 +12336,2,57.0,0.0,1,111,1300.0,0.0,0.0,31,65,421.8731404146406,0.0,2216.7607063836795,1700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,112347,2,1,0,1,1,,0.0,556.0,43,2.0,0.0,4.0,2.0,1.5,2,2,467.861980362185,1300.0,87171.52384755682,1,1,2,3,60.0,7,5,3,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019501781372698195,58114.349231704546,10,5,10,10_0,10_2,10_1_0 +12337,0,64.0,0.0,6,112,214.0,,,0,78,0.0,0.0,,368.0,213.38074071106422,,71,0,0,0,0,0,0,0,0,0,,1,,4,112348,2,2,0,0,2,,170.0,,21,3.0,0.0,5.0,6.0,3.5,6,6,116.97200302238691,214.0,21311.800647271582,0,5,5,0,68.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01726742878702334,6089.085899220452,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12338,2,87.0,0.0,5,111,1260.0,0.0,0.0,74,72,0.0,0.0,2148.552684648797,1380.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,112349,2,1,2,0,1,,480.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1139.42117812197,1260.0,33220.754421756974,5,5,0,1,140.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04154029684215145,22147.169614504648,6,3,6,6_1,6_3,6_0_0 +12339,2,72.0,0.0,2,400,312.0,,,86,78,0.0,0.0,,386.0,102.53360267934255,,71,0,0,0,0,0,0,0,0,0,,1,,2,112350,2,1,0,0,2,,238.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,128.65996350619938,312.0,12571.76582278481,6,5,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030703721771560645,8381.177215189873,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +12340,2,58.0,0.0,6,111,1200.0,0.0,0.0,31,31,0.0,0.0,2046.2406520464733,1265.0,90.06329965077386,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,112351,1,1,2,0,1,,700.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,390.629588589142,1200.0,52270.996567559465,1,1,0,1,140.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024200801267773932,34847.331045039646,9,5,9,9_1,9_3,9_0_0 +12341,1,49.0,202.0,6,111,600.0,0.0,0.0,0,35,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,4,112352,1,2,0,0,1,,0.0,538.0,32,1.0,0.0,4.0,2.0,1.5,2,2,918.461047594382,600.0,9532.163796907564,0,4,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0629447849180532,6354.775864605042,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +12342,1,34.0,606.0,2,111,420.0,1020.0,0.0,85,67,0.0,0.0,716.1842282162656,1440.0,0.0,1936.4741288985847,71,0,0,0,0,0,0,0,0,0,,2,,2,112353,1,3,0,0,1,,0.0,588.0,42,1.0,0.0,9.0,7.0,3.1999999999999993,3,2,221.730412444761,420.0,17907.30483525176,6,4,2,3,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08041411107076599,5596.032761016177,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12343,2,51.0,0.0,1,111,881.0,0.0,0.0,42,37,2953.111982902484,0.0,1502.2816787107859,3781.0,138.5589225396521,0.0,31,2,2,2,2,1,2,2,2,2,60.0,1,,1,112354,1,3,1,0,1,,556.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,553.980981439111,881.0,78729.9022779008,1,1,1,2,168.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04802495482153435,31491.960911160317,8,4,8,8_1,8_4,8_1_0 +12344,2,37.0,0.0,8,111,817.0,2030.0,0.0,31,37,0.0,0.0,1393.148843934974,2847.0,0.0,3853.9632173177715,10,0,0,0,0,0,0,0,0,3,90.0,1,2001.0,6,112355,2,2,5,0,1,,710.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,1477.40705712986,817.0,146794.1988620537,1,1,1,2,250.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019394499388054154,81552.33270114094,10,5,10,10_1,10_3,10_0_0 +12345,1,45.0,170.0,2,111,2040.0,120.0,0.0,0,52,0.0,0.0,3478.6091084790046,2160.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,112356,2,2,0,1,1,600.0,0.0,320.0,22,3.0,3.0,5.0,4.0,2.5,4,4,268.253782434489,2040.0,48101.6812040603,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04490487537923461,19240.672481624122,5,3,5,5_0,5_4,5_0_1 +12346,2,80.0,0.0,2,221,1800.0,0.0,0.0,0,77,0.0,0.0,3069.36097806971,2300.0,692.7946126982605,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112357,2,1,1,0,1,,257.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,2286.09003740938,1800.0,15503.467549292367,0,5,0,1,160.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14835390809748109,15503.467549292367,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +12347,2,51.0,0.0,8,111,500.0,960.0,0.0,46,54,0.0,0.0,852.6002716860306,1460.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,112358,2,1,1,0,1,,400.0,,43,3.0,3.0,6.0,3.0,2.0,3,3,1627.55779482508,500.0,55338.377368396905,1,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026383137154176638,27669.188684198452,7,4,7,7_1,7_2,7_0_0 +12348,1,40.0,8.0,2,111,800.0,0.0,0.0,56,47,0.0,0.0,1364.160434697649,800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,112359,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,134.694816735745,800.0,41380.99383796925,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019332546799926246,17242.08076582052,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +12349,2,65.0,0.0,2,111,450.0,0.0,0.0,72,78,0.0,0.0,767.3402445174275,959.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,112360,2,2,0,3,1,,1954.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,239.147554321824,450.0,47633.95630866324,5,5,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020132696805316288,31755.97087244216,8,4,8,8_0,8_4,8_0_1 +12350,2,24.0,0.0,2,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,252.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,112361,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1189.91782772548,0.0,33566.40748068058,1,1,1,2,63.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0075075058343685025,22377.604987120387,6,3,6,6_0,6_2,6_0_1 +12351,0,94.0,0.0,2,111,2770.0,180.0,0.0,0,77,0.0,0.0,4723.405505140609,2950.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,1,,2,112362,1,1,1,0,2,,360.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,685.519714055992,2770.0,9514.695122960773,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3100467184577557,9514.695122960773,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +12352,1,38.0,59.0,2,111,348.0,0.0,0.0,55,48,0.0,572.1093836684167,593.4097890934773,780.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,112363,2,1,0,1,1,432.0,0.0,314.0,43,2.0,0.0,3.0,3.0,1.8,2,2,204.91591177604,348.0,29173.97710769906,1,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026736155894019564,16207.76505983281,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +12353,2,70.0,0.0,2,111,350.0,350.0,0.0,0,77,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,20,0,0,0,0,0,0,0,0,0,,2,,2,112364,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1768.3112439774,350.0,16285.692426927395,0,5,0,1,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.042982513831747976,16285.692426927395,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +12354,2,54.0,0.0,1,112,1600.0,0.0,0.0,43,42,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,40.0,1,,1,112365,2,1,1,0,1,,263.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,919.418347719444,1600.0,70875.64208278507,1,1,0,1,100.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022574751395283976,28350.25683311403,8,4,8,8_1,8_0,8_1_0 +12355,2,44.0,0.0,2,111,780.0,200.0,0.0,0,63,0.0,0.0,1330.0564238302077,980.0,0.0,379.7008095879578,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,112366,2,1,0,1,1,912.0,184.0,319.0,12,1.0,5.0,4.0,1.0,1.0,1,1,329.187577123841,780.0,19883.533962026788,0,1,2,3,76.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04928701315729821,19883.533962026788,5,3,5,5_0,5_2,5_0_1 +12356,2,29.0,0.0,9,111,0.0,0.0,0.0,42,48,0.0,0.0,0.0,3656.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,112367,2,1,1,0,1,,524.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,248.429915901365,0.0,49088.73350649035,1,1,1,2,126.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07447737472217766,27271.51861471686,7,4,7,7_1,7_3,7_0_0 +12357,2,65.0,0.0,7,112,416.0,1650.0,0.0,75,74,0.0,0.0,709.3634260427774,2066.0,0.0,3132.5316791006517,44,2,2,1,2,2,2,2,1,0,,1,,5,112368,2,1,1,0,1,,340.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,74.8957695608053,416.0,47724.57908281567,5,5,0,1,165.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.043290062263616924,31816.386055210445,8,4,8,8_1,8_0,8_0_0 +12358,2,58.0,0.0,6,111,0.0,0.0,982.0,85,78,0.0,397.2981831030672,618.9725611872784,1282.0,0.0,1175.1909689085167,50,0,0,0,0,0,0,0,0,0,,1,,4,112369,2,1,3,0,1,,240.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1739.63096995533,0.0,10352.1302490657,7,7,0,1,83.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12383924556162756,6901.4201660438,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +12359,2,70.0,0.0,2,111,320.0,,,0,77,0.0,0.0,,416.0,133.01656563806603,,41,0,0,0,0,0,0,0,0,0,,2,,2,112370,2,2,0,0,2,,600.0,466.0,21,1.0,4.0,5.0,2.0,1.5,2,2,165.19763861503867,320.0,11092.684210526306,0,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03750219442876057,7395.1228070175375,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +12360,1,37.0,315.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,418.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,112371,2,1,0,1,1,220.0,0.0,286.0,42,1.0,0.0,4.0,4.0,2.1,2,2,422.547076408767,0.0,9760.447089568735,6,1,2,3,75.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.042825907067999824,4647.831947413683,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +12361,2,59.0,0.0,1,111,500.0,1400.0,0.0,77,62,0.0,0.0,852.6002716860306,1900.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,2,1.0,1,,1,112372,2,1,2,0,1,,350.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,354.700141024922,500.0,19116.04021960232,7,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09939296936881663,12744.026813068214,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +12362,1,23.0,108.0,1,112,0.0,0.0,0.0,0,69,0.0,0.0,0.0,961.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,3.0,1,,1,112373,2,1,2,0,1,,89.0,420.0,12,1.0,0.0,3.0,1.0,1.0,1,1,917.490903450301,0.0,11591.328595230298,0,2,2,3,75.0,7,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08290680331462959,11591.328595230298,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +12363,2,53.0,0.0,5,111,300.0,160.0,0.0,0,56,0.0,0.0,511.56016301161833,460.0,0.0,303.7606476703662,71,2,1,2,2,1,2,2,2,0,,2,,3,112374,1,3,0,1,1,,0.0,276.0,12,1.0,3.0,2.0,1.0,1.0,1,1,993.472709688798,300.0,12339.876841118816,0,4,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03727751953465148,12339.876841118816,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +12364,2,43.0,0.0,2,112,256.0,432.0,0.0,0,47,0.0,0.0,436.53133910324766,688.0,0.0,820.1537487099888,50,0,0,0,0,0,0,0,0,2,1.0,2,,2,112375,2,1,0,0,1,,427.0,353.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1964.52069637042,256.0,18939.569464977878,0,1,2,3,53.0,9,2,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03632606333909627,18939.569464977878,5,3,5,5_0,5_1,5_0_1 +12365,2,71.0,0.0,5,112,2160.0,0.0,0.0,75,78,0.0,0.0,3683.2331736836522,2160.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,112376,2,1,2,0,1,,216.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,1693.25581444303,2160.0,49484.105898312635,5,5,0,1,98.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043650379466059104,32989.40393220842,8,4,8,8_1,8_2,8_0_0 +12366,2,28.0,0.0,7,111,360.0,1800.0,0.0,52,46,0.0,0.0,613.872195613942,2160.0,0.0,3417.30728629162,43,2,2,2,1,2,2,2,2,2,5.0,1,,5,112377,1,3,1,0,1,,250.0,650.0,43,2.0,0.0,2.0,3.0,1.8,2,2,298.539587193047,360.0,46377.6248910819,1,1,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.046574183241870876,25765.347161712165,7,4,7,7_1,7_3,7_0_0 +12367,2,60.0,0.0,2,111,500.0,0.0,0.0,0,72,2953.111982902484,0.0,852.6002716860306,3380.0,110.84713803172167,0.0,31,2,2,2,1,2,2,2,2,0,,1,,2,112378,1,2,2,0,2,,350.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1392.96550040222,500.0,18140.720250126116,0,6,0,1,185.0,7,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.18632115778184175,18140.720250126116,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +12368,2,35.0,0.0,2,111,1200.0,,,90,90,0.0,0.0,,1350.0,207.83838380947813,,10,0,0,0,0,0,0,0,0,0,,1,,2,112379,2,1,0,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,60.13975398847609,1200.0,18727.746875,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07208555353779043,8917.974702380952,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +12369,2,61.0,0.0,7,111,250.0,,,0,48,0.0,0.0,,274.0,33.25414140951651,,44,0,0,0,0,0,0,0,0,2,45.0,1,,5,112380,2,1,0,0,2,,250.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,103.08760070384427,250.0,85973.68611509037,0,1,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0031870216618745937,85973.68611509037,10,5,10,10_1,10_3,10_0_0 +12370,2,50.0,0.0,9,211,933.0,0.0,0.0,54,62,0.0,0.0,1590.952106966133,1018.0,117.77508415870429,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,112381,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,931.76967739186,933.0,44020.11533287799,1,1,1,2,92.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02312579129568228,17608.046133151198,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +12371,2,46.0,0.0,7,112,1300.0,,,21,22,0.0,0.0,,1420.0,166.2707070475825,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,112382,2,1,0,0,2,,250.0,750.0,43,2.0,0.0,4.0,3.0,1.8,2,2,90.37615570821956,1300.0,32795.930482898184,1,1,2,3,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04329805494436193,18219.961379387878,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +12372,2,44.0,0.0,9,111,1600.0,0.0,0.0,63,43,0.0,331.081819252556,2728.320869395298,1850.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,112383,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,3629.13379040314,1600.0,57545.0,1,1,1,2,150.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03214875314970892,27402.38095238095,7,4,7,7_1,7_2,7_0_0 +12373,2,42.0,0.0,7,112,1200.0,0.0,0.0,53,54,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,112384,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,827.961637636895,1200.0,46351.740283236584,1,1,1,2,92.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02588899559471315,25750.966824020325,7,4,7,7_1,7_0,7_0_0 +12375,2,41.0,0.0,2,111,791.0,,,0,21,0.0,0.0,,916.0,173.19865317456512,,71,0,0,0,0,0,0,0,0,0,,2,,2,112386,2,1,0,0,2,,252.0,290.0,12,1.0,0.0,2.0,1.0,1.0,1,1,61.94181800578531,791.0,6296.860254324776,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.14546932328232595,6296.860254324776,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +12376,2,72.0,0.0,1,112,494.0,0.0,0.0,0,78,1409.0562889848995,847.5694572865433,842.3690684257982,2598.0,177.35542085075468,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,112387,1,3,4,0,2,,0.0,541.0,11,0.0,2.0,6.0,1.0,1.0,1,1,986.777550765488,494.0,21331.611785929766,0,5,2,3,200.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.12179107823974318,21331.611785929766,6,3,6,6_1,6_0,6_1_0 +12378,0,36.0,0.0,1,111,578.0,1249.0,0.0,56,67,0.0,0.0,985.6059140690513,1827.0,0.0,2371.2315558767964,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,112389,1,1,0,0,2,,190.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,1350.525895934,578.0,43183.67078164991,1,1,5,0,90.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04230765858784634,17993.196159020797,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +12379,2,33.0,0.0,1,111,0.0,0.0,5000.0,46,31,0.0,0.0,3151.591452073719,5000.0,0.0,5983.660737823404,10,0,0,0,0,0,0,0,0,2,18.0,1,,1,112390,1,2,1,0,1,,427.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,367.915475902666,0.0,176613.15972437285,1,1,1,2,280.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02831046116723766,84101.50463065373,10,5,10,10_1,10_3,10_1_0 +12380,2,64.0,0.0,5,120,900.0,0.0,0.0,0,74,3164.0485531098047,0.0,1534.680489034855,3966.0,91.44888887617039,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,112391,2,2,2,0,2,,238.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1875.7621412547,900.0,42606.588738932456,0,5,0,1,130.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09308419466062542,42606.588738932456,9,5,9,9_1,9_0,9_0_0 +12381,2,49.0,0.0,5,120,1442.0,0.0,0.0,85,62,0.0,662.163638505112,2458.899183542512,2002.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,112392,2,1,2,0,1,,590.0,,42,1.0,1.0,4.0,4.0,2.5,4,3,845.724903573525,1442.0,87796.4049062958,6,4,1,2,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02280275601417523,35118.56196251832,9,5,9,9_1,9_0,9_0_0 +12382,2,53.0,0.0,1,111,600.0,1780.0,0.0,0,37,0.0,0.0,1023.1203260232367,2380.0,0.0,3379.3372053328244,20,0,0,0,0,0,0,0,0,2,6.0,2,,1,112393,2,2,0,1,1,1780.0,0.0,300.0,12,1.0,4.0,5.0,1.0,1.0,1,1,873.809719532772,600.0,125510.06972575061,0,1,2,3,96.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018962621925081292,125510.06972575061,10,5,10,10_0,10_2,10_1_0 +12383,2,45.0,0.0,9,111,500.0,,,62,42,0.0,0.0,,524.0,33.25414140951651,,20,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,112394,2,1,0,0,1,,600.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,159.11115151539738,500.0,50121.516807871136,4,1,1,2,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010454591827470602,33414.34453858076,8,4,8,8_1,8_2,8_0_0 +12384,1,62.0,233.0,2,111,185.0,559.0,0.0,0,78,0.0,0.0,315.46210052383134,744.0,0.0,1061.263762798342,71,2,2,2,1,1,2,2,2,0,,2,,2,112395,2,2,0,0,1,,214.0,219.0,11,0.0,0.0,2.0,1.0,1.0,1,1,470.272792716347,185.0,9809.29805971249,0,7,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.07584640567255907,9809.29805971249,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +12385,2,64.0,0.0,5,111,607.0,0.0,0.0,75,77,0.0,0.0,1035.056729826841,607.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,112396,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,656.406585462195,607.0,51806.69984362446,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011716631281903587,34537.79989574964,9,5,9,9_0,9_4,9_0_0 +12386,2,72.0,0.0,5,400,1800.0,0.0,0.0,77,75,843.7462808292812,1324.327277010224,3069.36097806971,3850.0,346.39730634913025,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,112397,2,1,2,0,1,,246.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1256.81471353053,1800.0,41993.70609734299,5,5,0,1,150.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09168040541779178,27995.80406489533,7,4,7,7_1,7_0,7_0_0 +12387,2,55.0,0.0,1,112,900.0,0.0,0.0,52,38,0.0,1986.490915515336,1534.680489034855,2520.0,166.2707070475825,0.0,60,2,2,2,2,1,2,2,2,2,20.0,1,,1,112398,2,3,3,0,1,,350.0,,43,2.0,8.0,5.0,2.0,1.5,2,2,549.630277618191,900.0,60506.526075736496,1,1,1,2,100.0,8,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.041648399989873755,40337.684050491,9,5,9,9_1,9_1,9_1_0 +12388,2,82.0,0.0,2,111,301.0,1662.0,0.0,0,74,0.0,0.0,513.2653635549904,1963.0,0.0,3155.3137276759294,20,0,0,0,0,0,0,0,0,0,,1,,2,112399,2,1,1,0,2,,282.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1641.90666530925,301.0,68666.43011085183,0,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02858747712428076,68666.43011085183,10,5,10,10_1,10_2,10_0_1 +12389,1,28.0,413.0,5,111,500.0,,,0,54,0.0,0.0,,592.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,112400,2,2,0,0,2,,300.0,650.0,32,1.0,0.0,3.0,3.0,1.6,1,1,89.21805706914041,500.0,31774.288738320356,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018631416264749855,19858.93046145022,5,3,5,5_1,5_2,5_0_0 +12390,2,42.0,0.0,1,300,879.0,0.0,0.0,48,37,1529.2901340030721,0.0,1498.8712776240418,2414.0,117.77508415870429,0.0,31,1,2,2,1,1,2,2,2,0,,1,,1,112401,1,2,1,0,1,,332.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,950.323389961703,879.0,67212.00996110622,4,1,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03591620011657019,32005.719029098196,8,4,8,8_1,8_0,8_1_0 +12391,2,59.0,0.0,8,111,0.0,,,0,43,0.0,0.0,,2628.0,0.0,,20,0,0,0,0,0,0,0,0,2,40.0,2,2000.0,6,112402,2,3,0,0,2,,102.0,800.0,12,1.0,1.0,3.0,1.0,1.0,1,1,29.490261649088556,0.0,32213.695409000426,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08158020887183727,32213.695409000426,8,4,8,8_0,8_2,8_0_0 +12392,2,41.0,0.0,9,111,400.0,0.0,0.0,0,46,0.0,0.0,682.0802173488245,400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,2,2008.0,6,112403,1,1,0,0,1,,290.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1185.5600584845,400.0,33146.27096731652,0,1,1,2,44.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012067722501708116,33146.27096731652,8,4,8,8_0,8_3,8_0_0 +12393,2,62.0,0.0,6,111,515.0,0.0,0.0,0,75,0.0,529.7309108040896,878.1782798366115,945.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112404,2,1,2,0,1,,138.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1319.0668588706,515.0,25006.543525520436,0,5,0,1,100.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03779010877835155,25006.543525520436,7,4,7,7_1,7_2,7_0_0 +12394,2,58.0,0.0,2,111,450.0,0.0,0.0,0,62,0.0,0.0,767.3402445174275,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112405,2,1,0,1,1,740.0,0.0,415.0,12,1.0,3.0,3.0,1.0,1.0,1,1,705.759674523211,450.0,15920.008423400863,0,4,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02826631670235449,15920.008423400863,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +12395,1,46.0,355.0,7,111,564.0,,,0,55,0.0,0.0,,612.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,0,,2,,5,112406,2,1,0,0,2,,500.0,344.0,32,1.0,1.0,3.0,2.0,1.5,2,2,94.39396462533622,564.0,14728.62137752817,0,4,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04155175045328709,9819.080918352114,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12396,2,52.0,0.0,6,111,1060.0,0.0,0.0,78,52,0.0,0.0,1807.5125759743848,1180.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,112407,2,1,2,0,1,,394.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,245.216659940858,1060.0,45225.46768633987,5,1,0,1,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02609149358462938,30150.311790893247,8,4,8,8_1,8_3,8_0_0 +12397,2,55.0,0.0,5,112,946.0,100.0,0.0,64,64,0.0,476.7578197236806,1613.1197140299698,1406.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,112408,2,1,4,0,1,,340.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,2038.16141136183,946.0,42484.177519617646,1,1,1,2,135.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03309467387831059,28322.78501307843,8,4,8,8_1,8_1,8_0_0 +12398,1,74.0,143.0,2,111,170.0,1240.0,0.0,0,77,0.0,0.0,289.8840923732504,1410.0,0.0,2354.145019445338,70,2,2,2,2,1,2,2,2,0,,2,,2,112409,1,3,0,0,2,,0.0,501.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1469.29931390767,170.0,11925.661246758074,0,5,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.11823243766741243,11925.661246758074,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +12399,2,22.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,403.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,112410,2,1,0,1,1,444.0,0.0,318.0,12,1.0,0.0,3.0,1.0,1.0,1,1,439.850522046265,0.0,11155.801557897925,0,1,2,3,59.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03612470138595194,11155.801557897925,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +12400,2,78.0,0.0,2,211,2220.0,0.0,0.0,75,77,0.0,0.0,3785.545206285976,2220.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,112411,2,1,2,0,1,,360.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1521.95506553801,2220.0,46091.23848859821,5,5,0,1,85.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04816533625038457,30727.49232573214,8,4,8,8_1,8_1,8_0_1 +12401,2,45.0,0.0,7,111,180.0,,,63,52,0.0,0.0,,432.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,1,15.0,1,,5,112412,2,2,0,0,2,,420.0,,43,4.0,0.0,3.0,5.0,2.8,4,4,132.85025257064513,180.0,26691.793947324804,4,1,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016184749547090573,9532.783552616002,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12402,2,58.0,0.0,8,120,300.0,,,54,53,0.0,158.91927324122688,,546.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,75.0,1,2002.0,6,112413,2,1,0,0,1,,540.0,,43,2.0,2.0,5.0,4.0,2.3,3,3,111.19434638494353,300.0,32811.93410633897,1,1,0,1,92.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016640286983098558,14266.058307103902,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +12403,2,67.0,0.0,1,120,800.0,0.0,0.0,0,74,0.0,291.3520009422493,1364.160434697649,1090.0,96.99124577775646,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,112414,1,3,3,0,1,,150.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,559.631294700303,800.0,14550.83720873838,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.07490977902944375,14550.83720873838,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +12404,2,63.0,0.0,2,111,600.0,400.0,0.0,77,75,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,71,2,1,2,2,2,1,2,2,0,,2,,2,112415,2,2,0,1,2,,0.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,382.313408102789,600.0,11445.379246193532,5,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.08737150412316629,7630.252830795688,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +12405,2,75.0,0.0,6,111,430.0,,,77,78,0.0,0.0,,510.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,4,112416,2,1,0,0,2,,210.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,130.85332610005173,430.0,17773.25326044744,5,5,0,1,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028694802944993356,11848.83550696496,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12406,2,77.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,203.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,112417,1,1,0,1,2,,0.0,399.0,11,0.0,0.0,2.0,1.0,1.0,1,1,327.428929576254,0.0,23240.307202314754,0,5,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.008734824296116921,23240.307202314754,6,3,6,6_0,6_4,6_0_1 +12407,2,48.0,0.0,7,112,650.0,0.0,0.0,54,48,1582.0242765549024,0.0,1108.3803531918397,2150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,5,112418,1,2,3,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,670.999365964147,650.0,40379.60015367418,1,1,0,1,70.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05324470752106666,16151.840061469673,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +12408,2,82.0,0.0,2,111,0.0,,,0,90,0.0,0.0,,170.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,112419,2,1,0,0,2,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,157.51411304061747,0.0,9566.780110399437,0,5,0,1,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01776982412454571,9566.780110399437,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +12410,2,40.0,0.0,8,111,700.0,0.0,0.0,0,46,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,112421,2,1,2,0,1,,250.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,1913.0549174531,700.0,29886.19350227866,0,1,1,2,85.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02342218656740708,19924.129001519108,5,3,5,5_1,5_3,5_0_0 +12411,2,67.0,0.0,2,111,540.0,1200.0,0.0,75,77,0.0,0.0,920.8082934209131,1740.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,2,,2,112422,1,1,0,0,2,,158.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,331.114767897042,540.0,23370.552305398684,5,5,1,2,70.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07445266920790972,15580.368203599122,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +12412,2,62.0,0.0,5,112,0.0,,,0,77,0.0,0.0,,400.0,554.2356901586083,,71,0,0,0,0,0,0,0,0,0,,1,,3,112423,2,2,0,0,2,,120.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,91.20726406153356,0.0,6346.0,0,5,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06303183107469272,6346.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12413,1,37.0,215.0,2,111,180.0,180.0,0.0,0,43,0.0,0.0,306.936097806971,360.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,0,,2,,2,112424,2,3,0,1,1,672.0,0.0,265.0,12,1.0,1.0,1.0,1.0,1.0,1,1,409.669723745813,180.0,6108.373063275512,0,4,2,3,25.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0589354966160099,6108.373063275512,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +12414,2,61.0,0.0,8,112,1026.0,0.0,0.0,74,75,0.0,225.13563709173806,1749.5357574997347,1231.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,112425,2,1,2,0,1,,228.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,865.12837904642,1026.0,52854.62070403062,5,5,1,2,94.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023290300518723158,35236.41380268708,9,5,9,9_1,9_0,9_0_0 +12415,2,51.0,0.0,7,111,550.0,1200.0,0.0,62,21,0.0,0.0,937.8602988546337,1750.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,5,112426,2,1,2,0,1,,500.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1552.56407307276,550.0,56627.839777111694,1,1,0,1,100.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030903527432585013,37751.89318474113,9,5,9,9_1,9_2,9_0_0 +12416,0,55.0,0.0,5,112,299.0,,,0,43,0.0,0.0,,342.0,59.5803366920504,,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,112427,2,2,0,0,2,,155.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,107.72831584496265,299.0,29225.459827550763,0,1,5,0,40.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011702125544577318,29225.459827550763,8,4,8,8_1,8_2,8_0_0 +12417,2,80.0,0.0,2,111,0.0,0.0,2000.0,0,78,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,71,2,2,1,2,1,2,2,2,0,,1,,2,112428,2,2,2,0,1,,166.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,290.558513793988,0.0,23344.708652029152,0,6,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08567251919103122,23344.708652029152,6,3,6,6_1,6_3,6_0_1 +12418,2,43.0,0.0,8,111,402.0,,,68,52,0.0,0.0,,522.0,166.2707070475825,,50,2,2,1,2,1,2,2,2,0,,2,2000.0,6,112429,2,2,0,0,2,,400.0,553.0,43,2.0,0.0,4.0,3.0,1.8,2,2,177.4847231473806,402.0,28970.02649273607,4,1,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.018018623494558628,16094.459162631149,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +12419,2,55.0,0.0,2,111,542.0,0.0,0.0,0,37,0.0,0.0,924.2186945076571,654.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,112430,1,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,370.892683201559,542.0,39502.72535630034,0,1,0,1,48.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01655581973398432,39502.72535630034,9,5,9,9_0,9_3,9_0_1 +12420,0,28.0,0.0,8,111,609.0,,,56,55,0.0,0.0,,609.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,2,2003.0,6,112431,2,1,0,0,1,,220.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,128.48784295488895,609.0,54578.94285949186,1,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011158149427111677,36385.9619063279,9,5,9,9_0,9_2,9_0_0 +12421,2,74.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1631.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,112432,1,2,0,0,2,,274.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,992.715611655904,0.0,29189.88609649414,0,5,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05587551779436,29189.88609649414,8,4,8,8_0,8_4,8_1_0 +12422,1,26.0,300.0,7,111,220.0,460.0,0.0,0,54,0.0,0.0,375.14411954185346,680.0,0.0,873.3118620523029,43,0,0,0,0,0,0,0,0,0,,2,,5,112433,2,1,0,0,1,,768.0,325.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1628.41958227778,220.0,13003.642570440214,0,4,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05229303991681308,10002.801977261703,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12423,2,48.0,0.0,8,120,600.0,0.0,0.0,21,21,0.0,0.0,1023.1203260232367,720.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,112434,2,1,1,0,1,,360.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,319.350879066902,600.0,30896.56806766092,1,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023303559101556515,20597.71204510728,5,3,5,5_1,5_0,5_0_0 +12424,2,57.0,0.0,7,112,579.0,1025.0,0.0,52,64,0.0,0.0,987.3111146124235,1604.0,0.0,1945.9666491382836,50,1,2,2,1,1,2,2,2,2,40.0,1,,5,112435,1,3,3,0,1,,349.0,497.0,43,3.0,2.0,4.0,4.0,2.3,3,3,1447.27415425402,579.0,55506.31954562228,1,1,2,3,90.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02889761045463706,24133.182411140126,6,3,6,6_1,6_2,6_0_0 +12425,2,30.0,0.0,2,111,1600.0,0.0,0.0,0,42,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,112436,2,2,5,0,1,,178.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1206.36721297561,1600.0,22563.732705352828,0,1,1,2,120.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07091025323218926,22563.732705352828,6,3,6,6_1,6_2,6_0_1 +12426,2,83.0,0.0,7,112,500.0,,,77,78,0.0,79.45963662061344,,710.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,112437,2,3,0,0,2,,700.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,108.18857120082987,500.0,23080.180756279486,5,5,0,1,80.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030762324069183403,15386.787170852991,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +12427,2,33.0,0.0,5,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,1180.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,112438,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,120.031208133007,0.0,53787.691407450446,1,1,1,2,68.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02193810459462388,35858.4609383003,9,5,9,9_0,9_3,9_0_0 +12428,2,61.0,0.0,7,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,357.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,112439,2,2,0,1,1,519.0,109.0,365.0,12,1.0,1.0,3.0,1.0,1.0,1,1,314.613746131655,0.0,14353.642250579162,0,1,2,3,59.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02487173595159063,14353.642250579162,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +12429,2,77.0,0.0,2,111,468.0,,,0,86,0.0,0.0,,606.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,112440,2,1,0,0,1,,348.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,68.73468729971734,468.0,14079.26581916065,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043042017089789365,14079.26581916065,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +12430,2,34.0,0.0,5,111,660.0,0.0,0.0,48,37,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,31,2,2,2,1,2,2,2,2,3,45.0,2,,3,112441,1,2,0,0,1,,0.0,522.0,43,2.0,0.0,3.0,2.0,1.5,2,2,969.316419824984,660.0,74825.24000497395,1,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.008820553064128187,49883.4933366493,10,5,10,10_0,10_4,10_0_0 +12431,2,82.0,0.0,2,111,456.0,0.0,0.0,75,75,0.0,0.0,777.5714477776598,456.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112442,2,1,0,1,1,,275.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,388.879258095187,456.0,45377.76911928638,5,5,0,1,74.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010048973513909296,30251.846079524254,8,4,8,8_0,8_2,8_0_1 +12433,2,23.0,0.0,2,112,0.0,0.0,0.0,84,22,0.0,0.0,0.0,658.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,112444,2,2,0,0,1,,60.0,500.0,42,1.0,0.0,3.0,2.0,1.5,2,2,2279.62734782487,0.0,13933.0,3,1,2,3,70.0,9,0,9,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.047226010191631376,9288.666666666666,1,1,1_0,1_0_0,1_0_0,1_0_1_0 +12434,2,54.0,0.0,2,111,1830.0,0.0,0.0,38,21,2636.7071275915036,0.0,3120.516994370872,4330.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,112445,1,1,2,0,2,,1500.0,2900.0,43,2.0,3.0,7.0,2.0,1.5,2,2,1474.27981370969,1830.0,238315.1479275694,1,1,2,3,200.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01816921852284441,158876.76528504628,10,5,10,10_1,10_3,10_0_1 +12435,2,66.0,0.0,1,111,1400.0,0.0,0.0,0,75,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112446,2,1,1,0,1,,250.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1066.14108033783,1400.0,33664.50810550877,0,5,0,1,96.0,3,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04158682478330666,33664.50810550877,9,5,9,9_1,9_2,9_1_0 +12436,2,65.0,0.0,1,111,538.0,1497.0,0.0,0,78,0.0,0.0,917.3978923341689,2035.0,0.0,2842.060559765864,71,0,0,0,0,0,0,0,0,0,,1,,1,112447,2,1,1,0,1,,150.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1861.3019250936,538.0,16384.4927070085,0,5,0,1,81.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12420280788611324,16384.4927070085,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +12437,1,57.0,282.0,2,111,180.0,180.0,0.0,0,56,0.0,0.0,306.936097806971,360.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,0,,2,,2,112448,2,2,0,1,1,1080.0,0.0,258.0,32,1.0,4.0,4.0,2.0,1.5,2,2,377.382295695749,180.0,8997.499233852792,0,4,2,3,79.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.040011117605379946,5998.332822568528,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12438,2,61.0,0.0,1,120,472.0,0.0,0.0,0,78,0.0,675.4069112752142,804.8546564716129,1042.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112449,2,1,2,0,1,,243.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,891.93678135968,472.0,18642.45042703976,0,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0558939396984337,18642.45042703976,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +12439,2,71.0,0.0,6,111,1200.0,0.0,0.0,86,72,0.0,158.91927324122688,2046.2406520464733,1320.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,112450,2,1,2,0,1,,450.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1436.56621983971,1200.0,32320.75802051581,6,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04084062629849589,21547.172013677206,6,3,6,6_1,6_3,6_0_0 +12440,2,36.0,0.0,2,111,450.0,0.0,0.0,0,52,0.0,0.0,767.3402445174275,450.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,112451,2,1,0,0,1,,246.0,507.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2359.79948126762,450.0,21899.183664786022,0,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02054871117061783,21899.183664786022,6,3,6,6_0,6_3,6_0_1 +12441,1,48.0,253.0,9,111,180.0,,,0,85,0.0,0.0,,224.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,112452,2,1,0,0,1,,80.0,407.0,11,0.0,0.0,2.0,1.0,1.0,1,1,154.7478505464349,180.0,14291.611656716002,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015673529716624824,14291.611656716002,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +12442,1,52.0,340.0,6,111,310.0,850.0,0.0,0,85,0.0,0.0,528.612168445339,1160.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,0,,2,,4,112453,2,2,0,0,1,,727.0,395.0,31,2.0,2.0,3.0,3.0,2.0,3,3,896.323343894413,310.0,9474.567501183074,0,6,2,3,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12243302924963623,4737.283750591537,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12443,1,63.0,96.0,2,111,0.0,0.0,0.0,77,75,0.0,0.0,0.0,326.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112454,2,1,0,1,1,,0.0,252.0,41,0.0,4.0,2.0,2.0,1.5,2,2,268.197785536051,0.0,31111.008581672366,5,5,2,3,61.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.010478605961751045,20740.67238778158,5,3,5,5_0,5_2,5_0_1 +12445,1,43.0,350.0,2,111,0.0,0.0,0.0,63,81,0.0,0.0,0.0,875.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112456,2,1,1,0,2,,883.0,550.0,43,2.0,4.0,4.0,3.0,2.0,3,2,523.77739281922,0.0,9468.275317958238,4,4,2,3,60.0,6,4,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0924138737643602,4734.137658979119,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +12446,2,83.0,0.0,2,111,1240.0,0.0,0.0,0,77,0.0,0.0,2114.448673781356,1240.0,0.0,0.0,70,2,2,2,2,2,2,2,1,0,,1,,2,112457,2,1,1,0,1,,278.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,1256.38139162647,1240.0,15301.756212106939,0,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.08103644985657898,15301.756212106939,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +12447,2,35.0,0.0,9,221,2429.0,0.0,0.0,47,38,0.0,0.0,4141.932119850737,2489.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,112458,2,1,1,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,513.726410520428,2429.0,95314.29318397475,1,1,1,2,151.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026113607066211526,45387.75865903559,10,5,10,10_1,10_1,10_0_0 +12448,2,38.0,0.0,2,111,0.0,0.0,0.0,46,48,0.0,0.0,0.0,1058.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,112459,1,1,1,0,2,,830.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1343.56425782082,0.0,46503.78137212534,1,1,1,2,88.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022750838077743328,20219.035379184934,5,3,5,5_1,5_3,5_0_1 +12449,2,65.0,0.0,1,111,450.0,1400.0,0.0,0,74,0.0,0.0,767.3402445174275,1850.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,0,,1,,1,112460,2,1,1,0,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,837.166255619105,450.0,50969.31048341452,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03629635132305728,50969.31048341452,10,5,10,10_1,10_4,10_1_0 +12450,2,63.0,0.0,7,111,0.0,0.0,0.0,46,21,0.0,0.0,0.0,803.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,112461,2,1,1,0,1,,195.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1457.99943780428,0.0,76929.15333979223,4,5,0,1,118.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010438175452850612,51286.10222652816,10,5,10,10_1,10_3,10_0_0 +12451,0,43.0,0.0,2,111,450.0,,,55,21,0.0,0.0,,588.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,112462,2,2,0,0,2,,400.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,131.04473004841282,450.0,12919.321367072895,4,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04551322653050638,8612.88091138193,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +12452,2,23.0,0.0,9,111,0.0,0.0,0.0,84,55,0.0,0.0,0.0,374.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,2005.0,6,112463,2,1,0,0,1,,324.0,481.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1637.61414946698,0.0,19374.001445134385,3,1,2,3,40.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019304220713472018,12916.000963422923,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +12453,2,52.0,0.0,2,111,240.0,85.0,0.0,0,33,0.0,0.0,409.2481304092947,325.0,0.0,161.37284407488207,50,0,0,0,0,0,0,0,0,0,,2,,2,112464,1,1,0,1,2,,0.0,,22,2.0,0.0,5.0,3.0,2.0,3,3,348.541903219821,240.0,61004.65715965062,0,1,1,2,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005327462117350605,30502.32857982531,8,4,8,8_0,8_3,8_0_1 +12454,2,53.0,0.0,2,111,672.0,0.0,0.0,48,38,2399.4034861082687,0.0,1145.894765146025,2947.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,90.0,1,,2,112465,2,2,3,0,1,,409.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,469.142806063235,672.0,100459.78460157764,1,1,0,1,81.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029335121627900838,50229.89230078882,10,5,10,10_1,10_4,10_0_1 +12455,2,41.0,0.0,1,111,1500.0,2000.0,0.0,31,34,0.0,0.0,2557.8008150580918,3500.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,0,,1,,1,112466,2,1,3,0,2,,204.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1277.54239757491,1500.0,195216.19811398775,1,1,1,2,180.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017928840095309775,84876.60787564685,10,5,10,10_1,10_3,10_1_0 +12456,2,57.0,0.0,2,111,517.0,105.0,0.0,74,90,0.0,0.0,881.5886809233556,622.0,0.0,199.34292503367786,50,2,2,2,2,1,2,2,2,3,45.0,2,,2,112467,1,3,0,1,1,,0.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,734.07927026461,517.0,147720.69855286437,5,1,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.00421064892119642,73860.34927643219,10,5,10,10_0,10_4,10_0_1 +12457,2,50.0,0.0,7,211,3000.0,0.0,0.0,43,21,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,5,112468,1,2,2,0,1,,850.0,,43,2.0,2.0,7.0,3.0,2.0,3,3,1602.02168012897,3000.0,205941.18995632004,1,1,0,1,200.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014567265541372746,102970.59497816002,10,5,10,10_1,10_1,10_0_0 +12458,2,33.0,0.0,9,221,1090.0,0.0,0.0,67,63,0.0,0.0,1858.6685922755466,1190.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2011.0,6,112469,2,1,1,0,1,,575.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,2263.86562507335,1090.0,10407.001619656987,1,1,1,2,90.0,1,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11434609539718917,4336.250674857078,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +12459,2,26.0,0.0,7,120,0.0,0.0,0.0,55,69,0.0,0.0,0.0,2759.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,13.0,1,,5,112470,2,1,1,0,2,,154.0,440.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1625.13357377554,0.0,28814.0,1,1,2,3,80.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09575206496841814,19209.333333333332,5,3,5,5_1,5_0,5_0_0 +12460,2,43.0,0.0,2,111,680.0,190.0,0.0,54,62,0.0,0.0,1159.5363694930015,870.0,0.0,360.7157691085599,50,0,0,0,0,0,0,0,0,0,,2,,2,112471,1,3,0,1,2,,330.0,,43,2.0,1.0,4.0,4.0,2.3,3,2,1265.07597457293,680.0,46340.099366874194,1,1,1,2,83.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01877423682483322,20147.8692899453,5,3,5,5_0,5_3,5_0_1 +12461,2,53.0,0.0,7,112,2030.0,0.0,0.0,21,21,0.0,317.83854648245375,3461.5571030452843,2480.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,112472,2,1,1,0,1,,1600.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,1358.56724289375,2030.0,52566.69570614182,1,1,1,2,120.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047178160367234954,26283.34785307091,7,4,7,7_1,7_1,7_0_0 +12462,2,56.0,0.0,2,300,150.0,0.0,0.0,38,43,0.0,198.6490915515336,255.78008150580916,330.0,41.567676761895626,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,112473,1,3,3,0,2,,250.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,777.153972365093,150.0,170602.88530158944,4,1,1,2,60.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0019343166407568696,113735.25686772629,10,5,10,10_1,10_0,10_0_1 +12463,2,52.0,0.0,8,111,1500.0,0.0,0.0,55,47,0.0,0.0,2557.8008150580918,1650.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,112474,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,1747.57491062386,1500.0,115420.49244830187,1,1,0,1,70.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014295555018005607,57710.246224150935,10,5,10,10_0,10_2,10_0_0 +12464,2,68.0,0.0,7,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,317.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,112475,2,1,0,1,2,,397.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,785.875316689524,0.0,4291.7552090243225,5,5,0,1,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07386255379464339,2861.170139349548,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +12465,2,65.0,0.0,5,221,680.0,0.0,0.0,78,72,1160.1511361402618,0.0,1159.5363694930015,1780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,112476,2,1,2,0,1,,258.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1564.65048651911,680.0,30729.006648842096,5,5,0,1,104.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.057925725368902295,20486.004432561396,5,3,5,5_1,5_1,5_0_0 +12466,2,31.0,0.0,2,111,300.0,0.0,0.0,54,43,0.0,0.0,511.56016301161833,300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,,2,112477,2,1,0,1,1,,150.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1730.48376206096,300.0,47511.22431064401,1,1,1,2,70.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0063142973971477,26395.12461702445,7,4,7,7_0,7_2,7_0_1 +12467,1,62.0,346.0,6,111,450.0,960.0,0.0,85,69,0.0,0.0,767.3402445174275,1535.0,173.19865317456512,1822.5638860221975,71,0,0,0,0,0,0,0,0,0,,2,,4,112478,1,2,0,1,2,,480.0,490.0,42,1.0,4.0,4.0,3.0,1.8,3,2,341.560485581689,450.0,9750.676895539984,6,4,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.1574249681785803,5417.042719744435,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12468,2,78.0,0.0,1,111,320.0,800.0,0.0,77,74,0.0,0.0,545.6641738790596,1120.0,0.0,1518.8032383518312,60,0,0,0,0,0,0,0,0,0,,1,,1,112479,2,1,2,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,986.757085264145,320.0,34694.77184317303,5,5,0,1,160.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032281520831513554,23129.84789544869,6,3,6,6_1,6_3,6_1_0 +12469,2,57.0,0.0,7,400,235.0,0.0,0.0,0,11,316.40485531098045,0.0,400.72212769243436,595.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,1,4.0,1,,5,112480,2,1,2,0,1,,338.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,236.560448347902,235.0,7254.893158310293,0,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08201361302177729,7254.893158310293,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +12470,2,55.0,0.0,6,120,1000.0,150.0,0.0,85,75,0.0,397.2981831030672,1705.2005433720612,1450.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,1,,4,112481,2,2,1,0,1,,360.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,971.201813710302,1000.0,27569.002612678916,6,5,0,1,140.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052595301337929015,18379.335075119277,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +12471,2,23.0,0.0,7,111,480.0,,,68,68,0.0,0.0,,732.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,5,112482,1,1,0,0,2,,365.0,,43,5.0,1.0,4.0,6.0,3.3,5,5,86.3127072503203,480.0,27860.054385054114,1,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026274176994883786,8442.440722743671,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +12472,2,29.0,0.0,8,112,2002.0,0.0,0.0,65,55,0.0,0.0,3413.8114878308666,2064.0,85.9065319745843,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,112483,2,1,2,0,1,,385.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1685.49075668667,2002.0,52213.01070717735,1,1,1,2,110.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039530377046736294,29007.228170654085,8,4,8,8_1,8_0,8_0_0 +12473,2,55.0,0.0,5,120,700.0,0.0,0.0,0,78,2847.643697798824,264.8654554020448,1193.6403803604428,3660.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,112484,2,1,1,0,1,,450.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1181.42165498157,700.0,23954.709253018947,0,5,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.152788329064722,23954.709253018947,6,3,6,6_1,6_0,6_0_0 +12474,2,34.0,0.0,7,111,650.0,,,81,52,0.0,0.0,,770.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,0,,2,,5,112485,2,1,0,0,2,,700.0,650.0,43,2.0,0.0,2.0,3.0,1.8,2,2,36.38839446740466,650.0,39129.15863989033,4,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019678419540946155,21738.421466605738,6,3,6,6_0,6_2,6_0_0 +12475,2,46.0,0.0,9,111,80.0,160.0,0.0,0,63,0.0,0.0,136.4160434697649,240.0,0.0,303.7606476703662,50,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,112486,1,1,0,0,1,,80.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1355.21876956,80.0,19302.09814604589,0,1,2,3,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012433881445637812,19302.09814604589,5,3,5,5_0,5_2,5_0_0 +12476,2,38.0,0.0,1,300,1450.0,0.0,0.0,55,48,0.0,331.081819252556,2472.540787889489,1796.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,112487,1,2,3,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1211.07501766678,1450.0,54436.78201998803,1,1,1,2,85.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03299239839968033,25922.277152375253,7,4,7,7_1,7_0,7_1_0 +12477,2,40.0,0.0,5,211,1800.0,0.0,0.0,85,47,0.0,0.0,3069.36097806971,1950.0,207.83838380947813,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,3,112488,1,2,2,0,2,,250.0,,42,1.0,0.0,6.0,5.0,2.6,3,3,543.148521176661,1800.0,46564.50693214332,6,1,0,1,150.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04187738963587998,17909.425743132044,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +12478,2,38.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,607.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,7.0,2,,2,112489,2,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1830.97492280031,0.0,30519.8152522208,0,1,1,2,71.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01988871803396094,30519.8152522208,8,4,8,8_0,8_3,8_0_1 +12479,2,43.0,0.0,8,111,720.0,0.0,0.0,0,68,0.0,0.0,1227.744391227884,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,112490,2,1,0,1,1,742.0,0.0,710.0,32,1.0,0.0,3.0,2.0,1.3,1,1,681.593477676809,720.0,14348.754026591383,0,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05017857290365995,11037.503097377987,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +12480,2,56.0,0.0,7,112,600.0,1100.0,0.0,69,22,0.0,0.0,1023.1203260232367,1700.0,0.0,2088.354452733768,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,112491,2,1,2,0,1,,560.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,3183.03567035553,600.0,43505.22373307653,4,1,1,2,110.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0390757673246376,17402.08949323061,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +12481,2,36.0,0.0,5,111,442.0,840.0,0.0,54,48,0.0,437.0280014133739,753.6986401704511,1612.0,0.0,1594.7434002694229,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,112492,2,1,2,0,1,,310.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,348.527109858409,442.0,49846.430995304574,1,1,1,2,125.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03233932636324247,23736.395712049794,6,3,6,6_1,6_3,6_0_0 +12482,2,60.0,0.0,6,111,0.0,0.0,2139.0,86,63,0.0,0.0,1348.250823197137,2139.0,0.0,2559.810063640852,71,0,0,0,0,0,0,0,0,0,,1,,4,112493,2,1,2,0,1,,487.0,,42,1.0,5.0,4.0,3.0,2.0,3,3,256.184439250632,0.0,36648.49445948611,6,1,0,1,95.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058365289803776386,18324.247229743054,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +12483,2,35.0,0.0,5,400,0.0,,,0,52,0.0,0.0,,712.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,112494,2,3,0,0,2,,192.0,300.0,32,1.0,0.0,6.0,2.0,1.5,2,1,28.943054309658127,0.0,23071.608938547484,0,1,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03086043985473452,15381.072625698323,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12484,2,45.0,0.0,1,300,805.0,0.0,0.0,52,21,0.0,0.0,1372.6864374145093,2605.0,2494.060605713738,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,112495,2,1,1,0,1,,410.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,1560.50155664698,805.0,73320.720243941,1,1,1,2,160.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03552883811469745,26185.971515693218,7,4,7,7_1,7_0,7_1_0 +12485,2,76.0,0.0,5,111,316.0,608.0,0.0,0,77,0.0,0.0,538.8433717055714,924.0,0.0,1154.2904611473916,60,0,0,0,0,0,0,0,0,0,,2,,3,112496,1,3,0,0,1,,0.0,284.0,11,0.0,0.0,3.0,1.0,1.0,1,1,340.836984665847,316.0,16082.075961430564,0,5,2,3,55.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.057455268972489454,16082.075961430564,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +12486,2,77.0,0.0,2,111,200.0,922.0,0.0,0,74,0.0,0.0,341.04010867441224,1122.0,0.0,1750.4207322004854,60,0,0,0,0,0,0,0,0,0,,1,,2,112497,2,1,1,0,1,,108.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1012.34082930863,200.0,31954.64345374224,0,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.035112267850029834,31954.64345374224,8,4,8,8_1,8_2,8_0_1 +12487,2,72.0,0.0,7,111,260.0,,,0,67,0.0,0.0,,348.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,5,112498,2,1,0,0,1,,350.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,108.84902679446294,260.0,3839.566036709608,0,5,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09063524280421688,3839.566036709608,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12488,2,27.0,0.0,1,111,1080.0,0.0,0.0,0,55,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,31,2,2,2,2,2,2,2,1,3,30.0,2,,1,112499,1,1,0,0,2,,0.0,707.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1360.25069306644,1080.0,29196.630454884522,0,1,3,4,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0.036990569910758955,29196.630454884522,8,4,8,8_0,8_4,8_1_0 +12489,2,50.0,0.0,1,112,1200.0,0.0,0.0,52,48,0.0,1191.8945493092015,2046.2406520464733,2230.0,180.1265993015477,0.0,31,2,2,2,1,1,2,2,2,2,30.0,1,,1,112500,1,3,4,0,1,,506.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,1705.84921493954,1200.0,56137.64245179911,1,1,0,1,85.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03972379142773447,20049.158018499682,5,3,5,5_1,5_0,5_1_0 +12490,1,94.0,44.0,8,111,750.0,0.0,0.0,0,77,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2003.0,6,112501,2,1,0,0,1,,0.0,645.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1655.56611925046,750.0,19230.80008005097,0,5,2,3,70.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.038999937437756996,19230.80008005097,5,3,5,5_0,5_3,5_0_0 +12491,2,53.0,0.0,2,111,2120.0,0.0,0.0,0,37,0.0,0.0,3615.0251519487697,2160.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,112502,2,2,2,0,2,,450.0,,32,3.0,0.0,4.0,4.0,2.5,4,3,605.82443087231,2120.0,81348.25154053043,0,1,1,2,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026552506772979816,32539.30061621217,8,4,8,8_1,8_4,8_0_1 +12492,1,23.0,247.0,7,400,0.0,,,0,56,0.0,0.0,,484.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,112503,2,1,0,0,2,,427.0,322.0,12,1.0,0.0,2.0,1.0,1.0,1,1,126.05362448982243,0.0,7393.0,0,4,2,3,63.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06546733396456107,7393.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +12493,2,37.0,0.0,9,111,206.0,0.0,0.0,68,65,0.0,0.0,351.2713119346446,206.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,2005.0,6,112504,2,1,0,1,1,500.0,0.0,392.0,43,2.0,0.0,2.0,2.0,1.5,2,2,424.838853876382,206.0,20480.36807273855,4,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010058412977167482,13653.578715159034,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +12494,2,73.0,0.0,6,111,600.0,,,0,72,0.0,0.0,,876.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,112505,2,2,0,0,2,,670.0,,21,0.0,7.0,4.0,2.0,1.5,2,1,123.28653697966733,600.0,5448.7588235294115,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16077055864854273,3632.505882352941,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12495,2,80.0,0.0,1,111,900.0,0.0,0.0,86,74,4003.5761025349393,0.0,1534.680489034855,4876.0,249.40606057137379,0.0,20,2,2,2,1,1,2,2,2,0,,1,,1,112506,1,2,4,0,2,,430.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,585.570417532984,900.0,78812.94603040557,6,5,0,1,170.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,0,0.061868008310701494,52541.96402027038,10,5,10,10_1,10_4,10_1_0 +12496,2,67.0,0.0,2,111,300.0,400.0,0.0,86,78,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,71,2,1,2,2,2,2,2,1,0,,8,,2,112507,2,3,0,1,1,,0.0,489.0,41,0.0,4.0,3.0,3.0,2.0,3,3,273.974785569025,300.0,40063.51770061161,6,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017472255063346917,20031.758850305803,5,3,5,5_0,5_4,5_0_1 +12497,2,62.0,0.0,2,111,168.0,0.0,0.0,0,75,0.0,0.0,286.47369128650627,168.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,112508,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,964.537229293519,168.0,32133.81963206111,0,5,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0052281366461763585,32133.81963206111,8,4,8,8_0,8_4,8_0_1 +12498,2,97.0,0.0,2,112,400.0,2310.0,0.0,0,78,0.0,0.0,682.0802173488245,2710.0,0.0,4385.544350740913,70,0,0,0,0,0,0,0,0,0,,1,,2,112509,2,1,2,0,1,,210.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,959.688990500678,400.0,20296.701046318696,0,5,0,1,90.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13351923516119998,20296.701046318696,5,3,5,5_1,5_1,5_0_1 +12499,2,24.0,0.0,1,111,0.0,0.0,0.0,84,56,0.0,0.0,0.0,432.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,15.0,2,,1,112510,2,2,0,0,1,,336.0,1100.0,42,1.0,0.0,2.0,2.0,1.5,2,2,984.020341962059,0.0,37836.3419003259,3,1,2,3,54.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011417594257342279,25224.2279335506,7,4,7,7_0,7_4,7_1_0 +12500,2,84.0,0.0,1,111,450.0,950.0,0.0,0,75,0.0,0.0,767.3402445174275,1400.0,0.0,1803.5788455427996,41,2,2,2,2,1,2,2,2,0,,2,,1,112511,2,2,0,0,1,,400.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,904.789248819958,450.0,33134.70007344675,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.04225177825351502,33134.70007344675,8,4,8,8_0,8_4,8_1_0 +12501,1,47.0,106.0,2,111,0.0,0.0,1370.0,56,64,0.0,0.0,863.5360578681989,1370.0,0.0,1639.5230421636127,50,2,2,2,1,1,2,2,2,0,,2,,2,112512,1,2,0,0,1,,0.0,546.0,43,3.0,2.0,4.0,5.0,3.0,5,3,441.470522769277,0.0,36000.15495760301,1,1,2,3,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0380553917507698,12000.051652534336,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +12502,1,45.0,292.0,6,111,500.0,1300.0,0.0,0,68,0.0,0.0,852.6002716860306,1800.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,112513,1,2,0,0,1,,300.0,442.0,32,2.0,0.0,5.0,5.0,2.5999999999999996,4,3,1492.13595503727,500.0,33959.33992484732,0,1,2,3,95.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05300456381023409,13061.28458647974,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12503,2,51.0,0.0,5,120,429.0,,,0,90,0.0,0.0,,681.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,3,112514,2,1,0,0,1,,480.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,130.34581146328833,429.0,7558.775805447241,0,4,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0900939540380648,7558.775805447241,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12504,2,50.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,191.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,2,112515,2,1,0,1,1,204.0,173.0,188.0,12,1.0,0.0,1.0,1.0,1.0,1,1,318.859770669981,0.0,15362.082458717827,0,1,2,3,30.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012433210179236437,15362.082458717827,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +12505,2,55.0,0.0,2,111,784.0,1949.0,0.0,42,38,0.0,0.0,1336.877226003696,2733.0,0.0,3700.184389434649,31,0,0,0,0,0,0,0,0,2,4.0,1,,2,112516,2,1,4,0,1,,775.0,,43,2.0,3.0,10.0,2.0,1.5,2,2,1963.92152922056,784.0,69490.13376853995,1,1,0,1,356.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039329324204543444,46326.7558456933,10,5,10,10_1,10_3,10_0_1 +12506,1,47.0,308.0,2,111,400.0,570.0,0.0,0,85,0.0,0.0,682.0802173488245,970.0,0.0,1082.1473073256798,71,2,2,1,2,1,2,1,2,0,,2,,2,112517,1,3,0,0,1,,0.0,280.0,31,0.0,3.0,3.0,2.0,1.5,2,1,541.3269660277,400.0,10431.211758165484,0,7,2,3,62.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,1,0,1,0.09299015516971845,6954.141172110322,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +12507,0,82.0,0.0,2,120,0.0,0.0,0.0,0,86,0.0,0.0,0.0,447.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112518,2,1,0,1,1,,188.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,341.810888076329,0.0,17412.259657410017,0,7,5,0,70.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025671567550382426,17412.259657410017,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +12508,2,35.0,0.0,2,111,504.0,0.0,0.0,0,35,0.0,397.2981831030672,859.4210738595189,804.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,112519,1,1,1,0,1,,420.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,889.545086543507,504.0,22871.726108061543,0,1,1,2,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03515257205343221,17593.63546773965,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +12509,2,32.0,0.0,1,111,0.0,0.0,510.0,48,22,0.0,0.0,321.46232811151935,510.0,0.0,610.3333952579871,10,0,0,0,0,0,0,0,0,2,40.0,1,,1,112520,2,2,1,0,1,,360.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,511.425826560589,0.0,55203.51081081886,1,1,1,2,95.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009238542848257569,36802.340540545905,9,5,9,9_1,9_3,9_1_0 +12510,2,61.0,0.0,7,111,1066.0,3251.0,0.0,37,63,0.0,0.0,1817.7437792346173,4317.0,0.0,6172.036659852254,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,112521,2,1,2,0,1,,692.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,595.286749328352,1066.0,145097.84711397326,1,1,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029752336687732032,96731.89807598217,10,5,10,10_1,10_4,10_0_0 +12511,2,67.0,0.0,5,112,335.0,0.0,0.0,0,78,473.5526001154341,66.2163638505112,571.2421820296405,880.0,63.73710436823996,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,112522,2,1,3,0,1,,151.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,962.940442181827,335.0,20124.99329529072,0,5,0,1,110.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04372672264223419,20124.99329529072,5,3,5,5_1,5_0,5_0_0 +12512,1,35.0,235.0,5,111,200.0,,,0,67,0.0,0.0,,488.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,,3,112523,2,3,0,0,2,,160.0,550.0,12,1.0,0.0,4.0,1.0,1.0,1,1,128.9181593112502,200.0,5250.69523920181,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0929400732224146,5250.69523920181,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +12513,1,39.0,157.0,1,111,464.0,0.0,0.0,0,55,0.0,0.0,791.2130521246364,464.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,112524,2,2,0,0,1,,0.0,530.0,12,1.0,2.0,1.0,1.0,1.0,1,1,899.955731900854,464.0,13146.711595990357,0,4,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.035293997028239085,13146.711595990357,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +12514,2,60.0,0.0,1,112,720.0,0.0,0.0,86,11,2109.365702073203,264.8654554020448,1227.744391227884,3070.0,207.83838380947813,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,112525,1,1,1,0,2,,120.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1485.83749792783,720.0,351075.65862220124,5,1,0,1,95.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00874455384360236,175537.82931110062,10,5,10,10_1,10_0,10_1_0 +12515,1,60.0,195.0,2,111,390.0,0.0,0.0,77,62,0.0,0.0,665.0282119151038,390.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,112526,1,1,0,1,1,601.0,0.0,313.0,42,1.0,3.0,5.0,2.0,1.5,2,2,273.762492101266,390.0,18296.944277203518,6,1,2,3,95.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02131503458126108,12197.962851469012,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +12516,2,59.0,0.0,1,111,320.0,558.0,0.0,0,77,0.0,0.0,545.6641738790596,878.0,0.0,1059.3652587504023,70,0,0,0,0,0,0,0,0,0,,2,,1,112528,2,1,0,0,1,,175.0,260.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1799.7044834638,320.0,12054.18817054411,0,5,2,3,40.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07283775461092443,12054.18817054411,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +12517,0,76.0,0.0,1,211,677.0,1826.0,0.0,74,74,0.0,0.0,1154.4207678628854,2503.0,0.0,3466.6683915380545,10,2,2,2,1,1,2,2,2,0,,1,,1,112529,1,2,1,0,2,,232.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1053.52853698873,677.0,84786.12077485431,5,5,0,1,150.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.02952134119505954,56524.08051656954,10,5,10,10_1,10_2,10_1_0 +12518,2,52.0,0.0,6,111,430.0,,,0,48,0.0,0.0,,478.0,66.50828281903301,,42,0,0,0,0,0,0,0,0,2,20.0,1,,4,112530,1,1,0,0,2,,400.0,400.0,12,1.0,7.0,2.0,1.0,1.0,1,1,45.32436540375877,430.0,43609.86081401976,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010960823792547668,43609.86081401976,10,5,10,10_1,10_2,10_0_0 +12519,1,52.0,547.0,1,111,300.0,1400.0,0.0,67,67,0.0,0.0,511.56016301161833,1700.0,0.0,2657.9056671157045,70,1,2,2,1,2,2,2,2,0,,2,,1,112531,2,3,0,0,1,,0.0,718.0,43,3.0,0.0,2.0,6.0,3.3,5,4,397.407411540943,300.0,14623.069757655885,4,4,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.11625465980629462,4431.233259895723,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +12520,2,49.0,0.0,7,111,450.0,1550.0,0.0,0,52,0.0,0.0,767.3402445174275,2000.0,0.0,2942.681274306673,71,0,0,0,0,0,0,0,0,0,,1,,5,112532,2,1,2,0,1,,260.0,,32,2.0,0.0,6.0,3.0,2.0,3,2,883.924067710857,450.0,36806.16229324015,0,1,0,1,148.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05433872687040022,18403.081146620076,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +12521,2,34.0,0.0,1,111,794.0,857.0,0.0,42,64,0.0,66.2163638505112,1353.9292314374165,1701.0,0.0,1627.0179690843993,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,112533,1,1,2,0,1,,629.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,368.041164577201,794.0,33494.144978268436,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05078499544035644,15949.592846794492,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +12522,2,66.0,0.0,1,111,332.0,2463.0,0.0,0,86,0.0,0.0,566.1265803995243,2795.0,0.0,4676.0154700757,12,0,0,0,0,0,0,0,0,0,,1,,1,112534,2,1,2,0,2,,317.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,980.565853662018,332.0,39754.98861276411,0,5,0,1,109.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07030564207236652,39754.98861276411,9,5,9,9_1,9_4,9_1_0 +12523,2,50.0,0.0,9,111,682.0,0.0,0.0,85,47,0.0,0.0,1162.9467705797458,682.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,2.0,2,2006.0,6,112535,2,1,0,0,1,,234.0,790.0,42,1.0,3.0,3.0,4.0,2.1,2,2,1094.33987803704,682.0,41408.02014217047,6,1,2,3,76.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01647023928355952,19718.104829604985,5,3,5,5_0,5_2,5_0_0 +12524,2,47.0,0.0,2,111,2300.0,0.0,0.0,90,56,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,112536,2,1,1,0,1,,450.0,,43,3.0,0.0,5.0,5.0,2.8,4,3,635.877254432322,2300.0,31597.440705144836,4,1,0,1,130.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07279070547082327,11284.800251837441,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +12525,0,83.0,0.0,7,111,1103.0,0.0,0.0,0,72,0.0,0.0,1880.8361993393835,1103.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,112537,2,1,2,0,1,,500.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,779.496071900189,1103.0,57916.29586827612,0,5,5,0,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019044726246109478,57916.29586827612,10,5,10,10_1,10_4,10_0_0 +12526,2,59.0,0.0,9,111,80.0,0.0,0.0,77,74,0.0,0.0,136.4160434697649,140.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,0,,1,2012.0,6,112538,2,1,1,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1576.03239174899,80.0,83666.9671177538,5,5,1,2,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.001673300764003582,55777.97807850253,10,5,10,10_1,10_3,10_0_0 +12527,2,51.0,0.0,6,112,754.0,,,63,56,0.0,132.4327277010224,,1084.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,4,112539,2,1,0,0,2,,360.0,,43,4.0,0.0,7.0,7.0,4.0,7,6,112.27251972928943,754.0,18301.796818832914,4,1,0,1,99.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059229157154916195,4575.4492047082285,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12528,2,62.0,0.0,6,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,1792.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,112540,2,1,0,0,1,,0.0,400.0,41,0.0,3.0,2.0,2.0,1.5,2,2,1302.4947567247,0.0,47302.123236371415,5,5,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037884134524898035,31534.74882424761,8,4,8,8_0,8_4,8_0_0 +12529,1,42.0,176.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,289.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,112541,2,1,0,1,1,,0.0,538.0,32,1.0,0.0,2.0,2.0,1.5,2,1,1118.58553799119,0.0,16181.435058408637,0,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017859973417488826,10787.623372272425,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +12530,1,36.0,300.0,9,120,370.0,,,0,54,0.0,0.0,,370.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,8,2010.0,6,112542,2,1,0,0,2,,160.0,650.0,32,1.0,0.0,4.0,3.0,1.6,1,1,148.19881962577585,370.0,39023.34907729561,0,1,2,3,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009481502965496925,24389.593173309753,7,4,7,7_0,7_1,7_0_0 +12531,2,58.0,0.0,1,111,500.0,0.0,0.0,0,43,0.0,0.0,852.6002716860306,500.0,0.0,0.0,33,2,2,2,2,1,2,2,2,4,15.0,1,,1,112543,2,2,5,0,1,,0.0,380.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1569.61809517547,500.0,36360.33468390062,0,1,2,3,40.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.013751248561014664,36360.33468390062,9,5,9,9_1,9_2,9_1_0 +12532,2,59.0,0.0,9,111,600.0,0.0,0.0,0,43,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,112544,2,1,0,0,1,,140.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,1584.03836341843,600.0,20472.574473753863,0,1,1,2,95.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029307501153272575,13648.382982502575,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +12533,1,58.0,45.0,9,111,0.0,,,56,77,0.0,0.0,,488.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,112545,2,1,0,0,1,,175.0,711.0,42,1.0,2.0,4.0,3.0,2.0,3,3,139.57991631294766,0.0,39968.0,4,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0122097678142514,19984.0,5,3,5,5_1,5_2,5_0_0 +12534,1,47.0,145.0,1,112,964.0,0.0,0.0,0,67,0.0,321.8115283134844,1643.813323810667,1269.0,85.9065319745843,0.0,50,2,2,2,1,1,2,2,2,2,30.0,1,,1,112546,1,2,5,0,2,,300.0,500.0,32,1.0,1.0,5.0,2.0,1.3,1,1,1440.22934625753,964.0,6948.881226653986,0,1,2,3,100.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.18261932512711068,5345.293251272297,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +12536,2,65.0,0.0,2,111,408.0,0.0,0.0,0,72,1693.8206587647821,0.0,695.7218216958009,2049.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,112548,2,1,1,0,1,,243.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1137.45827098804,408.0,13800.811618345568,0,5,0,1,80.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14846952894250381,13800.811618345568,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +12537,2,36.0,0.0,9,400,2000.0,0.0,0.0,42,53,0.0,0.0,3410.4010867441225,2090.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,2008.0,6,112549,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1793.38693213894,2000.0,49498.41912165296,1,1,1,2,193.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04222357071371063,23570.675772215694,6,3,6,6_1,6_0,6_0_0 +12538,2,34.0,0.0,1,120,0.0,0.0,0.0,0,37,0.0,0.0,0.0,510.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,112550,2,2,5,0,1,,442.0,540.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1572.74207681731,0.0,19381.934875194067,0,1,2,3,50.0,0,2,9,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026313162400144197,12113.70929699629,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +12539,0,31.0,0.0,2,111,690.0,0.0,0.0,43,63,0.0,0.0,1176.5883749267223,3890.0,4433.885521268867,0.0,42,1,2,2,1,1,2,2,2,2,20.0,1,,2,112551,2,1,1,0,1,,730.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,691.521108815218,690.0,47275.668854243326,1,1,5,0,90.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08228334139477426,26264.260474579623,7,4,7,7_1,7_2,7_0_1 +12540,2,37.0,0.0,7,111,800.0,0.0,0.0,0,42,0.0,0.0,1364.160434697649,800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,112552,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,781.517772730334,800.0,25413.20057144619,0,1,1,2,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031479702753334636,25413.20057144619,7,4,7,7_0,7_4,7_0_0 +12541,2,43.0,0.0,1,111,800.0,1200.0,0.0,85,38,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,10,2,2,2,2,2,2,2,1,2,30.0,1,,1,112553,1,2,3,0,1,,0.0,1100.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,1403.71799529721,800.0,78362.56927728705,6,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.02552238930455396,30139.449722033485,8,4,8,8_1,8_3,8_1_0 +12542,2,32.0,0.0,5,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,596.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,112554,2,2,0,1,2,,0.0,385.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2952.22820608596,0.0,9275.836961962403,0,6,2,3,30.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06425296201777028,9275.836961962403,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +12543,2,34.0,0.0,8,111,942.0,0.0,0.0,46,48,0.0,0.0,1606.2989118564817,942.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,2001.0,6,112555,1,2,0,0,1,,0.0,910.0,43,2.0,0.0,2.0,2.0,1.5,2,2,847.409573853731,942.0,69405.24166331219,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013572461926862563,46270.161108874796,10,5,10,10_0,10_4,10_0_0 +12544,2,31.0,0.0,1,111,850.0,0.0,0.0,54,62,0.0,0.0,1449.420461866252,850.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,112556,2,1,1,0,1,,120.0,710.0,43,2.0,0.0,4.0,2.0,1.5,2,2,274.259780242115,850.0,44183.85322476043,1,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019237797022276543,29455.902149840287,8,4,8,8_1,8_3,8_1_0 +12545,0,55.0,0.0,2,400,680.0,0.0,0.0,78,47,453.5136259457387,132.4327277010224,1159.5363694930015,1280.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,112557,1,3,4,0,1,,162.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1541.00508499145,680.0,35661.88544865709,7,1,5,0,150.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03589266198061327,23774.59029910473,6,3,6,6_1,6_0,6_0_1 +12546,2,32.0,0.0,2,111,0.0,0.0,0.0,43,31,0.0,0.0,0.0,747.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,2,,2,112558,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,223.299812089675,0.0,47392.51972558462,1,1,1,2,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01576198109586344,26329.177625324788,7,4,7,7_0,7_4,7_0_1 +12547,2,48.0,0.0,5,111,840.0,,,52,21,0.0,0.0,,965.0,173.19865317456512,,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,112559,2,2,0,0,1,,300.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,141.96325621834492,840.0,35747.24459704833,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026995087618016875,17873.622298524166,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +12548,2,86.0,0.0,1,212,2180.0,0.0,0.0,77,78,0.0,0.0,3717.3371845510933,2420.0,332.541414095165,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112560,1,2,3,0,1,,420.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1181.8251540833,2180.0,22812.400649303934,5,5,0,1,70.0,3,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10608265378128191,15208.267099535957,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +12549,2,32.0,0.0,2,111,560.0,100.0,0.0,0,38,0.0,0.0,954.9123042883542,660.0,0.0,189.8504047939789,12,0,0,0,0,0,0,0,0,2,1.0,2,,2,112561,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1877.54494018622,560.0,27431.204956133093,0,1,1,2,53.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024060189884310444,27431.204956133093,7,4,7,7_0,7_3,7_0_1 +12550,2,45.0,0.0,2,111,660.0,204.0,0.0,47,46,0.0,0.0,1125.4323586255605,864.0,0.0,387.294825779717,43,0,0,0,0,0,0,0,0,1,30.0,2,,2,112562,1,1,0,1,1,775.0,0.0,338.0,43,2.0,0.0,3.0,3.0,2.0,3,3,767.423832047197,660.0,33894.61937614487,4,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02549077157090266,16947.309688072433,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +12551,1,59.0,229.0,1,111,250.0,0.0,0.0,0,46,0.0,0.0,426.3001358430153,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,112563,2,1,0,1,1,681.0,0.0,216.0,11,0.0,0.0,2.0,1.0,1.0,1,1,234.402156023275,250.0,11126.246102377707,0,7,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.022469393333531817,11126.246102377707,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +12552,2,42.0,0.0,6,111,2586.0,0.0,0.0,34,31,0.0,0.0,4409.6486051601505,2586.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,4,112564,2,1,2,0,1,,780.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,374.008931776479,2586.0,162395.19912909166,1,1,1,2,182.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01592411606912301,57998.28540324703,10,5,10,10_1,10_3,10_0_0 +12553,2,41.0,0.0,1,111,300.0,950.0,0.0,56,65,0.0,0.0,511.56016301161833,1250.0,0.0,1803.5788455427996,41,0,0,0,0,0,0,0,0,1,30.0,2,,1,112565,2,2,0,0,1,,0.0,531.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1438.22661351949,300.0,19881.820105890678,1,1,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06287150740437714,13254.546737260453,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +12554,1,21.0,170.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,870.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,5.0,2,,1,112566,1,1,0,0,1,,0.0,440.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1520.06560612968,0.0,15197.100006394214,0,1,2,3,50.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05724776435201095,15197.100006394214,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +12555,1,64.0,420.0,2,111,350.0,260.0,0.0,77,77,0.0,0.0,596.8201901802214,610.0,0.0,493.61105246434516,60,0,0,0,0,0,0,0,0,0,,2,,2,112567,2,1,0,1,1,792.0,0.0,440.0,41,0.0,2.0,3.0,3.0,1.8,2,2,302.683654210383,350.0,11128.13143351103,6,7,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0548160312128466,6182.29524083946,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +12556,1,34.0,400.0,6,111,0.0,,,52,43,0.0,0.0,,138.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,1,20.0,2,,4,112568,2,2,0,0,2,,0.0,700.0,43,2.0,0.0,3.0,4.0,2.1,2,2,95.49395287383891,0.0,18772.97635529481,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.007350992053057047,8939.512550140385,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12557,1,34.0,212.0,1,120,800.0,0.0,0.0,21,63,0.0,463.51454695357836,1364.160434697649,1285.0,187.05454542853033,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,112569,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,177.76175072316,800.0,24499.715552346097,1,1,1,2,85.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.052449588537241125,11666.531215402903,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +12558,2,53.0,0.0,1,112,311.0,0.0,0.0,0,52,1054.6828510366015,2781.0872817214704,530.317368988711,3411.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,112570,2,2,2,0,2,,100.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,697.303723484839,311.0,15491.30321769341,0,4,0,1,140.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22018805984664494,15491.30321769341,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +12559,2,41.0,0.0,6,111,700.0,0.0,0.0,0,46,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,112571,2,2,0,1,1,429.0,0.0,520.0,12,1.0,0.0,2.0,1.0,1.0,1,1,328.362893263253,700.0,40539.174728090875,0,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017267248400963324,40539.174728090875,9,5,9,9_0,9_4,9_0_0 +12560,1,47.0,75.0,5,111,900.0,,,0,56,0.0,0.0,,1032.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,112572,2,2,0,0,2,,250.0,330.0,32,1.0,0.0,3.0,2.0,1.5,2,1,106.94228275519184,900.0,22295.677523717375,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04628699885447275,14863.785015811583,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +12561,2,68.0,0.0,9,111,0.0,0.0,632.0,0,77,0.0,0.0,398.36115954211806,632.0,0.0,756.3347172608783,70,1,2,2,2,1,2,2,2,0,,2,2008.0,6,112573,2,2,0,0,1,,62.0,293.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1153.25684121819,0.0,22470.191749284768,0,5,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.028126150726778588,22470.191749284768,6,3,6,6_0,6_4,6_0_0 +12562,1,46.0,483.0,2,111,642.0,134.0,0.0,56,21,0.0,0.0,1094.7387488448633,776.0,0.0,254.39954242393173,50,1,1,2,2,1,2,2,2,0,,2,,2,112574,1,3,0,1,1,1000.0,523.0,545.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,4,3,502.022795394618,642.0,31772.228770139714,1,4,2,3,105.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.02442384528998806,10249.10605488378,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +12563,2,85.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,712.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112575,1,1,0,0,1,,200.0,199.0,11,0.0,3.0,2.0,1.0,1.0,1,1,139.469069136848,0.0,17960.02358539179,0,5,2,3,78.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03964360050056515,17960.02358539179,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +12564,2,59.0,0.0,6,111,330.0,1100.0,0.0,0,77,0.0,0.0,562.7161793127802,1430.0,0.0,2088.354452733768,60,0,0,0,0,0,0,0,0,0,,1,,4,112576,2,1,2,0,1,,336.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1098.87763153424,330.0,19861.686139457608,0,6,0,1,90.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07199791548206648,19861.686139457608,5,3,5,5_1,5_2,5_0_0 +12565,2,72.0,0.0,1,111,500.0,200.0,0.0,0,78,0.0,0.0,852.6002716860306,700.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,1,112577,1,2,0,0,2,,120.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,938.599043651886,500.0,13070.283750191034,0,5,0,1,27.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05355660316018532,13070.283750191034,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +12566,2,46.0,0.0,7,111,352.0,650.0,0.0,0,52,0.0,0.0,600.2305912669656,1002.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,112578,2,2,0,1,1,1167.0,0.0,480.0,32,1.0,0.0,3.0,2.0,1.5,2,1,686.940461358224,352.0,29668.26137697135,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03377346543056134,19778.8409179809,5,3,5,5_0,5_4,5_0_0 +12567,2,61.0,0.0,1,111,315.0,686.0,0.0,52,46,0.0,331.081819252556,537.1381711621992,1251.0,0.0,1302.3737768866952,50,0,0,0,0,0,0,0,0,1,20.0,1,,1,112579,2,2,2,0,1,,140.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1077.25228877854,315.0,68378.96097175023,1,1,0,1,70.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01829510104016983,45585.97398116682,10,5,10,10_1,10_2,10_1_0 +12568,2,67.0,0.0,2,111,0.0,0.0,387.0,86,78,0.0,0.0,243.93317839050584,387.0,0.0,463.13534110753153,70,0,0,0,0,0,0,0,0,0,,2,,2,112580,2,1,0,1,1,720.0,0.0,305.0,41,0.0,2.0,4.0,2.0,1.5,2,2,364.646733393751,0.0,20656.95959823463,6,5,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018734606037234713,13771.306398823086,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +12569,2,64.0,0.0,1,111,500.0,1800.0,0.0,0,75,0.0,0.0,852.6002716860306,2300.0,0.0,3417.30728629162,41,0,0,0,0,0,0,0,0,0,,2,,1,112581,2,1,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1041.66698872093,500.0,37658.85950313905,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06107460582570972,37658.85950313905,9,5,9,9_0,9_4,9_1_0 +12570,2,53.0,0.0,2,211,500.0,0.0,0.0,0,62,0.0,0.0,852.6002716860306,1046.0,756.5317170665004,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,112582,2,2,0,0,1,,350.0,280.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2197.27412594952,500.0,20938.38188078753,0,1,2,3,64.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04995610482010457,20938.38188078753,5,3,5,5_0,5_1,5_0_1 +12571,2,49.0,0.0,2,111,360.0,0.0,0.0,0,56,0.0,0.0,613.872195613942,360.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,30.0,2,,2,112583,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,961.372467938505,360.0,22680.024114267857,0,1,1,2,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01587299899621916,22680.024114267857,6,3,6,6_0,6_4,6_0_1 +12572,2,38.0,0.0,7,111,216.0,,,67,54,0.0,0.0,,304.0,121.93185183489385,,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,112584,2,1,0,0,2,,240.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,104.30700985323749,216.0,60091.769871108496,1,1,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005058929045559033,40061.17991407233,9,5,9,9_0,9_2,9_0_0 +12573,2,69.0,0.0,2,111,200.0,0.0,0.0,0,74,0.0,0.0,341.04010867441224,200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,112585,2,1,0,1,1,50.0,0.0,575.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1446.21741616251,200.0,58683.59662445657,0,5,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003408107401458236,58683.59662445657,10,5,10,10_0,10_3,10_0_1 +12574,2,66.0,0.0,5,111,1200.0,,,77,64,0.0,0.0,,1320.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,3,112586,2,1,0,0,2,,230.0,372.0,42,3.0,1.0,4.0,4.0,2.5,4,4,78.45019213317698,1200.0,64853.226952882054,5,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020353651807627434,25941.29078115282,7,4,7,7_0,7_3,7_0_0 +12575,2,50.0,0.0,7,111,330.0,,,0,52,0.0,0.0,,582.0,349.1684847999233,,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,112587,2,1,0,0,2,,500.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,99.48423475439284,330.0,39653.66991774016,0,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014677077839386217,39653.66991774016,9,5,9,9_1,9_3,9_0_0 +12576,0,44.0,0.0,7,111,600.0,,,85,52,0.0,0.0,,750.0,207.83838380947813,,43,0,0,0,0,0,0,0,0,0,,1,,5,112588,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,175.14351898455664,600.0,9385.998251748251,6,4,5,0,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07990625822461705,4469.522977022976,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12577,1,24.0,476.0,5,111,1250.0,0.0,0.0,85,63,0.0,0.0,2131.5006792150766,1370.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,1,2.0,2,,3,112589,1,1,0,0,1,,525.0,444.0,42,1.0,0.0,5.0,5.0,2.4,2,2,382.535111819666,1250.0,18141.562580322825,6,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07551719946582579,7558.984408467844,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +12578,2,59.0,0.0,9,111,0.0,,,37,33,0.0,0.0,,1215.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,112590,2,2,0,0,2,,670.0,1000.0,43,2.0,0.0,3.0,3.0,1.8,2,2,73.00530824432798,0.0,90720.11849210366,4,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013392839650068957,50400.06582894648,10,5,10,10_1,10_2,10_0_0 +12579,2,34.0,0.0,8,111,360.0,,,85,63,0.0,0.0,,738.0,523.7527271998849,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,112591,2,1,0,0,2,,300.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,104.63188866603866,360.0,26170.223428676498,6,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028199988510274738,12462.011156512617,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12580,1,61.0,331.0,2,111,1440.0,1200.0,0.0,85,78,0.0,0.0,2455.488782455768,2640.0,0.0,2278.2048575277468,71,1,1,2,2,1,2,2,2,0,,2,,2,112592,2,2,0,1,1,879.0,0.0,308.0,41,0.0,6.0,5.0,3.0,1.8,2,2,273.883607823682,1440.0,15192.468324894198,6,5,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.173770314575817,8440.260180496776,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +12581,2,48.0,0.0,7,111,1200.0,0.0,0.0,21,43,0.0,0.0,2046.2406520464733,4430.0,4475.453198030763,0.0,33,0,0,0,0,0,0,0,0,2,25.0,1,,5,112593,2,1,2,0,1,,190.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,370.394601721904,1200.0,71453.11406289993,1,1,0,1,197.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06199869744095809,34025.29241090472,9,5,9,9_1,9_3,9_0_0 +12582,2,45.0,0.0,2,111,600.0,100.0,0.0,85,31,0.0,0.0,1023.1203260232367,700.0,0.0,189.8504047939789,10,0,0,0,0,0,0,0,0,0,,2,,2,112594,2,2,0,1,1,1020.0,0.0,3900.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,843.845335873234,600.0,79620.18583483304,6,1,2,3,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00879174034398896,30623.148398012712,8,4,8,8_0,8_4,8_0_1 +12583,2,82.0,0.0,1,111,0.0,0.0,0.0,72,75,0.0,0.0,0.0,2439.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112595,2,1,2,0,1,,221.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,652.383853604955,0.0,37138.55351857311,5,5,0,1,135.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06567299393554055,24759.035679048742,7,4,7,7_1,7_4,7_1_0 +12584,2,67.0,0.0,1,111,680.0,186.0,0.0,75,37,0.0,0.0,1159.5363694930015,866.0,0.0,353.12175291680074,12,0,0,0,0,0,0,0,0,1,35.0,2,,1,112596,2,2,0,1,2,,0.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,578.886724822012,680.0,128093.24938228348,5,1,0,1,107.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006760699757217464,85395.49958818899,10,5,10,10_0,10_4,10_1_0 +12585,1,33.0,307.0,2,111,330.0,0.0,0.0,0,67,670.7782932592786,0.0,562.7161793127802,1086.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112597,2,1,0,1,1,,120.0,423.0,32,1.0,0.0,3.0,2.0,1.3,1,1,316.173305071285,330.0,16332.510696658908,0,4,2,3,65.0,6,4,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06649314487956587,12563.469766660699,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +12586,0,64.0,0.0,2,111,0.0,0.0,0.0,72,72,0.0,0.0,0.0,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112598,2,2,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2119.96152268702,0.0,30933.819569607294,5,5,5,0,110.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022628954643795593,20622.546379738196,5,3,5,5_0,5_3,5_0_1 +12587,2,49.0,0.0,1,111,520.0,1290.0,0.0,56,46,0.0,0.0,886.7042825534718,1810.0,0.0,2449.070221842328,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,112599,1,3,3,0,2,,650.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,220.207977303212,520.0,23363.307075521534,1,1,1,2,82.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07747190901310344,9345.322830208614,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +12588,2,79.0,0.0,5,111,350.0,0.0,0.0,0,72,0.0,0.0,596.8201901802214,350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,112600,2,1,0,1,1,1143.0,0.0,387.0,11,0.0,6.0,5.0,1.0,1.0,1,1,336.05438544644,350.0,23327.693735256136,0,5,2,3,75.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015003626332380646,23327.693735256136,6,3,6,6_0,6_2,6_0_0 +12589,2,29.0,0.0,8,111,700.0,0.0,0.0,0,37,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,75.0,2,2002.0,6,112601,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1112.135473755,700.0,38552.87994211598,0,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018156879617060858,38552.87994211598,9,5,9,9_0,9_4,9_0_0 +12590,2,46.0,0.0,6,112,593.0,0.0,0.0,54,64,0.0,1080.6510580403426,1011.1839222196322,1409.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112602,1,3,1,0,1,,439.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,947.969677552646,593.0,47498.44774850364,1,1,1,2,150.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02966412728812571,18999.379099401456,5,3,5,5_1,5_0,5_0_0 +12591,1,28.0,150.0,6,111,800.0,,,65,81,0.0,0.0,,1200.0,554.2356901586083,,60,0,0,0,0,0,0,0,0,0,,2,,4,112603,2,2,0,0,2,,400.0,200.0,43,2.0,0.0,3.0,7.0,2.9999999999999996,2,2,202.03875627882647,800.0,28824.852167805264,4,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041630742562499275,9608.28405593509,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12592,2,39.0,0.0,8,111,1100.0,0.0,0.0,43,42,0.0,662.163638505112,1875.7205977092674,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,2003.0,6,112604,2,1,1,0,1,,570.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1071.77580018792,1100.0,47472.1177472331,1,1,1,2,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03370399459571731,22605.770355825283,6,3,6,6_1,6_3,6_0_0 +12593,2,58.0,0.0,5,111,290.0,0.0,0.0,0,45,0.0,0.0,494.50815757789775,451.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,112605,2,2,0,1,1,,300.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,314.924255195631,290.0,28842.471323463324,0,1,1,2,89.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015636662855346654,28842.471323463324,8,4,8,8_0,8_2,8_0_0 +12594,2,50.0,0.0,2,111,1860.0,0.0,0.0,33,37,4218.731404146406,331.081819252556,3171.673010672034,6110.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,112606,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,1438.62760381491,1860.0,157981.24641439004,1,1,1,2,200.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03867547660671867,56421.87371942502,10,5,10,10_1,10_3,10_0_1 +12595,2,57.0,0.0,1,300,420.0,0.0,0.0,67,65,0.0,0.0,716.1842282162656,612.0,266.03313127613205,0.0,71,2,2,2,1,1,2,1,2,2,5.0,1,,1,112607,2,1,4,0,1,,490.0,359.0,43,2.0,4.0,5.0,2.0,1.5,2,2,1398.70492607042,420.0,42974.24521836482,1,1,2,3,120.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.014241087816440927,28649.496812243215,8,4,8,8_1,8_0,8_1_0 +12596,2,68.0,0.0,1,111,40.0,91.0,0.0,0,77,0.0,0.0,68.20802173488245,131.0,0.0,172.7638683625208,60,0,0,0,0,0,0,0,0,0,,2,,1,112608,2,2,0,0,1,,210.0,470.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1701.89288030516,40.0,20869.61820822682,0,5,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.006277067394954053,20869.61820822682,5,3,5,5_0,5_2,5_1_0 +12597,2,53.0,0.0,6,112,1232.0,1200.0,0.0,52,38,0.0,0.0,2100.807069434379,2432.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,112609,1,1,2,0,1,,756.0,,43,6.0,0.0,7.0,6.0,3.5,6,6,865.79148062768,1232.0,115136.39330776871,1,1,0,1,120.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02112277386958849,32896.112373648204,8,4,8,8_1,8_0,8_0_0 +12598,2,64.0,0.0,1,112,950.0,700.0,0.0,78,78,0.0,1668.652369032882,1619.9405162034582,2970.0,83.13535352379125,1328.9528335578523,70,0,0,0,0,0,0,0,0,0,,1,,1,112610,2,2,2,0,2,,250.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,222.479836096273,950.0,52030.482731295364,5,5,0,1,90.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057081922828549896,34686.988487530245,9,5,9,9_1,9_0,9_1_0 +12599,2,23.0,0.0,9,300,0.0,,,0,56,0.0,0.0,,652.0,0.0,,44,0,0,0,0,0,0,0,0,3,20.0,2,2010.0,6,112611,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,137.38399474356302,0.0,9829.294117647058,0,2,3,4,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06633233192497816,9829.294117647058,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +12600,1,39.0,200.0,1,300,600.0,0.0,0.0,11,11,0.0,529.7309108040896,1023.1203260232367,1180.0,249.40606057137379,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,112612,2,2,3,0,1,,105.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,675.738047257918,600.0,5338.715075055372,4,1,1,2,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.22102696686576054,2542.245273835891,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +12601,2,35.0,0.0,7,112,660.0,0.0,0.0,0,54,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,5,112613,2,2,0,0,1,,0.0,409.0,12,1.0,0.0,1.0,1.0,1.0,1,1,658.23968305526,660.0,18727.347768519518,0,1,2,3,33.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03524257722759083,18727.347768519518,5,3,5,5_0,5_1,5_0_0 +12602,2,49.0,0.0,9,112,1200.0,,,55,43,0.0,0.0,,1200.0,0.0,,31,0,0,0,0,0,0,0,0,2,1.0,1,2012.0,6,112614,2,1,0,0,2,,292.0,,43,2.0,2.0,4.0,3.0,1.8,2,2,163.94225456287901,1200.0,56054.47337968156,1,1,1,2,110.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021407747279541332,31141.37409982309,8,4,8,8_1,8_1,8_0_0 +12603,2,63.0,0.0,1,112,745.0,0.0,0.0,77,74,1551.4384738748408,0.0,1270.3744048121855,2306.0,124.70303028568689,0.0,42,2,2,1,1,2,2,2,2,0,,1,,1,112615,2,1,4,0,1,,208.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1367.79888505231,745.0,48344.041494408215,5,5,0,1,96.0,10,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04769977702974475,32229.360996272142,8,4,8,8_1,8_1,8_1_0 +12604,0,80.0,0.0,2,111,500.0,2000.0,0.0,0,77,0.0,317.83854648245375,852.6002716860306,2806.0,91.44888887617039,3797.008095879578,71,2,2,2,1,2,2,2,2,0,,1,,2,112616,1,3,3,0,2,,200.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,2397.29549977931,500.0,18513.55845512597,0,5,0,1,80.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.15156459558011573,18513.55845512597,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +12605,2,50.0,0.0,2,111,1300.0,0.0,0.0,62,52,0.0,0.0,2216.7607063836795,1470.0,235.55016831740858,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,112617,1,3,0,1,2,65.0,800.0,450.0,43,2.0,4.0,5.0,7.0,3.3999999999999995,4,2,250.415218397176,1300.0,45306.782197229324,1,1,2,3,100.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03244547347460699,13325.524175655686,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +12606,2,70.0,0.0,5,111,60.0,,,0,77,0.0,0.0,,102.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,3,112618,1,2,0,0,2,,180.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,110.05236593665363,60.0,9372.07008168632,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010883401330866608,9372.07008168632,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12607,2,51.0,0.0,6,111,1200.0,0.0,0.0,56,38,1582.0242765549024,0.0,2046.2406520464733,2820.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,112619,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,5.0,3.0,5,4,374.008931776479,1200.0,54744.7657406725,1,1,0,1,140.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05151177399056596,18248.255246890832,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +12608,2,64.0,0.0,2,111,324.0,840.0,0.0,78,78,0.0,0.0,552.4849760525478,1164.0,0.0,1594.7434002694229,50,0,0,0,0,0,0,0,0,0,,1,,2,112620,2,2,2,0,1,,264.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,328.474426512653,324.0,17458.87192580577,5,5,0,1,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06667097421566534,11639.247950537181,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +12609,1,23.0,260.0,1,112,0.0,0.0,0.0,84,90,0.0,0.0,0.0,1631.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,5.0,8,,1,112621,2,2,0,0,1,,261.0,380.0,42,1.0,0.0,3.0,3.0,1.8,2,2,144.659119964606,0.0,13890.336608272462,3,1,2,3,60.0,6,0,3,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11741976065782664,7716.853671262479,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +12610,2,51.0,0.0,2,111,498.75,1024.0,0.0,38,34,4366.38700329153,0.0,850.4687710068155,5663.0,0.0,1944.068145090344,10,2,1,2,1,1,2,2,2,0,,2,,2,112622,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,726.982570947059,498.75,86260.83320838996,4,1,1,2,83.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06564972525038398,30807.440431567844,8,4,8,8_0,8_4,8_0_1 +12611,2,60.0,0.0,2,111,660.0,1283.0,0.0,46,38,0.0,0.0,1125.4323586255605,1943.0,0.0,2435.7806935067492,12,0,0,0,0,0,0,0,0,2,22.0,1,,2,112623,2,2,2,0,2,,500.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,589.84659020011,660.0,152000.06809326116,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01278288901033816,76000.03404663058,10,5,10,10_1,10_4,10_0_1 +12612,2,42.0,0.0,2,221,1000.0,0.0,0.0,54,46,0.0,927.0290939071567,1705.2005433720612,1770.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,112624,2,2,1,0,1,,340.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,906.310102510007,1000.0,45034.26816649542,1,1,1,2,170.0,1,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0393034032096661,21444.889603093055,6,3,6,6_1,6_1,6_0_1 +12613,1,37.0,481.0,2,112,0.0,0.0,0.0,55,53,0.0,0.0,0.0,771.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,90.0,2,,2,112625,1,1,0,0,1,,467.0,675.0,43,2.0,1.0,4.0,5.0,2.4,2,2,658.274661834447,0.0,10701.166442743413,4,1,2,3,60.0,10,2,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07204822054915556,4458.819351143089,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +12614,2,46.0,0.0,2,111,650.0,170.0,0.0,0,56,0.0,0.0,1108.3803531918397,820.0,0.0,322.74568814976413,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,112626,2,1,0,1,1,,0.0,560.0,32,1.0,0.0,3.0,4.0,2.3,3,3,197.421110507697,650.0,16871.02097862589,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.048604053129853164,7335.226512446039,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +12615,2,59.0,0.0,9,400,480.0,0.0,0.0,0,64,0.0,0.0,818.4962608185893,520.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,112627,2,1,1,0,1,,140.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1600.73330379718,480.0,30347.152486734172,0,1,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017135050816623094,30347.152486734172,8,4,8,8_1,8_0,8_0_0 +12616,2,65.0,0.0,6,111,420.0,1230.0,0.0,77,35,0.0,0.0,716.1842282162656,1650.0,0.0,2335.1599789659404,12,2,2,2,2,2,2,2,1,2,45.0,1,,4,112628,2,1,1,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,258.348042334306,420.0,86529.07292657295,5,1,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.019068735445717314,57686.0486177153,10,5,10,10_1,10_3,10_0_0 +12617,1,81.0,237.0,1,111,565.0,0.0,0.0,0,77,0.0,0.0,963.4383070052146,565.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,112629,1,3,0,0,1,,0.0,450.0,11,0.0,3.0,1.0,1.0,1.0,1,1,899.204327138944,565.0,9829.499129769372,0,5,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.057480039678609395,9829.499129769372,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +12618,1,28.0,413.0,7,111,342.0,,,85,52,0.0,0.0,,477.0,187.05454542853033,,71,0,0,0,0,0,0,0,0,0,,2,,5,112630,2,1,0,0,2,,160.0,417.0,42,1.0,0.0,3.0,4.0,2.1,2,2,130.20988245000723,342.0,22345.526684330664,6,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021346554356872077,10640.726992538412,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12619,2,65.0,0.0,7,111,0.0,0.0,500.0,0,78,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,71,0,0,0,0,0,0,0,0,0,,2,,5,112631,2,2,0,0,1,,240.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1682.85375760454,0.0,20237.259483996553,0,5,1,2,50.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02470690265129009,20237.259483996553,5,3,5,5_0,5_2,5_0_0 +12620,2,72.0,0.0,2,111,220.0,,,0,71,0.0,0.0,,346.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,112632,1,2,0,0,2,,180.0,,11,0.0,11.0,4.0,1.0,1.0,1,1,121.14776175879558,220.0,11488.222179014418,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030117801919955868,11488.222179014418,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +12621,2,35.0,0.0,1,111,439.0,803.0,0.0,54,37,0.0,0.0,748.5830385403349,1242.0,0.0,1524.4987504956505,42,0,0,0,0,0,0,0,0,2,7.0,1,,1,112633,2,1,1,0,1,,330.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1822.50106444024,439.0,73682.25186983217,1,1,1,2,88.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01685616235228709,40934.58437212898,9,5,9,9_1,9_3,9_1_0 +12622,2,62.0,0.0,8,111,432.0,0.0,0.0,0,75,0.0,0.0,736.6466347367304,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,112634,2,1,0,1,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1298.59184249162,432.0,29025.017060724946,0,5,0,1,80.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026873369216910917,29025.017060724946,8,4,8,8_0,8_3,8_0_0 +12623,2,41.0,0.0,9,111,80.0,,,0,67,0.0,0.0,,240.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,2,40.0,2,2009.0,6,112635,1,1,0,0,2,,313.0,550.0,32,1.0,0.0,3.0,2.0,1.5,2,2,166.52663241092947,80.0,17966.747739612885,0,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013358010224123683,11977.83182640859,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +12624,0,77.0,0.0,2,111,195.0,1300.0,0.0,78,75,0.0,264.8654554020448,332.5141059575519,1695.0,0.0,2468.055262321726,33,2,2,2,2,1,2,2,2,0,,1,,2,112636,2,2,3,0,1,,308.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1021.95190695367,195.0,39967.844009126755,5,5,0,1,105.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.04240909265991287,26645.229339417838,7,4,7,7_1,7_2,7_0_1 +12625,2,32.0,0.0,5,111,370.0,540.0,0.0,0,45,0.0,0.0,630.9242010476627,910.0,0.0,1025.192185887486,31,0,0,0,0,0,0,0,0,2,80.0,2,,3,112637,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1408.92658835245,370.0,20255.68395415926,0,1,1,2,65.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04492566146171245,20255.68395415926,5,3,5,5_0,5_2,5_0_0 +12626,2,81.0,0.0,1,112,624.0,0.0,0.0,77,78,2496.434308403636,0.0,1064.0451390641663,3363.0,515.4391918475058,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112638,2,3,3,0,1,,458.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,1757.31967148698,624.0,45903.58335954281,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07326225435733597,22951.791679771406,6,3,6,6_1,6_0,6_1_0 +12627,2,54.0,0.0,2,111,470.0,,,0,85,0.0,79.45963662061344,,662.0,182.89777775234077,,71,2,2,2,2,1,2,2,2,0,,1,,2,112639,1,2,0,0,2,,185.0,,31,0.0,2.0,4.0,2.0,1.5,2,1,108.27804147317482,470.0,8570.024973567175,0,6,0,1,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07724598260119772,5713.349982378117,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +12628,2,42.0,0.0,1,111,1200.0,700.0,0.0,90,38,0.0,132.4327277010224,2046.2406520464733,2000.0,0.0,1328.9528335578523,12,0,0,0,0,0,0,0,0,0,,1,,1,112640,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,409.355999310361,1200.0,96140.49152778536,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02080288927399528,45781.18644180255,10,5,10,10_1,10_3,10_1_0 +12629,2,81.0,0.0,2,111,400.0,1580.0,0.0,0,78,0.0,0.0,682.0802173488245,1980.0,0.0,2999.6363957448666,70,0,0,0,0,0,0,0,0,0,,1,,2,112641,2,1,2,0,1,,100.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,253.104599043777,400.0,13684.29273792961,0,5,0,1,90.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14469143841916726,13684.29273792961,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +12630,2,80.0,0.0,2,111,476.0,288.0,0.0,0,78,0.0,0.0,811.6754586451011,764.0,0.0,546.7691658066592,60,0,0,0,0,0,0,0,0,0,,2,,2,112642,2,1,0,1,1,,588.0,365.0,11,0.0,2.0,4.0,1.0,1.0,1,1,276.848965654374,476.0,18561.55898880886,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04116033574877148,18561.55898880886,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +12631,2,95.0,0.0,2,221,360.0,,,0,72,0.0,0.0,,425.0,90.06329965077386,,71,0,0,0,0,0,0,0,0,0,,1,,2,112643,2,1,0,0,2,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,70.64359552944924,360.0,10352.595030200624,0,5,0,1,72.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04105250893714944,10352.595030200624,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +12632,2,70.0,0.0,5,111,528.0,,,0,77,0.0,0.0,,804.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,0,,1,,3,112644,2,1,0,0,1,,546.0,,21,0.0,1.0,5.0,2.0,1.5,2,1,64.8420393998452,528.0,14415.0,0,5,0,1,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055775234131113426,9610.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12633,1,50.0,264.0,2,111,96.0,0.0,0.0,0,52,0.0,0.0,163.69925216371786,669.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,112645,2,2,0,1,1,220.0,0.0,440.0,12,1.0,1.0,1.0,1.0,1.0,1,1,145.650086581703,96.0,4033.8449158795484,0,4,2,3,34.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.1658467328197048,4033.8449158795484,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +12634,2,36.0,0.0,6,111,980.0,0.0,0.0,52,53,0.0,927.0290939071567,1671.09653250462,1730.0,69.27946126982604,0.0,43,0,0,0,0,0,0,0,0,2,12.0,1,,4,112646,2,2,1,0,1,,472.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1060.58492166978,980.0,50256.915564568815,1,1,0,1,110.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034423123276981445,23931.864554556578,6,3,6,6_1,6_2,6_0_0 +12635,1,77.0,309.0,5,111,240.0,,,77,72,0.0,0.0,,340.0,138.5589225396521,,71,2,2,2,2,1,2,2,2,0,,1,,3,112647,2,1,0,0,2,,150.0,324.0,41,0.0,0.0,3.0,2.0,1.5,2,2,121.76126901004731,240.0,17695.552407285013,5,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.019213867539960308,11797.034938190009,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +12636,2,62.0,0.0,8,111,1300.0,0.0,0.0,64,64,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,112648,2,1,1,0,1,,100.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,390.163031385925,1300.0,80787.27366688731,1,5,0,1,136.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016091643411069056,53858.18244459154,10,5,10,10_1,10_3,10_0_0 +12637,2,71.0,0.0,1,112,540.0,0.0,0.0,77,72,1898.4291318658827,0.0,920.8082934209131,2440.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,112649,2,1,2,0,1,,253.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1570.98705876648,540.0,35221.47431446519,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06927591895260077,23480.982876310125,6,3,6,6_1,6_0,6_1_0 +12638,2,58.0,0.0,1,112,1530.0,0.0,0.0,47,45,0.0,397.2981831030672,2608.9568313592536,1990.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,112650,2,1,2,0,1,,1000.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,463.125172593928,1530.0,62406.64388735326,1,1,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031887630483575395,31203.32194367663,8,4,8,8_1,8_0,8_1_0 +12639,2,47.0,0.0,2,111,280.0,50.0,0.0,0,42,0.0,0.0,477.4561521441771,330.0,0.0,94.92520239698945,33,0,0,0,0,0,0,0,0,0,,2,,2,112651,1,1,0,1,2,664.0,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1423.26701385739,280.0,72964.65104102148,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0045227380010968675,72964.65104102148,10,5,10,10_0,10_4,10_0_1 +12640,2,68.0,0.0,2,111,270.0,0.0,0.0,0,77,784.6840411712316,0.0,460.40414671045653,1014.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112652,1,2,0,1,1,34.0,0.0,491.0,11,0.0,3.0,2.0,1.0,1.0,1,1,256.207323352647,270.0,19393.514219211364,0,5,2,3,54.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05228552125924263,19393.514219211364,5,3,5,5_0,5_3,5_0_1 +12641,2,48.0,0.0,9,120,1100.0,,,46,22,0.0,0.0,,1186.0,119.1606733841008,,50,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,112653,2,1,0,0,1,,1200.0,,43,2.0,0.0,4.0,3.0,1.8,3,2,80.48330207986726,1100.0,51411.021455653274,1,1,0,1,135.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023068983389544863,28561.67858647404,8,4,8,8_1,8_1,8_0_0 +12642,1,40.0,96.0,5,112,1500.0,0.0,0.0,55,63,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,,3,112654,1,2,3,0,2,,720.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,891.193219275638,1500.0,27091.608545965086,1,1,1,2,89.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.05536769798866018,12900.765974269088,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +12643,2,61.0,0.0,5,211,300.0,,,0,52,0.0,0.0,,410.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,3,112655,1,1,0,0,2,,240.0,,22,2.0,4.0,5.0,2.0,1.5,2,2,94.73868325501057,300.0,8890.090609723895,0,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046118765038406465,5926.727073149264,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12644,2,65.0,0.0,6,111,1200.0,0.0,0.0,21,54,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,112656,2,2,0,0,1,,0.0,,42,1.0,3.0,2.0,2.0,1.5,2,2,1681.22229765463,1200.0,81738.37029301283,5,1,1,2,55.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014680987591241203,54492.24686200856,10,5,10,10_0,10_3,10_0_0 +12645,0,40.0,0.0,7,111,1080.0,,,0,43,0.0,0.0,,1160.0,110.84713803172167,,20,0,0,0,0,0,0,0,0,0,,1,,5,112657,2,1,0,0,2,,400.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,96.6505530753416,1080.0,17264.672195279985,0,4,5,0,147.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06718922820423628,13280.517073292296,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +12646,2,44.0,0.0,1,111,260.0,1500.0,0.0,0,42,0.0,0.0,443.3521412767359,1760.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,112658,1,3,3,0,2,,219.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,487.488207828182,260.0,23429.088256832536,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0751202940851417,23429.088256832536,6,3,6,6_1,6_4,6_1_0 +12647,2,45.0,0.0,2,112,2540.0,0.0,0.0,54,37,0.0,377.4332739479138,4331.209380165035,2825.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,7.0,1,,2,112659,2,2,3,0,1,,200.0,,43,2.0,0.0,8.0,5.0,3.0,5,3,602.088400753742,2540.0,107096.89005046352,1,1,1,2,160.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026377983512582616,35698.96335015451,9,5,9,9_1,9_0,9_0_1 +12648,1,28.0,60.0,1,111,620.0,0.0,0.0,0,90,0.0,0.0,1057.224336890678,620.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,1,112660,1,2,0,0,1,,0.0,565.0,22,2.0,0.0,3.0,2.0,1.5,2,2,785.883584775646,620.0,48324.91040268859,0,1,2,3,56.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,0,1,0.012829822028299215,32216.60693512573,8,4,8,8_0,8_3,8_1_0 +12649,2,48.0,0.0,2,111,468.0,588.0,0.0,68,63,0.0,0.0,798.0338542981247,1056.0,0.0,1116.320380188596,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,112661,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,428.206781688317,468.0,36730.37201514987,1,1,1,2,72.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028750049130034417,18365.186007574936,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +12650,2,56.0,0.0,7,111,1000.0,,,0,54,0.0,0.0,,1170.0,235.55016831740858,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,112662,2,1,0,0,1,,800.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,147.96814139835257,1000.0,42174.958312204006,0,1,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027741580473867156,42174.958312204006,9,5,9,9_1,9_2,9_0_0 +12651,2,39.0,0.0,2,111,300.0,600.0,0.0,0,46,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,3,75.0,2,,2,112663,2,2,0,0,1,,0.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,303.652952737969,300.0,49963.70215299122,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018013076718057387,33309.13476866081,8,4,8,8_0,8_4,8_0_1 +12652,2,84.0,0.0,1,111,210.0,1350.0,0.0,78,78,0.0,0.0,358.0921141081328,1560.0,0.0,2562.980464718715,71,0,0,0,0,0,0,0,0,0,,1,,1,112664,2,1,2,0,2,,200.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,506.744973033428,210.0,28597.894736154038,5,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054549469965976774,19065.263157436024,5,3,5,5_1,5_4,5_1_0 +12653,2,66.0,0.0,5,111,323.0,2100.0,0.0,0,75,0.0,0.0,550.7797755091758,2423.0,0.0,3986.858500673557,70,0,0,0,0,0,0,0,0,0,,2,,3,112665,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,870.442158292099,323.0,27933.60903842353,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08674138728966564,27933.60903842353,7,4,7,7_0,7_4,7_0_0 +12655,2,34.0,0.0,2,111,300.0,150.0,0.0,0,64,0.0,0.0,511.56016301161833,450.0,0.0,284.77560719096834,41,0,0,0,0,0,0,0,0,0,,2,,2,112667,2,2,0,1,1,281.0,0.0,320.0,22,2.0,0.0,2.0,2.0,1.5,2,2,247.418825817826,300.0,42465.76548260462,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010596771184646015,28310.510321736412,8,4,8,8_0,8_4,8_0_1 +12656,2,28.0,0.0,8,111,0.0,0.0,0.0,22,31,0.0,0.0,0.0,280.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,2002.0,6,112668,2,1,0,0,1,,309.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,472.74494516244,0.0,39728.484079966176,1,1,1,2,47.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007047840019176447,26485.656053310784,7,4,7,7_0,7_3,7_0_0 +12657,2,68.0,0.0,1,112,310.0,0.0,0.0,0,86,0.0,927.0290939071567,528.612168445339,1370.0,498.81212114274757,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112669,2,2,2,0,2,,130.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,376.948647187306,310.0,14492.428059969654,0,5,0,1,80.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09453212355658702,14492.428059969654,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +12658,2,70.0,0.0,8,111,400.0,,,0,74,0.0,0.0,,463.0,87.29212119998083,,20,0,0,0,0,0,0,0,0,0,,1,2000.0,6,112670,1,1,0,0,2,,80.0,900.0,11,0.0,2.0,5.0,1.0,1.0,1,1,134.08674915268037,400.0,79490.12580698876,0,5,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005824622810689943,79490.12580698876,10,5,10,10_1,10_2,10_0_0 +12659,1,41.0,340.0,1,111,1300.0,800.0,0.0,81,67,0.0,0.0,2216.7607063836795,2100.0,0.0,1518.8032383518312,42,0,0,0,0,0,0,0,0,2,45.0,1,,1,112671,2,1,1,0,1,,120.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,113.711120755238,1300.0,23818.297093986406,4,1,1,2,122.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0881675122160687,8821.591516291262,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +12660,2,64.0,0.0,1,221,600.0,0.0,0.0,0,77,0.0,211.89236432163582,1023.1203260232367,760.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112672,2,1,1,0,1,,297.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1826.93671698713,600.0,13160.390724793735,0,5,0,1,80.0,1,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05774904528998409,13160.390724793735,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +12661,2,29.0,0.0,5,112,1400.0,0.0,0.0,85,53,0.0,158.91927324122688,2387.2807607208856,1520.0,0.0,0.0,30,2,2,2,1,2,2,2,2,2,90.0,1,,3,112673,1,1,2,0,1,,240.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,399.961773742168,1400.0,37504.43302001995,6,1,1,2,95.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04052854229761641,20835.796122233303,5,3,5,5_1,5_1,5_0_0 +12662,2,46.0,0.0,2,111,246.0,1050.0,0.0,0,38,0.0,0.0,419.479333669527,1296.0,0.0,1993.4292503367785,31,0,0,0,0,0,0,0,0,4,80.0,1,,2,112674,2,2,2,0,1,,380.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,640.932890251651,246.0,25621.13075628986,0,1,1,2,113.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05058324756731662,19708.562120222967,5,3,5,5_1,5_4,5_0_1 +12663,2,46.0,0.0,8,111,770.0,1030.0,0.0,55,62,0.0,0.0,1313.0044183964872,1800.0,0.0,1955.4591693779826,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,112675,2,2,2,0,1,,240.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,191.667400852331,770.0,58763.35470246643,1,1,1,2,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0306313349384808,23505.341880986573,6,3,6,6_1,6_3,6_0_0 +12664,2,85.0,0.0,1,111,471.0,1464.0,0.0,77,75,0.0,0.0,803.1494559282409,1935.0,0.0,2779.409926183851,42,0,0,0,0,0,0,0,0,0,,1,,1,112676,2,1,2,0,1,,396.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1478.59438349336,471.0,35225.00289394004,5,5,0,1,100.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05493257178221237,23483.335262626697,6,3,6,6_1,6_2,6_1_0 +12665,2,56.0,0.0,8,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,901.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,5.0,1,2002.0,6,112677,2,2,2,0,1,,146.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1691.14638601455,0.0,33144.151311471694,0,1,1,2,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027184283330499708,33144.151311471694,8,4,8,8_1,8_3,8_0_0 +12666,2,44.0,0.0,2,112,2074.0,0.0,0.0,37,54,0.0,172.1625460113291,3536.585926953655,2274.0,96.99124577775646,0.0,20,2,2,2,1,2,2,2,2,2,40.0,1,,2,112678,1,2,3,0,1,,377.0,2024.0,43,2.0,0.0,7.0,2.0,1.5,2,2,1469.42009515242,2074.0,109710.07248753613,1,1,2,3,175.0,9,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.020727358468005233,73140.0483250241,10,5,10,10_1,10_1,10_0_1 +12667,2,36.0,0.0,6,120,300.0,,,0,62,0.0,0.0,,384.0,116.38949493330776,,43,0,0,0,0,0,0,0,0,0,,1,,4,112679,1,1,0,0,2,,154.0,,22,1.0,3.0,5.0,2.0,1.5,2,2,116.84529347026366,300.0,28970.02649273607,0,1,0,1,117.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01325507935231899,19313.35099515738,5,3,5,5_1,5_2,5_0_0 +12668,2,37.0,0.0,7,111,0.0,,,0,63,0.0,0.0,,44.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,2,,5,112680,2,1,0,0,2,,0.0,70.0,12,1.0,3.0,1.0,1.0,1.0,1,1,149.76379949160446,0.0,13430.351052073207,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003276161570862873,13430.351052073207,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +12669,1,32.0,340.0,1,111,330.0,1300.0,0.0,0,54,0.0,0.0,562.7161793127802,1630.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,112681,2,1,0,0,1,,0.0,600.0,32,1.0,0.0,3.0,4.0,1.9,1,1,1957.21598892392,330.0,35175.674448325386,0,1,2,3,74.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04633884141708617,18513.512867539677,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +12670,2,35.0,0.0,9,112,0.0,0.0,0.0,33,46,0.0,0.0,0.0,1977.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2013.0,6,112682,2,1,1,0,1,,311.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1033.05362598538,0.0,33268.54594751069,1,1,1,2,138.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05942550068521791,15842.164736909852,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12671,2,50.0,0.0,2,111,900.0,380.0,0.0,0,56,0.0,0.0,1534.680489034855,1280.0,0.0,721.4315382171199,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,112683,2,2,0,0,1,,0.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,388.94242731312,900.0,9298.816425377607,0,1,0,1,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1376519270244677,6199.210950251738,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +12672,2,60.0,0.0,5,111,220.0,80.0,0.0,0,46,0.0,0.0,375.14411954185346,300.0,0.0,151.8803238351831,41,0,0,0,0,0,0,0,0,2,40.0,2,,3,112684,2,2,0,1,1,650.0,0.0,431.0,12,1.0,3.0,3.0,1.0,1.0,1,1,999.006075400334,220.0,29345.271650416544,0,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010223112042506569,29345.271650416544,8,4,8,8_0,8_4,8_0_0 +12673,1,29.0,400.0,1,112,1200.0,0.0,0.0,21,56,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,2,2,2,1,1,2,2,2,3,10.0,1,,1,112685,1,2,3,0,2,,0.0,600.0,43,2.0,0.0,3.0,4.0,2.1,2,2,624.742672212122,1200.0,24277.16299313793,1,1,2,3,60.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.04942916931188321,11560.553806256155,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +12675,2,57.0,0.0,7,111,500.0,,,0,22,0.0,0.0,,564.0,88.67771042537734,,50,0,0,0,0,0,0,0,0,0,,1,,5,112687,2,1,0,0,1,,240.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,106.28016690062749,500.0,131494.18749488273,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004289162971724121,131494.18749488273,10,5,10,10_1,10_2,10_0_0 +12676,2,82.0,0.0,2,111,1760.0,1812.0,0.0,86,78,0.0,0.0,3001.1529563348276,3572.0,0.0,3440.089334866898,71,0,0,0,0,0,0,0,0,0,,1,,2,112688,2,1,2,0,1,,200.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1860.96766055827,1760.0,22403.78144113674,5,5,0,1,92.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15943737040039438,14935.85429409116,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +12677,2,26.0,0.0,2,111,576.0,318.0,0.0,0,62,0.0,0.0,982.1955129823073,894.0,0.0,603.7242872448529,50,0,0,0,0,0,0,0,0,0,,2,,2,112689,2,1,0,1,1,660.0,0.0,372.0,22,2.0,2.0,3.0,2.0,1.5,2,2,626.482857672929,576.0,37856.04400826146,0,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02361577981589675,25237.362672174306,7,4,7,7_0,7_4,7_0_1 +12678,2,76.0,0.0,1,300,1200.0,0.0,0.0,78,78,0.0,0.0,2046.2406520464733,1300.0,138.5589225396521,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,112690,2,3,4,0,1,,500.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,680.258182759656,1200.0,33751.02351792457,5,5,0,1,40.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.038517350423746204,22500.682345283047,6,3,6,6_1,6_0,6_1_0 +12679,1,32.0,410.0,9,111,430.0,,,67,43,0.0,0.0,,540.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,112691,2,2,0,0,1,,360.0,495.0,43,2.0,0.0,4.0,4.0,2.1,2,2,171.52255259671256,430.0,13741.246395887341,4,4,2,3,89.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.039297745229400605,6543.450664708257,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12680,1,45.0,254.0,2,211,163.0,459.0,0.0,0,81,0.0,0.0,277.94768856964595,712.0,124.70303028568689,871.4133580043632,71,0,0,0,0,0,0,0,0,0,,2,,2,112692,2,1,0,0,1,,236.0,328.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1001.21588824153,163.0,6060.0,0,4,2,3,78.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11749174917491749,6060.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +12681,2,57.0,0.0,2,111,800.0,160.0,0.0,63,48,0.0,0.0,1364.160434697649,960.0,0.0,303.7606476703662,70,0,0,0,0,0,0,0,0,2,40.0,2,,2,112693,2,1,0,1,1,773.0,0.0,385.0,43,2.0,3.0,4.0,3.0,2.0,3,3,243.807484193997,800.0,59001.77861965755,1,1,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01627069594271787,29500.889309828774,8,4,8,8_0,8_4,8_0_1 +12682,2,27.0,0.0,7,111,266.0,0.0,0.0,65,46,0.0,0.0,453.5833445369683,266.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,60.0,2,,5,112694,2,1,0,0,1,,0.0,910.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1133.0035847661,266.0,33281.245553608926,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007992489330711233,22187.497035739285,6,3,6,6_0,6_4,6_0_0 +12683,2,58.0,0.0,1,111,1500.0,0.0,0.0,67,23,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112695,2,2,3,0,1,,470.0,1004.0,43,2.0,3.0,3.0,2.0,1.5,2,2,696.195210635044,1500.0,41024.040188489846,1,4,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036563926739250234,27349.360125659896,7,4,7,7_1,7_4,7_1_0 +12684,2,47.0,0.0,5,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,5160.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,112696,2,2,2,0,1,,946.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,628.312694758578,0.0,94520.34661557742,1,1,1,2,130.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05459142062804927,52511.303675320785,10,5,10,10_1,10_4,10_0_0 +12685,2,49.0,0.0,7,111,270.0,,,0,52,0.0,0.0,,295.0,34.63973063491302,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,112697,2,2,0,0,2,,140.0,460.0,12,1.0,0.0,2.0,1.0,1.0,1,1,66.1447819406656,270.0,48564.11774489417,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006074443718912511,48564.11774489417,10,5,10,10_1,10_2,10_0_0 +12686,2,83.0,0.0,2,111,410.0,1130.0,0.0,77,78,0.0,0.0,699.1322227825451,1540.0,0.0,2145.3095741719617,44,0,0,0,0,0,0,0,0,0,,1,,2,112698,2,2,2,0,1,,240.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,225.503289084131,410.0,51224.99811174353,5,5,0,1,110.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0300634466914104,34149.99874116235,9,5,9,9_1,9_2,9_0_1 +12687,0,70.0,0.0,2,120,563.0,0.0,0.0,77,74,1212.8852786920918,0.0,960.0279059184704,1773.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112699,2,2,1,0,1,,230.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,811.277777808538,563.0,43524.804195481134,5,5,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04073539290462972,29016.536130320757,8,4,8,8_1,8_0,8_0_1 +12688,2,68.0,0.0,2,111,250.0,,,75,77,0.0,0.0,,540.0,401.8208753649911,,70,0,0,0,0,0,0,0,0,0,,1,,2,112700,2,1,0,0,1,,630.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,84.14157441377174,250.0,16327.593597430372,5,5,0,1,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033072846698302495,10885.062398286915,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +12689,1,56.0,305.0,2,111,0.0,0.0,0.0,78,77,0.0,0.0,0.0,2439.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,112701,2,1,2,0,1,,236.0,455.0,41,0.0,0.0,3.0,2.0,1.5,2,2,302.019455487513,0.0,11956.72083815819,6,7,2,3,82.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.20398569415589893,7971.147225438793,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +12690,2,67.0,0.0,8,111,0.0,0.0,2300.0,74,74,0.0,0.0,1449.7320679539107,2300.0,0.0,2752.483939398766,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,112702,2,1,1,0,1,,600.0,,41,0.0,2.0,7.0,3.0,2.0,3,3,1962.58640085597,0.0,138451.3596309755,6,5,1,2,175.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016612332346394847,69225.67981548775,10,5,10,10_1,10_3,10_0_0 +12691,2,47.0,0.0,1,111,400.0,800.0,0.0,0,63,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,112703,1,2,0,1,1,,0.0,709.0,22,2.0,3.0,3.0,2.0,1.5,2,2,649.343032265871,400.0,44260.460986107966,0,1,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02711223456024654,29506.973990738643,8,4,8,8_0,8_4,8_1_0 +12692,2,57.0,0.0,9,112,960.0,,,42,33,0.0,0.0,,1032.0,99.7624242285495,,71,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,112704,2,1,0,0,2,,484.0,1000.0,43,2.0,2.0,4.0,3.0,1.8,2,2,128.66893521388297,960.0,82012.6120503995,1,1,2,3,123.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012583430452938157,45562.56225022195,10,5,10,10_1,10_2,10_0_0 +12693,2,37.0,0.0,5,111,405.0,1368.0,0.0,38,33,0.0,26.486545540204478,690.6062200656847,1793.0,0.0,2597.1535375816316,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,112705,2,1,2,0,1,,510.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,631.97800228737,405.0,70981.4813059933,1,1,1,2,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025260109637196437,33800.70538380633,9,5,9,9_1,9_4,9_0_0 +12694,2,28.0,0.0,7,211,0.0,,,0,34,0.0,0.0,,587.0,0.0,,10,0,0,0,0,0,0,0,0,1,10.0,2,,5,112706,1,1,0,0,2,,0.0,610.0,12,1.0,0.0,1.0,1.0,1.0,1,1,114.92312290228244,0.0,31406.27166172525,0,1,2,3,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01869053437232333,31406.27166172525,8,4,8,8_0,8_2,8_0_0 +12695,2,39.0,0.0,1,120,1000.0,700.0,0.0,85,56,0.0,264.8654554020448,1705.2005433720612,1900.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,1,112707,2,1,2,0,1,,650.0,,42,2.0,0.0,4.0,4.0,2.5,4,2,238.247979160958,1000.0,31208.18365594431,7,1,0,1,100.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06088146689171709,12483.273462377725,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +12696,1,80.0,46.0,1,400,579.0,0.0,0.0,0,77,0.0,397.2981831030672,987.3111146124235,939.0,83.13535352379125,0.0,71,2,2,2,1,1,2,1,2,0,,1,,1,112708,1,2,4,0,2,,170.0,431.0,11,0.0,8.0,4.0,1.0,1.0,1,1,239.564064923489,579.0,17576.954964726025,0,5,2,3,95.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05342222255700229,17576.954964726025,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +12697,2,43.0,0.0,9,120,1321.0,0.0,0.0,56,64,0.0,0.0,2252.569917794493,1321.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,112709,2,1,1,0,1,,800.0,,43,3.0,0.0,6.0,5.0,2.8,5,3,1080.90814745686,1321.0,64268.392021162814,1,1,1,2,104.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02055442743246183,22952.997150415293,6,3,6,6_1,6_0,6_0_0 +12698,2,45.0,0.0,2,111,600.0,1060.0,0.0,46,62,0.0,0.0,1023.1203260232367,1660.0,0.0,2012.4142908161764,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,112710,2,1,3,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,622.812538601934,600.0,55031.65115742579,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03016445927183497,23926.804851054694,6,3,6,6_1,6_4,6_0_1 +12699,2,33.0,0.0,2,211,400.0,1000.0,0.0,62,54,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,112711,2,1,1,0,1,,300.0,627.0,43,2.0,0.0,5.0,4.0,2.3,3,2,1071.5776313711,400.0,37879.161004956266,1,1,2,3,100.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03695963592796626,16469.20043693751,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +12700,1,56.0,270.0,5,111,253.0,1030.0,0.0,0,78,0.0,0.0,431.41573747313146,1283.0,0.0,1955.4591693779826,70,2,2,2,2,1,2,2,2,0,,1,,3,112712,2,1,3,0,1,,415.0,440.0,11,0.0,3.0,4.0,1.0,1.0,1,1,365.06923647085,253.0,6060.0,0,6,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.21171617161716172,6060.0,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +12701,1,38.0,394.0,9,111,400.0,,,0,54,0.0,0.0,,400.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,2007.0,6,112713,2,2,0,0,2,,1060.0,687.0,32,1.0,2.0,3.0,3.0,1.6,1,1,114.8958256065939,400.0,15551.06324110672,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025721713930316012,9719.4145256917,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12702,2,39.0,0.0,6,111,0.0,,,0,52,0.0,0.0,,705.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,112714,2,1,0,0,2,,402.0,800.0,12,1.0,2.0,4.0,1.0,1.0,1,1,154.7155573361336,0.0,28509.300320664825,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02472877243812905,28509.300320664825,8,4,8,8_1,8_2,8_0_0 +12703,2,55.0,0.0,2,111,320.0,800.0,0.0,54,43,0.0,662.163638505112,545.6641738790596,1620.0,0.0,1518.8032383518312,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,112715,1,3,3,0,1,,320.0,,43,2.0,2.0,5.0,3.0,2.0,3,2,914.378569231471,320.0,47575.23296099647,1,1,0,1,110.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034051330895807114,23787.616480498236,6,3,6,6_1,6_2,6_0_1 +12704,2,78.0,0.0,2,111,461.0,1356.0,0.0,0,77,0.0,529.7309108040896,786.0974504945202,2217.0,0.0,2574.371489006354,50,2,2,2,1,1,2,2,2,0,,1,,2,112716,2,2,3,0,1,,156.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,300.594790086785,461.0,26588.102922727245,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,1,0,0,0.08338315849172265,26588.102922727245,7,4,7,7_1,7_4,7_0_1 +12705,2,46.0,0.0,7,111,484.0,900.0,0.0,33,42,0.0,105.94618216081791,825.3170629920776,1464.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,112717,2,1,2,0,1,,310.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,1182.88194200533,484.0,60174.650973777665,1,1,1,2,130.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024329181412917008,30087.325486888833,8,4,8,8_1,8_2,8_0_0 +12707,2,24.0,0.0,7,111,600.0,0.0,0.0,0,45,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,30.0,2,,5,112719,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,960.818816682996,600.0,21536.66757195008,0,1,1,2,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02785946330812366,21536.66757195008,6,3,6,6_0,6_4,6_0_0 +12708,1,63.0,249.0,2,111,251.0,0.0,0.0,0,68,0.0,0.0,428.00533638638734,356.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,112720,1,3,0,1,2,800.0,131.0,368.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1902.48403179096,251.0,10609.386581814955,0,5,2,3,40.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033555191646065824,10609.386581814955,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +12709,2,68.0,0.0,9,300,1205.0,0.0,0.0,71,71,0.0,0.0,2054.766654763334,1295.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,112721,2,1,1,0,1,,398.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1119.40872743703,1205.0,21996.446137742947,5,5,0,1,93.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05887314668427069,14664.297425161965,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12710,2,63.0,0.0,5,111,350.0,120.0,0.0,56,78,0.0,0.0,596.8201901802214,595.0,0.0,227.8204857527747,71,1,2,2,1,1,2,2,2,0,,2,,3,112722,2,1,0,1,1,700.0,0.0,381.0,42,1.0,4.0,4.0,2.0,1.5,2,2,273.446979590732,350.0,18048.55129789108,4,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03296663483841631,12032.367531927388,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +12711,2,76.0,0.0,6,111,320.0,1200.0,0.0,77,78,0.0,0.0,545.6641738790596,1520.0,0.0,2278.2048575277468,50,1,2,2,2,2,2,2,1,0,,1,,4,112723,2,1,1,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,815.359087285599,320.0,31880.681692618073,5,5,0,1,103.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.047677775985321975,21253.787795078715,5,3,5,5_1,5_3,5_0_0 +12712,2,64.0,0.0,5,111,375.0,0.0,0.0,0,77,0.0,0.0,639.4502037645229,375.0,0.0,0.0,70,2,2,2,2,1,2,2,1,0,,2,,3,112724,2,1,0,1,1,456.0,0.0,311.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1277.99154584709,375.0,20088.365437915425,0,5,2,3,58.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.01866752181300988,20088.365437915425,5,3,5,5_0,5_3,5_0_0 +12713,2,57.0,0.0,5,111,816.0,,,52,34,0.0,0.0,,861.0,62.351515142843446,,33,0,0,0,0,0,0,0,0,2,15.0,1,,3,112725,2,1,0,0,2,,152.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,146.82434142342328,816.0,181721.6593280846,1,1,1,2,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004738015287685273,121147.77288538974,10,5,10,10_1,10_2,10_0_0 +12714,2,71.0,0.0,1,111,350.0,250.0,0.0,0,75,0.0,0.0,596.8201901802214,600.0,0.0,474.62601198494724,41,0,0,0,0,0,0,0,0,0,,2,,1,112726,2,2,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1342.3090526085,350.0,23075.658534501374,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026001424795869428,23075.658534501374,6,3,6,6_0,6_4,6_1_0 +12715,2,35.0,0.0,9,111,313.0,0.0,0.0,37,37,0.0,0.0,533.7277700754552,313.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,2009.0,6,112727,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,880.84938685423,313.0,82950.27632509451,1,1,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003773344874383616,55300.18421672968,10,5,10,10_0,10_4,10_0_0 +12716,1,34.0,631.0,9,111,588.0,,,0,85,0.0,0.0,,714.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,2,2011.0,6,112728,2,2,0,0,2,,224.0,703.0,31,0.0,0.0,5.0,7.0,2.9999999999999996,2,1,184.04157620427983,588.0,26534.741946210863,0,6,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02690811922902301,8844.91398207029,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12717,2,36.0,0.0,9,111,631.0,0.0,0.0,85,38,0.0,0.0,1075.9815428677707,631.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,112729,1,1,1,0,1,,900.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,265.114152758833,631.0,30204.655568223952,6,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020890819250520692,14383.16931820188,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +12718,1,62.0,160.0,1,111,600.0,500.0,0.0,68,21,0.0,0.0,1023.1203260232367,1100.0,0.0,949.2520239698945,50,2,2,2,2,2,2,2,1,2,20.0,2,,1,112730,2,3,0,0,1,,0.0,321.0,42,1.0,3.0,4.0,2.0,1.5,2,2,308.711837974916,600.0,19682.396531921146,4,5,2,3,54.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.055887503242605996,13121.597687947431,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +12719,2,64.0,0.0,7,111,570.0,,,0,52,0.0,0.0,,680.0,152.4148147936173,,70,0,0,0,0,0,0,0,0,2,15.0,2,,5,112731,2,2,0,0,2,,540.0,542.0,22,1.0,0.0,4.0,2.0,1.5,2,2,153.02197407394368,570.0,38841.880054809706,0,1,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017506876573442205,25894.58670320647,7,4,7,7_0,7_2,7_0_0 +12720,2,81.0,0.0,2,221,1340.0,,,0,72,0.0,0.0,,1640.0,415.67676761895626,,44,0,0,0,0,0,0,0,0,0,,1,,2,112732,2,1,0,0,2,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,75.49533116674898,1340.0,24134.132395848137,0,5,0,1,100.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06795355114079567,24134.132395848137,6,3,6,6_1,6_1,6_0_1 +12721,2,42.0,0.0,2,111,516.0,276.0,0.0,52,54,0.0,0.0,879.8834803799836,792.0,0.0,523.9871172313817,31,0,0,0,0,0,0,0,0,1,35.0,2,,2,112733,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1651.3218932445,516.0,49138.68642360706,1,1,0,1,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016117646962974366,21364.646271133508,6,3,6,6_0,6_3,6_0_1 +12722,2,37.0,0.0,9,111,450.0,,,0,55,0.0,0.0,,500.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,112734,2,3,0,0,2,,1000.0,440.0,32,1.0,0.0,3.0,2.0,1.3,1,1,101.06486519083425,450.0,20094.788590061802,0,1,2,3,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02488207316832798,15457.529684662924,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +12723,1,59.0,219.0,5,111,207.0,,,0,67,0.0,0.0,,207.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,3,112735,2,1,0,0,2,,139.0,380.0,12,1.0,0.0,1.0,1.0,1.0,1,1,164.9418744813372,207.0,5062.716833308903,0,4,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0408871376408205,5062.716833308903,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12724,2,73.0,0.0,2,111,223.0,110.0,0.0,0,77,0.0,0.0,380.25972117196966,484.0,0.0,208.8354452733768,60,2,1,2,1,1,2,2,2,0,,2,,2,112736,2,1,0,1,1,980.0,0.0,361.0,11,0.0,0.0,4.0,1.0,1.0,1,1,327.723691278423,223.0,14147.581185937372,0,5,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03421079502134921,14147.581185937372,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +12726,2,49.0,0.0,2,111,0.0,0.0,0.0,52,38,0.0,264.8654554020448,0.0,2145.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,2,112738,2,1,1,0,1,,650.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1355.6806547574,0.0,69236.0309948852,1,1,1,2,100.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03098097867797277,27694.41239795408,7,4,7,7_1,7_3,7_0_1 +12727,2,66.0,0.0,6,111,400.0,0.0,0.0,75,74,0.0,0.0,682.0802173488245,2800.0,3325.41414095165,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,112739,2,2,3,0,1,,340.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1006.83472085347,400.0,40982.81815811009,5,5,0,1,125.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0683213142931682,27321.878772073393,7,4,7,7_1,7_2,7_0_0 +12728,2,64.0,0.0,2,111,390.0,2029.0,0.0,77,74,0.0,33.1081819252556,665.0282119151038,2444.0,0.0,3852.064713269832,41,2,2,1,1,1,2,2,2,0,,1,,2,112740,2,2,3,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,823.369761852411,390.0,49496.34713768547,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,1,1,0,0,0.04937738118737231,32997.56475845698,8,4,8,8_1,8_4,8_0_1 +12729,2,31.0,0.0,2,111,450.0,,,0,68,0.0,0.0,,550.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,2,,2,112741,2,2,0,0,2,,400.0,750.0,12,1.0,0.0,4.0,1.0,1.0,1,1,28.508289924031992,450.0,28292.124712764562,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01944003872398655,28292.124712764562,8,4,8,8_0,8_2,8_0_1 +12730,2,79.0,0.0,7,111,0.0,,,0,78,0.0,0.0,,704.0,99.7624242285495,,71,0,0,0,0,0,0,0,0,0,,1,,5,112742,2,1,0,0,2,,137.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,80.95332394917754,0.0,11486.534193130428,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06128915721341171,11486.534193130428,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12731,2,74.0,0.0,1,111,1490.0,0.0,0.0,77,75,0.0,105.94618216081791,2540.748809624371,1690.0,166.2707070475825,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,112743,1,2,3,0,1,,138.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,976.075181843905,1490.0,40257.690440938735,5,5,0,1,85.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0419795567378453,26838.460293959157,7,4,7,7_1,7_2,7_1_0 +12732,2,50.0,0.0,2,221,1704.0,0.0,0.0,85,85,0.0,0.0,2905.661725905992,1914.0,290.9737373332694,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112744,1,2,3,0,2,,444.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,928.681715392102,1704.0,12255.04150492528,7,7,0,1,70.0,1,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15618062160220075,8170.027669950187,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +12733,2,55.0,0.0,2,111,0.0,0.0,0.0,78,54,0.0,0.0,0.0,3927.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,112745,2,1,1,0,1,,91.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,282.140485239841,0.0,30958.16322330565,5,1,1,2,75.0,6,5,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12684861087119376,20638.775482203768,5,3,5,5_1,5_2,5_0_1 +12734,2,70.0,0.0,5,111,1000.0,850.0,0.0,74,75,0.0,0.0,1705.2005433720612,1850.0,0.0,1613.7284407488207,71,2,2,2,1,2,2,2,2,0,,2,,3,112746,2,2,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,986.434809589609,1000.0,66295.01427036032,5,5,0,1,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.027905567565842008,44196.67618024021,10,5,10,10_0,10_4,10_0_0 +12736,1,32.0,142.0,9,112,1500.0,0.0,0.0,0,54,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,30,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,112748,2,1,1,0,1,,300.0,,32,1.0,0.0,4.0,4.0,1.9,1,1,1882.59011056831,1500.0,44000.58146152219,0,1,1,2,103.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03545407692769231,23158.200769222207,6,3,6,6_1,6_1,6_0_0 +12737,2,52.0,0.0,1,111,663.0,2217.0,0.0,65,64,0.0,0.0,1130.5479602556766,2880.0,0.0,4208.983474282512,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,112749,2,1,2,0,1,,535.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1063.90695239855,663.0,54746.202986150696,1,1,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0526063880764217,36497.4686574338,9,5,9,9_1,9_3,9_1_0 +12738,2,46.0,0.0,8,120,951.0,1508.0,0.0,54,37,0.0,0.0,1621.6457167468302,2459.0,0.0,2862.9441042932017,42,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,112750,2,1,1,0,1,,930.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,648.677029507624,951.0,53374.67962257974,1,1,1,2,130.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04607053414442865,23206.382444599887,6,3,6,6_1,6_0,6_0_0 +12739,2,83.0,0.0,7,211,600.0,,,90,74,0.0,0.0,,675.0,103.91919190473907,,10,0,0,0,0,0,0,0,0,0,,1,,5,112751,2,2,0,0,2,,200.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,85.7179453280291,600.0,83057.49113044656,1,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008126900906985906,55371.66075363104,10,5,10,10_1,10_2,10_0_0 +12740,2,67.0,0.0,7,112,400.0,2000.0,0.0,0,86,0.0,0.0,682.0802173488245,2400.0,0.0,3797.008095879578,70,1,2,2,1,1,2,1,2,0,,1,,5,112752,1,3,1,0,2,,200.0,750.0,11,0.0,10.0,7.0,1.0,1.0,1,1,2573.95133763454,400.0,21310.533058776567,0,5,2,3,100.0,8,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.11262036446392784,21310.533058776567,6,3,6,6_1,6_0,6_0_0 +12741,2,52.0,0.0,1,111,217.0,648.0,0.0,0,46,0.0,0.0,370.02851791173725,865.0,0.0,1230.2306230649833,42,2,2,2,2,1,2,2,2,2,20.0,1,,1,112753,2,1,1,0,1,,154.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,498.293339980921,217.0,22924.388856929,0,1,1,2,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03773273980817813,22924.388856929,6,3,6,6_1,6_3,6_1_0 +12742,2,59.0,0.0,6,300,1910.0,0.0,0.0,0,34,0.0,0.0,3256.9330378406366,3795.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,112754,2,1,3,0,1,,275.0,586.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1527.55803103969,1910.0,39067.46627757039,0,1,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09713964998489816,39067.46627757039,9,5,9,9_1,9_0,9_0_0 +12743,2,56.0,0.0,1,212,1800.0,0.0,0.0,77,45,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,4.0,1,,1,112755,2,2,2,0,1,,360.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,901.85956850037,1800.0,40305.42977924124,5,1,0,1,145.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04465899532293451,26870.28651949416,7,4,7,7_1,7_0,7_1_0 +12744,2,60.0,0.0,2,120,800.0,0.0,0.0,52,52,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,112756,2,1,1,0,1,,180.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,978.419442496699,800.0,35200.327362649055,1,1,0,1,80.0,0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022727061363891667,23466.884908432705,6,3,6,6_1,6_1,6_0_1 +12745,2,67.0,0.0,2,112,575.0,0.0,0.0,0,77,0.0,635.6770929649075,980.4903124389351,1165.0,152.4148147936173,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,112757,2,2,1,0,1,,163.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1604.89117548835,575.0,21279.232061372433,0,5,0,1,112.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054748216319083734,21279.232061372433,6,3,6,6_1,6_2,6_0_1 +12746,2,37.0,0.0,1,300,960.0,0.0,0.0,0,67,0.0,595.9472746546007,1636.9925216371787,1440.0,41.567676761895626,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,1,112758,2,2,4,0,1,,216.0,100.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1385.62533898463,960.0,18713.431626146947,0,1,2,3,65.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07695007675599116,18713.431626146947,5,3,5,5_1,5_0,5_1_0 +12747,1,41.0,170.0,5,111,330.0,1250.0,0.0,0,67,0.0,0.0,562.7161793127802,1580.0,0.0,2373.130059924736,50,2,2,2,2,1,2,2,2,2,10.0,2,,3,112759,2,3,0,0,1,,600.0,380.0,32,2.0,1.0,4.0,3.0,2.0,3,2,257.586362710163,330.0,25558.24836327921,0,1,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.06181957298255476,12779.124181639605,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12748,2,54.0,0.0,6,111,66.0,76.0,0.0,54,46,0.0,0.0,112.54323586255603,142.0,0.0,144.28630764342395,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,112760,2,2,3,0,1,,615.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,622.646920372965,66.0,83550.74827329464,1,1,0,1,205.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016995658678665303,41775.37413664732,9,5,9,9_1,9_4,9_0_0 +12749,2,56.0,0.0,2,111,300.0,0.0,0.0,67,62,843.7462808292812,0.0,511.56016301161833,1364.0,365.79555550468154,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,112761,1,2,0,0,1,,0.0,508.0,43,3.0,5.0,3.0,5.0,2.8,4,3,577.621628978002,300.0,25720.269834303217,4,1,2,3,82.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05303210303730283,9185.810655108293,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +12750,2,46.0,0.0,8,111,200.0,,,22,54,0.0,0.0,,284.0,116.38949493330776,,42,0,0,0,0,0,0,0,0,0,,1,1999.0,6,112762,2,1,0,0,2,,120.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,105.49656279103328,200.0,38482.75451463895,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007379929102839184,19241.377257319476,5,3,5,5_1,5_2,5_0_0 +12751,2,51.0,0.0,8,111,436.0,1100.0,0.0,31,33,0.0,0.0,743.4674369102187,1536.0,0.0,2088.354452733768,41,0,0,0,0,0,0,0,0,3,50.0,1,2003.0,6,112763,2,1,2,0,1,,305.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,929.183398131263,436.0,92615.87893123087,1,1,1,2,130.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016584629090876636,46307.93946561543,10,5,10,10_1,10_2,10_0_0 +12752,2,56.0,0.0,2,111,800.0,1000.0,0.0,85,37,0.0,0.0,1364.160434697649,1800.0,0.0,1898.504047939789,10,0,0,0,0,0,0,0,0,0,,1,,2,112764,2,2,2,0,1,,280.0,,42,1.0,1.0,7.0,5.0,3.0,5,5,1190.69358296229,800.0,77917.22908627692,6,1,0,1,175.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023101437526825797,25972.40969542564,7,4,7,7_1,7_3,7_0_1 +12753,2,43.0,0.0,7,111,850.0,0.0,0.0,55,34,0.0,0.0,1449.420461866252,850.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,112765,2,1,0,0,1,,500.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1883.90362162404,850.0,61683.02247563798,1,1,1,2,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01378012888936679,34268.34581979888,9,5,9,9_0,9_3,9_0_0 +12754,2,59.0,0.0,1,111,126.0,801.6,0.0,0,22,0.0,0.0,214.8552684648797,928.0,0.0,1521.840844828535,50,0,0,0,0,0,0,0,0,0,,1,,1,112766,1,1,4,0,2,,0.0,325.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1645.23573660121,126.0,5524.234974630284,0,1,2,3,75.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1679870614233073,5524.234974630284,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +12755,1,36.0,64.0,2,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,731.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,,2,112767,2,2,0,1,1,684.0,0.0,295.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1553.37434310655,0.0,19014.88341913598,0,1,2,3,44.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03844356990715729,19014.88341913598,5,3,5,5_0,5_3,5_0_1 +12756,2,64.0,0.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,444.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,112768,2,1,0,1,1,,0.0,480.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2750.52643011111,0.0,19547.8253771899,0,5,2,3,65.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022713523956383288,19547.8253771899,5,3,5,5_0,5_2,5_0_1 +12757,2,40.0,0.0,5,111,1020.0,0.0,0.0,46,54,0.0,0.0,1739.3045542395023,1020.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,,3,112769,2,3,0,1,1,840.0,0.0,489.0,43,2.0,2.0,4.0,3.0,2.0,3,2,859.615902092843,1020.0,61837.72574426444,1,1,2,3,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016494785144885553,30918.86287213222,8,4,8,8_0,8_4,8_0_0 +12758,1,35.0,327.0,2,111,450.0,1000.0,0.0,63,21,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,112770,2,3,2,0,1,,500.0,428.0,43,3.0,0.0,4.0,4.0,2.5,4,4,346.644411675914,450.0,13958.852431379553,4,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10387673393125028,5583.540972551821,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +12759,2,79.0,0.0,2,111,500.0,200.0,0.0,74,74,3691.3899786281054,0.0,852.6002716860306,4200.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,1,,2,112771,2,2,1,0,1,,420.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,866.273821558505,500.0,72723.72294097774,5,5,0,1,110.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05775281888976864,48482.48196065182,10,5,10,10_1,10_4,10_0_1 +12760,2,45.0,0.0,5,111,676.0,859.0,0.0,52,21,0.0,0.0,1152.7155673195134,1535.0,0.0,1630.8149771802787,60,0,0,0,0,0,0,0,0,0,,2,,3,112772,2,1,0,0,1,,340.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1420.34955305443,676.0,11914.30513033467,1,1,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.12883672049759584,5957.152565167335,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +12761,2,82.0,0.0,7,111,296.0,1499.0,0.0,77,77,0.0,0.0,504.7393608381301,1795.0,0.0,2845.8575678617435,70,1,2,2,1,1,2,2,2,0,,1,,5,112773,2,1,1,0,1,,192.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1127.23169464089,296.0,25141.22698997089,5,5,0,1,113.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07139667450264241,16760.81799331393,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +12762,0,32.0,0.0,7,111,360.0,,,0,54,0.0,0.0,,485.0,173.19865317456512,,43,0,0,0,0,0,0,0,0,2,20.0,1,,5,112774,2,1,0,0,2,,420.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,127.54192038691475,360.0,28155.141611468025,0,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017225983328119792,17596.963507167515,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +12763,1,43.0,507.0,9,111,360.0,,,0,85,0.0,0.0,,492.0,182.89777775234077,,71,2,2,2,2,2,1,2,2,0,,2,2004.0,6,112775,1,3,0,0,1,,280.0,495.0,31,0.0,0.0,5.0,5.0,2.5999999999999996,3,2,135.7909503441216,360.0,18784.588235294115,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.026191684046370935,7224.841628959276,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12764,1,40.0,413.0,7,111,234.0,,,67,68,0.0,0.0,,990.0,1047.5054543997699,,71,2,2,2,2,1,2,2,2,0,,2,,5,112776,1,2,0,0,2,,240.0,415.0,43,2.0,0.0,4.0,5.0,2.8,4,3,142.34791117699234,234.0,29719.308449901007,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.03331167687393808,10614.038732107503,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12765,2,74.0,0.0,6,300,850.0,0.0,0.0,86,75,0.0,66.2163638505112,1449.420461866252,1100.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112777,2,1,2,0,1,,120.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1356.73241803517,850.0,31388.164093960695,5,5,0,1,88.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03504505700642899,20925.44272930713,5,3,5,5_1,5_0,5_0_0 +12766,2,46.0,0.0,1,120,0.0,0.0,0.0,11,11,7013.6409593934,0.0,0.0,7751.0,0.0,0.0,44,2,2,2,1,1,2,2,2,0,,5,,1,112778,2,3,4,0,1,,0.0,450.0,43,2.0,0.0,6.0,6.0,3.0999999999999996,5,3,261.814542617717,0.0,121040.19104848734,1,1,2,3,250.0,0,0,3,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0640365810137811,39045.222918866886,9,5,9,9_1,9_0,9_1_0 +12767,1,64.0,150.0,6,120,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,620.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,112779,2,3,3,0,1,,340.0,230.0,21,1.0,1.0,4.0,2.0,1.5,2,2,2352.84728734097,500.0,14674.123727763475,0,5,2,3,80.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042251245219294326,9782.749151842318,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +12768,2,54.0,0.0,2,111,150.0,90.0,0.0,0,54,0.0,0.0,255.78008150580916,240.0,0.0,170.865364314581,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,112780,2,1,0,1,1,,0.0,333.0,12,1.0,0.0,2.0,1.0,1.0,1,1,330.70231936883,150.0,18970.85962435276,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012650981808537218,18970.85962435276,5,3,5,5_0,5_4,5_0_1 +12769,2,63.0,0.0,1,111,350.0,1200.0,0.0,78,78,0.0,0.0,596.8201901802214,1630.0,110.84713803172167,2278.2048575277468,50,2,2,2,1,2,2,2,2,0,,1,,1,112781,2,1,1,0,1,,170.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1226.38610960162,350.0,27051.64655646799,7,5,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06025511225712324,18034.431037645325,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +12770,2,73.0,0.0,9,111,0.0,0.0,0.0,72,77,0.0,0.0,0.0,1301.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2013.0,6,112782,2,1,1,0,1,,654.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,482.006300759402,0.0,17365.632194931677,5,5,0,1,138.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07491809024837627,11577.08812995445,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12771,2,63.0,0.0,5,221,1575.0,0.0,0.0,75,74,0.0,0.0,2685.6908558109963,1645.0,96.99124577775646,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,112783,2,1,2,0,1,,176.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1826.99878307066,1575.0,65043.969782585526,5,5,0,1,92.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025290584284731375,43362.646521723684,10,5,10,10_1,10_1,10_0_0 +12772,2,26.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,2073.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,112784,2,1,0,0,2,,0.0,2100.0,22,3.0,0.0,4.0,3.0,2.0,3,3,928.705825124525,0.0,30713.989835630564,0,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06749367343982,15356.994917815282,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +12773,2,79.0,0.0,7,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1921.0,0.0,0.0,71,2,2,1,2,2,1,2,1,0,,1,,5,112785,2,1,3,0,1,,800.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,340.820429574158,0.0,16289.956671553395,0,5,0,1,170.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.11792542108810995,16289.956671553395,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +12774,2,36.0,0.0,2,111,582.0,0.0,0.0,54,46,0.0,0.0,992.4267162425396,582.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,12.0,2,,2,112786,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1442.80698073785,582.0,52728.0,1,1,1,2,68.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011037778789258079,35152.0,9,5,9,9_0,9_3,9_0_1 +12775,2,74.0,0.0,2,111,262.0,1242.0,0.0,75,75,0.0,0.0,446.76254236348,1504.0,0.0,2357.942027541218,50,0,0,0,0,0,0,0,0,0,,1,,2,112787,2,2,2,0,1,,220.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1124.94200071974,262.0,63668.025237612244,5,5,0,1,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023622532572464702,42445.35015840816,9,5,9,9_1,9_2,9_0_1 +12776,2,40.0,0.0,2,111,500.0,1500.0,0.0,54,90,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,112788,2,1,2,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1001.04989753621,500.0,73173.1137064047,1,1,1,2,80.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027332443553306707,34844.33986019272,9,5,9,9_1,9_2,9_0_1 +12777,2,56.0,0.0,6,111,1657.0,0.0,0.0,37,46,0.0,198.6490915515336,2825.5173003675054,1882.0,103.91919190473907,0.0,41,0,0,0,0,0,0,0,0,3,90.0,1,,4,112789,2,1,2,0,1,,492.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,567.601034207604,1657.0,97650.54813905894,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019272805282362002,48825.27406952947,10,5,10,10_1,10_4,10_0_0 +12778,1,39.0,300.0,2,111,315.0,850.0,0.0,85,62,0.0,0.0,537.1381711621992,1165.0,0.0,1613.7284407488207,43,0,0,0,0,0,0,0,0,0,,2,,2,112790,1,2,0,1,1,70.0,420.0,288.0,42,1.0,0.0,3.0,3.0,1.8,2,2,390.465366880299,315.0,7963.291167716878,6,4,2,3,60.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14629629577314732,4424.050648731599,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12779,1,62.0,150.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1573.0,83.13535352379125,0.0,31,2,2,2,1,1,2,2,2,0,,2,,1,112791,2,1,0,0,1,,187.0,658.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2096.07394713333,0.0,14084.573791225648,0,5,2,3,76.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.11168247071700113,14084.573791225648,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +12781,2,69.0,0.0,2,111,760.0,47.0,0.0,77,77,2636.7071275915036,0.0,1295.9524129627664,3307.0,0.0,89.22969025317008,50,0,0,0,0,0,0,0,0,0,,1,,2,112793,2,2,3,0,1,,220.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,747.858908679568,760.0,40087.43911198948,5,5,0,1,110.0,7,5,4,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08249466848609274,26724.959407992985,7,4,7,7_1,7_2,7_0_1 +12782,2,30.0,0.0,7,111,1800.0,0.0,0.0,85,22,0.0,0.0,3069.36097806971,2040.0,332.541414095165,0.0,43,2,2,2,2,1,2,1,2,0,,8,,5,112794,1,1,0,0,1,,1000.0,800.0,42,1.0,0.0,5.0,4.0,2.1,2,2,929.194976671468,1800.0,27867.39259039578,6,1,2,3,131.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.07320383467461775,13270.186947807513,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +12783,2,83.0,0.0,2,111,456.0,,,0,77,0.0,0.0,,564.0,149.64363634282427,,71,0,0,0,0,0,0,0,0,0,,2,,2,112795,1,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,91.9200906288319,456.0,27560.078438367345,0,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020464382975588197,27560.078438367345,7,4,7,7_0,7_2,7_0_1 +12784,2,55.0,0.0,7,111,450.0,1000.0,0.0,0,68,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,112796,2,1,2,0,1,,450.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,512.130312419598,450.0,14067.81939127277,0,1,1,2,104.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10307212224373126,9378.546260848512,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +12785,2,44.0,0.0,2,300,820.0,0.0,0.0,45,65,0.0,529.7309108040896,1398.2644455650902,1280.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,112797,2,2,4,0,1,,410.0,,43,2.0,5.0,3.0,2.0,1.5,2,2,761.305727905866,820.0,27872.247180956365,1,1,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04592381775641529,18581.498120637578,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +12786,2,32.0,0.0,5,111,350.0,95.0,0.0,0,63,0.0,0.0,596.8201901802214,445.0,0.0,180.35788455427996,50,0,0,0,0,0,0,0,0,2,6.0,2,,3,112798,2,2,0,1,2,916.0,240.0,550.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1864.19763122077,350.0,36318.65918254077,0,1,2,3,50.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012252654971743064,24212.43945502718,7,4,7,7_0,7_2,7_0_0 +12787,1,56.0,255.0,1,111,400.0,0.0,0.0,0,78,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,112799,1,3,0,0,1,,0.0,301.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1748.58083831333,400.0,10362.235219874736,0,7,3,4,32.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.03860171010524845,10362.235219874736,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +12788,2,51.0,0.0,5,111,800.0,,,54,46,0.0,0.0,,1030.0,318.68552184119983,,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,112800,2,1,0,0,2,,890.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,95.92052472787155,800.0,78697.99982446976,1,1,1,2,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013088007348310516,32790.83326019574,8,4,8,8_1,8_2,8_0_0 +12789,2,46.0,0.0,7,112,424.0,1576.0,0.0,0,42,0.0,0.0,723.005030389754,2000.0,0.0,2992.0423795531074,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,112801,1,1,1,0,1,,315.0,,32,1.0,0.0,7.0,3.0,2.0,3,2,786.174861392906,424.0,50232.7075393984,0,1,1,2,110.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03981469639938012,25116.3537696992,7,4,7,7_1,7_1,7_0_0 +12790,2,77.0,0.0,1,111,284.0,977.0,0.0,78,78,0.0,0.0,484.2769543176654,1261.0,0.0,1854.838454837174,71,0,0,0,0,0,0,0,0,0,,1,,1,112802,1,2,2,0,2,,210.0,304.0,41,0.0,2.0,4.0,2.0,1.5,2,2,967.13537097043,284.0,28934.0,5,5,2,3,75.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04358194511647197,19289.333333333332,5,3,5,5_1,5_3,5_1_0 +12791,2,44.0,0.0,6,111,280.0,,,54,63,0.0,0.0,,364.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,112803,2,2,0,0,1,,360.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,104.41359850662407,280.0,56910.09550168545,1,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006396053227308672,28455.047750842725,8,4,8,8_1,8_2,8_0_0 +12792,2,47.0,0.0,2,111,230.0,211.0,0.0,0,67,0.0,0.0,392.1961249755741,441.0,0.0,400.58435411529547,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,112804,2,1,0,1,1,625.0,212.0,316.0,32,1.0,0.0,3.0,3.0,2.0,3,2,1992.65881062112,230.0,19736.19165683507,0,1,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022344736394332293,9868.095828417536,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +12793,1,52.0,360.0,1,112,1254.4,0.0,0.0,0,56,1898.4291318658827,805.1909844222162,2139.0035616059135,3764.0,141.21925385241343,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,112805,2,1,2,0,1,,1037.0,650.0,32,1.0,0.0,7.0,4.0,2.5,4,3,1364.21578742894,1254.4,25748.294667520455,0,1,2,3,150.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1461844385658676,10299.317867008182,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +12794,2,75.0,0.0,7,111,500.0,,,0,90,0.0,0.0,,760.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,1,,5,112806,2,2,0,0,2,,450.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,114.1805163747458,500.0,10221.224,0,5,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0743550870228458,10221.224,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +12795,2,55.0,0.0,2,111,540.0,1650.0,0.0,55,52,0.0,0.0,920.8082934209131,2190.0,0.0,3132.5316791006517,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,112807,2,1,1,0,1,,220.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1373.46381035093,540.0,32816.72700482852,1,1,0,1,100.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06673426023496408,21877.818003219014,6,3,6,6_1,6_2,6_0_1 +12796,1,50.0,64.0,2,111,250.0,150.0,0.0,0,54,0.0,0.0,426.3001358430153,400.0,0.0,284.77560719096834,50,2,1,2,1,1,2,2,2,1,30.0,2,,2,112808,2,1,0,1,1,550.0,0.0,371.0,12,1.0,2.0,3.0,1.0,1.0,1,1,706.303965353226,250.0,11561.0,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03459908312429721,11561.0,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +12797,2,87.0,0.0,1,111,0.0,0.0,0.0,77,74,1898.4291318658827,0.0,0.0,12406.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112809,2,2,2,0,1,,523.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,259.884910828289,0.0,46689.18910254142,5,5,0,1,90.0,8,6,3,1,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2657146169909536,31126.126068360947,8,4,8,8_1,8_2,8_1_0 +12798,1,27.0,94.0,9,111,500.0,0.0,0.0,0,55,0.0,0.0,852.6002716860306,500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2007.0,6,112810,2,1,0,0,1,,0.0,432.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1499.51536467302,500.0,11519.221336056124,0,4,2,3,45.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.043405711672103935,11519.221336056124,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +12799,2,44.0,0.0,6,111,780.0,,,52,85,0.0,0.0,,1020.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,4,112811,2,1,0,0,2,,280.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,112.11511373849733,780.0,15391.749024553712,4,6,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06626927182692775,7695.874512276856,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12800,0,37.0,0.0,1,211,0.0,,,43,47,0.0,0.0,,693.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,112812,2,1,0,0,2,,511.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,122.92287413710514,0.0,54083.76274524993,1,1,5,0,108.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012813457585490663,25754.172735833297,7,4,7,7_1,7_2,7_1_0 +12801,2,28.0,0.0,9,111,0.0,0.0,0.0,84,64,0.0,0.0,0.0,397.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,112813,2,1,0,0,1,,0.0,596.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1242.09926499024,0.0,15118.105548818588,3,1,2,3,60.0,5,4,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026259903975271805,10078.737032545725,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +12802,2,45.0,0.0,9,111,1600.0,0.0,0.0,54,64,0.0,0.0,2728.320869395298,1650.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,112814,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.3,4,2,705.414613068477,1600.0,35408.966936673816,1,1,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046598365971842574,15395.203015945139,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +12804,2,41.0,0.0,9,112,770.0,0.0,0.0,0,52,0.0,0.0,1313.0044183964872,830.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,112816,2,1,1,0,1,,98.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1751.12657112073,770.0,19972.695424513375,0,1,1,2,63.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04155673444963789,19972.695424513375,5,3,5,5_1,5_0,5_0_0 +12805,1,42.0,260.0,1,111,0.0,540.0,0.0,0,54,0.0,0.0,0.0,1661.0,0.0,1025.192185887486,20,2,2,1,2,1,2,2,2,0,,2,,1,112817,2,2,0,0,1,,0.0,324.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1134.04294964365,0.0,20767.319717070666,0,1,2,3,50.0,9,7,4,0,1,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.07998143345550093,15974.86132082359,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +12806,2,79.0,0.0,1,111,595.0,1777.0,0.0,77,78,0.0,0.0,1014.5943233063764,2372.0,0.0,3373.641693189005,70,2,2,2,1,2,2,2,2,0,,1,,1,112818,2,1,2,0,1,,290.0,,41,0.0,4.0,9.0,2.0,1.5,2,2,312.163129495623,595.0,31882.63759457002,5,5,0,1,120.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07439785974307153,21255.091729713346,5,3,5,5_1,5_2,5_1_0 +12807,1,70.0,100.0,2,111,152.0,,,0,77,0.0,0.0,,272.0,166.2707070475825,,71,2,2,2,2,1,2,2,2,0,,1,,2,112819,2,2,0,0,2,,300.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,106.40880997189042,152.0,23667.734527228888,0,5,0,1,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.011492439197637342,15778.489684819258,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +12808,2,55.0,0.0,1,112,500.0,0.0,0.0,0,64,0.0,397.2981831030672,852.6002716860306,830.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112820,1,2,4,0,2,,140.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,875.928629730757,500.0,20178.00956780426,0,1,1,2,60.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04113388871240977,20178.00956780426,5,3,5,5_1,5_0,5_1_0 +12810,1,57.0,108.0,2,111,0.0,0.0,500.0,0,78,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,71,0,0,0,0,0,0,0,0,0,,2,,2,112822,2,1,0,0,1,,0.0,231.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1834.68985565297,0.0,12027.584358494623,0,7,2,3,29.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04157110730608753,12027.584358494623,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +12811,1,27.0,442.0,2,111,484.0,,,67,22,0.0,0.0,,659.0,242.47811444439117,,71,0,0,0,0,0,0,0,0,0,,2,,2,112823,1,3,0,0,2,,484.0,415.0,43,2.0,1.0,4.0,5.0,2.4,2,2,134.86744676516412,484.0,13305.964839478578,4,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04952666025726732,5544.152016449408,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12812,2,51.0,0.0,1,111,93.0,,,0,34,0.0,0.0,,162.0,95.60565655235995,,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,112824,2,1,0,0,1,,148.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,106.11299744861847,93.0,67761.45944835227,0,1,1,2,70.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0023907395342255915,67761.45944835227,10,5,10,10_1,10_2,10_1_0 +12813,1,44.0,270.0,2,111,190.0,111.0,0.0,0,62,0.0,0.0,323.9881032406916,301.0,0.0,210.73394932131657,50,0,0,0,0,0,0,0,0,0,,2,,2,112825,2,1,0,1,1,442.0,110.0,273.0,12,1.0,1.0,3.0,1.0,1.0,1,1,435.209416378247,190.0,9344.453423932311,0,4,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.032211621840727615,9344.453423932311,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +12814,2,92.0,0.0,7,111,600.0,,,86,78,0.0,264.8654554020448,,880.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,5,112826,2,1,0,0,2,,240.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,114.1304464618988,600.0,19585.628808269583,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04493090360358715,13057.085872179721,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12815,1,43.0,152.0,2,111,600.0,600.0,0.0,0,52,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,41,2,2,2,2,1,2,2,2,0,,8,,2,112827,2,2,0,1,1,,0.0,484.0,32,2.0,0.0,5.0,4.0,2.5,4,4,203.107671663047,600.0,14953.286771499768,0,1,2,3,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08024991550935419,5981.314708599907,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +12816,2,47.0,0.0,8,112,673.0,0.0,0.0,69,11,970.3082229536734,0.0,1147.599965689397,1733.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,1,3.0,1,2001.0,6,112828,2,1,1,0,1,,327.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,1252.03872940509,673.0,44428.395464890826,1,1,1,2,180.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039006585357544345,17771.35818595633,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +12817,2,57.0,0.0,1,211,1600.0,0.0,0.0,85,31,0.0,0.0,2728.320869395298,4100.0,3463.9730634913026,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,112829,2,1,2,0,1,,400.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1644.45551939614,1600.0,47732.672613460025,6,1,0,1,200.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08589504369893276,31821.781742306684,8,4,8,8_1,8_1,8_1_0 +12818,2,55.0,0.0,2,111,250.0,0.0,0.0,0,52,0.0,0.0,426.3001358430153,976.0,0.0,0.0,50,1,2,2,1,2,2,2,2,1,20.0,2,,2,112830,2,2,0,1,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1619.23876358879,250.0,18013.285636034245,0,1,1,2,50.0,7,5,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.05418223081121771,18013.285636034245,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +12819,2,72.0,0.0,6,111,1472.0,0.0,0.0,0,77,0.0,264.8654554020448,2510.055199843674,2872.0,1662.707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,112831,2,2,2,0,1,,206.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,994.508149447366,1472.0,26418.660064961226,0,5,0,1,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10871103958103846,26418.660064961226,7,4,7,7_1,7_3,7_0_0 +12820,1,45.0,254.0,1,300,470.0,0.0,0.0,0,52,1582.0242765549024,397.2981831030672,801.4442553848687,2430.0,221.69427606344334,0.0,33,2,2,2,2,1,2,1,2,2,10.0,1,,1,112832,1,2,1,0,1,,702.0,,32,1.0,2.0,5.0,3.0,2.0,3,3,1136.47719747416,470.0,13068.541408761834,0,1,1,2,70.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.185942709595028,6534.270704380917,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +12821,2,79.0,0.0,1,221,5000.0,0.0,0.0,71,12,1582.0242765549024,0.0,8526.002716860306,6540.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,112833,2,2,2,0,1,,1300.0,,42,3.0,2.0,9.0,5.0,2.8,4,4,1668.87258934351,5000.0,54088.7823253648,5,1,0,1,250.0,1,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12091231709856931,19317.422259058858,5,3,5,5_1,5_1,5_1_0 +12822,2,36.0,0.0,1,111,1350.0,1500.0,0.0,37,43,0.0,0.0,2302.0207335522828,2850.0,0.0,2847.7560719096837,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,112834,1,1,3,0,2,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,563.635359285116,1350.0,81024.83656637592,1,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03517439986028564,45013.79809243106,10,5,10,10_1,10_4,10_1_0 +12823,2,76.0,0.0,2,111,2100.0,0.0,0.0,77,72,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112835,2,2,2,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1016.20674725411,2100.0,50289.97558381792,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.041757825006296656,33526.65038921194,8,4,8,8_1,8_3,8_0_1 +12824,2,46.0,0.0,8,111,695.0,1520.0,0.0,0,37,0.0,0.0,1185.1143776435824,2215.0,0.0,2885.7261528684794,10,2,2,1,1,2,2,2,2,0,,1,2001.0,6,112836,2,1,1,0,1,,320.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1418.62644368667,695.0,9927.936878813849,0,1,1,2,150.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.22310778432997447,6204.960549258655,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12825,2,48.0,0.0,2,400,1200.0,0.0,0.0,56,21,2425.7705573841836,66.2163638505112,2046.2406520464733,3595.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,2,112837,2,2,4,0,1,,150.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1569.82798903521,1200.0,46760.09279888248,1,1,0,1,130.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07688179780699488,23380.04639944124,6,3,6,6_1,6_0,6_0_1 +12826,2,76.0,0.0,8,111,611.0,0.0,0.0,78,74,0.0,0.0,1041.8775320003294,641.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,112838,2,1,1,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,953.423158374468,611.0,32742.26892930903,5,5,0,1,154.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019577140526941705,21828.17928620602,6,3,6,6_1,6_2,6_0_0 +12827,2,36.0,0.0,9,111,0.0,0.0,0.0,54,65,0.0,0.0,0.0,1591.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,112839,2,1,1,0,1,,777.0,680.0,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,3,978.652549797442,0.0,49397.51619866635,1,1,2,3,107.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03220809713592349,18999.044691794752,5,3,5,5_1,5_4,5_0_0 +12828,2,80.0,0.0,2,111,155.0,89.0,0.0,0,77,0.0,0.0,264.3060842226695,244.0,0.0,168.96686026664122,60,2,2,2,2,1,2,2,2,0,,2,,2,112840,1,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1180.34990610876,155.0,23086.18895716532,0,5,0,1,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010569089616858096,23086.18895716532,6,3,6,6_0,6_4,6_0_1 +12829,2,49.0,0.0,2,111,808.0,964.0,0.0,38,52,0.0,0.0,1377.8020390446254,1772.0,0.0,1830.1579022139565,70,0,0,0,0,0,0,0,0,2,15.0,1,,2,112841,1,2,3,0,2,,368.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1105.51598685773,808.0,33603.24818611224,4,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05273299742292006,18668.4712145068,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +12830,2,58.0,0.0,2,111,924.0,132.0,0.0,0,52,0.0,0.0,1575.6053020757845,1056.0,0.0,250.60253432805214,50,2,1,2,1,2,2,2,2,1,10.0,8,,2,112842,1,3,0,1,1,780.0,0.0,446.0,32,1.0,1.0,4.0,2.0,1.5,2,2,290.048502276499,924.0,28509.982523225084,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03703965792121236,19006.65501548339,5,3,5,5_0,5_4,5_0_1 +12831,1,36.0,320.0,1,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1436.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,112843,2,1,1,0,1,,476.0,410.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1731.15241176371,0.0,16240.641452242297,0,1,2,3,95.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0884201528752878,10150.400907651434,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +12832,2,43.0,0.0,9,112,1560.0,0.0,0.0,52,62,0.0,0.0,2660.1128476604154,1610.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,2,12.0,1,2004.0,6,112844,2,1,1,0,1,,381.0,,43,2.0,0.0,6.0,6.0,3.3,5,3,326.363297944013,1560.0,56385.0837650368,1,1,1,2,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028553650939121725,17086.38901970812,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +12833,2,59.0,0.0,7,111,1150.0,0.0,0.0,0,47,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,112845,2,1,1,0,1,,118.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1139.6187932098,1150.0,30383.554174893474,0,1,0,1,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03784942319059788,30383.554174893474,8,4,8,8_1,8_3,8_0_0 +12834,2,75.0,0.0,2,300,300.0,,,0,86,0.0,0.0,,432.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,112846,2,2,0,0,2,,450.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,82.98362300390062,300.0,21861.90485511894,0,5,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019760400699889043,21861.90485511894,6,3,6,6_1,6_1,6_0_1 +12835,2,60.0,0.0,2,111,750.0,0.0,0.0,34,31,0.0,0.0,1278.9004075290459,4207.0,0.0,0.0,10,1,2,2,1,2,2,2,2,2,20.0,1,,2,112847,1,3,4,0,2,,250.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,493.178892070539,750.0,57924.90343389743,1,1,1,2,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07262851986971254,23169.961373558974,6,3,6,6_1,6_3,6_0_1 +12836,2,89.0,0.0,6,300,670.0,0.0,0.0,71,71,0.0,0.0,1142.484364059281,1270.0,831.3535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,112848,1,1,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,781.45625413685,670.0,32616.880772044744,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0389368931037848,21744.587181363164,6,3,6,6_1,6_0,6_0_0 +12837,2,47.0,0.0,9,120,450.0,,,52,38,0.0,0.0,,579.0,178.7410100761512,,50,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,112849,2,1,0,0,1,,280.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,81.44335077458874,450.0,80841.5232606217,1,1,1,2,130.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0071621609371880016,38495.963457438906,9,5,9,9_1,9_1,9_0_0 +12838,2,30.0,0.0,9,111,840.0,0.0,0.0,48,34,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,2012.0,6,112850,2,1,0,0,2,,0.0,850.0,43,2.0,0.0,3.0,2.0,1.5,2,2,996.389943694948,840.0,47503.662163307745,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017682847211068782,31669.10810887183,8,4,8,8_0,8_4,8_0_0 +12839,2,55.0,0.0,1,112,860.0,0.0,0.0,68,63,0.0,0.0,1466.4724672999725,965.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,112851,2,2,0,0,1,,410.0,650.0,43,2.0,6.0,3.0,2.0,1.5,2,2,1243.7310565966,860.0,28551.52222994184,1,1,2,3,75.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.033798548190471234,19034.34815329456,5,3,5,5_0,5_1,5_1_0 +12840,1,47.0,357.0,7,111,276.0,,,0,52,0.0,0.0,,364.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,112852,2,1,0,0,1,,344.0,473.0,32,3.0,1.0,4.0,5.0,2.5999999999999996,3,3,125.17646757192625,276.0,8756.834866366846,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041567530455330064,3368.013410141095,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12841,1,31.0,410.0,2,111,500.0,80.0,0.0,85,64,0.0,26.486545540204478,852.6002716860306,600.0,0.0,151.8803238351831,50,0,0,0,0,0,0,0,0,0,,2,,2,112853,2,2,0,1,1,864.0,0.0,350.0,42,1.0,0.0,4.0,5.0,2.4,2,2,978.671879112119,500.0,20112.96392510809,6,1,2,3,82.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029831505800643723,8380.401635461705,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12842,2,84.0,0.0,6,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,112854,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1946.61428768515,300.0,37832.054037810034,0,5,0,1,53.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007929783556033585,37832.054037810034,9,5,9,9_0,9_3,9_0_0 +12843,1,90.0,151.0,5,111,360.0,1115.0,0.0,0,78,0.0,0.0,613.872195613942,1475.0,0.0,2116.832013452865,70,0,0,0,0,0,0,0,0,0,,2,,3,112855,2,3,0,0,2,,460.0,444.0,11,0.0,3.0,5.0,1.0,1.0,1,1,1317.16655073304,360.0,12139.738692581632,0,5,2,3,70.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.12150179154196664,12139.738692581632,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +12844,2,39.0,0.0,1,111,1550.0,0.0,0.0,0,55,0.0,0.0,2643.0608422266946,1550.0,0.0,0.0,20,2,2,1,2,1,2,2,2,3,20.0,2,,1,112856,2,3,0,0,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1858.18808091624,1550.0,22419.613976380315,0,1,2,3,39.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.06913589152930857,22419.613976380315,6,3,6,6_0,6_3,6_1_0 +12845,1,46.0,109.0,1,111,170.0,0.0,0.0,0,35,0.0,0.0,289.8840923732504,378.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,112857,2,1,0,1,1,299.0,0.0,347.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2715.48110047759,170.0,10616.92589598909,0,1,2,3,32.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03560352626580944,10616.92589598909,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +12846,2,60.0,0.0,1,111,2000.0,12000.0,0.0,52,38,0.0,0.0,3410.4010867441225,14000.0,0.0,22782.04857527747,12,0,0,0,0,0,0,0,0,2,70.0,1,,1,112858,2,1,2,0,1,,275.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,370.664878375942,2000.0,72974.1012498239,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1918488855665596,29189.64049992956,8,4,8,8_1,8_4,8_1_0 +12847,2,59.0,0.0,1,111,1200.0,0.0,0.0,74,75,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,112859,2,1,0,0,2,,0.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,938.18433361335,1200.0,20452.263081996403,5,5,0,1,57.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05867321357978858,13634.842054664268,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +12848,2,88.0,0.0,2,111,320.0,1669.0,0.0,0,74,0.0,0.0,545.6641738790596,1989.0,0.0,3168.6032560115077,70,0,0,0,0,0,0,0,0,0,,1,,2,112860,2,2,5,0,1,,480.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1310.91793945537,320.0,35075.80122935726,0,5,0,1,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05670576096021648,35075.80122935726,9,5,9,9_1,9_2,9_0_1 +12849,1,42.0,58.0,2,111,0.0,0.0,350.0,0,52,0.0,0.0,220.61140164516033,350.0,0.0,418.8562516476383,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,112861,2,2,0,1,1,781.0,0.0,327.0,32,1.0,0.0,3.0,2.0,1.3,1,1,237.07053334728,0.0,21377.38499995929,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01637244218601417,16444.14230766099,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +12850,2,50.0,0.0,5,112,1700.0,0.0,0.0,46,38,0.0,0.0,2898.840923732504,1800.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,3,112862,2,2,1,0,1,,420.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,712.632308372846,1700.0,94713.48933363843,1,1,0,1,172.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01900468468286821,45101.66158744687,10,5,10,10_1,10_1,10_0_0 +12851,2,58.0,0.0,2,111,190.0,450.0,0.0,0,54,0.0,0.0,323.9881032406916,640.0,0.0,854.326821572905,50,0,0,0,0,0,0,0,0,0,,2,,2,112863,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1826.3395203933,190.0,28887.25367628039,0,4,0,1,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02215510021035715,28887.25367628039,8,4,8,8_0,8_3,8_0_1 +12852,0,83.0,0.0,2,111,270.0,1236.0,0.0,0,86,0.0,0.0,460.40414671045653,1506.0,0.0,2346.551003253579,50,0,0,0,0,0,0,0,0,0,,1,,2,112864,2,2,2,0,1,,250.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,398.599650208908,270.0,16152.754656082772,0,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09323487120711473,16152.754656082772,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +12853,1,46.0,238.0,1,111,500.0,0.0,0.0,0,54,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,2,2,1,2,1,2,1,2,0,,2,,1,112865,1,2,0,0,2,,0.0,226.0,12,1.0,3.0,2.0,1.0,1.0,1,1,586.541702457395,500.0,6060.0,0,4,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.08250825082508251,6060.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +12854,2,36.0,0.0,1,120,1000.0,0.0,0.0,48,42,0.0,927.0290939071567,1705.2005433720612,1790.0,124.70303028568689,0.0,20,1,2,2,1,2,2,2,2,3,20.0,1,,1,112866,2,2,1,0,1,,1500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1180.73790439054,1000.0,67710.13760080605,1,1,1,2,160.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0264362186140158,32242.922667050498,8,4,8,8_1,8_0,8_1_0 +12855,2,53.0,0.0,2,111,492.0,468.0,0.0,0,62,0.0,0.0,838.958667339054,1844.0,0.0,888.4998944358213,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,112867,2,2,0,1,1,457.0,242.0,474.0,32,2.0,2.0,4.0,2.0,1.5,2,2,239.288646409968,492.0,16316.394768125814,0,1,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.11301516212406593,10877.596512083875,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +12856,0,81.0,0.0,1,221,125.0,1320.0,0.0,0,72,0.0,0.0,213.15006792150766,1514.0,95.60565655235995,2506.0253432805216,70,0,0,0,0,0,0,0,0,0,,1,,1,112868,2,1,2,0,1,,192.0,,11,0.0,1.0,8.0,1.0,1.0,1,1,1291.87375833707,125.0,9152.950489293324,0,5,0,1,120.0,1,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.16541114275347643,9152.950489293324,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +12857,2,65.0,0.0,6,111,810.0,0.0,0.0,77,75,0.0,0.0,1381.2124401313695,842.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,112869,2,1,1,0,1,,420.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,973.15104866123,810.0,33441.69002055984,5,5,0,1,150.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02517815336133853,22294.46001370656,6,3,6,6_1,6_3,6_0_0 +12858,2,61.0,0.0,6,221,1400.0,0.0,0.0,0,75,0.0,900.5425483669522,2387.2807607208856,2140.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,112870,2,1,1,0,1,,536.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1043.3104255936,1400.0,24667.67885705942,0,5,0,1,75.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08675319686138903,24667.67885705942,7,4,7,7_1,7_1,7_0_0 +12859,2,73.0,0.0,5,211,420.0,1383.0,0.0,75,77,0.0,79.45963662061344,716.1842282162656,1863.0,0.0,2625.6310983007284,71,0,0,0,0,0,0,0,0,0,,1,,3,112871,2,2,1,0,1,,188.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1239.14313558207,420.0,42556.78664804375,5,5,0,1,160.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043776801463125466,28371.191098695836,8,4,8,8_1,8_1,8_0_0 +12860,2,64.0,0.0,5,112,0.0,0.0,0.0,72,75,0.0,0.0,0.0,830.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,112872,1,2,1,0,1,,562.0,,41,1.0,1.0,7.0,3.0,2.0,3,3,901.969609681664,0.0,213457.65762952477,5,5,0,1,350.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003888358980498796,106728.82881476238,10,5,10,10_1,10_0,10_0_0 +12861,2,67.0,0.0,2,111,270.0,,,0,77,0.0,0.0,,315.0,62.351515142843446,,70,0,0,0,0,0,0,0,0,0,,2,,2,112873,2,2,0,0,1,,120.0,611.0,11,0.0,2.0,4.0,1.0,1.0,1,1,111.69969815773413,270.0,24742.696379289562,0,5,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012731029600462834,24742.696379289562,7,4,7,7_0,7_2,7_0_1 +12862,2,63.0,0.0,7,111,0.0,,,0,11,0.0,0.0,,96.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,7,,5,112874,1,3,0,0,2,,80.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,112.72688372061533,0.0,9431.474323118004,0,1,0,1,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010178684340441784,9431.474323118004,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12863,2,58.0,0.0,5,111,220.0,80.0,0.0,0,43,0.0,0.0,375.14411954185346,300.0,0.0,151.8803238351831,43,0,0,0,0,0,0,0,0,2,45.0,2,,3,112875,2,2,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1305.75750973132,220.0,27186.40091732316,0,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011034928856980115,27186.40091732316,7,4,7,7_0,7_4,7_0_0 +12864,2,40.0,0.0,8,111,0.0,,,0,53,0.0,0.0,,2047.0,0.0,,42,0,0,0,0,0,0,0,0,3,20.0,1,2003.0,6,112876,2,3,0,0,2,,413.0,610.0,32,1.0,0.0,4.0,3.0,1.8,2,1,106.93539702968447,0.0,42091.0,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0486327243353686,23383.888888888887,6,3,6,6_1,6_3,6_0_0 +12865,2,76.0,0.0,2,111,0.0,78.0,0.0,77,78,0.0,0.0,0.0,78.0,0.0,148.08331573930354,71,0,0,0,0,0,0,0,0,0,,2,,2,112877,2,2,0,1,1,720.0,0.0,312.0,41,0.0,6.0,6.0,2.0,1.5,2,2,274.628413534487,0.0,24386.283905223812,5,5,2,3,90.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003198519311230176,16257.522603482541,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +12866,2,81.0,0.0,1,120,600.0,0.0,0.0,0,78,1898.4291318658827,0.0,1023.1203260232367,2460.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,112878,2,3,4,0,1,,260.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1338.85605105383,600.0,16915.320562289264,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.145430291488787,16915.320562289264,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +12867,2,80.0,0.0,5,111,1400.0,,,0,72,0.0,0.0,,1561.0,223.07986528883987,,71,0,0,0,0,0,0,0,0,0,,1,,3,112879,2,1,0,0,2,,300.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,88.60697507084384,1400.0,32043.0,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048715788159660454,21362.0,6,3,6,6_1,6_2,6_0_0 +12868,1,32.0,166.0,9,111,960.0,0.0,0.0,0,56,0.0,52.973091080408956,1636.9925216371787,1000.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,2006.0,6,112880,2,1,1,0,1,,190.0,520.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1613.07493366315,960.0,17489.448621979056,0,1,2,3,65.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.05717733140788076,13453.422016906965,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +12869,2,39.0,0.0,1,111,608.0,1126.0,0.0,35,46,0.0,132.4327277010224,1036.7619303702131,1834.0,0.0,2137.7155579802024,20,2,2,2,2,1,2,2,1,1,15.0,2,,1,112881,1,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,916.165799101056,608.0,64602.6710829525,1,1,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02838891905328602,30763.176706167855,8,4,8,8_0,8_4,8_1_0 +12870,1,32.0,204.0,5,111,230.0,200.0,0.0,85,65,0.0,0.0,392.1961249755741,430.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,112882,2,1,0,1,1,716.0,0.0,372.0,42,1.0,0.0,4.0,4.0,2.1,2,2,2030.09258359903,230.0,33370.87636506044,6,1,2,3,79.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012885487192365534,15890.893507171637,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +12871,2,55.0,0.0,1,211,1885.0,0.0,0.0,46,63,0.0,344.3250920226582,3214.3030242563354,2265.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,112883,2,1,1,0,1,,610.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1438.74652194141,1885.0,22607.297863392963,1,1,0,1,120.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1001888865129529,9419.707443080402,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +12872,2,57.0,0.0,7,112,1500.0,0.0,0.0,0,64,0.0,0.0,2557.8008150580918,1528.0,38.79649831110259,0.0,70,2,2,2,2,2,2,2,1,3,5.0,1,,5,112884,2,1,2,0,1,,150.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,521.92298929535,1500.0,18823.647930083745,0,1,0,1,90.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.08117448890222641,18823.647930083745,5,3,5,5_1,5_0,5_0_0 +12873,2,79.0,0.0,5,112,1172.0,0.0,0.0,0,78,0.0,0.0,1998.4950368320558,1242.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,112885,2,1,1,0,1,,202.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1266.47040819921,1172.0,17771.04208409906,0,5,0,1,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06988897973019267,17771.04208409906,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +12874,1,47.0,60.0,7,111,1100.0,800.0,0.0,81,52,0.0,0.0,1875.7205977092674,1900.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,1,25.0,1,,5,112886,1,2,3,0,1,,630.0,477.0,43,2.0,0.0,4.0,5.0,2.4000000000000004,2,2,431.427375179696,1100.0,34942.155201933,4,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05437558127195578,14559.231334138747,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +12875,1,51.0,260.0,2,111,200.0,90.0,0.0,0,62,0.0,0.0,341.04010867441224,290.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,112887,2,1,0,1,1,816.0,0.0,315.0,12,1.0,3.0,3.0,1.0,1.0,1,1,368.101586624861,200.0,7225.09262166405,0,4,2,3,76.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04013789375245525,7225.09262166405,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +12876,2,42.0,0.0,9,112,360.0,,,0,42,0.0,0.0,,385.0,34.63973063491302,,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,112888,2,2,0,0,2,,240.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,98.10233859777526,360.0,41562.1323169194,0,1,1,2,53.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009263239842082683,31970.871013014923,8,4,8,8_1,8_2,8_0_0 +12877,2,27.0,0.0,7,111,840.0,,,0,22,0.0,0.0,,886.0,63.73710436823996,,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,112889,1,1,0,0,2,,600.0,820.0,12,1.0,0.0,4.0,1.0,1.0,1,1,84.02643721911467,840.0,13341.575709438024,0,1,2,3,99.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06640894743588875,13341.575709438024,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +12878,2,64.0,0.0,1,111,382.0,1649.0,0.0,0,43,0.0,0.0,651.3866075681274,2031.0,0.0,3130.633175052712,33,0,0,0,0,0,0,0,0,0,,1,,1,112890,1,2,1,0,2,,198.0,,22,2.0,0.0,6.0,2.0,1.5,2,2,202.057471553118,382.0,53129.84939348845,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038227098762469255,35419.899595658964,9,5,9,9_1,9_4,9_1_0 +12879,2,85.0,0.0,1,111,828.0,0.0,0.0,86,86,2501.707722658819,0.0,1411.9060499120667,3200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,112891,2,1,1,0,2,,432.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,922.842714223719,828.0,37806.171160794736,5,5,0,1,108.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08464226611020643,25204.114107196492,7,4,7,7_1,7_4,7_1_0 +12880,1,20.0,194.0,6,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,441.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,45.0,2,,4,112892,2,2,0,1,1,204.0,0.0,224.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1092.85622436676,0.0,17979.29298072992,0,1,2,3,37.0,4,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.024528217014576754,17979.29298072992,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +12881,0,46.0,0.0,2,111,530.0,0.0,0.0,63,52,0.0,595.9472746546007,903.7562879871924,2480.0,2078.3838380947814,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,112893,2,2,2,0,1,,450.0,,43,2.0,0.0,3.0,5.0,3.0,5,5,353.417631041338,530.0,43960.129176342154,4,1,5,0,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05641475688234901,14653.37639211405,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +12882,2,73.0,0.0,7,111,1478.0,0.0,0.0,0,75,0.0,238.3789098618403,2520.286403103906,1658.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,112894,2,1,2,0,1,,152.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,741.241586719742,1478.0,25262.296060488152,0,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0656314056343128,25262.296060488152,7,4,7,7_1,7_4,7_0_0 +12884,2,52.0,0.0,7,111,1260.0,,,85,33,0.0,0.0,,1392.0,182.89777775234077,,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,112896,2,1,0,0,2,,756.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,134.70036231125053,1260.0,149454.11608408138,6,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009313895371184523,83030.06449115633,10,5,10,10_1,10_2,10_0_0 +12885,1,45.0,434.0,5,111,335.0,713.0,0.0,0,68,0.0,0.0,571.2421820296405,1048.0,0.0,1353.6333861810695,71,2,2,2,2,2,1,2,1,0,,1,,3,112897,1,2,2,0,1,,402.0,472.0,32,2.0,0.0,4.0,3.0,2.0,3,2,499.358044617005,335.0,19870.094506275887,0,4,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.05274257752870745,9935.047253137944,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +12886,2,54.0,0.0,2,111,400.0,0.0,0.0,0,64,0.0,0.0,682.0802173488245,400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,112898,1,2,0,1,2,360.0,0.0,447.0,12,1.0,3.0,1.0,1.0,1.0,1,1,462.102096664791,400.0,19851.38401198403,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020149728591141305,19851.38401198403,5,3,5,5_0,5_3,5_0_1 +12887,2,78.0,0.0,5,111,310.0,680.0,0.0,77,75,0.0,0.0,528.612168445339,990.0,0.0,1290.9827525990565,50,2,2,2,2,1,2,2,2,0,,2,,3,112899,2,3,0,0,1,,0.0,345.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1095.57513382197,310.0,31717.498584412962,5,5,2,3,78.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.031213054124215177,21144.99905627531,5,3,5,5_0,5_3,5_0_0 +12888,1,54.0,268.0,1,111,700.0,0.0,0.0,85,85,0.0,0.0,1193.6403803604428,1556.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,112900,2,3,0,0,1,534.0,0.0,257.0,41,0.0,0.0,3.0,2.0,1.5,2,2,1238.91202226386,700.0,20906.256614229995,5,7,2,3,60.0,8,6,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07442748018987279,13937.504409486663,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +12889,1,40.0,284.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1470.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,2.0,1,,2,112901,2,1,1,0,1,,387.0,520.0,32,1.0,0.0,6.0,5.0,2.4,2,1,1817.34713969234,0.0,31161.440757848908,0,1,2,3,110.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04717368530624625,12983.933649103712,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +12890,2,49.0,0.0,9,211,660.0,,,52,11,0.0,0.0,,792.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,112902,2,2,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,99.8633995169438,660.0,95104.10506972231,4,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008327716237058037,41349.61089987927,9,5,9,9_1,9_2,9_0_0 +12891,2,53.0,0.0,8,112,850.69,0.0,0.0,11,11,0.0,0.0,1450.5970502411787,851.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,1999.0,6,112903,2,1,2,0,1,,720.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1429.17968428436,850.69,40981.587819972105,1,1,0,1,125.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02076542284643424,27321.05854664807,7,4,7,7_1,7_0,7_0_0 +12892,2,29.0,0.0,9,112,920.0,0.0,0.0,42,46,0.0,0.0,1568.7844999022964,920.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,112904,2,1,1,0,1,,460.0,645.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1271.72435902779,920.0,37234.49243426856,1,1,2,3,90.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024708272890361278,20685.829130149203,5,3,5,5_1,5_1,5_0_0 +12893,0,65.0,0.0,5,111,600.0,,,0,86,0.0,0.0,,670.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,0,,1,,3,112905,1,1,0,0,2,,160.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,111.43912895494704,600.0,12615.911392405063,0,6,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05310753850120954,12615.911392405063,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12894,1,21.0,263.0,2,112,0.0,0.0,0.0,55,55,0.0,0.0,0.0,2242.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,112906,2,1,1,0,1,,201.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1808.19245107626,0.0,29903.333289574606,4,1,2,3,75.0,6,1,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0749749192937512,19935.555526383072,5,3,5,5_1,5_1,5_0_1 +12895,2,66.0,0.0,9,112,900.0,0.0,0.0,0,72,0.0,0.0,1534.680489034855,1020.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,112907,2,1,1,0,1,,200.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,948.260666360365,900.0,9162.768218303254,0,5,0,1,40.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11132007005944781,9162.768218303254,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +12896,2,76.0,0.0,5,111,1170.0,0.0,0.0,86,72,0.0,0.0,1995.0846357453115,1170.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,112908,2,2,4,0,1,,145.0,800.0,41,0.0,6.0,3.0,2.0,1.5,2,2,1495.48874995433,1170.0,23110.319746671008,6,5,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05062673354697033,15406.879831114005,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +12897,2,63.0,0.0,6,400,2000.0,0.0,0.0,0,52,0.0,529.7309108040896,3410.4010867441225,2435.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,4,112909,1,3,3,0,1,,300.0,400.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1938.05215444044,2000.0,24637.54400986742,0,1,2,3,70.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0988329031101791,24637.54400986742,7,4,7,7_1,7_1,7_0_0 +12898,2,58.0,0.0,1,111,0.0,0.0,700.0,85,34,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,20,0,0,0,0,0,0,0,0,1,15.0,2,,1,112910,2,1,0,0,1,,274.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,351.664069740918,0.0,56649.66986723414,6,1,1,2,73.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012356647472801536,37766.446578156094,9,5,9,9_0,9_3,9_1_0 +12899,2,42.0,0.0,1,300,840.0,0.0,0.0,55,63,2636.7071275915036,0.0,1432.3684564325313,3400.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,112911,2,1,3,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,977.860335297212,840.0,50988.63833700059,1,1,1,2,160.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06668152182312238,24280.30397000028,7,4,7,7_1,7_0,7_1_0 +12900,2,53.0,0.0,1,111,1400.0,1200.0,0.0,54,65,0.0,0.0,2387.2807607208856,2600.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,112912,2,1,2,0,1,,580.0,,43,2.0,4.0,4.0,4.0,2.5,4,3,170.956801773879,1400.0,56460.70640770137,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046049724940128524,22584.28256308055,6,3,6,6_1,6_4,6_1_0 +12901,2,62.0,0.0,1,120,641.0,0.0,0.0,75,74,1747.6094841676488,238.3789098618403,1093.0335483014912,2578.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,112913,2,2,1,0,1,,201.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1657.98444878399,641.0,69766.69247227715,5,5,0,1,145.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036951730240392396,46511.128314851434,10,5,10,10_1,10_0,10_1_0 +12902,2,25.0,0.0,2,111,0.0,0.0,660.0,84,52,0.0,0.0,416.0100716737309,660.0,0.0,789.8432173926894,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,112914,2,2,0,1,1,1161.0,300.0,254.0,42,1.0,0.0,3.0,3.0,1.8,2,2,458.878429786689,0.0,32059.38698400127,3,1,2,3,65.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020586794137060778,17810.770546667372,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +12903,2,76.0,0.0,9,111,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2007.0,6,112915,2,1,0,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1982.06891631636,1000.0,13626.650971795329,0,5,0,1,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07338560311479445,13626.650971795329,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +12904,2,39.0,0.0,1,221,1050.0,0.0,0.0,52,35,0.0,99.3245457757668,1790.4605705406643,1185.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,112916,2,1,0,0,1,,468.0,540.0,43,2.0,0.0,3.0,3.0,1.8,2,2,825.05789730216,1050.0,34548.63065312135,1,1,2,3,70.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03429947808634608,19193.683696178527,5,3,5,5_0,5_1,5_1_0 +12905,1,54.0,255.0,2,221,245.0,0.0,0.0,0,52,0.0,0.0,417.774133126155,284.0,54.03797979046432,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112917,1,1,0,1,2,1014.0,0.0,378.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2838.17358298765,245.0,6610.383058302543,0,4,2,3,51.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0429627144894879,6610.383058302543,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +12906,2,67.0,0.0,1,111,658.0,1483.0,0.0,0,75,0.0,0.0,1122.0219575388162,2141.0,0.0,2815.481503094707,41,2,2,2,2,2,2,2,1,0,,1,,1,112918,2,2,1,0,1,,336.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1472.86341451277,658.0,38103.85808025829,0,5,1,2,110.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05618853596111985,38103.85808025829,9,5,9,9_1,9_3,9_1_0 +12907,1,27.0,229.0,9,400,0.0,,,81,69,0.0,0.0,,469.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,112919,2,1,0,0,2,,0.0,570.0,43,2.0,0.0,3.0,3.0,1.8,2,2,199.05257498681144,0.0,11844.5229720035,4,1,2,3,73.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03959636036913935,6580.2905400019445,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +12908,2,56.0,0.0,5,111,550.0,0.0,0.0,56,47,0.0,0.0,937.8602988546337,1054.0,698.3369695998466,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,112920,2,1,0,1,1,68.0,0.0,375.0,43,4.0,0.0,4.0,6.0,3.5,6,4,366.715176483654,550.0,49714.78371205983,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021200937051332688,14204.223917731379,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +12909,2,34.0,0.0,9,112,360.0,0.0,0.0,67,68,0.0,0.0,613.872195613942,455.0,131.6309764126695,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,112921,2,2,0,1,1,1200.0,0.0,560.0,43,2.0,0.0,3.0,3.0,1.8,2,2,997.472079905076,360.0,38703.569337373614,1,1,2,3,65.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011756021674224112,21501.982965207564,6,3,6,6_0,6_1,6_0_0 +12910,2,49.0,0.0,6,112,342.0,0.0,0.0,56,67,1371.087706347582,0.0,583.1785858332449,1842.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,112922,2,1,2,0,1,,167.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,614.765385194309,342.0,30326.431371286944,1,1,1,2,96.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.060739095129537894,14441.157795850926,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12911,2,46.0,0.0,2,111,900.0,1025.0,0.0,22,37,0.0,0.0,1534.680489034855,1925.0,0.0,1945.9666491382836,20,1,2,2,2,1,2,2,2,2,25.0,1,,2,112923,2,1,2,0,1,,900.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,252.729514395688,900.0,50515.14059894566,1,1,1,2,125.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.03810738675921211,24054.82885664079,6,3,6,6_1,6_3,6_0_1 +12913,2,74.0,0.0,8,112,500.0,1000.0,0.0,86,74,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,44,0,0,0,0,0,0,0,0,0,,1,2003.0,6,112925,2,2,1,0,1,,100.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,287.805918331649,500.0,28218.590431602635,6,5,0,1,98.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05315644676284455,18812.393621068422,5,3,5,5_1,5_0,5_0_0 +12914,0,65.0,0.0,2,111,0.0,,,0,77,0.0,0.0,,1100.0,196.75367000630598,,50,0,0,0,0,0,0,0,0,0,,1,,2,112926,2,1,0,0,2,,540.0,,21,0.0,9.0,6.0,3.0,2.0,3,3,99.01789735019905,0.0,46387.51888341798,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023713275175689857,23193.75944170899,6,3,6,6_1,6_2,6_0_1 +12915,1,33.0,458.0,7,111,912.0,,,0,85,0.0,0.0,,1032.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,5,112927,1,1,0,0,1,,300.0,460.0,31,0.0,0.0,4.0,5.0,2.4,2,2,135.586196714376,912.0,16394.765321147745,0,6,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0629469211534742,6831.152217144894,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +12916,2,52.0,0.0,2,111,267.0,1000.0,0.0,52,90,0.0,0.0,455.2885450803403,1267.0,0.0,1898.504047939789,44,0,0,0,0,0,0,0,0,3,25.0,1,,2,112928,2,2,1,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1518.11572443638,267.0,49405.917470591216,1,1,0,1,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02564470138125012,32937.278313727475,8,4,8,8_1,8_3,8_0_1 +12917,2,81.0,0.0,5,111,400.0,1500.0,0.0,0,74,0.0,0.0,682.0802173488245,1900.0,0.0,2847.7560719096837,12,0,0,0,0,0,0,0,0,0,,2,,3,112929,1,1,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1981.02543349242,400.0,90567.95094206183,0,5,0,1,103.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02097872349144201,90567.95094206183,10,5,10,10_0,10_3,10_0_0 +12918,2,65.0,0.0,2,111,400.0,1400.0,0.0,74,74,0.0,0.0,682.0802173488245,1800.0,0.0,2657.9056671157045,10,0,0,0,0,0,0,0,0,0,,1,,2,112930,2,1,1,0,1,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,319.079948876419,400.0,101479.0085153789,5,5,0,1,135.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01773765852005949,67652.67234358593,10,5,10,10_1,10_2,10_0_1 +12919,1,48.0,286.0,2,112,690.0,1300.0,0.0,0,85,0.0,66.2163638505112,1176.5883749267223,2140.0,138.5589225396521,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,2,,2,112931,1,3,0,0,1,,0.0,378.0,31,2.0,0.0,5.0,5.0,3.0,5,4,1710.38410111919,690.0,35843.69897986895,0,5,2,3,100.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.059703659524701885,11947.899659956316,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +12920,2,51.0,0.0,9,400,460.0,,,11,11,0.0,0.0,,550.0,124.70303028568689,,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,112932,2,2,0,0,2,,0.0,,43,2.0,0.0,1.0,3.0,1.8,2,2,94.5442910823637,460.0,7348.254093667066,1,1,0,1,30.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0748477111691069,4082.363385370592,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +12921,2,81.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1364.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,2,112933,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2497.74383574073,0.0,25505.35843453991,0,5,0,1,200.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.05347895829422423,25505.35843453991,7,4,7,7_0,7_3,7_0_1 +12922,2,43.0,0.0,9,111,0.0,0.0,0.0,85,46,0.0,0.0,0.0,2975.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,1,2013.0,6,112934,2,1,1,0,1,,625.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,190.345983958097,0.0,48895.35055977373,7,1,1,2,130.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060844230912366876,20373.062733239054,5,3,5,5_1,5_4,5_0_0 +12923,2,84.0,0.0,5,300,0.0,,,0,77,0.0,0.0,,499.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,112935,2,1,0,0,1,,140.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,112.82951040149281,0.0,35569.17170138199,0,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014029002535940754,35569.17170138199,9,5,9,9_1,9_1,9_0_0 +12924,2,58.0,0.0,2,111,584.0,0.0,0.0,75,55,0.0,0.0,995.8371173292837,584.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,112936,2,2,0,1,1,,0.0,,42,1.0,1.0,4.0,3.0,2.0,3,2,787.888515524171,584.0,44653.80404511026,5,1,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01307839303925888,22326.90202255513,6,3,6,6_0,6_4,6_0_1 +12925,1,31.0,211.0,2,111,0.0,0.0,280.0,0,56,0.0,0.0,176.48912131612826,280.0,0.0,335.08500131811064,31,0,0,0,0,0,0,0,0,0,,8,,2,112937,1,1,0,1,2,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,605.494762832133,0.0,5973.353398841781,0,4,2,3,38.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.046874842538914795,5973.353398841781,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +12926,2,58.0,0.0,5,111,680.0,1490.0,0.0,78,78,0.0,0.0,1159.5363694930015,2170.0,0.0,2828.771031430286,70,0,0,0,0,0,0,0,0,0,,1,,3,112938,2,1,2,0,1,,510.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,1113.81810797879,680.0,71045.70522853402,5,5,0,1,130.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030543718202524998,35522.85261426701,9,5,9,9_1,9_2,9_0_0 +12927,2,47.0,0.0,2,111,480.0,888.0,0.0,46,65,0.0,0.0,818.4962608185893,1368.0,0.0,1685.8715945705326,50,0,0,0,0,0,0,0,0,1,20.0,1,,2,112939,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,238.224173323395,480.0,48773.151531022675,1,1,0,1,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02804821827291331,21205.718056966383,5,3,5,5_1,5_3,5_0_1 +12928,2,68.0,0.0,7,112,950.0,,,52,74,0.0,0.0,,1370.0,581.9474746665388,,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,112940,2,1,0,0,2,,430.0,800.0,42,2.0,0.0,4.0,3.0,2.0,3,3,124.62835615763215,950.0,105271.44275319081,1,5,2,3,103.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013013975720005745,52635.72137659541,10,5,10,10_1,10_2,10_0_0 +12929,1,47.0,215.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,867.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,112941,2,2,0,1,2,,0.0,257.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2055.25831877214,0.0,5429.0,0,7,3,4,10.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.15969791858537483,5429.0,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +12930,2,45.0,0.0,7,300,1300.0,0.0,0.0,85,64,0.0,33.1081819252556,2216.7607063836795,1415.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,112942,2,1,2,0,1,,400.0,,42,1.0,1.0,4.0,3.0,2.0,3,2,1371.23780269223,1300.0,24729.13871646812,6,1,1,2,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057219946728581175,12364.56935823406,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +12931,2,55.0,0.0,1,112,2200.0,0.0,0.0,11,11,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,112943,1,2,2,0,2,,420.0,,43,3.0,2.0,7.0,3.0,2.0,3,3,2234.30900532785,2200.0,124107.65251854356,1,1,0,1,200.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017726545908772925,62053.82625927178,10,5,10,10_1,10_0,10_1_0 +12932,2,29.0,0.0,2,111,242.0,217.0,0.0,0,38,0.0,0.0,412.6585314960388,459.0,0.0,411.9753784029342,20,2,2,2,2,1,1,2,2,3,50.0,2,,2,112944,2,3,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1049.66303460666,242.0,20738.275031310324,0,1,1,2,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.022132988366053055,20738.275031310324,5,3,5,5_0,5_4,5_0_1 +12933,2,31.0,0.0,9,400,0.0,0.0,0.0,0,42,0.0,0.0,0.0,984.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,8.0,8,2008.0,6,112945,2,1,0,0,1,,0.0,560.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1316.38085585804,0.0,22721.124613102427,0,1,2,3,60.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04330771547428439,22721.124613102427,6,3,6,6_0,6_0,6_0_0 +12934,2,40.0,0.0,8,111,700.0,850.0,0.0,42,34,0.0,0.0,1193.6403803604428,1550.0,0.0,1613.7284407488207,20,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,112946,2,1,1,0,1,,444.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,1579.03445186638,700.0,75521.67086491628,1,1,1,2,100.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020523910319363115,37760.83543245814,9,5,9,9_1,9_2,9_0_0 +12935,2,24.0,0.0,6,111,960.0,,,0,81,0.0,0.0,,1212.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,112947,1,3,0,0,2,,400.0,,32,3.0,1.0,5.0,6.0,2.8999999999999995,3,3,127.78939973844598,960.0,12059.799549196676,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10049918284758999,4158.55156868851,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12936,2,49.0,0.0,1,300,1180.0,0.0,0.0,43,11,1265.6194212439218,0.0,2012.1366411790323,2450.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112948,1,1,2,0,1,,190.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,1406.61495841268,1180.0,137198.9131423064,1,1,0,1,150.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01785728431725107,48999.61183653801,10,5,10,10_1,10_0,10_1_0 +12937,2,82.0,0.0,2,300,850.0,3500.0,0.0,0,78,0.0,0.0,1449.420461866252,4350.0,0.0,6644.764167789262,71,0,0,0,0,0,0,0,0,0,,1,,2,112949,2,1,2,0,1,,220.0,,21,1.0,8.0,5.0,2.0,1.5,2,2,282.621188171774,850.0,27716.453582350005,0,5,0,1,67.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1569464862117174,18477.63572156667,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +12938,2,66.0,0.0,5,111,864.0,,,75,75,0.0,0.0,,1024.0,221.69427606344334,,41,0,0,0,0,0,0,0,0,0,,1,,3,112950,2,1,0,0,2,,372.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,171.78743645908133,864.0,71168.05704658049,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014388477675170725,47445.37136438699,10,5,10,10_1,10_2,10_0_0 +12939,2,46.0,0.0,1,111,611.0,1111.0,0.0,45,37,0.0,0.0,1041.8775320003294,1722.0,0.0,2109.2379972611056,42,0,0,0,0,0,0,0,0,0,,1,,1,112951,1,2,1,0,2,,225.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,1195.38321190257,611.0,100071.5896110163,1,1,1,2,190.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017207681088044144,66714.39307401086,10,5,10,10_1,10_2,10_1_0 +12940,2,48.0,0.0,2,112,450.0,0.0,0.0,67,54,1160.1511361402618,423.78472864327165,767.3402445174275,1970.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,112952,2,2,2,0,1,,700.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1088.7543346851,450.0,47243.12541908369,1,1,0,1,100.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04169918866553705,31495.416946055793,8,4,8,8_1,8_0,8_0_1 +12941,2,63.0,0.0,2,111,960.0,,,68,65,0.0,0.0,,1213.0,350.5540740253198,,71,0,0,0,0,0,0,0,0,3,90.0,1,,2,112953,2,1,0,0,2,,400.0,,43,3.0,3.0,3.0,3.0,2.0,3,3,111.28557025761023,960.0,47274.645028568884,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02565857446982337,23637.322514284442,6,3,6,6_1,6_2,6_0_1 +12942,2,80.0,0.0,6,111,1245.0,0.0,0.0,75,75,0.0,0.0,2122.974676498216,1245.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,112954,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1003.05185241207,1245.0,67958.53589473726,5,5,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018319994443794563,45305.690596491506,10,5,10,10_0,10_4,10_0_0 +12943,2,40.0,0.0,2,111,1200.0,0.0,0.0,0,46,0.0,0.0,2046.2406520464733,4837.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,112955,2,1,0,0,1,,400.0,285.0,22,1.0,0.0,4.0,3.0,2.0,3,3,945.267658818932,1200.0,16337.545170394926,0,1,2,3,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.29606651118951893,8168.772585197463,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +12944,2,77.0,0.0,2,300,840.0,0.0,0.0,78,71,0.0,397.2981831030672,1432.3684564325313,1335.0,270.1898989523216,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,112956,1,1,4,0,1,,166.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1084.28936983893,840.0,19203.009481396773,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06952035311409406,12802.006320931183,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +12945,2,77.0,0.0,2,112,390.0,1190.0,0.0,77,78,0.0,0.0,665.0282119151038,1580.0,0.0,2259.219817048349,71,0,0,0,0,0,0,0,0,0,,1,,2,112957,2,1,2,0,2,,390.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1877.45928014205,390.0,30900.956385616675,5,5,0,1,70.0,9,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05113110352582599,20600.637590411116,5,3,5,5_1,5_1,5_0_1 +12946,2,36.0,0.0,1,111,1380.0,0.0,0.0,55,38,0.0,0.0,2353.1767498534446,1380.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,45.0,2,,1,112958,2,2,0,0,1,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1141.47837887531,1380.0,46623.12918596179,1,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.029599042880534873,31082.086123974528,8,4,8,8_0,8_4,8_1_0 +12948,2,50.0,0.0,7,300,1300.0,0.0,0.0,68,63,0.0,198.6490915515336,2216.7607063836795,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,5,112960,2,1,1,0,1,,721.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,886.235126611989,1300.0,41736.64423005255,1,1,0,1,104.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034741652731053174,27824.4294867017,7,4,7,7_1,7_0,7_0_0 +12949,2,30.0,0.0,9,211,800.0,0.0,0.0,85,21,0.0,0.0,1364.160434697649,900.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,1,2012.0,6,112961,2,1,1,0,1,,600.0,866.0,42,1.0,0.0,4.0,3.0,1.8,2,2,1659.75732182279,800.0,22082.44425112131,6,1,2,3,101.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040756357845409236,12268.024583956283,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +12950,2,38.0,0.0,2,400,0.0,0.0,0.0,52,64,0.0,0.0,0.0,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,22.0,1,,2,112962,2,2,1,0,1,,217.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,953.581403389532,0.0,34674.61386268606,1,1,1,2,120.0,0,0,4,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028839542495269627,19263.674368158925,5,3,5,5_1,5_0,5_0_1 +12951,2,43.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1582.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,112963,2,1,0,0,1,,335.0,532.0,32,1.0,0.0,3.0,3.0,2.0,3,1,1717.7678840091,0.0,21221.333978367886,0,1,2,3,72.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07454762276549734,10610.666989183943,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +12952,2,40.0,0.0,1,111,740.0,2200.0,0.0,42,42,0.0,0.0,1261.8484020953254,2940.0,0.0,4176.708905467536,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,112964,2,2,1,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,361.513277960053,740.0,47701.83070920224,1,1,1,2,170.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06163285467852788,19875.762795500934,5,3,5,5_1,5_2,5_1_0 +12953,1,45.0,230.0,2,112,2500.0,0.0,0.0,0,52,0.0,529.7309108040896,4263.001358430153,2932.0,44.33885521268867,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,2,112965,1,3,3,0,2,,280.0,625.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1392.79088133011,2500.0,23175.804960616508,0,1,2,3,95.0,4,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.12651124761286414,15450.536640411005,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +12954,2,26.0,0.0,2,112,700.0,1100.0,0.0,55,54,0.0,0.0,1193.6403803604428,2440.0,0.0,2088.354452733768,43,0,0,0,0,0,0,0,0,2,45.0,1,,2,112966,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,354.819508172547,700.0,48506.583111258915,1,1,1,2,85.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050302450584973256,23098.372910123293,6,3,6,6_1,6_0,6_0_1 +12955,2,55.0,0.0,2,111,328.0,0.0,0.0,52,37,0.0,0.0,559.3057782260361,328.0,0.0,0.0,44,1,2,2,2,1,2,2,2,2,30.0,2,,2,112967,2,1,0,1,1,663.0,193.0,343.0,43,2.0,5.0,4.0,2.0,1.5,2,2,289.013948562316,328.0,59291.10726830265,1,1,2,3,70.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0055320268942818445,39527.4048455351,9,5,9,9_0,9_3,9_0_1 +12956,2,53.0,0.0,7,111,450.0,,,52,65,0.0,0.0,,546.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,112968,1,2,0,0,2,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,50.82258675844572,450.0,47379.896454674774,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011523874910159887,31586.59763644985,8,4,8,8_1,8_2,8_0_0 +12957,2,73.0,0.0,1,300,1069.0,0.0,0.0,71,71,0.0,893.9209119819011,1822.8593808647333,1864.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,112969,2,1,2,0,1,,246.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,1015.5433249183,1069.0,33846.925270800115,5,5,0,1,147.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05507147207867891,16923.462635400057,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +12959,2,65.0,0.0,2,112,480.0,0.0,0.0,54,75,1371.087706347582,0.0,818.4962608185893,1860.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,112971,2,2,2,0,1,,420.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1075.05871800801,480.0,59378.631352173834,1,5,0,1,130.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031324400001211984,39585.75423478256,9,5,9,9_1,9_0,9_0_1 +12960,2,43.0,0.0,5,111,405.0,1525.0,0.0,47,54,0.0,0.0,690.6062200656847,1930.0,0.0,2895.2186731081783,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,112972,2,1,2,0,1,,452.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,272.261930698443,405.0,50332.42267061611,1,1,1,2,99.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03834506462425317,20132.969068246446,5,3,5,5_1,5_3,5_0_0 +12961,2,48.0,0.0,7,111,487.0,2045.0,0.0,52,43,0.0,132.4327277010224,830.4326646221938,2632.0,0.0,3882.4407780368683,50,0,0,0,0,0,0,0,0,0,,1,,5,112973,2,1,3,0,1,,867.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,540.022203390773,487.0,61258.02976131814,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04296579583534038,26633.9259831818,7,4,7,7_1,7_4,7_0_0 +12962,2,27.0,0.0,1,111,420.0,0.0,0.0,37,55,0.0,0.0,716.1842282162656,420.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,112974,2,1,0,0,1,,0.0,940.0,43,2.0,0.0,2.0,2.0,1.5,2,2,960.347695048669,420.0,54155.30093134029,1,1,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0077554734767790985,36103.533954226856,9,5,9,9_0,9_4,9_1_0 +12963,2,30.0,0.0,1,111,900.0,0.0,0.0,0,63,0.0,0.0,1534.680489034855,900.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,112975,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,684.650265264027,900.0,34531.00073768442,0,1,1,2,48.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026063536554786573,34531.00073768442,9,5,9,9_0,9_3,9_1_0 +12964,2,57.0,0.0,1,112,1000.0,0.0,0.0,43,13,0.0,0.0,1705.2005433720612,4000.0,4156.767676189563,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,112976,2,1,1,0,1,,300.0,,43,2.0,0.0,9.0,2.0,1.5,2,2,1444.72350319516,1000.0,134616.97606258787,1,1,0,1,185.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029713934430827416,89744.65070839191,10,5,10,10_1,10_0,10_1_0 +12965,2,48.0,0.0,2,111,480.0,,,0,46,0.0,0.0,,550.0,96.99124577775646,,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,112977,2,1,0,0,2,,180.0,562.0,32,1.0,1.0,4.0,2.0,1.3,1,1,79.05754063393327,480.0,53298.496904803906,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010319240352731737,40998.84377292608,9,5,9,9_1,9_2,9_0_1 +12966,2,56.0,0.0,2,111,900.0,,,56,63,0.0,0.0,,1100.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,2,112978,1,3,0,0,2,,120.0,537.0,43,2.0,1.0,3.0,2.0,1.5,2,2,105.14380846687564,900.0,22224.158256528684,4,4,2,3,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04949568785926271,14816.105504352456,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +12967,2,43.0,0.0,1,111,1000.0,2500.0,0.0,37,37,0.0,0.0,1705.2005433720612,3500.0,0.0,4746.260119849472,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,112979,2,1,0,0,1,,0.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,684.697416312525,1000.0,158203.37874515625,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022123421305925556,65918.07447714845,10,5,10,10_0,10_4,10_1_0 +12968,2,35.0,0.0,2,111,1500.0,0.0,0.0,53,52,0.0,0.0,2557.8008150580918,2628.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,112980,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,812.344641836409,1500.0,34501.0015305697,4,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07617170178875687,16429.048347890333,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +12969,1,24.0,152.0,2,111,300.0,,,0,42,0.0,0.0,,420.0,166.2707070475825,,44,0,0,0,0,0,0,0,0,2,30.0,2,,2,112981,1,3,0,0,2,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,159.63046997340106,300.0,8359.0,0,1,2,3,44.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050245244646488815,8359.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +12970,2,47.0,0.0,9,111,0.0,0.0,0.0,31,33,0.0,0.0,0.0,3089.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,1,2012.0,6,112982,2,1,1,0,1,,208.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,1072.23340203007,0.0,51498.63109631683,4,1,1,2,160.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05998217688976445,21457.76295679868,6,3,6,6_1,6_3,6_0_0 +12971,2,49.0,0.0,6,111,1781.25,0.0,0.0,43,31,0.0,264.8654554020448,3037.388467881484,1981.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,112983,2,1,2,0,1,,380.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,920.599730597748,1781.25,184542.9072434397,1,1,0,1,155.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010734630929959094,73817.16289737588,10,5,10,10_1,10_4,10_0_0 +12972,2,38.0,0.0,2,111,1200.0,,,42,34,0.0,0.0,,1275.0,103.91919190473907,,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,112984,2,3,0,0,2,,500.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,76.8608050617295,1200.0,86722.65336794668,1,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014702040937221245,41296.501603784134,9,5,9,9_1,9_2,9_0_1 +12973,1,33.0,137.0,2,221,0.0,0.0,0.0,85,47,0.0,0.0,0.0,851.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,112985,2,2,2,0,2,,377.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,1742.28048730115,0.0,21365.671816699556,6,1,1,2,107.0,1,2,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.03983024766554977,10174.129436523597,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +12974,2,80.0,0.0,7,221,522.0,2312.0,0.0,0,74,0.0,0.0,890.114683640216,2834.0,0.0,4389.341358836792,20,0,0,0,0,0,0,0,0,0,,1,,5,112986,1,3,2,0,2,,360.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1832.48946729266,522.0,33897.660259398486,0,5,0,1,150.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0836045903555908,33897.660259398486,9,5,9,9_1,9_1,9_0_0 +12975,2,68.0,0.0,6,111,2200.0,0.0,0.0,78,72,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,112987,2,1,2,0,1,,200.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1153.17219042208,2200.0,51459.056109158264,5,5,0,1,145.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042752435943115986,34306.03740610551,9,5,9,9_1,9_2,9_0_0 +12976,2,57.0,0.0,1,111,600.0,1300.0,0.0,0,34,0.0,0.0,1023.1203260232367,1900.0,0.0,2468.055262321726,10,0,0,0,0,0,0,0,0,2,10.0,2,,1,112988,2,3,0,0,1,,0.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,959.493280716265,600.0,67799.47855605243,0,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028023814348796163,67799.47855605243,10,5,10,10_0,10_4,10_1_0 +12977,2,62.0,0.0,1,111,150.0,333.0,0.0,0,37,0.0,0.0,255.78008150580916,483.0,0.0,632.2018479639497,10,0,0,0,0,0,0,0,0,2,45.0,2,,1,112989,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1086.49918666831,150.0,62120.269492524116,0,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007775239932887394,62120.269492524116,10,5,10,10_0,10_4,10_1_0 +12978,1,50.0,186.0,2,111,353.0,0.0,0.0,85,64,0.0,0.0,601.9357918103376,982.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,112990,2,1,0,1,1,973.0,0.0,373.0,42,2.0,0.0,4.0,6.0,3.0999999999999996,4,3,430.989000399838,353.0,32132.20542858934,6,1,2,3,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030561238698115455,10365.227557609465,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +12979,2,38.0,0.0,9,111,0.0,,,0,67,0.0,0.0,,343.0,0.0,,71,0,0,0,0,0,0,0,0,2,60.0,2,2006.0,6,112991,2,2,0,0,2,,441.0,780.0,32,1.0,0.0,4.0,4.0,2.1,2,2,128.33909486341807,0.0,28616.935568926332,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011985909503617368,13627.112175679205,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +12980,2,35.0,0.0,1,111,360.0,0.0,0.0,0,38,0.0,0.0,613.872195613942,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,112992,1,3,0,0,1,,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1019.2329213574,360.0,26718.777382254444,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013473670402265403,26718.777382254444,7,4,7,7_0,7_4,7_1_0 +12981,2,39.0,0.0,1,112,1500.0,0.0,0.0,46,38,1687.4925616585624,198.6490915515336,2557.8008150580918,3250.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,112993,2,1,1,0,1,,840.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,3,2,57.4481919392519,1500.0,68593.96915720898,6,1,1,2,220.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04738025864272991,26382.295829695766,7,4,7,7_1,7_0,7_1_0 +12982,2,28.0,0.0,2,111,222.0,588.0,0.0,0,42,0.0,0.0,378.5545206285976,810.0,0.0,1116.320380188596,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,112994,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2502.03245548482,222.0,22149.196267047497,0,1,1,2,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036570175740646575,22149.196267047497,6,3,6,6_0,6_2,6_0_1 +12983,2,60.0,0.0,2,111,205.0,0.0,0.0,74,55,0.0,0.0,349.56611139127256,293.0,121.93185183489385,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,2,112995,2,1,0,1,1,,244.0,386.0,42,1.0,1.0,1.0,2.0,1.5,2,2,2281.38654801777,205.0,19773.916470545097,5,1,2,3,35.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014817499630710386,13182.610980363397,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +12984,0,54.0,0.0,2,111,0.0,0.0,0.0,54,34,0.0,0.0,0.0,757.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,1.0,2,,2,112996,2,1,0,1,1,,0.0,,43,2.0,3.0,4.0,3.0,2.0,3,2,1895.57509025354,0.0,80805.91795867696,1,1,5,0,80.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.00936812574033401,40402.95897933848,9,5,9,9_0,9_3,9_0_1 +12985,2,74.0,0.0,6,120,2000.0,0.0,0.0,72,72,0.0,0.0,3410.4010867441225,2120.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,112997,2,1,2,0,1,,272.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,951.620231276742,2000.0,22688.36255391175,5,5,0,1,146.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09343997368529737,15125.575035941167,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +12986,2,60.0,0.0,7,111,1200.0,,,86,38,0.0,0.0,,1244.0,60.965925917446924,,42,0,0,0,0,0,0,0,0,0,,1,,5,112998,2,2,0,0,2,,700.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,141.4156258459,1200.0,109473.38469702168,6,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011363492628303143,72982.25646468112,10,5,10,10_1,10_2,10_0_0 +12987,2,64.0,0.0,5,111,648.0,,,77,78,0.0,0.0,,780.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,112999,1,2,0,0,2,,800.0,,41,2.0,3.0,3.0,5.0,3.0,5,5,77.49906994076348,648.0,5508.166337233024,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14160792398869815,1836.0554457443413,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +12988,2,57.0,0.0,8,120,1560.0,0.0,0.0,37,22,0.0,132.4327277010224,2660.1128476604154,1714.0,74.82181817141213,0.0,12,0,0,0,0,0,0,0,0,2,7.0,1,2000.0,6,113000,2,1,2,0,1,,400.0,,43,2.0,4.0,9.0,2.0,1.5,2,2,773.8815539519,1560.0,200962.6587121801,1,1,1,2,160.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00852894767109347,133975.10580812008,10,5,10,10_1,10_0,10_0_0 +12989,2,54.0,0.0,1,111,1000.0,1000.0,0.0,37,37,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,1.0,1,,1,113001,2,1,1,0,1,,500.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,299.626929905938,1000.0,86097.45094774151,1,1,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02322949144236498,57398.300631827675,10,5,10,10_1,10_3,10_1_0 +12990,2,35.0,0.0,1,300,364.0,902.0,0.0,52,64,0.0,0.0,620.6929977874303,1379.0,0.0,1712.4506512416897,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,113002,1,2,4,0,2,,530.0,421.0,43,2.0,0.0,4.0,3.0,1.8,2,2,982.604251674198,364.0,44196.54616739642,1,1,2,3,50.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031201533141910574,24553.636759664674,7,4,7,7_1,7_0,7_1_0 +12991,2,65.0,0.0,6,111,1676.0,0.0,0.0,77,71,0.0,0.0,2857.9161106915744,1676.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,113003,2,1,2,0,1,,151.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2026.53662420539,1676.0,47958.11504990094,5,5,0,1,100.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03494716166922123,31972.076699933958,8,4,8,8_1,8_3,8_0_0 +12992,2,34.0,0.0,9,111,1500.0,0.0,0.0,0,67,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,20.0,2,2005.0,6,113004,1,2,0,0,1,,0.0,500.0,22,2.0,0.0,3.0,3.0,2.0,3,3,1169.82762083223,1500.0,22578.867816424045,0,1,2,3,69.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.06643380049857453,11289.433908212022,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +12993,1,24.0,377.0,1,111,600.0,0.0,0.0,0,85,0.0,0.0,1023.1203260232367,780.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113005,2,1,1,0,1,,0.0,366.0,21,0.0,2.0,4.0,2.0,1.5,2,2,1249.5705357268,600.0,21415.007071609667,0,7,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03642305591549688,14276.67138107311,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +12994,2,32.0,0.0,7,111,558.0,0.0,0.0,65,55,0.0,0.0,951.5019032016102,558.0,0.0,0.0,41,2,2,2,1,1,2,2,2,1,3.0,2,,5,113006,2,2,0,3,1,620.0,0.0,485.0,43,2.0,0.0,3.0,4.0,2.3,3,2,243.160606541426,558.0,35659.11301840232,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.015648173854241335,15503.962181914054,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +12995,2,85.0,0.0,2,111,1790.0,0.0,0.0,0,77,0.0,0.0,3052.3089726359894,1964.0,241.09252521899464,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,113007,1,2,2,0,2,,301.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1187.10565795345,1790.0,16983.757433483668,0,5,0,1,70.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1156398993386441,16983.757433483668,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +12996,2,51.0,0.0,1,111,900.0,0.0,0.0,75,52,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,10.0,2,,1,113008,2,1,0,0,1,,650.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,1727.28588607373,900.0,48427.075511491894,5,1,0,1,62.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.01858464486021724,32284.717007661264,8,4,8,8_0,8_3,8_1_0 +12997,2,69.0,0.0,2,111,800.0,1200.0,0.0,85,77,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,2,,2,113009,2,2,0,0,1,,0.0,,41,2.0,5.0,4.0,6.0,3.0999999999999996,4,4,294.5157012165,800.0,37626.517308804396,6,5,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05315400263026765,12137.58622864658,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +12998,2,30.0,0.0,6,111,1860.0,0.0,0.0,85,53,0.0,0.0,3171.673010672034,1860.0,0.0,0.0,31,1,2,2,1,1,2,2,2,2,35.0,1,,4,113010,2,2,1,0,1,,365.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,349.071261358645,1860.0,39907.69071576191,7,1,1,2,145.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04660755775741681,19003.66224560091,5,3,5,5_1,5_3,5_0_0 +12999,2,39.0,0.0,1,300,1562.0,0.0,0.0,67,62,0.0,794.5963662061343,2663.5232487471594,2332.0,235.55016831740858,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,113011,2,1,1,0,1,,798.0,,43,2.0,3.0,6.0,4.0,2.1,2,2,1039.90930266624,1562.0,43965.662196101104,4,1,1,2,160.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0530413937494794,20936.029617191,5,3,5,5_1,5_0,5_1_0 +13000,2,76.0,0.0,6,111,800.0,0.0,0.0,72,74,0.0,0.0,1364.160434697649,800.0,0.0,0.0,20,2,2,1,1,2,2,2,2,0,,2,,4,113012,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,830.690504798243,800.0,74818.69445985707,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010692514829020826,49879.12963990471,10,5,10,10_0,10_4,10_0_0 +13001,2,85.0,0.0,1,112,1136.0,1834.0,0.0,72,74,0.0,0.0,1937.1078172706616,2970.0,0.0,3481.856423921573,10,0,0,0,0,0,0,0,0,0,,2,,1,113013,2,1,0,0,1,,505.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,600.665668209129,1136.0,134875.3285008253,5,5,0,1,88.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022020335616693802,89916.88566721686,10,5,10,10_0,10_2,10_1_0 +13002,2,40.0,0.0,5,111,700.0,0.0,0.0,53,54,0.0,595.9472746546007,1193.6403803604428,1150.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,113014,2,2,2,0,1,,755.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,497.226824397017,700.0,65661.79566643192,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017513989502238224,27359.08152767997,7,4,7,7_1,7_4,7_0_0 +13003,2,28.0,0.0,2,112,0.0,0.0,0.0,56,62,0.0,0.0,0.0,2373.0,0.0,0.0,43,0,0,0,0,0,0,0,0,4,25.0,1,,2,113015,2,3,4,0,1,,191.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1442.88909144228,0.0,43966.73885623232,4,1,1,2,125.0,7,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05397261797741056,29311.159237488213,8,4,8,8_1,8_0,8_0_1 +13004,2,61.0,0.0,1,111,0.0,0.0,1500.0,48,78,0.0,0.0,945.4774356221156,1850.0,484.95622888878233,1795.098221347021,71,2,2,2,2,1,1,2,2,0,,1,,1,113016,1,3,4,0,2,,320.0,556.0,42,2.0,2.0,4.0,3.0,2.0,3,3,394.750557992283,0.0,22425.13131334681,4,5,2,3,75.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.08249672985856417,11212.565656673405,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +13005,0,92.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,684.0,116.38949493330776,,41,0,0,0,0,0,0,0,0,0,,1,,2,113017,2,1,0,0,2,,300.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,143.70551192329438,600.0,23091.57768924303,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029621189561189414,23091.57768924303,6,3,6,6_1,6_2,6_0_1 +13006,0,27.0,0.0,1,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,2848.0,0.0,0.0,43,2,2,2,2,2,1,1,2,0,,1,,1,113018,2,2,5,0,1,,0.0,,43,5.0,1.0,5.0,7.0,3.6,5,5,1257.66459183979,0.0,83300.05200528214,1,1,5,0,98.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03418965452529856,23138.903334800594,6,3,6,6_1,6_3,6_1_0 +13007,1,41.0,565.0,1,111,0.0,0.0,2200.0,62,85,0.0,0.0,1386.7002389124364,2200.0,0.0,2632.810724642298,50,0,0,0,0,0,0,0,0,0,,1,,1,113019,2,1,1,0,1,,450.0,729.0,42,1.0,2.0,6.0,7.0,2.9999999999999996,2,2,494.183367084837,0.0,7509.080062794348,4,6,2,3,90.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2929786314172439,2503.0266875981165,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +13008,2,45.0,0.0,8,111,448.0,0.0,0.0,0,54,0.0,0.0,763.9298434306834,448.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,113020,2,1,0,0,1,,110.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1315.9209547746,448.0,25728.275654472545,0,1,1,2,45.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01741274876002507,25728.275654472545,7,4,7,7_0,7_3,7_0_0 +13009,2,59.0,0.0,9,111,470.0,1138.0,0.0,42,63,0.0,0.0,801.4442553848687,1608.0,0.0,2160.4976065554797,71,0,0,0,0,0,0,0,0,3,30.0,2,2008.0,6,113021,2,1,0,0,1,,0.0,292.0,43,2.0,1.0,3.0,2.0,1.5,2,2,429.797518230881,470.0,42654.74273778371,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037698035359984214,28436.495158522474,8,4,8,8_0,8_4,8_0_0 +13010,2,60.0,0.0,7,111,360.0,480.0,0.0,0,77,0.0,0.0,613.872195613942,840.0,0.0,911.2819430110987,41,0,0,0,0,0,0,0,0,0,,2,,5,113022,2,1,0,0,1,,467.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,893.322068366508,360.0,50942.52797728179,0,7,1,2,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01648916992055448,50942.52797728179,10,5,10,10_0,10_4,10_0_0 +13011,2,45.0,0.0,6,111,0.0,,,0,62,0.0,0.0,,150.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,113023,1,1,0,0,2,,0.0,500.0,12,1.0,1.0,2.0,1.0,1.0,1,1,241.11423830459515,0.0,54813.502468317936,0,1,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0027365520035268613,54813.502468317936,10,5,10,10_0,10_2,10_0_0 +13012,2,43.0,0.0,7,211,1200.0,0.0,0.0,55,37,0.0,198.6490915515336,2046.2406520464733,1400.0,69.27946126982604,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,113024,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1419.01950841693,1200.0,67979.94895829169,1,1,1,2,100.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02059430790186315,32371.404265853183,8,4,8,8_1,8_1,8_0_0 +13013,2,41.0,0.0,6,111,503.0,,,0,68,0.0,0.0,,647.0,199.524848457099,,71,0,0,0,0,0,0,0,0,3,30.0,8,,4,113025,1,3,0,0,2,,466.0,430.0,32,1.0,1.0,2.0,4.0,2.1,2,1,44.82407164489791,503.0,22696.632636302733,0,1,2,3,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028506431344583628,10807.920303001301,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +13014,2,47.0,0.0,9,111,200.0,,,56,63,0.0,0.0,,326.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,3,45.0,8,2009.0,6,113026,2,1,0,0,1,,280.0,560.0,43,3.0,0.0,2.0,3.0,2.0,3,2,217.44715233134696,200.0,20497.17261594112,4,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015904632609985554,10248.58630797056,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +13015,2,67.0,0.0,2,111,1800.0,0.0,0.0,0,77,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113027,2,1,1,0,1,,312.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,186.81485897198,1800.0,22062.838994811358,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0815851486938429,22062.838994811358,6,3,6,6_1,6_4,6_0_1 +13016,2,78.0,0.0,1,111,250.0,,,0,78,0.0,0.0,,391.0,195.36808078090945,,71,0,0,0,0,0,0,0,0,0,,1,,1,113028,2,2,0,0,2,,272.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,88.28248222489471,250.0,12917.63418513778,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030268700475344013,12917.63418513778,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +13017,2,40.0,0.0,2,211,840.0,0.0,0.0,85,63,0.0,0.0,1432.3684564325313,1002.0,224.4654545142364,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,113029,1,2,0,1,1,880.0,0.0,230.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,1273.78006837997,840.0,35478.40287864852,6,1,2,3,90.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028242534012234803,13645.539568710972,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +13018,1,35.0,352.0,1,400,0.0,0.0,0.0,46,63,0.0,0.0,0.0,880.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,113030,2,2,5,0,1,,542.0,352.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1864.24229777594,0.0,13793.72963679183,1,1,2,3,83.0,0,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0637971036965077,7663.183131551016,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +13019,0,80.0,0.0,2,211,0.0,0.0,2329.0,0,74,0.0,0.0,1468.0112983759384,2329.0,0.0,2787.1891716781415,50,0,0,0,0,0,0,0,0,0,,1,,2,113031,2,1,2,0,1,,990.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1076.26999220214,0.0,66461.61378743224,0,5,0,1,100.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.035042784357433236,66461.61378743224,10,5,10,10_1,10_2,10_0_1 +13020,2,78.0,0.0,2,111,480.0,0.0,0.0,75,75,843.7462808292812,0.0,818.4962608185893,1340.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113032,2,2,2,0,1,,352.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,897.919661986244,480.0,27036.697508138317,5,5,0,1,80.0,8,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04956226623450022,18024.465005425543,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +13021,2,44.0,0.0,1,111,403.0,0.0,0.0,0,38,0.0,0.0,687.1958189789407,403.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,113033,1,3,0,1,2,260.0,0.0,850.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1250.53019928706,403.0,107631.04418074756,0,1,3,4,29.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003744272882117838,107631.04418074756,10,5,10,10_0,10_4,10_1_0 +13022,2,29.0,0.0,1,221,0.0,0.0,0.0,11,52,0.0,0.0,0.0,1379.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,113034,1,2,3,0,1,,273.0,450.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2656.80852203445,0.0,28486.903894970503,1,1,2,3,80.0,1,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.048408209087385905,15826.057719428056,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +13023,2,70.0,0.0,6,112,362.0,1113.0,0.0,0,86,0.0,0.0,617.2825967006861,1475.0,0.0,2113.035005356985,71,0,0,0,0,0,0,0,0,0,,1,,4,113035,2,1,2,0,1,,200.0,,11,0.0,12.0,5.0,1.0,1.0,1,1,1009.56208912248,362.0,12922.552083204042,0,5,0,1,100.0,9,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11414154034767765,12922.552083204042,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +13024,2,54.0,0.0,6,111,1200.0,,,0,34,0.0,0.0,,1242.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,0,,1,,4,113036,2,1,0,0,2,,240.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,103.10863150864891,1200.0,84243.9126253093,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0147429049921272,84243.9126253093,10,5,10,10_1,10_3,10_0_0 +13026,2,78.0,0.0,5,112,1480.0,0.0,0.0,77,71,2109.365702073203,397.2981831030672,2523.6968041906507,3780.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,1,,3,113038,2,2,3,0,1,,162.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,667.774439005429,1480.0,38678.504922537475,5,5,0,1,110.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.09772869989598387,25785.669948358318,7,4,7,7_1,7_0,7_0_0 +13027,2,68.0,0.0,1,111,320.0,1288.0,0.0,0,78,0.0,0.0,545.6641738790596,1608.0,0.0,2445.273213746448,70,0,0,0,0,0,0,0,0,0,,1,,1,113039,2,1,3,0,1,,293.0,,11,0.0,2.0,10.0,1.0,1.0,1,1,214.55974481368,320.0,15544.03592893772,0,5,1,2,260.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10344803674870885,15544.03592893772,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +13028,2,49.0,0.0,9,221,900.0,,,69,11,0.0,0.0,,1038.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,113040,1,3,0,0,2,,630.0,,43,3.0,0.0,4.0,5.0,3.0,5,5,117.01309725070021,900.0,29211.65915860365,4,1,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03553375706474653,9737.219719534549,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +13029,2,62.0,0.0,6,111,0.0,0.0,0.0,56,64,0.0,0.0,0.0,1777.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,113041,2,1,2,0,1,,299.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,701.754331197393,0.0,30033.166359758292,1,5,0,1,98.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05916792051540121,20022.110906505528,5,3,5,5_1,5_2,5_0_0 +13030,2,27.0,0.0,2,111,270.0,0.0,0.0,46,43,0.0,0.0,460.40414671045653,288.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,10.0,2,,2,113042,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1702.5498822065,270.0,51124.59779375817,1,1,1,2,68.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005633296151528102,28402.55432986565,8,4,8,8_0,8_2,8_0_1 +13031,2,51.0,0.0,1,111,314.0,1281.0,0.0,52,62,0.0,0.0,535.4329706188272,1645.0,69.27946126982604,2431.98368541087,50,2,2,2,2,1,2,2,2,2,20.0,1,,1,113043,2,1,2,0,1,,336.0,,43,3.0,2.0,5.0,4.0,2.5,4,3,64.0296950774799,314.0,58644.481296734346,1,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.028050380251067254,23457.79251869374,6,3,6,6_1,6_3,6_1_0 +13032,2,65.0,0.0,5,111,234.0,691.0,0.0,0,52,0.0,0.0,399.0169271490623,925.0,0.0,1311.866297126394,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,113044,2,2,0,0,1,,120.0,315.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1365.00679256195,234.0,20750.122291151332,0,1,2,3,63.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04457805053006634,20750.122291151332,5,3,5,5_0,5_2,5_0_0 +13033,2,52.0,0.0,7,111,350.0,0.0,0.0,0,52,0.0,0.0,596.8201901802214,385.0,48.49562288887823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,113045,2,1,2,0,2,,200.0,900.0,22,1.0,1.0,4.0,2.0,1.5,2,2,1587.02020787269,350.0,40041.26238975711,0,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009615081469021972,26694.17492650474,7,4,7,7_1,7_3,7_0_0 +13034,2,75.0,0.0,1,120,480.0,0.0,0.0,77,71,0.0,0.0,818.4962608185893,570.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113046,2,3,4,0,1,,193.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1851.38064908439,480.0,15866.94711384122,5,5,0,1,120.0,0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03592373478718989,10577.964742560813,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +13035,2,52.0,0.0,7,111,1380.0,0.0,0.0,43,34,0.0,0.0,2353.1767498534446,1380.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,113047,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,532.791792330525,1380.0,99867.0114071515,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013818376864947196,47555.71971769119,10,5,10,10_1,10_4,10_0_0 +13036,2,56.0,0.0,5,111,450.0,565.0,0.0,0,90,0.0,0.0,767.3402445174275,1015.0,0.0,1072.6547870859808,31,0,0,0,0,0,0,0,0,0,,2,,3,113048,2,2,0,1,2,,0.0,,31,1.0,3.0,2.0,2.0,1.5,2,2,851.431273089527,450.0,49584.697037517835,0,5,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02047002524250595,33056.46469167856,8,4,8,8_0,8_4,8_0_0 +13037,2,69.0,0.0,5,111,198.0,36.0,0.0,0,75,0.0,0.0,337.6297075876681,445.0,0.0,68.3461457258324,60,0,0,0,0,0,0,0,0,0,,2,,3,113049,2,1,0,1,2,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,305.615141398965,198.0,16180.474367012204,0,5,0,1,60.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027502283919885545,16180.474367012204,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +13038,2,49.0,0.0,2,111,276.0,0.0,0.0,0,62,2752.72224120553,0.0,470.6353499706889,2956.0,96.99124577775646,0.0,50,2,2,2,2,1,1,2,2,2,5.0,1,,2,113050,2,1,1,0,1,,280.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,765.230232499717,276.0,29696.670818422113,0,1,0,1,130.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.09953977730615739,29696.670818422113,8,4,8,8_1,8_2,8_0_1 +13039,2,49.0,0.0,6,111,920.0,,,56,47,0.0,0.0,,1140.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,113051,2,1,0,0,1,,680.0,,43,2.0,1.0,5.0,5.0,2.5999999999999996,3,3,124.95234301895631,920.0,38914.861919838186,1,1,0,1,119.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02929472041679906,14967.254584553151,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +13040,2,60.0,0.0,8,111,700.0,,,77,77,0.0,0.0,,784.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,113052,2,1,0,0,1,,750.0,,41,0.0,2.0,7.0,3.0,2.0,3,3,116.59422730894032,700.0,56146.30675540553,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013963518623146478,28073.153377702765,8,4,8,8_1,8_2,8_0_0 +13041,2,76.0,0.0,5,300,510.0,,,0,75,0.0,0.0,,717.0,286.8169696570798,,41,0,0,0,0,0,0,0,0,0,,1,,3,113053,1,2,0,0,1,,179.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,67.04169349974141,510.0,44071.60341717383,0,5,0,1,73.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016268979215777735,44071.60341717383,10,5,10,10_1,10_0,10_0_0 +13042,2,48.0,0.0,7,111,110.0,0.0,0.0,0,38,1265.6194212439218,0.0,187.57205977092673,1325.0,20.783838380947813,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,113054,2,2,2,0,1,,100.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,417.218393070955,110.0,81852.647711938,0,1,1,2,120.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016187625410274322,81852.647711938,10,5,10,10_1,10_3,10_0_0 +13043,2,71.0,0.0,1,111,550.0,0.0,0.0,0,78,0.0,0.0,937.8602988546337,555.0,6.927946126982604,0.0,70,2,2,1,1,1,2,2,2,0,,1,,1,113055,2,1,3,0,1,,270.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,283.456507060495,550.0,20783.870719015882,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0.026703399357281957,20783.870719015882,5,3,5,5_1,5_3,5_1_0 +13044,2,41.0,0.0,1,111,509.0,1004.0,0.0,46,34,0.0,0.0,867.9470765763791,1513.0,0.0,1906.0980641315482,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,113056,2,2,5,0,1,,482.0,,43,2.0,0.0,6.0,5.0,2.4,3,2,272.136538078695,509.0,67144.03579659422,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0225336469881476,27976.68158191426,7,4,7,7_1,7_3,7_1_0 +13045,2,59.0,0.0,8,111,1200.0,0.0,0.0,75,64,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,2003.0,6,113057,2,1,0,0,1,,0.0,710.0,42,1.0,3.0,3.0,2.0,1.5,2,2,474.948898912107,1200.0,53534.94018123314,5,1,2,3,85.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022415267411107786,35689.96012082209,9,5,9,9_0,9_3,9_0_0 +13046,2,75.0,0.0,7,112,300.0,1200.0,0.0,86,46,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,5,113058,2,1,2,0,1,,155.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,498.0126095241,300.0,42422.71765507535,6,5,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03535841367344705,28281.811770050233,8,4,8,8_1,8_1,8_0_0 +13047,1,45.0,136.0,2,112,2798.0,0.0,0.0,85,62,0.0,0.0,4771.151120355027,2798.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,20.0,2,,2,113059,2,3,0,0,1,,625.0,750.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,3,4296.58506143153,2798.0,41066.420180921574,6,1,2,3,70.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.06813352582653115,15794.776992662146,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +13048,2,54.0,0.0,8,111,920.0,0.0,0.0,78,52,0.0,15.891927324122687,1568.7844999022964,932.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,113060,2,1,1,0,1,,241.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1546.29106814829,920.0,46777.24784651764,5,1,1,2,92.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019924216214216275,31184.831897678425,8,4,8,8_1,8_3,8_0_0 +13050,2,46.0,0.0,2,400,2700.0,,,81,52,0.0,0.0,,3060.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,113062,2,2,0,0,2,,900.0,450.0,43,3.0,0.0,3.0,7.0,3.3999999999999995,4,3,19.319631689146476,2700.0,29986.49819571523,4,1,2,3,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10204592680439237,8819.558292857422,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +13051,2,50.0,0.0,2,111,1040.0,0.0,0.0,55,22,0.0,0.0,1773.4085651069436,1040.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113063,2,1,0,1,1,1212.0,0.0,630.0,43,2.0,0.0,5.0,3.0,2.0,3,3,570.145598198226,1040.0,12857.777205179871,4,1,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08088489817517033,6428.8886025899355,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +13052,2,68.0,0.0,2,111,720.0,,,86,86,0.0,0.0,,720.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,113064,2,2,0,0,2,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,100.97540965620111,720.0,42099.720776958835,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017102251195785977,28066.480517972555,8,4,8,8_1,8_2,8_0_1 +13053,2,40.0,0.0,8,111,0.0,0.0,850.0,0,38,0.0,0.0,535.7705468525322,850.0,0.0,1017.2223254299786,31,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,113065,2,1,0,0,1,,0.0,436.0,32,1.0,0.0,3.0,3.0,1.6,1,1,349.356775991891,0.0,39162.52624357499,0,1,2,3,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02170442209762837,24476.578902234367,7,4,7,7_0,7_3,7_0_0 +13054,2,61.0,0.0,5,112,700.0,1400.0,0.0,0,77,0.0,0.0,1193.6403803604428,2100.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,0,,1,,3,113066,2,1,2,0,1,,350.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,928.546226262382,700.0,19967.54978922647,0,5,0,1,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10517064047252604,19967.54978922647,5,3,5,5_1,5_1,5_0_0 +13055,2,48.0,0.0,1,111,710.0,1699.0,0.0,56,62,0.0,0.0,1210.6923857941633,2409.0,0.0,3225.5583774497013,71,0,0,0,0,0,0,0,0,0,,1,,1,113067,2,1,1,0,1,,577.0,,43,2.0,3.0,7.0,3.0,2.0,3,2,221.421070066923,710.0,24093.889875142693,1,1,1,2,150.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09998385534605309,12046.944937571347,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +13056,2,53.0,0.0,2,111,600.0,92.0,0.0,38,37,898.5897890831845,0.0,1023.1203260232367,1544.0,0.0,174.6623724104606,12,0,0,0,0,0,0,0,0,3,55.0,1,,2,113068,2,2,3,0,1,,532.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,638.404017089177,600.0,114599.3748313108,1,1,0,1,110.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013473022887539775,49825.815144048174,10,5,10,10_1,10_4,10_0_1 +13057,2,54.0,0.0,9,111,500.0,1600.0,0.0,45,34,0.0,0.0,852.6002716860306,2100.0,0.0,3037.6064767036623,10,1,2,2,1,2,2,2,2,2,20.0,1,2008.0,6,113069,2,2,1,0,1,,250.0,800.0,43,3.0,1.0,4.0,3.0,2.0,3,3,1076.54455574011,500.0,58701.6838843824,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03577410154257441,29350.8419421912,8,4,8,8_1,8_4,8_0_0 +13058,2,59.0,0.0,6,111,2600.0,0.0,0.0,75,37,0.0,0.0,4433.521412767359,2600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,113070,2,1,2,0,1,,570.0,,42,2.0,2.0,6.0,4.0,2.5,4,4,516.014352514667,2600.0,97977.89006141486,5,4,0,1,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026536599209987667,39191.15602456594,9,5,9,9_1,9_3,9_0_0 +13059,2,54.0,0.0,1,300,389.0,0.0,0.0,90,48,2425.7705573841836,0.0,663.3230113717318,2759.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113071,2,1,3,0,1,,247.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,958.868751129499,389.0,25632.94776204337,5,1,1,2,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10763490900900045,17088.631841362247,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +13060,1,25.0,307.0,5,111,0.0,0.0,0.0,63,46,0.0,0.0,0.0,1138.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,3,113072,2,2,5,0,1,,266.0,475.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1450.94645192421,0.0,26802.866750655878,1,1,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.042458144891242,14890.481528142154,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +13061,2,80.0,0.0,1,111,1855.0,1300.0,0.0,77,74,0.0,0.0,3163.1470079551736,3155.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,1,113073,1,1,2,0,2,,567.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,385.154607265227,1855.0,57322.72754039704,5,5,0,1,115.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05503925119014229,38215.151693598025,9,5,9,9_1,9_2,9_1_0 +13063,2,43.0,0.0,6,111,420.0,0.0,0.0,0,67,0.0,0.0,716.1842282162656,486.0,91.44888887617039,0.0,60,0,0,0,0,0,0,0,0,3,10.0,2,,4,113075,2,3,0,1,1,670.0,208.0,220.0,12,1.0,0.0,3.0,1.0,1.0,1,1,320.860813978706,420.0,18443.225358105447,0,1,2,3,52.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026351139270030785,18443.225358105447,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +13064,2,58.0,0.0,2,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,1556.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,2,113076,2,1,0,1,1,,0.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,858.751947075515,0.0,171781.27984724529,1,1,1,2,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00905803007978318,74687.51297706318,10,5,10,10_0,10_4,10_0_1 +13065,1,37.0,30.0,7,211,680.0,0.0,0.0,21,52,0.0,821.0829117463388,1159.5363694930015,1400.0,138.5589225396521,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,5,113077,2,2,1,0,2,,300.0,,43,2.0,2.0,4.0,5.0,2.5999999999999996,3,2,1157.63514725266,680.0,23114.840629261136,4,1,1,2,80.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.060567149151257244,8890.323318946592,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +13066,1,44.0,166.0,7,112,1276.0,0.0,0.0,0,67,0.0,0.0,2175.83589334275,1356.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,113078,1,1,2,0,1,,860.0,414.0,32,1.0,1.0,4.0,3.0,1.8,2,2,782.123044606554,1276.0,25584.79292047785,0,1,2,3,75.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05300023354555546,14213.773844709915,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +13067,2,30.0,0.0,1,111,600.0,370.0,0.0,0,54,0.0,0.0,1023.1203260232367,970.0,0.0,702.446497737722,31,2,2,1,2,2,2,2,1,3,20.0,2,,1,113079,2,1,0,0,2,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2140.75178282548,600.0,22606.270322417466,0,1,2,3,48.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.042908449123431974,22606.270322417466,6,3,6,6_0,6_3,6_1_0 +13068,2,56.0,0.0,2,111,170.0,550.0,0.0,54,62,0.0,0.0,289.8840923732504,720.0,0.0,1044.177226366884,50,2,1,2,2,1,2,2,2,3,15.0,2,,2,113080,2,3,0,1,1,1686.0,0.0,230.0,43,2.0,1.0,3.0,2.0,1.5,2,2,298.845615722301,170.0,42422.16786556372,1,1,2,3,75.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01697225852016067,28281.44524370915,8,4,8,8_0,8_3,8_0_1 +13069,1,65.0,59.0,6,111,360.0,,,0,86,0.0,0.0,,409.0,67.89387204442953,,71,0,0,0,0,0,0,0,0,0,,2,,4,113081,2,2,0,0,2,,248.0,580.0,11,0.0,0.0,3.0,1.0,1.0,1,1,154.06108240804764,360.0,15921.255683900843,0,7,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02568892856947019,15921.255683900843,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +13070,2,52.0,0.0,2,111,550.0,1000.0,0.0,43,47,0.0,0.0,937.8602988546337,1550.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,3,45.0,1,,2,113082,1,1,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,778.382721300532,550.0,68066.09572716066,1,1,1,2,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022771983370591622,27226.438290864266,7,4,7,7_1,7_4,7_0_1 +13071,2,79.0,0.0,2,112,245.0,1348.0,0.0,78,78,0.0,0.0,417.774133126155,1593.0,0.0,2559.1834566228354,70,0,0,0,0,0,0,0,0,0,,1,,2,113083,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,422.77366733302,245.0,24654.71186656733,5,5,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06461239574087925,16436.474577711553,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +13072,1,50.0,172.0,2,111,525.0,470.0,0.0,0,52,0.0,0.0,895.2302852703322,995.0,0.0,892.2969025317009,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,113084,2,1,0,1,1,744.0,660.0,338.0,32,2.0,2.0,4.0,3.0,2.0,3,2,512.330929433256,525.0,17405.219432193517,0,1,2,3,92.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05716675988350948,8702.609716096758,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13073,2,25.0,0.0,2,111,0.0,0.0,0.0,22,55,0.0,0.0,0.0,507.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,48.0,1,,2,113085,2,1,1,0,1,,0.0,600.0,43,2.0,0.0,1.0,2.0,1.5,2,2,652.383853604955,0.0,10528.195836522274,1,1,2,3,24.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04815639905188872,7018.797224348183,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +13074,1,37.0,200.0,1,111,894.0,0.0,0.0,56,62,0.0,0.0,1524.4492857746227,894.0,0.0,0.0,43,2,2,2,1,1,2,2,2,2,20.0,1,,1,113086,1,2,1,0,1,,700.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,719.590789628092,894.0,34201.10593010353,1,1,1,2,140.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.026139505600405413,14250.460804209804,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +13075,1,46.0,182.0,2,111,500.0,0.0,0.0,0,85,0.0,0.0,852.6002716860306,560.0,83.13535352379125,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,113087,1,3,0,1,1,840.0,400.0,340.0,31,1.0,1.0,3.0,3.0,1.8,2,2,689.194379721524,500.0,23900.515850144093,0,7,2,3,55.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.023430456627429815,13278.064361191162,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +13076,2,28.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,674.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,113088,2,1,0,1,1,780.0,89.0,283.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1240.83982446165,0.0,25111.558243733543,1,1,2,3,54.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026840230042999947,16741.038829155696,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +13077,2,68.0,0.0,1,111,1250.0,0.0,0.0,0,77,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,113089,1,1,0,0,1,,0.0,,31,2.0,2.0,3.0,3.0,2.0,3,3,766.326213803537,1250.0,27238.61677809207,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045890729701273635,13619.308389046035,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +13078,2,81.0,0.0,1,111,420.0,1700.0,0.0,74,77,0.0,0.0,716.1842282162656,2176.0,77.59299662220518,3227.4568814976415,20,0,0,0,0,0,0,0,0,0,,1,,1,113090,2,1,2,0,2,,260.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,733.891507362907,420.0,57618.78435478458,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03776546180845116,38412.52290318972,9,5,9,9_1,9_4,9_1_0 +13079,2,65.0,0.0,2,111,265.0,194.0,0.0,77,52,0.0,0.0,451.8781439935962,733.0,0.0,368.30978530031905,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,113091,2,1,0,1,1,,0.0,,42,1.0,1.0,2.0,2.0,1.5,2,2,1057.05633012598,265.0,28585.709477919063,5,1,0,1,49.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025642183223271175,19057.139651946043,5,3,5,5_0,5_3,5_0_1 +13080,1,35.0,209.0,8,112,822.0,1100.0,0.0,69,53,0.0,0.0,1401.6748466518343,1922.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,113092,1,2,2,0,1,,603.0,656.0,43,2.0,0.0,4.0,5.0,2.4,3,2,312.794304969122,822.0,35894.62730012169,1,1,2,3,85.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.053545617953622934,14956.094708384038,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +13081,2,54.0,0.0,7,111,500.0,1100.0,0.0,0,54,0.0,0.0,852.6002716860306,1600.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,0,,1,,5,113093,2,1,1,0,1,,400.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,699.322162791575,500.0,7389.81092714583,0,4,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21651433518042237,7389.81092714583,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +13082,2,25.0,0.0,1,111,920.0,0.0,0.0,54,52,0.0,0.0,1568.7844999022964,920.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,10.0,2,,1,113094,2,1,0,0,1,,0.0,620.0,43,2.0,0.0,3.0,2.0,1.5,2,2,122.280351688715,920.0,36425.602986846294,1,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02525696006548533,24283.735324564197,7,4,7,7_0,7_3,7_1_0 +13083,2,34.0,0.0,8,111,500.0,0.0,0.0,0,42,0.0,0.0,852.6002716860306,500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,113095,2,2,0,0,1,,0.0,544.0,12,1.0,0.0,2.0,1.0,1.0,1,1,517.694703858984,500.0,27108.4244187457,0,1,2,3,48.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018444450783139055,27108.4244187457,7,4,7,7_0,7_3,7_0_0 +13084,2,67.0,0.0,1,112,1043.0,0.0,0.0,71,74,0.0,0.0,1778.5241667370599,3661.0,3627.472592088092,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113096,2,1,1,0,1,,264.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1015.30509108558,1043.0,20976.540063812696,5,5,0,1,100.0,9,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1745283058532474,13984.360042541797,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +13085,2,61.0,0.0,1,400,1100.0,0.0,0.0,78,72,0.0,331.081819252556,1875.7205977092674,1500.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113097,2,1,2,0,2,,200.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1018.56485864477,1100.0,23412.57727002324,5,5,0,1,200.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.064068128113369,15608.38484668216,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +13086,2,56.0,0.0,1,111,928.0,3882.0,0.0,56,42,0.0,0.0,1582.4261042492728,4810.0,0.0,7369.992714102261,50,0,0,0,0,0,0,0,0,0,,1,,1,113098,2,1,2,0,1,,643.0,,43,3.0,3.0,9.0,3.0,2.0,3,3,505.164460259135,928.0,21420.5995511304,4,4,0,1,195.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2245502040462807,10710.2997755652,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +13087,2,66.0,0.0,1,111,641.0,781.0,0.0,77,75,0.0,0.0,1093.0335483014912,1422.0,0.0,1482.7316614409751,50,0,0,0,0,0,0,0,0,0,,1,,1,113099,2,1,2,0,1,,230.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1713.07675850899,641.0,44274.81872143074,5,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03211757927111956,29516.54581428716,8,4,8,8_1,8_3,8_1_0 +13088,2,68.0,0.0,2,111,340.0,0.0,0.0,78,77,0.0,0.0,579.7681847465008,340.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113100,2,2,0,1,1,,242.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,437.807277736555,340.0,27221.182245531763,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012490273087084948,18147.45483035451,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +13089,2,32.0,0.0,1,112,0.0,0.0,0.0,55,46,0.0,0.0,0.0,2857.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,1,113101,2,1,1,0,1,,441.0,480.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2055.13757130024,0.0,35253.83874605956,1,1,2,3,80.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08104081999635675,19585.46597003309,5,3,5,5_1,5_0,5_1_0 +13090,2,70.0,0.0,2,111,416.0,759.0,0.0,77,75,0.0,0.0,709.3634260427774,1175.0,0.0,1440.9645723862998,60,0,0,0,0,0,0,0,0,0,,2,,2,113102,2,1,0,0,1,,267.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,368.90032047188,416.0,30152.890043943884,5,5,0,1,84.0,4,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03896807232366754,20101.92669596259,5,3,5,5_0,5_2,5_0_1 +13091,2,39.0,0.0,1,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,528.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,2,,1,113103,2,2,0,0,1,,488.0,550.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1377.96710940069,0.0,18307.069835148493,0,1,2,3,60.0,8,1,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.028841316756560962,11441.918646967808,2,1,2_0,2_0_0,2_1_0,2_1_0_0 +13092,2,48.0,0.0,9,112,800.0,0.0,0.0,63,46,0.0,529.7309108040896,1364.160434697649,1280.0,110.84713803172167,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,113104,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,1814.87001611485,800.0,43488.3082264475,4,1,1,2,100.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029433198305506062,17395.323290579,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13093,2,77.0,0.0,1,111,288.0,1200.0,0.0,0,78,0.0,0.0,491.09775649115363,1523.0,48.49562288887823,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,1,113105,1,2,3,0,1,,103.0,686.0,11,0.0,2.0,4.0,1.0,1.0,1,1,2983.82596260063,288.0,21631.254199409865,0,5,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07040738303752862,21631.254199409865,6,3,6,6_1,6_3,6_1_0 +13094,2,44.0,0.0,6,111,1200.0,360.0,0.0,33,38,0.0,0.0,2046.2406520464733,1560.0,0.0,683.461457258324,12,0,0,0,0,0,0,0,0,3,65.0,1,,4,113106,2,1,2,0,1,,450.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,4,2,497.870751668496,1200.0,137455.4939605389,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011349128034473828,44340.481922754494,10,5,10,10_1,10_4,10_0_0 +13095,0,65.0,0.0,1,111,0.0,0.0,1100.0,0,74,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,50,1,2,1,1,1,2,2,2,0,,1,,1,113107,2,1,2,0,1,,60.0,,21,0.0,1.0,6.0,2.0,1.5,2,2,273.723202451744,0.0,46817.41865897824,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0234955286196466,31211.612439318826,8,4,8,8_1,8_3,8_1_0 +13096,2,49.0,0.0,6,112,1887.0,0.0,0.0,47,37,0.0,883.3262937658193,3217.7134253430795,2554.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,113108,2,1,2,0,1,,278.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,1021.71347485186,1887.0,102455.5559404464,1,1,0,1,132.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02492788191481334,51227.7779702232,10,5,10,10_1,10_0,10_0_0 +13097,2,35.0,0.0,6,111,2340.0,0.0,0.0,46,37,0.0,92.70290939071567,3990.169271490623,2450.0,55.423569015860835,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,,4,113109,2,2,3,0,1,,402.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1246.92567369128,2340.0,90658.56685211037,1,1,1,2,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027024473086990658,43170.74612005255,9,5,9,9_1,9_3,9_0_0 +13098,2,77.0,0.0,9,400,1232.0,0.0,0.0,78,74,0.0,0.0,2100.807069434379,1232.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,113110,2,1,1,0,1,,144.0,760.0,41,0.0,2.0,5.0,2.0,1.5,2,2,2507.25285553738,1232.0,49119.0,5,5,3,4,144.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025081943850648426,32746.0,8,4,8,8_1,8_1,8_0_0 +13099,2,59.0,0.0,6,111,415.0,672.0,0.0,0,46,0.0,0.0,707.6582254994054,1087.0,0.0,1275.7947202155383,50,0,0,0,0,0,0,0,0,3,45.0,2,,4,113111,2,2,0,0,1,,0.0,394.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1236.89269740632,415.0,48239.17045174557,0,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022533554989038293,32159.446967830383,8,4,8,8_0,8_4,8_0_0 +13100,2,61.0,0.0,1,111,1500.0,1500.0,0.0,0,52,0.0,0.0,2557.8008150580918,3060.0,83.13535352379125,2847.7560719096837,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,113112,2,1,3,0,1,,300.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,501.095731931223,1500.0,37154.664780576895,0,1,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08235843380828069,37154.664780576895,9,5,9,9_1,9_2,9_1_0 +13101,2,56.0,0.0,2,111,192.0,0.0,0.0,0,46,0.0,0.0,327.3985043274357,192.0,0.0,0.0,10,2,1,2,2,2,2,2,1,2,8.0,2,,2,113113,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1076.38869015619,192.0,41437.15781255392,0,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.004633522426140702,41437.15781255392,9,5,9,9_0,9_4,9_0_1 +13102,2,51.0,0.0,2,111,800.0,1400.0,0.0,56,90,0.0,52.973091080408956,1364.160434697649,2240.0,0.0,2657.9056671157045,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,113114,2,1,2,0,1,,1226.0,,43,2.0,2.0,7.0,3.0,1.8,2,2,567.706860704782,800.0,67081.83364854511,1,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03339205084547628,37267.68536030284,9,5,9,9_1,9_4,9_0_1 +13103,2,32.0,0.0,8,112,500.0,1100.0,0.0,62,34,0.0,0.0,852.6002716860306,1600.0,0.0,2088.354452733768,20,2,2,2,2,1,2,2,2,2,20.0,1,2003.0,6,113115,1,2,2,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,577.810243498702,500.0,60821.87597991577,1,1,0,1,80.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.026306324397628613,28962.798085674174,8,4,8,8_1,8_1,8_0_0 +13104,2,72.0,0.0,2,111,280.0,270.0,0.0,0,78,0.0,0.0,477.4561521441771,550.0,0.0,512.596092943743,70,1,2,2,1,1,2,2,2,0,,2,,2,113116,1,3,0,1,1,468.0,0.0,328.0,11,0.0,0.0,2.0,1.0,1.0,1,1,330.879592015447,280.0,17137.067979496016,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03209417157346043,17137.067979496016,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +13105,0,75.0,0.0,1,211,180.0,0.0,0.0,0,71,0.0,0.0,306.936097806971,280.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113117,2,2,4,0,1,,170.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1600.04908043246,180.0,14508.563337565587,0,5,0,1,70.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019298947351666703,14508.563337565587,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +13106,2,60.0,0.0,6,112,100.0,0.0,0.0,56,75,0.0,0.0,170.52005433720612,100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,113118,2,1,1,0,1,,230.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,1442.37461328756,100.0,46379.31015324003,1,5,1,2,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0021561338379030215,30919.540102160023,8,4,8,8_1,8_0,8_0_0 +13107,2,57.0,0.0,2,111,377.0,1132.0,0.0,56,47,0.0,238.3789098618403,642.8606048512671,1689.0,0.0,2149.106582267841,50,0,0,0,0,0,0,0,0,0,,1,,2,113119,2,1,3,0,1,,370.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,377.936603059148,377.0,27035.093794826207,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062474353254259075,18023.395863217473,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +13108,2,34.0,0.0,9,111,800.0,0.0,0.0,0,52,0.0,0.0,1364.160434697649,832.0,44.33885521268867,0.0,30,0,0,0,0,0,0,0,0,2,20.0,2,2010.0,6,113120,2,1,0,0,1,,0.0,,32,2.0,0.0,3.0,5.0,2.4000000000000004,2,2,751.719843559183,800.0,39252.39296118864,0,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021196159959538052,16355.163733828598,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +13109,2,60.0,0.0,6,120,800.0,0.0,0.0,11,11,527.3414255183008,0.0,1364.160434697649,1390.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,113121,2,2,3,0,1,,300.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,510.676261416169,800.0,14531.1842670724,1,1,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09565634668536507,9687.456178048267,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +13110,2,33.0,0.0,2,111,900.0,,,62,54,0.0,0.0,,992.0,127.47420873647992,,20,0,0,0,0,0,0,0,0,2,40.0,1,,2,113122,2,1,0,0,2,,540.0,670.0,43,2.0,0.0,3.0,3.0,1.8,2,2,138.07295538110588,900.0,50301.338133741905,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019721145337375647,27945.187852078834,7,4,7,7_1,7_2,7_0_1 +13111,2,75.0,0.0,7,212,598.0,0.0,0.0,72,78,0.0,0.0,1019.7099249364926,1593.0,1378.6612792695385,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,113123,1,1,1,0,1,,262.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,686.57009040794,598.0,39727.34285898443,5,5,0,1,90.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04009832738259109,26484.895239322956,7,4,7,7_1,7_0,7_0_0 +13112,2,59.0,0.0,1,112,770.0,0.0,0.0,0,38,0.0,0.0,1313.0044183964872,770.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,,1,113124,2,1,1,0,1,,292.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,882.214230967034,770.0,39603.61371299427,0,1,1,2,65.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019442670196213853,39603.61371299427,9,5,9,9_1,9_0,9_1_0 +13113,2,49.0,0.0,2,112,800.0,0.0,0.0,54,62,0.0,0.0,1364.160434697649,950.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113125,2,2,1,0,1,,250.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,786.645557517935,800.0,31905.93975304637,4,1,1,2,80.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02977502017972357,15952.969876523184,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +13114,2,70.0,0.0,6,112,851.0,0.0,0.0,77,72,4421.230511545434,0.0,1451.125662409624,5043.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,113126,2,1,2,0,1,,272.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,890.494326352284,851.0,26454.976743246294,5,5,0,1,100.0,10,1,1,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19062575820587066,17636.651162164195,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +13115,1,58.0,344.0,7,111,480.0,900.0,0.0,0,63,0.0,0.0,818.4962608185893,1380.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,8,,5,113127,1,3,0,0,1,,0.0,469.0,32,3.0,1.0,5.0,3.0,2.0,3,3,1927.47972724964,480.0,28600.65415888809,0,4,2,3,80.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.048250644629788786,14300.327079444045,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +13116,0,34.0,0.0,1,221,0.0,0.0,2277.0,85,52,0.0,0.0,1435.2347472743716,2277.0,0.0,2724.959100004778,10,0,0,0,0,0,0,0,0,2,45.0,1,,1,113128,2,1,2,0,1,,292.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,2483.07373371263,0.0,23980.0,6,1,5,0,95.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09495412844036698,11419.047619047618,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +13117,0,42.0,0.0,2,111,720.0,,,68,65,0.0,0.0,,846.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,113129,2,2,0,0,2,,154.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,109.79236424678548,720.0,39373.39925623198,1,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021486587797371746,21874.110697906657,6,3,6,6_1,6_3,6_0_1 +13118,2,57.0,0.0,5,120,78.0,0.0,0.0,0,74,0.0,0.0,133.00564238302078,78.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,113130,2,1,2,0,2,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,3301.76835439313,78.0,40099.134504613,0,5,0,1,120.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0019451791407374861,40099.134504613,9,5,9,9_1,9_1,9_0_0 +13120,2,61.0,0.0,5,112,530.0,944.0,0.0,78,77,0.0,0.0,903.7562879871924,1474.0,0.0,1792.1878212551608,50,0,0,0,0,0,0,0,0,0,,1,,3,113132,2,2,2,0,1,,330.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,765.061692809726,530.0,25685.50127133986,5,5,0,1,85.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057386460339191585,17123.667514226574,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +13121,2,40.0,0.0,9,112,1145.0,0.0,0.0,54,62,0.0,0.0,1952.45462216101,1145.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,113133,2,1,1,0,1,,522.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1240.27214648369,1145.0,40838.965858155105,1,1,1,2,93.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028036948927083465,19447.12659912148,5,3,5,5_1,5_0,5_0_0 +13122,2,56.0,0.0,1,111,750.0,550.0,0.0,0,22,0.0,0.0,1278.9004075290459,1300.0,0.0,1044.177226366884,71,2,2,2,1,1,1,2,2,0,,2,,1,113134,1,3,0,0,2,,0.0,203.0,22,1.0,1.0,2.0,3.0,2.0,3,3,1124.94167748584,750.0,24666.799163956955,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.052702419611035535,12333.399581978478,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +13123,1,54.0,311.0,2,111,650.0,430.0,0.0,0,42,0.0,0.0,1108.3803531918397,1080.0,0.0,816.3567406141093,31,2,1,2,1,1,2,2,2,2,5.0,2,,2,113135,1,3,0,1,1,541.0,530.0,406.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1703.822668909,650.0,12277.179790977061,0,1,2,3,75.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08796808537362388,8184.7865273180405,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13124,1,59.0,250.0,9,111,434.0,0.0,0.0,0,77,0.0,0.0,740.0570358234745,434.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,113136,2,1,0,0,1,,147.0,336.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1804.46747163027,434.0,9291.17551286361,0,7,2,3,30.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04671098930368155,9291.17551286361,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13125,2,31.0,0.0,1,111,435.0,1100.0,0.0,37,34,0.0,0.0,741.7622363668467,1535.0,0.0,2088.354452733768,10,0,0,0,0,0,0,0,0,1,15.0,1,,1,113137,1,3,1,0,1,,400.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,700.695629425717,435.0,89748.98345394045,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0171032577855076,49860.54636330025,10,5,10,10_1,10_4,10_1_0 +13126,2,66.0,0.0,2,111,275.0,120.0,0.0,63,75,0.0,0.0,468.93014942731685,711.0,0.0,227.8204857527747,60,0,0,0,0,0,0,0,0,0,,2,,2,113138,1,2,0,1,2,850.0,518.0,505.0,42,1.0,2.0,3.0,2.0,1.5,2,2,1382.72670730387,275.0,28364.69423904654,1,5,2,3,75.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025066372794572377,18909.79615936436,5,3,5,5_0,5_2,5_0_1 +13127,0,74.0,0.0,5,111,180.0,,,86,78,0.0,0.0,,352.0,238.3213467682016,,71,2,2,2,2,1,2,2,2,0,,1,,3,113139,1,2,0,0,2,,120.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,136.74740762158538,180.0,17316.90825688073,6,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02032695414091229,11544.605504587154,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +13128,2,45.0,0.0,1,400,2400.0,0.0,0.0,21,55,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,41,2,2,1,2,1,2,2,2,2,45.0,1,,1,113140,1,1,1,0,2,,550.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1114.01052272143,2400.0,10484.561994416985,1,1,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.22890798883901844,6989.70799627799,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +13129,2,74.0,0.0,5,111,390.0,1600.0,0.0,0,74,0.0,0.0,665.0282119151038,1990.0,0.0,3037.6064767036623,41,0,0,0,0,0,0,0,0,0,,1,,3,113141,2,1,2,0,1,,400.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,637.054054778803,390.0,48540.477049545996,0,5,0,1,136.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040996712866434686,48540.477049545996,10,5,10,10_1,10_4,10_0_0 +13130,2,55.0,0.0,6,111,409.0,,,63,63,0.0,66.2163638505112,,735.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,113142,2,2,0,0,2,,209.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,74.96975670797488,409.0,25443.693307090045,4,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028887315655356828,16962.462204726697,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +13131,2,43.0,0.0,6,111,540.0,300.0,0.0,54,63,0.0,0.0,920.8082934209131,840.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,2,40.0,2,,4,113143,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1831.30427482579,540.0,36652.8013672513,4,1,1,2,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022917757133579613,17453.71493678633,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +13132,2,82.0,0.0,1,111,619.0,2035.0,0.0,86,72,0.0,662.163638505112,1055.519136347306,3154.0,0.0,3863.4557375574705,70,0,0,0,0,0,0,0,0,0,,1,,1,113144,1,2,2,0,1,,600.0,,41,0.0,2.0,11.0,2.0,1.5,2,2,1833.82780204054,619.0,39521.13608657093,6,5,0,1,355.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07980539813155099,26347.424057713954,7,4,7,7_1,7_3,7_1_0 +13133,2,49.0,0.0,7,112,411.0,739.0,0.0,0,52,0.0,185.40581878143135,700.8374233259171,1290.0,0.0,1402.994491427504,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,113145,2,2,3,0,1,,135.0,,32,1.0,0.0,6.0,3.0,2.0,3,3,569.640922679201,411.0,37807.66976001537,0,1,1,2,120.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034120061040214596,18903.834880007686,5,3,5,5_1,5_1,5_0_0 +13134,1,48.0,130.0,2,211,450.0,0.0,0.0,63,67,0.0,0.0,767.3402445174275,1041.0,0.0,0.0,71,2,2,2,2,1,2,2,2,4,60.0,2,,2,113146,2,1,0,1,1,,250.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,266.890440627513,450.0,16120.022401314072,4,1,2,3,70.0,4,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06457807403016634,10746.681600876049,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +13135,1,58.0,59.0,1,111,276.0,948.0,0.0,0,68,0.0,0.0,470.6353499706889,1224.0,0.0,1799.78183744692,71,1,2,2,1,1,2,2,2,0,,8,,1,113147,1,3,0,0,1,,0.0,327.0,12,1.0,1.0,4.0,1.0,1.0,1,1,553.013661263065,276.0,13972.450575463177,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08760095399080882,13972.450575463177,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +13136,2,53.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,221.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,113148,1,3,0,1,1,610.0,0.0,292.0,32,2.0,3.0,4.0,2.0,1.5,2,2,309.002587636243,0.0,11033.72483165395,0,4,2,3,68.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02002950076895041,7355.816554435966,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +13137,1,68.0,240.0,2,111,220.0,,,0,77,0.0,0.0,,300.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,2,,2,113149,2,1,0,0,2,,200.0,400.0,11,0.0,0.0,3.0,1.0,1.0,1,1,116.64171393374683,220.0,9218.718411024478,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.032542484391456857,9218.718411024478,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13138,2,55.0,0.0,7,111,1607.0,0.0,0.0,77,74,0.0,0.0,2740.257273198902,1607.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,113150,2,1,2,0,1,,833.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,590.153531985218,1607.0,126972.54562302068,6,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01265627929340848,84648.36374868045,10,5,10,10_1,10_4,10_0_0 +13139,2,27.0,0.0,9,111,1020.0,0.0,0.0,81,47,0.0,0.0,1739.3045542395023,1020.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,2,2006.0,6,113151,2,2,0,0,1,,0.0,678.0,43,2.0,0.0,2.0,3.0,1.8,2,2,934.492460603095,1020.0,25156.42034695338,4,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04054630928933135,13975.789081640765,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +13140,2,56.0,0.0,8,112,700.0,2591.0,0.0,0,77,0.0,0.0,1193.6403803604428,3291.0,0.0,4919.023988211993,41,2,2,2,2,1,2,2,2,0,,1,2003.0,6,113152,2,1,1,0,1,,586.0,,31,2.0,2.0,7.0,3.0,2.0,3,3,262.304285048254,700.0,20491.861496831225,0,6,0,1,219.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.16060034372713802,10245.930748415612,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +13141,2,33.0,0.0,1,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,608.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,113153,2,1,0,0,1,,0.0,675.0,12,1.0,0.0,2.0,1.0,1.0,1,1,930.598085142805,0.0,26386.257194365997,0,1,2,3,38.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02304229794780521,26386.257194365997,7,4,7,7_0,7_4,7_1_0 +13142,2,72.0,0.0,9,120,1310.0,0.0,0.0,0,71,0.0,0.0,2233.8127118174,1400.0,124.70303028568689,0.0,71,2,2,2,2,1,2,2,2,0,,1,2004.0,6,113154,2,1,1,0,1,,350.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1081.78397482928,1310.0,9784.337594831077,0,5,0,1,104.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.14308582327940111,9784.337594831077,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +13143,2,77.0,0.0,2,111,900.0,0.0,0.0,77,74,2425.7705573841836,0.0,1534.680489034855,3270.0,96.99124577775646,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,113155,2,3,1,0,1,,270.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1139.42117812197,900.0,48454.19958873315,5,5,0,1,150.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0674864104196318,32302.7997258221,8,4,8,8_1,8_3,8_0_1 +13144,2,74.0,0.0,2,111,700.0,90.0,0.0,75,75,0.0,0.0,1193.6403803604428,790.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,113156,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,338.181884472473,700.0,44938.26153747604,5,5,0,1,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01757967426802177,29958.841024984027,8,4,8,8_0,8_3,8_0_1 +13145,2,79.0,0.0,6,111,900.0,0.0,0.0,43,74,0.0,331.081819252556,1534.680489034855,1150.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,113157,2,1,2,0,1,,350.0,,42,1.0,3.0,3.0,3.0,1.8,2,2,513.15911845174,900.0,45599.23471620437,1,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025219721496583147,25332.908175669094,7,4,7,7_1,7_4,7_0_0 +13146,0,74.0,0.0,2,111,318.0,1591.0,0.0,0,74,0.0,0.0,542.2537727923154,1909.0,0.0,3020.519940272204,30,0,0,0,0,0,0,0,0,0,,1,,2,113158,2,3,3,0,1,,288.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1414.12442175768,318.0,43658.26618033453,0,5,0,1,100.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043725969146706324,43658.26618033453,10,5,10,10_1,10_3,10_0_1 +13147,0,43.0,0.0,1,111,710.0,1005.0,0.0,54,38,0.0,0.0,1210.6923857941633,1715.0,0.0,1907.996568179488,10,0,0,0,0,0,0,0,0,2,12.0,1,,1,113159,2,3,4,0,1,,510.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1342.10938047935,710.0,64137.05123344847,1,1,5,0,90.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02673961410788404,27885.674449325423,7,4,7,7_1,7_2,7_1_0 +13148,2,56.0,0.0,2,111,0.0,0.0,465.0,56,77,0.0,0.0,293.09800504285585,465.0,0.0,556.4804486175766,70,0,0,0,0,0,0,0,0,0,,2,,2,113160,2,2,0,1,1,733.0,370.0,349.0,42,3.0,1.0,4.0,4.0,2.5,4,4,1416.7814367206,0.0,59085.81868703269,1,5,2,3,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007869908724850275,23634.327474813075,6,3,6,6_0,6_3,6_0_1 +13149,2,46.0,0.0,1,111,486.0,472.0,0.0,78,52,0.0,582.7040018844986,828.7274640788218,1398.0,0.0,896.0939106275804,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,113161,2,1,1,0,1,,190.0,,42,2.0,2.0,6.0,4.0,2.5,4,3,689.281987372261,486.0,59414.20527787384,5,1,0,1,150.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023529726493213273,23765.682111149537,6,3,6,6_1,6_2,6_1_0 +13150,2,53.0,0.0,2,111,406.0,1900.0,0.0,37,52,0.0,26.486545540204478,692.3114206090569,2326.0,0.0,3607.1576910855993,50,0,0,0,0,0,0,0,0,1,1.0,1,,2,113162,2,2,1,0,1,,80.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,606.709880876131,406.0,67104.18235164821,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03466251906343165,44736.121567765476,10,5,10,10_1,10_4,10_0_1 +13151,2,83.0,0.0,2,111,500.0,0.0,0.0,0,78,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,2,113163,1,1,0,1,1,380.0,0.0,271.0,11,0.0,2.0,2.0,1.0,1.0,1,1,440.0535008756,500.0,21413.22922750758,0,5,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023350051255123003,21413.22922750758,6,3,6,6_0,6_3,6_0_1 +13152,2,69.0,0.0,6,111,660.0,0.0,0.0,0,74,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,113164,2,2,0,0,1,,0.0,692.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1058.69863053804,660.0,36406.25616899709,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01812875229291069,36406.25616899709,9,5,9,9_0,9_4,9_0_0 +13153,2,38.0,0.0,1,112,1440.0,0.0,0.0,85,65,0.0,0.0,2455.488782455768,1540.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,113165,2,2,2,0,1,,400.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,834.568315822552,1440.0,28636.779931595425,6,1,0,1,85.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053776996005786705,13636.561872188297,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +13154,2,64.0,0.0,2,112,0.0,0.0,1160.0,77,78,0.0,0.0,731.1692168811028,1160.0,0.0,1388.2092911750296,70,0,0,0,0,0,0,0,0,0,,1,,2,113166,2,1,1,0,1,,350.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1931.71154003733,0.0,23415.701660022554,5,5,0,1,90.0,9,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04953940807934272,15610.46777334837,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +13155,2,47.0,0.0,1,111,336.0,,,63,43,0.0,0.0,,380.0,60.965925917446924,,33,0,0,0,0,0,0,0,0,0,,1,,1,113167,2,1,0,0,2,,384.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,152.52885296330768,336.0,26362.557620516993,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014414382908897284,17575.038413677994,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +13156,2,54.0,0.0,5,111,900.0,0.0,0.0,75,31,0.0,1191.8945493092015,1534.680489034855,1860.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,113168,2,1,2,0,1,,400.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1284.81462030321,900.0,53599.277686941496,5,1,1,2,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03470196018057825,35732.85179129433,9,5,9,9_1,9_3,9_0_0 +13157,2,75.0,0.0,1,111,1123.0,3220.0,0.0,86,74,0.0,0.0,1914.9402102068248,4343.0,0.0,6113.18303436612,12,0,0,0,0,0,0,0,0,0,,1,,1,113169,2,2,1,0,2,,687.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,636.112550231814,1123.0,107801.85873151055,7,5,0,1,210.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04028687493057611,71867.90582100704,10,5,10,10_1,10_4,10_1_0 +13158,2,53.0,0.0,2,111,500.0,0.0,0.0,37,38,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,,2,113170,1,1,0,1,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,367.417715500235,500.0,73660.75298042371,1,1,0,1,100.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0067878752221400915,49107.16865361581,10,5,10,10_0,10_2,10_0_1 +13159,2,65.0,0.0,5,111,0.0,0.0,845.0,0,77,0.0,0.0,532.6189554004585,845.0,0.0,1011.2386646921553,50,0,0,0,0,0,0,0,0,0,,2,,3,113171,1,2,0,0,1,,430.0,384.0,11,0.0,0.0,3.0,1.0,1.0,1,1,438.497123425934,0.0,20210.171171017406,0,5,2,3,50.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04181063054091202,20210.171171017406,5,3,5,5_0,5_3,5_0_0 +13160,2,85.0,0.0,5,112,1914.0,0.0,0.0,77,78,0.0,158.91927324122688,3263.753840014125,2114.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,113172,2,1,2,0,1,,173.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,146.678054077575,1914.0,27710.014617246976,5,5,0,1,101.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07629010771738194,18473.34307816465,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13161,2,28.0,0.0,7,111,480.0,0.0,0.0,43,47,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,113173,1,1,0,0,1,,0.0,580.0,43,2.0,0.0,2.0,2.0,1.5,2,2,745.489759099133,480.0,39643.65755110633,1,1,2,3,47.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012107863644549233,26429.105034070886,7,4,7,7_0,7_3,7_0_0 +13162,2,79.0,0.0,1,111,295.0,783.0,0.0,48,74,0.0,0.0,503.03416029475807,1078.0,0.0,1486.5286695368547,41,0,0,0,0,0,0,0,0,0,,2,,1,113174,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,749.7088919986,295.0,54212.28065299998,1,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019884793390265644,36141.52043533332,9,5,9,9_0,9_4,9_1_0 +13163,2,55.0,0.0,8,112,1121.0,0.0,0.0,72,22,0.0,794.5963662061343,1911.5298091200805,1721.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,113175,2,1,1,0,1,,494.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,825.992203309802,1121.0,26468.42952285911,6,1,1,2,145.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06502085809487416,17645.619681906075,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13164,2,76.0,0.0,2,221,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2819.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,113176,1,3,4,0,2,,167.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1785.85995251643,0.0,11588.098864467282,0,5,2,3,80.0,1,1,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.24326682339964595,11588.098864467282,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +13165,2,63.0,0.0,6,112,2000.0,,,72,33,0.0,0.0,,2084.0,116.38949493330776,,10,0,0,0,0,0,0,0,0,0,,1,,4,113177,1,3,0,0,2,,1000.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,104.39427494322693,2000.0,157470.64956768887,7,1,0,1,180.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013234212253021736,104980.43304512592,10,5,10,10_1,10_1,10_0_0 +13166,2,66.0,0.0,5,112,1500.0,0.0,0.0,77,75,0.0,0.0,2557.8008150580918,1630.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,113178,2,1,2,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1490.97257338287,1500.0,43715.530134197346,5,5,0,1,98.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037286520259419205,29143.686756131563,8,4,8,8_1,8_0,8_0_0 +13167,2,45.0,0.0,1,300,1500.0,0.0,0.0,0,65,0.0,1324.327277010224,2557.8008150580918,2650.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,113179,2,2,3,0,1,,380.0,,32,3.0,0.0,7.0,5.0,2.8,4,3,986.193072069079,1500.0,29039.464015302932,0,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09125512780137846,10371.237148322476,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +13168,2,46.0,0.0,6,111,528.0,,,0,54,0.0,0.0,,660.0,182.89777775234077,,31,0,0,0,0,0,0,0,0,0,,1,,4,113180,2,2,0,0,2,,700.0,,32,1.0,1.0,4.0,4.0,2.5,4,4,105.45066562520418,528.0,43742.25812720723,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015088384282325994,17496.90325088289,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +13169,2,69.0,0.0,1,112,500.0,0.0,0.0,0,74,0.0,0.0,852.6002716860306,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,113181,1,2,0,0,1,,0.0,420.0,11,0.0,3.0,2.0,1.0,1.0,1,1,970.985139998125,500.0,42575.65819455682,0,5,2,3,45.0,9,3,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0117437996546093,42575.65819455682,9,5,9,9_0,9_1,9_1_0 +13170,2,30.0,0.0,6,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,743.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,4,113182,2,1,0,1,1,714.0,440.0,456.0,43,2.0,0.0,3.0,2.0,1.5,2,2,276.934703677895,0.0,35636.11030156277,1,1,2,3,60.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020849638013591423,23757.406867708512,6,3,6,6_0,6_2,6_0_0 +13171,2,81.0,0.0,1,111,416.0,2397.0,0.0,86,78,0.0,0.0,709.3634260427774,2913.0,138.5589225396521,4550.714202911674,71,0,0,0,0,0,0,0,0,0,,1,,1,113183,2,1,1,0,1,,358.0,,41,0.0,6.0,8.0,2.0,1.5,2,2,929.494177781586,416.0,26996.91641246855,6,5,0,1,220.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10790121195673401,17997.944274979032,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +13172,2,69.0,0.0,2,111,500.0,0.0,0.0,77,77,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,2,113184,2,3,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,311.891935357576,500.0,35889.735875450904,5,5,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013931559756671466,23926.490583633935,6,3,6,6_0,6_4,6_0_1 +13173,1,41.0,350.0,6,111,348.0,,,0,52,0.0,0.0,,417.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,2,25.0,2,,4,113185,2,1,0,0,2,,360.0,367.0,32,2.0,0.0,3.0,3.0,1.8,2,2,81.43412436136443,348.0,27220.246968613195,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015319478933487616,15122.35942700733,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +13174,2,77.0,0.0,5,111,189.0,700.0,0.0,0,75,0.0,0.0,322.28290269731957,940.0,70.66505049522257,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,2,,3,113186,1,2,0,0,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,416.784503509195,189.0,20847.049757161505,0,5,0,1,78.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045090313063462874,20847.049757161505,5,3,5,5_0,5_2,5_0_0 +13175,2,30.0,0.0,1,111,350.0,780.0,0.0,0,65,0.0,0.0,596.8201901802214,1130.0,0.0,1480.8331573930354,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,113187,1,2,0,0,1,,0.0,375.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2600.37877125374,350.0,15355.574898152287,0,1,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07358890875104723,15355.574898152287,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +13176,2,61.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,5689.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,113188,2,2,5,0,1,,313.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,987.215015843463,0.0,67361.18212672239,0,5,0,1,120.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0844551686948967,44907.45475114826,10,5,10,10_1,10_3,10_0_1 +13177,2,54.0,0.0,2,111,1050.0,0.0,0.0,85,68,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,113189,2,1,0,1,1,624.0,0.0,424.0,42,1.0,3.0,2.0,2.0,1.5,2,2,327.291240888783,1050.0,26192.70766319843,7,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040087493568879196,17461.805108798955,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +13178,0,27.0,0.0,2,111,376.0,311.0,0.0,0,43,0.0,0.0,641.155404307895,687.0,0.0,590.4347589092744,33,0,0,0,0,0,0,0,0,2,5.0,2,,2,113190,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1668.80285837473,376.0,27956.175696466402,0,1,5,0,55.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0245741766491629,27956.175696466402,7,4,7,7_0,7_2,7_0_1 +13179,2,66.0,0.0,6,111,828.0,,,75,77,0.0,0.0,,960.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,113191,1,2,0,0,2,,400.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,89.19998983454833,828.0,55364.37500376837,5,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0173396701386886,36909.58333584558,9,5,9,9_1,9_3,9_0_0 +13180,2,70.0,0.0,5,112,350.0,0.0,0.0,78,63,0.0,264.8654554020448,596.8201901802214,650.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,113192,2,1,2,0,1,,100.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,954.673200072589,350.0,21289.920911776797,5,5,0,1,80.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03053087903395846,14193.280607851199,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +13181,2,60.0,0.0,9,120,850.0,0.0,0.0,52,67,0.0,397.2981831030672,1449.420461866252,1210.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,113193,2,1,1,0,1,,310.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1362.29919730959,850.0,29734.198851461413,1,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040693882691933685,19822.799234307608,5,3,5,5_1,5_0,5_0_0 +13182,2,35.0,0.0,5,111,610.0,270.0,0.0,64,46,0.0,1986.490915515336,1040.1723314569574,2380.0,0.0,512.596092943743,31,0,0,0,0,0,0,0,0,2,60.0,1,,3,113194,1,1,1,0,2,,368.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1110.60833955448,610.0,49372.99938323401,1,1,1,2,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04820448483444163,21466.52147097131,6,3,6,6_1,6_3,6_0_0 +13183,1,34.0,631.0,2,111,0.0,,,85,85,0.0,0.0,,1001.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,113195,2,1,0,0,2,,378.0,950.0,41,0.0,0.0,5.0,9.0,3.7999999999999985,3,2,147.98265579318223,0.0,27683.060270469417,6,6,2,3,99.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03615929706542615,7285.01586064985,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +13184,2,69.0,0.0,5,112,1900.0,25.0,0.0,77,78,0.0,66.2163638505112,3239.8810324069163,1975.0,0.0,47.462601198494724,50,0,0,0,0,0,0,0,0,0,,1,,3,113196,2,1,3,0,1,,480.0,,41,1.0,2.0,8.0,3.0,2.0,3,3,1146.21379242601,1900.0,58401.389047471384,5,5,0,1,130.0,5,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03381768879494677,29200.694523735692,8,4,8,8_1,8_0,8_0_0 +13185,1,33.0,40.0,1,300,960.0,1120.0,0.0,0,67,0.0,0.0,1636.9925216371787,2080.0,0.0,2126.324533692564,71,1,2,2,1,2,2,2,2,2,20.0,1,,1,113197,2,2,3,0,1,,160.0,425.0,12,1.0,1.0,5.0,1.0,1.0,1,1,1120.89483305668,960.0,16866.171237096616,0,1,2,3,100.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.12332378052851171,16866.171237096616,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +13186,2,88.0,0.0,5,111,260.0,130.0,0.0,0,86,0.0,0.0,443.3521412767359,390.0,0.0,246.80552623217258,60,0,0,0,0,0,0,0,0,0,,2,,3,113198,2,1,0,1,1,592.0,0.0,498.0,11,0.0,3.0,3.0,1.0,1.0,1,1,310.888656789249,260.0,23402.87525213514,0,6,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016664619017888356,23402.87525213514,6,3,6,6_0,6_4,6_0_0 +13187,1,33.0,379.0,2,111,456.0,150.0,0.0,46,63,0.0,0.0,777.5714477776598,606.0,0.0,284.77560719096834,20,0,0,0,0,0,0,0,0,0,,2,,2,113199,2,1,0,1,1,51.0,0.0,371.0,43,2.0,0.0,4.0,4.0,2.1,2,2,252.186393786463,456.0,11739.438658301464,4,1,2,3,85.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.051620866860739655,5590.208884905459,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13188,2,73.0,0.0,2,111,134.0,176.0,0.0,0,77,0.0,0.0,228.4968728118562,310.0,0.0,334.1367124374029,50,0,0,0,0,0,0,0,0,0,,2,,2,113200,2,1,0,1,1,886.0,344.0,367.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2362.97068400314,134.0,15813.721363564197,0,5,2,3,69.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019603228922084045,15813.721363564197,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +13189,1,53.0,275.0,7,111,450.0,,,0,85,0.0,0.0,,588.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,113201,2,1,0,0,2,,480.0,380.0,11,0.0,1.0,4.0,1.0,1.0,1,1,153.83119725361982,450.0,5822.539160045403,0,7,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10098686910255403,5822.539160045403,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +13190,2,24.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,351.0,0.0,,43,0,0,0,0,0,0,0,0,1,10.0,2,2007.0,6,113202,2,1,0,0,2,,246.0,540.0,12,1.0,0.0,2.0,1.0,1.0,1,1,169.82799893662957,0.0,38280.29227502812,0,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009169208988223227,38280.29227502812,9,5,9,9_0,9_2,9_0_0 +13192,2,52.0,0.0,7,221,750.0,,,0,52,0.0,0.0,,816.0,91.44888887617039,,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,113204,1,2,0,0,2,,450.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,103.87135175714154,750.0,25392.80749906936,0,1,0,1,67.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032135083922087235,25392.80749906936,7,4,7,7_1,7_1,7_0_0 +13193,2,55.0,0.0,5,120,400.0,0.0,0.0,0,62,1054.6828510366015,264.8654554020448,682.0802173488245,1660.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,113205,2,1,1,0,1,,300.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,2873.91297241095,400.0,22363.39758452594,0,1,0,1,160.0,0,1,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07422843482193489,22363.39758452594,6,3,6,6_1,6_1,6_0_0 +13194,2,60.0,0.0,2,111,220.0,,,0,77,0.0,0.0,,286.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,2,,2,113206,2,2,0,0,2,,150.0,500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,158.22491119208073,220.0,31171.013930679328,0,7,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009175190792190153,31171.013930679328,8,4,8,8_0,8_2,8_0_1 +13195,1,30.0,96.0,9,111,280.0,,,56,56,0.0,0.0,,544.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,113207,2,1,0,0,2,,180.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,158.98043991925869,280.0,19384.26567994644,4,1,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028063998347008994,12922.84378663096,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +13196,1,21.0,200.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1180.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,,1,113208,2,2,0,0,1,,27.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2143.42024126829,0.0,15955.228306511486,0,1,2,3,41.0,7,5,7,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07395694861467011,15955.228306511486,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +13197,2,38.0,0.0,6,112,2400.0,0.0,0.0,54,37,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,113209,1,2,3,0,1,,550.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,762.927091859437,2400.0,62409.3381171529,1,1,1,2,90.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03845578357993147,34671.85450952939,9,5,9,9_1,9_1,9_0_0 +13198,0,56.0,0.0,5,111,300.0,,,0,45,0.0,0.0,,369.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,113210,2,1,0,0,2,,200.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,160.01820611569192,300.0,41626.61784977186,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008864520325232774,41626.61784977186,9,5,9,9_1,9_2,9_0_0 +13199,1,32.0,370.0,9,111,400.0,800.0,0.0,85,43,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,113211,2,1,1,0,1,,450.0,570.0,42,1.0,0.0,4.0,4.0,2.1,2,2,8888.85144006384,400.0,35047.79415888953,6,4,2,3,90.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0342389593638843,16689.425789947392,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +13200,2,33.0,0.0,5,111,350.0,0.0,0.0,56,68,0.0,0.0,596.8201901802214,350.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,3,113212,2,1,0,1,2,638.0,0.0,454.0,43,2.0,0.0,4.0,4.0,2.1,2,2,363.846967387746,350.0,36339.27020969716,1,1,2,3,78.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009631453740823949,17304.414385570075,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +13201,2,53.0,0.0,8,112,1500.0,0.0,0.0,52,48,527.3414255183008,0.0,2557.8008150580918,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,113213,2,1,2,0,1,,320.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,775.146633837486,1500.0,71643.04957085055,1,1,0,1,118.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027916176265251294,47762.0330472337,10,5,10,10_1,10_0,10_0_0 +13202,1,48.0,444.0,2,111,750.0,0.0,0.0,0,85,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,71,1,2,2,1,2,2,2,1,0,,2,,2,113214,1,2,0,0,1,,483.0,404.0,31,0.0,5.0,5.0,3.0,1.8,2,1,1218.07274376883,750.0,12161.356299028173,0,6,2,3,97.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.061670752961981164,6756.309055015652,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13203,2,47.0,0.0,1,111,1025.0,0.0,0.0,46,21,1001.9487084847715,662.163638505112,1747.8305569563627,2575.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113215,2,2,3,0,1,,423.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,766.298706681335,1025.0,23058.61549567494,1,1,1,2,165.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11167192585708312,9223.446198269976,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +13204,1,51.0,382.0,5,111,250.0,350.0,0.0,0,56,0.0,0.0,426.3001358430153,600.0,0.0,664.4764167789261,60,0,0,0,0,0,0,0,0,0,,2,,3,113216,2,2,0,1,1,674.0,0.0,338.0,32,1.0,0.0,3.0,4.0,1.9,1,1,385.532551575782,250.0,13404.290650269635,0,4,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04476178677817096,7054.889815931388,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +13205,2,71.0,0.0,2,111,420.0,63.0,0.0,0,77,0.0,0.0,716.1842282162656,483.0,0.0,119.6057550202067,31,0,0,0,0,0,0,0,0,0,,2,,2,113217,1,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1043.7205214452,420.0,38353.689934990114,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012593312424924168,38353.689934990114,9,5,9,9_0,9_4,9_0_1 +13206,2,51.0,0.0,6,111,730.0,0.0,0.0,46,53,0.0,0.0,1244.7963966616046,730.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,4,113218,2,1,0,0,2,,0.0,493.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1194.88645915782,730.0,62641.71733470839,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011653575780808346,41761.14488980559,9,5,9,9_0,9_4,9_0_0 +13207,1,49.0,255.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1127.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,113219,1,2,0,0,2,,126.0,240.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1460.54208221741,0.0,4852.287604538618,0,4,2,3,42.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.2322615829584902,4852.287604538618,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +13208,2,93.0,0.0,2,111,878.0,0.0,0.0,0,77,0.0,2185.1400070668697,1497.1660770806698,2678.0,207.83838380947813,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,113220,2,1,2,0,1,,374.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,848.591871091453,878.0,27872.10704058902,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09608172055668907,27872.10704058902,7,4,7,7_1,7_4,7_0_1 +13209,2,61.0,0.0,5,111,1035.0,,,78,56,0.0,0.0,,1283.0,344.1803635884958,,71,0,0,0,0,0,0,0,0,0,,1,,3,113221,1,1,0,0,2,,396.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,81.71930661958524,1035.0,26451.867797893487,5,1,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048503191147136034,17634.57853192899,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +13211,0,75.0,0.0,5,111,300.0,0.0,0.0,0,72,1265.6194212439218,0.0,511.56016301161833,1500.0,0.0,0.0,70,2,1,2,2,2,2,2,1,0,,2,,3,113223,1,2,0,1,2,1200.0,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2329.47254923945,300.0,7008.000000000001,0,5,5,0,40.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.21404109589041093,7008.000000000001,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +13212,2,42.0,0.0,5,111,195.0,0.0,0.0,0,63,0.0,0.0,332.5141059575519,195.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,113224,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1360.94611410924,195.0,18897.87556177965,0,1,0,1,47.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010318620173072855,18897.87556177965,5,3,5,5_0,5_3,5_0_0 +13213,2,46.0,0.0,9,111,448.0,590.0,0.0,67,52,0.0,569.4607291143963,763.9298434306834,1468.0,0.0,1120.1173882844755,50,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,113225,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1740.26773256549,448.0,38961.0466076641,1,1,1,2,165.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037678659271725694,21645.02589314672,6,3,6,6_1,6_2,6_0_0 +13214,2,38.0,0.0,1,111,0.0,0.0,0.0,63,52,0.0,0.0,0.0,1386.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,113226,1,3,0,1,1,,0.0,589.0,43,2.0,0.0,3.0,3.0,1.8,2,2,692.238210978867,0.0,32266.497468083435,1,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.042954770698956986,17925.831926713017,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +13215,2,64.0,0.0,7,111,400.0,900.0,0.0,0,77,0.0,860.8127300566456,682.0802173488245,1950.0,0.0,1708.65364314581,70,2,2,1,2,2,2,2,1,0,,1,,5,113227,2,1,2,0,1,,400.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1646.56411130784,400.0,22178.607115123898,0,5,0,1,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.08792256384172423,22178.607115123898,6,3,6,6_1,6_2,6_0_0 +13216,2,43.0,0.0,2,111,570.0,0.0,0.0,68,65,0.0,0.0,971.9643097220749,570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,113228,1,3,0,1,1,,0.0,,43,3.0,0.0,4.0,5.0,3.0,5,4,338.279588512323,570.0,51228.478794843555,1,1,1,2,82.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011126623577535818,17076.159598281185,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +13217,2,34.0,0.0,7,111,410.0,970.0,0.0,43,31,0.0,0.0,699.1322227825451,1380.0,0.0,1841.5489265015954,12,2,1,2,2,1,2,2,2,3,5.0,1,,5,113229,2,1,1,0,1,,362.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,367.162208706092,410.0,54871.220580197085,1,1,1,2,133.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.025149795929599556,26129.152657236707,7,4,7,7_1,7_3,7_0_0 +13218,2,52.0,0.0,1,112,487.08,1350.0,0.0,0,56,0.0,0.0,830.5690806656635,1837.0,0.0,2562.980464718715,50,2,2,1,2,1,2,2,2,0,,1,,1,113230,2,1,2,0,1,,276.0,,32,1.0,2.0,5.0,2.0,1.5,2,2,501.558794938245,487.08,15823.964555890743,0,1,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.11608974435652064,10549.309703927162,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +13219,2,33.0,0.0,7,111,960.0,920.0,0.0,37,46,0.0,0.0,1636.9925216371787,1880.0,0.0,1746.6237241046058,20,0,0,0,0,0,0,0,0,1,2.0,2,,5,113231,2,1,0,0,1,,0.0,600.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1349.24146066503,960.0,69853.94657367538,1,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026913296845972084,46569.297715783585,10,5,10,10_0,10_3,10_0_0 +13220,2,83.0,0.0,1,111,390.0,1200.0,0.0,86,86,0.0,0.0,665.0282119151038,1590.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,113232,2,2,2,0,1,,290.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,271.918840657419,390.0,28276.057415419928,6,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056231318837714525,18850.704943613284,5,3,5,5_1,5_3,5_1_0 +13221,2,67.0,0.0,6,211,840.0,0.0,0.0,72,72,0.0,397.2981831030672,1432.3684564325313,1202.0,85.9065319745843,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,113233,2,1,2,0,1,,390.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1684.18283692206,840.0,20661.29173850381,6,5,0,1,116.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058176420681383935,13774.194492335873,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +13222,2,61.0,0.0,6,111,600.0,,,85,52,0.0,0.0,,776.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,4,113234,2,1,0,0,2,,280.0,950.0,42,1.0,2.0,4.0,2.0,1.5,2,2,164.39974873444214,600.0,44159.0,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01757286170429584,29439.333333333332,8,4,8,8_1,8_2,8_0_0 +13223,2,62.0,0.0,6,111,359.0,,,74,74,0.0,0.0,,401.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,0,,1,,4,113235,2,1,0,0,2,,411.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,150.37826518032273,359.0,103981.65855808022,5,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003856449354248534,69321.10570538681,10,5,10,10_1,10_2,10_0_0 +13224,2,59.0,0.0,5,211,500.0,,,77,56,0.0,0.0,,500.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,3,113236,2,1,0,0,2,,900.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,94.24237993530727,500.0,5148.205882352941,7,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09712121298682007,2574.1029411764707,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13225,2,23.0,0.0,8,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,373.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,2003.0,6,113237,2,1,0,0,1,,118.0,515.0,12,1.0,0.0,3.0,1.0,1.0,1,1,3720.62740958592,0.0,19526.842310488,0,1,2,3,60.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01910191079894465,19526.842310488,5,3,5,5_0,5_1,5_0_0 +13226,2,75.0,0.0,2,111,196.0,0.0,0.0,78,77,0.0,0.0,334.219306500924,376.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113238,1,3,0,1,1,,160.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1605.1587253583,196.0,35819.819118587875,5,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010496982096843795,23879.879412391918,6,3,6,6_0,6_3,6_0_1 +13227,1,40.0,218.0,1,111,355.0,0.0,0.0,0,52,0.0,0.0,605.3461928970817,355.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,113239,2,1,0,0,1,,105.0,330.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2496.31386278236,355.0,5207.346158729479,0,4,2,3,27.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06817292132670803,5207.346158729479,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +13228,2,35.0,0.0,9,111,510.0,,,85,52,0.0,0.0,,630.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,113240,2,1,0,0,2,,225.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,117.9392775863739,510.0,35105.375685244915,6,1,0,1,77.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01794596946201588,16716.84556440234,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +13229,2,47.0,0.0,9,112,2000.0,0.0,0.0,33,43,0.0,662.163638505112,3410.4010867441225,2500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2004.0,6,113241,2,1,1,0,1,,488.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,225.585416337608,2000.0,150594.49841703413,1,1,0,1,157.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016600872052290182,75297.24920851707,10,5,10,10_1,10_0,10_0_0 +13230,1,59.0,176.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,572.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,113242,2,1,0,0,1,300.0,0.0,160.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1074.04868103923,0.0,2238.4609335190303,0,4,2,3,16.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2555327151056296,2238.4609335190303,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +13231,2,42.0,0.0,2,300,833.0,2267.0,0.0,52,65,0.0,0.0,1420.432052628927,3160.0,83.13535352379125,4303.908676679502,50,2,2,2,2,1,1,1,1,2,20.0,1,,2,113243,2,1,3,0,1,,800.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,3,2,1425.63065834603,833.0,46520.46231532023,1,1,1,2,190.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.06792709794200265,16041.53872942077,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +13232,2,45.0,0.0,6,300,1800.0,0.0,0.0,55,21,0.0,0.0,3069.36097806971,1920.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,113244,2,3,1,0,2,,630.0,374.0,43,2.0,0.0,4.0,3.0,2.0,3,3,803.378142768964,1800.0,32543.137070521592,1,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05899861454165663,16271.568535260796,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13233,2,46.0,0.0,5,111,900.0,0.0,0.0,85,38,1898.4291318658827,437.0280014133739,1534.680489034855,3030.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,3,113245,2,1,2,0,1,,805.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,3,2,1043.31834755415,900.0,65383.647675632645,6,1,0,1,160.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04634186234196947,25147.556798320253,7,4,7,7_1,7_3,7_0_0 +13234,2,52.0,0.0,1,112,687.0,0.0,0.0,43,11,1337.3378551144108,0.0,1171.472773296606,1955.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,113246,2,2,1,0,1,,144.0,,43,2.0,0.0,7.0,4.0,2.5,4,4,494.552036210637,687.0,102279.89503419901,1,1,0,1,140.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.019114215939958802,40911.95801367961,9,5,9,9_1,9_0,9_1_0 +13235,2,44.0,0.0,2,111,809.0,1150.0,0.0,67,67,0.0,0.0,1379.5072395879974,1959.0,0.0,2183.2796551307574,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,113247,2,2,2,0,1,,549.0,386.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1161.32775531298,809.0,37655.378455409664,4,1,2,3,60.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052024440607330164,20919.654697449812,5,3,5,5_1,5_2,5_0_1 +13236,2,35.0,0.0,6,111,600.0,2000.0,0.0,37,35,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,41,1,2,2,2,1,2,2,2,3,20.0,2,,4,113248,1,1,0,1,2,,590.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,706.622685891401,600.0,84172.89203271696,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.030888804426363443,40082.32953938903,9,5,9,9_0,9_4,9_0_0 +13237,1,62.0,66.0,9,111,576.0,600.0,0.0,0,75,0.0,0.0,982.1955129823073,1176.0,0.0,1139.1024287638734,70,2,2,2,2,1,1,2,2,0,,2,2010.0,6,113249,1,2,0,0,1,,120.0,429.0,11,0.0,7.0,3.0,1.0,1.0,1,1,1654.44082377264,576.0,15727.779883149396,0,5,2,3,73.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07477215530336585,15727.779883149396,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +13238,2,61.0,0.0,6,300,250.0,,,0,77,0.0,0.0,,490.0,332.541414095165,,70,0,0,0,0,0,0,0,0,0,,1,,4,113250,1,3,0,0,2,,280.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,126.45590921710215,250.0,20622.4908616188,0,7,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023760466341723793,20622.4908616188,5,3,5,5_1,5_1,5_0_0 +13239,2,59.0,0.0,8,112,1323.0,0.0,0.0,78,21,0.0,794.5963662061343,2255.980318881237,1983.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,113251,2,1,1,0,1,,448.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1231.33365360474,1323.0,47347.073953431325,6,1,0,1,120.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041882208010370375,31564.715968954217,8,4,8,8_1,8_0,8_0_0 +13240,1,35.0,350.0,8,112,850.0,800.0,0.0,22,22,0.0,529.7309108040896,1449.420461866252,2050.0,0.0,1518.8032383518312,10,2,2,2,2,1,2,2,1,0,,1,2000.0,6,113252,2,3,3,0,1,,210.0,650.0,43,2.0,0.0,6.0,3.0,1.8,2,2,921.336787829486,850.0,18492.059518585436,1,1,2,3,180.0,8,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,1,0.11085839291938512,10273.366399214132,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +13241,2,70.0,0.0,5,111,720.0,540.0,0.0,0,77,0.0,0.0,1227.744391227884,1260.0,0.0,1025.192185887486,60,0,0,0,0,0,0,0,0,0,,2,,3,113253,2,1,0,0,1,,0.0,390.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1663.02924557097,720.0,18644.50117992695,0,5,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06758024727186275,18644.50117992695,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +13242,2,81.0,0.0,6,112,541.0,2429.0,0.0,74,74,0.0,1655.40909626278,922.5134939642851,4220.0,0.0,4611.466332445748,70,0,0,0,0,0,0,0,0,0,,1,,4,113254,1,1,1,0,2,,260.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,302.237528799259,541.0,40094.32479119692,5,5,0,1,150.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10525180363996402,26729.54986079795,7,4,7,7_1,7_0,7_0_0 +13243,1,50.0,117.0,1,111,1200.0,0.0,0.0,0,68,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,2,,1,113255,2,2,0,0,2,,0.0,418.0,32,2.0,4.0,2.0,3.0,2.0,3,2,762.687295067343,1200.0,6162.764278952409,0,1,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.19471781585064693,3081.3821394762044,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +13244,2,61.0,0.0,2,221,765.0,0.0,0.0,0,52,0.0,397.2981831030672,1304.4784156796268,1065.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113256,1,1,1,0,2,,0.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,2578.68635138826,765.0,6980.660664928464,0,4,0,1,100.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.15256435617199762,6980.660664928464,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +13245,1,30.0,157.0,7,112,800.0,1500.0,0.0,46,47,0.0,0.0,1364.160434697649,2300.0,0.0,2847.7560719096837,71,2,2,1,2,1,1,2,2,0,,2,,5,113257,1,3,0,0,1,,1280.0,480.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1273.60839134899,800.0,33180.54241168397,4,1,2,3,80.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.0693177336121574,15800.258291278082,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +13246,0,86.0,0.0,2,400,1892.0,0.0,0.0,0,75,632.8097106219609,0.0,3226.2394280599397,2492.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,113258,1,3,2,0,2,,320.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,890.469468535384,1892.0,23916.036918008183,0,5,0,1,115.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10419786558046269,23916.036918008183,6,3,6,6_1,6_0,6_0_1 +13247,2,40.0,0.0,1,111,400.0,0.0,0.0,54,46,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,113259,2,1,0,1,1,488.0,0.0,350.0,43,2.0,0.0,3.0,3.0,1.8,2,2,198.569953446306,400.0,51388.951138777324,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007783774354915099,28549.417299320736,8,4,8,8_0,8_4,8_1_0 +13248,2,50.0,0.0,5,111,968.0,1968.0,0.0,67,37,0.0,26.486545540204478,1650.6341259841552,2956.0,0.0,3736.255966345505,50,0,0,0,0,0,0,0,0,2,7.0,2,,3,113260,1,1,0,0,2,,0.0,766.0,43,2.0,3.0,5.0,2.0,1.5,2,2,895.509515265935,968.0,54112.80070938529,1,1,2,3,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.054626631060463914,36075.20047292353,9,5,9,9_0,9_4,9_0_0 +13249,2,53.0,0.0,7,111,900.0,,,54,55,0.0,0.0,,1026.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,113261,2,1,0,0,2,,360.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,72.91491050499367,900.0,20446.645953448926,4,1,0,1,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050179379167414745,13631.097302299284,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +13250,2,65.0,0.0,5,112,1800.0,,,72,72,0.0,0.0,,2089.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,3,113262,2,1,0,0,2,,800.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,107.09197046882286,1800.0,67202.78699611983,5,5,0,1,180.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031085020329895175,33601.393498059915,9,5,9,9_1,9_1,9_0_0 +13251,2,40.0,0.0,9,111,1200.0,,,0,52,0.0,132.4327277010224,,1552.0,349.1684847999233,,42,0,0,0,0,0,0,0,0,0,,1,2007.0,6,113263,2,1,0,0,2,,1400.0,,32,1.0,0.0,3.0,4.0,1.9,1,1,85.72460593994401,1200.0,9403.62031657906,0,4,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16504281837748652,4949.273850831084,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +13252,2,83.0,0.0,2,300,1200.0,0.0,0.0,78,78,1054.6828510366015,0.0,2046.2406520464733,2320.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113264,2,1,1,0,1,,522.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,886.116795381961,1200.0,32632.20173778176,5,5,0,1,70.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07109541730106093,21754.801158521175,6,3,6,6_1,6_0,6_0_1 +13253,2,45.0,0.0,9,111,720.0,700.0,0.0,38,34,0.0,0.0,1227.744391227884,1420.0,0.0,1328.9528335578523,10,0,0,0,0,0,0,0,0,2,65.0,1,2004.0,6,113265,2,1,2,0,1,,250.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1353.15755893053,720.0,93471.8793492236,1,1,1,2,130.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015191734775062003,44510.41873772552,10,5,10,10_1,10_3,10_0_0 +13254,2,74.0,0.0,1,111,1500.0,3500.0,0.0,90,72,0.0,0.0,2557.8008150580918,5000.0,0.0,6644.764167789262,50,0,0,0,0,0,0,0,0,0,,1,,1,113266,2,1,2,0,1,,600.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1297.72109857665,1500.0,72013.6189313819,5,5,0,1,220.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06943131138520124,48009.079287587934,10,5,10,10_1,10_3,10_1_0 +13255,2,81.0,0.0,7,111,683.0,1253.0,0.0,77,75,0.0,0.0,1164.6519711231178,1936.0,0.0,2378.8255720685556,41,0,0,0,0,0,0,0,0,0,,1,,5,113267,2,1,2,0,1,,378.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,598.534697409688,683.0,54053.81850523831,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03581615607438323,36035.879003492206,9,5,9,9_1,9_4,9_0_0 +13256,2,55.0,0.0,9,111,0.0,0.0,0.0,77,64,0.0,0.0,0.0,1040.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,2010.0,6,113268,2,1,1,0,1,,512.0,790.0,42,1.0,3.0,4.0,2.0,1.5,2,2,1470.74106543883,0.0,35907.09743434687,5,1,2,3,97.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02896363321768219,23938.064956231246,6,3,6,6_1,6_2,6_0_0 +13257,1,31.0,24.0,1,111,0.0,0.0,1500.0,85,42,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,20,2,2,2,2,1,2,2,2,4,75.0,1,,1,113269,2,1,1,0,1,,276.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1013.89113348218,0.0,51510.92558263071,7,1,1,2,90.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0.02912003585712687,21462.885659429463,6,3,6,6_1,6_3,6_1_0 +13258,2,38.0,0.0,1,300,1200.0,0.0,0.0,0,38,0.0,291.3520009422493,2046.2406520464733,1420.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,1,113270,1,1,2,0,1,,130.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,997.861057965713,1200.0,29041.81826634281,0,1,1,2,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0488950101876255,29041.81826634281,8,4,8,8_1,8_0,8_1_0 +13259,2,72.0,0.0,5,112,393.0,0.0,0.0,0,75,1001.9487084847715,132.4327277010224,670.14381354522,1503.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,113271,2,1,2,0,1,,432.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1250.0470773574,393.0,22677.68196901475,0,5,0,1,120.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06627661513436857,22677.68196901475,6,3,6,6_1,6_0,6_0_0 +13260,1,53.0,377.0,7,111,900.0,0.0,0.0,67,68,0.0,0.0,1534.680489034855,900.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,20.0,2,,5,113272,2,2,0,0,1,,0.0,358.0,43,3.0,2.0,3.0,3.0,2.0,3,3,506.055046278733,900.0,9016.095949203287,1,1,2,3,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.09982147540028442,4508.047974601644,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +13261,2,39.0,0.0,2,111,604.0,0.0,0.0,38,31,0.0,0.0,1029.941128196725,604.0,0.0,0.0,10,2,2,2,1,2,2,2,2,3,30.0,2,,2,113273,1,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,913.2061510056,604.0,121951.25213594623,1,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.004952798675053256,67750.69563108124,10,5,10,10_0,10_4,10_0_1 +13262,2,57.0,0.0,7,111,70.0,0.0,0.0,75,43,0.0,0.0,119.36403803604428,105.0,48.49562288887823,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,113274,2,1,2,0,1,,672.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1327.39553214654,70.0,63263.68839769748,5,1,0,1,92.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0016597198592015945,42175.792265131655,9,5,9,9_1,9_3,9_0_0 +13264,2,55.0,0.0,6,111,372.0,826.0,0.0,0,64,0.0,0.0,634.3346021344067,1198.0,0.0,1568.1643435982658,60,0,0,0,0,0,0,0,0,0,,1,,4,113276,2,1,2,0,1,,520.0,473.0,12,1.0,3.0,5.0,1.0,1.0,1,1,284.382876649577,372.0,21620.58452228117,0,1,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05541015779501229,21620.58452228117,6,3,6,6_1,6_3,6_0_0 +13265,1,65.0,250.0,1,111,540.0,0.0,0.0,0,78,0.0,0.0,920.8082934209131,540.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,8,,1,113277,1,3,0,0,1,,0.0,630.0,11,0.0,3.0,1.0,1.0,1.0,1,1,898.533124302546,540.0,12321.259981379524,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.04382668662264036,12321.259981379524,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +13266,1,74.0,190.0,5,111,300.0,850.0,0.0,0,77,0.0,0.0,511.56016301161833,1150.0,0.0,1613.7284407488207,71,2,2,2,1,1,2,2,2,0,,1,,3,113278,1,2,2,0,1,,90.0,380.0,11,0.0,6.0,5.0,1.0,1.0,1,1,230.64404180934,300.0,10640.158230553097,0,5,2,3,93.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.10808109946126437,10640.158230553097,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +13267,2,24.0,0.0,2,111,500.0,500.0,0.0,64,46,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,41,1,2,2,1,1,2,2,2,3,60.0,2,,2,113279,1,2,0,1,1,443.0,0.0,270.0,43,2.0,0.0,2.0,3.0,1.8,2,2,243.807484193997,500.0,30534.036559065407,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03275033741659371,16963.353643925228,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +13268,2,37.0,0.0,7,111,300.0,450.0,0.0,67,46,0.0,0.0,511.56016301161833,750.0,0.0,854.326821572905,20,2,1,2,2,1,2,2,2,3,75.0,2,,5,113280,1,2,0,1,1,876.0,0.0,399.0,43,2.0,0.0,3.0,4.0,2.1,2,2,857.36669207932,300.0,53700.0,1,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.013966480446927373,25571.42857142857,7,4,7,7_0,7_4,7_0_0 +13269,2,43.0,0.0,5,112,2640.0,0.0,0.0,42,42,0.0,0.0,4501.729434502242,2640.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,40.0,1,,3,113281,2,1,1,0,1,,1350.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1223.62017238941,2640.0,60772.720597326435,1,1,1,2,81.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.0434405432906708,33762.62255407024,9,5,9,9_1,9_1,9_0_0 +13270,2,54.0,0.0,5,211,900.0,,,0,68,0.0,0.0,,1200.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,3,113282,1,3,0,0,2,,1000.0,,22,1.0,2.0,3.0,4.0,2.3,3,3,43.59484970302702,900.0,13462.745923306193,0,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08913486199888879,5853.367792741823,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13271,2,23.0,0.0,2,111,600.0,0.0,0.0,65,63,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,113283,1,3,0,1,1,412.0,0.0,294.0,43,2.0,1.0,3.0,2.0,1.5,2,2,275.790448533795,600.0,39199.620999522864,1,1,2,3,70.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015306270435811183,26133.080666348575,7,4,7,7_0,7_3,7_0_1 +13272,2,70.0,0.0,1,111,120.0,400.0,0.0,0,77,0.0,0.0,204.62406520464734,520.0,0.0,759.4016191759156,70,2,2,2,2,1,2,2,1,0,,2,,1,113284,1,3,0,0,2,,363.0,556.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2191.20336061068,120.0,17820.719231603092,0,5,2,3,50.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.02917951813515119,17820.719231603092,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +13273,2,63.0,0.0,5,112,1200.0,0.0,0.0,43,62,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,,3,113285,2,2,2,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,774.164577126442,1200.0,71645.42761144612,1,1,0,1,95.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016749149806292555,47763.61840763075,10,5,10,10_1,10_2,10_0_0 +13274,1,49.0,150.0,9,111,250.0,0.0,0.0,68,53,0.0,0.0,426.3001358430153,250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,2005.0,6,113286,2,1,0,0,1,,0.0,700.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,3,192.704654768908,250.0,29011.58917314301,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.008617245973944554,9358.577152626778,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +13275,2,30.0,0.0,7,111,450.0,,,54,46,0.0,0.0,,550.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,113287,2,2,0,0,2,,350.0,680.0,43,2.0,0.0,2.0,2.0,1.5,2,2,48.92748756214494,450.0,28696.585297596,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019166043426291392,19131.056865064,5,3,5,5_1,5_2,5_0_0 +13276,2,46.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,221.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,113288,2,1,0,1,1,,0.0,357.0,42,1.0,0.0,3.0,3.0,1.8,2,2,412.472407233992,0.0,11340.988878736089,6,1,2,3,37.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0194868368502121,6300.549377075605,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +13277,2,38.0,0.0,2,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,3739.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,113289,2,3,4,0,2,,0.0,850.0,22,2.0,0.0,4.0,2.0,1.5,2,2,1360.22080366865,0.0,45375.57702937262,0,1,3,4,85.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0824011559694252,30250.38468624841,8,4,8,8_1,8_3,8_0_1 +13278,2,61.0,0.0,1,111,500.0,1300.0,0.0,67,78,0.0,0.0,852.6002716860306,1800.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,1,113290,2,1,2,0,1,,450.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1363.4193572475,500.0,42746.50082054438,1,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04210870984637186,28497.667213696255,8,4,8,8_1,8_2,8_1_0 +13279,2,50.0,0.0,2,111,120.0,240.0,0.0,0,62,0.0,0.0,204.62406520464734,360.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,113291,1,2,0,1,1,,0.0,198.0,12,1.0,2.0,2.0,1.0,1.0,1,1,747.29247978647,120.0,12840.124217986644,0,1,2,3,45.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028037111938193436,12840.124217986644,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +13280,2,42.0,0.0,9,120,1084.0,0.0,0.0,62,53,0.0,0.0,1848.4373890153142,1084.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,113292,2,1,1,0,1,,306.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1970.74978937878,1084.0,41803.46460861302,1,1,1,2,104.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025930865064630475,23224.147004785013,6,3,6,6_1,6_1,6_0_0 +13281,2,30.0,0.0,2,111,500.0,850.0,0.0,0,64,0.0,0.0,852.6002716860306,1350.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,113293,2,2,0,1,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,331.052108796341,500.0,20363.527374641093,0,1,2,3,60.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06629499767712978,20363.527374641093,5,3,5,5_0,5_2,5_0_1 +13282,1,38.0,261.0,5,111,300.0,,,0,85,0.0,0.0,,420.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,3,113294,2,2,0,0,2,,300.0,352.0,31,0.0,0.0,2.0,7.0,2.8,1,1,130.7999086719983,300.0,29986.223678864626,0,6,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014006431903462095,10709.36559959451,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +13283,2,40.0,0.0,5,111,720.0,900.0,0.0,37,38,0.0,105.94618216081791,1227.744391227884,1700.0,0.0,1708.65364314581,12,0,0,0,0,0,0,0,0,2,20.0,1,,3,113295,2,1,2,0,1,,1000.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,699.831511672812,720.0,88157.9936108425,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019283560461962668,41979.99695754405,9,5,9,9_1,9_4,9_0_0 +13284,2,65.0,0.0,5,111,1816.0,0.0,0.0,75,52,0.0,26.486545540204478,3096.644186763663,1836.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,3,113296,2,1,2,0,1,,368.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1076.85528849997,1816.0,53023.02424947494,5,1,0,1,90.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03462646701103966,35348.68283298329,9,5,9,9_1,9_3,9_0_0 +13285,0,67.0,0.0,5,400,1400.0,0.0,0.0,0,75,0.0,0.0,2387.2807607208856,1568.0,232.77898986661552,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,113297,2,2,3,0,1,,330.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1322.39573219643,1400.0,49664.91707771125,0,5,0,1,77.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03157158195888121,49664.91707771125,10,5,10,10_1,10_0,10_0_0 +13286,2,52.0,0.0,7,111,450.0,1200.0,0.0,0,54,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,113298,2,2,5,0,1,,330.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,1009.19202408345,450.0,21784.25137921815,0,1,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07574279103178526,14522.8342528121,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +13287,1,41.0,180.0,6,211,1100.0,,,0,52,0.0,0.0,,1100.0,0.0,,71,0,0,0,0,0,0,0,0,1,40.0,8,,4,113299,1,2,0,0,1,,200.0,480.0,32,1.0,0.0,3.0,3.0,1.8,2,2,47.78756352735247,1100.0,30053.606656025913,0,1,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0366012642871748,16696.44814223662,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +13288,0,71.0,0.0,1,400,350.0,0.0,0.0,71,71,0.0,1324.327277010224,596.8201901802214,1350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113300,1,2,4,0,2,,0.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,1041.87925637218,350.0,18561.242203412334,5,5,0,1,60.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0727322010674379,12374.161468941556,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +13289,2,42.0,0.0,6,111,600.0,,,85,63,0.0,0.0,,750.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,,4,113301,2,1,0,0,2,,270.0,,42,2.0,0.0,4.0,5.0,3.0,5,4,138.35508962301813,600.0,15919.371971640787,6,4,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04711241130215884,5306.457323880262,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13290,1,24.0,312.0,7,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,1607.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,5,113302,2,1,0,0,1,,0.0,600.0,43,2.0,0.0,2.0,4.0,2.1,2,2,177.955006707834,0.0,30222.914449605472,1,1,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053171576244890495,14391.864023621652,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +13291,2,45.0,0.0,6,111,600.0,,,0,31,0.0,0.0,,696.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,4,113303,1,3,0,0,2,,400.0,960.0,32,1.0,0.0,4.0,3.0,1.8,3,1,91.63205807697577,600.0,47997.3493068355,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014500800774447762,26665.194059353056,7,4,7,7_1,7_3,7_0_0 +13292,2,62.0,0.0,5,111,460.0,0.0,0.0,74,74,1582.0242765549024,0.0,784.3922499511482,1960.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,113304,1,1,2,0,2,,340.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,905.898746471766,460.0,66261.58678432189,5,5,0,1,110.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02957973231730325,44174.391189547925,10,5,10,10_1,10_3,10_0_0 +13293,2,39.0,0.0,5,111,580.0,0.0,0.0,0,34,0.0,0.0,989.0163151557955,580.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,113305,2,1,0,0,1,,0.0,560.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1142.1201466052,580.0,28771.371745373337,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0201589276011238,28771.371745373337,8,4,8,8_0,8_4,8_0_0 +13294,1,48.0,413.0,7,111,672.0,,,0,85,0.0,0.0,,909.0,328.3846464189755,,71,0,0,0,0,0,0,0,0,0,,2,,5,113306,2,2,0,0,2,,1317.0,624.0,31,0.0,3.0,4.0,6.0,3.0999999999999996,4,3,76.17205910569969,672.0,22333.22404602498,0,6,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.040701691709477565,7204.2658212983815,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13295,2,58.0,0.0,8,111,400.0,600.0,0.0,77,78,0.0,397.2981831030672,682.0802173488245,1300.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,113307,2,1,2,0,1,,280.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1652.02999385891,400.0,15229.237902014418,6,7,1,2,88.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08536211781339663,10152.825268009612,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +13296,2,31.0,0.0,1,111,383.0,0.0,0.0,38,37,0.0,0.0,653.0918081114994,383.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,25.0,2,,1,113308,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1022.82614942245,383.0,114018.06537568664,1,1,1,2,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003359116809586487,76012.04358379109,10,5,10,10_0,10_4,10_1_0 +13297,2,43.0,0.0,2,111,420.0,0.0,0.0,0,52,0.0,0.0,716.1842282162656,600.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,113309,2,1,0,1,1,,300.0,,32,2.0,0.0,4.0,4.0,2.3,3,2,1896.96808723888,420.0,28631.24146848457,0,1,0,1,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020956129361712848,12448.365855862858,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +13299,1,61.0,253.0,7,211,390.0,,,0,77,0.0,0.0,,465.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,0,,2,,5,113311,1,2,0,0,2,,240.0,337.0,31,1.0,2.0,1.0,2.0,1.5,2,2,111.79518903855774,390.0,8113.136180999767,0,7,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05731445764327093,5408.757453999845,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13300,2,66.0,0.0,1,400,756.0,0.0,0.0,75,74,1392.1813633683141,132.4327277010224,1289.1316107892783,2176.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,113312,2,1,1,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1911.62425431814,756.0,60496.264696624916,5,5,1,2,194.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03596916290472061,40330.843131083275,9,5,9,9_1,9_0,9_1_0 +13301,2,52.0,0.0,1,111,400.0,1000.0,0.0,85,63,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,44,0,0,0,0,0,0,0,0,2,3.0,2,,1,113313,1,1,0,0,2,,0.0,484.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1892.47667682993,400.0,21385.81422718085,7,1,2,3,70.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06546395592554217,14257.209484787234,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +13302,1,37.0,272.0,1,111,370.0,700.0,0.0,0,68,0.0,0.0,630.9242010476627,1070.0,0.0,1328.9528335578523,60,2,2,2,2,1,1,2,2,3,45.0,2,,1,113314,1,3,0,0,2,,0.0,420.0,22,1.0,2.0,2.0,2.0,1.5,2,2,360.135386717379,370.0,14575.257126529908,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,0.07341208396607866,9716.838084353272,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +13303,1,54.0,308.0,6,111,1090.0,0.0,0.0,77,62,0.0,397.2981831030672,1858.6685922755466,1390.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,113315,1,3,0,0,1,,0.0,590.0,42,1.0,1.0,2.0,2.0,1.5,2,2,940.062164828042,1090.0,38225.50194158219,5,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03636315887033364,25483.66796105479,7,4,7,7_0,7_4,7_0_0 +13304,1,45.0,300.0,8,111,800.0,1400.0,0.0,68,63,0.0,0.0,1364.160434697649,2200.0,0.0,2657.9056671157045,60,2,2,2,1,1,2,2,2,3,30.0,2,2003.0,6,113316,1,3,0,0,1,,600.0,490.0,43,2.0,0.0,4.0,5.0,2.8,4,2,835.402028861585,800.0,29544.968357026693,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07446276379161439,10551.77441322382,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +13305,2,60.0,0.0,9,111,505.0,0.0,0.0,0,74,0.0,0.0,861.1262744028909,505.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,113317,1,1,0,0,1,,0.0,648.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1629.6728960444,505.0,31034.74045192463,0,5,2,3,49.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016272087107745806,31034.74045192463,8,4,8,8_0,8_3,8_0_0 +13306,1,21.0,287.0,5,111,138.0,0.0,0.0,84,53,0.0,0.0,235.31767498534444,174.0,49.88121211427475,0.0,50,2,1,2,1,2,2,2,1,0,,2,,3,113318,1,1,0,1,2,,0.0,415.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1807.20922276888,138.0,5620.913099960945,3,4,2,3,45.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.030955824597467797,3747.2753999739634,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13307,1,82.0,253.0,7,111,300.0,,,0,78,0.0,0.0,,300.0,0.0,,70,0,0,0,0,0,0,0,0,0,,2,,5,113319,2,2,0,0,2,,200.0,432.0,11,0.0,1.0,2.0,1.0,1.0,1,1,117.3075233617168,300.0,8763.924550127522,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03423123947314617,8763.924550127522,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +13308,2,54.0,0.0,9,111,476.0,0.0,0.0,22,22,0.0,0.0,811.6754586451011,476.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2004.0,6,113320,2,1,0,0,1,,390.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,2163.27255723499,476.0,9781.107042472784,1,1,1,2,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04866524800649368,6520.73802831519,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +13309,1,37.0,167.0,7,111,341.0,913.0,0.0,0,47,0.0,0.0,581.4733852898729,1254.0,0.0,1733.3341957690272,50,0,0,0,0,0,0,0,0,3,60.0,2,,5,113321,1,2,0,0,1,,0.0,537.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1048.40422210839,341.0,16337.346109808572,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07675665261490218,12567.189315237363,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +13310,2,52.0,0.0,7,111,340.0,0.0,0.0,0,46,0.0,529.7309108040896,579.7681847465008,740.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,113322,2,1,0,0,1,,200.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1514.5396694414,340.0,24031.06626256967,0,1,1,2,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03079347341123227,24031.06626256967,6,3,6,6_0,6_3,6_0_0 +13311,2,36.0,0.0,5,111,1400.0,0.0,0.0,54,62,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,113323,2,1,2,0,1,,332.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,291.03816910505,1400.0,40995.80059894838,1,1,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03414983924075171,19521.809809023038,5,3,5,5_1,5_3,5_0_0 +13312,2,55.0,0.0,8,120,720.0,0.0,0.0,52,22,0.0,0.0,1227.744391227884,755.0,48.49562288887823,0.0,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113324,1,1,2,0,2,520.0,240.0,320.0,43,2.0,6.0,3.0,2.0,1.5,2,2,2374.17460538158,720.0,26872.352619352765,4,1,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028095790893137833,17914.901746235177,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13313,2,51.0,0.0,8,111,2200.0,0.0,0.0,38,43,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,113325,2,1,1,0,1,,360.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,994.995314035053,2200.0,78634.51692574235,1,1,0,1,110.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02797753564223642,52423.01128382824,10,5,10,10_1,10_3,10_0_0 +13314,2,66.0,0.0,9,111,370.0,,,0,77,0.0,0.0,,440.0,96.99124577775646,,44,0,0,0,0,0,0,0,0,0,,2,2006.0,6,113326,2,2,0,0,1,,200.0,500.0,11,0.0,3.0,2.0,1.0,1.0,1,1,152.55220713143925,370.0,50626.43619606098,0,5,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008691111463900246,50626.43619606098,10,5,10,10_0,10_2,10_0_0 +13315,2,55.0,0.0,6,120,746.0,0.0,0.0,52,63,0.0,0.0,1272.0796053555575,1046.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,113327,2,2,1,0,1,,154.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,602.865473524762,746.0,62185.01946230534,1,1,0,1,127.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016820771450173033,41456.679641536895,9,5,9,9_1,9_0,9_0_0 +13316,2,56.0,0.0,1,111,250.0,540.0,0.0,0,45,0.0,0.0,426.3001358430153,790.0,0.0,1025.192185887486,42,2,2,2,2,1,2,2,2,2,20.0,2,,1,113328,2,2,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,751.920589453536,250.0,33678.0,0,1,1,2,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,0,0.02345744996733773,33678.0,9,5,9,9_0,9_4,9_1_0 +13317,2,64.0,0.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,772.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113329,2,1,2,0,1,,0.0,400.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1026.12915374238,0.0,14772.182233494488,0,5,2,3,52.0,9,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.052260389683628804,14772.182233494488,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +13318,2,32.0,0.0,5,111,620.0,820.0,0.0,64,52,0.0,0.0,1057.224336890678,1440.0,0.0,1556.773319310627,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,113330,2,1,2,0,1,,500.0,680.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1619.69459398852,620.0,45355.47839036958,1,1,2,3,82.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031749196593321746,21597.84685255694,6,3,6,6_1,6_3,6_0_0 +13319,1,39.0,467.0,6,111,600.0,,,85,63,0.0,0.0,,864.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,2,,4,113331,2,3,0,0,2,,600.0,442.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,129.77797263475182,600.0,19544.959407967865,6,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.044205771010594905,7517.292079987641,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13320,2,25.0,0.0,9,111,168.0,,,0,42,0.0,0.0,,168.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,113332,2,2,0,0,2,,86.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,218.33324070129765,168.0,28279.0,0,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005940804130273348,28279.0,8,4,8,8_0,8_2,8_0_0 +13321,2,62.0,0.0,5,112,600.0,0.0,0.0,77,52,0.0,675.4069112752142,1023.1203260232367,1270.0,221.69427606344334,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,113333,2,1,1,0,1,,200.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1236.42958558521,600.0,37426.097857707275,5,1,0,1,110.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03393354030197046,24950.731905138182,7,4,7,7_1,7_0,7_0_0 +13322,2,48.0,0.0,8,111,1800.0,,,43,55,0.0,0.0,,1900.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,113334,2,1,0,0,1,,564.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,106.78228153707744,1800.0,216449.29279566696,1,1,0,1,160.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00877803745837896,94108.38817202912,10,5,10,10_1,10_3,10_0_0 +13323,0,70.0,0.0,5,112,611.0,1330.0,0.0,0,74,0.0,105.94618216081791,1041.8775320003294,2081.0,83.13535352379125,2525.0103837599195,31,0,0,0,0,0,0,0,0,0,,1,,3,113335,2,2,2,0,1,,550.0,,11,0.0,5.0,8.0,1.0,1.0,1,1,1721.89437446421,611.0,55552.864050758086,0,5,0,1,200.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03745981481888335,55552.864050758086,10,5,10,10_1,10_1,10_0_0 +13324,2,26.0,0.0,5,111,540.0,,,43,63,0.0,0.0,,580.0,55.423569015860835,,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,113336,1,1,0,0,2,,600.0,600.0,43,2.0,0.0,3.0,3.0,2.0,3,3,110.64324488257472,540.0,49610.80321394884,1,1,3,4,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011691002008145759,24805.40160697442,7,4,7,7_0,7_3,7_0_0 +13325,1,49.0,340.0,2,111,800.0,1200.0,0.0,67,68,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,71,2,2,2,2,1,2,2,2,0,,2,,2,113337,1,3,0,0,2,,0.0,600.0,43,2.0,0.0,5.0,2.0,1.5,2,2,369.511144217996,800.0,14454.168396431225,4,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.13836838932178247,9636.112264287483,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13326,2,57.0,0.0,2,300,1400.0,0.0,0.0,0,52,0.0,198.6490915515336,2387.2807607208856,1610.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,113338,2,1,2,0,2,,116.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1034.68284809785,1400.0,17135.382509758194,0,1,1,2,50.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09395763409910127,17135.382509758194,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +13327,2,57.0,0.0,1,111,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,113339,1,1,0,0,1,,80.0,375.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2408.93823984078,600.0,21344.0,0,5,3,4,27.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02811094452773613,21344.0,6,3,6,6_0,6_2,6_1_0 +13328,2,54.0,0.0,9,111,300.0,730.0,0.0,0,43,0.0,0.0,511.56016301161833,1030.0,0.0,1385.9079549960459,33,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,113340,2,2,1,0,1,,187.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,635.405823783367,300.0,34655.83081854365,0,1,1,2,84.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029720828376414727,23103.88721236243,6,3,6,6_1,6_2,6_0_0 +13329,2,72.0,0.0,5,111,500.0,320.0,0.0,78,78,0.0,0.0,852.6002716860306,820.0,0.0,607.5212953407324,44,0,0,0,0,0,0,0,0,0,,2,,3,113341,2,1,0,1,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1874.31144661479,500.0,5918.951428436995,5,5,0,1,86.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1385380518685107,3945.967618957997,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +13330,2,65.0,0.0,2,111,292.0,70.0,0.0,0,77,0.0,0.0,497.91855866464186,498.0,0.0,132.89528335578524,60,2,1,2,2,1,2,2,2,0,,2,,2,113342,2,1,0,1,1,732.0,90.0,328.0,11,0.0,1.0,3.0,1.0,1.0,1,1,308.099947459223,292.0,18997.374014825375,0,5,2,3,72.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026214149366715917,18997.374014825375,5,3,5,5_0,5_2,5_0_1 +13331,1,48.0,350.0,1,120,1290.0,0.0,0.0,0,56,0.0,0.0,2199.7087009499587,1350.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113343,2,2,2,0,2,,500.0,540.0,32,1.0,0.0,6.0,3.0,2.0,3,3,2574.84132116711,1290.0,16408.850295520464,0,1,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0822726745437213,8204.425147760232,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +13332,2,71.0,0.0,2,111,400.0,0.0,0.0,77,75,0.0,0.0,682.0802173488245,630.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,113344,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1722.23741695616,400.0,36499.77864110146,5,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017260378650367298,24333.185760734308,7,4,7,7_0,7_3,7_0_1 +13333,1,67.0,30.0,2,111,360.0,0.0,0.0,0,75,0.0,0.0,613.872195613942,1159.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,113345,1,2,0,1,1,,0.0,400.0,21,1.0,2.0,3.0,2.0,1.5,2,2,983.33536140788,360.0,35418.51712378998,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03272299616466779,23612.34474919332,6,3,6,6_0,6_4,6_0_1 +13335,2,45.0,0.0,1,111,1640.0,1800.0,0.0,46,33,0.0,264.8654554020448,2796.5288911301805,3640.0,0.0,3417.30728629162,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,113347,1,1,2,0,1,,320.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,290.643789043238,1640.0,32485.607505727177,4,1,1,2,140.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.112049620723832,11602.00268061685,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +13336,2,64.0,0.0,2,111,550.0,670.0,0.0,77,78,0.0,0.0,937.8602988546337,1220.0,0.0,1271.9977121196587,50,0,0,0,0,0,0,0,0,0,,1,,2,113348,2,2,3,0,1,,220.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1328.47508750632,550.0,26139.36982585496,6,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046672892580343475,17426.246550569973,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +13337,2,84.0,0.0,7,111,346.0,1177.0,0.0,74,74,0.0,26.486545540204478,589.9993880067332,1543.0,0.0,2234.5392644251315,12,0,0,0,0,0,0,0,0,0,,1,,5,113349,2,1,1,0,1,,266.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,908.83269966527,346.0,88291.64797907244,5,5,0,1,150.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017476171702738335,58861.09865271496,10,5,10,10_1,10_3,10_0_0 +13338,2,74.0,0.0,5,111,483.0,0.0,0.0,77,72,1747.6094841676488,519.1362925880078,823.6118624487056,2628.0,133.01656563806603,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,113350,2,1,2,0,1,,147.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1514.50273974472,483.0,31506.0,5,5,0,1,90.0,9,7,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08341268329841935,21004.0,5,3,5,5_1,5_3,5_0_0 +13339,2,69.0,0.0,2,112,260.0,,,0,77,0.0,0.0,,400.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,2,113351,1,2,0,0,2,,360.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,112.40894431487531,260.0,9389.73493299883,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04259971158443029,9389.73493299883,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +13340,2,69.0,0.0,7,111,348.0,,,85,78,0.0,0.0,,474.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,113352,2,2,0,0,2,,372.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,81.72843932346042,348.0,19639.306013163223,6,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02413527238092334,9819.653006581611,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +13341,2,25.0,0.0,6,111,360.0,,,0,54,0.0,0.0,,385.0,34.63973063491302,,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,113353,2,1,0,0,2,,80.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,138.47375053990035,360.0,27961.20501777162,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013769077539945121,27961.20501777162,7,4,7,7_0,7_2,7_0_0 +13342,2,72.0,0.0,9,111,926.0,0.0,0.0,74,74,0.0,264.8654554020448,1579.0157031625286,1126.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2005.0,6,113354,2,1,1,0,1,,243.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2846.96622084086,926.0,47852.06197026828,5,5,0,1,153.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02353085642787165,31901.37464684552,8,4,8,8_1,8_3,8_0_0 +13343,0,55.0,0.0,9,111,0.0,,,81,12,0.0,0.0,,158.0,218.9230976126503,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,113355,2,1,0,0,2,,240.0,,43,2.0,1.0,4.0,5.0,2.5999999999999996,3,2,81.80140622579293,0.0,14817.007326204426,4,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010663421872011303,5698.848971617088,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13344,0,34.0,0.0,7,211,200.0,,,0,67,0.0,0.0,,244.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,2,,5,113356,2,1,0,0,2,,160.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,97.22414319230161,200.0,7461.282271944922,0,4,5,0,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03270215374607411,7461.282271944922,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +13345,2,53.0,0.0,6,112,780.0,,,56,68,0.0,0.0,,1116.0,465.55797973323104,,71,2,2,2,2,1,2,2,2,0,,1,,4,113357,1,1,0,0,2,,400.0,,43,4.0,0.0,5.0,5.0,2.8,4,4,115.50232945624626,780.0,14133.260115606936,4,4,0,1,80.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.07896267321703325,5047.5928984310485,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +13346,1,39.0,500.0,5,111,500.0,,,0,45,0.0,0.0,,788.0,399.049696914198,,70,0,0,0,0,0,0,0,0,0,,1,,3,113358,2,3,0,0,2,,600.0,520.0,32,3.0,0.0,3.0,6.0,3.0999999999999996,4,4,124.85480313117964,500.0,29205.00982740629,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026981672139707088,9420.970912066547,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +13347,2,70.0,0.0,2,111,660.0,,,0,75,0.0,0.0,,820.0,221.69427606344334,,70,0,0,0,0,0,0,0,0,0,,1,,2,113359,2,2,0,0,2,,730.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,99.6964590069803,660.0,29376.0,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027913943355119826,29376.0,8,4,8,8_1,8_2,8_0_1 +13348,2,68.0,0.0,1,400,2000.0,0.0,0.0,74,75,3691.3899786281054,0.0,3410.4010867441225,5500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,113360,2,1,2,0,2,,700.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,1684.61930737327,2000.0,60321.67598927133,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09117783797947221,40214.45065951422,9,5,9,9_1,9_0,9_1_0 +13349,2,26.0,0.0,8,111,250.0,700.0,0.0,54,34,0.0,0.0,426.3001358430153,950.0,0.0,1328.9528335578523,20,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,113361,2,1,1,0,1,,412.0,990.0,43,2.0,0.0,3.0,3.0,1.8,2,2,733.831886552625,250.0,48498.78913610404,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01958811790813948,26943.77174228002,7,4,7,7_1,7_4,7_0_0 +13350,2,34.0,0.0,5,211,450.0,0.0,0.0,0,65,0.0,0.0,767.3402445174275,475.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,113362,2,3,0,1,1,300.0,110.0,152.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3632.95098006851,450.0,15886.852157764046,0,1,2,3,36.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02989893751657173,15886.852157764046,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +13351,2,30.0,0.0,1,111,400.0,0.0,0.0,46,31,0.0,0.0,682.0802173488245,490.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,113363,2,1,0,1,2,492.0,0.0,1340.0,43,2.0,0.0,3.0,4.0,2.1,2,2,867.440205654246,400.0,89077.84966671461,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005500806337752184,42418.02365081648,9,5,9,9_0,9_4,9_1_0 +13352,1,40.0,102.0,9,111,760.0,,,56,63,0.0,0.0,,806.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,113364,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,110.21678371133757,760.0,26460.814098314615,1,1,1,2,83.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030460136147184416,11504.70178187592,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +13353,2,62.0,0.0,5,111,540.0,0.0,0.0,78,68,0.0,0.0,920.8082934209131,1203.0,0.0,0.0,71,2,2,2,1,2,2,1,2,0,,2,,3,113365,1,2,0,1,2,660.0,0.0,499.0,42,1.0,2.0,2.0,2.0,1.5,2,2,1120.63628504131,540.0,24276.237325214195,5,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.049554631711831214,16184.158216809463,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +13354,1,28.0,238.0,5,111,610.0,0.0,0.0,0,63,0.0,0.0,1040.1723314569574,610.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,8,,3,113366,1,3,0,0,1,,240.0,291.0,12,1.0,0.0,1.0,1.0,1.0,1,1,372.081621321743,610.0,7212.008118115465,0,4,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.08458115825851235,7212.008118115465,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +13355,2,56.0,0.0,2,112,420.0,0.0,0.0,56,62,0.0,662.163638505112,716.1842282162656,1100.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,113367,2,1,3,0,1,,150.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,257.039074135211,420.0,18389.325321817578,1,1,0,1,180.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05981731144290167,12259.550214545052,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +13356,2,73.0,0.0,1,111,700.0,0.0,0.0,0,78,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,1,113368,2,1,0,0,1,,0.0,330.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2012.37387656944,700.0,21463.173863721648,0,5,2,3,40.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.032614002218152006,21463.173863721648,6,3,6,6_0,6_2,6_1_0 +13357,2,59.0,0.0,1,111,600.0,0.0,0.0,78,68,0.0,635.6770929649075,1023.1203260232367,1260.0,249.40606057137379,0.0,71,2,2,2,1,2,2,2,2,2,15.0,1,,1,113369,2,1,3,0,2,,600.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,251.200309393287,600.0,19482.99126731761,5,1,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.06467179411580545,12988.660844878408,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +13358,1,51.0,254.0,9,221,1400.0,0.0,0.0,0,85,0.0,0.0,2387.2807607208856,1530.0,180.1265993015477,0.0,71,0,0,0,0,0,0,0,0,0,,2,2010.0,6,113370,2,1,0,0,1,,0.0,400.0,11,0.0,4.0,3.0,1.0,1.0,1,1,4048.1736375054,1400.0,4010.5815534302274,0,7,2,3,60.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.3814908086562658,4010.5815534302274,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +13361,2,49.0,0.0,2,111,600.0,900.0,0.0,43,38,0.0,0.0,1023.1203260232367,1500.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,1,5.0,2,,2,113373,1,1,0,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,1596.04591294763,600.0,93232.98315068238,1,1,0,1,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016088726857272306,44396.65864318208,10,5,10,10_0,10_3,10_0_1 +13362,2,74.0,0.0,5,112,400.0,0.0,0.0,0,75,0.0,0.0,682.0802173488245,400.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,2,,3,113374,1,3,0,1,2,360.0,0.0,541.0,11,0.0,1.0,1.0,1.0,1.0,1,1,938.141080953721,400.0,13380.780114094461,0,5,2,3,42.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.029893623285735447,13380.780114094461,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +13363,2,47.0,0.0,7,111,710.0,0.0,0.0,77,52,0.0,0.0,1210.6923857941633,710.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,30.0,2,,5,113375,2,1,0,0,1,,0.0,867.0,42,1.0,2.0,3.0,3.0,2.0,3,3,709.438267838236,710.0,43525.79033130601,5,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01631216790311401,21762.895165653004,6,3,6,6_0,6_4,6_0_0 +13364,0,54.0,0.0,1,112,840.0,0.0,0.0,0,62,1265.6194212439218,0.0,1432.3684564325313,2080.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,113376,2,2,2,0,1,,420.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,915.343456580536,840.0,26129.158221849793,0,1,5,0,80.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07960455451108474,26129.158221849793,7,4,7,7_1,7_0,7_1_0 +13365,2,51.0,0.0,7,111,1200.0,0.0,0.0,85,85,0.0,331.081819252556,2046.2406520464733,1515.0,90.06329965077386,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,113377,2,1,3,0,1,,350.0,,41,1.0,0.0,6.0,4.0,2.5,4,4,366.479221576156,1200.0,9695.720156974374,5,5,0,1,115.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15625450977050143,3878.2880627897493,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +13366,1,33.0,400.0,6,111,800.0,0.0,0.0,0,35,0.0,0.0,1364.160434697649,800.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,4,113378,1,3,0,0,1,,0.0,503.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1609.53382539379,800.0,7430.733562064475,0,1,2,3,67.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0.10766097227387825,4644.208476290297,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +13367,0,93.0,0.0,2,112,0.0,0.0,0.0,77,78,2636.7071275915036,0.0,0.0,3100.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113379,2,1,3,0,1,,300.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1064.29459999037,0.0,22709.852753457155,5,5,0,1,100.0,9,0,4,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1365046279099314,15139.901835638104,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +13368,2,66.0,0.0,2,111,384.0,58.0,0.0,0,46,0.0,0.0,654.7970086548714,442.0,0.0,110.11323478050777,31,0,0,0,0,0,0,0,0,0,,2,,2,113380,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1019.7171010753,384.0,20142.258364591926,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02194391472889613,20142.258364591926,5,3,5,5_0,5_4,5_0_1 +13369,2,27.0,0.0,8,112,290.0,600.0,0.0,0,56,0.0,0.0,494.50815757789775,890.0,0.0,1139.1024287638734,42,2,2,2,1,2,2,2,2,2,7.0,1,2003.0,6,113381,2,3,1,0,1,,250.0,404.0,12,1.0,0.0,3.0,1.0,1.0,1,1,745.984829423664,290.0,14283.738789604062,0,1,2,3,75.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.06230861633004354,14283.738789604062,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +13370,1,29.0,101.0,1,112,585.0,0.0,0.0,46,48,1898.4291318658827,0.0,997.5423178726558,2457.0,99.7624242285495,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,1,113382,2,2,1,0,1,,216.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,850.979591427504,585.0,40279.51501149711,1,1,1,2,146.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.06099874835381436,16783.131254790464,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +13371,2,72.0,0.0,2,111,406.0,0.0,0.0,0,77,0.0,0.0,692.3114206090569,406.0,0.0,0.0,70,2,2,1,1,1,2,2,2,0,,2,,2,113383,2,1,0,1,1,,160.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,372.780558278427,406.0,77051.30281313903,0,5,0,1,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005269216550232913,51367.53520875936,10,5,10,10_0,10_2,10_0_1 +13372,0,40.0,0.0,6,111,840.0,,,85,63,0.0,0.0,,978.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,113384,1,3,0,0,2,,200.0,,42,2.0,5.0,2.0,3.0,2.0,3,3,76.98439971065795,840.0,15070.05785123967,6,1,5,0,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06489689752050615,7535.028925619835,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13373,2,61.0,0.0,6,111,652.0,0.0,0.0,0,45,0.0,860.8127300566456,1111.7907542785838,1392.0,124.70303028568689,0.0,30,0,0,0,0,0,0,0,0,2,45.0,1,,4,113385,1,1,2,0,1,,200.0,,22,2.0,0.0,6.0,2.0,1.5,2,2,595.223607967119,652.0,44515.49970139998,0,1,0,1,90.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031270007285939164,29676.99980093332,8,4,8,8_1,8_2,8_0_0 +13374,2,90.0,0.0,2,111,510.0,,,0,78,0.0,0.0,,762.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,113386,1,1,0,0,2,,540.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,78.23654355234346,510.0,18471.129519565904,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04125356812602265,12314.08634637727,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +13375,2,43.0,0.0,2,111,189.0,508.0,0.0,0,43,0.0,0.0,322.28290269731957,697.0,0.0,964.4400563534128,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,113387,2,2,0,0,1,,205.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1631.21743270404,189.0,25093.96470503702,0,1,2,3,50.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02777560294647636,25093.96470503702,7,4,7,7_0,7_2,7_0_1 +13376,2,36.0,0.0,9,111,680.0,0.0,0.0,34,34,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,113388,2,1,0,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,2610.39976543938,680.0,57120.31754396051,1,1,1,2,61.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011904695723665462,31733.509746644726,8,4,8,8_0,8_3,8_0_0 +13377,2,66.0,0.0,1,111,1547.0,0.0,0.0,0,74,0.0,0.0,2637.9452405965785,1547.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,113389,2,1,0,0,1,,0.0,,21,0.0,0.0,3.0,2.0,1.5,2,2,763.077558116346,1547.0,51109.13668248656,0,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030268560582634663,34072.75778832437,9,5,9,9_0,9_4,9_1_0 +13378,1,42.0,38.0,8,111,610.0,1026.0,0.0,56,64,0.0,0.0,1040.1723314569574,1636.0,0.0,1947.8651531862236,71,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,113390,1,1,3,0,1,,756.0,417.0,43,2.0,0.0,4.0,5.0,3.0,5,3,412.279029477991,610.0,37361.08564153359,1,1,2,3,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04378887743511636,12453.695213844529,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +13379,2,50.0,0.0,2,112,1200.0,440.0,0.0,37,22,0.0,0.0,2046.2406520464733,1640.0,0.0,835.3417810935072,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,113391,2,2,4,0,2,,180.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,3414.8557581229,1200.0,195111.78211122466,1,1,0,1,150.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.008405438063525594,78044.71284448987,10,5,10,10_1,10_1,10_0_1 +13380,2,55.0,0.0,6,111,450.0,,,68,47,0.0,0.0,,588.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,113392,1,2,0,0,2,,500.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,100.14922114187317,450.0,59722.196558531985,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009845585626170302,39814.79770568799,9,5,9,9_1,9_2,9_0_0 +13381,1,22.0,406.0,1,112,1300.0,0.0,0.0,0,62,0.0,0.0,2216.7607063836795,1360.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,113393,2,1,0,0,1,,0.0,530.0,22,3.0,1.0,4.0,4.0,2.3,3,3,173.453652094287,1300.0,11981.278686771471,0,1,2,3,80.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11351042201376851,5209.2516029441185,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +13382,2,57.0,0.0,2,111,280.0,100.0,0.0,0,37,0.0,0.0,477.4561521441771,380.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,113394,2,1,0,1,2,,0.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,1809.56121949021,280.0,46973.35627967045,0,1,1,2,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008089692329786957,31315.570853113633,8,4,8,8_0,8_3,8_0_1 +13383,2,67.0,0.0,2,111,550.0,1600.0,0.0,52,78,0.0,0.0,937.8602988546337,2150.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,0,,1,,2,113395,2,1,2,0,1,,380.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,860.463625773998,550.0,59823.09370508627,1,5,0,1,96.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03593929813457981,39882.06247005751,9,5,9,9_1,9_2,9_0_1 +13384,2,50.0,0.0,5,111,1250.0,0.0,0.0,38,31,0.0,377.4332739479138,2131.5006792150766,1535.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,1,,3,113396,2,1,4,0,1,,320.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,808.128504410857,1250.0,88143.92675718918,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017414699531466047,58762.61783812612,10,5,10,10_1,10_4,10_0_0 +13385,1,24.0,325.0,2,111,300.0,0.0,0.0,0,81,0.0,0.0,511.56016301161833,300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,113397,2,2,0,1,1,273.0,0.0,303.0,32,1.0,0.0,3.0,2.0,1.3,1,1,447.909243752336,300.0,8300.502892128423,0,4,2,3,63.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036142388467149095,6385.0022247141715,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13386,2,33.0,0.0,9,111,1500.0,0.0,0.0,54,63,0.0,66.2163638505112,2557.8008150580918,1550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,113398,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,775.726348880179,1500.0,31908.308458862877,1,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048576689735787944,15194.432599458512,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +13387,0,63.0,0.0,2,111,500.0,,,0,63,0.0,0.0,,544.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,0,,1,,2,113399,1,1,0,0,2,,100.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,109.80395039069583,500.0,11429.525192972484,0,4,5,0,170.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04759602790275854,11429.525192972484,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +13388,2,56.0,0.0,7,112,868.0,0.0,0.0,75,42,0.0,874.0560028267478,1480.114071646949,1768.0,332.541414095165,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,,5,113400,2,1,1,0,1,,463.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,1344.22207407177,868.0,59451.9075577148,5,1,0,1,100.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029738322496778737,29725.9537788574,8,4,8,8_1,8_0,8_0_0 +13389,1,67.0,253.0,7,112,265.0,,,0,78,0.0,0.0,,331.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,2,,5,113401,2,1,0,0,2,,375.0,425.0,11,0.0,5.0,4.0,1.0,1.0,1,1,118.03174767591686,265.0,7106.363789800757,0,5,2,3,70.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.046577970082964236,7106.363789800757,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13390,2,61.0,0.0,5,111,1800.0,1800.0,0.0,77,21,0.0,0.0,3069.36097806971,3600.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,113402,2,1,0,0,1,,440.0,,42,1.0,0.0,4.0,4.0,2.5,4,4,1562.88579247404,1800.0,31914.98241932958,6,1,1,2,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.11279968613799485,12765.992967731832,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +13391,2,35.0,0.0,1,111,1150.0,0.0,0.0,0,42,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,113403,2,1,1,0,1,,190.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,996.092511445191,1150.0,20811.368315451084,0,1,1,2,55.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05525825993604659,20811.368315451084,5,3,5,5_1,5_2,5_1_0 +13392,1,85.0,115.0,2,111,150.0,35.0,0.0,0,77,0.0,0.0,255.78008150580916,185.0,0.0,66.44764167789262,70,2,2,2,2,1,2,2,1,0,,2,,2,113404,2,2,0,1,2,855.0,0.0,303.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1309.82939486963,150.0,18333.945509748053,0,5,2,3,50.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.010090572152166405,18333.945509748053,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +13393,2,51.0,0.0,7,111,2200.0,0.0,0.0,85,21,0.0,264.8654554020448,3751.441195418535,2520.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,113405,2,1,1,0,1,,1000.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,1321.3707795409,2200.0,63230.27715493826,6,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03985432475371,31615.13857746913,8,4,8,8_1,8_3,8_0_0 +13394,1,43.0,120.0,2,111,920.0,0.0,0.0,0,42,0.0,0.0,1568.7844999022964,920.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,2,,2,113406,2,2,0,0,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,1092.07495498049,920.0,21574.011072011228,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04264390135562461,13483.756920007017,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +13395,1,67.0,179.0,9,111,540.0,660.0,0.0,86,78,0.0,0.0,920.8082934209131,1200.0,0.0,1253.0126716402608,71,0,0,0,0,0,0,0,0,0,,8,2005.0,6,113407,2,1,0,0,1,,480.0,214.0,41,2.0,3.0,3.0,4.0,2.5,4,4,449.702326043855,540.0,9410.323825272093,6,5,2,3,61.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.12751952241827372,3764.129530108837,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13396,2,37.0,0.0,8,111,1265.0,0.0,0.0,0,37,0.0,0.0,2157.0786873656575,1265.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,113408,2,1,1,0,1,,174.0,1095.0,32,1.0,0.0,4.0,3.0,1.6,1,1,621.190062382869,1265.0,58566.878978543114,0,1,2,3,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02159923871756001,36604.299361589445,9,5,9,9_1,9_4,9_0_0 +13397,2,33.0,0.0,9,120,1700.0,0.0,0.0,54,46,0.0,595.9472746546007,2898.840923732504,2150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,113409,2,1,1,0,1,,500.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1154.90568999803,1700.0,32946.30284761744,4,1,1,2,165.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06525770159838984,15688.715641722589,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +13398,1,39.0,300.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,604.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113410,2,2,0,0,1,,119.0,370.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1316.39656900829,0.0,5916.528187062814,0,4,2,3,30.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10208689638641749,5916.528187062814,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13399,2,44.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1434.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,2011.0,6,113411,2,2,0,0,1,,511.0,790.0,32,1.0,0.0,3.0,3.0,1.8,2,1,2502.26275702148,0.0,24176.893963854924,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0593128299335666,13431.60775769718,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +13400,1,64.0,280.0,2,300,2400.0,0.0,0.0,77,78,0.0,0.0,4092.4813040929466,2550.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113412,2,2,4,0,1,,560.0,515.0,41,1.0,3.0,4.0,3.0,2.0,3,3,1042.45675085692,2400.0,22587.71796483396,6,5,2,3,87.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11289321054787417,11293.85898241698,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +13401,1,59.0,250.0,6,111,720.0,,,85,68,0.0,0.0,,984.0,365.79555550468154,,60,0,0,0,0,0,0,0,0,0,,2,,4,113413,2,1,0,0,2,,600.0,367.0,42,1.0,0.0,4.0,7.0,3.6,5,4,158.89423236250315,720.0,28315.434852967348,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03475136458647325,7865.398570268708,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13402,2,45.0,0.0,5,111,880.0,0.0,0.0,45,34,0.0,238.3789098618403,1500.5764781674138,1060.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,113414,2,1,0,0,1,,0.0,750.0,43,2.0,0.0,4.0,3.0,2.0,3,3,1933.81978331289,880.0,71631.86979297346,1,1,2,3,81.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014797882605375992,35815.93489648673,9,5,9,9_0,9_3,9_0_0 +13404,2,60.0,0.0,8,111,1500.0,,,86,86,0.0,0.0,,1592.0,127.47420873647992,,44,0,0,0,0,0,0,0,0,0,,1,2000.0,6,113416,2,1,0,0,2,,200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,106.9601690242614,1500.0,52558.07174468855,5,5,1,2,204.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030290304555567825,35038.71449645903,9,5,9,9_1,9_2,9_0_0 +13405,2,85.0,0.0,9,221,0.0,,,0,71,0.0,0.0,,417.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,113417,2,1,0,0,2,,105.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,114.89219104387226,0.0,15809.468008860855,0,5,0,1,42.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026376599121885745,15809.468008860855,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +13406,1,44.0,67.0,9,112,1100.0,0.0,0.0,56,62,0.0,874.0560028267478,1875.7205977092674,1835.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,113418,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,755.342441784885,1100.0,48592.21233162368,1,1,1,2,110.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03776325283312501,18689.31243523988,5,3,5,5_1,5_0,5_0_0 +13407,2,60.0,0.0,6,111,800.0,800.0,0.0,78,54,0.0,1324.327277010224,1364.160434697649,2600.0,0.0,1518.8032383518312,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,113419,2,1,2,0,1,,1200.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,232.0863482647,800.0,27019.23238588233,5,1,0,1,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09622775224948699,18012.82159058822,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +13408,0,81.0,0.0,5,111,318.0,1200.0,0.0,0,86,0.0,0.0,542.2537727923154,1518.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,3,113420,2,1,1,0,1,,140.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1088.90838872229,318.0,12917.0,0,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11751954788263529,12917.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +13409,2,66.0,0.0,7,300,440.0,,,0,75,0.0,0.0,,486.0,63.73710436823996,,41,0,0,0,0,0,0,0,0,0,,1,,5,113421,2,1,0,0,1,,329.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,88.14330007594224,440.0,39750.867119743794,0,5,0,1,106.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012226148389065189,39750.867119743794,9,5,9,9_1,9_1,9_0_0 +13410,2,58.0,0.0,2,111,774.0,1984.0,0.0,55,46,0.0,0.0,1319.8252205699753,2758.0,0.0,3766.6320311125414,60,2,2,2,2,1,2,2,2,2,75.0,2,,2,113422,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,4.0,3.0,2.0,3,3,720.821337223665,774.0,35277.51895885296,1,1,2,3,88.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.07818010113514161,17638.75947942648,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +13411,2,56.0,0.0,7,111,444.0,,,55,46,0.0,0.0,,628.0,254.94841747295985,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,113423,1,1,0,0,2,,123.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,85.78752994705232,444.0,25324.34882329705,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024798268432563744,12662.174411648524,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +13412,2,64.0,0.0,6,400,1310.0,0.0,0.0,77,78,0.0,0.0,2233.8127118174,1434.0,171.8130639491686,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,113424,2,1,2,0,1,,195.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,931.250128716324,1310.0,35677.115864902284,5,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040193831963045865,23784.743909934856,6,3,6,6_1,6_0,6_0_0 +13413,2,65.0,0.0,1,111,403.0,2289.0,0.0,74,75,0.0,92.70290939071567,687.1958189789407,2762.0,0.0,4345.675765734177,50,0,0,0,0,0,0,0,0,0,,1,,1,113425,2,1,1,0,1,,297.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,624.184014827757,403.0,55095.26447816593,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050131350237815286,36730.17631877729,9,5,9,9_1,9_4,9_1_0 +13414,2,57.0,0.0,6,111,490.0,1400.0,0.0,56,38,0.0,198.6490915515336,835.54826625231,2040.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,2,180.0,1,,4,113426,2,1,2,0,1,,324.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,553.722173363637,490.0,63341.655758130524,1,1,0,1,110.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0322062941927145,42227.77050542035,9,5,9,9_1,9_2,9_0_0 +13415,2,50.0,0.0,9,300,0.0,,,68,52,0.0,0.0,,703.0,0.0,,60,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,113427,2,1,0,0,1,,561.0,,43,2.0,0.0,4.0,5.0,2.8,4,4,89.19557714432115,0.0,36296.23912933617,1,1,1,2,110.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019368397852321986,12962.94254619149,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +13416,2,64.0,0.0,8,111,1300.0,1500.0,0.0,0,43,0.0,397.2981831030672,2216.7607063836795,3100.0,0.0,2847.7560719096837,33,0,0,0,0,0,0,0,0,3,60.0,1,2001.0,6,113428,2,1,1,0,1,,600.0,,32,1.0,0.0,5.0,3.0,1.8,2,1,538.428640089357,1300.0,54121.35615584033,0,1,1,2,109.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05727868294862514,30067.42008657796,8,4,8,8_1,8_4,8_0_0 +13417,1,21.0,270.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,158.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,113429,1,1,0,1,1,31.0,0.0,251.0,12,1.0,0.0,2.0,1.0,1.0,1,1,311.352130325695,0.0,16093.05860043902,0,1,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009817897512390202,16093.05860043902,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +13418,2,88.0,0.0,1,112,382.0,,,0,77,0.0,0.0,,658.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,1,113430,1,1,0,0,2,,245.0,,11,0.0,10.0,7.0,1.0,1.0,1,1,106.0447039802746,382.0,9430.627071424715,0,5,0,1,104.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06977266676081105,9430.627071424715,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +13419,2,39.0,0.0,7,111,236.0,620.0,0.0,0,52,0.0,0.0,402.42732823580644,856.0,0.0,1177.072509722669,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,113431,1,3,0,1,1,,0.0,401.0,12,1.0,0.0,2.0,1.0,1.0,1,1,720.474691731409,236.0,21249.26510353736,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04028374608858835,21249.26510353736,5,3,5,5_0,5_4,5_0_0 +13420,2,49.0,0.0,7,111,570.0,594.0,0.0,0,52,0.0,0.0,971.9643097220749,1164.0,0.0,1127.7114044762347,50,0,0,0,0,0,0,0,0,3,90.0,2,,5,113432,2,1,0,1,1,,0.0,500.0,32,3.0,0.0,3.0,3.0,2.0,3,3,157.167096816698,570.0,35780.67090983567,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03253153086293948,17890.335454917837,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +13421,1,71.0,200.0,2,111,406.0,922.0,0.0,0,86,0.0,0.0,692.3114206090569,1328.0,0.0,1750.4207322004854,71,0,0,0,0,0,0,0,0,0,,2,,2,113433,2,2,0,0,1,,0.0,271.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1280.00801066556,406.0,5044.798067361944,0,5,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2632414582838686,5044.798067361944,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +13422,0,60.0,0.0,2,112,0.0,0.0,0.0,53,52,0.0,0.0,0.0,232.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,2,113434,2,1,0,1,1,,0.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,267.974704935035,0.0,57882.302134386206,1,1,5,0,76.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00400813359947851,28941.151067193103,8,4,8,8_0,8_2,8_0_1 +13423,2,70.0,0.0,2,111,250.0,350.0,0.0,0,78,0.0,0.0,426.3001358430153,600.0,0.0,664.4764167789261,71,0,0,0,0,0,0,0,0,0,,2,,2,113435,2,1,0,1,1,550.0,180.0,324.0,11,0.0,2.0,4.0,1.0,1.0,1,1,313.048021779266,250.0,24529.296351878304,0,5,2,3,73.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02446054674348845,24529.296351878304,7,4,7,7_0,7_3,7_0_1 +13424,2,39.0,0.0,2,112,2010.0,0.0,0.0,55,63,0.0,0.0,3427.453092177843,2010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113436,2,1,1,0,1,,651.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,543.158248199977,2010.0,48819.7692678494,1,1,1,2,110.0,8,1,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04117184554830945,23247.50917516638,6,3,6,6_1,6_1,6_0_1 +13425,2,25.0,0.0,2,111,210.0,700.0,0.0,84,46,0.0,0.0,358.0921141081328,910.0,0.0,1328.9528335578523,10,0,0,0,0,0,0,0,0,3,10.0,2,,2,113437,2,1,0,0,1,,0.0,710.0,42,2.0,0.0,2.0,3.0,2.0,3,3,1373.97218379911,210.0,30326.949977419863,3,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030006314537978487,15163.474988709931,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +13426,2,21.0,0.0,7,221,540.0,,,0,52,0.0,0.0,,712.0,238.3213467682016,,71,0,0,0,0,0,0,0,0,0,,1,,5,113438,2,2,0,0,2,,402.0,,22,2.0,6.0,4.0,3.0,2.0,3,3,107.2917832769285,540.0,24860.49735876847,0,1,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028639813183338133,12430.248679384234,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +13427,2,68.0,0.0,1,221,1580.0,0.0,0.0,0,75,0.0,0.0,2694.216858527857,1615.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113439,2,1,1,0,1,,278.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2283.15977589338,1580.0,19768.60151642876,0,5,0,1,120.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08169520735484749,19768.60151642876,5,3,5,5_1,5_1,5_1_0 +13428,2,34.0,0.0,8,111,560.0,1290.0,0.0,47,47,0.0,0.0,954.9123042883542,1850.0,0.0,2449.070221842328,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,113440,2,1,1,0,1,,420.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,445.115792738101,560.0,63870.33785543744,1,1,1,2,220.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028964932112731965,30414.44659782735,8,4,8,8_1,8_2,8_0_0 +13429,2,82.0,0.0,2,211,0.0,0.0,0.0,0,86,0.0,0.0,0.0,157.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113441,1,2,0,1,2,,0.0,468.0,11,0.0,3.0,1.0,1.0,1.0,1,1,305.599522161091,0.0,14900.148961244418,0,6,2,3,36.0,4,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01053680741101046,14900.148961244418,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +13430,2,35.0,0.0,6,111,189.0,0.0,0.0,55,46,0.0,317.83854648245375,322.28290269731957,487.0,80.36417507299822,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,4,113442,2,1,1,0,1,,502.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,525.856013554263,189.0,73847.06798331506,1,1,1,2,116.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006594710031142093,35165.27046824527,9,5,9,9_1,9_4,9_0_0 +13431,1,68.0,221.0,6,111,930.0,0.0,0.0,0,77,0.0,0.0,1585.836505336017,1746.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,113443,2,1,0,0,1,,0.0,251.0,11,0.0,2.0,1.0,1.0,1.0,1,1,581.210154550969,930.0,10199.27081432996,0,5,2,3,29.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17118870866208127,10199.27081432996,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +13432,1,49.0,296.0,2,111,510.0,1300.0,0.0,0,55,0.0,0.0,869.6522771197511,1810.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,113444,2,3,3,0,1,,410.0,594.0,32,1.0,0.0,6.0,3.0,1.8,2,2,1350.24277417297,510.0,16250.10037991742,0,1,2,3,110.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11138392734095826,9027.833544398567,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +13434,2,46.0,0.0,2,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1080.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,2,113446,2,3,3,0,1,,1536.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,590.934344362853,0.0,55873.19157625513,1,1,1,2,62.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019329484669334266,26606.28170297863,7,4,7,7_1,7_4,7_0_1 +13435,2,67.0,0.0,2,112,1420.0,0.0,0.0,77,75,0.0,231.75727347678918,2421.3847715883267,1595.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,113447,2,2,2,0,1,,476.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1732.99811680422,1420.0,32840.49070103196,5,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04856809280105793,21893.66046735464,6,3,6,6_1,6_0,6_0_1 +13436,2,59.0,0.0,8,111,2325.0,0.0,0.0,75,38,0.0,0.0,3964.591263340042,2325.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,1999.0,6,113448,2,1,1,0,1,,230.0,,42,1.0,2.0,10.0,3.0,2.0,3,3,1429.95785951959,2325.0,93908.83011009496,6,1,0,1,200.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024758055203906414,46954.41505504748,10,5,10,10_1,10_3,10_0_0 +13437,2,32.0,0.0,9,111,720.0,740.0,0.0,52,62,0.0,0.0,1227.744391227884,1460.0,0.0,1404.892995475444,43,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,113449,2,1,1,0,2,,457.0,436.0,43,2.0,0.0,4.0,4.0,2.1,2,2,985.984215231428,720.0,50151.01369989381,1,1,2,3,82.0,5,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02911207356119885,23881.435095187528,6,3,6,6_1,6_2,6_0_0 +13438,2,36.0,0.0,9,112,893.0,0.0,0.0,85,47,0.0,794.5963662061343,1522.7440852312507,1553.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,113450,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,297.856624446601,893.0,40614.78533276378,6,1,1,2,80.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03823730661816896,16922.82722198491,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13439,1,56.0,270.0,2,111,0.0,0.0,520.0,0,85,0.0,0.0,327.7655110156668,520.0,0.0,622.3007167336341,71,2,2,1,1,2,2,2,2,0,,2,,2,113451,1,1,0,1,2,408.0,300.0,318.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1997.95034732287,0.0,11126.246102377707,0,7,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.046736338133746176,11126.246102377707,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +13440,0,49.0,0.0,1,400,900.0,0.0,0.0,0,63,0.0,0.0,1534.680489034855,901.0,1.385589225396521,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,113452,2,2,1,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1290.77153240314,900.0,26024.560472209247,0,1,5,0,90.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03462114186182501,26024.560472209247,7,4,7,7_1,7_0,7_1_0 +13441,2,27.0,0.0,2,112,363.0,0.0,0.0,0,69,843.7462808292812,0.0,618.9877972440582,1223.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,12.0,1,,2,113453,2,2,2,0,1,,98.0,460.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1142.02405610795,363.0,22443.10492744785,0,1,2,3,90.0,9,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.054493351252137785,22443.10492744785,6,3,6,6_1,6_0,6_0_1 +13442,2,87.0,0.0,7,111,1000.0,0.0,0.0,0,74,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,113454,2,1,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1027.67173289704,1000.0,66835.78250616467,0,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01496204521743669,66835.78250616467,10,5,10,10_0,10_4,10_0_0 +13443,2,47.0,0.0,6,112,1400.0,0.0,0.0,67,54,0.0,145.67600047112464,2387.2807607208856,1540.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,113455,1,1,2,0,1,,650.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1087.45595165838,1400.0,48636.94952553402,4,1,0,1,96.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03166316997721068,21146.499793710445,5,3,5,5_1,5_0,5_0_0 +13444,2,84.0,0.0,1,120,400.0,0.0,0.0,0,78,0.0,0.0,682.0802173488245,460.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113456,2,2,2,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1360.46365438349,400.0,18044.69287083345,0,5,0,1,70.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025492259873456827,18044.69287083345,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +13445,2,57.0,0.0,1,111,750.0,1200.0,0.0,48,42,0.0,13.243272770102239,1278.9004075290459,1960.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,113457,2,1,1,0,1,,360.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,377.652390249389,750.0,79775.17331166491,1,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024569047219022516,53183.448874443275,10,5,10,10_1,10_3,10_1_0 +13446,2,50.0,0.0,2,111,350.0,480.0,0.0,0,48,0.0,0.0,596.8201901802214,830.0,0.0,911.2819430110987,50,0,0,0,0,0,0,0,0,0,,1,,2,113458,2,1,1,0,1,,68.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1474.62167137051,350.0,25393.18181313256,0,1,0,1,154.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03268593932449812,25393.18181313256,7,4,7,7_1,7_3,7_0_1 +13447,2,66.0,0.0,1,111,828.0,0.0,0.0,0,77,0.0,0.0,1411.9060499120667,828.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,113459,2,1,0,0,2,,0.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,595.304465379171,828.0,17192.595335236027,0,5,0,1,40.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.048160268060461094,17192.595335236027,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +13448,2,75.0,0.0,1,211,264.0,970.0,0.0,86,78,0.0,0.0,450.1729434502241,1234.0,0.0,1841.5489265015954,71,0,0,0,0,0,0,0,0,0,,2,,1,113460,2,1,0,0,1,,300.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,2441.92240858096,264.0,19428.784703239053,6,5,0,1,80.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06351400866541461,12952.523135492702,2,1,2_0,2_0_0,2_1_0,2_1_0_0 +13449,2,66.0,0.0,7,111,1800.0,0.0,0.0,75,74,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,113461,2,1,2,0,1,,600.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,575.961476938637,1800.0,92860.54530431214,5,5,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01938390512462793,61907.03020287476,10,5,10,10_1,10_4,10_0_0 +13450,0,80.0,0.0,5,400,520.0,0.0,0.0,0,71,0.0,0.0,886.7042825534718,584.0,88.67771042537734,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,113462,1,1,2,0,1,,252.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,884.586786008709,520.0,18416.80020650791,0,5,0,1,96.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03171017730830533,18416.80020650791,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13451,2,57.0,0.0,9,111,350.0,450.0,0.0,0,52,0.0,0.0,596.8201901802214,800.0,0.0,854.326821572905,50,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,113463,2,1,0,0,1,,48.0,367.0,22,2.0,1.0,3.0,2.0,1.5,2,2,1417.49639425936,350.0,36090.49129043949,0,1,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02216650345826473,24060.32752695966,6,3,6,6_0,6_3,6_0_0 +13452,2,62.0,0.0,8,111,0.0,,,75,34,0.0,0.0,,1307.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113464,2,1,0,0,2,,363.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,87.91435662885756,0.0,99970.4085868474,5,1,1,2,141.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013073868742514625,66646.93905789827,10,5,10,10_1,10_3,10_0_0 +13453,2,74.0,0.0,8,111,660.0,,,0,77,0.0,0.0,,744.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,113465,2,1,0,0,2,,465.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,109.1712533917608,660.0,14517.479805652272,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05124856448640136,14517.479805652272,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +13454,2,74.0,0.0,7,400,870.0,0.0,0.0,0,71,3608.070033396214,0.0,1483.5244727336933,4351.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,113466,1,1,1,0,1,,159.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1125.42018266378,870.0,27216.280579173486,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1598675464614913,27216.280579173486,7,4,7,7_1,7_0,7_0_0 +13455,2,25.0,0.0,9,111,672.0,0.0,0.0,0,31,0.0,0.0,1145.894765146025,672.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2005.0,6,113467,2,1,0,0,1,,0.0,690.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1068.48063289093,672.0,27655.81093355419,0,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02429869084708983,27655.81093355419,7,4,7,7_0,7_4,7_0_0 +13456,2,41.0,0.0,9,211,800.0,0.0,0.0,0,85,0.0,0.0,1364.160434697649,800.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,113468,2,2,1,0,1,,300.0,,31,0.0,0.0,5.0,3.0,1.6,1,1,1072.35901691363,800.0,8737.346910165343,0,6,0,1,90.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09156097477018468,5460.841818853339,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +13457,2,67.0,0.0,2,111,350.0,1500.0,0.0,74,74,0.0,0.0,596.8201901802214,1850.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,2,113469,2,2,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1201.6400797343,350.0,66331.88958194124,5,5,0,1,124.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027890054265899578,44221.25972129416,10,5,10,10_1,10_2,10_0_1 +13458,1,49.0,62.0,5,211,786.0,0.0,0.0,85,65,0.0,840.9478209014922,1340.28762709044,1595.0,241.09252521899464,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,113470,2,1,0,1,1,,564.0,309.0,42,1.0,3.0,5.0,4.0,2.1,2,2,282.393213440482,786.0,28667.119073806894,6,1,2,3,125.0,2,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05563865681422272,13651.009082765187,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +13459,2,79.0,0.0,2,111,500.0,540.0,0.0,78,78,0.0,0.0,852.6002716860306,1040.0,0.0,1025.192185887486,71,0,0,0,0,0,0,0,0,0,,2,,2,113471,2,1,0,0,1,,0.0,314.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1862.38902237,500.0,26770.48119358471,5,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038848760038322584,17846.987462389807,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +13460,2,76.0,0.0,1,300,1110.0,0.0,0.0,74,72,0.0,33.1081819252556,1892.772603142988,1617.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113472,2,1,3,0,1,,443.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1066.46399673647,1110.0,75589.89109860823,5,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021391749300056502,50393.26073240549,10,5,10,10_1,10_0,10_1_0 +13462,2,78.0,0.0,2,111,0.0,1.0,0.0,0,78,0.0,0.0,0.0,383.0,0.0,1.898504047939789,71,2,1,2,2,2,2,2,1,0,,2,,2,113474,2,2,0,1,1,,0.0,315.0,11,0.0,0.0,3.0,1.0,1.0,1,1,541.760791895877,0.0,9473.964398610042,0,5,2,3,70.0,7,5,2,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04042658214508293,9473.964398610042,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +13463,2,37.0,0.0,7,111,1200.0,0.0,0.0,31,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,5,113475,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,714.816623427617,1200.0,85672.37559063027,1,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014006848668863578,47595.76421701682,10,5,10,10_0,10_4,10_0_0 +13464,1,81.0,95.0,2,221,180.0,0.0,0.0,0,86,0.0,0.0,306.936097806971,240.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,8,,2,113476,2,2,0,1,1,,223.0,324.0,11,0.0,6.0,2.0,1.0,1.0,1,1,3717.7236597397,180.0,11865.0,0,5,2,3,35.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.020227560050568902,11865.0,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +13465,2,57.0,0.0,5,111,169.0,906.0,0.0,0,54,0.0,0.0,288.17889182987835,1075.0,0.0,1720.044667433449,31,0,0,0,0,0,0,0,0,2,5.0,2,,3,113477,2,3,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1608.39746267759,169.0,11978.761984618634,0,1,1,2,62.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08974216211828544,11978.761984618634,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +13466,2,76.0,0.0,2,111,268.0,0.0,0.0,0,77,0.0,0.0,456.9937456237124,268.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113478,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,865.26440846214,268.0,12715.97472280377,0,5,0,1,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02107585189827337,12715.97472280377,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +13467,2,55.0,0.0,1,111,800.0,1300.0,0.0,85,62,0.0,0.0,1364.160434697649,2100.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,113479,2,1,2,0,1,,600.0,,42,1.0,0.0,4.0,3.0,2.0,3,2,1508.0336766975,800.0,28216.63828665683,7,1,0,1,70.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07442417408713972,14108.319143328416,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +13468,2,59.0,0.0,1,111,270.0,980.0,0.0,78,54,0.0,0.0,460.40414671045653,1300.0,69.27946126982604,1860.5339669809932,50,0,0,0,0,0,0,0,0,0,,2,,1,113480,2,2,0,0,1,,0.0,400.0,42,1.0,2.0,3.0,2.0,1.5,2,2,2573.75072337297,270.0,33749.6134679629,5,4,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03851895966850215,22499.742311975268,6,3,6,6_0,6_2,6_1_0 +13469,2,71.0,0.0,1,400,400.0,0.0,0.0,35,77,0.0,1191.8945493092015,682.0802173488245,1460.0,221.69427606344334,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113481,2,2,2,0,1,,300.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1828.16491591555,400.0,33869.62656496382,5,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04310646877666747,22579.751043309214,6,3,6,6_1,6_0,6_1_0 +13471,1,30.0,352.0,7,111,168.0,,,0,55,0.0,0.0,,168.0,0.0,,50,2,2,2,2,1,2,2,2,2,1.0,2,,5,113483,2,1,0,0,1,,360.0,408.0,32,1.0,0.0,3.0,2.0,1.3,1,1,94.40365587054822,168.0,21718.72259729813,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.007735261558195862,16706.70969022933,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +13472,2,23.0,0.0,2,111,458.0,211.0,0.0,56,55,0.0,0.0,780.981848864404,669.0,0.0,400.58435411529547,43,2,2,2,2,1,2,2,2,3,20.0,2,,2,113484,2,1,0,1,1,,540.0,456.0,43,2.0,0.0,3.0,2.0,1.5,2,2,190.980842556935,458.0,22868.29768788027,4,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.029254473119551715,15245.531791920179,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +13473,0,56.0,0.0,2,111,0.0,0.0,0.0,62,55,0.0,0.0,0.0,1276.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,113485,2,1,2,0,1,,338.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1280.58244939314,0.0,58518.02863986256,1,1,5,0,77.0,6,4,7,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021805245830355726,39012.01909324171,9,5,9,9_1,9_2,9_0_1 +13474,2,39.0,0.0,7,111,215.0,0.0,0.0,0,55,0.0,0.0,366.61811682499314,215.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,113486,2,1,0,1,1,66.0,150.0,326.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1325.2008587048,215.0,17972.96988219829,0,1,2,3,45.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011962408072187965,17972.96988219829,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +13475,2,68.0,0.0,6,300,1102.0,0.0,0.0,75,75,0.0,0.0,1879.1309987960115,1432.0,457.2444443808519,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,113487,2,1,2,0,1,,162.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,865.009394534303,1102.0,55326.13469105557,5,5,0,1,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025882885330709857,27663.067345527787,7,4,7,7_1,7_0,7_0_0 +13476,1,31.0,250.0,2,221,0.0,0.0,0.0,0,69,0.0,0.0,0.0,404.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,113488,1,1,2,0,2,,201.0,340.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1534.8287524774,0.0,10790.713113651016,0,1,2,3,20.0,1,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.03743960160417122,10790.713113651016,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +13477,2,25.0,0.0,1,111,0.0,0.0,456.0,0,43,0.0,0.0,287.42514042912313,456.0,0.0,545.7098592894945,20,2,2,2,1,2,2,2,2,3,20.0,2,,1,113489,1,2,0,1,2,630.0,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1566.26957115471,0.0,23581.205024576866,0,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.019337434177971246,23581.205024576866,6,3,6,6_0,6_4,6_1_0 +13478,2,71.0,0.0,6,111,1700.0,0.0,0.0,75,78,0.0,264.8654554020448,2898.840923732504,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,113490,2,1,2,0,1,,290.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1051.00504628642,1700.0,37854.60482521368,5,5,0,1,100.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05019204423802289,25236.40321680912,7,4,7,7_1,7_3,7_0_0 +13479,2,54.0,0.0,1,112,1000.0,0.0,0.0,77,45,2847.643697798824,0.0,1705.2005433720612,3760.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,113491,2,1,2,0,2,,480.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1244.28903733185,1000.0,64297.00766286552,5,1,0,1,176.0,4,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0584786156723678,42864.67177524368,9,5,9,9_1,9_0,9_1_0 +13480,2,69.0,0.0,1,300,710.0,2600.0,0.0,75,74,0.0,0.0,1210.6923857941633,3310.0,0.0,4936.110524643452,42,0,0,0,0,0,0,0,0,0,,1,,1,113492,1,1,2,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2114.70993901258,710.0,70046.04730568659,5,5,0,1,200.0,0,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04725462930912994,46697.36487045773,10,5,10,10_1,10_1,10_1_0 +13481,0,47.0,0.0,1,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,60.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,1,1.0,8,,1,113493,2,1,0,1,1,,0.0,,22,2.0,1.0,6.0,2.0,1.5,2,2,1485.70334875235,0.0,37558.83514766051,0,1,5,0,170.0,10,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0015974936326995572,25039.223431773673,7,4,7,7_0,7_0,7_1_0 +13482,1,31.0,546.0,9,111,360.0,0.0,0.0,0,45,0.0,0.0,613.872195613942,360.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,25.0,2,2009.0,6,113494,2,1,0,1,1,550.0,0.0,702.0,32,1.0,0.0,3.0,4.0,1.9,1,1,1165.22016607389,360.0,15033.840115751529,0,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023945977689546812,7912.547429342911,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +13483,1,51.0,253.0,7,111,500.0,,,0,69,0.0,0.0,,592.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,,5,113495,1,2,0,0,2,,130.0,374.0,12,1.0,0.0,2.0,1.0,1.0,1,1,90.06813218022374,500.0,7669.039950099854,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07719349538559803,7669.039950099854,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13484,2,62.0,0.0,5,120,448.0,0.0,0.0,55,78,275.272224120553,158.91927324122688,763.9298434306834,829.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,113496,2,1,2,0,1,,295.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1141.88508409494,448.0,41572.554531173686,1,5,0,1,98.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01994104065407778,27715.03635411579,7,4,7,7_1,7_0,7_0_0 +13485,2,86.0,0.0,9,111,780.0,,,0,77,0.0,0.0,,918.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,113497,2,1,0,0,2,,240.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,113.10979167358543,780.0,9447.12,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09717247161039554,9447.12,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +13486,2,31.0,0.0,5,112,1000.0,0.0,0.0,55,54,0.0,307.24392826637194,1705.2005433720612,1307.0,103.91919190473907,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,113498,2,1,2,0,1,,261.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,99.0737924111668,1000.0,46098.850019284444,1,1,1,2,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028352117231845157,25610.4722329358,7,4,7,7_1,7_0,7_0_0 +13487,1,19.0,445.0,2,111,600.0,0.0,0.0,0,55,0.0,0.0,1023.1203260232367,960.0,498.81212114274757,0.0,60,2,1,2,2,1,1,2,2,0,,2,,2,113499,1,2,0,1,1,1164.0,0.0,414.0,22,4.0,0.0,6.0,6.0,3.3,5,4,308.834612401036,600.0,26444.336197110522,0,4,2,3,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03630266960926384,8013.435211245614,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13488,2,55.0,0.0,7,111,900.0,0.0,0.0,0,54,0.0,0.0,1534.680489034855,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,25.0,2,,5,113500,2,2,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1312.45665829284,900.0,25419.966966177613,0,1,0,1,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03540523877145433,25419.966966177613,7,4,7,7_0,7_4,7_0_0 +13489,1,45.0,60.0,9,111,1000.0,,,0,55,0.0,0.0,,1090.0,124.70303028568689,,50,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,113501,2,1,0,0,2,,378.0,800.0,32,1.0,1.0,4.0,3.0,1.8,2,2,101.94846056438989,1000.0,30824.55063367273,0,1,2,3,103.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03536142385184634,17124.750352040406,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +13490,2,81.0,0.0,2,112,360.0,,,0,78,0.0,0.0,,600.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,113502,2,2,0,0,2,,400.0,,21,1.0,5.0,3.0,3.0,2.0,3,3,90.85057167698892,360.0,9424.127049289762,0,5,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06366637428187243,4712.063524644881,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +13491,2,50.0,0.0,6,111,1385.0,0.0,0.0,55,68,0.0,0.0,2361.7027525703047,1385.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,4,113503,2,1,0,0,1,,0.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,1311.60340000876,1385.0,53664.300229498804,1,1,1,2,104.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025808591448634552,26832.150114749402,7,4,7,7_0,7_3,7_0_0 +13492,2,30.0,0.0,6,111,420.0,,,0,46,0.0,0.0,,420.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,113504,1,2,0,0,2,,500.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,47.685210221573804,420.0,49953.70417331453,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008407784907057316,49953.70417331453,10,5,10,10_1,10_2,10_0_0 +13493,2,42.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,378.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113505,2,3,0,1,1,1250.0,0.0,,22,1.0,4.0,2.0,2.0,1.5,2,2,291.687790670969,0.0,10270.5267716267,0,1,3,4,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036804343964543344,6847.017847751134,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +13494,1,50.0,309.0,7,112,1140.0,0.0,0.0,85,62,0.0,0.0,1943.9286194441497,1230.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,113506,1,3,4,0,1,,400.0,373.0,42,1.0,0.0,4.0,4.0,2.5,4,2,668.307605092115,1140.0,16425.026917839376,6,4,2,3,78.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07488572202363246,6570.01076713575,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +13495,2,100.0,0.0,7,211,960.0,0.0,0.0,78,78,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,113507,2,1,0,0,1,,242.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1605.08830223629,960.0,29446.0,5,5,0,1,70.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03260205121238878,19630.666666666668,5,3,5,5_0,5_1,5_0_0 +13496,0,44.0,0.0,5,112,0.0,0.0,0.0,67,52,0.0,264.8654554020448,0.0,380.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,113508,2,1,2,0,2,,0.0,,43,3.0,0.0,3.0,5.0,3.0,5,3,969.867090732704,0.0,57380.0,1,1,5,0,50.0,10,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006622516556291391,19126.666666666668,5,3,5,5_1,5_0,5_0_0 +13497,2,65.0,0.0,6,111,484.0,421.0,0.0,77,77,0.0,264.8654554020448,825.3170629920776,1105.0,0.0,799.2702041826511,70,0,0,0,0,0,0,0,0,0,,2,,4,113509,2,1,0,0,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1631.94880101259,484.0,32098.42360040635,5,5,1,2,89.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034425366608533736,21398.949066937566,6,3,6,6_0,6_2,6_0_0 +13498,2,50.0,0.0,2,112,2295.0,0.0,0.0,11,11,1708.5862186792945,0.0,3913.4352470388803,4065.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113510,2,1,2,0,1,,160.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,1606.08197990782,2295.0,9669.288615972717,1,1,0,1,120.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.42040321283667326,4204.03852868379,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +13499,2,74.0,0.0,5,111,1156.0,0.0,0.0,0,75,0.0,0.0,1971.2118281381026,1156.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,113511,2,1,1,0,1,,356.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,951.954847532233,1156.0,42401.00271727167,0,5,0,1,61.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02726350618894948,42401.00271727167,9,5,9,9_1,9_2,9_0_0 +13500,2,41.0,0.0,1,111,940.0,1300.0,0.0,56,64,0.0,0.0,1602.8885107697374,2240.0,0.0,2468.055262321726,31,2,2,2,2,2,2,2,1,2,30.0,1,,1,113512,2,1,1,0,1,,700.0,,43,3.0,0.0,9.0,5.0,2.8,4,3,302.775249404102,940.0,66124.6218178359,1,1,1,2,120.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.033875430035288326,23615.93636351282,6,3,6,6_1,6_2,6_1_0 +13501,1,32.0,252.0,2,111,372.0,0.0,0.0,63,46,0.0,0.0,634.3346021344067,564.0,266.03313127613205,0.0,60,2,2,2,1,1,2,1,2,2,1.0,2,,2,113513,2,2,0,2,1,,511.0,315.0,43,2.0,0.0,3.0,4.0,2.1,2,2,516.963175340011,372.0,35875.29627367606,1,1,2,3,63.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.015721124522498842,17083.474416036217,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +13502,2,60.0,0.0,5,111,636.0,0.0,0.0,0,52,0.0,0.0,1084.5075455846309,636.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,2,,3,113514,1,1,0,1,2,475.0,0.0,937.0,22,2.0,2.0,4.0,2.0,1.5,2,2,948.991330988508,636.0,30800.348039326414,0,4,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02064911731477658,20533.565359550943,5,3,5,5_0,5_4,5_0_0 +13503,2,45.0,0.0,7,112,1100.0,0.0,0.0,0,62,1160.1511361402618,0.0,1875.7205977092674,2270.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,113515,2,1,1,0,1,,800.0,,32,1.0,0.0,5.0,3.0,1.8,2,1,1497.47765031627,1100.0,7285.403568710052,0,1,0,1,100.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.31158191561952475,4047.44642706114,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +13504,1,30.0,49.0,2,111,350.0,0.0,0.0,0,56,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,2,2,2,2,1,1,2,2,3,15.0,2,,2,113516,2,2,0,1,1,593.0,0.0,279.0,12,1.0,1.0,3.0,1.0,1.0,1,1,227.402418315656,350.0,12495.675424271,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.028009690402183207,12495.675424271,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +13505,2,76.0,0.0,6,111,224.0,0.0,0.0,0,77,0.0,0.0,381.9649217153417,2780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,113517,2,2,3,0,1,,345.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,184.840895326382,224.0,11752.029592807867,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23655488424751195,11752.029592807867,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +13506,2,70.0,0.0,1,111,1600.0,0.0,0.0,72,78,0.0,1324.327277010224,2728.320869395298,2600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113518,2,1,1,0,1,,180.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1565.00524262314,1600.0,36158.182291475016,5,5,0,1,230.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07190626948669927,24105.454860983344,6,3,6,6_1,6_2,6_1_0 +13507,1,43.0,186.0,2,111,400.0,0.0,0.0,52,52,0.0,0.0,682.0802173488245,400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,7.0,2,,2,113519,2,2,0,1,1,622.0,0.0,377.0,43,2.0,0.0,5.0,6.0,3.0999999999999996,4,2,271.272707335136,400.0,48352.68784522651,1,1,2,3,93.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008272549424354058,15597.64124039565,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +13508,2,35.0,0.0,5,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,599.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,113520,2,2,0,1,1,780.0,0.0,530.0,32,1.0,0.0,3.0,3.0,1.6,1,1,567.82938424322,0.0,19304.723859353726,0,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03102867486549238,12065.452412096078,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +13509,2,70.0,0.0,1,111,600.0,1300.0,0.0,74,74,0.0,0.0,1023.1203260232367,1900.0,0.0,2468.055262321726,20,0,0,0,0,0,0,0,0,0,,2,,1,113521,2,1,0,0,1,,500.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,982.329680673735,600.0,54833.527551635285,5,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03465033319643388,36555.68503442352,9,5,9,9_0,9_4,9_1_0 +13510,1,32.0,127.0,9,112,1496.0,0.0,0.0,55,52,0.0,0.0,2550.9800128846036,1546.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,113522,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,833.948310789729,1496.0,38048.512241765544,4,1,1,2,102.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04063233774231436,18118.339162745495,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +13511,1,42.0,304.0,9,111,500.0,800.0,0.0,43,67,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,113523,2,1,1,0,1,,500.0,525.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,153.451284452989,500.0,37507.46622776924,4,1,2,3,95.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03465976592781745,14425.948549142018,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +13512,2,50.0,0.0,8,111,480.0,,,42,43,0.0,0.0,,600.0,166.2707070475825,,42,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113524,2,2,0,0,2,,400.0,,43,2.0,2.0,4.0,3.0,1.8,2,2,119.73086219781308,480.0,211606.09692441858,1,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002835457053084382,117558.94273578809,10,5,10,10_1,10_3,10_0_0 +13513,2,54.0,0.0,9,112,1300.0,0.0,0.0,0,21,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,113525,2,1,1,0,1,,250.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,288.721243341478,1300.0,13142.483764456334,0,1,0,1,95.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09891585360111549,13142.483764456334,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +13514,2,23.0,0.0,1,221,0.0,0.0,0.0,64,43,0.0,0.0,0.0,3102.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,113526,2,3,1,0,1,,721.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,503.851957870006,0.0,39310.65703258742,1,1,1,2,96.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0789098996088651,21839.25390699301,6,3,6,6_1,6_1,6_1_0 +13515,1,45.0,80.0,9,120,490.0,0.0,0.0,85,64,1582.0242765549024,0.0,835.54826625231,2050.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,113527,2,1,1,0,1,,450.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1010.66876227435,490.0,32858.15038982089,6,1,1,2,125.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0623893912371607,15646.73828086709,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +13516,2,45.0,0.0,1,111,1800.0,0.0,0.0,0,85,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,113528,1,3,0,0,2,420.0,352.0,285.0,11,0.0,2.0,1.0,1.0,1.0,1,1,965.609491485794,1800.0,9232.04136116639,0,7,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.1949731299484327,9232.04136116639,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +13517,1,33.0,311.0,2,111,2080.0,0.0,0.0,85,21,0.0,0.0,3546.817130213887,2080.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,113529,1,3,0,0,2,,800.0,585.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,574.325852516958,2080.0,21850.670411979845,6,1,2,3,65.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,1,0,0,1,0.09519158729608679,8404.104004607634,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13518,2,55.0,0.0,2,111,540.0,0.0,0.0,0,43,0.0,0.0,920.8082934209131,540.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,15.0,2,,2,113530,2,3,0,1,2,612.0,0.0,194.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1859.14289625037,540.0,30121.587439153434,0,1,2,3,40.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01792734201312654,30121.587439153434,8,4,8,8_0,8_3,8_0_1 +13519,2,57.0,0.0,2,111,0.0,0.0,0.0,45,48,0.0,0.0,0.0,3326.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,3.0,1,,2,113531,2,1,2,0,1,,350.0,,43,2.0,5.0,4.0,2.0,1.5,2,2,884.169718737672,0.0,90980.87053011091,1,1,1,2,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03655713536945364,60653.91368674061,10,5,10,10_1,10_4,10_0_1 +13520,2,84.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2855.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,113532,2,1,2,0,1,,387.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,279.232589606304,0.0,21023.382177657044,0,5,0,1,90.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13580117489536006,21023.382177657044,5,3,5,5_1,5_3,5_0_0 +13521,1,35.0,356.0,2,120,420.0,0.0,0.0,0,67,0.0,1059.4618216081792,716.1842282162656,1220.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,113533,1,2,3,0,1,,180.0,,32,1.0,0.0,5.0,4.0,1.9,1,1,263.65446168187,420.0,12448.392784481845,0,4,0,1,95.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.09800461964221203,6551.785676043076,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +13522,2,77.0,0.0,6,300,390.0,0.0,0.0,0,77,1054.6828510366015,0.0,665.0282119151038,1689.0,124.70303028568689,0.0,70,2,2,2,2,1,2,2,2,0,,1,,4,113534,2,2,5,0,1,,236.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,918.403919594777,390.0,18038.584390845033,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.09363262456765752,18038.584390845033,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13523,2,37.0,0.0,8,112,200.0,300.0,0.0,0,62,0.0,0.0,341.04010867441224,500.0,0.0,569.5512143819367,71,2,2,2,1,2,2,2,2,2,20.0,1,2003.0,6,113535,2,2,2,0,1,,300.0,415.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1340.79429838391,200.0,18006.77931041338,0,1,2,3,70.0,9,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.027767319817755987,18006.77931041338,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13524,2,55.0,0.0,5,111,700.0,0.0,0.0,46,38,0.0,0.0,1193.6403803604428,1600.0,1247.030302856869,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,3,113536,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,2517.76093313809,700.0,107278.06796782365,1,1,0,1,150.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01491451170130967,42911.22718712946,9,5,9,9_1,9_3,9_0_0 +13525,2,26.0,0.0,8,112,600.0,0.0,0.0,0,47,0.0,0.0,1023.1203260232367,650.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,113537,2,1,1,0,1,,160.0,445.0,12,1.0,0.0,2.0,1.0,1.0,1,1,952.795249713,600.0,32249.950888100047,0,1,2,3,50.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020155069452829598,32249.950888100047,8,4,8,8_1,8_0,8_0_0 +13526,2,56.0,0.0,6,120,2200.0,0.0,0.0,45,54,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,30.0,1,,4,113538,2,2,2,0,1,,450.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,941.67539068225,2200.0,85387.45726793924,1,1,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02576490822412676,42693.72863396962,9,5,9,9_1,9_0,9_0_0 +13527,1,34.0,130.0,2,111,780.0,1200.0,0.0,0,54,0.0,0.0,1330.0564238302077,1980.0,0.0,2278.2048575277468,43,0,0,0,0,0,0,0,0,2,60.0,2,,2,113539,2,2,0,0,1,,0.0,286.0,32,1.0,0.0,4.0,3.0,1.6,1,1,521.279858703671,780.0,21253.232113801423,0,1,2,3,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09316230065140199,13283.27007112589,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +13528,2,81.0,0.0,5,111,274.0,0.0,0.0,0,77,0.0,0.0,467.22494888394476,274.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,113540,1,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,672.547097399483,274.0,27321.779085846705,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01002862950977955,27321.779085846705,7,4,7,7_0,7_4,7_0_0 +13529,2,43.0,0.0,2,111,404.0,497.0,0.0,43,38,0.0,198.6490915515336,688.9010195223127,1051.0,0.0,943.5565118260752,12,0,0,0,0,0,0,0,0,2,15.0,1,,2,113541,2,1,1,0,1,,333.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,377.920778737239,404.0,83050.02874360289,4,1,1,2,136.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.012655022712210145,46138.90485755716,10,5,10,10_1,10_3,10_0_1 +13530,2,45.0,0.0,1,111,1900.0,1500.0,0.0,34,42,0.0,0.0,3239.8810324069163,3400.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,2,50.0,1,,1,113542,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,359.704777435033,1900.0,53958.14974833291,1,1,1,2,150.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06301179739961425,23460.06510797083,6,3,6,6_1,6_2,6_1_0 +13531,2,53.0,0.0,1,112,1000.0,0.0,0.0,22,11,3374.985123317125,0.0,1705.2005433720612,4200.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,1,,1,113543,2,1,4,0,1,,450.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,629.647099277046,1000.0,76609.38775861842,1,1,0,1,110.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05482356827120717,38304.69387930921,9,5,9,9_1,9_0,9_1_0 +13532,1,41.0,330.0,2,111,408.0,96.0,0.0,54,68,0.0,0.0,695.7218216958009,504.0,0.0,182.25638860221974,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,113544,1,2,0,1,2,541.0,0.0,320.0,43,2.0,1.0,4.0,5.0,2.5999999999999996,3,2,474.590113863572,408.0,14771.41151895688,1,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034119962019417846,5681.312122675724,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13533,1,39.0,300.0,1,112,1320.0,0.0,0.0,0,55,0.0,715.1367295855209,2250.864717251121,1860.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,1,113545,2,2,5,0,1,,310.0,550.0,32,1.0,0.0,6.0,3.0,1.6,1,1,1801.50604825459,1320.0,22192.354080870147,0,1,2,3,220.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08381264976315982,13870.22130054384,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +13534,0,59.0,0.0,1,111,230.0,1432.0,0.0,21,21,0.0,0.0,392.1961249755741,1662.0,0.0,2718.657796649778,50,0,0,0,0,0,0,0,0,1,4.0,1,,1,113546,2,2,2,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,604.413580527338,230.0,54282.22560322807,1,1,5,0,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03061775713008281,36188.150402152045,9,5,9,9_1,9_4,9_1_0 +13535,2,65.0,0.0,1,111,2873.0,3617.0,0.0,31,74,0.0,0.0,4899.041161107932,6490.0,0.0,6866.889141398216,10,0,0,0,0,0,0,0,0,0,,1,,1,113547,2,2,2,0,2,,529.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,430.573646865568,2873.0,303214.5238938824,1,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021403987898255625,202143.01592925494,10,5,10,10_1,10_4,10_1_0 +13537,2,53.0,0.0,1,111,650.0,0.0,0.0,63,56,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,50,2,2,2,2,1,2,2,1,3,30.0,2,,1,113549,2,3,0,0,1,,0.0,625.0,43,2.0,2.0,2.0,3.0,2.0,3,3,537.29559816584,650.0,22902.054238023622,4,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.028381733500605535,11451.027119011811,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +13538,1,39.0,83.0,9,111,1500.0,1000.0,0.0,64,54,0.0,0.0,2557.8008150580918,2500.0,0.0,1898.504047939789,43,0,0,0,0,0,0,0,0,3,60.0,1,2007.0,6,113550,2,2,1,0,1,,0.0,572.0,43,2.0,0.0,4.0,5.0,2.4,2,2,524.794902525643,1500.0,49338.280003807275,4,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05067059491751806,20557.61666825303,5,3,5,5_1,5_4,5_0_0 +13539,2,47.0,0.0,9,112,650.0,0.0,0.0,42,48,0.0,0.0,1108.3803531918397,728.0,108.07595958092864,0.0,50,2,2,2,1,1,2,2,2,2,20.0,1,2005.0,6,113551,2,1,2,0,1,,0.0,,43,2.0,1.0,4.0,4.0,2.3,3,3,958.409609458134,650.0,99506.92571893544,4,1,0,1,160.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.007316073677688416,43263.88074736324,9,5,9,9_1,9_0,9_0_0 +13540,2,55.0,0.0,5,111,450.0,250.0,0.0,75,47,0.0,0.0,767.3402445174275,700.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,3,70.0,2,,3,113552,2,2,0,1,1,765.0,0.0,391.0,42,2.0,7.0,4.0,3.0,2.0,3,3,209.584864147873,450.0,28310.88053039266,5,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024725476102678157,14155.44026519633,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +13542,2,78.0,0.0,1,300,490.0,0.0,0.0,0,71,2516.4732825733313,0.0,835.54826625231,2876.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113554,2,1,1,0,1,,250.0,,11,0.0,8.0,6.0,1.0,1.0,1,1,1294.5548965159,490.0,27073.682622769993,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10622862209299798,27073.682622769993,7,4,7,7_1,7_0,7_1_0 +13543,2,44.0,0.0,1,112,465.0,2460.0,0.0,55,46,0.0,0.0,792.9182526680084,2925.0,0.0,4670.319957931881,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,113555,1,2,1,0,1,,440.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,654.884869736775,465.0,87510.25014552913,1,1,1,2,80.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03342465591328717,35004.100058211654,9,5,9,9_1,9_0,9_1_0 +13544,2,41.0,0.0,2,111,450.0,50.0,0.0,0,45,0.0,0.0,767.3402445174275,500.0,0.0,94.92520239698945,31,2,2,2,1,1,2,2,2,3,30.0,2,,2,113556,1,2,0,1,2,,200.0,,32,2.0,1.0,4.0,2.0,1.5,2,1,343.204172627788,450.0,29462.91724133311,0,1,1,2,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.016970485166301084,19641.944827555406,5,3,5,5_0,5_3,5_0_1 +13545,2,71.0,0.0,2,111,674.0,1500.0,0.0,0,74,0.0,0.0,1149.3051662327691,2174.0,0.0,2847.7560719096837,42,0,0,0,0,0,0,0,0,0,,1,,2,113557,2,1,1,0,1,,66.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1212.47386471645,674.0,28787.427254316128,0,5,0,1,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07551907924227755,28787.427254316128,8,4,8,8_1,8_2,8_0_1 +13546,1,63.0,434.0,2,111,504.0,1460.0,0.0,85,65,0.0,0.0,859.4210738595189,1964.0,0.0,2771.8159099920917,71,0,0,0,0,0,0,0,0,0,,1,,2,113558,2,1,2,0,1,,840.0,438.0,42,3.0,5.0,7.0,6.0,3.5,6,5,238.616421773584,504.0,32425.041115691383,6,4,2,3,100.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.060570470612281366,9264.297461626109,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +13547,2,28.0,0.0,1,112,0.0,0.0,0.0,48,64,0.0,0.0,0.0,667.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,113559,2,2,4,0,1,,358.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,875.99384774761,0.0,47365.41385213446,1,1,1,2,76.0,10,2,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014082005112047439,31576.94256808964,8,4,8,8_1,8_1,8_1_0 +13548,2,44.0,0.0,1,111,1192.0,0.0,0.0,0,56,0.0,0.0,2032.5990476994969,1192.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,2,,1,113560,1,2,0,0,1,,0.0,1000.0,32,2.0,0.0,4.0,4.0,2.1,2,2,1083.55856290647,1192.0,24684.599591069884,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04828921755859586,11754.571233842802,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +13549,2,26.0,0.0,9,112,1140.0,0.0,0.0,42,37,0.0,198.6490915515336,1943.9286194441497,1290.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,113561,2,1,1,0,1,,326.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1787.11142488159,1140.0,109059.02047297965,1,1,1,2,95.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0118284576040146,60588.34470721092,10,5,10,10_1,10_1,10_0_0 +13550,2,63.0,0.0,6,111,640.0,,,0,45,0.0,0.0,,740.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,1,15.0,2,,4,113562,2,1,0,0,2,,650.0,607.0,22,1.0,0.0,5.0,4.0,2.3,3,3,103.41656437340036,640.0,65351.36329700115,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011323405705202131,28413.63621608746,8,4,8,8_0,8_2,8_0_0 +13551,2,64.0,0.0,1,111,0.0,0.0,1900.0,0,74,0.0,0.0,1197.6047517880133,1900.0,0.0,2273.7910803728937,41,0,0,0,0,0,0,0,0,0,,1,,1,113563,2,1,3,0,1,,260.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,845.453627212671,0.0,47579.53689125421,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03993313353054613,47579.53689125421,10,5,10,10_1,10_4,10_1_0 +13552,1,35.0,363.0,5,111,640.0,180.0,0.0,85,67,0.0,0.0,1091.3283477581192,820.0,0.0,341.730728629162,31,0,0,0,0,0,0,0,0,2,10.0,2,,3,113564,2,1,0,1,1,,0.0,365.0,42,1.0,0.0,5.0,5.0,2.4,2,2,273.468211873249,640.0,31006.263114937727,6,1,2,3,84.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.026446269805565602,12919.27629789072,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +13553,2,54.0,0.0,7,111,900.0,,,56,62,0.0,132.4327277010224,,1075.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,0,,1,,5,113565,2,1,0,0,1,,340.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,80.6039389876922,900.0,45046.316042355495,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02386432664081153,30030.87736157033,8,4,8,8_1,8_2,8_0_0 +13555,0,63.0,0.0,2,111,200.0,,,0,77,0.0,0.0,,310.0,152.4148147936173,,71,2,2,1,2,1,2,2,2,0,,1,,2,113567,1,3,0,0,2,,480.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,112.12768674761179,200.0,14621.916492693112,0,7,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0212010511860681,14621.916492693112,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +13556,1,55.0,271.0,2,111,264.0,1107.0,0.0,0,85,0.0,0.0,450.1729434502241,1371.0,0.0,2101.6439810693464,71,0,0,0,0,0,0,0,0,0,,2,,2,113568,1,3,0,0,2,,0.0,417.0,21,0.0,2.0,4.0,2.0,1.5,2,2,664.497418327472,264.0,9329.973190724144,0,7,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14694575986167333,6219.982127149429,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13557,2,24.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1718.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,113569,1,1,0,1,1,,0.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,1789.10266714953,0.0,24614.383297410808,0,1,1,2,63.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06979658922353406,16409.58886494054,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +13558,2,47.0,0.0,9,112,1200.0,1800.0,0.0,54,37,0.0,0.0,2046.2406520464733,3000.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,113570,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,236.539845483182,1200.0,63056.75194150723,1,1,1,2,180.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047576189823143177,31528.375970753616,8,4,8,8_1,8_0,8_0_0 +13559,2,40.0,0.0,6,111,0.0,,,65,46,0.0,0.0,,1639.0,0.0,,30,0,0,0,0,0,0,0,0,2,120.0,1,,4,113571,1,2,0,0,1,,360.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,109.51976917731828,0.0,48660.4463031497,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03368238732931454,27033.58127952761,7,4,7,7_1,7_2,7_0_0 +13560,0,78.0,0.0,5,111,410.0,0.0,0.0,72,71,0.0,0.0,699.1322227825451,2686.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,113572,2,1,2,1,1,,300.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1263.73985454955,410.0,22442.200890363332,5,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11968523110197124,14961.467260242222,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +13561,2,67.0,0.0,2,111,280.0,800.0,0.0,74,86,0.0,0.0,477.4561521441771,1080.0,0.0,1518.8032383518312,33,0,0,0,0,0,0,0,0,0,,1,,2,113573,2,2,1,0,2,,500.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1054.90406095801,280.0,80598.93758080635,5,5,0,1,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.013399680348357207,53732.6250538709,10,5,10,10_1,10_2,10_0_1 +13562,2,68.0,0.0,1,120,800.0,0.0,0.0,72,75,0.0,794.5963662061343,1364.160434697649,2800.0,1939.8249155551293,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,113574,2,2,1,0,1,,600.0,810.0,41,0.0,3.0,5.0,2.0,1.5,2,2,1228.62137822239,800.0,38246.08870303991,5,5,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.07321010056062145,25497.392468693273,7,4,7,7_1,7_0,7_1_0 +13563,2,75.0,0.0,9,221,1079.0,0.0,0.0,77,75,0.0,0.0,1839.911386298454,1079.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,2004.0,6,113575,1,2,0,0,1,,415.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2052.41554893334,1079.0,29579.250535459094,5,5,0,1,82.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03647827380570422,19719.50035697273,5,3,5,5_0,5_1,5_0_0 +13564,2,66.0,0.0,5,111,0.0,0.0,2400.0,74,74,0.0,0.0,1512.763896995385,2400.0,0.0,2872.157154155234,12,0,0,0,0,0,0,0,0,0,,2,,3,113576,2,1,0,0,2,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,969.814140115488,0.0,58368.5623157989,7,5,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.041118024922645394,38912.37487719927,9,5,9,9_0,9_4,9_0_0 +13565,2,83.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,342.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,113577,1,2,0,1,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1129.71252213059,0.0,38051.90010576295,0,5,0,1,101.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0089877246352858,38051.90010576295,9,5,9,9_0,9_4,9_0_1 +13566,1,47.0,122.0,2,111,199.0,279.0,0.0,0,48,0.0,0.0,339.33490813104015,478.0,0.0,529.6826293752011,71,2,2,2,2,1,2,2,2,0,,2,,2,113578,1,2,0,1,1,390.0,0.0,385.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1029.81511945314,199.0,7282.641833554727,0,4,2,3,33.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.06563552223557363,7282.641833554727,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +13567,2,29.0,0.0,2,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,1650.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,2,113579,2,1,1,0,2,,462.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1578.00990693596,0.0,52073.52285383019,1,1,1,2,100.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03168596840723705,34715.68190255346,9,5,9,9_1,9_3,9_0_1 +13568,2,81.0,0.0,1,400,400.0,0.0,0.0,0,78,0.0,264.8654554020448,682.0802173488245,4100.0,4849.562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113580,2,1,1,0,1,,88.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1493.17437548873,400.0,16770.548969133135,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24447619499792247,16770.548969133135,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +13569,2,61.0,0.0,2,111,276.0,94.0,0.0,68,78,0.0,0.0,470.6353499706889,370.0,0.0,178.45938050634015,71,2,1,2,1,1,2,2,2,0,,2,,2,113581,2,2,0,1,1,285.0,0.0,249.0,41,0.0,0.0,3.0,2.0,1.5,2,2,315.037577735681,276.0,26305.215721672073,5,5,2,3,79.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014065651615058536,17536.810481114717,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +13570,2,50.0,0.0,7,112,600.0,1300.0,0.0,67,47,0.0,0.0,1023.1203260232367,1900.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,113582,2,1,2,0,1,,350.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,834.122651705954,600.0,95095.93890128053,1,1,0,1,85.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019979822713274826,47547.96945064027,10,5,10,10_1,10_1,10_0_0 +13571,2,35.0,0.0,2,111,350.0,730.0,0.0,46,65,0.0,0.0,596.8201901802214,1080.0,0.0,1385.9079549960459,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,113583,2,1,0,1,1,,0.0,397.0,43,2.0,1.0,4.0,3.0,1.8,2,2,1728.38827054622,350.0,40743.52259158046,1,1,2,3,102.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026507280944411495,22635.29032865581,6,3,6,6_0,6_3,6_0_1 +13572,2,59.0,0.0,6,111,538.0,,,0,67,0.0,0.0,,580.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,2,60.0,1,,4,113584,2,2,0,0,2,,250.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,89.90641248660108,538.0,28971.640502410766,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02001957741922614,28971.640502410766,8,4,8,8_1,8_3,8_0_0 +13573,0,52.0,0.0,2,111,360.0,,,0,67,0.0,0.0,,570.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,2,113585,2,1,0,0,2,,210.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,111.56666178145652,360.0,7631.198229457601,0,4,5,0,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07469338141416798,7631.198229457601,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +13574,2,65.0,0.0,2,111,1200.0,,,0,77,0.0,0.0,,1500.0,415.67676761895626,,70,0,0,0,0,0,0,0,0,0,,1,,2,113586,2,1,0,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,38.48563029243881,1200.0,19140.237037037037,0,5,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07836893540542088,19140.237037037037,5,3,5,5_1,5_2,5_0_1 +13575,2,78.0,0.0,1,111,300.0,450.0,0.0,78,78,0.0,0.0,511.56016301161833,750.0,0.0,854.326821572905,70,2,1,2,2,1,1,2,2,0,,2,,1,113587,1,3,0,1,1,610.0,0.0,462.0,41,0.0,4.0,3.0,2.0,1.5,2,2,388.113929638225,300.0,25828.59984406673,5,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.029037578673560493,17219.066562711156,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +13576,2,81.0,0.0,1,111,499.0,0.0,0.0,86,74,0.0,0.0,850.8950711426585,499.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,113588,1,2,0,1,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,582.016687897659,499.0,93302.07700847731,6,5,0,1,165.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005348219632395338,62201.38467231821,10,5,10,10_0,10_4,10_1_0 +13577,2,73.0,0.0,1,300,420.0,0.0,0.0,0,71,0.0,0.0,716.1842282162656,525.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113589,2,1,3,0,1,,50.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1367.7550947086,420.0,10718.168309080254,0,5,1,2,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0489822500319601,10718.168309080254,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +13578,2,76.0,0.0,5,111,370.0,0.0,0.0,75,72,0.0,0.0,630.9242010476627,370.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,113590,2,2,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,388.135541066548,370.0,67269.87630135428,5,5,0,1,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005500233096051511,44846.58420090285,10,5,10,10_0,10_4,10_0_0 +13579,2,71.0,0.0,2,112,4000.0,0.0,0.0,86,86,0.0,397.2981831030672,6820.802173488245,4440.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,113591,2,1,2,0,2,,1000.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,946.846445114874,4000.0,69735.23804880962,5,5,0,1,200.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0636693890238436,46490.15869920642,10,5,10,10_1,10_2,10_0_1 +13580,2,59.0,0.0,1,112,1200.0,0.0,0.0,74,54,0.0,0.0,2046.2406520464733,1296.0,133.01656563806603,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,1,113592,2,1,1,0,1,,400.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,999.46198114728,1200.0,51130.31265610294,5,1,1,2,120.0,9,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02534699931754297,34086.875104068626,9,5,9,9_1,9_1,9_1_0 +13581,2,54.0,0.0,5,111,1800.0,0.0,0.0,33,33,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,113593,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1609.45273022607,1800.0,124882.37337914293,1,1,1,2,132.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014413563350010969,54296.68407788823,10,5,10,10_0,10_3,10_0_0 +13582,2,60.0,0.0,5,222,330.0,0.0,0.0,62,63,0.0,953.5156394473612,562.7161793127802,1100.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,113594,1,2,3,0,1,,221.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1259.86509179247,330.0,41330.31574033484,1,1,0,1,120.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02661484627678502,27553.54382688989,7,4,7,7_1,7_0,7_0_0 +13583,2,23.0,0.0,5,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,969.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,75.0,2,,3,113595,1,3,0,0,1,,0.0,326.0,42,1.0,0.0,3.0,2.0,1.5,2,2,357.412602061805,0.0,18923.805123611928,7,1,2,3,70.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.051205346581747614,12615.870082407951,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +13584,2,90.0,0.0,2,111,150.0,709.0,0.0,0,77,0.0,0.0,255.78008150580916,859.0,0.0,1346.0393699893104,70,0,0,0,0,0,0,0,0,0,,1,,2,113596,2,1,2,0,1,,146.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,897.714805138101,150.0,21564.330074135712,0,5,0,1,90.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039834300302715446,21564.330074135712,6,3,6,6_1,6_1,6_0_1 +13585,1,20.0,297.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,237.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113597,2,1,0,0,1,,0.0,353.0,31,0.0,0.0,3.0,2.0,1.3,1,1,251.431535566228,0.0,9378.790332861568,0,6,3,4,45.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025269783371699363,7214.454102201206,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13586,2,48.0,0.0,2,211,500.0,700.0,0.0,55,47,0.0,953.5156394473612,852.6002716860306,1920.0,0.0,1328.9528335578523,60,0,0,0,0,0,0,0,0,0,,1,,2,113598,2,1,1,0,1,,180.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1105.65913942739,500.0,31708.113126556596,4,1,0,1,85.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.060552325909041124,21138.742084371064,5,3,5,5_1,5_1,5_0_1 +13587,2,67.0,0.0,8,211,980.0,0.0,0.0,74,75,0.0,0.0,1671.09653250462,1044.0,88.67771042537734,0.0,31,0,0,0,0,0,0,0,0,0,,1,2001.0,6,113599,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1613.40492030211,980.0,49770.63162691375,5,5,1,2,120.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02097622565503973,33180.42108460917,8,4,8,8_1,8_1,8_0_0 +13588,2,64.0,0.0,2,111,487.0,480.0,0.0,56,64,0.0,0.0,830.4326646221938,967.0,0.0,911.2819430110987,71,2,1,2,1,1,2,2,2,2,15.0,2,,2,113600,1,2,0,1,1,750.0,0.0,302.0,43,2.0,2.0,4.0,3.0,2.0,3,2,863.072729601886,487.0,24596.230824748895,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.039314966869923744,12298.115412374447,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +13589,2,49.0,0.0,2,111,733.2,,,22,22,0.0,0.0,,983.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,2,113601,2,2,0,0,2,,775.0,2392.0,43,2.0,1.0,4.0,4.0,2.5,4,3,98.54301257544587,733.2,16894.52879581152,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058184517122709264,6757.811518324607,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +13590,2,51.0,0.0,1,300,790.0,0.0,0.0,54,62,0.0,174.81120056534957,1347.1084292639284,1102.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,113602,2,1,3,0,1,,307.0,,43,3.0,0.0,7.0,4.0,2.5,4,3,868.626542502413,790.0,51340.68081028106,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02146446020208058,20536.272324112426,5,3,5,5_1,5_0,5_1_0 +13591,2,44.0,0.0,6,111,700.0,0.0,0.0,0,85,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,113603,2,2,3,0,1,,100.0,,31,0.0,0.0,5.0,2.0,1.5,2,2,711.211509611851,700.0,22211.15454837078,0,7,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031515696245125895,14807.436365580521,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +13592,2,53.0,0.0,1,111,2059.0,0.0,0.0,68,47,0.0,198.6490915515336,3511.007918803074,2279.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,113604,2,1,2,0,1,,359.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,296.690723130041,2059.0,42059.686619012115,1,1,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054184902057017,28039.79107934141,8,4,8,8_1,8_3,8_1_0 +13593,2,77.0,0.0,1,112,500.0,0.0,0.0,71,71,2373.0364148323533,0.0,852.6002716860306,2870.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113605,2,1,4,0,1,,221.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,814.921228593623,500.0,28060.973508834424,5,5,0,1,110.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10227727840933384,18707.315672556284,5,3,5,5_1,5_0,5_1_0 +13594,2,57.0,0.0,6,111,200.0,0.0,0.0,0,35,0.0,0.0,341.04010867441224,200.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,4,113606,1,3,0,1,2,300.0,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1012.59608668446,200.0,18302.099035814124,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.010927708325074283,18302.099035814124,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +13595,2,52.0,0.0,6,111,360.0,,,52,53,0.0,0.0,,810.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,0,,1,,4,113607,2,1,0,0,2,,360.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,106.12356483011934,360.0,27292.861877812054,4,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02967808959083532,13646.430938906027,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +13596,2,40.0,0.0,8,111,1185.0,0.0,0.0,37,31,0.0,0.0,2020.6626438958924,1185.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,3.0,1,1999.0,6,113608,1,1,2,0,1,,697.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1199.63881765912,1185.0,120477.89644795057,1,1,1,2,115.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009835829101746886,57370.42687997646,10,5,10,10_1,10_2,10_0_0 +13597,1,79.0,77.0,1,111,360.0,220.0,0.0,0,75,0.0,0.0,613.872195613942,580.0,0.0,417.6708905467536,71,0,0,0,0,0,0,0,0,0,,2,,1,113609,2,1,0,1,1,912.0,0.0,432.0,11,0.0,3.0,3.0,1.0,1.0,1,1,727.035911191665,360.0,24984.940664348764,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023213983486765177,24984.940664348764,7,4,7,7_0,7_4,7_1_0 +13598,2,63.0,0.0,1,111,366.0,634.0,0.0,78,74,0.0,0.0,624.1033988741744,1000.0,0.0,1203.6515663938262,50,0,0,0,0,0,0,0,0,0,,1,,1,113610,2,1,2,0,1,,240.0,640.0,41,0.0,3.0,5.0,2.0,1.5,2,2,538.410008202948,366.0,34208.55448114953,5,5,2,3,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029232454138073728,22805.70298743302,6,3,6,6_1,6_3,6_1_0 +13599,2,45.0,0.0,6,111,1472.0,0.0,0.0,38,38,0.0,264.8654554020448,2510.055199843674,1672.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,1,,4,113611,2,1,2,0,1,,0.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,601.838673231349,1472.0,154961.0837877358,1,1,1,2,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010789805795952546,55343.24420990565,10,5,10,10_1,10_4,10_0_0 +13600,0,27.0,0.0,9,111,735.0,,,0,46,0.0,0.0,,859.0,171.8130639491686,,43,0,0,0,0,0,0,0,0,0,,2,2012.0,6,113612,2,2,0,0,2,,325.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,167.45758359318836,735.0,20815.315289429447,0,4,5,0,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04126769102729961,13876.876859619631,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +13601,2,64.0,0.0,1,111,2600.0,0.0,0.0,54,43,0.0,0.0,4433.521412767359,2600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,113613,2,3,2,0,1,,0.0,2241.0,43,2.0,3.0,5.0,3.0,2.0,3,3,1226.38255135373,2600.0,62119.67026310813,4,4,2,3,165.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04185469737665524,31059.835131554064,8,4,8,8_1,8_2,8_1_0 +13602,2,45.0,0.0,5,111,980.0,0.0,0.0,0,54,0.0,0.0,1671.09653250462,980.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,3,113614,2,1,0,1,1,,250.0,680.0,12,1.0,0.0,3.0,1.0,1.0,1,1,762.555707524237,980.0,26775.706342265603,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036600341648244945,26775.706342265603,7,4,7,7_0,7_4,7_0_0 +13603,2,64.0,0.0,2,111,436.0,0.0,0.0,0,72,1611.5553963839272,0.0,743.4674369102187,2024.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,113615,2,1,1,0,1,,318.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1037.42384693305,436.0,23568.64087908169,0,5,0,1,120.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08587682295233232,23568.64087908169,6,3,6,6_1,6_3,6_0_1 +13605,2,60.0,0.0,2,111,2000.0,0.0,0.0,34,37,0.0,66.2163638505112,3410.4010867441225,2050.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,2,113617,2,1,2,0,1,,492.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1659.37727254697,2000.0,178613.1886670777,1,1,0,1,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011477315954652456,119075.45911138512,10,5,10,10_1,10_2,10_0_1 +13606,2,62.0,0.0,1,112,1320.0,0.0,0.0,75,52,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,113618,1,2,2,0,2,,320.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,555.455926044537,1320.0,31840.09335519934,5,1,0,1,70.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04145716487933758,21226.728903466228,5,3,5,5_1,5_1,5_1_0 +13607,1,55.0,170.0,2,111,550.0,500.0,0.0,0,77,0.0,0.0,937.8602988546337,1050.0,0.0,949.2520239698945,60,0,0,0,0,0,0,0,0,0,,2,,2,113619,2,2,0,1,1,1662.0,400.0,310.0,31,0.0,6.0,4.0,3.0,2.0,3,2,673.750142310139,550.0,14187.535030326042,0,7,3,4,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07400862783814181,7093.767515163021,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13608,2,64.0,0.0,5,300,400.0,0.0,0.0,78,74,1265.6194212439218,0.0,682.0802173488245,1720.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,113620,2,1,4,0,2,,120.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1488.81887234422,400.0,50395.89153183128,6,5,0,1,117.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0341297662908415,33597.26102122085,9,5,9,9_1,9_1,9_0_0 +13609,2,28.0,0.0,1,111,330.0,669.0,0.0,47,43,0.0,0.0,562.7161793127802,999.0,0.0,1270.0992080717187,33,0,0,0,0,0,0,0,0,2,10.0,2,,1,113621,2,1,0,0,1,,170.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,573.204873485592,330.0,30444.34455691477,1,1,1,2,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.032813976275048395,20296.229704609847,5,3,5,5_0,5_3,5_1_0 +13611,2,41.0,0.0,2,111,900.0,0.0,0.0,0,56,0.0,0.0,1534.680489034855,900.0,0.0,0.0,60,2,2,2,1,1,2,2,2,0,,2,,2,113623,2,3,0,1,1,,436.0,,32,2.0,0.0,5.0,7.0,3.1999999999999993,3,2,998.229955149882,900.0,38237.67693077482,0,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.023536994719353707,11949.274040867132,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +13612,2,81.0,0.0,1,112,1200.0,0.0,0.0,0,75,3164.0485531098047,0.0,2046.2406520464733,4260.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,113624,1,1,4,1,2,,150.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,603.602684634555,1200.0,28679.40480133614,0,5,0,1,60.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14853864748969728,28679.40480133614,8,4,8,8_1,8_0,8_1_0 +13613,1,30.0,120.0,7,111,300.0,,,0,43,0.0,0.0,,300.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,5,113625,2,1,0,0,2,,360.0,478.0,32,1.0,0.0,3.0,2.0,1.3,1,1,94.2700622144679,300.0,5658.941377672118,0,1,2,3,71.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053013448978934126,4353.031828978552,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13614,1,41.0,300.0,2,111,320.0,450.0,0.0,0,85,0.0,0.0,545.6641738790596,770.0,0.0,854.326821572905,50,0,0,0,0,0,0,0,0,0,,2,,2,113626,2,2,0,0,1,,180.0,320.0,31,0.0,0.0,3.0,2.0,1.3,1,1,314.805329948518,320.0,11319.798723871329,0,7,2,3,60.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0680224108911243,8707.537479901022,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13615,2,31.0,0.0,1,112,1700.0,0.0,0.0,21,69,0.0,0.0,2898.840923732504,1780.0,110.84713803172167,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,113627,2,1,2,0,1,,200.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,207.881495936586,1700.0,28270.9689760249,1,1,1,2,150.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06296211500601635,15706.093875569388,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +13616,2,34.0,0.0,9,112,850.0,0.0,0.0,48,46,0.0,529.7309108040896,1449.420461866252,1295.0,62.351515142843446,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,113628,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,927.36896376109,850.0,49399.84914977367,1,1,1,2,115.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02621465494912211,27444.360638763148,7,4,7,7_1,7_0,7_0_0 +13617,2,85.0,0.0,5,111,0.0,0.0,1447.0,0,74,0.0,0.0,912.0705662301343,1447.0,0.0,1731.6714175260931,10,0,0,0,0,0,0,0,0,0,,2,,3,113629,2,1,0,0,1,,201.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,515.698997514915,0.0,52985.17228438685,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027309527130222954,52985.17228438685,10,5,10,10_0,10_3,10_0_0 +13618,2,80.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2569.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,113630,2,2,3,0,1,,166.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,592.386627460682,0.0,20183.86512644322,0,5,0,1,80.0,6,4,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.127279883407183,20183.86512644322,5,3,5,5_1,5_2,5_0_1 +13619,2,52.0,0.0,6,111,1533.0,0.0,0.0,54,53,0.0,0.0,2614.0724329893696,1533.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,113631,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,1102.44347440834,1533.0,84105.13734916155,1,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018227186213795328,42052.568674580776,9,5,9,9_1,9_3,9_0_0 +13620,2,51.0,0.0,1,111,400.0,500.0,0.0,63,52,0.0,0.0,682.0802173488245,911.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,113632,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,1685.27947994247,400.0,47635.416751050696,1,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.019124425944691794,20711.05076132639,5,3,5,5_0,5_3,5_1_0 +13622,0,78.0,0.0,1,111,1000.0,0.0,0.0,0,71,3164.0485531098047,0.0,1705.2005433720612,4000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113634,2,1,2,0,1,,420.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1799.17410283866,1000.0,12580.51045962962,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.31795212227960445,12580.51045962962,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +13623,2,28.0,0.0,9,111,300.0,,,84,90,0.0,0.0,,300.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,2007.0,6,113635,2,1,0,0,2,,170.0,355.0,42,1.0,0.0,2.0,2.0,1.5,2,2,147.68899268345345,300.0,679.3030491599254,3,4,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.44162910849730674,452.86869943995026,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +13624,2,62.0,0.0,1,221,552.0,0.0,0.0,0,86,0.0,0.0,941.2706999413778,587.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113636,2,2,2,0,1,,252.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,983.918117458296,552.0,6404.556794344045,0,6,0,1,74.0,1,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09165349279412871,6404.556794344045,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +13625,2,68.0,0.0,2,111,297.0,368.0,0.0,0,75,0.0,0.0,506.4445613815022,665.0,0.0,698.6494896418424,33,0,0,0,0,0,0,0,0,0,,2,,2,113637,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1792.40793091304,297.0,34238.013557545935,0,5,1,2,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01942285579396403,34238.013557545935,9,5,9,9_0,9_3,9_0_1 +13626,1,49.0,300.0,1,111,600.0,,,85,68,0.0,0.0,,830.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,1,113638,2,1,0,0,2,,600.0,450.0,42,1.0,0.0,4.0,7.0,3.1999999999999993,3,2,71.15944889044628,600.0,27929.97321980047,6,1,2,3,82.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.029717178511706768,8728.11663118765,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +13627,2,69.0,0.0,2,111,365.0,2318.0,0.0,77,77,0.0,132.4327277010224,622.3981983308023,2783.0,0.0,4400.732383124431,71,2,2,1,2,1,2,2,2,0,,1,,2,113639,2,1,2,0,1,,700.0,,41,1.0,0.0,6.0,3.0,2.0,3,3,836.865005545466,365.0,39981.27789157879,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06960758001650016,19990.638945789397,5,3,5,5_1,5_3,5_0_1 +13628,2,52.0,0.0,6,111,530.0,912.0,0.0,85,47,0.0,185.40581878143135,903.7562879871924,1582.0,0.0,1731.4356917210876,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,113640,2,1,3,0,1,,310.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,1489.19229979975,530.0,45011.470317578714,6,1,0,1,94.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035146596830500955,18004.588127031486,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +13629,2,27.0,0.0,2,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,186.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,113641,2,1,0,1,1,,451.0,620.0,12,1.0,0.0,1.0,1.0,1.0,1,1,746.914377483311,0.0,10517.416711738853,0,1,3,4,15.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.017684951076664953,10517.416711738853,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +13630,2,68.0,0.0,1,111,1000.0,60.0,0.0,0,74,0.0,0.0,1705.2005433720612,1060.0,0.0,113.91024287638734,20,0,0,0,0,0,0,0,0,0,,2,,1,113642,2,2,0,0,2,,474.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,852.980817810654,1000.0,17043.338539679207,0,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06219438741606734,17043.338539679207,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +13631,2,44.0,0.0,2,111,750.0,700.0,0.0,67,52,0.0,0.0,1278.9004075290459,1450.0,0.0,1328.9528335578523,50,2,1,2,1,2,2,2,2,3,25.0,2,,2,113643,2,3,0,1,1,752.0,0.0,365.0,43,3.0,0.0,4.0,5.0,2.8,4,4,147.074548509705,750.0,41094.37783758156,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.035284632017812144,14676.563513421986,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +13633,2,63.0,0.0,5,120,385.0,0.0,0.0,75,75,1808.7810895277717,0.0,656.5022091982436,2100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,113645,2,2,2,0,1,,275.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1621.9025810349,385.0,71589.16734781412,5,5,0,1,110.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029334047004586663,47726.11156520941,10,5,10,10_1,10_0,10_0_0 +13634,2,69.0,0.0,5,300,1152.0,0.0,0.0,77,72,0.0,0.0,1964.3910259646145,1152.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,113646,2,1,2,0,1,,230.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1235.33503539879,1152.0,42580.92248503805,5,5,0,1,340.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02705436925197631,28387.281656692034,8,4,8,8_1,8_0,8_0_0 +13635,2,79.0,0.0,1,111,782.0,1799.0,0.0,72,75,0.0,317.83854648245375,1333.4668249169517,2821.0,0.0,3415.4087822436804,33,0,0,0,0,0,0,0,0,0,,1,,1,113647,2,1,2,0,2,,508.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1187.27756907154,782.0,38111.51811799564,5,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07401961767216955,25407.678745330428,7,4,7,7_1,7_3,7_1_0 +13636,2,46.0,0.0,2,111,430.0,400.0,0.0,0,63,0.0,0.0,733.2362336499863,1409.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,113648,2,1,0,1,1,69.0,0.0,324.0,12,1.0,2.0,3.0,1.0,1.0,1,1,219.989312149953,430.0,28636.275649116025,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.049203325783864445,28636.275649116025,8,4,8,8_0,8_4,8_0_1 +13637,2,45.0,0.0,2,111,240.0,90.0,0.0,54,54,0.0,0.0,409.2481304092947,330.0,0.0,170.865364314581,31,2,2,2,2,1,2,2,2,3,45.0,2,,2,113649,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,904.371793162651,240.0,57688.3304803442,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005720394354494952,38458.886986896134,9,5,9,9_0,9_4,9_0_1 +13638,2,45.0,0.0,8,111,1000.0,1600.0,0.0,34,21,0.0,0.0,1705.2005433720612,2600.0,0.0,3037.6064767036623,31,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,113650,2,1,2,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,1350.72296221259,1000.0,34086.11886510793,1,1,1,2,128.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07627738465294961,13634.447546043171,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +13639,1,50.0,262.0,5,111,479.0,0.0,0.0,0,56,0.0,0.0,816.7910602752173,479.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,113651,1,1,0,1,2,783.0,0.0,442.0,32,2.0,1.0,3.0,2.0,1.5,2,2,273.446979590732,479.0,19402.96000217494,0,1,2,3,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02468695497729766,12935.306668116626,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +13640,2,29.0,0.0,7,111,0.0,,,55,45,0.0,0.0,,639.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,113652,2,1,0,0,2,,144.0,150.0,43,2.0,0.0,3.0,3.0,1.8,2,2,118.18100356284391,0.0,32024.799179164766,4,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019953286714619944,17791.55509953598,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +13641,2,52.0,0.0,5,111,862.0,1525.0,0.0,52,47,0.0,0.0,1469.8828683867168,2387.0,0.0,2895.2186731081783,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,113653,2,3,2,0,1,,1570.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1222.68958224864,862.0,100789.12095798217,1,1,0,1,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023683111602839684,40315.64838319287,9,5,9,9_1,9_3,9_0_0 +13642,2,29.0,0.0,6,111,630.0,0.0,0.0,0,38,0.0,0.0,1074.2763423243985,630.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,4,113654,2,1,0,0,1,,0.0,526.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2014.61097025726,630.0,40554.52331747872,0,1,2,3,52.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015534641969974144,40554.52331747872,9,5,9,9_0,9_3,9_0_0 +13643,2,41.0,0.0,1,400,1000.0,0.0,0.0,65,54,0.0,1032.9752760679746,1705.2005433720612,1840.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,113655,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1412.82973871073,1000.0,43383.641714186946,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04241229936670574,20658.877006755687,5,3,5,5_1,5_0,5_1_0 +13644,2,29.0,0.0,9,300,1530.0,0.0,0.0,43,55,0.0,0.0,2608.9568313592536,1530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,23.0,1,2011.0,6,113656,2,1,1,0,1,,305.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,6422.10109834568,1530.0,50556.98700981351,1,1,1,2,123.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030262879386048363,24074.75571895881,6,3,6,6_1,6_0,6_0_0 +13645,2,50.0,0.0,1,111,300.0,600.0,0.0,0,35,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,113657,2,1,0,0,1,,80.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,4125.71339813427,300.0,28702.459988239632,0,1,1,2,63.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03135619735621129,28702.459988239632,8,4,8,8_0,8_3,8_1_0 +13646,2,79.0,0.0,1,111,290.0,1600.0,0.0,0,75,0.0,0.0,494.50815757789775,1890.0,0.0,3037.6064767036623,20,0,0,0,0,0,0,0,0,0,,1,,1,113658,2,2,5,0,2,,150.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1203.14414116538,290.0,18160.393229104353,0,5,0,1,150.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10407263632216032,18160.393229104353,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +13647,2,67.0,0.0,1,111,655.0,1425.0,0.0,75,75,0.0,0.0,1116.9063559087,2080.0,0.0,2705.368268314199,33,0,0,0,0,0,0,0,0,0,,1,,1,113659,2,2,1,0,1,,312.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,921.51652500269,655.0,61768.432856525906,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033674158527404595,41178.955237683935,9,5,9,9_1,9_4,9_1_0 +13648,2,56.0,0.0,6,120,450.0,0.0,0.0,78,63,0.0,158.91927324122688,767.3402445174275,630.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,113660,2,1,2,0,1,,260.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,111.124731261848,450.0,28309.584149042137,5,1,0,1,97.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022253947521207802,18873.056099361424,5,3,5,5_1,5_0,5_0_0 +13649,2,63.0,0.0,1,112,0.0,0.0,0.0,0,78,0.0,79.45963662061344,0.0,1433.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,113661,2,1,2,0,1,,160.0,420.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2073.82552321879,0.0,15481.907378749032,0,5,2,3,70.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09255965463060335,15481.907378749032,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +13650,2,69.0,0.0,5,211,1500.0,0.0,0.0,77,74,0.0,66.2163638505112,2557.8008150580918,1700.0,207.83838380947813,0.0,31,2,2,2,1,2,2,2,2,0,,1,,3,113662,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1735.29642803548,1500.0,38229.13871832616,5,5,0,1,92.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.04446869736003389,25486.092478884108,7,4,7,7_1,7_1,7_0_0 +13651,2,26.0,0.0,9,120,800.0,,,52,85,0.0,0.0,,926.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,113663,2,3,0,0,1,,122.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,115.98107787498805,800.0,12247.082278481013,4,6,0,1,96.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07560984558967544,5831.943942133816,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13652,2,30.0,0.0,9,111,1300.0,0.0,0.0,65,48,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,113664,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,136.268732457907,1300.0,39600.08012086642,1,1,1,2,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03282821640845602,18857.18100993639,5,3,5,5_1,5_3,5_0_0 +13653,2,70.0,0.0,2,111,600.0,0.0,0.0,0,75,2109.365702073203,0.0,1023.1203260232367,2600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,113665,2,1,2,0,1,,300.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,921.865398415733,600.0,19333.701733856476,0,5,0,1,170.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13448019607372833,19333.701733856476,5,3,5,5_1,5_4,5_0_1 +13654,2,67.0,0.0,7,111,0.0,,,0,74,0.0,0.0,,527.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,113666,2,1,0,0,2,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,1,1,137.7739077562758,0.0,25338.527044206272,0,5,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020798367603633065,25338.527044206272,7,4,7,7_1,7_3,7_0_0 +13655,2,64.0,0.0,5,112,0.0,0.0,0.0,0,72,2109.365702073203,0.0,0.0,3069.0,41.567676761895626,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,113667,2,1,1,0,1,,150.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1192.36212585395,0.0,30606.537991399142,0,5,0,1,200.0,10,0,1,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10027269339846379,30606.537991399142,8,4,8,8_1,8_0,8_0_0 +13656,1,38.0,354.0,5,111,610.0,0.0,0.0,85,64,0.0,0.0,1040.1723314569574,672.0,85.9065319745843,0.0,71,2,2,2,1,2,2,2,2,2,40.0,2,,3,113668,1,2,0,1,1,,550.0,317.0,42,1.0,1.0,3.0,4.0,2.1,2,2,1116.78422959453,610.0,16107.847692087795,6,1,2,3,50.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.041718795263385046,7670.40366289895,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13657,2,68.0,0.0,5,111,0.0,0.0,810.0,77,77,0.0,0.0,510.5578152359424,810.0,0.0,969.3530395273915,60,0,0,0,0,0,0,0,0,0,,2,,3,113669,2,1,0,0,1,,200.0,444.0,41,0.0,3.0,4.0,2.0,1.5,2,2,389.490954277481,0.0,31510.01099953802,5,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.025706116066156744,21006.67399969201,5,3,5,5_0,5_3,5_0_0 +13658,2,77.0,0.0,2,111,1177.0,0.0,0.0,77,75,0.0,132.4327277010224,2007.021039548916,1347.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,113670,2,2,4,0,1,,220.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1717.13443108079,1177.0,29808.404581885934,5,5,0,1,40.0,4,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04518859760842582,19872.26972125729,5,3,5,5_1,5_2,5_0_1 +13659,1,62.0,343.0,2,111,480.0,75.0,0.0,0,77,0.0,0.0,818.4962608185893,555.0,0.0,142.38780359548417,50,0,0,0,0,0,0,0,0,0,,2,,2,113671,2,1,0,0,2,,400.0,384.0,31,0.0,3.0,3.0,3.0,2.0,3,3,398.680952717908,480.0,20731.414405162,0,5,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02677096647403895,10365.707202581,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +13660,2,60.0,0.0,2,111,347.0,151.0,0.0,0,52,0.0,0.0,591.7045885501052,498.0,0.0,286.67411123890815,50,2,2,2,2,1,1,2,2,2,7.0,2,,2,113672,1,3,0,1,1,810.0,0.0,393.0,12,1.0,4.0,5.0,1.0,1.0,1,1,279.702779721663,347.0,19018.75758224774,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02618467572586535,19018.75758224774,5,3,5,5_0,5_3,5_0_1 +13661,2,41.0,0.0,5,111,444.0,,,0,42,0.0,0.0,,696.0,349.1684847999233,,20,0,0,0,0,0,0,0,0,0,,1,,3,113673,1,3,0,0,2,,90.0,,32,1.0,0.0,4.0,3.0,2.0,3,1,109.97100549266688,444.0,19391.209236095514,0,4,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035892552729741053,9695.604618047757,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13662,1,36.0,413.0,7,111,160.0,,,0,81,0.0,0.0,,248.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,113674,2,3,0,0,2,,138.0,409.0,32,1.0,0.0,4.0,3.0,1.8,2,1,150.56541477733427,160.0,10931.62886742306,0,4,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02268646356436922,6073.1271485683665,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13663,1,22.0,120.0,2,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,745.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,2,,2,113675,2,1,0,0,1,,60.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2759.61792283735,0.0,13903.806870036298,0,1,2,3,60.0,9,0,8,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05358244738033067,13903.806870036298,3,2,3_1,3_0_1,3_0_1,3_0_1_1 +13664,2,55.0,0.0,5,111,315.0,235.0,0.0,77,21,0.0,0.0,537.1381711621992,550.0,0.0,446.14845126585044,41,0,0,0,0,0,0,0,0,0,,2,,3,113676,2,2,0,1,1,888.0,0.0,353.0,42,1.0,1.0,4.0,3.0,2.0,3,3,1024.72231078043,315.0,19347.97366313277,6,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028426749466173584,9673.986831566384,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +13665,2,79.0,0.0,2,111,725.0,0.0,0.0,74,74,2024.991073990275,0.0,1236.2703939447445,2645.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,113677,2,1,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1925.8299470762,725.0,175875.09666726933,5,5,0,1,160.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015039081996946752,117250.06444484623,10,5,10,10_0,10_3,10_0_1 +13666,1,65.0,57.0,2,111,290.0,0.0,0.0,77,77,0.0,0.0,494.50815757789775,290.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113678,2,2,0,1,1,690.0,398.0,252.0,41,0.0,5.0,2.0,3.0,2.0,3,3,482.378798747324,290.0,29075.988886957493,5,5,2,3,57.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009973865416150444,14537.994443478747,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +13667,2,57.0,0.0,1,112,1200.0,1700.0,0.0,75,31,0.0,66.2163638505112,2046.2406520464733,2950.0,0.0,3227.4568814976415,10,0,0,0,0,0,0,0,0,2,3.0,1,,1,113679,2,1,1,0,1,,224.0,,42,1.0,5.0,10.0,2.0,1.5,2,2,2027.28561106623,1200.0,157311.69134847246,6,1,0,1,240.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.018752579510859384,104874.46089898165,10,5,10,10_1,10_1,10_1_0 +13668,1,86.0,200.0,7,111,250.0,,,86,77,0.0,0.0,,490.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,5,113680,2,2,0,0,2,,700.0,250.0,41,0.0,0.0,2.0,2.0,1.5,2,2,110.32933009817437,250.0,14572.229645093947,7,5,2,3,35.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033625602391255824,9714.819763395964,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13669,2,70.0,0.0,1,111,240.0,500.0,0.0,0,77,0.0,0.0,409.2481304092947,740.0,0.0,949.2520239698945,60,0,0,0,0,0,0,0,0,0,,2,,1,113681,1,2,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2162.24280808407,240.0,21340.980651735346,0,5,0,1,87.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03467507009523608,21340.980651735346,6,3,6,6_0,6_3,6_1_0 +13670,1,60.0,181.0,2,111,203.0,766.0,0.0,0,75,0.0,0.0,346.15571030452844,969.0,0.0,1454.2541007218783,33,0,0,0,0,0,0,0,0,0,,2,,2,113682,2,2,0,0,1,,0.0,573.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2055.96625504538,203.0,4850.49254826059,0,7,2,3,55.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.19977352616436614,4850.49254826059,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13671,2,40.0,0.0,2,111,0.0,0.0,2400.0,68,85,0.0,52.973091080408956,1512.763896995385,2440.0,0.0,2872.157154155234,50,2,2,2,1,2,2,2,2,0,,2,,2,113683,2,3,0,0,1,,500.0,396.0,42,1.0,0.0,3.0,3.0,2.0,3,2,373.008121599155,0.0,28990.10695415768,4,7,2,3,76.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.08416664360219141,14495.05347707884,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +13672,2,51.0,0.0,5,300,750.0,0.0,0.0,52,62,0.0,1258.1109131597127,1278.9004075290459,1740.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,3,113684,2,1,2,0,1,,204.0,500.0,43,2.0,1.0,5.0,2.0,1.5,2,2,1415.81325470426,750.0,20532.74549976865,4,1,2,3,150.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08474268577573346,13688.496999845767,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +13673,2,77.0,0.0,1,112,250.0,0.0,0.0,0,71,0.0,0.0,426.3001358430153,310.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113685,2,1,2,0,2,,140.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1054.44509527951,250.0,9916.229398126434,0,5,0,1,68.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031261882672719454,9916.229398126434,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +13674,2,45.0,0.0,7,111,255.0,600.0,0.0,0,38,0.0,0.0,434.8261385598756,855.0,0.0,1139.1024287638734,41,0,0,0,0,0,0,0,0,2,50.0,2,,5,113686,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1559.7058525533,255.0,31538.697646256187,0,1,1,2,63.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027109553146101233,31538.697646256187,8,4,8,8_0,8_2,8_0_0 +13675,2,53.0,0.0,2,112,667.0,1455.0,0.0,56,38,0.0,5164.876380339873,1137.3687624291647,6022.0,0.0,2762.323389752393,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,113687,2,1,1,0,1,,440.0,,43,2.0,0.0,7.0,4.0,2.5,4,4,1935.91933893142,667.0,87555.80137390606,1,1,0,1,160.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06877899471541717,35022.32054956242,9,5,9,9_1,9_0,9_0_1 +13676,2,39.0,0.0,1,111,350.0,1300.0,0.0,52,54,0.0,0.0,596.8201901802214,1650.0,0.0,2468.055262321726,43,0,0,0,0,0,0,0,0,1,15.0,1,,1,113688,1,2,3,0,2,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1478.86971817654,350.0,46599.39018559206,1,1,1,2,74.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03540818867861835,22190.185802662887,6,3,6,6_1,6_3,6_1_0 +13677,2,57.0,0.0,1,111,570.0,1103.0,0.0,0,52,0.0,0.0,971.9643097220749,1673.0,0.0,2094.049964877587,70,0,0,0,0,0,0,0,0,2,10.0,2,,1,113689,1,1,0,0,1,,320.0,409.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1379.5231726606,570.0,46101.77429757137,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03628927574894082,30734.516198380912,8,4,8,8_0,8_3,8_1_0 +13678,2,84.0,0.0,1,111,672.0,1438.0,0.0,0,72,0.0,0.0,1145.894765146025,2110.0,0.0,2730.0488209374166,41,2,2,2,2,1,2,2,2,0,,2,,1,113690,2,3,0,0,2,,0.0,530.0,11,0.0,0.0,5.0,1.0,1.0,1,1,2201.1296959061,672.0,17287.377716678653,0,5,2,3,120.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.122054370222055,17287.377716678653,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +13679,1,54.0,313.0,5,211,600.0,,,0,56,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,113691,1,2,0,0,2,,600.0,305.0,32,1.0,0.0,3.0,2.0,1.3,1,1,86.29636176633944,600.0,9371.0,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06402731832248426,7208.461538461538,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +13680,1,44.0,467.0,9,111,700.0,,,85,63,0.0,0.0,,700.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,113692,2,1,0,0,2,,700.0,619.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,70.2479314292964,700.0,18945.24376439133,6,1,2,3,102.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03694858766165311,7286.632217073589,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13681,2,45.0,0.0,2,111,643.5,337.59,0.0,56,47,0.0,0.0,1097.2965496599213,981.0,0.0,640.9159815439933,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,113693,2,1,0,1,1,,437.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,2300.9914132972,643.5,43902.715282597484,1,1,1,2,86.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02234485939389851,17561.086113038993,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +13682,2,75.0,0.0,7,111,470.0,0.0,0.0,0,90,0.0,0.0,801.4442553848687,470.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,113694,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1086.48340697177,470.0,21820.998723561544,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021538885820680177,21820.998723561544,6,3,6,6_0,6_4,6_0_0 +13683,1,46.0,367.0,2,111,0.0,0.0,0.0,84,64,0.0,0.0,0.0,650.0,0.0,0.0,71,2,2,2,1,1,1,2,2,0,,1,,2,113695,1,3,3,0,2,,109.0,800.0,42,1.0,2.0,3.0,3.0,1.8,2,2,662.555385137709,0.0,9275.836961962403,3,4,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,1,1,0,1,0.07007453911334008,5153.242756645779,1,1,1_1,1_1_1,1_4_1,1_0_1_1 +13684,2,54.0,0.0,1,111,1200.0,1350.0,0.0,75,47,0.0,728.3800023556231,2046.2406520464733,3100.0,0.0,2562.980464718715,31,0,0,0,0,0,0,0,0,2,60.0,1,,1,113696,2,1,3,0,1,,638.0,,42,1.0,1.0,6.0,4.0,2.5,4,2,1066.74172135134,1200.0,41030.45105895193,5,1,0,1,110.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07555364174636947,16412.180423580772,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +13685,1,32.0,413.0,5,111,720.0,,,0,56,0.0,0.0,,996.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,113697,1,2,0,0,2,,360.0,400.0,32,1.0,0.0,4.0,3.0,1.6,1,1,136.20803607403548,720.0,3929.533540550222,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2534651987880826,2455.9584628438884,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +13686,2,86.0,0.0,7,111,240.0,,,0,77,0.0,0.0,,340.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,5,113698,2,1,0,0,2,,280.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,179.92393779837042,240.0,11345.473684210527,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029967898164814162,11345.473684210527,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +13687,2,38.0,0.0,9,120,700.0,0.0,0.0,46,46,0.0,238.3789098618403,1193.6403803604428,880.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,113699,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2170.20011069785,700.0,28945.852287493657,1,1,1,2,110.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03040159229929508,13783.739184520788,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +13688,2,44.0,0.0,9,112,1000.0,,,52,23,0.0,0.0,,1066.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,2,40.0,1,2012.0,6,113700,2,1,0,0,2,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,161.41155737136756,1000.0,76920.18442092037,1,1,1,2,250.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01385852111542877,36628.659248057316,9,5,9,9_1,9_1,9_0_0 +13689,2,40.0,0.0,6,111,600.0,0.0,0.0,52,47,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,113701,2,2,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,158.74246249154,600.0,68793.60726290947,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008721740636553217,28664.003026212282,8,4,8,8_0,8_4,8_0_0 +13690,2,42.0,0.0,2,111,0.0,0.0,903.0,52,62,0.0,0.0,569.1774162445137,903.0,0.0,1080.6491292509068,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,113702,2,1,0,1,1,,0.0,381.0,43,2.0,0.0,4.0,4.0,2.1,2,2,618.277811267757,0.0,40812.06754469863,1,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02212580872093791,19434.31787842792,5,3,5,5_0,5_4,5_0_1 +13691,2,74.0,0.0,2,111,100.0,,,78,77,0.0,0.0,,121.0,29.09737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,2,113703,1,2,0,0,2,,300.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,85.42435011149784,100.0,43863.21605221416,5,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002758575656102446,29242.144034809437,8,4,8,8_1,8_2,8_0_1 +13692,0,29.0,0.0,1,120,0.0,0.0,0.0,67,65,0.0,0.0,0.0,740.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,113704,2,2,0,0,2,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,988.179528949722,0.0,46593.912848467604,1,1,5,0,45.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015881902908790314,31062.60856564507,8,4,8,8_0,8_0,8_1_0 +13693,2,71.0,0.0,6,112,1479.0,0.0,0.0,77,74,0.0,0.0,2521.9916036472787,1599.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,113705,2,1,2,0,1,,288.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,891.323000146709,1479.0,41835.042579318586,5,5,1,2,96.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03822154589584368,27890.02838621239,7,4,7,7_1,7_0,7_0_0 +13694,2,71.0,0.0,5,111,415.0,1505.0,0.0,78,75,0.0,0.0,707.6582254994054,1920.0,0.0,2857.2485921493826,50,0,0,0,0,0,0,0,0,0,,1,,3,113706,1,1,3,0,1,,140.0,437.0,41,0.0,3.0,5.0,2.0,1.5,2,2,91.288523833447,415.0,28232.08946495866,7,5,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06800771874795458,18821.392976639105,5,3,5,5_1,5_3,5_0_0 +13695,2,74.0,0.0,6,112,600.0,0.0,0.0,0,86,0.0,0.0,1023.1203260232367,1800.0,1662.707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,113707,2,1,1,0,1,,480.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,415.135488340569,600.0,31579.794359112242,0,6,0,1,50.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0569984712228063,31579.794359112242,8,4,8,8_1,8_1,8_0_0 +13696,2,26.0,0.0,7,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,236.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,35.0,2,,5,113708,2,1,0,1,1,382.0,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,926.159345053431,0.0,17070.025661892563,0,1,2,3,37.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013825403937549474,17070.025661892563,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +13697,0,75.0,0.0,5,111,250.0,0.0,0.0,0,77,3691.3899786281054,0.0,426.3001358430153,3830.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,113709,2,2,3,0,1,,250.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1622.97969691214,250.0,18501.902051368896,0,5,0,1,85.0,9,7,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2070057440238492,18501.902051368896,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +13698,2,83.0,0.0,1,400,400.0,0.0,0.0,78,75,2141.006187604301,132.4327277010224,682.0802173488245,2626.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113710,2,1,2,0,1,,160.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1370.19324384682,400.0,42625.84480793887,5,5,0,1,111.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06160581712414341,28417.229871959247,8,4,8,8_1,8_0,8_1_0 +13699,1,79.0,126.0,2,111,291.0,0.0,0.0,0,77,0.0,0.0,496.2133581212698,291.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,8,,2,113711,2,1,0,1,1,,0.0,265.0,11,0.0,6.0,4.0,1.0,1.0,1,1,298.964767448995,291.0,10951.701034960262,0,5,2,3,70.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0265712147429028,10951.701034960262,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +13700,2,54.0,0.0,1,112,2600.0,0.0,0.0,54,33,0.0,529.7309108040896,4433.521412767359,3100.0,138.5589225396521,0.0,20,2,2,1,2,1,2,2,2,2,15.0,1,,1,113712,2,2,1,0,1,,333.0,,43,2.0,0.0,9.0,5.0,2.8,4,4,1395.8263122056,2600.0,76550.28371965823,1,1,0,1,210.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.040496257484202054,27339.38704273508,7,4,7,7_1,7_0,7_1_0 +13701,2,68.0,0.0,2,111,200.0,0.0,0.0,0,78,1582.0242765549024,0.0,341.04010867441224,1720.0,27.711784507930417,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,113713,2,1,0,1,1,,140.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,425.334070128993,200.0,10268.511836064448,0,5,0,1,45.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1675023632888185,10268.511836064448,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +13702,2,41.0,0.0,8,111,567.0,0.0,0.0,52,47,2934.1276915838253,529.7309108040896,966.8487080919587,3849.0,138.5589225396521,0.0,12,0,0,0,0,0,0,0,0,0,,1,2001.0,6,113714,2,1,1,0,1,,185.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,834.676537549271,567.0,65606.2516159952,1,4,1,2,130.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058668189466590255,31241.072198092956,8,4,8,8_1,8_2,8_0_0 +13703,1,76.0,223.0,2,111,157.0,59.0,0.0,0,78,0.0,0.0,267.7164853094136,216.0,0.0,112.01173882844755,70,0,0,0,0,0,0,0,0,0,,8,,2,113715,1,2,0,3,1,360.0,0.0,210.0,11,0.0,1.0,1.0,1.0,1.0,1,1,331.518541437844,157.0,9833.723544784367,0,5,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02196523005922437,9833.723544784367,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +13704,2,45.0,0.0,9,111,600.0,0.0,0.0,90,52,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,15.0,2,2004.0,6,113716,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,760.315072639525,600.0,28615.29754367999,1,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02096780573691839,14307.648771839995,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +13705,2,30.0,0.0,9,111,280.0,400.0,0.0,0,43,0.0,0.0,477.4561521441771,680.0,0.0,759.4016191759156,33,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,113717,2,1,0,1,1,,0.0,730.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1458.88863330894,280.0,26284.607189022012,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025870654832688834,26284.607189022012,7,4,7,7_0,7_4,7_0_0 +13706,1,47.0,254.0,2,111,280.0,280.0,0.0,0,85,0.0,0.0,477.4561521441771,560.0,0.0,531.581133423141,71,2,2,2,2,2,2,2,1,0,,2,,2,113718,2,2,0,1,1,31.0,60.0,251.0,11,0.0,0.0,3.0,1.0,1.0,1,1,465.940187080924,280.0,9895.216382128716,0,7,2,3,63.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.056593001949041724,9895.216382128716,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +13707,2,31.0,0.0,1,112,1500.0,0.0,0.0,34,53,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,12.0,1,,1,113719,2,2,1,0,1,,200.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,736.871406704478,1500.0,48693.685702509676,1,1,1,2,165.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030804815416194505,32462.45713500645,8,4,8,8_1,8_0,8_1_0 +13708,2,81.0,0.0,1,112,330.0,330.0,0.0,0,77,0.0,0.0,562.7161793127802,1787.0,0.0,626.5063358201304,60,0,0,0,0,0,0,0,0,0,,2,,1,113720,2,1,0,1,1,,0.0,450.0,11,0.0,0.0,3.0,1.0,1.0,1,1,883.821710785108,330.0,16276.669255484703,0,5,2,3,75.0,9,3,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10978904663789489,16276.669255484703,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +13709,2,20.0,0.0,7,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2520.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,113721,2,1,1,0,1,,189.0,600.0,22,1.0,0.0,4.0,2.0,1.5,2,2,883.391560362663,0.0,9887.427461525178,0,1,2,3,80.0,8,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.25486912645438303,6591.618307683452,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +13710,2,28.0,0.0,2,111,260.0,0.0,0.0,56,64,0.0,0.0,443.3521412767359,260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,113722,2,1,0,1,1,760.0,0.0,300.0,43,2.0,0.0,4.0,2.0,1.5,2,2,374.765058176883,260.0,28913.054768325415,4,1,2,3,69.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008992477691593937,19275.369845550278,5,3,5,5_0,5_3,5_0_1 +13711,1,54.0,415.0,5,111,500.0,600.0,0.0,0,62,0.0,0.0,852.6002716860306,1100.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,3,113723,1,2,0,1,2,660.0,0.0,374.0,32,1.0,3.0,4.0,5.0,2.5999999999999996,3,3,164.219694542159,500.0,20699.04214047091,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05314255570547743,7961.170054027274,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +13712,2,51.0,0.0,5,111,2385.0,0.0,0.0,54,35,0.0,0.0,4066.9032959423657,2385.0,0.0,0.0,31,2,1,2,1,1,2,2,2,0,,1,,3,113724,2,2,4,1,2,,0.0,,43,3.0,0.0,7.0,5.0,2.8,5,3,361.933617392143,2385.0,58873.62199108851,1,1,1,2,183.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.040510502315638214,21026.2935682459,5,3,5,5_1,5_4,5_0_0 +13713,2,68.0,0.0,2,111,390.0,967.0,0.0,0,64,0.0,0.0,665.0282119151038,1357.0,0.0,1835.853414357776,50,0,0,0,0,0,0,0,0,0,,1,,2,113725,1,3,1,0,1,,340.0,458.0,22,3.0,1.0,5.0,3.0,2.0,3,3,297.150519162198,390.0,47424.953602455,0,1,2,3,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028613628415437256,23712.4768012275,6,3,6,6_1,6_3,6_0_1 +13714,1,24.0,166.0,1,111,430.0,0.0,0.0,55,53,0.0,0.0,733.2362336499863,430.0,0.0,0.0,41,2,1,2,2,1,2,2,1,0,,2,,1,113726,2,2,0,1,1,220.0,0.0,209.0,43,2.0,0.0,1.0,2.0,1.5,2,2,694.882904013752,430.0,9368.769229299596,1,4,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.04589717063957893,6245.8461528663975,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +13715,2,39.0,0.0,9,111,537.0,1397.0,0.0,62,37,0.0,0.0,915.6926917907969,1934.0,0.0,2652.210154971885,31,0,0,0,0,0,0,0,0,3,45.0,1,2007.0,6,113727,2,1,1,0,1,,445.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,445.46693831822,537.0,65359.90038209848,1,1,1,2,136.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029590008379659437,31123.76208671356,8,4,8,8_1,8_4,8_0_0 +13716,2,35.0,0.0,6,111,340.0,0.0,0.0,0,37,0.0,0.0,579.7681847465008,340.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,4,113728,2,1,0,0,1,,150.0,427.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1871.29952011659,340.0,62740.0,0,1,3,4,43.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005419190309212623,62740.0,10,5,10,10_0,10_2,10_0_0 +13717,2,35.0,0.0,2,111,300.0,,,54,47,0.0,0.0,,344.0,60.965925917446924,,20,0,0,0,0,0,0,0,0,0,,2,,2,113729,1,2,0,0,2,,400.0,200.0,43,2.0,0.0,4.0,5.0,2.4,2,2,74.14116255793883,300.0,49270.53498476865,4,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006981860458920187,20529.389576986938,5,3,5,5_0,5_3,5_0_1 +13718,1,22.0,270.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,709.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,113730,1,1,0,0,2,,0.0,590.0,22,1.0,0.0,4.0,2.0,1.5,2,2,1635.32560776103,0.0,8569.543020038624,0,1,2,3,65.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08273486676501969,5713.028680025749,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13719,0,54.0,0.0,5,111,500.0,1800.0,0.0,0,62,0.0,0.0,852.6002716860306,2300.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,0,,1,,3,113731,2,1,2,0,1,,500.0,,22,2.0,1.0,6.0,3.0,2.0,3,3,1210.89622797239,500.0,69200.08224275312,0,1,0,1,103.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033236954718227435,34600.04112137656,9,5,9,9_1,9_2,9_0_0 +13720,2,59.0,0.0,1,112,1200.0,0.0,0.0,54,47,0.0,132.4327277010224,2046.2406520464733,1360.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,113732,2,1,2,0,1,,500.0,,43,2.0,6.0,7.0,2.0,1.5,2,2,357.162198064591,1200.0,57549.625303566085,1,1,0,1,220.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023631778535936482,38366.41686904406,9,5,9,9_1,9_0,9_1_0 +13721,2,78.0,0.0,1,112,428.0,2490.0,0.0,0,78,0.0,0.0,729.8258325632422,2918.0,0.0,4727.275079370074,70,1,2,2,2,2,2,2,1,0,,1,,1,113733,2,1,3,0,2,,101.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1610.63419695596,428.0,12088.03202306542,0,5,0,1,106.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.24139578671136086,12088.03202306542,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +13722,1,88.0,270.0,5,111,350.0,80.0,0.0,0,78,0.0,0.0,596.8201901802214,430.0,0.0,151.8803238351831,41,0,0,0,0,0,0,0,0,0,,2,,3,113734,2,1,0,1,1,768.0,240.0,338.0,11,0.0,5.0,2.0,1.0,1.0,1,1,336.956566246282,350.0,9905.356896678195,0,5,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043410853792073094,9905.356896678195,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +13723,2,53.0,0.0,7,111,630.0,,,0,43,0.0,0.0,,725.0,131.6309764126695,,33,0,0,0,0,0,0,0,0,0,,1,,5,113735,2,1,0,0,2,,660.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,86.85788013858651,630.0,126662.33043352203,0,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00572388015851731,84441.55362234802,10,5,10,10_1,10_2,10_0_0 +13724,2,62.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,113736,2,1,0,1,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,596.150118029257,300.0,25600.404578059704,0,5,0,1,84.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011718564801788671,25600.404578059704,7,4,7,7_0,7_3,7_0_1 +13725,2,27.0,0.0,9,111,0.0,0.0,0.0,52,47,0.0,0.0,0.0,524.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,2,2008.0,6,113737,2,1,0,0,1,,0.0,620.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1824.58361392218,0.0,29310.62112045665,4,1,2,3,71.0,7,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017877478537440022,19540.414080304432,5,3,5,5_0,5_2,5_0_0 +13726,2,49.0,0.0,7,111,0.0,0.0,1400.0,34,48,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,113738,2,1,2,0,1,,450.0,1250.0,43,2.0,2.0,5.0,3.0,2.0,3,2,836.39086667275,0.0,66135.13376394245,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021168778534523723,33067.56688197122,8,4,8,8_1,8_4,8_0_0 +13727,2,36.0,0.0,5,111,600.0,0.0,0.0,31,37,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,2,2,2,1,1,2,2,2,1,15.0,2,,3,113739,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,236.736146718128,600.0,80119.51429722026,1,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.007488812248339066,44510.84127623348,10,5,10,10_0,10_4,10_0_0 +13728,0,64.0,0.0,7,111,1200.0,0.0,0.0,0,53,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,113740,2,1,2,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1507.51244614029,1200.0,27002.0,0,1,5,0,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044441152507221686,27002.0,7,4,7,7_1,7_2,7_0_0 +13729,2,58.0,0.0,6,111,1385.0,0.0,0.0,0,46,0.0,0.0,2361.7027525703047,1385.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,4,113741,1,3,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,454.930031093984,1385.0,8497.65259187295,0,4,0,1,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.16298618765900091,8497.65259187295,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +13730,1,48.0,271.0,2,111,200.0,180.0,0.0,0,63,0.0,0.0,341.04010867441224,380.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,0,,1,,2,113742,2,1,2,0,1,,150.0,453.0,12,1.0,2.0,5.0,1.0,1.0,1,1,220.358638447551,200.0,10654.57591453634,0,4,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03566542704731731,10654.57591453634,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +13731,1,50.0,279.0,2,111,300.0,0.0,0.0,0,52,0.0,0.0,511.56016301161833,380.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113743,1,2,0,1,1,325.0,0.0,335.0,32,2.0,1.0,3.0,3.0,2.0,3,2,291.991628814431,300.0,16125.420911717161,0,4,2,3,75.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02356527634722898,8062.710455858581,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13732,2,70.0,0.0,5,400,1260.0,0.0,0.0,0,78,0.0,13.243272770102239,2148.552684648797,1398.0,177.35542085075468,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,113744,2,2,2,0,1,,84.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1518.18264196623,1260.0,14624.228171078585,0,5,0,1,98.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09559478856906353,14624.228171078585,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +13733,0,48.0,0.0,1,112,1500.0,0.0,0.0,54,62,0.0,0.0,2557.8008150580918,1620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,113745,1,1,2,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,879.920407570963,1500.0,59873.53458613367,1,1,0,1,120.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027057029640858748,26031.971559188554,7,4,7,7_1,7_0,7_1_0 +13734,2,49.0,0.0,2,111,550.0,1600.0,0.0,0,37,0.0,0.0,937.8602988546337,2150.0,0.0,3037.6064767036623,42,2,2,2,2,2,2,2,1,2,20.0,1,,2,113746,1,1,3,0,1,,300.0,713.0,32,1.0,1.0,5.0,2.0,1.5,2,1,1372.89027093485,550.0,46189.62609629493,0,1,2,3,120.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04654724841283053,30793.08406419662,8,4,8,8_1,8_2,8_0_1 +13735,2,86.0,0.0,2,111,520.0,1800.0,0.0,0,74,0.0,0.0,886.7042825534718,2320.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,0,,1,,2,113747,2,1,2,0,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,128.370109237816,520.0,18505.908282284283,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12536536789285493,18505.908282284283,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +13736,2,58.0,0.0,9,120,515.0,0.0,0.0,77,55,0.0,264.8654554020448,878.1782798366115,2615.0,2632.61952825339,0.0,70,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,113748,2,1,1,0,1,,450.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,199.496580158418,515.0,56513.321390947334,5,1,1,2,140.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04627227591013413,37675.54759396489,9,5,9,9_1,9_0,9_0_0 +13737,2,51.0,0.0,2,111,634.0,935.0,0.0,55,43,0.0,0.0,1081.0971444978868,1569.0,0.0,1775.1012848237026,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,113749,2,1,1,0,1,,426.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,1304.61885848043,634.0,61146.7703367421,1,1,0,1,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025659572719202366,30573.38516837105,8,4,8,8_1,8_3,8_0_1 +13738,1,31.0,300.0,9,111,320.0,,,0,85,0.0,0.0,,460.0,193.98249155551292,,43,0,0,0,0,0,0,0,0,0,,2,2008.0,6,113750,2,1,0,0,2,,420.0,490.0,31,0.0,0.0,3.0,4.0,1.9,1,1,85.6978773607263,320.0,16353.9460688336,0,6,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028127767944437658,8607.340036228212,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +13739,2,30.0,0.0,1,211,0.0,0.0,0.0,55,63,0.0,0.0,0.0,890.0,27.711784507930417,0.0,43,1,2,2,2,1,2,2,2,4,150.0,2,,1,113751,1,1,0,0,1,,253.0,437.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2976.71954073065,0.0,31961.010918051696,4,1,2,3,60.0,1,2,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.027846428333633363,21307.340612034463,6,3,6,6_0,6_1,6_1_0 +13740,2,43.0,0.0,2,120,496.0,540.0,0.0,46,38,0.0,0.0,845.7794695125424,1036.0,0.0,1025.192185887486,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,113752,2,1,3,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,281.363224087659,496.0,43947.172491683195,1,1,1,2,92.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02357375779286047,20927.224996039615,5,3,5,5_1,5_0,5_0_1 +13741,2,64.0,0.0,2,120,560.0,0.0,0.0,77,78,1687.4925616585624,0.0,954.9123042883542,2160.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113753,2,2,2,0,2,,164.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1738.53145540101,560.0,33161.34515780111,5,5,0,1,110.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06513607906197576,22107.56343853407,6,3,6,6_1,6_1,6_0_1 +13742,2,65.0,0.0,5,112,300.0,1100.0,0.0,0,75,0.0,331.081819252556,511.56016301161833,1650.0,0.0,2088.354452733768,60,0,0,0,0,0,0,0,0,0,,1,,3,113754,2,2,2,0,1,,183.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1419.3599519475,300.0,23797.450911420572,0,5,0,1,100.0,4,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06933515720409167,23797.450911420572,6,3,6,6_1,6_0,6_0_0 +13743,2,70.0,0.0,2,112,1514.0,0.0,0.0,78,72,0.0,0.0,2581.6736226653006,1514.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113755,2,2,1,0,2,,180.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,690.742912174662,1514.0,28406.367568669004,5,5,0,1,140.0,7,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053297909221940665,18937.57837911267,5,3,5,5_1,5_0,5_0_1 +13744,2,52.0,0.0,2,111,530.0,1120.0,0.0,56,62,0.0,0.0,903.7562879871924,1650.0,0.0,2126.324533692564,50,2,2,2,2,1,2,2,2,0,,2,,2,113756,1,3,0,0,1,,395.0,307.0,43,2.0,1.0,3.0,2.0,1.5,2,2,563.517216803024,530.0,39668.517712638815,1,4,2,3,70.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.041594697637877515,26445.678475092544,7,4,7,7_0,7_2,7_0_1 +13745,2,47.0,0.0,9,112,2000.0,0.0,0.0,56,67,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,42,2,2,2,2,1,2,2,2,2,5.0,1,2011.0,6,113757,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,185.707513303829,2000.0,30984.541510173185,1,1,1,2,91.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.06454831675799812,12393.816604069274,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +13746,2,69.0,0.0,6,111,689.0,0.0,0.0,75,77,0.0,0.0,1174.8831743833503,839.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,113758,2,1,2,0,1,,376.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,843.302425550514,689.0,60452.111376642046,5,5,0,1,143.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013878754288211335,40301.40758442803,9,5,9,9_1,9_2,9_0_0 +13747,2,56.0,0.0,2,111,360.0,1900.0,0.0,47,52,0.0,0.0,613.872195613942,2260.0,0.0,3607.1576910855993,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,113759,2,1,2,0,1,,240.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1349.75654682531,360.0,42372.82544343344,1,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05333607037881007,28248.55029562229,8,4,8,8_1,8_3,8_0_1 +13748,2,78.0,0.0,2,111,2200.0,,,85,78,0.0,0.0,,2510.0,429.5326598729215,,50,0,0,0,0,0,0,0,0,0,,1,,2,113760,2,1,0,0,2,,800.0,,41,0.0,9.0,3.0,3.0,2.0,3,2,51.86893198137116,2200.0,16633.1758607101,7,5,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15090323225217459,8316.58793035505,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +13749,2,54.0,0.0,5,111,350.0,1400.0,0.0,85,37,0.0,0.0,596.8201901802214,1750.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,3,60.0,1,,3,113761,2,2,1,0,1,,550.0,,42,2.0,1.0,5.0,4.0,2.5,4,4,596.424103703575,350.0,62890.9759366778,5,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027825931684730083,25156.390374671122,7,4,7,7_1,7_4,7_0_0 +13750,2,51.0,0.0,1,112,240.0,0.0,0.0,0,34,0.0,847.5694572865433,409.2481304092947,1080.0,277.1178450793042,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,113762,2,1,1,0,1,,96.0,,32,1.0,0.0,7.0,2.0,1.3,1,1,1357.23310250335,240.0,53868.18592963877,0,1,1,2,160.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020048939487412255,41437.06609972213,9,5,9,9_1,9_0,9_1_0 +13751,2,29.0,0.0,2,111,250.0,360.0,0.0,47,47,0.0,0.0,426.3001358430153,610.0,0.0,683.461457258324,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,113763,1,2,0,1,2,466.0,0.0,551.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1691.09751604789,250.0,40723.706472347956,1,1,2,3,61.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014978990196145327,27149.137648231972,7,4,7,7_0,7_3,7_0_1 +13752,2,39.0,0.0,8,111,1740.0,,,67,33,0.0,0.0,,1800.0,83.13535352379125,,12,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,113764,2,1,0,0,2,,210.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,160.468536908104,1740.0,103298.49848916435,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017425229081996903,49189.761185316354,10,5,10,10_1,10_2,10_0_0 +13753,1,56.0,249.0,7,111,700.0,1400.0,0.0,0,77,0.0,0.0,1193.6403803604428,2100.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,5,113765,2,1,1,0,1,,140.0,348.0,11,0.0,1.0,4.0,1.0,1.0,1,1,2293.31071033308,700.0,9394.067536397779,0,7,2,3,75.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.223545337721221,9394.067536397779,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +13754,2,53.0,0.0,2,111,0.0,0.0,468.0,0,52,0.0,0.0,294.98895991410006,468.0,0.0,560.0706450602706,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,113766,2,1,0,1,1,66.0,107.0,178.0,12,1.0,0.0,2.0,1.0,1.0,1,1,426.24826318883,0.0,19918.62262640232,0,1,2,3,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023495600513042586,19918.62262640232,5,3,5,5_0,5_2,5_0_1 +13755,1,23.0,425.0,2,111,420.0,1140.0,0.0,63,85,0.0,0.0,716.1842282162656,1560.0,0.0,2164.2946146513596,60,2,2,1,2,1,2,2,2,0,,2,,2,113767,2,1,0,0,1,,0.0,416.0,42,1.0,0.0,4.0,4.0,2.1,2,2,389.075544746214,420.0,24911.651037500797,4,6,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.062621301079228,11862.690970238475,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +13756,2,44.0,0.0,2,111,400.0,940.0,0.0,0,43,0.0,0.0,682.0802173488245,1340.0,0.0,1784.5938050634018,33,0,0,0,0,0,0,0,0,2,20.0,2,,2,113768,2,3,0,0,2,,0.0,560.0,12,1.0,2.0,2.0,1.0,1.0,1,1,661.870947353088,400.0,36460.858558893335,0,1,2,3,58.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03675174016639152,36460.858558893335,9,5,9,9_0,9_3,9_0_1 +13757,2,55.0,0.0,6,112,1400.0,0.0,0.0,34,31,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,113769,2,1,1,0,1,,300.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,224.244311632513,1400.0,146073.6593156447,1,1,0,1,140.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009584205712097595,97382.43954376313,10,5,10,10_1,10_0,10_0_0 +13758,2,63.0,0.0,2,111,388.0,1056.0,0.0,54,74,0.0,0.0,661.6178108283598,1444.0,0.0,2004.8202746244172,50,0,0,0,0,0,0,0,0,0,,1,,2,113770,2,1,2,0,1,,272.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,313.942642581445,388.0,55571.6544519006,1,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0259844702167332,27785.8272259503,7,4,7,7_1,7_2,7_0_1 +13759,2,48.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2069.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,113771,2,1,0,0,1,,0.0,440.0,32,2.0,0.0,5.0,4.0,2.1,3,2,1249.2320919446,0.0,24762.38711586734,0,4,2,3,83.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08355414162288975,11791.61291231778,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +13760,2,65.0,0.0,1,112,492.0,1556.0,0.0,0,86,0.0,0.0,838.958667339054,2048.0,0.0,2954.0722985943116,71,2,2,2,2,1,2,2,2,0,,1,,1,113772,2,1,1,0,1,,86.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,2600.02586521007,492.0,17971.867470571447,0,5,0,1,80.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.11395588151056403,17971.867470571447,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +13761,2,42.0,0.0,5,111,270.0,1000.0,0.0,0,46,0.0,0.0,460.40414671045653,1270.0,0.0,1898.504047939789,42,0,0,0,0,0,0,0,0,2,30.0,2,,3,113773,1,1,0,0,1,,0.0,285.0,32,1.0,0.0,1.0,2.0,1.3,1,1,674.257180353883,270.0,23819.239193083573,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.053318243698093085,18322.491686987363,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +13762,2,41.0,0.0,1,112,1600.0,0.0,0.0,56,11,0.0,927.0290939071567,2728.320869395298,2300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,113774,2,1,1,0,1,,800.0,,43,2.0,0.0,10.0,7.0,3.4,4,4,844.606003582323,1600.0,49968.19425236261,1,1,1,2,300.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04602927991321701,14696.527721283122,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +13763,2,39.0,0.0,9,111,1450.0,2740.0,0.0,54,21,0.0,0.0,2472.540787889489,4190.0,0.0,5201.901091355022,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,113775,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,372.535316364544,1450.0,82703.5133547471,1,1,1,2,430.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050662902094950696,34459.79723114463,9,5,9,9_1,9_2,9_0_0 +13764,1,48.0,61.0,5,111,450.0,0.0,0.0,85,63,0.0,0.0,767.3402445174275,700.0,346.39730634913025,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,113776,1,3,0,1,1,192.0,0.0,389.0,42,1.0,0.0,2.0,4.0,2.1,2,2,559.520904350666,450.0,17670.32360375273,6,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03961444146112512,8414.439811310824,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +13765,2,62.0,0.0,2,111,312.0,463.0,0.0,77,67,0.0,0.0,532.0225695320831,775.0,0.0,879.0073741961223,71,2,2,1,1,2,2,2,2,0,,2,,2,113777,2,2,0,1,1,916.0,0.0,339.0,42,1.0,2.0,4.0,2.0,1.5,2,2,230.912881779373,312.0,19160.81226490724,5,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04044713706732578,12773.874843271493,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +13766,2,44.0,0.0,1,221,450.0,0.0,0.0,47,43,2720.0270728233954,185.40581878143135,767.3402445174275,3265.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113778,2,1,2,0,1,,320.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1643.25626674754,450.0,67231.71950790573,1,1,0,1,120.0,1,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04856338680458814,29231.182394741623,8,4,8,8_1,8_1,8_1_0 +13767,2,57.0,0.0,1,222,550.0,0.0,0.0,0,11,0.0,2132.1669159864605,937.8602988546337,2224.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,113779,1,2,2,0,1,,226.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,1245.64024085443,550.0,11057.463675926763,0,1,0,1,80.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20113111516177773,7371.642450617842,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +13768,2,64.0,0.0,8,111,274.0,,,0,77,0.0,0.0,,448.0,241.09252521899464,,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113780,2,1,0,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,95.21325185096661,274.0,25094.107218607474,0,5,1,2,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017852796917509167,25094.107218607474,7,4,7,7_1,7_2,7_0_0 +13769,2,47.0,0.0,2,111,0.0,0.0,1700.0,85,45,0.0,463.51454695357836,1071.5410937050644,2050.0,0.0,2034.4446508599572,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,113781,2,1,2,0,1,,600.0,,42,2.0,0.0,6.0,4.0,2.5,4,4,357.990174963249,0.0,34107.57160344155,7,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06010395650076562,13643.02864137662,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +13770,2,49.0,0.0,2,111,293.0,1200.0,0.0,55,62,0.0,0.0,499.62375920801395,3149.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,0,,1,,2,113782,2,1,3,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,340.005297897386,293.0,44703.110972423754,1,1,0,1,77.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07044252472590869,29802.073981615835,8,4,8,8_1,8_3,8_0_1 +13771,2,91.0,0.0,1,120,250.0,0.0,0.0,0,71,2636.7071275915036,0.0,426.3001358430153,2810.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113783,1,2,4,0,2,,50.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,326.593258822922,250.0,15532.361449102948,0,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1809126068310938,15532.361449102948,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +13772,2,36.0,0.0,1,112,900.0,0.0,0.0,45,46,2636.7071275915036,0.0,1534.680489034855,3400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,1,113784,1,1,2,0,1,,600.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1840.3493283727,900.0,71427.92932832913,1,1,1,2,170.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047600427899448024,39682.18296018285,9,5,9,9_1,9_0,9_1_0 +13773,2,50.0,0.0,7,111,420.0,,,0,56,0.0,0.0,,672.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,113785,1,2,0,0,2,,300.0,,32,1.0,0.0,6.0,3.0,2.0,3,2,108.8114209744089,420.0,20882.22185467309,0,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032180483699325205,10441.110927336546,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +13774,1,40.0,300.0,6,111,600.0,,,0,46,0.0,0.0,,670.0,96.99124577775646,,31,0,0,0,0,0,0,0,0,0,,2,,4,113786,2,3,0,0,2,,400.0,450.0,32,1.0,0.0,3.0,2.0,1.5,2,1,162.4199888992323,600.0,22092.892967087333,0,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030326494633279844,14728.595311391555,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +13775,2,87.0,0.0,1,111,360.0,2055.0,0.0,0,77,0.0,0.0,613.872195613942,2415.0,0.0,3901.425818516266,50,0,0,0,0,0,0,0,0,0,,1,,1,113787,2,1,2,0,1,,211.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,225.015850509698,360.0,31745.66694756306,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07607337417068777,31745.66694756306,8,4,8,8_1,8_4,8_1_0 +13776,2,56.0,0.0,7,111,500.0,0.0,0.0,46,37,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,1,2,2,1,1,2,2,2,3,60.0,2,,5,113788,1,2,0,0,1,,0.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,924.812274182433,500.0,93666.76570140883,1,1,1,2,103.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.005338072647815142,62444.51046760589,10,5,10,10_0,10_4,10_0_0 +13777,0,56.0,0.0,8,211,0.0,,,81,81,0.0,0.0,,493.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,113789,2,3,0,0,2,,0.0,,43,3.0,0.0,4.0,7.0,3.3999999999999995,4,3,121.53138446925401,0.0,4815.0,4,4,5,0,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1023883696780893,1416.1764705882356,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13778,2,24.0,0.0,2,111,530.0,250.0,0.0,0,68,0.0,0.0,903.7562879871924,780.0,0.0,474.62601198494724,71,2,2,2,2,1,2,2,2,0,,2,,2,113790,2,1,0,1,1,400.0,0.0,330.0,22,2.0,6.0,4.0,3.0,2.0,3,3,244.547818964266,530.0,21473.23369478458,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03632429149175825,10736.61684739229,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +13780,0,65.0,0.0,2,112,600.0,0.0,0.0,75,77,1054.6828510366015,0.0,1023.1203260232367,1700.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113792,2,1,2,0,1,,450.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,768.421682191966,600.0,45233.757203909445,5,5,0,1,120.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03758255128656598,30155.83813593963,8,4,8,8_1,8_0,8_0_1 +13781,2,47.0,0.0,1,400,700.0,0.0,0.0,67,55,2109.365702073203,397.2981831030672,1193.6403803604428,3105.0,145.4868686666347,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,113793,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,883.737325135902,700.0,23467.83462558754,4,4,1,2,170.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1323087557730846,15645.223083725026,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +13782,1,63.0,194.0,2,111,250.0,108.0,0.0,0,75,0.0,0.0,426.3001358430153,358.0,0.0,205.0384371774972,33,0,0,0,0,0,0,0,0,0,,2,,2,113794,2,1,0,1,1,610.0,130.0,296.0,21,1.0,2.0,3.0,2.0,1.5,2,2,264.546937038164,250.0,19041.938998364207,0,5,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.018800606389441428,12694.62599890947,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +13783,2,33.0,0.0,8,111,895.0,0.0,0.0,48,37,0.0,0.0,1526.1544863179947,895.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,2,2000.0,6,113795,2,2,0,0,2,,0.0,549.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2425.43155094078,895.0,53213.1700787656,1,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016819144559048635,35475.44671917707,9,5,9,9_0,9_3,9_0_0 +13784,2,58.0,0.0,6,112,840.0,0.0,0.0,0,34,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,4,113796,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1098.20774506828,840.0,59266.74983278575,0,1,0,1,63.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01417320845786149,59266.74983278575,10,5,10,10_0,10_2,10_0_0 +13785,1,35.0,491.0,2,111,648.0,0.0,0.0,0,81,0.0,0.0,1104.9699521050957,648.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,113797,2,1,0,1,1,,0.0,800.0,32,1.0,0.0,4.0,4.0,2.1,2,2,249.753159938268,648.0,16101.660932694715,0,4,2,3,87.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.040244295461732416,7667.457586997482,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13786,2,52.0,0.0,5,112,903.0,0.0,0.0,63,85,2320.3022722805235,0.0,1539.7960906649712,3203.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,113798,2,1,2,0,1,,465.0,,42,1.0,0.0,5.0,5.0,2.8,4,2,757.591482145259,903.0,76699.40316459101,4,7,1,2,85.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04176042925818613,27392.643987353935,7,4,7,7_1,7_0,7_0_0 +13787,2,72.0,0.0,2,111,230.0,1500.0,0.0,0,75,0.0,0.0,392.1961249755741,1730.0,0.0,2847.7560719096837,60,0,0,0,0,0,0,0,0,0,,1,,2,113799,2,2,1,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,315.388493179724,230.0,22764.563362999408,0,5,0,1,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07599530781301395,22764.563362999408,6,3,6,6_1,6_2,6_0_1 +13789,2,68.0,0.0,1,211,1995.0,0.0,0.0,75,74,0.0,0.0,3401.875084027262,1995.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,1,,1,113801,2,2,3,0,1,,500.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,2377.9951374419,1995.0,94661.6335570543,5,5,0,1,120.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.02107506415254895,63107.75570470287,10,5,10,10_1,10_1,10_1_0 +13790,2,80.0,0.0,1,111,420.0,850.0,0.0,77,72,0.0,0.0,716.1842282162656,1270.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,0,,1,,1,113802,2,2,2,0,2,,310.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1216.20995692408,420.0,43250.61802657328,5,5,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02936374225264733,28833.745351048852,8,4,8,8_1,8_3,8_1_0 +13791,1,47.0,220.0,8,112,960.0,0.0,0.0,0,55,0.0,0.0,1636.9925216371787,1060.0,138.5589225396521,0.0,41,2,2,2,1,1,2,2,2,0,,2,2002.0,6,113803,2,1,0,0,1,,250.0,750.0,32,1.0,0.0,4.0,3.0,1.6,2,1,3004.36665881974,960.0,28855.725921523725,0,1,2,3,100.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.03673447699367484,18034.828700952326,4,2,4_1,4_0_1,4_0_1,4_0_0_1 +13792,1,42.0,452.0,1,120,380.0,1189.0,0.0,85,68,0.0,0.0,647.9762064813832,1569.0,0.0,2257.321313000409,50,0,0,0,0,0,0,0,0,0,,1,,1,113804,1,1,2,0,1,,483.0,416.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,194.992866733039,380.0,15962.557501176585,6,4,2,3,98.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0982925198474211,6139.445192760226,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +13793,2,41.0,0.0,2,112,550.0,1267.0,0.0,55,45,0.0,264.8654554020448,937.8602988546337,2017.0,0.0,2405.4046287397127,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,113805,2,1,3,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,2311.63571881746,550.0,37744.524134593,1,1,1,2,90.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05343821511188194,16410.662667214347,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +13794,0,86.0,0.0,2,112,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113806,2,1,2,0,1,,300.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1829.44766530732,300.0,9227.126216766843,0,5,5,0,40.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03251283150921491,9227.126216766843,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +13795,2,67.0,0.0,1,300,870.0,0.0,0.0,77,78,0.0,794.5963662061343,1483.5244727336933,1470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113807,2,1,1,0,1,,139.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1609.46034253839,870.0,27633.916984187483,5,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05319549888063841,18422.611322791654,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +13796,2,24.0,0.0,7,111,450.0,,,0,43,0.0,0.0,,714.0,365.79555550468154,,41,0,0,0,0,0,0,0,0,1,10.0,2,,5,113808,1,1,0,0,2,,1200.0,530.0,22,3.0,1.0,3.0,3.0,2.0,3,3,90.56157331680535,450.0,30000.0,0,1,2,3,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0238,15000.0,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +13797,1,55.0,222.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,284.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,30.0,2,,2,113809,2,1,0,1,1,412.0,0.0,281.0,22,2.0,0.0,3.0,2.0,1.5,2,2,362.049119751707,0.0,12814.413785210925,0,1,2,3,60.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02216254327043532,8542.94252347395,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13798,1,56.0,351.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,2128.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113810,2,2,1,0,1,,174.0,550.0,32,1.0,1.0,4.0,2.0,1.5,2,1,242.373673564899,0.0,7502.906041446322,0,4,2,3,60.0,6,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.28362343713820376,5001.937360964214,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +13799,2,58.0,0.0,2,111,302.0,307.0,0.0,0,54,0.0,0.0,514.9705640983625,609.0,0.0,582.8407427175152,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,113811,2,2,0,1,1,,220.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,353.740195828014,302.0,22555.58894276727,0,1,0,1,72.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026999960034086515,22555.58894276727,6,3,6,6_0,6_3,6_0_1 +13800,1,60.0,148.0,5,111,485.0,86.0,0.0,56,78,0.0,0.0,827.0222635354497,571.0,0.0,163.27134812282185,71,0,0,0,0,0,0,0,0,0,,2,,3,113812,2,1,0,1,2,,180.0,630.0,42,1.0,0.0,4.0,4.0,2.3,3,3,237.049369767398,485.0,28488.356629642385,1,5,2,3,78.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02004327618553713,12386.242012887995,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +13801,2,62.0,0.0,1,111,550.0,0.0,0.0,0,77,1160.1511361402618,0.0,937.8602988546337,1675.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113813,2,1,3,0,2,,95.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1171.01297334662,550.0,23097.345487288858,0,5,1,2,70.0,8,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07251915597494965,23097.345487288858,6,3,6,6_1,6_3,6_1_0 +13802,2,90.0,0.0,7,400,360.0,,,0,78,0.0,0.0,,452.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,5,113814,1,2,0,0,2,,380.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,121.42814261197954,360.0,9439.421910828027,0,5,0,1,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04788428828268685,9439.421910828027,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +13803,0,29.0,0.0,2,300,350.0,0.0,0.0,48,38,2636.7071275915036,0.0,596.8201901802214,2850.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,1,,2,113815,2,2,4,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,875.748637102432,350.0,57519.53085200836,1,1,5,0,108.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04954838743961155,27390.252786670648,7,4,7,7_1,7_0,7_0_1 +13804,2,94.0,0.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,113816,2,1,0,1,2,,417.0,946.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1263.95142382205,240.0,35414.89920098052,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0067768087842914205,35414.89920098052,9,5,9,9_0,9_4,9_0_1 +13805,2,63.0,0.0,2,221,414.0,1320.0,0.0,0,75,0.0,0.0,705.9530249560333,1734.0,0.0,2506.0253432805216,41,0,0,0,0,0,0,0,0,0,,1,,2,113817,2,1,1,0,1,,385.0,625.0,11,0.0,1.0,4.0,1.0,1.0,1,1,2061.40291628317,414.0,22695.63170324794,0,5,2,3,90.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07640236776277304,22695.63170324794,6,3,6,6_1,6_1,6_0_1 +13806,1,51.0,60.0,7,111,1200.0,,,52,56,0.0,0.0,,1320.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,113818,2,1,0,0,2,,400.0,400.0,43,2.0,3.0,3.0,3.0,1.8,2,2,90.56157331680535,1200.0,25646.738692758,1,1,3,4,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05146853234687243,14248.188162643333,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +13807,2,67.0,0.0,6,120,710.0,0.0,0.0,78,75,0.0,662.163638505112,1210.6923857941633,1450.0,332.541414095165,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,113819,2,1,2,0,2,,140.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1490.13397986161,710.0,43499.440855390225,5,5,0,1,185.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03333376180214334,28999.627236926815,8,4,8,8_1,8_0,8_0_0 +13808,2,83.0,0.0,2,112,1386.0,0.0,0.0,77,75,0.0,0.0,2363.4079531136767,1516.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113820,1,3,3,0,1,,359.0,263.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1697.36308959137,1386.0,26013.271093816402,5,5,2,3,70.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058277945689051286,17342.180729210933,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +13809,2,32.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1292.0,0.0,0.0,10,2,2,2,1,1,2,2,2,1,20.0,2,,1,113821,2,2,0,0,1,,0.0,731.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1253.14786581567,0.0,34343.0,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.037620475788370265,34343.0,9,5,9,9_0,9_4,9_1_0 +13810,2,79.0,0.0,6,111,645.0,1630.0,0.0,71,71,0.0,0.0,1099.8543504749794,2275.0,0.0,3094.561598141856,71,0,0,0,0,0,0,0,0,0,,1,,4,113822,2,1,1,0,1,,206.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,860.130654134053,645.0,26938.00129243755,5,5,0,1,113.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08445318475200582,17958.667528291702,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +13811,2,67.0,0.0,2,111,490.0,0.0,0.0,75,74,0.0,0.0,835.54826625231,490.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,113823,2,2,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,650.407104173652,490.0,69545.44969857796,5,5,0,1,98.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007045752125031113,46363.6331323853,10,5,10,10_0,10_3,10_0_1 +13812,1,44.0,180.0,2,111,320.0,,,0,55,0.0,0.0,,458.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,,2,113824,2,2,0,0,2,,360.0,348.0,32,1.0,0.0,3.0,3.0,1.6,1,1,98.34094131227987,320.0,13738.279693162282,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03333750733200988,8586.424808226426,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13813,1,32.0,100.0,1,111,640.0,1300.0,0.0,43,64,0.0,0.0,1091.3283477581192,1940.0,0.0,2468.055262321726,43,0,0,0,0,0,0,0,0,2,5.0,1,,1,113825,2,1,2,0,1,,390.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,194.055295885524,640.0,39209.79068181353,1,1,1,2,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04947743832001174,14522.144696967976,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +13814,2,62.0,0.0,2,111,340.0,792.0,0.0,74,74,0.0,0.0,579.7681847465008,1132.0,0.0,1503.615205968313,31,0,0,0,0,0,0,0,0,0,,2,,2,113826,2,1,0,0,2,,0.0,827.0,41,0.0,2.0,3.0,2.0,1.5,2,2,821.364258579326,340.0,58592.1440782801,5,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019319996183918935,39061.42938552007,9,5,9,9_0,9_4,9_0_1 +13815,2,57.0,0.0,6,111,1900.0,0.0,0.0,56,37,0.0,331.081819252556,3239.8810324069163,2350.0,277.1178450793042,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,4,113827,2,2,5,0,1,,350.0,,43,2.0,3.0,6.0,3.0,2.0,3,2,575.426059188697,1900.0,49360.6409536897,1,1,0,1,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047608782110523586,24680.32047684485,7,4,7,7_1,7_4,7_0_0 +13816,2,45.0,0.0,8,120,1200.0,0.0,0.0,52,47,0.0,1191.8945493092015,2046.2406520464733,2220.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,113828,1,1,1,0,1,,460.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,351.14123749257,1200.0,62158.467250745205,1,1,1,2,168.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03571516638344046,41438.97816716347,9,5,9,9_1,9_0,9_0_0 +13817,2,55.0,0.0,2,111,460.0,3174.0,0.0,54,64,0.0,0.0,784.3922499511482,3634.0,0.0,6025.85184816089,50,1,2,2,2,1,2,2,2,2,15.0,1,,2,113829,1,3,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,628.369365309851,460.0,61445.07657331724,1,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.059142248698540616,24578.030629326895,7,4,7,7_1,7_2,7_0_1 +13818,2,65.0,0.0,9,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,469.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,113830,1,3,0,0,1,,0.0,535.0,11,0.0,3.0,2.0,1.0,1.0,1,1,355.150328164697,0.0,24575.891869621282,0,5,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01908374281951247,24575.891869621282,7,4,7,7_0,7_3,7_0_0 +13819,2,43.0,0.0,1,111,550.0,1450.0,0.0,37,47,0.0,0.0,937.8602988546337,2000.0,0.0,2752.830869512694,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,113831,2,2,2,0,1,,382.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,212.547713824793,550.0,53627.600087964034,1,1,1,2,81.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037294229029817653,29793.111159980017,8,4,8,8_1,8_2,8_1_0 +13820,2,62.0,0.0,1,300,755.0,0.0,0.0,0,71,2126.2406276897887,0.0,1287.4264102459063,2796.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,113832,2,1,1,0,1,,92.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1149.38450675859,755.0,30300.7107116716,0,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09227506333450464,30300.7107116716,8,4,8,8_1,8_0,8_1_0 +13821,2,61.0,0.0,2,111,250.0,42.0,0.0,0,75,0.0,0.0,426.3001358430153,1111.0,0.0,79.73717001347114,50,1,2,2,1,1,2,2,2,0,,2,,2,113833,2,2,0,1,1,860.0,0.0,408.0,11,0.0,1.0,3.0,1.0,1.0,1,1,937.497078300768,250.0,51732.96605400167,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021475667929812453,51732.96605400167,10,5,10,10_0,10_4,10_0_1 +13822,2,68.0,0.0,2,112,400.0,0.0,0.0,90,90,2636.7071275915036,0.0,682.0802173488245,3020.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,113834,1,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1282.05906965088,400.0,45084.282419946656,5,5,0,1,110.0,9,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06698565082770089,30056.188279964437,8,4,8,8_1,8_0,8_0_1 +13823,0,74.0,0.0,2,111,192.0,,,0,86,0.0,0.0,,360.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,2,113835,2,2,0,0,1,,150.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,99.06810331709369,192.0,8057.929165137164,0,5,5,0,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044676491021731636,8057.929165137164,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +13824,2,29.0,0.0,2,120,900.0,0.0,0.0,65,52,0.0,662.163638505112,1534.680489034855,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,5.0,1,,2,113836,2,2,1,0,1,,300.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,2464.72493572503,900.0,39995.98880572148,1,1,1,2,318.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03500351014699075,22219.993780956374,6,3,6,6_1,6_0,6_0_1 +13825,2,48.0,0.0,6,111,0.0,0.0,0.0,56,65,0.0,0.0,0.0,1897.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,113837,2,1,1,0,1,,669.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,179.665655223227,0.0,41803.91734675581,1,1,1,2,73.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045378522406518365,19906.627307978953,5,3,5,5_1,5_2,5_0_0 +13826,2,45.0,0.0,5,112,600.0,0.0,0.0,55,62,0.0,397.2981831030672,1023.1203260232367,954.0,74.82181817141213,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,113838,2,1,2,0,1,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,778.544516382014,600.0,45609.38792658763,1,1,1,2,65.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020916746384221335,30406.25861772509,8,4,8,8_1,8_1,8_0_0 +13827,0,38.0,0.0,7,111,0.0,,,23,42,0.0,0.0,,1012.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,1,1.0,1,,5,113839,2,1,0,0,1,,770.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,130.9284326145974,0.0,52731.620620032285,4,1,5,0,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0191915209147877,21971.508591680118,6,3,6,6_1,6_2,6_0_0 +13828,0,28.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,429.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,113840,2,1,0,1,2,500.0,149.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1934.69014963614,0.0,3459.0,0,1,5,0,68.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12402428447528187,3459.0,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +13829,2,66.0,0.0,2,111,766.0,1347.0,0.0,52,52,0.0,0.0,1306.1836162229988,2113.0,0.0,2557.2849525748957,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,113841,1,2,4,0,1,,836.0,756.0,43,2.0,2.0,6.0,2.0,1.5,2,2,299.389091796611,766.0,62167.17455035797,1,1,2,3,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03398899845912062,41444.783033571985,9,5,9,9_1,9_4,9_0_1 +13830,2,72.0,0.0,6,211,480.0,,,0,77,0.0,0.0,,480.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,113842,1,1,0,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,90.89114220444327,480.0,17838.77884531058,0,5,0,1,86.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026907671436611897,17838.77884531058,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +13831,2,41.0,0.0,2,211,600.0,1000.0,0.0,43,45,0.0,529.7309108040896,1023.1203260232367,2140.0,193.98249155551292,1898.504047939789,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,113843,2,2,3,0,1,,343.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,986.767746045374,600.0,61252.252261460264,1,1,1,2,180.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034937490802219556,34029.02903414459,9,5,9,9_1,9_1,9_0_1 +13832,2,66.0,0.0,1,212,2400.0,0.0,0.0,77,74,0.0,66.2163638505112,4092.4813040929466,2520.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,113844,2,1,1,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,783.833512070409,2400.0,69632.61169097906,5,5,0,1,155.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036189939437909484,46421.74112731937,10,5,10,10_1,10_0,10_1_0 +13833,2,57.0,0.0,1,211,0.0,0.0,0.0,63,45,0.0,0.0,0.0,1250.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,113845,2,2,5,0,1,,336.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1581.26112246112,0.0,53850.277089553696,1,1,0,1,136.0,2,3,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023212508227603623,35900.18472636913,9,5,9,9_1,9_1,9_1_0 +13834,2,72.0,0.0,2,111,774.0,1300.0,0.0,0,74,0.0,291.3520009422493,1319.8252205699753,2294.0,0.0,2468.055262321726,41,0,0,0,0,0,0,0,0,0,,1,,2,113846,2,1,1,0,1,,380.0,,21,0.0,3.0,6.0,2.0,1.5,2,2,1172.21410069017,774.0,35107.65074527034,0,5,0,1,160.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06534188278915373,23405.10049684689,6,3,6,6_1,6_2,6_0_1 +13835,2,74.0,0.0,2,111,270.0,1104.0,0.0,77,78,0.0,0.0,460.40414671045653,1374.0,0.0,2095.948468925527,70,0,0,0,0,0,0,0,0,0,,1,,2,113847,1,1,2,0,1,,261.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,301.995821383808,270.0,26553.807766132166,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0517439913740905,17702.538510754777,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +13836,2,79.0,0.0,2,111,280.0,80.0,0.0,0,78,0.0,0.0,477.4561521441771,360.0,0.0,151.8803238351831,70,0,0,0,0,0,0,0,0,0,,2,,2,113848,2,1,0,1,1,615.0,0.0,304.0,11,0.0,5.0,3.0,1.0,1.0,1,1,553.902865039634,280.0,16056.654697287706,0,5,2,3,60.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022420610443893478,16056.654697287706,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +13837,1,54.0,154.0,2,112,300.0,0.0,0.0,0,52,0.0,26.486545540204478,511.56016301161833,352.0,44.33885521268867,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,113849,2,1,0,0,1,,110.0,400.0,12,1.0,1.0,3.0,1.0,1.0,1,1,3220.71581619271,300.0,11532.29927845736,0,4,2,3,60.0,8,2,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.030522967840207315,11532.29927845736,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +13838,2,55.0,0.0,6,111,646.0,1090.0,0.0,78,54,0.0,0.0,1101.5595510183516,1736.0,0.0,2069.36941225437,60,0,0,0,0,0,0,0,0,1,30.0,1,,4,113850,2,1,2,0,1,,510.0,,42,2.0,0.0,3.0,3.0,2.0,3,3,401.259513956399,646.0,57758.13660550366,7,1,1,2,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030056371310195278,28879.06830275183,8,4,8,8_1,8_2,8_0_0 +13839,2,69.0,0.0,2,111,302.0,148.0,0.0,0,75,0.0,0.0,514.9705640983625,450.0,0.0,280.9785990950888,33,0,0,0,0,0,0,0,0,0,,2,,2,113851,2,2,0,1,1,1140.0,0.0,331.0,11,0.0,2.0,3.0,1.0,1.0,1,1,310.021554219581,302.0,27115.799718803275,0,5,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016595490624159995,27115.799718803275,7,4,7,7_0,7_4,7_0_1 +13840,1,29.0,550.0,7,211,650.0,,,0,85,0.0,0.0,,770.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,113852,2,2,0,0,1,,400.0,770.0,31,0.0,1.0,3.0,6.0,2.5,1,1,99.4848840938933,650.0,22653.965530931167,0,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03398963413044224,9061.586212372467,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +13842,1,46.0,357.0,7,111,720.0,,,0,55,0.0,0.0,,960.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,5,113854,2,2,0,0,2,,200.0,472.0,32,1.0,1.0,4.0,4.0,2.3,3,3,77.1712989977263,720.0,22708.07178776423,0,4,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042275716272716556,9873.074690332274,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +13843,1,33.0,216.0,7,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,1899.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,113855,2,1,2,0,1,,496.0,478.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1719.79750427756,0.0,29605.664676675748,7,1,2,3,90.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06414313006443292,14097.935560321785,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +13844,1,27.0,320.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,954.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,4,113856,2,2,0,0,1,,0.0,291.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1511.43742645557,0.0,14455.322097511587,0,1,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06599645400943549,14455.322097511587,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +13845,2,48.0,0.0,9,400,1000.0,0.0,0.0,21,21,0.0,0.0,1705.2005433720612,1030.0,41.567676761895626,0.0,44,0,0,0,0,0,0,0,0,2,4.0,1,2006.0,6,113857,2,2,1,0,1,,400.0,600.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2637.28383746937,1000.0,23057.961084329134,1,1,2,3,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0446700380936985,12809.978380182853,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +13846,2,83.0,0.0,2,111,212.0,628.0,0.0,0,75,0.0,0.0,361.502515194877,840.0,0.0,1192.2605421061876,60,0,0,0,0,0,0,0,0,0,,2,,2,113858,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,627.37368663829,212.0,34186.20479629808,0,5,0,1,82.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024571314803887242,34186.20479629808,9,5,9,9_0,9_2,9_0_1 +13847,2,78.0,0.0,2,111,250.0,460.0,0.0,77,78,0.0,0.0,426.3001358430153,710.0,0.0,873.3118620523029,71,0,0,0,0,0,0,0,0,0,,2,,2,113859,2,1,0,0,1,,0.0,318.0,41,0.0,2.0,4.0,3.0,2.0,3,3,582.15703428636,250.0,37403.24594496347,5,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018982309745114646,18701.622972481735,5,3,5,5_0,5_3,5_0_1 +13848,1,52.0,100.0,2,111,350.0,180.0,0.0,85,38,0.0,0.0,596.8201901802214,1106.0,0.0,341.730728629162,12,2,2,2,2,1,1,2,2,0,,2,,2,113860,1,3,0,1,1,804.0,0.0,348.0,42,1.0,0.0,3.0,5.0,2.4,2,2,196.839359405762,350.0,17368.876528282155,6,4,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.0636771179873997,7237.031886784232,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +13849,2,48.0,0.0,2,111,580.0,760.0,0.0,0,62,0.0,0.0,989.0163151557955,1340.0,0.0,1442.8630764342397,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,113861,2,2,0,0,1,,0.0,407.0,12,1.0,3.0,5.0,1.0,1.0,1,1,397.747805991656,580.0,20055.048101981796,0,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06681609503931253,20055.048101981796,5,3,5,5_0,5_3,5_0_1 +13850,2,64.0,0.0,2,300,970.0,0.0,0.0,77,75,0.0,556.2174563442941,1654.0445270708994,1450.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113862,2,1,2,0,1,,445.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1454.56025033854,970.0,24757.510200838944,5,5,0,1,75.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05856808654170986,16505.006800559295,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +13851,2,57.0,0.0,8,111,484.0,750.0,0.0,54,46,0.0,0.0,825.3170629920776,1234.0,0.0,1423.8780359548418,31,0,0,0,0,0,0,0,0,2,45.0,2,1999.0,6,113863,2,1,0,0,1,,447.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,1570.32113454131,484.0,74365.07660560598,1,1,1,2,87.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016593810647765477,37182.53830280299,9,5,9,9_0,9_2,9_0_0 +13852,2,44.0,0.0,9,112,150.0,0.0,0.0,55,64,0.0,0.0,255.78008150580916,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,113864,2,1,1,0,1,,263.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1180.81004083079,150.0,44358.34969375438,1,1,1,2,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003381550509331051,21123.023663692562,5,3,5,5_1,5_0,5_0_0 +13853,2,81.0,0.0,1,111,349.0,3847.0,0.0,90,72,0.0,0.0,595.1149896368494,4196.0,0.0,7303.545072424368,50,0,0,0,0,0,0,0,0,0,,1,,1,113865,2,1,2,0,1,,359.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1982.99158526318,349.0,45492.13305622248,5,5,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09223572776449673,30328.088704148322,8,4,8,8_1,8_3,8_1_0 +13854,2,87.0,0.0,2,111,555.0,1500.0,0.0,0,86,0.0,185.40581878143135,946.386301571494,2195.0,0.0,2847.7560719096837,60,0,0,0,0,0,0,0,0,0,,1,,2,113866,2,1,1,0,1,,490.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,1337.37549294619,555.0,51919.37193828418,0,5,0,1,83.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04227709076699089,34612.91462552279,9,5,9,9_1,9_3,9_0_1 +13855,0,57.0,0.0,7,111,600.0,,,77,21,0.0,0.0,,768.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,5,113867,1,2,0,0,2,,240.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,102.60140362551735,600.0,27527.334888973404,6,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02789954069646012,18351.556592648936,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +13856,2,70.0,0.0,2,300,512.0,0.0,0.0,0,77,1919.5227888866148,0.0,873.0626782064953,2422.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,113868,2,1,1,0,1,,115.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1321.56373576259,512.0,24276.182795114513,0,5,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09976856824819337,24276.182795114513,7,4,7,7_1,7_0,7_0_1 +13857,2,53.0,0.0,1,111,600.0,60.0,0.0,85,23,0.0,0.0,1023.1203260232367,712.0,0.0,113.91024287638734,20,0,0,0,0,0,0,0,0,3,15.0,2,,1,113869,2,1,0,1,2,,595.0,4942.0,42,1.0,0.0,8.0,2.0,1.5,2,2,751.617441264388,600.0,32637.542095288187,6,1,2,3,250.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02181536826275867,21758.361396858792,6,3,6,6_0,6_4,6_1_0 +13858,2,82.0,0.0,1,120,1495.0,0.0,0.0,86,74,2109.365702073203,0.0,2549.2748123412316,3559.0,88.67771042537734,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,113870,1,2,4,0,2,,200.0,,41,0.0,4.0,10.0,2.0,1.5,2,2,980.265253990968,1495.0,97238.44448799649,5,5,0,1,400.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036600750029884915,64825.62965866432,10,5,10,10_1,10_0,10_1_0 +13859,2,79.0,0.0,2,112,400.0,2000.0,0.0,0,74,0.0,0.0,682.0802173488245,2400.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,2,113871,2,2,2,0,1,,206.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,934.966116670914,400.0,38286.810494606325,0,5,0,1,116.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06268477235360467,38286.810494606325,9,5,9,9_1,9_2,9_0_1 +13860,2,73.0,0.0,1,112,1122.0,0.0,0.0,78,74,0.0,0.0,1913.2350096634527,1222.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,113872,2,1,4,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,998.714273766269,1122.0,28122.46437856956,5,5,0,1,111.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.043452806395274976,18748.30958571304,5,3,5,5_1,5_0,5_1_0 +13861,1,25.0,340.0,2,211,0.0,0.0,1080.0,62,55,0.0,0.0,680.7437536479233,1080.0,0.0,1292.4707193698553,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,113873,1,2,0,0,1,,0.0,341.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2003.252179323,0.0,15216.325515242235,4,1,2,3,83.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07097639958596844,8453.514175134575,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +13862,2,92.0,0.0,5,221,356.0,0.0,0.0,0,75,0.0,0.0,607.0513934404538,1373.0,1409.1442422282619,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,113874,2,1,3,0,2,,190.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1240.91684196978,356.0,36291.39672843964,0,5,0,1,100.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03783265797880005,36291.39672843964,9,5,9,9_1,9_1,9_0_0 +13863,2,65.0,0.0,2,120,660.0,0.0,0.0,0,77,1582.0242765549024,225.13563709173806,1125.4323586255605,2350.0,27.711784507930417,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,113875,2,2,2,0,1,,700.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,846.102510761819,660.0,13836.535704711328,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1698402006218816,13836.535704711328,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +13864,2,45.0,0.0,7,111,1400.0,0.0,0.0,0,21,0.0,0.0,2387.2807607208856,1446.0,63.73710436823996,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,5,113876,2,1,2,0,1,,230.0,,32,2.0,0.0,5.0,4.0,2.5,4,2,1324.38096427318,1400.0,32691.749898010807,0,1,1,2,100.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04423134290795442,13076.699959204323,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +13865,2,66.0,0.0,2,211,300.0,300.0,0.0,0,78,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,,2,113877,2,3,0,1,1,,300.0,357.0,11,0.0,1.0,4.0,1.0,1.0,1,1,278.480791627608,300.0,13988.837537704323,0,5,2,3,65.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0428913409268505,13988.837537704323,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +13866,2,53.0,0.0,6,211,900.0,,,56,63,0.0,0.0,,975.0,103.91919190473907,,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,113878,2,2,0,0,2,,400.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,45.709578270432246,900.0,87767.83929412925,1,1,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011108852716911049,48759.910718960695,10,5,10,10_1,10_2,10_0_0 +13867,2,22.0,0.0,1,111,0.0,0.0,0.0,63,62,0.0,0.0,0.0,3132.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,113879,2,1,0,0,1,,0.0,485.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1219.4594329788,0.0,27554.495238156254,4,1,2,3,68.0,8,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11366566409327448,18369.66349210417,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +13868,1,30.0,491.0,1,111,400.0,0.0,0.0,69,85,0.0,0.0,682.0802173488245,2560.0,2992.8727268564853,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113880,2,2,5,0,1,,400.0,461.0,42,1.0,0.0,5.0,5.0,2.4,2,2,60.2334720043964,400.0,14018.489554527796,4,6,2,3,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1826159651539029,5841.037314386582,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +13869,2,72.0,0.0,1,111,607.0,975.0,0.0,75,74,0.0,0.0,1035.056729826841,1582.0,0.0,1851.0414467412943,50,0,0,0,0,0,0,0,0,0,,1,,1,113881,2,1,1,0,1,,590.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,694.732187537068,607.0,56554.3477811799,5,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027973092468877456,37702.8985207866,9,5,9,9_1,9_4,9_1_0 +13870,2,68.0,0.0,8,111,392.0,,,78,71,0.0,158.91927324122688,,800.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,113882,2,1,0,0,2,,130.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,124.78316944418157,392.0,13495.88787376285,5,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059277315244687816,8997.258582508566,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13871,2,36.0,0.0,5,111,500.0,,,52,38,0.0,0.0,,672.0,238.3213467682016,,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,113883,2,2,0,0,2,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,143.49069321338416,500.0,56942.63615804805,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011801350364862273,27115.541027641928,7,4,7,7_1,7_2,7_0_0 +13872,2,45.0,0.0,5,112,1500.0,0.0,0.0,0,46,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,3,113884,1,1,1,0,1,,210.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,477.436233543942,1500.0,29219.832572261294,0,1,1,2,91.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051334996403229444,14609.916286130647,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +13873,2,59.0,0.0,2,112,420.0,0.0,0.0,55,77,1054.6828510366015,794.5963662061343,716.1842282162656,2020.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,113885,1,3,4,0,1,,300.0,400.0,42,1.0,3.0,8.0,2.0,1.5,2,2,1392.22553670873,420.0,44406.94547145352,1,5,3,4,120.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04548837976929832,29604.630314302343,8,4,8,8_1,8_0,8_0_1 +13874,2,74.0,0.0,2,112,419.0,0.0,0.0,0,77,1075.7765080573336,0.0,714.4790276728936,1529.0,124.70303028568689,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,113886,1,2,2,0,2,,204.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1707.15303427513,419.0,31351.922271127638,0,5,0,1,60.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0487689394856683,31351.922271127638,8,4,8,8_1,8_0,8_0_1 +13875,2,68.0,0.0,2,111,520.0,160.0,0.0,77,75,1940.6164459073468,0.0,886.7042825534718,2520.0,0.0,303.7606476703662,41,1,2,2,1,1,2,2,2,0,,2,,2,113887,1,3,0,1,2,,160.0,,41,0.0,0.0,4.0,4.0,2.5,4,4,1664.94446020416,520.0,27867.841161855846,6,5,0,1,88.0,6,4,9,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.09042681079470391,11147.136464742338,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +13876,1,54.0,293.0,9,111,588.0,,,85,78,0.0,0.0,,712.0,171.8130639491686,,71,0,0,0,0,0,0,0,0,0,,8,2011.0,6,113888,2,2,0,0,2,,50.0,780.0,41,1.0,0.0,4.0,6.0,3.0999999999999996,4,2,167.4037309327808,588.0,14449.863372093025,7,6,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04927382229613903,4661.2462490622665,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +13877,1,30.0,172.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1681.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,2,113889,1,3,0,0,1,,0.0,287.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1316.84495951306,0.0,16946.661882044118,0,1,2,3,68.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0991935763928298,13035.893755418552,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +13878,2,44.0,0.0,1,111,1000.0,1000.0,0.0,54,34,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,113890,2,1,1,0,1,,800.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,247.296997103177,1000.0,78508.24631759223,1,1,1,2,165.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02547503088923077,37384.87919885344,9,5,9,9_1,9_3,9_1_0 +13880,2,55.0,0.0,2,112,0.0,0.0,0.0,47,46,0.0,0.0,0.0,1261.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,113892,2,1,2,0,1,,198.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,954.298399314872,0.0,44907.69837472082,1,1,0,1,110.0,10,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028079818063217302,29938.465583147216,8,4,8,8_1,8_0,8_0_1 +13881,2,74.0,0.0,6,111,1200.0,,,78,71,0.0,0.0,,1263.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,4,113893,2,2,0,0,2,,350.0,,41,1.0,7.0,5.0,3.0,2.0,3,3,93.00296113540847,1200.0,22751.73763611041,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055512243513015466,11375.868818055205,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +13882,2,56.0,0.0,7,111,420.0,,,0,56,0.0,0.0,,540.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,113894,1,2,0,0,2,,540.0,,32,4.0,0.0,7.0,4.0,2.5,4,4,94.34594188731907,420.0,85007.56885706856,0,1,0,1,91.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006352375526795198,34003.027542827425,9,5,9,9_1,9_2,9_0_0 +13883,2,63.0,0.0,5,111,0.0,0.0,350.0,78,56,0.0,0.0,220.61140164516033,350.0,0.0,418.8562516476383,70,0,0,0,0,0,0,0,0,0,,2,,3,113895,1,1,0,1,2,,192.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,336.79548339268,0.0,20973.71420136999,5,1,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016687554557081655,13982.476134246659,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +13884,2,61.0,0.0,6,111,480.0,,,45,33,0.0,0.0,,480.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,2,,4,113896,2,2,0,0,2,,560.0,628.0,43,2.0,0.0,3.0,3.0,2.0,3,3,142.12257708112236,480.0,98050.59895225894,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004895431594800488,49025.29947612947,10,5,10,10_0,10_2,10_0_0 +13886,2,62.0,0.0,2,112,1200.0,0.0,0.0,77,75,1265.6194212439218,0.0,2046.2406520464733,2600.0,277.1178450793042,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,113898,1,2,0,1,2,,206.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1437.95250158723,1200.0,16091.22543832682,7,5,1,2,127.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1615787442643865,10727.483625551213,2,1,2_0,2_0_0,2_0_0,2_0_1_0 +13887,2,45.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,264.8654554020448,0.0,292.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,113899,2,1,0,0,1,,140.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,2404.45956640463,0.0,23928.2161009211,0,1,1,2,38.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012203166285712358,23928.2161009211,6,3,6,6_0,6_3,6_0_1 +13888,2,31.0,0.0,1,111,0.0,0.0,0.0,42,42,0.0,0.0,0.0,895.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,1,113900,2,2,0,0,1,,425.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,750.72450058965,0.0,111701.22145480393,1,1,1,2,73.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008012445954873744,62056.23414155774,10,5,10,10_0,10_4,10_1_0 +13889,2,57.0,0.0,5,120,700.0,0.0,0.0,67,48,1898.4291318658827,0.0,1193.6403803604428,2590.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,113901,2,2,2,0,1,,250.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1784.78801277539,700.0,51154.429111394566,1,1,0,1,116.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050631001948237594,34102.95274092971,9,5,9,9_1,9_0,9_0_0 +13890,1,26.0,255.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,644.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,113902,2,3,0,1,1,204.0,0.0,248.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1260.13422111512,0.0,9107.220998889756,0,7,2,3,46.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07071311875252713,9107.220998889756,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +13891,2,41.0,0.0,6,111,0.0,0.0,0.0,68,55,0.0,0.0,0.0,852.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,30.0,2,,4,113903,2,1,0,0,1,,0.0,400.0,43,2.0,6.0,1.0,2.0,1.5,2,2,2225.63331751652,0.0,10096.693413601595,1,1,2,3,36.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08438406170204615,6731.128942401064,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +13892,2,28.0,0.0,1,111,0.0,0.0,0.0,55,37,0.0,0.0,0.0,502.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,35.0,2,,1,113904,2,2,0,0,2,,0.0,890.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1641.82479897347,0.0,51904.55871134479,1,1,3,4,27.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00967159749477415,34603.03914089653,9,5,9,9_0,9_4,9_1_0 +13893,2,63.0,0.0,2,111,330.0,336.0,0.0,0,77,0.0,0.0,562.7161793127802,666.0,0.0,637.8973601077691,71,2,2,2,1,1,2,2,2,0,,2,,2,113905,2,1,0,1,1,380.0,0.0,304.0,11,0.0,1.0,3.0,1.0,1.0,1,1,287.38254933677,330.0,18713.4014804806,0,5,2,3,63.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0.03558946783109875,18713.4014804806,5,3,5,5_0,5_3,5_0_1 +13894,1,53.0,204.0,2,111,128.0,160.0,0.0,0,43,0.0,0.0,218.26566955162383,288.0,0.0,303.7606476703662,50,0,0,0,0,0,0,0,0,0,,2,,2,113906,2,1,0,1,1,321.0,140.0,190.0,12,1.0,2.0,1.0,1.0,1.0,1,1,559.001717429721,128.0,10845.743724388216,0,4,2,3,40.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026554195573733737,10845.743724388216,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +13895,2,41.0,0.0,7,400,0.0,,,0,85,0.0,0.0,,180.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,5,113907,2,3,0,0,2,,0.0,500.0,31,0.0,0.0,2.0,4.0,2.1,2,2,27.464721705171275,0.0,13154.008919842092,0,6,2,3,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013684041199674115,6263.813771353377,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +13896,2,50.0,0.0,5,111,500.0,200.0,0.0,0,85,0.0,0.0,852.6002716860306,700.0,0.0,379.7008095879578,50,2,1,2,1,1,2,2,2,0,,2,,3,113908,1,3,0,1,1,592.0,0.0,327.0,31,1.0,0.0,3.0,2.0,1.5,2,2,182.202259085973,500.0,9302.213166257538,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.07525090937919494,6201.475444171691,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +13897,2,40.0,0.0,6,111,1200.0,,,42,34,0.0,0.0,,1304.0,144.10127944123818,,20,0,0,0,0,0,0,0,0,2,15.0,2,,4,113909,2,3,0,0,2,,600.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,80.7731372512561,1200.0,84552.00000000001,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01542246191692686,46973.33333333334,10,5,10,10_0,10_2,10_0_0 +13898,2,48.0,0.0,1,111,0.0,0.0,0.0,0,23,0.0,0.0,0.0,450.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,5.0,2,,1,113910,1,3,0,0,2,,103.0,580.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2319.25156653912,0.0,35411.46078637742,0,1,2,3,40.0,6,5,9,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.012707750259574503,35411.46078637742,9,5,9,9_0,9_2,9_1_0 +13899,2,42.0,0.0,6,111,1200.0,2400.0,0.0,54,21,0.0,0.0,2046.2406520464733,3600.0,0.0,4556.4097150554935,41,0,0,0,0,0,0,0,0,2,8.0,1,,4,113911,2,1,2,0,1,,600.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,1687.92629769209,1200.0,110944.84565507385,1,1,1,2,160.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032448555665148746,42671.09448272071,9,5,9,9_1,9_3,9_0_0 +13900,2,32.0,0.0,6,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,443.0,0.0,0.0,41,2,2,1,2,1,2,2,2,3,60.0,2,,4,113912,2,1,0,1,1,272.0,0.0,325.0,12,1.0,0.0,1.0,1.0,1.0,1,1,708.398386256723,0.0,23504.66781315644,0,1,3,4,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.018847320180038298,23504.66781315644,6,3,6,6_0,6_4,6_0_0 +13901,2,59.0,0.0,2,111,452.0,1162.0,0.0,0,45,0.0,0.0,770.7506456041716,1614.0,0.0,2206.0617037060347,43,0,0,0,0,0,0,0,0,1,15.0,1,,2,113913,2,1,3,0,1,,205.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,384.106191888548,452.0,32477.21459520803,0,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04969638006573826,32477.21459520803,8,4,8,8_1,8_3,8_0_1 +13902,2,63.0,0.0,1,300,1200.0,0.0,0.0,68,78,0.0,794.5963662061343,2046.2406520464733,1880.0,110.84713803172167,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,113914,2,1,2,0,1,,380.0,,42,1.0,7.0,5.0,2.0,1.5,2,2,1010.59279111032,1200.0,28736.157896030072,1,5,0,1,86.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06542280310408942,19157.438597353383,5,3,5,5_1,5_0,5_1_0 +13903,1,52.0,284.0,8,111,813.0,0.0,0.0,0,56,0.0,0.0,1386.3280417614858,813.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,2000.0,6,113915,1,3,0,0,1,,0.0,509.0,32,1.0,0.0,3.0,3.0,2.0,3,2,709.077097101681,813.0,26763.12604792639,0,4,2,3,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03037761726877908,13381.563023963196,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +13904,2,39.0,0.0,6,112,400.0,1000.0,0.0,56,64,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,4,113916,2,2,3,0,1,,433.0,545.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1535.05045870509,400.0,35802.80131390378,1,1,2,3,90.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039103085474384916,14917.833880793241,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +13905,2,44.0,0.0,5,111,1576.0,0.0,0.0,52,64,0.0,0.0,2687.3960563543683,1576.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,113917,1,2,0,0,1,,553.0,485.0,43,2.0,0.0,4.0,4.0,2.5,4,3,2042.17538171815,1576.0,51179.60697092147,1,1,2,3,87.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03079351509861008,20471.842788368587,5,3,5,5_0,5_3,5_0_0 +13906,2,80.0,0.0,2,111,2.0,,,86,78,0.0,0.0,,48.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,2,113918,2,1,0,0,2,,240.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,72.3626708144022,2.0,13522.0,5,5,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.003549770743972785,9014.666666666666,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +13907,2,64.0,0.0,2,111,421.0,1092.0,0.0,77,74,0.0,0.0,717.8894287596378,1513.0,0.0,2073.1664203502496,43,0,0,0,0,0,0,0,0,0,,1,,2,113919,2,1,2,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,520.0405341781,421.0,51203.84915754371,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02954855982300882,34135.899438362474,9,5,9,9_1,9_4,9_0_1 +13908,1,57.0,419.0,8,111,850.0,1400.0,0.0,68,63,0.0,0.0,1449.420461866252,2250.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,113920,2,1,0,0,1,,0.0,589.0,43,5.0,0.0,5.0,9.0,4.6,7,6,215.73043302331,850.0,32619.97096654211,1,1,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0689761496816719,7091.298036204807,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +13909,2,68.0,0.0,9,112,1700.0,0.0,0.0,46,74,0.0,0.0,2898.840923732504,1800.0,138.5589225396521,0.0,50,2,2,2,2,2,1,1,2,0,,1,2007.0,6,113921,1,1,1,0,1,,600.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,3622.12594651419,1700.0,65432.147981531845,1,5,1,2,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.027509413270492788,43621.431987687894,10,5,10,10_1,10_1,10_0_0 +13910,2,59.0,0.0,5,111,340.0,,,0,31,0.0,0.0,,404.0,88.67771042537734,,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,113922,2,1,0,0,2,,140.0,960.0,12,1.0,2.0,4.0,1.0,1.0,1,1,192.19580968779528,340.0,61866.026200302425,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006530240017226532,61866.026200302425,10,5,10,10_0,10_2,10_0_0 +13911,2,64.0,0.0,6,111,600.0,,,0,77,0.0,0.0,,700.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,1,,4,113923,2,1,0,0,2,,600.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,180.0637551890422,600.0,16333.0,0,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04285801751056144,16333.0,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +13912,2,54.0,0.0,1,400,900.0,0.0,0.0,43,33,0.0,198.6490915515336,1534.680489034855,1150.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,1,113924,2,1,1,0,1,,250.0,,43,2.0,5.0,5.0,2.0,1.5,2,2,1380.4767086446,900.0,28843.139951292036,1,1,1,2,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03987083243856345,19228.759967528025,5,3,5,5_1,5_0,5_1_0 +13913,2,60.0,0.0,2,111,360.0,,,85,62,0.0,0.0,,480.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,,2,113925,2,3,0,0,2,,160.0,280.0,42,1.0,1.0,3.0,2.0,1.5,2,2,156.7777159481639,360.0,32131.865947192382,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014938441508154663,21421.24396479492,6,3,6,6_1,6_2,6_0_1 +13914,2,62.0,0.0,6,111,987.0,0.0,0.0,75,75,0.0,264.8654554020448,1683.0329363082244,1277.0,124.70303028568689,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,113926,2,1,2,0,1,,502.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1092.65612986458,987.0,51746.043540347215,5,5,0,1,113.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024678215234065243,34497.36236023148,9,5,9,9_1,9_2,9_0_0 +13915,2,29.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,2045.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,25.0,2,,1,113927,2,2,0,0,1,,0.0,745.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1282.12650186356,0.0,29317.39524308515,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06975380940373062,29317.39524308515,8,4,8,8_0,8_4,8_1_0 +13916,1,29.0,240.0,7,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,701.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,5,113928,1,3,0,1,1,,0.0,280.0,32,1.0,0.0,3.0,2.0,1.3,1,1,409.331365768817,0.0,13602.348530724203,0,1,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05153521823210319,10463.345023634001,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +13917,1,26.0,368.0,1,111,276.0,764.0,0.0,84,46,0.0,0.0,470.6353499706889,1040.0,0.0,1450.4570926259987,20,0,0,0,0,0,0,0,0,3,40.0,2,,1,113929,2,1,0,0,2,,0.0,1050.0,42,1.0,0.0,2.0,2.0,1.5,2,2,666.251185610064,276.0,14672.040563034214,3,1,3,4,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07088311919067687,9781.360375356142,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +13918,2,30.0,0.0,9,112,1231.0,0.0,0.0,55,85,0.0,0.0,2099.101868891007,1231.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2010.0,6,113930,2,1,1,0,1,,257.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,2163.63264838446,1231.0,69814.39560181032,1,7,1,2,110.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017632466619364094,38785.775334339065,9,5,9,9_1,9_0,9_0_0 +13919,0,50.0,0.0,1,400,1710.0,0.0,0.0,0,21,6011.692250908629,0.0,2915.892929166225,7560.0,207.83838380947813,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,,1,113931,2,2,1,0,1,,300.0,,12,1.0,2.0,8.0,1.0,1.0,1,1,1856.1428691283,1710.0,149705.31026574408,0,1,0,1,160.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05049921065979646,149705.31026574408,10,5,10,10_1,10_0,10_1_0 +13920,2,61.0,0.0,2,111,300.0,400.0,0.0,0,52,0.0,0.0,511.56016301161833,731.0,42.95326598729215,759.4016191759156,50,1,1,2,2,1,2,2,2,2,5.0,2,,2,113932,1,2,0,1,1,405.0,100.0,339.0,12,1.0,2.0,2.0,1.0,1.0,1,1,561.322503469072,300.0,23876.56217268082,0,1,2,3,68.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.030615797815164467,23876.56217268082,6,3,6,6_0,6_2,6_0_1 +13921,1,37.0,315.0,2,111,450.0,477.0,0.0,85,64,0.0,0.0,767.3402445174275,927.0,0.0,905.5864308672793,50,2,1,2,1,2,2,2,2,3,60.0,2,,2,113933,2,3,0,1,1,407.0,0.0,280.0,42,1.0,0.0,2.0,4.0,2.1,2,2,234.521153368416,450.0,18524.791037021452,6,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.050041050295650175,8821.32906524831,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +13922,2,44.0,0.0,1,111,650.0,1500.0,0.0,43,43,0.0,397.2981831030672,1108.3803531918397,2450.0,0.0,2847.7560719096837,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,113934,2,1,4,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.8,4,2,175.131217585077,650.0,46699.86563457321,1,1,1,2,120.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05246267771242145,16678.523440919005,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +13923,2,69.0,0.0,5,111,1800.0,0.0,0.0,75,74,0.0,0.0,3069.36097806971,1920.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,113935,2,1,1,0,1,,360.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1155.93639788631,1800.0,87839.2362359876,5,5,0,1,120.0,7,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02185811355237375,58559.490823991735,10,5,10,10_1,10_2,10_0_0 +13924,2,55.0,0.0,6,120,400.0,,,0,52,0.0,0.0,,600.0,277.1178450793042,,60,0,0,0,0,0,0,0,0,1,5.0,1,,4,113936,2,2,0,0,1,,280.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,122.53452366134012,400.0,26489.0,0,1,0,1,78.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02265091169919589,26489.0,7,4,7,7_1,7_1,7_0_0 +13925,2,56.0,0.0,1,300,1000.0,0.0,0.0,22,22,632.8097106219609,0.0,1705.2005433720612,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,113937,2,1,1,0,1,,229.0,,43,5.0,0.0,5.0,5.0,3.0,5,5,1321.47990785126,1000.0,41412.11949426815,1,1,1,2,140.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03863603262859937,13804.039831422715,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +13926,2,34.0,0.0,1,111,700.0,0.0,0.0,37,37,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,20.0,2,,1,113938,2,2,0,1,2,,0.0,999.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1245.57264056037,700.0,82207.08452986687,1,1,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00851508120015716,45670.602516592706,10,5,10,10_0,10_4,10_1_0 +13927,0,34.0,0.0,2,111,320.0,1000.0,0.0,45,63,0.0,0.0,545.6641738790596,1320.0,0.0,1898.504047939789,50,2,2,2,2,1,2,2,2,0,,2,,2,113939,2,3,0,0,1,,1000.0,,43,3.0,0.0,4.0,5.0,2.8,4,4,1378.74142440627,320.0,11667.130321795103,4,1,5,0,80.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.11313836081303881,4166.832257783965,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +13928,2,52.0,0.0,7,112,480.0,,,0,52,0.0,0.0,,503.0,31.86855218411998,,31,0,0,0,0,0,0,0,0,1,10.0,1,,5,113940,2,3,0,0,2,,250.0,548.0,12,1.0,0.0,4.0,1.0,1.0,1,1,74.5394772152239,480.0,16727.600000000002,0,1,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03007006384657691,16727.600000000002,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +13929,2,49.0,0.0,9,111,650.0,1100.0,0.0,34,37,0.0,0.0,1108.3803531918397,1750.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,2,45.0,1,2008.0,6,113941,2,1,1,0,1,,940.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,596.601683833433,650.0,72778.72352066886,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02404548905701825,29111.489408267546,8,4,8,8_1,8_4,8_0_0 +13930,2,79.0,0.0,1,300,641.0,0.0,0.0,0,77,0.0,0.0,1093.0335483014912,746.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,113942,2,1,1,0,2,,163.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,768.518901798724,641.0,12868.578307308806,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05797066173007656,12868.578307308806,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +13931,2,28.0,0.0,8,400,0.0,,,0,85,0.0,0.0,,155.0,214.76632993646075,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,113943,2,2,0,0,2,,0.0,,31,0.0,0.0,2.0,2.0,1.3,1,1,76.75432873757798,0.0,11736.154045708816,0,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013207052275926277,9027.810804391396,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +13932,0,49.0,0.0,6,120,750.0,,,0,85,0.0,0.0,,882.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,,4,113944,2,1,0,0,1,,300.0,,31,0.0,1.0,4.0,2.0,1.5,2,1,113.37318005464536,750.0,20424.282973621102,0,7,5,0,122.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04318389052576012,13616.188649080736,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +13933,2,67.0,0.0,9,112,240.0,,,0,86,0.0,0.0,,306.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,113945,2,1,0,0,2,,120.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,86.93560954055549,240.0,12081.935608744696,0,5,0,1,70.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025327067608150674,12081.935608744696,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +13934,2,46.0,0.0,7,400,960.0,,,85,21,0.0,0.0,,1260.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,113946,2,3,0,0,2,,340.0,,41,0.0,0.0,4.0,5.0,2.4000000000000004,2,2,73.99062258688261,960.0,13939.436486613324,6,6,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09039102844724287,5808.098536088884,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +13935,2,87.0,0.0,2,221,530.0,0.0,0.0,72,72,2018.6629768840553,644.947383903979,903.7562879871924,3167.0,326.99905719357895,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,113947,2,1,2,0,1,,663.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,570.234733680506,530.0,44865.36603739165,5,5,0,1,79.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07058897050701786,22432.683018695825,6,3,6,6_1,6_1,6_0_1 +13936,2,37.0,0.0,7,111,2400.0,,,37,22,0.0,0.0,,2544.0,199.524848457099,,43,0,0,0,0,0,0,0,0,2,20.0,1,,5,113948,2,3,0,0,2,,554.0,1000.0,43,2.0,0.0,5.0,4.0,2.1,2,2,112.56669106502082,2400.0,47187.00615250699,1,1,2,3,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05391314701716545,22470.002929765233,6,3,6,6_1,6_3,6_0_0 +13937,1,23.0,434.0,2,111,660.0,200.0,0.0,0,55,0.0,0.0,1125.4323586255605,860.0,0.0,379.7008095879578,43,2,2,2,1,1,2,2,2,0,,2,,2,113949,2,2,0,1,1,800.0,250.0,530.0,22,2.0,1.0,5.0,4.0,2.3,4,3,285.522791461187,660.0,27883.12131196505,0,1,2,3,105.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.030843031896538843,12123.0962225935,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +13938,2,67.0,0.0,7,111,560.0,1020.0,0.0,75,75,0.0,0.0,954.9123042883542,1580.0,0.0,1936.4741288985847,50,0,0,0,0,0,0,0,0,0,,1,,5,113950,2,1,2,0,1,,320.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,701.349236967413,560.0,51573.51759547847,5,5,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030635878134062374,34382.34506365231,9,5,9,9_1,9_4,9_0_0 +13939,1,24.0,169.0,5,112,0.0,0.0,0.0,56,46,0.0,0.0,0.0,729.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,3,113951,2,1,2,0,1,,248.0,570.0,43,2.0,0.0,4.0,2.0,1.5,2,2,760.673143956173,0.0,31113.29049650168,2,1,2,3,75.0,7,2,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023430501511306476,20742.193664334452,5,3,5,5_1,5_1,5_0_0 +13940,2,30.0,0.0,2,300,0.0,0.0,0.0,69,47,0.0,0.0,0.0,1293.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,113952,2,1,1,0,1,,87.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,819.112251263629,0.0,32216.233366583707,1,1,1,2,91.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04013504574812164,21477.488911055803,6,3,6,6_1,6_0,6_0_1 +13941,2,26.0,0.0,9,111,1080.0,0.0,0.0,0,46,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,113953,2,1,0,0,1,,0.0,720.0,12,1.0,0.0,4.0,1.0,1.0,1,1,367.242317829804,1080.0,23838.86736795391,0,1,2,3,71.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0453041658116619,23838.86736795391,6,3,6,6_0,6_3,6_0_0 +13942,2,60.0,0.0,1,111,486.0,1811.0,0.0,34,38,0.0,0.0,828.7274640788218,2297.0,0.0,3438.1908308189577,12,0,0,0,0,0,0,0,0,0,,1,,1,113954,2,1,4,0,1,,172.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1758.14283319757,486.0,159671.74796883148,1,1,0,1,200.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014385763475504652,106447.83197922098,10,5,10,10_1,10_2,10_1_0 +13943,2,65.0,0.0,2,221,250.0,1200.0,0.0,0,77,0.0,0.0,426.3001358430153,1450.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,2,,2,113955,2,2,0,1,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,3845.23438230273,250.0,15249.051108989814,0,5,0,1,80.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09508788380577843,15249.051108989814,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +13944,2,62.0,0.0,5,112,900.0,0.0,0.0,78,46,0.0,0.0,1534.680489034855,1080.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,113956,2,1,2,0,1,,200.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,762.927091859437,900.0,56924.42606730067,5,1,0,1,170.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018972523301739336,28462.213033650336,8,4,8,8_1,8_0,8_0_0 +13945,1,30.0,390.0,2,111,440.0,800.0,0.0,85,64,0.0,0.0,750.2882390837069,1240.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,0,,8,,2,113957,2,2,0,1,1,786.0,0.0,403.0,42,1.0,0.0,4.0,7.0,3.3999999999999995,4,2,223.724833043382,440.0,26403.13106202977,6,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04696412698504681,7765.626782949934,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +13946,2,43.0,0.0,5,111,950.0,0.0,0.0,42,47,0.0,397.2981831030672,1619.9405162034582,1250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,113958,2,1,3,0,1,,330.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,956.282446975427,950.0,48128.59368398033,1,1,1,2,125.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025972086535660903,22918.377944752538,6,3,6,6_1,6_2,6_0_0 +13947,2,32.0,0.0,1,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,522.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,113959,2,1,1,0,1,,395.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,323.734903205715,0.0,28558.03340254663,0,1,1,2,77.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018278569558415437,28558.03340254663,8,4,8,8_1,8_3,8_1_0 +13948,2,42.0,0.0,2,111,1300.0,0.0,0.0,54,47,0.0,0.0,2216.7607063836795,1375.0,103.91919190473907,0.0,10,0,0,0,0,0,0,0,0,2,35.0,2,,2,113960,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1558.51613362287,1300.0,58412.578427662185,1,1,1,2,56.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02353945052610188,32451.432459812324,8,4,8,8_0,8_3,8_0_1 +13949,1,42.0,355.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,277.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113961,2,1,0,1,1,1620.0,0.0,326.0,31,0.0,0.0,3.0,2.0,1.5,2,1,370.489966558306,0.0,8303.888442154754,0,6,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03335786624899816,5535.925628103169,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13950,2,53.0,0.0,2,111,360.0,0.0,0.0,0,33,0.0,0.0,613.872195613942,667.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,80.0,2,,2,113962,2,3,0,1,2,,0.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,685.940230571144,360.0,45116.71479680491,0,1,0,1,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01478387783782599,30077.809864536608,8,4,8,8_0,8_4,8_0_1 +13951,2,36.0,0.0,2,111,240.0,700.0,0.0,0,46,0.0,0.0,409.2481304092947,940.0,0.0,1328.9528335578523,31,0,0,0,0,0,0,0,0,3,15.0,2,,2,113963,2,1,0,0,1,,150.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1399.8594439119,240.0,27067.669463147773,0,1,1,2,67.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034727777405431814,27067.669463147773,7,4,7,7_0,7_3,7_0_1 +13953,2,54.0,0.0,1,112,250.0,0.0,0.0,0,52,0.0,595.9472746546007,426.3001358430153,700.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,113965,2,1,3,0,1,,170.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1452.8760968963,250.0,19794.048100927626,0,1,0,1,100.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0353641658558562,19794.048100927626,5,3,5,5_1,5_0,5_1_0 +13954,2,43.0,0.0,2,111,545.0,1162.0,0.0,53,52,0.0,0.0,929.3342961377733,1707.0,0.0,2206.0617037060347,50,2,2,2,2,1,2,2,2,1,30.0,2,,2,113966,1,3,0,0,1,,0.0,305.0,43,3.0,0.0,3.0,3.0,2.0,3,3,1471.20405591024,545.0,26380.81161386103,4,1,2,3,63.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.06470612144105174,13190.405806930516,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +13955,2,66.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,353.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,113967,1,1,0,1,1,700.0,0.0,348.0,11,0.0,4.0,3.0,1.0,1.0,1,1,352.41169010123,0.0,16849.88473189467,0,5,2,3,65.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020949698209615425,16849.88473189467,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +13956,1,43.0,260.0,5,111,500.0,1000.0,0.0,85,67,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,71,2,2,2,2,1,2,2,2,0,,2,,3,113968,1,3,0,1,2,,235.0,450.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,489.563010275169,500.0,26032.159000447537,7,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.05762103711698336,9641.540370536126,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +13957,2,28.0,0.0,1,111,250.0,0.0,0.0,0,33,0.0,0.0,426.3001358430153,250.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,,1,113969,2,3,0,0,1,,0.0,795.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1212.00878958137,250.0,56007.36546077367,0,1,3,4,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0044636986214803215,56007.36546077367,10,5,10,10_0,10_4,10_1_0 +13958,2,72.0,0.0,5,111,508.0,1497.0,0.0,78,78,0.0,0.0,866.2418760330071,2005.0,0.0,2842.060559765864,70,0,0,0,0,0,0,0,0,0,,1,,3,113970,2,2,1,0,1,,511.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,302.150773550382,508.0,34233.027004019816,5,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058569170636431384,22822.018002679877,6,3,6,6_1,6_2,6_0_0 +13959,1,46.0,326.0,2,111,274.0,200.0,0.0,68,22,772.0278469587923,0.0,467.22494888394476,1206.0,0.0,379.7008095879578,71,1,2,2,2,1,2,2,2,0,,2,,2,113971,2,3,0,1,1,601.0,0.0,291.0,43,2.0,0.0,3.0,4.0,2.1,2,2,199.158714918914,274.0,12415.0,1,1,2,3,57.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.09714055577929924,5911.9047619047615,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +13960,2,61.0,0.0,1,112,574.0,1550.0,0.0,78,46,0.0,0.0,978.7851118955631,2124.0,0.0,2942.681274306673,10,0,0,0,0,0,0,0,0,0,,1,,1,113972,2,1,2,0,1,,400.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,366.825185480709,574.0,35493.06656715649,6,4,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05984267366645189,23662.04437810433,6,3,6,6_1,6_1,6_1_0 +13961,2,37.0,0.0,2,111,484.0,248.0,0.0,56,38,0.0,0.0,825.3170629920776,732.0,0.0,470.8290038890677,43,0,0,0,0,0,0,0,0,2,25.0,2,,2,113973,2,1,0,1,1,612.0,0.0,344.0,43,2.0,0.0,3.0,4.0,2.1,2,2,586.791759252481,484.0,39101.19905051435,4,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01872065352917537,18619.61859548302,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +13962,2,39.0,0.0,2,111,30.0,60.0,0.0,0,37,0.0,0.0,51.156016301161834,90.0,0.0,113.91024287638734,20,0,0,0,0,0,0,0,0,2,8.0,1,,2,113974,2,1,1,0,1,,360.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,212.859103368949,30.0,42496.38012309197,0,1,1,2,95.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002117827441756508,26560.23757693248,7,4,7,7_1,7_2,7_0_1 +13963,2,49.0,0.0,2,111,45.0,42.0,0.0,42,37,0.0,0.0,76.73402445174275,87.0,0.0,79.73717001347114,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,113975,2,1,2,0,1,,735.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,714.338614109914,45.0,85675.8231153011,4,1,1,2,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0010154556657473468,42837.91155765055,9,5,9,9_1,9_2,9_0_1 +13964,2,31.0,0.0,9,111,500.0,300.0,0.0,46,46,0.0,0.0,852.6002716860306,860.0,83.13535352379125,569.5512143819367,31,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,113976,1,3,0,1,1,917.0,0.0,700.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1905.33821986634,500.0,56526.979508950164,1,1,2,3,85.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015213974061073481,26917.609289976266,7,4,7,7_0,7_2,7_0_0 +13965,2,35.0,0.0,1,111,1104.0,0.0,0.0,0,90,126.56194212439219,0.0,1882.5413998827555,1224.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,113977,2,2,0,0,1,,0.0,462.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1313.66815059311,1104.0,16111.333551870855,0,1,2,3,38.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07597136488170271,16111.333551870855,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +13966,2,53.0,0.0,2,111,650.0,600.0,0.0,0,37,0.0,0.0,1108.3803531918397,1250.0,0.0,1139.1024287638734,10,0,0,0,0,0,0,0,0,0,,1,,2,113978,2,1,1,0,1,,200.0,814.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1387.09458354905,650.0,43813.26093383346,0,1,2,3,180.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028530174959762594,43813.26093383346,10,5,10,10_1,10_2,10_0_1 +13967,2,33.0,0.0,9,120,1570.0,0.0,0.0,52,65,0.0,0.0,2677.164853094136,1570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,113979,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1911.79456669016,1570.0,74839.93037643745,1,1,1,2,115.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020978106100621088,41577.73909802081,9,5,9,9_1,9_0,9_0_0 +13968,2,39.0,0.0,9,400,550.0,,,22,22,0.0,198.6490915515336,,903.0,281.27461275549376,,60,0,0,0,0,0,0,0,0,2,2.0,1,2005.0,6,113980,2,1,0,0,1,,400.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,3,3,91.49555240575634,550.0,24104.728995592246,1,1,0,1,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037461528821382775,8311.975515721466,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +13969,2,33.0,0.0,2,111,400.0,0.0,0.0,52,54,0.0,0.0,682.0802173488245,400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,75.0,2,,2,113981,2,2,0,1,1,574.0,0.0,430.0,43,2.0,0.0,3.0,2.0,1.5,2,2,232.125416352434,400.0,41053.48052964342,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009743388254527472,27368.98701976228,7,4,7,7_0,7_4,7_0_1 +13970,1,28.0,158.0,9,111,800.0,,,0,54,0.0,0.0,,888.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,113982,2,1,0,0,1,,200.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,244.68896743074967,800.0,24747.08244542667,0,1,1,2,59.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03588301780455356,15466.926528391668,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +13971,2,44.0,0.0,2,300,178.0,0.0,0.0,0,67,1582.0242765549024,0.0,303.5256967202269,1708.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,113983,1,1,3,0,2,,112.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1116.13712053855,178.0,24654.45936831206,0,1,0,1,170.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06927752803191711,24654.45936831206,7,4,7,7_1,7_0,7_0_1 +13972,0,77.0,0.0,2,400,594.0,,,0,78,0.0,0.0,,732.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,7,,2,113984,2,3,0,0,2,,534.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,110.23443266751146,594.0,9361.119658119658,0,5,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07819577430196366,9361.119658119658,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +13973,1,37.0,150.0,2,111,700.0,1050.0,0.0,84,85,0.0,0.0,1193.6403803604428,1750.0,0.0,1993.4292503367785,43,2,2,2,2,1,1,2,2,0,,2,,2,113985,1,3,0,0,1,,1300.0,380.0,41,0.0,0.0,4.0,6.0,2.6999999999999997,2,2,834.939443181024,700.0,14929.708290358152,3,6,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.11721595398686914,5529.521589021539,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +13974,2,39.0,0.0,9,112,1500.0,0.0,0.0,47,56,0.0,463.51454695357836,2557.8008150580918,1850.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2012.0,6,113986,2,1,1,0,1,,912.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1020.26990090781,1500.0,49591.88266411185,1,1,0,1,109.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037304492199462094,23615.18222100564,6,3,6,6_1,6_1,6_0_0 +13975,2,34.0,0.0,8,112,1440.0,0.0,0.0,42,37,0.0,0.0,2455.488782455768,1440.0,0.0,0.0,31,2,2,1,2,1,2,2,2,2,15.0,2,2001.0,6,113987,2,3,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,869.302783646631,1440.0,68514.28187907574,1,1,1,2,78.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.021017515771989372,32625.84851384559,8,4,8,8_0,8_1,8_0_0 +13976,2,50.0,0.0,7,111,1200.0,,,48,46,0.0,0.0,,1407.0,286.8169696570798,,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,113988,1,1,0,0,2,,472.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,108.60632995021518,1200.0,71526.42728258997,1,1,0,1,177.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01967105101504872,34060.203467899984,9,5,9,9_1,9_3,9_0_0 +13977,2,61.0,0.0,2,111,230.0,70.0,0.0,0,68,0.0,0.0,392.1961249755741,300.0,0.0,132.89528335578524,71,2,2,1,2,1,2,2,2,3,75.0,2,,2,113989,1,3,0,1,1,612.0,0.0,370.0,12,1.0,2.0,3.0,1.0,1.0,1,1,265.077146317237,230.0,17334.017961999034,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017307008718791168,17334.017961999034,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +13978,2,52.0,0.0,1,111,460.0,0.0,0.0,0,52,0.0,0.0,784.3922499511482,460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,113990,2,1,0,1,1,,0.0,560.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1644.96650513427,460.0,30260.350919193235,0,1,3,4,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015201409964754763,30260.350919193235,8,4,8,8_0,8_4,8_1_0 +13979,2,55.0,0.0,2,111,360.0,130.0,0.0,47,42,0.0,0.0,613.872195613942,490.0,0.0,246.80552623217258,31,2,1,2,2,1,2,2,2,2,45.0,2,,2,113991,2,1,0,1,2,,190.0,532.0,43,2.0,2.0,3.0,2.0,1.5,2,2,382.740838999775,360.0,49338.924943546954,1,1,2,3,84.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0099313067838558,32892.616629031305,8,4,8,8_0,8_2,8_0_1 +13980,1,22.0,141.0,7,111,0.0,,,85,55,0.0,0.0,,96.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,5,113992,1,3,0,0,2,,0.0,600.0,42,1.0,0.0,2.0,3.0,1.8,2,2,129.8299861253447,0.0,25797.71595418707,6,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.003721259671611309,14332.064418992817,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +13981,2,53.0,0.0,1,111,1700.0,0.0,0.0,52,62,0.0,0.0,2898.840923732504,1850.0,207.83838380947813,0.0,50,2,2,2,1,2,2,1,2,2,17.0,1,,1,113993,1,3,3,0,2,,321.0,400.0,43,2.0,3.0,3.0,3.0,1.8,2,2,1511.0804223049,1700.0,41149.10934365929,1,1,2,3,70.0,6,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.044958445747868135,22860.61630203294,6,3,6,6_1,6_2,6_1_0 +13982,1,44.0,200.0,2,111,250.0,300.0,0.0,85,62,0.0,0.0,426.3001358430153,550.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,113994,2,1,0,1,1,800.0,0.0,400.0,42,1.0,0.0,4.0,5.0,2.4,2,2,431.355785296954,250.0,21924.345655752786,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025086267505351253,9135.144023230328,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +13983,2,60.0,0.0,5,112,350.0,0.0,0.0,54,75,1898.4291318658827,0.0,596.8201901802214,2150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,113995,2,1,3,0,1,,170.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,2095.40027819601,350.0,34713.564699909526,4,5,0,1,96.0,8,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0619354427753599,23142.37646660635,6,3,6,6_1,6_1,6_0_0 +13984,2,46.0,0.0,7,111,700.0,,,46,37,0.0,0.0,,792.0,127.47420873647992,,12,0,0,0,0,0,0,0,0,2,35.0,1,,5,113996,2,1,0,0,2,,600.0,,43,2.0,2.0,5.0,3.0,2.0,3,2,137.8944536392573,700.0,42517.067522261845,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018627813397180098,21258.533761130922,5,3,5,5_1,5_2,5_0_0 +13985,2,27.0,0.0,7,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,790.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,1999.0,5,113997,1,1,1,0,1,,151.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,228.255198615935,0.0,9722.678116673816,0,1,2,3,90.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08125333272580493,9722.678116673816,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +13986,2,42.0,0.0,2,112,1210.0,1180.0,0.0,23,23,0.0,0.0,2063.292657480194,2390.0,0.0,2240.234776568951,12,0,0,0,0,0,0,0,0,2,10.0,1,,2,113998,2,1,4,0,1,,355.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2050.64376784201,1210.0,28374.77504060597,1,1,1,2,98.0,7,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08422974267037428,15763.76391144776,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +13987,2,67.0,0.0,2,111,560.0,1025.0,0.0,77,77,0.0,0.0,954.9123042883542,1585.0,0.0,1945.9666491382836,70,0,0,0,0,0,0,0,0,0,,1,,2,113999,2,1,2,0,1,,460.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,845.254196435169,560.0,54222.793947231956,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029231249159578088,36148.52929815464,9,5,9,9_1,9_4,9_0_1 +13988,2,64.0,0.0,5,300,0.0,0.0,0.0,78,78,1582.0242765549024,0.0,0.0,2054.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,114000,2,1,2,0,1,,261.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1041.51433202879,0.0,27089.203335287337,5,5,0,1,137.0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07582356611146214,18059.468890191558,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +13989,2,65.0,0.0,7,111,700.0,,,75,74,0.0,0.0,,800.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,0,,1,,5,114001,2,1,0,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,148.028490770504,700.0,67622.5238971766,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011830377718767784,45081.68259811773,10,5,10,10_1,10_2,10_0_0 +13990,2,57.0,0.0,7,120,0.0,0.0,0.0,64,47,0.0,331.081819252556,0.0,1102.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,114002,2,1,1,0,1,,220.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,574.011391740871,0.0,78244.87879348929,1,1,0,1,180.0,0,2,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014083988843646809,31297.951517395715,8,4,8,8_1,8_1,8_0_0 +13991,1,27.0,277.0,2,111,0.0,0.0,0.0,85,52,0.0,0.0,0.0,1290.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,114003,1,3,0,1,1,658.0,110.0,265.0,42,1.0,0.0,3.0,2.0,1.5,2,2,391.425923842902,0.0,10690.59952048663,6,1,2,3,66.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12066675938313326,7127.066346991087,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +13992,1,45.0,81.0,1,111,500.0,1800.0,0.0,0,45,0.0,0.0,852.6002716860306,2300.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,114004,1,2,3,0,2,,240.0,700.0,32,1.0,0.0,6.0,3.0,1.8,3,2,373.106996030743,500.0,35849.207594996675,0,1,2,3,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0641576245138819,19916.226441664818,5,3,5,5_1,5_3,5_1_0 +13993,2,44.0,0.0,6,111,2866.0,0.0,0.0,37,35,0.0,0.0,4887.104757304327,2916.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,4,114005,2,1,3,0,1,,371.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,600.804648366929,2866.0,74793.91692140517,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03898712783105325,35616.15091495484,9,5,9,9_1,9_4,9_0_0 +13994,2,28.0,0.0,7,111,240.0,0.0,0.0,0,46,0.0,0.0,409.2481304092947,240.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,5,114006,2,1,0,1,1,448.0,0.0,394.0,12,1.0,0.0,1.0,1.0,1.0,1,1,669.353476474619,240.0,21319.868561798623,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011257105047544097,21319.868561798623,6,3,6,6_0,6_4,6_0_0 +13995,2,77.0,0.0,2,112,720.0,0.0,0.0,0,71,0.0,662.163638505112,1227.744391227884,1310.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114007,2,1,2,0,1,,200.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,359.453677664473,720.0,11421.053009494211,0,5,0,1,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11470045703412896,11421.053009494211,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +13996,2,65.0,0.0,6,111,192.0,,,0,77,0.0,0.0,,507.0,436.4606059999041,,50,0,0,0,0,0,0,0,0,0,,1,,4,114008,2,1,0,0,2,,1120.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,106.5605667653984,192.0,15185.951715187062,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033386119586628404,15185.951715187062,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +13997,2,35.0,0.0,1,111,313.0,1200.0,0.0,43,31,0.0,0.0,533.7277700754552,1513.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,6.0,1,,1,114009,2,1,1,0,1,,852.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1515.19552191947,313.0,54679.27280851914,1,1,1,2,100.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027670448458566033,26037.748956437685,7,4,7,7_1,7_2,7_1_0 +13998,2,58.0,0.0,1,211,1910.0,0.0,0.0,56,62,0.0,0.0,3256.9330378406366,2060.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,114010,2,1,2,0,1,,20.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1234.45563372274,1910.0,37805.67304907558,1,1,0,1,120.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05448917672556476,25203.782032717052,7,4,7,7_1,7_1,7_1_0 +13999,2,71.0,0.0,6,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1186.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114011,2,1,3,0,1,,71.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1295.3125281741,0.0,21046.849421128387,0,5,0,1,90.0,4,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0563504767991263,21046.849421128387,5,3,5,5_1,5_0,5_0_0 +14000,2,69.0,0.0,2,111,220.0,240.0,0.0,78,78,0.0,0.0,375.14411954185346,460.0,0.0,455.6409715055494,71,2,2,2,1,1,2,2,2,0,,2,,2,114012,2,2,0,1,1,894.0,300.0,208.0,41,0.0,5.0,3.0,2.0,1.5,2,2,304.813333739868,220.0,17545.530532299148,5,5,2,3,60.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.026217503036069328,11697.0203548661,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +14001,2,59.0,0.0,6,112,642.0,0.0,0.0,77,78,0.0,1059.4618216081792,1094.7387488448633,1442.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114013,2,1,2,0,1,,190.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1614.09885539687,642.0,18472.420071128035,5,7,0,1,90.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0780623217990702,12314.946714085358,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +14002,2,56.0,0.0,2,111,892.0,205.0,0.0,56,64,0.0,0.0,1521.0388846878786,1097.0,0.0,389.1933298276567,71,2,2,2,1,1,2,2,1,2,15.0,2,,2,114014,2,1,0,1,1,612.0,0.0,327.0,43,2.0,1.0,3.0,3.0,2.0,3,2,968.171886471612,892.0,40746.89228876068,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026922298570057776,20373.44614438034,5,3,5,5_0,5_4,5_0_1 +14003,2,28.0,0.0,5,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,617.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,7.0,2,,3,114015,1,2,0,0,1,,260.0,460.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2818.79183486318,0.0,20268.666161279856,0,1,2,3,56.0,8,2,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03044107565295455,20268.666161279856,5,3,5,5_0,5_1,5_0_0 +14004,2,46.0,0.0,7,112,360.0,,,54,21,0.0,0.0,,480.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,,5,114016,2,1,0,0,2,,150.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,103.74203798921143,360.0,37103.76710059082,1,1,0,1,174.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012936691810798822,17668.460524090864,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +14005,2,31.0,0.0,1,111,0.0,0.0,0.0,34,33,0.0,0.0,0.0,2141.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,114017,2,1,0,0,1,,0.0,1273.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1043.47461205642,0.0,65498.351994776356,1,1,2,3,44.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.032687845339539987,36387.973330431305,9,5,9,9_0,9_4,9_1_0 +14006,1,26.0,270.0,1,111,100.0,150.0,0.0,0,85,0.0,0.0,170.52005433720612,250.0,0.0,284.77560719096834,60,0,0,0,0,0,0,0,0,0,,2,,1,114018,2,2,0,1,1,,0.0,360.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1714.49262376733,100.0,10925.7833491429,0,7,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02288165452407693,10925.7833491429,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +14007,2,53.0,0.0,1,111,1800.0,0.0,0.0,0,23,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,5.0,1,,1,114019,2,1,1,0,1,,50.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,424.564925466528,1800.0,40928.36334680475,0,1,1,2,160.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043979281183265904,40928.36334680475,9,5,9,9_1,9_3,9_1_0 +14008,1,50.0,103.0,7,111,672.0,,,56,65,0.0,0.0,,752.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,114020,2,2,0,0,2,,400.0,422.0,43,2.0,0.0,3.0,4.0,2.1,2,2,132.2995205291022,672.0,35915.417993697214,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020938082918371386,17102.579996998673,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +14009,2,43.0,0.0,1,111,180.0,540.0,0.0,0,65,0.0,0.0,306.936097806971,760.0,55.423569015860835,1025.192185887486,71,2,2,2,2,1,2,2,1,2,10.0,8,,1,114021,1,2,0,0,1,,400.0,422.0,32,2.0,1.0,3.0,4.0,2.3,3,2,233.976483143686,180.0,19152.007661486492,0,1,2,3,45.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.039682523808107766,8326.959852820215,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +14010,2,44.0,0.0,1,111,122.0,984.0,0.0,0,38,0.0,0.0,208.03446629139145,1106.0,0.0,1868.1279831727525,20,2,2,2,2,1,2,2,2,2,50.0,1,,1,114022,2,3,3,0,1,,125.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1576.62247231041,122.0,46691.40959154202,0,1,1,2,60.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02368744078783066,46691.40959154202,10,5,10,10_1,10_3,10_1_0 +14011,1,21.0,520.0,9,221,750.0,0.0,0.0,55,67,0.0,0.0,1278.9004075290459,820.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,114023,2,1,1,0,1,,480.0,580.0,43,3.0,0.0,4.0,4.0,2.3,3,3,1936.92199529188,750.0,35309.578233128515,1,1,2,3,88.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02322316042933221,15351.990536142834,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +14012,0,38.0,0.0,8,111,420.0,,,0,64,0.0,0.0,,443.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,114024,2,1,0,0,2,,159.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,101.77845778523064,420.0,21438.340435751372,0,1,5,0,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020663912924026376,21438.340435751372,6,3,6,6_1,6_2,6_0_0 +14013,2,81.0,0.0,2,111,370.0,110.0,0.0,77,86,0.0,1668.652369032882,630.9242010476627,1740.0,0.0,208.8354452733768,71,2,2,1,2,2,2,2,1,0,,2,,2,114025,2,2,0,1,1,,0.0,600.0,41,1.0,2.0,6.0,3.0,2.0,3,3,917.389233072726,370.0,43072.92645626101,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04039660508711677,21536.463228130506,6,3,6,6_0,6_4,6_0_1 +14014,2,61.0,0.0,6,111,3000.0,0.0,0.0,72,37,0.0,0.0,5115.6016301161835,3100.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,114026,2,1,1,0,1,,600.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,1560.54243352154,3000.0,134583.20236797608,5,4,0,1,250.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023034078142411936,89722.13491198405,10,5,10,10_1,10_2,10_0_0 +14015,2,45.0,0.0,2,111,420.0,780.0,0.0,56,46,0.0,0.0,716.1842282162656,1200.0,0.0,1480.8331573930354,30,2,1,2,2,1,2,2,2,0,,2,,2,114027,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.6,3,3,791.031377056996,420.0,32397.474201839017,1,4,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03703992454855888,12460.567000707313,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +14016,2,68.0,0.0,1,112,447.0,0.0,0.0,75,75,1304.6426867322762,0.0,762.2246428873113,2216.0,737.1334679109492,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,114028,2,2,3,0,1,,325.0,,41,0.0,2.0,6.0,3.0,2.0,3,3,990.953323439923,447.0,56941.56934335937,5,5,0,1,120.0,9,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038917086858591014,28470.784671679685,8,4,8,8_1,8_0,8_1_0 +14017,2,30.0,0.0,6,111,77.0,0.0,0.0,0,38,0.0,0.0,131.3004418396487,77.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,5.0,2,,4,114029,2,2,0,0,1,,0.0,951.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1833.06601806554,77.0,52452.56174564937,0,1,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0014679931244041993,52452.56174564937,10,5,10,10_0,10_3,10_0_0 +14018,2,35.0,0.0,8,111,450.0,,,46,37,0.0,0.0,,474.0,33.25414140951651,,20,0,0,0,0,0,0,0,0,2,50.0,2,1999.0,6,114030,2,1,0,0,2,,150.0,610.0,43,2.0,0.0,3.0,2.0,1.5,2,2,42.357860808317106,450.0,68534.70963680928,1,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006916203519529023,45689.806424539514,10,5,10,10_0,10_2,10_0_0 +14019,2,44.0,0.0,2,111,900.0,900.0,0.0,43,37,0.0,0.0,1534.680489034855,1800.0,0.0,1708.65364314581,30,0,0,0,0,0,0,0,0,0,,2,,2,114031,2,1,0,0,1,,421.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,237.301887400096,900.0,94554.13081906016,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019036714571936578,45025.77658050483,10,5,10,10_0,10_4,10_0_1 +14020,2,58.0,0.0,2,111,407.0,97.0,0.0,0,54,0.0,0.0,694.0166211524289,504.0,0.0,184.15489265015952,60,2,2,2,2,1,2,2,2,2,15.0,8,,2,114032,2,1,0,1,1,773.0,0.0,433.0,32,1.0,3.0,4.0,2.0,1.5,2,1,302.150171467242,407.0,32607.520862063946,0,1,2,3,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.015456556851777124,21738.347241375963,6,3,6,6_0,6_4,6_0_1 +14021,2,57.0,0.0,2,111,300.0,120.0,0.0,0,52,0.0,0.0,511.56016301161833,420.0,0.0,227.8204857527747,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,114033,2,2,0,1,1,,76.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1979.98659668032,300.0,32816.58124940163,0,1,0,1,85.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012798408122042214,32816.58124940163,8,4,8,8_0,8_2,8_0_1 +14022,2,68.0,0.0,1,120,744.0,300.0,0.0,0,75,0.0,1383.922004475684,1268.6692042688135,2089.0,0.0,569.5512143819367,31,0,0,0,0,0,0,0,0,0,,1,,1,114034,2,1,2,0,1,,270.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,221.877859133965,744.0,13426.122880211224,0,5,0,1,90.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15559220026795517,13426.122880211224,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14023,2,61.0,0.0,8,111,350.0,0.0,0.0,0,34,0.0,0.0,596.8201901802214,350.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,114035,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1236.33575838198,350.0,49662.48309650456,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00704757350372266,49662.48309650456,10,5,10,10_0,10_4,10_0_0 +14024,2,45.0,0.0,5,111,3000.0,0.0,0.0,38,38,0.0,66.2163638505112,5115.6016301161835,3050.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,3,114036,2,1,3,0,1,,416.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,269.169148600957,3000.0,108894.90265471723,1,1,1,2,150.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028008657206581165,43557.96106188689,10,5,10,10_1,10_3,10_0_0 +14025,2,58.0,0.0,1,111,390.0,1800.0,0.0,74,38,0.0,0.0,665.0282119151038,2190.0,0.0,3417.30728629162,31,0,0,0,0,0,0,0,0,2,17.0,1,,1,114037,2,1,3,0,1,,600.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,456.467592552199,390.0,63334.91208229999,5,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03457808541921119,42223.27472153333,9,5,9,9_1,9_4,9_1_0 +14026,2,66.0,0.0,5,221,1262.0,0.0,0.0,78,78,0.0,0.0,2151.9630857355414,1322.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114038,1,1,1,0,1,,336.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1217.37972327819,1262.0,24389.020694829564,5,5,0,1,98.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054204718448587076,16259.347129886375,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +14027,2,61.0,0.0,9,400,2246.0,0.0,0.0,71,69,0.0,0.0,3829.8804204136495,2306.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,1,5.0,1,2010.0,6,114039,2,1,1,0,1,,900.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,249.883927866531,2246.0,139924.95701768904,5,1,0,1,160.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01648026234311067,69962.47850884452,10,5,10,10_1,10_0,10_0_0 +14028,2,44.0,0.0,7,211,800.0,,,0,52,0.0,0.0,,1175.0,519.5959595236953,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,114040,2,2,0,0,2,,500.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,50.879978608200844,800.0,33398.53582039883,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03518118298115168,18554.742122443793,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +14029,2,84.0,0.0,1,300,360.0,,,0,78,0.0,0.0,,452.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,1,114041,2,1,0,0,2,,480.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,120.14701381488922,360.0,10509.642585551332,0,5,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043008122904332646,10509.642585551332,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +14030,1,70.0,110.0,1,221,516.0,0.0,0.0,0,74,0.0,0.0,879.8834803799836,546.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114042,2,2,5,0,1,,170.0,450.0,11,0.0,2.0,3.0,1.0,1.0,1,1,3109.60107556768,516.0,8627.261178446148,0,5,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.06328775595250262,8627.261178446148,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +14031,2,68.0,0.0,5,111,1102.0,0.0,0.0,77,75,0.0,79.45963662061344,1879.1309987960115,1162.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114043,2,2,2,0,1,,434.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2202.5192794267,1102.0,42114.11676545455,5,5,0,1,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027591698205889185,28076.077843636365,8,4,8,8_1,8_3,8_0_0 +14032,2,72.0,0.0,6,111,1410.0,0.0,0.0,75,78,0.0,0.0,2404.3327661546064,1601.0,264.6475420507355,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114044,2,1,2,0,1,,131.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,834.121686040361,1410.0,48908.140659847726,5,5,0,1,120.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03273483674496704,32605.427106565152,8,4,8,8_1,8_2,8_0_0 +14033,2,43.0,0.0,1,111,310.0,1080.0,0.0,0,43,0.0,0.0,528.612168445339,1390.0,0.0,2050.384371774972,33,0,0,0,0,0,0,0,0,2,50.0,2,,1,114045,2,1,0,0,1,,150.0,850.0,32,1.0,0.0,3.0,4.0,2.1,2,1,402.345640620074,310.0,46294.87664864985,0,1,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030024920695852813,22045.179356499928,6,3,6,6_0,6_3,6_1_0 +14034,2,39.0,0.0,1,111,513.0,1038.0,0.0,85,38,0.0,0.0,874.7678787498674,1551.0,0.0,1970.647201761501,12,0,0,0,0,0,0,0,0,2,40.0,1,,1,114046,2,2,2,0,1,,587.0,1030.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1649.7938872293,513.0,11894.335326745802,7,1,2,3,100.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13039820699458468,6607.964070414335,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +14035,1,60.0,253.0,7,111,460.0,,,0,56,0.0,0.0,,690.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,2,,5,114047,2,2,0,0,2,,460.0,383.0,22,1.0,2.0,3.0,2.0,1.5,2,2,92.08434247175958,460.0,13738.267518825893,0,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05022467345714994,9158.845012550595,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14036,2,63.0,0.0,2,111,200.0,60.0,0.0,75,37,0.0,0.0,341.04010867441224,546.0,0.0,113.91024287638734,20,0,0,0,0,0,0,0,0,1,30.0,2,,2,114048,2,2,0,1,1,,0.0,,42,1.0,2.0,2.0,2.0,1.5,2,2,795.713095234412,200.0,94565.64613412782,5,1,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005773766926158124,63043.764089418546,10,5,10,10_0,10_4,10_0_1 +14037,2,24.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,886.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,114049,2,2,0,0,1,,0.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1547.16198945879,0.0,17873.814028949968,0,4,2,3,48.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04956972241990199,17873.814028949968,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14038,2,69.0,0.0,5,111,820.0,1000.0,0.0,77,75,0.0,0.0,1398.2644455650902,1820.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,3,114050,2,2,3,0,1,,480.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,674.970483037302,820.0,45729.728291071915,5,5,0,1,113.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039799055625601196,30486.485527381275,8,4,8,8_1,8_4,8_0_0 +14039,2,78.0,0.0,9,111,1321.0,0.0,0.0,77,74,0.0,0.0,2252.569917794493,1321.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2007.0,6,114051,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1540.02172173258,1321.0,26172.955492159686,5,5,0,1,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05047194614286934,17448.636994773125,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +14041,1,33.0,377.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1253.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,114053,2,2,0,0,1,,0.0,580.0,32,1.0,0.0,3.0,2.0,1.3,1,1,428.304594401362,0.0,14145.812842116236,0,4,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08857744789818307,10881.394493935566,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +14042,2,37.0,0.0,7,112,900.0,1166.0,0.0,42,38,0.0,0.0,1534.680489034855,2066.0,0.0,2213.655719897794,12,0,0,0,0,0,0,0,0,2,40.0,1,,5,114054,2,1,2,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,412.178881189396,900.0,89890.31810242089,1,1,1,2,150.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02298356534511317,49939.06561245605,10,5,10,10_1,10_1,10_0_0 +14043,2,46.0,0.0,2,111,320.0,400.0,0.0,0,22,0.0,0.0,545.6641738790596,720.0,0.0,759.4016191759156,12,0,0,0,0,0,0,0,0,0,,2,,2,114055,2,2,0,0,1,,0.0,750.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1405.53906675753,320.0,33184.28347406426,0,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021697018124942437,33184.28347406426,8,4,8,8_0,8_4,8_0_1 +14044,0,50.0,0.0,1,111,750.0,100.0,0.0,0,46,0.0,0.0,1278.9004075290459,850.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,3,30.0,2,,1,114056,1,3,0,0,1,,0.0,,32,1.0,1.0,2.0,2.0,1.5,2,2,1276.66229349088,750.0,30262.443147071008,0,1,5,0,31.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028087619888094474,20174.962098047337,5,3,5,5_0,5_4,5_1_0 +14045,2,50.0,0.0,6,120,480.0,,,62,42,0.0,0.0,,590.0,152.4148147936173,,30,0,0,0,0,0,0,0,0,2,20.0,1,,4,114057,2,1,0,0,1,,250.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,98.23100901303438,480.0,117123.15362571504,1,1,0,1,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00503743266583681,78082.10241714337,10,5,10,10_1,10_2,10_0_0 +14046,2,41.0,0.0,2,111,327.0,0.0,0.0,0,38,0.0,0.0,557.600577682664,388.0,0.0,0.0,41,2,2,2,1,1,1,2,2,2,45.0,2,,2,114058,2,3,0,1,1,,447.0,640.0,12,1.0,0.0,1.0,1.0,1.0,1,1,340.922964944598,327.0,28432.215044441364,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01364649217071309,28432.215044441364,8,4,8,8_0,8_4,8_0_1 +14047,2,43.0,0.0,2,112,600.0,0.0,0.0,0,31,1582.0242765549024,0.0,1023.1203260232367,2100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,114059,1,2,3,0,1,,160.0,940.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1684.42069704629,600.0,20776.495858410934,0,1,3,4,80.0,9,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10107575475244823,15981.919891085334,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +14048,2,73.0,0.0,6,112,682.0,2300.0,0.0,74,72,0.0,0.0,1162.9467705797458,2982.0,0.0,4366.559310261515,41,0,0,0,0,0,0,0,0,0,,1,,4,114060,2,1,2,0,1,,962.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,806.562953352685,682.0,129282.67214637093,5,5,0,1,178.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023065736115230096,86188.44809758062,10,5,10,10_1,10_1,10_0_0 +14049,2,48.0,0.0,8,111,1700.0,2750.0,0.0,37,21,0.0,0.0,2898.840923732504,4450.0,0.0,5220.88613183442,12,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,114061,2,1,1,0,1,,970.0,,43,2.0,0.0,9.0,5.0,2.5999999999999996,3,2,175.862304790139,1700.0,142338.43812375746,1,1,0,1,370.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03126351573515867,54745.55312452211,10,5,10,10_1,10_4,10_0_0 +14050,2,46.0,0.0,9,300,550.0,0.0,0.0,69,69,0.0,0.0,937.8602988546337,650.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,114062,2,1,1,0,1,,205.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1058.02474093034,550.0,33418.73418766097,1,1,1,2,88.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019450168170642327,22279.156125107314,6,3,6,6_1,6_0,6_0_0 +14051,2,59.0,0.0,2,111,250.0,730.0,0.0,90,63,0.0,0.0,426.3001358430153,980.0,0.0,1385.9079549960459,50,2,2,2,2,1,2,2,2,2,30.0,2,,2,114063,2,3,0,0,1,,250.0,570.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1333.04017410621,250.0,23857.728088363394,4,1,2,3,75.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04107683666987533,15905.152058908929,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +14052,2,49.0,0.0,1,111,253.0,1085.0,0.0,0,34,0.0,0.0,431.41573747313146,1368.0,41.567676761895626,2059.8768920146713,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,114064,2,2,2,0,2,,200.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,321.302529875339,253.0,51108.027834430206,0,1,0,1,90.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02676683209987634,51108.027834430206,10,5,10,10_1,10_2,10_1_0 +14053,2,43.0,0.0,8,111,550.0,1300.0,0.0,54,47,0.0,0.0,937.8602988546337,1850.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,114065,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,380.848523017234,550.0,76007.54645937512,1,1,0,1,140.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024339688441183886,33046.7593301631,8,4,8,8_1,8_3,8_0_0 +14054,2,63.0,0.0,1,111,373.0,1050.0,0.0,56,77,0.0,0.0,636.0398026777788,1423.0,0.0,1993.4292503367785,70,2,2,1,2,1,2,2,2,0,,1,,1,114066,2,1,1,0,1,,126.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,388.12345248746,373.0,34332.28623211063,1,5,0,1,66.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.041447866022656044,22888.190821407086,6,3,6,6_1,6_3,6_1_0 +14055,2,31.0,0.0,6,211,0.0,,,0,42,0.0,0.0,,606.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,114067,1,3,0,0,2,,314.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,129.46769745738015,0.0,14682.158669101536,0,1,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04127458459329426,14682.158669101536,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14056,2,73.0,0.0,1,400,808.0,0.0,0.0,77,77,132.8900392306118,198.6490915515336,1377.8020390446254,1276.0,266.03313127613205,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114068,2,3,3,0,1,,133.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1062.29944535508,808.0,46550.57432882928,5,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027411047412357257,31033.71621921952,8,4,8,8_1,8_0,8_1_0 +14057,1,39.0,250.0,2,111,1600.0,0.0,0.0,67,56,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,60,2,2,2,2,1,2,2,2,3,60.0,2,,2,114069,1,3,0,0,2,,0.0,900.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,270.558516505931,1600.0,40827.41371744435,1,1,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03918935475739839,15702.851429786291,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +14058,2,69.0,0.0,5,120,570.0,0.0,0.0,78,78,0.0,0.0,971.9643097220749,790.0,304.8296295872346,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114070,2,1,1,0,1,,273.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1778.65419756692,570.0,31709.371033553572,5,5,0,1,64.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024913770732445432,21139.580689035716,5,3,5,5_1,5_1,5_0_0 +14059,2,70.0,0.0,1,111,1000.0,2000.0,0.0,74,74,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,10,2,2,2,1,2,2,2,2,0,,1,,1,114071,2,1,2,0,1,,600.0,,41,0.0,1.0,11.0,2.0,1.5,2,2,605.788309152949,1000.0,73372.2837179875,5,5,0,1,320.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04088737392352063,48914.85581199167,10,5,10,10_1,10_4,10_1_0 +14060,0,65.0,0.0,2,111,216.0,,,90,68,0.0,0.0,,496.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,,2,114072,2,2,0,0,2,,320.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,39.630945119914166,216.0,4822.170138888889,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10285825379738404,3214.7800925925926,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +14061,0,52.0,0.0,2,111,270.0,,,0,81,0.0,0.0,,522.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,114073,2,1,0,0,2,,600.0,,22,2.0,0.0,4.0,4.0,2.1,2,2,108.16938978014302,270.0,9054.52004454899,0,4,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05765076419641424,4311.676211689995,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +14062,1,38.0,178.0,9,111,400.0,,,0,42,0.0,0.0,,421.0,29.09737373332694,,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,114074,2,1,0,0,1,,225.0,650.0,32,1.0,0.0,4.0,2.0,1.3,1,1,126.92611063727897,400.0,24796.386704137713,0,1,2,3,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01697828014312056,19074.143618567472,5,3,5,5_1,5_2,5_0_0 +14063,2,41.0,0.0,8,300,410.0,0.0,0.0,0,85,738.277995725621,119.18945493092015,699.1322227825451,1260.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,114075,2,1,3,0,1,,221.0,,31,0.0,0.0,5.0,2.0,1.5,2,1,817.172049030202,410.0,7295.387197653786,0,7,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.17271187475905583,4863.591465102524,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +14064,2,41.0,0.0,8,112,420.0,0.0,0.0,62,42,1582.0242765549024,0.0,716.1842282162656,1990.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,2,3.0,1,2001.0,6,114076,2,1,1,0,1,,470.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1480.46091389293,420.0,65530.2295160434,1,1,1,2,122.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03036766412534538,27304.26229835142,7,4,7,7_1,7_1,7_0_0 +14065,1,48.0,414.0,2,111,0.0,0.0,0.0,54,56,0.0,0.0,0.0,395.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,114077,1,3,0,1,2,192.0,0.0,1050.0,43,2.0,0.0,2.0,5.0,2.4,2,2,742.616026496269,0.0,17836.232641402185,4,4,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022145932268404597,7431.763600584244,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +14066,2,44.0,0.0,1,112,1068.0,1068.0,0.0,0,37,0.0,0.0,1821.1541803213613,2186.0,69.27946126982604,2027.6023231996946,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,114078,2,1,3,0,1,,250.0,,32,2.0,1.0,4.0,2.0,1.5,2,1,621.033072100395,1068.0,41960.40674206645,0,1,0,1,140.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052096730459203947,27973.604494710966,7,4,7,7_1,7_0,7_1_0 +14067,2,56.0,0.0,5,212,840.0,0.0,0.0,68,52,0.0,662.163638505112,1432.3684564325313,1400.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,114079,2,1,2,0,2,,250.0,,43,2.0,5.0,6.0,2.0,1.5,2,2,733.546758576012,840.0,53792.78612721749,1,1,0,1,130.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026025794549645813,35861.857418144995,9,5,9,9_1,9_0,9_0_0 +14069,1,32.0,333.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,355.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114081,2,1,0,1,1,,0.0,330.0,32,1.0,0.0,2.0,2.0,1.3,1,1,777.194821300025,0.0,8947.454664286313,0,4,2,3,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03967608815241941,6882.657434066395,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +14070,2,32.0,0.0,1,222,811.0,0.0,0.0,47,37,0.0,0.0,1382.9176406747415,1601.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,3,50.0,1,,1,114082,2,2,1,0,2,,106.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1122.35066393562,811.0,67909.76146800086,1,1,1,2,162.0,1,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02357540308478911,32337.981651428978,8,4,8,8_1,8_0,8_1_0 +14071,2,89.0,0.0,5,111,321.0,0.0,0.0,0,77,0.0,0.0,547.3693744224316,321.0,0.0,0.0,50,2,2,1,1,2,2,2,2,0,,2,,3,114083,2,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,333.298264469552,321.0,32285.25844238772,0,5,0,1,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009942618256341882,32285.25844238772,8,4,8,8_0,8_3,8_0_0 +14072,2,90.0,0.0,2,111,250.0,0.0,0.0,0,86,0.0,0.0,426.3001358430153,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,114084,2,1,0,1,2,,0.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,2226.16252647299,250.0,26854.242172130507,0,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009309516105408906,26854.242172130507,7,4,7,7_0,7_3,7_0_1 +14073,2,70.0,0.0,7,111,600.0,1500.0,0.0,77,74,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,0,,1,,5,114085,2,1,2,0,1,,350.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1109.19382704164,600.0,79415.50837364726,5,5,0,1,185.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026443197846440416,52943.67224909817,10,5,10,10_1,10_2,10_0_0 +14074,2,78.0,0.0,1,111,210.0,,,0,86,0.0,0.0,,260.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,1,114086,2,3,0,0,2,,180.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,136.30019940829203,210.0,9833.185460946916,0,5,0,1,45.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026441075583553828,9833.185460946916,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +14075,2,66.0,0.0,2,111,311.0,750.0,0.0,0,77,0.0,0.0,530.317368988711,1061.0,0.0,1423.8780359548418,70,2,2,2,2,1,2,2,2,0,,1,,2,114087,2,1,1,0,1,,116.0,361.0,11,0.0,2.0,4.0,1.0,1.0,1,1,476.089463003609,311.0,15560.282135264322,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0681864243062439,15560.282135264322,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +14076,2,52.0,0.0,7,112,1000.0,0.0,0.0,43,68,0.0,344.3250920226582,1705.2005433720612,1260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,114088,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1547.89261805214,1000.0,43807.06270219367,1,1,1,2,109.0,6,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02876248536829895,19046.549000953768,5,3,5,5_1,5_1,5_0_0 +14077,2,63.0,0.0,2,111,840.0,1400.7,0.0,43,31,0.0,0.0,1432.3684564325313,2241.0,0.0,2659.2346199492627,10,0,0,0,0,0,0,0,0,0,,1,,2,114089,1,3,3,0,2,,386.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1431.93954832752,840.0,40472.208907402375,1,1,0,1,135.0,6,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.055371329129261355,20236.104453701188,5,3,5,5_1,5_2,5_0_1 +14078,2,28.0,0.0,2,111,312.0,170.0,0.0,0,63,0.0,0.0,532.0225695320831,482.0,0.0,322.74568814976413,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,114090,1,2,0,1,2,398.0,0.0,375.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2112.62977772432,312.0,18508.807986001764,0,1,2,3,41.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02604165543045977,18508.807986001764,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14079,1,68.0,160.0,1,400,1750.0,2000.0,0.0,77,78,0.0,0.0,2984.100950901107,3870.0,166.2707070475825,3797.008095879578,71,2,2,2,1,2,2,2,2,0,,1,,1,114091,1,3,3,0,1,,260.0,475.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1610.88682270275,1750.0,20495.55059350986,7,5,2,3,90.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.18882147041346029,13663.700395673239,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +14080,2,72.0,0.0,2,111,0.0,,,0,75,0.0,0.0,,690.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,2,114092,2,2,0,0,2,,696.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,123.83571371906841,0.0,49670.64554282363,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01389150457899959,49670.64554282363,10,5,10,10_1,10_2,10_0_1 +14081,2,40.0,0.0,5,111,144.0,0.0,0.0,85,47,0.0,0.0,245.54887824557682,144.0,0.0,0.0,42,2,2,2,2,1,2,2,2,1,5.0,1,,3,114093,1,3,4,0,1,,540.0,350.0,42,1.0,0.0,5.0,4.0,2.1,2,2,566.331864847784,144.0,48031.61443061912,6,1,2,3,80.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.00299802539862585,22872.197347913865,6,3,6,6_1,6_2,6_0_0 +14082,2,39.0,0.0,2,111,420.0,,,21,55,0.0,0.0,,581.0,223.07986528883987,,43,0,0,0,0,0,0,0,0,3,10.0,2,,2,114094,2,2,0,0,2,,0.0,619.0,43,2.0,0.0,3.0,3.0,1.8,2,2,137.17810322572993,420.0,18355.324854374627,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03165294020179273,10197.402696874793,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +14083,2,62.0,0.0,1,111,596.0,656.0,0.0,85,77,0.0,595.9472746546007,1016.2995238497484,1702.0,0.0,1245.4186554485016,60,0,0,0,0,0,0,0,0,0,,1,,1,114095,2,1,4,0,1,,180.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,313.461272416936,596.0,21671.072946075303,6,5,0,1,90.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07853787416225912,14447.381964050202,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +14084,2,57.0,0.0,7,111,670.0,291.0,0.0,77,64,0.0,0.0,1142.484364059281,961.0,0.0,552.4646779504786,50,1,2,2,2,1,1,2,2,2,15.0,1,,5,114096,2,2,2,0,1,,235.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,691.265950901428,670.0,35562.02819117037,7,1,1,2,100.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02702320561791256,23708.01879411358,6,3,6,6_1,6_2,6_0_0 +14086,2,59.0,0.0,1,300,800.0,0.0,0.0,71,52,0.0,0.0,1364.160434697649,992.0,266.03313127613205,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,114098,2,1,2,0,1,,300.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1270.71392559144,800.0,20295.30648335482,7,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04887829611312291,13530.204322236546,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14087,2,81.0,0.0,1,120,1160.0,0.0,0.0,77,74,0.0,794.5963662061343,1978.032630311591,1760.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,114099,2,1,3,0,2,,172.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2214.67733299347,1160.0,23781.357720749642,5,5,0,1,147.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07400754913435283,15854.238480499762,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14088,2,78.0,0.0,2,111,632.0,,,72,71,0.0,0.0,,862.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,114100,2,2,0,0,2,,740.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,103.20910859857958,632.0,19373.87804044472,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04449289905719945,12915.918693629814,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +14089,2,84.0,0.0,2,111,400.0,,,86,86,0.0,0.0,,480.0,110.84713803172167,,41,0,0,0,0,0,0,0,0,0,,1,,2,114101,2,1,0,0,2,,500.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,41.984261084156664,400.0,30047.36899222584,5,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015974776364752283,20031.57932815056,5,3,5,5_1,5_2,5_0_1 +14090,2,34.0,0.0,2,112,0.0,0.0,0.0,62,34,0.0,0.0,0.0,1297.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,2,114102,2,1,2,0,1,,456.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,848.758582830511,0.0,60537.13080676675,1,1,1,2,82.0,10,2,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02142486739485551,33631.73933709264,9,5,9,9_1,9_1,9_0_1 +14091,1,27.0,118.0,8,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,264.0,0.0,0.0,31,2,1,2,1,1,2,2,2,2,15.0,2,2000.0,6,114103,2,1,0,1,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2323.59602131809,0.0,17677.408228403765,0,1,3,4,36.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.014934315969227277,17677.408228403765,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +14092,2,59.0,0.0,2,111,300.0,,,0,72,0.0,0.0,,346.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,0,,1,,2,114104,1,1,0,0,2,,500.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,94.92368362932261,300.0,3339.351306393966,0,7,0,1,93.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10361293803904441,3339.351306393966,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +14093,2,33.0,0.0,7,111,372.0,150.0,0.0,46,37,0.0,0.0,634.3346021344067,522.0,0.0,284.77560719096834,10,0,0,0,0,0,0,0,0,2,30.0,2,,5,114105,2,1,0,1,1,720.0,0.0,414.0,43,2.0,0.0,2.0,2.0,1.5,2,2,757.806121139994,372.0,63735.37470536046,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008190114240531753,42490.24980357364,9,5,9,9_0,9_4,9_0_0 +14094,2,80.0,0.0,2,111,370.0,370.0,0.0,86,78,0.0,0.0,630.9242010476627,740.0,0.0,702.446497737722,41,2,2,2,2,1,2,2,2,0,,2,,2,114106,1,2,0,0,1,,300.0,,41,1.0,2.0,3.0,3.0,2.0,3,3,2043.89315708448,370.0,32185.24780995802,5,5,0,1,53.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,0,0,0,0.022991900027286606,16092.62390497901,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14095,2,73.0,0.0,1,112,2600.0,0.0,0.0,0,78,0.0,0.0,4433.521412767359,2600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114107,2,1,2,0,1,,320.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1186.98136027853,2600.0,19661.928885753412,0,5,0,1,110.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13223524584527926,19661.928885753412,5,3,5,5_1,5_0,5_1_0 +14096,0,44.0,0.0,1,300,1200.0,0.0,0.0,67,42,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,114108,2,3,1,0,1,,150.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,986.999032171726,1200.0,51160.97384179419,1,1,5,0,87.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02521453176378318,28422.763245441216,8,4,8,8_1,8_0,8_1_0 +14097,1,41.0,101.0,5,111,350.0,80.0,0.0,85,52,0.0,0.0,596.8201901802214,430.0,0.0,151.8803238351831,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,114109,1,1,0,1,1,602.0,0.0,285.0,42,1.0,2.0,3.0,3.0,1.8,2,2,290.514990016392,350.0,18734.288992069633,6,1,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022952565756940244,10407.938328927574,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14098,2,80.0,0.0,6,111,420.0,2064.0,0.0,75,74,0.0,0.0,716.1842282162656,4665.0,0.0,3918.5123549477244,50,0,0,0,0,0,0,0,0,0,,1,,4,114110,2,1,2,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,568.082458949537,420.0,53212.39907588878,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08766753766066847,35474.93271725919,9,5,9,9_1,9_4,9_0_0 +14099,2,63.0,0.0,5,111,500.0,900.0,0.0,75,75,0.0,0.0,852.6002716860306,1518.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,1,,3,114111,2,2,2,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1610.56017380902,500.0,27866.358354564327,5,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05447428690485356,18577.572236376218,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +14100,2,29.0,0.0,2,111,0.0,,,81,62,0.0,0.0,,405.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,2,114112,1,1,0,0,2,,351.0,700.0,43,2.0,0.0,5.0,5.0,2.4,2,2,93.65793889222485,0.0,27568.317666305302,4,4,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014690776742427098,11486.79902762721,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +14101,1,39.0,210.0,9,112,1200.0,0.0,0.0,0,52,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,114113,2,2,2,0,1,,300.0,446.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2022.06555939774,1200.0,19693.871720125793,0,1,2,3,81.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06093266052777636,12308.66982507862,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +14102,2,56.0,0.0,2,111,471.0,0.0,0.0,47,56,539.99761973074,0.0,803.1494559282409,1103.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,114114,2,2,4,0,1,,353.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1273.08103375543,471.0,45678.694115767415,1,1,0,1,200.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02414692498004809,30452.462743844942,8,4,8,8_1,8_2,8_0_1 +14103,2,81.0,0.0,1,112,696.0,981.0,0.0,71,71,0.0,953.5156394473612,1186.8195781869547,2397.0,0.0,1862.432471028933,70,0,0,0,0,0,0,0,0,0,,5,,1,114115,2,1,4,0,1,,124.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,130.06716470151,696.0,18727.053752898737,5,5,0,1,100.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1279966422710231,12484.702501932492,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +14104,2,34.0,0.0,9,112,0.0,0.0,0.0,43,62,0.0,0.0,0.0,1476.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,114116,2,2,1,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,810.727937601447,0.0,38488.41289693111,1,1,1,2,102.0,8,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03834920405662374,21382.451609406173,6,3,6,6_1,6_1,6_0_0 +14105,2,66.0,0.0,1,111,346.5,728.7,0.0,56,21,0.0,0.0,590.8519882784192,1165.0,124.70303028568689,1383.4398997337244,44,0,0,0,0,0,0,0,0,0,,1,,1,114117,1,3,4,0,2,,237.0,390.0,43,2.0,2.0,4.0,2.0,1.5,2,2,441.64711208731,346.5,24626.9372437023,1,1,2,3,50.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04730592312277559,16417.9581624682,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +14106,1,40.0,342.0,5,111,400.0,1600.0,0.0,0,68,0.0,0.0,682.0802173488245,2000.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,1,15.0,2,,3,114118,2,2,0,0,1,,470.0,302.0,32,1.0,1.0,6.0,3.0,1.6,1,1,785.225453084367,400.0,16114.649486591143,0,1,2,3,50.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12411067343811495,10071.655929119464,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14107,2,78.0,0.0,6,111,744.0,0.0,0.0,0,74,0.0,0.0,1268.6692042688135,744.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,114119,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,602.887760051271,744.0,56756.10725149823,0,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013108721440376095,56756.10725149823,10,5,10,10_0,10_4,10_0_0 +14108,2,64.0,0.0,1,112,635.0,0.0,0.0,75,38,2109.365702073203,0.0,1082.8023450412588,2700.0,90.06329965077386,0.0,12,0,0,0,0,0,0,0,0,2,2.0,1,,1,114120,2,1,2,0,1,,306.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,2212.66764258124,635.0,40839.30951186284,6,1,0,1,140.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06611277301874349,20419.65475593142,5,3,5,5_1,5_0,5_1_0 +14109,2,60.0,0.0,2,111,518.0,0.0,0.0,67,78,0.0,1092.5700035334348,883.2938814667277,1343.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114121,2,1,4,0,2,,565.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1597.95478201412,518.0,30242.020669521153,1,7,0,1,68.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04440840824348477,20161.3471130141,5,3,5,5_1,5_2,5_0_1 +14110,1,75.0,111.0,2,111,250.0,800.0,0.0,0,77,0.0,0.0,426.3001358430153,1050.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,2,114122,1,1,0,0,1,,150.0,284.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1501.23333610558,250.0,10780.308850842925,0,5,2,3,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09739980686340904,10780.308850842925,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +14111,2,71.0,0.0,9,221,0.0,0.0,1192.0,0,75,0.0,264.8654554020448,751.3394021743746,1392.0,0.0,1426.5047198970994,44,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114123,2,1,1,0,1,,139.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1262.93862977539,0.0,21844.201811809442,0,5,0,1,100.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06372400383370634,21844.201811809442,6,3,6,6_1,6_1,6_0_0 +14112,2,28.0,0.0,9,120,0.0,0.0,0.0,43,42,0.0,0.0,0.0,1545.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,3.0,1,2007.0,6,114124,2,1,1,0,1,,167.0,620.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2040.69096266089,0.0,42294.0322166812,1,1,2,3,85.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03652997642988119,23496.68456482289,6,3,6,6_1,6_1,6_0_0 +14113,2,71.0,0.0,2,111,760.0,0.0,0.0,31,74,0.0,0.0,1295.9524129627664,760.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,114125,2,2,0,1,2,,0.0,,42,1.0,2.0,2.0,2.0,1.5,2,2,978.87909550943,760.0,64709.53660622987,1,5,0,1,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011744791260440451,43139.691070819914,9,5,9,9_0,9_4,9_0_1 +14114,1,50.0,218.0,2,111,0.0,0.0,1029.0,0,68,0.0,0.0,648.5975208367713,1029.0,0.0,1231.4373798440565,50,0,0,0,0,0,0,0,0,0,,1,,2,114126,1,2,2,0,1,,380.0,495.0,12,1.0,4.0,4.0,1.0,1.0,1,1,462.234774001277,0.0,10292.680776902387,0,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09997395453176394,10292.680776902387,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +14115,2,77.0,0.0,1,400,553.0,0.0,0.0,90,75,2469.012554276684,0.0,942.9759004847498,3079.0,256.3340066983564,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114127,1,1,2,0,2,,160.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1216.3164441293,553.0,27236.356424519097,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11304742646223337,18157.570949679397,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14116,2,62.0,0.0,9,120,3400.0,0.0,0.0,78,37,0.0,59.594727465460075,5797.681847465008,3505.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,114128,2,2,1,0,1,,535.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,294.477249444869,3400.0,71258.57074615754,6,1,0,1,162.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04918706568625641,47505.71383077169,10,5,10,10_1,10_0,10_0_0 +14117,2,77.0,0.0,7,111,420.0,,,0,75,0.0,0.0,,576.0,216.15191916185728,,20,0,0,0,0,0,0,0,0,0,,1,,5,114129,2,1,0,0,2,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,34.23582825907612,420.0,16293.560644798847,0,5,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035351388966282704,16293.560644798847,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +14119,1,41.0,293.0,1,111,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,1,114131,2,1,0,0,1,,203.0,370.0,43,2.0,3.0,3.0,2.0,1.5,2,2,1718.46718052233,0.0,16752.099032649046,4,1,2,3,65.0,6,4,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0764083353080316,11168.066021766032,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +14120,2,59.0,0.0,6,112,1500.0,0.0,0.0,77,74,0.0,198.6490915515336,2557.8008150580918,1650.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114132,2,1,1,0,1,,280.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1426.94491759216,1500.0,23447.03541722078,6,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07037136979748622,15631.356944813853,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +14121,2,50.0,0.0,7,111,504.0,,,0,55,0.0,0.0,,636.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,114133,1,1,0,0,2,,420.0,,32,2.0,0.0,4.0,3.0,2.0,3,3,96.0903774520246,504.0,21571.060288945802,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029483947079129966,10785.530144472901,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +14122,2,36.0,0.0,1,112,900.0,4500.0,0.0,37,43,0.0,0.0,1534.680489034855,5400.0,0.0,8543.268215729051,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,114134,2,1,1,0,2,,900.0,,43,2.0,0.0,10.0,6.0,2.6999999999999997,2,2,605.403171411673,900.0,95947.84135815922,1,1,1,2,200.0,10,5,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056280578317990416,35536.23754005897,9,5,9,9_1,9_2,9_1_0 +14123,2,68.0,0.0,5,111,480.0,1728.0,0.0,0,74,0.0,0.0,818.4962608185893,2208.0,0.0,3280.614994839955,20,0,0,0,0,0,0,0,0,0,,1,,3,114135,2,1,2,0,1,,534.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1182.6192443176,480.0,35366.35900940645,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062432211339955426,35366.35900940645,9,5,9,9_1,9_4,9_0_0 +14124,2,77.0,0.0,2,111,280.0,1500.0,0.0,71,78,0.0,0.0,477.4561521441771,1780.0,0.0,2847.7560719096837,71,2,2,1,1,1,2,2,2,0,,1,,2,114136,2,2,4,0,1,,150.0,313.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1124.68700433489,280.0,19993.426223644652,5,5,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.08902926292317692,13328.9508157631,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +14125,2,55.0,0.0,2,111,500.0,300.0,0.0,0,62,0.0,39.72981831030672,852.6002716860306,830.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,2,1.0,2,,2,114137,2,1,0,1,1,,150.0,420.0,12,1.0,3.0,3.0,1.0,1.0,1,1,297.776521334165,500.0,21280.021493041775,0,1,2,3,42.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03900372000429589,21280.021493041775,6,3,6,6_0,6_3,6_0_1 +14126,2,34.0,0.0,7,111,300.0,480.0,0.0,37,37,0.0,0.0,511.56016301161833,780.0,0.0,911.2819430110987,12,0,0,0,0,0,0,0,0,2,45.0,2,,5,114138,2,1,0,1,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,815.849690052303,300.0,110146.99903294133,1,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007081445766549915,73431.33268862755,10,5,10,10_0,10_4,10_0_0 +14127,2,64.0,0.0,2,111,539.0,867.0,0.0,0,78,0.0,0.0,919.1030928775409,1406.0,0.0,1646.0030095637971,50,0,0,0,0,0,0,0,0,0,,1,,2,114139,2,1,2,0,1,,147.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,980.23185515208,539.0,14831.871473343215,0,5,0,1,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09479585920947015,14831.871473343215,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +14128,1,51.0,250.0,9,111,400.0,800.0,0.0,0,54,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,114140,2,1,0,0,1,,0.0,750.0,32,1.0,0.0,3.0,3.0,2.0,3,1,1558.39015287077,400.0,22869.459734861033,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05247172490790333,11434.729867430517,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +14129,2,31.0,0.0,9,111,612.0,,,38,42,0.0,0.0,,612.0,0.0,,20,0,0,0,0,0,0,0,0,2,25.0,8,2006.0,6,114141,2,1,0,0,1,,240.0,707.0,43,2.0,0.0,3.0,3.0,1.8,2,2,158.59872741559315,612.0,66532.45367582457,1,1,2,3,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009198518410006847,36962.47426434698,9,5,9,9_0,9_2,9_0_0 +14130,0,46.0,0.0,2,300,450.0,0.0,0.0,0,11,1582.0242765549024,0.0,767.3402445174275,1950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114142,2,1,3,0,1,,150.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,1075.74384085713,450.0,44406.487737231255,0,1,0,1,170.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04391250241493615,44406.487737231255,10,5,10,10_1,10_0,10_0_1 +14131,2,31.0,0.0,5,111,270.0,0.0,0.0,46,63,0.0,0.0,460.40414671045653,289.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,3,114143,2,1,0,1,1,516.0,0.0,659.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1120.63628504131,270.0,37991.10140524304,1,1,2,3,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007607044526487878,25327.400936828693,7,4,7,7_0,7_4,7_0_0 +14132,2,38.0,0.0,1,120,250.0,0.0,0.0,85,46,0.0,0.0,426.3001358430153,250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,12.0,1,,1,114144,2,1,2,0,1,,350.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1036.86259074176,250.0,40305.8438736424,6,1,1,2,135.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006202574514597497,19193.25898744876,5,3,5,5_1,5_0,5_1_0 +14133,2,59.0,0.0,6,111,2358.0,0.0,0.0,43,38,0.0,26.486545540204478,4020.86288127132,2438.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,4,114145,2,1,2,0,1,,300.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1335.94243498711,2358.0,69482.84460730116,1,1,0,1,119.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03508779776905994,46321.89640486744,10,5,10,10_1,10_2,10_0_0 +14134,2,53.0,0.0,1,112,700.0,0.0,0.0,35,35,0.0,198.6490915515336,1193.6403803604428,882.0,44.33885521268867,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,114146,2,1,3,0,1,,270.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,973.441215877368,700.0,11573.828400911458,1,1,0,1,140.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07620641756970763,7715.8856006076385,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +14135,2,72.0,0.0,5,111,420.0,600.0,0.0,77,77,0.0,0.0,716.1842282162656,1020.0,0.0,1139.1024287638734,60,0,0,0,0,0,0,0,0,0,,2,,3,114147,2,1,0,0,2,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,400.63141224563,420.0,26814.905550655465,5,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.038038545318503536,17876.603700436975,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +14136,1,32.0,57.0,9,112,468.0,,,55,47,0.0,0.0,,493.0,34.63973063491302,,43,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,114148,2,1,0,0,2,,150.0,401.0,43,2.0,0.0,3.0,4.0,2.1,2,2,90.87911469197765,468.0,11794.299363148995,1,1,2,3,69.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04179985472815508,5616.33303007095,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14137,1,55.0,240.0,1,300,0.0,0.0,0.0,0,90,0.0,0.0,0.0,2878.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114149,2,2,5,0,1,,370.0,400.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1145.0847147562,0.0,7735.371701313894,0,4,2,3,90.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.3720571048332631,7735.371701313894,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +14138,2,46.0,0.0,9,300,2300.0,0.0,0.0,0,48,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,2006.0,6,114150,2,1,1,0,1,,250.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1395.32657643694,2300.0,23930.82753521485,0,1,1,2,173.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09611034121638665,23930.82753521485,6,3,6,6_1,6_0,6_0_0 +14139,2,55.0,0.0,2,111,0.0,0.0,421.0,0,63,0.0,0.0,265.3640002646071,421.0,0.0,503.8242341247306,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,114151,2,1,0,1,1,,0.0,373.0,12,1.0,0.0,2.0,1.0,1.0,1,1,371.17428444559,0.0,21189.022337171984,0,1,2,3,40.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019868778903566402,21189.022337171984,5,3,5,5_0,5_2,5_0_1 +14140,2,25.0,0.0,6,112,1700.0,0.0,0.0,54,62,0.0,264.8654554020448,2898.840923732504,1900.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,4,114152,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,234.382874439186,1700.0,41011.19035681629,1,1,1,2,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046328818633868535,27340.79357121086,7,4,7,7_1,7_0,7_0_0 +14142,2,71.0,0.0,2,400,240.0,,,0,86,0.0,0.0,,416.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,2,114154,2,1,0,0,2,,228.0,,21,1.0,4.0,6.0,3.0,2.0,3,3,88.28271726592978,240.0,13502.575304547508,0,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03080893760021439,6751.287652273754,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +14144,1,37.0,396.0,2,111,465.0,198.0,0.0,85,68,0.0,0.0,792.9182526680084,663.0,0.0,375.90380149207823,71,2,2,2,1,1,1,2,2,2,30.0,2,,2,114156,1,1,0,1,2,1015.0,0.0,366.0,42,1.0,0.0,5.0,4.0,2.1,2,2,335.015413120644,465.0,14401.096154432566,6,1,2,3,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04603816215725584,6857.664835444079,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +14145,1,45.0,119.0,9,111,1360.0,0.0,0.0,85,62,0.0,662.163638505112,2319.072738986003,1950.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,114157,2,1,1,0,1,,450.0,,42,1.0,0.0,5.0,3.0,2.0,3,2,236.598075599323,1360.0,27546.107952878207,6,1,1,2,100.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07079039998448312,13773.053976439103,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +14146,2,74.0,0.0,5,111,789.0,,,0,86,0.0,0.0,,877.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,3,114158,1,3,0,0,2,,750.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,84.69405320062475,789.0,21117.57960109537,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04152938057136576,21117.57960109537,5,3,5,5_1,5_3,5_0_0 +14147,2,46.0,0.0,2,111,480.0,0.0,0.0,0,53,1792.9608467622227,264.8654554020448,818.4962608185893,2410.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,2,7.0,1,,2,114159,2,1,2,0,1,,367.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,816.397537264306,480.0,28338.79270577326,0,1,0,1,92.0,7,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0850424372351271,28338.79270577326,8,4,8,8_1,8_2,8_0_1 +14148,2,35.0,0.0,9,111,500.0,1060.0,0.0,52,46,0.0,0.0,852.6002716860306,1560.0,0.0,2012.4142908161764,20,0,0,0,0,0,0,0,0,2,30.0,2,2010.0,6,114160,2,1,0,0,1,,0.0,607.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1029.03591976645,500.0,43153.68544476896,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036149867245906374,23974.269691538313,6,3,6,6_0,6_4,6_0_0 +14150,2,82.0,0.0,1,111,270.0,742.0,0.0,77,78,0.0,0.0,460.40414671045653,1012.0,0.0,1408.6900035713234,50,0,0,0,0,0,0,0,0,0,,1,,1,114162,2,1,1,0,2,,260.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1307.2493254866,270.0,24124.206812643806,5,5,0,1,85.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041949565756068626,16082.804541762538,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +14151,2,87.0,0.0,5,111,220.0,0.0,0.0,0,72,0.0,0.0,375.14411954185346,282.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,114163,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,425.035773913593,220.0,21972.876945005904,0,5,0,1,86.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012834004427631142,21972.876945005904,6,3,6,6_0,6_3,6_0_0 +14152,1,58.0,250.0,9,111,360.0,,,0,78,0.0,0.0,,448.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,2011.0,6,114164,2,1,0,0,2,,224.0,384.0,21,1.0,0.0,2.0,2.0,1.5,2,2,293.9181453103776,360.0,9406.0,0,7,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.047629172868381885,6270.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14153,2,51.0,0.0,2,111,399.0,1190.0,0.0,64,45,0.0,0.0,680.3750168054524,1589.0,0.0,2259.219817048349,41,0,0,0,0,0,0,0,0,3,30.0,1,,2,114165,2,1,1,0,1,,311.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1572.12732868239,399.0,48559.83914424984,1,1,0,1,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03272251366566068,32373.22609616656,8,4,8,8_1,8_3,8_0_1 +14154,2,39.0,0.0,1,111,900.0,950.0,0.0,35,33,0.0,0.0,1534.680489034855,1850.0,0.0,1803.5788455427996,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,114166,2,2,0,0,1,,310.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,237.301887400096,900.0,78000.9016647637,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023717674546263907,37143.28650703033,9,5,9,9_0,9_4,9_1_0 +14155,2,44.0,0.0,2,111,0.0,0.0,1000.0,46,53,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,114167,1,1,2,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,748.438251200918,0.0,29438.887643743063,1,1,1,2,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033968674771328866,14018.517925591934,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +14156,2,55.0,0.0,9,111,0.0,,,55,63,0.0,0.0,,84.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,114168,1,2,0,0,2,,240.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,163.18606579197262,0.0,12554.0,4,4,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006691094471881472,5978.095238095238,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14157,0,54.0,0.0,1,111,0.0,0.0,0.0,78,56,0.0,0.0,0.0,914.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114169,2,2,0,0,2,,0.0,,42,1.0,3.0,2.0,2.0,1.5,2,2,1850.15919743551,0.0,30093.305305519414,5,1,5,0,50.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.030372203741686137,20062.20353701294,5,3,5,5_0,5_3,5_1_0 +14158,2,81.0,0.0,7,212,280.0,0.0,0.0,0,71,0.0,662.163638505112,477.4561521441771,1780.0,1385.589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,114170,2,1,2,0,2,,138.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,827.44780677827,280.0,14177.715940084021,0,5,0,1,114.0,2,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.125549136935907,14177.715940084021,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +14159,2,32.0,0.0,9,221,650.0,0.0,0.0,52,52,0.0,0.0,1108.3803531918397,725.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,114171,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,512.559298963491,650.0,46949.38608522353,1,1,1,2,83.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015442161451993525,22356.85051677311,6,3,6,6_1,6_1,6_0_0 +14160,2,44.0,0.0,6,111,120.0,,,63,43,0.0,99.3245457757668,,333.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,114172,1,1,0,0,2,,143.0,,43,2.0,4.0,3.0,4.0,2.1,2,2,70.01022994040224,120.0,23362.73892607835,4,1,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01425346578813553,11125.113774323023,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14161,2,39.0,0.0,1,111,400.0,70.0,0.0,0,37,0.0,0.0,682.0802173488245,470.0,0.0,132.89528335578524,10,2,2,2,2,1,2,2,2,2,20.0,2,,1,114173,2,1,0,1,1,,0.0,809.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1016.82863978679,400.0,59506.0431180795,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.007898357467112474,59506.0431180795,10,5,10,10_0,10_4,10_1_0 +14162,2,45.0,0.0,5,111,570.0,0.0,0.0,52,62,1792.9608467622227,0.0,971.9643097220749,2320.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,114174,2,1,2,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1026.02465852147,570.0,52513.96985839419,1,1,1,2,100.0,7,5,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04417872056247058,25006.652313521045,7,4,7,7_1,7_2,7_0_0 +14163,2,24.0,0.0,7,111,1000.0,,,56,21,0.0,0.0,,1264.0,365.79555550468154,,43,0,0,0,0,0,0,0,0,0,,1,,5,114175,2,1,0,0,2,,480.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,97.0789559709865,1000.0,37107.26101638271,1,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034063414150722386,16133.591746253354,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +14164,2,46.0,0.0,8,111,600.0,1337.0,0.0,38,37,0.0,0.0,1023.1203260232367,1937.0,0.0,2538.299912095498,20,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,114176,2,1,2,0,1,,324.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,2126.68152589763,600.0,80007.49636206018,1,1,1,2,170.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024210231391749083,38098.80779145723,9,5,9,9_1,9_3,9_0_0 +14165,2,82.0,0.0,1,400,1265.0,0.0,0.0,0,74,0.0,0.0,2157.0786873656575,1405.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114177,2,1,2,0,1,,187.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,1191.93379576219,1265.0,44474.23441687007,0,5,0,1,50.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03159132514413901,44474.23441687007,10,5,10,10_1,10_0,10_1_0 +14166,2,32.0,0.0,1,112,500.0,0.0,0.0,0,21,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,1,,1,114178,1,1,3,0,2,,450.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,841.731979834326,500.0,18609.85588207278,0,1,0,1,160.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.026867483723055547,18609.85588207278,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14167,2,66.0,0.0,1,300,700.0,0.0,0.0,71,64,1476.555991451242,0.0,1193.6403803604428,2200.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114179,2,1,2,0,1,,650.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,841.883318407163,700.0,20872.711503268707,5,1,0,1,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10540077649496932,10436.355751634354,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +14168,2,31.0,0.0,1,111,852.0,360.0,0.0,35,38,0.0,0.0,1452.830862952996,1212.0,0.0,683.461457258324,20,0,0,0,0,0,0,0,0,2,60.0,2,,1,114180,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,2.0,2.0,1.5,2,2,982.009092469994,852.0,65423.37893581194,1,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018525487672978725,43615.58595720796,10,5,10,10_0,10_4,10_1_0 +14169,2,68.0,0.0,6,221,500.0,,,0,78,0.0,0.0,,668.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,4,114181,1,1,0,0,2,,600.0,,31,1.0,0.0,3.0,4.0,2.3,3,2,81.20032295360753,500.0,19190.87614321165,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03480820755733397,8343.859192700718,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +14170,2,70.0,0.0,2,111,300.0,0.0,0.0,0,78,0.0,0.0,511.56016301161833,360.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114182,2,1,0,1,2,636.0,237.0,583.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1893.01337070211,300.0,18471.631160692774,0,5,2,3,66.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019489345411252693,18471.631160692774,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14171,2,53.0,0.0,2,111,260.0,70.0,0.0,64,54,0.0,0.0,443.3521412767359,330.0,0.0,132.89528335578524,50,2,1,2,2,1,2,2,2,3,40.0,2,,2,114183,1,1,0,1,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,406.626468681454,260.0,56519.159267280025,1,1,1,2,73.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005838728039803717,37679.43951152002,9,5,9,9_0,9_2,9_0_1 +14172,2,41.0,0.0,9,111,1240.0,0.0,0.0,43,37,0.0,0.0,2114.448673781356,1240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,114184,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1636.55676102018,1240.0,47869.951582822665,1,1,1,2,147.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02590351481460352,22795.215039439365,6,3,6,6_1,6_2,6_0_0 +14173,2,75.0,0.0,2,111,700.0,0.0,0.0,77,77,0.0,0.0,1193.6403803604428,784.0,116.38949493330776,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114185,2,2,3,0,1,,276.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,2076.98511659758,700.0,20902.38370090745,5,5,0,1,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03750768387080961,13934.922467271632,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +14174,2,46.0,0.0,7,120,1700.0,2400.0,0.0,56,23,0.0,264.8654554020448,2898.840923732504,4300.0,0.0,4556.4097150554935,43,1,2,2,1,1,2,2,2,0,,1,,5,114186,1,2,3,0,1,,1200.0,,43,2.0,0.0,9.0,6.0,3.0999999999999996,4,3,307.414601864553,1700.0,66330.41759434078,1,1,0,1,200.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06482697012851116,21396.908901400253,6,3,6,6_1,6_0,6_0_0 +14175,2,67.0,0.0,2,111,344.0,2836.0,0.0,75,75,0.0,92.70290939071567,586.588986919989,3250.0,0.0,5384.157479957242,50,0,0,0,0,0,0,0,0,0,,1,,2,114187,1,3,2,0,2,,388.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,1159.53334853558,344.0,57239.69567083442,5,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056778778466776265,38159.79711388962,9,5,9,9_1,9_4,9_0_1 +14176,2,54.0,0.0,2,111,404.0,,,52,63,0.0,0.0,,542.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,3,60.0,1,,2,114188,1,2,0,0,2,,374.0,502.0,43,2.0,0.0,3.0,2.0,1.5,2,2,83.64221708056681,404.0,34895.79028624113,1,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015531959458551143,23263.860190827418,6,3,6,6_1,6_2,6_0_1 +14177,2,47.0,0.0,6,111,800.0,,,52,64,0.0,0.0,,1592.0,1097.3866665140447,,71,0,0,0,0,0,0,0,0,0,,1,,4,114189,1,2,0,0,1,,600.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,112.96461836712939,800.0,38304.206223480614,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04156201516647272,15321.682489392246,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14178,2,42.0,0.0,2,111,0.0,1200.0,0.0,43,38,0.0,0.0,0.0,2064.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,114190,2,3,1,0,1,,607.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,549.915135954238,0.0,75151.11419583972,1,1,0,1,80.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027464662661172635,28904.27469070759,8,4,8,8_1,8_4,8_0_1 +14179,0,61.0,0.0,9,120,3500.0,0.0,0.0,0,56,0.0,0.0,5968.201901802214,3500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2007.0,6,114191,2,1,1,0,1,,400.0,,32,2.0,2.0,7.0,5.0,2.8,4,3,1089.53689053355,3500.0,42590.643212329494,0,1,5,0,170.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08217767415606418,15210.944004403393,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +14180,2,31.0,0.0,7,111,950.0,0.0,0.0,43,47,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,30.0,2,,5,114192,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1581.26732229239,950.0,51640.016154063895,1,1,1,2,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01839658603447664,34426.6774360426,9,5,9,9_0,9_3,9_0_0 +14181,2,53.0,0.0,1,112,780.0,0.0,0.0,0,54,0.0,0.0,1330.0564238302077,850.0,96.99124577775646,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,114193,2,2,3,0,1,,150.0,390.0,32,2.0,0.0,4.0,2.0,1.5,2,2,485.196609974588,780.0,33237.282424058445,0,1,2,3,60.0,4,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02557369128905487,22158.18828270563,6,3,6,6_1,6_0,6_1_0 +14182,2,71.0,0.0,7,111,1945.0,0.0,0.0,0,74,0.0,0.0,3316.615056858659,1995.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,114194,2,1,2,0,1,,300.0,818.0,11,0.0,2.0,6.0,1.0,1.0,1,1,259.589703643555,1945.0,50405.74213907727,0,5,2,3,120.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03957882406523219,50405.74213907727,10,5,10,10_1,10_2,10_0_0 +14183,2,32.0,0.0,2,111,500.0,0.0,0.0,37,31,0.0,0.0,852.6002716860306,829.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,2,114195,2,2,0,1,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,783.602087178175,500.0,147532.27658583687,1,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005619109385312531,81962.37588102047,10,5,10,10_0,10_4,10_0_1 +14184,1,51.0,18.0,1,112,430.0,870.0,0.0,85,67,0.0,993.245457757668,733.2362336499863,2050.0,0.0,1651.6985217076165,71,1,2,2,2,1,2,2,2,0,,1,,1,114196,1,3,3,0,2,,140.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,56.0298648601268,430.0,17598.573414269533,6,1,1,2,110.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.11648671467528095,11732.38227617969,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +14185,2,51.0,0.0,2,111,300.0,0.0,0.0,45,45,0.0,0.0,511.56016301161833,300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,114197,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,857.331576673152,300.0,84033.54783148007,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0035700027874774084,56022.365220986714,10,5,10,10_0,10_4,10_0_1 +14186,2,51.0,0.0,9,112,0.0,0.0,0.0,85,48,0.0,0.0,0.0,1143.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,114198,2,1,1,0,1,,597.0,550.0,42,1.0,1.0,5.0,4.0,2.5,4,4,378.694729932087,0.0,37574.18441197173,6,1,2,3,100.0,7,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030419821957221836,15029.673764788691,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +14187,2,77.0,0.0,2,111,120.0,300.0,0.0,74,90,0.0,0.0,204.62406520464734,420.0,0.0,569.5512143819367,12,0,0,0,0,0,0,0,0,0,,2,,2,114199,2,1,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1029.85640632822,120.0,115511.58829146036,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0036359988310458555,77007.72552764024,10,5,10,10_0,10_4,10_0_1 +14188,2,38.0,0.0,1,111,270.0,790.0,0.0,0,46,0.0,0.0,460.40414671045653,1060.0,0.0,1499.8181978724333,20,2,2,1,1,1,1,2,2,1,5.0,2,,1,114200,2,1,0,0,1,,240.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1528.46908564815,270.0,28294.439227453004,0,1,1,2,63.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.03746319167094582,28294.439227453004,8,4,8,8_0,8_3,8_1_0 +14189,2,31.0,0.0,1,112,1300.0,0.0,0.0,54,47,0.0,66.2163638505112,2216.7607063836795,1375.0,34.63973063491302,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,114201,2,1,3,0,1,,467.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,732.440825469584,1300.0,42407.3566208622,1,1,1,2,85.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03242361961612038,28271.5710805748,8,4,8,8_1,8_0,8_1_0 +14190,2,38.0,0.0,9,111,323.0,,,33,33,0.0,0.0,,369.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,114202,2,3,0,0,2,,187.0,972.0,43,2.0,0.0,3.0,4.0,2.1,2,2,113.6848585738539,323.0,63398.95481783234,1,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00582028522489476,30189.978484682066,8,4,8,8_0,8_2,8_0_0 +14191,1,39.0,96.0,6,111,0.0,0.0,0.0,52,46,0.0,0.0,0.0,4763.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,1,,4,114203,2,1,2,0,1,,312.0,1011.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,484.579338608436,0.0,40985.0,1,1,2,3,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11621324874954252,15763.46153846154,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +14192,2,55.0,0.0,7,111,500.0,,,0,56,0.0,0.0,,650.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,114204,1,2,0,0,2,,500.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,117.86855676223979,500.0,20339.887772378497,0,1,1,2,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03195691182144564,13559.925181585664,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14193,2,80.0,0.0,2,111,484.0,423.0,0.0,75,75,0.0,0.0,825.3170629920776,907.0,0.0,803.0672122785307,60,0,0,0,0,0,0,0,0,0,,2,,2,114205,2,2,0,0,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1322.3047736331,484.0,55253.66844165107,5,5,0,1,89.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01641519967054874,36835.77896110071,9,5,9,9_0,9_2,9_0_1 +14194,2,57.0,0.0,2,111,600.0,,,0,67,0.0,0.0,,738.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,114206,2,1,0,0,2,,650.0,700.0,12,1.0,1.0,4.0,1.0,1.0,1,1,93.5920358601443,600.0,28219.019973960094,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02615257371379341,28219.019973960094,8,4,8,8_0,8_2,8_0_1 +14195,1,28.0,200.0,1,111,400.0,0.0,0.0,0,35,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,114207,2,1,0,1,1,291.0,0.0,900.0,12,1.0,0.0,1.0,1.0,1.0,1,1,525.081051867391,400.0,10901.730089799501,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.036691423902915264,10901.730089799501,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +14196,2,54.0,0.0,2,111,300.0,0.0,0.0,0,68,0.0,0.0,511.56016301161833,360.0,83.13535352379125,0.0,71,1,2,2,1,2,2,2,2,2,30.0,2,,2,114209,1,2,0,2,1,,0.0,270.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1836.05286146324,300.0,18212.241281160015,0,1,2,3,67.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019766924588925174,18212.241281160015,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14197,2,28.0,0.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,742.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,3,114210,2,3,0,1,1,750.0,0.0,337.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1171.27004475745,0.0,21415.961163145326,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03464705573322135,21415.961163145326,6,3,6,6_0,6_4,6_0_0 +14198,1,24.0,209.0,2,111,500.0,0.0,0.0,84,38,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,2,2,2,2,1,1,2,2,3,45.0,2,,2,114211,2,1,0,1,1,,0.0,713.0,42,1.0,0.0,1.0,2.0,1.5,2,2,1637.87226168513,500.0,51136.409666590465,3,1,3,4,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.00977776897635171,34090.93977772698,9,5,9,9_0,9_4,9_0_1 +14199,2,50.0,0.0,1,111,813.0,1842.0,0.0,46,38,0.0,0.0,1386.3280417614858,2655.0,0.0,3497.0444563050914,12,0,0,0,0,0,0,0,0,0,,1,,1,114212,2,2,2,0,1,,665.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,345.618586101899,813.0,80132.88909784284,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033132463210682764,28618.888963515303,8,4,8,8_1,8_4,8_1_0 +14200,2,31.0,0.0,9,120,1530.0,0.0,0.0,55,67,0.0,0.0,2608.9568313592536,1596.0,91.44888887617039,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,114213,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,558.161454262472,1530.0,31451.11446853386,1,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05074541958113321,14976.721175492314,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +14201,1,44.0,255.0,1,221,360.0,0.0,0.0,0,85,0.0,0.0,613.872195613942,397.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,1,114214,2,2,0,1,1,721.0,200.0,271.0,11,0.0,2.0,3.0,1.0,1.0,1,1,716.166816126463,360.0,4908.649881760955,0,7,2,3,52.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08087763632829688,4908.649881760955,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +14202,2,48.0,0.0,5,300,1474.0,0.0,0.0,75,37,0.0,35.756836479276046,2513.465600930418,1501.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,3,114215,2,1,1,0,1,,262.0,,42,1.0,1.0,7.0,4.0,2.5,4,4,1178.11265251641,1474.0,60117.12893748771,5,1,0,1,196.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024967925556804323,24046.851574995082,6,3,6,6_1,6_0,6_0_0 +14203,2,71.0,0.0,2,111,2200.0,,,75,72,0.0,0.0,,2500.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,114216,2,1,0,0,2,,900.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,8.764192101698525,2200.0,623727.8281323307,5,5,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004008158506388779,415818.55208822043,10,5,10,10_1,10_2,10_0_1 +14204,2,73.0,0.0,9,111,236.0,685.0,0.0,0,74,0.0,0.0,402.42732823580644,921.0,0.0,1300.4752728387555,50,2,1,2,2,1,2,2,2,0,,2,2007.0,6,114217,2,1,0,0,1,,172.0,561.0,11,0.0,0.0,3.0,1.0,1.0,1,1,659.593030189572,236.0,28730.178344204072,0,5,2,3,76.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03205688419215119,28730.178344204072,8,4,8,8_0,8_2,8_0_0 +14205,2,81.0,0.0,2,400,624.0,0.0,0.0,0,72,0.0,0.0,1064.0451390641663,1224.0,831.3535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114218,2,1,1,0,2,,166.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1042.89470526101,624.0,21973.547141700878,0,5,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05570334148177295,21973.547141700878,6,3,6,6_1,6_0,6_0_1 +14206,2,72.0,0.0,6,222,3149.0,0.0,0.0,0,74,0.0,0.0,5369.676511078621,3279.0,110.84713803172167,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,114219,2,1,2,0,1,,336.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1572.39341322134,3149.0,38572.42300871756,0,5,0,1,150.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08500891943601598,38572.42300871756,9,5,9,9_1,9_0,9_0_0 +14207,2,76.0,0.0,2,111,840.0,0.0,0.0,77,75,3902.3265488354255,0.0,1432.3684564325313,4540.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,114220,2,1,2,0,1,,780.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,637.846098382761,840.0,43628.92021417977,5,5,0,1,200.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10405941695812268,29085.94680945318,8,4,8,8_1,8_4,8_0_1 +14208,2,79.0,0.0,1,112,660.0,0.0,0.0,0,71,0.0,662.163638505112,1125.4323586255605,1260.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114221,2,2,1,0,1,,208.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1411.65966804896,660.0,14402.47365614031,0,5,0,1,90.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08748497168490325,14402.47365614031,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14209,1,49.0,150.0,5,112,1000.0,1500.0,0.0,56,62,0.0,0.0,1705.2005433720612,2500.0,0.0,2847.7560719096837,50,2,2,1,2,1,2,2,1,2,20.0,1,,3,114222,2,1,2,0,1,,800.0,700.0,43,4.0,2.0,5.0,7.0,3.3999999999999995,4,4,437.816584521045,1000.0,65465.605239364355,1,1,2,3,90.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.038187991860140234,19254.589776283636,5,3,5,5_1,5_1,5_0_0 +14210,2,71.0,0.0,2,111,765.0,0.0,0.0,0,86,0.0,0.0,1304.4784156796268,765.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114223,2,1,0,1,1,521.0,0.0,412.0,21,1.0,0.0,3.0,2.0,1.5,2,2,209.663361429173,765.0,35776.87504113584,0,5,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021382527096634678,23851.250027423896,6,3,6,6_0,6_4,6_0_1 +14211,2,68.0,0.0,2,112,300.0,0.0,0.0,77,77,0.0,0.0,511.56016301161833,364.0,88.67771042537734,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,114224,1,2,0,1,2,501.0,0.0,480.0,41,0.0,5.0,3.0,2.0,1.5,2,2,2259.50982173123,300.0,28679.347638554016,5,5,2,3,58.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012692059965501799,19119.565092369343,5,3,5,5_0,5_1,5_0_1 +14212,2,83.0,0.0,2,221,326.0,960.0,0.0,77,78,0.0,0.0,555.8953771392919,1286.0,0.0,1822.5638860221975,70,0,0,0,0,0,0,0,0,0,,1,,2,114225,2,2,2,0,1,,283.0,500.0,41,0.0,4.0,3.0,2.0,1.5,2,2,2647.48213450704,326.0,22396.314818451305,5,5,2,3,62.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057420160880241024,14930.876545634203,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +14213,2,52.0,0.0,9,111,275.0,770.0,0.0,0,37,0.0,0.0,468.93014942731685,1045.0,0.0,1461.8481169136376,12,0,0,0,0,0,0,0,0,3,50.0,2,2005.0,6,114226,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1142.02517458849,275.0,50407.54604582555,0,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020731023070434524,50407.54604582555,10,5,10,10_0,10_4,10_0_0 +14214,1,60.0,341.0,2,111,600.0,300.0,0.0,85,62,0.0,0.0,1023.1203260232367,900.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,114227,2,1,0,1,1,945.0,0.0,313.0,42,1.0,0.0,5.0,7.0,3.8,6,5,455.765873748702,600.0,25535.166661351195,6,1,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03524551109988238,6719.780700355578,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +14215,2,52.0,0.0,1,112,400.0,0.0,0.0,38,34,0.0,304.5952737123515,682.0802173488245,1350.0,997.6242422854951,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,114228,2,2,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,689.446089184734,400.0,60983.68606118891,1,1,1,2,130.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022137067914285418,29039.850505328053,8,4,8,8_1,8_0,8_1_0 +14216,2,67.0,0.0,1,111,1200.0,0.0,0.0,0,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,114229,2,1,0,0,1,,504.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1152.73596822635,1200.0,34409.821481633975,0,5,0,1,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03487376418504503,34409.821481633975,9,5,9,9_0,9_4,9_1_0 +14217,2,40.0,0.0,2,300,400.0,0.0,0.0,0,54,0.0,0.0,682.0802173488245,400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,114230,2,1,2,0,1,,350.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,376.352679067203,400.0,26438.45552761655,0,1,1,2,32.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015129476817667208,26438.45552761655,7,4,7,7_1,7_0,7_0_1 +14218,2,55.0,0.0,6,111,546.0,,,56,62,0.0,0.0,,798.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,114231,2,1,0,0,2,,324.0,,43,3.0,4.0,4.0,3.0,2.0,3,3,95.10484542231671,546.0,33656.209771855785,4,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023710334746823117,16828.104885927893,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +14219,1,48.0,228.0,9,112,0.0,0.0,2500.0,0,56,0.0,121.8381094849406,1575.7957260368596,2592.0,0.0,2991.830368911702,71,2,2,2,2,1,2,2,2,0,,1,2007.0,6,114232,1,2,5,0,1,,0.0,687.0,32,2.0,2.0,5.0,4.0,2.1,2,1,2500.4507053048,0.0,5536.980027383533,0,1,2,3,98.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.4681252211821386,2636.6571558969204,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +14220,2,53.0,0.0,2,111,1090.0,1400.0,0.0,0,56,0.0,0.0,1858.6685922755466,2490.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,1,,2,114233,2,1,2,0,1,,250.0,,32,2.0,0.0,5.0,2.0,1.5,2,2,449.756894154805,1090.0,28328.968255828542,0,1,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0878958943196844,18885.978837219027,5,3,5,5_1,5_2,5_0_1 +14221,2,78.0,0.0,2,111,0.0,0.0,2000.0,0,77,0.0,66.2163638505112,1260.6365808294875,2050.0,0.0,2393.4642951293617,50,0,0,0,0,0,0,0,0,0,,1,,2,114234,2,1,1,0,1,,160.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1116.12355656274,0.0,31395.62739588762,0,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06529571695288118,31395.62739588762,8,4,8,8_1,8_3,8_0_1 +14222,2,52.0,0.0,6,111,400.0,,,0,52,0.0,0.0,,500.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,2,20.0,2,,4,114235,2,2,0,0,2,,300.0,650.0,12,1.0,0.0,1.0,1.0,1.0,1,1,34.69921708314929,400.0,24393.673161619005,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020497118112851483,24393.673161619005,7,4,7,7_0,7_2,7_0_0 +14223,2,60.0,0.0,6,112,780.0,0.0,0.0,68,75,0.0,893.9209119819011,1330.0564238302077,1511.0,77.59299662220518,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,114236,2,2,1,0,1,,120.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,913.206287823731,780.0,40023.64618241898,1,5,0,1,96.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03775268232967067,26682.430788279322,7,4,7,7_1,7_0,7_0_0 +14224,2,53.0,0.0,9,112,900.0,0.0,0.0,48,54,0.0,595.9472746546007,1534.680489034855,1350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,114237,2,1,2,0,1,,440.0,820.0,43,3.0,3.0,4.0,3.0,2.0,3,3,471.187869708629,900.0,61900.378557400865,1,1,2,3,80.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021809236574347135,30950.189278700433,8,4,8,8_1,8_1,8_0_0 +14225,2,81.0,0.0,2,111,450.0,1500.0,0.0,0,77,0.0,0.0,767.3402445174275,1950.0,0.0,2847.7560719096837,71,2,2,2,2,1,2,2,2,0,,1,,2,114238,1,3,4,0,2,,170.0,197.0,11,0.0,1.0,2.0,1.0,1.0,1,1,157.697759834869,450.0,24738.584576032234,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.07882423483068797,24738.584576032234,7,4,7,7_1,7_3,7_0_1 +14226,2,50.0,0.0,1,111,1800.0,0.0,0.0,85,52,1054.6828510366015,1589.1927324122687,3069.36097806971,4180.0,249.40606057137379,0.0,50,2,2,2,1,1,2,2,2,2,2.0,1,,1,114239,1,2,3,0,1,,650.0,,42,1.0,0.0,5.0,4.0,2.5,4,3,222.990728905668,1800.0,27645.50939344098,7,1,0,1,150.0,9,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0.1511999630938876,11058.203757376392,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +14227,2,75.0,0.0,2,111,223.0,180.0,0.0,77,75,0.0,0.0,380.25972117196966,403.0,0.0,341.730728629162,42,2,1,2,2,1,2,2,2,0,,2,,2,114240,2,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1665.41719252916,223.0,26713.500483266966,5,5,0,1,76.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015086004930444614,17809.000322177977,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14228,2,31.0,0.0,1,111,0.0,0.0,0.0,21,37,0.0,0.0,0.0,1759.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,35.0,2,,1,114241,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1052.47684514052,0.0,64331.38290280722,1,1,1,2,56.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027342797879186313,42887.58860187148,9,5,9,9_0,9_4,9_1_0 +14229,2,61.0,0.0,1,111,1700.0,0.0,0.0,75,78,0.0,0.0,2898.840923732504,1820.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114242,2,1,1,0,1,,800.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,520.475459192794,1700.0,57749.667720326855,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031515332846831126,38499.7784802179,9,5,9,9_1,9_4,9_1_0 +14230,2,67.0,0.0,5,120,868.0,0.0,0.0,77,75,1961.7101029280789,0.0,1480.114071646949,2796.0,94.22006732696343,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,114243,2,1,3,0,1,,416.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1299.31634662754,868.0,43373.93437026313,5,5,0,1,122.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06446267880916329,28915.956246842088,8,4,8,8_1,8_0,8_0_0 +14231,2,67.0,0.0,5,111,470.0,1280.0,0.0,75,75,0.0,0.0,801.4442553848687,1750.0,0.0,2430.0851813629297,50,0,0,0,0,0,0,0,0,0,,1,,3,114244,2,1,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,828.541862914267,470.0,28749.764408237785,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0608700640168921,19166.509605491858,5,3,5,5_1,5_3,5_0_0 +14232,2,43.0,0.0,5,111,156.0,50.0,0.0,0,42,0.0,0.0,266.01128476604157,206.0,0.0,94.92520239698945,50,2,1,2,2,1,2,2,2,1,20.0,2,,3,114245,2,3,0,1,1,443.0,0.0,235.0,12,1.0,0.0,2.0,1.0,1.0,1,1,216.735545864002,156.0,21375.82913318757,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009637053080676512,21375.82913318757,6,3,6,6_0,6_4,6_0_0 +14233,2,76.0,0.0,6,111,600.0,,,77,77,0.0,92.70290939071567,,758.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,4,114246,2,1,0,0,2,,800.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,118.31198408973273,600.0,21581.349200039556,5,5,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512291993304157,10790.674600019778,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14234,1,33.0,317.0,2,111,396.0,264.0,0.0,0,52,0.0,0.0,675.2594151753362,660.0,0.0,501.2050686561043,71,2,1,2,2,1,2,1,2,3,55.0,2,,2,114247,2,1,0,1,1,480.0,0.0,304.0,32,1.0,0.0,2.0,2.0,1.3,1,1,288.050827778635,396.0,16187.478030485527,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04077225610790244,12451.906177296558,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +14235,2,44.0,0.0,2,111,848.0,200.0,0.0,46,65,0.0,0.0,1446.010060779508,7656.0,0.0,379.7008095879578,60,0,0,0,0,0,0,0,0,2,60.0,1,,2,114248,1,1,2,0,1,,350.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,421.017694356733,848.0,64176.054312779605,1,1,1,2,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11929683247097717,22920.01939742129,6,3,6,6_1,6_3,6_0_1 +14236,2,60.0,0.0,2,111,330.0,,,0,55,0.0,0.0,,330.0,0.0,,71,0,0,0,0,0,0,0,0,2,8.0,2,,2,114249,2,1,0,0,2,,138.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,123.67165168906719,330.0,30227.13202629045,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010917344050801053,20151.4213508603,5,3,5,5_0,5_2,5_0_1 +14237,2,64.0,0.0,9,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,1137.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2013.0,6,114250,2,1,1,0,1,,210.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,861.826978357891,0.0,31424.27180803167,5,5,1,2,135.0,4,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03618222267633888,20949.51453868778,5,3,5,5_1,5_1,5_0_0 +14238,2,28.0,0.0,1,120,1250.0,0.0,0.0,62,52,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,1,114251,2,3,1,0,1,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,3368.63886508551,1250.0,26346.7382983836,4,1,2,3,56.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04744420299178699,17564.4921989224,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +14239,1,43.0,425.0,2,111,400.0,0.0,0.0,0,31,0.0,0.0,682.0802173488245,400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,114252,2,2,0,1,1,527.0,80.0,695.0,32,1.0,0.0,4.0,3.0,1.8,2,1,2031.5233287939,400.0,13238.785568707946,0,1,2,3,66.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03021425174718941,7354.880871504414,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14240,2,82.0,0.0,2,111,670.0,0.0,0.0,86,90,0.0,0.0,1142.484364059281,670.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,114253,2,1,0,1,2,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,925.971293495918,670.0,102427.02247387278,6,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006541242572690273,68284.68164924852,10,5,10,10_0,10_4,10_0_1 +14241,2,59.0,0.0,2,111,229.0,500.0,0.0,0,77,0.0,0.0,390.490924432202,729.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,2,,2,114254,1,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1678.24354912512,229.0,16900.131103511245,0,5,0,1,56.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04313576004440225,16900.131103511245,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14243,0,69.0,0.0,2,111,346.0,0.0,0.0,0,77,0.0,0.0,589.9993880067332,346.0,0.0,0.0,42,2,1,2,2,1,2,2,2,0,,2,,2,114256,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1209.56797116932,346.0,15792.15872782479,0,5,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021909607544050944,15792.15872782479,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +14244,2,52.0,0.0,2,111,300.0,0.0,0.0,63,52,0.0,794.5963662061343,511.56016301161833,1000.0,138.5589225396521,0.0,71,2,2,2,2,2,2,2,1,2,45.0,1,,2,114257,1,3,4,0,2,,0.0,630.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1448.28152579456,300.0,30403.925850076943,1,1,2,3,48.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0.032890489370716224,20269.283900051294,5,3,5,5_1,5_2,5_0_1 +14245,2,31.0,0.0,5,111,640.0,0.0,0.0,0,67,0.0,0.0,1091.3283477581192,824.0,254.94841747295985,0.0,30,0,0,0,0,0,0,0,0,3,30.0,2,,3,114258,2,2,0,0,1,,0.0,650.0,22,3.0,0.0,3.0,3.0,2.0,3,3,386.434721322685,640.0,52047.40149141055,0,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015831722168415763,26023.700745705275,7,4,7,7_0,7_4,7_0_0 +14246,2,67.0,0.0,1,211,610.0,1200.0,0.0,77,75,0.0,0.0,1040.1723314569574,1810.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,114259,2,1,1,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1227.24841906774,610.0,50448.32228500078,5,5,0,1,90.0,3,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03587829917860611,33632.21485666719,9,5,9,9_1,9_2,9_1_0 +14247,2,64.0,0.0,5,112,1050.0,0.0,0.0,33,31,2657.800784612236,0.0,1790.4605705406643,3640.0,96.99124577775646,0.0,10,2,2,2,2,2,2,2,1,0,,1,,3,114260,2,3,3,0,1,,315.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,802.340414158547,1050.0,217164.98923132714,1,1,0,1,200.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.016761449499222095,144776.65948755143,10,5,10,10_1,10_0,10_0_0 +14248,1,62.0,309.0,8,111,0.0,,,77,78,0.0,0.0,,1139.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,114261,2,2,0,0,2,,453.0,442.0,41,0.0,2.0,3.0,2.0,1.5,2,2,99.49079946489928,0.0,21460.22913536121,5,5,2,3,53.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053074922584270386,14306.81942357414,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +14249,0,52.0,0.0,1,400,200.0,0.0,0.0,0,64,949.2145659329414,0.0,341.04010867441224,1160.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114262,2,2,2,0,1,,180.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1449.12896884728,200.0,9447.256355721838,0,1,5,0,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12278697182779769,9447.256355721838,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +14250,2,69.0,0.0,7,211,250.0,,,0,75,0.0,0.0,,439.0,261.87636359994247,,41,0,0,0,0,0,0,0,0,0,,1,,5,114263,2,1,0,0,1,,180.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,86.60710037601925,250.0,46998.86154569003,0,5,0,1,92.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009340651785218783,31332.574363793352,8,4,8,8_1,8_2,8_0_0 +14251,2,61.0,0.0,7,211,0.0,,,0,34,0.0,0.0,,1354.0,0.0,,30,0,0,0,0,0,0,0,0,0,,1,,5,114264,2,1,0,0,2,,411.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,84.65695643679032,0.0,6312.7157965301885,0,1,3,4,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21448771711602033,6312.7157965301885,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14252,0,49.0,0.0,2,211,804.0,,,0,56,0.0,0.0,,1068.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,3,80.0,1,,2,114265,2,1,0,0,2,,906.0,,32,2.0,0.0,7.0,4.0,2.3,3,3,140.75630061573582,804.0,17662.832705204593,0,1,5,0,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06046595230929744,7679.492480523737,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +14253,2,58.0,0.0,9,112,204.0,,,42,63,0.0,0.0,,556.0,487.7274073395754,,71,2,2,2,2,1,2,2,2,0,,1,2009.0,6,114266,2,3,0,0,1,,200.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,167.89459622354929,204.0,13993.421965317919,4,4,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03973295462525332,6084.096506659966,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +14254,2,61.0,0.0,2,111,413.0,200.0,0.0,35,37,0.0,0.0,704.2478244126613,613.0,0.0,379.7008095879578,41,0,0,0,0,0,0,0,0,2,45.0,2,,2,114267,2,2,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1083.88483190662,413.0,42710.77719634055,5,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014352349459295762,28473.85146422703,8,4,8,8_0,8_4,8_0_1 +14255,2,75.0,0.0,2,111,341.0,1652.0,0.0,77,74,0.0,0.0,581.4733852898729,1993.0,0.0,3136.3286871965315,50,0,0,0,0,0,0,0,0,0,,1,,2,114268,1,2,2,0,2,,240.0,688.0,41,0.0,1.0,5.0,2.0,1.5,2,2,81.1490884746978,341.0,31406.090912132575,5,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06345902791837359,20937.393941421717,5,3,5,5_1,5_3,5_0_1 +14256,2,90.0,0.0,1,111,420.0,2413.0,0.0,77,74,0.0,0.0,716.1842282162656,2833.0,0.0,4581.090267678711,12,0,0,0,0,0,0,0,0,0,,1,,1,114269,2,2,2,0,1,,170.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,438.497031457675,420.0,96061.12962184209,6,6,0,1,120.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0294916373683351,64040.75308122806,10,5,10,10_1,10_2,10_1_0 +14257,1,50.0,357.0,8,111,360.0,,,0,48,0.0,0.0,,510.0,207.83838380947813,,43,0,0,0,0,0,0,0,0,0,,8,1999.0,6,114270,2,2,0,0,2,,600.0,634.0,32,1.0,0.0,4.0,2.0,1.5,2,2,109.23283071036428,360.0,8999.092132112923,0,4,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.056672383448557455,5999.394754741948,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14259,2,42.0,0.0,7,111,341.0,396.0,0.0,55,55,0.0,0.0,581.4733852898729,737.0,0.0,751.8076029841565,42,0,0,0,0,0,0,0,0,2,5.0,2,,5,114272,2,1,0,0,1,,400.0,506.0,43,2.0,0.0,4.0,3.0,1.8,2,2,348.943574183953,341.0,33059.92569244254,1,1,2,3,77.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02229285107463134,18366.625384690302,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +14260,2,75.0,0.0,2,111,340.0,1630.0,0.0,74,74,0.0,0.0,579.7681847465008,1970.0,0.0,3094.561598141856,10,0,0,0,0,0,0,0,0,0,,1,,2,114273,2,2,2,0,1,,360.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,317.64040445224,340.0,76569.73869881878,5,5,0,1,129.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025728179741462152,51046.492465879186,10,5,10,10_1,10_3,10_0_1 +14261,1,31.0,240.0,1,400,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1246.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,114274,1,2,2,0,2,,303.0,500.0,42,1.0,0.0,8.0,4.0,2.1,2,2,1171.50481169983,0.0,29650.89004141389,6,1,2,3,100.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0420223473312164,14119.471448292328,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +14262,1,62.0,270.0,6,111,800.0,450.0,0.0,0,77,0.0,0.0,1364.160434697649,1250.0,0.0,854.326821572905,50,0,0,0,0,0,0,0,0,0,,2,,4,114275,2,1,0,0,1,,0.0,309.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1438.38684375742,800.0,6673.038503014495,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.18732096322167507,6673.038503014495,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +14263,2,41.0,0.0,1,111,0.0,0.0,1400.0,46,38,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,12,0,0,0,0,0,0,0,0,1,10.0,1,,1,114276,2,1,2,0,1,,260.0,986.0,43,2.0,0.0,4.0,4.0,2.1,2,2,624.017744196774,0.0,68000.38648707884,1,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020588118278798643,32381.136422418494,8,4,8,8_1,8_3,8_1_0 +14264,2,74.0,0.0,5,111,62.0,0.0,0.0,77,74,0.0,0.0,105.7224336890678,62.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,114277,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,855.450056445776,62.0,73766.39916994197,5,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0008404910731397542,49177.59944662798,10,5,10,10_0,10_4,10_0_0 +14265,0,80.0,0.0,7,111,1366.0,0.0,0.0,0,72,0.0,0.0,2329.3039422462357,1366.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,114278,2,2,0,0,2,,166.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,936.121361532082,1366.0,49254.22705216228,0,5,0,1,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02773366027150013,49254.22705216228,10,5,10,10_0,10_4,10_0_0 +14266,2,55.0,0.0,5,111,303.0,759.0,0.0,52,47,0.0,0.0,516.6757646417345,1062.0,0.0,1440.9645723862998,42,0,0,0,0,0,0,0,0,2,20.0,1,,3,114279,2,1,1,0,1,,160.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1174.96168738225,303.0,79625.1053827397,1,1,0,1,98.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013337501971208811,53083.40358849313,10,5,10,10_1,10_3,10_0_0 +14267,2,38.0,0.0,8,111,450.0,,,22,22,0.0,0.0,,538.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,114280,2,1,0,0,2,,250.0,,43,3.0,0.0,4.0,4.0,2.3,3,2,84.93960350946205,450.0,9446.855966306426,1,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056950164363556995,4107.328681002794,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14269,2,36.0,0.0,8,111,400.0,,,0,34,0.0,0.0,,400.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,2,2000.0,6,114282,2,1,0,0,1,,240.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,147.6259021286539,400.0,103563.64218107586,0,1,1,2,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003862359333603003,103563.64218107586,10,5,10,10_0,10_2,10_0_0 +14270,2,78.0,0.0,2,111,800.0,1000.0,0.0,0,74,0.0,0.0,1364.160434697649,1800.0,0.0,1898.504047939789,41,2,2,2,2,2,2,2,1,0,,2,,2,114283,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1860.82982524714,800.0,69853.8310983408,0,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.025768092768826738,69853.8310983408,10,5,10,10_0,10_3,10_0_1 +14271,2,52.0,0.0,2,111,783.0,631.0,0.0,46,46,0.0,0.0,1335.172025460324,1414.0,0.0,1197.956054250007,60,0,0,0,0,0,0,0,0,0,,1,,2,114284,2,1,1,0,1,,520.0,,43,5.0,1.0,5.0,6.0,3.5,6,5,1026.85995347204,783.0,80898.7310406772,1,1,0,1,120.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.017478642517754918,23113.923154479202,6,3,6,6_1,6_3,6_0_1 +14272,0,59.0,0.0,5,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,964.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,8,,3,114285,1,2,0,0,2,,0.0,,43,2.0,4.0,3.0,2.0,1.5,2,2,929.929521540251,0.0,53866.5186926289,1,1,5,0,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017896088765281835,35911.0124617526,9,5,9,9_0,9_4,9_0_0 +14273,2,64.0,0.0,5,111,220.0,0.0,0.0,0,77,0.0,0.0,375.14411954185346,220.0,0.0,0.0,20,1,2,2,1,2,2,2,2,0,,2,,3,114286,1,2,0,1,1,840.0,0.0,388.0,11,0.0,2.0,3.0,1.0,1.0,1,1,373.749551961444,220.0,16684.979762375053,0,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01318551194746452,16684.979762375053,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +14274,2,61.0,0.0,9,111,240.0,474.0,0.0,0,77,0.0,0.0,409.2481304092947,714.0,0.0,899.89091872346,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,114287,2,1,0,0,1,,0.0,568.0,11,0.0,4.0,2.0,1.0,1.0,1,1,2262.48232749094,240.0,17387.401901901067,0,5,2,3,38.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04106421442538429,17387.401901901067,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +14275,2,38.0,0.0,2,211,400.0,0.0,0.0,54,54,0.0,0.0,682.0802173488245,520.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,114288,2,2,1,0,1,,650.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1301.217501694,400.0,43932.031489609246,1,1,1,2,108.0,3,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011836466067429406,24406.684160894027,7,4,7,7_1,7_2,7_0_1 +14276,2,66.0,0.0,1,111,1100.0,0.0,0.0,74,74,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,114289,2,1,0,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2007.28023125784,1100.0,37392.33408614338,6,5,1,2,180.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.029417794499424714,24928.222724095587,7,4,7,7_0,7_3,7_1_0 +14278,2,63.0,0.0,1,111,217.0,945.0,0.0,0,77,0.0,0.0,370.02851791173725,1162.0,0.0,1794.0863253031007,50,0,0,0,0,0,0,0,0,0,,1,,1,114291,2,2,2,0,2,,133.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1390.37197205477,217.0,18812.118323694907,0,5,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06176869505101913,18812.118323694907,5,3,5,5_1,5_3,5_1_0 +14279,2,52.0,0.0,2,112,800.0,0.0,0.0,0,33,0.0,529.7309108040896,1364.160434697649,1260.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,2,114292,2,1,2,0,2,,200.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,109.520262060093,800.0,39850.19427511913,0,1,1,2,85.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03161841549130649,39850.19427511913,9,5,9,9_1,9_0,9_0_1 +14280,2,74.0,0.0,5,111,1270.0,0.0,0.0,0,78,0.0,0.0,2165.6046900825177,1330.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114293,2,2,2,0,1,,100.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,411.365470296015,1270.0,21132.75188296952,0,5,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06293548551392503,21132.75188296952,5,3,5,5_1,5_3,5_0_0 +14281,2,41.0,0.0,7,111,627.48,1058.4,0.0,35,35,0.0,0.0,1069.979236955101,1686.0,0.0,2009.3766843394728,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,114294,2,1,1,0,1,,633.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,824.331026533281,627.48,134204.25233248016,1,1,0,1,176.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012562940225046459,55918.438471866735,10,5,10,10_1,10_4,10_0_0 +14282,1,48.0,350.0,2,111,400.0,,,0,68,0.0,0.0,,650.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,8,,2,114295,2,1,0,0,2,,260.0,342.0,32,1.0,4.0,4.0,2.0,1.3,1,1,29.565991604879315,400.0,11764.293499468706,0,4,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05525193672100709,9049.456538052851,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14283,2,53.0,0.0,7,111,778.0,1972.0,0.0,52,22,0.0,0.0,1326.6460227434636,2750.0,0.0,3743.8499825372637,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,114296,2,1,2,0,1,,1027.0,,43,3.0,0.0,7.0,5.0,3.0,5,5,1153.20135914536,778.0,95228.4286226837,1,1,1,2,150.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028877931094464595,31742.809540894566,8,4,8,8_1,8_3,8_0_0 +14284,2,94.0,0.0,1,112,0.0,,,0,71,0.0,0.0,,376.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,1,114297,1,3,0,0,2,,0.0,,11,0.0,8.0,2.0,1.0,1.0,1,1,93.0475576248084,0.0,8888.970398918727,0,5,0,1,28.0,8,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04229961211770234,8888.970398918727,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +14285,0,80.0,0.0,5,112,1200.0,0.0,0.0,0,71,1265.6194212439218,0.0,2046.2406520464733,2530.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,114298,2,1,2,0,1,,0.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,2097.05531484752,1200.0,19229.80461803257,0,5,0,1,120.0,8,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13156659936250814,19229.80461803257,5,3,5,5_1,5_1,5_0_0 +14286,1,75.0,91.0,6,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,1908.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,114299,2,2,0,1,2,526.0,0.0,390.0,11,0.0,2.0,3.0,1.0,1.0,1,1,673.958636527287,300.0,16735.481909290433,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11400926548406141,16735.481909290433,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +14287,2,45.0,0.0,2,112,1243.0,0.0,0.0,85,62,0.0,0.0,2119.564275411472,1323.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,114300,2,2,4,0,1,,90.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1677.38125652725,1243.0,21393.0,6,1,1,2,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06184265881363063,14262.0,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +14288,1,47.0,300.0,2,112,400.0,,,81,63,0.0,0.0,,640.0,332.541414095165,,50,0,0,0,0,0,0,0,0,0,,1,,2,114301,2,2,0,0,2,,500.0,450.0,43,4.0,0.0,4.0,8.0,4.1,6,4,96.6065028259124,400.0,15313.737807896858,4,4,2,3,58.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04179254000744157,3735.0580019260633,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +14289,2,42.0,0.0,5,111,460.0,942.0,0.0,56,63,0.0,0.0,784.3922499511482,1402.0,0.0,1788.3908131592812,50,0,0,0,0,0,0,0,0,0,,2,,3,114302,2,1,0,0,1,,790.0,376.0,43,2.0,1.0,5.0,5.0,2.8,5,2,286.12134825896,460.0,41536.91326378941,1,4,2,3,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033753109940940655,14834.611879924789,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +14290,2,64.0,0.0,9,221,2930.0,0.0,0.0,75,74,0.0,79.45963662061344,4996.23759208014,2990.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114303,2,1,1,0,1,,1264.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,775.389392655974,2930.0,95266.86173332093,5,5,0,1,209.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03138552006016385,63511.241155547286,10,5,10,10_1,10_1,10_0_0 +14291,2,38.0,0.0,2,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,471.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,2,,2,114304,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,907.691169823226,0.0,44594.49935723159,4,1,1,2,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010561840737956869,24774.72186512866,7,4,7,7_0,7_4,7_0_1 +14292,2,23.0,0.0,7,111,180.0,500.0,0.0,0,46,0.0,0.0,306.936097806971,680.0,0.0,949.2520239698945,20,0,0,0,0,0,0,0,0,3,20.0,2,,5,114305,2,1,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1782.64895387165,180.0,22845.246478219327,0,1,2,3,30.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029765491943731594,22845.246478219327,6,3,6,6_0,6_3,6_0_0 +14293,2,58.0,0.0,5,111,795.0,1136.0,0.0,85,31,0.0,0.0,1355.6344319807886,1931.0,0.0,2156.7005984596003,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,114306,1,2,3,0,1,,1000.0,,42,2.0,0.0,6.0,5.0,2.8,4,3,470.077961241999,795.0,70251.15672870066,6,1,0,1,152.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027487091884582482,25089.69883167881,7,4,7,7_1,7_4,7_0_0 +14294,2,36.0,0.0,6,111,418.0,1100.0,0.0,37,37,0.0,0.0,712.7738271295216,1518.0,0.0,2088.354452733768,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,114307,2,1,2,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,795.590366459682,418.0,62114.20329076337,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0244388548766226,29578.19204322065,8,4,8,8_1,8_3,8_0_0 +14295,2,80.0,0.0,2,111,473.0,,,78,78,0.0,33.1081819252556,,688.0,263.261952825339,,71,0,0,0,0,0,0,0,0,0,,1,,2,114308,2,2,0,0,2,,400.0,,41,0.0,10.0,6.0,2.0,1.5,2,2,89.56091405931399,473.0,16755.0,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041062369441957625,11170.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +14296,2,50.0,0.0,9,111,800.0,,,85,53,0.0,0.0,,1052.0,349.1684847999233,,42,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,114309,2,1,0,0,1,,360.0,,42,1.0,1.0,4.0,4.0,2.3,3,2,106.73410169005045,800.0,54978.98327510227,6,1,1,2,97.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019134584478145627,23903.905771783597,6,3,6,6_1,6_2,6_0_0 +14297,1,41.0,377.0,2,111,215.0,272.0,0.0,0,67,0.0,0.0,366.61811682499314,487.0,0.0,516.3931010396226,71,0,0,0,0,0,0,0,0,0,,2,,2,114310,1,1,0,0,1,,0.0,385.0,32,1.0,1.0,4.0,3.0,1.8,2,2,192.920880390039,215.0,9880.131966420933,0,4,2,3,74.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049290839601651114,5488.962203567185,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14298,1,80.0,250.0,2,111,0.0,,,0,86,0.0,0.0,,459.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,114311,1,2,0,0,2,,540.0,400.0,11,0.0,4.0,2.0,1.0,1.0,1,1,123.03963967490203,0.0,10877.759849506474,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04219618803414059,10877.759849506474,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +14299,2,59.0,0.0,9,111,100.0,,,0,69,0.0,0.0,,284.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,2,14.0,1,2008.0,6,114312,2,1,0,0,2,,266.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,97.52567223177118,100.0,25148.946246797357,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011292719671551509,25148.946246797357,7,4,7,7_1,7_2,7_0_0 +14300,1,63.0,222.0,2,111,249.0,177.0,0.0,0,77,0.0,0.0,424.5949352996432,426.0,0.0,336.03521648534263,71,2,2,1,2,2,2,2,1,0,,2,,2,114313,2,1,0,1,1,511.0,0.0,355.0,11,0.0,2.0,3.0,1.0,1.0,1,1,343.376761118291,249.0,9371.240428592264,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04545822970246781,9371.240428592264,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +14301,2,88.0,0.0,1,400,1100.0,0.0,0.0,86,78,0.0,0.0,1875.7205977092674,1290.0,263.261952825339,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114314,2,2,3,0,1,,150.0,319.0,41,0.0,3.0,4.0,2.0,1.5,2,2,2169.56411040008,1100.0,14475.458722602423,6,5,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08911634682676789,9650.305815068283,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +14302,2,65.0,0.0,7,111,1450.0,0.0,0.0,0,72,0.0,0.0,2472.540787889489,1510.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,114315,2,1,2,0,1,,169.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1122.71616460916,1450.0,42628.53810806032,0,5,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03542227969845593,42628.53810806032,9,5,9,9_1,9_2,9_0_0 +14303,1,35.0,276.0,9,111,1500.0,0.0,0.0,85,21,0.0,264.8654554020448,2557.8008150580918,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,114316,2,1,1,0,1,,360.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,314.726352867347,1500.0,3918.764554900866,7,4,1,2,70.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.43381019098837015,2612.5097032672443,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +14304,2,59.0,0.0,1,111,1500.0,0.0,0.0,0,34,0.0,0.0,2557.8008150580918,1530.0,41.567676761895626,0.0,20,2,2,2,1,1,2,2,2,3,30.0,1,,1,114317,1,1,1,0,2,,164.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1534.84233190409,1500.0,37614.73292342947,0,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04067555133555112,37614.73292342947,9,5,9,9_1,9_3,9_1_0 +14305,2,70.0,0.0,2,120,600.0,0.0,0.0,77,77,1265.6194212439218,0.0,1023.1203260232367,1920.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114318,2,1,2,0,1,,100.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,2944.47842111838,600.0,32942.89478496758,5,5,0,1,88.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05828267407987866,21961.929856645056,6,3,6,6_1,6_1,6_0_1 +14306,1,50.0,349.0,6,111,1500.0,0.0,0.0,85,52,0.0,0.0,2557.8008150580918,2561.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,114319,2,1,2,0,2,,1079.0,812.0,42,1.0,0.0,6.0,8.0,3.499999999999999,3,2,1312.01548180915,1500.0,44464.172318065524,6,1,2,3,130.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.057596934036698154,12704.04923373301,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +14307,0,24.0,0.0,7,111,0.0,,,56,54,0.0,0.0,,1069.0,0.0,,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,114320,2,2,0,0,2,,295.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,96.67666016553726,0.0,28395.62022637413,4,1,5,0,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037646650838325496,18930.41348424942,5,3,5,5_1,5_3,5_0_0 +14308,1,35.0,358.0,7,111,330.0,,,0,43,0.0,0.0,,582.0,349.1684847999233,,70,0,0,0,0,0,0,0,0,0,,2,,5,114321,2,2,0,0,2,,240.0,400.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.56711820941106,330.0,22505.946521511083,0,1,2,3,71.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02585983217563087,17312.266555008526,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +14309,2,59.0,0.0,5,211,860.0,0.0,0.0,56,52,0.0,662.163638505112,1466.4724672999725,1470.0,152.4148147936173,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,3,114322,2,1,2,0,1,,320.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1018.82523647029,860.0,46682.31000304879,1,1,0,1,110.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03148944428636876,31121.54000203253,8,4,8,8_1,8_1,8_0_0 +14310,2,43.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,468.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,6.0,2,,2,114323,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,586.320902972573,0.0,18401.223207136278,0,1,1,2,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025433091851116852,18401.223207136278,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14311,2,65.0,0.0,1,112,324.0,204.0,0.0,0,78,0.0,0.0,552.4849760525478,528.0,0.0,387.294825779717,71,0,0,0,0,0,0,0,0,0,,1,,1,114324,2,1,1,0,1,,390.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,655.903408203872,324.0,35773.98545063828,0,5,0,1,100.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014759328415575776,23849.323633758857,6,3,6,6_1,6_1,6_1_0 +14312,2,42.0,0.0,8,111,700.0,1400.0,0.0,21,46,0.0,0.0,1193.6403803604428,2100.0,0.0,2657.9056671157045,43,1,2,2,1,2,2,2,2,2,10.0,1,2001.0,6,114325,2,1,1,0,1,,430.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,370.108992682822,700.0,29354.06455254841,1,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07154034822811908,11290.024827903237,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +14313,2,39.0,0.0,8,111,2000.0,0.0,0.0,85,47,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2003.0,6,114326,2,1,1,0,1,,790.0,,42,1.0,0.0,5.0,7.0,3.1999999999999993,3,2,615.247658961174,2000.0,47416.71293417873,6,1,1,2,127.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042179220705920506,14817.722791930857,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +14314,2,72.0,0.0,2,111,890.0,1087.0,0.0,77,72,0.0,0.0,1517.6284836011343,1977.0,0.0,2063.6739001105507,50,0,0,0,0,0,0,0,0,0,,1,,2,114327,1,1,2,0,2,,80.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,889.409805221244,890.0,30612.21650912751,5,5,0,1,140.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0645820598913681,20408.14433941834,5,3,5,5_1,5_2,5_0_1 +14315,0,43.0,0.0,1,111,745.0,1680.0,0.0,85,85,0.0,0.0,1270.3744048121855,2425.0,0.0,3189.4868005388457,71,2,2,2,2,2,2,1,2,0,,1,,1,114328,1,3,3,0,2,,669.0,,41,0.0,0.0,4.0,10.0,4.499999999999999,5,3,1541.31132977762,745.0,31039.405039954174,6,7,5,0,120.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.07812649749176959,6897.645564434262,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +14316,2,59.0,0.0,6,112,1290.0,0.0,0.0,75,52,0.0,662.163638505112,2199.7087009499587,1850.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,4,95.0,1,,4,114329,2,1,2,0,1,,480.0,,42,2.0,3.0,6.0,3.0,2.0,3,3,907.727617535589,1290.0,57940.60017780751,5,1,0,1,91.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03192925158391075,28970.300088903754,8,4,8,8_1,8_0,8_0_0 +14317,0,44.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,350.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,114330,1,2,0,0,2,,0.0,,32,2.0,2.0,4.0,4.0,2.3,3,2,126.10850979803674,0.0,3139.703681766644,0,4,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11147548796804368,1365.0885572898453,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14318,1,71.0,169.0,2,111,130.0,0.0,0.0,0,86,0.0,0.0,221.67607063836795,811.0,85.9065319745843,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114331,2,3,2,0,1,,122.0,339.0,11,0.0,7.0,5.0,1.0,1.0,1,1,242.599106263951,130.0,10826.19336995239,0,5,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07491091026056247,10826.19336995239,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +14319,2,89.0,0.0,2,111,700.0,0.0,0.0,71,77,2109.365702073203,0.0,1193.6403803604428,2824.0,171.8130639491686,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114332,2,1,2,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,212.776399037364,700.0,30916.57955201862,5,5,0,1,119.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09134257543750872,20611.05303467908,5,3,5,5_1,5_3,5_0_1 +14320,2,45.0,0.0,9,111,2300.0,0.0,0.0,85,23,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,114333,2,1,1,0,1,,920.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,239.710595793653,2300.0,135067.81793999157,6,1,1,2,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017028482691723447,64318.008542853124,10,5,10,10_1,10_4,10_0_0 +14321,2,27.0,0.0,9,120,0.0,,,56,46,0.0,0.0,,4385.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2008.0,6,114334,2,1,0,0,1,,230.0,750.0,43,2.0,0.0,3.0,2.0,1.5,2,2,125.98255804856807,0.0,39363.02771426693,4,4,3,4,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11139895111296734,26242.018476177953,7,4,7,7_0,7_2,7_0_0 +14322,1,63.0,218.0,2,111,268.0,229.0,0.0,0,75,0.0,0.0,456.9937456237124,497.0,0.0,434.7574269782117,44,0,0,0,0,0,0,0,0,0,,2,,2,114335,2,1,0,1,1,531.0,0.0,388.0,11,0.0,2.0,3.0,1.0,1.0,1,1,806.507533936262,268.0,11976.562062047606,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04149771841244306,11976.562062047606,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +14323,0,42.0,0.0,7,111,1020.0,,,84,63,0.0,0.0,,1272.0,349.1684847999233,,71,2,2,2,2,1,2,2,2,0,,1,,5,114336,1,1,0,0,2,,810.0,,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,3,123.60483941794953,1020.0,28751.391029083068,3,1,5,0,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04424133770478535,11058.227318878106,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14324,2,41.0,0.0,8,112,650.0,1340.0,0.0,43,43,0.0,0.0,1108.3803531918397,1990.0,0.0,2543.9954242393173,10,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,114337,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,240.539538755814,650.0,62042.04926482991,1,1,1,2,108.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032075020467257215,29543.832983252338,8,4,8,8_1,8_0,8_0_0 +14325,2,49.0,0.0,8,111,620.0,,,52,53,0.0,0.0,,620.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,1999.0,6,114338,2,1,0,0,2,,0.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,91.27750653918862,620.0,50351.68372652927,4,1,1,2,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012313391611040302,27973.157625849595,7,4,7,7_1,7_2,7_0_0 +14326,1,37.0,293.0,2,111,265.0,717.0,0.0,0,85,0.0,0.0,451.8781439935962,982.0,0.0,1361.2274023728287,71,0,0,0,0,0,0,0,0,0,,2,,2,114339,2,2,0,0,1,,716.0,258.0,31,1.0,0.0,3.0,3.0,2.0,3,2,240.574243000857,265.0,9936.47111111111,0,6,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0988278423012686,4968.235555555555,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +14327,2,54.0,0.0,1,111,1730.0,1610.0,0.0,45,22,0.0,0.0,2949.996940033666,3340.0,0.0,3056.59151718306,31,0,0,0,0,0,0,0,0,1,1.0,1,,1,114340,2,1,2,0,1,,653.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1141.64470833981,1730.0,85219.13605052182,1,1,1,2,180.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03919307510956101,56812.75736701454,10,5,10,10_1,10_3,10_1_0 +14328,2,58.0,0.0,2,111,865.0,0.0,0.0,37,38,1898.4291318658827,0.0,1474.998470016833,2665.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,114341,2,3,2,0,1,,280.0,,43,2.0,1.0,9.0,5.0,3.0,5,4,439.899964744975,865.0,60105.40983203871,1,1,0,1,202.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04433877096000505,20035.136610679572,5,3,5,5_1,5_2,5_0_1 +14329,2,82.0,0.0,6,112,530.0,1530.0,0.0,75,78,0.0,39.72981831030672,903.7562879871924,2090.0,0.0,2904.7111933478773,70,0,0,0,0,0,0,0,0,0,,1,,4,114342,2,1,2,0,1,,379.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,1520.39723655948,530.0,33526.56548262241,5,5,0,1,160.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062338625204042895,22351.04365508161,6,3,6,6_1,6_0,6_0_0 +14330,2,58.0,0.0,7,111,1000.0,,,81,21,0.0,0.0,,1168.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,5,114343,2,2,0,0,2,,450.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,123.80131426466332,1000.0,16521.621592714706,4,4,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07069523977688943,8260.810796357353,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +14332,2,36.0,0.0,9,111,749.0,0.0,0.0,46,48,0.0,0.0,1277.1952069856738,749.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,2,2006.0,6,114345,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1300.6152146335,749.0,74708.4529788854,1,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010025639270186567,41504.69609938077,9,5,9,9_0,9_4,9_0_0 +14333,1,54.0,255.0,5,111,690.0,0.0,0.0,85,65,0.0,1431.5977864480521,1176.5883749267223,1771.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,3,114346,1,2,0,1,2,,0.0,594.0,42,2.0,1.0,4.0,7.0,3.6,5,4,307.61371878387,690.0,55114.88981548068,6,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03213287744798432,15309.6916154113,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +14334,1,38.0,467.0,2,111,0.0,,,0,81,0.0,0.0,,1217.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,114347,2,2,0,0,2,,1246.0,650.0,32,3.0,0.0,3.0,5.0,2.5999999999999996,3,3,93.07122028025206,0.0,11893.749335295623,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10232265416830824,4574.518975113701,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +14335,0,106.0,0.0,2,111,480.0,,,0,86,0.0,66.2163638505112,,815.0,394.8929292380085,,71,0,0,0,0,0,0,0,0,0,,1,,2,114348,2,2,0,0,2,,410.0,,21,1.0,6.0,4.0,2.0,1.5,2,2,76.24497732716756,480.0,23171.83651593253,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035172007166528255,15447.891010621686,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +14336,2,56.0,0.0,1,111,256.0,995.0,0.0,31,34,0.0,0.0,436.53133910324766,1251.0,0.0,1889.01152770009,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,114349,1,2,0,0,2,,0.0,2698.0,42,1.0,2.0,6.0,2.0,1.5,2,2,1246.5196262569,256.0,140275.35106872796,5,1,2,3,108.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008918174080256424,93516.90071248531,10,5,10,10_0,10_4,10_1_0 +14337,2,39.0,0.0,2,111,250.0,30.0,0.0,0,55,0.0,0.0,426.3001358430153,280.0,0.0,56.95512143819367,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,114350,2,1,0,1,1,,110.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2070.99595784919,250.0,17371.912560246426,0,1,0,1,62.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016117971986616315,17371.912560246426,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +14338,1,25.0,250.0,1,111,390.0,0.0,0.0,0,38,0.0,0.0,665.0282119151038,390.0,0.0,0.0,12,2,2,2,2,1,1,2,2,3,25.0,2,,1,114351,2,3,0,0,1,,152.0,455.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1480.22759995487,390.0,34576.372255728915,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.011279378794152743,34576.372255728915,9,5,9,9_0,9_4,9_1_0 +14339,1,34.0,370.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,274.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,114352,2,2,0,1,1,804.0,329.0,342.0,32,1.0,0.0,3.0,2.0,1.3,1,1,312.570159111751,0.0,7955.092990470679,0,4,2,3,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03444334344403286,6119.302300362061,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +14340,2,59.0,0.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1460.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,114353,2,1,0,0,1,,214.0,500.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1193.07777287309,0.0,43223.13712424747,0,1,3,4,50.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03377820531173254,43223.13712424747,9,5,9,9_0,9_2,9_1_0 +14341,2,83.0,0.0,6,112,578.0,0.0,0.0,78,78,1898.4291318658827,0.0,985.6059140690513,2468.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114354,2,1,3,0,1,,350.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,222.601702192148,578.0,22804.591048027898,5,5,0,1,83.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1082238218963119,15203.060698685265,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +14342,2,67.0,0.0,8,111,600.0,800.0,0.0,75,75,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,114355,2,1,1,0,1,,280.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,338.996716471307,600.0,36045.26228666461,5,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038840055840513255,24030.17485777641,6,3,6,6_1,6_3,6_0_0 +14343,2,63.0,0.0,1,111,1200.0,130.0,0.0,75,74,0.0,0.0,2046.2406520464733,1330.0,0.0,246.80552623217258,50,0,0,0,0,0,0,0,0,0,,2,,1,114356,1,1,0,0,2,,150.0,348.0,41,1.0,0.0,3.0,3.0,2.0,3,3,967.916701554175,1200.0,65320.07336557165,5,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020361275354920303,32660.036682785823,8,4,8,8_0,8_4,8_1_0 +14344,1,26.0,122.0,1,111,0.0,0.0,0.0,84,47,0.0,0.0,0.0,1279.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,114357,1,1,0,1,1,717.0,81.0,320.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1685.37083408145,0.0,19090.0,3,1,2,3,43.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06699842849659507,12726.666666666666,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +14345,1,37.0,209.0,2,111,415.0,240.0,0.0,0,67,0.0,0.0,707.6582254994054,655.0,0.0,455.6409715055494,60,0,0,0,0,0,0,0,0,3,20.0,2,,2,114358,2,1,0,1,2,,185.0,371.0,12,1.0,0.0,3.0,1.0,1.0,1,1,929.057172050617,415.0,13287.017993928597,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04929623789922594,13287.017993928597,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +14346,2,37.0,0.0,9,112,600.0,0.0,0.0,52,62,0.0,331.081819252556,1023.1203260232367,850.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,114359,2,1,1,0,1,,130.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,397.254179937044,600.0,46067.142288757765,1,1,1,2,94.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018451329033436357,25592.856827087646,7,4,7,7_1,7_0,7_0_0 +14347,2,35.0,0.0,9,112,2200.0,0.0,0.0,52,37,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,114360,2,1,1,0,1,,650.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,594.550565139264,2200.0,42640.29776461806,1,1,0,1,150.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0515943864216049,23689.054313676697,6,3,6,6_1,6_1,6_0_0 +14348,2,45.0,0.0,1,112,480.0,0.0,0.0,0,62,0.0,264.8654554020448,818.4962608185893,740.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114361,2,1,4,0,1,,420.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,898.923242523677,480.0,36842.74895022801,0,1,0,1,159.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020085363364163965,24561.832633485337,7,4,7,7_1,7_0,7_1_0 +14349,2,59.0,0.0,1,111,480.0,72.0,0.0,0,48,0.0,0.0,818.4962608185893,552.0,0.0,136.6922914516648,60,2,1,2,1,1,2,2,2,2,20.0,2,,1,114362,2,3,0,1,1,502.0,0.0,369.0,12,1.0,1.0,3.0,1.0,1.0,1,1,791.082185108129,480.0,20603.708132304677,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.026791293899883776,20603.708132304677,5,3,5,5_0,5_4,5_1_0 +14350,2,88.0,0.0,2,111,261.0,725.0,0.0,0,78,0.0,0.0,445.057341820108,1311.0,0.0,1376.415434756347,71,0,0,0,0,0,0,0,0,0,,1,,2,114363,2,2,2,0,2,,90.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1326.07764155573,261.0,21742.010217030846,0,5,0,1,80.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06029801232330734,21742.010217030846,6,3,6,6_1,6_2,6_0_1 +14351,2,43.0,0.0,2,111,2270.0,0.0,0.0,0,54,0.0,0.0,3870.8052334545787,2270.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,114364,2,1,2,0,1,,340.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,487.578659307392,2270.0,5517.135797808347,0,4,0,1,81.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.4114453736849735,5517.135797808347,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +14352,1,45.0,122.0,1,111,500.0,1000.0,0.0,0,54,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,42,2,2,2,2,2,1,2,2,2,60.0,2,,1,114365,2,1,0,0,1,,0.0,439.0,32,1.0,0.0,3.0,2.0,1.3,1,1,419.542566938411,500.0,24678.729801711946,0,1,2,3,79.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.06078108606286317,18983.638309009188,5,3,5,5_0,5_3,5_1_0 +14353,1,87.0,203.0,1,400,600.0,0.0,0.0,0,71,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,114366,2,2,0,0,1,,115.0,285.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2147.47644603754,600.0,10872.0,0,5,2,3,49.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06070640176600441,10872.0,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +14354,2,50.0,0.0,6,111,480.0,,,0,85,0.0,0.0,,612.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,114367,2,3,0,0,2,,780.0,,31,0.0,4.0,6.0,11.0,4.799999999999999,5,3,114.36845130277024,480.0,44238.05024678044,0,6,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01383424442501374,9216.260468079261,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14355,2,52.0,0.0,1,111,180.0,0.0,0.0,0,34,0.0,0.0,306.936097806971,180.0,0.0,0.0,10,2,2,1,2,1,2,2,2,3,120.0,2,,1,114368,2,3,0,0,1,,0.0,639.0,12,1.0,0.0,1.0,1.0,1.0,1,1,702.634144966712,180.0,38663.86826368746,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.004655509344600508,38663.86826368746,9,5,9,9_0,9_4,9_1_0 +14356,2,47.0,0.0,1,112,1200.0,0.0,0.0,56,64,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114369,2,1,2,0,1,,350.0,,43,2.0,2.0,8.0,5.0,2.8,4,3,1557.94042446666,1200.0,51665.254256041226,1,1,1,2,175.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02496842449680116,18451.876520014725,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14357,1,44.0,491.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,897.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114370,1,2,0,0,1,,0.0,730.0,31,0.0,0.0,3.0,4.0,1.9,1,1,303.358598085967,0.0,10849.323270579256,0,6,2,3,60.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08267796779845682,5710.170142410135,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14358,1,56.0,127.0,1,120,931.0,0.0,0.0,85,62,2024.991073990275,741.6232751257254,1587.541705879389,3579.0,232.77898986661552,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,114371,2,2,3,0,1,,454.0,,42,2.0,2.0,6.0,5.0,3.0,5,3,1205.65110791353,931.0,38379.05385246374,6,1,1,2,150.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09325399249701011,12793.017950821246,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +14359,2,52.0,0.0,1,112,1104.0,0.0,0.0,85,43,2636.7071275915036,238.3789098618403,1882.5413998827555,3909.0,173.19865317456512,0.0,33,1,2,2,1,1,2,2,1,2,7.0,1,,1,114372,1,2,3,0,2,,386.0,,42,1.0,0.0,6.0,6.0,3.3,5,4,916.791442916392,1104.0,59271.235814993226,6,1,1,2,150.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,0.06595104600486804,17960.98054999795,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14361,1,35.0,360.0,2,111,400.0,700.0,0.0,53,64,0.0,0.0,682.0802173488245,1100.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,2,,2,114374,2,2,0,0,1,,0.0,700.0,43,2.0,0.0,3.0,7.0,2.9999999999999996,2,2,689.051146214109,400.0,28163.265493300263,4,1,2,3,85.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03905797075490689,9387.755164433422,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14362,2,53.0,0.0,6,112,2000.0,0.0,0.0,75,22,0.0,476.7578197236806,3410.4010867441225,2360.0,0.0,0.0,12,2,1,2,2,2,2,2,1,2,25.0,1,,4,114375,2,3,3,0,1,,618.0,,42,1.0,1.0,8.0,3.0,2.0,3,3,2204.97647479324,2000.0,281790.1481001805,7,1,0,1,149.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.00837502664983513,140895.07405009025,10,5,10,10_1,10_1,10_0_0 +14363,0,59.0,0.0,6,400,1000.0,0.0,0.0,0,65,2150.4983332636307,0.0,1705.2005433720612,3119.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,114376,2,1,2,0,1,,380.0,,22,1.0,3.0,4.0,2.0,1.5,2,2,981.79827681838,1000.0,48974.44179197618,0,1,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0636862797384861,32649.627861317455,8,4,8,8_1,8_0,8_0_0 +14364,2,40.0,0.0,2,111,350.0,800.0,0.0,52,22,0.0,0.0,596.8201901802214,1150.0,0.0,1518.8032383518312,43,0,0,0,0,0,0,0,0,0,,2,,2,114377,2,3,0,1,1,504.0,0.0,345.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,4,3,271.801385064002,350.0,28584.908275072656,1,1,2,3,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.040231019422331066,10994.195490412561,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +14365,1,49.0,348.0,9,111,1000.0,0.0,0.0,0,68,0.0,0.0,1705.2005433720612,1066.0,91.44888887617039,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,114378,2,1,1,0,1,,516.0,830.0,32,2.0,1.0,4.0,4.0,2.5,4,3,1515.497562295,1000.0,40222.55576721355,0,1,2,3,95.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.02650254265714573,16089.02230688542,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +14366,2,33.0,0.0,2,111,700.0,0.0,0.0,37,42,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,12,1,2,2,1,2,2,2,2,2,20.0,2,,2,114379,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,850.629687991241,700.0,122353.68190866959,4,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005721119210147776,58263.65805174742,10,5,10,10_0,10_4,10_0_1 +14367,1,33.0,467.0,7,111,700.0,,,0,52,0.0,0.0,,750.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,114380,1,2,0,0,2,,560.0,573.0,32,1.0,0.0,4.0,4.0,1.9,1,1,119.57945041440756,700.0,26871.529552930588,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02791058091883741,14142.9102910161,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +14369,2,80.0,0.0,2,111,780.0,,,0,77,0.0,0.0,,910.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,0,,1,,2,114382,2,2,0,0,2,,840.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,98.23282035418544,780.0,35527.92733538208,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025613652927446055,35527.92733538208,9,5,9,9_1,9_2,9_0_1 +14370,2,82.0,0.0,1,111,329.0,1694.0,0.0,0,78,0.0,0.0,561.0109787694081,2023.0,0.0,3216.0658572100024,70,2,2,2,2,1,2,2,2,0,,1,,1,114383,2,2,1,0,1,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1766.7323439642,329.0,22371.97791126593,0,5,0,1,100.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.09042562119557927,22371.97791126593,6,3,6,6_1,6_3,6_1_0 +14371,2,82.0,0.0,7,111,1060.0,0.0,0.0,0,77,0.0,0.0,1807.5125759743848,1060.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,114384,2,2,0,0,1,,225.0,704.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1855.94873076129,1060.0,29666.19168435102,0,5,2,3,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03573090915336977,29666.19168435102,8,4,8,8_0,8_3,8_0_0 +14372,2,52.0,0.0,7,300,976.0,0.0,0.0,45,46,0.0,0.0,1664.2757303311316,976.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,114385,2,1,2,0,1,,380.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1637.77590117041,976.0,74075.17933281574,1,1,0,1,110.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013175803403929476,37037.58966640787,9,5,9,9_1,9_1,9_0_0 +14373,2,78.0,0.0,2,111,480.0,,,77,77,0.0,0.0,,630.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,114386,1,2,0,0,2,,240.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,108.74991038189081,480.0,40790.97030564831,5,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015444594607075677,27193.980203765543,7,4,7,7_1,7_2,7_0_1 +14374,2,77.0,0.0,2,400,0.0,0.0,0.0,78,22,0.0,0.0,0.0,1511.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,114387,2,1,2,0,2,,120.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,1482.00491645915,0.0,21296.42573728401,5,1,2,3,70.0,0,0,9,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07095087310142692,14197.617158189341,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +14375,2,41.0,0.0,9,112,174.0,,,0,68,0.0,0.0,,237.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,114388,1,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,195.3856987707231,174.0,5214.799999999999,0,4,0,1,52.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04544757229423948,5214.799999999999,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +14376,2,30.0,0.0,5,120,825.0,0.0,0.0,0,67,0.0,0.0,1406.7904482819504,885.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,114389,2,2,5,0,1,,228.0,513.0,12,1.0,2.0,5.0,1.0,1.0,1,1,585.040749483985,825.0,18753.98073236212,0,1,2,3,88.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04718998129676182,18753.98073236212,5,3,5,5_1,5_0,5_0_0 +14377,1,72.0,310.0,2,111,240.0,300.0,0.0,85,77,0.0,662.163638505112,409.2481304092947,1040.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,114390,2,1,0,1,1,720.0,0.0,299.0,41,1.0,1.0,3.0,3.0,2.0,3,3,206.61996600047,240.0,23575.312751233596,6,5,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0441139428763498,11787.656375616798,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +14378,2,52.0,0.0,1,120,340.0,0.0,0.0,0,45,1582.0242765549024,0.0,579.7681847465008,1990.0,207.83838380947813,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,114391,2,2,3,0,2,,210.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1216.69833005642,340.0,27095.108973021695,0,1,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07344498972052194,27095.108973021695,7,4,7,7_1,7_0,7_1_0 +14379,2,31.0,0.0,7,112,1500.0,0.0,0.0,69,47,0.0,0.0,2557.8008150580918,1753.0,0.0,0.0,60,2,2,2,2,2,2,2,1,0,,2,,5,114392,2,1,0,0,1,,0.0,646.0,43,2.0,0.0,3.0,3.0,1.8,2,2,5415.79608121242,1500.0,7907.716931905368,1,1,2,3,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.22168218906864864,4393.17607328076,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +14380,0,36.0,0.0,9,211,350.0,,,0,33,0.0,0.0,,350.0,0.0,,20,0,0,0,0,0,0,0,0,1,2.0,1,2009.0,6,114393,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,153.3962110941362,350.0,29905.727117759106,0,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011703443912994086,23004.405475199314,6,3,6,6_1,6_2,6_0_0 +14381,1,32.0,28.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1038.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,2,114394,2,2,0,0,2,,0.0,489.0,32,2.0,0.0,3.0,4.0,2.1,2,2,1073.16301118675,0.0,44471.946530926376,0,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02334055693465455,21177.117395679226,5,3,5,5_0,5_4,5_0_1 +14382,2,42.0,0.0,1,111,2651.0,0.0,0.0,52,37,0.0,0.0,4520.486640479334,2651.0,0.0,0.0,20,2,2,1,2,2,2,2,1,2,20.0,2,,1,114395,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1390.0744342761,2651.0,64159.132365744605,1,1,1,2,90.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.041319137311392376,30551.967793211716,8,4,8,8_0,8_3,8_1_0 +14384,2,64.0,0.0,2,111,361.0,92.0,0.0,75,75,0.0,0.0,615.5773961573141,453.0,0.0,174.6623724104606,50,2,2,1,2,1,2,2,2,0,,2,,2,114397,2,2,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1592.92031388589,361.0,25933.307700706602,5,5,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017467883589244466,17288.871800471068,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14385,1,41.0,237.0,1,111,180.0,0.0,0.0,0,43,0.0,0.0,306.936097806971,260.0,110.84713803172167,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,114398,2,3,0,0,1,,0.0,308.0,12,1.0,2.0,2.0,1.0,1.0,1,1,271.074711380621,180.0,11126.246102377707,0,4,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023368169066873088,11126.246102377707,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +14386,1,33.0,300.0,2,111,0.0,0.0,0.0,68,62,0.0,0.0,0.0,309.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,114399,1,1,0,1,2,468.0,0.0,813.0,43,2.0,0.0,3.0,5.0,2.4,2,2,1115.57958746814,0.0,25241.563712627372,1,1,2,3,37.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012241713846175834,10517.318213594739,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +14387,2,65.0,0.0,6,400,780.0,0.0,0.0,72,71,0.0,0.0,1330.0564238302077,1020.0,332.541414095165,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114400,2,1,1,0,1,,120.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1382.47596978227,780.0,60431.44983857512,5,5,0,1,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016878628639965292,40287.633225716745,9,5,9,9_1,9_0,9_0_0 +14388,2,40.0,0.0,9,112,800.0,,,53,33,0.0,0.0,,860.0,83.13535352379125,,12,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,114401,2,2,0,0,2,,1200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,154.95073727586734,800.0,79060.66781514254,1,1,1,2,120.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010877722434761468,43922.593230634746,10,5,10,10_1,10_1,10_0_0 +14389,2,62.0,0.0,1,111,600.0,0.0,0.0,0,74,3796.8582637317654,0.0,1023.1203260232367,4200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,114402,2,1,2,0,1,,130.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,440.925476740438,600.0,27117.982347399975,0,5,0,1,200.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1548787791877403,27117.982347399975,7,4,7,7_1,7_3,7_1_0 +14390,1,25.0,243.0,1,111,0.0,0.0,0.0,47,52,0.0,0.0,0.0,860.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,114403,2,1,2,0,1,,200.0,560.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1138.67400597085,0.0,33200.95622727988,1,1,2,3,90.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.025902868402729103,22133.970818186586,6,3,6,6_1,6_3,6_1_0 +14391,2,55.0,0.0,2,111,600.0,0.0,0.0,0,54,0.0,0.0,1023.1203260232367,773.0,0.0,0.0,30,2,1,2,2,1,2,2,2,3,30.0,2,,2,114404,2,2,0,0,1,,639.0,,32,2.0,0.0,4.0,3.0,2.0,3,3,604.184521048092,600.0,36661.34923491964,0,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02108487592878125,18330.67461745982,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +14392,2,73.0,0.0,2,211,1350.0,0.0,0.0,86,74,3870.6860633043275,317.83854648245375,2302.0207335522828,5325.0,90.06329965077386,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,114405,2,2,2,0,2,,340.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,2553.11044495284,1350.0,48698.34630345521,5,5,0,1,210.0,2,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1093466288735596,32465.564202303474,8,4,8,8_1,8_1,8_0_1 +14393,1,65.0,274.0,2,111,244.0,,,81,63,0.0,0.0,,313.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,2,,2,114406,2,1,0,0,2,,296.0,280.0,43,3.0,3.0,4.0,3.0,2.0,3,3,129.12089190726718,244.0,23274.972111553783,4,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013447921591477466,11637.486055776892,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +14394,1,70.0,228.0,2,111,212.0,114.0,0.0,0,78,0.0,0.0,361.502515194877,326.0,0.0,216.42946146513594,70,2,1,2,2,1,2,2,2,0,,2,,2,114407,2,2,0,1,1,352.0,0.0,304.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1170.92160754393,212.0,9413.072500410482,0,5,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03463268767830949,9413.072500410482,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +14395,2,51.0,0.0,7,111,840.0,0.0,0.0,43,65,0.0,172.1625460113291,1432.3684564325313,970.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,114408,1,2,2,0,1,,240.0,,43,3.0,0.0,7.0,5.0,2.8,4,4,1391.92439946345,840.0,56879.57837711374,1,1,1,2,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017053572260484484,20314.13513468348,5,3,5,5_1,5_3,5_0_0 +14396,2,63.0,0.0,6,111,581.0,860.0,0.0,0,56,0.0,0.0,990.7215156991675,1441.0,0.0,1632.7134812282186,71,2,2,1,2,1,2,2,2,3,23.0,2,,4,114409,1,2,0,1,1,,0.0,383.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1864.58707814732,581.0,5555.240076302811,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.25939473005800884,5555.240076302811,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +14397,2,67.0,0.0,6,111,312.0,,,0,77,0.0,0.0,,387.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,0,,2,,4,114410,2,2,0,0,2,,300.0,506.0,11,0.0,2.0,2.0,1.0,1.0,1,1,141.99103621369815,312.0,22876.162878586572,0,5,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016917172781727947,22876.162878586572,6,3,6,6_0,6_2,6_0_0 +14398,2,76.0,0.0,8,111,1200.0,0.0,0.0,75,77,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,114411,2,2,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,739.58270397539,1200.0,58590.729480603084,5,5,0,1,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020481055802475872,39060.48632040206,9,5,9,9_0,9_4,9_0_0 +14399,2,89.0,0.0,2,111,285.0,1073.0,0.0,0,77,0.0,0.0,485.98215486103743,1358.0,0.0,2037.0948434393936,70,0,0,0,0,0,0,0,0,0,,2,,2,114412,2,1,0,0,1,,0.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1985.43164320279,285.0,23779.082810865,0,5,0,1,74.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05710901512902384,23779.082810865,6,3,6,6_0,6_3,6_0_1 +14400,2,60.0,0.0,5,300,1270.0,0.0,0.0,55,77,0.0,0.0,2165.6046900825177,1270.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,114413,2,1,2,0,1,,210.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1039.58822814731,1270.0,31941.15904834805,1,5,0,1,88.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03976061100593288,21294.106032232034,6,3,6,6_1,6_0,6_0_0 +14401,2,67.0,0.0,5,111,0.0,0.0,2130.0,77,78,0.0,0.0,1342.5779585834043,2130.0,0.0,2549.0394743127704,71,2,2,1,2,1,2,2,2,0,,1,,3,114414,2,1,1,0,1,,620.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,619.11323031166,0.0,67501.05187152678,5,5,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.031555063824101295,33750.52593576339,9,5,9,9_1,9_2,9_0_0 +14402,2,48.0,0.0,8,111,0.0,0.0,1768.0,67,64,0.0,0.0,1114.402737453267,1768.0,0.0,2115.8224368943556,71,0,0,0,0,0,0,0,0,2,3.0,1,2000.0,6,114415,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,1236.71891453215,0.0,47034.09502976704,1,1,1,2,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03758975268645148,18813.638011906816,5,3,5,5_1,5_3,5_0_0 +14404,2,36.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,708.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114417,1,3,0,0,1,,0.0,440.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1711.47155656409,0.0,10641.318920444717,0,1,2,3,59.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06653310602689949,10641.318920444717,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +14405,2,66.0,0.0,1,111,0.0,0.0,1481.0,78,78,0.0,0.0,933.5013881042355,1481.0,0.0,1772.3603105432924,71,0,0,0,0,0,0,0,0,0,,1,,1,114418,2,1,2,0,1,,220.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1546.78669210697,0.0,23887.98782913633,5,5,0,1,43.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06199768731435868,15925.325219424221,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +14406,2,28.0,0.0,2,111,540.0,540.0,0.0,43,54,0.0,0.0,920.8082934209131,1080.0,0.0,1025.192185887486,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,114419,2,1,0,1,1,660.0,0.0,406.0,43,2.0,0.0,3.0,2.0,1.5,2,2,247.164150077863,540.0,28832.78174325129,1,1,2,3,72.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.037457363969149074,19221.85449550086,5,3,5,5_0,5_3,5_0_1 +14407,0,29.0,0.0,2,111,0.0,0.0,950.0,0,67,0.0,58.270400188449855,598.8023758940067,994.0,0.0,1136.8955401864469,43,0,0,0,0,0,0,0,0,0,,1,,2,114420,2,1,2,0,1,,120.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1669.8193493555,0.0,5289.0,0,4,5,0,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1879372282094914,5289.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +14408,2,90.0,0.0,2,112,726.0,0.0,0.0,0,78,0.0,0.0,1237.9755944881165,796.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114421,2,2,2,0,1,,190.0,260.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1653.34114104614,726.0,16094.050837055542,0,5,2,3,90.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04945926964311931,16094.050837055542,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +14409,2,26.0,0.0,8,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,384.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,2003.0,6,114422,2,1,0,1,1,500.0,0.0,650.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2617.21357156064,0.0,37140.52385197747,0,1,3,4,70.0,8,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010339111034901429,37140.52385197747,9,5,9,9_0,9_1,9_0_0 +14410,2,27.0,0.0,5,400,0.0,0.0,0.0,47,54,0.0,0.0,0.0,1858.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,114423,1,2,3,0,2,,362.0,450.0,43,2.0,0.0,3.0,2.0,1.5,2,2,895.190577625399,0.0,34682.64343741193,4,1,2,3,90.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05357146445174903,23121.762291607953,6,3,6,6_1,6_0,6_0_0 +14411,2,69.0,0.0,2,211,450.0,0.0,0.0,86,72,1371.087706347582,264.8654554020448,767.3402445174275,2040.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114424,2,2,1,0,1,,280.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1207.52752800709,450.0,16554.244407212747,5,5,0,1,80.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12323123603945126,11036.162938141832,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +14412,2,34.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1966.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,114425,2,2,0,1,1,,118.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1281.14712205737,0.0,14878.184551993663,0,1,0,1,50.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13213977774839186,14878.184551993663,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +14413,2,59.0,0.0,2,111,0.0,,,0,54,0.0,0.0,,312.0,0.0,,71,0,0,0,0,0,0,0,0,3,20.0,8,,2,114426,2,1,0,0,2,,170.0,502.0,12,1.0,10.0,2.0,1.0,1.0,1,1,37.00745015506096,0.0,20906.944602890588,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014923270995651033,20906.944602890588,5,3,5,5_0,5_2,5_0_1 +14414,2,42.0,0.0,1,111,54.0,75.0,0.0,38,38,0.0,0.0,92.0808293420913,129.0,0.0,142.38780359548417,20,0,0,0,0,0,0,0,0,1,15.0,1,,1,114427,1,1,1,0,1,,278.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,692.236545404794,54.0,96375.39228878403,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0013385159524275446,45893.043947040016,10,5,10,10_1,10_4,10_1_0 +14415,2,75.0,0.0,2,111,660.0,400.0,0.0,0,78,0.0,0.0,1125.4323586255605,1060.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,2,,2,114428,2,2,0,0,1,,156.0,257.0,11,0.0,0.0,5.0,1.0,1.0,1,1,505.359854126987,660.0,16910.9430458134,0,5,2,3,71.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06268130624817056,16910.9430458134,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14416,2,46.0,0.0,7,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,2816.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,,5,114429,2,1,0,0,1,,0.0,600.0,12,1.0,1.0,1.0,1.0,1.0,1,1,2258.50196165008,0.0,43000.07501697926,0,1,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0654882578434586,43000.07501697926,9,5,9,9_0,9_3,9_0_0 +14417,2,34.0,0.0,6,111,370.0,547.0,0.0,90,63,0.0,0.0,630.9242010476627,917.0,0.0,1038.4817142230645,50,0,0,0,0,0,0,0,0,0,,2,,4,114430,2,1,0,1,1,673.0,0.0,380.0,43,2.0,0.0,3.0,2.0,1.5,2,2,416.920614437939,370.0,39511.401658508454,1,1,2,3,67.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023208490752251804,26340.934439005636,7,4,7,7_0,7_3,7_0_0 +14419,2,68.0,0.0,1,111,268.0,1133.0,0.0,0,75,0.0,0.0,456.9937456237124,1401.0,0.0,2151.0050863157808,41,0,0,0,0,0,0,0,0,0,,1,,1,114432,2,2,5,0,1,,155.0,462.0,11,0.0,3.0,3.0,1.0,1.0,1,1,203.317203812904,268.0,33499.773546902565,0,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041821178224935744,33499.773546902565,8,4,8,8_1,8_3,8_1_0 +14420,2,69.0,0.0,6,211,600.0,,,0,74,0.0,0.0,,650.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,0,,1,,4,114433,2,1,0,0,2,,580.0,650.0,21,0.0,1.0,5.0,2.0,1.5,2,1,92.89599843730018,600.0,31816.75413130111,0,5,2,3,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020429488102953103,21211.169420867405,5,3,5,5_1,5_2,5_0_0 +14421,2,60.0,0.0,1,112,400.0,1800.0,0.0,0,46,0.0,0.0,682.0802173488245,2200.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,0,,1,,1,114434,1,1,2,0,2,,320.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,228.669410211948,400.0,43669.288055551515,0,1,0,1,130.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050378655067639055,43669.288055551515,10,5,10,10_1,10_0,10_1_0 +14423,2,61.0,0.0,2,111,780.0,1200.0,0.0,0,74,0.0,662.163638505112,1330.0564238302077,2480.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,114436,2,1,2,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,358.075524378254,780.0,21383.073763930082,0,5,0,1,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11597958401019848,21383.073763930082,6,3,6,6_1,6_2,6_0_1 +14424,2,42.0,0.0,6,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,2907.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,5.0,1,,4,114437,1,3,2,0,1,,530.0,612.0,32,1.0,0.0,7.0,3.0,1.6,1,1,642.983350828841,0.0,61264.300898485,0,1,2,3,114.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04745014563729212,38290.188061553126,9,5,9,9_1,9_2,9_0_0 +14425,2,60.0,0.0,7,221,960.0,,,85,11,0.0,0.0,,1092.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,114438,1,2,0,0,2,,420.0,300.0,42,2.0,2.0,5.0,3.0,2.0,3,3,151.7017174629056,960.0,7436.24,6,1,2,3,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1468484072595828,3718.12,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +14426,2,59.0,0.0,7,111,500.0,400.0,0.0,52,78,0.0,0.0,852.6002716860306,900.0,0.0,759.4016191759156,60,1,2,2,2,1,2,2,2,0,,1,,5,114439,1,2,4,0,1,,270.0,539.0,42,2.0,1.0,5.0,3.0,2.0,3,3,217.931810338811,500.0,47977.47499485777,1,5,2,3,96.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.01875880296110752,23988.737497428883,6,3,6,6_1,6_2,6_0_0 +14427,1,35.0,422.0,9,111,600.0,,,63,85,0.0,0.0,,820.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,114440,2,1,0,0,1,,370.0,495.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,145.3376286556428,600.0,22624.24448505041,4,6,2,3,89.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036244304226019014,8701.63249425016,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14428,2,62.0,0.0,6,112,650.0,0.0,0.0,77,77,1476.555991451242,0.0,1108.3803531918397,2050.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,114441,2,1,2,0,1,,150.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1315.56633701659,650.0,37384.06404404802,6,5,0,1,100.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05483619965942103,24922.70936269868,7,4,7,7_1,7_0,7_0_0 +14429,0,62.0,0.0,1,400,0.0,0.0,0.0,0,75,2636.7071275915036,66.2163638505112,0.0,3717.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,114442,2,1,2,0,1,,133.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1491.96612556574,0.0,9093.719944869481,0,5,0,1,170.0,0,0,8,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.40874361895178735,9093.719944869481,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +14430,2,44.0,0.0,1,111,395.0,0.0,0.0,0,68,0.0,0.0,673.5542146319642,395.0,0.0,0.0,50,2,2,2,1,2,2,2,2,1,7.0,2,,1,114443,1,3,0,0,1,,0.0,279.0,12,1.0,0.0,3.0,1.0,1.0,1,1,842.804084718167,395.0,23410.944659040666,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.016872450289931458,23410.944659040666,6,3,6,6_0,6_4,6_1_0 +14431,2,46.0,0.0,2,111,700.0,0.0,0.0,56,64,611.7160536012289,0.0,1193.6403803604428,1340.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114444,2,1,1,0,1,,0.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,1336.50539775962,700.0,47104.12772514659,1,1,1,2,120.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028447613080087662,23552.063862573294,6,3,6,6_1,6_2,6_0_1 +14432,2,68.0,0.0,1,120,750.0,0.0,0.0,0,72,0.0,794.5963662061343,1278.9004075290459,1410.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,114445,2,2,4,0,1,,100.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1948.68259147382,750.0,15471.986144380062,0,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0911324497606378,15471.986144380062,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14433,2,57.0,0.0,8,112,498.0,1634.0,0.0,77,64,0.0,0.0,849.1898705992865,2132.0,0.0,3102.155614333615,70,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,114446,2,1,2,0,1,,500.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,752.668001276491,498.0,31701.37518869098,6,1,0,1,100.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06725260299624355,21134.250125793988,5,3,5,5_1,5_1,5_0_0 +14434,2,31.0,0.0,1,112,577.0,0.0,0.0,21,34,0.0,609.190547424703,983.9007135256793,1037.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,240.0,1,,1,114447,2,1,4,0,1,,145.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,824.724213150826,577.0,54485.404355647945,1,1,1,2,130.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01903262006153222,36323.6029037653,9,5,9,9_1,9_0,9_1_0 +14435,1,80.0,60.0,2,111,232.0,0.0,0.0,0,86,0.0,0.0,395.6065260623182,232.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114448,2,1,0,1,1,881.0,0.0,210.0,11,0.0,4.0,3.0,1.0,1.0,1,1,450.177219601767,232.0,13713.613562751716,0,6,2,3,67.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0169174958108888,13713.613562751716,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +14436,2,88.0,0.0,2,111,600.0,300.0,0.0,72,77,2636.7071275915036,0.0,1023.1203260232367,3400.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,1,,2,114449,2,2,3,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,253.342493189054,600.0,17457.867662152974,5,5,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1947545980870781,11638.578441435317,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +14437,2,57.0,0.0,6,111,1300.0,670.0,0.0,62,33,0.0,0.0,2216.7607063836795,1970.0,0.0,1271.9977121196587,33,0,0,0,0,0,0,0,0,2,20.0,1,,4,114450,2,2,3,0,2,,610.0,,43,4.0,1.0,4.0,4.0,2.5,4,4,660.979312882483,1300.0,27911.889710577765,4,1,0,1,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07057924133504402,11164.755884231106,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +14438,2,38.0,0.0,1,112,1280.0,0.0,0.0,0,65,0.0,0.0,2182.6566955162384,1280.0,0.0,0.0,71,2,2,1,2,1,1,2,2,2,30.0,2,,1,114451,1,3,0,0,2,,135.0,519.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1458.2519389473,1280.0,25204.208969833933,0,1,2,3,43.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.05078516852213012,25204.208969833933,7,4,7,7_0,7_0,7_1_0 +14439,2,47.0,0.0,9,112,300.0,,,84,43,0.0,0.0,,300.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,2011.0,6,114452,2,1,0,0,2,,330.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,167.5992761550614,300.0,163460.44844695617,3,1,1,2,110.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018353063560654042,108973.63229797078,10,5,10,10_1,10_2,10_0_0 +14440,1,56.0,34.0,2,111,660.0,0.0,0.0,68,68,0.0,0.0,1125.4323586255605,3214.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114453,2,1,0,1,1,1068.0,0.0,433.0,43,3.0,5.0,5.0,5.0,2.8,4,4,153.32423703151,660.0,46350.97063656394,4,1,2,3,116.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06934051123116368,16553.918084487123,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +14441,2,35.0,0.0,7,111,1150.0,0.0,0.0,67,46,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,2,,5,114454,1,3,0,0,1,,0.0,590.0,43,2.0,3.0,1.0,3.0,1.8,2,2,827.979476312843,1150.0,102488.06919806494,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011220818276686912,56937.816221147186,10,5,10,10_0,10_4,10_0_0 +14442,2,59.0,0.0,6,111,400.0,,,77,34,0.0,0.0,,700.0,415.67676761895626,,20,0,0,0,0,0,0,0,0,2,1.0,1,,4,114455,2,1,0,0,2,,1200.0,,42,2.0,0.0,6.0,4.0,2.5,4,4,35.5404040499605,400.0,114256.8306675932,5,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006126548372731485,45702.73226703728,10,5,10,10_1,10_2,10_0_0 +14443,1,29.0,290.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114456,2,1,0,1,1,322.0,441.0,260.0,31,0.0,0.0,4.0,3.0,1.6,1,1,407.174585899402,0.0,7110.235478806907,0,6,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07594685177580246,4443.897174254316,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +14444,1,27.0,253.0,9,111,331.0,807.0,0.0,0,43,0.0,0.0,564.4213798561523,1138.0,0.0,1532.0927666874097,71,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,114457,2,1,0,0,1,,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2093.26843650126,331.0,10840.607564650993,0,1,2,3,52.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10497566609742295,10840.607564650993,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14445,2,53.0,0.0,2,112,1140.0,2375.0,0.0,0,90,0.0,0.0,1943.9286194441497,3515.0,0.0,4508.947113856999,10,2,2,2,2,1,2,2,2,0,,1,,2,114458,1,2,2,0,2,,700.0,,32,1.0,0.0,5.0,3.0,2.0,3,2,4368.42057210507,1140.0,21133.01521800304,0,1,0,1,200.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.1663274248250955,10566.50760900152,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +14446,2,86.0,0.0,2,111,243.0,1965.0,0.0,0,77,0.0,0.0,414.3637320394109,2208.0,0.0,3730.5604542016854,41,0,0,0,0,0,0,0,0,0,,1,,2,114459,2,2,2,0,1,,115.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,359.079455463101,243.0,42473.08848540227,0,5,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05198585925200319,42473.08848540227,9,5,9,9_1,9_4,9_0_1 +14447,2,34.0,0.0,9,111,2000.0,0.0,0.0,54,64,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,25.0,1,2007.0,6,114460,1,2,1,0,1,,300.0,820.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1291.07708683654,2000.0,44026.681516568395,4,1,2,3,90.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.045426998608726565,20965.08643646114,5,3,5,5_1,5_2,5_0_0 +14448,2,43.0,0.0,8,111,2160.0,0.0,0.0,54,45,0.0,0.0,3683.2331736836522,2160.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,2002.0,6,114461,2,1,0,0,1,,0.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,915.123515190593,2160.0,85227.87194030978,1,1,0,1,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025343821813511646,40584.70092395703,9,5,9,9_0,9_4,9_0_0 +14449,2,60.0,0.0,2,400,650.0,0.0,0.0,0,75,0.0,794.5963662061343,1108.3803531918397,1320.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,114462,2,3,4,0,1,,230.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,907.248862276354,650.0,22024.043712927865,0,5,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059934497824537775,22024.043712927865,6,3,6,6_1,6_0,6_0_1 +14450,2,57.0,0.0,7,111,600.0,,,0,68,0.0,0.0,,700.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,5,114463,2,3,0,0,2,,240.0,200.0,12,1.0,3.0,4.0,1.0,1.0,1,1,113.97238333299941,600.0,14459.714367646226,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0484103615190531,14459.714367646226,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14451,2,80.0,0.0,2,111,450.0,670.0,0.0,0,90,0.0,0.0,767.3402445174275,1120.0,0.0,1271.9977121196587,70,0,0,0,0,0,0,0,0,0,,1,,2,114464,2,2,2,0,2,,150.0,280.0,11,0.0,1.0,2.0,1.0,1.0,1,1,914.41533771916,450.0,18471.400325388397,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.060634276788457286,18471.400325388397,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +14452,2,73.0,0.0,2,111,553.0,595.0,0.0,77,75,0.0,0.0,942.9759004847498,1148.0,0.0,1129.6099085241744,20,0,0,0,0,0,0,0,0,0,,2,,2,114465,2,3,0,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1810.51674015312,553.0,55928.76072428706,5,5,0,1,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02052611188113598,37285.84048285804,9,5,9,9_0,9_3,9_0_1 +14453,2,42.0,0.0,8,400,539.0,0.0,0.0,0,63,0.0,499.2713834328544,919.1030928775409,972.0,77.59299662220518,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,114466,1,1,1,0,1,,303.0,445.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1289.52405737945,539.0,20414.0,0,1,2,3,75.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047614382286666014,20414.0,5,3,5,5_1,5_0,5_0_0 +14454,2,43.0,0.0,9,300,420.0,1320.0,0.0,0,53,0.0,0.0,716.1842282162656,1740.0,0.0,2506.0253432805216,42,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,114467,2,1,1,0,1,,132.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,186.528958721338,420.0,32709.388868977632,0,1,1,2,168.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05319573554155448,20443.36804311102,5,3,5,5_1,5_0,5_0_0 +14455,2,63.0,0.0,2,111,253.0,352.0,0.0,0,77,0.0,0.0,431.41573747313146,605.0,0.0,668.2734248748058,70,0,0,0,0,0,0,0,0,0,,2,,2,114468,2,1,0,1,1,330.0,0.0,284.0,11,0.0,1.0,3.0,1.0,1.0,1,1,284.484829033884,253.0,15241.187226940689,0,5,2,3,60.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.039695070403084315,15241.187226940689,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +14456,2,44.0,0.0,1,112,650.0,0.0,0.0,45,47,1265.6194212439218,0.0,1108.3803531918397,1850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,114469,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,768.280257134635,650.0,40430.933205988986,1,1,0,1,150.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0457570442555593,17578.66661129956,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14457,2,59.0,0.0,2,111,660.0,1000.0,0.0,0,63,0.0,0.0,1125.4323586255605,1660.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,114470,2,1,2,0,2,,120.0,370.0,12,1.0,0.0,5.0,1.0,1.0,1,1,178.575645630609,660.0,24606.81336438083,0,1,2,3,92.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06746099039394124,24606.81336438083,7,4,7,7_1,7_2,7_0_1 +14458,1,40.0,254.0,2,211,237.0,200.0,0.0,0,54,0.0,0.0,404.1325287791785,437.0,0.0,379.7008095879578,43,0,0,0,0,0,0,0,0,0,,8,,2,114471,2,3,0,1,1,819.0,197.0,285.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1005.62127940239,237.0,9444.486236558128,0,4,2,3,65.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04627038348665716,9444.486236558128,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +14459,2,57.0,0.0,9,221,468.0,,,0,11,0.0,0.0,,600.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,2010.0,6,114472,2,2,0,0,2,,1092.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,96.2872720588478,468.0,28993.984277167092,0,1,0,1,123.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02069394789844399,28993.984277167092,8,4,8,8_1,8_1,8_0_0 +14460,2,70.0,0.0,1,111,1800.0,0.0,0.0,75,75,5695.287395597648,132.4327277010224,3069.36097806971,7480.0,249.40606057137379,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,114473,1,1,4,0,2,,759.0,,41,0.0,5.0,11.0,4.0,2.5,4,4,1288.60582136358,1800.0,47409.922890892136,5,5,0,1,400.0,6,4,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1577728784164923,18963.969156356856,5,3,5,5_1,5_2,5_1_0 +14461,2,79.0,0.0,7,111,820.0,0.0,0.0,0,74,0.0,0.0,1398.2644455650902,820.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,114474,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,876.985527087438,820.0,35625.053416849405,0,5,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023017509346727565,35625.053416849405,9,5,9,9_0,9_4,9_0_0 +14462,2,54.0,0.0,2,111,500.0,0.0,0.0,56,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,114475,2,1,0,1,1,,0.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,285.410389527842,500.0,58134.00061125574,1,1,0,1,100.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008600818707515398,23253.600244502297,6,3,6,6_0,6_3,6_0_1 +14464,2,77.0,0.0,2,221,2182.0,0.0,0.0,72,72,0.0,0.0,3720.7475856378373,2251.0,95.60565655235995,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114477,2,1,1,0,1,,355.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,771.363580416779,2182.0,37812.65148935643,5,5,0,1,100.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05953034001420438,25208.43432623762,7,4,7,7_1,7_1,7_0_1 +14465,2,31.0,0.0,2,111,400.0,300.0,0.0,52,62,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,114478,2,2,0,1,2,756.0,0.0,632.0,43,2.0,0.0,3.0,3.0,1.8,2,2,812.602058832131,400.0,39853.77455811521,1,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01756420835319506,22140.98586561956,6,3,6,6_0,6_4,6_0_1 +14466,2,32.0,0.0,6,111,247.0,0.0,0.0,46,54,0.0,0.0,421.1845342128991,367.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,4,114479,2,1,0,1,1,527.0,0.0,820.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1720.87466371479,247.0,53934.0,1,1,2,3,75.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006804613045574221,35956.0,9,5,9,9_0,9_2,9_0_0 +14467,2,65.0,0.0,2,211,3240.0,0.0,0.0,72,21,3480.453408420785,662.163638505112,5524.849760525478,7070.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114480,2,1,2,0,1,,400.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,637.333892682086,3240.0,112025.08954733223,6,1,0,1,200.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06311086229493994,74683.39303155482,10,5,10,10_1,10_1,10_0_1 +14468,1,23.0,377.0,9,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1109.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2009.0,6,114481,1,2,0,0,1,,356.0,530.0,32,1.0,0.0,2.0,2.0,1.3,1,1,73.6966272859228,0.0,8862.862259871381,0,4,2,3,43.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12512887682134574,6817.586353747216,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +14469,1,37.0,287.0,2,111,290.0,93.0,0.0,0,67,0.0,0.0,494.50815757789775,383.0,0.0,176.56087645840037,71,0,0,0,0,0,0,0,0,0,,2,,2,114482,2,1,0,1,2,594.0,0.0,263.0,32,1.0,0.0,3.0,2.0,1.3,1,1,104.845917589835,290.0,11835.715596330276,0,4,2,3,46.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03235968259652598,9104.39661256175,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +14471,2,32.0,0.0,9,111,241.0,544.0,0.0,0,37,0.0,0.0,410.95333095266676,785.0,0.0,1032.7862020792452,12,0,0,0,0,0,0,0,0,3,40.0,2,2008.0,6,114484,2,1,0,0,1,,0.0,690.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2372.15668712692,241.0,39481.16026056529,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0198829009790798,39481.16026056529,9,5,9,9_0,9_4,9_0_0 +14472,2,56.0,0.0,8,111,1039.0,0.0,0.0,45,22,0.0,635.6770929649075,1771.7033645635715,1519.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,114485,2,1,2,0,1,,160.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1341.05014570441,1039.0,67096.69679808925,1,1,1,2,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022638968421516352,33548.348399044626,9,5,9,9_1,9_3,9_0_0 +14473,2,38.0,0.0,8,111,503.0,1050.0,0.0,52,47,0.0,397.2981831030672,857.7158733161468,1853.0,0.0,1993.4292503367785,31,1,2,2,1,1,1,2,2,2,10.0,1,2001.0,6,114486,2,2,1,0,1,,441.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,662.667090037171,503.0,59845.52150572973,1,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03096305209442598,28497.867383680823,8,4,8,8_1,8_4,8_0_0 +14474,2,37.0,0.0,9,111,480.0,,,22,46,0.0,66.2163638505112,,593.0,87.29212119998083,,43,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,114487,2,1,0,0,2,,18.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,136.0653167892658,480.0,27076.204343488607,4,1,1,2,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021901149528833683,12893.43063975648,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14475,2,44.0,0.0,9,111,660.0,0.0,0.0,0,45,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,114488,2,1,0,0,1,,0.0,496.0,32,3.0,1.0,4.0,3.0,2.0,3,3,504.11338045582,660.0,22465.131161894715,0,1,2,3,87.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02937886252449262,11232.565580947357,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +14476,2,67.0,0.0,5,111,700.0,1400.0,0.0,74,74,0.0,66.2163638505112,1193.6403803604428,2150.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,0,,1,,3,114489,2,2,2,0,1,,170.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1721.20935295997,700.0,53435.16708936232,5,5,0,1,140.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040235674689749666,35623.44472624155,9,5,9,9_1,9_2,9_0_0 +14477,2,57.0,0.0,5,211,450.0,,,0,63,0.0,0.0,,450.0,0.0,,60,0,0,0,0,0,0,0,0,2,10.0,8,,3,114490,2,1,0,0,2,,500.0,331.0,12,1.0,3.0,3.0,1.0,1.0,1,1,95.33504594240397,450.0,29967.55534069626,0,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015016239892911624,29967.55534069626,8,4,8,8_0,8_2,8_0_0 +14478,2,82.0,0.0,2,300,327.0,1710.0,0.0,78,75,0.0,0.0,557.600577682664,2037.0,0.0,3246.4419219770393,70,0,0,0,0,0,0,0,0,0,,1,,2,114491,2,2,2,0,2,,398.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1304.94515688179,327.0,29466.938448873872,5,5,0,1,108.0,0,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06912832167937173,19644.62563258258,5,3,5,5_1,5_0,5_0_1 +14479,1,35.0,256.0,2,111,300.0,0.0,0.0,85,21,0.0,0.0,511.56016301161833,490.0,263.261952825339,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,114492,2,2,0,1,1,760.0,180.0,256.0,42,1.0,0.0,3.0,4.0,2.1,2,2,258.242005682238,300.0,19374.775057486528,6,1,2,3,70.0,6,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025290616203085214,9226.08336070787,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14480,2,79.0,0.0,2,111,600.0,,,86,86,0.0,0.0,,762.0,224.4654545142364,,71,0,0,0,0,0,0,0,0,0,,1,,2,114493,2,1,0,0,1,,600.0,,41,0.0,0.0,5.0,3.0,2.0,3,3,131.45953755973548,600.0,80810.35630447738,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009429484472620505,40405.17815223869,9,5,9,9_1,9_2,9_0_1 +14481,0,30.0,0.0,1,112,500.0,0.0,0.0,63,62,2109.365702073203,0.0,852.6002716860306,2620.0,166.2707070475825,0.0,43,1,2,2,1,1,1,2,2,2,8.0,1,,1,114494,1,1,3,0,2,,220.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1116.35110971892,500.0,28144.915853720675,1,1,5,0,50.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.09308963699224007,15636.064363178153,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14482,2,38.0,0.0,5,111,100.0,200.0,0.0,38,33,0.0,0.0,170.52005433720612,300.0,0.0,379.7008095879578,31,0,0,0,0,0,0,0,0,4,60.0,1,,3,114495,1,1,2,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,474.32051908532,100.0,79328.45194596032,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037817452961815554,33053.52164415013,8,4,8,8_1,8_4,8_0_0 +14483,2,40.0,0.0,5,112,3000.0,0.0,0.0,21,46,0.0,728.3800023556231,5115.6016301161835,3670.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,114496,2,1,3,0,1,,800.0,,43,3.0,0.0,5.0,5.0,2.8,4,4,656.691793747011,3000.0,32585.673376756193,1,1,1,2,150.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11262618260385134,11637.740491698642,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +14484,1,46.0,300.0,2,111,780.0,120.0,0.0,0,55,0.0,0.0,1330.0564238302077,1002.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,114497,1,2,0,1,2,71.0,0.0,650.0,32,1.0,0.0,4.0,3.0,1.8,2,2,584.120046741734,780.0,18709.70555454513,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05355509187885563,10394.280863636182,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +14485,2,77.0,0.0,8,300,1060.0,0.0,0.0,78,78,0.0,0.0,1807.5125759743848,1060.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,1999.0,6,114498,2,2,2,0,1,,360.0,400.0,41,0.0,4.0,3.0,2.0,1.5,2,2,905.472269681641,1060.0,23901.960948895787,5,5,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044347825781590085,15934.640632597191,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +14486,2,34.0,0.0,9,111,1298.0,0.0,0.0,67,68,0.0,0.0,2213.3503052969354,1298.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,1,2007.0,6,114499,2,1,1,0,1,,311.0,340.0,43,2.0,0.0,5.0,2.0,1.5,2,2,2215.88548751454,1298.0,32258.203773095796,1,1,2,3,120.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04023782629467319,21505.469182063865,6,3,6,6_1,6_2,6_0_0 +14487,2,50.0,0.0,2,111,600.0,,,0,52,0.0,0.0,,880.0,387.96498311102584,,60,0,0,0,0,0,0,0,0,3,30.0,1,,2,114500,2,1,0,0,2,,480.0,623.0,32,3.0,4.0,4.0,4.0,2.5,4,3,102.11969215086057,600.0,26766.68232227141,0,1,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03287669309945782,10706.672928908563,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +14488,2,70.0,0.0,5,111,500.0,,,81,77,0.0,0.0,,740.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,3,114501,2,2,0,0,2,,600.0,,42,2.0,3.0,4.0,3.0,2.0,3,3,87.27045739450055,500.0,17979.688376822727,4,5,0,1,92.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041157554262949286,8989.844188411364,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14489,1,33.0,75.0,2,111,550.0,720.0,0.0,85,63,0.0,0.0,937.8602988546337,1270.0,0.0,1366.922914516648,71,2,2,2,1,1,2,2,2,0,,8,,2,114502,1,3,0,0,1,,0.0,550.0,42,1.0,1.0,3.0,4.0,2.1,2,2,4045.20870516398,550.0,24641.87615508878,6,1,2,3,72.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05153828353032012,11734.226740518467,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +14490,0,28.0,0.0,7,111,400.0,,,81,56,0.0,0.0,,610.0,290.9737373332694,,43,2,2,1,1,1,2,2,2,0,,1,,5,114503,1,2,0,0,2,,240.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,127.720439137048,400.0,17182.57616004353,4,4,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03550107936774335,9545.875644468628,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14491,2,54.0,0.0,8,211,660.0,1470.0,0.0,52,75,0.0,0.0,1125.4323586255605,2130.0,0.0,2790.8009504714896,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,114504,2,1,1,0,1,,360.0,,42,2.0,1.0,7.0,3.0,2.0,3,3,897.922740076413,660.0,79081.82431020863,1,5,0,1,120.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026934128272569954,39540.91215510431,9,5,9,9_1,9_1,9_0_0 +14492,2,64.0,0.0,9,112,1300.0,0.0,0.0,77,34,0.0,476.7578197236806,2216.7607063836795,1780.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,3,240.0,1,2008.0,6,114505,2,1,1,0,1,,1000.0,,42,1.0,6.0,6.0,3.0,2.0,3,3,1776.94516182159,1300.0,74779.96917595339,6,1,1,2,150.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02380316573562303,37389.984587976694,9,5,9,9_1,9_0,9_0_0 +14493,1,41.0,311.0,8,120,1000.0,0.0,0.0,12,56,0.0,0.0,1705.2005433720612,1140.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,114506,2,1,1,0,1,,400.0,,43,3.0,0.0,6.0,6.0,3.0999999999999996,4,3,492.871143026902,1000.0,28126.182071301235,1,1,1,2,125.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.040531629821283416,9072.961958484271,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +14494,1,37.0,404.0,5,111,1500.0,0.0,0.0,0,42,0.0,132.4327277010224,2557.8008150580918,1690.0,124.70303028568689,0.0,41,2,2,2,1,2,2,2,2,0,,2,,3,114507,2,2,0,0,1,,550.0,438.0,32,1.0,0.0,4.0,3.0,2.0,3,2,1003.93897481882,1500.0,11179.224981300127,0,4,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.15117327031407998,5589.612490650064,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +14496,2,64.0,0.0,7,111,655.0,0.0,0.0,0,74,0.0,0.0,1116.9063559087,655.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,2,,5,114509,1,3,0,0,1,,0.0,521.0,21,1.0,1.0,3.0,2.0,1.5,2,2,1131.19467281311,655.0,41003.283575541325,0,5,2,3,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.01597433041656964,27335.522383694217,7,4,7,7_0,7_4,7_0_0 +14497,2,65.0,0.0,2,400,2213.0,0.0,0.0,77,72,3923.4202058561577,0.0,3773.608802482371,5933.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,114510,2,1,2,0,1,,727.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1196.72527019027,2213.0,140407.10796632012,6,5,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042255695498145056,93604.73864421342,10,5,10,10_1,10_0,10_0_1 +14498,2,28.0,0.0,9,111,1380.0,0.0,0.0,47,46,0.0,0.0,2353.1767498534446,1380.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,114511,2,1,1,0,1,,720.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,711.561455674404,1380.0,40272.15481393869,1,1,1,2,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03426685277645896,22373.41934107705,6,3,6,6_1,6_4,6_0_0 +14499,2,28.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,413.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,114512,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1408.43075887486,0.0,29985.045682271655,0,1,1,2,59.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013773532459354629,29985.045682271655,8,4,8,8_0,8_3,8_0_1 +14500,2,64.0,0.0,1,300,501.0,0.0,0.0,86,78,0.0,0.0,854.3054722294027,591.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114513,2,1,1,0,1,,248.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1721.75246439396,501.0,29513.818140233572,5,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020024518589627754,19675.878760155716,5,3,5,5_1,5_0,5_1_0 +14501,1,87.0,170.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,736.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,114514,2,1,0,1,1,,157.0,278.0,11,0.0,9.0,3.0,1.0,1.0,1,1,1982.32568287266,0.0,12213.342264282197,0,5,2,3,45.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0602619646673151,12213.342264282197,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +14502,2,31.0,0.0,2,111,240.0,1660.0,0.0,37,46,0.0,0.0,409.2481304092947,1900.0,0.0,3151.5167195800495,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,114515,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,929.068266483956,240.0,63244.61553468947,1,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03004208317082513,42163.07702312631,9,5,9,9_0,9_4,9_0_1 +14503,2,57.0,0.0,1,300,780.0,0.0,0.0,62,45,0.0,0.0,1330.0564238302077,842.0,85.9065319745843,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,114516,2,1,2,0,1,,168.0,,43,2.0,0.0,9.0,2.0,1.5,2,2,999.721444746138,780.0,49772.63756160656,1,1,0,1,160.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01691692546849273,33181.75837440437,8,4,8,8_1,8_0,8_1_0 +14504,2,76.0,0.0,1,112,660.0,0.0,0.0,77,72,0.0,0.0,1125.4323586255605,715.0,76.20740739680865,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114517,2,1,2,0,1,,196.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,936.557875702492,660.0,17420.979196397235,5,5,0,1,120.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04104246907934236,11613.98613093149,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +14505,2,82.0,0.0,2,111,2000.0,0.0,0.0,86,74,0.0,0.0,3410.4010867441225,2155.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114518,1,2,0,1,2,,200.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,785.811171240322,2000.0,40611.19667878493,6,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.053064183679319164,27074.131119189955,7,4,7,7_0,7_4,7_0_1 +14506,2,40.0,0.0,1,112,510.0,0.0,0.0,62,43,3164.0485531098047,0.0,869.6522771197511,3510.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,1,114519,2,2,1,0,1,,480.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,975.922135756044,510.0,53094.27290182076,1,1,1,2,120.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06610882507969389,25282.987096105124,7,4,7,7_1,7_0,7_1_0 +14507,2,62.0,0.0,7,112,4523.0,0.0,0.0,77,71,0.0,0.0,7712.622057671832,4523.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,114520,2,1,2,0,1,,512.0,,41,0.0,1.0,9.0,2.0,1.5,2,2,1730.89806248602,4523.0,58889.23483043609,5,5,0,1,170.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07680520918676209,39259.489886957395,9,5,9,9_1,9_0,9_0_0 +14508,1,38.0,230.0,8,111,360.0,,,0,46,0.0,0.0,,528.0,232.77898986661552,,31,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,114521,1,1,0,0,2,,310.0,500.0,32,1.0,0.0,3.0,2.0,1.5,2,1,99.49079946489928,360.0,16642.0,0,1,3,4,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03172695589472419,11094.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +14509,2,63.0,0.0,5,112,350.0,0.0,0.0,77,90,0.0,874.0560028267478,596.8201901802214,1010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,114522,2,2,1,0,1,,130.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,704.080206511112,350.0,39245.25929576992,5,5,0,1,105.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025735592479799556,26163.506197179948,7,4,7,7_1,7_0,7_0_0 +14510,2,56.0,0.0,6,112,380.0,0.0,0.0,47,47,0.0,1032.9752760679746,647.9762064813832,2960.0,2494.060605713738,0.0,50,2,2,2,2,1,2,2,2,2,15.0,1,,4,114523,2,2,1,0,1,,200.0,,43,2.0,3.0,8.0,3.0,1.8,2,2,1326.27562301257,380.0,59578.0386947403,1,1,0,1,180.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.04968273653931673,33098.91038596683,8,4,8,8_1,8_0,8_0_0 +14511,2,61.0,0.0,6,111,450.0,,,21,54,0.0,0.0,,546.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,114524,2,2,0,0,2,,400.0,900.0,43,2.0,2.0,3.0,2.0,1.5,2,2,55.2246739381436,450.0,47676.148906691764,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011452267276633246,31784.09927112784,8,4,8,8_1,8_2,8_0_0 +14512,2,56.0,0.0,2,111,360.0,0.0,0.0,52,48,0.0,0.0,613.872195613942,360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,114525,2,2,0,1,1,,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,785.898016406073,360.0,55888.594038009,1,1,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006441385871241802,37259.062692006,9,5,9,9_0,9_4,9_0_1 +14513,2,54.0,0.0,5,111,470.0,275.0,0.0,0,34,0.0,0.0,801.4442553848687,745.0,0.0,522.088613183442,20,0,0,0,0,0,0,0,0,3,1.0,2,,3,114526,2,1,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,817.163579706593,470.0,53189.44493701963,0,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014006538343878883,26594.722468509815,7,4,7,7_0,7_4,7_0_0 +14514,2,29.0,0.0,9,300,1000.0,0.0,0.0,54,38,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,114527,2,1,1,0,1,,200.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1080.31240610785,1000.0,72256.79001672454,1,1,1,2,101.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013839529818146368,40142.66112040252,9,5,9,9_1,9_0,9_0_0 +14515,2,60.0,0.0,7,111,582.0,700.0,0.0,52,62,0.0,31.783854648245374,992.4267162425396,1306.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,114528,2,1,2,0,1,,300.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,507.728273589532,582.0,59795.84259684096,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021840983307240772,39863.89506456064,9,5,9,9_1,9_4,9_0_0 +14516,2,55.0,0.0,7,120,100.0,0.0,0.0,45,38,0.0,0.0,170.52005433720612,100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,114529,2,1,2,0,1,,270.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,2720.23142525311,100.0,85181.17991787624,1,1,0,1,119.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0011739682415342295,56787.453278584166,10,5,10,10_1,10_1,10_0_0 +14517,1,21.0,209.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,565.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,1,114530,2,2,0,0,1,,0.0,732.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1654.49085683228,0.0,11185.514953894684,0,2,2,3,26.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05051175581355534,11185.514953894684,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +14518,2,55.0,0.0,5,111,1500.0,60.0,0.0,85,38,0.0,463.51454695357836,2557.8008150580918,1910.0,0.0,113.91024287638734,20,0,0,0,0,0,0,0,0,2,25.0,1,,3,114531,2,1,2,0,1,,900.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,599.980555799806,1500.0,91333.44030469985,6,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02091238426613516,45666.720152349924,10,5,10,10_1,10_4,10_0_0 +14519,2,50.0,0.0,6,211,450.0,1400.0,0.0,72,21,0.0,0.0,767.3402445174275,1850.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,4,114532,2,1,2,0,1,,800.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,1601.32976755792,450.0,25601.722406447458,6,1,1,2,110.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07226076318732766,17067.81493763164,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +14520,1,28.0,357.0,7,111,193.0,,,0,52,0.0,0.0,,265.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,114533,1,1,0,0,2,,392.0,446.0,32,1.0,0.0,3.0,2.0,1.3,1,1,78.17976829962393,193.0,14427.077961805426,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01836823788583988,11097.752278311866,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14521,1,25.0,278.0,2,111,400.0,0.0,0.0,0,55,0.0,0.0,682.0802173488245,452.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114534,2,1,0,1,1,,0.0,280.0,12,1.0,0.0,2.0,1.0,1.0,1,1,338.024749577572,400.0,7900.4365863344365,0,4,2,3,52.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05721202810257785,7900.4365863344365,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +14522,1,35.0,253.0,9,211,600.0,,,0,81,0.0,0.0,,750.0,207.83838380947813,,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114535,2,2,0,0,2,,950.0,635.0,32,1.0,0.0,6.0,5.0,2.2,1,1,10.546682620195273,600.0,9449.284910243243,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07937108544446392,4295.129504656019,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +14524,2,75.0,0.0,5,111,432.0,669.0,0.0,78,75,0.0,0.0,736.6466347367304,1101.0,0.0,1270.0992080717187,70,0,0,0,0,0,0,0,0,0,,1,,3,114537,1,1,1,0,1,,246.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,724.030756800636,432.0,34185.354580271756,5,5,0,1,85.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032206774319532235,22790.23638684784,6,3,6,6_1,6_2,6_0_0 +14525,2,36.0,0.0,5,111,600.0,,,22,42,0.0,0.0,,726.0,174.58424239996165,,10,0,0,0,0,0,0,0,0,2,45.0,1,,3,114538,2,2,0,0,1,,1200.0,1144.0,43,2.0,1.0,4.0,4.0,2.1,2,2,133.49689854964362,600.0,68870.8959435186,1,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010541462980173753,32795.66473500885,8,4,8,8_1,8_3,8_0_0 +14526,2,38.0,0.0,2,111,0.0,0.0,0.0,48,48,0.0,0.0,0.0,281.0,0.0,0.0,31,2,1,2,2,1,2,2,2,2,20.0,2,,2,114539,2,1,0,1,2,,281.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1535.46624384727,0.0,51037.756286721866,1,1,1,2,42.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005505727924663996,34025.17085781458,9,5,9,9_0,9_3,9_0_1 +14527,2,82.0,0.0,2,111,649.0,1419.0,0.0,77,75,0.0,0.0,1106.6751526484677,2068.0,0.0,2693.9772440265606,60,0,0,0,0,0,0,0,0,0,,1,,2,114540,2,1,1,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,286.611460611118,649.0,30726.07512318506,5,5,0,1,89.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06730439835576472,20484.050082123373,5,3,5,5_1,5_3,5_0_1 +14528,2,41.0,0.0,2,111,350.0,250.0,0.0,0,52,0.0,0.0,596.8201901802214,600.0,0.0,474.62601198494724,50,2,2,2,2,1,2,2,2,2,35.0,2,,2,114541,2,2,0,1,1,540.0,0.0,301.0,32,1.0,0.0,3.0,2.0,1.3,1,1,881.635948050246,350.0,34676.026728278106,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01730302046141588,26673.86671406008,7,4,7,7_0,7_4,7_0_1 +14529,1,43.0,210.0,2,211,120.0,,,0,81,0.0,0.0,,120.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,114542,2,2,0,0,2,,200.0,40.0,12,1.0,1.0,2.0,1.0,1.0,1,1,130.04886776330287,120.0,2421.5600432213355,0,4,2,3,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04955483153759312,2421.5600432213355,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14530,2,56.0,0.0,2,111,850.0,700.0,0.0,67,63,0.0,105.94618216081791,1449.420461866252,1630.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,,2,114543,2,2,0,3,1,750.0,0.0,473.0,43,2.0,0.0,4.0,6.0,3.3,5,4,235.197535726211,850.0,45086.05199335713,4,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03615308788270395,13662.439997987009,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +14531,2,81.0,0.0,1,300,0.0,0.0,0.0,0,71,2109.365702073203,0.0,0.0,2257.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114544,2,2,4,0,1,,200.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1009.08877218888,0.0,11158.862769805224,0,5,0,1,50.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.202260754214777,11158.862769805224,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +14532,2,27.0,0.0,7,111,550.0,300.0,0.0,0,45,0.0,0.0,937.8602988546337,850.0,0.0,569.5512143819367,31,0,0,0,0,0,0,0,0,1,10.0,2,,5,114545,2,1,0,1,1,,240.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,896.517275889696,550.0,71462.4861056918,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01189435249625747,71462.4861056918,10,5,10,10_0,10_4,10_0_0 +14533,1,44.0,80.0,2,111,855.0,160.0,0.0,0,55,0.0,0.0,1457.9464645831124,1015.0,0.0,303.7606476703662,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,114546,1,2,0,1,1,,0.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,703.301231215597,855.0,19704.73752239122,0,1,1,2,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05151045523172374,13136.491681594147,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +14534,2,36.0,0.0,9,111,660.0,0.0,0.0,56,65,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,6.0,2,2006.0,6,114547,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1684.6879775588,660.0,48060.0,1,1,1,2,62.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01373283395755306,26700.0,7,4,7,7_0,7_3,7_0_0 +14535,2,42.0,0.0,2,112,0.0,0.0,900.0,46,33,0.0,0.0,567.2864613732694,940.0,55.423569015860835,1077.0589328082126,31,0,0,0,0,0,0,0,0,2,45.0,2,,2,114548,2,1,0,1,1,,520.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1360.02634663774,0.0,79900.17216894728,1,1,1,2,88.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011764680531756418,38047.70103283203,9,5,9,9_0,9_1,9_0_1 +14536,2,53.0,0.0,1,120,500.0,2500.0,0.0,85,38,0.0,0.0,852.6002716860306,3030.0,41.567676761895626,4746.260119849472,12,0,0,0,0,0,0,0,0,2,25.0,1,,1,114549,1,1,4,0,1,,495.0,,42,2.0,2.0,9.0,4.0,2.5,4,4,214.195413162337,500.0,161811.42907798025,6,1,0,1,300.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018725500524068548,64724.5716311921,10,5,10,10_1,10_0,10_1_0 +14537,2,46.0,0.0,6,111,600.0,0.0,0.0,54,63,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,114550,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,3,342.698579027219,600.0,53237.33885681094,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011270285346414133,20475.8995603119,5,3,5,5_0,5_4,5_0_0 +14538,1,58.0,277.0,6,211,950.0,,,0,52,0.0,0.0,,1040.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,1,10.0,1,,4,114551,2,2,0,0,2,,630.0,668.0,32,1.0,2.0,6.0,2.0,1.5,2,2,42.25854000776042,950.0,30885.04740829912,0,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0336732525047231,20590.031605532746,5,3,5,5_1,5_2,5_0_0 +14539,1,30.0,684.0,5,111,1400.0,,,42,53,0.0,0.0,,1484.0,116.38949493330776,,31,0,0,0,0,0,0,0,0,1,13.0,2,,3,114552,2,3,0,0,2,,0.0,934.0,43,2.0,0.0,3.0,3.0,1.8,2,2,170.90561189411093,1400.0,41190.936714025906,4,1,2,3,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03602734286677885,22883.85373001439,6,3,6,6_0,6_2,6_0_0 +14540,2,66.0,0.0,5,120,600.0,0.0,0.0,75,75,1265.6194212439218,0.0,1023.1203260232367,1866.0,91.44888887617039,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,114553,2,1,2,0,1,,730.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1794.71979696285,600.0,57790.91088379307,5,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032288814477283184,38527.273922528715,9,5,9,9_1,9_0,9_0_0 +14541,2,63.0,0.0,6,211,0.0,0.0,0.0,72,75,0.0,0.0,0.0,2651.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114554,2,1,2,0,1,,335.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,882.190841017274,0.0,29821.192995510093,7,5,0,1,100.0,1,3,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08889651062582027,19880.79533034006,5,3,5,5_1,5_1,5_0_0 +14542,2,61.0,0.0,6,111,1270.0,0.0,0.0,77,78,0.0,0.0,2165.6046900825177,1382.0,155.18599324441035,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,114555,2,1,2,0,1,,290.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1818.6118053702,1270.0,26229.84530223,5,5,0,1,121.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05268807284511532,17486.563534819998,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +14543,2,57.0,0.0,5,111,975.0,,,78,77,0.0,0.0,,1363.0,537.6086194538501,,70,0,0,0,0,0,0,0,0,0,,1,,3,114556,2,1,0,0,2,,420.0,,41,2.0,1.0,5.0,4.0,2.5,4,4,138.70748387057006,975.0,8596.565638859953,6,6,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15855168880915524,3438.626255543981,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14544,2,56.0,0.0,7,112,3000.0,0.0,0.0,37,23,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,114557,2,1,2,0,1,,800.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,737.719719209647,3000.0,68874.26507400408,1,1,0,1,100.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04355763356279094,45916.17671600272,10,5,10,10_1,10_1,10_0_0 +14546,2,85.0,0.0,2,400,780.0,0.0,0.0,90,90,2320.3022722805235,0.0,1330.0564238302077,2980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114559,2,1,4,0,1,,197.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1115.16990927257,780.0,82169.93902575687,5,5,0,1,98.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03626630414154127,54779.959350504585,10,5,10,10_1,10_0,10_0_1 +14547,0,51.0,0.0,7,111,0.0,,,0,55,0.0,0.0,,63.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,114560,2,1,0,0,2,,450.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,111.86494897090098,0.0,17720.740778509673,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003555156118326694,17720.740778509673,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +14549,2,38.0,0.0,6,111,840.0,0.0,0.0,47,37,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,114562,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1714.21561362694,840.0,60187.70008069469,1,1,1,2,61.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013956339897915978,33437.61115594149,8,4,8,8_0,8_3,8_0_0 +14550,2,67.0,0.0,5,112,1300.0,0.0,0.0,78,72,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,114563,2,1,1,0,1,,500.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,846.316476264575,1300.0,36505.918690381855,5,5,0,1,168.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03561066387688275,24337.279126921236,7,4,7,7_1,7_0,7_0_0 +14551,2,53.0,0.0,1,111,1847.0,0.0,0.0,55,62,0.0,0.0,3149.505403608197,2087.0,332.541414095165,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,114564,2,1,1,0,1,,579.0,,43,3.0,4.0,6.0,3.0,2.0,3,2,1195.62792897778,1847.0,38257.37472937934,4,1,0,1,120.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05455157377532522,19128.68736468967,5,3,5,5_1,5_2,5_1_0 +14552,2,49.0,0.0,2,111,759.0,832.0,0.0,56,47,0.0,0.0,1294.2472124193944,1591.0,0.0,1579.5553678859044,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,114565,2,1,2,0,1,,756.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,594.47005682375,759.0,67040.28929052473,1,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023731997830517524,26816.11571620989,7,4,7,7_1,7_4,7_0_1 +14553,2,63.0,0.0,1,112,1000.0,1000.0,0.0,75,31,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,2,45.0,1,,1,114566,2,1,1,0,1,,700.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,383.345660381003,1000.0,231758.80506143373,5,5,0,1,200.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008629661338950413,154505.8700409558,10,5,10,10_1,10_0,10_1_0 +14554,2,61.0,0.0,1,112,1740.0,0.0,0.0,67,75,0.0,423.78472864327165,2967.0489454673866,2160.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114567,2,3,4,0,1,,120.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1702.8422128059,1740.0,33182.03977275378,4,5,0,1,80.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06509545569810345,22121.359848502518,6,3,6,6_1,6_1,6_1_0 +14555,1,34.0,280.0,2,111,0.0,0.0,2400.0,85,68,0.0,0.0,1512.763896995385,2400.0,0.0,2872.157154155234,71,2,2,2,1,2,2,2,2,0,,2,,2,114568,2,2,0,0,1,,785.0,550.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,3,2,355.473893043061,0.0,25345.320486819113,7,4,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0946920360012068,8739.76568511004,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14556,2,54.0,0.0,7,120,649.0,0.0,0.0,56,22,1577.805545150756,0.0,1106.6751526484677,2215.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,114569,2,1,1,0,1,,249.0,675.0,43,2.0,3.0,6.0,2.0,1.5,2,2,923.598325437622,649.0,37940.59367255013,1,1,2,3,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05838074172261948,25293.72911503342,7,4,7,7_1,7_0,7_0_0 +14557,0,89.0,0.0,1,111,903.0,0.0,0.0,0,77,0.0,0.0,1539.7960906649712,1005.0,141.33010099044515,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114570,2,1,2,0,1,,40.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2194.37318827007,903.0,7677.0,0,6,0,1,50.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13091051191871825,7677.0,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +14558,1,50.0,128.0,7,111,300.0,,,0,52,0.0,0.0,,588.0,399.049696914198,,50,0,0,0,0,0,0,0,0,3,15.0,2,,5,114571,2,2,0,0,2,,1000.0,300.0,32,1.0,4.0,3.0,2.0,1.5,1,1,116.11456019880646,300.0,16583.08770831011,0,1,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0354578116176363,11055.391805540074,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14559,2,40.0,0.0,6,111,1320.0,0.0,0.0,0,43,0.0,1165.408003768997,2250.864717251121,2270.0,96.99124577775646,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,114572,1,2,2,0,2,,500.0,900.0,32,1.0,2.0,6.0,3.0,1.8,2,2,375.050806552075,1320.0,65934.45269318848,0,1,2,3,110.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03442813138319275,36630.25149621582,9,5,9,9_1,9_2,9_0_0 +14560,2,67.0,0.0,6,111,567.0,0.0,0.0,77,75,0.0,264.8654554020448,966.8487080919587,767.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,114573,1,1,3,0,1,,254.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,915.196742041465,567.0,37956.56754338059,5,5,0,1,100.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020207306657099463,25304.378362253727,7,4,7,7_1,7_2,7_0_0 +14561,2,35.0,0.0,2,111,800.0,0.0,0.0,0,63,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,114574,2,1,0,0,1,,360.0,530.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1415.20421585095,800.0,21036.221861782695,0,1,2,3,80.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03802964264478454,21036.221861782695,5,3,5,5_0,5_2,5_0_1 +14562,2,82.0,0.0,1,120,1500.0,0.0,0.0,77,74,527.3414255183008,0.0,2557.8008150580918,2060.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114575,2,1,3,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,3122.75888894828,1500.0,48464.4172281526,5,5,0,1,120.0,0,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04250541155384743,32309.611485435064,8,4,8,8_1,8_1,8_1_0 +14563,2,57.0,0.0,1,112,700.0,0.0,0.0,75,45,1265.6194212439218,490.00109249378283,1193.6403803604428,2270.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,35.0,1,,1,114576,2,1,2,0,1,,400.0,,42,1.0,0.0,6.0,3.0,2.0,3,2,1612.52794755853,700.0,52542.71318212518,5,1,0,1,80.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04320294599427433,26271.35659106259,7,4,7,7_1,7_0,7_1_0 +14564,2,51.0,0.0,9,111,1200.0,,,37,21,0.0,0.0,,2000.0,1108.4713803172167,,50,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,114577,2,1,0,0,2,,80.0,,43,2.0,1.0,5.0,4.0,2.5,4,3,206.1454944498031,1200.0,54353.125784629825,1,1,1,2,128.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036796411818610944,21741.25031385193,6,3,6,6_1,6_3,6_0_0 +14565,2,58.0,0.0,6,221,850.0,0.0,0.0,0,52,0.0,0.0,1449.420461866252,875.0,34.63973063491302,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,114578,1,2,1,0,1,,410.0,351.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1897.32809053484,850.0,18447.16497020694,0,1,2,3,110.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047432762780251984,18447.16497020694,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +14566,2,80.0,0.0,2,221,263.0,0.0,0.0,77,72,1582.0242765549024,0.0,448.4677429068521,1883.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114579,2,2,2,0,1,,310.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1452.1941918468,263.0,28295.99511968036,5,5,0,1,110.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06654651981793497,18863.996746453573,5,3,5,5_1,5_1,5_0_1 +14567,2,82.0,0.0,6,211,210.0,1750.0,0.0,0,74,0.0,0.0,358.0921141081328,1960.0,0.0,3322.382083894631,10,0,0,0,0,0,0,0,0,0,,1,,4,114580,2,1,2,0,1,,84.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1015.86709431852,210.0,42387.80265475977,0,5,0,1,92.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04623971702340436,42387.80265475977,9,5,9,9_1,9_2,9_0_0 +14569,2,39.0,0.0,9,111,700.0,,,47,34,0.0,0.0,,700.0,0.0,,20,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,114582,2,1,0,0,2,,500.0,830.0,43,2.0,2.0,3.0,2.0,1.5,2,2,173.26275690952806,700.0,38910.63628851143,1,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01798993968666297,25940.424192340954,7,4,7,7_0,7_2,7_0_0 +14570,2,25.0,0.0,9,120,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1264.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,114583,2,1,1,0,1,,288.0,580.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2014.3811399106,0.0,14397.671020589085,0,1,2,3,70.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08779197678516501,14397.671020589085,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +14571,1,65.0,100.0,2,111,1300.0,700.0,0.0,78,78,0.0,66.2163638505112,2216.7607063836795,2050.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,2,114584,1,3,4,0,2,,1080.0,590.0,41,0.0,8.0,5.0,2.0,1.5,2,2,228.617803799045,1300.0,15040.370546769085,7,5,2,3,90.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.13629983341337112,10026.913697846057,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +14572,2,69.0,0.0,5,212,698.0,0.0,0.0,78,77,1054.6828510366015,0.0,1190.2299792736987,1797.0,137.1733333142556,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,114585,2,1,2,0,1,,363.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,884.090889976342,698.0,26996.07841436342,5,5,0,1,100.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06656522374908705,17997.385609575613,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +14573,2,62.0,0.0,1,111,350.0,1300.0,0.0,0,75,0.0,0.0,596.8201901802214,1650.0,0.0,2468.055262321726,30,0,0,0,0,0,0,0,0,0,,2,,1,114586,2,1,0,0,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,539.551776505627,350.0,22180.337865080197,0,5,1,2,130.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07439021037626715,22180.337865080197,6,3,6,6_0,6_2,6_1_0 +14574,2,50.0,0.0,7,111,800.0,1200.0,0.0,54,37,0.0,397.2981831030672,1364.160434697649,2300.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,0,,1,,5,114587,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,1126.65836866834,800.0,99079.98600477038,1,4,0,1,245.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023213568075082916,49539.99300238519,10,5,10,10_1,10_3,10_0_0 +14575,2,37.0,0.0,9,400,912.0,0.0,0.0,56,64,0.0,0.0,1555.1428955553197,912.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,114588,1,1,1,0,1,,720.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,948.575608968617,912.0,26968.96233896857,1,1,1,2,81.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03381665147280114,12842.363018556462,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +14576,2,34.0,0.0,2,111,130.0,300.0,0.0,85,64,0.0,0.0,221.67607063836795,430.0,0.0,569.5512143819367,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,114589,2,2,0,1,1,561.0,0.0,446.0,42,1.0,0.0,2.0,2.0,1.5,2,2,449.967403404758,130.0,16464.101927215837,6,1,2,3,52.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026117428202335913,10976.067951477226,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +14577,2,76.0,0.0,5,300,287.0,0.0,0.0,77,77,2188.466915900948,0.0,489.39255594778155,2512.0,207.83838380947813,0.0,31,2,2,2,2,1,2,2,1,0,,1,,3,114590,1,2,4,0,2,,247.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1033.86559347251,287.0,22568.726784572355,5,5,0,1,84.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.11130446231983125,15045.817856381569,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +14578,2,51.0,0.0,5,111,600.0,,,0,55,0.0,0.0,,850.0,346.39730634913025,,50,0,0,0,0,0,0,0,0,3,60.0,2,,3,114591,2,3,0,0,2,,590.0,470.0,12,1.0,1.0,3.0,1.0,1.0,1,1,104.9478707801438,600.0,14740.0,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.057666214382632294,14740.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +14579,2,68.0,0.0,2,111,600.0,0.0,0.0,0,86,2404.6769003634513,0.0,1023.1203260232367,3600.0,997.6242422854951,0.0,71,2,2,2,1,2,2,2,2,0,,1,,2,114592,2,2,2,1,1,,0.0,,21,1.0,0.0,8.0,5.0,2.6,4,2,198.16076534207,600.0,19618.359991881134,0,6,0,1,120.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.18350157717005014,7545.523073800436,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +14580,2,82.0,0.0,9,111,760.0,0.0,0.0,0,90,0.0,0.0,1295.9524129627664,760.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,114593,2,2,5,0,1,,204.0,207.0,11,0.0,0.0,1.0,1.0,1.0,1,1,366.745201800728,760.0,14056.16653248911,0,5,2,3,36.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05406879594399746,14056.16653248911,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14581,2,65.0,0.0,6,112,980.0,1200.0,0.0,77,72,0.0,0.0,1671.09653250462,2180.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,4,114594,2,1,1,0,1,,280.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2028.51374513624,980.0,9162.724699106799,5,5,0,1,115.0,7,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.23792049544089336,6108.483132737866,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +14582,2,63.0,0.0,6,120,300.0,0.0,0.0,86,86,1054.6828510366015,0.0,511.56016301161833,1350.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,114595,2,1,2,0,1,,230.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1068.67535942901,300.0,53434.32664473781,5,5,0,1,100.0,0,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025264658221962406,35622.88442982521,9,5,9,9_1,9_1,9_0_0 +14583,2,44.0,0.0,9,112,1052.0,0.0,0.0,55,52,0.0,678.0555658292346,1793.8709716274084,1579.0,20.783838380947813,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,114596,2,2,1,0,1,,350.0,,43,2.0,1.0,6.0,4.0,2.5,4,2,1193.90318698253,1052.0,56935.182132326605,1,1,1,2,113.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027733291452904246,22774.072852930643,6,3,6,6_1,6_0,6_0_0 +14585,2,72.0,0.0,2,211,396.0,0.0,0.0,72,72,0.0,0.0,675.2594151753362,456.0,83.13535352379125,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,114598,1,2,0,1,1,818.0,210.0,300.0,41,0.0,2.0,3.0,2.0,1.5,2,2,318.682626390135,396.0,18221.375397425658,5,5,2,3,58.0,1,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02502555323372704,12147.583598283773,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +14586,2,69.0,0.0,1,111,480.0,1300.0,0.0,78,75,0.0,0.0,818.4962608185893,1780.0,0.0,2468.055262321726,33,0,0,0,0,0,0,0,0,0,,1,,1,114599,2,1,1,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1037.41149590369,480.0,44865.0562556197,5,5,0,1,110.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03967452954607721,29910.037503746466,8,4,8,8_1,8_3,8_1_0 +14587,2,36.0,0.0,7,112,630.0,2000.0,0.0,38,47,0.0,156.27061868720642,1074.2763423243985,2748.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,0,,1,,5,114600,2,1,1,0,1,,226.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1460.41456325894,630.0,100984.80067705919,1,1,1,2,210.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027212015883339418,48088.000322409134,10,5,10,10_1,10_2,10_0_0 +14588,2,37.0,0.0,6,112,0.0,0.0,0.0,34,42,0.0,0.0,0.0,719.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,4,114601,2,2,2,0,2,,298.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,817.971099067358,0.0,52550.49666533401,1,1,1,2,120.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013682078108203738,35033.66444355601,9,5,9,9_1,9_0,9_0_0 +14589,1,61.0,221.0,2,111,354.0,0.0,0.0,77,78,0.0,0.0,603.6409923537096,354.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,114602,2,1,0,1,1,213.0,0.0,335.0,41,0.0,1.0,3.0,2.0,1.5,2,2,234.600956910936,354.0,14332.961688826152,6,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024698314813467702,9555.307792550768,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +14590,1,43.0,431.0,7,111,0.0,0.0,1500.0,85,67,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,71,1,2,2,2,1,2,2,2,0,,1,,5,114603,2,1,2,0,1,,700.0,392.0,42,3.0,0.0,5.0,6.0,3.0999999999999996,4,4,277.691322115669,0.0,17088.477545972135,6,4,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.08777844579569113,5512.412111603915,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +14591,2,59.0,0.0,1,120,736.0,1820.0,0.0,52,75,0.0,0.0,1255.027599921837,2556.0,0.0,3455.277367250416,50,0,0,0,0,0,0,0,0,0,,1,,1,114604,2,1,1,0,1,,1324.0,,42,2.0,0.0,4.0,4.0,2.5,4,4,1149.60178604697,736.0,85294.60007100114,1,5,0,1,120.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02996672705977082,34117.84002840046,9,5,9,9_1,9_0,9_1_0 +14592,2,57.0,0.0,1,300,790.0,0.0,0.0,56,62,527.3414255183008,0.0,1347.1084292639284,1538.0,343.6261278983372,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,114605,2,2,1,0,1,,288.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1186.71731109365,790.0,33714.55164715898,1,1,0,1,89.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04561828423809404,22476.367764772654,6,3,6,6_1,6_0,6_1_0 +14593,2,41.0,0.0,1,112,1261.0,0.0,0.0,11,11,0.0,198.6490915515336,2150.257885192169,1513.0,141.33010099044515,0.0,31,0,0,0,0,0,0,0,0,1,3.0,5,,1,114606,2,1,1,0,1,,214.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1464.74279109025,1261.0,22661.210840198433,1,1,0,1,83.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0667660704747563,10791.052781046872,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +14594,2,36.0,0.0,8,111,663.0,848.0,0.0,31,38,0.0,0.0,1130.5479602556766,1511.0,0.0,1609.931432652941,12,0,0,0,0,0,0,0,0,1,25.0,1,2003.0,6,114607,2,1,1,0,1,,475.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1214.96905018209,663.0,82767.86470346633,1,1,1,2,105.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01825587751252835,34486.61029311097,9,5,9,9_1,9_3,9_0_0 +14595,2,30.0,0.0,9,212,915.0,0.0,0.0,63,38,0.0,0.0,1560.258497185436,915.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,114608,2,1,1,0,1,,291.0,520.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1002.23611023928,915.0,43599.15963317441,1,1,2,3,62.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020986643038499772,24221.75535176356,7,4,7,7_1,7_0,7_0_0 +14596,2,73.0,0.0,2,111,0.0,0.0,350.0,75,75,0.0,0.0,220.61140164516033,350.0,0.0,418.8562516476383,70,0,0,0,0,0,0,0,0,0,,2,,2,114609,1,3,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,314.639382102939,0.0,35334.22495236449,5,5,0,1,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00990541041927053,23556.149968242997,6,3,6,6_0,6_3,6_0_1 +14597,2,50.0,0.0,6,111,500.0,,,22,22,0.0,0.0,,500.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,114610,2,1,0,0,2,,240.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,120.36067071405144,500.0,58529.0008984892,1,1,1,2,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008542773536612794,23411.600359395678,6,3,6,6_1,6_2,6_0_0 +14598,2,72.0,0.0,2,211,200.0,0.0,0.0,77,75,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114611,1,2,3,0,1,,461.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,1830.24020082435,200.0,36437.07747784291,5,5,0,1,150.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.005488914420252787,24291.384985228608,7,4,7,7_1,7_1,7_0_1 +14599,2,41.0,0.0,1,111,1350.0,280.0,0.0,0,47,0.0,0.0,2302.0207335522828,1630.0,0.0,531.581133423141,50,0,0,0,0,0,0,0,0,0,,1,,1,114612,2,1,2,0,2,,200.0,,22,1.0,2.0,4.0,2.0,1.5,2,2,258.671417638356,1350.0,14700.151926393986,0,1,0,1,70.0,4,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11088320774925803,9800.101284262657,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +14600,2,70.0,0.0,5,111,1060.0,0.0,0.0,77,78,0.0,0.0,1807.5125759743848,1210.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,114613,2,2,2,0,1,,250.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,979.604392711398,1060.0,32377.135446047563,5,5,0,1,92.0,6,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0373720523242803,21584.75696403171,6,3,6,6_1,6_2,6_0_0 +14601,2,63.0,0.0,8,111,990.0,,,85,21,0.0,0.0,,1302.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,114614,2,1,0,0,2,,0.0,,41,0.0,6.0,15.0,3.0,2.0,3,2,44.90543546222487,990.0,19910.87565674256,6,7,0,1,305.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06539139827128068,9955.43782837128,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14602,2,49.0,0.0,7,111,420.0,0.0,0.0,85,34,0.0,0.0,716.1842282162656,421.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,5,114615,2,1,0,1,1,1100.0,0.0,680.0,42,1.0,0.0,3.0,4.0,2.3,3,2,666.510407554886,420.0,40729.50909191631,6,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010336485987344171,17708.482213876658,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +14603,1,67.0,73.0,7,111,550.0,0.0,0.0,0,77,0.0,0.0,937.8602988546337,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,114616,2,2,0,0,1,,0.0,296.0,11,0.0,2.0,1.0,1.0,1.0,1,1,1584.23011484232,550.0,19006.729325572658,0,5,2,3,37.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02893711961584053,19006.729325572658,5,3,5,5_0,5_3,5_0_0 +14604,1,40.0,155.0,7,111,773.0,,,0,43,0.0,0.0,,819.0,63.73710436823996,,43,0,0,0,0,0,0,0,0,0,,2,,5,114617,2,3,0,0,2,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,185.1683170243034,773.0,12742.294381625114,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0642741389793215,12742.294381625114,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14605,1,45.0,401.0,1,111,235.0,552.0,0.0,85,21,0.0,0.0,400.72212769243436,787.0,0.0,1047.9742344627634,10,0,0,0,0,0,0,0,0,1,2.0,2,,1,114618,1,1,0,0,2,,0.0,402.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1438.24341462293,235.0,5121.592775444091,6,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1536631345962018,2438.8537025924243,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +14606,2,83.0,0.0,2,111,222.0,61.0,0.0,0,74,0.0,0.0,378.5545206285976,283.0,0.0,115.80874692432712,10,0,0,0,0,0,0,0,0,0,,2,,2,114619,2,1,0,1,1,888.0,0.0,712.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1808.9967585629,222.0,55316.337903348365,0,5,2,3,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005116029200893099,55316.337903348365,10,5,10,10_0,10_3,10_0_1 +14607,2,34.0,0.0,5,111,450.0,700.0,0.0,63,52,0.0,0.0,767.3402445174275,1150.0,0.0,1328.9528335578523,42,0,0,0,0,0,0,0,0,2,5.0,2,,3,114620,2,1,0,0,1,,150.0,320.0,43,2.0,0.0,2.0,2.0,1.5,2,2,419.623893480058,450.0,35310.95603459584,1,1,2,3,58.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03256779564034715,23540.637356397227,6,3,6,6_0,6_3,6_0_0 +14608,0,38.0,0.0,6,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,277.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,114621,1,1,0,1,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,362.932720241041,0.0,600.8957052302947,7,7,5,0,50.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.46097849857961476,400.59713682019645,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +14609,1,29.0,285.0,7,211,420.0,,,55,68,0.0,0.0,,508.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,114622,2,1,0,0,1,,330.0,365.0,43,2.0,0.0,2.0,2.0,1.5,2,2,111.93568453753001,420.0,11285.24467627337,4,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04501453132585092,7523.496450848914,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14610,2,20.0,0.0,5,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,648.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,,3,114623,2,1,0,1,1,,0.0,424.0,12,1.0,0.0,2.0,1.0,1.0,1,1,330.352143242741,0.0,11330.969110838194,0,1,2,3,40.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05718840053850125,11330.969110838194,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +14611,2,40.0,0.0,9,112,2069.0,0.0,0.0,56,53,0.0,0.0,3528.0599242367944,2069.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,90.0,1,2012.0,6,114624,2,1,1,0,1,,221.0,,43,2.0,1.0,5.0,5.0,2.8,4,2,201.997746857481,2069.0,44277.05398282934,1,1,1,2,110.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046728492839707876,15813.233565296194,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14612,2,33.0,0.0,1,111,391.0,960.0,0.0,63,42,0.0,0.0,666.7334124584759,1351.0,0.0,1822.5638860221975,20,1,2,2,1,2,2,2,2,2,10.0,1,,1,114625,2,1,2,0,1,,327.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,616.754148514409,391.0,34472.389513168084,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.039190784830391075,16415.423577699086,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +14613,2,71.0,0.0,6,211,2230.0,,,75,31,0.0,0.0,,2419.0,261.87636359994247,,10,0,0,0,0,0,0,0,0,0,,1,,4,114626,2,1,0,0,1,,160.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,97.59848809329702,2230.0,170714.004359338,5,1,0,1,250.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01416989783045694,113809.33623955866,10,5,10,10_1,10_2,10_0_0 +14614,0,65.0,0.0,1,400,0.0,0.0,0.0,0,78,0.0,291.3520009422493,0.0,366.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,114627,1,3,4,0,2,,164.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1117.36628362157,0.0,16591.721985126576,0,5,5,0,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.022059193152350054,16591.721985126576,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14615,2,65.0,0.0,1,111,800.0,1070.0,0.0,77,74,0.0,0.0,1364.160434697649,1870.0,0.0,2031.3993312955743,20,0,0,0,0,0,0,0,0,0,,1,,1,114628,2,1,1,0,1,,450.0,,41,1.0,1.0,8.0,3.0,2.0,3,3,257.874329696223,800.0,65631.84581983244,5,5,0,1,160.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028492265860286515,32815.92290991622,8,4,8,8_1,8_3,8_1_0 +14616,0,33.0,0.0,2,111,600.0,0.0,0.0,0,46,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,114629,2,1,0,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,547.65769338784,600.0,36393.6069987302,0,1,5,0,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016486412023434073,36393.6069987302,9,5,9,9_0,9_3,9_0_1 +14617,1,47.0,126.0,5,111,456.0,720.0,0.0,85,90,0.0,0.0,777.5714477776598,1176.0,0.0,1366.922914516648,43,0,0,0,0,0,0,0,0,2,10.0,2,,3,114630,1,2,0,0,1,,432.0,332.0,42,1.0,2.0,4.0,3.0,1.8,2,2,548.675804317842,456.0,25886.090231594026,6,1,2,3,78.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04542980378569065,14381.161239774457,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +14618,2,57.0,0.0,7,111,560.0,0.0,0.0,0,62,0.0,0.0,954.9123042883542,560.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,5,114631,2,1,0,0,1,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,879.21279018773,560.0,26150.65306776623,0,1,1,2,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021414379157141058,26150.65306776623,7,4,7,7_0,7_4,7_0_0 +14619,2,60.0,0.0,5,111,580.0,,,56,68,0.0,0.0,,790.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,2,,3,114632,2,2,0,0,2,,300.0,315.0,43,2.0,3.0,4.0,2.0,1.5,2,2,134.45908938491849,580.0,27692.895350826344,1,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028527172402593386,18461.930233884228,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +14620,2,57.0,0.0,6,120,1000.0,0.0,0.0,21,75,0.0,595.9472746546007,1705.2005433720612,1520.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,114633,2,1,2,0,1,,290.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,608.471708134904,1000.0,135544.64269860587,1,6,0,1,140.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011214017535018621,90363.0951324039,10,5,10,10_1,10_1,10_0_0 +14621,2,37.0,0.0,7,111,266.0,0.0,0.0,0,37,0.0,0.0,453.5833445369683,266.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,35.0,2,,5,114634,1,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,944.224677551071,266.0,47734.02226107499,0,1,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005572545270648843,47734.02226107499,10,5,10,10_0,10_4,10_0_0 +14622,2,51.0,0.0,6,111,405.0,,,0,11,0.0,119.18945493092015,,642.0,203.68161613328857,,71,0,0,0,0,0,0,0,0,1,10.0,1,,4,114635,2,2,0,0,2,,460.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,129.58234144619706,405.0,35507.66947684949,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018080600880285177,23671.779651232995,6,3,6,6_1,6_3,6_0_0 +14623,2,33.0,0.0,7,112,0.0,,,0,63,0.0,0.0,,542.0,0.0,,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,114636,2,2,0,0,2,,0.0,,32,1.0,3.0,3.0,2.0,1.3,1,1,108.40686331428323,0.0,14782.302998620218,0,1,1,2,75.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03666546410600502,11371.002306630937,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +14624,2,31.0,0.0,2,111,1500.0,,,0,54,0.0,0.0,,1650.0,207.83838380947813,,31,0,0,0,0,0,0,0,0,0,,1,,2,114637,1,2,0,0,2,,800.0,,22,1.0,0.0,6.0,3.0,2.0,3,3,43.79069950296666,1500.0,28000.640929110068,0,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05892722256527437,14000.320464555034,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +14625,2,50.0,0.0,8,111,500.0,0.0,0.0,0,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,60,2,2,2,2,2,2,2,1,3,90.0,2,2000.0,6,114638,1,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,976.888434412474,500.0,20903.569149959276,0,1,1,2,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02391936020174689,20903.569149959276,5,3,5,5_0,5_4,5_0_0 +14626,1,31.0,106.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,387.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114639,2,1,0,0,1,,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1424.99919704734,0.0,10383.925375619236,0,4,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037269143026456085,10383.925375619236,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +14627,2,41.0,0.0,2,112,410.0,0.0,0.0,52,42,0.0,794.5963662061343,699.1322227825451,1210.0,277.1178450793042,0.0,44,0,0,0,0,0,0,0,0,2,40.0,1,,2,114640,2,2,2,0,2,,350.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,1006.18806620457,410.0,37081.23897547983,1,1,1,2,60.0,6,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032631056389462045,18540.619487739914,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +14628,2,50.0,0.0,1,111,1380.0,0.0,0.0,55,62,1972.2569314384448,0.0,2353.1767498534446,3365.0,159.34276092059991,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,114641,2,1,3,0,1,,324.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1451.58189986608,1380.0,47310.77376332514,1,1,0,1,200.0,8,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07112544844084787,20569.901636228322,5,3,5,5_1,5_3,5_1_0 +14629,2,57.0,0.0,2,111,960.0,180.0,0.0,37,37,0.0,0.0,1636.9925216371787,1140.0,0.0,341.730728629162,10,2,2,2,2,1,2,2,2,3,30.0,2,,2,114642,1,2,0,1,1,1020.0,0.0,1480.0,43,2.0,0.0,4.0,4.0,2.5,4,4,1064.02830103626,960.0,112515.85367789472,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010131905529184717,45006.34147115789,10,5,10,10_0,10_4,10_0_1 +14630,2,53.0,0.0,2,111,900.0,1262.0,0.0,21,90,0.0,0.0,1534.680489034855,2162.0,0.0,2395.912108500014,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,114643,2,1,2,0,1,,840.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1288.06828059169,900.0,54639.113955306486,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03956872363941453,36426.07597020432,9,5,9,9_1,9_4,9_0_1 +14631,1,56.0,139.0,2,211,1200.0,0.0,0.0,0,72,0.0,0.0,2046.2406520464733,1305.0,145.4868686666347,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,114644,1,2,1,0,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1854.5667207342,1200.0,20767.38833708174,0,7,1,2,65.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0628389077537412,20767.38833708174,5,3,5,5_1,5_1,5_0_1 +14632,2,49.0,0.0,5,112,1200.0,0.0,0.0,54,22,0.0,0.0,2046.2406520464733,1264.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,114645,2,1,2,0,1,,960.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1310.13175609401,1200.0,70888.33692693913,4,1,1,2,150.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017830859839507,39382.40940385507,9,5,9,9_1,9_1,9_0_0 +14633,2,68.0,0.0,1,400,268.0,1420.0,0.0,77,77,0.0,66.2163638505112,456.9937456237124,1738.0,0.0,2695.8757480745003,71,0,0,0,0,0,0,0,0,0,,1,,1,114646,2,2,3,0,1,,112.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1456.25549945481,268.0,27613.12020074764,5,5,0,1,75.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06294109421045951,18408.746800498426,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14634,2,40.0,0.0,9,111,450.0,2300.0,0.0,46,38,0.0,0.0,767.3402445174275,2750.0,0.0,4366.559310261515,12,1,2,2,1,1,2,2,2,0,,1,2011.0,6,114647,2,1,1,0,1,,1200.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,268.930289169303,450.0,17954.336436528367,1,4,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.15316634004947594,7480.973515220153,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +14635,2,51.0,0.0,1,111,551.0,1477.0,0.0,46,37,0.0,0.0,939.5654993980057,2028.0,0.0,2804.0904788070684,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,114648,2,1,1,0,1,,888.0,,42,1.0,0.0,9.0,6.0,3.3,5,3,1239.92679780335,551.0,69902.07123670314,6,1,0,1,158.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02901201586906867,21182.445829303982,5,3,5,5_1,5_3,5_1_0 +14636,2,67.0,0.0,2,111,192.0,700.0,0.0,77,77,0.0,229.10861892276873,327.3985043274357,1065.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,1,,2,114649,2,1,3,0,1,,120.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,222.620123016023,192.0,35542.57027514008,5,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029964068207664327,23695.04685009339,6,3,6,6_1,6_2,6_0_1 +14637,1,55.0,375.0,7,111,100.0,,,64,54,0.0,0.0,,232.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,114650,2,1,0,0,2,,140.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,112.20749131961445,100.0,8324.523819609009,4,4,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027869461968924574,5549.682546406006,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +14638,2,56.0,0.0,1,120,1100.0,0.0,0.0,52,47,0.0,0.0,1875.7205977092674,1278.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,114651,2,1,1,0,1,,210.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,584.610746852456,1100.0,27152.394064739718,4,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04706767281562179,18101.59604315981,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14639,2,61.0,0.0,2,111,0.0,0.0,360.0,77,75,0.0,0.0,226.91458454930776,360.0,0.0,430.8235731232851,50,0,0,0,0,0,0,0,0,0,,2,,2,114652,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,667.210780860552,0.0,24949.521919190825,5,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014429134200086336,16633.014612793882,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +14640,2,28.0,0.0,1,111,200.0,0.0,0.0,0,46,0.0,0.0,341.04010867441224,200.0,0.0,0.0,20,2,2,2,2,2,2,2,1,3,30.0,2,,1,114653,1,3,0,0,1,,0.0,664.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1181.9241890654,200.0,26145.17789240807,0,1,2,3,19.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0076495941554895735,26145.17789240807,7,4,7,7_0,7_4,7_1_0 +14641,0,49.0,0.0,7,111,360.0,,,0,52,0.0,0.0,,864.0,698.3369695998466,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,114654,2,2,0,0,2,,240.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,103.416178851452,360.0,26770.96430442728,0,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032273772067938356,13385.48215221364,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14642,2,78.0,0.0,2,111,900.0,900.0,0.0,78,77,0.0,0.0,1534.680489034855,1800.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,2,114655,2,1,2,0,1,,360.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1224.11862710301,900.0,34978.08356250293,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05146079535156778,23318.72237500195,6,3,6,6_1,6_4,6_0_1 +14643,2,40.0,0.0,6,112,400.0,0.0,0.0,42,46,0.0,0.0,682.0802173488245,450.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,114656,1,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1254.00508959819,400.0,55745.8599448703,1,1,1,2,126.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00807234834021802,26545.64759279538,7,4,7,7_1,7_0,7_0_0 +14644,2,64.0,0.0,8,111,700.0,,,0,77,0.0,0.0,,746.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,114657,2,1,0,0,2,,600.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,95.41206974780145,700.0,21983.603777474218,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03393438162147002,21983.603777474218,6,3,6,6_1,6_2,6_0_0 +14645,2,69.0,0.0,7,111,540.0,,,75,75,0.0,0.0,,541.0,1.385589225396521,,43,0,0,0,0,0,0,0,0,0,,1,,5,114658,2,1,0,0,2,,550.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,71.58085612854948,540.0,55756.373659089244,5,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009702926580337381,37170.91577272616,9,5,9,9_1,9_2,9_0_0 +14647,2,83.0,0.0,5,111,280.0,0.0,0.0,0,78,0.0,0.0,477.4561521441771,280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,114660,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1298.63649347841,280.0,67016.52879568817,0,5,0,1,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0041780737533218095,67016.52879568817,10,5,10,10_0,10_4,10_0_0 +14648,2,71.0,0.0,2,111,220.0,1709.0,0.0,0,77,0.0,0.0,375.14411954185346,1929.0,0.0,3244.543417929099,71,0,0,0,0,0,0,0,0,0,,1,,2,114661,2,2,5,0,1,,55.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,485.70985339766,220.0,15928.215242118258,0,5,0,1,101.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12110584711959646,15928.215242118258,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +14649,2,60.0,0.0,6,112,2000.0,0.0,0.0,0,46,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,114662,2,1,2,0,1,,129.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1219.68887969119,2000.0,69706.41953406244,0,1,0,1,89.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02869176201228767,69706.41953406244,10,5,10,10_1,10_1,10_0_0 +14651,1,42.0,200.0,6,300,770.0,0.0,0.0,21,52,3164.0485531098047,3178.3854648245374,1313.0044183964872,6290.0,166.2707070475825,0.0,50,2,2,2,1,1,2,2,2,2,15.0,1,,4,114664,1,3,2,0,2,,660.0,600.0,43,2.0,1.0,6.0,6.0,3.3,5,4,1508.57339550468,770.0,40578.6252503764,1,1,2,3,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.15500771554456877,12296.553106174666,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +14652,2,33.0,0.0,2,111,702.0,1730.0,0.0,31,47,0.0,0.0,1197.0507814471869,2522.0,124.70303028568689,3284.412002935835,20,2,2,2,1,1,2,2,1,0,,1,,2,114665,2,2,1,0,1,,246.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1883.18770095561,702.0,48838.09217567625,1,1,1,2,130.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.051640018838739137,27132.273430931247,7,4,7,7_1,7_2,7_0_1 +14653,1,38.0,182.0,7,111,534.0,,,0,55,0.0,0.0,,648.0,157.95717169520339,,43,0,0,0,0,0,0,0,0,2,5.0,2,,5,114666,2,3,0,0,2,,390.0,434.0,32,1.0,0.0,3.0,3.0,1.8,2,2,139.24919672552699,534.0,20802.46232636716,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.031150158564578135,11556.923514648422,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14654,2,63.0,0.0,1,111,240.0,,,0,77,0.0,0.0,,290.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,1,114667,2,2,0,0,2,,100.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,122.72211058711967,240.0,22160.681640122282,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013086240067406147,22160.681640122282,6,3,6,6_1,6_2,6_1_0 +14655,1,37.0,238.0,2,111,0.0,,,0,85,0.0,0.0,,1020.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,114668,2,1,0,0,1,,450.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,110.23469296894089,0.0,13992.818435628902,0,7,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0728945354856351,13992.818435628902,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +14656,2,31.0,0.0,5,111,330.0,0.0,0.0,0,64,0.0,0.0,562.7161793127802,330.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,114669,2,2,0,1,1,552.0,0.0,281.0,12,1.0,0.0,3.0,1.0,1.0,1,1,335.745954424932,330.0,21531.07375258935,0,1,2,3,65.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015326685691200787,21531.07375258935,6,3,6,6_0,6_3,6_0_0 +14658,2,59.0,0.0,8,111,250.0,500.0,0.0,0,48,0.0,0.0,426.3001358430153,750.0,0.0,949.2520239698945,50,2,2,2,2,1,2,2,2,0,,2,2002.0,6,114671,2,1,0,0,1,,220.0,375.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1331.95287364085,250.0,15915.35268385356,0,4,2,3,71.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.0471243091433902,15915.35268385356,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +14659,2,45.0,0.0,5,111,0.0,,,0,22,0.0,0.0,,576.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,114672,2,3,0,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,8.764192101692458,0.0,10744.347804228793,0,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053609582498185336,10744.347804228793,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14660,2,92.0,0.0,1,111,770.0,0.0,0.0,0,77,2109.365702073203,0.0,1313.0044183964872,2815.0,62.351515142843446,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114673,1,1,2,0,2,,310.0,,21,0.0,0.0,7.0,2.0,1.5,2,2,658.243925721935,770.0,66535.08660266873,0,5,0,1,120.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042308504335622076,44356.72440177915,10,5,10,10_1,10_4,10_1_0 +14661,2,27.0,0.0,5,111,450.0,0.0,0.0,0,67,0.0,0.0,767.3402445174275,450.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,114674,2,1,0,0,1,,0.0,273.0,12,1.0,0.0,2.0,1.0,1.0,1,1,318.75716086647,450.0,24089.814041721733,0,1,2,3,48.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01868009438431671,24089.814041721733,6,3,6,6_0,6_3,6_0_0 +14662,2,49.0,0.0,2,111,596.0,144.0,0.0,85,62,0.0,0.0,1016.2995238497484,740.0,0.0,273.3845829033296,71,1,2,2,1,2,2,2,2,2,15.0,2,,2,114675,1,2,0,1,1,468.0,0.0,448.0,42,2.0,0.0,4.0,5.0,3.0,5,4,142.07983012619,596.0,40585.939656103,6,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018232915297027613,13528.646552034334,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +14664,2,60.0,0.0,2,112,480.0,1350.0,0.0,77,75,0.0,0.0,818.4962608185893,1830.0,0.0,2562.980464718715,50,0,0,0,0,0,0,0,0,0,,1,,2,114677,2,1,2,0,1,,450.0,,41,0.0,2.0,6.0,3.0,2.0,3,3,609.286166286964,480.0,39077.4801678961,5,5,0,1,100.0,8,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046830041039939596,19538.74008394805,5,3,5,5_1,5_1,5_0_1 +14665,2,76.0,0.0,5,111,558.0,,,0,72,0.0,0.0,,678.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,3,114678,2,2,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,116.28187363970636,558.0,23835.420492847043,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028445061424591453,23835.420492847043,6,3,6,6_1,6_2,6_0_0 +14666,2,42.0,0.0,6,111,550.0,800.0,0.0,67,64,0.0,0.0,937.8602988546337,1476.0,174.58424239996165,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,114679,2,2,0,0,1,,362.0,472.0,43,3.0,0.0,5.0,4.0,2.3,3,3,466.135910063145,550.0,54528.89990039482,4,1,2,3,129.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027068215252758345,23708.21734799775,6,3,6,6_0,6_2,6_0_0 +14667,2,78.0,0.0,2,111,266.0,0.0,0.0,0,77,1148.549624778859,0.0,453.5833445369683,1385.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114680,2,1,1,0,1,,109.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1266.87684235217,266.0,40475.707129626746,0,5,0,1,90.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03421805567384962,40475.707129626746,9,5,9,9_1,9_2,9_0_1 +14668,2,54.0,0.0,1,111,471.0,,,0,63,0.0,0.0,,759.0,399.049696914198,,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,114681,1,2,0,0,2,,180.0,490.0,22,1.0,5.0,3.0,2.0,1.5,2,2,25.35016758620517,471.0,36276.0,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02092292424743632,24184.0,7,4,7,7_0,7_2,7_1_0 +14669,0,74.0,0.0,1,112,479.0,0.0,0.0,0,71,0.0,50.32443652638851,816.7910602752173,517.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114682,2,1,2,0,2,,401.0,,21,2.0,3.0,4.0,3.0,2.0,3,3,1818.05958973536,479.0,19438.447735285572,0,5,0,1,80.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026596773931774276,9719.223867642786,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +14670,2,57.0,0.0,1,112,780.0,0.0,0.0,0,62,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114683,1,1,3,0,2,,90.0,210.0,12,1.0,1.0,3.0,1.0,1.0,1,1,216.506134863279,780.0,20980.577965383185,0,1,2,3,70.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03717724084088425,20980.577965383185,5,3,5,5_1,5_0,5_1_0 +14671,1,51.0,158.0,8,111,778.0,,,0,63,0.0,0.0,,820.0,58.19474746665388,,60,0,0,0,0,0,0,0,0,2,4.0,2,2003.0,6,114684,2,1,0,0,2,,914.0,357.0,32,3.0,4.0,3.0,3.0,2.0,3,3,86.00373581526173,778.0,17070.0,0,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04803749267721148,8535.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +14672,1,56.0,240.0,7,111,0.0,,,0,56,0.0,0.0,,88.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,3,90.0,2,,5,114685,2,1,0,0,2,,180.0,540.0,12,1.0,3.0,3.0,1.0,1.0,1,1,104.75971319335117,0.0,8252.176072801878,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010663853900310829,8252.176072801878,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14673,2,74.0,0.0,6,211,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114686,2,1,2,0,1,,53.0,265.0,11,0.0,7.0,1.0,1.0,1.0,1,1,2476.94526615147,1200.0,20626.03496119218,0,5,2,3,30.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05817889876836707,20626.03496119218,5,3,5,5_1,5_1,5_0_0 +14674,2,58.0,0.0,2,111,1200.0,0.0,0.0,0,35,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,114687,2,2,0,1,2,,0.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1045.07706590339,1200.0,77610.484175318,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01546182854998383,77610.484175318,10,5,10,10_0,10_4,10_0_1 +14675,1,56.0,271.0,6,111,600.0,0.0,0.0,0,72,0.0,79.45963662061344,1023.1203260232367,660.0,0.0,0.0,60,2,2,2,1,1,1,2,1,0,,2,,4,114688,2,1,0,0,1,,180.0,337.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1845.8630690429,600.0,5379.9817679396865,0,7,2,3,60.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0.12267699566066616,5379.9817679396865,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14676,2,69.0,0.0,1,111,470.0,1460.0,0.0,0,74,0.0,0.0,801.4442553848687,1930.0,0.0,2771.8159099920917,31,0,0,0,0,0,0,0,0,0,,1,,1,114689,2,1,2,0,1,,210.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,293.626824969585,470.0,40441.54217854934,0,5,0,1,80.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04772320480458073,40441.54217854934,9,5,9,9_1,9_2,9_1_0 +14677,2,46.0,0.0,1,111,660.0,0.0,0.0,63,85,1054.6828510366015,0.0,1125.4323586255605,1768.0,149.64363634282427,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,114690,2,1,3,0,1,,130.0,,42,2.0,1.0,4.0,4.0,2.5,4,4,833.163698284868,660.0,16350.346788419389,4,7,0,1,100.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,0,0,0,0.10813226305708927,6540.138715367755,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +14678,2,41.0,0.0,1,111,1400.0,0.0,0.0,0,43,0.0,0.0,2387.2807607208856,1760.0,498.81212114274757,0.0,31,2,2,2,1,1,2,2,2,0,,1,,1,114691,2,1,1,0,1,,240.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,284.811151069787,1400.0,25476.92070759406,0,1,1,2,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06908213202843569,15923.075442246287,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +14679,2,65.0,0.0,5,112,300.0,2120.0,0.0,77,75,0.0,0.0,511.56016301161833,2420.0,0.0,4024.828581632353,70,0,0,0,0,0,0,0,0,0,,1,,3,114692,2,1,2,0,1,,422.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,824.494478810758,300.0,69457.25763008096,5,5,0,1,180.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034841571386082654,46304.83842005397,10,5,10,10_1,10_1,10_0_0 +14680,2,89.0,0.0,9,221,0.0,,,0,86,0.0,0.0,,1949.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,114693,2,2,0,0,2,,300.0,,11,0.0,9.0,3.0,1.0,1.0,1,1,119.12170874400253,0.0,10841.588898525588,0,5,0,1,32.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17977069765715392,10841.588898525588,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +14681,2,29.0,0.0,5,111,590.0,1350.0,0.0,63,46,0.0,39.72981831030672,1006.0683205895161,1970.0,0.0,2562.980464718715,31,2,2,2,1,1,2,2,2,3,60.0,2,,3,114694,2,2,0,0,1,,0.0,997.0,43,2.0,0.0,3.0,3.0,1.8,2,2,909.21830606015,590.0,48585.4553931211,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.04054711402949862,26991.91966284505,7,4,7,7_0,7_4,7_0_0 +14682,2,59.0,0.0,1,112,0.0,0.0,2000.0,0,43,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,33,0,0,0,0,0,0,0,0,2,55.0,1,,1,114695,2,2,4,0,1,,560.0,,32,1.0,3.0,6.0,2.0,1.5,2,2,604.440376849048,0.0,38627.565494993236,0,1,0,1,160.0,10,2,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05177649625004798,25751.71032999549,7,4,7,7_1,7_1,7_1_0 +14683,2,53.0,0.0,2,111,420.0,800.0,0.0,52,52,0.0,0.0,716.1842282162656,1220.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,114696,2,1,2,0,2,,360.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,1935.89729124022,420.0,31827.812463535003,1,1,1,2,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038331255137240394,15913.906231767502,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +14684,1,32.0,370.0,7,120,324.0,,,0,43,0.0,0.0,,374.0,69.27946126982604,,41,0,0,0,0,0,0,0,0,1,5.0,2,,5,114697,2,1,0,0,2,,240.0,436.0,32,1.0,0.0,3.0,3.0,1.6,1,1,109.45521072748448,324.0,17219.798165137614,0,1,2,3,63.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021719186044653106,10762.373853211007,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14685,1,35.0,300.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,452.0,0.0,0.0,42,1,2,2,1,2,2,2,2,0,,2,,1,114698,2,2,0,1,2,,0.0,375.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1711.9426596906,0.0,10391.603038555673,0,7,2,3,34.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.04349665766898111,10391.603038555673,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +14686,2,41.0,0.0,1,111,570.0,0.0,0.0,0,52,0.0,1059.4618216081792,971.9643097220749,1474.0,144.10127944123818,0.0,71,2,2,1,1,1,2,1,2,0,,1,,1,114699,2,1,3,0,2,,415.0,,22,1.0,4.0,8.0,2.0,1.5,2,2,143.710588191106,570.0,19597.133947599188,0,1,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.07521508012045697,13064.755965066126,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +14687,2,55.0,0.0,7,111,600.0,0.0,0.0,0,37,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,5,114700,2,2,0,0,1,,0.0,600.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2798.51790760497,600.0,43881.0,0,1,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01367334381623026,43881.0,10,5,10,10_0,10_3,10_0_0 +14688,2,75.0,0.0,5,111,480.0,,,0,74,0.0,0.0,,480.0,0.0,,44,0,0,0,0,0,0,0,0,0,,2,,3,114701,2,2,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,134.0016200104699,480.0,33685.891084515504,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014249289080574242,33685.891084515504,9,5,9,9_0,9_2,9_0_0 +14689,2,30.0,0.0,8,111,700.0,0.0,0.0,47,35,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,2000.0,6,114702,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,713.248981509553,700.0,32361.88051645841,1,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021630387011780675,21574.58701097227,6,3,6,6_0,6_4,6_0_0 +14690,2,60.0,0.0,1,111,1200.0,,,52,77,0.0,264.8654554020448,,1640.0,332.541414095165,,31,2,2,1,2,1,2,2,2,0,,1,,1,114703,2,1,0,0,2,,324.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,117.70668258747006,1200.0,26931.0,4,5,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06089636478407783,13465.5,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +14692,2,78.0,0.0,2,111,360.0,900.0,0.0,78,78,0.0,0.0,613.872195613942,1260.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,2,114705,2,1,2,0,1,,222.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,74.4595592569217,360.0,37416.244238711624,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03367521314970405,24944.16282580775,7,4,7,7_1,7_3,7_0_1 +14693,2,62.0,0.0,1,111,453.0,1037.0,0.0,0,63,0.0,423.78472864327165,772.4558461475438,1810.0,0.0,1968.7486977135611,71,0,0,0,0,0,0,0,0,0,,1,,1,114706,2,1,1,0,1,,413.0,305.0,12,1.0,3.0,4.0,1.0,1.0,1,1,245.657406742999,453.0,26818.276841935447,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0674912862846476,26818.276841935447,7,4,7,7_1,7_3,7_1_0 +14694,2,34.0,0.0,1,111,600.0,0.0,0.0,65,46,580.0755680701309,0.0,1023.1203260232367,1210.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,114707,2,2,3,0,1,,242.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,329.758269082794,600.0,52021.391615126675,1,1,1,2,130.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023259662274166433,21675.579839636117,6,3,6,6_1,6_2,6_1_0 +14695,2,56.0,0.0,7,111,1960.0,,,0,52,0.0,0.0,,2056.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,114708,1,3,0,0,2,,510.0,417.0,32,1.0,0.0,4.0,2.0,1.5,2,1,28.879753720852236,1960.0,34670.33636392596,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0593014148584737,23113.557575950643,6,3,6,6_1,6_2,6_0_0 +14696,2,38.0,0.0,9,211,900.0,0.0,0.0,46,37,0.0,0.0,1534.680489034855,900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,114709,2,1,1,0,1,,320.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1256.81487917859,900.0,47604.9677492732,1,1,1,2,110.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018905589953135522,26447.204305151776,7,4,7,7_1,7_1,7_0_0 +14697,2,60.0,0.0,6,211,420.0,0.0,0.0,22,78,1898.4291318658827,0.0,716.1842282162656,2280.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114710,2,2,2,0,1,,400.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1541.97046253244,420.0,29364.332590512182,1,5,0,1,80.0,2,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07764521781559863,19576.22172700812,5,3,5,5_1,5_1,5_0_0 +14699,2,88.0,0.0,2,111,1800.0,0.0,0.0,0,86,2425.7705573841836,0.0,3069.36097806971,4100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,114712,2,1,2,0,1,,520.0,,11,0.0,2.0,11.0,1.0,1.0,1,1,1878.79255699701,1800.0,41314.86620118541,0,6,0,1,500.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09923788643135827,41314.86620118541,9,5,9,9_1,9_2,9_0_1 +14700,2,27.0,0.0,5,211,0.0,0.0,0.0,85,52,0.0,0.0,0.0,4621.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,114713,2,2,5,0,1,,129.0,650.0,42,1.0,0.0,5.0,3.0,1.8,2,2,2593.29156807647,0.0,11940.289830595098,6,1,2,3,100.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3870090312346875,6633.49435033061,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +14701,2,36.0,0.0,1,111,0.0,840.0,0.0,38,37,0.0,0.0,0.0,3078.0,0.0,1594.7434002694229,10,0,0,0,0,0,0,0,0,2,45.0,1,,1,114714,1,2,2,0,1,,390.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,672.188459056035,0.0,65694.36402247641,1,1,1,2,110.0,9,7,3,0,1,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04685333431261935,36496.86890137578,9,5,9,9_1,9_3,9_1_0 +14702,2,45.0,0.0,8,111,953.0,,,43,31,0.0,0.0,,995.0,58.19474746665388,,12,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,114715,2,1,0,0,1,,147.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,139.50178247001728,953.0,365490.2434011328,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002722370892149829,158908.80147875342,10,5,10,10_1,10_2,10_0_0 +14703,1,48.0,127.0,2,111,300.0,1140.0,0.0,0,46,0.0,0.0,511.56016301161833,1440.0,0.0,2164.2946146513596,60,1,2,2,2,1,2,2,2,0,,2,,2,114716,1,2,0,1,1,481.0,294.0,254.0,32,2.0,0.0,3.0,2.0,1.5,2,2,303.799674065322,300.0,30040.00204525273,0,4,2,3,60.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0479360819560119,20026.668030168486,5,3,5,5_0,5_3,5_0_1 +14704,2,56.0,0.0,9,300,1122.0,,,0,45,0.0,0.0,,1386.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,114717,2,1,0,0,2,,1443.0,,12,1.0,4.0,6.0,1.0,1.0,1,1,131.58444211950973,1122.0,34570.20208036382,0,1,0,1,210.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040092331447123944,34570.20208036382,9,5,9,9_1,9_1,9_0_0 +14705,2,57.0,0.0,1,112,963.0,1603.0,0.0,38,46,0.0,86.08127300566456,1642.108123267295,2631.0,0.0,3043.301988847482,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,114718,2,2,2,0,1,,903.0,,43,2.0,0.0,10.0,4.0,2.5,4,4,848.924070955947,963.0,126505.53142352047,1,1,0,1,190.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020797509566532937,50602.21256940819,10,5,10,10_1,10_0,10_1_0 +14706,2,62.0,0.0,7,111,2508.0,,,85,45,0.0,0.0,,2678.0,235.55016831740858,,60,0,0,0,0,0,0,0,0,0,,1,,5,114719,2,3,0,0,2,,480.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,117.09789924010468,2508.0,76083.72890629101,6,1,1,2,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03519806453359266,38041.86445314551,9,5,9,9_1,9_2,9_0_0 +14707,2,29.0,0.0,7,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,739.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,5,114720,2,1,2,0,2,,1168.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,457.65078512,0.0,83193.530747215,1,1,1,2,115.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008882902232451997,46218.628192897224,10,5,10,10_1,10_4,10_0_0 +14708,2,47.0,0.0,6,112,4000.0,0.0,0.0,54,48,0.0,331.081819252556,6820.802173488245,4400.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,114721,2,1,2,0,1,,1200.0,,43,3.0,0.0,6.0,5.0,2.8,5,4,471.759123774436,4000.0,87879.00175406631,1,1,1,2,150.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05006884366203448,31385.357769309398,8,4,8,8_1,8_0,8_0_0 +14709,2,50.0,0.0,7,111,540.0,,,78,68,0.0,0.0,,792.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,114722,2,1,0,0,2,,600.0,,42,2.0,0.0,5.0,4.0,2.3,3,3,97.63150140446767,540.0,24454.410740559248,7,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03238679551114335,10632.352495895326,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +14710,1,53.0,163.0,2,111,220.0,794.0,0.0,0,68,0.0,0.0,375.14411954185346,1014.0,0.0,1507.4122140641925,71,0,0,0,0,0,0,0,0,1,15.0,1,,2,114723,1,2,2,0,1,,280.0,403.0,22,2.0,1.0,3.0,2.0,1.5,2,2,331.276079757885,220.0,18153.230724469413,0,1,2,3,107.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05585782582673793,12102.153816312943,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +14711,2,67.0,0.0,5,111,1202.0,0.0,0.0,77,75,0.0,238.3789098618403,2049.6510531332174,1412.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,114724,2,2,3,0,1,,140.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1489.78543348941,1202.0,40266.54769154005,6,5,0,1,105.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03506632877535363,26844.365127693367,7,4,7,7_1,7_3,7_0_0 +14712,1,53.0,307.0,2,111,140.0,0.0,0.0,0,54,0.0,0.0,238.72807607208856,166.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,2,114725,1,1,0,1,2,300.0,0.0,403.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1285.96669442676,140.0,5354.5201113270605,0,4,2,3,16.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03100184452549543,5354.5201113270605,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +14713,2,75.0,0.0,5,112,663.0,0.0,0.0,77,78,0.0,0.0,1130.5479602556766,663.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,114726,2,1,2,0,1,,329.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,3937.23030001126,663.0,16792.0,5,5,0,1,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03948308718437351,8396.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +14714,2,32.0,0.0,1,112,450.0,0.0,0.0,0,62,0.0,0.0,767.3402445174275,525.0,103.91919190473907,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,114727,2,1,1,0,1,,160.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,190.607955152904,450.0,18854.092681924918,0,1,1,2,53.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02784541313426915,18854.092681924918,5,3,5,5_1,5_0,5_1_0 +14715,2,67.0,0.0,2,111,440.0,79.0,0.0,77,75,2847.643697798824,0.0,750.2882390837069,3219.0,0.0,149.98181978724332,50,0,0,0,0,0,0,0,0,0,,1,,2,114728,2,1,1,0,1,,231.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,621.783985036665,440.0,37572.59490149629,5,5,0,1,80.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08567414650064019,25048.396600997527,7,4,7,7_1,7_4,7_0_1 +14716,0,86.0,0.0,1,112,600.0,0.0,0.0,0,77,2109.365702073203,0.0,1023.1203260232367,2780.0,249.40606057137379,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,114729,1,2,3,0,2,,320.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1972.79127291863,600.0,13575.645057163449,0,5,0,1,80.0,6,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.204778482959311,13575.645057163449,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +14717,2,34.0,0.0,5,111,450.0,215.0,0.0,38,38,0.0,0.0,767.3402445174275,665.0,0.0,408.17837030705465,10,0,0,0,0,0,0,0,0,3,45.0,2,,3,114730,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,914.124377254117,450.0,88378.63182639274,1,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007524443253503833,49099.23990355152,10,5,10,10_0,10_4,10_0_0 +14718,1,26.0,249.0,2,111,200.0,0.0,0.0,0,64,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114731,2,1,0,1,1,780.0,0.0,329.0,22,1.0,3.0,3.0,2.0,1.5,2,2,1550.63631005454,200.0,18380.523239018097,0,4,2,3,65.0,7,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01088108305727885,12253.682159345399,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +14719,2,32.0,0.0,1,111,480.0,0.0,0.0,56,63,0.0,0.0,818.4962608185893,690.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,114732,1,2,0,0,2,,0.0,606.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1902.79883636643,480.0,24143.85029104989,1,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.028578706034131703,11497.071567166613,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +14720,2,65.0,0.0,9,400,1300.0,0.0,0.0,77,77,0.0,0.0,2216.7607063836795,1500.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,114733,2,1,1,0,1,,422.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2253.21670667291,1300.0,32905.90395310197,6,5,0,1,137.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045584524957522035,21937.269302067984,6,3,6,6_1,6_1,6_0_0 +14721,2,66.0,0.0,2,111,360.0,360.0,0.0,77,74,0.0,0.0,613.872195613942,720.0,0.0,683.461457258324,70,0,0,0,0,0,0,0,0,0,,2,,2,114734,2,1,0,0,1,,52.0,396.0,41,0.0,3.0,4.0,2.0,1.5,2,2,284.609721818139,360.0,26308.30110795757,5,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02736778772013594,17538.867405305045,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +14722,2,32.0,0.0,8,112,1430.0,0.0,0.0,63,63,0.0,0.0,2438.4367770220474,1430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,114735,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,936.37348558822,1430.0,44842.52628633268,1,1,1,2,104.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03188937195172793,24912.514603518153,7,4,7,7_1,7_0,7_0_0 +14723,0,60.0,0.0,2,112,462.0,,,0,71,0.0,0.0,,594.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,0,,1,,2,114736,2,3,0,0,2,,180.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,103.14649166847398,462.0,10253.0,0,7,5,0,130.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05793426314249488,10253.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +14724,2,52.0,0.0,7,111,360.0,,,0,67,0.0,33.1081819252556,,431.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,0,,1,,5,114737,2,2,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,91.40656112657526,360.0,3848.5928558719406,0,4,0,1,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11198898302334251,3848.5928558719406,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14725,2,49.0,0.0,1,111,320.0,0.0,0.0,0,37,0.0,0.0,545.6641738790596,548.0,0.0,0.0,50,2,2,1,2,1,2,2,2,3,30.0,2,,1,114738,2,2,0,1,2,,151.0,,22,1.0,0.0,3.0,3.0,2.0,3,3,547.650456014192,320.0,63697.44230029115,0,1,0,1,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.008603171182549902,31848.721150145575,8,4,8,8_0,8_4,8_1_0 +14726,1,44.0,434.0,2,111,600.0,0.0,0.0,0,54,0.0,0.0,1023.1203260232367,687.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,114739,2,1,0,1,2,829.0,0.0,532.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1683.86533247753,600.0,12635.235743860547,0,4,2,3,72.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05437175957194253,7897.022339912842,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14727,2,84.0,0.0,2,111,66.0,539.0,0.0,0,77,0.0,0.0,112.54323586255603,605.0,0.0,1023.2936818395463,70,0,0,0,0,0,0,0,0,0,,2,,2,114740,2,1,0,0,1,,120.0,280.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1241.03492761896,66.0,23775.0,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02544689800210305,23775.0,6,3,6,6_0,6_4,6_0_1 +14728,2,31.0,0.0,6,111,580.0,0.0,0.0,37,38,0.0,0.0,989.0163151557955,580.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,4,114741,2,1,0,0,1,,0.0,850.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1172.51474346979,580.0,74936.06357565177,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007739931513942689,49957.37571710118,10,5,10,10_0,10_4,10_0_0 +14729,2,43.0,0.0,5,111,0.0,0.0,0.0,84,54,0.0,0.0,0.0,264.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,3,114742,2,1,0,1,1,,0.0,300.0,42,1.0,0.0,3.0,5.0,2.4,2,2,334.360362554979,0.0,9121.515833373956,3,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028942557884301678,3800.6315972391485,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +14730,2,83.0,0.0,2,111,240.0,1500.0,0.0,0,75,0.0,0.0,409.2481304092947,1740.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,,2,114743,2,2,2,0,1,,70.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1995.33487447114,240.0,23319.398140284717,0,5,0,1,120.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07461599092448772,23319.398140284717,6,3,6,6_1,6_2,6_0_1 +14731,1,59.0,253.0,7,111,360.0,,,0,56,0.0,0.0,,444.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,2,,5,114744,2,2,0,0,2,,250.0,358.0,12,1.0,2.0,3.0,1.0,1.0,1,1,111.65522910919334,360.0,6573.323218900845,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06754574287832499,6573.323218900845,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14733,0,27.0,0.0,2,111,150.0,160.0,0.0,46,47,0.0,0.0,255.78008150580916,310.0,0.0,303.7606476703662,43,0,0,0,0,0,0,0,0,0,,1,,2,114746,2,3,2,0,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,547.549539831644,150.0,38124.0,1,1,5,0,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008131360822578954,25416.0,7,4,7,7_1,7_4,7_0_1 +14734,1,55.0,286.0,1,111,1300.0,0.0,0.0,85,63,0.0,0.0,2216.7607063836795,1720.0,581.9474746665388,0.0,71,2,2,1,1,2,2,2,2,0,,2,,1,114747,1,3,0,0,1,,1300.0,359.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1921.02013285616,1300.0,20997.58708566219,6,1,2,3,64.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.08191417389927007,8748.994619025914,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +14735,2,67.0,0.0,2,111,260.0,0.0,0.0,0,52,0.0,0.0,443.3521412767359,260.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,114748,2,1,0,1,1,912.0,0.0,389.0,11,0.0,2.0,3.0,1.0,1.0,1,1,263.807968811051,260.0,20769.008453778333,0,5,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01251865251914327,20769.008453778333,5,3,5,5_0,5_4,5_0_1 +14736,2,30.0,0.0,7,111,308.0,0.0,0.0,46,52,0.0,0.0,525.2017673585948,308.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,10.0,2,,5,114749,1,1,0,1,1,624.0,0.0,546.0,43,2.0,0.0,3.0,3.0,1.8,2,2,748.800477091824,308.0,43085.91394840878,1,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007148507987292559,23936.6188602271,6,3,6,6_0,6_4,6_0_0 +14737,1,21.0,357.0,8,211,0.0,,,0,81,0.0,0.0,,575.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,2003.0,6,114750,1,2,0,0,2,,746.0,750.0,32,1.0,0.0,3.0,2.0,1.3,1,1,75.35096211348251,0.0,3824.263530972279,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1503557470198222,2941.7411776709837,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +14738,2,58.0,0.0,6,120,1800.0,0.0,0.0,56,63,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,114751,2,1,2,0,1,,300.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,189.347466973865,1800.0,41804.42051458014,1,1,0,1,90.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04305764744118899,27869.613676386758,7,4,7,7_1,7_0,7_0_0 +14739,2,77.0,0.0,2,111,620.0,1010.0,0.0,77,74,0.0,0.0,1057.224336890678,1630.0,0.0,1917.4890884191868,30,2,2,2,2,2,2,2,1,0,,1,,2,114752,2,3,1,0,1,,240.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,897.753035363016,620.0,44842.538541312424,5,5,0,1,100.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.036349414039045035,29895.02569420828,8,4,8,8_1,8_1,8_0_1 +14740,2,50.0,0.0,8,111,900.0,,,21,21,0.0,0.0,,1188.0,399.049696914198,,71,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,114753,2,1,0,0,1,,960.0,,43,2.0,0.0,7.0,4.0,2.5,4,4,103.09113960617684,900.0,52223.837902711515,1,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022748232372602355,20889.535161084605,5,3,5,5_1,5_2,5_0_0 +14741,2,55.0,0.0,1,400,3800.0,0.0,0.0,64,56,0.0,662.163638505112,6479.762064813833,4374.0,102.53360267934255,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,114754,2,1,3,0,1,,245.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1072.58367482232,3800.0,27459.42453305063,1,1,0,1,180.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15928957268333788,18306.283022033753,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14742,2,76.0,0.0,2,111,150.0,0.0,0.0,0,78,0.0,0.0,255.78008150580916,330.0,249.40606057137379,0.0,71,2,1,2,1,1,2,2,2,0,,8,,2,114755,2,2,0,1,1,,0.0,422.0,11,0.0,6.0,3.0,1.0,1.0,1,1,442.716388665898,150.0,13738.237615556323,0,5,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024020548285344008,13738.237615556323,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +14743,2,76.0,0.0,1,111,378.0,0.0,0.0,0,78,0.0,0.0,644.5658053946391,378.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,1,114756,2,2,0,1,1,745.0,0.0,244.0,11,0.0,3.0,3.0,1.0,1.0,1,1,684.599330498789,378.0,19997.64360880511,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.018902227052069467,19997.64360880511,5,3,5,5_0,5_4,5_1_0 +14744,2,50.0,0.0,8,111,0.0,,,43,44,0.0,0.0,,742.0,138.5589225396521,,10,0,0,0,0,0,0,0,0,0,,1,2001.0,6,114757,2,1,0,0,2,,0.0,800.0,43,2.0,2.0,3.0,2.0,1.5,2,2,163.84809454419593,0.0,28871.76010609806,1,1,3,4,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025699853326340182,19247.84007073204,5,3,5,5_1,5_2,5_0_0 +14745,2,45.0,0.0,1,112,630.0,0.0,0.0,63,63,0.0,437.0280014133739,1074.2763423243985,2260.0,1801.2659930154773,0.0,50,2,2,2,2,2,2,1,2,2,20.0,1,,1,114758,1,2,3,0,1,,300.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,662.298715823876,630.0,39268.43642701114,1,1,1,2,100.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,0.05755258435615835,15707.374570804455,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14746,2,38.0,0.0,6,111,0.0,0.0,960.0,0,34,0.0,0.0,605.105558798154,960.0,0.0,1148.8628616620936,10,0,0,0,0,0,0,0,0,2,40.0,1,,4,114759,2,1,1,0,1,,216.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,534.264188885736,0.0,71000.7050125282,0,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01352099250043512,71000.7050125282,10,5,10,10_1,10_3,10_0_0 +14747,2,55.0,0.0,6,111,0.0,,,0,69,0.0,0.0,,434.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,4,114760,2,2,0,0,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,110.4224002475225,0.0,5456.656431320638,0,4,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07953588529211503,5456.656431320638,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14748,2,64.0,0.0,2,111,387.0,0.0,0.0,38,38,0.0,0.0,659.9126102849876,484.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,114761,1,2,0,1,1,1048.0,0.0,1406.0,43,2.0,0.0,3.0,4.0,2.3,3,3,1214.30245806441,387.0,147755.21074122514,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003275688197877947,64241.39597444572,10,5,10,10_0,10_4,10_0_1 +14749,2,65.0,0.0,2,111,504.0,0.0,0.0,0,77,0.0,463.51454695357836,859.4210738595189,904.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,114762,2,1,2,0,1,,204.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2366.74747124776,504.0,12194.579551106788,0,5,0,1,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07413129712356113,12194.579551106788,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +14750,2,45.0,0.0,9,111,1212.0,2164.0,0.0,54,48,0.0,0.0,2066.703058566938,3376.0,0.0,4108.3627597417035,50,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,114763,2,1,1,0,1,,904.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,414.388280680808,1212.0,94426.3556181988,1,1,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035752730028578414,52459.08645455488,10,5,10,10_1,10_4,10_0_0 +14751,2,34.0,0.0,2,111,550.0,0.0,0.0,84,47,0.0,0.0,937.8602988546337,550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,114764,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,809.837360100113,550.0,94127.5690562228,3,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005843134009670245,62751.71270414853,10,5,10,10_0,10_4,10_0_1 +14752,2,71.0,0.0,2,111,400.0,,,0,77,0.0,0.0,,440.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,1,,2,114765,1,1,0,0,2,,400.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,113.08364862634069,400.0,14461.164926931106,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03042631781210002,14461.164926931106,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +14753,0,58.0,0.0,5,400,1000.0,,,0,55,0.0,0.0,,1300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,1,6.0,1,,3,114766,2,2,0,0,2,,400.0,,32,2.0,0.0,3.0,3.0,2.0,3,2,34.9597574849246,1000.0,18077.02049026275,0,1,5,0,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07191450608247359,9038.510245131374,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +14754,2,72.0,0.0,8,111,370.0,928.0,0.0,0,77,0.0,0.0,630.9242010476627,1298.0,0.0,1761.8117564881243,41,0,0,0,0,0,0,0,0,0,,2,1999.0,6,114767,2,1,0,1,1,,220.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1599.06499840596,370.0,42262.86803964181,0,5,0,1,81.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030712539404152583,42262.86803964181,9,5,9,9_0,9_2,9_0_0 +14755,2,66.0,0.0,2,111,1238.0,161.0,0.0,54,74,0.0,0.0,2111.038272694612,1399.0,0.0,305.659151718306,12,2,1,2,2,1,2,2,2,0,,2,,2,114768,2,1,0,1,1,,0.0,,42,1.0,2.0,5.0,6.0,3.5,6,6,209.168756026633,1238.0,93831.96071100008,1,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014909631956949962,26809.13163171431,7,4,7,7_0,7_4,7_0_1 +14756,2,53.0,0.0,2,111,480.0,1600.0,0.0,0,48,0.0,0.0,818.4962608185893,2080.0,0.0,3037.6064767036623,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,114769,2,2,3,0,1,,240.0,530.0,12,1.0,2.0,3.0,1.0,1.0,1,1,344.035114667711,480.0,31605.55843426774,0,1,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06581120863046667,31605.55843426774,8,4,8,8_1,8_3,8_0_1 +14757,2,73.0,0.0,2,111,490.0,1350.0,0.0,0,75,0.0,0.0,835.54826625231,1840.0,0.0,2562.980464718715,41,0,0,0,0,0,0,0,0,0,,1,,2,114770,1,3,1,0,2,,351.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,288.893190318268,490.0,34743.882451138896,0,5,0,1,130.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05295896342579542,34743.882451138896,9,5,9,9_1,9_3,9_0_1 +14758,2,68.0,0.0,2,111,700.0,1100.0,0.0,74,78,0.0,0.0,1193.6403803604428,1800.0,0.0,2088.354452733768,70,0,0,0,0,0,0,0,0,0,,1,,2,114771,2,1,3,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,348.760214976272,700.0,19975.06460301506,5,5,0,1,98.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09011234936022715,13316.709735343373,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +14759,2,54.0,0.0,2,111,600.0,600.0,0.0,77,52,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,114772,2,1,0,1,1,708.0,0.0,300.0,42,1.0,3.0,3.0,2.0,1.5,2,2,627.200021669564,600.0,34478.0,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03480480306282267,22985.333333333332,6,3,6,6_0,6_4,6_0_1 +14760,1,49.0,236.0,5,111,330.0,720.0,0.0,0,56,0.0,0.0,562.7161793127802,1050.0,0.0,1366.922914516648,71,0,0,0,0,0,0,0,0,0,,2,,3,114773,1,1,0,0,1,,0.0,291.0,32,1.0,1.0,3.0,2.0,1.3,1,1,263.218740345194,330.0,13971.546950460002,0,1,2,3,60.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07515273746873316,10747.343808046155,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14761,2,39.0,0.0,9,111,2100.0,0.0,0.0,31,22,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,8.0,1,2005.0,6,114774,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,929.183398131263,2100.0,74336.41692130125,1,1,1,2,200.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028249949176636206,41298.00940072291,9,5,9,9_1,9_2,9_0_0 +14762,2,42.0,0.0,2,120,400.0,,,85,52,0.0,0.0,,652.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,114775,1,2,0,0,2,,480.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,157.19174426696068,400.0,16218.882220989715,6,4,0,1,73.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04020005763135836,7723.27724809034,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +14763,2,53.0,0.0,1,211,1400.0,0.0,0.0,85,21,0.0,0.0,2387.2807607208856,1550.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,1,114776,2,1,2,0,1,,300.0,750.0,42,1.0,1.0,4.0,3.0,2.0,3,3,1173.49759659288,1400.0,21334.888010133916,6,1,2,3,100.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07265095552710478,10667.444005066958,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +14765,2,67.0,0.0,9,112,219.0,1335.0,0.0,78,78,0.0,0.0,373.43891899848137,1554.0,0.0,2534.5029039996184,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,114778,2,1,1,0,1,,180.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,921.460891084694,219.0,39751.82891478024,5,5,1,2,100.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03909254095783761,26501.21927652016,7,4,7,7_1,7_1,7_0_0 +14766,2,89.0,0.0,1,120,336.0,0.0,0.0,0,77,2109.365702073203,0.0,572.9473825730125,2436.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114779,1,1,2,0,1,,215.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1145.41395153261,336.0,22129.452530457234,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11007954203328264,22129.452530457234,6,3,6,6_1,6_0,6_1_0 +14767,2,77.0,0.0,1,111,570.0,1975.0,0.0,72,72,0.0,0.0,971.9643097220749,2545.0,0.0,3749.5454946810833,71,0,0,0,0,0,0,0,0,0,,1,,1,114780,2,2,1,0,2,,587.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,1619.40563469722,570.0,78345.39935550198,5,5,0,1,150.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03248435799595259,52230.26623700132,10,5,10,10_1,10_2,10_1_0 +14768,2,47.0,0.0,2,221,210.0,1824.0,0.0,52,38,0.0,0.0,358.0921141081328,2034.0,0.0,3462.871383442175,31,0,0,0,0,0,0,0,0,2,60.0,1,,2,114781,1,2,2,0,1,,211.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1839.22844955158,210.0,48622.225111243155,1,1,0,1,110.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04183272146320733,23153.440529163407,6,3,6,6_1,6_1,6_0_1 +14769,2,42.0,0.0,9,111,0.0,0.0,1300.0,52,63,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,50,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,114782,1,3,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,327.596309333024,0.0,39969.54101171592,1,1,1,2,79.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03252476678726289,19033.11476748377,5,3,5,5_0,5_3,5_0_0 +14770,1,27.0,300.0,1,111,620.0,110.0,0.0,0,85,0.0,0.0,1057.224336890678,730.0,0.0,208.8354452733768,50,0,0,0,0,0,0,0,0,0,,2,,1,114783,2,2,0,0,1,,0.0,535.0,31,0.0,0.0,2.0,2.0,1.3,1,1,1713.9550173155,620.0,9820.331012718329,0,6,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07433557983479128,7554.100779014098,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +14771,2,53.0,0.0,6,111,262.0,626.0,0.0,62,46,0.0,0.0,446.76254236348,888.0,0.0,1188.463534010308,50,0,0,0,0,0,0,0,0,3,60.0,1,,4,114784,1,1,2,0,1,,270.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,535.950870601619,262.0,72022.24259827276,1,2,1,2,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012329524435292939,48014.828398848505,10,5,10,10_1,10_4,10_0_0 +14772,0,48.0,0.0,7,112,0.0,,,68,62,0.0,0.0,,300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,1,1.0,1,,5,114785,2,3,0,0,2,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,56.42754773759658,0.0,34822.0,1,1,5,0,70.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008615243237034059,23214.666666666668,6,3,6,6_1,6_0,6_0_0 +14773,1,50.0,329.0,1,111,500.0,1200.0,0.0,85,68,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,114786,2,2,5,0,1,,700.0,431.0,42,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,199.911615633135,500.0,21776.128441713616,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07806713689029944,8375.434016043699,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +14774,1,39.0,66.0,9,111,500.0,450.0,0.0,0,63,0.0,0.0,852.6002716860306,950.0,0.0,854.326821572905,71,0,0,0,0,0,0,0,0,2,18.0,2,2004.0,6,114787,2,2,0,0,1,,250.0,400.0,32,1.0,0.0,3.0,2.0,1.3,1,1,366.840707963617,500.0,14298.744957001487,0,1,2,3,67.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06643939750354282,10999.034582308836,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +14775,0,61.0,0.0,2,111,750.0,,,0,86,0.0,0.0,,990.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,114788,1,2,0,0,2,,1080.0,,21,2.0,0.0,4.0,5.0,2.8,4,4,149.86088046158596,750.0,47026.92359663025,0,7,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021051770438816016,16795.329855939377,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +14776,2,49.0,0.0,6,120,180.0,0.0,0.0,46,37,0.0,0.0,306.936097806971,270.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,4,114789,2,2,3,0,2,,800.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,2450.58430556879,180.0,99642.0,1,1,1,2,120.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002709700728608418,43322.608695652176,10,5,10,10_1,10_1,10_0_0 +14777,0,36.0,0.0,2,112,600.0,0.0,0.0,67,52,0.0,0.0,1023.1203260232367,696.0,133.01656563806603,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,114790,2,2,4,0,1,,220.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2114.58983800955,600.0,45004.11746017497,1,1,5,0,90.0,6,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015465251609831124,25002.287477874983,7,4,7,7_1,7_0,7_0_1 +14778,2,41.0,0.0,6,111,471.0,,,55,42,0.0,0.0,,537.0,91.44888887617039,,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,114791,2,1,0,0,2,,227.0,917.0,43,2.0,0.0,4.0,4.0,2.1,2,2,179.53771165082145,471.0,53954.19883755948,1,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009952886180679877,25692.475636933086,7,4,7,7_1,7_2,7_0_0 +14779,2,81.0,0.0,1,400,496.0,0.0,0.0,0,72,761.4810184484263,0.0,845.7794695125424,1248.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114792,2,1,3,0,1,,279.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,2369.73370100817,496.0,14080.37438434517,0,5,0,1,70.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08863400687609203,14080.37438434517,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +14780,2,72.0,0.0,1,112,1500.0,570.0,0.0,0,72,0.0,0.0,2557.8008150580918,2070.0,0.0,1082.1473073256798,71,2,2,2,2,1,2,2,2,0,,1,,1,114793,1,3,3,0,2,,400.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,277.262666584919,1500.0,14464.3509013347,0,5,0,1,150.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.14311046614673809,14464.3509013347,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14781,2,50.0,0.0,2,111,254.0,200.0,0.0,0,34,0.0,0.0,433.12093801650354,454.0,0.0,379.7008095879578,20,0,0,0,0,0,0,0,0,3,40.0,2,,2,114794,2,1,0,1,1,376.0,0.0,305.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1169.58702791518,254.0,28979.481086999986,0,1,2,3,41.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015666257053983675,28979.481086999986,8,4,8,8_0,8_4,8_0_1 +14782,1,49.0,413.0,7,111,500.0,,,52,85,0.0,0.0,,620.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,5,114795,2,3,0,0,2,,200.0,476.0,42,1.0,0.0,4.0,4.0,2.3,3,2,112.88330941538094,500.0,15404.957520461427,4,7,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.040246784139228775,6697.807617591925,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14783,2,53.0,0.0,1,111,300.0,0.0,0.0,0,46,1687.4925616585624,0.0,511.56016301161833,1900.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,114796,2,1,2,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,424.629833367879,300.0,60789.18509062333,0,1,0,1,180.0,4,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03125555963889822,60789.18509062333,10,5,10,10_1,10_2,10_1_0 +14784,2,38.0,0.0,1,111,1080.0,390.0,0.0,54,56,0.0,0.0,1841.6165868418261,1470.0,0.0,740.4165786965177,50,0,0,0,0,0,0,0,0,1,8.0,2,,1,114797,2,3,0,0,1,,0.0,643.0,43,2.0,0.0,3.0,4.0,2.1,2,2,930.016653732865,1080.0,38323.959622008326,1,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.038357205635813844,18249.504581908725,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +14785,2,74.0,0.0,5,111,280.0,0.0,0.0,0,78,0.0,0.0,477.4561521441771,280.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,3,114798,1,2,0,1,1,493.0,220.0,337.0,11,0.0,1.0,3.0,1.0,1.0,1,1,668.079373606166,280.0,22436.931825140844,0,5,2,3,67.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.012479424646031894,22436.931825140844,6,3,6,6_0,6_2,6_0_0 +14786,2,27.0,0.0,2,211,720.0,,,56,63,0.0,0.0,,840.0,166.2707070475825,,71,2,2,2,2,1,2,2,2,2,10.0,1,,2,114799,2,2,0,0,2,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,98.54700218177088,720.0,22441.16284242494,1,4,0,1,84.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.037431215391921804,14960.775228283293,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +14787,2,54.0,0.0,7,111,320.0,,,63,56,0.0,0.0,,560.0,332.541414095165,,70,0,0,0,0,0,0,0,0,0,,1,,5,114800,2,1,0,0,1,,300.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,116.2461664436312,320.0,21755.168600652443,4,1,0,1,166.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025741009425374228,14503.445733768296,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14788,2,54.0,0.0,2,111,960.0,0.0,0.0,56,55,0.0,0.0,1636.9925216371787,1212.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,75.0,2,,2,114801,2,1,0,1,1,71.0,0.0,410.0,43,2.0,0.0,4.0,4.0,2.5,4,4,884.777915559321,960.0,20041.354351240207,4,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060474954873745775,8016.541740496083,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +14789,1,72.0,60.0,7,111,420.0,,,78,77,0.0,0.0,,684.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,114802,2,1,0,0,2,,240.0,600.0,41,0.0,0.0,3.0,2.0,1.5,2,2,100.65151839952688,420.0,10133.67372881356,5,5,2,3,52.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0674977326391662,6755.782485875706,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +14790,2,69.0,0.0,1,112,702.0,0.0,0.0,0,71,0.0,0.0,1197.0507814471869,856.0,213.38074071106422,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,114803,1,3,3,0,2,,202.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1824.74197609128,702.0,25025.116472312497,0,5,0,1,75.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.034205635004619005,25025.116472312497,7,4,7,7_1,7_0,7_1_0 +14791,2,77.0,0.0,1,221,700.0,0.0,0.0,71,78,0.0,0.0,1193.6403803604428,898.0,274.3466666285112,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114804,2,1,1,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2879.83754316718,700.0,19454.390121735887,5,5,0,1,116.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04615924705841525,12969.593414490591,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +14792,2,55.0,0.0,7,111,1015.0,0.0,0.0,77,52,0.0,463.51454695357836,1730.7785515226421,1365.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,1,,5,114805,2,2,2,0,1,,340.0,850.0,42,1.0,4.0,4.0,2.0,1.5,2,2,390.611233595169,1015.0,44860.96110808564,5,1,2,3,97.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030427346322590833,29907.307405390427,8,4,8,8_1,8_3,8_0_0 +14793,1,70.0,206.0,2,111,230.0,400.0,0.0,0,77,0.0,0.0,392.1961249755741,667.0,51.266801339671275,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,2,,2,114806,2,2,0,0,1,,200.0,338.0,11,0.0,2.0,4.0,1.0,1.0,1,1,574.859685103823,230.0,9376.601746157026,0,5,2,3,82.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07113451312714311,9376.601746157026,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14794,2,59.0,0.0,7,112,1400.0,0.0,0.0,0,78,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,114807,2,1,4,0,1,,210.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,754.661417890621,1400.0,36627.814827465154,0,5,0,1,108.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03822231838275589,24418.543218310104,7,4,7,7_1,7_2,7_0_0 +14795,2,87.0,0.0,7,111,260.0,,,72,77,0.0,0.0,,330.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,0,,1,,5,114808,1,1,0,0,1,,150.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,112.31948423948131,260.0,48804.667733339986,5,5,0,1,135.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0067616483284562295,32536.44515555999,8,4,8,8_1,8_2,8_0_0 +14796,2,27.0,0.0,7,111,300.0,,,0,63,0.0,0.0,,552.0,349.1684847999233,,43,0,0,0,0,0,0,0,0,0,,1,,5,114809,2,1,0,0,1,,180.0,,22,3.0,0.0,5.0,5.0,3.0,5,4,118.1114152408067,300.0,38965.42058368186,0,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014166406822544844,12988.473527893953,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14797,2,84.0,0.0,1,111,270.0,117.0,0.0,0,78,0.0,0.0,460.40414671045653,387.0,0.0,222.12497360895532,71,0,0,0,0,0,0,0,0,0,,2,,1,114810,2,2,0,1,1,378.0,0.0,369.0,11,0.0,6.0,4.0,1.0,1.0,1,1,2428.35508460272,270.0,16527.423039835823,0,5,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023415628623241456,16527.423039835823,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +14798,1,41.0,400.0,7,112,280.0,,,0,81,0.0,0.0,,464.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,2,,5,114811,2,1,0,0,2,,240.0,600.0,32,2.0,0.0,4.0,4.0,2.3,3,3,78.95591742687472,280.0,10219.9,0,4,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04540161841113905,4443.434782608696,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +14799,2,58.0,0.0,1,111,564.0,1162.0,0.0,34,74,0.0,0.0,961.7331064618425,1726.0,0.0,2206.0617037060347,12,0,0,0,0,0,0,0,0,0,,1,,1,114812,2,1,2,0,1,,412.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,884.304067065041,564.0,67470.25275699933,1,5,0,1,149.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025581644198315913,44980.16850466622,10,5,10,10_1,10_4,10_1_0 +14800,2,32.0,0.0,9,111,1300.0,0.0,0.0,45,62,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,114813,2,1,1,0,2,,360.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,3553.96106132135,1300.0,45103.03091267874,1,1,1,2,120.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028822896681086726,25057.239395932633,7,4,7,7_1,7_2,7_0_0 +14801,2,71.0,0.0,2,300,331.0,0.0,0.0,77,78,1310.9707838384957,0.0,564.4213798561523,1824.0,346.39730634913025,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,114814,2,1,2,0,1,,100.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,2492.5993620182,331.0,23023.680033790475,5,5,0,1,65.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07922278268821598,15349.120022526984,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +14802,2,81.0,0.0,2,112,600.0,980.0,0.0,86,77,0.0,0.0,1023.1203260232367,1580.0,0.0,1860.5339669809932,50,0,0,0,0,0,0,0,0,0,,1,,2,114815,2,1,2,0,1,,400.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,402.143207461978,600.0,32044.37096104944,6,5,0,1,100.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04930663179253919,21362.91397403296,6,3,6,6_1,6_1,6_0_1 +14803,1,60.0,85.0,2,111,240.0,500.0,0.0,78,78,0.0,0.0,409.2481304092947,740.0,0.0,949.2520239698945,71,1,2,2,2,1,2,2,1,0,,2,,2,114816,2,2,0,0,1,,200.0,376.0,41,0.0,9.0,3.0,2.0,1.5,2,2,528.698075393284,240.0,13374.028938906753,5,7,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.05533111999236414,8916.019292604502,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +14804,2,40.0,0.0,6,111,600.0,,,43,69,0.0,0.0,,688.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,114817,2,3,0,0,2,,440.0,,43,2.0,0.0,6.0,7.0,3.1999999999999993,3,2,112.8680423333249,600.0,24140.389379343265,4,2,0,1,173.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028499954544590568,7543.871681044772,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +14805,2,28.0,0.0,9,112,0.0,0.0,0.0,62,43,0.0,0.0,0.0,1329.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,114818,2,1,1,0,1,,119.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1399.32519698377,0.0,34559.885136611825,4,1,1,2,84.0,6,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03845498891985878,23039.923424407883,6,3,6,6_1,6_0,6_0_0 +14806,1,76.0,109.0,2,111,0.0,0.0,600.0,0,77,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,70,0,0,0,0,0,0,0,0,0,,2,,2,114819,2,3,0,0,1,,0.0,276.0,11,0.0,0.0,2.0,1.0,1.0,1,1,358.094558930852,0.0,11201.3840005858,0,5,2,3,42.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05356480948859728,11201.3840005858,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +14807,2,30.0,0.0,7,111,1680.0,0.0,0.0,0,43,0.0,0.0,2864.7369128650625,1680.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,114820,2,2,5,0,1,,300.0,810.0,22,3.0,0.0,4.0,3.0,2.0,3,3,521.77645450628,1680.0,62100.302663279945,0,1,2,3,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027053008245536105,31050.151331639972,8,4,8,8_1,8_3,8_0_0 +14808,1,38.0,80.0,5,111,540.0,0.0,0.0,47,45,0.0,0.0,920.8082934209131,603.0,0.0,0.0,43,2,1,2,1,1,2,2,2,1,5.0,1,,3,114821,2,1,2,1,1,,900.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,152.981688288401,540.0,55194.65910984878,1,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0.010924970091760244,22997.774629103656,6,3,6,6_1,6_4,6_0_0 +14809,2,53.0,0.0,7,112,840.0,0.0,0.0,0,90,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,5.0,2,,5,114822,2,1,0,0,1,,160.0,590.0,12,1.0,3.0,3.0,1.0,1.0,1,1,2650.80035883239,840.0,26396.896509760652,0,1,3,4,75.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03182192269039647,26396.896509760652,7,4,7,7_0,7_1,7_0_0 +14810,2,59.0,0.0,6,111,568.0,955.0,0.0,74,52,0.0,0.0,968.5539086353308,1523.0,0.0,1813.0713657824986,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,114823,2,1,1,0,1,,424.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,1137.85320155795,568.0,62407.14323431069,5,1,0,1,200.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024404257606886786,41604.76215620713,9,5,9,9_1,9_2,9_0_0 +14811,2,53.0,0.0,1,400,0.0,0.0,0.0,85,45,0.0,0.0,0.0,1195.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,114824,2,2,4,0,2,,188.0,,42,1.0,3.0,5.0,3.0,1.8,2,2,985.981576421608,0.0,45813.642210237624,5,1,0,1,150.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026083933569747104,25452.023450132012,7,4,7,7_1,7_0,7_1_0 +14812,2,62.0,0.0,6,300,500.0,0.0,0.0,0,78,1054.6828510366015,0.0,852.6002716860306,1560.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,114825,2,1,0,1,1,677.0,310.0,318.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2048.8654144616,500.0,18439.381780295058,0,5,2,3,63.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0846015348338342,18439.381780295058,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +14813,2,65.0,0.0,2,111,1476.0,0.0,0.0,78,74,1898.4291318658827,198.6490915515336,2516.876002017162,3426.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114826,2,1,2,0,1,,684.0,,41,0.0,1.0,9.0,2.0,1.5,2,2,542.517735830436,1476.0,63818.265635678465,5,5,0,1,125.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053683690176698384,42545.51042378564,9,5,9,9_1,9_4,9_0_1 +14814,2,64.0,0.0,2,221,287.0,872.0,0.0,52,78,0.0,0.0,489.39255594778155,1279.0,166.2707070475825,1655.495529803496,50,0,0,0,0,0,0,0,0,0,,2,,2,114827,1,3,0,1,2,672.0,148.0,208.0,42,1.0,3.0,3.0,2.0,1.5,2,2,2484.20507733943,287.0,33696.46174122044,1,5,2,3,64.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03795650741678365,22464.307827480294,6,3,6,6_0,6_1,6_0_1 +14815,2,42.0,0.0,1,400,600.0,0.0,0.0,12,42,949.2145659329414,0.0,1023.1203260232367,1560.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,114828,2,1,2,0,1,,210.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,1483.88396684188,600.0,40775.558806663554,1,1,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03825821265618227,20387.779403331777,5,3,5,5_1,5_0,5_1_0 +14816,1,36.0,450.0,9,111,0.0,0.0,1300.0,0,68,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,43,0,0,0,0,0,0,0,0,0,,2,2007.0,6,114829,2,1,0,1,1,,272.0,399.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,3,1,1114.51721260447,0.0,21036.394058003472,0,4,2,3,72.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.061797663440584016,8090.920791539798,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +14817,2,61.0,0.0,2,211,451.0,671.0,0.0,0,56,0.0,0.0,769.0454450607996,1122.0,0.0,1273.8962161675984,44,0,0,0,0,0,0,0,0,0,,1,,2,114830,2,1,2,0,1,,319.0,574.0,12,1.0,1.0,3.0,1.0,1.0,1,1,713.659916043454,451.0,17178.78594789403,0,4,2,3,57.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06531311370915285,17178.78594789403,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +14818,2,65.0,0.0,6,111,820.0,0.0,0.0,86,77,0.0,0.0,1398.2644455650902,895.0,103.91919190473907,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,114831,2,1,2,0,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1004.9799026182,820.0,20296.295180703648,6,5,0,1,103.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04409671775225785,13530.863453802433,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14819,2,41.0,0.0,9,111,540.0,,,52,67,0.0,0.0,,628.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,114832,2,1,0,0,2,,320.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,324.47008503705393,540.0,51725.35248819039,1,1,1,2,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012141048244057517,22489.28369051756,6,3,6,6_1,6_2,6_0_0 +14820,1,60.0,100.0,5,111,1000.0,,,54,48,0.0,0.0,,1138.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,3,114833,1,2,0,0,2,,600.0,917.0,43,2.0,2.0,4.0,3.0,2.0,3,2,56.78192706285216,1000.0,58336.634041253776,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01950746762652167,29168.317020626888,8,4,8,8_1,8_2,8_0_0 +14821,2,77.0,0.0,5,211,630.0,,,78,77,0.0,0.0,,870.0,332.541414095165,,71,2,2,2,2,1,2,2,2,0,,1,,3,114834,2,2,0,0,1,,400.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,104.1738244833093,630.0,18155.62754485021,5,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04791902664068326,12103.751696566806,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14823,2,33.0,0.0,9,112,1620.0,0.0,0.0,52,46,0.0,0.0,2762.424880262739,1620.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,75.0,1,2012.0,6,114836,2,1,1,0,1,,204.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,736.8119501923,1620.0,49337.57025359113,1,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03283501785096693,27409.761251995074,7,4,7,7_1,7_0,7_0_0 +14824,0,65.0,0.0,1,112,720.0,0.0,0.0,0,71,2742.175412695164,0.0,1227.744391227884,3410.0,124.70303028568689,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,114837,1,3,4,0,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,344.525674431262,720.0,14572.84817367537,0,5,0,1,115.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.23399681101185693,14572.84817367537,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14825,2,71.0,0.0,5,111,300.0,1100.0,0.0,0,77,0.0,0.0,511.56016301161833,1400.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,0,,1,,3,114838,2,2,1,0,2,,250.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1025.29090367806,300.0,27872.420789771906,0,5,1,2,80.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0502288628088503,27872.420789771906,7,4,7,7_1,7_2,7_0_0 +14826,1,32.0,357.0,7,300,0.0,,,0,54,0.0,0.0,,330.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,114839,2,2,0,0,2,,551.0,550.0,32,1.0,0.0,3.0,2.0,1.3,1,1,129.29194957656736,0.0,9380.175583527684,0,4,3,4,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03518057813112855,7215.519679636679,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +14827,1,43.0,100.0,6,112,900.0,0.0,0.0,56,62,1265.6194212439218,794.5963662061343,1534.680489034855,2770.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,114840,2,1,4,0,1,,400.0,630.0,43,2.0,0.0,6.0,5.0,2.4,2,2,1038.53363967204,900.0,34520.05119234305,1,1,2,3,123.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08024321819703495,14383.354663476273,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +14828,2,61.0,0.0,6,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,908.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,114841,1,2,0,0,1,,161.0,550.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2165.40829846341,0.0,31676.19820109642,0,5,2,3,53.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02866505614832815,31676.19820109642,8,4,8,8_0,8_3,8_0_0 +14829,2,55.0,0.0,7,300,2240.0,,,54,21,0.0,132.4327277010224,,2436.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,0,,1,,5,114842,2,1,0,0,1,,500.0,,43,3.0,2.0,7.0,4.0,2.5,4,3,106.27681535591307,2240.0,67334.83678053577,1,1,0,1,110.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036177410037238934,26933.934712214308,7,4,7,7_1,7_1,7_0_0 +14830,2,56.0,0.0,6,111,526.0,1259.0,0.0,77,75,0.0,0.0,896.9354858137042,1785.0,0.0,2390.2165963561943,42,0,0,0,0,0,0,0,0,0,,1,,4,114843,2,1,1,0,1,,624.0,,41,1.0,1.0,5.0,4.0,2.5,4,4,1409.60656816376,526.0,77387.47363662031,7,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023065748448923715,30954.989454648126,8,4,8,8_1,8_3,8_0_0 +14831,2,52.0,0.0,2,111,645.0,2950.0,0.0,46,37,0.0,397.2981831030672,1099.8543504749794,3895.0,0.0,5600.586941422377,10,0,0,0,0,0,0,0,0,2,40.0,1,,2,114844,2,1,1,0,1,,1160.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,968.485680061474,645.0,116460.72111742388,1,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0334447525537197,46584.28844696955,10,5,10,10_1,10_4,10_0_1 +14832,2,33.0,0.0,7,112,1400.0,0.0,0.0,42,63,0.0,688.6501840453165,2387.2807607208856,1920.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,5,114845,2,2,3,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,743.707033234324,1400.0,60398.88623256696,1,1,1,2,97.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031788665648684426,33554.93679587053,9,5,9,9_1,9_1,9_0_0 +14833,1,32.0,24.0,1,111,900.0,1200.0,0.0,0,52,0.0,0.0,1534.680489034855,2100.0,0.0,2278.2048575277468,31,2,2,2,2,1,2,2,2,2,60.0,1,,1,114846,2,1,2,0,1,,500.0,,32,1.0,0.0,7.0,3.0,1.6,1,1,105.432910024372,900.0,39302.462457789305,0,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05343176657837641,24564.039036118313,7,4,7,7_1,7_3,7_1_0 +14834,2,35.0,0.0,9,111,600.0,,,67,52,0.0,0.0,,720.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,114847,2,1,0,0,2,,140.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,100.47800084242105,600.0,41590.28875987982,4,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01731173361543356,19804.89940946658,5,3,5,5_1,5_2,5_0_0 +14835,2,29.0,0.0,1,111,1096.0,2446.0,0.0,0,37,0.0,0.0,1868.899795535779,3542.0,0.0,4643.740901260724,10,0,0,0,0,0,0,0,0,0,,2,,1,114848,2,1,0,0,1,,0.0,,22,2.0,1.0,7.0,3.0,2.0,3,3,949.143289061915,1096.0,150288.85113201544,0,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023567949141408147,75144.42556600772,10,5,10,10_0,10_4,10_1_0 +14836,2,93.0,0.0,1,111,432.0,0.0,0.0,0,77,0.0,0.0,736.6466347367304,432.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114849,2,2,4,0,1,,131.0,160.0,11,0.0,3.0,3.0,1.0,1.0,1,1,355.808017732266,432.0,16654.67043895857,0,5,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02593866997148539,16654.67043895857,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +14837,2,43.0,0.0,2,111,360.0,1200.0,0.0,0,52,0.0,0.0,613.872195613942,1560.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,1,15.0,1,,2,114850,2,2,2,0,1,,400.0,,32,1.0,1.0,3.0,2.0,1.5,2,2,588.9257172395,360.0,29428.67041029753,0,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0530095304426031,19619.11360686502,5,3,5,5_1,5_4,5_0_1 +14838,2,79.0,0.0,1,400,348.0,0.0,0.0,0,78,2636.7071275915036,0.0,593.4097890934773,2885.0,51.266801339671275,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114851,2,3,3,0,1,,170.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,998.807600914684,348.0,13707.740055178367,0,5,0,1,70.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2104650356942051,13707.740055178367,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14839,2,65.0,0.0,5,400,150.0,0.0,0.0,0,77,2109.365702073203,0.0,255.78008150580916,2185.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,114852,2,1,2,0,1,,60.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1761.17798362862,150.0,21786.60151672077,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1002909975804651,21786.60151672077,6,3,6,6_1,6_0,6_0_0 +14840,1,27.0,100.0,7,300,716.0,0.0,0.0,46,63,0.0,0.0,1220.9235890543957,749.0,45.72444443808519,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,5,114853,2,1,1,0,1,,112.0,478.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2146.39653849051,716.0,26809.975171142367,1,1,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.027937362687534533,14894.430650634647,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +14841,1,29.0,354.0,2,112,840.0,0.0,0.0,52,63,0.0,595.9472746546007,1432.3684564325313,1369.0,109.46154880632515,0.0,71,2,2,2,1,1,2,1,2,2,15.0,2,,2,114854,1,2,0,0,1,,232.0,603.0,43,2.0,0.0,4.0,4.0,2.1,2,2,2459.9706462115,840.0,25898.353435592056,4,1,2,3,87.0,8,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05286050340631254,12332.549255043836,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +14842,1,43.0,118.0,5,111,730.0,,,0,54,0.0,0.0,,820.0,124.70303028568689,,42,0,0,0,0,0,0,0,0,2,15.0,1,,3,114855,2,2,0,0,2,,720.0,296.0,32,1.0,0.0,3.0,3.0,1.8,2,2,157.11483526449595,730.0,21972.83979491852,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03731879937474603,12207.133219399178,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +14843,1,51.0,543.0,2,111,600.0,180.0,0.0,0,85,632.8097106219609,0.0,1023.1203260232367,1380.0,0.0,341.730728629162,30,0,0,0,0,0,0,0,0,0,,2,,2,114856,2,2,0,1,1,645.0,0.0,518.0,31,1.0,0.0,5.0,7.0,3.8,6,4,245.509307757122,600.0,23193.673432418596,0,6,2,3,83.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0594989838078485,6103.598271689105,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +14844,2,56.0,0.0,2,112,1500.0,0.0,0.0,45,64,0.0,397.2981831030672,2557.8008150580918,1880.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,114857,2,1,2,0,1,,700.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,830.456543857118,1500.0,65969.31520151443,1,1,0,1,120.0,10,1,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028498097854392182,32984.657600757215,8,4,8,8_1,8_1,8_0_1 +14845,2,62.0,0.0,1,111,1600.0,0.0,0.0,77,72,0.0,0.0,2728.320869395298,1720.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114858,2,1,2,0,1,,250.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,219.213433442941,1600.0,26255.553736856837,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0655099495230036,17503.70249123789,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +14846,2,85.0,0.0,1,111,245.0,1400.0,0.0,77,74,0.0,0.0,417.774133126155,1645.0,0.0,2657.9056671157045,31,0,0,0,0,0,0,0,0,0,,1,,1,114859,2,1,2,0,1,,160.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,927.515133794785,245.0,64273.897919917355,5,5,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025593593250709683,42849.265279944906,9,5,9,9_1,9_4,9_1_0 +14847,2,30.0,0.0,1,112,0.0,0.0,0.0,67,64,0.0,0.0,0.0,1663.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,114860,2,2,0,0,1,,317.0,600.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1154.82009177341,0.0,28951.59499978673,1,1,2,3,110.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.057440704044535384,19301.063333191152,5,3,5,5_0,5_0,5_1_0 +14848,2,77.0,0.0,7,400,600.0,0.0,0.0,71,71,1582.0242765549024,595.9472746546007,1023.1203260232367,2655.0,145.4868686666347,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,114861,2,1,1,0,1,,90.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1267.91807587371,600.0,39061.00689266174,5,5,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06797059807740866,26040.671261774492,7,4,7,7_1,7_0,7_0_0 +14849,2,57.0,0.0,2,111,226.0,450.0,0.0,63,65,0.0,0.0,385.3753228020858,676.0,0.0,854.326821572905,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,114862,1,1,0,1,2,,432.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,1403.77185600893,226.0,22592.663204850513,4,1,0,1,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02992121795782211,15061.775469900342,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +14850,2,68.0,0.0,6,111,1200.0,1300.0,0.0,90,75,0.0,0.0,2046.2406520464733,2500.0,0.0,2468.055262321726,41,0,0,0,0,0,0,0,0,0,,1,,4,114863,1,1,2,0,1,,475.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,533.435563035237,1200.0,92302.0801529838,5,5,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027084980055232088,61534.7201019892,10,5,10,10_1,10_4,10_0_0 +14851,1,53.0,100.0,8,112,430.0,0.0,0.0,54,65,0.0,0.0,733.2362336499863,2170.0,2410.9252521899466,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,114864,2,1,3,0,1,,520.0,400.0,43,3.0,0.0,3.0,3.0,2.0,3,3,1047.20998944756,430.0,22951.349052071047,1,1,2,3,80.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.094547819175108,11475.674526035524,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +14852,2,70.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114865,2,3,0,1,1,,1500.0,328.0,41,3.0,2.0,3.0,5.0,3.0,5,5,335.705291403304,0.0,19796.967278954544,6,5,2,3,80.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00909230173812287,6598.989092984848,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +14854,2,35.0,0.0,9,111,590.0,1000.0,0.0,55,64,0.0,0.0,1006.0683205895161,1590.0,0.0,1898.504047939789,50,1,2,2,1,2,2,2,2,0,,1,2008.0,6,114867,2,1,1,0,1,,490.0,424.0,43,2.0,0.0,3.0,3.0,1.8,2,2,310.888373620507,590.0,38702.355352778264,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04108277094525362,21501.308529321257,6,3,6,6_1,6_3,6_0_0 +14855,1,37.0,81.0,1,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,730.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,114868,1,3,0,0,2,,0.0,640.0,43,2.0,0.0,2.0,2.0,1.5,2,2,293.761676941746,0.0,34183.80692115095,1,1,2,3,49.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.021355140510939362,22789.204614100632,6,3,6,6_0,6_3,6_1_0 +14856,2,40.0,0.0,2,111,300.0,900.0,0.0,65,52,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,71,2,2,2,1,2,2,2,2,2,20.0,8,,2,114869,2,2,0,0,1,,0.0,411.0,43,2.0,0.0,2.0,2.0,1.5,2,2,934.068885814309,300.0,36170.32431317829,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03317636827388889,24113.549542118857,6,3,6,6_0,6_4,6_0_1 +14857,2,62.0,0.0,2,112,326.0,0.0,0.0,75,74,0.0,0.0,555.8953771392919,1326.0,1385.589225396521,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,114870,2,2,0,1,1,,770.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1893.71600203356,326.0,48000.92958034891,5,5,0,1,90.0,9,2,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027624465017503555,32000.619720232604,8,4,8,8_0,8_1,8_0_1 +14858,2,47.0,0.0,1,300,1200.0,0.0,0.0,0,11,0.0,331.081819252556,2046.2406520464733,1510.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,5,,1,114871,1,2,2,0,2,,89.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1610.74882586488,1200.0,27869.0,0,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054182066094944206,27869.0,7,4,7,7_1,7_0,7_1_0 +14859,1,49.0,384.0,9,111,320.0,0.0,0.0,85,53,0.0,0.0,545.6641738790596,320.0,0.0,0.0,71,2,1,2,2,1,1,2,2,3,75.0,8,2006.0,6,114872,1,3,0,1,1,500.0,0.0,502.0,42,1.0,1.0,4.0,5.0,2.4,2,2,881.055888567145,320.0,22649.399716456996,6,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.014128409759464345,9437.249881857082,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +14860,2,74.0,0.0,2,111,420.0,820.0,0.0,77,75,0.0,0.0,716.1842282162656,1240.0,0.0,1556.773319310627,60,0,0,0,0,0,0,0,0,0,,1,,2,114873,2,1,1,0,1,,230.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1236.98477366781,420.0,42891.57378083477,5,5,0,1,100.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028910107293709724,28594.38252055651,8,4,8,8_1,8_2,8_0_1 +14861,2,61.0,0.0,5,111,1750.0,0.0,0.0,77,77,0.0,397.2981831030672,2984.100950901107,2160.0,152.4148147936173,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,114874,2,3,3,0,1,,450.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1480.63024446019,1750.0,53618.70268243503,7,5,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04028445098332443,35745.801788290024,9,5,9,9_1,9_3,9_0_0 +14862,2,28.0,0.0,9,111,688.0,0.0,0.0,84,47,0.0,0.0,1173.177973839978,688.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,10.0,2,2005.0,6,114875,2,1,0,0,1,,0.0,680.0,42,1.0,0.0,3.0,2.0,1.5,2,2,587.783047494535,688.0,31207.103739422448,3,1,2,3,58.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02204626247103099,20804.73582628163,5,3,5,5_0,5_3,5_0_0 +14863,2,53.0,0.0,7,111,400.0,,,0,69,0.0,0.0,,500.0,138.5589225396521,,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,114876,2,1,0,0,2,,450.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,58.15721003382209,400.0,10291.053565755243,0,1,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048585890337196576,10291.053565755243,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14864,2,40.0,0.0,8,211,1800.0,0.0,0.0,21,38,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,114877,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1008.96472011483,1800.0,70340.40429560049,1,1,1,2,156.0,3,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02558984438638751,33495.43061695261,8,4,8,8_1,8_2,8_0_0 +14865,2,79.0,0.0,1,211,655.0,1067.0,0.0,86,74,0.0,0.0,1116.9063559087,1722.0,0.0,2025.703819151755,41,0,0,0,0,0,0,0,0,0,,1,,1,114878,2,1,2,0,1,,450.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1048.58002330816,655.0,60836.42224674963,5,5,0,1,90.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028305412060815313,40557.61483116642,9,5,9,9_1,9_2,9_1_0 +14866,1,45.0,448.0,8,111,107.0,,,56,52,0.0,0.0,,371.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,2,2002.0,6,114879,2,2,0,0,2,,352.0,439.0,43,2.0,0.0,4.0,5.0,2.8,4,3,144.8078454325695,107.0,13927.922779922777,4,4,2,3,76.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02663713791799591,4974.258135686707,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +14867,2,81.0,0.0,2,111,3600.0,,,0,77,0.0,0.0,,4243.0,890.933871929963,,70,0,0,0,0,0,0,0,0,0,,1,,2,114880,2,2,0,0,2,,612.0,,21,2.0,4.0,4.0,3.0,2.0,3,3,8.139914230071247,3600.0,55885.230345739656,0,5,0,1,165.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07592345909196847,27942.615172869828,7,4,7,7_1,7_2,7_0_1 +14868,2,40.0,0.0,2,111,450.0,,,0,81,0.0,0.0,,700.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,2,114881,1,2,0,0,2,,300.0,,22,1.0,5.0,4.0,2.0,1.5,2,2,126.70440194030449,450.0,14164.335260115608,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04941989773223475,9442.890173410406,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +14869,2,64.0,0.0,7,120,240.0,,,0,54,0.0,0.0,,470.0,318.68552184119983,,70,0,0,0,0,0,0,0,0,2,60.0,1,,5,114882,2,2,0,0,1,,180.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,95.02278074238096,240.0,26824.079337228017,0,1,0,1,79.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017521570604203614,26824.079337228017,7,4,7,7_1,7_1,7_0_0 +14870,2,54.0,0.0,8,300,1013.0,,,72,52,0.0,0.0,,1128.0,159.34276092059991,,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,114883,2,1,0,0,1,,462.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,63.509051162801164,1013.0,37796.07722060425,7,1,1,2,79.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029844367007089274,25197.384813736167,7,4,7,7_1,7_1,7_0_0 +14871,1,33.0,500.0,1,111,500.0,1200.0,0.0,62,85,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,114884,2,1,1,0,1,,600.0,605.0,42,1.0,3.0,6.0,6.0,2.9,3,2,209.30705721965,500.0,24246.52619751375,4,6,2,3,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07011313646135085,8360.871102590949,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +14872,1,47.0,200.0,7,211,1340.0,0.0,0.0,0,85,0.0,0.0,2284.968728118562,1440.0,138.5589225396521,0.0,50,2,2,2,2,2,2,2,1,0,,1,,5,114885,2,1,2,0,1,,840.0,,31,1.0,0.0,4.0,2.0,1.5,2,2,1145.91163667914,1340.0,13422.356375175514,0,7,1,2,90.0,3,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.10728369592862716,8948.237583450342,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +14873,1,45.0,360.0,5,111,360.0,1020.0,0.0,0,68,0.0,0.0,613.872195613942,1380.0,0.0,1936.4741288985847,60,2,2,2,2,1,2,2,2,0,,2,,3,114886,1,3,0,0,1,,0.0,775.0,32,2.0,0.0,3.0,3.0,2.0,3,2,540.555636116143,360.0,17137.396418194512,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08052565082376661,8568.698209097256,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +14874,2,64.0,0.0,5,112,754.0,0.0,0.0,78,74,1160.1511361402618,595.9472746546007,1285.7212097025342,2424.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,114887,2,1,2,0,1,,57.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,2223.75704893053,754.0,47772.52079988198,5,5,0,1,121.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05074046668280457,31848.34719992132,8,4,8,8_1,8_0,8_0_0 +14875,2,81.0,0.0,1,300,700.0,0.0,0.0,35,71,1969.092882885335,0.0,1193.6403803604428,2747.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,114888,2,1,3,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1100.39039364289,700.0,27432.27713026708,5,5,0,1,200.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1001375127174233,18288.18475351139,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +14876,2,63.0,0.0,2,111,452.0,103.0,0.0,56,78,0.0,0.0,770.7506456041716,555.0,0.0,195.54591693779827,50,2,2,2,1,2,2,2,2,0,,2,,2,114889,2,3,0,1,1,427.0,0.0,289.0,42,1.0,1.0,3.0,2.0,1.5,2,2,633.336692580407,452.0,28474.520481323576,1,5,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019491109617246205,18983.013654215716,5,3,5,5_0,5_2,5_0_1 +14877,2,61.0,0.0,7,111,550.0,150.0,0.0,0,22,0.0,0.0,937.8602988546337,700.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,114890,2,1,0,1,1,,0.0,1300.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1120.38309379183,550.0,25869.532956186667,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02705885727374896,25869.532956186667,7,4,7,7_0,7_4,7_0_0 +14878,2,84.0,0.0,5,120,190.0,0.0,0.0,71,71,1687.4925616585624,198.6490915515336,323.9881032406916,1992.0,72.05063972061909,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,114891,2,1,2,0,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1093.36314389922,190.0,14848.019728316951,5,5,0,1,110.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13415930450314648,9898.679818877967,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +14879,2,53.0,0.0,2,120,940.0,0.0,0.0,77,31,0.0,463.51454695357836,1602.8885107697374,1365.0,103.91919190473907,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,2,114892,2,1,1,0,1,,232.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,2065.57757229525,940.0,77561.4533396008,5,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01759894820463695,51707.63555973387,10,5,10,10_1,10_0,10_0_1 +14880,1,79.0,129.0,5,111,240.0,1200.0,0.0,86,78,0.0,0.0,409.2481304092947,1440.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,2,,3,114893,2,1,0,0,1,,0.0,419.0,41,0.0,4.0,4.0,2.0,1.5,2,2,254.514398463389,240.0,15034.989595527924,6,5,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0957765877289546,10023.326397018616,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +14881,2,87.0,0.0,2,111,939.0,0.0,0.0,0,77,0.0,0.0,1601.1833102263654,1009.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,114894,2,1,2,0,1,,160.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,417.407650836461,939.0,16179.869764474166,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062361441389067435,16179.869764474166,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +14882,2,41.0,0.0,9,111,1620.0,0.0,0.0,46,37,0.0,0.0,2762.424880262739,1620.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,2,2005.0,6,114895,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1257.88646341715,1620.0,154378.19131622656,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0104937101943474,73513.42443629836,10,5,10,10_0,10_4,10_0_0 +14883,2,51.0,0.0,9,211,2100.0,0.0,0.0,81,62,0.0,317.83854648245375,3580.9211410813286,2340.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,114896,2,1,1,0,1,,120.0,,43,4.0,1.0,5.0,4.0,2.5,4,4,1023.6103368107,2100.0,48008.838709935415,4,1,1,2,140.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04874102483790631,19203.535483974167,5,3,5,5_1,5_1,5_0_0 +14884,2,55.0,0.0,1,112,707.0,0.0,0.0,77,63,0.0,119.18945493092015,1205.5767841640472,1007.0,290.9737373332694,0.0,50,2,2,1,2,1,2,2,2,2,10.0,1,,1,114897,1,2,2,0,2,,313.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1424.71867468882,707.0,44088.54242319556,5,1,0,1,120.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.022840401261943376,29392.36161546371,8,4,8,8_1,8_0,8_1_0 +14885,2,54.0,0.0,2,112,595.0,1472.0,0.0,74,47,0.0,0.0,1014.5943233063764,2067.0,0.0,2794.5979585673695,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,114898,2,1,1,0,1,,311.0,,42,1.0,5.0,5.0,2.0,1.5,2,2,1468.09180415883,595.0,50946.32299690232,5,1,0,1,100.0,6,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.040572113518882985,33964.21533126821,9,5,9,9_1,9_1,9_0_1 +14886,2,48.0,0.0,7,111,1500.0,0.0,0.0,55,62,0.0,344.3250920226582,2557.8008150580918,1900.0,193.98249155551292,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,114899,2,1,2,0,1,,200.0,,43,2.0,0.0,7.0,4.0,2.5,4,4,840.717682396155,1500.0,65806.25748159939,1,1,0,1,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028872634194875377,26322.502992639755,7,4,7,7_1,7_3,7_0_0 +14887,1,45.0,192.0,2,111,1000.0,0.0,0.0,0,54,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,2,2,2,1,2,2,2,2,3,30.0,2,,2,114900,2,3,0,1,1,21.0,90.0,178.0,22,2.0,0.0,2.0,2.0,1.5,2,2,487.460731627792,1000.0,17266.181456162078,0,1,2,3,34.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.057916685431515194,11510.787637441385,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +14888,2,52.0,0.0,1,111,660.0,1300.0,0.0,85,21,0.0,0.0,1125.4323586255605,1960.0,0.0,2468.055262321726,50,2,2,2,2,1,2,2,2,0,,2,,1,114901,1,2,0,0,1,,600.0,850.0,42,1.0,1.0,3.0,2.0,1.5,2,2,1770.56081593579,660.0,9409.778237229833,6,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.20829396300172628,6273.185491486555,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +14889,2,53.0,0.0,9,111,1370.0,,,78,52,0.0,0.0,,1664.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,114902,2,2,0,0,1,,274.0,,42,2.0,0.0,5.0,7.0,3.3999999999999995,4,4,140.9235058552173,1370.0,35648.5464381474,5,4,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04667792003489261,10484.86659945512,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14890,2,68.0,0.0,1,111,0.0,0.0,0.0,71,31,0.0,0.0,0.0,1073.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,114903,2,1,0,1,2,,0.0,,42,1.0,5.0,8.0,2.0,1.5,2,2,582.016687897659,0.0,629605.6206610963,5,1,0,1,247.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0017042414565380346,419737.08044073085,10,5,10,10_0,10_4,10_1_0 +14891,1,66.0,270.0,2,111,822.0,0.0,0.0,0,74,0.0,0.0,1401.6748466518343,822.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,2,,2,114904,1,3,0,0,2,,0.0,475.0,11,0.0,3.0,2.0,1.0,1.0,1,1,300.747725362105,822.0,9958.360414846844,0,5,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.08254370857822001,9958.360414846844,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +14892,1,65.0,344.0,1,111,637.0,1100.0,0.0,0,21,0.0,0.0,1086.212746128003,1737.0,0.0,2088.354452733768,41,0,0,0,0,0,0,0,0,0,,2,,1,114905,2,3,0,0,1,,0.0,550.0,32,1.0,2.0,3.0,2.0,1.5,2,2,949.004542163225,637.0,14580.486009766084,0,1,2,3,96.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11913183132829376,9720.324006510722,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +14893,2,51.0,0.0,8,111,245.0,720.0,0.0,0,54,0.0,0.0,417.774133126155,965.0,0.0,1366.922914516648,50,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,114906,1,2,1,0,1,,220.0,433.0,12,1.0,0.0,4.0,1.0,1.0,1,1,428.390653329106,245.0,19891.00305447745,0,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048514396049161496,19891.00305447745,5,3,5,5_1,5_3,5_0_0 +14894,2,52.0,0.0,2,111,350.0,50.0,0.0,54,64,0.0,0.0,596.8201901802214,400.0,0.0,94.92520239698945,71,2,1,2,1,1,2,2,2,2,20.0,2,,2,114907,1,3,0,1,2,,0.0,,43,2.0,2.0,5.0,4.0,2.5,4,2,217.298266422289,350.0,54171.01362192454,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.007384022805844428,21668.405448769816,6,3,6,6_0,6_4,6_0_1 +14895,1,48.0,125.0,2,111,900.0,0.0,0.0,0,68,0.0,0.0,1534.680489034855,926.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,20.0,2,,2,114908,1,3,0,1,2,,700.0,333.0,32,1.0,0.0,4.0,4.0,2.5,4,2,294.125838151581,900.0,32661.597955436977,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.028351337900350784,13064.639182174791,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +14896,2,57.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2025.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,114909,2,2,3,0,1,,472.0,680.0,31,0.0,0.0,4.0,2.0,1.5,2,1,1336.02451694064,0.0,19873.128589919022,0,7,2,3,110.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10189638691449997,13248.752393279348,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +14897,2,31.0,0.0,1,111,250.0,900.0,0.0,46,43,0.0,0.0,426.3001358430153,1150.0,0.0,1708.65364314581,33,0,0,0,0,0,0,0,0,2,5.0,1,,1,114910,2,1,3,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,576.700981834047,250.0,48289.204965750105,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0238148464199329,22994.85950750005,6,3,6,6_1,6_3,6_1_0 +14898,1,48.0,286.0,2,111,950.0,0.0,0.0,0,54,0.0,423.78472864327165,1619.9405162034582,1270.0,0.0,0.0,60,2,2,2,1,2,2,2,2,0,,2,,2,114911,1,3,0,0,1,,0.0,672.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1358.67775710301,950.0,5513.862110764444,0,1,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.23032857450690342,5513.862110764444,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +14899,2,36.0,0.0,9,400,770.0,0.0,0.0,0,54,0.0,0.0,1313.0044183964872,770.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,114912,2,1,1,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,5607.98612075888,770.0,2387.065854537039,0,1,1,2,85.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.32257174578425624,2387.065854537039,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +14900,2,81.0,0.0,1,300,600.0,0.0,0.0,11,71,1054.6828510366015,715.1367295855209,1023.1203260232367,2332.0,266.03313127613205,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,114913,1,3,3,0,2,,100.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1096.95541933769,600.0,23643.003729076667,1,5,0,1,110.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09863382955576228,15762.002486051111,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +14901,2,25.0,0.0,6,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,778.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,114914,2,1,1,0,1,,338.0,550.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1285.32024160906,0.0,15403.261092641014,0,1,2,3,80.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050508784816462884,15403.261092641014,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14902,2,61.0,0.0,6,300,400.0,0.0,0.0,67,78,0.0,2055.3559339198673,682.0802173488245,2002.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114915,1,3,3,0,1,,480.0,412.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1181.09568943022,400.0,22773.566656020812,1,5,2,3,73.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08790893540036325,15182.377770680541,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +14903,2,42.0,0.0,6,111,600.0,,,35,42,0.0,0.0,,732.0,182.89777775234077,,20,0,0,0,0,0,0,0,0,0,,1,,4,114916,2,1,0,0,2,,200.0,850.0,43,2.0,0.0,5.0,4.0,2.3,3,2,139.30525698527154,600.0,65946.34120670761,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01109993347023695,28672.32226378592,8,4,8,8_1,8_2,8_0_0 +14904,2,50.0,0.0,2,111,255.0,100.0,0.0,54,62,0.0,0.0,434.8261385598756,2597.0,0.0,189.8504047939789,50,2,1,2,2,1,2,2,2,1,5.0,2,,2,114917,2,3,0,1,1,910.0,0.0,300.0,43,2.0,0.0,3.0,4.0,2.3,3,3,406.719399529126,255.0,37636.341591427736,1,1,2,3,66.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.06900245587609151,16363.626778881626,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +14906,2,50.0,0.0,7,111,600.0,800.0,0.0,0,22,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,114919,2,1,2,0,1,,272.0,512.0,32,2.0,1.0,4.0,2.0,1.5,2,2,1266.0779648634,600.0,30268.006100171362,0,1,2,3,87.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0462534596883167,20178.670733447576,5,3,5,5_1,5_3,5_0_0 +14907,2,43.0,0.0,2,211,203.0,697.0,0.0,0,62,0.0,0.0,346.15571030452844,900.0,0.0,1323.257321414033,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,114920,1,1,0,0,2,,0.0,282.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1467.02541107368,203.0,21094.2986983931,0,1,2,3,68.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04266555683449003,21094.2986983931,5,3,5,5_0,5_2,5_0_1 +14908,0,48.0,0.0,6,111,420.0,,,56,63,0.0,0.0,,612.0,266.03313127613205,,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,114921,2,1,0,0,2,,220.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,103.90760701546638,420.0,26287.976777688044,4,1,5,0,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023280604862654774,13143.988388844022,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14909,2,75.0,0.0,2,111,0.0,0.0,0.0,74,75,0.0,0.0,0.0,968.0,0.0,0.0,50,2,2,2,1,1,1,2,2,0,,2,,2,114922,2,2,0,0,1,,200.0,350.0,41,0.0,1.0,4.0,2.0,1.5,2,2,359.269356535838,0.0,34064.31625433245,5,5,2,3,82.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.028416833403397183,22709.544169554967,6,3,6,6_0,6_3,6_0_1 +14910,1,69.0,160.0,2,111,160.0,0.0,0.0,0,77,0.0,198.6490915515336,272.8320869395298,310.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114923,2,2,0,2,1,840.0,180.0,550.0,11,0.0,0.0,4.0,1.0,1.0,1,1,249.381068303773,160.0,17953.807863742055,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017266532111332715,17953.807863742055,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +14911,2,24.0,0.0,2,111,0.0,0.0,420.0,68,52,0.0,0.0,264.7336819741924,420.0,0.0,502.627501977166,50,2,1,2,2,1,2,2,1,2,5.0,2,,2,114924,1,3,0,1,1,1048.0,270.0,287.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1836.77066843638,0.0,24664.297667652798,4,1,2,3,86.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01702866246829439,16442.865111768533,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +14912,1,39.0,566.0,2,111,1200.0,0.0,0.0,85,65,0.0,0.0,2046.2406520464733,1325.0,173.19865317456512,0.0,71,2,2,1,2,1,2,2,2,0,,1,,2,114925,1,2,5,0,2,,363.0,600.0,42,1.0,4.0,3.0,7.0,2.9999999999999996,2,2,136.185221974151,1200.0,23495.723465877443,6,4,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.05639324117532629,7831.907821959149,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +14913,2,47.0,0.0,2,112,652.0,0.0,0.0,46,35,1371.087706347582,1324.327277010224,1111.7907542785838,2952.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,114926,1,2,3,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,852.377899793792,652.0,63825.79161384704,1,1,1,2,135.0,10,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046250895215838764,27750.344179933498,7,4,7,7_1,7_1,7_0_1 +14914,2,61.0,0.0,1,111,0.0,1600.0,0.0,0,77,0.0,0.0,0.0,1699.0,0.0,3037.6064767036623,71,0,0,0,0,0,0,0,0,0,,1,,1,114927,2,3,1,0,1,,117.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,781.984708061308,0.0,17212.106707062383,0,5,0,1,85.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09870959022714372,17212.106707062383,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +14915,2,43.0,0.0,8,111,2000.0,0.0,0.0,31,34,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,114928,2,1,2,0,1,,2087.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,1187.0677546139,2000.0,168384.54774485392,1,1,1,2,136.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011877574437712162,64763.287594174595,10,5,10,10_1,10_3,10_0_0 +14916,2,36.0,0.0,1,111,500.0,300.0,0.0,85,46,0.0,0.0,852.6002716860306,800.0,0.0,569.5512143819367,31,2,2,2,1,1,2,2,2,0,,2,,1,114929,2,2,0,0,1,,300.0,800.0,42,1.0,0.0,3.0,4.0,2.1,2,2,373.705361060908,500.0,59950.95288114413,7,1,2,3,82.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.01334424161007151,28548.07280054482,8,4,8,8_0,8_3,8_1_0 +14917,1,43.0,27.0,5,112,600.0,3600.0,0.0,0,52,0.0,0.0,1023.1203260232367,4200.0,0.0,6834.61457258324,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,114930,1,1,3,0,2,,740.0,495.0,32,1.0,0.0,6.0,3.0,1.8,3,1,771.274230229892,600.0,26195.529846593563,0,1,2,3,100.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.16033269892214694,14553.072136996423,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +14918,2,53.0,0.0,1,112,2000.0,0.0,0.0,54,11,1687.4925616585624,0.0,3410.4010867441225,3690.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,114931,2,2,1,0,1,,255.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,945.667851341583,2000.0,90522.01168452497,1,1,1,2,170.0,4,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04076356602480165,37717.504868552074,9,5,9,9_1,9_0,9_1_0 +14919,2,61.0,0.0,5,111,720.0,,,0,77,0.0,0.0,,800.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,3,114932,2,1,0,0,2,,240.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,118.51891277345909,720.0,15243.436898445105,0,5,0,1,61.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052481602759913246,15243.436898445105,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +14920,2,25.0,0.0,6,111,564.0,,,54,62,0.0,0.0,,689.0,173.19865317456512,,43,0,0,0,0,0,0,0,0,2,15.0,1,,4,114933,2,1,0,0,2,,0.0,420.0,43,2.0,0.0,3.0,2.0,1.5,2,2,122.08439649596987,564.0,36215.407277075734,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019025051816444306,24143.60485138382,6,3,6,6_1,6_2,6_0_0 +14921,2,39.0,0.0,1,111,500.0,0.0,0.0,0,33,0.0,0.0,852.6002716860306,500.0,0.0,0.0,12,2,2,1,2,1,2,2,2,3,60.0,2,,1,114934,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1108.61274034313,500.0,63933.656816994255,0,1,0,1,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.00782060693683166,63933.656816994255,10,5,10,10_0,10_4,10_1_0 +14922,2,44.0,0.0,8,111,547.0,0.0,0.0,38,53,2531.2388424878436,0.0,932.7446972245175,2947.0,0.0,0.0,20,2,2,2,1,1,1,1,2,2,15.0,1,2002.0,6,114935,2,1,3,0,2,,364.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1060.58492166978,547.0,92731.7137321288,1,1,1,2,90.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.03177985051061287,44157.95892006133,10,5,10,10_1,10_2,10_0_0 +14923,2,59.0,0.0,8,211,600.0,,,0,81,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,114936,2,1,0,0,1,,360.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,96.44495063738171,600.0,33657.906613816194,0,4,1,2,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017826420605543743,22438.604409210795,6,3,6,6_1,6_2,6_0_0 +14924,2,72.0,0.0,2,111,420.0,,,0,77,0.0,0.0,,508.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,0,,1,,2,114937,2,2,0,0,2,,304.0,1000.0,11,0.0,1.0,4.0,1.0,1.0,1,1,129.03950950963977,420.0,25784.489419936705,0,5,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019701766892743344,25784.489419936705,7,4,7,7_1,7_2,7_0_1 +14925,0,40.0,0.0,2,111,800.0,1400.0,0.0,55,47,0.0,0.0,1364.160434697649,2200.0,0.0,2657.9056671157045,31,2,2,2,2,2,1,2,2,2,25.0,1,,2,114938,2,1,3,0,1,,600.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,307.16829939318,800.0,44363.1873110855,1,1,5,0,63.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.049590665895420515,24646.21517282528,7,4,7,7_1,7_3,7_0_1 +14926,2,69.0,0.0,9,111,900.0,,,86,78,0.0,0.0,,1404.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,114939,1,2,0,0,2,,780.0,,41,1.0,4.0,4.0,4.0,2.5,4,4,95.41721266552292,900.0,26952.68158483166,6,5,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05209129175444044,10781.072633932663,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +14927,2,71.0,0.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,528.0,0.0,0.0,20,2,2,1,1,1,2,2,2,0,,2,,5,114940,2,1,0,0,1,,98.0,464.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1491.40626670963,0.0,27615.9753841567,0,5,2,3,70.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.01911936814308264,27615.9753841567,7,4,7,7_0,7_3,7_0_0 +14928,2,74.0,0.0,1,111,1112.0,93.0,0.0,0,74,0.0,0.0,1896.183004229732,1205.0,0.0,176.56087645840037,50,0,0,0,0,0,0,0,0,0,,2,,1,114941,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,904.845360759688,1112.0,52547.5323119592,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022931619183299997,52547.5323119592,10,5,10,10_0,10_4,10_1_0 +14929,2,42.0,0.0,8,111,780.0,0.0,0.0,85,37,0.0,0.0,1330.0564238302077,875.0,131.6309764126695,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,2001.0,6,114942,2,1,1,0,1,,180.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,351.373415672496,780.0,38577.368653552396,6,1,1,2,95.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022681692156300705,21431.871474195774,6,3,6,6_1,6_3,6_0_0 +14930,0,85.0,0.0,1,111,282.0,0.0,0.0,0,74,0.0,0.0,480.8665532309212,740.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,114943,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,962.593903930928,282.0,49302.19519735991,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015009473656045772,49302.19519735991,10,5,10,10_0,10_4,10_1_0 +14931,1,79.0,230.0,7,111,474.0,,,0,78,0.0,0.0,,540.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,2,,5,114944,1,1,0,0,2,,320.0,466.0,11,0.0,0.0,2.0,1.0,1.0,1,1,118.36696349400106,474.0,15204.617532745364,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035515526703452496,15204.617532745364,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +14932,2,57.0,0.0,6,111,1068.0,0.0,0.0,0,37,0.0,0.0,1821.1541803213613,1158.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,114945,2,1,2,0,1,,150.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,3050.17305744562,1068.0,62188.406237568495,0,1,0,1,110.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018620834172470613,62188.406237568495,10,5,10,10_1,10_3,10_0_0 +14933,2,65.0,0.0,1,111,280.0,1300.0,0.0,0,77,0.0,0.0,477.4561521441771,1580.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,1,114946,1,2,1,0,2,,156.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1392.14970264508,280.0,24877.90363113997,0,5,0,1,62.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06351017446752608,24877.90363113997,7,4,7,7_1,7_3,7_1_0 +14934,1,41.0,388.0,2,111,500.0,0.0,0.0,0,85,0.0,0.0,852.6002716860306,1011.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114947,2,1,0,1,1,1133.0,0.0,352.0,31,2.0,0.0,4.0,3.0,2.0,3,3,272.97308332263,500.0,13782.938123379863,0,6,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0733515590761487,6891.469061689932,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +14935,1,29.0,220.0,2,111,0.0,0.0,300.0,0,62,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,50,0,0,0,0,0,0,0,0,0,,2,,2,114948,2,2,0,0,1,600.0,300.0,160.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1288.15639836149,0.0,6850.92292283218,0,4,2,3,64.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.043789720506150376,6850.92292283218,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +14936,2,45.0,0.0,1,111,1300.0,0.0,0.0,37,35,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,114949,2,1,0,1,1,,414.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,312.967449044961,1300.0,85340.00597981231,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01523318384003304,40638.09808562491,9,5,9,9_0,9_4,9_1_0 +14937,2,79.0,0.0,2,111,600.0,0.0,0.0,0,77,4218.731404146406,0.0,1023.1203260232367,4681.0,112.2327272571182,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,114950,2,1,2,0,2,,200.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,945.830929965432,600.0,29347.87121508092,0,5,0,1,140.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1595004954769798,29347.87121508092,8,4,8,8_1,8_2,8_0_1 +14938,0,37.0,0.0,1,300,1380.0,0.0,0.0,11,11,0.0,993.245457757668,2353.1767498534446,2290.0,221.69427606344334,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,114951,2,3,4,0,1,,1580.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1238.4780965512,1380.0,22031.91653748916,1,1,0,1,115.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10394011778790885,10491.38882737579,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +14939,2,37.0,0.0,1,120,1700.0,0.0,0.0,56,47,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,114952,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1066.32761945905,1700.0,42219.09795622968,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04026613741872131,20104.33236010937,5,3,5,5_1,5_0,5_1_0 +14940,2,74.0,0.0,1,111,1150.0,0.0,0.0,0,74,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,114953,1,2,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,968.187527759889,1150.0,41260.0588084051,0,5,0,1,93.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027871991296477095,41260.0588084051,9,5,9,9_0,9_4,9_1_0 +14941,2,74.0,0.0,2,111,1200.0,0.0,0.0,77,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,2,114954,2,3,0,0,2,,350.0,491.0,41,0.0,2.0,1.0,2.0,1.5,2,2,2212.20029037169,1200.0,20300.976831712676,5,5,2,3,33.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.05911045610994685,13533.984554475117,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +14942,2,78.0,0.0,8,111,768.0,,,0,72,0.0,0.0,,1044.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,114955,2,1,0,0,2,,1200.0,,21,2.0,2.0,4.0,4.0,2.3,3,3,146.41016819233565,768.0,31464.13007245237,0,5,0,1,137.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033180640862975834,13680.056553240163,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +14943,2,46.0,0.0,7,111,480.0,0.0,0.0,0,55,1160.1511361402618,0.0,818.4962608185893,1580.0,0.0,0.0,31,1,1,2,1,1,2,2,2,3,45.0,2,,5,114956,2,1,0,1,1,670.0,0.0,512.0,32,1.0,0.0,3.0,3.0,1.8,2,1,693.709091186263,480.0,28860.780676800558,0,1,2,3,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05474557385310325,16033.767042666976,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +14944,2,52.0,0.0,6,112,600.0,0.0,0.0,85,38,0.0,0.0,1023.1203260232367,666.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,114957,2,1,2,0,1,,300.0,,42,1.0,2.0,5.0,3.0,2.0,3,2,1678.47489798746,600.0,52166.81345759413,5,1,0,1,100.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012766737238826837,26083.406728797065,7,4,7,7_1,7_1,7_0_0 +14945,2,84.0,0.0,2,111,192.0,0.0,0.0,0,77,0.0,0.0,327.3985043274357,192.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,114958,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,301.196761670772,192.0,14851.554292616484,0,5,0,1,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012927939811353864,14851.554292616484,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +14946,1,50.0,245.0,1,111,509.0,0.0,0.0,0,85,0.0,0.0,867.9470765763791,538.0,40.18208753649911,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,114959,2,1,0,0,1,,0.0,270.0,11,0.0,1.0,1.0,1.0,1.0,1,1,2325.97428251958,509.0,4942.35368238091,0,7,2,3,25.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.10885501819060954,4942.35368238091,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +14947,2,52.0,0.0,6,111,621.0,0.0,0.0,75,52,0.0,0.0,1058.92953743405,621.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,4,114960,1,1,0,0,1,,0.0,,42,3.0,0.0,4.0,7.0,4.0,7,7,425.256828640157,621.0,48410.82732105424,5,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01282770889003011,12102.70683026356,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +14948,2,24.0,0.0,1,212,2000.0,0.0,0.0,65,62,0.0,595.9472746546007,3410.4010867441225,2505.0,76.20740739680865,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,114961,2,3,3,0,1,,210.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,796.364849369447,2000.0,39787.02051278749,1,1,1,2,120.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.062960230942523,22103.900284881936,6,3,6,6_1,6_0,6_1_0 +14949,2,69.0,0.0,5,400,2600.0,0.0,0.0,75,90,0.0,198.6490915515336,4433.521412767359,2750.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,114962,2,2,1,0,1,,324.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1107.56994853914,2600.0,34876.48639279983,5,5,0,1,114.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07884968597546946,23250.99092853322,6,3,6,6_1,6_0,6_0_0 +14950,1,22.0,250.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,354.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,10.0,2,,2,114963,2,1,0,1,1,916.0,0.0,270.0,12,1.0,0.0,2.0,1.0,1.0,1,1,372.821308611118,0.0,14901.25962448665,0,1,2,3,50.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023756380931601633,14901.25962448665,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +14951,2,47.0,0.0,9,111,480.0,,,42,67,0.0,0.0,,606.0,174.58424239996165,,42,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,114964,2,1,0,0,2,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,117.6279686936611,480.0,46254.778924183614,1,1,1,2,117.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013101348965331711,22026.085201992195,6,3,6,6_1,6_2,6_0_0 +14952,1,46.0,170.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1126.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,114965,2,2,0,0,1,,0.0,240.0,12,1.0,2.0,1.0,1.0,1.0,1,1,2099.28423725243,0.0,3283.181610999407,0,4,3,4,12.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.342960010566471,3283.181610999407,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +14953,1,46.0,293.0,5,112,700.0,150.0,0.0,0,68,0.0,0.0,1193.6403803604428,850.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,1,7.0,2,,3,114966,1,1,0,1,1,3600.0,0.0,711.0,32,1.0,1.0,5.0,9.0,4.199999999999999,6,4,462.106475026932,700.0,47040.08342775863,0,1,2,3,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01806969584366022,11200.019863752057,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +14954,2,41.0,0.0,7,111,1600.0,0.0,0.0,38,38,0.0,132.4327277010224,2728.320869395298,1700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,5,114967,2,1,2,0,1,,520.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,622.2156736261,1600.0,104152.73900470833,1,1,1,2,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01632218236644885,49596.54238319444,10,5,10,10_1,10_4,10_0_0 +14955,2,77.0,0.0,1,111,288.0,67.0,0.0,0,77,0.0,0.0,491.09775649115363,407.0,0.0,127.19977121196587,71,0,0,0,0,0,0,0,0,0,,2,,1,114968,2,1,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1002.53776505882,288.0,20397.283082086302,0,5,0,1,33.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01995363786255648,20397.283082086302,5,3,5,5_0,5_4,5_1_0 +14957,2,66.0,0.0,5,221,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1096.0,133.01656563806603,0.0,50,2,2,2,2,2,2,2,1,0,,3,,3,114970,2,2,0,0,1,,200.0,300.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2169.40928741549,1000.0,22161.095497319136,0,5,2,3,45.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.04945603885568675,22161.095497319136,6,3,6,6_0,6_1,6_0_0 +14958,2,58.0,0.0,2,111,950.0,400.0,0.0,77,48,0.0,0.0,1619.9405162034582,1350.0,0.0,759.4016191759156,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,114971,2,2,0,0,2,,0.0,660.0,42,1.0,2.0,3.0,2.0,1.5,2,2,432.809364747381,950.0,30976.163668306337,6,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.043581897824915936,20650.77577887089,5,3,5,5_0,5_3,5_0_1 +14959,2,50.0,0.0,6,111,285.0,361.0,0.0,0,38,0.0,0.0,485.98215486103743,646.0,0.0,685.3599613062638,71,0,0,0,0,0,0,0,0,3,60.0,2,,4,114972,2,1,0,0,1,,0.0,461.0,32,1.0,0.0,3.0,2.0,1.5,2,2,723.69170375141,285.0,40688.259557824815,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015876815745385374,27125.50637188321,7,4,7,7_0,7_4,7_0_0 +14960,0,52.0,0.0,7,111,200.0,,,0,47,0.0,0.0,,224.0,33.25414140951651,,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,114973,2,2,0,0,2,,180.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,37.082860029656906,200.0,17997.225007267,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012446363253754525,17997.225007267,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +14961,2,77.0,0.0,5,112,230.0,1280.0,0.0,77,75,0.0,0.0,392.1961249755741,1932.0,0.0,2430.0851813629297,50,0,0,0,0,0,0,0,0,0,,1,,3,114974,2,1,1,0,1,,550.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1930.88528370979,230.0,38010.65816922113,5,5,0,1,90.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05082784916269678,25340.438779480755,7,4,7,7_1,7_0,7_0_0 +14962,2,84.0,0.0,2,120,510.0,,,0,77,0.0,0.0,,639.0,178.7410100761512,,71,2,2,1,2,1,2,2,2,0,,1,,2,114975,2,1,0,0,2,,400.0,,11,0.0,10.0,7.0,1.0,1.0,1,1,88.32229583407285,510.0,11056.05560735444,0,5,0,1,115.0,0,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05779638079741024,11056.05560735444,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +14963,2,32.0,0.0,1,111,1300.0,0.0,0.0,46,43,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,20,2,2,2,1,2,2,2,2,3,15.0,2,,1,114976,1,3,0,0,2,,0.0,773.0,43,2.0,0.0,2.0,3.0,1.8,2,2,2133.00615694626,1300.0,46292.34040034432,4,1,2,3,65.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.02808239956669658,25717.966889080177,7,4,7,7_0,7_3,7_1_0 +14964,2,76.0,0.0,7,111,1300.0,0.0,0.0,77,74,0.0,0.0,2216.7607063836795,1450.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,114977,2,1,2,0,1,,312.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,966.689239270272,1300.0,25754.90759738757,5,5,0,1,114.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056299949612208265,17169.93839825838,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +14965,2,69.0,0.0,5,111,960.0,,,75,75,0.0,0.0,,1121.0,223.07986528883987,,41,0,0,0,0,0,0,0,0,0,,1,,3,114978,1,2,0,0,2,,3567.0,,41,1.0,0.0,7.0,3.0,2.0,3,3,80.94073096083527,960.0,63245.34621998772,5,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017724624292525814,31622.67310999386,8,4,8,8_1,8_3,8_0_0 +14966,2,50.0,0.0,9,111,442.0,895.0,0.0,0,52,0.0,0.0,753.6986401704511,1337.0,0.0,1699.1611229061111,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,114979,2,1,0,0,1,,275.0,503.0,22,2.0,4.0,4.0,3.0,2.0,3,3,1909.46682743096,442.0,58441.8652840177,0,1,2,3,83.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02287743543951589,29220.93264200885,8,4,8,8_0,8_3,8_0_0 +14968,2,34.0,0.0,2,120,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1719.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,114981,2,1,4,0,1,,351.0,667.0,42,1.0,0.0,7.0,3.0,1.8,2,2,376.729632875881,0.0,28693.550321704828,6,4,2,3,160.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059908933566150124,15940.861289836015,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +14969,2,39.0,0.0,9,111,572.0,770.0,0.0,38,33,0.0,0.0,975.374710808819,1342.0,0.0,1461.8481169136376,20,1,2,2,1,1,2,2,2,2,30.0,1,2012.0,6,114982,2,1,1,0,1,,161.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,809.996901609531,572.0,54910.388723159434,1,1,1,2,130.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.024439819699072492,26147.804153885445,7,4,7,7_1,7_3,7_0_0 +14970,2,65.0,0.0,7,111,1200.0,,,74,74,0.0,0.0,,1320.0,166.2707070475825,,41,0,0,0,0,0,0,0,0,0,,1,,5,114983,2,2,0,0,2,,350.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,127.84246756819513,1200.0,67911.7133037116,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01943700041989454,45274.47553580773,10,5,10,10_1,10_2,10_0_0 +14971,2,48.0,0.0,2,111,300.0,750.0,0.0,0,62,0.0,0.0,511.56016301161833,1050.0,0.0,1423.8780359548418,50,0,0,0,0,0,0,0,0,2,50.0,1,,2,114984,2,2,4,0,1,,300.0,610.0,12,1.0,2.0,5.0,1.0,1.0,1,1,277.675634470917,300.0,31675.68839778509,0,1,2,3,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03314845085019276,31675.68839778509,8,4,8,8_1,8_2,8_0_1 +14972,2,53.0,0.0,6,112,2900.0,0.0,0.0,75,38,0.0,413.19011042718984,4945.081575778978,3412.0,277.1178450793042,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,114985,2,1,2,0,1,,621.0,,42,2.0,0.0,7.0,3.0,2.0,3,3,805.82573887507,2900.0,64919.25317164262,5,1,0,1,150.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0525575978358666,32459.62658582131,8,4,8,8_1,8_0,8_0_0 +14973,2,61.0,0.0,6,120,400.0,,,77,54,0.0,0.0,,652.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,4,114986,2,2,0,0,1,,456.0,,42,2.0,0.0,4.0,4.0,2.5,4,4,118.686559497391,400.0,93458.68234387119,6,1,0,1,112.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006976344879345035,37383.472937548475,9,5,9,9_1,9_2,9_0_0 +14974,2,33.0,0.0,9,112,1200.0,0.0,0.0,52,47,0.0,66.2163638505112,2046.2406520464733,1250.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,114987,2,1,1,0,1,,120.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,824.276474107711,1200.0,47421.90149263573,1,1,1,2,95.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02635912860208939,26345.500829242068,7,4,7,7_1,7_0,7_0_0 +14975,1,49.0,307.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1903.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,114988,1,2,0,0,2,,331.0,266.0,31,1.0,0.0,4.0,2.0,1.5,2,2,537.472208398447,0.0,9379.53376819889,0,7,2,3,140.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.2028885493703409,6253.022512132593,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +14976,2,59.0,0.0,1,111,786.0,1450.0,0.0,43,38,0.0,0.0,1340.28762709044,2236.0,0.0,2752.830869512694,12,2,2,2,1,2,2,1,2,2,25.0,1,,1,114989,2,3,4,0,1,,450.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,328.367392941188,786.0,132059.70409213033,1,1,1,2,250.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.01693173565223252,66029.85204606516,10,5,10,10_1,10_3,10_1_0 +14977,2,29.0,0.0,7,300,2500.0,,,0,90,0.0,0.0,,2592.0,127.47420873647992,,42,0,0,0,0,0,0,0,0,0,,1,,5,114990,2,1,0,0,1,,554.0,,32,4.0,0.0,5.0,7.0,3.6,5,5,81.94519813803447,2500.0,35712.32715841535,0,2,0,1,200.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07257998025449916,9920.090877337596,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +14978,2,29.0,0.0,2,111,900.0,0.0,0.0,0,81,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,114991,2,1,0,0,1,,300.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2058.85354070969,900.0,8128.298044508291,0,4,0,1,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.11072428632314554,8128.298044508291,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +14979,2,56.0,0.0,2,111,360.0,1291.0,0.0,62,52,0.0,0.0,613.872195613942,1651.0,0.0,2450.9687258902677,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,114992,2,2,2,0,1,,432.0,414.0,43,2.0,3.0,4.0,2.0,1.5,2,2,518.572223649117,360.0,36979.65735202722,1,1,2,3,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04464616814275301,24653.104901351482,7,4,7,7_1,7_2,7_0_1 +14980,2,54.0,0.0,1,112,500.0,90.0,0.0,11,11,2109.365702073203,0.0,852.6002716860306,2590.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,0,,1,,1,114993,1,2,5,0,1,,80.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,956.015813889503,500.0,39087.45141956292,1,1,0,1,110.0,5,0,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06626167493498253,26058.300946375282,7,4,7,7_1,7_0,7_1_0 +14981,2,90.0,0.0,2,111,210.0,,,77,78,0.0,0.0,,360.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,114994,2,3,0,0,2,,652.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,89.72512845188683,210.0,18008.951065814184,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019990059314635846,12005.967377209456,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +14982,2,50.0,0.0,9,111,1200.0,,,0,53,0.0,0.0,,1200.0,0.0,,41,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,114995,2,3,0,0,2,,240.0,674.0,32,1.0,0.0,3.0,2.0,1.5,2,1,118.18303789331114,1200.0,42474.47291878305,0,1,2,3,77.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028252263478220498,28316.3152791887,8,4,8,8_0,8_3,8_0_0 +14983,2,53.0,0.0,2,111,240.0,125.0,0.0,0,56,0.0,0.0,409.2481304092947,365.0,0.0,237.31300599247362,70,2,1,2,1,2,2,2,2,1,10.0,2,,2,114996,2,1,0,1,1,662.0,124.0,213.0,12,1.0,3.0,1.0,1.0,1.0,1,1,358.574103488138,240.0,15551.036986917201,0,1,2,3,33.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02347110358666549,15551.036986917201,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +14984,2,40.0,0.0,2,111,250.0,100.0,0.0,0,33,0.0,0.0,426.3001358430153,350.0,0.0,189.8504047939789,10,0,0,0,0,0,0,0,0,3,15.0,2,,2,114997,2,1,0,1,1,555.0,0.0,940.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1234.87758720724,250.0,4867.6889246184855,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0719027048400452,4867.6889246184855,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +14985,2,42.0,0.0,9,120,0.0,,,85,37,0.0,0.0,,783.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,114998,2,1,0,0,1,,310.0,1500.0,42,1.0,1.0,4.0,3.0,1.8,2,2,223.8351403559041,0.0,84353.32998120287,6,1,2,3,147.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009282383993311018,46862.96110066826,10,5,10,10_1,10_2,10_0_0 +14986,2,54.0,0.0,2,111,680.0,,,34,34,0.0,0.0,,890.0,290.9737373332694,,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,114999,2,1,0,0,2,,210.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,111.39712406786076,680.0,100751.67491829369,1,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008833600044086223,47976.98805633033,10,5,10,10_1,10_2,10_0_1 +14987,2,40.0,0.0,9,111,0.0,,,0,53,0.0,0.0,,21.0,29.09737373332694,,50,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,115000,1,1,0,0,2,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,79.79627212090355,0.0,28443.796047540884,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0007382980796550733,28443.796047540884,8,4,8,8_1,8_3,8_0_0 +14988,2,67.0,0.0,7,112,1325.0,0.0,0.0,78,75,0.0,0.0,2259.390719967981,1405.0,110.84713803172167,0.0,70,2,2,2,1,2,2,2,2,0,,1,,5,115001,2,1,3,0,1,,400.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,895.685840297414,1325.0,32582.0,5,5,0,1,112.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.04312196918543981,21721.333333333332,6,3,6,6_1,6_1,6_0_0 +14989,1,33.0,270.0,1,111,220.0,180.0,0.0,0,62,0.0,0.0,375.14411954185346,418.0,24.940606057137376,341.730728629162,71,0,0,0,0,0,0,0,0,0,,1,,1,115002,1,2,2,0,1,,245.0,20.0,12,1.0,0.0,3.0,1.0,1.0,1,1,275.12364893207,220.0,8067.485213454827,0,4,2,3,45.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05181292421867301,8067.485213454827,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +14990,2,29.0,0.0,9,112,1000.0,0.0,0.0,47,48,0.0,99.3245457757668,1705.2005433720612,1076.0,1.385589225396521,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,115003,2,1,1,0,1,,133.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1911.39742182844,1000.0,32400.767216907476,1,1,1,2,107.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03320909016742413,21600.51147793832,6,3,6,6_1,6_0,6_0_0 +14991,2,60.0,0.0,6,111,820.0,756.0,0.0,56,63,0.0,0.0,1398.2644455650902,1576.0,0.0,1435.2690602424805,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,115004,2,1,2,0,1,,388.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1109.98086482406,820.0,37374.26783998088,1,1,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04216805013405732,24916.178559987253,7,4,7,7_1,7_3,7_0_0 +14992,2,63.0,0.0,5,111,400.0,,,0,86,0.0,0.0,,568.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,3,115005,2,2,0,0,2,,250.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,112.46237329512364,400.0,13835.173925574496,0,6,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041054778426026485,13835.173925574496,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +14993,2,92.0,0.0,2,111,300.0,2500.0,0.0,0,77,0.0,0.0,511.56016301161833,2800.0,0.0,4746.260119849472,71,0,0,0,0,0,0,0,0,0,,1,,2,115006,1,2,3,0,2,,330.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1524.09906517506,300.0,19896.818517439657,0,5,0,1,100.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14072601594801634,19896.818517439657,5,3,5,5_1,5_2,5_0_1 +14994,2,64.0,0.0,5,112,900.0,0.0,0.0,78,74,421.8731404146406,0.0,1534.680489034855,1360.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,115007,2,1,2,0,1,,300.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1920.71375876299,900.0,51251.12442713979,5,5,0,1,110.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026536003164836293,34167.416284759856,9,5,9,9_1,9_0,9_0_0 +14995,1,43.0,238.0,1,111,2300.0,0.0,0.0,52,22,0.0,0.0,3921.9612497557405,2500.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115008,2,1,2,0,1,,870.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,4,2,2105.85148858935,2300.0,43997.103431705735,1,1,1,2,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.056821922467705434,14192.614010227659,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +14996,1,25.0,130.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1107.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2013.0,6,115009,2,2,1,0,1,,351.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,494.422830171293,0.0,14792.66809391811,0,4,1,2,90.0,7,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07483437017390625,11378.975456860084,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +14997,1,32.0,522.0,7,111,384.0,,,0,54,0.0,0.0,,384.0,0.0,,42,2,2,1,2,1,2,2,2,2,20.0,1,,5,115010,1,2,0,0,2,,60.0,800.0,32,1.0,0.0,4.0,5.0,2.2,1,1,155.8333136268066,384.0,16159.545284797947,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.023763044889712773,7345.247856726339,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +14998,1,26.0,365.0,1,120,280.0,1010.0,0.0,0,56,0.0,0.0,477.4561521441771,1290.0,0.0,1917.4890884191868,43,1,2,2,1,1,2,2,2,0,,1,,1,115011,2,1,1,0,1,,260.0,507.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1223.31812177154,280.0,14588.0,0,4,3,4,75.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08842884562654237,11221.538461538461,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +15000,2,75.0,0.0,2,300,364.0,0.0,0.0,78,75,2109.365702073203,0.0,620.6929977874303,2484.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,115013,2,2,3,0,1,,112.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,963.136801605142,364.0,23354.766322898726,5,5,0,1,115.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10635944567617035,15569.844215265817,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +15001,2,47.0,0.0,9,300,2000.0,0.0,0.0,85,64,0.0,0.0,3410.4010867441225,2090.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,115014,2,1,2,0,1,,700.0,649.0,42,1.0,2.0,4.0,3.0,1.8,2,2,2042.8522173971,2000.0,17342.345577688,6,1,2,3,115.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12051426323143476,9634.636432048888,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +15002,2,50.0,0.0,8,111,0.0,,,85,33,0.0,0.0,,545.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,115015,2,1,0,0,1,,925.0,,42,1.0,0.0,6.0,5.0,3.0,5,5,128.2490936392957,0.0,48065.681035136935,6,1,1,2,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011338651367523421,16021.893678378978,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15003,2,54.0,0.0,5,111,0.0,0.0,400.0,77,37,0.0,0.0,252.12731616589753,400.0,0.0,478.69285902587234,12,0,0,0,0,0,0,0,0,2,15.0,2,,3,115016,1,2,0,1,1,250.0,0.0,663.0,42,2.0,1.0,3.0,3.0,2.0,3,3,952.117583831416,0.0,77628.9778742879,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005152715016391928,38814.48893714395,9,5,9,9_0,9_4,9_0_0 +15004,1,58.0,358.0,7,111,500.0,,,0,43,0.0,0.0,,626.0,174.58424239996165,,70,0,0,0,0,0,0,0,0,0,,2,,5,115017,2,1,0,0,2,,287.0,353.0,32,1.0,4.0,3.0,2.0,1.5,2,1,83.45024918367706,500.0,9372.1727722632,0,4,2,3,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06679347630601062,6248.115181508801,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15006,2,43.0,0.0,2,111,340.0,0.0,0.0,54,45,0.0,0.0,579.7681847465008,341.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,6.0,2,,2,115019,1,2,0,1,1,167.0,0.0,115.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1176.68010122843,340.0,51887.02406144953,1,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006571970664498999,34591.34937429969,9,5,9,9_0,9_4,9_0_1 +15008,1,25.0,130.0,5,120,1040.0,0.0,0.0,56,63,0.0,0.0,1773.4085651069436,1130.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,115021,2,1,1,0,1,,500.0,446.0,43,2.0,0.0,5.0,4.0,2.1,2,2,524.492998985918,1040.0,27871.663417766526,1,1,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04054296950499525,13272.220675126917,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +15009,2,72.0,0.0,2,222,300.0,0.0,0.0,75,74,632.8097106219609,278.10872817214704,511.56016301161833,1370.0,360.2531986030954,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,115022,1,2,2,0,1,,80.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1057.43718825353,300.0,48844.818744245415,5,5,0,1,80.0,1,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028048010725014814,32563.21249616361,8,4,8,8_1,8_0,8_0_1 +15010,2,55.0,0.0,2,111,1200.0,3800.0,0.0,34,46,0.0,397.2981831030672,2046.2406520464733,5300.0,0.0,7214.3153821711985,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,115023,1,3,4,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,893.681849349942,1200.0,137329.15720393843,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0385934065853861,54931.66288157537,10,5,10,10_1,10_4,10_0_1 +15011,2,66.0,0.0,1,111,1000.0,2110.0,0.0,46,75,0.0,0.0,1705.2005433720612,3110.0,0.0,4005.843541152955,42,0,0,0,0,0,0,0,0,0,,1,,1,115024,2,1,2,0,1,,520.0,713.0,42,1.0,6.0,8.0,3.0,2.0,3,3,392.500447648325,1000.0,47933.93707558145,1,5,2,3,200.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06488096304495503,23966.968537790726,6,3,6,6_1,6_2,6_1_0 +15012,2,60.0,0.0,2,111,515.0,600.0,0.0,42,31,0.0,0.0,878.1782798366115,1115.0,0.0,1139.1024287638734,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,115025,2,1,3,0,1,,300.0,,43,2.0,2.0,6.0,4.0,2.3,3,2,450.764594931588,515.0,57642.53954670696,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019343353168826485,25061.97371595955,7,4,7,7_1,7_3,7_0_1 +15013,2,28.0,0.0,1,111,408.0,79.0,0.0,0,22,0.0,0.0,695.7218216958009,487.0,0.0,149.98181978724332,20,2,1,2,2,2,2,2,1,2,20.0,2,,1,115026,2,2,0,1,1,630.0,0.0,641.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1514.9740245583,408.0,21267.09194711784,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.022899228592746047,21267.09194711784,5,3,5,5_0,5_4,5_1_0 +15014,2,82.0,0.0,5,111,0.0,,,0,77,0.0,0.0,,341.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,115027,1,2,0,0,2,,354.0,500.0,11,0.0,5.0,2.0,1.0,1.0,1,1,131.36868169454863,0.0,2872.4496001163952,0,5,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11871400632623189,2872.4496001163952,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +15015,2,59.0,0.0,6,111,510.0,,,0,43,0.0,0.0,,602.0,127.47420873647992,,33,0,0,0,0,0,0,0,0,2,90.0,1,,4,115028,2,1,0,0,2,,220.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,261.5638464251961,510.0,18079.0,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03329830189722883,12052.666666666666,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +15016,2,89.0,0.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,875.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115029,2,1,2,0,1,,168.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1731.8189061925,0.0,11764.735623880817,0,5,0,1,120.0,7,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07437481197825378,11764.735623880817,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +15017,2,32.0,0.0,2,111,350.0,0.0,0.0,43,35,0.0,0.0,596.8201901802214,350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,75.0,2,,2,115030,2,1,0,1,1,,0.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,461.218716728342,350.0,36815.49506605372,1,1,1,2,118.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00950686658897391,20453.05281447429,5,3,5,5_0,5_2,5_0_1 +15018,2,45.0,0.0,7,112,2500.0,,,81,21,0.0,0.0,,2610.0,152.4148147936173,,50,0,0,0,0,0,0,0,0,2,1.0,1,,5,115031,2,2,0,0,2,,300.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,4,2,85.51237016118151,2500.0,24719.07410747276,4,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10558647903446261,7973.89487337831,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +15019,2,54.0,0.0,5,111,1300.0,0.0,0.0,0,52,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,3,115032,2,2,0,1,1,40.0,0.0,400.0,32,2.0,0.0,3.0,2.0,1.5,2,2,293.50119292369,1300.0,41947.59744053721,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03099104786258174,27965.06496035814,7,4,7,7_0,7_4,7_0_0 +15020,2,42.0,0.0,6,111,300.0,800.0,0.0,0,23,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,115033,2,1,1,0,1,,350.0,950.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1355.48377253989,300.0,57445.87674100975,0,1,2,3,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019148458730280402,35903.67296313109,9,5,9,9_1,9_3,9_0_0 +15021,2,84.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,463.51454695357836,0.0,1386.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115034,1,2,3,0,2,,351.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,303.297010624196,0.0,10253.720297285457,0,5,0,1,90.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1351704512914133,10253.720297285457,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +15022,2,46.0,0.0,9,111,240.0,1200.0,0.0,0,46,0.0,0.0,409.2481304092947,1440.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,115035,2,1,1,0,1,,160.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,518.916840006507,240.0,22752.28845696459,0,1,1,2,150.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06329033682584174,22752.28845696459,6,3,6,6_1,6_2,6_0_0 +15023,0,43.0,0.0,2,111,151.0,0.0,0.0,0,46,0.0,0.0,257.48528204918125,580.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,115036,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2466.22378362758,151.0,20179.593041362536,0,1,5,0,18.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028741907669354968,20179.593041362536,5,3,5,5_0,5_3,5_0_1 +15024,2,84.0,0.0,2,111,600.0,0.0,0.0,0,77,1265.6194212439218,1059.4618216081792,1023.1203260232367,2660.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115037,2,1,1,0,1,,350.0,,21,1.0,8.0,5.0,2.0,1.5,2,2,1850.12075863213,600.0,41004.20063293502,0,5,0,1,110.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06487140241586514,27336.13375529001,7,4,7,7_1,7_3,7_0_1 +15025,2,36.0,0.0,5,222,460.0,0.0,0.0,54,52,1898.4291318658827,0.0,784.3922499511482,2410.0,207.83838380947813,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,3,115038,2,1,2,0,1,,244.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1339.13308008498,460.0,42002.59178872085,1,1,1,2,138.0,1,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05737741166360997,20001.234185105164,5,3,5,5_1,5_0,5_0_0 +15026,1,43.0,196.0,2,111,400.0,0.0,0.0,0,90,0.0,0.0,682.0802173488245,400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,115039,2,1,0,0,1,,100.0,181.0,12,1.0,1.0,1.0,1.0,1.0,1,1,306.203250915551,400.0,10975.348315602056,0,4,2,3,37.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.036445312576674965,10975.348315602056,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15027,2,43.0,0.0,2,111,100.0,0.0,0.0,0,52,0.0,0.0,170.52005433720612,174.0,0.0,0.0,42,2,2,2,2,1,2,2,2,3,50.0,2,,2,115040,1,2,0,1,1,20.0,0.0,298.0,12,1.0,0.0,1.0,1.0,1.0,1,1,431.80761233792,100.0,21776.889114160243,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.00799012196314385,21776.889114160243,6,3,6,6_0,6_4,6_0_1 +15028,2,33.0,0.0,9,111,879.0,,,46,42,0.0,0.0,,948.0,95.60565655235995,,20,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,115041,2,1,0,0,1,,176.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,110.31221349694546,879.0,80066.00193144195,1,1,1,2,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011840231523134416,44481.112184134414,10,5,10,10_0,10_2,10_0_0 +15029,2,42.0,0.0,7,112,620.0,980.0,0.0,54,37,0.0,609.190547424703,1057.224336890678,2060.0,0.0,1860.5339669809932,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,115042,2,1,2,0,1,,950.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,838.941897274037,620.0,60613.16696013926,1,1,1,2,170.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033986014975173756,33673.98164452181,9,5,9,9_1,9_2,9_0_0 +15030,2,54.0,0.0,7,111,690.0,,,0,52,0.0,0.0,,694.0,5.542356901586084,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,115043,2,1,0,0,2,,520.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,29.833541563066436,690.0,28710.882342813333,0,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024172019226490832,28710.882342813333,8,4,8,8_1,8_2,8_0_0 +15031,1,29.0,110.0,2,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,181.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,25.0,2,,2,115044,1,2,0,1,2,305.0,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1141.54373234464,0.0,27929.0860769644,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.006480698992484641,27929.0860769644,7,4,7,7_0,7_4,7_0_1 +15032,1,85.0,102.0,2,111,182.0,926.0,0.0,0,78,0.0,0.0,310.34649889371514,1108.0,0.0,1758.0147483922447,71,0,0,0,0,0,0,0,0,0,,2,,2,115045,2,3,0,0,1,,199.0,286.0,21,0.0,0.0,3.0,2.0,1.5,2,2,1516.00527966916,182.0,33276.435338511474,0,5,2,3,75.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03329683569554969,22184.290225674315,6,3,6,6_0,6_2,6_0_1 +15033,0,41.0,0.0,1,111,210.0,1000.0,0.0,0,37,0.0,0.0,358.0921141081328,1210.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,0,,2,,1,115046,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1312.22812577329,210.0,67106.30934885472,0,4,5,0,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018031091438954996,67106.30934885472,10,5,10,10_0,10_4,10_1_0 +15034,1,44.0,266.0,2,111,328.0,150.0,0.0,0,55,0.0,0.0,559.3057782260361,478.0,0.0,284.77560719096834,12,0,0,0,0,0,0,0,0,0,,2,,2,115047,1,1,0,1,1,796.0,0.0,508.0,32,2.0,0.0,4.0,3.0,2.0,3,3,263.405355658539,328.0,18717.47478614305,0,4,2,3,77.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025537632905154154,9358.737393071526,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15035,2,54.0,0.0,2,111,600.0,0.0,0.0,0,48,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,10.0,2,,2,115048,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,290.750240044296,600.0,28654.981440317522,0,1,0,1,70.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.020938767706050604,28654.981440317522,8,4,8,8_0,8_3,8_0_1 +15036,2,49.0,0.0,5,112,700.0,0.0,0.0,0,52,0.0,0.0,1193.6403803604428,780.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,115049,2,1,0,0,1,,0.0,334.0,32,1.0,0.0,3.0,2.0,1.5,2,2,751.531282259489,700.0,18649.34225508837,0,1,2,3,70.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.041824531360465614,12432.89483672558,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +15037,1,62.0,254.0,2,211,356.0,57.0,0.0,0,52,0.0,0.0,607.0513934404538,413.0,0.0,108.21473073256797,50,1,2,2,1,2,2,2,2,2,13.0,2,,2,115050,2,1,0,1,1,484.0,48.0,275.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1606.04124616725,356.0,9262.474663888894,0,1,2,3,60.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04458851602694695,9262.474663888894,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +15038,2,66.0,0.0,7,221,450.0,1800.0,0.0,72,75,0.0,105.94618216081791,767.3402445174275,2330.0,0.0,3417.30728629162,70,0,0,0,0,0,0,0,0,0,,1,,5,115051,2,1,2,0,1,,600.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1656.05995318213,450.0,52734.08049385852,5,5,0,1,170.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044183950458211836,35156.05366257235,9,5,9,9_1,9_1,9_0_0 +15039,1,33.0,181.0,7,112,700.0,2000.0,0.0,85,63,0.0,0.0,1193.6403803604428,2700.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,2,,5,115052,1,2,0,0,2,,0.0,513.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1004.82400358388,700.0,30938.379146004583,6,1,2,3,91.0,9,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.087270247328024,14732.56149809742,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +15040,2,45.0,0.0,1,111,700.0,1500.0,0.0,0,23,0.0,0.0,1193.6403803604428,2200.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,1,15.0,1,,1,115053,2,1,2,0,1,,300.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,470.252505598074,700.0,183303.26965915115,0,1,1,2,115.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01200196812686897,183303.26965915115,10,5,10,10_1,10_3,10_1_0 +15041,1,40.0,45.0,2,111,300.0,0.0,0.0,85,37,0.0,0.0,511.56016301161833,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,2,,2,115054,2,2,0,1,1,,0.0,1100.0,42,1.0,0.0,4.0,5.0,2.4,2,2,762.436657561061,300.0,47284.14822394133,6,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.006344621004468075,19701.72842664222,5,3,5,5_0,5_4,5_0_1 +15042,2,31.0,0.0,7,111,253.0,,,85,43,0.0,0.0,,253.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,,5,115055,2,1,0,0,1,,220.0,878.0,42,1.0,0.0,4.0,4.0,2.1,2,2,125.28135512815366,253.0,137118.05412208528,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018451253674788687,65294.31148670727,10,5,10,10_1,10_2,10_0_0 +15043,1,29.0,329.0,2,111,440.0,108.0,0.0,0,85,0.0,0.0,750.2882390837069,548.0,0.0,205.0384371774972,50,0,0,0,0,0,0,0,0,0,,2,,2,115056,1,1,0,1,1,,0.0,365.0,31,0.0,0.0,3.0,3.0,1.6,1,1,347.90151851331,440.0,11149.644033713714,0,6,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04914955117338151,6968.527521071071,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +15044,2,56.0,0.0,5,111,563.0,903.0,0.0,63,37,0.0,0.0,960.0279059184704,1466.0,0.0,1714.3491552896294,60,0,0,0,0,0,0,0,0,3,20.0,2,,3,115057,1,2,0,0,1,,0.0,648.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1062.16676021505,563.0,52783.63841904266,1,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027773758003599724,35189.09227936177,9,5,9,9_0,9_4,9_0_0 +15045,2,33.0,0.0,9,112,300.0,720.0,0.0,46,37,0.0,0.0,511.56016301161833,1020.0,0.0,1366.922914516648,31,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,115058,2,1,1,0,1,,160.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,233.288436039796,300.0,36875.83935829576,1,1,1,2,90.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027660387336255605,17559.923503950362,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15046,0,57.0,0.0,2,111,372.0,,,0,62,0.0,99.3245457757668,,520.0,101.14801345394604,,70,0,0,0,0,0,0,0,0,2,65.0,1,,2,115059,2,1,0,0,1,,102.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,96.56907169622964,372.0,25944.0,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020043169904409498,25944.0,7,4,7,7_1,7_2,7_0_1 +15047,1,42.0,255.0,5,111,140.0,84.0,0.0,0,67,0.0,0.0,238.72807607208856,224.0,0.0,159.4743400269423,71,2,1,2,2,1,2,2,2,0,,2,,3,115060,1,2,0,1,1,1107.0,200.0,286.0,32,2.0,0.0,3.0,2.0,1.5,2,2,461.572373075805,140.0,15295.978961933233,0,4,2,3,108.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.01464437160625442,10197.31930795549,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +15048,1,41.0,270.0,2,111,803.0,,,0,65,0.0,0.0,,979.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,8,,2,115061,2,2,0,0,2,,390.0,321.0,22,2.0,0.0,4.0,3.0,2.0,3,2,93.75638627842365,803.0,23057.398574533654,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04245925648703849,11528.699287266827,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +15049,1,95.0,120.0,2,111,805.0,874.0,0.0,0,75,0.0,0.0,1372.6864374145093,1739.0,83.13535352379125,1659.2925378993755,70,0,0,0,0,0,0,0,0,0,,1,,2,115062,1,3,3,0,2,,310.0,300.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1500.22581321141,805.0,18251.452642559852,0,5,3,4,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.09528008723781764,18251.452642559852,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +15050,2,50.0,0.0,2,111,500.0,200.0,0.0,63,43,0.0,0.0,852.6002716860306,700.0,0.0,379.7008095879578,33,0,0,0,0,0,0,0,0,3,45.0,2,,2,115063,2,1,0,1,1,1350.0,0.0,403.0,43,2.0,0.0,4.0,3.0,2.0,3,2,310.728716024329,500.0,55283.261915254116,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012662060373229379,27641.630957627058,7,4,7,7_0,7_4,7_0_1 +15051,2,72.0,0.0,2,400,1162.0,0.0,0.0,71,71,2847.643697798824,0.0,1981.443031398335,4120.0,357.4820201523024,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,115064,2,2,3,0,1,,155.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1463.00459841668,1162.0,40902.09947777486,5,5,0,1,250.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10072832574862572,27268.066318516572,7,4,7,7_1,7_0,7_0_1 +15052,2,74.0,0.0,1,111,150.0,0.0,0.0,0,75,0.0,0.0,255.78008150580916,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115065,2,1,2,0,1,,280.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,732.685119258771,150.0,34417.78730965935,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.004358211602926099,34417.78730965935,9,5,9,9_1,9_4,9_1_0 +15054,2,85.0,0.0,1,111,501.0,0.0,0.0,77,90,0.0,0.0,854.3054722294027,621.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115067,1,1,1,0,2,,400.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,454.325313376374,501.0,28576.246971238954,5,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021731335140860727,19050.831314159303,5,3,5,5_1,5_4,5_1_0 +15055,2,39.0,0.0,9,112,1080.0,,,42,34,0.0,0.0,,1168.0,121.93185183489385,,20,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,115068,2,2,0,0,1,,532.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,110.39383663872722,1080.0,90362.7303010906,1,1,1,2,150.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012925682923791681,43029.87157194791,9,5,9,9_1,9_2,9_0_0 +15057,1,40.0,197.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,283.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,115070,1,1,0,1,1,552.0,0.0,400.0,22,2.0,0.0,2.0,5.0,2.8,4,3,84.4545392670407,0.0,19119.16634197187,0,1,2,3,53.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01480190061314214,6828.273693561383,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15058,2,57.0,0.0,5,120,600.0,0.0,0.0,62,65,1687.4925616585624,0.0,1023.1203260232367,2320.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,3,115071,2,1,1,0,1,,160.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,522.862533052857,600.0,35444.08056519099,1,1,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0654552174299714,23629.38704346066,6,3,6,6_1,6_0,6_0_0 +15059,2,32.0,0.0,6,111,420.0,,,0,85,0.0,0.0,,570.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,3,,4,115072,2,2,0,0,2,,0.0,250.0,31,0.0,0.0,2.0,4.0,2.1,2,1,42.71736688881006,420.0,3373.23002528868,0,6,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.16897750693749963,1606.3000120422284,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +15060,2,37.0,0.0,6,111,500.0,624.0,0.0,53,54,0.0,0.0,852.6002716860306,1124.0,0.0,1184.6665259144283,43,2,2,2,2,1,2,2,2,3,20.0,1,,4,115073,1,3,3,0,1,,260.0,660.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1251.73904922688,500.0,35012.31242726334,1,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.03210299240688727,23341.54161817556,6,3,6,6_1,6_3,6_0_0 +15061,2,58.0,0.0,5,211,921.0,0.0,0.0,75,37,0.0,529.7309108040896,1570.4897004456684,1336.0,20.783838380947813,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,115074,2,1,2,0,1,,561.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1601.32976755792,921.0,82595.03146691315,7,1,0,1,93.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016175307113178956,55063.354311275434,10,5,10,10_1,10_1,10_0_0 +15062,2,86.0,0.0,1,111,231.0,1239.0,0.0,78,75,0.0,0.0,393.9013255189461,2641.0,0.0,2352.2465153973985,70,0,0,0,0,0,0,0,0,0,,1,,1,115075,2,1,1,0,1,,501.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,209.939479323749,231.0,30163.963180043014,5,5,0,1,173.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08755480784260239,20109.308786695343,5,3,5,5_1,5_3,5_1_0 +15063,2,53.0,0.0,9,111,800.0,,,77,48,0.0,0.0,,888.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,0,,1,2010.0,6,115076,2,1,0,0,1,,200.0,,42,1.0,2.0,6.0,3.0,2.0,3,2,150.33886769279067,800.0,63571.0,5,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013968633496405593,31785.5,8,4,8,8_1,8_2,8_0_0 +15064,2,49.0,0.0,1,111,1100.0,0.0,0.0,85,68,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,115077,2,1,3,0,1,,400.0,390.0,42,3.0,0.0,4.0,4.0,2.5,4,4,549.209709682842,1100.0,28541.913105031617,6,1,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03853981321967105,11416.765242012647,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +15065,1,26.0,120.0,1,400,442.0,0.0,0.0,0,43,963.9801258474538,0.0,753.6986401704511,1356.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,115078,2,1,0,1,1,1045.0,114.0,417.0,12,1.0,0.0,5.0,1.0,1.0,1,1,1621.76697523729,442.0,16165.214500256177,0,1,2,3,80.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08388382350129105,16165.214500256177,4,2,4_1,4_0_1,4_0_1,4_1_0_1 +15066,2,42.0,0.0,6,111,0.0,0.0,2000.0,65,56,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,50,2,2,2,1,2,2,2,2,3,60.0,2,,4,115079,1,3,0,0,2,,300.0,480.0,43,2.0,0.0,5.0,4.0,2.1,2,2,270.35722619192,0.0,39111.707579160015,1,1,2,3,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.05113558378784937,18624.622656742864,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +15067,2,26.0,0.0,8,111,540.0,0.0,0.0,54,38,0.0,0.0,920.8082934209131,540.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,115080,2,1,0,0,1,,130.0,560.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1733.74652596811,540.0,63072.25317917009,1,1,2,3,50.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008561609468208083,42048.16878611339,9,5,9,9_0,9_2,9_0_0 +15068,2,40.0,0.0,8,111,550.0,,,0,48,0.0,0.0,,800.0,346.39730634913025,,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,115081,2,1,0,0,2,,200.0,,22,1.0,0.0,7.0,2.0,1.5,2,2,106.2484995152668,550.0,51012.97132473303,0,1,1,2,154.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015682285881907246,34008.64754982202,9,5,9,9_1,9_2,9_0_0 +15069,2,45.0,0.0,9,112,695.0,1238.0,0.0,34,47,0.0,158.91927324122688,1185.1143776435824,2053.0,0.0,2350.348011349459,31,0,0,0,0,0,0,0,0,3,45.0,1,2007.0,6,115082,2,1,1,0,1,,232.0,,43,2.0,0.0,7.0,4.0,2.5,4,2,483.053702554974,695.0,54937.556071682695,1,1,1,2,140.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03736970019782531,21975.022428673077,6,3,6,6_1,6_1,6_0_0 +15070,2,73.0,0.0,7,112,541.0,1012.0,0.0,77,74,0.0,0.0,922.5134939642851,1553.0,0.0,1921.2860965150664,12,0,0,0,0,0,0,0,0,0,,1,,5,115083,2,1,2,0,1,,410.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1933.21720910442,541.0,55448.55114079373,5,5,0,1,113.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028007945528759747,36965.70076052915,9,5,9,9_1,9_1,9_0_0 +15071,1,64.0,126.0,2,111,224.0,1050.0,0.0,77,78,0.0,0.0,381.9649217153417,1274.0,0.0,1993.4292503367785,71,2,2,2,2,1,2,2,2,0,,2,,2,115084,2,2,0,0,1,,0.0,280.0,41,0.0,1.0,3.0,2.0,1.5,2,2,825.77582279655,224.0,12479.287082608082,6,5,2,3,52.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.10208916515555816,8319.52472173872,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15072,2,36.0,0.0,2,111,900.0,0.0,0.0,52,42,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,115085,2,3,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1234.87204208339,900.0,46944.705787708604,1,1,1,2,90.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020449590297599737,22354.62180367076,6,3,6,6_1,6_3,6_0_1 +15073,1,33.0,357.0,6,111,450.0,,,0,56,0.0,0.0,,494.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,2,,4,115086,2,3,0,0,2,,0.0,507.0,32,1.0,0.0,3.0,2.0,1.3,1,1,150.00240377985335,450.0,9372.831511186749,0,4,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052705524409608406,7209.870393220575,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +15074,2,56.0,0.0,1,111,1125.0,1657.0,0.0,85,48,0.0,0.0,1918.3506112935688,2782.0,0.0,3145.8212074362305,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,115087,2,1,2,0,1,,742.0,,42,3.0,0.0,6.0,4.0,2.5,4,4,332.702255286915,1125.0,55258.69678506696,7,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05034501647443492,22103.478714026784,6,3,6,6_1,6_3,6_1_0 +15075,2,78.0,0.0,2,112,632.0,0.0,0.0,78,78,1318.3535637957518,397.2981831030672,1077.6867434111427,2182.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,115088,2,1,1,0,1,,334.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,865.043750227966,632.0,24250.564224341197,5,5,0,1,97.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08997728794325723,16167.042816227464,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +15076,2,33.0,0.0,9,111,0.0,,,90,22,0.0,0.0,,150.0,207.83838380947813,,43,0,0,0,0,0,0,0,0,2,90.0,1,2009.0,6,115089,2,1,0,0,2,,0.0,,43,2.0,2.0,5.0,5.0,2.5999999999999996,3,2,195.08268571181418,0.0,9745.213628877453,1,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015392171553378091,3748.15908802979,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15077,2,50.0,0.0,5,111,500.0,0.0,0.0,43,31,0.0,0.0,852.6002716860306,500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,3,115090,1,2,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,3,2,614.028003723728,500.0,69331.29427584136,1,1,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007211750555394234,28888.039281600566,8,4,8,8_0,8_4,8_0_0 +15078,2,53.0,0.0,2,111,612.0,,,85,63,0.0,0.0,,687.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,115091,2,3,0,0,2,,540.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,91.34446282821736,612.0,27839.172469398894,6,1,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02467745766348326,18559.448312932596,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +15079,2,35.0,0.0,7,111,450.0,800.0,0.0,52,68,0.0,0.0,767.3402445174275,1250.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,115092,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,766.107216102927,450.0,53339.92882944011,1,1,1,2,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023434601947014272,25399.966109257195,7,4,7,7_0,7_4,7_0_0 +15080,2,45.0,0.0,7,112,670.0,0.0,0.0,37,53,1265.6194212439218,503.2443652638851,1142.484364059281,2320.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,115093,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,840.13507680625,670.0,73227.81704894977,1,1,1,2,144.0,8,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03168194947623764,26152.79180319635,7,4,7,7_1,7_0,7_0_0 +15081,2,60.0,0.0,6,111,2000.0,0.0,0.0,45,33,0.0,211.89236432163582,3410.4010867441225,2160.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,75.0,1,,4,115094,2,2,3,0,1,,600.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,646.32157367391,2000.0,67523.826293181,1,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03198870855779882,45015.884195454004,10,5,10,10_1,10_4,10_0_0 +15082,2,80.0,0.0,1,111,1100.0,0.0,0.0,0,72,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,8,,1,115095,2,1,0,0,1,,100.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1722.25200190981,1100.0,17908.934406369863,0,5,0,1,55.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.061421856546012656,17908.934406369863,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +15083,2,66.0,0.0,1,111,324.0,867.0,0.0,0,77,0.0,0.0,552.4849760525478,1191.0,0.0,1646.0030095637971,71,2,2,2,2,1,2,1,2,0,,2,,1,115096,1,1,0,0,2,,0.0,523.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1218.43728903185,324.0,17326.944006424485,0,5,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.06873687590601095,17326.944006424485,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +15084,1,39.0,656.0,2,111,1300.0,0.0,0.0,0,52,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,2,115097,2,3,0,0,1,,0.0,524.0,32,1.0,0.0,6.0,7.0,2.9999999999999996,2,1,874.219859063689,1300.0,17899.347288060817,0,1,2,3,144.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.07262834666977623,5966.449096020273,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +15085,2,64.0,0.0,7,400,630.0,,,75,78,0.0,0.0,,768.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,115098,1,1,0,0,1,,552.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,95.63164682195476,630.0,39138.217022708224,5,5,1,2,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019622764101757673,26092.144681805483,7,4,7,7_1,7_0,7_0_0 +15086,1,30.0,367.0,2,111,300.0,135.0,0.0,85,48,0.0,0.0,511.56016301161833,435.0,0.0,256.2980464718715,10,0,0,0,0,0,0,0,0,3,35.0,2,,2,115099,2,1,0,1,1,1250.0,0.0,600.0,42,1.0,0.0,2.0,3.0,1.8,2,2,298.610928167502,300.0,35342.66843138339,6,1,3,4,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012308068951967732,19634.815795212995,5,3,5,5_0,5_4,5_0_1 +15087,2,51.0,0.0,2,112,700.0,0.0,0.0,0,34,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,115100,2,1,0,1,1,936.0,0.0,480.0,32,1.0,0.0,4.0,3.0,2.0,3,3,267.974704935035,700.0,54411.531224996135,0,1,2,3,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01286492006823779,27205.765612498068,7,4,7,7_0,7_2,7_0_1 +15088,1,45.0,27.0,2,111,372.0,588.0,0.0,0,67,0.0,0.0,634.3346021344067,960.0,0.0,1116.320380188596,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,115101,1,2,0,1,1,852.0,0.0,352.0,32,1.0,3.0,3.0,3.0,1.8,2,1,289.427537337591,372.0,19092.26359526212,0,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05028214675593683,10606.813108478955,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +15089,2,55.0,0.0,1,111,1650.0,0.0,0.0,85,63,1476.555991451242,0.0,2813.5808965639008,3150.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,3,105.0,1,,1,115102,2,1,2,0,1,,350.0,,42,2.0,3.0,4.0,3.0,2.0,3,3,1759.81278623307,1650.0,33403.204431960745,6,1,0,1,97.0,6,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09430232977845764,16701.602215980372,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +15090,1,45.0,386.0,2,111,433.0,96.0,0.0,0,56,0.0,0.0,738.3518352801025,529.0,0.0,182.25638860221974,50,0,0,0,0,0,0,0,0,0,,2,,2,115103,2,3,0,1,1,726.0,0.0,339.0,32,1.0,0.0,4.0,4.0,2.3,3,1,338.128594269913,433.0,11104.690470733065,0,4,2,3,69.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04763752770905271,4828.126291623072,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15091,2,61.0,0.0,2,111,180.0,75.0,0.0,0,77,0.0,0.0,306.936097806971,255.0,0.0,142.38780359548417,50,2,1,2,1,2,2,2,2,0,,2,,2,115104,2,1,0,1,1,749.0,0.0,340.0,11,0.0,1.0,3.0,1.0,1.0,1,1,201.130024797645,180.0,16771.55487137285,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015204314802991595,16771.55487137285,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +15092,2,28.0,0.0,1,111,180.0,320.0,0.0,0,56,0.0,0.0,306.936097806971,500.0,0.0,607.5212953407324,20,0,0,0,0,0,0,0,0,3,90.0,2,,1,115105,1,2,0,0,1,,0.0,870.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1252.99637355453,180.0,19719.455105418805,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02535567019103903,19719.455105418805,5,3,5,5_0,5_4,5_1_0 +15094,2,64.0,0.0,7,111,500.0,0.0,0.0,0,74,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,115107,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1776.70695909168,500.0,25798.6798813454,0,5,1,2,71.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019380836628061025,25798.6798813454,7,4,7,7_0,7_3,7_0_0 +15095,2,55.0,0.0,1,111,652.0,1422.0,0.0,54,63,0.0,0.0,1111.7907542785838,2074.0,0.0,2699.67275617038,44,2,2,2,2,1,2,2,2,1,10.0,1,,1,115108,2,3,3,0,1,,522.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1798.28081062955,652.0,50807.43818133257,1,1,0,1,80.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04082079463636526,20322.975272533025,5,3,5,5_1,5_3,5_1_0 +15096,2,86.0,0.0,1,212,0.0,0.0,0.0,0,77,0.0,0.0,0.0,811.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115109,2,2,5,0,1,,203.0,390.0,11,0.0,2.0,3.0,1.0,1.0,1,1,822.070374526081,0.0,12577.70093182593,0,5,2,3,65.0,2,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06447919253254701,12577.70093182593,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +15097,1,26.0,329.0,2,111,630.0,50.0,0.0,0,55,0.0,0.0,1074.2763423243985,680.0,0.0,94.92520239698945,50,2,1,2,2,1,2,2,2,0,,2,,2,115110,1,3,0,1,1,320.0,0.0,307.0,32,1.0,0.0,3.0,2.0,1.3,1,1,307.102544050857,630.0,13463.051265296544,0,4,2,3,60.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05050860957150355,10356.193280997342,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +15098,2,61.0,0.0,2,111,900.0,1500.0,0.0,54,22,0.0,0.0,1534.680489034855,2400.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,2,40.0,2,,2,115111,1,1,0,0,1,,0.0,850.0,43,2.0,2.0,5.0,3.0,2.0,3,2,718.777788174331,900.0,54825.53161801997,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.043775225322414776,27412.765809009987,7,4,7,7_0,7_3,7_0_1 +15099,2,41.0,0.0,1,120,552.0,1550.0,0.0,65,52,0.0,0.0,941.2706999413778,2102.0,0.0,2942.681274306673,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,115112,2,1,1,0,1,,250.0,,43,3.0,0.0,7.0,4.0,2.5,4,3,1863.7999825526,552.0,62789.76916688854,4,1,1,2,120.0,0,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.033476791329063615,25115.907666755415,7,4,7,7_1,7_0,7_1_0 +15100,2,31.0,0.0,2,111,345.0,0.0,0.0,53,31,0.0,0.0,588.2941874633611,345.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,115113,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,549.257089412432,345.0,48673.03834832156,1,1,1,2,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007088113084929224,32448.692232214376,8,4,8,8_0,8_3,8_0_1 +15101,1,45.0,341.0,2,111,220.0,0.0,0.0,0,54,0.0,0.0,375.14411954185346,220.0,0.0,0.0,42,2,1,2,2,1,2,2,2,3,45.0,2,,2,115114,2,1,0,1,1,1045.0,581.0,320.0,32,1.0,1.0,3.0,2.0,1.5,2,1,409.885749211003,220.0,11416.601528693618,0,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.019270182939035645,7611.067685795745,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15102,1,55.0,380.0,9,211,1200.0,,,0,81,0.0,0.0,,1500.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,115115,2,2,0,0,2,,600.0,600.0,22,1.0,5.0,5.0,3.0,2.0,3,1,7.559826641115449,1200.0,3949.8498439476243,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.3797612717603576,1974.9249219738122,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +15103,1,64.0,334.0,2,111,293.0,113.0,0.0,0,86,0.0,0.0,499.62375920801395,406.0,0.0,214.53095741719616,71,0,0,0,0,0,0,0,0,0,,2,,2,115116,2,1,0,1,1,564.0,0.0,312.0,31,1.0,3.0,4.0,2.0,1.5,2,2,279.42593205768,293.0,11718.577981651375,0,6,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03464584189615016,7812.385321100916,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15104,1,54.0,271.0,1,111,300.0,700.0,0.0,0,77,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,1,115117,2,1,2,0,1,,250.0,315.0,11,0.0,2.0,4.0,1.0,1.0,1,1,293.302296849474,300.0,5916.528187062814,0,6,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1690180403748634,5916.528187062814,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +15105,2,41.0,0.0,6,111,1080.0,,,68,65,0.0,0.0,,1218.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,115118,1,1,0,0,2,,400.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,66.61355351709501,1080.0,27355.099179887256,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04452551942840442,13677.549589943628,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +15106,2,53.0,0.0,1,400,1100.0,0.0,0.0,0,68,0.0,860.8127300566456,1875.7205977092674,1840.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,115119,1,1,3,0,2,,288.0,566.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1222.03847754724,1100.0,24361.1403502927,0,1,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07553012599337915,24361.1403502927,7,4,7,7_1,7_0,7_1_0 +15107,2,52.0,0.0,7,111,800.0,0.0,0.0,56,85,0.0,0.0,1364.160434697649,800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,115120,2,1,2,0,1,,600.0,1069.0,42,2.0,1.0,4.0,4.0,2.3,3,3,746.75091075284,800.0,32448.502761931442,1,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02465445034149802,14108.044679100629,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +15108,2,83.0,0.0,6,111,200.0,,,0,77,0.0,0.0,,240.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,1,,4,115121,2,1,0,0,2,,100.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,139.17425594222215,200.0,9353.63276145653,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025658480092244678,9353.63276145653,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15109,2,56.0,0.0,9,300,580.0,0.0,0.0,0,65,0.0,0.0,989.0163151557955,600.0,27.711784507930417,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,115122,2,1,1,0,1,,250.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,795.780913452093,580.0,12457.135433258469,0,4,1,2,55.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04816516631890349,12457.135433258469,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +15110,2,62.0,0.0,1,112,700.0,0.0,0.0,77,78,0.0,0.0,1193.6403803604428,862.0,224.4654545142364,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115123,2,2,4,0,1,,450.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,809.666655120381,700.0,35728.544646871575,6,5,0,1,80.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024126367545045737,17864.272323435787,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +15111,2,33.0,0.0,1,111,326.0,0.0,0.0,0,37,0.0,0.0,555.8953771392919,326.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,115124,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1001.46945266636,326.0,47040.28815231248,0,1,1,2,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006930229656426413,47040.28815231248,10,5,10,10_0,10_4,10_1_0 +15112,1,42.0,306.0,2,111,600.0,600.0,0.0,85,55,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,115125,1,3,0,1,2,97.0,0.0,391.0,42,1.0,0.0,5.0,5.0,2.8,4,2,245.640353514708,600.0,22907.033577625283,6,1,2,3,83.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05238565683040314,8181.083420580459,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15113,2,33.0,0.0,1,111,36.0,60.0,0.0,43,55,0.0,0.0,61.387219561394204,96.0,0.0,113.91024287638734,30,0,0,0,0,0,0,0,0,2,20.0,1,,1,115126,2,1,2,0,1,,560.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,275.15711917663,36.0,11254.588183829841,4,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008529854529722295,5359.327706585638,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +15114,2,37.0,0.0,1,111,0.0,0.0,550.0,0,53,0.0,0.0,346.6750597281091,550.0,0.0,658.2026811605745,20,1,2,2,2,1,2,2,2,2,55.0,2,,1,115127,1,2,0,1,2,310.0,0.0,640.0,12,1.0,0.0,1.0,1.0,1.0,1,1,994.442651698412,0.0,35779.438437604585,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.015371957303330505,35779.438437604585,9,5,9,9_0,9_4,9_1_0 +15115,2,50.0,0.0,5,111,500.0,0.0,0.0,0,46,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,20.0,2,,3,115128,2,1,0,0,1,,0.0,233.0,12,1.0,0.0,1.0,1.0,1.0,1,1,416.511784819986,500.0,35040.30186433307,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014269283464961856,35040.30186433307,9,5,9,9_0,9_4,9_0_0 +15116,1,58.0,234.0,2,111,304.0,90.0,0.0,0,85,0.0,0.0,518.3809651851066,394.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,115129,2,1,0,1,1,466.0,0.0,281.0,11,0.0,2.0,3.0,1.0,1.0,1,1,365.48117960626,304.0,13832.527001519682,0,7,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.028483587992036017,13832.527001519682,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +15117,2,53.0,330.0,2,300,1716.0,0.0,0.0,0,67,0.0,0.0,2926.124132426457,2076.0,498.81212114274757,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115130,2,3,0,0,1,,480.0,44.0,22,1.0,12.0,4.0,2.0,1.5,2,2,1811.848810381,1716.0,15428.507269499434,0,1,2,3,60.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13455611510155863,10285.671512999623,2,1,2_0,2_0_0,2_0_0,2_0_1_0 +15118,0,40.0,0.0,1,300,594.0,0.0,0.0,52,11,0.0,0.0,1012.8891227630044,674.0,110.84713803172167,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,,1,115131,1,1,2,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1078.7885379115,594.0,35089.0,1,1,5,0,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019208298897090255,16709.04761904762,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +15119,2,51.0,0.0,1,111,1080.0,0.0,0.0,0,22,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,115132,2,2,0,0,1,,160.0,543.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2085.32401570692,1080.0,21723.15283460288,0,1,2,3,40.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04971654014603555,21723.15283460288,6,3,6,6_0,6_3,6_1_0 +15120,2,43.0,0.0,8,211,0.0,,,52,62,0.0,0.0,,967.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,115133,2,1,0,0,2,,339.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,99.28127693052902,0.0,15945.743943281574,1,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060643141106466,10630.495962187715,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +15121,1,37.0,395.0,2,111,0.0,0.0,0.0,68,53,0.0,0.0,0.0,630.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,90.0,2,,2,115134,2,1,0,1,2,934.0,0.0,368.0,43,2.0,0.0,4.0,4.0,2.1,2,2,275.383728936359,0.0,22419.903244949382,1,1,2,3,78.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028100032061553277,10676.14440235685,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +15122,2,41.0,0.0,1,111,341.0,1449.0,0.0,33,33,0.0,198.6490915515336,581.4733852898729,1940.0,0.0,2750.932365464754,41,0,0,0,0,0,0,0,0,3,35.0,1,,1,115135,2,2,2,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,798.7827744779,341.0,171778.53820914854,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011293611065882734,81799.30390911835,10,5,10,10_1,10_4,10_1_0 +15123,2,23.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,424.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,19.0,2,,1,115136,2,1,0,1,2,272.0,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,705.162375937271,0.0,16230.543996149794,0,1,3,4,30.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026123585266185852,16230.543996149794,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +15124,0,42.0,0.0,7,111,738.0,,,0,81,0.0,0.0,,874.0,188.44013465392686,,71,0,0,0,0,0,0,0,0,0,,1,,5,115137,2,1,0,0,2,,738.0,,32,1.0,0.0,5.0,3.0,1.8,2,2,100.60712046370837,738.0,6565.223589161691,0,4,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13312570213798317,3647.3464384231615,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15125,2,31.0,0.0,1,111,360.0,900.0,0.0,90,38,0.0,0.0,613.872195613942,1260.0,0.0,1708.65364314581,10,2,2,2,2,1,2,2,2,0,,2,,1,115138,2,3,0,0,1,,290.0,650.0,43,2.0,0.0,2.0,3.0,1.8,2,2,667.859424890771,360.0,28124.834888761943,4,1,3,4,32.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.044800263005400534,15624.908271534412,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +15126,2,49.0,0.0,2,111,1100.0,0.0,0.0,53,56,0.0,0.0,1875.7205977092674,1250.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,3,10.0,1,,2,115139,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,6.0,3.3,5,3,617.243249210922,1100.0,69470.4717925343,1,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017993256238895045,21051.65811894979,5,3,5,5_1,5_4,5_0_1 +15127,2,31.0,0.0,9,111,397.0,431.0,0.0,34,34,0.0,0.0,676.9646157187083,828.0,0.0,818.2552446620491,10,0,0,0,0,0,0,0,0,3,20.0,2,2009.0,6,115140,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1859.13226584444,397.0,140232.06970226765,1,1,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005904498177613438,77906.7053901487,10,5,10,10_0,10_3,10_0_0 +15128,1,62.0,357.0,7,111,170.0,,,0,86,0.0,0.0,,926.0,1047.5054543997699,,71,2,2,2,2,1,2,2,2,0,,2,,5,115141,2,3,0,0,2,,300.0,413.0,31,1.0,0.0,3.0,4.0,2.5,4,4,112.05667522453929,170.0,10466.101335790903,0,7,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.08847611639621335,4186.440534316362,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15129,2,42.0,0.0,1,211,1867.0,0.0,0.0,62,52,0.0,0.0,3183.609414475638,1897.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,115142,2,1,2,0,1,,454.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1717.03489733171,1867.0,33155.330332471895,4,1,1,2,100.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057215536113724166,18419.627962484385,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +15130,2,86.0,0.0,5,111,2000.0,0.0,0.0,0,78,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,115143,2,1,2,0,1,,1500.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1627.00810185745,2000.0,18768.66752672244,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10656057480651951,18768.66752672244,5,3,5,5_1,5_3,5_0_0 +15131,2,83.0,0.0,2,111,335.0,,,0,78,0.0,33.1081819252556,,478.0,163.49952859678947,,71,0,0,0,0,0,0,0,0,0,,1,,2,115144,1,2,0,0,2,,381.0,,21,4.0,2.0,4.0,5.0,3.0,5,5,55.036782436737724,335.0,20733.443550769352,0,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02305453982255943,6911.1478502564505,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +15132,2,66.0,0.0,5,222,691.0,0.0,0.0,0,78,0.0,529.7309108040896,1178.2935754700943,1091.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,115145,2,1,3,0,2,,182.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1366.64971802437,691.0,13039.965898141785,0,5,0,1,85.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08366586297249973,13039.965898141785,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +15133,0,79.0,0.0,5,111,217.0,0.0,0.0,0,77,0.0,0.0,370.02851791173725,217.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,3,115146,2,1,0,1,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,308.173759489598,217.0,41382.32777130506,0,5,0,1,103.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.005243784283939437,41382.32777130506,9,5,9,9_0,9_2,9_0_0 +15134,0,46.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,12.0,16.627070704758253,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,115147,1,2,0,0,2,,0.0,,32,1.0,3.0,5.0,6.0,2.6999999999999997,2,1,7.559826641115449,0.0,21050.144017492992,0,4,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0005700673586854235,7796.349636108516,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15135,2,40.0,0.0,5,111,260.0,0.0,0.0,0,37,0.0,0.0,443.3521412767359,260.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,115148,1,2,0,0,1,,0.0,481.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1476.23950759535,260.0,5622.050148166681,0,4,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04624647471079292,5622.050148166681,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +15136,2,61.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,516.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,115149,1,3,0,0,2,,0.0,66.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1321.25371214467,0.0,4979.710071793115,0,1,2,3,19.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.10362049046244906,4979.710071793115,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +15137,2,34.0,0.0,9,211,1200.0,0.0,0.0,52,52,0.0,529.7309108040896,2046.2406520464733,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,115150,2,1,1,0,1,,420.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,682.93431583711,1200.0,38384.29276239733,1,1,1,2,119.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041683717084594014,21324.60709022074,6,3,6,6_1,6_1,6_0_0 +15138,2,68.0,0.0,1,400,676.0,,,86,86,0.0,0.0,,789.0,156.57158246980686,,71,0,0,0,0,0,0,0,0,0,,1,,1,115151,2,2,0,0,1,,776.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,6.920226120550812,676.0,26055.413058597092,5,5,0,1,79.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030281615502528607,17370.27537239806,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +15139,1,49.0,166.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,709.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,115152,2,1,0,1,1,584.0,171.0,262.0,12,1.0,0.0,2.0,1.0,1.0,1,1,880.216461880987,0.0,13408.35691318328,0,1,2,3,52.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.052877470714021754,13408.35691318328,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +15140,1,42.0,290.0,2,111,336.0,396.0,0.0,56,56,0.0,0.0,572.9473825730125,732.0,0.0,751.8076029841565,10,0,0,0,0,0,0,0,0,3,75.0,2,,2,115153,2,2,0,1,1,382.0,0.0,280.0,43,2.0,0.0,2.0,3.0,1.8,2,2,408.429391357781,336.0,14584.137098855785,1,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050191519391121875,8102.2983882532135,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +15142,2,74.0,0.0,6,300,530.0,0.0,0.0,77,78,0.0,688.6501840453165,903.7562879871924,1170.0,166.2707070475825,0.0,71,2,2,2,2,1,2,1,2,0,,1,,4,115155,2,1,2,0,1,,310.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2105.57176117806,530.0,20165.68114287801,5,5,0,1,150.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.05801936427092687,13443.78742858534,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +15143,2,38.0,0.0,9,111,0.0,,,42,21,0.0,0.0,,293.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,115156,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,83.63909438090892,0.0,78333.82297222358,1,1,1,2,116.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037404021517486127,37301.82046296361,9,5,9,9_1,9_2,9_0_0 +15144,2,82.0,0.0,1,111,700.0,150.0,0.0,75,75,949.2145659329414,0.0,1193.6403803604428,1750.0,0.0,284.77560719096834,70,0,0,0,0,0,0,0,0,0,,2,,1,115157,2,2,0,2,1,,700.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2222.48942985219,700.0,41749.07993351201,5,5,0,1,74.0,8,7,2,1,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04191709141343913,27832.719955674675,7,4,7,7_0,7_3,7_1_0 +15145,2,36.0,0.0,6,111,1700.0,0.0,0.0,42,52,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,115158,2,1,1,0,1,,450.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1962.09563864882,1700.0,56563.62388263886,1,1,1,2,72.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030054651440424827,31424.23549035492,8,4,8,8_1,8_2,8_0_0 +15146,2,50.0,0.0,1,111,800.0,0.0,0.0,46,62,2636.7071275915036,264.8654554020448,1364.160434697649,3500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,115159,1,3,1,0,2,,220.0,1000.0,43,2.0,0.0,6.0,4.0,2.1,2,2,1245.70065189493,800.0,72300.661673408,1,1,2,3,135.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04840896222789744,34428.886511146666,9,5,9,9_1,9_3,9_1_0 +15147,1,63.0,226.0,9,111,480.0,,,0,77,0.0,0.0,,732.0,349.1684847999233,,71,2,2,2,2,1,2,2,2,0,,1,2006.0,6,115160,2,1,0,0,1,,480.0,,21,2.0,3.0,3.0,3.0,2.0,3,3,104.71605206756753,480.0,23281.521912350596,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.031441243521613677,11640.760956175298,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +15148,1,67.0,63.0,2,211,110.0,0.0,0.0,0,78,0.0,0.0,187.57205977092673,142.0,44.33885521268867,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115161,2,1,0,1,1,481.0,209.0,261.0,11,0.0,2.0,3.0,1.0,1.0,1,1,631.958404501678,110.0,11508.476195172254,0,5,2,3,44.0,3,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012338731695823316,11508.476195172254,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +15149,2,30.0,0.0,2,111,0.0,0.0,0.0,65,54,0.0,0.0,0.0,827.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,,2,115162,1,1,0,1,1,72.0,829.0,361.0,43,2.0,0.0,3.0,5.0,2.8,4,4,420.392350613089,0.0,37595.951866339085,1,1,2,3,78.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021997049122207245,13427.125666549673,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +15150,1,33.0,207.0,5,111,220.0,400.0,0.0,0,42,0.0,0.0,375.14411954185346,620.0,0.0,759.4016191759156,20,2,1,2,2,1,2,2,2,3,30.0,2,,3,115163,1,3,0,1,1,,0.0,297.0,12,1.0,0.0,1.0,1.0,1.0,1,1,540.116892913016,220.0,11932.268944494124,0,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.051959941808559805,11932.268944494124,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +15152,2,52.0,0.0,7,300,500.0,0.0,0.0,0,21,0.0,0.0,852.6002716860306,533.0,45.72444443808519,0.0,60,2,2,2,2,2,2,2,1,0,,1,,5,115165,2,2,3,0,1,,80.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,2037.73511943767,500.0,18958.0,0,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.028114780040088615,18958.0,5,3,5,5_1,5_0,5_0_0 +15153,2,61.0,0.0,9,111,312.0,,,0,77,0.0,0.0,,432.0,166.2707070475825,,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,115166,2,1,0,0,2,,202.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,107.10148295485956,312.0,27723.215513234936,0,5,1,2,88.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015582608005689858,27723.215513234936,7,4,7,7_1,7_3,7_0_0 +15154,2,81.0,0.0,6,120,320.0,,,77,77,0.0,0.0,,452.0,182.89777775234077,,70,0,0,0,0,0,0,0,0,0,,1,,4,115167,2,1,0,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,117.85702271786442,320.0,44909.49976516896,5,5,0,1,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010064685698204179,29939.666510112642,8,4,8,8_1,8_2,8_0_0 +15155,1,52.0,103.0,9,111,3000.0,0.0,0.0,52,62,0.0,0.0,5115.6016301161835,3204.0,282.6602019808903,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,115168,2,1,1,0,1,,280.0,800.0,43,4.0,2.0,5.0,5.0,2.8,4,4,2498.80793284664,3000.0,61585.820948474764,1,1,2,3,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.052024962087955255,21994.936053026704,6,3,6,6_1,6_3,6_0_0 +15156,2,57.0,0.0,1,111,700.0,2500.0,0.0,0,22,0.0,0.0,1193.6403803604428,6215.0,0.0,4746.260119849472,31,0,0,0,0,0,0,0,0,0,,1,,1,115169,2,1,2,0,1,,450.0,,12,1.0,3.0,9.0,1.0,1.0,1,1,1305.92464068964,700.0,33422.1443029195,0,1,1,2,250.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18595455586783238,33422.1443029195,8,4,8,8_1,8_3,8_1_0 +15157,2,42.0,0.0,2,211,840.0,0.0,0.0,55,21,4218.731404146406,0.0,1432.3684564325313,4840.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,115170,1,1,3,0,1,,480.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,949.135697573811,840.0,35888.5415156093,1,1,1,2,110.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.13486198646146985,19938.078619782944,5,3,5,5_1,5_1,5_0_1 +15158,2,22.0,0.0,5,400,576.0,,,0,52,0.0,0.0,,852.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,115171,2,1,0,0,2,,302.0,,22,3.0,7.0,4.0,4.0,2.5,4,4,109.77728611840861,576.0,23733.2469017454,0,1,0,1,65.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03589900714079462,9493.298760698159,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +15159,2,84.0,0.0,1,111,150.0,1025.0,0.0,0,78,0.0,0.0,255.78008150580916,1175.0,0.0,1945.9666491382836,70,0,0,0,0,0,0,0,0,0,,1,,1,115172,2,2,5,0,1,,250.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1037.57985370677,150.0,13379.592490193489,0,5,0,1,90.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.087820312977485,13379.592490193489,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +15160,2,81.0,0.0,1,211,200.0,0.0,0.0,0,77,949.2145659329414,0.0,341.04010867441224,1150.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115173,2,1,4,0,2,,143.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2453.08905987674,200.0,13576.352139428174,0,5,0,1,80.0,1,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.084706111641005,13576.352139428174,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +15161,2,42.0,0.0,6,112,0.0,,,0,63,0.0,0.0,,24.0,33.25414140951651,,50,0,0,0,0,0,0,0,0,3,90.0,1,,4,115174,1,2,0,0,2,,0.0,500.0,12,1.0,3.0,2.0,1.0,1.0,1,1,173.1824667561385,0.0,17117.336684021157,0,1,3,4,30.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0014020872781221703,17117.336684021157,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +15162,2,49.0,0.0,2,111,1000.0,0.0,0.0,56,47,0.0,0.0,1705.2005433720612,1120.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,115175,2,2,0,0,1,,0.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,1606.55419320624,1000.0,50595.741605022784,1,1,1,2,77.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02213625029440846,21998.14852392295,6,3,6,6_0,6_3,6_0_1 +15163,2,36.0,0.0,5,111,719.0,77.0,0.0,0,53,0.0,0.0,1226.039190684512,796.0,0.0,146.18481169136376,42,2,1,2,2,1,2,2,2,2,15.0,2,,3,115176,2,3,0,1,1,550.0,0.0,675.0,32,1.0,0.0,3.0,2.0,1.3,1,1,887.737090557916,719.0,29422.909218154924,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.027053748971527302,22633.0070908884,6,3,6,6_0,6_4,6_0_0 +15164,2,55.0,0.0,7,111,1200.0,,,0,42,0.0,0.0,,1332.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,2,20.0,1,,5,115177,1,2,0,0,2,,800.0,811.0,32,3.0,0.0,5.0,4.0,2.5,4,4,82.99266589510688,1200.0,70858.66399592235,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01879798354759626,28343.46559836894,8,4,8,8_1,8_3,8_0_0 +15165,2,61.0,0.0,1,111,299.0,0.0,0.0,0,52,0.0,0.0,509.8549624682463,299.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,1,115178,1,3,0,1,1,809.0,0.0,348.0,12,1.0,1.0,3.0,1.0,1.0,1,1,336.219011884059,299.0,32466.143170222553,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009209594081819926,32466.143170222553,8,4,8,8_0,8_4,8_1_0 +15166,2,46.0,0.0,9,111,0.0,,,0,21,0.0,0.0,,69.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,115179,2,1,0,0,2,,0.0,650.0,12,1.0,3.0,5.0,1.0,1.0,1,1,148.64199092873534,0.0,15434.75787189315,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004470429699817299,15434.75787189315,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +15167,2,46.0,0.0,6,111,2700.0,0.0,0.0,46,48,0.0,231.75727347678918,4604.0414671045655,2875.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,4,115180,2,1,3,0,1,,510.0,,43,3.0,0.0,7.0,4.0,2.5,4,4,463.194493442473,2700.0,83533.3309012215,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03441739924629247,33413.3323604886,8,4,8,8_1,8_4,8_0_0 +15168,2,62.0,0.0,6,211,516.0,,,0,78,0.0,0.0,,516.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,115181,2,3,0,0,2,,600.0,300.0,31,2.0,0.0,5.0,6.0,3.3,5,3,7.560188772991673,516.0,9056.214754098362,0,5,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05697744742266472,2744.307501241928,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15169,2,39.0,0.0,1,111,1278.0,0.0,0.0,34,21,0.0,0.0,2179.2462944294944,1278.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,115182,2,1,1,0,1,,489.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,838.700533633912,1278.0,42019.35396432882,1,1,0,1,77.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03041455613727244,23344.08553573823,6,3,6,6_1,6_4,6_1_0 +15170,2,33.0,0.0,7,111,560.0,980.0,0.0,52,53,0.0,0.0,954.9123042883542,1540.0,0.0,1860.5339669809932,60,0,0,0,0,0,0,0,0,2,6.0,1,,5,115183,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,1505.85008132793,560.0,42025.48575839826,1,1,1,2,108.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036644430687924896,16163.648368614717,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15171,2,74.0,0.0,2,111,660.0,0.0,0.0,0,90,3322.250980765295,0.0,1125.4323586255605,3810.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,115184,2,1,2,0,2,,180.0,,11,0.0,1.0,8.0,1.0,1.0,1,1,873.949518303716,660.0,46762.74410525342,0,5,0,1,135.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08147511599029487,46762.74410525342,10,5,10,10_1,10_4,10_0_1 +15172,1,50.0,200.0,2,111,700.0,,,85,81,0.0,0.0,,700.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,115185,2,2,0,0,2,,400.0,500.0,42,1.0,0.0,3.0,2.0,1.5,2,2,39.80465158941517,700.0,13350.884690167026,7,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0524309823839279,8900.589793444684,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15173,2,31.0,0.0,9,112,1200.0,0.0,0.0,54,47,0.0,0.0,2046.2406520464733,2143.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,115186,2,1,1,0,1,,281.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2048.42474249237,1200.0,34295.45421766235,1,1,1,2,143.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06248641544150604,19053.03012092353,5,3,5,5_1,5_0,5_0_0 +15174,2,56.0,0.0,2,111,200.0,100.0,0.0,55,47,0.0,0.0,341.04010867441224,300.0,0.0,189.8504047939789,44,0,0,0,0,0,0,0,0,2,180.0,2,,2,115187,2,2,0,1,1,1092.0,0.0,590.0,43,2.0,1.0,3.0,2.0,1.5,2,2,232.329323220034,200.0,32882.68350476802,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009123342988612827,21921.78900317868,6,3,6,6_0,6_4,6_0_1 +15175,2,39.0,0.0,9,111,637.0,,,43,43,0.0,0.0,,687.0,69.27946126982604,,33,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,115188,2,1,0,0,2,,300.0,850.0,43,2.0,0.0,4.0,4.0,2.1,2,2,252.87098954638643,637.0,81484.60343400037,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008431040602123635,38802.19211142875,9,5,9,9_1,9_2,9_0_0 +15176,2,44.0,0.0,6,111,1300.0,0.0,0.0,56,63,0.0,312.54123737441284,2216.7607063836795,1536.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,15.0,1,,4,115189,2,1,4,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1631.46947606188,1300.0,51081.08212261401,1,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03006984065672329,24324.324820292386,7,4,7,7_1,7_3,7_0_0 +15177,2,63.0,0.0,2,111,800.0,2000.0,0.0,75,74,0.0,0.0,1364.160434697649,2800.0,0.0,3797.008095879578,30,0,0,0,0,0,0,0,0,0,,1,,2,115190,2,2,4,0,1,,260.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1219.09174233968,800.0,72151.41992104606,5,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03880727507599971,48100.94661403071,10,5,10,10_1,10_3,10_0_1 +15178,2,49.0,0.0,2,111,228.0,72.0,0.0,56,63,0.0,0.0,388.7857238888299,817.0,0.0,136.6922914516648,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,115191,2,1,0,1,2,,0.0,,43,2.0,3.0,2.0,3.0,1.8,2,2,1574.04255295453,228.0,44532.9976652166,1,1,1,2,52.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01834594666503069,24740.554258453667,7,4,7,7_0,7_2,7_0_1 +15179,1,37.0,357.0,7,112,700.0,,,0,81,0.0,0.0,,744.0,60.965925917446924,,60,0,0,0,0,0,0,0,0,0,,2,,5,115192,2,1,0,0,2,,150.0,416.0,32,1.0,0.0,3.0,2.0,1.3,1,1,100.01212902474671,700.0,9361.48884686335,0,4,2,3,68.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07947453788285863,7201.145266817962,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +15180,2,56.0,0.0,5,111,550.0,136.0,0.0,67,46,0.0,0.0,937.8602988546337,686.0,0.0,258.1965505198113,71,2,2,2,2,2,1,2,2,3,15.0,8,,3,115193,2,1,0,1,1,673.0,0.0,459.0,43,2.0,1.0,3.0,2.0,1.5,2,2,824.857646310261,550.0,48465.26300214499,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.01415446770544996,32310.175334763324,8,4,8,8_0,8_4,8_0_0 +15181,0,66.0,0.0,2,111,210.0,,,0,22,0.0,0.0,,294.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,3,60.0,1,,2,115194,2,3,0,0,2,,222.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,110.77476347963793,210.0,4800.0,0,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06125,4800.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +15182,2,66.0,0.0,2,111,0.0,0.0,350.0,0,75,0.0,0.0,220.61140164516033,350.0,0.0,418.8562516476383,20,0,0,0,0,0,0,0,0,0,,2,,2,115195,2,1,0,1,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1205.49442238972,0.0,63750.207956189784,0,5,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005490178169152419,63750.207956189784,10,5,10,10_0,10_4,10_0_1 +15183,1,63.0,172.0,2,211,1332.0,,,0,52,0.0,0.0,,1464.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,1,5.0,1,,2,115196,1,3,0,0,2,,702.0,514.0,32,1.0,6.0,3.0,2.0,1.5,2,2,122.16313256034915,1332.0,13774.332046332045,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10628464560572629,9182.88803088803,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +15184,2,64.0,0.0,5,112,1650.0,0.0,0.0,54,78,0.0,238.3789098618403,2813.5808965639008,1938.0,149.64363634282427,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115197,2,1,1,0,1,,310.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,659.389294125977,1650.0,70591.36686734519,1,5,0,1,106.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027453782041674816,47060.91124489679,10,5,10,10_1,10_0,10_0_0 +15185,1,43.0,140.0,1,111,0.0,0.0,1500.0,85,62,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,71,0,0,0,0,0,0,0,0,0,,1,,1,115198,2,2,1,0,1,,500.0,305.0,42,2.0,0.0,4.0,4.0,2.5,4,3,258.627881600112,0.0,24126.07299653555,6,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.062173400545351774,9650.42919861422,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +15186,2,84.0,0.0,1,111,1470.0,92.0,0.0,0,72,0.0,0.0,2506.64479875693,1562.0,0.0,174.6623724104606,70,0,0,0,0,0,0,0,0,0,,1,,1,115199,2,1,1,0,1,,180.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1185.68410890968,1470.0,10633.275256457118,0,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1468973540444621,10633.275256457118,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +15187,2,40.0,0.0,1,111,0.0,0.0,0.0,31,38,0.0,0.0,0.0,3479.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,1,,1,115200,2,2,2,0,1,,784.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1275.13999594489,0.0,95648.56700090431,1,1,1,2,108.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036372735202265055,45546.93666709729,10,5,10,10_1,10_3,10_1_0 +15188,2,77.0,0.0,5,111,0.0,0.0,0.0,77,74,0.0,1059.4618216081792,0.0,2343.0,277.1178450793042,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,115201,2,2,2,0,1,,377.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1299.43331094888,0.0,46424.86055414154,5,5,0,1,128.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05046864916842453,30949.90703609436,8,4,8,8_1,8_3,8_0_0 +15189,1,38.0,245.0,2,111,300.0,0.0,0.0,0,55,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,115202,2,1,0,1,1,1136.0,286.0,400.0,32,1.0,0.0,3.0,2.0,1.3,1,1,199.530881857857,300.0,19567.92963484495,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015331208032646685,15052.253565265346,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +15190,2,82.0,0.0,6,111,600.0,,,0,86,0.0,0.0,,864.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,115203,2,1,0,0,1,,2500.0,,21,1.0,0.0,6.0,4.0,2.3,3,2,149.2063959311447,600.0,9913.661016949152,0,6,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08715246552437486,4310.287398673545,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15191,2,45.0,0.0,9,112,1000.0,0.0,0.0,52,37,0.0,529.7309108040896,1705.2005433720612,1400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2004.0,6,115204,2,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.3,4,2,760.89201434529,1000.0,58097.03800999244,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024097614060104168,25259.581743474973,7,4,7,7_1,7_0,7_0_0 +15192,1,50.0,422.0,2,111,300.0,340.0,0.0,85,43,0.0,0.0,511.56016301161833,640.0,0.0,645.4913762995283,20,0,0,0,0,0,0,0,0,0,,2,,2,115205,2,3,0,1,1,756.0,0.0,358.0,42,1.0,0.0,4.0,7.0,2.9999999999999996,2,2,399.887676581741,300.0,16324.858262606198,6,4,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03920401572281869,5441.619420868734,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15193,1,25.0,169.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,803.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,115206,1,1,0,0,1,,197.0,675.0,22,2.0,0.0,3.0,2.0,1.5,2,2,352.649288960382,0.0,18626.81510033033,0,1,2,3,53.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043109892682928905,12417.876733553552,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +15194,1,27.0,191.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,724.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,115207,2,1,0,1,1,44.0,256.0,267.0,12,1.0,2.0,3.0,1.0,1.0,1,1,287.674492702971,0.0,15055.531168025638,0,4,2,3,67.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.048088638781314044,15055.531168025638,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +15195,1,37.0,304.0,7,111,540.0,1080.0,0.0,43,43,0.0,0.0,920.8082934209131,1620.0,0.0,2050.384371774972,43,2,2,2,2,1,2,2,1,3,50.0,2,,5,115208,1,3,0,0,1,,0.0,613.0,43,2.0,0.0,3.0,4.0,2.1,2,2,838.864276592191,540.0,41230.53477725957,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.03929126820090387,19633.587989171225,5,3,5,5_0,5_4,5_0_0 +15196,2,42.0,0.0,2,111,270.0,320.0,0.0,46,63,0.0,0.0,460.40414671045653,590.0,0.0,607.5212953407324,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,115209,2,1,0,1,1,850.0,0.0,216.0,43,2.0,0.0,2.0,2.0,1.5,2,2,344.20976015293,270.0,61681.9013809297,1,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.009565204489341688,41121.26758728647,9,5,9,9_0,9_4,9_0_1 +15197,2,51.0,0.0,7,111,1761.0,0.0,0.0,37,38,0.0,0.0,3002.8581568781997,1761.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,,5,115210,2,1,0,0,1,,0.0,1516.0,43,2.0,0.0,4.0,5.0,2.8,4,4,741.877251695405,1761.0,106860.48960948143,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016479430390367138,38164.4605748148,9,5,9,9_0,9_4,9_0_0 +15198,2,57.0,0.0,1,111,450.0,1280.0,0.0,75,52,0.0,0.0,767.3402445174275,1730.0,0.0,2430.0851813629297,60,0,0,0,0,0,0,0,0,1,15.0,1,,1,115211,1,2,3,0,1,,600.0,420.0,42,1.0,3.0,4.0,2.0,1.5,2,2,282.869311012779,450.0,28200.948752889723,5,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061345453841255206,18800.63250192648,5,3,5,5_1,5_3,5_1_0 +15199,2,70.0,0.0,1,111,700.0,0.0,0.0,0,77,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115212,2,1,1,0,1,,320.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,415.544931408877,700.0,14985.646402794859,0,5,0,1,60.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05071519636672184,14985.646402794859,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +15200,2,73.0,0.0,2,112,517.0,0.0,0.0,0,86,1945.8898601625299,0.0,881.5886809233556,2362.0,0.0,0.0,71,1,2,2,2,1,2,1,2,0,,1,,2,115213,1,2,3,0,1,,214.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1159.68394640501,517.0,16072.50733839408,0,6,0,1,100.0,5,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.14695902451745307,16072.50733839408,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +15201,2,66.0,0.0,1,112,724.0,0.0,0.0,21,21,0.0,317.83854648245375,1234.5651934013722,2764.0,2494.060605713738,0.0,50,2,2,2,1,1,2,2,2,2,35.0,1,,1,115214,2,2,1,0,1,,200.0,,43,3.0,0.0,7.0,3.0,2.0,3,3,2093.95312956638,724.0,97833.93410189821,1,1,0,1,140.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.028251955984118723,48916.967050949104,10,5,10,10_1,10_0,10_1_0 +15202,1,28.0,410.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,504.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115215,2,1,0,1,2,,0.0,720.0,42,1.0,0.0,5.0,5.0,2.4,2,2,524.212739785275,0.0,29032.57751506594,6,1,2,3,110.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01735980898487081,12096.907297944143,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15203,2,32.0,0.0,9,120,1626.0,0.0,0.0,21,63,0.0,0.0,2772.6560835229716,1696.0,96.99124577775646,0.0,31,2,2,1,2,1,2,2,2,2,25.0,1,2007.0,6,115216,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,531.665553103161,1626.0,43133.76320347765,1,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03931954631455065,20539.88723975126,5,3,5,5_1,5_0,5_0_0 +15204,2,45.0,0.0,7,111,350.0,,,0,45,0.0,0.0,,373.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,1,10.0,2,,5,115217,2,2,0,0,2,,230.0,235.0,32,1.0,0.0,2.0,2.0,1.5,2,1,148.69293401426324,350.0,33972.71139289731,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010979400368908536,22648.47426193154,6,3,6,6_0,6_2,6_0_0 +15205,2,64.0,0.0,2,111,600.0,1800.0,0.0,72,74,0.0,582.7040018844986,1023.1203260232367,2840.0,0.0,3417.30728629162,44,0,0,0,0,0,0,0,0,0,,1,,2,115218,2,1,1,0,1,,400.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,265.237839724293,600.0,50756.07769405297,6,5,0,1,180.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05595389023397211,33837.385129368646,9,5,9,9_1,9_2,9_0_1 +15206,1,62.0,254.0,5,111,160.0,120.0,0.0,0,71,0.0,0.0,272.8320869395298,280.0,0.0,227.8204857527747,71,2,1,2,2,1,2,2,2,0,,2,,3,115219,1,2,0,1,1,436.0,270.0,281.0,21,1.0,1.0,3.0,3.0,1.8,2,2,793.95312676166,160.0,16862.940786895695,0,5,2,3,106.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.01660445847129997,9368.300437164275,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15207,2,56.0,0.0,7,111,240.0,,,0,81,0.0,0.0,,244.0,5.542356901586084,,71,0,0,0,0,0,0,0,0,0,,1,,5,115220,1,3,0,0,2,,276.0,100.0,12,1.0,4.0,2.0,1.0,1.0,1,1,157.5308298093717,240.0,7032.0,0,4,3,4,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034698521046643914,7032.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +15208,2,79.0,0.0,7,111,3300.0,0.0,0.0,0,74,0.0,0.0,5627.1617931278015,3300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,115221,2,1,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1929.79829927218,3300.0,37732.637806099316,0,5,0,1,84.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08745744246554026,37732.637806099316,9,5,9,9_0,9_3,9_0_0 +15209,2,34.0,0.0,9,111,477.0,0.0,0.0,0,34,0.0,0.0,813.3806591884731,477.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,2004.0,6,115222,2,1,0,0,1,,0.0,510.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1834.66420412748,477.0,20048.406512890415,0,1,2,3,45.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023792414608777308,20048.406512890415,5,3,5,5_0,5_2,5_0_0 +15210,2,54.0,0.0,6,111,816.0,0.0,0.0,0,52,0.0,0.0,1391.4436433916019,816.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,4,115223,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1834.47313980907,816.0,28650.32691457999,0,1,0,1,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028481350402488503,28650.32691457999,8,4,8,8_0,8_3,8_0_0 +15211,2,57.0,0.0,1,111,1760.0,0.0,0.0,85,35,0.0,0.0,3001.1529563348276,1845.0,117.77508415870429,0.0,60,0,0,0,0,0,0,0,0,2,8.0,1,,1,115224,2,3,2,0,1,,700.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1089.6755090786,1760.0,15697.096316632182,6,1,0,1,90.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11753766192063765,10464.730877754788,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +15212,2,38.0,0.0,2,111,459.0,0.0,0.0,0,37,2847.643697798824,0.0,782.687049407776,3199.0,55.423569015860835,0.0,30,0,0,0,0,0,0,0,0,2,35.0,1,,2,115225,2,1,2,0,1,,162.0,,22,1.0,1.0,7.0,2.0,1.5,2,2,664.319969590328,459.0,99162.010438165,0,1,1,2,168.0,7,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032260338267292576,66108.00695877666,10,5,10,10_1,10_2,10_0_1 +15213,2,65.0,0.0,1,400,580.0,1340.0,0.0,0,78,0.0,0.0,989.0163151557955,1920.0,0.0,2543.9954242393173,50,0,0,0,0,0,0,0,0,0,,1,,1,115226,2,1,2,0,1,,220.0,,21,1.0,2.0,6.0,2.0,1.5,2,2,1441.64856495608,580.0,35889.74957061112,0,5,0,1,110.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053497169051639794,23926.499713740748,6,3,6,6_1,6_0,6_1_0 +15214,2,67.0,0.0,1,111,300.0,900.0,0.0,0,46,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,31,2,2,2,1,2,2,2,2,3,30.0,2,,1,115227,2,3,0,0,2,,0.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,420.655833476676,300.0,34009.82183140966,0,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0.035283924918764024,22673.214554273105,6,3,6,6_0,6_3,6_1_0 +15216,2,40.0,0.0,1,111,1720.0,0.0,0.0,22,45,0.0,0.0,2932.944934599945,1720.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,1,,1,115229,2,1,3,0,1,,436.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,583.913791566622,1720.0,52695.563019683424,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03264031924960222,25093.125247468295,7,4,7,7_1,7_4,7_1_0 +15217,2,38.0,0.0,5,120,1392.0,0.0,0.0,43,67,0.0,0.0,2373.6391563739094,1392.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,3,115230,2,1,2,0,1,,349.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1111.76131807006,1392.0,49148.446338770016,1,1,1,2,108.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02832236019029439,27304.692410427786,7,4,7,7_1,7_0,7_0_0 +15218,2,26.0,0.0,2,111,276.0,0.0,0.0,0,31,0.0,0.0,470.6353499706889,276.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,2,115231,1,2,0,1,2,809.0,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1446.21741616251,276.0,33401.027614412145,0,1,2,3,43.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008263218820276934,33401.027614412145,8,4,8,8_0,8_3,8_0_1 +15219,1,25.0,149.0,6,111,0.0,0.0,0.0,68,68,0.0,0.0,0.0,1106.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,2,,4,115232,2,1,0,0,1,,0.0,688.0,43,2.0,0.0,3.0,3.0,1.8,2,2,349.082661272462,0.0,33644.253205665475,1,1,2,3,67.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03287337047545929,18691.251780925264,5,3,5,5_0,5_3,5_0_0 +15220,0,85.0,0.0,5,112,218.0,0.0,0.0,74,74,0.0,0.0,371.73371845510934,218.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,115233,2,1,0,1,2,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1119.17584287255,218.0,66338.47329284565,5,5,0,1,90.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0032861775253352184,44225.6488618971,10,5,10,10_0,10_2,10_0_0 +15221,2,60.0,0.0,1,400,881.0,0.0,0.0,90,21,0.0,953.5156394473612,1502.2816787107859,1601.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115234,2,1,2,0,1,,186.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,970.073097873654,881.0,17688.19391471821,1,1,1,2,62.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09051235008611141,11792.129276478807,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +15222,1,43.0,436.0,2,111,646.0,0.0,0.0,0,56,843.7462808292812,0.0,1101.5595510183516,1526.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115235,1,3,0,1,2,,0.0,576.0,32,1.0,1.0,4.0,4.0,2.1,2,1,2286.46873659872,646.0,20828.400641094886,0,1,2,3,68.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07326534697960288,9918.286019568994,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15223,2,56.0,0.0,7,211,1100.0,0.0,0.0,0,54,0.0,0.0,1875.7205977092674,1130.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,115236,2,2,2,0,1,,177.0,,32,2.0,2.0,7.0,2.0,1.5,2,1,1398.40659224937,1100.0,16010.60599872164,0,1,0,1,110.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07057821547105865,10673.737332481092,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +15224,2,39.0,0.0,9,112,1577.0,0.0,0.0,62,67,0.0,0.0,2689.1012568977403,1630.0,73.43622894601562,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,115237,2,1,1,0,1,,465.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,790.113450499728,1577.0,46306.70412495243,1,1,1,2,96.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03520008670022517,22050.811488072588,6,3,6,6_1,6_0,6_0_0 +15225,2,29.0,0.0,5,111,400.0,0.0,0.0,48,55,0.0,0.0,682.0802173488245,400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,3,115238,1,3,0,1,2,780.0,0.0,437.0,43,2.0,0.0,3.0,4.0,2.1,2,2,691.980565028698,400.0,51913.25934881647,1,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007705160589365293,24720.599689912604,7,4,7,7_0,7_4,7_0_0 +15226,2,42.0,0.0,1,111,265.0,350.0,0.0,0,42,0.0,0.0,451.8781439935962,615.0,0.0,664.4764167789261,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,115239,2,2,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,225.23799153974,265.0,25477.643750459298,0,1,1,2,80.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024138809931703874,25477.643750459298,7,4,7,7_1,7_2,7_1_0 +15227,2,64.0,0.0,1,111,1000.0,1868.0,0.0,77,75,0.0,0.0,1705.2005433720612,2868.0,0.0,3546.405561551526,50,0,0,0,0,0,0,0,0,0,,1,,1,115240,2,1,2,0,1,,456.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,420.699019575414,1000.0,39836.6402397973,5,5,0,1,45.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07199402315898197,26557.760159864865,7,4,7,7_1,7_3,7_1_0 +15228,2,82.0,0.0,2,111,1400.0,0.0,0.0,42,74,3796.8582637317654,0.0,2387.2807607208856,5000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,115241,2,1,2,0,2,,400.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,665.632184381914,1400.0,40198.44089181719,1,5,0,1,172.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12438293349376647,26798.960594544795,7,4,7,7_1,7_4,7_0_1 +15229,2,52.0,0.0,5,111,310.0,900.0,0.0,37,43,0.0,0.0,528.612168445339,1210.0,0.0,1708.65364314581,33,2,2,2,1,2,2,2,2,2,20.0,2,,3,115242,1,2,0,0,2,,0.0,725.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1984.02469893881,310.0,59588.261400330855,1,1,2,3,71.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.02030601282139911,33104.58966685047,8,4,8,8_0,8_3,8_0_0 +15230,1,60.0,225.0,1,111,400.0,800.0,0.0,0,77,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,41,2,2,2,2,1,2,2,2,0,,2,,1,115243,2,1,0,0,1,,0.0,640.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2329.75954317298,400.0,9329.973190724144,0,7,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.1286177329205018,9329.973190724144,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +15231,2,64.0,0.0,1,112,400.0,0.0,0.0,74,45,3164.0485531098047,0.0,682.0802173488245,3440.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,1,1.0,1,,1,115244,2,1,1,0,1,,250.0,420.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1943.99675734344,400.0,56323.2619180578,5,1,2,3,100.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06107600808001324,37548.8412787052,9,5,9,9_1,9_0,9_1_0 +15232,2,68.0,0.0,2,111,200.0,,,0,78,0.0,0.0,,286.0,119.1606733841008,,71,0,0,0,0,0,0,0,0,0,,1,,2,115245,2,1,0,0,2,,100.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,103.38432388626195,200.0,15951.609919581315,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017929224789337544,15951.609919581315,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +15233,2,44.0,0.0,5,111,386.0,1343.0,0.0,0,85,0.0,0.0,658.2074097416156,1729.0,0.0,2549.6909363831364,42,0,0,0,0,0,0,0,0,0,,1,,3,115246,2,2,2,0,2,,240.0,,21,0.0,1.0,4.0,2.0,1.5,2,2,533.083564332852,386.0,24128.909867587994,0,7,0,1,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0716567805793224,16085.939911725329,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15234,2,66.0,0.0,8,111,255.0,,,0,86,0.0,0.0,,318.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,115247,2,2,0,0,2,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,129.52885222203167,255.0,10651.872672720026,0,5,0,1,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02985390548409518,10651.872672720026,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +15235,2,53.0,0.0,2,111,2233.0,0.0,0.0,55,38,0.0,0.0,3807.7128133498127,2233.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,115248,2,2,2,0,1,,546.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,1014.39341200489,2233.0,52210.980782801875,1,4,0,1,160.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04276878094455454,18646.778851000672,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +15236,2,52.0,0.0,2,120,1148.0,0.0,0.0,42,34,0.0,529.7309108040896,1957.5702237911262,1623.0,103.91919190473907,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,115249,2,2,2,0,1,,213.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,1809.27989027052,1148.0,56971.26628509101,1,1,1,2,135.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028488045041483095,31650.703491717228,8,4,8,8_1,8_0,8_0_1 +15237,0,54.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,883.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,115250,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2064.9239865293,0.0,19505.413776834586,0,1,5,0,60.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.045269483134404785,19505.413776834586,5,3,5,5_0,5_3,5_0_0 +15238,2,35.0,0.0,9,111,370.0,,,54,54,0.0,0.0,,450.0,110.84713803172167,,20,0,0,0,0,0,0,0,0,2,12.0,1,2009.0,6,115251,2,1,0,0,2,,200.0,800.0,43,2.0,0.0,5.0,7.0,2.9999999999999996,2,2,182.80426044446915,370.0,52426.55944016075,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008583435663246724,17475.51981338692,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15239,2,29.0,0.0,2,111,2000.0,0.0,0.0,0,46,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,50.0,2,,2,115252,2,3,0,0,1,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1272.44245558197,2000.0,23212.65290857271,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.08615990631822079,23212.65290857271,6,3,6,6_0,6_4,6_0_1 +15240,2,66.0,0.0,1,120,1700.0,0.0,0.0,74,74,0.0,66.2163638505112,2898.840923732504,1862.0,155.18599324441035,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,115253,2,1,2,0,1,,235.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1198.31927014923,1700.0,39351.72132970811,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04731686282282919,26234.480886472073,7,4,7,7_1,7_0,7_1_0 +15241,2,88.0,0.0,1,112,150.0,0.0,0.0,0,75,0.0,0.0,255.78008150580916,150.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115254,2,1,2,0,1,,500.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1255.15263766139,150.0,45066.42921518203,0,5,0,1,100.0,9,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0033284199039552006,45066.42921518203,10,5,10,10_1,10_1,10_1_0 +15242,2,51.0,0.0,6,112,800.0,0.0,0.0,52,64,0.0,662.163638505112,1364.160434697649,1380.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,115255,2,2,1,0,1,,450.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,206.230475773225,800.0,55400.64077763856,1,1,0,1,96.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02490945918006442,24087.23512071242,6,3,6,6_1,6_0,6_0_0 +15243,2,45.0,0.0,1,111,550.0,1400.0,0.0,55,38,0.0,0.0,937.8602988546337,1950.0,0.0,2657.9056671157045,42,0,0,0,0,0,0,0,0,2,40.0,2,,1,115256,1,3,0,0,1,,0.0,665.0,43,2.0,0.0,5.0,4.0,2.3,3,3,1900.41634988446,550.0,63147.911381527985,1,1,2,3,99.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030879881176409163,27455.613644142606,7,4,7,7_0,7_3,7_1_0 +15244,2,62.0,0.0,7,400,300.0,0.0,0.0,0,11,0.0,264.8654554020448,511.56016301161833,596.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,115257,2,1,2,0,1,,83.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,925.593761151537,300.0,26442.340696743642,0,5,0,1,70.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022539608230424057,26442.340696743642,7,4,7,7_1,7_0,7_0_0 +15245,2,43.0,0.0,1,111,1200.0,2000.0,0.0,90,90,0.0,0.0,2046.2406520464733,3200.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,0,,2,,1,115258,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,322.651314388716,1200.0,29269.698067312227,1,4,0,1,107.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10932808369395827,16260.943370729015,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +15246,2,73.0,0.0,2,111,420.0,1200.0,0.0,77,78,0.0,0.0,716.1842282162656,1620.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,115259,2,1,2,0,1,,230.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1012.19806138743,420.0,24113.38400007439,5,5,0,1,75.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06718260697026192,16075.589333382928,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +15247,1,27.0,193.0,1,111,480.0,0.0,0.0,0,55,0.0,0.0,818.4962608185893,480.0,0.0,0.0,42,2,2,2,2,1,2,2,1,0,,2,,1,115260,2,3,0,0,1,,160.0,541.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2777.91415346987,480.0,10158.47084033673,0,4,2,3,37.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.04725120616520755,10158.47084033673,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +15248,2,71.0,0.0,7,120,1104.0,0.0,0.0,75,74,316.40485531098045,0.0,1882.5413998827555,1474.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,115261,2,1,2,0,1,,200.0,,41,0.0,3.0,14.0,2.0,1.5,2,2,1380.99683670343,1104.0,54767.65948750434,5,5,0,1,340.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026913693478836802,36511.77299166956,9,5,9,9_1,9_0,9_0_0 +15249,2,61.0,0.0,2,111,550.0,0.0,0.0,56,64,0.0,0.0,937.8602988546337,550.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,30.0,2,,2,115262,2,2,0,3,1,960.0,0.0,507.0,43,3.0,3.0,5.0,3.0,2.0,3,3,578.205825069597,550.0,53484.481002416804,4,1,2,3,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010283356773624618,26742.240501208402,7,4,7,7_0,7_4,7_0_1 +15250,2,63.0,0.0,2,120,450.0,0.0,0.0,0,78,0.0,0.0,767.3402445174275,610.0,221.69427606344334,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115263,2,1,0,1,1,,560.0,332.0,11,0.0,2.0,4.0,1.0,1.0,1,1,2648.03481032754,450.0,14477.37430969857,0,5,2,3,90.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04213471220339682,14477.37430969857,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +15251,2,53.0,0.0,6,111,1949.0,0.0,0.0,34,37,0.0,66.2163638505112,3323.435859032147,1999.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,4,115264,2,1,2,0,1,,498.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,557.769406213127,1949.0,78331.00377697409,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025519907873153277,34056.95816390178,9,5,9,9_1,9_4,9_0_0 +15252,0,29.0,0.0,7,111,1240.0,,,22,46,0.0,0.0,,1240.0,0.0,,20,0,0,0,0,0,0,0,0,1,3.0,2,,5,115265,2,3,0,0,2,,464.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,103.50988486191049,1240.0,43404.0,1,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028568795502718642,28936.0,8,4,8,8_0,8_2,8_0_0 +15253,2,65.0,0.0,5,111,498.0,987.0,0.0,78,74,0.0,0.0,849.1898705992865,1485.0,0.0,1873.8234953165718,44,0,0,0,0,0,0,0,0,0,,1,,3,115266,2,1,2,0,1,,183.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,306.104314961579,498.0,36507.04961908309,5,5,0,1,86.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04067707512643683,24338.033079388726,7,4,7,7_1,7_3,7_0_0 +15255,2,38.0,0.0,2,300,2120.0,0.0,0.0,52,62,0.0,0.0,3615.0251519487697,2120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,115268,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,757.377661246994,2120.0,42896.922910714646,1,1,1,2,130.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049420794223691826,18650.836048136804,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +15256,2,79.0,0.0,9,112,1200.0,0.0,0.0,0,77,0.0,198.6490915515336,2046.2406520464733,1350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,115269,2,1,1,0,1,,400.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1480.30363209211,1200.0,26811.40483700552,0,5,0,1,65.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050351706977200573,26811.40483700552,7,4,7,7_1,7_0,7_0_0 +15257,2,55.0,0.0,6,112,1600.0,850.0,0.0,64,21,0.0,331.081819252556,2728.320869395298,2700.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,0,,1,,4,115270,2,1,3,0,1,,450.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1726.66173814136,1600.0,44918.04052366388,1,1,0,1,110.0,6,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06010947869770891,29945.360349109254,8,4,8,8_1,8_1,8_0_0 +15258,2,46.0,0.0,7,111,2500.0,0.0,0.0,54,34,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,115271,2,1,1,0,1,,650.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,4,3,1316.05495451033,2500.0,91872.81445761354,1,1,1,2,200.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027211531667546775,29636.3917605205,8,4,8,8_1,8_3,8_0_0 +15259,2,54.0,0.0,2,111,1500.0,1860.0,0.0,0,42,0.0,0.0,2557.8008150580918,3360.0,0.0,3531.2175291680073,10,0,0,0,0,0,0,0,0,3,35.0,1,,2,115272,2,1,3,0,2,,530.0,,32,1.0,2.0,7.0,3.0,2.0,3,3,476.667417662586,1500.0,41410.758222184886,0,1,1,2,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08113833564631413,20705.379111092443,5,3,5,5_1,5_3,5_0_1 +15260,2,67.0,0.0,5,400,600.0,,,71,71,0.0,0.0,,900.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,3,115273,2,2,0,0,2,,500.0,,41,0.0,0.0,5.0,3.0,2.0,3,2,8.280596007637794,600.0,16032.014457831325,5,5,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05613767392533554,8016.007228915662,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +15261,2,61.0,0.0,5,112,768.0,0.0,0.0,78,75,0.0,0.0,1309.5940173097429,1268.0,692.7946126982605,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,115274,2,1,2,0,1,,106.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,951.93738934295,768.0,46954.44381021632,5,5,0,1,85.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027004898729608835,31302.962540144214,8,4,8,8_1,8_0,8_0_0 +15262,0,76.0,0.0,1,112,789.0,0.0,0.0,71,71,0.0,0.0,1345.4032287205562,1007.0,302.0584511364416,0.0,71,2,2,2,2,2,2,2,1,0,,1,,1,115275,2,1,1,0,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2201.26543095145,789.0,21155.638295766537,5,5,0,1,90.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.04759960375204142,14103.758863844358,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +15263,2,38.0,0.0,6,112,2000.0,0.0,0.0,0,37,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,4,115276,2,1,2,0,1,,200.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,329.64630612146,2000.0,111837.91930900421,0,1,0,1,85.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017883022255395068,111837.91930900421,10,5,10,10_1,10_0,10_0_0 +15264,2,32.0,0.0,6,111,1200.0,0.0,0.0,47,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,115277,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1850.80106846016,1200.0,60369.8956192061,1,1,1,2,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019877456929347937,33538.83089955895,8,4,8,8_0,8_3,8_0_0 +15265,2,27.0,0.0,2,111,700.0,0.0,0.0,0,37,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,2,2,2,2,2,1,2,2,2,25.0,2,,2,115278,1,2,0,0,2,,0.0,565.0,12,1.0,0.0,1.0,1.0,1.0,1,1,749.754790094464,700.0,18725.278111604057,0,1,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03738262234760668,18725.278111604057,5,3,5,5_0,5_3,5_0_1 +15266,2,48.0,0.0,6,120,2000.0,0.0,0.0,34,34,0.0,0.0,3410.4010867441225,3467.0,155.18599324441035,0.0,20,2,2,2,1,1,2,2,2,2,15.0,1,,4,115279,2,1,3,0,1,,150.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1064.29449576065,2000.0,61494.15995279157,1,1,0,1,95.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.05637933752833733,34163.422195995314,9,5,9,9_1,9_0,9_0_0 +15267,2,49.0,0.0,1,111,0.0,0.0,1500.0,85,23,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,10,0,0,0,0,0,0,0,0,2,15.0,2,,1,115280,1,2,0,0,1,,0.0,2427.0,42,1.0,0.0,5.0,4.0,2.3,3,2,947.411190237031,0.0,158166.86969889124,6,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009483654844125142,68768.20421690925,10,5,10,10_0,10_4,10_1_0 +15268,2,51.0,0.0,6,111,850.0,,,85,52,0.0,0.0,,950.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,4,115281,1,3,0,0,2,,760.0,,42,2.0,3.0,6.0,3.0,2.0,3,3,113.56098343215909,850.0,12400.773006652827,6,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07660812753288358,6200.386503326414,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15269,2,43.0,0.0,2,111,400.0,110.0,0.0,56,63,0.0,0.0,682.0802173488245,510.0,0.0,208.8354452733768,50,0,0,0,0,0,0,0,0,0,,2,,2,115282,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,706.571399998895,400.0,34456.910891119456,1,4,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014801094666075877,14981.265604834547,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +15270,2,63.0,0.0,7,120,1776.0,0.0,0.0,63,74,0.0,0.0,3028.4361650287806,1776.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,115283,2,1,2,0,1,,305.0,,42,2.0,6.0,4.0,3.0,2.0,3,3,1355.46173394824,1776.0,47344.63339929991,1,5,0,1,82.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03751217133780281,23672.316699649957,6,3,6,6_1,6_1,6_0_0 +15271,2,41.0,0.0,1,112,3500.0,0.0,0.0,77,37,0.0,0.0,5968.201901802214,3675.0,242.47811444439117,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,115284,1,1,3,0,1,,700.0,,42,1.0,1.0,4.0,4.0,2.3,3,2,923.811917134528,3500.0,54793.77462453205,6,1,1,2,100.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06706966302618333,23823.380271535676,6,3,6,6_1,6_1,6_1_0 +15272,2,49.0,0.0,1,111,1500.0,1000.0,0.0,55,55,0.0,0.0,2557.8008150580918,2500.0,0.0,1898.504047939789,42,0,0,0,0,0,0,0,0,1,2.0,1,,1,115285,2,1,2,0,1,,800.0,600.0,43,2.0,0.0,4.0,4.0,2.5,4,2,230.871599668846,1500.0,20712.019567326115,1,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1207028600892127,8284.807826930446,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +15273,2,72.0,0.0,7,111,200.0,780.0,0.0,77,78,0.0,0.0,341.04010867441224,980.0,0.0,1480.8331573930354,70,1,2,2,1,2,2,2,2,0,,2,,5,115286,1,1,0,1,1,677.0,227.0,366.0,41,0.0,2.0,2.0,2.0,1.5,2,2,419.015574736394,200.0,28866.81251372553,5,5,2,3,75.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.033949020160574765,19244.54167581702,5,3,5,5_0,5_2,5_0_0 +15274,2,65.0,0.0,5,111,100.0,100.0,0.0,52,75,0.0,0.0,170.52005433720612,200.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,1,,3,115287,2,1,2,0,1,,400.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,649.494909664729,100.0,66263.93309679985,1,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003018233157211412,44175.95539786657,10,5,10,10_1,10_4,10_0_0 +15275,2,51.0,0.0,8,111,1850.0,0.0,0.0,46,48,0.0,331.081819252556,3154.621005238313,2100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,4,60.0,1,2003.0,6,115288,2,1,3,0,1,,630.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,558.950537818604,1850.0,64097.70049095702,1,1,1,2,143.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0327624857664944,30522.71451950334,8,4,8,8_1,8_4,8_0_0 +15276,1,26.0,406.0,1,112,500.0,0.0,0.0,0,85,0.0,1191.8945493092015,852.6002716860306,1580.0,249.40606057137379,0.0,50,2,2,1,1,2,2,2,2,0,,1,,1,115289,2,2,2,0,1,,500.0,390.0,21,1.0,0.0,4.0,3.0,1.8,2,1,386.421360022493,500.0,9137.91745157179,0,6,2,3,70.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.1729059173902067,5076.620806428772,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +15277,2,43.0,0.0,2,120,1080.0,0.0,0.0,85,65,2109.365702073203,0.0,1841.6165868418261,3180.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,115290,2,1,1,0,1,,500.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,825.132636177135,1080.0,43107.16728786843,6,1,1,2,160.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07376963507632155,20527.222518032588,5,3,5,5_1,5_0,5_0_1 +15278,0,54.0,0.0,2,111,700.0,120.0,0.0,0,52,0.0,0.0,1193.6403803604428,820.0,0.0,227.8204857527747,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,115291,2,2,0,1,1,,800.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,363.222265414736,700.0,45950.68726587105,0,1,5,0,91.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017845217314280272,22975.343632935525,6,3,6,6_0,6_2,6_0_1 +15279,2,91.0,0.0,2,111,221.0,145.0,0.0,0,77,0.0,0.0,376.84932008522554,366.0,0.0,275.2830869512694,50,0,0,0,0,0,0,0,0,0,,2,,2,115292,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,794.298673295498,221.0,23508.205866889424,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015569031599961425,23508.205866889424,6,3,6,6_0,6_4,6_0_1 +15280,2,50.0,0.0,9,111,67.0,766.0,0.0,90,90,0.0,0.0,114.2484364059281,914.0,112.2327272571182,1454.2541007218783,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,115293,2,2,5,0,1,,100.0,,43,2.0,0.0,4.0,5.0,3.0,5,4,429.765091006488,67.0,12749.236748447602,4,4,0,1,149.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07169056611261787,4249.745582815867,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +15281,2,51.0,0.0,8,120,1000.0,0.0,0.0,55,67,1792.9608467622227,0.0,1705.2005433720612,2700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,115294,2,1,1,0,1,,750.0,,43,2.0,1.0,4.0,5.0,2.4,2,2,923.979656902851,1000.0,70168.66245648393,1,1,1,2,150.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03847871550458073,29236.94269020164,8,4,8,8_1,8_0,8_0_0 +15282,1,58.0,125.0,5,111,380.0,0.0,0.0,0,56,0.0,0.0,647.9762064813832,380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,115295,2,1,0,1,1,31.0,0.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1876.8901603274,380.0,11543.189541081181,0,1,2,3,59.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03291984409054481,11543.189541081181,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +15283,2,43.0,0.0,9,112,1200.0,0.0,0.0,69,63,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,115296,2,2,0,0,1,,400.0,653.0,43,2.0,1.0,3.0,3.0,1.8,2,2,5602.64037965631,1200.0,28987.27323366315,1,4,2,3,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04139747779402826,16104.040685368416,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +15284,1,43.0,413.0,2,111,220.0,80.0,0.0,56,52,0.0,0.0,375.14411954185346,300.0,0.0,151.8803238351831,50,1,2,2,2,1,2,2,2,2,8.0,2,,2,115297,2,2,0,1,1,636.0,400.0,388.0,43,4.0,0.0,4.0,5.0,2.8,4,4,298.17308235048,220.0,21939.2116747816,4,1,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01367414674907577,7835.432740993429,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15285,2,51.0,0.0,8,111,640.0,1560.0,0.0,56,38,0.0,198.6490915515336,1091.3283477581192,2350.0,0.0,2961.666314786071,41,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,115298,2,2,1,0,1,,460.0,,43,2.0,3.0,10.0,6.0,3.0999999999999996,4,2,1123.14953545426,640.0,58208.929114629034,1,1,1,2,168.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040371812980311284,18777.07390794485,5,3,5,5_1,5_2,5_0_0 +15286,2,58.0,0.0,1,111,650.0,0.0,0.0,78,67,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,60,2,1,2,1,1,2,2,2,0,,2,,1,115299,2,2,0,3,1,768.0,0.0,370.0,42,2.0,0.0,3.0,5.0,2.8,4,4,380.873350164395,650.0,40901.61458384249,6,4,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.015891793187469225,14607.719494229463,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +15287,2,63.0,0.0,5,111,475.0,0.0,0.0,0,74,0.0,595.9472746546007,809.9702581017291,948.0,31.86855218411998,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,115300,2,2,1,0,1,,170.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,957.732332937196,475.0,31741.0,0,5,1,2,98.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029866733877319557,31741.0,8,4,8,8_1,8_3,8_0_0 +15288,2,30.0,0.0,1,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,3020.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115301,2,1,1,0,1,,494.0,473.0,42,1.0,0.0,4.0,4.0,2.1,2,2,251.082196256738,0.0,38895.642693532194,6,1,2,3,75.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07764365854024528,18521.73461596771,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +15289,1,68.0,543.0,2,111,504.0,1580.0,0.0,65,68,0.0,0.0,859.4210738595189,2084.0,0.0,2999.6363957448666,71,2,2,2,1,2,2,2,2,3,60.0,2,,2,115302,1,3,0,0,2,,0.0,603.0,43,4.0,4.0,5.0,8.0,3.8999999999999995,5,4,1184.15395422793,504.0,34181.407190433805,4,1,2,3,152.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06096881817619374,8764.463382162516,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +15290,2,24.0,0.0,1,111,0.0,0.0,0.0,35,46,0.0,0.0,0.0,322.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,1,115303,2,1,0,0,1,,0.0,850.0,42,1.0,0.0,1.0,2.0,1.5,2,2,1147.28683246463,0.0,33851.982250426285,3,2,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009511998370374461,22567.988166950858,6,3,6,6_0,6_4,6_1_0 +15291,2,49.0,0.0,5,111,150.0,0.0,0.0,45,46,0.0,0.0,255.78008150580916,150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,3,115304,2,1,0,1,2,586.0,0.0,450.0,43,2.0,0.0,4.0,4.0,2.3,3,2,787.436649018459,150.0,49804.26398161099,1,1,2,3,75.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00301179031689704,21654.027818091734,6,3,6,6_0,6_2,6_0_0 +15292,2,32.0,0.0,2,211,727.0,1628.0,0.0,42,53,0.0,0.0,1239.6807950314885,2355.0,0.0,3090.7645900459765,71,0,0,0,0,0,0,0,0,2,90.0,1,,2,115305,2,1,1,0,1,,369.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,823.142247569149,727.0,48278.175707860115,1,1,1,2,160.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04877980506659006,22989.607479933387,6,3,6,6_1,6_1,6_0_1 +15293,2,68.0,0.0,2,111,510.0,120.0,0.0,75,67,0.0,0.0,869.6522771197511,630.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,1,1.0,2,,2,115306,2,3,0,1,1,,0.0,,41,0.0,2.0,4.0,3.0,1.8,3,2,2094.52169139944,510.0,39335.63318178946,5,5,0,1,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01601601268469374,21853.129545438587,6,3,6,6_0,6_3,6_0_1 +15294,2,51.0,0.0,5,400,300.0,0.0,0.0,0,69,0.0,1059.4618216081792,511.56016301161833,1340.0,332.541414095165,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,3,115307,1,3,2,0,2,,220.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1979.49683471482,300.0,13123.696699988845,0,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10210537706202392,13123.696699988845,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +15295,2,55.0,0.0,5,111,500.0,,,0,77,0.0,0.0,,752.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,3,115308,2,1,0,0,2,,460.0,,31,0.0,2.0,4.0,3.0,2.0,3,3,92.67649550551292,500.0,53707.16263399967,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01400185679375178,26853.581316999836,7,4,7,7_1,7_3,7_0_0 +15296,2,67.0,0.0,6,112,888.0,0.0,0.0,75,75,0.0,741.6232751257254,1514.2180825143903,1580.0,182.89777775234077,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,115309,2,1,3,0,1,,182.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1715.13534146166,888.0,46512.32357548355,5,5,0,1,80.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033969491922626965,31008.21571698903,8,4,8,8_1,8_0,8_0_0 +15297,2,44.0,0.0,7,111,0.0,0.0,1485.0,56,47,0.0,0.0,936.0226612658944,1485.0,0.0,1777.147239133551,71,1,2,2,2,1,2,2,2,0,,2,,5,115310,2,1,0,0,1,,0.0,573.0,43,2.0,0.0,4.0,4.0,2.3,3,2,349.25115116792,0.0,23543.008625794788,1,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.06307605045741549,10236.0907068673,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +15299,0,33.0,0.0,8,111,780.0,,,56,54,0.0,0.0,,868.0,121.93185183489385,,43,0,0,0,0,0,0,0,0,0,,1,2000.0,6,115312,2,2,0,0,2,,840.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,82.73993830067987,780.0,3940.50753034176,1,1,5,0,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22027619369241974,2189.1708501898665,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15300,2,79.0,0.0,2,111,0.0,0.0,250.0,75,74,0.0,0.0,157.57957260368593,250.0,0.0,299.1830368911702,31,0,0,0,0,0,0,0,0,0,,2,,2,115313,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,878.77189063486,0.0,58223.37098868169,5,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0042938084098325165,38815.58065912112,9,5,9,9_0,9_4,9_0_1 +15301,2,70.0,0.0,2,111,700.0,500.0,0.0,0,74,0.0,0.0,1193.6403803604428,1200.0,0.0,949.2520239698945,10,0,0,0,0,0,0,0,0,0,,2,,2,115314,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,621.209111806162,700.0,40349.94998091551,0,5,0,1,99.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029739813818048577,40349.94998091551,9,5,9,9_0,9_3,9_0_1 +15302,2,38.0,0.0,6,111,350.0,,,21,21,0.0,0.0,,419.0,95.60565655235995,,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,115315,2,1,0,0,2,,420.0,650.0,43,2.0,1.0,3.0,4.0,2.1,2,2,127.03041474588963,350.0,45035.61175070663,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009303748382932218,21445.529405098394,6,3,6,6_1,6_2,6_0_0 +15303,2,86.0,0.0,2,111,128.0,0.0,0.0,0,77,0.0,0.0,218.26566955162383,128.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,2,115316,2,2,0,1,1,,0.0,387.0,11,0.0,1.0,1.0,1.0,1.0,1,1,329.104539681547,128.0,15460.599381899949,0,5,2,3,30.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.00827910980927766,15460.599381899949,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +15304,1,40.0,283.0,6,111,350.0,,,0,81,0.0,0.0,,500.0,207.83838380947813,,60,0,0,0,0,0,0,0,0,0,,2,,4,115317,2,2,0,0,2,,265.0,339.0,32,1.0,0.0,3.0,2.0,1.3,1,1,154.92048042981588,350.0,4884.014276844022,0,4,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10237480311443574,3756.9340591107857,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15305,2,31.0,0.0,9,111,1480.0,0.0,0.0,0,22,0.0,0.0,2523.6968041906507,1480.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,115318,2,1,1,0,1,,600.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,733.5296206145,1480.0,78634.98149549196,0,1,1,2,190.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018821140055648725,78634.98149549196,10,5,10,10_1,10_4,10_0_0 +15306,2,58.0,0.0,2,112,500.0,0.0,0.0,0,54,1750.7735327207586,0.0,852.6002716860306,2198.0,52.6523905650678,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,115319,2,2,3,0,2,,120.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,2473.15582839584,500.0,37058.07960962669,0,1,0,1,90.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05931230174779534,24705.386406417794,7,4,7,7_1,7_1,7_0_1 +15307,2,63.0,0.0,2,111,600.0,0.0,0.0,0,33,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115320,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1016.63023048198,600.0,62531.43982577402,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00959517327078552,62531.43982577402,10,5,10,10_0,10_4,10_0_1 +15308,2,42.0,0.0,7,221,624.0,836.0,0.0,63,42,0.0,0.0,1064.0451390641663,1460.0,0.0,1587.1493840776636,20,0,0,0,0,0,0,0,0,2,2.0,1,,5,115321,2,1,2,0,1,,487.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,1914.74911095697,624.0,56796.74638109882,1,1,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025705697826484443,22718.698552439528,6,3,6,6_1,6_1,6_0_0 +15309,2,33.0,0.0,1,112,300.0,600.0,0.0,0,42,0.0,0.0,511.56016301161833,951.0,70.66505049522257,1139.1024287638734,44,0,0,0,0,0,0,0,0,1,7.0,2,,1,115322,2,1,0,0,1,,500.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,517.393039362521,300.0,14434.464994021331,0,1,2,3,80.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06588397979377127,14434.464994021331,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +15310,2,34.0,0.0,2,111,550.0,,,34,31,0.0,0.0,,596.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,115323,2,2,0,0,2,,450.0,900.0,43,2.0,1.0,3.0,2.0,1.5,2,2,120.06916558255071,550.0,37675.600385768674,1,1,3,4,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015819256863790526,25117.06692384578,7,4,7,7_0,7_2,7_0_1 +15311,2,56.0,0.0,1,212,600.0,0.0,0.0,0,11,0.0,0.0,1023.1203260232367,960.0,498.81212114274757,0.0,71,0,0,0,0,0,0,0,0,1,1.0,5,,1,115324,2,1,4,0,1,,0.0,,22,1.0,0.0,9.0,2.0,1.5,2,2,1534.95583597517,600.0,9350.637087119081,0,1,0,1,120.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10266680131586357,6233.758058079387,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +15312,2,70.0,0.0,6,111,1200.0,0.0,0.0,0,75,0.0,0.0,2046.2406520464733,1270.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,115325,1,1,2,0,1,,220.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1304.55677857644,1200.0,43303.752262754104,0,5,0,1,125.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029327712580055953,43303.752262754104,9,5,9,9_1,9_3,9_0_0 +15313,2,50.0,0.0,2,111,300.0,,,0,62,0.0,0.0,,438.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,115326,1,3,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,54.7496994617999,300.0,10032.178440622512,0,4,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043659510503365945,10032.178440622512,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +15314,2,85.0,0.0,2,111,183.0,156.0,0.0,77,75,0.0,0.0,312.0516994370872,339.0,0.0,296.1666314786071,70,0,0,0,0,0,0,0,0,0,,2,,2,115327,2,2,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,871.883799235595,183.0,29605.756945660756,5,5,0,1,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011450475683570941,19737.171297107172,5,3,5,5_0,5_4,5_0_1 +15315,2,60.0,0.0,9,120,900.0,0.0,0.0,67,64,0.0,463.51454695357836,1534.680489034855,1430.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,2004.0,6,115328,2,2,1,0,1,,400.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,824.209963336463,900.0,36650.35964925517,1,1,1,2,77.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03901735245397684,24433.57309950345,7,4,7,7_1,7_0,7_0_0 +15316,2,36.0,0.0,7,111,480.0,,,21,55,0.0,0.0,,606.0,174.58424239996165,,50,2,2,2,2,1,2,2,2,0,,1,,5,115329,1,3,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,103.33568716352492,480.0,82803.14401349533,1,4,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.007318562685267526,34501.310005623054,9,5,9,9_1,9_2,9_0_0 +15317,2,25.0,0.0,2,111,540.0,720.0,0.0,46,54,0.0,0.0,920.8082934209131,1260.0,0.0,1366.922914516648,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,115330,2,1,0,1,1,912.0,0.0,359.0,43,2.0,0.0,3.0,3.0,1.8,2,2,252.990581335775,540.0,33388.97877842631,1,1,2,3,58.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03773700322976414,18549.432654681284,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +15318,2,39.0,0.0,1,300,840.0,0.0,0.0,0,11,263.6707127591504,198.6490915515336,1432.3684564325313,1365.0,173.19865317456512,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115331,2,3,4,0,1,,125.0,,22,1.0,2.0,7.0,3.0,2.0,3,3,1217.54090058773,840.0,24496.72876034289,0,1,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055721725678318436,12248.364380171444,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +15319,2,68.0,0.0,5,112,480.0,1300.0,0.0,75,75,0.0,0.0,818.4962608185893,1780.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,0,,1,,3,115332,2,1,1,0,1,,1200.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,801.410474954006,480.0,36255.792530546634,5,5,0,1,80.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049095603095706555,24170.528353697755,7,4,7,7_1,7_1,7_0_0 +15320,2,75.0,0.0,6,120,300.0,0.0,0.0,77,75,949.2145659329414,397.2981831030672,511.56016301161833,1590.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,115333,1,1,2,0,1,,210.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1888.56952269699,300.0,27536.30534964348,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057741951209899195,18357.53689976232,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +15321,2,71.0,0.0,2,112,1800.0,0.0,0.0,77,75,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115334,2,1,2,0,1,,121.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,801.859213375517,1800.0,31711.8611638859,5,5,0,1,130.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05676109613048747,21141.240775923932,5,3,5,5_1,5_0,5_0_1 +15322,1,34.0,180.0,1,111,800.0,750.0,0.0,56,65,0.0,0.0,1364.160434697649,1550.0,0.0,1423.8780359548418,60,0,0,0,0,0,0,0,0,0,,1,,1,115335,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,285.681416952527,800.0,40509.12180808842,1,4,1,2,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.038262986972245665,16878.800753370175,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +15323,0,33.0,0.0,6,112,0.0,0.0,0.0,0,56,0.0,397.2981831030672,0.0,330.0,41.567676761895626,0.0,50,2,2,2,1,2,2,2,2,2,5.0,1,,4,115336,2,2,2,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1749.24265525323,0.0,11754.80891835059,0,1,5,0,75.0,6,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.028073616703784318,11754.80891835059,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +15324,2,34.0,0.0,2,111,280.0,0.0,0.0,0,31,0.0,0.0,477.4561521441771,280.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,,2,115337,2,1,0,1,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1043.63368010431,280.0,49305.85423174647,0,1,1,2,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005678838838973343,49305.85423174647,10,5,10,10_0,10_4,10_0_1 +15325,2,25.0,0.0,9,111,0.0,,,46,62,0.0,0.0,,196.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,115338,1,1,0,0,1,,131.0,525.0,43,2.0,0.0,2.0,2.0,1.5,2,2,188.92594807058103,0.0,15393.871009642935,1,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012732340025275181,10262.58067309529,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +15327,1,41.0,267.0,2,111,536.0,83.0,0.0,0,56,0.0,0.0,913.9874912474248,619.0,0.0,157.57583597900248,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,115340,2,3,0,1,1,789.0,0.0,295.0,32,1.0,0.0,4.0,3.0,1.6,1,1,390.958075567034,536.0,15756.905584084729,0,1,2,3,81.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03928436308111291,9848.065990052955,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +15328,2,58.0,0.0,7,212,1000.0,0.0,0.0,54,78,1582.0242765549024,0.0,1705.2005433720612,2560.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,115341,2,1,2,0,1,,120.0,,42,1.0,1.0,7.0,2.0,1.5,2,2,802.040576393594,1000.0,51932.22686661552,1,7,0,1,170.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049295016879888284,34621.48457774368,9,5,9,9_1,9_0,9_0_0 +15329,2,74.0,0.0,6,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,767.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,115342,1,1,3,0,1,,364.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1330.80899463663,0.0,22561.12557375948,0,5,0,1,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033996530780010664,22561.12557375948,6,3,6,6_1,6_3,6_0_0 +15330,1,53.0,271.0,6,111,276.0,300.0,0.0,0,56,0.0,0.0,470.6353499706889,576.0,0.0,569.5512143819367,71,2,1,2,1,1,2,1,2,0,,2,,4,115343,2,1,0,1,1,564.0,0.0,507.0,12,1.0,4.0,4.0,1.0,1.0,1,1,2689.59409454064,276.0,7999.383729295916,0,1,2,3,105.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07200554686363295,7999.383729295916,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +15331,2,55.0,0.0,6,111,1200.0,1300.0,0.0,52,38,0.0,172.1625460113291,2046.2406520464733,2630.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,0,,1,,4,115344,2,1,2,0,1,,600.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,629.70960076097,1200.0,62741.190282402735,1,4,0,1,117.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041918235662444014,41827.46018826849,9,5,9,9_1,9_4,9_0_0 +15332,2,62.0,0.0,6,111,1500.0,0.0,0.0,21,21,0.0,0.0,2557.8008150580918,1505.0,6.927946126982604,0.0,50,2,2,2,2,1,2,2,2,0,,1,,4,115345,2,1,3,0,1,,1200.0,,43,3.0,2.0,3.0,3.0,2.0,3,3,2328.01842445373,1500.0,46041.93654723333,1,1,0,1,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.03268759120190473,23020.968273616665,6,3,6,6_1,6_3,6_0_0 +15333,2,38.0,0.0,2,111,1000.0,0.0,0.0,63,52,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,115346,1,3,0,0,2,,0.0,470.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1500.28355760398,1000.0,27816.135068003132,4,1,2,3,72.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03595035750133019,18544.090045335422,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +15334,2,52.0,0.0,1,120,1700.0,0.0,0.0,46,47,0.0,794.5963662061343,2898.840923732504,2360.0,83.13535352379125,0.0,41,2,2,2,1,1,2,2,2,2,50.0,1,,1,115347,1,1,2,0,2,,170.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,2823.16055560969,1700.0,73412.66178111131,1,1,0,1,220.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03214704306781062,48941.77452074087,10,5,10,10_1,10_1,10_1_0 +15335,0,80.0,0.0,1,111,700.0,0.0,0.0,0,77,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,2,,1,115348,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,2131.91563223776,700.0,16100.879048966764,0,5,5,0,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.04347588711592246,16100.879048966764,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +15336,2,84.0,0.0,1,111,353.0,1031.0,0.0,75,77,0.0,0.0,601.9357918103376,1384.0,0.0,1957.3576734259225,70,0,0,0,0,0,0,0,0,0,,1,,1,115349,2,1,1,0,1,,400.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,290.04243236605,353.0,59904.36119833679,5,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023103493173355565,39936.240798891195,9,5,9,9_1,9_3,9_1_0 +15337,2,84.0,0.0,2,111,0.0,0.0,0.0,86,77,0.0,0.0,0.0,1518.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,115350,1,3,0,1,2,,250.0,300.0,41,0.0,0.0,3.0,2.0,1.5,2,2,293.690641533786,0.0,15932.961805178886,5,5,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.09527418809895005,10621.974536785923,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +15338,1,25.0,240.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,580.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,4,115351,2,1,0,0,1,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2140.36956679254,0.0,14578.86502386005,0,1,2,3,24.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0397836182069565,14578.86502386005,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +15339,1,61.0,40.0,2,111,400.0,650.0,0.0,85,47,0.0,0.0,682.0802173488245,1050.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,115352,2,1,0,0,1,,0.0,320.0,42,1.0,2.0,3.0,4.0,2.1,2,2,347.934588051451,400.0,27512.653820291605,6,1,2,3,75.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03816425732168323,13101.263723948383,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15340,1,57.0,300.0,6,111,300.0,0.0,0.0,85,53,0.0,0.0,511.56016301161833,510.0,290.9737373332694,0.0,70,2,1,2,2,1,2,2,2,0,,2,,4,115353,2,1,0,1,1,450.0,0.0,446.0,42,1.0,3.0,3.0,3.0,1.8,2,2,1186.81490371516,300.0,17876.560765459366,7,4,2,3,76.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.028528977508101502,9931.422647477426,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +15341,2,63.0,0.0,2,111,480.0,96.0,0.0,0,55,0.0,0.0,818.4962608185893,576.0,0.0,182.25638860221974,71,2,2,2,2,1,2,2,2,3,10.0,2,,2,115354,1,3,0,1,2,1055.0,0.0,480.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1270.83020847654,480.0,19735.041042131088,0,1,2,3,77.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02918666339585178,19735.041042131088,5,3,5,5_0,5_3,5_0_1 +15342,2,44.0,0.0,2,111,600.0,800.0,0.0,0,37,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,115355,1,3,0,0,2,,210.0,410.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1920.80200269683,600.0,20933.80390165344,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06687747752759937,20933.80390165344,5,3,5,5_0,5_3,5_0_1 +15343,1,74.0,99.0,2,111,208.0,140.0,0.0,0,77,0.0,0.0,354.6817130213887,348.0,0.0,265.7905667115705,70,0,0,0,0,0,0,0,0,0,,2,,2,115356,2,2,0,1,1,,0.0,256.0,11,0.0,5.0,3.0,1.0,1.0,1,1,267.580178520474,208.0,12825.596803001632,0,5,2,3,50.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02713324029635455,12825.596803001632,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15344,2,44.0,0.0,6,111,398.0,1138.0,0.0,46,42,0.0,132.4327277010224,678.6698162620803,1636.0,0.0,2160.4976065554797,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,115357,2,1,1,0,1,,125.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,589.887014120104,398.0,55642.81884360406,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029401817413282474,27821.40942180203,7,4,7,7_1,7_4,7_0_0 +15345,2,43.0,0.0,2,111,500.0,0.0,0.0,56,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,,2,115358,2,1,0,1,1,321.0,0.0,366.0,43,2.0,0.0,4.0,4.0,2.1,2,2,210.240002294762,500.0,27056.632806344398,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018479757018499254,12884.110860163999,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +15346,2,25.0,0.0,9,112,300.0,,,47,54,0.0,0.0,,322.0,30.482962958723462,,31,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,115359,2,1,0,0,1,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,244.8402521041849,300.0,37944.071859745876,1,1,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008486174103565398,25296.04790649725,7,4,7,7_1,7_1,7_0_0 +15347,2,34.0,0.0,9,111,780.0,,,53,23,0.0,0.0,,846.0,91.44888887617039,,33,0,0,0,0,0,0,0,0,0,,1,2005.0,6,115360,2,3,0,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,89.69437739319946,780.0,150288.43004923704,1,1,1,2,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00562917584356185,71565.91907106525,10,5,10,10_1,10_2,10_0_0 +15348,2,42.0,0.0,1,400,690.0,0.0,0.0,56,68,2109.365702073203,0.0,1176.5883749267223,2780.0,124.70303028568689,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,115361,1,1,2,0,1,,120.0,,43,3.0,0.0,5.0,6.0,3.0999999999999996,5,3,1241.43502158677,690.0,42432.829282931256,1,1,0,1,88.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.065515310833121,13688.009446106858,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +15349,2,27.0,0.0,9,120,1353.0,0.0,0.0,63,62,0.0,214.54101887565628,2307.136335182399,1645.0,180.1265993015477,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,115362,2,1,1,0,1,,396.0,,43,3.0,0.0,4.0,4.0,2.3,3,2,875.556643916029,1353.0,30222.44188820932,1,1,1,2,96.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054429751443802556,13140.1921253084,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +15350,2,48.0,0.0,7,112,1073.0,0.0,0.0,54,64,1054.6828510366015,0.0,1829.6801830382217,3973.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,2,14.0,1,,5,115363,2,1,2,0,1,,154.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1257.41875175613,1073.0,57716.68621852026,1,1,1,2,100.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06883624581213629,25094.211399356638,7,4,7,7_1,7_0,7_0_0 +15351,1,45.0,86.0,1,111,650.0,1670.0,0.0,85,62,0.0,79.45963662061344,1108.3803531918397,2380.0,0.0,3170.5017600594474,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,115364,2,1,1,0,1,,344.0,,42,1.0,1.0,7.0,5.0,2.5999999999999996,3,2,1565.03087119873,650.0,31062.0,6,1,1,2,96.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0766209516450969,11946.923076923078,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +15352,2,38.0,0.0,8,112,2110.0,0.0,0.0,55,63,0.0,0.0,3597.973146515049,2110.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,115365,2,1,2,0,1,,320.0,,43,3.0,0.0,6.0,4.0,2.3,3,2,853.370143348999,2110.0,48191.48196746301,1,1,1,2,150.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043783671177088694,20952.81824672305,5,3,5,5_1,5_0,5_0_0 +15353,2,53.0,0.0,2,111,478.0,112.0,0.0,52,53,0.0,0.0,815.0858597318453,590.0,0.0,212.63245336925638,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,115366,2,1,0,1,1,,278.0,550.0,43,2.0,0.0,4.0,3.0,2.0,3,2,329.755153457148,478.0,38734.72044568836,1,1,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015231812524044538,19367.36022284418,5,3,5,5_0,5_3,5_0_1 +15354,1,44.0,500.0,1,400,600.0,0.0,0.0,0,52,0.0,1059.4618216081792,1023.1203260232367,1520.0,166.2707070475825,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,,1,115367,2,1,1,0,1,,180.0,850.0,32,1.0,0.0,7.0,5.0,2.5999999999999996,3,3,1483.91423031039,600.0,16923.375392016133,0,1,2,3,264.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08981659774072516,6508.990535390821,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +15355,2,30.0,0.0,1,111,0.0,0.0,0.0,35,23,0.0,0.0,0.0,466.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,15.0,2,,1,115368,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,545.209658936312,0.0,59419.68864058322,1,1,1,2,47.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0078425183749907,39613.125760388815,9,5,9,9_0,9_4,9_1_0 +15357,2,78.0,0.0,8,111,331.0,,,77,78,0.0,0.0,,441.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,115370,2,1,0,0,2,,428.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,113.14575439979576,331.0,40505.424652693066,5,5,0,1,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010887430604203762,27003.61643512871,7,4,7,7_1,7_2,7_0_0 +15358,2,78.0,0.0,2,111,351.0,402.0,0.0,77,78,0.0,0.0,598.5253907235934,753.0,0.0,763.1986272717952,71,0,0,0,0,0,0,0,0,0,,2,,2,115371,2,2,0,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,442.691004496253,351.0,22565.144224323194,5,5,0,1,74.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03337005039783144,15043.42948288213,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +15359,1,44.0,403.0,9,111,1474.0,0.0,0.0,85,63,0.0,0.0,2513.465600930418,1594.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,115372,2,1,1,0,1,,260.0,800.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1594.81864304672,1474.0,28361.187570171845,7,1,2,3,90.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05620357032145046,11817.161487571602,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +15360,1,41.0,70.0,9,111,600.0,,,0,64,0.0,0.0,,732.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,115373,2,2,0,0,2,,300.0,470.0,32,2.0,0.0,3.0,4.0,2.1,2,2,108.49118166352778,600.0,6491.873010315672,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11275636458643636,3091.36810015032,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +15361,2,28.0,0.0,9,400,0.0,0.0,0.0,0,63,0.0,0.0,0.0,2876.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,115374,2,1,1,0,1,,281.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1237.02177724188,0.0,23593.225364022433,0,1,1,2,146.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12189939932441979,23593.225364022433,6,3,6,6_1,6_0,6_0_0 +15362,2,61.0,0.0,6,112,1200.0,0.0,0.0,78,54,0.0,0.0,2046.2406520464733,1390.0,263.261952825339,0.0,60,0,0,0,0,0,0,0,0,1,5.0,1,,4,115375,2,1,2,0,1,,123.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,879.797024687738,1200.0,48518.67313691833,5,1,0,1,90.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028648763664197063,24259.336568459166,7,4,7,7_1,7_0,7_0_0 +15364,1,43.0,338.0,2,111,650.0,0.0,0.0,0,85,0.0,0.0,1108.3803531918397,685.0,48.49562288887823,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,115377,2,2,0,1,1,936.0,0.0,322.0,31,1.0,0.0,4.0,5.0,2.8,4,3,269.972472141661,650.0,11779.238532110092,0,6,2,3,61.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05815316483596936,4206.870904325033,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15365,2,78.0,0.0,1,111,1200.0,0.0,0.0,0,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,115378,2,1,0,0,1,,0.0,753.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1436.9548770506,1200.0,48087.79719611176,0,5,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024954355781907776,48087.79719611176,10,5,10,10_0,10_4,10_1_0 +15366,2,88.0,0.0,2,111,370.0,116.0,0.0,77,78,0.0,0.0,630.9242010476627,486.0,0.0,220.22646956101553,50,2,2,1,1,2,2,2,2,0,,2,,2,115379,2,2,0,1,1,,234.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1367.43029423092,370.0,26773.55288473885,5,5,0,1,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01815224158303712,17849.035256492567,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +15367,2,32.0,0.0,2,111,0.0,0.0,0.0,63,33,0.0,0.0,0.0,1098.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,115380,1,3,3,0,1,,555.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1277.7237866583,0.0,49210.74759092359,1,1,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022312199138436066,27339.30421717977,7,4,7,7_1,7_3,7_0_1 +15368,2,68.0,0.0,1,111,200.0,710.0,0.0,77,75,0.0,0.0,341.04010867441224,910.0,0.0,1347.9378740372501,70,0,0,0,0,0,0,0,0,0,,1,,1,115381,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,239.675800600894,200.0,36172.58707217106,5,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02515717214763711,24115.05804811404,6,3,6,6_1,6_3,6_1_0 +15369,2,33.0,0.0,1,221,500.0,0.0,0.0,0,21,0.0,0.0,852.6002716860306,526.0,36.025319860309544,0.0,42,2,2,2,2,1,2,2,2,0,,8,,1,115382,1,3,0,0,2,,250.0,615.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2696.0773549905,500.0,10881.979019051756,0,1,2,3,60.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.04833679600733462,8370.753091578274,1,1,1_0,1_0_0,1_1_0,1_1_0_0 +15370,2,71.0,0.0,2,111,270.0,130.0,0.0,77,46,0.0,0.0,460.40414671045653,400.0,0.0,246.80552623217258,50,2,1,2,1,1,2,2,2,0,,2,,2,115383,2,1,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1725.93892046258,270.0,39593.08436657912,5,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.010102774421324033,26395.389577719412,7,4,7,7_0,7_3,7_0_1 +15371,2,64.0,0.0,5,112,749.0,1891.0,0.0,0,75,0.0,214.54101887565628,1277.1952069856738,2802.0,0.0,3590.071154654141,70,2,1,2,2,1,2,2,2,0,,1,,3,115384,2,2,5,0,1,,204.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,265.138553036408,749.0,16423.083298691447,0,5,0,1,72.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.170613516904177,16423.083298691447,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +15372,2,59.0,0.0,7,111,180.0,,,0,42,0.0,0.0,,222.0,58.19474746665388,,10,0,0,0,0,0,0,0,0,2,60.0,2,,5,115385,2,2,0,0,2,,278.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,82.8613353336723,180.0,56697.38522048098,0,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003915524483831156,56697.38522048098,10,5,10,10_0,10_3,10_0_0 +15373,2,71.0,0.0,5,221,0.0,,,78,86,0.0,0.0,,264.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,3,115386,2,3,0,0,2,,180.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,102.14502293311382,0.0,2490.778594156848,5,5,0,1,25.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10599095424190702,1660.519062771232,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +15375,2,37.0,0.0,1,211,600.0,0.0,0.0,63,52,949.2145659329414,0.0,1023.1203260232367,1566.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,115388,2,1,2,0,1,,540.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1434.19785638769,600.0,36395.99186551729,4,1,1,2,170.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04302671584789747,17331.424697865375,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +15376,2,60.0,0.0,2,111,224.0,90.0,0.0,0,78,0.0,0.0,381.9649217153417,314.0,0.0,170.865364314581,70,0,0,0,0,0,0,0,0,0,,2,,2,115389,2,1,0,1,1,748.0,124.0,239.0,11,0.0,3.0,2.0,1.0,1.0,1,1,213.744530498171,224.0,18475.796579674527,0,5,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016995207684059245,18475.796579674527,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +15377,2,36.0,0.0,5,112,300.0,,,0,63,0.0,0.0,,476.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,3,115390,2,1,0,0,2,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,115.84088547277196,300.0,9298.634223511488,0,4,0,1,90.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051190313389942746,9298.634223511488,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +15378,2,65.0,0.0,2,111,553.0,0.0,0.0,75,78,0.0,0.0,942.9759004847498,553.0,0.0,0.0,71,1,2,2,1,1,2,2,2,0,,2,,2,115391,1,1,0,1,1,804.0,0.0,360.0,41,1.0,2.0,4.0,3.0,2.0,3,3,671.615723616134,553.0,57199.06992128176,5,5,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009667989370474854,28599.53496064088,8,4,8,8_0,8_4,8_0_1 +15379,2,74.0,0.0,2,111,270.0,930.0,0.0,86,78,0.0,0.0,460.40414671045653,1200.0,0.0,1765.6087645840037,70,0,0,0,0,0,0,0,0,0,,1,,2,115392,2,1,2,0,1,,180.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,348.08946876533,270.0,19586.70447581683,6,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06126604919585157,13057.802983877888,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +15381,1,48.0,120.0,2,111,160.0,430.0,0.0,0,67,0.0,0.0,272.8320869395298,590.0,0.0,816.3567406141093,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,115394,2,3,0,1,1,765.0,0.0,460.0,32,1.0,1.0,4.0,2.0,1.5,2,1,2898.20157480688,160.0,30723.433252516465,0,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019203582983411363,20482.288835010975,5,3,5,5_0,5_2,5_0_1 +15382,2,30.0,0.0,6,111,400.0,800.0,0.0,56,62,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,60,0,0,0,0,0,0,0,0,0,,2,,4,115395,1,3,0,0,1,,450.0,380.0,43,2.0,0.0,3.0,3.0,1.8,2,2,406.043030693682,400.0,27901.04844363899,1,4,2,3,60.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04300913646395899,15500.582468688326,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +15383,2,62.0,0.0,2,211,551.0,1600.0,0.0,56,78,0.0,0.0,939.5654993980057,2151.0,0.0,3037.6064767036623,71,0,0,0,0,0,0,0,0,0,,1,,2,115396,2,2,1,0,1,,350.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,243.690953241427,551.0,27647.379994784475,1,5,0,1,70.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07780122385577853,18431.58666318965,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +15384,2,42.0,0.0,1,300,400.0,0.0,0.0,52,11,0.0,0.0,682.0802173488245,400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,115397,2,1,2,0,1,,147.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1120.79415286602,400.0,51087.74102733684,1,1,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007829666999485486,24327.495727303256,7,4,7,7_1,7_0,7_1_0 +15385,2,43.0,0.0,8,112,1101.0,0.0,0.0,0,54,0.0,0.0,1877.4257982526394,1101.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,115398,2,1,1,0,1,,275.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,828.225014613004,1101.0,26078.25810075777,0,1,1,2,73.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04221907750686798,26078.25810075777,7,4,7,7_1,7_0,7_0_0 +15386,2,33.0,0.0,1,111,444.0,0.0,0.0,85,68,0.0,0.0,757.1090412571951,444.0,0.0,0.0,43,2,2,2,1,2,2,2,2,3,25.0,2,,1,115399,2,3,0,1,1,,0.0,500.0,42,1.0,0.0,1.0,3.0,1.8,2,2,899.982350286509,444.0,10666.7728502954,7,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04162458563910491,5925.984916830777,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +15387,2,43.0,0.0,8,120,350.0,739.0,0.0,0,46,0.0,0.0,596.8201901802214,1089.0,0.0,1402.994491427504,50,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,115400,2,1,0,0,1,,0.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,665.693397455798,350.0,40476.652249838975,0,1,1,2,56.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02690439894283333,26984.434833225983,7,4,7,7_0,7_1,7_0_0 +15388,1,46.0,345.0,2,111,350.0,120.0,0.0,0,52,0.0,0.0,596.8201901802214,470.0,0.0,227.8204857527747,71,2,1,2,1,2,2,2,2,0,,2,,2,115401,2,2,0,1,1,,0.0,530.0,32,1.0,0.0,3.0,3.0,1.6,1,1,171.080182282613,350.0,13894.66418966009,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03382593444393979,8684.165118537556,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +15389,2,81.0,0.0,1,300,754.0,0.0,0.0,77,77,2953.111982902484,264.8654554020448,1285.7212097025342,3754.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,115402,2,2,2,0,1,,210.0,,41,0.0,5.0,8.0,2.0,1.5,2,2,1727.43870981454,754.0,84789.20096205542,5,5,0,1,180.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044274506156508985,56526.13397470361,10,5,10,10_1,10_0,10_1_0 +15390,1,34.0,331.0,5,111,360.0,0.0,0.0,85,65,0.0,0.0,613.872195613942,360.0,0.0,0.0,60,1,2,2,2,1,2,2,2,2,25.0,2,,3,115403,1,2,0,1,1,,0.0,425.0,42,1.0,0.0,2.0,6.0,2.6999999999999997,2,2,239.181753180412,360.0,37261.006367475755,6,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.00966157479617178,13800.372728694725,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +15391,2,62.0,0.0,7,112,600.0,0.0,0.0,75,74,0.0,0.0,1023.1203260232367,605.0,6.927946126982604,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,115405,2,1,2,0,1,,142.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,799.620992042026,600.0,157948.39920810552,6,5,0,1,177.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0038303648725358714,105298.93280540367,10,5,10,10_1,10_0,10_0_0 +15392,2,72.0,0.0,1,221,2248.0,0.0,0.0,75,78,0.0,0.0,3833.2908215003936,2248.0,0.0,0.0,71,2,2,1,1,2,2,2,2,0,,1,,1,115406,2,1,1,0,1,,358.0,696.0,41,0.0,0.0,4.0,2.0,1.5,2,2,1916.3451150261,2248.0,33251.135368697505,5,5,2,3,60.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06760671402866618,22167.42357913167,6,3,6,6_1,6_1,6_1_0 +15393,2,33.0,0.0,6,111,1050.0,0.0,0.0,53,64,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,50,2,2,1,2,1,1,1,2,2,20.0,2,,4,115407,1,3,0,0,1,,240.0,321.0,43,2.0,0.0,2.0,2.0,1.5,2,2,512.995488631286,1050.0,34862.83011929536,1,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.030118036786085867,23241.886746196906,6,3,6,6_0,6_3,6_0_0 +15394,1,58.0,202.0,6,111,300.0,0.0,0.0,0,56,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,4,115408,1,1,0,0,1,,85.0,48.0,12,1.0,3.0,1.0,1.0,1.0,1,1,687.432320890794,300.0,5951.288011078694,0,1,2,3,38.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050409255852099794,5951.288011078694,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15395,2,25.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,536.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115409,2,1,0,1,1,,0.0,600.0,22,1.0,0.0,3.0,2.0,1.5,2,2,207.934207448233,0.0,22149.829387987997,0,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024198831991485967,14766.552925325332,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +15396,2,43.0,0.0,2,300,4900.0,0.0,0.0,43,46,0.0,463.51454695357836,8355.4826625231,5250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,115410,2,1,1,0,1,,195.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1342.1159817866,4900.0,67930.82696382485,1,4,1,2,370.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0772845000517332,32348.01283991659,8,4,8,8_1,8_0,8_0_1 +15397,1,37.0,125.0,5,111,2268.0,0.0,0.0,55,37,0.0,0.0,3867.3948323678346,2268.0,0.0,0.0,10,2,2,2,1,2,2,2,2,0,,2,,3,115411,1,2,0,0,1,,0.0,1213.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1157.41359531941,2268.0,34921.07473711762,4,4,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.064946454743254,16629.083208151245,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +15398,2,50.0,0.0,7,111,410.0,,,0,68,0.0,0.0,,496.0,119.1606733841008,,71,0,0,0,0,0,0,0,0,0,,1,,5,115412,1,3,0,0,2,,120.0,,32,2.0,3.0,4.0,5.0,2.5999999999999996,3,2,141.69236528578543,410.0,24167.51792427882,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02052341500496895,9295.199201645702,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15399,2,66.0,0.0,6,112,526.0,1752.0,0.0,77,74,0.0,0.0,896.9354858137042,2278.0,0.0,3326.17909199051,50,0,0,0,0,0,0,0,0,0,,1,,4,115413,2,2,3,0,1,,357.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1708.03532758494,526.0,31498.262743310384,6,5,0,1,210.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07232144891812495,20998.84182887359,5,3,5,5_1,5_2,5_0_0 +15400,2,60.0,0.0,1,111,287.0,0.0,0.0,85,31,885.9335948707453,0.0,489.39255594778155,1127.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,115414,2,2,2,0,1,,360.0,529.0,42,1.0,3.0,4.0,2.0,1.5,2,2,298.539905488619,287.0,5072.532553844836,6,1,2,3,80.0,4,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22217698714338777,3381.6883692298907,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +15401,2,54.0,0.0,1,111,0.0,0.0,0.0,90,34,0.0,0.0,0.0,695.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,115415,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,854.665601320449,0.0,212403.5488893052,1,1,0,1,110.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0032720733887652764,84961.41955572208,10,5,10,10_0,10_4,10_1_0 +15403,2,50.0,0.0,1,221,1870.0,0.0,0.0,63,47,0.0,556.2174563442941,3188.7250161057545,2390.0,138.5589225396521,0.0,10,2,2,2,2,1,2,2,2,2,25.0,1,,1,115417,2,3,4,0,1,,508.0,670.0,43,2.0,1.0,8.0,4.0,2.5,4,3,605.457155503383,1870.0,50742.22274588193,1,1,2,3,112.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.047100814088676564,20296.889098352774,5,3,5,5_1,5_1,5_1_0 +15404,1,26.0,154.0,2,211,0.0,0.0,577.0,0,45,0.0,26.486545540204478,363.6936535693072,597.0,0.0,690.5144491448209,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,115418,2,1,0,0,1,,0.0,282.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1546.40822039125,0.0,18911.660030447187,0,1,2,3,69.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03156782635891553,18911.660030447187,5,3,5,5_0,5_2,5_0_1 +15405,1,27.0,230.0,2,112,0.0,1440.0,0.0,67,56,0.0,0.0,0.0,1873.0,166.2707070475825,2733.845829033296,71,0,0,0,0,0,0,0,0,2,35.0,2,,2,115419,2,3,0,0,1,,140.0,206.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2520.57585804287,0.0,24971.91598902595,1,1,2,3,53.0,6,0,7,0,1,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07500425681485956,13873.286660569973,3,2,3_1,3_0_1,3_0_1,3_0_1_1 +15406,1,66.0,24.0,1,111,900.0,800.0,0.0,0,77,0.0,0.0,1534.680489034855,1700.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,1,115420,2,1,4,0,1,,200.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,1758.14283319757,900.0,27454.182800080107,0,5,1,2,120.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06192134773703917,18302.788533386738,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +15407,2,85.0,0.0,9,300,402.0,,,0,78,0.0,0.0,,494.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,115421,2,2,0,0,2,,978.0,,11,0.0,11.0,4.0,1.0,1.0,1,1,126.58207613024149,402.0,9646.0,0,5,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05121293800539083,9646.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +15408,1,29.0,171.0,2,111,600.0,300.0,0.0,85,68,0.0,0.0,1023.1203260232367,1020.0,166.2707070475825,569.5512143819367,71,2,1,2,1,2,2,2,2,0,,2,,2,115422,2,2,0,1,1,466.0,0.0,308.0,42,1.0,0.0,3.0,2.0,1.5,2,2,447.909243752336,600.0,11038.130606450319,6,1,2,3,62.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.09240695153615465,7358.753737633546,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15409,2,63.0,0.0,5,221,400.0,1900.0,0.0,0,75,0.0,0.0,682.0802173488245,2300.0,0.0,3607.1576910855993,41,0,0,0,0,0,0,0,0,0,,1,,3,115423,2,1,2,0,1,,460.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,513.922079086023,400.0,32049.702513819073,0,5,0,1,93.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07176353661967048,32049.702513819073,8,4,8,8_1,8_1,8_0_0 +15410,1,31.0,145.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1611.0,429.5326598729215,0.0,60,2,1,2,2,1,2,2,2,2,15.0,2,,2,115424,2,2,0,1,1,828.0,256.0,241.0,42,1.0,0.0,3.0,5.0,2.4,2,2,446.140618446606,0.0,26718.178657334684,6,1,2,3,90.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06029602618731452,11132.574440556118,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15411,2,59.0,0.0,1,300,380.0,0.0,0.0,0,63,0.0,463.51454695357836,647.9762064813832,820.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115425,2,1,2,0,1,,285.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,748.07754398548,380.0,33888.18339964538,0,4,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024197225042419383,22592.12226643025,6,3,6,6_1,6_0,6_1_0 +15412,2,28.0,0.0,6,112,418.0,,,0,52,0.0,0.0,,568.0,207.83838380947813,,41,0,0,0,0,0,0,0,0,0,,1,,4,115426,2,3,0,0,2,,380.0,,32,4.0,1.0,6.0,6.0,3.0999999999999996,4,4,17.185162873682195,418.0,47544.93272710444,0,1,0,1,100.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011946593830727922,15337.075073259499,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +15413,0,46.0,0.0,2,211,0.0,,,0,68,0.0,0.0,,104.0,144.10127944123818,,50,0,0,0,0,0,0,0,0,0,,1,,2,115427,2,1,0,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,67.58303804292669,0.0,36845.64037719709,0,1,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0028225863069640984,36845.64037719709,9,5,9,9_1,9_2,9_0_1 +15414,2,45.0,0.0,2,111,720.0,400.0,0.0,77,68,0.0,0.0,1227.744391227884,1120.0,0.0,759.4016191759156,60,2,2,2,1,1,2,2,2,0,,2,,2,115428,1,3,0,1,1,1030.0,0.0,284.0,42,1.0,3.0,3.0,2.0,1.5,2,2,234.245972466567,720.0,22482.55377738906,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.04981640480390603,14988.369184926041,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +15415,2,48.0,0.0,1,111,350.0,320.0,0.0,0,46,0.0,0.0,596.8201901802214,670.0,0.0,607.5212953407324,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,115429,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,668.55535134385,350.0,46768.048461105485,0,1,1,2,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014326020051001349,46768.048461105485,10,5,10,10_0,10_4,10_1_0 +15416,2,44.0,0.0,1,111,460.0,1221.0,0.0,52,63,0.0,0.0,784.3922499511482,1681.0,0.0,2318.073442534482,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,115430,1,2,3,0,1,,500.0,477.0,43,2.0,0.0,4.0,3.0,1.8,2,2,271.560407622816,460.0,39367.06915449153,1,1,2,3,86.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04270066418719435,21870.593974717518,6,3,6,6_1,6_3,6_1_0 +15417,1,36.0,393.0,7,111,0.0,,,0,85,0.0,0.0,,170.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,115431,2,2,0,0,2,,801.0,369.0,31,0.0,0.0,4.0,4.0,2.3,3,1,140.23383779791885,0.0,14904.788318963709,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011405730585499497,6480.342747375526,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15418,0,76.0,0.0,1,111,620.0,1200.0,0.0,75,78,0.0,0.0,1057.224336890678,1820.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,115432,2,1,1,0,1,,350.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1390.18688546757,620.0,33275.017335491095,5,5,5,0,85.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05469568901046943,22183.344890327397,6,3,6,6_1,6_3,6_1_0 +15419,2,48.0,0.0,1,112,0.0,0.0,0.0,0,11,0.0,0.0,0.0,3430.0,277.1178450793042,0.0,10,0,0,0,0,0,0,0,0,1,2.0,5,,1,115433,1,3,4,0,2,,133.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,584.508838733494,0.0,266212.8054175279,0,1,0,1,120.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012884429036463484,266212.8054175279,10,5,10,10_1,10_0,10_1_0 +15420,1,57.0,212.0,2,111,360.0,,,0,67,0.0,0.0,,498.0,191.2113131047199,,43,0,0,0,0,0,0,0,0,0,,8,,2,115434,2,2,0,0,1,,320.0,223.0,12,1.0,3.0,1.0,1.0,1.0,1,1,185.26674093152425,360.0,7219.070757337875,0,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06898394776000837,7219.070757337875,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15421,2,54.0,0.0,9,300,0.0,0.0,0.0,45,46,0.0,0.0,0.0,969.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,115435,2,1,1,0,1,,674.0,,43,3.0,2.0,6.0,4.0,2.3,3,3,1225.57540561123,0.0,63941.63166664724,1,1,1,2,180.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015154445933625473,27800.70942028141,7,4,7,7_1,7_0,7_0_0 +15422,2,28.0,0.0,1,111,0.0,0.0,0.0,37,47,0.0,0.0,0.0,1552.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,115436,2,2,0,0,1,,0.0,855.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1102.40118151766,0.0,64220.530807438685,1,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02416672644225842,42813.687204959126,9,5,9,9_0,9_4,9_1_0 +15423,2,55.0,0.0,9,111,360.0,,,52,53,0.0,33.1081819252556,,454.0,95.60565655235995,,43,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,115437,2,1,0,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,72.88563675669825,360.0,84428.77538487621,1,1,1,2,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005377313575026997,56285.85025658414,10,5,10,10_1,10_2,10_0_0 +15424,2,60.0,0.0,2,111,343.0,250.0,0.0,68,52,0.0,0.0,584.883786376617,593.0,0.0,474.62601198494724,60,1,1,2,1,1,2,2,2,2,25.0,2,,2,115438,2,3,0,1,1,743.0,0.0,399.0,43,2.0,6.0,4.0,2.0,1.5,2,2,1825.12984895556,343.0,33215.63155620176,1,1,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.017853040036183796,22143.754370801176,6,3,6,6_0,6_2,6_0_1 +15425,2,47.0,0.0,9,112,1635.0,0.0,0.0,52,62,0.0,264.8654554020448,2788.00288841332,1835.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,115439,2,1,1,0,1,,216.0,,43,2.0,1.0,6.0,4.0,2.3,3,2,1598.89187656938,1635.0,54029.55292234763,1,1,1,2,125.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03396289439295008,23491.109966238102,6,3,6,6_1,6_0,6_0_0 +15426,2,57.0,0.0,5,111,2700.0,0.0,0.0,74,37,0.0,79.45963662061344,4604.0414671045655,2760.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,3,115440,2,1,1,0,1,,560.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,654.620665185097,2700.0,68422.62352150345,5,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04033753542251422,45615.08234766897,10,5,10,10_1,10_4,10_0_0 +15427,2,55.0,0.0,2,111,1500.0,360.0,0.0,0,54,0.0,450.2712741834761,2557.8008150580918,2200.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,115441,1,1,2,0,2,,216.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,386.468821982132,1500.0,13740.599874464457,0,1,1,2,51.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16010945810950233,13740.599874464457,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +15428,2,50.0,0.0,7,111,1300.0,0.0,0.0,37,37,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,5,115442,1,3,0,0,1,,504.0,1000.0,43,2.0,0.0,4.0,3.0,2.0,3,2,1174.56286932071,1300.0,41519.100574932265,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03131089021675226,20759.550287466132,5,3,5,5_0,5_4,5_0_0 +15429,2,28.0,0.0,9,111,560.0,760.0,0.0,47,42,0.0,0.0,954.9123042883542,1320.0,0.0,1442.8630764342397,20,0,0,0,0,0,0,0,0,2,50.0,2,2009.0,6,115443,2,1,0,0,1,,440.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1367.2459265644,560.0,48832.06290388288,1,1,1,2,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02703141996270324,27128.92383549049,7,4,7,7_0,7_3,7_0_0 +15430,2,51.0,0.0,2,111,660.0,950.0,0.0,46,45,0.0,0.0,1125.4323586255605,1610.0,0.0,1803.5788455427996,60,0,0,0,0,0,0,0,0,2,18.0,1,,2,115444,2,1,1,0,1,,530.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,734.801803531098,660.0,62466.67543219357,1,1,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02577374238120973,31233.337716096787,8,4,8,8_1,8_4,8_0_1 +15431,1,38.0,384.0,2,111,360.0,0.0,0.0,0,52,0.0,0.0,613.872195613942,360.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,115445,1,1,0,0,1,50.0,250.0,352.0,32,1.0,0.0,4.0,3.0,2.0,3,1,709.132053085693,360.0,9409.165169030091,0,4,2,3,80.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038260567599017845,4704.582584515046,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15432,2,55.0,0.0,2,111,400.0,,,85,68,0.0,0.0,,694.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,0,,1,,2,115446,2,3,0,0,2,,170.0,,42,2.0,3.0,4.0,4.0,2.3,3,3,138.35508962301813,400.0,12657.513661665147,6,4,0,1,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054829093497395565,5503.26680941963,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +15433,2,34.0,0.0,1,112,600.0,0.0,0.0,45,37,3691.3899786281054,0.0,1023.1203260232367,4160.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,115447,1,1,3,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1199.63907186126,600.0,59510.046528262974,1,1,1,2,120.0,4,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06990416312352067,28338.11739441094,8,4,8,8_1,8_0,8_1_0 +15434,2,83.0,0.0,1,400,660.0,0.0,0.0,86,72,0.0,715.1367295855209,1125.4323586255605,1392.0,266.03313127613205,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,115448,1,1,2,0,2,,142.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1243.97162024652,660.0,14352.73590415174,5,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.09698499361347153,9568.490602767826,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +15435,2,61.0,0.0,7,111,330.0,,,77,52,0.0,0.0,,422.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,5,115449,2,1,0,0,2,,520.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,116.14873859133489,330.0,47174.43724818838,5,1,1,2,84.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008945522715614503,31449.624832125584,8,4,8,8_1,8_3,8_0_0 +15436,2,57.0,0.0,2,111,363.0,289.0,0.0,78,52,0.0,0.0,618.9877972440582,652.0,0.0,548.667669854599,50,2,1,2,1,1,2,2,2,3,10.0,2,,2,115450,2,2,0,1,1,531.0,0.0,341.0,42,1.0,3.0,5.0,2.0,1.5,2,2,338.909730069235,363.0,20189.534926765602,5,1,2,3,119.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03229395834847254,13459.689951177068,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +15437,1,47.0,597.0,9,111,650.0,,,12,85,0.0,0.0,,870.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,115451,2,1,0,0,1,,350.0,680.0,42,1.0,0.0,5.0,7.0,3.8,6,4,134.56286145709552,650.0,24130.964587481463,4,6,2,3,99.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036053262473035745,6350.2538388109115,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15438,0,24.0,0.0,1,111,400.0,0.0,0.0,84,37,0.0,0.0,682.0802173488245,400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,115452,2,2,0,0,1,,168.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,1141.51143318317,400.0,38295.82069517924,3,1,5,0,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01044500399100607,25530.547130119492,7,4,7,7_0,7_4,7_1_0 +15439,2,72.0,0.0,1,111,320.0,940.0,0.0,74,74,0.0,0.0,545.6641738790596,1260.0,0.0,1784.5938050634018,20,0,0,0,0,0,0,0,0,0,,2,,1,115453,2,1,0,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1544.486394702,320.0,84510.77347304003,5,5,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014909341711349446,56340.51564869335,10,5,10,10_0,10_3,10_1_0 +15440,2,24.0,0.0,6,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,678.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,115454,1,1,0,0,2,,83.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,942.700610038171,0.0,19309.21804163715,0,1,2,3,55.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03511276316513722,19309.21804163715,5,3,5,5_0,5_2,5_0_0 +15441,2,32.0,0.0,2,111,0.0,0.0,0.0,90,46,0.0,0.0,0.0,3088.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,115455,2,1,0,0,1,,958.0,315.0,43,2.0,0.0,3.0,3.0,1.8,2,2,402.790529224195,0.0,36591.27426463079,1,1,2,3,106.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08439170436283133,20328.48570257266,5,3,5,5_0,5_3,5_0_1 +15443,2,66.0,0.0,7,120,1000.0,0.0,0.0,0,72,0.0,0.0,1705.2005433720612,1050.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,115457,2,1,2,0,1,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1116.40734932969,1000.0,14813.73359168655,0,5,0,1,120.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07088017301656206,14813.73359168655,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +15444,2,38.0,0.0,9,120,550.0,1196.0,0.0,54,63,0.0,0.0,937.8602988546337,1746.0,0.0,2270.6108413359875,50,0,0,0,0,0,0,0,0,2,13.0,1,2008.0,6,115458,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,608.147174481105,550.0,46975.24438713056,1,1,1,2,117.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03716851338996627,26097.35799285031,7,4,7,7_1,7_0,7_0_0 +15445,2,36.0,0.0,9,400,1300.0,0.0,0.0,0,62,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,115459,2,1,1,0,1,,170.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1784.26327724965,1300.0,20522.51105917141,0,1,1,2,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06334507489126368,15786.546968593393,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +15446,2,85.0,0.0,2,300,306.0,0.0,0.0,0,74,1687.4925616585624,0.0,521.7913662718507,1966.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,115460,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,997.237418772269,306.0,16370.090748143575,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12009707400204554,16370.090748143575,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +15447,2,49.0,0.0,2,112,800.0,0.0,0.0,54,21,1687.4925616585624,0.0,1364.160434697649,2460.0,83.13535352379125,0.0,50,2,2,1,1,2,2,2,2,2,5.0,1,,2,115461,2,1,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1209.11222778478,800.0,84184.8075695404,1,1,1,2,75.0,5,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.029221424518526464,33673.923027816156,9,5,9,9_1,9_0,9_0_1 +15448,1,59.0,162.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,804.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,115462,2,1,0,0,1,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,1,1,4045.13478250721,0.0,18883.199072552794,0,7,2,3,36.0,10,1,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04257753132352633,18883.199072552794,5,3,5,5_0,5_1,5_1_0 +15449,2,58.0,0.0,6,111,1300.0,,,85,21,0.0,0.0,,1525.0,311.75757571421724,,71,0,0,0,0,0,0,0,0,0,,1,,4,115463,2,2,0,0,2,,800.0,,42,1.0,6.0,6.0,3.0,2.0,3,3,127.34710880503825,1300.0,5286.032792066451,6,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.28849612932572005,2643.0163960332256,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +15450,2,82.0,0.0,1,111,1600.0,0.0,0.0,0,86,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115464,2,1,2,0,1,,170.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,412.798129520234,1600.0,39501.50478131608,0,6,0,1,100.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04050478605455021,39501.50478131608,9,5,9,9_1,9_2,9_1_0 +15451,2,50.0,0.0,8,112,620.0,450.0,0.0,56,37,0.0,794.5963662061343,1057.224336890678,1670.0,0.0,854.326821572905,50,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,115465,1,2,1,0,1,,800.0,486.0,43,3.0,1.0,4.0,3.0,2.0,3,3,436.430465631903,620.0,24929.576121746213,1,1,2,3,78.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06698870417388482,12464.788060873107,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +15452,1,34.0,413.0,1,111,1680.0,,,0,56,0.0,0.0,,1830.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,1,115466,2,2,0,0,2,,860.0,500.0,32,1.0,0.0,2.0,3.0,1.8,2,1,24.427522999770726,1680.0,20597.901556081713,0,4,2,3,26.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08884400165800754,11443.278642267618,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +15453,2,49.0,0.0,2,111,365.0,186.0,0.0,0,67,0.0,0.0,622.3981983308023,551.0,0.0,353.12175291680074,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,115467,2,2,0,1,1,596.0,0.0,342.0,12,1.0,2.0,4.0,1.0,1.0,1,1,414.434627996205,365.0,17239.138543260073,0,1,2,3,83.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03196215394506604,17239.138543260073,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +15454,1,41.0,106.0,9,111,1056.0,0.0,0.0,0,52,0.0,0.0,1800.6917738008965,1116.0,83.13535352379125,0.0,43,2,2,2,1,2,2,2,2,2,35.0,1,2010.0,6,115468,2,1,1,0,1,,389.0,791.0,32,2.0,0.0,4.0,3.0,1.8,2,1,1727.00147803549,1056.0,33117.12126196845,0,1,2,3,92.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.033698581201307774,18398.400701093586,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +15455,2,38.0,0.0,5,111,458.0,823.0,0.0,54,62,0.0,437.0280014133739,780.981848864404,1611.0,0.0,1562.4688314544464,43,0,0,0,0,0,0,0,0,2,4.0,1,,3,115469,2,1,2,0,1,,235.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,81.6017233496438,458.0,62720.79840851547,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02568525976833353,34844.88800473081,9,5,9,9_1,9_3,9_0_0 +15456,2,58.0,0.0,2,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,2722.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,115470,2,1,3,0,1,,738.0,,43,2.0,1.0,7.0,4.0,2.3,3,2,1170.72456088071,0.0,108028.72179000133,1,1,1,2,137.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025197002749799604,46969.009473913626,10,5,10,10_1,10_3,10_0_1 +15457,2,59.0,0.0,1,111,1731.0,2612.0,0.0,31,31,0.0,0.0,2951.702140577038,4343.0,0.0,4958.892573218729,10,0,0,0,0,0,0,0,0,2,6.0,1,,1,115471,2,1,1,0,2,,400.0,,43,2.0,4.0,9.0,2.0,1.5,2,2,1063.8197088997,1731.0,134584.89294452436,1,1,0,1,250.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032269595085907425,89723.26196301624,10,5,10,10_1,10_3,10_1_0 +15458,2,36.0,0.0,1,111,70.0,120.0,0.0,55,62,0.0,0.0,119.36403803604428,190.0,0.0,227.8204857527747,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,115472,2,2,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,639.793367559636,70.0,39095.67709939374,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00485987234642232,18616.9890949494,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +15459,2,52.0,0.0,2,111,830.0,180.0,0.0,68,62,0.0,0.0,1415.3164509988108,1010.0,0.0,341.730728629162,71,2,2,2,1,2,2,2,2,3,150.0,2,,2,115473,1,3,0,1,2,,0.0,,43,2.0,4.0,3.0,3.0,1.8,2,2,201.455149457371,830.0,42802.457503617305,1,1,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02359677595415271,23779.14305756517,6,3,6,6_0,6_4,6_0_1 +15460,2,50.0,0.0,7,400,280.0,0.0,0.0,0,67,0.0,0.0,477.4561521441771,1460.0,1634.9952859678947,0.0,70,0,0,0,0,0,0,0,0,1,5.0,8,,5,115474,2,3,0,0,1,,305.0,406.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2157.0655293614,280.0,17506.95228768234,0,1,2,3,78.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08339544062316527,17506.95228768234,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +15461,2,60.0,0.0,1,112,1270.0,1334.0,0.0,11,33,0.0,0.0,2165.6046900825177,2604.0,0.0,2532.6043999516787,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,115475,2,2,2,0,1,,443.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,945.137939331057,1270.0,37044.6781191783,1,1,0,1,160.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07029349780345075,24696.4520794522,7,4,7,7_1,7_0,7_1_0 +15462,2,37.0,0.0,7,111,272.0,0.0,0.0,0,63,0.0,0.0,463.81454779720065,332.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,115476,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,907.687449528449,272.0,28975.077146021064,0,1,1,2,59.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011458123073387266,28975.077146021064,8,4,8,8_0,8_3,8_0_0 +15463,2,75.0,0.0,2,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,497.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115477,2,1,0,0,1,,131.0,400.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1285.4492235735,0.0,14616.58793727275,5,5,2,3,78.0,4,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0340024636483481,9744.391958181834,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +15464,2,81.0,0.0,2,111,180.0,177.0,0.0,0,72,0.0,0.0,306.936097806971,357.0,0.0,336.03521648534263,71,1,2,2,2,1,2,2,2,0,,2,,2,115478,2,2,0,1,1,,107.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2038.19456798478,180.0,25294.006029749464,0,5,0,1,91.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014114015770381157,25294.006029749464,7,4,7,7_0,7_3,7_0_1 +15465,2,64.0,0.0,1,111,0.0,0.0,0.0,77,33,0.0,0.0,0.0,1779.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,115479,2,1,1,0,1,,284.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1289.80423543394,0.0,62423.747830130604,5,5,0,1,130.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02849876948819332,41615.83188675374,9,5,9,9_1,9_3,9_1_0 +15466,1,42.0,24.0,5,112,720.0,800.0,0.0,37,55,0.0,0.0,1227.744391227884,1520.0,0.0,1518.8032383518312,60,2,2,2,2,1,2,2,2,2,25.0,1,,3,115480,2,1,1,0,1,,1800.0,,43,2.0,0.0,7.0,8.0,4.1,6,4,794.615159164189,720.0,54248.19433097198,1,1,1,2,190.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.028019365782506512,13231.266909993166,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +15467,2,57.0,0.0,6,111,953.0,0.0,0.0,78,47,0.0,0.0,1625.0561178335743,953.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,2,,4,115482,2,1,0,0,1,,250.0,392.0,42,1.0,2.0,3.0,2.0,1.5,2,2,763.906988860113,953.0,20885.185091614792,6,1,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045630431131904146,13923.456727743194,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +15468,0,75.0,0.0,1,111,684.0,1830.0,0.0,0,78,0.0,0.0,1166.3571716664899,2556.0,58.19474746665388,3474.2624077298137,71,0,0,0,0,0,0,0,0,0,,1,,1,115483,2,1,4,0,1,,140.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,996.906875058736,684.0,20454.117686402256,0,5,0,1,72.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12496261335678192,20454.117686402256,5,3,5,5_1,5_2,5_1_0 +15469,2,54.0,0.0,1,111,270.0,240.0,0.0,0,35,0.0,0.0,460.40414671045653,510.0,0.0,455.6409715055494,10,0,0,0,0,0,0,0,0,3,80.0,2,,1,115484,2,1,0,1,1,568.0,0.0,699.0,22,2.0,0.0,3.0,2.0,1.5,2,2,702.434488945838,270.0,19212.198443634257,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026545634613147705,12808.132295756172,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +15470,2,86.0,0.0,5,111,250.0,,,0,75,0.0,0.0,,275.0,34.63973063491302,,71,0,0,0,0,0,0,0,0,0,,1,,3,115485,2,1,0,0,2,,200.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,78.77945560155895,250.0,34988.0,0,5,0,1,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007859837658625815,23325.333333333332,6,3,6,6_1,6_2,6_0_0 +15471,2,43.0,0.0,2,111,228.0,,,33,52,0.0,0.0,,228.0,0.0,,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,115486,2,2,0,0,2,,220.0,560.0,43,2.0,0.0,3.0,3.0,1.8,2,2,93.07122028025206,228.0,50712.081239759886,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004495970081015739,28173.378466533268,8,4,8,8_0,8_2,8_0_1 +15472,2,75.0,0.0,7,120,0.0,0.0,0.0,74,74,2425.7705573841836,0.0,0.0,2381.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,115487,2,1,2,0,1,,105.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1040.39116046124,0.0,61398.736164177055,5,5,0,1,187.0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03877929984801851,40932.49077611804,9,5,9,9_1,9_0,9_0_0 +15473,2,86.0,0.0,2,111,600.0,1463.0,0.0,0,90,0.0,0.0,1023.1203260232367,2063.0,0.0,2777.5114221359113,50,0,0,0,0,0,0,0,0,0,,1,,2,115488,2,1,1,0,1,,160.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1793.17918891992,600.0,29875.722816227695,0,5,0,1,72.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06905272259653693,29875.722816227695,8,4,8,8_1,8_3,8_0_1 +15474,2,74.0,0.0,1,111,524.0,1824.0,0.0,0,77,0.0,0.0,893.52508472696,2348.0,0.0,3462.871383442175,71,0,0,0,0,0,0,0,0,0,,1,,1,115489,2,1,1,0,2,,888.0,,21,0.0,2.0,4.0,2.0,1.5,2,2,672.400398234163,524.0,25844.460850011277,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09085118910495575,17229.640566674185,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +15475,1,39.0,420.0,2,111,1100.0,1800.0,0.0,0,85,0.0,0.0,1875.7205977092674,2900.0,0.0,3417.30728629162,20,2,2,2,2,1,2,2,2,0,,2,,2,115490,2,1,0,0,1,,0.0,476.0,31,0.0,0.0,3.0,2.0,1.3,1,1,723.210175170999,1100.0,8230.218758138712,0,6,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0.3523600143838514,6330.937506260547,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +15476,2,46.0,0.0,5,112,0.0,0.0,0.0,45,22,0.0,0.0,0.0,2922.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,115491,2,3,3,0,1,,1023.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,656.607524693278,0.0,31471.0965670854,1,1,1,2,112.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0928470984088945,14986.236460516855,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +15478,2,51.0,0.0,1,300,735.0,0.0,0.0,69,11,0.0,105.94618216081791,1253.322399378465,947.0,182.89777775234077,0.0,44,0,0,0,0,0,0,0,0,1,5.0,5,,1,115493,2,2,2,0,1,,278.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,1808.36785410081,735.0,81891.28778169256,5,1,0,1,140.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011564111710204529,54594.19185446171,10,5,10,10_1,10_0,10_1_0 +15479,2,37.0,0.0,7,112,1135.0,0.0,0.0,42,38,0.0,0.0,1935.4026167272893,1135.0,0.0,0.0,20,2,2,2,2,2,2,1,2,3,50.0,1,,5,115494,1,2,3,0,1,,264.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2094.9026215161,1135.0,65438.62704047207,4,1,1,2,90.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0173444959243725,36354.79280026226,9,5,9,9_1,9_0,9_0_0 +15480,2,75.0,0.0,5,221,378.0,2086.0,0.0,77,75,0.0,210.5680370446256,644.5658053946391,2623.0,0.0,3960.2794440024,70,0,0,0,0,0,0,0,0,0,,1,,3,115495,2,2,1,0,1,,349.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,2083.59260690122,378.0,66686.3250708551,5,5,0,1,100.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039333401521421785,33343.16253542755,8,4,8,8_1,8_1,8_0_0 +15481,1,30.0,399.0,9,120,760.0,0.0,0.0,55,22,0.0,0.0,1295.9524129627664,760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,115496,2,1,1,0,1,,187.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1525.46729622778,760.0,33126.619131325475,1,1,1,2,110.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.022942274820955767,15774.580538726415,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +15482,2,84.0,0.0,7,112,740.0,,,77,77,0.0,0.0,,980.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,5,115497,2,2,0,0,2,,600.0,,41,1.0,4.0,6.0,3.0,2.0,3,3,80.42358956548964,740.0,34298.66034769748,5,5,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02857254452696981,17149.33017384874,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15483,1,35.0,15.0,9,112,690.0,,,56,47,0.0,0.0,,732.0,58.19474746665388,,43,2,2,2,1,1,2,2,2,0,,1,2007.0,6,115498,1,3,0,0,2,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,97.85894997036166,690.0,32143.22419289653,4,1,1,2,166.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.02277307327999062,15306.297234712632,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +15484,2,56.0,0.0,2,111,560.0,0.0,0.0,0,75,0.0,0.0,954.9123042883542,560.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,115499,2,3,0,0,1,,60.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1118.2839806498,560.0,1151.8017549714405,0,7,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.4861947792516478,1151.8017549714405,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +15485,2,45.0,0.0,9,300,1190.0,0.0,0.0,52,62,0.0,185.40581878143135,2029.1886466127528,1480.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,115500,2,1,1,0,1,,217.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1200.49516790919,1190.0,36676.06953307002,4,1,1,2,130.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04035328809335788,17464.795015747626,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +15486,2,25.0,0.0,6,111,410.0,180.0,0.0,85,63,0.0,0.0,699.1322227825451,590.0,0.0,341.730728629162,71,2,2,2,2,1,2,2,2,0,,2,,4,115501,1,2,0,1,2,663.0,0.0,630.0,42,1.0,1.0,2.0,4.0,2.1,2,2,207.175605514215,410.0,16701.664016738498,6,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.03532582139173072,7953.1733413040465,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +15487,2,33.0,0.0,5,111,650.0,0.0,0.0,46,46,0.0,0.0,1108.3803531918397,957.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,2,,3,115502,1,3,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,633.476785357652,650.0,49322.313102477114,1,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019402982946311507,23486.815763084338,6,3,6,6_0,6_4,6_0_0 +15488,2,36.0,0.0,1,400,850.0,0.0,0.0,0,69,0.0,0.0,1449.420461866252,910.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,7.0,2,,1,115503,2,2,0,0,1,,0.0,190.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1318.49969907318,850.0,10669.534003066205,0,1,2,3,45.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0852895730721215,10669.534003066205,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +15489,2,55.0,0.0,2,111,270.0,162.0,0.0,56,68,0.0,0.0,460.40414671045653,432.0,0.0,307.55765576624583,71,0,0,0,0,0,0,0,0,0,,2,,2,115504,1,1,0,1,1,848.0,0.0,329.0,43,2.0,1.0,3.0,4.0,2.5,4,4,495.119939363071,270.0,31718.750753429136,1,4,2,3,75.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013619704109982837,12687.500301371654,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +15490,2,36.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,251.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,2005.0,6,115505,2,1,0,0,1,,0.0,890.0,12,1.0,0.0,3.0,1.0,1.0,1,1,122.47799447193847,0.0,23480.994515976286,0,1,2,3,63.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010689496129698491,23480.994515976286,6,3,6,6_0,6_3,6_0_0 +15491,2,46.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,361.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,115506,2,1,0,0,2,,197.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,44.51899573979832,0.0,27033.22847462923,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013353935891852488,27033.22847462923,7,4,7,7_0,7_2,7_0_0 +15492,2,63.0,0.0,6,112,2100.0,0.0,0.0,72,23,0.0,158.91927324122688,3580.9211410813286,2220.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,4,115507,2,1,2,0,1,,460.0,,42,1.0,1.0,7.0,3.0,2.0,3,3,766.042878089897,2100.0,72259.87707999967,6,1,0,1,160.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030722443625834216,36129.938539999835,9,5,9,9_1,9_1,9_0_0 +15493,2,86.0,0.0,5,111,370.0,1421.0,0.0,0,77,0.0,0.0,630.9242010476627,1791.0,0.0,2697.77425212244,70,0,0,0,0,0,0,0,0,0,,1,,3,115508,2,2,2,0,2,,233.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,2098.12891486972,370.0,15890.266958863398,0,5,0,1,80.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1127105041492712,15890.266958863398,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +15494,2,37.0,0.0,1,300,1200.0,0.0,0.0,85,38,0.0,463.51454695357836,2046.2406520464733,1700.0,207.83838380947813,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,,1,115509,2,1,1,0,1,,600.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1657.35795686155,1200.0,40621.309971262584,6,1,1,2,120.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04184995513937536,16925.54582135941,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +15495,2,43.0,0.0,7,111,1500.0,,,46,48,0.0,0.0,,1550.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,2,1.0,1,,5,115510,2,1,0,0,2,,500.0,2000.0,43,2.0,0.0,5.0,4.0,2.3,3,2,132.2110148764391,1500.0,180824.18643375303,1,1,2,3,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008571862152787066,78619.21149293611,10,5,10,10_1,10_2,10_0_0 +15496,2,65.0,0.0,6,111,697.0,2642.0,0.0,75,74,0.0,238.3789098618403,1188.5247787303267,3519.0,0.0,5015.847694656923,10,0,0,0,0,0,0,0,0,0,,1,,4,115511,2,2,3,0,1,,198.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,672.829118366853,697.0,77894.93064580493,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04517623895194414,51929.95376386995,10,5,10,10_1,10_4,10_0_0 +15497,2,69.0,0.0,2,111,480.0,0.0,0.0,0,74,0.0,0.0,818.4962608185893,480.0,0.0,0.0,41,2,2,1,2,1,2,2,2,0,,2,,2,115512,2,1,0,1,2,,0.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,863.537159948089,480.0,41136.45584053835,0,5,0,1,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011668482133236645,41136.45584053835,9,5,9,9_0,9_4,9_0_1 +15498,2,70.0,0.0,5,112,574.0,0.0,0.0,77,72,4218.731404146406,0.0,978.7851118955631,4674.0,138.5589225396521,0.0,71,2,2,2,1,2,2,2,2,0,,1,,3,115513,2,2,2,0,1,,93.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,508.822366556135,574.0,14767.47422179972,5,5,0,1,200.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.31650639302286704,9844.982814533147,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +15499,2,78.0,0.0,7,111,330.0,650.0,0.0,0,77,0.0,0.0,562.7161793127802,980.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,0,,1,,5,115514,2,2,2,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1017.12354523806,330.0,22003.948467532096,0,5,0,1,90.0,5,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044537461149122305,22003.948467532096,6,3,6,6_1,6_2,6_0_0 +15500,2,61.0,0.0,1,111,1200.0,1500.0,0.0,77,72,0.0,463.51454695357836,2046.2406520464733,3050.0,0.0,2847.7560719096837,60,0,0,0,0,0,0,0,0,0,,1,,1,115515,2,2,4,0,1,,570.0,,41,0.0,1.0,7.0,3.0,2.0,3,3,405.542912913187,1200.0,91693.36553505824,5,5,0,1,138.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03326303906724698,45846.68276752912,10,5,10,10_1,10_4,10_1_0 +15501,2,44.0,0.0,2,400,530.0,0.0,0.0,46,46,0.0,198.6490915515336,903.7562879871924,2130.0,2009.1043768249554,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,115516,2,1,1,0,1,,140.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1429.60744678671,530.0,79735.50425932553,1,1,1,2,133.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026713319490305774,37969.28774253597,9,5,9,9_1,9_0,9_0_1 +15502,1,83.0,352.0,9,120,0.0,0.0,0.0,86,78,0.0,0.0,0.0,887.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,115517,2,1,1,0,1,,287.0,363.0,41,0.0,4.0,3.0,3.0,2.0,3,3,229.664075892031,0.0,22714.49880694036,6,5,2,3,68.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03904994812075622,11357.24940347018,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +15503,2,69.0,0.0,1,300,1850.0,0.0,0.0,72,72,0.0,0.0,3154.621005238313,1945.0,131.6309764126695,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115518,2,1,1,0,1,,260.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1063.62758704432,1850.0,13705.760475519313,6,5,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14191113316726073,9137.173650346209,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +15504,1,67.0,25.0,5,111,1090.0,0.0,0.0,0,77,0.0,0.0,1858.6685922755466,1090.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,2,,3,115519,2,2,0,0,1,,399.0,292.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2011.33167200724,1090.0,21494.473247132777,0,5,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.050710710026141206,21494.473247132777,6,3,6,6_0,6_3,6_0_0 +15505,1,36.0,253.0,2,111,0.0,,,0,54,0.0,0.0,,489.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,2,115520,2,2,0,0,2,,332.0,318.0,12,1.0,0.0,1.0,1.0,1.0,1,1,152.66270695645966,0.0,13532.0,0,4,2,3,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03613656517883535,13532.0,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +15506,2,88.0,0.0,2,120,0.0,0.0,0.0,0,71,1582.0242765549024,0.0,0.0,4383.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,115521,2,2,3,0,1,,305.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,821.208455591588,0.0,15064.709307871848,0,5,0,1,70.0,0,0,5,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.29094487722439666,15064.709307871848,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +15507,2,56.0,0.0,7,111,1557.0,1616.0,0.0,54,37,0.0,0.0,2654.9972460302993,3173.0,0.0,3067.982541470699,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,115522,2,2,2,0,1,,793.0,,43,2.0,0.0,8.0,4.0,2.5,4,3,1281.37163984593,1557.0,88986.47863561584,1,1,0,1,143.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035657102614352044,35594.591454246336,9,5,9,9_1,9_3,9_0_0 +15508,2,67.0,0.0,1,111,906.0,0.0,0.0,68,78,0.0,1589.1927324122687,1544.9116922950875,2664.0,773.1587877712587,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115523,2,2,2,0,1,,300.0,,42,3.0,1.0,5.0,4.0,2.5,4,4,555.404026094431,906.0,26437.234276999123,1,5,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10076697025443879,10574.89371079965,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +15509,2,58.0,0.0,1,111,400.0,500.0,0.0,72,22,0.0,0.0,682.0802173488245,900.0,0.0,949.2520239698945,41,0,0,0,0,0,0,0,0,0,,1,,1,115524,2,1,2,0,1,,220.0,,42,1.0,4.0,2.0,2.0,1.5,2,2,1027.78798597897,400.0,46862.449683425344,5,1,0,1,50.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01920514198638486,31241.63312228356,8,4,8,8_1,8_2,8_1_0 +15510,2,66.0,0.0,2,400,1141.0,0.0,0.0,0,75,0.0,0.0,1945.6338199875217,1203.0,85.9065319745843,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115525,2,1,2,0,1,,134.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1649.16126577711,1141.0,23949.546113512562,0,5,0,1,118.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050230597035041756,23949.546113512562,6,3,6,6_1,6_0,6_0_1 +15511,2,33.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,120.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,115526,2,1,0,1,2,,182.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,439.357219970519,0.0,22521.966567870004,0,1,1,2,52.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005328131521658186,22521.966567870004,6,3,6,6_0,6_3,6_0_1 +15512,1,40.0,369.0,1,111,780.0,0.0,0.0,63,56,0.0,529.7309108040896,1330.0564238302077,1540.0,498.81212114274757,0.0,71,2,2,2,1,1,2,2,2,1,20.0,1,,1,115527,1,3,3,0,1,,430.0,324.0,43,2.0,0.0,4.0,5.0,3.0,5,3,1608.88607596634,780.0,14934.266993253215,4,1,2,3,84.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.10311855283528269,4978.0889977510715,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +15513,1,59.0,220.0,2,111,360.0,0.0,0.0,77,78,0.0,0.0,613.872195613942,360.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,2,115528,1,3,0,1,1,365.0,350.0,286.0,41,0.0,0.0,2.0,2.0,1.5,2,2,251.870624831604,360.0,9771.43855785108,6,7,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.03684206761047994,6514.292371900719,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15514,2,80.0,0.0,9,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1640.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2006.0,6,115529,2,1,0,0,1,,59.0,550.0,21,0.0,0.0,3.0,2.0,1.5,2,2,310.336513674699,0.0,37831.67452455422,0,5,2,3,59.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04334991830550817,25221.116349702814,7,4,7,7_0,7_3,7_0_0 +15515,2,36.0,0.0,6,111,450.0,550.0,0.0,46,35,0.0,0.0,767.3402445174275,1000.0,0.0,1044.177226366884,20,0,0,0,0,0,0,0,0,1,10.0,2,,4,115530,1,2,0,0,2,,0.0,590.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1897.6879679041,450.0,37135.56439534449,4,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026928364124320817,24757.042930229658,7,4,7,7_0,7_3,7_0_0 +15517,2,46.0,0.0,8,112,1500.0,0.0,0.0,52,52,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,115532,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,544.447140281841,1500.0,43715.06587438013,1,1,1,2,90.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03431311311094461,19006.550380165278,5,3,5,5_1,5_2,5_0_0 +15518,2,56.0,0.0,2,111,444.0,0.0,0.0,0,63,994.5659285275152,0.0,757.1090412571951,1387.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,115533,2,2,0,1,1,,105.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,518.700211024162,444.0,10329.109981892543,0,4,0,1,45.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13428068850379962,10329.109981892543,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +15519,2,48.0,0.0,7,111,617.0,0.0,0.0,0,52,0.0,0.0,1052.1087352605618,617.0,0.0,0.0,60,1,2,2,2,1,2,2,2,2,10.0,1,,5,115534,2,1,2,0,1,,212.0,690.0,32,1.0,1.0,4.0,2.0,1.5,2,2,1720.16294354544,617.0,23662.325214716155,0,1,2,3,90.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.026075205813512917,15774.883476477436,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +15520,2,74.0,0.0,5,111,1400.0,0.0,0.0,77,75,0.0,0.0,2387.2807607208856,1524.0,171.8130639491686,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,115535,2,1,1,0,2,,480.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,997.216524443064,1400.0,56517.14069082174,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026965270736838503,37678.09379388116,9,5,9,9_1,9_3,9_0_0 +15521,2,45.0,0.0,9,111,200.0,,,0,63,0.0,33.1081819252556,,272.0,65.12269359363648,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,115536,2,2,0,0,2,,100.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,227.94388427358135,200.0,28500.444372367703,0,1,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009543710843460205,28500.444372367703,8,4,8,8_1,8_2,8_0_0 +15522,2,58.0,0.0,6,111,641.0,0.0,0.0,0,78,0.0,0.0,1093.0335483014912,641.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,115537,2,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,716.598083814928,641.0,11827.101126527356,0,5,0,1,26.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05419755806114502,11827.101126527356,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +15523,2,49.0,0.0,5,111,300.0,90.0,0.0,54,38,0.0,0.0,511.56016301161833,510.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,115538,2,1,0,1,1,936.0,0.0,566.0,43,2.0,2.0,4.0,2.0,1.5,2,2,385.846725270338,300.0,37425.08235926805,1,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013627224520287586,24950.054906178702,7,4,7,7_0,7_4,7_0_0 +15524,2,32.0,0.0,9,111,850.0,0.0,0.0,0,54,0.0,0.0,1449.420461866252,850.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,2005.0,6,115539,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1086.66024166852,850.0,22727.76950523333,0,1,0,1,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037399182520056695,22727.76950523333,6,3,6,6_0,6_4,6_0_0 +15525,2,59.0,0.0,2,120,430.0,0.0,0.0,0,62,1624.2115905963662,0.0,733.2362336499863,2034.0,88.67771042537734,0.0,50,2,2,2,1,1,2,2,2,3,40.0,1,,2,115540,2,2,2,0,1,,108.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1064.11832479674,430.0,25329.04930887994,0,1,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.08030305343070708,25329.04930887994,7,4,7,7_1,7_0,7_0_1 +15526,2,50.0,0.0,2,221,400.0,1150.0,0.0,0,52,0.0,0.0,682.0802173488245,1550.0,0.0,2183.2796551307574,50,0,0,0,0,0,0,0,0,2,3.0,1,,2,115541,2,2,5,0,1,,600.0,500.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2588.99579554132,400.0,19601.23585021213,0,1,2,3,95.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07907664658722145,19601.23585021213,5,3,5,5_1,5_1,5_0_1 +15527,2,51.0,0.0,2,112,700.0,0.0,0.0,75,21,0.0,0.0,1193.6403803604428,1036.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,,2,115542,2,1,0,1,1,,0.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1959.89235144312,700.0,204928.1363330245,5,1,0,1,85.0,9,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005055430740444629,136618.75755534967,10,5,10,10_0,10_1,10_0_1 +15529,1,50.0,330.0,2,111,600.0,,,0,85,0.0,0.0,,750.0,207.83838380947813,,30,2,2,2,1,1,2,2,2,0,,1,,2,115544,1,3,0,0,2,,700.0,670.0,31,0.0,0.0,4.0,2.0,1.3,1,1,157.34490591646968,600.0,7871.8610746372815,0,6,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0.09527607167972771,6055.277749720985,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +15530,2,54.0,0.0,7,112,1500.0,0.0,0.0,85,37,0.0,1986.490915515336,2557.8008150580918,3050.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,3,150.0,1,,5,115545,2,1,3,0,1,,184.0,,42,1.0,1.0,6.0,3.0,2.0,3,3,1241.12969392168,1500.0,81305.58476945451,6,1,1,2,156.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037512798273924314,40652.792384727254,9,5,9,9_1,9_0,9_0_0 +15531,2,61.0,0.0,2,111,450.0,135.0,0.0,56,77,0.0,0.0,767.3402445174275,585.0,0.0,256.2980464718715,50,2,1,2,1,2,2,2,2,0,,2,,2,115546,2,3,0,1,1,756.0,0.0,321.0,42,3.0,0.0,4.0,4.0,2.5,4,4,266.489215203412,450.0,35103.06869136485,1,5,2,3,74.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01666520967564031,14041.22747654594,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +15532,1,22.0,357.0,9,111,420.0,,,85,52,0.0,0.0,,480.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,115547,2,1,0,0,2,,240.0,650.0,42,1.0,0.0,3.0,3.0,1.8,2,2,121.48373850127916,420.0,7124.905405481876,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06736931547620123,3958.2807808232646,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +15533,1,91.0,127.0,2,111,380.0,0.0,0.0,0,78,0.0,0.0,647.9762064813832,380.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,115548,2,1,0,1,1,,60.0,240.0,11,0.0,0.0,3.0,1.0,1.0,1,1,331.438554961213,380.0,12586.242575566062,0,5,2,3,53.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030191695235375647,12586.242575566062,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15534,1,58.0,434.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115549,1,2,0,0,2,,0.0,480.0,42,1.0,2.0,3.0,4.0,2.5,4,4,355.279742530659,0.0,7678.784453427032,6,4,2,3,53.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15627473427313637,3071.5137813708125,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15535,2,29.0,0.0,1,112,1136.0,0.0,0.0,52,65,0.0,516.4876380339873,1937.1078172706616,1586.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,115550,2,1,3,0,1,,420.0,580.0,43,2.0,0.0,5.0,4.0,2.1,2,2,895.014914440382,1136.0,41438.82318752833,1,1,2,3,110.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038273287656424855,19732.772946442063,5,3,5,5_1,5_0,5_1_0 +15537,2,44.0,0.0,1,111,1300.0,0.0,0.0,33,38,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,,1,115552,2,1,0,1,1,,621.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,466.962023449733,1300.0,409075.09201908816,1,1,1,2,166.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0031779006479801504,170447.9550079534,10,5,10,10_0,10_4,10_1_0 +15538,2,71.0,0.0,7,111,654.0,,,72,75,0.0,0.0,,744.0,124.70303028568689,,33,0,0,0,0,0,0,0,0,0,,1,,5,115553,2,1,0,0,2,,360.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,119.18797917402004,654.0,49776.39169372919,5,5,0,1,134.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014946844772875107,33184.261129152794,8,4,8,8_1,8_3,8_0_0 +15539,2,50.0,0.0,9,111,451.0,,,0,52,0.0,0.0,,571.0,166.2707070475825,,50,2,2,2,1,2,2,2,2,1,45.0,1,2004.0,6,115554,1,1,0,0,2,,400.0,,32,2.0,0.0,5.0,4.0,2.5,4,4,122.53981561749518,451.0,42223.72836338632,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.013523201814057098,16889.491345354527,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15540,2,49.0,0.0,1,111,1500.0,0.0,0.0,56,47,0.0,0.0,2557.8008150580918,1620.0,166.2707070475825,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,115555,2,1,2,0,1,,450.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,291.05325546261,1500.0,42618.648217613394,1,4,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.038011529406755985,21309.324108806697,6,3,6,6_1,6_3,6_1_0 +15541,2,36.0,0.0,8,120,630.0,0.0,0.0,45,42,0.0,0.0,1074.2763423243985,680.0,69.27946126982604,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,115556,2,1,1,0,1,,200.0,603.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2085.92857923177,630.0,39347.62130706773,1,1,2,3,83.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017281857896651466,21859.78961503763,6,3,6,6_1,6_1,6_0_0 +15542,2,76.0,0.0,7,111,420.0,910.0,0.0,77,78,0.0,0.0,716.1842282162656,1330.0,0.0,1727.638683625208,71,0,0,0,0,0,0,0,0,0,,1,,5,115557,2,2,1,0,1,,340.0,678.0,41,0.0,5.0,4.0,2.0,1.5,2,2,1065.13451785107,420.0,38854.229461606825,5,5,2,3,74.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03423050768035994,25902.819641071215,7,4,7,7_1,7_2,7_0_0 +15543,2,37.0,0.0,1,211,455.0,0.0,0.0,85,63,0.0,662.163638505112,775.8662472342878,955.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,115559,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,1116.01553844699,455.0,48865.46287640984,6,1,1,2,90.0,4,4,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019543455516125546,18794.40879861917,5,3,5,5_0,5_2,5_1_0 +15544,2,35.0,0.0,2,111,720.0,300.0,0.0,54,35,0.0,0.0,1227.744391227884,1020.0,0.0,569.5512143819367,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,115560,1,2,0,1,1,800.0,0.0,332.0,43,2.0,0.0,3.0,4.0,2.1,2,2,360.088741560615,720.0,24657.750514704247,4,1,2,3,68.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041366303848022944,11741.785959382974,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +15545,1,70.0,48.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,92.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,115561,2,2,0,1,1,,0.0,525.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1181.97729147428,0.0,14790.815918511506,0,5,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.006220076059824193,14790.815918511506,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +15546,2,53.0,0.0,1,120,490.0,0.0,0.0,62,11,2636.7071275915036,0.0,835.54826625231,3080.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,115562,2,1,1,0,1,,315.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,818.809657888891,490.0,28980.12014323588,1,1,0,1,110.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1062797526296277,12600.052236189515,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +15547,2,35.0,0.0,1,111,40.0,0.0,0.0,0,54,0.0,0.0,68.20802173488245,40.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,15.0,2,,1,115563,1,3,0,0,2,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.10309028357,40.0,25271.346187644027,0,1,3,4,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.001582820309729178,25271.346187644027,7,4,7,7_0,7_4,7_1_0 +15548,2,49.0,0.0,9,111,600.0,620.0,0.0,54,38,0.0,0.0,1023.1203260232367,1220.0,0.0,1177.072509722669,12,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,115564,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,293.401855844893,600.0,75961.68734252975,1,1,1,2,146.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016060728015410225,33026.82058370859,8,4,8,8_1,8_2,8_0_0 +15549,2,29.0,0.0,5,111,960.0,0.0,0.0,0,37,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,7.0,2,,3,115565,2,1,0,0,1,,0.0,239.0,22,2.0,0.0,1.0,2.0,1.5,2,2,299.784111825052,960.0,45079.143723060464,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0212958792185067,30052.76248204031,8,4,8,8_0,8_4,8_0_0 +15550,2,52.0,0.0,1,300,400.0,0.0,0.0,0,52,0.0,0.0,682.0802173488245,500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115566,2,1,4,0,1,,80.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,963.487208001584,400.0,25086.527239190094,0,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019931016965110324,16724.351492793397,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +15551,1,39.0,393.0,2,111,260.0,200.0,0.0,0,52,0.0,0.0,443.3521412767359,460.0,0.0,379.7008095879578,20,2,1,2,2,1,2,2,1,3,15.0,2,,2,115567,1,1,0,1,1,490.0,400.0,351.0,32,1.0,0.0,4.0,4.0,1.9,1,1,384.726337044441,260.0,15416.599282992234,0,1,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.029837968254612234,8113.9996226274925,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15552,2,74.0,0.0,1,400,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,920.0,221.69427606344334,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115568,2,2,4,0,1,,160.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,823.520129874821,300.0,24435.10874655793,0,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03765074301662752,24435.10874655793,7,4,7,7_1,7_0,7_1_0 +15553,1,84.0,240.0,7,111,1890.0,,,0,86,0.0,0.0,,2166.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,,5,115569,2,2,0,0,2,,1100.0,614.0,21,1.0,0.0,3.0,3.0,1.8,2,2,27.350211565739578,1890.0,13803.178397375146,0,7,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15692038004898154,7668.432442986192,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15554,2,42.0,0.0,7,111,1400.0,0.0,0.0,85,38,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,2,,5,115570,2,2,0,0,1,,0.0,376.0,42,1.0,0.0,3.0,4.0,2.1,2,2,287.113641271719,1400.0,60635.488538699006,6,1,2,3,63.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02308878898710426,28874.04216128524,8,4,8,8_0,8_3,8_0_0 +15555,0,60.0,0.0,5,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,789.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,1.0,2,,3,115571,2,2,0,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,877.589363126583,0.0,55730.65499305881,0,1,5,0,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01415737891647369,55730.65499305881,10,5,10,10_0,10_4,10_0_0 +15556,2,39.0,0.0,7,112,600.0,1200.0,0.0,53,53,0.0,331.081819252556,1023.1203260232367,2050.0,0.0,2278.2048575277468,60,2,2,2,2,1,2,2,2,2,30.0,1,,5,115572,2,2,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,629.211420861918,600.0,61837.88824375644,1,1,1,2,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03315119675366633,29446.613449407825,8,4,8,8_1,8_1,8_0_0 +15557,1,59.0,253.0,8,111,1062.0,,,0,77,0.0,0.0,,1338.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,115573,1,2,0,0,2,,378.0,545.0,11,0.0,4.0,4.0,1.0,1.0,1,1,99.31340390857589,1062.0,4262.47665443433,0,7,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.31390201248564137,4262.47665443433,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +15558,2,57.0,0.0,1,111,1250.0,3650.0,0.0,23,43,0.0,0.0,2131.5006792150766,4900.0,0.0,6929.53977498023,33,0,0,0,0,0,0,0,0,2,5.0,1,,1,115574,2,1,2,0,1,,378.0,,43,5.0,0.0,9.0,6.0,3.5,6,6,332.320998729213,1250.0,185150.5809602104,1,1,0,1,591.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026464945314176622,52900.16598863155,10,5,10,10_1,10_2,10_1_0 +15559,2,82.0,0.0,2,221,350.0,779.0,0.0,78,77,0.0,0.0,596.8201901802214,1609.0,0.0,1478.9346533450957,70,0,0,0,0,0,0,0,0,0,,1,,2,115575,2,2,3,0,1,,245.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1761.56057100864,350.0,47623.29132051235,5,5,0,1,120.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03378598906932268,31748.860880341566,8,4,8,8_1,8_1,8_0_1 +15560,2,65.0,0.0,2,111,1080.0,,,0,77,0.0,0.0,,1146.0,91.44888887617039,,60,0,0,0,0,0,0,0,0,0,,2,,2,115576,2,1,0,0,2,,600.0,271.0,11,0.0,0.0,3.0,1.0,1.0,1,1,110.51746339122846,1080.0,26203.930860884426,0,5,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04373389649377668,26203.930860884426,7,4,7,7_0,7_2,7_0_1 +15561,2,30.0,0.0,5,111,0.0,0.0,0.0,43,47,0.0,0.0,0.0,1086.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,115577,1,2,2,0,1,,715.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,854.215050617189,0.0,55819.126200199185,1,1,1,2,112.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019455696889718148,31010.625666777323,8,4,8,8_1,8_4,8_0_0 +15562,2,53.0,0.0,2,211,300.0,0.0,0.0,52,47,0.0,0.0,511.56016301161833,350.0,69.27946126982604,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,2,115578,2,1,1,0,1,,560.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1025.33306671102,300.0,65935.51050932088,1,1,0,1,180.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.005308217033528886,43957.00700621392,10,5,10,10_1,10_1,10_0_1 +15563,2,54.0,0.0,2,111,800.0,0.0,0.0,56,68,843.7462808292812,0.0,1364.160434697649,1750.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,115579,2,3,3,0,1,,900.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,435.973482526041,800.0,29437.31075502352,1,1,0,1,58.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05944836519081009,14718.65537751176,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +15564,2,81.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,115580,2,1,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,992.388450345932,480.0,45790.208956967916,0,5,0,1,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01048259029459961,45790.208956967916,10,5,10,10_0,10_4,10_0_1 +15565,2,52.0,0.0,6,111,430.0,1128.0,0.0,0,52,0.0,0.0,733.2362336499863,1558.0,0.0,2141.512566076082,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,115581,2,1,2,0,1,,140.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1728.06359761906,430.0,43978.52998384329,0,1,0,1,74.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0354263773839729,43978.52998384329,10,5,10,10_1,10_2,10_0_0 +15566,2,38.0,0.0,8,120,380.0,,,42,45,0.0,0.0,,468.0,121.93185183489385,,20,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,115582,2,2,0,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,108.1112360731683,380.0,58782.98205619651,1,1,0,1,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007961487893768169,32657.212253442503,8,4,8,8_1,8_2,8_0_0 +15567,2,51.0,0.0,8,111,1100.0,,,0,52,0.0,0.0,,1150.0,69.27946126982604,,43,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,115583,2,1,0,0,2,,840.0,,32,3.0,0.0,3.0,4.0,2.5,4,3,102.43348382873418,1100.0,40142.20741185793,0,1,1,2,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028648150516513253,16056.882964743174,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +15568,2,54.0,0.0,2,111,500.0,500.0,0.0,52,52,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,60,0,0,0,0,0,0,0,0,0,,2,,2,115584,2,1,0,1,1,,0.0,260.0,43,2.0,0.0,3.0,2.0,1.5,2,2,263.382115308578,500.0,40784.15460060595,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024519326434319238,27189.436400403967,7,4,7,7_0,7_4,7_0_1 +15569,2,66.0,0.0,5,111,323.0,922.0,0.0,75,74,0.0,0.0,550.7797755091758,1245.0,0.0,1750.4207322004854,41,0,0,0,0,0,0,0,0,0,,1,,3,115585,2,1,1,0,1,,180.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,363.381190271731,323.0,53135.5381603944,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023430646288776745,35423.6921069296,9,5,9,9_1,9_3,9_0_0 +15570,0,26.0,0.0,1,222,340.0,0.0,0.0,52,63,632.8097106219609,0.0,579.7681847465008,1060.0,166.2707070475825,0.0,50,2,2,1,2,2,2,2,1,2,4.0,1,,1,115586,2,2,3,0,1,,40.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1364.36816172581,340.0,44950.196704431844,1,1,5,0,60.0,1,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02358165431332784,29966.797802954563,8,4,8,8_1,8_0,8_1_0 +15571,2,57.0,0.0,5,111,250.0,400.0,0.0,78,52,0.0,0.0,426.3001358430153,650.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,1,2.0,2,,3,115587,2,1,0,0,1,,0.0,375.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1494.68230201313,250.0,29162.456854329357,5,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022288931390343516,19441.63790288624,5,3,5,5_0,5_3,5_0_0 +15572,0,63.0,0.0,5,112,600.0,0.0,0.0,86,74,1476.555991451242,953.5156394473612,1023.1203260232367,2720.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,115588,2,1,2,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,95.1141567550624,600.0,44387.91373949828,6,5,0,1,100.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06127794191822146,29591.942492998856,8,4,8,8_1,8_0,8_0_0 +15573,2,69.0,0.0,6,112,400.0,0.0,0.0,71,71,0.0,0.0,682.0802173488245,440.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,115589,2,1,2,0,1,,0.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1157.06619976618,400.0,40858.55826732024,5,5,0,1,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010768857704700846,27239.038844880157,7,4,7,7_1,7_0,7_0_0 +15574,2,28.0,0.0,7,111,0.0,,,0,34,0.0,0.0,,2236.0,0.0,,10,0,0,0,0,0,0,0,0,1,10.0,2,,5,115590,2,2,0,0,2,,0.0,650.0,22,2.0,0.0,2.0,2.0,1.5,2,2,80.96979275737776,0.0,49991.989541311654,0,1,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.044727165702262095,33327.9930275411,8,4,8,8_0,8_2,8_0_0 +15575,2,27.0,0.0,1,111,750.0,0.0,0.0,34,33,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,1,115591,2,1,0,0,1,,0.0,1223.0,43,2.0,0.0,3.0,2.0,1.5,2,2,744.918873994012,750.0,58012.558044851874,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012928235286920884,38675.03869656791,9,5,9,9_0,9_4,9_1_0 +15576,2,51.0,0.0,6,112,0.0,,,85,69,0.0,0.0,,522.0,723.2775756569839,,71,0,0,0,0,0,0,0,0,2,7.0,1,,4,115592,2,2,0,0,2,,800.0,,42,3.0,1.0,4.0,4.0,2.5,4,4,107.819998368018,0.0,44106.319036129345,6,1,0,1,136.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01183503886534734,17642.527614451737,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15577,2,58.0,0.0,5,111,730.0,1130.0,0.0,78,62,0.0,198.6490915515336,1244.7963966616046,2062.0,72.05063972061909,2145.3095741719617,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,115593,1,1,2,0,2,,200.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,268.904472454184,730.0,41353.36274440556,6,1,0,1,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049862934067652215,20676.68137220278,5,3,5,5_1,5_3,5_0_0 +15578,2,62.0,0.0,1,112,1300.0,3600.0,0.0,31,74,0.0,0.0,2216.7607063836795,4900.0,0.0,6834.61457258324,12,0,0,0,0,0,0,0,0,0,,1,,1,115594,2,1,2,0,1,,1250.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,638.724937511658,1300.0,54620.52134346718,1,5,0,1,167.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08970987239736514,36413.680895644786,9,5,9,9_1,9_0,9_1_0 +15579,2,80.0,0.0,2,111,326.0,805.0,0.0,77,75,0.0,0.0,555.8953771392919,1131.0,0.0,1528.29575859153,44,0,0,0,0,0,0,0,0,0,,2,,2,115595,2,1,0,0,1,,316.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1467.92003814695,326.0,41574.46405935759,5,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02720419915420255,27716.30937290506,7,4,7,7_0,7_2,7_0_1 +15580,2,24.0,0.0,2,111,700.0,0.0,0.0,56,56,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,115596,2,1,0,0,1,,450.0,800.0,43,2.0,0.0,2.0,2.0,1.5,2,2,626.086512966438,700.0,44184.780971487125,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01584255901260927,29456.520647658082,8,4,8,8_0,8_4,8_0_1 +15581,2,52.0,0.0,1,211,800.0,0.0,0.0,0,21,1898.4291318658827,0.0,1364.160434697649,2600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115597,1,1,2,0,1,,400.0,700.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2479.91257956457,800.0,38463.78929686509,0,1,2,3,48.0,1,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06759604416333227,38463.78929686509,9,5,9,9_1,9_1,9_1_0 +15582,2,32.0,0.0,9,120,280.0,850.0,0.0,45,38,0.0,0.0,477.4561521441771,1130.0,0.0,1613.7284407488207,12,0,0,0,0,0,0,0,0,2,45.0,2,2006.0,6,115598,2,1,0,0,1,,320.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,2287.75797603203,280.0,58610.233042160384,1,1,1,2,72.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019279909690636303,32561.24057897799,8,4,8,8_0,8_1,8_0_0 +15583,2,78.0,0.0,1,111,480.0,1200.0,0.0,0,74,0.0,0.0,818.4962608185893,1680.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,0,,2,,1,115599,2,1,0,0,1,,450.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,962.844568619684,480.0,65598.00967556048,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025610533129115796,65598.00967556048,10,5,10,10_0,10_4,10_1_0 +15584,2,41.0,0.0,7,111,720.0,,,46,33,0.0,0.0,,780.0,83.13535352379125,,20,0,0,0,0,0,0,0,0,2,90.0,1,,5,115600,2,1,0,0,2,,200.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,142.3161284342006,720.0,116836.97203007442,1,1,1,2,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006675968971527472,41727.49001074087,9,5,9,9_1,9_3,9_0_0 +15585,2,39.0,0.0,5,111,500.0,,,0,42,0.0,0.0,,500.0,0.0,,20,0,0,0,0,0,0,0,0,2,25.0,2,,3,115601,2,2,0,0,2,,600.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,153.93908718575142,500.0,41779.42207066302,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011967614084137695,41779.42207066302,9,5,9,9_0,9_2,9_0_0 +15586,1,64.0,183.0,1,111,440.0,463.0,0.0,77,78,0.0,0.0,750.2882390837069,903.0,0.0,879.0073741961223,50,1,2,2,2,1,2,2,2,0,,2,,1,115602,2,1,0,1,1,1174.0,0.0,322.0,41,0.0,4.0,4.0,3.0,2.0,3,3,956.059528441054,440.0,25627.80311093579,7,5,2,3,66.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.035235170025739566,12813.901555467895,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +15587,2,61.0,0.0,6,111,540.0,,,56,78,0.0,0.0,,678.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,115603,2,1,0,0,2,,490.0,,42,1.0,3.0,3.0,3.0,2.0,3,2,111.52256877836521,540.0,9230.205128205129,4,7,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07345448888543188,4615.102564102564,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15588,2,78.0,0.0,7,111,900.0,0.0,0.0,56,74,0.0,0.0,1534.680489034855,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,115604,2,1,0,0,1,,0.0,830.0,42,2.0,0.0,3.0,3.0,2.0,3,3,1998.66251767001,900.0,52251.756281879694,1,5,2,3,80.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017224301421464555,26125.878140939847,7,4,7,7_0,7_2,7_0_0 +15589,2,79.0,0.0,1,211,1400.0,0.0,0.0,77,77,0.0,0.0,2387.2807607208856,1520.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115605,1,2,2,0,1,,237.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2501.06821852017,1400.0,35979.63736164066,5,5,0,1,75.0,2,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04224611784499343,23986.424907760444,6,3,6,6_1,6_1,6_1_0 +15590,2,40.0,0.0,8,112,540.0,1100.0,0.0,54,48,0.0,0.0,920.8082934209131,1640.0,0.0,2088.354452733768,42,0,0,0,0,0,0,0,0,2,12.0,1,1999.0,6,115606,2,1,2,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.3,4,2,1866.49426594968,540.0,51867.51278972844,1,1,1,2,92.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031619021460477216,22551.092517273235,6,3,6,6_1,6_0,6_0_0 +15591,0,81.0,0.0,1,221,625.0,0.0,0.0,86,75,2109.365702073203,0.0,1065.7503396075383,2715.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115607,2,1,2,0,2,,354.0,,41,0.0,1.0,9.0,2.0,1.5,2,2,2107.03969090334,625.0,34400.966741200165,6,5,0,1,128.0,1,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07892220065863417,22933.977827466777,6,3,6,6_1,6_1,6_1_0 +15592,0,73.0,0.0,6,111,500.0,,,77,75,0.0,0.0,,752.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,115608,2,1,0,0,2,,300.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,97.2657819764975,500.0,75809.0,5,5,0,1,118.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009919666530359193,37904.5,9,5,9,9_1,9_2,9_0_0 +15593,2,73.0,0.0,1,111,315.0,1900.0,0.0,75,72,0.0,0.0,537.1381711621992,2215.0,0.0,3607.1576910855993,43,0,0,0,0,0,0,0,0,0,,1,,1,115609,2,1,2,0,1,,432.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,694.370896142759,315.0,93741.87677796296,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02362871404043307,62494.58451864197,10,5,10,10_1,10_4,10_1_0 +15594,2,82.0,0.0,2,111,516.0,372.0,0.0,0,77,0.0,0.0,879.8834803799836,888.0,0.0,706.2435058336015,33,0,0,0,0,0,0,0,0,0,,2,,2,115610,2,2,0,1,1,213.0,0.0,352.0,11,0.0,3.0,3.0,1.0,1.0,1,1,236.123016034446,516.0,34918.92171451735,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02543033852133008,34918.92171451735,9,5,9,9_0,9_4,9_0_1 +15595,2,29.0,0.0,2,111,560.0,0.0,0.0,84,62,0.0,662.163638505112,954.9123042883542,1060.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,15.0,1,,2,115611,1,1,2,0,1,,156.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,393.225496738694,560.0,23383.240572969018,3,1,1,2,110.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.045331612472283164,11134.87646331858,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +15596,2,52.0,0.0,9,221,1200.0,0.0,0.0,31,34,0.0,927.0290939071567,2046.2406520464733,1930.0,41.567676761895626,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,115612,2,2,1,0,1,,342.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,569.861526559644,1200.0,148783.05812665372,1,1,1,2,160.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012971907045740784,99188.70541776915,10,5,10,10_1,10_1,10_0_0 +15597,2,59.0,0.0,9,111,600.0,,,0,75,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,115613,2,2,0,0,2,,240.0,680.0,11,0.0,0.0,4.0,1.0,1.0,1,1,107.40403528577478,600.0,39326.39925725787,0,5,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015256926932848223,39326.39925725787,9,5,9,9_1,9_2,9_0_0 +15598,2,51.0,0.0,1,111,1000.0,1200.0,0.0,63,47,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,115614,2,1,3,0,1,,600.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,376.524396912389,1000.0,50756.813967662005,1,1,1,2,120.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04334393410511653,25378.406983831002,7,4,7,7_1,7_2,7_1_0 +15599,1,24.0,354.0,9,111,220.0,0.0,0.0,0,56,0.0,0.0,375.14411954185346,220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,115615,2,1,0,1,1,396.0,0.0,333.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1311.17506661723,220.0,16462.094570946894,0,1,2,3,65.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.013364034512853954,12663.14966995915,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +15600,1,56.0,80.0,9,221,605.0,0.0,0.0,52,42,0.0,317.83854648245375,1031.646328740097,995.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,0,,1,2010.0,6,115616,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,4.0,2.5,4,2,1776.34040137255,605.0,27192.563203446756,1,1,1,2,86.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03659088672721666,10877.025281378703,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +15601,2,51.0,0.0,7,111,309.0,760.0,0.0,85,37,0.0,0.0,526.9069679019669,1069.0,0.0,1442.8630764342397,12,0,0,0,0,0,0,0,0,0,,2,,5,115617,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,3.0,2.0,3,2,614.362708254476,309.0,13132.18953358247,6,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08140302858607738,6566.094766791235,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +15602,2,39.0,0.0,1,111,250.0,140.0,0.0,0,38,0.0,0.0,426.3001358430153,390.0,0.0,265.7905667115705,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,115618,1,2,0,1,2,167.0,0.0,610.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1149.09683263889,250.0,33332.364741623656,0,1,2,3,21.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011700339985569312,33332.364741623656,8,4,8,8_0,8_4,8_1_0 +15603,2,33.0,0.0,9,111,402.0,0.0,0.0,56,38,0.0,0.0,685.4906184355685,402.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,2,2010.0,6,115619,2,2,0,1,1,,600.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1379.15474686823,402.0,50549.359329401734,1,1,1,2,82.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007952623046721367,28082.977405223184,8,4,8,8_0,8_3,8_0_0 +15604,2,39.0,0.0,9,111,1471.0,0.0,0.0,35,42,0.0,0.0,2508.349999300302,1471.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,1,2012.0,6,115620,1,1,1,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1158.0464488468,1471.0,74834.91105981686,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019656601166054756,41574.95058878714,9,5,9,9_1,9_4,9_0_0 +15606,1,23.0,230.0,7,112,33.0,,,0,55,0.0,0.0,,56.0,31.86855218411998,,42,0,0,0,0,0,0,0,0,0,,2,,5,115622,2,1,0,0,2,,0.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,85.46218489915118,33.0,14421.91569767442,0,4,2,3,70.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.003882979291650566,14421.91569767442,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +15607,2,62.0,0.0,8,112,490.0,0.0,0.0,52,74,1371.087706347582,0.0,835.54826625231,1883.0,128.85979796187644,0.0,42,0,0,0,0,0,0,0,0,0,,1,2002.0,6,115623,2,1,1,0,1,,418.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,797.254759052066,490.0,43596.956680802985,1,6,0,1,147.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04319108817127917,29064.63778720199,8,4,8,8_1,8_0,8_0_0 +15608,2,51.0,0.0,5,111,470.0,0.0,0.0,46,33,1450.1889201753272,0.0,801.4442553848687,1845.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,10.0,2,,3,115624,2,2,0,1,1,,411.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,287.875221089785,470.0,72153.73185611624,1,1,0,1,85.0,9,7,2,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025570402979005518,48102.48790407749,10,5,10,10_0,10_3,10_0_0 +15609,0,46.0,0.0,1,112,360.0,0.0,0.0,0,53,0.0,97.47048758795248,613.872195613942,584.0,207.83838380947813,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,115625,1,1,3,0,2,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,835.627060634355,360.0,30534.604082015394,0,1,5,0,100.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01912584156753389,30534.604082015394,8,4,8,8_1,8_2,8_1_0 +15610,2,54.0,0.0,8,111,607.0,0.0,0.0,0,52,0.0,0.0,1035.056729826841,607.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,1.0,2,2001.0,6,115626,2,1,0,0,1,,0.0,304.0,12,1.0,1.0,2.0,1.0,1.0,1,1,726.652286170572,607.0,18934.960321941016,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032057104407904914,18934.960321941016,5,3,5,5_0,5_4,5_0_0 +15611,2,57.0,0.0,7,111,400.0,0.0,0.0,34,34,0.0,1125.6781854586902,682.0802173488245,1250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,5,115627,2,1,1,0,1,,531.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,885.576128735643,400.0,204760.0900946005,1,1,1,2,180.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0061047052646953405,81904.03603784021,10,5,10,10_1,10_2,10_0_0 +15612,2,40.0,0.0,5,111,460.0,0.0,0.0,52,52,873.2774006583061,0.0,784.3922499511482,1288.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,115628,2,1,0,1,1,840.0,0.0,490.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,407.940512770509,460.0,49838.297055623814,1,1,2,3,72.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025843579658479936,19168.575790624545,5,3,5,5_0,5_4,5_0_0 +15613,2,58.0,0.0,1,111,0.0,0.0,470.0,77,31,0.0,0.0,296.24959649492956,470.0,0.0,562.4641093554,10,2,2,2,2,1,2,2,2,2,50.0,2,,1,115629,2,1,0,0,1,,60.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1948.92786473783,0.0,114926.63197619005,6,1,1,2,74.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.0040895655943121376,76617.75465079337,10,5,10,10_0,10_2,10_1_0 +15614,2,44.0,0.0,1,111,0.0,0.0,2200.0,0,46,0.0,0.0,1386.7002389124364,2200.0,0.0,2632.810724642298,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,115630,2,1,1,0,1,,200.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,752.21598847728,0.0,9351.494308675796,0,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23525651915961307,6234.329539117197,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +15615,2,80.0,0.0,1,111,345.0,1828.0,0.0,77,74,0.0,0.0,588.2941874633611,2173.0,0.0,3470.4653996339343,41,0,0,0,0,0,0,0,0,0,,1,,1,115631,2,1,2,0,2,,421.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1149.81409961407,345.0,88176.15267608977,5,5,0,1,130.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024643851359475794,58784.10178405984,10,5,10,10_1,10_3,10_1_0 +15616,2,65.0,0.0,7,111,1600.0,0.0,0.0,0,90,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,115632,2,1,2,0,1,,270.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,637.013484562968,1600.0,21828.775309203815,0,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07329774471247506,21828.775309203815,6,3,6,6_1,6_3,6_0_0 +15617,2,49.0,0.0,7,211,95.0,,,0,64,0.0,0.0,,95.0,0.0,,71,2,2,2,2,1,2,2,2,0,,1,,5,115633,2,3,0,0,2,,179.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,107.74067059807982,95.0,5450.647251566011,0,4,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.017429122747340844,5450.647251566011,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15618,2,70.0,0.0,2,111,540.0,1100.0,0.0,0,75,0.0,0.0,920.8082934209131,1790.0,207.83838380947813,2088.354452733768,60,0,0,0,0,0,0,0,0,0,,1,,2,115634,2,1,2,0,1,,183.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,976.227199823011,540.0,27675.712789481193,0,5,0,1,114.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06467764764058152,27675.712789481193,7,4,7,7_1,7_4,7_0_1 +15619,1,23.0,201.0,8,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,166.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,2002.0,6,115635,2,1,0,0,1,1600.0,0.0,681.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1177.55171173571,0.0,11895.526544486158,0,1,3,4,20.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013954825738835807,11895.526544486158,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +15621,2,64.0,0.0,6,111,1086.0,1688.0,0.0,75,33,0.0,0.0,1851.8477901020585,2774.0,0.0,3204.6748329223637,10,0,0,0,0,0,0,0,0,2,2.0,1,,4,115637,2,1,2,0,1,,671.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,363.134348504109,1086.0,125734.28003729481,6,5,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02206240015990219,83822.85335819655,10,5,10,10_1,10_3,10_0_0 +15622,1,35.0,500.0,7,111,1200.0,0.0,0.0,0,85,738.277995725621,0.0,2046.2406520464733,1900.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,5,115638,1,3,0,0,2,,0.0,664.0,31,0.0,0.0,3.0,4.0,2.1,2,1,959.964820132976,1200.0,14644.130397640958,0,6,2,3,41.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.12974481573218397,6973.395427448075,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +15623,2,41.0,0.0,1,111,660.0,1200.0,0.0,54,48,0.0,0.0,1125.4323586255605,1860.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,115639,2,1,1,0,1,,650.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,381.561899186571,660.0,60486.0,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030750917567701617,26298.26086956522,7,4,7,7_1,7_4,7_1_0 +15624,2,56.0,0.0,5,111,1800.0,0.0,0.0,52,63,0.0,132.4327277010224,3069.36097806971,2080.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,115640,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,1671.84402725711,1800.0,34571.747877085756,1,1,1,2,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06016473356785728,13828.699150834302,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +15625,1,59.0,225.0,1,111,200.0,700.0,0.0,0,63,0.0,0.0,341.04010867441224,900.0,0.0,1328.9528335578523,31,2,2,2,1,2,2,2,2,0,,2,,1,115641,1,3,0,0,1,,0.0,514.0,32,1.0,2.0,3.0,2.0,1.5,2,2,1609.54527439354,200.0,15008.401373877066,0,4,2,3,78.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.05996641331611098,10005.600915918045,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +15626,2,70.0,0.0,1,111,0.0,0.0,900.0,46,74,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,10,0,0,0,0,0,0,0,0,0,,2,,1,115642,2,1,0,0,1,,100.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1761.54526169903,0.0,104297.88268726254,1,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008629130110902177,69531.92179150836,10,5,10,10_0,10_3,10_1_0 +15627,2,70.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1523.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115643,2,1,2,0,1,,299.0,,21,2.0,2.0,4.0,3.0,2.0,3,3,1512.64384333405,0.0,35495.82156944134,0,5,0,1,140.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04290645863825178,17747.91078472067,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +15628,1,29.0,74.0,9,211,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1455.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,115644,2,1,0,1,1,636.0,109.0,429.0,22,1.0,0.0,4.0,2.0,1.5,2,2,351.56505229727,0.0,16805.8285812443,0,4,2,3,70.0,3,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08657710585146716,11203.885720829532,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +15629,2,34.0,0.0,2,111,300.0,0.0,0.0,85,47,0.0,794.5963662061343,511.56016301161833,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,8,,2,115645,2,2,0,1,1,,150.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,458.192336328024,300.0,48818.70985893512,6,1,1,2,67.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018435554782185136,32545.806572623416,8,4,8,8_0,8_3,8_0_1 +15630,0,77.0,0.0,7,222,800.0,0.0,0.0,0,77,0.0,1207.7864766333241,1364.160434697649,1776.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,115646,2,1,2,0,1,,145.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1526.32052292831,800.0,38920.842445828246,0,5,0,1,45.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04563107806497035,38920.842445828246,9,5,9,9_1,9_0,9_0_0 +15631,2,42.0,0.0,9,400,600.0,,,54,64,0.0,0.0,,840.0,332.541414095165,,71,2,2,2,2,1,2,2,2,2,10.0,1,2009.0,6,115647,2,1,0,0,1,,420.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,193.7805245424729,600.0,37041.41518101075,1,1,1,2,75.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.022677319316639535,18520.707590505375,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +15632,2,59.0,0.0,6,111,869.0,1078.0,0.0,78,78,0.0,0.0,1481.8192721903213,1947.0,0.0,2046.5873636790925,71,0,0,0,0,0,0,0,0,0,,1,,4,115649,2,1,2,0,2,,840.0,,41,3.0,0.0,4.0,5.0,3.0,5,5,513.861454595541,869.0,65947.90239387729,5,7,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02952330444676528,21982.63413129243,6,3,6,6_1,6_4,6_0_0 +15633,2,24.0,0.0,1,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,1230.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,115650,2,1,1,0,1,,194.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1431.76828101535,0.0,40352.25008249926,1,1,1,2,92.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030481571597254006,26901.500054999506,7,4,7,7_1,7_3,7_1_0 +15634,2,55.0,0.0,2,111,700.0,0.0,0.0,0,34,0.0,0.0,1193.6403803604428,770.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,1,7.0,2,,2,115651,2,3,0,0,1,,180.0,270.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2586.14947540829,700.0,21989.808971410053,0,1,2,3,50.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03501622051383493,21989.808971410053,6,3,6,6_0,6_2,6_0_1 +15635,2,28.0,0.0,2,111,200.0,227.0,0.0,65,46,0.0,0.0,341.04010867441224,427.0,0.0,430.9604188823321,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,115652,2,1,0,1,1,265.0,0.0,325.0,43,2.0,0.0,3.0,2.0,1.5,2,2,280.11674634724,200.0,48832.84300295649,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008744115102496655,32555.22866863766,8,4,8,8_0,8_4,8_0_1 +15638,1,42.0,360.0,2,111,324.0,450.0,0.0,0,68,0.0,0.0,552.4849760525478,774.0,0.0,854.326821572905,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,115655,2,3,0,1,1,1428.0,800.0,340.0,32,4.0,1.0,4.0,4.0,2.5,4,2,346.368694710339,324.0,15663.370816683455,0,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049414650847414844,6265.348326673382,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15639,2,37.0,0.0,2,111,520.0,0.0,0.0,55,38,0.0,0.0,886.7042825534718,520.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,115656,2,2,0,1,1,745.0,0.0,448.0,43,2.0,0.0,4.0,5.0,2.4,3,2,302.125664700317,520.0,17390.118637571162,1,1,2,3,75.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029902038671349006,7245.882765654651,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +15640,2,83.0,0.0,2,111,1200.0,,,0,77,0.0,0.0,,1476.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,115657,1,2,0,0,2,,450.0,,21,1.0,9.0,4.0,3.0,2.0,3,3,107.17317806163273,1200.0,12203.866666666667,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12094527417539797,6101.933333333333,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +15641,2,56.0,0.0,5,111,1563.0,0.0,0.0,0,52,0.0,0.0,2665.2284492905314,1563.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,3,115658,2,3,3,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,327.597068584063,1563.0,27892.86780433865,0,1,1,2,125.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05603583005390647,27892.86780433865,7,4,7,7_1,7_3,7_0_0 +15642,2,58.0,0.0,5,300,1300.0,0.0,0.0,78,56,0.0,0.0,2216.7607063836795,1370.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,3,115659,2,1,1,0,1,,350.0,325.0,42,1.0,3.0,4.0,2.0,1.5,2,2,718.783477071028,1300.0,34084.97316220849,5,1,2,3,82.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04019366521077328,22723.315441472325,6,3,6,6_1,6_0,6_0_0 +15643,2,54.0,0.0,2,111,350.0,0.0,0.0,63,48,0.0,0.0,596.8201901802214,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,115660,2,1,0,1,1,,230.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1250.47848836401,350.0,51755.193816824394,1,1,1,2,96.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006762606304571953,34503.4625445496,9,5,9,9_0,9_3,9_0_1 +15644,2,57.0,0.0,1,300,1000.0,0.0,0.0,56,22,0.0,397.2981831030672,1705.2005433720612,1360.0,83.13535352379125,0.0,30,2,2,2,2,1,2,2,2,0,,1,,1,115661,2,2,3,0,1,,400.0,,43,3.0,4.0,9.0,3.0,2.0,3,3,1788.47904565251,1000.0,13063.047693986595,4,4,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.10411046731660166,6531.523846993297,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +15645,2,56.0,0.0,5,111,540.0,,,0,77,0.0,0.0,,720.0,249.40606057137379,,50,2,2,2,2,1,2,2,1,0,,1,,3,115662,2,2,0,0,2,,200.0,,21,2.0,0.0,4.0,3.0,2.0,3,3,107.37008457244231,540.0,25100.390963214246,0,7,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.028684812163093095,12550.195481607123,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +15646,2,68.0,0.0,1,111,960.0,1200.0,0.0,86,86,0.0,0.0,1636.9925216371787,3017.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,115663,2,1,2,0,1,,440.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1311.31806427805,960.0,57876.520090124366,5,5,0,1,110.0,6,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05212822048219169,38584.34672674958,9,5,9,9_1,9_2,9_1_0 +15647,2,35.0,0.0,1,300,1000.0,0.0,0.0,42,46,0.0,0.0,1705.2005433720612,1150.0,207.83838380947813,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,115664,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1218.52830295564,1000.0,47536.16375833599,1,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024192107841229295,31690.775838890662,8,4,8,8_1,8_0,8_1_0 +15648,2,70.0,0.0,2,111,610.0,0.0,0.0,72,72,1687.4925616585624,0.0,1040.1723314569574,2360.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,115665,2,2,2,0,1,,242.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1176.39933486152,610.0,16133.616601932215,5,5,0,1,185.0,9,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14627842338322075,10755.744401288144,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +15649,2,49.0,0.0,6,112,350.0,1450.0,0.0,0,34,0.0,0.0,596.8201901802214,1800.0,0.0,2752.830869512694,10,2,2,2,2,1,2,2,2,2,45.0,1,,4,115666,2,2,3,0,1,,500.0,,32,1.0,0.0,5.0,3.0,2.0,3,1,412.620290758428,350.0,36537.559790132815,0,1,1,2,105.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.049264373711298055,18268.779895066407,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +15650,2,80.0,0.0,1,111,580.0,1200.0,0.0,72,72,0.0,0.0,989.0163151557955,1780.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,0,,2,,1,115667,1,1,0,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,962.626860849639,580.0,79418.24234348447,5,5,0,1,167.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022412986581867266,52945.49489565631,10,5,10,10_0,10_4,10_1_0 +15651,2,44.0,0.0,8,120,1200.0,0.0,0.0,11,54,1371.087706347582,0.0,2046.2406520464733,2564.0,88.67771042537734,0.0,41,0,0,0,0,0,0,0,0,2,40.0,1,1999.0,6,115668,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,1931.41534777859,1200.0,34953.93621795591,1,1,1,2,110.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07335368423207421,17476.968108977955,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +15652,2,28.0,0.0,6,111,900.0,,,85,52,0.0,0.0,,988.0,121.93185183489385,,43,2,2,2,2,1,2,2,2,0,,1,,4,115669,2,1,0,0,1,,400.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,114.42845954094602,900.0,29085.257471097742,6,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.033969099327443936,13850.122605284638,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +15653,2,38.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1465.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,2,,2,115670,2,1,0,0,1,,0.0,550.0,12,1.0,1.0,3.0,1.0,1.0,1,1,391.62099187641,0.0,23785.974324740422,0,1,2,3,65.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0615909182444637,23785.974324740422,6,3,6,6_0,6_2,6_0_1 +15654,2,36.0,0.0,9,111,288.0,,,38,34,0.0,0.0,,332.0,60.965925917446924,,10,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,115671,2,1,0,0,2,,200.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,239.3961972821138,288.0,83992.58860102082,1,1,1,2,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003952729705439331,46662.54922278934,10,5,10,10_1,10_2,10_0_0 +15655,2,38.0,0.0,1,111,960.0,1440.0,0.0,54,63,0.0,0.0,1636.9925216371787,2400.0,0.0,2733.845829033296,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,115672,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,680.668674629235,960.0,36099.85318062992,1,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06648226484443895,17190.406276490437,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +15656,1,30.0,270.0,9,111,1100.0,1007.0,0.0,0,85,0.0,0.0,1875.7205977092674,2107.0,0.0,1911.7935762753675,41,0,0,0,0,0,0,0,0,0,,2,2009.0,6,115673,2,2,0,0,1,,360.0,456.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1522.0423179272,1100.0,6129.435752069625,0,7,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.34375105396749844,6129.435752069625,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +15657,2,52.0,0.0,2,111,830.0,3000.0,0.0,54,48,0.0,0.0,1415.3164509988108,3830.0,0.0,5695.512143819367,31,0,0,0,0,0,0,0,0,2,50.0,1,,2,115674,2,1,2,0,1,,320.0,,43,3.0,0.0,8.0,3.0,2.0,3,3,1636.2983827551,830.0,53897.33341120975,1,1,0,1,200.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07106102950917835,26948.666705604875,7,4,7,7_1,7_2,7_0_1 +15658,2,63.0,0.0,2,111,400.0,120.0,0.0,0,90,0.0,0.0,682.0802173488245,520.0,0.0,227.8204857527747,70,0,0,0,0,0,0,0,0,0,,2,,2,115675,2,1,0,1,2,360.0,0.0,280.0,11,0.0,2.0,2.0,1.0,1.0,1,1,327.750295501504,400.0,14037.320004750136,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03704410812206571,14037.320004750136,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +15659,2,62.0,0.0,2,112,1200.0,0.0,0.0,0,22,0.0,0.0,2046.2406520464733,1400.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115676,2,2,2,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,1492.69790769991,1200.0,19168.97504414958,0,1,0,1,36.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07303468217656653,19168.97504414958,5,3,5,5_1,5_0,5_0_1 +15660,2,39.0,0.0,7,112,0.0,0.0,0.0,0,54,0.0,0.0,0.0,241.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,115677,2,2,0,1,1,600.0,0.0,772.0,12,1.0,0.0,2.0,1.0,1.0,1,1,972.999293629549,0.0,33576.16797367121,0,1,2,3,50.0,10,3,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007177710100479019,33576.16797367121,9,5,9,9_0,9_1,9_0_0 +15661,0,76.0,0.0,1,111,700.0,1500.0,0.0,0,75,0.0,132.4327277010224,1193.6403803604428,2300.0,0.0,2847.7560719096837,12,0,0,0,0,0,0,0,0,0,,2,,1,115678,2,3,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1743.50875378417,700.0,20562.389692265137,0,5,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.11185470338912898,20562.389692265137,5,3,5,5_0,5_3,5_1_0 +15662,2,24.0,0.0,7,111,0.0,0.0,0.0,63,46,0.0,0.0,0.0,472.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,5,115679,2,1,0,0,1,,0.0,530.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1851.36240327457,0.0,20509.47895329329,4,1,2,3,52.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023013748963340148,13672.985968862193,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +15663,2,48.0,0.0,8,300,1800.0,0.0,0.0,52,53,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,115680,2,1,1,0,1,,300.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,1821.7577382858,1800.0,54985.280397360555,1,1,1,2,98.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032736033843821316,21994.112158944223,6,3,6,6_1,6_1,6_0_0 +15664,0,42.0,0.0,7,120,550.0,,,68,63,0.0,0.0,,990.0,609.6592591744692,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,115681,2,2,0,0,2,,260.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,112.53171016923272,550.0,28345.789633681845,1,1,5,0,68.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03492582188727013,10902.226782185326,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +15665,0,86.0,0.0,6,111,180.0,,,0,78,0.0,0.0,,330.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,4,115682,2,2,0,0,2,,120.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,130.98605482052582,180.0,9583.657931034482,0,5,5,0,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034433616305457916,9583.657931034482,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15666,2,29.0,0.0,5,111,450.0,820.0,0.0,0,54,0.0,0.0,767.3402445174275,1270.0,0.0,1556.773319310627,20,0,0,0,0,0,0,0,0,2,25.0,1,,3,115683,2,1,2,0,1,,160.0,600.0,12,1.0,0.0,4.0,1.0,1.0,1,1,362.614082107541,450.0,19586.620850578616,0,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06484017890010274,19586.620850578616,5,3,5,5_1,5_3,5_0_0 +15667,2,85.0,0.0,5,111,258.0,0.0,0.0,75,77,0.0,0.0,439.9417401899918,258.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,115684,2,1,0,1,2,636.0,0.0,679.0,41,0.0,7.0,3.0,2.0,1.5,2,2,247.024319101185,258.0,46118.63058881921,5,5,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005594268448693885,30745.753725879473,8,4,8,8_0,8_3,8_0_0 +15668,2,51.0,0.0,1,111,2500.0,0.0,0.0,85,21,0.0,595.9472746546007,4263.001358430153,2950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115685,2,1,2,0,1,,2500.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,399.402834811384,2500.0,82184.95073178048,6,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03589464949157962,41092.47536589024,9,5,9,9_1,9_4,9_1_0 +15669,2,73.0,0.0,6,111,387.0,0.0,0.0,0,78,1178.0807446078838,0.0,659.9126102849876,1598.0,130.24538718727297,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,115686,2,1,2,0,1,,128.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,226.989530265057,387.0,25209.419478292853,0,5,0,1,130.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06338900431150327,25209.419478292853,7,4,7,7_1,7_3,7_0_0 +15670,2,39.0,0.0,8,112,1800.0,0.0,0.0,52,37,0.0,264.8654554020448,3069.36097806971,2150.0,207.83838380947813,0.0,12,0,0,0,0,0,0,0,0,2,3.0,1,2002.0,6,115687,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1941.91821672405,1800.0,55055.7905228822,1,1,1,2,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03905129650452336,26217.04310613438,7,4,7,7_1,7_0,7_0_0 +15671,2,43.0,0.0,8,112,480.0,,,0,68,0.0,0.0,,480.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,115688,2,3,0,0,2,,450.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,112.5707969001411,480.0,7032.0,0,4,0,1,100.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06825938566552901,7032.0,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +15672,2,70.0,0.0,2,111,270.0,80.0,0.0,0,75,0.0,0.0,460.40414671045653,350.0,0.0,151.8803238351831,31,2,1,2,2,1,2,2,2,0,,2,,2,115689,1,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1886.79037315292,270.0,26306.654892299695,0,5,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013304618220481146,26306.654892299695,7,4,7,7_0,7_3,7_0_1 +15673,2,32.0,0.0,6,111,360.0,0.0,0.0,46,46,0.0,0.0,613.872195613942,955.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,4,115690,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,773.384957617554,360.0,61864.566036905104,1,1,1,2,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015436946562112759,41243.044024603405,9,5,9,9_0,9_4,9_0_0 +15674,1,33.0,400.0,2,111,522.0,0.0,0.0,68,64,0.0,0.0,890.114683640216,812.0,401.8208753649911,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,115691,2,3,0,1,1,97.0,0.0,357.0,43,2.0,0.0,5.0,5.0,2.4,2,2,1603.83602132773,522.0,34028.34387743069,1,1,2,3,97.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02386246015747358,14178.476615596122,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +15675,0,46.0,0.0,1,111,1712.0,2748.0,0.0,0,85,0.0,0.0,2919.303330252969,4460.0,0.0,5217.08912373854,20,0,0,0,0,0,0,0,0,0,,1,,1,115692,2,1,2,0,2,,1600.0,,31,0.0,0.0,7.0,4.0,2.1,2,2,719.910516892082,1712.0,144242.59507314788,0,6,5,0,230.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030920131447567605,68686.95003483232,10,5,10,10_1,10_4,10_1_0 +15676,2,92.0,0.0,5,112,0.0,0.0,0.0,0,71,0.0,0.0,0.0,870.0,36.025319860309544,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,115693,2,1,2,0,1,,120.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1010.74045447562,0.0,14877.56414571321,0,5,0,1,110.0,9,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05847731466516177,14877.56414571321,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +15677,1,38.0,245.0,2,111,230.0,0.0,0.0,0,85,0.0,0.0,392.1961249755741,230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115694,2,2,0,1,1,792.0,0.0,232.0,11,0.0,0.0,2.0,1.0,1.0,1,1,479.84395668028,230.0,10671.624904633767,0,7,2,3,40.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02155248165629686,10671.624904633767,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15678,2,45.0,0.0,7,221,900.0,,,0,68,0.0,0.0,,1072.0,238.3213467682016,,71,0,0,0,0,0,0,0,0,0,,1,,5,115695,2,3,0,0,2,,900.0,,32,1.0,4.0,4.0,2.0,1.5,2,1,93.29432893382456,900.0,9044.10083608275,0,1,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11853030162192582,6029.400557388501,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +15679,2,60.0,0.0,6,111,800.0,700.0,0.0,0,38,0.0,0.0,1364.160434697649,1500.0,0.0,1328.9528335578523,50,1,2,2,1,2,2,2,2,0,,1,,4,115696,2,1,2,0,1,,360.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,259.223191443107,800.0,36895.877879352454,0,4,0,1,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04065494809216682,36895.877879352454,9,5,9,9_1,9_3,9_0_0 +15680,1,30.0,270.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,814.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,115697,2,1,0,1,2,717.0,0.0,343.0,32,1.0,0.0,3.0,3.0,1.6,1,1,440.406041718162,0.0,13551.726688102894,0,1,2,3,71.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06006614645752953,8469.829180064307,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15681,2,59.0,0.0,5,111,468.0,,,75,42,0.0,0.0,,636.0,232.77898986661552,,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,115698,2,1,0,0,2,,183.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,74.57516201010513,468.0,97584.28450641005,5,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006517442877374613,65056.18967094004,10,5,10,10_1,10_3,10_0_0 +15682,2,53.0,0.0,1,111,400.0,800.0,0.0,52,62,0.0,0.0,682.0802173488245,1260.0,83.13535352379125,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,115699,1,1,3,0,1,,390.0,287.0,43,2.0,2.0,4.0,3.0,2.0,3,3,69.5396438394071,400.0,35753.44570728658,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035241358562070314,17876.72285364329,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +15683,1,53.0,300.0,2,111,440.0,760.0,0.0,85,67,0.0,0.0,750.2882390837069,1200.0,0.0,1442.8630764342397,50,2,2,1,1,1,2,2,2,0,,2,,2,115700,1,2,0,0,1,,580.0,350.0,42,1.0,0.0,5.0,8.0,3.499999999999999,3,2,293.069320475011,440.0,21388.729896429086,6,4,2,3,81.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05610431315046639,6111.0656846940265,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15685,2,62.0,0.0,5,112,1280.0,0.0,0.0,78,75,0.0,264.8654554020448,2182.6566955162384,1550.0,96.99124577775646,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,115702,2,2,2,0,1,,120.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1987.36689885254,1280.0,31440.40171187082,5,5,0,1,150.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0492996245469336,20960.267807913882,5,3,5,5_1,5_1,5_0_0 +15686,1,65.0,70.0,6,111,876.0,0.0,0.0,86,78,0.0,0.0,1493.7556759939255,1176.0,415.67676761895626,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,115703,1,2,0,0,1,,0.0,714.0,41,1.0,4.0,5.0,3.0,2.0,3,3,1650.44866911588,876.0,24455.777466732095,6,5,2,3,90.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.04808679673339958,12227.888733366048,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +15687,2,56.0,0.0,6,111,1910.0,0.0,0.0,47,37,0.0,397.2981831030672,3256.9330378406366,2402.0,266.03313127613205,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,4,115704,2,2,2,0,1,,233.0,,43,3.0,0.0,6.0,4.0,2.5,4,2,376.152884588917,1910.0,76628.7414761978,1,1,1,2,120.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031345940879716816,30651.49659047912,8,4,8,8_1,8_2,8_0_0 +15688,0,50.0,0.0,9,112,1300.0,0.0,0.0,64,85,0.0,0.0,2216.7607063836795,1870.0,789.785858476017,0.0,71,0,0,0,0,0,0,0,0,0,,7,2008.0,6,115705,2,1,0,0,1,,0.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,3564.70453205556,1300.0,18205.0,5,7,5,0,23.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1027190332326284,12136.666666666666,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +15689,2,65.0,0.0,6,111,331.0,,,78,78,0.0,0.0,,423.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,,4,115706,2,1,0,0,2,,261.0,686.0,41,0.0,3.0,5.0,2.0,1.5,2,2,104.67610165110239,331.0,22788.72660192162,5,5,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01856180941520143,15192.484401281079,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +15690,2,50.0,0.0,5,112,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1036.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,3,115707,1,2,2,0,1,,135.0,600.0,32,2.0,1.0,6.0,2.0,1.5,2,2,2550.64767222547,0.0,29980.481109911132,0,1,2,3,100.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034555816372723674,19986.987406607423,5,3,5,5_1,5_1,5_0_0 +15691,2,63.0,0.0,1,111,1450.0,0.0,0.0,78,64,0.0,0.0,2472.540787889489,1510.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115708,2,3,3,0,1,,0.0,455.0,42,1.0,8.0,4.0,2.0,1.5,2,2,1596.48348883525,1450.0,31104.349426066434,6,1,2,3,60.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04854626532502146,20736.232950710957,5,3,5,5_1,5_3,5_1_0 +15692,2,60.0,0.0,7,111,1676.0,0.0,0.0,48,75,0.0,1260.759567713733,2857.9161106915744,2734.0,146.87245789203124,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,115709,2,2,2,0,1,,953.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2922.04553287168,1676.0,56209.3913445501,1,5,0,1,102.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04863955888156189,37472.9275630334,9,5,9,9_1,9_3,9_0_0 +15693,2,83.0,0.0,2,112,360.0,0.0,0.0,0,77,0.0,0.0,613.872195613942,360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,115710,2,1,0,1,1,,0.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1078.3141935728,360.0,32943.07585775168,0,5,0,1,80.0,10,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010927941323830272,32943.07585775168,8,4,8,8_0,8_2,8_0_1 +15694,2,68.0,0.0,1,221,390.0,0.0,0.0,86,78,949.2145659329414,0.0,665.0282119151038,1385.0,131.6309764126695,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,115711,2,1,0,1,2,936.0,90.0,450.0,41,0.0,2.0,3.0,2.0,1.5,2,2,3125.25009157924,390.0,22122.04186267537,5,5,3,4,45.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06260724071482715,14748.027908450247,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +15695,2,63.0,0.0,5,111,212.0,75.0,0.0,0,75,0.0,0.0,361.502515194877,287.0,0.0,142.38780359548417,33,2,1,2,1,1,2,2,2,0,,2,,3,115712,2,2,0,1,2,,0.0,550.0,11,0.0,0.0,2.0,1.0,1.0,1,1,451.426788883097,212.0,40616.327452201374,0,5,2,3,47.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007066123847306259,40616.327452201374,9,5,9,9_0,9_3,9_0_0 +15696,2,94.0,0.0,7,111,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,115713,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1055.70551263121,600.0,40627.63044963234,0,5,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014768274530404706,40627.63044963234,9,5,9,9_0,9_4,9_0_0 +15697,2,83.0,0.0,2,111,330.0,1450.0,0.0,77,78,0.0,0.0,562.7161793127802,1780.0,0.0,2752.830869512694,70,0,0,0,0,0,0,0,0,0,,1,,2,115714,2,1,1,0,1,,270.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,220.743259223228,330.0,32737.359336650865,5,5,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054372131291823965,21824.90622443391,6,3,6,6_1,6_2,6_0_1 +15698,2,51.0,0.0,6,111,0.0,0.0,1280.0,77,55,0.0,0.0,806.807411730872,1280.0,0.0,1531.8171488827913,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,115715,2,1,1,0,1,,230.0,,42,1.0,0.0,5.0,5.0,3.0,5,5,1057.26776041005,0.0,73533.26970598653,5,1,1,2,95.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01740708668495115,24511.08990199551,7,4,7,7_1,7_2,7_0_0 +15699,2,28.0,0.0,7,111,290.0,1010.0,0.0,54,52,0.0,0.0,494.50815757789775,1300.0,0.0,1917.4890884191868,43,0,0,0,0,0,0,0,0,2,15.0,2,,5,115716,1,2,0,0,1,,0.0,590.0,43,2.0,0.0,3.0,3.0,1.8,2,2,454.420583635732,290.0,39058.13515893283,4,1,2,3,75.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03328371912048858,21698.963977184907,6,3,6,6_0,6_3,6_0_0 +15700,1,22.0,413.0,7,111,160.0,,,81,63,0.0,0.0,,265.0,145.4868686666347,,50,0,0,0,0,0,0,0,0,0,,2,,5,115717,2,1,0,0,2,,480.0,530.0,43,2.0,0.0,3.0,4.0,2.1,2,2,120.18031308729012,160.0,15714.525691699604,4,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016863378838088174,7483.107472237906,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15701,2,69.0,0.0,1,111,760.0,0.0,0.0,75,75,2511.199868318148,0.0,1295.9524129627664,3261.0,166.2707070475825,0.0,71,2,2,1,1,2,2,2,2,0,,1,,1,115718,1,2,3,0,2,,237.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1567.51050404531,760.0,37819.18480385358,5,5,0,1,160.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0862260785607341,25212.789869235723,7,4,7,7_1,7_3,7_1_0 +15702,2,87.0,0.0,1,112,400.0,829.0,0.0,77,71,0.0,0.0,682.0802173488245,1229.0,0.0,1573.859855742085,70,0,0,0,0,0,0,0,0,0,,1,,1,115719,2,1,4,0,1,,412.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1175.65023569523,400.0,21460.555674817104,5,5,0,1,100.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05726785543778675,14307.037116544736,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +15703,2,39.0,0.0,9,400,1070.0,0.0,0.0,55,21,0.0,0.0,1824.5645814081054,1105.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,115720,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,793.839120760346,1070.0,54867.30767824767,1,1,1,2,145.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020139497393966005,26127.289370594128,7,4,7,7_1,7_0,7_0_0 +15704,1,49.0,435.0,7,400,458.0,,,0,52,0.0,0.0,,571.0,156.57158246980686,,71,0,0,0,0,0,0,0,0,1,8.0,1,,5,115721,2,2,0,0,2,,654.0,549.0,32,1.0,0.0,4.0,2.0,1.3,1,1,43.84409040200275,458.0,26322.354178930644,0,1,2,3,78.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02169258859289451,20247.96475302357,5,3,5,5_1,5_1,5_0_0 +15705,2,30.0,0.0,2,111,0.0,0.0,0.0,52,43,0.0,0.0,0.0,1187.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,2,,2,115722,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,873.674472701107,0.0,61411.587619347876,1,1,1,2,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019328599797117648,29243.613152070415,8,4,8,8_0,8_4,8_0_1 +15706,2,73.0,0.0,2,111,2230.0,0.0,0.0,77,74,0.0,0.0,3802.5972117196966,2230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115723,2,1,2,0,1,,440.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1168.6066390824,2230.0,57570.64881161366,6,5,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038735015950526246,38380.432541075774,9,5,9,9_1,9_3,9_0_1 +15707,1,49.0,253.0,2,111,360.0,,,0,52,0.0,0.0,,426.0,91.44888887617039,,44,0,0,0,0,0,0,0,0,0,,2,,2,115724,1,2,0,0,2,,120.0,378.0,22,1.0,0.0,3.0,2.0,1.5,2,2,146.85843546993544,360.0,16581.466005570062,0,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025691335124222288,11054.310670380042,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15708,1,30.0,361.0,2,111,120.0,310.0,0.0,0,55,0.0,0.0,204.62406520464734,430.0,0.0,588.5362548613346,71,2,2,2,2,1,2,1,2,0,,2,,2,115725,2,3,0,1,1,450.0,0.0,339.0,32,1.0,0.0,4.0,2.0,1.3,1,1,328.822049556529,120.0,15247.643354161213,0,4,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.028201079341395357,11728.956426277857,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +15709,1,40.0,360.0,2,111,250.0,71.0,0.0,0,21,0.0,0.0,426.3001358430153,321.0,0.0,134.79378740372502,43,2,2,1,2,1,2,2,2,2,10.0,2,,2,115726,2,1,0,1,1,,343.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,369.142992749159,250.0,12985.0,0,1,1,2,67.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.024720831728917984,7213.888888888889,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15710,2,44.0,0.0,8,112,1353.0,0.0,0.0,46,67,0.0,0.0,2307.136335182399,1353.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,115727,2,1,1,0,1,,487.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,787.44886037442,1353.0,60789.536386283304,1,1,1,2,88.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02225711989975456,26430.233211427527,7,4,7,7_1,7_0,7_0_0 +15711,2,79.0,0.0,2,112,350.0,1204.0,0.0,78,77,0.0,0.0,596.8201901802214,1554.0,0.0,2285.798873719506,71,0,0,0,0,0,0,0,0,0,,1,,2,115728,2,1,2,0,1,,420.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1625.01470960927,350.0,37422.58401827892,5,5,0,1,100.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04152572679751229,24948.389345519277,7,4,7,7_1,7_0,7_0_1 +15712,1,83.0,210.0,1,111,900.0,0.0,0.0,0,77,0.0,99.3245457757668,1534.680489034855,1035.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115729,2,2,3,0,1,,200.0,559.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1082.85017502441,900.0,9832.249564884685,0,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.10526583903000622,9832.249564884685,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +15713,1,46.0,42.0,2,111,260.0,260.0,0.0,85,64,0.0,0.0,443.3521412767359,520.0,0.0,493.61105246434516,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,115730,2,1,0,1,1,740.0,340.0,287.0,42,1.0,1.0,4.0,5.0,2.4,2,2,311.377203667975,260.0,31568.802588926927,6,1,2,3,83.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01647195830552012,13153.66774538622,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +15714,2,27.0,0.0,1,111,0.0,0.0,800.0,55,22,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,115731,2,1,2,0,1,,270.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,406.885342455711,0.0,54216.65026221473,1,1,1,2,98.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014755614670601384,25817.452505816538,7,4,7,7_1,7_3,7_1_0 +15715,2,35.0,0.0,9,111,1420.0,0.0,0.0,54,47,0.0,0.0,2421.3847715883267,1420.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,2006.0,6,115732,2,1,0,0,1,,0.0,1021.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,1454.458281817,1420.0,56052.6181670394,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025333339394929495,21558.699295015158,6,3,6,6_0,6_4,6_0_0 +15716,2,35.0,0.0,8,120,1600.0,0.0,0.0,56,63,0.0,0.0,2728.320869395298,1675.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,115733,2,1,3,0,1,,720.0,550.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1972.02260029958,1600.0,43529.567731493036,1,1,2,3,85.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038479591856552274,18137.3198881221,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +15717,2,59.0,0.0,2,221,656.0,0.0,0.0,22,21,2234.8729613465584,0.0,1118.6115564520721,2825.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,115734,2,3,1,0,1,,343.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1233.16118119439,656.0,29105.6380778264,1,1,0,1,144.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09706023253797604,19403.758718550933,5,3,5,5_1,5_1,5_0_1 +15718,0,45.0,0.0,1,111,460.0,140.0,0.0,56,63,0.0,0.0,784.3922499511482,600.0,0.0,265.7905667115705,50,0,0,0,0,0,0,0,0,3,1.0,2,,1,115735,2,3,0,0,1,,0.0,,43,2.0,1.0,1.0,3.0,1.8,2,2,761.774861081225,460.0,38459.452393571875,1,1,5,0,20.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015600846155060808,21366.362440873265,6,3,6,6_0,6_4,6_1_0 +15719,2,65.0,0.0,1,111,316.0,0.0,0.0,0,78,0.0,0.0,538.8433717055714,416.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115736,1,3,4,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,918.708711386982,316.0,10033.209833586141,0,5,0,1,60.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04146230437715368,10033.209833586141,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +15720,2,49.0,0.0,2,111,0.0,0.0,702.0,0,52,0.0,0.0,442.4834398711501,702.0,0.0,840.105967590406,71,2,1,2,2,2,1,2,2,3,45.0,2,,2,115737,1,1,0,1,1,,0.0,780.0,22,2.0,1.0,4.0,6.0,2.8999999999999995,3,3,236.766495859907,0.0,29090.85403063542,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024131295673228696,10031.32897608118,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +15721,2,71.0,0.0,6,120,1280.0,0.0,0.0,74,74,0.0,0.0,2182.6566955162384,1280.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,115738,2,1,2,0,1,,145.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,583.318684067291,1280.0,62615.7122745466,5,5,0,1,105.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020442153470804202,41743.80818303106,9,5,9,9_1,9_0,9_0_0 +15722,2,58.0,0.0,1,111,360.0,52.0,0.0,0,56,0.0,0.0,613.872195613942,412.0,0.0,98.72221049286902,60,2,2,1,2,1,2,2,2,0,,2,,1,115739,1,3,0,1,1,1236.0,0.0,290.0,12,1.0,2.0,3.0,1.0,1.0,1,1,264.861533194612,360.0,14693.945380757314,0,4,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.028038759456635864,14693.945380757314,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +15723,1,47.0,200.0,9,211,90.0,,,0,56,0.0,0.0,,140.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,2,5.0,2,2010.0,6,115740,2,1,0,0,2,,90.0,289.0,22,2.0,0.0,3.0,2.0,1.5,2,2,84.29219833632463,90.0,23095.994413407825,0,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.006061657164184555,15397.32960893855,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +15724,2,50.0,0.0,8,111,213.0,690.0,0.0,0,47,0.0,0.0,363.207715738249,903.0,0.0,1309.9677930784544,50,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,115741,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,565.688422612894,213.0,38720.708480038506,0,1,1,2,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02332085427789936,38720.708480038506,9,5,9,9_0,9_4,9_0_0 +15725,2,38.0,0.0,7,111,1000.0,0.0,0.0,37,67,0.0,264.8654554020448,1705.2005433720612,1200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,,5,115742,2,2,3,0,1,,350.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1343.42184778383,1000.0,38523.38904329533,4,1,1,2,94.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031149907362806387,25682.259362196884,7,4,7,7_1,7_2,7_0_0 +15726,2,70.0,0.0,7,211,211.0,,,0,77,0.0,0.0,,343.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,115743,2,1,0,0,2,,572.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,130.2435757703979,211.0,25796.413572346526,0,5,0,1,105.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01329642196338844,25796.413572346526,7,4,7,7_1,7_2,7_0_0 +15727,2,79.0,0.0,1,300,784.0,0.0,0.0,78,75,3269.516838213465,529.7309108040896,1336.877226003696,4464.0,249.40606057137379,0.0,44,2,2,1,2,1,2,2,1,0,,1,,1,115744,2,2,2,0,1,,310.0,,41,2.0,0.0,7.0,4.0,2.5,4,4,1327.56077642002,784.0,41863.05462588332,5,5,0,1,170.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.10663340360356727,16745.22185035333,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +15728,2,33.0,0.0,2,111,560.0,200.0,0.0,63,56,0.0,0.0,954.9123042883542,760.0,0.0,379.7008095879578,44,0,0,0,0,0,0,0,0,2,10.0,2,,2,115745,2,1,0,1,1,981.0,300.0,256.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1446.99486334778,560.0,35344.22226110238,1,1,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021502807287300474,19635.67903394577,5,3,5,5_0,5_3,5_0_1 +15729,2,54.0,0.0,1,111,235.0,0.0,0.0,0,38,1371.087706347582,0.0,400.72212769243436,1595.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,115746,2,1,1,0,1,,250.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,689.667501133931,235.0,42324.22694093056,0,1,1,2,100.0,7,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03768527189465381,42324.22694093056,9,5,9,9_1,9_2,9_1_0 +15730,2,36.0,0.0,8,111,300.0,750.0,0.0,0,38,0.0,0.0,511.56016301161833,1050.0,0.0,1423.8780359548418,31,0,0,0,0,0,0,0,0,2,90.0,1,2001.0,6,115747,2,1,1,0,1,,270.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,697.955531779535,300.0,30269.32000797372,0,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034688588964780276,20179.54667198248,5,3,5,5_1,5_4,5_0_0 +15731,2,93.0,0.0,2,111,240.0,,,0,78,0.0,0.0,,374.0,185.6689562031338,,71,0,0,0,0,0,0,0,0,0,,1,,2,115748,2,2,0,0,2,,220.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,114.21997230727217,240.0,9707.050149415822,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03852869762113134,9707.050149415822,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +15732,2,73.0,0.0,1,111,240.0,192.0,0.0,0,77,0.0,0.0,409.2481304092947,432.0,0.0,364.5127772044395,71,0,0,0,0,0,0,0,0,0,,2,,1,115749,2,2,0,1,1,,0.0,400.0,11,0.0,2.0,4.0,1.0,1.0,1,1,850.567607273499,240.0,20066.174274459336,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021528767471628064,20066.174274459336,5,3,5,5_0,5_4,5_1_0 +15733,2,57.0,0.0,5,111,454.0,0.0,0.0,0,43,0.0,0.0,774.1610466909158,454.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,45.0,2,,3,115750,2,1,0,0,1,408.0,280.0,536.0,12,1.0,3.0,4.0,1.0,1.0,1,1,2367.78947416067,454.0,27776.096528202394,0,1,2,3,93.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016344989280226332,27776.096528202394,7,4,7,7_0,7_3,7_0_0 +15734,1,66.0,61.0,2,111,530.0,370.0,0.0,0,75,0.0,0.0,903.7562879871924,900.0,0.0,702.446497737722,60,0,0,0,0,0,0,0,0,0,,2,,2,115751,1,2,0,1,1,545.0,0.0,385.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1347.49069574071,530.0,18439.88742733978,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04880723939049762,18439.88742733978,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +15735,2,60.0,0.0,2,112,1510.0,0.0,0.0,77,74,0.0,0.0,2574.8528204918125,1510.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,115752,2,2,1,0,1,,410.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1726.66173814136,1510.0,68390.79876538033,5,5,0,1,110.0,6,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022078993479520047,45593.865843586886,10,5,10,10_1,10_1,10_0_1 +15736,1,58.0,263.0,6,111,400.0,0.0,0.0,0,77,0.0,0.0,682.0802173488245,400.0,0.0,0.0,41,2,2,2,2,1,1,2,2,0,,2,,4,115753,1,2,0,0,1,,0.0,345.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2970.67595087101,400.0,5331.252747560277,0,6,2,3,29.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07502926965581412,5331.252747560277,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +15737,2,52.0,0.0,7,111,300.0,,,0,55,0.0,0.0,,342.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,115754,1,2,0,0,2,,356.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,100.74289125111984,300.0,15365.647232642805,0,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02225744186508816,11819.728640494464,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +15738,2,74.0,0.0,2,111,246.0,108.0,0.0,75,72,0.0,0.0,419.479333669527,354.0,0.0,205.0384371774972,60,0,0,0,0,0,0,0,0,0,,2,,2,115755,2,1,0,1,1,480.0,0.0,292.0,41,0.0,3.0,2.0,2.0,1.5,2,2,287.295192838128,246.0,22433.264104792757,5,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015780137850040718,14955.509403195172,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +15739,2,40.0,0.0,2,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,379.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,2,115756,1,3,0,1,2,775.0,0.0,1600.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1282.65498683527,0.0,68069.398041914,6,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005567847092854109,32413.999067578094,8,4,8,8_0,8_4,8_0_1 +15740,2,61.0,0.0,1,120,0.0,0.0,0.0,77,77,0.0,397.2981831030672,0.0,1417.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115757,2,1,4,0,1,,116.0,420.0,41,0.0,2.0,5.0,2.0,1.5,2,2,657.803609120704,0.0,46516.91723167524,5,5,2,3,90.0,0,2,4,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0304620358426312,31011.27815445016,8,4,8,8_1,8_1,8_1_0 +15741,2,34.0,0.0,2,111,610.0,0.0,0.0,54,46,0.0,0.0,1040.1723314569574,610.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,5.0,1,,2,115758,2,3,3,1,1,,280.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,147.834617220313,610.0,62745.926771270955,1,1,1,2,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,0,0.009721746595976593,41830.61784751397,9,5,9,9_1,9_4,9_0_1 +15742,2,64.0,0.0,2,211,0.0,0.0,400.0,72,78,0.0,397.2981831030672,252.12731616589753,700.0,0.0,478.69285902587234,71,0,0,0,0,0,0,0,0,0,,1,,2,115759,2,1,2,0,1,,420.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1589.78443076157,0.0,23152.78262919635,5,5,0,1,90.0,2,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030233946874155815,15435.188419464233,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +15743,2,46.0,0.0,8,111,850.0,0.0,0.0,64,43,0.0,1059.4618216081792,1449.420461866252,2050.0,554.2356901586083,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,115760,2,1,1,0,1,,450.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,835.835700689896,850.0,53871.08528475161,1,1,1,2,117.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038053809184725285,25652.89775464362,7,4,7,7_1,7_2,7_0_0 +15744,2,53.0,0.0,9,211,0.0,,,0,62,0.0,198.6490915515336,,150.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,115761,2,2,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,100.86414807063412,0.0,91102.2253748116,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016465020407884872,91102.2253748116,10,5,10,10_1,10_2,10_0_0 +15745,2,69.0,0.0,9,300,1500.0,,,48,75,0.0,0.0,,1588.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,115762,2,2,0,0,1,,540.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,101.66541316716304,1500.0,27292.435243867643,4,5,1,2,90.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05818462096953436,18194.956829245097,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +15746,2,56.0,0.0,2,300,400.0,500.0,0.0,0,68,0.0,0.0,682.0802173488245,900.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,115763,2,1,0,0,1,,480.0,450.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1934.33451079312,400.0,18732.28323084081,0,1,2,3,54.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04804539782519629,18732.28323084081,5,3,5,5_0,5_0,5_0_1 +15747,2,60.0,0.0,6,111,1200.0,0.0,0.0,43,38,0.0,397.2981831030672,2046.2406520464733,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,4,115764,1,1,2,0,1,,440.0,,43,3.0,3.0,7.0,3.0,2.0,3,3,1390.37529593579,1200.0,65824.07095992702,1,1,1,2,120.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02278801627011468,32912.03547996351,8,4,8,8_1,8_2,8_0_0 +15748,2,47.0,0.0,2,111,924.0,204.0,0.0,52,48,0.0,630.3797838568665,1575.6053020757845,1604.0,0.0,387.294825779717,50,2,1,2,2,1,2,2,2,2,2.0,2,,2,115765,2,1,0,1,1,756.0,720.0,362.0,43,2.0,1.0,4.0,3.0,2.0,3,3,285.014110100415,924.0,27836.086015568137,1,1,2,3,82.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05762304366723528,13918.043007784068,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +15749,2,71.0,0.0,2,400,1700.0,0.0,0.0,78,78,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115766,2,2,4,0,1,,110.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1250.604329284,1700.0,28865.887820040112,5,5,0,1,82.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05889304394856606,19243.925213360075,5,3,5,5_1,5_0,5_0_1 +15750,1,88.0,244.0,2,111,260.0,730.0,0.0,0,86,0.0,0.0,443.3521412767359,990.0,0.0,1385.9079549960459,71,0,0,0,0,0,0,0,0,0,,2,,2,115767,2,1,0,0,1,,0.0,268.0,11,0.0,4.0,3.0,1.0,1.0,1,1,202.743978220866,260.0,9780.125437860306,0,6,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10122569554860351,9780.125437860306,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15751,2,42.0,0.0,5,111,480.0,2892.0,0.0,63,54,0.0,0.0,818.4962608185893,3372.0,0.0,5490.47370664187,41,1,2,2,2,1,2,2,2,3,60.0,1,,3,115768,2,2,2,0,1,,720.0,800.0,43,2.0,0.0,3.0,4.0,2.5,4,2,603.36233412435,480.0,41835.40639132226,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.08060158346398756,16734.162556528907,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +15752,2,53.0,0.0,1,112,786.0,0.0,0.0,67,67,0.0,397.2981831030672,1340.28762709044,1306.0,304.8296295872346,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115769,2,1,2,0,1,,515.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,1276.08748244926,786.0,67150.69939728029,1,1,0,1,90.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01944879221991983,26860.279758912115,7,4,7,7_1,7_0,7_1_0 +15753,1,63.0,295.0,2,111,350.0,400.0,0.0,78,78,0.0,0.0,596.8201901802214,750.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,115770,2,1,0,1,1,900.0,360.0,308.0,41,1.0,4.0,5.0,3.0,2.0,3,3,288.207791759794,350.0,16605.572376795684,6,5,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04516556147429377,8302.786188397842,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15754,1,72.0,450.0,2,111,300.0,,,0,72,0.0,0.0,,454.0,213.38074071106422,,71,0,0,0,0,0,0,0,0,0,,8,,2,115771,2,2,0,0,2,,500.0,500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,145.84490910468296,300.0,9218.718411024478,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049247626379071374,9218.718411024478,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15755,1,44.0,318.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,265.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,115772,2,3,0,1,1,840.0,272.0,279.0,31,0.0,1.0,3.0,3.0,1.6,1,1,780.47853352415,0.0,20452.03177525153,0,6,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.012957147872255392,12782.519859532205,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +15756,2,45.0,0.0,5,111,300.0,400.0,0.0,0,56,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,3,90.0,2,,3,115773,2,2,0,1,1,1000.0,0.0,500.0,32,1.0,2.0,4.0,2.0,1.5,2,2,441.386428398598,300.0,19300.000967871936,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03626942823294499,12866.667311914623,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +15757,2,36.0,0.0,2,112,346.0,10.0,0.0,0,52,0.0,0.0,589.9993880067332,386.0,41.567676761895626,18.985040479397888,71,2,2,2,2,1,2,2,2,2,2.0,2,,2,115774,1,2,0,1,2,780.0,74.0,271.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1576.29280030885,346.0,17198.81235678115,0,1,2,3,54.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.022443410160691003,17198.81235678115,4,2,4_0,4_0_0,4_0_0,4_0_1_0 +15758,2,35.0,0.0,7,112,1700.0,0.0,0.0,68,54,0.0,0.0,2898.840923732504,1770.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,115775,1,2,1,0,1,,560.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,978.117423659467,1700.0,43166.63911564087,1,1,0,1,95.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04100388717449776,23981.46617535604,6,3,6,6_1,6_1,6_0_0 +15759,2,44.0,0.0,6,111,400.0,0.0,0.0,0,46,0.0,0.0,682.0802173488245,400.0,0.0,0.0,42,1,1,2,1,1,2,2,2,2,15.0,2,,4,115776,2,1,0,2,1,570.0,0.0,497.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1343.46691395431,400.0,32570.0,0,1,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012281240405280933,25053.846153846152,7,4,7,7_0,7_4,7_0_0 +15760,2,65.0,0.0,2,400,2384.0,0.0,0.0,78,74,0.0,0.0,4065.1980953989937,2418.0,47.110033663481715,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,115777,2,2,3,0,1,,234.0,,41,0.0,2.0,5.0,4.0,2.5,4,4,1169.95476814107,2384.0,50967.0,5,5,0,1,156.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047442462770027664,20386.8,5,3,5,5_1,5_0,5_0_1 +15761,1,29.0,120.0,2,111,0.0,0.0,0.0,56,69,0.0,0.0,0.0,1520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,115778,2,1,0,0,1,,690.0,700.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1496.31212519209,0.0,20857.510103840097,1,1,2,3,125.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07287542915873507,9932.147668495283,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +15762,2,60.0,0.0,5,111,570.0,1100.0,0.0,56,42,0.0,0.0,971.9643097220749,1670.0,0.0,2088.354452733768,20,0,0,0,0,0,0,0,0,2,40.0,1,,3,115779,1,3,2,0,2,,620.0,910.0,43,2.0,3.0,5.0,3.0,2.0,3,2,834.348659255136,570.0,25701.779285255005,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06497604626766333,12850.889642627502,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +15763,2,32.0,0.0,2,111,289.0,78.0,0.0,63,43,0.0,0.0,492.80295703452566,367.0,0.0,148.08331573930354,33,0,0,0,0,0,0,0,0,1,10.0,2,,2,115780,2,2,0,1,1,660.0,300.0,321.0,43,2.0,0.0,3.0,3.0,1.8,2,2,310.63121139479,289.0,44540.4763109263,1,1,2,3,85.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00823969634806017,24744.709061625723,7,4,7,7_0,7_2,7_0_1 +15764,2,34.0,0.0,5,111,480.0,0.0,0.0,37,37,0.0,0.0,818.4962608185893,480.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,35.0,2,,3,115781,2,1,0,1,2,120.0,0.0,1025.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1120.7815683178,480.0,85540.96786348196,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005611346375762898,57027.31190898797,10,5,10,10_0,10_4,10_0_0 +15765,2,59.0,0.0,2,111,720.0,0.0,0.0,67,62,0.0,0.0,1227.744391227884,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115782,2,1,0,1,1,1020.0,0.0,500.0,42,3.0,1.0,5.0,6.0,3.5,5,5,303.979169949066,720.0,40572.34197482517,6,1,2,3,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017746079347520892,11592.097707092906,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +15766,2,58.0,0.0,1,112,390.0,0.0,0.0,0,69,0.0,198.6490915515336,665.0282119151038,610.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115783,2,2,4,0,1,,112.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1463.49888448667,390.0,7560.528147193583,0,4,0,1,120.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08068219417004986,7560.528147193583,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +15767,2,67.0,0.0,1,111,899.0,0.0,0.0,56,78,0.0,0.0,1532.975288491483,899.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,115784,2,2,0,0,1,,0.0,530.0,42,1.0,2.0,2.0,2.0,1.5,2,2,1141.32027478783,899.0,28818.827754672664,1,5,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.031194884387836935,19212.55183644844,5,3,5,5_0,5_4,5_1_0 +15768,0,40.0,0.0,8,400,720.0,,,0,85,0.0,0.0,,1020.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,115785,2,2,0,0,1,,600.0,,31,0.0,1.0,4.0,8.0,3.499999999999999,3,1,5.5111023518125295,720.0,37638.944677863445,0,6,0,1,69.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027099590828854762,10753.984193675273,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +15769,2,48.0,0.0,7,111,1105.0,552.0,0.0,85,47,0.0,0.0,1884.2466004261275,1657.0,0.0,1047.9742344627634,44,0,0,0,0,0,0,0,0,2,20.0,1,,5,115786,2,1,2,0,1,,715.0,,42,3.0,2.0,10.0,5.0,3.0,5,4,1247.73189102237,1105.0,80499.90243678108,6,1,0,1,197.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02058387587862346,26833.30081226036,7,4,7,7_1,7_3,7_0_0 +15770,2,68.0,0.0,2,400,300.0,0.0,0.0,71,71,3164.0485531098047,0.0,511.56016301161833,3420.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115787,2,1,4,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1366.21900710245,300.0,22882.03580568966,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14946222569713885,15254.690537126438,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +15771,1,59.0,270.0,1,111,0.0,0.0,140.0,0,78,0.0,0.0,88.24456065806413,140.0,0.0,167.54250065905532,60,2,2,2,2,1,2,2,2,0,,2,,1,115788,2,2,0,0,1,,0.0,261.0,11,0.0,0.0,1.0,1.0,1.0,1,1,560.360424466377,0.0,6190.180794718535,0,7,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.022616463822744574,6190.180794718535,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +15772,2,48.0,0.0,9,400,1400.0,0.0,0.0,34,34,0.0,397.2981831030672,2387.2807607208856,1740.0,55.423569015860835,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,115789,2,1,1,0,1,,210.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,237.039577689111,1400.0,71353.02204376129,1,1,1,2,136.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02438579264285185,39640.5678020896,9,5,9,9_1,9_0,9_0_0 +15773,1,52.0,176.0,2,111,600.0,0.0,0.0,81,46,0.0,264.8654554020448,1023.1203260232367,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,115790,2,2,0,1,1,192.0,0.0,301.0,43,2.0,1.0,2.0,2.0,1.5,2,2,219.627415201535,600.0,17149.163750382555,4,4,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04664950499304399,11432.77583358837,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +15774,1,54.0,170.0,8,111,600.0,0.0,0.0,0,52,0.0,476.7578197236806,1023.1203260232367,1060.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,115791,2,1,1,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1501.29714723231,600.0,16912.85834085824,0,1,1,2,100.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06267420790956678,16912.85834085824,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +15775,2,41.0,0.0,2,111,500.0,1800.0,0.0,37,37,0.0,0.0,852.6002716860306,2300.0,0.0,3417.30728629162,20,0,0,0,0,0,0,0,0,2,5.0,1,,2,115792,2,1,2,0,1,,250.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,482.483772810196,500.0,249812.17698492878,1,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00920691708370469,118958.17951663275,10,5,10,10_1,10_3,10_0_1 +15776,2,47.0,0.0,6,111,700.0,,,0,56,0.0,0.0,,840.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,4,115793,2,2,0,0,2,,350.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,115.29699735769546,700.0,5450.987024009696,0,4,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15410053194037943,5450.987024009696,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15777,1,44.0,348.0,2,211,350.0,412.0,0.0,0,85,0.0,132.4327277010224,596.8201901802214,862.0,0.0,782.1836677511931,50,1,2,2,1,2,2,2,2,0,,1,,2,115794,1,2,1,0,1,,182.0,277.0,31,0.0,0.0,4.0,3.0,2.0,3,2,1407.93138229528,350.0,11749.697790342165,0,7,2,3,90.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0.07336358903703323,5874.848895171082,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +15778,2,64.0,0.0,1,112,300.0,0.0,0.0,75,75,1265.6194212439218,397.2981831030672,511.56016301161833,1860.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,115795,1,1,2,0,1,,220.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,2140.436237121,300.0,47268.0,5,5,1,2,140.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03935008885503935,31512.0,8,4,8,8_1,8_0,8_1_0 +15779,2,59.0,0.0,1,400,2000.0,0.0,0.0,74,37,0.0,529.7309108040896,3410.4010867441225,2400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,115796,2,1,2,0,1,,100.0,,42,1.0,0.0,7.0,2.0,1.5,2,2,1197.6778838579,2000.0,77641.65059011253,5,1,0,1,225.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03091124392331806,51761.10039340836,10,5,10,10_1,10_0,10_1_0 +15780,2,54.0,0.0,7,111,0.0,,,85,68,0.0,0.0,,556.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,115797,2,1,0,0,2,,350.0,,42,1.0,0.0,4.0,3.0,2.0,3,2,98.61404838339162,0.0,21392.81238602039,6,1,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02599003768028792,10696.406193010194,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +15781,2,45.0,0.0,2,111,858.0,1134.0,0.0,52,48,0.0,0.0,1463.0620662132285,1992.0,0.0,2152.903590363721,50,0,0,0,0,0,0,0,0,0,,1,,2,115798,2,2,4,0,1,,330.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,506.481209620294,858.0,27226.6653120275,1,4,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07316356877241316,18151.110208018334,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +15782,2,62.0,0.0,5,300,365.0,0.0,0.0,0,68,0.0,0.0,622.3981983308023,749.0,532.0662625522641,0.0,70,2,2,2,1,1,2,2,2,0,,1,,3,115799,1,2,2,0,2,,137.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1785.18436191138,365.0,13480.718089930531,0,1,0,1,40.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.05556083845114068,13480.718089930531,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +15783,2,40.0,0.0,1,111,497.0,1900.0,0.0,34,43,0.0,39.72981831030672,847.4846700559144,2427.0,0.0,3607.1576910855993,33,1,2,2,1,2,2,2,2,2,20.0,1,,1,115800,2,2,1,0,1,,398.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,696.912996462936,497.0,113737.1320791224,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.021338677665194095,54160.539085296376,10,5,10,10_1,10_4,10_1_0 +15784,1,26.0,170.0,5,111,0.0,,,0,43,0.0,0.0,,1170.0,0.0,,31,0,0,0,0,0,0,0,0,3,70.0,2,,3,115801,2,1,0,0,2,,186.0,600.0,22,2.0,0.0,3.0,2.0,1.5,2,2,148.59956712321278,0.0,28515.908141762313,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041029729587552695,19010.605427841543,5,3,5,5_0,5_2,5_0_0 +15785,2,82.0,0.0,2,111,230.0,407.0,0.0,0,77,0.0,0.0,392.1961249755741,637.0,0.0,772.6911475114941,50,0,0,0,0,0,0,0,0,0,,2,,2,115802,2,1,0,0,1,,338.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1380.24151916965,230.0,18878.29911031165,0,6,0,1,62.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03374244661967771,18878.29911031165,5,3,5,5_0,5_3,5_0_1 +15786,2,72.0,0.0,1,120,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1948.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115803,2,3,3,0,1,,43.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,809.251197753866,0.0,12122.025206524599,0,5,0,1,90.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1606992203704957,12122.025206524599,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +15787,1,73.0,75.0,7,111,236.0,1000.0,0.0,0,72,0.0,0.0,402.42732823580644,1236.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,5,115804,2,2,0,0,1,,0.0,317.0,11,0.0,2.0,2.0,1.0,1.0,1,1,616.143182697207,236.0,12345.888887022818,0,5,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10011429807206522,12345.888887022818,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +15788,2,73.0,0.0,2,111,550.0,0.0,0.0,0,86,0.0,0.0,937.8602988546337,650.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,115805,2,3,0,0,1,,0.0,543.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2202.44721591413,550.0,21875.57981219104,0,5,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02971349813721333,21875.57981219104,6,3,6,6_0,6_3,6_0_1 +15789,2,63.0,0.0,6,112,1200.0,0.0,0.0,75,75,0.0,662.163638505112,2046.2406520464733,1700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,115806,2,1,2,0,1,,90.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1365.84473653814,1200.0,76532.26276772353,5,5,0,1,120.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022212854272446163,51021.508511815686,10,5,10,10_1,10_0,10_0_0 +15790,2,67.0,0.0,5,112,1228.0,0.0,0.0,86,78,0.0,0.0,2093.986267260891,1298.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,115807,1,1,2,0,2,,343.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,856.14556094045,1228.0,52559.83911611465,5,5,0,1,98.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024695661589307225,35039.89274407643,9,5,9,9_1,9_1,9_0_0 +15791,2,49.0,0.0,7,111,1144.0,,,22,85,0.0,0.0,,1229.0,117.77508415870429,,50,0,0,0,0,0,0,0,0,0,,1,,5,115808,2,2,0,0,2,,513.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,96.66834252624712,1144.0,8628.761697410855,1,7,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14243063409304416,5752.507798273903,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +15792,1,49.0,549.0,2,111,1490.0,1931.0,0.0,0,85,0.0,0.0,2540.748809624371,3421.0,0.0,3666.0113165717326,71,1,2,2,2,1,2,2,2,0,,1,,2,115809,1,2,5,0,1,,850.0,568.0,31,1.0,4.0,8.0,5.0,2.4,2,2,1016.52223258513,1490.0,18998.71048778927,0,6,2,3,200.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0.1800648524118899,7916.129369912196,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +15793,2,91.0,0.0,2,111,235.0,0.0,0.0,0,86,0.0,0.0,400.72212769243436,235.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,115810,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1409.74164664873,235.0,20949.870682115456,0,5,0,1,70.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011217253011524098,20949.870682115456,5,3,5,5_0,5_2,5_0_1 +15794,2,44.0,0.0,1,300,750.0,0.0,0.0,12,13,0.0,794.5963662061343,1278.9004075290459,1530.0,249.40606057137379,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,115811,2,1,2,0,1,,120.0,,43,2.0,0.0,7.0,4.0,2.3,3,3,1393.22655239431,750.0,6491.698153828128,1,1,0,1,360.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.23568563475148105,2822.477458186143,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +15795,1,50.0,314.0,6,111,535.0,0.0,0.0,0,54,0.0,0.0,912.2822907040527,535.0,0.0,0.0,50,2,2,2,1,1,2,2,2,1,8.0,2,,4,115812,1,3,0,1,1,1152.0,0.0,436.0,32,2.0,0.0,5.0,4.0,2.5,4,3,1541.40377121816,535.0,28894.85073547298,0,1,2,3,101.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.01851540971427145,11557.940294189193,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +15796,1,40.0,324.0,2,111,380.0,0.0,0.0,0,56,0.0,0.0,647.9762064813832,540.0,221.69427606344334,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,115813,2,3,0,1,1,456.0,0.0,301.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1694.85335766534,380.0,9392.399558270912,0,4,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.057493295153151575,7224.922737131471,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15797,2,30.0,0.0,1,111,1200.0,0.0,0.0,47,45,0.0,927.0290939071567,2046.2406520464733,1960.0,83.13535352379125,0.0,10,2,2,1,2,2,2,2,1,3,25.0,1,,1,115814,2,3,2,0,1,,410.0,700.0,43,2.0,0.0,4.0,3.0,1.8,2,2,350.567518845022,1200.0,38991.15104261528,1,1,2,3,90.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0502678158400049,21661.750579230713,6,3,6,6_1,6_2,6_1_0 +15798,2,67.0,0.0,5,112,1850.0,0.0,0.0,75,77,0.0,105.94618216081791,3154.621005238313,1930.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115815,2,1,3,0,1,,122.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1459.26881907519,1850.0,36037.46096048379,5,5,0,1,86.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05355538233163279,24024.97397365586,6,3,6,6_1,6_0,6_0_0 +15799,2,36.0,0.0,9,111,420.0,988.0,0.0,46,38,0.0,0.0,716.1842282162656,1408.0,0.0,1875.7219993645115,31,0,0,0,0,0,0,0,0,2,50.0,2,2010.0,6,115816,2,1,0,1,1,,462.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,824.714911331207,420.0,80899.60308760068,1,1,1,2,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017404288108501254,38523.62051790509,9,5,9,9_0,9_4,9_0_0 +15800,1,36.0,120.0,7,112,0.0,,,42,63,0.0,0.0,,997.0,0.0,,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,115817,1,2,0,0,2,,556.0,500.0,43,2.0,0.0,4.0,4.0,2.1,2,2,121.34160044597846,0.0,29703.04245119333,1,1,2,3,85.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033565585129477035,14144.30592913968,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +15801,2,52.0,0.0,5,111,480.0,270.0,0.0,0,52,0.0,0.0,818.4962608185893,750.0,0.0,512.596092943743,50,2,1,2,2,2,2,2,1,1,10.0,2,,3,115818,2,2,0,1,1,83.0,400.0,384.0,12,1.0,2.0,4.0,1.0,1.0,1,1,336.979009400837,480.0,19941.245322048006,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.037610489610233305,19941.245322048006,5,3,5,5_0,5_3,5_0_0 +15802,2,56.0,0.0,7,112,718.0,970.0,0.0,74,77,0.0,86.08127300566456,1224.33399014114,1753.0,0.0,1841.5489265015954,41,0,0,0,0,0,0,0,0,0,,1,,5,115819,2,2,3,0,1,,320.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,701.299644055976,718.0,67248.91696097195,5,5,0,1,120.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02606733430394659,44832.61130731463,10,5,10,10_1,10_1,10_0_0 +15803,2,31.0,0.0,5,111,1800.0,,,65,43,0.0,0.0,,1938.0,191.2113131047199,,43,0,0,0,0,0,0,0,0,0,,2,,3,115820,2,2,0,0,2,,3419.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,71.94351926978513,1800.0,64810.81732880763,1,1,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029902415674961443,28178.616229916362,8,4,8,8_0,8_2,8_0_0 +15804,2,33.0,0.0,5,212,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1856.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,115821,2,1,2,0,1,,477.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1276.64261945476,0.0,35415.241434411,1,1,1,2,93.0,3,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05240681482963516,19675.134130228333,5,3,5,5_1,5_0,5_0_0 +15805,2,42.0,0.0,1,112,1010.0,0.0,0.0,31,37,1582.0242765549024,397.2981831030672,1722.2525488057818,2870.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,115822,2,1,1,0,1,,756.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,849.107894923075,1010.0,131163.2424052974,1,1,1,2,217.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02188113031798676,54651.35100220726,10,5,10,10_1,10_0,10_1_0 +15806,2,90.0,0.0,2,112,354.0,0.0,0.0,0,72,3058.5802680061443,0.0,603.6409923537096,3314.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,115823,2,1,2,0,1,,231.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,962.591494633464,354.0,12313.420609288152,0,5,0,1,85.0,9,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2691372369348134,12313.420609288152,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +15807,1,91.0,242.0,2,111,573.0,,,0,78,0.0,0.0,,837.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,2,,2,115824,2,1,0,0,2,,0.0,500.0,21,2.0,2.0,4.0,4.0,2.3,3,3,85.42963231776488,573.0,25724.0,0,5,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03253770797698647,11184.347826086958,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15808,2,51.0,0.0,2,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,948.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,12.0,2,,2,115825,2,1,0,0,1,,0.0,950.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1896.3636439911,0.0,55694.13153845319,1,1,3,4,62.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017021542015525772,37129.42102563546,9,5,9,9_0,9_3,9_0_1 +15809,2,50.0,0.0,7,111,600.0,,,52,55,0.0,0.0,,700.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,115826,2,1,0,0,2,,1000.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,106.22035706335261,600.0,55932.97000310021,1,1,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0125149799833837,27966.485001550103,7,4,7,7_1,7_2,7_0_0 +15810,2,79.0,0.0,2,111,365.0,215.0,0.0,0,75,0.0,0.0,622.3981983308023,580.0,0.0,408.17837030705465,60,0,0,0,0,0,0,0,0,0,,2,,2,115827,2,1,0,1,2,,125.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,2268.8525655533,365.0,18208.1784386984,0,5,0,1,97.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03185381788478677,18208.1784386984,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +15811,2,84.0,0.0,2,112,650.0,1794.0,0.0,0,71,0.0,0.0,1108.3803531918397,2444.0,0.0,3405.9162620039815,71,0,0,0,0,0,0,0,0,0,,1,,2,115828,1,2,4,0,2,,500.0,,21,1.0,3.0,7.0,2.0,1.5,2,2,357.324114288102,650.0,25756.38481210958,0,5,0,1,150.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09488909324149145,17170.923208073054,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +15812,2,32.0,0.0,9,111,1158.0,,,47,43,0.0,0.0,,1179.0,29.09737373332694,,20,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,115829,2,1,0,0,2,,425.0,1190.0,43,2.0,0.0,4.0,3.0,1.8,2,2,155.02298658785563,1158.0,50123.4056600765,1,1,3,4,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023521945176584007,27846.336477820278,7,4,7,7_1,7_3,7_0_0 +15813,2,45.0,0.0,2,111,0.0,0.0,0.0,55,47,0.0,0.0,0.0,1851.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,115830,2,1,2,0,1,1305.0,0.0,700.0,43,2.0,0.0,6.0,6.0,3.0999999999999996,4,2,1319.8965799632,0.0,47176.83933966789,1,1,2,3,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039235354167603514,15218.33527086061,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +15814,2,64.0,0.0,9,111,0.0,,,78,77,0.0,0.0,,787.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,2012.0,6,115831,2,1,0,0,2,,364.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,143.08632100489532,0.0,39781.17455029274,5,5,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019783226837735708,26520.783033528493,7,4,7,7_1,7_2,7_0_0 +15816,2,83.0,0.0,2,111,290.0,1180.0,0.0,0,77,0.0,0.0,494.50815757789775,1470.0,0.0,2240.234776568951,44,0,0,0,0,0,0,0,0,0,,1,,2,115833,2,2,5,0,1,,218.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,212.138857660689,290.0,27991.66164085792,0,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05251563908068681,27991.66164085792,7,4,7,7_1,7_2,7_0_1 +15817,1,46.0,229.0,6,111,820.0,,,52,21,0.0,0.0,,1108.0,399.049696914198,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,115834,2,1,0,0,2,,0.0,750.0,43,2.0,2.0,5.0,5.0,2.8,4,3,98.40823861532668,820.0,31822.298556378544,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0348183522330102,11365.106627278052,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +15818,1,34.0,210.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1401.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,20.0,2,,4,115835,1,2,0,0,1,,0.0,620.0,32,1.0,0.0,5.0,4.0,2.1,2,1,853.911852096691,0.0,24978.988455054332,0,1,2,3,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.056087139097761064,11894.756407168728,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +15819,2,60.0,0.0,5,300,1255.0,0.0,0.0,77,78,0.0,0.0,2140.0266819319368,1255.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,115836,2,2,1,0,1,,115.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1641.71753942253,1255.0,44270.53836346142,5,5,0,1,170.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028348424175383673,29513.692242307614,8,4,8,8_1,8_1,8_0_0 +15820,1,53.0,234.0,2,111,320.0,0.0,0.0,0,85,0.0,0.0,545.6641738790596,320.0,0.0,0.0,60,2,1,2,1,1,1,2,2,0,,2,,2,115837,2,2,0,1,1,567.0,0.0,264.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1462.66097994247,320.0,8393.242737169836,0,7,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03812590795007825,8393.242737169836,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +15821,2,36.0,0.0,2,120,0.0,0.0,0.0,21,46,0.0,0.0,0.0,7225.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,115838,1,2,2,0,1,,737.0,,43,2.0,1.0,8.0,5.0,2.5999999999999996,3,3,579.124095153563,0.0,74751.12190568795,1,1,1,2,120.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09665406773580794,28750.431502187676,8,4,8,8_1,8_1,8_0_1 +15822,2,67.0,0.0,5,112,1685.0,0.0,0.0,77,78,0.0,0.0,2873.262915581923,1815.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,115839,1,1,4,0,1,,192.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,1722.34901134362,1685.0,48008.877610439755,5,5,0,1,120.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03780550786309821,24004.438805219877,6,3,6,6_1,6_2,6_0_0 +15823,1,48.0,261.0,2,111,270.0,125.0,0.0,0,53,0.0,0.0,460.40414671045653,395.0,0.0,237.31300599247362,50,2,1,2,2,1,2,2,2,0,,2,,2,115840,1,2,0,1,1,552.0,0.0,363.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1203.16844995061,270.0,11450.6,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03449600894276282,11450.6,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +15824,2,83.0,0.0,1,112,1220.0,0.0,0.0,86,86,2109.365702073203,595.9472746546007,2080.344662913915,3710.0,55.423569015860835,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,115841,2,1,2,0,1,,400.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,702.387619766359,1220.0,67625.70340002989,5,5,0,1,121.0,10,4,1,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054860797203898075,45083.802266686595,10,5,10,10_1,10_2,10_1_0 +15825,2,75.0,0.0,2,300,467.0,0.0,0.0,0,75,1982.803759948811,2118.9236432163584,796.3286537547526,4007.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115842,2,1,2,0,1,,222.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,762.320584950708,467.0,32113.064151543877,0,5,0,1,60.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12477787797173999,32113.064151543877,8,4,8,8_1,8_0,8_0_1 +15827,2,27.0,0.0,5,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,,3,115844,2,1,0,1,1,,0.0,303.0,12,1.0,0.0,1.0,1.0,1.0,1,1,846.97624507377,0.0,15039.58751463351,0,1,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026596474112790678,15039.58751463351,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +15828,2,61.0,0.0,2,111,917.0,0.0,0.0,77,34,0.0,0.0,1563.66889827218,2478.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,115845,2,1,3,0,2,,75.0,,42,1.0,4.0,7.0,2.0,1.5,2,2,1234.81079078636,917.0,50851.17015128112,6,1,0,1,300.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.048730442045443675,33900.78010085408,9,5,9,9_1,9_2,9_0_1 +15829,1,38.0,112.0,2,111,490.0,620.0,0.0,85,47,0.0,0.0,835.54826625231,1110.0,0.0,1177.072509722669,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,115846,2,2,0,0,1,,720.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,190.72125973355,490.0,27473.71784312544,6,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04040224939114848,11447.3824346356,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +15830,2,34.0,0.0,7,111,2454.0,0.0,0.0,31,38,0.0,0.0,4184.562133435038,2454.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,,5,115847,1,3,0,0,1,,0.0,950.0,43,2.0,0.0,4.0,3.0,1.8,2,2,437.75162761194,2454.0,75695.45861437693,1,1,2,3,120.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03241938215212701,42053.032563542736,9,5,9,9_0,9_2,9_0_0 +15831,2,38.0,0.0,8,112,1185.0,0.0,0.0,45,47,0.0,218.51400070668694,2020.6626438958924,1458.0,149.64363634282427,0.0,42,2,2,2,2,1,2,2,2,0,,1,2002.0,6,115848,2,1,1,0,1,,215.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,840.066857612377,1185.0,44666.08456464251,1,1,1,2,120.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.032642216442543226,21269.564078401192,6,3,6,6_1,6_0,6_0_0 +15832,0,63.0,0.0,2,300,430.0,0.0,0.0,0,78,1582.0242765549024,0.0,733.2362336499863,1980.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115849,2,1,1,0,1,,150.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,1213.78187972801,430.0,21921.13423773853,0,5,5,0,60.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09032379340076814,21921.13423773853,6,3,6,6_1,6_0,6_0_1 +15833,2,72.0,0.0,6,112,657.0,0.0,0.0,0,74,0.0,0.0,1120.3167569954442,657.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,115850,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1098.20774506828,657.0,27376.0,0,5,0,1,61.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023999123319696083,27376.0,7,4,7,7_0,7_2,7_0_0 +15834,1,28.0,357.0,7,111,700.0,,,0,55,0.0,0.0,,766.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,5,115851,2,2,0,0,2,,250.0,850.0,32,1.0,0.0,4.0,3.0,1.8,2,1,86.33210995134922,700.0,9478.166639273235,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08081731722525773,5265.648132929575,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +15835,2,51.0,0.0,2,111,700.0,1280.0,0.0,90,46,0.0,0.0,1193.6403803604428,1980.0,0.0,2430.0851813629297,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,115852,2,1,2,0,1,,740.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,897.837560791862,700.0,74085.36619312885,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026725925803463706,29634.14647725154,8,4,8,8_1,8_4,8_0_1 +15836,2,90.0,0.0,1,112,2235.0,0.0,0.0,0,72,0.0,0.0,3811.1232144365567,2308.0,101.14801345394604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115853,2,2,1,0,2,,270.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,706.569203117751,2235.0,34125.07588054274,0,5,0,1,55.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06763354924335754,34125.07588054274,9,5,9,9_1,9_2,9_1_0 +15837,2,65.0,0.0,1,111,540.0,1390.0,0.0,0,74,0.0,0.0,920.8082934209131,1930.0,0.0,2638.9206266363067,10,0,0,0,0,0,0,0,0,0,,1,,1,115854,2,1,2,0,1,,250.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1413.86009604607,540.0,40869.14860755173,0,5,0,1,145.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047223885638845386,40869.14860755173,9,5,9,9_1,9_3,9_1_0 +15838,2,50.0,0.0,2,111,552.0,0.0,0.0,54,47,0.0,905.8398574749931,941.2706999413778,1376.0,193.98249155551292,0.0,50,2,2,1,2,1,2,2,2,2,90.0,1,,2,115855,2,1,1,0,1,,588.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,339.354443047025,552.0,24695.362411032223,4,1,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.055718963629596135,16463.574940688148,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +15839,2,40.0,0.0,1,111,500.0,0.0,0.0,38,31,0.0,0.0,852.6002716860306,500.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,40.0,2,,1,115856,1,3,0,1,2,1220.0,0.0,1900.0,42,1.0,0.0,4.0,5.0,2.4,2,2,776.249654453874,500.0,162774.0341187705,1,7,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.003071743000699777,67822.51421615438,10,5,10,10_0,10_4,10_1_0 +15840,1,61.0,78.0,5,111,276.0,0.0,0.0,85,86,0.0,1255.4622586056923,470.6353499706889,1518.0,407.36323226657714,0.0,50,2,1,2,2,1,2,2,2,0,,2,,3,115857,1,1,0,1,1,,0.0,268.0,41,1.0,2.0,3.0,3.0,2.0,3,3,262.383065180145,276.0,21486.793145301483,6,7,2,3,90.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07064804830272875,10743.396572650741,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +15841,1,26.0,270.0,2,111,252.0,101.0,0.0,84,68,0.0,0.0,429.7105369297594,353.0,0.0,191.74890884191868,71,2,1,2,1,2,2,2,2,0,,2,,2,115858,1,2,0,1,1,500.0,170.0,260.0,42,1.0,0.0,3.0,3.0,1.8,2,2,343.667817990589,252.0,14346.121970297178,3,1,2,3,66.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.02460595279552664,7970.067761276209,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15842,2,72.0,0.0,1,111,2720.0,2325.0,0.0,78,31,0.0,0.0,4638.145477972006,5045.0,0.0,4414.0219114600095,60,0,0,0,0,0,0,0,0,0,,1,,1,115859,2,1,2,0,2,,703.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,504.99151758934,2720.0,33884.82760296899,5,5,0,1,130.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14888669522278924,22589.885068645992,6,3,6,6_1,6_3,6_1_0 +15843,2,77.0,0.0,2,211,700.0,0.0,0.0,78,78,843.7462808292812,0.0,1193.6403803604428,1704.0,282.6602019808903,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115860,2,1,2,0,2,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,810.211436002844,700.0,13719.870263105255,5,5,0,1,75.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12419942516383017,9146.580175403504,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +15844,2,27.0,0.0,2,111,200.0,200.0,0.0,42,65,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,41,2,1,2,2,1,2,2,2,0,,2,,2,115861,2,2,0,1,1,537.0,0.0,347.0,43,2.0,0.0,3.0,2.0,1.5,2,2,856.020195155445,200.0,47334.740130888706,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008450453068801711,31556.49342059247,8,4,8,8_0,8_4,8_0_1 +15845,2,78.0,0.0,2,111,210.0,150.0,0.0,0,77,0.0,0.0,358.0921141081328,360.0,0.0,284.77560719096834,71,1,1,2,1,1,2,2,2,0,,2,,2,115862,2,1,0,1,1,948.0,0.0,314.0,11,0.0,8.0,3.0,1.0,1.0,1,1,329.619803109174,210.0,22538.44294815873,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01597270942043537,22538.44294815873,6,3,6,6_0,6_3,6_0_1 +15846,2,58.0,0.0,1,112,754.0,2055.0,0.0,55,75,0.0,0.0,1285.7212097025342,2809.0,0.0,3901.425818516266,50,0,0,0,0,0,0,0,0,0,,1,,1,115863,2,1,2,0,1,,350.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,638.921445511485,754.0,45528.81675890629,1,5,0,1,128.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06169718872499596,30352.544505937523,8,4,8,8_1,8_0,8_1_0 +15847,1,54.0,250.0,2,111,750.0,,,0,81,0.0,0.0,,900.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,3,,2,115864,2,1,0,0,2,,300.0,400.0,32,1.0,2.0,3.0,2.0,1.5,2,1,49.77712309892568,750.0,5030.5607708738235,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.17890649591410607,3353.707180582549,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15848,2,71.0,0.0,2,112,2100.0,0.0,0.0,75,75,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,44,2,2,2,1,1,2,2,1,0,,1,,2,115865,1,1,2,0,1,,480.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,281.452815220775,2100.0,56376.59291586668,5,5,0,1,144.0,9,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03724950181246186,37584.39527724445,9,5,9,9_1,9_0,9_0_1 +15849,0,72.0,0.0,1,111,0.0,0.0,0.0,0,44,0.0,0.0,0.0,100.0,138.5589225396521,0.0,60,2,1,2,1,1,2,2,2,0,,8,,1,115866,1,2,0,1,2,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,485.985889305289,0.0,20314.02495307867,0,1,5,0,70.0,6,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.004922707352726994,20314.02495307867,5,3,5,5_0,5_2,5_1_0 +15850,2,43.0,0.0,1,111,480.0,250.0,0.0,0,46,0.0,0.0,818.4962608185893,730.0,0.0,474.62601198494724,50,2,2,2,1,1,2,2,2,1,20.0,2,,1,115867,2,2,0,0,1,,150.0,496.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1721.0780248702,480.0,21848.50234449495,0,1,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.03341190112208923,21848.50234449495,6,3,6,6_0,6_3,6_1_0 +15851,2,76.0,0.0,2,111,220.0,0.0,0.0,0,78,0.0,0.0,375.14411954185346,239.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,115868,2,1,0,1,1,780.0,0.0,329.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1104.33518609955,220.0,21459.065711362025,0,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011137483952689311,21459.065711362025,6,3,6,6_0,6_4,6_0_1 +15852,2,43.0,0.0,1,120,400.0,0.0,0.0,0,45,0.0,1324.327277010224,682.0802173488245,1460.0,83.13535352379125,0.0,10,2,2,2,2,1,2,2,2,3,30.0,1,,1,115869,2,1,4,0,1,,500.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,351.626370833829,400.0,25856.59310812846,0,1,1,2,40.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.05646528890695287,25856.59310812846,7,4,7,7_1,7_0,7_1_0 +15853,2,56.0,0.0,2,111,318.0,780.0,0.0,0,38,0.0,0.0,542.2537727923154,1098.0,0.0,1480.8331573930354,12,0,0,0,0,0,0,0,0,2,70.0,2,,2,115870,2,2,0,0,1,,233.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1342.6165765908,318.0,60883.05605062802,0,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01803457433357066,60883.05605062802,10,5,10,10_0,10_4,10_0_1 +15854,2,55.0,0.0,2,111,1200.0,0.0,0.0,0,35,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,115871,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1712.17136253157,1200.0,41592.13970594617,0,1,0,1,56.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02885160533898773,41592.13970594617,9,5,9,9_0,9_2,9_0_1 +15855,2,79.0,0.0,2,112,720.0,0.0,0.0,78,75,2109.365702073203,0.0,1227.744391227884,2900.0,249.40606057137379,0.0,71,2,2,2,2,2,2,2,1,0,,1,,2,115872,2,1,2,0,1,,250.0,,41,0.0,3.0,5.0,3.0,2.0,3,3,346.172929969889,720.0,38966.89041851209,5,5,0,1,85.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.07442215606258103,19483.445209256046,5,3,5,5_1,5_0,5_0_1 +15856,2,45.0,0.0,7,211,900.0,,,0,85,0.0,0.0,,900.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,5,115873,2,2,0,0,2,,450.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,106.09537709586489,900.0,14429.858163135592,0,7,0,1,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06237067543042509,14429.858163135592,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +15857,2,46.0,0.0,5,111,540.0,0.0,0.0,0,53,2636.7071275915036,0.0,920.8082934209131,3400.0,498.81212114274757,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,115874,1,2,2,0,1,,600.0,,22,2.0,0.0,7.0,2.0,1.5,2,2,854.670705225471,540.0,44664.44229978351,0,1,1,2,110.0,7,5,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07612319386368963,29776.29486652234,8,4,8,8_1,8_2,8_0_0 +15858,2,35.0,0.0,5,112,925.0,0.0,0.0,43,63,0.0,450.2712741834761,1577.3105026191565,1265.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,115875,2,1,1,0,1,,480.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1115.70856393417,925.0,51370.4996898506,1,1,1,2,88.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024625028131659954,24462.142709452666,7,4,7,7_1,7_1,7_0_0 +15859,1,46.0,157.0,2,111,80.0,90.0,0.0,0,68,0.0,0.0,136.4160434697649,170.0,0.0,170.865364314581,30,0,0,0,0,0,0,0,0,0,,2,,2,115876,2,1,0,1,1,,63.0,144.0,12,1.0,0.0,1.0,1.0,1.0,1,1,415.638100275598,80.0,12198.235204726341,0,4,2,3,27.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013936442210438082,12198.235204726341,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15860,2,68.0,0.0,5,111,388.0,0.0,0.0,77,78,0.0,0.0,661.6178108283598,455.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,115877,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,704.171910672978,388.0,41971.79458685963,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01084061342810559,27981.19639123975,7,4,7,7_0,7_4,7_0_0 +15861,2,65.0,0.0,6,112,800.0,,,0,67,0.0,0.0,,888.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,4,115878,1,1,0,0,2,,150.0,,32,3.0,1.0,4.0,3.0,2.0,3,2,73.06045595658577,800.0,17296.10537396359,0,4,0,1,90.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05134103781171086,8648.052686981795,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +15862,2,41.0,0.0,8,111,1500.0,,,0,46,0.0,0.0,,1500.0,0.0,,10,0,0,0,0,0,0,0,0,2,60.0,2,2000.0,6,115879,2,3,0,0,2,,60.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,99.8816542605927,1500.0,41891.81671102627,0,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03580651587270951,32224.47439309713,8,4,8,8_0,8_3,8_0_0 +15863,2,42.0,0.0,1,111,783.0,0.0,0.0,0,22,0.0,0.0,1335.172025460324,783.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,115880,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1200.04812975858,783.0,22258.071470903356,0,1,1,2,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03517824987773847,22258.071470903356,6,3,6,6_0,6_4,6_1_0 +15864,2,78.0,0.0,7,120,840.0,0.0,0.0,74,74,0.0,860.8127300566456,1432.3684564325313,1590.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,115881,2,1,1,0,1,,320.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1359.84040197705,840.0,81511.68236370375,5,5,0,1,110.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019506406368910986,54341.1215758025,10,5,10,10_1,10_1,10_0_0 +15865,2,36.0,0.0,1,111,222.0,186.0,0.0,85,67,0.0,0.0,378.5545206285976,408.0,0.0,353.12175291680074,71,2,2,1,2,1,2,2,2,3,2.0,2,,1,115882,2,2,0,1,1,34.0,124.0,201.0,42,1.0,1.0,2.0,2.0,1.5,2,2,223.844313070986,222.0,19002.719906680966,6,1,2,3,42.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.021470610628563522,12668.479937787311,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +15866,2,47.0,0.0,7,111,390.0,,,0,52,0.0,0.0,,550.0,221.69427606344334,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,115883,2,1,0,0,1,,348.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,120.13360647695443,390.0,39254.4930442144,0,1,0,1,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01401113496435952,26169.66202947627,7,4,7,7_1,7_2,7_0_0 +15867,1,47.0,43.0,2,111,450.0,0.0,0.0,56,48,0.0,0.0,767.3402445174275,450.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,115884,1,1,0,3,2,726.0,0.0,448.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,189.31798661371,450.0,37055.16709440185,1,2,2,3,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012144055344658917,13724.135960889575,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +15868,2,59.0,0.0,2,111,372.0,75.0,0.0,0,52,0.0,0.0,634.3346021344067,447.0,0.0,142.38780359548417,71,2,1,2,2,1,2,2,2,1,30.0,2,,2,115885,2,3,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,306.08592516541,372.0,27037.41684123115,0,1,1,2,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.016532644469139525,27037.41684123115,7,4,7,7_0,7_2,7_0_1 +15869,2,68.0,0.0,1,120,0.0,0.0,0.0,71,71,0.0,0.0,0.0,105.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115886,2,1,4,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1198.05355646149,0.0,28543.650531136293,5,5,0,1,174.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0036785764275477926,19029.10035409086,5,3,5,5_1,5_0,5_1_0 +15870,2,49.0,0.0,1,111,1450.0,1467.0,0.0,52,47,0.0,0.0,2472.540787889489,2917.0,0.0,2785.1054383276705,50,0,0,0,0,0,0,0,0,1,10.0,1,,1,115887,2,2,3,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,962.270682953515,1450.0,41870.44113495919,1,1,1,2,121.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06966728605981866,18204.5396238953,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +15871,1,48.0,109.0,2,111,450.0,105.0,0.0,0,56,0.0,0.0,767.3402445174275,555.0,0.0,199.34292503367786,71,0,0,0,0,0,0,0,0,0,,2,,2,115888,2,1,0,1,1,645.0,755.0,297.0,32,2.0,2.0,4.0,2.0,1.5,2,2,466.456990394392,450.0,23422.71396747959,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02369494844920915,15615.142644986394,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +15872,2,60.0,0.0,7,211,500.0,,,37,52,0.0,0.0,,500.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,115889,2,1,0,0,2,,300.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,126.78592264579395,500.0,84743.8831662699,1,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005900130856866517,56495.92211084659,10,5,10,10_1,10_2,10_0_0 +15873,2,54.0,0.0,2,111,1052.0,0.0,0.0,0,55,0.0,463.51454695357836,1793.8709716274084,1402.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,2,,2,115890,1,3,0,0,1,,187.0,822.0,22,1.0,0.0,5.0,2.0,1.5,2,2,2660.51611586595,1052.0,32129.30165193694,0,4,2,3,87.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.04363618030631797,21419.534434624627,6,3,6,6_0,6_3,6_0_1 +15874,2,65.0,0.0,2,111,357.0,0.0,0.0,0,75,0.0,0.0,608.7565939838258,357.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115891,2,1,0,1,1,564.0,0.0,338.0,11,0.0,2.0,3.0,1.0,1.0,1,1,236.123016034446,357.0,22864.97144639143,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015613402397506254,22864.97144639143,6,3,6,6_0,6_4,6_0_1 +15876,0,77.0,0.0,1,111,400.0,1750.0,0.0,78,77,0.0,0.0,682.0802173488245,2150.0,0.0,3322.382083894631,70,2,2,2,1,1,2,2,2,0,,1,,1,115893,2,2,2,0,1,,320.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,395.666150904996,400.0,20039.408582026863,5,5,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.10728859542932383,13359.605721351241,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +15877,2,68.0,0.0,2,300,950.0,0.0,0.0,78,77,0.0,754.8665478958276,1619.9405162034582,1610.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,115894,2,2,4,0,1,,261.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1259.28396124635,950.0,29320.126620125502,5,5,0,1,75.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05491108619206599,19546.751080083668,5,3,5,5_1,5_0,5_0_1 +15878,2,59.0,0.0,2,112,500.0,0.0,0.0,0,43,3164.0485531098047,0.0,852.6002716860306,3550.0,69.27946126982604,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,2,115895,1,1,2,0,2,,500.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,86.9311275834793,500.0,46283.56583643397,0,1,0,1,150.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0767010911074936,46283.56583643397,10,5,10,10_1,10_0,10_0_1 +15879,0,58.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,782.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,115896,1,1,2,0,1,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1149.88516731917,0.0,23322.34716159589,0,1,5,0,50.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03353007287738571,23322.34716159589,6,3,6,6_1,6_3,6_0_0 +15880,2,50.0,0.0,2,111,360.0,0.0,0.0,0,37,0.0,0.0,613.872195613942,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,15.0,2,,2,115897,2,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1018.41409396746,360.0,127419.98137608316,0,1,1,2,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00282530256331973,127419.98137608316,10,5,10,10_0,10_4,10_0_1 +15881,2,40.0,0.0,9,212,1600.0,0.0,0.0,62,69,0.0,0.0,2728.320869395298,1792.0,266.03313127613205,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,115898,2,1,1,0,1,,544.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,730.949477341742,1600.0,53713.022981694,1,1,1,2,156.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033362486423650625,25577.629991282854,7,4,7,7_1,7_0,7_0_0 +15882,2,45.0,0.0,2,111,250.0,550.0,0.0,54,53,0.0,0.0,426.3001358430153,800.0,0.0,1044.177226366884,50,1,1,2,2,1,2,2,2,2,15.0,2,,2,115899,2,3,0,1,1,376.0,0.0,293.0,43,2.0,0.0,3.0,4.0,2.5,4,3,739.290205711227,250.0,52997.81814922982,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015094961036837058,21199.127259691926,5,3,5,5_0,5_4,5_0_1 +15883,2,41.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,677.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,115900,2,1,0,0,1,,79.0,273.0,12,1.0,0.0,2.0,1.0,1.0,1,1,337.73884496327,0.0,8362.60189294767,0,4,2,3,43.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08095566531403654,8362.60189294767,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +15884,2,39.0,0.0,1,120,430.0,1130.0,0.0,52,69,0.0,0.0,733.2362336499863,1560.0,0.0,2145.3095741719617,43,0,0,0,0,0,0,0,0,2,5.0,1,,1,115901,2,1,1,0,1,,712.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1149.73669772764,430.0,40649.373105669474,1,1,1,2,140.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038376975604143396,19356.844336033082,5,3,5,5_1,5_0,5_1_0 +15885,2,33.0,0.0,9,111,627.0,,,85,31,0.0,0.0,,627.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2008.0,6,115902,2,1,0,0,2,,420.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,117.9247518218415,627.0,39683.81471082076,6,1,0,1,167.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015799892338198854,16534.92279617532,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15886,2,55.0,0.0,7,112,1258.0,0.0,0.0,0,55,0.0,79.45963662061344,2145.142283562053,1348.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,115903,1,1,1,0,1,,424.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,959.125535631403,1258.0,18752.739719909187,0,4,1,2,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07188282992958471,12501.826479939458,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +15887,2,39.0,0.0,6,111,552.0,3228.0,0.0,52,38,0.0,0.0,941.2706999413778,3780.0,0.0,6128.371066749639,12,0,0,0,0,0,0,0,0,0,,1,,4,115904,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1440.72577613911,552.0,80686.85440305201,1,1,1,2,98.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04684777995084438,33619.52266793834,9,5,9,9_1,9_3,9_0_0 +15888,2,59.0,0.0,6,221,2000.0,0.0,0.0,67,47,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,115905,2,1,2,0,1,,130.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,540.669453817903,2000.0,57006.08245209757,1,1,0,1,110.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03508397549823929,38004.05496806505,9,5,9,9_1,9_1,9_0_0 +15889,2,72.0,0.0,6,111,2400.0,,,0,77,0.0,0.0,,2550.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,4,115906,2,1,0,0,2,,200.0,,21,3.0,4.0,5.0,6.0,3.0999999999999996,4,4,106.14541758554142,2400.0,95488.77486815864,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026704709569483797,30802.83060263182,8,4,8,8_1,8_2,8_0_0 +15890,2,31.0,0.0,7,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,356.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,5,115907,2,2,0,1,1,44.0,0.0,360.0,12,1.0,0.0,3.0,1.0,1.0,1,1,806.399178546304,0.0,20265.27592783147,0,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01756699495569585,20265.27592783147,5,3,5,5_0,5_4,5_0_0 +15891,2,54.0,0.0,9,211,850.0,0.0,0.0,63,43,0.0,79.45963662061344,1449.420461866252,910.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,115908,2,1,1,0,1,,570.0,,43,2.0,1.0,5.0,4.0,2.5,4,4,1419.01950841693,850.0,37909.80487275341,1,1,1,2,114.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024004344075483134,15163.921949101365,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +15893,2,78.0,0.0,7,112,300.0,400.0,0.0,0,74,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,1,,5,115910,2,1,2,0,1,,50.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,766.19117841003,300.0,19975.49550602648,0,5,0,1,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035042935470052015,19975.49550602648,5,3,5,5_1,5_2,5_0_0 +15894,2,58.0,0.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1568.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,115911,2,2,3,0,1,,512.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,226.356865864271,0.0,23507.82968355361,0,1,0,1,72.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06670118088770201,23507.82968355361,6,3,6,6_1,6_3,6_1_0 +15895,1,31.0,35.0,2,111,470.0,0.0,0.0,64,37,0.0,0.0,801.4442553848687,470.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,115912,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1358.52628733084,470.0,39805.01051391155,4,1,1,2,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.011807558745292596,22113.894729950858,6,3,6,6_0,6_3,6_0_1 +15896,1,59.0,250.0,5,111,80.0,,,0,77,0.0,0.0,,130.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,2,,3,115913,2,2,0,0,2,,50.0,380.0,11,0.0,2.0,2.0,1.0,1.0,1,1,185.88275069902605,80.0,7002.221846819176,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018565535746208,7002.221846819176,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15897,2,60.0,0.0,5,111,300.0,270.0,0.0,46,21,0.0,0.0,511.56016301161833,570.0,0.0,512.596092943743,50,2,1,2,1,2,2,2,2,1,5.0,2,,3,115914,1,2,0,1,2,,0.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,1131.31917307892,300.0,48030.33433989677,1,1,0,1,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011867500150348216,32020.222893264512,8,4,8,8_0,8_4,8_0_0 +15898,2,41.0,0.0,7,111,860.0,,,46,64,0.0,99.3245457757668,,981.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,5,115915,2,1,0,0,2,,480.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,87.94058597659776,860.0,27899.223171511625,4,1,1,2,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0351622693567223,13285.344367386488,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +15899,2,71.0,0.0,5,112,0.0,0.0,0.0,77,77,0.0,0.0,0.0,705.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,115916,2,1,1,0,1,,212.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2013.81385849311,0.0,38768.664843332284,5,5,1,2,90.0,9,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018184789258257138,25845.776562221523,7,4,7,7_1,7_0,7_0_0 +15900,2,57.0,0.0,7,400,480.0,,,54,63,0.0,0.0,,886.0,562.5492255109875,,71,0,0,0,0,0,0,0,0,0,,1,,5,115917,2,1,0,0,1,,250.0,,43,3.0,1.0,7.0,4.0,2.3,3,3,106.53932789778032,480.0,56085.08088409687,1,1,0,1,150.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015797427516079925,24384.817775694293,7,4,7,7_1,7_0,7_0_0 +15901,2,62.0,0.0,1,111,895.0,0.0,0.0,52,63,0.0,0.0,1526.1544863179947,895.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,1,115918,2,2,0,0,2,,0.0,498.0,43,2.0,6.0,1.0,2.0,1.5,2,2,1147.29913841699,895.0,38115.51902973418,1,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023481249180991193,25410.346019822788,7,4,7,7_0,7_4,7_1_0 +15902,1,76.0,31.0,7,111,990.0,0.0,0.0,0,78,0.0,0.0,1688.1485379383405,990.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,115919,2,1,0,0,1,,0.0,523.0,11,0.0,0.0,2.0,1.0,1.0,1,1,476.166819843282,990.0,19718.798065847135,0,5,2,3,60.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05020589980657469,19718.798065847135,5,3,5,5_0,5_2,5_0_0 +15903,0,67.0,0.0,1,300,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,3600.0,4156.767676189563,0.0,41,2,2,1,2,1,2,2,2,0,,1,,1,115920,2,2,2,0,1,,220.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,977.239014748885,600.0,13366.386029972049,0,5,5,0,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.26933233799529344,13366.386029972049,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +15904,2,70.0,0.0,2,111,331.0,582.0,0.0,75,74,0.0,0.0,564.4213798561523,913.0,0.0,1104.9293559009573,10,0,0,0,0,0,0,0,0,0,,1,,2,115921,2,2,1,0,1,,114.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,300.988869248187,331.0,107532.86733897284,5,5,0,1,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00849042736972665,71688.5782259819,10,5,10,10_1,10_3,10_0_1 +15905,1,42.0,337.0,2,111,600.0,,,0,52,0.0,0.0,,900.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,115922,2,3,0,0,2,,1500.0,370.0,32,2.0,1.0,3.0,5.0,2.5999999999999996,3,2,130.04326587256045,600.0,27876.48351748893,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.032285277281668794,10721.724429803437,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +15906,2,63.0,0.0,5,111,420.0,0.0,0.0,78,78,0.0,0.0,716.1842282162656,873.0,332.541414095165,0.0,60,1,1,2,2,1,2,2,2,0,,2,,3,115923,2,2,0,1,1,1060.0,0.0,331.0,41,0.0,4.0,4.0,2.0,1.5,2,2,335.826437435905,420.0,27839.67843917251,5,5,2,3,80.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.031358120816928105,18559.785626115005,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +15907,2,42.0,0.0,8,111,300.0,,,65,52,0.0,7.945963662061343,,378.0,99.7624242285495,,31,0,0,0,0,0,0,0,0,2,40.0,2,2000.0,6,115924,2,1,0,0,2,,348.0,715.0,43,2.0,0.0,3.0,3.0,1.8,2,2,80.7755283984025,300.0,48895.1376507261,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007730830061266565,27163.9653615145,7,4,7,7_0,7_2,7_0_0 +15908,2,46.0,0.0,9,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,1979.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,115925,2,1,1,0,1,,197.0,717.0,42,1.0,1.0,4.0,2.0,1.5,2,2,1588.67695290876,0.0,51350.22516952728,7,1,2,3,94.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038539266253780645,34233.48344635152,9,5,9,9_1,9_2,9_0_0 +15909,1,47.0,364.0,2,111,780.0,740.0,0.0,0,56,0.0,0.0,1330.0564238302077,1620.0,138.5589225396521,1404.892995475444,71,2,2,2,2,1,2,2,1,0,,2,,2,115926,1,3,0,1,2,740.0,0.0,330.0,32,2.0,2.0,4.0,3.0,2.0,3,2,390.854879503189,780.0,10682.877294207148,0,4,2,3,70.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.15164453876845094,5341.438647103574,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +15910,2,64.0,0.0,2,111,759.0,376.0,0.0,56,78,0.0,0.0,1294.2472124193944,1135.0,0.0,713.8375220253606,50,2,2,2,1,2,2,2,2,0,,2,,2,115927,1,3,0,1,1,852.0,0.0,430.0,42,2.0,3.0,4.0,3.0,2.0,3,3,180.686149701807,759.0,50950.816776550986,1,5,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.022276384792370183,25475.408388275493,7,4,7,7_0,7_4,7_0_1 +15912,2,52.0,0.0,5,300,420.0,,,0,85,0.0,0.0,,508.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,3,115929,2,1,0,0,1,,140.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,92.73109719272854,420.0,5034.207865156918,0,7,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10090961946883484,5034.207865156918,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +15913,2,43.0,0.0,9,111,480.0,,,63,47,0.0,0.0,,641.0,223.07986528883987,,31,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,115930,2,1,0,0,2,,350.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,224.84372265757708,480.0,43932.343986514636,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01459061688574504,20920.163803102205,5,3,5,5_1,5_2,5_0_0 +15914,2,30.0,0.0,5,111,0.0,0.0,0.0,52,68,0.0,0.0,0.0,455.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,3,115931,2,2,0,1,1,675.0,0.0,695.0,43,2.0,1.0,3.0,2.0,1.5,2,2,785.116494784553,0.0,39637.70894306294,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011478968187933836,26425.139295375295,7,4,7,7_0,7_4,7_0_0 +15915,2,80.0,0.0,2,120,600.0,0.0,0.0,86,78,949.2145659329414,0.0,1023.1203260232367,1530.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,115932,2,1,2,0,1,,360.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1670.64795067971,600.0,19357.505166614734,6,5,0,1,82.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07903911102339478,12905.003444409822,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +15916,2,73.0,0.0,1,111,1350.0,0.0,0.0,72,72,0.0,0.0,2302.0207335522828,1470.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,115933,2,1,2,0,1,,350.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,877.326496502428,1350.0,37660.47376567556,5,5,0,1,180.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0390329662113753,25106.982510450373,7,4,7,7_1,7_2,7_1_0 +15917,2,64.0,0.0,2,111,300.0,650.0,0.0,78,77,0.0,0.0,511.56016301161833,950.0,0.0,1234.027631160863,60,0,0,0,0,0,0,0,0,0,,2,,2,115934,1,2,0,0,1,,250.0,330.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1722.56715538865,300.0,20993.28848438098,5,5,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.045252557773728525,13995.525656253987,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +15918,2,48.0,0.0,9,111,996.0,,,42,45,0.0,0.0,,1078.0,113.61831648251471,,42,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,115935,2,1,0,0,1,,350.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,221.24509690542467,996.0,66999.821601732,1,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016089595079938734,37222.12311207333,9,5,9,9_1,9_2,9_0_0 +15919,2,56.0,0.0,8,111,600.0,0.0,0.0,56,38,1582.0242765549024,0.0,1023.1203260232367,2160.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,2003.0,6,115936,2,1,1,0,1,,600.0,,43,2.0,2.0,8.0,3.0,2.0,3,2,948.364402180715,600.0,61519.03055781652,1,1,1,2,180.0,5,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035111086446168865,30759.51527890826,8,4,8,8_1,8_2,8_0_0 +15920,2,87.0,0.0,1,111,305.0,79.0,0.0,0,78,1980.6943942467376,0.0,520.0861657284787,2262.0,0.0,149.98181978724332,71,0,0,0,0,0,0,0,0,0,,1,,1,115937,2,1,2,0,1,,159.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,499.535876460533,305.0,26724.771123051254,0,6,0,1,85.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08464057520211758,26724.771123051254,7,4,7,7_1,7_4,7_1_0 +15921,2,39.0,0.0,2,111,350.0,1350.0,0.0,33,37,0.0,0.0,596.8201901802214,1700.0,0.0,2562.980464718715,10,0,0,0,0,0,0,0,0,2,50.0,2,,2,115938,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,997.961498659537,350.0,65076.91530123295,1,1,1,2,115.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02612293456336877,30989.007286301403,8,4,8,8_0,8_2,8_0_1 +15922,2,30.0,0.0,5,120,0.0,0.0,0.0,53,53,0.0,0.0,0.0,2183.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,3,115939,1,1,3,0,1,,353.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,251.188654111893,0.0,44283.13520212671,1,1,1,2,95.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049296419280971795,29522.09013475114,8,4,8,8_1,8_0,8_0_0 +15923,1,32.0,355.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,311.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,1,115940,2,2,0,0,1,,0.0,314.0,32,1.0,0.0,4.0,3.0,1.6,1,1,363.895103536948,0.0,9666.408972042007,0,1,2,3,75.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03217327147025334,6041.505607526254,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +15924,2,43.0,0.0,7,111,597.0,0.0,0.0,0,38,0.0,0.0,1018.0047243931206,597.0,0.0,0.0,31,0,0,0,0,0,0,0,0,4,50.0,2,,5,115941,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1213.67134040007,597.0,43753.91590425077,0,1,1,2,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01364449301649822,43753.91590425077,10,5,10,10_0,10_4,10_0_0 +15925,0,49.0,0.0,1,111,2300.0,0.0,0.0,56,63,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,1,115942,2,1,0,0,1,,0.0,,43,2.0,2.0,1.0,2.0,1.5,2,2,1314.44820973239,2300.0,55536.396531870814,1,1,5,0,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04141428222985431,37024.26435458054,9,5,9,9_0,9_4,9_1_0 +15926,1,56.0,357.0,7,111,500.0,,,0,85,0.0,0.0,,563.0,87.29212119998083,,70,2,2,2,1,1,2,2,2,0,,2,,5,115943,2,3,0,0,1,,420.0,434.0,31,0.0,2.0,3.0,2.0,1.5,2,1,123.61509251906969,500.0,8574.448417782638,0,6,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06566020023310053,5716.298945188425,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15927,2,28.0,0.0,2,111,444.0,,,55,53,0.0,0.0,,582.0,191.2113131047199,,42,0,0,0,0,0,0,0,0,2,60.0,2,,2,115944,2,1,0,0,2,,0.0,600.0,43,2.0,1.0,3.0,3.0,1.8,2,2,121.04817186041286,444.0,48962.44441236284,1,1,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011886661439906522,27201.358006868246,7,4,7,7_0,7_2,7_0_1 +15928,2,53.0,0.0,6,111,1700.0,,,0,63,0.0,0.0,,1703.0,4.156767676189563,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,115945,2,1,0,0,2,,350.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,27.147425274170807,1700.0,46353.10258422362,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03673971978263262,46353.10258422362,10,5,10,10_1,10_2,10_0_0 +15929,2,84.0,0.0,9,111,240.0,850.0,0.0,78,78,0.0,0.0,409.2481304092947,1090.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,115946,2,2,1,0,1,,0.0,488.0,41,0.0,0.0,3.0,2.0,1.5,2,2,283.6066784119,240.0,36412.64986943806,5,5,2,3,62.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029934651938497373,24275.099912958703,7,4,7,7_1,7_3,7_0_0 +15930,2,73.0,0.0,2,400,400.0,0.0,0.0,0,78,527.3414255183008,66.2163638505112,682.0802173488245,1160.0,290.9737373332694,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,115947,2,1,1,0,2,,80.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,721.087648526675,400.0,12603.4807991482,0,5,0,1,73.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09203806618869909,12603.4807991482,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +15931,2,81.0,0.0,6,111,800.0,,,0,77,0.0,0.0,,1052.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,115948,1,2,0,0,2,,500.0,,21,1.0,11.0,4.0,4.0,2.3,3,2,110.44417441130469,800.0,26030.974839751183,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04041339237105788,11317.815147717907,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +15932,2,44.0,0.0,6,112,900.0,0.0,0.0,85,21,0.0,0.0,1534.680489034855,970.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,115949,2,1,3,0,1,,510.0,,42,1.0,0.0,5.0,4.0,2.3,3,2,1422.80631864338,900.0,14501.280547404536,6,1,0,1,120.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06689064436958378,6304.90458582806,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +15933,2,38.0,0.0,2,111,240.0,196.0,0.0,0,56,0.0,0.0,409.2481304092947,436.0,0.0,372.10679339619867,50,2,1,1,2,1,2,2,2,3,31.0,2,,2,115950,1,3,0,1,1,916.0,160.0,253.0,12,1.0,0.0,2.0,1.0,1.0,1,1,325.509653848991,240.0,15221.838557600218,0,1,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02864305769307391,15221.838557600218,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +15934,2,65.0,0.0,2,111,1128.0,,,85,77,0.0,0.0,,1380.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,115951,1,2,0,0,2,,600.0,,41,2.0,0.0,4.0,4.0,2.5,4,4,88.98168670489518,1128.0,48650.050205259766,6,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028365849452932367,19460.020082103907,5,3,5,5_1,5_2,5_0_1 +15935,2,71.0,0.0,7,112,1224.0,0.0,0.0,0,75,0.0,0.0,2087.165465087403,1224.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,115952,1,2,0,0,1,,0.0,377.0,11,0.0,3.0,3.0,1.0,1.0,1,1,804.47027447626,1224.0,23403.526382181026,0,5,2,3,62.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05229981072134193,23403.526382181026,6,3,6,6_0,6_1,6_0_0 +15936,2,56.0,0.0,5,111,596.0,0.0,0.0,0,37,0.0,0.0,1016.2995238497484,596.0,0.0,0.0,20,2,1,2,2,1,2,2,2,3,30.0,2,,3,115953,2,2,0,1,2,,0.0,,32,1.0,1.0,4.0,3.0,2.0,3,2,888.358492427524,596.0,44515.51896027111,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01338858928123277,22257.759480135555,6,3,6,6_0,6_4,6_0_0 +15937,2,41.0,0.0,9,112,500.0,,,52,52,0.0,0.0,,550.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,115954,2,2,0,0,2,,150.0,458.0,43,2.0,0.0,3.0,4.0,2.1,2,2,93.98465707976275,500.0,89448.80087491796,1,1,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006148768844527056,42594.66708329426,9,5,9,9_1,9_2,9_0_0 +15938,1,26.0,200.0,2,111,200.0,300.0,0.0,52,22,0.0,0.0,341.04010867441224,500.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,,2,115955,2,2,0,1,1,70.0,260.0,445.0,43,2.0,0.0,3.0,2.0,1.5,2,2,209.37431777389,200.0,15437.881392632482,1,1,2,3,70.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03238786380614494,10291.920928421654,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15939,2,35.0,0.0,5,111,850.0,,,0,46,0.0,0.0,,875.0,34.63973063491302,,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,115956,1,2,0,0,2,,0.0,533.0,32,1.0,0.0,3.0,2.0,1.3,1,1,93.95286710133813,850.0,23729.284011754517,0,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03687426892301347,18253.29539365732,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +15940,0,59.0,0.0,6,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,955.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,115957,2,1,0,1,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,436.111979755913,0.0,25962.012426232468,0,1,5,0,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03678451363173416,25962.012426232468,7,4,7,7_0,7_4,7_0_0 +15941,2,33.0,0.0,2,111,300.0,916.0,0.0,63,55,0.0,0.0,511.56016301161833,1216.0,0.0,1739.0297079128468,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,115958,1,3,0,0,1,,0.0,430.0,43,2.0,0.0,2.0,2.0,1.5,2,2,270.33705220394,300.0,37399.38236979941,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032513905924337914,24932.921579866274,7,4,7,7_0,7_3,7_0_1 +15942,2,55.0,0.0,2,111,650.0,150.0,0.0,78,67,0.0,0.0,1108.3803531918397,866.0,91.44888887617039,284.77560719096834,50,2,1,2,1,2,2,2,2,1,10.0,2,,2,115959,2,1,0,1,1,,0.0,,42,2.0,3.0,4.0,5.0,3.0,5,5,597.057907693503,650.0,69193.22683034082,5,1,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012515675878556716,23064.40894344694,6,3,6,6_0,6_4,6_0_1 +15943,2,54.0,0.0,6,111,1300.0,1400.0,0.0,56,63,0.0,927.0290939071567,2216.7607063836795,3400.0,0.0,2657.9056671157045,50,2,1,2,1,1,2,2,2,1,5.0,1,,4,115960,2,1,2,0,1,,600.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,537.425762770066,1300.0,54198.53335452752,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06273232483542801,21679.413341811007,6,3,6,6_1,6_4,6_0_0 +15944,2,50.0,0.0,2,111,360.0,,,0,65,0.0,0.0,,443.0,115.00390570791124,,60,0,0,0,0,0,0,0,0,0,,1,,2,115961,2,2,0,0,2,,190.0,,22,1.0,3.0,4.0,2.0,1.5,2,2,108.81868749658443,360.0,50292.78866098827,0,1,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008808419890695616,33528.52577399218,8,4,8,8_1,8_2,8_0_1 +15945,1,40.0,461.0,5,111,800.0,0.0,0.0,63,55,0.0,662.163638505112,1364.160434697649,1660.0,498.81212114274757,0.0,50,2,2,2,2,1,2,2,2,2,10.0,2,,3,115962,1,3,0,0,1,,377.0,420.0,43,2.0,0.0,5.0,5.0,2.8,4,3,1599.81441124907,800.0,26836.471029798373,4,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,1,0.06185612102861022,9584.453939213705,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +15946,2,56.0,0.0,1,111,945.0,0.0,0.0,0,54,0.0,132.4327277010224,1611.4145134865978,1045.0,0.0,0.0,60,1,2,2,1,2,2,2,2,2,5.0,1,,1,115963,2,1,2,0,1,,500.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,1015.3708763412,945.0,33951.65194669114,0,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03077906199205849,22634.434631127428,6,3,6,6_1,6_4,6_1_0 +15947,2,57.0,0.0,2,112,1000.0,0.0,0.0,37,37,0.0,0.0,1705.2005433720612,1040.0,55.423569015860835,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,115964,2,1,2,0,1,,200.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1430.44239988524,1000.0,93052.47105711681,1,1,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011176489868405907,62034.98070474454,10,5,10,10_1,10_0,10_0_1 +15948,2,68.0,0.0,5,111,120.0,0.0,0.0,75,75,0.0,0.0,204.62406520464734,120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,115965,2,1,0,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,297.29826449092,120.0,55630.07955358655,5,5,0,1,110.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0021571063885394612,37086.719702391034,9,5,9,9_0,9_3,9_0_0 +15949,2,58.0,0.0,6,111,780.0,,,52,31,0.0,0.0,,924.0,199.524848457099,,20,0,0,0,0,0,0,0,0,0,,1,,4,115966,2,1,0,0,2,,600.0,,43,2.0,3.0,3.0,3.0,1.8,2,2,103.31329504244444,780.0,5110.0,1,1,1,2,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18082191780821918,2838.8888888888887,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15950,2,41.0,0.0,8,120,1592.0,0.0,0.0,54,23,0.0,331.081819252556,2714.679265048321,1842.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,1999.0,6,115967,2,1,1,0,1,,533.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,510.796673514519,1592.0,42353.91655717853,1,1,1,2,82.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043490665084379335,20168.531693894536,5,3,5,5_1,5_0,5_0_0 +15952,2,40.0,0.0,1,212,900.0,0.0,0.0,85,69,0.0,0.0,1534.680489034855,1020.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,115969,2,2,2,0,1,,159.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1652.93848766733,900.0,32027.799562529955,7,1,0,1,80.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031847333064782914,17793.22197918331,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +15953,1,44.0,250.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1419.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115970,2,1,1,0,1,,126.0,14.0,11,0.0,0.0,5.0,1.0,1.0,1,1,1611.45632845703,0.0,9928.874282325178,0,7,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1429165038906801,9928.874282325178,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +15954,2,55.0,0.0,6,300,660.0,0.0,0.0,0,62,0.0,264.8654554020448,1125.4323586255605,980.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,115971,2,1,2,0,1,,355.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,796.273008985923,660.0,28593.241504791953,0,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03427383355034305,28593.241504791953,8,4,8,8_1,8_0,8_0_0 +15955,2,43.0,0.0,9,120,1132.0,0.0,0.0,52,62,0.0,0.0,1930.2870150971733,1252.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,2006.0,6,115972,2,1,1,0,1,,714.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1065.67812316409,1132.0,47956.371470555845,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02610706276576201,22836.367366931354,6,3,6,6_1,6_0,6_0_0 +15956,0,40.0,0.0,6,111,1600.0,0.0,0.0,0,63,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,115973,2,1,1,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1654.84794724441,1600.0,27344.0,0,1,5,0,160.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058513750731421885,27344.0,7,4,7,7_1,7_3,7_0_0 +15957,2,76.0,0.0,1,112,507.0,1469.0,0.0,77,78,0.0,0.0,864.5366754896351,1976.0,0.0,2788.90244642355,50,2,2,2,1,2,2,2,2,0,,1,,1,115974,1,2,3,0,1,,276.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,926.55630761667,507.0,40342.422076498195,5,5,0,1,120.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04898069819043252,26894.948050998795,7,4,7,7_1,7_0,7_1_0 +15958,2,35.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,798.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,115975,1,3,0,0,2,,0.0,350.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1190.85875352456,0.0,2514.4709646618685,0,1,3,4,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.3173629806090485,2514.4709646618685,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +15959,2,50.0,0.0,1,221,1500.0,0.0,0.0,90,48,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,115976,2,1,1,0,1,,725.0,,43,2.0,0.0,8.0,5.0,2.8,4,2,2152.59334739675,1500.0,43967.0,4,1,1,2,125.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03411649646325653,15702.500000000002,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +15960,1,49.0,82.0,2,111,280.0,0.0,0.0,0,68,0.0,0.0,477.4561521441771,280.0,0.0,0.0,71,1,1,2,2,1,2,2,2,0,,2,,2,115977,1,3,0,1,1,350.0,0.0,226.0,12,1.0,4.0,2.0,1.0,1.0,1,1,378.971006088064,280.0,12376.80798024341,0,1,2,3,60.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.022622957425448672,12376.80798024341,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +15961,2,49.0,0.0,6,111,1019.0,0.0,0.0,56,62,0.0,158.91927324122688,1737.5993536961303,1277.0,191.2113131047199,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,115978,2,1,2,0,1,,539.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,560.71158870205,1019.0,51079.246840701104,1,1,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02500036862294644,25539.623420350552,7,4,7,7_1,7_4,7_0_0 +15962,2,52.0,0.0,7,112,1418.0,0.0,0.0,0,54,0.0,468.81185606161927,2417.9743705015826,1772.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,45.0,1,,5,115979,2,1,2,0,1,,380.0,,32,1.0,0.0,5.0,3.0,2.0,3,2,628.467456937142,1418.0,47251.741190633235,0,1,0,1,85.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03750126355875465,23625.870595316617,6,3,6,6_1,6_1,6_0_0 +15963,2,70.0,0.0,6,111,720.0,,,0,77,0.0,0.0,,996.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,0,,1,,4,115980,1,1,0,0,2,,448.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,101.67050201151882,720.0,202603.7379113426,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004916000120569541,202603.7379113426,10,5,10,10_1,10_3,10_0_0 +15964,2,82.0,0.0,1,400,1786.0,0.0,0.0,71,71,0.0,0.0,3045.4881704625013,1879.0,128.85979796187644,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,115981,2,1,2,0,2,,144.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1525.09541630483,1786.0,20078.16189978824,5,5,0,1,109.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.093584263807526,13385.441266525493,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +15965,2,40.0,0.0,5,111,2719.8,0.0,0.0,42,21,0.0,0.0,4637.804437863332,5330.0,0.0,0.0,31,2,2,2,2,2,2,1,2,0,,1,,3,115982,1,2,3,0,2,,414.0,950.0,43,2.0,1.0,4.0,4.0,2.1,2,2,834.445379969566,2719.8,58981.971947143014,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.09036659548745685,28086.65330816334,8,4,8,8_1,8_4,8_0_0 +15966,2,82.0,0.0,7,111,420.0,,,77,77,0.0,0.0,,696.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,115983,2,1,0,0,2,,340.0,,41,0.0,9.0,2.0,2.0,1.5,2,2,111.49900615184552,420.0,30171.38899014415,5,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023068212080900777,20114.259326762767,5,3,5,5_1,5_2,5_0_0 +15967,2,37.0,0.0,8,111,250.0,,,85,62,0.0,0.0,,330.0,110.84713803172167,,50,2,2,2,2,1,2,2,1,0,,1,2003.0,6,115984,1,2,0,0,2,,215.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,128.42941868664252,250.0,30752.223952971282,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.010730931216703609,12813.426647071368,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +15968,1,44.0,25.0,1,111,600.0,100.0,0.0,0,35,0.0,0.0,1023.1203260232367,700.0,0.0,189.8504047939789,50,2,2,2,1,2,2,2,2,2,35.0,2,,1,115985,2,2,0,0,1,,235.0,500.0,12,1.0,3.0,2.0,1.0,1.0,1,1,2988.884977629,600.0,16305.539291155179,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.042930196143816594,16305.539291155179,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +15969,2,64.0,0.0,9,400,0.0,0.0,0.0,0,86,0.0,0.0,0.0,431.0,99.7624242285495,0.0,43,2,2,2,1,1,2,2,2,0,,2,2006.0,6,115986,2,2,0,0,1,,162.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1780.65569415301,0.0,21579.694244462822,0,5,2,3,60.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.019972479457654558,21579.694244462822,6,3,6,6_0,6_0,6_0_0 +15970,2,63.0,0.0,1,111,200.0,1600.0,0.0,0,75,0.0,0.0,341.04010867441224,1800.0,0.0,3037.6064767036623,30,0,0,0,0,0,0,0,0,0,,1,,1,115987,2,2,1,0,1,,130.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1741.99033626562,200.0,24113.33121803988,0,5,0,1,70.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07464750447475993,24113.33121803988,6,3,6,6_1,6_2,6_1_0 +15971,1,55.0,265.0,8,111,0.0,1200.0,0.0,85,21,0.0,0.0,0.0,1477.0,0.0,2278.2048575277468,71,2,2,2,1,1,2,2,2,0,,2,2000.0,6,115988,1,3,0,0,1,,0.0,254.0,42,1.0,2.0,2.0,3.0,1.8,2,2,881.362260903546,0.0,15724.345105514658,6,4,2,3,62.0,4,4,4,0,1,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09393077995229218,8735.747280841477,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +15972,2,63.0,0.0,5,111,640.0,1180.0,0.0,75,75,0.0,66.2163638505112,1091.3283477581192,1950.0,110.84713803172167,2240.234776568951,50,0,0,0,0,0,0,0,0,0,,1,,3,115989,2,1,3,0,1,,375.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,261.49884329109,640.0,40817.603791438494,5,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0477735050289506,27211.735860958997,7,4,7,7_1,7_3,7_0_0 +15973,2,45.0,0.0,7,300,1075.0,0.0,0.0,42,43,6011.692250908629,529.7309108040896,1833.0905841249657,7175.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,115990,2,1,2,0,1,,533.0,,43,2.0,0.0,8.0,5.0,2.8,4,3,1353.87981973,1075.0,154209.17512293576,1,1,1,2,320.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046527711430140783,55074.705401048486,10,5,10,10_1,10_0,10_0_0 +15974,2,79.0,0.0,2,112,460.0,0.0,0.0,86,78,0.0,0.0,784.3922499511482,710.0,346.39730634913025,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,115991,1,1,2,0,2,,124.0,229.0,41,0.0,3.0,6.0,2.0,1.5,2,2,889.223974776305,460.0,20627.124601751446,5,5,2,3,90.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03442069671405941,13751.416401167631,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +15975,2,25.0,0.0,2,211,250.0,1250.0,0.0,0,56,0.0,0.0,426.3001358430153,1500.0,0.0,2373.130059924736,41,1,2,2,2,1,2,2,2,2,7.0,1,,2,115992,2,2,5,0,1,,250.0,371.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1173.43060504042,250.0,17304.031089739437,0,1,2,3,70.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08668500375553745,17304.031089739437,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +15976,2,47.0,0.0,9,211,450.0,0.0,0.0,0,22,0.0,0.0,767.3402445174275,510.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,2008.0,6,115993,2,1,1,0,1,,250.0,,32,1.0,1.0,2.0,2.0,1.5,2,1,1346.18545287188,450.0,13290.319162733944,0,1,1,2,42.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03837379627646867,8860.212775155962,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +15977,2,62.0,0.0,6,111,1300.0,0.0,0.0,75,75,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,115994,2,1,1,0,1,,150.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1459.1487413761,1300.0,55650.42296171769,5,5,0,1,100.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02336010996527877,37100.28197447846,9,5,9,9_1,9_2,9_0_0 +15978,2,70.0,0.0,2,112,1500.0,0.0,0.0,77,75,0.0,158.91927324122688,2557.8008150580918,1695.0,103.91919190473907,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,115995,2,2,3,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,96.4263918016084,1500.0,38208.40012816343,5,5,1,2,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04436197261111215,25472.26675210895,7,4,7,7_1,7_0,7_0_1 +15979,2,48.0,0.0,8,111,385.0,955.0,0.0,0,46,0.0,0.0,656.5022091982436,1340.0,0.0,1813.0713657824986,42,2,2,1,2,1,2,2,2,2,25.0,2,2001.0,6,115996,2,2,0,0,1,,468.0,354.0,32,1.0,0.0,3.0,3.0,2.0,3,2,317.772317642162,385.0,39840.02012217843,0,1,2,3,66.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03363452116466274,19920.010061089215,5,3,5,5_0,5_2,5_0_0 +15980,2,80.0,0.0,1,112,625.0,1089.0,0.0,75,78,0.0,0.0,1065.7503396075383,1714.0,0.0,2067.47090820643,50,0,0,0,0,0,0,0,0,0,,1,,1,115997,2,1,2,0,1,,363.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,642.547448082177,625.0,51368.93006183008,5,5,0,1,120.0,9,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033366472650626526,34245.953374553384,9,5,9,9_1,9_1,9_1_0 +15981,2,37.0,0.0,7,111,0.0,,,34,34,0.0,0.0,,1042.0,0.0,,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,115998,2,3,0,0,2,,118.0,1350.0,43,2.0,0.0,6.0,3.0,1.8,2,2,123.32177005130539,0.0,329679.5725111182,1,1,2,3,109.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0031606447195476734,183155.31806173234,10,5,10,10_1,10_2,10_0_0 +15982,2,59.0,0.0,2,111,0.0,0.0,0.0,77,90,0.0,0.0,0.0,1467.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,115999,2,2,2,0,1,,419.0,580.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1479.97689748646,0.0,35075.9261519429,5,1,2,3,70.0,6,4,8,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04182355709283933,23383.95076796193,6,3,6,6_1,6_2,6_0_1 +15983,1,34.0,147.0,2,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,116000,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1942.74928729282,0.0,33870.91907645906,1,1,2,3,63.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03838100752641002,16129.009084028123,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +15984,2,63.0,0.0,5,111,600.0,0.0,0.0,77,74,2109.365702073203,0.0,1023.1203260232367,2840.0,332.541414095165,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,116001,2,1,2,0,1,,400.0,,41,2.0,0.0,7.0,4.0,2.5,4,4,1730.62864919296,600.0,115634.3550338285,5,5,0,1,231.0,4,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02456017503767947,46253.7420135314,10,5,10,10_1,10_2,10_0_0 +15985,2,66.0,0.0,5,112,2000.0,0.0,0.0,71,71,0.0,0.0,3410.4010867441225,2025.0,34.63973063491302,0.0,44,2,2,1,2,1,2,2,2,0,,1,,3,116002,2,1,1,0,2,,300.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,643.535685766076,2000.0,16775.068427852373,5,5,0,1,196.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.12071485780873506,11183.378951901583,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +15986,2,82.0,0.0,2,111,700.0,0.0,0.0,77,71,4218.731404146406,0.0,1193.6403803604428,4700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,116003,2,2,2,0,1,,480.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,288.607701429064,700.0,20581.220053925106,5,5,0,1,100.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.22836352692821282,13720.813369283404,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +15987,2,29.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,459.0,0.0,0.0,20,2,1,2,2,1,2,2,2,2,15.0,2,,2,116004,1,2,0,1,1,768.0,0.0,409.0,22,2.0,1.0,4.0,3.0,2.0,3,3,809.995910329252,0.0,86523.58834229413,0,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.005304911744808362,43261.79417114706,9,5,9,9_0,9_4,9_0_1 +15988,2,46.0,0.0,7,111,674.0,756.0,0.0,34,31,0.0,0.0,1149.3051662327691,1430.0,0.0,1435.2690602424805,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,116005,2,2,0,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1599.41013782355,674.0,135098.89921232197,1,1,1,2,135.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010584838280233553,58738.65183144434,10,5,10,10_0,10_3,10_0_0 +15989,2,50.0,0.0,5,111,498.6,798.3,0.0,75,42,0.0,0.0,850.2129909253098,1297.0,0.0,1515.5757814703334,20,0,0,0,0,0,0,0,0,0,,1,,3,116006,2,2,1,0,1,,149.0,370.0,42,1.0,0.0,2.0,2.0,1.5,2,2,791.877564298921,498.6,29241.023060690393,5,1,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044355493216090544,19494.015373793594,5,3,5,5_1,5_3,5_0_0 +15990,1,42.0,460.0,5,111,564.0,,,0,85,0.0,0.0,,696.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,,3,116007,2,1,0,0,2,,1080.0,650.0,31,1.0,0.0,3.0,6.0,2.8999999999999995,3,2,167.57642985956335,564.0,39987.70133985613,0,6,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017405351562588822,13788.862530984876,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +15991,2,43.0,0.0,2,111,1200.0,,,46,31,0.0,0.0,,1240.0,55.423569015860835,,12,0,0,0,0,0,0,0,0,2,10.0,1,,2,116008,1,2,0,0,2,,282.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,161.2558285822997,1200.0,195538.46093286521,1,1,3,4,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006341463434274103,93113.5528251739,10,5,10,10_1,10_2,10_0_1 +15992,2,44.0,0.0,5,111,600.0,0.0,0.0,47,38,0.0,0.0,1023.1203260232367,1156.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,,3,116009,2,1,0,1,1,800.0,0.0,700.0,43,2.0,0.0,3.0,5.0,2.4,2,2,662.86057582363,600.0,100892.18348185265,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011457775618543614,42038.40978410527,9,5,9,9_0,9_4,9_0_0 +15993,2,59.0,0.0,9,111,400.0,,,0,77,0.0,0.0,,442.0,58.19474746665388,,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,116010,2,2,0,0,2,,120.0,,11,0.0,4.0,1.0,1.0,1.0,1,1,105.6704307095364,400.0,19486.649909656182,0,5,0,1,28.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022682195351648237,19486.649909656182,5,3,5,5_1,5_3,5_0_0 +15994,2,64.0,0.0,2,111,280.0,850.0,0.0,0,77,0.0,0.0,477.4561521441771,1130.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,0,,1,,2,116011,2,1,1,0,1,,245.0,233.0,11,0.0,4.0,3.0,1.0,1.0,1,1,199.472166180233,280.0,20500.0,0,5,2,3,50.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055121951219512196,20500.0,5,3,5,5_1,5_3,5_0_1 +15995,2,45.0,0.0,7,111,1000.0,,,0,56,0.0,0.0,,1126.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,116012,2,1,0,0,2,,500.0,,32,4.0,0.0,5.0,6.0,3.3,5,5,72.4610141169146,1000.0,25252.413096610824,0,4,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0445897980399791,7652.246392912371,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +15996,1,85.0,247.0,7,111,75.0,0.0,0.0,0,77,0.0,0.0,127.89004075290458,75.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,116013,2,1,0,1,1,293.0,80.0,344.0,11,0.0,0.0,1.0,1.0,1.0,1,1,318.580042657064,75.0,11622.065145411716,0,5,2,3,48.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00645324209265935,11622.065145411716,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +15997,2,67.0,0.0,2,111,170.0,80.0,0.0,0,77,0.0,0.0,289.8840923732504,250.0,0.0,151.8803238351831,70,2,1,2,1,1,2,2,2,0,,2,,2,116014,2,1,0,1,1,1000.0,100.0,408.0,11,0.0,3.0,4.0,1.0,1.0,1,1,249.381068303773,170.0,18678.18420051347,0,5,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013384598701683613,18678.18420051347,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +15998,2,67.0,0.0,6,112,608.0,0.0,0.0,75,75,0.0,317.83854648245375,1036.7619303702131,905.0,78.97858584760169,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,116015,2,1,2,0,1,,74.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,278.6714423496,608.0,40577.35779970857,5,5,1,2,96.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02230307859045716,27051.57186647238,7,4,7,7_1,7_0,7_0_0 +15999,2,90.0,0.0,2,111,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,,2,116016,2,1,0,1,1,,0.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,576.413107829227,500.0,49372.88269264769,0,5,0,1,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010127016546968948,49372.88269264769,10,5,10,10_0,10_3,10_0_1 +16000,2,37.0,0.0,5,111,500.0,1000.0,0.0,64,64,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,41,2,2,2,2,2,2,2,1,0,,1,,3,116017,2,3,3,0,1,,450.0,447.0,43,2.0,0.0,3.0,5.0,2.4,2,2,1013.76907984795,500.0,58372.43236896073,1,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.02569706176571148,24321.846820400307,7,4,7,7_1,7_3,7_0_0 +16001,2,43.0,0.0,6,111,1000.0,0.0,0.0,56,21,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116018,2,1,2,0,1,,500.0,260.0,43,3.0,0.0,4.0,5.0,2.5999999999999996,3,3,215.182210663052,1000.0,37192.00762780826,1,1,2,3,60.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028500747004779697,14304.618318387795,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +16002,2,32.0,0.0,7,112,220.0,0.0,0.0,0,46,0.0,0.0,375.14411954185346,220.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,2,,5,116019,2,1,0,0,1,,0.0,485.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1570.98411180028,220.0,22912.10029916137,0,1,2,3,25.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009601913274098772,22912.10029916137,6,3,6,6_0,6_1,6_0_0 +16003,0,25.0,0.0,7,111,432.0,,,0,63,0.0,0.0,,498.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,,5,116020,2,2,0,0,2,,294.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,128.2530347879004,432.0,9388.16882919986,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053045488322608685,9388.16882919986,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16004,2,56.0,0.0,1,111,1280.0,0.0,0.0,0,37,0.0,0.0,2182.6566955162384,1280.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,1,116021,2,2,0,0,1,,264.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1266.55937560768,1280.0,48798.90041114184,0,1,0,1,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026230099227968432,48798.90041114184,10,5,10,10_0,10_4,10_1_0 +16005,2,65.0,0.0,5,111,517.0,46.0,0.0,0,75,0.0,0.0,881.5886809233556,563.0,0.0,87.3311862052303,50,0,0,0,0,0,0,0,0,0,,2,,3,116022,1,2,0,1,2,500.0,210.0,403.0,11,0.0,3.0,3.0,1.0,1.0,1,1,338.591852437045,517.0,20605.49398633771,0,5,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027322810138562664,20605.49398633771,5,3,5,5_0,5_3,5_0_0 +16006,2,70.0,0.0,5,111,766.0,0.0,0.0,77,75,2614.5587877197354,264.8654554020448,1306.1836162229988,3545.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,116023,2,1,2,0,1,,428.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1577.60895102053,766.0,32643.76155838743,5,5,0,1,110.0,7,5,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10859655354544011,21762.50770559162,6,3,6,6_1,6_2,6_0_0 +16007,2,77.0,0.0,6,111,240.0,106.0,0.0,0,86,0.0,0.0,409.2481304092947,932.0,0.0,201.24142908161764,70,2,2,1,2,1,2,2,2,0,,2,,4,116024,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,421.774785190642,240.0,22275.53318275994,0,5,0,1,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.0418396270182802,22275.53318275994,6,3,6,6_0,6_3,6_0_0 +16008,2,44.0,0.0,9,111,1500.0,0.0,0.0,43,43,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,116025,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,774.319242099196,1500.0,74861.64615188872,1,1,1,2,120.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020036962544967438,31192.352563286968,8,4,8,8_1,8_2,8_0_0 +16009,1,32.0,467.0,2,111,400.0,,,0,81,0.0,0.0,,660.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,8,,2,116026,2,3,0,0,2,,550.0,504.0,32,2.0,0.0,4.0,4.0,2.3,3,1,7.835959960480189,400.0,19706.490367775834,0,4,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03349150395035515,8568.03929033732,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16010,2,49.0,0.0,1,111,320.0,0.0,0.0,74,37,0.0,0.0,545.6641738790596,1353.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,2,,1,116027,2,2,0,1,1,900.0,0.0,1569.0,42,1.0,0.0,3.0,4.0,2.5,4,3,696.810228475621,320.0,79342.44181267434,6,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0170526639852401,31736.976725069737,8,4,8,8_0,8_4,8_1_0 +16011,2,35.0,0.0,8,111,0.0,,,42,42,0.0,0.0,,551.0,0.0,,20,0,0,0,0,0,0,0,0,2,50.0,1,2001.0,6,116028,2,1,0,0,2,,921.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,121.7306513600567,0.0,89486.51271610813,1,1,1,2,122.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006157352468835413,42612.625102908634,9,5,9,9_1,9_2,9_0_0 +16012,2,46.0,0.0,8,112,1050.0,0.0,0.0,52,62,0.0,675.4069112752142,1790.4605705406643,1960.0,554.2356901586083,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,116029,2,1,1,0,1,,370.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1504.4733514069,1050.0,50390.25111469558,1,1,1,2,110.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03889641263225209,21908.80483247634,6,3,6,6_1,6_0,6_0_0 +16013,2,48.0,0.0,7,120,540.0,,,0,47,0.0,0.0,,563.0,31.86855218411998,,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,116030,2,2,0,0,2,,300.0,,32,1.0,0.0,4.0,3.0,2.0,3,1,104.65659834738923,540.0,81719.07444719315,0,1,1,2,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006889456394465291,40859.53722359658,9,5,9,9_1,9_1,9_0_0 +16014,2,37.0,0.0,9,112,0.0,0.0,0.0,37,38,0.0,0.0,0.0,1190.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,116031,2,1,1,0,1,,455.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,412.264933920181,0.0,64793.36943764241,1,1,1,2,100.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01836607681199948,35996.316354245784,9,5,9,9_1,9_0,9_0_0 +16015,2,59.0,0.0,6,112,1331.0,0.0,0.0,0,75,0.0,0.0,2269.6219232282133,1446.0,159.34276092059991,0.0,31,2,2,2,1,2,2,2,2,0,,1,,4,116032,1,3,2,0,2,,398.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,996.407733237702,1331.0,47858.56748490674,0,5,0,1,143.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.030214025951696696,47858.56748490674,10,5,10,10_1,10_1,10_0_0 +16016,2,63.0,0.0,1,111,800.0,0.0,0.0,77,78,0.0,0.0,1364.160434697649,900.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116033,1,1,1,0,2,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1753.5050492958,800.0,30393.246194848645,5,5,0,1,150.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029611841862174665,20262.164129899098,5,3,5,5_1,5_2,5_1_0 +16017,2,63.0,0.0,1,112,2970.0,0.0,0.0,77,78,0.0,0.0,5064.445613815022,2970.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,116034,2,2,3,0,1,,360.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,1154.99263659925,2970.0,44055.382513137345,5,5,0,1,120.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.06741514499651306,22027.691256568673,6,3,6,6_1,6_0,6_1_0 +16018,2,55.0,0.0,5,112,400.0,350.0,0.0,77,65,0.0,1059.4618216081792,682.0802173488245,1550.0,0.0,664.4764167789261,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,116035,1,2,4,0,1,,359.0,524.0,42,3.0,4.0,7.0,4.0,2.5,4,4,863.576659069191,400.0,43768.076386120156,6,1,2,3,100.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03541393929049941,17507.230554448062,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +16019,2,55.0,0.0,5,400,1910.0,0.0,0.0,52,47,0.0,0.0,3256.9330378406366,2060.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,116036,2,1,2,0,1,,454.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1357.22782677957,1910.0,40414.31295578786,1,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05097204058011782,26942.87530385857,7,4,7,7_1,7_0,7_0_0 +16020,2,64.0,0.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,409.2481304092947,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,116037,2,2,0,1,1,748.0,0.0,350.0,11,0.0,2.0,2.0,1.0,1.0,1,1,374.465752369213,240.0,81715.03983233651,0,5,2,3,50.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.002937035831989236,81715.03983233651,10,5,10,10_0,10_3,10_0_1 +16021,2,75.0,0.0,9,111,588.0,,,77,77,0.0,0.0,,680.0,127.47420873647992,,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,116038,2,2,0,0,2,,600.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,95.34669486432476,588.0,34344.460326093365,5,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019799408508491448,22896.306884062244,6,3,6,6_1,6_3,6_0_0 +16022,0,71.0,0.0,5,112,958.0,0.0,0.0,56,75,0.0,0.0,1633.5821205504346,1083.0,173.19865317456512,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,116039,2,1,2,0,1,,0.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,860.543228825381,958.0,38970.76279771525,4,5,0,1,90.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027790064198165845,25980.508531810166,7,4,7,7_1,7_0,7_0_0 +16023,2,76.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1495.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116040,2,1,2,0,2,,164.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,417.295726311481,0.0,14477.43571160022,0,5,0,1,90.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1032641435804901,14477.43571160022,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +16024,2,24.0,0.0,1,111,610.0,0.0,0.0,0,37,0.0,0.0,1040.1723314569574,610.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,8.0,2,,1,116041,1,3,0,0,1,,190.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1657.68507579268,610.0,22728.756981130646,0,1,2,3,48.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026838247270029786,22728.756981130646,6,3,6,6_0,6_3,6_1_0 +16025,2,85.0,0.0,5,111,184.0,65.0,0.0,0,75,0.0,0.0,313.75689998045925,249.0,0.0,123.40276311608629,71,0,0,0,0,0,0,0,0,0,,2,,3,116042,2,1,0,1,1,,0.0,593.0,11,0.0,0.0,3.0,1.0,1.0,1,1,308.859328028593,184.0,14920.20889628837,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01668877438183473,14920.20889628837,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +16026,2,85.0,0.0,2,111,546.0,,,0,78,0.0,0.0,,684.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,116043,2,1,0,0,2,,312.0,,21,1.0,8.0,4.0,2.0,1.5,2,2,128.11110379737067,546.0,23317.335856948626,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029334397557093394,15544.890571299084,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +16027,2,74.0,0.0,2,112,2006.0,0.0,0.0,74,74,0.0,0.0,3420.6322900043547,2126.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116044,2,1,2,0,1,,133.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,843.509071969905,2006.0,65199.746862756874,5,5,0,1,98.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03260748856088588,43466.497908504585,10,5,10,10_1,10_0,10_0_1 +16028,2,53.0,0.0,1,111,360.0,800.0,0.0,52,53,0.0,0.0,613.872195613942,1160.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,1,116045,2,2,2,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,232.962620023427,360.0,35891.66075839566,1,1,0,1,150.0,4,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03231948523665505,23927.77383893044,6,3,6,6_1,6_2,6_1_0 +16029,2,49.0,0.0,5,111,400.0,0.0,0.0,0,43,2109.365702073203,0.0,682.0802173488245,2460.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,1,3.0,1,,3,116046,2,1,1,0,1,,485.0,,32,2.0,1.0,6.0,3.0,2.0,3,2,1169.1799321231,400.0,53128.88846713417,0,1,1,2,120.0,4,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04630249325697393,26564.444233567086,7,4,7,7_1,7_2,7_0_0 +16030,2,76.0,0.0,2,111,937.0,0.0,0.0,75,31,3164.0485531098047,0.0,1597.7729091396213,3937.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,116047,2,1,2,0,1,,431.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1369.56283035843,937.0,93734.64319415367,5,5,0,1,300.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.042001546769055764,62489.76212943578,10,5,10,10_1,10_2,10_0_1 +16031,2,67.0,0.0,2,111,0.0,0.0,720.0,86,78,0.0,0.0,453.8291690986155,720.0,0.0,861.6471462465702,71,2,2,2,2,1,2,2,2,0,,2,,2,116048,2,2,0,1,1,865.0,0.0,267.0,41,1.0,5.0,4.0,4.0,2.5,4,4,322.948197137359,0.0,22876.289791079103,6,5,2,3,88.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.03147363521687739,9150.515916431641,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +16032,2,73.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,592.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,116049,2,2,0,1,1,328.0,306.0,512.0,11,0.0,4.0,2.0,1.0,1.0,1,1,1779.83591167698,0.0,17116.152210362445,0,5,2,3,52.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03458721286911622,17116.152210362445,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +16033,2,58.0,0.0,6,112,1100.0,0.0,0.0,34,34,0.0,198.6490915515336,1875.7205977092674,1340.0,124.70303028568689,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,116050,2,1,2,0,1,,500.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,601.797767564672,1100.0,84986.97549212784,1,1,0,1,180.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01576712187062265,42493.48774606392,9,5,9,9_1,9_0,9_0_0 +16034,2,60.0,0.0,1,111,0.0,0.0,0.0,34,31,1898.4291318658827,0.0,0.0,1854.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,15.0,2,,1,116051,2,2,0,1,2,,168.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,756.325985841101,0.0,329136.0987804787,1,1,0,1,206.0,10,8,1,1,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005632928162147744,164568.04939023935,10,5,10,10_0,10_4,10_1_0 +16035,2,56.0,0.0,6,112,1500.0,0.0,0.0,67,46,0.0,132.4327277010224,2557.8008150580918,1615.0,20.783838380947813,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,4,116052,2,1,2,0,1,,200.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,1148.041674955,1500.0,59343.9122938277,1,1,0,1,140.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027214248902291776,29671.95614691385,8,4,8,8_1,8_0,8_0_0 +16036,2,67.0,0.0,2,112,165.0,0.0,0.0,0,78,2087.2173622014343,794.5963662061343,281.3580896563901,2762.0,24.940606057137376,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116053,1,1,2,0,2,,100.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,923.562952002717,165.0,14115.38898374474,0,5,0,1,84.0,9,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19567296396724984,14115.38898374474,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +16037,2,75.0,0.0,5,111,580.0,,,0,86,0.0,0.0,,601.0,29.09737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,3,116054,1,1,0,0,1,,240.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,87.52851394772053,580.0,22755.534666401378,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026411157057424736,22755.534666401378,6,3,6,6_1,6_2,6_0_0 +16038,2,89.0,0.0,2,111,453.0,72.0,0.0,0,74,0.0,0.0,772.4558461475438,525.0,0.0,136.6922914516648,20,0,0,0,0,0,0,0,0,0,,2,,2,116055,2,1,0,1,1,,0.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1066.40184982706,453.0,129414.47085969485,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004056733350702184,129414.47085969485,10,5,10,10_0,10_4,10_0_1 +16039,0,52.0,0.0,9,111,500.0,,,0,47,0.0,0.0,,650.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,116056,2,2,0,0,2,,210.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,220.56267870854617,500.0,7265.84,0,4,5,0,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08945971835328055,7265.84,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16040,2,35.0,0.0,9,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,729.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,116057,2,1,0,0,1,,107.0,365.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2193.02499195181,0.0,25000.0,0,1,2,3,47.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02916,25000.0,7,4,7,7_0,7_3,7_0_0 +16041,2,89.0,0.0,1,112,0.0,0.0,0.0,0,71,0.0,0.0,0.0,1516.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116058,2,2,2,0,1,,185.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,356.347244954715,0.0,16695.58587146514,0,5,0,1,70.0,9,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0908024439316643,16695.58587146514,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +16042,2,53.0,0.0,1,211,487.0,0.0,0.0,0,63,0.0,0.0,830.4326646221938,487.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,116059,2,2,0,0,1,,107.0,348.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1632.37886222693,487.0,31481.8340739673,0,1,2,3,50.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015469238509287045,31481.8340739673,8,4,8,8_0,8_1,8_1_0 +16043,2,60.0,0.0,8,111,288.0,414.0,0.0,0,52,0.0,0.0,491.09775649115363,702.0,0.0,785.9806758470727,20,0,0,0,0,0,0,0,0,1,20.0,2,2003.0,6,116060,2,1,0,0,1,,88.0,378.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1585.47594216374,288.0,24021.197866749837,0,1,2,3,55.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029224187898294157,24021.197866749837,6,3,6,6_0,6_2,6_0_0 +16044,2,51.0,0.0,2,111,1440.0,1800.0,0.0,54,62,0.0,26.486545540204478,2455.488782455768,3260.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,116061,1,2,2,0,1,,400.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,1466.78410220476,1440.0,69265.25324147414,1,1,0,1,80.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04706544547862854,27706.10129658966,7,4,7,7_1,7_2,7_0_1 +16045,2,67.0,0.0,1,111,413.0,417.0,0.0,0,75,0.0,0.0,704.2478244126613,830.0,0.0,791.676187990892,50,0,0,0,0,0,0,0,0,0,,2,,1,116062,2,3,0,0,1,,0.0,272.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1049.56406609859,413.0,33441.40464027242,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02481953162339531,33441.40464027242,8,4,8,8_0,8_4,8_1_0 +16046,2,68.0,0.0,1,300,700.0,0.0,0.0,71,71,0.0,0.0,1193.6403803604428,790.0,124.70303028568689,0.0,44,1,2,2,1,2,2,2,2,0,,1,,1,116063,2,1,2,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,722.435669378489,700.0,17674.95779276843,5,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.044696004893614076,11783.305195178953,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +16047,2,90.0,0.0,7,111,1392.0,0.0,0.0,0,74,0.0,0.0,2373.6391563739094,1392.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,116064,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1486.84679179215,1392.0,51671.364229694074,0,5,0,1,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02693948613030923,51671.364229694074,10,5,10,10_0,10_2,10_0_0 +16048,2,82.0,0.0,1,300,120.0,0.0,0.0,0,71,0.0,556.2174563442941,204.62406520464734,540.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,116065,2,1,2,0,1,,307.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1463.20703072385,120.0,16372.917336466646,0,5,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03298129398096226,16372.917336466646,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +16049,2,46.0,0.0,1,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,794.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,116066,2,1,1,0,1,,195.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,1359.20017288903,0.0,24429.183510908428,0,1,1,2,45.0,5,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032502109603681724,16286.122340605618,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +16050,2,65.0,0.0,7,111,360.0,,,75,75,0.0,0.0,,448.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,0,,1,,5,116067,1,1,0,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,115.12602130892775,360.0,59977.34732996902,5,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0074694867303033725,39984.898219979346,9,5,9,9_1,9_3,9_0_0 +16051,2,76.0,0.0,1,111,400.0,1000.0,0.0,0,78,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,116068,2,2,2,0,1,,160.0,330.0,11,0.0,3.0,4.0,1.0,1.0,1,1,233.041406701419,400.0,18053.592790047773,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.077546891429376,18053.592790047773,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +16052,2,46.0,0.0,8,111,600.0,,,85,68,0.0,0.0,,912.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,116069,2,2,0,0,2,,0.0,,42,1.0,4.0,3.0,3.0,1.8,2,2,47.267806416673594,600.0,17704.649178396237,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05151189333437065,9835.916210220132,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16053,2,39.0,0.0,2,111,360.0,0.0,0.0,54,62,0.0,0.0,613.872195613942,360.0,0.0,0.0,31,2,1,2,1,1,2,2,2,0,,2,,2,116070,1,3,0,1,1,561.0,0.0,276.0,43,2.0,0.0,2.0,4.0,2.1,2,2,317.295525270531,360.0,39093.86842479982,1,1,2,3,41.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009208605198344308,18616.127821333244,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +16054,1,65.0,136.0,5,111,229.0,,,0,77,0.0,0.0,,277.0,66.50828281903301,,71,0,0,0,0,0,0,0,0,0,,1,,3,116071,2,2,0,0,2,,265.0,280.0,11,0.0,2.0,4.0,1.0,1.0,1,1,89.00765803779738,229.0,13450.995630150508,0,5,2,3,172.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02059327113147687,13450.995630150508,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +16055,1,35.0,400.0,8,111,390.0,,,56,21,0.0,0.0,,516.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,1,5.0,8,2000.0,6,116072,2,1,0,0,2,,280.0,621.0,43,2.0,0.0,3.0,4.0,2.1,2,2,85.35162107175336,390.0,16184.763979186697,1,1,2,3,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03188183656329906,7707.030466279379,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16056,2,47.0,0.0,2,120,420.0,,,0,85,0.0,174.81120056534957,,912.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,0,,1,,2,116073,2,1,0,0,2,,350.0,,21,0.0,4.0,5.0,2.0,1.5,2,2,85.8341199189916,420.0,27134.917927669194,0,7,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03360983078817582,18089.945285112797,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +16057,2,63.0,0.0,2,300,1413.0,0.0,0.0,75,56,0.0,0.0,2409.4483677847224,1413.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,1,,2,116074,2,3,3,0,1,,600.0,,42,1.0,1.0,6.0,3.0,2.0,3,2,791.351820685326,1413.0,30966.728146589274,5,1,0,1,150.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.04562961877377511,15483.364073294637,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +16058,2,55.0,0.0,6,111,0.0,0.0,1450.0,0,52,0.0,0.0,913.9615211013785,1450.0,0.0,1735.2616139687873,50,2,2,2,2,1,1,2,2,2,15.0,1,,4,116075,2,2,5,0,1,,140.0,580.0,12,1.0,2.0,5.0,1.0,1.0,1,1,213.257880737874,0.0,19065.523218128426,0,1,2,3,100.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.07605351205999264,19065.523218128426,5,3,5,5_1,5_2,5_0_0 +16059,2,70.0,0.0,2,111,1000.0,,,77,78,0.0,0.0,,1126.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,116076,2,1,0,0,2,,400.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,112.63256558137451,1000.0,28918.3282607362,5,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0389372438768815,19278.88550715747,5,3,5,5_1,5_2,5_0_1 +16060,2,78.0,0.0,2,120,1130.0,0.0,0.0,90,78,0.0,0.0,1926.8766140104292,1250.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116077,2,1,2,0,1,,148.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1453.55628233811,1130.0,23256.85416114584,5,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05374759592758326,15504.569440763893,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +16061,2,46.0,0.0,6,111,500.0,0.0,0.0,64,56,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,116078,2,1,0,3,1,,0.0,610.0,43,2.0,2.0,1.0,2.0,1.5,2,2,970.090726739419,500.0,18724.763730889565,4,1,2,3,39.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02670260662222232,12483.175820593044,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +16062,2,61.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,116079,2,1,0,0,1,850.0,0.0,512.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1055.88217424808,300.0,28399.571870523137,0,5,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010563539526853924,28399.571870523137,8,4,8,8_0,8_4,8_0_0 +16063,1,66.0,373.0,2,111,420.0,480.0,0.0,86,78,0.0,0.0,716.1842282162656,900.0,0.0,911.2819430110987,71,2,2,2,2,1,2,2,2,0,,2,,2,116080,1,2,0,1,1,1143.0,0.0,462.0,41,2.0,2.0,5.0,5.0,3.0,5,5,180.246981774303,420.0,16227.989536983241,6,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.055459735042897286,5409.32984566108,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +16064,2,53.0,0.0,6,120,1423.0,0.0,0.0,55,64,0.0,0.0,2426.500373218443,1474.0,70.66505049522257,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,116081,2,1,2,0,2,,280.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,567.160874632914,1423.0,41933.33677550699,1,1,0,1,169.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03515103050089147,27955.557850337995,7,4,7,7_1,7_0,7_0_0 +16065,2,47.0,0.0,5,111,300.0,,,0,43,0.0,0.0,,342.0,58.19474746665388,,33,0,0,0,0,0,0,0,0,2,1.0,2,,3,116082,2,2,0,0,2,,88.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,111.45421636858671,300.0,30410.164968550154,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011246239550284995,30410.164968550154,8,4,8,8_0,8_3,8_0_0 +16066,2,47.0,0.0,6,112,2237.0,0.0,0.0,52,53,0.0,0.0,3814.533615523301,2267.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,116083,1,1,2,0,1,,187.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,739.686342842208,2237.0,62205.43216477072,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0364437625639371,31102.71608238536,8,4,8,8_1,8_0,8_0_0 +16067,1,20.0,368.0,5,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,222.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,116084,2,1,0,1,1,660.0,0.0,425.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2035.92585240392,0.0,5330.690672460465,0,1,3,4,30.0,8,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041645635367083184,5330.690672460465,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +16068,2,52.0,0.0,2,111,540.0,,,0,52,0.0,0.0,,582.0,58.19474746665388,,44,0,0,0,0,0,0,0,0,2,10.0,2,,2,116085,2,1,0,0,2,,0.0,392.0,12,1.0,3.0,5.0,1.0,1.0,1,1,83.84776407817584,540.0,26538.27437434106,0,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021930589449429903,26538.27437434106,7,4,7,7_0,7_3,7_0_1 +16069,2,47.0,0.0,6,111,450.0,500.0,0.0,0,46,0.0,0.0,767.3402445174275,950.0,0.0,949.2520239698945,43,0,0,0,0,0,0,0,0,2,20.0,2,,4,116086,1,3,0,0,2,,0.0,423.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2183.95359274235,450.0,25499.521174168007,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03725560152723128,25499.521174168007,7,4,7,7_0,7_3,7_0_0 +16070,2,27.0,0.0,1,112,0.0,0.0,0.0,43,53,0.0,0.0,0.0,1055.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,116087,2,1,2,0,1,,137.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,871.268290498384,0.0,43655.067480143065,1,1,1,2,94.0,6,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02416672475606359,29103.378320095377,8,4,8,8_1,8_0,8_1_0 +16071,2,40.0,0.0,2,111,370.0,120.0,0.0,0,85,0.0,0.0,630.9242010476627,490.0,0.0,227.8204857527747,70,0,0,0,0,0,0,0,0,0,,2,,2,116088,2,2,0,1,1,,100.0,150.0,11,0.0,2.0,2.0,1.0,1.0,1,1,309.901252789814,370.0,9408.816619681096,0,7,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05207881286314284,9408.816619681096,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +16072,2,69.0,0.0,9,111,300.0,,,75,72,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,116089,2,1,0,0,1,,150.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,174.7930949392249,300.0,17107.52194276802,5,5,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017536145854649687,11405.014628512014,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16073,2,77.0,0.0,2,112,910.0,0.0,0.0,71,71,3005.8461254543145,0.0,1551.7324944685756,3820.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116090,2,3,3,0,1,,397.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,932.767756052088,910.0,21893.925535164697,5,5,0,1,175.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17447761909414314,14595.950356776464,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +16074,2,63.0,0.0,1,211,229.0,0.0,0.0,0,78,2003.897416969543,331.081819252556,390.490924432202,2431.0,72.05063972061909,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116091,2,1,4,0,1,,80.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,558.4151412869,229.0,22900.168777635176,0,5,1,2,100.0,1,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10615642284585124,22900.168777635176,6,3,6,6_1,6_1,6_1_0 +16076,2,31.0,0.0,2,112,1141.0,0.0,0.0,0,56,0.0,0.0,1945.6338199875217,1261.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116093,2,1,2,0,1,,96.0,,22,2.0,4.0,4.0,2.0,1.5,2,2,278.6714423496,1141.0,30791.250495386463,0,1,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04095319221247409,20527.50033025764,5,3,5,5_1,5_0,5_0_1 +16077,1,73.0,59.0,5,111,294.0,0.0,0.0,0,78,0.0,0.0,501.328959751386,326.0,44.33885521268867,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,116094,2,1,0,1,1,,50.0,253.0,11,0.0,2.0,3.0,1.0,1.0,1,1,379.999066426145,294.0,20125.190668277213,0,5,2,3,70.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01619860429515656,20125.190668277213,5,3,5,5_0,5_2,5_0_0 +16078,2,44.0,0.0,7,111,1680.0,0.0,0.0,56,47,0.0,278.10872817214704,2864.7369128650625,1942.0,72.05063972061909,0.0,50,1,2,2,1,1,2,2,2,0,,1,,5,116095,2,1,2,0,1,,140.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,992.594769974096,1680.0,47262.01827078812,1,1,1,2,90.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04109007763640764,22505.72298608958,6,3,6,6_1,6_2,6_0_0 +16079,2,43.0,0.0,5,111,700.0,2600.0,0.0,0,45,0.0,0.0,1193.6403803604428,3370.0,96.99124577775646,4936.110524643452,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,116096,2,1,2,0,1,,500.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,444.234090542577,700.0,22714.971206311653,0,1,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14836030252433696,17473.054774085886,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +16080,2,59.0,0.0,5,111,320.0,0.0,0.0,56,78,6644.50196153059,0.0,545.6641738790596,6720.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,116097,2,1,2,0,1,,100.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,389.73467055905,320.0,17380.682103069783,1,5,0,1,120.0,8,6,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3866361492690273,11587.121402046521,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16081,2,68.0,0.0,2,111,240.0,500.0,0.0,75,78,0.0,0.0,409.2481304092947,740.0,0.0,949.2520239698945,71,2,2,1,2,1,2,1,2,0,,2,,2,116098,2,1,0,0,1,,210.0,280.0,41,0.0,0.0,3.0,2.0,1.5,2,2,462.104522442129,240.0,22982.671710092432,5,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.032198171271577716,15321.781140061621,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +16082,2,43.0,0.0,9,111,611.2,,,46,31,0.0,0.0,,651.0,55.423569015860835,,12,0,0,0,0,0,0,0,0,0,,1,2007.0,6,116099,2,3,0,0,2,,672.0,1260.0,43,2.0,0.0,4.0,2.0,1.5,2,2,195.40807633106868,611.2,62877.99004060383,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010353384381078546,41918.66002706922,9,5,9,9_1,9_2,9_0_0 +16083,2,28.0,0.0,6,112,0.0,0.0,0.0,43,42,0.0,0.0,0.0,1143.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,4,116100,2,1,0,0,1,,457.0,619.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2978.04986012407,0.0,49906.409100241086,1,1,2,3,83.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02290287000421512,27725.78283346727,7,4,7,7_0,7_1,7_0_0 +16084,2,55.0,0.0,9,111,1324.0,0.0,0.0,22,22,0.0,66.2163638505112,2257.685519424609,2203.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,116101,2,1,1,0,1,,500.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,1036.58821255983,1324.0,47670.70581448043,1,1,0,1,195.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04621286726010291,23835.352907240216,6,3,6,6_1,6_4,6_0_0 +16085,2,63.0,0.0,5,111,420.0,,,0,77,0.0,0.0,,525.0,145.4868686666347,,71,0,0,0,0,0,0,0,0,0,,1,,3,116102,2,2,0,0,2,,560.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,101.27108788269733,420.0,19352.983003418372,0,5,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027127600944374712,19352.983003418372,5,3,5,5_1,5_2,5_0_0 +16086,1,57.0,263.0,8,111,150.0,,,22,42,0.0,0.0,,255.0,145.4868686666347,,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,116103,1,2,0,0,2,,207.0,357.0,43,2.0,1.0,3.0,2.0,1.5,2,2,92.57379701711649,150.0,12413.009906259294,4,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020542962740359657,8275.339937506196,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +16087,2,63.0,0.0,2,111,180.0,0.0,0.0,0,77,0.0,0.0,306.936097806971,180.0,0.0,0.0,71,1,2,2,2,1,2,2,2,0,,2,,2,116104,1,2,0,1,1,600.0,120.0,308.0,11,0.0,3.0,3.0,1.0,1.0,1,1,508.010402367491,180.0,16143.162901921678,0,5,2,3,57.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.011150231283274286,16143.162901921678,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +16088,2,30.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,389.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,90.0,2,,1,116105,2,1,0,0,1,,211.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,799.542699299464,0.0,19236.2310030226,0,1,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020222256633270635,19236.2310030226,5,3,5,5_0,5_3,5_1_0 +16089,2,42.0,0.0,6,111,500.0,1000.0,0.0,37,38,0.0,66.2163638505112,852.6002716860306,1550.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,3,30.0,1,,4,116106,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,644.526302059476,500.0,93734.41447242597,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01653608238472505,44635.435463059985,10,5,10,10_1,10_4,10_0_0 +16090,1,56.0,351.0,2,120,202.0,0.0,0.0,0,52,0.0,0.0,344.45050976115635,270.0,94.22006732696343,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116107,2,1,0,1,1,926.0,0.0,333.0,32,1.0,2.0,4.0,2.0,1.5,2,1,712.737054036279,202.0,10121.053333333333,0,4,2,3,75.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026677065232999463,6747.368888888889,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +16092,2,77.0,0.0,1,111,450.0,1200.0,0.0,75,86,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,0,,2,,1,116109,2,1,0,0,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,754.109845808345,450.0,133624.84288520558,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012348003293201114,89083.22859013705,10,5,10,10_0,10_4,10_1_0 +16093,2,36.0,0.0,7,111,980.0,0.0,0.0,0,63,0.0,0.0,1671.09653250462,980.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,5,116110,2,1,0,0,1,,145.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1177.15877322338,980.0,12015.081257237283,0,1,2,3,35.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08156415916119561,12015.081257237283,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +16094,2,83.0,0.0,5,111,1200.0,0.0,0.0,0,86,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,116111,2,1,2,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,796.963270306716,1200.0,14779.081587429659,0,5,0,1,130.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08119584379456024,14779.081587429659,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +16095,2,52.0,0.0,2,112,1970.0,0.0,0.0,52,21,0.0,0.0,3359.2450704429607,1970.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,116112,2,1,1,0,1,,595.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,2180.14225551091,1970.0,41937.9371870609,1,1,0,1,110.0,7,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0469741749865514,27958.624791373935,7,4,7,7_1,7_1,7_0_1 +16096,2,37.0,0.0,6,111,600.0,1240.0,0.0,52,21,0.0,0.0,1023.1203260232367,1840.0,0.0,2354.145019445338,31,2,2,2,1,2,2,2,2,0,,1,,4,116113,1,3,3,0,2,,170.0,390.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1171.97081959468,600.0,51674.20256555217,1,1,2,3,90.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.0356077096238851,21530.91773564674,6,3,6,6_1,6_2,6_0_0 +16097,2,53.0,0.0,2,111,940.0,900.0,0.0,38,46,0.0,0.0,1602.8885107697374,1840.0,0.0,1708.65364314581,70,2,2,2,2,1,2,2,2,2,25.0,2,,2,116114,1,2,0,0,2,,0.0,1046.0,43,3.0,0.0,4.0,3.0,2.0,3,3,2311.38842514626,940.0,58445.0,4,1,2,3,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03148259046967234,29222.5,8,4,8,8_0,8_3,8_0_1 +16098,2,71.0,0.0,1,111,600.0,600.0,0.0,86,78,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,71,2,2,2,2,1,2,2,2,0,,1,,1,116115,2,2,2,0,2,,300.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,672.859209226727,600.0,14353.182590140208,6,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.08360515115472225,9568.788393426805,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +16099,1,37.0,250.0,1,111,331.0,450.0,0.0,0,34,0.0,0.0,564.4213798561523,781.0,0.0,854.326821572905,20,1,2,2,1,1,2,2,2,1,10.0,1,,1,116116,2,1,2,0,1,,212.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,725.514509662628,331.0,27325.280527813862,0,1,1,2,66.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,1,0.028581591292540825,15180.711404341035,3,2,3_1,3_1_1,3_4_1,3_1_0_1 +16100,2,64.0,0.0,6,112,232.0,750.0,0.0,77,77,0.0,0.0,395.6065260623182,982.0,0.0,1423.8780359548418,50,2,2,2,2,1,2,2,2,0,,2,,4,116117,2,2,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1890.57713915614,232.0,25825.30876032774,5,5,0,1,58.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.0380247147909622,17216.87250688516,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +16101,2,49.0,0.0,7,111,744.0,1060.0,0.0,64,62,0.0,198.6490915515336,1268.6692042688135,1954.0,0.0,2012.4142908161764,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,116118,2,1,2,0,1,,480.0,,43,3.0,0.0,5.0,5.0,3.0,5,4,1060.93297042542,744.0,54523.51222698927,1,1,1,2,119.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035837749994263306,18174.504075663088,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +16102,2,50.0,0.0,7,120,900.0,,,56,63,0.0,0.0,,1158.0,357.4820201523024,,71,0,0,0,0,0,0,0,0,1,30.0,1,,5,116119,2,2,0,0,2,,800.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,94.88082273911692,900.0,11355.659425195649,1,4,0,1,50.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10197558386003186,7570.439616797099,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +16103,2,49.0,0.0,2,111,1000.0,0.0,0.0,52,47,0.0,0.0,1705.2005433720612,1262.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,116120,1,2,4,1,1,600.0,1000.0,533.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,4,3,145.375447774566,1000.0,63456.74979728405,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019887561276483997,20469.91928944647,5,3,5,5_1,5_4,5_0_1 +16104,2,38.0,0.0,6,111,350.0,,,38,54,0.0,0.0,,392.0,58.19474746665388,,31,0,0,0,0,0,0,0,0,2,25.0,2,,4,116121,1,2,0,0,2,,240.0,887.0,43,2.0,0.0,2.0,2.0,1.5,2,2,197.3142728541857,350.0,64148.07762652358,1,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006110861221473581,42765.38508434906,9,5,9,9_0,9_2,9_0_0 +16105,1,50.0,375.0,2,111,165.0,430.0,0.0,0,68,0.0,0.0,281.3580896563901,595.0,0.0,816.3567406141093,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,116122,2,2,0,1,2,660.0,0.0,341.0,32,1.0,0.0,3.0,4.0,2.3,3,2,222.402559847293,165.0,13385.13504823151,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.044452297108396634,5819.623934013701,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +16107,2,66.0,0.0,6,112,800.0,0.0,0.0,22,22,0.0,927.0290939071567,1364.160434697649,1800.0,415.67676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,116124,2,1,2,0,1,,200.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,1322.76690335993,800.0,49655.5068420596,1,1,0,1,150.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03624975585739767,19862.20273682384,5,3,5,5_1,5_0,5_0_0 +16108,2,36.0,0.0,1,111,300.0,0.0,0.0,62,45,0.0,0.0,511.56016301161833,300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,35.0,2,,1,116125,2,3,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1839.64144230372,300.0,54001.368802580444,1,1,1,2,29.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.005555414735814336,36000.91253505363,9,5,9,9_0,9_3,9_1_0 +16109,2,45.0,0.0,6,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,475.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,116126,1,1,0,0,2,,0.0,750.0,12,1.0,1.0,2.0,1.0,1.0,1,1,965.205179074406,0.0,4843.682406211334,0,4,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09806588462341793,4843.682406211334,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +16110,1,51.0,270.0,2,111,152.0,209.0,0.0,0,85,0.0,0.0,259.1904825925533,361.0,0.0,396.7873460194159,70,2,2,2,2,1,2,2,2,0,,2,,2,116127,2,1,0,1,1,31.0,150.0,334.0,11,0.0,2.0,3.0,1.0,1.0,1,1,277.645908331778,152.0,9793.42149441577,0,7,2,3,63.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.036861478922952814,9793.42149441577,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +16111,2,50.0,0.0,6,111,775.0,0.0,0.0,67,37,0.0,565.4877472833656,1321.5304211133473,1202.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,4,116128,2,2,2,0,1,,377.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,887.318979529124,775.0,70297.34146209506,1,1,0,1,78.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017098797408265132,35148.67073104753,9,5,9,9_1,9_2,9_0_0 +16112,1,41.0,450.0,1,111,675.0,1100.0,0.0,85,63,0.0,0.0,1151.0103667761414,1775.0,0.0,2088.354452733768,42,1,2,2,1,2,2,2,2,2,60.0,2,,1,116129,2,2,0,0,1,,0.0,550.0,42,1.0,0.0,3.0,5.0,2.8,4,3,300.245337495534,675.0,23657.544518873256,6,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.07502891936159985,8449.123042454734,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +16113,2,81.0,0.0,2,111,220.0,1360.0,0.0,0,78,0.0,0.0,375.14411954185346,1580.0,0.0,2581.965505198113,70,0,0,0,0,0,0,0,0,0,,1,,2,116130,2,1,1,0,1,,120.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1034.36187566014,220.0,23272.37261726261,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06789165960792554,23272.37261726261,6,3,6,6_1,6_4,6_0_1 +16114,2,70.0,0.0,2,111,1200.0,1600.0,0.0,0,74,0.0,0.0,2046.2406520464733,2800.0,0.0,3037.6064767036623,70,0,0,0,0,0,0,0,0,0,,2,,2,116131,2,1,0,0,1,,439.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1768.03767179072,1200.0,25799.667496514856,0,5,1,2,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.10852853046955886,25799.667496514856,7,4,7,7_0,7_3,7_0_1 +16115,2,57.0,0.0,7,120,1095.0,0.0,0.0,75,43,0.0,1536.2196413318597,1867.194594992407,2359.0,144.10127944123818,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,5,116132,2,1,1,0,1,,338.0,,42,2.0,5.0,8.0,5.0,3.0,5,4,844.011312358941,1095.0,43890.400956185724,6,1,0,1,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053747515370272156,14630.133652061908,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +16116,2,37.0,0.0,5,120,904.0,0.0,0.0,67,65,843.7462808292812,275.46007361812656,1541.5012912083432,1982.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,116133,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,451.004443719021,904.0,37532.398315629325,1,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052807709843968355,17872.570626490153,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +16117,2,49.0,0.0,5,300,700.0,0.0,0.0,85,62,0.0,529.7309108040896,1193.6403803604428,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,116134,2,1,2,0,1,,250.0,,42,3.0,0.0,4.0,5.0,3.0,5,4,1307.18039174365,700.0,22447.139211508907,6,1,0,1,140.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04900401737768068,7482.3797371696355,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +16120,2,48.0,0.0,5,111,620.0,,,68,43,0.0,0.0,,770.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,,3,116137,2,2,0,0,1,,150.0,250.0,43,2.0,0.0,3.0,5.0,2.8,4,3,131.77446760108205,620.0,47942.81368336318,4,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016060801209654505,17122.433458343992,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +16121,2,51.0,0.0,8,111,442.0,773.0,0.0,54,52,0.0,0.0,753.6986401704511,1215.0,0.0,1467.5436290574569,71,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,116138,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1061.25320767502,442.0,41259.94275844876,1,1,1,2,90.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02944744754283998,22922.19042136042,6,3,6,6_1,6_2,6_0_0 +16122,2,46.0,0.0,2,111,362.0,1570.0,0.0,55,65,0.0,463.51454695357836,617.2825967006861,2282.0,0.0,2980.6513552654687,50,0,0,0,0,0,0,0,0,0,,1,,2,116139,2,1,1,0,1,,503.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,346.462189661667,362.0,79952.23431629625,1,4,0,1,115.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028542041626657477,39976.117158148125,9,5,9,9_1,9_3,9_0_1 +16123,2,63.0,0.0,1,112,1180.0,0.0,0.0,77,77,0.0,211.89236432163582,2012.1366411790323,1400.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116140,2,1,2,0,1,,207.0,620.0,41,0.0,3.0,6.0,2.0,1.5,2,2,1799.06248045647,1180.0,34631.369207408236,7,5,2,3,90.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04042577674637583,23087.57947160549,6,3,6,6_1,6_0,6_1_0 +16124,2,52.0,0.0,2,211,480.0,60.0,0.0,0,55,0.0,0.0,818.4962608185893,540.0,0.0,113.91024287638734,71,0,0,0,0,0,0,0,0,0,,8,,2,116141,2,1,0,1,1,564.0,80.0,245.0,12,1.0,4.0,2.0,1.0,1.0,1,1,306.263532452823,480.0,13480.041800643086,0,4,2,3,49.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040059222959845604,13480.041800643086,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +16125,1,26.0,357.0,9,111,0.0,,,0,81,0.0,0.0,,44.0,60.965925917446924,,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,116142,2,2,0,0,2,,0.0,380.0,32,1.0,0.0,2.0,2.0,1.3,1,1,125.49584685487612,0.0,9506.823168378727,0,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.004628254804018161,7312.940898752867,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +16126,2,87.0,0.0,2,111,365.0,65.0,0.0,0,74,3796.8582637317654,0.0,622.3981983308023,4030.0,0.0,123.40276311608629,10,0,0,0,0,0,0,0,0,0,,1,,2,116143,2,2,1,0,1,,222.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1525.43519800037,365.0,45732.36431586839,0,5,0,1,135.0,8,6,2,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08812140068169742,45732.36431586839,10,5,10,10_1,10_2,10_0_1 +16127,2,79.0,0.0,2,111,240.0,112.0,0.0,77,77,0.0,0.0,409.2481304092947,352.0,0.0,212.63245336925638,70,0,0,0,0,0,0,0,0,0,,2,,2,116144,2,1,0,1,1,,0.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,364.627879469418,240.0,34629.90376625678,5,5,0,1,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010164625416689353,23086.602510837853,6,3,6,6_0,6_3,6_0_1 +16128,1,56.0,37.0,6,400,480.0,,,0,64,0.0,0.0,,603.0,170.42747472377206,,71,0,0,0,0,0,0,0,0,0,,1,,4,116145,2,1,0,0,2,,130.0,,32,1.0,2.0,6.0,2.0,1.5,2,1,128.2382467472021,480.0,10846.945027769085,0,1,1,2,133.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055591689499326274,7231.29668517939,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +16129,2,34.0,0.0,5,400,1400.0,,,0,42,0.0,0.0,,1550.0,207.83838380947813,,12,0,0,0,0,0,0,0,0,0,,1,,3,116146,2,2,0,0,2,,400.0,,22,2.0,8.0,5.0,5.0,3.0,5,3,8.280596007637794,1400.0,9584.102775834306,0,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16172614549879666,3194.700925278102,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +16130,2,30.0,0.0,2,111,300.0,60.0,0.0,63,54,0.0,0.0,511.56016301161833,360.0,0.0,113.91024287638734,20,0,0,0,0,0,0,0,0,3,35.0,2,,2,116147,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1773.2521460023,300.0,58282.59410876458,1,1,1,2,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006176801247524824,32379.218949313654,8,4,8,8_0,8_3,8_0_1 +16131,2,64.0,0.0,5,112,2400.0,0.0,0.0,55,72,0.0,0.0,4092.4813040929466,2520.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,116148,2,1,3,0,1,,540.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,1531.802836287,2400.0,112012.44704917364,1,5,0,1,150.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022497499754591702,56006.22352458682,10,5,10,10_1,10_1,10_0_0 +16133,1,50.0,160.0,2,111,570.0,1130.0,0.0,0,56,0.0,0.0,971.9643097220749,1700.0,0.0,2145.3095741719617,41,0,0,0,0,0,0,0,0,0,,2,,2,116150,2,3,0,0,1,,0.0,286.0,32,1.0,0.0,2.0,2.0,1.3,2,1,451.780840106292,570.0,16379.24652544384,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10378987808500147,12599.42040418757,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +16134,2,28.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,666.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,,1,116151,2,1,0,0,1,,0.0,575.0,12,1.0,0.0,2.0,1.0,1.0,1,1,360.229841444149,0.0,25379.205978596387,0,1,2,3,50.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026241955739737196,25379.205978596387,7,4,7,7_0,7_3,7_1_0 +16135,1,46.0,341.0,9,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1163.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,2007.0,6,116152,2,1,0,0,1,,293.0,487.0,32,1.0,0.0,5.0,3.0,1.8,3,1,2620.57561688421,0.0,14629.749427364823,0,1,2,3,80.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07949555156594947,8127.638570758235,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +16136,2,38.0,0.0,2,112,1300.0,300.0,0.0,42,54,0.0,0.0,2216.7607063836795,1600.0,0.0,569.5512143819367,41,1,2,2,1,1,1,2,2,2,40.0,1,,2,116153,1,3,3,0,1,,750.0,860.0,43,2.0,0.0,5.0,3.0,1.8,2,2,104.019498510001,1300.0,62267.798922765796,1,1,2,3,78.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.025695464231593745,34593.22162375878,9,5,9,9_1,9_0,9_0_1 +16137,2,36.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,360.0,0.0,,33,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,116154,2,1,0,0,1,,185.0,720.0,32,1.0,0.0,3.0,2.0,1.3,1,1,131.83379152637715,0.0,32911.94179550406,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010938278945582537,25316.878304233895,7,4,7,7_0,7_3,7_0_0 +16138,2,52.0,0.0,1,112,648.0,1750.0,0.0,0,31,0.0,0.0,1104.9699521050957,2398.0,0.0,3322.382083894631,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,116155,2,2,1,0,2,,324.0,,32,1.0,1.0,4.0,2.0,1.5,2,1,935.492516235356,648.0,68087.92029749026,0,1,0,1,90.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03521916941393775,45391.94686499351,10,5,10,10_1,10_1,10_1_0 +16139,2,38.0,0.0,9,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,1685.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,75.0,1,2013.0,6,116156,1,1,1,0,2,,855.0,,22,1.0,2.0,7.0,2.0,1.5,2,2,188.893746076188,0.0,39105.55332753094,0,1,1,2,180.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0430885093451352,26070.368885020627,7,4,7,7_1,7_4,7_0_0 +16140,1,45.0,160.0,5,111,400.0,0.0,0.0,63,62,0.0,0.0,682.0802173488245,1056.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,116157,1,2,0,1,1,,0.0,554.0,43,2.0,0.0,4.0,4.0,2.1,2,2,234.475667150579,400.0,21838.975637507785,1,1,2,3,75.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04835391629753694,10399.51220833704,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +16141,0,40.0,0.0,8,111,500.0,1800.0,0.0,42,33,0.0,0.0,852.6002716860306,2300.0,0.0,3417.30728629162,31,0,0,0,0,0,0,0,0,1,10.0,1,2000.0,6,116158,2,1,2,0,1,,1182.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1183.28880461503,500.0,69238.39178329542,1,1,5,0,113.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03321856474076716,28849.329909706426,8,4,8,8_1,8_2,8_0_0 +16142,1,79.0,126.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,621.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116159,2,1,1,0,1,,281.0,400.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1552.10338942769,0.0,10337.594167088017,0,5,2,3,70.0,6,4,7,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.060072004178408245,10337.594167088017,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +16145,1,79.0,67.0,2,111,186.0,300.0,0.0,0,77,0.0,0.0,317.16730106720337,486.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,116162,2,1,0,1,1,,0.0,326.0,11,0.0,0.0,4.0,1.0,1.0,1,1,349.326107514772,186.0,20420.711263864523,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02379936691333575,20420.711263864523,5,3,5,5_0,5_4,5_0_1 +16146,2,56.0,0.0,2,111,799.0,1300.0,0.0,74,37,0.0,79.45963662061344,1362.455234154277,2159.0,0.0,2468.055262321726,42,0,0,0,0,0,0,0,0,2,75.0,1,,2,116163,2,2,3,0,1,,210.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,602.746603579749,799.0,130399.86602331097,5,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016556765477151993,86933.24401554065,10,5,10,10_1,10_4,10_0_1 +16147,2,66.0,0.0,2,112,628.0,0.0,0.0,77,75,1833.0387951016135,0.0,1070.8659412376544,2486.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,116164,2,1,2,0,1,,307.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,861.260317493722,628.0,35462.10352780858,5,5,0,1,89.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07010300441006087,23641.402351872384,6,3,6,6_1,6_0,6_0_1 +16148,1,63.0,67.0,7,112,510.0,0.0,0.0,77,78,2636.7071275915036,145.67600047112464,869.6522771197511,3300.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,116165,1,1,2,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1035.01574518577,510.0,25367.822916407276,6,5,0,1,95.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1300860547187769,16911.881944271518,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +16149,2,76.0,0.0,2,111,34.0,29.0,0.0,77,74,0.0,0.0,57.97681847465008,63.0,0.0,55.056617390253884,60,0,0,0,0,0,0,0,0,0,,1,,2,116166,2,1,2,0,1,,415.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,280.332498295226,34.0,33214.23892854792,5,5,0,1,110.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0018967768653537012,22142.82595236528,6,3,6,6_1,6_2,6_0_1 +16150,2,41.0,0.0,7,211,1440.0,,,0,42,0.0,0.0,,1555.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,1,,5,116167,2,2,0,0,2,,300.0,,32,2.0,1.0,5.0,5.0,3.0,5,5,74.27866237847257,1440.0,102648.04281696555,0,1,1,2,150.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015148851915011783,34216.01427232185,9,5,9,9_1,9_2,9_0_0 +16151,2,48.0,0.0,7,211,996.0,,,63,42,0.0,0.0,,1066.0,96.99124577775646,,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,116168,2,2,0,0,2,,428.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,64.90511270760831,996.0,82072.64556962428,1,1,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012988493213560243,45595.91420534682,10,5,10,10_1,10_2,10_0_0 +16152,2,62.0,0.0,8,111,2161.0,,,47,75,0.0,0.0,,2305.0,199.524848457099,,41,0,0,0,0,0,0,0,0,0,,1,2001.0,6,116169,2,2,0,0,2,,900.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,43.54422871799204,2161.0,102655.8209230719,1,5,1,2,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022453670715149397,68437.21394871459,10,5,10,10_1,10_2,10_0_0 +16153,1,32.0,313.0,2,111,638.0,1550.0,0.0,56,53,0.0,0.0,1087.917946671375,2188.0,0.0,2942.681274306673,50,2,2,2,2,1,2,2,2,0,,2,,2,116170,1,3,0,0,1,,209.0,532.0,43,2.0,1.0,4.0,2.0,1.5,2,2,270.789574213324,638.0,14620.77235839935,4,4,2,3,64.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.14965009688718917,9747.181572266234,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +16154,2,43.0,0.0,2,111,570.0,722.0,0.0,0,52,0.0,0.0,971.9643097220749,1292.0,0.0,1370.7199226125276,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,116171,2,1,1,0,1,,225.0,,32,1.0,0.0,4.0,3.0,1.6,2,1,1982.91034622387,570.0,27424.470009194752,0,1,1,2,115.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0471112112491809,17140.29375574672,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +16155,1,48.0,375.0,5,111,330.0,0.0,0.0,68,64,0.0,0.0,562.7161793127802,330.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,2,,3,116172,2,1,0,1,1,1052.0,0.0,230.0,43,4.0,1.0,5.0,6.0,3.0999999999999996,4,4,315.379911643042,330.0,37541.33751751823,1,1,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0087903101440115,12110.108876618786,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +16156,2,84.0,0.0,2,111,350.0,0.0,0.0,0,72,1318.3535637957518,0.0,596.8201901802214,1670.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116173,2,1,2,0,2,,234.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,387.747796983353,350.0,10378.765589553646,0,5,0,1,110.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16090545504572099,10378.765589553646,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +16157,2,39.0,0.0,7,120,0.0,,,0,46,0.0,0.0,,693.0,0.0,,31,0,0,0,0,0,0,0,0,2,40.0,2,,5,116174,2,1,0,0,2,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,89.65804545182175,0.0,22490.806423075475,0,1,3,4,47.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030812590129671153,22490.806423075475,6,3,6,6_0,6_0,6_0_0 +16158,2,67.0,0.0,6,111,980.0,0.0,0.0,77,78,0.0,390.676546718016,1671.09653250462,1329.0,74.82181817141213,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116175,2,1,2,0,1,,420.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,673.080717803722,980.0,27583.4953771379,5,5,0,1,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04818098583334433,18388.996918091932,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +16159,0,59.0,0.0,9,111,500.0,1200.0,0.0,0,52,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,116176,2,1,1,0,1,,280.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,276.767739950906,500.0,9149.770789120743,0,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18579700401034455,9149.770789120743,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +16160,2,44.0,0.0,5,111,1200.0,,,85,52,0.0,0.0,,1250.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,1,5.0,2,,3,116177,2,2,0,0,2,,300.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,51.9615482541174,1200.0,19455.570928196146,6,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06424894980534482,12970.380618797431,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +16161,2,66.0,0.0,1,111,1090.0,0.0,0.0,77,75,2057.6862423724097,0.0,1858.6685922755466,3041.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,116178,1,2,3,0,1,,430.0,,41,0.0,6.0,3.0,2.0,1.5,2,2,249.641154421423,1090.0,41511.00359553477,5,5,0,1,87.0,8,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07325768438725756,27674.00239702318,7,4,7,7_1,7_2,7_1_0 +16162,0,51.0,0.0,2,111,200.0,,,0,85,0.0,0.0,,292.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,,2,116179,2,1,0,0,2,,460.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,71.84386004544594,200.0,10871.078947368413,0,7,0,1,154.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026860259355460308,7247.385964912275,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +16163,2,41.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1215.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,116180,2,1,1,0,1,,284.0,1200.0,32,1.0,0.0,3.0,2.0,1.3,1,1,886.640625511136,0.0,46942.28261311288,0,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025882848731787093,36109.44816393298,9,5,9,9_1,9_4,9_1_0 +16164,2,72.0,0.0,2,111,270.0,,,0,78,0.0,0.0,,420.0,207.83838380947813,,60,0,0,0,0,0,0,0,0,0,,1,,2,116181,2,1,0,0,2,,600.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,103.38432388626195,270.0,19459.353197820023,0,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021583451193385575,19459.353197820023,5,3,5,5_1,5_3,5_0_1 +16165,2,58.0,0.0,1,111,620.0,1300.0,0.0,77,63,0.0,0.0,1057.224336890678,1920.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,1,15.0,1,,1,116182,2,2,4,0,1,,204.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,700.52679834804,620.0,32241.449862169335,5,1,1,2,70.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059550671827970164,21494.29990811289,6,3,6,6_1,6_2,6_1_0 +16166,1,37.0,310.0,2,111,1200.0,2800.0,0.0,85,64,0.0,0.0,2046.2406520464733,4000.0,0.0,5315.811334231409,50,0,0,0,0,0,0,0,0,0,,1,,2,116183,1,2,2,0,1,,630.0,620.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1693.24477086905,1200.0,25443.094279309793,6,1,2,3,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.15721358243964775,10601.289283045748,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +16167,2,75.0,0.0,6,111,419.0,0.0,0.0,75,77,0.0,0.0,714.4790276728936,419.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,4,116184,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,620.692146326166,419.0,45206.1176630005,5,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009268657023890722,30137.411775333665,8,4,8,8_0,8_4,8_0_0 +16168,2,66.0,0.0,2,111,150.0,85.0,0.0,0,77,0.0,0.0,255.78008150580916,842.0,0.0,161.37284407488207,71,1,2,2,2,1,2,2,2,0,,2,,2,116185,1,2,0,1,1,840.0,0.0,384.0,11,0.0,1.0,4.0,1.0,1.0,1,1,232.341474375223,150.0,17064.80517549998,0,5,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04934131924394093,17064.80517549998,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +16169,1,33.0,297.0,9,111,539.0,573.0,0.0,67,63,0.0,0.0,919.1030928775409,1112.0,0.0,1087.842819469499,50,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,116186,1,1,0,0,1,,383.0,286.0,43,2.0,0.0,1.0,2.0,1.5,2,2,691.652623053618,539.0,22497.899966822544,4,1,2,3,36.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04942683546641494,14998.599977881697,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +16170,2,39.0,0.0,6,112,1300.0,0.0,0.0,53,33,0.0,463.51454695357836,2216.7607063836795,1650.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,4,116187,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1184.20063135974,1300.0,101160.2075947944,1,1,1,2,130.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016310761308529653,42150.086497831,9,5,9,9_1,9_1,9_0_0 +16171,1,65.0,243.0,5,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1742.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,116188,2,1,2,0,1,,269.0,460.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1625.3354492902,0.0,11084.189112082391,0,4,2,3,50.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15716079745527994,11084.189112082391,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +16172,2,54.0,0.0,5,111,416.0,1027.0,0.0,46,38,0.0,132.4327277010224,709.3634260427774,1543.0,0.0,1949.7636572341632,42,0,0,0,0,0,0,0,0,2,60.0,1,,3,116189,2,2,3,0,1,,335.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1231.48660368798,416.0,82018.760345754,1,1,0,1,116.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018812769096916485,54679.173563836,10,5,10,10_1,10_2,10_0_0 +16173,2,56.0,0.0,6,112,1100.0,0.0,0.0,43,34,0.0,1854.0581878143134,1875.7205977092674,2550.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,4,116190,2,1,2,0,1,,440.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,360.600008596372,1100.0,70815.54310855066,1,1,0,1,152.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03600904389155351,47210.362072367105,10,5,10,10_1,10_0,10_0_0 +16174,1,24.0,333.0,1,111,312.0,0.0,0.0,0,56,0.0,0.0,532.0225695320831,412.0,138.5589225396521,0.0,60,1,2,2,1,1,1,2,2,0,,8,,1,116191,1,1,0,0,2,408.0,272.0,310.0,32,1.0,0.0,3.0,2.0,1.3,1,1,566.513131995154,312.0,4823.507641365358,0,4,2,3,72.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08541501965639635,3710.3904933579674,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +16175,2,65.0,0.0,5,111,630.0,,,0,86,0.0,0.0,,814.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,3,116192,2,2,0,0,2,,1100.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,118.68643521005032,630.0,15761.202506772597,0,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05164580555641131,15761.202506772597,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +16176,1,23.0,279.0,9,300,864.0,,,0,42,0.0,0.0,,1128.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,116193,1,1,0,0,1,,360.0,428.0,22,2.0,1.0,4.0,3.0,1.8,2,2,96.13925277929084,864.0,21632.579274436885,0,1,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0521435740828627,12018.09959690938,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +16177,1,42.0,65.0,8,111,400.0,700.0,0.0,0,52,0.0,0.0,682.0802173488245,1100.0,0.0,1328.9528335578523,41,0,0,0,0,0,0,0,0,1,20.0,2,2000.0,6,116194,2,1,0,0,1,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,1,1,765.302909700554,400.0,23193.65213445315,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.047426769774045134,23193.65213445315,6,3,6,6_0,6_4,6_0_0 +16178,2,38.0,0.0,6,111,1369.0,0.0,0.0,0,54,0.0,0.0,2334.419543876352,1369.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,116195,2,1,2,0,1,,357.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,895.007576281109,1369.0,32076.82528230464,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042678787191424976,32076.82528230464,8,4,8,8_1,8_4,8_0_0 +16179,2,21.0,0.0,1,221,250.0,0.0,0.0,55,63,0.0,111.2434912688588,426.3001358430153,434.0,138.5589225396521,0.0,43,0,0,0,0,0,0,0,0,2,25.0,2,,1,116196,2,3,0,0,1,,72.0,325.0,43,2.0,0.0,3.0,2.0,1.5,2,2,3106.06479054314,250.0,9200.904647138941,1,1,2,3,55.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04716927483157366,6133.936431425961,1,1,1_0,1_0_0,1_1_0,1_1_0_0 +16180,1,62.0,255.0,1,111,1600.0,0.0,0.0,0,78,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,116197,2,1,0,0,1,,0.0,470.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2444.48035417148,1600.0,15098.160943537468,0,5,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.10597317156596181,15098.160943537468,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +16181,2,76.0,0.0,2,111,499.0,,,71,71,0.0,0.0,,675.0,243.8637036697877,,70,0,0,0,0,0,0,0,0,0,,1,,2,116198,2,1,0,0,2,,120.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,119.18797917402004,499.0,15330.716371347578,5,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044029253666289514,10220.477580898385,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +16182,1,52.0,67.0,2,111,180.0,0.0,0.0,0,65,0.0,0.0,306.936097806971,260.0,110.84713803172167,0.0,50,1,2,2,2,1,2,2,2,0,,2,,2,116199,1,2,0,1,1,756.0,240.0,218.0,12,1.0,0.0,3.0,1.0,1.0,1,1,367.564162195515,180.0,14113.566882672529,0,1,2,3,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.018421990851880718,14113.566882672529,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +16183,2,57.0,0.0,7,111,480.0,,,52,64,0.0,0.0,,1200.0,997.6242422854951,,71,0,0,0,0,0,0,0,0,0,,1,,5,116200,2,1,0,0,2,,700.0,,43,3.0,2.0,5.0,4.0,2.5,4,4,88.7112231166151,480.0,29722.42367590087,4,4,0,1,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0403735581285374,11888.969470360349,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16184,2,41.0,0.0,7,112,1250.0,0.0,0.0,21,43,843.7462808292812,0.0,2131.5006792150766,2170.0,166.2707070475825,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,116201,2,1,2,0,1,,300.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,1127.47181847601,1250.0,47803.62974840588,1,1,1,2,200.0,6,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045394042490515346,26557.57208244771,7,4,7,7_1,7_1,7_0_0 +16185,1,35.0,272.0,2,111,240.0,,,0,43,0.0,0.0,,372.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,,2,116202,2,2,0,0,2,,200.0,352.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.39674155358506,240.0,5590.606516967113,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06654018644864473,4300.466551513164,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +16186,1,36.0,420.0,2,111,384.0,1044.0,0.0,85,62,0.0,0.0,654.7970086548714,1428.0,0.0,1982.0382260491397,71,0,0,0,0,0,0,0,0,0,,2,,2,116203,2,3,0,1,2,1044.0,720.0,381.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,333.742190670505,384.0,10714.382603652011,6,4,2,3,77.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1332787947588566,4120.916386020005,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +16187,2,54.0,0.0,1,111,780.0,0.0,0.0,0,63,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,116204,2,2,0,0,1,,0.0,534.0,12,1.0,3.0,1.0,1.0,1.0,1,1,1259.30994017913,780.0,24332.642290751588,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03205570487083782,24332.642290751588,7,4,7,7_0,7_4,7_1_0 +16188,2,42.0,0.0,1,111,471.0,1263.0,0.0,21,46,0.0,0.0,803.1494559282409,1734.0,0.0,2397.8106125479535,31,0,0,0,0,0,0,0,0,0,,1,,1,116205,2,1,1,0,2,,355.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1106.01579732451,471.0,74486.66865099584,1,1,1,2,150.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023279333488849988,31036.111937914935,8,4,8,8_1,8_2,8_1_0 +16189,2,34.0,0.0,1,111,2160.0,0.0,0.0,52,38,0.0,0.0,3683.2331736836522,2160.0,0.0,0.0,10,1,2,2,1,2,2,2,2,2,10.0,1,,1,116206,2,2,2,0,1,,408.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,368.4421252947,2160.0,98353.96527270606,1,1,1,2,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.021961493814824522,46835.221558431454,10,5,10,10_1,10_3,10_1_0 +16190,2,59.0,0.0,8,111,1082.0,,,56,68,0.0,0.0,,1334.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,1,30.0,1,1999.0,6,116207,2,1,0,0,1,,780.0,,43,3.0,3.0,5.0,3.0,2.0,3,3,140.9235058552173,1082.0,32062.959289754275,1,1,0,1,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0416056418231576,16031.479644877138,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +16191,1,85.0,157.0,1,300,980.0,0.0,0.0,0,78,0.0,0.0,1671.09653250462,1130.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116208,1,2,5,0,2,,150.0,274.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1463.4243931463,980.0,13327.874828871716,0,5,2,3,70.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08478470982876579,13327.874828871716,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +16192,2,56.0,0.0,2,120,220.0,0.0,0.0,0,62,0.0,953.5156394473612,375.14411954185346,1090.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116209,1,2,1,0,2,,300.0,,22,1.0,1.0,6.0,3.0,2.0,3,3,803.142778949759,220.0,14901.510521251255,0,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07314694697866606,7450.755260625628,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +16194,2,33.0,0.0,2,111,1080.0,1185.0,0.0,62,62,0.0,0.0,1841.6165868418261,2265.0,0.0,2249.72729680865,43,0,0,0,0,0,0,0,0,2,5.0,1,,2,116211,2,2,2,0,1,,330.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,453.448915212405,1080.0,41095.03727386146,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055116144192930455,22830.576263256367,6,3,6,6_1,6_3,6_0_1 +16195,2,66.0,0.0,2,111,1176.0,0.0,0.0,78,78,0.0,0.0,2005.315839005544,1176.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,116212,2,1,1,0,1,,403.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,964.482245166792,1176.0,18233.619411724696,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06449624583278299,12155.74627448313,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +16196,1,23.0,413.0,6,111,0.0,,,85,55,0.0,0.0,,1917.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,116213,2,1,0,0,2,,0.0,550.0,42,1.0,1.0,4.0,4.0,2.1,2,2,161.55657530522535,0.0,9370.754332392182,6,4,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.20457264506160894,4462.2639678058,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +16197,2,51.0,0.0,7,111,600.0,400.0,0.0,42,48,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,116214,2,1,2,0,1,,416.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,860.014254711258,600.0,63759.45418978103,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015683948564294233,25503.78167591241,7,4,7,7_1,7_4,7_0_0 +16198,2,41.0,0.0,8,112,1300.0,0.0,0.0,42,62,0.0,0.0,2216.7607063836795,1390.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,116215,2,1,1,0,1,,327.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1154.94812606023,1300.0,42399.433510109826,1,1,1,2,92.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03278345687492652,18434.536308743405,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +16199,2,42.0,0.0,2,111,350.0,0.0,0.0,54,47,0.0,0.0,596.8201901802214,350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,116216,1,1,0,1,1,,120.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1785.46641008755,350.0,45582.41617663813,4,1,1,2,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007678399465348697,30388.277451092086,8,4,8,8_0,8_3,8_0_1 +16200,1,56.0,361.0,5,111,600.0,400.0,0.0,0,68,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,71,2,2,2,2,1,2,2,2,1,10.0,2,,3,116217,1,2,0,1,1,1080.0,0.0,508.0,32,1.0,3.0,5.0,2.0,1.5,2,1,902.918955612104,600.0,14311.619109970325,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06987329611807098,9541.079406646882,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +16202,1,78.0,106.0,2,111,275.0,735.0,0.0,0,77,0.0,0.0,468.93014942731685,1010.0,0.0,1395.4004752357448,71,0,0,0,0,0,0,0,0,0,,1,,2,116219,2,2,5,0,1,,200.0,276.0,11,0.0,4.0,2.0,1.0,1.0,1,1,291.303730622708,275.0,12587.10511986411,0,5,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08024084889909174,12587.10511986411,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +16203,2,26.0,0.0,2,112,620.0,0.0,0.0,54,62,2214.833987176863,0.0,1057.224336890678,2792.0,99.7624242285495,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116220,2,2,5,0,1,,800.0,562.0,43,2.0,0.0,2.0,3.0,1.8,2,2,764.789536959706,620.0,32989.0,1,1,2,3,48.0,10,1,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08463427203007062,18327.222222222223,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +16204,2,27.0,0.0,2,111,0.0,0.0,0.0,22,64,0.0,0.0,0.0,237.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,116221,2,3,0,1,1,772.0,0.0,650.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1978.79694554271,0.0,41070.188985915964,1,1,2,3,50.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005770608946583457,27380.125990610642,7,4,7,7_0,7_3,7_0_1 +16206,2,79.0,0.0,6,111,290.0,558.0,0.0,0,74,0.0,0.0,494.50815757789775,848.0,0.0,1059.3652587504023,43,0,0,0,0,0,0,0,0,0,,2,,4,116223,2,2,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,999.298380135256,290.0,23113.138625686064,0,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03668908899536481,23113.138625686064,6,3,6,6_0,6_4,6_0_0 +16207,1,44.0,110.0,2,211,600.0,3000.0,0.0,85,62,0.0,0.0,1023.1203260232367,3600.0,0.0,5695.512143819367,31,0,0,0,0,0,0,0,0,2,23.0,1,,2,116224,2,2,2,0,1,,650.0,,42,1.0,0.0,7.0,5.0,2.5999999999999996,3,2,238.524026868553,600.0,28739.057671015842,6,1,1,2,145.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.12526506753318856,11053.48371962148,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +16208,2,43.0,0.0,1,112,800.0,986.0,0.0,56,67,0.0,0.0,1364.160434697649,1786.0,0.0,1871.9249912686319,50,2,2,2,2,1,2,2,2,2,90.0,1,,1,116225,2,2,3,0,1,,600.0,914.0,43,2.0,0.0,4.0,4.0,2.1,3,2,932.438690406043,800.0,32535.566002431133,1,1,2,3,110.0,10,2,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05489377378179147,15493.126667824348,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +16209,2,38.0,0.0,9,111,300.0,,,0,46,0.0,0.0,,340.0,55.423569015860835,,31,0,0,0,0,0,0,0,0,2,25.0,1,2010.0,6,116226,2,2,0,0,2,,180.0,610.0,12,1.0,0.0,2.0,1.0,1.0,1,1,169.395077852602,300.0,39968.0,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008506805444355484,39968.0,9,5,9,9_1,9_3,9_0_0 +16210,2,63.0,0.0,2,111,1000.0,0.0,0.0,0,56,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,116227,2,1,0,0,1,,450.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,2002.5105183096,1000.0,55532.43030792737,0,5,0,1,65.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018007495700350214,37021.62020528491,9,5,9,9_0,9_2,9_0_1 +16211,2,58.0,0.0,1,111,800.0,1200.0,0.0,77,77,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,0,,1,,1,116228,2,2,1,0,1,,350.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,256.677560380893,800.0,49861.19021984641,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0401113569728613,24930.595109923204,7,4,7,7_1,7_3,7_1_0 +16212,2,77.0,0.0,1,112,372.0,0.0,0.0,86,75,1582.0242765549024,0.0,634.3346021344067,2022.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,116229,2,2,1,0,1,,180.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,922.951588197044,372.0,20726.232624778757,5,5,0,1,79.0,9,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09755752705306635,13817.48841651917,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +16213,2,56.0,0.0,2,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,427.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,20.0,2,,2,116230,1,2,0,1,2,,0.0,1430.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1423.37280140708,0.0,8827.420437362225,0,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04837200210751426,8827.420437362225,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +16214,0,30.0,0.0,9,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,70.0,96.99124577775646,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,116231,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1441.69730075294,0.0,38279.00534718468,1,1,5,0,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0018286786546596703,18228.097784373655,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +16215,1,47.0,401.0,2,111,780.0,1350.0,0.0,85,62,0.0,0.0,1330.0564238302077,2130.0,0.0,2562.980464718715,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,116232,1,1,1,0,1,,600.0,560.0,42,3.0,2.0,5.0,6.0,3.3,5,4,151.589214762611,780.0,31188.137863105763,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06829519637720016,9450.950867607808,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +16216,2,64.0,0.0,1,111,900.0,1800.0,0.0,0,77,0.0,0.0,1534.680489034855,2700.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,0,,1,,1,116233,2,3,4,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1861.1985427074,900.0,19584.76808788392,0,5,0,1,70.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13786224007780568,19584.76808788392,5,3,5,5_1,5_2,5_1_0 +16217,2,40.0,0.0,1,112,2300.0,0.0,0.0,38,47,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,1,116234,2,2,1,0,1,,546.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,872.238776695999,2300.0,82763.79067482673,1,1,1,2,120.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027789930611522407,45979.88370823707,10,5,10,10_1,10_0,10_1_0 +16218,2,67.0,0.0,7,111,1460.0,0.0,0.0,86,72,2636.7071275915036,0.0,2489.592793323209,4075.0,159.34276092059991,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,116235,2,1,2,0,1,,290.0,,41,1.0,3.0,7.0,3.0,2.0,3,3,1552.78156129101,1460.0,44209.93020713688,6,5,0,1,200.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09217386186558979,22104.96510356844,6,3,6,6_1,6_3,6_0_0 +16219,1,36.0,400.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,231.0,0.0,0.0,41,1,2,2,1,2,2,2,2,0,,2,,2,116236,1,3,0,0,2,,0.0,850.0,32,2.0,2.0,2.0,3.0,1.8,2,2,999.657805982799,0.0,30103.871529698878,0,4,3,4,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0076734316306162715,16724.373072054932,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +16221,2,54.0,0.0,6,211,1150.0,2000.0,0.0,46,37,0.0,0.0,1960.9806248778702,3150.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,116238,2,1,1,0,1,,340.0,,43,4.0,0.0,6.0,4.0,2.5,4,4,216.644993253682,1150.0,105049.40264547666,1,1,0,1,140.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029985891596458654,42019.76105819066,9,5,9,9_1,9_1,9_0_0 +16222,1,23.0,305.0,1,111,0.0,0.0,0.0,68,67,0.0,0.0,0.0,538.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,116239,1,1,0,0,1,,173.0,350.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2940.42582374484,0.0,8593.962750737173,4,1,2,3,35.0,4,4,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06260208655824712,5729.308500491449,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +16223,2,56.0,0.0,2,111,850.0,600.0,0.0,0,64,0.0,0.0,1449.420461866252,1450.0,0.0,1139.1024287638734,50,2,2,2,1,2,2,2,2,0,,2,,2,116240,2,1,0,0,1,,547.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,400.249773778257,850.0,24540.245714517314,0,1,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.05908661294056323,24540.245714517314,7,4,7,7_0,7_3,7_0_1 +16224,1,22.0,93.0,7,111,858.0,0.0,0.0,0,67,0.0,0.0,1463.0620662132285,858.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,116241,2,1,0,0,1,,0.0,383.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1586.09153936018,858.0,18971.29608727259,0,4,2,3,32.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04522621944504955,18971.29608727259,5,3,5,5_0,5_3,5_0_0 +16225,2,68.0,0.0,2,111,256.0,958.0,0.0,0,75,0.0,55.6217456344294,436.53133910324766,1256.0,0.0,1818.7668779263179,70,0,0,0,0,0,0,0,0,0,,1,,2,116242,2,1,2,0,1,,86.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,952.003539276068,256.0,23192.211763251176,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05415611123343455,23192.211763251176,6,3,6,6_1,6_4,6_0_1 +16226,2,49.0,0.0,7,111,410.0,,,13,62,0.0,0.0,,594.0,254.94841747295985,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,116243,2,2,0,0,2,,320.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,95.73976948285781,410.0,13775.37644597265,1,4,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04312041869270738,7652.98691442925,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16228,2,42.0,0.0,9,111,3300.0,0.0,0.0,55,37,0.0,0.0,5627.1617931278015,3300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,120.0,1,2011.0,6,116245,2,2,1,0,1,,450.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,3,2,1054.2364132777,3300.0,87966.99999591855,1,1,1,2,132.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03751406777715634,30333.448274454677,8,4,8,8_1,8_4,8_0_0 +16229,2,60.0,0.0,6,112,1735.0,0.0,0.0,74,75,0.0,0.0,2958.522942750526,1765.0,41.567676761895626,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,116246,1,1,3,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,763.751581591896,1735.0,56939.2874296682,5,5,0,1,180.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03099792919221443,37959.52495311213,9,5,9,9_1,9_0,9_0_0 +16230,2,79.0,0.0,2,212,250.0,0.0,0.0,86,86,1687.4925616585624,0.0,426.3001358430153,1980.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116247,2,2,2,0,1,,210.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,617.990696642554,250.0,24672.66495981203,5,5,0,1,160.0,1,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08025075536935775,16448.443306541354,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +16231,1,38.0,121.0,7,111,750.0,750.0,0.0,62,52,0.0,0.0,1278.9004075290459,1500.0,0.0,1423.8780359548418,50,2,2,1,2,1,2,2,2,2,5.0,1,,5,116248,1,1,1,0,1,,1100.0,463.0,43,2.0,2.0,4.0,5.0,2.8,4,3,341.448481724376,750.0,38321.351059942346,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.03914267003931298,13686.196807122267,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +16232,2,73.0,0.0,6,111,180.0,0.0,0.0,0,75,0.0,0.0,306.936097806971,180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,116249,2,1,0,1,1,,0.0,640.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1119.99407187518,180.0,18678.284440933756,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009636859346971243,18678.284440933756,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +16233,2,81.0,0.0,6,112,360.0,,,0,78,0.0,0.0,,480.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,4,116250,1,2,0,0,2,,700.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,99.56194567044426,360.0,14521.203488372093,0,5,0,1,60.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03305511147091642,14521.203488372093,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +16234,0,42.0,0.0,2,111,0.0,0.0,0.0,56,52,0.0,0.0,0.0,3091.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116251,1,3,4,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,306.507730446197,0.0,35172.68779818964,1,1,5,0,100.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08788068792852094,12561.674213639159,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +16235,1,34.0,271.0,1,111,1700.0,0.0,0.0,63,56,0.0,0.0,2898.840923732504,1760.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,116252,1,2,3,0,1,,252.0,580.0,43,2.0,0.0,6.0,4.0,2.1,2,2,1364.13306046137,1700.0,37022.83258304473,4,1,2,3,125.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04753823187494367,17629.920277640347,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +16236,1,83.0,191.0,5,111,313.0,788.0,0.0,0,78,0.0,0.0,533.7277700754552,1101.0,0.0,1496.0211897765537,70,1,2,2,1,1,2,2,2,0,,1,,3,116253,1,2,5,0,1,,156.0,304.0,11,0.0,8.0,1.0,1.0,1.0,1,1,431.565391484898,313.0,16544.644293481608,0,5,2,3,25.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.06654721494579251,16544.644293481608,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +16237,1,37.0,300.0,2,300,1400.0,0.0,0.0,85,63,1582.0242765549024,0.0,2387.2807607208856,3168.0,207.83838380947813,0.0,43,1,2,2,1,1,2,2,2,0,,1,,2,116254,2,1,3,0,1,,244.0,490.0,42,1.0,2.0,8.0,5.0,2.8,4,3,1121.97692466271,1400.0,43138.35171262681,6,1,3,4,180.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.07343813275723074,15406.554183081005,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +16238,2,50.0,0.0,7,111,490.0,720.0,0.0,78,52,0.0,0.0,835.54826625231,1210.0,0.0,1366.922914516648,50,0,0,0,0,0,0,0,0,1,1.0,1,,5,116255,2,1,2,0,1,,240.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1389.82758315519,490.0,37724.00078211175,7,1,0,1,106.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03207507090747827,25149.333854741166,7,4,7,7_1,7_3,7_0_0 +16240,2,48.0,0.0,2,111,480.0,,,0,46,0.0,79.45963662061344,,678.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,2,116257,2,2,0,0,2,,206.0,500.0,12,1.0,1.0,3.0,1.0,1.0,1,1,131.7257943683574,480.0,22260.488841700477,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030457552159856686,22260.488841700477,6,3,6,6_1,6_2,6_0_1 +16241,2,86.0,0.0,2,112,0.0,0.0,0.0,0,78,0.0,533.7038926351203,0.0,2508.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116258,2,3,1,0,1,,138.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,1053.07857154878,0.0,20638.451684038242,0,5,0,1,60.0,10,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12152074382303032,20638.451684038242,5,3,5,5_1,5_0,5_0_1 +16242,1,56.0,242.0,2,111,0.0,0.0,2130.0,85,68,0.0,0.0,1342.5779585834043,2130.0,0.0,2549.0394743127704,50,2,2,2,1,2,2,2,2,1,1.0,1,,2,116259,2,3,2,0,1,,430.0,383.0,42,1.0,1.0,5.0,5.0,2.8,4,3,695.497005734671,0.0,28496.561225939822,6,1,2,3,84.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.0747458608465749,10177.34329497851,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +16243,1,38.0,632.0,9,211,2160.0,,,0,52,0.0,0.0,,2436.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,116260,2,2,0,0,2,,1136.0,667.0,32,2.0,0.0,6.0,8.0,3.8999999999999995,5,4,8.154053824490994,2160.0,41969.341522897055,0,4,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.058042368824657416,10761.369621255657,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +16245,2,56.0,0.0,2,111,437.0,931.0,0.0,56,62,0.0,0.0,745.1726374535907,1368.0,0.0,1767.5072686319436,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,116262,2,3,2,0,1,,450.0,370.0,43,3.0,1.0,5.0,3.0,2.0,3,3,201.375297921358,437.0,53742.38993014561,1,1,2,3,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02545476674517317,26871.194965072806,7,4,7,7_1,7_2,7_0_1 +16246,2,62.0,0.0,2,111,240.0,110.0,0.0,0,75,0.0,0.0,409.2481304092947,350.0,0.0,208.8354452733768,44,0,0,0,0,0,0,0,0,0,,2,,2,116263,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,297.069416146712,240.0,34478.949260153335,0,5,1,2,63.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010151121409157568,34478.949260153335,9,5,9,9_0,9_2,9_0_1 +16247,2,66.0,0.0,2,112,3118.0,0.0,0.0,78,77,0.0,0.0,5316.815294234087,3268.0,207.83838380947813,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,116264,1,2,1,0,1,,231.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1087.24441605764,3118.0,46300.26308923259,5,5,0,1,97.0,4,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0705827522772758,30866.842059488394,8,4,8,8_1,8_0,8_0_1 +16248,2,41.0,0.0,1,111,900.0,0.0,0.0,42,37,1423.821848899412,397.2981831030672,1534.680489034855,2660.0,152.4148147936173,0.0,10,0,0,0,0,0,0,0,0,1,13.0,1,,1,116265,2,3,2,0,1,,590.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,3,2,1123.07032942309,900.0,56731.7670911,1,1,1,2,130.0,6,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04688731087344002,19562.678307275866,5,3,5,5_1,5_2,5_1_0 +16249,2,59.0,0.0,2,300,600.0,0.0,0.0,78,42,1159.096453289225,0.0,1023.1203260232367,1789.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,120.0,1,,2,116266,2,2,4,0,1,,206.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1281.95272133855,600.0,4590.469632359718,5,1,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.38972047378088626,3060.3130882398123,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +16250,2,49.0,0.0,7,112,1063.0,1660.0,0.0,37,37,0.0,0.0,1812.628177604501,2723.0,0.0,3151.5167195800495,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,116267,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,5.0,3.0,5,3,507.554048165045,1063.0,83235.77549216195,1,1,0,1,202.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03271429843597019,27745.258497387316,7,4,7,7_1,7_1,7_0_0 +16251,2,72.0,0.0,2,111,1360.0,0.0,0.0,0,75,0.0,0.0,2319.072738986003,1385.0,34.63973063491302,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,116268,2,1,0,0,1,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1420.75544349219,1360.0,51434.58876830039,0,5,1,2,98.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026927404946097057,51434.58876830039,10,5,10,10_0,10_3,10_0_1 +16252,1,28.0,66.0,2,111,460.0,0.0,0.0,85,47,0.0,0.0,784.3922499511482,460.0,0.0,0.0,31,2,1,2,1,1,2,2,2,2,7.0,2,,2,116269,1,3,0,1,1,994.0,180.0,343.0,42,1.0,0.0,5.0,5.0,2.4,2,2,251.600219304419,460.0,33290.80138579902,6,1,2,3,75.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.013817630722347941,13871.167244082926,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +16253,2,67.0,0.0,2,111,403.0,114.0,0.0,72,72,0.0,0.0,687.1958189789407,517.0,0.0,216.42946146513594,50,0,0,0,0,0,0,0,0,0,,2,,2,116270,2,1,0,1,1,,193.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,335.197921639412,403.0,29220.595507231137,5,5,0,1,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01769300012629994,19480.39700482076,5,3,5,5_0,5_3,5_0_1 +16254,1,48.0,85.0,9,112,1350.0,0.0,0.0,0,63,0.0,0.0,2302.0207335522828,1378.0,38.79649831110259,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,116271,2,1,1,0,1,,200.0,,32,1.0,0.0,4.0,4.0,2.3,3,2,875.055419413304,1350.0,24701.249113741,0,1,1,2,98.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055786652474729935,10739.67352771348,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +16255,2,59.0,0.0,1,111,0.0,0.0,0.0,77,63,0.0,0.0,0.0,1076.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,116272,2,1,2,0,1,,298.0,491.0,42,1.0,2.0,4.0,2.0,1.5,2,2,356.584105835251,0.0,29159.302347726178,5,4,2,3,60.0,7,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03690074567521008,19439.53489848412,5,3,5,5_1,5_2,5_1_0 +16256,1,37.0,64.0,2,111,500.0,600.0,0.0,85,62,0.0,0.0,852.6002716860306,1100.0,0.0,1139.1024287638734,50,2,2,2,2,1,2,2,2,0,,2,,2,116273,2,3,0,0,1,,300.0,160.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1526.38676659648,500.0,5216.554116308141,6,4,2,3,45.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.21086716929881902,2484.0733887181623,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16257,2,34.0,0.0,5,111,300.0,550.0,0.0,34,34,0.0,0.0,511.56016301161833,850.0,0.0,1044.177226366884,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,116274,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,527.585603485482,300.0,54520.36462594818,1,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015590504682638435,36346.90975063212,9,5,9,9_0,9_4,9_0_0 +16258,2,29.0,0.0,1,111,940.0,0.0,0.0,52,67,0.0,1324.327277010224,1602.8885107697374,2040.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,116275,2,3,3,0,1,,0.0,480.0,43,2.0,0.0,4.0,2.0,1.5,2,2,239.302928592914,940.0,29624.774193702502,1,1,2,3,79.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06886128436495066,19749.849462468334,5,3,5,5_1,5_3,5_1_0 +16259,2,67.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,1013.1103669128213,511.56016301161833,1135.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116276,2,1,2,0,1,,70.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,291.983486758221,300.0,14443.091081210505,0,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07858428598269791,14443.091081210505,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +16260,2,34.0,0.0,2,111,600.0,0.0,0.0,0,31,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,116277,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1384.79256861931,600.0,61444.87029256565,0,1,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009764850949202758,61444.87029256565,10,5,10,10_0,10_4,10_0_1 +16261,2,56.0,0.0,7,400,480.0,,,11,52,0.0,0.0,,690.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,1,20.0,1,,5,116278,2,2,0,0,2,,1800.0,,43,4.0,0.0,3.0,8.0,3.6999999999999993,4,4,45.737169735347145,480.0,50258.2999911939,4,1,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013729075597879349,13583.3243219443,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +16262,2,71.0,0.0,5,111,300.0,0.0,0.0,0,75,2109.365702073203,0.0,511.56016301161833,2370.0,96.99124577775646,0.0,50,2,2,2,1,1,2,1,2,0,,1,,3,116279,1,3,3,1,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1343.32626788371,300.0,16631.844951609564,0,5,0,1,99.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.14249772090201218,16631.844951609564,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +16263,2,79.0,0.0,2,111,160.0,0.0,0.0,0,77,0.0,0.0,272.8320869395298,160.0,0.0,0.0,71,1,2,2,2,1,2,2,2,0,,2,,2,116280,1,3,0,1,1,,0.0,365.0,11,0.0,2.0,3.0,1.0,1.0,1,1,276.848965654374,160.0,15789.831164460356,0,5,2,3,60.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01013310391564711,15789.831164460356,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +16264,2,57.0,0.0,6,111,220.0,0.0,0.0,0,52,0.0,0.0,375.14411954185346,220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,2,,4,116281,2,1,0,1,1,408.0,120.0,353.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1374.96104034531,220.0,25730.103166568908,0,1,2,3,55.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008550296070551544,25730.103166568908,7,4,7,7_0,7_3,7_0_0 +16265,1,48.0,204.0,1,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,2552.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,116282,2,3,4,0,1,,215.0,350.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1105.19026503202,0.0,16148.580810511703,0,1,2,3,63.0,5,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1580324630346965,12421.985238855155,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +16266,2,68.0,0.0,1,120,1080.0,0.0,0.0,0,78,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,116283,2,1,0,0,1,,200.0,340.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1589.63134371109,1080.0,12726.888923102728,0,5,2,3,36.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08485970188987109,12726.888923102728,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +16267,1,56.0,321.0,2,111,271.0,80.0,0.0,0,56,0.0,0.0,462.10934725382856,351.0,0.0,151.8803238351831,71,1,2,2,2,1,2,2,2,0,,2,,2,116284,2,1,0,1,1,,0.0,297.0,32,1.0,0.0,2.0,2.0,1.5,2,1,353.397671908204,271.0,8945.361414987095,0,4,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03923821338419409,5963.574276658063,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +16268,0,53.0,0.0,1,221,610.0,0.0,0.0,11,11,1117.9638220987977,0.0,1040.1723314569574,1790.0,166.2707070475825,0.0,42,2,2,2,1,1,2,2,2,2,10.0,1,,1,116285,1,1,2,0,2,,94.0,,43,3.0,1.0,5.0,5.0,3.0,5,5,2019.75387136573,610.0,12825.64058126985,1,1,5,0,100.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.13956417916576097,4275.21352708995,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +16269,2,39.0,0.0,2,111,1500.0,0.0,0.0,43,46,0.0,79.45963662061344,2557.8008150580918,1560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,116286,2,1,1,0,1,,520.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,609.588433487534,1500.0,47786.94573421306,1,1,1,2,132.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03264489864400599,19911.227389255444,5,3,5,5_1,5_3,5_0_1 +16270,2,41.0,0.0,7,111,601.0,,,42,31,0.0,0.0,,670.0,95.60565655235995,,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,116287,2,3,0,0,2,,267.0,1200.0,43,2.0,0.0,6.0,5.0,2.4,2,2,151.98872643452827,601.0,93747.49525995058,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007146857610885179,39061.456358312746,9,5,9,9_1,9_2,9_0_0 +16271,2,41.0,0.0,8,120,980.0,0.0,0.0,0,67,0.0,728.3800023556231,1671.09653250462,1590.0,83.13535352379125,0.0,42,2,2,2,2,1,2,2,2,0,,1,2000.0,6,116288,2,1,3,0,1,,250.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,553.849901264359,980.0,29882.266622493447,0,1,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.0532088151172291,19921.5110816623,5,3,5,5_1,5_0,5_0_0 +16272,1,28.0,403.0,2,111,588.0,132.0,0.0,55,21,0.0,0.0,1002.657919502772,720.0,0.0,250.60253432805214,50,0,0,0,0,0,0,0,0,0,,2,,2,116289,1,1,0,1,1,574.0,0.0,363.0,43,2.0,0.0,3.0,5.0,2.4,2,2,495.768305411935,588.0,48453.2104757397,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014859696456244126,20188.837698224877,5,3,5,5_0,5_4,5_0_1 +16273,2,56.0,0.0,5,111,950.0,0.0,0.0,45,45,0.0,158.91927324122688,1619.9405162034582,1120.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,2,7.0,1,,3,116290,2,1,2,0,1,,220.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1006.98004643766,950.0,68775.32809250578,1,1,0,1,100.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016284909589868505,45850.21872833718,10,5,10,10_1,10_2,10_0_0 +16274,1,25.0,160.0,1,111,1000.0,0.0,0.0,42,31,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,12.0,1,,1,116291,1,3,3,0,1,,180.0,580.0,43,2.0,0.0,3.0,2.0,1.5,2,2,234.703473502148,1000.0,17235.651162497692,1,1,2,3,55.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.05801927589343748,11490.434108331794,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +16275,2,27.0,0.0,9,300,1070.0,0.0,0.0,0,54,0.0,0.0,1824.5645814081054,1190.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,13.0,1,2012.0,6,116292,2,1,1,0,1,,128.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,7343.56316895143,1070.0,15912.61674903163,0,1,1,2,114.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07478342618114132,15912.61674903163,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +16276,2,50.0,0.0,1,111,1033.0,0.0,0.0,0,37,0.0,0.0,1761.4721613033391,1033.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,116293,2,3,0,0,1,540.0,115.0,630.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1984.61621478777,1033.0,15652.512085131135,0,4,2,3,75.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0.06599579635407422,15652.512085131135,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +16277,1,29.0,360.0,5,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,918.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,3.0,2,,3,116294,2,1,0,1,1,1284.0,317.0,393.0,42,1.0,0.0,4.0,4.0,2.1,2,2,581.160133710931,0.0,26824.922323781757,6,1,2,3,80.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034221907110096005,12773.772535134169,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +16278,2,56.0,0.0,2,111,170.0,900.0,0.0,0,52,0.0,0.0,289.8840923732504,1070.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,116295,2,2,1,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,292.203614023409,170.0,23542.113257597226,0,1,1,2,40.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04545046522765761,23542.113257597226,6,3,6,6_1,6_3,6_0_1 +16279,1,50.0,117.0,2,112,2000.0,0.0,0.0,0,54,0.0,0.0,3410.4010867441225,2045.0,62.351515142843446,0.0,41,2,2,2,2,1,2,2,2,2,40.0,1,,2,116296,1,3,3,0,1,,250.0,,32,1.0,1.0,3.0,2.0,1.5,2,1,1605.11630266303,2000.0,18305.916085308538,0,1,1,2,75.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.11171251908235394,12203.944056872358,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +16280,2,68.0,0.0,1,120,700.0,0.0,0.0,77,72,3164.0485531098047,0.0,1193.6403803604428,3850.0,207.83838380947813,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,116297,2,2,2,0,1,,450.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,226.282891280904,700.0,70345.00870302296,5,5,0,1,200.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05473025124289383,46896.67246868197,10,5,10,10_1,10_0,10_1_0 +16281,2,37.0,0.0,7,211,1200.0,,,85,53,0.0,0.0,,1202.0,2.771178450793042,,60,0,0,0,0,0,0,0,0,0,,2,,5,116298,2,1,0,0,2,,960.0,189.0,42,1.0,1.0,5.0,5.0,2.8,4,3,52.00666966506478,1200.0,34826.12621493012,6,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03451431814672219,12437.9022196179,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +16282,1,43.0,60.0,8,111,780.0,1800.0,0.0,0,43,0.0,529.7309108040896,1330.0564238302077,2980.0,0.0,3417.30728629162,33,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,116299,2,1,1,0,1,,360.0,,32,1.0,0.0,7.0,3.0,1.6,1,1,900.845114741914,780.0,29206.748884768604,0,1,1,2,186.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10203121243508476,18254.218052980377,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +16283,2,51.0,0.0,8,112,1600.0,0.0,0.0,52,48,0.0,0.0,2728.320869395298,1730.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,116300,2,1,1,0,1,,150.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,1073.73246788561,1600.0,45480.83128160848,4,1,1,2,90.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03803800307184747,25267.128489782488,7,4,7,7_1,7_1,7_0_0 +16284,2,88.0,0.0,5,111,0.0,0.0,0.0,77,74,0.0,0.0,0.0,1729.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,116301,2,1,1,0,1,,739.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1495.19642999974,0.0,100394.5288996518,5,5,0,1,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01722205401977833,66929.68593310121,10,5,10,10_1,10_3,10_0_0 +16285,2,29.0,0.0,7,112,1032.0,0.0,0.0,53,53,0.0,556.2174563442941,1759.766960759967,1512.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,5,116302,2,1,1,0,1,,155.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,613.231186454184,1032.0,55473.0,1,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02725650316370126,30818.333333333332,8,4,8,8_1,8_0,8_0_0 +16286,1,29.0,357.0,2,111,0.0,,,0,54,0.0,0.0,,709.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,116303,2,2,0,0,2,,340.0,600.0,32,1.0,2.0,3.0,2.0,1.3,1,1,87.14003888012536,0.0,2529.348723829295,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.28030931176884655,1945.652864484073,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +16287,2,36.0,0.0,2,111,300.0,240.0,0.0,46,38,0.0,0.0,511.56016301161833,540.0,0.0,455.6409715055494,12,1,2,2,1,1,2,2,2,3,50.0,2,,2,116304,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,892.148722451568,300.0,70980.80431850818,4,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007607690631073837,47320.53621233878,10,5,10,10_0,10_4,10_0_1 +16288,2,43.0,0.0,1,111,700.0,0.0,0.0,54,37,2636.7071275915036,0.0,1193.6403803604428,3230.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,116305,2,1,1,0,1,,350.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,319.563027980253,700.0,68481.24424181192,1,1,0,1,150.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04716619909233324,45654.162827874614,10,5,10,10_1,10_3,10_1_0 +16289,2,70.0,0.0,6,111,2000.0,0.0,0.0,77,72,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,4,116306,2,2,2,0,1,,262.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,369.002560428627,2000.0,18153.522763850386,6,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.1101714541038093,12102.34850923359,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +16290,1,48.0,200.0,2,111,440.0,1000.0,0.0,56,62,0.0,0.0,750.2882390837069,1440.0,0.0,1898.504047939789,71,2,2,1,2,1,2,2,2,0,,1,,2,116307,2,1,1,0,1,,500.0,280.0,43,2.0,0.0,4.0,5.0,2.8,4,4,198.960315563406,440.0,17555.594422199185,1,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,0,0,1,0.08202513485838502,6269.855150785424,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +16291,2,76.0,0.0,7,111,600.0,1900.0,0.0,78,77,0.0,0.0,1023.1203260232367,2500.0,0.0,3607.1576910855993,12,0,0,0,0,0,0,0,0,0,,1,,5,116308,2,1,1,0,1,,650.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,374.293150245417,600.0,56616.005022740996,5,5,0,1,180.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04415712480942135,37744.003348494,9,5,9,9_1,9_2,9_0_0 +16292,2,80.0,0.0,2,111,260.0,1900.0,0.0,0,77,0.0,0.0,443.3521412767359,2160.0,0.0,3607.1576910855993,60,2,2,2,1,1,2,2,2,0,,1,,2,116309,1,3,3,0,2,,250.0,521.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1180.71983912813,260.0,21230.52119559127,0,5,2,3,80.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,1,0,0,0.10174031904824576,21230.52119559127,5,3,5,5_1,5_2,5_0_1 +16294,2,72.0,0.0,2,400,720.0,,,78,77,0.0,0.0,,984.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,116311,2,3,0,0,2,,960.0,,41,2.0,5.0,7.0,5.0,2.8,4,4,105.35326964349225,720.0,33554.664253068986,5,5,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02932528224924799,11983.808661810353,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +16295,2,34.0,0.0,9,111,0.0,,,0,63,0.0,0.0,,66.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,116312,2,1,0,0,1,,0.0,450.0,12,1.0,1.0,3.0,1.0,1.0,1,1,226.70584834663646,0.0,24944.770697032734,0,1,2,3,48.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0026458451272855727,24944.770697032734,7,4,7,7_1,7_2,7_0_0 +16296,2,45.0,0.0,1,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1786.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,116313,2,1,1,0,1,,190.0,460.0,12,1.0,0.0,2.0,1.0,1.0,1,1,821.006348592309,0.0,34042.740700573355,0,1,2,3,40.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052463461027094094,34042.740700573355,9,5,9,9_1,9_1,9_1_0 +16297,2,64.0,0.0,5,112,1800.0,0.0,0.0,85,21,0.0,662.163638505112,3069.36097806971,6300.0,5542.356901586084,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,3,116314,2,3,3,0,1,,600.0,,42,1.0,2.0,10.0,5.0,2.4,2,2,658.274661834447,1800.0,27315.823822734965,6,1,0,1,300.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23063554813076914,11381.593259472902,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +16298,2,45.0,0.0,2,111,780.0,2330.0,0.0,38,38,0.0,0.0,1330.0564238302077,3110.0,0.0,4423.514431699708,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,116315,2,1,2,0,1,,320.0,,43,2.0,0.0,5.0,5.0,2.4,3,2,530.152632453265,780.0,116449.19961927169,1,1,1,2,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026706924651848894,48520.499841363206,10,5,10,10_1,10_4,10_0_1 +16299,2,41.0,0.0,9,221,350.0,700.0,0.0,0,52,0.0,0.0,596.8201901802214,1050.0,0.0,1328.9528335578523,12,1,2,2,1,1,2,2,2,1,3.0,2,2006.0,6,116316,2,1,0,0,1,,150.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,714.542040925197,350.0,25275.178793745778,0,1,1,2,65.0,1,2,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04154273283557612,25275.178793745778,7,4,7,7_0,7_1,7_0_0 +16300,1,52.0,150.0,2,111,1200.0,0.0,0.0,0,85,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116317,2,1,0,0,1,,0.0,340.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1502.88618198526,1200.0,4907.011905423151,0,7,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2445480107096906,4907.011905423151,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +16301,2,62.0,0.0,1,112,2125.0,0.0,0.0,43,31,0.0,794.5963662061343,3623.55115466563,2845.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,116318,2,1,2,0,1,,210.0,,43,3.0,2.0,8.0,4.0,2.5,4,4,524.897179045057,2125.0,136115.4207967398,1,1,0,1,310.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020901379016036826,54446.16831869593,10,5,10,10_1,10_0,10_1_0 +16302,2,65.0,0.0,5,221,640.0,0.0,0.0,77,71,0.0,0.0,1091.3283477581192,820.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,116319,2,1,2,0,1,,100.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1483.74713598755,640.0,21762.486548579436,5,5,0,1,79.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03767951783310929,14508.324365719624,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +16303,2,70.0,0.0,1,111,563.0,0.0,0.0,0,77,0.0,2350.6809166931475,960.0279059184704,2478.0,193.98249155551292,0.0,70,2,2,1,1,1,2,2,2,0,,1,,1,116320,2,1,1,0,1,,381.0,,21,1.0,1.0,5.0,3.0,1.8,2,2,351.68653019453,563.0,25621.489826830173,0,5,0,1,160.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.0967156873682303,14234.16101490565,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +16304,2,33.0,0.0,2,111,600.0,0.0,0.0,47,48,0.0,0.0,1023.1203260232367,1702.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,116321,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,218.498909040549,600.0,58957.695766900084,1,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02886815669881613,28075.093222333373,8,4,8,8_0,8_4,8_0_1 +16305,2,45.0,0.0,1,111,0.0,0.0,2300.0,55,22,0.0,0.0,1449.7320679539107,2300.0,0.0,2752.483939398766,41,0,0,0,0,0,0,0,0,2,10.0,2,,1,116322,2,1,0,0,1,,301.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,2032.3491421094,0.0,97954.51417068238,1,1,1,2,160.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023480285921201435,48977.25708534119,10,5,10,10_0,10_2,10_1_0 +16306,2,65.0,0.0,2,111,248.0,1287.0,0.0,0,78,0.0,0.0,422.8897347562712,1535.0,0.0,2443.3747096985085,70,0,0,0,0,0,0,0,0,0,,1,,2,116323,2,2,3,0,1,,245.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,245.19090155167,248.0,17639.91152090577,0,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08701857705923352,17639.91152090577,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +16307,2,76.0,0.0,2,112,439.0,0.0,0.0,77,75,2035.537902500641,0.0,748.5830385403349,2424.0,76.20740739680865,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116324,2,2,4,0,1,,297.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,888.035842286942,439.0,42054.425182384744,5,5,0,1,109.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057639594156558255,28036.283454923163,7,4,7,7_1,7_0,7_0_1 +16308,2,50.0,0.0,6,120,1960.0,0.0,0.0,52,68,0.0,662.163638505112,3342.19306500924,2710.0,346.39730634913025,0.0,71,2,2,2,1,2,2,2,2,0,,1,,4,116325,2,2,3,0,1,,250.0,657.0,43,3.0,1.0,5.0,4.0,2.5,4,4,1391.09223558459,1960.0,41585.66903734486,1,1,2,3,126.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.06516668031879827,16634.267614937944,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +16309,2,49.0,0.0,7,211,600.0,,,85,52,0.0,0.0,,726.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,116326,2,1,0,0,1,,320.0,,42,2.0,1.0,5.0,4.0,2.5,4,4,85.0143740816544,600.0,63100.65234432083,6,1,0,1,113.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011505427805063593,25240.26093772833,7,4,7,7_1,7_2,7_0_0 +16310,2,30.0,0.0,1,111,0.0,0.0,1200.0,42,46,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,10,0,0,0,0,0,0,0,0,0,,1,,1,116327,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1430.05491596587,0.0,65056.957446581306,1,1,1,2,99.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0184453753618178,36142.75413698961,9,5,9,9_1,9_3,9_1_0 +16311,2,61.0,0.0,6,112,1400.0,0.0,0.0,56,78,0.0,529.7309108040896,2387.2807607208856,1920.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116328,2,1,2,0,1,,250.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,735.122516455276,1400.0,39213.25323548153,1,5,0,1,90.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04896303778903804,26142.168823654352,7,4,7,7_1,7_1,7_0_0 +16312,2,61.0,0.0,1,112,1050.0,0.0,0.0,77,34,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,20.0,1,,1,116329,2,2,3,0,1,,220.0,563.0,42,1.0,4.0,2.0,2.0,1.5,2,2,2814.91501838911,1050.0,47281.59420028476,7,1,2,3,72.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02220737303298619,31521.06280018984,8,4,8,8_1,8_1,8_1_0 +16313,2,56.0,0.0,2,211,450.0,,,0,77,0.0,0.0,,582.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,116330,2,2,0,0,2,,270.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,117.21402299030916,450.0,35604.30660414858,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016346337157207434,23736.20440276572,6,3,6,6_1,6_2,6_0_1 +16314,2,46.0,0.0,7,111,78.0,,,43,46,0.0,0.0,,225.0,203.68161613328857,,31,0,0,0,0,0,0,0,0,2,15.0,3,,5,116331,1,1,0,0,2,,440.0,533.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,152.59321565517854,78.0,115036.42919150667,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0019559021570934865,44244.7804582718,10,5,10,10_0,10_3,10_0_0 +16315,0,52.0,0.0,7,111,354.0,,,42,63,0.0,0.0,,594.0,332.541414095165,,71,0,0,0,0,0,0,0,0,2,90.0,1,,5,116332,2,1,0,0,2,,240.0,,43,3.0,1.0,4.0,4.0,2.5,4,3,162.25701305247253,354.0,57392.08880799152,1,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010349858531674298,22956.835523196605,6,3,6,6_1,6_2,6_0_0 +16316,2,40.0,0.0,8,112,1500.0,0.0,0.0,85,21,0.0,0.0,2557.8008150580918,1700.0,277.1178450793042,0.0,71,1,2,2,2,1,2,2,2,0,,1,2001.0,6,116333,2,1,1,0,1,,400.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,71.1670780264213,1500.0,4558.091286551275,6,1,1,2,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.37296313152303,2170.5196602625115,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +16317,2,48.0,0.0,2,111,500.0,2600.0,0.0,0,22,0.0,0.0,852.6002716860306,3100.0,0.0,4936.110524643452,30,0,0,0,0,0,0,0,0,0,,1,,2,116334,2,2,2,0,1,,500.0,,32,1.0,0.0,5.0,3.0,2.0,3,2,2861.20713400471,500.0,12873.52751734406,0,4,0,1,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.24080423922840702,6436.76375867203,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +16318,2,79.0,0.0,2,111,333.0,968.0,0.0,0,77,0.0,0.0,567.8317809428963,1301.0,0.0,1837.7519184057157,71,0,0,0,0,0,0,0,0,0,,2,,2,116335,2,1,0,0,1,,0.0,209.0,11,0.0,0.0,3.0,1.0,1.0,1,1,345.004258914597,333.0,26879.118285453213,0,5,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04840188529190304,26879.118285453213,7,4,7,7_0,7_3,7_0_1 +16319,1,24.0,270.0,2,111,600.0,600.0,0.0,0,67,0.0,0.0,1023.1203260232367,1252.0,72.05063972061909,1139.1024287638734,60,2,1,2,1,1,2,2,2,0,,2,,2,116336,1,1,0,1,1,609.0,0.0,352.0,22,3.0,0.0,4.0,4.0,2.5,4,4,235.493618032576,600.0,42818.864648456656,0,1,2,3,96.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.0292394487868591,17127.545859382662,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +16320,2,58.0,0.0,2,112,390.0,,,0,77,0.0,0.0,,642.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,116337,1,2,0,0,2,,200.0,,21,1.0,5.0,4.0,4.0,2.1,2,2,107.68438538416382,390.0,23018.930671813338,0,6,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02789008790865027,10961.39555800635,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +16321,1,18.0,90.0,8,120,480.0,,,0,68,0.0,66.2163638505112,,782.0,349.1684847999233,,60,2,2,2,2,1,2,2,2,0,,1,2003.0,6,116338,2,1,0,0,1,,360.0,,22,3.0,0.0,6.0,5.0,2.8,4,3,144.7743511869592,480.0,16213.231084209548,0,4,1,2,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.04823221207040023,5790.439672931982,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +16322,2,49.0,0.0,2,112,420.0,0.0,0.0,54,38,0.0,0.0,716.1842282162656,420.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,8,,2,116339,2,1,0,1,1,,0.0,,43,2.0,1.0,8.0,4.0,2.1,2,2,834.198342111147,420.0,60858.618445307155,1,1,1,2,123.0,9,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006901241118009415,28980.29449776531,8,4,8,8_0,8_1,8_0_1 +16323,2,55.0,0.0,7,111,150.0,,,0,54,0.0,0.0,,150.0,0.0,,60,0,0,0,0,0,0,0,0,2,20.0,2,,5,116340,2,1,0,0,2,,100.0,265.0,12,1.0,2.0,1.0,1.0,1.0,1,1,148.56739527134718,150.0,26441.469066733756,0,1,2,3,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005672907190649112,26441.469066733756,7,4,7,7_0,7_2,7_0_0 +16324,2,36.0,0.0,9,111,898.0,0.0,0.0,47,45,0.0,0.0,1531.270087948111,898.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,2009.0,6,116341,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1290.47151800019,898.0,42418.26557960846,1,1,1,2,66.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021170125362968435,28278.843719738972,8,4,8,8_0,8_3,8_0_0 +16325,2,49.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,364.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116342,2,2,0,0,1,,0.0,500.0,22,2.0,1.0,1.0,2.0,1.5,2,2,1320.12459512406,0.0,21953.57051868207,0,1,3,4,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016580446433086725,14635.71367912138,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +16326,2,56.0,0.0,5,111,720.0,0.0,0.0,77,64,0.0,0.0,1227.744391227884,750.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,116343,2,1,1,0,1,,250.0,620.0,42,1.0,2.0,4.0,2.0,1.5,2,2,865.676754806452,720.0,27361.305862956164,7,1,2,3,76.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027410972405940887,18240.87057530411,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +16327,1,48.0,182.0,5,111,520.0,120.0,0.0,0,55,0.0,0.0,886.7042825534718,640.0,0.0,227.8204857527747,50,2,1,2,2,1,2,2,2,3,30.0,2,,3,116344,1,1,0,1,1,1052.0,0.0,367.0,32,1.0,0.0,5.0,3.0,2.0,3,2,354.993002070922,520.0,24796.377919120147,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.025810221238260156,12398.188959560073,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +16328,2,77.0,0.0,5,111,720.0,,,0,77,0.0,0.0,,858.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,116345,2,3,0,0,2,,380.0,272.0,11,0.0,0.0,3.0,1.0,1.0,1,1,98.25982202264659,720.0,9996.196078431372,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08583265006688819,9996.196078431372,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16329,2,35.0,0.0,6,111,360.0,650.0,0.0,43,46,0.0,0.0,613.872195613942,1010.0,0.0,1234.027631160863,31,2,2,2,2,1,2,2,2,2,30.0,2,,4,116346,1,2,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1589.04821770617,360.0,26549.07599176278,1,1,0,1,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.03804275524742807,17699.38399450852,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +16330,1,34.0,60.0,8,211,240.0,,,64,81,0.0,0.0,,394.0,213.38074071106422,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,116347,2,1,0,0,1,,180.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,92.63903652719918,240.0,20627.1729850336,4,4,1,2,95.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0191010178799525,7112.818270701243,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +16331,2,79.0,0.0,2,111,285.0,0.0,0.0,0,78,0.0,0.0,485.98215486103743,340.0,76.20740739680865,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,116348,2,1,0,1,1,554.0,0.0,273.0,11,0.0,2.0,3.0,1.0,1.0,1,1,561.924188670906,285.0,15240.990871550304,0,5,2,3,70.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022308260851639457,15240.990871550304,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +16332,1,28.0,268.0,2,111,168.0,170.0,0.0,69,52,0.0,0.0,286.47369128650627,338.0,0.0,322.74568814976413,42,0,0,0,0,0,0,0,0,3,45.0,2,,2,116349,2,1,0,1,1,337.0,144.0,253.0,43,2.0,0.0,2.0,2.0,1.5,2,2,409.605131682033,168.0,24849.210886678426,1,1,2,3,45.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.013602041591638655,16566.14059111895,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +16333,2,40.0,0.0,1,112,500.0,0.0,0.0,54,37,1582.0242765549024,0.0,852.6002716860306,2080.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,116350,2,1,1,0,1,,380.0,,43,2.0,0.0,8.0,4.0,2.3,3,2,2005.87424850579,500.0,100876.84065459917,1,1,0,1,190.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020619202450261994,43859.49593678225,10,5,10,10_1,10_0,10_1_0 +16334,2,65.0,0.0,2,111,240.0,880.0,0.0,75,74,0.0,0.0,409.2481304092947,1120.0,0.0,1670.6835621870143,41,0,0,0,0,0,0,0,0,0,,2,,2,116351,2,1,0,0,1,,370.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1793.21815962821,240.0,58687.61590522574,5,5,0,1,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.019084094365132857,39125.0772701505,9,5,9,9_0,9_3,9_0_1 +16335,1,45.0,300.0,7,120,0.0,,,0,85,0.0,0.0,,394.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,116352,2,3,0,0,2,,0.0,400.0,31,0.0,3.0,2.0,2.0,1.3,1,1,130.64964025829903,0.0,3405.0674808037693,0,6,3,4,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11570989480272971,2619.282677541361,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +16336,1,93.0,230.0,2,111,420.0,,,0,72,0.0,0.0,,545.0,173.19865317456512,,71,0,0,0,0,0,0,0,0,0,,8,,2,116353,2,2,0,0,2,,256.0,258.0,11,0.0,3.0,4.0,1.0,1.0,1,1,97.47660180046059,420.0,12468.229994445446,0,5,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.043711096141376575,12468.229994445446,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +16337,2,67.0,0.0,1,112,925.0,0.0,0.0,0,75,0.0,0.0,1577.3105026191565,976.0,70.66505049522257,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,116354,2,1,0,0,1,,112.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1297.44045613237,925.0,23306.58383837532,0,5,1,2,36.0,7,4,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0418765790288396,23306.58383837532,6,3,6,6_0,6_2,6_1_0 +16338,2,50.0,0.0,5,111,504.0,574.0,0.0,46,46,0.0,0.0,859.4210738595189,1078.0,0.0,1089.7413235174388,50,2,1,2,2,1,2,2,2,2,30.0,2,,3,116355,2,1,0,1,1,1176.0,0.0,382.0,43,2.0,0.0,4.0,4.0,2.3,3,3,829.67027986938,504.0,56685.57105199814,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.019017185149482606,24645.900457390497,7,4,7,7_0,7_4,7_0_0 +16339,2,21.0,0.0,7,111,2196.0,0.0,0.0,0,23,0.0,0.0,3744.620393245046,2196.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,116356,2,1,0,1,1,,0.0,,22,3.0,3.0,6.0,5.0,3.0,5,4,154.160341141022,2196.0,8758.411719599622,0,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2507303915715425,2919.4705731998743,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +16340,2,74.0,0.0,2,300,640.0,0.0,0.0,86,75,1054.6828510366015,132.4327277010224,1091.3283477581192,1810.0,96.99124577775646,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,116357,2,1,2,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1359.01300203899,640.0,40118.49209504487,5,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04511635172408579,26745.66139669658,7,4,7,7_1,7_0,7_0_1 +16341,2,42.0,0.0,9,111,0.0,0.0,0.0,52,47,0.0,0.0,0.0,1314.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,116358,2,1,1,0,1,,778.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,346.821190894735,0.0,45826.27612906834,1,1,1,2,125.0,4,4,4,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02867350592265359,19924.46788220363,5,3,5,5_1,5_2,5_0_0 +16342,1,60.0,246.0,9,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,186.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2006.0,6,116359,1,3,0,1,2,,0.0,380.0,11,0.0,4.0,1.0,1.0,1.0,1,1,3081.90205753002,0.0,11018.304619866656,0,7,2,3,33.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01688099997386449,11018.304619866656,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +16343,2,49.0,0.0,7,111,300.0,,,0,42,0.0,0.0,,564.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,116360,2,2,0,0,2,,160.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,94.0005888680221,300.0,5316.9264452790285,0,4,0,1,92.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10607632168783965,5316.9264452790285,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16344,2,67.0,0.0,1,300,617.0,0.0,0.0,0,78,0.0,0.0,1052.1087352605618,697.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116361,2,1,1,0,2,,220.0,,21,1.0,4.0,5.0,2.0,1.5,2,2,1835.90127516315,617.0,39233.06906093492,0,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017765625190256033,26155.379373956614,7,4,7,7_1,7_0,7_1_0 +16345,2,69.0,0.0,9,112,1200.0,0.0,0.0,75,78,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,116362,2,3,1,0,1,,264.0,840.0,41,0.0,4.0,5.0,2.0,1.5,2,2,2043.00837492946,1200.0,40645.428040845625,5,5,2,3,93.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02952361576298543,27096.952027230418,7,4,7,7_1,7_1,7_0_0 +16346,2,27.0,0.0,8,111,650.0,1400.0,0.0,0,38,0.0,0.0,1108.3803531918397,2050.0,0.0,2657.9056671157045,12,0,0,0,0,0,0,0,0,0,,1,2000.0,6,116363,2,1,3,0,1,,480.0,,22,2.0,3.0,6.0,3.0,2.0,3,3,511.368919856482,650.0,112574.84969222602,0,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018210106481195372,56287.42484611301,10,5,10,10_1,10_3,10_0_0 +16347,2,70.0,0.0,7,111,1400.0,0.0,0.0,75,75,0.0,0.0,2387.2807607208856,1496.0,133.01656563806603,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,116364,2,1,2,0,1,,1000.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2448.39169732102,1400.0,47514.54145463951,5,5,0,1,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031485098123659246,31676.360969759673,8,4,8,8_1,8_3,8_0_0 +16348,2,55.0,0.0,2,111,245.0,972.0,0.0,0,67,0.0,0.0,417.774133126155,1217.0,0.0,1845.345934597475,60,2,2,2,1,1,2,2,2,2,15.0,2,,2,116365,1,3,0,0,1,,0.0,342.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2016.83733178531,245.0,25917.0,0,1,2,3,70.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04695759540070224,25917.0,7,4,7,7_0,7_2,7_0_1 +16349,2,51.0,0.0,8,111,0.0,0.0,0.0,77,31,0.0,0.0,0.0,2659.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2002.0,6,116366,2,1,1,0,1,,0.0,1050.0,42,1.0,2.0,5.0,4.0,2.5,4,3,1016.32401940442,0.0,58564.34534112544,6,1,2,3,100.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04540305171195655,23425.738136450174,6,3,6,6_1,6_2,6_0_0 +16350,1,72.0,91.0,2,111,188.0,593.0,0.0,77,78,0.0,0.0,320.5777021539475,781.0,0.0,1125.8129004282948,71,0,0,0,0,0,0,0,0,0,,2,,2,116367,1,2,0,0,1,,184.0,207.0,41,0.0,6.0,3.0,2.0,1.5,2,2,275.363434049772,188.0,14238.13185114944,5,5,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05485270175644217,9492.087900766293,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16351,2,65.0,0.0,5,211,1500.0,0.0,0.0,75,74,0.0,0.0,2557.8008150580918,3000.0,2078.3838380947814,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,116368,2,1,2,0,2,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,573.978925631454,1500.0,55025.62845676244,5,5,0,1,105.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05452004973205011,36683.75230450829,9,5,9,9_1,9_1,9_0_0 +16352,0,44.0,0.0,7,400,480.0,,,81,55,0.0,0.0,,610.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,1,30.0,1,,5,116369,2,2,0,0,2,,0.0,,43,4.0,0.0,3.0,7.0,3.3999999999999995,4,4,4.571849354787482,480.0,13259.15847899291,4,1,5,0,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04600593627163073,3899.7524938214447,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +16353,2,22.0,0.0,8,111,0.0,,,0,55,0.0,0.0,,315.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2001.0,6,116370,2,1,0,0,2,,0.0,590.0,32,1.0,0.0,3.0,3.0,1.6,1,1,132.64357315538683,0.0,12337.247058198767,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025532438356307818,7710.779411374229,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +16354,2,79.0,0.0,2,111,2237.0,0.0,0.0,71,71,0.0,0.0,3814.533615523301,2377.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116371,1,2,3,0,2,,0.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1303.28945482304,2237.0,17618.682254546802,5,5,0,1,150.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13491360850137216,11745.788169697867,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +16355,2,54.0,0.0,1,111,503.0,0.0,0.0,31,42,1054.6828510366015,0.0,857.7158733161468,1503.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,5.0,1,,1,116372,1,1,3,0,1,,1305.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,657.845182671593,503.0,86339.2671299017,1,1,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017408069931131826,34535.70685196068,9,5,9,9_1,9_4,9_1_0 +16356,2,47.0,0.0,2,112,381.0,0.0,0.0,52,52,1423.821848899412,0.0,649.6814070247553,1827.0,133.01656563806603,0.0,41,0,0,0,0,0,0,0,0,3,60.0,1,,2,116373,2,1,1,0,1,,159.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1743.81841370733,381.0,60440.17011755986,1,1,0,1,80.0,9,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030228240530203215,40293.4467450399,9,5,9,9_1,9_2,9_0_1 +16357,0,91.0,0.0,2,112,300.0,0.0,0.0,0,71,0.0,0.0,511.56016301161833,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116374,1,1,4,0,2,,208.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,1023.02924815618,300.0,11710.88392055885,0,5,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02561719525486372,7807.255947039233,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +16358,2,59.0,0.0,6,111,1200.0,0.0,0.0,74,37,0.0,79.45963662061344,2046.2406520464733,1260.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,116375,2,1,2,0,1,,520.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,945.708946610523,1200.0,83582.43125741952,5,4,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015074938369756397,55721.62083827968,10,5,10,10_1,10_4,10_0_0 +16359,2,61.0,0.0,7,111,608.0,1758.0,0.0,33,46,0.0,0.0,1036.7619303702131,2366.0,0.0,3337.5701162781493,12,0,0,0,0,0,0,0,0,2,5.0,1,,5,116376,2,1,2,0,1,,262.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1267.93231406151,608.0,156421.6473572595,1,1,0,1,150.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01512578367491662,104281.098238173,10,5,10,10_1,10_2,10_0_0 +16360,2,29.0,0.0,9,111,400.0,0.0,0.0,0,52,0.0,0.0,682.0802173488245,400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2005.0,6,116377,2,1,0,0,1,,0.0,334.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1275.11765626447,400.0,11358.716469702409,0,1,2,3,39.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03521524646441675,11358.716469702409,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +16361,2,68.0,0.0,2,300,0.0,0.0,0.0,0,77,0.0,0.0,0.0,851.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116378,1,1,3,0,1,,162.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1202.9591154317,0.0,17391.253158048705,0,5,0,1,60.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04893264402894139,17391.253158048705,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +16362,2,57.0,0.0,2,112,1250.0,0.0,0.0,56,68,0.0,463.51454695357836,2131.5006792150766,1720.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,116379,2,1,2,0,1,,216.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1113.51410271726,1250.0,32565.082795213348,1,1,0,1,98.0,6,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05281730775310106,21710.0551968089,6,3,6,6_1,6_0,6_0_1 +16364,2,92.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,3612.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,116381,2,1,2,0,2,,365.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,534.754328402915,0.0,65621.61804380677,5,5,0,1,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055042836608947245,43747.74536253785,10,5,10,10_1,10_4,10_0_1 +16365,2,53.0,0.0,2,111,750.0,0.0,0.0,0,43,0.0,0.0,1278.9004075290459,896.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,2,,2,116383,2,1,0,1,1,,0.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,1912.28027463487,750.0,30066.59380797521,0,1,1,2,86.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02980051567272428,20044.395871983474,5,3,5,5_0,5_3,5_0_1 +16366,2,73.0,0.0,1,112,900.0,0.0,0.0,77,75,2214.833987176863,0.0,1534.680489034855,3150.0,207.83838380947813,0.0,50,1,2,2,2,1,2,2,2,0,,1,,1,116384,2,2,2,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,638.921445511485,900.0,38534.39324848745,5,5,0,1,110.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08174515632534693,25689.595498991635,7,4,7,7_1,7_0,7_1_0 +16367,2,45.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1832.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,40.0,2,,2,116385,1,2,0,0,2,,0.0,400.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1158.70740960077,0.0,7497.562003288447,0,1,2,3,20.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.24434609533025278,7497.562003288447,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +16368,1,42.0,166.0,5,111,326.0,786.0,0.0,0,46,0.0,0.0,555.8953771392919,1112.0,0.0,1492.224181680674,43,2,2,2,2,1,2,2,2,0,,2,,3,116386,1,3,0,0,1,,300.0,341.0,22,1.0,1.0,3.0,2.0,1.5,2,2,1269.17043303667,326.0,26186.37795515081,0,4,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.0424648266325535,17457.585303433872,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +16369,0,58.0,0.0,1,112,927.0,0.0,0.0,52,52,0.0,198.6490915515336,1580.7209037059008,1197.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,,1,116387,2,2,3,0,1,,377.0,,43,3.0,3.0,6.0,3.0,2.0,3,3,1930.38517698235,927.0,64528.39128848311,1,1,0,1,180.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018549974299663628,32264.195644241554,8,4,8,8_1,8_0,8_1_0 +16370,2,84.0,0.0,6,111,720.0,,,86,78,0.0,0.0,,984.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,116388,1,1,0,0,2,,360.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,87.58074375002425,720.0,62275.27717206595,6,5,0,1,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015800812853569775,31137.638586032976,8,4,8,8_1,8_2,8_0_0 +16371,2,53.0,0.0,7,111,950.0,550.0,0.0,37,33,0.0,397.2981831030672,1619.9405162034582,1800.0,0.0,1044.177226366884,10,0,0,0,0,0,0,0,0,2,50.0,1,,5,116389,2,1,1,0,1,,658.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,575.275760275177,950.0,111567.80167490989,1,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01613368707617725,44627.12066996396,10,5,10,10_1,10_4,10_0_0 +16372,1,37.0,324.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1301.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,116390,2,2,0,1,1,744.0,0.0,301.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1630.14526845274,0.0,7812.0,0,4,2,3,75.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16653865847414234,6009.230769230769,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16373,2,48.0,0.0,1,111,432.0,650.0,0.0,0,47,0.0,0.0,736.6466347367304,1082.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,2,75.0,1,,1,116391,2,1,2,0,1,,240.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,443.687519504098,432.0,25683.81356044325,0,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042127700290833556,17122.542373628832,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +16374,2,65.0,0.0,2,111,215.0,154.0,0.0,75,78,0.0,0.0,366.61811682499314,369.0,0.0,292.3696233827275,50,0,0,0,0,0,0,0,0,0,,2,,2,116392,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,3.0,2.0,3,2,2957.91248522475,215.0,36289.718288086195,5,5,0,1,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010168169316462883,18144.859144043097,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +16375,2,87.0,0.0,2,111,420.0,640.0,0.0,77,78,0.0,0.0,716.1842282162656,2448.0,0.0,1215.0425906814648,71,0,0,0,0,0,0,0,0,0,,1,,2,116393,2,1,2,0,1,,410.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1386.4153071305,420.0,22030.389850212207,5,5,0,1,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1111192319629523,14686.926566808137,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +16376,2,51.0,0.0,1,112,281.0,0.0,0.0,0,52,0.0,33.1081819252556,479.1613526875492,2020.0,2374.899932329637,0.0,50,2,2,2,1,2,2,2,2,2,5.0,1,,1,116394,1,3,3,0,1,,200.0,312.0,32,2.0,1.0,3.0,2.0,1.5,2,2,1113.89678754383,281.0,20185.944208637342,0,1,2,3,84.0,9,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.10006963157738563,13457.29613909156,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +16377,2,47.0,0.0,2,111,600.0,0.0,0.0,85,21,2109.365702073203,0.0,1023.1203260232367,2780.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116395,2,1,3,0,1,,400.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,806.391724568452,600.0,34270.9312223038,6,1,1,2,80.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08111830933239285,17135.4656111519,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +16378,2,34.0,0.0,9,112,1439.0,0.0,0.0,52,54,0.0,0.0,2453.783581912396,1439.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,116396,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1039.12242095325,1439.0,41545.646933308795,1,1,1,2,120.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03463660109349017,19783.64139681371,5,3,5,5_1,5_0,5_0_0 +16379,2,78.0,0.0,6,111,300.0,0.0,0.0,77,75,4218.731404146406,0.0,511.56016301161833,6033.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,116397,2,2,3,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1658.16521503838,300.0,61694.211012272994,5,5,0,1,100.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09778875361255271,41129.474008182,9,5,9,9_1,9_2,9_0_0 +16380,2,70.0,0.0,5,221,702.0,0.0,0.0,78,75,0.0,66.2163638505112,1197.0507814471869,914.0,224.4654545142364,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,116398,2,2,1,0,1,,110.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1874.60082144557,702.0,27957.868933312646,5,5,0,1,120.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03269204824517012,18638.5792888751,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +16381,2,67.0,0.0,1,111,485.0,750.0,0.0,77,78,0.0,0.0,827.0222635354497,1235.0,0.0,1423.8780359548418,50,0,0,0,0,0,0,0,0,0,,1,,1,116399,2,1,2,0,1,,204.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,158.708538119101,485.0,33259.64807114692,5,5,0,1,111.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03713208261729549,22173.098714097945,6,3,6,6_1,6_2,6_1_0 +16382,2,66.0,0.0,1,300,1700.0,0.0,0.0,77,75,0.0,132.4327277010224,2898.840923732504,1863.0,87.29212119998083,0.0,71,1,2,2,2,2,2,2,1,0,,1,,1,116400,1,1,2,0,1,,140.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1144.06040202679,1700.0,15994.97659218753,5,5,0,1,96.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.11647406854661796,10663.31772812502,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +16383,0,51.0,0.0,1,112,400.0,0.0,0.0,34,34,2531.2388424878436,0.0,682.0802173488245,2900.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,1,116401,1,2,4,0,2,,220.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,903.836756139909,400.0,82083.34969791751,1,1,0,1,150.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.035329942195007354,54722.23313194501,10,5,10,10_1,10_0,10_1_0 +16384,2,60.0,0.0,2,111,1176.0,0.0,0.0,0,52,0.0,0.0,2005.315839005544,1176.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,116402,2,1,0,0,1,,0.0,322.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2614.28390055126,1176.0,17695.886891634793,0,1,2,3,60.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06645612097328217,17695.886891634793,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +16385,1,38.0,362.0,2,111,0.0,,,81,68,0.0,0.0,,422.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,116403,2,1,0,0,2,,234.0,344.0,43,2.0,0.0,3.0,4.0,2.1,2,2,139.20890507392602,0.0,10476.870512369915,4,4,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0402792035562289,4988.985958271388,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16386,2,48.0,0.0,8,112,500.0,,,0,81,0.0,0.0,,626.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,116404,2,3,0,0,2,,600.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,93.0475576248084,500.0,4863.2278856890425,0,4,0,1,54.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12872109115884164,3242.151923792695,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +16387,2,71.0,0.0,5,111,500.0,988.0,0.0,78,78,0.0,0.0,852.6002716860306,1488.0,0.0,1875.7219993645115,71,2,1,2,2,1,2,2,2,0,,2,,3,116405,2,2,0,1,1,657.0,0.0,324.0,41,0.0,5.0,4.0,2.0,1.5,2,2,311.372332622733,500.0,35725.73352195237,5,5,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.041650649358554656,23817.155681301578,6,3,6,6_0,6_2,6_0_0 +16388,2,41.0,0.0,6,112,0.0,0.0,0.0,54,48,0.0,0.0,0.0,494.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,4,116406,2,1,2,0,1,,480.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,926.114707951249,0.0,48057.39382238877,1,1,1,2,130.0,6,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010279375569672641,22884.473248756556,6,3,6,6_1,6_1,6_0_0 +16389,1,40.0,128.0,2,111,980.0,0.0,0.0,65,56,2082.998630797288,0.0,1671.09653250462,3045.0,124.70303028568689,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,116407,1,2,1,0,2,,548.0,750.0,43,2.0,0.0,6.0,4.0,2.1,2,2,549.086516742145,980.0,39977.75942718859,4,1,2,3,150.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07616735013741459,19037.028298661233,5,3,5,5_1,5_3,5_0_1 +16390,1,36.0,270.0,1,111,800.0,0.0,0.0,0,63,0.0,2118.9236432163584,1364.160434697649,2400.0,0.0,0.0,71,2,2,2,1,1,1,2,2,0,,1,,1,116408,1,3,3,0,1,,450.0,428.0,22,1.0,5.0,4.0,2.0,1.5,2,2,73.6154654743953,800.0,15231.550637291668,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.15756767364998536,10154.367091527778,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +16391,2,31.0,0.0,1,112,200.0,730.0,0.0,0,42,0.0,0.0,341.04010867441224,930.0,0.0,1385.9079549960459,20,0,0,0,0,0,0,0,0,2,35.0,2,,1,116409,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1323.39529122535,200.0,25691.596114933385,0,1,1,2,45.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03619860735158577,25691.596114933385,7,4,7,7_0,7_2,7_1_0 +16392,1,23.0,450.0,9,112,900.0,0.0,0.0,85,63,0.0,0.0,1534.680489034855,1020.0,166.2707070475825,0.0,60,2,2,2,2,1,1,2,2,0,,1,2006.0,6,116410,1,2,1,0,1,,200.0,800.0,42,1.0,0.0,6.0,5.0,2.4,2,2,1427.10234936217,900.0,12877.296268567476,6,4,2,3,72.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,1,0.07920917393892259,5365.540111903115,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +16393,2,30.0,0.0,9,112,100.0,,,52,55,0.0,0.0,,184.0,116.38949493330776,,43,2,2,2,2,1,2,2,2,0,,1,2011.0,6,116411,2,1,0,0,1,,160.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,177.64124235855851,100.0,52196.45194854754,4,1,1,2,57.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.003525143819763407,22694.10954284676,6,3,6,6_1,6_1,6_0_0 +16394,2,74.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,875.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,116412,2,3,0,1,2,500.0,0.0,570.0,11,0.0,0.0,4.0,1.0,1.0,1,1,2631.84286682231,0.0,34125.69385519779,0,5,2,3,85.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025640504298983686,34125.69385519779,9,5,9,9_0,9_3,9_0_1 +16395,2,88.0,0.0,2,111,310.0,218.0,0.0,78,78,0.0,0.0,528.612168445339,528.0,0.0,413.873882450874,71,0,0,0,0,0,0,0,0,0,,2,,2,116413,2,1,0,1,1,1050.0,0.0,258.0,41,0.0,3.0,3.0,2.0,1.5,2,2,348.399590271687,310.0,22716.708694121866,5,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023242803660929293,15144.47246274791,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +16396,2,58.0,0.0,7,111,2250.0,0.0,0.0,0,33,0.0,0.0,3836.7012225871376,2250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,116414,2,2,0,0,1,,0.0,1700.0,32,1.0,2.0,4.0,3.0,2.0,3,2,958.921272219221,2250.0,88873.94894586063,0,1,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025316755097386675,44436.97447293031,10,5,10,10_0,10_4,10_0_0 +16397,2,70.0,0.0,5,111,0.0,0.0,600.0,72,72,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,50,0,0,0,0,0,0,0,0,0,,2,,3,116415,1,1,0,0,1,,470.0,328.0,41,0.0,2.0,3.0,2.0,1.5,2,2,476.607912135031,0.0,22555.410847333318,5,5,2,3,45.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02660115588499408,15036.940564888879,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +16398,2,44.0,0.0,2,111,399.0,0.0,0.0,42,38,0.0,0.0,680.3750168054524,399.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,75.0,2,,2,116416,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,687.01405103775,399.0,78992.26681547835,1,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005051127358226627,32913.44450644931,8,4,8,8_0,8_4,8_0_1 +16399,2,61.0,0.0,5,111,406.0,1100.0,0.0,0,34,0.0,0.0,692.3114206090569,1506.0,0.0,2088.354452733768,10,0,0,0,0,0,0,0,0,2,10.0,2,,3,116417,2,2,0,0,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1957.3490934704,406.0,55887.77117601309,0,1,0,1,115.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026946860973521374,55887.77117601309,10,5,10,10_0,10_3,10_0_0 +16400,2,53.0,0.0,8,111,0.0,,,0,45,0.0,0.0,,784.0,0.0,,31,0,0,0,0,0,0,0,0,2,1.0,1,1999.0,6,116418,2,2,0,0,2,,65.0,,32,2.0,0.0,4.0,3.0,1.8,2,2,93.22452928682887,0.0,58296.67709229116,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01344845090842531,32387.042829050642,8,4,8,8_1,8_3,8_0_0 +16401,2,45.0,0.0,1,111,400.0,0.0,0.0,0,46,0.0,0.0,682.0802173488245,400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,1,116419,2,1,0,0,1,,0.0,183.0,12,1.0,0.0,2.0,1.0,1.0,1,1,764.281862580634,400.0,36838.46234617666,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010858216508635428,36838.46234617666,9,5,9,9_0,9_4,9_1_0 +16402,2,77.0,0.0,5,111,249.0,1367.0,0.0,78,75,0.0,0.0,424.5949352996432,1616.0,0.0,2595.2550335336914,50,0,0,0,0,0,0,0,0,0,,1,,3,116420,2,2,2,0,2,,295.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1582.9713715166,249.0,31460.718373447766,5,5,0,1,92.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05136564209429727,20973.812248965176,5,3,5,5_1,5_2,5_0_0 +16403,2,30.0,0.0,9,112,1210.0,0.0,0.0,52,46,0.0,0.0,2063.292657480194,1210.0,0.0,0.0,10,2,2,1,2,1,2,2,1,2,15.0,1,2011.0,6,116421,2,1,1,0,1,,408.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1989.20106768259,1210.0,37619.743165212814,1,1,1,2,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03216396227603419,20899.85731400712,5,3,5,5_1,5_0,5_0_0 +16404,2,56.0,0.0,9,112,927.0,0.0,0.0,0,52,0.0,0.0,1580.7209037059008,927.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,116422,2,1,0,0,1,,200.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1391.64290654928,927.0,22588.490988218728,0,1,0,1,54.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04103859795165099,22588.490988218728,6,3,6,6_0,6_0,6_0_0 +16405,1,76.0,202.0,5,111,96.0,900.0,0.0,0,74,0.0,0.0,163.69925216371786,996.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,0,,2,,3,116423,2,3,0,1,1,,300.0,238.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1044.93172971454,96.0,9577.388973687795,0,5,2,3,46.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10399494086920101,9577.388973687795,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16406,2,61.0,0.0,5,111,224.0,,,85,78,0.0,0.0,,392.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,3,116424,1,1,0,0,2,,137.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,115.37591338770052,224.0,12376.983801603104,6,5,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031671690476740136,8251.32253440207,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16407,1,47.0,153.0,5,111,822.0,0.0,0.0,85,90,0.0,529.7309108040896,1401.6748466518343,1222.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,2,,3,116425,1,3,0,0,2,60.0,676.0,409.0,42,2.0,1.0,4.0,4.0,2.5,4,4,594.004748733917,822.0,12131.198362852536,6,4,2,3,85.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,0,0,1,0.10073201042874204,4852.479345141014,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16408,2,53.0,0.0,5,211,1600.0,,,0,52,0.0,0.0,,1624.0,33.25414140951651,,71,0,0,0,0,0,0,0,0,1,15.0,1,,3,116426,2,2,0,0,2,,1350.0,,32,1.0,0.0,6.0,13.0,5.599999999999999,6,4,74.27375035531514,1600.0,29781.617511419823,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05453028195588348,5318.145984182112,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16409,2,67.0,0.0,1,111,580.0,2600.0,0.0,75,72,0.0,0.0,989.0163151557955,4871.0,0.0,4936.110524643452,41,0,0,0,0,0,0,0,0,0,,1,,1,116427,2,1,3,0,1,,550.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,511.425826560589,580.0,120291.57214480711,5,5,0,1,200.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04049327740214655,80194.38142987141,10,5,10,10_1,10_3,10_1_0 +16410,2,73.0,0.0,2,111,417.0,309.0,0.0,78,78,0.0,0.0,711.0686265861495,726.0,0.0,586.6377508133947,41,2,2,1,1,2,2,2,2,0,,2,,2,116428,2,1,0,1,1,612.0,0.0,320.0,41,0.0,3.0,4.0,2.0,1.5,2,2,250.938258152961,417.0,24512.762408025195,6,5,2,3,92.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0296172250159091,16341.84160535013,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +16411,2,61.0,0.0,1,111,300.0,1000.0,0.0,22,22,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,0,,2,,1,116429,2,2,0,0,1,,390.0,1200.0,43,2.0,3.0,3.0,2.0,1.5,2,2,2125.29998348994,300.0,91741.36713374952,1,1,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014170270627259491,61160.91142249968,10,5,10,10_0,10_3,10_1_0 +16412,2,52.0,0.0,8,112,750.0,0.0,0.0,65,68,1634.7584191067324,264.8654554020448,1278.9004075290459,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,6.0,1,2003.0,6,116430,2,2,2,0,1,,500.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,817.878890398878,750.0,84873.5665140636,4,1,1,2,140.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029455578487864637,33949.42660562544,9,5,9,9_1,9_0,9_0_0 +16413,2,43.0,0.0,7,111,500.0,,,33,37,0.0,0.0,,500.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,116431,2,1,0,0,2,,230.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,130.5461948303413,500.0,159157.64168255782,1,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003141539386448419,66315.68403439909,10,5,10,10_1,10_2,10_0_0 +16414,2,61.0,0.0,2,111,381.0,833.0,0.0,77,75,0.0,695.2718204303676,649.6814070247553,1739.0,0.0,1581.4538719338443,50,0,0,0,0,0,0,0,0,0,,1,,2,116432,2,2,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,218.540274111454,381.0,28314.188786896975,6,5,1,2,88.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06141797008871966,18876.125857931318,5,3,5,5_1,5_2,5_0_1 +16415,1,54.0,270.0,1,111,610.0,0.0,0.0,0,85,0.0,0.0,1040.1723314569574,645.0,48.49562288887823,0.0,50,2,1,2,2,2,2,2,1,0,,2,,1,116433,2,2,0,0,1,,150.0,318.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2061.19433631855,610.0,10364.0,0,7,3,4,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.06223465843303744,10364.0,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +16416,2,57.0,0.0,9,112,1650.0,0.0,0.0,33,74,1054.6828510366015,0.0,2813.5808965639008,2716.0,91.44888887617039,0.0,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,116434,2,1,2,0,1,,240.0,,42,1.0,1.0,7.0,3.0,2.0,3,3,885.909600765568,1650.0,139965.39429536357,1,5,1,2,240.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019404796547556107,69982.69714768179,10,5,10,10_1,10_0,10_0_0 +16417,2,37.0,0.0,1,111,420.0,3000.0,0.0,46,62,0.0,927.0290939071567,716.1842282162656,4120.0,0.0,5695.512143819367,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,116435,2,1,2,0,1,,648.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,173.363167006596,420.0,43050.36299834588,1,1,1,2,120.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09570186435264906,20500.17285635518,5,3,5,5_1,5_2,5_1_0 +16418,1,54.0,89.0,7,111,289.0,,,0,77,0.0,0.0,,289.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,116436,2,1,0,0,1,,110.0,169.0,11,0.0,1.0,1.0,1.0,1.0,1,1,146.53138760126498,289.0,9387.420490117916,0,7,2,3,22.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030785879923481498,9387.420490117916,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16420,0,22.0,0.0,2,111,576.0,,,68,81,0.0,0.0,,1080.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,1,,2,116438,1,3,0,0,2,,600.0,,43,2.0,1.0,3.0,8.0,3.6999999999999993,4,4,149.55149115208908,576.0,35270.40469588152,4,4,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03062057295095653,9532.54180969771,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +16421,2,72.0,0.0,1,111,364.0,65.0,0.0,75,77,0.0,0.0,620.6929977874303,429.0,0.0,123.40276311608629,71,0,0,0,0,0,0,0,0,0,,2,,1,116439,2,1,0,1,1,,0.0,400.0,41,0.0,0.0,3.0,2.0,1.5,2,2,398.488281203665,364.0,24500.422303979027,5,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01750990226524902,16333.614869319352,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +16422,2,29.0,0.0,2,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,669.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,,2,116440,1,3,0,2,2,,0.0,540.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1974.92731278376,0.0,20079.0,1,1,2,3,45.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03331839235021664,13386.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +16423,2,79.0,0.0,1,111,0.0,1160.0,0.0,0,75,0.0,0.0,0.0,1584.0,0.0,2202.2646956101553,31,0,0,0,0,0,0,0,0,0,,1,,1,116441,2,1,4,0,1,,134.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,429.602139459937,0.0,29719.322543601615,0,5,0,1,70.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053298657722634576,29719.322543601615,8,4,8,8_1,8_4,8_1_0 +16424,2,37.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,570.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,2,,2,116442,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,214.292437918446,0.0,21783.042997754197,0,1,1,2,38.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026167142949622156,21783.042997754197,6,3,6,6_0,6_4,6_0_1 +16426,2,42.0,0.0,1,300,1400.0,0.0,0.0,56,62,0.0,529.7309108040896,2387.2807607208856,1920.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,116444,2,1,2,0,1,,230.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1467.80601423273,1400.0,48738.45514325281,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03939394456300896,32492.303428835206,8,4,8,8_1,8_0,8_1_0 +16427,2,43.0,0.0,5,112,300.0,600.0,0.0,0,63,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,43,0,0,0,0,0,0,0,0,2,30.0,2,,3,116445,2,1,0,0,1,,0.0,566.0,12,1.0,2.0,4.0,1.0,1.0,1,1,841.342596667054,300.0,24360.79147864928,0,1,2,3,70.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036944612443680004,24360.79147864928,7,4,7,7_0,7_1,7_0_0 +16428,2,77.0,0.0,2,111,648.0,,,86,75,0.0,0.0,,924.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,116446,1,2,0,0,2,,450.0,,41,1.0,5.0,4.0,3.0,2.0,3,2,77.12584955195769,648.0,13990.0,6,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06604717655468191,6995.0,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +16429,2,53.0,0.0,1,111,570.0,0.0,0.0,0,52,0.0,0.0,971.9643097220749,605.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,116447,2,2,0,0,2,,0.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,447.326316755416,570.0,24347.682035771977,0,1,2,3,75.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024848361298259316,24347.682035771977,7,4,7,7_0,7_3,7_1_0 +16430,2,75.0,0.0,1,112,380.0,0.0,0.0,0,78,949.2145659329414,0.0,647.9762064813832,1342.0,85.9065319745843,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116448,2,1,2,0,1,,84.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1323.9924764183,380.0,17405.584403988967,0,5,0,1,62.0,4,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07710169155207704,17405.584403988967,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +16431,2,35.0,0.0,7,112,2500.0,0.0,0.0,54,47,0.0,0.0,4263.001358430153,2570.0,96.99124577775646,0.0,43,2,2,1,1,1,2,2,2,2,25.0,1,,5,116449,1,2,1,0,1,,260.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,794.345615193656,2500.0,50104.76191310852,1,1,1,2,120.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.051292529928729805,23859.41043481358,6,3,6,6_1,6_0,6_0_0 +16432,1,63.0,78.0,1,111,255.0,900.0,0.0,0,78,0.0,0.0,434.8261385598756,1155.0,0.0,1708.65364314581,70,0,0,0,0,0,0,0,0,0,,1,,1,116450,1,1,3,0,1,,360.0,320.0,11,0.0,3.0,4.0,1.0,1.0,1,1,416.489316256922,255.0,12751.754179888572,0,5,2,3,40.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09057577363133365,12751.754179888572,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +16433,2,42.0,0.0,5,111,408.0,70.0,0.0,35,34,0.0,0.0,695.7218216958009,478.0,0.0,132.89528335578524,20,1,2,2,2,1,1,2,2,0,,2,,3,116451,2,2,0,1,1,580.0,0.0,486.0,43,2.0,0.0,3.0,3.0,1.8,2,2,911.34034241874,408.0,55045.5877245439,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.008683711442813206,30580.88206919105,8,4,8,8_0,8_4,8_0_0 +16434,2,82.0,0.0,5,111,320.0,0.0,0.0,0,77,2109.365702073203,0.0,545.6641738790596,2495.0,242.47811444439117,0.0,50,2,2,1,1,1,2,2,2,0,,1,,3,116452,2,1,3,0,1,,100.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,349.512248154734,320.0,16599.75816749113,0,5,0,1,55.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.15030339447270946,16599.75816749113,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +16435,2,51.0,0.0,2,111,0.0,0.0,164.0,0,33,0.0,0.0,103.37219962801798,164.0,0.0,196.26407220060767,20,0,0,0,0,0,0,0,0,1,1.0,2,,2,116453,2,2,0,1,2,1500.0,0.0,969.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2159.64803952377,0.0,52217.30381494951,0,1,2,3,87.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.003140721332169735,52217.30381494951,10,5,10,10_0,10_3,10_0_1 +16436,1,54.0,390.0,2,111,0.0,0.0,0.0,21,35,0.0,0.0,0.0,1041.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,116454,2,2,5,0,1,,371.0,590.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1276.34466665133,0.0,13098.0,1,4,2,3,80.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07947778286761338,6237.142857142857,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +16437,2,29.0,0.0,2,112,450.0,751.0,0.0,0,62,0.0,0.0,767.3402445174275,1201.0,0.0,1425.7765400027815,43,2,2,2,2,1,2,2,2,2,15.0,1,,2,116455,2,1,1,0,1,,176.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,258.317362014082,450.0,23032.40312762787,0,1,1,2,75.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.05214392928714305,23032.40312762787,6,3,6,6_1,6_0,6_0_1 +16438,2,25.0,0.0,2,112,7.0,7.0,0.0,0,47,0.0,0.0,11.936403803604428,14.0,0.0,13.289528335578524,20,0,0,0,0,0,0,0,0,2,25.0,2,,2,116456,2,3,0,0,1,,50.0,366.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1162.85208480668,7.0,44362.79755988484,0,1,3,4,83.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0003155797373035719,44362.79755988484,10,5,10,10_0,10_1,10_0_1 +16439,2,53.0,0.0,6,111,2000.0,0.0,0.0,44,48,0.0,0.0,3410.4010867441225,2200.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,116457,2,1,2,0,1,,700.0,,43,3.0,2.0,7.0,6.0,3.3,5,3,2424.42013389424,2000.0,52278.94762431578,1,1,1,2,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042081948852710736,15842.105340701752,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +16440,1,31.0,82.0,2,111,236.0,0.0,0.0,85,67,0.0,0.0,402.42732823580644,474.0,329.770235644372,0.0,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,116458,1,1,0,0,1,,288.0,494.0,42,1.0,0.0,2.0,2.0,1.5,2,2,3305.2790547823,236.0,14564.61196344431,6,1,2,3,45.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.032544636354864216,9709.741308962874,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16441,1,71.0,322.0,5,111,232.0,835.0,0.0,72,78,0.0,0.0,395.6065260623182,1067.0,0.0,1585.2508800297237,50,2,2,2,2,1,2,2,2,0,,2,,3,116459,1,2,0,0,2,,182.0,397.0,41,0.0,4.0,3.0,2.0,1.5,2,2,218.637952917648,232.0,21737.171737164106,5,5,2,3,88.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04908642269112439,14491.44782477607,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +16442,2,69.0,0.0,1,112,550.0,1211.0,0.0,78,78,0.0,426.4333831972921,937.8602988546337,2083.0,0.0,2299.0884020550843,70,0,0,0,0,0,0,0,0,0,,1,,1,116460,2,2,2,0,2,,152.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2247.63836724195,550.0,15513.307509407201,6,5,0,1,120.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13427181784006267,10342.205006271468,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +16444,0,72.0,0.0,2,112,0.0,0.0,0.0,0,77,0.0,1059.4618216081792,0.0,3313.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116462,2,1,2,0,1,,600.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1203.30001423156,0.0,21434.8303846879,0,5,0,1,89.0,5,0,4,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15456152162354694,21434.8303846879,6,3,6,6_1,6_0,6_0_1 +16445,1,77.0,165.0,2,111,135.0,155.0,0.0,0,86,0.0,0.0,230.20207335522826,290.0,0.0,294.2681274306673,71,2,1,2,2,1,2,2,2,0,,2,,2,116463,1,2,0,1,1,,0.0,290.0,11,0.0,6.0,2.0,1.0,1.0,1,1,307.490753024406,135.0,13284.31639105664,0,5,2,3,40.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02183025392222936,13284.31639105664,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +16446,2,59.0,0.0,6,111,1825.0,0.0,0.0,42,43,0.0,0.0,3111.990991654012,1825.0,0.0,0.0,33,2,2,2,2,1,2,2,2,3,90.0,1,,4,116464,2,1,3,0,1,,1110.0,542.0,43,3.0,1.0,5.0,5.0,3.0,5,4,558.624750069441,1825.0,68633.98620719864,1,1,2,3,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02659032501027291,22877.99540239955,6,3,6,6_1,6_4,6_0_0 +16447,2,86.0,0.0,2,120,882.0,0.0,0.0,0,71,0.0,0.0,1503.9868792541579,882.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116465,1,2,2,0,1,,150.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,512.531081598167,882.0,14853.049634223024,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059381744606022,14853.049634223024,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +16448,1,39.0,260.0,1,111,350.0,0.0,0.0,0,68,0.0,0.0,596.8201901802214,383.0,45.72444443808519,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,116466,1,1,0,0,2,,300.0,380.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3282.20296877853,350.0,4839.267902296582,0,4,2,3,35.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07914420274567541,4839.267902296582,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +16449,1,48.0,490.0,1,111,600.0,1380.0,0.0,85,67,0.0,0.0,1023.1203260232367,1980.0,0.0,2619.935586156909,43,0,0,0,0,0,0,0,0,0,,1,,1,116467,1,3,4,0,1,,590.0,525.0,42,1.0,0.0,3.0,6.0,3.0999999999999996,4,3,227.204678645388,600.0,24118.782182657415,6,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08209369714461441,7780.252316986263,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +16450,2,46.0,0.0,8,111,0.0,0.0,1200.0,42,43,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,33,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,116468,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1107.63493139932,0.0,47792.62602306023,1,1,1,2,118.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025108475927248543,19117.05040922409,5,3,5,5_1,5_2,5_0_0 +16451,2,62.0,0.0,1,111,578.0,1380.0,0.0,78,78,0.0,397.2981831030672,985.6059140690513,2258.0,0.0,2619.935586156909,50,0,0,0,0,0,0,0,0,0,,1,,1,116469,2,2,3,0,1,,264.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,248.084371520148,578.0,26444.53705181521,5,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08538625560264841,17629.691367876807,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +16452,2,75.0,0.0,2,111,620.0,930.0,0.0,0,77,0.0,0.0,1057.224336890678,1550.0,0.0,1765.6087645840037,71,0,0,0,0,0,0,0,0,0,,1,,2,116470,2,1,2,0,1,,420.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1512.35357467967,620.0,21385.212822854184,0,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07247998945998466,21385.212822854184,6,3,6,6_1,6_3,6_0_1 +16453,1,81.0,78.0,1,111,275.0,1037.0,0.0,0,77,0.0,0.0,468.93014942731685,1312.0,0.0,1968.7486977135611,71,2,2,2,2,1,2,2,2,0,,1,,1,116471,1,2,5,0,1,,114.0,546.0,11,0.0,2.0,4.0,1.0,1.0,1,1,215.76825580473,275.0,12641.1161011261,0,5,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.10378830393647948,12641.1161011261,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +16454,2,71.0,0.0,1,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,190.0,0.0,0.0,30,2,2,2,2,1,2,2,2,0,,2,,1,116472,1,1,0,0,2,,100.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1827.27684509493,0.0,54608.017155740876,0,7,0,1,40.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.003479342592830722,54608.017155740876,10,5,10,10_0,10_3,10_1_0 +16455,2,78.0,0.0,5,111,270.0,775.0,0.0,0,77,0.0,0.0,460.40414671045653,1045.0,0.0,1471.3406371533365,71,0,0,0,0,0,0,0,0,0,,2,,3,116473,2,1,0,0,1,,350.0,419.0,11,0.0,1.0,3.0,1.0,1.0,1,1,480.852010890048,270.0,20025.909384558152,0,5,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0521823993074588,20025.909384558152,5,3,5,5_0,5_2,5_0_0 +16456,2,41.0,0.0,6,111,240.0,840.0,0.0,0,46,0.0,0.0,409.2481304092947,1080.0,0.0,1594.7434002694229,50,0,0,0,0,0,0,0,0,0,,2,,4,116474,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,4887.83098585893,240.0,17048.222675608245,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06334971219875082,17048.222675608245,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +16457,2,28.0,0.0,1,111,258.0,714.0,0.0,34,38,0.0,0.0,439.9417401899918,972.0,0.0,1355.5318902290094,12,0,0,0,0,0,0,0,0,3,60.0,2,,1,116475,1,2,0,0,1,,194.0,695.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1734.77055696234,258.0,52684.25297417892,3,1,2,3,57.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018449535584691444,35122.83531611928,9,5,9,9_0,9_3,9_1_0 +16458,1,36.0,411.0,2,111,500.0,0.0,0.0,22,22,0.0,0.0,852.6002716860306,680.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116476,2,1,0,1,1,1140.0,450.0,370.0,43,2.0,0.0,4.0,5.0,2.4,2,2,341.042493247972,500.0,13095.539020085798,4,4,2,3,81.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.051926079480731815,5456.474591702417,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +16459,2,29.0,0.0,9,112,700.0,0.0,0.0,84,37,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2005.0,6,116477,2,1,0,0,1,,52.0,908.0,42,1.0,0.0,3.0,2.0,1.5,2,2,752.840887928898,700.0,42799.122425802874,3,1,2,3,74.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01635547554073169,28532.748283868583,8,4,8,8_0,8_1,8_0_0 +16460,2,86.0,0.0,2,111,290.0,60.0,0.0,0,74,0.0,0.0,494.50815757789775,350.0,0.0,113.91024287638734,10,0,0,0,0,0,0,0,0,0,,2,,2,116478,2,1,0,1,1,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,287.33227696415,290.0,37803.44627432054,0,5,0,1,111.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009258415157714103,37803.44627432054,9,5,9,9_0,9_2,9_0_1 +16461,2,79.0,0.0,1,112,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116479,2,1,4,0,1,,220.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1997.0197548774,1000.0,17010.642583390763,0,5,0,1,70.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06231393051753299,17010.642583390763,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +16462,2,25.0,0.0,8,400,0.0,,,0,52,0.0,0.0,,350.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,116480,2,3,0,0,2,,0.0,,22,2.0,6.0,5.0,7.0,3.6,5,4,8.280596007637794,0.0,27589.71234228517,0,4,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012685887973669631,7663.808983968102,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +16463,2,70.0,0.0,5,111,180.0,0.0,0.0,78,78,0.0,0.0,306.936097806971,250.0,96.99124577775646,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,116481,1,2,0,1,1,,192.0,376.0,41,0.0,2.0,4.0,2.0,1.5,2,2,398.867470583783,180.0,26625.467103402993,5,5,2,3,90.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.009389506633971787,17750.31140226866,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +16464,2,57.0,0.0,6,300,1500.0,0.0,0.0,0,38,0.0,0.0,2557.8008150580918,1530.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,4,116482,2,2,3,0,1,,295.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1007.12141639833,1500.0,37102.1269562018,0,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04123752802113285,37102.1269562018,9,5,9,9_1,9_0,9_0_0 +16465,2,75.0,0.0,7,111,1320.0,,,72,74,0.0,0.0,,1410.0,124.70303028568689,,50,0,0,0,0,0,0,0,0,0,,1,,5,116483,2,1,0,0,1,,500.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,112.1601148310336,1320.0,71725.26247474717,5,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019658345628172903,47816.84164983145,10,5,10,10_1,10_3,10_0_0 +16466,1,57.0,347.0,6,111,0.0,,,0,55,0.0,0.0,,351.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,116484,2,2,0,0,2,,330.0,389.0,32,2.0,2.0,3.0,3.0,2.0,3,2,69.64432021913719,0.0,16608.158377308107,0,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021134191523581255,8304.079188654054,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16467,1,43.0,415.0,1,111,500.0,1400.0,0.0,85,48,0.0,0.0,852.6002716860306,1900.0,0.0,2657.9056671157045,42,1,2,2,2,1,2,2,2,0,,1,,1,116485,1,3,3,0,1,,1000.0,387.0,42,1.0,2.0,4.0,4.0,2.1,2,2,194.097800242239,500.0,11419.888228335167,6,4,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.166376409471828,5438.042013492936,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +16468,2,61.0,0.0,9,111,330.0,,,77,75,0.0,0.0,,393.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,116486,2,1,0,0,2,,207.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,244.99911025660018,330.0,26523.888926558226,6,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01481683176581588,17682.592617705483,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +16469,2,28.0,0.0,8,111,241.0,,,0,35,0.0,0.0,,241.0,0.0,,10,0,0,0,0,0,0,0,0,2,25.0,2,2003.0,6,116487,2,1,0,0,2,,120.0,600.0,12,1.0,0.0,1.0,1.0,1.0,1,1,159.0714798015019,241.0,28206.0,0,1,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008544281358576189,28206.0,8,4,8,8_0,8_2,8_0_0 +16470,2,55.0,0.0,9,211,0.0,0.0,0.0,68,54,0.0,0.0,0.0,2726.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,116488,2,1,1,0,1,,203.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,302.296228540872,0.0,36997.79451476169,1,1,1,2,88.0,3,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0736800675757134,24665.196343174463,7,4,7,7_1,7_2,7_0_0 +16471,2,22.0,0.0,2,111,0.0,0.0,0.0,63,54,0.0,0.0,0.0,351.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,116489,2,2,0,1,1,157.0,263.0,263.0,43,2.0,0.0,3.0,2.0,1.5,2,2,248.49699091932,0.0,17095.092759988052,1,4,2,3,64.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02053220798085013,11396.728506658701,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +16472,2,48.0,0.0,7,111,829.0,1156.0,0.0,46,22,0.0,132.4327277010224,1413.6112504554387,2085.0,0.0,2194.670679418396,12,0,0,0,0,0,0,0,0,0,,1,,5,116490,2,1,2,0,1,,855.0,,43,2.0,0.0,9.0,5.0,2.5999999999999996,3,2,1096.50972060708,829.0,90293.87062550413,1,1,0,1,185.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023091268383516137,34728.411779040056,9,5,9,9_1,9_3,9_0_0 +16473,2,36.0,0.0,9,112,2500.0,0.0,0.0,11,11,0.0,264.8654554020448,4263.001358430153,2700.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,3.0,1,2009.0,6,116491,2,1,1,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1716.35513511122,2500.0,48426.40266319612,1,1,1,2,120.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0557547092394701,23060.191744379103,6,3,6,6_1,6_0,6_0_0 +16474,2,87.0,0.0,2,111,670.0,0.0,0.0,75,74,0.0,0.0,1142.484364059281,3644.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,116492,2,1,0,0,1,,282.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1075.65841088669,670.0,70107.87914893302,5,5,0,1,80.0,4,3,5,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05197703944600724,46738.58609928868,10,5,10,10_0,10_1,10_0_1 +16475,2,62.0,0.0,6,111,1150.0,0.0,0.0,77,75,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,116493,1,1,0,0,1,,0.0,473.0,41,0.0,1.0,3.0,2.0,1.5,2,2,890.012210070497,1150.0,39274.220113130665,5,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029281294362749604,26182.813408753776,7,4,7,7_0,7_4,7_0_0 +16476,2,74.0,0.0,5,112,885.0,0.0,0.0,0,72,0.0,0.0,1509.1024808842742,935.0,69.27946126982604,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,116494,2,1,2,0,1,,221.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1419.99654403202,885.0,14665.60749245731,0,5,0,1,67.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0637546041294833,14665.60749245731,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +16477,2,67.0,0.0,1,111,0.0,0.0,3000.0,72,78,0.0,331.081819252556,1890.9548712442313,3250.0,0.0,3590.196442694042,71,0,0,0,0,0,0,0,0,0,,1,,1,116495,2,2,1,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,297.29740738088,0.0,12220.282415047915,5,5,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.26595130043786774,8146.854943365277,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +16478,2,62.0,0.0,5,112,900.0,,,77,75,0.0,0.0,,900.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,3,116496,2,1,0,0,2,,300.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,94.53939385249434,900.0,80881.74909593996,6,5,0,1,180.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011127355801028017,53921.16606395997,10,5,10,10_1,10_1,10_0_0 +16479,1,86.0,138.0,2,111,140.0,87.0,0.0,0,77,0.0,0.0,238.72807607208856,227.0,0.0,165.16985217076163,70,0,0,0,0,0,0,0,0,0,,2,,2,116497,2,1,0,1,1,548.0,0.0,312.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1369.03539680847,140.0,15878.369917726326,0,5,2,3,73.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.014296177830356584,15878.369917726326,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +16480,2,65.0,0.0,1,111,275.0,745.0,0.0,0,45,0.0,0.0,468.93014942731685,1020.0,0.0,1414.385515715143,20,2,2,2,2,1,2,2,1,1,45.0,2,,1,116498,1,1,0,0,2,,0.0,830.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1405.33863870585,275.0,33008.32903766596,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0309012915751074,33008.32903766596,8,4,8,8_0,8_4,8_1_0 +16481,2,49.0,0.0,5,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1886.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,60.0,1,,3,116499,2,1,2,0,1,,0.0,,32,2.0,0.0,4.0,3.0,2.0,3,2,817.62533954318,0.0,34040.17145373771,0,1,1,2,103.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05540512633913046,17020.085726868856,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +16482,2,29.0,0.0,8,111,600.0,0.0,0.0,45,31,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,45.0,2,2000.0,6,116500,1,2,0,0,1,,0.0,520.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1004.74434532775,600.0,21115.45809641046,1,1,3,4,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.028415201662236135,14076.972064273641,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +16483,1,83.0,160.0,5,111,360.0,420.0,0.0,0,72,0.0,0.0,613.872195613942,780.0,0.0,797.3717001347114,71,2,1,2,1,2,2,2,2,0,,2,,3,116501,2,1,0,1,1,726.0,0.0,1170.0,21,0.0,3.0,3.0,2.0,1.5,2,2,612.567674863726,360.0,9253.330889331119,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.08429397039063224,6168.887259554079,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +16484,1,42.0,35.0,9,111,1450.0,0.0,0.0,0,54,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,116502,2,1,1,0,1,,280.0,,32,1.0,0.0,7.0,2.0,1.5,2,1,1102.51390398427,1450.0,25357.645330137366,0,1,1,2,130.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05718196548307607,16905.096886758245,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +16485,2,59.0,0.0,5,111,360.0,0.0,0.0,78,72,527.3414255183008,0.0,613.872195613942,1360.0,692.7946126982605,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,116503,2,1,2,0,1,,120.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,851.577415148304,360.0,34170.1763211116,5,5,0,1,130.0,5,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03980078964824486,22780.11754740773,6,3,6,6_1,6_2,6_0_0 +16486,1,42.0,236.0,2,111,900.0,0.0,0.0,0,43,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,2,1,2,1,2,2,2,2,1,10.0,2,,2,116504,2,3,0,1,1,560.0,0.0,328.0,32,1.0,0.0,3.0,3.0,1.8,2,2,871.442363449634,900.0,16781.861431967827,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05362933090876241,9323.256351093238,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +16487,1,42.0,380.0,9,111,800.0,,,54,63,0.0,0.0,,926.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,116505,2,1,0,0,2,,550.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,167.52047836582793,800.0,20541.703655567413,4,1,1,2,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04507902633231818,8559.043189819757,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +16488,2,49.0,0.0,2,111,500.0,1000.0,0.0,56,42,0.0,198.6490915515336,852.6002716860306,1650.0,0.0,1898.504047939789,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,116506,2,1,2,0,1,,600.0,,43,2.0,0.0,8.0,6.0,3.0999999999999996,4,3,365.282834696483,500.0,49711.49175150973,1,1,0,1,250.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03319152054916738,16035.965081132174,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +16489,2,50.0,0.0,6,120,498.0,0.0,0.0,67,67,0.0,476.7578197236806,849.1898705992865,863.0,6.927946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,116507,2,1,2,0,1,,500.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,883.120902952934,498.0,39627.7310745175,1,1,0,1,83.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021777678827414618,26418.487383011667,7,4,7,7_1,7_0,7_0_0 +16490,2,36.0,0.0,1,111,350.0,1500.0,0.0,54,54,0.0,66.2163638505112,596.8201901802214,1900.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,2,8.0,1,,1,116508,1,2,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,160.249454134339,350.0,51104.083735015556,1,1,1,2,75.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03717902486720755,24335.277969055027,7,4,7,7_1,7_2,7_1_0 +16491,2,46.0,0.0,7,111,820.0,,,34,34,0.0,0.0,,820.0,0.0,,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,116509,2,1,0,0,1,,180.0,1100.0,43,2.0,0.0,6.0,5.0,2.8,4,2,147.00064723088823,820.0,142205.4928974736,1,1,2,3,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0057663032790948405,50787.676034812,10,5,10,10_1,10_2,10_0_0 +16492,2,60.0,0.0,1,211,6200.0,0.0,0.0,54,78,0.0,953.5156394473612,10572.243368906778,6920.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116510,2,2,3,0,1,,260.0,,42,2.0,1.0,7.0,3.0,2.0,3,3,1029.55549447745,6200.0,46325.37326139652,1,5,0,1,149.0,4,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14937818117412813,23162.68663069826,6,3,6,6_1,6_2,6_1_0 +16493,1,30.0,249.0,6,120,0.0,0.0,0.0,0,21,0.0,0.0,0.0,26.0,36.025319860309544,0.0,50,2,2,2,2,2,2,2,1,0,,1,,4,116511,1,2,5,0,1,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2153.31495336016,0.0,5356.4445599001,0,4,2,3,33.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.004853966042072675,5356.4445599001,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +16494,2,34.0,0.0,9,111,0.0,0.0,0.0,33,48,0.0,0.0,0.0,1164.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,116512,2,1,1,0,1,,476.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,88.0695920706226,0.0,48722.469306682084,1,1,1,2,143.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023890414762709127,23201.1758603248,6,3,6,6_1,6_2,6_0_0 +16495,0,55.0,0.0,1,111,0.0,0.0,2000.0,0,38,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,116513,1,2,3,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,973.587312887837,0.0,39591.0,0,1,5,0,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050516531534944814,39591.0,9,5,9,9_1,9_4,9_1_0 +16496,2,51.0,0.0,7,111,521.0,808.0,0.0,63,47,0.0,0.0,888.4094830968438,1329.0,0.0,1533.9912707353494,31,0,0,0,0,0,0,0,0,2,35.0,1,,5,116514,2,1,2,0,1,,516.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1057.18325959135,521.0,52655.672222984875,1,1,1,2,105.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025239446082313512,35103.781481989914,9,5,9,9_1,9_2,9_0_0 +16497,2,49.0,0.0,1,111,720.0,0.0,0.0,0,62,0.0,0.0,1227.744391227884,848.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116515,2,1,2,0,1,,350.0,,22,1.0,2.0,5.0,3.0,2.0,3,3,1428.38484649976,720.0,43322.054411111385,0,1,0,1,85.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019574325629915235,21661.027205555692,6,3,6,6_1,6_2,6_1_0 +16498,2,23.0,0.0,9,111,80.0,,,21,55,0.0,0.0,,82.0,2.771178450793042,,43,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,116516,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,210.92359333769394,80.0,45060.678168261125,1,1,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018197684396538312,30040.452112174084,8,4,8,8_1,8_2,8_0_0 +16499,2,60.0,0.0,1,120,256.0,1870.0,0.0,77,75,0.0,0.0,436.53133910324766,2188.0,85.9065319745843,3550.202569647405,50,0,0,0,0,0,0,0,0,0,,1,,1,116517,2,3,3,0,2,,217.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,198.791201753235,256.0,32101.7287107803,7,7,0,1,90.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0681583231766965,21401.152473853534,6,3,6,6_1,6_0,6_1_0 +16500,2,56.0,0.0,2,111,574.0,480.0,0.0,68,68,0.0,0.0,978.7851118955631,1054.0,0.0,911.2819430110987,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,116518,2,1,0,1,1,800.0,0.0,273.0,43,3.0,1.0,4.0,3.0,2.0,3,3,443.522636676157,574.0,41880.086569375075,1,1,2,3,87.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025167092199153675,20940.043284687537,5,3,5,5_0,5_2,5_0_1 +16501,2,53.0,0.0,1,111,630.0,2466.0,0.0,85,37,0.0,0.0,1074.2763423243985,3096.0,0.0,4681.71098221952,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,116519,2,2,3,0,1,,700.0,,42,1.0,0.0,7.0,4.0,2.5,4,4,556.764903695039,630.0,115627.95719233484,6,1,1,2,148.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026775531412789145,46251.18287693393,10,5,10,10_1,10_4,10_1_0 +16502,1,36.0,159.0,9,111,1866.0,0.0,0.0,85,64,0.0,0.0,3181.904213932266,1866.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,116520,2,1,1,0,1,,545.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,644.169576881623,1866.0,34004.663758807,6,1,1,2,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05487482579552687,12594.319910669261,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +16503,2,37.0,0.0,5,111,480.0,1200.0,0.0,67,38,0.0,0.0,818.4962608185893,1680.0,0.0,2278.2048575277468,31,1,2,1,2,1,2,2,2,3,40.0,2,,3,116521,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,853.100333742161,480.0,58390.91481170294,1,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028771599236244328,27805.197529382353,7,4,7,7_0,7_4,7_0_0 +16504,2,79.0,0.0,5,111,243.0,0.0,0.0,0,72,0.0,0.0,414.3637320394109,243.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,2,,3,116522,2,1,0,1,1,,124.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,376.54963312057,243.0,14037.71994455539,0,5,0,1,73.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017310503483455583,14037.71994455539,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +16505,0,38.0,0.0,9,211,1500.0,,,81,53,0.0,0.0,,1550.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,116523,2,1,0,0,2,,1273.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,131.52124747996342,1500.0,59109.54429800369,4,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026222499571060782,28147.402046668423,8,4,8,8_1,8_2,8_0_0 +16506,2,42.0,0.0,7,112,550.0,,,56,48,0.0,0.0,,616.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,116524,2,2,0,0,2,,397.0,700.0,43,3.0,0.0,4.0,5.0,2.8,4,4,115.62818434823947,550.0,52175.697948590925,1,1,2,3,80.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011806262766373515,18634.177838782474,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +16507,0,71.0,0.0,6,111,257.0,,,86,72,0.0,0.0,,383.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,116525,2,2,0,0,2,,120.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,100.19484859574862,257.0,9369.219291549023,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04087853940460798,6246.146194366015,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16508,0,48.0,0.0,1,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,2676.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116526,1,2,1,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,402.17358286238,0.0,23799.337638156303,1,1,5,0,110.0,7,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11244010403506782,15866.225092104201,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +16509,1,77.0,254.0,5,111,330.0,940.0,0.0,0,77,0.0,0.0,562.7161793127802,1270.0,0.0,1784.5938050634018,70,0,0,0,0,0,0,0,0,0,,2,,3,116527,2,2,0,1,1,,100.0,378.0,11,0.0,4.0,3.0,1.0,1.0,1,1,420.488437439564,330.0,9397.943207917484,0,5,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1351359517612389,9397.943207917484,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16510,2,53.0,0.0,6,111,946.0,0.0,0.0,46,48,0.0,190.70312788947223,1613.1197140299698,1150.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,116528,2,1,2,0,1,,260.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,1536.29699778976,946.0,62172.426796462656,1,1,0,1,90.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01849694565992766,31086.213398231328,8,4,8,8_1,8_2,8_0_0 +16511,0,53.0,0.0,2,111,720.0,,,0,56,0.0,0.0,,1272.0,764.8452524188796,,71,0,0,0,0,0,0,0,0,0,,1,,2,116529,2,1,0,0,2,,1100.0,,22,5.0,0.0,7.0,5.0,3.0,5,5,125.41341269920508,720.0,3622.5771487795437,0,4,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3511312382756404,1207.525716259848,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +16512,1,79.0,163.0,2,111,150.0,,,0,77,0.0,0.0,,250.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,2,116530,2,3,0,0,2,,180.0,220.0,11,0.0,0.0,3.0,1.0,1.0,1,1,115.25056937496785,150.0,20792.895297866384,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.012023337607324613,20792.895297866384,5,3,5,5_1,5_2,5_0_1 +16513,1,39.0,250.0,5,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,399.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,116531,1,2,0,1,1,780.0,0.0,360.0,12,1.0,2.0,3.0,1.0,1.0,1,1,403.442628753116,0.0,8070.897326466821,0,4,2,3,70.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04943688215330938,8070.897326466821,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +16514,2,51.0,0.0,2,111,300.0,1152.0,0.0,0,67,0.0,0.0,511.56016301161833,1452.0,0.0,2187.076663226637,70,0,0,0,0,0,0,0,0,0,,1,,2,116532,2,2,2,0,1,,336.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,301.750767238918,300.0,21420.5995511304,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06778521752083151,14280.3997007536,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +16515,2,29.0,0.0,2,111,390.0,197.0,0.0,0,52,0.0,0.0,665.0282119151038,587.0,0.0,374.0052974441384,50,2,2,2,2,1,2,2,2,0,,2,,2,116533,2,1,0,1,1,45.0,0.0,308.0,22,1.0,0.0,3.0,2.0,1.5,2,2,336.248560863002,390.0,30618.0,0,1,2,3,113.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01917172904827226,20412.0,5,3,5,5_0,5_2,5_0_1 +16516,1,80.0,93.0,2,112,528.0,0.0,0.0,86,78,2636.7071275915036,132.4327277010224,900.3458869004482,3278.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116534,1,1,2,0,1,,690.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1101.68803285953,528.0,26351.75963587628,6,5,0,1,105.0,5,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.12439397009136374,17567.83975725085,4,2,4_1,4_1_1,4_0_1,4_0_1_1 +16517,2,47.0,0.0,2,111,150.0,0.0,0.0,56,53,0.0,0.0,255.78008150580916,837.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,116535,1,2,0,1,1,69.0,150.0,383.0,43,2.0,2.0,3.0,3.0,2.0,3,3,311.864901152678,150.0,31031.25432208807,1,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026972805910853007,15515.627161044034,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +16518,2,70.0,0.0,6,112,3000.0,0.0,0.0,74,74,0.0,662.163638505112,5115.6016301161835,3500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,116536,1,1,2,0,2,,90.0,,41,1.0,1.0,10.0,3.0,2.0,3,3,1555.51988373117,3000.0,89118.22819425543,5,5,0,1,290.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03927367128945693,44559.11409712771,10,5,10,10_1,10_1,10_0_0 +16519,2,74.0,0.0,7,120,578.0,969.0,0.0,75,77,0.0,79.45963662061344,985.6059140690513,1607.0,0.0,1839.6504224536554,50,0,0,0,0,0,0,0,0,0,,1,,5,116537,2,1,2,0,1,,496.0,914.0,41,0.0,3.0,3.0,2.0,1.5,2,2,1638.83848796167,578.0,37836.91694365691,5,5,2,3,115.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042471747959618104,25224.611295771272,7,4,7,7_1,7_0,7_0_0 +16520,2,27.0,0.0,8,120,430.0,,,0,47,0.0,0.0,,596.0,230.0078114158225,,43,0,0,0,0,0,0,0,0,0,,1,2000.0,6,116538,2,2,0,0,2,,450.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,89.39251620558926,430.0,23198.244872426516,0,1,0,1,92.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02569159879454531,15465.496581617677,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +16521,2,63.0,0.0,1,221,800.0,400.0,0.0,0,22,0.0,0.0,1364.160434697649,1200.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,1,,1,116539,1,1,4,0,2,,240.0,434.0,12,1.0,2.0,3.0,1.0,1.0,1,1,524.8207317393,800.0,76233.08778769431,0,1,2,3,70.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015741196307592124,76233.08778769431,10,5,10,10_1,10_1,10_1_0 +16522,2,67.0,0.0,9,111,163.0,,,0,78,0.0,0.0,,331.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,116540,1,1,0,0,2,,240.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,299.9976131578885,163.0,10934.578490893313,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030270942796347202,10934.578490893313,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16523,2,87.0,0.0,1,111,245.0,837.0,0.0,75,78,0.0,0.0,417.774133126155,1082.0,0.0,1589.0478881256033,71,0,0,0,0,0,0,0,0,0,,1,,1,116541,2,2,2,0,1,,255.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1253.19882530704,245.0,15005.025903600344,5,5,0,1,75.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07210917241671554,10003.350602400229,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +16524,2,26.0,0.0,2,111,0.0,0.0,1200.0,84,63,0.0,0.0,756.3819484976925,1270.0,96.99124577775646,1436.078577077617,43,2,2,2,2,2,2,2,1,0,,1,,2,116542,2,1,1,0,1,,0.0,561.0,42,1.0,0.0,4.0,2.0,1.5,2,2,1171.93674116142,0.0,29566.66169846914,3,1,2,3,75.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04295378399333315,19711.107798979425,5,3,5,5_1,5_2,5_0_1 +16525,1,46.0,418.0,5,111,1400.0,0.0,0.0,56,22,0.0,0.0,2387.2807607208856,1656.0,354.71084170150937,0.0,50,2,2,2,1,2,1,2,2,1,15.0,2,,3,116543,1,2,0,0,1,408.0,0.0,377.0,43,2.0,0.0,3.0,5.0,2.4,2,2,324.648583298703,1400.0,23276.248387147956,1,1,2,3,72.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07114548583844658,9698.436827978316,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +16526,2,46.0,0.0,7,112,680.0,0.0,0.0,85,65,0.0,0.0,1159.5363694930015,750.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,116544,2,1,2,0,1,,330.0,,42,1.0,3.0,5.0,3.0,2.0,3,2,1044.56466786447,680.0,31804.230193505522,7,1,1,2,137.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02358176869670473,15902.115096752761,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +16527,1,53.0,270.0,2,111,350.0,0.0,0.0,0,85,0.0,0.0,596.8201901802214,350.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,116545,1,3,0,1,2,383.0,0.0,371.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1796.23255444959,350.0,11126.246102377707,0,7,2,3,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.031457150666944544,11126.246102377707,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +16528,2,25.0,0.0,7,111,300.0,0.0,0.0,0,38,0.0,0.0,511.56016301161833,300.0,0.0,0.0,12,2,1,2,2,1,2,2,2,2,20.0,2,,5,116546,1,2,0,1,1,182.0,0.0,613.0,12,1.0,0.0,1.0,1.0,1.0,1,1,851.489488213073,300.0,33092.66504109121,0,1,2,3,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009065453012850114,33092.66504109121,8,4,8,8_0,8_4,8_0_0 +16529,2,54.0,0.0,7,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,792.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,20.0,2,,5,116547,2,1,0,1,1,,0.0,830.0,32,1.0,1.0,3.0,2.0,1.5,2,2,322.246355355773,0.0,60003.52478922253,0,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013199224591923544,40002.349859481685,9,5,9,9_0,9_3,9_0_0 +16530,2,51.0,0.0,6,111,120.0,150.0,0.0,0,45,0.0,0.0,204.62406520464734,270.0,0.0,284.77560719096834,30,0,0,0,0,0,0,0,0,2,10.0,2,,4,116548,2,2,0,1,1,458.0,100.0,340.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1437.8217275457,120.0,27740.678561025048,0,1,2,3,65.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00973299911918316,27740.678561025048,7,4,7,7_0,7_2,7_0_0 +16531,1,47.0,307.0,5,111,720.0,0.0,0.0,0,52,0.0,0.0,1227.744391227884,720.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,116549,1,2,0,0,1,420.0,0.0,305.0,12,1.0,0.0,3.0,1.0,1.0,1,1,390.063977967171,720.0,5992.176961156967,0,4,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.12015666504298009,5992.176961156967,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +16532,2,62.0,0.0,5,111,512.0,50.0,0.0,75,75,1265.6194212439218,0.0,873.0626782064953,1762.0,0.0,94.92520239698945,31,0,0,0,0,0,0,0,0,0,,1,,3,116550,2,1,3,0,1,,270.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,573.232914303187,512.0,70186.55790156788,5,5,0,1,100.0,7,5,8,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025104522186015894,46791.03860104526,10,5,10,10_1,10_2,10_0_0 +16533,2,28.0,0.0,2,111,510.0,290.0,0.0,0,65,0.0,0.0,869.6522771197511,4333.0,0.0,550.5661739025388,42,0,0,0,0,0,0,0,0,0,,1,,2,116551,1,1,3,0,2,,110.0,,22,1.0,3.0,6.0,2.0,1.5,2,2,1883.78655237334,510.0,34570.40442118242,0,1,0,1,86.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12533842379191343,23046.936280788283,6,3,6,6_1,6_3,6_0_1 +16535,1,47.0,498.0,7,111,480.0,,,85,52,0.0,0.0,,1010.0,734.3622894601561,,71,0,0,0,0,0,0,0,0,0,,2,,5,116553,2,2,0,0,2,,1200.0,593.0,42,2.0,1.0,4.0,8.0,3.8999999999999995,5,4,118.55226823896649,480.0,39392.71381381638,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025639259198378922,10100.695849696509,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +16536,2,59.0,0.0,5,111,400.0,400.0,0.0,0,75,0.0,927.0290939071567,682.0802173488245,1500.0,0.0,759.4016191759156,33,0,0,0,0,0,0,0,0,0,,1,,3,116554,2,2,3,0,2,,230.0,,31,0.0,0.0,4.0,3.0,1.8,2,2,315.192392992045,400.0,24698.22522970884,0,5,0,1,150.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06073310879826659,13721.236238727133,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +16537,2,65.0,0.0,6,112,1500.0,0.0,0.0,77,75,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,116555,2,1,2,0,1,,156.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,882.187456841263,1500.0,49805.0299028125,5,5,0,1,155.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030117440004092732,33203.353268541665,8,4,8,8_1,8_0,8_0_0 +16538,1,29.0,370.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1595.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116556,2,2,5,0,1,,214.0,470.0,31,0.0,0.0,4.0,2.0,1.3,1,1,520.451914105418,0.0,8762.948422112366,0,6,2,3,95.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.18201636289164816,6740.72955547105,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +16539,2,70.0,0.0,2,120,1000.0,0.0,0.0,71,71,2109.365702073203,0.0,1705.2005433720612,3120.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116557,2,1,1,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2065.11513900279,1000.0,21270.23190277067,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14668387323006044,14180.154601847113,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +16540,2,45.0,0.0,9,300,1893.0,0.0,0.0,42,46,0.0,794.5963662061343,3227.9446286033117,2553.0,83.13535352379125,0.0,20,2,2,2,2,1,2,1,2,2,10.0,1,2006.0,6,116558,1,3,3,0,2,,220.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,1024.18604801518,1893.0,58373.51887632004,1,1,1,2,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04373558505885546,22451.35341396925,6,3,6,6_1,6_0,6_0_0 +16541,2,33.0,0.0,6,120,0.0,,,42,42,0.0,0.0,,242.0,0.0,,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,116559,2,1,0,0,2,,439.0,853.0,43,2.0,0.0,4.0,4.0,2.1,2,2,143.97903358766285,0.0,65270.84729320533,1,1,2,3,83.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0037076276781409594,31081.3558539073,8,4,8,8_1,8_2,8_0_0 +16542,2,83.0,0.0,6,111,280.0,,,0,86,0.0,0.0,,372.0,127.47420873647992,,70,0,0,0,0,0,0,0,0,0,,1,,4,116560,1,1,0,0,2,,60.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,46.11037383939535,280.0,16679.83620179711,0,6,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022302377283532328,16679.83620179711,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +16543,1,24.0,369.0,2,111,117.0,0.0,0.0,0,55,0.0,0.0,199.50846357453116,635.0,0.0,0.0,43,2,2,2,2,2,2,2,1,0,,2,,2,116561,1,3,0,0,1,,0.0,404.0,22,2.0,0.0,5.0,3.0,2.0,3,3,255.759974167423,117.0,27270.45727315695,0,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.023285271443726312,13635.228636578475,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +16544,0,43.0,0.0,2,211,2000.0,1440.0,0.0,85,54,0.0,0.0,3410.4010867441225,3440.0,0.0,2733.845829033296,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,116562,2,1,4,0,1,,160.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,2769.18904685924,2000.0,37534.07013221144,7,1,0,1,125.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09165006587036292,20852.26118456191,5,3,5,5_1,5_1,5_0_1 +16545,2,75.0,0.0,2,111,312.0,65.0,0.0,0,77,0.0,0.0,532.0225695320831,377.0,0.0,123.40276311608629,50,2,1,2,2,1,2,2,2,0,,2,,2,116563,2,2,0,1,1,,360.0,492.0,11,0.0,3.0,3.0,1.0,1.0,1,1,751.739240681463,312.0,25029.560433607625,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015062190205058319,25029.560433607625,7,4,7,7_0,7_4,7_0_1 +16546,2,40.0,0.0,9,212,1124.0,0.0,0.0,34,42,0.0,0.0,1916.6454107501968,1204.0,110.84713803172167,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,116564,2,1,1,0,1,,370.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,736.188145032186,1124.0,46603.99627275784,4,1,1,2,151.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02583469436726809,22192.37917750373,6,3,6,6_1,6_0,6_0_0 +16547,1,56.0,162.0,2,111,200.0,200.0,0.0,0,47,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,50,2,2,2,2,1,2,2,2,0,,2,,2,116565,1,3,0,1,1,885.0,0.0,279.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1871.09377509595,200.0,4994.120870568832,0,4,2,3,40.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.08009417680642557,4994.120870568832,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +16548,1,72.0,176.0,2,111,330.0,,,0,77,0.0,0.0,,445.0,159.34276092059991,,50,0,0,0,0,0,0,0,0,0,,2,,2,116566,2,2,0,0,2,,480.0,180.0,21,0.0,0.0,3.0,2.0,1.5,2,2,93.39747520297047,330.0,12858.177448939437,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03460832623963393,8572.118299292959,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16549,2,24.0,0.0,1,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1165.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,1,116567,2,2,0,0,1,,143.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3216.92538902655,0.0,18453.52762601502,0,1,2,3,48.0,1,1,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06313156072975615,18453.52762601502,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +16550,2,73.0,0.0,1,400,993.0,0.0,0.0,72,72,2109.365702073203,0.0,1693.2641395684568,3063.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116568,2,3,1,0,1,,370.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2013.12553359194,993.0,29847.74151671282,5,5,0,1,100.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10262082972961008,19898.494344475213,5,3,5,5_1,5_1,5_1_0 +16551,2,41.0,0.0,2,111,600.0,617.0,0.0,84,54,0.0,0.0,1023.1203260232367,1217.0,0.0,1171.3769975788498,43,1,2,2,1,1,1,2,2,2,40.0,2,,2,116569,1,3,0,0,1,,0.0,453.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1022.80105660862,600.0,19389.807602196244,3,1,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06276493428754563,10772.11533455347,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +16552,2,53.0,0.0,9,211,857.0,0.0,0.0,72,52,0.0,0.0,1461.3568656698565,947.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,116570,2,1,1,0,1,,145.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2695.63883609391,857.0,41266.847628574,7,1,1,2,156.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022948203083588047,27511.231752382668,7,4,7,7_1,7_1,7_0_0 +16553,2,24.0,0.0,7,111,0.0,0.0,0.0,56,67,0.0,0.0,0.0,368.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,116571,2,1,0,0,1,,0.0,640.0,43,2.0,0.0,1.0,2.0,1.5,2,2,2566.52521870323,0.0,25356.60735545685,2,1,2,3,22.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01451298254696541,16904.4049036379,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +16554,2,86.0,0.0,2,112,600.0,0.0,0.0,77,78,3164.0485531098047,0.0,1023.1203260232367,3600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116572,2,1,2,0,1,,172.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,642.645316355402,600.0,72272.05215852085,5,5,0,1,100.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049811786056715164,48181.368105680565,10,5,10,10_1,10_0,10_0_1 +16555,2,31.0,0.0,7,111,540.0,400.0,0.0,65,54,0.0,0.0,920.8082934209131,940.0,0.0,759.4016191759156,43,2,2,2,2,2,1,2,2,2,10.0,2,,5,116573,1,2,0,0,1,,0.0,394.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1943.72365656495,540.0,34707.84368397909,1,1,2,3,86.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.027083215210914925,23138.56245598606,6,3,6,6_0,6_2,6_0_0 +16556,2,52.0,0.0,2,120,323.0,0.0,0.0,0,46,1232.9242528617872,0.0,550.7797755091758,1597.0,145.4868686666347,0.0,42,0,0,0,0,0,0,0,0,2,35.0,2,,2,116574,2,3,0,1,1,,222.0,350.0,32,2.0,1.0,4.0,2.0,1.5,2,2,2077.82238542605,323.0,38586.60764638899,0,1,2,3,75.0,0,3,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041387416448604296,25724.405097592662,7,4,7,7_0,7_1,7_0_1 +16557,2,78.0,0.0,5,112,900.0,0.0,0.0,75,74,4218.731404146406,0.0,1534.680489034855,5100.0,277.1178450793042,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,116575,1,2,3,0,2,,400.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,355.999015362553,900.0,52803.82981079897,5,5,0,1,90.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09658390344552231,35202.553207199315,9,5,9,9_1,9_0,9_0_0 +16558,2,51.0,0.0,2,111,430.0,0.0,0.0,0,68,0.0,0.0,733.2362336499863,481.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,2,116576,2,1,0,1,1,476.0,0.0,437.0,32,1.0,2.0,4.0,4.0,2.1,2,2,277.499961998293,430.0,9461.902347149415,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.050835443270550215,4505.667784356864,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +16560,2,40.0,0.0,7,111,1000.0,,,85,38,0.0,0.0,,1120.0,166.2707070475825,,12,0,0,0,0,0,0,0,0,0,,1,,5,116578,1,1,0,0,1,,290.0,1593.0,42,1.0,0.0,6.0,4.0,2.1,2,2,162.866731336848,1000.0,72154.0,6,1,2,3,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015522354962995814,34359.04761904762,9,5,9,9_1,9_2,9_0_0 +16561,2,59.0,0.0,6,111,500.0,1700.0,0.0,75,38,0.0,0.0,852.6002716860306,2200.0,0.0,3227.4568814976415,60,0,0,0,0,0,0,0,0,2,90.0,1,,4,116579,2,2,2,0,1,,300.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,690.003649040082,500.0,89792.29998577671,5,1,0,1,118.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024500987282300202,59861.533323851145,10,5,10,10_1,10_4,10_0_0 +16562,2,55.0,0.0,7,111,1416.0,1869.0,0.0,56,48,0.0,105.94618216081791,2414.5639694148385,3365.0,0.0,3548.3040655994655,42,0,0,0,0,0,0,0,0,0,,1,,5,116580,1,2,3,0,1,,599.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,566.052493140418,1416.0,43718.51187221791,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07696968299916856,29145.674581478608,8,4,8,8_1,8_4,8_0_0 +16563,2,60.0,0.0,5,112,1000.0,0.0,0.0,78,72,0.0,198.6490915515336,1705.2005433720612,1210.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,116581,2,1,1,0,1,,200.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1116.86162846006,1000.0,31533.842335031866,6,5,0,1,104.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03837147364232794,21022.56155668791,5,3,5,5_1,5_0,5_0_0 +16564,2,52.0,0.0,8,112,1150.0,0.0,0.0,0,52,0.0,0.0,1960.9806248778702,1185.0,48.49562288887823,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,116582,2,1,2,0,1,,520.0,,32,1.0,0.0,6.0,3.0,1.8,2,1,878.193489829319,1150.0,35447.39945342705,0,1,0,1,170.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033429814831887034,19692.99969634836,5,3,5,5_1,5_0,5_0_0 +16565,2,83.0,0.0,2,111,1407.0,0.0,0.0,77,78,0.0,0.0,2399.2171645244903,1567.0,221.69427606344334,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116583,2,1,3,0,1,,785.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1257.73446730195,1407.0,23207.106315967652,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06752242087682536,15471.404210645102,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +16566,2,87.0,0.0,1,111,1845.0,0.0,0.0,0,78,0.0,0.0,3146.095002521453,1845.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,116584,2,2,4,0,2,,146.0,,21,0.0,0.0,6.0,3.0,2.0,3,3,558.153809159485,1845.0,54094.47339484334,0,5,0,1,137.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03410699622737945,27047.23669742167,7,4,7,7_1,7_2,7_1_0 +16567,2,59.0,0.0,2,111,250.0,1200.0,0.0,0,52,0.0,0.0,426.3001358430153,1450.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,116585,1,1,0,0,1,,300.0,336.0,22,2.0,1.0,4.0,2.0,1.5,2,2,156.574535094599,250.0,39504.415367605114,0,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036704757848132756,26336.276911736742,7,4,7,7_0,7_3,7_0_1 +16568,1,46.0,229.0,7,112,900.0,,,0,52,0.0,0.0,,992.0,127.47420873647992,,44,0,0,0,0,0,0,0,0,2,50.0,1,,5,116586,2,2,0,0,2,,600.0,479.0,32,1.0,0.0,3.0,2.0,1.5,2,1,101.66384133568056,900.0,32650.0,0,1,2,3,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030382848392036754,21766.666666666668,6,3,6,6_1,6_1,6_0_0 +16569,2,74.0,0.0,1,111,550.0,2046.0,0.0,78,74,0.0,0.0,937.8602988546337,2596.0,0.0,3884.3392820848085,60,0,0,0,0,0,0,0,0,0,,1,,1,116587,2,1,2,0,1,,416.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,454.325313376374,550.0,71774.90848546218,6,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0361686284911922,47849.93899030812,10,5,10,10_1,10_4,10_1_0 +16570,2,43.0,0.0,9,112,1200.0,1000.0,0.0,46,37,0.0,0.0,2046.2406520464733,2200.0,0.0,1898.504047939789,30,0,0,0,0,0,0,0,0,0,,1,2008.0,6,116588,2,1,1,0,1,,606.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,253.918351472399,1200.0,53040.100096873786,1,1,1,2,138.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04147805143621268,35360.06673124919,9,5,9,9_1,9_0,9_0_0 +16571,2,65.0,0.0,7,111,400.0,550.0,0.0,75,74,0.0,264.8654554020448,682.0802173488245,1150.0,0.0,1044.177226366884,12,0,0,0,0,0,0,0,0,0,,1,,5,116589,2,1,2,0,1,,1000.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1388.42720433219,400.0,60156.028671524866,5,5,0,1,115.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019116953452486762,40104.01911434991,9,5,9,9_1,9_3,9_0_0 +16572,1,38.0,170.0,1,111,360.0,0.0,0.0,85,63,0.0,0.0,613.872195613942,600.0,332.541414095165,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,116590,2,2,0,1,1,408.0,0.0,552.0,42,1.0,0.0,1.0,3.0,1.8,2,2,1100.01376287178,360.0,19511.093828843248,6,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0307517356670706,10839.496571579582,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +16573,2,75.0,0.0,5,111,600.0,,,77,77,0.0,0.0,,740.0,193.98249155551292,,41,0,0,0,0,0,0,0,0,0,,1,,3,116591,2,2,0,0,2,,700.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,64.90310588197241,600.0,36842.96857427145,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020085243633618716,24561.9790495143,7,4,7,7_1,7_2,7_0_0 +16574,2,60.0,0.0,7,111,2400.0,,,74,34,0.0,0.0,,2400.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,116592,1,3,0,0,2,,600.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,46.94271116126733,2400.0,91524.52476093534,5,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026222479780898818,61016.34984062356,10,5,10,10_1,10_2,10_0_0 +16575,2,58.0,0.0,2,111,927.0,0.0,0.0,78,78,2425.7705573841836,0.0,1580.7209037059008,3437.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116593,2,2,1,0,1,,209.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,704.122029933734,927.0,45681.6725524502,5,5,0,1,120.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07523805079714953,22840.8362762251,6,3,6,6_1,6_2,6_0_1 +16577,2,73.0,0.0,2,111,400.0,1700.0,0.0,0,75,0.0,0.0,682.0802173488245,2100.0,0.0,3227.4568814976415,41,0,0,0,0,0,0,0,0,0,,1,,2,116595,2,1,2,0,2,,600.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,3081.0415757767,400.0,36886.21583545221,0,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.056931836254713895,36886.21583545221,9,5,9,9_1,9_3,9_0_1 +16578,2,70.0,0.0,5,211,480.0,,,72,77,0.0,0.0,,612.0,182.89777775234077,,70,0,0,0,0,0,0,0,0,0,,1,,3,116596,2,1,0,0,2,,502.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,86.60710037601925,480.0,15424.914091543278,5,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03967607186451233,10283.276061028851,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16579,0,24.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,117.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,116597,2,1,0,1,1,,0.0,,32,1.0,0.0,2.0,3.0,1.6,1,1,335.3334688668,0.0,1842.2845154905663,0,4,5,0,45.0,6,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06350810584153722,1151.427822181604,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +16580,2,56.0,0.0,2,111,361.0,600.0,0.0,52,54,0.0,0.0,615.5773961573141,961.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,1,25.0,2,,2,116598,2,2,0,0,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,470.365433425963,361.0,46024.16384814783,1,1,0,1,73.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02088033588553014,30682.77589876522,8,4,8,8_0,8_3,8_0_1 +16581,2,67.0,0.0,9,111,900.0,,,0,77,0.0,0.0,,1050.0,207.83838380947813,,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,116599,2,1,0,0,2,,700.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,101.24512528309506,900.0,12230.277926773922,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0858525052567605,12230.277926773922,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +16582,2,82.0,0.0,5,111,250.0,0.0,0.0,0,74,0.0,0.0,426.3001358430153,483.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,116600,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,2428.46666679548,250.0,42385.86321451152,0,5,0,1,72.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011395308798020108,42385.86321451152,9,5,9,9_0,9_3,9_0_0 +16583,2,33.0,0.0,2,111,300.0,380.0,0.0,0,43,0.0,0.0,511.56016301161833,680.0,0.0,721.4315382171199,31,0,0,0,0,0,0,0,0,3,55.0,2,,2,116601,2,2,0,1,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1201.68620022946,300.0,23436.659462338466,0,1,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02901437387408926,23436.659462338466,6,3,6,6_0,6_4,6_0_1 +16584,2,32.0,0.0,9,111,0.0,,,52,46,0.0,0.0,,750.0,0.0,,42,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,116602,2,1,0,0,2,,169.0,800.0,43,2.0,0.0,4.0,4.0,2.1,2,2,103.36737138873625,0.0,22465.66048862953,1,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03338428444512437,10697.933566014062,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16585,2,64.0,0.0,2,112,360.0,940.0,0.0,56,74,0.0,0.0,613.872195613942,1300.0,0.0,1784.5938050634018,31,0,0,0,0,0,0,0,0,0,,1,,2,116603,2,2,1,0,1,,220.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,823.427473913118,360.0,23239.221862008693,1,5,0,1,115.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05593991088510714,15492.814574672462,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +16586,2,47.0,0.0,9,112,570.0,0.0,0.0,0,46,0.0,817.7720935538133,971.9643097220749,1188.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,116604,2,1,1,0,1,,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,922.603282902305,570.0,28926.431333843848,0,1,1,2,100.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04106970494524996,28926.431333843848,8,4,8,8_1,8_0,8_0_0 +16587,2,73.0,0.0,7,120,2730.0,0.0,0.0,72,72,0.0,0.0,4655.197483405727,2862.0,182.89777775234077,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,116605,2,1,2,0,1,,344.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,488.337740346589,2730.0,20403.25431680897,5,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14027174075079663,13602.169544539312,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +16588,2,77.0,0.0,2,111,684.0,,,0,75,0.0,0.0,,1004.0,443.3885521268867,,70,0,0,0,0,0,0,0,0,0,,1,,2,116606,2,1,0,0,2,,600.0,,21,0.0,5.0,5.0,2.0,1.5,2,2,126.00488129877523,684.0,35098.386977437185,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028605303162376555,23398.92465162479,6,3,6,6_1,6_3,6_0_1 +16590,2,72.0,0.0,2,112,366.0,798.0,0.0,77,77,0.0,0.0,624.1033988741744,1164.0,0.0,1515.0062302559516,50,0,0,0,0,0,0,0,0,0,,1,,2,116608,2,1,2,0,1,,276.0,371.0,41,0.0,4.0,4.0,2.0,1.5,2,2,779.705684131445,366.0,26093.839802470324,5,5,2,3,80.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044608229712891974,17395.893201646883,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +16591,2,39.0,0.0,2,111,684.0,142.0,0.0,0,47,0.0,0.0,1166.3571716664899,826.0,0.0,269.58757480745004,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,116609,1,3,0,0,2,,150.0,525.0,12,1.0,1.0,4.0,1.0,1.0,1,1,416.978838313015,684.0,19450.931648907586,0,1,2,3,75.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0424658322238457,19450.931648907586,5,3,5,5_0,5_2,5_0_1 +16592,0,64.0,0.0,7,400,0.0,,,0,69,0.0,0.0,,132.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,1,5.0,1,,5,116610,2,2,0,0,2,,0.0,,32,2.0,1.0,4.0,3.0,2.0,3,2,99.3713457228019,0.0,17222.157676348546,0,1,5,0,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007664544854404488,8611.078838174273,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +16593,2,68.0,0.0,5,111,1150.0,0.0,0.0,74,74,0.0,595.9472746546007,1960.9806248778702,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,116611,2,1,1,0,1,,340.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1212.75233165954,1150.0,77406.99064526756,5,5,0,1,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020669967746612294,51604.660430178374,10,5,10,10_1,10_2,10_0_0 +16594,2,50.0,0.0,6,111,2059.0,0.0,0.0,21,52,0.0,0.0,3511.007918803074,2129.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,116612,2,1,2,0,1,,579.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,1486.25913316715,2059.0,49953.39922362524,1,1,0,1,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04261972224290792,27751.888457569577,7,4,7,7_1,7_3,7_0_0 +16595,2,24.0,0.0,7,112,0.0,0.0,0.0,56,67,0.0,0.0,0.0,441.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,116613,2,2,5,0,1,,149.0,517.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1565.72306831188,0.0,31397.01336586495,4,1,2,3,85.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01404592197547867,17442.785203258307,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +16596,2,62.0,0.0,1,111,554.0,0.0,0.0,77,68,2425.7705573841836,0.0,944.6811010281219,2944.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116614,2,1,3,0,1,,163.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,261.698607258007,554.0,22899.175949649518,7,5,0,1,96.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12856357829090612,11449.587974824759,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +16597,2,54.0,0.0,8,111,530.0,,,0,68,0.0,0.0,,658.0,177.35542085075468,,71,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,116615,2,3,0,0,2,,350.0,,22,1.0,4.0,4.0,2.0,1.5,2,2,114.05278242995273,530.0,19777.77456684237,0,1,1,2,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033269668322701146,13185.18304456158,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +16598,2,26.0,0.0,1,111,365.0,0.0,0.0,54,55,949.2145659329414,181.43283695040068,622.3981983308023,1437.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,116616,2,1,1,0,1,,162.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1138.74885502465,365.0,35475.19566746917,1,1,1,2,92.0,5,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04050717615400588,23650.130444979444,6,3,6,6_1,6_2,6_1_0 +16599,2,63.0,0.0,2,111,190.0,469.0,0.0,0,75,0.0,0.0,323.9881032406916,659.0,0.0,890.3983984837611,41,0,0,0,0,0,0,0,0,0,,2,,2,116617,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,2508.91175434962,190.0,22522.47440546565,0,5,0,1,63.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029259662510264718,22522.47440546565,6,3,6,6_0,6_2,6_0_1 +16601,1,31.0,474.0,5,111,120.0,0.0,0.0,0,81,0.0,0.0,204.62406520464734,120.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,116619,1,2,0,1,2,200.0,0.0,459.0,32,1.0,0.0,1.0,3.0,1.6,1,1,886.433276256706,120.0,10222.321513255769,0,4,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011739016410742932,6388.950945784855,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +16602,2,58.0,0.0,8,300,790.0,0.0,0.0,0,43,0.0,0.0,1347.1084292639284,850.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,116620,2,1,2,0,1,,144.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1127.55978798206,790.0,26986.93167433446,0,1,1,2,70.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03149672627690314,26986.93167433446,7,4,7,7_1,7_0,7_0_0 +16604,2,43.0,0.0,1,111,0.0,0.0,1900.0,55,22,0.0,158.91927324122688,1197.6047517880133,2020.0,0.0,2273.7910803728937,50,2,2,1,2,1,2,2,2,2,20.0,1,,1,116622,2,1,1,0,1,,120.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,342.421638577158,0.0,56370.300348461264,1,1,1,2,138.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03583447289642017,24508.82623846142,7,4,7,7_1,7_3,7_1_0 +16605,2,77.0,0.0,1,300,546.0,,,78,78,0.0,0.0,,822.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,1,116623,1,2,0,0,1,,642.0,,41,2.0,4.0,5.0,4.0,2.5,4,4,76.39131143863047,546.0,33471.72414012723,5,5,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024558041783528974,13388.689656050894,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +16606,1,47.0,160.0,6,111,180.0,0.0,0.0,0,52,0.0,0.0,306.936097806971,180.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,116624,2,2,0,1,1,,0.0,145.0,12,1.0,0.0,1.0,1.0,1.0,1,1,660.759804917422,180.0,3790.7972692661842,0,4,2,3,22.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04748341502178091,3790.7972692661842,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +16607,2,44.0,0.0,7,111,450.0,0.0,0.0,46,64,1582.0242765549024,0.0,767.3402445174275,1950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,116625,2,1,2,0,1,,220.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,1444.82657387875,450.0,41214.21762021312,1,1,1,2,105.0,9,7,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04731376967941376,16485.68704808525,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +16608,0,61.0,0.0,1,111,0.0,0.0,0.0,0,44,0.0,0.0,0.0,613.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,116626,2,1,0,1,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,2073.22680262586,0.0,8005.0,0,1,5,0,90.0,8,6,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07657713928794503,8005.0,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +16609,2,37.0,0.0,1,400,1200.0,0.0,0.0,45,33,0.0,1854.0581878143134,2046.2406520464733,2840.0,332.541414095165,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,116627,2,1,1,0,1,,160.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,1017.69703344065,1200.0,66545.5585979403,1,1,0,1,160.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042677528896540105,31688.361237114426,8,4,8,8_1,8_0,8_1_0 +16610,1,47.0,251.0,6,211,200.0,,,0,46,0.0,0.0,,242.0,58.19474746665388,,31,0,0,0,0,0,0,0,0,0,,2,,4,116628,2,2,0,0,2,,240.0,257.0,12,1.0,0.0,2.0,1.0,1.0,1,1,117.13323511063386,200.0,5241.0,0,4,2,3,55.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.046174394199580235,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16611,2,33.0,0.0,1,112,430.0,1338.0,0.0,47,38,0.0,278.10872817214704,733.2362336499863,1978.0,0.0,2540.1984161434375,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,116629,2,2,4,0,1,,390.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2000.42628129359,430.0,74018.91794854218,1,1,1,2,100.0,8,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026722898075531205,41121.62108252343,9,5,9,9_1,9_0,9_1_0 +16612,2,67.0,0.0,2,111,360.0,1115.0,0.0,0,86,0.0,0.0,613.872195613942,1475.0,0.0,2116.832013452865,10,0,0,0,0,0,0,0,0,0,,2,,2,116630,2,2,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1311.17462385554,360.0,42674.59668650969,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03456388846121837,42674.59668650969,9,5,9,9_0,9_4,9_0_1 +16613,1,39.0,270.0,2,111,240.0,0.0,0.0,0,85,0.0,0.0,409.2481304092947,240.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,116631,1,1,0,1,1,809.0,0.0,540.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1528.55052852409,240.0,23437.4256935976,0,7,2,3,66.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010240032465065512,23437.4256935976,6,3,6,6_0,6_3,6_0_1 +16614,2,62.0,0.0,6,112,427.0,0.0,0.0,77,78,0.0,874.0560028267478,728.1206320198701,1137.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,116632,2,1,3,0,1,,254.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,768.194747590971,427.0,23391.089508499415,5,5,0,1,78.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048608253137882196,15594.059672332944,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +16615,0,43.0,0.0,5,111,440.0,0.0,0.0,55,46,0.0,0.0,750.2882390837069,609.0,0.0,0.0,31,1,2,2,2,1,2,2,2,3,40.0,2,,3,116633,2,3,0,1,1,1250.0,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,619.950297528813,440.0,55184.617985640434,4,1,5,0,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01103568389579987,36789.74532376029,9,5,9,9_0,9_4,9_0_0 +16616,2,37.0,0.0,5,111,270.0,600.0,0.0,0,67,0.0,0.0,460.40414671045653,870.0,0.0,1139.1024287638734,60,2,1,2,1,1,2,2,2,1,10.0,2,,3,116634,2,1,0,1,1,552.0,0.0,386.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1285.68033361293,270.0,26320.684016211908,0,1,2,3,63.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.03305385222755358,26320.684016211908,7,4,7,7_0,7_3,7_0_0 +16618,2,76.0,0.0,2,111,96.0,62.0,0.0,0,75,0.0,0.0,163.69925216371786,158.0,0.0,117.70725097226692,41,0,0,0,0,0,0,0,0,0,,2,,2,116636,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,958.876743433822,96.0,45441.57748436696,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0034769919696198037,45441.57748436696,10,5,10,10_0,10_4,10_0_1 +16619,2,55.0,0.0,2,111,74.0,22.0,0.0,56,48,0.0,0.0,126.18484020953252,96.0,0.0,41.76708905467536,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,116637,2,1,1,0,1,,558.0,,43,2.0,2.0,5.0,3.0,2.0,3,2,881.686207069416,74.0,44119.51703788183,1,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.002175907771555446,22059.758518940915,6,3,6,6_1,6_4,6_0_1 +16620,2,81.0,0.0,7,111,1500.0,0.0,0.0,0,77,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,5,116638,2,1,0,0,1,,0.0,390.0,11,0.0,1.0,2.0,1.0,1.0,1,1,356.788057308981,1500.0,18897.769103152197,0,5,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.07937444847655568,18897.769103152197,5,3,5,5_0,5_3,5_0_0 +16621,2,68.0,0.0,1,300,800.0,0.0,0.0,81,86,2109.365702073203,225.13563709173806,1364.160434697649,3030.0,83.13535352379125,0.0,71,1,2,2,1,2,2,2,2,0,,1,,1,116639,2,1,3,0,1,,278.0,,42,1.0,6.0,6.0,2.0,1.5,2,2,970.544531483432,800.0,118876.2528226714,4,5,0,1,170.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.02548869036543298,79250.83521511428,10,5,10,10_1,10_0,10_1_0 +16622,2,62.0,0.0,7,111,490.0,,,0,86,0.0,0.0,,742.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,116640,1,1,0,0,2,,414.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,105.92597110094013,490.0,44545.95748908815,0,7,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016656954790606044,44545.95748908815,10,5,10,10_1,10_2,10_0_0 +16623,2,64.0,0.0,5,112,1300.0,0.0,0.0,0,74,0.0,0.0,2216.7607063836795,2050.0,1039.1919190473907,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,116641,2,1,1,0,1,,110.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,541.737437846236,1300.0,37718.315910837286,0,5,0,1,130.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05435025266891597,37718.315910837286,9,5,9,9_1,9_0,9_0_0 +16624,2,40.0,0.0,2,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1687.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,2,116642,1,3,2,0,2,,279.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1113.17478048675,0.0,65440.45027655558,1,1,1,2,90.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025779162473219985,36355.80570919754,9,5,9,9_1,9_3,9_0_1 +16626,2,75.0,0.0,1,111,440.0,1195.0,0.0,77,78,0.0,0.0,750.2882390837069,1635.0,0.0,2268.712337288048,50,0,0,0,0,0,0,0,0,0,,1,,1,116644,1,1,2,0,1,,235.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,455.697102985343,440.0,21112.784977507676,5,5,0,1,78.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07744122822933276,14075.189985005118,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +16627,0,85.0,0.0,1,112,1730.0,0.0,0.0,0,77,421.8731404146406,198.6490915515336,2949.996940033666,2280.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,116646,2,1,2,0,2,,275.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,905.211186571011,1730.0,28411.0,0,5,0,1,81.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0802506071591989,28411.0,8,4,8,8_1,8_0,8_1_0 +16628,2,43.0,0.0,7,111,480.0,820.0,0.0,34,34,0.0,0.0,818.4962608185893,1300.0,0.0,1556.773319310627,10,2,2,2,2,1,2,2,2,2,10.0,1,,5,116647,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,343.212992908803,480.0,120242.37682243035,1,1,1,2,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0.010811496199212641,66801.32045690574,10,5,10,10_1,10_2,10_0_0 +16629,2,59.0,0.0,2,111,300.0,185.0,0.0,0,85,0.0,0.0,511.56016301161833,485.0,0.0,351.223248868861,10,0,0,0,0,0,0,0,0,0,,2,,2,116648,2,2,0,1,2,,0.0,,31,0.0,3.0,3.0,3.0,2.0,3,3,265.590838595623,300.0,9319.530211584972,0,7,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05204124982578023,4659.765105792486,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +16630,2,61.0,0.0,2,111,320.0,150.0,0.0,0,52,0.0,0.0,545.6641738790596,470.0,0.0,284.77560719096834,71,2,2,2,2,1,2,2,2,3,20.0,2,,2,116649,1,3,0,1,1,360.0,110.0,252.0,12,1.0,3.0,3.0,1.0,1.0,1,1,282.352144780655,320.0,17894.373821066474,0,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.026265238711325235,17894.373821066474,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +16631,2,54.0,0.0,5,111,280.0,,,0,77,0.0,0.0,,676.0,548.6933332570223,,71,0,0,0,0,0,0,0,0,0,,1,,3,116650,2,2,0,0,2,,312.0,,31,3.0,4.0,6.0,4.0,2.5,4,4,126.20039876921774,280.0,9995.563559322034,0,6,0,1,77.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06763000364992434,3998.2254237288134,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16632,2,72.0,0.0,8,300,850.0,0.0,0.0,0,77,0.0,0.0,1449.420461866252,910.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,2,2000.0,6,116651,2,1,0,0,1,,120.0,489.0,11,0.0,5.0,3.0,1.0,1.0,1,1,1309.38887773582,850.0,18429.90836865771,0,5,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049376262854760856,18429.90836865771,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +16633,1,84.0,101.0,2,111,249.0,140.0,0.0,0,77,0.0,0.0,424.5949352996432,389.0,0.0,265.7905667115705,71,2,1,2,2,1,2,2,2,0,,2,,2,116652,2,1,0,1,1,795.0,89.0,274.0,11,0.0,6.0,3.0,1.0,1.0,1,1,1705.34669971784,249.0,15248.707304333297,0,5,2,3,57.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025510359156113913,15248.707304333297,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +16634,2,32.0,0.0,2,111,480.0,480.0,0.0,46,54,0.0,0.0,818.4962608185893,960.0,0.0,911.2819430110987,31,2,2,2,1,2,2,2,2,3,45.0,2,,2,116653,1,2,0,1,2,552.0,0.0,510.0,43,2.0,0.0,2.0,3.0,1.8,2,2,396.458928203258,480.0,28285.946836352934,4,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03393911490939429,15714.414909084962,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +16635,0,32.0,0.0,9,112,0.0,0.0,0.0,0,33,0.0,0.0,0.0,1470.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,1.0,1,2010.0,6,116654,1,1,1,0,1,,0.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,440.37394484782,0.0,40008.36317888406,0,1,5,0,112.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03674231793556225,30775.663983756967,8,4,8,8_1,8_0,8_0_0 +16636,2,44.0,0.0,1,120,0.0,0.0,0.0,56,63,0.0,0.0,0.0,905.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,1,116655,2,1,3,0,1,,128.0,,43,2.0,2.0,7.0,4.0,2.1,2,2,461.367971849088,0.0,27791.399474342456,1,1,0,1,90.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03256403121532304,13233.999749686884,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +16637,1,53.0,253.0,5,111,138.0,,,0,63,0.0,0.0,,184.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,0,,2,,3,116656,1,2,0,0,2,,0.0,497.0,12,1.0,2.0,1.0,1.0,1.0,1,1,185.1683170243034,138.0,6683.507417077015,0,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02753045497187031,6683.507417077015,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16638,2,48.0,0.0,2,111,463.0,1742.0,0.0,52,62,0.0,297.97363732730037,789.5078515812643,2430.0,0.0,3307.1940515111123,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,116657,2,1,3,0,1,,553.0,,43,2.0,2.0,4.0,3.0,2.0,3,2,531.557117639219,463.0,31524.29057907947,1,1,1,2,115.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07708341584735379,15762.145289539734,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +16639,2,73.0,0.0,7,111,2091.0,0.0,0.0,72,72,0.0,0.0,3565.57433619098,2091.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,116658,2,1,2,0,1,,229.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,553.516188829348,2091.0,107131.93775376458,5,5,0,1,190.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019517989162167685,71421.29183584305,10,5,10,10_1,10_4,10_0_0 +16640,2,33.0,0.0,1,111,330.0,558.0,0.0,37,37,0.0,0.0,562.7161793127802,888.0,0.0,1059.3652587504023,10,0,0,0,0,0,0,0,0,2,35.0,2,,1,116659,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,914.390059760554,330.0,152204.4591829979,1,1,1,2,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005834257450580624,101469.63945533194,10,5,10,10_0,10_4,10_1_0 +16641,2,50.0,0.0,2,120,600.0,0.0,0.0,52,65,3164.0485531098047,0.0,1023.1203260232367,3900.0,415.67676761895626,0.0,50,2,2,1,2,1,2,2,2,2,10.0,2,,2,116660,2,2,0,1,1,,450.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1126.33170046932,600.0,36892.99879255272,1,1,0,1,60.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.1057111139685197,24595.33252836848,7,4,7,7_0,7_0,7_0_1 +16642,2,51.0,0.0,2,111,500.0,0.0,0.0,52,64,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,116661,2,3,0,1,1,1000.0,350.0,416.0,43,2.0,0.0,3.0,3.0,2.0,3,3,587.305470976137,500.0,44251.090464075925,1,1,2,3,90.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011299156580240926,22125.545232037963,6,3,6,6_0,6_3,6_0_1 +16643,1,44.0,253.0,9,111,800.0,,,0,85,0.0,0.0,,800.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,2005.0,6,116662,2,2,0,0,2,,960.0,395.0,31,1.0,0.0,4.0,4.0,2.3,3,3,134.84099321191886,800.0,20917.47415274886,0,6,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03824553548664806,9094.553979456026,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16644,1,30.0,107.0,6,112,1200.0,0.0,0.0,54,52,0.0,529.7309108040896,2046.2406520464733,1680.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,116663,2,2,1,0,1,,107.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1115.68734954094,1200.0,29629.849070970908,1,1,1,2,78.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05669958007467332,14109.451938557575,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +16645,2,33.0,0.0,2,111,210.0,0.0,0.0,42,38,0.0,0.0,358.0921141081328,210.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,116664,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1017.48942623299,210.0,61515.5516372579,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003413770898752862,41010.36775817193,9,5,9,9_0,9_4,9_0_1 +16646,2,46.0,0.0,2,111,340.0,827.0,0.0,78,68,0.0,0.0,579.7681847465008,1167.0,0.0,1570.0628476462055,60,0,0,0,0,0,0,0,0,2,20.0,1,,2,116665,1,3,3,0,1,,249.0,320.0,42,1.0,0.0,3.0,3.0,2.0,3,3,937.670107905765,340.0,30013.542281801783,5,1,2,3,100.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0388824480976906,15006.771140900892,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +16647,2,65.0,0.0,1,111,1790.0,0.0,0.0,75,74,0.0,0.0,3052.3089726359894,1790.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,1,,1,116666,2,1,2,0,1,,147.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1102.84129048637,1790.0,113456.72260403712,5,5,0,1,140.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.01577694083626127,75637.81506935808,10,5,10,10_1,10_3,10_1_0 +16648,2,60.0,0.0,1,300,700.0,0.0,0.0,11,75,0.0,529.7309108040896,1193.6403803604428,1220.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,116667,2,1,1,0,1,,105.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,944.295879584358,700.0,37774.73768685658,1,5,0,1,138.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03229671666057629,25183.158457904385,7,4,7,7_1,7_0,7_1_0 +16649,1,22.0,434.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,538.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116668,1,3,0,1,2,743.0,0.0,667.0,22,3.0,2.0,4.0,6.0,3.3,5,5,466.876553535733,0.0,21837.82909184621,0,1,2,3,71.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.024636148480568425,6617.523967226125,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +16650,1,28.0,127.0,2,111,550.0,800.0,0.0,0,56,0.0,0.0,937.8602988546337,1350.0,0.0,1518.8032383518312,50,2,2,2,2,1,2,2,2,2,20.0,2,,2,116669,2,2,0,0,1,,0.0,392.0,32,1.0,0.0,4.0,3.0,1.6,1,1,391.683820719456,550.0,23202.4781887095,0,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.05818344010584697,14501.548867943438,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +16651,1,49.0,289.0,2,120,0.0,800.0,0.0,85,69,0.0,0.0,0.0,988.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,2,116670,2,1,0,0,1,,0.0,390.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1091.14175059742,0.0,17649.302630068647,6,4,2,3,80.0,0,3,9,0,1,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05597954892091717,7353.876095861937,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +16652,2,56.0,0.0,6,120,1261.0,0.0,0.0,69,69,0.0,0.0,2150.257885192169,1261.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,6.0,1,,4,116671,2,1,1,0,1,,277.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,528.271695254168,1261.0,38249.20623700686,1,1,0,1,78.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03296800441259766,25499.47082467124,7,4,7,7_1,7_0,7_0_0 +16653,2,46.0,0.0,5,111,0.0,0.0,0.0,34,38,0.0,0.0,0.0,1308.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,,3,116672,2,2,0,0,1,,0.0,1100.0,43,2.0,1.0,5.0,2.0,1.5,2,2,727.893362699321,0.0,74545.10355660132,1,1,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017546424078770637,49696.735704400875,10,5,10,10_0,10_4,10_0_0 +16654,2,34.0,0.0,7,211,900.0,,,54,48,0.0,0.0,,1025.0,173.19865317456512,,43,0,0,0,0,0,0,0,0,2,20.0,1,,5,116673,2,2,0,0,2,,500.0,1500.0,43,2.0,0.0,4.0,5.0,2.4,2,2,111.14820791810952,900.0,83148.08644886674,4,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012327403356784889,34645.03602036114,9,5,9,9_1,9_2,9_0_0 +16655,2,45.0,0.0,1,111,1200.0,0.0,0.0,0,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,116674,2,1,0,0,2,,160.0,,32,2.0,0.0,4.0,3.0,2.0,3,2,1531.59861526681,1200.0,46300.31804193678,0,1,1,2,57.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025917748532809065,23150.15902096839,6,3,6,6_0,6_3,6_1_0 +16656,1,71.0,44.0,1,111,0.0,0.0,1040.0,0,72,0.0,0.0,655.5310220313336,3402.0,0.0,1244.6014334672682,50,0,0,0,0,0,0,0,0,0,,2,,1,116675,2,2,0,0,1,,0.0,419.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1837.77244588156,0.0,13246.645030920154,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.25681974507953476,13246.645030920154,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +16657,2,73.0,0.0,1,111,342.0,1388.0,0.0,0,77,0.0,0.0,583.1785858332449,1730.0,0.0,2635.1236185404273,71,0,0,0,0,0,0,0,0,0,,1,,1,116676,2,2,1,0,1,,133.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,313.816780653711,342.0,26941.71496115082,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06421269033892647,26941.71496115082,7,4,7,7_1,7_3,7_1_0 +16658,2,36.0,0.0,2,111,300.0,252.0,0.0,52,64,0.0,0.0,511.56016301161833,552.0,0.0,478.4230200808268,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,116677,2,2,0,1,1,360.0,0.0,329.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1034.84991609033,300.0,49243.15248216395,1,1,2,3,41.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011209680375356482,32828.76832144263,8,4,8,8_0,8_4,8_0_1 +16659,1,44.0,500.0,7,111,400.0,,,0,81,0.0,0.0,,550.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,116678,2,2,0,0,2,,650.0,680.0,32,2.0,0.0,3.0,6.0,3.0999999999999996,4,3,63.59127221086396,400.0,16367.355225531046,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033603474258447584,5279.792008235822,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +16660,1,44.0,50.0,6,111,1248.0,0.0,0.0,56,53,0.0,364.19000117781155,2128.0902781283326,1523.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,90.0,1,,4,116679,2,1,3,0,1,,840.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,486.541602676054,1248.0,37273.98477655726,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04085959709244343,14336.147990983565,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +16661,2,68.0,0.0,6,111,0.0,0.0,0.0,68,75,0.0,0.0,0.0,2990.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,116680,2,1,1,0,1,,441.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,2487.14929649533,0.0,43141.85216928824,1,5,1,2,164.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06930625018757347,28761.234779525494,8,4,8,8_1,8_3,8_0_0 +16662,2,85.0,0.0,2,111,400.0,270.0,0.0,0,86,0.0,0.0,682.0802173488245,670.0,0.0,512.596092943743,70,2,2,2,2,1,2,2,2,0,,8,,2,116681,2,2,0,0,1,,210.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,516.166550729578,400.0,16190.73002987188,0,6,0,1,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.04138170414575814,16190.73002987188,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +16663,2,48.0,0.0,2,111,150.0,750.0,0.0,38,43,0.0,0.0,255.78008150580916,900.0,0.0,1423.8780359548418,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,116682,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1632.63110877273,150.0,83565.50098552827,1,1,0,1,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010769994667486772,39793.095707394416,9,5,9,9_0,9_3,9_0_1 +16664,2,58.0,0.0,5,111,636.0,0.0,0.0,78,77,0.0,0.0,1084.5075455846309,779.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,116683,1,3,0,1,1,624.0,0.0,388.0,41,0.0,0.0,2.0,2.0,1.5,2,2,1342.20473801745,636.0,30313.14468204321,5,5,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025698422521681204,20208.76312136214,5,3,5,5_0,5_3,5_0_0 +16665,2,62.0,0.0,5,112,540.0,0.0,0.0,43,74,2636.7071275915036,0.0,920.8082934209131,3040.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,116684,2,2,3,0,1,,500.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1520.22211645242,540.0,73938.49881740937,1,5,0,1,95.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04111525184609522,49292.332544939585,10,5,10,10_1,10_0,10_0_0 +16666,2,86.0,0.0,5,211,288.0,,,0,77,0.0,0.0,,426.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,1,,3,116685,2,1,0,0,2,,176.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,93.51579141469342,288.0,14785.68015728173,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02881166070606507,14785.68015728173,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +16667,1,25.0,74.0,8,112,432.0,0.0,0.0,46,55,258.39729850396736,0.0,736.6466347367304,677.0,0.0,0.0,50,1,2,2,1,2,2,2,2,2,30.0,2,1999.0,6,116686,2,1,0,1,1,245.0,0.0,530.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1589.94728359973,432.0,28160.48542940268,4,1,2,3,70.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02404077876062238,15644.714127445934,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +16668,2,41.0,0.0,9,112,1065.0,0.0,0.0,37,34,0.0,0.0,1816.0385786912452,1065.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,116687,2,1,1,0,1,,161.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,730.455593057803,1065.0,66922.61451034805,1,1,1,2,117.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015913903062399364,29096.788917542635,8,4,8,8_1,8_0,8_0_0 +16669,1,25.0,358.0,9,211,390.0,,,0,52,0.0,0.0,,390.0,0.0,,60,2,2,2,2,1,2,2,2,0,,1,2012.0,6,116688,1,3,0,0,2,,160.0,513.0,32,1.0,0.0,2.0,2.0,1.3,1,1,260.7789269224602,390.0,13358.126799598906,0,4,2,3,57.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.029195710285645007,10275.48215353762,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +16670,2,31.0,0.0,1,111,400.0,0.0,0.0,0,42,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,1,116689,1,1,0,0,2,,0.0,560.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1597.64581310442,400.0,23555.38679771985,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016981253733380417,23555.38679771985,6,3,6,6_0,6_4,6_1_0 +16671,2,53.0,0.0,2,111,460.0,136.0,0.0,52,52,0.0,0.0,784.3922499511482,596.0,0.0,258.1965505198113,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,116690,2,2,0,1,1,432.0,0.0,370.0,43,2.0,1.0,3.0,3.0,1.8,2,2,206.61996600047,460.0,42641.22586871472,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013977084097792719,23689.56992706373,6,3,6,6_0,6_4,6_0_1 +16672,2,54.0,0.0,6,111,1568.0,0.0,0.0,78,55,0.0,0.0,2673.754452007392,1598.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,2,7.0,1,,4,116691,2,1,1,0,1,,152.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1582.87459088755,1568.0,30014.824818869183,5,1,0,1,87.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05324035737817793,20009.883212579454,5,3,5,5_1,5_3,5_0_0 +16673,2,58.0,0.0,6,211,849.0,1416.0,0.0,54,64,0.0,0.0,1447.71526132288,2265.0,0.0,2688.281731882741,50,2,2,1,2,2,2,2,1,1,3.0,1,,4,116692,2,1,2,0,2,,460.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1273.95155015031,849.0,28687.022126413267,4,1,0,1,160.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.07895556360011748,19124.681417608845,5,3,5,5_1,5_1,5_0_0 +16674,2,46.0,0.0,7,111,600.0,800.0,0.0,0,43,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,33,0,0,0,0,0,0,0,0,2,30.0,2,,5,116693,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,1651.92904205076,600.0,27262.333538130817,0,1,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05135290411005616,18174.889025420543,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +16675,2,64.0,0.0,1,111,120.0,700.0,0.0,0,78,0.0,0.0,204.62406520464734,860.0,55.423569015860835,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,,1,116694,1,3,0,0,2,,120.0,319.0,11,0.0,0.0,2.0,1.0,1.0,1,1,3723.17858931163,120.0,14074.539410206824,0,5,2,3,35.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.061103242879573735,14074.539410206824,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +16676,2,55.0,0.0,1,111,1000.0,1600.0,0.0,0,52,0.0,0.0,1705.2005433720612,2600.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,116695,2,1,2,0,1,,470.0,,32,3.0,1.0,4.0,3.0,2.0,3,3,382.918808868651,1000.0,47979.94566053811,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05418930689074149,23989.972830269056,6,3,6,6_1,6_3,6_1_0 +16677,2,61.0,0.0,6,211,300.0,,,77,48,0.0,0.0,,420.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,,4,116696,2,3,0,0,2,,300.0,,42,1.0,5.0,5.0,2.0,1.5,2,2,91.89230228283724,300.0,45983.53229206194,6,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009133704590860757,30655.688194707956,8,4,8,8_1,8_2,8_0_0 +16678,2,69.0,0.0,9,221,0.0,,,0,74,0.0,0.0,,258.0,349.1684847999233,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,116697,2,1,0,0,2,,1098.0,,31,0.0,3.0,5.0,2.0,1.3,1,1,82.7530537641008,0.0,61601.69744991153,0,5,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004188196278353861,47385.92111531656,10,5,10,10_1,10_1,10_0_0 +16679,1,39.0,220.0,5,400,1250.0,0.0,0.0,0,62,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,116698,2,1,2,0,1,,220.0,363.0,32,1.0,0.0,3.0,3.0,1.8,2,1,1157.54488141001,1250.0,22425.645898549203,0,1,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05573975463872222,12458.692165860668,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +16680,2,69.0,0.0,5,111,225.0,851.0,0.0,0,77,0.0,0.0,383.6701222587138,1076.0,0.0,1615.6269447967604,50,0,0,0,0,0,0,0,0,0,,2,,3,116699,1,2,0,0,1,,0.0,224.0,11,0.0,2.0,2.0,1.0,1.0,1,1,444.841488103179,225.0,22028.00871825552,0,5,2,3,52.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04884690276648902,22028.00871825552,6,3,6,6_0,6_2,6_0_0 +16681,2,54.0,0.0,9,111,0.0,,,68,48,0.0,0.0,,471.0,0.0,,50,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,116700,1,2,0,0,2,,153.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,246.32101684774585,0.0,3595.5687819688164,1,1,1,2,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13099457375478038,1438.2275127875266,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16682,1,66.0,240.0,9,211,353.0,918.0,0.0,0,77,0.0,0.0,601.9357918103376,1271.0,0.0,1742.8267160087264,70,1,2,2,1,2,2,2,2,0,,1,2010.0,6,116701,2,1,1,0,1,,274.0,407.0,11,0.0,2.0,3.0,1.0,1.0,1,1,835.691729838815,353.0,9883.795789181715,0,5,2,3,80.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.12859432014886124,9883.795789181715,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +16683,2,62.0,0.0,2,111,150.0,850.0,0.0,42,34,0.0,0.0,255.78008150580916,1000.0,0.0,1613.7284407488207,10,0,0,0,0,0,0,0,0,0,,1,,2,116702,2,1,3,0,1,,1000.0,,43,2.0,2.0,3.0,4.0,2.1,2,2,662.18700260204,150.0,85171.88169436474,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011740964037737861,40558.03890207844,9,5,9,9_1,9_4,9_0_1 +16684,0,27.0,0.0,1,111,371.0,1567.0,0.0,0,37,0.0,0.0,632.6294015910347,1938.0,0.0,2974.955843121649,10,2,2,2,2,1,2,2,2,0,,2,,1,116703,2,1,0,0,1,,0.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,889.452895625988,371.0,26893.150174830727,0,1,5,0,46.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.07206295980207526,17928.766783220486,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +16685,2,51.0,0.0,6,112,1371.0,0.0,0.0,45,48,0.0,331.081819252556,2337.829944963096,1621.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,116704,2,1,1,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,338.159260826462,1371.0,57881.374003616824,1,1,0,1,100.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028005554945857176,38587.582669077885,9,5,9,9_1,9_0,9_0_0 +16686,2,40.0,0.0,9,112,1500.0,0.0,0.0,43,48,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,116705,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,5269.01625736081,1500.0,39168.720209233325,1,1,1,2,110.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03829586445477996,19584.360104616662,5,3,5,5_1,5_0,5_0_0 +16687,2,58.0,0.0,9,112,1177.0,0.0,0.0,74,52,0.0,0.0,2007.021039548916,1177.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,116706,2,1,1,0,1,,119.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1796.73087154545,1177.0,34532.036893143406,5,1,1,2,80.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0340842911653932,23021.35792876227,6,3,6,6_1,6_1,6_0_0 +16688,0,45.0,0.0,2,111,0.0,0.0,0.0,52,48,0.0,0.0,0.0,2121.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,8,,2,116707,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,679.134624604223,0.0,51781.78154063907,1,1,5,0,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04096035201754133,25890.890770319536,7,4,7,7_0,7_4,7_0_1 +16689,2,39.0,0.0,2,111,1200.0,0.0,0.0,21,43,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,116708,2,2,1,0,2,,500.0,,43,2.0,4.0,3.0,2.0,1.5,2,2,1314.95539059802,1200.0,47159.10771694436,1,1,1,2,57.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025445774063465532,31439.405144629574,8,4,8,8_1,8_2,8_0_1 +16690,2,55.0,0.0,6,111,1560.0,,,0,42,0.0,0.0,,1749.0,261.87636359994247,,41,0,0,0,0,0,0,0,0,2,5.0,1,,4,116709,2,2,0,0,2,,480.0,,32,3.0,2.0,5.0,5.0,2.6,3,3,81.47688506461279,1560.0,82045.1602189969,0,1,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02131752799716068,31555.830853460346,8,4,8,8_1,8_3,8_0_0 +16691,2,59.0,0.0,1,111,670.0,0.0,0.0,52,53,0.0,0.0,1142.484364059281,670.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,116710,1,2,0,1,1,,0.0,822.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,4,1347.9922429397,670.0,46679.84103215198,1,1,2,3,117.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014353090867180111,15058.013236178058,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +16692,2,35.0,0.0,9,112,1500.0,0.0,0.0,0,42,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,116711,2,1,1,0,1,,200.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1228.51212501165,1500.0,26026.13380281039,0,1,1,2,108.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05763437671399449,20020.10292523876,5,3,5,5_1,5_0,5_0_0 +16693,2,49.0,0.0,5,211,1200.0,,,56,62,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,8,,3,116712,1,2,0,0,2,,500.0,500.0,43,2.0,0.0,3.0,4.0,2.1,2,2,33.834089502055924,1200.0,47035.5609130882,1,1,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025512611664551998,22397.88614908962,6,3,6,6_0,6_2,6_0_0 +16694,2,62.0,0.0,1,112,1591.0,0.0,0.0,77,74,0.0,0.0,2712.974064504949,1591.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,116713,2,1,2,0,1,,627.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1614.36844549629,1591.0,56394.92687711652,5,5,0,1,89.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028211757477170932,37596.61791807768,9,5,9,9_1,9_0,9_1_0 +16695,2,38.0,0.0,1,112,900.0,1500.0,0.0,43,37,0.0,0.0,1534.680489034855,2400.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,1,10.0,1,,1,116714,2,2,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,617.261768032247,900.0,49297.776153947576,4,1,1,2,100.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04868373762956886,23475.131501879798,6,3,6,6_1,6_0,6_1_0 +16696,2,51.0,0.0,1,111,800.0,0.0,0.0,21,52,0.0,893.9209119819011,1364.160434697649,1595.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,116715,2,1,2,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,314.957969338933,800.0,65728.96403314038,1,1,0,1,87.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024266318866608107,43819.30935542692,10,5,10,10_1,10_3,10_1_0 +16697,2,74.0,0.0,6,111,480.0,,,0,78,0.0,0.0,,618.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,116716,1,1,0,0,2,,488.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,102.52654553987699,480.0,9396.865131410852,0,5,0,1,82.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06576661379700073,9396.865131410852,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +16698,2,37.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,670.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116717,2,2,0,1,1,660.0,0.0,502.0,12,1.0,0.0,2.0,1.0,1.0,1,1,311.604293620398,0.0,27978.697758296104,0,1,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023946790011030263,27978.697758296104,7,4,7,7_0,7_4,7_0_1 +16699,1,82.0,128.0,2,111,477.0,0.0,0.0,0,78,0.0,0.0,813.3806591884731,477.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116718,2,1,0,0,1,,0.0,390.0,11,0.0,8.0,1.0,1.0,1.0,1,1,3271.84017603535,477.0,10889.501831981444,0,5,2,3,30.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04380365671082361,10889.501831981444,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +16700,1,26.0,270.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,116719,1,3,0,0,1,,165.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1764.45558530805,0.0,12161.476884757723,0,4,2,3,26.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021378982377203246,12161.476884757723,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +16701,2,58.0,0.0,2,111,430.0,0.0,0.0,55,54,0.0,0.0,733.2362336499863,929.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116720,2,2,1,0,1,,200.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1427.98895358747,430.0,28930.06700220615,4,1,0,1,80.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03211192009783995,19286.7113348041,5,3,5,5_1,5_2,5_0_1 +16702,2,50.0,0.0,9,111,1082.0,,,85,21,0.0,0.0,,1148.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,116721,1,1,0,0,2,,400.0,850.0,42,2.0,0.0,4.0,3.0,2.0,3,3,122.9464448331751,1082.0,22663.08163420342,6,1,2,3,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05065507059143375,11331.54081710171,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +16703,2,32.0,0.0,2,111,224.0,0.0,0.0,90,65,0.0,0.0,381.9649217153417,256.0,44.33885521268867,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,116722,2,1,0,1,1,298.0,0.0,277.0,43,2.0,0.0,4.0,3.0,1.8,2,2,335.587330830145,224.0,31823.366991496812,1,1,2,3,67.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008044403348910349,17679.64832860934,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +16704,1,45.0,413.0,7,111,480.0,,,52,68,0.0,264.8654554020448,,753.0,101.14801345394604,,50,0,0,0,0,0,0,0,0,0,,1,,5,116723,2,1,0,0,2,,240.0,417.0,43,2.0,0.0,3.0,4.0,2.3,3,2,120.66259508144574,480.0,11464.828751869929,4,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06567913191701051,4984.708152986926,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +16705,2,59.0,0.0,1,111,2040.0,0.0,0.0,0,68,0.0,0.0,3478.6091084790046,2040.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,116724,2,1,0,0,1,,564.0,,22,1.0,0.0,4.0,3.0,2.0,3,3,2073.06838818559,2040.0,37627.45006225811,0,1,0,1,93.0,8,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05421573868610896,18813.725031129055,5,3,5,5_0,5_3,5_1_0 +16706,1,34.0,395.0,5,221,505.0,163.0,0.0,0,64,0.0,0.0,861.1262744028909,668.0,0.0,309.4561598141856,71,0,0,0,0,0,0,0,0,0,,2,,3,116725,2,2,0,1,1,795.0,0.0,364.0,32,1.0,0.0,4.0,3.0,1.6,1,1,3029.0777125443,505.0,17777.0,0,1,2,3,72.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03757664397817405,11110.625,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +16707,2,29.0,0.0,8,400,596.0,0.0,0.0,63,68,0.0,66.2163638505112,1016.2995238497484,727.0,112.2327272571182,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,116726,2,1,4,0,1,,313.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1480.91134230479,596.0,30542.590704944465,1,1,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023802826912201255,16968.10594719137,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +16708,2,81.0,0.0,6,111,163.0,66.0,0.0,71,71,3164.0485531098047,0.0,277.94768856964595,3229.0,0.0,125.30126716402607,70,0,0,0,0,0,0,0,0,0,,1,,4,116727,2,1,2,0,1,,453.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1239.33106903858,163.0,27213.47205603957,5,5,0,1,146.0,6,5,8,1,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11865446619051971,18142.31470402638,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +16709,1,38.0,146.0,2,111,420.0,132.0,0.0,56,21,0.0,0.0,716.1842282162656,552.0,0.0,250.60253432805214,42,0,0,0,0,0,0,0,0,0,,2,,2,116728,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,302.536920952786,420.0,40509.58192689872,1,1,1,2,68.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013626405747561347,15580.608433422585,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +16710,2,76.0,0.0,5,111,360.0,1000.0,0.0,74,74,0.0,0.0,613.872195613942,1360.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,2,,3,116729,1,1,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1730.59561901329,360.0,26345.58082732889,5,5,0,1,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05162156070551461,17563.720551552593,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +16711,2,52.0,0.0,2,400,2015.0,0.0,0.0,54,48,0.0,0.0,3435.9790948947034,2105.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,116730,2,1,1,0,1,,145.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1673.70643125001,2015.0,53988.485045303554,1,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03898979566167904,35992.3233635357,9,5,9,9_1,9_0,9_0_1 +16713,2,47.0,0.0,7,111,1500.0,,,42,43,0.0,0.0,,1544.0,60.965925917446924,,33,0,0,0,0,0,0,0,0,2,10.0,1,,5,116732,1,1,0,0,2,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,145.61751708744868,1500.0,97831.0181979872,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01578231555226486,54350.56566554844,10,5,10,10_1,10_3,10_0_0 +16714,1,88.0,125.0,6,111,263.0,996.0,0.0,0,78,0.0,0.0,448.4677429068521,1259.0,0.0,1890.91003174803,70,0,0,0,0,0,0,0,0,0,,1,,4,116733,2,1,2,0,1,,128.0,422.0,11,0.0,7.0,3.0,1.0,1.0,1,1,291.269690756922,263.0,14547.218290278373,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0865457556817832,14547.218290278373,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +16715,2,28.0,0.0,2,112,60.0,0.0,0.0,0,38,0.0,0.0,102.31203260232367,60.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,8,,2,116734,2,2,0,0,1,,400.0,422.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1490.92311879762,60.0,57825.6592373322,0,1,2,3,70.0,9,3,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0010376016597362723,57825.6592373322,10,5,10,10_0,10_1,10_0_1 +16716,2,58.0,0.0,1,211,480.0,800.0,0.0,85,78,0.0,0.0,818.4962608185893,1280.0,0.0,1518.8032383518312,50,2,2,2,2,1,2,2,2,0,,1,,1,116735,1,3,4,0,1,,500.0,405.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1114.50410577563,480.0,23677.901717639186,6,5,2,3,60.0,3,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05405884420267046,15785.267811759457,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +16717,2,35.0,0.0,7,111,520.0,0.0,0.0,0,38,0.0,0.0,886.7042825534718,520.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,2,,5,116736,2,1,0,0,1,,0.0,622.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1405.21062237712,520.0,33613.849812548666,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015469813868385718,33613.849812548666,9,5,9,9_0,9_4,9_0_0 +16718,2,48.0,0.0,8,112,1200.0,0.0,0.0,56,63,0.0,631.7041111338768,2046.2406520464733,1677.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,116737,2,2,2,0,1,,490.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,938.365318081207,1200.0,31423.861090518156,1,1,0,1,90.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05336708926918018,17457.70060584342,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +16719,2,62.0,0.0,2,111,1200.0,1000.0,0.0,78,78,0.0,33.1081819252556,2046.2406520464733,2225.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,2,116738,2,1,1,0,1,,400.0,243.0,41,0.0,1.0,3.0,2.0,1.5,2,2,156.738340053773,1200.0,21400.492558207443,6,5,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10396956957641032,14266.995038804962,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +16720,2,68.0,0.0,9,221,463.0,0.0,0.0,0,75,1166.4792332464813,0.0,789.5078515812643,1569.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,116739,2,1,1,0,1,,365.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1614.08104092557,463.0,35306.05136947546,0,5,0,1,120.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04443997386115259,35306.05136947546,9,5,9,9_1,9_1,9_0_0 +16721,2,71.0,0.0,2,111,1000.0,0.0,0.0,77,74,0.0,0.0,1705.2005433720612,1078.0,108.07595958092864,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116740,2,2,3,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1082.99659145674,1000.0,53083.03412387089,5,5,0,1,100.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02030780677465523,35388.68941591393,9,5,9,9_1,9_2,9_0_1 +16722,1,44.0,225.0,7,221,330.0,,,0,56,0.0,0.0,,506.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,5,116741,2,2,0,0,2,,900.0,,32,1.0,2.0,4.0,2.0,1.5,2,2,103.26996530544565,330.0,8286.387494394758,0,4,1,2,62.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.061064004108217065,5524.258329596505,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +16723,1,39.0,350.0,7,111,464.0,,,0,45,0.0,0.0,,464.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,116742,1,1,0,0,2,,325.0,650.0,32,1.0,0.0,3.0,2.0,1.3,1,1,127.65973170779148,464.0,31356.221027808715,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014797701533883658,24120.170021391317,6,3,6,6_1,6_3,6_0_0 +16725,2,28.0,0.0,9,111,530.0,0.0,0.0,0,62,0.0,0.0,903.7562879871924,1218.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,116744,2,1,0,0,1,,150.0,456.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1608.84826296496,530.0,23125.40443878853,0,1,2,3,67.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05266934912312424,17788.772645221947,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +16726,2,84.0,0.0,1,111,440.0,170.0,0.0,75,75,2847.643697798824,0.0,750.2882390837069,3310.0,0.0,322.74568814976413,33,0,0,0,0,0,0,0,0,0,,1,,1,116745,2,1,1,0,2,,332.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,245.238571206593,440.0,48533.98595578605,5,5,0,1,110.0,7,5,2,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06819963237751327,32355.990637190698,8,4,8,8_1,8_2,8_1_0 +16727,2,57.0,0.0,1,120,800.0,0.0,0.0,33,33,2636.7071275915036,463.51454695357836,1364.160434697649,9260.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,116746,2,1,2,0,1,,260.0,,43,2.0,7.0,5.0,2.0,1.5,2,2,221.908255344926,800.0,138060.76444805868,1,1,1,2,135.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0670719160292916,92040.50963203912,10,5,10,10_1,10_0,10_1_0 +16728,2,40.0,0.0,1,120,700.0,1300.0,0.0,52,63,0.0,1191.8945493092015,1193.6403803604428,2900.0,0.0,2468.055262321726,43,0,0,0,0,0,0,0,0,2,6.0,1,,1,116747,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,212.437495171336,700.0,40805.9770944339,1,1,1,2,140.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07106802009148731,19431.417664016142,5,3,5,5_1,5_0,5_1_0 +16729,2,75.0,0.0,2,111,1479.0,0.0,0.0,86,74,0.0,0.0,2521.9916036472787,1479.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,116748,2,1,2,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1377.83682717833,1479.0,51755.89120655738,6,5,0,1,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028576457008484733,34503.92747103825,9,5,9,9_1,9_2,9_0_1 +16730,2,53.0,0.0,2,120,1200.0,0.0,0.0,75,56,0.0,397.2981831030672,2046.2406520464733,1750.0,346.39730634913025,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116749,2,1,2,0,1,,200.0,,42,2.0,4.0,4.0,3.0,2.0,3,3,1273.65469264393,1200.0,26188.24848264231,7,1,1,2,81.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0668238657182403,13094.124241321155,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +16732,2,75.0,0.0,2,111,600.0,2000.0,0.0,0,72,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,2,116751,2,1,1,0,1,,1200.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1250.08326049966,600.0,11759.838709020796,0,5,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.22109146769211885,11759.838709020796,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +16733,0,83.0,0.0,5,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,385.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,116752,2,1,0,1,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1353.54388637093,0.0,19816.305128401207,0,5,0,1,28.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019428445288128347,19816.305128401207,5,3,5,5_0,5_0,5_0_0 +16734,2,46.0,0.0,2,211,246.0,0.0,0.0,78,45,738.277995725621,52.973091080408956,419.479333669527,1036.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,116753,2,2,2,0,2,,170.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,1131.92521992388,246.0,30221.992776881114,6,1,0,1,72.0,2,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03427967201396818,15110.996388440557,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +16735,2,48.0,0.0,6,111,1245.0,0.0,0.0,0,46,0.0,0.0,2122.974676498216,1245.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,116754,2,1,0,0,1,,0.0,484.0,32,1.0,1.0,3.0,2.0,1.5,2,1,949.61131332872,1245.0,33454.72580777944,0,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03721447329006332,22303.150538519625,6,3,6,6_0,6_4,6_0_0 +16736,2,79.0,0.0,5,111,840.0,,,0,74,0.0,0.0,,882.0,58.19474746665388,,70,0,0,0,0,0,0,0,0,0,,2,,3,116755,2,1,0,0,2,,200.0,528.0,21,2.0,0.0,5.0,4.0,2.3,3,3,92.04590042343241,840.0,41047.458177022796,0,5,2,3,123.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021487323190543344,17846.720946531652,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +16737,2,37.0,0.0,7,211,0.0,,,81,63,0.0,0.0,,221.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,116756,2,2,0,0,2,,953.0,270.0,43,2.0,6.0,2.0,7.0,2.9999999999999996,2,2,104.38931657102945,0.0,5183.596273291925,4,4,2,3,25.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04263449318741994,1727.865424430642,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +16738,2,32.0,0.0,2,111,769.0,0.0,0.0,46,38,0.0,0.0,1311.2992178531151,769.0,0.0,0.0,12,1,2,2,2,1,2,2,2,2,25.0,2,,2,116757,2,1,0,1,1,,0.0,565.0,43,2.0,0.0,3.0,2.0,1.5,2,2,926.762484208182,769.0,63005.83277522134,1,1,3,4,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012205219201585238,42003.88851681422,9,5,9,9_0,9_4,9_0_1 +16739,2,74.0,0.0,1,120,183.0,,,0,75,0.0,0.0,,229.0,63.73710436823996,,41,0,0,0,0,0,0,0,0,0,,1,,1,116758,2,2,0,0,2,,450.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,151.48948824907885,183.0,18798.181236137134,0,5,0,1,94.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012182029586978147,18798.181236137134,5,3,5,5_1,5_1,5_1_0 +16740,2,52.0,0.0,2,111,1200.0,150.0,0.0,63,68,0.0,0.0,2046.2406520464733,1350.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,2,,2,116759,2,1,0,1,1,,0.0,,43,3.0,1.0,3.0,5.0,3.0,5,3,786.333428436753,1200.0,54164.60474422072,4,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024924025687532464,18054.868248073573,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +16741,2,47.0,0.0,6,112,800.0,,,0,67,0.0,0.0,,1100.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,4,116760,2,2,0,0,2,,1200.0,,22,2.0,1.0,5.0,6.0,3.5,6,5,91.36900042762157,800.0,23192.482641947565,0,1,0,1,100.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04742916129256737,6626.423611985018,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +16742,1,59.0,150.0,9,111,622.0,0.0,0.0,0,56,0.0,0.0,1060.634737977422,622.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,116761,2,1,0,0,1,,200.0,528.0,12,1.0,4.0,3.0,1.0,1.0,1,1,1641.89371720753,622.0,15144.801512560936,0,1,2,3,63.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.041070198211849776,15144.801512560936,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +16743,2,67.0,0.0,6,112,521.0,1475.0,0.0,86,78,0.0,0.0,888.4094830968438,1996.0,0.0,2800.2934707111885,71,0,0,0,0,0,0,0,0,0,,1,,4,116762,2,1,2,0,1,,500.0,,41,2.0,3.0,5.0,4.0,2.5,4,4,1544.86945534002,521.0,54333.550943487775,5,5,1,2,115.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03673604918765637,21733.42037739511,6,3,6,6_1,6_2,6_0_0 +16744,2,31.0,0.0,2,112,950.0,0.0,0.0,67,56,0.0,0.0,1619.9405162034582,1014.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,116763,2,1,1,0,1,,610.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,103.008831441528,950.0,53205.14314582363,1,1,1,2,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019058307901190084,25335.782450392206,7,4,7,7_1,7_0,7_0_1 +16746,2,58.0,0.0,1,111,530.0,1500.0,0.0,54,62,0.0,19.86490915515336,903.7562879871924,2045.0,0.0,2847.7560719096837,50,2,2,2,1,2,2,2,2,2,15.0,1,,1,116765,1,1,3,0,1,,540.0,474.0,43,2.0,3.0,4.0,2.0,1.5,2,2,1533.91603414611,530.0,36111.97742211484,1,1,2,3,88.0,5,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05662941068266313,24074.651614743227,6,3,6,6_1,6_2,6_1_0 +16747,1,34.0,211.0,7,112,900.0,0.0,0.0,55,64,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,116766,2,1,2,0,1,,204.0,504.0,43,2.0,0.0,4.0,5.0,2.4,2,2,2065.36412084137,900.0,24182.757785057627,1,1,2,3,105.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03721659903305587,10076.149077107346,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +16748,2,76.0,0.0,6,112,500.0,1214.0,0.0,0,72,0.0,0.0,852.6002716860306,1714.0,0.0,2304.783914198904,71,0,0,0,0,0,0,0,0,0,,1,,4,116767,2,1,2,0,1,,300.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,239.66595932105,500.0,12760.02860816874,0,5,0,1,95.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13432571764789994,12760.02860816874,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +16749,2,68.0,0.0,5,112,1100.0,0.0,0.0,75,90,3691.3899786281054,0.0,1875.7205977092674,4600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,116768,1,1,1,0,1,,600.0,,41,0.0,3.0,4.0,3.0,2.0,3,3,2244.63087624006,1100.0,41370.1774772437,5,5,0,1,100.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11119120778561563,20685.08873862185,5,3,5,5_1,5_0,5_0_0 +16750,2,62.0,0.0,5,111,2300.0,0.0,0.0,78,75,0.0,0.0,3921.9612497557405,2351.0,70.66505049522257,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,116769,2,1,2,0,1,,530.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,744.508063055246,2300.0,32944.51443182359,5,5,0,1,100.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07136241163503056,21963.009621215726,6,3,6,6_1,6_2,6_0_0 +16751,1,46.0,300.0,2,111,200.0,,,63,52,0.0,0.0,,452.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,1,30.0,1,,2,116770,1,3,0,0,2,,500.0,255.0,43,2.0,0.0,3.0,4.0,2.5,4,2,172.0714311120307,200.0,17992.401607947224,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02512171581365503,7196.96064317889,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +16752,1,39.0,367.0,2,300,1124.0,0.0,0.0,0,56,0.0,0.0,1916.6454107501968,1180.0,77.59299662220518,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,116771,1,3,3,0,1,,420.0,392.0,32,1.0,0.0,4.0,3.0,2.0,3,1,629.319010649445,1124.0,16705.716828178753,0,1,2,3,80.0,0,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,1,0.07063450267573121,8352.858414089376,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +16753,2,38.0,0.0,9,111,1600.0,0.0,0.0,46,38,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,116772,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,251.450333331289,1600.0,53945.03687620961,1,1,1,2,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029659818449500747,29969.46493122756,8,4,8,8_1,8_2,8_0_0 +16755,0,62.0,0.0,1,111,560.0,0.0,0.0,0,75,0.0,0.0,954.9123042883542,600.0,55.423569015860835,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,116774,2,1,1,0,1,,96.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1770.45742235114,560.0,17460.898736234558,0,5,5,0,45.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03436249239306854,17460.898736234558,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +16756,2,63.0,0.0,5,111,658.0,0.0,0.0,56,46,0.0,0.0,1122.0219575388162,658.0,0.0,0.0,70,1,2,2,2,1,2,2,2,2,10.0,2,,3,116775,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,630.989154377201,658.0,38213.1568020448,1,1,1,2,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01721920027200658,25475.43786802987,7,4,7,7_0,7_4,7_0_0 +16757,0,79.0,0.0,2,221,960.0,0.0,0.0,75,74,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,116776,1,1,2,0,2,,494.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,747.817125505194,960.0,53868.0,5,5,0,1,155.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.017821341055914458,35912.0,9,5,9,9_1,9_1,9_0_1 +16758,2,61.0,0.0,6,111,500.0,900.0,0.0,46,23,0.0,132.4327277010224,852.6002716860306,1500.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,2,45.0,1,,4,116777,2,2,2,0,1,,1200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1499.24164322153,500.0,93895.36610683266,1,1,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01597522925991176,62596.910737888444,10,5,10,10_1,10_3,10_0_0 +16759,1,74.0,307.0,1,111,277.0,0.0,0.0,0,77,0.0,0.0,472.34055051406096,277.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,116778,2,2,0,1,2,252.0,0.0,416.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1016.7254998759,277.0,1584.1888702823587,0,5,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.17485288856411974,1584.1888702823587,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +16760,2,77.0,0.0,2,111,500.0,300.0,0.0,0,86,0.0,0.0,852.6002716860306,800.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,116779,2,1,0,1,1,,0.0,380.0,21,1.0,0.0,5.0,2.0,1.5,2,2,370.000669882222,500.0,13826.19930811212,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05786116503691823,9217.46620540808,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +16761,2,44.0,0.0,9,300,2000.0,0.0,0.0,0,37,0.0,0.0,3410.4010867441225,2030.0,41.567676761895626,0.0,43,2,2,1,2,1,2,2,2,2,20.0,1,2005.0,6,116780,2,2,1,0,1,,280.0,750.0,22,2.0,0.0,5.0,2.0,1.5,2,2,1292.22793115492,2000.0,43878.99586220982,0,1,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04626359286740902,29252.66390813988,8,4,8,8_1,8_0,8_0_0 +16762,2,59.0,0.0,2,111,273.0,1385.0,0.0,0,43,0.0,0.0,465.5197483405727,1658.0,0.0,2629.4281063966077,33,2,2,2,2,1,2,2,2,2,40.0,2,,2,116781,2,3,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,295.653589001348,273.0,41589.793473622085,0,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03986555021129331,41589.793473622085,9,5,9,9_0,9_4,9_0_1 +16763,2,69.0,0.0,6,111,503.0,40.0,0.0,78,75,1582.0242765549024,0.0,857.7158733161468,2043.0,0.0,75.94016191759155,50,0,0,0,0,0,0,0,0,0,,1,,4,116782,2,1,2,0,1,,168.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1159.40836668826,503.0,39536.922960940115,5,5,0,1,95.0,9,7,7,1,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05167321700827224,26357.948640626742,7,4,7,7_1,7_3,7_0_0 +16764,2,69.0,0.0,8,112,729.0,1008.0,0.0,77,74,0.0,0.0,1243.0911961182326,1737.0,0.0,1913.6920803233072,44,0,0,0,0,0,0,0,0,0,,1,2002.0,6,116783,2,1,1,0,1,,270.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,2398.67754585832,729.0,38284.910843896534,5,5,0,1,106.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04537035510105978,25523.273895931023,7,4,7,7_1,7_1,7_0_0 +16765,2,54.0,0.0,2,111,640.0,0.0,0.0,0,34,0.0,0.0,1091.3283477581192,640.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,45.0,2,,2,116784,2,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1739.86382840951,640.0,44076.80265460847,0,1,0,1,64.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014520109478337682,44076.80265460847,10,5,10,10_0,10_3,10_0_1 +16766,1,27.0,345.0,2,111,420.0,100.0,0.0,0,56,0.0,0.0,716.1842282162656,520.0,0.0,189.8504047939789,50,1,2,2,2,1,2,2,2,0,,2,,2,116785,1,3,0,1,1,450.0,600.0,320.0,32,1.0,0.0,3.0,2.0,1.3,1,1,334.076278055856,420.0,10686.615212276878,0,4,2,3,73.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04865899910035307,8220.473240212983,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16767,0,30.0,0.0,5,111,0.0,,,0,62,0.0,0.0,,216.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,2,,3,116786,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,149.58805141520196,0.0,23788.902957607388,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009079863850170776,23788.902957607388,6,3,6,6_0,6_2,6_0_0 +16768,1,49.0,398.0,5,111,600.0,,,0,85,0.0,0.0,,852.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,2,,3,116787,1,2,0,0,2,,390.0,392.0,31,0.0,4.0,4.0,3.0,1.6,1,1,130.74521677528497,600.0,9479.0,0,6,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08988289903998312,5924.375,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16769,2,66.0,0.0,2,111,0.0,0.0,700.0,0,74,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,70,0,0,0,0,0,0,0,0,0,,2,,2,116788,1,1,0,1,1,,150.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,775.943769674045,0.0,22813.124831387846,0,5,0,1,90.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0306840910736127,22813.124831387846,6,3,6,6_0,6_2,6_0_1 +16770,2,82.0,0.0,2,112,161.0,0.0,0.0,0,75,1582.0242765549024,0.0,274.53728748290183,1683.0,30.482962958723462,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116789,1,1,1,0,2,,140.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1011.71919865279,161.0,24435.877808018984,0,5,0,1,100.0,10,3,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06887413716922824,24435.877808018984,7,4,7,7_1,7_1,7_0_1 +16771,2,81.0,0.0,6,211,817.0,0.0,0.0,75,74,0.0,662.163638505112,1393.148843934974,1317.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,116790,2,3,1,0,1,,541.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,621.248344052939,817.0,51648.542923708104,5,5,0,1,163.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025499267267721133,34432.361949138736,9,5,9,9_1,9_1,9_0_0 +16772,2,70.0,0.0,2,111,0.0,0.0,250.0,0,74,0.0,0.0,157.57957260368593,250.0,0.0,299.1830368911702,20,0,0,0,0,0,0,0,0,0,,2,,2,116791,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1352.84647679197,0.0,38966.14331074564,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006415826118749039,38966.14331074564,9,5,9,9_0,9_4,9_0_1 +16773,1,49.0,230.0,2,111,135.0,290.0,0.0,0,63,0.0,0.0,230.20207335522826,425.0,0.0,550.5661739025388,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,116792,2,1,0,1,1,640.0,0.0,292.0,12,1.0,0.0,2.0,1.0,1.0,1,1,219.989312149953,135.0,13786.447129893932,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03082737677051316,13786.447129893932,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +16774,2,77.0,0.0,2,111,310.0,0.0,0.0,77,78,1807.726406676735,0.0,528.612168445339,2144.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116793,2,1,1,0,1,,205.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1155.92950508696,310.0,31814.31781152199,5,5,0,1,100.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06739104112499691,21209.545207681327,5,3,5,5_1,5_2,5_0_1 +16775,2,27.0,0.0,2,111,0.0,0.0,300.0,43,53,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,41,0,0,0,0,0,0,0,0,2,50.0,2,,2,116794,2,1,0,1,1,1131.0,200.0,262.0,43,2.0,0.0,3.0,2.0,1.5,2,2,385.092924079008,0.0,33646.26570060039,1,1,2,3,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008916294089499708,22430.843800400256,6,3,6,6_0,6_2,6_0_1 +16776,2,80.0,0.0,2,112,330.0,0.0,0.0,77,75,1582.0242765549024,0.0,562.7161793127802,1980.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,116795,2,1,4,0,1,,133.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,790.629273553771,330.0,35084.29299202215,5,5,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056435510912254495,23389.5286613481,6,3,6,6_1,6_0,6_0_1 +16777,2,36.0,0.0,6,112,410.0,0.0,0.0,0,48,0.0,0.0,699.1322227825451,410.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,2,,4,116796,2,1,0,0,1,,0.0,700.0,12,1.0,1.0,3.0,1.0,1.0,1,1,848.610044342947,410.0,29521.122587347378,0,1,2,3,60.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013888360741936156,29521.122587347378,8,4,8,8_0,8_1,8_0_0 +16778,2,41.0,0.0,9,120,2800.0,0.0,0.0,42,37,0.0,0.0,4774.561521441771,2800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,116797,2,2,4,0,1,,731.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,815.827400926519,2800.0,84084.51339112835,1,1,1,2,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03329982998147938,40040.24447196588,9,5,9,9_1,9_0,9_0_0 +16780,1,57.0,270.0,2,111,200.0,200.0,0.0,0,56,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,70,2,1,2,1,1,1,2,2,0,,2,,2,116799,2,3,0,1,1,432.0,0.0,342.0,12,1.0,5.0,4.0,1.0,1.0,1,1,1527.04182319881,200.0,6257.126654064272,0,4,2,3,100.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.06392710618062732,6257.126654064272,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16781,1,41.0,346.0,2,111,0.0,0.0,117.0,0,56,0.0,1303.1380405780603,73.74723997852502,1101.0,0.0,140.01766126506766,50,2,2,2,2,1,2,2,2,0,,2,,2,116800,1,2,0,1,1,,0.0,324.0,32,1.0,0.0,3.0,2.0,1.5,2,1,580.327601602007,0.0,8343.623623310921,0,4,2,3,68.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.13195705483693673,5562.415748873947,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16782,2,51.0,0.0,2,111,1500.0,1600.0,0.0,68,62,0.0,0.0,2557.8008150580918,3100.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,116801,2,1,2,0,1,,820.0,,43,3.0,0.0,3.0,4.0,2.5,4,4,420.465348165405,1500.0,64174.73731988913,1,1,0,1,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048305612604965714,25669.89492795565,7,4,7,7_1,7_4,7_0_1 +16783,2,55.0,0.0,2,111,700.0,1200.0,0.0,42,37,0.0,0.0,1193.6403803604428,1900.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,116802,2,2,3,0,1,,500.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,598.222107913466,700.0,84555.46479265542,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022470457759993723,56370.30986177028,10,5,10,10_1,10_4,10_0_1 +16784,2,41.0,0.0,7,112,0.0,0.0,0.0,52,37,0.0,0.0,0.0,2599.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,116803,2,1,2,0,1,,595.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1194.80783841746,0.0,116978.9051293725,4,1,1,2,155.0,8,1,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022217681018006134,55704.24053779643,10,5,10,10_1,10_1,10_0_0 +16785,1,33.0,200.0,1,111,660.0,1620.0,0.0,85,63,0.0,0.0,1125.4323586255605,2280.0,0.0,3075.576557662458,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,116804,1,3,1,0,1,,638.0,387.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,218.447051268443,660.0,33331.81810332798,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06840310939331436,12345.117816047403,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +16786,2,68.0,0.0,6,111,1050.0,,,77,74,0.0,0.0,,1200.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,,4,116805,2,1,0,0,2,,452.0,,41,1.0,2.0,3.0,3.0,2.0,3,3,103.84232249398242,1050.0,49213.35933113931,5,5,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0243836229899614,24606.679665569656,7,4,7,7_1,7_2,7_0_0 +16787,2,63.0,0.0,1,111,200.0,1200.0,0.0,0,74,0.0,0.0,341.04010867441224,1400.0,0.0,2278.2048575277468,20,1,2,2,2,1,2,2,2,0,,2,,1,116806,2,2,0,0,1,,180.0,660.0,11,0.0,0.0,3.0,1.0,1.0,1,1,510.756813478663,200.0,33578.33014506793,0,5,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04169355634874046,33578.33014506793,9,5,9,9_0,9_2,9_1_0 +16788,2,30.0,0.0,1,111,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1788.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,2.0,1,,1,116807,2,1,1,0,1,,501.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1325.22747554373,0.0,37349.10899376996,1,1,1,2,120.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047872627973487895,24899.40599584664,7,4,7,7_1,7_3,7_1_0 +16789,2,50.0,0.0,6,111,912.0,0.0,0.0,55,38,0.0,446.29829235244546,1555.1428955553197,1249.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,4.0,1,,4,116808,2,1,2,0,1,,225.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1438.23437708498,912.0,56532.99033462281,1,1,0,1,95.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022093294421665646,37688.660223081875,9,5,9,9_1,9_2,9_0_0 +16790,2,22.0,0.0,1,112,0.0,0.0,0.0,84,48,0.0,0.0,0.0,692.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,2,,1,116809,2,1,0,0,1,,415.0,295.0,42,1.0,0.0,4.0,2.0,1.5,2,2,1319.30818393967,0.0,26174.510200503835,3,1,2,3,70.0,9,3,8,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026437935025301052,17449.673467002558,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +16791,1,24.0,253.0,8,111,0.0,,,0,43,0.0,0.0,,449.0,0.0,,33,0,0,0,0,0,0,0,0,2,15.0,2,1999.0,6,116810,2,1,0,0,1,,205.0,555.0,12,1.0,0.0,2.0,1.0,1.0,1,1,155.74417223054,0.0,37950.241845279255,0,1,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011831281651130043,37950.241845279255,9,5,9,9_0,9_2,9_0_0 +16792,1,38.0,413.0,9,120,465.0,,,63,81,0.0,0.0,,723.0,357.4820201523024,,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,116811,2,1,0,0,1,,225.0,586.0,43,2.0,0.0,4.0,4.0,2.3,3,2,149.01127921690258,465.0,12881.398244041233,4,4,2,3,68.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05612744721516939,5600.6079321918405,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +16793,2,50.0,0.0,9,111,720.0,,,0,63,0.0,0.0,,744.0,33.25414140951651,,50,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,116812,2,1,0,0,2,,120.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,111.0265873224473,720.0,37378.69797428843,0,1,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019904385126303034,37378.69797428843,9,5,9,9_1,9_2,9_0_0 +16794,2,61.0,0.0,9,120,0.0,0.0,0.0,54,75,0.0,0.0,0.0,1359.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,116813,2,1,1,0,1,,83.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,2570.59353337372,0.0,28379.952482960354,4,5,0,1,152.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04788591527120981,18919.96832197357,5,3,5,5_1,5_0,5_0_0 +16795,2,42.0,0.0,9,111,400.0,,,21,55,0.0,0.0,,640.0,332.541414095165,,43,2,2,1,2,1,2,2,2,2,5.0,1,2008.0,6,116814,2,1,0,0,1,,490.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,104.8412861741285,400.0,25188.113778444622,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02540881010898468,10075.245511377849,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16796,2,36.0,0.0,2,111,829.5,1973.0,0.0,42,35,0.0,0.0,1414.4638507271247,2803.0,0.0,3745.748486585204,41,2,1,2,1,1,2,2,2,0,,1,,2,116815,2,1,2,0,1,,350.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1228.61776379836,829.5,36839.45437026056,1,4,1,2,150.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0760869032377087,17542.597319171695,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +16797,1,41.0,300.0,6,112,350.0,,,0,52,0.0,0.0,,392.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,116816,2,1,0,0,2,,200.0,500.0,32,1.0,0.0,3.0,2.0,1.3,1,1,145.96129118959215,350.0,13916.591425418836,0,1,2,3,76.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028167816961559056,10705.070327245257,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +16798,2,35.0,0.0,5,111,760.0,,,0,46,0.0,0.0,,838.0,108.07595958092864,,20,0,0,0,0,0,0,0,0,0,,1,,3,116817,2,1,0,0,2,,450.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,111.29345422704309,760.0,25430.34133535028,0,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03295276256615206,12715.17066767514,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16799,1,38.0,350.0,2,111,960.0,40.0,0.0,54,62,0.0,0.0,1636.9925216371787,1000.0,0.0,75.94016191759155,50,1,2,2,2,1,2,2,2,0,,2,,2,116818,2,2,0,1,1,1164.0,0.0,450.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,252.502245760941,960.0,20792.29940026015,1,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04809472876229784,7700.851629725983,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +16800,2,60.0,0.0,5,111,340.0,650.0,0.0,78,77,0.0,0.0,579.7681847465008,990.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,0,,2,,3,116819,1,1,0,1,1,648.0,0.0,266.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1303.79440753076,340.0,24310.814222460867,5,5,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04072261796502623,16207.209481640579,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +16801,1,45.0,80.0,2,111,809.0,0.0,0.0,56,67,0.0,1324.327277010224,1379.5072395879974,1809.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,116820,2,1,2,0,1,,371.0,,43,2.0,0.0,7.0,7.0,3.3999999999999995,4,2,76.636987558884,809.0,40093.92511661484,1,1,1,2,140.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04511905468817155,11792.330916651425,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +16802,1,25.0,281.0,2,111,400.0,480.0,0.0,0,67,0.0,0.0,682.0802173488245,880.0,0.0,911.2819430110987,43,0,0,0,0,0,0,0,0,0,,2,,2,116821,2,2,0,1,1,624.0,600.0,257.0,22,1.0,3.0,4.0,4.0,2.5,4,3,260.990649149222,400.0,28045.17743062158,0,1,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03137794375439243,11218.070972248632,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +16803,0,64.0,0.0,1,111,320.0,1480.0,0.0,0,78,0.0,0.0,545.6641738790596,1840.0,55.423569015860835,2809.785990950888,50,0,0,0,0,0,0,0,0,0,,1,,1,116822,2,1,2,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,733.136612048101,320.0,18335.710328494602,0,5,5,0,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10035062547538989,18335.710328494602,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +16804,1,26.0,380.0,9,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,162.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2006.0,6,116823,2,1,0,1,1,,0.0,453.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2109.43082720074,0.0,10846.689820717427,0,4,3,4,25.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.014935432162038622,10846.689820717427,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +16805,2,32.0,0.0,9,111,0.0,0.0,728.0,54,46,0.0,0.0,458.8717154219335,728.0,0.0,871.2210034270877,31,0,0,0,0,0,0,0,0,0,,2,2009.0,6,116824,2,1,0,0,1,,543.0,404.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2197.3613645217,0.0,51706.893685325944,1,1,2,3,66.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014079360567092069,28726.0520474033,8,4,8,8_0,8_2,8_0_0 +16806,2,54.0,0.0,2,111,352.0,,,0,85,0.0,0.0,,478.0,174.58424239996165,,71,2,2,1,2,1,2,2,2,0,,1,,2,116825,1,2,0,0,2,,310.0,,31,0.0,1.0,4.0,2.0,1.5,2,2,108.67677192271537,352.0,4261.75681800695,0,6,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.11216031801259395,2841.1712120046336,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +16807,2,56.0,0.0,2,111,300.0,400.0,0.0,67,47,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,116826,2,1,0,1,1,560.0,0.0,303.0,43,2.0,1.0,3.0,3.0,1.8,2,2,767.507121153485,300.0,56269.87440598319,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012440049091802644,31261.041336657327,8,4,8,8_0,8_4,8_0_1 +16808,2,45.0,0.0,7,111,1091.0,820.0,0.0,46,21,0.0,158.91927324122688,1860.3737928189187,2031.0,0.0,1556.773319310627,50,0,0,0,0,0,0,0,0,0,,1,,5,116827,2,1,2,0,1,,498.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,1036.12940071348,1091.0,39659.06944941548,1,1,1,2,101.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0512114890287708,15863.627779766193,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +16809,2,81.0,0.0,5,400,500.0,0.0,0.0,0,71,0.0,0.0,852.6002716860306,532.0,44.33885521268867,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,116828,2,1,2,0,1,,180.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,931.09212149717,500.0,58383.05724272232,0,5,0,1,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0091122326429097,58383.05724272232,10,5,10,10_1,10_0,10_0_0 +16810,1,48.0,238.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1646.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,116829,2,2,5,0,2,,191.0,355.0,32,1.0,4.0,3.0,2.0,1.5,2,1,76.6507620266401,0.0,18219.68769839461,0,1,2,3,73.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0903418339132692,12146.458465596406,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +16811,2,28.0,0.0,7,112,1061.0,0.0,0.0,67,68,0.0,0.0,1809.2177765177569,1091.0,41.567676761895626,0.0,50,2,2,1,1,1,2,2,2,1,1.0,1,,5,116830,2,2,4,0,1,,838.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1146.4269294176,1061.0,38822.28869717791,4,1,2,3,60.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.02810241324281604,21567.938165098836,6,3,6,6_1,6_0,6_0_0 +16812,2,53.0,0.0,5,111,402.0,,,0,65,0.0,0.0,,468.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,116831,2,2,0,0,2,,467.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,105.5893800218637,402.0,30798.195448430062,0,1,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015195695500525058,30798.195448430062,8,4,8,8_1,8_3,8_0_0 +16813,2,69.0,0.0,2,112,550.0,0.0,0.0,78,78,0.0,0.0,937.8602988546337,650.0,138.5589225396521,0.0,44,2,2,2,2,1,2,2,2,0,,1,,2,116832,2,3,3,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1366.4363974489,550.0,5891.583944323341,7,5,0,1,250.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.11032686729793403,3927.722629548894,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +16814,2,58.0,0.0,2,112,1200.0,0.0,0.0,52,47,316.40485531098045,0.0,2046.2406520464733,1620.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,116833,2,1,1,0,1,,140.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1538.55155865528,1200.0,65019.14887248993,1,1,0,1,98.0,6,1,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02491573679589389,43346.09924832662,10,5,10,10_1,10_1,10_0_1 +16816,2,62.0,0.0,5,111,260.0,0.0,0.0,0,75,0.0,0.0,443.3521412767359,290.0,41.567676761895626,0.0,41,1,2,2,2,1,2,2,2,0,,2,,3,116835,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,422.964227770564,260.0,20248.909968746135,0,5,0,1,60.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014321758576022626,20248.909968746135,5,3,5,5_0,5_2,5_0_0 +16817,2,59.0,0.0,1,111,800.0,0.0,0.0,78,78,0.0,1191.8945493092015,1364.160434697649,1756.0,77.59299662220518,0.0,60,2,2,2,1,1,2,2,2,0,,1,,1,116836,2,1,2,0,2,,240.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,341.705002320124,800.0,13742.255797558331,6,7,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1277810590828908,9161.503865038887,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +16818,2,67.0,0.0,1,111,820.0,1800.0,0.0,72,77,0.0,0.0,1398.2644455650902,2620.0,0.0,3417.30728629162,70,0,0,0,0,0,0,0,0,0,,1,,1,116837,2,1,2,1,1,,272.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,920.904369679658,820.0,23414.198633255997,5,5,0,1,82.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11189791463880054,15609.465755503998,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +16819,2,34.0,0.0,2,112,1600.0,0.0,0.0,0,37,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,1,,2,116838,2,2,2,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1092.70617258891,1600.0,33322.30635015929,0,1,1,2,110.0,10,2,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04801588411038516,33322.30635015929,8,4,8,8_1,8_1,8_0_1 +16820,2,41.0,0.0,1,112,754.0,0.0,0.0,0,47,0.0,0.0,1285.7212097025342,754.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,116839,2,2,2,0,1,,78.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,921.542186689433,754.0,20559.502265355466,0,1,0,1,43.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036674039588524235,20559.502265355466,5,3,5,5_1,5_0,5_1_0 +16821,2,51.0,0.0,2,111,534.0,0.0,0.0,0,67,0.0,0.0,910.5770901606807,604.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,2,35.0,2,,2,116840,2,1,0,1,1,,0.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,1225.43102340555,534.0,35647.98177158694,0,1,1,2,105.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016943455701646914,23765.321181057963,6,3,6,6_0,6_3,6_0_1 +16822,2,80.0,0.0,6,112,720.0,0.0,0.0,0,86,0.0,529.7309108040896,1227.744391227884,1190.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,116841,2,1,1,0,1,,148.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1544.00211492569,720.0,14807.550002161719,0,5,0,1,89.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08036440868518253,14807.550002161719,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +16823,2,30.0,0.0,2,111,0.0,0.0,450.0,0,43,0.0,0.0,283.6432306866347,450.0,0.0,538.5294664041063,20,0,0,0,0,0,0,0,0,1,8.0,2,,2,116842,2,2,0,1,1,550.0,0.0,550.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1664.81341296051,0.0,20145.275861245616,0,1,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02233774325551359,20145.275861245616,5,3,5,5_0,5_2,5_0_1 +16824,2,53.0,0.0,9,400,0.0,0.0,0.0,52,62,0.0,0.0,0.0,2384.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,116843,2,1,1,0,1,,707.0,550.0,43,2.0,4.0,4.0,2.0,1.5,2,2,1947.54996773588,0.0,39562.365591807844,1,1,2,3,100.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06025928845098316,26374.91039453856,7,4,7,7_1,7_0,7_0_0 +16825,1,54.0,300.0,9,111,150.0,,,69,52,0.0,0.0,,400.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,116844,2,1,0,0,1,,378.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,189.30373347848936,150.0,17269.825125801977,4,4,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023161786357777308,6907.9300503207905,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +16826,1,31.0,355.0,2,111,120.0,160.0,0.0,85,67,0.0,794.5963662061343,204.62406520464734,880.0,0.0,303.7606476703662,71,2,2,2,2,1,1,2,2,0,,2,,2,116845,2,3,0,1,1,515.0,0.0,308.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,304.273064797418,120.0,9042.35873954682,6,4,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09731973983196594,3349.0217553877114,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +16827,2,25.0,0.0,1,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,778.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,116846,2,1,0,0,1,,0.0,724.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1799.37397728742,0.0,24188.505397017983,0,1,2,3,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03216403772082229,24188.505397017983,7,4,7,7_0,7_4,7_1_0 +16828,2,69.0,0.0,2,111,192.0,0.0,0.0,0,72,0.0,0.0,327.3985043274357,216.0,33.25414140951651,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116847,2,1,0,1,1,,0.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,453.022232398321,192.0,28298.69256011001,0,5,0,1,37.0,6,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007632861466698104,28298.69256011001,8,4,8,8_0,8_2,8_0_1 +16829,2,38.0,0.0,7,112,1800.0,0.0,0.0,54,53,0.0,264.8654554020448,3069.36097806971,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,5,116848,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,743.707033234324,1800.0,52617.06072750437,1,1,1,2,122.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038010485047001975,29231.700404169096,8,4,8,8_1,8_1,8_0_0 +16830,0,25.0,0.0,6,111,0.0,,,0,85,0.0,0.0,,334.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,116849,2,2,0,0,2,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,150.37081579950615,0.0,6409.6229765384305,0,7,5,0,22.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.052109149199970485,6409.6229765384305,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +16831,2,48.0,0.0,9,112,960.0,,,85,22,0.0,0.0,,1224.0,365.79555550468154,,50,2,2,2,2,1,2,2,2,0,,1,2011.0,6,116850,2,1,0,0,1,,546.0,,42,1.0,1.0,6.0,4.0,2.5,4,3,247.21057406138866,960.0,17703.343462271983,6,4,1,2,144.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.069139482189254,7081.337384908793,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +16832,2,49.0,0.0,1,120,500.0,1900.0,0.0,38,42,0.0,0.0,852.6002716860306,2400.0,0.0,3607.1576910855993,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,116851,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,578.209367559195,500.0,132217.25840919296,1,1,0,1,150.0,0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018151941954297323,52886.903363677186,10,5,10,10_1,10_1,10_1_0 +16833,1,33.0,195.0,9,120,1430.0,0.0,0.0,85,63,0.0,0.0,2438.4367770220474,1550.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,2,12.0,1,2008.0,6,116852,2,1,1,0,1,,560.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,851.887095437979,1430.0,33526.077454328755,6,1,1,2,118.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0462326677527815,15964.798787775597,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +16834,2,46.0,0.0,1,111,673.0,989.0,0.0,52,38,0.0,0.0,1147.599965689397,1662.0,0.0,1877.6205034124514,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,116853,2,1,1,0,1,,751.0,,43,2.0,0.0,9.0,5.0,2.8,5,3,303.116664223002,673.0,65500.45933389496,1,1,0,1,160.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025373867861411374,23393.021190676773,6,3,6,6_1,6_3,6_1_0 +16835,1,45.0,207.0,9,111,340.0,,,0,56,0.0,0.0,,384.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,2,30.0,2,2010.0,6,116854,2,1,0,0,2,,320.0,285.0,32,1.0,0.0,3.0,2.0,1.5,2,1,276.4714796018747,340.0,18618.796387951807,0,1,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020624319209403125,12412.530925301204,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +16836,2,79.0,0.0,6,112,460.0,0.0,0.0,0,78,0.0,198.6490915515336,784.3922499511482,745.0,187.05454542853033,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,116855,2,3,4,0,2,,256.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1015.68639044973,460.0,12254.643309602816,0,5,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06079328309916726,12254.643309602816,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +16837,2,38.0,0.0,9,111,17.0,,,0,47,0.0,0.0,,17.0,0.0,,50,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,116856,2,1,0,0,2,,95.0,,32,1.0,2.0,5.0,2.0,1.3,1,1,158.57543574991973,17.0,76099.0,0,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0002233932114745266,58537.692307692305,10,5,10,10_1,10_3,10_0_0 +16838,1,68.0,500.0,2,111,612.0,,,0,86,0.0,0.0,,912.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,116857,2,2,0,0,2,,150.0,525.0,21,0.0,0.0,4.0,2.0,1.5,2,2,49.800846083301636,612.0,9713.685243631788,0,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09388815646439642,6475.790162421192,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +16839,2,58.0,0.0,2,111,768.0,1306.0,0.0,0,37,0.0,0.0,1309.5940173097429,2074.0,0.0,2479.4462866093645,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,116858,2,2,2,0,1,,380.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1893.55884124246,768.0,45613.40565307413,0,1,0,1,135.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04546908897297438,45613.40565307413,10,5,10,10_1,10_2,10_0_1 +16840,2,64.0,0.0,2,111,350.0,250.0,0.0,85,78,0.0,0.0,596.8201901802214,600.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,0,,2,,2,116859,1,3,0,1,2,960.0,0.0,604.0,41,1.0,0.0,4.0,5.0,3.0,5,4,193.315764567535,350.0,19371.78891839513,6,5,2,3,126.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030972875170565684,6457.262972798377,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +16841,1,43.0,380.0,8,120,530.0,,,85,63,0.0,0.0,,662.0,182.89777775234077,,50,2,2,2,2,2,2,2,1,0,,1,2000.0,6,116860,1,2,0,0,2,,360.0,491.0,42,3.0,1.0,4.0,5.0,2.8,4,4,118.52030602365124,530.0,31206.661897269198,6,1,2,3,103.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.021213419178868653,11145.236391881857,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +16842,2,66.0,0.0,1,300,333.0,0.0,0.0,77,77,0.0,0.0,567.8317809428963,333.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116861,2,2,4,0,1,,130.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1845.54131304044,333.0,30247.83821543801,5,5,0,1,110.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01100905121312247,20165.225476958673,5,3,5,5_1,5_0,5_1_0 +16843,1,88.0,70.0,1,111,700.0,0.0,0.0,0,86,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,116862,2,1,0,0,1,,170.0,800.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1292.8682506161,700.0,16744.91799273323,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04180372817016949,16744.91799273323,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +16844,2,27.0,0.0,2,221,976.0,0.0,0.0,0,47,0.0,0.0,1664.2757303311316,976.0,0.0,0.0,12,2,2,2,2,1,2,2,2,1,6.0,1,,2,116863,2,3,4,0,1,,476.0,550.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2424.25774609085,976.0,19563.22601658244,0,1,2,3,57.0,1,1,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.04988952226860283,19563.22601658244,5,3,5,5_1,5_1,5_0_1 +16845,2,42.0,0.0,9,112,0.0,0.0,0.0,47,43,0.0,0.0,0.0,763.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,1,2012.0,6,116864,2,1,1,0,1,,362.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1234.76255076705,0.0,40034.267083516155,1,1,1,2,91.0,10,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019058672871625024,26689.51138901077,7,4,7,7_1,7_0,7_0_0 +16846,1,54.0,219.0,6,111,0.0,,,0,63,0.0,0.0,,163.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,,4,116865,2,2,0,0,2,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,1,1,145.35826010748525,0.0,9068.125645359467,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017975048689738194,9068.125645359467,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16847,2,59.0,0.0,6,211,580.0,1360.0,0.0,52,33,0.0,0.0,989.0163151557955,1940.0,0.0,2581.965505198113,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,116866,2,1,2,0,1,,296.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,236.313735911068,580.0,75359.78195957985,1,1,0,1,175.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025743174270866958,50239.8546397199,10,5,10,10_1,10_1,10_0_0 +16848,2,68.0,0.0,9,111,1080.0,,,78,75,0.0,0.0,,1360.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,116867,1,1,0,0,2,,500.0,,41,0.0,7.0,4.0,2.0,1.5,2,2,110.20726747710468,1080.0,29772.3831254689,5,5,0,1,59.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045679917333744866,19848.255416979267,5,3,5,5_1,5_3,5_0_0 +16849,2,57.0,0.0,9,112,1610.0,0.0,0.0,54,21,0.0,0.0,2745.3728748290187,1610.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,116868,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,403.164149098443,1610.0,59212.662973881655,1,1,1,2,100.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027190129934033892,39475.108649254435,9,5,9,9_1,9_1,9_0_0 +16850,2,54.0,0.0,7,221,1700.0,0.0,0.0,85,38,0.0,0.0,2898.840923732504,1800.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,3,135.0,1,,5,116869,2,1,1,0,1,,470.0,,42,1.0,0.0,5.0,6.0,3.0999999999999996,4,3,1275.83511467464,1700.0,50475.604032178344,6,1,1,2,125.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03566079167378551,16282.45291360592,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +16851,1,45.0,200.0,9,111,1200.0,0.0,0.0,0,52,0.0,0.0,2046.2406520464733,1254.0,74.82181817141213,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,2009.0,6,116870,2,1,1,0,1,,350.0,488.0,32,1.0,0.0,4.0,4.0,2.1,4,2,1832.6926632098,1200.0,30735.794425140193,0,1,2,3,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.040799335870567145,14636.092583400092,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +16852,0,40.0,0.0,2,111,510.0,,,0,68,0.0,0.0,,636.0,174.58424239996165,,71,2,2,2,2,1,2,2,2,0,,1,,2,116871,1,3,0,0,2,,213.0,,22,1.0,8.0,5.0,2.0,1.5,2,2,117.70668258747006,510.0,24798.753922594635,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.02564644989765102,16532.50261506309,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +16853,2,76.0,0.0,2,111,397.0,1776.0,0.0,75,74,0.0,0.0,676.9646157187083,2173.0,0.0,3371.743189141065,10,0,0,0,0,0,0,0,0,0,,1,,2,116872,2,2,3,0,1,,544.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,508.536741131279,397.0,85142.19878279869,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025522009427351222,56761.46585519912,10,5,10,10_1,10_3,10_0_1 +16854,2,87.0,0.0,2,300,350.0,0.0,0.0,0,75,2636.7071275915036,0.0,596.8201901802214,2910.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,116873,2,1,2,0,1,,200.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1075.74384085713,350.0,33673.87164809765,0,5,0,1,125.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08641714948641481,33673.87164809765,9,5,9,9_1,9_0,9_0_1 +16855,2,45.0,0.0,7,111,650.0,,,85,63,0.0,0.0,,870.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,0,,1,,5,116874,2,1,0,0,2,,340.0,,42,2.0,0.0,4.0,4.0,2.5,4,3,127.35220788528336,650.0,15103.765033191103,6,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057601531676912454,6041.506013276441,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16856,2,32.0,0.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1623.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,116875,2,1,0,0,1,,0.0,596.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1989.43813013824,0.0,30729.0,0,1,2,3,99.0,7,5,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05281655764912623,20486.0,5,3,5,5_0,5_2,5_1_0 +16857,2,40.0,0.0,1,111,651.0,2550.0,0.0,37,22,0.0,0.0,1110.0855537352118,3201.0,0.0,4841.1853222464615,71,0,0,0,0,0,0,0,0,0,,1,,1,116876,2,3,2,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.4,3,2,364.442768081472,651.0,219678.41135539734,4,1,1,2,185.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014571299838933188,91532.67139808222,10,5,10,10_1,10_4,10_1_0 +16858,1,44.0,107.0,8,400,0.0,0.0,0.0,77,52,0.0,0.0,0.0,571.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,116877,2,2,3,1,1,1188.0,435.0,365.0,42,1.0,7.0,4.0,3.0,1.8,2,2,973.622191611179,0.0,24076.42976793559,7,1,2,3,78.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0237161408690438,13375.794315519772,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +16859,2,45.0,0.0,7,111,298.0,,,0,46,0.0,0.0,,321.0,31.86855218411998,,31,0,0,0,0,0,0,0,0,2,60.0,2,,5,116878,2,2,0,0,2,,340.0,383.0,12,1.0,0.0,2.0,1.0,1.0,1,1,144.4791670445129,298.0,24150.27602112947,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013291773548225779,24150.27602112947,6,3,6,6_0,6_2,6_0_0 +16860,2,51.0,0.0,6,111,2500.0,0.0,0.0,0,37,0.0,331.081819252556,4263.001358430153,2750.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,4,116879,2,2,2,0,1,,410.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,616.254887397781,2500.0,74395.39687795416,0,1,0,1,133.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03696465259149544,74395.39687795416,10,5,10,10_1,10_4,10_0_0 +16861,2,41.0,0.0,9,112,1900.0,0.0,0.0,43,42,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,116880,2,1,1,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,222.27112374256,1900.0,58085.382454282866,1,1,1,2,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03271046724183023,38723.58830285524,9,5,9,9_1,9_0,9_0_0 +16862,2,27.0,0.0,7,111,0.0,,,0,54,0.0,0.0,,2553.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,2,,5,116881,2,2,0,0,2,,0.0,560.0,12,1.0,0.0,2.0,1.0,1.0,1,1,133.93778080778014,0.0,12863.181769059129,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.19847344504926,12863.181769059129,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +16863,2,23.0,0.0,6,221,792.0,,,0,65,0.0,0.0,,1056.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,116882,1,2,0,0,2,,400.0,,22,2.0,1.0,4.0,3.0,2.0,3,3,123.62886201831107,792.0,18289.789441578367,0,2,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05773713269762332,9144.894720789183,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +16864,2,26.0,0.0,2,111,756.0,1260.0,0.0,52,47,0.0,0.0,1289.1316107892783,2016.0,0.0,2392.115100404134,31,2,2,2,2,2,2,2,1,2,20.0,1,,2,116883,1,1,3,0,2,,660.0,613.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1506.92363158137,756.0,36131.06622494165,4,1,2,3,65.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.05579685878764171,20072.81456941203,5,3,5,5_1,5_3,5_0_1 +16865,1,20.0,257.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1484.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,,1,116884,2,1,0,0,1,,130.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1479.3437005966,0.0,10829.849499144908,0,1,2,3,43.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.1370286817113361,10829.849499144908,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +16866,2,68.0,0.0,2,211,660.0,1850.0,0.0,77,75,0.0,556.2174563442941,1125.4323586255605,2930.0,0.0,3512.2324886886095,10,0,0,0,0,0,0,0,0,0,,1,,2,116885,2,1,2,0,1,,540.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1463.91704751036,660.0,76775.97313311684,5,5,0,1,100.0,2,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03816298094873854,51183.98208874456,10,5,10,10_1,10_1,10_0_1 +16867,2,48.0,0.0,1,212,1200.0,0.0,0.0,0,47,0.0,1589.1927324122687,2046.2406520464733,2472.0,99.7624242285495,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,116886,1,2,1,0,1,,50.0,380.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1118.59296638257,1200.0,23441.513954386817,0,1,2,3,70.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10545393974169458,23441.513954386817,6,3,6,6_1,6_0,6_1_0 +16868,2,51.0,0.0,1,111,529.0,1488.0,0.0,65,45,0.0,0.0,902.0510874438204,2017.0,0.0,2824.974023334406,42,2,1,2,2,1,2,2,2,3,30.0,2,,1,116887,2,2,0,0,1,,0.0,750.0,43,3.0,0.0,4.0,4.0,2.5,4,3,1493.22069535909,529.0,52607.511326824075,1,1,2,3,91.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.038340532542385265,21043.00453072963,5,3,5,5_0,5_3,5_1_0 +16869,2,73.0,0.0,7,111,420.0,,,0,77,0.0,0.0,,620.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,5,116888,2,2,0,0,2,,290.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,85.35187290807298,420.0,13415.988361903914,0,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0462135165352822,13415.988361903914,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +16870,1,44.0,156.0,6,111,687.0,998.0,0.0,0,52,0.0,0.0,1171.472773296606,1685.0,0.0,1894.7070398439093,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,116889,2,2,0,0,1,,0.0,434.0,32,1.0,0.0,3.0,3.0,1.8,2,1,902.946217486496,687.0,21018.552634260337,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08016727075933108,11676.973685700186,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +16871,2,55.0,0.0,5,111,2800.0,0.0,0.0,65,52,0.0,0.0,4774.561521441771,2800.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,3,116890,1,2,3,0,1,,600.0,650.0,43,2.0,5.0,5.0,4.0,2.3,3,3,230.985141269099,2800.0,32534.429625691548,4,1,2,3,102.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.08606267367259811,14145.404185083282,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +16872,2,77.0,0.0,7,111,0.0,0.0,1260.0,72,74,0.0,0.0,794.2010459225771,1260.0,0.0,1507.882505931498,50,0,0,0,0,0,0,0,0,0,,1,,5,116891,2,1,2,0,1,,160.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,702.830328719876,0.0,64418.17282952836,5,5,0,1,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019559697902863122,42945.448553018905,9,5,9,9_1,9_2,9_0_0 +16873,2,70.0,0.0,2,111,173.0,191.0,0.0,0,77,0.0,0.0,294.9996940033666,364.0,0.0,362.6142731564997,71,2,1,2,2,1,2,2,2,0,,2,,2,116892,2,2,0,1,1,578.0,332.0,359.0,11,0.0,5.0,3.0,1.0,1.0,1,1,443.749552106918,173.0,16824.980609251023,0,5,2,3,73.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021634497444820756,16824.980609251023,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +16874,1,73.0,140.0,1,112,500.0,0.0,0.0,0,90,0.0,1589.1927324122687,852.6002716860306,1718.0,24.940606057137376,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,116893,2,2,4,0,2,,100.0,483.0,11,0.0,5.0,3.0,1.0,1.0,1,1,845.759175869849,500.0,12840.73772607746,0,5,2,3,50.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.13379293593942193,12840.73772607746,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +16875,2,55.0,0.0,5,120,700.0,0.0,0.0,21,62,0.0,1125.6781854586902,1193.6403803604428,1670.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,3,116894,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,3.0,2.0,3,3,281.906606634115,700.0,73190.89004206132,1,1,0,1,160.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02281704729974297,36595.44502103066,9,5,9,9_1,9_0,9_0_0 +16876,2,65.0,0.0,7,111,120.0,,,75,77,0.0,0.0,,258.0,191.2113131047199,,41,0,0,0,0,0,0,0,0,0,,1,,5,116895,2,2,0,0,2,,480.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,115.92963735660148,120.0,59813.174796137784,5,5,0,1,118.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0043134309603084205,39875.449864091854,9,5,9,9_1,9_3,9_0_0 +16877,1,29.0,434.0,2,112,900.0,960.0,0.0,85,46,0.0,0.0,1534.680489034855,1860.0,0.0,1822.5638860221975,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,116896,2,1,1,0,1,,500.0,590.0,42,1.0,0.0,3.0,4.0,2.1,2,2,811.755635254764,900.0,18533.121720149138,6,1,2,3,60.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10036085814824251,8825.296057213875,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +16878,2,47.0,0.0,2,111,968.0,,,54,21,0.0,0.0,,1076.0,149.64363634282427,,60,0,0,0,0,0,0,0,0,0,,1,,2,116897,2,2,0,0,1,,150.0,,43,3.0,0.0,5.0,5.0,2.8,4,3,173.19071423485798,968.0,66128.0,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0162714735059279,23617.14285714286,6,3,6,6_1,6_2,6_0_1 +16879,2,70.0,0.0,2,120,2000.0,0.0,0.0,77,75,0.0,529.7309108040896,3410.4010867441225,2400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,116898,1,1,2,0,1,,136.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,358.050151565908,2000.0,29673.090760864194,5,5,0,1,133.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08088136215204644,19782.060507242797,5,3,5,5_1,5_0,5_0_1 +16880,1,43.0,250.0,7,300,240.0,0.0,0.0,0,64,0.0,0.0,409.2481304092947,744.0,698.3369695998466,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,116899,2,1,1,0,2,,140.0,430.0,32,1.0,0.0,3.0,3.0,1.8,2,1,2423.17731935999,240.0,15314.149970493696,0,1,2,3,52.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.048582520181237,8507.861094718719,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +16881,0,35.0,0.0,2,112,1750.0,1450.0,0.0,22,37,0.0,529.7309108040896,2984.100950901107,3600.0,0.0,2752.830869512694,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,116900,2,1,2,0,1,,490.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,690.870803155343,1750.0,53786.92417121011,1,1,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06693076533881685,22411.21840467088,6,3,6,6_1,6_1,6_0_1 +16882,2,66.0,0.0,2,111,220.0,1300.0,0.0,0,77,0.0,0.0,375.14411954185346,1520.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,0,,1,,2,116901,2,2,5,0,1,,200.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,887.762127887989,220.0,19853.778131094063,0,5,0,1,84.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07655973537950678,13235.852087396042,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +16883,2,68.0,0.0,2,221,550.0,2034.0,0.0,0,86,0.0,0.0,937.8602988546337,2584.0,0.0,3861.5572335095308,71,2,2,2,2,1,2,2,2,0,,1,,2,116902,1,3,3,0,2,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,671.207000031655,550.0,18461.791166069706,0,6,0,1,90.0,1,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.13996475080646806,18461.791166069706,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +16884,2,35.0,0.0,9,120,1600.0,0.0,0.0,34,63,0.0,0.0,2728.320869395298,1670.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,2,36.0,1,2006.0,6,116903,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,764.277480358651,1600.0,37920.05449567326,1,1,1,2,118.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044040021097294296,18057.16880746346,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +16885,2,35.0,0.0,7,211,0.0,,,0,34,0.0,0.0,,380.0,0.0,,10,0,0,0,0,0,0,0,0,2,4.0,2,,5,116904,2,1,0,0,2,,396.0,630.0,12,1.0,0.0,3.0,1.0,1.0,1,1,116.91680081582163,0.0,35673.32159314726,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010652218045010894,35673.32159314726,9,5,9,9_0,9_2,9_0_0 +16886,1,70.0,200.0,7,111,600.0,,,63,77,0.0,0.0,,738.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,,5,116905,2,2,0,0,2,,300.0,137.0,42,1.0,0.0,4.0,2.0,1.5,2,2,35.07887025838954,600.0,18732.96875,4,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.039395784504258034,12488.645833333334,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +16887,2,32.0,0.0,2,111,460.0,200.0,0.0,52,65,0.0,0.0,784.3922499511482,660.0,0.0,379.7008095879578,50,2,1,2,1,2,2,2,2,2,20.0,2,,2,116906,1,3,0,1,2,274.0,270.0,233.0,43,2.0,0.0,3.0,3.0,1.8,2,2,290.323924656832,460.0,41200.820878601306,4,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.016019098307402602,22889.34493255628,6,3,6,6_0,6_3,6_0_1 +16888,2,32.0,0.0,1,111,1000.0,0.0,0.0,0,62,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,43,2,2,2,1,2,2,2,2,2,5.0,2,,1,116907,1,3,0,0,1,,160.0,530.0,12,1.0,0.0,4.0,1.0,1.0,1,1,428.532318286884,1000.0,24199.17301301948,0,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.043803149778288114,24199.17301301948,7,4,7,7_0,7_3,7_1_0 +16889,1,33.0,426.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,742.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,116908,1,2,0,1,1,504.0,0.0,398.0,42,1.0,0.0,4.0,4.0,2.1,2,2,276.467767594667,0.0,17485.51412302165,6,1,2,3,81.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.042435126286797215,8326.435296676977,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +16890,0,52.0,0.0,7,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,8,,5,116909,2,1,0,1,1,,0.0,,43,2.0,3.0,3.0,2.0,1.5,2,2,369.228756999216,0.0,59391.923966692535,1,1,5,0,50.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008923772200025515,39594.61597779502,9,5,9,9_0,9_3,9_0_0 +16891,2,46.0,0.0,7,111,300.0,,,85,63,0.0,0.0,,388.0,121.93185183489385,,31,0,0,0,0,0,0,0,0,3,45.0,1,,5,116910,2,1,0,0,2,,350.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,114.46399252258698,300.0,50534.61373865816,6,1,1,2,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007677905722334359,24064.10178031341,6,3,6,6_1,6_2,6_0_0 +16892,2,38.0,0.0,9,111,250.0,832.0,0.0,54,37,0.0,0.0,426.3001358430153,1082.0,0.0,1579.5553678859044,20,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,116911,2,2,1,0,1,,364.0,975.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1429.53836588864,250.0,67105.66273944876,1,1,2,3,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016123825558523767,37280.9237441382,9,5,9,9_1,9_4,9_0_0 +16893,2,72.0,0.0,7,111,330.0,900.0,0.0,0,77,0.0,0.0,562.7161793127802,1230.0,0.0,1708.65364314581,70,0,0,0,0,0,0,0,0,0,,1,,5,116912,2,2,2,0,1,,290.0,490.0,11,0.0,4.0,3.0,1.0,1.0,1,1,440.961930478525,330.0,18233.42334786076,0,5,2,3,45.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06745853351473408,18233.42334786076,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +16894,2,53.0,0.0,9,111,589.0,0.0,0.0,0,46,0.0,0.0,1004.363120046144,589.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,116913,2,1,0,0,1,,0.0,,32,1.0,2.0,3.0,2.0,1.5,2,2,942.420084638796,589.0,30480.442632484457,0,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01932386635921995,20320.29508832297,5,3,5,5_0,5_4,5_0_0 +16895,2,61.0,0.0,5,111,320.0,960.0,0.0,77,75,0.0,0.0,545.6641738790596,1280.0,0.0,1822.5638860221975,71,0,0,0,0,0,0,0,0,0,,2,,3,116914,2,1,0,1,1,417.0,0.0,468.0,41,0.0,4.0,5.0,2.0,1.5,2,2,1149.7428310786,320.0,31360.9487477144,5,5,2,3,98.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04081509173389682,20907.299165142933,5,3,5,5_0,5_3,5_0_0 +16896,1,25.0,327.0,1,111,760.0,0.0,0.0,43,62,0.0,0.0,1295.9524129627664,760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,116915,2,2,0,0,1,,88.0,612.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2041.1624592308,760.0,22354.514904373453,1,2,2,3,66.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03399760644554685,14903.00993624897,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +16897,2,47.0,0.0,1,112,610.0,0.0,0.0,54,65,0.0,476.7578197236806,1040.1723314569574,1100.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116916,2,1,4,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1922.08480201006,610.0,28459.376678687804,1,4,1,2,100.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03865158441167653,13552.084132708478,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +16899,1,36.0,465.0,1,111,450.0,0.0,0.0,0,85,0.0,0.0,767.3402445174275,720.0,374.10909085706066,0.0,50,2,2,2,1,2,2,2,2,0,,2,,1,116918,1,3,0,0,2,,0.0,430.0,31,0.0,0.0,2.0,5.0,2.4,2,1,480.746097207885,450.0,14957.004337841008,0,6,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,1,0.04813798162633478,6232.085140767087,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +16900,1,45.0,172.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1775.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,116919,2,1,2,0,2,,190.0,,32,1.0,0.0,3.0,3.0,2.0,3,1,303.274517848582,0.0,31381.750351903116,0,1,1,2,68.0,4,4,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.056561535927595476,15690.875175951558,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +16901,2,58.0,0.0,2,112,500.0,0.0,0.0,0,56,0.0,0.0,852.6002716860306,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,116920,2,2,0,0,1,,140.0,,12,1.0,3.0,1.0,1.0,1.0,1,1,1507.96572697574,500.0,13946.476264927976,0,1,1,2,17.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03585134986802217,13946.476264927976,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +16902,0,52.0,0.0,1,111,220.0,,,0,85,0.0,0.0,,264.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,1,116921,1,3,0,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,80.95183756499117,220.0,10598.0,0,7,0,1,75.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02491036044536705,10598.0,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +16903,2,44.0,0.0,5,112,2100.0,0.0,0.0,46,37,0.0,364.19000117781155,3580.9211410813286,2375.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,3,116922,2,1,1,0,1,,480.0,,43,2.0,0.0,9.0,5.0,2.4,2,2,706.678381951661,2100.0,53349.36455256004,1,1,1,2,210.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04451786858042403,22228.901896900017,6,3,6,6_1,6_1,6_0_0 +16904,2,83.0,0.0,2,112,420.0,,,86,71,0.0,0.0,,680.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,1,,2,116923,2,1,0,0,2,,342.0,,41,0.0,7.0,4.0,2.0,1.5,2,2,96.40689464802085,420.0,9387.72950707444,5,5,0,1,65.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07243498009689808,6258.486338049627,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +16905,2,63.0,0.0,1,111,100.0,700.0,0.0,0,78,0.0,0.0,170.52005433720612,800.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,1,116924,2,1,2,0,2,,44.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,347.955315841129,100.0,11769.723187134616,0,5,0,1,72.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06797101234075524,11769.723187134616,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +16906,2,55.0,0.0,1,112,4000.0,1200.0,0.0,54,31,0.0,0.0,6820.802173488245,5200.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,0,,1,,1,116925,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,207.491195033481,4000.0,42151.10908200606,1,1,0,1,200.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12336567443298506,23417.2828233367,6,3,6,6_1,6_0,6_1_0 +16907,2,40.0,0.0,1,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,713.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,5.0,1,,1,116926,2,2,3,0,1,,744.0,745.0,32,1.0,0.0,2.0,3.0,1.6,2,1,1545.0309921472,0.0,31823.123915066066,0,1,2,3,58.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022405091401552925,19889.45244691629,5,3,5,5_1,5_3,5_1_0 +16908,2,66.0,0.0,2,211,560.0,1120.0,0.0,78,75,0.0,0.0,954.9123042883542,1680.0,0.0,2126.324533692564,44,0,0,0,0,0,0,0,0,0,,1,,2,116927,2,1,2,0,1,,359.0,,41,0.0,1.0,15.0,2.0,1.5,2,2,1158.44414860642,560.0,48415.71865180032,5,5,0,1,200.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034699474608284674,32277.14576786688,8,4,8,8_1,8_1,8_0_1 +16909,0,55.0,0.0,6,211,700.0,,,0,81,0.0,0.0,,760.0,83.13535352379125,,33,0,0,0,0,0,0,0,0,0,,1,,4,116928,2,1,0,0,2,,900.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,57.79206803667309,700.0,2007.41141687641,0,4,5,0,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.37859702979202037,2007.41141687641,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16910,2,56.0,0.0,7,111,1115.0,0.0,0.0,56,48,0.0,741.6232751257254,1901.2986058598483,2388.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,1,,5,116929,2,1,2,0,1,,540.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1604.54698735711,1115.0,40612.74666858962,1,1,0,1,110.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058799273525789564,20306.37333429481,5,3,5,5_1,5_2,5_0_0 +16911,1,28.0,309.0,9,211,0.0,,,85,85,0.0,0.0,,413.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,116930,2,2,0,0,2,,220.0,570.0,41,0.0,0.0,4.0,2.0,1.5,2,2,118.69614029589613,0.0,25250.96281648891,7,7,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.016355811974437286,16833.97521099261,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +16912,1,23.0,300.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1296.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,116931,2,2,0,0,1,,0.0,750.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1181.85632493484,0.0,10324.354897040055,0,7,3,4,22.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12552842409277865,10324.354897040055,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +16913,2,45.0,0.0,2,111,420.0,0.0,0.0,0,85,0.0,662.163638505112,716.1842282162656,995.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116932,2,1,2,0,1,,0.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,962.476353728274,420.0,7313.393198788794,0,7,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13605175777569115,4875.595465859195,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +16914,2,43.0,0.0,2,112,0.0,0.0,0.0,0,65,0.0,0.0,0.0,1239.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,116933,2,1,2,0,1,,120.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,254.935930343111,0.0,47045.95908490892,0,1,1,2,90.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02633594944390108,47045.95908490892,10,5,10,10_1,10_0,10_0_1 +16915,1,43.0,192.0,8,111,115.0,,,67,46,0.0,0.0,,185.0,96.99124577775646,,43,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,116934,2,1,0,0,2,,115.0,600.0,43,2.0,0.0,3.0,6.0,2.6999999999999997,2,2,106.25423965120919,115.0,55565.0,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0033294339962206426,20579.62962962963,5,3,5,5_1,5_3,5_0_0 +16916,1,40.0,352.0,9,112,240.0,530.0,0.0,0,63,0.0,0.0,409.2481304092947,770.0,0.0,1006.2071454080882,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,116935,2,2,0,1,1,720.0,0.0,319.0,32,1.0,0.0,3.0,3.0,2.0,3,2,649.367317248254,240.0,10659.38180919742,0,4,2,3,60.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07223683453533933,5329.69090459871,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16917,2,39.0,0.0,1,112,640.0,0.0,0.0,64,54,0.0,0.0,1091.3283477581192,790.0,207.83838380947813,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,116936,1,1,1,0,2,,80.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,928.108251038694,640.0,60361.698756164755,1,1,1,2,110.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013087769500842901,28743.666074364166,8,4,8,8_1,8_0,8_1_0 +16918,2,89.0,0.0,2,221,1880.0,0.0,0.0,75,74,0.0,0.0,3205.777021539475,1984.0,144.10127944123818,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,116937,2,1,2,0,1,,360.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1876.06793748903,1880.0,30779.807747346273,5,5,0,1,80.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06445784250134096,20519.87183156418,5,3,5,5_1,5_1,5_0_1 +16920,2,52.0,0.0,2,111,400.0,600.0,0.0,77,52,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,42,0,0,0,0,0,0,0,0,3,40.0,1,,2,116939,2,3,4,0,1,,120.0,655.0,42,1.0,3.0,4.0,2.0,1.5,2,2,469.543371019708,400.0,48748.534515170795,5,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02051343717191734,32499.023010113862,8,4,8,8_1,8_3,8_0_1 +16921,2,87.0,0.0,2,111,201.0,1517.0,0.0,0,78,0.0,0.0,342.74530921778427,1718.0,0.0,2880.03064072466,70,0,0,0,0,0,0,0,0,0,,1,,2,116940,2,1,2,0,1,,175.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1088.07723246409,201.0,16245.91132500151,0,5,0,1,90.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10574968468257599,16245.91132500151,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +16922,2,80.0,0.0,2,111,109.0,1105.0,0.0,0,77,0.0,0.0,185.86685922755467,1214.0,0.0,2097.846972973467,50,0,0,0,0,0,0,0,0,0,,1,,2,116941,2,1,2,0,1,,177.0,392.0,11,0.0,5.0,5.0,1.0,1.0,1,1,202.430284875509,109.0,19730.561052422327,0,5,2,3,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.061528914295671124,19730.561052422327,5,3,5,5_1,5_3,5_0_1 +16923,2,59.0,0.0,8,120,105.0,0.0,0.0,75,43,0.0,0.0,179.0460570540664,105.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,116942,2,1,2,0,1,,478.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,2783.09285137299,105.0,33021.79067576992,5,1,0,1,100.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003179718538917541,16510.89533788496,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +16925,2,74.0,0.0,2,400,1800.0,0.0,0.0,78,75,0.0,105.94618216081791,3069.36097806971,1940.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116944,2,1,1,0,1,,700.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2026.43012405797,1800.0,42735.327404933785,5,5,0,1,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04539569760675397,28490.218269955858,8,4,8,8_1,8_1,8_0_1 +16926,2,55.0,0.0,5,111,390.0,0.0,0.0,0,54,0.0,0.0,665.0282119151038,1527.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,116945,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1783.26063464906,390.0,38931.460132448636,0,1,1,2,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.039222777537883155,38931.460132448636,9,5,9,9_0,9_3,9_0_0 +16927,1,22.0,377.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1348.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,3.0,2,,1,116946,2,1,0,0,1,,0.0,485.0,32,1.0,0.0,2.0,2.0,1.3,1,1,393.905873129874,0.0,11003.92338727898,0,1,2,3,50.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12250176164969918,8464.55645175306,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +16928,1,63.0,308.0,2,111,235.0,157.0,0.0,0,86,0.0,0.0,400.72212769243436,392.0,0.0,298.0651355265469,71,0,0,0,0,0,0,0,0,0,,2,,2,116947,2,1,0,1,1,612.0,0.0,313.0,11,0.0,0.0,2.0,1.0,1.0,1,1,278.643244950271,235.0,6214.1172022684295,0,6,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06308217036152819,6214.1172022684295,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +16929,1,37.0,338.0,1,112,0.0,0.0,0.0,52,47,0.0,0.0,0.0,884.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,116948,2,1,1,0,2,,603.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1096.83764775653,0.0,17547.645654770564,1,1,1,2,57.0,8,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05037712849869821,9748.69203042809,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +16930,2,79.0,0.0,7,111,798.0,0.0,0.0,77,75,0.0,691.2988385993369,1360.750033610905,1440.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,116949,2,1,2,0,1,,270.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1079.42066013673,798.0,61099.16382101635,5,5,0,1,85.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02356824398151062,40732.77588067757,9,5,9,9_1,9_2,9_0_0 +16931,2,63.0,0.0,2,111,320.0,,,77,67,0.0,0.0,,590.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,2,116950,2,1,0,0,2,,1042.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,151.63593058539914,320.0,55781.92497488155,7,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01057690282767537,27890.962487440775,7,4,7,7_1,7_2,7_0_1 +16932,2,48.0,0.0,8,111,850.0,0.0,0.0,47,34,0.0,0.0,1449.420461866252,850.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,116951,2,2,2,0,1,,229.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1677.29652261516,850.0,56779.17945917664,1,1,0,1,69.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0149702762191401,31543.988588431464,8,4,8,8_1,8_3,8_0_0 +16933,2,54.0,0.0,1,112,624.0,0.0,0.0,85,62,0.0,66.2163638505112,1064.0451390641663,803.0,178.7410100761512,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116952,2,2,2,0,1,,186.0,437.0,42,1.0,1.0,5.0,2.0,1.5,2,2,1784.22468242232,624.0,26241.171753462928,7,1,2,3,70.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030600767661757778,17494.114502308617,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +16934,2,41.0,0.0,6,400,1320.0,0.0,0.0,0,46,0.0,0.0,2250.864717251121,1410.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,116953,2,1,2,0,1,,260.0,418.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1787.83553168933,1320.0,16859.4357574432,0,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08363269211886318,16859.4357574432,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +16935,0,58.0,0.0,7,211,330.0,,,52,68,0.0,0.0,,594.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,6.0,1,,5,116954,1,1,0,0,1,,972.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,97.20481162709775,330.0,37946.83145407743,1,1,5,0,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015653480863582724,18973.415727038715,5,3,5,5_1,5_2,5_0_0 +16936,2,73.0,0.0,5,111,350.0,,,0,86,0.0,0.0,,488.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,116955,1,2,0,0,2,,300.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,108.46378958030444,350.0,9439.584713375796,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05169718952874155,9439.584713375796,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +16937,1,41.0,384.0,5,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,642.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,3,116956,1,1,0,0,1,,0.0,539.0,43,3.0,0.0,5.0,5.0,3.0,5,4,1189.27487816508,0.0,23898.848155874442,4,1,2,3,120.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02686321934064398,7966.282718624814,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +16938,1,63.0,253.0,7,111,180.0,,,0,86,0.0,0.0,,260.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,2,,5,116957,2,2,0,0,2,,200.0,330.0,11,0.0,0.0,1.0,1.0,1.0,1,1,139.0365499946248,180.0,10627.95203038527,0,5,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024463791260692664,10627.95203038527,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +16939,2,51.0,0.0,9,112,468.0,,,85,65,0.0,0.0,,606.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,116958,2,1,0,0,2,,382.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,146.88096156522872,468.0,39640.0,6,1,1,2,125.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015287588294651867,19820.0,5,3,5,5_1,5_1,5_0_0 +16940,2,55.0,0.0,2,111,0.0,0.0,0.0,46,35,0.0,0.0,0.0,1296.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,116959,2,2,2,0,1,,0.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,1013.51955972739,0.0,45469.84490992159,1,1,0,1,56.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028502406431503154,21652.307099962658,6,3,6,6_1,6_4,6_0_1 +16941,2,58.0,0.0,7,111,653.0,0.0,0.0,71,56,0.0,0.0,1113.495954821956,743.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,116960,1,1,2,0,1,,240.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,588.715851031259,653.0,25200.84788519353,5,1,0,1,117.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02948313498755497,16800.565256795686,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +16942,1,47.0,200.0,9,111,800.0,0.0,0.0,21,12,0.0,0.0,1364.160434697649,900.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,2009.0,6,116961,2,1,1,0,1,,500.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,1891.53212899015,800.0,5991.8654394866235,1,1,1,2,184.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.15020364009995374,3328.814133048124,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +16943,2,62.0,0.0,5,111,1460.0,60.0,0.0,77,74,0.0,0.0,2489.592793323209,1520.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,1,,3,116962,2,1,2,0,1,,348.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,669.922128012359,1460.0,62070.212964341525,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024488396726997198,41380.141976227686,9,5,9,9_1,9_4,9_0_0 +16944,1,46.0,350.0,2,111,800.0,160.0,0.0,52,68,0.0,0.0,1364.160434697649,960.0,0.0,303.7606476703662,71,2,2,2,1,1,2,2,2,2,25.0,2,,2,116963,1,2,0,1,2,740.0,0.0,497.0,43,3.0,2.0,4.0,5.0,2.5999999999999996,3,3,186.431612671949,800.0,47956.03437532681,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.020018335804970484,18444.62860589493,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +16945,2,72.0,0.0,7,111,1000.0,,,77,78,0.0,0.0,,1360.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,0,,1,,5,116964,1,2,0,0,2,,1200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,111.61816868814631,1000.0,40831.75174884325,5,5,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033307412534377204,27221.167832562165,7,4,7,7_1,7_2,7_0_0 +16946,2,60.0,0.0,2,111,522.6,0.0,0.0,54,21,2109.365702073203,0.0,891.1378039662392,2693.0,235.55016831740858,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,116965,2,2,2,0,1,,208.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1668.6807356452,522.6,57708.97106671719,1,1,0,1,120.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046665188275261914,38472.64737781146,9,5,9,9_1,9_2,9_0_1 +16947,2,57.0,0.0,6,120,664.0,0.0,0.0,68,47,0.0,1430.2734591710418,1132.2531607990486,1834.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,116966,2,1,2,0,1,,257.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1435.77864484455,664.0,31463.325851300884,1,1,0,1,120.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0582900869624427,20975.550567533923,5,3,5,5_1,5_1,5_0_0 +16948,2,53.0,0.0,8,111,1022.0,0.0,0.0,52,52,0.0,0.0,1742.7149553262466,1102.0,110.84713803172167,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,116967,2,1,2,0,1,,610.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1582.21435691774,1022.0,31627.34666977114,4,1,1,2,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03484326432774306,21084.897779847426,5,3,5,5_1,5_2,5_0_0 +16949,2,41.0,0.0,2,111,1200.0,1200.0,0.0,46,47,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,116968,2,2,1,0,1,,600.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,856.803784206006,1200.0,28447.254564885454,1,1,1,2,120.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08436666513901475,15804.030313825251,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +16950,2,59.0,0.0,6,211,2014.0,0.0,0.0,0,62,0.0,0.0,3434.2738943513314,2074.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,116969,2,1,2,0,1,,240.0,,12,1.0,4.0,6.0,1.0,1.0,1,1,1584.54639609459,2014.0,29172.452069602292,0,1,0,1,98.0,3,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07109446936622475,29172.452069602292,8,4,8,8_1,8_1,8_0_0 +16951,2,41.0,0.0,2,112,1300.0,0.0,0.0,63,46,0.0,0.0,2216.7607063836795,1400.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,116970,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1106.90407260793,1300.0,46721.23382313945,1,1,1,2,125.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029964962083399157,25956.24101285525,7,4,7,7_1,7_0,7_0_1 +16952,2,43.0,0.0,9,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,828.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,116971,2,1,1,0,1,,154.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,679.736719084565,0.0,6315.336469022434,0,1,1,2,50.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13110940391876982,6315.336469022434,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +16954,2,42.0,0.0,2,111,0.0,0.0,3800.0,55,47,0.0,0.0,2395.2095035760267,3800.0,0.0,4547.582160745787,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,116973,1,2,1,0,2,,800.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1680.27260187127,0.0,50032.38560231506,4,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07595080574819062,21753.21113144133,6,3,6,6_1,6_2,6_0_1 +16955,2,87.0,0.0,5,111,240.0,0.0,0.0,0,77,0.0,0.0,409.2481304092947,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,116974,2,2,0,1,1,1032.0,46.0,317.0,11,0.0,7.0,3.0,1.0,1.0,1,1,1613.39099109985,240.0,20881.4203243688,0,5,2,3,65.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01149347105090921,20881.4203243688,5,3,5,5_0,5_3,5_0_0 +16956,2,49.0,0.0,5,111,509.0,0.0,0.0,0,38,0.0,0.0,867.9470765763791,509.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,116975,2,1,0,0,2,,0.0,850.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2105.48994916416,509.0,60815.14457282069,0,1,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008369625749890607,60815.14457282069,10,5,10,10_0,10_3,10_0_0 +16957,0,78.0,0.0,2,120,1500.0,0.0,0.0,0,71,0.0,0.0,2557.8008150580918,1525.0,34.63973063491302,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116976,1,2,1,0,2,,100.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,549.887988750339,1500.0,13466.070702160016,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11324758600557351,13466.070702160016,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +16958,2,46.0,0.0,5,111,1000.0,0.0,0.0,0,31,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,10,2,1,1,2,2,2,2,1,2,60.0,2,,3,116977,2,2,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2037.90445525053,1000.0,55993.13874388055,0,1,1,2,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.017859331025790893,55993.13874388055,10,5,10,10_0,10_3,10_0_0 +16959,2,59.0,0.0,1,111,1100.0,0.0,0.0,0,42,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,41,2,2,2,1,1,2,2,2,1,1.0,8,,1,116978,1,2,0,0,2,,221.0,540.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2210.84830755984,1100.0,30154.0,0,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0.03647940571731777,30154.0,8,4,8,8_0,8_3,8_1_0 +16960,2,50.0,0.0,2,111,1056.0,25.0,0.0,0,37,0.0,0.0,1800.6917738008965,1081.0,0.0,47.462601198494724,10,2,2,2,2,2,2,2,1,2,30.0,8,,2,116979,2,3,0,0,1,,25.0,700.0,12,1.0,2.0,3.0,1.0,1.0,1,1,2205.63667954134,1056.0,25681.077218089966,0,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.042093249859415344,25681.077218089966,7,4,7,7_0,7_3,7_0_1 +16961,1,34.0,125.0,6,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,710.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,4,116980,1,2,0,0,1,,228.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1589.93213113519,0.0,22044.659819839224,0,1,1,2,80.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03220734662283295,13777.912387399514,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +16962,2,60.0,0.0,2,111,650.0,,,77,74,0.0,0.0,,870.0,304.8296295872346,,30,0,0,0,0,0,0,0,0,0,,1,,2,116981,2,1,0,0,2,,230.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,87.17934639004365,650.0,99267.16616912505,5,5,0,1,108.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008764227222098289,66178.1107794167,10,5,10,10_1,10_2,10_0_1 +16963,2,26.0,0.0,8,111,220.0,920.0,0.0,34,38,0.0,0.0,375.14411954185346,1140.0,0.0,1746.6237241046058,12,0,0,0,0,0,0,0,0,2,30.0,2,2003.0,6,116982,2,1,0,0,1,,0.0,790.0,43,2.0,0.0,3.0,2.0,1.5,2,2,950.605989378581,220.0,44060.02008108415,1,1,2,3,72.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025873796650615347,29373.346720722766,8,4,8,8_0,8_2,8_0_0 +16964,0,41.0,0.0,2,112,0.0,0.0,0.0,0,22,0.0,0.0,0.0,755.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,2,116983,2,1,1,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,1824.57816724601,0.0,42772.0,0,1,5,0,65.0,6,0,9,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01765173477976246,28514.666666666668,8,4,8,8_1,8_0,8_0_1 +16965,2,65.0,0.0,7,111,480.0,,,75,75,0.0,0.0,,520.0,55.423569015860835,,33,0,0,0,0,0,0,0,0,0,,1,,5,116984,2,1,0,0,2,,300.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,110.66075296658163,480.0,54150.02283997374,5,5,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009602950704872725,36100.01522664916,9,5,9,9_1,9_2,9_0_0 +16966,2,59.0,0.0,1,111,1729.5,0.0,0.0,54,21,0.0,0.0,2949.1443397619796,1730.0,0.0,0.0,31,2,2,2,1,1,2,2,2,0,,1,,1,116985,2,2,1,0,1,,0.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,362.591424999546,1729.5,6164.165074739528,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.2806543917990552,3082.082537369764,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +16967,1,83.0,197.0,2,111,180.0,120.0,0.0,0,77,0.0,0.0,306.936097806971,882.0,0.0,227.8204857527747,71,2,1,2,2,2,2,2,1,0,,2,,2,116986,2,2,0,1,1,554.0,0.0,263.0,11,0.0,6.0,3.0,1.0,1.0,1,1,371.100804612026,180.0,11708.119266055046,0,5,2,3,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07533233817980935,11708.119266055046,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +16968,2,66.0,0.0,7,111,600.0,,,86,78,0.0,0.0,,780.0,249.40606057137379,,60,0,0,0,0,0,0,0,0,0,,1,,5,116987,2,1,0,0,2,,500.0,,41,0.0,0.0,4.0,3.0,2.0,3,3,53.430961529939076,600.0,24106.100261532672,6,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032356954942425326,12053.050130766336,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +16969,2,56.0,0.0,2,111,250.0,0.0,0.0,0,34,0.0,0.0,426.3001358430153,756.0,0.0,0.0,10,2,2,1,2,1,2,2,2,0,,2,,2,116988,1,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,102.27059806221,250.0,59924.8378267263,0,1,0,1,84.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012615803853920924,59924.8378267263,10,5,10,10_0,10_3,10_0_1 +16970,2,43.0,0.0,2,111,708.0,,,86,52,0.0,0.0,,1148.0,609.6592591744692,,70,2,2,2,1,1,2,2,2,0,,1,,2,116989,1,2,0,0,2,,318.0,,42,1.0,1.0,4.0,3.0,1.8,2,2,109.05462404339767,708.0,14791.077821510922,6,4,0,1,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07761435737498748,8217.265456394956,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +16971,2,49.0,0.0,1,111,1400.0,0.0,0.0,67,67,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,20.0,2,,1,116990,2,1,0,0,1,,300.0,590.0,43,3.0,1.0,3.0,3.0,2.0,3,3,1444.86676327227,1400.0,10880.767362111403,4,1,2,3,75.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0.12866739572753177,5440.383681055701,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +16972,2,89.0,0.0,2,111,0.0,0.0,0.0,0,71,0.0,39.72981831030672,0.0,1702.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,116991,2,3,1,0,1,,85.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,1215.34003680168,0.0,23406.24324705091,0,5,0,1,80.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07271564180699716,15604.162164700605,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +16973,2,56.0,0.0,7,111,750.0,,,0,54,0.0,0.0,,792.0,58.19474746665388,,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,116992,2,1,0,0,2,,500.0,650.0,32,1.0,1.0,4.0,2.0,1.5,2,1,125.1556349072796,750.0,35184.805658183934,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022509716486547707,23456.537105455955,6,3,6,6_1,6_3,6_0_0 +16974,1,66.0,59.0,1,112,1450.0,0.0,0.0,0,77,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,116993,2,1,2,0,2,,97.0,415.0,11,0.0,3.0,3.0,1.0,1.0,1,1,684.743597028456,1450.0,17609.126399874844,0,5,2,3,61.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08234366470390637,17609.126399874844,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +16975,1,24.0,407.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,590.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,116994,2,1,0,0,1,,0.0,834.0,12,1.0,0.0,1.0,1.0,1.0,1,1,640.120141389067,0.0,14262.541268249597,0,1,3,4,19.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0413671020404633,14262.541268249597,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +16976,2,58.0,0.0,6,221,1754.0,0.0,0.0,52,63,0.0,0.0,2990.9217530745955,1808.0,74.82181817141213,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,116995,2,2,2,0,1,,319.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,1681.69207965368,1754.0,30868.326593566675,1,1,0,1,95.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05857136422733095,15434.163296783338,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +16977,2,48.0,0.0,7,300,823.0,0.0,0.0,21,34,942.8864688267217,0.0,1403.3800471952063,1817.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,116996,2,1,2,0,1,,513.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,1120.46873407994,823.0,108168.02828038408,1,1,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016797939547258132,43267.21131215363,9,5,9,9_1,9_0,9_0_0 +16978,2,50.0,0.0,1,111,860.0,240.0,0.0,0,56,0.0,529.7309108040896,1466.4724672999725,1500.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,1,,1,116997,2,1,1,0,2,,180.0,,22,1.0,3.0,3.0,2.0,1.5,2,2,1189.32303236599,860.0,15949.987454940067,0,1,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09404396111518047,10633.324969960044,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +16979,2,45.0,0.0,2,111,176.0,824.0,0.0,0,56,0.0,0.0,300.1152956334828,1000.0,0.0,1564.3673355023861,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,116998,2,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2181.07809837952,176.0,14672.20968623606,0,1,0,1,63.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06815605974729873,14672.20968623606,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +16980,2,58.0,0.0,1,300,900.0,0.0,0.0,52,67,0.0,397.2981831030672,1534.680489034855,1274.0,102.53360267934255,0.0,43,0,0,0,0,0,0,0,0,2,13.0,1,,1,116999,2,3,3,0,1,,600.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,824.747078748828,900.0,30077.38245993648,4,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04235740931568719,20051.588306624322,5,3,5,5_1,5_0,5_1_0 +16981,1,45.0,23.0,2,111,438.0,184.0,0.0,56,47,0.0,0.0,746.8778379969627,622.0,0.0,349.3247448209212,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,117000,1,2,0,1,1,660.0,0.0,380.0,43,2.0,0.0,5.0,5.0,2.4,2,2,282.706915033374,438.0,38613.75364140288,1,1,2,3,88.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016108250075254845,16089.064017251201,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +16982,2,76.0,0.0,5,111,505.0,1088.0,0.0,71,71,0.0,0.0,861.1262744028909,1593.0,0.0,2065.5724041584904,70,0,0,0,0,0,0,0,0,0,,2,,3,117001,2,1,0,0,2,,204.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1067.31313761441,505.0,23037.0,5,5,1,2,99.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06914962885792421,15358.0,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +16983,1,70.0,270.0,2,111,504.0,960.0,0.0,0,86,0.0,0.0,859.4210738595189,1464.0,0.0,1822.5638860221975,70,0,0,0,0,0,0,0,0,0,,2,,2,117002,2,1,0,0,1,,0.0,379.0,11,0.0,1.0,3.0,1.0,1.0,1,1,364.025082282164,504.0,10188.876073761126,0,7,2,3,75.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1436861131101753,10188.876073761126,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +16984,2,55.0,0.0,6,111,6602.4,,,75,37,0.0,0.0,,6822.0,304.8296295872346,,42,0,0,0,0,0,0,0,0,0,,1,,4,117003,2,1,0,0,2,,1500.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,75.57619737908021,6602.4,64852.965980313485,5,4,0,1,117.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10519179650273605,32426.482990156743,8,4,8,8_1,8_3,8_0_0 +16985,1,43.0,358.0,7,111,300.0,,,0,56,0.0,0.0,,552.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,2,,5,117004,1,2,0,0,2,,210.0,424.0,32,1.0,0.0,3.0,2.0,1.3,1,1,85.34939104260977,300.0,9372.0,0,4,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.058898847631242,7209.230769230769,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16986,2,66.0,0.0,6,211,330.0,1089.0,0.0,75,75,0.0,0.0,562.7161793127802,1419.0,0.0,2067.47090820643,20,0,0,0,0,0,0,0,0,0,,1,,4,117005,2,1,2,0,1,,510.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1013.08961077095,330.0,39101.32759087474,5,5,0,1,120.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03629032791027686,26067.551727249825,7,4,7,7_1,7_1,7_0_0 +16987,2,33.0,0.0,6,111,500.0,,,0,54,0.0,0.0,,500.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,,4,117006,2,1,0,0,2,,300.0,1000.0,12,1.0,0.0,4.0,1.0,1.0,1,1,130.17835937642502,500.0,26053.3264879734,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019191407294220465,26053.3264879734,7,4,7,7_1,7_2,7_0_0 +16988,2,47.0,0.0,5,111,600.0,1900.0,0.0,37,45,0.0,132.4327277010224,1023.1203260232367,2600.0,0.0,3607.1576910855993,42,0,0,0,0,0,0,0,0,2,10.0,1,,3,117007,2,1,2,0,2,,900.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,1012.289590292,600.0,68505.83835764896,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037952969591090326,34252.91917882448,9,5,9,9_1,9_4,9_0_0 +16989,2,30.0,0.0,8,112,0.0,0.0,0.0,0,55,0.0,0.0,0.0,867.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,117008,2,2,0,0,1,,85.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2430.19681355391,0.0,20184.428213104467,0,1,1,2,48.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04295390440820672,20184.428213104467,5,3,5,5_0,5_1,5_0_0 +16990,1,48.0,200.0,2,221,720.0,950.0,0.0,68,62,0.0,0.0,1227.744391227884,1970.0,415.67676761895626,1803.5788455427996,50,2,2,2,2,1,2,2,1,4,30.0,1,,2,117009,1,2,5,0,1,,400.0,600.0,43,3.0,0.0,5.0,5.0,2.8,4,3,1413.82456388932,720.0,30353.33423365948,4,1,2,3,100.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,1,0.06490226031957384,10840.476512021243,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +16991,2,54.0,0.0,2,111,623.0,901.0,0.0,52,64,0.0,0.0,1062.339938520794,1524.0,0.0,1710.55214719375,50,2,2,2,2,1,2,2,2,2,10.0,2,,2,117010,1,2,0,0,2,,0.0,366.0,43,4.0,0.0,4.0,4.0,2.5,4,4,1235.21249865235,623.0,51496.30326524299,1,1,2,3,128.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029594357329890346,20598.521306097195,5,3,5,5_0,5_4,5_0_1 +16992,2,52.0,0.0,5,111,393.0,43.0,0.0,55,62,0.0,0.0,670.14381354522,760.0,0.0,81.63567406141092,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,117011,2,2,0,1,1,1078.0,0.0,291.0,43,4.0,0.0,4.0,4.0,2.5,4,4,353.800507952393,393.0,44686.289173560275,1,1,2,3,73.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017007453831043826,17874.51566942411,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +16993,2,60.0,0.0,1,211,1600.0,0.0,0.0,78,63,0.0,0.0,2728.320869395298,1700.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,117012,2,2,0,0,1,,230.0,252.0,42,1.0,1.0,2.0,2.0,1.5,2,2,966.448848803098,1600.0,17888.647046572292,6,1,2,3,77.0,1,3,1,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09503234065573132,11925.764697714862,2,1,2_0,2_0_0,2_1_0,2_1_0_0 +16994,1,60.0,253.0,9,111,0.0,,,0,81,0.0,0.0,,398.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,117013,2,1,0,0,1,,0.0,520.0,12,1.0,6.0,2.0,1.0,1.0,1,1,131.91903329155733,0.0,1320.0,0,4,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.3015151515151515,1320.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +16995,1,59.0,42.0,2,111,330.0,500.0,0.0,85,69,0.0,0.0,562.7161793127802,830.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,117014,1,1,0,1,2,,0.0,362.0,42,2.0,1.0,4.0,5.0,3.0,5,4,367.498453575923,330.0,39337.810208077775,6,1,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.021099293417953514,13112.603402692592,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +16996,2,65.0,0.0,2,111,1200.0,,,86,33,0.0,0.0,,1300.0,138.5589225396521,,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,117015,2,1,0,0,2,,1200.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,108.72511096492461,1200.0,78900.41431543688,6,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016476466077893014,52600.27621029125,10,5,10,10_1,10_3,10_0_1 +16997,2,77.0,0.0,7,112,2360.0,0.0,0.0,77,74,0.0,79.45963662061344,4024.2732823580645,2420.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,117016,2,1,1,0,1,,430.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1053.64728884423,2360.0,101306.07771845532,5,5,0,1,219.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023888004101052462,67537.38514563687,10,5,10,10_1,10_2,10_0_0 +16998,1,61.0,60.0,2,111,280.0,150.0,0.0,54,52,0.0,0.0,477.4561521441771,430.0,0.0,284.77560719096834,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,117017,2,2,0,1,1,650.0,0.0,380.0,43,3.0,0.0,4.0,4.0,2.5,4,3,426.380474425263,280.0,42741.39952545277,1,1,2,3,69.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.010060503511213579,17096.55981018111,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +16999,1,58.0,308.0,2,111,318.0,0.0,0.0,0,72,0.0,0.0,542.2537727923154,318.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,117018,1,1,0,1,1,717.0,0.0,309.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1169.49156279026,318.0,12211.906149733593,0,7,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026040160815266115,12211.906149733593,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +17000,2,61.0,0.0,6,111,850.0,,,0,42,0.0,0.0,,900.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,0,,1,,4,117019,2,1,0,0,2,,130.0,,22,2.0,2.0,5.0,2.0,1.5,2,2,44.18532180862257,850.0,57035.96664164324,0,1,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015779516908246628,38023.97776109549,9,5,9,9_1,9_2,9_0_0 +17001,2,40.0,0.0,9,111,1200.0,,,85,21,0.0,0.0,,1520.0,443.3885521268867,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,117020,2,2,0,0,2,,0.0,500.0,42,1.0,0.0,3.0,7.0,3.1999999999999993,3,2,180.94747326631756,1200.0,46246.026826620175,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03286768841134383,14451.883383318807,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +17002,2,45.0,0.0,1,111,977.0,1890.0,0.0,34,37,0.0,0.0,1665.9809308745037,2867.0,0.0,3588.1726506062014,30,2,2,2,1,2,2,1,2,2,1.0,1,,1,117021,1,1,1,0,1,,800.0,,43,2.0,0.0,9.0,5.0,2.8,4,3,302.775249404102,977.0,77391.4246423127,1,1,1,2,200.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03704544803575701,27639.79451511168,7,4,7,7_1,7_2,7_1_0 +17003,0,40.0,0.0,7,111,800.0,,,81,63,0.0,0.0,,930.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,0,,1,,5,117022,2,2,0,0,2,,780.0,,43,2.0,3.0,5.0,3.0,2.0,3,3,78.93771201912278,800.0,18820.0,4,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049415515409139216,9410.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17004,2,36.0,0.0,9,300,1475.0,0.0,0.0,43,53,0.0,52.973091080408956,2515.17080147379,1515.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,180.0,1,2009.0,6,117023,2,1,1,0,1,,380.0,,43,2.0,3.0,6.0,4.0,2.1,2,2,1718.62781606264,1475.0,43939.51865231365,1,1,1,2,190.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03447921248268447,20923.580310625548,5,3,5,5_1,5_0,5_0_0 +17005,1,41.0,157.0,2,111,50.0,276.0,0.0,0,85,0.0,0.0,85.26002716860306,326.0,0.0,523.9871172313817,50,2,2,2,2,1,2,2,2,0,,2,,2,117024,2,2,0,1,1,,0.0,143.0,11,0.0,0.0,1.0,1.0,1.0,1,1,296.709666239329,50.0,9902.114902985624,0,7,2,3,35.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.032922259860033186,9902.114902985624,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17006,2,60.0,0.0,1,111,100.0,190.0,0.0,0,56,0.0,0.0,170.52005433720612,290.0,0.0,360.7157691085599,60,0,0,0,0,0,0,0,0,3,30.0,1,,1,117025,2,2,2,0,1,,100.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,781.760570186512,100.0,10213.282908138823,0,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028394396063277857,10213.282908138823,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +17007,2,57.0,0.0,1,111,0.0,0.0,0.0,0,43,1940.6164459073468,0.0,0.0,3826.0,0.0,0.0,33,1,2,2,1,2,2,2,2,2,15.0,1,,1,117026,1,1,2,0,2,,137.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,258.734289417719,0.0,29484.84765874278,0,1,0,1,150.0,9,7,3,1,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.12976156581448448,29484.84765874278,8,4,8,8_1,8_3,8_1_0 +17008,0,81.0,0.0,9,111,300.0,,,86,71,0.0,0.0,,542.0,335.31259254595807,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,117027,2,1,0,0,2,,240.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,99.60615190463461,300.0,5095.397845580691,6,5,5,0,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10637049675524043,3396.931897053794,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17009,1,90.0,250.0,6,111,1200.0,0.0,0.0,0,77,0.0,0.0,2046.2406520464733,1344.0,199.524848457099,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,117028,1,2,0,0,1,,0.0,272.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2664.56537190959,1200.0,9727.01922938695,0,5,2,3,36.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1381718251301027,9727.01922938695,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17010,2,48.0,0.0,9,111,0.0,,,0,21,0.0,0.0,,1056.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,117029,2,1,0,0,2,,0.0,450.0,12,1.0,1.0,2.0,1.0,1.0,1,1,134.28787129467594,0.0,8755.248488469739,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12061336710096848,8755.248488469739,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17011,2,60.0,0.0,2,111,594.0,,,0,78,0.0,0.0,,638.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,0,,2,,2,117030,2,2,0,0,2,,150.0,406.0,11,0.0,2.0,3.0,1.0,1.0,1,1,116.64171393374683,594.0,29596.622606956204,0,7,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021556513676329016,29596.622606956204,8,4,8,8_0,8_3,8_0_1 +17012,2,64.0,0.0,2,112,2400.0,0.0,0.0,0,77,0.0,0.0,4092.4813040929466,2532.0,182.89777775234077,0.0,50,2,2,2,1,2,2,2,2,0,,1,,2,117031,1,2,3,0,1,,200.0,,21,1.0,2.0,6.0,2.0,1.5,2,2,2067.30197446077,2400.0,36200.4991743832,0,5,0,1,117.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.06994378690202527,24133.666116255466,6,3,6,6_1,6_0,6_0_1 +17013,1,83.0,225.0,2,111,470.0,0.0,0.0,0,77,0.0,0.0,801.4442553848687,470.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,117032,1,2,0,1,1,516.0,0.0,231.0,11,0.0,1.0,2.0,1.0,1.0,1,1,414.197348705552,470.0,9896.008531717654,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.047493895997927346,9896.008531717654,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +17014,2,59.0,0.0,2,111,779.0,1000.0,0.0,85,62,0.0,0.0,1328.3512232868356,1779.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,117033,2,1,2,0,1,,560.0,664.0,42,1.0,1.0,5.0,4.0,2.5,4,4,301.645124765514,779.0,12383.970737374857,6,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14365344021937757,4953.588294949943,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +17015,0,42.0,0.0,1,111,468.0,,,0,63,0.0,0.0,,600.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,1,117034,2,1,0,0,2,,380.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,113.42517300243382,468.0,5808.329787234043,0,4,5,0,45.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10329991959456612,5808.329787234043,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +17016,2,66.0,0.0,2,112,960.0,0.0,0.0,75,75,0.0,0.0,1636.9925216371787,1035.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117035,2,1,2,0,1,,450.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1445.59831567449,960.0,36062.20761512442,5,5,0,1,130.0,8,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02870040600525862,24041.471743416278,6,3,6,6_1,6_1,6_0_1 +17017,2,42.0,0.0,8,111,800.0,1000.0,0.0,85,37,0.0,0.0,1364.160434697649,1800.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,2,180.0,2,2002.0,6,117036,2,1,0,0,1,,0.0,,42,1.0,0.0,5.0,6.0,2.8999999999999995,3,2,1072.76957360497,800.0,81352.53984713793,6,1,0,1,119.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02212592260035414,28052.599947288945,8,4,8,8_0,8_4,8_0_0 +17018,2,79.0,0.0,5,300,2.0,0.0,0.0,0,78,0.0,0.0,3.4104010867441223,1413.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,117037,1,1,0,0,1,,125.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1163.21098544069,2.0,14686.211194292695,0,5,0,1,91.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09621269783653358,14686.211194292695,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +17019,2,38.0,0.0,9,400,1133.0,0.0,0.0,43,63,0.0,0.0,1931.9922156405453,1203.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,117038,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,745.194462319248,1133.0,35761.05986689648,1,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033639942565393606,17029.07612709356,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +17020,2,70.0,0.0,2,111,350.0,0.0,0.0,0,78,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117039,2,1,0,1,1,720.0,150.0,364.0,11,0.0,0.0,4.0,1.0,1.0,1,1,312.839434527743,350.0,15336.946410928302,0,5,2,3,50.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022820709587314487,15336.946410928302,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +17021,2,30.0,0.0,5,111,737.0,0.0,0.0,0,54,0.0,145.67600047112464,1256.732800465209,847.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,117040,1,1,0,0,1,,0.0,461.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1606.46474260014,737.0,21791.0289074618,0,1,2,3,42.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03886920638749489,21791.0289074618,6,3,6,6_0,6_2,6_0_0 +17022,2,36.0,0.0,6,112,1440.0,0.0,0.0,54,43,0.0,132.4327277010224,2455.488782455768,1540.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,4,117041,2,1,2,0,1,,672.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1421.14102374455,1440.0,48305.91602063717,1,1,1,2,130.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0318801531336676,26836.620011465093,7,4,7,7_1,7_1,7_0_0 +17023,2,28.0,0.0,6,111,1320.0,0.0,0.0,0,55,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,4,117042,2,2,0,0,1,,280.0,605.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1048.89487248978,1320.0,10773.3333827099,0,4,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12252475191368953,10773.3333827099,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +17024,2,64.0,0.0,5,112,480.0,0.0,0.0,78,78,1898.4291318658827,0.0,818.4962608185893,2455.0,242.47811444439117,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,117043,1,2,2,0,1,,438.0,319.0,41,0.0,1.0,4.0,2.0,1.5,2,2,1148.59277780171,480.0,23936.31613009134,5,5,2,3,70.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10256381920498273,15957.544086727561,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +17025,2,76.0,0.0,1,212,750.0,0.0,0.0,71,71,1054.6828510366015,0.0,1278.9004075290459,1840.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117044,2,2,3,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,830.427872375448,750.0,28466.861374182277,5,5,0,1,130.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06463656023803062,18977.907582788186,5,3,5,5_1,5_0,5_1_0 +17026,2,73.0,0.0,1,221,381.0,1358.0,0.0,0,72,0.0,0.0,649.6814070247553,1739.0,0.0,2578.1684971022332,60,0,0,0,0,0,0,0,0,0,,1,,1,117045,2,2,3,0,1,,208.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2360.44268489236,381.0,51635.72181614264,0,5,0,1,110.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03367823550897558,51635.72181614264,10,5,10,10_1,10_1,10_1_0 +17027,2,54.0,0.0,2,111,700.0,1614.0,0.0,56,21,0.0,0.0,1193.6403803604428,2314.0,0.0,3064.1855333748194,50,2,2,2,1,1,2,2,2,0,,1,,2,117046,1,3,4,0,2,,420.0,671.0,43,2.0,2.0,5.0,2.0,1.5,2,2,1178.05873025879,700.0,13077.293919195368,1,1,3,4,110.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.17694792319406535,8718.195946130245,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +17028,1,69.0,309.0,1,111,180.0,,,86,78,0.0,0.0,,456.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,1,117047,1,2,0,0,2,,335.0,450.0,41,0.0,4.0,2.0,3.0,2.0,3,3,123.03963967490203,180.0,27422.6756780218,6,5,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.016628574299387792,13711.3378390109,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +17029,2,64.0,0.0,9,300,0.0,0.0,0.0,90,33,0.0,0.0,0.0,978.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,117048,2,1,1,0,1,,436.0,,43,2.0,2.0,5.0,4.0,2.1,2,2,869.472030629098,0.0,232718.97373194617,1,1,0,1,160.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004202493609852777,110818.55891997436,10,5,10,10_1,10_0,10_0_0 +17031,0,66.0,0.0,9,111,160.0,,,0,78,0.0,0.0,,229.0,95.60565655235995,,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,117050,2,1,0,0,1,,234.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,119.50547837472041,160.0,40820.03544447442,0,5,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005609990229222068,40820.03544447442,9,5,9,9_1,9_2,9_0_0 +17032,1,46.0,377.0,2,111,450.0,600.0,0.0,85,67,0.0,0.0,767.3402445174275,1050.0,0.0,1139.1024287638734,71,1,2,2,2,1,1,2,2,0,,2,,2,117051,1,1,0,1,1,,600.0,497.0,42,2.0,1.0,4.0,4.0,2.5,4,3,338.097358318028,450.0,11118.535996484059,6,4,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0944368935201572,4447.414398593623,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17033,2,66.0,0.0,5,400,602.0,0.0,0.0,78,78,210.9365702073203,198.6490915515336,1026.5307271099807,1042.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,117052,2,1,2,0,1,,324.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1167.89478881299,602.0,32175.383588526965,5,5,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03238500629318229,21450.255725684645,6,3,6,6_1,6_0,6_0_0 +17034,0,50.0,0.0,9,400,300.0,,,65,85,0.0,0.0,,620.0,443.3885521268867,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,117053,2,3,0,0,2,,0.0,,42,1.0,0.0,1.0,3.0,1.8,2,2,4.386640891614599,300.0,19105.925925925923,4,6,5,0,20.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03245066490908386,10614.403292181069,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +17035,2,51.0,0.0,2,112,790.0,1256.0,0.0,54,48,0.0,0.0,1347.1084292639284,2046.0,0.0,2384.521084212375,50,2,2,2,2,1,2,2,2,0,,1,,2,117054,1,2,2,0,2,,1009.0,,43,4.0,0.0,6.0,5.0,3.0,5,5,708.036098492846,790.0,110833.40650821509,4,1,1,2,72.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.018460138188104398,36944.4688360717,9,5,9,9_1,9_1,9_0_1 +17036,0,76.0,0.0,1,111,875.0,0.0,0.0,0,77,0.0,0.0,1492.0504754505534,875.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,117055,2,3,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,847.731857783078,875.0,12735.579995649729,0,5,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.068705155187191,12735.579995649729,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +17037,2,34.0,0.0,2,111,530.0,2500.0,0.0,54,46,0.0,0.0,903.7562879871924,3030.0,0.0,4746.260119849472,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,117056,2,2,3,0,1,,420.0,600.0,43,2.0,0.0,4.0,4.0,2.1,2,2,760.172610549635,530.0,45561.27117689995,1,1,2,3,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0665038512256489,21695.843417571403,6,3,6,6_1,6_4,6_0_1 +17038,2,42.0,0.0,9,111,1433.0,0.0,0.0,67,48,0.0,0.0,2443.5523786521635,1493.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,117057,1,1,1,0,2,,370.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,2221.33002573139,1433.0,66507.5385597536,1,1,1,2,110.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022448583007753573,28916.321112936348,8,4,8,8_1,8_3,8_0_0 +17039,2,63.0,0.0,7,221,1200.0,0.0,0.0,0,77,0.0,291.3520009422493,2046.2406520464733,1420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,117058,2,1,1,0,1,,500.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,819.10686275964,1200.0,14922.922522202685,0,5,0,1,100.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09515562369819247,14922.922522202685,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +17040,2,61.0,0.0,1,111,800.0,1500.0,0.0,54,34,0.0,198.6490915515336,1364.160434697649,2450.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,117059,2,2,3,0,1,,500.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,387.657820506714,800.0,132016.86799893732,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018558234543329125,88011.24533262488,10,5,10,10_1,10_4,10_1_0 +17041,1,38.0,522.0,7,111,280.0,,,0,85,0.0,0.0,,410.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,2,,5,117060,2,1,0,0,1,,444.0,557.0,31,0.0,0.0,4.0,5.0,2.5999999999999996,3,1,134.37937917392367,280.0,20278.0,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02021895650458625,7799.23076923077,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17042,2,58.0,0.0,6,211,1600.0,0.0,0.0,78,43,0.0,264.8654554020448,2728.320869395298,1864.0,88.67771042537734,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,117061,2,1,2,0,1,,600.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1640.50750947338,1600.0,19209.01751025388,5,1,0,1,120.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09703775838639256,12806.011673502588,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +17043,2,42.0,0.0,6,111,1500.0,0.0,0.0,43,47,0.0,99.3245457757668,2557.8008150580918,1575.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,4,117062,2,2,1,0,1,,460.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,633.633474027229,1500.0,58470.86615629529,1,1,1,2,125.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026936491684422,27843.269598235853,7,4,7,7_1,7_2,7_0_0 +17044,2,83.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2749.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,117063,2,2,5,0,2,,97.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1125.45091785464,0.0,35891.22989470826,0,5,0,1,100.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07659252714561636,35891.22989470826,9,5,9,9_1,9_3,9_0_1 +17045,2,50.0,0.0,8,221,600.0,0.0,0.0,0,45,0.0,0.0,1023.1203260232367,635.0,48.49562288887823,0.0,41,0,0,0,0,0,0,0,0,3,30.0,1,2002.0,6,117064,2,1,3,0,1,,250.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2078.68699007673,600.0,31908.220541433533,0,1,1,2,77.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01990082772480021,31908.220541433533,8,4,8,8_1,8_1,8_0_0 +17046,2,51.0,0.0,7,111,120.0,,,0,81,0.0,0.0,,258.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,117065,1,2,0,0,2,,100.0,,32,2.0,0.0,4.0,4.0,2.3,3,2,76.20759201267548,120.0,15761.606584983434,0,4,0,1,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01636888972002413,6852.872428253668,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +17047,2,36.0,0.0,1,111,260.0,0.0,0.0,0,46,0.0,0.0,443.3521412767359,489.0,0.0,0.0,30,1,2,2,1,1,2,2,2,3,45.0,2,,1,117066,2,2,0,1,1,,0.0,1013.0,12,1.0,0.0,3.0,1.0,1.0,1,1,727.755539414673,260.0,31482.906612322957,0,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.015532238049729401,31482.906612322957,8,4,8,8_0,8_4,8_1_0 +17048,1,47.0,307.0,1,111,480.0,600.0,0.0,0,68,0.0,0.0,818.4962608185893,1080.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,3,60.0,2,,1,117067,2,1,0,0,1,,0.0,335.0,32,3.0,1.0,3.0,3.0,2.0,3,3,692.238210978867,480.0,15919.025694823351,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06784334799781128,7959.5128474116755,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +17049,1,67.0,289.0,1,111,500.0,0.0,0.0,85,77,0.0,0.0,852.6002716860306,632.0,182.89777775234077,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,117068,1,3,0,0,2,,204.0,254.0,41,0.0,0.0,3.0,4.0,2.3,4,2,340.602160958171,500.0,12097.323056745572,6,5,2,3,55.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05224296292952112,5259.7056768459015,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +17050,2,39.0,0.0,2,112,850.0,850.0,0.0,62,46,0.0,0.0,1449.420461866252,1700.0,0.0,1613.7284407488207,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,117069,2,1,2,0,1,,500.0,324.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,556.448926780478,850.0,60841.029798944415,1,1,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027941670376353405,23400.396076517085,6,3,6,6_1,6_2,6_0_1 +17051,0,41.0,0.0,1,400,0.0,,,0,62,0.0,0.0,,150.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,117070,2,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,107.79611086715775,0.0,23524.181637792797,0,1,5,0,40.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0063764173525601995,23524.181637792797,6,3,6,6_1,6_1,6_1_0 +17052,1,63.0,200.0,2,111,98.0,40.0,0.0,85,78,0.0,0.0,167.109653250462,138.0,0.0,75.94016191759155,71,2,2,2,2,1,2,2,2,0,,2,,2,117071,2,2,0,0,1,,800.0,,41,0.0,4.0,5.0,3.0,2.0,3,3,371.963024658347,98.0,15695.222416809924,7,7,0,1,82.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,0,0,1,0.00879248451122292,7847.611208404962,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17053,1,60.0,253.0,6,211,360.0,,,0,81,0.0,0.0,,492.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,4,117072,2,2,0,0,2,,200.0,436.0,12,1.0,3.0,3.0,1.0,1.0,1,1,116.58594229424011,360.0,7000.0,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07028571428571428,7000.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17054,1,45.0,194.0,2,111,400.0,0.0,0.0,85,67,0.0,1059.4618216081792,682.0802173488245,1240.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,117073,2,1,0,1,1,660.0,300.0,510.0,42,1.0,1.0,4.0,4.0,2.3,3,3,209.107861207059,400.0,16714.86878810048,6,1,2,3,80.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07418544624668374,7267.334255695861,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +17055,2,52.0,0.0,2,111,190.0,590.0,0.0,0,52,0.0,0.0,323.9881032406916,780.0,0.0,1120.1173882844755,50,2,2,2,2,1,2,2,2,3,30.0,2,,2,117074,1,3,0,0,2,,90.0,662.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1517.09546462101,190.0,26348.512903202816,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,0.029603188721333357,26348.512903202816,7,4,7,7_0,7_4,7_0_1 +17056,2,31.0,0.0,9,111,1500.0,0.0,0.0,42,42,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,117075,2,1,1,0,1,,125.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1049.13112224561,1500.0,30861.14307063659,1,1,1,2,120.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04860481015128707,14695.782414588852,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +17057,1,54.0,283.0,7,111,2800.0,0.0,0.0,52,56,0.0,0.0,4774.561521441771,2800.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,50.0,2,,5,117076,1,2,0,0,1,,0.0,680.0,43,2.0,3.0,4.0,7.0,3.6,5,5,793.396954106611,2800.0,63952.173167927125,1,1,2,3,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,0,1,0.04378271857388949,17764.492546646423,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +17058,1,40.0,99.0,1,111,600.0,300.0,0.0,54,47,0.0,0.0,1023.1203260232367,900.0,0.0,569.5512143819367,12,2,2,2,2,1,1,2,2,0,,2,,1,117077,2,3,0,0,1,,0.0,813.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1254.47560599076,600.0,23889.711537002066,1,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,0.0376731212767478,13272.061965001147,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +17059,1,40.0,459.0,9,111,600.0,900.0,0.0,0,85,0.0,0.0,1023.1203260232367,1500.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,117078,2,1,1,0,1,,430.0,741.0,31,0.0,0.0,5.0,4.0,1.9,1,1,1641.9911997397,600.0,21882.80089720013,0,6,2,3,93.0,6,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06854698386402276,11517.263630105332,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +17060,1,66.0,161.0,2,112,336.0,0.0,0.0,85,78,0.0,0.0,572.9473825730125,336.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,117079,2,2,0,1,1,1200.0,0.0,376.0,41,0.0,3.0,4.0,3.0,2.0,3,3,261.036585107038,336.0,16301.287337933594,6,5,2,3,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020611869052704672,8150.643668966797,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +17061,2,47.0,0.0,1,120,1200.0,0.0,0.0,11,11,527.3414255183008,132.4327277010224,2046.2406520464733,1950.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117080,2,1,1,0,1,,150.0,300.0,43,2.0,0.0,7.0,5.0,2.4,2,2,235.364467660153,1200.0,56713.97724093281,1,1,2,3,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034383058548618325,23630.82385038867,6,3,6,6_1,6_0,6_1_0 +17062,2,39.0,0.0,7,111,400.0,1000.0,0.0,55,64,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,117081,2,1,2,0,1,,470.0,600.0,43,2.0,0.0,5.0,5.0,2.4,2,2,139.099028460971,400.0,40003.61616422416,1,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03499683614232959,16668.173401760065,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +17063,2,71.0,0.0,5,211,470.0,,,77,78,0.0,0.0,,746.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,117082,2,1,0,0,2,,436.0,,41,3.0,3.0,5.0,6.0,3.3,5,5,121.50234382300211,470.0,55516.09346620694,5,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013437544924772053,16823.058626123315,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +17064,2,75.0,0.0,5,112,180.0,0.0,0.0,0,77,0.0,0.0,306.936097806971,180.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,3,117083,1,2,0,1,2,272.0,0.0,470.0,11,0.0,3.0,1.0,1.0,1.0,1,1,1395.2492202773,180.0,22207.090125762796,0,5,2,3,17.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.008105519407568809,22207.090125762796,6,3,6,6_0,6_2,6_0_0 +17065,2,69.0,0.0,2,111,300.0,500.0,0.0,0,77,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,70,0,0,0,0,0,0,0,0,0,,2,,2,117084,2,2,0,0,1,,0.0,372.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1867.04641996861,300.0,16211.64991879308,0,5,2,3,98.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.049347228937667444,16211.64991879308,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +17066,2,73.0,0.0,5,112,600.0,0.0,0.0,72,22,1054.6828510366015,0.0,1023.1203260232367,1600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,117085,2,1,2,0,1,,840.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1445.59831567449,600.0,21185.598017644785,5,5,0,1,190.0,8,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.075523003819265,14123.73201176319,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +17067,2,34.0,0.0,1,111,1089.0,1200.0,0.0,37,37,0.0,0.0,1856.9633917321746,2289.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,10.0,2,,1,117086,2,1,0,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1854.74217867401,1089.0,85594.71662911607,1,1,1,2,140.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02674230478404749,47552.62034950893,10,5,10,10_0,10_2,10_1_0 +17068,1,46.0,326.0,2,111,409.0,215.0,0.0,0,68,0.0,0.0,697.427022239173,624.0,0.0,408.17837030705465,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,117087,2,1,0,1,1,543.0,180.0,303.0,32,1.0,1.0,4.0,2.0,1.5,2,2,348.52209657817,409.0,12154.794370729065,0,1,2,3,80.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.051337766889969313,8103.19624715271,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +17069,2,76.0,0.0,7,111,233.0,537.0,0.0,0,78,0.0,0.0,397.31172660569024,770.0,0.0,1019.4966737436667,71,1,2,2,2,1,2,2,2,0,,2,,5,117088,2,1,0,0,1,,0.0,437.0,11,0.0,2.0,3.0,1.0,1.0,1,1,400.862580194102,233.0,16543.841726724713,0,5,2,3,67.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04654299845942987,16543.841726724713,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +17070,2,59.0,0.0,6,112,902.5,0.0,0.0,56,62,0.0,264.8654554020448,1538.9434903932852,1188.0,118.46787877140254,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,117089,2,1,2,0,1,,304.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1257.44289288383,902.5,23347.61539576841,1,1,0,1,89.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050883140734591534,15565.076930512274,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +17071,0,55.0,0.0,5,111,396.0,,,0,77,0.0,0.0,,546.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,3,117090,1,2,0,0,2,,240.0,,31,1.0,2.0,3.0,2.0,1.5,2,2,117.58631583285529,396.0,7366.37744177716,0,6,0,1,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07412055712804691,4910.918294518106,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17072,1,39.0,442.0,2,111,0.0,0.0,996.0,85,47,0.0,0.0,627.7970172530848,996.0,0.0,1191.945218974422,50,2,1,2,2,1,2,2,2,2,12.0,2,,2,117091,2,1,0,1,1,948.0,0.0,408.0,42,1.0,3.0,4.0,4.0,2.1,2,2,199.06283893394,0.0,9891.120526256771,6,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.100696376851949,4710.057393455605,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +17073,2,54.0,0.0,2,111,550.0,1100.0,0.0,52,47,0.0,0.0,937.8602988546337,1650.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,117092,2,2,0,0,1,,680.0,371.0,43,2.0,1.0,5.0,3.0,2.0,3,3,1982.21123480116,550.0,41252.83529347458,1,1,2,3,82.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03999725081347315,20626.41764673729,5,3,5,5_0,5_3,5_0_1 +17074,2,36.0,0.0,5,400,600.0,,,85,52,0.0,0.0,,720.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,3,117093,2,2,0,0,2,,150.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,54.03672069755966,600.0,39634.55797277805,6,1,0,1,75.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018165965178532154,26423.0386485187,7,4,7,7_1,7_1,7_0_0 +17075,2,48.0,0.0,2,111,600.0,1800.0,0.0,55,33,0.0,0.0,1023.1203260232367,2400.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,117094,2,1,3,0,1,,630.0,,43,3.0,0.0,4.0,5.0,3.0,5,4,243.689997300599,600.0,56355.16916555833,1,1,1,2,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042587042777732786,18785.056388519442,5,3,5,5_1,5_2,5_0_1 +17076,2,63.0,0.0,1,111,1074.0,486.0,0.0,75,75,0.0,331.081819252556,1831.3853835815937,1810.0,0.0,922.6729672987375,44,0,0,0,0,0,0,0,0,0,,1,,1,117095,1,1,3,0,1,,460.0,,41,0.0,2.0,6.0,3.0,2.0,3,3,523.719001142161,1074.0,43811.75389775611,5,5,0,1,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04131311438076671,21905.876948878056,6,3,6,6_1,6_3,6_1_0 +17077,1,41.0,307.0,7,111,378.0,,,85,64,0.0,0.0,,498.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,117096,2,3,0,0,2,,320.0,446.0,42,1.0,0.0,3.0,3.0,2.0,3,2,112.776624561391,378.0,17002.47743702247,6,4,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029289849190778365,8501.238718511235,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +17078,2,51.0,0.0,8,111,1400.0,0.0,0.0,85,55,0.0,0.0,2387.2807607208856,2900.0,2078.3838380947814,0.0,50,0,0,0,0,0,0,0,0,3,30.0,1,2000.0,6,117097,2,1,1,0,1,,700.0,,42,2.0,1.0,5.0,4.0,2.5,4,4,1518.61870074624,1400.0,15702.784461086194,7,1,1,2,120.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18468062191050422,6281.113784434478,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +17079,1,32.0,205.0,8,120,0.0,,,85,67,0.0,0.0,,314.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,117098,2,2,0,0,2,,115.0,600.0,42,1.0,0.0,4.0,3.0,1.8,2,2,119.75106222161709,0.0,21804.23052824479,6,1,2,3,85.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01440087507757957,12113.461404580437,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +17080,2,59.0,0.0,5,300,1692.0,0.0,0.0,56,78,0.0,373.4602921168831,2885.1993193855274,2087.0,156.29446462472757,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,117099,2,1,2,0,1,,470.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,767.694407660962,1692.0,26561.062376304602,1,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07857366435244074,17707.374917536403,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +17081,2,34.0,0.0,9,112,1200.0,,,0,54,0.0,0.0,,1284.0,116.38949493330776,,20,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,117100,2,1,0,0,1,,100.0,,12,1.0,1.0,7.0,1.0,1.0,1,1,132.49946596128908,1200.0,40441.83220464694,0,1,1,2,180.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03174930338226523,40441.83220464694,9,5,9,9_1,9_1,9_0_0 +17082,2,55.0,0.0,1,300,450.0,0.0,0.0,0,47,2636.7071275915036,331.081819252556,767.3402445174275,3310.0,152.4148147936173,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,117101,2,1,2,0,1,,380.0,,32,2.0,1.0,5.0,2.0,1.5,2,2,1488.69022885768,450.0,45542.633193138725,0,1,1,2,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07267915287117548,30361.755462092482,8,4,8,8_1,8_0,8_1_0 +17083,1,38.0,500.0,2,111,1500.0,0.0,0.0,85,47,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,12,2,2,2,2,1,1,2,2,3,30.0,1,,2,117102,1,3,3,0,2,,0.0,780.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1077.38019631141,1500.0,20873.79162869013,6,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,1,0.0718604471426415,8697.413178620889,1,1,1_1,1_1_1,1_4_1,1_0_1_1 +17084,2,39.0,0.0,9,120,1400.0,0.0,0.0,52,67,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,2,2,2,2,1,2,2,2,4,90.0,1,2005.0,6,117103,2,2,2,0,1,,260.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,679.592406619502,1400.0,35659.33806057682,1,1,1,2,118.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.039260403477533144,19810.74336698712,5,3,5,5_1,5_0,5_0_0 +17085,2,50.0,0.0,9,111,600.0,,,22,46,0.0,0.0,,688.0,121.93185183489385,,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,117104,2,2,0,0,2,,240.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,240.56137769648114,600.0,70796.2575231749,1,1,1,2,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009718027817710358,35398.12876158745,9,5,9,9_1,9_2,9_0_0 +17086,1,57.0,260.0,2,111,600.0,700.0,0.0,85,62,0.0,0.0,1023.1203260232367,1300.0,0.0,1328.9528335578523,71,2,2,2,2,2,2,2,1,0,,2,,2,117105,2,2,0,1,1,,0.0,500.0,42,1.0,0.0,3.0,3.0,1.8,2,2,377.261197584355,600.0,9536.999999999998,6,4,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.13631120897556886,5298.333333333332,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17087,2,46.0,0.0,7,112,525.0,0.0,0.0,46,52,632.8097106219609,0.0,895.2302852703322,4530.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,117106,2,1,2,0,1,,207.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,788.317603674361,525.0,44182.718505812874,1,1,0,1,110.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10252877489654723,22091.359252906437,6,3,6,6_1,6_0,6_0_0 +17089,2,64.0,0.0,1,112,1200.0,0.0,0.0,75,77,0.0,662.163638505112,2046.2406520464733,1800.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117108,2,2,1,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,946.610375454211,1200.0,53619.35853705152,5,5,0,1,120.0,4,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.033569965197479595,35746.23902470101,9,5,9,9_1,9_0,9_1_0 +17090,0,61.0,0.0,5,111,0.0,0.0,2500.0,0,72,0.0,662.163638505112,1575.7957260368596,3000.0,0.0,2991.830368911702,44,0,0,0,0,0,0,0,0,0,,1,,3,117109,2,1,3,0,1,,400.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,373.321502914433,0.0,20943.38588226666,0,5,0,1,120.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1432433139925184,20943.38588226666,5,3,5,5_1,5_2,5_0_0 +17091,2,63.0,0.0,1,112,874.0,0.0,0.0,75,75,1898.4291318658827,728.3800023556231,1490.3452749071814,3392.0,232.77898986661552,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,117110,2,1,2,0,1,,411.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1244.98300125327,874.0,53913.547785074705,5,5,0,1,200.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06291554051538477,35942.3651900498,9,5,9,9_1,9_0,9_1_0 +17092,1,44.0,336.0,7,111,390.0,,,0,85,0.0,0.0,,532.0,196.75367000630598,,71,0,0,0,0,0,0,0,0,0,,2,,5,117111,2,1,0,0,2,,240.0,425.0,31,0.0,1.0,4.0,5.0,2.8,4,1,67.8303960713787,390.0,31136.452692485524,0,6,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01708608251730593,11120.161675887688,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +17093,2,70.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,1429.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,117112,2,1,2,0,1,,424.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,1452.27105351366,0.0,45179.88658423135,5,5,0,1,130.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0316291187968309,22589.943292115677,6,3,6,6_1,6_2,6_0_1 +17094,2,46.0,0.0,1,111,0.0,0.0,1440.0,46,54,0.0,0.0,907.658338197231,1440.0,0.0,1723.2942924931403,31,0,0,0,0,0,0,0,0,2,10.0,2,,1,117113,2,2,0,0,2,,0.0,1075.0,43,2.0,2.0,4.0,4.0,2.5,4,3,1971.15804938054,0.0,31581.345585223666,1,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04559653723791141,12632.538234089467,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +17095,2,32.0,0.0,1,120,529.0,0.0,0.0,22,37,0.0,264.8654554020448,902.0510874438204,789.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,117114,2,1,2,0,1,,284.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1200.67078256754,529.0,71374.70220421407,1,1,1,2,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.011054336839718768,47583.134802809385,10,5,10,10_1,10_0,10_1_0 +17096,1,21.0,250.0,9,111,0.0,,,0,55,0.0,0.0,,365.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,2006.0,6,117115,2,2,0,0,2,,243.0,690.0,22,2.0,0.0,3.0,2.0,1.5,2,2,114.57488783728952,0.0,19701.0,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0185269783259733,13134.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +17097,2,32.0,0.0,7,112,1500.0,0.0,0.0,54,69,0.0,132.4327277010224,2557.8008150580918,1690.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,117116,2,1,2,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1036.4352393325,1500.0,38716.35275359519,1,1,1,2,120.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04365080592058267,18436.358454092944,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +17098,2,33.0,0.0,5,111,400.0,0.0,0.0,0,47,0.0,0.0,682.0802173488245,430.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,,3,117117,2,1,0,0,1,,180.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,918.211092451441,400.0,29259.159589695188,0,1,1,2,44.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014696252593373944,29259.159589695188,8,4,8,8_0,8_2,8_0_0 +17099,1,31.0,95.0,2,111,600.0,0.0,0.0,85,67,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,117118,2,1,0,0,1,,0.0,763.0,42,1.0,0.0,3.0,4.0,2.1,2,2,3118.48278954072,600.0,33291.831916444346,6,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.019824682572483977,15853.253293544925,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +17100,2,58.0,0.0,2,112,180.0,1.0,0.0,0,63,0.0,0.0,306.936097806971,231.0,69.27946126982604,1.898504047939789,50,0,0,0,0,0,0,0,0,2,40.0,8,,2,117119,2,1,0,1,1,800.0,100.0,278.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2526.1526572022,180.0,18628.77282750092,0,1,2,3,77.0,6,0,7,0,1,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012400172686575674,18628.77282750092,4,2,4_0,4_0_0,4_0_0,4_0_1_0 +17101,2,65.0,0.0,7,111,1278.0,0.0,0.0,74,46,0.0,0.0,2179.2462944294944,1278.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,5,117120,2,2,0,0,1,,0.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,913.374643192229,1278.0,199805.2550234866,5,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006396228166520317,133203.50334899107,10,5,10,10_0,10_4,10_0_0 +17102,1,51.0,98.0,1,111,300.0,610.0,0.0,0,54,0.0,0.0,511.56016301161833,910.0,0.0,1158.0874692432712,50,2,2,2,2,1,2,2,2,3,30.0,2,,1,117121,1,2,0,0,2,,0.0,576.0,32,2.0,0.0,2.0,3.0,2.0,3,3,300.418804971636,300.0,20443.493780740802,0,1,2,3,48.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.04451293941044869,10221.746890370401,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +17103,2,32.0,0.0,1,111,650.0,1300.0,0.0,52,38,0.0,0.0,1108.3803531918397,1950.0,0.0,2468.055262321726,12,2,2,2,1,1,2,2,2,2,90.0,2,,1,117122,2,3,0,0,1,,0.0,718.0,43,2.0,0.0,5.0,2.0,1.5,2,2,288.638271232052,650.0,47325.674261121894,1,1,2,3,97.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.04120385035067377,31550.449507414596,8,4,8,8_0,8_2,8_1_0 +17104,1,55.0,140.0,6,111,0.0,0.0,0.0,31,55,0.0,0.0,0.0,2543.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,4,117123,2,1,3,0,1,,489.0,650.0,43,2.0,1.0,4.0,2.0,1.5,2,2,1496.6578261743,0.0,26199.801768219637,4,1,2,3,84.0,6,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09706180308145153,17466.534512146423,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +17105,2,45.0,0.0,1,300,1100.0,0.0,0.0,12,43,0.0,0.0,1875.7205977092674,2389.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,1,117124,1,2,3,0,1,,300.0,408.0,43,2.0,0.0,4.0,4.0,2.1,2,2,994.163861185932,1100.0,23472.040311992187,1,1,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10178067045920278,11177.162053329612,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +17106,2,62.0,0.0,1,112,354.0,338.0,0.0,0,78,3164.0485531098047,0.0,603.6409923537096,3692.0,0.0,641.6943682036487,60,0,0,0,0,0,0,0,0,0,,1,,1,117125,2,1,1,0,1,,194.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2134.63176734024,354.0,15378.876614858353,0,5,0,1,110.0,7,1,9,1,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2400695507520336,15378.876614858353,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +17107,0,93.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1759.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,117126,2,1,0,1,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,806.921445590565,0.0,69648.79723413987,0,5,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025255281783068437,69648.79723413987,10,5,10,10_0,10_4,10_1_0 +17108,2,49.0,0.0,8,112,720.0,,,37,43,0.0,0.0,,970.0,346.39730634913025,,33,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,117127,2,2,0,0,2,,120.0,,43,2.0,0.0,3.0,4.0,2.3,3,3,97.48513391164416,720.0,81109.0,1,1,1,2,89.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011959215376838575,35264.782608695656,9,5,9,9_1,9_2,9_0_0 +17109,2,26.0,0.0,1,111,800.0,0.0,0.0,34,37,0.0,0.0,1364.160434697649,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,117128,2,3,0,0,1,,0.0,393.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2722.11533632322,800.0,15999.476145900728,1,1,2,3,60.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05000163709766024,10666.317430600486,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +17111,2,79.0,0.0,1,112,420.0,1380.0,0.0,78,78,0.0,0.0,716.1842282162656,1800.0,0.0,2619.935586156909,71,0,0,0,0,0,0,0,0,0,,1,,1,117130,2,2,1,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,453.339309722458,420.0,24273.25235108419,5,5,0,1,64.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07415569920194898,16182.168234056126,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +17112,1,44.0,479.0,2,111,600.0,,,0,68,0.0,0.0,,696.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,0,,2,,2,117131,2,2,0,0,2,,400.0,529.0,32,1.0,1.0,4.0,5.0,3.0,5,3,77.27984322840818,600.0,26178.340456807047,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026586864860603566,8726.11348560235,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17113,0,67.0,0.0,2,111,180.0,,,0,75,0.0,0.0,,260.0,110.84713803172167,,60,0,0,0,0,0,0,0,0,0,,2,,2,117132,2,1,0,0,2,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,123.03963967490203,180.0,28249.60916635704,0,5,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009203667154080086,28249.60916635704,8,4,8,8_0,8_2,8_0_1 +17114,2,101.0,0.0,1,111,384.0,,,0,74,0.0,0.0,,728.0,476.6426935364032,,41,0,0,0,0,0,0,0,0,0,,2,,1,117133,2,1,0,0,2,,342.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,179.7917333356319,384.0,32871.824481364194,0,5,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022146625917059157,32871.824481364194,8,4,8,8_0,8_2,8_1_0 +17115,2,57.0,0.0,2,111,174.0,650.0,0.0,0,67,0.0,0.0,296.7048945467387,824.0,0.0,1234.027631160863,50,2,2,2,2,1,2,2,2,0,,2,,2,117134,2,2,0,0,1,,120.0,285.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1752.44549818964,174.0,12062.570866018783,0,4,2,3,75.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.06831047951156691,12062.570866018783,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +17116,2,83.0,0.0,2,300,286.0,1580.0,0.0,78,78,0.0,0.0,487.6873554044095,1866.0,0.0,2999.6363957448666,71,0,0,0,0,0,0,0,0,0,,2,,2,117135,2,3,0,0,1,,470.0,415.0,41,1.0,1.0,4.0,3.0,2.0,3,3,2054.39191007789,286.0,43437.473513251796,5,5,2,3,70.0,0,0,8,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04295829957584263,21718.736756625898,6,3,6,6_0,6_0,6_0_1 +17117,2,62.0,0.0,7,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,117136,2,1,2,0,1,,400.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,565.5332373532,0.0,48403.669338786545,0,5,0,1,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04131918152736763,48403.669338786545,10,5,10,10_1,10_4,10_0_0 +17118,2,35.0,0.0,9,112,1240.0,0.0,0.0,31,31,0.0,0.0,2114.448673781356,1240.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,117137,2,1,1,0,1,,190.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1050.48170108997,1240.0,121252.06976511373,1,1,1,2,175.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01022662955281584,57739.08084053035,10,5,10,10_1,10_2,10_0_0 +17119,0,23.0,0.0,6,300,3842.6,,,0,52,0.0,0.0,,4107.0,365.79555550468154,,43,0,0,0,0,0,0,0,0,0,,1,,4,117138,1,2,0,0,2,,692.0,,22,3.0,4.0,3.0,4.0,2.3,3,3,67.51064861815469,3842.6,9383.706293706293,0,1,5,0,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.43767354512732237,4079.872301611432,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +17120,2,60.0,0.0,2,111,890.0,0.0,0.0,0,33,489.3728428809831,0.0,1517.6284836011343,1354.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,2,117139,2,2,0,1,1,,0.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,1003.03486402724,890.0,118271.54253399535,0,1,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011448231510219911,78847.69502266357,10,5,10,10_0,10_4,10_0_1 +17121,2,52.0,0.0,7,111,300.0,,,0,56,0.0,0.0,,450.0,207.83838380947813,,71,2,2,2,2,1,2,2,2,0,,1,,5,117140,1,3,0,0,1,,540.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,114.74932596945972,300.0,5309.734491315136,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08475000035049628,5309.734491315136,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17122,2,36.0,0.0,9,111,0.0,,,46,53,0.0,0.0,,448.0,0.0,,20,0,0,0,0,0,0,0,0,2,6.0,2,2013.0,6,117141,2,2,0,0,2,,1019.0,400.0,43,2.0,0.0,4.0,5.0,2.4,2,2,297.6287775018126,0.0,60792.481583739434,1,1,3,4,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007369332330724092,25330.20065989143,7,4,7,7_0,7_2,7_0_0 +17123,2,42.0,0.0,7,111,1360.0,,,34,38,0.0,0.0,,1425.0,90.06329965077386,,12,0,0,0,0,0,0,0,0,2,40.0,1,,5,117142,2,3,0,0,1,,120.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,145.2814260169519,1360.0,133972.37033498962,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010636521518854043,63796.366826185535,10,5,10,10_1,10_2,10_0_0 +17124,1,52.0,254.0,2,211,0.0,0.0,135.0,0,85,0.0,0.0,85.09296920599041,135.0,0.0,161.5588399212319,60,0,0,0,0,0,0,0,0,0,,2,,2,117143,1,2,0,1,2,204.0,0.0,240.0,11,0.0,0.0,2.0,1.0,1.0,1,1,357.319351193162,0.0,11126.246102377707,0,7,2,3,48.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.012133472400107181,11126.246102377707,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +17125,2,83.0,0.0,7,111,300.0,,,0,77,0.0,0.0,,550.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,5,117144,2,2,0,0,2,,540.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,91.9200906288319,300.0,16346.468186306256,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033646411795591746,16346.468186306256,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +17126,2,57.0,0.0,5,112,720.0,800.0,0.0,0,56,0.0,0.0,1227.744391227884,1580.0,83.13535352379125,1518.8032383518312,60,0,0,0,0,0,0,0,0,0,,1,,3,117145,2,1,2,0,1,,120.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,542.798897457871,720.0,13272.391188138896,0,1,0,1,80.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11904411025889552,13272.391188138896,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +17127,2,62.0,0.0,2,111,495.0,967.0,0.0,77,48,0.0,0.0,844.0742689691702,1462.0,0.0,1835.853414357776,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,117146,1,2,3,0,2,,380.0,247.0,42,1.0,1.0,3.0,2.0,1.5,2,2,1394.96536879186,495.0,34743.96517726605,7,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04207925009539865,23162.6434515107,6,3,6,6_1,6_2,6_0_1 +17128,2,49.0,0.0,5,111,1800.0,0.0,0.0,54,45,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,117147,2,1,1,0,1,,250.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,1102.37553982688,1800.0,69812.06791483305,1,1,0,1,110.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025783507834145562,34906.03395741653,9,5,9,9_1,9_3,9_0_0 +17129,1,45.0,100.0,7,111,680.0,0.0,0.0,0,54,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,60,2,2,2,1,2,2,2,2,2,10.0,2,,5,117148,1,1,0,0,1,,0.0,380.0,32,1.0,0.0,3.0,2.0,1.5,2,1,1695.25098202052,680.0,18895.966945034903,0,1,2,3,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.035986515110764235,12597.311296689935,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +17130,2,37.0,0.0,8,400,379.0,0.0,0.0,54,63,1160.1511361402618,0.0,646.2710059380112,1479.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,117149,2,1,1,0,1,,202.0,445.0,43,2.0,0.0,4.0,2.0,1.5,2,2,985.14908100536,379.0,18241.110794220982,1,1,2,3,70.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0810805886047557,12160.740529480654,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +17131,2,78.0,0.0,2,120,210.0,0.0,0.0,77,78,2109.365702073203,0.0,358.0921141081328,2540.0,457.2444443808519,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117150,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1728.43225867798,210.0,20508.03751107237,5,5,0,1,89.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12385387917437951,13672.025007381579,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +17132,2,48.0,0.0,1,112,789.0,1800.0,0.0,53,54,0.0,0.0,1345.4032287205562,2589.0,0.0,3417.30728629162,30,0,0,0,0,0,0,0,0,2,8.0,1,,1,117151,2,2,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,859.359878574271,789.0,52388.39254033973,4,1,1,2,150.0,9,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04941934414205278,20955.35701613589,5,3,5,5_1,5_1,5_1_0 +17133,2,67.0,0.0,1,111,2665.0,3640.0,0.0,75,22,0.0,0.0,4544.359448086543,6305.0,0.0,6910.554734500832,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,117152,1,3,3,0,2,,600.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1787.04467287989,2665.0,16469.220116538017,6,1,0,1,185.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3828353714010211,10979.480077692011,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +17134,2,44.0,0.0,8,221,2000.0,0.0,0.0,85,69,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,117153,2,1,1,0,1,,720.0,,42,2.0,0.0,6.0,4.0,2.5,4,4,2039.88896672465,2000.0,35281.83450053576,5,1,0,1,135.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05668639480664277,14112.733800214304,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +17135,2,62.0,0.0,7,111,1000.0,0.0,0.0,56,77,0.0,0.0,1705.2005433720612,1070.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,117154,2,1,0,0,1,,0.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1395.21847427177,1000.0,28805.12961235938,1,5,1,2,136.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.037146161617717444,19203.419741572918,5,3,5,5_0,5_2,5_0_0 +17136,1,54.0,300.0,1,211,1200.0,,,0,81,0.0,0.0,,1212.0,16.627070704758253,,71,0,0,0,0,0,0,0,0,0,,1,,1,117155,2,2,0,0,2,,600.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,57.08692020626621,1200.0,10608.968350600004,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11424296500342127,10608.968350600004,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +17137,2,58.0,0.0,5,111,718.0,841.0,0.0,52,62,0.0,132.4327277010224,1224.33399014114,1659.0,0.0,1596.6419043173626,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,117156,2,1,2,0,1,,357.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1995.07139942492,718.0,38056.79705613759,1,1,0,1,99.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043592738441777135,25371.19803742506,7,4,7,7_1,7_3,7_0_0 +17138,2,55.0,0.0,7,300,1200.0,,,43,43,0.0,0.0,,1310.0,152.4148147936173,,33,0,0,0,0,0,0,0,0,2,20.0,1,,5,117157,2,2,0,0,1,,150.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,100.89965015765284,1200.0,133613.1622702942,1,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009804423289899547,53445.264908117686,10,5,10,10_1,10_1,10_0_0 +17139,1,19.0,218.0,2,111,0.0,0.0,0.0,56,69,0.0,0.0,0.0,592.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,117158,2,1,0,0,1,,212.0,201.0,43,2.0,0.0,2.0,2.0,1.5,2,2,480.748594227008,0.0,12157.230078181052,1,1,2,3,42.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04869530281099806,8104.820052120701,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +17140,2,44.0,0.0,7,111,458.0,450.0,0.0,0,54,0.0,0.0,780.981848864404,908.0,0.0,854.326821572905,43,0,0,0,0,0,0,0,0,2,35.0,1,,5,117159,2,1,2,0,1,,0.0,588.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1111.84252943961,458.0,22806.486251471557,0,1,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039813235146707995,15204.324167647705,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +17141,1,79.0,137.0,2,111,214.0,763.0,0.0,0,77,0.0,0.0,364.9129162816211,977.0,0.0,1448.558588578059,50,0,0,0,0,0,0,0,0,0,,2,,2,117160,2,1,0,0,1,,114.0,568.0,11,0.0,2.0,4.0,1.0,1.0,1,1,2143.44778541418,214.0,11191.34833955469,0,5,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08729957913533012,11191.34833955469,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +17142,2,63.0,0.0,2,300,480.0,0.0,0.0,77,75,0.0,0.0,818.4962608185893,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117161,2,1,1,0,1,,106.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,800.669411296896,480.0,40756.10332532094,5,5,0,1,83.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011777377149345526,27170.735550213958,7,4,7,7_1,7_0,7_0_1 +17143,2,48.0,0.0,1,111,424.0,56.0,0.0,0,45,0.0,0.0,723.005030389754,480.0,0.0,106.31622668462819,20,0,0,0,0,0,0,0,0,1,15.0,2,,1,117162,1,2,0,1,2,382.0,0.0,633.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1118.86885338114,424.0,31229.5313190775,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015370067360145668,31229.5313190775,8,4,8,8_0,8_4,8_1_0 +17144,1,28.0,306.0,2,111,140.0,900.0,0.0,0,67,0.0,0.0,238.72807607208856,1040.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,117163,1,3,0,0,1,,0.0,260.0,32,1.0,0.0,3.0,3.0,1.6,1,1,257.896054840422,140.0,11237.981210381085,0,1,2,3,84.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09254331187520584,7023.738256488178,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17145,2,50.0,0.0,2,111,480.0,0.0,0.0,0,52,0.0,0.0,818.4962608185893,480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117164,2,1,0,1,1,11.0,0.0,368.0,32,1.0,2.0,2.0,2.0,1.3,1,1,364.392822516504,480.0,19203.653981643434,0,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024995243116691584,14772.041524341103,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +17146,2,28.0,0.0,5,111,340.0,,,0,53,0.0,158.91927324122688,,680.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,1,5.0,1,,3,117165,2,2,0,0,2,,700.0,,22,3.0,1.0,4.0,4.0,2.5,4,4,125.70710051382812,340.0,21756.348342692374,0,1,0,1,82.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031255245103133385,8702.539337076949,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17147,2,55.0,0.0,7,111,1200.0,,,56,63,0.0,0.0,,1500.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,117166,2,1,0,0,1,,600.0,,43,3.0,1.0,6.0,4.0,2.3,3,3,111.24355185798206,1200.0,16044.638836934522,1,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0934891720059801,6975.929929101967,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17148,2,94.0,0.0,1,111,375.0,1000.0,0.0,72,74,0.0,0.0,639.4502037645229,1375.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,1,117167,1,1,0,0,1,,344.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,917.181831609883,375.0,50076.033487453,5,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0274582450773486,33384.02232496867,8,4,8,8_0,8_4,8_1_0 +17149,2,45.0,0.0,2,111,506.0,107.0,0.0,0,46,0.0,0.0,862.8314749462629,613.0,0.0,203.13993312955742,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,117168,2,3,0,1,1,800.0,0.0,580.0,32,2.0,0.0,3.0,2.0,1.5,2,2,2003.50818889737,506.0,65428.911081173865,0,1,2,3,70.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009368946997138411,43619.27405411591,10,5,10,10_0,10_2,10_0_1 +17151,1,42.0,30.0,6,111,1600.0,0.0,0.0,68,63,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,117170,2,1,0,0,1,,561.0,400.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1506.36308020307,1600.0,34593.04467533642,1,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0462520722016915,14413.76861472351,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +17152,2,71.0,0.0,5,111,960.0,,,86,78,0.0,0.0,,1236.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,117171,1,3,0,0,2,,500.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,92.55211661365105,960.0,17488.0,6,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07067703568161025,11658.666666666666,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +17153,2,43.0,0.0,9,111,800.0,,,56,42,0.0,0.0,,926.0,174.58424239996165,,42,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,117172,2,1,0,0,2,,1000.0,,43,2.0,1.0,5.0,6.0,2.6999999999999997,2,2,86.85852294235069,800.0,25176.82559962493,4,1,0,1,136.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03677985520199159,9324.750222083308,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +17154,2,40.0,0.0,2,111,450.0,200.0,0.0,0,38,0.0,0.0,767.3402445174275,650.0,0.0,379.7008095879578,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,117173,2,1,0,1,1,444.0,0.0,713.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1833.75894948104,450.0,31202.996103013687,0,1,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020831332922456793,19501.872564383553,5,3,5,5_0,5_3,5_0_1 +17155,2,46.0,0.0,2,111,432.0,110.0,0.0,35,35,0.0,0.0,736.6466347367304,1851.0,0.0,208.8354452733768,20,0,0,0,0,0,0,0,0,3,70.0,2,,2,117174,1,1,0,1,2,2457.0,0.0,1640.0,43,2.0,0.0,4.0,4.0,2.5,4,4,1030.1572861073,432.0,102378.68850432834,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018079934672358532,40951.47540173134,9,5,9,9_0,9_4,9_0_1 +17156,2,59.0,0.0,1,112,450.0,0.0,0.0,0,11,2109.365702073203,0.0,767.3402445174275,2450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117175,2,3,4,0,2,,313.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,1923.95268828599,450.0,12114.035796805965,0,1,0,1,80.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.20224473834277235,8076.02386453731,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +17157,2,73.0,0.0,9,111,360.0,,,77,78,0.0,0.0,,612.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,117176,2,1,0,0,2,,380.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,84.66932140342483,360.0,9075.358461481472,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06743535284005701,6050.2389743209815,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +17158,2,47.0,0.0,6,112,800.0,0.0,0.0,0,42,2109.365702073203,105.94618216081791,1364.160434697649,2945.0,90.06329965077386,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,4,117177,2,1,2,0,1,,310.0,,32,2.0,0.0,7.0,3.0,2.0,3,1,762.704703182738,800.0,91769.50295263504,0,1,0,1,130.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03209127112217227,45884.75147631752,10,5,10,10_1,10_0,10_0_0 +17159,2,74.0,0.0,2,221,500.0,0.0,0.0,77,72,1371.087706347582,0.0,852.6002716860306,1925.0,173.19865317456512,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,117178,2,1,4,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,3012.40912212001,500.0,30811.972547226847,5,5,0,1,135.0,1,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062475714498624484,20541.315031484566,5,3,5,5_1,5_1,5_0_1 +17160,2,43.0,0.0,2,111,717.0,1157.0,0.0,56,63,0.0,0.0,1222.6287895977678,1874.0,0.0,2196.5691834663357,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,117179,2,2,1,0,1,,404.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,590.346755967992,717.0,47227.55290248322,4,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039680226580222945,22489.31090594439,6,3,6,6_1,6_4,6_0_1 +17161,2,41.0,0.0,8,211,700.0,0.0,0.0,62,43,0.0,238.3789098618403,1193.6403803604428,940.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,1999.0,6,117180,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,980.803946425082,700.0,84482.74368334142,1,1,0,1,130.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01112653257952076,40229.87794444829,9,5,9,9_1,9_1,9_0_0 +17162,2,34.0,0.0,5,111,200.0,85.0,0.0,90,55,0.0,0.0,341.04010867441224,285.0,0.0,161.37284407488207,20,2,2,2,2,1,2,2,2,2,23.0,2,,3,117181,2,1,0,1,1,,0.0,1100.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1007.64009628942,200.0,18390.177903544507,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.01549740309717555,12260.118602363005,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +17163,1,37.0,181.0,5,111,230.0,118.0,0.0,0,68,0.0,0.0,392.1961249755741,348.0,0.0,224.0234776568951,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,117182,1,1,0,1,2,35.0,150.0,262.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1424.51844008057,230.0,13551.938734184998,0,1,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025678982677376193,10424.568257065383,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +17164,2,80.0,0.0,5,111,225.0,110.0,0.0,0,86,0.0,0.0,383.6701222587138,335.0,0.0,208.8354452733768,71,2,1,2,2,1,2,2,2,0,,2,,3,117183,2,2,0,1,1,,0.0,545.0,11,0.0,1.0,3.0,1.0,1.0,1,1,883.050307400739,225.0,12518.426387527024,0,6,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.026760551975908386,12518.426387527024,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +17165,2,81.0,0.0,5,112,825.0,,,86,77,0.0,0.0,,972.0,203.68161613328857,,71,0,0,0,0,0,0,0,0,0,,1,,3,117184,1,1,0,0,2,,650.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,113.0946872234106,825.0,24397.815650801323,6,5,0,1,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03983963211756113,16265.210433867549,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +17166,2,42.0,0.0,8,112,1000.0,0.0,0.0,37,48,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,70.0,1,1999.0,6,117185,2,1,1,0,1,,2000.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1323.55162670058,1000.0,61207.88035606411,1,1,0,1,90.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016337765565196966,29146.609693363862,8,4,8,8_1,8_1,8_0_0 +17167,1,49.0,19.0,2,111,720.0,45.0,0.0,0,65,0.0,0.0,1227.744391227884,765.0,0.0,85.4326821572905,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,117186,2,2,0,1,1,756.0,168.0,267.0,12,1.0,2.0,3.0,1.0,1.0,1,1,312.854296979228,720.0,18051.711009993636,0,1,2,3,70.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04237825431486728,18051.711009993636,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +17168,2,73.0,0.0,2,111,0.0,,,71,77,0.0,0.0,,477.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,117187,2,1,0,0,2,,900.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,121.88017685543369,0.0,37894.273618867104,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012587653870808265,25262.849079244737,7,4,7,7_1,7_2,7_0_1 +17169,2,69.0,0.0,6,111,3000.0,0.0,0.0,74,74,0.0,158.91927324122688,5115.6016301161835,3120.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,117188,2,2,3,0,1,,600.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,547.198123075502,3000.0,57929.47826223326,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053858589678237506,38619.65217482217,9,5,9,9_1,9_4,9_0_0 +17170,2,51.0,0.0,1,211,600.0,900.0,0.0,75,52,0.0,0.0,1023.1203260232367,1500.0,0.0,1708.65364314581,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,117189,1,2,2,0,1,,600.0,,42,2.0,0.0,6.0,4.0,2.5,4,3,1039.49583469045,600.0,49693.67764001724,5,1,0,1,110.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030184926357555042,19877.471056006896,5,3,5,5_1,5_1,5_1_0 +17171,1,57.0,307.0,2,111,1300.0,0.0,0.0,0,56,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117190,2,1,0,0,1,330.0,0.0,526.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1434.91502630351,1300.0,5025.310221269552,0,4,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.25869049725482995,5025.310221269552,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +17172,2,54.0,0.0,1,111,650.0,0.0,0.0,0,21,0.0,0.0,1108.3803531918397,710.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,117191,2,3,3,0,1,,120.0,200.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1498.78517920226,650.0,19420.0,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036560247167868175,19420.0,5,3,5,5_1,5_3,5_1_0 +17173,2,70.0,0.0,1,111,4000.0,150.0,0.0,74,74,0.0,0.0,6820.802173488245,4150.0,0.0,284.77560719096834,10,0,0,0,0,0,0,0,0,0,,1,,1,117192,2,1,1,0,1,,400.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,369.334425776568,4000.0,117919.76329112437,5,5,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03519342207085624,78613.17552741624,10,5,10,10_1,10_4,10_1_0 +17174,2,42.0,0.0,1,111,2250.0,0.0,0.0,37,21,0.0,529.7309108040896,3836.7012225871376,4047.0,0.0,0.0,12,2,2,1,2,1,1,2,2,2,15.0,1,,1,117193,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,894.807899096945,2250.0,225735.74512291714,4,1,0,1,144.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.01792804235676692,94056.56046788214,10,5,10,10_1,10_4,10_1_0 +17175,2,53.0,0.0,2,111,1421.0,1600.0,0.0,55,63,0.0,0.0,2423.089972131699,3021.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,117194,2,3,2,0,1,,654.0,,43,4.0,1.0,6.0,5.0,3.0,5,5,713.380534029198,1421.0,84534.10064700116,1,1,1,2,98.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0357370573162556,28178.03354900039,8,4,8,8_1,8_3,8_0_1 +17176,2,82.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,612.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,117195,2,1,0,0,2,,300.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,117.27314885371901,360.0,9440.912318931154,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06482424360332234,9440.912318931154,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +17177,2,54.0,0.0,2,112,2300.0,600.0,0.0,63,63,0.0,0.0,3921.9612497557405,2900.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,117196,2,1,1,0,1,,560.0,,43,3.0,2.0,7.0,3.0,2.0,3,3,451.71996066462,2300.0,32142.122844588877,1,1,0,1,181.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0902242833810902,16071.061422294439,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +17178,2,45.0,0.0,9,112,2200.0,0.0,0.0,0,31,0.0,0.0,3751.441195418535,2641.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,117197,2,1,1,0,1,,200.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,257.988422949036,2200.0,42882.79329754015,0,1,1,2,160.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06158647319626666,42882.79329754015,9,5,9,9_1,9_0,9_0_0 +17179,0,45.0,0.0,7,111,210.0,,,0,62,0.0,0.0,,233.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,117198,2,1,0,0,2,,160.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,105.63811588638723,210.0,27416.97928553944,0,1,5,0,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008498383340242423,27416.97928553944,7,4,7,7_1,7_2,7_0_0 +17180,2,40.0,0.0,2,111,345.0,0.0,0.0,48,55,0.0,0.0,588.2941874633611,345.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,117199,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,366.314158241595,345.0,58355.52918922575,1,1,1,2,84.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00591203618223203,38903.686126150504,9,5,9,9_0,9_3,9_0_1 +17181,2,53.0,0.0,2,120,866.0,0.0,0.0,52,63,0.0,0.0,1476.703670560205,1066.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,117200,2,1,2,0,1,,396.0,,43,2.0,1.0,5.0,4.0,2.5,4,3,1900.28694051101,866.0,44902.74079570158,1,1,0,1,120.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023740198952444464,17961.096318280634,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +17182,0,50.0,0.0,1,111,150.0,100.0,0.0,56,48,0.0,0.0,255.78008150580916,250.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,2,60.0,2,,1,117201,2,2,0,1,1,260.0,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,993.46101844253,150.0,60746.93127435328,1,1,5,0,23.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004115434224502916,40497.954182902184,9,5,9,9_0,9_4,9_1_0 +17183,1,48.0,189.0,5,111,1080.0,0.0,0.0,63,67,0.0,0.0,1841.6165868418261,1280.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117202,2,3,3,0,1,,468.0,489.0,43,3.0,2.0,5.0,5.0,2.5999999999999996,3,3,822.640043650786,1080.0,32356.4970612972,1,4,2,3,100.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.039559288435182784,12444.806562037385,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +17184,2,86.0,0.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,117203,2,1,0,0,1,,0.0,386.0,11,0.0,3.0,1.0,1.0,1.0,1,1,1891.75232377744,250.0,23028.0,0,5,3,4,18.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010856348792774015,23028.0,6,3,6,6_0,6_3,6_0_1 +17185,2,45.0,0.0,1,112,1500.0,0.0,0.0,56,21,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,117204,2,2,3,0,1,,380.0,,43,3.0,1.0,5.0,6.0,3.5,6,4,1080.35158131308,1500.0,30079.55840865314,1,1,0,1,150.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04986775336331026,8594.159545329469,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +17186,2,75.0,0.0,2,111,460.0,1793.0,0.0,75,75,0.0,0.0,784.3922499511482,2253.0,0.0,3404.017757956042,42,0,0,0,0,0,0,0,0,0,,1,,2,117205,2,1,2,0,1,,215.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1995.02027056571,460.0,49299.77122983185,5,5,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04570000922512769,32866.51415322124,8,4,8,8_1,8_3,8_0_1 +17187,2,65.0,0.0,5,211,860.0,0.0,0.0,77,75,0.0,0.0,1466.4724672999725,860.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,117206,2,1,2,0,1,,253.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1398.63054577927,860.0,34928.90931582186,5,5,0,1,96.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02462143871209981,23285.93954388124,6,3,6,6_1,6_1,6_0_0 +17188,2,59.0,0.0,5,120,800.0,0.0,0.0,77,48,0.0,529.7309108040896,1364.160434697649,1262.0,85.9065319745843,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,3,117207,1,1,2,0,2,,190.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,584.212664797155,800.0,38060.92877465994,6,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03315736217241787,25373.952516439957,7,4,7,7_1,7_0,7_0_0 +17189,2,64.0,0.0,1,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,1053.0,0.0,0.0,20,2,2,2,2,1,2,1,2,0,,2,,1,117208,2,2,0,0,2,,0.0,500.0,41,0.0,1.0,4.0,2.0,1.5,2,2,782.590290853646,0.0,42622.77897915998,5,5,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.024705099602136567,28415.18598610665,8,4,8,8_0,8_4,8_1_0 +17190,2,47.0,0.0,1,111,0.0,2880.0,0.0,56,11,0.0,0.0,0.0,3027.0,0.0,5467.691658066592,44,2,2,2,2,1,2,2,2,1,3.0,1,,1,117209,2,2,2,0,1,,451.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,227.121603997616,0.0,60127.95883796697,4,1,0,1,100.0,9,7,3,0,1,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05034263691134385,26142.59079911608,7,4,7,7_1,7_3,7_1_0 +17191,2,66.0,0.0,1,111,2653.2,0.0,0.0,0,31,84.37462808292813,0.0,4524.238081674753,2733.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,117210,2,1,2,0,2,,266.0,,12,1.0,2.0,10.0,1.0,1.0,1,1,1291.44232695191,2653.2,170448.16556223383,0,1,0,1,344.0,5,4,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.016034200139291792,170448.16556223383,10,5,10,10_1,10_2,10_1_0 +17192,2,53.0,0.0,2,111,400.0,0.0,0.0,33,43,0.0,0.0,682.0802173488245,400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,30.0,2,,2,117211,1,3,0,1,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,858.807890504286,400.0,89324.27608641713,1,1,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00447806595838536,35729.71043456685,9,5,9,9_0,9_4,9_0_1 +17194,2,50.0,0.0,1,112,570.6,0.0,0.0,11,11,2531.2388424878436,0.0,972.9874300480982,3052.0,112.2327272571182,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,117213,2,2,2,0,1,,132.0,,43,2.0,1.0,7.0,4.0,2.3,3,3,814.973138907199,570.6,21222.572135134116,1,1,0,1,120.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14380914719320909,9227.205276145269,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +17195,2,36.0,0.0,9,111,1500.0,0.0,0.0,0,54,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,1,2008.0,6,117214,2,1,1,0,1,,300.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,286.326745904573,1500.0,28924.13817238786,0,1,1,2,130.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05185979928114021,18077.58635774241,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +17196,1,45.0,270.0,5,111,320.0,0.0,0.0,0,56,0.0,0.0,545.6641738790596,536.0,299.28727268564853,0.0,71,1,2,2,2,1,2,2,1,0,,2,,3,117215,2,1,0,1,1,650.0,0.0,275.0,12,1.0,0.0,3.0,1.0,1.0,1,1,329.644169637227,320.0,5042.095283532977,0,4,2,3,48.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.10630501207514405,5042.095283532977,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17197,1,34.0,106.0,2,111,350.0,900.0,0.0,0,52,0.0,0.0,596.8201901802214,1250.0,0.0,1708.65364314581,50,2,2,2,2,1,2,2,2,3,1.0,2,,2,117216,1,3,0,0,1,,400.0,372.0,32,1.0,0.0,4.0,3.0,1.8,2,1,270.977373248159,350.0,24938.964612346135,0,1,2,3,63.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05012236953017618,13854.980340192296,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +17198,2,63.0,0.0,5,112,730.0,0.0,0.0,77,75,1054.6828510366015,158.91927324122688,1244.7963966616046,1970.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117217,2,2,3,0,1,,192.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1637.78158245455,730.0,31822.902703876698,6,5,0,1,106.0,7,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061905100811561496,21215.268469251132,5,3,5,5_1,5_0,5_0_0 +17199,0,64.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,638.0,0.0,0.0,41,2,2,2,1,2,2,2,2,1,1.0,2,,2,117218,1,3,0,1,1,1044.0,0.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,479.194495644375,0.0,31265.0,0,1,5,0,104.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.020406205021589637,31265.0,8,4,8,8_0,8_3,8_0_1 +17200,2,42.0,0.0,9,112,380.0,1200.0,0.0,90,52,0.0,0.0,647.9762064813832,1580.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,117219,2,1,1,0,1,,290.0,700.0,43,2.0,0.0,6.0,4.0,2.1,2,2,871.781552094564,380.0,54527.57301259757,1,1,3,4,110.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028976165868137407,25965.510958379793,7,4,7,7_1,7_1,7_0_0 +17201,2,56.0,0.0,5,111,1200.0,0.0,0.0,37,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,3,117220,2,1,0,0,1,,600.0,500.0,43,3.0,1.0,3.0,3.0,2.0,3,3,936.094641230401,1200.0,67128.24254691163,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01787623144105697,33564.121273455814,9,5,9,9_0,9_4,9_0_0 +17202,2,72.0,0.0,2,211,300.0,0.0,0.0,78,77,2636.7071275915036,0.0,511.56016301161833,2833.0,45.72444443808519,0.0,31,2,2,2,2,1,2,2,2,0,,1,,2,117221,1,1,2,0,1,,380.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1550.99336693602,300.0,33160.30931798907,5,5,0,1,150.0,2,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.08543346121512597,22106.872878659382,6,3,6,6_1,6_1,6_0_1 +17203,1,44.0,100.0,1,111,1600.0,0.0,0.0,55,21,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,2,2,1,2,2,2,2,1,0,,2,,1,117222,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,257.215332697404,1600.0,31869.21074337141,4,1,1,2,80.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.050205196886866414,11381.860979775505,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +17204,1,68.0,112.0,2,111,450.0,0.0,0.0,0,77,0.0,0.0,767.3402445174275,495.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117223,2,2,0,1,1,,0.0,210.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2157.3085794621,450.0,10268.825864398294,0,5,2,3,36.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04820414782922261,10268.825864398294,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +17205,2,62.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1092.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,1,,1,117224,2,1,1,0,1,,160.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,322.307325967034,0.0,11303.26680460199,0,5,0,1,90.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.09660923862784565,11303.26680460199,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +17206,2,54.0,0.0,1,300,200.0,0.0,0.0,0,56,1265.6194212439218,0.0,341.04010867441224,1460.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,117225,2,2,4,0,1,,150.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1595.83864347219,200.0,12077.373899268407,0,1,0,1,100.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12088720711780235,12077.373899268407,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +17207,2,70.0,0.0,5,221,1200.0,0.0,0.0,0,74,0.0,172.1625460113291,2046.2406520464733,1420.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117226,2,1,2,0,1,,330.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,985.972274807081,1200.0,14165.752891351143,0,5,0,1,120.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10024175989028981,14165.752891351143,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +17208,2,38.0,0.0,1,112,1600.0,0.0,0.0,43,38,0.0,264.8654554020448,2728.320869395298,1800.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,117227,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1402.27252596267,1600.0,22064.52266226642,1,1,1,2,110.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08157892321315724,10506.9155534602,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +17209,2,77.0,0.0,8,111,900.0,,,77,77,0.0,33.1081819252556,,1118.0,267.4187205015285,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,117228,2,1,0,0,2,,600.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,94.21099156736068,900.0,47581.46313586288,5,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02349654521567972,31720.97542390859,8,4,8,8_1,8_2,8_0_0 +17210,2,39.0,0.0,2,111,450.0,500.0,0.0,85,62,0.0,0.0,767.3402445174275,950.0,0.0,949.2520239698945,41,0,0,0,0,0,0,0,0,1,15.0,2,,2,117229,1,1,0,1,1,945.0,350.0,500.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,4,2,1389.76544543904,450.0,29661.499617004694,7,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03202805024245547,10228.103316208517,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +17211,2,58.0,0.0,1,112,500.0,0.0,0.0,46,11,3691.3899786281054,0.0,852.6002716860306,4000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117230,2,1,2,0,1,,150.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,447.523622626641,500.0,91224.57135188692,1,1,0,1,44.0,4,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043847835519780304,60816.380901257944,10,5,10,10_1,10_0,10_1_0 +17212,1,65.0,104.0,5,111,1300.0,0.0,0.0,85,78,0.0,0.0,2216.7607063836795,1624.0,448.9309090284728,0.0,70,2,2,2,2,1,2,2,1,0,,2,,3,117231,2,1,0,1,1,552.0,800.0,420.0,41,0.0,4.0,5.0,4.0,2.3,3,3,312.954573905216,1300.0,23603.57038077601,6,5,2,3,100.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.06880315027775082,10262.421904685223,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +17213,1,76.0,80.0,9,112,300.0,900.0,0.0,0,78,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,117232,2,1,0,0,1,,440.0,405.0,21,0.0,3.0,3.0,2.0,1.5,2,2,379.086576017562,300.0,18403.629068177033,0,5,2,3,65.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06520453088651963,12269.086045451355,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +17214,2,79.0,0.0,7,221,54.0,,,78,75,0.0,0.0,,306.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,117233,2,3,0,0,2,,109.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,73.16621581014174,54.0,28581.05480303034,5,5,0,1,117.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01070639282240752,19054.03653535356,5,3,5,5_1,5_1,5_0_0 +17215,2,37.0,0.0,1,111,714.0,244.0,0.0,0,52,0.0,0.0,1217.5131879676517,958.0,0.0,463.2349876973085,50,2,2,2,1,1,2,2,2,3,20.0,2,,1,117234,2,3,0,1,1,382.0,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,966.44967748379,714.0,18435.088739758034,0,1,2,3,33.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.051966118174084475,18435.088739758034,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +17216,2,66.0,0.0,2,111,492.0,,,86,78,0.0,0.0,,768.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,,2,117235,2,1,0,0,2,,627.0,318.0,41,2.0,2.0,5.0,4.0,2.5,4,4,144.3421087631821,492.0,32956.64164875864,6,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02330334529182611,13182.656659503456,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +17217,2,30.0,0.0,1,120,900.0,0.0,0.0,47,34,1898.4291318658827,463.51454695357836,1534.680489034855,3146.0,133.01656563806603,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,117236,1,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,888.72246592878,900.0,72733.66949807946,1,1,1,2,110.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04325369559531258,34635.08071337117,9,5,9,9_1,9_0,9_1_0 +17218,0,62.0,0.0,1,112,570.0,0.0,0.0,71,71,2636.7071275915036,0.0,971.9643097220749,3070.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,117237,2,1,2,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1673.32106281062,570.0,33829.89153204743,5,5,0,1,140.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09074814789434825,22553.261021364957,6,3,6,6_1,6_0,6_1_0 +17219,2,55.0,0.0,7,112,100.0,100.0,0.0,37,38,0.0,0.0,170.52005433720612,200.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,3,75.0,1,,5,117238,2,1,2,0,1,,250.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,893.253343320836,100.0,130091.01664874438,1,1,1,2,140.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0015373851719524584,86727.34443249625,10,5,10,10_1,10_1,10_0_0 +17220,1,30.0,420.0,6,111,1650.0,0.0,0.0,85,63,0.0,0.0,2813.5808965639008,1650.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,4,117239,1,3,0,0,2,,0.0,699.0,42,1.0,0.0,2.0,3.0,1.8,2,2,1128.34194356897,1650.0,19072.48114691204,6,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08651207922505383,10595.822859395577,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +17221,2,42.0,0.0,2,112,1380.0,0.0,0.0,0,54,0.0,410.5414558731694,2353.1767498534446,1768.0,108.07595958092864,0.0,50,2,2,2,1,1,1,2,2,0,,2,,2,117240,1,3,0,0,1,,800.0,541.0,32,1.0,0.0,2.0,2.0,1.3,1,1,847.24343032548,1380.0,25126.76472700738,0,4,2,3,37.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.07036321704002242,19328.280559236446,5,3,5,5_0,5_0,5_0_1 +17222,1,78.0,377.0,2,111,0.0,0.0,1404.0,0,86,0.0,0.0,884.9668797423002,1404.0,0.0,1680.211935180812,71,0,0,0,0,0,0,0,0,0,,2,,2,117241,2,1,0,0,1,,0.0,386.0,21,0.0,2.0,5.0,2.0,1.5,2,2,317.897563107798,0.0,21976.002866417755,0,5,2,3,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06388786935159614,14650.668577611837,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +17223,2,79.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1103.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117242,2,1,0,1,1,881.0,0.0,278.0,21,0.0,9.0,3.0,2.0,1.5,2,2,349.644914343021,0.0,10698.362954781742,0,7,2,3,64.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1030998859042264,7132.2419698544945,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +17224,2,63.0,0.0,2,111,480.0,,,0,77,0.0,0.0,,1080.0,831.3535352379125,,60,0,0,0,0,0,0,0,0,0,,1,,2,117243,2,2,0,0,2,,400.0,416.0,21,0.0,0.0,4.0,3.0,2.0,3,3,167.7905132451771,480.0,16572.127995009014,0,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06516966320349812,8286.063997504507,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +17225,1,52.0,91.0,6,111,360.0,600.0,0.0,0,62,0.0,0.0,613.872195613942,960.0,0.0,1139.1024287638734,60,0,0,0,0,0,0,0,0,0,,2,,4,117244,1,1,0,0,1,,120.0,261.0,12,1.0,0.0,1.0,1.0,1.0,1,1,463.771435146904,360.0,11658.614678899083,0,4,2,3,29.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08234254467106655,11658.614678899083,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +17226,2,74.0,0.0,7,111,200.0,0.0,0.0,0,75,0.0,0.0,341.04010867441224,200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,117245,1,3,0,1,1,48.0,0.0,448.0,21,1.0,2.0,2.0,2.0,1.5,2,2,495.617856269783,200.0,34913.83395501997,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0057283883591147024,23275.889303346645,6,3,6,6_0,6_4,6_0_0 +17227,2,27.0,0.0,2,111,450.0,1300.0,0.0,68,67,0.0,0.0,767.3402445174275,1750.0,0.0,2468.055262321726,71,2,2,2,2,2,2,2,1,0,,2,,2,117246,1,3,0,0,2,,380.0,600.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2234.68837305455,450.0,6094.561687614956,1,1,2,3,70.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.28714123996090757,4063.0411250766374,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +17228,2,50.0,0.0,7,111,500.0,1100.0,0.0,46,31,0.0,0.0,852.6002716860306,1700.0,0.0,2088.354452733768,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,117247,2,1,2,0,1,,563.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,548.374238848601,500.0,86820.98565809187,1,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019580519469045637,37748.25463395299,9,5,9,9_1,9_4,9_0_0 +17229,1,51.0,546.0,9,111,560.0,820.0,0.0,52,52,0.0,0.0,954.9123042883542,1380.0,0.0,1556.773319310627,41,2,2,2,2,1,2,2,2,3,20.0,2,2009.0,6,117248,2,3,0,0,1,,0.0,960.0,43,3.0,1.0,4.0,6.0,3.3,5,3,794.449205196639,560.0,51112.713769263275,1,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.026999153404957055,15488.701142200993,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +17230,2,56.0,0.0,1,111,420.0,0.0,0.0,68,63,0.0,794.5963662061343,716.1842282162656,1020.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,117249,1,1,3,0,2,,290.0,638.0,43,2.0,3.0,3.0,2.0,1.5,2,2,1244.46045908723,420.0,33643.74338071719,1,1,2,3,65.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03031767269347946,22429.16225381146,6,3,6,6_1,6_3,6_1_0 +17231,2,66.0,0.0,5,212,0.0,0.0,0.0,71,71,0.0,0.0,0.0,2753.0,266.03313127613205,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117250,2,1,2,0,1,,105.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,733.994930373728,0.0,29272.172254725578,5,5,0,1,100.0,2,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09404836703075793,19514.781503150385,5,3,5,5_1,5_0,5_0_0 +17232,2,56.0,0.0,2,111,485.0,288.0,0.0,68,68,0.0,0.0,827.0222635354497,773.0,0.0,546.7691658066592,71,2,1,2,2,1,2,2,2,3,90.0,2,,2,117251,2,1,0,1,1,657.0,0.0,311.0,43,3.0,0.0,3.0,3.0,2.0,3,3,215.239811835607,485.0,42075.42124385137,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018371770909197047,21037.710621925686,5,3,5,5_0,5_4,5_0_1 +17233,2,79.0,0.0,2,111,503.0,0.0,0.0,0,77,2172.646673135399,0.0,857.7158733161468,2575.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,117252,2,1,1,0,1,,274.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,953.387138377192,503.0,25124.17797532255,0,5,0,1,119.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10249091542534106,25124.17797532255,7,4,7,7_1,7_2,7_0_1 +17234,2,82.0,0.0,2,111,350.0,0.0,0.0,0,78,2109.365702073203,0.0,596.8201901802214,2350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117253,2,2,3,0,2,,80.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1315.46984774205,350.0,21065.2593168103,0,5,0,1,100.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11155808550263964,21065.2593168103,5,3,5,5_1,5_2,5_0_1 +17235,1,34.0,270.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,268.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117254,1,2,0,1,2,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,511.287414456972,0.0,4850.920741392376,0,4,2,3,37.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05524724362391356,4850.920741392376,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17236,2,65.0,0.0,7,111,1000.0,0.0,0.0,72,34,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,5,117255,2,1,0,0,1,,0.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,948.373145393003,1000.0,130325.50933654542,5,1,0,1,112.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0076730948920955685,65162.75466827271,10,5,10,10_0,10_4,10_0_0 +17237,2,78.0,0.0,2,111,420.0,0.0,0.0,86,90,0.0,0.0,716.1842282162656,998.0,0.0,0.0,12,2,1,2,2,1,2,2,2,0,,2,,2,117256,2,1,0,1,2,,0.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,616.811136498359,420.0,104622.07182521597,6,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009539096125598445,69748.04788347731,10,5,10,10_0,10_4,10_0_1 +17238,2,69.0,0.0,2,111,388.0,1155.0,0.0,75,74,0.0,0.0,661.6178108283598,1543.0,0.0,2192.7721753704564,10,0,0,0,0,0,0,0,0,0,,1,,2,117257,2,2,3,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2286.494210997,388.0,78226.97502668004,5,5,0,1,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01972465379715559,52151.31668445336,10,5,10,10_1,10_4,10_0_1 +17239,2,67.0,0.0,8,111,660.0,,,45,77,0.0,0.0,,786.0,174.58424239996165,,41,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,117258,2,1,0,0,2,,480.0,,42,2.0,0.0,4.0,4.0,2.5,4,4,77.34488430930091,660.0,58798.152900871195,1,5,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013367766863784493,23519.261160348477,6,3,6,6_1,6_3,6_0_0 +17240,2,79.0,0.0,8,221,540.0,,,86,71,0.0,0.0,,804.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,117259,2,1,0,0,2,,1440.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,85.08287309319246,540.0,14285.631720430109,5,5,0,1,47.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0562803252760735,9523.75448028674,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +17241,2,68.0,0.0,6,111,1200.0,0.0,0.0,75,74,0.0,582.7040018844986,2046.2406520464733,1700.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,117260,2,2,5,0,1,,240.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1775.46532711298,1200.0,35799.47166081841,5,5,0,1,190.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04748673433246798,23866.314440545608,6,3,6,6_1,6_2,6_0_0 +17242,2,63.0,0.0,7,111,1200.0,,,77,21,0.0,0.0,,1266.0,91.44888887617039,,31,0,0,0,0,0,0,0,0,0,,1,,5,117261,2,1,0,0,2,,400.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,106.21763597323519,1200.0,68630.52581937879,6,1,1,2,99.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01844660207517348,45753.68387958586,10,5,10,10_1,10_3,10_0_0 +17243,1,48.0,386.0,2,111,436.0,1445.0,0.0,56,42,0.0,0.0,743.4674369102187,1881.0,0.0,2743.338349272995,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,117262,1,2,0,0,1,,0.0,625.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,4,2,924.77274226836,436.0,34367.69738067134,1,1,2,3,108.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05473162717784779,13218.345146412057,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +17244,2,44.0,0.0,8,111,230.0,600.0,0.0,0,46,0.0,0.0,392.1961249755741,830.0,0.0,1139.1024287638734,42,1,2,2,2,1,2,2,2,2,10.0,2,2001.0,6,117263,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2139.4117527332,230.0,26121.04871387697,0,1,1,2,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03177514077216422,26121.04871387697,7,4,7,7_0,7_3,7_0_0 +17245,2,48.0,0.0,5,120,1200.0,0.0,0.0,21,43,0.0,264.8654554020448,2046.2406520464733,1475.0,103.91919190473907,0.0,33,0,0,0,0,0,0,0,0,2,7.0,2,,3,117264,2,1,0,0,1,,446.0,,43,2.0,6.0,7.0,3.0,2.0,3,2,1064.8703796624,1200.0,13279.161092214512,1,1,0,1,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11107629388311158,6639.580546107256,1,1,1_0,1_0_0,1_0_0,1_0_0_0 +17246,2,42.0,0.0,7,111,1860.0,,,64,54,0.0,0.0,,2060.0,277.1178450793042,,41,0,0,0,0,0,0,0,0,0,,1,,5,117265,2,1,0,0,2,,580.0,,43,3.0,2.0,6.0,6.0,3.3,5,5,136.3227399239344,1860.0,57461.29555508821,4,1,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03585021848358911,17412.513804572187,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +17247,2,82.0,0.0,1,211,210.0,800.0,0.0,0,74,0.0,0.0,358.0921141081328,1010.0,0.0,1518.8032383518312,44,0,0,0,0,0,0,0,0,0,,2,,1,117266,2,1,0,0,2,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1261.87732856784,210.0,21618.50364202824,0,5,0,1,56.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04671923722030755,21618.50364202824,6,3,6,6_0,6_2,6_1_0 +17248,2,52.0,0.0,9,112,1200.0,0.0,0.0,0,54,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,117267,2,1,1,0,1,,500.0,,22,3.0,0.0,4.0,3.0,2.0,3,3,2304.71834173054,1200.0,83203.88290493304,0,1,1,2,105.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015143524028075095,41601.94145246652,9,5,9,9_1,9_0,9_0_0 +17249,2,72.0,0.0,2,111,336.0,1676.0,0.0,77,77,0.0,0.0,572.9473825730125,2122.0,152.4148147936173,3181.8927843470865,50,0,0,0,0,0,0,0,0,0,,1,,2,117268,2,1,3,0,1,,350.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,2189.76669962464,336.0,59613.0,5,5,0,1,130.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03559626256017983,39742.0,9,5,9,9_1,9_3,9_0_1 +17250,2,61.0,0.0,7,111,2250.0,,,22,63,0.0,0.0,,2250.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,117269,2,1,0,0,2,,0.0,,43,3.0,1.0,4.0,7.0,3.8,6,5,71.53939176208732,2250.0,26243.297527460843,1,1,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08573617692843714,6906.13092827917,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17251,2,62.0,0.0,8,111,250.0,,,0,75,0.0,0.0,,350.0,138.5589225396521,,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,117270,2,1,0,0,2,,120.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,120.78313042965884,250.0,33285.66273816161,0,5,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010515037743224178,33285.66273816161,8,4,8,8_1,8_2,8_0_0 +17252,0,37.0,0.0,5,111,880.0,,,81,21,0.0,0.0,,1110.0,318.68552184119983,,43,0,0,0,0,0,0,0,0,0,,1,,3,117271,2,1,0,0,2,,320.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,117.98356194527894,880.0,11896.396846025951,4,4,5,0,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09330556254693209,5664.950879059977,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17253,2,46.0,0.0,7,112,1570.0,0.0,0.0,54,69,0.0,0.0,2677.164853094136,1570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,5,117272,2,1,1,0,1,,534.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,2014.08168213349,1570.0,58562.602461190385,1,1,1,2,168.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02680891787622389,23425.040984476153,6,3,6,6_1,6_1,6_0_0 +17254,2,87.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,555.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,117273,1,1,0,0,2,,315.0,300.0,21,0.0,0.0,4.0,2.0,1.5,2,2,376.451038826325,0.0,35462.40867278373,0,5,2,3,80.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015650375165462038,23641.60578185582,6,3,6,6_0,6_3,6_1_0 +17255,1,46.0,291.0,2,112,415.0,1238.0,0.0,0,52,0.0,0.0,707.6582254994054,1723.0,96.99124577775646,2350.348011349459,71,0,0,0,0,0,0,0,0,0,,1,,2,117274,1,3,4,1,2,,148.0,267.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1105.28290123843,415.0,12165.496007619065,0,4,2,3,85.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.14163006579599477,8110.330671746044,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +17256,1,25.0,351.0,7,300,548.0,0.0,0.0,0,62,0.0,0.0,934.4498977678895,608.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,117275,2,1,1,0,1,,170.0,364.0,32,1.0,0.0,4.0,2.0,1.3,1,1,668.753232490804,548.0,11034.826275353042,0,4,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0550982847240654,8488.327904117725,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +17257,2,59.0,0.0,6,112,1000.0,0.0,0.0,52,78,632.8097106219609,0.0,1705.2005433720612,1750.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,117276,2,2,2,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1730.19024503267,1000.0,31512.36064385751,1,5,0,1,98.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055533764029230714,21008.24042923834,5,3,5,5_1,5_0,5_0_0 +17258,2,73.0,0.0,2,111,300.0,1540.0,0.0,0,77,0.0,0.0,511.56016301161833,1840.0,0.0,2923.696233827275,70,0,0,0,0,0,0,0,0,0,,1,,2,117277,2,1,2,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,262.77336082829,300.0,16418.64807980649,0,5,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11206769223971856,16418.64807980649,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +17259,2,31.0,0.0,1,111,429.0,740.0,0.0,84,46,0.0,0.0,731.5310331066142,1169.0,0.0,1404.892995475444,31,1,2,2,1,2,2,2,2,2,5.0,2,,1,117278,2,1,0,0,1,,280.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,2653.97195520284,429.0,29169.45894487129,3,1,1,2,64.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04007616329837818,16205.254969372938,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +17260,2,77.0,0.0,1,211,605.0,965.0,0.0,0,75,0.0,0.0,1031.646328740097,1570.0,0.0,1832.0564062618964,33,0,0,0,0,0,0,0,0,0,,1,,1,117279,2,1,1,0,2,,125.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,2471.71607953041,605.0,21922.9285411527,0,5,0,1,62.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07161451979615173,21922.9285411527,6,3,6,6_1,6_1,6_1_0 +17261,2,57.0,0.0,9,111,400.0,,,0,68,0.0,0.0,,470.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,2,12.0,2,2010.0,6,117280,2,2,0,0,2,,200.0,690.0,22,2.0,0.0,4.0,3.0,2.0,3,3,117.69401893494941,400.0,28879.0,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01627480175906368,14439.5,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +17262,2,53.0,0.0,5,111,200.0,0.0,0.0,0,38,949.2145659329414,0.0,341.04010867441224,1100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,50.0,2,,3,117281,2,1,0,1,1,,244.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,837.932078730558,200.0,67155.08315693062,0,1,0,1,63.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016379996096936952,67155.08315693062,10,5,10,10_0,10_4,10_0_0 +17263,2,30.0,0.0,1,111,600.0,0.0,0.0,46,42,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,40.0,2,,1,117282,1,1,0,0,2,,0.0,863.0,43,2.0,0.0,2.0,2.0,1.5,2,2,971.585450698936,600.0,24279.37244567871,1,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02471233559855824,16186.24829711914,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +17264,0,29.0,0.0,2,111,0.0,,,0,64,0.0,0.0,,316.0,0.0,,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,117283,2,1,0,0,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,131.65830230675104,0.0,25398.0,0,1,5,0,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012441924560989054,25398.0,7,4,7,7_0,7_2,7_0_1 +17265,2,54.0,0.0,9,111,900.0,,,54,21,0.0,0.0,,986.0,119.1606733841008,,44,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,117284,2,2,0,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,141.51212921344356,900.0,121902.83525084282,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008088409083932139,53001.23271775775,10,5,10,10_1,10_2,10_0_0 +17266,1,43.0,500.0,9,211,600.0,,,85,81,0.0,0.0,,1015.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,117285,2,1,0,0,2,,500.0,550.0,42,2.0,0.0,4.0,8.0,3.8999999999999995,5,3,8.154053824490994,600.0,5148.962732919254,6,4,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1971270822200214,1320.2468545946808,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +17267,2,35.0,0.0,2,111,920.0,1400.0,0.0,52,52,0.0,0.0,1568.7844999022964,2320.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,2,1.0,1,,2,117286,2,1,1,0,1,,278.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,808.854623617577,920.0,46623.68536627862,1,1,1,2,152.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04976011616786475,22201.754936323152,6,3,6,6_1,6_1,6_0_1 +17268,2,64.0,0.0,5,400,1000.0,0.0,0.0,0,75,0.0,529.7309108040896,1705.2005433720612,1400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,117287,2,1,1,0,1,,440.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,928.64793883216,1000.0,31709.927465558383,0,5,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04415021136584449,31709.927465558383,8,4,8,8_1,8_0,8_0_0 +17269,0,63.0,0.0,2,112,1100.0,0.0,0.0,86,78,0.0,0.0,1875.7205977092674,1205.0,145.4868686666347,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,117288,2,3,2,0,1,,130.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2568.16645973926,1100.0,25141.003053493252,5,5,0,1,84.0,6,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04792967080255653,16760.668702328836,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +17270,1,57.0,280.0,2,111,600.0,0.0,0.0,0,52,1054.6828510366015,0.0,1023.1203260232367,1670.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,117289,1,3,0,0,2,,400.0,473.0,32,2.0,1.0,3.0,2.0,1.5,2,2,2548.16894437991,600.0,16993.81487560537,0,1,2,3,78.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09827104815630808,11329.209917070248,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +17271,2,50.0,0.0,2,111,1588.0,0.0,0.0,34,37,3164.0485531098047,0.0,2707.858462874833,4728.0,193.98249155551292,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,2,117290,1,1,2,0,2,,800.0,,43,2.0,0.0,9.0,4.0,2.5,4,3,1394.45310081386,1588.0,239532.24108981114,1,1,0,1,220.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019738470188767888,95812.89643592446,10,5,10,10_1,10_3,10_0_1 +17272,2,93.0,0.0,1,120,500.0,0.0,0.0,0,71,0.0,662.163638505112,852.6002716860306,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117291,2,3,4,0,2,,300.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,2099.92442711435,500.0,33207.53944642567,0,5,0,1,130.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03011364336744426,22138.359630950446,6,3,6,6_1,6_0,6_1_0 +17273,2,52.0,0.0,1,111,450.0,3500.0,0.0,54,46,0.0,0.0,767.3402445174275,3950.0,0.0,6644.764167789262,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,117292,2,2,3,0,1,,220.0,896.0,43,2.0,0.0,4.0,3.0,2.0,2,2,715.963207153817,450.0,55647.85753674588,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07098206786113376,27823.92876837294,7,4,7,7_1,7_4,7_1_0 +17274,2,78.0,0.0,1,120,300.0,1700.0,0.0,77,78,0.0,0.0,511.56016301161833,2000.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,0,,1,,1,117293,2,2,2,0,1,,190.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,233.425494937377,300.0,36994.65435728727,5,5,0,1,85.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0540618647408997,24663.10290485818,7,4,7,7_1,7_0,7_1_0 +17275,1,35.0,143.0,2,111,840.0,,,0,55,0.0,0.0,,960.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,117294,2,1,0,0,2,,0.0,287.0,32,1.0,0.0,3.0,2.0,1.3,1,1,95.50756152399389,840.0,19719.758117462417,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.048682138709900916,15169.04470574032,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +17276,2,48.0,0.0,9,111,1500.0,0.0,0.0,21,22,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2010.0,6,117295,2,1,1,0,1,,775.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,1063.46493228956,1500.0,27318.614079038416,1,1,0,1,148.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054907617043097025,9756.647885370863,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17277,2,62.0,0.0,6,111,1800.0,0.0,0.0,74,75,0.0,0.0,3069.36097806971,1860.0,83.13535352379125,0.0,30,0,0,0,0,0,0,0,0,0,,1,,4,117296,2,1,2,0,1,,626.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,615.400578732787,1800.0,69096.75032224155,5,5,0,1,103.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026918776806805697,46064.500214827705,10,5,10,10_1,10_4,10_0_0 +17278,2,78.0,0.0,1,111,324.0,1225.0,0.0,0,78,0.0,0.0,552.4849760525478,1549.0,0.0,2325.6674587262414,70,0,0,0,0,0,0,0,0,0,,1,,1,117297,2,1,2,0,1,,190.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1800.24288321173,324.0,22833.744966544684,0,5,0,1,80.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06783819308963765,22833.744966544684,6,3,6,6_1,6_2,6_1_0 +17279,1,63.0,271.0,1,111,180.0,300.0,0.0,0,68,0.0,0.0,306.936097806971,480.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,1,,1,117298,2,1,2,0,1,,168.0,387.0,11,0.0,9.0,3.0,1.0,1.0,1,1,338.770027983308,180.0,4839.267902296582,0,7,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09918855696585951,4839.267902296582,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +17280,2,37.0,0.0,9,111,600.0,,,63,42,0.0,0.0,,710.0,152.4148147936173,,10,0,0,0,0,0,0,0,0,0,,1,2004.0,6,117299,2,2,0,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,109.02015157438264,600.0,59459.77476313531,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0119408457705796,28314.178458635863,8,4,8,8_1,8_2,8_0_0 +17281,2,78.0,0.0,5,111,313.0,2198.0,0.0,0,77,0.0,0.0,533.7277700754552,2511.0,0.0,4172.911897371656,70,0,0,0,0,0,0,0,0,0,,1,,3,117300,2,1,2,0,2,,193.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1730.75079854152,313.0,26805.10411107393,0,5,0,1,120.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09367618904202041,26805.10411107393,7,4,7,7_1,7_2,7_0_0 +17282,2,28.0,0.0,6,112,0.0,0.0,0.0,54,67,0.0,0.0,0.0,590.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,117301,1,2,2,0,1,,509.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,762.185091377381,0.0,47568.644459319665,1,1,1,2,107.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012403128293987091,26427.024699622034,7,4,7,7_1,7_0,7_0_0 +17284,2,41.0,0.0,2,111,650.0,300.0,0.0,54,63,0.0,0.0,1108.3803531918397,950.0,0.0,569.5512143819367,43,2,1,2,2,1,2,2,2,3,60.0,2,,2,117303,2,1,0,1,2,625.0,0.0,364.0,43,2.0,0.0,3.0,4.0,2.1,2,2,739.355298667173,650.0,36791.905076842755,1,1,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02582089723312373,17519.95479849655,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +17285,1,43.0,520.0,2,111,1080.0,,,0,52,0.0,0.0,,1164.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,2,,2,117304,2,2,0,0,2,,200.0,700.0,32,1.0,0.0,5.0,4.0,1.9,1,1,99.34480041553256,1080.0,14003.55894532023,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08312172673711568,7370.29418174749,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17286,2,31.0,0.0,6,111,1290.0,,,0,55,0.0,0.0,,1422.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,,4,117305,2,2,0,0,2,,150.0,,22,3.0,3.0,7.0,6.0,3.5,6,6,133.42066563318616,1290.0,39934.60352948791,0,1,0,1,168.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03560821629166765,11409.886722710831,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17287,2,57.0,0.0,5,111,726.0,,,54,52,0.0,0.0,,876.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,3,117306,2,2,0,0,2,,270.0,411.0,43,3.0,1.0,4.0,3.0,2.0,3,3,112.1215773596662,726.0,33943.0477440182,4,1,2,3,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025807935887382946,16971.5238720091,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +17288,2,29.0,0.0,2,111,0.0,,,0,56,0.0,0.0,,291.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,117307,2,3,0,0,2,,327.0,370.0,32,1.0,0.0,3.0,3.0,1.6,1,1,129.78535489407943,0.0,7409.676878339171,0,4,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039272967604118476,4631.048048961981,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +17289,2,38.0,0.0,9,111,2400.0,0.0,0.0,22,48,0.0,688.6501840453165,4092.4813040929466,2920.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,117308,1,2,1,0,1,,450.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,304.893052208639,2400.0,50880.45430041758,1,1,1,2,120.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05738942468475631,19569.40550016061,5,3,5,5_1,5_2,5_0_0 +17290,1,43.0,210.0,9,111,0.0,0.0,700.0,0,63,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,71,2,2,2,2,1,2,2,2,0,,2,2006.0,6,117309,1,3,0,0,1,,0.0,408.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1743.79713489003,0.0,3299.672428727674,0,4,2,3,37.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,1,1,0.21214227021617238,3299.672428727674,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +17291,2,58.0,0.0,2,111,250.0,0.0,0.0,0,43,0.0,0.0,426.3001358430153,977.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,117310,2,1,0,1,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,265.177777948328,250.0,50284.57299878813,0,1,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019429418243713553,50284.57299878813,10,5,10,10_0,10_4,10_0_1 +17292,2,58.0,0.0,6,111,1300.0,0.0,0.0,34,90,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,12,2,2,2,2,1,2,2,2,3,25.0,2,,4,117311,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.5,4,4,687.351268360292,1300.0,169080.4953923694,1,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,1,0,0.007688645558928667,67632.19815694776,10,5,10,10_0,10_4,10_0_0 +17293,1,59.0,182.0,2,221,250.0,160.0,0.0,77,78,0.0,0.0,426.3001358430153,410.0,0.0,303.7606476703662,60,2,2,2,2,1,2,2,2,0,,2,,2,117312,1,3,0,1,2,689.0,260.0,283.0,41,0.0,5.0,3.0,2.0,1.5,2,2,663.979634154904,250.0,25185.06017606209,5,7,2,3,60.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.016279492569555066,16790.040117374727,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +17294,2,87.0,0.0,2,111,460.0,161.0,0.0,85,78,0.0,0.0,784.3922499511482,621.0,0.0,305.659151718306,71,0,0,0,0,0,0,0,0,0,,2,,2,117313,2,1,0,1,1,,0.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,436.098598972093,460.0,40137.609236083044,6,5,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015471773526603854,20068.804618041522,5,3,5,5_0,5_3,5_0_1 +17295,2,57.0,0.0,9,211,360.0,,,52,52,0.0,0.0,,404.0,60.965925917446924,,60,0,0,0,0,0,0,0,0,1,20.0,1,2012.0,6,117314,2,3,0,0,1,,100.0,710.0,43,2.0,2.0,4.0,2.0,1.5,2,2,256.27959975005115,360.0,53331.70106465576,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007575231840256091,35554.46737643718,9,5,9,9_1,9_2,9_0_0 +17296,0,68.0,0.0,5,111,304.0,,,77,78,0.0,0.0,,634.0,457.2444443808519,,71,0,0,0,0,0,0,0,0,0,,1,,3,117315,2,1,0,0,2,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,110.82241601418218,304.0,22361.397540983606,5,5,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02835243185664112,14907.598360655737,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +17297,2,29.0,0.0,1,111,660.0,1300.0,0.0,0,55,0.0,0.0,1125.4323586255605,1960.0,0.0,2468.055262321726,50,2,2,2,2,1,1,2,2,0,,2,,1,117316,1,1,0,0,1,,0.0,347.0,22,2.0,2.0,4.0,4.0,2.3,3,3,426.102787478096,660.0,20690.30891572572,0,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.09473034008256383,8995.78648509814,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +17298,2,78.0,0.0,2,111,635.0,2000.0,0.0,77,75,0.0,0.0,1082.8023450412588,2635.0,0.0,3797.008095879578,71,2,2,2,2,1,2,2,2,0,,1,,2,117317,2,1,2,0,1,,630.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,611.891769864372,635.0,35974.92440054018,5,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0732454631637929,23983.282933693452,6,3,6,6_1,6_4,6_0_1 +17299,2,60.0,0.0,1,111,400.0,1000.0,0.0,0,33,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,117318,2,1,3,0,1,,350.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,499.681177331216,400.0,39043.43828446365,0,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0358574977387966,39043.43828446365,9,5,9,9_1,9_4,9_1_0 +17300,2,36.0,0.0,8,111,1357.0,0.0,0.0,33,38,0.0,0.0,2313.957137355887,1357.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,2,2003.0,6,117319,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,892.937689578059,1357.0,102331.08463543488,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01326087771701486,48729.087921635655,10,5,10,10_0,10_4,10_0_0 +17301,2,71.0,0.0,1,400,360.0,1200.0,0.0,0,75,0.0,0.0,613.872195613942,1560.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,117320,2,1,2,0,1,,120.0,285.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1585.01276160204,360.0,17467.0,0,5,2,3,100.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08931127268563577,17467.0,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +17302,2,74.0,0.0,5,111,500.0,2200.0,0.0,78,77,0.0,0.0,852.6002716860306,2700.0,0.0,4176.708905467536,71,0,0,0,0,0,0,0,0,0,,1,,3,117321,2,1,2,0,2,,200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,343.748267998478,500.0,34594.55680213558,5,5,0,1,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07804696026148612,23063.037868090385,6,3,6,6_1,6_2,6_0_0 +17303,2,67.0,0.0,2,111,657.0,2418.0,0.0,72,75,0.0,0.0,1120.3167569954442,3075.0,0.0,4590.58278791841,50,0,0,0,0,0,0,0,0,0,,1,,2,117322,2,1,1,0,1,,648.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,797.349595513866,657.0,36446.94836225663,5,5,0,1,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08436920340865568,24297.965574837755,7,4,7,7_1,7_3,7_0_1 +17304,1,27.0,288.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,936.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,3.0,2,,2,117323,2,1,0,1,1,650.0,0.0,292.0,32,1.0,0.0,3.0,2.0,1.3,1,1,199.530881857857,0.0,14145.394326817008,0,1,2,3,77.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0661699475019597,10881.072559090006,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17305,1,53.0,198.0,6,111,588.0,,,85,90,0.0,0.0,,588.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,117324,2,1,0,0,2,,0.0,650.0,42,1.0,1.0,3.0,3.0,2.0,3,2,82.0205643185619,588.0,18868.8396272408,6,1,3,4,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03116248861170609,9434.4198136204,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +17306,1,50.0,169.0,2,111,320.0,920.0,0.0,0,56,0.0,0.0,545.6641738790596,1240.0,0.0,1746.6237241046058,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,117325,1,3,0,0,1,,0.0,280.0,32,1.0,1.0,4.0,2.0,1.5,2,1,1662.36584928814,320.0,14892.939281538778,0,1,2,3,76.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08326093167767752,9928.626187692518,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17307,2,39.0,0.0,9,211,1700.0,0.0,0.0,55,63,0.0,0.0,2898.840923732504,1868.0,232.77898986661552,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,117326,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,927.85984576108,1700.0,53389.08642729353,1,1,1,2,99.0,4,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03498842413315847,25423.374489187394,7,4,7,7_1,7_2,7_0_0 +17308,2,47.0,0.0,1,111,0.0,0.0,0.0,56,47,0.0,0.0,0.0,275.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,1,117327,2,1,0,1,1,,0.0,,43,2.0,2.0,1.0,2.0,1.5,2,2,818.483671002485,0.0,27878.744664031277,1,1,1,2,17.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009864145725140943,18585.82977602085,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +17309,1,43.0,80.0,2,111,500.0,700.0,0.0,0,46,0.0,0.0,852.6002716860306,1200.0,0.0,1328.9528335578523,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,117328,2,3,0,2,1,900.0,350.0,300.0,32,1.0,0.0,3.0,2.0,1.3,1,1,384.639353174656,500.0,20921.67936945528,0,1,2,3,63.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.057356772313026966,16093.5995149656,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +17310,2,60.0,0.0,6,111,540.0,800.0,0.0,0,75,0.0,0.0,920.8082934209131,1340.0,0.0,1518.8032383518312,71,2,2,2,1,2,2,2,2,0,,2,,4,117329,1,2,0,0,2,,372.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2513.29994536338,540.0,15318.504666698398,0,5,1,2,75.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,1,0,0,0.08747590115065784,15318.504666698398,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +17311,2,55.0,0.0,8,111,1260.0,,,55,54,0.0,0.0,,1536.0,382.4226262094398,,41,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,117330,2,1,0,0,2,,780.0,,43,4.0,0.0,6.0,5.0,3.0,5,5,38.454331653600065,1260.0,37468.57966359096,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04099434816560621,12489.52655453032,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17312,1,58.0,87.0,2,111,247.0,90.0,0.0,0,63,0.0,0.0,421.1845342128991,337.0,0.0,170.865364314581,70,0,0,0,0,0,0,0,0,3,90.0,2,,2,117331,2,1,0,1,1,337.0,132.0,225.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1429.04046311877,247.0,11122.825347324519,0,1,2,3,48.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03029805732597086,11122.825347324519,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17313,1,34.0,150.0,2,111,250.0,180.0,0.0,84,47,0.0,0.0,426.3001358430153,520.0,124.70303028568689,341.730728629162,50,1,2,2,2,1,2,2,2,2,30.0,2,,2,117332,2,1,0,1,2,50.0,330.0,330.0,42,1.0,0.0,2.0,2.0,1.5,2,2,337.244601316516,250.0,12473.234985504152,3,1,2,3,49.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04168926510278378,8315.489990336102,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +17314,2,38.0,0.0,2,111,250.0,400.0,0.0,0,52,0.0,0.0,426.3001358430153,650.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,117333,2,1,0,0,1,,0.0,380.0,12,1.0,0.0,3.0,1.0,1.0,1,1,364.025082282164,250.0,18602.057064939967,0,1,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03494237211136615,18602.057064939967,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +17315,2,91.0,0.0,2,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,867.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117334,2,1,0,0,1,,399.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,2039.82717314701,0.0,22958.09208422491,5,5,2,3,70.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.037764462169560586,15305.394722816607,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +17316,2,56.0,0.0,1,112,692.0,1210.77,0.0,11,54,0.0,0.0,1179.9987760134663,1903.0,0.0,2298.6517461240583,42,0,0,0,0,0,0,0,0,0,,5,,1,117335,1,1,3,0,1,,377.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,423.638191152402,692.0,43042.13903218475,1,1,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04421248671161608,28694.759354789832,8,4,8,8_1,8_1,8_1_0 +17317,2,53.0,0.0,2,111,403.0,0.0,0.0,74,38,0.0,0.0,687.1958189789407,403.0,0.0,0.0,31,1,2,2,2,2,2,2,1,2,10.0,2,,2,117336,2,1,0,0,1,,0.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,345.034141369809,403.0,77581.09133587655,5,1,0,1,100.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0051945647200974205,51720.72755725103,10,5,10,10_0,10_2,10_0_1 +17318,2,35.0,0.0,2,111,1100.0,0.0,0.0,38,37,0.0,794.5963662061343,1875.7205977092674,1790.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,117337,2,1,2,0,1,,700.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1308.23481772411,1100.0,67957.41915342753,1,1,1,2,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02634002324247652,32360.67578734644,8,4,8,8_1,8_2,8_0_1 +17319,2,56.0,0.0,6,120,800.0,0.0,0.0,78,48,0.0,264.8654554020448,1364.160434697649,1100.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,117338,2,2,1,0,1,,400.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2944.47842111838,800.0,49490.56893893439,5,1,0,1,83.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022226456950965187,32993.71262595626,8,4,8,8_1,8_1,8_0_0 +17320,2,73.0,0.0,1,111,380.0,0.0,0.0,0,77,0.0,529.7309108040896,647.9762064813832,840.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117339,2,1,3,0,1,,64.0,596.0,21,1.0,1.0,6.0,2.0,1.5,2,2,623.535282620032,380.0,35994.46058803766,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023336924245481377,23996.307058691775,6,3,6,6_1,6_3,6_1_0 +17321,0,49.0,0.0,2,111,360.0,0.0,0.0,85,63,0.0,0.0,613.872195613942,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117340,2,1,0,1,2,,0.0,,42,1.0,4.0,1.0,3.0,2.0,3,3,1259.36129663757,360.0,16102.569776144808,7,4,5,0,15.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022356680020931993,8051.284888072404,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +17322,2,63.0,0.0,5,111,320.0,120.0,0.0,46,31,0.0,0.0,545.6641738790596,440.0,0.0,227.8204857527747,10,2,2,2,1,2,2,2,2,0,,2,,3,117341,1,2,0,1,2,,0.0,533.0,43,2.0,4.0,2.0,2.0,1.5,2,2,346.35388860653,320.0,30920.32036441207,1,1,2,3,91.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.014230124229450762,20613.546909608045,5,3,5,5_0,5_4,5_0_0 +17323,1,67.0,290.0,2,111,412.0,162.0,0.0,0,78,0.0,0.0,702.5426238692892,574.0,0.0,307.55765576624583,71,1,2,2,2,1,2,2,2,0,,2,,2,117342,1,3,0,1,1,321.0,0.0,278.0,11,0.0,1.0,3.0,1.0,1.0,1,1,188.868984739152,412.0,3832.869962269747,0,5,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.14975723300043528,3832.869962269747,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +17324,2,65.0,0.0,1,111,360.0,1100.0,0.0,68,78,0.0,52.973091080408956,613.872195613942,1500.0,0.0,2088.354452733768,70,2,2,1,1,2,2,2,2,0,,1,,1,117343,2,1,1,0,1,,240.0,500.0,42,1.0,4.0,5.0,2.0,1.5,2,2,1212.82091557933,360.0,26181.79601082817,1,5,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05729171518178645,17454.530673885445,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +17325,1,35.0,242.0,9,111,438.0,,,63,63,0.0,0.0,,576.0,191.2113131047199,,43,0,0,0,0,0,0,0,0,0,,1,2012.0,6,117344,2,1,0,0,2,,350.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,252.90734277186476,438.0,29432.145382857332,4,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01957043880109024,14015.307325170157,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +17326,0,31.0,0.0,2,111,300.0,,,0,68,0.0,0.0,,366.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,2,75.0,1,,2,117345,2,1,0,0,2,,400.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,123.18617583026781,300.0,5862.162652029401,0,1,5,0,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06243429630416272,5862.162652029401,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +17327,2,73.0,0.0,5,112,725.0,0.0,0.0,0,86,0.0,1673.949678140923,1236.2703939447445,2159.0,235.55016831740858,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,117346,1,2,1,0,1,,120.0,,21,2.0,2.0,4.0,4.0,2.5,4,3,1394.74807793509,725.0,33977.17666470134,0,6,0,1,82.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06354265456796974,13590.870665880537,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +17328,2,39.0,0.0,5,111,595.0,1153.0,0.0,55,46,0.0,0.0,1014.5943233063764,1748.0,0.0,2188.9751672745765,41,0,0,0,0,0,0,0,0,2,45.0,1,,3,117347,2,1,2,0,1,,516.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,767.369930322993,595.0,63404.14244940231,1,1,1,2,95.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027569176594335876,30192.44878542967,8,4,8,8_1,8_2,8_0_0 +17329,0,79.0,0.0,1,111,300.0,1600.0,0.0,86,77,0.0,0.0,511.56016301161833,1900.0,0.0,3037.6064767036623,71,2,2,2,1,1,2,2,2,0,,1,,1,117348,2,3,1,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,301.028155295461,300.0,26978.37241184838,6,5,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0704267837582951,17985.58160789892,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +17330,2,68.0,0.0,2,112,520.0,0.0,0.0,68,78,963.9801258474538,0.0,886.7042825534718,1584.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,117349,2,1,3,0,1,,600.0,,42,3.0,0.0,5.0,4.0,2.5,4,4,894.141589656943,520.0,63795.45256732354,1,5,0,1,86.0,10,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0248293559533636,25518.181026929415,7,4,7,7_1,7_1,7_0_1 +17331,2,96.0,0.0,5,111,360.0,,,0,90,0.0,0.0,,498.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,117350,2,2,0,0,2,,140.0,,11,0.0,12.0,4.0,1.0,1.0,1,1,107.38423516906569,360.0,7950.245964289259,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06263957143425568,7950.245964289259,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +17332,2,39.0,0.0,2,112,0.0,0.0,0.0,52,48,0.0,0.0,0.0,6068.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,47.0,1,,2,117351,2,2,2,0,1,,278.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,809.954511185678,0.0,56775.52519164136,1,1,1,2,120.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10687703864504888,22710.210076656545,6,3,6,6_1,6_2,6_0_1 +17335,1,36.0,360.0,6,111,1100.0,720.0,0.0,53,85,0.0,0.0,1875.7205977092674,1820.0,0.0,1366.922914516648,50,2,2,2,1,2,2,2,2,0,,1,,4,117354,1,2,5,0,1,,350.0,608.0,42,1.0,3.0,5.0,6.0,2.6999999999999997,2,2,1114.41301642103,1100.0,31138.02179822491,1,6,2,3,116.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.05844944202922207,11532.600666009226,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +17336,2,53.0,0.0,6,111,280.0,0.0,0.0,54,38,0.0,0.0,477.4561521441771,280.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,4,117355,2,2,0,1,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,350.127504119214,280.0,58205.18669789278,1,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004810567852884096,38803.457798595184,9,5,9,9_0,9_4,9_0_0 +17337,2,26.0,0.0,7,111,360.0,0.0,0.0,0,37,0.0,0.0,613.872195613942,360.0,0.0,0.0,12,2,2,2,2,1,2,2,2,2,15.0,2,,5,117356,1,2,0,1,1,,0.0,660.0,12,1.0,0.0,2.0,1.0,1.0,1,1,167.734749890078,360.0,32405.43706255696,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01110924686203242,32405.43706255696,8,4,8,8_0,8_4,8_0_0 +17338,1,89.0,270.0,2,111,1200.0,600.0,0.0,0,77,0.0,0.0,2046.2406520464733,1800.0,0.0,1139.1024287638734,71,2,1,2,1,1,2,1,2,0,,2,,2,117357,2,1,0,1,1,461.0,0.0,336.0,21,1.0,1.0,4.0,2.0,1.5,2,2,336.058695542213,1200.0,10382.124829385295,0,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.17337491405471517,6921.41655292353,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17339,2,60.0,0.0,6,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,2270.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,117358,2,2,1,0,1,,805.0,,22,2.0,1.0,6.0,2.0,1.5,2,2,652.704020665872,0.0,131812.26951834513,0,1,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017221462070980197,87874.84634556342,10,5,10,10_1,10_4,10_0_0 +17340,2,61.0,0.0,5,111,813.0,2085.0,0.0,77,75,0.0,0.0,1386.3280417614858,2898.0,0.0,3958.3809399544602,60,2,2,2,2,1,2,2,2,0,,1,,3,117359,1,2,3,0,1,,578.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,480.907524791633,813.0,18900.728231109224,7,5,0,1,150.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.15332742551316636,12600.48548740615,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +17341,2,90.0,0.0,2,111,180.0,0.0,0.0,0,77,0.0,0.0,306.936097806971,180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117360,1,2,0,1,1,630.0,0.0,286.0,11,0.0,0.0,3.0,1.0,1.0,1,1,858.391020618676,180.0,19501.652333239817,0,5,2,3,53.0,4,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009229987127459805,19501.652333239817,5,3,5,5_0,5_2,5_0_1 +17342,2,79.0,0.0,7,111,430.0,0.0,0.0,74,74,0.0,0.0,733.2362336499863,846.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,117361,2,2,0,1,1,,0.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,860.430530277608,430.0,96980.32145276223,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008723419218733718,64653.54763517482,10,5,10,10_0,10_4,10_0_0 +17343,2,79.0,0.0,1,111,236.0,1410.0,0.0,0,78,0.0,0.0,402.42732823580644,1646.0,0.0,2676.8907075951024,71,0,0,0,0,0,0,0,0,0,,1,,1,117362,2,1,3,0,1,,251.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1076.39715799999,236.0,18784.91179370618,0,5,0,1,60.0,6,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08762351498245985,18784.91179370618,5,3,5,5_1,5_2,5_1_0 +17344,1,50.0,230.0,1,222,2900.0,0.0,0.0,0,85,0.0,343.000764745648,4945.081575778978,3222.0,87.29212119998083,0.0,20,2,2,2,2,1,2,2,2,0,,1,,1,117363,2,1,4,0,1,,300.0,550.0,31,0.0,0.0,4.0,4.0,2.1,2,1,1408.92975718446,2900.0,42893.0,0,7,2,3,108.0,1,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.07511715198284102,20425.238095238095,5,3,5,5_1,5_0,5_1_0 +17345,1,50.0,127.0,9,112,1375.0,0.0,0.0,0,52,0.0,317.83854648245375,2344.650747136584,1615.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,117364,2,3,1,0,1,,459.0,,32,1.0,1.0,3.0,2.0,1.5,2,1,1428.88844448587,1375.0,25388.997274565652,0,1,1,2,60.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06361023172891844,16925.99818304377,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +17346,2,76.0,0.0,7,111,312.0,0.0,0.0,0,74,949.2145659329414,0.0,532.0225695320831,1212.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,117365,2,1,0,1,1,,123.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,750.108933113861,312.0,75295.0,0,5,0,1,95.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016096686366956638,75295.0,10,5,10,10_0,10_4,10_0_0 +17347,2,27.0,0.0,9,111,0.0,0.0,0.0,54,46,0.0,0.0,0.0,1266.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,2,2010.0,6,117366,2,1,0,0,1,,0.0,770.0,43,2.0,0.0,3.0,2.0,1.5,2,2,468.195417436123,0.0,39789.96323124333,1,1,2,3,57.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03181706885835795,26526.642154162222,7,4,7,7_0,7_4,7_0_0 +17348,1,61.0,58.0,1,111,700.0,500.0,0.0,0,75,0.0,0.0,1193.6403803604428,1200.0,0.0,949.2520239698945,50,2,2,2,2,1,2,2,2,0,,2,,1,117367,2,2,0,1,1,,100.0,398.0,11,0.0,0.0,3.0,1.0,1.0,1,1,101.636964880906,700.0,13653.082863686224,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.08789223737824803,13653.082863686224,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +17349,2,27.0,0.0,9,111,785.0,0.0,0.0,56,43,0.0,0.0,1338.582426547068,825.0,55.423569015860835,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,2009.0,6,117368,1,2,0,0,1,,530.0,370.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1940.1411122206,785.0,45663.93770483906,1,1,2,3,48.0,5,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018066773070088825,30442.625136559374,8,4,8,8_0,8_2,8_0_0 +17350,0,83.0,0.0,5,111,500.0,0.0,0.0,86,77,0.0,0.0,852.6002716860306,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,117369,1,2,0,1,2,500.0,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1320.45932482821,500.0,28221.19560960615,5,5,5,0,92.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017717179913873178,18814.1304064041,5,3,5,5_0,5_2,5_0_0 +17351,0,68.0,0.0,5,211,400.0,1000.0,0.0,0,46,0.0,66.2163638505112,682.0802173488245,1450.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,117370,2,1,3,0,1,,300.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1078.60106574257,400.0,40596.10439191477,0,1,0,1,250.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035717712862340205,40596.10439191477,9,5,9,9_1,9_1,9_0_0 +17352,2,73.0,0.0,2,111,378.0,,,71,77,0.0,0.0,,504.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,117371,2,1,0,0,1,,360.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,91.9141399889666,378.0,22801.38191849973,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022103923428916532,15200.92127899982,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +17353,2,85.0,0.0,8,111,132.0,289.0,0.0,0,75,0.0,0.0,225.08647172511206,421.0,0.0,548.667669854599,42,0,0,0,0,0,0,0,0,0,,2,2001.0,6,117372,2,1,0,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2636.63587912784,132.0,34436.93903556325,0,5,0,1,85.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012225244513318405,34436.93903556325,9,5,9,9_0,9_2,9_0_0 +17354,2,78.0,0.0,2,111,413.0,1325.0,0.0,78,75,0.0,0.0,704.2478244126613,1783.0,62.351515142843446,2515.5178635202205,50,0,0,0,0,0,0,0,0,0,,1,,2,117373,2,1,2,0,1,,336.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,915.793504123268,413.0,41856.24703358987,5,5,0,1,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04259818130777785,27904.16468905991,7,4,7,7_1,7_2,7_0_1 +17355,1,94.0,172.0,6,111,0.0,0.0,700.0,0,75,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,71,0,0,0,0,0,0,0,0,0,,2,,4,117374,2,1,0,0,2,,0.0,343.0,11,0.0,3.0,2.0,1.0,1.0,1,1,399.239916667792,0.0,12149.008119901999,0,5,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.057617872429708,12149.008119901999,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +17356,1,34.0,546.0,9,111,744.0,0.0,0.0,0,42,0.0,0.0,1268.6692042688135,744.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,2008.0,6,117375,2,1,0,0,1,,0.0,543.0,32,1.0,0.0,5.0,4.0,1.9,1,1,792.177288673341,744.0,17967.998750895724,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041406948559750474,9456.841447839855,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +17357,1,66.0,253.0,7,120,300.0,,,0,78,0.0,0.0,,364.0,88.67771042537734,,71,2,2,1,2,1,2,2,2,0,,2,,5,117376,2,1,0,0,1,,140.0,421.0,11,0.0,4.0,4.0,1.0,1.0,1,1,99.20481962811965,300.0,10695.405525230388,0,5,2,3,73.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03403330515531426,10695.405525230388,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +17358,2,23.0,0.0,2,120,1113.0,0.0,0.0,0,63,210.9365702073203,794.5963662061343,1897.888204773104,2045.0,182.89777775234077,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,117377,1,1,1,0,2,,230.0,,22,4.0,0.0,8.0,7.0,3.8,6,4,1233.06359988213,1113.0,39428.28124528759,0,1,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0518663237506559,10375.863485601998,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +17359,2,53.0,0.0,8,111,1456.0,0.0,0.0,55,55,0.0,0.0,2482.771991149721,1456.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,117378,2,1,0,0,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,271.728106729391,1456.0,38677.261579005826,1,1,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03764485748366225,15470.90463160233,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +17360,2,82.0,0.0,1,111,154.0,0.0,0.0,0,78,1054.6828510366015,0.0,262.6008836792974,1224.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117379,2,1,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,232.095127320305,154.0,17440.39870387554,0,5,0,1,80.0,8,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07018188177819623,17440.39870387554,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +17361,2,41.0,0.0,7,111,678.0,980.0,0.0,46,37,0.0,0.0,1156.1259684062575,1658.0,0.0,1860.5339669809932,30,0,0,0,0,0,0,0,0,0,,1,,5,117380,2,3,4,0,1,,313.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,774.293815009236,678.0,81986.83216429487,1,1,1,2,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020222759633858084,39041.34864966422,9,5,9,9_1,9_4,9_0_0 +17362,2,56.0,0.0,7,111,303.0,705.0,0.0,0,56,0.0,0.0,516.6757646417345,1008.0,0.0,1338.4453537975512,60,0,0,0,0,0,0,0,0,2,22.0,2,,5,117381,2,1,0,0,1,,161.0,432.0,12,1.0,3.0,5.0,1.0,1.0,1,1,357.064186487082,303.0,19693.09975471661,0,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05118544122331875,19693.09975471661,5,3,5,5_0,5_3,5_0_0 +17363,2,56.0,0.0,6,111,0.0,0.0,3200.0,55,64,0.0,0.0,2017.0185293271802,3200.0,0.0,3829.5428722069787,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,117382,2,1,2,0,1,,226.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,1436.12029557363,0.0,57977.54075260821,1,1,0,1,90.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05519378639488159,28988.770376304106,8,4,8,8_1,8_2,8_0_0 +17364,2,35.0,0.0,9,211,600.0,0.0,0.0,0,54,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,2009.0,6,117383,1,2,1,0,1,,766.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,904.564192431776,600.0,6335.02493144205,0,4,1,2,90.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.09471154517831096,4873.096101109269,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +17365,2,81.0,0.0,1,112,78.0,0.0,0.0,0,71,0.0,0.0,133.00564238302078,98.0,27.711784507930417,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117384,2,2,3,0,2,,100.0,,21,0.0,2.0,6.0,2.0,1.5,2,2,1288.41700344582,78.0,1452.640972454738,0,5,0,1,90.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06746333186127554,968.4273149698253,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +17366,2,51.0,0.0,1,111,1200.0,60.0,0.0,42,42,0.0,0.0,2046.2406520464733,1260.0,0.0,113.91024287638734,30,0,0,0,0,0,0,0,0,1,10.0,1,,1,117385,2,2,2,0,1,,300.0,,42,2.0,1.0,9.0,4.0,2.5,4,3,357.361568749532,1200.0,88282.31675881204,5,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014272393909216604,35312.92670352482,9,5,9,9_1,9_4,9_1_0 +17367,2,59.0,0.0,1,112,700.0,0.0,0.0,0,21,0.0,0.0,1193.6403803604428,720.0,27.711784507930417,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,117386,2,2,4,0,2,,278.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1242.81795503227,700.0,11124.449876534909,0,1,0,1,130.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0647223015961189,11124.449876534909,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +17368,2,83.0,0.0,1,112,268.0,699.0,0.0,0,77,0.0,0.0,456.9937456237124,967.0,0.0,1327.0543295099126,70,0,0,0,0,0,0,0,0,0,,2,,1,117387,2,1,0,0,1,,229.0,320.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1947.74286952647,268.0,18559.1448018534,0,5,2,3,50.0,9,2,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.052103693910693076,18559.1448018534,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +17369,2,42.0,0.0,1,111,0.0,0.0,0.0,56,64,0.0,0.0,0.0,966.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,117388,2,1,1,0,1,,1704.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,730.745343810143,0.0,41080.06863729807,1,1,1,2,70.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023515053213005926,17860.8994075209,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +17370,1,43.0,351.0,2,111,0.0,0.0,1050.0,52,52,0.0,0.0,661.8342049354809,1050.0,0.0,1256.568754942915,41,1,2,2,1,2,2,2,2,0,,2,,2,117389,1,2,0,0,1,,600.0,325.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2468.44787874835,0.0,26708.735813878677,4,4,2,3,73.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03931298011695439,14838.186563265932,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +17371,2,26.0,0.0,2,111,408.0,80.0,0.0,43,68,0.0,0.0,695.7218216958009,488.0,0.0,151.8803238351831,50,0,0,0,0,0,0,0,0,0,,2,,2,117390,1,1,0,1,1,552.0,348.0,288.0,43,2.0,0.0,2.0,2.0,1.5,2,2,82.5833433231951,408.0,17891.558187906827,4,1,2,3,55.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027275433188924066,11927.70545860455,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +17372,2,58.0,0.0,8,300,945.0,,,52,48,0.0,0.0,,1117.0,238.3213467682016,,71,0,0,0,0,0,0,0,0,1,25.0,1,1999.0,6,117391,2,1,0,0,1,,818.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,60.312548866890936,945.0,63248.699886757444,1,1,0,1,129.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017660442064420512,25299.479954702976,7,4,7,7_1,7_0,7_0_0 +17373,0,62.0,0.0,2,111,420.0,,,0,77,0.0,0.0,,696.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,0,,1,,2,117392,1,2,0,0,1,,320.0,,21,0.0,1.0,4.0,2.0,1.5,2,2,108.20657430846387,420.0,28495.469069271945,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024424935708481837,18996.97937951463,5,3,5,5_1,5_2,5_0_1 +17374,2,77.0,0.0,2,400,595.0,0.0,0.0,78,75,105.46828510366015,397.2981831030672,1014.5943233063764,1175.0,249.40606057137379,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,117393,2,1,3,0,1,,110.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1228.21547931765,595.0,31700.936937674436,5,5,0,1,75.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037065150544607135,21133.957958449624,5,3,5,5_1,5_0,5_0_1 +17375,2,33.0,0.0,9,112,919.0,1400.0,0.0,46,43,0.0,0.0,1567.0792993589241,2319.0,0.0,2657.9056671157045,10,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,117394,2,1,1,0,1,,268.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,104.250612845923,919.0,60939.10017398124,1,1,1,2,141.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03805438533518301,29018.619130467257,8,4,8,8_1,8_0,8_0_0 +17376,2,59.0,0.0,2,111,672.0,,,0,45,0.0,0.0,,795.0,170.42747472377206,,70,0,0,0,0,0,0,0,0,2,25.0,1,,2,117395,2,1,0,0,1,,800.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,48.342178466475964,672.0,68832.82593482666,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011549721941573835,68832.82593482666,10,5,10,10_1,10_2,10_0_1 +17378,2,59.0,0.0,2,120,350.0,,,85,63,0.0,0.0,,416.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,,2,117397,2,2,0,0,2,,450.0,500.0,42,1.0,7.0,4.0,2.0,1.5,2,2,122.77859738850725,350.0,29244.02592143783,6,1,3,4,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01422512759076185,19496.017280958553,5,3,5,5_1,5_1,5_0_1 +17379,2,32.0,0.0,9,111,480.0,,,46,42,0.0,0.0,,565.0,117.77508415870429,,20,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,117398,2,1,0,0,2,,258.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,253.7977098950297,480.0,65832.43752982854,1,1,1,2,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00858239526288237,31348.77977610883,8,4,8,8_1,8_2,8_0_0 +17380,2,82.0,0.0,2,111,170.0,89.0,0.0,0,78,0.0,0.0,289.8840923732504,259.0,0.0,168.96686026664122,71,0,0,0,0,0,0,0,0,0,,2,,2,117399,2,2,0,1,1,,0.0,436.0,11,0.0,0.0,3.0,1.0,1.0,1,1,513.041046005277,170.0,17510.214675617837,0,5,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014791366342335339,17510.214675617837,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +17381,1,62.0,224.0,7,111,256.0,,,0,56,0.0,0.0,,344.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,117400,1,1,0,0,2,,480.0,468.0,12,1.0,3.0,3.0,1.0,1.0,1,1,111.28277234907135,256.0,7902.0,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043533282713237156,7902.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +17382,2,43.0,0.0,9,212,1600.0,0.0,0.0,54,48,0.0,662.163638505112,2728.320869395298,2152.0,72.05063972061909,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,117401,2,1,1,0,1,,355.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,732.531759795269,1600.0,53646.33005860666,1,1,1,2,157.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04011458002157871,25545.871456479363,7,4,7,7_1,7_0,7_0_0 +17383,2,47.0,0.0,9,111,1500.0,0.0,0.0,45,33,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,117402,2,1,1,0,1,,600.0,,43,2.0,2.0,3.0,3.0,1.8,2,2,1539.96848896853,1500.0,53695.99647087419,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02793504355233692,29831.10915048566,8,4,8,8_1,8_4,8_0_0 +17384,2,43.0,0.0,1,111,1442.0,0.0,0.0,37,33,0.0,459.5415651225477,2458.899183542512,1789.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,25.0,1,,1,117403,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,584.334837605472,1442.0,82903.44721347459,4,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021579319800699766,39477.832006416465,9,5,9,9_1,9_4,9_1_0 +17385,2,47.0,0.0,1,112,500.0,0.0,0.0,0,53,0.0,0.0,852.6002716860306,600.0,138.5589225396521,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,117404,2,1,2,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1244.99537823236,500.0,25515.021189277384,0,1,0,1,90.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023515559542319656,25515.021189277384,7,4,7,7_1,7_0,7_1_0 +17386,2,64.0,0.0,5,111,1350.0,0.0,0.0,78,78,0.0,198.6490915515336,2302.0207335522828,1550.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117405,2,2,1,0,1,,212.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1094.53331240662,1350.0,41763.039596583,7,5,0,1,192.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03711415679922921,27842.026397722002,7,4,7,7_1,7_2,7_0_0 +17387,1,42.0,410.0,7,111,810.0,,,68,85,0.0,0.0,,930.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,5,117406,2,2,0,0,2,,480.0,38.0,42,1.0,0.0,3.0,5.0,2.8,4,2,121.06679482385351,810.0,20041.600000000002,4,6,2,3,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.046403480760019156,7157.714285714287,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17388,2,58.0,0.0,2,111,300.0,400.0,0.0,52,48,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,117407,1,3,0,1,2,,240.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1845.57247500252,300.0,55345.87704698404,1,1,0,1,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012647735248747767,36897.251364656026,9,5,9,9_0,9_3,9_0_1 +17389,1,42.0,30.0,6,111,650.0,1100.0,0.0,42,38,0.0,0.0,1108.3803531918397,1750.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,117408,2,2,3,0,1,,810.0,,43,2.0,0.0,5.0,6.0,2.8999999999999995,4,2,369.518394122008,650.0,52064.603632241764,1,1,1,2,124.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033612087251467845,17953.311597324748,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +17390,0,30.0,0.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1411.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,117409,1,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2145.61400162152,0.0,20000.725300689184,0,4,5,0,85.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07054744159459957,20000.725300689184,5,3,5,5_0,5_3,5_1_0 +17391,2,40.0,0.0,2,111,337.0,0.0,0.0,38,35,0.0,0.0,574.6525831163846,2177.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,35.0,2,,2,117410,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,746.967637599464,337.0,96328.44148163612,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022599763543511904,45870.68641982672,10,5,10,10_0,10_4,10_0_1 +17392,2,36.0,0.0,5,211,2400.0,,,84,21,0.0,79.45963662061344,,2541.0,112.2327272571182,,50,0,0,0,0,0,0,0,0,0,,1,,3,117411,1,1,0,0,2,,1200.0,760.0,42,1.0,1.0,6.0,5.0,2.4,2,2,103.93065794552652,2400.0,110902.0,3,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02291212061098988,46209.16666666667,10,5,10,10_1,10_2,10_0_0 +17393,2,67.0,0.0,2,111,190.0,250.0,0.0,0,77,0.0,0.0,323.9881032406916,920.0,0.0,474.62601198494724,50,2,2,2,2,1,2,2,2,0,,2,,2,117412,2,3,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,296.765163729287,190.0,17081.762571394775,0,5,0,1,62.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.05385861067643205,17081.762571394775,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +17394,2,37.0,0.0,7,120,500.0,759.0,0.0,56,62,0.0,127.1354185929815,852.6002716860306,1355.0,0.0,1440.9645723862998,43,0,0,0,0,0,0,0,0,2,25.0,1,,5,117413,2,2,3,0,1,,164.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,856.673653962609,500.0,50238.710150456,1,1,1,2,125.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026971233854173726,19322.580827098463,5,3,5,5_1,5_0,5_0_0 +17395,2,74.0,0.0,2,111,950.0,132.0,0.0,54,78,0.0,0.0,1619.9405162034582,1082.0,0.0,250.60253432805214,50,2,1,2,1,2,2,2,2,0,,2,,2,117414,2,1,0,0,1,,0.0,500.0,42,1.0,1.0,4.0,3.0,2.0,3,3,181.122094855178,950.0,24530.055826747106,4,5,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04410915358864401,12265.027913373553,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +17396,2,84.0,0.0,1,112,1250.0,0.0,0.0,0,71,0.0,0.0,2131.5006792150766,1370.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117415,1,1,4,0,2,,35.0,,11,0.0,0.0,9.0,1.0,1.0,1,1,1881.8770815936,1250.0,9855.163611850065,0,5,0,1,122.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13901342016815246,9855.163611850065,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +17397,2,41.0,0.0,8,112,150.0,0.0,0.0,43,48,0.0,0.0,255.78008150580916,150.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,117416,2,1,2,0,1,,156.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,666.603604579108,150.0,56854.42126226722,1,1,1,2,150.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0026383172437558704,24719.3135922901,7,4,7,7_1,7_0,7_0_0 +17398,2,34.0,0.0,1,111,992.0,1856.0,0.0,42,43,0.0,0.0,1691.5589390250848,2848.0,0.0,3523.6235129762485,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,117417,2,1,2,0,2,,573.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,218.902860686423,992.0,42689.44917816985,1,1,1,2,150.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0667143768502027,20328.309132461833,5,3,5,5_1,5_3,5_1_0 +17399,2,46.0,0.0,8,111,600.0,,,68,56,0.0,0.0,,852.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,117418,2,1,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,84.93960350946205,600.0,19552.439704759414,4,1,0,1,104.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04357512478571193,8501.060741199746,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17401,2,53.0,0.0,1,111,320.0,850.0,0.0,0,46,0.0,476.7578197236806,545.6641738790596,1530.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,2,3.0,1,,1,117420,2,1,2,0,1,,208.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,513.410138186514,320.0,28642.930907060363,0,1,0,1,115.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05341632128934338,28642.930907060363,8,4,8,8_1,8_3,8_1_0 +17402,2,45.0,0.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,307.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,117421,2,1,0,0,1,,636.0,203.0,12,1.0,2.0,1.0,1.0,1.0,1,1,2759.26048168805,0.0,18154.42043575799,0,1,2,3,23.0,6,5,9,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.016910482000037586,18154.42043575799,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +17403,2,33.0,0.0,9,300,1026.0,0.0,0.0,84,53,0.0,741.6232751257254,1749.5357574997347,1586.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,105.0,1,2010.0,6,117422,2,1,1,0,1,,320.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,972.909376449287,1026.0,45190.922593164134,3,1,1,2,82.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03509554372850773,18829.551080485056,5,3,5,5_1,5_0,5_0_0 +17404,2,76.0,0.0,2,111,1200.0,1300.0,0.0,75,74,0.0,0.0,2046.2406520464733,3034.0,0.0,2468.055262321726,12,0,0,0,0,0,0,0,0,0,,1,,2,117423,2,1,1,0,1,,230.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1150.50934400961,1200.0,50802.786354176904,5,5,0,1,145.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.059721133774989305,33868.52423611793,9,5,9,9_1,9_3,9_0_1 +17405,2,77.0,0.0,5,400,500.0,0.0,0.0,0,72,1371.087706347582,0.0,852.6002716860306,2975.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117424,2,1,2,0,1,,0.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,1247.3216792983,500.0,10121.409800104382,0,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.293931384931111,10121.409800104382,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +17406,2,74.0,0.0,2,111,360.0,860.0,0.0,0,77,0.0,0.0,613.872195613942,1220.0,0.0,1632.7134812282186,31,0,0,0,0,0,0,0,0,0,,2,,2,117425,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,987.336670909187,360.0,42031.882282804196,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029025585668313463,42031.882282804196,9,5,9,9_0,9_4,9_0_1 +17407,2,60.0,0.0,6,120,460.0,0.0,0.0,69,74,0.0,728.3800023556231,784.3922499511482,1138.0,177.35542085075468,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,117426,2,1,1,0,1,,90.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,546.677652249024,460.0,36657.87142271231,1,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031043810124090382,24438.580948474875,7,4,7,7_1,7_0,7_0_0 +17408,2,34.0,0.0,9,112,1800.0,0.0,0.0,52,46,0.0,529.7309108040896,3069.36097806971,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,2009.0,6,117427,2,1,1,0,1,,240.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,91.7053423380817,1800.0,47240.99778214522,1,1,1,2,150.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046569719169468775,22495.713229592962,6,3,6,6_1,6_0,6_0_0 +17409,1,67.0,33.0,2,111,800.0,0.0,0.0,78,78,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117428,1,2,0,0,1,,0.0,535.0,41,0.0,5.0,2.0,2.0,1.5,2,2,329.514425256236,800.0,18765.829844509157,5,5,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.042630675362010616,12510.55322967277,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +17410,2,47.0,0.0,7,112,1450.0,0.0,0.0,85,68,0.0,0.0,2472.540787889489,1540.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,117429,2,1,2,0,1,,530.0,,42,1.0,0.0,5.0,9.0,3.599999999999999,3,2,1575.45010270719,1450.0,45503.395421537316,6,1,0,1,110.0,6,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03384362827726695,12639.832061538145,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +17411,2,39.0,0.0,9,111,310.0,1700.0,0.0,0,37,0.0,0.0,528.612168445339,2010.0,0.0,3227.4568814976415,20,1,2,2,2,1,2,2,2,2,45.0,1,2006.0,6,117430,2,1,1,0,1,,250.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1053.04411827068,310.0,57790.14032384803,0,1,1,2,149.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03478101954306107,57790.14032384803,10,5,10,10_1,10_3,10_0_0 +17412,2,88.0,0.0,1,111,500.0,1651.0,0.0,77,74,0.0,0.0,852.6002716860306,2151.0,0.0,3134.430183148592,12,1,2,2,2,1,2,2,2,0,,1,,1,117431,2,1,2,0,1,,256.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,442.112476657308,500.0,33746.832570062346,5,5,0,1,130.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06373931525378786,22497.888380041564,6,3,6,6_1,6_2,6_1_0 +17413,2,72.0,0.0,2,111,300.0,90.0,0.0,77,75,0.0,0.0,511.56016301161833,390.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,117432,2,1,0,1,1,548.0,120.0,346.0,41,0.0,1.0,4.0,2.0,1.5,2,2,274.227733108645,300.0,24707.190151474606,5,5,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01578487871785467,16471.46010098307,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +17414,1,28.0,413.0,7,211,200.0,,,0,52,0.0,0.0,,244.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,0,,1,,5,117433,2,1,0,0,1,,272.0,500.0,32,1.0,0.0,3.0,3.0,1.6,1,1,115.55148452510299,200.0,10084.972709557882,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024194413512765647,6303.107943473676,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +17415,2,51.0,0.0,7,111,960.0,0.0,0.0,22,22,0.0,344.3250920226582,1636.9925216371787,1220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,5,117434,2,1,0,1,1,420.0,0.0,650.0,43,4.0,0.0,4.0,7.0,3.8,6,5,755.314005014067,960.0,35187.47819401081,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034671424683331065,9259.862682634424,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +17416,2,49.0,0.0,2,111,1700.0,1010.0,0.0,47,31,0.0,185.40581878143135,2898.840923732504,2850.0,0.0,1917.4890884191868,10,0,0,0,0,0,0,0,0,2,25.0,1,,2,117435,2,1,2,0,2,,696.0,,43,2.0,1.0,7.0,4.0,2.3,3,3,449.252990664365,1700.0,62750.80236277098,1,1,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04541774595205588,27282.957549030863,7,4,7,7_1,7_3,7_0_1 +17417,2,36.0,0.0,2,111,360.0,,,0,54,0.0,0.0,,535.0,242.47811444439117,,50,0,0,0,0,0,0,0,0,0,,1,,2,117436,1,2,0,0,2,,300.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,132.84144000712556,360.0,14409.374405069637,0,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03712860704152232,9005.859003168522,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +17418,1,46.0,221.0,8,111,0.0,0.0,1406.0,85,62,0.0,99.3245457757668,886.2275163231299,1481.0,0.0,1682.6053994759413,50,2,2,2,1,2,2,2,2,2,15.0,1,2001.0,6,117437,2,3,1,0,1,,896.0,419.0,42,1.0,0.0,4.0,4.0,2.3,3,3,224.487894575371,0.0,23218.267830235243,6,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.06378598140173986,10094.899056624019,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +17419,2,77.0,0.0,5,400,748.0,0.0,0.0,72,72,2762.2143868648595,0.0,1275.4900064423018,3542.0,242.47811444439117,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,117438,1,1,2,0,2,,673.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,959.058386833782,748.0,40792.52847149085,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08682962622617127,27195.0189809939,7,4,7,7_1,7_0,7_0_0 +17420,2,49.0,0.0,7,112,1683.0,0.0,0.0,54,21,0.0,331.081819252556,2869.852514495179,1993.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,5,117439,2,1,2,0,1,,246.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,690.696905376819,1683.0,110619.1193058734,1,1,0,1,110.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018016776959588216,48095.26926342322,10,5,10,10_1,10_0,10_0_0 +17421,2,63.0,0.0,1,120,1779.0,0.0,0.0,74,74,0.0,39.72981831030672,3033.5517666588967,1899.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,117440,2,1,2,0,1,,145.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,196.692707949281,1779.0,68758.26024651354,5,5,0,1,140.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027618499845570056,45838.840164342364,10,5,10,10_1,10_0,10_1_0 +17422,2,42.0,0.0,5,111,225.0,0.0,0.0,0,52,0.0,0.0,383.6701222587138,737.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,3,117441,2,3,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,445.3330887726,225.0,22098.69327490498,0,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03335038822575671,22098.69327490498,6,3,6,6_0,6_4,6_0_0 +17423,2,62.0,0.0,2,111,420.0,0.0,0.0,75,74,3164.0485531098047,66.2163638505112,716.1842282162656,3470.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,117442,2,1,3,0,1,,381.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,916.093995718812,420.0,95287.87166542615,5,5,0,1,120.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03641596710422739,63525.24777695077,10,5,10,10_1,10_2,10_0_1 +17424,2,56.0,0.0,2,111,413.0,980.0,0.0,43,37,0.0,0.0,704.2478244126613,1393.0,0.0,1860.5339669809932,33,0,0,0,0,0,0,0,0,2,30.0,2,,2,117443,2,2,0,0,2,,470.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2744.56586876935,413.0,74355.7569572385,1,1,1,2,110.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01873425887925672,49570.504638159,10,5,10,10_0,10_2,10_0_1 +17425,2,47.0,0.0,1,112,1160.0,0.0,0.0,0,67,0.0,1324.327277010224,1978.032630311591,2162.0,2.771178450793042,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,,1,117444,1,2,2,0,2,,279.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,980.180263255792,1160.0,30338.52942276458,0,1,0,1,128.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07126251803021602,30338.52942276458,8,4,8,8_1,8_0,8_1_0 +17426,1,37.0,156.0,9,111,1080.0,,,0,43,0.0,0.0,,1122.0,58.19474746665388,,42,0,0,0,0,0,0,0,0,2,45.0,2,2007.0,6,117445,1,2,0,0,2,,550.0,406.0,32,1.0,0.0,3.0,3.0,1.6,1,1,94.61059001912076,1080.0,26309.65852461866,0,1,2,3,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04264593548221518,16443.53657788666,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +17427,2,72.0,0.0,1,111,450.0,290.0,0.0,77,72,0.0,0.0,767.3402445174275,740.0,0.0,550.5661739025388,41,2,2,2,2,2,2,2,1,0,,2,,1,117446,2,3,0,0,1,,280.0,555.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1962.62951421083,450.0,18793.51776821236,5,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.03937527870655738,12529.011845474908,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +17428,2,64.0,0.0,7,111,420.0,0.0,0.0,77,90,0.0,0.0,716.1842282162656,420.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,117447,2,1,0,1,1,575.0,375.0,574.0,41,0.0,1.0,3.0,2.0,1.5,2,2,908.130381270436,420.0,32963.76787845526,7,5,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01274126190757784,21975.84525230351,6,3,6,6_0,6_4,6_0_0 +17429,2,67.0,0.0,1,112,530.0,0.0,0.0,46,46,0.0,556.2174563442941,903.7562879871924,1050.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,117448,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1083.03722332015,530.0,20366.934921701162,1,1,0,1,160.0,6,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05155414911652784,13577.95661446744,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +17430,1,22.0,307.0,2,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,2514.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,117449,2,3,0,0,1,,412.0,279.0,31,0.0,0.0,5.0,2.0,1.3,1,1,1276.66840759831,0.0,16138.0,0,6,2,3,82.0,2,3,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.15578138554963442,12413.846153846154,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +17431,2,64.0,0.0,6,111,300.0,520.0,0.0,77,78,0.0,529.7309108040896,511.56016301161833,1220.0,0.0,987.2221049286903,70,0,0,0,0,0,0,0,0,0,,1,,4,117450,2,1,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,338.615163681255,300.0,21550.038308780295,5,5,0,1,90.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05661242836412621,14366.69220585353,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +17432,2,47.0,0.0,9,120,1024.0,0.0,0.0,54,64,0.0,132.4327277010224,1746.1253564129906,1224.0,138.5589225396521,0.0,43,2,2,2,1,2,2,2,2,2,10.0,1,2005.0,6,117451,2,2,1,0,1,,402.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1467.10581764024,1024.0,53008.30422477313,1,1,1,2,85.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02309072168786661,25242.049630844347,7,4,7,7_1,7_1,7_0_0 +17433,1,39.0,114.0,6,111,0.0,,,0,69,0.0,0.0,,481.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,117452,2,2,0,0,2,,146.0,350.0,12,1.0,2.0,4.0,1.0,1.0,1,1,101.94199229623875,0.0,9429.130642132255,0,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05101212595896636,9429.130642132255,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +17435,1,29.0,396.0,2,111,560.0,0.0,0.0,85,56,0.0,0.0,954.9123042883542,631.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,117454,2,1,0,1,1,,0.0,367.0,42,1.0,1.0,3.0,4.0,2.1,2,2,241.769105389889,560.0,17638.153922419755,7,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03577471898563826,8399.120915437978,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +17436,2,34.0,0.0,9,112,850.0,0.0,0.0,0,52,0.0,0.0,1449.420461866252,910.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,117455,2,1,1,0,1,,150.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,1859.48417201675,850.0,22819.183970016144,0,1,1,2,128.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03987872665366641,17553.218438473956,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +17437,1,31.0,406.0,7,120,600.0,0.0,0.0,62,67,0.0,0.0,1023.1203260232367,690.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,117456,2,1,2,0,2,,0.0,475.0,43,2.0,3.0,4.0,4.0,2.1,2,2,2106.82637111197,600.0,17475.571504585256,4,4,2,3,75.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03948368726132689,8321.70071646917,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +17438,2,63.0,0.0,9,111,500.0,0.0,0.0,0,75,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2006.0,6,117457,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1691.53138429438,500.0,13541.73547346217,0,5,0,1,44.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03692288931354872,13541.73547346217,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +17439,0,41.0,0.0,2,111,800.0,800.0,0.0,56,54,0.0,0.0,1364.160434697649,1600.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,2,117458,2,3,4,0,1,,800.0,,43,3.0,0.0,4.0,6.0,3.3,5,4,316.224044026337,800.0,7825.71962761121,4,4,5,0,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.2044540407957853,2371.4301901852155,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +17440,2,33.0,0.0,2,111,646.0,108.0,0.0,0,55,0.0,0.0,1101.5595510183516,754.0,0.0,205.0384371774972,43,2,2,2,1,1,2,2,2,0,,2,,2,117459,1,3,0,1,2,783.0,0.0,273.0,22,4.0,0.0,3.0,4.0,2.5,4,4,280.379744237525,646.0,42995.65435693932,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01753665600110369,17198.26174277573,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +17441,1,70.0,60.0,7,111,413.0,650.0,0.0,77,75,0.0,0.0,704.2478244126613,1063.0,0.0,1234.027631160863,70,2,2,2,2,2,2,2,1,0,,2,,5,117460,1,2,0,0,1,,150.0,594.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1323.04350123873,413.0,34734.313770709756,5,5,2,3,90.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.030603742656818835,23156.20918047317,6,3,6,6_0,6_3,6_0_0 +17442,1,37.0,440.0,5,111,420.0,0.0,0.0,68,68,0.0,0.0,716.1842282162656,420.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,50.0,2,,3,117461,1,3,0,2,1,,410.0,660.0,43,2.0,0.0,4.0,7.0,2.9999999999999996,2,2,425.190110574411,420.0,28520.54910337676,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.01472622418585458,9506.849701125588,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +17443,2,44.0,0.0,2,111,850.0,710.0,0.0,85,37,0.0,0.0,1449.420461866252,1560.0,0.0,1347.9378740372501,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,117462,2,1,1,0,1,,250.0,,42,1.0,0.0,4.0,4.0,2.3,3,2,393.433886051585,850.0,42143.75014661159,6,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03701616478298683,18323.369628961562,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +17444,1,45.0,358.0,8,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,3190.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,1999.0,6,117463,2,1,2,0,1,,493.0,965.0,43,2.0,2.0,6.0,7.0,3.3999999999999995,4,2,355.230938763977,0.0,39602.0737460342,1,1,2,3,107.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08055133729756893,11647.66874883359,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +17445,1,41.0,244.79999999999998,2,111,0.0,0.0,0.0,81,68,0.0,0.0,0.0,538.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117464,2,1,0,1,1,1175.0,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,328.078633466441,0.0,10668.519744269408,4,4,2,3,80.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050428739215577355,5080.247497271146,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +17446,2,74.0,0.0,2,111,444.0,,,0,75,0.0,0.0,,519.0,103.91919190473907,,60,0,0,0,0,0,0,0,0,0,,1,,2,117465,2,1,0,0,2,,210.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,155.3494835493257,444.0,46745.30284547995,0,5,0,1,105.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011102719811562519,46745.30284547995,10,5,10,10_1,10_2,10_0_1 +17447,2,73.0,0.0,5,111,434.0,,,0,77,0.0,0.0,,710.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,0,,1,,3,117466,2,3,0,0,2,,105.0,409.0,11,0.0,3.0,4.0,1.0,1.0,1,1,59.2538106951733,434.0,23909.504036283877,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029695304382832,23909.504036283877,6,3,6,6_1,6_2,6_0_0 +17448,0,89.0,0.0,1,400,360.0,0.0,0.0,0,77,1898.4291318658827,331.081819252556,613.872195613942,2618.0,288.20255888247635,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117467,2,3,4,0,2,,180.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1415.62607915779,360.0,8807.680159442656,0,5,0,1,110.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2972405846496662,8807.680159442656,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +17449,2,57.0,0.0,6,111,383.0,,,0,85,0.0,158.91927324122688,,643.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,4,117468,2,1,0,0,2,,132.0,,31,0.0,2.0,7.0,3.0,2.0,3,2,70.01022994040224,383.0,23134.200957667603,0,7,0,1,256.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027794346611607693,11567.100478833801,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17450,2,58.0,0.0,9,111,1220.0,,,71,52,0.0,0.0,,1329.0,151.0292255682208,,71,0,0,0,0,0,0,0,0,1,15.0,1,2009.0,6,117469,1,1,0,0,2,,1200.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,158.89334764486085,1220.0,33811.65945610788,5,1,1,2,97.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03930596786369572,22541.10630407192,6,3,6,6_1,6_3,6_0_0 +17451,2,60.0,0.0,1,111,840.0,3400.0,0.0,31,31,0.0,0.0,1432.3684564325313,4240.0,0.0,6454.913762995283,10,0,0,0,0,0,0,0,0,1,1.0,2,,1,117470,1,1,0,0,2,,900.0,,43,2.0,2.0,12.0,2.0,1.5,2,2,629.593658679433,840.0,40874.53586192511,1,1,0,1,294.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10373206473396525,27249.690574616743,7,4,7,7_0,7_3,7_1_0 +17452,2,30.0,0.0,7,111,372.0,0.0,0.0,55,64,0.0,0.0,634.3346021344067,452.0,110.84713803172167,0.0,50,1,2,2,2,1,2,2,2,2,10.0,2,,5,117471,2,1,0,1,1,,320.0,329.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1104.75469381212,372.0,37946.367101974574,1,1,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01191154870729324,25297.57806798305,7,4,7,7_0,7_2,7_0_0 +17453,1,84.0,172.0,9,120,320.0,,,0,86,0.0,0.0,,320.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,117472,2,1,0,0,1,,320.0,555.0,11,0.0,5.0,2.0,1.0,1.0,1,1,180.14237253126225,320.0,15091.0,0,5,2,3,65.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021204691538002782,15091.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +17454,2,86.0,0.0,7,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,630.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,117473,2,1,0,0,1,,342.0,652.0,41,0.0,3.0,2.0,2.0,1.5,2,2,1482.04828214331,0.0,30058.204326234372,5,5,2,3,49.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02095933586592014,20038.80288415625,5,3,5,5_0,5_2,5_0_0 +17455,1,73.0,62.0,2,112,590.0,0.0,0.0,0,86,0.0,0.0,1006.0683205895161,590.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117474,2,1,0,1,1,792.0,0.0,339.0,21,0.0,6.0,3.0,2.0,1.5,2,2,257.465416049333,590.0,24080.425012250493,0,6,2,3,60.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024501228682626983,16053.616674833662,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +17456,1,48.0,253.0,6,111,180.0,,,0,85,0.0,0.0,,264.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,2,,4,117475,2,2,0,0,2,,320.0,319.0,31,1.0,1.0,4.0,2.0,1.5,2,2,136.2912038578226,180.0,8080.420912340447,0,6,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03267156536323724,5386.947274893631,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17457,1,60.0,270.0,2,111,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,550.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117476,2,2,0,1,1,960.0,0.0,377.0,21,1.0,2.0,5.0,2.0,1.5,2,2,264.585511550358,500.0,12622.329606118972,0,7,2,3,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04357357295862204,8414.886404079314,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17458,2,36.0,0.0,8,112,833.0,0.0,0.0,52,21,2003.897416969543,397.2981831030672,1420.432052628927,3125.0,127.47420873647992,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,117477,2,1,1,0,1,,301.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1121.51107528544,833.0,39840.990002820174,1,1,1,2,170.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07843680590715227,18971.90000134294,5,3,5,5_1,5_0,5_0_0 +17459,2,44.0,0.0,1,120,252.0,0.0,0.0,0,67,0.0,0.0,429.7105369297594,284.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,117478,2,3,3,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,870.736928608105,252.0,36676.12301601076,0,1,0,1,50.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00774345750438293,36676.12301601076,9,5,9,9_1,9_0,9_1_0 +17460,2,67.0,0.0,1,300,150.0,0.0,0.0,0,11,0.0,0.0,255.78008150580916,360.0,290.9737373332694,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,117479,1,2,3,0,2,,104.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,879.809289071868,150.0,15968.108841669371,0,5,0,1,118.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.022544936508734625,15968.108841669371,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +17461,1,54.0,171.0,1,111,350.0,0.0,0.0,0,68,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,1,117480,2,1,0,0,1,,0.0,324.0,12,1.0,1.0,1.0,1.0,1.0,1,1,443.229663348688,350.0,13719.177234678134,0,1,2,3,30.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025511733977406508,13719.177234678134,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +17462,2,84.0,0.0,1,300,420.0,,,0,86,0.0,0.0,,552.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,1,117481,2,2,0,0,2,,348.0,,21,0.0,8.0,5.0,2.0,1.5,2,2,90.96233761612828,420.0,21448.809902854147,0,6,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025735693611912077,14299.206601902764,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +17463,2,51.0,0.0,2,111,1400.0,0.0,0.0,22,68,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,44,2,2,2,2,1,2,2,2,2,20.0,2,,2,117482,2,2,0,0,1,,300.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,381.16388684572,1400.0,19227.55404581262,1,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.07281217343944443,9613.77702290631,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +17464,2,64.0,0.0,2,111,168.0,270.0,0.0,0,52,0.0,0.0,286.47369128650627,438.0,0.0,512.596092943743,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,117483,2,2,0,1,2,468.0,0.0,284.0,12,1.0,5.0,3.0,1.0,1.0,1,1,2451.33117300164,168.0,16388.431133398193,0,1,2,3,35.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026726170213291142,16388.431133398193,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +17465,2,44.0,0.0,2,111,0.0,0.0,1250.0,85,34,0.0,0.0,787.8978630184298,1250.0,0.0,1495.915184455851,20,0,0,0,0,0,0,0,0,1,10.0,2,,2,117484,2,1,0,0,1,,300.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,1980.6359522695,0.0,37406.4263461332,6,1,1,2,130.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03341671798405345,20781.347970074,5,3,5,5_0,5_2,5_0_1 +17466,2,58.0,0.0,2,111,400.0,,,0,63,0.0,0.0,,676.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,117485,2,1,0,0,2,,380.0,820.0,22,2.0,0.0,4.0,2.0,1.5,2,2,78.87095453203943,400.0,43024.616168150504,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015711935636056114,28683.077445433668,8,4,8,8_0,8_2,8_0_1 +17467,0,47.0,0.0,5,111,500.0,0.0,0.0,0,56,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,117486,1,2,0,1,2,780.0,300.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1897.17953809092,500.0,17430.607977866668,0,1,5,0,45.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028685172693625974,17430.607977866668,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +17468,2,34.0,0.0,5,111,258.0,0.0,0.0,0,38,0.0,0.0,439.9417401899918,258.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,3,117487,2,2,0,0,1,,0.0,498.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1025.50089240602,258.0,45072.666603227524,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005724089996075922,45072.666603227524,10,5,10,10_0,10_4,10_0_0 +17469,2,59.0,0.0,7,221,680.0,0.0,0.0,0,54,0.0,0.0,1159.5363694930015,740.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,117488,2,1,0,0,1,,100.0,360.0,12,1.0,3.0,3.0,1.0,1.0,1,1,2552.66034834179,680.0,10988.169685613982,0,1,2,3,75.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06734515585146347,10988.169685613982,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +17470,2,53.0,0.0,5,111,310.0,690.0,0.0,0,47,0.0,0.0,528.612168445339,1000.0,0.0,1309.9677930784544,60,0,0,0,0,0,0,0,0,2,20.0,2,,3,117489,2,3,0,0,1,,320.0,444.0,22,2.0,2.0,4.0,2.0,1.5,2,2,1141.23278180972,310.0,21471.03415802981,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04657437516236341,14314.022772019875,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +17471,2,30.0,0.0,1,111,534.0,1324.0,0.0,62,62,0.0,0.0,910.5770901606807,1858.0,0.0,2513.619359472281,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,117490,2,1,1,0,1,,277.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,328.152423264516,534.0,53646.026863951025,1,1,1,2,170.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03463443816094675,25545.727078071915,7,4,7,7_1,7_3,7_1_0 +17472,2,48.0,0.0,1,111,600.0,529.0,0.0,54,45,3164.0485531098047,0.0,1023.1203260232367,4129.0,0.0,1004.3086413601484,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,117491,2,2,1,0,1,,1004.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,505.684049929037,600.0,54883.510066139585,1,1,0,1,124.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07523206870377244,21953.404026455835,6,3,6,6_1,6_4,6_1_0 +17473,2,43.0,0.0,5,112,560.0,1009.0,0.0,48,42,0.0,0.0,954.9123042883542,1569.0,0.0,1915.5905843712471,20,0,0,0,0,0,0,0,0,1,3.0,1,,3,117492,2,2,3,0,1,,430.0,,43,2.0,0.0,5.0,7.0,3.3999999999999995,4,3,667.646343279235,560.0,62804.03322977551,1,1,1,2,120.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02498247197372882,18471.774479345742,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +17474,2,41.0,0.0,9,111,1000.0,500.0,0.0,45,37,0.0,238.3789098618403,1705.2005433720612,1680.0,0.0,949.2520239698945,12,1,2,2,1,1,2,2,2,3,75.0,1,2006.0,6,117493,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1081.42812329001,1000.0,82319.31761777683,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.020408332437843294,39199.675056084205,9,5,9,9_1,9_4,9_0_0 +17475,2,77.0,0.0,2,111,1000.0,,,77,75,0.0,0.0,,1105.0,145.4868686666347,,60,0,0,0,0,0,0,0,0,0,,1,,2,117494,2,2,0,0,1,,1000.0,,41,0.0,7.0,6.0,2.0,1.5,2,2,113.16476192131793,1000.0,68981.0,5,5,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016018903756106755,45987.333333333336,10,5,10,10_1,10_2,10_0_1 +17476,2,41.0,0.0,1,112,513.0,1202.0,0.0,85,64,0.0,0.0,874.7678787498674,1715.0,0.0,2282.0018656236266,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,117495,2,1,1,0,1,,310.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,3,2,387.110008652752,513.0,27878.355164339322,6,1,1,2,86.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06151725917437723,10325.316727533083,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +17477,2,41.0,0.0,7,111,446.0,0.0,0.0,38,46,0.0,0.0,760.5194423439393,446.0,0.0,0.0,30,2,2,1,2,1,2,2,2,1,5.0,2,,5,117496,1,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,589.248662424249,446.0,67721.85737947572,4,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.006585761484669024,32248.50351403606,8,4,8,8_0,8_4,8_0_0 +17478,2,47.0,0.0,2,112,1500.0,0.0,0.0,55,37,0.0,0.0,2557.8008150580918,1600.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,2,117497,2,2,1,0,1,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1034.17835388153,1500.0,104046.91225991468,1,1,0,1,110.0,9,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015377678830133041,69364.60817327646,10,5,10,10_1,10_0,10_0_1 +17479,2,45.0,0.0,5,111,5000.0,0.0,0.0,85,37,0.0,0.0,8526.002716860306,5000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,117498,2,2,1,0,2,,0.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,1584.99887936941,5000.0,94320.98996494463,6,1,1,2,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05301046990556717,52400.5499805248,10,5,10,10_1,10_3,10_0_0 +17480,2,49.0,0.0,7,111,300.0,,,56,67,0.0,0.0,,470.0,235.55016831740858,,50,0,0,0,0,0,0,0,0,0,,1,,5,117499,2,2,0,0,2,,300.0,,43,2.0,1.0,5.0,5.0,2.5999999999999996,3,3,122.55331957137271,300.0,27691.411416405845,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016972771554776993,10650.542852463788,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17481,2,53.0,0.0,6,111,717.0,0.0,0.0,75,52,0.0,1589.1927324122687,1222.6287895977678,2022.0,145.4868686666347,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,4,117500,2,1,2,0,2,,420.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,703.189491669598,717.0,36561.49138758216,5,1,1,2,80.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05530408972011348,24374.327591721438,7,4,7,7_1,7_2,7_0_0 +17482,2,27.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1357.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,1,117501,2,3,0,0,1,,204.0,1000.0,12,1.0,0.0,2.0,1.0,1.0,1,1,676.727515327418,0.0,35126.2306596133,0,1,2,3,73.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03863209842097356,35126.2306596133,9,5,9,9_0,9_3,9_1_0 +17483,2,45.0,0.0,1,111,100.0,350.0,0.0,0,64,0.0,0.0,170.52005433720612,450.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,117502,2,1,3,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,853.803359901684,100.0,9725.76178591533,0,1,1,2,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04626886920587359,9725.76178591533,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +17484,2,44.0,0.0,5,221,700.0,0.0,0.0,55,85,1898.4291318658827,317.83854648245375,1193.6403803604428,2840.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117503,2,1,1,0,1,,270.0,,42,1.0,0.0,6.0,4.0,2.3,3,2,2001.09171792864,700.0,32693.25890385161,1,6,0,1,200.0,1,2,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08686806073240433,14214.460392978961,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +17485,1,64.0,250.0,2,111,200.0,,,0,77,0.0,0.0,,280.0,110.84713803172167,,71,2,2,2,2,1,2,2,2,0,,1,,2,117504,1,3,0,0,2,,150.0,500.0,11,0.0,3.0,3.0,1.0,1.0,1,1,136.02122554386568,200.0,11133.729468870384,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.02514880577823205,11133.729468870384,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +17486,2,51.0,0.0,2,111,270.0,68.0,0.0,0,65,0.0,0.0,460.40414671045653,338.0,0.0,129.09827525990565,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,117505,2,2,0,1,2,780.0,0.0,351.0,22,2.0,0.0,3.0,3.0,2.0,3,3,166.642476784732,270.0,44917.52770188495,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007524902132710566,22458.763850942476,6,3,6,6_0,6_4,6_0_1 +17487,2,31.0,0.0,2,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,616.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,117506,2,1,0,0,1,,185.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1459.63305715829,0.0,18811.7681264669,0,1,1,2,45.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03274545996201862,18811.7681264669,5,3,5,5_0,5_2,5_0_1 +17488,1,40.0,253.0,8,120,327.0,,,0,81,0.0,0.0,,459.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,117507,2,2,0,0,2,,302.0,,32,2.0,0.0,4.0,3.0,2.0,3,2,86.8757327146008,327.0,9982.903999999999,0,4,1,2,65.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04597860502314758,4991.451999999999,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +17489,2,63.0,0.0,7,112,1248.0,0.0,0.0,47,75,0.0,331.081819252556,2128.0902781283326,1498.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,117508,2,1,1,0,1,,242.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,823.432120487058,1248.0,54646.64124127611,1,5,0,1,145.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027412480730261594,36431.09416085074,9,5,9,9_1,9_0,9_0_0 +17490,2,71.0,0.0,2,112,600.0,,,0,77,0.0,0.0,,732.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,117509,2,2,0,0,2,,600.0,,21,2.0,3.0,5.0,3.0,2.0,3,3,105.51621642790796,600.0,13803.778716749715,0,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05302895786874503,6901.889358374858,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +17491,2,76.0,0.0,1,111,0.0,550.0,0.0,0,75,0.0,0.0,0.0,1505.0,0.0,1044.177226366884,60,0,0,0,0,0,0,0,0,0,,2,,1,117510,2,1,0,0,2,,1166.0,790.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1038.45251299945,0.0,13823.94558582039,0,5,2,3,60.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1088690627908519,13823.94558582039,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +17492,1,58.0,250.0,1,111,178.0,121.0,0.0,0,77,0.0,0.0,303.5256967202269,299.0,0.0,229.71898980071447,50,0,0,0,0,0,0,0,0,0,,2,,1,117511,1,1,0,0,1,,0.0,370.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1049.53796803688,178.0,11164.441704933095,0,7,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.026781455616171523,11164.441704933095,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +17493,2,27.0,0.0,9,111,400.0,,,0,52,0.0,0.0,,500.0,138.5589225396521,,43,0,0,0,0,0,0,0,0,2,60.0,1,2005.0,6,117512,2,2,0,0,2,,600.0,,22,3.0,0.0,4.0,3.0,2.0,3,3,142.82559695128026,400.0,59839.20108767331,0,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008355726528959264,29919.600543836656,8,4,8,8_1,8_2,8_0_0 +17494,2,65.0,0.0,2,111,680.0,1020.0,0.0,85,78,0.0,0.0,1159.5363694930015,1700.0,0.0,1936.4741288985847,71,0,0,0,0,0,0,0,0,0,,1,,2,117513,2,1,2,0,1,,400.0,,41,1.0,3.0,6.0,3.0,2.0,3,3,371.403516625317,680.0,32529.797773887294,6,5,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052259777691106464,16264.898886943647,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +17495,1,31.0,320.0,2,111,574.0,301.0,0.0,34,55,0.0,0.0,978.7851118955631,875.0,0.0,571.4497184298765,10,2,1,2,1,1,1,2,2,0,,2,,2,117514,1,3,0,1,2,636.0,0.0,273.0,43,2.0,0.0,4.0,5.0,2.4,2,2,339.197570118581,574.0,6380.843553290417,4,4,2,3,67.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,1,1,0,1,0.13712920442137902,2658.684813871007,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17496,1,44.0,169.0,1,112,1311.0,1313.0,0.0,68,63,0.0,0.0,2235.5179123607722,2624.0,0.0,2492.735814944943,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,117515,2,1,1,0,1,,660.0,850.0,43,3.0,0.0,5.0,6.0,3.0999999999999996,4,3,170.047418469501,1311.0,37116.09444296599,1,1,2,3,170.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07069709352184506,11972.933691279351,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +17497,1,50.0,406.0,5,111,770.0,0.0,0.0,0,85,0.0,213.21669159864604,1313.0044183964872,931.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117516,2,1,1,0,1,,410.0,472.0,31,0.0,1.0,5.0,3.0,1.8,3,1,1373.92535533359,770.0,5970.960058144976,0,6,2,3,100.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.15592132436558917,3317.200032302764,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +17498,1,41.0,340.0,6,111,760.0,,,12,85,0.0,0.0,,1026.0,368.5667339554746,,71,0,0,0,0,0,0,0,0,0,,2,,4,117517,2,2,0,0,2,,450.0,386.0,42,1.0,0.0,4.0,8.0,3.8999999999999995,5,3,152.7031156913382,760.0,30371.84078420473,4,6,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033781291272064896,7787.651483129419,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17499,2,63.0,0.0,1,111,400.0,929.0,0.0,72,22,0.0,0.0,682.0802173488245,1329.0,0.0,1763.710260536064,20,2,2,2,2,1,2,2,2,0,,2,,1,117518,2,2,0,0,1,,0.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,474.433215283054,400.0,304572.3275837892,5,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.0043634955629197345,203048.2183891928,10,5,10,10_0,10_4,10_1_0 +17500,2,58.0,0.0,2,111,380.0,950.0,0.0,78,65,0.0,0.0,647.9762064813832,1330.0,0.0,1803.5788455427996,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,117519,1,1,2,0,1,,280.0,,42,2.0,2.0,3.0,3.0,2.0,3,3,342.95019527888,380.0,28233.005457940308,6,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04710798508438457,14116.502728970154,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +17501,2,60.0,0.0,5,111,315.0,0.0,0.0,77,78,0.0,0.0,537.1381711621992,315.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,117520,2,1,0,1,1,608.0,0.0,394.0,41,0.0,2.0,5.0,2.0,1.5,2,2,286.935242136943,315.0,20243.844619555795,6,5,2,3,92.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015560285406246708,13495.896413037197,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +17502,2,29.0,0.0,2,111,155.0,1192.0,0.0,0,52,0.0,0.0,264.3060842226695,1347.0,0.0,2263.0168251442283,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,117521,2,2,0,0,1,,240.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1721.9306718881,155.0,20249.296615986485,0,1,1,2,47.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06652082912038365,20249.296615986485,5,3,5,5_0,5_3,5_0_1 +17503,2,64.0,0.0,6,120,2400.0,0.0,0.0,74,75,0.0,0.0,4092.4813040929466,2460.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,117522,2,1,2,0,1,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1107.85735003567,2400.0,89226.60914161216,5,5,0,1,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027570250888899264,59484.40609440811,10,5,10,10_1,10_0,10_0_0 +17504,2,45.0,0.0,1,112,2400.0,0.0,0.0,22,21,0.0,0.0,4092.4813040929466,2480.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,,1,117523,2,1,1,0,1,,245.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,776.000291899491,2400.0,45094.560729642384,1,1,1,2,120.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05499554624488893,22547.280364821192,6,3,6,6_1,6_0,6_1_0 +17505,2,53.0,0.0,1,111,1150.0,0.0,0.0,0,43,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,6.0,2,,1,117524,2,1,0,0,1,,0.0,587.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1949.22626519311,1150.0,14056.381287530636,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08181337546813423,14056.381287530636,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +17506,2,59.0,0.0,5,111,729.0,1452.0,0.0,75,90,0.0,0.0,1243.0911961182326,2181.0,0.0,2756.6278776085737,44,0,0,0,0,0,0,0,0,0,,1,,3,117525,2,1,3,0,1,,260.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,1198.11538918315,729.0,54967.0,5,1,0,1,160.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03967835246602507,36644.666666666664,9,5,9,9_1,9_3,9_0_0 +17507,2,53.0,0.0,1,111,600.0,800.0,0.0,54,64,0.0,3310.81819252556,1023.1203260232367,3975.0,103.91919190473907,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,117526,2,2,1,0,1,,570.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,565.876780136536,600.0,17695.61536320656,1,1,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2246319169134395,8847.80768160328,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +17508,2,27.0,0.0,7,111,636.0,0.0,0.0,0,52,0.0,0.0,1084.5075455846309,636.0,0.0,0.0,10,2,2,2,2,2,2,2,1,0,,2,,5,117527,1,3,0,0,1,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,1,1,601.460655661269,636.0,14727.37031549284,0,4,3,4,19.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04318489902647068,14727.37031549284,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +17509,2,55.0,0.0,8,111,516.0,679.0,0.0,43,56,0.0,0.0,879.8834803799836,1195.0,0.0,1289.0842485511166,44,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,117528,2,1,2,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,878.738421858727,516.0,63510.54794403036,1,1,1,2,90.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018815772162021214,42340.36529602024,9,5,9,9_1,9_2,9_0_0 +17510,2,45.0,0.0,1,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2832.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,1,117529,2,1,0,0,1,,0.0,700.0,32,1.0,1.0,4.0,3.0,1.8,2,1,1113.05293053851,0.0,33488.15481111023,0,1,2,3,90.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08456721536238355,18604.530450616796,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +17511,1,47.0,300.0,1,120,800.0,1200.0,0.0,85,63,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,50,2,2,2,2,1,2,2,2,2,30.0,1,,1,117530,2,2,3,0,1,,400.0,600.0,42,1.0,0.0,6.0,5.0,2.5999999999999996,3,3,2054.34193171177,800.0,27577.639742490683,6,1,2,3,120.0,0,0,5,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.07252252254635369,10606.784516342572,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +17512,2,76.0,0.0,6,111,508.0,1090.0,0.0,75,75,0.0,0.0,866.2418760330071,1598.0,0.0,2069.36941225437,50,2,2,2,2,1,2,2,2,0,,2,,4,117531,2,2,0,0,1,,0.0,444.0,41,0.0,1.0,5.0,2.0,1.5,2,2,1166.44259371599,508.0,38322.68376840518,5,5,2,3,82.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.041698540990948496,25548.455845603454,7,4,7,7_0,7_2,7_0_0 +17513,2,38.0,0.0,1,111,312.0,500.0,0.0,33,35,0.0,231.75727347678918,532.0225695320831,987.0,0.0,949.2520239698945,20,0,0,0,0,0,0,0,0,3,50.0,1,,1,117532,2,2,3,0,2,,200.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,497.070504999496,312.0,160336.3842110932,1,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006155808021094893,66806.82675462216,10,5,10,10_1,10_4,10_1_0 +17514,0,43.0,0.0,9,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,1584.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,2009.0,6,117533,2,1,1,0,1,,0.0,,43,2.0,3.0,5.0,6.0,2.8999999999999995,3,3,1188.61837038456,0.0,30325.0,1,1,5,0,110.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05223413025556472,10456.89655172414,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17515,2,65.0,0.0,5,111,471.0,941.0,0.0,74,74,0.0,6.6216363850511195,803.1494559282409,1417.0,0.0,1786.4923091113415,60,0,0,0,0,0,0,0,0,0,,1,,3,117534,2,1,1,0,1,,261.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1093.18798392121,471.0,47282.623569332405,5,5,0,1,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029968726204928034,31521.749046221605,8,4,8,8_1,8_2,8_0_0 +17516,2,56.0,0.0,6,111,360.0,,,0,77,0.0,0.0,,550.0,263.261952825339,,71,0,0,0,0,0,0,0,0,0,,1,,4,117535,1,1,0,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,109.26920407098801,360.0,2570.546017400054,0,7,0,1,102.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21396232406541021,2570.546017400054,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +17518,2,49.0,0.0,5,111,720.0,,,0,85,0.0,0.0,,940.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,3,117537,2,1,0,0,1,,320.0,,31,0.0,2.0,4.0,2.0,1.5,2,2,151.22482795678107,720.0,23165.344531788724,0,7,0,1,99.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04057785536969164,15443.563021192482,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +17519,2,32.0,0.0,1,111,0.0,0.0,0.0,67,67,0.0,0.0,0.0,1283.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,117538,2,1,1,0,2,,245.0,700.0,43,2.0,0.0,4.0,3.0,1.8,2,2,907.596069816846,0.0,36871.648602171794,1,4,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03479638282093059,20484.249223428775,5,3,5,5_1,5_3,5_1_0 +17520,1,26.0,188.0,2,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,496.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,117539,1,3,0,1,2,380.0,0.0,385.0,42,1.0,0.0,3.0,3.0,1.8,2,2,348.478821418593,0.0,18773.69508944579,6,1,2,3,67.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026419945441579138,10429.830605247662,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17521,2,55.0,0.0,2,111,1500.0,2000.0,0.0,33,38,0.0,0.0,2557.8008150580918,3500.0,0.0,3797.008095879578,12,0,0,0,0,0,0,0,0,2,60.0,1,,2,117540,1,1,3,0,2,,1200.0,,43,2.0,0.0,7.0,7.0,3.8,6,4,1014.11205127203,1500.0,89328.6392396218,1,1,1,2,143.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03918116328416622,23507.536642005736,6,3,6,6_1,6_4,6_0_1 +17522,2,63.0,0.0,6,111,1000.0,0.0,0.0,77,52,0.0,0.0,1705.2005433720612,1080.0,110.84713803172167,0.0,60,0,0,0,0,0,0,0,0,2,5.0,2,,4,117541,1,2,0,0,1,,257.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1752.89109830662,1000.0,75464.20955000947,5,5,0,1,100.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014311420028646738,50309.47303333965,10,5,10,10_0,10_2,10_0_0 +17523,2,78.0,0.0,5,112,600.0,0.0,0.0,78,74,3164.0485531098047,0.0,1023.1203260232367,3660.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,117542,2,2,2,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,253.699834265999,600.0,30741.174203477105,5,5,0,1,108.0,7,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11905856216728446,20494.116135651402,5,3,5,5_1,5_0,5_0_0 +17524,2,43.0,0.0,2,111,240.0,0.0,0.0,0,43,0.0,0.0,409.2481304092947,260.0,27.711784507930417,0.0,31,0,0,0,0,0,0,0,0,1,5.0,2,,2,117543,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,298.141965181491,240.0,30841.186975387587,0,1,1,2,54.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008430285131616031,30841.186975387587,8,4,8,8_0,8_3,8_0_1 +17525,2,54.0,0.0,6,211,450.0,,,0,55,0.0,0.0,,450.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,,4,117544,2,1,0,0,2,,260.0,479.0,12,1.0,1.0,3.0,1.0,1.0,1,1,85.6754080366374,450.0,24358.076327067334,0,1,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018474365297063634,24358.076327067334,7,4,7,7_0,7_2,7_0_0 +17526,2,88.0,0.0,1,111,500.0,0.0,0.0,77,78,0.0,0.0,852.6002716860306,620.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,117545,2,1,0,1,1,920.0,240.0,402.0,41,0.0,3.0,4.0,2.0,1.5,2,2,347.695063589259,500.0,21774.47823824827,5,5,2,3,80.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02847370179051777,14516.318825498847,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +17527,2,58.0,0.0,8,111,4000.0,0.0,0.0,22,23,0.0,0.0,6820.802173488245,4035.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,117546,2,1,2,0,1,,500.0,,43,3.0,1.0,8.0,4.0,2.3,3,3,1056.2565359724,4000.0,118005.77296173619,1,1,1,2,250.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034193242404406465,51306.85780945052,10,5,10,10_1,10_2,10_0_0 +17528,2,63.0,0.0,1,111,500.0,1200.0,0.0,0,75,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,117547,2,1,1,0,1,,500.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1322.17850868297,500.0,15761.535154594862,0,5,0,1,55.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10785751408893757,15761.535154594862,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +17529,2,54.0,0.0,7,111,624.0,1100.0,0.0,54,54,0.0,0.0,1064.0451390641663,1724.0,0.0,2088.354452733768,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,117548,2,1,2,0,1,,150.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1129.94278698202,624.0,53354.17340344361,1,1,0,1,100.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03231237389742278,35569.44893562907,9,5,9,9_1,9_2,9_0_0 +17530,2,39.0,0.0,1,400,1200.0,0.0,0.0,47,42,0.0,0.0,2046.2406520464733,1250.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,117549,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1206.05109875103,1200.0,54804.899767351606,1,1,1,2,140.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022808179657408122,36536.59984490107,9,5,9,9_1,9_0,9_1_0 +17531,2,59.0,0.0,5,111,480.0,143.0,0.0,78,65,0.0,0.0,818.4962608185893,623.0,0.0,271.48607885538985,70,2,2,2,1,1,2,2,2,2,15.0,2,,3,117550,1,2,0,1,1,576.0,0.0,424.0,42,2.0,0.0,4.0,4.0,2.5,4,4,828.701052210175,480.0,41538.92956759077,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.014997979160398802,16615.571827036307,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +17533,2,41.0,0.0,1,111,500.0,1200.0,0.0,52,37,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,3,90.0,1,,1,117552,2,2,1,0,1,,475.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,325.727780390884,500.0,47867.584503086015,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0355146393461822,26593.102501714453,7,4,7,7_1,7_4,7_1_0 +17534,1,46.0,483.0,6,111,600.0,0.0,0.0,0,56,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,45.0,2,,4,117553,2,1,0,1,1,490.0,0.0,586.0,32,2.0,0.0,4.0,4.0,2.3,4,3,322.889419370025,600.0,19021.44544986621,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03154334414707796,8270.193673854874,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +17535,2,38.0,0.0,9,221,1200.0,0.0,0.0,53,33,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,117554,2,1,1,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,498.166727805032,1200.0,52562.77945074063,1,1,1,2,150.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022829842952361065,25029.894976543157,7,4,7,7_1,7_1,7_0_0 +17536,2,64.0,0.0,6,111,0.0,0.0,1078.0,0,78,0.0,0.0,679.4831170670938,1078.0,0.0,1290.0772550747258,70,0,0,0,0,0,0,0,0,0,,1,,4,117555,2,1,2,0,1,,220.0,297.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1517.17245553562,0.0,16776.910755711775,0,5,2,3,53.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06425497612145252,16776.910755711775,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +17537,2,67.0,0.0,7,111,700.0,0.0,0.0,0,77,0.0,264.8654554020448,1193.6403803604428,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,117556,2,2,3,0,1,,135.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,894.537902190668,700.0,16877.270474142337,0,5,0,1,80.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053326158479174095,16877.270474142337,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +17538,2,33.0,0.0,1,300,1000.0,0.0,0.0,54,62,0.0,794.5963662061343,1705.2005433720612,1750.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117557,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1021.25460841402,1000.0,36350.306728456184,1,1,1,2,260.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0481426474079803,24233.537818970788,7,4,7,7_1,7_0,7_1_0 +17539,2,56.0,0.0,6,111,1200.0,,,46,45,0.0,0.0,,1202.0,2.771178450793042,,41,0,0,0,0,0,0,0,0,0,,1,,4,117558,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,34.95775924738419,1200.0,100607.37430009185,4,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011947434354212172,67071.5828667279,10,5,10,10_1,10_2,10_0_0 +17540,1,39.0,230.0,2,111,480.0,360.0,0.0,85,64,0.0,0.0,818.4962608185893,840.0,0.0,683.461457258324,60,0,0,0,0,0,0,0,0,2,20.0,2,,2,117559,2,1,0,1,1,68.0,0.0,300.0,42,1.0,0.0,3.0,3.0,1.8,2,2,244.156367572642,480.0,10153.626666666665,6,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08272906101202593,5640.903703703702,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +17541,2,46.0,0.0,2,111,700.0,60.0,0.0,0,42,0.0,0.0,1193.6403803604428,760.0,0.0,113.91024287638734,10,0,0,0,0,0,0,0,0,0,,2,,2,117560,1,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1205.3831849954,700.0,39574.89789276718,0,1,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01920409250478192,39574.89789276718,9,5,9,9_0,9_4,9_0_1 +17542,2,71.0,0.0,5,111,1470.0,0.0,0.0,0,75,0.0,0.0,2506.64479875693,1502.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117561,2,1,1,0,1,,270.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1035.46434179851,1470.0,26968.691436591416,0,5,0,1,97.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05569421132395285,26968.691436591416,7,4,7,7_1,7_3,7_0_0 +17543,2,51.0,0.0,7,111,900.0,0.0,0.0,0,22,0.0,132.4327277010224,1534.680489034855,1000.0,0.0,0.0,42,2,2,2,1,1,2,1,2,2,10.0,1,,5,117562,1,3,1,0,2,,100.0,790.0,22,2.0,0.0,4.0,2.0,1.5,2,2,269.121328424678,900.0,19801.069215602463,0,1,2,3,98.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,0,0,0.05050232333979417,13200.712810401643,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17544,2,75.0,0.0,2,111,100.0,1000.0,0.0,75,75,0.0,0.0,170.52005433720612,1100.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,117563,2,2,1,0,1,,180.0,218.0,41,0.0,0.0,2.0,2.0,1.5,2,2,447.309198468403,100.0,29457.754930904906,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03734161013220872,19638.503287269938,5,3,5,5_1,5_3,5_0_1 +17545,2,31.0,0.0,9,112,1500.0,0.0,0.0,45,63,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,117564,2,1,1,0,1,,250.0,780.0,43,2.0,0.0,4.0,4.0,2.1,2,2,807.7662396599,1500.0,52536.23098309078,1,1,2,3,95.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028551724627577248,25017.252849090848,7,4,7,7_1,7_0,7_0_0 +17546,1,42.0,96.0,7,111,360.0,,,48,43,0.0,0.0,,486.0,174.58424239996165,,33,0,0,0,0,0,0,0,0,0,,1,,5,117565,2,1,0,0,2,,300.0,886.0,43,2.0,2.0,5.0,5.0,2.5999999999999996,3,2,144.84862722683786,360.0,57779.83450576395,4,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008411239044852543,22223.01327144768,6,3,6,6_1,6_2,6_0_0 +17547,1,45.0,41.0,1,111,412.0,864.0,0.0,0,45,0.0,0.0,702.5426238692892,1276.0,0.0,1640.3074974199776,31,0,0,0,0,0,0,0,0,3,20.0,2,,1,117566,2,1,0,0,1,,0.0,382.0,32,1.0,0.0,3.0,3.0,1.8,2,1,918.426623071083,412.0,27484.218955529286,0,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04642664221474243,15269.010530849602,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +17548,2,48.0,0.0,5,111,690.0,1202.0,0.0,67,65,0.0,0.0,1176.5883749267223,1892.0,0.0,2282.0018656236266,50,2,2,2,2,1,2,1,2,1,8.0,1,,3,117567,1,3,3,0,1,,660.0,628.0,43,2.0,0.0,5.0,4.0,2.3,3,3,277.008524917102,690.0,30427.2179767237,1,1,2,3,105.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.062181169551792335,13229.225207271174,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +17549,2,63.0,0.0,2,111,369.0,0.0,0.0,56,78,1265.6194212439218,0.0,629.2190005042905,1775.0,120.54626260949732,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117568,2,2,5,0,1,,299.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1076.14587065631,369.0,26297.11082470346,4,5,0,1,100.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06749790925064544,17531.407216468975,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +17550,0,72.0,0.0,2,111,276.0,,,0,78,0.0,0.0,,376.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,2,117569,2,2,0,0,2,,1125.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,100.8693566777654,276.0,142778.53051162735,0,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0026334491513020576,142778.53051162735,10,5,10,10_1,10_2,10_0_1 +17551,2,74.0,0.0,1,111,407.0,1798.0,0.0,78,75,0.0,0.0,694.0166211524289,2205.0,0.0,3413.5102781957407,60,0,0,0,0,0,0,0,0,0,,1,,1,117570,2,2,2,0,1,,280.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,300.924166928385,407.0,35241.06751316749,5,5,0,1,103.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06256904672868162,23494.045008778325,6,3,6,6_1,6_3,6_1_0 +17552,0,67.0,0.0,1,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,585.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,3,,1,117571,2,1,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1060.61914256469,0.0,25153.0,0,5,5,0,86.0,5,4,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02325766310181688,25153.0,7,4,7,7_0,7_2,7_1_0 +17553,2,45.0,0.0,8,111,1056.0,1104.0,0.0,37,46,0.0,370.8116375628627,1800.6917738008965,2440.0,0.0,2095.948468925527,31,0,0,0,0,0,0,0,0,3,40.0,1,2003.0,6,117572,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,546.420973062163,1056.0,125084.94818062914,1,1,1,2,126.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0195067435010367,54384.76007853441,10,5,10,10_1,10_4,10_0_0 +17554,2,54.0,0.0,7,111,420.0,1000.0,0.0,0,54,0.0,0.0,716.1842282162656,1420.0,0.0,1898.504047939789,60,2,2,2,1,2,2,2,2,3,1.0,2,,5,117573,2,2,0,0,1,,200.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,404.783840168237,420.0,41360.32868440336,0,1,1,2,67.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.034332415751218884,27573.552456268906,7,4,7,7_0,7_3,7_0_0 +17555,1,67.0,100.0,1,111,300.0,100.0,0.0,0,77,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,2,,1,117574,2,1,0,1,1,430.0,100.0,308.0,11,0.0,2.0,4.0,1.0,1.0,1,1,283.798531920632,300.0,11608.412844036699,0,5,2,3,72.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.034457768290475824,11608.412844036699,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +17556,1,68.0,300.0,7,111,1200.0,,,86,86,0.0,0.0,,1284.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,5,117575,2,1,0,0,2,,1200.0,535.0,41,0.0,0.0,3.0,2.0,1.5,2,2,116.00302842899416,1200.0,17050.98202781449,5,5,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0753035806328028,11367.321351876328,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +17557,2,67.0,0.0,6,111,800.0,,,78,77,0.0,0.0,,811.0,15.241481479361731,,71,0,0,0,0,0,0,0,0,0,,1,,4,117576,2,3,0,0,2,,200.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,50.02146066078296,800.0,5530.34591866432,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14664543808425484,3686.897279109547,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17558,2,51.0,0.0,9,120,300.0,,,52,37,0.0,0.0,,300.0,0.0,,20,2,2,2,2,1,2,2,2,2,30.0,1,2011.0,6,117577,1,1,0,0,1,,280.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,251.72368761809156,300.0,75686.36580992032,1,1,0,1,155.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.003963725788518156,42047.98100551128,9,5,9,9_1,9_2,9_0_0 +17559,2,41.0,0.0,2,111,600.0,750.0,0.0,34,38,0.0,0.0,1023.1203260232367,1350.0,0.0,1423.8780359548418,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,117578,2,2,2,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1115.33484851673,600.0,46721.6610260062,4,1,1,2,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028894520664592024,22248.410012383905,6,3,6,6_1,6_3,6_0_1 +17560,2,46.0,0.0,2,111,798.0,,,42,42,0.0,33.1081819252556,,1066.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,117579,2,1,0,0,2,,299.0,740.0,43,2.0,1.0,3.0,3.0,1.8,2,2,99.38299985455812,798.0,39625.27983042961,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026902018220736505,22014.04435023867,6,3,6,6_1,6_2,6_0_1 +17561,2,88.0,0.0,1,111,198.0,0.0,0.0,0,77,1351.0487321778864,0.0,337.6297075876681,1539.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117580,2,1,2,0,2,,164.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,334.109430174136,198.0,13063.841113920525,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11780608678408354,13063.841113920525,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +17562,2,57.0,0.0,2,221,600.0,0.0,0.0,0,38,2109.365702073203,0.0,1023.1203260232367,2650.0,69.27946126982604,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,117581,2,1,1,0,1,,200.0,,32,1.0,2.0,7.0,2.0,1.5,2,2,555.725248135132,600.0,52840.294516207156,0,1,1,2,150.0,1,2,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05015112092509615,35226.86301080477,9,5,9,9_1,9_1,9_0_1 +17563,2,51.0,0.0,1,112,1491.0,0.0,0.0,63,67,0.0,264.8654554020448,2542.454010167743,1691.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,117582,1,2,1,0,2,,275.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1888.46146914447,1491.0,51864.0,1,1,0,1,73.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032604504087613756,24697.142857142855,7,4,7,7_1,7_0,7_1_0 +17564,2,44.0,0.0,1,212,1920.0,0.0,0.0,85,65,0.0,0.0,3273.9850432743574,2020.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,117583,2,1,1,0,1,,600.0,,42,1.0,0.0,8.0,4.0,2.1,2,2,1420.69152387335,1920.0,35653.29304917275,6,1,0,1,177.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05665675810686074,16977.758594844167,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +17565,1,34.0,413.0,8,112,364.0,,,85,64,0.0,0.0,,484.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,117584,2,3,0,0,2,,390.0,437.0,42,1.0,0.0,3.0,5.0,2.4,2,2,113.74871999809903,364.0,18337.59337572664,6,1,2,3,53.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026393866964062353,7640.663906552767,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +17566,2,45.0,0.0,6,120,720.0,,,0,55,0.0,0.0,,830.0,152.4148147936173,,50,0,0,0,0,0,0,0,0,3,45.0,2,,4,117585,2,2,0,0,2,,580.0,499.0,32,2.0,0.0,4.0,3.0,2.0,3,3,145.40943395472115,720.0,23405.5089897198,0,1,2,3,110.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03546173682292292,11702.7544948599,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +17567,2,62.0,0.0,5,400,1400.0,0.0,0.0,71,11,0.0,0.0,2387.2807607208856,1470.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117586,2,1,2,0,1,,865.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1032.22671291253,1400.0,83522.13613424255,5,5,0,1,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017600124566226543,55681.424089495034,10,5,10,10_1,10_0,10_0_0 +17568,2,60.0,0.0,1,120,400.0,0.0,0.0,0,74,3164.0485531098047,0.0,682.0802173488245,3434.0,47.110033663481715,0.0,60,1,2,2,2,1,2,2,1,0,,1,,1,117587,2,2,3,0,2,,200.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1556.72260520074,400.0,103656.0148549074,0,5,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03312880593380659,103656.0148549074,10,5,10,10_1,10_0,10_1_0 +17569,1,47.0,137.0,2,111,0.0,120.0,0.0,0,62,0.0,0.0,0.0,303.0,0.0,227.8204857527747,71,2,2,2,1,2,1,2,2,0,,2,,2,117588,2,2,0,1,1,450.0,250.0,243.0,12,1.0,2.0,2.0,1.0,1.0,1,1,446.285787306468,0.0,12512.063765933915,0,4,2,3,40.0,8,7,2,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02421662850096446,12512.063765933915,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17570,2,55.0,0.0,7,112,230.0,0.0,0.0,78,56,2636.7071275915036,0.0,392.1961249755741,4448.0,548.6933332570223,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,117589,2,1,2,0,1,,258.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,829.858459341191,230.0,28056.838989872827,5,4,0,1,120.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15853532187305613,18704.559326581886,5,3,5,5_1,5_0,5_0_0 +17571,0,31.0,0.0,7,111,400.0,,,67,42,0.0,0.0,,584.0,254.94841747295985,,44,0,0,0,0,0,0,0,0,2,30.0,1,,5,117590,2,1,0,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,120.35776298512468,400.0,34931.18794326241,1,1,5,0,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01671858400431649,19406.215524034673,5,3,5,5_1,5_2,5_0_0 +17572,2,55.0,0.0,9,111,786.0,,,56,64,0.0,0.0,,926.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,1,6.0,1,2012.0,6,117591,1,1,0,0,2,,294.0,,43,2.0,2.0,4.0,3.0,1.8,2,2,173.42643877097305,786.0,39153.808339130315,1,1,1,2,112.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02365031753691647,21752.115743961287,6,3,6,6_1,6_3,6_0_0 +17573,2,42.0,0.0,7,111,1700.0,0.0,0.0,37,56,0.0,331.081819252556,2898.840923732504,1950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,117592,2,2,3,0,1,,600.0,,43,2.0,1.0,6.0,4.0,2.3,3,2,726.198611024646,1700.0,36545.80643734608,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05335769518024096,15889.481059715688,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +17574,2,52.0,0.0,7,111,1440.0,,,85,68,0.0,0.0,,1740.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,117593,2,2,0,0,2,,0.0,,42,1.0,5.0,2.0,3.0,1.8,2,2,39.40028061363059,1440.0,5118.658385093167,6,4,0,1,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3399328240125033,2843.6991028295374,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17575,1,38.0,137.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,670.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,117594,2,2,0,1,1,516.0,0.0,430.0,12,1.0,2.0,2.0,1.0,1.0,1,1,877.003482806131,0.0,15510.00392100756,0,1,2,3,56.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04319792589430084,15510.00392100756,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +17576,2,39.0,0.0,2,111,402.0,1200.0,0.0,52,48,0.0,0.0,685.4906184355685,1602.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,117595,2,1,1,0,1,,430.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,225.080733807245,402.0,54654.868754957286,1,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02931120385966888,26026.12797855109,7,4,7,7_1,7_2,7_0_1 +17577,2,29.0,0.0,5,111,820.0,0.0,0.0,56,67,0.0,0.0,1398.2644455650902,820.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,117596,2,1,0,0,1,,0.0,1000.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1612.78390979125,820.0,20226.721118244273,1,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04054043140291133,13484.480745496183,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +17578,2,41.0,0.0,2,111,250.0,,,0,54,0.0,0.0,,370.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,0,,1,,2,117597,2,2,0,0,2,,180.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,88.57414691219984,250.0,10944.947368421053,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03380555315117766,7296.631578947369,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +17579,1,21.0,196.0,2,111,631.0,134.0,0.0,0,54,0.0,0.0,1075.9815428677707,765.0,0.0,254.39954242393173,20,0,0,0,0,0,0,0,0,0,,2,,2,117598,2,3,0,1,1,1253.0,0.0,553.0,22,1.0,4.0,4.0,3.0,2.0,3,3,408.396054152477,631.0,33474.04843697413,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02285352491618584,16737.024218487066,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +17580,2,39.0,0.0,2,111,540.0,0.0,0.0,0,54,0.0,0.0,920.8082934209131,1071.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,117599,2,1,0,1,1,699.0,0.0,383.0,12,1.0,0.0,3.0,1.0,1.0,1,1,279.019201344443,540.0,26781.438193831014,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03999038409545534,26781.438193831014,7,4,7,7_0,7_4,7_0_1 +17581,1,36.0,120.0,9,112,1000.0,0.0,0.0,53,53,0.0,715.1367295855209,1705.2005433720612,1540.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,117600,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,229.692018142283,1000.0,59080.45975475699,1,1,1,2,120.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02606614786669807,28133.552264169994,8,4,8,8_1,8_0,8_0_0 +17582,2,45.0,0.0,5,111,380.0,,,52,52,0.0,0.0,,468.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,117601,2,2,0,0,2,,293.0,103.0,43,2.0,3.0,3.0,4.0,2.1,2,2,109.70512650959827,380.0,28832.409433493955,4,1,3,4,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016231733982534774,13729.718777854263,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +17583,2,66.0,0.0,2,111,250.0,80.0,0.0,0,56,0.0,0.0,426.3001358430153,1024.0,0.0,151.8803238351831,70,0,0,0,0,0,0,0,0,1,10.0,2,,2,117602,2,1,0,1,1,,0.0,400.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1242.04001938831,250.0,20171.432597638654,0,5,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0507648623885977,20171.432597638654,5,3,5,5_0,5_4,5_0_1 +17584,2,61.0,0.0,1,111,1000.0,0.0,0.0,0,37,1792.9608467622227,0.0,1705.2005433720612,2700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,117603,2,2,3,0,1,,300.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,1059.52847842908,1000.0,54033.66937913999,0,1,0,1,130.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049968844074882515,54033.66937913999,10,5,10,10_1,10_4,10_1_0 +17585,2,63.0,0.0,2,111,0.0,0.0,0.0,78,75,0.0,0.0,0.0,1828.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117604,2,1,3,0,1,,350.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,468.096619993158,0.0,40444.810483803776,5,5,0,1,68.0,6,4,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04519739314224323,26963.206989202517,7,4,7,7_1,7_2,7_0_1 +17586,2,55.0,0.0,1,400,300.0,0.0,0.0,0,63,0.0,0.0,511.56016301161833,410.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,1,117605,2,1,0,0,2,,172.0,240.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1238.01748779791,300.0,12552.60334794218,0,1,2,3,42.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03266254725297391,12552.60334794218,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +17587,2,32.0,0.0,1,111,1000.0,,,0,52,0.0,0.0,,1050.0,69.27946126982604,,41,0,0,0,0,0,0,0,0,2,5.0,2,,1,117606,2,2,0,0,2,,0.0,983.0,22,2.0,0.0,4.0,2.0,1.5,2,2,54.99392953016704,1000.0,52568.39288588035,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01997397946479786,35045.59525725357,9,5,9,9_0,9_2,9_1_0 +17588,2,65.0,0.0,6,111,1010.0,0.0,0.0,0,77,0.0,0.0,1722.2525488057818,1010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,4,117607,1,2,0,0,1,,243.0,549.0,11,0.0,2.0,3.0,1.0,1.0,1,1,652.091184628857,1010.0,14245.556163746842,0,5,2,3,81.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07089930279944588,14245.556163746842,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +17589,2,76.0,0.0,2,111,392.0,0.0,0.0,78,78,0.0,1446.1653864951645,668.438613001848,1868.0,532.0662625522641,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,117608,2,2,2,0,1,,320.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,437.858910448256,392.0,22532.322910551702,5,5,0,1,69.0,6,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0829031257636216,15021.548607034469,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +17590,1,81.0,191.0,5,111,1800.0,1200.0,0.0,0,77,0.0,0.0,3069.36097806971,3000.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,2,,3,117609,1,3,0,0,1,,200.0,354.0,11,0.0,0.0,2.0,1.0,1.0,1,1,462.107787010427,1800.0,9369.989339953641,0,5,2,3,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.32017112198922126,9369.989339953641,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17592,2,63.0,0.0,5,211,240.0,,,56,78,0.0,0.0,,366.0,174.58424239996165,,71,2,2,2,2,1,2,2,2,0,,1,,3,117611,1,3,0,0,1,,179.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,105.24351744262312,240.0,18450.156862745098,4,7,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.019837229716948047,12300.1045751634,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17593,2,42.0,0.0,8,111,337.0,429.0,0.0,54,64,0.0,0.0,574.6525831163846,766.0,0.0,814.4582365661695,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,117612,2,2,1,0,1,,162.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,926.355804793663,337.0,51087.977187124554,1,1,0,1,125.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014993742993469922,34058.65145808303,9,5,9,9_1,9_2,9_0_0 +17594,2,45.0,0.0,2,111,0.0,0.0,0.0,0,42,949.2145659329414,0.0,0.0,1936.0,0.0,0.0,20,1,1,2,1,1,2,2,2,2,25.0,1,,2,117613,2,1,2,0,1,,242.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,734.828428512344,0.0,33588.1368679219,0,1,0,1,90.0,4,4,4,1,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05763939832723983,33588.1368679219,9,5,9,9_1,9_2,9_0_1 +17595,2,64.0,0.0,2,221,105.0,757.0,0.0,0,75,0.0,0.0,179.0460570540664,922.0,83.13535352379125,1437.1675642904202,50,0,0,0,0,0,0,0,0,0,,8,,2,117614,2,2,0,1,1,825.0,60.0,134.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2680.38601718124,105.0,20420.595572501392,0,5,2,3,65.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04515049508358002,20420.595572501392,5,3,5,5_0,5_1,5_0_1 +17596,2,72.0,0.0,1,300,500.0,0.0,0.0,77,77,1792.9608467622227,662.163638505112,852.6002716860306,2700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,117615,2,1,1,0,1,,148.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1071.70647504515,500.0,71948.96370071964,5,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03752660026113752,47965.97580047976,10,5,10,10_1,10_0,10_1_0 +17597,2,84.0,0.0,7,120,1260.0,0.0,0.0,0,77,0.0,0.0,2148.552684648797,1310.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,117616,2,1,2,0,1,,306.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1997.10808157276,1260.0,25270.77676556941,0,5,0,1,81.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05183853318608042,25270.77676556941,7,4,7,7_1,7_1,7_0_0 +17599,2,40.0,0.0,1,112,1500.0,0.0,0.0,42,34,1582.0242765549024,264.8654554020448,2557.8008150580918,3200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,18.0,1,,1,117618,2,1,1,0,1,,252.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1738.94467738681,1500.0,60865.91555034819,1,1,1,2,160.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05257458088103456,33814.39752797122,9,5,9,9_1,9_0,9_1_0 +17600,2,58.0,0.0,7,400,276.0,,,0,63,0.0,0.0,,516.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,5,117619,2,2,0,0,2,,420.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,127.00798392720559,276.0,11897.693692876514,0,1,0,1,88.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04336974991287125,7931.795795251009,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +17601,1,45.0,346.0,1,112,1150.0,0.0,0.0,0,56,0.0,0.0,1960.9806248778702,1600.0,623.5151514284345,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,117620,2,3,4,0,2,,285.0,400.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1079.92773287879,1150.0,9069.2656799953,0,4,2,3,55.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,1,1,0,1,0.17642001639991972,9069.2656799953,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +17603,2,63.0,0.0,6,111,1250.0,0.0,0.0,56,47,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,117622,2,1,0,0,1,,0.0,,43,2.0,5.0,2.0,2.0,1.5,2,2,1962.0734462752,1250.0,19323.461561045253,1,1,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06468820278660178,12882.307707363501,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +17604,2,62.0,0.0,2,111,750.0,1530.0,0.0,78,75,0.0,0.0,1278.9004075290459,2280.0,0.0,2904.7111933478773,60,0,0,0,0,0,0,0,0,0,,1,,2,117623,2,2,1,0,1,,440.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1195.08203602896,750.0,71165.53470011707,5,5,1,2,100.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03203798031740566,47443.68980007805,10,5,10,10_1,10_2,10_0_1 +17605,0,41.0,0.0,6,111,400.0,,,0,55,0.0,0.0,,640.0,332.541414095165,,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,117624,1,1,0,0,1,,500.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,98.84314002448582,400.0,18158.61059125802,0,1,5,0,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.035244987317923485,10088.116995143344,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +17606,2,33.0,0.0,7,111,0.0,,,42,52,0.0,0.0,,683.0,0.0,,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,117625,2,1,0,0,1,,172.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,116.66895768993807,0.0,50032.0330287475,4,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013651254179648478,27795.57390485972,7,4,7,7_1,7_3,7_0_0 +17607,2,41.0,0.0,9,221,1088.0,0.0,0.0,54,21,0.0,0.0,1855.2581911888026,1088.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,117626,2,1,1,0,1,,194.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,922.90849133766,1088.0,33328.66590824222,1,1,0,1,170.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032644570982690795,15870.793289639152,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +17608,2,57.0,0.0,1,112,750.0,0.0,0.0,0,43,1371.087706347582,794.5963662061343,1278.9004075290459,2720.0,96.99124577775646,0.0,33,0,0,0,0,0,0,0,0,2,45.0,1,,1,117627,2,1,2,0,1,,400.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,940.968147816925,750.0,46760.28690899283,0,1,1,2,240.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0581690186224434,46760.28690899283,10,5,10,10_1,10_0,10_1_0 +17609,2,65.0,0.0,9,111,420.0,,,77,78,0.0,0.0,,462.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,117628,2,2,0,0,1,,220.0,690.0,41,0.0,5.0,4.0,2.0,1.5,2,2,131.11803853439366,420.0,24904.307649007613,6,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01855100758114871,16602.871766005075,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +17610,1,27.0,184.0,5,112,1600.0,0.0,0.0,64,56,0.0,0.0,2728.320869395298,1700.0,138.5589225396521,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,117629,2,2,1,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,401.351350922615,1600.0,32591.48966785006,4,1,1,2,90.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.052160856018709956,18106.383148805588,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +17611,2,73.0,0.0,5,112,838.0,2085.0,0.0,75,75,0.0,158.91927324122688,1428.9580553457872,3118.0,103.91919190473907,3958.3809399544602,44,0,0,0,0,0,0,0,0,0,,1,,3,117630,2,1,2,0,1,,732.0,,41,0.0,2.0,6.0,3.0,2.0,3,3,253.96148238014,838.0,48455.55450128413,5,5,0,1,138.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06434762809116898,24227.777250642066,7,4,7,7_1,7_0,7_0_0 +17612,2,33.0,0.0,2,111,150.0,0.0,0.0,0,63,0.0,0.0,255.78008150580916,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,8,,2,117631,2,1,0,1,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,448.777765322518,150.0,15218.031496387652,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009856728186927852,15218.031496387652,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +17613,2,43.0,0.0,2,111,2733.0,0.0,0.0,42,23,0.0,0.0,4660.313085035843,2733.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,2.0,1,,2,117632,2,1,1,0,1,,460.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1333.19300462755,2733.0,88464.43960124879,1,1,1,2,200.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03089376943231572,42125.92361964228,9,5,9,9_1,9_3,9_0_1 +17614,1,39.0,425.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,511.56016301161833,380.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117633,2,2,0,1,1,885.0,0.0,522.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1116.72139139212,300.0,12488.35455792387,0,1,2,3,82.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030428348125245187,6937.97475440215,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17615,2,49.0,0.0,5,112,300.0,0.0,0.0,0,52,0.0,264.8654554020448,511.56016301161833,680.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,117634,2,1,1,0,2,,180.0,259.0,12,1.0,0.0,3.0,1.0,1.0,1,1,627.947820721959,300.0,21379.20822721231,0,1,2,3,60.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03180660353616224,21379.20822721231,6,3,6,6_1,6_1,6_0_0 +17616,1,41.0,220.0,7,111,2100.0,,,35,45,0.0,0.0,,2200.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,1,,5,117635,2,2,0,0,2,,400.0,763.0,43,2.0,0.0,4.0,5.0,2.4,2,2,50.85567174758206,2100.0,34612.88210946495,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06356015061220247,14422.034212277062,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +17617,2,34.0,0.0,1,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,433.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,117636,2,1,0,0,1,,818.0,420.0,32,1.0,0.0,3.0,3.0,1.6,1,1,2555.45301926477,0.0,21240.971954501605,0,1,2,3,65.0,8,1,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.020385131194913808,13275.607471563502,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +17618,2,78.0,0.0,5,111,700.0,0.0,0.0,77,86,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,117637,2,1,0,0,2,,260.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1348.19244233579,700.0,42873.034821806905,5,5,0,1,60.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016327278974054633,28582.023214537938,8,4,8,8_0,8_2,8_0_0 +17619,2,44.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,471.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,117638,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1058.03330771466,0.0,143651.93440721132,0,4,0,1,54.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0032787584931843134,143651.93440721132,10,5,10,10_0,10_4,10_0_1 +17620,2,56.0,0.0,7,111,830.0,0.0,0.0,54,62,0.0,0.0,1415.3164509988108,890.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,117639,2,1,0,0,1,,0.0,570.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1285.40918789911,830.0,47622.385731592425,1,1,2,3,59.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01868868991604465,31748.25715439495,8,4,8,8_0,8_3,8_0_0 +17621,2,46.0,0.0,1,111,636.0,831.0,0.0,54,21,0.0,0.0,1084.5075455846309,1467.0,0.0,1577.6568638379647,50,0,0,0,0,0,0,0,0,0,,1,,1,117640,2,2,1,0,1,,180.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,1255.36056972156,636.0,35375.46003407755,1,1,1,2,145.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041469425375297554,14150.18401363102,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +17622,2,60.0,0.0,7,112,1500.0,0.0,0.0,0,77,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,117641,2,1,0,0,1,,600.0,,31,1.0,2.0,3.0,2.0,1.5,2,2,1941.31676951558,1500.0,35050.75930458654,0,5,1,2,56.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04279507861627747,23367.172869724363,6,3,6,6_0,6_1,6_0_0 +17623,2,83.0,0.0,1,111,280.0,2189.0,0.0,0,74,0.0,72.83800023556232,477.4561521441771,2524.0,0.0,4155.825360940198,10,0,0,0,0,0,0,0,0,0,,1,,1,117642,1,3,3,0,2,,291.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2309.39338709565,280.0,46383.58534878136,0,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05441580207784247,46383.58534878136,10,5,10,10_1,10_3,10_1_0 +17624,1,44.0,270.0,2,111,0.0,0.0,995.0,85,55,0.0,0.0,627.1666989626701,995.0,0.0,1190.7484868268575,20,0,0,0,0,0,0,0,0,2,18.0,2,,2,117643,2,1,0,1,1,1000.0,0.0,362.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,267.949037882081,0.0,28580.03136328334,6,1,2,3,120.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03481451742835639,10585.196801216052,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +17625,1,91.0,250.0,7,112,300.0,,,0,77,0.0,0.0,,405.0,145.4868686666347,,71,0,0,0,0,0,0,0,0,0,,2,,5,117644,2,1,0,0,1,,200.0,472.0,21,0.0,0.0,3.0,2.0,1.5,2,2,121.05878202372348,300.0,3083.92486276172,0,5,2,3,80.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13132615677196297,2055.9499085078132,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +17627,2,49.0,0.0,6,112,988.0,0.0,0.0,0,46,0.0,92.70290939071567,1684.7381368515964,1058.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,117646,2,1,1,0,1,,764.0,,32,1.0,0.0,5.0,3.0,2.0,3,2,1874.27839976672,988.0,38246.44101872256,0,1,0,1,130.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027662704602555918,19123.22050936128,5,3,5,5_1,5_0,5_0_0 +17628,2,53.0,0.0,7,111,1800.0,0.0,0.0,56,47,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,117647,1,1,2,0,1,,260.0,870.0,43,2.0,0.0,5.0,4.0,2.5,4,4,1357.65841577389,1800.0,30145.355601898154,1,1,2,3,125.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05971069055448992,12058.142240759262,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17629,2,44.0,0.0,2,300,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1095.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,55.0,1,,2,117648,1,3,1,0,2,,384.0,,42,1.0,6.0,3.0,2.0,1.5,2,2,929.745156864192,0.0,23066.969009126762,7,1,1,2,70.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04747047605460207,15377.979339417841,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +17630,2,53.0,0.0,1,111,1100.0,900.0,0.0,68,62,0.0,0.0,1875.7205977092674,2000.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,2,,1,117649,2,1,0,0,1,,0.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,466.32517608859,1100.0,44991.408115857346,1,4,0,1,103.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.044452931876455194,22495.704057928673,6,3,6,6_0,6_3,6_1_0 +17631,2,53.0,0.0,5,111,550.0,,,67,85,0.0,0.0,,694.0,199.524848457099,,60,0,0,0,0,0,0,0,0,0,,1,,3,117650,2,2,0,0,2,,150.0,,42,1.0,2.0,4.0,3.0,1.8,2,2,119.6031025551457,550.0,32976.66055981816,4,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021045187360348862,18320.366977676757,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +17632,1,23.0,377.0,6,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,1017.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,117651,2,1,0,1,1,600.0,0.0,370.0,32,1.0,0.0,4.0,2.0,1.3,1,1,361.930216218026,0.0,9175.049958677871,0,4,2,3,60.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11084408309276936,7057.730737444516,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17633,2,60.0,0.0,2,111,341.0,290.0,0.0,77,42,0.0,0.0,581.4733852898729,631.0,0.0,550.5661739025388,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,117652,2,1,0,1,1,1008.0,0.0,380.0,42,1.0,3.0,4.0,2.0,1.5,2,2,221.435732676478,341.0,54622.57591105244,5,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011552000056304966,36415.05060736829,9,5,9,9_0,9_4,9_0_1 +17634,2,31.0,0.0,6,112,716.0,0.0,0.0,54,38,2109.365702073203,0.0,1220.9235890543957,2716.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,4,117653,2,1,3,0,1,,346.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,769.637238928015,716.0,68231.0432913618,1,1,1,2,110.0,9,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039805928049525395,32490.97299588657,8,4,8,8_1,8_0,8_0_0 +17635,2,65.0,0.0,5,120,500.0,,,56,78,0.0,0.0,,720.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,3,117654,2,1,0,0,2,,280.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,113.99147455413852,500.0,13774.332046332045,1,5,0,1,120.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05227113718314408,9182.88803088803,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17636,2,82.0,0.0,2,111,300.0,250.0,0.0,77,75,0.0,0.0,511.56016301161833,550.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,0,,2,,2,117655,2,1,0,1,1,,0.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1712.02013774156,300.0,26026.95612722936,5,5,0,1,97.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021131937108257958,17351.304084819574,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +17637,2,83.0,0.0,2,111,201.0,937.0,0.0,0,77,0.0,0.0,342.74530921778427,1138.0,0.0,1778.8982929195822,50,2,2,1,2,1,2,2,2,0,,2,,2,117656,2,2,0,0,2,,195.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,422.446960159485,201.0,16519.973577479417,0,5,0,1,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.06888630872578148,16519.973577479417,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +17638,2,41.0,0.0,9,112,900.0,1339.0,0.0,56,46,0.0,0.0,1534.680489034855,4277.0,0.0,2542.0969201913776,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,117657,2,1,1,0,1,,340.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,238.840123983886,900.0,132674.81983205592,1,1,1,2,222.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032236712327282334,51028.77685848305,10,5,10,10_1,10_0,10_0_0 +17639,2,48.0,0.0,8,111,632.0,700.0,0.0,0,37,0.0,0.0,1077.6867434111427,1332.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,117658,2,1,2,0,1,,284.0,,32,2.0,0.0,5.0,3.0,2.0,3,2,361.755341665893,632.0,87641.06667218205,0,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015198354499521251,43820.53333609102,10,5,10,10_1,10_3,10_0_0 +17640,2,43.0,0.0,8,111,288.0,,,22,55,0.0,0.0,,528.0,332.541414095165,,50,0,0,0,0,0,0,0,0,1,10.0,1,2000.0,6,117659,2,2,0,0,2,,216.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,3,3,134.80699440616303,288.0,52999.85252076213,1,1,0,1,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009962291872287034,20384.55866183159,5,3,5,5_1,5_2,5_0_0 +17641,2,61.0,0.0,1,111,350.0,200.0,0.0,45,37,0.0,0.0,596.8201901802214,550.0,0.0,379.7008095879578,12,0,0,0,0,0,0,0,0,3,1.0,2,,1,117660,2,2,0,3,1,,413.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,763.14617479917,350.0,114604.09546647445,1,1,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004799130412934444,45841.63818658978,10,5,10,10_0,10_4,10_1_0 +17642,2,70.0,0.0,6,111,440.0,793.0,0.0,0,86,0.0,0.0,750.2882390837069,1233.0,0.0,1505.5137100162526,10,0,0,0,0,0,0,0,0,0,,1,,4,117661,2,2,2,0,1,,306.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,256.991751739824,440.0,45035.27077777247,0,5,0,1,83.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027378540834899504,45035.27077777247,10,5,10,10_1,10_2,10_0_0 +17643,2,49.0,0.0,1,300,1850.0,0.0,0.0,0,63,0.0,225.13563709173806,3154.621005238313,2095.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117662,2,1,3,0,1,,120.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1034.34687519443,1850.0,29148.188143988176,0,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07187410722241047,29148.188143988176,8,4,8,8_1,8_0,8_1_0 +17644,0,37.0,0.0,8,111,486.0,0.0,0.0,0,42,0.0,0.0,828.7274640788218,486.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,2002.0,6,117663,2,1,0,0,1,,323.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1089.40959059696,486.0,19647.04317260383,0,1,5,0,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024736546651339713,19647.04317260383,5,3,5,5_0,5_4,5_0_0 +17645,2,69.0,0.0,5,221,1734.0,,,0,78,0.0,0.0,,1866.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,117664,1,2,0,0,2,,396.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,128.3702473473919,1734.0,11929.138262037686,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1564237046307197,11929.138262037686,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +17646,2,50.0,0.0,5,111,980.0,,,0,63,0.0,0.0,,1030.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,8,,3,117665,2,2,0,0,2,,600.0,419.0,12,1.0,0.0,4.0,1.0,1.0,1,1,102.76784610081405,980.0,21274.03837312866,0,4,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04841581941024408,21274.03837312866,6,3,6,6_0,6_2,6_0_0 +17647,2,43.0,0.0,6,111,600.0,108.0,0.0,52,37,2109.365702073203,0.0,1023.1203260232367,2708.0,0.0,205.0384371774972,50,0,0,0,0,0,0,0,0,0,,1,,4,117666,2,1,2,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1054.87364267626,600.0,54711.74319734131,1,1,0,1,130.0,7,5,5,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04949577260282933,26053.211046353004,7,4,7,7_1,7_2,7_0_0 +17648,2,43.0,0.0,6,112,730.0,1400.0,0.0,52,63,0.0,0.0,1244.7963966616046,2130.0,0.0,2657.9056671157045,71,2,2,2,2,1,2,2,2,2,7.0,1,,4,117667,2,2,2,0,1,,800.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,1669.29269457604,730.0,56568.06116574604,1,1,1,2,120.0,9,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.03765375648564371,31426.700647636688,8,4,8,8_1,8_1,8_0_0 +17649,2,74.0,0.0,2,111,390.0,,,0,71,0.0,397.2981831030672,,732.0,58.19474746665388,,71,2,2,2,2,1,2,2,2,0,,1,,2,117668,2,2,0,0,1,,120.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,109.05851267549635,390.0,9369.219291549023,0,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07812817452786695,9369.219291549023,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +17650,2,68.0,0.0,5,111,745.0,0.0,0.0,74,74,1961.7101029280789,0.0,1270.3744048121855,2605.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,117669,2,3,1,0,1,,308.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,843.302425550514,745.0,77090.11484031338,5,5,0,1,135.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03379162173251486,51393.40989354226,10,5,10,10_1,10_2,10_0_0 +17651,2,48.0,0.0,7,111,1145.0,1090.0,0.0,38,38,0.0,0.0,1952.45462216101,2235.0,0.0,2069.36941225437,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,117670,2,1,2,0,1,,431.0,,43,2.0,1.0,10.0,5.0,2.8,4,3,2538.39543323915,1145.0,134252.25046602736,1,1,0,1,220.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016647765622115725,47947.23230929549,10,5,10,10_1,10_3,10_0_0 +17652,2,49.0,0.0,2,111,0.0,0.0,622.0,0,68,0.0,0.0,392.0579766379706,622.0,0.0,744.3673957852315,50,2,2,2,2,1,2,2,2,2,10.0,2,,2,117671,1,2,0,1,1,663.0,0.0,339.0,32,2.0,2.0,3.0,2.0,1.5,2,2,370.489966558306,0.0,18086.582990326246,0,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.03439013330117036,12057.721993550831,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +17653,2,48.0,0.0,7,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,2197.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,117672,2,2,0,0,1,,0.0,490.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1922.16905052509,0.0,23577.108040945917,0,1,3,4,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09318360827733883,23577.108040945917,6,3,6,6_0,6_3,6_0_0 +17654,2,41.0,0.0,2,111,220.0,800.0,0.0,0,52,0.0,0.0,375.14411954185346,1020.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,2,,2,117673,2,2,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1744.29747566483,220.0,21909.697629964197,0,1,1,2,55.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.046554727373554664,21909.697629964197,6,3,6,6_0,6_2,6_0_1 +17655,2,35.0,0.0,7,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,377.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,,5,117674,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1083.6821122594,0.0,116406.62910511573,1,1,1,2,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003238647170682756,64670.34950284207,10,5,10,10_0,10_4,10_0_0 +17656,1,50.0,149.0,2,111,720.0,215.0,0.0,78,56,0.0,0.0,1227.744391227884,935.0,0.0,408.17837030705465,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,117675,2,1,0,1,1,1320.0,0.0,386.0,42,2.0,2.0,5.0,6.0,3.3,5,4,308.909511015012,720.0,28529.883120994007,7,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.032772654414135,8645.419127573941,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +17657,1,54.0,166.0,5,120,500.0,0.0,0.0,85,64,0.0,1390.5436408607352,852.6002716860306,3050.0,2078.3838380947814,0.0,71,2,2,2,1,1,2,2,2,2,20.0,1,,3,117676,2,3,1,0,1,,450.0,560.0,42,1.0,3.0,5.0,3.0,2.0,3,3,397.403031050637,500.0,20112.860612693006,6,1,2,3,80.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.15164426675712048,10056.430306346503,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +17658,2,49.0,0.0,2,111,738.0,741.0,0.0,54,65,0.0,0.0,1258.438001008581,1479.0,0.0,1406.7914995233837,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,117677,1,2,2,0,1,,496.0,,43,3.0,1.0,4.0,4.0,2.5,4,3,1162.27336531768,738.0,54253.67535330742,1,1,1,2,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027260825932410068,21701.47014132297,6,3,6,6_1,6_3,6_0_1 +17659,2,54.0,0.0,8,120,3000.0,0.0,0.0,65,54,0.0,264.8654554020448,5115.6016301161835,3350.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,117678,2,1,3,0,1,,400.0,,43,4.0,1.0,6.0,4.0,2.5,4,4,2878.62260466383,3000.0,47910.09747671483,1,1,1,2,120.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0699226296007467,19164.03899068593,5,3,5,5_1,5_1,5_0_0 +17660,2,83.0,0.0,1,111,1200.0,0.0,0.0,0,74,2636.7071275915036,0.0,2046.2406520464733,3700.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117679,1,1,2,0,2,,170.0,227.0,11,0.0,7.0,4.0,1.0,1.0,1,1,944.529883016688,1200.0,28690.652770629644,0,5,2,3,65.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12896186188512435,28690.652770629644,8,4,8,8_1,8_4,8_1_0 +17661,2,56.0,0.0,6,111,111.0,0.0,0.0,75,46,0.0,0.0,189.2772603142988,111.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,60.0,1,,4,117680,2,1,2,0,1,,331.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,571.898727337638,111.0,69220.25930879336,5,1,0,1,112.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016035767722976323,46146.83953919558,10,5,10,10_1,10_4,10_0_0 +17662,2,36.0,0.0,9,221,2257.0,0.0,0.0,48,46,0.0,0.0,3848.637626390742,2277.0,27.711784507930417,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,117681,2,1,1,0,1,,510.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,2290.81750121447,2257.0,84871.65835134473,4,1,1,2,150.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026828744061696806,40415.07540540225,9,5,9,9_1,9_1,9_0_0 +17663,0,90.0,0.0,1,211,0.0,0.0,0.0,0,71,1582.0242765549024,0.0,0.0,1860.0,498.81212114274757,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117682,1,2,1,0,1,,150.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,2008.67188489156,0.0,14087.686403029258,0,5,0,1,80.0,2,3,7,1,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13203019621447895,14087.686403029258,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +17664,2,46.0,0.0,2,112,900.0,0.0,0.0,64,47,0.0,1324.327277010224,1534.680489034855,2020.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,2,117683,2,2,3,0,1,,160.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,383.423618533663,900.0,38336.76419723176,1,1,1,2,96.0,9,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05269093629310168,15334.705678892704,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +17665,2,60.0,0.0,8,111,680.0,1282.0,0.0,52,46,0.0,0.0,1159.5363694930015,1962.0,0.0,2433.8821894588095,30,0,0,0,0,0,0,0,0,2,50.0,1,2001.0,6,117684,1,2,2,0,1,,462.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,673.468083573763,680.0,48367.22507161476,1,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04056465916940597,32244.81671440984,8,4,8,8_1,8_4,8_0_0 +17666,2,40.0,0.0,6,111,730.0,1530.0,0.0,46,38,0.0,0.0,1244.7963966616046,2260.0,0.0,2904.7111933478773,12,0,0,0,0,0,0,0,0,2,30.0,1,,4,117685,2,2,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,587.842935001771,730.0,113197.22324396917,4,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0199651540491335,53903.43963998532,10,5,10,10_1,10_4,10_0_0 +17667,1,40.0,389.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,287.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,117686,2,1,0,1,1,94.0,0.0,339.0,32,1.0,0.0,4.0,4.0,1.9,1,1,538.240485609632,0.0,19044.602732246363,0,4,2,3,74.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015069886415328106,10023.475122234928,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +17668,2,66.0,0.0,6,112,1435.0,0.0,0.0,77,75,0.0,0.0,2446.9627797389076,1435.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,117687,2,1,2,0,1,,262.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1489.32597856594,1435.0,46017.0,5,5,0,1,90.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031184127605015537,30678.0,8,4,8,8_1,8_1,8_0_0 +17669,2,72.0,0.0,2,111,175.0,85.0,0.0,0,78,0.0,0.0,298.4100950901107,260.0,0.0,161.37284407488207,71,0,0,0,0,0,0,0,0,0,,2,,2,117688,1,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1893.70498660649,175.0,24980.93346674757,0,5,0,1,60.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010407937731633976,24980.93346674757,7,4,7,7_0,7_2,7_0_1 +17670,2,35.0,0.0,6,111,900.0,,,85,33,0.0,0.0,,902.0,2.771178450793042,,12,0,0,0,0,0,0,0,0,0,,1,,4,117689,2,2,0,0,2,,450.0,300.0,42,1.0,0.0,4.0,3.0,1.8,2,2,81.90056983298894,900.0,106556.79466306508,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0084649693419565,59198.21925725838,10,5,10,10_1,10_2,10_0_0 +17671,2,81.0,0.0,5,111,185.0,75.0,0.0,77,74,0.0,0.0,315.46210052383134,260.0,0.0,142.38780359548417,50,0,0,0,0,0,0,0,0,0,,2,,3,117690,2,1,0,1,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1168.53702375669,185.0,35954.90453210681,5,5,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007231280499377398,23969.936354737874,6,3,6,6_0,6_3,6_0_0 +17672,2,69.0,0.0,6,111,371.0,0.0,0.0,0,75,0.0,0.0,632.6294015910347,371.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,117691,2,1,0,0,1,,84.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1825.78748764983,371.0,28756.08825352866,0,5,0,1,84.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012901615711047715,28756.08825352866,8,4,8,8_0,8_3,8_0_0 +17673,2,37.0,0.0,9,112,0.0,0.0,0.0,23,23,0.0,0.0,0.0,1203.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,117692,1,1,1,0,1,,339.0,1600.0,43,2.0,0.0,6.0,2.0,1.5,2,2,1492.98624557181,0.0,84542.91251601579,1,1,2,3,135.0,9,2,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014229460095452756,56361.94167734386,10,5,10,10_1,10_1,10_0_0 +17674,2,86.0,0.0,8,111,1800.0,0.0,0.0,0,86,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,117693,2,1,0,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,375.462598397923,1800.0,25942.035062085382,0,5,0,1,95.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06938545860770666,25942.035062085382,7,4,7,7_0,7_3,7_0_0 +17675,1,49.0,186.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,344.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,117694,2,1,0,1,1,303.0,0.0,441.0,32,1.0,0.0,3.0,2.0,1.3,1,1,260.873426069212,0.0,17165.405486876643,0,1,2,3,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020040307248377912,13204.158066828188,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +17676,2,74.0,0.0,2,111,500.0,360.0,0.0,0,75,0.0,0.0,852.6002716860306,860.0,0.0,683.461457258324,41,0,0,0,0,0,0,0,0,0,,2,,2,117695,1,3,0,1,2,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,377.620027491577,500.0,26946.684280262423,0,5,0,1,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03191487275597474,26946.684280262423,7,4,7,7_0,7_3,7_0_1 +17677,1,41.0,270.0,7,111,560.0,,,81,62,0.0,0.0,,824.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,2,,5,117696,2,1,0,0,2,,360.0,550.0,43,2.0,0.0,4.0,3.0,1.8,3,2,124.3101522118026,560.0,10117.476380535823,4,4,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08144323436081605,5620.820211408791,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17678,2,32.0,0.0,2,111,0.0,,,54,53,0.0,0.0,,675.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,2,117697,1,1,0,0,2,,177.0,2000.0,43,2.0,0.0,6.0,4.0,2.3,3,2,49.67435471069917,0.0,25197.696926153767,4,1,2,3,162.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02678816250462115,10955.520402675551,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +17679,2,37.0,0.0,6,111,1800.0,0.0,0.0,52,42,0.0,662.163638505112,3069.36097806971,2300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,,4,117698,1,1,3,0,1,,680.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,474.555203759194,1800.0,41590.916209238014,1,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05530053698334092,17329.54842051584,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +17680,2,63.0,0.0,2,111,100.0,1100.0,0.0,0,74,0.0,0.0,170.52005433720612,1200.0,0.0,2088.354452733768,42,2,2,2,2,1,2,2,2,0,,2,,2,117699,1,2,0,0,2,,80.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1664.39417259865,100.0,11951.497602650952,0,5,1,2,49.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.1004058269428786,11951.497602650952,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +17681,0,59.0,0.0,2,111,600.0,220.0,0.0,56,63,0.0,0.0,1023.1203260232367,820.0,0.0,417.6708905467536,71,2,2,2,1,2,2,2,2,3,60.0,2,,2,117700,2,2,0,1,1,,0.0,,43,2.0,7.0,4.0,2.0,1.5,2,2,245.349641626297,600.0,29086.902162051898,1,1,5,0,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02819138302977515,19391.268108034597,5,3,5,5_0,5_4,5_0_1 +17682,2,37.0,0.0,2,300,927.0,0.0,0.0,56,68,316.40485531098045,297.97363732730037,1580.7209037059008,1588.0,188.44013465392686,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,117701,2,3,4,0,1,,233.0,460.0,43,2.0,0.0,5.0,4.0,2.5,4,3,1461.2466037195,927.0,36364.9858953739,1,1,2,3,120.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.043668379373742974,14545.99435814956,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +17683,2,84.0,0.0,5,111,600.0,0.0,0.0,0,86,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,117702,2,1,0,0,1,800.0,0.0,546.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1987.47319469452,600.0,8833.599728607867,0,5,2,3,44.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06792247989875325,8833.599728607867,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +17684,2,80.0,0.0,2,111,500.0,0.0,0.0,72,72,4218.731404146406,0.0,852.6002716860306,4650.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117703,1,1,2,0,2,,500.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,1236.98567644842,500.0,11330.903827048764,5,5,0,1,150.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.41038209051776364,7553.935884699175,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +17685,2,60.0,0.0,2,111,800.0,1300.0,0.0,77,43,0.0,0.0,1364.160434697649,2100.0,0.0,2468.055262321726,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,117704,2,1,0,0,1,,0.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,360.296837950522,800.0,13930.565074666438,5,1,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.15074765372001853,9287.043383110959,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +17686,2,41.0,0.0,1,111,1000.0,0.0,0.0,55,68,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117705,2,1,1,0,1,,700.0,,43,2.0,1.0,4.0,4.0,2.3,3,2,1791.48982662442,1000.0,34206.81030358563,1,1,1,2,90.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02923394467724393,14872.526218950276,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +17687,2,64.0,0.0,2,111,300.0,1100.0,0.0,77,78,0.0,99.3245457757668,511.56016301161833,1475.0,0.0,2088.354452733768,70,0,0,0,0,0,0,0,0,0,,1,,2,117706,2,1,1,0,2,,260.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,268.008796149355,300.0,43583.87688729766,5,5,0,1,118.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03384279016330194,29055.917924865105,8,4,8,8_1,8_3,8_0_1 +17688,1,48.0,392.0,6,300,671.0,1015.0,0.0,54,68,0.0,0.0,1144.189564602653,1866.0,249.40606057137379,1926.9816086588858,71,0,0,0,0,0,0,0,0,0,,1,,4,117707,2,2,2,0,1,,800.0,362.0,43,3.0,2.0,5.0,5.0,2.8,4,3,748.461632871619,671.0,23789.403458213255,4,1,2,3,100.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07843828464541705,8496.215520790449,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +17689,1,47.0,50.0,2,111,556.0,0.0,0.0,0,63,0.0,0.0,948.091502114866,556.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,117708,1,3,0,0,2,,0.0,600.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1936.02465513145,556.0,14148.267515687876,0,1,3,4,25.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03929809776239362,14148.267515687876,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +17690,2,52.0,0.0,7,111,260.0,0.0,0.0,46,46,0.0,264.8654554020448,443.3521412767359,1960.0,2078.3838380947814,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,117709,2,1,2,0,1,,255.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,682.470232915817,260.0,96630.49126598466,1,1,0,1,120.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020283452710645057,48315.24563299233,10,5,10,10_1,10_2,10_0_0 +17691,1,44.0,387.0,6,111,350.0,,,0,85,0.0,0.0,,442.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,2,,4,117710,2,1,0,0,2,,605.0,395.0,31,0.0,1.0,3.0,3.0,1.8,2,1,85.47200957932131,350.0,10056.124897504396,0,6,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043953312484184645,5586.736054169109,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17692,2,65.0,0.0,7,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,1948.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,60.0,2,,5,117711,2,2,0,0,2,,0.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,1080.99102565873,0.0,138416.18598239357,0,1,0,1,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014073498602596839,138416.18598239357,10,5,10,10_0,10_4,10_0_0 +17693,1,53.0,156.0,2,111,300.0,1100.0,0.0,0,56,0.0,0.0,511.56016301161833,1400.0,0.0,2088.354452733768,50,2,2,1,2,2,2,2,1,2,45.0,1,,2,117712,2,2,3,0,1,,360.0,350.0,12,1.0,3.0,5.0,1.0,1.0,1,1,820.110519102735,300.0,11530.224028785446,0,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.12142001720910806,11530.224028785446,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +17694,2,63.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1599.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,117713,2,2,5,0,1,,332.0,750.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1465.74326842936,0.0,67500.69172901586,0,5,2,3,85.0,5,4,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02368864613149814,67500.69172901586,10,5,10,10_1,10_2,10_0_0 +17695,2,44.0,0.0,6,112,1150.0,0.0,0.0,43,37,0.0,662.163638505112,1960.9806248778702,1650.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,4,117714,1,1,2,0,1,,880.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1051.63658783394,1150.0,77075.0877028256,1,1,1,2,85.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02140769539389717,36702.42271563124,9,5,9,9_1,9_1,9_0_0 +17696,1,67.0,145.0,2,111,510.0,,,0,77,0.0,0.0,,550.0,55.423569015860835,,70,0,0,0,0,0,0,0,0,0,,2,,2,117715,2,2,0,0,2,,260.0,145.0,21,2.0,5.0,4.0,3.0,2.0,3,3,95.25343031677511,510.0,10092.796,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05449431455862181,5046.398,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17697,2,84.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,455.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117716,2,1,0,1,1,,0.0,500.0,41,0.0,6.0,3.0,2.0,1.5,2,2,694.982645879289,0.0,22849.694311325773,6,5,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01991273904152288,15233.129540883849,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +17698,2,39.0,0.0,5,111,500.0,0.0,0.0,52,42,0.0,0.0,852.6002716860306,593.0,0.0,0.0,20,2,1,2,2,1,2,2,2,2,25.0,2,,3,117717,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,669.593317400917,500.0,52245.87326378981,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011350178740547383,24878.987268471334,7,4,7,7_0,7_4,7_0_0 +17699,1,52.0,352.0,1,111,650.0,0.0,0.0,0,56,0.0,26.486545540204478,1108.3803531918397,705.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,117718,2,1,0,0,1,,0.0,535.0,32,1.0,5.0,1.0,2.0,1.3,1,1,2336.32525216681,650.0,7720.675596379737,0,4,2,3,15.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09131325247373144,5938.981227984413,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +17700,2,37.0,0.0,1,111,400.0,660.0,0.0,35,37,0.0,0.0,682.0802173488245,1060.0,0.0,1253.0126716402608,31,0,0,0,0,0,0,0,0,3,45.0,2,,1,117719,2,2,0,0,1,,0.0,1130.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1073.82898016818,400.0,61033.019786723635,1,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017367647933923452,40688.679857815754,9,5,9,9_0,9_4,9_1_0 +17701,1,70.0,215.0,9,111,0.0,,,56,72,0.0,0.0,,805.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,117720,2,3,0,0,2,,0.0,892.0,42,1.0,2.0,4.0,3.0,1.8,2,2,223.95704474837223,0.0,29764.41632943388,4,5,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02704571764788613,16535.78684968549,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +17702,1,40.0,340.0,2,111,550.0,2000.0,0.0,0,68,0.0,0.0,937.8602988546337,2954.0,0.0,3797.008095879578,31,0,0,0,0,0,0,0,0,1,5.0,2,,2,117721,2,2,0,0,1,,0.0,307.0,32,1.0,0.0,4.0,3.0,1.8,2,1,446.248132641992,550.0,11246.457811575643,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.26266047936973863,6248.032117542024,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17703,2,45.0,0.0,7,112,1840.0,0.0,0.0,54,52,0.0,79.45963662061344,3137.5689998045927,2050.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,117722,2,1,2,0,1,,641.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,1600.09388483283,1840.0,57189.801412867164,1,1,1,2,167.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0358455519927504,20424.92907602399,5,3,5,5_1,5_0,5_0_0 +17704,2,43.0,0.0,9,111,3600.0,0.0,0.0,84,38,0.0,66.2163638505112,6138.72195613942,3650.0,0.0,0.0,12,2,2,2,1,1,2,2,2,2,20.0,1,2006.0,6,117723,2,1,2,0,1,,100.0,2500.0,42,1.0,0.0,7.0,5.0,2.5999999999999996,3,2,1451.53424628841,3600.0,33135.511663604135,3,1,2,3,160.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.11015372380711236,12744.42756292467,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +17705,2,81.0,0.0,1,120,450.0,0.0,0.0,0,75,0.0,0.0,767.3402445174275,514.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117724,2,1,1,0,1,,75.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,571.120742286033,450.0,15854.647847367847,0,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032419515396889316,15854.647847367847,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +17706,2,28.0,0.0,1,111,220.0,1300.0,0.0,0,55,0.0,0.0,375.14411954185346,1520.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,117725,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2098.82585540768,220.0,15189.510971321452,0,1,1,2,79.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10006905441984507,15189.510971321452,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +17707,2,78.0,0.0,2,111,650.0,0.0,0.0,74,74,1898.4291318658827,0.0,1108.3803531918397,2450.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,117726,2,1,2,0,1,,252.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1220.69332292309,650.0,95891.97778584584,5,5,0,1,102.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025549582525782807,63927.98519056389,10,5,10,10_1,10_4,10_0_1 +17708,2,66.0,0.0,1,111,1265.0,0.0,0.0,77,78,0.0,1226.3270585114674,2157.0786873656575,2311.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117727,2,1,2,0,2,,400.0,,41,1.0,3.0,6.0,3.0,2.0,3,3,220.255248228734,1265.0,50776.06886641665,5,5,0,1,110.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04551356675680929,25388.034433208326,7,4,7,7_1,7_3,7_1_0 +17709,2,75.0,0.0,2,111,350.0,84.0,0.0,0,77,0.0,0.0,596.8201901802214,434.0,0.0,159.4743400269423,71,0,0,0,0,0,0,0,0,0,,2,,2,117728,2,1,0,1,1,720.0,0.0,329.0,11,0.0,0.0,3.0,1.0,1.0,1,1,309.286700597061,350.0,22875.403275087327,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0189723431224774,22875.403275087327,6,3,6,6_0,6_4,6_0_1 +17710,2,62.0,0.0,8,111,1300.0,0.0,0.0,75,37,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,2,2000.0,6,117729,2,1,0,0,1,,0.0,,42,2.0,0.0,6.0,4.0,2.5,4,4,866.413886589104,1300.0,92887.86553357073,6,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013995369497753884,37155.14621342829,9,5,9,9_0,9_4,9_0_0 +17711,2,49.0,0.0,7,111,2334.0,0.0,0.0,21,21,0.0,529.7309108040896,3979.938068230391,2734.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,117730,1,1,2,0,1,,350.0,,43,2.0,6.0,6.0,3.0,2.0,3,2,372.456548898185,2334.0,58263.38344361629,1,1,1,2,110.0,4,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04692484092767796,29131.691721808143,8,4,8,8_1,8_2,8_0_0 +17712,2,74.0,0.0,2,111,200.0,70.0,0.0,0,77,0.0,0.0,341.04010867441224,270.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,0,,2,,2,117731,1,2,0,1,1,324.0,130.0,276.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1612.50533383029,200.0,21680.096799460214,0,5,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012453818933443248,21680.096799460214,6,3,6,6_0,6_3,6_0_1 +17713,2,49.0,0.0,1,120,1330.0,0.0,0.0,52,43,2953.111982902484,794.5963662061343,2267.9167226848413,6209.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,117732,2,3,1,0,1,,200.0,,43,2.0,0.0,8.0,5.0,3.0,5,3,190.75738338384,1330.0,68354.65584714204,1,1,1,2,200.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09083507075048207,22784.88528238068,6,3,6,6_1,6_0,6_1_0 +17714,2,61.0,0.0,9,111,1200.0,0.0,0.0,72,43,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,117733,2,1,0,0,1,,220.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1769.11802913197,1200.0,57611.33234669536,5,1,1,2,68.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.020829235345202587,38407.55489779691,9,5,9,9_0,9_3,9_0_0 +17715,2,71.0,0.0,1,112,2500.0,0.0,0.0,52,74,316.40485531098045,0.0,4263.001358430153,2830.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117734,2,1,2,0,1,,240.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1849.71706050312,2500.0,66126.6148769921,1,5,0,1,180.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04279668640628786,44084.40991799473,10,5,10,10_1,10_0,10_1_0 +17716,1,33.0,459.0,1,400,1050.0,0.0,0.0,85,85,0.0,0.0,1790.4605705406643,1140.0,124.70303028568689,0.0,50,2,1,2,1,2,1,2,2,0,,1,,1,117735,1,2,5,0,2,,630.0,550.0,41,0.0,0.0,6.0,5.0,2.4,2,2,224.700725306444,1050.0,8950.994311140756,7,6,2,3,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.12736015244486432,3729.580962975315,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +17717,2,67.0,0.0,2,111,188.0,836.0,0.0,0,77,0.0,344.3250920226582,320.5777021539475,1284.0,0.0,1587.1493840776636,70,0,0,0,0,0,0,0,0,0,,1,,2,117736,2,2,2,0,1,,208.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,481.688978131315,188.0,14420.972446134658,0,5,0,1,120.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0890369914231518,14420.972446134658,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +17718,2,71.0,0.0,5,112,1100.0,0.0,0.0,77,75,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117737,2,1,3,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1947.86071412082,1100.0,36202.82949935501,5,5,0,1,96.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03038436539938398,24135.219666236673,6,3,6,6_1,6_1,6_0_0 +17719,2,63.0,0.0,8,111,510.0,,,45,52,0.0,0.0,,640.0,180.1265993015477,,70,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,117738,2,1,0,0,2,,400.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,109.47377578387496,510.0,71726.30700150247,1,1,1,2,132.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0089228070809026,47817.538001001645,10,5,10,10_1,10_2,10_0_0 +17720,1,27.0,173.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,670.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,117739,2,2,0,0,1,,0.0,630.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1292.08904698523,0.0,23579.160540819616,0,4,3,4,21.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02841492167798399,23579.160540819616,6,3,6,6_0,6_4,6_1_0 +17721,2,64.0,0.0,2,120,280.0,1000.0,0.0,75,78,0.0,132.4327277010224,477.4561521441771,1380.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,117740,2,1,1,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1012.0589676836,280.0,63315.55605028613,5,5,0,1,90.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021795591574746403,42210.37070019075,9,5,9,9_1,9_1,9_0_1 +17722,2,70.0,0.0,2,111,325.0,0.0,0.0,77,46,3111.3144105579745,0.0,554.1901765959199,3392.0,162.11393937139295,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,117741,2,2,2,0,2,,164.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,844.978880857572,325.0,72715.12939783004,5,1,0,1,140.0,4,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04664778881767656,48476.752931886695,10,5,10,10_1,10_1,10_0_1 +17723,2,56.0,0.0,2,111,350.0,,,68,85,0.0,0.0,,392.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,2,117742,2,1,0,0,2,,360.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,117.78664900813699,350.0,19048.467902656615,1,7,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020579082895445324,12698.978601771078,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +17724,2,71.0,0.0,2,111,400.0,0.0,0.0,0,75,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117743,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,379.45265780115,400.0,25859.433155630562,0,5,0,1,72.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015468243158798904,25859.433155630562,7,4,7,7_0,7_3,7_0_1 +17725,2,59.0,0.0,1,300,500.0,0.0,0.0,74,34,0.0,1191.8945493092015,852.6002716860306,1520.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,1,117744,2,3,3,0,1,,150.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,1038.42914080716,500.0,84250.189560535,5,1,0,1,200.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018041502433746547,56166.793040356664,10,5,10,10_1,10_0,10_1_0 +17726,2,65.0,0.0,1,111,600.0,3500.0,0.0,74,90,0.0,0.0,1023.1203260232367,4100.0,0.0,6644.764167789262,20,1,2,2,1,1,2,2,2,0,,1,,1,117745,2,1,4,0,1,,300.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,689.258256776408,600.0,191988.9554432251,5,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.021355395108717336,127992.63696215006,10,5,10,10_1,10_4,10_1_0 +17727,1,49.0,210.0,5,111,625.0,850.0,0.0,52,63,0.0,0.0,1065.7503396075383,1475.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,117746,2,1,4,0,1,,506.0,566.0,43,2.0,6.0,4.0,2.0,1.5,2,2,388.36460774822,625.0,36001.417879605084,1,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04097060857249159,24000.945253070055,6,3,6,6_1,6_3,6_0_0 +17728,2,60.0,0.0,5,111,300.0,0.0,0.0,0,90,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,117747,2,2,0,0,1,,0.0,625.0,11,0.0,2.0,1.0,1.0,1.0,1,1,939.444804121057,300.0,25314.82602787371,0,7,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011850762856109509,25314.82602787371,7,4,7,7_0,7_4,7_0_0 +17729,2,54.0,0.0,2,111,637.0,1583.0,0.0,68,38,0.0,0.0,1086.212746128003,2220.0,0.0,3005.331907888686,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,117748,2,1,2,0,1,,555.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,203.221869378854,637.0,73607.25768792325,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03016006939712734,24535.752562641082,7,4,7,7_1,7_4,7_0_1 +17730,2,51.0,0.0,1,111,700.0,,,0,63,0.0,0.0,,750.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,2,10.0,8,,1,117749,2,1,0,0,2,,500.0,532.0,22,2.0,0.0,3.0,2.0,1.5,2,2,124.43930626799427,700.0,32497.00619648398,0,1,2,3,84.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023079049050405955,21664.67079765599,6,3,6,6_0,6_2,6_1_0 +17731,2,37.0,0.0,5,400,820.0,0.0,0.0,69,52,0.0,33.1081819252556,1398.2644455650902,985.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,117750,2,2,5,0,1,,300.0,403.0,43,2.0,0.0,4.0,4.0,2.5,4,3,1427.48799033747,820.0,33726.62536267755,1,1,2,3,82.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029205412323582706,13490.65014507102,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +17732,2,56.0,0.0,6,112,2208.0,0.0,0.0,75,42,0.0,595.9472746546007,3765.082799765511,2658.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,117751,1,1,2,0,1,,464.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1630.54673463742,2208.0,76920.06849387055,5,1,0,1,118.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03455535144527082,51280.04566258037,10,5,10,10_1,10_0,10_0_0 +17733,2,58.0,0.0,6,111,480.0,,,55,55,0.0,0.0,,720.0,332.541414095165,,50,0,0,0,0,0,0,0,0,0,,2,,4,117752,2,2,0,0,2,,600.0,307.0,43,2.0,0.0,3.0,4.0,2.5,4,3,118.11128747085166,480.0,22689.63078598808,4,4,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03173255690192341,9075.852314395232,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +17734,1,28.0,357.0,9,111,0.0,,,0,48,0.0,0.0,,1554.0,0.0,,50,0,0,0,0,0,0,0,0,2,45.0,2,2009.0,6,117753,2,1,0,0,2,,363.0,398.0,32,1.0,0.0,3.0,2.0,1.3,1,1,267.87901414880145,0.0,16396.45221235115,0,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0947766004422225,12612.655547962422,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +17735,1,64.0,71.0,6,112,400.0,0.0,0.0,0,78,0.0,0.0,682.0802173488245,472.0,99.7624242285495,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,117754,2,1,0,1,1,661.0,0.0,322.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1240.99997040576,400.0,10192.475483781478,0,5,2,3,60.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04630867160299362,10192.475483781478,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +17736,1,28.0,219.0,2,111,400.0,200.0,0.0,85,68,0.0,0.0,682.0802173488245,600.0,0.0,379.7008095879578,42,2,2,2,1,2,2,2,2,0,,2,,2,117755,1,1,0,1,1,,750.0,332.0,42,1.0,0.0,3.0,4.0,2.1,2,2,180.60637627003,400.0,20835.501275037925,6,4,2,3,73.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.028797003349222656,9921.667273827583,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17737,2,47.0,0.0,8,111,1438.0,0.0,0.0,38,37,0.0,0.0,2452.078381369024,1438.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,1999.0,6,117756,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,892.403801211003,1438.0,116810.88001404467,1,1,1,2,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012310497102899175,46724.35200561787,10,5,10,10_0,10_4,10_0_0 +17738,0,33.0,0.0,7,211,0.0,,,42,38,0.0,0.0,,393.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,117757,2,1,0,0,2,,245.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,87.62320392449553,0.0,94603.0,1,1,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004154202298024375,52557.22222222222,10,5,10,10_1,10_2,10_0_0 +17739,1,48.0,273.0,6,111,489.0,0.0,0.0,0,52,0.0,66.2163638505112,833.843065708938,1299.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,75.0,2,,4,117758,2,3,0,0,1,2000.0,0.0,513.0,32,1.0,0.0,5.0,4.0,2.3,3,2,684.4372339989,489.0,27908.737966192897,0,1,2,3,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,1,0.046544562551468174,12134.233898344739,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +17740,2,83.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2068.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117759,2,1,2,0,1,,110.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1576.04617191451,0.0,14072.554809046162,0,5,0,1,70.0,6,4,4,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14695270532331783,14072.554809046162,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +17741,2,38.0,0.0,5,120,200.0,0.0,0.0,0,46,1054.6828510366015,0.0,341.04010867441224,1436.0,45.72444443808519,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,3,117760,2,1,2,0,2,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1585.87097221325,200.0,29105.0,0,1,1,2,60.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04933860161484281,29105.0,8,4,8,8_1,8_0,8_0_0 +17742,1,48.0,50.0,2,111,250.0,0.0,0.0,0,85,0.0,0.0,426.3001358430153,250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,117761,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1433.67481797488,250.0,12519.409795685542,0,5,1,2,38.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019968992474881313,12519.409795685542,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17743,2,69.0,0.0,2,111,200.0,1300.0,0.0,0,77,0.0,0.0,341.04010867441224,1500.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,2,117762,2,2,2,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1653.60613806072,200.0,25776.76647381161,0,5,0,1,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05819193813638158,25776.76647381161,7,4,7,7_1,7_2,7_0_1 +17744,2,85.0,0.0,2,111,174.0,687.0,0.0,0,78,0.0,0.0,296.7048945467387,861.0,0.0,1304.272280934635,71,0,0,0,0,0,0,0,0,0,,2,,2,117763,2,1,0,0,1,,0.0,227.0,11,0.0,0.0,1.0,1.0,1.0,1,1,503.661588753444,174.0,16237.836131126263,0,5,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05302430650532009,16237.836131126263,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +17745,2,43.0,0.0,1,111,464.0,1357.0,0.0,56,63,0.0,0.0,791.2130521246364,1821.0,0.0,2576.2699930542935,43,2,2,2,2,1,2,1,2,2,60.0,2,,1,117764,1,3,0,0,2,,0.0,289.0,43,2.0,0.0,3.0,4.0,2.3,3,3,837.63750529199,464.0,38424.345055177306,4,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.0473918292526534,16706.236980511872,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +17746,1,23.0,83.0,2,111,1200.0,0.0,0.0,0,46,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,31,2,2,2,2,2,2,2,1,2,20.0,2,,2,117765,1,2,0,0,2,,0.0,720.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1980.39468605925,1200.0,11760.990165788762,0,1,2,3,55.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10713383671259084,11760.990165788762,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +17747,0,83.0,0.0,1,111,540.0,0.0,0.0,0,77,0.0,1589.1927324122687,920.8082934209131,1830.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117766,2,1,1,0,1,,510.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,367.93888871863,540.0,11836.989776939488,0,5,5,0,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15460011662468087,11836.989776939488,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +17748,2,57.0,0.0,7,400,180.0,,,86,85,0.0,0.0,,180.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,117767,1,1,0,0,2,,0.0,,41,1.0,0.0,4.0,7.0,3.6,5,4,6.69311278593562,180.0,5940.904501456075,7,6,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030298416673064384,1650.2512504044653,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +17749,2,45.0,0.0,8,111,2234.0,,,22,21,0.0,0.0,,2234.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,117768,2,1,0,0,2,,500.0,,43,2.0,1.0,4.0,4.0,2.5,4,3,59.33247101134325,2234.0,21344.281006759258,1,1,1,2,132.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10466503881262348,8537.712402703703,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17750,2,53.0,0.0,7,400,1730.0,0.0,0.0,78,52,0.0,0.0,2949.996940033666,1730.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,117769,2,1,3,0,1,,209.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2172.87193480578,1730.0,65490.73892165844,5,5,0,1,118.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02641594870489195,43660.49261443896,10,5,10,10_1,10_1,10_0_0 +17751,2,53.0,0.0,1,111,365.0,2200.0,0.0,85,55,0.0,0.0,622.3981983308023,2565.0,0.0,4176.708905467536,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,117770,2,2,2,0,2,,672.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,2007.87102100873,365.0,23861.55955425733,6,1,0,1,150.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10749506938838616,13256.421974587403,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +17752,2,65.0,0.0,1,111,830.0,0.0,0.0,77,74,0.0,1324.327277010224,1415.3164509988108,1930.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117771,2,1,3,0,1,,230.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,397.088890115451,830.0,37427.68788446188,5,5,0,1,90.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05156610277284161,24951.791922974586,7,4,7,7_1,7_2,7_1_0 +17754,2,61.0,0.0,9,112,451.0,0.0,0.0,0,71,0.0,0.0,769.0454450607996,451.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,117773,1,1,1,0,1,,100.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1210.83643229761,451.0,20249.82716320513,0,5,0,1,91.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022271795031391074,20249.82716320513,5,3,5,5_1,5_0,5_0_0 +17755,2,40.0,0.0,1,111,1270.0,0.0,0.0,0,68,0.0,0.0,2165.6046900825177,1270.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,117774,1,2,0,0,1,,0.0,860.0,22,2.0,2.0,2.0,3.0,2.0,3,2,1022.28892422152,1270.0,14796.457598037377,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08583135467292216,7398.228799018689,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +17756,2,65.0,0.0,2,111,304.0,108.0,0.0,77,74,0.0,0.0,518.3809651851066,412.0,0.0,205.0384371774972,20,0,0,0,0,0,0,0,0,0,,2,,2,117775,2,1,0,1,1,524.0,176.0,361.0,41,0.0,3.0,4.0,2.0,1.5,2,2,247.53722886967,304.0,57651.0,5,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0071464501916705695,38434.0,9,5,9,9_0,9_4,9_0_1 +17757,2,44.0,0.0,6,111,525.0,,,85,85,0.0,0.0,,525.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,117776,2,2,0,0,1,,700.0,350.0,41,1.0,0.0,3.0,8.0,3.6999999999999993,4,3,8.660141470795049,525.0,26325.909448328122,6,7,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019942330996407083,7115.110661710305,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17758,1,50.0,106.0,2,111,600.0,0.0,0.0,0,85,0.0,0.0,1023.1203260232367,762.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,117777,1,3,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,235.989677245541,600.0,22695.527800911805,0,7,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03357489663533563,22695.527800911805,6,3,6,6_0,6_4,6_0_1 +17759,1,54.0,168.0,5,211,310.0,1513.0,0.0,78,52,0.0,0.0,528.612168445339,1823.0,0.0,2872.4366245329006,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,117778,2,2,0,0,1,,300.0,245.0,42,1.0,4.0,3.0,2.0,1.5,2,2,371.080886496097,310.0,19391.62506261865,5,1,2,3,58.0,3,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09400965592688815,12927.750041745765,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +17760,1,30.0,400.0,6,400,0.0,0.0,0.0,85,21,0.0,0.0,0.0,1191.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,117779,2,1,1,0,1,,193.0,480.0,42,1.0,0.0,5.0,4.0,2.1,2,2,838.097755501405,0.0,14637.753753513007,6,4,2,3,80.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08136494301348418,6970.358930244289,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +17761,2,51.0,0.0,2,300,1684.0,0.0,0.0,85,21,0.0,0.0,2871.557715038551,1754.0,96.99124577775646,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,117780,2,2,0,0,1,,193.0,78.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1201.21181465151,1684.0,17792.405823747544,6,1,2,3,50.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.09858138451737282,11861.603882498363,2,1,2_0,2_0_0,2_0_0,2_0_1_0 +17762,2,42.0,0.0,2,111,828.0,0.0,0.0,0,35,0.0,0.0,1411.9060499120667,6210.0,7457.241211084076,0.0,20,1,2,2,2,1,2,2,2,2,30.0,1,,2,117781,2,2,4,0,1,,610.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,820.284617872395,828.0,37238.0,0,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.16676513239164295,28644.615384615383,8,4,8,8_1,8_4,8_0_1 +17763,2,74.0,0.0,6,111,24.0,,,0,77,0.0,0.0,,116.0,127.47420873647992,,70,0,0,0,0,0,0,0,0,0,,1,,4,117782,1,1,0,0,2,,360.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,90.44109755224477,24.0,25115.325694058356,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004618693837103719,25115.325694058356,7,4,7,7_1,7_3,7_0_0 +17764,1,36.0,434.0,1,111,0.0,0.0,0.0,63,52,0.0,0.0,0.0,1834.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,25.0,1,,1,117783,1,2,5,0,1,,635.0,603.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1460.42574768358,0.0,14733.751728817499,1,1,2,3,105.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1244761031511689,7016.072251817856,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +17765,2,52.0,0.0,8,111,1200.0,0.0,0.0,0,33,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,117784,2,1,3,0,1,,116.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1556.08781203772,1200.0,107461.01866489425,0,1,1,2,98.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011166839984479138,107461.01866489425,10,5,10,10_1,10_2,10_0_0 +17766,2,86.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,528.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,117785,1,2,0,0,2,,228.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,106.12747402542401,0.0,14912.631932114366,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03540622489736044,14912.631932114366,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +17767,2,48.0,0.0,1,111,456.0,567.0,0.0,0,43,0.0,0.0,777.5714477776598,1023.0,0.0,1076.4517951818605,33,2,2,1,2,2,2,2,1,0,,1,,1,117786,2,2,3,0,1,,234.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,968.102749843098,456.0,33701.37748073714,0,1,1,2,75.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03035484233796441,33701.37748073714,9,5,9,9_1,9_2,9_1_0 +17768,2,44.0,0.0,9,111,0.0,0.0,0.0,65,46,0.0,0.0,0.0,1908.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,117787,2,1,1,0,1,,540.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,518.278713672799,0.0,57717.06242759003,1,1,1,2,92.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03305781548383054,25094.374968517408,7,4,7,7_1,7_4,7_0_0 +17769,2,70.0,0.0,2,111,373.0,1300.0,0.0,78,78,0.0,0.0,636.0398026777788,1673.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,2,,2,117788,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2272.94039148537,373.0,35189.08081044354,5,5,0,1,83.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04754315718026602,23459.38720696236,6,3,6,6_0,6_2,6_0_1 +17770,2,43.0,0.0,5,112,650.0,1540.0,0.0,46,38,0.0,66.2163638505112,1108.3803531918397,2240.0,0.0,2923.696233827275,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,117789,1,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,104.340466767292,650.0,62942.48154172052,1,1,0,1,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03558804713657895,27366.296322487182,7,4,7,7_1,7_0,7_0_0 +17771,1,56.0,53.0,5,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,3,117790,1,1,0,1,1,527.0,0.0,331.0,12,1.0,0.0,4.0,1.0,1.0,1,1,340.354772599392,0.0,20401.049133285313,0,1,2,3,60.0,8,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02941025219242625,20401.049133285313,5,3,5,5_0,5_3,5_0_0 +17772,2,37.0,0.0,1,111,859.0,0.0,0.0,0,43,0.0,0.0,1464.7672667566005,859.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,45.0,2,,1,117791,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,572.800515331757,859.0,24032.25416369761,0,1,1,2,28.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035743629962834665,24032.25416369761,6,3,6,6_0,6_3,6_1_0 +17773,2,36.0,0.0,8,111,581.0,,,43,47,0.0,0.0,,650.0,95.60565655235995,,10,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,117792,2,2,0,0,1,,208.0,1100.0,43,2.0,0.0,4.0,2.0,1.5,2,2,91.22686749750717,581.0,59748.19381799634,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01087898994871738,39832.12921199756,9,5,9,9_1,9_2,9_0_0 +17774,1,61.0,342.0,8,111,300.0,,,0,69,0.0,0.0,,366.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,117793,2,2,0,0,2,,166.0,378.0,12,1.0,0.0,1.0,1.0,1.0,1,1,111.25629450934932,300.0,6332.0,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05780164245104232,6332.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17775,0,36.0,0.0,2,211,516.0,,,0,85,0.0,79.45963662061344,,664.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,117794,2,1,0,0,2,,200.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,102.43897531638086,516.0,20041.600000000002,0,7,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03313108733833626,13361.066666666668,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +17776,0,51.0,0.0,7,112,504.0,,,0,48,0.0,0.0,,548.0,60.965925917446924,,50,2,2,2,2,1,2,2,2,0,,1,,5,117795,2,1,0,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,106.73278515550496,504.0,6477.575599558557,0,4,5,0,85.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.08459955296196711,6477.575599558557,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +17777,2,81.0,0.0,1,112,550.0,0.0,0.0,0,78,2109.365702073203,0.0,937.8602988546337,2615.0,90.06329965077386,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,117796,2,1,2,0,1,,380.0,,21,0.0,1.0,4.0,2.0,1.5,2,2,730.427164024921,550.0,27333.518607731177,0,5,0,1,80.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09567008322376606,18222.345738487453,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +17778,2,46.0,0.0,9,111,0.0,0.0,2400.0,64,46,0.0,0.0,1512.763896995385,2400.0,0.0,2872.157154155234,42,0,0,0,0,0,0,0,0,2,40.0,1,2005.0,6,117797,2,1,1,0,1,,320.0,1430.0,43,2.0,2.0,4.0,4.0,2.5,4,2,1530.25534438482,0.0,118271.05079099293,1,1,2,3,100.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020292370651557402,47308.42031639717,10,5,10,10_1,10_2,10_0_0 +17779,1,33.0,70.0,2,111,632.0,0.0,0.0,46,55,0.0,0.0,1077.6867434111427,1225.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,2,117798,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1020.12437941502,632.0,12002.512076053104,1,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10206196771458095,5715.481940977668,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +17780,2,58.0,0.0,2,111,300.0,0.0,0.0,0,34,0.0,0.0,511.56016301161833,300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,117799,2,1,0,1,1,,0.0,412.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1580.0246040946,300.0,35859.210306472174,0,1,2,3,66.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008366051495167852,35859.210306472174,9,5,9,9_0,9_3,9_0_1 +17781,2,58.0,0.0,2,111,273.0,96.0,0.0,0,54,0.0,0.0,465.5197483405727,837.0,0.0,182.25638860221974,60,0,0,0,0,0,0,0,0,2,5.0,2,,2,117800,2,1,0,1,1,1020.0,0.0,487.0,22,1.0,1.0,4.0,2.0,1.5,2,2,1613.07261144931,273.0,30298.82126177383,0,1,2,3,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027624837044601194,20199.214174515888,5,3,5,5_0,5_3,5_0_1 +17782,2,47.0,0.0,9,112,2500.0,,,52,63,0.0,0.0,,2600.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,117801,2,1,0,0,2,,300.0,,43,2.0,0.0,4.0,5.0,2.8,4,2,74.4371719791204,2500.0,53684.0,4,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048431562476715595,19172.857142857145,5,3,5,5_1,5_1,5_0_0 +17783,2,75.0,0.0,2,300,570.0,0.0,0.0,77,75,2109.365702073203,397.2981831030672,971.9643097220749,2990.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117802,2,1,1,0,1,,280.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,621.350383473446,570.0,28403.704570681446,5,5,0,1,88.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10526795871149514,18935.803047120964,5,3,5,5_1,5_0,5_0_1 +17784,2,75.0,0.0,7,221,420.0,0.0,0.0,0,72,1582.0242765549024,0.0,716.1842282162656,1990.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,117803,2,1,2,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,893.756080659748,420.0,11280.540683253905,0,5,0,1,100.0,1,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.17640998387197684,11280.540683253905,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +17785,2,42.0,0.0,2,111,1800.0,0.0,0.0,37,38,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,50.0,1,,2,117804,2,2,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,488.545986861168,1800.0,89961.32852731097,4,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020008597354734994,42838.727870148075,9,5,9,9_1,9_4,9_0_1 +17787,2,40.0,0.0,2,112,750.0,0.0,0.0,56,63,738.277995725621,794.5963662061343,1278.9004075290459,2110.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,22.0,1,,2,117806,2,2,1,0,1,,170.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,605.611366306301,750.0,30852.282733050677,1,1,1,2,100.0,8,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06839040139288141,17140.157073917042,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +17788,2,70.0,0.0,5,111,290.0,1100.0,0.0,0,77,0.0,0.0,494.50815757789775,1588.0,0.0,2088.354452733768,70,0,0,0,0,0,0,0,0,0,,1,,3,117807,2,2,1,0,1,,130.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,214.307707234664,290.0,18329.84014134767,0,5,0,1,105.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0866346889964336,18329.84014134767,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +17789,1,58.0,408.0,1,111,450.0,1750.0,0.0,85,68,0.0,0.0,767.3402445174275,2200.0,0.0,3322.382083894631,71,1,2,2,2,2,2,2,1,1,5.0,2,,1,117808,2,3,0,0,2,,600.0,437.0,42,3.0,0.0,4.0,9.0,4.3999999999999995,6,4,350.63580548537,450.0,32103.29563983538,6,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.0685287898377053,7296.2035545080425,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +17790,2,89.0,0.0,2,111,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,117809,2,1,1,0,1,,270.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1122.31853220625,1000.0,49716.976720074694,0,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02011385377736013,49716.976720074694,10,5,10,10_1,10_3,10_0_1 +17791,2,49.0,0.0,2,111,1451.0,0.0,0.0,0,52,0.0,145.67600047112464,2474.245988432861,1586.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,2,117810,2,1,2,0,1,,183.0,,12,1.0,2.0,8.0,1.0,1.0,1,1,330.005241442727,1451.0,20707.30423910805,0,1,1,2,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07659133133344621,20707.30423910805,5,3,5,5_1,5_3,5_0_1 +17792,2,35.0,0.0,1,211,300.0,740.0,0.0,37,62,0.0,0.0,511.56016301161833,1040.0,0.0,1404.892995475444,50,0,0,0,0,0,0,0,0,0,,2,,1,117811,2,1,0,0,1,,240.0,500.0,43,2.0,0.0,3.0,2.0,1.5,2,2,3526.36333124614,300.0,45111.29812554276,1,1,2,3,75.0,2,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023054091618151307,30074.19875036184,8,4,8,8_0,8_1,8_1_0 +17793,2,30.0,0.0,2,111,661.0,120.0,0.0,0,53,0.0,0.0,1127.1375591689325,781.0,0.0,227.8204857527747,31,0,0,0,0,0,0,0,0,0,,2,,2,117812,1,2,0,1,1,1230.0,0.0,357.0,22,1.0,1.0,4.0,3.0,2.0,3,3,213.39071695245,661.0,46558.74232058398,0,1,2,3,119.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01677450809608132,23279.37116029199,6,3,6,6_0,6_4,6_0_1 +17794,1,32.0,512.0,1,112,1184.0,0.0,0.0,54,53,0.0,519.1362925880078,2018.9574433525204,1638.0,85.9065319745843,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,1,117813,2,1,1,0,1,,356.0,530.0,43,2.0,0.0,7.0,5.0,2.4,3,2,1381.66103701842,1184.0,42545.48241823507,4,1,2,3,170.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03849997477753244,17727.28434093128,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +17795,2,42.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,899.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,6.0,2,,1,117814,2,2,0,0,2,,0.0,440.0,12,1.0,0.0,1.0,1.0,1.0,1,1,625.442755635121,0.0,33347.65734219829,0,1,2,3,40.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026958415422555063,33347.65734219829,8,4,8,8_0,8_3,8_1_0 +17796,2,92.0,0.0,7,221,2338.0,0.0,0.0,75,78,0.0,0.0,3986.758870403879,2398.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,117815,2,1,2,0,1,,348.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1903.21232877362,2338.0,34169.70504528162,5,5,0,1,85.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0701791249535861,22779.803363521078,6,3,6,6_1,6_1,6_0_0 +17797,1,35.0,85.0,7,111,310.0,924.0,0.0,0,43,0.0,0.0,528.612168445339,1234.0,0.0,1754.217740296365,33,0,0,0,0,0,0,0,0,2,5.0,2,,5,117816,2,1,0,0,1,,180.0,530.0,32,1.0,0.0,3.0,3.0,1.6,1,1,2063.08522651608,310.0,29621.590138354855,0,1,2,3,80.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04165880340104303,18513.493836471782,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +17798,2,69.0,0.0,1,111,250.0,0.0,0.0,0,77,342.7719265868955,0.0,426.3001358430153,575.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,117817,2,1,0,1,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,2258.61794964552,250.0,15762.142261257472,0,5,0,1,29.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.036479812862323935,15762.142261257472,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +17799,2,63.0,0.0,6,111,1370.0,0.0,0.0,0,52,0.0,0.0,2336.124744419724,1430.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,4,117818,2,1,2,0,1,,150.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,277.650097695246,1370.0,26973.48602502885,0,1,0,1,95.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05301502366705938,26973.48602502885,7,4,7,7_1,7_3,7_0_0 +17800,1,41.0,350.0,1,111,360.0,0.0,0.0,0,85,0.0,0.0,613.872195613942,419.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,1,117819,1,3,0,1,2,840.0,110.0,486.0,31,0.0,0.0,3.0,2.0,1.5,2,1,311.748751041786,360.0,5114.523676677758,0,7,2,3,56.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08192356248356834,3409.6824511185055,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +17801,2,69.0,0.0,6,111,510.0,0.0,0.0,77,74,0.0,0.0,869.6522771197511,510.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,117820,2,1,0,0,1,,273.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1685.25579347975,510.0,43684.0,5,5,0,1,91.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011674755059060526,29122.666666666668,8,4,8,8_0,8_2,8_0_0 +17802,2,78.0,0.0,5,111,296.0,0.0,0.0,77,75,0.0,0.0,504.7393608381301,296.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,117821,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,786.745264041394,296.0,57176.700804543296,5,5,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005176933888016142,38117.8005363622,9,5,9,9_0,9_4,9_0_0 +17803,2,62.0,0.0,2,112,498.0,407.0,0.0,54,77,0.0,0.0,849.1898705992865,905.0,0.0,772.6911475114941,31,0,0,0,0,0,0,0,0,0,,2,,2,117822,1,2,0,1,2,640.0,0.0,691.0,42,2.0,3.0,4.0,4.0,2.3,3,3,1068.6177259042,498.0,42095.9378768119,4,5,2,3,75.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021498511391962825,18302.581685570392,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +17804,2,57.0,0.0,2,111,400.0,260.0,0.0,0,47,0.0,0.0,682.0802173488245,660.0,0.0,493.61105246434516,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,117823,2,1,0,1,1,45.0,0.0,400.0,32,1.0,0.0,3.0,2.0,1.5,2,1,221.435732676478,400.0,23358.485598757426,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028255256412475182,15572.32373250495,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +17805,2,75.0,0.0,5,211,724.0,0.0,0.0,77,75,0.0,662.163638505112,1234.5651934013722,1323.0,137.1733333142556,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117824,2,1,2,0,1,,500.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1588.01550422631,724.0,36854.65946220853,5,5,0,1,96.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03589776759046246,24569.772974805688,7,4,7,7_1,7_1,7_0_0 +17806,1,25.0,100.0,1,111,0.0,0.0,920.0,0,62,0.0,0.0,579.8928271815643,920.0,0.0,1100.9935757595065,50,0,0,0,0,0,0,0,0,0,,2,,1,117825,2,1,0,0,1,,290.0,305.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2223.12853732331,0.0,18135.80120290371,0,4,2,3,42.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05072839019941945,18135.80120290371,4,2,4_1,4_0_1,4_2_1,4_1_0_1 +17807,2,28.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,440.0,0.0,,71,0,0,0,0,0,0,0,0,1,20.0,1,,5,117826,2,2,0,0,2,,330.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,87.59949796143475,0.0,16197.21952999907,0,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027165156290255284,10123.26220624942,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +17808,2,70.0,0.0,1,111,450.0,140.0,0.0,86,74,0.0,0.0,767.3402445174275,590.0,0.0,265.7905667115705,20,0,0,0,0,0,0,0,0,0,,2,,1,117827,2,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,685.940230571144,450.0,53272.039537135584,6,5,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011075228302245025,35514.693024757056,9,5,9,9_0,9_4,9_1_0 +17809,2,68.0,0.0,1,111,2200.0,0.0,0.0,74,74,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,117828,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,882.402540818201,2200.0,175704.75604127257,5,5,0,1,112.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012521004266288762,117136.50402751505,10,5,10,10_0,10_4,10_1_0 +17810,1,43.0,459.0,8,400,520.0,0.0,0.0,85,56,0.0,397.2981831030672,886.7042825534718,820.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,3.0,1,1999.0,6,117829,2,1,1,0,1,,273.0,421.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,751.123691778269,520.0,29800.511679004798,7,1,2,3,86.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.027516306056506755,11461.735261155693,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +17811,2,54.0,0.0,1,111,720.0,0.0,0.0,0,54,0.0,0.0,1227.744391227884,740.0,27.711784507930417,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,117830,2,1,3,0,1,,228.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,312.276827296488,720.0,7323.5085828827505,0,4,0,1,71.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10104446408782852,7323.5085828827505,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +17812,2,46.0,0.0,9,111,302.0,,,45,45,0.0,0.0,,398.0,133.01656563806603,,31,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,117831,2,1,0,0,2,,205.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,250.44797390127192,302.0,58483.165608491225,1,1,1,2,113.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0068053771689508885,38988.77707232748,9,5,9,9_1,9_2,9_0_0 +17813,0,73.0,0.0,6,111,620.0,,,0,75,0.0,0.0,,686.0,91.44888887617039,,70,0,0,0,0,0,0,0,0,0,,1,,4,117832,1,1,0,0,2,,300.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,90.31390173949526,620.0,24165.991433524257,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02838700004868606,24165.991433524257,6,3,6,6_1,6_2,6_0_0 +17814,2,68.0,0.0,1,112,480.0,0.0,0.0,77,78,1265.6194212439218,0.0,818.4962608185893,1714.0,47.110033663481715,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117833,2,1,1,0,1,,450.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1697.81648203998,480.0,34425.21034054227,6,6,0,1,120.0,9,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04978909302353448,22950.14022702818,6,3,6,6_1,6_2,6_1_0 +17815,2,84.0,0.0,2,211,432.0,0.0,0.0,77,78,1054.6828510366015,0.0,736.6466347367304,1630.0,274.3466666285112,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117834,2,2,2,0,1,,195.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1724.88033656163,432.0,29452.500997981224,5,5,0,1,90.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05534334758571864,19635.000665320815,5,3,5,5_1,5_1,5_0_1 +17816,1,35.0,342.0,5,111,550.0,100.0,0.0,0,85,0.0,0.0,937.8602988546337,650.0,0.0,189.8504047939789,71,2,2,2,1,1,2,2,2,0,,2,,3,117835,1,3,0,1,2,480.0,360.0,307.0,21,0.0,2.0,4.0,3.0,2.0,3,3,339.954850302609,550.0,14559.052146782027,0,7,2,3,80.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.04464576357353517,7279.526073391014,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17817,2,39.0,0.0,1,300,1027.0,0.0,0.0,0,54,0.0,0.0,1751.2409580431067,1060.0,45.72444443808519,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,117836,2,2,5,0,1,,270.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1966.7672838626,1027.0,25474.07921979773,0,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04161092500553261,25474.07921979773,7,4,7,7_1,7_0,7_1_0 +17818,2,50.0,0.0,2,112,1000.0,1200.0,0.0,34,90,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,4,80.0,1,,2,117837,2,1,3,0,2,,500.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,589.525627159769,1000.0,112574.10474235882,1,1,0,1,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01954268261812963,45029.641896943525,10,5,10,10_1,10_2,10_0_1 +17819,0,84.0,0.0,1,120,500.0,0.0,0.0,0,71,0.0,0.0,852.6002716860306,700.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117838,2,1,4,0,2,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,250.796879904862,500.0,18481.555874223013,0,5,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037875599043926754,18481.555874223013,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +17820,2,65.0,0.0,1,111,550.0,0.0,0.0,77,74,0.0,1986.490915515336,937.8602988546337,2170.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,117839,2,3,1,0,1,,300.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,501.064266863144,550.0,63253.26715456655,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03430652830465434,42168.84476971103,9,5,9,9_1,9_4,9_1_0 +17821,1,25.0,340.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,603.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,8,,1,117840,1,3,0,1,2,,0.0,1230.0,22,2.0,0.0,2.0,2.0,1.5,2,2,993.899365322255,0.0,22166.569246550614,0,1,3,4,25.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02720312707361488,14777.712831033743,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +17822,2,47.0,0.0,9,112,1600.0,0.0,0.0,0,37,0.0,529.7309108040896,2728.320869395298,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2006.0,6,117841,2,1,1,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2110.04476802047,1600.0,40649.37693924784,0,4,0,1,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04920124613445077,40649.37693924784,9,5,9,9_1,9_0,9_0_0 +17823,2,60.0,0.0,7,211,1400.0,,,37,21,0.0,0.0,,1400.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,117842,2,1,0,0,2,,400.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,55.93093834314648,1400.0,96207.21757373831,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01455192276948417,48103.608786869154,10,5,10,10_1,10_2,10_0_0 +17824,2,71.0,0.0,2,112,480.0,960.0,0.0,0,77,0.0,0.0,818.4962608185893,1440.0,0.0,1822.5638860221975,70,2,2,2,1,1,2,2,2,0,,1,,2,117843,1,2,5,0,2,,125.0,346.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1013.8781081689,480.0,18124.374649924834,0,5,2,3,75.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.07945101708686937,18124.374649924834,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +17825,2,66.0,0.0,2,111,621.0,1321.0,0.0,75,75,0.0,0.0,1058.92953743405,1942.0,0.0,2507.9238473284613,60,0,0,0,0,0,0,0,0,0,,1,,2,117844,2,2,2,0,1,,138.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,240.83717867075,621.0,49495.834281665564,5,5,1,2,110.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039235625142687275,32997.22285444371,8,4,8,8_1,8_2,8_0_1 +17826,2,74.0,0.0,2,111,384.0,0.0,0.0,0,74,0.0,0.0,654.7970086548714,832.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,2,,2,117845,2,1,0,1,1,,0.0,500.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2709.89836486871,384.0,37851.36780172633,0,5,2,3,75.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021980711618089902,37851.36780172633,9,5,9,9_0,9_3,9_0_1 +17827,2,70.0,0.0,1,111,460.0,1282.0,0.0,74,75,0.0,0.0,784.3922499511482,1742.0,0.0,2433.8821894588095,31,0,0,0,0,0,0,0,0,0,,1,,1,117846,2,1,1,0,1,,190.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1005.77663421705,460.0,39726.73039404713,5,5,0,1,70.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04384956886009,26484.486929364753,7,4,7,7_1,7_3,7_1_0 +17828,2,69.0,0.0,1,300,450.0,0.0,0.0,0,75,0.0,0.0,767.3402445174275,4950.0,6235.151514284345,0.0,50,1,2,2,1,1,2,2,2,0,,1,,1,117847,1,2,3,0,1,,80.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,389.903623158366,450.0,21850.20748616331,0,5,0,1,170.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.22654247119321858,21850.20748616331,6,3,6,6_1,6_0,6_1_0 +17829,2,49.0,0.0,2,111,562.0,0.0,0.0,53,63,0.0,0.0,958.3227053750984,682.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,117848,2,2,0,1,1,,0.0,,43,4.0,1.0,5.0,4.0,2.5,4,3,1576.06784723933,562.0,43552.83093759795,1,1,0,1,96.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01565914282305007,17421.132375039182,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +17830,1,26.0,89.0,5,111,0.0,,,54,55,0.0,0.0,,1210.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,3,117849,2,1,0,0,1,,238.0,452.0,43,2.0,0.0,3.0,3.0,1.8,2,2,124.81733629007391,0.0,33698.388979452255,4,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03590676102462355,18721.32721080681,5,3,5,5_0,5_2,5_0_0 +17831,2,39.0,0.0,9,111,600.0,,,85,53,0.0,0.0,,860.0,360.2531986030954,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,117850,2,1,0,0,2,,600.0,,42,1.0,0.0,7.0,5.0,2.5999999999999996,3,2,227.73829162859377,600.0,51308.46355339681,6,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016761367237297927,19734.024443614162,5,3,5,5_1,5_2,5_0_0 +17832,0,63.0,0.0,2,111,300.0,,,77,78,0.0,0.0,,384.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,2,117851,1,2,0,0,2,,283.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,123.01769660221551,300.0,33207.197881592954,5,5,5,0,29.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011563757995156063,22138.13192106197,6,3,6,6_1,6_2,6_0_1 +17833,2,70.0,0.0,2,112,1360.0,0.0,0.0,78,78,1054.6828510366015,397.2981831030672,2319.072738986003,2960.0,415.67676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117852,1,2,2,0,2,,240.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,2116.25030385766,1360.0,27884.9377354197,5,5,0,1,100.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10615049702048218,18589.958490279798,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +17834,1,46.0,90.0,2,111,465.0,0.0,0.0,0,67,0.0,0.0,792.9182526680084,465.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,117853,2,3,1,1,1,804.0,0.0,700.0,22,1.0,2.0,5.0,2.0,1.5,2,2,1535.96902832761,465.0,24520.61365707974,0,1,2,3,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01896363633076297,16347.075771386493,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +17835,2,79.0,0.0,8,120,490.0,100.0,0.0,71,71,0.0,980.0021849875657,835.54826625231,1330.0,0.0,189.8504047939789,42,0,0,0,0,0,0,0,0,0,,1,2002.0,6,117854,2,1,1,0,1,,200.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,378.583153210041,490.0,32655.048801607067,5,5,0,1,110.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04072877085807773,16327.524400803533,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +17836,2,74.0,0.0,2,111,272.0,963.0,0.0,74,75,0.0,26.486545540204478,463.81454779720065,1255.0,0.0,1828.2593981660168,41,0,0,0,0,0,0,0,0,0,,1,,2,117855,2,1,2,0,1,,236.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1153.55310172694,272.0,59743.49464557854,5,5,0,1,100.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02100647120569602,39828.99643038569,9,5,9,9_1,9_2,9_0_1 +17837,2,33.0,0.0,5,211,200.0,,,85,65,0.0,0.0,,330.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,3,,3,117856,1,3,0,0,2,,0.0,300.0,42,1.0,0.0,1.0,6.0,2.6999999999999997,2,2,72.09019801624005,200.0,18572.831250000003,6,1,2,3,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01776788878109254,6878.8263888888905,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +17838,2,55.0,0.0,6,111,900.0,,,0,56,0.0,0.0,,992.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,1,5.0,1,,4,117857,2,3,0,0,2,,1200.0,,22,2.0,5.0,5.0,4.0,2.3,3,3,93.16713097614938,900.0,41647.69831490141,0,1,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023818843300760888,18107.694919522353,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +17839,2,66.0,0.0,6,111,288.0,292.0,0.0,0,75,0.0,0.0,491.09775649115363,580.0,0.0,554.3631819984184,71,0,0,0,0,0,0,0,0,0,,2,,4,117858,2,1,0,0,1,,0.0,568.0,11,0.0,2.0,5.0,1.0,1.0,1,1,1698.90181592207,288.0,18457.0,0,5,3,4,113.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03142439182965812,18457.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +17840,2,64.0,0.0,5,111,480.0,,,86,71,0.0,0.0,,732.0,349.1684847999233,,71,2,2,2,2,1,2,2,2,0,,1,,3,117859,1,2,0,0,2,,450.0,,41,2.0,3.0,8.0,5.0,2.8,4,4,122.89331225709395,480.0,20263.63586569135,6,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03612382322953995,7237.012809175483,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17841,2,55.0,0.0,5,111,800.0,0.0,0.0,0,46,0.0,0.0,1364.160434697649,1025.0,311.75757571421724,0.0,71,2,2,2,2,2,2,2,1,2,15.0,7,,3,117860,2,3,0,0,2,,120.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,748.703345620224,800.0,23236.62233823964,0,1,0,1,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04411140246976412,23236.62233823964,6,3,6,6_1,6_4,6_0_0 +17842,2,61.0,0.0,6,120,1000.0,0.0,0.0,0,72,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,117861,2,1,2,0,1,,180.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,2264.42886650762,1000.0,9756.889461392033,0,5,0,1,105.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10864118161781121,9756.889461392033,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +17843,1,52.0,254.0,2,111,0.0,0.0,1300.0,0,85,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,71,0,0,0,0,0,0,0,0,0,,2,,2,117862,1,2,0,1,1,,0.0,270.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2607.0034777227,0.0,6046.957107914801,0,7,2,3,51.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2149841609259049,6046.957107914801,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +17844,2,54.0,0.0,6,111,1500.0,,,21,12,0.0,0.0,,1610.0,152.4148147936173,,50,0,0,0,0,0,0,0,0,0,,1,,4,117863,1,1,0,0,2,,970.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,109.31288530213608,1500.0,19782.067513373346,1,1,1,2,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08138684184105557,13188.045008915564,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +17845,2,47.0,0.0,5,111,4531.0,0.0,0.0,31,37,0.0,0.0,7726.26366201881,4621.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,3,117864,2,1,2,0,1,,518.0,,43,2.0,1.0,9.0,4.0,2.5,4,2,1166.35144899822,4531.0,185027.21020611457,1,1,1,2,250.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024974705043935695,74010.88408244583,10,5,10,10_1,10_3,10_0_0 +17846,2,68.0,0.0,2,111,416.0,1265.0,0.0,54,74,0.0,0.0,709.3634260427774,1681.0,0.0,2401.607620643833,60,0,0,0,0,0,0,0,0,0,,2,,2,117865,2,2,0,0,1,,0.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1232.63531541857,416.0,35272.490674776825,4,5,0,1,130.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.047657536166054594,23514.99378318455,6,3,6,6_0,6_2,6_0_1 +17848,1,57.0,227.0,1,120,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,1078.0,1147.2678786283193,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,117867,2,1,0,0,1,,66.0,259.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1959.29114486215,250.0,9365.0,0,7,2,3,42.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11510945008008543,9365.0,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +17849,2,83.0,0.0,2,111,350.0,2230.0,0.0,0,72,0.0,0.0,596.8201901802214,2580.0,0.0,4233.66402690573,70,0,0,0,0,0,0,0,0,0,,1,,2,117868,2,1,3,0,2,,360.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,411.207949836992,350.0,19956.715717041687,0,5,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1292797891487152,19956.715717041687,5,3,5,5_1,5_3,5_0_1 +17850,2,75.0,0.0,7,300,1775.0,0.0,0.0,0,86,0.0,0.0,3026.7309644854085,1825.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,117869,2,2,5,0,1,,126.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,1231.34107534162,1775.0,21285.08053636859,0,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08574080783400033,21285.08053636859,6,3,6,6_1,6_0,6_0_0 +17851,1,29.0,350.0,2,111,0.0,0.0,0.0,63,85,0.0,0.0,0.0,742.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117870,2,3,0,1,1,40.0,424.0,454.0,42,1.0,0.0,4.0,5.0,2.4,2,2,258.6264915405,0.0,27497.558766314036,4,6,2,3,95.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0269842136280472,11457.316152630849,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17852,2,81.0,0.0,2,111,684.0,,,86,71,0.0,0.0,,844.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,1,,2,117871,2,2,0,0,2,,380.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,122.22441027143252,684.0,18372.060641838816,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04593932147589112,12248.040427892543,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +17853,2,75.0,0.0,5,111,347.0,0.0,0.0,74,74,0.0,0.0,591.7045885501052,347.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,117872,1,2,0,1,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,925.696482849761,347.0,87698.87000141875,5,5,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003956721449140524,58465.91333427917,10,5,10,10_0,10_4,10_0_0 +17854,1,51.0,121.0,9,212,885.0,0.0,0.0,0,85,0.0,0.0,1509.1024808842742,950.0,90.06329965077386,0.0,42,0,0,0,0,0,0,0,0,0,,1,2009.0,6,117873,2,1,1,0,1,,188.0,327.0,11,0.0,0.0,2.0,1.0,1.0,1,1,702.401305383112,885.0,24177.369453947762,0,7,2,3,56.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03929294300645601,24177.369453947762,7,4,7,7_1,7_0,7_0_0 +17855,1,46.0,162.0,1,221,784.0,1386.0,0.0,85,62,0.0,0.0,1336.877226003696,2290.0,166.2707070475825,2631.3266104445474,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,117874,2,2,5,0,1,,680.0,468.0,42,1.0,2.0,6.0,6.0,3.3,5,3,515.587498329636,784.0,39492.936967842645,6,1,2,3,127.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05798505190598121,11967.556656922014,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +17856,1,95.0,280.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,454.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,117875,2,1,0,1,1,568.0,0.0,350.0,11,0.0,3.0,2.0,1.0,1.0,1,1,891.896907693098,0.0,10737.223298920999,0,5,2,3,55.0,10,5,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.042282812544805995,10737.223298920999,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +17857,2,77.0,0.0,1,111,0.0,0.0,1300.0,75,77,0.0,0.0,819.4137775391669,1335.0,48.49562288887823,1555.751791834085,71,0,0,0,0,0,0,0,0,0,,1,,1,117876,2,2,2,0,1,,90.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,397.513902826085,0.0,32364.569081487265,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04124881121199998,21576.379387658177,6,3,6,6_1,6_3,6_1_0 +17859,2,61.0,0.0,6,400,2500.0,0.0,0.0,0,52,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,5.0,1,,4,117878,2,2,3,0,1,,400.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,903.986046531207,2500.0,24551.56088991707,0,1,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.10182651975609053,24551.56088991707,7,4,7,7_1,7_0,7_0_0 +17860,2,36.0,0.0,1,111,330.0,400.0,0.0,0,38,0.0,0.0,562.7161793127802,730.0,0.0,759.4016191759156,12,0,0,0,0,0,0,0,0,0,,2,,1,117879,2,2,0,0,1,,0.0,1100.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1146.35346046772,330.0,42684.061782545796,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01710240238426674,42684.061782545796,9,5,9,9_0,9_4,9_1_0 +17861,2,66.0,0.0,2,111,312.0,0.0,0.0,0,75,632.8097106219609,0.0,532.0225695320831,912.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,117880,2,2,0,2,1,411.0,0.0,487.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1013.00616176925,312.0,22785.205022536724,0,5,2,3,33.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040025972954728546,22785.205022536724,6,3,6,6_0,6_4,6_0_1 +17862,1,71.0,68.0,2,111,720.0,0.0,0.0,77,78,0.0,0.0,1227.744391227884,864.0,199.524848457099,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,117881,1,2,0,0,1,,0.0,335.0,41,0.0,0.0,3.0,2.0,1.5,2,2,1601.65471733676,720.0,22740.84697171711,7,5,2,3,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03799330786028157,15160.564647811407,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +17863,2,30.0,0.0,1,111,480.0,0.0,0.0,0,43,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,117882,2,1,0,0,1,,0.0,530.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1014.70930140267,480.0,26386.637917804772,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018191025377890715,26386.637917804772,7,4,7,7_0,7_4,7_1_0 +17864,1,42.0,240.0,9,111,250.0,770.0,0.0,0,54,0.0,0.0,426.3001358430153,1020.0,0.0,1461.8481169136376,50,0,0,0,0,0,0,0,0,3,15.0,2,2006.0,6,117883,2,1,0,0,1,,450.0,480.0,32,2.0,0.0,4.0,3.0,1.8,2,1,351.428771940706,250.0,24005.455331412104,0,1,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04249034171267266,13336.364073006724,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +17865,2,64.0,0.0,6,112,2000.0,0.0,0.0,77,77,0.0,198.6490915515336,3410.4010867441225,2150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,117884,2,1,1,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,793.399379850071,2000.0,63667.03757629085,5,5,0,1,110.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03376943677367902,42444.69171752723,9,5,9,9_1,9_0,9_0_0 +17866,2,70.0,0.0,2,111,0.0,0.0,835.0,0,78,0.0,662.163638505112,526.3157724963111,1335.0,0.0,999.2713432165084,70,0,0,0,0,0,0,0,0,0,,2,,2,117885,2,2,0,0,1,,185.0,421.0,11,0.0,0.0,2.0,1.0,1.0,1,1,532.893895396949,0.0,23112.96965054898,0,5,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05775977817581269,23112.96965054898,6,3,6,6_0,6_3,6_0_1 +17867,2,67.0,0.0,2,111,547.0,0.0,0.0,0,75,0.0,198.6490915515336,932.7446972245175,697.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,117886,2,2,0,0,1,,300.0,340.0,31,0.0,1.0,4.0,2.0,1.5,2,2,326.236912225282,547.0,18954.015936718,0,5,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03677320955765165,12636.010624478666,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +17868,2,74.0,0.0,2,111,400.0,0.0,0.0,77,31,4218.731404146406,0.0,682.0802173488245,4400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,117887,2,1,1,0,1,,900.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1057.60765543457,400.0,176097.9714675755,5,1,0,1,170.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02498609134069532,117398.64764505033,10,5,10,10_1,10_3,10_0_1 +17869,2,37.0,0.0,2,112,1000.0,0.0,0.0,48,48,2953.111982902484,0.0,1705.2005433720612,3800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,117888,2,3,3,0,1,,600.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,181.407605410288,1000.0,42938.26933023253,1,4,1,2,115.0,6,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08849914212365442,23854.594072351403,6,3,6,6_1,6_0,6_0_1 +17870,2,34.0,0.0,2,111,320.0,91.0,0.0,0,34,0.0,0.0,545.6641738790596,411.0,0.0,172.7638683625208,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,117889,1,2,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1704.32559830399,320.0,37760.9299844722,0,1,1,2,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010884265831615078,29046.869218824766,8,4,8,8_0,8_3,8_0_1 +17871,1,85.0,200.0,5,111,660.0,0.0,0.0,0,78,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,117890,2,1,2,0,1,,60.0,550.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2168.77176764449,660.0,9278.74648805177,0,5,2,3,34.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07113029770237621,9278.74648805177,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +17872,2,47.0,0.0,1,112,700.0,0.0,0.0,56,63,2425.7705573841836,450.2712741834761,1193.6403803604428,3580.0,332.541414095165,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,117891,1,1,2,0,1,,230.0,,43,2.0,0.0,8.0,5.0,3.0,5,5,79.5113487347763,700.0,47396.00608013284,1,1,0,1,100.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07553379063095027,15798.668693377615,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +17873,1,49.0,170.0,2,111,287.0,476.0,0.0,56,63,0.0,0.0,489.39255594778155,763.0,0.0,903.6879268193395,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,117892,2,2,0,1,1,906.0,0.0,353.0,43,2.0,0.0,3.0,5.0,2.4,2,2,177.713011785969,287.0,28607.464863165376,1,1,3,4,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02667136020788859,11919.777026318907,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +17874,1,40.0,22.0,8,111,300.0,900.0,0.0,0,52,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,2.0,2,2000.0,6,117893,2,3,0,0,1,,500.0,405.0,32,1.0,0.0,4.0,3.0,1.8,2,2,2261.04092743875,300.0,25962.80450503601,0,1,2,3,84.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04621996825370833,14423.78028057556,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +17875,2,79.0,0.0,1,111,240.0,0.0,0.0,0,78,421.8731404146406,0.0,409.2481304092947,796.0,216.15191916185728,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117894,2,2,2,0,1,,140.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1521.37656121459,240.0,13237.244460702159,0,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06013336101505953,13237.244460702159,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +17876,2,34.0,0.0,1,111,400.0,1000.0,0.0,42,35,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,1,10.0,1,,1,117895,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1557.62852467176,400.0,49087.45601183278,1,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02852052466647534,23374.979053253704,6,3,6,6_1,6_2,6_1_0 +17877,2,58.0,0.0,2,211,115.0,266.0,0.0,0,34,0.0,0.0,196.09806248778705,381.0,0.0,505.00207675198385,41,0,0,0,0,0,0,0,0,1,7.0,2,,2,117896,1,2,0,0,2,,37.0,340.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2125.41240986997,115.0,15083.927013815533,0,1,2,3,50.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025258674326058324,15083.927013815533,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +17878,1,54.0,50.0,1,211,537.0,1407.0,0.0,55,52,0.0,0.0,915.6926917907969,1944.0,0.0,2671.1951954512833,50,0,0,0,0,0,0,0,0,4,60.0,1,,1,117897,2,1,2,0,1,,431.0,662.0,43,2.0,4.0,3.0,2.0,1.5,2,2,1712.17396315366,537.0,34874.66145269232,1,1,2,3,70.0,2,3,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.055742476601157755,23249.77430179488,6,3,6,6_1,6_1,6_1_0 +17879,0,22.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1277.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,117898,1,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,139.660023267555,0.0,16203.542451062118,0,1,5,0,40.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0788099271413514,16203.542451062118,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +17880,2,59.0,0.0,6,112,541.0,0.0,0.0,55,62,2109.365702073203,0.0,922.5134939642851,2541.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,117899,2,1,2,0,1,,130.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,713.243572896997,541.0,86740.56593123448,1,1,0,1,145.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029294252034445273,57827.04395415632,10,5,10,10_1,10_0,10_0_0 +17881,2,54.0,0.0,2,400,450.0,0.0,0.0,85,78,0.0,0.0,767.3402445174275,570.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,117900,2,1,2,0,2,,270.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,773.831148442765,450.0,23645.886956815266,6,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02410567220595265,15763.924637876844,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +17882,2,66.0,0.0,2,111,510.0,1100.0,0.0,78,75,0.0,0.0,869.6522771197511,1610.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,2,117901,2,1,2,0,1,,280.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,279.98300314491,510.0,30332.95321804137,5,5,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05307758820669026,20221.96881202758,5,3,5,5_1,5_3,5_0_1 +17883,2,51.0,0.0,7,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1199.0,48.49562288887823,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,117902,2,2,0,1,1,733.0,0.0,630.0,32,1.0,1.0,2.0,2.0,1.5,2,2,1245.12493190624,0.0,55706.90702767346,0,1,3,4,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021523363330948782,37137.93801844897,9,5,9,9_0,9_3,9_0_0 +17884,2,27.0,0.0,9,112,1200.0,0.0,0.0,67,52,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,117903,2,1,1,0,1,,280.0,750.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1888.54227147786,1200.0,26806.0,4,1,2,3,85.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04700440199955234,14892.222222222223,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +17885,2,60.0,0.0,2,111,660.0,0.0,0.0,78,43,2847.643697798824,297.97363732730037,1125.4323586255605,3760.0,242.47811444439117,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,117904,2,1,2,0,1,,500.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,260.009555948671,660.0,37629.61582115322,5,1,0,1,150.0,5,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09992129650939309,25086.410547435476,7,4,7,7_1,7_2,7_0_1 +17886,2,65.0,0.0,2,111,200.0,100.0,0.0,0,75,0.0,0.0,341.04010867441224,300.0,0.0,189.8504047939789,33,0,0,0,0,0,0,0,0,0,,2,,2,117905,2,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,933.793436503174,200.0,39676.98244457998,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007561058868804703,39676.98244457998,9,5,9,9_0,9_4,9_0_1 +17887,1,23.0,308.0,2,111,222.0,370.0,0.0,68,56,0.0,0.0,378.5545206285976,592.0,0.0,702.446497737722,50,2,1,2,2,1,2,2,2,0,,2,,2,117906,1,1,0,1,1,603.0,199.0,285.0,43,2.0,0.0,2.0,3.0,1.8,2,2,248.487673441542,222.0,14789.571322016041,4,1,2,3,51.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04002820549090137,8216.428512231134,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17888,2,63.0,0.0,5,111,649.0,1243.0,0.0,75,75,0.0,0.0,1106.6751526484677,1892.0,0.0,2359.8405315891578,33,0,0,0,0,0,0,0,0,0,,1,,3,117907,2,1,3,0,1,,780.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,872.848479278497,649.0,42530.586823709564,5,5,0,1,90.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04448563119625862,28353.724549139708,8,4,8,8_1,8_2,8_0_0 +17889,2,43.0,0.0,1,112,400.0,1538.0,0.0,0,11,0.0,264.8654554020448,682.0802173488245,2138.0,0.0,2919.8992257313953,44,0,0,0,0,0,0,0,0,0,,1,,1,117908,2,3,3,0,1,,140.0,,22,1.0,0.0,9.0,2.0,1.5,2,2,1947.82180274379,400.0,68222.89931409451,0,1,0,1,170.0,7,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03133845118714121,45481.93287606301,10,5,10,10_1,10_0,10_1_0 +17890,2,56.0,0.0,7,111,1100.0,0.0,0.0,0,46,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,75.0,2,,5,117909,2,1,0,1,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,524.445964007541,1100.0,30564.724755441315,0,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03598920025622581,30564.724755441315,8,4,8,8_0,8_4,8_0_0 +17891,1,53.0,325.0,7,211,240.0,,,42,52,0.0,0.0,,416.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,5,117910,1,2,0,0,2,,288.0,,43,2.0,0.0,4.0,6.0,2.9000000000000004,3,2,92.48521309527291,240.0,19422.358631522737,4,4,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021418613871377428,6697.365045352667,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +17892,2,63.0,0.0,1,111,2000.0,0.0,0.0,46,37,1898.4291318658827,0.0,3410.4010867441225,3800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,,1,117911,2,1,1,0,1,,1200.0,,43,2.0,1.0,8.0,3.0,2.0,3,3,555.910714332971,2000.0,109298.76728669726,1,1,0,1,190.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03476708927587784,54649.38364334863,10,5,10,10_1,10_4,10_1_0 +17893,2,54.0,0.0,7,111,1080.0,0.0,0.0,43,48,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,5,117912,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1000.51506861151,1080.0,61214.20286025874,1,1,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017642964369975544,40809.46857350582,9,5,9,9_0,9_4,9_0_0 +17894,2,48.0,0.0,2,111,304.0,,,0,64,0.0,0.0,,580.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,0,,1,,2,117913,1,2,0,0,2,,180.0,,22,1.0,3.0,3.0,2.0,1.5,2,2,73.1958938609709,304.0,25040.80189747997,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023162197535629616,16693.867931653313,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +17895,1,58.0,222.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,376.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,117914,2,2,0,1,1,,0.0,197.0,31,0.0,2.0,3.0,2.0,1.5,2,2,396.123708156969,0.0,8554.080468196986,0,7,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04395563046173362,5702.720312131324,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +17896,2,68.0,0.0,2,111,712.0,1203.0,0.0,74,74,0.0,0.0,1214.1027868809076,1915.0,0.0,2283.9003696715663,10,0,0,0,0,0,0,0,0,0,,1,,2,117915,2,2,2,0,1,,264.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1259.25346088718,712.0,73068.0,5,5,0,1,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026208463349208955,48712.0,10,5,10,10_1,10_3,10_0_1 +17897,1,42.0,99.0,2,111,150.0,0.0,0.0,0,64,0.0,0.0,255.78008150580916,150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,117916,2,1,0,1,1,259.0,0.0,197.0,12,1.0,0.0,2.0,1.0,1.0,1,1,386.191606883607,150.0,11700.947907541977,0,1,2,3,51.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012819474215701433,11700.947907541977,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17898,2,39.0,0.0,1,212,809.0,0.0,0.0,0,21,0.0,662.163638505112,1379.5072395879974,1309.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,117917,2,1,1,0,1,,1200.0,,32,1.0,3.0,6.0,3.0,1.6,1,1,759.200080991425,809.0,36508.875799833164,0,1,1,2,160.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03585429491657976,22818.047374895727,6,3,6,6_1,6_0,6_1_0 +17899,2,49.0,0.0,5,111,410.0,572.0,0.0,54,46,0.0,0.0,699.1322227825451,982.0,0.0,1085.9443154215594,60,0,0,0,0,0,0,0,0,2,10.0,2,,3,117918,2,1,0,0,1,,505.0,300.0,43,3.0,0.0,3.0,4.0,2.5,4,4,1962.66411968677,410.0,63641.28698413789,1,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015430234782096031,25456.51479365516,7,4,7,7_0,7_3,7_0_0 +17900,2,57.0,0.0,1,111,1000.0,1500.0,0.0,34,31,0.0,0.0,1705.2005433720612,2500.0,0.0,2847.7560719096837,10,2,2,2,2,1,2,2,2,2,15.0,2,,1,117919,1,3,0,0,2,,0.0,4000.0,43,2.0,2.0,10.0,2.0,1.5,2,2,944.010582965445,1000.0,70440.99517857918,1,1,2,3,260.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03549069676914843,46960.66345238612,10,5,10,10_0,10_4,10_1_0 +17901,2,32.0,0.0,1,111,1499.0,0.0,0.0,47,43,0.0,0.0,2556.0956145147197,1499.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,117920,2,1,0,0,1,,329.0,580.0,43,2.0,0.0,1.0,2.0,1.5,2,2,384.912443412837,1499.0,20939.574633611588,1,1,2,3,50.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07158693651750926,13959.716422407726,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +17902,2,50.0,0.0,9,111,275.0,615.0,0.0,0,52,0.0,0.0,468.93014942731685,890.0,0.0,1167.5799894829702,50,1,2,2,2,1,2,2,2,2,15.0,2,2009.0,6,117921,2,1,0,1,1,,160.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1187.30006491489,275.0,50585.0,0,1,1,2,49.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017594148462983097,50585.0,10,5,10,10_0,10_2,10_0_0 +17903,2,95.0,0.0,2,221,240.0,2000.0,0.0,0,75,0.0,0.0,409.2481304092947,2240.0,0.0,3797.008095879578,60,0,0,0,0,0,0,0,0,0,,1,,2,117922,2,1,1,0,2,,200.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,2652.24065747069,240.0,45328.83176460969,0,5,0,1,120.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04941667174729333,30219.22117640646,8,4,8,8_1,8_1,8_0_1 +17904,0,35.0,0.0,9,112,0.0,,,11,11,0.0,0.0,,1165.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,117923,2,2,0,0,2,,457.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,120.36390125365064,0.0,18323.644049871036,1,1,5,0,90.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06357905648184643,7047.555403796553,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +17905,1,24.0,126.0,2,111,240.0,131.0,0.0,55,52,0.0,794.5963662061343,409.2481304092947,971.0,0.0,248.70403028011236,50,2,1,2,1,2,2,2,2,2,30.0,2,,2,117924,1,3,0,1,1,502.0,0.0,333.0,43,2.0,0.0,3.0,2.0,1.5,2,2,515.537872549118,240.0,30678.131345892212,1,1,2,3,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.03165121072897475,20452.08756392814,5,3,5,5_0,5_3,5_0_1 +17906,2,34.0,0.0,6,111,650.0,0.0,0.0,46,37,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,35.0,2,,4,117925,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1721.18641051785,650.0,69091.98414768628,1,1,1,2,89.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009407748351973865,46061.32276512418,10,5,10,10_0,10_3,10_0_0 +17907,1,37.0,120.0,9,111,0.0,0.0,0.0,62,55,0.0,0.0,0.0,999.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,117926,2,1,1,0,1,,814.0,810.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,3,2,618.65141013724,0.0,31066.027199541913,1,1,2,3,90.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03215731427720925,10712.423172255834,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +17908,2,93.0,0.0,2,111,276.0,2400.0,0.0,0,75,0.0,0.0,470.6353499706889,2676.0,0.0,4556.4097150554935,31,0,0,0,0,0,0,0,0,0,,1,,2,117927,2,1,2,0,2,,394.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1227.74617691062,276.0,31635.023022442056,0,5,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08458979145049558,31635.023022442056,8,4,8,8_1,8_3,8_0_1 +17909,2,40.0,0.0,8,112,1590.0,0.0,0.0,0,43,0.0,331.081819252556,2711.268863961577,1840.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,117928,2,1,1,0,1,,145.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,2194.13088036498,1590.0,49585.13268634455,0,1,1,2,150.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037107897071468866,30990.70792896534,8,4,8,8_1,8_1,8_0_0 +17910,2,35.0,0.0,1,111,600.0,700.0,0.0,34,34,0.0,0.0,1023.1203260232367,1300.0,0.0,1328.9528335578523,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,117929,2,1,1,0,1,,1000.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1522.4358450993,600.0,131228.50467781746,1,1,1,2,110.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.009906384311790065,72904.7248210097,10,5,10,10_1,10_3,10_1_0 +17911,1,29.0,100.0,2,111,192.0,,,0,42,0.0,0.0,,234.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,3,30.0,2,,2,117930,2,2,0,0,2,,136.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,108.63524991346078,192.0,14824.58526446363,0,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01578458997844122,14824.58526446363,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +17912,2,37.0,0.0,1,111,1000.0,0.0,0.0,34,34,1265.6194212439218,794.5963662061343,1705.2005433720612,2830.0,41.567676761895626,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,117931,2,2,1,0,1,,113.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1712.54870277271,1000.0,92744.23313702177,1,1,1,2,150.0,6,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030514026632997373,61829.488758014515,10,5,10,10_1,10_2,10_1_0 +17913,2,49.0,0.0,9,400,900.0,,,52,52,0.0,0.0,,1200.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,1,3.0,1,2007.0,6,117932,2,2,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,38.900373486641726,900.0,15007.0,4,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0799626840807623,6002.8,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +17914,2,41.0,0.0,1,111,240.0,190.0,0.0,0,62,0.0,0.0,409.2481304092947,430.0,0.0,360.7157691085599,71,0,0,0,0,0,0,0,0,3,90.0,2,,1,117933,2,1,0,1,1,492.0,0.0,269.0,12,1.0,1.0,2.0,1.0,1.0,1,1,470.272792716347,240.0,19417.12867662031,0,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.022145395808070865,19417.12867662031,5,3,5,5_0,5_3,5_1_0 +17915,2,71.0,0.0,2,221,1180.0,0.0,0.0,0,75,0.0,0.0,2012.1366411790323,1240.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,117934,2,1,1,0,1,,179.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2920.16713085388,1180.0,20886.41996768139,0,5,0,1,100.0,1,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05936871909684448,20886.41996768139,5,3,5,5_1,5_1,5_0_1 +17916,2,81.0,0.0,6,112,735.0,0.0,0.0,0,72,0.0,483.37945610873174,1253.322399378465,1132.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,117935,2,1,2,0,1,,156.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2210.11622505257,735.0,12643.134502380497,0,5,0,1,61.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08953475894659373,12643.134502380497,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +17917,2,40.0,0.0,2,111,960.0,0.0,0.0,85,48,0.0,0.0,1636.9925216371787,1041.0,112.2327272571182,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117936,2,1,0,0,1,,0.0,800.0,42,1.0,0.0,3.0,4.0,2.5,4,3,882.329017387171,960.0,26309.413839771245,7,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03956758620088859,10523.765535908498,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +17918,1,33.0,400.0,6,111,900.0,,,0,54,0.0,0.0,,1160.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,2,,4,117937,1,2,0,0,1,,900.0,580.0,32,3.0,2.0,4.0,5.0,2.8,4,4,123.75929327422465,900.0,25655.369612042326,0,1,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045214706221013076,9162.63200430083,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +17919,2,35.0,0.0,9,111,1420.0,0.0,0.0,63,54,0.0,0.0,2421.3847715883267,1420.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,117938,2,1,1,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1108.53903386313,1420.0,48678.814786991046,1,1,1,2,108.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029170800608306544,27043.785992772802,7,4,7,7_1,7_3,7_0_0 +17920,2,79.0,0.0,2,111,207.0,502.0,0.0,0,78,0.0,0.0,352.9765124780167,709.0,0.0,953.0490320657741,70,0,0,0,0,0,0,0,0,0,,2,,2,117939,2,1,0,0,1,,0.0,700.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1644.26262573804,207.0,17458.99350537415,0,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04060944290870827,17458.99350537415,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +17921,1,42.0,480.0,5,400,1103.0,,,0,52,0.0,0.0,,1241.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,1,10.0,1,,3,117940,2,2,0,0,2,,1050.0,543.0,32,2.0,1.0,4.0,5.0,2.8,4,2,148.46419134563158,1103.0,36219.36281171461,0,1,2,3,54.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03426344097910572,12935.486718469503,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +17922,2,94.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1928.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117941,2,3,4,0,2,,140.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,2349.13723484789,0.0,17882.368439382524,0,5,0,1,100.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10781569603240843,17882.368439382524,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +17923,2,50.0,0.0,7,111,200.0,600.0,0.0,0,46,0.0,0.0,341.04010867441224,800.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,3,60.0,2,,5,117942,2,1,0,0,1,,0.0,539.0,32,2.0,0.0,3.0,3.0,2.0,3,3,665.885346266093,200.0,30681.005628795945,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026074764617531068,15340.502814397973,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +17924,2,42.0,0.0,9,111,1000.0,0.0,0.0,0,46,0.0,0.0,1705.2005433720612,1493.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,117943,2,1,0,1,1,,365.0,650.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1115.64046036377,1000.0,4554.918498361869,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.3277775443264117,4554.918498361869,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +17925,2,62.0,0.0,6,112,2039.0,0.0,0.0,34,31,0.0,198.6490915515336,3476.9039079356326,2279.0,124.70303028568689,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,117944,2,1,2,0,1,,309.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1177.60018507725,2039.0,139050.91173528426,1,1,0,1,142.0,8,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016389680380798986,92700.60782352283,10,5,10,10_1,10_1,10_0_0 +17926,1,28.0,270.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,590.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,117945,2,2,0,1,1,,0.0,1440.0,22,4.0,0.0,5.0,4.0,2.5,4,4,310.577496237791,0.0,9127.04022950945,0,1,2,3,80.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06464308090726041,3650.81609180378,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +17927,2,44.0,0.0,1,111,378.0,1165.0,0.0,85,33,0.0,0.0,644.5658053946391,1543.0,0.0,2211.757215849854,12,0,0,0,0,0,0,0,0,2,40.0,2,,1,117946,1,2,0,0,2,,0.0,1840.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,4,2,1120.14787371703,378.0,129282.48432097676,6,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011935104806379717,41704.02720031509,9,5,9,9_0,9_4,9_1_0 +17930,1,54.0,275.0,2,111,350.0,1100.0,0.0,0,78,0.0,0.0,596.8201901802214,1450.0,0.0,2088.354452733768,50,2,2,2,2,1,2,2,2,0,,2,,2,117949,1,3,0,0,2,,120.0,520.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1873.76574262862,350.0,14149.26140345179,0,7,2,3,73.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.10247884738678052,14149.26140345179,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +17931,2,76.0,0.0,2,111,450.0,138.0,0.0,85,78,0.0,0.0,767.3402445174275,588.0,0.0,261.99355861569086,71,0,0,0,0,0,0,0,0,0,,2,,2,117950,2,1,0,1,1,504.0,0.0,695.0,41,0.0,0.0,5.0,5.0,3.0,5,5,738.072537624559,450.0,18891.59689812618,6,5,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031124949530249746,6297.1989660420595,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +17932,1,23.0,260.0,9,111,500.0,0.0,0.0,85,55,0.0,0.0,852.6002716860306,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,2,2005.0,6,117951,2,3,0,0,1,,0.0,430.0,42,1.0,0.0,1.0,3.0,1.8,2,2,880.412175146955,500.0,17751.713426272167,6,1,2,3,35.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028166295162246727,9862.063014595647,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +17933,2,66.0,0.0,2,120,430.0,0.0,0.0,77,78,2320.3022722805235,728.3800023556231,733.2362336499863,3300.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,117952,2,1,2,0,2,,360.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1080.15254646598,430.0,44566.82768497761,5,5,0,1,130.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07404610494886872,29711.21845665174,8,4,8,8_1,8_0,8_0_1 +17934,2,48.0,0.0,9,112,0.0,0.0,1300.0,0,33,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,12,0,0,0,0,0,0,0,0,0,,1,2004.0,6,117953,2,1,1,0,1,,180.0,,22,2.0,2.0,5.0,2.0,1.5,2,2,383.733670042738,0.0,93124.36289858988,0,1,1,2,136.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013959827047790573,62082.90859905992,10,5,10,10_1,10_0,10_0_0 +17935,2,47.0,0.0,7,111,2000.0,,,21,55,0.0,0.0,,2140.0,193.98249155551292,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,117954,2,1,0,0,2,,1500.0,,43,2.0,0.0,8.0,4.0,2.3,3,2,109.28264991843267,2000.0,47834.70521652889,1,1,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04473739286806644,20797.697920229955,5,3,5,5_1,5_3,5_0_0 +17937,1,39.0,35.0,2,111,520.0,670.0,0.0,56,68,0.0,0.0,886.7042825534718,1190.0,0.0,1271.9977121196587,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,117956,2,1,0,0,1,,0.0,659.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1149.75940656994,520.0,28951.817311943953,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04110277386660182,13786.579672354263,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +17938,2,86.0,0.0,1,112,0.0,0.0,1725.0,77,75,0.0,0.0,1087.299050965433,1725.0,0.0,2064.3629545490744,71,0,0,0,0,0,0,0,0,0,,1,,1,117957,2,1,1,0,1,,268.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,623.431733428988,0.0,33881.78182625615,5,5,0,1,80.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050912316502293234,22587.854550837434,6,3,6,6_1,6_1,6_1_0 +17939,2,62.0,0.0,1,111,2000.0,0.0,0.0,75,47,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,117958,1,1,1,0,1,,1200.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,733.757707136942,2000.0,64940.726836401554,5,1,0,1,86.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03079731468109978,43293.81789093437,9,5,9,9_1,9_4,9_1_0 +17940,1,58.0,300.0,7,111,1170.0,1170.0,0.0,0,52,0.0,0.0,1995.0846357453115,2340.0,0.0,2221.249736089553,20,2,2,2,1,1,2,2,2,3,60.0,2,,5,117959,2,3,0,0,1,,0.0,450.0,32,2.0,1.0,3.0,2.0,1.5,2,2,759.909134631843,1170.0,20054.967583524052,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.11667932098391436,13369.978389016034,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +17941,2,77.0,0.0,5,111,261.0,1631.0,0.0,0,75,0.0,0.0,445.057341820108,1892.0,0.0,3096.4601021897956,44,0,0,0,0,0,0,0,0,0,,1,,3,117960,2,2,3,0,1,,302.0,379.0,11,0.0,0.0,4.0,1.0,1.0,1,1,294.834741642271,261.0,38433.51615294178,0,5,2,3,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04922786644008845,38433.51615294178,9,5,9,9_1,9_3,9_0_0 +17942,2,31.0,0.0,5,111,0.0,0.0,0.0,37,21,0.0,0.0,0.0,904.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,117961,1,3,0,0,2,,0.0,765.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1185.1942672661,0.0,53768.79211604305,1,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01681272657286033,25604.18672192526,7,4,7,7_0,7_4,7_0_0 +17943,2,74.0,0.0,1,400,1110.0,0.0,0.0,0,72,0.0,0.0,1892.772603142988,1278.0,232.77898986661552,0.0,71,2,2,2,2,2,2,1,2,0,,1,,1,117962,2,3,2,0,1,,87.0,,21,0.0,1.0,9.0,4.0,2.5,4,4,1385.34026375146,1110.0,52807.59922113263,0,5,0,1,138.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.02420106232529821,21123.039688453053,5,3,5,5_1,5_0,5_1_0 +17944,2,81.0,0.0,1,111,543.0,0.0,0.0,71,71,0.0,0.0,925.9238950510293,3363.0,3907.3616156181893,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,117963,2,1,1,0,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1029.5966002601,543.0,21943.806340076375,5,5,0,1,95.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15325508928950451,14629.204226717584,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +17945,2,61.0,0.0,2,111,450.0,1500.0,0.0,0,72,0.0,0.0,767.3402445174275,1950.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,,2,117964,2,1,1,0,1,,340.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1401.50337239794,450.0,58433.34795719819,0,5,0,1,150.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033371355025359054,58433.34795719819,10,5,10,10_1,10_3,10_0_1 +17946,2,57.0,0.0,9,111,600.0,,,77,38,0.0,0.0,,700.0,138.5589225396521,,12,0,0,0,0,0,0,0,0,0,,1,2008.0,6,117965,2,1,0,0,2,,400.0,950.0,42,1.0,2.0,4.0,2.0,1.5,2,2,132.06061494768113,600.0,103579.825063759,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00675807281552283,69053.21670917266,10,5,10,10_1,10_2,10_0_0 +17947,2,23.0,0.0,9,111,0.0,,,0,64,0.0,0.0,,222.0,0.0,,60,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,117966,2,1,0,0,1,,185.0,605.0,12,1.0,0.0,3.0,1.0,1.0,1,1,192.48817734475398,0.0,23271.055591003438,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00953974774078684,23271.055591003438,6,3,6,6_0,6_2,6_0_0 +17948,2,77.0,0.0,5,400,1200.0,0.0,0.0,75,75,0.0,463.51454695357836,2046.2406520464733,1650.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,117967,2,1,2,0,1,,250.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1785.94300551652,1200.0,62615.1100279104,5,5,0,1,230.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026351466910535172,41743.4066852736,9,5,9,9_1,9_0,9_0_0 +17949,2,69.0,0.0,5,111,1419.0,0.0,0.0,75,75,0.0,0.0,2419.6795710449546,1419.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,117968,2,2,2,0,1,,240.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,654.303225492515,1419.0,38670.50766994832,5,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03669463075352216,25780.338446632213,7,4,7,7_1,7_4,7_0_0 +17950,2,63.0,0.0,1,111,450.0,1306.0,0.0,77,75,0.0,0.0,767.3402445174275,1756.0,0.0,2479.4462866093645,50,0,0,0,0,0,0,0,0,0,,1,,1,117969,2,2,2,0,1,,371.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,720.771628378402,450.0,42367.14892573355,6,5,0,1,200.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041447207200044,28244.765950489033,8,4,8,8_1,8_2,8_1_0 +17951,2,47.0,0.0,7,211,900.0,,,0,56,0.0,0.0,,1000.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,1,,5,117970,2,1,0,0,2,,160.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,79.08436685730307,900.0,9375.02097902098,0,4,0,1,48.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10666642797256211,9375.02097902098,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17952,2,37.0,0.0,9,120,1700.0,0.0,0.0,54,63,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,117971,2,1,1,0,1,,170.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1493.15944888112,1700.0,43111.192871569896,1,1,1,2,142.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03943291490598215,17962.99702982079,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +17953,1,66.0,325.0,2,111,0.0,0.0,0.0,67,78,0.0,0.0,0.0,382.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,117972,2,2,0,1,1,320.0,0.0,353.0,42,1.0,1.0,5.0,6.0,3.5,6,4,282.546362787118,0.0,20560.154682280114,4,5,2,3,85.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.01857962675393823,5874.32990922289,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +17954,2,44.0,0.0,9,111,1563.0,0.0,0.0,54,37,0.0,0.0,2665.2284492905314,1563.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,2009.0,6,117973,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1280.8869703542,1563.0,93133.9145993629,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016782286095496,44349.48314255376,10,5,10,10_0,10_4,10_0_0 +17955,2,71.0,0.0,5,112,1206.0,0.0,0.0,0,90,0.0,0.0,2056.471855306706,1239.0,45.72444443808519,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,117974,2,1,2,0,1,,358.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2164.78039584813,1206.0,26569.20685990105,0,5,0,1,85.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04663293136800149,26569.20685990105,7,4,7,7_1,7_0,7_0_0 +17956,2,59.0,0.0,2,111,270.0,0.0,0.0,75,22,3691.3899786281054,0.0,460.40414671045653,3850.0,110.84713803172167,0.0,20,1,2,2,2,1,2,2,2,2,10.0,1,,2,117975,2,2,2,0,1,,600.0,,42,1.0,3.0,6.0,3.0,2.0,3,3,1350.38538510286,270.0,213955.66863601582,6,1,0,1,180.0,7,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.017994381848090553,106977.83431800791,10,5,10,10_1,10_2,10_0_1 +17957,2,78.0,0.0,1,111,300.0,1000.0,0.0,74,74,0.0,66.2163638505112,511.56016301161833,1350.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,0,,2,,1,117976,2,2,0,0,2,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,474.433215283054,300.0,127238.53348367082,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010609993396169191,84825.68898911389,10,5,10,10_0,10_4,10_1_0 +17958,0,70.0,0.0,1,111,664.0,2381.0,0.0,0,31,0.0,0.0,1132.2531607990486,3045.0,0.0,4520.338138144638,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,117977,2,1,2,0,1,,459.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,405.843392652313,664.0,166630.11659512072,0,1,5,0,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01827400749768883,166630.11659512072,10,5,10,10_1,10_3,10_1_0 +17959,2,55.0,0.0,8,111,1200.0,0.0,0.0,74,46,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,2003.0,6,117978,2,1,0,0,1,,0.0,860.0,42,1.0,3.0,4.0,2.0,1.5,2,2,1895.37997543678,1200.0,48376.00002560365,5,1,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024805688758162803,32250.666683735766,8,4,8,8_0,8_3,8_0_0 +17960,1,43.0,297.0,2,111,480.0,720.0,0.0,85,42,0.0,0.0,818.4962608185893,1200.0,0.0,1366.922914516648,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,117979,2,1,0,0,1,,0.0,703.0,42,1.0,0.0,4.0,5.0,2.8,4,3,1167.1494809848,480.0,27451.61859226713,6,1,2,3,90.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04371326943679849,9804.14949723826,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +17961,2,71.0,0.0,2,111,0.0,,,77,75,0.0,0.0,,309.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,2,117980,2,1,0,0,2,,1136.0,650.0,41,0.0,6.0,5.0,2.0,1.5,2,2,94.17688763382176,0.0,41029.0,5,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007531258378220283,27352.666666666668,7,4,7,7_1,7_3,7_0_1 +17962,2,80.0,0.0,2,111,350.0,856.0,0.0,77,78,0.0,0.0,596.8201901802214,1206.0,0.0,1625.1194650364594,71,0,0,0,0,0,0,0,0,0,,1,,2,117981,2,1,2,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1860.96766055827,350.0,22676.209179045738,5,5,0,1,94.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05318349246462327,15117.472786030492,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +17963,2,74.0,0.0,7,111,200.0,,,75,75,0.0,0.0,,355.0,214.76632993646075,,70,0,0,0,0,0,0,0,0,0,,1,,5,117982,2,1,0,0,2,,343.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,86.09716238276934,200.0,67391.70805891995,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005267710378992424,44927.8053726133,10,5,10,10_1,10_2,10_0_0 +17964,2,47.0,0.0,2,112,1500.0,0.0,0.0,0,43,210.9365702073203,0.0,2557.8008150580918,1700.0,0.0,0.0,33,2,2,2,1,1,2,2,2,2,40.0,1,,2,117983,2,2,2,0,1,,500.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,1565.57129020505,1500.0,26380.0,0,1,0,1,130.0,9,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.06444275966641395,20292.30769230769,5,3,5,5_1,5_1,5_0_1 +17965,2,81.0,0.0,5,111,540.0,1777.0,0.0,86,77,0.0,0.0,920.8082934209131,2317.0,0.0,3373.641693189005,60,1,2,2,1,2,2,2,2,0,,1,,3,117984,1,1,3,0,1,,260.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,664.319969590328,540.0,52063.0830481019,6,5,0,1,120.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04450370328355867,34708.72203206793,9,5,9,9_1,9_2,9_0_0 +17966,2,57.0,0.0,6,111,600.0,0.0,0.0,0,46,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,15.0,2,,4,117985,2,1,0,1,1,600.0,0.0,547.0,22,2.0,2.0,5.0,2.0,1.5,2,2,326.394182211997,600.0,30187.262796012776,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019875932576412653,20124.84186400852,5,3,5,5_0,5_4,5_0_0 +17967,2,82.0,0.0,5,111,420.0,,,86,86,0.0,0.0,,720.0,415.67676761895626,,41,0,0,0,0,0,0,0,0,0,,1,,3,117986,1,1,0,0,2,,424.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,35.434032721836715,420.0,71048.52524908542,5,5,0,1,129.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010133919000792607,47365.68349939028,10,5,10,10_1,10_2,10_0_0 +17968,2,33.0,0.0,8,111,1600.0,0.0,0.0,54,62,0.0,0.0,2728.320869395298,1660.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,117987,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,823.907218751692,1600.0,63989.824993646296,1,1,1,2,135.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025941624315503682,30471.345235069664,8,4,8,8_1,8_3,8_0_0 +17969,2,69.0,0.0,5,120,594.0,0.0,0.0,56,72,1830.9294293995404,397.2981831030672,1012.8891227630044,2700.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,117988,2,1,2,0,1,,336.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1097.59755896689,594.0,46058.013983111516,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05862172001141934,30705.342655407676,8,4,8,8_1,8_0,8_0_0 +17970,2,52.0,0.0,1,112,1030.0,0.0,0.0,11,62,0.0,0.0,1756.356559673223,1135.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,117989,2,1,1,0,1,,187.0,,43,2.0,6.0,3.0,2.0,1.5,2,2,1467.94741857633,1030.0,32885.89453033575,4,1,1,2,90.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034513277385628476,21923.929686890497,6,3,6,6_1,6_0,6_1_0 +17971,2,72.0,0.0,9,111,1600.0,0.0,0.0,75,75,0.0,238.3789098618403,2728.320869395298,1850.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,117990,2,1,3,0,1,,290.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,671.833828573766,1600.0,57948.384800929,5,5,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03192496229800596,38632.25653395267,9,5,9,9_1,9_4,9_0_0 +17972,0,53.0,0.0,7,120,840.0,,,13,52,0.0,0.0,,1116.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,117991,2,2,0,0,2,,800.0,,43,3.0,1.0,5.0,5.0,3.0,5,4,56.92901322337522,840.0,50374.5779628252,1,1,5,0,142.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022154031758312133,16791.5259876084,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +17973,1,83.0,120.0,2,112,485.0,0.0,0.0,0,77,0.0,1205.1378220793038,827.0222635354497,1461.0,91.44888887617039,0.0,71,2,2,2,2,1,1,2,2,0,,2,,2,117992,1,3,0,0,2,,460.0,400.0,11,0.0,3.0,4.0,1.0,1.0,1,1,2036.08164962817,485.0,15324.636928693188,0,5,2,3,70.0,6,0,9,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.09533667954406716,15324.636928693188,3,2,3_1,3_0_1,3_0_1,3_0_1_1 +17974,2,79.0,0.0,7,111,324.0,,,0,74,0.0,0.0,,456.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,0,,2,,5,117993,2,1,0,0,2,,150.0,500.0,21,1.0,5.0,3.0,2.0,1.5,2,2,126.23719073850454,324.0,46982.97231774989,0,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009705643928102988,31321.981545166593,8,4,8,8_0,8_2,8_0_0 +17975,2,66.0,0.0,2,120,500.0,1300.0,0.0,77,75,0.0,198.6490915515336,852.6002716860306,1950.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,2,117994,2,2,2,0,1,,268.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,801.057074892807,500.0,36267.9417643431,5,5,0,1,92.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05376649197989907,24178.6278428954,7,4,7,7_1,7_0,7_0_1 +17976,2,81.0,0.0,5,112,276.0,,,0,71,0.0,0.0,,528.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,117995,1,1,0,0,2,,166.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,101.8504404958002,276.0,22470.897364440123,0,5,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023497058948591547,14980.598242960083,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +17977,2,44.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,640.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,6.0,2,,1,117996,2,2,0,1,2,167.0,0.0,700.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1028.51546866227,0.0,41571.32421718285,0,1,2,3,29.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015395227649146333,41571.32421718285,9,5,9,9_0,9_4,9_1_0 +17978,2,80.0,0.0,1,111,322.0,0.0,0.0,78,78,0.0,0.0,549.0745749658037,322.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,117997,2,1,0,1,1,,188.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1617.32952286906,322.0,35879.70293666809,5,5,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008974433276896635,23919.801957778724,6,3,6,6_0,6_3,6_1_0 +17979,1,83.0,263.0,2,111,380.0,0.0,0.0,0,78,0.0,0.0,647.9762064813832,380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,117998,2,1,0,1,1,830.0,0.0,288.0,11,0.0,5.0,3.0,1.0,1.0,1,1,386.24183447912,380.0,9478.789219194292,0,5,2,3,50.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04008950839739218,9478.789219194292,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +17980,2,79.0,0.0,6,120,551.0,0.0,0.0,0,78,0.0,331.081819252556,939.5654993980057,856.0,76.20740739680865,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,117999,2,2,1,0,1,,186.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1880.58998648709,551.0,29770.053551493445,0,5,0,1,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028753727248739123,29770.053551493445,8,4,8,8_1,8_1,8_0_0 +17981,2,60.0,0.0,5,300,1269.0,0.0,0.0,77,21,2109.365702073203,1986.490915515336,2163.8994895391456,4889.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118000,2,1,2,0,1,,804.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1189.33914318223,1269.0,43980.8908175441,6,1,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11116191393853632,29320.593878362735,8,4,8,8_1,8_0,8_0_0 +17982,2,38.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,914.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,118001,2,1,0,1,1,,159.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,395.917824574284,0.0,21238.184650388146,0,1,1,2,62.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04303569325937167,21238.184650388146,5,3,5,5_0,5_2,5_0_1 +17983,0,64.0,0.0,2,111,0.0,,,0,68,0.0,0.0,,245.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,118002,1,2,0,0,2,,180.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,93.5013172398827,0.0,6585.688061472378,0,4,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037201883495408795,6585.688061472378,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +17984,2,53.0,0.0,7,111,300.0,,,0,63,0.0,0.0,,432.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,118003,2,1,0,0,2,,280.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,94.0005888680221,300.0,6332.0,0,4,0,1,94.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06822488945041061,4221.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +17985,2,78.0,0.0,1,111,207.0,1144.0,0.0,0,86,0.0,0.0,352.9765124780167,1351.0,0.0,2171.888630843119,71,0,0,0,0,0,0,0,0,0,,1,,1,118004,2,1,2,0,1,,120.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1621.16044994185,207.0,16732.299461096227,0,6,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08074204045541798,16732.299461096227,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +17986,2,45.0,0.0,9,221,1184.0,0.0,0.0,85,53,0.0,0.0,2018.9574433525204,1184.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,118005,2,1,1,0,1,,336.0,,42,1.0,3.0,4.0,3.0,1.8,2,2,3718.43224204345,1184.0,37534.57346961669,6,1,1,2,112.0,1,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031544250821403864,20852.54081645372,5,3,5,5_1,5_1,5_0_0 +17987,2,69.0,0.0,1,111,273.0,,,0,77,0.0,0.0,,525.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,1,118006,1,1,0,0,2,,120.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,105.92597110094013,273.0,4989.390935374124,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1052232640817578,3326.2606235827493,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +17988,2,32.0,0.0,5,221,684.0,,,0,46,0.0,0.0,,813.0,178.7410100761512,,43,0,0,0,0,0,0,0,0,0,,1,,3,118007,2,2,0,0,2,,600.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,87.52851394772053,684.0,23922.339724454083,0,2,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03398497008923123,15948.226482969389,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +17989,2,35.0,0.0,1,300,0.0,0.0,0.0,85,64,0.0,0.0,0.0,490.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,118008,2,1,1,0,1,,0.0,,42,1.0,0.0,3.0,8.0,3.2999999999999994,2,2,1188.41891646049,0.0,32491.687447485758,6,1,1,2,110.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.015080780300867899,9845.965893177505,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +17990,2,37.0,0.0,5,111,300.0,100.0,0.0,0,47,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,3,90.0,2,,3,118009,2,1,0,1,1,,0.0,760.0,12,1.0,0.0,3.0,1.0,1.0,1,1,653.333458625689,300.0,30076.53306638959,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013299405191318359,30076.53306638959,8,4,8,8_0,8_4,8_0_0 +17991,2,88.0,0.0,7,111,925.0,,,0,78,0.0,0.0,,950.0,34.63973063491302,,71,0,0,0,0,0,0,0,0,0,,2,,5,118010,2,1,0,0,2,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,121.53731050966111,925.0,24673.037551170095,0,5,0,1,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03850356884634771,24673.037551170095,7,4,7,7_0,7_2,7_0_0 +17992,2,52.0,0.0,1,300,2200.0,0.0,0.0,0,46,738.277995725621,0.0,3751.441195418535,3050.0,207.83838380947813,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,118011,2,3,4,0,1,,90.0,,22,1.0,0.0,12.0,2.0,1.5,2,2,1309.32586922717,2200.0,46351.47719808687,0,1,0,1,250.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06580157061587429,30900.984798724578,8,4,8,8_1,8_0,8_1_0 +17993,2,46.0,0.0,7,112,737.0,0.0,0.0,54,48,2109.365702073203,662.163638505112,1256.732800465209,3237.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,5,118012,2,1,2,0,1,,220.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,362.906435184878,737.0,72302.72678655424,1,1,0,1,120.0,9,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0447700957331248,28921.090714621696,8,4,8,8_1,8_0,8_0_0 +17994,1,45.0,270.0,1,111,420.0,0.0,0.0,0,85,0.0,0.0,716.1842282162656,420.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,118013,2,1,0,0,1,,92.0,308.0,11,0.0,0.0,2.0,1.0,1.0,1,1,762.399424739791,420.0,11195.11922583688,0,7,2,3,42.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.037516349002402284,11195.11922583688,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +17995,1,46.0,22.0,2,211,180.0,1500.0,0.0,0,56,0.0,0.0,306.936097806971,1680.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,2,,2,118014,2,2,0,0,1,,0.0,285.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1547.36564933066,180.0,14460.347532050677,0,1,2,3,80.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11617978034596745,14460.347532050677,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +17997,2,22.0,0.0,5,120,842.0,0.0,0.0,55,69,0.0,327.1088374215253,1435.7788575192756,1115.0,36.025319860309544,0.0,43,0,0,0,0,0,0,0,0,2,3.0,1,,3,118016,1,2,2,0,2,,199.0,480.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2084.78500947057,842.0,33511.231450315594,1,1,2,3,70.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03327242693701426,22340.82096687706,6,3,6,6_1,6_1,6_0_0 +17998,2,28.0,0.0,2,111,270.0,600.0,0.0,0,43,0.0,0.0,460.40414671045653,870.0,0.0,1139.1024287638734,33,0,0,0,0,0,0,0,0,2,5.0,2,,2,118017,2,1,0,0,1,,242.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1651.09540389518,270.0,25120.602084507238,0,1,1,2,81.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034632927868259965,25120.602084507238,7,4,7,7_0,7_2,7_0_1 +17999,2,24.0,0.0,2,111,450.0,0.0,0.0,56,47,0.0,0.0,767.3402445174275,450.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,118018,1,2,0,1,2,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,395.132227276559,450.0,28186.250220504477,4,1,1,2,63.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0159652311492162,18790.833480336318,5,3,5,5_0,5_2,5_0_1 +18000,1,51.0,111.0,5,111,492.0,0.0,0.0,81,62,0.0,0.0,838.958667339054,492.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,2,,3,118019,1,2,0,1,1,,0.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,1003.46131538288,492.0,24270.150260825398,4,1,1,2,80.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020271815160293437,13483.416811569665,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +18001,2,54.0,0.0,1,111,255.0,1409.0,0.0,0,37,0.0,0.0,434.8261385598756,1664.0,0.0,2674.9922035471627,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,118020,2,1,0,0,2,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,878.380307272586,255.0,61637.496194198706,0,1,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026996554090343062,41091.664129465804,9,5,9,9_0,9_4,9_1_0 +18002,1,60.0,225.0,1,111,1400.0,0.0,0.0,0,78,0.0,0.0,2387.2807607208856,1460.0,83.13535352379125,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,118021,1,2,2,0,1,,150.0,450.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1347.20668830813,1400.0,12829.243412233922,0,7,2,3,70.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.11380250207177059,12829.243412233922,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +18003,2,63.0,0.0,1,111,0.0,0.0,1200.0,0,75,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,33,0,0,0,0,0,0,0,0,0,,2,,1,118022,1,1,0,0,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,938.564172818117,0.0,29896.003635128396,0,5,1,2,53.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.040139144169422575,29896.003635128396,8,4,8,8_0,8_4,8_1_0 +18004,2,84.0,0.0,2,111,244.0,1596.0,0.0,0,78,0.0,0.0,416.0689325827829,1840.0,0.0,3030.012460511903,70,0,0,0,0,0,0,0,0,0,,1,,2,118023,2,1,2,0,1,,132.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,316.827568169812,244.0,25048.422129956867,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07345772082782959,25048.422129956867,7,4,7,7_1,7_3,7_0_1 +18005,2,65.0,0.0,5,111,480.0,,,0,56,0.0,0.0,,606.0,174.58424239996165,,60,0,0,0,0,0,0,0,0,0,,1,,3,118024,2,2,0,0,2,,250.0,,22,1.0,3.0,4.0,2.0,1.5,2,2,103.08760070384427,480.0,27546.30720115101,0,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021999319022140237,18364.20480076734,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +18006,2,70.0,0.0,5,221,1250.0,0.0,0.0,72,75,0.0,0.0,2131.5006792150766,1370.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118025,2,1,1,0,1,,290.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,2594.78498927802,1250.0,46510.90445841149,5,5,0,1,120.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029455458154442227,31007.269638940994,8,4,8,8_1,8_1,8_0_0 +18007,1,31.0,250.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,889.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,118026,1,2,0,0,1,,165.0,550.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2986.06147475646,0.0,5972.0,0,1,2,3,85.0,4,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.148861352980576,5972.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18008,1,24.0,350.0,6,111,600.0,,,0,56,0.0,0.0,,684.0,116.38949493330776,,60,0,0,0,0,0,0,0,0,0,,1,,4,118027,1,3,0,0,2,,0.0,539.0,32,2.0,0.0,2.0,3.0,1.8,2,2,148.2062002127808,600.0,10466.101335790903,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06535384839633902,5814.500742106057,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +18009,2,70.0,0.0,5,111,296.0,,,0,74,0.0,0.0,,296.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,3,118028,2,2,0,0,2,,137.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,147.41452003196324,296.0,41561.73528049755,0,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007121935549666406,41561.73528049755,9,5,9,9_1,9_2,9_0_0 +18010,2,31.0,0.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,201.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118029,2,2,0,1,1,534.0,0.0,181.0,31,0.0,0.0,3.0,2.0,1.3,1,1,372.582278880495,0.0,8765.281529141728,0,6,2,3,64.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0229313798229686,6742.524253185945,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +18011,2,73.0,0.0,1,111,2000.0,0.0,0.0,0,71,0.0,728.3800023556231,3410.4010867441225,2625.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118030,2,1,2,0,2,,0.0,,21,0.0,3.0,8.0,2.0,1.5,2,2,1114.34795520807,2000.0,21040.012282119766,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12476228458434784,14026.67485474651,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +18012,2,61.0,0.0,2,111,309.0,994.0,0.0,0,37,0.0,0.0,526.9069679019669,1303.0,0.0,1887.1130236521503,10,2,2,2,1,1,1,2,2,2,60.0,2,,2,118031,1,3,0,0,2,,148.0,458.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1925.75697071072,309.0,74552.10947488595,0,1,2,3,68.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.017477707997503894,74552.10947488595,10,5,10,10_0,10_3,10_0_1 +18014,2,47.0,0.0,2,111,550.0,1500.0,0.0,43,21,0.0,0.0,937.8602988546337,2050.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,2,118033,2,1,1,0,1,,660.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,623.431682596642,550.0,66550.21105998014,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030803809144232214,28934.87437390441,8,4,8,8_1,8_4,8_0_1 +18015,2,67.0,0.0,9,111,1000.0,0.0,0.0,77,74,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,118034,2,1,1,0,1,,600.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1126.51255169468,1000.0,42999.02751707232,5,5,1,2,125.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023256339916128577,28666.018344714877,8,4,8,8_1,8_2,8_0_0 +18016,2,51.0,0.0,1,112,600.0,0.0,0.0,55,22,3164.0485531098047,0.0,1023.1203260232367,3675.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118035,2,2,4,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,2895.64082547435,600.0,18545.84010409066,1,1,0,1,100.0,10,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1981576450230154,7418.336041636265,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +18017,2,36.0,0.0,1,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,2867.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,75.0,1,,1,118036,2,2,5,0,1,,439.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,703.24104415216,0.0,78841.81622228489,1,1,1,2,105.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03636395173744911,43801.00901238049,10,5,10,10_1,10_4,10_1_0 +18018,2,40.0,0.0,1,111,1000.0,2000.0,0.0,67,33,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,118037,2,1,1,0,1,,389.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,295.618883848476,1000.0,63933.32648452392,1,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04692388406735254,26638.8860352183,7,4,7,7_1,7_3,7_1_0 +18019,2,65.0,0.0,1,120,600.0,0.0,0.0,77,78,0.0,1258.1109131597127,1023.1203260232367,1625.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118038,2,1,1,0,1,,100.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,299.675753699303,600.0,24031.567435930407,7,5,0,1,110.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06761939288114881,16021.044957286938,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18020,2,52.0,0.0,6,112,500.0,900.0,0.0,43,38,0.0,0.0,852.6002716860306,1400.0,0.0,1708.65364314581,12,0,0,0,0,0,0,0,0,2,5.0,1,,4,118039,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,691.883240225283,500.0,120001.13946034943,1,1,0,1,150.0,9,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011666555886851272,48000.45578413977,10,5,10,10_1,10_1,10_0_0 +18021,2,83.0,0.0,6,112,1900.0,0.0,0.0,77,31,0.0,1589.1927324122687,3239.8810324069163,3200.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,4,118040,2,1,1,0,1,,160.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1588.81495332329,1900.0,24435.511847202346,5,1,0,1,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1309569457767005,16290.34123146823,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +18022,1,76.0,213.0,5,111,130.0,480.0,0.0,0,77,0.0,0.0,221.67607063836795,610.0,0.0,911.2819430110987,50,0,0,0,0,0,0,0,0,0,,2,,3,118041,2,2,0,1,1,396.0,0.0,227.0,11,0.0,0.0,1.0,1.0,1.0,1,1,783.161552456164,130.0,10040.395555555555,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0607545785048752,10040.395555555555,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +18023,2,92.0,0.0,1,300,154.0,0.0,0.0,0,71,0.0,397.2981831030672,262.6008836792974,789.0,464.1723905078345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118042,2,2,2,0,2,,185.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1112.68421388979,154.0,11159.235613568906,0,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07070376747316162,11159.235613568906,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +18024,2,76.0,0.0,2,111,497.0,0.0,0.0,0,74,2109.365702073203,0.0,847.4846700559144,2512.0,20.783838380947813,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,118043,2,2,1,0,2,,637.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,1048.22816454812,497.0,84172.84199651188,0,5,0,1,160.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029843354939875943,84172.84199651188,10,5,10,10_1,10_3,10_0_1 +18025,2,58.0,0.0,5,112,700.0,0.0,0.0,0,54,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,40.0,2,,3,118044,1,3,0,1,2,750.0,0.0,364.0,12,1.0,1.0,2.0,1.0,1.0,1,1,428.728755998182,700.0,16199.563974639303,0,1,2,3,40.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04321103957463683,16199.563974639303,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18026,2,41.0,0.0,8,111,340.0,830.0,0.0,52,53,0.0,0.0,579.7681847465008,1170.0,0.0,1575.7583597900248,50,0,0,0,0,0,0,0,0,1,20.0,2,2003.0,6,118045,2,1,0,0,1,,0.0,830.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1126.04054489521,340.0,53478.8719344634,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021877798795640203,25466.12949260162,7,4,7,7_0,7_4,7_0_0 +18027,2,66.0,0.0,6,221,960.0,,,0,77,0.0,95.35156394473611,,1074.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,4,118046,2,1,0,0,2,,560.0,,21,1.0,4.0,4.0,3.0,2.0,3,2,87.07957983014174,960.0,21641.13576015948,0,5,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04962770955751748,10820.56788007974,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +18028,1,57.0,312.0,5,111,600.0,,,0,81,0.0,0.0,,684.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,3,118047,2,2,0,0,2,,800.0,312.0,32,2.0,2.0,3.0,3.0,2.0,3,2,120.39882927791749,600.0,3996.7239669421488,0,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17114016520968828,1998.3619834710744,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +18029,1,39.0,425.0,5,211,350.0,,,0,85,0.0,0.0,,614.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,3,118048,2,2,0,0,2,,350.0,650.0,31,0.0,1.0,5.0,7.0,3.3999999999999995,4,4,113.65366687989707,350.0,40835.8593800044,0,6,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01503580454341191,12010.546876471883,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +18030,2,67.0,0.0,1,111,1050.0,0.0,0.0,75,75,0.0,0.0,1790.4605705406643,1150.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118049,2,1,2,0,1,,220.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,227.222765258955,1050.0,20367.52702879512,5,5,0,1,80.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056462426605554894,13578.35135253008,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +18031,2,73.0,0.0,5,111,280.0,0.0,0.0,78,78,0.0,0.0,477.4561521441771,392.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118050,2,1,0,1,1,420.0,280.0,259.0,41,0.0,2.0,3.0,2.0,1.5,2,2,301.955622079019,280.0,29288.591924642533,5,5,2,3,68.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013384050725572201,19525.727949761687,5,3,5,5_0,5_3,5_0_0 +18032,1,30.0,300.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,252.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,2,,1,118051,2,1,0,1,1,,0.0,900.0,32,1.0,0.0,2.0,2.0,1.3,1,1,856.736419176899,0.0,9237.308568148876,0,1,2,3,33.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02728067360106602,7105.621975499135,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +18033,2,39.0,0.0,5,112,2000.0,0.0,0.0,54,52,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,,3,118052,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,653.351181059539,2000.0,59027.593484052035,1,1,0,1,110.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033882458727380715,24594.830618355016,7,4,7,7_1,7_1,7_0_0 +18034,2,79.0,0.0,2,112,700.0,0.0,0.0,0,78,3164.0485531098047,0.0,1193.6403803604428,3750.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118053,2,1,2,0,2,,150.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,982.86078728436,700.0,16000.38494592808,0,5,0,1,80.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2343693612792943,16000.38494592808,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +18035,1,82.0,194.0,2,111,288.0,624.0,0.0,0,77,0.0,0.0,491.09775649115363,912.0,0.0,1184.6665259144283,70,0,0,0,0,0,0,0,0,0,,2,,2,118054,2,1,0,0,1,,75.0,233.0,11,0.0,2.0,3.0,1.0,1.0,1,1,294.918181319917,288.0,9508.03969398631,0,6,2,3,56.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09591882547322832,9508.03969398631,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18036,1,56.0,255.0,2,120,250.0,1000.0,0.0,0,69,0.0,0.0,426.3001358430153,1250.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,118055,2,1,0,0,1,,0.0,405.0,22,1.0,0.0,3.0,2.0,1.5,2,2,1252.81481926264,250.0,11817.783653192197,0,4,2,3,67.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10577279434814771,7878.522435461465,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +18037,2,62.0,0.0,8,221,360.0,,,77,86,0.0,0.0,,492.0,182.89777775234077,,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,118056,2,1,0,0,2,,737.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,99.71085191618519,360.0,43189.150407932786,5,5,1,2,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011391749903689508,28792.76693862186,8,4,8,8_1,8_1,8_0_0 +18038,2,77.0,0.0,2,111,224.0,,,0,75,0.0,0.0,,224.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,2,118057,2,1,0,0,2,,77.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,40.31693812676762,224.0,44598.34079438177,0,5,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.005022608375337097,44598.34079438177,10,5,10,10_1,10_2,10_0_1 +18039,2,61.0,0.0,2,111,150.0,0.0,0.0,0,78,0.0,0.0,255.78008150580916,579.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,118058,1,1,0,1,2,860.0,0.0,235.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1730.3385377598,150.0,18058.670690999952,0,5,2,3,55.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03206216060457656,18058.670690999952,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +18040,2,64.0,0.0,2,111,290.0,1538.0,0.0,0,77,0.0,0.0,494.50815757789775,1828.0,0.0,2919.8992257313953,50,0,0,0,0,0,0,0,0,0,,1,,2,118059,1,1,2,0,2,,96.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,209.880607662499,290.0,18521.437415864264,0,5,0,1,92.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09869644342151616,18521.437415864264,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +18041,2,44.0,0.0,7,111,408.0,0.0,0.0,43,47,0.0,0.0,695.7218216958009,408.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,5,118060,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,465.512968140149,408.0,55782.083532504716,1,1,1,2,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00731417641942784,26562.89692024034,7,4,7,7_0,7_4,7_0_0 +18042,2,46.0,0.0,1,112,960.0,0.0,0.0,52,37,1582.0242765549024,0.0,1636.9925216371787,2520.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,118061,2,1,1,0,1,,800.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,1239.61234007425,960.0,59746.72252245176,1,1,1,2,120.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042178045817543024,21338.115186589916,6,3,6,6_1,6_0,6_1_0 +18043,2,74.0,0.0,2,111,240.0,265.0,0.0,0,77,0.0,0.0,409.2481304092947,505.0,0.0,503.1035727040441,70,2,1,2,1,1,2,2,2,0,,2,,2,118062,1,2,0,1,1,683.0,0.0,311.0,11,0.0,1.0,3.0,1.0,1.0,1,1,279.343725965772,240.0,23603.8736867539,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021394793358998423,23603.8736867539,6,3,6,6_0,6_4,6_0_1 +18044,2,43.0,0.0,1,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,3831.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,118063,1,3,4,0,1,,283.0,670.0,43,2.0,0.0,5.0,3.0,1.8,2,2,449.91080091193,0.0,33594.76766881218,1,1,2,3,125.0,6,4,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11403561524125444,18663.759816006765,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +18045,2,33.0,0.0,2,211,0.0,0.0,2090.0,43,62,0.0,0.0,1317.3652269668146,2090.0,0.0,2501.1701884101826,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,118064,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1500.42642778657,0.0,67121.60791880674,1,1,0,1,167.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031137513906522567,37289.78217711485,9,5,9,9_1,9_1,9_0_1 +18046,1,28.0,548.0,1,111,1227.0,1220.0,0.0,0,85,0.0,0.0,2092.281066717519,2447.0,0.0,2316.1749384865425,50,0,0,0,0,0,0,0,0,0,,1,,1,118065,2,1,1,0,1,,300.0,885.0,31,0.0,0.0,6.0,5.0,2.2,1,1,387.525605607269,1227.0,9478.504679703557,0,7,2,3,139.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2581630840189162,4308.411218047071,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +18047,2,49.0,0.0,7,112,500.0,1600.0,0.0,0,37,0.0,238.3789098618403,852.6002716860306,2280.0,0.0,3037.6064767036623,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,118066,2,1,3,0,1,,330.0,,32,1.0,0.0,5.0,3.0,2.0,3,1,750.590630890067,500.0,25012.47634942254,0,1,0,1,180.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09115450897978113,12506.23817471127,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +18048,2,82.0,0.0,6,111,840.0,,,0,86,0.0,0.0,,936.0,133.01656563806603,,70,0,0,0,0,0,0,0,0,0,,1,,4,118067,2,1,0,0,2,,190.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,73.1958938609709,840.0,10777.991218560273,0,6,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08684364099203924,10777.991218560273,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +18049,1,62.0,174.0,2,111,60.0,330.0,0.0,0,69,0.0,0.0,102.31203260232367,390.0,0.0,626.5063358201304,70,2,2,2,2,1,2,2,2,0,,2,,2,118068,1,3,0,0,1,,110.0,160.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1537.29832487255,60.0,6577.51452148411,0,4,2,3,30.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.059292913565776935,6577.51452148411,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18050,2,65.0,0.0,1,112,137.0,0.0,0.0,0,78,0.0,2913.5200094224924,233.61247444197238,2457.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118069,2,2,1,0,1,,153.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,626.054447938478,137.0,14530.762626442145,0,5,0,1,40.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16908954217784206,14530.762626442145,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +18051,2,48.0,0.0,1,111,360.0,0.0,0.0,0,85,2531.2388424878436,0.0,613.872195613942,2908.0,205.0672053586851,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118070,2,2,2,0,1,,600.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,939.005687650263,360.0,16510.182211475443,0,5,0,1,180.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17613373146050365,16510.182211475443,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +18052,1,27.0,180.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,490.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118071,2,2,0,0,2,,0.0,255.0,31,0.0,0.0,2.0,2.0,1.3,1,1,2177.03391879254,0.0,5904.333333333333,0,6,3,4,35.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08298989442782138,4541.794871794871,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18053,2,87.0,0.0,2,111,764.0,2975.0,0.0,0,86,0.0,0.0,1302.7732151362547,3739.0,0.0,5648.049542620873,70,0,0,0,0,0,0,0,0,0,,1,,2,118072,2,1,2,0,1,,90.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,1465.9234552572,764.0,14686.072383239547,0,5,0,1,142.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2545949592531715,14686.072383239547,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +18055,2,68.0,0.0,2,400,540.0,0.0,0.0,72,72,1054.6828510366015,635.6770929649075,920.8082934209131,2200.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,118074,1,1,2,0,2,,212.0,,41,0.0,7.0,6.0,2.0,1.5,2,2,1351.6829781005,540.0,14411.511421669562,5,5,0,1,110.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15265574412216174,9607.67428111304,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +18056,2,61.0,0.0,5,112,752.0,1688.0,0.0,54,37,0.0,119.18945493092015,1282.31080861579,2530.0,0.0,3204.6748329223637,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,118075,2,2,1,0,1,,578.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,632.955994789896,752.0,82730.6873060701,1,1,1,2,120.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030581155341306697,55153.79153738007,10,5,10,10_1,10_0,10_0_0 +18057,1,34.0,242.0,5,111,360.0,0.0,0.0,0,85,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118076,2,1,0,1,1,420.0,0.0,280.0,31,0.0,0.0,1.0,3.0,1.6,1,1,197.764776285492,360.0,5290.413547819222,0,6,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0680476104081498,3306.5084673870138,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +18058,2,28.0,0.0,1,112,0.0,0.0,0.0,85,64,0.0,0.0,0.0,1711.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,118077,1,1,2,0,2,,408.0,650.0,42,1.0,0.0,5.0,4.0,2.1,2,2,1997.11215513543,0.0,31184.632102548785,6,1,2,3,110.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054866768810145954,14849.824810737517,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +18059,2,61.0,0.0,2,111,314.0,610.0,0.0,52,67,0.0,0.0,535.4329706188272,924.0,0.0,1158.0874692432712,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,118078,2,2,0,1,1,593.0,0.0,765.0,43,4.0,0.0,3.0,4.0,2.5,4,4,786.166635674822,314.0,31959.885469140332,4,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028911242529082008,12783.954187656132,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +18060,2,52.0,0.0,9,111,1000.0,0.0,0.0,75,67,0.0,0.0,1705.2005433720612,1070.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,118079,2,1,1,0,1,,216.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,822.449234950038,1000.0,41818.28668596876,5,1,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025586892357285788,27878.857790645838,7,4,7,7_1,7_4,7_0_0 +18061,2,50.0,0.0,7,111,2400.0,0.0,0.0,0,34,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,118080,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.8,3,1,860.8761220917,2400.0,87594.52741179684,0,1,1,2,112.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02739897195537331,48663.62633988713,10,5,10,10_0,10_4,10_0_0 +18062,2,51.0,0.0,7,111,1400.0,0.0,0.0,52,46,0.0,529.7309108040896,2387.2807607208856,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,118081,2,1,2,0,1,,591.0,,43,2.0,0.0,5.0,5.0,3.0,5,3,1841.37267361941,1400.0,45439.10529621648,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039613456036729625,15146.36843207216,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +18063,2,45.0,0.0,8,111,0.0,0.0,1220.0,62,62,0.0,0.0,768.9883143059874,1220.0,0.0,1460.0132200289106,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,118082,2,2,5,0,1,,500.0,411.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1443.09650645266,0.0,36271.56400347919,1,1,3,4,73.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03363516389541341,24181.042668986123,7,4,7,7_1,7_2,7_0_0 +18064,1,69.0,121.0,2,111,170.0,190.0,0.0,0,77,0.0,0.0,289.8840923732504,360.0,0.0,360.7157691085599,70,0,0,0,0,0,0,0,0,0,,2,,2,118083,2,2,0,1,1,,110.0,236.0,11,0.0,3.0,2.0,1.0,1.0,1,1,229.397296401499,170.0,11255.469500999656,0,5,2,3,40.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031984449868397456,11255.469500999656,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +18065,2,31.0,0.0,8,111,711.0,0.0,0.0,0,37,0.0,0.0,1212.3975863375356,711.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,2001.0,6,118084,2,1,0,0,1,,0.0,1072.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1580.21120830047,711.0,60744.0,0,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011704859739233504,60744.0,10,5,10,10_0,10_4,10_0_0 +18066,2,42.0,0.0,1,111,518.0,1150.0,0.0,45,42,0.0,0.0,883.2938814667277,1668.0,0.0,2183.2796551307574,20,0,0,0,0,0,0,0,0,1,2.0,1,,1,118085,2,3,2,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,284.954941427823,518.0,68703.69291391093,1,1,1,2,120.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02427817092874593,32716.044244719487,8,4,8,8_1,8_2,8_1_0 +18067,2,77.0,0.0,2,120,330.0,0.0,0.0,86,72,2056.6315595213728,529.7309108040896,562.7161793127802,2870.0,263.261952825339,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118086,2,3,2,0,1,,321.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,705.330623300246,330.0,50833.10578331431,5,5,0,1,75.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056459269127365846,25416.552891657157,7,4,7,7_1,7_0,7_0_1 +18068,0,87.0,0.0,1,112,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1538.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118087,2,1,1,0,1,,280.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2466.42449846875,0.0,11817.516820929646,0,6,0,1,110.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1301457847113951,11817.516820929646,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +18069,1,32.0,84.0,9,120,504.0,0.0,0.0,0,68,0.0,0.0,859.4210738595189,533.0,40.18208753649911,0.0,50,0,0,0,0,0,0,0,0,2,14.0,1,2008.0,6,118088,2,1,1,0,1,,162.0,235.0,12,1.0,0.0,2.0,1.0,1.0,1,1,492.684346956299,504.0,14255.036571135855,0,1,2,3,44.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.037390293412451765,14255.036571135855,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +18070,2,63.0,0.0,6,111,1800.0,0.0,0.0,77,74,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,118089,2,1,3,0,1,,300.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1566.34721546758,1800.0,71939.40818468996,5,5,0,1,155.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025021056544958807,47959.605456459976,10,5,10,10_1,10_2,10_0_0 +18071,2,43.0,0.0,1,111,0.0,0.0,1267.0,21,54,0.0,529.7309108040896,798.6132739554804,1667.0,0.0,1516.2596309644507,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,118090,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1650.92426184426,0.0,49525.71483279905,1,1,1,2,130.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03365928196347824,19048.351858768867,5,3,5,5_1,5_2,5_1_0 +18072,2,65.0,0.0,2,111,1500.0,0.0,0.0,46,47,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118091,2,1,2,0,1,,200.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,296.181090044352,1500.0,26633.456914586306,1,1,1,2,80.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0563201391697109,17755.637943057536,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +18073,2,77.0,0.0,1,120,702.0,0.0,0.0,77,78,0.0,223.81130981472785,1197.0507814471869,1110.0,331.15582486976854,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118092,1,1,2,0,1,,330.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1595.48424257538,702.0,21519.63333324455,5,5,0,1,112.0,0,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05158080450586578,14346.422222163033,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +18074,2,51.0,0.0,2,111,0.0,0.0,0.0,85,34,0.0,0.0,0.0,671.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,,2,118093,1,1,0,1,2,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1587.94067640902,0.0,133142.74623349396,6,1,0,1,81.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0050397037689402895,88761.83082232931,10,5,10,10_0,10_3,10_0_1 +18075,1,58.0,104.0,2,111,1000.0,,,0,55,0.0,0.0,,1250.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,118094,2,3,0,0,2,,250.0,209.0,32,2.0,0.0,4.0,3.0,2.0,3,2,95.50756152399389,1000.0,35887.57235785745,0,1,2,3,57.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0348309990861312,17943.786178928724,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +18076,2,86.0,0.0,2,111,261.0,0.0,0.0,0,86,0.0,0.0,445.057341820108,261.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118095,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,287.514121131153,261.0,17611.134205664133,0,5,0,1,68.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014820169839831018,17611.134205664133,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +18077,2,49.0,0.0,6,111,850.0,0.0,0.0,46,46,1054.6828510366015,0.0,1449.420461866252,1850.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,118096,2,1,3,0,1,,244.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,852.122723365698,850.0,111692.93099215193,1,1,1,2,140.0,5,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016563268450086512,53187.10999626282,10,5,10,10_1,10_2,10_0_0 +18078,2,54.0,0.0,1,111,497.81,469.0,0.0,56,68,0.0,0.0,848.8658824960457,967.0,0.0,890.3983984837611,70,2,2,1,1,1,2,2,2,0,,2,,1,118097,2,2,0,0,2,,0.0,44.0,43,2.0,1.0,2.0,2.0,1.5,2,2,1110.31684421102,497.81,45604.518289757296,1,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.021204039342241812,30403.01219317153,8,4,8,8_0,8_4,8_1_0 +18079,2,54.0,0.0,6,120,130.0,,,46,48,0.0,0.0,,216.0,119.1606733841008,,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,118098,2,1,0,0,1,,220.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,85.83903390251116,130.0,109925.46455502782,1,1,0,1,98.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0019649678159137742,73283.64303668521,10,5,10,10_1,10_1,10_0_0 +18080,2,63.0,0.0,1,111,998.0,506.0,0.0,77,78,0.0,0.0,1701.790142285317,1504.0,0.0,960.6430482575332,71,2,2,1,2,2,1,2,2,0,,1,,1,118099,2,1,1,0,1,,264.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,109.098684344137,998.0,28414.220051554425,5,5,0,1,98.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05293124348552099,18942.81336770295,5,3,5,5_1,5_3,5_1_0 +18081,1,41.0,101.0,1,211,0.0,0.0,0.0,52,68,0.0,0.0,0.0,1258.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,1,,1,118100,2,2,5,0,1,,231.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,3198.43238260241,0.0,37282.18689920714,1,2,2,3,90.0,2,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.033742655799699164,20712.326055115078,5,3,5,5_1,5_1,5_1_0 +18082,2,43.0,0.0,1,111,2000.0,1500.0,0.0,54,38,0.0,0.0,3410.4010867441225,3500.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,118101,2,1,1,0,1,,1000.0,,43,3.0,0.0,7.0,6.0,3.0999999999999996,4,2,440.821990970477,2000.0,90457.57039732118,1,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03869217340933191,29179.861418490706,8,4,8,8_1,8_4,8_1_0 +18083,2,75.0,0.0,2,111,2000.0,160.0,0.0,75,75,1582.0242765549024,0.0,3410.4010867441225,3660.0,0.0,303.7606476703662,50,0,0,0,0,0,0,0,0,0,,1,,2,118102,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1381.36982619941,2000.0,31225.941548377254,5,5,0,1,100.0,6,4,4,1,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11721023669789718,20817.294365584836,5,3,5,5_1,5_2,5_0_1 +18084,2,60.0,0.0,5,111,2700.0,0.0,0.0,77,74,0.0,0.0,4604.0414671045655,2700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,118103,2,2,2,0,1,,475.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,942.933120580299,2700.0,54468.35348755628,5,5,0,1,130.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04957006825287708,36312.23565837085,9,5,9,9_1,9_2,9_0_0 +18085,1,37.0,523.0,7,111,0.0,,,0,85,0.0,0.0,,951.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,5,118104,2,2,0,0,2,,274.0,800.0,31,0.0,0.0,3.0,6.0,2.6999999999999997,2,1,58.187031645562136,0.0,21965.80162212485,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043294572916570184,8135.482082268464,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +18086,2,57.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,429.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,118105,2,2,0,1,1,324.0,0.0,600.0,32,1.0,0.0,3.0,2.0,1.5,2,2,983.33536140788,0.0,19843.412950361344,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021619264844870752,13228.941966907563,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +18087,2,78.0,0.0,9,120,1300.0,0.0,0.0,77,75,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,118106,2,1,1,0,1,,216.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,2131.87183278814,1300.0,41089.63432685217,5,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03163814965251339,27393.089551234778,7,4,7,7_1,7_0,7_0_0 +18088,2,55.0,0.0,5,111,500.0,0.0,0.0,0,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,60.0,2,,3,118107,2,1,0,0,1,,0.0,525.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.55487399961,500.0,34656.71786018426,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014427217315186973,34656.71786018426,9,5,9,9_0,9_4,9_0_0 +18089,2,63.0,0.0,7,111,800.0,,,0,45,0.0,0.0,,865.0,90.06329965077386,,60,0,0,0,0,0,0,0,0,2,45.0,1,,5,118108,2,1,0,0,2,,950.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,92.71588862276026,800.0,43530.72818786495,0,1,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019871020679160974,43530.72818786495,10,5,10,10_1,10_3,10_0_0 +18091,2,61.0,0.0,5,111,220.0,90.0,0.0,0,77,0.0,0.0,375.14411954185346,310.0,0.0,170.865364314581,31,0,0,0,0,0,0,0,0,0,,2,,3,118110,2,3,0,1,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1644.67404927409,220.0,31413.668234116223,0,5,1,2,105.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00986831584549971,31413.668234116223,8,4,8,8_0,8_3,8_0_0 +18092,2,71.0,0.0,2,111,260.0,0.0,0.0,77,75,0.0,0.0,443.3521412767359,625.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118111,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1190.64626913532,260.0,23713.74344874134,6,5,0,1,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02635602435992337,15809.162299160895,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +18093,1,75.0,60.0,6,222,432.0,0.0,0.0,0,72,0.0,1165.408003768997,736.6466347367304,1462.0,207.83838380947813,0.0,70,2,2,2,1,1,2,2,2,0,,1,,4,118112,1,2,4,0,1,,104.0,430.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1585.22395939893,432.0,13041.303013961584,0,5,2,3,80.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.11210536235795085,13041.303013961584,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +18094,2,40.0,0.0,6,111,750.0,,,47,43,0.0,33.1081819252556,,825.0,69.27946126982604,,33,0,0,0,0,0,0,0,0,0,,1,,4,118113,2,2,0,0,1,,600.0,,43,2.0,4.0,4.0,4.0,2.5,4,3,133.6945124413707,750.0,48104.49620628074,4,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01715016401922705,19241.798482512295,5,3,5,5_1,5_2,5_0_0 +18095,2,49.0,0.0,5,111,600.0,814.0,0.0,0,63,0.0,0.0,1023.1203260232367,1414.0,0.0,1545.3822950229883,71,0,0,0,0,0,0,0,0,0,,2,,3,118114,1,1,0,0,1,,0.0,517.0,32,1.0,0.0,3.0,3.0,2.0,3,2,387.490408091616,600.0,18026.668043115973,0,4,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07843934312308916,9013.334021557986,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +18096,2,39.0,0.0,1,111,150.0,0.0,0.0,0,85,0.0,0.0,255.78008150580916,150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,118115,1,2,0,0,1,,0.0,1300.0,31,0.0,0.0,3.0,3.0,1.6,1,1,279.039436270817,150.0,18349.316287168873,0,7,3,4,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008174691506347325,11468.322679480545,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +18097,1,55.0,340.0,9,111,420.0,,,0,43,0.0,0.0,,650.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,118116,2,1,0,0,2,,340.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,124.70060723716745,420.0,6623.256120977092,0,4,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09813904039454677,6623.256120977092,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +18098,2,50.0,0.0,7,300,1700.0,0.0,0.0,52,64,0.0,331.081819252556,2898.840923732504,1950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,118117,2,1,2,0,1,,180.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,728.608923245651,1700.0,68918.6497052149,1,1,1,2,105.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028294228171049735,22972.883235071637,6,3,6,6_1,6_0,6_0_0 +18100,2,54.0,0.0,2,111,246.0,45.0,0.0,0,52,0.0,0.0,419.479333669527,291.0,0.0,85.4326821572905,44,0,0,0,0,0,0,0,0,2,20.0,2,,2,118119,2,1,0,1,2,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1869.90678668604,246.0,31377.21152101559,0,1,0,1,54.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.009274246687125025,31377.21152101559,8,4,8,8_0,8_3,8_0_1 +18101,2,68.0,0.0,2,111,0.0,0.0,673.0,77,77,0.0,0.0,424.2042094491226,673.0,0.0,805.4007353110302,70,0,0,0,0,0,0,0,0,0,,2,,2,118120,2,2,0,1,1,422.0,0.0,346.0,41,1.0,2.0,4.0,3.0,2.0,3,3,810.442493411395,0.0,60298.416114279054,5,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011161155522302837,30149.208057139527,8,4,8,8_0,8_4,8_0_1 +18102,2,56.0,0.0,9,111,0.0,,,55,63,0.0,0.0,,1235.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,118121,2,1,0,0,2,,223.0,850.0,43,2.0,3.0,4.0,2.0,1.5,2,2,139.94175813250192,0.0,57704.61925032518,4,1,2,3,115.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021402099451389076,38469.74616688345,9,5,9,9_1,9_2,9_0_0 +18103,2,85.0,0.0,2,111,762.0,1200.0,0.0,0,86,0.0,0.0,1299.3628140495107,1962.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,118122,2,1,3,0,1,,1100.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,302.135820496993,762.0,41766.256354711135,0,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046975720862726805,41766.256354711135,9,5,9,9_1,9_3,9_0_1 +18104,1,70.0,250.0,7,211,1200.0,,,85,78,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,0,,3,,5,118123,1,2,0,0,2,,200.0,600.0,41,0.0,0.0,3.0,4.0,2.1,2,2,46.587856323002455,1200.0,23596.89867286149,6,5,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05085414047991423,11236.618415648329,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +18105,2,36.0,0.0,1,111,200.0,370.0,0.0,0,67,0.0,0.0,341.04010867441224,570.0,0.0,702.446497737722,50,0,0,0,0,0,0,0,0,0,,1,,1,118124,2,1,2,0,1,,170.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,402.379622131126,200.0,11980.09140746322,0,1,1,2,55.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04757893580385438,11980.09140746322,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +18106,2,44.0,0.0,2,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,1640.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,2,118125,1,1,0,1,2,564.0,0.0,1050.0,43,2.0,0.0,4.0,2.0,1.5,2,2,354.727170775548,0.0,56047.639763193656,4,1,2,3,115.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029260821810323294,37365.09317546244,9,5,9,9_0,9_3,9_0_1 +18107,2,82.0,0.0,2,221,261.0,237.0,0.0,77,77,0.0,0.0,445.057341820108,498.0,0.0,449.94545936173,70,1,2,2,1,2,2,2,2,0,,2,,2,118126,2,1,0,1,1,,276.0,363.0,41,0.0,2.0,4.0,2.0,1.5,2,2,644.364833064123,261.0,26985.666694734537,5,5,2,3,80.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01845424112116415,17990.444463156357,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +18108,2,39.0,0.0,9,112,0.0,0.0,0.0,46,62,0.0,0.0,0.0,2271.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,118127,2,1,1,0,1,,433.0,773.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1323.63872706907,0.0,37363.70836362551,1,1,2,3,120.0,8,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06078090477258072,20757.61575756973,5,3,5,5_1,5_0,5_0_0 +18109,1,30.0,271.0,1,111,220.0,0.0,0.0,0,67,0.0,0.0,375.14411954185346,979.0,0.0,0.0,71,2,2,1,1,1,2,2,1,0,,1,,1,118128,1,3,3,0,1,,320.0,317.0,12,1.0,0.0,4.0,1.0,1.0,1,1,508.280880436151,220.0,6067.81753719814,0,4,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.1613430189682435,6067.81753719814,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +18110,1,30.0,325.0,7,111,800.0,1500.0,0.0,0,56,0.0,0.0,1364.160434697649,2300.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,,5,118129,2,1,1,0,1,,190.0,,22,1.0,1.0,4.0,4.0,2.5,4,4,644.852641915626,800.0,13949.884747942426,0,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.164875914142534,5579.9538991769705,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +18111,1,44.0,90.0,1,111,192.0,0.0,0.0,0,64,0.0,0.0,327.3985043274357,192.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,1,118130,1,1,0,0,2,,0.0,515.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1285.44053030115,192.0,20022.251461768574,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,1,0.009589331168206223,20022.251461768574,5,3,5,5_0,5_4,5_1_0 +18112,2,70.0,0.0,2,111,336.0,,,0,78,0.0,0.0,,612.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,118131,1,2,0,0,2,,320.0,,21,0.0,5.0,4.0,2.0,1.5,2,2,78.32043950332108,336.0,18919.04069417218,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03234836321212208,12612.693796114787,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +18114,2,75.0,0.0,2,111,264.0,0.0,0.0,0,74,0.0,0.0,450.1729434502241,264.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,118133,2,1,0,1,1,1450.0,213.0,552.0,11,0.0,2.0,4.0,1.0,1.0,1,1,744.524651738031,264.0,40219.77221824628,0,5,2,3,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006563935732093296,40219.77221824628,9,5,9,9_0,9_4,9_0_1 +18115,2,45.0,0.0,1,300,1000.0,0.0,0.0,0,22,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,118134,2,1,2,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,6905.87276030679,1000.0,31173.0483914828,0,1,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032078992963460805,31173.0483914828,8,4,8,8_1,8_0,8_1_0 +18116,2,77.0,0.0,5,111,600.0,0.0,0.0,78,78,0.0,0.0,1023.1203260232367,800.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118135,2,2,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,327.507317724507,600.0,30949.729922756313,5,5,0,1,90.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025848367723938892,20633.15328183754,5,3,5,5_0,5_2,5_0_0 +18117,2,40.0,0.0,8,112,1151.0,0.0,0.0,68,62,0.0,0.0,1962.6858254212425,1151.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,118136,2,1,1,0,1,,427.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,875.955460753026,1151.0,43475.467038110946,1,1,1,2,91.0,4,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026474701214618906,16721.33347619652,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +18118,0,85.0,0.0,5,111,210.0,0.0,0.0,0,77,0.0,0.0,358.0921141081328,210.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,,3,118137,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,669.296609449097,210.0,33044.808448404554,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006355007332782377,33044.808448404554,8,4,8,8_0,8_4,8_0_0 +18119,2,72.0,0.0,1,222,280.0,0.0,0.0,0,77,0.0,0.0,477.4561521441771,2230.0,2701.8989895232157,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118138,2,1,2,0,1,,125.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1234.10323942528,280.0,17163.837410466705,0,5,0,1,100.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12992432558468076,17163.837410466705,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18120,2,46.0,0.0,9,111,1530.0,,,43,53,0.0,0.0,,1553.0,31.86855218411998,,41,0,0,0,0,0,0,0,0,0,,1,2007.0,6,118139,2,1,0,0,2,,309.0,250.0,43,2.0,1.0,5.0,4.0,2.5,4,2,94.52801062344825,1530.0,79144.05121349325,1,1,3,4,170.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019622447627942876,31657.6204853973,8,4,8,8_1,8_2,8_0_0 +18121,2,95.0,0.0,6,111,360.0,,,0,77,0.0,0.0,,500.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,4,118140,1,1,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,96.23964849797791,360.0,8448.244328650486,0,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059183894374876526,8448.244328650486,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18122,2,57.0,0.0,6,111,700.0,,,77,52,0.0,0.0,,820.0,166.2707070475825,,43,0,0,0,0,0,0,0,0,0,,1,,4,118141,2,1,0,0,2,,600.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,87.00541358612068,700.0,59911.0,5,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013686969004022633,39940.666666666664,9,5,9,9_1,9_2,9_0_0 +18123,1,66.0,265.0,7,111,990.0,520.0,0.0,85,78,0.0,0.0,1688.1485379383405,1510.0,0.0,987.2221049286903,71,0,0,0,0,0,0,0,0,0,,2,,5,118142,2,1,0,0,1,,300.0,434.0,41,1.0,5.0,4.0,4.0,2.5,4,3,1352.74528303004,990.0,11180.28502982649,6,5,2,3,85.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13505916852492214,4472.114011930596,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +18124,2,80.0,0.0,2,111,910.0,,,0,75,0.0,0.0,,910.0,0.0,,44,0,0,0,0,0,0,0,0,0,,2,,2,118143,2,1,0,0,2,,279.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,129.29863807766313,910.0,27412.068154632194,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033197057400655296,27412.068154632194,7,4,7,7_0,7_2,7_0_1 +18125,2,73.0,0.0,2,111,260.0,0.0,0.0,0,34,0.0,0.0,443.3521412767359,260.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,2,118144,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1692.5031308219,260.0,75538.02426513312,0,5,0,1,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003441975118218851,75538.02426513312,10,5,10,10_0,10_3,10_0_1 +18126,2,69.0,0.0,2,112,687.0,0.0,0.0,78,75,1582.0242765549024,397.2981831030672,1171.472773296606,2487.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118145,2,1,1,0,1,,234.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2082.08388068048,687.0,23407.159671129855,6,5,0,1,100.0,8,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10624954223162068,15604.77311408657,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +18127,2,39.0,0.0,2,111,350.0,700.0,0.0,68,63,0.0,0.0,596.8201901802214,1050.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,2,118146,2,1,1,0,1,,700.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,485.623343589847,350.0,40647.04514653374,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025832136043707987,15633.47890251298,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +18128,2,74.0,0.0,2,112,1133.0,0.0,0.0,77,78,1423.821848899412,662.163638505112,1931.9922156405453,3099.0,160.72835014599644,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118147,2,1,1,0,1,,525.0,,41,1.0,5.0,4.0,3.0,2.0,3,3,1182.77466974788,1133.0,45752.063261535266,5,5,0,1,77.0,10,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0677346501792717,22876.031630767633,6,3,6,6_1,6_1,6_0_1 +18129,1,40.0,210.0,7,111,0.0,0.0,0.0,22,54,0.0,0.0,0.0,2091.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,5,118148,2,2,2,0,1,,550.0,530.0,43,2.0,0.0,5.0,5.0,2.4,2,2,251.324134845022,0.0,15134.99433607439,4,1,2,3,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1381566423857909,6306.247640030996,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +18130,2,31.0,0.0,5,111,220.0,0.0,0.0,85,37,0.0,0.0,375.14411954185346,220.0,0.0,0.0,43,1,2,2,2,1,2,2,2,0,,2,,3,118149,1,3,0,1,2,200.0,0.0,390.0,42,1.0,1.0,1.0,2.0,1.5,2,2,696.894311735552,220.0,23230.211177092875,7,4,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009470426175761167,15486.80745139525,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +18131,2,43.0,0.0,1,111,450.0,0.0,0.0,0,45,0.0,0.0,767.3402445174275,480.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,118150,1,2,0,0,1,,85.0,412.0,12,1.0,0.0,2.0,1.0,1.0,1,1,492.232671221302,450.0,24821.741136673925,0,1,2,3,50.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019337885982978198,24821.741136673925,7,4,7,7_0,7_2,7_1_0 +18132,1,33.0,229.0,6,120,450.0,,,68,52,0.0,0.0,,560.0,152.4148147936173,,43,2,2,2,2,1,2,2,2,1,5.0,1,,4,118151,1,2,0,0,2,,350.0,354.0,43,2.0,0.0,3.0,3.0,1.8,2,2,111.33462749956736,450.0,29224.29738889868,1,1,2,3,64.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.019162137332092884,16235.720771610379,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +18133,2,66.0,0.0,2,111,390.0,,,90,74,0.0,0.0,,528.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,118152,1,1,0,0,2,,657.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,99.43715162594381,390.0,28065.486444484188,4,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01881314264922601,18710.324296322793,5,3,5,5_1,5_2,5_0_1 +18134,2,28.0,0.0,1,111,430.0,1080.0,0.0,46,38,0.0,0.0,733.2362336499863,1510.0,0.0,2050.384371774972,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,118153,2,3,0,0,1,,0.0,1420.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1009.0670820695,430.0,76069.44981603259,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019850281599930127,42260.80545335144,9,5,9,9_0,9_4,9_1_0 +18135,2,81.0,0.0,5,112,400.0,1500.0,0.0,77,77,0.0,0.0,682.0802173488245,1900.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,,3,118154,2,2,3,0,1,,180.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,713.989788869837,400.0,32691.880184539637,6,5,0,1,96.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058118407056273615,21794.58678969309,6,3,6,6_1,6_1,6_0_0 +18136,1,57.0,108.0,1,120,480.0,0.0,0.0,0,64,0.0,0.0,818.4962608185893,480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,118155,2,1,0,0,1,,0.0,385.0,12,1.0,2.0,3.0,1.0,1.0,1,1,3046.4849434856,480.0,17443.895410078214,0,4,2,3,50.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.027516789611263085,17443.895410078214,4,2,4_1,4_0_1,4_0_1,4_1_0_1 +18138,2,57.0,0.0,5,111,1100.0,0.0,0.0,0,63,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118157,2,1,0,0,2,,0.0,400.0,12,1.0,3.0,2.0,1.0,1.0,1,1,995.813647278016,1100.0,20904.019457792918,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05262145886445419,20904.019457792918,5,3,5,5_0,5_4,5_0_0 +18139,1,45.0,162.0,2,111,147.0,640.0,0.0,0,85,0.0,0.0,250.664479875693,787.0,0.0,1215.0425906814648,71,0,0,0,0,0,0,0,0,0,,2,,2,118158,2,2,0,1,1,469.0,0.0,124.0,31,0.0,1.0,2.0,3.0,1.8,2,1,1767.7330717394,147.0,11554.62424538888,0,6,2,3,36.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06811125859969606,6419.235691882712,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18140,2,62.0,0.0,9,111,1152.0,,,75,75,0.0,0.0,,1244.0,127.47420873647992,,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,118159,1,1,0,0,2,,218.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,172.65323870496135,1152.0,44713.69270405793,5,5,0,1,76.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02782145523595063,29809.128469371954,8,4,8,8_1,8_3,8_0_0 +18141,2,61.0,0.0,2,111,0.0,0.0,200.0,0,75,0.0,0.0,126.06365808294876,200.0,0.0,239.34642951293617,50,1,2,2,1,1,2,2,2,0,,1,,2,118160,1,3,2,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,392.337208686308,0.0,23816.5403169367,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.008397525305460661,23816.5403169367,6,3,6,6_1,6_3,6_0_1 +18142,2,71.0,0.0,1,112,2360.0,0.0,0.0,71,71,0.0,0.0,4024.2732823580645,2360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118161,2,2,1,0,1,,600.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,930.972512450156,2360.0,59599.091741192664,5,5,0,1,150.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.039597918878499554,39732.72782746178,9,5,9,9_1,9_0,9_1_0 +18143,2,45.0,0.0,2,111,225.0,225.0,0.0,0,68,0.0,0.0,383.6701222587138,450.0,0.0,427.1634107864525,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,118162,2,1,0,1,1,,0.0,794.0,32,2.0,1.0,5.0,5.0,2.5999999999999996,3,2,215.37608188568,225.0,31297.218151122222,0,1,2,3,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0143782747024711,12037.391596585472,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +18144,1,52.0,253.0,2,112,398.0,,,0,62,0.0,0.0,,442.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,2,118163,2,1,0,0,2,,107.0,335.0,12,1.0,0.0,2.0,1.0,1.0,1,1,136.1279897311314,398.0,12444.061855357919,0,4,2,3,72.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.035518949129113526,12444.061855357919,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +18145,2,69.0,0.0,2,120,1312.0,0.0,0.0,78,71,0.0,0.0,2237.2231129041443,1312.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118164,2,2,1,0,2,,370.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1029.06711326962,1312.0,22099.206283628828,5,5,0,1,70.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05936864804832083,14732.804189085886,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +18146,2,38.0,0.0,2,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1262.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,118165,2,1,0,0,2,,243.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,2215.75093084147,0.0,35155.971310007175,0,1,0,1,78.0,9,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03589717345231678,27043.05485385167,7,4,7,7_0,7_2,7_0_1 +18147,0,82.0,0.0,5,111,350.0,0.0,0.0,78,75,0.0,0.0,596.8201901802214,430.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,118166,2,1,0,1,2,156.0,0.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,1337.2187857187,350.0,32909.44553067151,5,5,5,0,34.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013066157544320861,21939.630353781005,6,3,6,6_0,6_3,6_0_0 +18148,1,49.0,352.0,6,111,428.0,744.0,0.0,84,37,0.0,0.0,729.8258325632422,1172.0,0.0,1412.487011667203,10,0,0,0,0,0,0,0,0,0,,2,,4,118167,2,2,0,0,1,,0.0,440.0,42,1.0,2.0,4.0,4.0,2.5,4,3,1737.37088996343,428.0,13265.742552390508,3,4,2,3,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08834786257696549,5306.297020956203,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +18149,1,52.0,120.0,2,112,600.0,0.0,0.0,85,63,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,118168,1,2,3,0,2,,400.0,530.0,42,1.0,3.0,4.0,2.0,1.5,2,2,4286.67153017426,600.0,19270.025113121093,6,4,2,3,75.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,1,0.03425008509981658,12846.683408747396,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +18150,1,51.0,40.0,9,111,290.0,0.0,0.0,0,46,0.0,0.0,494.50815757789775,290.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,1.0,2,2005.0,6,118169,2,1,0,0,1,,206.0,553.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2300.86017162301,290.0,14248.653513853405,0,1,2,3,40.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.020352800334294353,14248.653513853405,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +18151,2,64.0,0.0,5,111,230.0,700.0,0.0,0,77,608.5520050481191,0.0,392.1961249755741,1507.0,0.0,1328.9528335578523,44,0,0,0,0,0,0,0,0,0,,2,,3,118170,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1959.37789552853,230.0,16163.743269539329,0,5,0,1,54.0,9,7,9,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0932333541104894,16163.743269539329,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +18152,2,70.0,0.0,1,111,500.0,1500.0,0.0,74,74,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,0,,2,,1,118171,2,1,0,0,1,,0.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,731.278655352732,500.0,150995.94283729693,5,5,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013245388998001525,100663.96189153129,10,5,10,10_0,10_4,10_1_0 +18153,2,65.0,0.0,6,111,340.0,130.0,0.0,77,77,0.0,0.0,579.7681847465008,1138.0,0.0,246.80552623217258,70,0,0,0,0,0,0,0,0,0,,2,,4,118172,1,1,0,1,1,,0.0,355.0,41,0.0,1.0,4.0,2.0,1.5,2,2,72.8453480260108,340.0,35196.40882704824,5,5,2,3,73.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032332844114637445,23464.27255136549,6,3,6,6_0,6_3,6_0_0 +18155,2,43.0,0.0,5,111,3300.0,0.0,0.0,37,37,0.0,0.0,5627.1617931278015,3300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,3,118174,2,1,0,0,1,,469.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,736.320529035754,3300.0,122452.05524126007,1,1,0,1,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026949323092194773,58310.502495838125,10,5,10,10_0,10_4,10_0_0 +18156,2,40.0,0.0,2,212,4800.0,0.0,0.0,43,23,5273.414255183007,0.0,8184.962608185893,9800.0,0.0,0.0,71,2,2,1,2,2,2,2,1,2,10.0,1,,2,118175,2,1,2,0,1,,0.0,,43,2.0,0.0,11.0,4.0,2.1,2,2,774.695229689075,4800.0,207625.1860992085,1,1,1,2,450.0,2,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.04720043933069524,98869.13623771834,10,5,10,10_1,10_0,10_0_1 +18157,2,60.0,0.0,2,111,1000.0,800.0,0.0,68,78,0.0,0.0,1705.2005433720612,1800.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,0,,1,,2,118176,2,1,1,0,1,,150.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,691.841768208827,1000.0,40428.05886846598,1,5,1,2,95.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04452353267458028,26952.039245643988,7,4,7,7_1,7_2,7_0_1 +18158,2,88.0,0.0,1,111,240.0,2044.0,0.0,0,78,0.0,0.0,409.2481304092947,2284.0,0.0,3880.5422739889286,70,0,0,0,0,0,0,0,0,0,,1,,1,118177,2,1,2,0,2,,30.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1107.05584066825,240.0,21536.02102731977,0,5,0,1,100.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10605487416188,21536.02102731977,6,3,6,6_1,6_2,6_1_0 +18159,2,65.0,0.0,2,112,240.0,,,86,78,0.0,0.0,,450.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,2,118178,2,1,0,0,2,,190.0,,41,2.0,1.0,4.0,4.0,2.5,4,4,86.95832326123185,240.0,26538.534905710403,6,5,0,1,75.0,6,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016956474861887408,10615.413962284161,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +18160,0,80.0,0.0,5,111,360.0,960.0,0.0,0,72,0.0,0.0,613.872195613942,1320.0,0.0,1822.5638860221975,71,0,0,0,0,0,0,0,0,0,,1,,3,118179,2,1,1,0,1,,170.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,443.815493873944,360.0,19040.60239973221,0,5,5,0,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06932553772660914,19040.60239973221,5,3,5,5_1,5_3,5_0_0 +18161,2,38.0,0.0,9,400,2040.0,,,85,52,0.0,0.0,,2490.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,1,20.0,1,2006.0,6,118180,2,1,0,0,2,,0.0,,42,1.0,0.0,5.0,10.0,4.499999999999999,5,4,6.69311278593562,2040.0,44515.76381097104,6,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055935241515194044,9892.391957993566,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +18162,2,60.0,0.0,2,111,507.0,326.0,0.0,72,75,0.0,838.2991663474718,864.5366754896351,1466.0,0.0,618.9123196283712,44,0,0,0,0,0,0,0,0,0,,1,,2,118181,2,1,2,0,1,,213.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,348.02181254766,507.0,38383.97599738199,5,5,0,1,180.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03819302096531088,25589.317331587994,7,4,7,7_1,7_2,7_0_1 +18163,2,64.0,0.0,7,111,648.0,0.0,0.0,0,75,0.0,0.0,1104.9699521050957,648.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,118182,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1956.29261643042,648.0,28051.513656015508,0,5,1,2,46.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023100357718523316,28051.513656015508,8,4,8,8_0,8_3,8_0_0 +18164,2,59.0,0.0,5,111,1248.0,,,75,75,0.0,0.0,,1386.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,0,,1,,3,118183,2,1,0,0,2,,405.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,49.339014219864964,1248.0,69232.0,5,5,0,1,133.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020019644095216085,46154.666666666664,10,5,10,10_1,10_2,10_0_0 +18165,2,51.0,0.0,2,111,500.0,,,68,52,0.0,0.0,,584.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,118184,2,2,0,0,2,,330.0,,43,3.0,2.0,7.0,5.0,2.5999999999999996,3,3,113.36184180183287,500.0,57758.93892535887,1,1,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010110989067072296,22214.976509753415,6,3,6,6_1,6_2,6_0_1 +18166,2,62.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1311.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118185,1,2,0,0,2,,70.0,302.0,11,0.0,1.0,2.0,1.0,1.0,1,1,703.488319714643,0.0,14671.934791553667,0,5,2,3,40.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08935426844690694,14671.934791553667,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +18167,2,60.0,0.0,2,300,620.0,0.0,0.0,75,75,527.3414255183008,291.3520009422493,1057.224336890678,1490.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,118186,2,1,1,0,1,,353.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,831.376084346072,620.0,28181.85030932653,5,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052870907468658926,18787.900206217688,5,3,5,5_1,5_0,5_0_1 +18168,1,22.0,353.0,9,111,300.0,,,0,67,0.0,0.0,,350.0,69.27946126982604,,43,0,0,0,0,0,0,0,0,0,,2,2007.0,6,118187,2,1,0,0,2,,800.0,420.0,22,1.0,0.0,4.0,3.0,1.8,2,2,82.99266589510688,300.0,14690.7694541429,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023824483876935226,8161.538585634944,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +18169,2,55.0,0.0,1,112,1870.0,0.0,0.0,0,52,0.0,0.0,3188.7250161057545,1870.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,118188,2,1,2,0,1,,300.0,,22,2.0,2.0,5.0,6.0,2.6999999999999997,2,2,605.784202064372,1870.0,42754.20776867893,0,1,0,1,120.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04373838500569605,15834.891766177381,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +18170,2,66.0,0.0,5,111,420.0,,,72,77,0.0,0.0,,580.0,221.69427606344334,,60,0,0,0,0,0,0,0,0,0,,1,,3,118189,2,2,0,0,2,,462.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,100.38879685985447,420.0,29574.486365176308,5,5,0,1,129.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0196114986694391,19716.324243450872,5,3,5,5_1,5_2,5_0_0 +18171,2,91.0,0.0,2,111,370.0,2300.0,0.0,0,74,0.0,66.2163638505112,630.9242010476627,2720.0,0.0,4366.559310261515,41,0,0,0,0,0,0,0,0,0,,1,,2,118190,2,2,3,0,1,,360.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,583.894855872245,370.0,45410.652298349836,0,5,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059897840315736695,45410.652298349836,10,5,10,10_1,10_4,10_0_1 +18172,2,72.0,0.0,2,111,306.0,1171.0,0.0,72,77,0.0,0.0,521.7913662718507,1477.0,0.0,2223.148240137493,50,0,0,0,0,0,0,0,0,0,,1,,2,118191,2,2,2,0,1,,239.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1367.61591031967,306.0,27152.06725817954,5,5,0,1,110.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05439733136912641,18101.378172119694,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +18173,2,75.0,0.0,1,111,139.0,1449.0,0.0,0,72,0.0,0.0,237.0228755287165,1588.0,0.0,2750.932365464754,50,0,0,0,0,0,0,0,0,0,,1,,1,118192,2,1,2,0,1,,246.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1240.0136073285,139.0,18104.999548494823,0,5,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08771057937596137,18104.999548494823,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +18174,2,80.0,0.0,2,111,400.0,,,0,77,0.0,0.0,,532.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,2,118193,2,1,0,0,2,,200.0,509.0,11,0.0,0.0,5.0,1.0,1.0,1,1,100.40777716030985,400.0,18717.46651908171,0,5,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028422650012898232,18717.46651908171,5,3,5,5_0,5_3,5_0_1 +18175,2,97.0,0.0,2,111,400.0,1700.0,0.0,0,78,0.0,0.0,682.0802173488245,2100.0,0.0,3227.4568814976415,71,0,0,0,0,0,0,0,0,0,,1,,2,118194,2,1,3,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1348.42680198276,400.0,11388.608693476659,0,5,0,1,70.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18439478047945138,11388.608693476659,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +18176,2,78.0,0.0,1,111,180.0,1136.0,0.0,0,74,0.0,0.0,306.936097806971,1316.0,0.0,2156.7005984596003,20,0,0,0,0,0,0,0,0,0,,2,,1,118195,1,3,0,0,1,,106.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1479.48915958691,180.0,36585.21773804899,0,5,0,1,71.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03597081229426023,36585.21773804899,9,5,9,9_0,9_3,9_1_0 +18177,2,30.0,0.0,1,111,0.0,0.0,350.0,0,46,0.0,0.0,220.61140164516033,350.0,0.0,418.8562516476383,31,0,0,0,0,0,0,0,0,0,,2,,1,118196,2,1,0,1,1,,0.0,,22,2.0,0.0,2.0,2.0,1.5,2,2,716.615514423257,0.0,54740.21686659213,0,1,1,2,39.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006393836561754736,36493.47791106142,9,5,9,9_0,9_4,9_1_0 +18178,2,78.0,0.0,5,111,333.0,0.0,0.0,77,78,738.277995725621,0.0,567.8317809428963,1098.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118197,2,1,3,0,1,,160.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1435.11524589844,333.0,30760.024518885562,5,5,0,1,75.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035695680259483116,20506.683012590376,5,3,5,5_1,5_2,5_0_0 +18179,2,64.0,0.0,5,111,630.0,,,77,63,0.0,132.4327277010224,,818.0,121.93185183489385,,70,0,0,0,0,0,0,0,0,0,,1,,3,118198,1,2,0,0,2,,360.0,750.0,42,1.0,1.0,4.0,2.0,1.5,2,2,177.14679774182213,630.0,50465.63539216868,6,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016209049854288334,33643.75692811245,9,5,9,9_1,9_2,9_0_0 +18180,2,90.0,0.0,2,111,500.0,0.0,0.0,75,75,2098.818873562837,0.0,852.6002716860306,2590.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118199,2,1,1,0,1,,110.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2342.68477473269,500.0,47969.78229857103,5,5,0,1,90.0,8,6,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05399232341475841,31979.85486571402,8,4,8,8_1,8_2,8_0_1 +18181,2,25.0,0.0,2,221,450.0,,,0,63,0.0,0.0,,582.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,118200,2,2,0,0,2,,1344.0,,22,3.0,1.0,4.0,3.0,2.0,3,3,96.89953885305562,450.0,46344.08933532076,0,1,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012558235760961076,23172.04466766038,6,3,6,6_1,6_1,6_0_1 +18182,2,42.0,0.0,1,111,320.0,0.0,0.0,0,37,0.0,0.0,545.6641738790596,320.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,35.0,2,,1,118201,2,1,0,1,1,433.0,0.0,1140.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1095.10109867056,320.0,44717.12171350859,0,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007156095646096364,44717.12171350859,10,5,10,10_0,10_4,10_1_0 +18183,2,40.0,0.0,2,111,0.0,,,0,42,0.0,0.0,,731.0,0.0,,42,0,0,0,0,0,0,0,0,2,25.0,2,,2,118202,2,2,0,0,2,,383.0,250.0,32,1.0,0.0,4.0,2.0,1.3,1,1,89.66313376979859,0.0,25064.18047230969,0,1,2,3,81.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02916512673564537,19280.138824853606,5,3,5,5_0,5_3,5_0_1 +18184,1,56.0,210.0,9,111,225.0,,,0,78,0.0,0.0,,313.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,118203,2,1,0,0,1,,160.0,295.0,11,0.0,7.0,2.0,1.0,1.0,1,1,171.52255259671256,225.0,7150.734720172157,0,7,2,3,48.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.043771725878325465,7150.734720172157,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +18185,1,43.0,200.0,7,111,360.0,,,55,22,0.0,0.0,,444.0,116.38949493330776,,31,0,0,0,0,0,0,0,0,0,,1,,5,118204,2,1,0,0,2,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,93.66466715875579,360.0,4200.101349635061,4,1,1,2,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10571173479863251,2800.0675664233736,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +18186,2,78.0,0.0,5,221,600.0,0.0,0.0,0,86,0.0,794.5963662061343,1023.1203260232367,1650.0,623.5151514284345,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,118205,2,2,3,0,2,,320.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1043.3104255936,600.0,13567.869013103924,0,5,0,1,100.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.12161084385517142,13567.869013103924,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +18187,2,34.0,0.0,5,111,369.0,,,0,52,0.0,0.0,,621.0,349.1684847999233,,31,0,0,0,0,0,0,0,0,0,,1,,3,118206,1,3,0,0,2,,128.0,,22,2.0,3.0,7.0,3.0,2.0,3,3,120.63890202160825,369.0,17665.14921822038,0,4,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035153962886397896,8832.57460911019,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18188,1,63.0,137.0,2,111,350.0,300.0,0.0,0,77,0.0,0.0,596.8201901802214,650.0,0.0,569.5512143819367,70,2,2,2,1,2,2,2,2,0,,2,,2,118207,1,1,0,2,1,768.0,480.0,212.0,11,0.0,3.0,2.0,1.0,1.0,1,1,271.329226452421,350.0,9518.895540300873,0,5,2,3,46.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.0682852330134358,9518.895540300873,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18189,2,29.0,0.0,1,111,1800.0,0.0,0.0,52,46,0.0,0.0,3069.36097806971,1920.0,166.2707070475825,0.0,20,2,2,1,1,1,2,2,2,2,35.0,8,,1,118208,2,3,0,0,1,,354.0,570.0,43,2.0,0.0,4.0,3.0,1.8,2,2,683.244673368903,1800.0,40409.2577446161,1,1,2,3,110.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.04751386457366468,22449.587635897835,6,3,6,6_0,6_3,6_1_0 +18190,1,46.0,215.0,2,111,700.0,0.0,0.0,0,21,0.0,0.0,1193.6403803604428,894.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118209,2,1,0,1,1,,0.0,511.0,32,2.0,1.0,4.0,2.0,1.5,2,2,219.609488567493,700.0,23357.710985624137,0,1,2,3,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038274298391234744,15571.807323749425,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +18191,2,77.0,0.0,8,111,240.0,,,0,77,0.0,0.0,,284.0,60.965925917446924,,70,0,0,0,0,0,0,0,0,0,,1,2002.0,6,118210,2,2,0,0,2,,230.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,105.4189948180749,240.0,13141.764010750378,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02161049306376823,13141.764010750378,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +18192,2,28.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1434.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,118211,2,1,0,0,1,,145.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2031.80800613498,0.0,19719.302865362697,0,1,2,3,52.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07272062353273381,19719.302865362697,5,3,5,5_0,5_2,5_0_1 +18193,2,56.0,0.0,1,111,1030.0,100.0,0.0,0,56,0.0,79.45963662061344,1756.356559673223,1327.0,189.82572387932336,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,118212,2,1,1,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1542.44872295558,1030.0,17656.723500620978,0,1,0,1,80.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07515550662348709,17656.723500620978,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +18194,2,64.0,0.0,2,112,375.0,276.0,0.0,77,74,0.0,0.0,639.4502037645229,651.0,0.0,523.9871172313817,20,0,0,0,0,0,0,0,0,0,,2,,2,118213,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1117.62511883149,375.0,61947.16249133759,5,5,0,1,82.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010508955920152644,41298.108327558395,9,5,9,9_0,9_2,9_0_1 +18195,2,46.0,0.0,1,112,600.0,0.0,0.0,46,54,0.0,0.0,1023.1203260232367,700.0,138.5589225396521,0.0,20,2,2,2,2,1,2,2,2,2,90.0,1,,1,118214,2,3,2,0,1,,420.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1183.48056971428,600.0,51997.246592204654,1,1,0,1,120.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.013462251289762387,24760.593615335547,7,4,7,7_1,7_1,7_1_0 +18196,2,69.0,0.0,2,111,425.0,910.0,0.0,75,75,0.0,1721.6254601132912,724.710230933126,2635.0,0.0,1727.638683625208,50,0,0,0,0,0,0,0,0,0,,1,,2,118215,2,1,1,0,1,,320.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1254.08292388139,425.0,45105.90939562245,5,5,0,1,118.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05841806617595272,30070.6062637483,8,4,8,8_1,8_3,8_0_1 +18197,2,85.0,0.0,1,300,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2928.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,118216,2,1,3,0,2,,237.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,810.350178836299,0.0,101155.47792352617,0,5,0,1,150.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028945540667738988,101155.47792352617,10,5,10,10_1,10_0,10_1_0 +18198,2,60.0,0.0,5,221,800.0,0.0,0.0,52,78,0.0,0.0,1364.160434697649,1000.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118217,2,2,3,0,1,,140.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1537.28022957153,800.0,30085.710080282795,1,5,0,1,120.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03323837121781506,20057.140053521864,5,3,5,5_1,5_1,5_0_0 +18199,2,62.0,0.0,5,111,410.0,1170.0,0.0,75,78,0.0,0.0,699.1322227825451,1580.0,0.0,2221.249736089553,70,0,0,0,0,0,0,0,0,0,,1,,3,118218,1,1,3,0,2,,430.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,826.282349586731,410.0,27579.29333003619,5,5,0,1,97.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057289357674703216,18386.195553357462,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +18200,1,34.0,275.0,9,300,2127.0,0.0,0.0,55,42,0.0,0.0,3626.961555752374,2187.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,118219,2,1,1,0,1,,1000.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,702.75981320608,2127.0,32997.75685111304,1,1,1,2,140.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06627723241515525,13749.065354630433,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +18201,2,42.0,0.0,1,111,1500.0,0.0,0.0,37,53,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,2,2,2,1,1,2,2,2,2,30.0,1,,1,118220,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,454.954892098085,1500.0,68539.2522838056,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,1,0,0,0.021885269389704427,26361.250878386774,7,4,7,7_1,7_4,7_1_0 +18202,2,47.0,0.0,2,111,2600.0,0.0,0.0,34,37,0.0,0.0,4433.521412767359,2600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,118221,2,2,5,0,1,,600.0,1030.0,43,2.0,0.0,4.0,4.0,2.3,3,2,1272.61326995455,2600.0,58876.25609647259,1,1,2,3,130.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04416041664979054,25598.37221585765,7,4,7,7_1,7_2,7_0_1 +18203,2,45.0,0.0,7,112,710.0,944.0,0.0,43,43,0.0,264.8654554020448,1210.6923857941633,1854.0,0.0,1792.1878212551608,33,0,0,0,0,0,0,0,0,2,10.0,1,,5,118222,2,2,2,0,1,,515.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,694.66337448763,710.0,77820.82162630405,1,1,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023823958180535752,27793.150580822876,7,4,7,7_1,7_1,7_0_0 +18204,2,64.0,0.0,5,111,240.0,0.0,0.0,0,68,0.0,0.0,409.2481304092947,257.0,0.0,0.0,71,1,1,2,2,1,2,2,2,3,30.0,2,,3,118223,1,2,0,1,1,670.0,140.0,264.0,22,2.0,0.0,3.0,2.0,1.5,2,2,377.549599285749,240.0,29723.61330413347,0,1,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.00864632430015703,19815.742202755646,5,3,5,5_0,5_3,5_0_0 +18205,2,50.0,0.0,8,111,1500.0,0.0,0.0,43,34,0.0,476.7578197236806,2557.8008150580918,1860.0,0.0,0.0,10,1,2,2,2,1,2,2,2,1,20.0,1,2001.0,6,118224,1,1,1,0,1,,420.0,,43,2.0,0.0,6.0,5.0,2.8,5,4,2538.39543323915,1500.0,77602.65973223561,1,1,1,2,155.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.023968250655555415,27715.235618655577,7,4,7,7_1,7_3,7_0_0 +18206,2,48.0,0.0,6,112,600.0,1000.0,0.0,62,37,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,10,0,0,0,0,0,0,0,0,0,,1,,4,118225,2,1,2,0,1,,340.0,,43,2.0,2.0,4.0,3.0,2.0,3,3,1063.39561252644,600.0,102545.0,1,1,0,1,110.0,7,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015602906041250184,51272.5,10,5,10,10_1,10_2,10_0_0 +18207,2,45.0,0.0,9,112,0.0,,,0,35,0.0,52.973091080408956,,103.0,87.29212119998083,,30,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,118226,2,1,0,0,2,,160.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,185.24183233946246,0.0,23594.341637334644,0,1,0,1,45.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004365453445711634,23594.341637334644,6,3,6,6_1,6_2,6_0_0 +18209,1,65.0,125.0,2,111,79.0,400.0,0.0,86,78,0.0,0.0,134.71084292639284,479.0,0.0,759.4016191759156,71,2,2,1,2,2,2,2,1,0,,2,,2,118228,2,1,0,1,1,,130.0,400.0,41,0.0,0.0,4.0,2.0,1.5,2,2,221.435732676478,79.0,17379.15763314264,5,5,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027561750121106607,11586.10508876176,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +18210,1,25.0,195.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,636.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118229,2,2,0,0,1,,0.0,235.0,12,1.0,0.0,2.0,1.0,1.0,1,1,429.971692472372,0.0,7942.973958824841,0,4,2,3,44.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08007076484159793,7942.973958824841,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18211,2,69.0,0.0,5,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,716.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,118230,2,1,0,1,1,,0.0,617.0,11,0.0,3.0,2.0,1.0,1.0,1,1,766.398666623637,0.0,33719.181849357425,0,5,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021234204412158494,33719.181849357425,9,5,9,9_0,9_4,9_0_0 +18212,2,40.0,0.0,9,120,1233.0,0.0,0.0,56,48,0.0,0.0,2102.512269977751,1233.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,118231,2,1,1,0,1,,553.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,507.222832846124,1233.0,61388.629912955876,1,4,1,2,111.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020085152604778677,29232.68091093137,8,4,8,8_1,8_0,8_0_0 +18213,1,26.0,100.0,1,111,1500.0,350.0,0.0,0,37,0.0,0.0,2557.8008150580918,1850.0,0.0,664.4764167789261,10,0,0,0,0,0,0,0,0,3,80.0,2,,1,118232,1,3,0,0,1,,0.0,750.0,12,1.0,0.0,3.0,1.0,1.0,1,1,999.665833427593,1500.0,20180.81103706117,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0916712413887904,20180.81103706117,5,3,5,5_0,5_4,5_1_0 +18214,2,80.0,0.0,2,111,609.0,,,0,71,0.0,0.0,,853.0,338.0837709967511,,71,0,0,0,0,0,0,0,0,0,,1,,2,118233,2,2,0,0,2,,420.0,,21,1.0,8.0,4.0,2.0,1.5,2,2,84.66932140342483,609.0,17239.988106346653,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04947799237088687,11493.325404231102,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +18215,1,44.0,100.0,2,111,0.0,0.0,0.0,68,21,0.0,0.0,0.0,1457.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,118234,2,1,2,0,1,,374.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1327.17699211394,0.0,23753.77121915629,4,1,1,2,90.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06133762873092752,10327.726617024475,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +18216,2,71.0,0.0,5,112,1800.0,0.0,0.0,90,74,4746.072829664707,0.0,3069.36097806971,6300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,118235,2,1,1,0,1,,1200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1069.7627367242,1800.0,71122.49098039516,5,5,0,1,149.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08857957466276861,47414.99398693011,10,5,10,10_1,10_0,10_0_0 +18217,2,67.0,0.0,1,111,560.0,700.0,0.0,77,75,0.0,927.0290939071567,954.9123042883542,1960.0,0.0,1328.9528335578523,70,0,0,0,0,0,0,0,0,0,,1,,1,118236,2,1,2,0,1,,300.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,502.057926518071,560.0,17902.722232922744,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10948055689517427,11935.14815528183,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +18218,2,81.0,0.0,2,111,476.0,1407.0,0.0,0,74,0.0,0.0,811.6754586451011,1883.0,0.0,2671.1951954512833,60,2,2,2,2,1,2,2,2,0,,1,,2,118237,2,2,2,0,1,,230.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,569.588345305242,476.0,45222.05497112908,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04163897463753373,45222.05497112908,10,5,10,10_1,10_4,10_0_1 +18219,2,49.0,0.0,2,221,0.0,0.0,0.0,45,43,0.0,0.0,0.0,895.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,2,118238,1,2,3,0,2,,326.0,380.0,43,3.0,1.0,6.0,4.0,2.5,4,3,1258.4219915845,0.0,72594.91336448677,1,1,2,3,110.0,1,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.012328687486771375,29037.965345794706,8,4,8,8_1,8_1,8_0_1 +18220,1,21.0,71.0,6,111,220.0,0.0,0.0,0,55,0.0,0.0,375.14411954185346,220.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,2,,4,118239,2,1,0,1,1,299.0,115.0,315.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2102.79435578419,220.0,11534.19088420472,0,1,2,3,32.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019073726298502208,11534.19088420472,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +18221,0,66.0,0.0,7,211,600.0,,,0,86,0.0,0.0,,613.0,18.012659930154772,,71,0,0,0,0,0,0,0,0,0,,1,,5,118240,1,2,0,0,2,,0.0,,21,0.0,0.0,4.0,3.0,2.0,3,1,26.085281509746498,600.0,9448.669963636365,0,5,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06487685593413235,4724.334981818182,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18222,0,30.0,0.0,2,111,240.0,0.0,0.0,0,48,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,118241,1,1,0,1,2,1250.0,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1389.26391699164,240.0,29331.0,0,1,5,0,55.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008182469060038867,29331.0,8,4,8,8_0,8_3,8_0_1 +18223,2,62.0,0.0,8,120,830.0,0.0,0.0,77,77,0.0,291.3520009422493,1415.3164509988108,1050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,118242,2,1,2,0,1,,200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2308.69734612158,830.0,36443.29504881791,5,5,0,1,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028811884287451614,24295.530032545274,7,4,7,7_1,7_0,7_0_0 +18224,1,38.0,166.0,8,111,720.0,,,52,52,0.0,0.0,,845.0,173.19865317456512,,43,0,0,0,0,0,0,0,0,1,15.0,2,2000.0,6,118243,2,1,0,0,2,,500.0,444.0,43,2.0,0.0,3.0,3.0,1.8,2,2,120.96655883270049,720.0,40052.028519013016,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02109755813238952,22251.126955007232,6,3,6,6_0,6_3,6_0_0 +18225,2,72.0,0.0,1,211,600.0,1350.0,0.0,78,78,0.0,0.0,1023.1203260232367,1950.0,0.0,2562.980464718715,71,2,2,2,2,1,2,2,2,0,,1,,1,118244,2,3,2,0,1,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1867.00557837082,600.0,29929.59958921,5,5,1,2,160.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.06515289301441239,19953.066392806668,5,3,5,5_1,5_1,5_1_0 +18226,2,61.0,0.0,6,112,1764.0,0.0,0.0,0,75,0.0,0.0,3007.9737585083158,1828.0,88.67771042537734,0.0,33,2,2,2,2,1,2,2,2,0,,1,,4,118245,2,2,1,0,1,,120.0,,21,0.0,1.0,3.0,2.0,1.5,2,2,1169.46220155421,1764.0,33932.829172193364,0,5,0,1,71.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.053871134373256885,22621.886114795576,6,3,6,6_1,6_0,6_0_0 +18227,2,88.0,0.0,5,120,1000.0,0.0,0.0,0,75,2109.365702073203,0.0,1705.2005433720612,3050.0,69.27946126982604,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,118246,2,1,2,0,2,,580.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1895.57885162321,1000.0,18225.035396593958,0,5,0,1,100.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.16735221269145018,18225.035396593958,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +18228,2,68.0,0.0,6,111,3000.0,0.0,0.0,34,74,0.0,26.486545540204478,5115.6016301161835,3020.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,118247,2,1,1,0,1,,616.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,993.120963315982,3000.0,46461.905782452566,5,5,0,1,225.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06499948611967127,30974.603854968376,8,4,8,8_1,8_4,8_0_0 +18229,2,40.0,0.0,2,112,4046.3,0.0,0.0,0,65,1044.1360225262356,0.0,6899.752958646372,5071.0,48.49562288887823,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,,2,118248,2,1,2,0,1,,241.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,755.909621996973,4046.3,39690.4324285235,0,1,1,2,89.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1277637881404318,39690.4324285235,9,5,9,9_1,9_0,9_0_1 +18230,0,55.0,0.0,2,120,0.0,0.0,972.0,62,77,0.0,0.0,612.669378283131,972.0,0.0,1163.2236474328697,70,2,2,2,2,1,2,2,2,0,,2,,2,118249,2,3,0,1,1,,828.0,,42,2.0,0.0,4.0,4.0,2.5,4,3,272.724524078444,0.0,42693.82859617671,4,7,5,0,70.0,0,2,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.022766756506982462,17077.531438470683,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +18231,2,40.0,0.0,9,300,715.0,0.0,0.0,0,37,0.0,0.0,1219.2183885110237,747.0,44.33885521268867,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,118250,2,1,1,0,1,,85.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1380.07991358524,715.0,36298.41896083867,0,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020579408728680908,36298.41896083867,9,5,9,9_1,9_0,9_0_0 +18232,2,73.0,0.0,1,112,1346.0,0.0,0.0,0,75,0.0,0.0,2295.199931378794,1346.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,118251,2,1,2,0,1,,135.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1769.24368280645,1346.0,38090.9328650419,0,5,0,1,90.0,7,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.035336493458139925,38090.9328650419,9,5,9,9_1,9_1,9_1_0 +18233,0,93.0,0.0,9,120,250.0,,,86,78,0.0,0.0,,376.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,118252,2,1,0,0,2,,0.0,,41,0.0,6.0,3.0,2.0,1.5,2,2,121.45691924164025,250.0,7243.913052840209,6,5,5,0,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05190564785321065,4829.275368560139,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18234,2,58.0,0.0,1,112,238.0,0.0,0.0,56,63,0.0,529.7309108040896,405.83772932255056,713.0,103.91919190473907,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,118253,2,2,2,0,1,,60.0,,43,3.0,2.0,8.0,6.0,3.3,5,4,1182.65123814078,238.0,27723.174348223052,1,1,1,2,200.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.025718555568139713,8400.961923703955,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +18235,2,20.0,0.0,7,120,600.0,,,0,67,0.0,0.0,,830.0,318.68552184119983,,50,0,0,0,0,0,0,0,0,3,45.0,1,,5,118254,2,2,0,0,2,,400.0,,22,3.0,0.0,3.0,5.0,2.5999999999999996,3,3,69.27411830878252,600.0,27286.53617730429,0,1,0,1,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030417931928287643,10494.821606655498,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +18236,1,37.0,24.0,1,300,1760.0,0.0,0.0,22,47,0.0,0.0,3001.1529563348276,1820.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,65.0,1,,1,118255,2,1,2,0,1,,93.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1086.93668706584,1760.0,32078.309804633915,4,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05673615633380689,15275.385621254245,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +18237,2,47.0,0.0,5,212,2000.0,0.0,0.0,0,48,0.0,0.0,3410.4010867441225,2060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,118256,2,2,0,0,1,,120.0,540.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1111.27851686636,2000.0,31987.818711808242,0,1,2,3,90.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06439951465773297,31987.818711808242,8,4,8,8_0,8_0,8_0_0 +18238,2,39.0,0.0,2,111,3600.0,370.0,0.0,38,38,0.0,0.0,6138.72195613942,3970.0,0.0,702.446497737722,10,0,0,0,0,0,0,0,0,2,60.0,1,,2,118257,2,1,1,0,1,,127.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,2729.89703031055,3600.0,107573.09667302092,1,1,1,2,180.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03690513820632317,51225.28413000996,10,5,10,10_1,10_3,10_0_1 +18239,2,62.0,0.0,1,111,527.0,1605.0,0.0,0,78,0.0,0.0,898.6406863570762,2132.0,0.0,3047.0989969433613,70,0,0,0,0,0,0,0,0,0,,1,,1,118258,2,1,3,0,1,,204.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,459.70948936389,527.0,11471.432876160827,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.18585298131592448,11471.432876160827,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +18240,2,53.0,0.0,7,111,780.0,,,0,52,0.0,0.0,,860.0,110.84713803172167,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,118259,2,1,0,0,2,,900.0,877.0,32,1.0,2.0,4.0,2.0,1.5,2,2,85.12465466363705,780.0,29744.316868917176,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028913086280986346,19829.544579278117,5,3,5,5_1,5_2,5_0_0 +18241,1,36.0,42.0,2,111,1240.0,0.0,0.0,85,34,0.0,0.0,2114.448673781356,1240.0,0.0,0.0,10,2,2,2,2,1,2,2,1,3,48.0,2,,2,118260,2,3,0,0,1,,0.0,481.0,42,1.0,0.0,4.0,4.0,2.1,2,2,839.44934692291,1240.0,32303.762616566568,6,1,2,3,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03838562135062502,15382.744103126937,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +18242,2,51.0,0.0,2,111,0.0,0.0,370.0,0,37,0.0,0.0,233.2177674534552,370.0,0.0,442.7908945989319,50,0,0,0,0,0,0,0,0,0,,2,,2,118261,2,1,0,1,2,,0.0,,32,3.0,0.0,6.0,3.0,2.0,3,3,676.523779738782,0.0,80721.47632261514,0,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004583662450885327,40360.73816130757,9,5,9,9_0,9_4,9_0_1 +18243,2,65.0,0.0,1,111,230.0,400.0,0.0,0,75,0.0,0.0,392.1961249755741,630.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,1,,1,118262,1,1,2,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,907.814074085184,230.0,21718.13856177425,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02900801089412207,21718.13856177425,6,3,6,6_1,6_4,6_1_0 +18244,2,60.0,0.0,7,112,564.0,,,85,71,0.0,0.0,,702.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,5,118263,2,2,0,0,2,,200.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,74.64133906607897,564.0,16071.997066262844,6,5,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043678454961492426,10714.664710841897,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18245,2,66.0,0.0,8,111,480.0,,,85,55,0.0,0.0,,664.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,118264,2,1,0,0,2,,240.0,,42,1.0,0.0,3.0,3.0,2.0,3,3,97.26204274813641,480.0,9406.586299854878,6,1,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07058883837702568,4703.293149927439,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18246,2,33.0,0.0,7,111,1000.0,0.0,0.0,0,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,40.0,1,,5,118265,2,2,5,0,1,,0.0,579.0,12,1.0,0.0,3.0,1.0,1.0,1,1,371.320515716633,1000.0,26464.01949822646,0,1,2,3,95.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03778715474673139,26464.01949822646,7,4,7,7_1,7_3,7_0_0 +18247,2,72.0,0.0,2,120,250.0,,,0,78,0.0,0.0,,338.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,118266,2,1,0,0,2,,260.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,104.77386079650054,250.0,12053.31531494387,0,5,0,1,102.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028042077318009166,12053.31531494387,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +18248,2,73.0,0.0,2,111,670.0,,,0,72,0.0,0.0,,745.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,0,,1,,2,118267,2,2,0,0,2,,270.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,87.69514282113784,670.0,9420.699617834394,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07908117552008931,9420.699617834394,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +18249,1,55.0,300.0,1,211,600.0,0.0,0.0,78,68,0.0,254.270837185963,1023.1203260232367,811.0,26.3261952825339,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,118268,2,1,2,0,1,,1200.0,500.0,42,1.0,4.0,3.0,2.0,1.5,2,2,1453.31960004427,600.0,17715.768472711126,7,1,2,3,40.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04577842622233643,11810.512315140752,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +18250,2,85.0,0.0,2,111,200.0,210.0,0.0,0,77,0.0,0.0,341.04010867441224,410.0,0.0,398.6858500673557,71,0,0,0,0,0,0,0,0,0,,2,,2,118269,2,2,0,1,1,520.0,0.0,243.0,11,0.0,0.0,3.0,1.0,1.0,1,1,483.485046859126,200.0,18527.011703131448,0,5,2,3,59.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022129850543069585,18527.011703131448,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +18251,1,43.0,255.0,5,111,126.0,300.0,0.0,0,85,0.0,0.0,214.8552684648797,426.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,3,118270,2,1,0,1,1,624.0,140.0,261.0,11,0.0,3.0,2.0,1.0,1.0,1,1,337.890347977144,126.0,9902.114902985624,0,7,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04302111257783477,9902.114902985624,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +18252,1,53.0,336.0,2,111,270.0,730.0,0.0,0,63,0.0,0.0,460.40414671045653,1000.0,0.0,1385.9079549960459,30,2,2,2,2,1,2,2,2,0,,2,,2,118271,2,1,0,0,1,,280.0,384.0,32,1.0,5.0,4.0,2.0,1.3,1,1,1271.55452614223,270.0,8935.824174418622,0,4,2,3,74.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.1119090953985855,6873.710903398939,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18253,1,54.0,255.0,1,111,0.0,0.0,240.0,52,65,0.0,0.0,151.2763896995385,240.0,0.0,287.2157154155234,71,0,0,0,0,0,0,0,0,0,,2,,1,118272,2,1,0,1,1,600.0,0.0,407.0,43,2.0,0.0,5.0,4.0,2.1,3,2,446.04733512461,0.0,20711.57333970617,4,4,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.011587724218898227,9862.653971288652,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +18254,0,44.0,0.0,9,300,600.0,,,0,11,0.0,0.0,,770.0,235.55016831740858,,71,0,0,0,0,0,0,0,0,1,5.0,1,2006.0,6,118273,2,1,0,0,2,,115.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,108.8969086470904,600.0,11441.705875119533,0,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06729765722036232,11441.705875119533,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +18255,2,42.0,0.0,8,111,542.0,771.0,0.0,33,38,0.0,0.0,924.2186945076571,1313.0,0.0,1463.7466209615773,31,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,118274,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1449.42046974156,542.0,100444.18802677392,1,1,1,2,72.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013071936025308034,55802.32668154106,10,5,10,10_0,10_2,10_0_0 +18256,2,75.0,0.0,2,111,1455.0,,,77,77,0.0,0.0,,1662.0,286.8169696570798,,70,0,0,0,0,0,0,0,0,0,,1,,2,118275,2,1,0,0,2,,1336.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,119.23676500534783,1455.0,65768.29446607137,5,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025270535194696204,32884.147233035685,8,4,8,8_1,8_2,8_0_1 +18257,2,85.0,0.0,7,111,300.0,803.0,0.0,0,77,0.0,0.0,511.56016301161833,1103.0,0.0,1524.4987504956505,60,0,0,0,0,0,0,0,0,0,,1,,5,118276,2,2,2,0,1,,0.0,528.0,11,0.0,1.0,3.0,1.0,1.0,1,1,747.404940458542,300.0,31941.944331658346,0,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03453139823134665,31941.944331658346,8,4,8,8_1,8_4,8_0_0 +18258,2,48.0,0.0,2,111,1300.0,0.0,0.0,37,54,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,2,118277,2,1,1,0,1,,853.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,1572.48893365619,1300.0,92691.77255893256,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014024977234883195,46345.88627946628,10,5,10,10_1,10_3,10_0_1 +18259,2,72.0,0.0,5,111,390.0,810.0,0.0,75,75,0.0,0.0,665.0282119151038,1200.0,0.0,1537.788278831229,41,0,0,0,0,0,0,0,0,0,,1,,3,118278,2,2,1,0,1,,215.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,971.127581662857,390.0,70081.02468821804,5,5,0,1,125.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017123037303444895,46720.68312547869,10,5,10,10_1,10_3,10_0_0 +18260,1,43.0,454.0,2,111,850.0,900.0,0.0,85,37,0.0,0.0,1449.420461866252,1750.0,0.0,1708.65364314581,41,2,2,2,2,1,2,2,2,0,,2,,2,118279,2,3,0,0,1,,0.0,394.0,42,1.0,0.0,4.0,7.0,3.6,5,3,331.189500597597,850.0,19206.800112906778,6,4,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.09111356341049322,5335.222253585216,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18261,2,46.0,0.0,9,111,200.0,0.0,0.0,0,63,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,118280,2,1,0,1,1,380.0,0.0,322.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2096.54152224574,200.0,17269.497489338,0,1,2,3,45.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011581112891297377,17269.497489338,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +18262,2,27.0,0.0,6,111,0.0,0.0,0.0,81,68,0.0,0.0,0.0,268.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,118281,2,1,0,1,1,,428.0,110.0,43,2.0,0.0,3.0,2.0,1.5,2,2,256.527036626846,0.0,1456.4144473218569,4,4,2,3,60.0,5,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.18401355499652908,970.9429648812379,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +18263,2,48.0,0.0,7,111,600.0,1140.0,0.0,46,64,0.0,0.0,1023.1203260232367,1740.0,0.0,2164.2946146513596,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,118282,2,1,1,0,1,,552.0,702.0,43,2.0,0.0,4.0,5.0,2.4,2,2,714.41872527064,600.0,50821.91655967911,1,1,2,3,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03423719760660254,21175.798566532965,5,3,5,5_1,5_4,5_0_0 +18264,2,88.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2602.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118283,1,1,2,0,2,,192.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,321.302529875339,0.0,16269.045856530203,0,5,0,1,100.0,4,4,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15993562394168234,16269.045856530203,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +18265,2,46.0,0.0,2,111,396.0,0.0,0.0,0,68,0.0,0.0,675.2594151753362,396.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,118284,2,1,0,1,1,560.0,0.0,306.0,12,1.0,0.0,2.0,1.0,1.0,1,1,330.70231936883,396.0,4910.892408916119,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08063707510289377,4910.892408916119,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +18266,2,59.0,0.0,1,111,0.0,0.0,2400.0,75,43,0.0,0.0,1512.763896995385,3120.0,0.0,2872.157154155234,33,0,0,0,0,0,0,0,0,0,,1,,1,118285,2,1,1,0,1,,240.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,1400.94887088933,0.0,141806.21231730166,5,1,0,1,108.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02200185696391618,94537.4748782011,10,5,10,10_1,10_2,10_1_0 +18267,2,78.0,0.0,2,400,460.0,1055.0,0.0,86,78,0.0,0.0,784.3922499511482,1515.0,0.0,2002.9217705764775,71,0,0,0,0,0,0,0,0,0,,1,,2,118286,2,1,1,0,1,,306.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2254.02600725214,460.0,20826.552899841165,5,5,0,1,60.0,0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07274367521528512,13884.36859989411,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +18268,0,46.0,0.0,2,211,1200.0,0.0,0.0,0,22,1582.0242765549024,0.0,2046.2406520464733,2720.0,27.711784507930417,0.0,41,2,2,2,2,2,2,2,1,2,20.0,1,,2,118287,2,2,2,0,2,,0.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,736.377518400318,1200.0,58295.464831132456,0,1,5,0,200.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.0466588611631997,58295.464831132456,10,5,10,10_1,10_1,10_0_1 +18269,2,34.0,0.0,9,400,635.0,0.0,0.0,21,22,0.0,0.0,1082.8023450412588,755.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,118288,2,1,1,0,1,,388.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1181.48100311847,635.0,10592.317777223614,1,1,0,1,70.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07127807302226684,5043.960846296959,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +18270,2,73.0,0.0,7,111,500.0,1000.0,0.0,74,74,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,5,118289,1,2,2,0,1,,500.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,660.288534085707,500.0,52593.983347872585,5,5,0,1,153.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028520372569587366,35062.65556524839,9,5,9,9_1,9_4,9_0_0 +18271,2,46.0,0.0,2,111,308.0,96.0,0.0,78,52,0.0,0.0,525.2017673585948,404.0,0.0,182.25638860221974,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,118290,2,1,0,1,1,,190.0,503.0,42,1.0,1.0,4.0,2.0,1.5,2,2,313.131947881916,308.0,23699.1185099265,6,1,2,3,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01704704754443852,15799.412339950999,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +18272,2,51.0,0.0,9,111,575.0,0.0,0.0,46,47,0.0,254.270837185963,980.4903124389351,767.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,118291,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,1166.06220875448,575.0,60617.473664643236,1,1,1,2,125.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012653117222326165,20205.824554881077,5,3,5,5_1,5_2,5_0_0 +18273,2,63.0,0.0,1,111,450.0,1490.0,0.0,77,72,0.0,0.0,767.3402445174275,1940.0,0.0,2828.771031430286,50,0,0,0,0,0,0,0,0,0,,1,,1,118292,2,1,1,0,1,,200.0,,41,1.0,2.0,7.0,3.0,2.0,3,3,1532.46161246382,450.0,88986.45334575063,5,5,0,1,130.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021801071141269848,44493.22667287532,10,5,10,10_1,10_3,10_1_0 +18274,2,41.0,0.0,1,111,600.0,0.0,0.0,0,35,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,118293,2,1,2,0,1,,300.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,550.126510115653,600.0,26081.2219010698,0,1,1,2,130.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023005057135585708,26081.2219010698,7,4,7,7_1,7_3,7_1_0 +18275,2,77.0,0.0,7,111,400.0,0.0,0.0,75,72,0.0,463.51454695357836,682.0802173488245,840.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,118294,2,1,2,0,1,,88.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1082.4904747488,400.0,33767.50964612941,5,5,0,1,120.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0248759831211386,22511.673097419607,6,3,6,6_1,6_2,6_0_0 +18276,2,52.0,0.0,6,112,794.0,1025.0,0.0,0,46,0.0,0.0,1353.9292314374165,1819.0,0.0,1945.9666491382836,41,0,0,0,0,0,0,0,0,2,25.0,1,,4,118295,2,1,3,0,1,,537.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,861.260317493722,794.0,34280.1174680543,0,1,1,2,60.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053062828670150546,22853.41164536953,6,3,6,6_1,6_1,6_0_0 +18277,2,39.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1180.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,1.0,2,,2,118296,2,1,0,1,1,41.0,0.0,317.0,12,1.0,1.0,3.0,1.0,1.0,1,1,383.381172773918,0.0,18350.631302373113,0,1,2,3,62.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06430296487115415,18350.631302373113,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +18278,2,44.0,0.0,1,111,310.0,1545.0,0.0,0,56,0.0,0.0,528.612168445339,1855.0,0.0,2933.188754066974,44,0,0,0,0,0,0,0,0,2,5.0,2,,1,118297,1,2,0,0,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1966.15731296552,310.0,21179.420349685268,0,1,0,1,55.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08758502212868946,16291.861807450205,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +18279,2,53.0,0.0,5,111,0.0,0.0,0.0,43,38,0.0,66.2163638505112,0.0,2302.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,3,118298,2,1,2,0,1,,303.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,626.717202464089,0.0,167511.6577320251,1,1,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013742327138106403,79767.4560628691,10,5,10,10_1,10_4,10_0_0 +18280,2,57.0,0.0,8,111,590.0,1115.0,0.0,54,37,0.0,0.0,1006.0683205895161,1705.0,0.0,2116.832013452865,50,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,118299,2,1,1,0,1,,383.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,242.969698704225,590.0,62505.739879868415,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027277494887299768,31252.869939934208,8,4,8,8_1,8_4,8_0_0 +18281,2,74.0,0.0,2,111,130.0,90.0,0.0,0,90,0.0,0.0,221.67607063836795,220.0,0.0,170.865364314581,70,0,0,0,0,0,0,0,0,0,,2,,2,118300,2,1,0,1,1,429.0,0.0,228.0,11,0.0,2.0,2.0,1.0,1.0,1,1,470.573072422635,130.0,21522.461933837643,0,5,2,3,48.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0102218789224162,21522.461933837643,6,3,6,6_0,6_3,6_0_1 +18282,2,40.0,0.0,7,111,1080.0,0.0,0.0,0,46,0.0,0.0,1841.6165868418261,1095.0,20.783838380947813,0.0,50,2,2,2,2,1,2,2,2,2,20.0,2,,5,118301,2,3,0,0,1,,0.0,540.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2990.75394685686,1080.0,25441.941623107607,0,1,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.043039168009310576,25441.941623107607,7,4,7,7_0,7_3,7_0_0 +18283,2,67.0,0.0,2,111,0.0,0.0,697.0,0,77,0.0,0.0,439.3318484190764,697.0,0.0,834.1223068525825,71,2,2,2,2,1,2,2,2,0,,2,,2,118302,1,2,0,1,1,390.0,55.0,348.0,11,0.0,5.0,2.0,1.0,1.0,1,1,1322.40410824492,0.0,29414.942979552878,0,5,2,3,53.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.023695439439896368,29414.942979552878,8,4,8,8_0,8_2,8_0_1 +18284,1,39.0,360.0,8,111,960.0,,,0,54,0.0,0.0,,1210.0,346.39730634913025,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118303,1,2,0,0,2,,800.0,424.0,32,2.0,0.0,4.0,5.0,2.5999999999999996,3,1,78.35610501180722,960.0,18494.954207079645,0,4,2,3,54.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06542324930638793,7113.443925799865,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +18285,2,67.0,0.0,5,111,800.0,0.0,0.0,75,75,0.0,264.8654554020448,1364.160434697649,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118304,2,1,2,0,1,,302.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1139.58472734699,800.0,55273.45180193396,5,5,0,1,150.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018091868110270817,36848.96786795597,9,5,9,9_1,9_2,9_0_0 +18286,2,53.0,0.0,2,112,800.0,1200.0,0.0,85,37,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,4,50.0,1,,2,118305,2,1,2,0,1,,400.0,,42,3.0,0.0,5.0,4.0,2.5,4,4,807.144809158455,800.0,90378.08981291314,5,1,1,2,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022129257258480382,36151.23592516525,9,5,9,9_1,9_1,9_0_1 +18287,2,54.0,0.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2057.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,118306,2,1,1,0,1,,106.0,454.0,32,1.0,2.0,4.0,2.0,1.5,2,1,287.735764790902,0.0,16169.64884124886,0,1,2,3,76.0,5,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1272136470120849,10779.765894165907,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18288,2,75.0,0.0,5,111,273.0,80.0,0.0,78,75,0.0,0.0,465.5197483405727,353.0,0.0,151.8803238351831,70,0,0,0,0,0,0,0,0,0,,2,,3,118307,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1534.30925937096,273.0,25806.912360878672,5,5,0,1,92.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013678505784175921,17204.60824058578,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18289,2,53.0,0.0,1,112,500.0,0.0,0.0,0,42,3164.0485531098047,0.0,852.6002716860306,3500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,118308,2,1,1,0,1,,706.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1768.7473423732,500.0,43299.86730832194,0,1,0,1,80.0,8,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08083165648240506,43299.86730832194,9,5,9,9_1,9_1,9_1_0 +18290,2,61.0,0.0,6,300,400.0,0.0,0.0,74,34,2109.365702073203,198.6490915515336,682.0802173488245,2550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,118309,1,1,2,0,1,,315.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,832.529632937131,400.0,84255.29641414969,5,1,1,2,164.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030265159681661952,56170.197609433126,10,5,10,10_1,10_0,10_0_0 +18291,2,31.0,0.0,6,300,360.0,0.0,0.0,55,55,0.0,0.0,613.872195613942,2160.0,2494.060605713738,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,118310,2,1,2,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1535.03925364839,360.0,28565.0,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07561701382811133,15869.444444444443,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +18292,2,57.0,0.0,1,111,1400.0,0.0,0.0,0,64,0.0,0.0,2387.2807607208856,1550.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118311,2,1,2,0,1,,400.0,,22,3.0,2.0,4.0,4.0,2.5,4,4,2176.30116331173,1400.0,21623.71515478882,0,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07168055946467343,8649.486061915528,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +18293,2,72.0,0.0,8,111,1800.0,0.0,0.0,75,74,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2002.0,6,118312,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,582.279366578267,1800.0,152525.78135415862,5,5,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011801283586415294,101683.85423610575,10,5,10,10_0,10_4,10_0_0 +18294,2,88.0,0.0,2,111,370.0,750.0,0.0,86,77,0.0,0.0,630.9242010476627,1120.0,0.0,1423.8780359548418,70,0,0,0,0,0,0,0,0,0,,2,,2,118313,1,3,0,0,2,,0.0,470.0,41,0.0,2.0,3.0,2.0,1.5,2,2,2023.91936950797,370.0,20671.31599959998,6,5,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05418135933008201,13780.877333066654,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +18295,2,46.0,0.0,7,111,400.0,930.0,0.0,55,67,0.0,0.0,682.0802173488245,1330.0,0.0,1765.6087645840037,43,0,0,0,0,0,0,0,0,2,45.0,2,,5,118314,1,2,0,0,1,,0.0,680.0,43,2.0,3.0,5.0,2.0,1.5,2,2,2831.40946945699,400.0,34842.0,1,1,2,3,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03817232076229837,23228.0,6,3,6,6_0,6_3,6_0_0 +18296,1,27.0,377.0,2,111,1686.0,2164.0,0.0,85,69,0.0,0.0,2874.968116125295,3850.0,0.0,4108.3627597417035,71,0,0,0,0,0,0,0,0,0,,1,,2,118315,2,1,1,0,1,,2285.0,487.0,42,2.0,0.0,5.0,10.0,4.8999999999999995,7,6,651.561999050599,1686.0,27768.55121918895,6,4,2,3,160.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1386460521332322,5667.0512692222355,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +18297,2,55.0,0.0,2,111,1080.0,0.0,0.0,85,21,885.9335948707453,0.0,1841.6165868418261,1920.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,118316,2,3,0,1,1,948.0,0.0,362.0,42,1.0,0.0,4.0,2.0,1.5,2,2,248.040811792738,1080.0,5163.044859879203,6,1,2,3,72.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.37187358469802667,3442.029906586135,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +18298,2,30.0,0.0,5,221,2000.0,0.0,0.0,55,22,0.0,0.0,3410.4010867441225,2060.0,83.13535352379125,0.0,60,1,2,2,1,1,2,2,2,0,,1,,3,118317,1,2,3,0,2,,678.0,609.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2220.32673517993,2000.0,30975.09245055492,1,1,2,3,110.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.06650504766978008,17208.38469475273,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +18299,2,62.0,0.0,6,112,1500.0,0.0,0.0,0,74,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,118318,2,1,2,0,1,,180.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1963.07921822456,1500.0,118398.1903585401,0,5,0,1,150.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012669112555332266,118398.1903585401,10,5,10,10_1,10_0,10_0_0 +18300,2,84.0,0.0,2,400,126.0,,,0,86,0.0,0.0,,149.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,0,,1,,2,118319,1,2,0,0,2,,39.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,121.42814261197954,126.0,11987.821233373037,0,5,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012429281109497791,11987.821233373037,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +18301,1,56.0,270.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,669.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118320,2,2,0,1,1,36.0,0.0,278.0,11,0.0,8.0,3.0,1.0,1.0,1,1,133.197539360101,0.0,6088.197330753095,0,6,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10988474316045967,6088.197330753095,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18302,1,58.0,222.0,1,211,134.0,760.0,0.0,0,42,0.0,0.0,228.4968728118562,894.0,0.0,1442.8630764342397,41,0,0,0,0,0,0,0,0,0,,1,,1,118321,1,2,5,0,2,,106.0,297.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1160.50276277773,134.0,5793.135405179078,0,4,2,3,47.0,1,3,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.15432057728199514,5793.135405179078,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +18303,2,54.0,0.0,7,300,500.0,0.0,0.0,52,47,2636.7071275915036,66.2163638505112,852.6002716860306,3170.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,4,80.0,1,,5,118322,1,1,2,0,1,,150.0,,43,2.0,0.0,8.0,4.0,2.5,4,4,1327.81981890824,500.0,89226.419012093,1,1,0,1,170.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035527594126246,35690.5676048372,9,5,9,9_1,9_0,9_0_0 +18304,2,55.0,0.0,1,111,700.0,1600.0,0.0,77,46,0.0,0.0,1193.6403803604428,2300.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,3,90.0,1,,1,118323,2,1,1,0,1,,480.0,,42,3.0,0.0,5.0,4.0,2.5,4,4,409.999758557084,700.0,103929.49991036777,5,1,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022130386482986986,41571.79996414711,9,5,9,9_1,9_4,9_1_0 +18305,2,25.0,0.0,1,111,0.0,0.0,1000.0,22,55,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,31,2,2,2,2,2,2,2,1,2,30.0,2,,1,118324,1,1,0,0,2,,380.0,590.0,43,2.0,0.0,2.0,2.0,1.5,2,2,405.68516666796,0.0,30676.34831004183,1,1,2,3,40.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.03259840414814472,20450.89887336122,5,3,5,5_0,5_3,5_1_0 +18306,2,45.0,0.0,5,111,0.0,0.0,1600.0,0,37,0.0,0.0,1008.5092646635901,1600.0,0.0,1914.7714361034893,30,0,0,0,0,0,0,0,0,2,6.0,2,,3,118325,2,1,0,0,1,,600.0,600.0,32,2.0,1.0,4.0,2.0,1.5,2,2,1663.7153604297,0.0,33462.62983361929,0,1,2,3,87.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.047814532448747026,22308.419889079527,6,3,6,6_0,6_2,6_0_0 +18307,0,49.0,0.0,2,111,0.0,0.0,0.0,11,11,0.0,92.70290939071567,0.0,1687.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118326,2,1,2,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1762.79218227667,0.0,29904.359720508444,1,1,5,0,107.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05641317907378748,13001.895530655846,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +18308,2,76.0,0.0,2,112,468.0,0.0,0.0,0,77,949.2145659329414,0.0,798.0338542981247,1438.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,118327,2,1,0,0,1,,220.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1878.20615319908,468.0,15812.730405594208,0,5,0,1,75.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09093938637512382,15812.730405594208,3,2,3_0,3_0_0,3_0_0,3_0_1_0 +18309,1,43.0,240.0,9,111,600.0,,,0,46,0.0,0.0,,692.0,127.47420873647992,,31,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,118328,2,1,0,0,2,,320.0,417.0,32,1.0,0.0,3.0,4.0,2.3,3,2,131.59320501398605,600.0,33689.709565339384,0,1,2,3,66.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020540396724344066,14647.699811017124,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +18310,1,25.0,300.0,9,112,1000.0,0.0,0.0,0,52,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,118329,2,1,1,0,1,,350.0,445.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1539.8602206928,1000.0,16145.0,0,1,2,3,65.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06193868070610096,12419.23076923077,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +18311,2,81.0,0.0,1,112,378.0,2148.0,0.0,0,77,0.0,0.0,644.5658053946391,2526.0,0.0,4077.986694974667,70,0,0,0,0,0,0,0,0,0,,1,,1,118330,2,1,3,0,1,,208.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,662.851359638018,378.0,17077.216972036516,0,5,0,1,70.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14791637326715806,17077.216972036516,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18312,2,41.0,0.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,918.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,2,,5,118331,2,1,0,0,1,,183.0,380.0,22,2.0,0.0,3.0,2.0,1.5,2,2,969.610125627665,0.0,26846.868041225058,0,1,3,4,85.0,7,5,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03419393273697152,17897.912027483373,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18313,2,45.0,0.0,6,111,900.0,,,0,63,0.0,0.0,,1050.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,3,45.0,1,,4,118332,2,2,0,0,2,,275.0,,22,2.0,1.0,3.0,2.0,1.5,2,2,113.41749915405072,900.0,21890.188524590165,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047966695162103834,14593.459016393443,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +18314,2,53.0,0.0,2,111,310.0,1378.0,0.0,34,34,0.0,0.0,528.612168445339,1736.0,66.50828281903301,2616.1385780610294,12,2,2,2,2,1,1,2,2,1,15.0,1,,2,118333,1,2,2,0,1,,300.0,,43,2.0,1.0,7.0,6.0,3.3,5,2,244.402271900866,310.0,62204.40703827939,1,1,1,2,120.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.027907990489029165,18849.820314630117,5,3,5,5_1,5_2,5_0_1 +18315,2,72.0,0.0,2,111,621.0,,,56,72,0.0,0.0,,831.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,2,118334,2,1,0,0,2,,160.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,114.05278242995273,621.0,15932.063527213206,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05215896852159717,10621.375684808803,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +18316,2,52.0,0.0,2,111,420.0,1700.0,0.0,52,64,0.0,0.0,716.1842282162656,2120.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,0,,2,,2,118335,2,1,0,0,1,,162.0,362.0,43,2.0,0.0,5.0,3.0,2.0,3,3,328.807515154049,420.0,27093.60178402248,1,1,2,3,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0782472561935341,13546.80089201124,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +18317,2,32.0,0.0,2,111,1300.0,0.0,0.0,68,34,0.0,198.6490915515336,2216.7607063836795,1550.0,138.5589225396521,0.0,20,2,2,2,1,2,2,2,2,2,45.0,1,,2,118336,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1098.85894526673,1300.0,39448.918497146704,1,1,1,2,75.0,5,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.039291317963814645,18785.19928435557,5,3,5,5_1,5_2,5_0_1 +18318,2,63.0,0.0,2,111,530.0,60.0,0.0,0,75,0.0,0.0,903.7562879871924,590.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,2,,2,118337,2,1,0,0,1,,0.0,600.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1550.03042109418,530.0,27993.588379716348,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021076254747944476,27993.588379716348,7,4,7,7_0,7_4,7_0_1 +18319,1,44.0,193.0,5,211,545.0,0.0,0.0,0,64,0.0,0.0,929.3342961377733,545.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118338,1,3,0,0,2,,212.0,255.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2379.93070506993,545.0,10341.312765926,0,4,3,4,25.0,3,3,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05270123942056389,10341.312765926,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +18320,2,58.0,0.0,2,111,250.0,150.0,0.0,0,52,0.0,0.0,426.3001358430153,400.0,0.0,284.77560719096834,71,2,1,2,2,2,2,2,1,1,5.0,2,,2,118339,1,1,0,1,1,671.0,0.0,325.0,12,1.0,0.0,3.0,1.0,1.0,1,1,695.257329277249,250.0,22155.392781648537,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018054295129956925,22155.392781648537,6,3,6,6_0,6_4,6_0_1 +18321,2,72.0,0.0,2,111,200.0,100.0,0.0,0,75,0.0,0.0,341.04010867441224,300.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,118340,2,1,0,1,1,,0.0,240.0,11,0.0,1.0,2.0,1.0,1.0,1,1,295.431764827872,200.0,18856.782862037988,0,5,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015909394629767554,18856.782862037988,5,3,5,5_0,5_4,5_0_1 +18322,2,44.0,0.0,8,112,616.0,898.0,0.0,42,46,0.0,132.4327277010224,1050.4035347171896,1614.0,0.0,1704.8566350499304,41,1,2,2,1,1,2,2,2,2,10.0,1,2001.0,6,118341,2,1,2,0,1,,1200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1044.1751159484,616.0,74472.70553689143,1,1,1,2,116.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.021672369606613465,35463.19311280544,9,5,9,9_1,9_1,9_0_0 +18323,2,36.0,0.0,2,112,565.0,0.0,0.0,21,38,0.0,794.5963662061343,963.4383070052146,1165.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,2,118342,2,1,2,0,1,,591.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1629.4715958447,565.0,64307.236217911035,1,1,1,2,125.0,9,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01811615719345004,35726.242343283906,9,5,9,9_1,9_1,9_0_1 +18324,1,46.0,255.0,2,120,180.0,0.0,0.0,0,55,0.0,0.0,306.936097806971,246.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,118343,2,3,0,1,1,768.0,0.0,286.0,12,1.0,2.0,3.0,1.0,1.0,1,1,690.739288574749,180.0,15745.70282985425,0,1,2,3,58.0,0,2,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015623310223636241,15745.70282985425,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +18325,2,54.0,0.0,9,111,750.0,1850.0,0.0,56,46,0.0,0.0,1278.9004075290459,2720.0,166.2707070475825,3512.2324886886095,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,118344,2,1,1,0,1,,1400.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,491.56106742854,750.0,40831.53948202601,4,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.066615171372545,17752.84325305479,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +18326,2,66.0,0.0,9,111,0.0,,,54,34,0.0,0.0,,695.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,118345,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,84.39755238752255,0.0,142841.6874412607,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004865526391137024,79356.49302292262,10,5,10,10_1,10_2,10_0_0 +18327,2,56.0,0.0,6,111,1560.0,,,55,21,0.0,0.0,,2060.0,692.7946126982605,,50,0,0,0,0,0,0,0,0,0,,2,,4,118346,2,3,0,0,2,,0.0,375.0,43,2.0,1.0,4.0,4.0,2.5,4,4,92.39915370683458,1560.0,31224.455364438152,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.065973928959099,12489.782145775262,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +18328,0,75.0,0.0,1,112,400.0,0.0,0.0,78,72,2109.365702073203,66.2163638505112,682.0802173488245,2500.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118347,2,1,2,0,1,,200.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,2267.71353693485,400.0,52795.58941310755,5,5,0,1,110.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047352440379789106,26397.794706553774,7,4,7,7_1,7_0,7_1_0 +18330,1,28.0,253.0,8,111,600.0,,,0,43,0.0,0.0,,650.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,3,40.0,1,2000.0,6,118349,2,1,0,0,2,,220.0,650.0,12,1.0,0.0,3.0,1.0,1.0,1,1,166.77827460294083,600.0,5600.025424528288,0,1,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11607090159858552,5600.025424528288,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +18331,2,58.0,0.0,7,111,400.0,1000.0,0.0,22,31,0.0,0.0,682.0802173488245,2511.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,118350,2,1,2,0,2,,300.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1286.02897370694,400.0,203225.98501105703,1,1,0,1,300.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012355703429674028,135483.99000737135,10,5,10,10_1,10_3,10_0_0 +18332,2,67.0,0.0,5,111,500.0,1080.0,0.0,0,77,0.0,0.0,852.6002716860306,1580.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,0,,1,,3,118351,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1581.33539250959,500.0,32084.64431431245,0,5,0,1,125.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04924474102071274,32084.64431431245,8,4,8,8_1,8_3,8_0_0 +18333,1,49.0,98.0,6,111,476.0,0.0,0.0,0,54,0.0,0.0,811.6754586451011,476.0,0.0,0.0,50,2,1,2,1,2,2,2,1,2,20.0,2,,4,118352,1,3,0,1,1,881.0,0.0,422.0,32,1.0,0.0,3.0,2.0,1.3,1,1,388.174834792766,476.0,18580.74565764607,0,1,2,3,63.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.025617916997002946,14292.881275112362,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +18334,2,49.0,0.0,2,111,520.0,0.0,0.0,46,47,2109.365702073203,317.83854648245375,886.7042825534718,2760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,118353,2,3,3,0,1,,400.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,1719.10198577649,520.0,45069.869521969755,1,1,0,1,100.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06123825139219918,22534.934760984877,6,3,6,6_1,6_3,6_0_1 +18335,2,79.0,0.0,2,111,750.0,3000.0,0.0,75,74,0.0,0.0,1278.9004075290459,6421.0,0.0,5695.512143819367,41,0,0,0,0,0,0,0,0,0,,1,,2,118354,2,1,2,0,1,,360.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1513.53189288447,750.0,59600.972368201576,5,5,0,1,120.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10773314167313391,39733.98157880105,9,5,9,9_1,9_2,9_0_1 +18336,2,46.0,0.0,7,111,1780.0,0.0,0.0,84,43,0.0,397.2981831030672,3035.2569672022687,2080.0,0.0,0.0,33,2,2,2,2,2,2,2,1,2,5.0,1,,5,118355,1,2,3,0,1,,900.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,403.111467083041,1780.0,57194.348564698,3,1,1,2,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.036367229493786665,23830.978568624167,6,3,6,6_1,6_3,6_0_0 +18337,2,54.0,0.0,1,112,2600.0,0.0,0.0,34,31,2109.365702073203,476.7578197236806,4433.521412767359,5060.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,118356,2,1,2,0,1,,506.0,,43,2.0,2.0,10.0,3.0,2.0,3,3,992.187612257026,2600.0,140881.4745086095,1,1,0,1,300.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035916716641766655,70440.73725430475,10,5,10,10_1,10_0,10_1_0 +18338,2,81.0,0.0,1,111,600.0,1519.0,0.0,78,78,0.0,0.0,1023.1203260232367,2119.0,0.0,2883.8276488205397,71,0,0,0,0,0,0,0,0,0,,1,,1,118357,2,1,2,0,1,,461.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1329.18986892776,600.0,19922.23938473436,5,5,0,1,96.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10636354473401759,13281.49292315624,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +18339,2,43.0,0.0,7,111,600.0,,,62,67,0.0,0.0,,666.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,5,118358,2,1,0,0,2,,220.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,130.7441991076995,600.0,25608.32220979816,4,1,0,1,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026007170424666774,10243.328883919265,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18340,1,33.0,468.0,2,211,600.0,,,0,85,0.0,0.0,,600.0,0.0,,43,0,0,0,0,0,0,0,0,0,,8,,2,118359,2,2,0,0,2,,560.0,60.0,31,0.0,0.0,5.0,4.0,1.9,1,1,63.87776332767218,600.0,16501.10580358227,0,6,2,3,82.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036361199494263245,8684.792528201197,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18341,2,53.0,0.0,9,112,0.0,0.0,0.0,52,47,0.0,0.0,0.0,2244.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2012.0,6,118360,2,1,1,0,1,,523.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,358.910427353965,0.0,31898.33346671718,1,1,1,2,85.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07034850276242163,12759.333386686872,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18342,2,55.0,0.0,6,111,650.0,,,0,62,0.0,0.0,,742.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,118361,2,1,0,0,2,,560.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,88.95665316690146,650.0,28547.5270744323,0,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02599174345523431,28547.5270744323,8,4,8,8_1,8_2,8_0_0 +18343,2,39.0,0.0,2,111,1800.0,0.0,0.0,38,38,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,60.0,1,,2,118362,2,1,1,0,1,,690.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,422.045297214588,1800.0,79690.23185793888,4,1,1,2,127.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02258746094764538,44272.351032188264,10,5,10,10_1,10_4,10_0_1 +18344,2,71.0,0.0,5,111,690.0,,,54,78,0.0,0.0,,690.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,3,118363,2,1,0,0,2,,180.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,59.137216165573115,690.0,38590.539869876724,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01788002972559099,25727.026579917816,7,4,7,7_1,7_2,7_0_0 +18345,2,49.0,0.0,8,111,1800.0,1800.0,0.0,38,43,0.0,0.0,3069.36097806971,3600.0,0.0,3417.30728629162,31,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,118364,2,1,1,0,1,,1500.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,774.133340200749,1800.0,100751.9926659803,1,1,1,2,119.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03573130322032398,40300.79706639212,9,5,9,9_1,9_3,9_0_0 +18346,2,31.0,0.0,9,111,0.0,,,43,21,0.0,0.0,,1223.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,2013.0,6,118365,2,1,0,0,2,,138.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,226.24585543179114,0.0,14849.66345269309,4,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08235876886342501,9899.775635128726,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +18347,2,46.0,0.0,1,111,1420.0,0.0,0.0,0,85,843.7462808292812,0.0,2421.3847715883267,2360.0,193.98249155551292,0.0,71,2,2,1,2,2,2,2,1,0,,1,,1,118366,2,3,2,0,1,,440.0,,31,2.0,2.0,5.0,4.0,2.3,3,3,586.051785228854,1420.0,12270.216939390782,0,6,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.19233563771996148,5334.876930169906,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +18348,2,66.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1078.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,118367,2,1,0,0,1,,0.0,430.0,11,0.0,7.0,2.0,1.0,1.0,1,1,632.996781072911,0.0,8729.0,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.12349639133921411,8729.0,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +18349,2,73.0,0.0,2,111,240.0,0.0,0.0,77,75,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118368,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,602.368820530024,240.0,39650.754100668826,5,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006052848311299878,26433.836067112552,7,4,7,7_0,7_4,7_0_1 +18350,2,77.0,0.0,5,112,1800.0,0.0,0.0,0,74,0.0,0.0,3069.36097806971,1870.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,118369,2,1,1,0,1,,270.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1421.81427945043,1800.0,40711.458927374755,0,5,0,1,120.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04593301368383522,40711.458927374755,9,5,9,9_1,9_0,9_0_0 +18351,1,40.0,461.0,5,111,720.0,960.0,0.0,0,67,0.0,0.0,1227.744391227884,1680.0,0.0,1822.5638860221975,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,118370,1,1,1,0,1,,500.0,510.0,32,1.0,0.0,5.0,4.0,2.1,2,1,247.323593538994,720.0,19143.578593197282,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08775788663656607,9115.98980628442,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +18352,2,33.0,0.0,7,111,900.0,,,0,48,0.0,0.0,,944.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,1,3.0,2,,5,118371,2,1,0,0,1,,400.0,600.0,12,1.0,1.0,2.0,1.0,1.0,1,1,161.9082608556297,900.0,29931.70668009694,0,1,2,3,24.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031538462209631093,29931.70668009694,8,4,8,8_0,8_2,8_0_0 +18353,2,62.0,0.0,6,111,520.0,,,0,77,0.0,0.0,,570.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,4,118372,1,1,0,0,2,,450.0,,31,1.0,2.0,4.0,3.0,2.0,3,3,87.07904310892435,520.0,35458.34951402315,0,5,0,1,104.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01607519830483297,17729.174757011577,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +18354,2,33.0,0.0,2,111,541.0,1379.0,0.0,54,46,0.0,0.0,922.5134939642851,1920.0,0.0,2618.037082108969,43,1,2,2,2,1,2,2,2,2,15.0,1,,2,118373,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,975.208673554858,541.0,37236.54019949853,1,1,1,2,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05156225550798774,17731.685809285013,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +18355,2,68.0,0.0,2,111,260.0,50.0,0.0,0,77,0.0,540.3255290201713,443.3521412767359,718.0,0.0,94.92520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,118374,1,2,0,1,1,408.0,0.0,274.0,11,0.0,5.0,2.0,1.0,1.0,1,1,278.807580052301,260.0,17071.290389795548,0,5,2,3,53.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04205891784426491,17071.290389795548,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +18356,1,65.0,395.0,2,111,417.0,342.0,0.0,85,74,0.0,0.0,711.0686265861495,759.0,0.0,649.2883843954079,50,2,2,2,2,2,2,2,1,0,,2,,2,118375,1,1,0,1,1,779.0,0.0,609.0,41,0.0,1.0,4.0,5.0,3.0,5,5,375.51867270266,417.0,19783.525671237647,6,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03836525463726999,6594.508557079215,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +18357,2,63.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,2605.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118376,2,2,5,0,1,,0.0,400.0,11,0.0,8.0,3.0,1.0,1.0,1,1,226.958480976751,0.0,17569.0129420659,0,5,2,3,70.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14827241624728885,17569.0129420659,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +18358,2,94.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1736.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118377,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,717.04886634624,0.0,19282.450659625043,0,5,0,1,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09003005015513715,19282.450659625043,5,3,5,5_0,5_3,5_0_1 +18359,2,68.0,0.0,2,111,308.0,950.0,0.0,0,90,0.0,0.0,525.2017673585948,1258.0,0.0,1803.5788455427996,71,0,0,0,0,0,0,0,0,0,,1,,2,118378,2,3,1,0,1,,131.0,335.0,11,0.0,2.0,3.0,1.0,1.0,1,1,261.378849362795,308.0,17085.77629523065,0,5,2,3,64.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07362849532047075,17085.77629523065,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +18360,2,56.0,0.0,5,111,330.0,0.0,0.0,0,52,0.0,0.0,562.7161793127802,660.0,457.2444443808519,0.0,70,1,1,2,2,1,2,2,2,2,30.0,2,,3,118379,1,1,0,1,1,,0.0,,32,2.0,4.0,4.0,2.0,1.5,2,2,372.746143259397,330.0,18307.53586346959,0,1,1,2,72.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03605072823136989,12205.023908979727,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +18361,2,53.0,0.0,6,112,700.0,0.0,0.0,55,63,0.0,794.5963662061343,1193.6403803604428,1400.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,118380,2,1,2,0,1,,170.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,525.06724732235,700.0,65125.95882065717,4,1,0,1,110.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021496804428711717,43417.305880438114,10,5,10,10_1,10_1,10_0_0 +18362,2,44.0,0.0,2,221,565.0,2266.0,0.0,46,23,0.0,0.0,963.4383070052146,2831.0,0.0,4302.0101726315615,50,0,0,0,0,0,0,0,0,1,1.0,1,,2,118381,2,1,2,0,2,,430.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1857.66755861493,565.0,87560.0,1,1,1,2,95.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032332115121059844,36483.333333333336,9,5,9,9_1,9_1,9_0_1 +18363,1,66.0,246.0,1,111,990.0,0.0,0.0,0,77,0.0,0.0,1688.1485379383405,1040.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,118382,2,1,0,0,1,,192.0,401.0,21,1.0,2.0,2.0,2.0,1.5,2,2,1828.93385895019,990.0,10607.217151935185,0,5,2,3,55.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09804645130794386,7071.478101290123,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +18364,2,66.0,0.0,1,111,212.0,660.0,0.0,0,75,0.0,0.0,361.502515194877,872.0,0.0,1253.0126716402608,50,0,0,0,0,0,0,0,0,0,,2,,1,118383,1,1,0,0,1,,0.0,277.0,21,1.0,0.0,4.0,2.0,1.5,2,2,929.510915667836,212.0,61823.09595468591,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0141047611177406,41215.39730312394,9,5,9,9_0,9_4,9_1_0 +18365,2,61.0,0.0,9,111,1259.0,0.0,0.0,78,45,0.0,0.0,2146.847484105425,1259.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,118384,2,1,1,0,1,,105.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,1014.74012906792,1259.0,52653.44250165725,5,1,1,2,180.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023911067162614742,26326.721250828625,7,4,7,7_1,7_2,7_0_0 +18366,2,52.0,0.0,6,111,0.0,,,85,31,0.0,0.0,,394.0,0.0,,10,0,0,0,0,0,0,0,0,2,12.0,1,,4,118385,2,2,0,0,2,,286.0,1250.0,42,1.0,0.0,5.0,3.0,1.8,2,2,115.68996631253809,0.0,95325.2920596832,6,1,2,3,175.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00413321576558419,52958.49558871289,10,5,10,10_1,10_3,10_0_0 +18367,2,61.0,0.0,6,111,600.0,1500.0,0.0,55,21,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,50,2,2,2,2,2,2,2,1,0,,2,,4,118386,1,2,0,0,2,,0.0,656.0,43,2.0,0.0,3.0,3.0,2.0,3,2,1045.3634528562,600.0,28305.40369502129,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0741907807649242,14152.701847510645,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +18368,2,55.0,0.0,2,111,1470.0,0.0,0.0,85,62,0.0,0.0,2506.64479875693,1680.0,290.9737373332694,0.0,50,2,2,2,1,1,1,2,2,2,30.0,1,,2,118387,1,3,3,0,2,,130.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,342.141537642789,1470.0,24064.80897219356,6,1,0,1,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06981148289775367,12032.40448609678,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +18369,2,49.0,0.0,8,111,600.0,0.0,0.0,54,63,0.0,0.0,1023.1203260232367,748.0,205.0672053586851,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,118388,2,1,2,0,1,,550.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,900.106487166829,600.0,31660.694633334366,1,1,1,2,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02362550817860006,13765.519405797551,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +18370,2,71.0,0.0,5,111,420.0,,,85,78,0.0,0.0,,596.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,3,118389,2,3,0,0,2,,510.0,,41,0.0,2.0,3.0,5.0,2.4,2,2,168.28101504241843,420.0,9707.878787878788,6,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06139343238856287,4044.949494949495,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18371,2,43.0,0.0,2,111,1400.0,2400.0,0.0,85,35,0.0,119.18945493092015,2387.2807607208856,3890.0,0.0,4556.4097150554935,20,0,0,0,0,0,0,0,0,4,150.0,1,,2,118390,2,1,1,0,1,,400.0,,42,1.0,0.0,10.0,7.0,3.6,5,3,238.303164827923,1400.0,64665.7523090069,6,1,1,2,250.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06015548974689939,17962.708974724137,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +18372,2,58.0,0.0,6,111,356.0,743.0,0.0,56,64,0.0,0.0,607.0513934404538,1099.0,0.0,1410.5885076192633,50,0,0,0,0,0,0,0,0,0,,1,,4,118391,1,2,2,0,1,,210.0,506.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1026.40032070047,356.0,32734.91863472099,4,1,2,3,86.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03357271213236871,21823.279089813994,6,3,6,6_1,6_2,6_0_0 +18373,2,91.0,0.0,2,222,0.0,0.0,0.0,0,71,0.0,437.0280014133739,0.0,2756.0,133.01656563806603,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,118392,1,2,2,0,2,,160.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1437.07434398515,0.0,9259.851688614946,0,5,0,1,100.0,1,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.29762895699382763,9259.851688614946,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +18374,2,39.0,0.0,9,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,1199.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,118393,2,1,1,0,1,,386.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1094.23232440954,0.0,48673.10736657139,1,1,1,2,100.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024633726196480136,23177.670174557803,6,3,6,6_1,6_3,6_0_0 +18375,2,57.0,0.0,5,111,0.0,0.0,1370.0,43,42,0.0,0.0,863.5360578681989,1370.0,0.0,1639.5230421636127,10,0,0,0,0,0,0,0,0,2,10.0,8,,3,118394,2,3,0,0,1,,300.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,351.178006941494,0.0,70254.90120519987,1,1,1,2,106.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019500418853319806,46836.60080346658,10,5,10,10_0,10_3,10_0_0 +18376,2,33.0,0.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,542.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,3,118395,1,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1660.51546276487,0.0,29153.8233765273,0,1,1,2,50.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018591043548558436,29153.8233765273,8,4,8,8_0,8_3,8_0_0 +18377,2,78.0,0.0,2,111,1100.0,0.0,0.0,0,74,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,118396,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,859.210372450338,1100.0,29850.63811873449,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03685013350885895,29850.63811873449,8,4,8,8_0,8_4,8_0_1 +18378,2,38.0,0.0,1,111,600.0,900.0,0.0,85,31,0.0,145.67600047112464,1023.1203260232367,1610.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,1,10.0,1,,1,118397,2,2,2,0,1,,1000.0,,42,1.0,0.0,9.0,5.0,2.4,2,2,376.682714412889,600.0,107708.94254938095,6,1,1,2,140.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014947691082027556,44878.726062242065,10,5,10,10_1,10_2,10_1_0 +18379,2,45.0,0.0,7,112,1500.0,0.0,0.0,52,64,0.0,0.0,2557.8008150580918,3500.0,2771.178450793042,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,118398,2,1,2,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.8,5,2,559.296797477177,1500.0,68589.12186873215,1,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051028499923040295,24496.114953118627,7,4,7,7_1,7_0,7_0_0 +18380,2,48.0,0.0,2,111,274.0,0.0,0.0,0,38,835.3088180209884,0.0,467.22494888394476,1066.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,118399,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,887.109918950019,274.0,61494.818830046665,0,1,1,2,80.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017334793731909447,61494.818830046665,10,5,10,10_0,10_4,10_0_1 +18381,1,32.0,373.0,7,111,457.0,,,0,52,0.0,0.0,,961.0,698.3369695998466,,71,2,2,2,1,1,2,2,2,0,,2,,5,118400,2,3,0,0,1,,900.0,385.0,32,1.0,0.0,3.0,3.0,1.6,1,1,110.06871410742137,457.0,15919.371971640787,0,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06036670301516619,9949.60748227549,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +18382,2,79.0,0.0,1,120,256.0,0.0,0.0,0,78,0.0,1263.4082222677537,436.53133910324766,1282.0,99.7624242285495,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,118401,1,2,4,0,2,,149.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,238.762268997399,256.0,16920.458583993408,0,5,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07576626801431728,16920.458583993408,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18383,2,65.0,0.0,5,111,978.0,0.0,0.0,0,77,0.0,0.0,1667.686131417876,1013.0,48.49562288887823,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,118402,2,1,2,0,1,,184.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1226.60075756712,978.0,22163.775865646327,0,5,0,1,100.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04570520863144722,22163.775865646327,6,3,6,6_1,6_2,6_0_0 +18384,2,33.0,0.0,9,111,240.0,0.0,0.0,0,37,0.0,0.0,409.2481304092947,686.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,75.0,2,2010.0,6,118403,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,926.247003931647,240.0,31454.121978598734,0,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.021809542179137976,31454.121978598734,8,4,8,8_0,8_4,8_0_0 +18385,1,60.0,260.0,2,111,109.0,61.0,0.0,0,77,0.0,0.0,185.86685922755467,170.0,0.0,115.80874692432712,50,0,0,0,0,0,0,0,0,0,,2,,2,118404,1,1,0,1,2,668.0,0.0,248.0,11,0.0,2.0,3.0,1.0,1.0,1,1,379.134140335182,109.0,9447.699462064666,0,6,2,3,50.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01799379845671433,9447.699462064666,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18386,2,43.0,0.0,6,120,630.0,0.0,0.0,67,48,1376.361120602765,46.35145469535784,1074.2763423243985,2034.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,118405,1,1,2,0,1,,506.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1447.70009304188,630.0,49655.26870016021,1,1,1,2,88.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0409624205697519,23645.366047695337,6,3,6,6_1,6_0,6_0_0 +18387,2,37.0,0.0,9,221,800.0,0.0,0.0,42,42,1265.6194212439218,0.0,1364.160434697649,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,118406,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1718.51413099846,800.0,33853.3448534472,4,2,1,2,120.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05907835720984437,18807.413807470664,5,3,5,5_1,5_1,5_0_0 +18388,2,50.0,0.0,2,111,500.0,,,0,69,0.0,0.0,,500.0,0.0,,71,0,0,0,0,0,0,0,0,0,,3,,2,118407,1,3,0,0,2,,206.0,200.0,32,1.0,9.0,1.0,2.0,1.3,1,1,37.32473304695399,500.0,15139.15345739042,0,4,2,3,16.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03302694575408489,11645.502659531092,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +18389,2,57.0,0.0,1,111,360.0,520.0,0.0,0,55,0.0,0.0,613.872195613942,880.0,0.0,987.2221049286903,60,0,0,0,0,0,0,0,0,3,20.0,2,,1,118408,1,1,0,0,1,,260.0,304.0,22,2.0,2.0,2.0,2.0,1.5,2,2,304.310514742948,360.0,25543.640081607038,0,1,3,4,53.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034450845579900455,17029.093387738027,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +18390,2,73.0,0.0,2,111,286.0,938.0,0.0,0,77,0.0,0.0,487.6873554044095,1224.0,0.0,1780.7967969675221,71,0,0,0,0,0,0,0,0,0,,1,,2,118409,2,1,4,0,1,,120.0,403.0,11,0.0,6.0,4.0,1.0,1.0,1,1,297.794482202972,286.0,18059.07978011383,0,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06777753988040054,18059.07978011383,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +18391,2,38.0,0.0,5,111,700.0,,,84,33,0.0,0.0,,788.0,121.93185183489385,,12,0,0,0,0,0,0,0,0,0,,1,,3,118410,1,3,0,0,2,,500.0,1150.0,42,1.0,0.0,3.0,4.0,2.1,2,2,161.56662389895666,700.0,94801.10671452264,3,1,2,3,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00831213924931201,45143.38414977268,10,5,10,10_1,10_2,10_0_0 +18392,2,71.0,0.0,7,111,300.0,,,0,78,0.0,0.0,,381.0,112.2327272571182,,71,0,0,0,0,0,0,0,0,0,,1,,5,118411,2,3,0,0,2,,60.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,88.154154620333,300.0,4024.423140495868,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09467195339530206,4024.423140495868,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +18393,2,53.0,0.0,5,111,465.0,0.0,0.0,0,42,0.0,0.0,792.9182526680084,465.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,,3,118412,2,1,0,0,1,,0.0,506.0,12,1.0,0.0,5.0,1.0,1.0,1,1,1100.28373836781,465.0,38464.81955516818,0,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012088968709006255,38464.81955516818,9,5,9,9_0,9_4,9_0_0 +18394,2,84.0,0.0,2,111,540.0,,,86,78,0.0,0.0,,678.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,118413,2,1,0,0,2,,240.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,74.37548559946772,540.0,21129.204124922813,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032088288607154375,14086.136083281875,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +18395,2,54.0,0.0,6,111,1900.0,0.0,0.0,56,62,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,118414,2,1,2,0,1,,220.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,338.311162197063,1900.0,41159.32570671965,1,1,0,1,92.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046162077910081194,20579.662853359823,5,3,5,5_1,5_3,5_0_0 +18396,2,80.0,0.0,1,111,732.0,1008.0,0.0,78,78,0.0,0.0,1248.206797748349,1740.0,0.0,1913.6920803233072,71,0,0,0,0,0,0,0,0,0,,2,,1,118415,2,2,0,0,1,,0.0,303.0,41,2.0,4.0,3.0,4.0,2.5,4,4,388.210845112293,732.0,35540.915133346156,5,5,2,3,63.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04895765889740555,14216.366053338463,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +18397,1,60.0,253.0,7,111,0.0,,,0,52,0.0,0.0,,120.0,166.2707070475825,,43,0,0,0,0,0,0,0,0,0,,1,,5,118416,2,1,0,0,2,,252.0,600.0,12,1.0,3.0,3.0,1.0,1.0,1,1,119.8252514693026,0.0,6332.0,0,4,2,3,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018951358180669616,6332.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +18398,0,82.0,0.0,1,300,540.0,0.0,0.0,0,71,0.0,0.0,920.8082934209131,640.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118417,2,2,2,0,1,,250.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1529.0214135959,540.0,15462.357856829876,0,5,0,1,80.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04139084128862699,15462.357856829876,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +18399,2,31.0,0.0,2,111,318.0,0.0,0.0,0,63,0.0,0.0,542.2537727923154,362.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,2,,2,118418,1,2,0,1,1,398.0,0.0,252.0,12,1.0,2.0,2.0,1.0,1.0,1,1,366.985351263384,318.0,13374.028938906753,0,1,2,3,45.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02706738572599435,13374.028938906753,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +18400,1,60.0,344.0,2,111,518.0,600.0,0.0,85,21,0.0,0.0,883.2938814667277,1118.0,0.0,1139.1024287638734,41,2,1,2,2,1,1,2,2,0,,2,,2,118419,2,1,0,1,1,400.0,0.0,323.0,42,2.0,2.0,4.0,4.0,2.5,4,4,248.785308451644,518.0,32895.24326515411,6,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03398667676625137,13158.097306061643,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +18401,2,68.0,0.0,1,111,550.0,3389.0,0.0,74,74,0.0,0.0,937.8602988546337,3939.0,0.0,6434.030218467945,20,0,0,0,0,0,0,0,0,0,,1,,1,118420,2,1,3,0,1,,402.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1059.71232280403,550.0,60637.414163246634,5,5,0,1,250.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06495989405807305,40424.94277549776,9,5,9,9_1,9_2,9_1_0 +18402,2,40.0,0.0,2,111,800.0,0.0,0.0,0,48,0.0,0.0,1364.160434697649,840.0,55.423569015860835,0.0,31,2,2,1,2,1,2,2,2,0,,1,,2,118421,1,2,3,0,2,,400.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,145.725174770673,800.0,21020.715708894033,0,4,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03996058039282598,21020.715708894033,5,3,5,5_1,5_3,5_0_1 +18403,2,28.0,0.0,7,221,0.0,,,0,43,0.0,0.0,,1769.0,0.0,,33,0,0,0,0,0,0,0,0,1,2.0,1,,5,118422,2,3,0,0,2,,218.0,600.0,12,1.0,0.0,4.0,1.0,1.0,1,1,123.88436186743107,0.0,14407.525604300643,0,1,3,4,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12278305439706828,14407.525604300643,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +18404,2,73.0,0.0,2,112,851.0,1750.0,0.0,75,72,0.0,370.8116375628627,1451.125662409624,2941.0,83.13535352379125,3322.382083894631,44,0,0,0,0,0,0,0,0,0,,1,,2,118423,2,2,3,0,1,,360.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1658.20682801995,851.0,73643.03664148712,5,5,0,1,180.0,8,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03993588714052531,49095.357760991414,10,5,10,10_1,10_0,10_0_1 +18405,1,60.0,232.0,6,111,360.0,,,85,56,0.0,0.0,,682.0,446.15973057767974,,71,0,0,0,0,0,0,0,0,0,,2,,4,118424,2,3,0,0,1,,408.0,237.0,42,1.0,1.0,3.0,2.0,1.5,2,2,128.21074035890652,360.0,8324.523819609009,7,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08192660802933863,5549.682546406006,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +18406,2,72.0,0.0,2,111,500.0,0.0,0.0,0,72,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118425,2,3,0,0,1,,0.0,105.0,11,0.0,1.0,2.0,1.0,1.0,1,1,957.841224166702,500.0,17721.60116710966,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028214154877154844,17721.60116710966,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +18407,1,35.0,215.0,7,111,400.0,,,0,43,0.0,0.0,,532.0,182.89777775234077,,42,0,0,0,0,0,0,0,0,2,10.0,1,,5,118426,2,2,0,0,2,,300.0,580.0,32,1.0,0.0,3.0,2.0,1.3,1,1,138.60868554532155,400.0,20600.80462440717,0,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025824234038397877,15846.772788005515,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +18408,2,44.0,0.0,2,112,340.0,776.0,0.0,52,62,0.0,0.0,579.7681847465008,1266.0,207.83838380947813,1473.2391412012762,71,2,2,2,2,1,2,2,2,2,10.0,1,,2,118427,1,2,4,0,2,,220.0,,43,3.0,0.0,6.0,4.0,2.3,3,3,2126.5236970903,340.0,37454.2177018013,4,1,1,2,84.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.033801266657856634,16284.442479044046,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +18409,2,49.0,0.0,6,111,350.0,796.0,0.0,0,37,0.0,0.0,596.8201901802214,1146.0,0.0,1511.209222160072,31,0,0,0,0,0,0,0,0,1,5.0,2,,4,118428,2,1,0,0,1,,0.0,673.0,12,1.0,1.0,4.0,1.0,1.0,1,1,372.814995674695,350.0,32814.62951082041,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034923447775697544,32814.62951082041,8,4,8,8_0,8_4,8_0_0 +18410,2,41.0,0.0,1,300,540.0,0.0,0.0,62,63,0.0,0.0,920.8082934209131,2794.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,118429,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1008.34008915744,540.0,38267.45890166264,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07301242570560666,18222.59947698221,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18411,2,60.0,0.0,2,111,900.0,1539.0,0.0,71,69,0.0,0.0,1534.680489034855,2439.0,0.0,2921.7977297793354,50,0,0,0,0,0,0,0,0,1,2.0,1,,2,118430,2,1,1,0,1,,480.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,377.068504720347,900.0,65472.94786969652,5,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03725202666686199,43648.631913131016,10,5,10,10_1,10_2,10_0_1 +18412,2,51.0,0.0,1,400,1800.0,35.0,0.0,67,47,0.0,754.8665478958276,3069.36097806971,2405.0,0.0,66.44764167789262,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,118431,2,1,3,0,1,,300.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,1832.97377635016,1800.0,53631.30128467844,4,1,1,2,100.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04484321548034241,26815.65064233922,7,4,7,7_1,7_0,7_1_0 +18413,2,42.0,0.0,5,111,2400.0,0.0,0.0,0,37,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,45.0,1,,3,118432,2,2,3,0,1,,400.0,,32,1.0,0.0,8.0,3.0,1.6,1,1,802.646199879811,2400.0,79754.29099413757,0,1,1,2,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0.03009242474710752,49846.431871335975,10,5,10,10_1,10_4,10_0_0 +18414,0,81.0,0.0,7,211,1216.0,0.0,0.0,0,77,0.0,0.0,2073.5238607404262,1276.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,118433,2,1,2,0,1,,258.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,749.061661685156,1216.0,17496.83870114748,0,6,0,1,101.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07292745974256007,17496.83870114748,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +18415,2,50.0,0.0,6,112,0.0,0.0,0.0,85,64,0.0,0.0,0.0,1281.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,118434,2,1,1,0,1,,275.0,,42,2.0,1.0,5.0,4.0,2.5,4,3,1700.84849406428,0.0,31474.99478520798,6,1,1,2,100.0,7,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040698974177495975,12589.997914083191,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +18416,2,60.0,0.0,5,111,592.0,517.0,0.0,78,75,0.0,0.0,1009.4787216762602,1109.0,0.0,981.5265927848709,33,1,2,2,2,1,2,2,1,0,,1,,3,118435,2,1,2,0,1,,163.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1110.9661015133,592.0,44603.55892512524,5,5,0,1,90.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.024863486832107897,29735.70595008349,8,4,8,8_1,8_2,8_0_0 +18417,2,83.0,0.0,1,211,2000.0,0.0,0.0,77,74,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118436,2,2,1,0,1,,300.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1205.33786376493,2000.0,50103.89818063481,5,5,0,1,162.0,3,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03991705381464713,33402.598787089875,8,4,8,8_1,8_2,8_1_0 +18418,2,41.0,0.0,8,111,597.0,997.0,0.0,55,54,0.0,0.0,1018.0047243931206,1594.0,0.0,1892.8085357959696,20,0,0,0,0,0,0,0,0,2,15.0,2,1999.0,6,118437,2,2,0,0,1,,589.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1148.55812770605,597.0,109958.95113537923,1,1,1,2,84.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01449631870385431,52361.405302561536,10,5,10,10_0,10_2,10_0_0 +18419,2,25.0,0.0,6,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,759.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,118438,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,485.364088679856,0.0,14170.001442643901,0,4,2,3,40.0,8,6,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0535638618720128,14170.001442643901,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +18420,1,39.0,458.0,1,111,520.0,1600.0,0.0,85,67,0.0,0.0,886.7042825534718,2245.0,173.19865317456512,3037.6064767036623,71,2,2,2,2,1,2,2,2,0,,1,,1,118439,2,2,2,0,1,,1000.0,423.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,207.226731314868,520.0,11402.701485303473,6,4,2,3,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.19688316868537678,4385.654417424413,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +18421,2,57.0,0.0,6,111,540.0,1200.0,0.0,85,62,0.0,0.0,920.8082934209131,1740.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,118440,1,1,3,0,1,,200.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1021.06881867199,540.0,24170.381791224278,7,1,0,1,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07198893319226571,16113.587860816186,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +18422,2,59.0,0.0,5,222,466.0,1424.0,0.0,77,75,0.0,0.0,794.6234532113805,1890.0,0.0,2703.4697642662595,33,0,0,0,0,0,0,0,0,0,,1,,3,118441,1,1,2,0,1,,660.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1306.20935467215,466.0,39766.321814014766,7,5,0,1,120.0,1,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047527654401617575,26510.881209343177,7,4,7,7_1,7_0,7_0_0 +18423,2,51.0,0.0,6,111,420.0,,,46,62,0.0,0.0,,520.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,3,60.0,1,,4,118442,1,3,0,0,2,,450.0,440.0,43,2.0,0.0,4.0,2.0,1.5,2,2,118.25634906367945,420.0,54350.94082428274,1,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009567451678180997,36233.96054952183,9,5,9,9_1,9_2,9_0_0 +18424,2,76.0,0.0,2,111,230.0,60.0,0.0,0,75,0.0,0.0,392.1961249755741,290.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,2,,2,118443,2,3,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,802.677909024217,230.0,19497.42157274571,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014873761585243344,19497.42157274571,5,3,5,5_0,5_4,5_0_1 +18425,2,44.0,0.0,9,111,700.0,1000.0,0.0,0,54,0.0,0.0,1193.6403803604428,1700.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,118444,1,3,1,0,1,,500.0,550.0,32,1.0,0.0,4.0,4.0,2.1,2,2,1370.95131561266,700.0,18658.019801917988,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09111363467548926,8884.771334246661,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +18426,2,57.0,0.0,9,111,282.0,,,0,63,0.0,0.0,,332.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,118445,2,1,0,0,2,,356.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,118.59642954049494,282.0,6599.0,0,4,0,1,88.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05031065312926201,6599.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18427,2,53.0,0.0,7,112,1800.0,0.0,0.0,46,22,0.0,0.0,3069.36097806971,1860.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,118446,2,1,1,0,1,,500.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,419.404394418894,1800.0,47273.706204730675,1,1,0,1,120.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039345339075908335,31515.804136487117,8,4,8,8_1,8_1,8_0_0 +18428,2,75.0,0.0,5,112,1782.0,0.0,0.0,75,74,0.0,0.0,3038.667368289013,1932.0,207.83838380947813,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,118447,2,1,3,0,1,,416.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1594.68202528584,1782.0,47598.69696167646,5,5,0,1,95.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04058934641751911,31732.46464111764,8,4,8,8_1,8_1,8_0_0 +18429,2,51.0,0.0,9,111,960.0,0.0,0.0,54,12,0.0,0.0,1636.9925216371787,1393.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2011.0,6,118448,2,1,1,0,1,,0.0,,43,2.0,1.0,2.0,4.0,2.1,2,2,1373.31787166857,960.0,10287.072535990797,4,1,0,1,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13541267402620036,4898.605969519427,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +18430,2,80.0,0.0,6,111,556.0,1834.0,0.0,75,72,0.0,0.0,948.091502114866,2390.0,0.0,3481.856423921573,50,0,0,0,0,0,0,0,0,0,,1,,4,118449,2,1,2,0,1,,332.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,838.55034103708,556.0,54055.898494878085,5,5,0,1,157.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044213491340384575,36037.26566325206,9,5,9,9_1,9_3,9_0_0 +18431,1,44.0,16.0,6,111,695.0,0.0,0.0,0,52,0.0,0.0,1185.1143776435824,755.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,118450,1,3,0,1,2,,314.0,403.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1643.23516373597,695.0,12248.407438639071,0,1,2,3,45.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06164066665665137,12248.407438639071,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +18432,2,54.0,0.0,7,111,650.0,,,78,52,0.0,132.4327277010224,,970.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,118451,2,2,0,0,2,,900.0,,42,1.0,8.0,6.0,3.0,2.0,3,2,109.54464962567978,650.0,25537.794473399,7,1,0,1,86.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03798291982537426,12768.8972366995,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18434,2,79.0,0.0,2,111,350.0,940.0,0.0,75,77,0.0,0.0,596.8201901802214,1290.0,0.0,1784.5938050634018,70,0,0,0,0,0,0,0,0,0,,1,,2,118453,2,1,3,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1767.73174000953,350.0,23395.07270576914,5,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05513981581608381,15596.715137179426,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +18435,2,50.0,0.0,7,112,550.0,0.0,0.0,45,47,0.0,264.8654554020448,937.8602988546337,750.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,118454,2,1,2,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,602.73283092194,550.0,64736.81089847183,1,1,1,2,170.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011585371438457814,43157.87393231455,9,5,9,9_1,9_0,9_0_0 +18436,2,64.0,0.0,5,112,480.0,0.0,0.0,77,75,1054.6828510366015,549.5958199592429,818.4962608185893,1927.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118455,2,1,1,0,1,,150.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1208.722757165,480.0,34564.4184827886,5,5,0,1,120.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05575097411112391,23042.945655192398,6,3,6,6_1,6_0,6_0_0 +18437,0,86.0,0.0,2,111,339.0,2310.0,0.0,0,75,0.0,0.0,578.0629842031287,2649.0,0.0,4385.544350740913,60,2,2,2,1,1,2,2,2,0,,1,,2,118456,2,2,3,0,2,,179.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,637.735912541992,339.0,21744.259403558,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.1218252574546892,21744.259403558,6,3,6,6_1,6_4,6_0_1 +18438,2,37.0,0.0,1,111,700.0,0.0,0.0,85,56,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,118457,1,3,0,0,2,,0.0,,42,1.0,0.0,1.0,2.0,1.5,2,2,1078.0041680608,700.0,21414.996130041825,6,4,1,2,9.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03268737457383948,14276.66408669455,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +18439,2,49.0,0.0,6,221,1000.0,0.0,0.0,55,63,0.0,794.5963662061343,1705.2005433720612,1720.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,4,118458,2,2,3,0,1,,450.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1016.55907205468,1000.0,51513.231302713175,1,1,1,2,110.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03338947987736519,34342.154201808786,9,5,9,9_1,9_1,9_0_0 +18440,2,37.0,0.0,9,120,1186.0,0.0,0.0,43,53,0.0,0.0,2022.3678444392644,1186.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,118459,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,567.748975196859,1186.0,55932.20034665333,1,1,1,2,145.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021204243577929677,23305.08347777222,6,3,6,6_1,6_0,6_0_0 +18441,1,34.0,293.0,2,111,0.0,0.0,420.0,85,47,0.0,0.0,264.7336819741924,420.0,0.0,502.627501977166,50,2,1,2,1,2,2,2,2,0,,2,,2,118460,1,3,0,1,2,456.0,0.0,270.0,42,1.0,0.0,2.0,3.0,1.8,2,2,431.286492442312,0.0,9447.253031828985,6,4,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.044457367510425214,5248.473906571658,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18442,2,73.0,0.0,7,111,960.0,0.0,0.0,77,74,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,118461,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,681.972859570227,960.0,64642.86630342582,5,5,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014850826624764375,43095.24420228388,9,5,9,9_0,9_4,9_0_0 +18443,0,69.0,0.0,5,211,168.0,,,0,78,0.0,0.0,,300.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,118462,2,3,0,0,2,,120.0,,11,0.0,3.0,1.0,1.0,1.0,1,1,117.80098349566937,168.0,20216.800000000003,0,5,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014839143682481895,20216.800000000003,5,3,5,5_1,5_2,5_0_0 +18444,1,40.0,185.0,2,111,213.0,421.0,0.0,0,63,0.0,0.0,363.207715738249,634.0,0.0,799.2702041826511,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,118463,2,2,0,0,1,,0.0,219.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1287.93627893134,213.0,4489.258885054123,0,1,2,3,48.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.14122598322648447,4489.258885054123,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18445,1,47.0,110.0,9,400,600.0,,,0,52,0.0,0.0,,864.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,118464,2,1,0,0,1,,390.0,650.0,32,2.0,1.0,4.0,4.0,2.3,3,3,103.70180698557031,600.0,45585.53721475282,0,1,2,3,114.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.018953379795212423,19819.798789022967,5,3,5,5_1,5_1,5_0_0 +18446,2,38.0,0.0,9,211,870.0,,,52,53,0.0,0.0,,974.0,144.10127944123818,,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,118465,2,1,0,0,1,,500.0,548.0,43,2.0,0.0,3.0,4.0,2.3,3,3,113.89924559691823,870.0,69975.24538750696,1,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013919208065741106,30424.019733698682,8,4,8,8_1,8_2,8_0_0 +18447,2,61.0,0.0,6,212,1500.0,0.0,0.0,56,78,0.0,595.9472746546007,2557.8008150580918,1986.0,49.88121211427475,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,118466,2,2,2,0,1,,300.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,916.531415088691,1500.0,23253.541456647068,4,5,0,1,80.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08540634568298405,15502.360971098045,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +18448,2,35.0,0.0,6,120,770.0,0.0,0.0,52,62,0.0,1191.8945493092015,1313.0044183964872,1745.0,103.91919190473907,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,,4,118467,2,2,2,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,105.270683581374,770.0,46160.147282947044,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03780317227550649,25644.52626830391,7,4,7,7_1,7_0,7_0_0 +18449,2,54.0,0.0,8,111,960.0,,,45,35,0.0,0.0,,1026.0,91.44888887617039,,41,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,118468,2,1,0,0,2,,540.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,126.51116930801136,960.0,105342.37388923283,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009739670392076372,58523.54104957379,10,5,10,10_1,10_3,10_0_0 +18450,2,64.0,0.0,2,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1636.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,118469,2,2,5,0,1,,373.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1166.79972358415,0.0,13910.19028354962,0,5,0,1,84.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11761161901104658,13910.19028354962,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +18451,2,83.0,0.0,2,111,250.0,,,0,77,0.0,0.0,,316.0,91.44888887617039,,71,2,2,2,2,1,2,2,2,0,,1,,2,118470,1,2,0,0,2,,100.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,121.483430756056,250.0,9884.754237288136,0,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.031968422523643236,9884.754237288136,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +18452,1,30.0,243.0,2,111,120.0,500.0,0.0,0,55,0.0,0.0,204.62406520464734,620.0,0.0,949.2520239698945,50,2,2,1,2,1,2,2,2,0,,2,,2,118471,2,2,0,0,2,32.0,200.0,353.0,12,1.0,0.0,2.0,1.0,1.0,1,1,288.902295099795,120.0,9106.6997346038,0,4,2,3,54.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.06808174399822506,9106.6997346038,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18453,2,49.0,0.0,2,112,311.0,1271.0,0.0,52,46,0.0,0.0,530.317368988711,1582.0,0.0,2412.998644931472,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,118472,2,2,3,0,1,,350.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,1660.17392978652,311.0,45642.337175427136,1,1,1,2,80.0,9,2,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03466080174465113,19844.494424098757,5,3,5,5_1,5_1,5_0_1 +18454,2,81.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,118473,2,1,0,1,1,831.0,0.0,540.0,11,0.0,4.0,4.0,1.0,1.0,1,1,989.615988453843,300.0,26128.493608346947,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011481718176977592,26128.493608346947,7,4,7,7_0,7_4,7_0_1 +18456,2,55.0,0.0,2,111,255.0,56.0,0.0,0,47,0.0,0.0,434.8261385598756,311.0,0.0,106.31622668462819,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,118475,2,3,0,1,1,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,302.435244805053,255.0,29603.67028362485,0,1,1,2,65.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010505454121748829,29603.67028362485,8,4,8,8_0,8_2,8_0_1 +18457,2,46.0,0.0,2,111,600.0,800.0,0.0,0,46,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,0,,2,,2,118476,2,1,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1884.09062350082,600.0,55917.5875842211,0,1,1,2,67.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025036845480706213,55917.5875842211,10,5,10,10_0,10_3,10_0_1 +18458,2,57.0,0.0,6,111,1300.0,0.0,0.0,81,81,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,118477,2,1,0,1,1,450.0,0.0,457.0,43,2.0,1.0,3.0,2.0,1.5,2,2,336.575572766076,1300.0,24378.64224671651,4,4,2,3,109.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.053325365163644146,16252.428164477673,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +18460,2,64.0,0.0,5,112,658.0,0.0,0.0,75,75,0.0,238.3789098618403,1122.0219575388162,958.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,118479,2,1,1,0,1,,486.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,386.988616527235,658.0,41619.86071385373,5,5,0,1,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02301785694542502,27746.573809235822,7,4,7,7_1,7_0,7_0_0 +18461,2,72.0,0.0,2,111,700.0,2780.0,0.0,74,74,0.0,0.0,1193.6403803604428,3480.0,0.0,5277.841253272613,12,0,0,0,0,0,0,0,0,0,,1,,2,118480,2,2,2,0,1,,370.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1769.53904867353,700.0,99820.71134961715,5,5,0,1,200.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03486250451383251,66547.14089974477,10,5,10,10_1,10_2,10_0_1 +18462,2,48.0,0.0,5,111,1700.0,0.0,0.0,85,65,1054.6828510366015,0.0,2898.840923732504,3060.0,498.81212114274757,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,118481,2,1,1,0,1,,264.0,,42,1.0,1.0,5.0,6.0,3.0999999999999996,4,4,1374.2596547598,1700.0,20246.613404604886,6,1,1,2,98.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15113638705147767,6531.165614388674,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18463,2,26.0,0.0,2,111,0.0,0.0,0.0,56,37,0.0,0.0,0.0,1151.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,118482,2,3,0,0,1,,280.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1606.7737577172,0.0,25516.57054753422,1,1,1,2,59.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04510794261540081,17011.04703168948,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +18464,2,35.0,0.0,2,111,0.0,0.0,500.0,43,38,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,31,2,2,1,1,1,2,2,2,2,45.0,2,,2,118483,1,3,0,1,2,474.0,0.0,979.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1014.29278239497,0.0,57939.84469689942,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.008629639976006994,38626.56313126628,9,5,9,9_0,9_4,9_0_1 +18465,2,66.0,0.0,2,211,150.0,0.0,0.0,0,75,0.0,0.0,255.78008150580916,185.0,48.49562288887823,0.0,50,2,1,2,2,2,2,2,1,0,,2,,2,118484,2,1,0,1,1,265.0,192.0,168.0,11,0.0,3.0,1.0,1.0,1.0,1,1,318.74596605344,150.0,21219.358753399418,0,5,2,3,62.0,4,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008718453849146705,21219.358753399418,5,3,5,5_0,5_2,5_0_1 +18466,1,59.0,130.0,2,111,400.0,400.0,0.0,21,52,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,60,2,2,2,2,2,2,2,1,0,,2,,2,118485,2,2,0,1,1,945.0,0.0,388.0,43,2.0,0.0,5.0,5.0,2.4,2,2,642.171351978595,400.0,13623.4115755627,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05872244228714472,5676.4214898177925,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +18467,2,63.0,0.0,6,111,389.0,693.0,0.0,77,38,0.0,0.0,663.3230113717318,1082.0,0.0,1315.6633052222737,10,0,0,0,0,0,0,0,0,2,35.0,2,,4,118486,2,1,0,0,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,473.486979143101,389.0,83557.01332578431,5,1,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01294924216332793,55704.67555052287,10,5,10,10_0,10_4,10_0_0 +18468,2,53.0,0.0,1,112,920.0,0.0,0.0,78,54,2636.7071275915036,172.1625460113291,1568.7844999022964,3550.0,0.0,0.0,60,0,0,0,0,0,0,0,0,4,120.0,1,,1,118487,2,1,2,0,1,,410.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,695.377960730128,920.0,66085.90180684044,7,1,0,1,130.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05371796257507597,44057.26787122696,10,5,10,10_1,10_0,10_1_0 +18469,2,52.0,0.0,7,111,615.0,1598.0,0.0,0,45,0.0,0.0,1048.6983341738176,2213.0,0.0,3033.809468607783,42,0,0,0,0,0,0,0,0,2,5.0,1,,5,118488,2,1,2,0,1,,677.0,,32,1.0,0.0,6.0,4.0,2.5,4,3,309.45936990544,615.0,41138.22469564262,0,1,1,2,108.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05379425136530994,16455.28987825705,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +18470,0,57.0,0.0,1,112,1104.0,0.0,0.0,56,63,1476.555991451242,0.0,1882.5413998827555,2504.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118489,2,1,2,0,1,,0.0,,43,4.0,1.0,5.0,5.0,3.0,5,4,763.622418608926,1104.0,63996.80133773059,1,1,5,0,80.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03912695552994329,21332.267112576865,6,3,6,6_1,6_0,6_1_0 +18471,1,28.0,420.0,5,111,900.0,0.0,0.0,0,52,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118490,2,1,0,1,1,,600.0,525.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1509.00206759896,900.0,13297.350177268827,0,4,2,3,78.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06768265767254188,8310.843860793017,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +18472,2,75.0,0.0,6,111,800.0,,,0,86,0.0,0.0,,1200.0,554.2356901586083,,71,0,0,0,0,0,0,0,0,0,,1,,4,118491,1,3,0,0,2,,600.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,117.88013891469765,800.0,21197.77657623443,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05660971072529191,14131.851050822954,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +18473,2,60.0,0.0,7,112,610.0,,,85,64,0.0,0.0,,700.0,124.70303028568689,,60,0,0,0,0,0,0,0,0,2,25.0,1,,5,118492,2,1,0,0,2,,700.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,81.24529308041659,610.0,9378.745264448475,6,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07463684962779124,6252.49684296565,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +18474,2,67.0,0.0,5,112,406.0,1153.0,0.0,77,78,0.0,0.0,692.3114206090569,1559.0,0.0,2188.9751672745765,44,0,0,0,0,0,0,0,0,0,,1,,3,118493,2,2,2,0,1,,325.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,894.13109582863,406.0,38949.143655749824,5,5,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04002655395402652,25966.095770499884,7,4,7,7_1,7_1,7_0_0 +18475,2,84.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,511.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,118494,2,1,2,0,1,,496.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,834.429566915275,0.0,46132.06938696734,5,5,0,1,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011076893076562512,30754.712924644893,8,4,8,8_1,8_4,8_0_1 +18476,1,42.0,169.0,7,112,0.0,,,85,90,0.0,0.0,,971.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,2,,5,118495,2,1,0,0,2,,400.0,495.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,3,2,87.2314136059333,0.0,39968.290975657015,7,4,2,3,65.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024294258680997764,15372.419606021931,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +18477,2,71.0,0.0,2,111,450.0,108.0,0.0,72,77,0.0,0.0,767.3402445174275,558.0,0.0,205.0384371774972,70,0,0,0,0,0,0,0,0,0,,2,,2,118496,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,835.634506919399,450.0,49743.36141457273,5,5,0,1,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011217577263215052,33162.24094304849,8,4,8,8_0,8_4,8_0_1 +18478,2,56.0,0.0,6,111,400.0,,,63,52,0.0,0.0,,640.0,332.541414095165,,42,0,0,0,0,0,0,0,0,0,,1,,4,118497,2,1,0,0,2,,500.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,117.68423820352254,400.0,14194.115606936417,4,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045089107185180534,9462.743737957611,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18479,2,39.0,0.0,1,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,677.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,118498,2,1,0,0,1,,0.0,340.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1042.19694174265,0.0,37816.028618143755,7,1,2,3,38.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017902461594689563,25210.68574542917,7,4,7,7_0,7_4,7_1_0 +18480,1,60.0,105.0,6,111,500.0,480.0,0.0,85,67,0.0,0.0,852.6002716860306,980.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,2,60.0,2,,4,118499,2,2,0,1,1,,0.0,725.0,42,2.0,0.0,5.0,6.0,3.5,6,5,155.124641160355,500.0,52082.08013421862,6,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01881645275062904,14880.594324062462,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +18481,1,44.0,140.0,1,112,900.0,0.0,0.0,0,69,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,118500,2,1,2,0,1,,200.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2034.08551914474,900.0,9566.37417040441,0,1,2,3,39.0,6,1,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.10035150025492019,9566.37417040441,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +18482,1,64.0,47.0,1,112,1199.0,0.0,0.0,0,77,0.0,0.0,2044.5354515031013,1224.0,34.63973063491302,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,118501,2,2,3,0,1,,242.0,500.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1026.12915374238,1199.0,12542.550998320661,0,5,2,3,60.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0.09758780332357293,12542.550998320661,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +18483,2,63.0,0.0,2,111,210.0,194.0,0.0,0,77,0.0,0.0,358.0921141081328,404.0,0.0,368.30978530031905,31,0,0,0,0,0,0,0,0,0,,2,,2,118502,2,1,0,1,1,860.0,150.0,217.0,11,0.0,2.0,2.0,1.0,1.0,1,1,468.075162979469,210.0,20674.189978100425,0,5,2,3,30.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019541273463576835,20674.189978100425,5,3,5,5_0,5_3,5_0_1 +18484,2,26.0,0.0,1,111,150.0,0.0,0.0,0,47,0.0,0.0,255.78008150580916,150.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,30.0,2,,1,118503,2,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,921.672094883988,150.0,20781.600239800835,0,1,0,1,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007217923464465485,20781.600239800835,5,3,5,5_0,5_4,5_1_0 +18485,2,52.0,0.0,1,211,360.0,0.0,0.0,0,85,0.0,132.4327277010224,613.872195613942,492.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118504,2,2,2,0,1,,100.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,2196.10259347137,360.0,18299.567122186516,0,7,0,1,30.0,2,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02688588187441308,18299.567122186516,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +18486,2,69.0,0.0,5,111,660.0,1150.0,0.0,77,75,0.0,0.0,1125.4323586255605,1810.0,0.0,2183.2796551307574,71,1,2,2,1,2,2,2,2,0,,1,,3,118505,2,1,2,0,1,,330.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,315.381545601276,660.0,28804.261956831568,5,5,0,1,95.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06283792317652903,19202.84130455438,5,3,5,5_1,5_2,5_0_0 +18487,2,28.0,0.0,5,111,600.0,0.0,0.0,34,34,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,3,118506,1,3,0,0,1,,0.0,536.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1207.21104583735,600.0,19708.46984779318,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030443763754048305,13138.979898528787,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +18488,2,61.0,0.0,5,111,1200.0,0.0,0.0,74,31,2531.2388424878436,0.0,2046.2406520464733,3600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,118507,2,1,2,0,1,,1200.0,,42,1.0,1.0,7.0,2.0,1.5,2,2,1398.53279807482,1200.0,68316.87521834561,6,1,0,1,250.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052695618593416975,45544.583478897075,10,5,10,10_1,10_3,10_0_0 +18489,2,48.0,0.0,1,112,2200.0,0.0,0.0,85,47,0.0,0.0,3751.441195418535,2330.0,180.1265993015477,0.0,43,0,0,0,0,0,0,0,0,3,75.0,1,,1,118508,2,1,2,0,1,,500.0,,42,1.0,0.0,10.0,4.0,2.5,4,3,75.1189955074653,2200.0,30184.913518720285,6,1,0,1,250.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07719087876647268,12073.965407488115,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +18490,2,66.0,0.0,5,111,288.0,,,0,77,0.0,0.0,,414.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,,3,118509,2,1,0,0,2,,200.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,131.61560977566808,288.0,43756.890528745396,0,5,0,1,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009461366998370902,43756.890528745396,10,5,10,10_1,10_2,10_0_0 +18491,2,64.0,0.0,2,111,420.0,,,0,77,0.0,0.0,,495.0,103.91919190473907,,43,0,0,0,0,0,0,0,0,0,,2,,2,118510,2,2,0,0,2,,345.0,201.0,11,0.0,0.0,2.0,1.0,1.0,1,1,132.6879670333394,420.0,18717.46651908171,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026445886760121474,18717.46651908171,5,3,5,5_0,5_3,5_0_1 +18492,2,38.0,0.0,9,111,0.0,,,54,52,0.0,0.0,,364.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,2005.0,6,118511,2,1,0,0,1,,318.0,625.0,43,2.0,0.0,2.0,2.0,1.5,2,2,152.73318116810316,0.0,52686.98031236012,1,1,3,4,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006908727694052477,35124.65354157342,9,5,9,9_0,9_3,9_0_0 +18493,2,43.0,0.0,1,111,1056.0,924.0,0.0,56,53,0.0,0.0,1800.6917738008965,1980.0,0.0,1754.217740296365,60,2,2,1,2,1,2,2,1,1,25.0,1,,1,118512,2,1,1,0,1,,445.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,1017.66588914094,1056.0,50470.856176410685,1,1,1,2,97.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03923056096134589,18025.30577728953,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +18494,2,77.0,0.0,2,111,450.0,,,0,74,0.0,0.0,,624.0,241.09252521899464,,44,0,0,0,0,0,0,0,0,0,,1,,2,118513,2,1,0,0,2,,360.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,182.90191770409137,450.0,56321.55612938512,0,5,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011079239333631181,56321.55612938512,10,5,10,10_1,10_2,10_0_1 +18495,1,39.0,200.0,1,111,0.0,0.0,2400.0,85,65,0.0,0.0,1512.763896995385,2480.0,110.84713803172167,2872.157154155234,50,2,2,2,2,1,1,2,2,2,5.0,1,,1,118514,1,3,1,0,2,,1200.0,605.0,42,1.0,0.0,6.0,5.0,2.5999999999999996,3,2,347.850530165445,0.0,30825.933176278868,6,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.08045174126012855,11856.128144722643,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +18496,2,67.0,0.0,2,111,200.0,692.0,0.0,0,77,0.0,0.0,341.04010867441224,892.0,0.0,1313.764801174334,70,0,0,0,0,0,0,0,0,0,,1,,2,118515,2,2,1,0,1,,146.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1187.73599930045,200.0,14621.133985299282,0,5,0,1,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06100757991116525,14621.133985299282,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +18497,2,62.0,0.0,2,111,470.0,1200.0,0.0,77,77,0.0,0.0,801.4442553848687,1670.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,118516,2,1,2,0,2,,600.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,555.751124362566,470.0,25634.53584091943,5,5,0,1,150.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06514648871988712,17089.690560612955,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +18498,2,46.0,0.0,5,111,0.0,0.0,860.0,54,47,0.0,0.0,542.0737297566797,860.0,0.0,1029.1896469056255,42,2,2,2,1,1,1,2,2,0,,2,,3,118517,2,2,0,0,1,,0.0,604.0,43,2.0,1.0,4.0,4.0,2.3,3,3,316.079248248346,0.0,46486.95525294103,1,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.018499813449184575,20211.719675191755,5,3,5,5_0,5_3,5_0_0 +18499,2,39.0,0.0,1,111,1000.0,0.0,0.0,55,85,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,1,118518,1,1,0,0,1,,0.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1635.49379181314,1000.0,20421.40322936374,1,7,1,2,96.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.048968231456402056,13614.268819575826,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +18500,2,49.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1564.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,25.0,8,,2,118519,1,1,0,1,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,550.607400671665,0.0,20003.751619466075,0,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0781853339189654,20003.751619466075,5,3,5,5_0,5_4,5_0_1 +18501,2,44.0,0.0,8,211,1380.0,,,56,21,0.0,0.0,,1656.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118520,2,1,0,0,2,,630.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,121.30464181727413,1380.0,22871.668745202976,1,1,0,1,108.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07240398671598125,11435.834372601488,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18502,2,39.0,0.0,5,111,400.0,1180.0,0.0,37,37,0.0,0.0,682.0802173488245,1580.0,0.0,2240.234776568951,12,0,0,0,0,0,0,0,0,2,75.0,1,,3,118521,2,1,2,0,1,,273.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,245.50286406485,400.0,29718.586264453374,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05316538229444144,11006.8838016494,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +18503,2,81.0,0.0,1,111,138.0,,,0,72,0.0,0.0,,276.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,118522,1,2,0,0,2,,80.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,88.28248222489471,138.0,14932.8934169279,0,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01848268733285988,14932.8934169279,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +18504,2,54.0,0.0,2,300,1500.0,0.0,0.0,22,46,0.0,0.0,2557.8008150580918,3750.0,3117.5757571421723,0.0,60,0,0,0,0,0,0,0,0,2,8.0,8,,2,118523,2,1,0,0,2,,553.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1778.59817462261,1500.0,57918.022493817516,1,1,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06474668572118973,38612.014995878344,9,5,9,9_0,9_0,9_0_1 +18505,2,83.0,0.0,5,111,230.0,0.0,0.0,0,72,0.0,0.0,392.1961249755741,1549.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118524,2,1,0,1,1,,465.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2111.77180074928,230.0,30008.455745815616,0,5,0,1,89.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05161878415606217,30008.455745815616,8,4,8,8_0,8_3,8_0_0 +18507,2,73.0,0.0,1,112,1500.0,0.0,0.0,77,74,0.0,0.0,2557.8008150580918,1576.0,105.3047811301356,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,118526,1,3,4,0,2,,320.0,630.0,41,0.0,2.0,4.0,2.0,1.5,2,2,642.151293211517,1500.0,38719.999252146416,5,5,2,3,87.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04070248012498697,25813.33283476428,7,4,7,7_1,7_0,7_1_0 +18508,2,51.0,0.0,2,111,402.0,,,90,85,0.0,0.0,,902.0,692.7946126982605,,71,0,0,0,0,0,0,0,0,0,,1,,2,118527,2,3,0,0,1,,469.0,220.0,42,1.0,1.0,2.0,3.0,2.0,3,2,122.01348976354116,402.0,11880.866666666667,4,7,2,3,40.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07592038740159247,5940.433333333333,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +18509,2,50.0,0.0,6,111,500.0,,,67,63,0.0,0.0,,700.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,3,60.0,1,,4,118528,2,1,0,0,2,,360.0,,43,2.0,5.0,3.0,2.0,1.5,2,2,132.1686289896523,500.0,28909.326533939075,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02421363912363062,19272.884355959384,5,3,5,5_1,5_3,5_0_0 +18510,2,38.0,0.0,5,112,0.0,0.0,0.0,85,67,0.0,0.0,0.0,628.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,1.0,2,,3,118529,1,2,0,0,1,,258.0,380.0,42,1.0,0.0,2.0,3.0,1.8,2,2,297.997345062232,0.0,16787.017531996455,6,1,2,3,52.0,10,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03740986144817071,9326.12085110914,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +18511,1,43.0,98.0,9,300,1617.0,0.0,0.0,56,63,0.0,71.51367295855209,2757.309278632623,1757.0,119.71490907425942,0.0,71,2,2,1,1,2,2,2,2,2,10.0,1,2007.0,6,118530,2,1,1,0,1,,185.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,1289.49049480612,1617.0,27651.820221406684,1,1,1,2,135.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.06354012090096756,10635.315469771804,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +18512,1,58.0,106.0,5,111,210.0,100.0,0.0,0,77,0.0,0.0,358.0921141081328,310.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,3,118531,1,2,0,1,1,726.0,190.0,275.0,11,0.0,0.0,3.0,1.0,1.0,1,1,376.586673810983,210.0,10951.116554222022,0,5,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028307615800188392,10951.116554222022,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +18513,2,63.0,0.0,7,111,1500.0,0.0,0.0,0,75,0.0,662.163638505112,2557.8008150580918,2060.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,118532,2,2,3,0,1,,132.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,514.438882424624,1500.0,52101.267641314465,0,5,0,1,165.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03953838540324675,52101.267641314465,10,5,10,10_1,10_3,10_0_0 +18514,1,59.0,270.0,1,111,450.0,1500.0,0.0,0,75,0.0,0.0,767.3402445174275,1950.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,,1,118533,1,1,2,0,1,,230.0,269.0,11,0.0,0.0,2.0,1.0,1.0,1,1,302.246055433617,450.0,11152.284193828744,0,7,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1748520721054667,11152.284193828744,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +18515,1,47.0,150.0,8,120,850.0,0.0,0.0,52,43,2109.365702073203,0.0,1449.420461866252,2880.0,41.567676761895626,0.0,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118534,2,2,5,0,1,,950.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,602.212591061511,850.0,63888.158710153744,1,1,1,2,113.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04507877606969258,25555.2634840615,7,4,7,7_1,7_0,7_0_0 +18516,2,58.0,0.0,6,111,0.0,,,0,56,0.0,0.0,,1057.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,118535,2,2,0,0,2,,361.0,102.0,12,1.0,2.0,2.0,1.0,1.0,1,1,32.790208710013424,0.0,26564.943216937223,0,4,3,4,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03978928136108644,26564.943216937223,7,4,7,7_1,7_2,7_0_0 +18517,2,64.0,0.0,8,221,1200.0,0.0,0.0,0,47,0.0,0.0,2046.2406520464733,1360.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,118536,2,1,1,0,1,,250.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,2534.6013127202,1200.0,30983.392591626114,0,1,1,2,80.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04389448301951179,30983.392591626114,8,4,8,8_1,8_1,8_0_0 +18519,0,68.0,0.0,6,211,1200.0,,,22,77,0.0,0.0,,1380.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,4,118538,1,2,0,0,2,,240.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,110.13918820814193,1200.0,52335.060411843486,1,5,0,1,175.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026368556549668267,34890.04027456232,9,5,9,9_1,9_2,9_0_0 +18520,1,48.0,412.0,2,111,420.0,240.0,0.0,56,68,0.0,0.0,716.1842282162656,660.0,0.0,455.6409715055494,60,0,0,0,0,0,0,0,0,1,10.0,2,,2,118539,2,1,0,1,1,1040.0,0.0,372.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,306.275144035823,420.0,25643.36680778224,4,1,2,3,65.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02573765001090666,9862.833387608556,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +18522,1,56.0,200.0,1,300,300.0,0.0,0.0,85,45,0.0,0.0,511.56016301161833,480.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,1,118541,1,1,2,0,1,,250.0,400.0,42,2.0,0.0,3.0,3.0,2.0,3,3,929.643504701308,300.0,21361.72425329148,6,1,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.02247009624824832,10680.86212664574,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +18523,1,47.0,200.0,2,111,1000.0,0.0,0.0,0,69,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,118542,1,2,0,0,1,,300.0,250.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1415.856923797,1000.0,8789.65088232766,0,4,2,3,35.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.11377016145323644,8789.65088232766,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18524,2,45.0,0.0,9,111,0.0,0.0,0.0,22,65,0.0,0.0,0.0,622.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,15.0,1,2007.0,6,118543,2,2,5,0,1,,313.0,636.0,43,2.0,1.0,3.0,2.0,1.5,2,2,308.525909976941,0.0,12767.155421867068,1,1,2,3,44.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04871876149754263,8511.43694791138,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +18525,2,55.0,0.0,7,111,478.0,567.0,0.0,34,53,0.0,0.0,815.0858597318453,1045.0,0.0,1076.4517951818605,12,0,0,0,0,0,0,0,0,3,20.0,2,,5,118544,1,2,0,0,1,,0.0,1779.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,645.676820225759,478.0,80859.98629496271,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012923573795672282,31099.994728831818,8,4,8,8_0,8_4,8_0_0 +18526,1,26.0,405.0,7,111,1068.0,,,0,85,0.0,0.0,,1548.0,665.08282819033,,71,0,0,0,0,0,0,0,0,0,,2,,5,118545,2,1,0,0,2,,800.0,431.0,31,0.0,0.0,3.0,7.0,3.1999999999999993,3,3,158.07632421060828,1068.0,24147.044466381307,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06410722447441554,7545.95139574416,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +18527,2,39.0,0.0,9,300,1600.0,0.0,0.0,54,47,0.0,0.0,2728.320869395298,1690.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,118546,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,950.3597338789,1600.0,55409.734627040154,1,1,1,2,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03050005583631281,21311.436395015447,6,3,6,6_1,6_0,6_0_0 +18528,2,39.0,0.0,2,112,2140.0,0.0,0.0,67,64,0.0,0.0,3649.1291628162107,2236.0,133.01656563806603,0.0,43,2,2,2,2,2,2,2,1,2,25.0,1,,2,118547,2,2,3,0,1,,153.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,2352.74824879888,2140.0,44000.26975379934,1,1,1,2,100.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.050817870265600494,19130.552066869277,5,3,5,5_1,5_1,5_0_1 +18529,2,59.0,0.0,6,112,750.0,0.0,0.0,77,77,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,118548,2,1,2,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1214.94714661644,750.0,44601.556933266416,5,5,0,1,149.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016815556486563066,29734.37128884428,8,4,8,8_1,8_1,8_0_0 +18531,2,65.0,0.0,1,221,500.0,0.0,0.0,75,77,1582.0242765549024,185.40581878143135,852.6002716860306,2440.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118550,2,1,4,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,543.535075909999,500.0,34268.56702872626,5,5,0,1,150.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07120227694244188,22845.711352484173,6,3,6,6_1,6_1,6_1_0 +18532,1,51.0,226.0,2,111,474.0,119.0,0.0,0,67,0.0,805.1909844222162,808.265057558357,1201.0,0.0,225.92198170483488,71,0,0,0,0,0,0,0,0,0,,2,,2,118551,2,1,0,1,1,608.0,0.0,355.0,22,1.0,2.0,4.0,3.0,2.0,3,3,239.816455515564,474.0,41300.887549290936,0,1,2,3,79.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029079278225356664,20650.443774645468,5,3,5,5_0,5_3,5_0_1 +18533,2,54.0,0.0,5,111,850.0,670.0,0.0,0,42,0.0,0.0,1449.420461866252,1520.0,0.0,1271.9977121196587,41,0,0,0,0,0,0,0,0,2,60.0,1,,3,118552,1,2,5,0,1,,900.0,627.0,32,2.0,0.0,4.0,4.0,2.3,3,2,591.133370802092,850.0,52400.11456190718,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02900757016865341,22782.658505177038,6,3,6,6_1,6_4,6_0_0 +18534,2,64.0,0.0,5,211,830.0,1640.0,0.0,77,77,0.0,0.0,1415.3164509988108,2470.0,0.0,3113.546638621254,12,0,0,0,0,0,0,0,0,0,,1,,3,118553,2,1,2,0,1,,154.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,688.313975173889,830.0,73620.76832725276,5,5,0,1,106.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03355031543572822,49080.51221816851,10,5,10,10_1,10_1,10_0_0 +18535,2,38.0,0.0,2,111,700.0,0.0,0.0,52,62,0.0,1589.1927324122687,1193.6403803604428,1970.0,96.99124577775646,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,118554,2,2,1,0,1,,153.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,1186.79021722784,700.0,45949.13091111929,1,1,1,2,120.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04287349860459008,21880.538529104422,6,3,6,6_1,6_2,6_0_1 +18536,2,40.0,0.0,5,111,320.0,240.0,0.0,0,52,0.0,0.0,545.6641738790596,560.0,0.0,455.6409715055494,31,0,0,0,0,0,0,0,0,2,4.0,2,,3,118555,2,1,0,1,1,686.0,400.0,377.0,32,1.0,0.0,4.0,3.0,1.8,2,1,837.247131682654,320.0,25391.735325426776,0,4,2,3,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022054420181326764,14106.519625237097,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +18538,2,66.0,0.0,5,112,690.0,0.0,0.0,0,77,1582.0242765549024,0.0,1176.5883749267223,2260.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,118557,2,2,3,0,1,,400.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1280.48413273728,690.0,27255.591939813796,0,5,0,1,109.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08291876415638177,27255.591939813796,7,4,7,7_1,7_0,7_0_0 +18539,2,67.0,0.0,5,120,288.0,,,0,77,0.0,0.0,,564.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,118558,2,1,0,0,2,,282.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,71.43542518109531,288.0,26452.13254773533,0,5,0,1,140.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021321532355934238,26452.13254773533,7,4,7,7_1,7_0,7_0_0 +18540,2,63.0,0.0,5,111,450.0,0.0,0.0,0,52,0.0,0.0,767.3402445174275,450.0,0.0,0.0,41,2,2,1,1,2,2,2,2,4,45.0,2,,3,118559,2,1,0,0,1,,60.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1827.69086405663,450.0,26133.586152493946,0,1,0,1,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.01721922117286824,26133.586152493946,7,4,7,7_0,7_3,7_0_0 +18541,2,60.0,0.0,1,400,1500.0,0.0,0.0,77,35,0.0,397.2981831030672,2557.8008150580918,2100.0,415.67676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,118560,2,1,2,0,2,,0.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,1186.74873260154,1500.0,27779.657193274725,6,1,0,1,280.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07559488532883683,18519.77146218315,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18542,1,45.0,268.0,2,111,350.0,250.0,0.0,85,22,0.0,0.0,596.8201901802214,600.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,1,1.0,2,,2,118561,2,2,0,1,1,630.0,0.0,384.0,42,2.0,2.0,4.0,4.0,2.5,4,4,1447.7027746667,350.0,8647.93328937615,6,1,2,3,87.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06938073871789582,3459.1733157504596,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18543,2,70.0,0.0,5,111,400.0,0.0,0.0,0,74,0.0,0.0,682.0802173488245,416.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,118562,2,1,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1042.82948194281,400.0,40741.15045310138,0,5,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010210806405157183,40741.15045310138,9,5,9,9_0,9_4,9_0_0 +18544,2,61.0,0.0,2,112,700.0,0.0,0.0,0,72,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,8,,2,118563,1,3,0,0,2,,360.0,400.0,11,0.0,2.0,3.0,1.0,1.0,1,1,3343.74273753445,700.0,12597.233177844599,0,5,2,3,80.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05556775762721659,12597.233177844599,2,1,2_0,2_0_0,2_0_0,2_0_1_0 +18545,2,31.0,0.0,9,120,0.0,0.0,0.0,45,65,0.0,0.0,0.0,1711.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,118564,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1730.87865026876,0.0,40831.609650249055,1,1,1,2,140.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04190380968705121,22684.227583471697,6,3,6,6_1,6_0,6_0_0 +18546,2,31.0,0.0,9,111,476.0,0.0,0.0,0,46,0.0,0.0,811.6754586451011,476.0,0.0,0.0,41,2,2,1,2,1,2,2,2,2,20.0,2,2006.0,6,118565,2,2,0,0,1,,94.0,523.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1627.41281460637,476.0,23741.341656544002,0,1,2,3,53.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.020049414514398203,23741.341656544002,6,3,6,6_0,6_3,6_0_0 +18547,1,62.0,235.0,2,111,400.0,0.0,0.0,0,75,0.0,0.0,682.0802173488245,400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,118566,2,3,0,1,2,272.0,0.0,410.0,11,0.0,2.0,1.0,1.0,1.0,1,1,1219.32750272656,400.0,9759.821440181438,0,5,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04098435636877429,9759.821440181438,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +18548,1,41.0,131.0,2,111,0.0,0.0,840.0,0,68,0.0,0.0,529.4673639483848,840.0,0.0,1005.255003954332,71,2,2,2,1,1,2,2,2,2,15.0,2,,2,118567,2,2,0,1,1,809.0,452.0,315.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1579.20244174377,0.0,20108.981624871463,0,1,2,3,72.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.041772378913562676,12568.113515544665,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +18549,2,66.0,0.0,5,112,314.0,64.0,0.0,75,75,908.0819347425139,0.0,535.4329706188272,1239.0,0.0,121.5042590681465,70,0,0,0,0,0,0,0,0,0,,1,,3,118568,1,1,2,0,1,,203.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,736.10190587869,314.0,39944.67422228184,5,5,0,1,130.0,7,0,5,1,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031017902239114117,26629.782814854563,7,4,7,7_1,7_0,7_0_0 +18550,2,88.0,0.0,1,300,947.0,0.0,0.0,0,71,5537.084967942158,0.0,1614.8249145733419,6267.0,96.99124577775646,0.0,70,1,2,2,1,2,2,2,2,0,,1,,1,118569,2,1,2,0,1,,87.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1910.93106281824,947.0,34784.441586364184,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.18016675600325638,34784.441586364184,9,5,9,9_1,9_0,9_1_0 +18551,1,82.0,119.0,1,111,407.0,720.0,0.0,0,78,0.0,0.0,694.0166211524289,1127.0,0.0,1366.922914516648,70,0,0,0,0,0,0,0,0,0,,2,,1,118570,2,1,0,0,2,,270.0,450.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2216.79886023566,407.0,13792.041954070492,0,7,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.08171378855669625,13792.041954070492,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +18552,2,51.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,2160.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,118571,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,864.155399848266,0.0,83030.68171542675,0,1,0,1,47.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0260144798931439,83030.68171542675,10,5,10,10_0,10_4,10_1_0 +18553,2,54.0,0.0,6,111,1546.0,0.0,0.0,0,37,0.0,0.0,2636.2400400532065,1546.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,118572,2,1,2,0,1,,143.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1290.9587849564,1546.0,52746.66003731555,0,1,0,1,90.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029309912682742082,52746.66003731555,10,5,10,10_1,10_2,10_0_0 +18554,2,51.0,0.0,7,112,1300.0,0.0,0.0,56,65,0.0,662.163638505112,2216.7607063836795,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,6.0,1,,5,118573,2,2,2,0,2,,140.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,894.177685289301,1300.0,54015.80792349606,4,1,1,2,80.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033323578211574376,36010.53861566404,9,5,9,9_1,9_0,9_0_0 +18555,2,77.0,0.0,2,400,0.0,0.0,0.0,0,71,1054.6828510366015,0.0,0.0,1150.0,207.83838380947813,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,118574,2,1,2,0,1,,194.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,961.737416261173,0.0,21753.23255156443,0,5,0,1,140.0,0,0,7,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052865706155350016,14502.155034376286,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +18556,0,51.0,0.0,7,111,1140.0,,,0,85,0.0,0.0,,1440.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,118575,2,1,0,0,2,,0.0,,31,1.0,0.0,4.0,3.0,2.0,3,2,23.171692779368552,1140.0,29472.0,0,6,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048859934853420196,14736.0,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +18557,2,49.0,0.0,1,211,2020.0,0.0,0.0,47,56,0.0,0.0,3444.5050976115635,2020.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118576,2,2,1,0,1,,940.0,,43,5.0,0.0,5.0,5.0,3.0,5,5,1402.44933704828,2020.0,36125.39925966797,4,1,1,2,100.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05591633702039716,12041.799753222656,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +18558,2,32.0,0.0,7,111,0.0,0.0,162.0,55,52,0.0,0.0,102.1115630471885,162.0,0.0,193.87060790547832,50,2,2,2,1,2,2,2,2,0,,2,,5,118577,2,1,0,0,1,,0.0,2012.0,43,2.0,2.0,3.0,3.0,1.8,2,2,1105.39804155908,0.0,41629.957186486485,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.0038914284555783035,23127.75399249249,6,3,6,6_0,6_4,6_0_0 +18559,1,59.0,368.0,2,111,240.0,110.0,0.0,0,68,0.0,0.0,409.2481304092947,440.0,124.70303028568689,208.8354452733768,50,1,2,2,2,1,2,2,2,2,10.0,2,,2,118578,2,2,0,1,1,976.0,0.0,307.0,32,1.0,5.0,5.0,2.0,1.5,2,1,1348.40376377875,240.0,12424.363405173846,0,1,2,3,91.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03541428930006763,8282.908936782564,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18560,2,63.0,0.0,8,111,255.0,477.0,0.0,63,75,0.0,0.0,434.8261385598756,732.0,0.0,905.5864308672793,42,0,0,0,0,0,0,0,0,0,,2,1999.0,6,118579,2,2,0,0,1,,0.0,488.0,42,1.0,0.0,3.0,2.0,1.5,2,2,781.745418421388,255.0,46690.21472728366,1,5,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015677803245831984,31126.809818189107,8,4,8,8_0,8_4,8_0_0 +18561,2,67.0,0.0,1,300,800.0,0.0,0.0,0,86,1898.4291318658827,0.0,1364.160434697649,2740.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118580,2,1,2,0,1,,450.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1234.09665588522,800.0,13674.476963779834,0,5,0,1,160.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20037329451485084,13674.476963779834,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +18562,1,90.0,253.0,2,111,348.0,,,77,77,0.0,0.0,,486.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,,2,118581,2,1,0,0,2,,155.0,280.0,41,0.0,12.0,4.0,2.0,1.5,2,2,158.38272380763885,348.0,8275.865933238922,5,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.058724972579370247,5517.243955492614,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18563,2,57.0,0.0,2,111,630.0,,,0,46,0.0,0.0,,660.0,41.567676761895626,,41,0,0,0,0,0,0,0,0,0,,1,,2,118582,2,1,0,0,2,,360.0,375.0,12,1.0,0.0,3.0,1.0,1.0,1,1,128.4485897935869,630.0,20170.86532212162,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032720460399691946,20170.86532212162,5,3,5,5_1,5_2,5_0_1 +18564,2,82.0,0.0,6,111,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1025.0,34.63973063491302,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,118583,2,2,0,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2171.51000399245,1000.0,24100.47993079383,0,5,0,1,69.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04253027337809692,24100.47993079383,6,3,6,6_0,6_3,6_0_0 +18565,1,67.0,179.0,6,112,0.0,0.0,900.0,77,78,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,71,0,0,0,0,0,0,0,0,0,,1,,4,118584,2,1,2,0,1,,200.0,214.0,41,0.0,0.0,2.0,2.0,1.5,2,2,359.799744221659,0.0,14601.147423315604,6,5,2,3,53.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06163899136877761,9734.098282210403,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +18566,2,29.0,0.0,1,112,890.0,1247.0,0.0,21,63,0.0,0.0,1517.6284836011343,2137.0,0.0,2367.434547780917,42,2,2,2,2,2,2,2,1,2,55.0,1,,1,118585,2,1,1,0,1,,250.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,212.437495171336,890.0,59233.79527552186,1,1,1,2,150.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.03607737761964929,28206.56917881993,8,4,8,8_1,8_0,8_1_0 +18567,2,86.0,0.0,2,111,330.0,,,0,72,0.0,0.0,,594.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,118586,1,1,0,0,2,,160.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,105.92597110094013,330.0,9520.56843533146,0,5,0,1,76.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.062391232628046314,9520.56843533146,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +18568,2,77.0,0.0,7,112,120.0,0.0,0.0,0,75,0.0,0.0,204.62406520464734,370.0,346.39730634913025,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,118587,2,1,2,0,1,,440.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,701.809583771234,120.0,29779.54968149605,0,5,0,1,110.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01242463381606824,29779.54968149605,8,4,8,8_1,8_1,8_0_0 +18569,2,29.0,0.0,5,111,300.0,0.0,0.0,54,54,0.0,0.0,511.56016301161833,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,3.0,2,,3,118588,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1437.97813732209,300.0,66351.26404449326,1,1,1,2,78.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004521390878082271,36861.81335805181,9,5,9,9_0,9_2,9_0_0 +18570,2,25.0,0.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,390.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,35.0,1,,1,118589,2,1,2,0,1,,232.0,570.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1206.65671611943,0.0,15343.125027514112,0,1,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025418550608212548,15343.125027514112,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +18571,2,51.0,0.0,1,111,600.0,0.0,0.0,53,43,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,118590,2,1,0,0,1,,0.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,940.36271312732,600.0,36327.3555627319,1,1,1,2,17.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016516478854726707,24218.237041821267,7,4,7,7_0,7_4,7_1_0 +18572,2,94.0,0.0,2,111,265.0,83.0,0.0,0,77,0.0,0.0,451.8781439935962,348.0,0.0,157.57583597900248,41,2,1,2,2,1,2,2,2,0,,2,,2,118591,2,1,0,1,1,842.0,0.0,682.0,11,0.0,5.0,3.0,1.0,1.0,1,1,1018.6479932529,265.0,41525.877969743655,0,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008380316492129504,41525.877969743655,9,5,9,9_0,9_4,9_0_1 +18573,2,71.0,0.0,2,112,148.0,0.0,0.0,0,78,0.0,0.0,252.36968041906505,148.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118592,2,1,0,1,1,380.0,0.0,256.0,11,0.0,2.0,2.0,1.0,1.0,1,1,306.263532452823,148.0,19958.044820216423,0,5,2,3,45.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00741555604936231,19958.044820216423,5,3,5,5_0,5_2,5_0_1 +18574,2,56.0,0.0,6,300,864.0,0.0,0.0,54,48,0.0,0.0,1473.293269473461,2974.0,88.67771042537734,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,4,118593,2,2,2,0,1,,228.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1174.4089995608,864.0,49938.402311316146,1,1,0,1,101.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05955336699520492,33292.2682075441,8,4,8,8_1,8_0,8_0_0 +18575,2,31.0,0.0,9,112,800.0,0.0,0.0,55,62,0.0,0.0,1364.160434697649,860.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,7.0,1,2006.0,6,118594,2,1,2,0,1,,250.0,580.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1946.08395029972,800.0,16516.0,1,1,2,3,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05207071930249455,9175.555555555555,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +18576,2,67.0,0.0,1,111,350.0,0.0,0.0,86,75,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,118595,1,1,0,1,2,612.0,250.0,359.0,41,1.0,2.0,4.0,3.0,2.0,3,3,360.28296759939,350.0,33394.514288562255,6,5,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01048076330668107,16697.257144281128,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +18577,2,64.0,0.0,2,111,800.0,350.0,0.0,52,53,0.0,1223.6784039574468,1364.160434697649,2074.0,0.0,664.4764167789261,60,2,1,2,1,1,2,2,2,3,60.0,2,,2,118596,1,3,0,1,1,1092.0,600.0,348.0,43,2.0,0.0,3.0,3.0,2.0,3,2,173.692589378635,800.0,23109.7974810011,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.08974548572764714,11554.89874050055,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +18578,2,57.0,0.0,9,120,800.0,,,22,12,0.0,0.0,,1030.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,118597,2,1,0,0,2,,504.0,,43,2.0,3.0,4.0,3.0,2.0,3,3,91.68360165615515,800.0,23149.005330749107,1,1,0,1,88.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04449435236130161,11574.502665374554,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +18579,2,64.0,0.0,5,300,390.0,0.0,0.0,0,78,1582.0242765549024,595.9472746546007,665.0282119151038,2446.0,146.87245789203124,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118598,2,2,2,0,1,,230.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1140.10974598873,390.0,12625.36066532888,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19373703966470282,12625.36066532888,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +18580,0,87.0,0.0,1,400,350.0,0.0,0.0,71,71,3164.0485531098047,0.0,596.8201901802214,3350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118599,2,2,1,0,1,,150.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1902.17461100826,350.0,21726.793754114424,5,5,0,1,150.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15418749944941174,14484.529169409616,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +18581,1,41.0,220.0,5,111,480.0,100.0,0.0,0,43,0.0,0.0,818.4962608185893,581.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,118600,2,1,0,1,1,221.0,0.0,270.0,32,1.0,0.0,3.0,2.0,1.3,1,1,283.920681576933,480.0,12797.959108234465,0,1,2,3,66.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04539786344731895,9844.583929411127,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +18582,2,57.0,0.0,5,400,700.0,0.0,0.0,11,11,0.0,0.0,1193.6403803604428,830.0,180.1265993015477,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,3,118601,1,2,3,0,2,,600.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,911.515504513646,700.0,24160.827734110997,1,1,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03435312767981788,16107.21848940733,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +18583,2,48.0,0.0,9,111,588.0,,,0,11,0.0,0.0,,672.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,118602,2,2,0,0,2,,523.0,,32,2.0,1.0,5.0,2.0,1.5,2,2,122.83707476853375,588.0,13374.315764444882,0,4,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05024556110649689,8916.210509629922,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +18584,2,42.0,0.0,9,120,0.0,,,0,47,0.0,0.0,,486.0,0.0,,31,0,0,0,0,0,0,0,0,2,5.0,2,2011.0,6,118603,2,1,0,0,1,,456.0,850.0,12,1.0,0.0,3.0,1.0,1.0,1,1,251.42008505724078,0.0,31545.857700578854,0,1,2,3,76.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015406143165068614,31545.857700578854,8,4,8,8_0,8_2,8_0_0 +18585,2,50.0,0.0,8,111,1800.0,0.0,0.0,64,62,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,118604,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,322.076641127902,1800.0,21028.603880357095,1,1,1,2,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08559769399058334,8411.441552142838,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +18586,2,63.0,0.0,1,111,1234.0,87.0,0.0,0,43,0.0,0.0,2104.2174705211237,1321.0,0.0,165.16985217076163,33,0,0,0,0,0,0,0,0,4,30.0,2,,1,118605,1,1,0,1,1,,0.0,754.0,11,0.0,2.0,3.0,1.0,1.0,1,1,860.96349509886,1234.0,30501.71427500926,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04330904119321336,30501.71427500926,8,4,8,8_0,8_4,8_1_0 +18587,2,20.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,279.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,118606,2,1,0,1,1,420.0,0.0,672.0,22,1.0,0.0,1.0,2.0,1.5,2,2,1549.98204524083,0.0,15440.253953010644,0,1,2,3,53.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018069650981718387,10293.50263534043,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +18588,2,67.0,0.0,1,111,0.0,0.0,300.0,0,78,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,71,2,2,2,2,1,2,2,2,0,,1,,1,118607,1,3,3,0,2,,1700.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,542.44587532076,0.0,11642.659458275139,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.025767308669908055,11642.659458275139,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +18589,2,78.0,0.0,1,111,230.0,800.0,0.0,86,78,0.0,0.0,392.1961249755741,1030.0,0.0,1518.8032383518312,71,2,2,2,2,2,2,2,1,0,,1,,1,118608,2,1,2,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,101.145941840817,230.0,14975.44335228866,6,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06877926588013754,9983.628901525773,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +18591,2,64.0,0.0,2,112,1800.0,0.0,0.0,77,33,0.0,0.0,3069.36097806971,1890.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,2,80.0,1,,2,118610,2,1,1,0,1,,358.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1360.16479268439,1800.0,81627.00436413685,7,1,0,1,100.0,10,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02315410218374226,54418.00290942457,10,5,10,10_1,10_1,10_0_1 +18592,1,58.0,200.0,6,111,300.0,600.0,0.0,0,56,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,4,118611,1,1,0,0,1,,200.0,400.0,12,1.0,1.0,3.0,1.0,1.0,1,1,428.437817323501,300.0,5281.291652396462,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1704128571637607,5281.291652396462,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +18593,2,73.0,0.0,5,112,1167.0,0.0,0.0,77,78,0.0,132.4327277010224,1989.9690341151954,1447.0,249.40606057137379,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,118612,2,1,1,0,1,,270.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1511.70787436325,1167.0,35810.955850020735,5,5,0,1,100.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04040662879986104,23873.97056668049,6,3,6,6_1,6_2,6_0_0 +18594,2,76.0,0.0,2,112,720.0,0.0,0.0,77,78,0.0,0.0,1227.744391227884,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118613,2,2,0,1,1,1450.0,0.0,393.0,41,1.0,1.0,4.0,3.0,2.0,3,3,216.46503443044,720.0,24546.244700083713,5,5,2,3,87.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029332389080173413,12273.122350041856,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +18595,2,68.0,0.0,6,111,450.0,1000.0,0.0,45,74,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,4,118614,2,2,0,0,1,,0.0,450.0,42,1.0,0.0,3.0,3.0,1.8,2,2,560.207530087406,450.0,53330.50839438881,1,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02718894013304704,29628.060219104893,8,4,8,8_0,8_4,8_0_0 +18596,0,54.0,0.0,2,111,750.0,1000.0,0.0,77,22,0.0,0.0,1278.9004075290459,1750.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,1,1.0,2,,2,118615,2,1,0,0,1,,260.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2304.22734067954,750.0,52965.27575699895,5,1,0,1,120.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03304051522414195,35310.1838379993,9,5,9,9_0,9_3,9_0_1 +18597,2,33.0,0.0,8,111,990.0,,,85,22,0.0,0.0,,1122.0,182.89777775234077,,12,2,2,2,2,2,2,2,1,0,,1,2003.0,6,118616,2,3,0,0,1,,1200.0,1150.0,42,1.0,0.0,5.0,4.0,2.3,3,3,142.3061652087307,990.0,30907.435026196665,6,1,2,3,184.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03630194479253973,13438.01522878116,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +18598,2,71.0,0.0,6,111,550.0,,,77,78,0.0,0.0,,800.0,346.39730634913025,,71,2,2,2,2,1,2,2,2,0,,1,,4,118617,2,3,0,0,2,,320.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,130.9490560230737,550.0,16475.515806808162,6,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04855690160968537,10983.677204538775,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18599,2,80.0,0.0,2,111,270.0,0.0,0.0,0,75,0.0,0.0,460.40414671045653,270.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,118618,2,2,0,1,1,,182.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,473.076127449534,270.0,26169.22430017751,0,5,0,1,70.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010317462867944792,26169.22430017751,7,4,7,7_0,7_2,7_0_1 +18600,2,69.0,0.0,8,111,90.0,329.0,0.0,0,75,0.0,0.0,153.4680489034855,419.0,0.0,624.6078317721906,41,0,0,0,0,0,0,0,0,0,,2,2000.0,6,118619,2,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,535.570542096107,90.0,29628.654757670167,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014141715289707195,29628.654757670167,8,4,8,8_0,8_4,8_0_0 +18601,2,52.0,0.0,2,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1715.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,118620,2,2,5,0,1,,301.0,480.0,32,1.0,1.0,4.0,2.0,1.5,2,2,1049.60991561923,0.0,33623.786410814704,0,1,2,3,100.0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05100555835818627,22415.857607209804,6,3,6,6_1,6_0,6_0_1 +18602,2,66.0,0.0,5,111,416.0,0.0,0.0,77,78,263.6707127591504,66.2163638505112,709.3634260427774,940.0,310.3719864888207,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118621,2,2,2,0,1,,283.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,903.73730995784,416.0,23937.094381692343,6,5,0,1,130.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039269594922888146,11968.547190846171,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18603,2,89.0,0.0,1,120,250.0,0.0,0.0,0,71,0.0,794.5963662061343,426.3001358430153,2150.0,1801.2659930154773,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118622,1,3,3,0,2,,340.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,833.769991104781,250.0,11585.446998410196,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18557764756897444,11585.446998410196,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +18604,2,82.0,0.0,5,111,216.0,,,0,77,0.0,0.0,,504.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,,3,118623,2,2,0,0,2,,236.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,105.58182852443883,216.0,25530.27009947118,0,5,0,1,144.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019741271754521686,25530.27009947118,7,4,7,7_1,7_2,7_0_0 +18605,2,67.0,0.0,1,300,1200.0,0.0,0.0,77,75,0.0,0.0,2046.2406520464733,1305.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118624,2,2,1,0,1,,380.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1745.74879357532,1200.0,29705.98558011938,5,5,0,1,100.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04393054041180732,19803.990386746253,5,3,5,5_1,5_0,5_1_0 +18606,2,79.0,0.0,6,221,518.0,0.0,0.0,0,77,0.0,0.0,883.2938814667277,608.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,118625,2,1,1,0,1,,145.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1066.26161807603,518.0,15891.966531530165,0,5,0,1,56.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03825832371303506,15891.966531530165,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +18607,2,84.0,0.0,7,111,500.0,1028.0,0.0,0,77,0.0,0.0,852.6002716860306,1528.0,0.0,1951.6621612821032,41,0,0,0,0,0,0,0,0,0,,2,,5,118626,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,855.264502854561,500.0,31185.584384431713,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048996997496150795,31185.584384431713,8,4,8,8_0,8_4,8_0_0 +18608,2,47.0,0.0,1,112,1000.0,0.0,0.0,56,48,0.0,0.0,1705.2005433720612,1200.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,118627,2,1,3,0,1,,300.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,258.920932365067,1000.0,35211.86920418844,4,1,0,1,100.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03407941773955188,17605.93460209422,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18609,2,28.0,0.0,2,111,1313.0,0.0,0.0,46,56,0.0,0.0,2238.9283134475163,1313.0,0.0,0.0,60,2,2,2,2,1,2,2,2,3,80.0,1,,2,118628,2,2,5,0,1,,0.0,720.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1197.92123832555,1313.0,36750.92641095851,1,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03572699053399876,24500.617607305674,7,4,7,7_1,7_4,7_0_1 +18610,2,76.0,0.0,2,111,482.0,1149.0,0.0,77,78,0.0,0.0,821.9066619053335,1631.0,0.0,2181.3811510828177,50,0,0,0,0,0,0,0,0,0,,1,,2,118629,2,1,1,0,1,,308.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1217.85308417236,482.0,40950.4576394442,5,5,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03982861472173127,27300.305092962797,7,4,7,7_1,7_2,7_0_1 +18611,1,51.0,137.0,2,111,420.0,250.0,0.0,85,63,0.0,0.0,716.1842282162656,670.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,118630,2,1,0,1,1,740.0,0.0,384.0,42,1.0,0.0,4.0,4.0,2.5,4,3,264.430042665842,420.0,22207.865386440524,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030169491229403905,8883.14615457621,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +18612,2,70.0,0.0,1,300,0.0,0.0,0.0,77,78,0.0,1059.4618216081792,0.0,1073.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118631,2,1,4,0,2,,135.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1361.07222277749,0.0,37703.340829586145,5,5,0,1,80.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028459016532508638,25135.56055305743,7,4,7,7_1,7_0,7_1_0 +18613,2,41.0,0.0,7,112,810.0,0.0,0.0,46,64,2109.365702073203,46.35145469535784,1381.2124401313695,2945.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,20.0,5,,5,118632,1,3,3,0,1,,460.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1641.975355408,810.0,47030.92974758995,1,1,1,2,159.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06261836658993358,20448.230325039112,5,3,5,5_1,5_0,5_0_0 +18614,2,32.0,0.0,7,111,650.0,0.0,0.0,0,42,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,5,118633,2,2,0,0,1,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1806.93412878965,650.0,19502.646774219393,0,1,2,3,50.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03332880954698092,19502.646774219393,5,3,5,5_0,5_3,5_0_0 +18615,2,52.0,0.0,5,111,1600.0,0.0,0.0,0,45,0.0,0.0,2728.320869395298,1660.0,83.13535352379125,0.0,42,2,2,2,1,2,2,2,2,1,4.0,2,,3,118634,1,3,0,0,1,,433.0,382.0,32,1.0,0.0,4.0,2.0,1.5,2,1,2012.19073475042,1600.0,27900.094973261665,0,1,2,3,105.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.05949800535055087,18600.063315507778,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18616,2,81.0,0.0,1,112,400.0,0.0,0.0,77,78,2109.365702073203,0.0,682.0802173488245,2430.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118635,2,1,2,0,1,,280.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1382.64333399062,400.0,29382.67574058059,5,5,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0827017941270717,19588.450493720393,5,3,5,5_1,5_0,5_1_0 +18617,2,36.0,0.0,9,112,0.0,0.0,0.0,46,55,0.0,0.0,0.0,1864.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,118636,2,1,1,0,1,,785.0,1380.0,43,2.0,0.0,7.0,4.0,2.1,2,2,1076.24749365899,0.0,33935.677330535094,4,1,2,3,180.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05492744352336192,16159.846347873854,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +18619,1,41.0,165.0,9,112,721.0,0.0,0.0,0,46,0.0,0.0,1229.449591771256,721.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,118638,2,2,0,0,1,800.0,307.0,379.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1094.0567102523,721.0,18380.443091763034,0,1,2,3,65.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.039226475466367136,14138.802378279257,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +18620,2,49.0,0.0,1,111,0.0,0.0,0.0,38,38,0.0,0.0,0.0,1016.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,1,118639,2,1,0,0,1,,1650.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,428.672923519885,0.0,83986.22918794924,1,1,1,2,105.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012097221292389928,32302.395841518945,8,4,8,8_0,8_3,8_1_0 +18621,2,47.0,0.0,9,111,720.0,,,0,45,0.0,0.0,,743.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,118640,2,2,0,0,1,,350.0,1150.0,12,1.0,0.0,3.0,1.0,1.0,1,1,113.93054022274364,720.0,62862.304249509245,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01181948401145032,62862.304249509245,10,5,10,10_1,10_2,10_0_0 +18622,2,40.0,0.0,1,111,1400.0,2800.0,0.0,55,22,0.0,132.4327277010224,2387.2807607208856,4300.0,0.0,5315.811334231409,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,118641,2,3,3,0,1,,285.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,966.334456818548,1400.0,37731.59969389773,1,1,1,2,100.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11396283313944497,17967.42842566559,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +18623,1,66.0,140.0,1,111,330.0,126.0,0.0,0,77,0.0,0.0,562.7161793127802,456.0,0.0,239.2115100404134,71,0,0,0,0,0,0,0,0,0,,2,,1,118642,2,2,0,1,1,,0.0,198.0,11,0.0,4.0,1.0,1.0,1.0,1,1,798.672728052877,330.0,11454.298329523346,0,5,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.039810382694910634,11454.298329523346,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +18624,2,24.0,0.0,9,111,0.0,0.0,0.0,67,55,0.0,0.0,0.0,929.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,118643,2,1,0,0,1,,0.0,580.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2547.72178095582,0.0,30251.35158065385,1,1,2,3,59.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030709371696109874,20167.567720435898,5,3,5,5_0,5_3,5_0_0 +18625,2,70.0,0.0,2,221,960.0,0.0,0.0,0,72,2636.7071275915036,0.0,1636.9925216371787,3460.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,1,,2,118644,1,1,1,0,2,,600.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1783.21176793172,960.0,12699.487148969634,0,5,0,1,180.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.27245194702848496,12699.487148969634,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +18626,2,50.0,0.0,8,211,748.0,0.0,0.0,0,63,0.0,0.0,1275.4900064423018,783.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,118645,2,1,1,0,1,,350.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1431.38778273933,748.0,28078.36209170607,0,1,0,1,115.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027886241990991583,28078.36209170607,8,4,8,8_1,8_1,8_0_0 +18627,2,63.0,0.0,1,112,550.0,0.0,0.0,75,75,1582.0242765549024,569.4607291143963,937.8602988546337,2480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118646,2,2,2,0,1,,170.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,344.091121241895,550.0,36117.07905337445,5,5,1,2,120.0,7,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06866557498559096,24078.052702249635,6,3,6,6_1,6_1,6_1_0 +18628,2,48.0,0.0,2,111,1170.0,,,22,22,0.0,0.0,,1350.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,2,118647,2,1,0,0,2,,360.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,28.229484123164397,1170.0,33014.96625223069,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040890546114333404,11791.059375796676,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +18629,2,48.0,0.0,9,111,240.0,,,0,43,0.0,0.0,,262.0,30.482962958723462,,33,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,118648,2,1,0,0,1,,130.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,127.13064906778291,240.0,47683.99220922553,0,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005494506392216679,47683.99220922553,10,5,10,10_1,10_2,10_0_0 +18630,1,44.0,357.0,2,111,672.0,,,0,55,0.0,0.0,,792.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,8,,2,118649,1,1,0,0,2,,380.0,554.0,32,1.0,2.0,4.0,2.0,1.5,2,2,108.08489662342225,672.0,13522.828372752921,0,4,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05856762935746466,9015.218915168614,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18631,1,42.0,160.0,5,111,800.0,900.0,0.0,0,52,0.0,0.0,1364.160434697649,1700.0,0.0,1708.65364314581,41,2,2,1,2,1,2,2,2,1,15.0,2,,3,118650,2,1,0,0,1,,0.0,510.0,32,1.0,1.0,4.0,2.0,1.5,2,1,885.10136939915,800.0,17110.539509931245,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.09935396829616573,11407.026339954164,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +18632,1,29.0,181.0,2,111,0.0,0.0,640.0,0,68,0.0,0.0,403.403705865436,640.0,0.0,765.9085744413957,71,2,2,2,2,2,1,2,2,3,35.0,2,,2,118651,2,2,0,1,1,1341.0,750.0,261.0,22,1.0,1.0,3.0,2.0,1.5,2,2,355.335562473061,0.0,47666.30476664588,0,1,2,3,53.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.013426675366029945,31777.536511097253,8,4,8,8_0,8_3,8_0_1 +18633,1,26.0,270.0,2,111,620.0,0.0,0.0,0,53,0.0,0.0,1057.224336890678,620.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,8,,2,118652,1,3,0,0,1,,170.0,331.0,12,1.0,0.0,2.0,1.0,1.0,1,1,464.734043378567,620.0,5970.477541902112,0,4,2,3,52.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.1038442897823005,5970.477541902112,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18634,2,65.0,0.0,2,111,1000.0,0.0,0.0,0,75,0.0,0.0,1705.2005433720612,1747.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,118653,2,2,3,0,1,,120.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1555.28861545361,1000.0,21014.17989865429,0,5,0,1,78.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0831343411175363,21014.17989865429,5,3,5,5_1,5_3,5_0_1 +18635,2,55.0,0.0,1,111,500.0,1600.0,0.0,37,46,0.0,331.081819252556,852.6002716860306,2350.0,0.0,3037.6064767036623,10,0,0,0,0,0,0,0,0,4,75.0,1,,1,118654,2,2,2,0,1,,900.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,424.446065173649,500.0,66247.07221570655,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03547326578219463,44164.71481047103,10,5,10,10_1,10_4,10_1_0 +18636,1,45.0,351.0,2,111,320.0,280.0,0.0,0,56,0.0,2019.5990974405915,545.6641738790596,2125.0,0.0,531.581133423141,70,2,2,2,2,1,2,2,2,0,,2,,2,118655,1,2,0,1,1,,360.0,443.0,32,1.0,1.0,4.0,2.0,1.3,1,1,282.248148539212,320.0,9964.39111111111,0,4,2,3,74.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.21325939300299557,7664.916239316239,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18637,2,58.0,0.0,2,111,525.0,0.0,0.0,0,90,2109.365702073203,0.0,895.2302852703322,2555.0,41.567676761895626,0.0,60,2,2,2,2,1,2,2,2,2,10.0,1,,2,118656,1,3,2,0,2,,165.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1908.58230882776,525.0,22428.143247303975,0,1,1,2,74.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.11391937227381181,22428.143247303975,6,3,6,6_1,6_2,6_0_1 +18638,2,37.0,0.0,7,112,0.0,0.0,0.0,54,38,0.0,0.0,0.0,2397.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,118657,2,2,3,0,1,,421.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,4,2,464.785968965647,0.0,50115.75703459166,1,1,1,2,185.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047829268514202154,19275.29116715064,5,3,5,5_1,5_0,5_0_0 +18639,2,36.0,0.0,9,112,1788.0,0.0,0.0,34,34,0.0,0.0,3048.8985715492454,1788.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,118658,2,1,1,0,1,,595.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1376.7531720376,1788.0,78209.75328630755,1,1,1,2,122.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022861598775980686,37242.73966014645,9,5,9,9_1,9_0,9_0_0 +18640,2,64.0,0.0,2,111,140.0,84.0,0.0,0,78,0.0,0.0,238.72807607208856,224.0,0.0,159.4743400269423,70,1,2,2,2,1,2,2,2,0,,2,,2,118659,2,1,0,1,1,900.0,0.0,311.0,11,0.0,1.0,3.0,1.0,1.0,1,1,682.592982096931,140.0,16378.782228237113,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013676230435118841,16378.782228237113,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +18641,2,38.0,0.0,1,111,430.0,760.0,0.0,56,47,0.0,66.2163638505112,733.2362336499863,1240.0,0.0,1442.8630764342397,50,2,2,1,1,1,2,1,2,2,20.0,1,,1,118660,2,1,2,0,1,,410.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,342.310819939544,430.0,41546.35815421899,1,1,1,2,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.029846177982608066,19783.980073437615,5,3,5,5_1,5_3,5_1_0 +18642,2,49.0,0.0,2,111,1500.0,0.0,0.0,46,67,0.0,0.0,2557.8008150580918,1660.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,118661,2,1,2,0,1,,560.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,546.841021409079,1500.0,45249.83126189711,1,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0366852196728038,18099.932504758843,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +18643,2,46.0,0.0,1,221,700.0,1800.0,0.0,67,65,0.0,0.0,1193.6403803604428,2500.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,118662,2,1,2,0,1,,200.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,1674.43102902284,700.0,51857.73586756413,1,1,1,2,120.0,1,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04820881510107916,20743.094347025653,5,3,5,5_1,5_1,5_1_0 +18644,2,39.0,0.0,6,111,1200.0,0.0,0.0,63,46,0.0,0.0,2046.2406520464733,1284.0,116.38949493330776,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,4,118663,1,1,2,0,1,,360.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,989.787824434447,1200.0,42302.76483295948,1,1,1,2,90.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03035262600612793,23501.536018310824,6,3,6,6_1,6_2,6_0_0 +18645,2,52.0,0.0,2,111,0.0,0.0,0.0,56,54,0.0,0.0,0.0,3327.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,2,118664,1,1,0,0,1,,112.0,360.0,43,2.0,1.0,4.0,3.0,2.0,3,3,1607.78453787574,0.0,46088.51123385172,1,1,2,3,85.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07218718745586947,23044.25561692586,6,3,6,6_0,6_2,6_0_1 +18646,2,42.0,0.0,2,111,300.0,1000.0,0.0,42,42,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,30,0,0,0,0,0,0,0,0,0,,1,,2,118665,2,2,1,0,1,,330.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1123.72598159519,300.0,44990.73713423311,1,1,1,2,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028894836644293164,21424.160540111003,6,3,6,6_1,6_2,6_0_1 +18647,1,24.0,327.0,1,111,0.0,0.0,0.0,84,53,0.0,0.0,0.0,2108.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2000.0,1,118666,2,2,0,0,2,,0.0,550.0,42,1.0,0.0,2.0,2.0,1.5,2,2,344.295054220321,0.0,13268.2498245783,3,4,2,3,44.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.15887551318901985,8845.4998830522,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +18648,1,77.0,24.0,5,221,900.0,0.0,0.0,0,77,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,118667,2,1,4,0,2,,300.0,390.0,11,0.0,4.0,3.0,1.0,1.0,1,1,2514.52208323625,900.0,15148.856972006568,0,5,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06337111781925032,15148.856972006568,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +18649,2,56.0,0.0,2,111,630.0,110.0,0.0,0,52,0.0,0.0,1074.2763423243985,1122.0,0.0,208.8354452733768,71,2,2,2,2,1,2,1,2,3,15.0,2,,2,118668,1,2,0,1,1,1440.0,0.0,440.0,32,2.0,1.0,4.0,3.0,2.0,3,3,210.188696822504,630.0,30627.97747560668,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.036633173081494025,15313.98873780334,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +18650,2,54.0,0.0,6,111,570.0,2400.0,0.0,45,33,0.0,33.1081819252556,971.9643097220749,2995.0,0.0,4556.4097150554935,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,118669,2,1,2,0,1,,540.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,304.272103486031,570.0,137952.5313359601,1,1,0,1,127.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02171036639194523,55181.01253438405,10,5,10,10_1,10_3,10_0_0 +18651,2,60.0,0.0,7,111,450.0,867.0,0.0,55,46,0.0,0.0,767.3402445174275,1317.0,0.0,1646.0030095637971,50,0,0,0,0,0,0,0,0,2,7.0,1,,5,118670,1,2,2,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1246.2264010766,450.0,48943.25958006846,1,1,0,1,120.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026908710439390762,32628.83972004564,8,4,8,8_1,8_2,8_0_0 +18652,1,34.0,400.0,6,111,1300.0,0.0,0.0,0,64,0.0,794.5963662061343,2216.7607063836795,1970.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,118671,1,1,2,0,2,,360.0,,32,1.0,0.0,5.0,4.0,2.1,2,1,893.387879607725,1300.0,16537.149487367395,0,1,1,2,100.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.11912572970963758,7874.833089222569,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +18653,2,39.0,0.0,9,400,300.0,,,0,34,0.0,0.0,,328.0,38.79649831110259,,20,0,0,0,0,0,0,0,0,2,3.0,1,2005.0,6,118672,2,1,0,0,2,,200.0,500.0,12,1.0,0.0,4.0,1.0,1.0,1,1,81.18219967072021,300.0,48600.858105277985,0,1,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0067488520323961045,48600.858105277985,10,5,10,10_1,10_0,10_0_0 +18654,2,49.0,0.0,7,111,500.0,,,0,62,0.0,0.0,,945.0,616.5872053014518,,71,0,0,0,0,0,0,0,0,0,,1,,5,118673,2,3,0,0,2,,400.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,97.63076772272653,500.0,16269.69564757125,0,1,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05808344670178696,16269.69564757125,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +18655,2,36.0,0.0,1,111,360.0,900.0,0.0,0,46,0.0,0.0,613.872195613942,1260.0,0.0,1708.65364314581,41,0,0,0,0,0,0,0,0,0,,2,,1,118674,2,2,0,0,2,,0.0,1582.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1209.40124074787,360.0,30941.194460756928,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04072240978279208,30941.194460756928,8,4,8,8_0,8_4,8_1_0 +18656,2,32.0,0.0,2,112,1082.0,0.0,0.0,65,63,738.277995725621,0.0,1845.0269879285702,1882.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,118675,2,2,3,0,1,,257.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,828.925545287282,1082.0,40580.124502498125,1,1,1,2,120.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.046377383585507324,19323.868810713393,5,3,5,5_1,5_0,5_0_1 +18657,1,28.0,160.0,2,111,420.0,450.0,0.0,85,64,0.0,0.0,716.1842282162656,870.0,0.0,854.326821572905,71,2,1,2,2,1,2,2,2,0,,2,,2,118676,2,2,0,1,1,90.0,0.0,398.0,42,1.0,0.0,3.0,4.0,2.1,2,2,285.500314610873,420.0,20635.341877691673,7,4,2,3,58.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04216067779039485,9826.353275091273,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +18658,1,58.0,420.0,6,111,675.0,678.0,0.0,0,85,0.0,0.0,1151.0103667761414,1353.0,0.0,1287.185744503177,71,0,0,0,0,0,0,0,0,0,,2,,4,118677,2,1,0,1,1,,0.0,680.0,31,0.0,0.0,3.0,4.0,2.3,3,3,934.863704566031,675.0,9968.52881061336,0,6,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13572714948262768,4334.142961136244,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +18659,2,34.0,0.0,5,111,356.0,950.0,0.0,46,54,0.0,0.0,607.0513934404538,1306.0,0.0,1803.5788455427996,41,2,2,2,2,1,2,2,2,2,20.0,2,,3,118678,1,3,0,0,1,,0.0,501.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1046.7487423004,356.0,38988.68262254492,1,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.03349689992461595,21660.379234747175,6,3,6,6_0,6_4,6_0_0 +18660,2,44.0,0.0,7,112,1000.0,75.0,0.0,0,52,0.0,0.0,1705.2005433720612,1075.0,0.0,142.38780359548417,31,2,2,2,2,2,1,1,2,2,20.0,1,,5,118679,1,1,2,0,1,,500.0,495.0,32,2.0,0.0,3.0,2.0,1.5,2,2,1298.69508846119,1000.0,21519.540498653863,0,1,2,3,68.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.04995459824373321,14346.360332435908,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +18661,1,29.0,90.0,2,111,1225.0,0.0,0.0,55,46,0.0,0.0,2088.870665630775,1273.0,66.50828281903301,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,,2,118680,2,1,1,0,1,,616.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,584.191210633529,1225.0,34590.37339490514,1,1,1,2,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.036802146813121765,14412.655581210474,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +18662,2,82.0,0.0,5,112,480.0,0.0,0.0,86,75,2531.2388424878436,397.2981831030672,818.4962608185893,3280.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,118681,2,1,2,0,1,,499.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,824.897797744654,480.0,28914.679212074134,6,5,0,1,85.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11343719139828272,19276.452808049424,5,3,5,5_1,5_0,5_0_0 +18663,2,53.0,0.0,9,111,441.0,852.0,0.0,38,38,0.0,0.0,751.9934396270789,1293.0,0.0,1617.5254488447001,10,2,2,2,2,1,2,2,2,2,40.0,1,2007.0,6,118682,2,2,4,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,1142.10009383116,441.0,133501.20335692563,1,1,0,1,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.009685305955955063,53400.481342770254,10,5,10,10_1,10_3,10_0_0 +18664,1,43.0,208.0,2,111,1000.0,145.0,0.0,65,68,0.0,0.0,1705.2005433720612,1145.0,0.0,275.2830869512694,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,118683,2,1,0,1,1,,290.0,398.0,43,3.0,0.0,5.0,5.0,3.0,5,3,1505.83226630859,1000.0,55414.77135147446,4,1,2,3,91.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020662360812385344,18471.590450491487,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +18665,2,50.0,0.0,5,111,328.0,60.0,0.0,52,62,0.0,0.0,559.3057782260361,388.0,0.0,113.91024287638734,71,2,1,2,2,1,2,2,2,2,5.0,2,,3,118684,2,1,0,1,1,792.0,610.0,268.0,43,3.0,0.0,5.0,3.0,2.0,3,3,260.059536220813,328.0,33320.692321174145,1,1,2,3,50.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01164441591609546,16660.346160587073,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18666,2,83.0,0.0,2,111,240.0,0.0,0.0,77,74,0.0,0.0,409.2481304092947,240.0,0.0,0.0,20,2,1,2,2,1,2,2,2,0,,2,,2,118685,2,2,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,743.095412227674,240.0,55862.46772247346,5,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.004296265628513365,37241.64514831564,9,5,9,9_0,9_4,9_0_1 +18667,1,42.0,382.0,8,111,750.0,,,85,85,0.0,0.0,,1050.0,415.67676761895626,,60,0,0,0,0,0,0,0,0,0,,2,2000.0,6,118686,2,1,0,0,2,,900.0,418.0,41,1.0,0.0,4.0,6.0,3.5,6,4,145.64093765031532,750.0,22313.229508196717,6,7,2,3,89.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04705728498935059,6375.208430913348,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +18668,2,64.0,0.0,5,300,700.0,0.0,0.0,77,78,1898.4291318658827,0.0,1193.6403803604428,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118687,2,1,3,0,1,,215.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1443.01391287331,700.0,25970.926990152373,5,5,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09626148504240711,17313.95132676825,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +18669,1,46.0,369.0,5,111,830.0,150.0,0.0,0,85,0.0,0.0,1415.3164509988108,980.0,0.0,284.77560719096834,71,2,2,2,1,1,1,2,2,0,,2,,3,118688,2,1,0,1,1,471.0,0.0,363.0,31,1.0,3.0,4.0,3.0,1.8,2,2,526.629467876126,830.0,10853.36568711497,0,6,2,3,77.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.0902945711267656,6029.6476039527615,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +18670,2,58.0,0.0,5,111,1080.0,1344.0,0.0,74,52,0.0,0.0,1841.6165868418261,2424.0,0.0,2551.5894404310766,70,0,0,0,0,0,0,0,0,2,13.0,1,,3,118689,2,1,2,0,1,,456.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1839.26822217194,1080.0,43101.79892361399,5,1,0,1,120.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056238951981931636,28734.53261574266,8,4,8,8_1,8_3,8_0_0 +18671,1,57.0,253.0,7,111,270.0,,,0,78,0.0,0.0,,358.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,118690,2,1,0,0,2,,90.0,464.0,11,0.0,7.0,3.0,1.0,1.0,1,1,127.25711174164097,270.0,11175.70687916538,0,5,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032033767874443037,11175.70687916538,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +18672,2,67.0,0.0,5,112,1600.0,0.0,0.0,86,86,0.0,0.0,2728.320869395298,1615.0,20.783838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118691,2,1,2,0,2,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,412.897504047144,1600.0,32741.52025408562,5,5,0,1,91.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04932574869667128,21827.680169390413,6,3,6,6_1,6_0,6_0_0 +18673,2,30.0,0.0,6,120,1000.0,,,0,52,0.0,0.0,,1230.0,318.68552184119983,,10,0,0,0,0,0,0,0,0,0,,1,,4,118692,2,2,0,0,2,,1200.0,,22,1.0,1.0,7.0,2.0,1.5,2,2,139.35567947222071,1000.0,58150.79582139529,0,1,0,1,135.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021151903127479624,38767.19721426353,9,5,9,9_1,9_1,9_0_0 +18674,2,61.0,0.0,6,400,2000.0,0.0,0.0,0,56,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,118693,2,1,1,0,1,,230.0,,22,1.0,3.0,5.0,5.0,2.8,4,2,1607.84755747958,2000.0,16477.17576898872,0,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12138002458917443,5884.705631781686,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +18675,1,64.0,200.0,2,111,200.0,0.0,0.0,85,21,0.0,0.0,341.04010867441224,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,118694,2,2,0,1,1,300.0,0.0,392.0,42,1.0,0.0,1.0,2.0,1.5,2,2,345.991529404822,200.0,13306.053915304781,6,1,2,3,33.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015030752263070091,8870.702610203187,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18677,1,71.0,300.0,2,111,400.0,500.0,0.0,72,86,0.0,0.0,682.0802173488245,900.0,0.0,949.2520239698945,71,2,1,2,2,1,2,2,2,0,,2,,2,118696,1,2,0,1,2,612.0,500.0,330.0,41,0.0,6.0,4.0,2.0,1.5,2,2,351.100929048504,400.0,8127.858312814936,5,5,2,3,80.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.11073027670536513,5418.572208543291,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18678,2,56.0,0.0,5,111,295.0,0.0,0.0,0,56,0.0,577.4066927764576,503.03416029475807,731.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,25.0,2,,3,118697,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,293.801727586682,295.0,20262.46915595108,0,1,1,2,57.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036076550906694684,20262.46915595108,5,3,5,5_0,5_3,5_0_0 +18679,1,26.0,200.0,7,112,750.0,,,0,47,0.0,0.0,,1906.0,1601.7411445583782,,43,0,0,0,0,0,0,0,0,0,,2,,5,118698,2,3,0,0,2,,600.0,300.0,22,2.0,0.0,4.0,4.0,2.5,4,3,74.39055531135097,750.0,36318.23125466436,0,1,2,3,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05248052931419153,14527.292501865744,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +18680,1,68.0,359.0,2,112,1350.0,0.0,0.0,0,78,0.0,0.0,2302.0207335522828,1574.0,310.3719864888207,0.0,41,2,1,2,2,1,2,2,2,0,,2,,2,118699,1,3,0,0,1,768.0,300.0,556.0,11,0.0,2.0,4.0,1.0,1.0,1,1,343.818349054184,1350.0,10821.564481219988,0,5,2,3,80.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.145450318457332,10821.564481219988,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +18681,2,83.0,0.0,2,112,300.0,0.0,0.0,0,71,896.4804233811113,0.0,511.56016301161833,1275.0,173.19865317456512,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118700,2,1,2,0,2,,250.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,319.753251142417,300.0,17391.98237541945,0,6,0,1,80.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07330964190729582,17391.98237541945,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +18682,1,64.0,200.0,7,111,180.0,,,0,77,0.0,0.0,,306.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,118701,2,1,0,0,2,,180.0,448.0,11,0.0,0.0,3.0,1.0,1.0,1,1,105.74438758555573,180.0,12222.0,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025036818851251842,12222.0,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +18683,2,58.0,0.0,7,111,409.0,,,0,77,0.0,0.0,,514.0,145.4868686666347,,70,0,0,0,0,0,0,0,0,0,,1,,5,118702,2,2,0,0,2,,339.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,81.71930661958524,409.0,7033.766979598963,0,6,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0730760631523375,4689.177986399309,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +18684,2,70.0,0.0,5,111,2800.0,0.0,0.0,75,78,0.0,0.0,4774.561521441771,2950.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118703,2,1,2,0,1,,240.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1436.92281677874,2800.0,35216.21271263686,5,5,0,1,160.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08376823550198038,23477.475141757906,6,3,6,6_1,6_3,6_0_0 +18685,2,38.0,0.0,1,111,1310.0,0.0,0.0,46,63,0.0,0.0,2233.8127118174,1415.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,118704,2,1,0,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1224.83076267407,1310.0,35130.25638041791,4,1,1,2,60.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04027866989290578,15274.024513225178,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +18686,2,60.0,0.0,9,300,1050.0,0.0,0.0,33,33,0.0,662.163638505112,1790.4605705406643,1550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,1,2010.0,6,118705,2,1,1,0,1,,500.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1144.89392008278,1050.0,96265.79716075001,1,1,0,1,225.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016101253464007818,64177.198107166674,10,5,10,10_1,10_0,10_0_0 +18687,2,59.0,0.0,7,111,270.0,,,0,56,0.0,0.0,,492.0,307.60080803802765,,71,2,2,2,1,1,2,2,2,0,,1,,5,118706,2,3,0,0,2,,372.0,,22,2.0,0.0,4.0,3.0,1.8,2,2,157.63756780768702,270.0,12675.868704217839,0,4,0,1,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.038813907865445876,7042.149280121022,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18688,2,48.0,0.0,5,111,1060.0,0.0,0.0,68,85,0.0,0.0,1807.5125759743848,1180.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118707,1,2,3,0,1,,400.0,481.0,42,2.0,1.0,4.0,4.0,2.5,4,3,300.283310523337,1060.0,41590.652073950114,1,7,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028371760026794125,16636.260829580046,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +18689,1,47.0,540.0,1,111,900.0,2000.0,0.0,85,81,0.0,0.0,1534.680489034855,2900.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,0,,1,,1,118708,2,1,2,0,1,,800.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,262.070068405927,900.0,17932.48781900612,6,4,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.16171766178066907,6641.662155187453,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +18690,1,22.0,254.0,2,111,182.0,0.0,0.0,0,38,0.0,0.0,310.34649889371514,182.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,118709,2,1,0,1,1,650.0,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,430.151735357585,182.0,12168.462248539892,0,2,2,3,43.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014956696769292965,12168.462248539892,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +18691,2,50.0,0.0,7,211,650.0,,,0,52,0.0,0.0,,1130.0,665.08282819033,,71,0,0,0,0,0,0,0,0,0,,1,,5,118710,1,2,0,0,2,,768.0,,32,4.0,3.0,5.0,7.0,3.6,4,3,87.11237205998248,650.0,18784.588235294115,0,4,0,1,76.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06015569709837226,5217.941176470587,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18692,2,51.0,0.0,7,111,1344.0,0.0,0.0,37,37,0.0,0.0,2291.78953029205,1344.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,2,,5,118711,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,829.857809473667,1344.0,76876.00557509705,1,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017482698144183635,36607.62170242717,9,5,9,9_0,9_4,9_0_0 +18693,1,46.0,218.0,2,111,781.0,490.0,0.0,0,52,0.0,0.0,1331.7616243735797,1271.0,0.0,930.2669834904966,60,2,2,2,2,1,2,2,2,3,45.0,2,,2,118712,1,3,0,1,1,720.0,0.0,592.0,32,1.0,0.0,4.0,4.0,2.1,4,2,705.266283876892,781.0,34277.92047669279,0,1,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.037079262170067004,16322.819274615613,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +18694,2,41.0,0.0,1,400,500.0,0.0,0.0,52,64,0.0,0.0,852.6002716860306,2820.0,3214.5670029199287,0.0,50,1,2,2,1,2,1,2,2,0,,1,,1,118713,1,1,1,0,2,,450.0,532.0,43,2.0,2.0,4.0,3.0,2.0,3,2,1541.39918248745,500.0,20680.407793545433,4,4,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.1363609474316145,10340.203896772717,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +18695,2,35.0,0.0,7,211,900.0,,,56,42,0.0,0.0,,900.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,118714,1,2,0,0,2,,500.0,650.0,43,2.0,1.0,3.0,3.0,1.8,2,2,75.92219370860516,900.0,61913.54129161535,1,1,2,3,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014536399973649748,34396.41182867519,9,5,9,9_1,9_2,9_0_0 +18696,2,85.0,0.0,2,112,730.0,0.0,0.0,78,78,2636.7071275915036,0.0,1244.7963966616046,3320.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118715,2,1,1,0,1,,250.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,511.45045510578,730.0,26026.76321032877,5,5,0,1,130.0,7,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1275610022333646,17351.175473552514,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +18697,1,28.0,262.0,7,211,480.0,,,0,42,0.0,0.0,,580.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,0,,1,,5,118716,2,2,0,0,2,,500.0,624.0,32,1.0,0.0,2.0,4.0,1.9,1,1,118.0018768577111,480.0,20563.52965571999,0,1,2,3,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02820527456669707,10822.910345115784,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +18698,0,64.0,0.0,8,111,720.0,,,56,72,0.0,26.486545540204478,,1016.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118717,2,1,0,0,2,,600.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,89.43965419551192,720.0,16496.44139555078,1,5,5,0,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061589040668736175,8248.22069777539,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18700,0,45.0,0.0,5,300,600.0,,,0,85,0.0,0.0,,738.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,118719,1,1,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,183.37095593881435,600.0,7166.355666143323,0,7,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1029812130992328,7166.355666143323,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +18701,1,64.0,195.0,2,120,130.0,650.0,0.0,0,86,0.0,0.0,221.67607063836795,780.0,0.0,1234.027631160863,71,0,0,0,0,0,0,0,0,0,,2,,2,118720,2,1,0,0,1,,90.0,345.0,11,0.0,5.0,3.0,1.0,1.0,1,1,1465.83484959373,130.0,9375.558022613945,0,5,2,3,70.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08319504803006197,9375.558022613945,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +18702,2,80.0,0.0,2,111,360.0,,,77,62,0.0,0.0,,635.0,0.0,,71,0,0,0,0,0,0,0,0,1,1.0,1,,2,118721,1,2,0,0,2,,400.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,111.25459095233532,360.0,52814.04987763216,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012023315793264617,26407.02493881608,7,4,7,7_1,7_2,7_0_1 +18703,1,68.0,246.0,2,111,276.0,0.0,0.0,0,72,0.0,0.0,470.6353499706889,276.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118722,1,3,0,1,2,38.0,0.0,402.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2185.23802109294,276.0,14753.89414293064,0,5,2,3,56.0,7,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018706925597147924,14753.89414293064,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +18704,1,23.0,244.0,9,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,347.0,0.0,0.0,71,1,2,2,2,2,2,2,1,3,60.0,2,2011.0,6,118723,2,1,0,1,1,20.0,0.0,219.0,32,1.0,0.0,1.0,2.0,1.3,1,1,4635.24398371383,0.0,17480.115247948906,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.019851127700128667,13446.242498422236,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +18705,2,23.0,0.0,2,112,900.0,0.0,0.0,56,46,0.0,1191.8945493092015,1534.680489034855,1860.0,83.13535352379125,0.0,31,2,2,1,1,2,2,2,2,2,15.0,1,,2,118724,2,1,1,0,1,,600.0,400.0,43,2.0,0.0,6.0,2.0,1.5,2,2,203.007972756313,900.0,34287.177025770114,4,1,2,3,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.054247685617338254,22858.118017180077,6,3,6,6_1,6_0,6_0_1 +18706,1,44.0,181.0,9,111,1000.0,0.0,0.0,85,63,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,118725,2,1,0,0,1,,0.0,550.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,862.391431151299,1000.0,33531.60625207245,6,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02982260952495212,12896.771635412484,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +18707,2,49.0,0.0,1,211,1800.0,120.0,0.0,56,63,0.0,0.0,3069.36097806971,1920.0,0.0,227.8204857527747,50,2,2,2,1,2,2,2,2,2,25.0,1,,1,118726,1,1,2,0,2,,751.0,,43,3.0,0.0,8.0,5.0,3.0,5,3,1686.06945713755,1800.0,50242.822647798916,1,1,1,2,135.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.03821441349860373,16747.607549266304,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +18708,1,56.0,398.0,2,111,600.0,50.0,0.0,0,85,0.0,0.0,1023.1203260232367,650.0,0.0,94.92520239698945,70,2,1,2,2,1,2,2,2,0,,2,,2,118727,2,2,0,1,1,645.0,200.0,485.0,31,1.0,3.0,5.0,3.0,2.0,3,2,338.80071167749,600.0,5237.550299714563,0,7,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.12410382006936026,2618.7751498572816,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18709,1,24.0,34.0,1,111,200.0,600.0,0.0,0,52,0.0,0.0,341.04010867441224,800.0,0.0,1139.1024287638734,41,2,2,2,2,1,2,2,2,1,20.0,2,,1,118728,1,3,0,0,2,,0.0,445.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2174.0563490213,200.0,13246.918119552403,0,1,2,3,38.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.060391405214410054,13246.918119552403,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +18710,2,75.0,0.0,5,111,277.0,105.0,0.0,77,78,0.0,0.0,472.34055051406096,382.0,0.0,199.34292503367786,70,0,0,0,0,0,0,0,0,0,,2,,3,118729,2,2,0,1,1,519.0,0.0,285.0,41,0.0,2.0,2.0,2.0,1.5,2,2,331.768033765157,277.0,31975.892645480413,5,5,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01194649995342642,21317.26176365361,6,3,6,6_0,6_3,6_0_0 +18711,2,74.0,0.0,2,120,1440.0,0.0,0.0,0,72,0.0,0.0,2455.488782455768,1500.0,83.13535352379125,0.0,60,2,2,1,2,1,2,2,2,0,,1,,2,118730,2,1,1,0,1,,440.0,700.0,21,1.0,1.0,6.0,2.0,1.5,2,2,292.34282292759,1440.0,29755.6266027803,0,5,2,3,180.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05041063392897407,19837.08440185353,5,3,5,5_1,5_0,5_0_1 +18713,1,41.0,301.0,5,111,240.0,0.0,0.0,85,67,0.0,0.0,409.2481304092947,310.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,118732,1,2,0,1,1,710.0,0.0,289.0,42,1.0,1.0,2.0,2.0,1.5,2,2,348.114848315641,240.0,23348.482808409848,6,4,2,3,60.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01327709395697187,15565.655205606565,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +18714,1,62.0,335.0,2,111,960.0,1200.0,0.0,85,78,0.0,0.0,1636.9925216371787,2160.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,2,,2,118733,2,2,0,0,1,,76.0,635.0,41,2.0,2.0,6.0,8.0,4.3,8,5,403.418316052307,960.0,55264.2168831462,6,5,2,3,120.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03908496531430504,12852.14346119679,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +18715,2,44.0,0.0,1,112,563.0,0.0,0.0,54,38,2171.5919902843625,595.9472746546007,960.0279059184704,3072.0,0.0,0.0,12,2,2,2,1,2,2,2,2,2,20.0,1,,1,118734,2,2,4,0,1,,323.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,1101.81259340946,563.0,70491.76810075698,1,1,0,1,165.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.043579556631478666,46994.512067171316,10,5,10,10_1,10_0,10_1_0 +18716,1,42.0,171.0,8,111,480.0,,,0,43,0.0,0.0,,543.0,87.29212119998083,,44,0,0,0,0,0,0,0,0,1,15.0,2,1999.0,6,118735,1,2,0,0,2,,633.0,470.0,12,1.0,1.0,3.0,1.0,1.0,1,1,107.20090288493942,480.0,21716.22865176373,0,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025004341624294837,21716.22865176373,6,3,6,6_0,6_3,6_0_0 +18717,2,36.0,0.0,1,111,480.0,,,0,63,0.0,0.0,,730.0,346.39730634913025,,50,0,0,0,0,0,0,0,0,0,,1,,1,118736,2,1,0,0,2,,320.0,,22,1.0,15.0,6.0,3.0,2.0,3,3,111.43912895494704,480.0,34510.08764299294,0,1,0,1,49.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021153235180155272,17255.04382149647,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +18718,2,33.0,0.0,1,111,344.0,0.0,0.0,64,46,2109.365702073203,0.0,586.588986919989,2344.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,118737,2,1,1,0,1,,135.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1523.6997456744,344.0,56516.99598541034,1,1,1,2,120.0,9,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041474249632890876,24572.60695017841,7,4,7,7_1,7_3,7_1_0 +18719,2,42.0,0.0,1,111,440.0,0.0,0.0,85,52,0.0,0.0,750.2882390837069,525.0,117.77508415870429,0.0,50,2,2,2,1,1,2,2,2,3,15.0,2,,1,118738,2,2,0,0,1,,0.0,706.0,42,1.0,0.0,2.0,2.0,1.5,2,2,647.658690769547,440.0,25131.85927420129,7,1,2,3,48.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.020889819343327707,16754.572849467528,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +18720,2,47.0,0.0,2,111,0.0,0.0,122.0,0,55,0.0,0.0,76.89883143059875,122.0,0.0,146.00132200289107,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,118739,2,1,0,0,1,,0.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,370.253512914218,0.0,17575.960734489625,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0069412990756515065,11717.307156326417,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +18721,2,64.0,0.0,9,111,1140.0,0.0,0.0,77,74,0.0,0.0,1943.9286194441497,1140.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2007.0,6,118740,2,1,1,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1824.46501992588,1140.0,44638.1801383297,5,5,0,1,90.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025538675556826974,29758.786758886465,8,4,8,8_1,8_3,8_0_0 +18722,2,45.0,0.0,6,112,660.0,0.0,0.0,0,53,0.0,264.8654554020448,1125.4323586255605,892.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,118741,2,1,1,0,1,,445.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1281.89199397237,660.0,24816.489293462128,0,1,1,2,110.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035943843202470876,24816.489293462128,7,4,7,7_1,7_0,7_0_0 +18723,2,50.0,0.0,6,111,1500.0,0.0,0.0,54,65,0.0,529.7309108040896,2557.8008150580918,1990.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,118742,2,1,2,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2405.24880739321,1500.0,34299.71972281174,1,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.058017966796285785,22866.479815207826,6,3,6,6_1,6_3,6_0_0 +18724,2,66.0,0.0,2,111,357.0,1218.0,0.0,0,75,0.0,0.0,608.7565939838258,1575.0,0.0,2312.377930390663,50,0,0,0,0,0,0,0,0,0,,1,,2,118743,2,1,2,0,1,,241.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1115.53978494806,357.0,29128.4048390624,0,5,0,1,72.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05407093209195787,29128.4048390624,8,4,8,8_1,8_2,8_0_1 +18725,2,43.0,0.0,8,111,0.0,0.0,0.0,62,62,0.0,0.0,0.0,835.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,2.0,1,2003.0,6,118744,2,1,1,0,1,,175.0,462.0,43,2.0,0.0,3.0,3.0,2.0,3,2,693.127702171369,0.0,34535.246038090794,1,1,2,3,78.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024178197516792937,17267.623019045397,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +18726,2,44.0,0.0,2,111,720.0,1680.0,0.0,0,46,0.0,0.0,1227.744391227884,2400.0,0.0,3189.4868005388457,31,0,0,0,0,0,0,0,0,0,,1,,2,118745,2,1,3,0,1,,400.0,,32,1.0,0.0,4.0,4.0,2.3,3,1,1465.76523923364,720.0,42158.586523470025,0,4,1,2,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05692790479737504,18329.820227595665,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +18727,2,34.0,0.0,9,112,2200.0,0.0,0.0,52,46,0.0,456.89291056852727,3751.441195418535,2545.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,45.0,1,2006.0,6,118746,2,1,1,0,1,,236.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,796.974708057168,2200.0,40450.84731384797,1,1,1,2,136.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06291586379523732,19262.308244689506,5,3,5,5_1,5_0,5_0_0 +18728,2,26.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,699.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,2,,1,118747,2,2,0,0,1,,0.0,850.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1405.38142449854,0.0,33445.24457422654,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02089983221526988,33445.24457422654,8,4,8,8_0,8_4,8_1_0 +18729,2,48.0,0.0,9,111,780.0,,,63,43,0.0,0.0,,843.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,2,7.0,2,2007.0,6,118748,1,1,0,0,2,,270.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,80.19018723233121,780.0,44573.434586638854,1,1,1,2,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018912610343307358,19379.75416810385,5,3,5,5_0,5_3,5_0_0 +18730,2,73.0,0.0,7,111,360.0,0.0,0.0,77,64,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,118749,2,1,0,1,2,,0.0,,41,2.0,0.0,4.0,4.0,2.5,4,4,188.197282018357,360.0,45141.2451019596,5,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007974968328562392,18056.498040783837,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +18731,2,75.0,0.0,2,111,250.0,104.0,0.0,0,75,0.0,590.6499655465599,426.3001358430153,800.0,0.0,197.44442098573805,60,2,1,2,1,2,2,2,2,0,,2,,2,118750,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,372.238202896252,250.0,29032.67753696054,0,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.027555157424992805,29032.67753696054,8,4,8,8_0,8_3,8_0_1 +18732,2,72.0,0.0,1,112,441.0,0.0,0.0,0,77,0.0,503.2443652638851,751.9934396270789,917.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118751,2,1,1,0,1,,176.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,1331.9231804984,441.0,12989.703112818099,0,5,1,2,72.0,4,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07059437710282342,12989.703112818099,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +18733,2,58.0,0.0,7,120,900.0,,,77,63,0.0,0.0,,900.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,118752,2,1,0,0,2,,270.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,99.38236747951774,900.0,27842.131467252886,6,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03232511135358132,18561.42097816859,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +18734,1,40.0,140.0,5,111,1300.0,0.0,0.0,56,68,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,60.0,8,,3,118753,2,2,0,1,1,,0.0,723.0,43,2.0,0.0,4.0,6.0,3.3,5,3,1003.12791889835,1300.0,49891.47458760631,1,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.026056555969643295,15118.628662911004,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +18735,2,59.0,0.0,8,120,400.0,,,55,22,0.0,0.0,,484.0,116.38949493330776,,60,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,118754,2,1,0,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,118.42999213688624,400.0,56803.42119454061,1,1,1,2,145.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008520613544427097,37868.94746302708,9,5,9,9_1,9_2,9_0_0 +18736,2,41.0,0.0,9,111,50.0,,,52,48,0.0,0.0,,73.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,118755,2,1,0,0,2,,0.0,850.0,43,2.0,0.0,3.0,3.0,1.8,2,2,121.61840972770649,50.0,47810.565407362235,4,1,3,4,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0015268591655006637,26561.425226312353,7,4,7,7_1,7_3,7_0_0 +18737,0,87.0,0.0,2,111,342.0,1527.0,0.0,0,77,0.0,0.0,583.1785858332449,1869.0,0.0,2899.0156812040577,60,0,0,0,0,0,0,0,0,0,,1,,2,118756,2,1,3,0,2,,92.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,942.831921659865,342.0,29702.371528015505,0,5,0,1,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06292426846244062,29702.371528015505,8,4,8,8_1,8_4,8_0_1 +18738,2,77.0,0.0,5,111,212.0,980.0,0.0,0,77,0.0,0.0,361.502515194877,1192.0,0.0,1860.5339669809932,71,0,0,0,0,0,0,0,0,0,,2,,3,118757,1,1,0,0,1,,180.0,296.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2564.7065524482,212.0,17212.477647574404,0,5,2,3,32.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06925208702699333,17212.477647574404,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18739,2,65.0,0.0,7,111,700.0,,,0,77,0.0,0.0,,976.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,118758,2,2,0,0,2,,948.0,,21,2.0,3.0,5.0,5.0,2.5999999999999996,3,3,89.65094903956054,700.0,19931.0,0,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048968942852842305,7665.769230769231,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18740,2,75.0,0.0,1,300,1100.0,0.0,0.0,77,78,973.4722715067832,0.0,1875.7205977092674,2053.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118759,2,1,3,0,2,,157.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1209.16364054843,1100.0,35472.535785979555,5,5,0,1,180.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05787576090941443,23648.357190653038,6,3,6,6_1,6_0,6_1_0 +18741,1,31.0,288.0,2,111,1800.0,0.0,0.0,0,63,0.0,699.2448022613983,3069.36097806971,3178.0,1177.7508415870427,0.0,71,2,2,2,1,1,1,2,2,0,,1,,2,118760,1,2,2,0,1,,700.0,580.0,32,1.0,0.0,3.0,2.0,1.3,1,1,645.54053404924,1800.0,13702.132946727092,0,4,2,3,80.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.23193469311353462,10540.102266713147,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +18742,2,45.0,0.0,7,120,500.0,500.0,0.0,0,47,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,118761,2,2,3,0,1,,0.0,374.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1749.71585026178,500.0,39334.53540436675,0,1,2,3,65.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025422951859474217,39334.53540436675,9,5,9,9_1,9_1,9_0_0 +18743,2,53.0,0.0,1,111,0.0,0.0,800.0,0,52,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,50,0,0,0,0,0,0,0,0,1,20.0,1,,1,118762,2,1,1,0,1,,120.0,261.0,12,1.0,1.0,2.0,1.0,1.0,1,1,331.388815249946,0.0,17557.271737182524,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04556516593097845,17557.271737182524,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +18744,2,82.0,0.0,1,111,540.0,,,77,77,0.0,0.0,,690.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,1,118763,2,1,0,0,2,,150.0,,41,0.0,0.0,5.0,3.0,2.0,3,3,42.351572285765315,540.0,40345.60109108125,5,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017102236212624692,20172.800545540624,5,3,5,5_1,5_2,5_1_0 +18745,2,68.0,0.0,2,112,413.0,0.0,0.0,78,75,1766.5937754863075,0.0,704.2478244126613,2208.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,118764,2,1,2,0,1,,390.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,846.408807368057,413.0,47019.534529500575,5,5,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04695920582996577,31346.356353000385,8,4,8,8_1,8_0,8_0_1 +18746,2,35.0,0.0,2,111,900.0,0.0,0.0,0,52,0.0,0.0,1534.680489034855,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,2,,2,118765,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1555.95066485529,900.0,31221.69663832197,0,1,1,2,59.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02882610802435787,31221.69663832197,8,4,8,8_0,8_3,8_0_1 +18747,2,76.0,0.0,2,111,341.0,0.0,0.0,72,74,0.0,0.0,581.4733852898729,526.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,118766,2,1,0,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,282.735923839894,341.0,53479.02130509737,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009835632499689446,35652.68087006491,9,5,9,9_0,9_4,9_0_1 +18748,1,20.0,200.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1244.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,118767,2,1,0,0,1,,0.0,476.0,12,1.0,0.0,1.0,1.0,1.0,1,1,822.849272260443,0.0,5433.465706993348,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.22895147721257586,5433.465706993348,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +18749,2,64.0,0.0,2,111,240.0,0.0,0.0,0,22,0.0,0.0,409.2481304092947,283.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,118768,2,1,0,1,2,420.0,0.0,600.0,12,1.0,2.0,1.0,1.0,1.0,1,1,2429.52133548081,240.0,1085.0935157782178,0,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.2608070142203691,1085.0935157782178,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +18750,2,40.0,0.0,5,111,900.0,0.0,0.0,46,46,0.0,0.0,1534.680489034855,900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,118769,2,1,0,0,1,,0.0,800.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1064.12460940207,900.0,83475.99510300462,1,4,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010781542632578998,39750.47385857363,9,5,9,9_0,9_4,9_0_0 +18751,2,79.0,0.0,2,112,270.0,,,0,78,0.0,0.0,,410.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,2,118770,2,3,0,0,2,,200.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,91.20726406153356,270.0,10303.487804878052,0,5,0,1,96.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03979235068399759,10303.487804878052,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +18752,2,55.0,0.0,2,112,2000.0,0.0,0.0,75,11,959.7613944433074,0.0,3410.4010867441225,3060.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118771,2,2,1,0,1,,462.0,,42,1.0,4.0,10.0,4.0,2.5,4,4,2064.94897733257,2000.0,130157.78790236355,5,1,0,1,162.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02350992629265815,52063.11516094542,10,5,10,10_1,10_1,10_0_1 +18754,2,68.0,0.0,6,111,850.0,,,0,74,0.0,0.0,,1000.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,,4,118773,2,1,0,0,2,,517.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,103.29539082283674,850.0,28288.323307430313,0,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035350274709895456,28288.323307430313,8,4,8,8_1,8_2,8_0_0 +18755,2,71.0,0.0,1,300,643.0,0.0,0.0,72,78,2636.7071275915036,39.72981831030672,1096.4439493882353,3273.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118774,2,1,2,0,2,,342.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,877.246504238923,643.0,46219.25342267311,5,5,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07081464449606216,30812.835615115404,8,4,8,8_1,8_0,8_1_0 +18756,2,52.0,0.0,1,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,2130.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,1,,1,118775,1,2,1,0,1,,364.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1888.24710232261,0.0,42883.31990313379,1,1,0,1,200.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04966966188278593,21441.659951566897,6,3,6,6_1,6_2,6_1_0 +18757,2,77.0,0.0,9,111,104.0,,,0,86,0.0,0.0,,236.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,118776,2,1,0,0,2,,60.0,,11,0.0,11.0,2.0,1.0,1.0,1,1,218.05511713319584,104.0,9468.730128478941,0,6,0,1,29.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024924144716110003,9468.730128478941,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18758,2,43.0,0.0,1,211,300.0,1450.0,0.0,43,46,0.0,0.0,511.56016301161833,1750.0,0.0,2752.830869512694,42,2,2,2,2,1,1,2,2,0,,1,,1,118777,2,3,3,0,1,,232.0,650.0,43,2.0,0.0,6.0,3.0,1.8,2,2,1267.0986216171,300.0,42327.21248338932,1,1,2,3,120.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04134456056341441,23515.1180463274,6,3,6,6_1,6_1,6_1_0 +18760,2,38.0,0.0,8,111,700.0,,,56,42,0.0,0.0,,740.0,55.423569015860835,,20,0,0,0,0,0,0,0,0,2,3.0,1,2001.0,6,118779,1,1,0,0,2,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,105.48661001432112,700.0,59265.44513438181,1,1,1,2,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012486196607856102,28221.640540181812,8,4,8,8_1,8_2,8_0_0 +18761,1,41.0,148.0,1,120,1000.0,0.0,0.0,85,62,0.0,0.0,1705.2005433720612,1090.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,118780,2,2,1,0,1,,186.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,206.188185809799,1000.0,33488.49901669778,7,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03254848774967527,13953.54125695741,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +18762,2,60.0,0.0,2,111,400.0,0.0,0.0,0,75,0.0,0.0,682.0802173488245,400.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,118781,1,2,0,1,1,601.0,141.0,493.0,21,1.0,1.0,3.0,2.0,1.5,2,2,835.769260573116,400.0,64822.41252351107,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.006170705230307806,43214.941682340715,9,5,9,9_0,9_4,9_0_1 +18763,2,64.0,0.0,5,111,250.0,700.0,0.0,0,77,0.0,0.0,426.3001358430153,950.0,0.0,1328.9528335578523,70,2,2,2,1,1,2,2,2,0,,2,,3,118782,1,1,0,1,1,,536.0,276.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1090.11566950203,250.0,16454.453537555317,0,5,2,3,92.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.057735129144929606,16454.453537555317,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18764,2,51.0,0.0,8,111,0.0,0.0,1779.0,46,48,0.0,0.0,1121.3362386478293,1829.0,69.27946126982604,2128.9864905175673,43,1,2,2,2,1,2,2,2,2,30.0,1,2000.0,6,118783,2,1,2,0,1,,578.0,524.0,43,2.0,0.0,4.0,4.0,2.3,3,3,1437.14884422977,0.0,52354.332664727954,1,1,2,3,84.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03493502651848774,22762.753332490418,6,3,6,6_1,6_3,6_0_0 +18765,2,26.0,0.0,9,112,1045.0,0.0,0.0,22,45,0.0,529.7309108040896,1781.934567823804,1445.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,1,2012.0,6,118784,2,1,1,0,1,,311.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,542.980018293412,1045.0,36532.52092366357,1,1,1,2,140.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03955379928528326,24355.01394910905,7,4,7,7_1,7_0,7_0_0 +18766,2,35.0,0.0,7,112,1000.0,0.0,0.0,42,21,0.0,0.0,1705.2005433720612,1035.0,48.49562288887823,0.0,60,2,2,2,1,2,2,2,2,0,,1,,5,118785,2,1,1,0,1,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1596.95437344876,1000.0,43495.120477127464,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.02379577269004852,28996.746984751644,8,4,8,8_1,8_0,8_0_0 +18767,2,74.0,0.0,9,111,674.0,0.0,0.0,46,46,1009.3314884420276,754.8665478958276,1149.3051662327691,2261.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,0,,1,2004.0,6,118786,2,1,1,0,1,,470.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1044.93241553149,674.0,54694.585217613945,5,5,1,2,130.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041338644236977654,36463.05681174263,9,5,9,9_1,9_2,9_0_0 +18768,1,50.0,400.0,5,111,600.0,0.0,0.0,0,85,0.0,0.0,1023.1203260232367,790.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,118787,1,3,0,1,2,,0.0,300.0,11,0.0,3.0,4.0,1.0,1.0,1,1,279.25817113382,600.0,10083.008033264601,0,7,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07834963508843101,10083.008033264601,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +18769,1,38.0,251.0,6,112,1200.0,0.0,0.0,0,64,0.0,0.0,2046.2406520464733,1230.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,7,,4,118788,2,2,0,0,1,,110.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,372.908981648616,1200.0,14847.371465976521,0,4,2,3,18.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08284294649855062,14847.371465976521,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +18770,1,31.0,221.0,9,211,500.0,1021.0,0.0,85,62,0.0,0.0,852.6002716860306,1521.0,0.0,1938.3726329465246,31,2,2,2,2,2,2,2,1,2,5.0,1,2005.0,6,118789,1,1,2,0,1,,460.0,430.0,42,1.0,0.0,4.0,4.0,2.1,2,2,197.682439694309,500.0,20069.698352708685,6,1,2,3,102.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.07578589240703361,9556.999215575564,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +18771,1,24.0,362.0,2,111,700.0,0.0,0.0,0,81,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,60,2,2,2,2,2,2,2,1,0,,2,,2,118790,2,2,0,0,2,,0.0,490.0,32,1.0,0.0,3.0,2.0,1.3,1,1,525.122107982801,700.0,26195.475965231628,0,4,2,3,58.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.02672217145163105,20150.366127101253,5,3,5,5_0,5_2,5_0_1 +18772,2,83.0,0.0,2,120,240.0,0.0,0.0,0,71,1582.0242765549024,0.0,409.2481304092947,1806.0,91.44888887617039,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,118791,2,2,2,0,1,,222.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1772.15210663884,240.0,10528.033837822075,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1715420018419703,10528.033837822075,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +18773,1,47.0,330.0,7,112,1200.0,,,0,85,0.0,0.0,,1464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,118792,1,3,0,0,2,,450.0,380.0,31,0.0,0.0,3.0,4.0,2.3,3,1,87.02978944163235,1200.0,18916.07595948995,0,6,2,3,52.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07739448726761589,8224.380851952154,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +18774,2,29.0,0.0,7,120,480.0,,,42,37,0.0,0.0,,480.0,0.0,,20,0,0,0,0,0,0,0,0,3,30.0,2,,5,118793,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,88.03812048725118,480.0,44626.44837760729,1,1,1,2,87.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010755953418889031,24792.47132089294,7,4,7,7_0,7_1,7_0_0 +18775,2,76.0,0.0,5,111,343.0,71.0,0.0,78,74,0.0,0.0,584.883786376617,414.0,0.0,134.79378740372502,44,0,0,0,0,0,0,0,0,0,,2,,3,118794,2,1,0,1,1,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,925.944937986995,343.0,65466.28401068995,5,5,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006323865883886096,43644.18934045997,10,5,10,10_0,10_4,10_0_0 +18776,1,52.0,180.0,2,111,1200.0,0.0,0.0,0,56,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118795,1,1,0,0,2,,0.0,360.0,32,2.0,0.0,2.0,3.0,2.0,3,3,839.010144514843,1200.0,11351.924449153983,0,4,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10570894876678215,5675.9622245769915,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +18777,2,86.0,0.0,2,111,420.0,140.0,0.0,77,75,0.0,0.0,716.1842282162656,560.0,0.0,265.7905667115705,71,2,1,2,1,2,2,2,2,0,,2,,2,118796,2,2,0,1,1,414.0,0.0,338.0,41,0.0,1.0,4.0,2.0,1.5,2,2,282.507592260663,420.0,26788.999568573636,5,5,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020904102766754303,17859.333045715757,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +18778,1,60.0,227.0,2,111,160.0,0.0,0.0,0,78,0.0,0.0,272.8320869395298,190.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,118797,2,1,0,1,1,365.0,0.0,265.0,11,0.0,3.0,2.0,1.0,1.0,1,1,586.261109126082,160.0,7334.593064149111,0,7,2,3,45.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02590464097165859,7334.593064149111,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18779,2,82.0,0.0,7,111,0.0,0.0,0.0,75,71,0.0,0.0,0.0,4348.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,118798,2,1,2,0,1,,659.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1755.70053532259,0.0,34505.66479250389,5,5,0,1,120.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12600829533777225,23003.77652833593,6,3,6,6_1,6_3,6_0_0 +18780,2,39.0,0.0,9,111,300.0,0.0,0.0,52,55,0.0,0.0,511.56016301161833,2590.0,0.0,0.0,31,1,2,2,2,1,2,2,2,3,40.0,2,2009.0,6,118799,2,1,0,1,1,859.0,0.0,472.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1165.22016607389,300.0,40204.44192402469,1,1,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.06442074248647414,19144.97234477366,5,3,5,5_0,5_4,5_0_0 +18781,2,48.0,0.0,8,111,720.0,,,0,34,0.0,0.0,,910.0,263.261952825339,,10,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,118800,2,3,0,0,2,,160.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,105.77471533801979,720.0,53675.98078996899,0,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01695357935909504,41289.21599228384,9,5,9,9_1,9_3,9_0_0 +18782,2,73.0,0.0,2,111,300.0,480.0,0.0,0,78,0.0,0.0,511.56016301161833,780.0,0.0,911.2819430110987,70,0,0,0,0,0,0,0,0,0,,2,,2,118801,2,2,0,0,1,,0.0,317.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1866.01512852516,300.0,17402.956870972772,0,5,2,3,97.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.044819969720260554,17402.956870972772,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +18783,1,40.0,200.0,1,111,700.0,0.0,0.0,0,46,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,118802,2,1,0,0,1,,0.0,680.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2191.22849315115,700.0,14715.556803224612,0,4,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04756870632626075,11319.659079403547,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +18784,1,36.0,276.0,2,111,600.0,0.0,0.0,0,85,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,118803,2,1,0,0,1,,110.0,400.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2196.3148087368,600.0,9332.04213756488,0,7,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06429460895646631,9332.04213756488,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18787,2,53.0,0.0,5,111,1388.0,0.0,0.0,75,34,0.0,754.8665478958276,2366.818354200421,2008.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,118806,2,1,2,0,1,,290.0,,42,1.0,5.0,8.0,2.0,1.5,2,2,939.336890033444,1388.0,77284.1883942571,5,1,0,1,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025982028688150294,51522.79226283807,10,5,10,10_1,10_4,10_0_0 +18789,2,30.0,0.0,9,300,2135.0,0.0,0.0,62,43,0.0,0.0,3640.6031600993506,2191.0,77.59299662220518,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,118808,2,1,1,0,1,,247.0,460.0,43,2.0,0.0,3.0,2.0,1.5,2,2,906.333117144682,2135.0,40612.13813524591,1,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05394938805495948,27074.758756830604,7,4,7,7_1,7_0,7_0_0 +18790,2,29.0,0.0,5,111,462.0,500.0,0.0,0,38,0.0,0.0,787.8026510378922,962.0,0.0,949.2520239698945,12,0,0,0,0,0,0,0,0,0,,1,,3,118809,2,2,2,0,1,,400.0,,22,2.0,1.0,5.0,3.0,2.0,3,3,190.071582914819,462.0,43819.06041383463,0,1,0,1,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021953916649848467,21909.530206917316,6,3,6,6_1,6_4,6_0_0 +18791,2,41.0,0.0,9,111,474.0,0.0,0.0,0,38,0.0,0.0,808.265057558357,474.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,118810,2,1,0,0,1,850.0,0.0,780.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1992.29252008233,474.0,37764.945693710186,0,1,2,3,57.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012551322166443508,23603.091058568865,6,3,6,6_0,6_3,6_0_0 +18792,0,54.0,0.0,1,300,650.0,0.0,0.0,0,31,1371.087706347582,728.3800023556231,1108.3803531918397,2830.0,457.2444443808519,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,118811,1,2,3,0,2,,468.0,,32,1.0,0.0,7.0,3.0,1.8,2,2,1018.32147545759,650.0,29225.04052667232,0,1,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09683476734334011,16236.133625929067,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18793,1,20.0,269.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,2313.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,2,118812,2,2,5,0,1,,0.0,580.0,12,1.0,0.0,3.0,1.0,1.0,1,1,984.430351874472,0.0,13294.970925433143,0,2,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.17397555910222073,13294.970925433143,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +18794,1,83.0,150.0,5,211,600.0,,,0,21,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,3,,3,118813,2,2,0,0,2,,180.0,350.0,11,0.0,0.0,1.0,1.0,1.0,1,1,60.85481939969568,600.0,7450.423104485695,0,5,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08053233911490966,7450.423104485695,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +18795,2,81.0,0.0,5,111,240.0,411.0,0.0,0,77,0.0,0.0,409.2481304092947,651.0,0.0,780.2851637032533,70,0,0,0,0,0,0,0,0,0,,2,,3,118814,2,1,0,0,1,,160.0,241.0,11,0.0,1.0,4.0,1.0,1.0,1,1,364.663255971927,240.0,11052.797396974813,0,5,2,3,60.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05889911636109252,11052.797396974813,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +18797,1,38.0,200.0,2,111,470.0,800.0,0.0,85,63,0.0,0.0,801.4442553848687,1410.0,193.98249155551292,1518.8032383518312,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,118816,1,2,0,1,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,832.752689855215,470.0,25513.068964143058,6,1,1,2,75.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05526579346379937,10630.445401726274,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +18798,2,83.0,0.0,1,112,679.0,0.0,0.0,77,77,2953.111982902484,158.91927324122688,1157.8311689496295,3749.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118817,2,1,1,0,1,,327.0,,41,0.0,5.0,5.0,3.0,2.0,3,3,1677.52625200313,679.0,52034.68077262658,5,5,0,1,140.0,9,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07204810223362036,26017.34038631329,7,4,7,7_1,7_1,7_1_0 +18799,1,58.0,103.0,5,111,300.0,300.0,0.0,0,77,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,2,1,2,2,2,2,2,1,0,,8,,3,118818,2,1,0,0,1,,173.0,440.0,11,0.0,5.0,3.0,1.0,1.0,1,1,195.840845744911,300.0,2050.759744392588,0,7,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.29257449666670404,2050.759744392588,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +18800,2,59.0,0.0,6,112,820.0,0.0,0.0,54,64,0.0,794.5963662061343,1398.2644455650902,1530.0,0.0,0.0,41,2,2,2,2,2,2,2,1,2,12.0,1,,4,118819,1,2,3,0,1,,320.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,240.483288920778,820.0,46931.69534331221,1,1,0,1,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03260056958965207,31287.796895541473,8,4,8,8_1,8_0,8_0_0 +18801,2,41.0,0.0,9,111,1200.0,,,47,34,0.0,0.0,,1284.0,116.38949493330776,,10,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,118820,2,2,0,0,2,,900.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,125.59545886217423,1200.0,89482.33781243673,4,1,1,2,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014349200427590336,42610.6370535413,9,5,9,9_1,9_3,9_0_0 +18802,2,27.0,0.0,1,111,696.0,0.0,0.0,34,48,0.0,0.0,1186.8195781869547,696.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,1,118821,2,1,0,0,1,,0.0,615.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1411.72271581449,696.0,25931.738865868883,3,1,2,3,70.0,8,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02683969646617369,17287.825910579257,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +18803,2,51.0,0.0,2,211,800.0,,,55,63,0.0,0.0,,1869.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,118822,2,2,0,0,2,,300.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,88.82776250852193,800.0,52908.352219146815,1,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03532523546109671,26454.176109573407,7,4,7,7_1,7_2,7_0_1 +18804,2,40.0,0.0,9,111,1400.0,0.0,0.0,52,55,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,2.0,1,2012.0,6,118823,2,1,1,0,1,,216.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,347.872015760808,1400.0,39346.62925742768,1,1,1,2,245.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03558119275835336,16394.428857261533,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +18805,2,64.0,0.0,2,111,10.0,2.0,0.0,75,38,0.0,0.0,17.052005433720613,12.0,0.0,3.797008095879578,12,0,0,0,0,0,0,0,0,3,35.0,2,,2,118824,2,3,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,925.869359644323,10.0,96430.76495474097,6,1,1,2,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00012444161368658753,64287.176636493976,10,5,10,10_0,10_4,10_0_1 +18806,2,45.0,0.0,1,111,2160.0,0.0,0.0,85,22,0.0,0.0,3683.2331736836522,2160.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,118825,2,1,0,0,2,,0.0,1400.0,42,1.0,0.0,4.0,4.0,2.3,3,2,2147.59245858225,2160.0,39068.28863199249,6,1,2,3,160.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05528780695633557,16986.212448692386,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +18807,0,87.0,0.0,9,111,510.0,,,0,72,0.0,0.0,,573.0,87.29212119998083,,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,118826,2,1,0,0,1,,255.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,118.42195263296934,510.0,11391.529346817199,0,5,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0503005331904883,11391.529346817199,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18808,2,82.0,0.0,6,111,550.0,,,74,74,0.0,0.0,,592.0,58.19474746665388,,41,0,0,0,0,0,0,0,0,0,,2,,4,118827,2,1,0,0,2,,240.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,153.32718090799912,550.0,93343.43456257158,5,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006342170745851015,62228.95637504772,10,5,10,10_0,10_2,10_0_0 +18809,0,85.0,0.0,5,111,0.0,,,0,72,0.0,0.0,,280.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,,3,118828,2,1,0,0,2,,160.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,96.71659752470846,0.0,9657.745882381838,0,5,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028992272462955413,9657.745882381838,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18810,2,65.0,0.0,6,111,1573.0,0.0,0.0,90,56,0.0,0.0,2682.280454724252,1573.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,4,118829,2,1,0,0,1,,0.0,484.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1002.24698300591,1573.0,35048.0,5,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0448813056379822,23365.333333333332,6,3,6,6_0,6_4,6_0_0 +18811,0,61.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,772.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,118830,2,2,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1696.81006046986,0.0,61711.580411791656,0,1,5,0,90.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012509807638186635,61711.580411791656,10,5,10,10_0,10_3,10_0_1 +18812,2,74.0,0.0,5,111,270.0,0.0,0.0,0,74,0.0,0.0,460.40414671045653,270.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,118831,1,2,0,1,2,,0.0,596.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2098.17540891287,270.0,24005.834232849655,0,5,2,3,60.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011247265868000171,24005.834232849655,6,3,6,6_0,6_3,6_0_0 +18813,2,26.0,0.0,6,112,528.0,0.0,0.0,46,52,0.0,683.3528749372755,900.3458869004482,1044.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,118832,2,2,2,1,1,500.0,0.0,818.0,43,2.0,0.0,3.0,2.0,1.5,2,2,776.014765986922,528.0,65470.422112579545,1,1,3,4,65.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015946132105346622,43646.94807505303,10,5,10,10_1,10_0,10_0_0 +18814,1,57.0,420.0,2,111,280.0,0.0,0.0,0,78,0.0,0.0,477.4561521441771,280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118833,2,1,0,1,1,,0.0,600.0,11,0.0,2.0,1.0,1.0,1.0,1,1,2675.32513474919,280.0,9329.973190724144,0,7,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03001080434811709,9329.973190724144,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18815,2,30.0,0.0,9,112,750.0,0.0,0.0,55,46,0.0,331.081819252556,1278.9004075290459,1028.0,38.79649831110259,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,118834,2,1,1,0,1,,280.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1452.71806789125,750.0,48378.00902590474,1,1,1,2,87.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021249324242540484,32252.00601726983,8,4,8,8_1,8_0,8_0_0 +18817,2,30.0,0.0,1,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,461.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,90.0,2,,1,118836,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,726.659930419195,0.0,31462.639222528174,0,1,1,2,46.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014652299088434718,31462.639222528174,8,4,8,8_0,8_4,8_1_0 +18818,2,57.0,0.0,1,111,180.0,0.0,0.0,0,54,0.0,0.0,306.936097806971,180.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,118837,2,2,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,921.672094883988,180.0,39165.75100563002,0,1,0,1,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004595852125346077,39165.75100563002,9,5,9,9_0,9_4,9_1_0 +18819,0,61.0,0.0,5,111,320.0,480.0,0.0,77,77,0.0,0.0,545.6641738790596,800.0,0.0,911.2819430110987,70,0,0,0,0,0,0,0,0,0,,2,,3,118838,2,1,0,0,1,,0.0,,41,1.0,0.0,2.0,3.0,2.0,3,3,554.983427613618,320.0,59672.36254843524,5,5,5,0,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013406541417740097,29836.18127421762,8,4,8,8_0,8_4,8_0_0 +18820,2,50.0,0.0,5,112,550.0,0.0,0.0,0,52,0.0,0.0,937.8602988546337,626.0,105.3047811301356,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,3,118839,2,2,2,0,1,,600.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,1485.67029912204,550.0,28044.43673378841,0,1,0,1,64.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02232171770616397,18696.29115585894,5,3,5,5_1,5_1,5_0_0 +18821,2,60.0,0.0,1,300,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1419.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118840,2,1,1,0,1,,369.0,430.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1454.39817081705,0.0,18337.252230446295,0,5,2,3,50.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07738345866475897,18337.252230446295,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18822,2,34.0,0.0,9,111,1100.0,0.0,0.0,43,21,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,5.0,2,2009.0,6,118841,1,2,0,0,1,,0.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1965.66017691987,1100.0,35060.60341035714,4,1,2,3,72.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03137424610538941,23373.735606904756,6,3,6,6_0,6_3,6_0_0 +18823,2,50.0,0.0,1,112,450.0,0.0,0.0,0,63,0.0,0.0,767.3402445174275,465.0,20.783838380947813,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,118842,2,1,2,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,790.110143527023,450.0,20316.05996294267,0,1,1,2,75.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0228882962960426,20316.05996294267,5,3,5,5_1,5_0,5_1_0 +18824,2,45.0,0.0,2,111,200.0,0.0,0.0,52,34,0.0,264.8654554020448,341.04010867441224,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,118843,2,1,0,1,2,,200.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,333.498020480666,200.0,63074.11279632765,1,1,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006341745959893852,42049.4085308851,9,5,9,9_0,9_3,9_0_1 +18825,1,43.0,130.0,2,111,300.0,516.0,0.0,85,63,0.0,0.0,511.56016301161833,816.0,0.0,979.6280887369311,50,2,1,2,2,1,2,2,2,3,20.0,2,,2,118844,2,1,0,1,1,500.0,0.0,310.0,42,1.0,0.0,3.0,3.0,1.8,2,2,214.517128332798,300.0,28986.988239941107,6,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.028150561667377207,16103.882355522837,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +18826,0,74.0,0.0,5,111,0.0,,,0,86,0.0,0.0,,487.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,3,118845,2,1,0,0,2,,125.0,,11,0.0,6.0,2.0,1.0,1.0,1,1,132.41005470583735,0.0,8366.958524966602,0,5,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05820514091791126,8366.958524966602,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18827,2,92.0,0.0,5,120,850.0,,,0,75,0.0,0.0,,1025.0,242.47811444439117,,60,0,0,0,0,0,0,0,0,0,,1,,3,118846,2,2,0,0,1,,575.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,101.616723640821,850.0,71248.28431220049,0,5,0,1,145.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014386311332194143,47498.85620813366,10,5,10,10_1,10_1,10_0_0 +18828,2,53.0,0.0,2,112,1062.0,0.0,0.0,0,43,0.0,0.0,1810.922977061129,1062.0,0.0,0.0,33,2,2,1,2,1,2,2,2,2,30.0,1,,2,118847,2,2,1,0,1,,314.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,65.7077341258027,1062.0,31915.797554310004,0,1,0,1,70.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.033275057538287474,31915.797554310004,8,4,8,8_1,8_0,8_0_1 +18829,2,55.0,0.0,2,111,372.0,145.0,0.0,78,52,0.0,0.0,634.3346021344067,517.0,0.0,275.2830869512694,60,0,0,0,0,0,0,0,0,1,1.0,2,,2,118848,1,1,0,1,1,,288.0,257.0,42,1.0,0.0,3.0,2.0,1.5,2,2,199.530881857857,372.0,27336.710151379528,5,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018912297680923028,18224.473434253017,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +18830,2,68.0,0.0,5,120,650.0,0.0,0.0,77,78,1509.2511598333767,0.0,1108.3803531918397,2116.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118849,2,1,1,0,1,,406.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,318.512783175599,650.0,29315.51108041853,5,5,0,1,105.0,0,1,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07218021866292465,19543.674053612354,5,3,5,5_1,5_1,5_0_0 +18831,2,61.0,0.0,5,111,1650.0,0.0,0.0,54,47,0.0,0.0,2813.5808965639008,1650.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,,3,118850,2,1,2,0,1,,290.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1402.69352469715,1650.0,40865.30894496778,4,1,0,1,100.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04037654535346866,27243.539296645187,7,4,7,7_1,7_2,7_0_0 +18832,2,75.0,0.0,2,111,380.0,1400.0,0.0,86,74,0.0,0.0,647.9762064813832,1780.0,0.0,2657.9056671157045,44,0,0,0,0,0,0,0,0,0,,1,,2,118851,2,2,1,0,1,,100.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,305.144549523676,380.0,42663.793465016366,5,5,0,1,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04172155955751032,28442.52897667758,8,4,8,8_1,8_2,8_0_1 +18833,2,54.0,0.0,1,221,1336.0,570.0,0.0,22,22,0.0,0.0,2278.147925945074,1906.0,0.0,1082.1473073256798,50,0,0,0,0,0,0,0,0,0,,1,,1,118852,2,1,1,0,1,,360.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,526.935234718618,1336.0,81358.71187041866,1,1,0,1,67.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023427116238464017,54239.14124694577,10,5,10,10_1,10_1,10_1_0 +18834,2,38.0,0.0,1,112,600.0,2070.0,0.0,31,31,0.0,59.594727465460075,1023.1203260232367,2715.0,0.0,3929.9033792353634,10,0,0,0,0,0,0,0,0,0,,1,,1,118853,1,2,1,0,2,,1000.0,,43,2.0,0.0,8.0,6.0,2.6999999999999997,2,2,479.293683354756,600.0,115535.17410319319,1,1,1,2,208.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023499337072665234,42790.80522340489,9,5,9,9_1,9_1,9_1_0 +18835,1,43.0,376.0,2,111,0.0,0.0,0.0,54,56,0.0,0.0,0.0,495.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,118854,2,1,0,1,1,660.0,558.0,336.0,43,2.0,0.0,4.0,4.0,2.1,2,2,382.977657379889,0.0,10801.422695847137,4,4,2,3,74.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04582729645330096,5143.534617070065,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18836,2,38.0,0.0,5,111,353.0,639.0,0.0,64,42,0.0,529.7309108040896,601.9357918103376,1392.0,0.0,1213.1440866335251,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,118855,2,1,3,0,1,,230.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1109.80770295308,353.0,47873.716239768095,1,1,1,2,80.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029076497697157738,26596.509022093385,7,4,7,7_1,7_2,7_0_0 +18838,2,61.0,0.0,8,111,660.0,0.0,0.0,0,45,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,118857,1,1,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1057.2811097462,660.0,32237.04791919035,0,1,0,1,38.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020473338677115947,32237.04791919035,8,4,8,8_0,8_2,8_0_0 +18839,2,40.0,0.0,2,111,600.0,600.0,0.0,62,54,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,118858,2,1,0,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1111.85718138894,600.0,66943.0759293787,1,1,1,2,81.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01792567764985784,37190.59773854372,9,5,9,9_0,9_2,9_0_1 +18840,2,31.0,0.0,9,111,0.0,0.0,0.0,84,46,0.0,0.0,0.0,945.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,118859,2,1,0,0,1,,0.0,1000.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1417.86837412315,0.0,27159.648334131456,3,1,2,3,80.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03479426494681159,18106.432222754305,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18841,2,67.0,0.0,6,111,1530.0,0.0,0.0,54,72,0.0,675.4069112752142,2608.9568313592536,2110.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,118860,2,1,3,0,1,,304.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1076.37142871891,1530.0,41319.30754039516,5,5,0,1,172.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05106571541493507,27546.205026930107,7,4,7,7_1,7_2,7_0_0 +18842,2,69.0,0.0,8,120,500.0,0.0,0.0,72,78,1582.0242765549024,0.0,852.6002716860306,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118861,2,1,1,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1352.88086960456,500.0,35833.85882517024,5,5,0,1,126.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05581313499497213,23889.23921678016,6,3,6,6_1,6_1,6_0_0 +18843,1,67.0,180.0,7,111,600.0,0.0,0.0,0,78,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,5,118862,1,2,0,0,1,,0.0,526.0,11,0.0,4.0,3.0,1.0,1.0,1,1,383.806048379668,600.0,10868.171232806591,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.055207080119316104,10868.171232806591,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +18844,1,53.0,219.0,2,300,240.0,0.0,0.0,0,52,618.0441507074485,0.0,409.2481304092947,922.0,133.01656563806603,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,118863,2,3,3,0,2,,118.0,517.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1161.36737869456,240.0,6405.347931027374,0,4,2,3,85.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.14394221983381275,6405.347931027374,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +18845,2,32.0,0.0,2,111,665.0,1877.0,0.0,43,38,0.0,0.0,1133.9583613424206,2542.0,0.0,3563.492097982984,33,0,0,0,0,0,0,0,0,0,,1,,2,118864,2,2,2,0,1,,314.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,520.0405341781,665.0,65501.76528193997,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038808114392924246,43667.84352129331,10,5,10,10_1,10_4,10_0_1 +18846,2,55.0,0.0,1,111,430.0,300.0,0.0,77,62,0.0,0.0,733.2362336499863,730.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,118865,2,1,2,0,1,,368.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,215.396843599042,430.0,28976.080546469668,6,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025193193359235755,19317.38703097978,5,3,5,5_1,5_2,5_1_0 +18847,2,28.0,0.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,245.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,20.0,2,,1,118866,1,3,0,1,2,,0.0,680.0,12,1.0,0.0,2.0,1.0,1.0,1,1,409.174574894021,0.0,5669.474111666389,0,1,2,3,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043213884599252336,5669.474111666389,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +18848,2,79.0,0.0,2,300,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2721.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,118867,2,2,5,0,1,,104.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,319.205596893672,0.0,21872.946845183902,0,5,0,1,100.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12440024744992803,21872.946845183902,6,3,6,6_1,6_0,6_0_1 +18850,2,67.0,0.0,2,111,239.0,0.0,0.0,0,77,0.0,0.0,407.54292986592264,762.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,118869,2,1,0,1,1,768.0,0.0,398.0,11,0.0,4.0,3.0,1.0,1.0,1,1,236.999354504941,239.0,17084.425669859906,0,5,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.044602026121621945,17084.425669859906,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +18851,2,58.0,0.0,6,111,1378.0,0.0,0.0,77,63,0.0,0.0,2349.7663487667005,1378.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,118870,2,2,3,0,1,,456.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,317.478581044385,1378.0,24312.602285975045,6,4,0,1,108.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056678424785277404,12156.301142987522,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18852,2,72.0,0.0,1,111,960.0,1246.0,0.0,74,74,0.0,0.0,1636.9925216371787,2206.0,0.0,2365.5360437329773,10,0,0,0,0,0,0,0,0,0,,1,,1,118871,2,1,2,0,1,,222.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1247.73196679148,960.0,123781.67306231323,5,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.017821701269859814,82521.11537487549,10,5,10,10_1,10_3,10_1_0 +18853,2,63.0,0.0,2,111,450.0,102.0,0.0,52,78,835.3088180209884,0.0,767.3402445174275,1344.0,0.0,193.6474128898585,71,2,2,1,2,1,2,2,2,0,,2,,2,118872,2,2,0,1,1,417.0,0.0,365.0,42,2.0,1.0,5.0,4.0,2.5,4,4,282.209991250911,450.0,50494.5813113161,1,5,2,3,94.0,7,5,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026616717380302402,20197.83252452644,5,3,5,5_0,5_2,5_0_1 +18854,1,33.0,160.0,6,111,300.0,400.0,0.0,35,63,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,60,0,0,0,0,0,0,0,0,2,5.0,2,,4,118873,1,3,0,0,2,,290.0,420.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2364.61867810394,300.0,23710.483455979956,4,1,2,3,73.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02952280586347365,13172.490808877754,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +18855,1,43.0,300.0,7,111,0.0,0.0,1600.0,55,62,0.0,0.0,1008.5092646635901,1600.0,0.0,1914.7714361034893,43,0,0,0,0,0,0,0,0,2,20.0,1,,5,118874,2,1,1,0,1,,1000.0,500.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,262.578579988191,0.0,36284.899828539645,1,1,2,3,87.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04409547794153012,12512.034423634363,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +18856,2,46.0,0.0,2,111,840.0,0.0,0.0,47,38,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,118875,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,789.280725814581,840.0,72857.25630137957,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011529393812543203,48571.50420091971,10,5,10,10_0,10_4,10_0_1 +18857,2,62.0,0.0,2,120,700.0,,,78,77,0.0,0.0,,952.0,349.1684847999233,,71,2,2,2,2,1,2,2,2,0,,1,,2,118876,2,3,0,0,2,,1000.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,134.06313284439938,700.0,4821.957785001672,5,5,0,1,54.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.19743018135934798,3214.638523334448,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +18858,2,80.0,0.0,2,111,310.0,850.0,0.0,0,71,0.0,0.0,528.612168445339,1160.0,0.0,1613.7284407488207,70,0,0,0,0,0,0,0,0,0,,2,,2,118877,2,1,0,0,1,,117.0,,11,0.0,6.0,2.0,1.0,1.0,1,1,1652.73409461104,310.0,13036.1558308763,0,5,0,1,48.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08898328733172438,13036.1558308763,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +18859,2,58.0,0.0,1,111,300.0,1500.0,0.0,0,56,0.0,0.0,511.56016301161833,1800.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,0,,1,,1,118878,2,1,3,0,1,,300.0,,32,3.0,0.0,9.0,4.0,2.5,4,4,1185.22634828196,300.0,29483.562825369198,0,4,0,1,200.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0610509662845491,11793.42513014768,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +18860,2,36.0,0.0,2,111,800.0,650.0,0.0,0,54,0.0,0.0,1364.160434697649,1450.0,0.0,1234.027631160863,44,1,2,2,2,1,2,2,2,0,,2,,2,118879,1,3,0,0,2,,226.0,355.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1831.07223558538,800.0,25432.821401063527,0,1,2,3,61.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.057012943123147364,25432.821401063527,7,4,7,7_0,7_3,7_0_1 +18861,2,86.0,0.0,2,111,0.0,0.0,377.0,77,74,0.0,0.0,237.62999548635838,377.0,0.0,451.16801963188465,41,2,2,1,2,2,2,2,1,0,,2,,2,118880,2,1,0,1,2,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1878.33549755256,0.0,51216.45289447691,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.007360915852113901,34144.30192965127,9,5,9,9_0,9_3,9_0_1 +18862,1,36.0,396.0,8,111,362.0,605.0,0.0,55,63,0.0,0.0,617.2825967006861,967.0,0.0,1148.5949490035723,50,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,118881,2,1,1,0,1,,541.0,755.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,289.271257227801,362.0,32212.03144204395,1,1,2,3,96.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030019839069753525,11930.382015571835,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +18863,1,27.0,270.0,8,111,0.0,0.0,1100.0,0,63,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,118882,2,1,1,0,1,,400.0,267.0,12,1.0,0.0,3.0,1.0,1.0,1,1,440.537805152019,0.0,6068.411847792657,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1812665368781978,6068.411847792657,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +18864,2,23.0,0.0,2,111,0.0,0.0,0.0,47,54,0.0,0.0,0.0,850.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,2,,2,118883,2,2,0,1,1,744.0,0.0,333.0,43,2.0,0.0,3.0,2.0,1.5,2,2,293.163418245694,0.0,28016.114553174735,4,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03033968177088566,18677.40970211649,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +18865,2,50.0,0.0,1,111,380.0,1762.0,0.0,33,37,0.0,0.0,647.9762064813832,2142.0,0.0,3345.164132469908,10,0,0,0,0,0,0,0,0,2,7.0,1,,1,118884,1,2,3,0,1,,540.0,,43,2.0,3.0,10.0,3.0,1.8,2,2,1232.67529421193,380.0,89435.2225106861,4,1,1,2,170.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023950295419056678,49686.23472815895,10,5,10,10_1,10_2,10_1_0 +18866,0,76.0,0.0,2,300,400.0,0.0,0.0,0,86,2636.7071275915036,0.0,682.0802173488245,3000.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,118885,2,1,2,0,1,,0.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,1355.42891270966,400.0,10541.337808789403,0,5,5,0,100.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.28459385842834767,10541.337808789403,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +18867,2,38.0,0.0,1,111,420.0,0.0,0.0,0,37,0.0,0.0,716.1842282162656,420.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,,1,118886,2,2,0,0,2,,0.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1242.93397898357,420.0,45179.768366268705,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009296196399129234,45179.768366268705,10,5,10,10_0,10_4,10_1_0 +18868,2,77.0,0.0,2,300,0.0,0.0,0.0,71,71,0.0,463.51454695357836,0.0,410.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,118887,2,2,3,0,2,,0.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1139.51579132336,0.0,28381.252196667578,5,5,0,1,180.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014446156115977882,18920.834797778385,5,3,5,5_1,5_0,5_0_1 +18869,2,46.0,0.0,7,211,480.0,,,55,54,0.0,0.0,,568.0,121.93185183489385,,30,0,0,0,0,0,0,0,0,1,20.0,2,,5,118888,1,2,0,0,2,,480.0,505.0,43,2.0,0.0,4.0,2.0,1.5,2,2,109.27338596466382,480.0,40743.74838520115,1,1,2,3,104.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013940789017004327,27162.498923467432,7,4,7,7_0,7_2,7_0_0 +18872,2,84.0,0.0,2,111,1400.0,,,86,74,0.0,0.0,,1750.0,484.95622888878233,,12,0,0,0,0,0,0,0,0,0,,2,,2,118891,2,1,0,0,2,,0.0,,41,1.0,3.0,5.0,4.0,2.3,3,3,110.80000449889434,1400.0,134483.0,6,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013012797156517925,58470.8695652174,10,5,10,10_0,10_3,10_0_1 +18873,2,27.0,0.0,9,120,2000.0,0.0,0.0,37,37,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,70.0,1,2011.0,6,118892,2,1,1,0,1,,500.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,154.205604142309,2000.0,53344.63529062069,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03749205499492186,29635.90849478927,8,4,8,8_1,8_0,8_0_0 +18874,2,70.0,0.0,5,400,1446.0,0.0,0.0,0,75,0.0,0.0,2465.7199857160003,1506.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,118893,2,1,1,0,1,,220.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2033.76946503114,1446.0,24333.82333701238,0,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06188916468828532,24333.82333701238,7,4,7,7_1,7_0,7_0_0 +18875,2,54.0,0.0,1,111,700.0,1300.0,0.0,43,34,0.0,0.0,1193.6403803604428,2000.0,0.0,2468.055262321726,10,2,2,1,1,1,2,2,2,2,25.0,1,,1,118894,2,1,1,0,1,,1500.0,,43,2.0,1.0,8.0,3.0,2.0,3,3,576.132523347999,700.0,65761.99345326559,1,1,1,2,195.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.030412703371307012,32880.996726632795,8,4,8,8_1,8_4,8_1_0 +18876,2,51.0,0.0,7,111,800.0,0.0,0.0,22,11,1582.0242765549024,0.0,1364.160434697649,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,118895,1,1,2,0,1,,600.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1528.0555493852,800.0,11403.0,1,1,0,1,95.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.20170130667368236,5701.5,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +18877,2,56.0,0.0,6,211,420.0,,,85,69,0.0,0.0,,684.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,118896,1,3,0,0,2,,280.0,,42,2.0,2.0,4.0,4.0,2.5,4,4,92.48521309527291,420.0,27463.407065604686,7,4,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02490586832019998,10985.362826241875,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +18878,1,70.0,39.0,1,111,450.0,350.0,0.0,0,77,0.0,0.0,767.3402445174275,800.0,0.0,664.4764167789261,71,1,2,2,2,2,2,2,1,0,,2,,1,118897,2,1,0,0,1,,0.0,198.0,11,0.0,3.0,3.0,1.0,1.0,1,1,995.995216395794,450.0,12293.68002718766,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.06507408670396397,12293.68002718766,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +18879,1,38.0,512.0,2,111,0.0,0.0,860.0,85,64,0.0,0.0,542.0737297566797,860.0,0.0,1029.1896469056255,71,2,1,2,2,1,2,2,2,2,20.0,2,,2,118898,1,2,0,1,1,917.0,0.0,478.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,3,2,239.31994179266,0.0,25526.40920410206,6,1,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03369059835732004,8802.210070380022,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18880,2,36.0,0.0,6,111,307.0,0.0,0.0,0,56,0.0,0.0,523.4965668152228,307.0,0.0,0.0,50,1,2,2,2,2,2,2,1,1,1.0,2,,4,118899,2,1,0,0,2,,0.0,391.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1547.16198945879,307.0,17130.693769556667,0,1,2,3,45.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.01792104885708578,17130.693769556667,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +18881,2,64.0,0.0,2,111,600.0,1138.0,0.0,62,75,0.0,0.0,1023.1203260232367,1738.0,0.0,2160.4976065554797,50,0,0,0,0,0,0,0,0,0,,1,,2,118900,2,1,2,0,1,,401.0,,42,2.0,0.0,4.0,4.0,2.5,4,4,79.030941616608,600.0,76372.75748786921,1,5,0,1,72.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02275680566170546,30549.102995147685,8,4,8,8_1,8_2,8_0_1 +18882,2,34.0,0.0,5,112,498.0,836.0,0.0,55,64,0.0,172.1625460113291,849.1898705992865,1464.0,0.0,1587.1493840776636,43,2,2,1,2,1,2,2,2,2,20.0,1,,3,118901,2,2,5,0,1,,198.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,514.673758971526,498.0,53099.41108632709,1,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027570927248512834,35399.607390884725,9,5,9,9_1,9_1,9_0_0 +18883,2,44.0,0.0,5,112,562.0,0.0,0.0,11,53,2636.7071275915036,893.9209119819011,958.3227053750984,3817.0,110.84713803172167,0.0,71,2,2,2,2,1,2,2,2,2,20.0,1,,3,118902,2,1,3,0,1,,472.0,,43,2.0,0.0,8.0,2.0,1.5,2,2,3062.77092421619,562.0,36339.242788173884,1,1,1,2,200.0,10,1,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.10503796191488589,24226.16185878259,7,4,7,7_1,7_1,7_0_0 +18884,1,40.0,259.0,2,111,200.0,316.0,0.0,85,63,0.0,0.0,341.04010867441224,516.0,0.0,599.9272791489733,50,0,0,0,0,0,0,0,0,0,,2,,2,118903,2,1,0,1,1,876.0,960.0,365.0,42,1.0,0.0,5.0,5.0,2.4,2,2,413.644481001285,200.0,27238.701831775477,6,1,2,3,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01894363406842161,11349.459096573117,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +18885,2,46.0,0.0,6,221,1200.0,0.0,0.0,0,52,0.0,317.83854648245375,2046.2406520464733,1500.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,12.0,1,,4,118904,2,1,2,0,1,,640.0,,32,1.0,0.0,5.0,3.0,1.8,2,1,1998.63747603598,1200.0,19677.72973549731,0,1,0,1,104.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07622830581386125,10932.072075276283,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +18886,0,84.0,0.0,1,400,300.0,0.0,0.0,71,71,2636.7071275915036,549.5958199592429,511.56016301161833,3335.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118905,1,3,4,0,2,,230.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1947.82180274379,300.0,18397.0,5,5,0,1,150.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1812795564494211,12264.666666666666,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +18887,2,76.0,0.0,1,112,298.0,1485.0,0.0,71,71,0.0,0.0,508.1497619248742,1803.0,27.711784507930417,2819.278511190587,70,0,0,0,0,0,0,0,0,0,,5,,1,118906,1,2,2,0,2,,221.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,207.63267898712,298.0,22974.101135654248,5,5,0,1,137.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07847967541162541,15316.067423769498,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +18888,2,78.0,0.0,6,211,350.0,0.0,0.0,86,78,0.0,582.7040018844986,596.8201901802214,850.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,118907,2,1,2,0,1,,130.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,1101.52004196193,350.0,11840.602294205797,5,5,0,1,140.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07178688878148942,7893.734862803864,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +18889,2,57.0,0.0,8,111,300.0,0.0,0.0,0,74,0.0,0.0,511.56016301161833,300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2000.0,6,118908,2,1,0,0,1,,0.0,650.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1046.46298982348,300.0,21110.258878960034,0,7,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014211100002141663,21110.258878960034,5,3,5,5_0,5_4,5_0_0 +18890,2,64.0,0.0,5,111,600.0,0.0,0.0,72,72,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118909,2,2,0,1,1,,0.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,323.884557505949,600.0,46577.27972739327,5,5,0,1,78.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01288181713298136,23288.639863696633,6,3,6,6_0,6_3,6_0_0 +18892,2,32.0,0.0,9,112,0.0,0.0,0.0,55,46,0.0,0.0,0.0,3290.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,118911,2,1,1,0,1,,654.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2479.68501000505,0.0,48809.08499003085,1,1,1,2,120.0,9,1,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0674054840542898,27116.158327794918,7,4,7,7_1,7_1,7_0_0 +18893,2,60.0,0.0,8,111,600.0,,,21,37,0.0,0.0,,698.0,135.78774408885906,,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,118912,2,1,0,0,2,,480.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,128.05260754662177,600.0,73490.43775548904,1,1,0,1,76.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00949783429406591,40828.020975271684,9,5,9,9_1,9_2,9_0_0 +18894,2,26.0,0.0,9,111,1020.0,,,0,42,0.0,0.0,,1020.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,2,2010.0,6,118913,2,2,0,0,2,,200.0,631.0,12,1.0,0.0,2.0,1.0,1.0,1,1,176.30411495971663,1020.0,24596.269759837407,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04146970292485289,24596.269759837407,7,4,7,7_0,7_3,7_0_0 +18895,1,73.0,250.0,2,111,290.0,1250.0,0.0,0,86,0.0,0.0,494.50815757789775,1540.0,0.0,2373.130059924736,71,0,0,0,0,0,0,0,0,0,,1,,2,118914,2,3,4,0,1,,150.0,347.0,11,0.0,4.0,4.0,1.0,1.0,1,1,477.919342181184,290.0,11982.376274926306,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.12852208649318778,11982.376274926306,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +18896,1,34.0,357.0,5,111,390.0,,,42,69,0.0,0.0,,516.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,118915,2,1,0,0,2,,270.0,450.0,43,2.0,0.0,3.0,3.0,1.8,2,2,98.7080659089667,390.0,16290.79289420888,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03167433306352018,9050.44049678271,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +18897,2,50.0,0.0,6,111,1219.0,0.0,0.0,54,63,0.0,0.0,2078.639462370543,1219.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,118916,2,2,3,0,1,,471.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,1155.73017739383,1219.0,82269.52121149703,1,1,0,1,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014817151990786677,32907.80848459881,8,4,8,8_1,8_3,8_0_0 +18898,2,64.0,0.0,5,300,850.0,0.0,0.0,74,74,3164.0485531098047,662.163638505112,1449.420461866252,4470.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,118917,2,1,2,0,1,,260.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1660.65689671556,850.0,70141.50831260822,5,5,0,1,150.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06372831305648584,46761.005541738814,10,5,10,10_1,10_0,10_0_0 +18899,2,37.0,0.0,7,400,480.0,0.0,0.0,52,63,2098.818873562837,397.2981831030672,818.4962608185893,2830.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,118918,2,1,1,0,1,,180.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1321.45531579877,480.0,45459.871530102435,1,1,1,2,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06225270562249702,21647.557871477347,6,3,6,6_1,6_0,6_0_0 +18900,1,54.0,15.0,2,111,350.0,850.0,0.0,68,68,0.0,0.0,596.8201901802214,1200.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,3,10.0,2,,2,118919,2,1,0,0,1,,0.0,330.0,43,2.0,0.0,4.0,4.0,2.5,4,3,526.930362164115,350.0,18167.593775870937,1,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0660516750211448,7267.037510348375,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18901,1,52.0,351.0,2,111,400.0,200.0,0.0,0,52,0.0,0.0,682.0802173488245,600.0,0.0,379.7008095879578,50,2,2,2,2,1,2,2,2,1,10.0,2,,2,118920,2,2,0,1,1,122.0,0.0,401.0,32,3.0,0.0,5.0,3.0,2.0,3,3,680.985757039649,400.0,22590.222773364585,0,1,2,3,90.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.026560163041306567,11295.111386682293,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +18902,2,59.0,0.0,2,111,300.0,80.0,0.0,0,43,0.0,0.0,511.56016301161833,380.0,0.0,151.8803238351831,10,0,0,0,0,0,0,0,0,3,25.0,2,,2,118921,2,1,0,1,2,,0.0,730.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1520.917294988,300.0,40790.367365248596,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009315924924072674,40790.367365248596,9,5,9,9_0,9_4,9_0_1 +18903,2,80.0,0.0,6,111,2100.0,0.0,0.0,0,74,0.0,0.0,3580.9211410813286,2130.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,118922,2,1,2,0,2,,210.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,1561.05613662974,2100.0,17991.914278848908,0,5,0,1,190.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11838651335194521,17991.914278848908,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +18904,2,45.0,0.0,7,111,590.0,1200.0,0.0,47,37,0.0,0.0,1006.0683205895161,1790.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,118923,2,1,2,0,1,,490.0,,43,2.0,0.0,8.0,4.0,2.5,4,3,1367.85166904354,590.0,58464.706290438524,1,1,0,1,115.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0306167620360173,23385.88251617541,6,3,6,6_1,6_3,6_0_0 +18905,2,65.0,0.0,9,111,240.0,,,0,77,0.0,0.0,,286.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,118924,2,1,0,0,2,,120.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,217.29446764359594,240.0,19004.1574621324,0,5,0,1,29.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015049338576039602,19004.1574621324,5,3,5,5_1,5_2,5_0_0 +18906,2,50.0,0.0,1,111,740.0,0.0,0.0,0,52,0.0,132.4327277010224,1261.8484020953254,895.0,76.20740739680865,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,118925,2,2,1,0,2,,54.0,478.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1212.35391093197,740.0,16192.891462215426,0,1,2,3,68.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05527116649230914,16192.891462215426,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +18907,2,41.0,0.0,7,111,852.0,0.0,0.0,0,37,0.0,0.0,1452.830862952996,852.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,5,118926,1,1,0,0,1,,0.0,625.0,12,1.0,0.0,1.0,1.0,1.0,1,1,503.317143887736,852.0,57013.297685461715,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014943882122034461,57013.297685461715,10,5,10,10_0,10_4,10_0_0 +18908,2,54.0,0.0,1,400,770.0,0.0,0.0,21,45,1582.0242765549024,0.0,1313.0044183964872,2270.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,37.0,1,,1,118927,1,1,2,0,1,,270.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1043.86393526034,770.0,72850.82143403788,1,1,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031159566293365012,48567.214289358584,10,5,10,10_1,10_0,10_1_0 +18909,2,41.0,0.0,1,111,750.0,1183.0,0.0,46,46,0.0,0.0,1278.9004075290459,1933.0,0.0,2245.9302887127706,44,2,2,2,2,1,2,2,2,2,30.0,2,,1,118928,1,2,0,0,2,,0.0,1468.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,1269.2016962641,750.0,64338.402453693765,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03004426479801448,23829.037945812506,6,3,6,6_0,6_4,6_1_0 +18910,2,46.0,0.0,6,400,800.0,0.0,0.0,56,62,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,118929,2,1,2,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1888.20343792707,800.0,35983.92939595955,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02223214677855131,19991.071886644197,5,3,5,5_1,5_0,5_0_0 +18911,2,68.0,0.0,1,111,970.0,0.0,0.0,75,77,0.0,529.7309108040896,1654.0445270708994,1430.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,118930,2,1,2,0,1,,291.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,230.043640668173,970.0,38987.713623951226,5,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03667822160059962,25991.80908263415,7,4,7,7_1,7_3,7_1_0 +18912,2,64.0,0.0,2,111,816.0,,,0,56,0.0,0.0,,908.0,127.47420873647992,,42,0,0,0,0,0,0,0,0,0,,1,,2,118931,2,1,0,0,2,,972.0,,12,1.0,4.0,6.0,1.0,1.0,1,1,81.71930661958524,816.0,12976.01797706237,0,1,0,1,115.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06997524214324195,12976.01797706237,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +18913,1,28.0,357.0,7,111,500.0,,,85,53,0.0,0.0,,638.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,118932,2,2,0,0,2,,240.0,560.0,42,1.0,0.0,2.0,3.0,1.8,2,2,147.18757349212763,500.0,2475.867481473054,6,4,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2576874589509179,1375.4819341516966,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +18914,2,73.0,0.0,7,112,180.0,,,0,78,0.0,0.0,,246.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,5,118933,1,1,0,0,2,,96.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,109.99581779835898,180.0,14117.818707151957,0,5,0,1,107.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01742478814205049,14117.818707151957,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +18915,2,41.0,0.0,9,112,600.0,1000.0,0.0,37,42,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,118934,2,1,1,0,1,,420.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2194.13088036498,600.0,67369.12330788617,1,1,1,2,129.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023749752430171602,37427.29072660342,9,5,9,9_1,9_1,9_0_0 +18916,2,74.0,0.0,1,112,190.0,0.0,0.0,0,71,0.0,728.3800023556231,323.9881032406916,845.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118935,2,1,4,0,1,,160.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1077.49748162236,190.0,11768.775246467236,0,5,0,1,75.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07180016461387119,11768.775246467236,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +18917,1,49.0,222.0,2,111,400.0,0.0,0.0,85,64,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,118936,1,2,0,1,1,,400.0,404.0,42,1.0,3.0,3.0,2.0,1.5,2,2,2637.55393562659,400.0,14177.039478074776,6,4,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.028214635405270066,9451.35965204985,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +18918,2,63.0,0.0,5,111,800.0,0.0,0.0,78,46,0.0,0.0,1364.160434697649,930.0,180.1265993015477,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,118937,2,1,2,0,1,,100.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,835.2845251234,800.0,40262.00471849081,5,5,1,2,84.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023098700785082523,26841.336478993875,7,4,7,7_1,7_2,7_0_0 +18919,2,61.0,0.0,9,111,492.0,,,77,47,0.0,0.0,,596.0,144.10127944123818,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,118938,2,1,0,0,2,,200.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,53.79108564203882,492.0,54634.041594712566,5,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010908949486498915,36422.694396475046,9,5,9,9_1,9_2,9_0_0 +18920,2,59.0,0.0,2,111,180.0,,,0,55,0.0,0.0,,390.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,2,118939,2,2,0,0,2,,160.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,103.72702520933873,180.0,7076.4609541473355,0,4,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05511229448265815,7076.4609541473355,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +18921,2,63.0,0.0,1,111,876.0,656.0,0.0,0,77,0.0,0.0,1493.7556759939255,1532.0,0.0,1245.4186554485016,41,1,2,2,2,1,2,2,2,0,,2,,1,118940,2,2,0,1,2,708.0,1200.0,305.0,42,1.0,0.0,3.0,2.0,1.5,2,2,165.081887372656,876.0,17188.620555080983,4,5,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.08912873462362507,11459.08037005399,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +18922,2,48.0,0.0,5,112,0.0,0.0,0.0,43,43,316.40485531098045,331.081819252556,0.0,1706.0,96.99124577775646,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,3,118941,2,2,1,0,1,,180.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1561.62429502274,0.0,63437.016974820246,1,1,0,1,90.0,9,5,8,1,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02689281560444676,30208.103321342973,8,4,8,8_1,8_2,8_0_0 +18923,0,35.0,0.0,5,111,1272.0,0.0,0.0,54,55,0.0,278.10872817214704,2169.0150911692617,1542.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,118942,2,2,1,0,1,,378.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1318.91922660053,1272.0,48793.36505462267,1,1,5,0,118.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03160265741610111,32528.910036415113,8,4,8,8_1,8_3,8_0_0 +18924,1,53.0,250.0,1,112,525.0,0.0,0.0,85,56,3164.0485531098047,0.0,895.2302852703322,3625.0,138.5589225396521,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,118943,2,3,4,0,1,,495.0,500.0,42,1.0,8.0,7.0,3.0,1.8,2,2,1325.04662173153,525.0,25359.314793740614,7,1,2,3,130.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.1429455026479955,14088.508218744784,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +18925,1,51.0,301.0,2,111,0.0,0.0,924.0,0,56,0.0,0.0,582.4141003432233,1117.0,0.0,1105.7805043497651,71,1,2,2,1,1,2,2,2,2,5.0,2,,2,118944,1,3,0,1,1,,500.0,459.0,32,1.0,3.0,4.0,2.0,1.5,2,1,325.036440930697,0.0,13316.13175603335,0,1,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08388321927604112,8877.4211706889,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +18926,2,41.0,0.0,5,120,672.0,0.0,0.0,0,52,3691.3899786281054,339.0277829146173,1145.894765146025,4527.0,137.1733333142556,0.0,50,2,2,2,2,1,2,2,2,2,7.0,1,,3,118945,2,1,2,0,1,,384.0,,32,1.0,0.0,6.0,4.0,2.3,3,2,1105.15061534488,672.0,22191.55279514827,0,1,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.20399654056609037,9648.501215281856,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +18927,2,87.0,0.0,2,111,315.0,0.0,0.0,0,75,0.0,0.0,537.1381711621992,1009.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,118946,1,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1043.60190745632,315.0,37419.04382873194,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026964879290294605,37419.04382873194,9,5,9,9_0,9_4,9_0_1 +18928,2,53.0,0.0,6,300,810.0,0.0,0.0,62,67,0.0,0.0,1381.2124401313695,970.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,118947,2,1,1,0,1,,240.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,684.779985162979,810.0,53676.7206887427,1,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01807114867588087,21470.68827549708,6,3,6,6_1,6_0,6_0_0 +18929,2,40.0,0.0,8,111,700.0,0.0,0.0,47,38,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,45.0,2,2003.0,6,118948,2,2,0,0,1,,542.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,732.475553347223,700.0,74843.1989742214,1,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009352887230823797,31184.66623925892,8,4,8,8_0,8_4,8_0_0 +18930,2,41.0,0.0,1,111,312.0,1100.0,0.0,42,38,0.0,0.0,532.0225695320831,1412.0,0.0,2088.354452733768,12,0,0,0,0,0,0,0,0,1,20.0,2,,1,118949,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,831.68224753061,312.0,70961.75679469423,1,1,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019898041759101072,47307.83786312948,10,5,10,10_0,10_4,10_1_0 +18931,2,30.0,0.0,7,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,933.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,118950,2,1,0,0,1,,0.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,511.785592511685,0.0,21220.70289394714,1,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.043966498407841295,11789.279385526188,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +18932,2,73.0,0.0,2,111,260.0,991.0,0.0,0,77,0.0,0.0,443.3521412767359,1251.0,0.0,1881.4175115083308,50,0,0,0,0,0,0,0,0,0,,1,,2,118951,2,1,1,0,1,,141.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,246.597220701388,260.0,25407.999009038238,0,5,0,1,130.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.049236462877497326,25407.999009038238,7,4,7,7_1,7_3,7_0_1 +18933,2,56.0,0.0,2,112,330.0,110.0,0.0,78,77,0.0,0.0,562.7161793127802,440.0,0.0,208.8354452733768,41,0,0,0,0,0,0,0,0,0,,2,,2,118952,1,3,0,1,2,,280.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1043.93399380651,330.0,38253.02350254137,5,7,0,1,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011502358760498193,25502.015668360913,7,4,7,7_0,7_2,7_0_1 +18934,2,76.0,0.0,2,111,365.0,110.0,0.0,0,75,0.0,0.0,622.3981983308023,475.0,0.0,208.8354452733768,50,0,0,0,0,0,0,0,0,0,,2,,2,118953,2,2,0,1,1,720.0,0.0,344.0,11,0.0,2.0,4.0,1.0,1.0,1,1,278.620501271045,365.0,21277.87981030866,0,5,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022323652743346783,21277.87981030866,6,3,6,6_0,6_4,6_0_1 +18935,2,45.0,0.0,6,112,1200.0,2000.0,0.0,22,52,0.0,0.0,2046.2406520464733,3200.0,0.0,3797.008095879578,20,0,0,0,0,0,0,0,0,2,40.0,1,,4,118954,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,779.134411523574,1200.0,27329.589370501915,1,1,0,1,150.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11708920893827653,11882.43016108779,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +18936,2,48.0,0.0,9,111,800.0,,,46,45,0.0,0.0,,800.0,0.0,,43,0,0,0,0,0,0,0,0,3,45.0,1,2013.0,6,118955,2,1,0,0,2,,170.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,81.56410877785608,800.0,93897.68161170148,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008519912166822918,62598.454407800986,10,5,10,10_1,10_2,10_0_0 +18937,2,50.0,0.0,9,211,600.0,,,0,47,0.0,0.0,,888.0,399.049696914198,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,118956,2,2,0,0,2,,720.0,513.0,32,1.0,2.0,4.0,5.0,2.4,2,2,66.46290960755759,600.0,37051.0,0,1,2,3,84.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02396696445440069,15437.916666666668,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +18938,2,51.0,0.0,2,111,100.0,,,0,81,0.0,0.0,,142.0,58.19474746665388,,71,2,2,2,2,1,2,2,2,0,,1,,2,118957,1,3,0,0,2,,270.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,148.72067257484463,100.0,1320.0,0,4,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.10757575757575757,1320.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +18939,1,93.0,269.0,2,111,104.0,404.0,0.0,0,77,0.0,0.0,177.34085651069435,508.0,0.0,766.9956353676747,71,0,0,0,0,0,0,0,0,0,,2,,2,118958,2,2,0,0,1,,0.0,256.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1478.08736151887,104.0,8588.197562657291,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.059150944804630075,8588.197562657291,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +18940,1,50.0,110.0,1,300,1200.0,0.0,0.0,56,63,0.0,0.0,2046.2406520464733,1280.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,118959,2,2,1,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,803.019205871022,1200.0,23635.79645871451,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05415514565950091,13130.998032619173,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +18941,2,79.0,0.0,1,112,0.0,0.0,2300.0,0,77,0.0,0.0,1449.7320679539107,2300.0,0.0,2752.483939398766,70,2,2,1,2,1,2,2,2,0,,1,,1,118960,1,2,1,0,2,,112.0,,11,0.0,4.0,10.0,1.0,1.0,1,1,2501.80095060013,0.0,17090.033459966045,0,5,0,1,110.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.13458136318971078,17090.033459966045,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +18942,2,38.0,0.0,9,112,436.0,1126.0,0.0,54,64,0.0,0.0,743.4674369102187,1562.0,0.0,2137.7155579802024,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,118961,2,1,1,0,1,,204.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,65.6988810287015,436.0,51810.941597246,1,1,1,2,120.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030148072045133954,34540.627731497334,9,5,9,9_1,9_0,9_0_0 +18943,2,54.0,0.0,1,111,440.0,1200.0,0.0,56,48,0.0,0.0,750.2882390837069,1640.0,0.0,2278.2048575277468,50,1,2,2,1,2,2,2,2,2,30.0,1,,1,118962,2,1,1,0,1,,450.0,501.0,43,2.0,1.0,4.0,4.0,2.5,4,3,252.984675575865,440.0,30772.53679652981,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.053294273749473306,12309.014718611925,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +18944,2,36.0,0.0,1,111,2040.0,0.0,0.0,55,46,0.0,0.0,3478.6091084790046,2040.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,118963,2,3,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,669.059585895278,2040.0,40025.28624416366,1,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05096778040650403,19059.66011626841,5,3,5,5_0,5_4,5_1_0 +18945,0,58.0,0.0,5,111,300.0,,,0,77,0.0,0.0,,438.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,118964,1,3,0,0,2,,400.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,97.47895443701563,300.0,22105.918925622205,0,7,5,0,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01981369792740574,14737.279283748137,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +18947,1,32.0,467.0,5,111,800.0,,,0,85,0.0,0.0,,860.0,83.13535352379125,,50,0,0,0,0,0,0,0,0,0,,2,,3,118966,2,2,0,0,2,,240.0,509.0,31,0.0,0.0,3.0,4.0,1.9,1,1,134.33649823346462,800.0,22051.300192689498,0,6,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03899996791504881,11605.947469836578,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +18948,0,52.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,575.0,0.0,0.0,50,2,2,1,1,2,2,2,2,0,,8,2006.0,6,118967,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,476.057347596429,0.0,23139.113775607584,0,1,5,0,86.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.024849698461923992,23139.113775607584,6,3,6,6_0,6_3,6_0_0 +18949,2,52.0,0.0,1,400,450.0,0.0,0.0,22,63,1740.2267042103924,264.8654554020448,767.3402445174275,2400.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,118968,2,1,1,0,1,,238.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1012.0894733409,450.0,54619.76164249441,1,1,1,2,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04394014048814138,27309.880821247207,7,4,7,7_1,7_0,7_1_0 +18950,2,77.0,0.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,379.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,118969,2,1,0,0,1,,0.0,,11,0.0,3.0,1.0,1.0,1.0,1,1,1821.77338496971,0.0,21447.627301845954,0,5,0,1,25.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017670952346667282,21447.627301845954,6,3,6,6_0,6_2,6_0_0 +18951,2,72.0,0.0,7,112,550.0,0.0,0.0,0,75,0.0,0.0,937.8602988546337,550.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,5,118970,2,2,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,2632.41810249876,550.0,16773.433173095873,0,5,0,1,29.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.032789947908945974,16773.433173095873,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +18952,0,32.0,0.0,9,111,300.0,,,85,63,0.0,0.0,,594.0,407.36323226657714,,50,2,2,2,2,1,2,2,2,0,,1,2006.0,6,118971,1,3,0,0,2,,180.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,133.05661104546553,300.0,11206.839442785302,6,4,5,0,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.05300334702148367,5336.590210850143,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18953,2,61.0,0.0,6,120,1500.0,0.0,0.0,0,74,0.0,0.0,2557.8008150580918,1590.0,124.70303028568689,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,118972,1,2,2,0,1,,353.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,1499.00861206042,1500.0,34414.908583388766,0,5,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046200907265157,22943.272388925845,6,3,6,6_1,6_0,6_0_0 +18954,2,80.0,0.0,7,111,0.0,0.0,1231.0,0,75,0.0,0.0,775.9218155005495,1231.0,0.0,1473.1772736521223,71,0,0,0,0,0,0,0,0,0,,2,,5,118973,2,1,0,0,1,,170.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1980.78546687103,0.0,18437.976969782598,0,5,0,1,82.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06676437453075497,18437.976969782598,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18955,2,38.0,0.0,1,111,480.0,1058.0,0.0,55,64,0.0,0.0,818.4962608185893,1688.0,207.83838380947813,2008.6172827202968,50,2,2,2,2,1,2,2,2,0,,1,,1,118974,2,2,3,0,1,,480.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,334.839067723986,480.0,27618.763122494413,4,1,1,2,80.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.06111787093844146,12008.157879345397,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +18956,2,29.0,0.0,2,112,0.0,0.0,0.0,55,65,0.0,0.0,0.0,727.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,118975,2,2,5,0,1,,277.0,580.0,43,2.0,0.0,3.0,2.0,1.5,2,2,3090.99072033895,0.0,16040.403881289938,1,1,2,3,80.0,9,0,9,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04532304830852776,10693.602587526626,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +18957,2,58.0,0.0,7,300,850.0,0.0,0.0,69,69,0.0,635.6770929649075,1449.420461866252,1450.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,118976,2,2,1,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1533.16422426202,850.0,34180.97489087073,1,1,0,1,130.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04242125933006302,18989.430494928183,5,3,5,5_1,5_0,5_0_0 +18958,0,53.0,0.0,5,111,700.0,,,0,68,0.0,198.6490915515336,,1242.0,543.1509763554362,,71,0,0,0,0,0,0,0,0,3,75.0,1,,3,118977,2,3,0,0,2,,600.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,125.64838531144218,700.0,9960.233050847457,0,1,5,0,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12469587746185573,6640.155367231638,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18959,2,46.0,0.0,5,221,780.0,0.0,0.0,63,53,1582.0242765549024,90.05425483669522,1330.0564238302077,2404.0,77.59299662220518,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,3,118978,2,1,2,0,1,,383.0,,43,2.0,2.0,7.0,4.0,2.3,4,2,1076.28514761014,780.0,70319.15630916634,1,1,1,2,200.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03418698582546319,30573.546221376673,8,4,8,8_1,8_1,8_0_0 +18960,2,66.0,0.0,6,111,1760.0,0.0,0.0,0,74,0.0,0.0,3001.1529563348276,1760.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,118979,2,2,1,0,1,,500.0,,21,1.0,4.0,4.0,2.0,1.5,2,2,2203.46292882662,1760.0,48380.71354849187,0,5,0,1,125.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03637813233647239,32253.809032327914,8,4,8,8_1,8_2,8_0_0 +18961,2,49.0,0.0,7,111,800.0,,,85,56,0.0,0.0,,900.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,5,118980,2,2,0,0,2,,800.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,108.30198370270286,800.0,61060.353345331394,6,1,0,1,154.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014739515097627796,33922.418525184105,9,5,9,9_1,9_2,9_0_0 +18962,1,54.0,239.0,9,111,600.0,,,52,68,0.0,132.4327277010224,,880.0,249.40606057137379,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,118981,2,1,0,0,1,,550.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,255.05989559860842,600.0,17549.706422018346,4,1,1,2,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05014328894390665,11699.804281345563,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +18963,2,37.0,0.0,1,111,600.0,0.0,0.0,0,47,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,118982,1,2,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1058.99350773937,600.0,24170.23889336882,0,1,1,2,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024823916827922288,24170.23889336882,7,4,7,7_0,7_4,7_1_0 +18964,2,58.0,0.0,6,300,400.0,0.0,0.0,86,63,0.0,0.0,682.0802173488245,400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,4,118983,2,1,2,0,1,,450.0,496.0,42,1.0,10.0,3.0,2.0,1.5,2,2,809.088684113999,400.0,22396.86081893479,5,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017859645743828142,14931.240545956527,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +18965,1,46.0,332.0,5,111,161.0,0.0,0.0,0,56,0.0,0.0,274.53728748290183,161.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,118984,2,2,0,1,1,700.0,300.0,297.0,12,1.0,5.0,3.0,1.0,1.0,1,1,495.232537212772,161.0,9382.332864296453,0,4,2,3,40.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01715991132788197,9382.332864296453,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +18966,2,64.0,0.0,7,112,300.0,0.0,0.0,78,78,1582.0242765549024,0.0,511.56016301161833,1980.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,118985,2,1,2,0,1,,554.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1144.1941757039,300.0,23067.321677344713,5,5,0,1,92.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08583571286234902,15378.214451563143,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +18967,0,82.0,0.0,1,111,1051.0,0.0,0.0,0,86,0.0,0.0,1792.1657710840364,1153.0,141.33010099044515,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,118986,2,1,2,0,1,,197.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,221.025969179084,1051.0,12500.416662441206,0,6,5,0,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09223692546699724,12500.416662441206,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +18968,2,48.0,0.0,2,111,1142.0,0.0,0.0,53,35,0.0,238.3789098618403,1947.3390205308938,1322.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,118987,2,3,1,0,1,,204.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,600.092419303868,1142.0,87960.2763918999,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015029511663991777,48866.82021772216,10,5,10,10_1,10_4,10_0_1 +18969,2,58.0,0.0,2,111,210.0,1374.0,0.0,0,54,0.0,0.0,358.0921141081328,1584.0,0.0,2608.54456186927,50,2,2,1,2,1,2,2,2,3,100.0,2,,2,118988,2,1,0,0,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1038.97293271725,210.0,58288.486138887354,0,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.027175178237185838,58288.486138887354,10,5,10,10_0,10_4,10_0_1 +18971,2,54.0,0.0,1,111,1600.0,0.0,0.0,68,62,2109.365702073203,0.0,2728.320869395298,3600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,118990,2,1,2,0,1,,480.0,,43,3.0,2.0,7.0,3.0,2.0,3,3,888.673786928194,1600.0,9066.497155266927,1,1,0,1,105.0,7,6,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.39706624712375066,4533.248577633463,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +18972,2,70.0,0.0,1,120,680.0,0.0,0.0,0,75,1160.1511361402618,0.0,1159.5363694930015,1840.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,118991,2,1,1,0,1,,184.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1113.41499475466,680.0,53337.828346541675,0,5,0,1,140.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034497092533376496,53337.828346541675,10,5,10,10_1,10_0,10_1_0 +18973,2,66.0,0.0,1,111,568.0,3444.0,0.0,74,31,0.0,0.0,968.5539086353308,5668.0,0.0,6538.447941104633,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,118992,2,1,2,0,1,,272.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1622.63372197861,568.0,308581.59175375284,5,5,0,1,160.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0183679135485277,205721.06116916856,10,5,10,10_1,10_2,10_1_0 +18974,2,37.0,0.0,2,120,869.0,0.0,0.0,21,42,0.0,66.2163638505112,1481.8192721903213,919.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,118993,2,2,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1165.7694150937,869.0,44836.382942386444,1,1,1,2,110.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020496747054303877,21350.658543993544,6,3,6,6_1,6_1,6_0_1 +18975,2,41.0,0.0,7,111,953.0,0.0,0.0,47,54,0.0,0.0,1625.0561178335743,953.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,5,118994,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1856.41347106613,953.0,24656.960281647538,1,1,1,2,51.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0386503441265357,16437.97352109836,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +18976,2,44.0,0.0,2,111,290.0,60.0,0.0,0,54,0.0,0.0,494.50815757789775,350.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,118995,2,3,0,1,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,223.119677058423,290.0,21239.906773841998,0,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016478415076239525,21239.906773841998,5,3,5,5_0,5_4,5_0_1 +18977,2,59.0,0.0,1,400,700.0,0.0,0.0,64,56,0.0,629.0554565798564,1193.6403803604428,1235.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,118996,2,1,1,0,1,,220.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2135.48116047623,700.0,32948.685162912065,1,1,0,1,87.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037482527569572016,21965.790108608042,6,3,6,6_1,6_0,6_1_0 +18978,2,74.0,0.0,6,111,240.0,240.0,0.0,78,75,0.0,0.0,409.2481304092947,480.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,0,,1,,4,118997,2,1,2,0,1,,500.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1467.93156969747,240.0,48405.0,5,5,0,1,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009916330957545709,32270.0,8,4,8,8_1,8_3,8_0_0 +18979,0,84.0,0.0,1,300,240.0,0.0,0.0,71,71,1563.0399852362434,132.4327277010224,409.2481304092947,1922.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,118998,1,1,4,0,2,,129.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1755.66147215536,240.0,18719.702642913064,5,5,0,1,200.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10267257106926503,12479.801761942043,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +18980,2,76.0,0.0,5,111,600.0,,,0,78,0.0,0.0,,660.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,1,,3,118999,2,2,0,0,1,,500.0,,21,2.0,3.0,5.0,3.0,2.0,3,3,91.9141399889666,600.0,10006.805084745763,0,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06595511698395075,5003.402542372882,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +18981,2,56.0,0.0,5,112,1000.0,,,78,56,0.0,0.0,,1066.0,91.44888887617039,,60,0,0,0,0,0,0,0,0,3,45.0,1,,3,119000,2,1,0,0,2,,700.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,81.24529308041659,1000.0,16392.211238068532,5,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06503088476095097,10928.140825379021,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +18982,2,37.0,0.0,9,111,480.0,,,0,52,0.0,0.0,,546.0,91.44888887617039,,41,0,0,0,0,0,0,0,0,0,,1,2008.0,6,119001,2,2,0,0,2,,150.0,,32,1.0,1.0,4.0,4.0,2.1,2,2,134.51157797716496,480.0,31634.70626171727,0,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017259524886461226,15064.145838912986,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +18983,2,46.0,0.0,1,112,0.0,0.0,860.0,46,46,0.0,112.56781854586903,542.0737297566797,945.0,0.0,1029.1896469056255,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,119002,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,271.76397513019,0.0,34676.62511545472,4,1,1,2,100.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027251786956015833,15076.793528458575,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +18984,1,46.0,391.0,1,111,750.0,760.0,0.0,0,85,0.0,0.0,1278.9004075290459,1510.0,0.0,1442.8630764342397,71,0,0,0,0,0,0,0,0,0,,1,,1,119003,1,1,1,0,1,,370.0,353.0,31,0.0,3.0,6.0,2.0,1.3,1,1,591.251201299489,750.0,9595.575065333564,0,6,2,3,100.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1573642006569524,7381.211588718125,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +18985,2,42.0,0.0,1,111,380.0,1210.0,0.0,37,38,0.0,0.0,647.9762064813832,1590.0,0.0,2297.1898980071446,12,0,0,0,0,0,0,0,0,3,90.0,2,,1,119004,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,763.285821975526,380.0,99952.1819888591,1,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015907606701144605,43457.470429938745,10,5,10,10_0,10_4,10_1_0 +18986,2,71.0,0.0,2,400,440.0,0.0,0.0,78,78,1951.1632744177127,0.0,750.2882390837069,2290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119005,2,2,2,0,1,,90.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,953.789380329456,440.0,36179.869498030916,5,5,0,1,140.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06329486622732658,24119.912998687276,6,3,6,6_1,6_0,6_0_1 +18987,2,31.0,0.0,2,111,350.0,0.0,0.0,55,68,0.0,0.0,596.8201901802214,430.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,119006,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2050.4630612786,350.0,37767.39916196329,1,1,1,2,69.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011385480852307835,20981.888423312936,5,3,5,5_0,5_3,5_0_1 +18988,2,76.0,0.0,5,111,800.0,0.0,0.0,78,78,0.0,105.94618216081791,1364.160434697649,940.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,119007,2,1,1,0,1,,320.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,893.61109940168,800.0,33143.0888082299,5,5,0,1,109.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02836187071877817,22095.39253881993,6,3,6,6_1,6_2,6_0_0 +18989,2,66.0,0.0,5,111,700.0,,,74,54,0.0,0.0,,800.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,0,,1,,3,119008,2,1,0,0,2,,700.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,49.68282293338911,700.0,44638.82435022385,5,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017921618941471703,29759.216233482566,8,4,8,8_1,8_2,8_0_0 +18990,2,34.0,0.0,7,111,1200.0,1400.0,0.0,0,63,0.0,0.0,2046.2406520464733,2600.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,1,,5,119009,2,1,2,0,1,,1200.0,,22,1.0,1.0,4.0,3.0,2.0,3,3,613.897260822533,1200.0,44994.54701861788,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057784779985098414,22497.27350930894,6,3,6,6_1,6_4,6_0_0 +18991,2,65.0,0.0,2,112,600.0,0.0,0.0,0,78,2003.897416969543,0.0,1023.1203260232367,2640.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119010,2,1,2,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1622.86294923817,600.0,58740.01228525936,0,5,0,1,138.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044943810824882996,58740.01228525936,10,5,10,10_1,10_0,10_0_1 +18992,2,27.0,0.0,1,112,0.0,0.0,0.0,38,37,0.0,0.0,0.0,1411.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,2,,1,119011,2,1,0,0,1,,200.0,530.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1031.45992896739,0.0,45971.32470497144,1,1,2,3,60.0,8,2,3,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03069304635129236,30647.549803314294,8,4,8,8_0,8_1,8_1_0 +18993,1,26.0,260.0,9,120,470.0,0.0,0.0,0,56,0.0,0.0,801.4442553848687,470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2012.0,6,119012,1,2,0,0,1,,220.0,398.0,12,1.0,0.0,2.0,1.0,1.0,1,1,4725.65907562503,470.0,10630.0,0,1,2,3,65.0,0,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04421448730009407,10630.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +18994,2,68.0,0.0,7,300,43.0,0.0,0.0,0,77,0.0,0.0,73.32362336499862,73.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119013,2,1,1,0,1,,67.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,6769.15519663159,43.0,27793.854335467237,0,5,0,1,65.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0026264799087921398,27793.854335467237,7,4,7,7_1,7_0,7_0_0 +18995,2,78.0,0.0,2,111,220.0,80.0,0.0,0,78,0.0,0.0,375.14411954185346,300.0,0.0,151.8803238351831,70,0,0,0,0,0,0,0,0,0,,2,,2,119014,2,1,0,1,1,744.0,0.0,301.0,11,0.0,1.0,4.0,1.0,1.0,1,1,896.708488187952,220.0,28501.33485651219,0,5,2,3,67.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010525822790768477,28501.33485651219,8,4,8,8_0,8_2,8_0_1 +18996,2,46.0,0.0,5,111,668.0,1637.0,0.0,45,33,0.0,0.0,1139.073962972537,2305.0,0.0,3107.8511264774347,20,0,0,0,0,0,0,0,0,2,20.0,1,,3,119015,2,1,3,0,1,,570.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,318.441876326043,668.0,106977.06090927245,1,1,1,2,131.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021546675337761216,38206.09318188302,9,5,9,9_1,9_3,9_0_0 +18997,2,49.0,0.0,7,112,2000.0,0.0,0.0,56,63,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119016,2,1,2,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,731.472370949077,2000.0,52193.971244374785,1,1,0,1,112.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038318601790921406,34795.98082958319,9,5,9,9_1,9_0,9_0_0 +18998,2,83.0,0.0,1,300,147.0,0.0,0.0,0,78,2317.138223727414,331.081819252556,250.664479875693,2660.0,91.44888887617039,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119017,2,2,3,0,1,,98.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1482.09572265174,147.0,17703.77976347657,0,5,0,1,115.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15025040050981994,17703.77976347657,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +18999,2,33.0,0.0,2,111,380.0,900.0,0.0,85,62,0.0,0.0,647.9762064813832,1280.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,119018,1,2,0,1,1,,0.0,298.0,42,1.0,0.0,3.0,2.0,1.5,2,2,327.594223671334,380.0,19916.796418696646,6,1,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0642673637412097,13277.864279131098,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +19000,1,31.0,336.0,8,111,760.0,1000.0,0.0,85,63,0.0,0.0,1295.9524129627664,1760.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,119019,2,1,1,0,1,,600.0,425.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,332.088769120902,760.0,30665.282234002552,6,1,2,3,89.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.057393895369026185,11357.511938519465,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +19001,1,50.0,400.0,7,111,600.0,,,85,67,0.0,0.0,,720.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,5,119020,2,2,0,0,2,,480.0,500.0,42,1.0,0.0,3.0,6.0,3.0999999999999996,4,3,114.6157087712741,600.0,30262.917430385012,6,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023791493389764704,9762.231429156456,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +19002,2,59.0,0.0,9,212,1615.0,0.0,0.0,56,22,0.0,132.4327277010224,2753.898877545879,1715.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,119021,2,1,1,0,1,,123.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,828.126740644492,1615.0,50989.02793873708,1,1,0,1,90.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03363468709504639,33992.68529249139,9,5,9,9_1,9_0,9_0_0 +19003,2,39.0,0.0,1,112,1250.0,0.0,0.0,45,42,0.0,397.2981831030672,2131.5006792150766,1550.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,1,119022,2,2,2,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,183.657944783024,1250.0,46819.105302096905,1,1,1,2,100.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0331061431011707,22294.812048617572,6,3,6,6_1,6_0,6_1_0 +19004,2,47.0,0.0,2,111,1500.0,0.0,0.0,52,63,0.0,0.0,2557.8008150580918,1540.0,55.423569015860835,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,2,119023,2,1,1,0,1,,500.0,,43,2.0,1.0,4.0,4.0,2.3,3,2,217.716865146399,1500.0,44996.91655233544,1,1,1,2,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034224567325826474,19563.876761884974,5,3,5,5_1,5_3,5_0_1 +19005,2,52.0,0.0,1,112,300.0,0.0,0.0,46,47,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,119024,2,1,1,0,1,,555.0,,43,3.0,1.0,8.0,4.0,2.5,4,3,1319.632336681,300.0,106452.36452869332,1,1,0,1,250.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.002818161919918064,42580.94581147733,9,5,9,9_1,9_0,9_1_0 +19006,2,63.0,0.0,6,111,1900.0,0.0,0.0,75,31,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,4,119025,2,1,3,0,1,,400.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,575.961476938637,1900.0,260875.80810571677,5,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007283159039530595,173917.20540381118,10,5,10,10_1,10_4,10_0_0 +19007,2,82.0,0.0,2,112,404.0,0.0,0.0,77,38,2425.7705573841836,0.0,688.9010195223127,2904.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119026,2,1,2,0,1,,824.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,815.301252633454,404.0,78654.67300013859,5,5,0,1,120.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03692088326392105,39327.336500069294,9,5,9,9_1,9_2,9_0_1 +19008,2,66.0,0.0,2,111,0.0,0.0,0.0,75,74,1582.0242765549024,119.18945493092015,0.0,3251.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,119027,2,1,1,0,1,,445.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,651.66971713637,0.0,60136.584824405494,5,5,0,1,100.0,10,8,1,1,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05406026979238489,40091.056549603665,9,5,9,9_1,9_4,9_0_1 +19009,2,78.0,0.0,2,111,1700.0,0.0,0.0,75,72,457.7323573498851,0.0,2898.840923732504,2134.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,119028,2,2,2,0,1,,434.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1160.23497545825,1700.0,96406.28223429657,5,5,0,1,150.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022135486926191505,64270.85482286438,10,5,10,10_1,10_3,10_0_1 +19011,2,24.0,0.0,1,111,0.0,0.0,0.0,53,53,0.0,0.0,0.0,649.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,119030,2,2,0,0,2,,0.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1707.37516909777,0.0,29959.785295966103,1,1,2,3,52.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.021662371528656573,19973.190197310734,5,3,5,5_0,5_3,5_1_0 +19012,1,49.0,49.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,565.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119031,2,1,0,0,1,,105.0,285.0,12,1.0,2.0,3.0,1.0,1.0,1,1,294.918181319917,0.0,3065.613193506527,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1843024427206808,3065.613193506527,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19013,2,62.0,0.0,1,111,500.0,2000.0,0.0,75,75,0.0,0.0,852.6002716860306,2500.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,2,,1,119032,2,2,0,0,1,,500.0,770.0,41,0.0,2.0,3.0,2.0,1.5,2,2,741.484822642334,500.0,38145.00841087333,5,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06553937472163118,25430.005607248884,7,4,7,7_0,7_4,7_1_0 +19014,2,66.0,0.0,9,111,1100.0,0.0,0.0,77,74,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2005.0,6,119033,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,779.900571267769,1100.0,83768.0,5,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013131506064368255,55845.333333333336,10,5,10,10_0,10_4,10_0_0 +19015,2,83.0,0.0,8,112,45.0,60.0,0.0,78,74,0.0,0.0,76.73402445174275,105.0,0.0,113.91024287638734,12,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119034,2,1,1,0,1,,600.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,613.54213564515,45.0,65856.50613124327,5,5,0,1,194.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001594375501651256,43904.337420828844,10,5,10,10_1,10_2,10_0_0 +19016,2,62.0,0.0,5,111,1200.0,0.0,0.0,0,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,119035,2,1,1,0,1,,150.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,566.691832181386,1200.0,18209.142423463658,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06590096184066979,18209.142423463658,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +19017,1,34.0,201.0,1,400,850.0,0.0,0.0,85,69,0.0,0.0,1449.420461866252,940.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,119036,2,1,1,0,1,,210.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,1697.55202442279,850.0,27447.301654755338,6,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03424744668250993,10165.667279539015,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +19018,2,32.0,0.0,8,111,1160.0,0.0,0.0,43,47,0.0,0.0,1978.032630311591,1285.0,173.19865317456512,0.0,31,0,0,0,0,0,0,0,0,2,17.0,1,2003.0,6,119037,2,2,1,0,1,,153.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,841.155349296458,1160.0,41913.73753883999,1,1,1,2,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030658206007260404,23285.40974379999,6,3,6,6_1,6_2,6_0_0 +19019,2,83.0,0.0,1,111,499.0,0.0,0.0,0,72,0.0,0.0,850.8950711426585,808.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,119038,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,988.618796741059,499.0,41964.68658149993,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01925428415700847,41964.68658149993,9,5,9,9_0,9_4,9_1_0 +19020,2,74.0,0.0,5,111,600.0,,,75,74,0.0,0.0,,750.0,207.83838380947813,,42,0,0,0,0,0,0,0,0,0,,1,,3,119039,2,1,0,0,2,,450.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,104.278361747097,600.0,61799.97530779941,5,5,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012135927179008871,41199.98353853294,9,5,9,9_1,9_2,9_0_0 +19021,1,59.0,400.0,7,111,1080.0,,,64,56,0.0,0.0,,1380.0,415.67676761895626,,60,0,0,0,0,0,0,0,0,0,,1,,5,119040,2,1,0,0,2,,0.0,650.0,43,3.0,0.0,4.0,5.0,3.0,5,4,91.8719386192895,1080.0,51041.48365889559,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027036831633311886,17013.827886298528,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +19022,0,86.0,0.0,5,111,230.0,1550.0,0.0,0,77,0.0,0.0,392.1961249755741,1780.0,0.0,2942.681274306673,71,0,0,0,0,0,0,0,0,0,,1,,3,119041,2,1,2,0,1,,90.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,883.65001575685,230.0,17256.84918323862,0,5,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10314745067882343,17256.84918323862,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +19023,1,34.0,381.0,2,112,250.0,0.0,0.0,42,64,0.0,0.0,426.3001358430153,250.0,0.0,0.0,43,2,1,2,2,1,2,2,2,0,,2,,2,119042,2,1,0,1,1,303.0,0.0,330.0,43,2.0,0.0,3.0,5.0,2.4,2,2,206.529123840684,250.0,21013.305156688824,1,1,2,3,74.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.011897224074739216,8755.54381528701,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19024,2,62.0,0.0,1,111,664.0,2203.0,0.0,85,74,0.0,0.0,1132.2531607990486,2867.0,0.0,4182.404417611355,31,0,0,0,0,0,0,0,0,0,,1,,1,119043,2,1,2,0,1,,440.0,,41,1.0,0.0,12.0,4.0,2.5,4,4,288.45670773012,664.0,89240.65093658332,6,5,0,1,250.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0321266146079253,35696.260374633326,9,5,9,9_1,9_3,9_1_0 +19025,2,41.0,0.0,7,112,1000.0,0.0,0.0,37,38,0.0,397.2981831030672,1705.2005433720612,1390.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,5,119044,2,1,1,0,1,,120.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,460.718164956339,1000.0,96723.01604298572,1,1,1,2,95.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01437093317460505,46058.57906808844,10,5,10,10_1,10_0,10_0_0 +19026,2,41.0,0.0,6,111,380.0,75.0,0.0,0,52,0.0,0.0,647.9762064813832,455.0,0.0,142.38780359548417,31,2,1,2,2,1,2,2,2,3,45.0,2,,4,119045,1,2,0,1,1,960.0,0.0,516.0,32,1.0,0.0,4.0,3.0,1.6,1,1,400.027940392427,380.0,18191.763633764884,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.025011318812184637,11369.852271103051,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +19027,2,31.0,0.0,5,111,395.0,115.0,0.0,54,47,0.0,0.0,673.5542146319642,510.0,0.0,218.32796551307572,43,2,2,2,2,1,2,2,2,2,15.0,8,,3,119046,2,1,0,1,1,,0.0,371.0,43,2.0,0.0,3.0,3.0,1.8,2,2,405.160572140521,395.0,41867.133170995025,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.012181392929796326,23259.518428330568,6,3,6,6_0,6_4,6_0_0 +19028,2,39.0,0.0,2,112,1270.0,0.0,0.0,0,45,0.0,0.0,2165.6046900825177,1295.0,34.63973063491302,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,119047,2,1,2,0,1,,400.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,892.757935270437,1270.0,30350.9970672259,0,1,1,2,82.0,8,2,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04266746153780851,18969.373167016187,5,3,5,5_1,5_1,5_0_1 +19029,2,51.0,0.0,2,112,235.0,127.0,0.0,0,54,0.0,0.0,400.72212769243436,362.0,0.0,241.1100140883532,71,0,0,0,0,0,0,0,0,0,,2,,2,119048,1,1,0,1,1,,250.0,373.0,32,2.0,3.0,4.0,2.0,1.5,2,2,273.904499842186,235.0,9523.648906294486,0,4,2,3,70.0,10,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038010641043344486,6349.09927086299,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +19030,1,31.0,308.0,9,111,0.0,0.0,1100.0,55,63,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,43,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,119049,1,1,1,0,1,,444.0,566.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,1596.84658149913,0.0,42012.384338974305,1,1,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02618275580659071,15560.142347768262,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +19031,1,41.0,39.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,572.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,119050,2,1,0,1,1,,300.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,342.243209617516,0.0,22768.243952671895,0,1,1,2,69.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025122710437792666,15178.829301781263,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +19032,2,69.0,0.0,2,111,369.0,,,0,74,0.0,0.0,,461.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,1,,2,119051,2,1,0,0,2,,304.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,121.71747711220694,369.0,102728.8341734393,0,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00448754240919043,68485.88944895954,10,5,10,10_1,10_2,10_0_1 +19033,2,30.0,0.0,2,120,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1664.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119052,2,1,2,0,1,,293.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,340.149007290396,0.0,32302.83286199662,6,1,1,2,76.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051512509974245925,13459.513692498593,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +19034,2,38.0,0.0,2,120,960.0,0.0,0.0,48,56,3164.0485531098047,0.0,1636.9925216371787,4080.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,119053,2,1,2,0,2,,400.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,2019.19611348516,960.0,45048.67732423632,1,1,1,2,132.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09056869684839666,21451.7511067792,6,3,6,6_1,6_0,6_0_1 +19035,1,27.0,193.0,2,111,380.0,0.0,0.0,0,42,0.0,0.0,647.9762064813832,380.0,0.0,0.0,43,2,1,2,2,1,2,2,2,0,,2,,2,119054,1,2,0,1,1,330.0,0.0,243.0,12,1.0,0.0,1.0,1.0,1.0,1,1,320.378798319209,380.0,4391.6660807759945,0,4,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08652752577510518,4391.6660807759945,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +19036,2,66.0,0.0,5,111,400.0,300.0,0.0,0,78,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,50,1,2,2,2,1,2,2,2,0,,2,,3,119055,2,1,0,1,1,,0.0,538.0,11,0.0,2.0,3.0,1.0,1.0,1,1,401.454433388512,400.0,20182.74621516683,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.034683089830162335,20182.74621516683,5,3,5,5_0,5_4,5_0_0 +19037,2,67.0,0.0,2,111,265.0,749.0,0.0,0,78,0.0,0.0,451.8781439935962,1014.0,0.0,1421.979531906902,50,0,0,0,0,0,0,0,0,0,,8,,2,119056,2,3,0,0,1,,156.0,355.0,11,0.0,0.0,3.0,1.0,1.0,1,1,444.394400407271,265.0,19302.739320722747,0,5,2,3,75.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05253140412622187,19302.739320722747,5,3,5,5_0,5_2,5_0_1 +19038,2,19.0,0.0,9,112,800.0,0.0,0.0,0,64,0.0,264.8654554020448,1364.160434697649,1093.0,128.85979796187644,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,119057,2,1,1,0,1,,150.0,,22,4.0,0.0,4.0,4.0,2.5,4,4,907.768858861962,800.0,62806.910166271,0,1,1,2,90.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01740254371862048,25122.7640665084,7,4,7,7_1,7_0,7_0_0 +19039,2,42.0,0.0,8,111,0.0,0.0,336.0,85,63,0.0,0.0,211.7869455793539,336.0,0.0,402.1020015817328,71,0,0,0,0,0,0,0,0,3,60.0,2,2001.0,6,119058,2,2,0,1,1,280.0,0.0,449.0,42,1.0,0.0,3.0,2.0,1.5,2,2,837.462200795314,0.0,32996.804760748244,7,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010182804136226334,21997.869840498828,6,3,6,6_0,6_4,6_0_0 +19040,2,48.0,0.0,7,111,1800.0,1000.0,0.0,90,23,0.0,0.0,3069.36097806971,2800.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,2,10.0,2,,5,119059,2,1,0,1,2,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,702.671519597061,1800.0,361956.35448717023,1,1,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007735739310246722,172360.1688034144,10,5,10,10_0,10_4,10_0_0 +19041,2,56.0,0.0,7,111,540.0,,,0,55,0.0,0.0,,632.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,2,60.0,2,,5,119060,2,2,0,0,2,,1100.0,482.0,12,1.0,0.0,2.0,1.0,1.0,1,1,113.31089163581872,540.0,26292.615775126014,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024037167142491017,26292.615775126014,7,4,7,7_0,7_2,7_0_0 +19042,2,42.0,0.0,7,111,1300.0,,,0,81,0.0,0.0,,1580.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,7,,5,119061,2,2,0,0,2,,0.0,200.0,32,3.0,0.0,5.0,8.0,3.6999999999999993,4,3,8.321280220030792,1300.0,7467.737553159412,0,4,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21157679802653775,2018.3074467998413,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19043,1,28.0,350.0,2,111,0.0,0.0,1087.0,0,52,0.0,0.0,685.1559816808266,1087.0,0.0,1300.847844402808,71,2,2,2,2,1,2,2,2,0,,2,,2,119062,1,1,0,1,2,611.0,184.0,315.0,32,1.0,0.0,4.0,3.0,1.6,1,1,286.170016249318,0.0,8052.003224526733,0,4,2,3,81.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.13499746208359098,5032.502015329208,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19044,2,78.0,0.0,1,400,840.0,2300.0,0.0,77,75,0.0,0.0,1432.3684564325313,3157.0,23.555016831740858,4366.559310261515,70,0,0,0,0,0,0,0,0,0,,1,,1,119063,2,1,1,0,1,,280.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,1100.61226190363,840.0,31699.27756860971,5,5,1,2,140.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09959217503197068,15849.638784304854,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +19046,0,69.0,0.0,1,111,172.0,487.0,0.0,0,77,0.0,0.0,293.2944934599945,659.0,0.0,924.5714713466772,50,0,0,0,0,0,0,0,0,0,,1,,1,119065,2,1,2,0,1,,153.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,649.114056125141,172.0,20175.50937690637,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03266336366973295,20175.50937690637,5,3,5,5_1,5_3,5_1_0 +19047,1,48.0,295.0,2,111,350.0,205.0,0.0,85,65,0.0,0.0,596.8201901802214,555.0,0.0,389.1933298276567,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,119066,2,1,0,1,1,,0.0,237.0,42,1.0,1.0,3.0,5.0,2.4,2,2,1677.90723046525,350.0,27868.990261342642,6,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019914607411157127,11612.079275559434,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +19048,2,62.0,0.0,7,111,1700.0,0.0,0.0,0,78,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,119067,2,1,2,0,1,,300.0,,21,0.0,0.0,3.0,2.0,1.5,2,2,888.981378094138,1700.0,32864.51424301316,0,5,0,1,85.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.051727525544102995,21909.676162008775,6,3,6,6_1,6_2,6_0_0 +19049,2,45.0,0.0,5,111,400.0,,,0,85,0.0,0.0,,664.0,365.79555550468154,,71,2,2,1,2,1,2,2,2,0,,1,,3,119068,1,3,0,0,2,,400.0,,31,2.0,0.0,5.0,6.0,3.0999999999999996,4,4,140.28616735770177,400.0,35833.322087067645,0,6,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.018530238373841414,11559.136157118597,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +19050,2,34.0,0.0,7,111,1200.0,0.0,0.0,84,48,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,43,2,2,1,2,2,2,2,1,2,60.0,2,,5,119069,2,2,0,0,2,,0.0,933.0,42,1.0,0.0,2.0,3.0,1.8,2,2,1138.64505141912,1200.0,26085.41248722858,3,1,3,4,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04600272280867784,14491.895826238098,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +19051,2,78.0,0.0,2,111,250.0,,,0,75,0.0,0.0,,315.0,90.06329965077386,,41,0,0,0,0,0,0,0,0,0,,2,,2,119070,2,1,0,0,2,,220.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,104.58942142434007,250.0,41416.72077063965,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007605623867336783,41416.72077063965,9,5,9,9_0,9_2,9_0_1 +19052,1,31.0,510.0,5,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,653.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,119071,2,1,0,1,1,720.0,0.0,448.0,32,1.0,0.0,4.0,6.0,2.5,1,1,348.644131060999,0.0,18620.290656179695,0,4,2,3,80.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035069269973145266,7448.116262471878,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19053,2,32.0,0.0,9,112,0.0,0.0,0.0,48,22,0.0,0.0,0.0,1218.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,115.0,1,2008.0,6,119072,2,1,1,0,1,,359.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,530.55691419429,0.0,47116.189791655,1,1,1,2,100.0,7,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02585098679213926,26175.660995363887,7,4,7,7_1,7_1,7_0_0 +19054,0,84.0,0.0,2,211,0.0,0.0,0.0,74,72,0.0,0.0,0.0,2328.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119073,2,1,1,0,1,,127.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1150.78852811623,0.0,86813.41993401198,5,5,0,1,142.0,1,3,9,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026816130521865666,57875.61328934132,10,5,10,10_1,10_1,10_0_1 +19055,2,34.0,0.0,5,111,480.0,500.0,0.0,54,37,0.0,0.0,818.4962608185893,980.0,0.0,949.2520239698945,20,2,2,2,2,1,2,2,2,3,30.0,2,,3,119074,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,397.186221560997,480.0,77144.1255010972,4,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.012703494836895413,42857.847500609554,9,5,9,9_0,9_4,9_0_0 +19056,1,28.0,300.0,9,120,1300.0,0.0,0.0,63,56,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,119075,2,2,1,0,1,,750.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1914.57491531199,1300.0,30852.065994440974,1,1,1,2,86.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04213656227217452,14691.459997352844,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +19057,1,63.0,307.0,6,111,200.0,0.0,0.0,0,52,0.0,0.0,341.04010867441224,232.0,44.33885521268867,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,119076,2,2,0,1,1,885.0,0.0,334.0,12,1.0,4.0,2.0,1.0,1.0,1,1,228.188614620068,200.0,7204.897959183673,0,4,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032200317244504874,7204.897959183673,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +19058,2,44.0,0.0,1,120,1500.0,0.0,0.0,0,64,0.0,0.0,2557.8008150580918,1520.0,27.711784507930417,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,119077,2,2,5,0,1,,180.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1245.39197623897,1500.0,33554.401211156954,0,1,1,2,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04529957159523368,33554.401211156954,9,5,9,9_1,9_0,9_1_0 +19059,2,66.0,0.0,2,112,703.0,0.0,0.0,0,75,0.0,0.0,1198.755981990559,3053.0,3256.1346796818243,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,119078,2,2,2,0,1,,330.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1148.13747942612,703.0,50706.09088150676,0,5,0,1,100.0,6,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06020972918489114,50706.09088150676,10,5,10,10_1,10_1,10_0_1 +19060,0,55.0,0.0,9,400,0.0,0.0,0.0,0,45,0.0,0.0,0.0,367.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,2010.0,6,119079,2,1,1,0,1,,246.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1796.45553588925,0.0,39715.0684389233,0,1,5,0,140.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00924082506780516,39715.0684389233,9,5,9,9_1,9_0,9_0_0 +19061,1,53.0,253.0,7,111,750.0,,,0,56,0.0,0.0,,838.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,5,119080,2,2,0,0,2,,200.0,322.0,12,1.0,0.0,2.0,1.0,1.0,1,1,50.15791274255464,750.0,9801.623737094815,0,4,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08549603846029513,9801.623737094815,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +19062,2,73.0,0.0,2,400,539.0,0.0,0.0,0,77,1455.46233443051,165.540909626278,919.1030928775409,2392.0,482.1850504379893,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,119081,2,1,0,1,1,528.0,471.0,284.0,11,0.0,6.0,4.0,1.0,1.0,1,1,1676.48830446931,539.0,16382.867460971589,0,5,2,3,68.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.14600618638332938,16382.867460971589,4,2,4_0,4_0_0,4_0_0,4_0_1_0 +19063,0,45.0,0.0,2,111,500.0,,,52,64,0.0,0.0,,710.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,2,119082,2,1,0,0,2,,650.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,5,3,109.41277827998448,500.0,33210.35666678819,1,1,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021378873076362683,10713.018279609094,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +19064,1,58.0,250.0,1,222,120.0,0.0,0.0,0,78,0.0,291.3520009422493,204.62406520464734,400.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119083,2,3,3,0,2,,136.0,300.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1341.11728279464,120.0,4839.267902296582,0,7,2,3,70.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08265713080488292,4839.267902296582,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +19065,2,33.0,0.0,2,111,500.0,0.0,0.0,43,38,1898.4291318658827,0.0,852.6002716860306,2300.0,0.0,0.0,12,2,2,1,1,1,2,2,2,0,,1,,2,119084,2,2,4,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,430.697702597955,500.0,50174.36669740691,1,1,1,2,90.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04584014012316109,33449.577798271275,8,4,8,8_1,8_3,8_0_1 +19066,2,29.0,0.0,2,221,1194.0,0.0,0.0,53,53,0.0,317.83854648245375,2036.0094487862411,1434.0,0.0,0.0,50,2,2,2,2,1,1,2,2,2,40.0,2,,2,119085,1,2,0,0,1,,0.0,560.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2846.9848871359,1194.0,38132.0522221448,1,1,2,3,60.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.03760615850534316,25421.36814809653,7,4,7,7_0,7_1,7_0_1 +19067,2,39.0,0.0,1,300,1148.0,0.0,0.0,52,21,1926.905568843871,264.8654554020448,1957.5702237911262,3175.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119086,2,1,1,0,1,,160.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1306.87739935306,1148.0,48599.62315641502,1,1,1,2,238.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06532972467258541,23142.67769353096,6,3,6,6_1,6_0,6_1_0 +19068,2,66.0,0.0,7,111,490.0,,,0,90,0.0,0.0,,570.0,110.84713803172167,,71,2,2,2,2,1,2,2,2,0,,1,,5,119087,2,2,0,0,2,,200.0,,21,1.0,5.0,6.0,2.0,1.5,2,2,125.64838531144218,490.0,13207.011750491081,0,6,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.043158892470797225,8804.674500327388,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19069,2,77.0,0.0,1,400,2268.0,0.0,0.0,0,75,0.0,556.2174563442941,3867.3948323678346,2688.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,119088,2,2,4,0,1,,266.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1081.4955641801,2268.0,25728.718620726115,0,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.10447469380906695,25728.718620726115,7,4,7,7_1,7_0,7_1_0 +19070,2,46.0,0.0,7,112,800.0,0.0,0.0,37,23,2088.272045052471,397.2981831030672,1364.160434697649,3080.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,119089,2,1,2,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,847.995790337715,800.0,133399.3349826024,1,1,0,1,180.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023088570871823956,53359.73399304096,10,5,10,10_1,10_0,10_0_0 +19071,1,25.0,247.0,2,111,474.0,192.0,0.0,0,56,0.0,0.0,808.265057558357,666.0,0.0,364.5127772044395,71,2,2,1,2,2,2,2,1,1,5.0,2,,2,119090,1,2,0,1,1,,0.0,299.0,32,1.0,0.0,3.0,2.0,1.3,1,1,411.238415032738,474.0,9382.117549212026,0,1,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07098610697495847,7217.0134993938655,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19072,0,48.0,0.0,9,111,1134.0,,,43,64,0.0,0.0,,1272.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,119091,2,1,0,0,2,,460.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,91.93831265441644,1134.0,13425.990438545796,4,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09474161372468351,5837.387147193825,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19073,2,62.0,0.0,6,111,2689.0,0.0,0.0,77,31,0.0,0.0,4585.284261127473,2689.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,5.0,1,,4,119092,2,1,1,0,1,,500.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1048.84412924291,2689.0,107350.53558545772,5,1,0,1,110.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.025048780477293364,71567.02372363849,10,5,10,10_1,10_2,10_0_0 +19074,2,40.0,0.0,6,111,400.0,600.0,0.0,0,43,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,33,0,0,0,0,0,0,0,0,0,,2,,4,119093,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1476.49859396711,400.0,53484.30687192854,0,1,0,1,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018697073188114068,53484.30687192854,10,5,10,10_0,10_2,10_0_0 +19075,1,40.0,237.0,8,211,1000.0,864.0,0.0,0,55,0.0,0.0,1705.2005433720612,1864.0,0.0,1640.3074974199776,50,0,0,0,0,0,0,0,0,2,15.0,1,,6,119094,1,3,3,0,1,,92.0,320.0,32,1.0,0.0,4.0,2.0,1.3,1,1,245.837441268929,1000.0,16339.481233606894,0,1,2,3,70.0,3,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11407950921759634,12568.831718159148,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +19076,2,47.0,0.0,2,112,625.0,0.0,0.0,22,65,1054.6828510366015,0.0,1065.7503396075383,1685.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,119095,2,1,1,0,1,,370.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,949.961153371179,625.0,43004.729601281404,1,1,0,1,160.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039181736883884336,23891.516445156336,6,3,6,6_1,6_0,6_0_1 +19077,2,33.0,0.0,7,211,0.0,0.0,0.0,0,69,0.0,0.0,0.0,1085.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,119096,2,1,0,0,1,,0.0,160.0,12,1.0,0.0,2.0,1.0,1.0,1,1,991.722990598138,0.0,27684.17610533508,0,1,3,4,45.0,1,3,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.039192063938319886,27684.17610533508,7,4,7,7_0,7_1,7_0_0 +19078,2,35.0,0.0,7,111,900.0,0.0,0.0,0,38,0.0,0.0,1534.680489034855,900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,5,119097,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2306.11151310372,900.0,42885.25304497424,0,1,1,2,46.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020986235036462533,42885.25304497424,9,5,9,9_0,9_3,9_0_0 +19079,2,44.0,0.0,2,111,192.0,210.0,0.0,68,68,0.0,0.0,327.3985043274357,402.0,0.0,398.6858500673557,71,0,0,0,0,0,0,0,0,2,3.0,2,,2,119098,2,1,0,0,1,,250.0,448.0,43,2.0,0.0,4.0,4.0,2.1,2,2,269.290424228496,192.0,37409.1168834416,1,1,2,3,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010746043571478622,17813.86518259124,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +19080,0,57.0,0.0,2,111,720.0,,,0,55,0.0,0.0,,927.0,286.8169696570798,,71,0,0,0,0,0,0,0,0,3,45.0,1,,2,119099,1,2,0,0,2,,600.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,88.25615875702071,720.0,5083.763567273136,0,1,5,0,76.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1823452227337218,3389.1757115154237,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +19081,2,42.0,0.0,7,211,881.0,881.0,0.0,52,48,0.0,397.2981831030672,1502.2816787107859,2062.0,0.0,1672.582066234954,43,0,0,0,0,0,0,0,0,2,25.0,1,,5,119100,2,1,2,0,1,,311.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1036.04893958928,881.0,56845.90757206546,1,1,1,2,130.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03627349950189349,22738.363028826185,6,3,6,6_1,6_1,6_0_0 +19083,1,36.0,67.0,2,111,600.0,0.0,0.0,56,63,0.0,0.0,1023.1203260232367,1884.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119102,1,3,2,0,1,,247.0,480.0,43,2.0,0.0,4.0,4.0,2.3,3,3,951.577945120722,600.0,32000.979207297794,4,1,2,3,90.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05887319846670053,13913.469220564259,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +19084,2,67.0,0.0,6,111,500.0,0.0,0.0,0,74,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,119103,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1073.2425880076,500.0,31119.197093648552,0,5,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016067252586733683,31119.197093648552,8,4,8,8_0,8_4,8_0_0 +19085,1,46.0,120.0,7,111,450.0,,,0,56,0.0,0.0,,702.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,3,,5,119104,2,1,0,0,2,,220.0,331.0,32,2.0,1.0,3.0,2.0,1.5,2,2,93.6761368523319,450.0,19209.174496407955,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03654503737947049,12806.116330938637,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +19086,2,29.0,0.0,5,111,550.0,,,55,63,0.0,0.0,,770.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,119105,2,1,0,0,2,,820.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,3,115.59367598771668,550.0,22195.961551079738,1,1,0,1,86.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03469099539697765,8536.908288876823,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19087,2,85.0,0.0,1,300,0.0,0.0,0.0,0,71,3164.0485531098047,0.0,0.0,3060.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,119106,1,2,3,0,2,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1716.12304085801,0.0,14602.52046624667,0,5,0,1,90.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2095528650052645,14602.52046624667,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +19088,2,55.0,0.0,2,111,401.0,0.0,0.0,0,52,0.0,0.0,683.7854178921965,648.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,,2,119107,2,2,0,1,1,850.0,0.0,680.0,32,2.0,3.0,3.0,4.0,2.5,4,4,595.614605369341,401.0,24356.65838355183,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026604634748976796,9742.663353420732,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +19089,2,74.0,0.0,7,111,360.0,420.0,0.0,0,77,0.0,0.0,613.872195613942,780.0,0.0,797.3717001347114,71,0,0,0,0,0,0,0,0,0,,2,,5,119108,2,1,0,0,1,,0.0,460.0,21,1.0,1.0,3.0,2.0,1.5,2,2,675.025297248671,360.0,30363.205516497306,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025688987270339456,20242.137010998205,5,3,5,5_0,5_4,5_0_0 +19090,2,56.0,0.0,9,111,1338.0,,,42,75,0.0,0.0,,1338.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,119109,2,1,0,0,2,,162.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,145.07894294229834,1338.0,121279.63722502935,1,5,1,2,144.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011032354899919402,80853.0914833529,10,5,10,10_1,10_3,10_0_0 +19091,2,64.0,0.0,9,112,540.0,1282.0,0.0,77,75,0.0,0.0,920.8082934209131,1822.0,0.0,2433.8821894588095,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,119110,2,1,1,0,1,,337.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,749.733024972009,540.0,47423.95530336202,5,5,0,1,117.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038419401931893124,31615.970202241344,8,4,8,8_1,8_1,8_0_0 +19092,2,65.0,0.0,1,111,280.0,0.0,0.0,78,78,0.0,953.5156394473612,477.4561521441771,1080.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119111,2,2,1,0,1,,115.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,378.623080633696,280.0,18250.379471389326,5,5,0,1,60.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059176851730293585,12166.919647592884,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +19093,1,43.0,350.0,7,111,0.0,,,0,85,0.0,0.0,,264.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,8,,5,119112,2,1,0,0,2,,0.0,480.0,31,0.0,1.0,3.0,3.0,1.6,1,1,106.32213716865144,0.0,9720.803795501688,0,7,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027158247975560032,6075.502372188555,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +19094,1,21.0,288.0,5,111,0.0,,,0,85,0.0,0.0,,70.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,0,,2,,3,119113,1,1,0,0,2,,0.0,275.0,31,0.0,0.0,1.0,2.0,1.3,1,1,147.02819863799058,0.0,3370.6683421306425,0,6,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02076739474040098,2592.8218016389555,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19095,2,42.0,0.0,8,111,1110.0,,,0,62,0.0,0.0,,1374.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119114,2,2,0,0,2,,600.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,139.49762697343928,1110.0,32823.138368601416,0,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04186071376143505,18235.07687144523,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +19096,2,58.0,0.0,9,400,200.0,,,0,56,0.0,0.0,,464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119115,2,1,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,110.0341904839636,200.0,6332.0,0,4,0,1,66.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07327858496525584,6332.0,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +19097,1,21.0,351.0,6,111,480.0,600.0,0.0,0,62,0.0,0.0,818.4962608185893,1080.0,0.0,1139.1024287638734,42,0,0,0,0,0,0,0,0,0,,2,,4,119116,2,2,0,0,1,,186.0,462.0,22,3.0,0.0,4.0,3.0,2.0,3,3,393.782585991064,480.0,31387.05726367487,0,1,2,3,43.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03440908750785995,15693.528631837435,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +19098,2,92.0,0.0,2,111,600.0,,,77,74,0.0,0.0,,705.0,145.4868686666347,,41,0,0,0,0,0,0,0,0,0,,1,,2,119117,2,1,0,0,2,,720.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,122.20239090465299,600.0,68674.25376951085,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010265855998467322,45782.83584634057,10,5,10,10_1,10_2,10_0_1 +19099,0,78.0,0.0,7,111,160.0,,,77,78,0.0,132.4327277010224,,410.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,119118,2,1,0,0,2,,150.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,100.15891250629788,160.0,925.6719535047821,5,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4429214890303813,617.1146356698547,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19100,2,29.0,0.0,6,111,0.0,,,55,63,0.0,0.0,,343.0,0.0,,50,0,0,0,0,0,0,0,0,1,10.0,2,,4,119119,2,2,0,0,2,,457.0,264.0,43,2.0,0.0,2.0,2.0,1.5,2,2,141.06891006993294,0.0,34298.022489494426,1,1,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010000576566916119,22865.34832632962,6,3,6,6_0,6_2,6_0_0 +19101,2,83.0,0.0,1,112,252.0,678.0,0.0,0,86,0.0,0.0,429.7105369297594,930.0,0.0,1287.185744503177,71,0,0,0,0,0,0,0,0,0,,5,,1,119120,1,1,3,0,2,,57.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,223.604968559086,252.0,14982.801869246177,0,5,0,1,60.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06207116720330699,14982.801869246177,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +19102,1,67.0,270.0,2,111,160.0,160.0,0.0,0,78,0.0,0.0,272.8320869395298,320.0,0.0,303.7606476703662,50,0,0,0,0,0,0,0,0,0,,2,,2,119121,1,1,0,0,1,,140.0,258.0,11,0.0,0.0,2.0,1.0,1.0,1,1,356.042094359393,160.0,7734.273969537847,0,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04137427782625099,7734.273969537847,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19103,2,49.0,0.0,1,112,420.0,0.0,0.0,0,47,0.0,450.2712741834761,716.1842282162656,820.0,83.13535352379125,0.0,43,2,2,1,1,2,2,2,2,4,60.0,1,,1,119122,2,3,4,0,1,,250.0,522.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1675.96845195738,420.0,27365.8298259956,0,1,2,3,45.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02996437547167154,27365.8298259956,7,4,7,7_1,7_1,7_1_0 +19104,2,85.0,0.0,2,111,0.0,0.0,0.0,0,77,2003.897416969543,0.0,0.0,2991.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119123,1,3,2,0,1,,272.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1044.04456947421,0.0,26220.46278596978,0,5,0,1,70.0,7,5,2,1,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11407121317478974,26220.46278596978,7,4,7,7_1,7_2,7_0_1 +19105,2,83.0,0.0,5,111,0.0,0.0,0.0,72,72,0.0,0.0,0.0,580.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,119124,2,1,0,1,2,,206.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1393.92129271581,0.0,61567.42739356264,5,5,0,1,105.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.00942056578541795,41044.95159570843,9,5,9,9_0,9_2,9_0_0 +19106,2,36.0,0.0,9,212,1615.0,0.0,0.0,46,46,0.0,0.0,2753.898877545879,1675.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,2010.0,6,119125,2,1,3,0,1,,486.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,833.499038320631,1615.0,85604.83515513733,1,1,1,2,120.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019566651778074005,40764.207216732066,9,5,9,9_1,9_0,9_0_0 +19107,2,76.0,0.0,6,112,1321.0,0.0,0.0,74,74,0.0,0.0,2252.569917794493,1381.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,119126,2,1,2,0,1,,950.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1525.93181994651,1321.0,30070.15818756256,5,5,0,1,93.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04592593066474792,20046.772125041705,5,3,5,5_1,5_0,5_0_0 +19108,2,52.0,0.0,2,111,570.0,,,0,55,0.0,0.0,,726.0,216.15191916185728,,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,119127,1,2,0,0,2,,560.0,483.0,32,2.0,0.0,4.0,3.0,2.0,3,3,92.43758876705668,570.0,35911.47818654607,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020216377511076383,17955.739093273034,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +19109,2,52.0,0.0,7,112,350.0,,,0,22,0.0,0.0,,382.0,44.33885521268867,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,119128,2,1,0,0,2,,150.0,,32,1.0,0.0,6.0,2.0,1.5,2,1,114.97836723212664,350.0,87278.10511206184,0,1,0,1,137.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004376813629369316,58185.403408041224,10,5,10,10_1,10_1,10_0_0 +19111,1,46.0,190.0,9,111,0.0,0.0,0.0,34,43,0.0,0.0,0.0,1340.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,119130,2,1,1,0,1,,656.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,505.628562043117,0.0,48725.33064698445,1,1,1,2,107.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.027501096087132065,23202.538403325925,6,3,6,6_1,6_3,6_0_0 +19112,1,52.0,334.0,2,111,800.0,200.0,0.0,0,22,0.0,0.0,1364.160434697649,1000.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,2,119131,2,2,0,1,2,600.0,0.0,335.0,32,1.0,2.0,3.0,2.0,1.5,2,2,785.515757472328,800.0,9133.547122134933,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1094864882863005,6089.031414756621,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +19113,2,67.0,0.0,2,112,1200.0,0.0,0.0,77,78,316.40485531098045,0.0,2046.2406520464733,1600.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119132,2,1,2,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1951.05659025831,1200.0,36499.81706660642,5,5,0,1,120.0,9,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04383583613803466,24333.21137773761,7,4,7,7_1,7_1,7_0_1 +19114,2,64.0,0.0,9,120,1120.0,,,71,11,0.0,0.0,,1249.0,178.7410100761512,,71,0,0,0,0,0,0,0,0,1,15.0,1,2011.0,6,119133,2,1,0,0,1,,250.0,,42,2.0,1.0,3.0,6.0,2.8999999999999995,3,3,142.89703082065301,1120.0,19806.370423726323,5,1,0,1,66.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06306051907944758,6829.782904733216,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +19115,2,62.0,0.0,5,221,524.0,1680.0,0.0,75,72,0.0,0.0,893.52508472696,2204.0,0.0,3189.4868005388457,71,0,0,0,0,0,0,0,0,0,,1,,3,119134,2,1,1,0,1,,120.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1985.46231297794,524.0,18852.317905464846,6,5,0,1,150.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1169087011502767,12568.211936976564,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +19116,2,33.0,0.0,1,111,1450.0,1200.0,0.0,47,42,0.0,0.0,2472.540787889489,2650.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,0,,1,,1,119135,2,3,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,118.284793005811,1450.0,43050.39360711855,1,1,1,2,75.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0615557670432498,20500.187431961214,5,3,5,5_1,5_2,5_1_0 +19117,2,53.0,0.0,6,111,1700.0,0.0,0.0,52,46,0.0,0.0,2898.840923732504,1880.0,249.40606057137379,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,4,119136,2,1,2,0,1,,400.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1321.15649607822,1700.0,52193.12927461577,1,1,1,2,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03602006674304431,34795.41951641051,9,5,9,9_1,9_3,9_0_0 +19118,2,55.0,0.0,6,111,0.0,0.0,1580.0,62,52,0.0,0.0,995.9028988552951,1580.0,0.0,1890.836793152196,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,119137,2,1,3,0,1,,430.0,,43,2.0,1.0,3.0,3.0,2.0,3,2,320.001526305672,0.0,45874.744282043874,1,1,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03444160887929871,22937.372141021937,6,3,6,6_1,6_2,6_0_0 +19119,2,33.0,0.0,1,111,540.0,120.0,0.0,0,63,0.0,0.0,920.8082934209131,660.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,119138,2,1,0,1,1,523.0,0.0,245.0,12,1.0,0.0,2.0,1.0,1.0,1,1,326.679479254297,540.0,19972.78869599545,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03304495982237724,19972.78869599545,5,3,5,5_0,5_4,5_1_0 +19120,2,52.0,0.0,6,400,1000.0,0.0,0.0,56,13,738.277995725621,66.2163638505112,1705.2005433720612,1950.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119139,2,1,2,0,1,,250.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,1747.62201497818,1000.0,104876.01520820336,1,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018593383779206284,52438.00760410168,10,5,10,10_1,10_0,10_0_0 +19121,2,40.0,0.0,5,111,1100.0,0.0,0.0,48,37,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,80.0,1,,3,119140,2,2,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,506.902775223,1100.0,78779.01838317086,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013963108738544363,37513.818277700404,9,5,9,9_1,9_4,9_0_0 +19122,1,34.0,243.0,9,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1124.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,119141,2,1,1,0,1,,165.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,149.590586365299,0.0,22420.9378499214,6,1,1,2,95.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05013171204182881,9342.05743746725,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +19123,2,55.0,0.0,2,111,0.0,0.0,2000.0,56,21,0.0,0.0,1260.6365808294875,2837.0,0.0,2393.4642951293617,50,0,0,0,0,0,0,0,0,0,,1,,2,119142,2,1,1,0,1,,600.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,342.807044912091,0.0,62776.39203390815,1,1,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04519214800474066,41850.92802260543,9,5,9,9_1,9_3,9_0_1 +19124,1,41.0,53.0,2,111,167.0,605.0,0.0,0,53,0.0,0.0,284.76849074313424,772.0,0.0,1148.5949490035723,50,1,2,2,2,1,2,2,2,2,5.0,2,,2,119143,1,2,0,0,1,,79.0,276.0,32,2.0,0.0,2.0,3.0,1.8,2,2,432.170538337845,167.0,14778.557305454073,0,1,2,3,49.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05223784595774386,8210.309614141152,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19125,1,33.0,30.0,2,111,0.0,0.0,0.0,52,68,0.0,0.0,0.0,374.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,119144,2,1,0,1,1,265.0,0.0,305.0,43,2.0,1.0,3.0,4.0,2.1,2,2,222.402559847293,0.0,25932.76225245827,1,1,2,3,54.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014421911416881442,12348.934405932509,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +19126,2,58.0,0.0,1,300,1100.0,0.0,0.0,68,67,0.0,1456.7600047112462,1875.7205977092674,2380.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,119145,2,1,2,0,1,,480.0,,43,4.0,0.0,7.0,4.0,2.5,4,4,1442.665286283,1100.0,81217.31565427719,1,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029304095817831437,32486.926261710876,8,4,8,8_1,8_0,8_1_0 +19127,2,59.0,0.0,5,111,600.0,0.0,0.0,54,47,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,90.0,2,,3,119146,2,1,0,1,1,740.0,0.0,590.0,43,2.0,3.0,4.0,2.0,1.5,2,2,872.740132291067,600.0,59855.494227043695,1,1,2,3,96.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010024142440860678,39903.66281802913,9,5,9,9_0,9_4,9_0_0 +19128,2,53.0,0.0,7,111,170.0,60.0,0.0,0,52,0.0,0.0,289.8840923732504,230.0,0.0,113.91024287638734,42,2,2,2,2,1,2,2,2,3,60.0,2,,5,119147,2,3,0,1,1,744.0,0.0,405.0,12,1.0,0.0,2.0,1.0,1.0,1,1,835.057120540177,170.0,27407.635806085542,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,1,0,0.008391821958934934,27407.635806085542,7,4,7,7_0,7_4,7_0_0 +19129,0,53.0,0.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2474.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119148,2,1,2,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1130.94629450095,0.0,5268.288571029421,0,7,5,0,35.0,9,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.46960221837593485,5268.288571029421,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +19130,1,68.0,68.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,664.0,110.84713803172167,0.0,41,2,2,2,2,1,2,2,2,0,,2,,2,119149,2,2,0,1,1,612.0,160.0,289.0,11,0.0,2.0,4.0,1.0,1.0,1,1,618.53516626265,250.0,13168.32342534768,0,5,2,3,60.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05042403490195781,13168.32342534768,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +19131,2,32.0,0.0,9,120,400.0,,,46,42,0.0,0.0,,576.0,243.8637036697877,,20,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,119150,2,1,0,0,1,,250.0,820.0,43,2.0,0.0,4.0,3.0,1.8,2,2,251.4665559943311,400.0,42516.15767793324,4,1,2,3,108.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013547790568547916,23620.0875988518,6,3,6,6_1,6_2,6_0_0 +19132,2,75.0,0.0,6,211,1800.0,0.0,0.0,78,71,0.0,423.78472864327165,3069.36097806971,2200.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,119151,2,1,2,0,1,,0.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1014.24067123139,1800.0,30931.0,5,5,0,1,170.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07112605476706217,20620.666666666668,5,3,5,5_1,5_1,5_0_0 +19133,1,24.0,323.0,2,111,650.0,500.0,0.0,85,62,0.0,0.0,1108.3803531918397,1150.0,0.0,949.2520239698945,71,1,2,2,1,2,2,2,2,2,30.0,2,,2,119152,1,2,0,0,2,,450.0,370.0,42,1.0,0.0,4.0,4.0,2.1,2,2,272.027507861994,650.0,20272.290006578154,6,1,2,3,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05672768096879221,9653.471431703883,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19134,2,74.0,0.0,2,111,480.0,480.0,0.0,0,77,0.0,0.0,818.4962608185893,960.0,0.0,911.2819430110987,71,2,1,2,1,1,2,2,2,0,,2,,2,119153,2,1,0,1,2,,0.0,603.0,21,1.0,4.0,3.0,2.0,1.5,2,2,260.977059269913,480.0,34216.43237343923,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028056694792798077,22810.954915626153,6,3,6,6_0,6_4,6_0_1 +19136,1,32.0,400.0,8,111,0.0,,,0,85,0.0,0.0,,661.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119155,1,1,0,0,1,,190.0,575.0,31,0.0,0.0,4.0,3.0,1.8,2,1,130.85820957706443,0.0,13052.591628448026,0,6,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05064128403123832,7251.439793582236,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +19137,2,87.0,0.0,2,111,450.0,,,0,77,0.0,0.0,,530.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,2,119156,2,2,0,0,2,,600.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,30.10030065671223,450.0,29625.55139922779,0,5,0,1,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017889962379360635,29625.55139922779,8,4,8,8_1,8_2,8_0_1 +19138,2,62.0,0.0,2,111,400.0,81.0,0.0,0,75,0.0,0.0,682.0802173488245,481.0,0.0,153.77882788312291,42,2,2,2,1,2,2,2,2,0,,2,,2,119157,1,3,0,1,2,874.0,0.0,541.0,21,1.0,0.0,4.0,2.0,1.5,2,2,652.632628450629,400.0,47043.46217911483,0,5,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010224587598774612,31362.30811940989,8,4,8,8_0,8_4,8_0_1 +19139,2,72.0,0.0,5,111,320.0,760.0,0.0,75,78,0.0,0.0,545.6641738790596,1080.0,0.0,1442.8630764342397,50,0,0,0,0,0,0,0,0,0,,1,,3,119158,2,1,2,0,1,,230.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1139.03303070363,320.0,29204.96117977459,5,5,0,1,117.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03698001833838889,19469.974119849725,5,3,5,5_1,5_2,5_0_0 +19141,2,45.0,0.0,5,112,961.0,0.0,0.0,54,47,0.0,993.245457757668,1638.6977221805507,1867.0,216.15191916185728,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,119160,1,1,2,0,1,,431.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1448.63776619993,961.0,57075.615888766726,1,1,1,2,118.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03271099174187714,21952.159957217973,6,3,6,6_1,6_2,6_0_0 +19142,2,34.0,0.0,2,111,360.0,0.0,0.0,0,38,0.0,0.0,613.872195613942,360.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,55.0,2,,2,119161,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1125.10008125938,360.0,47127.98410845246,0,1,1,2,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007638773582412441,47127.98410845246,10,5,10,10_0,10_4,10_0_1 +19143,2,82.0,0.0,6,111,1200.0,0.0,0.0,77,72,0.0,0.0,2046.2406520464733,1500.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119162,2,1,1,0,1,,300.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,318.735093253918,1200.0,27474.159155537258,5,5,0,1,80.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05459675732051234,18316.106103691505,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +19144,2,23.0,0.0,8,111,408.0,799.0,0.0,0,43,0.0,0.0,695.7218216958009,1207.0,0.0,1516.9047343038915,33,0,0,0,0,0,0,0,0,3,45.0,2,1999.0,6,119163,1,3,0,0,2,,0.0,1121.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1601.24317698173,408.0,33923.00716603124,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03558057203161599,26094.620896947104,7,4,7,7_0,7_4,7_0_0 +19145,2,49.0,0.0,7,211,1080.0,,,0,52,0.0,0.0,,1080.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,119164,2,2,0,0,2,,572.0,,32,1.0,0.0,4.0,4.0,2.3,3,1,48.21116788020237,1080.0,34388.984964096744,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03140540499021871,14951.732593085542,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +19146,1,41.0,370.0,2,111,400.0,1400.0,0.0,0,67,0.0,0.0,682.0802173488245,1800.0,0.0,2657.9056671157045,71,2,2,2,1,2,2,2,2,0,,2,,2,119165,2,3,0,0,1,,367.0,325.0,32,1.0,0.0,4.0,4.0,2.1,2,1,490.624029638089,400.0,23706.239768113453,0,4,2,3,70.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,1,1,0,1,0.0759293762995313,11288.685603863549,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +19147,1,22.0,377.0,2,111,420.0,114.0,0.0,0,55,0.0,0.0,716.1842282162656,534.0,0.0,216.42946146513594,71,2,2,1,2,1,1,2,2,0,,2,,2,119166,1,3,0,1,1,720.0,0.0,361.0,22,3.0,0.0,4.0,4.0,2.5,4,4,248.075876367633,420.0,36358.93323846544,0,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.014686899543990524,14543.573295386177,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +19148,2,60.0,0.0,8,111,600.0,,,77,63,0.0,0.0,,772.0,238.3213467682016,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,119167,2,2,0,0,2,,660.0,,42,2.0,0.0,4.0,5.0,2.8,4,3,139.57535329798208,600.0,21138.1953847689,6,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03652156610096733,7549.355494560322,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19149,2,71.0,0.0,5,111,440.0,0.0,0.0,0,77,0.0,0.0,750.2882390837069,440.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,119168,1,3,0,1,1,677.0,106.0,225.0,11,0.0,2.0,2.0,1.0,1.0,1,1,449.124217363201,440.0,16417.141550641314,0,5,2,3,72.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02680125517848215,16417.141550641314,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +19150,2,69.0,0.0,5,300,1200.0,0.0,0.0,75,75,0.0,397.2981831030672,2046.2406520464733,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,119169,2,1,2,0,1,,174.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1921.80795790559,1200.0,56543.82067180322,5,5,0,1,150.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02652809771568915,37695.88044786882,9,5,9,9_1,9_0,9_0_0 +19151,2,29.0,0.0,7,112,915.0,0.0,0.0,64,43,0.0,516.4876380339873,1560.258497185436,1349.0,60.965925917446924,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,,5,119170,2,1,2,0,1,,370.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1591.52254798478,915.0,35212.283536361,1,1,1,2,112.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03831049464903326,19562.379742422778,5,3,5,5_1,5_0,5_0_0 +19152,1,60.0,40.0,2,111,734.0,589.0,0.0,0,56,0.0,0.0,1251.617198835093,1323.0,0.0,1118.2188842365358,50,0,0,0,0,0,0,0,0,0,,1,,2,119171,2,2,2,0,1,,400.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,339.012385523722,734.0,28403.50475780655,0,1,1,2,45.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04657875889898343,28403.50475780655,8,4,8,8_1,8_3,8_0_1 +19153,2,83.0,0.0,1,111,358.0,1860.0,0.0,77,75,0.0,0.0,610.4617945271979,2218.0,0.0,3531.2175291680073,41,0,0,0,0,0,0,0,0,0,,1,,1,119172,2,1,1,0,1,,435.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,618.050206201032,358.0,75498.04374876649,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029378244652017733,50332.029165844324,10,5,10,10_1,10_4,10_1_0 +19154,2,45.0,0.0,1,112,550.0,0.0,0.0,69,11,2109.365702073203,0.0,937.8602988546337,2680.0,180.1265993015477,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,119173,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,1147.7148858348,550.0,41085.71947207633,1,1,1,2,93.0,6,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06522947716228862,20542.859736038165,5,3,5,5_1,5_1,5_1_0 +19155,1,47.0,362.0,2,111,500.0,130.0,0.0,85,69,0.0,0.0,852.6002716860306,630.0,0.0,246.80552623217258,31,0,0,0,0,0,0,0,0,0,,2,,2,119174,2,1,0,1,1,740.0,289.0,347.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1248.18625373809,500.0,19251.980792577226,6,4,2,3,89.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03272390549251442,9167.60990122725,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19156,2,29.0,0.0,2,111,0.0,0.0,430.0,63,52,0.0,0.0,271.0368648783398,430.0,0.0,514.5948234528128,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,119175,2,1,0,1,1,600.0,572.0,340.0,43,2.0,1.0,3.0,4.0,2.1,2,2,234.54175541904,0.0,40123.00767340096,1,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01071704303675776,19106.194130190936,5,3,5,5_0,5_4,5_0_1 +19157,2,28.0,0.0,9,111,720.0,550.0,0.0,34,42,0.0,0.0,1227.744391227884,1270.0,0.0,1044.177226366884,20,2,2,2,2,1,2,2,1,0,,2,2010.0,6,119176,1,1,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,2.0,1.5,2,2,461.756946291304,720.0,43930.44655449015,1,1,2,3,64.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.02890933508778988,29286.964369660098,8,4,8,8_0,8_2,8_0_0 +19158,2,82.0,0.0,2,111,320.0,856.0,0.0,0,78,0.0,0.0,545.6641738790596,1176.0,0.0,1625.1194650364594,50,0,0,0,0,0,0,0,0,0,,1,,2,119177,2,1,1,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1429.26092471578,320.0,14747.489832915317,0,5,0,1,90.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07974238418359537,14747.489832915317,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +19159,2,58.0,0.0,5,111,2500.0,0.0,0.0,54,78,0.0,198.6490915515336,4263.001358430153,2710.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119178,1,1,3,0,1,,750.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,1865.17300446261,2500.0,33465.127611861215,4,7,0,1,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08097981969264868,16732.563805930607,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +19160,1,61.0,69.0,2,111,480.0,0.0,0.0,0,77,0.0,0.0,818.4962608185893,722.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,119179,1,3,0,1,2,,0.0,,21,1.0,1.0,2.0,2.0,1.5,2,2,219.702355445703,480.0,10856.286218761245,0,5,1,2,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.066505247324106,7237.52414584083,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19161,2,37.0,0.0,8,221,800.0,841.0,0.0,68,63,0.0,238.3789098618403,1364.160434697649,1821.0,0.0,1596.6419043173626,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119180,2,1,1,0,1,,291.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1975.51329195273,800.0,32007.2582949298,1,4,0,1,95.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05689334535374623,15241.551569014191,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +19162,2,35.0,0.0,2,300,750.0,0.0,0.0,0,52,0.0,794.5963662061343,1278.9004075290459,1400.0,69.27946126982604,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,119181,2,1,2,0,1,,150.0,300.0,22,2.0,1.0,4.0,3.0,2.0,3,3,1212.26148898585,750.0,52432.93110753582,0,1,2,3,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026700776981716128,26216.46555376791,7,4,7,7_1,7_0,7_0_1 +19163,2,83.0,0.0,2,111,443.0,0.0,0.0,0,71,2636.7071275915036,0.0,755.4038407138231,3167.0,310.3719864888207,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119182,2,1,2,0,2,,265.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1009.43195515861,443.0,28945.891517768778,0,5,0,1,120.0,8,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1094110367288532,28945.891517768778,8,4,8,8_1,8_3,8_0_1 +19164,1,23.0,239.0,7,111,0.0,0.0,0.0,54,54,0.0,0.0,0.0,307.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,10.0,2,,5,119183,2,1,0,1,1,,219.0,403.0,43,2.0,0.0,3.0,2.0,1.5,2,2,249.494034438367,0.0,36445.45097797641,1,1,2,3,70.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.00842354784374919,24296.967318650943,7,4,7,7_0,7_3,7_0_0 +19165,2,57.0,0.0,1,111,1200.0,1500.0,0.0,0,37,0.0,0.0,2046.2406520464733,2700.0,0.0,2847.7560719096837,10,2,2,2,2,1,2,2,1,2,45.0,2,,1,119184,2,1,0,0,1,,0.0,,32,1.0,0.0,6.0,3.0,2.0,3,3,1008.64012725686,1200.0,143545.28677345853,0,1,1,2,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.018809395004805055,71772.64338672927,10,5,10,10_0,10_4,10_1_0 +19166,2,71.0,0.0,5,111,1000.0,0.0,0.0,75,75,0.0,92.70290939071567,1705.2005433720612,1260.0,263.261952825339,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119185,2,2,1,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,926.530080920983,1000.0,50867.20112539409,5,5,0,1,100.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02477038193813614,33911.467416929394,9,5,9,9_1,9_2,9_0_0 +19167,2,44.0,0.0,2,111,1300.0,0.0,0.0,54,54,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,1,2,2,1,1,2,2,2,0,,1,,2,119186,2,2,1,0,1,,175.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,258.910482077022,1300.0,26852.07235561603,4,1,1,2,37.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.048413395539212783,17901.381570410686,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +19168,2,60.0,0.0,6,111,350.0,350.0,0.0,0,33,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,10,0,0,0,0,0,0,0,0,2,25.0,2,,4,119187,2,1,0,0,1,,0.0,320.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1813.25018661548,350.0,74412.29862405357,0,1,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009407047127203338,74412.29862405357,10,5,10,10_0,10_3,10_0_0 +19169,1,40.0,260.0,2,111,360.0,240.0,0.0,0,52,0.0,0.0,613.872195613942,600.0,0.0,455.6409715055494,71,2,1,2,2,1,2,2,1,3,90.0,2,,2,119188,2,2,0,1,1,516.0,0.0,460.0,32,2.0,0.0,4.0,5.0,2.4,2,2,608.45635808841,360.0,29180.3781046323,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020561762354434736,12158.490876930126,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +19170,1,39.0,366.0,7,111,360.0,,,0,63,0.0,0.0,,510.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,2,,5,119189,2,1,0,0,1,,434.0,349.0,32,1.0,0.0,2.0,3.0,1.6,1,1,100.60658344135051,360.0,19320.736743213918,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026396508931220176,12075.460464508698,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +19171,2,49.0,0.0,1,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,3466.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,,1,119190,2,1,1,0,1,,764.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,463.346073624054,0.0,81939.52945127037,1,1,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04229948625786579,29264.11766116799,8,4,8,8_1,8_4,8_1_0 +19172,2,58.0,0.0,6,111,0.0,,,0,75,0.0,0.0,,396.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,4,119191,2,1,0,0,2,,417.0,700.0,11,0.0,5.0,4.0,1.0,1.0,1,1,115.58028983069161,0.0,42683.940534572685,0,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009277493948321199,42683.940534572685,9,5,9,9_0,9_2,9_0_0 +19173,1,37.0,476.0,1,111,669.0,0.0,0.0,0,85,474.6072829664707,0.0,1140.779163515909,1519.0,554.2356901586083,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,119192,1,2,0,0,2,,158.0,435.0,31,0.0,0.0,3.0,4.0,2.5,4,2,441.785839256286,669.0,9468.275317958238,0,6,2,3,59.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.1604304848549293,3787.310127183295,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +19174,2,51.0,0.0,8,111,615.0,0.0,0.0,56,53,0.0,0.0,1048.6983341738176,615.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,119193,2,1,0,1,1,612.0,0.0,411.0,43,2.0,0.0,3.0,2.0,1.5,2,2,905.295844497602,615.0,48104.831505800474,1,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012784578611939289,32069.887670533648,8,4,8,8_0,8_4,8_0_0 +19175,2,54.0,0.0,2,111,296.0,471.0,0.0,0,52,0.0,0.0,504.7393608381301,767.0,0.0,894.1954065796406,71,2,2,2,2,1,2,2,2,0,,2,,2,119194,1,3,0,1,1,,0.0,600.0,22,2.0,0.0,5.0,3.0,2.0,3,3,551.112363120802,296.0,34565.6078046825,0,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.022189686474892445,17282.80390234125,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +19176,2,55.0,0.0,7,111,320.0,,,53,52,0.0,0.0,,452.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,119195,2,2,0,0,2,,240.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,167.04428547391032,320.0,18021.44048694733,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025081235893844176,12014.293657964887,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +19177,2,36.0,0.0,2,111,360.0,,,0,43,0.0,0.0,,404.0,60.965925917446924,,43,0,0,0,0,0,0,0,0,0,,8,,2,119196,2,2,0,0,2,,200.0,300.0,12,1.0,1.0,3.0,1.0,1.0,1,1,136.90280520291242,360.0,28327.022191087643,0,4,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014262000335746835,28327.022191087643,8,4,8,8_0,8_3,8_0_1 +19178,2,52.0,0.0,1,111,500.0,500.0,0.0,0,21,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,1,,1,119197,2,1,2,0,1,,100.0,610.0,12,1.0,2.0,3.0,1.0,1.0,1,1,232.148266374097,500.0,20328.915414027997,0,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04919101583304088,20328.915414027997,5,3,5,5_1,5_3,5_1_0 +19179,2,80.0,0.0,2,112,540.0,,,0,86,0.0,0.0,,660.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,119198,1,1,0,0,2,,800.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,109.95152487399963,540.0,12366.317957565923,0,5,0,1,82.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053370777159760865,12366.317957565923,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +19180,2,34.0,0.0,2,111,1700.0,0.0,0.0,48,46,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,,2,119199,1,3,0,0,1,,0.0,750.0,43,2.0,0.0,2.0,2.0,1.5,2,2,963.731273466329,1700.0,57186.43161665974,1,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029727331325648764,38124.287744439825,9,5,9,9_0,9_4,9_0_1 +19182,2,67.0,0.0,1,111,0.0,400.0,0.0,74,72,0.0,0.0,0.0,972.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,2,,1,119201,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,831.658164819956,0.0,75517.48502812115,5,5,1,2,86.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012871191349103419,50344.990018747434,10,5,10,10_0,10_4,10_1_0 +19183,1,36.0,227.0,2,111,336.0,336.0,0.0,64,23,0.0,0.0,572.9473825730125,672.0,0.0,637.8973601077691,50,0,0,0,0,0,0,0,0,3,35.0,2,,2,119202,2,1,0,1,2,,0.0,760.0,43,2.0,0.0,4.0,4.0,2.3,3,2,226.008047484402,336.0,25433.751940523845,4,1,2,3,91.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02642158347582591,11058.153017619064,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +19184,2,44.0,0.0,2,111,530.0,0.0,0.0,56,46,0.0,1112.4349126885882,903.7562879871924,1370.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,119203,2,2,0,1,1,800.0,0.0,419.0,43,2.0,1.0,5.0,3.0,2.0,3,2,914.123785200159,530.0,45692.62579857457,1,1,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029982956244172305,22846.312899287284,6,3,6,6_0,6_4,6_0_1 +19185,2,49.0,0.0,1,211,959.0,0.0,0.0,0,62,0.0,0.0,1635.2873210938067,959.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119204,2,1,1,0,1,,126.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,843.848466269412,959.0,17148.58758077847,0,4,1,2,90.0,1,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05592297298437133,17148.58758077847,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +19186,2,58.0,0.0,2,111,420.0,300.0,0.0,75,54,0.0,0.0,716.1842282162656,720.0,0.0,569.5512143819367,50,2,2,1,1,1,2,2,2,2,15.0,2,,2,119205,1,3,0,1,2,800.0,0.0,700.0,42,1.0,0.0,3.0,3.0,2.0,3,3,2175.29798901789,420.0,59884.338075901665,5,1,2,3,73.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012023177063215106,29942.169037950833,8,4,8,8_0,8_3,8_0_1 +19187,1,53.0,180.0,5,111,450.0,250.0,0.0,0,56,0.0,0.0,767.3402445174275,700.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,0,,2,,3,119206,2,1,0,1,1,,210.0,300.0,32,1.0,0.0,3.0,2.0,1.5,2,2,341.794307173223,450.0,15578.376353464206,0,1,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04493407940066483,10385.584235642804,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +19188,0,26.0,0.0,1,120,0.0,0.0,0.0,0,69,0.0,0.0,0.0,2391.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,,1,119207,1,2,2,0,2,,0.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,971.645552456297,0.0,11801.371991577964,0,1,5,0,100.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20260356183216108,11801.371991577964,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +19189,1,48.0,140.0,2,111,0.0,0.0,0.0,78,85,0.0,0.0,0.0,1137.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119208,2,1,1,0,1,,272.0,550.0,41,0.0,0.0,3.0,3.0,2.0,3,3,447.080320966943,0.0,19474.186424012347,7,7,2,3,55.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05838498077629778,9737.093212006173,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +19190,1,43.0,490.0,2,111,270.0,50.0,0.0,0,85,0.0,0.0,460.40414671045653,320.0,0.0,94.92520239698945,50,2,2,1,2,2,2,2,1,0,,2,,2,119209,2,2,0,1,1,,100.0,700.0,11,0.0,3.0,5.0,1.0,1.0,1,1,1384.36780702087,270.0,25575.637697190996,0,7,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.012511906986981835,25575.637697190996,7,4,7,7_0,7_3,7_0_1 +19191,1,28.0,159.0,1,111,360.0,300.0,0.0,56,37,0.0,0.0,613.872195613942,660.0,0.0,569.5512143819367,10,0,0,0,0,0,0,0,0,2,45.0,2,,1,119210,2,1,0,1,1,600.0,0.0,460.0,43,2.0,0.0,5.0,5.0,2.4,2,2,701.873530825458,360.0,40404.711324192336,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.016334728757357184,16835.296385080142,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +19192,2,67.0,0.0,7,111,1152.0,53.0,0.0,0,74,0.0,0.0,1964.3910259646145,1205.0,0.0,100.62071454080882,12,0,0,0,0,0,0,0,0,0,,2,,5,119211,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,915.006474871766,1152.0,45428.71214147984,0,5,0,1,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026525075072505615,45428.71214147984,10,5,10,10_0,10_4,10_0_0 +19193,0,47.0,0.0,2,111,488.0,720.0,0.0,0,45,0.0,0.0,832.1378651655658,1208.0,0.0,1366.922914516648,10,0,0,0,0,0,0,0,0,3,35.0,2,,2,119212,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1146.14460702568,488.0,28299.60446396903,0,1,0,1,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04268610897152368,17687.25278998064,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +19194,2,57.0,0.0,1,111,1030.0,0.0,0.0,85,43,0.0,0.0,1756.356559673223,1030.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,,1,119213,2,1,0,0,1,,430.0,,42,1.0,2.0,2.0,5.0,2.4,2,2,199.168682226987,1030.0,63561.8676293002,6,1,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016204684324366826,26484.111512208416,7,4,7,7_0,7_4,7_1_0 +19195,2,74.0,0.0,5,111,480.0,,,0,77,0.0,0.0,,630.0,207.83838380947813,,44,0,0,0,0,0,0,0,0,0,,1,,3,119214,1,2,0,0,2,,300.0,700.0,11,0.0,4.0,4.0,1.0,1.0,1,1,106.39218010822455,480.0,22300.640483109375,0,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028250309692995832,22300.640483109375,6,3,6,6_1,6_2,6_0_0 +19196,1,23.0,300.0,1,111,0.0,0.0,0.0,84,52,0.0,0.0,0.0,657.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,15.0,2,,1,119215,2,2,0,0,1,,0.0,940.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1140.26487052038,0.0,9663.564724000951,3,1,2,3,29.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0679873337390952,6442.3764826673005,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +19197,2,83.0,0.0,1,112,440.0,0.0,0.0,0,71,0.0,1324.327277010224,750.2882390837069,1500.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119216,1,3,4,0,2,,95.0,305.0,11,0.0,7.0,5.0,1.0,1.0,1,1,1383.12890749932,440.0,18977.65529619572,0,5,2,3,80.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0790403227684661,18977.65529619572,5,3,5,5_1,5_0,5_1_0 +19198,1,68.0,200.0,2,111,250.0,370.0,0.0,0,75,0.0,0.0,426.3001358430153,620.0,0.0,702.446497737722,71,2,2,2,2,1,2,2,2,0,,2,,2,119217,2,3,0,1,1,865.0,0.0,400.0,11,0.0,4.0,4.0,1.0,1.0,1,1,297.616957983615,250.0,8775.281617302688,0,5,2,3,82.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.07065300317855476,8775.281617302688,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19199,2,37.0,0.0,1,111,170.0,105.0,0.0,68,81,0.0,0.0,289.8840923732504,275.0,0.0,199.34292503367786,41,2,1,2,2,2,2,2,1,0,,2,,1,119218,1,3,0,1,2,705.0,0.0,647.0,43,2.0,0.0,2.0,4.0,2.5,4,4,916.831808672034,170.0,8043.805309052164,4,4,3,4,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.03418779911176199,3217.522123620866,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +19200,2,69.0,0.0,7,112,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,119219,2,1,1,0,1,,213.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1585.82308999651,1000.0,20093.061630747292,0,5,0,1,135.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04976842346761908,20093.061630747292,5,3,5,5_1,5_0,5_0_0 +19201,2,75.0,0.0,2,111,460.0,1300.0,0.0,0,78,0.0,0.0,784.3922499511482,1760.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,0,,1,,2,119220,2,1,2,0,1,,170.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,260.377935856349,460.0,26535.74444247226,0,5,0,1,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06632563121850844,26535.74444247226,7,4,7,7_1,7_3,7_0_1 +19202,2,28.0,0.0,9,111,400.0,0.0,0.0,55,47,0.0,0.0,682.0802173488245,400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2009.0,6,119221,2,1,0,0,1,,0.0,521.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1651.79210576817,400.0,18977.800858682716,4,4,2,3,64.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021077257738058314,12651.867239121812,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +19204,2,53.0,0.0,1,111,240.0,240.0,0.0,78,54,0.0,0.0,409.2481304092947,480.0,0.0,455.6409715055494,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,119223,2,1,0,0,1,,160.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,769.723780443649,240.0,55281.29614092625,5,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008682864431694156,36854.19742728417,9,5,9,9_0,9_4,9_1_0 +19205,2,55.0,0.0,2,112,350.0,0.0,0.0,78,63,1898.4291318658827,0.0,596.8201901802214,2270.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,119224,1,2,2,0,2,,110.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1637.78158245455,350.0,41466.43092713585,7,1,0,1,110.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05474307648972268,27644.287284757233,7,4,7,7_1,7_0,7_0_1 +19207,2,42.0,0.0,9,111,480.0,,,0,42,0.0,0.0,,500.0,27.711784507930417,,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119226,2,3,0,0,2,,360.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,121.89926127866477,480.0,25241.22585258681,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01980886359957665,25241.22585258681,7,4,7,7_1,7_3,7_0_0 +19208,2,60.0,0.0,8,111,180.0,,,0,42,0.0,0.0,,180.0,0.0,,12,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,119227,2,1,0,0,2,,180.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,109.31369114413742,180.0,64901.209667308096,0,1,1,2,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0027734459946540755,64901.209667308096,10,5,10,10_0,10_2,10_0_0 +19209,2,56.0,0.0,2,211,468.0,1300.0,0.0,0,78,0.0,0.0,798.0338542981247,1884.0,160.72835014599644,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,2,119228,1,2,2,0,2,,400.0,,21,1.0,0.0,7.0,2.0,1.5,2,2,243.067338547446,468.0,27837.00228452983,0,5,0,1,100.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06767970131061908,18558.001523019888,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +19210,1,44.0,173.0,1,300,345.0,0.0,0.0,0,85,0.0,397.2981831030672,588.2941874633611,680.0,48.49562288887823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119229,2,1,1,0,1,,160.0,155.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2159.70099358948,345.0,4628.175481783117,0,7,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1469261489060941,4628.175481783117,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +19211,2,74.0,0.0,2,111,360.0,300.0,0.0,0,77,0.0,0.0,613.872195613942,660.0,0.0,569.5512143819367,70,0,0,0,0,0,0,0,0,0,,2,,2,119230,2,2,0,0,1,,0.0,293.0,11,0.0,0.0,3.0,1.0,1.0,1,1,888.066050405447,360.0,18451.961438262515,0,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03576855513210672,18451.961438262515,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +19212,2,82.0,0.0,1,112,537.0,0.0,0.0,0,75,0.0,0.0,915.6926917907969,2053.0,2100.553265701126,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,119231,2,2,1,0,1,,189.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,195.724584735312,537.0,21625.937764771992,0,5,0,1,140.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.09493229946052448,21625.937764771992,6,3,6,6_1,6_0,6_1_0 +19213,1,82.0,41.0,1,111,0.0,0.0,1830.0,0,72,0.0,0.0,1153.482471458981,1830.0,0.0,2190.019830043366,71,0,0,0,0,0,0,0,0,0,,1,,1,119232,1,3,3,0,1,,300.0,165.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1139.72772742731,0.0,10944.804766584939,0,5,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.1672026170432099,10944.804766584939,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +19214,2,52.0,0.0,5,111,1290.0,0.0,0.0,54,38,0.0,278.10872817214704,2199.7087009499587,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,119233,2,1,2,0,1,,420.0,,43,2.0,0.0,5.0,5.0,2.8,4,4,710.761994731741,1290.0,68960.95903890074,1,1,0,1,110.0,4,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021751437638125842,24628.91394246455,7,4,7,7_1,7_2,7_0_0 +19215,2,41.0,0.0,9,112,750.0,0.0,0.0,85,21,2214.833987176863,0.0,1278.9004075290459,2950.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,119234,2,1,1,0,1,,239.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,2011.34386821105,750.0,45267.78055644219,6,1,1,2,156.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0651677631140274,25148.766975801213,7,4,7,7_1,7_0,7_0_0 +19216,2,58.0,0.0,5,300,1418.0,0.0,0.0,68,62,0.0,0.0,2417.9743705015826,1418.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,119235,2,2,3,0,1,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1037.61316037475,1418.0,41352.00353214883,1,1,0,1,98.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03429096244145911,27568.00235476589,7,4,7,7_1,7_0,7_0_0 +19217,1,40.0,118.0,2,111,260.0,420.0,0.0,63,52,0.0,0.0,443.3521412767359,680.0,0.0,797.3717001347114,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,119236,2,1,0,1,1,717.0,330.0,305.0,43,2.0,1.0,3.0,3.0,1.8,2,2,856.178769433213,260.0,19544.883846977853,4,1,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03479171354119588,10858.268803876585,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +19218,2,36.0,0.0,8,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,528.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,119237,2,2,0,0,1,,0.0,460.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1745.27973721092,0.0,20247.797946501574,0,4,2,3,33.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026076909765450722,20247.797946501574,5,3,5,5_0,5_3,5_0_0 +19219,1,37.0,600.0,9,400,0.0,0.0,0.0,55,11,0.0,0.0,0.0,877.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,5.0,1,2007.0,6,119238,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,759.08929668538,0.0,41307.24316254972,1,1,1,2,120.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02123114332633828,17211.35131772905,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +19220,1,35.0,299.0,5,111,1120.0,0.0,0.0,56,64,0.0,0.0,1909.8246085767084,1495.0,519.5959595236953,0.0,42,0,0,0,0,0,0,0,0,2,60.0,2,,3,119239,2,2,0,1,1,1200.0,1100.0,339.0,43,2.0,0.0,6.0,7.0,3.3999999999999995,4,2,298.953018585681,1120.0,17990.48614913296,1,1,2,3,107.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08309947755758954,5291.319455627342,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19221,2,62.0,0.0,1,112,1560.0,0.0,0.0,0,75,0.0,0.0,2660.1128476604154,1590.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,119240,2,1,1,0,1,,124.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,728.739860019986,1560.0,17298.616797782615,0,5,0,1,60.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09191486340132181,17298.616797782615,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19223,2,76.0,0.0,2,211,700.0,500.0,0.0,78,77,0.0,264.8654554020448,1193.6403803604428,1425.0,34.63973063491302,949.2520239698945,60,0,0,0,0,0,0,0,0,0,,1,,2,119242,2,1,2,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2209.2685553384,700.0,27360.955096074318,5,5,0,1,80.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05208151524668287,18240.63673071621,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +19224,2,28.0,0.0,5,111,649.0,1200.0,0.0,54,62,0.0,0.0,1106.6751526484677,1849.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,3,119243,2,1,2,0,1,,550.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,576.123296455215,649.0,43846.213778047815,4,1,3,4,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042170117797622156,24359.007654471006,7,4,7,7_1,7_4,7_0_0 +19225,1,76.0,30.0,2,111,250.0,100.0,0.0,0,77,0.0,0.0,426.3001358430153,350.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,119244,1,2,0,1,1,468.0,0.0,237.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1412.03366816913,250.0,14450.52686996731,0,5,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024220570166711974,14450.52686996731,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +19226,2,61.0,0.0,1,300,741.0,0.0,0.0,0,72,0.0,0.0,1263.5536026386974,941.0,277.1178450793042,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,119245,2,2,2,0,1,,67.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1327.70238951402,741.0,19103.205970714673,0,5,0,1,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.049258747533924854,19103.205970714673,5,3,5,5_1,5_0,5_1_0 +19227,2,39.0,0.0,1,112,1697.0,0.0,0.0,46,21,0.0,0.0,2893.725322102388,1697.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119246,2,2,1,0,1,,350.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1068.55253754669,1697.0,42355.77020572424,1,1,1,2,130.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04006537932748195,20169.41438367821,5,3,5,5_1,5_0,5_1_0 +19228,2,39.0,0.0,1,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1893.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,119247,2,1,1,0,1,,682.0,350.0,32,1.0,0.0,4.0,4.0,2.1,2,1,1125.08277722206,0.0,16550.247578243998,0,1,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11437895361084681,7881.070275354285,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +19229,0,26.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,2632.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119248,1,1,1,0,2,,251.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1727.59253738743,0.0,11686.391210166179,0,4,5,0,60.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.22521922744725342,11686.391210166179,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +19230,2,51.0,0.0,7,111,462.0,,,0,43,0.0,0.0,,546.0,116.38949493330776,,44,0,0,0,0,0,0,0,0,2,5.0,2,,5,119249,1,2,0,0,2,,285.0,388.0,12,1.0,0.0,2.0,1.0,1.0,1,1,101.78827055014075,462.0,22762.41631110631,0,1,2,3,51.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023986908618905893,22762.41631110631,6,3,6,6_0,6_2,6_0_0 +19231,2,65.0,0.0,5,111,600.0,0.0,0.0,75,72,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,119250,2,2,0,1,1,,229.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,532.283237376757,600.0,71969.68597461273,5,5,0,1,200.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008336843378914419,47979.79064974182,10,5,10,10_0,10_3,10_0_0 +19232,2,42.0,0.0,2,112,2510.0,0.0,0.0,0,48,0.0,0.0,4280.0533638638735,2510.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,119251,1,1,3,0,1,,467.0,,22,1.0,0.0,7.0,2.0,1.5,2,2,847.903555228395,2510.0,36889.237903481604,0,1,1,2,150.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0680415249175724,24592.825268987737,7,4,7,7_1,7_0,7_0_1 +19233,2,32.0,0.0,5,111,0.0,0.0,0.0,43,34,0.0,0.0,0.0,1270.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,119252,1,2,3,0,2,,237.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,648.418901496618,0.0,55007.941639884724,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023087575396188945,30559.967577713734,8,4,8,8_1,8_4,8_0_0 +19234,2,64.0,0.0,2,112,233.0,255.0,0.0,0,77,0.0,0.0,397.31172660569024,488.0,0.0,484.1185322246462,70,0,0,0,0,0,0,0,0,0,,2,,2,119253,1,2,0,1,1,679.0,0.0,302.0,21,1.0,0.0,3.0,2.0,1.5,2,2,540.971048414738,233.0,32527.525516380127,0,5,2,3,55.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015002678262576544,21685.017010920084,6,3,6,6_0,6_1,6_0_1 +19235,2,94.0,0.0,2,111,540.0,,,0,86,0.0,0.0,,632.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,,2,119254,2,2,0,0,2,,300.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,91.9200906288319,540.0,11374.463157894737,0,7,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055563061854162696,11374.463157894737,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +19236,2,75.0,0.0,2,111,480.0,,,0,78,0.0,0.0,,756.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,119255,2,1,0,0,2,,678.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,148.09405630664688,480.0,18399.729734566477,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04108756002974043,18399.729734566477,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +19237,1,52.0,300.0,9,111,600.0,,,64,46,0.0,0.0,,600.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,2009.0,6,119256,2,1,0,0,1,,250.0,715.0,43,2.0,5.0,3.0,2.0,1.5,2,2,150.30338685490054,600.0,15705.530724836239,4,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03820310249377174,10470.353816557492,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +19238,2,63.0,0.0,9,400,360.0,,,0,86,0.0,0.0,,420.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,119257,2,2,0,0,2,,240.0,,21,1.0,2.0,3.0,2.0,1.5,2,2,156.7568588850402,360.0,5738.637717121588,0,7,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0731881015501124,3825.758478081059,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +19239,2,52.0,0.0,6,120,500.0,0.0,0.0,0,54,1792.9608467622227,331.081819252556,852.6002716860306,2450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,119258,2,1,3,0,1,,200.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1153.02067120466,500.0,23534.53813785712,0,1,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10410231913831298,23534.53813785712,6,3,6,6_1,6_0,6_0_0 +19240,2,69.0,0.0,2,111,420.0,1390.0,0.0,85,78,0.0,0.0,716.1842282162656,1810.0,0.0,2638.9206266363067,71,0,0,0,0,0,0,0,0,0,,1,,2,119259,2,1,2,0,1,,310.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,88.4659651274054,420.0,23730.4520053352,6,5,0,1,96.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07627330484868416,15820.301336890132,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +19241,0,45.0,0.0,7,120,650.0,,,85,63,0.0,0.0,,870.0,304.8296295872346,,71,2,2,2,2,1,2,2,2,2,15.0,1,,5,119260,1,2,0,0,2,,500.0,,42,2.0,0.0,4.0,6.0,3.0999999999999996,5,3,108.89761311094732,650.0,18579.035294117646,6,1,5,0,79.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04682697385668097,5993.237191650855,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19242,2,47.0,0.0,7,211,560.0,,,21,34,0.0,0.0,,692.0,182.89777775234077,,20,0,0,0,0,0,0,0,0,2,40.0,1,,5,119261,2,3,0,0,2,,450.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,117.86816918759298,560.0,44126.35443307271,1,1,1,2,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015682238174684695,16971.674781951046,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +19243,2,48.0,0.0,7,111,2412.0,0.0,0.0,46,22,0.0,0.0,4112.943710613412,2412.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,,5,119262,2,1,1,0,1,,736.0,,43,2.0,0.0,8.0,5.0,2.8,4,2,433.538322950429,2412.0,117972.62277261904,1,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020445421516557274,42133.07956164966,9,5,9,9_1,9_4,9_0_0 +19244,2,33.0,0.0,9,111,750.0,0.0,0.0,0,42,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2009.0,6,119263,2,1,0,0,1,,0.0,1238.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1970.59818300085,750.0,65299.23128871925,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011485586969376254,65299.23128871925,10,5,10,10_0,10_4,10_0_0 +19245,2,60.0,0.0,5,111,1040.0,0.0,0.0,54,75,0.0,529.7309108040896,1773.4085651069436,1440.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,119264,2,1,3,0,1,,240.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1431.76828101535,1040.0,31779.21030830066,4,5,0,1,96.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04531264263743757,21186.14020553377,5,3,5,5_1,5_3,5_0_0 +19246,1,40.0,250.0,7,221,420.0,,,0,54,0.0,0.0,,483.0,87.29212119998083,,42,0,0,0,0,0,0,0,0,1,7.0,2,,5,119265,2,1,0,0,2,,400.0,420.0,32,1.0,0.0,4.0,3.0,1.8,2,1,79.63528503375814,420.0,14819.03932514999,0,1,2,3,66.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032593205902374606,8232.799625083328,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +19247,2,43.0,0.0,2,111,1350.0,0.0,0.0,54,46,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,119266,2,1,0,0,1,,312.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,1794.88824158747,1350.0,53040.72019296668,1,4,0,1,75.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02545214309097962,21216.28807718667,5,3,5,5_0,5_3,5_0_1 +19248,2,52.0,0.0,1,221,800.0,0.0,0.0,0,48,0.0,0.0,1364.160434697649,915.0,159.34276092059991,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,119267,1,2,1,0,2,,200.0,416.0,12,1.0,2.0,4.0,1.0,1.0,1,1,3424.76577594287,800.0,16964.627055883437,0,1,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05393575685371005,16964.627055883437,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +19249,2,51.0,0.0,2,111,272.0,71.0,0.0,0,52,512.5758656037883,0.0,463.81454779720065,829.0,0.0,134.79378740372502,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,119268,2,2,0,1,1,952.0,100.0,228.0,32,1.0,0.0,3.0,2.0,1.5,2,2,258.22439752419,272.0,20010.398615949518,0,1,2,3,80.0,8,7,5,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04142846006771879,13340.265743966345,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +19250,1,25.0,400.0,1,400,670.0,0.0,0.0,69,69,0.0,238.3789098618403,1142.484364059281,970.0,166.2707070475825,0.0,70,1,2,2,1,1,2,2,2,2,5.0,1,,1,119269,1,1,1,0,2,,480.0,500.0,43,2.0,0.0,5.0,4.0,2.1,2,2,954.779088538669,670.0,8466.143279067555,1,1,2,3,130.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.11457401180515267,4031.4967995559787,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +19251,2,31.0,0.0,6,111,1320.0,0.0,0.0,21,21,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,119270,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1070.37307519641,1320.0,17791.267420768036,1,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07419370238115484,8472.032105127635,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +19252,2,30.0,0.0,2,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1298.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,2,119271,2,2,5,0,1,,225.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1037.32309092335,0.0,21468.648080056788,0,1,2,3,60.0,9,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.060460257914692436,21468.648080056788,6,3,6,6_1,6_0,6_0_1 +19253,2,44.0,0.0,1,120,1200.0,2000.0,0.0,85,48,0.0,509.8660016489362,2046.2406520464733,3585.0,0.0,3797.008095879578,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,119272,2,1,2,0,1,,300.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,362.906435184878,1200.0,64208.7698421908,6,1,1,2,150.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05583349453370683,30575.60468675752,8,4,8,8_1,8_0,8_1_0 +19254,2,81.0,0.0,2,120,227.0,0.0,0.0,0,71,0.0,577.4066927764576,387.0805233454579,743.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119273,1,3,4,0,2,,106.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,479.437487116982,227.0,8941.487519976745,0,5,0,1,40.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08309579343929258,8941.487519976745,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +19255,2,53.0,0.0,1,120,252.0,0.0,0.0,77,56,0.0,728.3800023556231,429.7105369297594,1270.0,648.4557574855718,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119274,2,1,1,0,2,,201.0,,42,1.0,3.0,7.0,3.0,1.8,2,2,701.984645940954,252.0,9487.222640849293,7,4,0,1,160.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13386425596588614,5270.679244916274,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +19256,2,33.0,0.0,8,111,500.0,0.0,0.0,0,48,0.0,0.0,852.6002716860306,540.0,55.423569015860835,0.0,42,0,0,0,0,0,0,0,0,2,8.0,2,1999.0,6,119275,2,1,0,0,1,408.0,0.0,767.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1856.72695179618,500.0,34325.50597599091,0,1,2,3,68.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015731741882485425,26404.235366146855,7,4,7,7_0,7_2,7_0_0 +19258,2,58.0,0.0,8,111,420.0,900.0,0.0,78,21,0.0,0.0,716.1842282162656,1320.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,119277,2,1,1,0,1,,300.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1120.4184786873,420.0,53644.33330321302,6,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024606513283313352,35762.88886880868,9,5,9,9_1,9_4,9_0_0 +19259,2,71.0,0.0,2,111,600.0,,,74,74,0.0,105.94618216081791,,790.0,152.4148147936173,,12,0,0,0,0,0,0,0,0,0,,1,,2,119278,2,1,0,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,119.50547837472041,600.0,97502.90998822478,5,5,0,1,117.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00810232228038534,65001.939992149855,10,5,10,10_1,10_2,10_0_1 +19260,2,68.0,0.0,5,111,200.0,500.0,0.0,75,74,0.0,185.40581878143135,341.04010867441224,840.0,0.0,949.2520239698945,70,0,0,0,0,0,0,0,0,0,,1,,3,119279,2,1,2,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1016.20674725411,200.0,47584.98169392752,5,5,0,1,150.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017652628415473264,31723.321129285014,8,4,8,8_1,8_3,8_0_0 +19261,2,32.0,0.0,2,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,928.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,119280,2,2,0,0,1,,0.0,299.0,12,1.0,0.0,3.0,1.0,1.0,1,1,695.169663570372,0.0,19149.25633200731,0,1,2,3,45.0,9,3,3,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04846141196871863,19149.25633200731,5,3,5,5_0,5_1,5_0_1 +19262,2,29.0,0.0,2,111,590.0,0.0,0.0,68,62,0.0,0.0,1006.0683205895161,590.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,10.0,2,,2,119281,2,1,0,1,1,840.0,0.0,381.0,43,2.0,0.0,4.0,4.0,2.1,2,2,315.483134416647,590.0,33828.298224523816,1,1,2,3,77.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017441019234372235,16108.713440249436,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +19263,2,81.0,0.0,2,111,236.0,1896.0,0.0,0,77,0.0,0.0,402.42732823580644,2132.0,0.0,3599.56367489384,60,0,0,0,0,0,0,0,0,0,,1,,2,119282,2,2,3,0,1,,180.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1031.79488518387,236.0,20770.020778828337,0,6,0,1,81.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10264794738064141,20770.020778828337,5,3,5,5_1,5_3,5_0_1 +19264,2,54.0,0.0,2,111,480.0,490.0,0.0,0,81,0.0,0.0,818.4962608185893,970.0,0.0,930.2669834904966,71,0,0,0,0,0,0,0,0,0,,2,,2,119283,2,1,0,1,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,367.612301341018,480.0,12666.285122892494,0,4,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07658125413953173,12666.285122892494,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +19266,2,46.0,0.0,1,212,400.0,0.0,0.0,0,46,0.0,198.6490915515336,682.0802173488245,1250.0,969.9124577775647,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,119285,2,1,3,0,1,,300.0,400.0,32,1.0,1.0,9.0,4.0,2.1,2,1,1679.0956548218,400.0,19486.411089518577,0,1,2,3,270.0,3,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06414726622863635,9279.243375961227,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +19267,2,64.0,0.0,6,111,983.0,,,0,72,0.0,0.0,,983.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,119286,1,3,0,0,2,,900.0,,31,0.0,2.0,5.0,16.0,6.299999999999998,5,4,157.1281256393368,983.0,5901.05006399756,0,5,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1665805219985008,936.6746133329463,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19268,2,36.0,0.0,9,112,2400.0,0.0,0.0,52,54,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,119287,2,1,1,0,1,,550.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,990.128347605017,2400.0,45513.75705467766,1,1,1,2,120.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05273130928560293,21673.217645084602,6,3,6,6_1,6_0,6_0_0 +19269,1,62.0,270.0,2,111,0.0,0.0,140.0,0,78,0.0,0.0,88.24456065806413,140.0,0.0,167.54250065905532,71,2,2,2,2,1,2,2,2,0,,1,,2,119288,1,3,3,0,1,,180.0,351.0,11,0.0,3.0,4.0,1.0,1.0,1,1,738.952141471841,0.0,12535.352461981216,0,5,2,3,99.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.011168413526832174,12535.352461981216,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +19270,1,34.0,210.0,1,111,800.0,0.0,0.0,0,56,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,119289,2,1,0,0,1,,0.0,560.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1101.13805931158,800.0,13677.411619722665,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05849059911645925,13677.411619722665,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +19271,2,33.0,0.0,1,112,700.0,3000.0,0.0,54,38,0.0,0.0,1193.6403803604428,3700.0,0.0,5695.512143819367,42,0,0,0,0,0,0,0,0,3,90.0,1,,1,119290,2,1,2,0,1,,394.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,642.22605380408,700.0,71535.47089744828,1,1,1,2,136.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051722592352879605,47690.31393163218,10,5,10,10_1,10_2,10_1_0 +19272,2,55.0,0.0,7,300,1000.0,0.0,0.0,78,47,2109.365702073203,0.0,1705.2005433720612,3035.0,48.49562288887823,0.0,70,1,2,2,2,2,2,2,1,2,15.0,1,,5,119291,2,1,2,0,1,,380.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,767.517149679684,1000.0,63324.155407546255,7,1,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04792799809910016,42216.10360503084,9,5,9,9_1,9_0,9_0_0 +19273,2,70.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,309.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119292,2,1,0,1,1,360.0,0.0,371.0,11,0.0,5.0,1.0,1.0,1.0,1,1,279.323111130356,0.0,20101.26451073465,0,5,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015372167250223744,20101.26451073465,5,3,5,5_0,5_4,5_0_1 +19274,2,51.0,0.0,9,111,0.0,,,0,21,0.0,0.0,,48.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,119293,2,2,0,0,2,,1500.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,92.92539751451767,0.0,135538.54549662588,0,1,0,1,250.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00035414279992546414,135538.54549662588,10,5,10,10_1,10_2,10_0_0 +19275,2,50.0,0.0,7,111,1300.0,0.0,0.0,47,47,0.0,0.0,2216.7607063836795,1370.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,119294,2,2,2,0,1,,392.0,,43,2.0,1.0,7.0,4.0,2.5,4,3,1097.37007994878,1300.0,36433.33044767838,1,1,0,1,110.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03760293070015782,14573.332179071353,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +19276,1,46.0,259.0,1,111,520.0,0.0,0.0,0,85,0.0,0.0,886.7042825534718,520.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,119295,2,2,0,0,1,,0.0,447.0,11,0.0,0.0,2.0,1.0,1.0,1,1,717.181843309633,520.0,9346.010208665582,0,7,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.055638715172583286,9346.010208665582,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +19277,2,79.0,0.0,7,111,264.0,1224.0,0.0,77,78,0.0,0.0,450.1729434502241,1488.0,0.0,2323.7689546783017,70,0,0,0,0,0,0,0,0,0,,2,,5,119296,2,1,0,0,1,,0.0,602.0,41,0.0,3.0,4.0,2.0,1.5,2,2,2205.6293962551,264.0,31509.20626124039,5,5,2,3,82.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0472242933593156,21006.137507493593,5,3,5,5_0,5_2,5_0_0 +19278,2,54.0,0.0,8,111,664.0,639.0,0.0,74,34,0.0,0.0,1132.2531607990486,1303.0,0.0,1213.1440866335251,10,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,119297,2,1,1,0,1,,400.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,1417.59062471372,664.0,103259.13235528805,5,1,1,2,134.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012618738607222778,51629.566177644025,10,5,10,10_1,10_3,10_0_0 +19279,2,91.0,0.0,5,112,1281.0,0.0,0.0,75,74,0.0,0.0,2184.3618960596104,1281.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,119298,2,1,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1042.18024102669,1281.0,64266.54070568413,5,5,0,1,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01993261168150444,42844.360470456086,9,5,9,9_1,9_1,9_0_0 +19280,2,27.0,0.0,2,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1205.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,50.0,2,,2,119299,1,2,0,0,1,,224.0,825.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1431.88541625936,0.0,43590.710095928254,4,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027643504713463187,29060.473397285503,8,4,8,8_0,8_4,8_0_1 +19281,2,41.0,0.0,1,120,510.0,0.0,0.0,68,65,1582.0242765549024,609.190547424703,869.6522771197511,2620.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119300,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,161.600808975906,510.0,22663.79266668153,1,1,0,1,110.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11560289306086495,12590.995925934183,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +19282,2,34.0,0.0,2,111,449.0,0.0,0.0,54,38,0.0,0.0,765.6350439740555,449.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,90.0,2,,2,119301,2,1,0,1,1,912.0,0.0,548.0,43,2.0,0.0,3.0,3.0,1.8,2,2,570.545893299382,449.0,61063.656347583725,1,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0073529825571567965,33924.2535264354,9,5,9,9_0,9_3,9_0_1 +19283,1,37.0,458.0,2,111,0.0,0.0,0.0,81,68,0.0,0.0,0.0,283.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119302,2,1,0,1,1,1103.0,152.0,417.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,318.318778672382,0.0,23319.462729215877,4,1,2,3,68.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01213578560047365,8636.838047857733,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19284,2,64.0,0.0,1,111,2000.0,0.0,0.0,31,31,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,7.0,1,,1,119303,2,1,2,0,1,,0.0,,43,2.0,3.0,8.0,2.0,1.5,2,2,1555.13185685501,2000.0,200960.9592914657,1,1,0,1,165.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.009952181792182234,133973.97286097714,10,5,10,10_1,10_3,10_1_0 +19285,2,39.0,0.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,1235.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,119304,1,1,0,0,1,,278.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,446.331134880437,0.0,26308.599055104085,0,1,1,2,74.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04694282646572166,26308.599055104085,7,4,7,7_0,7_3,7_0_1 +19286,2,59.0,0.0,2,111,360.0,360.0,0.0,0,52,0.0,0.0,613.872195613942,720.0,0.0,683.461457258324,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,119305,2,1,0,1,1,969.0,0.0,344.0,22,2.0,1.0,4.0,2.0,1.5,2,2,247.398630767306,360.0,28514.2549950235,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025250528205126146,19009.50333001567,5,3,5,5_0,5_4,5_0_1 +19287,2,36.0,0.0,5,300,800.0,0.0,0.0,0,48,0.0,0.0,1364.160434697649,860.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,3,119306,2,1,1,0,1,,60.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1180.55681719204,800.0,23742.37140562916,0,1,0,1,118.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036222161017837484,23742.37140562916,6,3,6,6_1,6_0,6_0_0 +19288,2,84.0,0.0,1,111,231.0,100.0,0.0,77,75,0.0,0.0,393.9013255189461,331.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,1,119307,2,1,0,1,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,536.049889872446,231.0,47399.199798236164,5,5,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006983240253189196,31599.466532157443,8,4,8,8_0,8_4,8_1_0 +19289,2,79.0,0.0,2,112,298.0,1274.0,0.0,77,78,0.0,0.0,508.1497619248742,1572.0,0.0,2418.694157075291,71,0,0,0,0,0,0,0,0,0,,1,,2,119308,2,1,2,0,1,,312.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,849.865532047883,298.0,29079.297465978627,5,5,0,1,80.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05405907765960179,19386.198310652417,5,3,5,5_1,5_1,5_0_1 +19290,2,34.0,0.0,1,112,2600.0,0.0,0.0,21,63,0.0,0.0,4433.521412767359,4789.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,119309,2,2,5,0,1,,300.0,1175.0,43,2.0,0.0,5.0,2.0,1.5,2,2,587.750112717379,2600.0,42867.22473021104,1,1,2,3,122.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1117170525999765,28578.149820140694,8,4,8,8_1,8_0,8_1_0 +19291,2,53.0,0.0,9,111,360.0,500.0,0.0,0,54,0.0,0.0,613.872195613942,860.0,0.0,949.2520239698945,44,2,2,2,2,1,1,2,2,3,25.0,2,2008.0,6,119310,2,2,0,0,1,,230.0,637.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1951.07481608327,360.0,24116.11061339851,0,1,2,3,47.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.035660808402587035,24116.11061339851,6,3,6,6_0,6_3,6_0_0 +19292,2,55.0,0.0,8,211,600.0,,,85,81,0.0,0.0,,648.0,66.50828281903301,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,119311,2,1,0,0,2,,180.0,,42,1.0,1.0,5.0,5.0,3.0,5,4,79.6916524312524,600.0,14772.755485893418,6,4,0,1,66.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04386453161150461,4924.25182863114,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19293,2,56.0,0.0,5,222,360.0,0.0,0.0,0,67,3691.3899786281054,0.0,613.872195613942,3956.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119312,2,2,3,0,2,,277.0,,22,1.0,3.0,3.0,2.0,1.5,2,2,1370.10386779834,360.0,23149.903755370204,0,1,0,1,105.0,1,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17088623960617141,15433.269170246802,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +19294,1,61.0,377.0,1,111,445.0,580.0,0.0,0,86,0.0,595.9472746546007,758.8142418005672,1475.0,0.0,1101.1323478050776,71,2,2,2,1,2,2,1,2,0,,1,,1,119313,1,2,3,0,1,,244.0,463.0,31,1.0,0.0,5.0,3.0,2.0,3,3,363.696534096689,445.0,9163.128407967277,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.16097122449113532,4581.564203983638,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +19295,2,38.0,0.0,1,211,898.0,0.0,0.0,52,63,1054.6828510366015,728.3800023556231,1531.270087948111,2496.0,66.50828281903301,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,119315,2,1,1,0,1,,179.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,473.687059283562,898.0,50234.27226175586,1,1,1,2,200.0,1,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049687193376547506,20930.94677573161,5,3,5,5_1,5_1,5_1_0 +19296,2,81.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1123.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,119316,1,1,0,1,2,,0.0,700.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1760.33949638766,0.0,20631.129689566063,0,5,2,3,69.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0544323077261224,20631.129689566063,5,3,5,5_0,5_3,5_0_1 +19297,2,81.0,0.0,2,111,540.0,,,0,77,0.0,0.0,,792.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,119317,2,1,0,0,2,,160.0,,21,1.0,6.0,4.0,2.0,1.5,2,2,112.23872386524643,540.0,8472.457882824176,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09347936702117873,5648.305255216117,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +19298,2,61.0,0.0,6,111,3000.0,,,0,52,0.0,0.0,,3250.0,346.39730634913025,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,119318,2,1,0,0,2,,280.0,,22,2.0,2.0,5.0,2.0,1.5,2,2,53.6901958883443,3000.0,56285.506447828186,0,1,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05774132996409067,37523.67096521879,9,5,9,9_1,9_2,9_0_0 +19299,1,81.0,80.0,2,120,800.0,0.0,0.0,0,72,0.0,0.0,1364.160434697649,900.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119319,2,2,2,0,1,,100.0,300.0,11,0.0,3.0,2.0,1.0,1.0,1,1,938.913549116129,800.0,12264.144076351276,0,5,2,3,50.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0733846564747599,12264.144076351276,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +19300,2,41.0,0.0,9,211,2160.0,0.0,0.0,85,22,0.0,0.0,3683.2331736836522,2160.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,7.0,1,2005.0,6,119320,2,1,1,0,1,,700.0,450.0,42,1.0,0.0,5.0,4.0,2.3,3,2,1207.89723288893,2160.0,62341.818088722765,6,1,2,3,110.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03464769020572934,27105.138299444683,7,4,7,7_1,7_1,7_0_0 +19301,1,58.0,413.0,7,112,260.0,,,81,63,0.0,0.0,,524.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,119321,2,1,0,0,2,,413.0,520.0,43,2.0,0.0,3.0,4.0,2.1,2,2,108.20345536744506,260.0,3417.7387972549423,4,4,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15331774342172258,1627.4946653594961,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +19302,1,30.0,357.0,8,211,90.0,,,0,55,0.0,0.0,,182.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,119322,2,1,0,0,2,,670.0,92.0,32,1.0,0.0,3.0,2.0,1.3,1,1,83.99069584949473,90.0,22539.63615711035,0,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008074664503516677,17338.181659315655,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +19303,2,53.0,0.0,2,221,529.0,0.0,0.0,54,11,2974.2056399232165,0.0,902.0510874438204,3424.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,119323,1,3,3,0,2,,145.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1284.70050138056,529.0,25820.65234180599,4,1,1,2,135.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13260702923667933,17213.76822787066,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +19304,2,45.0,0.0,1,112,356.0,1553.0,0.0,0,37,0.0,0.0,607.0513934404538,1909.0,0.0,2948.376786450492,42,0,0,0,0,0,0,0,0,2,12.0,1,,1,119324,2,1,1,0,1,,234.0,,32,1.0,1.0,4.0,2.0,1.5,2,1,969.533676921775,356.0,35738.84712512719,0,1,1,2,90.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053415265280278845,23825.898083418127,6,3,6,6_1,6_0,6_1_0 +19305,0,40.0,0.0,8,112,156.0,,,0,63,0.0,0.0,,356.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119325,2,2,0,0,2,,180.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,183.43349969883496,156.0,9292.12,0,1,5,0,36.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03831203213045031,9292.12,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +19306,1,39.0,347.0,8,111,650.0,,,0,56,0.0,0.0,,734.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,119326,2,2,0,0,2,,500.0,452.0,32,1.0,0.0,3.0,2.0,1.3,1,1,86.17538347332253,650.0,14591.724349984806,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05030248532626401,11224.403346142159,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +19307,2,46.0,0.0,7,111,420.0,,,63,62,0.0,0.0,,546.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,5.0,2,,5,119327,1,1,0,0,2,,400.0,600.0,43,2.0,0.0,4.0,5.0,3.0,5,3,92.15935675298077,420.0,63082.71789900514,1,1,2,3,108.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008655302405868768,21027.572633001713,5,3,5,5_0,5_3,5_0_0 +19308,2,85.0,0.0,2,212,1709.0,0.0,0.0,78,77,0.0,0.0,2914.1877286228523,1839.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119328,2,1,2,0,1,,230.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,722.741244591407,1709.0,23678.15545925636,5,5,0,1,70.0,1,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07766652276459697,15785.436972837573,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +19309,2,38.0,0.0,8,111,444.0,,,55,38,0.0,0.0,,444.0,0.0,,31,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,119329,2,3,0,0,2,,358.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,115.09834128046352,444.0,111692.50178796994,4,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003975199703583163,62051.38988220552,10,5,10,10_0,10_2,10_0_0 +19310,2,41.0,0.0,6,111,913.0,0.0,0.0,34,54,0.0,0.0,1556.848096098692,7350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,70.0,1,,4,119330,2,1,2,0,2,,270.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,972.07800207473,913.0,62083.55514062018,1,1,1,2,100.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11838883877303967,34490.86396701121,9,5,9,9_1,9_2,9_0_0 +19311,1,36.0,85.0,1,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,3448.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,119331,2,2,3,0,1,,409.0,650.0,43,2.0,1.0,4.0,4.0,2.1,2,2,1024.51538712925,0.0,40028.17907359549,1,1,2,3,110.0,6,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.08613931684627808,19061.037654093092,5,3,5,5_1,5_0,5_1_0 +19312,1,43.0,376.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,530.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,119332,1,3,0,1,1,,188.0,343.0,31,0.0,0.0,4.0,3.0,1.6,1,1,333.817349109876,0.0,10217.157281781128,0,6,2,3,67.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05187352855427577,6385.723301113205,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19313,0,60.0,0.0,2,111,0.0,0.0,0.0,22,78,0.0,0.0,0.0,628.0,0.0,0.0,71,1,2,2,1,1,2,2,2,0,,2,,2,119333,1,1,0,1,1,726.0,230.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,362.5701956995,0.0,11523.732372154343,4,5,5,0,70.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05449623261969216,5761.866186077172,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +19314,1,48.0,467.0,8,111,480.0,,,85,85,0.0,0.0,,732.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,119334,2,1,0,0,1,,300.0,680.0,41,0.0,0.0,4.0,5.0,2.5999999999999996,3,2,135.0519602828918,480.0,17147.96330275229,6,6,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04268728519395141,6595.3705010585745,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +19315,1,54.0,150.0,1,112,550.0,100.0,0.0,56,78,1054.6828510366015,662.163638505112,937.8602988546337,2150.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,119335,1,2,2,0,1,,360.0,,42,1.0,3.0,9.0,2.0,1.5,2,2,1068.49624141227,550.0,27141.590959859277,1,5,0,1,140.0,5,0,4,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07921422156791458,18094.39397323952,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +19316,2,36.0,0.0,7,112,1220.0,0.0,0.0,43,48,0.0,0.0,2080.344662913915,1292.0,99.7624242285495,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,119336,1,2,3,0,2,,300.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,559.392941100538,1220.0,64577.82303579021,1,1,1,2,50.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020006868291053262,30751.34430275724,8,4,8,8_1,8_1,8_0_0 +19317,2,66.0,0.0,5,112,1432.0,0.0,0.0,90,75,0.0,0.0,2441.8471781087915,1532.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,119337,1,2,2,0,1,,303.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,790.79633746154,1432.0,19035.65547552689,5,5,0,1,90.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08048054882951676,12690.436983684594,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +19318,2,49.0,0.0,1,300,750.0,0.0,0.0,0,35,0.0,0.0,1278.9004075290459,780.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,119338,2,1,2,0,1,,110.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1053.36133793042,750.0,11820.631400699625,0,1,0,1,55.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06598632285867863,11820.631400699625,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +19319,2,30.0,0.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,918.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,119339,2,1,0,1,1,594.0,0.0,358.0,12,1.0,0.0,3.0,1.0,1.0,1,1,517.781725321749,0.0,13642.663108272247,0,4,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06728891512708904,13642.663108272247,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +19320,2,53.0,0.0,9,111,1000.0,,,55,53,0.0,0.0,,1126.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,119340,2,1,0,0,2,,480.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,77.34488430930091,1000.0,43295.5564941019,4,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026007287841499246,17318.222597640757,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +19321,1,32.0,321.0,2,111,500.0,0.0,0.0,0,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,2,1,2,2,1,2,2,2,2,5.0,2,,2,119341,2,2,0,1,1,981.0,600.0,306.0,32,1.0,0.0,3.0,3.0,1.8,2,1,219.617575876248,500.0,13685.0,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03653635367190355,7602.777777777777,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19322,2,34.0,0.0,2,111,230.0,835.0,0.0,0,42,0.0,0.0,392.1961249755741,1065.0,0.0,1585.2508800297237,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,119342,2,2,0,0,1,,120.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2857.93200802072,230.0,26449.334027849236,0,1,1,2,60.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04026566411383485,26449.334027849236,7,4,7,7_0,7_2,7_0_1 +19323,2,53.0,0.0,8,111,550.0,650.0,0.0,52,65,0.0,0.0,937.8602988546337,1200.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,119343,2,1,2,0,1,,400.0,521.0,43,2.0,3.0,4.0,2.0,1.5,2,2,383.878305395753,550.0,40090.34850510652,1,1,2,3,86.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029932391329727394,26726.89900340435,7,4,7,7_1,7_3,7_0_0 +19324,2,46.0,0.0,1,112,2184.3,0.0,0.0,21,54,0.0,0.0,3724.6695468875937,2184.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,119344,2,1,1,0,1,,189.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,332.836974628658,2184.3,46788.852296077865,1,1,1,2,140.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046677785259183986,22280.405855275174,6,3,6,6_1,6_0,6_1_0 +19325,2,83.0,0.0,5,111,250.0,0.0,0.0,0,72,2320.3022722805235,0.0,426.3001358430153,2810.0,498.81212114274757,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119345,1,1,2,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1698.49251129867,250.0,9709.16872159869,0,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.28941715615148067,9709.16872159869,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +19326,2,67.0,0.0,5,111,440.0,,,0,86,0.0,0.0,,465.0,34.63973063491302,,71,0,0,0,0,0,0,0,0,0,,1,,3,119346,2,1,0,0,2,,120.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,112.80396833320184,440.0,9447.12,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04922134999872977,9447.12,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +19327,0,59.0,0.0,7,111,0.0,,,78,52,0.0,0.0,,230.0,318.68552184119983,,70,0,0,0,0,0,0,0,0,2,20.0,1,,5,119347,2,2,0,0,2,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,122.84975015334693,0.0,35981.84884456552,6,1,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0063921117837372554,23987.899229710343,6,3,6,6_1,6_3,6_0_0 +19328,1,45.0,50.0,8,112,1290.0,0.0,0.0,56,67,0.0,0.0,2199.7087009499587,3002.0,133.01656563806603,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,119348,2,1,1,0,1,,684.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,729.461508766125,1290.0,30093.617824841545,1,1,1,2,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09975537063948231,14330.294202305497,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +19329,2,70.0,0.0,2,111,600.0,2000.0,0.0,78,77,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,0,,1,,2,119349,2,1,2,0,1,,260.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,476.842886443193,600.0,21640.288498282272,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1201462725511436,14426.858998854848,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +19330,1,25.0,414.0,9,211,500.0,,,0,54,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,119350,2,3,0,0,2,,500.0,436.0,32,1.0,0.0,4.0,3.0,1.6,1,1,229.21479927741126,500.0,12265.80001209178,0,4,2,3,87.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04076374957255896,7666.125007557363,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19331,2,41.0,0.0,9,112,1200.0,,,0,46,0.0,0.0,,1270.0,96.99124577775646,,31,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,119351,2,2,0,0,2,,480.0,,32,1.0,0.0,4.0,4.0,2.3,3,1,85.71509250639642,1200.0,45418.22059853512,0,1,1,2,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027962346020243726,19747.052434145706,5,3,5,5_1,5_2,5_0_0 +19332,2,32.0,0.0,2,120,802.0,0.0,0.0,46,56,1582.0242765549024,0.0,1367.570835784393,2302.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,2,119352,2,1,2,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,671.831242469559,802.0,49624.97669920044,1,1,1,2,96.0,0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046387931100773494,27569.431499555798,7,4,7,7_1,7_1,7_0_1 +19333,2,52.0,0.0,9,400,1200.0,,,0,85,0.0,0.0,,1650.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,119353,2,3,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,56.807603806511096,1200.0,15709.315662650602,0,6,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10503321948790725,15709.315662650602,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +19334,2,57.0,0.0,1,111,230.0,450.0,0.0,0,31,0.0,0.0,392.1961249755741,680.0,0.0,854.326821572905,12,0,0,0,0,0,0,0,0,0,,2,,1,119354,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,936.53604448762,230.0,31345.316813205805,0,1,0,1,81.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021693830821755022,31345.316813205805,8,4,8,8_0,8_4,8_1_0 +19335,2,63.0,0.0,7,112,876.0,0.0,0.0,77,74,0.0,1191.8945493092015,1493.7556759939255,1846.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,119355,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,597.782345431025,876.0,41260.601364362,5,5,0,1,80.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0447400168431487,20630.300682181,5,3,5,5_1,5_0,5_0_0 +19336,2,39.0,0.0,9,111,0.0,,,46,37,0.0,0.0,,321.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,2004.0,6,119356,2,1,0,0,1,,329.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,164.56174998666938,0.0,41067.765213317485,1,1,0,1,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007816349351678525,22815.425118509713,6,3,6,6_0,6_2,6_0_0 +19337,2,73.0,0.0,7,111,180.0,0.0,0.0,78,86,0.0,0.0,306.936097806971,531.0,0.0,0.0,10,1,2,2,2,1,2,2,2,0,,2,,5,119357,1,1,0,1,1,,0.0,828.0,41,0.0,4.0,3.0,2.0,1.5,2,2,2144.45975637375,180.0,55539.43754723242,5,5,2,3,72.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009560773811373612,37026.29169815494,9,5,9,9_0,9_2,9_0_0 +19338,2,74.0,0.0,2,112,600.0,0.0,0.0,77,72,2636.7071275915036,0.0,1023.1203260232367,3100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119358,2,1,2,0,1,,200.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,709.533507092162,600.0,36263.64307784359,5,5,0,1,80.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08548506815339914,24175.762051895726,7,4,7,7_1,7_0,7_0_1 +19339,2,29.0,0.0,1,111,0.0,0.0,106.0,0,38,0.0,0.0,66.81373878396285,106.0,0.0,126.85360764185617,12,0,0,0,0,0,0,0,0,3,15.0,2,,1,119359,2,2,0,0,1,,0.0,685.0,12,1.0,0.0,3.0,1.0,1.0,1,1,699.928603551458,0.0,31502.04419344932,0,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0033648610023232117,31502.04419344932,8,4,8,8_0,8_3,8_1_0 +19340,2,30.0,0.0,9,112,900.0,0.0,0.0,48,46,0.0,662.163638505112,1534.680489034855,1400.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,15.0,1,2006.0,6,119360,2,1,1,0,1,,145.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1450.41148489894,900.0,39314.87009336517,1,1,1,2,100.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.03560993579974377,21841.594496313985,6,3,6,6_1,6_0,6_0_0 +19341,2,53.0,0.0,2,111,800.0,1200.0,0.0,34,43,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,33,2,2,2,2,1,2,2,2,3,40.0,1,,2,119361,2,1,2,0,1,,350.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,320.167735164865,800.0,61792.76795562141,1,1,1,2,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03236624715430078,30896.383977810707,8,4,8,8_1,8_3,8_0_1 +19342,2,31.0,0.0,9,111,360.0,,,42,42,0.0,0.0,,400.0,55.423569015860835,,20,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,119362,1,1,0,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,182.60139866253553,360.0,68016.56182941861,1,1,1,2,129.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005880920605825029,37786.97879412145,9,5,9,9_1,9_2,9_0_0 +19343,2,88.0,0.0,1,111,720.0,2130.0,0.0,86,72,0.0,0.0,1227.744391227884,2850.0,0.0,4043.8136221117506,20,0,0,0,0,0,0,0,0,0,,2,,1,119363,2,1,0,0,2,,0.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,851.565323149294,720.0,96104.04347240228,6,5,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029655359931014976,64069.36231493485,10,5,10,10_0,10_4,10_1_0 +19344,2,69.0,0.0,1,111,0.0,291.0,0.0,77,78,0.0,0.0,0.0,792.0,0.0,552.4646779504786,44,2,2,2,2,1,2,2,2,0,,2,,1,119364,2,3,0,0,1,,0.0,201.0,41,0.0,2.0,3.0,2.0,1.5,2,2,261.958203915728,0.0,24033.753519580914,5,5,2,3,47.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03295365409130693,16022.502346387277,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +19345,0,79.0,0.0,2,111,420.0,1150.0,0.0,0,86,0.0,0.0,716.1842282162656,1570.0,0.0,2183.2796551307574,71,0,0,0,0,0,0,0,0,0,,1,,2,119365,2,1,3,0,1,,240.0,,11,0.0,8.0,3.0,1.0,1.0,1,1,239.971749359155,420.0,18552.88026524791,0,7,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08462297915762575,18552.88026524791,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +19346,2,50.0,0.0,7,400,764.0,0.0,0.0,68,56,0.0,595.9472746546007,1302.7732151362547,1244.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119366,2,1,1,0,1,,300.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,2375.79727067773,764.0,32932.91912457249,1,1,1,2,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03777375443987912,16466.459562286243,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +19347,2,85.0,0.0,2,111,1050.0,0.0,0.0,77,86,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,1,,2,119367,2,1,2,0,2,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1482.01338035904,1050.0,20592.197435353017,6,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.050990187098601876,13728.131623568677,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +19348,2,68.0,0.0,6,111,292.0,900.0,0.0,77,78,0.0,0.0,497.91855866464186,1192.0,0.0,1708.65364314581,60,0,0,0,0,0,0,0,0,0,,1,,4,119368,2,2,2,0,1,,320.0,504.0,41,0.0,1.0,3.0,2.0,1.5,2,2,576.79795479045,292.0,34874.0360747922,5,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03418015618965327,23249.3573831948,6,3,6,6_1,6_4,6_0_0 +19349,2,58.0,0.0,5,111,860.0,0.0,0.0,78,78,0.0,0.0,1466.4724672999725,980.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119369,2,1,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1416.80812293239,860.0,42524.93942445188,7,7,0,1,83.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023045300317029945,28349.95961630125,8,4,8,8_1,8_3,8_0_0 +19350,2,88.0,0.0,5,111,264.0,264.0,0.0,0,78,0.0,0.0,450.1729434502241,528.0,0.0,501.2050686561043,70,0,0,0,0,0,0,0,0,0,,2,,3,119370,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1895.70329385672,264.0,17489.59205165316,0,5,0,1,66.0,6,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030189383402461474,17489.59205165316,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +19351,1,61.0,242.0,2,111,0.0,0.0,1500.0,0,77,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,70,0,0,0,0,0,0,0,0,0,,2,,2,119371,1,1,0,0,1,,360.0,241.0,11,0.0,3.0,4.0,1.0,1.0,1,1,382.56114306407,0.0,9506.230386267216,0,5,2,3,80.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.15779125258387522,9506.230386267216,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19352,2,61.0,0.0,1,111,900.0,890.0,0.0,78,48,0.0,79.45963662061344,1534.680489034855,1850.0,0.0,1689.6686026664122,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,119372,2,1,1,0,1,,500.0,462.0,42,1.0,0.0,6.0,2.0,1.5,2,2,382.327529963345,900.0,35464.56055055448,5,1,2,3,53.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05216475183339261,23643.04036703632,6,3,6,6_1,6_3,6_1_0 +19354,2,31.0,0.0,2,111,300.0,0.0,0.0,65,47,1582.0242765549024,0.0,511.56016301161833,1800.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,119374,2,2,2,0,1,,280.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,853.098808374654,300.0,45729.62170817243,1,1,1,2,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03936179510705024,25405.34539342913,7,4,7,7_1,7_4,7_0_1 +19355,2,57.0,0.0,1,112,1900.0,0.0,0.0,0,63,0.0,595.9472746546007,3239.8810324069163,2378.0,38.79649831110259,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,119375,2,1,1,0,1,,160.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,625.554830552252,1900.0,27002.93820934038,0,1,0,1,85.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08806449067003547,27002.93820934038,7,4,7,7_1,7_0,7_1_0 +19356,2,40.0,0.0,7,111,390.0,,,85,69,0.0,198.6490915515336,,678.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,119376,2,1,0,0,2,,251.0,,42,1.0,2.0,4.0,5.0,2.5999999999999996,3,2,64.8420393998452,390.0,13296.645532987328,6,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050990304157388124,5114.0944357643575,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19357,2,45.0,0.0,1,120,400.0,0.0,0.0,34,34,2109.365702073203,158.91927324122688,682.0802173488245,2655.0,187.05454542853033,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,119377,2,2,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,2219.37506018844,400.0,71289.97576309464,1,1,0,1,150.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03724226262641597,30995.641636128108,8,4,8,8_1,8_0,8_1_0 +19359,2,73.0,0.0,5,112,240.0,0.0,0.0,0,74,3015.3382711136437,0.0,409.2481304092947,3174.0,103.91919190473907,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,119379,2,1,2,0,1,,130.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,758.021706227009,240.0,81636.13567288949,0,5,0,1,170.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03887984130848629,81636.13567288949,10,5,10,10_1,10_0,10_0_0 +19360,2,51.0,0.0,2,111,0.0,0.0,278.0,0,85,0.0,0.0,175.2284847352988,278.0,0.0,332.69153702298127,50,0,0,0,0,0,0,0,0,0,,2,,2,119380,2,3,0,1,1,327.0,160.0,331.0,11,0.0,2.0,4.0,1.0,1.0,1,1,367.21854751173,0.0,22185.96047052302,0,7,2,3,71.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012530446917966872,22185.96047052302,6,3,6,6_0,6_3,6_0_1 +19361,2,55.0,0.0,1,120,0.0,0.0,0.0,52,53,0.0,0.0,0.0,1135.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,119381,2,1,1,0,1,,266.0,720.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1999.40864889617,0.0,58653.09692832626,1,1,2,3,65.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019351066856486084,39102.06461888417,9,5,9,9_1,9_0,9_1_0 +19362,2,56.0,0.0,6,112,1000.0,0.0,0.0,74,11,0.0,595.9472746546007,1705.2005433720612,1550.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,119382,2,1,2,0,1,,100.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,965.801048456005,1000.0,11270.106711576615,5,1,0,1,120.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1375319719384596,7513.40447438441,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +19364,2,69.0,0.0,1,221,519.0,0.0,0.0,72,74,0.0,264.8654554020448,884.9990820100998,1719.0,1385.589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119384,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1608.33346742696,519.0,42496.121509680095,5,5,0,1,140.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04045075030219953,28330.747673120062,8,4,8,8_1,8_1,8_1_0 +19365,2,39.0,0.0,5,112,517.0,1572.0,0.0,54,54,0.0,0.0,881.5886809233556,2089.0,0.0,2984.448363361348,43,0,0,0,0,0,0,0,0,2,20.0,1,,3,119385,2,2,2,0,2,,600.0,1100.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1190.8432409893,517.0,9750.390479685579,1,1,3,4,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21424782980254184,5416.883599825322,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +19366,2,39.0,0.0,2,111,540.0,,,52,63,0.0,0.0,,620.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,2,119386,1,2,0,0,2,,250.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,108.95980538704521,540.0,17303.605504587154,4,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03583068279241798,7523.30674112485,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +19367,0,69.0,0.0,2,112,550.0,0.0,0.0,0,78,1687.4925616585624,0.0,937.8602988546337,2150.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119387,2,2,2,0,2,,400.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1111.31845759985,550.0,12685.038602959807,0,5,0,1,110.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16949100962911845,12685.038602959807,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +19369,2,83.0,0.0,1,111,550.0,1880.0,0.0,0,75,0.0,0.0,937.8602988546337,2430.0,0.0,3569.1876101268035,33,0,0,0,0,0,0,0,0,0,,1,,1,119389,2,1,2,0,2,,550.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,441.048066220885,550.0,20715.619364572787,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11730279250813572,20715.619364572787,5,3,5,5_1,5_4,5_1_0 +19370,2,58.0,0.0,1,111,1500.0,1500.0,0.0,52,62,0.0,0.0,2557.8008150580918,3000.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,119390,2,1,3,0,1,,500.0,,43,3.0,2.0,5.0,4.0,2.5,4,4,279.728287968829,1500.0,58608.62955584843,1,1,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05118700134664105,23443.45182233937,6,3,6,6_1,6_3,6_1_0 +19371,0,79.0,0.0,2,112,523.0,584.0,0.0,75,75,0.0,317.83854648245375,891.819884183588,1347.0,0.0,1108.7263639968369,50,0,0,0,0,0,0,0,0,0,,1,,2,119391,2,2,2,0,2,,435.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,922.224458086484,523.0,55429.669490656335,5,5,0,1,100.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02430106497797287,36953.11299377089,9,5,9,9_1,9_1,9_0_1 +19372,2,68.0,0.0,2,111,600.0,300.0,0.0,77,74,0.0,0.0,1023.1203260232367,2742.0,0.0,569.5512143819367,12,0,0,0,0,0,0,0,0,0,,2,,2,119392,2,3,0,1,1,1500.0,0.0,1300.0,41,0.0,2.0,5.0,2.0,1.5,2,2,938.09377284678,600.0,75620.76171019867,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036259883370497674,50413.84114013245,10,5,10,10_0,10_4,10_0_1 +19373,2,50.0,0.0,6,111,576.0,,,90,56,0.0,0.0,,851.0,381.03703698404325,,50,0,0,0,0,0,0,0,0,2,30.0,2,,4,119393,2,1,0,0,2,,460.0,390.0,43,2.0,0.0,3.0,3.0,2.0,3,2,81.8324038282249,576.0,51105.20033296828,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016651925722929114,25552.60016648414,7,4,7,7_0,7_2,7_0_0 +19374,2,63.0,0.0,6,111,150.0,0.0,0.0,38,74,0.0,0.0,255.78008150580916,150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,119394,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,806.28938089265,150.0,89064.75942839099,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016841678006282788,59376.50628559399,10,5,10,10_1,10_4,10_0_0 +19375,2,33.0,0.0,2,400,690.0,0.0,0.0,62,62,1634.7584191067324,0.0,1176.5883749267223,2352.0,155.18599324441035,0.0,50,2,2,2,2,1,2,2,2,2,5.0,1,,2,119395,1,3,2,0,2,,320.0,412.0,43,2.0,2.0,5.0,2.0,1.5,2,2,1021.6835814425,690.0,34133.735816105895,1,1,2,3,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.06890543750239657,22755.82387740393,6,3,6,6_1,6_0,6_0_1 +19376,2,74.0,0.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,613.872195613942,390.0,41.567676761895626,0.0,60,2,2,2,2,1,2,2,2,0,,2,,2,119396,1,3,0,1,1,720.0,0.0,277.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2222.64599428243,360.0,21334.884745310796,0,5,2,3,50.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01827992063963309,21334.884745310796,6,3,6,6_0,6_2,6_0_1 +19377,1,66.0,56.0,9,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,807.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119397,2,1,1,0,1,,141.0,407.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1156.32206184675,0.0,12112.310269677357,0,5,2,3,90.0,9,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06662643063398808,12112.310269677357,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +19378,2,51.0,0.0,1,111,600.0,180.0,0.0,63,22,0.0,0.0,1023.1203260232367,780.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,1,,1,119398,2,3,2,0,1,,0.0,200.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,595.806171292636,600.0,30517.168903375343,1,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025559382735327336,11737.372655144363,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +19379,2,67.0,0.0,2,400,653.0,0.0,0.0,78,75,0.0,1191.8945493092015,1113.495954821956,1636.0,115.00390570791124,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119399,2,1,1,0,1,,231.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1063.47485065753,653.0,23077.38312971793,5,5,0,1,200.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07089192005887525,15384.92208647862,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +19380,2,45.0,0.0,1,111,400.0,1200.0,0.0,0,22,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,2,10.0,2,,1,119400,1,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,431.612940908306,400.0,29936.806273239283,0,1,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05344591488472339,29936.806273239283,8,4,8,8_0,8_3,8_1_0 +19381,2,62.0,0.0,6,111,417.0,710.0,0.0,77,77,0.0,0.0,711.0686265861495,2145.0,0.0,1347.9378740372501,70,0,0,0,0,0,0,0,0,0,,1,,4,119401,2,1,1,0,1,,617.0,,41,2.0,0.0,4.0,4.0,2.5,4,4,608.206824967592,417.0,81893.48208892735,5,5,0,1,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026192560693301146,32757.392835570943,8,4,8,8_1,8_4,8_0_0 +19382,2,57.0,0.0,1,111,480.0,1500.0,0.0,38,46,0.0,0.0,818.4962608185893,1980.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,119402,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,906.99465435347,480.0,104632.72374546574,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018923334202946267,52316.36187273287,10,5,10,10_1,10_4,10_1_0 +19383,2,50.0,0.0,2,111,908.0,,,67,54,0.0,0.0,,1048.0,193.98249155551292,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,119403,2,2,0,0,2,,600.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,37.01082680477082,908.0,33603.435903322876,4,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03118728700883735,16801.717951661438,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +19384,2,31.0,0.0,2,300,730.0,0.0,0.0,42,47,2003.897416969543,0.0,1244.7963966616046,2630.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,119404,2,1,2,0,1,,384.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1845.14283234859,730.0,46115.29320982869,1,1,1,2,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0570309720906092,25619.607338793718,7,4,7,7_1,7_0,7_0_1 +19385,2,67.0,0.0,2,111,350.0,1330.0,0.0,77,75,0.0,0.0,596.8201901802214,1680.0,0.0,2525.0103837599195,60,0,0,0,0,0,0,0,0,0,,1,,2,119405,2,2,3,0,1,,296.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1140.64286544046,350.0,38822.824964029314,5,5,0,1,115.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04327351246480847,25881.883309352877,7,4,7,7_1,7_2,7_0_1 +19386,2,54.0,0.0,6,112,400.0,,,0,64,0.0,0.0,,532.0,182.89777775234077,,70,0,0,0,0,0,0,0,0,0,,1,,4,119406,1,1,0,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,104.28827805729017,400.0,19999.600000000002,0,4,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02660053201064021,19999.600000000002,5,3,5,5_1,5_1,5_0_0 +19387,1,75.0,141.0,2,111,160.0,1194.0,0.0,0,78,0.0,0.0,272.8320869395298,1354.0,0.0,2266.813833240108,70,1,2,2,1,2,2,2,2,0,,2,,2,119407,1,3,0,0,1,,156.0,198.0,11,0.0,4.0,2.0,1.0,1.0,1,1,914.755412161158,160.0,9400.957619099476,0,5,2,3,50.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.14402788044157788,9400.957619099476,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19388,2,76.0,0.0,6,111,274.0,,,77,77,0.0,0.0,,466.0,266.03313127613205,,71,0,0,0,0,0,0,0,0,0,,1,,4,119408,2,1,0,0,2,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,79.44928369981572,274.0,24432.103675571587,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01907326549477316,16288.069117047724,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +19389,2,83.0,0.0,7,112,1500.0,0.0,0.0,0,77,0.0,0.0,2557.8008150580918,1625.0,173.19865317456512,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119409,2,1,2,0,1,,220.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1401.56491909239,1500.0,14739.471470715727,0,5,0,1,110.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11024818652612735,14739.471470715727,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +19390,2,70.0,0.0,1,112,380.0,0.0,0.0,0,78,0.0,0.0,647.9762064813832,470.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119410,2,2,2,0,2,,110.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1046.35251800835,380.0,9870.540431106749,0,5,0,1,68.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04761644038444008,9870.540431106749,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +19391,2,45.0,0.0,9,112,1050.0,0.0,0.0,0,52,0.0,0.0,1790.4605705406643,1076.0,36.025319860309544,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,119411,2,1,1,0,1,,264.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1801.92179261341,1050.0,18834.287294824764,0,1,1,2,62.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05712984957469883,18834.287294824764,5,3,5,5_1,5_0,5_0_0 +19393,2,60.0,0.0,1,111,220.0,820.0,0.0,56,75,0.0,0.0,375.14411954185346,1040.0,0.0,1556.773319310627,41,0,0,0,0,0,0,0,0,0,,2,,1,119413,2,1,0,0,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,435.025684586817,220.0,34009.30740972683,4,5,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030579864137502393,22672.871606484554,6,3,6,6_0,6_4,6_1_0 +19394,1,23.0,420.0,6,111,0.0,0.0,0.0,54,67,0.0,0.0,0.0,583.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,4,119414,2,1,0,1,1,563.0,319.0,406.0,43,2.0,0.0,3.0,4.0,2.1,2,2,309.891781185577,0.0,17198.384433683557,4,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03389853286789989,8189.706873182646,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +19395,2,64.0,0.0,2,400,240.0,,,0,77,0.0,0.0,,504.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,119415,1,3,0,0,2,,280.0,,31,0.0,2.0,5.0,2.0,1.5,2,2,91.99469183317682,240.0,7696.676419965576,0,6,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06548281004676226,5131.1176133103845,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +19396,1,39.0,359.0,2,111,460.0,510.0,0.0,85,81,0.0,0.0,784.3922499511482,970.0,0.0,968.2370644492923,20,2,2,2,2,1,2,2,2,0,,2,,2,119416,2,1,0,1,1,416.0,0.0,325.0,42,1.0,1.0,3.0,4.0,2.1,2,2,337.469289570237,460.0,18255.592782722513,7,4,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05313440168965803,8693.139420344054,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19397,2,31.0,0.0,7,222,320.0,746.0,0.0,0,63,0.0,0.0,545.6641738790596,1066.0,0.0,1416.2840197630826,44,0,0,0,0,0,0,0,0,2,2.0,1,,5,119417,2,1,1,0,1,,110.0,315.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1712.45519394455,320.0,17556.376794340125,0,1,2,3,45.0,1,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06071867860250414,17556.376794340125,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +19398,1,21.0,378.0,2,111,200.0,0.0,0.0,0,81,0.0,0.0,341.04010867441224,320.0,166.2707070475825,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,119418,2,1,0,1,1,650.0,0.0,360.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1801.47516472308,200.0,6547.615035251789,0,4,2,3,52.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.048872757221850686,5036.626950193684,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19399,1,57.0,307.0,5,111,400.0,120.0,0.0,0,78,0.0,0.0,682.0802173488245,520.0,0.0,227.8204857527747,60,2,2,2,1,2,2,2,2,0,,2,,3,119419,1,2,0,1,1,528.0,0.0,315.0,11,0.0,3.0,2.0,1.0,1.0,1,1,866.863061327875,400.0,9852.042658588276,0,7,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.05278093264717067,9852.042658588276,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +19400,2,34.0,0.0,9,112,1835.0,0.0,0.0,52,62,0.0,66.2163638505112,3129.042997087732,1885.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,119420,2,1,1,0,1,,344.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1596.34718006252,1835.0,53949.87989294308,1,1,1,2,147.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03493983682151937,22479.116622059617,6,3,6,6_1,6_0,6_0_0 +19401,2,33.0,0.0,1,111,700.0,700.0,0.0,56,62,0.0,0.0,1193.6403803604428,1400.0,0.0,1328.9528335578523,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,119421,2,1,4,0,1,,250.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,288.444326990998,700.0,31943.758492943234,1,1,0,1,110.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04382702806588264,17746.532496079573,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +19402,1,77.0,200.0,2,221,0.0,0.0,0.0,77,78,0.0,0.0,0.0,1714.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119422,1,2,5,0,2,,765.0,350.0,41,0.0,5.0,3.0,2.0,1.5,2,2,235.561003978792,0.0,16314.380444100185,5,5,2,3,80.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10506068593121712,10876.253629400124,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +19403,2,40.0,0.0,2,120,520.0,1880.0,0.0,0,46,0.0,0.0,886.7042825534718,2400.0,0.0,3569.1876101268035,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,119423,2,2,1,0,1,,180.0,,32,1.0,0.0,6.0,2.0,1.5,2,1,1619.48605946354,520.0,17396.25552965343,0,1,0,1,90.0,0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13796072355392752,11597.50368643562,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +19404,0,76.0,0.0,2,211,512.0,0.0,0.0,78,77,1054.6828510366015,0.0,873.0626782064953,1572.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119424,1,2,1,0,1,,380.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2235.96277026288,512.0,35094.58286720005,5,5,0,1,71.0,1,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044793237917901456,23396.388578133367,6,3,6,6_1,6_1,6_0_1 +19405,1,25.0,300.0,2,111,420.0,1200.0,0.0,63,55,0.0,0.0,716.1842282162656,1714.0,130.24538718727297,2278.2048575277468,43,0,0,0,0,0,0,0,0,3,10.0,1,,2,119425,2,3,4,0,1,,280.0,600.0,43,2.0,0.0,4.0,4.0,2.1,2,2,429.3640825564,420.0,19046.32216974267,4,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08999112714384781,9069.677223686986,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +19406,2,46.0,0.0,2,111,950.0,0.0,0.0,65,56,0.0,0.0,1619.9405162034582,1081.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,119426,1,1,0,1,2,807.0,0.0,635.0,43,2.0,1.0,4.0,4.0,2.5,4,4,1729.03087871924,950.0,33743.971201194996,1,1,2,3,73.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03203535213904278,13497.588480477998,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +19407,1,34.0,446.0,5,111,320.0,0.0,0.0,85,63,0.0,0.0,545.6641738790596,937.0,465.55797973323104,0.0,42,0,0,0,0,0,0,0,0,2,5.0,2,,3,119427,1,1,0,1,2,57.0,0.0,407.0,42,1.0,0.0,4.0,5.0,2.4,2,2,276.859287749786,320.0,15667.066228127773,6,1,2,3,90.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05980698532554632,6527.944261719906,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19408,2,51.0,0.0,8,111,500.0,900.0,0.0,52,48,0.0,0.0,852.6002716860306,1400.0,0.0,1708.65364314581,41,0,0,0,0,0,0,0,0,3,45.0,2,2003.0,6,119428,2,1,0,0,1,,0.0,650.0,43,2.0,1.0,4.0,3.0,2.0,3,2,1168.5616002964,500.0,74260.92172355819,1,1,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01885244577506867,37130.460861779095,9,5,9,9_0,9_4,9_0_0 +19409,1,58.0,260.0,1,112,1200.0,0.0,0.0,0,55,0.0,0.0,2046.2406520464733,1300.0,138.5589225396521,0.0,60,2,2,2,2,1,2,2,2,0,,8,,1,119429,1,1,0,0,2,,250.0,420.0,32,1.0,3.0,4.0,2.0,1.5,2,1,986.291650166225,1200.0,12135.630925848645,0,4,2,3,100.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,1,1,1,1,0,1,0.1071225721961457,8090.42061723243,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +19410,1,37.0,200.0,1,221,0.0,0.0,0.0,55,56,0.0,0.0,0.0,2019.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119430,1,2,5,0,1,,353.0,646.0,43,2.0,0.0,3.0,4.0,2.1,2,2,824.922936595335,0.0,25791.127492141728,4,4,2,3,98.0,1,2,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07828273504580856,12281.489281972252,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +19411,0,95.0,0.0,5,112,1000.0,0.0,0.0,0,71,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,119431,2,3,1,0,1,,0.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,751.857331327241,1000.0,18814.0,0,5,5,0,58.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05315190815350271,18814.0,5,3,5,5_1,5_0,5_0_0 +19412,2,34.0,0.0,9,111,752.0,0.0,0.0,46,47,0.0,0.0,1282.31080861579,812.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,119432,2,1,1,0,1,,584.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1497.59937605599,752.0,52576.23916745017,1,1,1,2,135.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015444238934889571,25036.304365452463,7,4,7,7_1,7_3,7_0_0 +19413,2,51.0,0.0,9,112,1200.0,,,35,31,0.0,0.0,,1288.0,121.93185183489385,,10,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119433,2,1,0,0,2,,1049.0,,43,2.0,0.0,7.0,4.0,2.5,4,2,84.27200571410603,1200.0,54661.90778439007,1,1,0,1,220.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023563026835441286,21864.763113756027,6,3,6,6_1,6_2,6_0_0 +19414,2,70.0,0.0,6,112,1000.0,0.0,0.0,0,78,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,119434,2,2,2,0,2,,150.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,772.468999376972,1000.0,16246.499051652361,0,5,0,1,28.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06524482577015213,16246.499051652361,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +19415,2,46.0,0.0,5,111,600.0,,,0,46,0.0,0.0,,646.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,119435,2,1,0,0,2,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,203.34033121222714,600.0,16855.890052356022,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03832488216246437,16855.890052356022,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +19416,2,37.0,0.0,1,111,487.0,1530.0,0.0,55,46,0.0,0.0,830.4326646221938,2017.0,0.0,2904.7111933478773,50,2,2,2,2,1,2,2,1,2,20.0,1,,1,119436,2,2,4,0,1,,450.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1392.48377474248,487.0,58954.45819294697,1,1,1,2,78.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03421284940654928,32752.476773859427,8,4,8,8_1,8_3,8_1_0 +19417,0,66.0,0.0,2,111,468.0,,,0,77,0.0,0.0,,612.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,2,119437,2,2,0,0,2,,268.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,87.69514282113784,468.0,5110.0,0,5,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11976516634050881,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +19418,1,32.0,253.0,6,111,360.0,,,0,46,0.0,0.0,,480.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,0,,2,,4,119438,2,1,0,0,2,,800.0,526.0,22,3.0,0.0,4.0,3.0,2.0,3,3,77.1712989977263,360.0,45678.11389829224,0,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010508314793136537,22839.05694914612,6,3,6,6_0,6_3,6_0_0 +19419,2,75.0,0.0,2,112,350.0,1900.0,0.0,77,72,0.0,0.0,596.8201901802214,2250.0,0.0,3607.1576910855993,50,0,0,0,0,0,0,0,0,0,,1,,2,119439,2,2,2,0,1,,350.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1172.2774238968,350.0,29933.67409865344,5,5,0,1,140.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07516618215941677,19955.782732435626,5,3,5,5_1,5_0,5_0_1 +19420,2,35.0,0.0,2,111,511.0,0.0,0.0,0,43,0.0,0.0,871.3574776631233,511.0,0.0,0.0,33,2,2,2,2,1,2,2,2,2,44.0,2,,2,119440,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1809.85240686458,511.0,17431.538973288276,0,1,2,3,65.0,7,5,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.029314680750967867,17431.538973288276,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +19421,1,87.0,270.0,9,111,530.0,820.0,0.0,0,86,0.0,0.0,903.7562879871924,1350.0,0.0,1556.773319310627,71,2,2,2,2,1,2,2,2,0,,2,2009.0,6,119441,2,1,0,0,1,,280.0,365.0,11,0.0,4.0,3.0,1.0,1.0,1,1,143.092713867148,530.0,11939.089074757043,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,1,0,0,1,0.11307395325949288,11939.089074757043,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +19422,1,77.0,223.0,5,111,280.0,0.0,0.0,0,78,0.0,509.8660016489362,477.4561521441771,725.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,119442,2,1,0,1,1,,0.0,383.0,11,0.0,5.0,3.0,1.0,1.0,1,1,1200.94428125907,280.0,9863.603280062529,0,5,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07350255068200634,9863.603280062529,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +19423,2,70.0,0.0,9,111,1300.0,0.0,0.0,77,74,0.0,198.6490915515336,2216.7607063836795,1490.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,119443,2,1,1,0,1,,318.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,934.022383495364,1300.0,66452.5214446917,5,5,0,1,170.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022422023538115468,44301.680963127794,10,5,10,10_1,10_2,10_0_0 +19424,2,31.0,0.0,1,111,300.0,1500.0,0.0,55,67,0.0,0.0,511.56016301161833,1800.0,0.0,2847.7560719096837,50,2,2,2,1,1,2,2,2,2,20.0,2,,1,119444,1,2,0,0,1,,450.0,850.0,43,2.0,0.0,3.0,3.0,1.8,2,2,735.206928690068,300.0,55577.0,4,1,3,4,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.032387498425607716,30876.11111111111,8,4,8,8_0,8_4,8_1_0 +19425,0,46.0,0.0,5,111,1600.0,0.0,0.0,0,54,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,,3,119445,1,3,3,0,1,,430.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,448.961244640731,1600.0,41781.213817555836,0,1,5,0,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03829472276671158,41781.213817555836,9,5,9,9_1,9_4,9_0_0 +19426,2,69.0,0.0,2,111,260.0,,,0,77,0.0,0.0,,306.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,0,,2,,2,119446,2,1,0,0,2,,400.0,103.0,11,0.0,1.0,2.0,1.0,1.0,1,1,147.2030123224934,260.0,20030.434561414222,0,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015276752936227624,20030.434561414222,5,3,5,5_0,5_2,5_0_1 +19427,2,57.0,0.0,6,212,700.0,0.0,0.0,56,37,0.0,595.9472746546007,1193.6403803604428,1150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,119447,2,1,1,0,1,,276.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,840.540119949299,700.0,59737.2560636679,1,1,1,2,140.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019250967918150296,29868.62803183395,8,4,8,8_1,8_0,8_0_0 +19428,2,46.0,0.0,5,111,1100.0,0.0,0.0,35,38,0.0,715.1367295855209,1875.7205977092674,1640.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,1,,3,119448,2,1,2,0,1,,1200.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,470.884147358253,1100.0,98140.25835746368,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01671077728394095,54522.365754146485,10,5,10,10_1,10_4,10_0_0 +19429,2,47.0,0.0,1,111,477.0,709.0,0.0,0,55,0.0,0.0,813.3806591884731,1186.0,0.0,1346.0393699893104,50,0,0,0,0,0,0,0,0,0,,2,,1,119449,2,1,0,0,1,,240.0,510.0,32,2.0,1.0,3.0,2.0,1.5,2,2,1616.02180211911,477.0,33928.41019203468,0,1,2,3,57.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0349559555925917,22618.94012802312,6,3,6,6_0,6_2,6_1_0 +19430,2,32.0,0.0,5,111,2000.0,0.0,0.0,35,48,0.0,0.0,3410.4010867441225,2100.0,138.5589225396521,0.0,44,2,2,2,1,2,2,2,2,0,,1,,3,119450,2,1,3,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,464.091654234142,2000.0,54407.71914914265,1,1,1,2,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.03859746434588577,25908.437690067927,7,4,7,7_1,7_3,7_0_0 +19432,1,31.0,280.0,1,111,0.0,0.0,1032.0,81,35,0.0,0.0,650.4884757080156,1032.0,0.0,1235.0275762867507,20,1,2,2,2,1,2,2,2,0,,2,,1,119452,2,3,0,0,1,,0.0,521.0,43,2.0,0.0,2.0,2.0,1.5,2,2,748.513615692055,0.0,8828.441578016587,4,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.11689492317304895,5885.627718677725,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +19433,2,70.0,0.0,7,111,150.0,700.0,0.0,0,72,0.0,0.0,255.78008150580916,850.0,0.0,1328.9528335578523,70,0,0,0,0,0,0,0,0,0,,2,,5,119453,2,2,0,0,1,,170.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,2056.87528236107,150.0,28972.70645714229,0,5,0,1,34.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029337956440395295,28972.70645714229,8,4,8,8_0,8_3,8_0_0 +19434,2,81.0,0.0,1,111,1400.0,,,0,77,0.0,0.0,,1560.0,221.69427606344334,,70,0,0,0,0,0,0,0,0,0,,1,,1,119454,2,2,0,0,2,,600.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,125.5630312885297,1400.0,12119.26269983102,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12872070179828277,12119.26269983102,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +19435,2,63.0,0.0,1,111,680.0,2000.0,0.0,74,74,0.0,0.0,1159.5363694930015,2680.0,0.0,3797.008095879578,31,0,0,0,0,0,0,0,0,0,,1,,1,119455,2,1,4,0,1,,500.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1023.45153870731,680.0,82033.58985353903,5,5,0,1,150.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032669544326718036,54689.05990235935,10,5,10,10_1,10_3,10_1_0 +19436,2,44.0,0.0,2,111,1093.0,1028.0,0.0,54,54,0.0,496.622728878834,1863.784193905663,2496.0,0.0,1951.6621612821032,42,0,0,0,0,0,0,0,0,0,,1,,2,119456,2,3,1,0,1,,515.0,,43,2.0,1.0,9.0,7.0,3.8,6,6,1261.66896516815,1093.0,88879.98362201196,1,1,0,1,167.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028082813455670375,23389.469374213677,6,3,6,6_1,6_3,6_0_1 +19437,2,74.0,0.0,5,112,380.0,1214.0,0.0,0,75,0.0,0.0,647.9762064813832,1594.0,0.0,2304.783914198904,41,0,0,0,0,0,0,0,0,0,,1,,3,119457,2,2,3,0,1,,336.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1940.430755774,380.0,28653.28261404907,0,5,0,1,90.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05563062429777039,28653.28261404907,8,4,8,8_1,8_0,8_0_0 +19438,2,64.0,0.0,2,221,1066.0,0.0,0.0,77,75,0.0,0.0,1817.7437792346173,1146.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119458,2,2,1,0,1,,338.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2763.35080007927,1066.0,30260.980974497048,5,5,0,1,77.0,1,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03787055022987559,20173.987316331364,5,3,5,5_1,5_1,5_0_1 +19439,2,45.0,0.0,7,120,420.0,,,85,42,0.0,0.0,,546.0,174.58424239996165,,20,0,0,0,0,0,0,0,0,0,,1,,5,119459,2,1,0,0,2,,200.0,,42,1.0,1.0,5.0,3.0,1.8,2,2,108.95492737270453,420.0,24086.438629687662,5,1,0,1,90.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02266835742694769,13381.354794270923,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +19440,2,81.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1648.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119460,2,1,2,0,2,,218.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,633.674954928774,0.0,29383.711330697635,0,5,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056085495172909214,29383.711330697635,8,4,8,8_1,8_4,8_0_1 +19441,1,65.0,162.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,76.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119461,2,2,0,1,1,1884.0,0.0,284.0,11,0.0,1.0,3.0,1.0,1.0,1,1,234.175641679745,0.0,10502.81324371088,0,5,2,3,52.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007236156469363964,10502.81324371088,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +19442,2,35.0,0.0,1,111,800.0,0.0,0.0,0,37,0.0,0.0,1364.160434697649,800.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,25.0,2,,1,119462,1,3,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1151.86006065914,800.0,39490.12473835771,0,1,1,2,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.020258229248461726,39490.12473835771,9,5,9,9_0,9_4,9_1_0 +19443,2,74.0,0.0,1,120,600.0,0.0,0.0,71,71,0.0,794.5963662061343,1023.1203260232367,1530.0,457.2444443808519,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,119463,1,2,2,0,1,,140.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1627.31378253248,600.0,25108.147051143627,5,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.060936396337152705,16738.76470076242,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19444,2,76.0,0.0,5,111,390.0,1250.0,0.0,0,75,0.0,0.0,665.0282119151038,1640.0,0.0,2373.130059924736,10,0,0,0,0,0,0,0,0,0,,2,,3,119464,2,1,0,0,1,,208.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,348.656803183695,390.0,27314.40561314481,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06004157744552072,27314.40561314481,7,4,7,7_0,7_4,7_0_0 +19445,2,53.0,0.0,1,300,1600.0,0.0,0.0,0,46,0.0,0.0,2728.320869395298,2150.0,762.0740739680865,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,119465,2,3,3,0,1,,240.0,,22,1.0,0.0,8.0,2.0,1.5,2,2,1470.82993635533,1600.0,48249.6824624532,0,1,0,1,270.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04455987874475818,32166.4549749688,8,4,8,8_1,8_0,8_1_0 +19446,2,68.0,0.0,7,400,468.0,,,0,71,0.0,0.0,,618.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,119466,2,2,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,63.71646347283737,468.0,16677.65127285762,0,7,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03705557754440978,16677.65127285762,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +19447,2,22.0,0.0,1,111,0.0,0.0,0.0,54,67,0.0,0.0,0.0,267.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,1,119467,2,1,0,1,1,540.0,0.0,298.0,43,2.0,0.0,2.0,2.0,1.5,2,2,325.997017498716,0.0,14893.746596119252,1,1,2,3,39.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017926986891906038,9929.164397412835,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +19448,2,56.0,0.0,1,400,1116.0,0.0,0.0,67,62,1054.6828510366015,1377.300368090633,1903.0038064032203,3261.0,145.4868686666347,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,119468,2,1,3,0,1,,290.0,,43,2.0,2.0,5.0,6.0,2.8999999999999995,4,3,1152.40949043755,1116.0,50412.25080186595,1,1,0,1,200.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0646866574717449,17383.534759264123,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19449,2,28.0,0.0,1,112,1100.0,0.0,0.0,0,63,0.0,0.0,1875.7205977092674,1160.0,83.13535352379125,0.0,20,2,2,2,2,1,2,2,2,2,60.0,1,,1,119469,2,3,1,0,1,,0.0,390.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1816.94088644155,1100.0,23142.62946929853,0,1,3,4,50.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0501239498968291,23142.62946929853,6,3,6,6_1,6_1,6_1_0 +19450,2,42.0,0.0,2,111,500.0,0.0,0.0,55,53,0.0,993.245457757668,852.6002716860306,1367.0,162.11393937139295,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,119470,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,583.878928179091,500.0,45304.065028766614,1,1,1,2,81.0,6,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03017389276507526,25168.92501598145,7,4,7,7_1,7_2,7_0_1 +19451,1,47.0,253.0,8,111,480.0,,,0,85,0.0,0.0,,480.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,119471,2,1,0,0,2,,200.0,302.0,11,0.0,2.0,1.0,1.0,1.0,1,1,128.56312487605393,480.0,5249.141428384951,0,7,3,4,26.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09144352586965557,5249.141428384951,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19452,0,35.0,0.0,2,111,330.0,,,56,21,0.0,0.0,,606.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,0,,1,,2,119472,2,3,0,0,2,,168.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,133.06907281453923,330.0,28253.999521766236,1,1,5,0,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021448290870577508,11772.499800735932,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +19453,2,84.0,0.0,2,111,350.0,,,77,77,0.0,0.0,,626.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,0,,1,,2,119473,2,1,0,0,2,,240.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,84.66932140342483,350.0,25450.027579908266,5,5,0,1,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02459722285307859,16966.685053272176,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +19454,2,61.0,0.0,7,111,729.0,0.0,0.0,0,34,0.0,0.0,1243.0911961182326,729.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,5,119474,2,1,0,0,1,,0.0,1020.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2099.12236676775,729.0,91054.12232248252,0,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008006227300924736,91054.12232248252,10,5,10,10_0,10_3,10_0_0 +19455,2,43.0,0.0,2,111,450.0,,,55,52,0.0,0.0,,546.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,119475,2,2,0,0,2,,450.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,66.59780425822993,450.0,27743.194147235325,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019680502436105043,12062.258324884924,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +19456,2,68.0,0.0,2,111,370.0,90.0,0.0,77,78,0.0,0.0,630.9242010476627,460.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,119476,2,2,0,1,1,1100.0,0.0,587.0,41,0.0,1.0,4.0,2.0,1.5,2,2,268.494299973632,370.0,40715.70317462934,5,5,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011297852281392844,27143.802116419563,7,4,7,7_0,7_4,7_0_1 +19457,2,55.0,0.0,1,112,591.0,3612.0,0.0,0,35,0.0,0.0,1007.7735211328882,4203.0,0.0,6857.3966211585175,10,2,2,2,2,2,1,2,1,0,,1,,1,119477,2,2,3,0,1,,175.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1339.42114984578,591.0,44789.44650937046,0,1,0,1,126.0,7,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09383906986036733,34453.42039182343,9,5,9,9_1,9_0,9_1_0 +19458,2,89.0,0.0,5,111,0.0,0.0,0.0,75,75,0.0,0.0,0.0,446.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119478,2,2,3,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1065.75961586978,0.0,50806.46811308863,5,5,0,1,90.0,3,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00877840984748756,33870.97874205909,9,5,9,9_1,9_2,9_0_0 +19459,2,69.0,0.0,6,111,1000.0,0.0,0.0,77,77,0.0,0.0,1705.2005433720612,1080.0,110.84713803172167,0.0,71,2,2,1,1,1,2,2,1,0,,1,,4,119479,2,2,2,0,1,,200.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,137.433547364488,1000.0,46492.95877520584,5,5,0,1,88.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.023229323933153325,23246.47938760292,6,3,6,6_1,6_3,6_0_0 +19460,1,39.0,244.0,2,111,381.0,260.0,0.0,0,63,0.0,0.0,649.6814070247553,641.0,0.0,493.61105246434516,71,0,0,0,0,0,0,0,0,0,,2,,2,119480,2,2,0,1,1,848.0,274.0,263.0,32,1.0,0.0,3.0,2.0,1.5,2,1,279.699935581274,381.0,11213.083926305191,0,4,2,3,67.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05716536184093425,7475.389284203461,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19461,2,31.0,0.0,9,300,2000.0,0.0,0.0,43,54,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,119481,2,2,1,0,1,,180.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,783.436147221692,2000.0,55341.615743696006,1,1,1,2,135.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03613916892601426,30745.342079831113,8,4,8,8_1,8_0,8_0_0 +19462,2,82.0,0.0,1,112,1300.0,0.0,0.0,0,71,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119482,2,1,1,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,909.818449941735,1300.0,12890.925071659793,0,5,0,1,83.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10084613732322442,12890.925071659793,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +19463,2,74.0,0.0,1,111,1200.0,,,78,72,0.0,0.0,,1400.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,1,119483,2,1,0,0,2,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,99.9172112993484,1200.0,22761.03070625486,5,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061508638078295465,15174.020470836573,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +19464,0,28.0,0.0,1,111,0.0,0.0,0.0,55,52,0.0,0.0,0.0,2720.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,119484,1,3,2,0,1,,465.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1003.32925823656,0.0,39439.74061563099,1,1,5,0,60.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06896597080869223,26293.16041042066,7,4,7,7_1,7_4,7_1_0 +19465,2,64.0,0.0,6,111,500.0,,,46,31,0.0,0.0,,784.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,119485,2,1,0,0,2,,400.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,127.84001267352525,500.0,244284.33442901724,1,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003209374853416195,162856.22295267816,10,5,10,10_1,10_2,10_0_0 +19466,0,82.0,0.0,2,111,500.0,770.0,0.0,0,77,0.0,0.0,852.6002716860306,1270.0,0.0,1461.8481169136376,70,0,0,0,0,0,0,0,0,0,,1,,2,119486,1,2,2,0,2,,255.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,1882.18586429277,500.0,23113.93671591717,0,5,0,1,90.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05494520538015611,15409.29114394478,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +19467,1,45.0,253.0,7,111,270.0,,,0,53,0.0,0.0,,406.0,188.44013465392686,,71,2,2,2,2,1,2,2,2,0,,2,,5,119487,1,3,0,0,1,,200.0,258.0,12,1.0,3.0,1.0,1.0,1.0,1,1,132.4409926073468,270.0,5183.360000000001,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07832757130509939,5183.360000000001,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19468,2,76.0,0.0,2,111,250.0,667.0,0.0,77,75,0.0,0.0,426.3001358430153,917.0,0.0,1266.3021999758394,50,0,0,0,0,0,0,0,0,0,,2,,2,119488,2,3,0,1,1,640.0,0.0,375.0,41,2.0,0.0,4.0,4.0,2.5,4,4,788.697133878255,250.0,60389.641554033464,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015184723346627531,24155.856621613384,6,3,6,6_0,6_4,6_0_1 +19469,2,48.0,0.0,2,111,500.0,1000.0,0.0,37,38,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,3,40.0,1,,2,119489,2,1,1,0,1,,400.0,,43,2.0,0.0,9.0,5.0,2.8,4,3,490.012298137546,500.0,129132.77879145427,1,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011615950760437494,46118.84956837653,10,5,10,10_1,10_4,10_0_1 +19470,2,41.0,0.0,2,111,360.0,400.0,0.0,0,65,0.0,0.0,613.872195613942,760.0,0.0,759.4016191759156,20,0,0,0,0,0,0,0,0,2,30.0,8,,2,119490,1,2,0,1,2,,150.0,447.0,32,1.0,1.0,1.0,2.0,1.3,1,1,453.794949179541,360.0,8605.07148835207,0,1,2,3,57.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08832001001139216,6619.285760270824,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +19471,2,51.0,0.0,2,120,1600.0,0.0,0.0,0,85,0.0,794.5963662061343,2728.320869395298,2850.0,900.6329965077387,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119491,2,1,2,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,657.757152757616,1600.0,24256.086264982307,0,7,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11749628397860906,24256.086264982307,7,4,7,7_1,7_0,7_0_1 +19472,1,44.0,450.0,1,112,560.0,0.0,0.0,0,52,369.1389978628105,0.0,954.9123042883542,1290.0,277.1178450793042,0.0,31,1,2,2,2,1,2,2,2,2,20.0,2,,1,119492,2,3,0,1,1,350.0,350.0,530.0,32,1.0,1.0,2.0,4.0,1.9,1,1,2395.14602082226,560.0,16731.156737888377,0,1,2,3,65.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.07710166249765285,8805.871967309673,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +19473,1,43.0,540.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,1664.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,119493,1,3,4,0,2,,255.0,1355.0,42,3.0,0.0,11.0,10.0,4.499999999999999,5,5,1295.72138143596,0.0,38089.74743970182,7,1,2,3,300.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04368629649314961,8464.38831993374,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +19474,2,38.0,0.0,8,111,750.0,1003.0,0.0,65,52,0.0,0.0,1278.9004075290459,1753.0,0.0,1904.1995600836083,31,0,0,0,0,0,0,0,0,2,25.0,8,2003.0,6,119494,2,1,0,0,1,,732.0,423.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1468.0021810144,750.0,39628.8853788802,1,1,2,3,63.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.044235410187293406,18870.897799466762,5,3,5,5_0,5_3,5_0_0 +19475,2,59.0,0.0,6,111,635.0,1460.0,0.0,56,48,0.0,0.0,1082.8023450412588,2095.0,0.0,2771.8159099920917,50,0,0,0,0,0,0,0,0,0,,1,,4,119495,2,2,2,0,1,,413.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,2720.46512202069,635.0,42106.92791053995,1,1,1,2,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049754282821368984,21053.463955269974,5,3,5,5_1,5_3,5_0_0 +19477,2,38.0,0.0,7,211,600.0,,,0,42,0.0,0.0,,600.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,5,119497,2,1,0,0,2,,240.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,48.03746947839463,600.0,38170.34082577996,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01571901080838043,38170.34082577996,9,5,9,9_0,9_2,9_0_0 +19478,1,24.0,367.0,2,111,480.0,104.0,0.0,84,63,0.0,0.0,818.4962608185893,584.0,0.0,197.44442098573805,50,0,0,0,0,0,0,0,0,0,,2,,2,119498,2,3,0,3,1,617.0,0.0,360.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1642.96009395507,480.0,5405.367201457547,3,4,2,3,52.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.10804076360298437,3002.981778587526,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19479,2,65.0,0.0,6,111,600.0,700.0,0.0,77,78,0.0,0.0,1023.1203260232367,1300.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,4,119499,2,1,1,0,2,,230.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,261.49884329109,600.0,23016.070905725748,5,5,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05648227298763651,15344.047270483832,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +19480,2,40.0,0.0,8,112,0.0,1500.0,0.0,46,37,0.0,0.0,0.0,2589.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,3,90.0,1,2001.0,6,119500,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,560.790343593071,0.0,88214.04422535645,1,1,1,2,96.0,10,3,1,0,1,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029349068198097777,49007.80234742025,10,5,10,10_1,10_1,10_0_0 +19481,1,67.0,254.0,5,221,360.0,2200.0,0.0,0,86,0.0,0.0,613.872195613942,2560.0,0.0,4176.708905467536,71,2,2,2,2,1,2,2,2,0,,8,,3,119501,1,1,0,0,1,,240.0,437.0,11,0.0,3.0,4.0,1.0,1.0,1,1,675.285103693534,360.0,10237.386666666665,0,5,2,3,80.0,1,2,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.2500638183703133,10237.386666666665,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +19482,2,73.0,0.0,1,111,270.0,0.0,0.0,77,78,0.0,1191.8945493092015,460.40414671045653,1310.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119502,1,3,3,0,1,,190.0,428.0,41,0.0,5.0,4.0,2.0,1.5,2,2,196.354986410525,270.0,22333.554490952698,6,5,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05865613557083713,14889.0363273018,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +19483,2,39.0,0.0,1,111,700.0,200.0,0.0,55,46,0.0,0.0,1193.6403803604428,900.0,0.0,379.7008095879578,43,0,0,0,0,0,0,0,0,1,5.0,2,,1,119503,2,1,0,0,1,,600.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1651.984493753,700.0,37566.86508873974,1,1,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.023957282511437594,25044.576725826493,7,4,7,7_0,7_3,7_1_0 +19484,2,33.0,0.0,9,112,1450.0,0.0,0.0,52,48,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,119504,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,250.809904013424,1450.0,42968.69775591674,1,1,1,2,120.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03374549557533045,23871.49875328708,6,3,6,6_1,6_0,6_0_0 +19485,1,20.0,414.0,8,111,1968.0,,,0,52,0.0,0.0,,2220.0,349.1684847999233,,50,2,2,1,2,1,2,2,1,0,,2,2003.0,6,119505,2,1,0,0,2,,800.0,607.0,32,2.0,1.0,4.0,3.0,1.8,2,2,120.02118584952613,1968.0,28334.180718351246,0,4,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07835059788978366,15741.211510195137,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +19486,2,79.0,0.0,2,111,466.0,89.0,0.0,74,75,0.0,0.0,794.6234532113805,555.0,0.0,168.96686026664122,50,0,0,0,0,0,0,0,0,0,,2,,2,119506,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,829.825410885447,466.0,70881.13404689857,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007830010163674635,47254.08936459905,10,5,10,10_0,10_4,10_0_1 +19487,2,82.0,0.0,2,211,1200.0,0.0,0.0,86,78,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119507,2,2,3,0,1,,216.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1085.72770717172,1200.0,19459.576581748326,5,5,0,1,80.0,3,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0647496102860629,12973.051054498885,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +19488,1,31.0,220.0,1,111,0.0,0.0,950.0,0,68,0.0,0.0,598.8023758940067,950.0,0.0,1136.8955401864469,50,0,0,0,0,0,0,0,0,0,,2,,1,119508,1,3,0,0,2,,0.0,400.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1925.31223597601,0.0,14831.803921195158,0,4,2,3,71.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.06405154794707185,14831.803921195158,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +19489,2,54.0,0.0,5,111,480.0,0.0,0.0,0,37,0.0,0.0,818.4962608185893,658.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,2,,3,119509,2,2,0,1,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,673.083804035015,480.0,51382.76335954801,0,1,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012805850775204165,51382.76335954801,10,5,10,10_0,10_4,10_0_0 +19490,1,54.0,349.0,7,111,670.0,,,0,54,0.0,0.0,,712.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,0,,2,,5,119510,2,1,0,0,2,,300.0,344.0,32,1.0,0.0,2.0,2.0,1.5,2,1,142.97373819629283,670.0,10077.466101694916,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07065268122115038,6718.310734463277,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19492,0,51.0,0.0,7,111,288.0,907.0,0.0,45,33,0.0,0.0,491.09775649115363,1195.0,0.0,1721.9431714813886,20,0,0,0,0,0,0,0,0,1,1.0,8,,5,119512,1,1,0,0,2,,0.0,,43,2.0,1.0,6.0,5.0,3.0,5,3,1879.44112990302,288.0,85048.86120289133,1,1,5,0,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014050746630801149,28349.620400963777,8,4,8,8_0,8_3,8_0_0 +19493,2,66.0,0.0,5,120,2530.0,0.0,0.0,0,74,0.0,0.0,4314.157374731315,2590.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,119513,2,2,3,0,1,,400.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1105.15108615486,2530.0,45291.92289139287,0,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.057184589097942565,45291.92289139287,10,5,10,10_1,10_0,10_0_0 +19494,2,72.0,0.0,5,111,605.0,1677.0,0.0,77,74,0.0,0.0,1031.646328740097,2282.0,0.0,3183.791288395026,44,0,0,0,0,0,0,0,0,0,,1,,3,119514,2,1,1,0,1,,430.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1712.84614964979,605.0,44477.51239560304,5,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0513068262384565,29651.674930402023,8,4,8,8_1,8_3,8_0_0 +19495,2,53.0,0.0,1,112,550.0,0.0,0.0,52,42,0.0,860.8127300566456,937.8602988546337,1260.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,119515,2,2,3,0,1,,120.0,,43,2.0,3.0,7.0,4.0,2.1,2,2,62.8627267611011,550.0,29420.0347967672,1,1,1,2,97.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04282795750256741,14009.54037941295,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +19496,2,55.0,0.0,6,112,1750.0,0.0,0.0,56,45,0.0,0.0,2984.100950901107,1840.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,4,119516,2,1,2,0,1,,950.0,,42,1.0,2.0,6.0,3.0,2.0,3,3,1216.91136948936,1750.0,70308.91331858729,6,1,0,1,120.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026170223847188468,35154.456659293646,9,5,9,9_1,9_1,9_0_0 +19497,2,63.0,0.0,1,111,542.0,1400.0,0.0,78,77,0.0,0.0,924.2186945076571,1942.0,0.0,2657.9056671157045,60,2,2,1,2,1,2,2,2,0,,1,,1,119517,1,2,3,0,2,,270.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1080.40883607514,542.0,39865.64975561569,5,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04871361715925474,26577.099837077127,7,4,7,7_1,7_3,7_1_0 +19498,2,29.0,0.0,7,111,1200.0,0.0,0.0,43,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,1,2,2,1,2,2,2,2,2,20.0,2,,5,119518,2,2,0,1,1,816.0,0.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2596.19532128137,1200.0,50318.34880623929,1,1,2,3,70.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02384815933886933,33545.5658708262,9,5,9,9_0,9_3,9_0_0 +19499,2,54.0,0.0,1,400,1150.0,0.0,0.0,0,22,0.0,529.7309108040896,1960.9806248778702,1615.0,90.06329965077386,0.0,41,2,2,1,2,1,2,2,2,0,,1,,1,119519,1,2,3,0,1,,0.0,,32,1.0,1.0,3.0,2.0,1.5,2,1,1409.03898321768,1150.0,27155.657211367285,0,1,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.05947195412836355,18103.771474244855,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19500,1,54.0,42.0,2,111,550.0,624.0,0.0,77,63,0.0,0.0,937.8602988546337,1174.0,0.0,1184.6665259144283,71,0,0,0,0,0,0,0,0,0,,2,,2,119520,2,2,0,1,1,57.0,600.0,337.0,42,4.0,5.0,5.0,5.0,3.0,5,5,419.559091148812,550.0,32567.732512075516,6,1,2,3,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03604795020852933,10855.910837358506,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +19501,1,38.0,406.0,7,222,900.0,0.0,0.0,0,85,0.0,0.0,1534.680489034855,1140.0,332.541414095165,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,119521,1,1,2,0,1,,316.0,433.0,31,0.0,0.0,4.0,3.0,1.8,2,1,1321.75998184416,900.0,13910.438297973076,0,7,2,3,100.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08195284545175778,7728.021276651709,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +19502,2,53.0,0.0,1,111,500.0,870.0,0.0,54,64,0.0,1721.6254601132912,852.6002716860306,2670.0,0.0,1651.6985217076165,50,0,0,0,0,0,0,0,0,0,,1,,1,119522,2,1,1,0,1,,240.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,1617.14131587525,500.0,72542.32194544422,1,1,0,1,100.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03680610060990308,36271.16097272211,9,5,9,9_1,9_3,9_1_0 +19503,1,56.0,357.0,9,112,600.0,,,0,85,0.0,0.0,,850.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,2,2009.0,6,119523,2,2,0,0,2,,709.0,517.0,31,1.0,4.0,4.0,3.0,2.0,3,3,252.07959041809238,600.0,9447.12,0,7,2,3,74.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08997451075036624,4723.56,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +19504,2,72.0,0.0,1,112,1898.0,0.0,0.0,0,74,0.0,72.83800023556232,3236.4706313201723,1953.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,1,119524,2,2,1,0,1,,182.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,762.927714083469,1898.0,32207.40719802393,0,5,0,1,200.0,9,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06063822486523614,32207.40719802393,8,4,8,8_1,8_1,8_1_0 +19505,2,56.0,0.0,1,112,600.0,0.0,0.0,0,21,0.0,0.0,1023.1203260232367,1100.0,692.7946126982605,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,119525,1,2,2,0,2,,120.0,,22,1.0,0.0,10.0,2.0,1.5,2,2,910.108250287355,600.0,51872.100215686376,0,1,0,1,140.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021206004681247795,34581.40014379092,9,5,9,9_1,9_0,9_1_0 +19506,2,62.0,0.0,2,111,297.0,470.0,0.0,0,72,0.0,198.6490915515336,506.4445613815022,917.0,0.0,892.2969025317009,30,0,0,0,0,0,0,0,0,0,,1,,2,119526,2,2,1,0,1,,248.0,,21,0.0,0.0,3.0,2.0,1.5,2,2,305.155676079395,297.0,30081.127964503594,0,7,0,1,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030484229217803287,20054.085309669063,5,3,5,5_1,5_2,5_0_1 +19507,2,52.0,0.0,7,112,530.0,0.0,0.0,21,45,0.0,0.0,903.7562879871924,2255.0,2390.1414138089985,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,119527,2,2,2,0,1,,235.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,1079.74974693727,530.0,40283.88029386469,1,1,0,1,100.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055977725669675384,20141.940146932346,5,3,5,5_1,5_0,5_0_0 +19508,2,24.0,0.0,5,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,291.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,3,119528,2,1,0,1,1,564.0,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,1,1,689.981409480945,0.0,19836.90810260795,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014669624847520584,19836.90810260795,5,3,5,5_0,5_4,5_0_0 +19509,2,33.0,0.0,9,400,0.0,,,52,81,0.0,0.0,,300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,119529,2,1,0,0,2,,0.0,,43,2.0,0.0,5.0,10.0,4.499999999999999,4,2,5.787927237187181,0.0,44178.87716638009,4,4,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00679057547954837,9817.528259195577,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +19510,2,65.0,0.0,2,111,250.0,900.0,0.0,0,77,0.0,0.0,426.3001358430153,1150.0,0.0,1708.65364314581,71,2,2,2,1,2,2,2,2,0,,1,,2,119530,1,3,1,0,2,,280.0,255.0,21,1.0,2.0,3.0,2.0,1.5,2,2,273.336951424608,250.0,36392.960196389795,0,5,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.03159951797804238,24261.973464259863,7,4,7,7_1,7_3,7_0_1 +19511,2,49.0,0.0,7,111,400.0,,,52,45,0.0,0.0,,444.0,60.965925917446924,,41,0,0,0,0,0,0,0,0,2,7.0,1,,5,119531,2,1,0,0,2,,180.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,106.38232912705764,400.0,70398.4125490855,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006306960397585951,35199.20627454275,9,5,9,9_1,9_2,9_0_0 +19512,2,24.0,0.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,726.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,1,119532,1,2,0,0,1,,0.0,285.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2155.93479162451,0.0,1505.7173093792853,0,1,2,3,16.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.4821622196129798,1505.7173093792853,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +19513,1,26.0,24.0,9,120,987.0,0.0,0.0,63,54,0.0,609.190547424703,1683.0329363082244,1447.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,119533,2,1,1,0,1,,138.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1991.37184786666,987.0,28573.965662484457,1,4,1,2,98.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.050640503215127954,15874.425368046921,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +19514,2,29.0,0.0,2,120,750.0,0.0,0.0,69,55,1582.0242765549024,0.0,1278.9004075290459,2250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,2.0,1,,2,119534,2,1,1,0,1,,220.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1571.86160133924,750.0,40101.515384446524,1,1,1,2,95.0,0,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0561076053717578,26734.343589631015,7,4,7,7_1,7_1,7_0_1 +19515,2,75.0,0.0,5,112,1830.0,0.0,0.0,75,74,0.0,105.94618216081791,3120.516994370872,1910.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,119535,2,1,1,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,821.669820318341,1830.0,56571.99604143185,5,5,0,1,91.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03376228759192386,37714.664027621235,9,5,9,9_1,9_0,9_0_0 +19516,2,59.0,0.0,2,111,1400.0,0.0,0.0,21,46,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,119536,1,2,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,829.7514149946,1400.0,40412.986326969745,4,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034642329786594,26941.990884646497,7,4,7,7_0,7_4,7_0_1 +19517,2,88.0,0.0,1,400,790.0,0.0,0.0,0,71,0.0,132.4327277010224,1347.1084292639284,890.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119537,2,1,2,0,1,,117.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1857.4442882605,790.0,17147.403243901696,0,5,0,1,134.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05190290257602239,17147.403243901696,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19518,2,35.0,0.0,7,112,600.0,0.0,0.0,47,42,2384.637926193756,0.0,1023.1203260232367,2861.0,0.0,0.0,20,2,1,2,2,1,2,2,2,2,45.0,1,,5,119538,2,1,3,0,1,,348.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1554.8993303425,600.0,63535.0,1,1,1,2,120.0,9,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.045030298260801134,35297.22222222222,9,5,9,9_1,9_2,9_0_0 +19519,2,28.0,0.0,2,111,0.0,0.0,0.0,68,42,0.0,0.0,0.0,218.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,20.0,2,,2,119539,2,1,0,1,1,809.0,332.0,437.0,43,2.0,0.0,3.0,2.0,1.5,2,2,190.980842556935,0.0,35801.22076862418,1,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006089177835831032,23867.48051241612,6,3,6,6_0,6_3,6_0_1 +19520,2,66.0,0.0,7,111,200.0,410.0,0.0,0,75,0.0,0.0,341.04010867441224,610.0,0.0,778.3866596553135,41,2,2,2,2,1,2,2,2,0,,2,,5,119540,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1625.45219933885,200.0,23386.013837762526,0,5,0,1,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02608396643531458,23386.013837762526,6,3,6,6_0,6_3,6_0_0 +19521,2,46.0,0.0,6,111,360.0,0.0,0.0,0,31,421.8731404146406,0.0,613.872195613942,760.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,119541,1,3,0,1,1,800.0,0.0,1141.0,32,1.0,0.0,2.0,2.0,1.5,2,1,818.759977926715,360.0,19550.609735138587,0,4,2,3,54.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03887346790182412,13033.739823425725,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +19522,2,46.0,0.0,6,111,748.0,1041.0,0.0,52,46,0.0,0.0,1275.4900064423018,1789.0,0.0,1976.3427139053204,42,2,2,2,2,2,2,2,1,2,10.0,1,,4,119542,2,2,1,0,1,,362.0,653.0,43,2.0,0.0,5.0,3.0,2.0,3,2,698.772236271445,748.0,47656.64784131121,1,1,2,3,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03753935874711699,23828.323920655606,6,3,6,6_1,6_2,6_0_0 +19523,2,66.0,0.0,2,111,300.0,1300.0,0.0,86,75,0.0,0.0,511.56016301161833,1600.0,0.0,2468.055262321726,50,2,2,2,2,1,2,2,2,0,,1,,2,119543,1,3,1,0,2,,500.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1029.31218988189,300.0,17164.213819249213,6,5,0,1,150.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.09321720277136389,11442.809212832808,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +19524,2,74.0,0.0,6,111,300.0,0.0,0.0,77,72,0.0,821.0829117463388,511.56016301161833,1070.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,119544,1,1,2,0,1,,290.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1328.13021863906,300.0,22537.07295580075,5,5,0,1,86.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04747732778335777,15024.715303867168,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +19525,2,66.0,0.0,2,111,440.0,800.0,0.0,0,74,0.0,0.0,750.2882390837069,1240.0,0.0,1518.8032383518312,10,2,2,2,2,1,2,2,2,0,,2,,2,119545,1,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1534.48238421741,440.0,48592.947746858124,0,5,0,1,69.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.02551810617581179,48592.947746858124,10,5,10,10_0,10_3,10_0_1 +19526,2,28.0,0.0,9,111,250.0,0.0,0.0,43,53,0.0,0.0,426.3001358430153,282.0,44.33885521268867,0.0,31,0,0,0,0,0,0,0,0,3,240.0,2,2008.0,6,119546,2,1,0,1,1,432.0,0.0,720.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1719.94878940102,250.0,46150.801474887245,1,1,2,3,70.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006110403091340658,30767.200983258164,8,4,8,8_0,8_2,8_0_0 +19527,1,80.0,61.0,2,111,250.0,250.0,0.0,86,86,0.0,0.0,426.3001358430153,500.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,0,,2,,2,119547,2,2,0,1,1,500.0,250.0,248.0,41,0.0,7.0,3.0,2.0,1.5,2,2,236.01080605819,250.0,22551.856781020408,5,5,2,3,75.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022171123418130205,15034.571187346939,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +19528,2,55.0,0.0,6,211,1400.0,0.0,0.0,42,56,0.0,0.0,2387.2807607208856,1520.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,119548,2,1,4,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2204.12196179443,1400.0,12514.257060496438,1,1,1,2,100.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.121461465323272,8342.838040330958,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +19529,2,26.0,0.0,9,111,720.0,,,46,21,0.0,0.0,,764.0,60.965925917446924,,31,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,119549,2,1,0,0,2,,480.0,830.0,43,2.0,0.0,4.0,2.0,1.5,2,2,199.55452427617107,720.0,15262.074247816274,1,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0500587264610716,10174.71616521085,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +19530,2,52.0,0.0,7,112,600.0,0.0,0.0,52,47,0.0,635.6770929649075,1023.1203260232367,1140.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119550,2,1,2,0,1,,150.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,640.312825133903,600.0,53177.2915369717,1,1,1,2,90.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02143772213760475,35451.52769131447,9,5,9,9_1,9_0,9_0_0 +19531,2,54.0,0.0,2,111,600.0,0.0,0.0,0,67,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,119551,2,1,0,1,1,295.0,0.0,266.0,22,3.0,0.0,2.0,3.0,2.0,3,3,374.351970617706,600.0,17890.82230110977,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033536748054491715,8945.411150554884,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +19532,2,76.0,0.0,2,111,399.0,120.0,0.0,0,75,0.0,0.0,680.3750168054524,519.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,2,,2,119552,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1106.00180740872,399.0,29863.298199380846,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017379192229033846,29863.298199380846,8,4,8,8_0,8_4,8_0_1 +19533,2,67.0,0.0,2,111,500.0,0.0,0.0,85,78,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,2,119553,1,1,0,1,1,1200.0,0.0,350.0,41,0.0,2.0,4.0,3.0,2.0,3,3,443.590602255423,500.0,13809.560442201448,6,5,2,3,73.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03620680050554112,6904.780221100724,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +19534,1,56.0,175.0,1,111,925.0,0.0,0.0,67,52,0.0,0.0,1577.3105026191565,925.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,7.0,2,,1,119554,1,1,0,0,2,,140.0,261.0,43,2.0,4.0,2.0,2.0,1.5,2,2,1397.61835236349,925.0,13083.83748665889,4,1,2,3,45.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07069791266844981,8722.55832443926,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +19535,2,88.0,0.0,2,111,219.0,1296.0,0.0,0,77,0.0,0.0,373.43891899848137,1515.0,0.0,2460.4612461299666,70,0,0,0,0,0,0,0,0,0,,1,,2,119555,2,2,5,0,1,,132.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,362.398074689399,219.0,18268.469453832804,0,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08292977163897802,18268.469453832804,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +19536,1,39.0,237.0,7,112,1500.0,0.0,0.0,0,62,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,2,2,1,1,1,2,2,2,1,5.0,2,,5,119556,2,2,0,0,1,,0.0,506.0,32,1.0,0.0,4.0,4.0,2.3,3,2,1320.87386836142,1500.0,33994.19709121053,0,1,2,3,90.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04412517807010764,14780.085691830667,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +19537,2,76.0,0.0,1,112,0.0,0.0,0.0,86,86,0.0,0.0,0.0,3923.0,498.81212114274757,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119557,2,1,1,0,1,,172.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1633.85120408466,0.0,34288.53376467639,5,5,0,1,150.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11441142473235251,22859.02250978426,6,3,6,6_1,6_0,6_1_0 +19538,2,34.0,0.0,1,120,1700.0,0.0,0.0,54,38,0.0,0.0,2898.840923732504,1855.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,119558,2,1,1,0,2,,558.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,836.795115273723,1700.0,64744.43270099822,1,1,1,2,115.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02865111211286279,26976.846958749262,7,4,7,7_1,7_0,7_1_0 +19540,2,38.0,0.0,1,112,624.0,0.0,0.0,67,62,1265.6194212439218,0.0,1064.0451390641663,1878.0,74.82181817141213,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,119560,2,2,2,0,1,,294.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,761.468876273281,624.0,39197.22950256598,1,1,1,2,80.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04791154945981731,26131.486335043985,7,4,7,7_1,7_0,7_1_0 +19542,2,46.0,0.0,2,111,11308.0,552.0,0.0,62,56,1044.1360225262356,0.0,19282.40774445127,12850.0,0.0,1047.9742344627634,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,119562,1,1,0,1,2,840.0,0.0,462.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,3,177.713011785969,11308.0,37150.992264674955,1,1,2,3,80.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.3458857816892937,14288.843178721138,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +19543,2,79.0,0.0,6,111,2240.0,0.0,0.0,0,77,0.0,0.0,3819.649217153417,2240.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,119563,2,1,2,0,1,,328.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,937.709215961705,2240.0,34890.88970222474,0,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0642001398966095,34890.88970222474,9,5,9,9_1,9_3,9_0_0 +19544,1,37.0,220.0,9,111,700.0,,,0,43,0.0,0.0,,788.0,121.93185183489385,,42,0,0,0,0,0,0,0,0,0,,2,2005.0,6,119564,1,2,0,0,2,,500.0,350.0,22,2.0,0.0,3.0,2.0,1.5,2,2,84.30802974431094,700.0,33212.73631526339,0,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02372583795927297,22141.824210175593,6,3,6,6_0,6_3,6_0_0 +19545,1,23.0,300.0,6,111,372.0,,,0,81,0.0,0.0,,460.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,2,,4,119565,2,2,0,0,2,,900.0,295.0,32,1.0,0.0,3.0,3.0,1.6,1,1,124.81331680956443,372.0,9212.901208479509,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.049929982921842066,5758.063255299692,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19546,2,68.0,0.0,2,111,329.0,82.0,0.0,0,78,0.0,0.0,561.0109787694081,411.0,0.0,155.6773319310627,71,0,0,0,0,0,0,0,0,0,,2,,2,119566,2,2,0,1,1,,184.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1793.28548972539,329.0,12403.817145117944,0,5,0,1,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0331349612132719,12403.817145117944,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +19547,2,37.0,0.0,9,111,0.0,,,0,34,0.0,0.0,,331.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,119567,1,1,0,0,2,,561.0,770.0,22,2.0,0.0,2.0,2.0,1.5,2,2,77.26025098680097,0.0,57473.57394485743,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005759168558363455,38315.71596323829,9,5,9,9_1,9_2,9_0_0 +19548,2,87.0,0.0,2,111,504.0,2074.0,0.0,72,72,0.0,0.0,859.4210738595189,2578.0,0.0,3937.4973954271222,50,0,0,0,0,0,0,0,0,0,,1,,2,119568,2,1,3,0,1,,298.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1637.51234847853,504.0,34677.543142533286,5,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07434206020316324,23118.362095022192,6,3,6,6_1,6_2,6_0_1 +19549,2,56.0,0.0,1,112,0.0,0.0,0.0,0,81,0.0,0.0,0.0,180.0,249.40606057137379,0.0,41,0,0,0,0,0,0,0,0,0,,3,,1,119569,2,1,0,0,1,,0.0,300.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1262.94216200694,0.0,10477.40371998819,0,4,3,4,48.0,9,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017179828592135505,10477.40371998819,2,1,2_0,2_0_0,2_0_0,2_1_0_0 +19550,2,54.0,0.0,1,120,540.0,0.0,0.0,85,45,0.0,264.8654554020448,920.8082934209131,3080.0,3242.2787874278592,0.0,60,2,2,2,1,2,2,2,2,2,40.0,1,,1,119570,1,3,4,0,1,,210.0,350.0,42,1.0,3.0,2.0,2.0,1.5,2,2,977.500361685647,540.0,37078.14585294715,7,1,2,3,52.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08306779988986927,24718.763901964765,7,4,7,7_1,7_0,7_1_0 +19551,1,38.0,253.0,2,111,400.0,,,0,63,0.0,0.0,,500.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,2,,2,119571,1,3,0,0,2,,160.0,267.0,22,2.0,0.0,3.0,2.0,1.5,2,2,123.2369208633883,400.0,12183.0,0,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04104079454978248,8122.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19552,2,42.0,0.0,1,111,350.0,930.0,0.0,0,37,0.0,0.0,596.8201901802214,1280.0,0.0,1765.6087645840037,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,119572,2,2,2,0,2,,500.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,291.772775958592,350.0,35020.7031119311,0,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03654980872054281,26939.00239379315,7,4,7,7_1,7_3,7_1_0 +19553,1,44.0,107.0,5,111,384.0,1056.0,0.0,52,64,0.0,37.08116375628627,654.7970086548714,1587.0,164.885117822186,2004.8202746244172,42,2,2,2,1,1,2,2,2,0,,2,,3,119573,1,2,0,1,1,,378.0,276.0,43,3.0,0.0,3.0,4.0,2.5,4,3,987.429620607887,384.0,19956.031508742664,4,4,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07952482933817483,7982.412603497066,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19554,2,65.0,0.0,2,112,930.0,0.0,0.0,75,74,2531.2388424878436,0.0,1585.836505336017,3330.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,119574,2,2,2,0,1,,350.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,231.870375695278,930.0,57221.408714626734,5,5,0,1,100.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058195002094535944,28610.704357313367,8,4,8,8_1,8_0,8_0_1 +19555,1,32.0,240.0,2,111,0.0,,,0,63,0.0,0.0,,378.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,2,119575,2,1,0,0,2,,156.0,290.0,12,1.0,1.0,1.0,1.0,1.0,1,1,105.6162475019616,0.0,5871.170212765957,0,4,2,3,47.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06438239504249035,5871.170212765957,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19556,1,51.0,214.0,7,111,0.0,,,0,63,0.0,0.0,,310.0,235.55016831740858,,71,0,0,0,0,0,0,0,0,0,,1,,5,119576,1,1,0,0,2,,0.0,355.0,12,1.0,0.0,2.0,1.0,1.0,1,1,145.97040482959744,0.0,4998.745490138595,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.062015559826272514,4998.745490138595,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +19557,1,36.0,223.0,2,111,760.0,0.0,0.0,0,55,0.0,0.0,1295.9524129627664,760.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,1,,2,119577,1,1,3,0,1,,170.0,325.0,12,1.0,0.0,1.0,1.0,1.0,1,1,490.684106031459,760.0,5392.611531648815,0,4,2,3,35.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,1,0,0,1,0.14093357096828124,5392.611531648815,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +19558,2,63.0,0.0,6,111,1200.0,80.0,0.0,0,77,0.0,0.0,2046.2406520464733,1280.0,0.0,151.8803238351831,60,0,0,0,0,0,0,0,0,0,,1,,4,119578,2,1,2,0,1,,792.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,669.028550039831,1200.0,21356.139562652428,0,5,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05993592597786078,21356.139562652428,6,3,6,6_1,6_4,6_0_0 +19559,2,71.0,0.0,2,111,185.0,115.0,0.0,0,77,0.0,0.0,315.46210052383134,300.0,0.0,218.32796551307572,71,0,0,0,0,0,0,0,0,0,,2,,2,119579,2,2,0,1,1,240.0,0.0,196.0,11,0.0,1.0,1.0,1.0,1.0,1,1,206.022126785387,185.0,16288.14707006461,0,5,2,3,31.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018418301278195052,16288.14707006461,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +19560,0,58.0,0.0,2,111,300.0,500.0,0.0,0,42,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,41,0,0,0,0,0,0,0,0,0,,8,,2,119580,2,2,0,0,1,,0.0,,32,2.0,1.0,4.0,2.0,1.5,2,2,1439.24788980576,300.0,37448.38679413678,0,1,5,0,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.021362735981066465,24965.591196091187,7,4,7,7_0,7_2,7_0_1 +19561,2,22.0,0.0,6,111,1200.0,0.0,0.0,0,56,0.0,0.0,2046.2406520464733,3505.0,623.5151514284345,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,119581,2,1,2,0,1,,480.0,,22,1.0,0.0,5.0,4.0,2.5,4,3,1243.3216787181,1200.0,20734.957938989603,0,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1690382015875358,8293.98317559584,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +19562,2,45.0,0.0,9,112,420.0,1000.0,0.0,0,37,0.0,198.6490915515336,716.1842282162656,1570.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,119582,2,1,1,0,1,,100.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,429.932144820196,420.0,48077.67724286559,0,1,0,1,140.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03265548774474078,48077.67724286559,10,5,10,10_1,10_0,10_0_0 +19563,1,34.0,200.0,7,111,360.0,0.0,0.0,0,54,0.0,0.0,613.872195613942,389.0,0.0,0.0,50,2,1,2,2,1,2,2,2,3,40.0,2,,5,119583,1,1,0,1,1,528.0,0.0,433.0,32,1.0,0.0,2.0,2.0,1.3,1,1,744.064201832955,360.0,22794.51368651756,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.017065509944618154,17534.241297321198,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +19564,1,40.0,80.0,1,111,700.0,1600.0,0.0,37,42,0.0,0.0,1193.6403803604428,2360.0,83.13535352379125,3037.6064767036623,20,2,2,2,2,1,2,1,2,2,7.0,1,,1,119584,1,1,2,0,1,,816.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,905.207139822234,700.0,50484.59643810833,1,1,1,2,92.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.04674693206458024,21035.248515878473,5,3,5,5_1,5_3,5_1_0 +19565,2,35.0,0.0,1,112,2500.0,0.0,0.0,37,22,0.0,662.163638505112,4263.001358430153,3000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,119585,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,415.553328592696,2500.0,20143.83696618376,1,1,1,2,150.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1489289257571046,11191.020536768756,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +19566,2,54.0,0.0,1,111,601.0,1908.0,0.0,43,56,0.0,397.2981831030672,1024.8255265666087,2809.0,0.0,3622.3457234691173,50,2,2,2,2,1,2,2,2,2,10.0,1,,1,119586,2,3,3,0,1,,310.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1740.45790486194,601.0,65588.04391954081,1,1,0,1,80.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.042827927654709455,26235.217567816326,7,4,7,7_1,7_2,7_1_0 +19567,2,47.0,0.0,6,111,300.0,60.0,0.0,0,42,0.0,0.0,511.56016301161833,360.0,0.0,113.91024287638734,31,2,2,2,1,1,2,2,2,2,15.0,2,,4,119587,2,1,0,1,2,480.0,0.0,273.0,12,1.0,0.0,2.0,1.0,1.0,1,1,867.062982954509,300.0,23346.266790162896,0,1,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.015420024247803438,23346.266790162896,6,3,6,6_0,6_4,6_0_0 +19569,2,35.0,0.0,2,111,0.0,0.0,0.0,67,62,0.0,0.0,0.0,1406.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,119589,1,3,4,0,2,,814.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,814.503517981617,0.0,47727.44681466166,4,1,1,2,70.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029458940166229113,26515.248230367586,7,4,7,7_1,7_2,7_0_1 +19570,2,50.0,0.0,6,111,450.0,0.0,0.0,0,68,0.0,331.081819252556,767.3402445174275,723.0,31.86855218411998,0.0,43,2,2,2,1,1,2,2,2,2,20.0,1,,4,119590,2,1,3,0,1,,900.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,939.501279265189,450.0,19784.69625687174,0,1,0,1,100.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.03654339650268239,19784.69625687174,5,3,5,5_1,5_2,5_0_0 +19571,2,81.0,0.0,6,111,1510.0,0.0,0.0,75,75,0.0,0.0,2574.8528204918125,1510.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,119591,2,1,0,0,1,,252.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2113.84001222546,1510.0,53811.137449484304,5,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028061105406246546,35874.09163298953,9,5,9,9_0,9_3,9_0_0 +19572,2,59.0,0.0,1,111,550.0,800.0,0.0,65,75,0.0,0.0,937.8602988546337,1350.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,1,119592,2,1,2,0,1,,220.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,426.405653473376,550.0,53528.38469615008,4,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025220264120861768,35685.589797433386,9,5,9,9_1,9_3,9_1_0 +19573,2,42.0,0.0,9,111,100.0,,,54,64,0.0,0.0,,160.0,83.13535352379125,,31,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,119593,2,1,0,0,2,,240.0,,43,2.0,0.0,5.0,5.0,2.6,3,3,101.3755417832853,100.0,71169.4217948836,4,1,0,1,145.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002248156525159552,27372.85453649369,7,4,7,7_1,7_3,7_0_0 +19574,2,41.0,0.0,2,111,120.0,800.0,0.0,0,62,0.0,0.0,204.62406520464734,920.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,119594,2,2,0,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,3105.41233478488,120.0,18211.50843367253,0,1,1,2,61.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05051750673760487,18211.50843367253,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +19575,2,66.0,0.0,2,211,517.0,,,77,75,0.0,145.67600047112464,,759.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,0,,1,,2,119595,2,3,0,0,2,,247.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,83.67712725200394,517.0,46470.0,6,5,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016333118140735958,30980.0,8,4,8,8_1,8_2,8_0_1 +19576,2,53.0,0.0,7,400,1130.0,0.0,0.0,52,63,0.0,0.0,1926.8766140104292,1220.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,119596,2,2,2,0,1,,380.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,2284.43005683397,1130.0,54932.06496940366,1,1,0,1,105.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02220925065677982,27466.03248470183,7,4,7,7_1,7_0,7_0_0 +19577,2,55.0,0.0,9,111,402.0,,,0,77,0.0,0.0,,512.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119597,2,3,0,0,2,,500.0,,31,0.0,0.0,4.0,2.0,1.3,1,1,123.64083321951378,402.0,15828.20998084352,0,6,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032347309052613064,12175.5461391104,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +19578,2,32.0,0.0,1,120,400.0,0.0,0.0,48,43,0.0,953.5156394473612,682.0802173488245,1210.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,3,60.0,1,,1,119598,2,1,1,0,1,,140.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2134.27321234966,400.0,37630.399474631195,4,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032154853971606924,20905.77748590622,5,3,5,5_1,5_0,5_1_0 +19579,2,68.0,0.0,2,111,1248.0,,,78,77,0.0,0.0,,1512.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,119599,2,1,0,0,2,,840.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,130.7355684923008,1248.0,18288.37310999777,5,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0826754786172549,12192.248739998513,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +19580,1,52.0,368.0,7,112,0.0,0.0,1465.0,0,65,0.0,0.0,923.4162954575996,1465.0,0.0,1753.2125961822576,71,0,0,0,0,0,0,0,0,0,,1,,5,119600,2,3,1,0,1,,368.0,494.0,32,1.0,0.0,4.0,3.0,2.0,3,3,2417.19874641679,0.0,13798.047776243058,0,4,2,3,79.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10617444030903996,6899.023888121529,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +19582,1,28.0,340.0,9,111,0.0,,,56,37,0.0,0.0,,46.0,63.73710436823996,,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119602,1,2,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,3.0,1.8,2,2,96.53640845958533,0.0,19427.533246293347,1,1,2,3,25.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.002367773582823569,10793.074025718526,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +19583,2,84.0,0.0,1,112,2555.0,0.0,0.0,0,78,0.0,0.0,4356.787388315616,2619.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119603,2,1,2,0,1,,180.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,420.164095599975,2555.0,10758.74736139166,0,5,0,1,90.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24342982617088132,10758.74736139166,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +19584,0,63.0,0.0,2,111,285.0,1312.0,0.0,0,77,0.0,0.0,485.98215486103743,1597.0,0.0,2490.837310897003,70,0,0,0,0,0,0,0,0,0,,1,,2,119604,2,1,2,0,1,,301.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,324.251696067552,285.0,46813.042556912194,0,5,0,1,96.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03411442437347398,31208.695037941463,8,4,8,8_1,8_2,8_0_1 +19585,2,34.0,0.0,2,111,600.0,1200.0,0.0,38,23,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,0,,1,,2,119605,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,313.645900062185,600.0,136701.69844632526,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013167356517569197,75945.38802573625,10,5,10,10_1,10_3,10_0_1 +19586,2,56.0,0.0,5,111,350.0,0.0,0.0,77,37,0.0,0.0,596.8201901802214,350.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,119606,2,1,0,1,1,,139.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,342.388138317985,350.0,60304.301306817084,6,1,0,1,100.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005803897772055512,40202.86753787805,9,5,9,9_0,9_3,9_0_0 +19587,2,54.0,0.0,1,111,420.0,0.0,0.0,0,56,0.0,1655.40909626278,716.1842282162656,1820.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,1,119607,2,2,3,0,1,,800.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,627.286634740285,420.0,27508.18354995131,0,1,0,1,80.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06616212941487448,27508.18354995131,7,4,7,7_1,7_2,7_1_0 +19588,1,96.0,53.0,2,111,0.0,0.0,14.0,0,86,0.0,0.0,8.824456065806412,14.0,0.0,16.754250065905534,71,0,0,0,0,0,0,0,0,0,,2,,2,119608,1,2,0,1,1,,0.0,470.0,11,0.0,2.0,2.0,1.0,1.0,1,1,514.457113891446,0.0,15468.18146457316,0,6,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0009050837703232444,15468.18146457316,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +19589,1,59.0,230.0,2,111,0.0,300.0,0.0,0,22,0.0,0.0,0.0,300.0,0.0,569.5512143819367,70,2,2,2,2,1,2,2,2,0,,2,,2,119609,2,2,0,4,1,,288.0,300.0,12,1.0,0.0,3.0,1.0,1.0,1,1,325.949631287997,0.0,6092.283126207492,0,4,2,3,60.0,6,4,2,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,1,1,0.049242622804162584,6092.283126207492,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19590,2,59.0,0.0,6,111,450.0,,,0,55,0.0,0.0,,542.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,45.0,2,,4,119610,2,1,0,0,2,,544.0,,32,2.0,0.0,3.0,3.0,2.0,3,3,116.04288549349984,450.0,34128.29433460222,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01588125075006967,17064.14716730111,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +19591,2,59.0,0.0,7,111,318.0,,,52,63,0.0,0.0,,525.0,286.8169696570798,,71,0,0,0,0,0,0,0,0,0,,1,,5,119611,2,2,0,0,2,,1080.0,,43,3.0,4.0,5.0,3.0,2.0,3,3,108.36025848386342,318.0,5430.707196029777,4,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09667249237517563,2715.3535980148886,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19592,1,92.0,280.0,2,111,300.0,120.0,0.0,0,72,0.0,0.0,511.56016301161833,1299.0,0.0,227.8204857527747,71,2,2,1,1,2,2,2,2,0,,2,,2,119612,2,1,0,1,1,,0.0,640.0,11,0.0,6.0,4.0,1.0,1.0,1,1,278.620501271045,300.0,16527.434140749552,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07859659212298563,16527.434140749552,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +19593,2,65.0,0.0,2,112,306.0,0.0,0.0,0,74,0.0,0.0,521.7913662718507,306.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,119613,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1089.41565125105,306.0,115067.35541428899,0,5,0,1,92.0,10,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0026593120081562344,115067.35541428899,10,5,10,10_0,10_2,10_0_1 +19594,0,42.0,0.0,6,111,540.0,,,0,56,0.0,0.0,,632.0,127.47420873647992,,42,0,0,0,0,0,0,0,0,0,,1,,4,119614,2,1,0,0,2,,1080.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,111.05078036028262,540.0,13625.081525751966,0,4,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04638504355408765,10480.831942886127,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +19595,2,31.0,0.0,9,112,443.0,488.0,0.0,43,38,0.0,595.9472746546007,755.4038407138231,1381.0,0.0,926.469975394617,12,0,0,0,0,0,0,0,0,3,45.0,1,2006.0,6,119615,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,827.183361313011,443.0,59561.03214657761,1,1,1,2,115.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023186300677285235,28362.39626027505,8,4,8,8_1,8_1,8_0_0 +19596,2,74.0,0.0,2,111,646.0,997.0,0.0,77,74,0.0,0.0,1101.5595510183516,1643.0,0.0,1892.8085357959696,10,0,0,0,0,0,0,0,0,0,,1,,2,119616,2,2,3,0,1,,237.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,251.691129411864,646.0,62365.72435429738,5,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02634459900868268,41577.14956953159,9,5,9,9_1,9_3,9_0_1 +19597,2,39.0,0.0,1,112,1150.0,0.0,0.0,43,69,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,119617,2,1,1,0,1,,320.0,,43,2.0,0.0,6.0,5.0,2.4,3,2,1164.04867599442,1150.0,48290.542224657416,1,1,1,2,112.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023814186940580753,20121.059260273923,5,3,5,5_1,5_0,5_1_0 +19598,1,58.0,367.0,7,111,600.0,0.0,0.0,86,63,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,2,1,1,2,1,1,2,2,0,,2,,5,119618,2,2,0,1,1,804.0,0.0,377.0,42,3.0,0.0,3.0,4.0,2.5,4,4,194.331707265998,600.0,24216.937639684886,6,4,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.02477604761292218,9686.775055873954,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +19599,2,80.0,0.0,2,111,360.0,600.0,0.0,78,78,0.0,0.0,613.872195613942,960.0,0.0,1139.1024287638734,71,2,2,2,2,1,2,2,2,0,,2,,2,119619,2,2,0,0,1,,500.0,410.0,41,1.0,0.0,4.0,3.0,2.0,3,3,789.406985857897,360.0,13832.115973395343,6,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.06940369802035072,6916.057986697671,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +19601,2,34.0,0.0,1,111,430.0,1157.0,0.0,47,35,0.0,0.0,733.2362336499863,1587.0,0.0,2196.5691834663357,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,119621,2,1,2,0,1,,431.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1062.04761996218,430.0,43592.451501167285,1,1,1,2,160.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03640538545893673,20758.310238651087,5,3,5,5_1,5_2,5_1_0 +19602,1,46.0,287.0,2,111,145.0,530.0,0.0,0,52,0.0,0.0,247.25407878894887,675.0,0.0,1006.2071454080882,71,1,2,2,2,1,2,2,2,3,15.0,2,,2,119622,1,2,0,1,1,42.0,0.0,263.0,32,1.0,0.0,3.0,2.0,1.5,2,2,385.092924079008,145.0,15793.84021107643,0,1,2,3,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04273818089704451,10529.226807384286,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +19603,2,83.0,0.0,1,111,238.0,1987.0,0.0,0,72,0.0,0.0,405.83772932255056,2225.0,0.0,3772.3275432563605,31,0,0,0,0,0,0,0,0,0,,1,,1,119623,2,3,3,0,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,500.479049108782,238.0,35419.747793708295,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06281806445824645,35419.747793708295,9,5,9,9_1,9_4,9_1_0 +19604,2,34.0,0.0,5,111,1200.0,0.0,0.0,47,43,0.0,556.2174563442941,2046.2406520464733,1620.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,119624,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,545.114332736856,1200.0,66524.24513222935,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024352023788920082,36957.91396234964,9,5,9,9_1,9_4,9_0_0 +19605,2,73.0,0.0,2,112,2100.0,0.0,0.0,0,72,0.0,0.0,3580.9211410813286,2220.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119625,2,1,2,0,1,,240.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,973.608547579475,2100.0,16121.213210186135,0,5,0,1,80.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1377067576153202,16121.213210186135,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +19606,0,75.0,0.0,1,111,0.0,0.0,1500.0,77,77,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,70,0,0,0,0,0,0,0,0,0,,1,,1,119626,2,1,1,0,1,,350.0,,41,0.0,6.0,3.0,2.0,1.5,2,2,270.185147878087,0.0,40135.088028289596,5,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03737378123956551,26756.725352193065,7,4,7,7_1,7_3,7_1_0 +19607,2,81.0,0.0,2,111,186.0,37.0,0.0,0,74,0.0,0.0,317.16730106720337,223.0,0.0,70.2446497737722,41,0,0,0,0,0,0,0,0,0,,2,,2,119627,2,1,0,1,1,,0.0,525.0,11,0.0,4.0,3.0,1.0,1.0,1,1,236.123016034446,186.0,24934.448210234204,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008943450367129877,24934.448210234204,7,4,7,7_0,7_4,7_0_1 +19608,2,69.0,0.0,7,111,332.0,,,0,77,0.0,0.0,,374.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,5,119628,1,1,0,0,2,,229.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,122.07247248155673,332.0,8896.436121312327,0,5,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042039305953542966,8896.436121312327,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19609,2,77.0,0.0,1,211,215.0,1075.0,0.0,0,78,0.0,953.5156394473612,366.61811682499314,2086.0,105.3047811301356,2040.8918515352732,71,0,0,0,0,0,0,0,0,0,,1,,1,119629,1,1,2,0,2,,200.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,273.976563656798,215.0,15651.29615180412,0,5,0,1,95.0,4,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13327969643968096,15651.29615180412,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +19610,2,51.0,0.0,7,111,300.0,350.0,0.0,0,63,0.0,0.0,511.56016301161833,650.0,0.0,664.4764167789261,71,0,0,0,0,0,0,0,0,1,10.0,1,,5,119630,2,1,1,0,1,,599.0,520.0,12,1.0,3.0,5.0,1.0,1.0,1,1,1556.04544719407,300.0,16940.35938908643,0,1,2,3,88.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03836990615551832,16940.35938908643,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +19611,2,60.0,0.0,7,111,2671.0,,,34,34,0.0,0.0,,2717.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,119631,2,1,0,0,2,,741.0,2340.0,43,2.0,5.0,6.0,3.0,2.0,3,2,174.9144932307449,2671.0,260547.7021419405,1,1,2,3,205.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010428032861789891,130273.85107097025,10,5,10,10_1,10_2,10_0_0 +19612,2,42.0,0.0,1,120,876.0,0.0,0.0,52,63,527.3414255183008,927.0290939071567,1493.7556759939255,2226.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119632,2,1,2,0,1,,312.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,73.729626394706,876.0,40479.23081060164,1,1,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054991163503457764,19275.82419552459,5,3,5,5_1,5_0,5_1_0 +19613,2,77.0,0.0,2,112,699.0,0.0,0.0,86,72,4746.072829664707,0.0,1191.9351798170708,5199.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119633,2,1,2,0,1,,535.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,703.376594091243,699.0,104329.61402329196,6,5,0,1,145.0,9,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049832447370497364,69553.07601552797,10,5,10,10_1,10_1,10_0_1 +19614,2,55.0,0.0,6,111,95.0,285.0,0.0,0,48,0.0,0.0,161.9940516203458,380.0,0.0,541.0736536628399,31,0,0,0,0,0,0,0,0,2,35.0,2,,4,119634,1,1,0,1,1,720.0,0.0,625.0,12,1.0,0.0,2.0,1.0,1.0,1,1,719.651716566771,95.0,51084.18654570143,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007438701204726843,51084.18654570143,10,5,10,10_0,10_4,10_0_0 +19615,2,70.0,0.0,1,400,420.0,0.0,0.0,0,71,0.0,0.0,716.1842282162656,531.0,153.80040401901383,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119635,1,1,4,0,1,,82.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1282.81437745833,420.0,17262.937734138937,0,5,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030759538624176467,17262.937734138937,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19616,2,63.0,0.0,7,120,370.0,0.0,0.0,0,77,980.8550514640394,794.5963662061343,630.9242010476627,1975.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,119636,2,1,2,0,1,,160.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,520.121085911698,370.0,26449.844567408803,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07466962593926062,26449.844567408803,7,4,7,7_1,7_0,7_0_0 +19617,1,43.0,334.0,7,111,681.0,1092.0,0.0,85,62,0.0,0.0,1161.2415700363736,1773.0,0.0,2073.1664203502496,71,1,2,2,1,2,2,2,2,2,20.0,1,,5,119637,1,2,2,0,1,,449.0,709.0,42,1.0,3.0,5.0,6.0,2.8999999999999995,3,2,700.432694615857,681.0,57174.33875055624,6,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0.03101041548963696,19715.289224329743,5,3,5,5_1,5_4,5_0_0 +19618,2,47.0,0.0,7,111,1998.0,0.0,0.0,56,38,0.0,0.0,3406.9906856573784,1998.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,119638,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,2.0,3,3,819.599661308996,1998.0,67213.23492930748,1,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02972628831362493,33606.61746465374,9,5,9,9_0,9_4,9_0_0 +19619,1,76.0,150.0,9,111,400.0,0.0,0.0,0,77,0.0,0.0,682.0802173488245,400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2007.0,6,119639,2,1,0,1,1,810.0,0.0,187.0,11,0.0,3.0,2.0,1.0,1.0,1,1,382.21799729237,400.0,18586.850177582146,0,5,2,3,58.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021520590965027817,18586.850177582146,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +19620,2,51.0,0.0,1,120,2500.0,0.0,0.0,0,11,0.0,0.0,4263.001358430153,2620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119640,1,2,4,0,1,,200.0,,22,1.0,4.0,8.0,3.0,2.0,3,3,326.829529709111,2500.0,40859.932663519874,0,1,0,1,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06412149578354935,20429.966331759937,5,3,5,5_1,5_0,5_1_0 +19621,2,57.0,0.0,1,111,1500.0,400.0,0.0,37,38,0.0,0.0,2557.8008150580918,1900.0,0.0,759.4016191759156,50,1,2,2,1,2,2,2,2,3,75.0,1,,1,119641,1,1,3,0,1,,1000.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,793.783971085933,1500.0,95340.92229468256,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.01992848353330822,63560.61486312171,10,5,10,10_1,10_4,10_1_0 +19622,2,31.0,0.0,9,112,1600.0,0.0,0.0,68,47,0.0,0.0,2728.320869395298,1640.0,55.423569015860835,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,119642,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,952.269069932457,1600.0,3813.550967966411,1,1,1,2,100.0,8,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4300453865113898,2118.639426648006,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +19623,1,33.0,210.0,2,111,900.0,,,0,62,0.0,0.0,,943.0,59.5803366920504,,60,0,0,0,0,0,0,0,0,0,,2,,2,119643,2,3,0,0,2,,500.0,258.0,32,1.0,0.0,2.0,2.0,1.3,1,1,89.23001714726742,900.0,16586.15434713569,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05685464998478381,12758.580267027453,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +19624,2,36.0,0.0,2,111,303.0,0.0,0.0,54,65,1577.805545150756,794.5963662061343,516.6757646417345,2399.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,119644,1,1,3,0,1,,184.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,359.240279264108,303.0,36647.66171209451,1,1,1,2,150.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06546120237756613,17451.267481949766,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +19625,2,70.0,0.0,2,111,263.0,73.0,0.0,0,78,0.0,0.0,448.4677429068521,336.0,0.0,138.5907954996046,71,0,0,0,0,0,0,0,0,0,,2,,2,119645,2,1,0,1,1,758.0,0.0,268.0,11,0.0,1.0,2.0,1.0,1.0,1,1,279.383153842752,263.0,18395.998158614988,0,5,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018264842010904888,18395.998158614988,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +19626,2,56.0,0.0,6,111,100.0,0.0,0.0,78,75,0.0,0.0,170.52005433720612,100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,119646,2,1,2,0,1,,600.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,609.327328280442,100.0,77691.09362666044,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0012871488266151018,38845.54681333022,9,5,9,9_1,9_4,9_0_0 +19627,1,60.0,155.0,9,111,480.0,,,78,69,0.0,0.0,,774.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,119647,1,1,0,0,2,,300.0,,42,3.0,0.0,4.0,5.0,2.8,4,4,203.46818875828833,480.0,14017.34154004109,6,4,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05521731761968119,5006.193407157532,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +19628,2,53.0,0.0,9,112,0.0,0.0,0.0,46,47,0.0,0.0,0.0,3285.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,119648,2,1,1,0,1,,403.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,965.73775774285,0.0,59932.4484454371,1,1,1,2,118.0,9,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054811710270617195,39954.9656302914,9,5,9,9_1,9_1,9_0_0 +19629,2,59.0,0.0,2,111,0.0,1100.0,0.0,77,75,0.0,0.0,0.0,1640.0,0.0,2088.354452733768,50,2,2,2,2,1,2,2,2,0,,2,,2,119649,1,3,0,0,1,,169.0,375.0,41,0.0,5.0,3.0,2.0,1.5,2,2,1309.85425916617,0.0,42055.2574626975,5,7,2,3,53.0,9,7,8,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.038996313396836534,28036.838308464998,8,4,8,8_0,8_3,8_0_1 +19630,1,21.0,255.0,1,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,119650,2,1,0,0,1,,177.0,310.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2307.69410018218,0.0,8978.16130717527,0,2,3,4,40.0,6,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.13365765650044292,8978.16130717527,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +19631,1,51.0,309.0,5,111,400.0,,,77,52,0.0,0.0,,460.0,83.13535352379125,,50,0,0,0,0,0,0,0,0,0,,2,,3,119651,1,2,0,0,2,,600.0,334.0,42,2.0,1.0,5.0,3.0,2.0,3,3,128.63511350506639,400.0,19408.07215817184,6,1,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023701478243232692,9704.03607908592,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19632,2,68.0,0.0,1,400,1284.0,0.0,0.0,0,77,0.0,529.7309108040896,2189.4774976897265,1744.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,119652,2,1,1,0,1,,468.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1028.47423561279,1284.0,16777.802439385552,0,5,0,1,75.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10394686707634578,16777.802439385552,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19633,2,64.0,0.0,2,111,440.0,0.0,0.0,0,75,0.0,704.5421113694391,750.2882390837069,1517.0,755.146127841104,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,119653,2,2,0,0,2,,200.0,410.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1632.55867027639,440.0,31280.302837537325,0,5,2,3,65.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04849697293146259,31280.302837537325,8,4,8,8_0,8_2,8_0_1 +19634,1,33.0,300.0,2,111,63.0,0.0,0.0,0,54,0.0,0.0,107.42763423243986,402.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,2,119654,2,1,0,1,1,,0.0,730.0,22,2.0,0.0,4.0,2.0,1.5,2,2,878.611639894432,63.0,16439.357525528183,0,1,3,4,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024453510386628328,10959.571683685455,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +19636,2,38.0,0.0,6,111,800.0,1500.0,0.0,52,38,0.0,145.67600047112464,1364.160434697649,2410.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,0,,1,,4,119656,2,1,2,0,1,,370.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,560.466247890056,800.0,56249.06674941677,1,1,1,2,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042845155293620735,31249.48152745376,8,4,8,8_1,8_4,8_0_0 +19637,1,43.0,438.0,7,111,685.0,,,85,54,0.0,0.0,,925.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,5,119657,2,1,0,0,2,,698.0,427.0,42,1.0,1.0,5.0,4.0,2.3,3,3,145.44927851738896,685.0,19205.343350929143,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04816367940410964,8350.149283012672,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19638,2,40.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,560.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,119658,2,1,0,0,2,,260.0,850.0,32,1.0,0.0,4.0,4.0,2.1,2,1,152.9075875751568,0.0,32437.692310245835,0,1,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017263866820239775,15446.520147736112,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +19639,2,67.0,0.0,6,112,1734.0,0.0,0.0,85,74,0.0,0.0,2956.817742207154,1734.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119659,1,1,2,0,1,,464.0,,41,1.0,2.0,7.0,3.0,2.0,3,3,105.149568574913,1734.0,56817.13702562885,6,5,0,1,140.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03051896119330747,28408.568512814425,8,4,8,8_1,8_0,8_0_0 +19640,2,61.0,0.0,5,111,0.0,0.0,0.0,78,54,0.0,0.0,0.0,897.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,119660,2,1,0,1,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1692.75661573291,0.0,50008.0,5,1,0,1,63.0,6,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01793713005919053,33338.666666666664,8,4,8,8_0,8_2,8_0_0 +19641,2,64.0,0.0,6,111,480.0,,,0,77,0.0,0.0,,792.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,0,,1,,4,119661,2,1,0,0,2,,200.0,,21,3.0,0.0,2.0,6.0,3.0999999999999996,4,4,127.0680190952968,480.0,63345.98165224613,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012502766226717983,20434.18762975682,5,3,5,5_1,5_2,5_0_0 +19642,1,63.0,115.0,2,111,600.0,0.0,0.0,0,56,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,119662,2,1,0,0,1,,0.0,343.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1267.78337344634,600.0,11023.782325506296,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054427780074335186,11023.782325506296,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +19643,1,46.0,421.0,2,111,764.0,0.0,0.0,85,85,0.0,0.0,1302.7732151362547,764.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,119663,1,2,0,1,1,1133.0,0.0,346.0,41,0.0,4.0,4.0,8.0,3.2999999999999994,2,2,277.798245508215,764.0,30783.97175606568,6,7,2,3,60.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024818110088392388,9328.476289716875,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19644,2,77.0,0.0,2,111,429.0,80.0,0.0,75,74,0.0,0.0,731.5310331066142,509.0,0.0,151.8803238351831,10,0,0,0,0,0,0,0,0,0,,2,,2,119664,2,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,625.983766323088,429.0,88468.4289564048,5,5,0,1,140.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005753464891422718,58978.95263760319,10,5,10,10_0,10_3,10_0_1 +19645,2,84.0,0.0,2,111,400.0,0.0,0.0,77,78,1054.6828510366015,0.0,682.0802173488245,1580.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119665,2,2,4,0,1,,100.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1033.4122797797,400.0,12912.948168722667,5,5,0,1,80.0,3,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12235780546436528,8608.632112481779,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +19646,2,35.0,0.0,5,111,860.0,1500.0,0.0,62,46,0.0,0.0,1466.4724672999725,2360.0,0.0,2847.7560719096837,31,2,2,2,2,1,2,2,2,2,25.0,1,,3,119666,1,3,3,0,2,,480.0,501.0,43,2.0,0.0,4.0,5.0,2.4,2,2,200.817916311322,860.0,50809.28995600341,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04644819878497736,21170.53748166809,5,3,5,5_1,5_4,5_0_0 +19647,2,74.0,0.0,7,112,1330.0,0.0,0.0,71,71,0.0,39.72981831030672,2267.9167226848413,1420.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,119667,2,2,3,0,1,,292.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,701.114096033102,1330.0,25759.657677961248,5,5,0,1,160.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055124956152460255,17173.105118640833,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +19648,2,45.0,0.0,8,112,900.0,0.0,0.0,67,62,1371.087706347582,132.4327277010224,1534.680489034855,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,119668,2,1,1,0,1,,250.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,787.103261041907,900.0,42928.60908385124,1,1,1,2,160.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053577324052299834,17171.443633540497,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +19649,2,54.0,0.0,9,111,480.0,,,0,54,0.0,0.0,,524.0,60.965925917446924,,60,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,119669,2,1,0,0,1,,180.0,494.0,32,1.0,0.0,3.0,2.0,1.5,2,1,126.39562721575587,480.0,48830.604754286236,0,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010730975023486772,32553.73650285749,8,4,8,8_0,8_2,8_0_0 +19650,2,75.0,0.0,2,112,625.0,0.0,0.0,75,74,1160.1511361402618,59.594727465460075,1065.7503396075383,1770.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,119670,2,2,1,0,1,,480.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1148.88461686154,625.0,51193.75818484519,5,5,0,1,100.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03457452749628314,34129.17212323013,9,5,9,9_1,9_0,9_0_1 +19651,2,58.0,0.0,2,111,960.0,0.0,0.0,85,67,0.0,0.0,1636.9925216371787,1115.0,214.76632993646075,0.0,71,1,2,2,2,1,2,2,2,3,15.0,2,,2,119671,2,2,0,1,1,1234.0,0.0,421.0,42,2.0,2.0,5.0,3.0,2.0,3,3,349.64813166556,960.0,37216.89718083862,6,1,2,3,60.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.029959509912450884,18608.44859041931,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +19652,2,60.0,0.0,2,111,90.0,52.0,0.0,77,77,0.0,0.0,153.4680489034855,142.0,0.0,98.72221049286902,50,0,0,0,0,0,0,0,0,0,,2,,2,119672,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1870.33912177707,90.0,28665.120277317368,7,5,0,1,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.004953755596566054,19110.080184878247,5,3,5,5_0,5_3,5_0_1 +19653,2,79.0,0.0,8,112,0.0,0.0,1460.0,72,72,0.0,0.0,920.2647040055259,1460.0,0.0,1747.228935444434,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,119673,2,1,2,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1947.54847079585,0.0,39687.1918843175,5,5,0,1,130.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03678768717765902,26458.127922878335,7,4,7,7_1,7_1,7_0_0 +19654,2,29.0,0.0,2,111,0.0,0.0,0.0,81,46,0.0,0.0,0.0,560.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,119674,1,1,0,0,1,,667.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,336.863637761326,0.0,19810.54446815788,4,1,0,1,85.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028267774310802303,13207.029645438588,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +19655,2,55.0,0.0,1,120,840.0,0.0,0.0,78,43,991.4018799744055,0.0,1432.3684564325313,1832.0,72.05063972061909,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,119675,2,1,2,0,1,,206.0,,42,2.0,2.0,4.0,4.0,2.5,4,4,583.645646758005,840.0,55858.27335298396,5,1,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03279729017800251,22343.309341193584,6,3,6,6_1,6_0,6_1_0 +19656,2,79.0,0.0,6,111,650.0,,,0,75,0.0,0.0,,722.0,99.7624242285495,,70,0,0,0,0,0,0,0,0,0,,1,,4,119676,2,1,0,0,2,,450.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,123.60231691201619,650.0,15731.205533596836,0,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04589603755783613,15731.205533596836,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +19657,2,55.0,0.0,2,111,300.0,0.0,0.0,0,43,0.0,0.0,511.56016301161833,300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,30.0,2,,2,119677,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1101.54345860657,300.0,39184.83981367753,0,1,0,1,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007656022110246946,39184.83981367753,9,5,9,9_0,9_4,9_0_1 +19658,2,34.0,0.0,2,111,26.0,34.0,0.0,0,46,0.0,0.0,44.33521412767359,60.0,0.0,64.54913762995282,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,119678,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1609.15998665104,26.0,36702.86514920712,0,1,1,2,72.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0016347497601640552,36702.86514920712,9,5,9,9_0,9_3,9_0_1 +19659,2,34.0,0.0,9,211,700.0,1200.0,0.0,62,37,0.0,0.0,1193.6403803604428,1900.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,119679,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1061.14391358739,700.0,47908.047232208606,1,1,1,2,140.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03965930798203415,22813.35582486124,6,3,6,6_1,6_1,6_0_0 +19660,2,66.0,0.0,6,112,770.0,0.0,0.0,0,74,0.0,0.0,1313.0044183964872,860.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,119680,2,1,1,0,1,,210.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1192.36212585395,770.0,39803.857398103995,0,5,0,1,106.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02160594616241804,39803.857398103995,9,5,9,9_1,9_0,9_0_0 +19661,2,51.0,0.0,5,111,695.0,730.0,0.0,0,43,0.0,0.0,1185.1143776435824,1425.0,0.0,1385.9079549960459,33,2,2,2,2,1,2,2,2,2,6.0,2,,3,119681,1,3,0,0,2,,0.0,870.0,32,3.0,2.0,4.0,3.0,2.0,3,3,486.468574004349,695.0,68199.66811083746,0,1,2,3,134.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02089452983384176,34099.83405541873,9,5,9,9_0,9_3,9_0_0 +19662,2,67.0,0.0,1,111,378.0,604.0,0.0,0,74,0.0,0.0,644.5658053946391,982.0,0.0,1146.6964449556326,50,0,0,0,0,0,0,0,0,0,,2,,1,119682,1,1,0,0,1,,0.0,333.0,31,1.0,1.0,3.0,2.0,1.5,2,2,370.455727612293,378.0,22758.480626088305,0,5,2,3,99.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043148750399195024,15172.320417392204,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +19663,2,47.0,0.0,8,120,400.0,0.0,0.0,43,45,949.2145659329414,264.8654554020448,682.0802173488245,1800.0,415.67676761895626,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,119683,2,1,2,0,1,,148.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,276.907236481266,400.0,43365.673611868864,1,1,1,2,200.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04150748391712641,21682.836805934432,6,3,6,6_1,6_0,6_0_0 +19664,2,41.0,0.0,6,111,1800.0,1500.0,0.0,62,64,0.0,1390.5436408607352,3069.36097806971,4454.0,144.10127944123818,2847.7560719096837,50,1,2,2,2,1,2,2,1,2,25.0,1,,4,119684,2,1,2,0,1,,1224.0,,43,2.0,0.0,4.0,7.0,3.6,5,4,432.300489184229,1800.0,59973.733105428924,1,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07426584555225588,16659.37030706359,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +19665,2,83.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1254.0,45.72444443808519,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,119685,2,1,0,1,1,575.0,178.0,316.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1501.23333610558,0.0,18747.96328285801,0,5,2,3,70.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06688726562349206,18747.96328285801,5,3,5,5_0,5_2,5_0_0 +19666,2,24.0,0.0,7,112,0.0,0.0,0.0,42,38,0.0,0.0,0.0,841.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,2,,5,119686,2,3,0,0,1,,0.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,928.89344062951,0.0,24942.591592992387,1,1,2,3,43.0,9,3,4,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03371742654986496,16628.394395328258,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +19667,2,43.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,3526.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,119687,2,2,1,0,1,,538.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,337.740279066498,0.0,28390.122385590883,1,1,1,2,109.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12419812609858932,10139.329423425315,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +19668,2,75.0,0.0,7,111,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,119688,2,2,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1034.46794074629,1000.0,21692.305519492238,0,5,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04609929539768936,21692.305519492238,6,3,6,6_0,6_4,6_0_0 +19669,2,59.0,0.0,1,300,750.0,0.0,0.0,74,11,0.0,0.0,1278.9004075290459,1738.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,119689,2,1,4,0,1,,250.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,677.4442711875,750.0,52575.82514171794,5,1,0,1,240.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033057018036620964,35050.550094478625,9,5,9,9_1,9_0,9_1_0 +19670,1,60.0,253.0,2,111,480.0,,,0,67,0.0,0.0,,600.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,2,119690,2,2,0,0,2,,0.0,308.0,32,2.0,2.0,4.0,2.0,1.5,2,2,83.00400328303384,480.0,9414.910386809112,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06372870004590146,6276.606924539407,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19671,2,44.0,0.0,8,111,1200.0,0.0,0.0,42,34,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,2,2,2,1,1,2,2,2,2,15.0,1,2001.0,6,119691,2,1,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,1321.58541602184,1200.0,67073.81764290936,1,1,1,2,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.01789073653729708,26829.527057163745,7,4,7,7_1,7_2,7_0_0 +19672,2,54.0,0.0,1,112,480.0,0.0,0.0,52,67,0.0,397.2981831030672,818.4962608185893,861.0,112.2327272571182,0.0,50,0,0,0,0,0,0,0,0,1,20.0,1,,1,119692,1,2,3,0,2,,480.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,935.952404171912,480.0,44742.01737322402,1,1,0,1,140.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019243656199446825,29828.01158214935,8,4,8,8_1,8_1,8_1_0 +19673,1,23.0,250.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,447.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119693,2,1,0,1,1,648.0,0.0,268.0,42,1.0,0.0,3.0,3.0,1.8,2,2,260.328478753573,0.0,19247.4386774691,6,1,2,3,60.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02322386928933327,10693.021487482834,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +19674,2,55.0,0.0,1,111,510.0,912.0,0.0,68,63,0.0,0.0,869.6522771197511,1422.0,0.0,1731.4356917210876,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,119694,1,2,3,0,1,,211.0,493.0,43,2.0,4.0,5.0,2.0,1.5,2,2,333.839820844706,510.0,37773.689069938606,1,1,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03764525083496991,25182.45937995907,7,4,7,7_1,7_3,7_1_0 +19675,2,39.0,0.0,1,112,0.0,0.0,0.0,52,43,0.0,0.0,0.0,829.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,119695,2,1,1,0,1,,136.0,680.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1876.11867317082,0.0,39287.10022387607,1,1,2,3,96.0,9,5,8,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02110107376915004,18708.14296375051,5,3,5,5_1,5_2,5_1_0 +19676,2,55.0,0.0,2,111,300.0,,,0,65,0.0,0.0,,576.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,119696,2,2,0,0,2,,440.0,213.0,32,1.0,0.0,3.0,3.0,2.0,3,2,97.30278481369292,300.0,29140.891532529928,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01976603905055589,14570.445766264964,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +19677,1,52.0,450.0,6,111,400.0,1000.0,0.0,0,52,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,71,1,2,2,2,1,2,2,2,0,,1,,4,119697,2,1,2,0,2,,0.0,414.0,32,1.0,0.0,6.0,6.0,3.5,6,4,283.335151565498,400.0,9402.572482232685,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.14889542225231148,2686.44928063791,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +19678,2,85.0,0.0,5,112,500.0,0.0,0.0,0,75,1926.905568843871,221.1626552607074,852.6002716860306,2624.0,180.1265993015477,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,119698,2,1,2,0,1,,397.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1059.85292572739,500.0,18247.004679489746,0,5,0,1,176.0,7,4,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14380442412827707,18247.004679489746,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +19679,2,27.0,0.0,2,111,210.0,0.0,0.0,31,38,0.0,0.0,358.0921141081328,210.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,119699,2,1,0,1,1,660.0,0.0,592.0,43,2.0,0.0,2.0,2.0,1.5,2,2,275.653138835363,210.0,39137.224349444004,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005365735651689957,26091.482899629336,7,4,7,7_0,7_4,7_0_1 +19680,1,43.0,372.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,434.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,1,119700,2,2,0,0,1,,0.0,590.0,32,1.0,0.0,4.0,4.0,2.1,3,2,1450.09427299406,0.0,25306.509011228907,0,1,2,3,96.0,8,6,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.01714973803014186,12050.71857677567,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +19681,1,29.0,199.0,2,111,258.0,132.0,0.0,0,46,0.0,0.0,439.9417401899918,390.0,0.0,250.60253432805214,20,0,0,0,0,0,0,0,0,0,,2,,2,119701,1,2,0,1,1,861.0,0.0,331.0,22,3.0,0.0,3.0,3.0,2.0,3,3,300.472592207033,258.0,45185.27539870146,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008631130308684759,22592.63769935073,6,3,6,6_0,6_4,6_0_1 +19682,1,59.0,270.0,2,111,570.0,0.0,0.0,0,77,0.0,0.0,971.9643097220749,570.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119702,2,2,0,1,1,750.0,180.0,355.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1532.9183360219,570.0,10886.794761852056,0,7,2,3,65.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05235700795952471,10886.794761852056,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +19683,2,57.0,0.0,9,111,1000.0,0.0,0.0,85,63,0.0,66.2163638505112,1705.2005433720612,1050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,119703,2,1,1,0,1,,447.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,859.6558937746,1000.0,27150.57799627207,6,1,1,2,115.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03867320983531809,18100.385330848047,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +19684,2,54.0,0.0,1,112,700.0,0.0,0.0,85,64,0.0,1324.327277010224,1193.6403803604428,1760.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,119704,2,1,1,0,1,,200.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,272.455392597034,700.0,22388.284026177913,6,1,0,1,90.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07861254564852257,14925.522684118609,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +19685,2,49.0,0.0,1,111,430.0,1080.0,0.0,0,42,0.0,0.0,733.2362336499863,1510.0,0.0,2050.384371774972,20,2,2,2,2,2,2,2,1,1,10.0,2,,1,119705,1,2,0,0,2,,0.0,,32,1.0,0.0,3.0,3.0,2.0,3,2,456.200032303838,430.0,40030.94744787143,0,1,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03772081592538703,20015.473723935716,5,3,5,5_0,5_4,5_1_0 +19686,2,59.0,0.0,5,111,3200.0,0.0,0.0,77,77,0.0,0.0,5456.641738790596,3200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119706,2,1,2,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,534.254964445508,3200.0,53070.73756088126,7,5,0,1,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06029688199318975,35380.49170725417,9,5,9,9_1,9_4,9_0_0 +19687,2,53.0,0.0,5,111,1200.0,,,46,37,0.0,99.3245457757668,,1375.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,119707,2,1,0,0,2,,400.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,71.82487211730052,1200.0,84208.60591231938,4,1,0,1,136.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016328497367973205,46782.55884017744,10,5,10,10_1,10_2,10_0_0 +19688,2,77.0,0.0,2,120,250.0,280.0,0.0,77,75,0.0,0.0,426.3001358430153,530.0,0.0,531.581133423141,50,0,0,0,0,0,0,0,0,0,,1,,2,119708,2,1,1,0,1,,370.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1940.8606900123,250.0,46541.632727698,5,5,0,1,110.0,0,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011387653783030796,31027.75515179867,8,4,8,8_1,8_1,8_0_1 +19689,2,53.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,766.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,119709,2,1,0,1,1,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,1610.15123913296,0.0,10701.497739880151,0,4,0,1,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07157876575962148,10701.497739880151,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +19690,2,68.0,0.0,9,300,480.0,,,77,78,0.0,0.0,,618.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,119710,2,1,0,0,2,,600.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,88.01360779036266,480.0,19629.2995763799,7,5,0,1,58.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03148354823335849,13086.1997175866,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +19691,1,35.0,200.0,2,111,0.0,0.0,300.0,85,56,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,50,2,1,2,1,1,2,2,2,2,10.0,2,,2,119711,2,2,0,1,1,780.0,300.0,357.0,42,1.0,1.0,3.0,3.0,1.8,2,2,311.764697218689,0.0,16487.89571588001,7,1,2,3,42.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.018195166027830983,9159.942064377783,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19692,1,46.0,434.0,1,111,347.0,1524.0,0.0,85,53,0.0,0.0,591.7045885501052,1893.0,30.482962958723462,2893.3201690602386,50,2,2,2,1,1,2,1,2,0,,1,,1,119712,1,2,1,0,1,,538.0,419.0,42,2.0,0.0,6.0,4.0,2.5,4,3,188.70837379405,347.0,13488.468588422664,6,4,2,3,72.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,1,0.14034209944520964,5395.387435369065,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +19693,2,48.0,0.0,2,111,750.0,0.0,0.0,46,46,0.0,0.0,1278.9004075290459,1051.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,2,119713,1,2,0,1,2,420.0,0.0,445.0,43,2.0,0.0,3.0,3.0,2.0,3,2,830.796380045177,750.0,46831.65189937349,1,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02244208686591429,23415.825949686747,6,3,6,6_0,6_4,6_0_1 +19694,2,77.0,0.0,7,111,1064.0,,,86,74,0.0,0.0,,1114.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,0,,1,,5,119714,2,2,0,0,2,,542.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,132.3596903307077,1064.0,79445.0,5,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01402227956447857,39722.5,9,5,9,9_1,9_2,9_0_0 +19695,1,25.0,299.0,2,111,218.0,600.0,0.0,0,55,0.0,0.0,371.73371845510934,818.0,0.0,1139.1024287638734,41,0,0,0,0,0,0,0,0,3,70.0,2,,2,119715,2,1,0,0,1,,0.0,455.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1320.46266532226,218.0,13645.635494016835,0,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05994590727259762,13645.635494016835,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +19696,2,43.0,0.0,6,111,360.0,,,0,52,0.0,0.0,,560.0,277.1178450793042,,42,0,0,0,0,0,0,0,0,2,40.0,2,,4,119716,2,3,0,0,2,,250.0,382.0,32,1.0,0.0,3.0,2.0,1.5,2,1,64.12291209408673,360.0,42632.22378015863,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013135603783836122,28421.482520105754,8,4,8,8_0,8_2,8_0_0 +19697,2,86.0,0.0,2,111,200.0,0.0,0.0,86,78,1081.0499223125166,0.0,341.04010867441224,1225.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119717,2,1,1,0,1,,135.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1555.95297109003,200.0,35431.0791291467,5,5,0,1,90.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03457416567908814,23620.719419431134,6,3,6,6_1,6_3,6_0_1 +19698,1,36.0,47.0,1,111,900.0,210.0,0.0,85,46,0.0,0.0,1534.680489034855,1110.0,0.0,398.6858500673557,50,2,2,2,1,2,2,2,2,1,10.0,1,,1,119718,2,2,2,0,1,,300.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,278.065524472702,900.0,25967.76508003156,6,1,1,2,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.042745303516842005,10819.902116679817,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +19699,2,58.0,0.0,6,111,0.0,,,0,45,0.0,0.0,,818.0,196.75367000630598,,41,0,0,0,0,0,0,0,0,1,30.0,2,,4,119719,1,3,0,0,2,,469.0,600.0,32,2.0,2.0,4.0,3.0,2.0,3,3,111.0794659937959,0.0,31403.589553978003,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026047977687199807,15701.794776989002,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +19700,2,73.0,0.0,7,111,710.0,,,77,75,0.0,0.0,,802.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,5,119720,2,3,0,0,2,,500.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,101.616723640821,710.0,22628.9021483376,5,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03544140121083682,11314.4510741688,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +19701,2,39.0,0.0,9,112,1124.0,1362.0,0.0,46,54,0.0,0.0,1916.6454107501968,2486.0,0.0,2585.7625132939925,31,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,119721,2,1,1,0,1,,42.0,,43,2.0,0.0,10.0,5.0,2.4,2,2,1604.42780279828,1124.0,75694.0957935348,1,1,1,2,200.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03284272008190545,31539.2065806395,8,4,8,8_1,8_2,8_0_0 +19702,2,38.0,0.0,5,111,300.0,0.0,0.0,0,43,0.0,0.0,511.56016301161833,300.0,0.0,0.0,31,2,1,2,1,2,2,2,2,2,60.0,2,,3,119722,2,2,0,1,2,,0.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,849.988488350564,300.0,27082.435716264292,0,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011077290209160756,20832.64285866484,5,3,5,5_0,5_4,5_0_0 +19703,2,42.0,0.0,6,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,181.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,25.0,2,,4,119723,2,2,0,1,1,,194.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,986.184515196853,0.0,44814.0658075313,0,1,1,2,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004038910479075116,44814.0658075313,10,5,10,10_0,10_4,10_0_0 +19704,1,62.0,450.0,2,111,670.0,,,85,68,0.0,0.0,,870.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,2,119724,2,2,0,0,2,,400.0,800.0,42,2.0,0.0,6.0,5.0,2.5999999999999996,3,3,89.68117512519449,670.0,22897.91181202307,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03799473101050143,8806.889158470412,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +19705,1,31.0,33.0,1,112,1500.0,0.0,0.0,64,63,0.0,0.0,2557.8008150580918,1566.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,119725,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1986.95605487421,1500.0,37079.71187269081,1,1,1,2,130.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04223333787966563,17657.00565366229,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +19706,0,62.0,0.0,2,211,800.0,0.0,0.0,90,71,0.0,279.4330554491572,1364.160434697649,1081.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,119726,1,2,2,0,2,,196.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,971.928150475397,800.0,10634.00744634417,6,5,0,1,80.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10165499746491463,7089.33829756278,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +19707,2,79.0,0.0,2,111,218.0,58.0,0.0,0,75,0.0,0.0,371.73371845510934,276.0,0.0,110.11323478050777,60,2,2,1,2,2,2,2,1,0,,2,,2,119727,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1018.69495273976,218.0,47388.432452241985,0,5,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005824206155756524,47388.432452241985,10,5,10,10_0,10_4,10_0_1 +19708,1,50.0,450.0,2,111,0.0,0.0,0.0,21,68,0.0,0.0,0.0,781.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119728,2,2,0,1,1,813.0,0.0,491.0,43,2.0,1.0,5.0,6.0,2.6999999999999997,2,2,405.60371761583,0.0,22988.877322034874,4,1,2,3,106.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033972950877919135,8514.399008161065,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19709,1,52.0,213.0,9,400,498.0,0.0,0.0,54,62,0.0,728.3800023556231,849.1898705992865,1967.0,1273.3564981394027,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,119729,2,1,1,0,1,,329.0,550.0,43,2.0,0.0,5.0,4.0,2.5,4,3,1303.84505830537,498.0,50195.294565496035,1,4,2,3,119.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03918694007131308,20078.117826198413,5,3,5,5_1,5_0,5_0_0 +19710,2,29.0,0.0,2,111,160.0,0.0,0.0,54,53,0.0,0.0,272.8320869395298,160.0,0.0,0.0,43,2,2,1,1,1,2,2,2,2,25.0,3,,2,119730,1,2,0,1,2,,0.0,700.0,43,2.0,0.0,2.0,2.0,1.5,2,2,947.648799445188,160.0,38311.2997633864,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.004176313541648876,25540.866508924268,7,4,7,7_0,7_4,7_0_1 +19711,1,51.0,80.0,1,111,1200.0,0.0,0.0,0,35,2636.7071275915036,529.7309108040896,2046.2406520464733,4250.0,207.83838380947813,0.0,31,1,2,2,1,1,2,2,2,2,20.0,1,,1,119731,1,2,1,0,1,,1400.0,,32,1.0,0.0,6.0,4.0,2.5,4,2,2154.59148879751,1200.0,39598.21739321382,0,1,1,2,120.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0.1073280637306756,15839.286957285527,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +19712,2,81.0,0.0,2,111,550.0,850.0,0.0,77,74,0.0,0.0,937.8602988546337,1460.0,83.13535352379125,1613.7284407488207,41,0,0,0,0,0,0,0,0,0,,1,,2,119732,2,1,2,0,2,,350.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,224.957237447639,550.0,37462.57934504277,5,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03897222309635747,24975.05289669518,7,4,7,7_1,7_2,7_0_1 +19713,2,34.0,0.0,1,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,748.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,,1,119733,1,3,0,0,1,,0.0,630.0,42,1.0,0.0,4.0,2.0,1.5,2,2,1301.67115582184,0.0,20443.132932467044,6,1,2,3,86.0,7,6,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.036589303727123615,13628.755288311362,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +19714,2,81.0,0.0,5,211,480.0,,,78,78,0.0,476.7578197236806,,932.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,3,119734,2,1,0,0,2,,280.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,118.13612714348994,480.0,24173.69941935248,5,5,0,1,108.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03855429753767347,16115.799612901654,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +19715,2,63.0,0.0,1,211,366.0,0.0,0.0,0,77,1265.6194212439218,0.0,624.1033988741744,1626.0,83.13535352379125,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,119735,1,3,4,0,1,,212.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1049.67645559209,366.0,9055.502276212006,0,5,0,1,90.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.1795593386654384,9055.502276212006,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +19716,2,58.0,0.0,6,111,1680.0,0.0,0.0,31,37,0.0,0.0,2864.7369128650625,1680.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,4,119736,2,1,0,0,1,,0.0,549.0,43,3.0,1.0,5.0,3.0,2.0,3,3,853.005600206365,1680.0,27833.190498701915,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.060359591189459647,13916.595249350958,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +19717,2,39.0,0.0,8,112,1000.0,0.0,0.0,56,46,0.0,105.94618216081791,1705.2005433720612,1113.0,45.72444443808519,0.0,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,119737,2,1,1,0,1,,313.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1641.975355408,1000.0,51726.90473843798,1,1,1,2,140.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02151684902910759,24631.85939925618,7,4,7,7_1,7_0,7_0_0 +19718,2,75.0,0.0,2,111,333.0,125.0,0.0,0,75,1612.6100792349637,0.0,567.8317809428963,1987.0,0.0,237.31300599247362,70,0,0,0,0,0,0,0,0,0,,2,,2,119738,2,1,0,1,1,,746.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1843.23587434924,333.0,38305.90305636004,0,5,0,1,77.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05187190071139943,38305.90305636004,9,5,9,9_0,9_3,9_0_1 +19719,1,54.0,253.0,7,111,150.0,,,0,42,0.0,0.0,,213.0,87.29212119998083,,43,0,0,0,0,0,0,0,0,1,20.0,2,,5,119739,2,3,0,0,2,,430.0,314.0,12,1.0,0.0,2.0,1.0,1.0,1,1,97.16045445652243,150.0,11256.411410866745,0,1,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018922549312152315,11256.411410866745,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +19720,2,81.0,0.0,2,111,290.0,1100.0,0.0,77,71,0.0,0.0,494.50815757789775,1390.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,2,119740,2,2,3,0,1,,231.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,241.425936651937,290.0,31818.896415379426,5,5,0,1,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043684733180380006,21212.59761025295,5,3,5,5_1,5_2,5_0_1 +19721,2,82.0,0.0,2,111,330.0,990.0,0.0,77,78,0.0,0.0,562.7161793127802,1320.0,0.0,1879.519007460391,71,0,0,0,0,0,0,0,0,0,,2,,2,119741,2,1,0,0,1,,0.0,255.0,41,0.0,3.0,3.0,2.0,1.5,2,2,1730.2867916592,330.0,23004.45223605964,5,5,2,3,60.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05738019694861027,15336.301490706426,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +19722,2,60.0,0.0,8,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,602.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,2000.0,6,119742,2,1,0,1,1,,121.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1601.24915408192,0.0,34507.617188727185,0,1,0,1,57.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017445423620749422,34507.617188727185,9,5,9,9_0,9_2,9_0_0 +19723,2,41.0,0.0,5,111,600.0,0.0,0.0,85,65,0.0,0.0,1023.1203260232367,617.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,119743,2,2,0,1,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,265.94409862012,600.0,51473.27383299324,6,1,1,2,85.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01198680313208515,21447.19743041385,6,3,6,6_0,6_3,6_0_0 +19724,1,33.0,241.0,2,111,680.0,180.0,0.0,85,62,0.0,0.0,1159.5363694930015,860.0,0.0,341.730728629162,43,2,1,2,2,1,2,2,2,0,,2,,2,119744,1,3,0,1,1,45.0,0.0,395.0,42,1.0,0.0,3.0,3.0,1.8,2,2,3838.59872626287,680.0,4785.498569112602,6,1,2,3,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.17970959296712816,2658.610316173668,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19725,0,76.0,0.0,7,111,1500.0,0.0,0.0,78,78,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,119745,2,1,2,0,1,,300.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2408.90506263878,1500.0,23815.72118600504,5,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06298360600901949,15877.147457336694,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +19726,2,70.0,0.0,2,111,374.0,1000.0,0.0,77,78,0.0,0.0,637.7450032211509,1374.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,119746,2,1,2,0,1,,250.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,233.763938935286,374.0,34485.01522545393,5,5,0,1,100.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039843392587103434,22990.01015030262,6,3,6,6_1,6_2,6_0_1 +19727,2,64.0,0.0,6,112,1300.0,1000.0,0.0,34,34,0.0,198.6490915515336,2216.7607063836795,2450.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,4,25.0,1,,4,119747,2,1,2,0,2,,1000.0,,43,2.0,5.0,6.0,2.0,1.5,2,2,1481.72137326288,1300.0,55774.48623955337,1,1,0,1,160.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04392689498702264,37182.990826368914,9,5,9,9_1,9_1,9_0_0 +19728,0,37.0,0.0,6,112,768.0,0.0,0.0,0,35,0.0,0.0,1309.5940173097429,768.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,4,119748,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1200.15105006119,768.0,13904.472586422122,0,1,5,0,79.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0552340259744883,13904.472586422122,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +19729,2,62.0,0.0,2,400,510.0,0.0,0.0,71,75,0.0,158.91927324122688,869.6522771197511,662.0,44.33885521268867,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,119749,2,2,2,0,1,,320.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1006.23246010002,510.0,38199.07589792607,5,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.017330262170974185,25466.05059861738,7,4,7,7_1,7_0,7_0_1 +19730,1,58.0,200.0,5,111,0.0,0.0,2800.0,0,56,0.0,0.0,1764.8912131612826,2800.0,0.0,3350.8500131811065,70,0,0,0,0,0,0,0,0,0,,2,,3,119750,1,1,0,0,1,,700.0,431.0,32,1.0,3.0,3.0,2.0,1.5,2,1,355.051679356815,0.0,14959.902346542049,0,4,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.18716699715939084,9973.268231028032,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +19731,2,68.0,0.0,1,111,1000.0,1000.0,0.0,0,86,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,0,,2,,1,119751,2,1,0,0,1,,173.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1444.55172939841,1000.0,28608.75110977615,0,7,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.069908679072557,28608.75110977615,8,4,8,8_0,8_4,8_1_0 +19732,2,34.0,0.0,2,111,370.0,211.0,0.0,0,62,1915.3040574824684,0.0,630.9242010476627,2397.0,0.0,400.58435411529547,50,2,2,2,2,1,2,2,2,0,,2,,2,119752,1,2,0,1,2,,0.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,303.81675668942,370.0,23257.549069009794,0,4,0,1,92.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.10306331044976502,15505.032712673195,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +19733,2,69.0,0.0,5,111,600.0,360.0,0.0,77,77,0.0,0.0,1023.1203260232367,960.0,0.0,683.461457258324,50,2,2,2,2,1,2,2,2,0,,2,,3,119753,1,3,0,1,1,,489.0,644.0,41,1.0,0.0,4.0,4.0,2.5,4,4,986.778223349256,600.0,36917.30890381167,7,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02600406228149748,14766.923561524667,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +19734,2,70.0,0.0,7,111,720.0,,,0,75,0.0,0.0,,804.0,116.38949493330776,,33,0,0,0,0,0,0,0,0,0,,1,,5,119754,2,1,0,0,2,,520.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,98.52495596346157,720.0,36623.93499687018,0,5,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02195285678801878,36623.93499687018,9,5,9,9_1,9_2,9_0_0 +19735,2,50.0,0.0,5,111,653.0,,,46,43,0.0,0.0,,791.0,191.2113131047199,,33,0,0,0,0,0,0,0,0,0,,1,,3,119755,2,1,0,0,2,,226.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,106.01649450017734,653.0,165291.16187680748,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004785494826332803,82645.58093840374,10,5,10,10_1,10_2,10_0_0 +19736,2,83.0,0.0,5,111,238.0,83.0,0.0,0,74,0.0,0.0,405.83772932255056,321.0,0.0,157.57583597900248,60,2,1,2,1,1,2,2,2,0,,2,,3,119756,2,2,0,1,1,768.0,0.0,383.0,11,0.0,3.0,3.0,1.0,1.0,1,1,230.72340525417,238.0,27946.233636082194,0,5,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01148634210176886,27946.233636082194,7,4,7,7_0,7_4,7_0_0 +19737,1,39.0,300.0,2,111,200.0,,,85,68,0.0,0.0,,384.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,119757,1,3,0,0,2,,120.0,352.0,42,1.0,0.0,2.0,4.0,2.1,2,2,105.60436080735232,200.0,22368.43259673055,6,1,2,3,23.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017167049963801525,10651.634569871689,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +19738,2,47.0,0.0,7,111,860.0,0.0,0.0,54,47,0.0,0.0,1466.4724672999725,860.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,119758,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,767.470763071483,860.0,51217.06585010494,1,1,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016791278175070194,28453.92547228052,8,4,8,8_0,8_4,8_0_0 +19739,2,60.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,5680.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119759,2,1,3,0,1,,243.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,431.008872517112,0.0,61908.81164934655,0,4,0,1,120.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09174784410612981,61908.81164934655,10,5,10,10_1,10_3,10_0_1 +19740,0,76.0,0.0,2,112,164.0,0.0,0.0,0,75,0.0,0.0,279.65288911301803,164.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119760,2,1,1,0,1,,190.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1393.38994836756,164.0,23025.59860185391,0,5,0,1,72.0,5,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007122507554995574,23025.59860185391,6,3,6,6_1,6_0,6_0_1 +19742,2,77.0,0.0,2,400,700.0,0.0,0.0,77,78,685.543853173791,0.0,1193.6403803604428,1525.0,242.47811444439117,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119762,2,1,2,0,1,,203.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,901.229539995891,700.0,28780.9431867187,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052986449752756154,19187.295457812466,5,3,5,5_1,5_0,5_0_1 +19743,2,57.0,0.0,7,111,800.0,0.0,0.0,0,77,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,119763,2,1,0,0,1,,100.0,300.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2585.95326878459,800.0,5369.789365833811,0,7,2,3,25.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.1489816351252313,5369.789365833811,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +19744,2,47.0,0.0,2,111,350.0,132.0,0.0,55,67,0.0,0.0,596.8201901802214,482.0,0.0,250.60253432805214,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,119764,2,1,0,1,1,440.0,194.0,307.0,43,2.0,0.0,3.0,4.0,2.5,4,4,938.36571316974,350.0,38648.17346117034,1,1,2,3,71.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012471482008956087,15459.269384468138,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +19745,2,48.0,0.0,7,400,320.0,,,85,52,0.0,0.0,,470.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,119765,2,1,0,0,2,,600.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,57.80964115579707,320.0,28616.795384051657,6,1,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016423921466130843,11446.718153620663,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +19746,2,66.0,0.0,7,120,960.0,0.0,0.0,77,75,0.0,953.5156394473612,1636.9925216371787,1740.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,119766,2,2,3,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2925.68678881209,960.0,43594.221558781195,5,5,0,1,100.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039913546745039,29062.814372520796,8,4,8,8_1,8_1,8_0_0 +19747,2,40.0,0.0,1,111,800.0,3000.0,0.0,0,52,0.0,0.0,1364.160434697649,3800.0,0.0,5695.512143819367,50,0,0,0,0,0,0,0,0,3,90.0,1,,1,119767,2,2,5,0,1,,600.0,,32,1.0,0.0,4.0,4.0,2.1,2,1,692.801670468585,800.0,25372.533096523573,0,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14976825473214805,12082.158617392177,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +19748,2,86.0,0.0,2,111,212.0,126.0,0.0,75,74,0.0,0.0,361.502515194877,338.0,0.0,239.2115100404134,41,0,0,0,0,0,0,0,0,0,,2,,2,119768,2,3,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1003.03486402724,212.0,101764.02615025146,5,5,0,1,108.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0033214094684201408,67842.68410016764,10,5,10,10_0,10_4,10_0_1 +19749,2,46.0,0.0,7,112,240.0,140.0,0.0,0,63,0.0,0.0,409.2481304092947,380.0,0.0,265.7905667115705,42,0,0,0,0,0,0,0,0,0,,2,,5,119769,2,1,0,0,1,,80.0,258.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2569.0364813254,240.0,17338.366633264384,0,1,2,3,40.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021916712689126903,17338.366633264384,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +19750,2,40.0,0.0,1,111,1700.0,0.0,0.0,54,53,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,119770,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,203.376942947619,1700.0,50810.17452049807,1,1,1,2,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03345786579249355,24195.321200237173,7,4,7,7_1,7_3,7_1_0 +19751,1,27.0,413.0,8,111,420.0,,,0,54,0.0,0.0,,546.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,2,2002.0,6,119771,1,2,0,0,2,,240.0,496.0,32,1.0,0.0,4.0,3.0,1.6,1,1,77.1712989977263,420.0,9398.753513477097,0,4,2,3,82.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05809280977707071,5874.220945923185,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +19752,2,29.0,0.0,1,111,320.0,130.0,0.0,85,48,0.0,0.0,545.6641738790596,450.0,0.0,246.80552623217258,50,2,1,1,1,2,2,2,2,1,10.0,2,,1,119772,2,2,0,1,1,107.0,200.0,250.0,42,1.0,0.0,2.0,3.0,1.8,2,2,732.270114774174,320.0,21651.593375954475,6,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.020783689781452976,12028.662986641375,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +19753,2,27.0,0.0,6,112,545.0,0.0,0.0,55,63,0.0,0.0,929.3342961377733,611.0,91.44888887617039,0.0,50,2,2,2,1,1,2,2,2,2,10.0,2,,4,119773,1,3,0,0,1,,0.0,480.0,43,2.0,1.0,2.0,2.0,1.5,2,2,2485.00310475142,545.0,29297.0,1,1,2,3,40.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.020855377683721883,19531.333333333332,5,3,5,5_0,5_1,5_0_0 +19754,1,29.0,410.0,6,222,240.0,0.0,0.0,0,56,0.0,0.0,409.2481304092947,345.0,145.4868686666347,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,119774,2,2,0,0,1,,400.0,450.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1640.26754771763,240.0,12728.192109569096,0,1,2,3,60.0,1,0,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.027105184855013925,7955.1200684806845,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +19755,2,58.0,0.0,5,112,740.0,1420.0,0.0,52,21,0.0,0.0,1261.8484020953254,2160.0,0.0,2695.8757480745003,50,0,0,0,0,0,0,0,0,0,,1,,3,119775,2,2,2,0,1,,438.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,955.770798182259,740.0,48121.00867126452,1,4,0,1,98.0,8,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04488683964951559,32080.67244750968,8,4,8,8_1,8_0,8_0_0 +19756,0,40.0,0.0,7,112,680.0,,,54,42,0.0,0.0,,806.0,174.58424239996165,,42,0,0,0,0,0,0,0,0,0,,1,,5,119776,2,1,0,0,2,,150.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,112.55277534558847,680.0,25993.529820948086,4,1,5,0,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03100771636449497,17329.01988063206,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +19757,2,75.0,0.0,2,111,625.0,0.0,0.0,77,74,0.0,0.0,1065.7503396075383,2078.0,138.5589225396521,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,119777,2,2,2,0,1,,401.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1234.99612959438,625.0,81125.25195165093,5,5,0,1,140.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025614712435512034,54083.50130110062,10,5,10,10_1,10_3,10_0_1 +19758,2,78.0,0.0,2,111,60.0,0.0,0.0,0,75,0.0,0.0,102.31203260232367,60.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,119778,1,3,0,1,2,,0.0,495.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1285.96669442676,60.0,25203.638574192984,0,5,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0023806086499524874,25203.638574192984,7,4,7,7_0,7_4,7_0_1 +19759,2,57.0,0.0,5,111,501.0,0.0,0.0,0,77,0.0,0.0,854.3054722294027,501.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,119779,2,2,0,1,1,310.0,0.0,337.0,21,1.0,1.0,3.0,2.0,1.5,2,2,1245.80564618432,501.0,35620.82290710917,0,5,2,3,72.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014064807017695566,23747.215271406112,6,3,6,6_0,6_3,6_0_0 +19760,2,64.0,0.0,9,111,980.0,,,0,52,0.0,0.0,,1150.0,235.55016831740858,,31,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,119780,2,2,0,0,2,,960.0,,12,1.0,4.0,8.0,1.0,1.0,1,1,235.0530581017053,980.0,41829.10459411608,0,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02749281896322891,41829.10459411608,9,5,9,9_1,9_2,9_0_0 +19761,2,43.0,0.0,9,112,3000.0,0.0,0.0,54,46,0.0,364.19000117781155,5115.6016301161835,3275.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,119781,2,1,1,0,1,,800.0,1600.0,43,2.0,0.0,6.0,5.0,2.4,2,2,438.613613865301,3000.0,62886.18461809578,1,1,2,3,160.0,7,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05207821113474905,26202.576924206576,7,4,7,7_1,7_1,7_0_0 +19762,2,52.0,0.0,1,300,1386.0,0.0,0.0,85,85,0.0,0.0,2363.4079531136767,1536.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119782,2,1,1,0,1,,555.0,,41,1.0,0.0,5.0,5.0,2.8,4,3,1137.54498922871,1386.0,16461.17819908004,6,7,0,1,180.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09331045332379925,5878.992213957158,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +19763,2,61.0,0.0,7,112,830.4,0.0,0.0,45,22,0.0,0.0,1415.9985312161596,900.0,96.99124577775646,0.0,20,2,2,1,2,2,2,2,1,0,,1,,5,119783,2,1,2,0,1,,214.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1335.88260345335,830.4,35778.539766854614,1,1,0,1,170.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.025154743761615552,23852.359844569743,6,3,6,6_1,6_0,6_0_0 +19764,2,55.0,0.0,5,211,320.0,320.0,0.0,85,62,0.0,0.0,545.6641738790596,640.0,0.0,607.5212953407324,50,2,2,2,2,1,2,2,2,2,10.0,2,,3,119784,2,2,0,1,1,,350.0,265.0,42,1.0,1.0,3.0,2.0,1.5,2,2,262.790106460624,320.0,21838.027500830984,6,1,2,3,63.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02930667616274623,14558.685000553989,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +19765,2,43.0,0.0,1,112,500.0,1300.0,0.0,55,46,0.0,52.973091080408956,852.6002716860306,1840.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,0,,1,,1,119785,2,2,2,0,1,,400.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,131.503739072305,500.0,56959.18865509823,1,1,1,2,100.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03230383092606267,28479.594327549115,8,4,8,8_1,8_0,8_1_0 +19766,2,57.0,0.0,7,111,400.0,400.0,0.0,74,56,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,60,0,0,0,0,0,0,0,0,2,60.0,2,,5,119786,2,2,0,1,1,,0.0,516.0,42,2.0,0.0,4.0,3.0,2.0,3,3,859.96010690087,400.0,34384.65519622482,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023266192301030667,17192.32759811241,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +19767,2,44.0,0.0,1,111,1450.0,0.0,0.0,0,35,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,90.0,2,,1,119787,1,2,0,0,2,,0.0,780.0,32,1.0,0.0,2.0,2.0,1.3,1,1,673.911761384908,1450.0,44705.96197603487,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03243415275969878,34389.20152002682,9,5,9,9_0,9_4,9_1_0 +19768,2,58.0,0.0,5,111,420.0,,,81,64,0.0,0.0,,700.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,,3,119788,2,1,0,0,2,,560.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,76.73824828618208,420.0,9315.34090998353,4,4,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0751448612309818,6210.2272733223535,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19769,2,45.0,0.0,1,111,0.0,0.0,0.0,46,33,0.0,0.0,0.0,2272.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,119789,2,2,0,0,1,,0.0,1398.0,43,2.0,0.0,4.0,4.0,2.1,2,2,987.327189002227,0.0,84635.5619789336,1,1,2,3,86.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026844507756272912,40302.648561396956,9,5,9,9_0,9_4,9_1_0 +19770,1,39.0,314.0,2,211,0.0,0.0,1300.0,85,63,0.0,0.0,819.4137775391669,1360.0,83.13535352379125,1555.751791834085,71,0,0,0,0,0,0,0,0,0,,1,,2,119790,2,3,2,0,1,,300.0,260.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,2314.7416236037,0.0,20930.498458623624,6,4,2,3,90.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06497695230185324,8050.191714855241,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +19771,2,56.0,0.0,5,111,665.0,200.0,0.0,0,54,0.0,0.0,1133.9583613424206,865.0,0.0,379.7008095879578,20,2,2,2,2,1,2,2,2,2,3.0,2,,3,119791,1,3,0,1,2,906.0,0.0,279.0,22,1.0,1.0,4.0,2.0,1.5,2,2,274.44949530221,665.0,23524.60889504294,0,1,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.036770005565630086,15683.072596695294,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +19772,1,42.0,150.0,1,211,0.0,,,35,34,0.0,0.0,,254.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,1,119792,2,3,0,0,2,,594.0,765.0,43,2.0,1.0,2.0,4.0,2.1,2,2,82.91513154388856,0.0,45593.0,1,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.005571030640668524,21710.95238095238,6,3,6,6_1,6_2,6_1_0 +19773,2,33.0,0.0,7,111,600.0,1080.0,0.0,22,52,0.0,0.0,1023.1203260232367,1680.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,1,10.0,1,,5,119793,2,2,3,0,1,,500.0,389.0,43,2.0,0.0,4.0,4.0,2.1,2,2,527.582801769114,600.0,27671.639703244127,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06071197869069691,13176.971287259108,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +19774,1,44.0,430.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1531.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,3,119794,2,1,0,1,1,1330.0,0.0,403.0,32,3.0,0.0,5.0,7.0,3.8,6,3,521.096468057176,0.0,27489.0,0,1,2,3,92.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05569500527483721,7233.947368421053,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +19775,2,52.0,0.0,2,111,293.0,771.0,0.0,0,68,0.0,0.0,499.62375920801395,1064.0,0.0,1463.7466209615773,50,0,0,0,0,0,0,0,0,2,40.0,2,,2,119795,1,2,0,0,1,,450.0,288.0,12,1.0,1.0,3.0,1.0,1.0,1,1,400.31368578719,293.0,16543.813572135638,0,1,2,3,74.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06431407095834726,16543.813572135638,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +19776,0,51.0,0.0,1,120,600.0,0.0,0.0,56,47,843.7462808292812,0.0,1023.1203260232367,1500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,119796,2,1,2,0,1,,582.0,,43,3.0,0.0,7.0,4.0,2.5,4,4,1780.72590058794,600.0,39350.50469080922,1,1,5,0,120.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03811895201309433,15740.201876323688,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +19777,1,35.0,110.0,1,112,0.0,0.0,0.0,56,62,0.0,0.0,0.0,2061.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,119797,2,2,5,0,2,,274.0,508.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1184.79259194739,0.0,11426.641403723286,4,1,2,3,97.0,9,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.18036796003140856,5441.257811296803,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +19778,2,30.0,0.0,9,112,1600.0,0.0,0.0,56,47,0.0,0.0,2728.320869395298,1660.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,119798,1,2,1,0,1,,182.0,490.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1569.42369492481,1600.0,49115.0,1,1,2,3,65.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033798228647052835,27286.11111111111,7,4,7,7_1,7_0,7_0_0 +19779,1,28.0,310.0,9,111,0.0,0.0,0.0,55,67,0.0,0.0,0.0,953.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,119799,2,1,1,0,1,,1153.0,700.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1677.51228003273,0.0,29645.43932290889,1,1,2,3,98.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.032146597310283645,14116.875868051851,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +19780,1,48.0,150.0,2,211,0.0,0.0,120.0,0,56,0.0,0.0,75.63819484976925,120.0,0.0,143.6078577077617,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,119800,2,3,0,0,1,,480.0,313.0,32,2.0,0.0,4.0,4.0,2.5,4,3,2319.81322880968,0.0,19026.77642003113,0,1,2,3,71.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.006306901250685095,7610.710568012451,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +19781,2,50.0,0.0,5,112,450.0,0.0,0.0,65,63,1371.087706347582,0.0,767.3402445174275,1876.0,174.58424239996165,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,119801,2,1,2,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2530.9223715331,450.0,33869.22469546312,4,1,0,1,87.0,7,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055389517087212674,22579.483130308745,6,3,6,6_1,6_1,6_0_0 +19782,2,75.0,0.0,6,111,600.0,,,77,78,0.0,0.0,,738.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,119802,2,1,0,0,2,,260.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,73.40102057496635,600.0,17873.699453270547,5,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04128971743815241,11915.799635513698,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +19783,2,42.0,0.0,1,112,1300.0,0.0,0.0,55,47,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,15.0,1,,1,119803,1,2,3,0,2,,260.0,750.0,43,2.0,0.0,4.0,2.0,1.5,2,2,246.300629275935,1300.0,24204.8967445342,1,1,2,3,90.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.05370814070064389,16136.597829689466,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19784,2,45.0,0.0,2,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,4786.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,2,119804,2,2,3,0,1,,345.0,,43,2.0,0.0,8.0,4.0,2.5,4,2,286.837478937385,0.0,51237.601676489445,1,1,1,2,150.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09340796296865068,20495.04067059578,5,3,5,5_1,5_3,5_0_1 +19785,2,62.0,0.0,2,111,150.0,0.0,0.0,0,75,0.0,0.0,255.78008150580916,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,119805,2,1,0,1,1,873.0,0.0,335.0,11,0.0,2.0,2.0,1.0,1.0,1,1,247.826516806506,150.0,20669.802675588635,0,5,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007256963327335116,20669.802675588635,5,3,5,5_0,5_4,5_0_1 +19786,2,75.0,0.0,1,112,0.0,,,0,77,0.0,0.0,,481.0,335.31259254595807,,71,0,0,0,0,0,0,0,0,0,,1,,1,119806,2,1,0,0,2,,435.0,,21,3.0,0.0,6.0,6.0,3.0999999999999996,4,4,71.55798006697829,0.0,45131.549913703406,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01065773280376424,14558.564488291422,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +19787,2,37.0,0.0,6,111,450.0,600.0,0.0,54,37,0.0,0.0,767.3402445174275,1150.0,138.5589225396521,1139.1024287638734,31,1,2,2,1,1,2,2,2,2,20.0,2,,4,119807,1,3,0,0,1,,0.0,585.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2532.79003713971,450.0,38710.26336917364,1,1,2,3,95.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.029707883643999847,21505.701871763133,6,3,6,6_0,6_3,6_0_0 +19788,2,66.0,0.0,6,111,1700.0,0.0,0.0,75,75,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119808,2,1,2,0,1,,200.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,919.786546664714,1700.0,40441.06152610597,5,5,0,1,140.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042036483115127844,26960.707684070647,7,4,7,7_1,7_2,7_0_0 +19789,2,70.0,0.0,5,300,960.0,0.0,0.0,77,74,1265.6194212439218,0.0,1636.9925216371787,2300.0,193.98249155551292,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,119809,2,1,2,0,1,,560.0,600.0,41,0.0,2.0,3.0,2.0,1.5,2,2,690.823277233868,960.0,35510.85969581998,5,5,2,3,80.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06476891913351046,23673.906463879986,6,3,6,6_1,6_0,6_0_0 +19790,2,40.0,0.0,2,111,2700.0,0.0,0.0,62,47,0.0,0.0,4604.0414671045655,2700.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,119810,1,2,0,0,1,888.0,0.0,540.0,43,3.0,0.0,5.0,7.0,3.3999999999999995,4,3,889.517925233406,2700.0,50837.647118609224,4,1,2,3,133.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05311024709111015,14952.249152532127,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +19791,2,68.0,0.0,2,112,362.0,858.0,0.0,77,75,0.0,79.45963662061344,617.2825967006861,1280.0,0.0,1628.916473132339,50,0,0,0,0,0,0,0,0,0,,1,,2,119811,2,2,2,0,1,,597.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,428.245430314232,362.0,35928.54000643409,5,5,0,1,90.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0356262737024877,23952.360004289392,6,3,6,6_1,6_0,6_0_1 +19792,2,71.0,0.0,2,111,400.0,,,86,71,0.0,0.0,,526.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,119812,2,1,0,0,2,,200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,134.93784313391907,400.0,12639.713466055167,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04161486741076922,8426.475644036778,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +19793,2,31.0,0.0,5,111,0.0,0.0,0.0,63,62,0.0,0.0,0.0,644.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,155.0,2,,3,119813,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,276.466511726434,0.0,23932.42478925512,1,1,1,2,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026909099502911007,15954.949859503415,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +19794,2,64.0,0.0,5,112,714.0,0.0,0.0,0,75,1786.632749656003,0.0,1217.5131879676517,2462.0,74.82181817141213,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,119814,1,2,2,0,2,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,831.876697146839,714.0,29066.909132549838,0,5,0,1,120.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08470112830961418,29066.909132549838,8,4,8,8_1,8_0,8_0_0 +19795,2,75.0,0.0,2,111,610.0,1600.0,0.0,86,78,0.0,0.0,1040.1723314569574,2210.0,0.0,3037.6064767036623,71,2,2,2,2,1,2,2,2,0,,1,,2,119815,1,3,4,0,2,,114.0,333.0,41,0.0,5.0,4.0,2.0,1.5,2,2,212.808396845473,610.0,16001.962998923646,5,5,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.1381080558771854,10667.975332615764,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +19796,1,35.0,522.0,9,112,360.0,,,0,85,0.0,0.0,,500.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,119816,2,2,0,0,2,,900.0,612.0,31,0.0,0.0,4.0,6.0,2.8999999999999995,3,2,198.12258232518917,360.0,24547.385717987312,0,6,2,3,99.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020368767808688508,8464.615764823213,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +19797,2,37.0,0.0,5,111,560.0,,,37,55,0.0,0.0,,780.0,304.8296295872346,,31,0,0,0,0,0,0,0,0,2,35.0,1,,3,119817,2,1,0,0,1,,280.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,115.89490504476727,560.0,89843.22728941655,4,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008681789641052701,37434.6780372569,9,5,9,9_1,9_2,9_0_0 +19798,2,70.0,0.0,1,112,640.0,0.0,0.0,22,78,0.0,0.0,1091.3283477581192,790.0,207.83838380947813,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,119818,2,1,3,0,1,,400.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1081.41462524458,640.0,23785.635211802597,4,5,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.03321332362854016,15857.090141201732,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +19799,2,49.0,0.0,2,111,360.0,350.0,0.0,78,54,0.0,0.0,613.872195613942,710.0,0.0,664.4764167789261,41,0,0,0,0,0,0,0,0,3,15.0,2,,2,119819,2,3,0,1,1,588.0,0.0,350.0,42,1.0,3.0,3.0,2.0,1.5,2,2,626.948403395311,360.0,40218.688946189344,5,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01765348445221438,26812.45929745956,7,4,7,7_0,7_4,7_0_1 +19800,2,71.0,0.0,1,111,150.0,410.0,0.0,0,77,0.0,0.0,255.78008150580916,560.0,0.0,778.3866596553135,70,0,0,0,0,0,0,0,0,0,,2,,1,119820,2,2,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1052.63841712481,150.0,23198.003469455994,0,5,0,1,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02414000845966475,23198.003469455994,6,3,6,6_0,6_4,6_1_0 +19801,2,58.0,0.0,6,111,470.0,,,85,52,0.0,0.0,,710.0,332.541414095165,,70,0,0,0,0,0,0,0,0,0,,2,,4,119821,2,3,0,0,2,,200.0,402.0,42,2.0,1.0,4.0,3.0,2.0,3,3,151.96562130762777,470.0,44961.717526930945,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015791211703038873,22480.858763465472,6,3,6,6_0,6_2,6_0_0 +19802,2,51.0,0.0,5,120,1500.0,0.0,0.0,55,42,0.0,0.0,2557.8008150580918,1550.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,119822,2,2,1,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2228.92273928192,1500.0,55937.216989116685,1,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027709637401188064,37291.477992744454,9,5,9,9_1,9_0,9_0_0 +19803,2,62.0,0.0,2,111,500.0,270.0,0.0,0,75,0.0,0.0,852.6002716860306,770.0,0.0,512.596092943743,50,0,0,0,0,0,0,0,0,0,,2,,2,119823,2,1,0,0,1,,350.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2122.12581723604,500.0,20502.543188900978,0,5,0,1,50.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03755631644843155,20502.543188900978,5,3,5,5_0,5_3,5_0_1 +19804,2,91.0,0.0,2,111,250.0,2180.0,0.0,75,74,0.0,0.0,426.3001358430153,2430.0,0.0,4138.73882450874,41,0,0,0,0,0,0,0,0,0,,1,,2,119824,2,2,3,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1312.49065038396,250.0,61844.299669348395,5,5,0,1,99.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03929222277545443,41229.53311289893,9,5,9,9_1,9_3,9_0_1 +19805,1,34.0,308.0,2,111,671.0,0.0,0.0,53,64,643.3565391323269,0.0,1144.189564602653,1381.0,138.5589225396521,0.0,50,2,2,2,1,1,2,2,2,0,,1,,2,119825,2,2,3,0,1,,146.0,297.0,43,2.0,0.0,4.0,2.0,1.5,2,2,448.48502739625,671.0,9254.526963415163,4,4,2,3,80.0,7,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.14922426672474406,6169.684642276775,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +19806,2,35.0,0.0,6,111,324.0,0.0,0.0,47,34,0.0,0.0,552.4849760525478,484.0,221.69427606344334,0.0,10,2,1,2,2,1,2,2,2,3,10.0,2,,4,119826,1,3,0,1,1,840.0,0.0,570.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1873.88728719649,324.0,38485.85795038029,1,1,2,3,118.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012576048080414886,25657.23863358686,7,4,7,7_0,7_3,7_0_0 +19807,2,65.0,0.0,6,111,0.0,0.0,1400.0,77,78,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,71,0,0,0,0,0,0,0,0,0,,1,,4,119827,2,1,2,0,1,,650.0,,41,2.0,1.0,6.0,4.0,2.5,4,4,818.174240162354,0.0,57223.49285806108,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02446547615456825,22889.397143224433,6,3,6,6_1,6_4,6_0_0 +19808,1,39.0,86.0,2,111,728.0,752.0,0.0,0,52,0.0,0.0,1241.3859955748605,1480.0,0.0,1427.6750440507212,43,0,0,0,0,0,0,0,0,3,15.0,2,,2,119828,2,1,0,1,1,,0.0,372.0,32,1.0,0.0,3.0,2.0,1.3,1,1,706.598406406519,728.0,19840.10281552388,0,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07459638761760724,15261.617550402983,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +19809,2,46.0,0.0,6,112,670.0,2050.0,0.0,43,46,0.0,0.0,1142.484364059281,2720.0,0.0,3891.9332982765673,42,0,0,0,0,0,0,0,0,2,20.0,1,,4,119829,2,1,2,0,2,,470.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,808.713100249817,670.0,86724.31199882542,1,1,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031363754145859804,48180.17333268079,10,5,10,10_1,10_1,10_0_0 +19810,2,32.0,0.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,189.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,119830,2,2,0,1,1,828.0,0.0,484.0,31,0.0,0.0,4.0,4.0,1.9,1,1,314.733423267166,0.0,13862.45871852108,0,6,2,3,72.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013633945019254384,7296.030904484779,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +19811,1,40.0,467.0,8,111,0.0,,,52,67,0.0,0.0,,725.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,119831,2,2,0,0,1,,325.0,592.0,43,2.0,2.0,4.0,5.0,2.5999999999999996,3,3,139.11036954798126,0.0,19997.2,4,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03625507571059948,7691.23076923077,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19812,2,34.0,0.0,7,111,0.0,0.0,1120.0,62,56,0.0,0.0,705.956485264513,1420.0,415.67676761895626,1340.3400052724426,44,2,2,2,2,1,2,2,2,2,25.0,2,,5,119832,1,3,0,0,1,,0.0,395.0,43,2.0,0.0,3.0,4.0,2.1,2,2,2321.07012077787,0.0,21582.098140704224,1,1,2,3,70.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.06579527118922023,10277.189590811535,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +19813,2,58.0,0.0,5,111,300.0,150.0,0.0,0,62,0.0,0.0,511.56016301161833,450.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,119833,2,1,0,1,1,696.0,0.0,220.0,12,1.0,3.0,2.0,1.0,1.0,1,1,340.082457836616,300.0,23849.034490463004,0,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018868688381491947,23849.034490463004,6,3,6,6_0,6_3,6_0_0 +19814,2,46.0,0.0,2,111,460.0,0.0,0.0,67,52,2109.365702073203,0.0,784.3922499511482,2520.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,119834,2,1,2,0,1,,620.0,,43,3.0,0.0,5.0,5.0,3.0,5,3,855.561896639015,460.0,55517.058812340096,4,1,0,1,80.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04539145361641286,18505.686270780032,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +19815,1,33.0,333.0,2,111,0.0,0.0,0.0,46,56,0.0,0.0,0.0,305.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,119835,1,2,0,1,2,,0.0,380.0,43,2.0,0.0,4.0,5.0,2.4,2,2,276.912327361349,0.0,16064.237746515057,4,1,2,3,80.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018986272788832827,6693.432394381274,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19816,1,44.0,468.0,8,111,900.0,,,0,85,0.0,0.0,,1100.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,119836,1,2,0,0,2,,800.0,541.0,31,0.0,2.0,6.0,7.0,3.3999999999999995,3,2,133.14073860571176,900.0,37934.80275863301,0,6,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02899711926799639,11157.294929009711,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +19817,1,27.0,300.0,9,111,300.0,,,55,43,0.0,0.0,,340.0,55.423569015860835,,41,0,0,0,0,0,0,0,0,0,,1,2012.0,6,119837,2,1,0,0,2,,250.0,460.0,43,2.0,0.0,2.0,2.0,1.5,2,2,264.3065374982031,300.0,9052.717904773508,4,4,2,3,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03755778138416504,6035.145269849006,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +19818,2,47.0,0.0,6,111,700.0,,,55,37,0.0,0.0,,850.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,1,10.0,2,,4,119838,2,1,0,0,2,,500.0,535.0,43,2.0,0.0,3.0,3.0,2.0,3,3,125.45913046688126,700.0,29573.95004271064,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02874151064610685,14786.97502135532,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +19819,2,45.0,0.0,9,211,600.0,,,0,34,0.0,0.0,,600.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,119839,2,1,0,0,2,,800.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,95.7415771086969,600.0,49602.8291205341,0,1,1,2,52.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012096084248380457,38156.022400410846,9,5,9,9_1,9_2,9_0_0 +19820,2,34.0,0.0,9,300,3000.0,0.0,0.0,62,54,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,119840,2,1,1,0,1,,400.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,631.098436566727,3000.0,44546.11561823658,4,1,1,2,220.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06734593933419955,21212.436008684086,5,3,5,5_1,5_0,5_0_0 +19821,2,81.0,0.0,1,111,366.0,1022.0,0.0,77,86,0.0,0.0,624.1033988741744,1388.0,0.0,1940.2711369944643,71,0,0,0,0,0,0,0,0,0,,1,,1,119841,1,1,2,0,2,,0.0,669.0,41,0.0,0.0,4.0,2.0,1.5,2,2,749.710922216839,366.0,33831.80111683305,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041026488516137535,22554.5340778887,6,3,6,6_1,6_4,6_1_0 +19822,2,73.0,0.0,5,112,1200.0,0.0,0.0,0,86,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119842,2,2,1,0,1,,200.0,,21,2.0,3.0,5.0,3.0,2.0,3,3,72.8091937807152,1200.0,14359.681667288425,0,5,0,1,120.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08983486054141714,7179.840833644213,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +19823,1,51.0,186.0,1,211,0.0,0.0,0.0,85,67,0.0,0.0,0.0,883.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,1,119843,1,3,0,0,1,,265.0,460.0,42,1.0,0.0,4.0,3.0,2.0,3,3,3314.23496942007,0.0,26838.542146263102,7,1,2,3,101.0,2,3,7,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03290044575401595,13419.271073131551,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +19824,2,51.0,0.0,2,111,0.0,0.0,2400.0,62,46,0.0,0.0,1512.763896995385,2400.0,0.0,2872.157154155234,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,119844,2,1,2,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,1564.19470426631,0.0,43511.97629559256,1,1,1,2,128.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05515722806281962,17404.790518237023,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +19825,2,29.0,0.0,5,111,500.0,1000.0,0.0,42,38,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,10,1,2,2,1,1,2,2,2,2,50.0,1,,3,119845,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,361.370524658436,500.0,53818.17482218096,1,1,1,2,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.027871625244745027,29898.986012322755,8,4,8,8_1,8_3,8_0_0 +19826,2,57.0,0.0,5,111,1400.0,1140.0,0.0,52,45,0.0,0.0,2387.2807607208856,2660.0,166.2707070475825,2164.2946146513596,41,0,0,0,0,0,0,0,0,2,60.0,1,,3,119846,1,1,1,0,1,,405.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,956.781723830988,1400.0,82863.43947035368,1,1,0,1,95.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03210100880439167,41431.71973517684,9,5,9,9_1,9_3,9_0_0 +19827,2,81.0,0.0,1,400,1486.0,0.0,0.0,0,90,0.0,0.0,2533.928007450883,1517.0,42.95326598729215,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,119847,1,2,3,0,2,,67.0,282.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1556.73907783297,1486.0,19499.978578764752,0,5,2,3,86.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07779495725456823,19499.978578764752,5,3,5,5_1,5_0,5_1_0 +19828,2,38.0,0.0,7,111,0.0,0.0,1076.0,37,46,0.0,1324.327277010224,678.2224804862643,2076.0,0.0,1287.6837907795966,20,0,0,0,0,0,0,0,0,3,35.0,1,,5,119848,2,1,3,0,1,,570.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,597.629558860446,0.0,73462.00788285953,1,1,1,2,133.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02825950528483147,40812.22660158863,9,5,9,9_1,9_4,9_0_0 +19829,2,53.0,0.0,1,300,971.0,0.0,0.0,75,46,0.0,0.0,1655.7497276142715,1091.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,119849,2,1,1,0,2,,330.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,871.332302868924,971.0,90206.55185792258,5,1,1,2,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01209446517497255,60137.70123861505,10,5,10,10_1,10_0,10_1_0 +19830,2,39.0,0.0,1,111,370.0,800.0,0.0,90,53,0.0,0.0,630.9242010476627,1170.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,2,25.0,2,,1,119850,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1071.46789894732,370.0,77283.0,1,1,1,2,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015139163852334925,51522.0,10,5,10,10_0,10_4,10_1_0 +19831,1,37.0,30.0,7,111,1120.0,0.0,0.0,0,85,0.0,0.0,1909.8246085767084,1180.0,83.13535352379125,0.0,31,2,2,2,2,1,2,2,2,0,,8,,5,119851,1,3,0,0,1,,720.0,450.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1199.0059669281,1120.0,15197.728453545085,0,7,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07764318224311662,15197.728453545085,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +19832,2,43.0,0.0,1,111,0.0,0.0,2600.0,46,38,0.0,0.0,1638.8275550783337,2600.0,0.0,3111.50358366817,31,0,0,0,0,0,0,0,0,0,,1,,1,119852,2,1,4,0,1,,240.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,885.239733135057,0.0,46938.66830720292,1,4,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05539143085576247,31292.44553813528,8,4,8,8_1,8_4,8_1_0 +19833,2,44.0,0.0,2,111,470.0,653.0,0.0,0,62,0.0,0.0,801.4442553848687,1123.0,0.0,1239.7231433046823,43,0,0,0,0,0,0,0,0,0,,2,,2,119853,2,2,0,0,1,,242.0,711.0,32,1.0,0.0,2.0,2.0,1.5,2,2,400.570815687886,470.0,27189.194403324334,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04130317299370571,18126.129602216224,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +19834,2,81.0,0.0,2,111,165.0,150.0,0.0,0,78,0.0,0.0,281.3580896563901,315.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,2,,2,119854,2,1,0,1,1,1036.0,144.0,277.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2227.32603991864,165.0,16890.13575424454,0,5,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018649938910102578,16890.13575424454,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +19835,1,70.0,154.0,9,112,720.0,0.0,0.0,0,77,0.0,0.0,1227.744391227884,720.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,2008.0,6,119855,2,1,0,0,1,,283.0,400.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2929.25338882883,720.0,10053.113492800416,0,5,2,3,50.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.07161960327172585,10053.113492800416,2,1,2_1,2_0_1,2_0_1,2_0_0_1 +19836,2,80.0,0.0,5,111,450.0,,,86,72,0.0,0.0,,703.0,350.5540740253198,,71,0,0,0,0,0,0,0,0,0,,2,,3,119856,2,1,0,0,1,,300.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,128.48784295488895,450.0,21707.739604308306,6,5,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03238476289168664,14471.826402872204,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +19837,1,49.0,357.0,8,111,640.0,,,0,54,0.0,0.0,,770.0,180.1265993015477,,20,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,119857,1,2,0,0,2,,300.0,537.0,32,1.0,0.0,4.0,3.0,1.8,2,2,80.61237425888602,640.0,33702.0,0,1,2,3,98.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022847308765058454,18723.333333333332,5,3,5,5_0,5_3,5_0_0 +19838,1,40.0,620.0,2,211,694.0,,,0,85,0.0,0.0,,1222.0,731.5911110093631,,71,0,0,0,0,0,0,0,0,0,,2,,2,119858,2,3,0,0,2,,440.0,750.0,31,1.0,3.0,4.0,9.0,4.199999999999999,5,2,124.8917807357633,694.0,26189.928417675364,0,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04665915769266794,6235.69724230366,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19839,2,31.0,0.0,9,112,922.0,0.0,0.0,52,63,0.0,662.163638505112,1572.1949009890404,1522.0,138.5589225396521,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,119859,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,152.255321937856,922.0,37707.073623622986,1,1,1,2,160.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040363779358536245,17955.749344582375,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +19840,2,43.0,0.0,2,111,800.0,615.0,0.0,63,52,0.0,0.0,1364.160434697649,1415.0,0.0,1167.5799894829702,43,1,2,2,2,1,2,2,2,1,5.0,2,,2,119860,1,3,0,1,1,468.0,0.0,325.0,43,3.0,0.0,4.0,4.0,2.5,4,3,780.869299970219,800.0,33061.08932539812,4,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04279955769373188,13224.435730159248,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +19841,2,56.0,0.0,1,111,182.0,242.0,0.0,78,67,0.0,529.7309108040896,310.34649889371514,824.0,0.0,459.43797960142894,50,2,2,2,2,1,2,2,2,3,45.0,1,,1,119861,1,2,2,0,2,,88.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,325.881527816194,182.0,12805.814724324506,6,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.06434576930391012,8537.209816216337,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +19842,2,38.0,0.0,8,111,1183.0,0.0,0.0,37,38,0.0,0.0,2017.2522428091484,1183.0,0.0,0.0,12,2,2,1,2,1,2,2,2,0,,2,2000.0,6,119862,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,664.4641293026,1183.0,156363.836035903,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007565688013233246,65151.598348292915,10,5,10,10_0,10_4,10_0_0 +19843,2,77.0,0.0,1,111,478.0,0.0,0.0,77,78,1476.555991451242,0.0,815.0858597318453,2028.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119863,1,2,1,0,2,,267.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1506.34666496893,478.0,27311.504865871335,5,5,0,1,80.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07425442171567061,18207.66991058089,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +19844,2,53.0,0.0,8,211,1405.0,0.0,0.0,0,62,0.0,0.0,2395.8067634377458,1465.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,119864,2,1,1,0,1,,86.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,2542.26597598169,1405.0,24894.089703234713,0,1,1,2,100.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05884930991510163,13830.049835130396,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +19845,2,29.0,0.0,9,120,1665.0,0.0,0.0,85,13,0.0,0.0,2839.1589047144817,1665.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,119865,2,1,1,0,1,,470.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,1767.98652057294,1665.0,252493.9203514081,6,1,1,2,166.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006594218180313959,120235.20016733719,10,5,10,10_1,10_0,10_0_0 +19846,1,34.0,413.0,7,111,850.0,,,0,52,0.0,0.0,,934.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,2,5.0,2,,5,119866,2,1,0,0,2,,750.0,510.0,32,1.0,0.0,4.0,3.0,1.6,1,1,122.69108168441083,850.0,14535.844876132905,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06425495098214615,9084.903047583066,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19847,2,66.0,0.0,9,221,1319.0,0.0,0.0,77,72,0.0,26.486545540204478,2249.1595167077485,1414.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,119867,2,1,1,0,1,,382.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2414.18269632052,1319.0,29091.659071118378,5,5,1,2,80.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04860499693548902,19394.439380745585,5,3,5,5_1,5_1,5_0_0 +19848,2,52.0,0.0,7,112,398.0,,,68,85,0.0,0.0,,926.0,731.5911110093631,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,119868,2,1,0,0,2,,312.0,,42,2.0,1.0,4.0,4.0,2.5,4,3,109.1775339089816,398.0,21524.042491316704,1,7,0,1,78.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043021658239783246,8609.616996526682,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19849,1,34.0,322.0,2,111,630.0,0.0,0.0,0,85,0.0,0.0,1074.2763423243985,630.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,119869,1,3,0,1,1,,0.0,497.0,31,0.0,0.0,3.0,2.0,1.5,2,1,330.096501467608,630.0,8970.404775757333,0,6,2,3,69.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.07023094450571343,5980.269850504889,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19850,2,63.0,0.0,5,300,760.0,0.0,0.0,75,22,0.0,893.9209119819011,1295.9524129627664,1528.0,128.85979796187644,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119870,2,1,3,0,1,,274.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,1434.04208540028,760.0,63021.089383955456,5,1,0,1,107.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02424585190349016,31510.544691977728,8,4,8,8_1,8_0,8_0_0 +19851,1,33.0,522.0,7,111,300.0,,,81,62,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,119871,2,1,0,0,2,,0.0,600.0,43,2.0,0.0,3.0,6.0,2.6999999999999997,2,2,85.83074543994297,300.0,33052.26773869638,4,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.00907653303463868,12241.580643961623,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +19852,1,45.0,197.0,2,112,820.0,0.0,0.0,0,56,0.0,397.2981831030672,1398.2644455650902,1120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,2,119872,2,1,2,0,1,,380.0,465.0,12,1.0,2.0,4.0,1.0,1.0,1,1,794.498118565638,820.0,4639.684311772511,0,1,2,3,47.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.2413957340067655,4639.684311772511,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +19853,2,59.0,0.0,1,212,220.0,0.0,0.0,0,47,0.0,662.163638505112,375.14411954185346,830.0,152.4148147936173,0.0,60,2,2,2,2,1,2,2,2,2,20.0,1,,1,119873,1,3,4,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1048.22088856235,220.0,16395.76895258433,0,1,0,1,43.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05062281631317901,16395.76895258433,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19854,2,64.0,0.0,2,112,0.0,0.0,0.0,33,34,0.0,0.0,0.0,1301.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,119874,2,2,2,0,2,,0.0,650.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1116.75971454827,0.0,90662.2448142318,1,1,2,3,100.0,8,1,9,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014349964559842601,60441.4965428212,10,5,10,10_1,10_1,10_0_1 +19856,1,38.0,378.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,2,2,2,1,1,2,2,2,1,25.0,2,,2,119876,1,3,0,1,2,170.0,0.0,408.0,32,1.0,0.0,1.0,2.0,1.5,2,1,996.76192064485,300.0,11779.75059632098,0,1,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.02546743223016073,7853.167064213987,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +19857,1,82.0,114.0,5,112,593.0,0.0,0.0,0,77,1379.525169155875,0.0,1011.1839222196322,1901.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,119877,2,1,0,1,1,,168.0,295.0,21,1.0,5.0,4.0,2.0,1.5,2,2,949.654754736145,593.0,22965.827906248654,0,5,2,3,120.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08277515653954573,15310.551937499104,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +19858,2,53.0,0.0,7,111,500.0,,,0,43,0.0,0.0,,626.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,119878,2,1,0,0,2,,800.0,,32,1.0,3.0,4.0,3.0,1.8,2,1,71.34224919413032,500.0,14874.31057169067,0,4,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04208598421976115,8263.505873161483,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19859,2,73.0,0.0,2,111,233.0,716.0,0.0,0,77,0.0,0.0,397.31172660569024,949.0,0.0,1359.328898324889,12,1,2,2,2,2,1,2,2,0,,2,,2,119879,2,2,0,1,1,,129.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,523.333461910417,233.0,15439.882004628751,0,5,0,1,83.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.06146420029087642,15439.882004628751,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +19860,1,34.0,300.0,5,111,450.0,0.0,0.0,0,85,0.0,0.0,767.3402445174275,550.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,119880,1,3,0,1,2,469.0,0.0,330.0,31,0.0,0.0,2.0,2.0,1.3,1,1,448.638950535772,450.0,5744.494192954253,0,6,2,3,28.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09574385168229206,4418.841686887887,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +19861,2,56.0,0.0,6,111,136.0,75.0,0.0,0,52,0.0,0.0,231.90727389860032,211.0,0.0,142.38780359548417,42,0,0,0,0,0,0,0,0,2,10.0,2,,4,119881,2,1,0,1,1,576.0,0.0,539.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1948.33913851769,136.0,27309.382197349878,0,1,2,3,67.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007726282435655963,27309.382197349878,7,4,7,7_0,7_3,7_0_0 +19862,2,60.0,0.0,2,111,1300.0,400.0,0.0,78,78,0.0,0.0,2216.7607063836795,1770.0,96.99124577775646,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,1,,2,119882,1,1,2,0,2,,185.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1062.14599082466,1300.0,16367.053426411618,6,5,0,1,45.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10814408396466403,10911.368950941078,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +19863,2,56.0,0.0,7,111,1500.0,0.0,0.0,78,47,0.0,0.0,2557.8008150580918,1650.0,207.83838380947813,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,119883,2,2,3,0,1,,330.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1352.47986496418,1500.0,34961.83744582019,6,1,0,1,105.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047194315875330614,23307.89163054679,6,3,6,6_1,6_3,6_0_0 +19865,2,37.0,0.0,9,211,1504.0,0.0,0.0,42,38,0.0,0.0,2564.62161723158,1504.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,119885,2,1,1,0,1,,107.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1518.53315930905,1504.0,46769.94516255102,1,1,1,2,146.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03215740353709591,22271.40245835763,6,3,6,6_1,6_1,6_0_0 +19866,2,54.0,0.0,2,111,1850.0,0.0,0.0,0,31,2742.175412695164,198.6490915515336,3154.621005238313,4600.0,0.0,0.0,10,2,2,1,2,1,2,2,2,2,15.0,1,,2,119886,2,2,5,0,1,,600.0,,32,1.0,2.0,6.0,2.0,1.5,2,2,641.85972865522,1850.0,204571.55203603028,0,1,0,1,160.0,7,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.022486019948608604,136381.03469068685,10,5,10,10_1,10_2,10_0_1 +19867,2,69.0,0.0,9,112,430.0,400.0,0.0,0,77,0.0,0.0,733.2362336499863,830.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,119887,2,1,0,1,1,,280.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1570.05909833588,430.0,30039.132814163124,0,5,0,1,50.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02763062453016833,30039.132814163124,8,4,8,8_0,8_1,8_0_0 +19868,2,73.0,0.0,2,112,1560.0,0.0,0.0,86,74,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,119888,2,1,2,0,1,,120.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,873.384580818067,1560.0,48004.09271318323,6,5,0,1,80.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032497229128373495,32002.728475455486,8,4,8,8_1,8_1,8_0_1 +19869,2,61.0,0.0,1,111,360.0,1800.0,0.0,77,74,0.0,331.081819252556,613.872195613942,2410.0,0.0,3417.30728629162,30,0,0,0,0,0,0,0,0,0,,1,,1,119889,2,2,2,0,1,,600.0,,41,0.0,2.0,6.0,3.0,2.0,3,3,73.0706284100799,360.0,38368.17794848399,6,5,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06281246931339422,19184.088974241997,5,3,5,5_1,5_3,5_1_0 +19870,2,60.0,0.0,6,400,3000.0,0.0,0.0,75,47,0.0,0.0,5115.6016301161835,4318.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,,4,119890,2,1,3,0,2,,200.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,837.117046841234,3000.0,98206.07494027428,5,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04396876672472722,65470.71662684952,10,5,10,10_1,10_0,10_0_0 +19871,2,74.0,0.0,5,111,200.0,528.0,0.0,0,77,0.0,0.0,341.04010867441224,728.0,0.0,1002.4101373122086,71,1,2,2,2,1,2,2,2,0,,2,,3,119891,1,3,0,0,2,,120.0,393.0,11,0.0,5.0,2.0,1.0,1.0,1,1,248.22125162295,200.0,16670.69781154653,0,5,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04366943773018124,16670.69781154653,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +19872,2,48.0,0.0,2,111,0.0,0.0,840.0,0,62,0.0,0.0,529.4673639483848,840.0,0.0,1005.255003954332,50,0,0,0,0,0,0,0,0,0,,2,,2,119892,2,2,0,1,1,450.0,0.0,313.0,32,2.0,1.0,3.0,3.0,2.0,3,3,298.141569181825,0.0,22060.763225149058,0,1,2,3,68.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.038076651810595934,11030.381612574529,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +19873,0,50.0,0.0,2,111,0.0,,,0,33,0.0,0.0,,63.0,87.29212119998083,,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,119893,2,1,0,0,2,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,103.29145984590531,0.0,86558.90098248493,0,1,5,0,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0007278280949147906,86558.90098248493,10,5,10,10_1,10_3,10_0_1 +19874,2,42.0,0.0,9,112,920.0,0.0,0.0,55,65,0.0,264.8654554020448,1568.7844999022964,1120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,119894,1,1,1,0,1,,540.0,,43,2.0,0.0,5.0,5.0,3.0,5,3,1883.70872174056,920.0,46577.799749264224,1,1,1,2,91.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024045790183931826,15525.933249754742,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +19875,1,49.0,340.0,6,111,330.0,,,0,55,0.0,0.0,,405.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,1,10.0,2,,4,119895,2,1,0,0,1,,240.0,700.0,32,1.0,0.0,2.0,2.0,1.3,1,1,147.6259021286539,330.0,2876.4353500525085,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14079927087275118,2212.642576963468,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19876,2,89.0,0.0,1,111,256.0,0.0,0.0,0,74,0.0,0.0,436.53133910324766,256.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,119896,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,787.423092025656,256.0,17365.96591341808,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014741477743095054,17365.96591341808,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +19877,2,59.0,0.0,5,111,864.0,0.0,0.0,75,64,0.0,1191.8945493092015,1473.293269473461,1866.0,141.33010099044515,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,119897,2,1,3,0,1,,581.0,,42,1.0,2.0,3.0,3.0,2.0,3,3,378.553490731674,864.0,27246.27721330063,6,4,0,1,87.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06848642056277279,13623.138606650315,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +19878,2,62.0,0.0,7,112,1300.0,0.0,0.0,22,46,0.0,198.6490915515336,2216.7607063836795,1550.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,119898,2,1,2,0,1,,400.0,,42,1.0,5.0,6.0,2.0,1.5,2,2,769.866545028676,1300.0,49817.67383599902,1,5,0,1,89.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031113455941412224,33211.78255733268,8,4,8,8_1,8_0,8_0_0 +19879,2,28.0,0.0,7,211,300.0,,,81,43,0.0,0.0,,420.0,166.2707070475825,,33,0,0,0,0,0,0,0,0,1,2.0,1,,5,119899,1,1,0,0,2,,460.0,354.0,43,2.0,0.0,2.0,2.0,1.5,2,2,144.13956804535616,300.0,31967.19221816231,4,1,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013138470126925162,21311.461478774872,6,3,6,6_1,6_2,6_0_0 +19880,1,39.0,120.0,9,111,750.0,0.0,0.0,0,52,0.0,0.0,1278.9004075290459,795.0,62.351515142843446,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,119900,2,1,1,0,1,,100.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,1070.98447187598,750.0,19579.029271667467,0,1,1,2,110.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04060466885099524,15060.791747436513,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +19881,2,42.0,0.0,1,111,912.0,1844.0,0.0,43,43,0.0,0.0,1555.1428955553197,2756.0,0.0,3500.841464400971,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,119901,2,1,3,0,1,,544.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,180.806605011565,912.0,60724.1963635592,1,1,1,2,95.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04538553270428928,33735.66464642178,9,5,9,9_1,9_2,9_1_0 +19882,2,70.0,0.0,7,111,1621.0,0.0,0.0,77,78,0.0,0.0,2764.130080806111,1621.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,119902,2,1,2,0,1,,370.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1349.0969487324,1621.0,8494.726707713133,5,5,0,1,106.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1908242673102299,5663.151138475422,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +19883,2,55.0,0.0,8,111,160.0,,,0,52,0.0,0.0,,419.0,358.86760937769895,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,119903,1,1,0,0,2,,140.0,,22,2.0,0.0,3.0,3.0,1.8,2,2,113.57805836800758,160.0,14981.2960861957,0,4,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027968207663026,8322.942270108722,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +19885,1,61.0,254.0,2,112,450.0,0.0,0.0,0,78,0.0,125.81109131597127,767.3402445174275,605.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119905,1,1,1,0,1,,170.0,313.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2090.18094601008,450.0,11785.49570240212,0,5,2,3,70.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05133428540275051,11785.49570240212,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +19886,2,45.0,0.0,5,111,300.0,640.0,0.0,37,54,0.0,0.0,511.56016301161833,940.0,0.0,1215.0425906814648,31,0,0,0,0,0,0,0,0,1,1.0,2,,3,119906,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1651.06035561822,300.0,69816.6362219497,1,1,1,2,95.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013463839721691902,38787.02012330539,9,5,9,9_0,9_3,9_0_0 +19887,2,61.0,0.0,2,111,120.0,80.0,0.0,0,75,632.8097106219609,0.0,204.62406520464734,800.0,0.0,151.8803238351831,31,0,0,0,0,0,0,0,0,0,,2,,2,119907,2,1,0,1,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,424.384731962872,120.0,27197.529036984986,0,5,0,1,75.0,8,6,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029414436837703433,27197.529036984986,7,4,7,7_0,7_2,7_0_1 +19888,2,24.0,0.0,5,211,30.0,0.0,0.0,0,47,0.0,0.0,51.156016301161834,30.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,119908,2,1,0,0,1,,170.0,100.0,12,1.0,0.0,3.0,1.0,1.0,1,1,3893.55423010924,30.0,24736.18928409169,0,1,2,3,86.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00121279796396503,24736.18928409169,7,4,7,7_0,7_1,7_0_0 +19889,1,20.0,377.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,342.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,119909,2,1,0,0,1,,0.0,510.0,32,1.0,0.0,2.0,2.0,1.3,1,1,2204.80849653953,0.0,9522.808064131823,0,4,2,3,35.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.0359137764508939,7325.236972409094,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +19890,1,39.0,413.0,7,111,624.0,,,0,54,0.0,0.0,,744.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,,5,119910,2,3,0,0,2,,900.0,650.0,32,2.0,0.0,4.0,3.0,1.8,3,2,96.96122287448783,624.0,9684.439393939394,0,4,2,3,81.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07682427136315208,5380.244107744108,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +19891,2,32.0,0.0,9,300,800.0,0.0,0.0,52,38,0.0,0.0,1364.160434697649,800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,119911,2,1,1,0,1,,223.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1293.76605405205,800.0,66420.47541180531,1,1,1,2,122.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01204447867980498,36900.26411766961,9,5,9,9_1,9_0,9_0_0 +19892,1,57.0,272.0,2,111,1200.0,0.0,0.0,0,81,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,2,119912,2,1,0,0,1,,0.0,236.0,32,1.0,0.0,2.0,3.0,2.0,3,1,431.286492442312,1200.0,10462.58377226902,0,4,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.11469442215417083,5231.29188613451,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +19893,2,31.0,0.0,2,111,603.0,360.0,0.0,55,65,0.0,0.0,1028.235927653353,963.0,0.0,683.461457258324,60,0,0,0,0,0,0,0,0,2,45.0,2,,2,119913,2,1,0,1,1,1046.0,0.0,409.0,43,2.0,0.0,4.0,3.0,1.8,2,2,610.061721951599,603.0,31448.385539267176,4,1,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030621603732171754,17471.325299592874,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +19894,1,49.0,380.0,5,111,870.0,440.0,0.0,85,85,0.0,0.0,1483.5244727336933,1310.0,0.0,835.3417810935072,50,2,2,2,1,1,2,2,2,0,,2,,3,119914,1,3,0,1,1,,0.0,685.0,41,1.0,3.0,5.0,5.0,3.0,5,3,309.478879031362,870.0,5746.970589955232,6,7,2,3,113.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.22794618129587552,1915.6568633184106,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +19895,2,82.0,0.0,9,111,1300.0,0.0,0.0,77,74,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,119915,1,2,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1317.62193237733,1300.0,45458.43857039771,5,5,0,1,79.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02859755066128807,30305.625713598474,8,4,8,8_0,8_2,8_0_0 +19896,1,57.0,280.0,1,111,360.0,,,78,85,0.0,0.0,,492.0,182.89777775234077,,10,0,0,0,0,0,0,0,0,0,,1,,1,119916,2,2,0,0,2,,180.0,500.0,41,0.0,2.0,3.0,2.0,1.5,2,2,94.07635261167295,360.0,22322.006107489513,5,7,3,4,69.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.022041029718871164,14881.337404993008,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +19897,1,85.0,65.0,2,111,210.0,0.0,0.0,0,77,0.0,0.0,358.0921141081328,240.0,41.567676761895626,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,119917,2,2,0,1,1,364.0,0.0,221.0,11,0.0,3.0,2.0,1.0,1.0,1,1,384.617367783658,210.0,14284.707323432393,0,5,2,3,35.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.01680118427111965,14284.707323432393,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +19898,0,37.0,0.0,1,111,600.0,60.0,0.0,0,85,0.0,0.0,1023.1203260232367,660.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,1,,1,119918,2,1,4,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1596.21503374147,600.0,10022.034017890088,0,7,5,0,45.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06585489520608792,10022.034017890088,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +19899,2,76.0,0.0,2,111,1118.0,,,86,78,0.0,0.0,,1256.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,119919,2,2,0,0,2,,342.0,,41,1.0,7.0,4.0,3.0,2.0,3,3,91.84536796898146,1118.0,34084.377208929975,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03684972714334745,17042.188604464987,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +19900,1,45.0,134.0,5,111,520.0,200.0,0.0,0,52,0.0,0.0,886.7042825534718,720.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,3,75.0,2,,3,119920,1,2,0,1,1,625.0,1000.0,319.0,32,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,294.064498087905,520.0,35806.4359628106,0,1,2,3,69.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020108116896856442,13771.70613954254,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +19901,2,66.0,0.0,5,400,500.0,0.0,0.0,86,86,0.0,463.51454695357836,852.6002716860306,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,119921,2,1,3,0,1,,214.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1299.44923911399,500.0,22288.587523480404,6,5,0,1,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038136108854118674,14859.058348986937,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +19902,0,31.0,0.0,5,111,290.0,800.0,0.0,55,53,0.0,0.0,494.50815757789775,1090.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,0,,2,,3,119922,2,1,0,0,1,,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,1741.28342276253,290.0,48555.61554331875,1,1,5,0,52.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02244848485192325,32370.4103622125,8,4,8,8_0,8_3,8_0_0 +19903,2,47.0,0.0,2,111,360.0,,,0,53,0.0,0.0,,624.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,119923,1,3,0,0,2,,500.0,700.0,22,1.0,5.0,5.0,2.0,1.5,2,2,90.40864306005149,360.0,34475.1099460995,0,1,2,3,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018100014792573536,22983.406630733003,6,3,6,6_0,6_3,6_0_1 +19904,2,66.0,0.0,2,300,387.0,0.0,0.0,0,78,0.0,0.0,659.9126102849876,492.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,119924,2,1,3,0,1,,363.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,835.553452295802,387.0,17421.53740705165,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028240905983467054,17421.53740705165,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +19905,2,77.0,0.0,5,111,1742.0,0.0,0.0,75,75,0.0,1112.4349126885882,2970.4593465541307,2732.0,207.83838380947813,0.0,70,2,2,2,1,1,2,2,2,0,,2,,3,119925,2,1,0,0,1,,343.0,340.0,41,0.0,6.0,4.0,2.0,1.5,2,2,387.030529195645,1742.0,27176.760150195638,5,5,2,3,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.10052706742456691,18117.840100130426,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +19906,2,72.0,0.0,2,111,230.0,335.0,0.0,56,78,0.0,0.0,392.1961249755741,565.0,0.0,635.9988560598293,70,0,0,0,0,0,0,0,0,0,,2,,2,119926,2,3,0,1,1,1302.0,320.0,305.0,41,1.0,1.0,4.0,3.0,2.0,3,3,2119.26866916211,230.0,43089.48574607485,5,5,2,3,108.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013112247459380912,21544.742873037427,6,3,6,6_0,6_2,6_0_1 +19907,2,25.0,0.0,2,111,980.0,600.0,0.0,0,55,0.0,0.0,1671.09653250462,1580.0,0.0,1139.1024287638734,31,1,2,2,2,1,2,2,2,0,,2,,2,119927,2,1,0,1,1,,0.0,485.0,22,2.0,0.0,5.0,5.0,3.0,5,5,173.028516092267,980.0,61713.63975639676,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.025602119826941973,20571.213252132253,5,3,5,5_0,5_4,5_0_1 +19908,1,24.0,200.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1121.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,119928,1,1,0,1,1,750.0,0.0,350.0,22,1.0,1.0,4.0,5.0,3.0,5,5,352.324892036009,0.0,22655.01924881338,0,2,2,3,80.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04948130865343297,7551.673082937793,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19909,2,66.0,0.0,2,111,380.0,950.0,0.0,74,72,0.0,0.0,647.9762064813832,1330.0,0.0,1803.5788455427996,12,2,2,2,2,2,2,2,1,0,,1,,2,119929,2,1,2,0,1,,200.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1033.96151834932,380.0,81616.39819241958,5,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.016295744843632765,54410.932128279725,10,5,10,10_1,10_4,10_0_1 +19910,2,64.0,0.0,2,221,456.0,0.0,0.0,0,75,843.7462808292812,0.0,777.5714477776598,1326.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,119930,2,2,2,0,1,,136.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2046.224017733,456.0,14769.419874008034,0,5,1,2,95.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08978010045835053,14769.419874008034,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +19911,2,81.0,0.0,1,112,300.0,0.0,0.0,0,86,0.0,662.163638505112,511.56016301161833,890.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119931,2,1,2,0,1,,160.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,929.657326130886,300.0,10082.819055264215,0,5,0,1,200.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08826896477283634,10082.819055264215,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +19912,2,37.0,0.0,7,221,0.0,0.0,0.0,31,38,0.0,0.0,0.0,504.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,119932,2,1,2,0,1,,519.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,553.894630044727,0.0,56748.36684978826,1,1,1,2,140.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008881312854942196,37832.24456652551,9,5,9,9_1,9_1,9_0_0 +19913,2,58.0,0.0,1,112,450.0,1200.0,0.0,85,78,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,119933,2,2,4,0,2,,700.0,,41,0.0,0.0,4.0,4.0,2.5,4,3,678.607175276182,450.0,15057.049079716806,6,7,0,1,100.0,9,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10958322519003394,6022.819631886722,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +19914,1,57.0,467.0,2,111,1080.0,,,85,81,0.0,0.0,,1200.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,119934,2,2,0,0,2,,109.0,650.0,42,1.0,1.0,4.0,5.0,2.4,2,2,92.00741850003233,1080.0,14911.406245666618,6,4,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08047530730703084,6213.085935694425,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +19915,2,42.0,0.0,7,112,2100.0,0.0,0.0,38,45,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,1,,5,119935,2,2,2,0,2,,600.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,499.156687043609,2100.0,64849.73162162867,1,1,1,2,87.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032382554985001796,24942.204469857184,7,4,7,7_1,7_2,7_0_0 +19916,2,47.0,0.0,1,111,700.0,750.0,0.0,31,46,0.0,0.0,1193.6403803604428,1450.0,0.0,1423.8780359548418,60,0,0,0,0,0,0,0,0,0,,2,,1,119936,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,950.255318263281,700.0,134426.32781493347,1,1,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010786577477562538,67213.16390746673,10,5,10,10_0,10_4,10_1_0 +19917,2,42.0,0.0,7,120,0.0,,,22,22,0.0,0.0,,854.0,0.0,,43,0,0,0,0,0,0,0,0,4,40.0,1,,5,119937,2,2,0,0,2,,442.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,159.6050282409052,0.0,94260.39578505077,1,1,1,2,125.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009060008637640796,62840.26385670051,10,5,10,10_1,10_1,10_0_0 +19918,2,44.0,0.0,7,111,350.0,,,0,52,0.0,0.0,,580.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,2,5.0,2,,5,119938,2,2,0,0,2,,350.0,510.0,32,2.0,1.0,4.0,2.0,1.5,2,2,86.79079003069263,350.0,29316.738360955533,0,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019783919781896767,19544.49224063702,5,3,5,5_0,5_2,5_0_0 +19919,2,54.0,0.0,7,400,300.0,,,0,69,0.0,0.0,,432.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,119939,2,1,0,0,2,,132.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,124.78906086364515,300.0,19666.576103540003,0,1,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021966202847186988,19666.576103540003,5,3,5,5_1,5_0,5_0_0 +19920,1,27.0,318.0,7,111,138.0,,,0,85,0.0,0.0,,432.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,0,,2,,5,119940,2,1,0,0,1,,100.0,316.0,31,0.0,0.0,3.0,3.0,1.6,1,1,154.05441045086974,138.0,9438.875229301813,0,6,2,3,43.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045768165115575396,5899.297018313633,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19921,2,66.0,0.0,1,111,215.0,0.0,0.0,0,74,0.0,0.0,366.61811682499314,1643.0,1978.621413866232,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,119941,2,1,2,0,1,,150.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,658.805402662883,215.0,25305.25477456388,0,5,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06492722616851487,25305.25477456388,7,4,7,7_1,7_4,7_1_0 +19922,1,57.0,97.0,9,400,600.0,0.0,0.0,11,47,0.0,0.0,1023.1203260232367,767.0,231.393400641219,0.0,33,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,119942,1,1,1,0,1,,464.0,425.0,43,2.0,5.0,4.0,3.0,1.8,2,2,869.564113755693,600.0,28455.4904098221,1,1,2,3,85.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026954376429768064,15808.6057832345,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +19923,2,47.0,0.0,1,120,506.0,0.0,0.0,0,52,316.40485531098045,0.0,862.8314749462629,806.0,0.0,0.0,71,2,2,2,2,2,2,1,2,1,5.0,8,,1,119943,2,1,0,1,1,300.0,216.0,370.0,32,1.0,0.0,3.0,2.0,1.5,2,1,3164.72745906546,506.0,25100.0,0,1,2,3,77.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03211155378486056,16733.333333333332,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +19925,2,69.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,521.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,119945,2,1,2,0,1,,123.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1017.76587312142,0.0,68767.86182860665,0,5,0,1,94.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007576213454164281,68767.86182860665,10,5,10,10_1,10_4,10_1_0 +19926,2,56.0,0.0,1,111,264.0,,,0,68,0.0,0.0,,540.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,3,15.0,2,,1,119946,1,1,0,0,2,,350.0,500.0,12,1.0,5.0,3.0,1.0,1.0,1,1,82.3629489047517,264.0,18721.244084340204,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028844236930370182,18721.244084340204,5,3,5,5_0,5_2,5_1_0 +19927,2,40.0,0.0,7,111,480.0,,,34,21,0.0,0.0,,505.0,34.63973063491302,,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,119947,2,2,0,0,2,,0.0,720.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,162.53994691289128,480.0,35308.56486171629,1,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014302478788866096,13580.217254506266,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +19928,0,29.0,0.0,5,111,0.0,,,0,56,0.0,0.0,,339.0,0.0,,50,0,0,0,0,0,0,0,0,1,3.0,2,,3,119948,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,125.22347847858498,0.0,9599.0,0,1,5,0,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03531617876862173,9599.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +19929,2,51.0,0.0,5,112,1400.0,0.0,0.0,43,43,0.0,0.0,2387.2807607208856,1466.0,91.44888887617039,0.0,33,0,0,0,0,0,0,0,0,2,25.0,1,,3,119949,2,1,2,0,1,,230.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,399.062463957193,1400.0,63678.471933560126,1,1,0,1,100.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02302190921807252,31839.235966780063,8,4,8,8_1,8_1,8_0_0 +19930,2,54.0,0.0,1,112,350.0,0.0,0.0,78,52,0.0,1581.2467687502074,596.8201901802214,1714.0,235.55016831740858,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,119950,1,2,1,0,2,,300.0,208.0,42,1.0,1.0,6.0,2.0,1.5,2,2,287.524084691783,350.0,30918.8341096879,5,1,2,3,90.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05543546674235516,20612.556073125266,5,3,5,5_1,5_0,5_1_0 +19931,2,57.0,0.0,2,111,500.0,947.0,0.0,78,62,0.0,0.0,852.6002716860306,1447.0,0.0,1797.88333339898,71,2,2,2,2,1,1,2,2,0,,2,,2,119951,1,3,0,1,1,610.0,0.0,306.0,42,2.0,2.0,4.0,4.0,2.5,4,4,550.020169187392,500.0,48315.5407217804,5,4,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029948955933917547,19326.21628871216,5,3,5,5_0,5_2,5_0_1 +19932,1,35.0,370.0,5,111,386.0,0.0,0.0,0,43,0.0,0.0,658.2074097416156,386.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,119952,1,1,0,1,1,508.0,0.0,337.0,32,1.0,0.0,4.0,3.0,1.6,1,1,287.904709855885,386.0,10996.789509905251,0,1,2,3,80.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03510115380969275,6872.9934436907815,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +19933,2,37.0,0.0,6,112,2079.0,0.0,0.0,34,46,0.0,132.4327277010224,3545.111929670515,2179.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,119953,2,2,2,0,1,,330.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,462.734196205774,2079.0,61207.283036295856,1,1,1,2,139.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03560033858565255,29146.32525537898,8,4,8,8_1,8_1,8_0_0 +19934,2,51.0,0.0,1,400,900.0,0.0,0.0,85,12,2636.7071275915036,158.91927324122688,1534.680489034855,3700.0,249.40606057137379,0.0,71,2,2,2,1,1,2,2,2,2,5.0,2,,1,119954,2,1,0,1,1,,600.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,2030.08310224083,900.0,9816.968282051319,6,1,0,1,130.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.3768984368386755,6544.645521367546,1,1,1_0,1_0_0,1_0_0,1_1_0_0 +19935,2,28.0,0.0,1,400,1300.0,0.0,0.0,67,11,0.0,132.4327277010224,2216.7607063836795,1500.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,119955,2,1,1,0,1,,150.0,300.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1880.649541421,1300.0,39878.82044429721,4,1,2,3,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03761395104690225,26585.880296198142,7,4,7,7_1,7_0,7_1_0 +19936,2,45.0,0.0,1,111,1132.0,0.0,0.0,43,47,0.0,397.2981831030672,1930.2870150971733,1462.0,41.567676761895626,0.0,42,2,2,2,1,2,2,2,1,3,75.0,1,,1,119956,2,2,1,0,1,,260.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,568.194942626783,1132.0,52954.642969983724,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.027608532850060104,35303.09531332248,9,5,9,9_1,9_4,9_1_0 +19937,2,70.0,0.0,1,111,0.0,0.0,0.0,74,75,0.0,0.0,0.0,1357.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,119957,1,1,0,0,2,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,569.140343973197,0.0,55949.81526949776,5,5,0,1,86.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024253878113156123,37299.87684633184,9,5,9,9_0,9_4,9_1_0 +19938,2,80.0,0.0,2,111,750.0,2050.0,0.0,71,71,0.0,0.0,1278.9004075290459,2800.0,0.0,3891.9332982765673,71,0,0,0,0,0,0,0,0,0,,1,,2,119958,2,1,2,0,1,,1300.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1102.1373429834,750.0,27662.051797233667,5,5,0,1,106.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10122170331124941,18441.367864822445,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +19939,2,47.0,0.0,9,111,800.0,,,54,37,0.0,0.0,,800.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2007.0,6,119959,2,1,0,0,1,,250.0,867.0,43,2.0,2.0,3.0,2.0,1.5,2,2,155.66425693100007,800.0,101119.68222637924,4,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007911417267006629,67413.12148425283,10,5,10,10_0,10_2,10_0_0 +19940,2,53.0,0.0,5,112,790.0,0.0,0.0,48,46,0.0,397.2981831030672,1347.1084292639284,1090.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,3,119960,2,1,3,0,1,,190.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,1810.65146187242,790.0,61346.23169653509,1,1,0,1,90.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01776800253016298,40897.48779769006,9,5,9,9_1,9_0,9_0_0 +19941,2,83.0,0.0,2,111,360.0,1431.0,0.0,0,77,0.0,0.0,613.872195613942,1791.0,0.0,2716.759292601838,50,0,0,0,0,0,0,0,0,0,,1,,2,119961,2,2,2,0,2,,210.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,738.763577503087,360.0,14842.23390834901,0,5,0,1,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12066916685584182,14842.23390834901,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +19942,2,79.0,0.0,2,111,330.0,1318.0,0.0,77,75,0.0,0.0,562.7161793127802,1648.0,0.0,2502.2283351846418,50,0,0,0,0,0,0,0,0,0,,1,,2,119962,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,231.500043909803,330.0,29016.668210219115,5,5,0,1,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05679494241243059,19344.44547347941,5,3,5,5_1,5_3,5_0_1 +19943,1,62.0,318.0,2,111,420.0,420.0,0.0,85,78,0.0,0.0,716.1842282162656,840.0,0.0,797.3717001347114,50,2,1,2,2,1,2,2,2,0,,2,,2,119963,2,2,0,1,1,650.0,0.0,380.0,41,0.0,0.0,5.0,5.0,2.4,2,2,242.809677997767,420.0,23192.491931217264,6,5,2,3,90.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03621861775315976,9663.53830467386,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +19944,2,76.0,0.0,1,111,600.0,1800.0,0.0,77,78,0.0,0.0,1023.1203260232367,2400.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,0,,1,,1,119964,2,2,2,0,1,,228.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,919.998592858779,600.0,27026.601970959447,5,5,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08880139658617986,18017.734647306297,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +19945,1,31.0,50.0,7,111,360.0,270.0,0.0,0,47,0.0,0.0,613.872195613942,630.0,0.0,512.596092943743,31,2,2,2,2,2,2,2,1,2,10.0,2,,5,119965,1,3,0,0,1,,160.0,389.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1313.59049768795,360.0,21571.651739353867,0,1,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.02920499587199762,21571.651739353867,6,3,6,6_0,6_3,6_0_0 +19946,2,68.0,0.0,5,111,433.0,721.0,0.0,78,75,0.0,0.0,738.3518352801025,1154.0,0.0,1368.821418564588,71,0,0,0,0,0,0,0,0,0,,1,,3,119966,2,1,2,0,1,,270.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,360.010972203204,433.0,32262.20713758438,5,5,0,1,150.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03576940644757156,21508.13809172292,6,3,6,6_1,6_2,6_0_0 +19948,2,85.0,0.0,1,212,0.0,0.0,0.0,0,78,0.0,264.8654554020448,0.0,1945.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119968,2,1,1,0,1,,502.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,994.179868770996,0.0,24704.326612902518,0,5,0,1,90.0,1,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0787311482104584,24704.326612902518,7,4,7,7_1,7_0,7_1_0 +19949,1,57.0,300.0,1,111,934.0,0.0,0.0,0,75,0.0,0.0,1592.6573075095052,934.0,0.0,0.0,20,2,2,2,1,1,2,2,2,0,,2,,1,119969,1,3,0,0,2,,0.0,494.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1181.80430302878,934.0,10450.422442243089,0,7,2,3,21.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,1,0.08937437746291961,10450.422442243089,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +19950,2,34.0,0.0,1,111,0.0,0.0,2000.0,85,63,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,119970,2,1,0,0,1,,0.0,610.0,42,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,1156.41844846065,0.0,33199.374485387845,6,1,2,3,81.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.060242098864852614,12768.990186687635,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +19951,2,66.0,0.0,2,111,360.0,0.0,0.0,0,75,0.0,0.0,613.872195613942,368.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,119971,1,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1210.04425782191,360.0,20223.530121396623,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018196625306808017,20223.530121396623,5,3,5,5_0,5_4,5_0_1 +19952,2,47.0,0.0,9,221,903.0,,,43,31,0.0,0.0,,947.0,60.965925917446924,,10,0,0,0,0,0,0,0,0,0,,1,2004.0,6,119972,2,1,0,0,2,,346.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,82.08179353488981,903.0,94736.32912857077,4,1,1,2,131.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00999616523788657,41189.7083167699,9,5,9,9_1,9_1,9_0_0 +19953,2,81.0,0.0,5,111,454.0,1454.0,0.0,77,75,0.0,0.0,774.1610466909158,1908.0,0.0,2760.424885704453,41,0,0,0,0,0,0,0,0,0,,1,,3,119973,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1782.72315662611,454.0,38978.311415244025,5,5,0,1,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04895029904383699,25985.540943496017,7,4,7,7_1,7_3,7_0_0 +19954,1,42.0,500.0,7,111,0.0,,,55,85,0.0,0.0,,876.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,119974,2,1,0,0,2,,268.0,466.0,42,1.0,1.0,5.0,8.0,3.499999999999999,3,2,166.12787355447782,0.0,26027.033841951412,4,6,2,3,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03365731205943369,7436.295383414691,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19955,2,44.0,0.0,1,300,0.0,0.0,0.0,11,11,2320.3022722805235,0.0,0.0,4619.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,119975,2,1,1,0,1,,359.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,704.590659678397,0.0,115016.77584650728,1,1,0,1,160.0,0,0,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04015935906744742,46006.71033860291,10,5,10,10_1,10_0,10_1_0 +19956,2,42.0,0.0,8,112,300.0,,,42,63,0.0,0.0,,510.0,290.9737373332694,,50,2,2,2,2,1,2,2,2,0,,1,2001.0,6,119976,1,2,0,0,2,,140.0,,43,2.0,0.0,6.0,5.0,2.8,5,3,109.68862124437037,300.0,32719.577597357686,4,4,0,1,78.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.0155869982881804,11685.563427627745,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +19957,2,70.0,0.0,6,112,460.0,0.0,0.0,77,77,1476.555991451242,0.0,784.3922499511482,1965.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,119977,2,2,2,0,1,,410.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,979.151684665282,460.0,37311.16407141858,5,5,0,1,165.0,6,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052665202196284365,24874.10938094572,7,4,7,7_1,7_1,7_0_0 +19958,2,61.0,0.0,5,111,400.0,,,52,78,0.0,0.0,,650.0,346.39730634913025,,70,0,0,0,0,0,0,0,0,0,,1,,3,119978,2,2,0,0,2,,300.0,,42,2.0,1.0,3.0,3.0,2.0,3,3,106.38232912705764,400.0,20437.47242206235,4,5,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031804324261659765,10218.736211031175,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +19959,2,63.0,0.0,5,111,544.0,114.0,0.0,52,78,0.0,0.0,927.6290955944013,658.0,0.0,216.42946146513594,60,0,0,0,0,0,0,0,0,0,,2,,3,119979,2,2,0,1,1,524.0,0.0,430.0,42,2.0,2.0,4.0,3.0,2.0,3,3,302.962006452824,544.0,49386.44568287076,1,5,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013323493742094124,24693.22284143538,7,4,7,7_0,7_4,7_0_0 +19960,1,29.0,350.0,5,111,360.0,,,0,56,0.0,0.0,,410.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,0,,2,,3,119980,2,1,0,0,2,,0.0,600.0,32,1.0,0.0,2.0,2.0,1.3,1,1,94.19796545341046,360.0,9312.952991452992,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04402470412728159,7163.809993425379,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19961,2,55.0,0.0,1,111,300.0,600.0,0.0,0,45,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,119981,2,1,0,0,1,,0.0,467.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1209.34690626983,300.0,29161.189846424906,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030862938197644837,29161.189846424906,8,4,8,8_0,8_4,8_1_0 +19962,1,63.0,50.0,8,111,510.0,,,0,77,0.0,0.0,,648.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,2002.0,6,119982,2,3,0,0,2,,210.0,520.0,11,0.0,5.0,3.0,1.0,1.0,1,1,83.10669946022213,510.0,17000.610961909108,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03811627720038315,17000.610961909108,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +19963,2,50.0,0.0,1,111,550.0,0.0,0.0,0,37,0.0,0.0,937.8602988546337,708.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,1,119983,2,1,0,1,1,,0.0,775.0,12,1.0,0.0,2.0,1.0,1.0,1,1,440.286784485419,550.0,30984.156123962097,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02285038834581836,30984.156123962097,8,4,8,8_0,8_4,8_1_0 +19964,2,41.0,0.0,7,111,740.0,0.0,0.0,54,33,0.0,0.0,1261.8484020953254,740.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,5,119984,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,738.115404333428,740.0,74794.63319926032,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009893757992349084,49863.088799506884,10,5,10,10_0,10_4,10_0_0 +19965,2,63.0,0.0,1,111,376.0,359.0,0.0,77,78,0.0,794.5963662061343,641.155404307895,1335.0,0.0,681.5629532103842,50,0,0,0,0,0,0,0,0,0,,1,,1,119985,2,1,2,0,1,,500.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,102.758859673932,376.0,21291.742556560395,7,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0627003636012244,14194.49503770693,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +19966,2,87.0,0.0,2,111,450.0,920.0,0.0,0,77,0.0,0.0,767.3402445174275,1370.0,0.0,1746.6237241046058,44,0,0,0,0,0,0,0,0,0,,1,,2,119986,1,1,2,0,2,,140.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1188.67244681182,450.0,17367.101558830444,0,5,0,1,100.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0788847808230506,17367.101558830444,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +19967,1,42.0,308.0,5,111,430.0,0.0,0.0,0,35,0.0,0.0,733.2362336499863,430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,119987,2,1,0,0,1,,0.0,309.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1271.01329607236,430.0,4666.027327851381,0,4,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09215548255222221,4666.027327851381,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +19968,2,44.0,0.0,9,400,1100.0,0.0,0.0,52,38,1054.6828510366015,0.0,1875.7205977092674,2164.0,88.67771042537734,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,119988,2,1,1,0,1,,120.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,805.459607870954,1100.0,40066.24114379988,1,1,1,2,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05401055697322063,19079.162449428513,5,3,5,5_1,5_0,5_0_0 +19969,2,35.0,0.0,2,111,663.0,1403.0,0.0,46,38,0.0,0.0,1130.5479602556766,2066.0,0.0,2663.601179259524,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,119989,2,1,3,0,1,,715.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1576.8450320831,663.0,80785.07340950222,1,1,1,2,88.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025574031350165116,38469.082575953435,9,5,9,9_1,9_3,9_0_1 +19970,2,53.0,0.0,6,120,1200.0,0.0,0.0,0,46,0.0,0.0,2046.2406520464733,1228.0,38.79649831110259,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,119990,2,1,3,0,1,,400.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1165.9498241974,1200.0,15118.266925091855,0,1,0,1,95.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08122624147890145,15118.266925091855,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +19972,2,84.0,0.0,1,211,500.0,0.0,0.0,0,77,1898.4291318658827,0.0,852.6002716860306,2430.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119992,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1838.950077571,500.0,11462.407858013337,0,5,0,1,90.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.21199734210305507,11462.407858013337,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +19973,2,69.0,0.0,9,221,350.0,0.0,0.0,0,75,1265.6194212439218,13.243272770102239,596.8201901802214,1585.0,34.63973063491302,0.0,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,119993,2,1,2,0,1,,600.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1974.82712940427,350.0,30668.885723467636,0,5,0,1,200.0,1,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05168104294011465,30668.885723467636,8,4,8,8_1,8_1,8_0_0 +19974,2,33.0,0.0,5,111,900.0,0.0,0.0,46,48,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,2,2,2,2,2,2,1,2,2,40.0,2,,3,119994,2,1,0,0,1,,0.0,859.0,43,2.0,0.0,3.0,4.0,2.1,2,2,931.527377489975,900.0,44558.35546368064,1,1,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.02019823197320617,21218.264506514588,5,3,5,5_0,5_4,5_0_0 +19975,0,75.0,0.0,7,111,250.0,,,0,77,0.0,0.0,,388.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,119995,1,3,0,0,2,,140.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,42.58214728273406,250.0,18470.134375,0,5,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021006885609082093,18470.134375,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +19976,2,42.0,0.0,8,120,1200.0,0.0,0.0,67,64,0.0,463.51454695357836,2046.2406520464733,1646.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,119996,2,2,4,0,1,,360.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,1066.40911975959,1200.0,35295.03685453292,1,1,1,2,112.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04663545208307681,15345.668197623008,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +19977,0,83.0,0.0,1,112,300.0,0.0,0.0,0,71,2109.365702073203,0.0,511.56016301161833,2380.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,119997,1,1,4,0,2,,0.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,1129.12049309616,300.0,16028.597551643208,0,5,0,1,120.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14848460648735975,16028.597551643208,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +19978,1,29.0,327.0,2,111,390.0,0.0,0.0,21,47,0.0,0.0,665.0282119151038,390.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,119998,1,2,0,1,1,594.0,0.0,674.0,43,2.0,0.0,2.0,2.0,1.5,2,2,600.676648301544,390.0,16182.83246210227,1,4,2,3,58.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02409961302592242,10788.554974734847,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +19979,1,26.0,60.0,1,111,0.0,0.0,0.0,56,52,0.0,0.0,0.0,1436.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,1,119999,2,2,0,0,1,,0.0,781.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1247.90949662405,0.0,13392.865028990569,3,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10722127019809387,8928.576685993712,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +19980,2,74.0,0.0,1,111,1200.0,69.0,0.0,0,71,0.0,0.0,2046.2406520464733,1269.0,0.0,130.99677930784543,41,2,2,2,1,2,2,2,2,0,,2,,1,120000,2,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,711.275147886608,1200.0,10586.076156935738,0,5,0,1,145.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.11987444461832841,10586.076156935738,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +19981,2,46.0,0.0,8,111,320.0,862.0,0.0,0,46,0.0,0.0,545.6641738790596,1182.0,0.0,1636.5104893240982,20,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,120001,2,1,4,0,1,,131.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1028.73269816725,320.0,37023.76967017177,0,1,0,1,78.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03192543629484275,37023.76967017177,9,5,9,9_1,9_3,9_0_0 +19982,1,25.0,117.0,9,120,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1153.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,2011.0,6,120002,2,1,1,0,1,,237.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,141.893984340863,0.0,32379.347004779287,1,1,2,3,90.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03560911836269625,21586.231336519526,6,3,6,6_1,6_0,6_0_0 +19983,1,47.0,150.0,1,111,400.0,1800.0,0.0,0,56,0.0,0.0,682.0802173488245,2200.0,0.0,3417.30728629162,50,2,2,2,2,1,2,2,2,0,,1,,1,120003,2,2,5,0,1,,320.0,,32,1.0,0.0,5.0,4.0,2.1,3,1,228.175072522604,400.0,21085.97578611978,0,1,1,2,67.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.10433474942374682,10040.940850533229,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +19984,2,29.0,0.0,2,111,240.0,0.0,0.0,0,37,0.0,0.0,409.2481304092947,240.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,10.0,2,,2,120004,2,1,0,1,2,272.0,0.0,1019.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1380.23006731928,240.0,56834.93994890072,0,1,3,4,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004222754527686309,56834.93994890072,10,5,10,10_0,10_4,10_0_1 +19985,2,41.0,0.0,5,111,1000.0,2000.0,0.0,47,46,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,3,90.0,1,,3,120005,2,1,1,0,1,,1330.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,4,2,635.703072090542,1000.0,54424.93083754533,1,1,1,2,122.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055121797195384466,18767.21753018805,5,3,5,5_1,5_4,5_0_0 +19986,2,68.0,0.0,2,112,140.0,,,77,75,0.0,0.0,,392.0,349.1684847999233,,60,0,0,0,0,0,0,0,0,0,,1,,2,120006,2,1,0,0,1,,132.0,,41,2.0,1.0,4.0,4.0,2.5,4,4,103.1272798094505,140.0,65433.32838086444,5,5,0,1,110.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.005990830815120783,26173.331352345776,7,4,7,7_1,7_1,7_0_1 +19987,2,53.0,0.0,9,111,480.0,,,0,54,0.0,0.0,,500.0,27.711784507930417,,50,0,0,0,0,0,0,0,0,2,45.0,2,2011.0,6,120007,2,1,0,0,1,,378.0,680.0,32,1.0,1.0,3.0,2.0,1.3,1,1,256.13722546070346,480.0,30891.0,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01618594412612088,23762.30769230769,6,3,6,6_0,6_2,6_0_0 +19988,2,67.0,0.0,7,111,251.0,,,68,77,0.0,0.0,,320.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,5,120008,2,2,0,0,2,,240.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,114.00600804837084,251.0,18556.19607843137,1,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01724491370146434,12370.797385620914,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +19989,2,73.0,0.0,8,211,1296.0,,,75,90,0.0,0.0,,1474.0,246.63488212058073,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,120009,1,3,0,0,1,,1062.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,142.9118694623337,1296.0,91055.0,5,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016188018230739662,60703.333333333336,10,5,10,10_1,10_2,10_0_0 +19990,1,48.0,359.0,5,111,507.0,99.0,0.0,85,64,0.0,0.0,864.5366754896351,606.0,0.0,187.95190074603912,71,2,1,2,2,1,2,2,2,0,,2,,3,120010,1,2,0,1,1,640.0,0.0,313.0,42,1.0,0.0,4.0,5.0,2.4,2,2,333.440226361801,507.0,16482.436425724383,6,4,2,3,114.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.036766409064026895,6867.681844051826,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +19991,2,34.0,0.0,2,111,266.0,0.0,0.0,0,37,0.0,0.0,453.5833445369683,266.0,0.0,0.0,60,1,1,2,2,1,2,2,2,2,15.0,2,,2,120011,2,3,0,1,2,600.0,0.0,920.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1042.71096921642,266.0,51974.391913926425,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005117904995223732,51974.391913926425,10,5,10,10_0,10_4,10_0_1 +19992,2,45.0,0.0,7,111,570.0,,,0,52,0.0,0.0,,846.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,120012,2,1,0,0,2,,570.0,480.0,32,1.0,0.0,3.0,2.0,1.5,2,2,96.89617504460047,570.0,23964.859683299634,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03530168802071272,15976.573122199756,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +19993,2,47.0,0.0,1,112,0.0,0.0,0.0,71,11,5800.755680701309,0.0,0.0,6188.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,5,,1,120013,1,2,3,0,2,,600.0,,42,2.0,2.0,13.0,5.0,3.0,5,4,512.361247361478,0.0,139133.15620056415,5,1,0,1,390.0,10,1,1,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04447538005304669,46377.71873352138,10,5,10,10_1,10_1,10_1_0 +19994,2,29.0,0.0,2,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,361.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,120014,2,2,0,1,1,,931.0,650.0,43,2.0,0.0,4.0,3.0,1.8,2,2,718.517699536183,0.0,28039.047319909554,1,1,2,3,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012874902484424513,15577.248511060863,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +19995,2,27.0,0.0,2,111,0.0,0.0,0.0,67,38,0.0,0.0,0.0,1566.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,7.0,2,,2,120015,2,2,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,2871.13380284922,0.0,43892.85979318162,3,1,1,2,70.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035677784664267076,29261.906528787746,8,4,8,8_0,8_3,8_0_1 +19996,1,44.0,46.0,6,111,1260.0,252.0,0.0,45,47,0.0,0.0,2148.552684648797,1512.0,0.0,478.4230200808268,50,0,0,0,0,0,0,0,0,2,60.0,2,,4,120016,2,1,0,1,1,960.0,0.0,440.0,43,2.0,0.0,4.0,5.0,2.8,4,3,664.149154223838,1260.0,43381.0,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03485396832714783,15493.214285714286,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +19997,2,60.0,0.0,7,111,780.0,,,75,54,0.0,0.0,,950.0,235.55016831740858,,60,0,0,0,0,0,0,0,0,0,,1,,5,120017,2,1,0,0,2,,700.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,121.56948257797286,780.0,59170.88480098102,5,1,0,1,113.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016055193414722262,29585.44240049051,8,4,8,8_1,8_3,8_0_0 +19998,2,31.0,0.0,9,112,1100.0,0.0,0.0,43,47,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,120018,2,2,4,0,1,,450.0,680.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1752.43032525399,1100.0,41438.801414239286,1,1,2,3,107.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026545169320993336,23021.556341244046,6,3,6,6_1,6_0,6_0_0 +19999,2,59.0,0.0,7,111,407.0,120.0,0.0,0,45,0.0,0.0,694.0166211524289,527.0,0.0,227.8204857527747,20,2,1,2,1,1,2,2,2,3,60.0,2,,5,120019,1,3,0,1,1,775.0,0.0,378.0,22,2.0,1.0,3.0,2.0,1.5,2,2,728.830012093427,407.0,23413.383401556028,0,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.022508494007960258,15608.922267704018,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +20000,2,41.0,0.0,9,111,720.0,,,54,22,0.0,0.0,,766.0,63.73710436823996,,43,0,0,0,0,0,0,0,0,0,,1,2009.0,6,120020,1,1,0,0,1,,340.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,142.2472858604853,720.0,74994.40438292513,1,1,1,2,106.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010214095388887498,35711.62113472625,9,5,9,9_1,9_3,9_0_0 +20001,1,51.0,120.0,2,111,720.0,400.0,0.0,85,63,0.0,0.0,1227.744391227884,1120.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,120021,2,1,0,1,2,,0.0,670.0,42,1.0,0.0,5.0,6.0,3.5,6,5,307.812276721197,720.0,27021.058329757485,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04144915370567027,7720.30237993071,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +20002,1,25.0,254.0,1,400,0.0,0.0,0.0,47,63,0.0,0.0,0.0,3128.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,120022,2,1,1,0,1,,251.0,500.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1268.53469798913,0.0,20064.25616724266,3,1,2,3,96.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.15589912598438813,13376.170778161773,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +20003,1,47.0,286.0,7,111,0.0,,,0,52,0.0,0.0,,86.0,119.1606733841008,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,120023,2,3,0,0,2,,200.0,600.0,32,2.0,0.0,3.0,3.0,2.0,3,2,97.77409870758459,0.0,29421.2477087644,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.002923057541654875,14710.6238543822,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +20004,2,51.0,0.0,2,111,385.0,,,0,33,0.0,0.0,,477.0,127.47420873647992,,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,120024,1,2,0,0,1,,207.0,,12,1.0,1.0,8.0,1.0,1.0,1,1,200.0716816796159,385.0,53745.8053655463,0,1,1,2,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00887511121576346,53745.8053655463,10,5,10,10_1,10_2,10_0_1 +20005,2,26.0,0.0,6,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1437.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,120025,2,2,5,0,1,,315.0,325.0,12,1.0,0.0,2.0,1.0,1.0,1,1,258.680841978268,0.0,18912.13959877211,0,1,2,3,65.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07598294167061344,18912.13959877211,5,3,5,5_1,5_0,5_0_0 +20006,2,57.0,0.0,7,211,1200.0,,,78,52,0.0,0.0,,1704.0,698.3369695998466,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,120026,2,3,0,0,2,,300.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,104.06805143208251,1200.0,54221.380997530876,7,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03142671707453553,27110.690498765438,7,4,7,7_1,7_2,7_0_0 +20007,2,85.0,0.0,6,111,180.0,,,0,77,0.0,0.0,,330.0,207.83838380947813,,60,0,0,0,0,0,0,0,0,0,,2,,4,120027,2,1,0,0,2,,300.0,482.0,21,1.0,2.0,4.0,2.0,1.5,2,2,112.1215773596662,180.0,17165.0,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019225167491989513,11443.333333333334,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +20008,1,38.0,408.0,9,111,444.0,1036.0,0.0,63,52,0.0,0.0,757.1090412571951,1480.0,0.0,1966.8501936656214,42,0,0,0,0,0,0,0,0,1,10.0,1,2007.0,6,120028,1,1,1,0,1,,380.0,629.0,43,2.0,0.0,4.0,4.0,2.1,2,2,726.832692371295,444.0,31560.053486748926,4,1,2,3,87.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04689472407331013,15028.59689845187,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +20009,2,69.0,0.0,9,400,473.0,0.0,0.0,0,77,0.0,0.0,806.5598570149849,533.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,120029,2,1,1,0,1,,155.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1984.75584315587,473.0,22075.474574396372,0,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024144441298588674,22075.474574396372,6,3,6,6_1,6_0,6_0_0 +20010,2,51.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,779.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120030,2,2,2,0,1,,220.0,500.0,22,1.0,0.0,5.0,2.0,1.5,2,2,1464.54575885363,0.0,29452.13854689451,0,1,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02644969222726067,19634.759031263005,5,3,5,5_1,5_3,5_0_1 +20011,2,54.0,0.0,6,111,800.0,0.0,0.0,72,90,0.0,0.0,1364.160434697649,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,4,120031,2,1,0,0,1,,0.0,750.0,42,1.0,1.0,3.0,2.0,1.5,2,2,971.319494221641,800.0,48217.00717388706,5,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016591656075104905,32144.67144925804,8,4,8,8_0,8_4,8_0_0 +20012,2,73.0,0.0,5,111,800.0,,,0,75,0.0,0.0,,932.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,120032,2,1,0,0,2,,300.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,88.63490974405487,800.0,31441.0,0,5,0,1,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029642823065424127,20960.666666666668,5,3,5,5_1,5_3,5_0_0 +20013,2,61.0,0.0,2,111,240.0,180.0,0.0,0,75,0.0,0.0,409.2481304092947,420.0,0.0,341.730728629162,70,0,0,0,0,0,0,0,0,0,,2,,2,120033,2,2,0,1,1,720.0,0.0,324.0,31,1.0,2.0,4.0,2.0,1.5,2,2,315.305574554609,240.0,38767.8035043657,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010833732170374397,25845.2023362438,7,4,7,7_0,7_4,7_0_1 +20014,2,87.0,0.0,2,112,430.0,620.0,0.0,0,86,0.0,0.0,733.2362336499863,1050.0,0.0,1177.072509722669,50,0,0,0,0,0,0,0,0,0,,2,,2,120034,2,2,0,0,1,,55.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,3321.18811115888,430.0,25895.07277863285,0,5,0,1,60.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04054825444886954,25895.07277863285,7,4,7,7_0,7_1,7_0_1 +20015,1,47.0,248.0,2,221,163.0,235.0,0.0,85,85,0.0,0.0,277.94768856964595,398.0,0.0,446.14845126585044,71,0,0,0,0,0,0,0,0,0,,2,,2,120035,2,2,0,1,1,568.0,180.0,236.0,41,0.0,0.0,2.0,2.0,1.5,2,2,2901.92693354927,163.0,8370.498007529633,6,6,2,3,44.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0475479475225944,5580.332005019755,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +20016,2,76.0,0.0,1,120,515.0,0.0,0.0,0,71,0.0,0.0,878.1782798366115,573.0,80.36417507299822,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120036,2,1,1,0,1,,128.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,554.622697241377,515.0,12199.007113782536,0,5,0,1,63.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.046971035810989895,12199.007113782536,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +20017,2,33.0,0.0,2,111,1530.0,0.0,0.0,34,47,0.0,0.0,2608.9568313592536,1530.0,0.0,0.0,20,2,2,2,1,2,2,2,2,0,,1,,2,120037,2,2,1,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1437.67640040797,1530.0,47484.39492591562,1,4,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.032221111849210275,26380.219403286457,7,4,7,7_1,7_4,7_0_1 +20018,2,51.0,0.0,5,111,344.0,130.0,0.0,0,54,0.0,0.0,586.588986919989,474.0,0.0,246.80552623217258,50,2,1,1,2,1,2,2,2,2,20.0,2,,3,120038,2,2,0,1,1,494.0,0.0,340.0,12,1.0,1.0,3.0,1.0,1.0,1,1,459.972634371954,344.0,9381.987379754855,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.050522344660453515,9381.987379754855,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +20019,2,66.0,0.0,1,112,922.0,284.0,0.0,75,75,0.0,0.0,1572.1949009890404,1206.0,0.0,539.1751496149001,50,0,0,0,0,0,0,0,0,0,,2,,1,120039,1,1,0,0,2,,0.0,630.0,41,0.0,1.0,2.0,2.0,1.5,2,2,1121.95368643037,922.0,43758.48266404666,5,5,2,3,28.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02756037062022919,29172.32177603111,8,4,8,8_0,8_2,8_1_0 +20020,2,64.0,0.0,6,112,1350.0,0.0,0.0,85,74,0.0,0.0,2302.0207335522828,1400.0,69.27946126982604,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,120040,2,1,2,0,1,,215.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,869.762575579108,1350.0,82615.33001252958,5,5,0,1,160.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016946007475703042,55076.88667501972,10,5,10,10_1,10_1,10_0_0 +20021,2,44.0,0.0,9,112,929.0,0.0,0.0,37,42,0.0,397.2981831030672,1584.1313047926449,1329.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,120041,2,2,1,0,1,,211.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1692.285261143,929.0,62273.0,1,1,1,2,148.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021341512372938513,29653.809523809523,8,4,8,8_1,8_0,8_0_0 +20022,2,61.0,0.0,1,212,1600.0,0.0,0.0,72,75,0.0,463.51454695357836,2728.320869395298,1986.0,49.88121211427475,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,120042,1,3,2,0,2,,450.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,897.774285050902,1600.0,37845.06768470876,5,5,0,1,130.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0524771158171938,25230.045123139174,7,4,7,7_1,7_0,7_1_0 +20023,2,33.0,0.0,7,111,200.0,,,38,38,0.0,0.0,,242.0,58.19474746665388,,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,120043,1,1,0,0,2,,90.0,900.0,43,2.0,0.0,5.0,2.0,1.5,2,2,132.04627090970678,200.0,90393.2874718156,1,1,2,3,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0026771899415147945,60262.191647877065,10,5,10,10_1,10_2,10_0_0 +20024,2,46.0,0.0,6,111,568.0,1520.0,0.0,46,37,0.0,0.0,968.5539086353308,2088.0,0.0,2885.7261528684794,60,0,0,0,0,0,0,0,0,0,,1,,4,120044,2,1,2,0,1,,599.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,482.483772810196,568.0,86622.96792628891,4,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024104461553161816,34649.187170515565,9,5,9,9_1,9_3,9_0_0 +20025,2,52.0,0.0,7,111,1999.0,0.0,0.0,85,38,0.0,66.2163638505112,3408.6958862007505,2049.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,,5,120045,2,1,2,0,1,,513.0,,42,1.0,0.0,6.0,3.0,2.0,3,3,655.403651986651,1999.0,93562.01579615238,6,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02189991293544001,46781.00789807619,10,5,10,10_1,10_4,10_0_0 +20026,1,68.0,136.0,7,111,194.0,,,0,77,0.0,0.0,,238.0,60.965925917446924,,70,0,0,0,0,0,0,0,0,0,,2,,5,120046,2,1,0,0,2,,323.0,297.0,11,0.0,3.0,4.0,1.0,1.0,1,1,211.4524460417737,194.0,11328.319509243789,0,5,2,3,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021009294432929308,11328.319509243789,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +20028,2,69.0,0.0,1,111,326.0,2596.0,0.0,77,78,0.0,0.0,555.8953771392919,2922.0,0.0,4928.516508451692,71,0,0,0,0,0,0,0,0,0,,1,,1,120048,2,1,4,0,1,,406.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1828.08927089338,326.0,31483.13020517434,5,5,0,1,70.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09281160993069747,20988.753470116226,5,3,5,5_1,5_2,5_1_0 +20029,2,40.0,0.0,2,111,610.0,700.0,0.0,0,22,0.0,119.18945493092015,1040.1723314569574,1400.0,0.0,1328.9528335578523,31,2,2,2,1,2,2,2,2,0,,1,,2,120049,2,2,3,0,2,,250.0,942.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1561.08778006224,610.0,24179.8146091619,0,1,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.05789953407953469,24179.8146091619,7,4,7,7_1,7_3,7_0_1 +20030,0,73.0,0.0,2,111,420.0,,,0,77,0.0,0.0,,708.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,,2,120050,2,2,0,0,2,,82.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,55.46085073601329,420.0,6999.307864750348,0,5,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10115285877988066,6999.307864750348,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +20031,1,47.0,200.0,2,111,1200.0,0.0,0.0,85,67,0.0,0.0,2046.2406520464733,1532.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120051,2,3,0,1,1,,1000.0,630.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,325.737582191066,1200.0,22515.326954763255,6,1,2,3,90.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0680425384484988,8339.00998324565,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20032,2,47.0,0.0,2,120,800.0,1600.0,0.0,47,38,0.0,0.0,1364.160434697649,2460.0,83.13535352379125,3037.6064767036623,10,0,0,0,0,0,0,0,0,2,40.0,1,,2,120052,2,2,3,0,1,,210.0,,43,2.0,0.0,8.0,4.0,2.5,4,2,1762.3462757433,800.0,68191.2040656627,1,1,0,1,150.0,0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03607503392418787,27276.481626265082,7,4,7,7_1,7_1,7_0_1 +20033,2,44.0,0.0,9,400,561.0,0.0,0.0,0,67,0.0,0.0,956.6175048317264,561.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,120053,2,1,1,0,1,,140.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,1487.83145841385,561.0,23579.176159575774,0,1,1,2,123.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023792179854094327,14736.985099734859,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +20034,2,58.0,0.0,6,112,2000.0,0.0,0.0,64,75,0.0,0.0,3410.4010867441225,2635.0,207.83838380947813,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,120054,2,1,1,0,1,,600.0,,42,3.0,2.0,4.0,4.0,2.5,4,4,702.310112056389,2000.0,61031.50708022124,1,5,0,1,87.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04317442131220017,24412.602832088498,7,4,7,7_1,7_2,7_0_0 +20035,1,54.0,263.0,2,111,1000.0,1200.0,0.0,68,47,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,4,10.0,2,,2,120055,2,1,0,1,1,750.0,0.0,500.0,43,5.0,1.0,6.0,7.0,4.0,7,5,351.611445232463,1000.0,25986.47743340045,1,1,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08465941586882174,6496.619358350113,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20036,2,40.0,0.0,2,111,572.0,0.0,0.0,47,35,0.0,0.0,975.374710808819,572.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,120056,2,3,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,592.328491233911,572.0,34070.1211728602,1,4,1,2,78.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016788904186688,18927.845096033445,5,3,5,5_0,5_3,5_0_1 +20037,2,44.0,0.0,6,111,0.0,,,0,63,0.0,0.0,,427.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,4,120057,2,2,0,0,2,,233.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,132.37868158680809,0.0,7819.897120809397,0,4,0,1,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05460429893172347,7819.897120809397,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20038,2,93.0,0.0,1,111,300.0,1500.0,0.0,0,86,0.0,0.0,511.56016301161833,1800.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,,1,120058,2,1,2,0,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1487.66625020437,300.0,36614.798595314685,0,5,0,1,80.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04916045066625963,36614.798595314685,9,5,9,9_1,9_2,9_1_0 +20039,2,49.0,0.0,7,120,1400.0,0.0,0.0,55,47,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,120059,2,1,1,0,1,,310.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1545.34004924345,1400.0,47609.45367233585,1,1,1,2,90.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02940592449632519,31739.63578155723,8,4,8,8_1,8_1,8_0_0 +20040,1,44.0,35.0,8,211,800.0,0.0,0.0,55,55,2109.365702073203,0.0,1364.160434697649,2800.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,2000.0,6,120060,1,3,3,0,1,,426.0,600.0,43,2.0,0.0,4.0,4.0,2.3,3,2,978.347379729083,800.0,30402.926764188123,4,4,2,3,100.0,1,3,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,1,1,0,1,0.09209639656462762,13218.663810516577,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +20041,2,28.0,0.0,2,111,1522.0,307.0,0.0,63,68,0.0,139.05436408607352,2595.3152270122773,1934.0,0.0,582.8407427175152,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,120061,1,3,3,0,1,,227.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1450.69775104418,1522.0,49229.90775514905,1,1,1,2,105.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03928506243844666,23442.813216737643,6,3,6,6_1,6_2,6_0_1 +20042,2,41.0,0.0,2,111,400.0,0.0,0.0,0,64,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,120062,2,3,0,1,1,584.0,240.0,632.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2084.68299417032,400.0,22096.958272060252,0,1,2,3,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01810203898089297,22096.958272060252,6,3,6,6_0,6_3,6_0_1 +20043,2,50.0,0.0,7,111,896.0,1200.0,0.0,56,31,0.0,274.1357463411164,1527.8596868613668,2303.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,0,,1,,5,120063,1,2,3,0,1,,1400.0,,43,3.0,0.0,6.0,5.0,3.0,5,4,573.092945224753,896.0,137860.68044411548,1,1,0,1,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016705270803690584,45953.560148038494,10,5,10,10_1,10_4,10_0_0 +20044,2,42.0,0.0,8,400,1200.0,0.0,0.0,56,47,0.0,0.0,2046.2406520464733,1300.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,120064,2,1,1,0,1,,130.0,,42,1.0,0.0,6.0,6.0,3.0999999999999996,4,3,1704.19880767865,1200.0,46799.62292484852,6,1,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027778001589618746,15096.652556402749,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +20045,2,59.0,0.0,1,400,876.0,0.0,0.0,62,67,0.0,662.163638505112,1493.7556759939255,1437.0,84.52094274918778,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,120065,1,1,3,0,2,,290.0,,43,2.0,9.0,5.0,3.0,1.8,2,2,1042.69383197824,876.0,32116.37776615064,1,1,1,2,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.044743526510469055,17842.43209230591,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +20046,2,70.0,0.0,5,111,350.0,0.0,0.0,0,78,1371.087706347582,0.0,596.8201901802214,1650.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,120066,2,1,1,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1481.1085699587,350.0,18458.052626529214,0,5,0,1,86.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08939187862258577,18458.052626529214,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +20047,2,75.0,0.0,1,111,1200.0,0.0,0.0,77,77,632.8097106219609,0.0,2046.2406520464733,1880.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120067,1,1,2,0,2,,780.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,833.015532373215,1200.0,28893.900112938143,5,5,0,1,90.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06506563643715829,19262.600075292095,5,3,5,5_1,5_3,5_1_0 +20048,2,84.0,0.0,2,300,200.0,0.0,0.0,0,77,2531.2388424878436,0.0,341.04010867441224,2720.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120068,2,1,2,0,1,,300.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1591.42273909834,200.0,16918.359192019394,0,5,0,1,90.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.16077209196995054,16918.359192019394,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +20049,2,43.0,0.0,2,112,450.0,0.0,0.0,54,47,1582.0242765549024,529.7309108040896,767.3402445174275,2390.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,2,120069,2,2,1,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1999.3243270938,450.0,49359.71721087767,1,1,1,2,155.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04842005049966742,23504.62724327508,6,3,6,6_1,6_1,6_0_1 +20050,2,40.0,0.0,9,300,0.0,0.0,0.0,68,62,0.0,0.0,0.0,1643.0,96.99124577775646,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,120070,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,946.860100311789,0.0,34509.198175568505,1,1,1,2,220.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04761049479159431,15003.999206768916,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +20051,2,30.0,0.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,644.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,120071,2,1,0,1,1,,210.0,850.0,42,1.0,0.0,3.0,2.0,1.5,2,2,837.168993059364,0.0,18706.92853090482,6,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03442574760127396,12471.285687269881,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +20053,2,37.0,0.0,6,111,2400.0,0.0,0.0,38,38,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,4,120073,2,1,1,0,1,,210.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,428.937396921857,2400.0,72647.22032161235,1,1,1,2,99.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03303636380545735,40359.56684534019,9,5,9,9_1,9_3,9_0_0 +20054,2,75.0,0.0,2,111,0.0,0.0,1252.0,72,72,0.0,1231.6243676195081,789.1584995992592,2182.0,0.0,1498.3086487509804,50,0,0,0,0,0,0,0,0,0,,1,,2,120074,2,2,2,0,1,,197.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,276.003256296423,0.0,30346.485207633177,5,5,0,1,140.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07190289040297664,20230.99013842212,5,3,5,5_1,5_2,5_0_1 +20055,2,78.0,0.0,2,120,450.0,0.0,0.0,78,78,1898.4291318658827,79.45963662061344,767.3402445174275,2310.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,120075,2,2,2,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1344.5017697202,450.0,34140.47332152198,5,5,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06766162783524701,22760.315547681323,6,3,6,6_1,6_0,6_0_1 +20056,1,27.0,413.0,9,112,4424.0,,,43,67,0.0,0.0,,4562.0,191.2113131047199,,44,0,0,0,0,0,0,0,0,0,,1,2004.0,6,120076,2,2,0,0,2,,320.0,433.0,43,2.0,0.0,3.0,4.0,2.1,2,2,108.26337213958669,4424.0,26968.879611328546,4,1,2,3,44.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.16915793558156145,12842.323624442164,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +20057,2,51.0,0.0,7,112,800.0,0.0,0.0,42,42,0.0,317.83854648245375,1364.160434697649,1040.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,120077,2,1,2,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,648.184429495163,800.0,40779.01530018995,1,1,0,1,105.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025503313219903952,17730.006652256503,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +20058,2,67.0,0.0,2,400,2200.0,0.0,0.0,86,78,0.0,0.0,3751.441195418535,2450.0,346.39730634913025,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,120078,2,1,2,0,1,,165.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,1509.33774369335,2200.0,38769.08920679511,5,5,0,1,123.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06319467519424173,19384.544603397557,5,3,5,5_1,5_0,5_0_1 +20059,2,56.0,0.0,6,222,550.0,920.0,0.0,0,63,0.0,0.0,937.8602988546337,1470.0,0.0,1746.6237241046058,50,0,0,0,0,0,0,0,0,1,15.0,1,,4,120079,2,1,2,0,1,,284.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1503.40886975388,550.0,18523.782695287253,0,1,0,1,90.0,1,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07935744141362615,18523.782695287253,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +20061,0,36.0,0.0,5,111,400.0,0.0,0.0,54,22,0.0,0.0,682.0802173488245,600.0,277.1178450793042,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,120081,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1460.40676745179,400.0,28095.0,1,1,5,0,70.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021356113187399894,15608.333333333332,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +20062,1,37.0,483.0,7,111,260.0,0.0,0.0,0,85,0.0,0.0,443.3521412767359,260.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,5,120082,2,2,0,1,1,405.0,0.0,518.0,31,0.0,0.0,3.0,3.0,1.6,1,1,195.104097941269,260.0,10001.646758144945,0,6,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.025995719133778274,6251.02922384059,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +20063,2,40.0,0.0,1,120,700.0,0.0,0.0,0,65,0.0,0.0,1193.6403803604428,725.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,120083,1,1,0,0,2,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2185.63149424952,700.0,17200.062128231904,0,1,2,3,44.0,0,1,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04215101053675828,17200.062128231904,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +20064,0,85.0,0.0,1,400,228.0,0.0,0.0,0,77,1476.555991451242,0.0,388.7857238888299,1878.0,346.39730634913025,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120084,2,2,2,0,1,,109.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,909.254119046101,228.0,17934.245633856866,0,5,0,1,83.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10471586250913442,17934.245633856866,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +20065,2,36.0,0.0,1,111,300.0,0.0,0.0,37,38,0.0,0.0,511.56016301161833,300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,120085,2,1,0,1,1,33.0,0.0,810.0,43,2.0,0.0,2.0,3.0,1.8,2,2,900.806090756656,300.0,87076.53239143001,1,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003445245139659761,48375.85132857223,10,5,10,10_0,10_4,10_1_0 +20066,2,60.0,0.0,1,111,492.0,1400.0,0.0,0,74,0.0,139.05436408607352,838.958667339054,1997.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,0,,1,,1,120086,2,1,2,0,1,,175.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,721.172611099737,492.0,27742.80075957172,0,5,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07198263857015237,27742.80075957172,7,4,7,7_1,7_2,7_1_0 +20067,1,52.0,337.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,616.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,3,120087,2,1,0,1,1,1188.0,376.0,290.0,32,2.0,0.0,4.0,4.0,2.5,4,3,324.713312298801,0.0,21828.87416456841,0,1,2,3,75.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028219503917424286,8731.549665827364,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20068,2,23.0,0.0,9,112,0.0,0.0,0.0,56,55,0.0,0.0,0.0,791.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,120088,2,1,0,0,1,,276.0,630.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1400.9491702375,0.0,32195.74928712589,1,1,2,3,60.0,10,1,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02456846066683396,21463.832858083926,6,3,6,6_0,6_1,6_0_0 +20069,2,46.0,0.0,9,111,0.0,0.0,750.0,0,63,0.0,0.0,472.7387178110578,750.0,0.0,897.5491106735105,50,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,120089,1,2,0,0,1,,200.0,410.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1488.8058571133,0.0,21628.034889329054,0,1,2,3,41.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03467721426554748,21628.034889329054,6,3,6,6_0,6_2,6_0_0 +20070,2,35.0,0.0,1,400,533.0,0.0,0.0,53,48,0.0,397.2981831030672,908.8718896173086,2282.0,2007.718787599559,0.0,12,2,2,2,1,2,2,2,2,2,15.0,1,,1,120090,2,2,3,0,2,,248.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1706.06891088944,533.0,79068.35210575855,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02886110484442235,43926.862280976966,10,5,10,10_1,10_0,10_1_0 +20071,2,47.0,0.0,1,111,390.0,350.0,0.0,0,67,0.0,0.0,665.0282119151038,740.0,0.0,664.4764167789261,71,0,0,0,0,0,0,0,0,3,30.0,1,,1,120091,2,2,4,0,1,,250.0,410.0,12,1.0,5.0,4.0,1.0,1.0,1,1,437.186762649749,390.0,22746.761064100137,0,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03253210414945177,22746.761064100137,6,3,6,6_1,6_3,6_1_0 +20072,2,80.0,0.0,2,111,250.0,150.0,0.0,0,90,0.0,0.0,426.3001358430153,400.0,0.0,284.77560719096834,70,0,0,0,0,0,0,0,0,0,,2,,2,120092,2,1,0,1,1,779.0,0.0,399.0,11,0.0,3.0,4.0,1.0,1.0,1,1,240.92088844733,250.0,17599.045010762355,0,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02272850599310291,17599.045010762355,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +20074,2,53.0,0.0,7,112,1000.0,0.0,0.0,0,52,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,4,75.0,2,,5,120094,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,590.36042802149,1000.0,28796.427757734826,0,1,1,2,37.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034726529568633605,28796.427757734826,8,4,8,8_0,8_1,8_0_0 +20075,1,20.0,346.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,595.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120095,2,2,0,1,1,881.0,0.0,324.0,31,0.0,0.0,3.0,2.0,1.3,1,1,352.290722076165,0.0,9396.568479717096,0,6,2,3,71.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06332098800581654,7228.129599782382,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20076,2,51.0,0.0,5,111,900.0,0.0,0.0,46,33,0.0,0.0,1534.680489034855,1267.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,,3,120096,2,1,0,1,1,1200.0,0.0,1300.0,43,2.0,2.0,6.0,3.0,2.0,3,2,905.991127069838,900.0,57860.49806747728,1,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0218974955680889,28930.24903373864,8,4,8,8_0,8_4,8_0_0 +20077,1,50.0,214.0,1,111,220.0,700.0,0.0,0,62,0.0,0.0,375.14411954185346,920.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,120097,2,3,0,0,1,,0.0,296.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1992.10851100632,220.0,15390.702353091185,0,1,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05977634931099946,15390.702353091185,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +20078,1,87.0,357.0,7,111,0.0,,,0,86,0.0,0.0,,469.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,120098,2,2,0,0,2,,144.0,585.0,21,2.0,4.0,4.0,3.0,2.0,3,3,119.57945041440756,0.0,24015.0,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019529460753695608,12007.5,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +20079,2,41.0,0.0,1,111,732.0,1858.0,0.0,52,42,0.0,0.0,1248.206797748349,2590.0,0.0,3527.420521072128,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,120099,1,2,1,0,1,,529.0,,43,2.0,0.0,9.0,5.0,2.4,2,2,249.152005051669,732.0,66413.5887546741,1,1,1,2,210.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038998043149982904,27672.328647780876,7,4,7,7_1,7_2,7_1_0 +20080,0,53.0,0.0,2,112,811.0,0.0,0.0,0,52,0.0,198.6490915515336,1382.9176406747415,1578.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,120100,2,2,3,0,1,,104.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,934.402857298091,811.0,13511.109519846159,0,1,5,0,70.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1167927769131108,13511.109519846159,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +20081,2,52.0,0.0,1,112,660.0,0.0,0.0,85,35,1054.6828510366015,0.0,1125.4323586255605,2146.0,673.3963635427092,0.0,50,2,2,1,2,1,2,2,1,0,,1,,1,120101,2,3,2,0,1,,460.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1024.08053675613,660.0,26025.9617211928,6,1,0,1,60.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.08245612680865982,17350.64114746187,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +20082,1,77.0,184.0,1,400,800.0,0.0,0.0,0,77,0.0,0.0,1364.160434697649,950.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120102,2,1,2,0,1,,168.0,437.0,11,0.0,9.0,3.0,1.0,1.0,1,1,1306.97445153724,800.0,11932.630332768045,0,5,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07961362863904507,11932.630332768045,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +20083,2,60.0,0.0,6,300,1320.0,0.0,0.0,62,63,0.0,0.0,2250.864717251121,1500.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,120103,2,1,3,0,2,,360.0,,43,3.0,3.0,8.0,3.0,2.0,3,3,1328.50823459876,1320.0,42578.82927429071,4,1,0,1,182.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03522877508766327,21289.414637145353,6,3,6,6_1,6_0,6_0_0 +20084,2,62.0,0.0,9,300,0.0,0.0,0.0,77,74,0.0,0.0,0.0,2722.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,120104,2,1,1,0,1,,288.0,820.0,41,0.0,4.0,5.0,2.0,1.5,2,2,805.732359451668,0.0,50427.238526628666,5,5,2,3,126.0,0,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053978763849275975,33618.15901775244,9,5,9,9_1,9_0,9_0_0 +20085,2,63.0,0.0,1,111,480.0,900.0,0.0,86,78,977.6910029109296,0.0,818.4962608185893,2307.0,0.0,1708.65364314581,70,0,0,0,0,0,0,0,0,0,,1,,1,120105,2,1,2,0,1,,820.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1436.83417945253,480.0,28351.40687923118,5,5,0,1,42.0,9,7,9,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08137162327877254,18900.937919487453,5,3,5,5_1,5_3,5_1_0 +20086,2,66.0,0.0,9,120,700.0,0.0,0.0,43,75,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2010.0,6,120106,2,1,1,0,1,,450.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2248.38340164863,700.0,37230.128329891835,4,5,0,1,128.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01880197655504653,24820.085553261222,7,4,7,7_1,7_0,7_0_0 +20087,2,66.0,0.0,1,300,910.0,0.0,0.0,72,72,0.0,0.0,1551.7324944685756,2710.0,2494.060605713738,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,120107,2,1,2,0,1,,1140.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1258.95827669577,910.0,85038.2726678222,5,5,0,1,230.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03186800384088049,56692.18177854813,10,5,10,10_1,10_0,10_1_0 +20088,2,55.0,0.0,5,111,1300.0,1600.0,0.0,52,67,0.0,0.0,2216.7607063836795,2900.0,0.0,3037.6064767036623,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,120108,2,1,2,0,1,,1000.0,,43,2.0,2.0,4.0,4.0,2.5,4,4,313.185954113015,1300.0,29997.18573124769,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0966757357167378,11998.874292499077,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +20089,2,70.0,0.0,2,111,320.0,743.0,0.0,0,77,0.0,529.7309108040896,545.6641738790596,1463.0,0.0,1410.5885076192633,50,0,0,0,0,0,0,0,0,0,,1,,2,120109,2,1,2,0,1,,81.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1459.99833907688,320.0,19866.64327661148,0,5,0,1,95.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07364102629870817,19866.64327661148,5,3,5,5_1,5_2,5_0_1 +20090,1,40.0,335.0,2,111,450.0,450.0,0.0,0,22,0.0,0.0,767.3402445174275,900.0,0.0,854.326821572905,31,2,1,2,1,1,2,2,2,3,15.0,2,,2,120110,2,3,0,1,1,1243.0,200.0,337.0,32,1.0,0.0,4.0,3.0,1.6,1,1,304.252597858137,450.0,9374.68917879926,0,1,2,3,73.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.09600318291462276,5859.180736749538,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20091,2,42.0,0.0,7,111,890.0,0.0,0.0,43,43,1160.1511361402618,0.0,1517.6284836011343,1990.0,0.0,0.0,41,2,1,2,1,2,2,2,2,2,60.0,2,,5,120111,1,3,0,1,1,,240.0,485.0,43,2.0,0.0,4.0,3.0,1.8,2,2,419.211757832146,890.0,44133.060372409134,1,1,2,3,86.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.04509091332456286,24518.36687356063,7,4,7,7_0,7_4,7_0_0 +20092,2,70.0,0.0,6,111,169.0,,,0,78,0.0,0.0,,269.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,4,120112,2,1,0,0,2,,124.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,106.2774234569179,169.0,10637.137033824794,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025288759479605547,10637.137033824794,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +20093,2,70.0,0.0,1,212,1500.0,0.0,0.0,77,75,1054.6828510366015,595.9472746546007,2557.8008150580918,3050.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120113,2,1,4,0,1,,125.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,792.73291000613,1500.0,35800.00457774256,5,5,0,1,80.0,1,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08519551983231405,23866.669718495043,6,3,6,6_1,6_0,6_1_0 +20094,2,68.0,0.0,1,111,350.0,1000.0,0.0,75,74,0.0,0.0,596.8201901802214,1350.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,0,,1,,1,120114,2,1,2,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1035.53342593433,350.0,79921.28664088559,5,5,0,1,90.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01689161995184117,53280.85776059039,10,5,10,10_1,10_2,10_1_0 +20095,0,89.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,275.0,0.0,,71,0,0,0,0,0,0,0,0,0,,7,,2,120115,2,1,0,0,2,,0.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,130.0726871335308,0.0,11608.766820531688,0,5,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0236889933488564,11608.766820531688,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +20096,2,27.0,0.0,2,111,698.0,,,0,46,0.0,0.0,,848.0,207.83838380947813,,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,120116,2,3,0,0,2,,580.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,132.1518632964571,698.0,34795.15185845292,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024371211352940025,23196.76790563528,6,3,6,6_1,6_2,6_0_1 +20097,2,40.0,0.0,9,112,1389.0,0.0,0.0,11,34,0.0,0.0,2368.523554743793,1389.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,120117,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,637.592512569383,1389.0,73437.35651175148,1,1,1,2,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01891407950908107,34970.1697675007,9,5,9,9_1,9_0,9_0_0 +20098,2,50.0,0.0,9,111,776.0,1022.0,0.0,56,46,0.0,0.0,1323.2356216567196,1798.0,0.0,1940.2711369944643,50,1,2,2,1,1,2,2,2,2,1.0,1,2005.0,6,120118,2,1,1,0,1,,409.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,548.885556973939,776.0,34194.18560042165,1,1,1,2,97.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05258203897617695,16282.94552401031,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +20099,2,50.0,0.0,5,112,2100.0,0.0,0.0,46,21,0.0,66.2163638505112,3580.9211410813286,2150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,120119,2,1,2,0,1,,700.0,,43,2.0,2.0,6.0,3.0,2.0,3,2,739.686342842208,2100.0,172627.82945633517,1,1,0,1,130.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012454538800441938,86313.91472816758,10,5,10,10_1,10_0,10_0_0 +20100,2,55.0,0.0,2,111,780.0,0.0,0.0,33,48,1054.6828510366015,66.2163638505112,1330.0564238302077,1830.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,2,120120,2,1,2,0,1,,342.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,1206.756619116,780.0,104063.26125257942,1,1,0,1,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017585456941987196,52031.63062628971,10,5,10,10_1,10_4,10_0_1 +20101,2,56.0,0.0,2,111,900.0,0.0,0.0,21,48,1582.0242765549024,0.0,1534.680489034855,2488.0,121.93185183489385,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,120121,2,1,1,0,1,,220.0,,43,2.0,2.0,3.0,4.0,2.5,4,3,1019.06170577439,900.0,39679.81376437758,4,1,1,2,92.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06270190719074377,15871.92550575103,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +20102,2,52.0,0.0,6,111,532.0,0.0,0.0,86,47,0.0,0.0,907.1666890739366,532.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,30.0,2,,4,120122,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,2218.23607437873,532.0,37396.45075831461,5,1,0,1,80.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01422594896607178,24930.96717220974,7,4,7,7_0,7_3,7_0_0 +20103,2,80.0,0.0,2,300,0.0,0.0,0.0,0,78,917.5740804018434,0.0,0.0,5654.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,120123,1,1,2,0,2,,80.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,2503.73939456962,0.0,19583.555356462588,0,5,0,1,172.0,0,0,7,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.28871162039196197,19583.555356462588,5,3,5,5_1,5_0,5_0_1 +20104,0,61.0,0.0,2,112,0.0,0.0,0.0,31,33,0.0,0.0,0.0,1802.0,0.0,0.0,20,2,2,2,2,1,2,2,2,1,2.0,1,,2,120124,1,2,4,0,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,909.944082384169,0.0,106661.79480759105,1,1,5,0,160.0,10,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.016894521634955206,71107.8632050607,10,5,10,10_1,10_2,10_0_1 +20105,1,38.0,300.0,8,111,282.0,,,0,55,0.0,0.0,,402.0,166.2707070475825,,43,0,0,0,0,0,0,0,0,0,,2,2000.0,6,120125,2,2,0,0,2,,200.0,468.0,32,1.0,0.0,3.0,2.0,1.3,1,1,112.34131881497534,282.0,9394.0,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042793272301469024,7226.153846153846,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20106,1,33.0,504.0,2,111,1500.0,0.0,0.0,0,85,0.0,0.0,2557.8008150580918,1600.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120126,2,1,2,0,1,,540.0,633.0,31,0.0,0.0,5.0,6.0,2.6999999999999997,2,1,340.979403925898,1500.0,17465.29054808146,0,6,2,3,103.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09161027098834941,6468.62612891906,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +20107,2,36.0,0.0,7,111,706.0,0.0,0.0,54,62,0.0,741.6232751257254,1203.8715836206752,1266.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,5,120127,2,1,1,0,1,,267.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,67.9864121163245,706.0,32472.524634830326,1,1,1,2,156.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0389868054374213,18040.291463794627,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20108,2,80.0,0.0,2,111,525.0,0.0,0.0,75,38,0.0,1688.5172781880356,895.2302852703322,1800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,120128,2,3,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,849.795882820142,525.0,43398.06347309223,5,5,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04147650507760652,28932.04231539482,8,4,8,8_0,8_4,8_0_1 +20109,2,79.0,0.0,9,111,1100.0,0.0,0.0,77,75,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2005.0,6,120129,2,1,0,0,1,,320.0,550.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1524.61454228966,1100.0,51006.55735849361,5,5,2,3,63.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021565854607061185,34004.37157232907,9,5,9,9_0,9_2,9_0_0 +20110,2,37.0,0.0,9,111,920.0,0.0,0.0,62,52,0.0,397.2981831030672,1568.7844999022964,1220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,120130,2,1,1,0,1,,580.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,165.518352170762,920.0,42303.87657096252,1,1,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028838964626646316,17626.615237901053,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20111,1,28.0,253.0,9,111,400.0,,,0,43,0.0,0.0,,450.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,120131,2,2,0,0,2,,280.0,409.0,12,1.0,0.0,2.0,1.0,1.0,1,1,157.5256083272292,400.0,9609.33223159206,0,4,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04682947671645282,9609.33223159206,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20112,2,37.0,0.0,5,111,0.0,0.0,876.0,0,63,0.0,0.0,552.1588224033155,876.0,0.0,1048.3373612666603,31,0,0,0,0,0,0,0,0,2,10.0,2,,3,120132,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1432.14958884958,0.0,35358.3880605974,0,1,1,2,76.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02477488505694056,35358.3880605974,9,5,9,9_0,9_3,9_0_0 +20113,1,52.0,256.0,2,111,282.0,282.0,0.0,0,85,0.0,0.0,480.8665532309212,564.0,0.0,535.3781415190205,50,0,0,0,0,0,0,0,0,0,,2,,2,120133,2,1,0,1,1,390.0,0.0,243.0,11,0.0,3.0,3.0,1.0,1.0,1,1,293.373265739808,282.0,10112.432592247258,0,7,2,3,62.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05577293048483637,10112.432592247258,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +20114,2,25.0,0.0,6,111,0.0,,,0,56,0.0,0.0,,371.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,120134,2,2,0,0,2,,212.0,450.0,12,1.0,2.0,2.0,1.0,1.0,1,1,130.17734955878257,0.0,14285.631720430109,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0259701500962976,14285.631720430109,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +20115,2,37.0,0.0,9,400,1360.0,0.0,0.0,34,62,0.0,0.0,2319.072738986003,1360.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,1.0,1,2009.0,6,120135,2,1,1,0,1,,308.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1118.83036793006,1360.0,57356.73368442422,1,1,1,2,136.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023711252587755378,23898.639035176762,6,3,6,6_1,6_0,6_0_0 +20116,2,76.0,0.0,2,112,360.0,0.0,0.0,0,77,2636.7071275915036,0.0,613.872195613942,2866.0,8.313535352379127,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120136,2,1,2,0,1,,280.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1204.27920932673,360.0,10917.303872725543,0,5,0,1,90.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.26251902790395565,10917.303872725543,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +20117,2,48.0,0.0,1,112,400.0,0.0,0.0,0,85,1924.7962031417978,0.0,682.0802173488245,2350.0,173.19865317456512,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,120137,2,1,2,0,1,,250.0,,31,1.0,0.0,7.0,4.0,2.3,3,2,59.2156878403941,400.0,29007.735403829352,0,5,0,1,300.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08101287354164756,12612.058871230154,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +20118,1,44.0,180.0,2,111,320.0,0.0,0.0,21,43,0.0,0.0,545.6641738790596,339.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,120138,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,261.694829109766,320.0,27802.84195251016,4,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012192998132314802,13239.448548814362,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +20119,2,32.0,0.0,2,111,2803.3,332.0,0.0,0,46,0.0,0.0,4780.188683234899,3135.0,0.0,630.3033439160099,31,2,1,1,2,1,2,2,2,3,120.0,2,,2,120139,2,1,0,1,1,625.0,0.0,375.0,12,1.0,0.0,3.0,1.0,1.0,1,1,696.036692337309,2803.3,25378.209701771408,0,1,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.12353117248381693,25378.209701771408,7,4,7,7_0,7_4,7_0_1 +20120,2,31.0,0.0,9,300,594.0,0.0,0.0,63,46,0.0,0.0,1012.8891227630044,654.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,120140,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1098.03524968993,594.0,35922.64059740255,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018205788581346347,19957.022554112526,5,3,5,5_1,5_0,5_0_0 +20121,2,53.0,0.0,2,111,600.0,0.0,0.0,56,43,1476.555991451242,0.0,1023.1203260232367,2080.0,110.84713803172167,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,120141,2,2,1,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,1077.17254687473,600.0,48535.44328432611,1,1,0,1,150.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042855279755355795,19414.177313730444,5,3,5,5_1,5_2,5_0_1 +20122,2,66.0,0.0,7,111,1200.0,,,0,42,0.0,0.0,,1330.0,180.1265993015477,,33,0,0,0,0,0,0,0,0,0,,2,,5,120142,2,1,0,0,2,,992.0,,21,2.0,1.0,4.0,5.0,2.8,4,4,186.99158048166117,1200.0,73863.8181098369,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018006109540969907,26379.935039227465,7,4,7,7_0,7_2,7_0_0 +20123,2,76.0,0.0,2,111,611.0,1906.0,0.0,75,74,0.0,0.0,1041.8775320003294,2517.0,0.0,3618.548715373238,10,0,0,0,0,0,0,0,0,0,,1,,2,120143,2,1,2,0,1,,204.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,510.372548602044,611.0,78600.71889913967,5,5,0,1,90.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032022607874996806,52400.47926609311,10,5,10,10_1,10_2,10_0_1 +20124,1,39.0,52.0,2,211,400.0,600.0,0.0,55,63,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,71,2,2,2,1,2,2,2,2,2,19.0,2,,2,120144,2,3,0,1,1,,600.0,351.0,43,4.0,0.0,4.0,8.0,3.6999999999999993,4,3,983.927057618256,400.0,50969.88728954745,1,1,2,3,80.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.019619427335972803,13775.645213391204,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +20125,2,57.0,0.0,6,111,630.0,,,78,22,0.0,0.0,,1005.0,519.5959595236953,,71,0,0,0,0,0,0,0,0,0,,1,,4,120145,1,3,0,0,2,,198.0,,42,2.0,6.0,4.0,4.0,2.5,4,3,55.96673692064895,630.0,9066.720655737707,5,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11084492818955488,3626.6882622950825,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20126,1,33.0,491.0,9,111,540.0,990.0,0.0,67,81,0.0,0.0,920.8082934209131,1530.0,0.0,1879.519007460391,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,120146,2,1,1,0,1,,250.0,768.0,43,2.0,0.0,4.0,5.0,2.4,2,2,3655.44953536723,540.0,15415.199327564815,4,4,2,3,100.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09925268999046402,6422.999719818673,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20127,1,71.0,279.0,5,111,700.0,0.0,0.0,77,77,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,120147,2,2,0,1,1,600.0,0.0,270.0,41,0.0,3.0,4.0,2.0,1.5,2,2,331.869056242448,700.0,14239.718666034496,5,5,2,3,79.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.04915827457109006,9493.14577735633,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20128,2,42.0,0.0,1,111,492.0,1071.0,0.0,64,43,0.0,0.0,838.958667339054,1563.0,0.0,2033.297835343514,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,120148,2,1,1,0,1,,590.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,237.17461430552,492.0,36966.393344505675,4,1,1,2,107.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04228164715539687,17603.044449764606,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +20129,2,66.0,0.0,5,120,355.0,0.0,0.0,0,77,1724.4064614448434,0.0,605.3461928970817,2090.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,120149,2,1,4,0,1,,140.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1761.64459403679,355.0,22974.51637880747,0,5,0,1,106.0,0,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09097035887675493,22974.51637880747,6,3,6,6_1,6_1,6_0_0 +20130,2,23.0,0.0,2,111,300.0,1000.0,0.0,56,62,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,8,,2,120150,1,1,0,0,1,,30.0,570.0,43,2.0,0.0,3.0,3.0,1.8,2,2,585.370562904255,300.0,37943.243268668615,4,1,2,3,110.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03426169952829168,21079.579593704784,5,3,5,5_0,5_2,5_0_1 +20131,1,25.0,435.0,2,111,350.0,900.0,0.0,0,85,0.0,0.0,596.8201901802214,1250.0,0.0,1708.65364314581,71,2,2,2,1,1,2,2,2,0,,2,,2,120151,1,3,0,0,1,,0.0,458.0,31,0.0,0.0,3.0,3.0,1.6,1,1,2931.53864928819,350.0,11101.788373323037,0,6,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.11259447198648449,6938.617733326898,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20132,2,78.0,0.0,2,112,360.0,,,78,78,0.0,0.0,,444.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,2,120152,2,1,0,0,1,,210.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,101.8504404958002,360.0,21954.45063919095,5,5,0,1,62.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020223689824759923,14636.3004261273,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +20133,1,24.0,265.0,2,111,252.0,360.0,0.0,0,54,0.0,0.0,429.7105369297594,612.0,0.0,683.461457258324,31,2,2,2,1,1,2,2,2,0,,2,,2,120153,2,2,0,1,1,564.0,180.0,236.0,32,1.0,0.0,3.0,2.0,1.3,1,1,230.757087594156,252.0,10136.564444444444,0,4,2,3,57.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06037548553597165,7797.357264957264,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20134,0,82.0,0.0,2,400,426.0,,,0,86,0.0,0.0,,954.0,731.5911110093631,,71,0,0,0,0,0,0,0,0,0,,1,,2,120154,2,2,0,0,2,,420.0,,21,1.0,5.0,5.0,3.0,2.0,3,3,109.45914643544457,426.0,5328.980148883375,0,5,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1790211209925223,2664.4900744416873,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +20135,2,66.0,0.0,6,112,400.0,1200.0,0.0,86,74,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,4,120155,2,1,2,0,1,,380.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,2109.9944046771,400.0,46709.04789264652,6,5,0,1,167.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03425460531067452,31139.36526176435,8,4,8,8_1,8_1,8_0_0 +20136,2,65.0,0.0,5,111,700.0,0.0,0.0,0,75,0.0,66.2163638505112,1193.6403803604428,750.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,120156,2,1,1,0,1,,188.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1082.8035274775,700.0,15681.922703535693,0,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047825768190459375,15681.922703535693,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +20137,2,49.0,0.0,6,111,550.0,0.0,0.0,0,56,0.0,0.0,937.8602988546337,550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,4,120157,2,1,0,1,2,291.0,0.0,500.0,12,1.0,2.0,1.0,1.0,1.0,1,1,856.49414807137,550.0,15474.338385683717,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03554271506100962,15474.338385683717,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +20138,1,43.0,420.0,2,111,350.0,350.0,0.0,0,68,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,120158,2,1,0,1,1,,0.0,620.0,32,2.0,0.0,3.0,5.0,2.5999999999999996,3,3,384.13949317092,350.0,30738.743644087386,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022772563775053486,11822.593709264382,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +20139,2,46.0,0.0,2,112,395.0,1332.0,0.0,0,37,0.0,0.0,673.5542146319642,1727.0,0.0,2528.807391855799,31,0,0,0,0,0,0,0,0,2,11.0,1,,2,120159,2,1,2,0,1,,105.0,325.0,12,1.0,0.0,4.0,1.0,1.0,1,1,182.139229709613,395.0,29239.420938241463,0,1,2,3,62.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05906409718741395,29239.420938241463,8,4,8,8_1,8_0,8_0_1 +20140,2,52.0,0.0,5,111,450.0,600.0,0.0,63,55,0.0,0.0,767.3402445174275,1050.0,0.0,1139.1024287638734,31,2,2,2,2,1,2,2,2,3,1.0,2,,3,120160,1,2,0,1,1,400.0,0.0,310.0,43,3.0,2.0,3.0,3.0,2.0,3,3,965.531620505668,450.0,12833.953714120471,4,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.08181422680718761,6416.9768570602355,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +20141,2,27.0,0.0,9,111,0.0,,,0,42,0.0,0.0,,197.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,120161,2,1,0,0,1,,98.0,610.0,12,1.0,0.0,2.0,1.0,1.0,1,1,133.8095046954201,0.0,8742.205759555418,0,1,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02253435865252597,8742.205759555418,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +20142,2,63.0,0.0,2,111,170.0,60.0,0.0,72,72,0.0,0.0,289.8840923732504,230.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,0,,2,,2,120162,2,1,0,1,1,415.0,0.0,223.0,41,0.0,1.0,2.0,2.0,1.5,2,2,262.517009419619,170.0,18595.22295928243,5,5,2,3,42.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012368768070360123,12396.815306188286,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +20143,2,43.0,0.0,1,112,1097.0,0.0,0.0,67,67,1792.9608467622227,79.45963662061344,1870.604996079151,2981.0,171.8130639491686,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,120163,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,811.645092513727,1097.0,29488.527829882958,4,1,1,2,120.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10109016011912018,14042.156109468075,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +20144,1,69.0,44.0,2,111,384.0,384.0,0.0,77,77,0.0,0.0,654.7970086548714,899.0,0.0,729.025554408879,50,0,0,0,0,0,0,0,0,0,,2,,2,120164,2,1,0,1,1,476.0,0.0,350.0,41,0.0,3.0,2.0,2.0,1.5,2,2,291.181085649716,384.0,31869.28956805847,7,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02820897522927646,21246.193045372314,5,3,5,5_0,5_4,5_0_1 +20145,2,42.0,0.0,9,112,1740.0,0.0,0.0,54,38,0.0,0.0,2967.0489454673866,1775.0,48.49562288887823,0.0,10,0,0,0,0,0,0,0,0,2,50.0,1,2006.0,6,120165,1,2,1,0,1,,290.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,826.90762813199,1740.0,82697.17421846886,1,1,1,2,140.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02146385310954902,35955.29313846472,9,5,9,9_1,9_0,9_0_0 +20146,2,67.0,0.0,5,111,600.0,0.0,0.0,0,74,0.0,0.0,1023.1203260232367,875.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,3,120166,2,1,0,1,1,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1276.36582521591,600.0,37350.655911343034,0,5,0,1,100.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0234266300992661,37350.655911343034,9,5,9,9_0,9_2,9_0_0 +20147,1,24.0,300.0,8,111,0.0,,,43,63,0.0,0.0,,1216.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,120167,2,2,0,0,2,,303.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,85.77610155947735,0.0,25346.43700428591,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04797518482753149,14081.353891269948,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +20148,1,25.0,470.0,1,111,1000.0,0.0,0.0,0,48,0.0,0.0,1705.2005433720612,1156.0,216.15191916185728,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,120168,2,1,0,0,1,,900.0,550.0,32,1.0,0.0,4.0,4.0,1.9,1,1,1448.81480339024,1000.0,11146.43995063407,0,1,2,3,88.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10371024337095544,5866.547342438985,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +20149,2,66.0,0.0,2,111,800.0,750.0,0.0,75,74,0.0,0.0,1364.160434697649,1550.0,0.0,1423.8780359548418,31,0,0,0,0,0,0,0,0,0,,1,,2,120169,2,1,2,0,1,,1200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,656.857434033848,800.0,53903.38297928656,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028755152540159087,35935.5886528577,9,5,9,9_1,9_4,9_0_1 +20150,1,56.0,434.0,9,111,880.0,1122.0,0.0,0,77,0.0,0.0,1500.5764781674138,2002.0,0.0,2130.121541788443,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,120170,2,3,1,0,1,,500.0,578.0,31,2.0,5.0,4.0,4.0,2.5,4,4,782.103009247409,880.0,15203.963122658159,0,6,2,3,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13167619415075138,6081.585249063263,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +20151,1,82.0,80.0,5,111,700.0,0.0,0.0,0,72,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,120171,2,1,0,1,2,49.0,129.0,347.0,11,0.0,3.0,4.0,1.0,1.0,1,1,289.316256583864,700.0,12429.41240941334,0,5,2,3,77.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05631802831402225,12429.41240941334,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +20152,1,81.0,307.0,1,111,102.0,98.0,0.0,0,75,0.0,0.0,173.93045542395024,200.0,0.0,186.05339669809933,41,0,0,0,0,0,0,0,0,0,,2,,1,120172,2,1,0,1,2,252.0,0.0,680.0,11,0.0,0.0,2.0,1.0,1.0,1,1,891.062445203731,102.0,12838.691584681055,0,5,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.015577911400148997,12838.691584681055,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +20153,2,64.0,0.0,5,120,1300.0,0.0,0.0,0,74,0.0,0.0,2216.7607063836795,1380.0,110.84713803172167,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,120173,1,1,3,0,1,,310.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2063.805957886,1300.0,19380.536601936394,0,5,0,1,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07120545877259757,19380.536601936394,5,3,5,5_1,5_1,5_0_0 +20154,2,61.0,0.0,1,111,360.0,500.0,0.0,68,78,0.0,0.0,613.872195613942,860.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,1,,1,120174,2,2,3,0,1,,128.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,723.079421503785,360.0,39605.05709532353,1,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021714398692321207,19802.528547661765,5,3,5,5_1,5_4,5_1_0 +20155,1,34.0,106.0,6,111,0.0,0.0,0.0,85,52,0.0,0.0,0.0,1034.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,120175,2,2,5,0,1,,853.0,1000.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,2454.08686303968,0.0,40702.188638046704,7,1,2,3,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.025404039305971376,15654.687937710272,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +20156,2,41.0,0.0,6,112,1444.0,0.0,0.0,0,48,0.0,622.4338201948052,2462.3095846292563,1982.0,94.22006732696343,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,4,120176,2,2,2,0,1,,130.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1275.29448467357,1444.0,44823.36676718804,0,1,1,2,125.0,8,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04421800821643946,44823.36676718804,10,5,10,10_1,10_1,10_0_0 +20157,2,48.0,0.0,5,211,360.0,,,86,46,0.0,0.0,,360.0,0.0,,30,0,0,0,0,0,0,0,0,0,,2,,3,120177,2,1,0,0,2,,440.0,620.0,42,1.0,2.0,3.0,2.0,1.5,2,2,89.96849410436815,360.0,61508.158734787925,5,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005852882079469409,41005.43915652528,9,5,9,9_0,9_2,9_0_0 +20158,2,59.0,0.0,2,112,0.0,0.0,0.0,85,67,0.0,0.0,0.0,909.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,120178,2,1,0,1,1,46.0,0.0,262.0,42,1.0,1.0,2.0,2.0,1.5,2,2,1018.64612437131,0.0,26138.926263958478,7,1,2,3,44.0,9,3,3,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03477572073239175,17425.950842638984,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +20159,2,30.0,0.0,1,400,0.0,0.0,0.0,64,46,3164.0485531098047,0.0,0.0,4478.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,120179,2,1,2,0,1,,299.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,194.083199445682,0.0,68562.50950298486,1,1,1,2,180.0,0,0,3,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06531266186814605,38090.28305721381,9,5,9,9_1,9_0,9_1_0 +20160,2,51.0,0.0,7,300,2300.0,0.0,0.0,42,34,0.0,317.83854648245375,3921.9612497557405,2600.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,120180,2,1,1,0,1,,150.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,785.321890357355,2300.0,55241.53410563117,1,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047066035404236956,24018.058306796163,6,3,6,6_1,6_0,6_0_0 +20161,1,53.0,257.0,5,111,1500.0,0.0,0.0,85,53,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,120181,2,1,2,0,1,,0.0,497.0,42,2.0,0.0,4.0,6.0,3.0999999999999996,5,3,456.731834176164,1500.0,29935.46788884343,6,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.050107785372515624,9656.602544788204,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +20162,2,50.0,0.0,7,211,500.0,0.0,0.0,69,43,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,120182,2,3,3,0,1,,230.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,919.170500089479,500.0,40342.50935121772,4,1,0,1,80.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012393874551705538,20171.25467560886,5,3,5,5_1,5_1,5_0_0 +20163,2,52.0,0.0,7,112,410.0,0.0,0.0,56,21,1792.9608467622227,0.0,699.1322227825451,2110.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,120183,1,1,2,0,1,,630.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,441.637741083134,410.0,52443.51415382449,1,1,0,1,120.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040233764537804646,26221.757076912247,7,4,7,7_1,7_0,7_0_0 +20164,2,29.0,0.0,1,111,445.0,700.0,0.0,46,62,0.0,0.0,758.8142418005672,1145.0,0.0,1328.9528335578523,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,120184,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,211.099460275831,445.0,54756.18966145239,1,1,1,2,68.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02091087796793984,36504.126440968255,9,5,9,9_1,9_2,9_1_0 +20165,1,64.0,266.0,1,111,500.0,0.0,0.0,0,47,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,120185,1,3,0,0,1,,0.0,120.0,12,1.0,1.0,2.0,1.0,1.0,1,1,430.102431431821,500.0,3615.9690063510134,0,4,2,3,30.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.13827552147759295,3615.9690063510134,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +20166,2,64.0,0.0,9,112,480.0,,,0,78,0.0,0.0,,744.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,120186,2,1,0,0,2,,120.0,,31,0.0,2.0,3.0,2.0,1.3,1,1,239.00614560966602,480.0,33372.60079593524,0,5,0,1,100.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0222937374449587,25671.231381488647,7,4,7,7_1,7_1,7_0_0 +20167,2,80.0,0.0,2,111,350.0,0.0,0.0,90,74,0.0,380.08192850193427,596.8201901802214,637.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,120187,2,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,956.262219854342,350.0,111518.06590455826,5,5,0,1,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005712078978711582,74345.37726970551,10,5,10,10_0,10_4,10_0_1 +20168,2,54.0,0.0,7,112,700.0,0.0,0.0,0,62,2109.365702073203,0.0,1193.6403803604428,2820.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,,5,120188,2,1,1,0,1,,325.0,,22,1.0,0.0,6.0,3.0,2.0,3,3,1116.85535102235,700.0,47628.08335502502,0,1,0,1,150.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059208765109849314,23814.04167751251,6,3,6,6_1,6_0,6_0_0 +20169,0,89.0,0.0,1,111,380.0,930.0,0.0,0,86,0.0,0.0,647.9762064813832,1310.0,0.0,1765.6087645840037,71,2,2,2,1,2,2,2,2,0,,1,,1,120189,2,2,5,0,1,,450.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,398.599650208908,380.0,22070.689774217237,0,6,5,0,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.059354737590953284,22070.689774217237,6,3,6,6_1,6_3,6_1_0 +20170,2,79.0,0.0,6,111,546.0,0.0,0.0,77,77,0.0,556.2174563442941,931.0394966811454,1110.0,199.524848457099,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,120190,2,2,2,0,1,,320.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1332.13678082349,546.0,35442.46086000202,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031318367096023834,23628.307240001348,6,3,6,6_1,6_3,6_0_0 +20171,2,29.0,0.0,1,112,0.0,0.0,0.0,46,54,0.0,0.0,0.0,268.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,2,,1,120191,1,2,0,1,1,600.0,0.0,600.0,43,2.0,0.0,2.0,2.0,1.5,2,2,575.682102734958,0.0,31002.372291231215,2,1,2,3,40.0,9,0,3,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008644499765451877,20668.248194154145,5,3,5,5_0,5_0,5_1_0 +20172,2,51.0,0.0,1,111,2280.0,2800.0,0.0,55,21,0.0,0.0,3887.8572388882994,5080.0,0.0,5315.811334231409,50,0,0,0,0,0,0,0,0,0,,1,,1,120192,1,2,1,0,2,,78.0,1600.0,43,2.0,2.0,3.0,2.0,1.5,2,2,565.336171206868,2280.0,33538.64278698839,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1514670713500318,22359.095191325596,6,3,6,6_1,6_4,6_1_0 +20173,2,46.0,0.0,8,112,2000.0,0.0,0.0,46,42,0.0,0.0,3410.4010867441225,2061.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,120193,2,1,1,0,1,,456.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,702.969301671127,2000.0,65196.627936454046,1,1,0,1,135.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03161206438481479,26078.651174581617,7,4,7,7_1,7_1,7_0_0 +20174,2,27.0,0.0,2,111,254.0,0.0,0.0,0,34,0.0,0.0,433.12093801650354,254.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,120194,2,1,0,1,2,167.0,0.0,550.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1390.86763124011,254.0,24706.368447097,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010280750104730386,24706.368447097,7,4,7,7_0,7_4,7_0_1 +20175,2,32.0,0.0,8,300,0.0,0.0,0.0,47,90,0.0,0.0,0.0,1863.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2003.0,6,120195,2,1,1,0,1,,326.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,796.509294213852,0.0,20842.412207258738,1,1,1,2,140.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08938504725240859,11579.11789292152,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +20176,2,30.0,0.0,2,111,325.0,,,85,22,0.0,0.0,,417.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,1,15.0,1,,2,120196,1,3,0,0,2,,250.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,90.29357340328039,325.0,23255.322709163345,6,1,0,1,62.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017931378773586686,12919.62372731297,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +20177,2,55.0,0.0,1,111,0.0,0.0,0.0,43,37,0.0,185.40581878143135,0.0,878.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,1,,1,120197,2,1,1,0,1,,415.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,672.400398234163,0.0,385484.6568957443,6,1,1,2,110.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.002277652260067664,256989.77126382955,10,5,10,10_1,10_4,10_1_0 +20178,2,67.0,0.0,1,111,750.0,0.0,0.0,62,67,843.7462808292812,0.0,1278.9004075290459,1628.0,108.07595958092864,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120198,1,1,2,0,1,,482.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,682.784790426769,750.0,29291.842735831447,5,5,0,1,50.0,7,5,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055578613291151456,19527.895157220966,5,3,5,5_1,5_2,5_1_0 +20179,2,56.0,0.0,1,221,311.0,848.0,0.0,0,35,0.0,0.0,530.317368988711,1159.0,0.0,1609.931432652941,50,0,0,0,0,0,0,0,0,0,,1,,1,120199,2,1,1,0,1,,350.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1313.1594417356,311.0,19705.75936737224,0,1,0,1,103.0,1,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058815292442828224,19705.75936737224,5,3,5,5_1,5_1,5_1_0 +20180,1,42.0,270.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,215.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,120200,2,2,0,1,1,456.0,0.0,296.0,12,1.0,0.0,2.0,1.0,1.0,1,1,320.82648955948,0.0,6060.0,0,4,2,3,74.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03547854785478548,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20181,2,72.0,0.0,5,111,650.0,1600.0,0.0,74,72,0.0,0.0,1108.3803531918397,2250.0,0.0,3037.6064767036623,41,0,0,0,0,0,0,0,0,0,,1,,3,120201,2,1,2,0,2,,450.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1632.84209966322,650.0,32810.49947943354,5,5,0,1,265.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06857560950604721,21873.666319622364,6,3,6,6_1,6_2,6_0_0 +20182,2,44.0,0.0,1,120,2200.0,0.0,0.0,0,21,0.0,0.0,3751.441195418535,2290.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,120202,2,1,1,0,1,,170.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,1153.23597833031,2200.0,26648.12244455461,0,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08593475974769653,16655.07652784663,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +20183,2,40.0,0.0,1,120,380.0,700.0,0.0,47,34,0.0,264.8654554020448,647.9762064813832,1280.0,0.0,1328.9528335578523,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,120203,2,1,1,0,1,,450.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,750.709765637263,380.0,52132.98790632482,1,1,1,2,95.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024552592349012654,34755.325270883215,9,5,9,9_1,9_0,9_1_0 +20184,2,69.0,0.0,6,111,1500.0,,,72,75,0.0,0.0,,1820.0,443.3885521268867,,50,0,0,0,0,0,0,0,0,0,,1,,4,120204,2,2,0,0,2,,1100.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,55.84808237743788,1500.0,47979.299894758005,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03793302536702593,31986.19992983867,8,4,8,8_1,8_2,8_0_0 +20185,2,52.0,0.0,2,111,165.0,105.0,0.0,0,52,0.0,0.0,281.3580896563901,270.0,0.0,199.34292503367786,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,120205,1,1,0,1,1,717.0,52.0,203.0,12,1.0,0.0,2.0,1.0,1.0,1,1,337.952572350705,165.0,23868.87668279476,0,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01131180170680685,23868.87668279476,6,3,6,6_0,6_3,6_0_1 +20186,2,56.0,0.0,2,112,1000.0,0.0,0.0,72,77,2109.365702073203,0.0,1705.2005433720612,3070.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120206,2,1,1,0,1,,250.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1330.7713529061,1000.0,31149.231903170068,5,7,0,1,86.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0985578074458897,20766.15460211338,5,3,5,5_1,5_0,5_0_1 +20187,2,40.0,0.0,2,111,380.0,280.0,0.0,0,52,42.18731404146406,0.0,647.9762064813832,700.0,0.0,531.581133423141,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,120207,2,2,0,0,1,,0.0,286.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1351.9894310306,380.0,34577.7856994755,0,1,2,3,50.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0202442113003962,34577.7856994755,9,5,9,9_0,9_4,9_0_1 +20188,1,48.0,270.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1125.0,102.53360267934255,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,120208,1,3,0,1,1,,0.0,450.0,12,1.0,4.0,1.0,1.0,1.0,1,1,335.126965029454,0.0,5234.840359771021,0,4,2,3,25.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.21490626698866686,5234.840359771021,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +20189,2,55.0,0.0,2,111,208.0,0.0,0.0,0,34,0.0,0.0,354.6817130213887,1638.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,120209,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,186.843183718091,208.0,84563.24330073166,0,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019370117985834486,84563.24330073166,10,5,10,10_0,10_4,10_0_1 +20190,1,21.0,301.0,2,111,0.0,0.0,0.0,85,81,0.0,0.0,0.0,395.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120210,2,1,0,1,1,,207.0,273.0,42,1.0,0.0,4.0,4.0,2.1,2,2,350.669465274402,0.0,9809.36471270754,6,4,2,3,80.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.040267643376364355,4671.126053670257,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20191,2,41.0,0.0,7,111,855.0,0.0,0.0,0,37,0.0,0.0,1457.9464645831124,855.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,1,,5,120211,2,1,2,0,1,,320.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,576.079337962065,855.0,84932.51634118112,0,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010066815830175012,65332.70487783163,10,5,10,10_1,10_4,10_0_0 +20192,2,64.0,0.0,5,111,1200.0,0.0,0.0,0,75,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,120212,2,1,0,1,1,,250.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,287.212485578301,1200.0,61631.86049279589,0,5,0,1,68.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019470449056787232,41087.906995197256,9,5,9,9_0,9_2,9_0_0 +20193,2,36.0,0.0,7,111,600.0,,,55,46,0.0,0.0,,726.0,174.58424239996165,,31,0,0,0,0,0,0,0,0,2,15.0,3,,5,120213,2,1,0,0,2,,340.0,391.0,43,2.0,0.0,3.0,3.0,1.8,2,2,93.13567391873444,600.0,41530.92455679571,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017480949623627017,23072.735864886505,6,3,6,6_0,6_3,6_0_0 +20194,2,49.0,0.0,9,111,600.0,,,52,68,0.0,0.0,,680.0,110.84713803172167,,71,2,2,1,2,2,2,2,1,2,30.0,1,2004.0,6,120214,2,1,0,0,2,,400.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,81.80510841196964,600.0,28808.36101431434,1,4,0,1,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.023604258488086866,13718.267149673495,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +20195,2,66.0,0.0,2,111,1400.0,0.0,0.0,72,74,4640.604544561047,0.0,2387.2807607208856,5800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,120215,2,1,2,0,1,,600.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1272.77816523028,1400.0,30625.02866750296,5,5,0,1,300.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18938757781978946,20416.685778335308,5,3,5,5_1,5_2,5_0_1 +20196,2,66.0,0.0,6,111,608.0,,,54,74,0.0,0.0,,698.0,124.70303028568689,,20,0,0,0,0,0,0,0,0,0,,1,,4,120216,2,2,0,0,2,,402.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,178.66583018083014,608.0,76592.20473079669,1,5,0,1,144.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009113198953513655,51061.46982053112,10,5,10,10_1,10_2,10_0_0 +20197,1,60.0,270.0,7,111,500.0,0.0,0.0,0,78,0.0,0.0,852.6002716860306,620.0,166.2707070475825,0.0,71,2,2,2,2,1,2,2,2,0,,8,,5,120217,1,2,0,0,1,,280.0,329.0,11,0.0,3.0,2.0,1.0,1.0,1,1,407.054205082784,500.0,10263.610981083595,0,6,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,1,0,1,0.060407589603960476,10263.610981083595,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +20199,2,73.0,0.0,1,111,163.0,785.0,0.0,86,78,0.0,0.0,277.94768856964595,948.0,0.0,1490.3256776327344,71,0,0,0,0,0,0,0,0,0,,2,,1,120219,1,2,0,0,2,,450.0,140.0,41,0.0,4.0,4.0,2.0,1.5,2,2,2488.97706297576,163.0,18641.522756291233,5,5,2,3,70.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05085421466870588,12427.681837527489,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +20200,2,84.0,0.0,5,111,219.0,107.0,0.0,0,75,0.0,0.0,373.43891899848137,326.0,0.0,203.13993312955742,70,0,0,0,0,0,0,0,0,0,,2,,3,120220,1,2,0,1,2,258.0,0.0,573.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1511.06203620805,219.0,21405.0,0,5,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015230086428404578,21405.0,6,3,6,6_0,6_3,6_0_0 +20201,2,26.0,0.0,2,111,288.0,0.0,0.0,0,43,0.0,308.5682555433822,491.09775649115363,521.0,0.0,0.0,33,2,2,1,2,1,1,1,2,2,7.0,2,,2,120221,1,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1371.29244526351,288.0,27615.6659378966,0,1,1,2,58.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018866103072496934,27615.6659378966,7,4,7,7_0,7_2,7_0_1 +20203,2,45.0,0.0,5,111,240.0,,,0,42,0.0,0.0,,280.0,55.423569015860835,,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,120223,2,2,0,0,2,,150.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,126.78677235281864,240.0,24560.22137181617,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011400548706833364,18892.47797832013,5,3,5,5_1,5_2,5_0_0 +20204,2,55.0,0.0,9,111,1180.0,0.0,0.0,77,52,0.0,0.0,2012.1366411790323,1180.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,2,2004.0,6,120224,2,1,0,0,1,,0.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,453.045411943469,1180.0,58128.61288653877,5,1,0,1,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020299813489498567,38752.40859102585,9,5,9,9_0,9_3,9_0_0 +20205,2,53.0,0.0,7,111,880.0,,,74,42,0.0,0.0,,1012.0,182.89777775234077,,31,0,0,0,0,0,0,0,0,0,,1,,5,120225,1,1,0,0,2,,450.0,,42,2.0,1.0,8.0,3.0,2.0,3,3,148.65125505621324,880.0,121277.0,5,1,1,2,228.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00834453358839681,60638.5,10,5,10,10_1,10_2,10_0_0 +20206,2,36.0,0.0,7,111,1300.0,0.0,0.0,21,43,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,120226,1,2,2,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,916.12123193191,1300.0,106841.40394314438,1,1,1,2,90.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012167567553603044,50876.85902054494,10,5,10,10_1,10_2,10_0_0 +20207,2,36.0,0.0,8,111,682.0,,,52,42,0.0,0.0,,682.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,2,2002.0,6,120227,2,3,0,0,2,,210.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,122.5737317122783,682.0,75862.32676357454,1,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008989969449862217,36124.917506464066,9,5,9,9_0,9_2,9_0_0 +20208,2,27.0,0.0,9,111,420.0,,,0,43,0.0,0.0,,483.0,87.29212119998083,,33,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,120228,2,1,0,0,2,,352.0,465.0,22,1.0,0.0,3.0,2.0,1.5,2,2,97.93002995102718,420.0,33803.86621516617,0,1,2,3,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014288306459552284,22535.91081011078,6,3,6,6_0,6_3,6_0_0 +20209,2,84.0,0.0,1,111,348.0,700.0,0.0,0,74,0.0,0.0,593.4097890934773,1048.0,0.0,1328.9528335578523,71,2,2,2,1,2,2,2,2,0,,2,,1,120229,2,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,866.445015735814,348.0,39171.41459363942,0,5,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.026754203565836306,39171.41459363942,9,5,9,9_0,9_4,9_1_0 +20210,2,31.0,0.0,9,112,1200.0,0.0,0.0,52,62,0.0,0.0,2046.2406520464733,3203.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,120230,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1031.85870804781,1200.0,44416.48169768191,1,1,1,2,150.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07211287066366547,21150.70557032472,5,3,5,5_1,5_0,5_0_0 +20211,2,39.0,0.0,2,300,1300.0,0.0,0.0,55,21,0.0,331.081819252556,2216.7607063836795,1550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,120231,1,2,4,0,2,,300.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1310.47368349179,1300.0,16287.018911262745,1,1,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0951678148373825,10858.012607508497,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +20212,2,46.0,0.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,324.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,120232,2,2,0,1,1,389.0,0.0,258.0,42,1.0,7.0,2.0,3.0,1.8,2,2,253.256194127123,0.0,19778.71916679918,6,1,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016381242752254187,10988.177314888433,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +20213,1,41.0,120.0,2,111,195.0,600.0,0.0,0,42,0.0,0.0,332.5141059575519,795.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,120233,2,1,0,2,1,518.0,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,348.473847449392,195.0,18247.843386989363,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04356679214853585,18247.843386989363,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +20214,2,60.0,0.0,6,111,110.0,0.0,0.0,46,75,0.0,0.0,187.57205977092673,110.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,120234,2,1,2,0,1,,300.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,414.004647748294,110.0,51790.48773558725,1,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0021239421524971414,34526.991823724835,9,5,9,9_1,9_3,9_0_0 +20215,2,71.0,0.0,5,111,1108.0,0.0,0.0,0,74,0.0,0.0,1889.3622020562439,1108.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,120235,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1663.87943308939,1108.0,32276.61221699336,0,5,0,1,65.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034328261979633894,32276.61221699336,8,4,8,8_0,8_2,8_0_0 +20216,2,61.0,0.0,1,111,320.0,1100.0,0.0,77,75,0.0,198.6490915515336,545.6641738790596,1570.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,1,120236,2,2,2,0,1,,350.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,242.26712741464,320.0,21476.06085085496,6,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07310465410315219,10738.03042542748,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +20217,2,45.0,0.0,2,111,0.0,0.0,1757.0,67,62,0.0,0.0,1107.4692362587048,1757.0,0.0,2102.658383271144,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,120237,2,2,5,0,2,,310.0,347.0,43,2.0,3.0,4.0,4.0,2.1,2,2,272.08670154565,0.0,46534.877443173835,4,1,2,3,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03775662678268712,22159.465449130395,6,3,6,6_1,6_2,6_0_1 +20218,2,56.0,0.0,7,111,250.0,,,68,64,0.0,0.0,,550.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,1,10.0,1,,5,120238,1,1,0,0,2,,200.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,106.11716500284246,250.0,59981.54286437607,1,1,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009169487374534562,29990.771432188034,8,4,8,8_1,8_2,8_0_0 +20219,1,49.0,100.0,1,111,462.0,0.0,0.0,0,56,0.0,238.3789098618403,787.8026510378922,662.0,27.711784507930417,0.0,50,2,2,2,2,1,2,2,2,2,15.0,2,,1,120239,2,3,0,0,1,,360.0,450.0,32,2.0,1.0,4.0,3.0,2.0,3,3,1868.73581917117,462.0,28699.766739641167,0,1,2,3,90.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,1,1,0,1,0.023066389563564688,14349.883369820584,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +20220,2,48.0,0.0,1,112,450.0,795.0,0.0,0,38,0.0,0.0,767.3402445174275,1245.0,0.0,1509.3107181121322,10,0,0,0,0,0,0,0,0,0,,1,,1,120240,2,1,2,0,1,,250.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1961.40928173732,450.0,47512.311531048705,0,1,0,1,80.0,7,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02620373456649037,47512.311531048705,10,5,10,10_1,10_1,10_1_0 +20221,2,63.0,0.0,1,400,1000.0,0.0,0.0,75,78,0.0,529.7309108040896,1705.2005433720612,1450.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120241,2,1,1,0,2,,200.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,624.859435796339,1000.0,17059.574374898526,5,5,0,1,74.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08499625888284361,11373.049583265683,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +20222,2,83.0,0.0,1,111,418.0,2074.0,0.0,0,86,0.0,0.0,712.7738271295216,2492.0,0.0,3937.4973954271222,71,0,0,0,0,0,0,0,0,0,,1,,1,120242,2,1,2,0,1,,500.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,305.432512267539,418.0,17099.56633257342,0,6,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14573469008117024,17099.56633257342,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +20223,2,58.0,0.0,1,111,1200.0,1000.0,0.0,34,38,1265.6194212439218,0.0,2046.2406520464733,3400.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,2,45.0,1,,1,120243,2,1,2,0,2,,146.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,618.33034198265,1200.0,156632.27262268768,1,1,0,1,100.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021706893113849393,104421.51508179179,10,5,10,10_1,10_4,10_1_0 +20224,1,71.0,271.0,2,111,600.0,0.0,0.0,77,78,0.0,0.0,1023.1203260232367,900.0,415.67676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120244,2,1,0,1,1,1170.0,200.0,288.0,41,0.0,3.0,3.0,2.0,1.5,2,2,575.382616905269,600.0,15141.891214732768,5,5,2,3,70.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05943775366212626,10094.594143155178,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +20225,2,78.0,0.0,1,112,523.0,0.0,0.0,0,71,0.0,0.0,891.819884183588,523.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,120245,1,2,4,0,1,,362.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,641.556953643999,523.0,24114.462434305067,0,5,0,1,119.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021688229684771403,24114.462434305067,6,3,6,6_1,6_0,6_1_0 +20226,2,47.0,0.0,2,211,1700.0,0.0,0.0,34,46,0.0,0.0,2898.840923732504,1760.0,83.13535352379125,0.0,42,2,2,2,1,1,2,2,2,0,,1,,2,120246,2,3,1,0,1,,225.0,526.0,43,2.0,2.0,5.0,2.0,1.5,2,2,1251.34130128908,1700.0,52961.87438523203,1,4,2,3,80.0,3,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03323145225560146,35307.91625682136,9,5,9,9_1,9_1,9_0_1 +20227,2,26.0,0.0,2,111,420.0,1500.0,0.0,62,56,0.0,0.0,716.1842282162656,1920.0,0.0,2847.7560719096837,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,120247,2,1,1,0,1,,1200.0,300.0,43,2.0,0.0,6.0,4.0,2.1,2,2,1572.35026306664,420.0,32433.311057238014,1,1,2,3,130.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05919839626030168,15444.433836780006,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +20228,2,71.0,0.0,2,221,600.0,,,0,78,0.0,0.0,,850.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,2,120248,2,2,0,0,2,,340.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,93.6579950591848,600.0,12115.748540473294,0,5,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07015662277576415,12115.748540473294,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +20229,1,49.0,319.0,5,111,480.0,420.0,0.0,0,56,0.0,0.0,818.4962608185893,900.0,0.0,797.3717001347114,31,2,2,2,1,1,1,2,2,0,,2,,3,120249,1,2,0,1,1,744.0,0.0,327.0,32,1.0,1.0,4.0,6.0,3.5,6,5,375.104013919689,480.0,23032.160577482853,0,4,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.03907579564549734,6580.617307852243,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20230,2,75.0,0.0,2,111,300.0,0.0,0.0,0,77,1371.087706347582,0.0,511.56016301161833,1630.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120250,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1207.41805044658,300.0,15806.226939570493,0,5,0,1,69.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10312391478571878,15806.226939570493,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +20231,1,25.0,200.0,9,111,367.0,,,56,53,0.0,0.0,,367.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,2008.0,6,120251,2,1,0,0,2,,174.0,570.0,43,2.0,0.0,3.0,3.0,1.8,2,2,141.11562962427152,367.0,32979.04653378149,1,1,2,3,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.011128278060557942,18321.692518767493,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +20232,2,36.0,0.0,2,111,540.0,0.0,0.0,0,38,0.0,0.0,920.8082934209131,540.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,,2,120252,1,2,0,0,1,,0.0,597.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3009.12348833361,540.0,32694.32838370475,0,1,3,4,28.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0165166261763353,32694.32838370475,8,4,8,8_0,8_3,8_0_1 +20233,2,47.0,0.0,2,300,400.0,,,77,63,0.0,0.0,,466.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,2,50.0,1,,2,120253,1,3,0,0,2,,200.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,92.23926097417967,400.0,53964.906578240654,5,1,1,2,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00863524148465583,35976.60438549377,9,5,9,9_1,9_1,9_0_1 +20234,2,64.0,0.0,2,112,1960.0,0.0,0.0,75,75,0.0,0.0,3342.19306500924,4038.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,120254,2,1,2,0,1,,552.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1107.08544304775,1960.0,48026.40034222203,5,5,0,1,80.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08407875608470336,32017.600228148018,8,4,8,8_1,8_1,8_0_1 +20235,2,74.0,0.0,1,111,960.0,0.0,0.0,86,86,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,120255,1,1,1,0,2,,450.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,353.467631208095,960.0,33867.452443731236,5,5,0,1,158.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028345799011454526,22578.301629154157,6,3,6,6_1,6_3,6_1_0 +20236,2,53.0,0.0,2,112,150.0,,,0,67,0.0,0.0,,216.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,,2,120256,2,2,0,0,2,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,107.02736757437734,150.0,15120.729168340571,0,1,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0142850253843747,15120.729168340571,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +20237,2,66.0,0.0,1,120,3000.0,0.0,0.0,75,75,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,120257,2,3,3,0,1,,240.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,248.077835005532,3000.0,53702.10310366587,5,5,0,1,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05586373394369374,35801.402069110576,9,5,9,9_1,9_0,9_1_0 +20238,2,56.0,0.0,2,111,408.0,,,78,55,0.0,132.4327277010224,,770.0,363.0243770538885,,71,0,0,0,0,0,0,0,0,0,,1,,2,120258,2,2,0,0,2,,537.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,81.13518831335047,408.0,54698.65977549847,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014077127358519142,27349.329887749234,7,4,7,7_1,7_2,7_0_1 +20239,2,88.0,0.0,1,400,300.0,600.0,0.0,0,72,0.0,0.0,511.56016301161833,960.0,83.13535352379125,1139.1024287638734,70,0,0,0,0,0,0,0,0,0,,1,,1,120259,1,1,2,0,2,,150.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1520.78248004017,300.0,43287.717172824785,0,5,0,1,120.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02217719165386411,43287.717172824785,9,5,9,9_1,9_0,9_1_0 +20240,1,81.0,80.0,7,111,800.0,1100.0,0.0,0,77,0.0,0.0,1364.160434697649,1900.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,0,,2,,5,120260,2,1,0,0,1,,300.0,495.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2242.94847488576,800.0,11189.784679526265,0,5,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16979772662439105,11189.784679526265,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +20241,2,56.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,537.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120261,2,1,0,1,1,,0.0,480.0,21,0.0,0.0,3.0,2.0,1.5,2,2,199.530881857857,0.0,9797.692843818293,0,7,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05480882168487371,6531.795229212195,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +20242,2,65.0,0.0,1,120,850.0,120.0,0.0,86,72,316.40485531098045,595.9472746546007,1449.420461866252,1720.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,1,,1,120262,2,2,2,0,1,,56.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,574.508299603713,850.0,31695.79288020324,6,5,0,1,120.0,0,0,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0542658770676877,21130.52858680216,5,3,5,5_1,5_0,5_1_0 +20243,0,50.0,0.0,2,111,1524.0,0.0,0.0,90,62,0.0,0.0,2598.7256280990214,1717.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120263,2,1,0,0,1,,700.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1091.78434911958,1524.0,64726.933919943796,1,1,5,0,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0265268242448134,32363.466959971898,8,4,8,8_0,8_3,8_0_1 +20244,2,60.0,0.0,7,111,1133.0,0.0,0.0,77,75,0.0,0.0,1931.9922156405453,1133.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,120264,1,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2136.77505865811,1133.0,47896.55537118724,5,5,0,1,78.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023655145786988473,31931.036914124827,8,4,8,8_0,8_3,8_0_0 +20245,1,26.0,200.0,2,111,0.0,,,0,55,0.0,0.0,,461.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,120265,2,2,0,0,2,,343.0,400.0,22,2.0,0.0,2.0,2.0,1.5,2,2,119.03500681841622,0.0,4842.937674441351,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0951901575014958,3228.625116294234,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20246,2,73.0,0.0,2,111,333.0,,,0,86,0.0,0.0,,597.0,365.79555550468154,,70,0,0,0,0,0,0,0,0,0,,1,,2,120266,2,1,0,0,2,,266.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,122.06747146244699,333.0,4618.704319837797,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12925702938718664,4618.704319837797,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +20247,2,38.0,0.0,1,112,650.0,1490.0,0.0,85,54,0.0,529.7309108040896,1108.3803531918397,2820.0,387.96498311102584,2828.771031430286,43,0,0,0,0,0,0,0,0,0,,1,,1,120267,2,1,1,0,1,,500.0,,42,1.0,0.0,7.0,5.0,2.4,2,2,371.201464070078,650.0,30461.415288552587,6,4,0,1,130.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09257613191268094,12692.256370230245,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +20249,2,35.0,0.0,2,111,400.0,1250.0,0.0,43,38,0.0,0.0,682.0802173488245,1650.0,0.0,2373.130059924736,31,0,0,0,0,0,0,0,0,2,7.0,1,,2,120269,2,2,2,0,1,,389.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,372.421490252522,400.0,62565.34706975518,1,1,1,2,145.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02637242622757909,41710.23137983679,9,5,9,9_1,9_2,9_0_1 +20250,2,40.0,0.0,5,111,1080.0,,,90,52,0.0,0.0,,1130.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,120270,1,3,0,0,2,,540.0,665.0,43,2.0,2.0,4.0,2.0,1.5,2,2,120.61161145310791,1080.0,38308.18627945629,4,1,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02949761160073481,25538.790852970862,7,4,7,7_1,7_2,7_0_0 +20251,2,35.0,0.0,5,112,1560.0,0.0,0.0,37,37,0.0,105.94618216081791,2660.1128476604154,1690.0,69.27946126982604,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,3,120271,2,1,2,0,1,,1536.0,,43,2.0,2.0,6.0,3.0,1.8,2,2,1310.22160701482,1560.0,101344.81169037646,1,1,1,2,168.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016675742663208083,56302.67316132026,10,5,10,10_1,10_1,10_0_0 +20252,2,49.0,0.0,9,120,190.0,,,0,42,0.0,0.0,,256.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,120272,2,1,0,0,1,,150.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,248.7628537336734,190.0,19322.0,0,1,0,1,143.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013249146051133424,19322.0,5,3,5,5_1,5_1,5_0_0 +20253,2,74.0,0.0,2,111,400.0,990.0,0.0,78,75,0.0,264.8654554020448,682.0802173488245,1590.0,0.0,1879.519007460391,41,0,0,0,0,0,0,0,0,0,,1,,2,120273,2,2,1,0,1,,352.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1492.68597778715,400.0,56201.599636660765,5,5,0,1,80.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0282910096915254,37467.73309110718,9,5,9,9_1,9_2,9_0_1 +20254,2,62.0,0.0,9,120,620.0,0.0,0.0,75,75,0.0,662.163638505112,1057.224336890678,1220.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,120274,2,1,1,0,1,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2048.49279613041,620.0,50824.81500134087,5,5,0,1,147.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024004022443914724,33883.21000089391,9,5,9,9_1,9_0,9_0_0 +20255,2,47.0,0.0,1,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,591.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,120275,2,1,1,0,1,,558.0,,42,1.0,0.0,4.0,3.0,2.0,3,2,1514.32670338663,0.0,29914.225835554826,6,1,0,1,80.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019756486537504225,14957.112917777413,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +20256,2,35.0,0.0,9,111,0.0,0.0,3700.0,37,35,0.0,0.0,2332.1776745345524,3700.0,0.0,4427.908945989319,31,0,0,0,0,0,0,0,0,1,1.0,1,2011.0,6,120276,2,1,1,0,1,,668.0,,43,2.0,0.0,8.0,4.0,2.3,3,2,45.3072636787357,0.0,69096.77690314077,1,1,1,2,240.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05354808380116813,30042.07691440903,8,4,8,8_1,8_3,8_0_0 +20257,2,30.0,0.0,9,111,400.0,668.0,0.0,45,43,0.0,0.0,682.0802173488245,1068.0,0.0,1268.200704023779,33,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,120277,2,1,0,0,1,,0.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1532.56155830553,400.0,51712.18832538642,1,1,1,2,52.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020652771321141326,34474.79221692428,9,5,9,9_0,9_3,9_0_0 +20258,1,52.0,383.0,2,111,780.0,0.0,0.0,0,56,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,120278,1,3,0,1,1,453.0,0.0,363.0,22,1.0,1.0,3.0,3.0,2.0,3,3,263.605644862453,780.0,7463.642072213501,0,4,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.1045066192152854,3731.8210361067504,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +20259,1,21.0,69.0,2,111,350.0,600.0,0.0,0,55,0.0,0.0,596.8201901802214,950.0,0.0,1139.1024287638734,42,0,0,0,0,0,0,0,0,0,,2,,2,120279,1,2,0,1,2,590.0,0.0,265.0,22,2.0,0.0,3.0,2.0,1.5,2,2,330.899174706107,350.0,23925.20749279539,0,1,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03970707465279346,15950.13832853026,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +20260,1,34.0,328.0,2,111,0.0,0.0,508.0,67,85,0.0,0.0,320.20169153068986,508.0,0.0,607.9399309628578,71,2,1,2,2,1,2,2,2,0,,2,,2,120280,2,1,0,0,1,,0.0,466.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,342.534316436897,0.0,12211.906149733593,4,7,2,3,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04159874746589681,4522.928203605035,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20261,1,34.0,383.0,2,211,290.0,270.0,0.0,67,55,0.0,1316.3813133481626,494.50815757789775,1554.0,0.0,512.596092943743,50,0,0,0,0,0,0,0,0,2,5.0,8,,2,120281,2,1,0,1,1,994.0,0.0,395.0,43,2.0,0.0,5.0,5.0,2.4,2,2,459.06921327002,290.0,19698.88858597722,4,1,2,3,62.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07888769933478505,8207.870244157175,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +20262,2,66.0,0.0,5,111,0.0,0.0,0.0,72,22,0.0,0.0,0.0,1155.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,120282,2,2,3,0,2,,0.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1495.69395989937,0.0,30732.107626812147,5,1,0,1,110.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037582843781020836,20488.0717512081,5,3,5,5_1,5_3,5_0_0 +20263,2,35.0,0.0,8,111,250.0,0.0,0.0,0,47,0.0,0.0,426.3001358430153,300.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,120283,2,1,0,1,1,343.0,0.0,325.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1829.88571781582,250.0,27950.0,0,1,2,3,48.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01073345259391771,27950.0,7,4,7,7_0,7_2,7_0_0 +20264,2,42.0,0.0,9,111,1000.0,1121.0,0.0,38,38,0.0,331.081819252556,1705.2005433720612,2371.0,0.0,2128.2230377405035,12,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,120284,2,1,1,0,1,,634.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,4,2,2559.72974985806,1000.0,117503.14632254216,1,1,0,1,223.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02017818308874628,45193.51781636238,10,5,10,10_1,10_3,10_0_0 +20265,2,62.0,0.0,6,111,312.0,,,68,43,0.0,0.0,,396.0,116.38949493330776,,44,0,0,0,0,0,0,0,0,3,60.0,2,,4,120285,2,2,0,0,2,,180.0,273.0,43,2.0,2.0,3.0,2.0,1.5,2,2,126.2718319085411,312.0,27918.66502068804,1,1,2,3,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014184059291751937,18612.44334712536,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +20266,2,38.0,0.0,2,111,540.0,0.0,0.0,52,48,0.0,0.0,920.8082934209131,540.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,75.0,2,,2,120286,1,3,0,1,1,,0.0,618.0,43,2.0,0.0,4.0,5.0,2.4,2,2,714.789483777078,540.0,48488.28503014671,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011136710643906355,20203.452095894463,5,3,5,5_0,5_4,5_0_1 +20267,2,45.0,0.0,5,111,346.0,0.0,0.0,34,38,0.0,92.70290939071567,589.9993880067332,6486.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,,3,120287,2,1,1,0,1,,368.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,510.202309634054,346.0,81753.32268989304,1,1,0,1,113.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07933622495813063,31443.585649958866,8,4,8,8_1,8_4,8_0_0 +20268,2,50.0,0.0,1,112,0.0,0.0,0.0,64,46,0.0,0.0,0.0,1509.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,120288,2,3,3,0,1,,452.0,520.0,43,2.0,1.0,4.0,3.0,2.0,3,3,1117.69301266307,0.0,50236.429526584994,1,1,2,3,80.0,6,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030037962773637027,25118.214763292497,7,4,7,7_1,7_0,7_1_0 +20269,0,81.0,0.0,2,112,0.0,0.0,0.0,0,74,0.0,0.0,0.0,906.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,,2,120289,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,964.149115463772,0.0,65848.18188781601,0,5,0,1,101.0,9,3,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013758922023747455,65848.18188781601,10,5,10,10_0,10_1,10_0_1 +20270,2,32.0,0.0,2,111,590.0,750.0,0.0,0,46,0.0,0.0,1006.0683205895161,1340.0,0.0,1423.8780359548418,31,2,2,1,2,1,2,2,2,2,4.0,1,,2,120290,1,2,3,0,1,,370.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,356.381738229628,590.0,24580.165824527656,0,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.05451549877921746,15362.603640329784,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +20271,1,45.0,44.0,2,111,352.0,138.0,0.0,0,62,0.0,0.0,600.2305912669656,490.0,0.0,261.99355861569086,71,2,2,2,2,1,2,2,2,2,8.0,2,,2,120291,2,3,0,1,1,552.0,0.0,282.0,32,1.0,1.0,3.0,2.0,1.3,1,1,383.708021546976,352.0,14620.77235839935,0,1,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03351396136870324,11246.7479679995,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +20272,2,57.0,0.0,6,111,1500.0,0.0,0.0,75,75,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,120292,2,1,2,0,1,,460.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,848.760176906132,1500.0,68312.02586616203,6,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021958066401643876,45541.35057744136,10,5,10,10_1,10_3,10_0_0 +20273,2,80.0,0.0,2,111,200.0,70.0,0.0,0,77,0.0,0.0,341.04010867441224,270.0,0.0,132.89528335578524,44,0,0,0,0,0,0,0,0,0,,2,,2,120293,2,1,0,1,1,891.0,0.0,260.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1103.25699891554,200.0,18522.14268797567,0,5,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01457714717721511,18522.14268797567,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +20274,2,73.0,0.0,1,120,280.0,2000.0,0.0,78,78,0.0,0.0,477.4561521441771,2280.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,1,120294,2,1,1,0,1,,204.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,210.28097817498,280.0,30163.817255528487,5,5,0,1,180.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07558725013765016,20109.21150368566,5,3,5,5_1,5_0,5_1_0 +20275,2,32.0,0.0,7,111,468.0,,,0,68,0.0,0.0,,552.0,116.38949493330776,,43,0,0,0,0,0,0,0,0,0,,1,,5,120295,2,2,0,0,1,,420.0,,22,3.0,0.0,4.0,3.0,2.0,3,3,111.09008482302242,468.0,41578.87543032185,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013275972336602637,20789.437715160926,5,3,5,5_1,5_2,5_0_0 +20276,2,55.0,0.0,6,111,840.0,600.0,0.0,54,63,0.0,595.9472746546007,1432.3684564325313,1890.0,0.0,1139.1024287638734,70,0,0,0,0,0,0,0,0,2,35.0,1,,4,120296,2,1,3,0,1,,140.0,,43,2.0,6.0,5.0,2.0,1.5,2,2,513.605210938444,840.0,34130.710884946486,4,1,1,2,127.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05537534821267358,22753.80725663099,6,3,6,6_1,6_3,6_0_0 +20277,2,57.0,0.0,6,111,450.0,1200.0,0.0,86,68,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,71,2,2,2,1,2,2,2,2,1,5.0,2,,4,120297,2,2,0,0,1,,0.0,682.0,42,5.0,0.0,5.0,9.0,5.0,9,8,338.351482396799,450.0,90229.7537606698,5,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01828665081339519,18045.950752133962,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +20278,2,78.0,0.0,1,120,1009.0,0.0,0.0,0,86,0.0,0.0,1720.5473482624097,1139.0,180.1265993015477,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120298,2,2,5,0,1,,344.0,,21,0.0,1.0,5.0,2.0,1.5,2,2,882.838608480933,1009.0,16114.757608620657,0,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07068055428836777,10743.171739080439,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +20279,2,52.0,0.0,7,112,1800.0,0.0,0.0,54,31,0.0,927.0290939071567,3069.36097806971,2590.0,124.70303028568689,0.0,10,0,0,0,0,0,0,0,0,2,75.0,1,,5,120299,2,2,2,0,1,,190.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,349.731207207512,1800.0,27227.17472808186,1,1,0,1,150.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09512555106676925,11837.902055687766,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +20280,2,52.0,0.0,5,111,480.0,,,0,47,0.0,0.0,,630.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,120300,2,2,0,0,2,,600.0,470.0,22,2.0,0.0,3.0,3.0,1.8,2,2,99.70700542881691,480.0,27423.9073638541,0,1,2,3,76.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02297265636297938,15235.504091030056,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +20281,2,46.0,0.0,6,111,2500.0,,,34,43,0.0,0.0,,2540.0,55.423569015860835,,10,0,0,0,0,0,0,0,0,2,40.0,1,,4,120301,2,1,0,0,2,,600.0,,43,2.0,1.0,6.0,4.0,2.3,3,2,136.3574822131841,2500.0,263499.16426589835,1,1,1,2,220.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009639499263978208,114564.85402865146,10,5,10,10_1,10_3,10_0_0 +20282,2,59.0,0.0,5,120,970.0,,,77,21,0.0,0.0,,1100.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,0,,1,,3,120302,2,2,0,0,2,,220.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,150.7431009134469,970.0,5110.0,6,1,0,1,100.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21526418786692758,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20283,2,45.0,0.0,5,111,360.0,,,0,63,0.0,0.0,,448.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,3,120303,2,1,0,0,2,,700.0,,22,1.0,6.0,4.0,2.0,1.5,2,2,119.99137961223458,360.0,61938.1844030013,0,1,0,1,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007233017956824249,41292.1229353342,9,5,9,9_1,9_2,9_0_0 +20284,2,50.0,0.0,1,111,1980.0,,,77,37,0.0,0.0,,2068.0,121.93185183489385,,20,0,0,0,0,0,0,0,0,2,45.0,1,,1,120304,2,2,0,0,2,,1500.0,,42,2.0,3.0,4.0,3.0,2.0,3,3,104.58596058339431,1980.0,80748.75243719132,5,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025610302792090187,40374.37621859566,9,5,9,9_1,9_2,9_1_0 +20285,2,44.0,0.0,9,211,1600.0,,,34,67,0.0,0.0,,1600.0,0.0,,71,0,0,0,0,0,0,0,0,1,5.0,2,2004.0,6,120305,1,2,0,0,2,,240.0,464.0,43,2.0,0.0,4.0,3.0,2.0,3,2,44.50920277086137,1600.0,31149.396428639382,1,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.051365361241122724,15574.698214319691,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +20286,1,47.0,47.0,5,111,240.0,0.0,0.0,0,43,0.0,0.0,409.2481304092947,240.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,3,120306,2,1,0,1,1,540.0,0.0,294.0,12,1.0,0.0,2.0,1.0,1.0,1,1,318.785001714238,240.0,9350.90568282931,0,1,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02566596307785483,9350.90568282931,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20287,2,58.0,0.0,8,111,300.0,700.0,0.0,0,55,0.0,0.0,511.56016301161833,1017.0,23.555016831740858,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,2,2002.0,6,120307,1,2,0,1,1,,156.0,500.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1782.5837781825,300.0,32386.26153032425,0,4,2,3,55.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03140220426639091,32386.26153032425,8,4,8,8_0,8_2,8_0_0 +20288,2,90.0,0.0,2,111,270.0,,,0,77,0.0,0.0,,333.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,2,,2,120308,2,1,0,0,2,,190.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,132.7086869291808,270.0,9447.12,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035248837741025836,9447.12,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +20289,2,32.0,0.0,1,111,800.0,1000.0,0.0,21,46,0.0,568.1364018373861,1364.160434697649,2229.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,120309,1,2,1,0,1,,360.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,212.587170457624,800.0,26217.787424702907,1,1,1,2,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08501861594543988,17478.524949801937,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +20290,1,27.0,382.0,2,111,300.0,0.0,0.0,0,85,0.0,0.0,511.56016301161833,739.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,120310,1,3,0,1,2,,600.0,350.0,31,0.0,0.0,3.0,3.0,1.6,1,1,377.261197584355,300.0,5310.0,0,6,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.1391713747645951,3318.75,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20291,2,69.0,0.0,1,111,506.0,,,0,86,0.0,0.0,,636.0,180.1265993015477,,71,2,2,1,2,1,2,2,2,0,,1,,1,120311,2,1,0,0,2,,480.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,122.07247248155673,506.0,5073.842284295044,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.1253487917763225,5073.842284295044,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +20292,2,55.0,0.0,6,111,1250.0,0.0,0.0,0,46,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,120312,2,1,2,0,1,,370.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,1031.45612461004,1250.0,55680.961961833455,0,1,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022449324795372844,37120.64130788897,9,5,9,9_1,9_3,9_0_0 +20293,2,56.0,0.0,2,211,690.0,0.0,0.0,42,34,3691.3899786281054,0.0,1176.5883749267223,4216.0,36.025319860309544,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,2,120313,2,1,2,0,1,,321.0,,43,3.0,0.0,8.0,3.0,2.0,3,3,964.078026947052,690.0,105222.85141917599,1,1,0,1,200.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04006734224683507,52611.425709587995,10,5,10,10_1,10_1,10_0_1 +20295,1,22.0,413.0,2,111,570.0,,,0,85,0.0,0.0,,639.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,0,,2,,2,120315,2,2,0,0,2,,576.0,480.0,31,0.0,0.0,3.0,3.0,1.6,1,1,104.2321131252605,570.0,13313.121515533105,0,6,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04799775914720269,8320.70094720819,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20296,2,73.0,0.0,7,111,760.0,,,42,74,0.0,0.0,,865.0,145.4868686666347,,20,0,0,0,0,0,0,0,0,0,,2,,5,120316,2,3,0,0,2,,400.0,600.0,42,1.0,3.0,4.0,2.0,1.5,2,2,166.0881946568047,760.0,61346.70991409855,1,5,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014100185669471538,40897.806609399035,9,5,9,9_0,9_2,9_0_0 +20297,2,61.0,0.0,2,111,389.0,1093.0,0.0,0,74,0.0,0.0,663.3230113717318,1482.0,0.0,2075.0649243981893,41,0,0,0,0,0,0,0,0,0,,1,,2,120317,2,1,4,0,1,,157.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,325.509883798307,389.0,99609.40817495888,0,5,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014878112691894946,99609.40817495888,10,5,10,10_1,10_3,10_0_1 +20298,2,28.0,0.0,7,111,200.0,550.0,0.0,0,52,0.0,0.0,341.04010867441224,750.0,0.0,1044.177226366884,50,2,2,2,2,1,2,2,2,2,30.0,2,,5,120318,1,2,0,1,1,,0.0,332.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1255.79320144522,200.0,22541.676308405735,0,1,2,3,54.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03327170480752254,22541.676308405735,6,3,6,6_0,6_2,6_0_0 +20299,2,48.0,0.0,7,111,475.0,,,0,52,0.0,0.0,,607.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,120319,2,1,0,0,1,,300.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,127.56558934948058,475.0,31553.663464015168,0,1,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0192370689600668,31553.663464015168,8,4,8,8_1,8_2,8_0_0 +20300,2,26.0,0.0,1,111,850.0,0.0,0.0,0,46,0.0,0.0,1449.420461866252,850.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,1,120320,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,861.02246477213,850.0,51315.98736349494,0,1,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016564038687963963,51315.98736349494,10,5,10,10_0,10_4,10_1_0 +20301,2,29.0,0.0,6,111,750.0,706.0,0.0,69,43,0.0,0.0,1278.9004075290459,1456.0,0.0,1340.3438578454911,33,0,0,0,0,0,0,0,0,2,12.0,1,,4,120321,2,1,2,0,2,,462.0,500.0,43,2.0,0.0,5.0,4.0,2.1,2,2,439.660834203873,750.0,35268.01005339585,1,1,2,3,180.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041283871638791436,16794.29050161707,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20302,1,74.0,296.0,2,111,116.0,173.0,0.0,85,78,0.0,0.0,197.8032630311591,289.0,0.0,328.4412002935835,71,0,0,0,0,0,0,0,0,0,,2,,2,120322,2,1,0,1,1,920.0,0.0,303.0,41,2.0,0.0,4.0,5.0,3.0,5,4,294.57340662554,116.0,20029.37231934132,6,5,2,3,86.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014428809619806596,6676.45743978044,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20303,2,47.0,0.0,2,111,0.0,0.0,0.0,35,54,0.0,0.0,0.0,1139.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,2,120323,2,1,0,0,1,,0.0,1089.0,43,2.0,2.0,4.0,4.0,2.3,3,2,1879.08208172187,0.0,90704.82441832723,1,1,2,3,98.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01255721520111185,39436.88018188141,9,5,9,9_0,9_4,9_0_1 +20304,2,69.0,0.0,1,212,3194.0,0.0,0.0,74,74,0.0,966.7589122174635,5446.410535530364,3980.0,77.59299662220518,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,120324,2,1,2,0,1,,527.0,,41,0.0,0.0,8.0,2.0,1.5,2,2,783.833512070409,3194.0,69410.08552579187,5,5,0,1,205.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05734037020486143,46273.390350527916,10,5,10,10_1,10_0,10_1_0 +20305,2,82.0,0.0,8,120,1470.0,0.0,0.0,72,75,0.0,0.0,2506.64479875693,1560.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,120325,2,1,2,0,1,,380.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,2391.95652690526,1470.0,34474.50239868446,5,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04525083442711356,22983.001599122974,6,3,6,6_1,6_0,6_0_0 +20306,2,46.0,0.0,1,112,720.0,0.0,0.0,54,46,2003.897416969543,0.0,1227.744391227884,2620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,120326,2,1,2,0,1,,488.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,763.120433391237,720.0,55479.64936676112,1,1,0,1,120.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04722452340460699,22191.85974670445,6,3,6,6_1,6_0,6_1_0 +20307,1,49.0,173.0,9,112,678.0,835.0,0.0,85,85,0.0,0.0,1156.1259684062575,1513.0,0.0,1585.2508800297237,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,120327,2,1,1,0,1,,350.0,442.0,41,1.0,1.0,4.0,5.0,2.5999999999999996,3,2,226.089429329302,678.0,34721.9271742228,6,7,2,3,81.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.043574770271485264,13354.58737470108,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +20308,1,59.0,274.0,6,111,360.0,,,0,43,0.0,0.0,,440.0,110.84713803172167,,43,0,0,0,0,0,0,0,0,0,,1,,4,120328,2,1,0,0,2,,180.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,173.99555580993953,360.0,7037.605750068183,0,4,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06252126300137474,4691.7371667121215,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20309,2,53.0,0.0,1,111,1200.0,0.0,0.0,37,38,1582.0242765549024,0.0,2046.2406520464733,2700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,120329,2,3,2,0,1,,900.0,,43,2.0,1.0,4.0,5.0,2.8,4,3,496.3982774349,1200.0,89612.71027498628,1,1,1,2,90.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03012965450676314,32004.539383923675,8,4,8,8_1,8_4,8_1_0 +20310,2,58.0,0.0,1,300,600.0,0.0,0.0,0,62,1582.0242765549024,198.6490915515336,1023.1203260232367,2285.0,48.49562288887823,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,120330,2,1,1,0,1,,190.0,,32,1.0,1.0,7.0,2.0,1.5,2,1,1039.87126686441,600.0,22695.277354407714,0,1,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1006817393908704,15130.184902938476,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +20311,2,80.0,0.0,1,111,200.0,1500.0,0.0,0,86,0.0,0.0,341.04010867441224,1700.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,,1,120331,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1619.56573547382,200.0,10975.228296751635,0,6,0,1,100.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15489427226795394,10975.228296751635,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +20312,2,55.0,0.0,2,112,500.0,1000.0,0.0,42,65,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,3,50.0,1,,2,120332,2,2,1,0,2,,580.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,881.152221164227,500.0,84345.46415086342,1,1,0,1,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017784003148255186,42172.73207543171,9,5,9,9_1,9_1,9_0_1 +20313,2,44.0,0.0,9,111,420.0,,,0,55,0.0,0.0,,558.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,3.0,1,2008.0,6,120333,1,2,0,0,2,,160.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,99.44882926642907,420.0,9388.388953288519,0,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0594351174388175,6258.925968859013,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +20314,2,29.0,0.0,1,111,800.0,500.0,0.0,0,67,0.0,1483.2465502514508,1364.160434697649,2420.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,1,,1,120334,2,2,3,0,1,,0.0,739.0,22,2.0,3.0,5.0,4.0,2.5,4,4,1861.55422737957,800.0,57955.70664486971,0,1,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04175602611195529,23182.282657947882,6,3,6,6_1,6_2,6_1_0 +20315,0,25.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,696.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,120335,1,2,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,279.378936659369,0.0,27110.21833595999,0,1,5,0,70.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0256729765645893,27110.21833595999,7,4,7,7_0,7_2,7_0_1 +20316,0,68.0,0.0,1,400,380.0,0.0,0.0,0,71,0.0,370.8116375628627,647.9762064813832,660.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120336,2,2,4,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1347.43083640513,380.0,9632.926851251308,0,5,5,0,54.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06851500174261851,9632.926851251308,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +20317,2,40.0,0.0,2,111,170.0,0.0,0.0,0,38,0.0,0.0,289.8840923732504,658.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,90.0,2,,2,120337,2,1,0,1,2,329.0,0.0,433.0,12,1.0,0.0,2.0,1.0,1.0,1,1,296.295638372032,170.0,53423.35919783562,0,1,2,3,52.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01231670957948032,53423.35919783562,10,5,10,10_0,10_3,10_0_1 +20318,2,44.0,0.0,2,111,470.0,0.0,0.0,0,52,0.0,0.0,801.4442553848687,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120338,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,2659.61550856894,470.0,24575.895419982175,0,1,1,2,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01912443033989526,16383.930279988117,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +20319,2,26.0,0.0,7,111,0.0,0.0,0.0,53,56,0.0,0.0,0.0,527.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,120339,2,1,2,0,1,,313.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1691.95453707011,0.0,39450.809268527846,1,1,1,2,100.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013358407844384015,26300.539512351897,7,4,7,7_1,7_2,7_0_0 +20320,2,76.0,0.0,1,111,76.0,338.0,0.0,0,77,0.0,0.0,129.59524129627664,414.0,0.0,641.6943682036487,71,0,0,0,0,0,0,0,0,0,,2,,1,120340,2,1,0,0,1,,0.0,220.0,11,0.0,3.0,1.0,1.0,1.0,1,1,1081.47627519887,76.0,18711.011844950743,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022126008119209218,18711.011844950743,5,3,5,5_0,5_4,5_1_0 +20321,2,59.0,0.0,1,120,0.0,0.0,1500.0,34,34,0.0,26.486545540204478,945.4774356221156,1520.0,0.0,1795.098221347021,10,0,0,0,0,0,0,0,0,2,17.0,1,,1,120341,2,2,1,0,1,,360.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,273.476437770966,0.0,86600.08015409573,1,1,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01755194680299741,57733.386769397155,10,5,10,10_1,10_0,10_1_0 +20322,1,20.0,165.0,7,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,772.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,10.0,2,,5,120342,2,1,0,0,1,,269.0,425.0,22,1.0,0.0,3.0,2.0,1.5,2,2,1475.54358811426,0.0,7034.606276635364,0,1,2,3,50.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.1097431710661774,4689.737517756909,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20325,2,50.0,0.0,7,112,1200.0,0.0,0.0,85,65,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,20.0,1,,5,120345,2,1,1,0,1,,700.0,,42,1.0,0.0,7.0,3.0,2.0,3,2,594.550565139264,1200.0,34583.73122991837,7,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03469839596029131,17291.865614959184,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +20326,2,47.0,0.0,2,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1609.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,120346,2,2,1,0,1,,452.0,,32,1.0,0.0,5.0,3.0,2.0,3,1,1386.55557495618,0.0,49149.35631182176,0,1,1,2,150.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03273694959079233,24574.67815591088,7,4,7,7_1,7_2,7_0_1 +20327,2,54.0,0.0,5,400,800.0,0.0,0.0,52,64,0.0,728.3800023556231,1364.160434697649,1500.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,120347,2,2,2,0,1,,429.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,817.519669581343,800.0,39385.17213552464,1,1,0,1,50.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038085399115141354,26256.781423683093,7,4,7,7_1,7_0,7_0_0 +20328,2,52.0,0.0,8,112,0.0,0.0,2600.0,52,54,0.0,0.0,1638.8275550783337,2600.0,0.0,3111.50358366817,70,2,2,1,1,1,2,2,1,2,20.0,1,2002.0,6,120348,1,1,2,0,1,,400.0,,43,4.0,0.0,6.0,5.0,3.0,5,5,502.086443421319,0.0,59598.38117192284,1,1,1,2,126.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04362534600562063,19866.127057307614,5,3,5,5_1,5_1,5_0_0 +20329,2,26.0,0.0,1,111,0.0,0.0,0.0,54,37,0.0,0.0,0.0,1556.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,120349,2,2,0,0,1,,0.0,538.0,43,2.0,0.0,3.0,3.0,1.8,2,2,549.209615667569,0.0,15450.023303887718,1,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10071182220213615,8583.346279937621,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +20330,2,32.0,0.0,2,111,1300.0,0.0,0.0,56,47,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,120350,2,2,0,0,1,,250.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1974.06420901612,1300.0,52306.090181557614,1,1,1,2,95.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02485370241758887,29058.938989754228,8,4,8,8_0,8_2,8_0_1 +20331,0,72.0,0.0,6,112,130.0,,,86,78,0.0,0.0,,630.0,692.7946126982605,,71,0,0,0,0,0,0,0,0,0,,1,,4,120351,1,1,0,0,1,,140.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,106.73278515550496,130.0,11770.968986299387,5,5,0,1,81.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05352150708520916,7847.312657532925,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +20332,2,44.0,0.0,2,111,0.0,0.0,2250.0,0,68,0.0,0.0,1418.2161534331735,2250.0,0.0,2692.6473320205323,50,2,1,1,2,2,2,2,1,2,10.0,2,,2,120352,2,3,0,0,1,,120.0,350.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1767.5585278961,0.0,16906.152452488135,0,1,2,3,35.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.1330876440587675,16906.152452488135,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +20333,2,78.0,0.0,1,111,280.0,1600.0,0.0,0,86,0.0,0.0,477.4561521441771,1880.0,0.0,3037.6064767036623,70,1,2,2,1,2,2,2,2,0,,1,,1,120353,2,3,3,0,2,,120.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,276.027563838557,280.0,15593.97779265463,0,6,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.12055936111987751,10395.985195103087,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +20334,2,74.0,0.0,1,111,615.0,3121.0,0.0,0,77,0.0,0.0,1048.6983341738176,3736.0,0.0,5925.231133620082,44,2,2,1,2,1,2,2,2,0,,1,,1,120354,2,1,2,0,1,,76.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,430.703161654251,615.0,52221.01395279863,0,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07154208080633755,34814.00930186576,9,5,9,9_1,9_4,9_1_0 +20335,2,77.0,0.0,2,111,220.0,1500.0,0.0,86,78,0.0,0.0,375.14411954185346,1720.0,0.0,2847.7560719096837,71,2,2,2,2,1,2,2,2,0,,2,,2,120355,2,3,0,1,1,515.0,0.0,362.0,41,0.0,4.0,4.0,2.0,1.5,2,2,383.040592433888,220.0,26007.20957290395,6,5,2,3,74.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06613550735531469,17338.1397152693,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +20336,2,42.0,0.0,6,111,568.0,0.0,0.0,42,46,0.0,0.0,968.5539086353308,620.0,72.05063972061909,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,4,120356,2,1,1,0,1,,407.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1107.83055454069,568.0,38157.28826867242,1,1,0,1,95.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01624853411056014,18170.13727079639,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20337,2,59.0,0.0,1,300,1560.0,0.0,0.0,72,22,3164.0485531098047,0.0,2660.1128476604154,4590.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,120357,2,1,4,0,2,,750.0,,42,2.0,1.0,7.0,3.0,2.0,3,3,1165.40341239275,1560.0,85067.89896141541,5,1,0,1,240.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.053956898619089026,42533.949480707706,9,5,9,9_1,9_0,9_1_0 +20338,2,62.0,0.0,1,111,604.0,0.0,0.0,65,74,0.0,0.0,1029.941128196725,816.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,120358,2,2,0,1,1,689.0,0.0,515.0,42,2.0,1.0,3.0,3.0,2.0,3,3,692.179242492341,604.0,66625.72671029516,1,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012247521194750583,33312.86335514758,8,4,8,8_0,8_4,8_1_0 +20340,2,32.0,0.0,7,300,800.0,0.0,0.0,0,64,0.0,331.081819252556,1364.160434697649,1080.0,41.567676761895626,0.0,43,0,0,0,0,0,0,0,0,2,60.0,1,,5,120360,1,2,2,0,1,,130.0,303.0,12,1.0,0.0,2.0,1.0,1.0,1,1,995.367010739644,800.0,21087.42458454343,0,1,2,3,58.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05121535802867144,21087.42458454343,5,3,5,5_1,5_0,5_0_0 +20341,0,34.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,509.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,120361,2,1,0,0,2,,225.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,101.94636763796113,0.0,44027.78819758279,0,1,5,0,111.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011560880544708923,44027.78819758279,10,5,10,10_1,10_2,10_0_0 +20342,2,27.0,0.0,6,111,720.0,0.0,0.0,43,37,0.0,0.0,1227.744391227884,720.0,0.0,0.0,12,2,2,2,2,2,1,2,2,2,25.0,2,,4,120362,1,2,0,0,1,,0.0,648.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1578.55832770979,720.0,53547.99749146282,1,1,2,3,71.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,1,1,0,0,0.013445880961557712,35698.66499430854,9,5,9,9_0,9_3,9_0_0 +20343,2,87.0,0.0,1,400,400.0,0.0,0.0,90,71,0.0,1059.4618216081792,682.0802173488245,1290.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120363,2,1,1,0,1,,120.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1469.05028166222,400.0,23803.051712125358,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05419473165043243,15868.701141416905,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +20344,2,55.0,0.0,9,111,0.0,,,85,42,0.0,0.0,,380.0,0.0,,71,0,0,0,0,0,0,0,0,3,20.0,1,2006.0,6,120364,2,1,0,0,1,,453.0,980.0,42,2.0,2.0,5.0,3.0,2.0,3,3,100.68959754565492,0.0,27381.093077720514,6,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013878189556617772,13690.546538860257,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +20345,2,47.0,0.0,2,111,0.0,0.0,0.0,81,52,0.0,0.0,0.0,1700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,120365,2,2,2,0,1,,180.0,,43,2.0,1.0,5.0,4.0,2.5,4,3,246.891185511934,0.0,44345.633977404825,4,1,1,2,1.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0383352282406469,17738.25359096193,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +20346,1,42.0,232.0,1,111,800.0,0.0,0.0,0,46,843.7462808292812,0.0,1364.160434697649,1652.0,72.05063972061909,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,1,120366,2,1,1,0,1,,500.0,540.0,32,1.0,0.0,4.0,3.0,1.8,2,2,2096.32653559036,800.0,29580.69814719336,0,1,2,3,120.0,9,7,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.055847228208734584,16433.7211928852,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +20347,2,30.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,2315.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,2,120367,2,1,2,0,1,,168.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,901.31781246724,0.0,26359.709530626773,0,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08782342602486769,26359.709530626773,7,4,7,7_1,7_4,7_0_1 +20348,2,81.0,0.0,2,111,352.0,,,0,77,0.0,0.0,,444.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,,2,120368,2,2,0,0,2,,294.0,140.0,11,0.0,5.0,3.0,1.0,1.0,1,1,98.25982202264659,352.0,9422.490445859872,0,5,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04712130010119439,9422.490445859872,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +20349,1,35.0,370.0,2,111,1200.0,,,0,56,0.0,0.0,,1464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,8,,2,120369,2,3,0,0,2,,800.0,400.0,32,1.0,0.0,4.0,6.0,2.6999999999999997,2,1,77.27984322840818,1200.0,27164.62267916991,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05389362544404525,10060.971362655522,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +20350,1,62.0,47.0,2,111,109.0,770.0,0.0,0,78,0.0,0.0,185.86685922755467,879.0,0.0,1461.8481169136376,71,2,2,2,2,1,2,2,2,0,,2,,2,120370,2,1,0,0,1,,181.0,240.0,11,0.0,0.0,2.0,1.0,1.0,1,1,381.617560909912,109.0,16503.1769365923,0,5,2,3,35.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.05326247203052181,16503.1769365923,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +20351,1,91.0,40.0,9,211,840.0,0.0,0.0,0,75,0.0,0.0,1432.3684564325313,952.0,155.18599324441035,0.0,71,2,2,2,1,1,2,2,2,0,,1,2007.0,6,120371,2,2,4,0,1,,400.0,676.0,11,0.0,3.0,4.0,1.0,1.0,1,1,782.755448593061,840.0,16285.881300576679,0,5,2,3,80.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.0584555408718526,16285.881300576679,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +20352,2,47.0,0.0,2,111,200.0,100.0,0.0,85,62,0.0,0.0,341.04010867441224,300.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,2,,2,120372,2,2,0,1,1,732.0,0.0,400.0,42,1.0,0.0,3.0,3.0,1.8,2,2,773.067912171653,200.0,23098.62873629562,6,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01298778396869076,12832.571520164234,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +20353,2,55.0,0.0,6,111,1020.0,0.0,0.0,52,90,0.0,172.1625460113291,1739.3045542395023,1230.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,120373,2,1,1,0,1,,320.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1028.99558712986,1020.0,32934.856647427216,1,1,0,1,90.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03734645069712439,21956.57109828481,6,3,6,6_1,6_3,6_0_0 +20354,2,39.0,0.0,2,111,0.0,0.0,0.0,46,53,0.0,0.0,0.0,1649.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,120374,2,2,2,0,1,,597.0,880.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1277.60112193469,0.0,56951.46797520134,1,1,2,3,120.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028954477533714006,27119.74665485778,7,4,7,7_1,7_2,7_0_1 +20355,2,46.0,0.0,2,111,300.0,400.0,0.0,0,63,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,120375,2,1,0,1,1,453.0,200.0,200.0,12,1.0,0.0,1.0,1.0,1.0,1,1,433.471680079974,300.0,21208.639326280536,0,1,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03300541770883905,21208.639326280536,5,3,5,5_0,5_2,5_0_1 +20356,2,60.0,0.0,5,300,389.0,0.0,0.0,74,52,1432.259311707705,0.0,663.3230113717318,1782.0,48.49562288887823,0.0,42,0,0,0,0,0,0,0,0,1,7.0,1,,3,120376,2,2,1,0,1,,282.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1357.25741136049,389.0,38607.410862271754,7,1,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04615694137991057,25738.27390818117,7,4,7,7_1,7_0,7_0_0 +20357,2,72.0,0.0,1,111,1100.0,0.0,0.0,74,75,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,120377,2,2,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,968.439939091559,1100.0,56140.339215061394,5,5,0,1,41.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019593754070244215,37426.89281004093,9,5,9,9_0,9_4,9_1_0 +20358,2,70.0,0.0,5,111,1490.0,0.0,0.0,77,75,0.0,0.0,2540.748809624371,1610.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,120378,2,1,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1085.28448893662,1490.0,31092.880769630792,5,5,0,1,110.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05178034199946272,20728.58717975386,5,3,5,5_1,5_3,5_0_0 +20359,2,33.0,0.0,1,211,0.0,0.0,2205.0,52,46,0.0,0.0,1389.85183036451,2207.0,2.771178450793042,2638.794385380121,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,120379,2,1,2,0,1,,583.0,659.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1083.66195051184,0.0,37306.0,1,1,2,3,60.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05915938454940224,24870.666666666668,7,4,7,7_1,7_2,7_1_0 +20360,1,46.0,19.0,2,111,300.0,550.0,0.0,81,47,0.0,0.0,511.56016301161833,850.0,0.0,1044.177226366884,43,2,2,2,1,1,1,2,2,3,120.0,2,,2,120380,1,2,0,1,1,683.0,0.0,299.0,43,2.0,1.0,3.0,2.0,1.5,2,2,268.257784012262,300.0,16702.50091538651,4,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.050890582452653634,11135.000610257674,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +20361,1,21.0,377.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,439.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,120381,2,2,0,0,1,,341.0,550.0,31,0.0,0.0,3.0,2.0,1.3,1,1,2513.26648491792,0.0,6422.7254128420445,0,6,2,3,65.0,8,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0683510459784304,4940.558009878496,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +20362,2,69.0,0.0,1,111,384.0,809.0,0.0,74,74,0.0,0.0,654.7970086548714,1193.0,0.0,1535.8897747832893,10,0,0,0,0,0,0,0,0,0,,2,,1,120382,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,449.210529337761,384.0,87039.86838654934,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013706362637197642,58026.57892436622,10,5,10,10_0,10_4,10_1_0 +20363,2,82.0,0.0,1,300,0.0,0.0,0.0,71,71,0.0,0.0,0.0,1580.0,263.261952825339,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120383,1,1,2,0,2,,145.0,,41,1.0,0.0,5.0,4.0,2.5,4,4,1161.28488464759,0.0,39984.27160146017,5,5,0,1,130.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03951553790321644,15993.708640584067,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +20364,2,45.0,0.0,7,211,1200.0,,,0,52,0.0,0.0,,1200.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,120384,2,3,0,0,2,,2400.0,,32,1.0,0.0,3.0,3.0,2.0,3,2,32.43328938421035,1200.0,32878.494009982445,0,1,1,2,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036498022069856986,16439.247004991223,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +20365,1,67.0,600.0,1,222,571.0,0.0,0.0,0,78,0.0,0.0,973.6695102654469,641.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,120385,2,1,0,0,1,,0.0,54.0,21,0.0,0.0,3.0,2.0,1.5,2,2,1881.83465481469,571.0,4962.766285386849,0,5,2,3,30.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.1291618349805151,3308.510856924566,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +20366,2,64.0,0.0,7,111,312.0,672.0,0.0,0,77,0.0,0.0,532.0225695320831,984.0,0.0,1275.7947202155383,50,0,0,0,0,0,0,0,0,0,,2,,5,120386,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,768.393009598126,312.0,27032.53019795494,0,5,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.036400588209624614,27032.53019795494,7,4,7,7_0,7_4,7_0_0 +20367,2,43.0,0.0,5,111,900.0,900.0,0.0,56,53,0.0,0.0,1534.680489034855,1800.0,0.0,1708.65364314581,50,1,2,2,2,1,2,2,2,2,15.0,1,,3,120387,2,1,2,0,1,,680.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,195.903617254172,900.0,51342.711089902594,1,1,1,2,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.035058530447450414,20537.08443596104,5,3,5,5_1,5_2,5_0_0 +20368,2,83.0,0.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,411.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,120388,2,1,0,1,1,750.0,878.0,456.0,11,0.0,0.0,3.0,1.0,1.0,1,1,998.218319886483,0.0,24570.0,0,5,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016727716727716727,24570.0,7,4,7,7_0,7_4,7_0_0 +20369,2,71.0,0.0,2,111,1200.0,0.0,0.0,86,86,0.0,0.0,2046.2406520464733,1250.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120389,2,2,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,921.704196934928,1200.0,23868.72899312546,5,5,0,1,84.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05236977638650211,15912.485995416973,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +20370,2,43.0,0.0,8,221,610.0,0.0,0.0,43,34,1413.275020389046,662.163638505112,1040.1723314569574,2510.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,120390,2,1,1,0,1,,829.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,1503.28241092243,610.0,72853.97576017925,1,1,1,2,163.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03445247803994142,30355.823233408024,8,4,8,8_1,8_1,8_0_0 +20371,2,37.0,0.0,2,111,1500.0,1500.0,0.0,85,38,0.0,0.0,2557.8008150580918,3000.0,0.0,2847.7560719096837,12,2,2,1,2,1,2,2,2,3,75.0,1,,2,120391,2,3,3,0,1,,500.0,1000.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,916.363178183461,1500.0,88767.69107406595,6,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03379608012443245,29589.23035802199,8,4,8,8_1,8_4,8_0_1 +20372,2,50.0,0.0,9,111,1400.0,2400.0,0.0,54,37,0.0,0.0,2387.2807607208856,3800.0,0.0,4556.4097150554935,10,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,120392,2,1,1,0,1,,1300.0,1300.0,43,2.0,0.0,6.0,4.0,2.3,3,3,552.076340616822,1400.0,120899.05582913807,1,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031431180119143295,52564.80688223395,10,5,10,10_1,10_4,10_0_0 +20373,2,89.0,0.0,5,111,444.0,1800.0,0.0,77,78,0.0,158.91927324122688,757.1090412571951,2364.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,0,,1,,3,120393,2,1,2,0,1,,348.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,983.455930799928,444.0,29130.831009133755,5,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08115113500396831,19420.55400608917,5,3,5,5_1,5_3,5_0_0 +20374,2,83.0,0.0,2,211,430.0,1270.0,0.0,0,86,0.0,0.0,733.2362336499863,1700.0,0.0,2411.100140883532,71,0,0,0,0,0,0,0,0,0,,1,,2,120394,2,1,2,0,2,,190.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1160.3374548548,430.0,13786.343551724962,0,5,0,1,93.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12331043351863187,13786.343551724962,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +20375,2,66.0,0.0,9,112,1800.0,0.0,0.0,86,74,0.0,186.73014605844156,3069.36097806971,1941.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2004.0,6,120395,1,1,1,0,1,,150.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,266.110602611705,1800.0,38599.071646476565,6,5,0,1,180.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050286183506622756,25732.714430984375,7,4,7,7_1,7_0,7_0_0 +20376,1,28.0,50.0,7,111,349.0,0.0,0.0,0,34,0.0,0.0,595.1149896368494,349.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,5,120396,2,1,0,0,1,,0.0,378.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2500.97018118088,349.0,21816.622327713732,0,1,2,3,28.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.015996976743584367,21816.622327713732,6,3,6,6_0,6_3,6_0_0 +20377,2,71.0,0.0,2,111,364.0,2189.0,0.0,78,78,0.0,0.0,620.6929977874303,2553.0,0.0,4155.825360940198,71,0,0,0,0,0,0,0,0,0,,1,,2,120397,2,1,2,0,1,,276.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,997.169953800805,364.0,64230.8603214648,5,5,0,1,180.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0397472490205278,42820.5735476432,9,5,9,9_1,9_2,9_0_1 +20378,2,87.0,0.0,1,120,800.0,,,78,71,0.0,0.0,,932.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,1,120398,2,1,0,0,2,,500.0,,41,0.0,11.0,4.0,2.0,1.5,2,2,117.85702271786442,800.0,22343.07479690032,5,5,0,1,89.0,0,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041713148636520585,14895.383197933546,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +20379,2,90.0,0.0,2,112,720.0,,,0,77,0.0,0.0,,927.0,286.8169696570798,,71,0,0,0,0,0,0,0,0,0,,1,,2,120399,2,2,0,0,2,,600.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,91.20726406153356,720.0,10404.463414634156,0,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0890963774927739,10404.463414634156,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +20380,0,61.0,0.0,6,111,300.0,,,0,52,0.0,0.0,,360.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,2,45.0,2,,4,120400,2,3,0,0,2,,100.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,106.49187888179793,300.0,36381.260377123595,0,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009895204186668768,36381.260377123595,9,5,9,9_0,9_3,9_0_0 +20381,2,56.0,0.0,2,111,250.0,512.0,0.0,0,47,0.0,0.0,426.3001358430153,797.0,48.49562288887823,972.034072545172,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,120401,2,1,0,1,1,512.0,0.0,298.0,12,1.0,0.0,3.0,1.0,1.0,1,1,900.086359968544,250.0,29284.226454197356,0,1,2,3,69.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027216016828942556,29284.226454197356,8,4,8,8_0,8_3,8_0_1 +20382,2,76.0,0.0,5,111,419.0,0.0,0.0,0,77,0.0,0.0,714.4790276728936,469.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,120402,2,2,0,1,1,111.0,275.0,237.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1651.27193336772,419.0,17441.291698875815,0,5,2,3,61.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02689021020330906,17441.291698875815,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +20383,1,35.0,360.0,7,211,1200.0,,,0,52,0.0,0.0,,1350.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,120403,2,2,0,0,2,,1000.0,489.0,32,1.0,2.0,4.0,3.0,1.6,1,1,61.635805095716464,1200.0,36884.35702546351,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03660088202345545,23052.723140914695,6,3,6,6_1,6_2,6_0_0 +20384,2,62.0,0.0,7,120,424.0,0.0,0.0,72,78,0.0,99.3245457757668,723.005030389754,1671.0,1623.9105721647227,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,120404,2,1,1,0,1,,323.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1226.81607714677,424.0,39291.53009774683,5,5,0,1,224.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042528249621305116,26194.353398497886,7,4,7,7_1,7_1,7_0_0 +20385,2,39.0,0.0,9,111,1750.0,0.0,0.0,47,43,0.0,0.0,2984.100950901107,1750.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,120405,2,1,1,0,1,,310.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,802.211319948937,1750.0,49498.080228599814,1,1,1,2,170.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035354906532089225,23570.51439457134,6,3,6,6_1,6_2,6_0_0 +20386,2,39.0,0.0,9,111,150.0,,,0,42,0.0,0.0,,196.0,63.73710436823996,,20,0,0,0,0,0,0,0,0,2,1.0,1,2013.0,6,120406,2,2,0,0,1,,150.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,225.93338204937805,150.0,41961.77975487969,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004670917228605095,41961.77975487969,9,5,9,9_1,9_2,9_0_0 +20387,1,46.0,308.0,7,211,480.0,,,0,55,0.0,0.0,,480.0,0.0,,50,0,0,0,0,0,0,0,0,0,,8,,5,120407,2,2,0,0,2,,300.0,314.0,32,1.0,0.0,2.0,2.0,1.3,1,1,95.33504594240397,480.0,9262.933760683762,0,4,2,3,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05181943565626533,7125.333662064432,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20388,2,73.0,0.0,2,111,600.0,0.0,0.0,90,75,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120408,2,1,0,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,600.086124891729,600.0,29686.83846024473,5,5,0,1,83.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020210976685964485,19791.225640163153,5,3,5,5_0,5_3,5_0_1 +20389,2,27.0,0.0,9,111,0.0,,,54,47,0.0,0.0,,613.0,0.0,,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,120409,2,1,0,0,1,,196.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,256.1906063716809,0.0,42707.87060768522,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014353326243563442,28471.913738456813,8,4,8,8_1,8_2,8_0_0 +20390,2,42.0,0.0,9,111,590.0,990.0,0.0,34,90,0.0,0.0,1006.0683205895161,1580.0,0.0,1879.519007460391,10,0,0,0,0,0,0,0,0,3,2.0,1,2012.0,6,120410,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1393.67713619511,590.0,61582.2827764714,1,1,1,2,122.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02565672996785476,29324.896560224475,8,4,8,8_1,8_3,8_0_0 +20391,1,38.0,280.0,2,111,450.0,1600.0,0.0,85,63,0.0,0.0,767.3402445174275,2050.0,0.0,3037.6064767036623,50,1,2,2,1,1,2,2,2,0,,2,,2,120411,1,1,0,0,1,,0.0,350.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,186.489759214449,450.0,19005.72832939728,6,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.10786221735207822,7039.158640517511,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +20392,2,48.0,0.0,1,112,2620.0,0.0,0.0,0,67,0.0,0.0,4467.6254236348,2770.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120412,2,2,4,0,1,,350.0,,22,1.0,1.0,5.0,3.0,2.0,3,3,1038.94007205251,2620.0,40622.71366342755,0,1,0,1,120.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06818845296624826,20311.356831713776,5,3,5,5_1,5_0,5_1_0 +20393,2,36.0,0.0,9,111,840.0,1308.0,0.0,56,48,0.0,0.0,1432.3684564325313,2148.0,0.0,2483.243294705244,42,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,120413,1,2,1,0,1,,636.0,704.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1486.22221800728,840.0,36698.14755582305,1,1,2,3,83.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058531564753577535,17475.30835991574,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20394,2,48.0,0.0,7,111,1100.0,0.0,0.0,63,37,0.0,198.6490915515336,1875.7205977092674,1400.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,120414,2,1,2,0,1,,324.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1226.38885026214,1100.0,76862.7395407649,1,1,0,1,100.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018214287031201853,51241.826360509935,10,5,10,10_1,10_2,10_0_0 +20395,2,65.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1933.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,120415,2,2,2,0,2,,183.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,297.081651567584,0.0,39425.76479844604,0,5,0,1,87.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04902885232238256,26283.843198964027,7,4,7,7_1,7_3,7_1_0 +20396,1,41.0,491.0,2,111,960.0,1400.0,0.0,0,56,0.0,0.0,1636.9925216371787,2360.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,2,120416,1,3,2,0,1,,730.0,515.0,32,1.0,0.0,4.0,4.0,2.3,3,2,316.083439141346,960.0,12922.153280077173,0,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1826321007690373,5618.327513077033,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +20397,2,54.0,0.0,2,111,360.0,0.0,0.0,0,90,0.0,0.0,613.872195613942,390.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120417,2,1,0,1,1,,0.0,430.0,12,1.0,2.0,2.0,1.0,1.0,1,1,286.455214416499,360.0,29320.04445910523,0,1,2,3,55.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013301480512553827,29320.04445910523,8,4,8,8_0,8_2,8_0_1 +20398,2,42.0,0.0,1,111,1000.0,2500.0,0.0,37,22,0.0,92.70290939071567,1705.2005433720612,3570.0,0.0,4746.260119849472,12,0,0,0,0,0,0,0,0,0,,1,,1,120418,1,1,2,0,2,,600.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1250.19030698417,1000.0,213027.42764850473,1,1,1,2,170.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.016758405428856326,142018.28509900314,10,5,10,10_1,10_3,10_1_0 +20399,1,34.0,137.0,9,112,0.0,0.0,0.0,22,54,0.0,0.0,0.0,635.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,4.0,2,2006.0,6,120419,2,1,0,0,1,,142.0,371.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2185.63841692686,0.0,25535.269767644375,4,1,2,3,76.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02486756575427316,17023.513178429585,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +20400,2,57.0,0.0,1,111,303.0,1780.0,0.0,43,38,0.0,0.0,516.6757646417345,2083.0,0.0,3379.3372053328244,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,120420,2,1,1,0,1,,463.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,700.704566772623,303.0,124459.85182884967,1,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0167363207443347,62229.925914424835,10,5,10,10_1,10_4,10_1_0 +20401,2,58.0,0.0,8,300,1500.0,0.0,0.0,56,47,0.0,662.163638505112,2557.8008150580918,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,120421,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,7.0,3.3999999999999995,4,2,1410.32926428248,1500.0,57809.2514905059,1,1,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03459653858912986,17002.721026619383,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +20402,2,72.0,0.0,5,112,723.0,1585.0,0.0,0,77,0.0,0.0,1232.8599928580002,2308.0,0.0,3009.1289159845655,70,0,0,0,0,0,0,0,0,0,,1,,3,120422,2,1,2,0,1,,201.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,444.618591974379,723.0,10860.904713305506,0,5,0,1,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21250531709135695,10860.904713305506,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +20403,2,55.0,0.0,2,111,350.0,0.0,0.0,0,54,0.0,0.0,596.8201901802214,350.0,0.0,0.0,42,2,2,2,2,1,2,2,2,2,5.0,2,,2,120423,1,2,0,0,1,,0.0,210.0,12,1.0,0.0,2.0,1.0,1.0,1,1,949.789291927411,350.0,25640.711253122092,0,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013650167366452555,25640.711253122092,7,4,7,7_0,7_4,7_0_1 +20404,2,81.0,0.0,2,111,600.0,1048.0,0.0,0,78,0.0,0.0,1023.1203260232367,1648.0,0.0,1989.632242240899,71,0,0,0,0,0,0,0,0,0,,1,,2,120424,2,2,2,0,1,,204.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,235.199857425118,600.0,13307.602609736943,0,5,0,1,80.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12383898500201583,13307.602609736943,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +20405,1,39.0,197.0,7,400,1000.0,2000.0,0.0,56,63,0.0,794.5963662061343,1705.2005433720612,3600.0,0.0,3797.008095879578,43,0,0,0,0,0,0,0,0,2,2.0,1,,5,120425,2,1,2,0,1,,1000.0,717.0,43,2.0,0.0,7.0,7.0,2.9999999999999996,2,2,281.416042621286,1000.0,37035.47090974825,1,1,2,3,171.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0972041103182633,12345.156969916085,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +20406,2,54.0,0.0,1,111,600.0,0.0,0.0,0,53,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,120426,2,2,0,1,1,,0.0,328.0,32,2.0,2.0,2.0,2.0,1.5,2,2,370.70839023164,600.0,7218.363988485372,0,1,2,3,38.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.08312132790160086,4812.242658990248,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +20407,2,41.0,0.0,2,111,812.0,2200.0,0.0,63,46,0.0,0.0,1384.6228412181138,3012.0,0.0,4176.708905467536,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,120427,2,2,3,0,1,,457.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,453.592907470195,812.0,44654.42881419394,1,1,1,2,122.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06745131625203098,21264.013721044732,5,3,5,5_1,5_3,5_0_1 +20408,2,72.0,0.0,6,211,2040.0,,,77,78,0.0,0.0,,2316.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,120428,2,1,0,0,2,,720.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,74.56633655941022,2040.0,24539.343121531827,5,5,0,1,98.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09437905442415231,16359.562081021219,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +20409,2,47.0,0.0,7,111,540.0,,,0,52,0.0,0.0,,690.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,120429,2,3,0,0,2,,0.0,800.0,12,1.0,1.0,3.0,1.0,1.0,1,1,54.0083547187308,540.0,30565.972027842745,0,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022574122601809438,30565.972027842745,8,4,8,8_0,8_2,8_0_0 +20410,0,76.0,0.0,5,111,300.0,,,77,78,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,120430,2,2,0,0,2,,350.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,106.40880997189042,300.0,17616.34334825081,5,5,5,0,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017029640832346062,11744.228898833875,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +20411,2,54.0,0.0,2,221,1300.0,0.0,0.0,0,21,0.0,0.0,2216.7607063836795,1360.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,1,2.0,2,,2,120431,2,2,0,1,1,,180.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,773.86423259112,1300.0,29658.416358396404,0,1,0,1,80.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04585544904237542,29658.416358396404,8,4,8,8_0,8_1,8_0_1 +20412,2,29.0,0.0,8,111,600.0,,,56,48,0.0,0.0,,720.0,166.2707070475825,,43,0,0,0,0,0,0,0,0,0,,2,2000.0,6,120432,2,2,0,0,1,,400.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,161.10132856767544,600.0,27400.700011033503,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026276700949613548,18267.133340689,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +20413,1,76.0,200.0,2,111,0.0,600.0,0.0,78,77,0.0,0.0,0.0,798.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,120433,1,3,0,1,2,600.0,0.0,400.0,41,2.0,0.0,6.0,6.0,3.0999999999999996,4,4,219.744681987454,0.0,12797.959108234465,5,5,2,3,100.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06235369196378747,4128.373905882086,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +20414,2,82.0,0.0,2,111,160.0,,,0,72,0.0,0.0,,424.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,120434,1,2,0,0,2,,200.0,,21,2.0,4.0,4.0,3.0,2.0,3,3,86.22031642348182,160.0,23799.092205421635,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017815805592089316,11899.546102710818,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +20415,2,64.0,0.0,5,112,1420.0,0.0,0.0,12,43,0.0,0.0,2421.3847715883267,1453.0,45.72444443808519,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,120435,2,2,5,0,1,,481.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,926.222885117945,1420.0,53160.440082691144,1,5,0,1,122.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027332354618205875,35440.29338846076,9,5,9,9_1,9_1,9_0_0 +20416,2,79.0,0.0,2,221,199.0,0.0,0.0,0,78,0.0,0.0,339.33490813104015,906.0,979.6115823553404,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,120436,2,1,0,1,1,,246.0,216.0,11,0.0,3.0,3.0,1.0,1.0,1,1,640.895146512637,199.0,14026.135934076046,0,5,2,3,60.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06459369881044016,14026.135934076046,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +20417,1,34.0,434.0,1,111,366.0,835.0,0.0,0,52,0.0,0.0,624.1033988741744,1201.0,0.0,1585.2508800297237,50,2,2,2,2,2,2,1,2,1,20.0,1,,1,120437,2,2,5,0,1,,696.0,411.0,32,1.0,0.0,4.0,3.0,1.6,1,1,213.448383819919,366.0,12778.420093018338,0,1,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.09398657981640332,7986.512558136461,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +20418,1,67.0,66.0,7,111,100.0,0.0,0.0,85,78,0.0,0.0,170.52005433720612,130.0,41.567676761895626,0.0,71,2,2,2,2,1,2,2,2,0,,2,,5,120438,2,1,0,0,1,,60.0,400.0,41,0.0,1.0,2.0,2.0,1.5,2,2,928.467159163349,100.0,15855.513651975412,6,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.008199040589505185,10570.342434650274,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +20419,2,52.0,0.0,1,112,1350.0,0.0,0.0,21,46,0.0,927.0290939071567,2302.0207335522828,2050.0,0.0,0.0,60,2,2,2,1,1,1,2,2,2,7.0,8,,1,120439,2,3,0,0,1,,0.0,582.0,43,2.0,4.0,4.0,2.0,1.5,2,2,4323.19001058463,1350.0,48549.23919067544,1,1,2,3,70.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.04222517250885635,32366.159460450293,8,4,8,8_0,8_1,8_1_0 +20420,1,30.0,90.0,7,111,300.0,,,0,62,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,120440,2,2,0,0,2,,160.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,76.41399403560382,300.0,19598.60840964941,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01530720925330058,19598.60840964941,5,3,5,5_1,5_2,5_0_0 +20421,1,59.0,350.0,1,111,210.0,0.0,0.0,85,47,0.0,0.0,358.0921141081328,570.0,498.81212114274757,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,120441,1,3,3,0,2,,300.0,446.0,42,1.0,6.0,2.0,2.0,1.5,2,2,517.388755974126,210.0,7211.52818829906,6,4,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,1,0.07904011259705586,4807.68545886604,1,1,1_1,1_1_1,1_4_1,1_1_0_1 +20422,2,65.0,0.0,1,400,1700.0,0.0,0.0,77,75,0.0,0.0,2898.840923732504,1760.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,120442,2,1,2,0,1,,160.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1743.92503182742,1700.0,32779.68422914272,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0536917923826513,21853.122819428478,6,3,6,6_1,6_0,6_1_0 +20423,1,57.0,140.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1701.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,,1,120443,2,1,0,0,1,,82.0,390.0,11,0.0,3.0,3.0,1.0,1.0,1,1,316.037809048625,0.0,11026.679253767721,0,5,2,3,46.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.15426221810331364,11026.679253767721,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +20424,2,55.0,0.0,2,111,300.0,1200.0,0.0,0,42,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,120444,2,1,1,0,1,,250.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,786.113590186389,300.0,33497.1428006825,0,1,1,2,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04477993866299061,33497.1428006825,8,4,8,8_1,8_2,8_0_1 +20425,2,90.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,98.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,2,120445,2,1,0,1,1,,297.0,320.0,11,0.0,0.0,2.0,1.0,1.0,1,1,630.583986940954,0.0,17862.90799497515,0,5,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.005486228783553466,17862.90799497515,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +20426,2,44.0,0.0,8,120,1403.0,0.0,0.0,52,46,0.0,0.0,2392.3963623510017,1523.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,7.0,1,2001.0,6,120446,2,1,1,0,1,,263.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,727.321270354766,1403.0,56256.59138509615,1,1,1,2,119.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027072383208832,21637.15053272929,6,3,6,6_1,6_0,6_0_0 +20427,1,81.0,303.0,1,111,400.0,1400.0,0.0,0,78,0.0,0.0,682.0802173488245,1800.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,1,120447,2,1,1,0,1,,440.0,296.0,21,0.0,0.0,3.0,2.0,1.5,2,2,331.949670250602,400.0,16154.12923818751,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11142661875855833,10769.419492125007,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +20428,2,48.0,0.0,8,120,438.0,1540.0,0.0,54,48,0.0,0.0,746.8778379969627,1978.0,0.0,2923.696233827275,42,0,0,0,0,0,0,0,0,2,12.0,1,2001.0,6,120448,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1218.90879300501,438.0,51953.21919551022,1,1,1,2,110.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03807271292576492,34635.47946367348,9,5,9,9_1,9_0,9_0_0 +20429,2,36.0,0.0,6,111,2000.0,0.0,0.0,52,67,0.0,1062.1104761621996,3410.4010867441225,2802.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,5.0,1,,4,120449,2,1,3,0,1,,628.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,917.976752709828,2000.0,42791.4472221172,1,1,0,1,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,1,1,0,0,0.06548037474534764,20376.87962957962,5,3,5,5_1,5_3,5_0_0 +20430,2,85.0,0.0,1,111,480.0,120.0,0.0,0,90,2003.897416969543,0.0,818.4962608185893,2500.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,2,,1,120450,2,1,0,1,1,,800.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,551.687585991559,480.0,15870.362237840549,0,5,0,1,50.0,9,7,9,1,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.15752633509770286,15870.362237840549,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +20431,0,30.0,0.0,6,211,0.0,,,85,53,0.0,0.0,,907.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,,4,120451,2,2,0,0,2,,0.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,51.91419849447626,0.0,41454.40422696944,6,1,5,0,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021879460503980014,19740.192489033067,5,3,5,5_0,5_2,5_0_0 +20432,2,56.0,0.0,7,111,240.0,250.0,0.0,0,68,0.0,0.0,409.2481304092947,490.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,0,,2,,5,120452,2,2,0,0,1,,0.0,380.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1411.93773502992,240.0,15408.66921683685,0,1,2,3,51.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03180028029056419,15408.66921683685,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +20433,2,66.0,0.0,1,112,480.0,0.0,0.0,75,77,2425.7705573841836,0.0,818.4962608185893,2960.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120453,2,2,2,0,1,,180.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1388.2060167823,480.0,64325.57434913682,5,5,0,1,180.0,9,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04601591248815208,42883.71623275788,9,5,9,9_1,9_0,9_1_0 +20434,2,51.0,0.0,2,111,420.0,,,0,52,0.0,0.0,,420.0,0.0,,31,0,0,0,0,0,0,0,0,3,45.0,2,,2,120454,2,1,0,0,2,,300.0,700.0,32,1.0,1.0,3.0,2.0,1.5,2,1,318.6118531513027,420.0,33093.896166109276,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012691162076894188,22062.59744407285,6,3,6,6_0,6_2,6_0_1 +20435,1,36.0,273.0,2,111,0.0,0.0,0.0,85,54,0.0,0.0,0.0,1307.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120455,2,2,0,0,1,,0.0,428.0,42,1.0,0.0,4.0,4.0,2.1,2,2,275.360131951861,0.0,26967.807400262165,6,1,2,3,84.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.048465193354476944,12841.813047743888,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +20436,1,32.0,289.0,2,111,210.0,490.0,0.0,0,56,0.0,0.0,358.0921141081328,700.0,0.0,930.2669834904966,60,2,1,2,1,1,2,2,2,0,,2,,2,120456,1,2,0,0,1,,0.0,265.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1224.82952726676,210.0,9377.619043032097,0,4,2,3,47.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.07464581326964063,7213.55311002469,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20437,2,82.0,0.0,8,111,1500.0,0.0,0.0,0,74,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2001.0,6,120457,2,2,5,0,1,,270.0,600.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1086.41561438442,1500.0,38973.22541714102,0,5,2,3,70.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03848796151576095,38973.22541714102,9,5,9,9_1,9_2,9_0_0 +20438,2,44.0,0.0,9,112,476.0,0.0,0.0,85,11,0.0,1986.490915515336,811.6754586451011,2276.0,415.67676761895626,0.0,31,0,0,0,0,0,0,0,0,1,5.0,1,2006.0,6,120458,2,1,1,0,1,,577.0,,42,1.0,0.0,8.0,6.0,2.6999999999999997,2,2,1085.85178765064,476.0,112103.89479595327,6,1,1,2,300.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020302595232241292,41519.961035538254,9,5,9,9_1,9_0,9_0_0 +20439,1,81.0,169.0,2,111,259.0,1154.0,0.0,0,77,0.0,0.0,441.64694073336386,1413.0,0.0,2190.8736713225167,71,0,0,0,0,0,0,0,0,0,,2,,2,120459,1,3,0,0,1,,283.0,357.0,11,0.0,5.0,4.0,1.0,1.0,1,1,347.075236601677,259.0,9804.412962698114,0,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14411877645055365,9804.412962698114,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +20440,0,69.0,0.0,2,111,150.0,,,0,78,0.0,0.0,,196.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,2,120460,2,1,0,0,2,,50.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,106.17565811937334,150.0,3731.581989712424,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05252463982845647,3731.581989712424,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +20441,2,46.0,0.0,2,300,700.0,0.0,0.0,54,62,0.0,927.0290939071567,1193.6403803604428,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,120461,2,2,1,0,1,,290.0,,43,2.0,2.0,6.0,4.0,2.3,3,3,798.167042025475,700.0,37098.77985670857,1,1,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03773709015249023,16129.904285525467,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +20442,0,50.0,0.0,2,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1095.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,120462,2,1,4,0,1,,350.0,,32,2.0,1.0,5.0,2.0,1.5,2,2,634.289664574175,0.0,30447.158501684324,0,1,5,0,95.0,9,3,3,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03596394717554431,20298.10566778955,5,3,5,5_1,5_1,5_0_1 +20443,2,76.0,0.0,2,112,350.0,2000.0,0.0,77,75,0.0,0.0,596.8201901802214,2350.0,0.0,3797.008095879578,60,0,0,0,0,0,0,0,0,0,,1,,2,120463,2,1,2,0,1,,238.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,869.846739513332,350.0,73230.37867470557,5,5,0,1,180.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03209050728030321,36615.189337352786,9,5,9,9_1,9_0,9_0_1 +20444,0,69.0,0.0,6,111,900.0,,,0,77,0.0,0.0,,1026.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,120464,2,1,0,0,2,,1200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,115.91748297842979,900.0,17839.998555685706,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05751121541840081,17839.998555685706,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20445,2,88.0,0.0,1,120,300.0,1300.0,0.0,86,77,0.0,0.0,511.56016301161833,1600.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,0,,1,,1,120465,2,1,3,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,139.43304823083,300.0,20284.115749879424,6,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07887945522148339,13522.74383325295,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +20446,1,32.0,406.0,5,120,0.0,0.0,0.0,0,56,0.0,0.0,0.0,956.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,3,120466,2,2,0,0,1,,242.0,370.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2094.17603581135,0.0,28278.30318553976,0,1,2,3,85.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03380683747986884,17673.939490962348,4,2,4_1,4_0_1,4_0_1,4_0_0_1 +20447,2,58.0,0.0,5,111,500.0,2500.0,0.0,90,37,0.0,0.0,852.6002716860306,3000.0,0.0,4746.260119849472,31,0,0,0,0,0,0,0,0,0,,2,,3,120467,2,3,0,1,2,,0.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,607.857735291792,500.0,248359.86435906976,1,1,0,1,144.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012079246410211868,124179.93217953488,10,5,10,10_0,10_4,10_0_0 +20448,2,42.0,0.0,5,111,552.5,0.0,0.0,22,46,0.0,0.0,942.1233002130638,553.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,60.0,2,,3,120468,2,1,0,1,2,,0.0,996.0,43,2.0,0.0,2.0,3.0,1.8,2,2,637.623662849124,552.5,34185.71058556246,1,1,2,3,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01617634943161154,18992.061436423588,5,3,5,5_0,5_4,5_0_0 +20449,2,59.0,0.0,6,111,555.0,1426.0,0.0,45,33,0.0,132.4327277010224,946.386301571494,2081.0,0.0,2707.266772362139,20,0,0,0,0,0,0,0,0,2,60.0,1,,4,120469,2,1,2,0,1,,450.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1740.3860580067,555.0,104636.98657037117,1,1,0,1,197.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01988780514622783,69757.99104691412,10,5,10,10_1,10_2,10_0_0 +20450,2,77.0,0.0,5,112,400.0,0.0,0.0,78,75,1687.4925616585624,0.0,682.0802173488245,2030.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,120470,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1554.81249039527,400.0,34498.571920100534,5,5,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058843015435581666,22999.047946733688,6,3,6,6_1,6_0,6_0_0 +20451,0,90.0,0.0,2,211,300.0,0.0,0.0,72,72,2636.7071275915036,0.0,511.56016301161833,3000.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120471,2,2,5,0,2,,136.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1285.21388693046,300.0,21909.792997065255,5,5,0,1,135.0,1,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1369250727472341,14606.52866471017,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +20452,2,36.0,0.0,1,300,300.0,0.0,0.0,0,65,0.0,0.0,511.56016301161833,333.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,2,15.0,8,,1,120472,2,1,0,1,1,260.0,0.0,270.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2797.01258836212,300.0,19331.427660176432,0,1,2,3,30.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.017225835869639067,19331.427660176432,5,3,5,5_0,5_0,5_1_0 +20453,1,51.0,379.0,6,111,798.0,0.0,0.0,54,68,0.0,0.0,1360.750033610905,798.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,120473,2,1,0,0,1,,0.0,801.0,43,2.0,3.0,4.0,5.0,2.4,2,2,1032.87263920864,798.0,28432.644657102875,4,1,2,3,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028066330431933576,11846.935273792866,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +20454,2,41.0,0.0,1,111,658.0,993.0,0.0,65,64,0.0,198.6490915515336,1122.0219575388162,1801.0,0.0,1885.2145196042104,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,120474,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1334.59295499719,658.0,38510.643952569146,1,1,1,2,119.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04676629147562853,18338.40188217578,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +20455,2,69.0,0.0,2,111,3901.3,,,78,77,0.0,0.0,,4033.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,120475,2,3,0,0,2,,258.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,82.38977593633344,3901.3,10157.671999999999,5,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.39703979415755897,6771.781333333332,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +20456,2,76.0,0.0,5,111,430.0,,,0,75,0.0,0.0,,610.0,249.40606057137379,,60,0,0,0,0,0,0,0,0,0,,1,,3,120476,2,1,0,0,2,,230.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,143.13968093677335,430.0,38880.60923961245,0,5,0,1,110.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015689054568067778,38880.60923961245,9,5,9,9_1,9_2,9_0_0 +20457,0,63.0,0.0,7,111,1134.0,,,21,45,0.0,0.0,,1302.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,5,120477,2,1,0,0,2,,738.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,105.4189948180749,1134.0,44891.437283157225,1,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02900330394385693,17956.57491326289,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20458,2,38.0,0.0,9,112,1845.0,0.0,0.0,46,46,0.0,1589.1927324122687,3146.095002521453,3125.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,120478,1,2,1,0,1,,230.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,303.724989206433,1845.0,64007.47084396879,1,1,1,2,164.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04882242586365929,30479.748020937517,8,4,8,8_1,8_0,8_0_0 +20459,2,58.0,0.0,2,111,132.0,0.0,0.0,37,64,0.0,0.0,225.08647172511206,788.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,20.0,2,,2,120479,2,1,0,1,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,703.301231215597,132.0,83255.31064997954,1,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009464861686876592,55503.54043331969,10,5,10,10_0,10_4,10_0_1 +20460,0,78.0,0.0,2,111,710.0,0.0,0.0,78,78,0.0,0.0,1210.6923857941633,740.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120480,2,1,2,0,2,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1115.76405183559,710.0,21300.988225461246,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03474017224775853,14200.658816974164,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +20461,2,63.0,0.0,1,111,370.0,976.0,0.0,0,78,0.0,0.0,630.9242010476627,1396.0,69.27946126982604,1852.939950789234,70,1,2,2,1,1,2,2,2,0,,1,,1,120481,2,1,3,0,1,,156.0,380.0,11,0.0,3.0,3.0,1.0,1.0,1,1,181.599328021223,370.0,15592.266541441712,0,5,2,3,60.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08953156337403922,15592.266541441712,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +20462,2,52.0,0.0,9,111,866.0,764.0,0.0,78,68,0.0,0.0,1476.703670560205,1630.0,0.0,1450.4570926259987,50,2,2,2,1,2,2,2,2,2,5.0,1,2009.0,6,120482,2,3,1,0,1,,950.0,438.0,42,2.0,0.0,4.0,6.0,3.3,5,5,1151.8539491369,866.0,55158.528464864125,5,1,2,3,80.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.029551187193804614,16714.705595413372,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +20463,2,42.0,0.0,5,111,557.0,880.0,0.0,46,38,0.0,0.0,949.796702658238,1437.0,0.0,1670.6835621870143,20,0,0,0,0,0,0,0,0,0,,1,,3,120483,2,1,3,0,1,,298.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,334.024459379541,557.0,65587.72496080969,1,1,1,2,102.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021909587515936,28516.40215687378,8,4,8,8_1,8_2,8_0_0 +20464,2,55.0,0.0,7,111,410.0,,,0,52,0.0,0.0,,662.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,1,30.0,1,,5,120484,2,2,0,0,2,,927.0,,32,2.0,2.0,4.0,4.0,2.3,3,3,129.99261177332258,410.0,33226.150592764374,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019924065478236986,14446.152431636685,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +20465,2,48.0,0.0,8,111,375.0,,,0,55,0.0,0.0,,417.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,2,7.0,1,2001.0,6,120485,2,2,0,0,2,,60.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,93.60717602250219,375.0,17020.458013198895,0,1,0,1,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024499928243800963,17020.458013198895,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20466,1,28.0,470.0,1,111,1000.0,0.0,0.0,81,63,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,50,2,2,2,1,2,2,2,2,0,,1,,1,120486,1,3,3,0,2,,400.0,500.0,43,2.0,0.0,3.0,5.0,2.4,2,2,262.339980231967,1000.0,13044.592817310673,4,4,2,3,100.0,4,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0.08125972307800512,5435.247007212781,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +20467,2,63.0,0.0,2,111,480.0,0.0,0.0,75,78,0.0,0.0,818.4962608185893,2980.0,3463.9730634913026,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,120487,1,2,3,0,2,,320.0,539.0,41,0.0,1.0,4.0,2.0,1.5,2,2,1493.08675023508,480.0,50257.06639365949,5,5,2,3,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05929514422226526,33504.710929106324,8,4,8,8_1,8_3,8_0_1 +20468,2,80.0,0.0,2,111,750.0,,,71,71,0.0,0.0,,950.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,2,120488,2,2,0,0,2,,1000.0,,41,2.0,6.0,5.0,6.0,3.3,5,5,101.46465080864196,750.0,26136.0681144118,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03634823707381435,7920.020640730849,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +20469,2,61.0,0.0,2,111,495.0,0.0,0.0,74,75,0.0,0.0,844.0742689691702,495.0,0.0,0.0,30,2,2,1,2,1,2,2,2,0,,2,,2,120489,2,1,0,1,2,,0.0,,41,0.0,2.0,3.0,3.0,2.0,3,3,330.84561136644,495.0,58107.991349544,5,5,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008518621767914276,29053.995674772,8,4,8,8_0,8_4,8_0_1 +20470,2,44.0,0.0,2,111,0.0,0.0,0.0,43,53,0.0,0.0,0.0,837.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,120490,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,492.902771285063,0.0,78325.37438119651,1,1,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010686192139043739,30125.14399276789,8,4,8,8_0,8_4,8_0_1 +20471,2,62.0,0.0,6,112,560.0,0.0,0.0,78,72,0.0,662.163638505112,954.9123042883542,1270.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,120491,2,1,1,0,1,,260.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1082.23772301175,560.0,30918.53257832532,5,5,0,1,104.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04107568807745754,20612.35505221688,5,3,5,5_1,5_0,5_0_0 +20473,2,65.0,0.0,7,211,0.0,,,0,86,0.0,0.0,,1023.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,120493,2,2,0,0,2,,383.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,43.882142390107106,0.0,25705.07520472364,0,7,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03979758829151414,25705.07520472364,7,4,7,7_1,7_2,7_0_0 +20474,2,26.0,0.0,9,111,1000.0,0.0,0.0,67,43,0.0,662.163638505112,1705.2005433720612,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,120494,2,1,1,0,1,,360.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,76.5563288299893,1000.0,39763.918292457936,1,1,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03772264063535476,26509.278861638624,7,4,7,7_1,7_3,7_0_0 +20475,2,32.0,0.0,2,111,517.0,1464.0,0.0,46,63,0.0,0.0,881.5886809233556,1981.0,0.0,2779.409926183851,50,0,0,0,0,0,0,0,0,2,50.0,1,,2,120495,2,2,2,0,1,,348.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,250.05624518497,517.0,54644.84389012563,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03625227668292357,30358.24660562535,8,4,8,8_1,8_3,8_0_1 +20476,2,64.0,0.0,2,111,259.0,1396.0,0.0,0,75,0.0,0.0,441.64694073336386,1655.0,0.0,2650.3116509239453,50,0,0,0,0,0,0,0,0,0,,2,,2,120496,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1013.62241279849,259.0,20578.297368620966,0,5,0,1,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08042453514757952,20578.297368620966,5,3,5,5_0,5_3,5_0_1 +20477,2,53.0,0.0,2,111,198.0,517.0,0.0,0,52,0.0,0.0,337.6297075876681,715.0,0.0,981.5265927848709,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,120497,2,3,0,0,2,,200.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1159.75959865075,198.0,27424.99468945105,0,1,2,3,52.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02607110805658689,27424.99468945105,7,4,7,7_0,7_2,7_0_1 +20478,2,30.0,0.0,1,300,400.0,0.0,0.0,55,68,0.0,529.7309108040896,682.0802173488245,860.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,120498,2,2,1,0,1,,101.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,1283.62436199434,400.0,27453.367782070298,4,1,1,2,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03132584704458967,15251.870990039053,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +20480,2,29.0,0.0,2,111,350.0,0.0,0.0,47,47,0.0,0.0,596.8201901802214,350.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,120500,1,1,0,1,1,,270.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,704.831116594098,350.0,40715.1038983391,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00859631847861446,27143.40259889273,7,4,7,7_0,7_4,7_0_1 +20481,2,51.0,0.0,2,111,510.0,0.0,0.0,53,53,0.0,0.0,869.6522771197511,510.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,120501,2,1,0,1,1,714.0,0.0,532.0,43,2.0,1.0,3.0,4.0,2.3,3,2,260.743275684658,510.0,53435.04440799043,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009544298234432402,23232.6280034741,6,3,6,6_0,6_4,6_0_1 +20482,2,40.0,0.0,9,111,2040.0,0.0,0.0,37,37,0.0,0.0,3478.6091084790046,2040.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,180.0,1,2008.0,6,120502,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,3,2,474.848171457273,2040.0,137951.06194764984,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014787852816777492,47569.33170608616,10,5,10,10_1,10_4,10_0_0 +20483,2,47.0,0.0,2,111,250.0,240.0,0.0,0,68,0.0,0.0,426.3001358430153,490.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,2,,2,120503,2,1,0,1,1,837.0,600.0,397.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1039.42542018876,250.0,19950.13917401952,0,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024561232166145114,19950.13917401952,5,3,5,5_0,5_2,5_0_1 +20484,2,60.0,0.0,5,120,450.0,0.0,0.0,68,75,458.7870402009217,0.0,767.3402445174275,885.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,120505,2,1,2,0,1,,261.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1390.11477897562,450.0,37359.96049051504,1,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023688461882198298,24906.640327010027,7,4,7,7_1,7_0,7_0_0 +20485,2,45.0,0.0,7,111,720.0,840.0,0.0,0,47,0.0,0.0,1227.744391227884,1560.0,0.0,1594.7434002694229,10,0,0,0,0,0,0,0,0,3,60.0,2,,5,120506,2,1,0,1,1,,0.0,520.0,32,2.0,0.0,3.0,2.0,1.5,2,2,315.803742035041,720.0,30002.11035038653,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0519963423166298,20001.406900257687,5,3,5,5_0,5_4,5_0_0 +20486,2,71.0,0.0,1,111,450.0,1000.0,0.0,77,74,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,0,,1,,1,120507,2,1,2,0,2,,240.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1125.58432938594,450.0,55593.8603556139,5,5,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02608201680410161,37062.573570409266,9,5,9,9_1,9_3,9_1_0 +20487,1,61.0,226.0,7,111,324.0,,,0,75,0.0,0.0,,390.0,91.44888887617039,,41,0,0,0,0,0,0,0,0,0,,1,,5,120508,2,2,0,0,2,,203.0,622.0,11,0.0,3.0,6.0,1.0,1.0,1,1,106.26298207970197,324.0,9513.262840190804,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04099539837713324,9513.262840190804,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +20489,2,46.0,0.0,8,400,720.0,,,81,68,0.0,0.0,,1060.0,471.10033663481715,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,120510,2,2,0,0,2,,1600.0,,43,3.0,0.0,6.0,13.0,5.599999999999999,6,3,4.386640891614599,720.0,44111.59923678041,4,4,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024029960789001915,7877.071292282217,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +20490,2,48.0,0.0,7,111,520.0,700.0,0.0,46,42,0.0,132.4327277010224,886.7042825534718,1320.0,0.0,1328.9528335578523,60,0,0,0,0,0,0,0,0,2,3.0,1,,5,120511,2,1,2,0,1,,340.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,1070.12711340938,520.0,52395.06861764121,1,1,0,1,130.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02519321063653615,20958.027447056484,5,3,5,5_1,5_2,5_0_0 +20491,2,41.0,0.0,9,211,800.0,,,52,33,0.0,0.0,,888.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,120512,1,1,0,0,2,,280.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,81.5826751509264,800.0,50885.07220089451,1,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017451090498489846,24230.98676233072,7,4,7,7_1,7_2,7_0_0 +20492,2,58.0,0.0,2,111,900.0,0.0,0.0,0,67,0.0,0.0,1534.680489034855,900.0,0.0,0.0,60,2,2,2,1,2,2,2,2,2,15.0,2,,2,120513,1,2,0,1,2,1300.0,0.0,400.0,12,1.0,3.0,3.0,1.0,1.0,1,1,415.498655152352,900.0,19763.295724830103,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.045538963365774204,19763.295724830103,5,3,5,5_0,5_4,5_0_1 +20493,2,59.0,0.0,5,111,532.0,260.0,0.0,85,21,0.0,0.0,907.1666890739366,792.0,0.0,493.61105246434516,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,120514,2,1,0,1,1,,0.0,,42,4.0,0.0,4.0,6.0,3.5,6,6,443.926456694646,532.0,8875.659720826177,6,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08923280352238176,2535.902777378908,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +20494,2,52.0,0.0,6,111,666.0,238.0,0.0,85,68,0.0,0.0,1135.6635618857927,904.0,0.0,451.84396340966975,71,0,0,0,0,0,0,0,0,0,,1,,4,120515,2,1,1,0,1,,0.0,,42,1.0,2.0,7.0,5.0,3.0,5,5,511.439526416162,666.0,30141.26704889897,6,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029992103468424767,10047.089016299657,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +20495,2,70.0,0.0,6,120,833.0,0.0,0.0,0,75,0.0,0.0,1420.432052628927,1542.0,69.27946126982604,0.0,50,2,2,2,2,1,2,2,2,0,,1,,4,120516,2,1,3,0,1,,323.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1369.40447809304,833.0,14809.537478228265,0,5,1,2,90.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.1041220903939045,14809.537478228265,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +20496,2,56.0,0.0,6,111,325.0,942.0,0.0,0,46,0.0,0.0,554.1901765959199,1267.0,0.0,1788.3908131592812,50,0,0,0,0,0,0,0,0,2,55.0,1,,4,120517,2,1,2,0,1,,205.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1717.86897293515,325.0,40232.58326171336,0,1,0,1,108.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03149188785015748,40232.58326171336,9,5,9,9_1,9_2,9_0_0 +20497,2,56.0,0.0,6,300,600.0,,,55,63,0.0,132.4327277010224,,847.0,203.68161613328857,,71,0,0,0,0,0,0,0,0,0,,1,,4,120518,1,1,0,0,2,,750.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,78.2144673037368,600.0,54394.035713470665,4,1,0,1,53.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015571560169973575,27197.017856735332,7,4,7,7_1,7_1,7_0_0 +20498,2,73.0,0.0,7,111,0.0,,,90,77,0.0,0.0,,1184.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,120519,2,1,0,0,2,,367.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,103.38432388626195,0.0,37590.07915682139,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03149767243267808,25060.05277121426,7,4,7,7_1,7_3,7_0_0 +20499,2,80.0,0.0,1,111,1200.0,0.0,0.0,0,77,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,120520,2,2,0,0,1,,185.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,3619.53084535461,1200.0,18278.197787046385,0,5,0,1,50.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06565198680859174,18278.197787046385,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +20500,2,78.0,0.0,1,112,1152.0,0.0,0.0,0,72,0.0,0.0,1964.3910259646145,1308.0,216.15191916185728,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120521,1,3,2,0,2,,510.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,2003.34852615204,1152.0,17171.055014823025,0,5,0,1,120.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07617470207106439,17171.055014823025,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +20501,2,27.0,0.0,2,400,276.0,893.0,0.0,52,63,0.0,0.0,470.6353499706889,1169.0,0.0,1695.3641148102315,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,120522,2,1,0,0,1,,290.0,350.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1141.51419252032,276.0,33901.70719597224,1,1,2,3,75.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03448203930387569,22601.13813064816,6,3,6,6_0,6_0,6_0_1 +20502,2,36.0,0.0,7,112,650.0,0.0,0.0,38,11,0.0,0.0,1108.3803531918397,2250.0,2216.9427606344334,0.0,44,0,0,0,0,0,0,0,0,1,1.0,1,,5,120523,1,1,2,0,1,,180.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1570.7546838216,650.0,98681.7506622261,1,1,1,2,160.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02280056834116611,54823.19481234783,10,5,10,10_1,10_0,10_0_0 +20503,1,82.0,81.0,2,111,720.0,0.0,0.0,0,77,0.0,1382.5976771986739,1227.744391227884,1764.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,120524,2,1,0,1,1,329.0,0.0,199.0,11,0.0,1.0,2.0,1.0,1.0,1,1,308.495522992329,720.0,10745.353924801198,0,5,2,3,50.0,5,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.16416397378298883,10745.353924801198,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +20504,1,49.0,109.0,2,221,0.0,0.0,950.0,0,69,0.0,0.0,598.8023758940067,950.0,0.0,1136.8955401864469,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,120525,1,2,0,0,1,,220.0,345.0,32,1.0,3.0,4.0,2.0,1.5,2,1,2642.45537274177,0.0,14110.393252902417,0,1,2,3,70.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06732625965648344,9406.928835268278,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +20505,2,56.0,0.0,2,111,226.0,124.0,0.0,0,52,0.0,0.0,385.3753228020858,350.0,0.0,235.41450194453384,50,2,1,2,2,1,2,2,2,3,20.0,2,,2,120526,2,1,0,1,1,528.0,0.0,258.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1169.46826600249,226.0,22418.27433177309,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015612263228662082,22418.27433177309,6,3,6,6_0,6_4,6_0_1 +20506,2,62.0,0.0,2,111,400.0,0.0,0.0,0,35,1223.4321072024577,0.0,682.0802173488245,1560.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,120527,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1242.1330644439,400.0,30270.263476547225,0,1,0,1,48.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05153572585216035,30270.263476547225,8,4,8,8_0,8_4,8_0_1 +20507,1,45.0,260.0,2,111,320.0,700.0,0.0,52,69,0.0,0.0,545.6641738790596,1020.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,,2,120528,1,2,0,0,1,,600.0,402.0,43,2.0,0.0,3.0,5.0,2.4,2,2,307.0049759235,320.0,29365.783146341346,4,4,2,3,65.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03473430267181826,12235.742977642229,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +20508,1,37.0,207.0,5,112,1022.0,0.0,0.0,0,85,0.0,0.0,1742.7149553262466,1097.0,103.91919190473907,0.0,50,2,2,2,2,1,2,2,2,0,,2,,3,120529,1,2,0,0,1,,188.0,395.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2879.98016076385,1022.0,7350.7626387362725,0,7,2,3,48.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,1,1,0,1,0.14923621587495497,7350.7626387362725,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +20509,2,44.0,0.0,1,112,560.0,850.0,0.0,37,46,0.0,132.4327277010224,954.9123042883542,1510.0,0.0,1613.7284407488207,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,120530,2,1,3,0,1,,400.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1785.77500862328,560.0,73644.72148222271,1,1,0,1,140.0,6,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020503845620008256,49096.480988148476,10,5,10,10_1,10_1,10_1_0 +20510,1,65.0,359.0,2,111,275.0,230.0,0.0,85,72,0.0,0.0,468.93014942731685,505.0,0.0,436.65593102615145,71,2,1,2,1,1,2,2,2,0,,2,,2,120531,2,1,0,1,1,436.0,0.0,350.0,41,1.0,4.0,3.0,3.0,2.0,3,3,609.14962221527,275.0,9435.365833936039,6,5,2,3,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05352203707710771,4717.6829169680195,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +20511,2,58.0,0.0,7,111,180.0,,,85,52,0.0,0.0,,432.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,120532,1,2,0,0,2,,230.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,80.94073096083527,180.0,32587.337108325206,7,4,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01325668306569411,16293.668554162603,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20512,2,79.0,0.0,1,221,0.0,0.0,1800.0,77,78,0.0,0.0,1134.5729227465388,1890.0,124.70303028568689,2154.117865616425,70,0,0,0,0,0,0,0,0,0,,1,,1,120533,2,1,3,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,525.469212872718,0.0,23297.345406615743,5,5,0,1,100.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08112512249843268,15531.563604410496,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +20513,2,42.0,0.0,5,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,557.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,7.0,2,,3,120534,1,1,0,0,1,,0.0,,43,2.0,2.0,4.0,3.0,1.8,2,2,761.648568946859,0.0,36044.0,1,1,1,2,81.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015453334813006326,20024.444444444445,5,3,5,5_0,5_4,5_0_0 +20514,1,43.0,79.0,1,111,630.0,1600.0,0.0,85,63,0.0,0.0,1074.2763423243985,2230.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,120535,2,1,2,0,1,,500.0,342.0,42,1.0,0.0,4.0,4.0,2.3,3,2,265.88309907581,630.0,24082.616714697408,6,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0925979110334406,10470.702919433656,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +20515,2,45.0,0.0,9,111,480.0,1330.0,0.0,55,64,0.0,0.0,818.4962608185893,1810.0,0.0,2525.0103837599195,41,2,2,2,2,1,2,2,2,0,,1,2006.0,6,120536,2,2,1,0,1,,610.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,936.377507608789,480.0,31700.589754969442,1,1,1,2,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05709672955583614,11321.639198203373,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +20516,2,70.0,0.0,7,112,1220.0,0.0,0.0,77,78,0.0,331.081819252556,2080.344662913915,1470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,120537,2,1,1,0,1,,340.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,744.510751989893,1220.0,29362.809811228075,5,5,0,1,150.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050063328729455764,19575.206540818715,5,3,5,5_1,5_1,5_0_0 +20517,2,52.0,0.0,2,111,350.0,1035.0,0.0,0,52,0.0,0.0,596.8201901802214,1385.0,0.0,1964.9516896176817,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,120538,2,2,0,0,1,,0.0,398.0,12,1.0,2.0,4.0,1.0,1.0,1,1,612.102766664773,350.0,26928.711123158195,0,1,2,3,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0514320939337095,26928.711123158195,7,4,7,7_0,7_3,7_0_1 +20518,2,52.0,0.0,1,111,0.0,0.0,600.0,52,64,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,71,0,0,0,0,0,0,0,0,2,1.0,2,,1,120539,1,3,0,3,1,,0.0,435.0,43,2.0,2.0,4.0,4.0,2.3,3,2,839.77478479383,0.0,32610.83600524297,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018398792349375394,14178.62435010564,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +20519,2,41.0,0.0,6,111,600.0,,,34,34,0.0,0.0,,665.0,90.06329965077386,,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,120540,1,2,0,0,2,,500.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,137.33370868416233,600.0,99746.10349392051,1,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006666927094956962,47498.14452091453,10,5,10,10_1,10_2,10_0_0 +20521,2,50.0,0.0,1,300,600.0,0.0,0.0,0,34,0.0,0.0,1023.1203260232367,670.0,96.99124577775646,0.0,20,2,2,2,1,1,2,2,2,2,30.0,1,,1,120542,2,2,1,0,1,,66.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,804.123724538933,600.0,30726.232597112863,0,1,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.021805471851532993,30726.232597112863,8,4,8,8_1,8_0,8_1_0 +20522,2,44.0,0.0,5,112,270.0,686.0,0.0,56,67,0.0,0.0,460.40414671045653,1088.0,182.89777775234077,1302.3737768866952,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,120543,1,2,0,1,1,686.0,0.0,306.0,43,3.0,0.0,3.0,3.0,2.0,3,3,527.072502364696,270.0,27107.481119121945,1,1,2,3,65.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04013652154616873,13553.740559560973,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +20523,2,27.0,0.0,1,111,152.0,317.0,0.0,42,21,0.0,0.0,259.1904825925533,469.0,0.0,601.8257831969131,43,0,0,0,0,0,0,0,0,2,15.0,2,,1,120544,2,3,0,0,1,,0.0,504.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1461.4636371558,152.0,49458.51882730052,1,1,2,3,51.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.009482694005407973,32972.34588486701,8,4,8,8_0,8_3,8_1_0 +20524,2,57.0,0.0,1,111,400.0,1532.0,0.0,46,33,0.0,0.0,682.0802173488245,1932.0,0.0,2908.5082014437567,31,0,0,0,0,0,0,0,0,3,120.0,1,,1,120545,2,2,2,0,1,,334.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,424.446065173649,400.0,81376.52938925264,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023741489278297463,54251.019592835095,10,5,10,10_1,10_4,10_1_0 +20525,1,36.0,39.0,2,111,170.0,500.0,0.0,85,47,0.0,0.0,289.8840923732504,670.0,0.0,949.2520239698945,71,2,2,2,2,1,2,2,2,2,45.0,1,,2,120546,2,2,2,0,1,,370.0,317.0,42,1.0,0.0,2.0,3.0,1.8,2,2,779.316889526427,170.0,21112.532286453137,6,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,1,0.031734705761937695,11729.184603585076,2,1,2_1,2_1_1,2_4_1,2_0_1_1 +20527,0,80.0,0.0,7,112,2000.0,0.0,0.0,0,86,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,120548,2,2,3,0,1,,285.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1448.4797168043,2000.0,14541.624276243387,0,5,0,1,200.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13753621755084092,14541.624276243387,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +20528,2,40.0,0.0,2,300,320.0,,,0,21,0.0,0.0,,408.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,120549,2,2,0,0,2,,360.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,82.71339437204318,320.0,5080.427381898626,0,1,0,1,56.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08030820427700411,5080.427381898626,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +20529,2,38.0,0.0,5,112,40.0,40.0,0.0,56,47,0.0,0.0,68.20802173488245,80.0,0.0,75.94016191759155,42,0,0,0,0,0,0,0,0,2,20.0,1,,3,120550,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1212.22224917763,40.0,30581.13050817906,1,1,0,1,120.0,8,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0026159922367357757,14562.443099132885,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +20530,1,75.0,203.0,5,111,200.0,400.0,0.0,0,77,0.0,0.0,341.04010867441224,600.0,0.0,759.4016191759156,70,0,0,0,0,0,0,0,0,0,,2,,3,120551,2,1,0,0,1,,200.0,395.0,11,0.0,8.0,2.0,1.0,1.0,1,1,369.287086179018,200.0,9397.845148287297,0,5,2,3,52.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0638444229004291,9397.845148287297,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20531,2,67.0,0.0,2,111,266.0,655.0,0.0,77,75,0.0,0.0,453.5833445369683,921.0,0.0,1243.5201514005619,71,0,0,0,0,0,0,0,0,0,,2,,2,120552,1,1,0,0,1,,264.0,314.0,41,0.0,2.0,5.0,2.0,1.5,2,2,2085.94224708664,266.0,28958.22596625118,6,5,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03180443446616385,19305.483977500786,5,3,5,5_0,5_3,5_0_1 +20532,2,78.0,0.0,1,211,400.0,0.0,0.0,77,78,1580.9695937038657,0.0,682.0802173488245,2022.0,170.42747472377206,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120553,2,2,4,0,1,,250.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1165.99265334907,400.0,25297.419041732523,5,5,0,1,60.0,3,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07992910251691514,16864.946027821683,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +20533,1,41.0,500.0,9,300,1500.0,0.0,0.0,0,56,0.0,0.0,2557.8008150580918,1620.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,120554,2,1,1,0,1,,500.0,865.0,32,1.0,0.0,4.0,5.0,2.8,4,3,1860.30642972595,1500.0,7680.595310195673,0,1,2,3,85.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.21092115058444974,2743.0697536413118,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +20534,2,36.0,0.0,1,112,600.0,0.0,0.0,43,42,0.0,794.5963662061343,1023.1203260232367,1230.0,41.567676761895626,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,120555,2,1,3,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2349.98127802967,600.0,55013.68712611987,1,1,1,2,100.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02235807240442188,30563.159514511037,8,4,8,8_1,8_0,8_1_0 +20535,2,57.0,0.0,1,400,310.0,0.0,0.0,0,56,0.0,0.0,528.612168445339,310.0,0.0,0.0,60,1,2,2,1,1,2,2,2,0,,5,,1,120556,2,1,4,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1575.28570138713,310.0,24043.893180310944,0,4,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.012893086725815796,24043.893180310944,6,3,6,6_1,6_0,6_1_0 +20537,1,48.0,201.0,2,111,380.0,378.0,0.0,62,55,0.0,0.0,647.9762064813832,758.0,0.0,717.6345301212402,43,2,2,2,2,1,2,2,2,2,5.0,2,,2,120558,2,2,0,1,1,520.0,312.0,303.0,43,2.0,0.0,3.0,4.0,2.1,2,2,281.577346776769,380.0,23107.813267295598,4,1,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03280275771800504,11003.720603474094,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +20538,2,43.0,0.0,9,111,300.0,560.0,0.0,0,46,0.0,0.0,511.56016301161833,860.0,0.0,1063.162266846282,31,1,2,2,2,1,2,2,2,2,20.0,2,2009.0,6,120559,2,1,0,1,1,,296.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,233.74192153784,300.0,41123.1786086277,0,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.020912780312647594,41123.1786086277,9,5,9,9_0,9_4,9_0_0 +20539,1,39.0,434.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,983.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,120560,1,2,5,0,1,,277.0,597.0,42,1.0,1.0,4.0,4.0,2.3,3,2,249.456594292494,0.0,16417.02755685155,6,1,2,3,79.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05987685630641162,7137.838068196326,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +20540,2,70.0,0.0,1,111,660.0,1500.0,0.0,77,75,0.0,105.94618216081791,1125.4323586255605,2240.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,120561,2,1,1,0,1,,170.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1066.25322985569,660.0,32863.142619621365,5,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06816146665969124,21908.761746414242,6,3,6,6_1,6_3,6_1_0 +20541,0,80.0,0.0,2,112,2000.0,0.0,0.0,0,77,0.0,0.0,3410.4010867441225,3583.0,1662.707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,120562,2,1,2,0,1,,240.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,841.1500538246,2000.0,44350.508684789536,0,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0807882503775842,44350.508684789536,10,5,10,10_1,10_0,10_0_1 +20542,1,37.0,281.0,1,120,0.0,0.0,1450.0,0,52,0.0,0.0,913.9615211013785,1450.0,0.0,1735.2616139687873,71,1,2,2,1,1,2,2,2,2,20.0,2,,1,120563,1,2,0,0,1,,0.0,492.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1864.72934907418,0.0,25876.0,0,1,2,3,91.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.05603648168186737,14375.555555555555,3,2,3_1,3_0_1,3_0_1,3_1_0_1 +20543,2,64.0,0.0,6,111,480.0,,,0,77,0.0,0.0,,567.0,120.54626260949732,,60,0,0,0,0,0,0,0,0,0,,1,,4,120564,2,2,0,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,84.54482472789819,480.0,28036.208652690246,0,5,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020223847205017603,28036.208652690246,7,4,7,7_1,7_2,7_0_0 +20544,2,57.0,0.0,6,111,1200.0,,,0,54,0.0,0.0,,1315.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,1,,4,120565,1,1,0,0,2,,300.0,,22,2.0,1.0,3.0,2.0,1.5,2,2,129.8279034227134,1200.0,67379.43606638376,0,4,0,1,44.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019516340248149775,44919.62404425584,10,5,10,10_1,10_3,10_0_0 +20545,1,40.0,221.0,2,111,350.0,61.0,0.0,0,67,0.0,0.0,596.8201901802214,411.0,0.0,115.80874692432712,71,2,2,2,2,1,2,2,2,0,,2,,2,120566,2,3,0,1,1,450.0,0.0,208.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1905.90753488983,350.0,6060.0,0,4,2,3,40.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06782178217821783,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20546,2,40.0,0.0,6,111,200.0,0.0,0.0,0,46,0.0,0.0,341.04010867441224,200.0,0.0,0.0,10,2,2,1,2,2,2,2,1,2,1.0,2,,4,120567,1,2,0,1,1,,0.0,502.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1796.97956262652,200.0,32473.056348697006,0,1,2,3,35.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.006158952143352071,32473.056348697006,8,4,8,8_0,8_3,8_0_0 +20547,2,72.0,0.0,6,112,162.0,0.0,0.0,77,75,0.0,0.0,276.2424880262739,298.0,188.44013465392686,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,120568,2,2,3,0,1,,52.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,2048.57645723458,162.0,43770.911832186874,5,5,0,1,70.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006808174368002682,29180.60788812458,8,4,8,8_1,8_1,8_0_0 +20548,1,58.0,271.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,294.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120569,1,3,0,1,1,,0.0,351.0,31,2.0,3.0,4.0,3.0,2.0,3,3,215.638406081163,0.0,17669.697738633688,0,7,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016638654738116283,8834.848869316844,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20549,0,89.0,0.0,2,111,250.0,1400.0,0.0,0,75,0.0,0.0,426.3001358430153,1650.0,0.0,2657.9056671157045,70,0,0,0,0,0,0,0,0,0,,1,,2,120570,2,1,1,0,1,,190.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1311.61386748116,250.0,35765.748554223304,0,5,0,1,120.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04613352346025942,35765.748554223304,9,5,9,9_1,9_2,9_0_1 +20550,2,48.0,0.0,5,111,200.0,0.0,0.0,0,47,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,120571,2,1,0,1,1,477.0,87.0,264.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1639.46729006722,200.0,10858.319951714006,0,1,2,3,67.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018419055700088265,10858.319951714006,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +20551,1,27.0,15.0,5,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2231.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,120572,2,2,0,0,1,,71.0,295.0,12,1.0,0.0,2.0,1.0,1.0,1,1,462.107787010427,0.0,12242.825242954183,0,4,2,3,51.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.18222917959920676,12242.825242954183,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +20552,2,65.0,0.0,7,111,420.0,0.0,0.0,0,75,0.0,0.0,716.1842282162656,420.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,120573,2,1,0,0,1,,0.0,623.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1463.3334478379,420.0,27342.364808438295,0,5,2,3,46.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015360778152970192,27342.364808438295,7,4,7,7_0,7_3,7_0_0 +20553,1,53.0,167.0,7,111,100.0,,,0,43,0.0,0.0,,210.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,2,,5,120574,2,3,0,0,2,,84.0,195.0,12,1.0,0.0,1.0,1.0,1.0,1,1,108.37734276344159,100.0,5243.4047260345715,0,4,2,3,30.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04005031291162921,5243.4047260345715,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20554,2,66.0,0.0,6,221,1080.0,,,56,78,0.0,0.0,,1344.0,365.79555550468154,,70,0,0,0,0,0,0,0,0,0,,1,,4,120575,2,1,0,0,2,,450.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,87.52851394772053,1080.0,15648.422586406547,4,5,0,1,107.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0858872511001527,10432.281724271032,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +20555,2,40.0,0.0,9,111,550.0,0.0,0.0,0,54,0.0,0.0,937.8602988546337,550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,120576,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2054.83716109889,550.0,27074.17897836627,0,1,2,3,32.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02031455876979611,27074.17897836627,7,4,7,7_0,7_2,7_0_0 +20556,2,38.0,0.0,9,221,540.0,0.0,0.0,47,53,1423.821848899412,0.0,920.8082934209131,1890.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,120577,2,1,1,0,1,,420.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1634.37540104586,540.0,57502.95318878273,1,1,1,2,125.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03286787712963389,27382.35866132511,7,4,7,7_1,7_1,7_0_0 +20557,0,78.0,0.0,2,211,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120578,2,2,1,0,1,,400.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1119.8618727159,1000.0,24902.29535443236,0,5,0,1,100.0,3,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04015694078666567,24902.29535443236,7,4,7,7_1,7_1,7_0_1 +20558,2,57.0,0.0,8,111,900.0,,,75,43,0.0,0.0,,1389.0,0.0,,33,0,0,0,0,0,0,0,0,2,60.0,1,2002.0,6,120579,2,1,0,0,2,,352.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,104.905978357108,900.0,64364.36519037978,5,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02158026410874331,32182.18259518989,8,4,8,8_1,8_2,8_0_0 +20559,2,23.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,525.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,120580,2,1,0,0,1,,136.0,475.0,12,1.0,0.0,2.0,1.0,1.0,1,1,428.513211852396,0.0,22259.027805572186,0,1,2,3,40.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023585935764390158,22259.027805572186,6,3,6,6_0,6_2,6_0_1 +20560,1,69.0,80.0,2,221,730.0,1130.0,0.0,77,75,0.0,0.0,1244.7963966616046,1860.0,0.0,2145.3095741719617,43,0,0,0,0,0,0,0,0,0,,1,,2,120581,2,1,1,0,1,,470.0,530.0,41,0.0,5.0,3.0,2.0,1.5,2,2,2779.82544020553,730.0,27003.901471318717,7,5,2,3,85.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06887893595581128,18002.600980879146,4,2,4_1,4_1_1,4_1_1,4_0_1_1 +20561,2,36.0,0.0,2,111,500.0,600.0,0.0,0,37,0.0,0.0,852.6002716860306,1100.0,0.0,1139.1024287638734,10,2,2,1,1,1,2,2,2,3,60.0,2,,2,120582,1,2,0,0,2,,270.0,390.0,22,1.0,0.0,3.0,2.0,1.5,2,2,680.237955488138,500.0,41626.865798327344,0,1,2,3,65.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026425241941808657,27751.24386555156,7,4,7,7_0,7_3,7_0_1 +20562,0,45.0,0.0,1,111,0.0,0.0,0.0,81,67,0.0,0.0,0.0,500.0,692.7946126982605,0.0,71,2,2,1,1,1,2,2,2,0,,2,,1,120583,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1622.08032881909,0.0,1728.8090039004783,4,4,5,0,60.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.2892164483594877,823.2423828097516,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +20563,2,52.0,0.0,1,120,170.0,0.0,0.0,52,63,1012.4955369951375,0.0,289.8840923732504,1205.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120584,2,1,2,0,1,,303.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1804.02670219844,170.0,59820.76164571589,1,1,0,1,110.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02014350815418441,39880.507763810594,9,5,9,9_1,9_1,9_1_0 +20564,1,36.0,101.0,9,111,720.0,0.0,0.0,52,62,0.0,0.0,1227.744391227884,776.0,77.59299662220518,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,2004.0,6,120585,2,2,0,0,1,,197.0,347.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1061.8631732859,720.0,24481.77102079627,1,1,2,3,72.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.031697053262234154,13600.983900442372,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +20565,1,43.0,546.0,5,111,900.0,300.0,0.0,0,68,0.0,0.0,1534.680489034855,1200.0,0.0,569.5512143819367,20,0,0,0,0,0,0,0,0,1,10.0,2,,3,120586,2,1,0,1,1,648.0,0.0,607.0,32,1.0,0.0,3.0,4.0,2.5,4,1,278.661852484057,900.0,18717.577194138124,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06411086154760509,7487.03087765525,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +20566,2,56.0,0.0,1,111,520.0,750.0,0.0,55,63,0.0,0.0,886.7042825534718,1270.0,0.0,1423.8780359548418,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,120587,2,1,2,0,1,,156.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,105.871453392009,520.0,83728.33623323687,1,1,0,1,87.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01516810266553296,41864.168116618435,9,5,9,9_1,9_3,9_1_0 +20567,2,77.0,0.0,5,111,470.0,1720.0,0.0,0,77,0.0,0.0,801.4442553848687,2190.0,0.0,3265.426962456437,71,0,0,0,0,0,0,0,0,0,,2,,3,120588,2,2,0,0,1,,0.0,380.0,11,0.0,4.0,3.0,1.0,1.0,1,1,655.17700135996,470.0,23013.81135763323,0,5,2,3,35.0,6,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09516024816435371,23013.81135763323,6,3,6,6_0,6_2,6_0_0 +20568,2,63.0,0.0,1,111,410.0,2590.0,0.0,56,75,0.0,0.0,699.1322227825451,3000.0,0.0,4917.125484164054,50,0,0,0,0,0,0,0,0,0,,1,,1,120589,2,2,1,0,1,,220.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,886.622845239591,410.0,48185.91903445512,1,5,0,1,110.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.062258851965755056,24092.95951722756,6,3,6,6_1,6_2,6_1_0 +20569,2,44.0,0.0,6,300,400.0,1200.0,0.0,0,46,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,42,1,2,2,2,1,2,2,2,0,,1,,4,120590,1,1,2,0,1,,400.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,240.464920505751,400.0,44607.282502486385,0,1,0,1,90.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.035868582667209485,29738.188334990922,8,4,8,8_1,8_0,8_0_0 +20570,2,60.0,0.0,6,112,500.0,1900.0,0.0,0,54,0.0,0.0,852.6002716860306,2400.0,0.0,3607.1576910855993,60,0,0,0,0,0,0,0,0,0,,1,,4,120591,2,1,2,0,1,,140.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,211.428426427539,500.0,14656.30429864257,0,4,0,1,160.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1637520585747037,14656.30429864257,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +20571,2,59.0,0.0,6,111,1500.0,0.0,0.0,0,33,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,2,2,2,2,1,2,2,1,3,60.0,2,,4,120592,1,3,0,0,1,,0.0,739.0,32,2.0,0.0,3.0,2.0,1.5,2,2,1131.31917307892,1500.0,46214.31696979366,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03245747418447018,30809.544646529106,8,4,8,8_0,8_4,8_0_0 +20572,2,55.0,0.0,7,111,590.0,,,75,54,0.0,0.0,,678.0,121.93185183489385,,42,0,0,0,0,0,0,0,0,0,,1,,5,120593,2,1,0,0,2,,460.0,1000.0,42,2.0,2.0,4.0,4.0,2.5,4,4,116.32478945267378,590.0,48136.935405574644,5,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014084818534614942,19254.774162229856,5,3,5,5_1,5_2,5_0_0 +20573,2,80.0,0.0,9,111,750.0,,,74,72,0.0,0.0,,750.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,2008.0,6,120594,2,2,0,0,2,,323.0,1200.0,41,0.0,6.0,3.0,2.0,1.5,2,2,179.34754310064235,750.0,139206.17150189652,5,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005387692168445148,92804.11433459767,10,5,10,10_0,10_2,10_0_0 +20574,1,41.0,522.0,5,111,480.0,,,0,85,0.0,0.0,,750.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,3,120595,2,2,0,0,2,,500.0,550.0,31,1.0,0.0,3.0,7.0,3.1999999999999993,3,2,11.851637688132403,480.0,10291.053565755243,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07287883550579487,3215.954239298514,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20575,2,48.0,0.0,2,111,580.0,730.0,0.0,0,37,0.0,0.0,989.0163151557955,1310.0,0.0,1385.9079549960459,20,2,2,2,2,1,2,2,2,3,60.0,2,,2,120596,1,2,0,0,2,,150.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1760.83280557984,580.0,28529.542289586567,0,1,1,2,53.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04591731569693486,28529.542289586567,8,4,8,8_0,8_2,8_0_1 +20576,2,65.0,0.0,1,111,385.0,1946.0,0.0,78,75,0.0,0.0,656.5022091982436,2331.0,0.0,3694.4888772908294,50,0,0,0,0,0,0,0,0,0,,2,,1,120597,2,1,0,1,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,972.595519023793,385.0,46547.74071754078,5,5,0,1,120.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05007761846369484,31031.827145027186,8,4,8,8_0,8_2,8_1_0 +20577,2,70.0,0.0,5,111,360.0,,,0,78,0.0,0.0,,490.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,3,120598,2,1,0,0,2,,200.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,90.59713755746766,360.0,11369.0,0,5,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04309965696191398,11369.0,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +20579,1,70.0,81.0,2,111,180.0,130.0,0.0,0,78,0.0,0.0,306.936097806971,310.0,0.0,246.80552623217258,50,0,0,0,0,0,0,0,0,0,,2,,2,120600,2,2,0,1,1,578.0,0.0,284.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1206.74042354407,180.0,12190.633826465955,0,5,2,3,61.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025429358670997708,12190.633826465955,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +20580,2,48.0,0.0,1,112,1300.0,0.0,0.0,54,38,527.3414255183008,0.0,2216.7607063836795,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,120601,2,2,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,516.348723178324,1300.0,57285.831841954016,1,1,0,1,110.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03142138190409844,22914.332736781605,6,3,6,6_1,6_0,6_1_0 +20581,2,78.0,0.0,2,111,540.0,1560.0,0.0,75,74,0.0,0.0,920.8082934209131,2100.0,0.0,2961.666314786071,12,0,0,0,0,0,0,0,0,0,,1,,2,120602,2,1,2,0,2,,780.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,260.499328976778,540.0,68859.02571958155,5,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030497091384242742,45906.0171463877,10,5,10,10_1,10_4,10_0_1 +20582,2,47.0,0.0,6,111,370.0,0.0,0.0,0,52,0.0,781.353093436032,630.9242010476627,1000.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,120603,2,1,0,1,1,590.0,0.0,420.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1249.72269095252,370.0,21570.526269653434,0,1,2,3,66.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04635955504742846,16592.712515118026,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +20583,2,73.0,0.0,5,111,300.0,1000.0,0.0,77,72,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,3,120604,2,1,0,0,1,,200.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,916.651733815657,300.0,36233.26801070466,5,5,0,1,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.035878629540562874,24155.51200713644,6,3,6,6_0,6_4,6_0_0 +20584,2,73.0,0.0,1,111,1030.0,2336.0,0.0,72,75,0.0,0.0,1756.356559673223,3494.0,177.35542085075468,4434.9054559873475,31,0,0,0,0,0,0,0,0,0,,1,,1,120605,1,2,4,0,2,,407.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,258.630409982353,1030.0,45045.99667770346,5,5,0,1,90.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07756516133939678,30030.664451802306,8,4,8,8_1,8_2,8_1_0 +20586,2,78.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,336.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,120607,2,1,0,1,2,672.0,0.0,800.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1781.80487144972,0.0,56568.26942091989,5,5,2,3,77.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005939725634875823,37712.179613946595,9,5,9,9_0,9_3,9_0_1 +20587,2,68.0,0.0,1,111,0.0,,,0,86,0.0,0.0,,1031.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,1,120608,2,1,0,0,2,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,111.6179919376861,0.0,11413.148033642661,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09033441053782094,11413.148033642661,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +20588,0,79.0,0.0,7,112,429.0,0.0,0.0,71,71,1265.6194212439218,0.0,731.5310331066142,1829.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,120609,2,1,2,0,1,,166.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1528.23376235399,429.0,23540.232488835023,5,5,0,1,80.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07769676874973443,15693.488325890015,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +20589,2,25.0,0.0,7,111,1056.0,,,0,53,0.0,0.0,,1248.0,266.03313127613205,,71,0,0,0,0,0,0,0,0,0,,1,,5,120610,2,2,0,0,2,,156.0,,22,1.0,3.0,5.0,3.0,2.0,3,3,111.24027902570207,1056.0,28146.25370251871,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04433982629412315,14073.126851259354,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +20590,2,79.0,0.0,2,111,400.0,300.0,0.0,86,75,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,8,,2,120611,2,1,0,1,1,,160.0,330.0,41,0.0,1.0,3.0,2.0,1.5,2,2,370.489966558306,400.0,23178.253023229416,6,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.030200723035444254,15452.168682152944,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +20591,2,51.0,0.0,7,112,570.0,0.0,0.0,55,69,1265.6194212439218,0.0,971.9643097220749,1770.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,5,120612,2,1,1,0,1,,130.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,1125.79701377359,570.0,31697.77235726588,1,1,1,2,83.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055839886161409516,12679.108942906352,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +20592,2,46.0,0.0,7,111,1600.0,0.0,0.0,46,37,0.0,105.94618216081791,2728.320869395298,1680.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,75.0,1,,5,120613,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,515.080037781537,1600.0,82139.46665489534,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020453018121707946,32855.78666195813,8,4,8,8_1,8_4,8_0_0 +20593,2,82.0,0.0,1,112,1630.0,0.0,0.0,0,86,0.0,0.0,2779.4768856964597,1750.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120614,2,2,4,0,1,,130.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,563.771169931341,1630.0,19524.584188462693,0,5,0,1,90.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08963058998378545,19524.584188462693,5,3,5,5_1,5_0,5_1_0 +20594,2,56.0,0.0,6,221,757.0,0.0,0.0,52,62,0.0,0.0,1290.8368113326503,897.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,4,120615,2,1,2,0,1,,399.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,2091.39141846004,757.0,52637.77021805857,1,1,0,1,85.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017040995397108672,35091.846812039046,9,5,9,9_1,9_1,9_0_0 +20595,1,54.0,301.0,6,111,147.6,0.0,0.0,0,35,0.0,765.1963006565073,251.6876002017162,779.0,74.82181817141213,0.0,31,2,2,2,2,1,2,2,2,0,,1,,4,120616,1,3,3,0,1,,0.0,285.0,12,1.0,1.0,1.0,1.0,1.0,1,1,473.871666928893,147.6,7941.324790283512,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,1,0.09809446415705522,7941.324790283512,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +20596,2,62.0,0.0,9,120,1117.0,1511.0,0.0,77,74,0.0,66.2163638505112,1904.7090069465924,2678.0,0.0,2868.6396164370212,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,120617,2,1,1,0,1,,110.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1904.04002105595,1117.0,64001.34007628763,6,5,1,2,165.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04184287386495199,42667.560050858425,9,5,9,9_1,9_1,9_0_0 +20597,1,40.0,340.0,2,111,180.0,0.0,0.0,0,85,0.0,0.0,306.936097806971,180.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,120618,2,1,0,1,1,,0.0,530.0,31,0.0,0.0,4.0,3.0,2.0,3,1,493.255268393897,180.0,34294.570088023516,0,6,2,3,70.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.005248644305439487,17147.285044011758,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +20598,2,67.0,0.0,6,221,1300.0,0.0,0.0,75,74,0.0,331.081819252556,2216.7607063836795,1650.0,138.5589225396521,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,120619,1,3,3,0,1,,180.0,760.0,41,0.0,2.0,4.0,2.0,1.5,2,2,2076.95368152367,1300.0,37882.73225365591,7,5,2,3,100.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04355546450429972,25255.154835770605,7,4,7,7_1,7_1,7_0_0 +20599,2,64.0,0.0,6,111,224.0,,,85,11,0.0,0.0,,350.0,174.58424239996165,,71,2,2,1,2,2,2,2,1,0,,1,,4,120620,1,2,0,0,2,,202.0,,42,3.0,1.0,4.0,4.0,2.5,4,4,112.93105255141639,224.0,19552.894900709663,6,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.017900162701089184,7821.157960283866,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20600,1,20.0,333.0,1,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1238.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,120621,1,2,0,0,2,,0.0,390.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2144.15963225634,0.0,4883.204157913945,0,4,2,3,75.0,6,4,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.2535220646045774,3756.3108907030346,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +20601,2,39.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,1828.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120622,1,1,0,0,1,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2125.66976479243,0.0,30211.641289291903,1,1,2,3,55.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06050647770162389,20141.09419286127,5,3,5,5_0,5_2,5_0_1 +20602,2,59.0,0.0,9,111,690.0,,,43,37,0.0,264.8654554020448,,1016.0,174.58424239996165,,30,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,120623,2,1,0,0,1,,350.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,150.29046987831464,690.0,167970.05579817487,1,1,1,2,101.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006048697163146621,111980.03719878325,10,5,10,10_1,10_2,10_0_0 +20603,2,91.0,0.0,5,300,300.0,0.0,0.0,0,74,3743.0694383288987,0.0,511.56016301161833,3874.0,34.63973063491302,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,120624,2,1,2,0,1,,149.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1561.25064035424,300.0,9411.46917086354,0,5,0,1,180.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.41162542528357926,9411.46917086354,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +20604,1,42.0,129.0,7,211,600.0,,,85,68,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,120625,2,2,0,0,2,,140.0,280.0,42,1.0,0.0,2.0,7.0,3.1999999999999993,3,2,119.09349119056058,600.0,23005.43483731066,6,1,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.026080793701273943,7189.198386659583,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20605,2,77.0,0.0,8,111,1562.0,0.0,0.0,0,77,0.0,0.0,2663.5232487471594,1562.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,1999.0,6,120626,2,2,5,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,984.933519163423,1562.0,22180.222687585527,0,5,0,1,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07042309818080707,22180.222687585527,6,3,6,6_1,6_4,6_0_0 +20606,2,83.0,0.0,9,111,0.0,,,0,78,0.0,0.0,,47.0,65.12269359363648,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,120627,2,1,0,0,2,,0.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,86.01037157664008,0.0,13865.597534705808,0,5,0,1,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0033896844245160196,13865.597534705808,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +20607,2,81.0,0.0,7,111,432.0,,,0,78,0.0,0.0,,662.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,5,120628,1,2,0,0,2,,220.0,,21,2.0,0.0,4.0,3.0,2.0,3,3,89.96041202022626,432.0,17039.038297872343,0,5,0,1,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03885195798184594,8519.519148936171,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +20608,1,60.0,350.0,8,111,800.0,,,81,56,0.0,0.0,,950.0,207.83838380947813,,41,0,0,0,0,0,0,0,0,0,,2,2000.0,6,120629,1,2,0,0,2,,0.0,600.0,43,2.0,0.0,4.0,5.0,2.4,2,2,97.21455496333098,800.0,27878.272578098942,4,1,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03407671681732232,11615.946907541227,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +20609,2,74.0,0.0,1,400,86.0,,,0,86,0.0,0.0,,110.0,33.25414140951651,,71,0,0,0,0,0,0,0,0,0,,1,,1,120630,2,2,0,0,2,,387.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,24.904969795057205,86.0,29670.92971777794,0,5,0,1,3.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0037073324309784355,29670.92971777794,8,4,8,8_1,8_1,8_1_0 +20610,2,58.0,0.0,6,300,581.0,0.0,0.0,67,62,0.0,264.8654554020448,990.7215156991675,921.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,120631,2,1,2,0,1,,280.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1180.99093860183,581.0,50609.64528414187,1,1,0,1,107.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018198112135130652,33739.76352276125,9,5,9,9_1,9_0,9_0_0 +20611,2,58.0,0.0,7,111,0.0,1071.0,0.0,0,43,0.0,0.0,0.0,2799.0,0.0,2033.297835343514,33,0,0,0,0,0,0,0,0,0,,1,,5,120632,2,1,2,0,1,,447.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1546.88578389894,0.0,11630.990539112669,0,1,0,1,85.0,6,5,9,0,1,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.24065018285308798,11630.990539112669,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +20612,2,30.0,0.0,7,111,0.0,,,31,31,0.0,0.0,,66.0,91.44888887617039,,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,120633,2,1,0,0,2,,0.0,1100.0,43,2.0,0.0,4.0,3.0,1.8,2,2,181.0853418636199,0.0,113824.87205490033,1,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0005798381215677246,63236.04003050018,10,5,10,10_1,10_2,10_0_0 +20613,2,51.0,0.0,1,300,370.0,0.0,0.0,54,62,2109.365702073203,331.081819252556,630.9242010476627,2680.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120634,2,1,2,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,2361.22725569062,370.0,51607.17274161441,1,1,0,1,115.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05193076577587696,20642.869096645765,5,3,5,5_1,5_0,5_1_0 +20614,2,52.0,0.0,2,111,636.0,1100.0,0.0,46,46,0.0,264.8654554020448,1084.5075455846309,1936.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,120635,2,1,3,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.8,4,4,1617.82645005473,636.0,40530.58277590852,1,1,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04776639928184707,14475.208134253046,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +20615,2,42.0,0.0,6,111,1200.0,0.0,0.0,38,38,0.0,662.163638505112,2046.2406520464733,1700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,1,,4,120636,2,2,3,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,654.821324616594,1200.0,109758.43772613473,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01548855864951156,52265.922726730816,10,5,10,10_1,10_4,10_0_0 +20616,2,75.0,0.0,2,211,510.0,,,0,77,0.0,0.0,,614.0,144.10127944123818,,71,0,0,0,0,0,0,0,0,0,,1,,2,120637,2,1,0,0,2,,200.0,,21,0.0,7.0,3.0,2.0,1.5,2,2,51.86532049229594,510.0,44221.186454997296,0,5,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013884747317326078,29480.790969998197,8,4,8,8_1,8_2,8_0_1 +20617,2,59.0,0.0,7,120,850.0,,,0,21,0.0,0.0,,986.0,188.44013465392686,,41,0,0,0,0,0,0,0,0,0,,1,,5,120638,2,2,0,0,2,,400.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,139.65034641572862,850.0,3391.0,0,1,0,1,118.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2907696844588617,2260.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20618,2,41.0,0.0,5,112,1250.0,0.0,0.0,85,46,0.0,0.0,2131.5006792150766,1370.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,,3,120639,2,1,2,0,1,,450.0,0.0,42,1.0,0.0,5.0,4.0,2.1,2,2,977.105321959105,1250.0,49421.941070189205,6,1,2,3,123.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02772048143666234,23534.25765247105,6,3,6,6_1,6_0,6_0_0 +20619,2,47.0,0.0,2,111,0.0,0.0,1200.0,45,52,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,50,2,1,2,1,1,1,2,2,2,60.0,2,,2,120640,1,3,0,1,2,45.0,900.0,200.0,43,2.0,0.0,3.0,4.0,2.3,3,2,229.64702799312,0.0,43033.223223966066,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02788543153634134,18710.09705389829,5,3,5,5_0,5_4,5_0_1 +20620,2,82.0,0.0,8,111,704.0,0.0,0.0,77,75,0.0,0.0,1200.4611825339312,704.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2003.0,6,120641,2,1,0,0,1,,339.0,662.0,41,0.0,3.0,2.0,2.0,1.5,2,2,1914.53342647196,704.0,29797.64416376021,5,5,2,3,46.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023626028827346098,19865.096109173475,5,3,5,5_0,5_3,5_0_0 +20621,1,51.0,167.0,2,111,300.0,550.0,0.0,0,85,0.0,0.0,511.56016301161833,850.0,0.0,1044.177226366884,71,0,0,0,0,0,0,0,0,0,,2,,2,120642,2,2,0,1,1,,300.0,350.0,31,3.0,0.0,4.0,5.0,3.0,5,4,275.862357413754,300.0,5393.508214446348,0,6,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1575968676052631,1797.8360714821158,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20622,2,66.0,0.0,9,111,700.0,,,72,74,0.0,0.0,,766.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,120643,1,1,0,0,2,,240.0,1137.0,41,0.0,1.0,4.0,2.0,1.5,2,2,146.36581250576432,700.0,50051.2060590465,5,5,2,3,98.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015304326515056064,33367.470706030996,8,4,8,8_1,8_3,8_0_0 +20623,2,58.0,0.0,8,111,480.0,,,0,68,0.0,0.0,,580.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,120644,2,1,0,0,2,,50.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,124.58666716307083,480.0,6594.034203491006,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08795829413395172,6594.034203491006,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20624,2,39.0,0.0,7,112,317.0,553.0,0.0,85,34,0.0,0.0,540.5485722489434,870.0,0.0,1049.8727385107034,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,120645,2,1,0,0,1,,456.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,2618.07226252566,317.0,52676.57179603412,6,1,1,2,105.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016515881165704484,19509.841405938565,5,3,5,5_0,5_1,5_0_0 +20625,1,65.0,107.0,6,111,144.0,960.0,0.0,0,78,0.0,0.0,245.54887824557682,1104.0,0.0,1822.5638860221975,70,2,2,2,2,1,2,2,2,0,,2,,4,120646,2,3,0,0,1,,0.0,203.0,11,0.0,2.0,1.0,1.0,1.0,1,1,2415.0281771551,144.0,8492.344773459292,0,5,2,3,30.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.12999943236528466,8492.344773459292,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20626,1,32.0,392.0,9,211,0.0,,,0,85,0.0,0.0,,1395.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,120647,2,2,0,0,2,,462.0,690.0,31,0.0,0.0,4.0,3.0,1.6,1,1,177.38228219254026,0.0,13883.552123552123,0,6,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10047860861439886,8677.220077220076,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20627,2,33.0,0.0,7,111,0.0,101.0,0.0,85,47,0.0,0.0,0.0,1565.0,0.0,191.74890884191868,42,0,0,0,0,0,0,0,0,3,60.0,2,,5,120648,2,1,0,0,1,,0.0,379.0,42,1.0,0.0,1.0,3.0,1.8,2,2,936.41149975369,0.0,23408.298183732586,6,1,2,3,47.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06685663296478274,13004.610102073659,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +20628,1,44.0,413.0,7,111,498.0,,,63,68,0.0,0.0,,750.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,120649,1,3,0,0,2,,0.0,478.0,43,2.0,1.0,6.0,4.0,2.1,2,2,79.45025342464037,498.0,22838.758792655193,4,4,2,3,89.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03283891242991697,10875.5994250739,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +20629,2,78.0,0.0,2,211,261.0,0.0,0.0,0,77,791.0121382774512,0.0,445.057341820108,1071.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120650,2,1,0,1,1,775.0,100.0,250.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2909.53962419989,261.0,17138.99509215817,0,5,2,3,50.0,2,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06248907793258129,17138.99509215817,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +20630,2,56.0,0.0,9,120,408.0,0.0,0.0,0,43,0.0,0.0,695.7218216958009,408.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,2009.0,6,120651,2,1,1,0,1,,80.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,2319.05393937186,408.0,38307.165873714235,0,1,1,2,140.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010650748774916891,38307.165873714235,9,5,9,9_1,9_0,9_0_0 +20631,2,49.0,0.0,2,111,658.0,952.0,0.0,0,48,0.0,0.0,1122.0219575388162,1610.0,0.0,1807.375853638679,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,120652,2,2,3,0,1,,500.0,544.0,32,2.0,1.0,5.0,3.0,2.0,3,3,1896.50873861041,658.0,33542.7313041069,0,1,2,3,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04799847649266639,16771.36565205345,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +20632,2,46.0,0.0,9,112,560.0,0.0,0.0,56,63,0.0,264.8654554020448,954.9123042883542,808.0,66.50828281903301,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,120653,2,1,1,0,1,,240.0,,43,2.0,8.0,5.0,2.0,1.5,2,2,872.96118135589,560.0,24635.24966459537,4,1,1,2,127.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03279853100742956,16423.49977639691,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +20633,2,70.0,0.0,2,111,840.0,,,0,72,0.0,0.0,,1024.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,2,120654,2,1,0,0,2,,400.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,104.93335641765982,840.0,5110.0,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20039138943248533,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +20634,1,57.0,153.0,2,111,740.0,140.0,0.0,22,21,0.0,0.0,1261.8484020953254,880.0,0.0,265.7905667115705,60,0,0,0,0,0,0,0,0,0,,2,,2,120655,2,2,0,1,1,834.0,0.0,348.0,43,2.0,3.0,4.0,2.0,1.5,2,2,837.88537342359,740.0,13510.33118971061,1,1,2,3,96.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0651353388487029,9006.887459807074,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20635,2,78.0,0.0,2,111,300.0,980.0,0.0,0,74,0.0,0.0,511.56016301161833,8415.0,0.0,1860.5339669809932,12,0,0,0,0,0,0,0,0,0,,1,,2,120656,1,2,3,0,2,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1650.49845806706,300.0,39402.11141766053,0,5,0,1,75.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.2135672352885203,39402.11141766053,9,5,9,9_1,9_2,9_0_1 +20636,1,81.0,170.0,2,111,360.0,,,0,86,0.0,0.0,,567.0,286.8169696570798,,71,0,0,0,0,0,0,0,0,0,,2,,2,120657,2,1,0,0,2,,320.0,410.0,11,0.0,0.0,5.0,1.0,1.0,1,1,88.07842479519776,360.0,4037.0768025650664,0,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14044815784523623,4037.0768025650664,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20638,2,72.0,0.0,2,111,311.0,274.0,0.0,75,75,0.0,0.0,530.317368988711,585.0,0.0,520.1901091355022,20,0,0,0,0,0,0,0,0,0,,2,,2,120659,2,2,0,0,1,,0.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1184.79122326854,311.0,53675.82165190668,5,5,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010898761900540363,35783.881101271116,9,5,9,9_0,9_4,9_0_1 +20639,2,41.0,0.0,8,111,408.0,400.0,0.0,43,43,0.0,0.0,695.7218216958009,808.0,0.0,759.4016191759156,20,0,0,0,0,0,0,0,0,2,15.0,2,1999.0,6,120660,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1762.78960464344,408.0,47702.37187680803,1,1,0,1,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01693836109631341,22715.415179432395,6,3,6,6_0,6_3,6_0_0 +20640,2,52.0,0.0,2,111,352.0,880.0,0.0,52,62,0.0,0.0,600.2305912669656,1232.0,0.0,1670.6835621870143,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,120661,2,1,0,0,1,,0.0,359.0,43,3.0,1.0,5.0,3.0,2.0,3,3,528.412264246642,352.0,49703.82991746887,1,1,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02478682230415009,24851.914958734436,7,4,7,7_0,7_3,7_0_1 +20641,2,35.0,0.0,2,112,400.0,850.0,0.0,46,37,0.0,0.0,682.0802173488245,1250.0,0.0,1613.7284407488207,31,0,0,0,0,0,0,0,0,2,40.0,1,,2,120662,2,1,2,0,1,,632.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,628.583279728483,400.0,77666.61456404191,1,1,1,2,111.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016094431397795532,36984.10217335329,9,5,9,9_1,9_1,9_0_1 +20642,1,34.0,395.0,9,120,1100.0,0.0,0.0,0,52,0.0,331.081819252556,1875.7205977092674,1350.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,120663,2,2,3,0,2,,800.0,425.0,32,1.0,0.0,5.0,3.0,1.6,1,1,753.832975165967,1100.0,9134.406818620875,0,4,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.1477928481626161,5709.004261638047,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +20643,2,54.0,0.0,1,112,500.0,0.0,0.0,0,77,0.0,662.163638505112,852.6002716860306,1045.0,62.351515142843446,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,120664,2,2,4,0,1,,220.0,,31,0.0,0.0,3.0,2.0,1.5,2,1,1540.42542864375,500.0,11121.81864023938,0,7,0,1,90.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.09395945337744763,7414.545760159587,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +20644,2,91.0,0.0,1,111,360.0,2800.0,0.0,0,77,0.0,0.0,613.872195613942,3160.0,0.0,5315.811334231409,70,0,0,0,0,0,0,0,0,0,,1,,1,120665,2,1,2,0,1,,400.0,,11,0.0,5.0,10.0,1.0,1.0,1,1,1883.22250420698,360.0,36809.60073682802,0,5,0,1,120.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08584716858497242,36809.60073682802,9,5,9,9_1,9_2,9_1_0 +20645,2,82.0,0.0,1,111,245.0,804.0,0.0,0,77,0.0,0.0,417.774133126155,1049.0,0.0,1526.3972545435904,60,2,2,2,1,1,2,2,2,0,,2,,1,120666,2,2,0,0,1,,396.0,419.0,11,0.0,1.0,3.0,1.0,1.0,1,1,332.781873504903,245.0,19789.439426574456,0,5,2,3,75.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.053008070485884476,19789.439426574456,5,3,5,5_0,5_3,5_1_0 +20646,2,51.0,0.0,9,111,215.0,475.0,0.0,0,46,0.0,0.0,366.61811682499314,690.0,0.0,901.7894227713998,42,0,0,0,0,0,0,0,0,2,5.0,2,2004.0,6,120667,2,1,0,0,1,,142.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2639.09292290085,215.0,25330.6969138512,0,1,1,2,67.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027239676916378002,25330.6969138512,7,4,7,7_0,7_3,7_0_0 +20647,0,87.0,0.0,1,112,232.0,1566.0,0.0,0,77,0.0,0.0,395.6065260623182,1798.0,0.0,2973.0573390737095,70,0,0,0,0,0,0,0,0,0,,1,,1,120668,2,1,2,0,1,,108.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1280.26037333896,232.0,20887.72601617743,0,5,0,1,100.0,8,1,8,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08607926006916497,20887.72601617743,5,3,5,5_1,5_1,5_1_0 +20648,1,38.0,205.0,9,111,684.0,,,0,56,0.0,0.0,,707.0,31.86855218411998,,44,0,0,0,0,0,0,0,0,2,60.0,2,2011.0,6,120669,2,1,0,0,1,,366.0,788.0,32,1.0,0.0,3.0,3.0,1.6,1,1,136.91305833075566,684.0,30330.868574994493,0,1,2,3,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02330958634606554,18956.792859371555,5,3,5,5_0,5_3,5_0_0 +20649,2,70.0,0.0,2,111,1050.0,0.0,0.0,90,74,0.0,0.0,1790.4605705406643,1170.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,120670,2,2,1,0,1,,360.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1026.81166269133,1050.0,43301.683936738584,5,5,0,1,113.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02701973442209099,28867.789291159057,8,4,8,8_1,8_4,8_0_1 +20650,2,25.0,0.0,9,111,256.0,,,55,46,0.0,0.0,,256.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,120671,2,1,0,0,1,,240.0,497.0,43,2.0,0.0,2.0,2.0,1.5,2,2,140.41039000119193,256.0,41054.444570666536,1,1,2,3,33.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00623562205449766,27369.62971377769,7,4,7,7_0,7_2,7_0_0 +20651,2,57.0,0.0,6,111,860.0,0.0,0.0,52,63,0.0,595.9472746546007,1466.4724672999725,1460.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,120672,2,1,2,0,1,,570.0,,43,2.0,4.0,4.0,3.0,2.0,3,2,261.042459448123,860.0,55604.20025524216,1,1,0,1,102.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026257009242073515,27802.10012762108,7,4,7,7_1,7_3,7_0_0 +20652,2,66.0,0.0,8,112,200.0,,,0,77,0.0,0.0,,280.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,120673,2,1,0,0,2,,360.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,83.58402174014486,200.0,12117.733333333334,0,5,0,1,51.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023106631603270138,12117.733333333334,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +20653,2,70.0,0.0,6,120,2500.0,0.0,0.0,75,74,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,120674,2,1,2,0,1,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1210.87152533761,2500.0,83336.58485615648,5,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02999882949745466,55557.723237437654,10,5,10,10_1,10_0,10_0_0 +20654,0,59.0,0.0,1,300,680.0,0.0,0.0,0,64,0.0,132.4327277010224,1159.5363694930015,815.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,2,2.0,1,,1,120675,1,3,3,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1536.97909877193,680.0,18424.44187385952,0,1,5,0,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04423471851032387,18424.44187385952,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +20655,0,32.0,0.0,7,112,3000.0,0.0,0.0,42,37,0.0,662.163638505112,5115.6016301161835,3530.0,41.567676761895626,0.0,43,2,2,2,2,1,2,2,2,2,10.0,1,,5,120676,1,1,2,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2012.66571540759,3000.0,62699.36561445164,1,1,5,0,150.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.05630041014619718,34832.98089691758,9,5,9,9_1,9_0,9_0_0 +20656,2,49.0,0.0,2,111,240.0,70.0,0.0,0,90,0.0,0.0,409.2481304092947,310.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,0,,2,,2,120677,1,2,0,1,2,,0.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,1815.1805949475,240.0,40999.5441354311,0,1,1,2,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.007561059678517336,27333.02942362073,7,4,7,7_0,7_3,7_0_1 +20657,2,51.0,0.0,7,400,700.0,0.0,0.0,54,46,0.0,105.94618216081791,1193.6403803604428,2180.0,1939.8249155551293,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,5,120678,2,1,2,0,1,,634.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,1120.00694821591,700.0,106888.50237325848,1,1,0,1,160.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020395084144666578,42755.400949303395,9,5,9,9_1,9_0,9_0_0 +20658,1,49.0,429.0,2,111,900.0,0.0,0.0,85,68,0.0,0.0,1534.680489034855,900.0,0.0,0.0,71,2,2,2,2,2,2,1,2,2,45.0,2,,2,120679,1,3,0,1,2,1432.0,0.0,637.0,42,1.0,2.0,5.0,7.0,2.9999999999999996,2,2,316.019447185993,900.0,50290.30607747506,6,1,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.017896093108152874,16763.435359158357,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +20659,2,76.0,0.0,1,211,360.0,0.0,0.0,0,78,1898.4291318658827,0.0,613.872195613942,2250.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120680,2,2,1,0,1,,298.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1829.88223086676,360.0,29170.98062216452,0,5,0,1,95.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07713144885813056,29170.98062216452,8,4,8,8_1,8_1,8_1_0 +20660,2,30.0,0.0,1,120,800.0,0.0,0.0,52,63,2109.365702073203,317.83854648245375,1364.160434697649,3040.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,120681,2,2,1,0,1,,480.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1019.52190453517,800.0,36645.5286193716,1,1,1,2,270.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08295691492339373,20358.627010762,5,3,5,5_1,5_0,5_1_0 +20661,2,53.0,0.0,7,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,4326.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,1.0,2,,5,120682,2,1,0,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,855.550370870563,0.0,37229.86030307215,0,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11619705163500238,37229.86030307215,9,5,9,9_0,9_3,9_0_0 +20662,2,52.0,0.0,1,111,921.0,0.0,0.0,0,37,0.0,0.0,1570.4897004456684,921.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,1,120683,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,760.586511410611,921.0,47400.45043559447,0,1,0,1,63.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019430195104399105,31600.30029039631,8,4,8,8_0,8_4,8_1_0 +20663,1,61.0,307.0,2,111,1100.0,300.0,0.0,0,55,0.0,0.0,1875.7205977092674,1400.0,0.0,569.5512143819367,71,2,2,2,2,1,2,2,2,0,,2,,2,120684,1,3,0,1,1,640.0,0.0,329.0,11,0.0,8.0,4.0,1.0,1.0,1,1,925.654383865666,1100.0,9129.748065977616,0,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.1533448666800739,9129.748065977616,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +20664,2,82.0,0.0,2,111,300.0,0.0,0.0,0,78,2742.175412695164,132.4327277010224,511.56016301161833,3120.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120685,2,1,1,0,2,,420.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1034.30943395531,300.0,15220.881184025193,0,5,0,1,180.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20498156199225448,15220.881184025193,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +20665,2,65.0,0.0,2,111,520.0,1356.0,0.0,77,78,0.0,0.0,886.7042825534718,1988.0,155.18599324441035,2574.371489006354,50,0,0,0,0,0,0,0,0,0,,2,,2,120686,2,3,0,1,1,798.0,600.0,175.0,41,0.0,3.0,4.0,2.0,1.5,2,2,2370.26760833257,520.0,20166.30982675719,5,5,2,3,90.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09858025672908532,13444.20655117146,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +20666,1,45.0,222.0,7,300,900.0,0.0,0.0,0,52,0.0,0.0,1534.680489034855,933.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,120687,2,1,2,0,1,,150.0,380.0,12,1.0,4.0,3.0,1.0,1.0,1,1,1531.46037987701,900.0,8018.24770879279,0,4,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.1163595880153309,8018.24770879279,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +20667,1,32.0,380.0,2,111,0.0,20.0,0.0,85,47,0.0,0.0,0.0,948.0,0.0,37.970080958795776,50,0,0,0,0,0,0,0,0,0,,2,,2,120688,2,2,0,1,2,265.0,0.0,343.0,42,1.0,0.0,3.0,4.0,2.1,2,2,368.212680141707,0.0,12038.086137483167,7,1,2,3,65.0,9,7,9,0,1,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07875005953381563,5732.42197023008,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20668,2,61.0,0.0,2,111,220.0,460.0,0.0,0,56,0.0,0.0,375.14411954185346,680.0,0.0,873.3118620523029,50,0,0,0,0,0,0,0,0,0,,2,,2,120689,1,1,0,0,2,,0.0,431.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1711.47155656409,220.0,15272.072844936341,0,1,2,3,63.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.044525717425808575,15272.072844936341,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +20669,2,91.0,0.0,1,111,1200.0,0.0,0.0,0,75,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,120690,2,2,0,0,1,,0.0,600.0,11,0.0,0.0,1.0,1.0,1.0,1,1,883.300559902186,1200.0,30023.7129142947,0,5,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03996840775241571,30023.7129142947,8,4,8,8_0,8_4,8_1_0 +20670,2,56.0,0.0,2,111,286.0,234.0,0.0,0,37,0.0,0.0,487.6873554044095,520.0,0.0,444.24994721791063,42,0,0,0,0,0,0,0,0,3,40.0,2,,2,120691,1,3,0,1,1,448.0,0.0,653.0,32,1.0,0.0,3.0,2.0,1.5,2,2,904.49955267101,286.0,38184.0,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013618269432222921,25456.0,7,4,7,7_0,7_4,7_0_1 +20671,1,46.0,170.0,2,111,900.0,0.0,0.0,68,63,0.0,0.0,1534.680489034855,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120692,2,1,0,1,1,,0.0,650.0,43,2.0,2.0,3.0,5.0,2.4,2,2,148.892012111473,900.0,47426.02894385835,1,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018976920902768302,19760.845393274314,5,3,5,5_0,5_4,5_0_1 +20672,2,43.0,0.0,2,111,1400.0,2200.0,0.0,31,31,0.0,0.0,2387.2807607208856,3600.0,0.0,4176.708905467536,10,0,0,0,0,0,0,0,0,0,,1,,2,120693,2,1,2,0,1,,720.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,928.549804287325,1400.0,50667.6393804996,1,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07105126751544553,28148.688544721997,8,4,8,8_1,8_4,8_0_1 +20673,2,51.0,0.0,2,111,750.0,500.0,0.0,85,65,0.0,0.0,1278.9004075290459,1250.0,0.0,949.2520239698945,71,2,1,2,2,1,2,2,2,3,75.0,2,,2,120694,2,2,0,1,1,684.0,0.0,278.0,42,1.0,0.0,3.0,5.0,2.4,2,2,321.29669390842,750.0,22618.886605174972,6,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.05526355128877178,9424.536085489572,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +20674,2,67.0,0.0,7,111,1194.0,60.0,0.0,77,75,0.0,0.0,2036.0094487862411,1254.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,0,,1,,5,120695,2,1,1,0,1,,419.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1189.86587023959,1194.0,38971.70875299882,5,5,0,1,96.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03217718801984802,25981.13916866588,7,4,7,7_1,7_2,7_0_0 +20675,2,24.0,0.0,7,111,564.0,120.0,0.0,48,43,0.0,0.0,961.7331064618425,684.0,0.0,227.8204857527747,43,2,2,2,1,1,2,2,2,3,45.0,2,,5,120696,2,1,0,1,1,347.0,0.0,524.0,43,2.0,0.0,2.0,3.0,1.8,2,2,746.806089140124,564.0,18412.23620257582,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03714920841088875,10229.02011254212,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +20676,2,61.0,0.0,1,112,700.0,2000.0,0.0,74,74,0.0,0.0,1193.6403803604428,2700.0,0.0,3797.008095879578,41,0,0,0,0,0,0,0,0,0,,1,,1,120697,1,2,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,704.020333209226,700.0,92415.74413164551,5,5,0,1,100.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029215801110186065,61610.49608776367,10,5,10,10_1,10_0,10_1_0 +20677,0,70.0,0.0,5,111,120.0,,,0,77,0.0,0.0,,162.0,58.19474746665388,,41,0,0,0,0,0,0,0,0,0,,1,,3,120698,2,2,0,0,2,,400.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,122.1785541504334,120.0,33928.11671236094,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004774800834759537,33928.11671236094,9,5,9,9_1,9_2,9_0_0 +20678,2,28.0,0.0,2,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1320.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120699,2,2,0,0,1,,296.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,404.446514281452,0.0,18395.237659251285,0,4,2,3,40.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0717577029691785,18395.237659251285,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +20679,2,52.0,0.0,2,111,360.0,0.0,0.0,34,38,0.0,0.0,613.872195613942,793.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,,2,120700,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,744.664703187183,360.0,126222.78000823516,1,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006282542659480818,84148.5200054901,10,5,10,10_0,10_4,10_0_1 +20680,2,42.0,0.0,2,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,1410.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,120701,2,2,5,0,1,,224.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,1382.42070907474,0.0,49696.84131201412,4,1,1,2,88.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028372024514546665,23665.16252953053,6,3,6,6_1,6_3,6_0_1 +20681,2,49.0,0.0,1,111,400.0,0.0,0.0,0,46,0.0,0.0,682.0802173488245,400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,120702,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1318.52303712939,400.0,6091.90808836508,0,4,0,1,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06566087245537387,6091.90808836508,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +20682,2,29.0,0.0,2,111,500.0,1130.0,0.0,43,47,0.0,0.0,852.6002716860306,1630.0,0.0,2145.3095741719617,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,120703,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,423.403900474613,500.0,24328.57504886171,1,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06699940283088075,13515.875027145394,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +20683,1,24.0,357.0,5,111,0.0,,,0,81,0.0,0.0,,709.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,120704,1,2,0,0,2,,234.0,580.0,32,1.0,0.0,4.0,2.0,1.3,1,1,135.0946640807589,0.0,10836.577132013233,0,4,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06542656332925312,8335.828563087103,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20684,2,81.0,0.0,2,111,380.0,0.0,0.0,78,75,0.0,1966.6260063601826,647.9762064813832,2115.0,346.39730634913025,0.0,71,2,2,2,1,1,2,2,2,0,,1,,2,120705,2,1,2,0,2,,192.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,231.64796746612,380.0,25724.718024178965,5,5,0,1,88.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.08221664462996588,17149.81201611931,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +20685,2,73.0,0.0,2,211,800.0,0.0,0.0,38,74,1582.0242765549024,0.0,1364.160434697649,2300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120706,2,1,1,0,1,,0.0,,42,1.0,2.0,6.0,4.0,2.3,3,3,925.132494851624,800.0,64304.714366316344,4,5,0,1,141.0,1,3,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03576720653633399,27958.571463615805,7,4,7,7_1,7_1,7_0_1 +20686,0,67.0,0.0,8,120,290.0,0.0,0.0,72,77,0.0,993.245457757668,494.50815757789775,1240.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,120707,2,3,4,0,1,,210.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,500.687097590914,290.0,16568.24635318862,5,5,5,0,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07484195813888037,11045.497568792414,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +20687,2,48.0,0.0,7,111,1800.0,0.0,0.0,37,37,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,1,,5,120708,2,1,2,0,1,,612.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,676.623980496103,1800.0,141389.2008098203,1,1,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012730816707996978,50496.1431463644,10,5,10,10_1,10_4,10_0_0 +20688,2,62.0,0.0,1,120,600.0,0.0,0.0,71,71,2109.365702073203,0.0,1023.1203260232367,2780.0,249.40606057137379,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,120709,2,1,1,0,1,,310.0,,41,1.0,1.0,8.0,5.0,2.5999999999999996,3,3,994.866700971152,600.0,52462.212793501014,5,5,0,1,200.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.052990521214621444,20177.774151346548,5,3,5,5_1,5_0,5_1_0 +20689,1,57.0,19.0,7,111,300.0,900.0,0.0,63,63,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,12.0,2,,5,120710,2,1,0,0,1,,300.0,375.0,43,2.0,1.0,3.0,2.0,1.5,2,2,382.339585068525,300.0,28735.169316479278,1,1,2,3,60.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04176067267200038,19156.779544319517,5,3,5,5_0,5_2,5_0_0 +20690,2,41.0,0.0,1,111,700.0,0.0,0.0,42,34,1265.6194212439218,0.0,1193.6403803604428,1900.0,0.0,0.0,20,2,2,1,2,1,2,2,2,1,10.0,1,,1,120711,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,670.830195878978,700.0,65724.68501843022,1,1,1,2,90.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.028908468704980643,31297.46905639534,8,4,8,8_1,8_4,8_1_0 +20691,0,24.0,0.0,2,111,0.0,,,42,55,0.0,0.0,,368.0,0.0,,20,0,0,0,0,0,0,0,0,1,2.0,1,,2,120712,2,2,0,0,2,,0.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,123.4423769497848,0.0,34115.95363039365,1,1,5,0,20.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01078674229619516,22743.969086929097,6,3,6,6_1,6_3,6_0_1 +20692,2,62.0,0.0,6,111,5000.0,0.0,0.0,0,77,0.0,0.0,8526.002716860306,5000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,120713,2,1,2,0,1,,516.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1059.42952133686,5000.0,55449.2921742403,0,5,0,1,250.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09017247658073471,55449.2921742403,10,5,10,10_1,10_4,10_0_0 +20693,2,55.0,0.0,2,111,590.0,1800.0,0.0,85,53,0.0,0.0,1006.0683205895161,2390.0,0.0,3417.30728629162,60,0,0,0,0,0,0,0,0,1,10.0,1,,2,120714,2,1,1,0,1,,708.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,717.365639670733,590.0,57665.20568147424,6,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041446136743215005,28832.60284073712,8,4,8,8_1,8_4,8_0_1 +20694,1,30.0,190.0,6,111,900.0,,,0,56,0.0,0.0,,1038.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,2,,4,120715,2,1,0,0,2,,442.0,364.0,32,2.0,0.0,3.0,5.0,2.4,2,2,45.422528380469075,900.0,21551.84077630759,0,1,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04816293934117666,8979.933656794828,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20695,2,40.0,0.0,7,111,202.0,750.0,0.0,0,46,0.0,0.0,344.45050976115635,952.0,0.0,1423.8780359548418,30,0,0,0,0,0,0,0,0,3,30.0,2,,5,120716,2,2,0,0,1,,0.0,349.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2639.19229925031,202.0,25220.330744918825,0,1,2,3,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03774732415798317,25220.330744918825,7,4,7,7_0,7_3,7_0_0 +20696,2,33.0,0.0,5,112,1440.0,0.0,0.0,0,38,0.0,0.0,2455.488782455768,1440.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,8.0,1,,3,120717,2,2,2,0,1,,104.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,1927.73739982665,1440.0,35322.13619089551,0,1,1,2,92.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04076763625556624,22076.33511930969,6,3,6,6_1,6_0,6_0_0 +20697,2,61.0,0.0,6,111,1070.0,0.0,0.0,45,37,0.0,0.0,1824.5645814081054,1070.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,2,,4,120718,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1868.42745211011,1070.0,82384.12614462245,1,1,0,1,82.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01298793894010179,54922.75076308163,10,5,10,10_0,10_2,10_0_0 +20698,1,42.0,405.0,2,111,1230.0,0.0,0.0,84,63,490.4275257320197,0.0,2097.396668347635,1725.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120719,2,2,1,0,1,,0.0,909.0,42,1.0,0.0,6.0,8.0,3.499999999999999,3,2,1393.37251307009,1230.0,36079.09520617689,3,4,2,3,140.0,6,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04781162027878883,10308.312916050543,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +20699,2,66.0,0.0,2,111,5200.0,0.0,0.0,74,21,0.0,0.0,8867.042825534718,5200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,120720,2,1,2,0,1,,517.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,604.493509802176,5200.0,103720.93846723638,5,1,0,1,180.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05013452516766987,69147.29231149092,10,5,10,10_1,10_4,10_0_1 +20700,2,61.0,0.0,1,300,530.0,0.0,0.0,64,78,0.0,264.8654554020448,903.7562879871924,790.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120721,2,2,2,0,1,,75.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,708.051733997143,530.0,28366.131636403363,1,5,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027850114006598002,18910.754424268907,5,3,5,5_1,5_0,5_1_0 +20701,2,60.0,0.0,7,111,300.0,,,47,34,0.0,0.0,,404.0,144.10127944123818,,10,0,0,0,0,0,0,0,0,2,3.0,1,,5,120722,1,2,0,0,2,,300.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,54.99307606439318,300.0,140228.8962919739,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0028810039206100717,93485.93086131594,10,5,10,10_1,10_2,10_0_0 +20702,2,57.0,0.0,2,111,250.0,0.0,0.0,0,56,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,120723,2,1,0,1,1,603.0,0.0,304.0,12,1.0,0.0,2.0,1.0,1.0,1,1,286.605921972908,250.0,12691.687004349133,0,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019697932978833394,12691.687004349133,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +20703,1,46.0,393.0,8,111,360.0,,,0,56,0.0,0.0,,622.0,363.0243770538885,,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,120724,1,2,0,0,2,,280.0,415.0,32,1.0,3.0,4.0,4.0,2.1,2,1,76.44569774955478,360.0,13194.529011076034,0,4,2,3,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04714075049422889,6283.109052893349,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20704,1,44.0,459.0,5,112,600.0,800.0,0.0,0,85,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,3,120725,2,1,1,0,1,,120.0,468.0,31,1.0,1.0,4.0,4.0,2.3,3,2,1438.42119006505,600.0,16318.838357552711,0,6,2,3,72.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08579042020794635,7095.1471119794405,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20705,2,88.0,0.0,1,300,381.0,0.0,0.0,0,77,0.0,1781.2201875787512,649.6814070247553,1841.0,159.34276092059991,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,120726,2,2,3,0,2,,370.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,1184.83184978009,381.0,20300.345001694917,0,5,0,1,80.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.09068811391364487,13533.563334463279,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +20706,2,42.0,0.0,2,111,750.0,0.0,0.0,90,52,1054.6828510366015,0.0,1278.9004075290459,1750.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,120727,2,1,2,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,369.272981446116,750.0,44432.0177147627,1,1,1,2,90.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039386012384905855,21158.10367369652,5,3,5,5_1,5_3,5_0_1 +20707,2,44.0,0.0,6,111,280.0,0.0,0.0,0,42,0.0,0.0,477.4561521441771,280.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,120728,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1625.4432255785,280.0,26627.313349371136,0,1,1,2,46.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010515518269762384,26627.313349371136,7,4,7,7_0,7_3,7_0_0 +20708,0,38.0,0.0,8,111,1900.0,,,52,21,0.0,0.0,,2089.0,261.87636359994247,,50,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,120729,2,1,0,0,2,,1800.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,78.9003713645804,1900.0,45252.47438116035,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046163221537996145,18855.19765881681,5,3,5,5_1,5_3,5_0_0 +20709,2,72.0,0.0,5,111,500.0,,,56,78,0.0,0.0,,740.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,3,120730,1,1,0,0,2,,324.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,91.9141399889666,500.0,38195.31410025608,5,5,0,1,88.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019374104322263937,25463.542733504055,7,4,7,7_1,7_2,7_0_0 +20710,2,65.0,0.0,5,111,1320.0,0.0,0.0,0,22,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,120731,2,2,1,0,1,,260.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,939.501279265189,1320.0,23023.16464026569,0,1,0,1,85.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05733356037820381,23023.16464026569,6,3,6,6_1,6_2,6_0_0 +20711,2,66.0,0.0,5,111,2400.0,0.0,0.0,56,77,0.0,0.0,4092.4813040929466,2887.0,346.39730634913025,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,120732,2,1,2,0,1,,600.0,,42,1.0,3.0,5.0,4.0,2.5,4,4,286.837478937385,2400.0,83852.04050928428,1,5,0,1,85.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034429692855003864,33540.816203713715,8,4,8,8_1,8_3,8_0_0 +20712,2,95.0,0.0,1,111,351.0,0.0,0.0,0,86,0.0,0.0,598.5253907235934,351.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,120733,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,676.117382498129,351.0,29190.024935773767,0,6,0,1,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012024655709349285,29190.024935773767,8,4,8,8_0,8_4,8_1_0 +20713,2,30.0,0.0,9,112,500.0,829.0,0.0,65,47,0.0,0.0,852.6002716860306,1329.0,0.0,1573.859855742085,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,120734,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,343.828974076152,500.0,32808.1068707713,1,1,1,2,130.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04050828062816402,21872.071247180866,6,3,6,6_1,6_1,6_0_0 +20714,2,47.0,0.0,2,111,1380.0,0.0,0.0,52,67,1371.087706347582,0.0,2353.1767498534446,2770.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,120735,2,1,2,0,1,,0.0,191.0,43,2.0,0.0,4.0,4.0,2.5,4,2,1468.47733384535,1380.0,52296.28290858204,1,1,2,3,102.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.052967435655841444,20918.513163432817,5,3,5,5_1,5_3,5_0_1 +20715,1,30.0,377.0,6,111,940.0,0.0,0.0,85,65,0.0,0.0,1602.8885107697374,940.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,2,,4,120736,1,3,0,0,1,,360.0,380.0,42,1.0,0.0,3.0,3.0,1.8,2,2,377.611398937057,940.0,9447.253198699533,6,4,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09949982076582813,5248.4739992775185,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20716,1,38.0,210.0,5,111,750.0,130.0,0.0,85,63,0.0,0.0,1278.9004075290459,880.0,0.0,246.80552623217258,71,0,0,0,0,0,0,0,0,3,40.0,2,,3,120737,2,2,0,1,1,1330.0,0.0,750.0,42,1.0,0.0,5.0,5.0,2.4,2,2,832.101146685358,750.0,21863.89506541764,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.040249004002580746,9109.95627725735,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +20717,2,42.0,0.0,7,111,600.0,,,56,62,0.0,0.0,,852.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,1,15.0,1,,5,120738,2,1,0,0,2,,360.0,,43,2.0,1.0,5.0,8.0,3.499999999999999,3,2,113.37136621145451,600.0,14182.523804150293,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06007393407305092,4052.149658328656,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20718,2,58.0,0.0,5,111,260.0,61.0,0.0,0,90,0.0,0.0,443.3521412767359,321.0,0.0,115.80874692432712,70,2,1,2,2,1,2,2,2,2,10.0,2,,3,120739,1,1,0,1,2,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1328.05193798931,260.0,24313.052578420942,0,1,1,2,81.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.013202784757883659,24313.052578420942,7,4,7,7_0,7_2,7_0_0 +20719,2,55.0,0.0,6,111,1035.0,0.0,0.0,43,54,0.0,344.3250920226582,1764.8825623900834,1330.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,120740,2,1,1,0,1,,446.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,985.495648473792,1035.0,55705.50777221532,1,1,0,1,90.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023875556532730765,27852.75388610766,7,4,7,7_1,7_3,7_0_0 +20720,2,77.0,0.0,1,111,1493.0,0.0,0.0,0,78,0.0,0.0,2545.8644112544875,1493.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120741,2,1,2,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1384.00375141097,1493.0,14926.2812933388,0,5,0,1,110.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10002491381870754,14926.2812933388,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +20721,2,34.0,0.0,9,221,850.0,0.0,0.0,67,62,0.0,0.0,1449.420461866252,936.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,120742,2,1,1,0,1,,276.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2255.40448810919,850.0,44863.58911427127,1,1,1,2,106.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020863243857194097,21363.6138639387,6,3,6,6_1,6_1,6_0_0 +20722,2,41.0,0.0,9,111,600.0,,,65,52,0.0,0.0,,668.0,94.22006732696343,,42,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,120743,2,2,0,0,1,,200.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,256.7578897203703,600.0,59614.58414537564,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011205311746719907,24839.410060573184,7,4,7,7_1,7_2,7_0_0 +20723,2,70.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,464.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,120744,1,3,0,1,2,,0.0,,41,0.0,1.0,4.0,3.0,2.0,3,3,892.175747033195,0.0,117084.93662186639,5,5,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003962935057124546,58542.468310933196,10,5,10,10_0,10_4,10_0_1 +20724,2,49.0,0.0,1,111,725.0,634.0,0.0,47,85,0.0,0.0,1236.2703939447445,1359.0,0.0,1203.6515663938262,60,0,0,0,0,0,0,0,0,0,,1,,1,120745,2,2,1,0,1,,410.0,,42,1.0,2.0,5.0,3.0,2.0,3,2,1145.91699531558,725.0,39381.88313024597,1,6,0,1,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03450825333835457,19690.941565122987,5,3,5,5_1,5_3,5_1_0 +20725,2,75.0,0.0,5,111,585.0,810.0,0.0,0,74,0.0,0.0,997.5423178726558,1395.0,0.0,1537.788278831229,20,0,0,0,0,0,0,0,0,0,,2,,3,120746,2,1,0,0,2,,0.0,595.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1229.19803686189,585.0,25879.127210040057,0,5,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05390444541185285,25879.127210040057,7,4,7,7_0,7_4,7_0_0 +20726,2,76.0,0.0,1,300,610.0,0.0,0.0,0,71,0.0,0.0,1040.1723314569574,674.0,88.67771042537734,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120747,2,1,2,0,1,,110.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,961.265227444849,610.0,10230.29186811591,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06588277330587335,10230.29186811591,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +20727,2,71.0,0.0,6,111,1140.0,0.0,0.0,74,74,0.0,264.8654554020448,1943.9286194441497,1340.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,120748,2,1,2,0,2,,300.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1475.91349037691,1140.0,41925.484591959255,5,5,0,1,98.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03196146718497307,27950.32306130617,7,4,7,7_1,7_3,7_0_0 +20728,2,79.0,0.0,5,111,175.0,90.0,0.0,77,77,0.0,0.0,298.4100950901107,265.0,0.0,170.865364314581,71,0,0,0,0,0,0,0,0,0,,2,,3,120749,1,1,0,1,1,920.0,289.0,235.0,41,0.0,6.0,3.0,2.0,1.5,2,2,109.163480222321,175.0,25792.80378760855,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01027418353514991,17195.202525072367,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +20729,1,44.0,321.0,2,211,400.0,190.0,0.0,0,56,0.0,0.0,682.0802173488245,590.0,0.0,360.7157691085599,71,0,0,0,0,0,0,0,0,0,,2,,2,120750,1,2,0,1,1,1140.0,500.0,298.0,32,1.0,3.0,4.0,2.0,1.3,1,1,309.4069718779,400.0,8954.651746581832,0,4,2,3,80.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06588754277632457,6888.193651216794,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20730,2,49.0,0.0,5,112,1200.0,0.0,0.0,46,46,0.0,66.2163638505112,2046.2406520464733,1330.0,110.84713803172167,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,3,120751,2,1,2,0,1,,280.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1478.05650176546,1200.0,65660.91218505088,1,1,0,1,90.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020255582137690787,43773.94145670059,10,5,10,10_1,10_2,10_0_0 +20731,2,59.0,0.0,2,111,700.0,960.0,0.0,0,52,0.0,0.0,1193.6403803604428,1660.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,120752,2,1,2,0,1,,130.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,289.990040194151,700.0,51707.90627403415,0,1,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032103407769066686,34471.937516022765,9,5,9,9_1,9_3,9_0_1 +20732,2,58.0,0.0,2,111,366.0,0.0,0.0,0,22,1708.5862186792945,0.0,624.1033988741744,2136.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120753,2,1,2,0,2,,67.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,829.367066493758,366.0,29069.908921449136,0,5,0,1,140.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07347804238987345,29069.908921449136,8,4,8,8_1,8_3,8_0_1 +20733,0,52.0,0.0,5,111,492.0,0.0,0.0,53,56,0.0,0.0,838.958667339054,492.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,3,120754,2,1,0,1,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,410.773224430284,492.0,61677.53251271472,1,1,5,0,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007976972812564688,30838.76625635736,8,4,8,8_0,8_4,8_0_0 +20734,2,47.0,0.0,1,112,1000.0,0.0,0.0,55,37,791.0121382774512,0.0,1705.2005433720612,1750.0,0.0,0.0,31,2,2,2,2,2,2,2,1,2,60.0,1,,1,120755,2,2,2,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,860.054499821669,1000.0,116596.94881936812,4,1,1,2,120.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.015008969082982595,64776.08267742673,10,5,10,10_1,10_1,10_1_0 +20735,2,46.0,0.0,7,221,650.0,1600.0,0.0,54,21,0.0,0.0,1108.3803531918397,2250.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,1,1.0,1,,5,120756,2,1,2,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,1493.77218316606,650.0,50458.12478908743,1,1,1,2,180.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04459143119973034,20183.249915634973,5,3,5,5_1,5_1,5_0_0 +20736,2,62.0,0.0,2,111,130.0,868.0,0.0,0,78,0.0,0.0,221.67607063836795,998.0,0.0,1647.9015136117368,70,0,0,0,0,0,0,0,0,0,,1,,2,120757,2,1,2,0,2,,201.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,363.860233704979,130.0,10346.38008734846,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09645885725968574,10346.38008734846,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +20737,2,53.0,0.0,1,111,734.0,1987.0,0.0,33,33,0.0,0.0,1251.617198835093,2721.0,0.0,3772.3275432563605,10,0,0,0,0,0,0,0,0,3,60.0,1,,1,120758,2,1,2,0,1,,1865.0,,43,2.0,0.0,7.0,5.0,2.8,4,4,689.768087238061,734.0,148897.06195581594,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018274369985939922,53177.52212707712,10,5,10,10_1,10_4,10_1_0 +20738,2,38.0,0.0,5,111,420.0,500.0,0.0,0,43,0.0,0.0,716.1842282162656,920.0,0.0,949.2520239698945,44,2,2,2,2,1,2,2,2,2,4.0,2,,3,120759,2,3,0,0,1,,0.0,329.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1355.79157879095,420.0,20157.558300378023,0,1,2,3,65.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.045640448425876404,20157.558300378023,5,3,5,5_0,5_3,5_0_0 +20739,1,44.0,413.0,8,111,0.0,,,56,62,0.0,0.0,,472.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,120760,1,1,0,0,2,,526.0,750.0,43,2.0,0.0,5.0,4.0,2.1,2,2,115.16329718425975,0.0,15721.706453724853,4,4,2,3,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03002218629315342,7486.526882726121,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20741,2,69.0,0.0,5,112,1000.0,0.0,0.0,78,77,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,3,120762,1,1,0,0,1,,410.0,312.0,41,0.0,3.0,4.0,2.0,1.5,2,2,911.497708711057,1000.0,35657.95657564613,5,5,2,3,50.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028044231807803185,23771.971050430755,6,3,6,6_0,6_2,6_0_0 +20742,1,34.0,200.0,9,111,540.0,520.0,0.0,55,21,0.0,0.0,920.8082934209131,1060.0,0.0,987.2221049286903,31,0,0,0,0,0,0,0,0,0,,2,2007.0,6,120763,2,1,0,0,1,,440.0,582.0,43,2.0,0.0,3.0,5.0,2.4,2,2,543.927980021267,540.0,43099.93232422833,1,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024594006134996373,17958.30513509514,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +20743,2,63.0,0.0,2,112,500.0,0.0,0.0,77,75,0.0,0.0,852.6002716860306,2000.0,2078.3838380947814,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120764,2,1,2,0,2,,279.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,483.491398131023,500.0,26255.94329008955,5,5,0,1,100.0,4,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07617322972947276,17503.962193393036,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +20744,2,63.0,0.0,6,111,929.0,699.0,0.0,0,72,0.0,529.7309108040896,1584.1313047926449,2028.0,0.0,1327.0543295099126,44,0,0,0,0,0,0,0,0,0,,1,,4,120765,2,1,1,0,1,,500.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1879.70234704022,929.0,46072.63693117719,0,5,0,1,116.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04401745016308497,46072.63693117719,10,5,10,10_1,10_2,10_0_0 +20746,2,45.0,0.0,6,112,3590.0,0.0,0.0,85,62,0.0,0.0,6121.669950705699,3590.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,120767,1,1,1,0,1,,0.0,661.0,42,2.0,0.0,5.0,7.0,3.3999999999999995,4,3,865.714821246006,3590.0,47461.99250832482,6,1,2,3,106.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07563947087493882,13959.409561272008,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +20747,1,46.0,244.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,221.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120768,2,2,0,1,1,668.0,0.0,200.0,11,0.0,2.0,3.0,1.0,1.0,1,1,322.258441837438,0.0,20353.625481113195,0,7,2,3,55.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010858016435699539,20353.625481113195,5,3,5,5_0,5_2,5_0_1 +20748,1,33.0,116.0,2,111,0.0,0.0,1100.0,85,46,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,31,2,2,2,1,1,2,2,2,2,10.0,2,,2,120769,1,2,0,0,1,,200.0,445.0,42,1.0,0.0,3.0,3.0,1.8,2,2,541.788269351051,0.0,20764.09939579568,6,1,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05297605155091524,11535.610775442045,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +20749,2,49.0,0.0,2,111,0.0,0.0,1100.0,77,67,0.0,0.0,693.3501194562182,1646.0,0.0,1316.405362321149,71,1,2,2,2,1,1,2,2,2,13.0,2,,2,120770,2,2,0,1,1,1130.0,0.0,382.0,42,1.0,2.0,4.0,3.0,2.0,3,3,218.221453882199,0.0,37211.132009139095,7,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.044234074889088044,18605.566004569548,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +20750,1,35.0,374.0,1,111,0.0,0.0,0.0,68,56,0.0,0.0,0.0,409.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,180.0,2,,1,120771,1,2,0,0,2,,0.0,520.0,43,2.0,0.0,2.0,3.0,1.8,2,2,565.600300496631,0.0,14842.635292214738,4,1,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.027555753540244216,8245.908495674854,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +20751,2,62.0,0.0,1,112,386.0,0.0,0.0,0,75,0.0,1589.1927324122687,658.2074097416156,1736.0,207.83838380947813,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,120772,2,1,3,0,2,,84.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,312.512797847454,386.0,44724.65569705796,0,5,0,1,80.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038815279244602346,44724.65569705796,10,5,10,10_1,10_0,10_1_0 +20752,2,88.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,798.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,120773,2,2,2,0,1,,358.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,996.004010024471,0.0,17079.55270490882,0,5,0,1,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04672253505623994,17079.55270490882,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +20753,1,67.0,215.0,2,112,224.0,0.0,0.0,78,77,0.0,0.0,381.9649217153417,224.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,120774,2,1,0,1,1,348.0,0.0,202.0,41,0.0,4.0,1.0,2.0,1.5,2,2,241.133702614432,224.0,10401.983616883506,5,5,2,3,30.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021534354239553365,6934.655744589004,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +20754,1,69.0,270.0,7,111,500.0,0.0,0.0,0,72,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,120775,1,2,0,0,2,,130.0,505.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2564.63924456267,500.0,9281.919684295182,0,5,2,3,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.053868167039409935,9281.919684295182,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20755,2,73.0,0.0,1,111,20.0,58.0,0.0,75,74,0.0,0.0,34.104010867441225,78.0,0.0,110.11323478050777,44,0,0,0,0,0,0,0,0,0,,2,,1,120776,1,1,0,0,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,849.141673397324,20.0,86630.26156079619,5,5,0,1,69.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0009003782118937784,57753.50770719746,10,5,10,10_0,10_4,10_1_0 +20756,2,88.0,0.0,2,112,2154.0,0.0,0.0,0,71,0.0,0.0,3673.0019704234196,2254.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120777,1,2,3,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,109.520262060093,2154.0,14877.495228832488,0,5,0,1,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15150399750300458,14877.495228832488,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +20757,2,66.0,0.0,6,111,380.0,0.0,0.0,0,78,0.0,0.0,647.9762064813832,380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,120778,2,1,0,0,1,,0.0,303.0,11,0.0,0.0,2.0,1.0,1.0,1,1,369.897529802,380.0,15879.666698927555,0,5,2,3,40.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023929973292554283,15879.666698927555,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +20758,2,55.0,0.0,9,111,516.0,,,47,48,0.0,0.0,,660.0,199.524848457099,,60,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,120779,2,1,0,0,2,,332.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,130.25408949654647,516.0,32253.226565860696,1,1,1,2,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020463068978611738,16126.613282930348,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +20759,2,30.0,0.0,9,111,800.0,,,35,38,0.0,0.0,,800.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,120780,2,1,0,0,2,,122.0,800.0,43,2.0,0.0,4.0,2.0,1.5,2,2,211.7946678387298,800.0,34524.76249163315,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023171774177849155,23016.508327755433,6,3,6,6_1,6_2,6_0_0 +20760,2,56.0,0.0,6,111,1500.0,,,77,37,0.0,0.0,,1546.0,63.73710436823996,,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,120781,2,2,0,0,2,,600.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,103.51112897945056,1500.0,82877.76375804625,5,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018653978219216917,41438.88187902312,9,5,9,9_1,9_3,9_0_0 +20761,2,48.0,0.0,1,221,435.0,0.0,0.0,38,31,1033.5891940158695,0.0,741.7622363668467,1415.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,120782,2,1,1,0,1,,320.0,,43,2.0,0.0,9.0,4.0,2.5,4,3,1452.34408575399,435.0,184741.74852772037,1,1,1,2,265.0,1,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007659340735251731,73896.69941108815,10,5,10,10_1,10_1,10_1_0 +20762,2,74.0,0.0,2,112,100.0,0.0,0.0,0,75,2636.7071275915036,0.0,170.52005433720612,2600.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,120783,2,1,3,0,1,,251.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,801.929673336328,100.0,54380.51259176654,0,5,0,1,120.0,8,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04781124480230905,54380.51259176654,10,5,10,10_1,10_0,10_0_1 +20763,2,68.0,0.0,2,111,555.0,0.0,0.0,56,78,0.0,0.0,946.386301571494,752.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,120784,2,1,0,1,2,2100.0,0.0,529.0,42,3.0,3.0,5.0,5.0,3.0,5,5,215.290556695142,555.0,51584.34059373562,4,5,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01457806751708914,17194.780197911874,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +20764,0,44.0,0.0,1,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,973.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,2,,1,120785,2,1,0,0,1,,1095.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1936.60485607463,0.0,121595.12667522643,1,1,5,0,230.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.008001965429081931,57902.44127391735,10,5,10,10_0,10_3,10_1_0 +20765,1,46.0,293.0,7,111,420.0,,,0,52,0.0,0.0,,486.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,2,,5,120786,1,1,0,0,2,,780.0,493.0,32,1.0,0.0,3.0,2.0,1.3,1,1,90.92045356354996,420.0,9352.402703506094,0,4,2,3,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05196525592485501,7194.155925773918,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20766,2,52.0,0.0,2,111,581.0,0.0,0.0,85,85,0.0,0.0,990.7215156991675,1398.0,1132.0263971489576,0.0,60,1,2,2,1,1,2,2,2,0,,1,,2,120787,1,3,3,0,2,,200.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,345.089901746515,581.0,6469.820977604167,6,7,0,1,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.21608016741719677,4313.213985069445,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +20767,2,27.0,0.0,2,111,340.0,500.0,0.0,0,37,0.0,0.0,579.7681847465008,840.0,0.0,949.2520239698945,10,0,0,0,0,0,0,0,0,0,,2,,2,120788,2,1,0,1,1,,0.0,,22,2.0,1.0,3.0,3.0,2.0,3,3,588.943644145527,340.0,58769.322111676986,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014293171502025864,29384.661055838493,8,4,8,8_0,8_4,8_0_1 +20768,2,40.0,0.0,2,111,270.0,901.0,0.0,0,67,0.0,0.0,460.40414671045653,1171.0,0.0,1710.55214719375,60,0,0,0,0,0,0,0,0,0,,2,,2,120789,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1539.06903422201,270.0,18840.04470856748,0,1,1,2,54.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.062154841886733404,18840.04470856748,5,3,5,5_0,5_2,5_0_1 +20769,2,31.0,0.0,2,111,259.0,120.0,0.0,42,47,0.0,0.0,441.64694073336386,379.0,0.0,227.8204857527747,20,0,0,0,0,0,0,0,0,3,90.0,2,,2,120790,1,2,0,1,1,720.0,0.0,628.0,43,2.0,0.0,2.0,2.0,1.5,2,2,871.178073337167,259.0,33475.75382160358,1,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011321627050423949,22317.169214402387,6,3,6,6_0,6_4,6_0_1 +20770,1,33.0,223.0,2,111,250.0,330.0,0.0,0,52,0.0,0.0,426.3001358430153,580.0,0.0,626.5063358201304,41,2,2,2,2,1,2,2,2,3,22.0,2,,2,120791,2,3,0,1,1,,225.0,291.0,12,1.0,2.0,3.0,1.0,1.0,1,1,305.566330591947,250.0,5192.4376340192075,0,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.1117009082978722,5192.4376340192075,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20771,2,66.0,0.0,1,112,900.0,0.0,0.0,90,75,949.2145659329414,0.0,1534.680489034855,3601.0,116.38949493330776,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120792,2,1,2,0,1,,70.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,486.931891810834,900.0,24686.09835739869,5,5,0,1,200.0,4,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1458715730556401,16457.39890493246,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +20772,2,32.0,0.0,1,112,240.0,0.0,0.0,43,42,0.0,794.5963662061343,409.2481304092947,990.0,207.83838380947813,0.0,12,0,0,0,0,0,0,0,0,2,2.0,1,,1,120793,2,1,2,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1387.49280469889,240.0,42293.82230225974,1,1,1,2,130.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023407673889694874,20139.915382028445,5,3,5,5_1,5_0,5_1_0 +20773,0,40.0,0.0,1,111,0.0,0.0,0.0,56,48,0.0,0.0,0.0,282.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,1,120794,1,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.5,4,2,857.104482155343,0.0,62739.9346982772,1,1,5,0,38.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004494744875909849,25095.973879310877,7,4,7,7_0,7_4,7_1_0 +20774,2,50.0,0.0,2,112,0.0,0.0,0.0,42,64,0.0,0.0,0.0,981.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,120795,2,1,0,0,1,,251.0,665.0,43,2.0,0.0,3.0,4.0,2.5,4,3,1163.27573917962,0.0,39563.65128580105,1,1,2,3,50.0,10,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02479548697144821,15825.460514320419,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +20775,2,80.0,0.0,6,111,960.0,0.0,0.0,0,74,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,120796,2,1,2,0,1,,327.0,1046.0,21,0.0,2.0,3.0,2.0,1.5,2,1,923.761706383467,960.0,42140.15364082134,0,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022781122446360613,28093.435760547563,8,4,8,8_1,8_4,8_0_0 +20777,2,63.0,0.0,5,111,560.0,0.0,0.0,75,74,1569.3680823424631,264.8654554020448,954.9123042883542,2448.0,277.1178450793042,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,120798,2,1,2,0,1,,320.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,473.511576327795,560.0,65619.55398720021,5,5,0,1,122.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03730595304682364,43746.369324800144,10,5,10,10_1,10_3,10_0_0 +20778,1,46.0,62.0,8,111,590.0,,,85,52,0.0,0.0,,678.0,121.93185183489385,,42,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,120799,2,1,0,0,1,,70.0,440.0,42,1.0,0.0,3.0,3.0,2.0,3,2,120.78901589276724,590.0,32641.343799571077,7,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020771203666220053,16320.671899785539,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +20779,2,66.0,0.0,1,111,210.0,200.0,0.0,0,77,0.0,0.0,358.0921141081328,410.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,1,120800,2,1,0,1,1,1064.0,0.0,470.0,11,0.0,5.0,5.0,1.0,1.0,1,1,312.055123018012,210.0,18066.625465725556,0,5,2,3,100.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022693778690315834,18066.625465725556,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +20780,2,71.0,0.0,5,111,1200.0,,,74,75,0.0,0.0,,1260.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,1,,3,120801,2,1,0,0,2,,960.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,162.3055710716917,1200.0,79099.00131795584,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015929404657527253,52732.6675453039,10,5,10,10_1,10_2,10_0_0 +20781,2,42.0,0.0,9,120,600.0,1400.0,0.0,46,38,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,120802,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,597.996229050317,600.0,92064.42625856462,1,1,1,2,116.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021723917492115396,51146.90347698034,10,5,10,10_1,10_1,10_0_0 +20783,1,28.0,420.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,546.0,0.0,0.0,41,2,1,2,2,1,2,2,2,2,40.0,2,,2,120804,2,1,0,1,1,519.0,0.0,449.0,22,2.0,1.0,3.0,2.0,1.5,2,2,173.725101476934,0.0,19905.669914161947,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027429370744842238,13270.446609441298,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +20784,1,54.0,271.0,1,111,517.0,205.0,0.0,0,78,0.0,0.0,881.5886809233556,722.0,0.0,389.1933298276567,50,0,0,0,0,0,0,0,0,0,,1,,1,120805,1,2,1,0,1,,360.0,299.0,11,0.0,0.0,3.0,1.0,1.0,1,1,224.340925136448,517.0,13155.17755647239,0,7,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.054883333721692996,13155.17755647239,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +20785,2,59.0,0.0,2,112,400.0,1932.0,0.0,0,75,0.0,0.0,682.0802173488245,2362.0,41.567676761895626,3667.9098206196722,31,1,2,2,2,1,2,2,2,0,,2,,2,120806,1,3,0,1,2,,190.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1257.92073294184,400.0,31466.49808514826,0,5,1,2,76.0,9,3,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.07506396147446831,31466.49808514826,8,4,8,8_0,8_1,8_0_1 +20786,2,28.0,0.0,1,111,0.0,0.0,0.0,63,55,0.0,0.0,0.0,760.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,120807,2,1,3,0,1,,623.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,276.537182846957,0.0,29200.02542480597,4,1,0,1,90.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026027374597912704,13904.774011812366,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +20787,2,73.0,0.0,1,112,1400.0,0.0,0.0,77,78,0.0,1324.327277010224,2387.2807607208856,2630.0,318.68552184119983,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120808,2,2,2,0,1,,890.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,331.09782892618,1400.0,52240.24423491299,5,5,0,1,120.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05034432818065442,34826.82948994199,9,5,9,9_1,9_1,9_1_0 +20788,0,48.0,0.0,1,111,612.0,0.0,0.0,0,63,0.0,0.0,1043.5827325437015,682.0,96.99124577775646,0.0,50,2,2,1,1,2,2,2,2,0,,1,,1,120809,1,2,3,1,2,172.0,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,1702.31020438815,612.0,29429.685352272463,0,1,5,0,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.023173880109028697,19619.790234848308,5,3,5,5_1,5_4,5_1_0 +20789,1,41.0,671.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,5258.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,120810,2,1,3,0,1,,446.0,895.0,32,2.0,1.0,6.0,8.0,3.6999999999999993,4,2,298.145740390441,0.0,28377.962211506114,0,4,2,3,147.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.18528462194752285,7669.719516623276,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +20790,2,37.0,0.0,9,112,347.0,1025.0,0.0,42,45,0.0,0.0,591.7045885501052,1372.0,0.0,1945.9666491382836,31,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,120811,2,1,1,0,1,,261.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1944.36060888244,347.0,57522.43006325436,1,1,1,2,100.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023851565354441467,27391.633363454457,7,4,7,7_1,7_1,7_0_0 +20791,2,53.0,0.0,1,112,1000.0,0.0,0.0,0,46,0.0,132.4327277010224,1705.2005433720612,1132.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,120812,2,3,3,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1220.6270666859,1000.0,25003.2671208874,0,1,1,2,100.0,5,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045274083363863356,25003.2671208874,7,4,7,7_1,7_0,7_1_0 +20792,2,72.0,0.0,5,111,384.0,,,0,77,0.0,0.0,,444.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,2,,3,120813,2,2,0,0,2,,67.0,235.0,11,0.0,2.0,1.0,1.0,1.0,1,1,175.33322267450896,384.0,19034.117755400694,0,5,2,3,43.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0233265342636656,19034.117755400694,5,3,5,5_0,5_2,5_0_0 +20793,0,54.0,0.0,2,111,450.0,,,85,65,0.0,0.0,,710.0,360.2531986030954,,71,2,2,1,2,1,2,2,2,0,,7,,2,120814,2,3,0,0,2,,0.0,,42,1.0,1.0,1.0,2.0,1.5,2,2,174.65261883333764,450.0,9649.969696969696,6,4,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.0735753605757908,6433.313131313131,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +20794,2,56.0,0.0,5,111,290.0,697.0,0.0,0,37,0.0,0.0,494.50815757789775,987.0,0.0,1323.257321414033,42,0,0,0,0,0,0,0,0,2,50.0,2,,3,120815,2,1,0,0,1,,340.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,670.476331884527,290.0,40793.599573257336,0,1,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02419497201338021,40793.599573257336,9,5,9,9_0,9_3,9_0_0 +20795,2,38.0,0.0,1,111,350.0,0.0,0.0,54,38,0.0,0.0,596.8201901802214,1277.0,0.0,0.0,10,1,2,2,2,1,2,2,2,4,30.0,2,,1,120816,1,1,0,1,2,516.0,0.0,700.0,43,2.0,0.0,2.0,4.0,2.1,2,2,857.234500662857,350.0,79093.37290710352,1,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.016145474052546193,37663.51090814453,9,5,9,9_0,9_4,9_1_0 +20796,1,26.0,387.0,5,111,0.0,0.0,288.0,67,63,0.0,0.0,181.53166763944623,288.0,0.0,344.6588584986281,71,2,2,2,2,1,2,2,2,0,,2,,3,120817,1,2,0,1,1,658.0,72.0,366.0,43,2.0,0.0,3.0,3.0,1.8,2,2,231.281152180641,0.0,24277.08059071194,4,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.011863040900815094,13487.266994839965,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +20797,2,47.0,0.0,1,111,50.0,100.0,0.0,46,47,0.0,0.0,85.26002716860306,150.0,0.0,189.8504047939789,12,0,0,0,0,0,0,0,0,0,,2,,1,120818,2,2,0,0,2,,311.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,475.909931604831,50.0,70641.36991787975,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.002123401629588643,30713.63909473033,8,4,8,8_0,8_4,8_1_0 +20798,0,22.0,0.0,1,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1978.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,120819,2,1,1,0,1,,223.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,609.795525836602,0.0,18996.32112132032,0,1,5,0,90.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10412542446337214,18996.32112132032,5,3,5,5_1,5_0,5_1_0 +20799,2,58.0,0.0,9,211,120.0,,,0,68,0.0,0.0,,252.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,120820,2,2,0,0,2,,160.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,180.37571977855933,120.0,6351.245742988489,0,1,0,1,49.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03967725548616939,6351.245742988489,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20800,1,35.0,203.0,2,111,400.0,72.0,0.0,85,67,0.0,0.0,682.0802173488245,905.0,0.0,136.6922914516648,71,1,2,1,2,1,2,2,2,2,20.0,2,,2,120821,1,3,0,1,1,719.0,714.0,377.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,64.7669473456556,400.0,26318.191665456463,6,1,2,3,86.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.034386861054281466,10122.381409790949,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +20801,1,78.0,250.0,2,111,420.0,,,0,77,0.0,0.0,,640.0,304.8296295872346,,70,0,0,0,0,0,0,0,0,0,,8,,2,120822,2,3,0,0,2,,200.0,300.0,11,0.0,0.0,3.0,1.0,1.0,1,1,112.4291807324652,420.0,9447.12,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06774551397674634,9447.12,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20802,1,36.0,330.0,7,111,480.0,,,0,54,0.0,0.0,,580.0,138.5589225396521,,43,0,0,0,0,0,0,0,0,0,,2,,5,120823,2,2,0,0,2,,500.0,450.0,32,2.0,0.0,4.0,5.0,2.4,2,1,128.12074049072186,480.0,13874.549956515366,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04180315771090198,5781.062481881403,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20803,2,64.0,0.0,6,300,900.0,0.0,0.0,77,77,0.0,0.0,1534.680489034855,2631.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,120824,2,1,2,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1271.1349220016,900.0,74080.41896940151,5,5,0,1,104.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0355154578848524,49386.945979601005,10,5,10,10_1,10_0,10_0_0 +20804,1,69.0,157.0,5,112,180.0,0.0,0.0,0,77,0.0,0.0,306.936097806971,180.0,0.0,0.0,70,2,1,2,2,1,1,2,2,0,,2,,3,120825,2,1,0,1,1,436.0,135.0,286.0,11,0.0,1.0,3.0,1.0,1.0,1,1,3681.71025281701,180.0,9414.558795166458,0,5,2,3,103.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.019119324008302338,9414.558795166458,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +20805,1,58.0,240.0,1,111,470.0,0.0,0.0,0,85,0.0,0.0,801.4442553848687,536.0,91.44888887617039,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120826,2,3,3,0,1,,120.0,305.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1297.13205296732,470.0,10381.222153585364,0,6,2,3,55.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.051631685756275005,10381.222153585364,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +20806,2,58.0,0.0,9,112,2202.0,0.0,0.0,67,47,0.0,0.0,3754.851596505279,2334.0,182.89777775234077,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,120827,2,1,1,0,1,,205.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,932.990723655795,2202.0,72316.0978935911,1,1,1,2,117.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03227497152064737,48210.731929060734,10,5,10,10_1,10_0,10_0_0 +20807,1,35.0,413.0,9,111,410.0,,,0,48,0.0,0.0,,453.0,59.5803366920504,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,120828,2,2,0,0,1,,68.0,613.0,32,1.0,0.0,3.0,3.0,1.8,2,1,182.8290104094505,410.0,11333.46106409711,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.039970137757392,6296.367257831727,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20808,1,44.0,461.0,9,111,600.0,600.0,0.0,22,21,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,50,2,2,2,2,1,2,2,2,0,,1,2005.0,6,120829,2,1,1,0,1,,490.0,511.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,964.097575322869,600.0,12695.749094588778,1,1,2,3,110.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,1,1,0.09451982636546179,4702.129294292141,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20809,2,59.0,0.0,2,221,600.0,,,0,77,0.0,0.0,,732.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,120830,2,2,0,0,2,,480.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,93.29432893382456,600.0,5265.276621986995,0,6,0,1,64.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13902403473794314,5265.276621986995,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +20810,1,38.0,78.0,2,111,618.0,0.0,0.0,52,46,0.0,0.0,1053.8139358039339,618.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,2,120831,2,2,0,1,1,,0.0,480.0,43,2.0,0.0,5.0,4.0,2.1,2,2,208.506092590926,618.0,43297.01462334386,1,1,2,3,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014273501426742745,20617.62601111612,5,3,5,5_0,5_4,5_0_1 +20811,2,36.0,0.0,2,111,312.0,1100.0,0.0,0,38,0.0,0.0,532.0225695320831,1412.0,0.0,2088.354452733768,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,120832,2,1,0,0,1,,0.0,361.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2224.89927807273,312.0,33591.031266330334,0,1,2,3,48.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0420350297912796,33591.031266330334,9,5,9,9_0,9_2,9_0_1 +20812,2,60.0,0.0,6,400,1300.0,0.0,0.0,54,75,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,120833,2,1,2,0,1,,700.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,1743.08307913668,1300.0,152920.32814069447,1,5,0,1,113.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008501158843995769,76460.16407034724,10,5,10,10_1,10_0,10_0_0 +20813,2,69.0,0.0,1,300,1380.0,0.0,0.0,78,86,0.0,0.0,2353.1767498534446,1380.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120834,1,1,2,0,2,,270.0,493.0,41,0.0,8.0,3.0,2.0,1.5,2,2,1962.96996693065,1380.0,37301.5893781122,5,5,2,3,70.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03699574262135209,24867.7262520748,7,4,7,7_1,7_0,7_1_0 +20814,1,48.0,357.0,2,120,300.0,800.0,0.0,85,69,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,2,120835,2,2,0,0,1,,140.0,389.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1163.6931723988,300.0,8093.858159911262,6,4,2,3,60.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.13590551974931817,3372.440899963026,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +20815,1,79.0,110.0,2,111,300.0,500.0,0.0,0,78,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,50,2,1,2,2,1,2,2,2,0,,2,,2,120836,1,3,0,1,1,813.0,0.0,242.0,11,0.0,4.0,3.0,1.0,1.0,1,1,510.683959525188,300.0,11743.320963111448,0,5,2,3,62.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06812382992110916,11743.320963111448,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +20816,2,69.0,0.0,1,300,1300.0,0.0,0.0,0,68,1265.6194212439218,0.0,2216.7607063836795,2600.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,1,120837,2,3,3,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1317.74802001146,1300.0,17906.463469989103,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14519896708568675,17906.463469989103,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +20817,2,50.0,0.0,6,111,2142.0,0.0,0.0,31,31,0.0,529.7309108040896,3652.5395639029553,2642.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,4,120838,2,1,1,0,1,,500.0,,43,2.0,1.0,8.0,3.0,2.0,3,2,940.493339552509,2142.0,310891.1042111388,1,1,1,2,240.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008498152453425332,155445.5521055694,10,5,10,10_1,10_3,10_0_0 +20818,1,33.0,127.0,9,300,1500.0,0.0,0.0,85,65,0.0,993.245457757668,2557.8008150580918,2250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2004.0,6,120839,2,1,1,0,1,,280.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1213.15489647259,1500.0,33014.43916074601,7,1,1,2,125.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06815199825278988,15721.161505117148,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +20819,0,74.0,0.0,8,111,900.0,0.0,0.0,78,78,0.0,662.163638505112,1534.680489034855,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,120840,2,1,2,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,215.73952235136,900.0,19104.916752657904,5,5,5,0,80.0,6,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09421658431197201,12736.611168438603,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +20820,2,61.0,0.0,5,112,1429.0,0.0,0.0,77,78,0.0,331.081819252556,2436.7315764786754,1729.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,120841,2,1,2,0,1,,501.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,290.218391315455,1429.0,37354.55473326351,5,5,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04628618952484418,24903.03648884234,7,4,7,7_1,7_0,7_0_0 +20821,2,41.0,0.0,6,111,1462.0,0.0,0.0,54,37,0.0,52.973091080408956,2493.0031944099533,1502.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,1.0,1,,4,120842,2,2,4,0,1,,490.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,556.395271145212,1462.0,59754.7737831407,1,1,1,2,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025136067043797873,28454.65418244795,8,4,8,8_1,8_4,8_0_0 +20822,2,85.0,0.0,2,111,260.0,0.0,0.0,0,77,0.0,0.0,443.3521412767359,260.0,0.0,0.0,60,2,2,1,1,2,2,2,2,0,,2,,2,120843,2,1,0,1,1,507.0,0.0,198.0,11,0.0,0.0,2.0,1.0,1.0,1,1,298.350381662059,260.0,14482.430538079083,0,5,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017952787642680164,14482.430538079083,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +20823,2,72.0,0.0,5,111,1000.0,0.0,0.0,75,74,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,120844,2,2,0,0,2,,178.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1818.4086381903,1000.0,78875.96563927445,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012678133217073076,52583.97709284964,10,5,10,10_0,10_3,10_0_0 +20824,0,60.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,434.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,1.0,8,,2,120845,2,2,0,1,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1890.45933588803,0.0,23548.0,0,1,5,0,80.0,6,4,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018430439952437573,23548.0,6,3,6,6_0,6_2,6_0_1 +20825,2,88.0,0.0,2,111,260.0,1599.0,0.0,0,75,0.0,0.0,443.3521412767359,1859.0,0.0,3035.7079726557226,70,0,0,0,0,0,0,0,0,0,,1,,2,120846,2,1,2,0,1,,119.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,743.940446695773,260.0,44945.309846954435,0,5,0,1,84.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04136137911453221,44945.309846954435,10,5,10,10_1,10_2,10_0_1 +20826,1,48.0,357.0,7,111,350.0,,,0,56,0.0,0.0,,410.0,83.13535352379125,,50,0,0,0,0,0,0,0,0,0,,2,,5,120847,2,2,0,0,2,,600.0,419.0,32,1.0,0.0,3.0,2.0,1.5,1,1,99.6035359234767,350.0,12800.83665137921,0,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03202915646578656,8533.891100919473,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20828,0,45.0,0.0,2,111,0.0,0.0,0.0,0,44,0.0,0.0,0.0,1515.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,120849,1,1,3,0,2,,217.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,427.034429818712,0.0,10648.399609455857,0,1,5,0,64.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1422749009771073,10648.399609455857,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +20829,2,66.0,0.0,2,112,280.0,1000.0,0.0,78,78,0.0,79.45963662061344,477.4561521441771,1340.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,2,120850,2,2,1,0,1,,240.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,403.456951196004,280.0,24754.156079856446,6,5,0,1,78.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05413232411063358,16502.770719904296,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +20830,2,52.0,0.0,1,111,262.0,331.0,0.0,0,55,0.0,0.0,446.76254236348,593.0,0.0,628.4048398680702,71,0,0,0,0,0,0,0,0,0,,2,,1,120851,2,2,0,1,1,192.0,0.0,334.0,22,2.0,0.0,2.0,2.0,1.5,2,2,739.840263874964,262.0,57010.22679651983,0,4,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010401642535409093,38006.81786434656,9,5,9,9_0,9_4,9_1_0 +20831,2,46.0,0.0,1,111,450.0,3971.0,0.0,0,47,0.0,0.0,767.3402445174275,4421.0,0.0,7538.959574368902,31,0,0,0,0,0,0,0,0,0,,1,,1,120852,2,1,2,0,2,,180.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,706.553340489895,450.0,38228.51709985812,0,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1156466516462499,25485.678066572083,7,4,7,7_1,7_4,7_1_0 +20832,2,79.0,0.0,7,111,240.0,105.0,0.0,0,77,0.0,0.0,409.2481304092947,1109.0,0.0,199.34292503367786,60,2,2,2,1,1,2,2,2,0,,2,,5,120853,1,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,934.212563183608,240.0,39074.97434493676,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.028381336612283703,39074.97434493676,9,5,9,9_0,9_4,9_0_0 +20833,2,82.0,0.0,5,111,340.0,140.0,0.0,77,78,0.0,0.0,579.7681847465008,480.0,0.0,265.7905667115705,71,2,1,2,1,1,1,2,2,0,,2,,3,120854,1,2,0,1,1,689.0,0.0,333.0,41,0.0,2.0,3.0,2.0,1.5,2,2,327.913622522608,340.0,38984.86198822263,5,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.01231247144455734,25989.90799214842,7,4,7,7_0,7_4,7_0_0 +20834,2,43.0,0.0,8,111,420.0,,,0,52,0.0,0.0,,516.0,133.01656563806603,,60,0,0,0,0,0,0,0,0,2,20.0,2,2002.0,6,120855,2,2,0,0,2,,140.0,474.0,12,1.0,0.0,3.0,1.0,1.0,1,1,97.47660180046059,420.0,39377.34253206042,0,1,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013103982311144556,39377.34253206042,9,5,9,9_0,9_3,9_0_0 +20835,1,41.0,357.0,5,111,570.0,0.0,0.0,85,68,0.0,0.0,971.9643097220749,570.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,120856,1,2,0,1,1,912.0,0.0,445.0,42,1.0,0.0,4.0,5.0,2.4,2,2,231.665141978935,570.0,26212.348637464907,6,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021745476068684197,10921.811932277045,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +20836,2,56.0,0.0,6,120,1543.0,0.0,0.0,0,52,0.0,0.0,2631.1244384230904,1543.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,5.0,1,,4,120857,1,2,2,0,1,,120.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,384.100231232556,1543.0,8397.3068547653,0,1,0,1,99.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.18374938854644557,8397.3068547653,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +20837,2,59.0,0.0,5,112,160.0,,,0,56,0.0,0.0,,337.0,245.2492928951842,,71,2,2,2,2,1,2,2,2,0,,1,,3,120858,1,2,0,0,2,,180.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,112.92782905855921,160.0,7768.5446701562505,0,4,0,1,96.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04338006850814978,7768.5446701562505,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +20838,1,100.0,20.0,1,221,1300.0,0.0,0.0,0,78,0.0,0.0,2216.7607063836795,1360.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,120859,1,3,0,0,2,,0.0,200.0,11,0.0,2.0,4.0,1.0,1.0,1,1,3011.65632354306,1300.0,15385.0,0,5,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.08839779005524862,15385.0,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +20839,1,35.0,172.0,1,120,539.0,1198.0,0.0,0,52,0.0,0.0,919.1030928775409,1737.0,0.0,2274.4078494318674,42,2,2,2,2,2,1,2,2,2,20.0,1,,1,120860,1,2,3,0,1,,253.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1446.55826901759,539.0,18803.366070203883,0,1,1,2,104.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.09237707724855063,14464.127746310678,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +20840,2,58.0,0.0,2,111,510.0,283.0,0.0,0,69,0.0,0.0,869.6522771197511,793.0,0.0,537.2766455669603,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,120861,2,1,0,1,1,529.0,0.0,270.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1261.47045095433,510.0,16315.533892939238,0,1,2,3,80.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04860398716974755,16315.533892939238,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +20841,1,43.0,409.0,5,111,540.0,180.0,0.0,0,68,0.0,0.0,920.8082934209131,720.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,120862,2,1,0,1,1,871.0,0.0,380.0,32,2.0,0.0,5.0,6.0,2.8999999999999995,3,2,339.608115330149,540.0,35313.75899056671,0,1,2,3,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02038865361776785,12177.158272609213,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +20842,2,69.0,0.0,6,111,600.0,0.0,0.0,0,74,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,120863,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1947.24023901981,600.0,54420.913161031145,0,5,0,1,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011025173323067985,54420.913161031145,10,5,10,10_0,10_3,10_0_0 +20843,1,37.0,530.0,1,111,1200.0,0.0,0.0,0,85,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,1,120864,1,2,0,0,1,,0.0,800.0,31,1.0,0.0,3.0,5.0,2.5999999999999996,3,2,422.377125512444,1200.0,6757.3678171211195,0,6,2,3,81.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.17758393985296525,2598.9876219696616,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +20844,2,74.0,0.0,5,111,607.0,0.0,0.0,0,78,0.0,0.0,1035.056729826841,633.0,36.025319860309544,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,120865,2,1,1,0,2,,239.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,321.890904470305,607.0,12329.817086425703,0,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05133896111864387,12329.817086425703,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +20845,0,41.0,0.0,1,111,0.0,0.0,0.0,0,54,474.6072829664707,0.0,0.0,450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,1,120866,2,1,1,0,1,,0.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,2234.78809335674,0.0,18299.3985507947,0,1,5,0,120.0,9,7,9,1,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024590972143205086,18299.3985507947,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +20846,1,33.0,260.0,1,111,2100.0,0.0,0.0,56,68,0.0,0.0,3580.9211410813286,2460.0,498.81212114274757,0.0,71,2,2,2,2,1,2,2,2,2,90.0,2,,1,120867,2,3,0,0,1,,800.0,510.0,43,2.0,2.0,3.0,3.0,2.0,3,2,3347.09374315605,2100.0,10046.08550262549,1,1,2,3,68.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.24487149739638311,5023.042751312745,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +20847,2,29.0,0.0,7,112,0.0,0.0,0.0,0,65,0.0,0.0,0.0,2958.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,120868,2,1,1,0,1,,340.0,785.0,22,3.0,0.0,5.0,3.0,2.0,3,3,1532.12784235521,0.0,16181.627513968597,0,1,2,3,120.0,9,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.18279990671188925,8090.813756984298,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +20848,2,64.0,0.0,6,211,140.0,,,63,21,0.0,0.0,,140.0,0.0,,71,0,0,0,0,0,0,0,0,2,4.0,2,,4,120869,2,1,0,0,2,,350.0,545.0,43,2.0,0.0,3.0,3.0,1.8,2,2,63.00632988598311,140.0,57838.0,1,1,3,4,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0024205539610636607,32132.222222222223,8,4,8,8_0,8_2,8_0_0 +20849,2,71.0,0.0,2,111,348.0,974.0,0.0,0,74,0.0,0.0,593.4097890934773,1322.0,0.0,1849.1429426933544,20,0,0,0,0,0,0,0,0,0,,2,,2,120870,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,584.416900716701,348.0,32136.474203364443,0,5,0,1,56.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.041137057899823894,32136.474203364443,8,4,8,8_0,8_2,8_0_1 +20850,2,58.0,0.0,1,111,700.0,1362.0,0.0,37,46,0.0,264.8654554020448,1193.6403803604428,2262.0,0.0,2585.7625132939925,20,0,0,0,0,0,0,0,0,2,12.0,1,,1,120871,2,1,1,0,1,,357.0,,43,2.0,2.0,7.0,4.0,2.3,3,2,2062.45453191436,700.0,80841.90041364772,1,1,1,2,190.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027980539651169922,35148.65235375988,9,5,9,9_1,9_2,9_1_0 +20851,1,65.0,250.0,1,112,800.0,0.0,0.0,0,72,0.0,0.0,1364.160434697649,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120872,1,1,1,0,2,,360.0,287.0,11,0.0,3.0,2.0,1.0,1.0,1,1,3842.94421873598,800.0,7506.129235186967,0,5,2,3,45.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1065795665027706,7506.129235186967,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +20852,2,45.0,0.0,7,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,641.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,13.0,2,,5,120873,2,3,0,0,2,,0.0,530.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3987.77358439061,0.0,19038.22179032802,0,1,2,3,47.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.033669110858118426,19038.22179032802,5,3,5,5_0,5_3,5_0_0 +20853,2,23.0,0.0,7,111,1400.0,,,0,81,0.0,0.0,,1665.0,367.1811447300781,,60,0,0,0,0,0,0,0,0,0,,1,,5,120874,2,3,0,0,2,,1800.0,,32,1.0,3.0,3.0,4.0,2.1,2,2,114.04072891543838,1400.0,9451.125762272624,0,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17616948942171656,4500.536077272678,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20854,2,82.0,0.0,2,111,276.0,378.0,0.0,0,77,0.0,0.0,470.6353499706889,654.0,0.0,717.6345301212402,71,0,0,0,0,0,0,0,0,0,,2,,2,120875,1,1,0,1,1,569.0,0.0,294.0,11,0.0,3.0,3.0,1.0,1.0,1,1,272.496564921283,276.0,18998.71048778927,0,5,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03442338891475475,18998.71048778927,5,3,5,5_0,5_3,5_0_1 +20855,2,62.0,0.0,6,112,420.0,0.0,0.0,72,75,0.0,0.0,716.1842282162656,1298.0,1216.5473398981453,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,120876,2,1,2,0,1,,190.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1748.17545158439,420.0,79444.55992992276,6,5,0,1,140.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01633843778787311,52963.03995328184,10,5,10,10_1,10_0,10_0_0 +20856,2,77.0,0.0,1,221,407.0,,,0,72,0.0,0.0,,671.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,1,120877,2,2,0,0,2,,438.0,,11,0.0,8.0,7.0,1.0,1.0,1,1,78.290630917001,407.0,10983.36111276043,0,5,0,1,57.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061092409974614646,10983.36111276043,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +20857,0,88.0,0.0,2,120,0.0,0.0,0.0,0,86,0.0,0.0,0.0,3221.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120878,2,1,2,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1778.18815830441,0.0,16536.44487295791,0,6,5,0,40.0,0,2,9,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1947818908323705,16536.44487295791,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +20858,2,54.0,0.0,1,111,0.0,0.0,1740.0,35,34,0.0,0.0,1096.7538253216542,1740.0,0.0,2082.3139367625445,10,0,0,0,0,0,0,0,0,3,20.0,1,,1,120879,2,1,1,0,1,,370.0,,43,2.0,3.0,6.0,4.0,2.5,4,2,1157.05748134687,0.0,138146.68755526564,1,1,1,2,144.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012595307428590441,55258.675022106254,10,5,10,10_1,10_3,10_1_0 +20859,2,68.0,0.0,7,111,1191.0,0.0,0.0,77,74,0.0,0.0,2030.8938471561248,1191.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,120880,1,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1793.56762097935,1191.0,30603.850427292295,5,5,1,2,80.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03891667170539674,20402.566951528195,5,3,5,5_0,5_2,5_0_0 +20860,2,65.0,0.0,7,221,1569.0,0.0,0.0,75,75,0.0,0.0,2675.459652550764,1569.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,120881,2,1,2,0,1,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1972.11787495127,1569.0,46852.83481928508,5,5,0,1,140.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033487834963492634,31235.223212856723,8,4,8,8_1,8_1,8_0_0 +20861,2,48.0,0.0,5,111,310.0,310.0,0.0,0,42,0.0,0.0,528.612168445339,620.0,0.0,588.5362548613346,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,120882,2,1,0,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,340.716438238655,310.0,25964.446664158277,0,1,0,1,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023878806585770903,25964.446664158277,7,4,7,7_0,7_3,7_0_0 +20862,2,47.0,0.0,1,112,84.0,0.0,0.0,0,68,0.0,0.0,143.23684564325313,1584.0,2078.3838380947814,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120883,2,2,4,0,1,,132.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1340.76033156468,84.0,3453.903716849799,0,4,0,1,140.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.45861151029557895,3453.903716849799,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +20863,2,47.0,0.0,1,120,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1731.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,4.0,1,,1,120884,2,2,5,0,1,,307.0,550.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1960.93407890382,0.0,33151.526392661144,0,1,2,3,85.0,0,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05221479033867945,33151.526392661144,8,4,8,8_1,8_1,8_1_0 +20864,2,78.0,0.0,2,211,0.0,0.0,1500.0,86,86,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,50,0,0,0,0,0,0,0,0,0,,1,,2,120885,2,2,2,0,1,,480.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,2151.49510992778,0.0,30553.024600446966,5,5,0,1,65.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04909497568951181,20368.683066964644,5,3,5,5_1,5_1,5_0_1 +20865,2,88.0,0.0,2,111,419.0,0.0,0.0,0,78,3164.0485531098047,0.0,714.4790276728936,3479.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,120886,2,3,3,0,2,,164.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,792.209654156528,419.0,24164.0127109049,0,5,0,1,100.0,7,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14397443179749583,24164.0127109049,6,3,6,6_1,6_2,6_0_1 +20866,1,44.0,300.0,1,111,800.0,0.0,0.0,0,56,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,50.0,2,,1,120887,2,2,0,0,1,,0.0,860.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1141.56271989634,800.0,10189.514134275618,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,0.0785120850177684,7838.087795596629,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +20867,2,59.0,0.0,2,111,1200.0,,,0,43,0.0,0.0,,1270.0,96.99124577775646,,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,120888,2,2,0,0,2,,500.0,300.0,12,1.0,0.0,6.0,1.0,1.0,1,1,101.98480137842044,1200.0,47081.0,0,1,3,4,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026974788131093223,47081.0,10,5,10,10_1,10_3,10_0_1 +20868,2,26.0,0.0,1,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,1031.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,120889,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,980.155128240875,0.0,65711.31611970061,1,1,1,2,82.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015689839450512857,43807.544079800406,10,5,10,10_0,10_4,10_1_0 +20869,2,62.0,0.0,1,112,1450.0,0.0,0.0,46,43,2721.081755674432,0.0,2472.540787889489,4130.0,138.5589225396521,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,1,120890,2,2,1,0,1,,225.0,,43,2.0,2.0,8.0,4.0,2.5,4,3,1590.89849412421,1450.0,108240.75603105692,1,1,0,1,250.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0381556832328019,43296.30241242277,9,5,9,9_1,9_0,9_1_0 +20870,2,49.0,0.0,1,111,400.0,500.0,0.0,0,22,0.0,0.0,682.0802173488245,997.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,120891,1,2,0,1,1,630.0,0.0,931.0,32,1.0,0.0,2.0,2.0,1.3,1,1,993.899365322255,400.0,24670.0,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.040413457640859345,18976.923076923078,5,3,5,5_0,5_4,5_1_0 +20871,2,52.0,0.0,1,111,420.0,562.0,0.0,85,47,0.0,0.0,716.1842282162656,982.0,0.0,1066.9592749421615,31,0,0,0,0,0,0,0,0,2,70.0,2,,1,120892,1,2,0,0,2,,0.0,,42,1.0,0.0,3.0,5.0,2.8,4,3,670.514208202287,420.0,40655.58147087663,6,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024154125078827113,14519.850525313082,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +20872,2,55.0,0.0,1,120,600.0,0.0,0.0,74,43,3164.0485531098047,0.0,1023.1203260232367,3720.0,166.2707070475825,0.0,20,2,2,2,1,1,2,2,2,2,15.0,1,,1,120893,1,3,3,0,2,,600.0,1200.0,42,2.0,1.0,6.0,3.0,2.0,3,3,2440.70665740955,600.0,107309.95569533523,5,1,2,3,140.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.03466593547537648,53654.977847667615,10,5,10,10_1,10_0,10_1_0 +20873,2,33.0,0.0,2,112,1460.0,0.0,0.0,54,62,0.0,397.2981831030672,2489.592793323209,1960.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,120894,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,797.287189962128,1460.0,45842.14003515924,1,1,1,2,130.0,7,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04275542107102225,21829.59049293297,6,3,6,6_1,6_0,6_0_1 +20874,2,60.0,0.0,2,111,1717.0,0.0,0.0,0,34,0.0,0.0,2927.829332969829,1717.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,10.0,2,,2,120895,2,2,0,0,1,,0.0,765.0,12,1.0,0.0,3.0,1.0,1.0,1,1,440.086987521147,1717.0,51832.88611537808,0,1,2,3,100.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03312568773766565,51832.88611537808,10,5,10,10_0,10_2,10_0_1 +20875,2,50.0,0.0,1,111,533.0,1168.0,0.0,21,48,0.0,0.0,908.8718896173086,2115.0,0.0,2217.4527279936738,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,120896,2,1,3,0,1,,492.0,,43,4.0,1.0,6.0,4.0,2.5,4,3,1080.9942806211,533.0,30648.808103682364,1,1,0,1,110.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06900757748376808,12259.523241472945,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +20876,2,52.0,0.0,1,300,600.0,0.0,0.0,0,42,0.0,66.2163638505112,1023.1203260232367,685.0,48.49562288887823,0.0,31,2,2,2,2,1,1,2,2,0,,1,,1,120897,2,2,1,0,1,,320.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1179.29006156752,600.0,11565.44817755636,0,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.059228141398730665,11565.44817755636,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +20877,2,58.0,0.0,6,112,450.0,0.0,0.0,0,54,632.8097106219609,0.0,767.3402445174275,1110.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,120898,2,1,2,0,1,,300.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,979.880508286661,450.0,10867.671439452452,0,4,0,1,70.0,7,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10213779521990457,10867.671439452452,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +20878,2,61.0,0.0,5,111,744.0,,,0,86,0.0,0.0,,870.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,3,120899,2,1,0,0,2,,1074.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,130.63446578750373,744.0,6968.5084076151325,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12484737753193649,6968.5084076151325,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +20879,2,38.0,0.0,5,120,1000.0,0.0,0.0,55,34,0.0,0.0,1705.2005433720612,1035.0,48.49562288887823,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,3,120900,2,2,5,0,1,,200.0,490.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2052.47294776736,1000.0,40506.596794790756,1,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025551393646901076,27004.397863193837,7,4,7,7_1,7_0,7_0_0 +20880,0,58.0,0.0,2,111,50.0,80.0,0.0,77,75,0.0,0.0,85.26002716860306,130.0,0.0,151.8803238351831,50,0,0,0,0,0,0,0,0,0,,1,,2,120901,2,3,3,0,1,,140.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,254.437139796339,50.0,31525.834719067996,5,5,0,1,99.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.004123602155452879,21017.22314604533,5,3,5,5_1,5_2,5_0_1 +20881,2,36.0,0.0,1,111,1600.0,0.0,0.0,37,46,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,1,,1,120902,2,1,1,0,1,,240.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,733.078519573863,1600.0,74196.05849376871,1,1,1,2,105.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021564487824301,35331.45642560415,9,5,9,9_1,9_4,9_1_0 +20882,2,95.0,0.0,2,111,779.0,,,0,74,0.0,0.0,,977.0,274.3466666285112,,60,0,0,0,0,0,0,0,0,0,,1,,2,120903,2,1,0,0,2,,365.0,,21,1.0,0.0,7.0,2.0,1.5,2,2,139.50932701655614,779.0,49291.84530594512,0,5,0,1,117.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019820722757201453,32861.230203963416,8,4,8,8_1,8_3,8_0_1 +20883,2,50.0,0.0,5,111,0.0,0.0,650.0,46,67,0.0,0.0,409.70688876958343,650.0,0.0,777.8758959170425,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,120904,2,1,0,1,1,,0.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,421.254633396293,0.0,84032.76893048268,1,1,0,1,89.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007735077735421546,42016.38446524134,9,5,9,9_0,9_3,9_0_0 +20884,0,40.0,0.0,1,111,700.0,0.0,0.0,0,52,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,120905,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2622.37057299303,700.0,11283.0,0,4,5,0,51.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06204023752548081,11283.0,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +20885,2,67.0,0.0,2,111,304.0,,,0,77,0.0,0.0,,442.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,120906,2,2,0,0,2,,504.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,78.36720742758395,304.0,13719.318993574982,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03221734258143549,13719.318993574982,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +20886,2,66.0,0.0,9,221,350.0,0.0,0.0,77,74,0.0,582.7040018844986,596.8201901802214,860.0,96.99124577775646,0.0,12,0,0,0,0,0,0,0,0,0,,1,2006.0,6,120907,2,1,1,0,1,,160.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,897.003656217623,350.0,28755.931931314895,6,5,1,2,72.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029906872851631332,19170.621287543265,5,3,5,5_1,5_1,5_0_0 +20887,2,67.0,0.0,7,111,550.0,,,0,75,0.0,0.0,,590.0,55.423569015860835,,31,0,0,0,0,0,0,0,0,0,,1,,5,120908,2,1,0,0,1,,400.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,123.77934495789398,550.0,40902.30379916947,0,5,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014424615368779791,40902.30379916947,9,5,9,9_1,9_2,9_0_0 +20888,2,26.0,0.0,5,111,420.0,0.0,0.0,52,43,0.0,0.0,716.1842282162656,420.0,0.0,0.0,33,2,1,2,1,1,2,2,2,2,60.0,2,,3,120909,2,2,0,1,1,840.0,0.0,609.0,43,2.0,0.0,3.0,3.0,1.8,2,2,360.030588980088,420.0,39931.12288032488,4,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01051811143049386,22183.957155736043,6,3,6,6_0,6_4,6_0_0 +20890,2,40.0,0.0,1,112,1230.0,0.0,0.0,43,43,843.7462808292812,264.8654554020448,2097.396668347635,2230.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,1,120911,2,2,2,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,243.217930040261,1230.0,61313.52052178306,1,1,1,2,100.0,6,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03637044457768072,29196.914534182408,8,4,8,8_1,8_0,8_1_0 +20891,2,32.0,0.0,1,111,370.0,0.0,0.0,22,43,0.0,0.0,630.9242010476627,1635.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,,1,120912,2,1,0,0,1,,210.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,349.965649082253,370.0,62758.514784162835,1,1,0,1,75.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026052241765488586,41839.009856108554,9,5,9,9_0,9_3,9_1_0 +20892,2,58.0,0.0,2,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,371.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,120913,2,1,0,1,1,747.0,0.0,450.0,43,2.0,1.0,3.0,3.0,2.0,3,3,2154.58311576841,0.0,29873.72629948268,4,1,2,3,82.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012418939514968528,14936.86314974134,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +20893,1,46.0,273.0,2,111,400.0,250.0,0.0,56,47,0.0,0.0,682.0802173488245,650.0,0.0,474.62601198494724,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,120914,2,2,0,1,1,550.0,300.0,315.0,43,2.0,0.0,4.0,7.0,2.9999999999999996,2,2,319.53021883078,400.0,29727.276893505936,4,1,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021865440360667395,9909.092297835314,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +20894,2,33.0,0.0,5,221,0.0,0.0,0.0,48,52,0.0,0.0,0.0,1052.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,120915,2,1,0,1,1,1686.0,0.0,695.0,43,2.0,0.0,3.0,4.0,2.1,2,2,861.358907909985,0.0,41066.0164407092,4,1,2,3,78.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025617288726284652,19555.24592414724,5,3,5,5_0,5_1,5_0_0 +20895,2,54.0,0.0,1,221,440.0,0.0,0.0,0,67,3691.3899786281054,52.973091080408956,750.2882390837069,4070.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120916,1,1,2,0,1,,366.0,,22,1.0,4.0,9.0,2.0,1.5,2,2,2626.04139072255,440.0,32249.9603101538,0,1,0,1,200.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12620170570314077,21499.973540102535,6,3,6,6_1,6_1,6_1_0 +20896,2,38.0,0.0,2,111,424.0,0.0,0.0,85,47,0.0,0.0,723.005030389754,424.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,120917,2,3,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,395.490521424613,424.0,25827.0604785037,7,1,1,2,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01641688957800298,17218.040319002466,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +20897,1,43.0,370.0,2,111,400.0,350.0,0.0,0,56,0.0,0.0,682.0802173488245,750.0,0.0,664.4764167789261,60,0,0,0,0,0,0,0,0,0,,2,,2,120918,2,1,0,1,1,,0.0,500.0,32,1.0,0.0,4.0,4.0,2.3,3,1,164.905659642096,400.0,12188.71682981815,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06153231800128625,5299.442099920935,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +20898,2,60.0,0.0,2,111,300.0,1500.0,0.0,46,37,0.0,0.0,511.56016301161833,1800.0,0.0,2847.7560719096837,44,0,0,0,0,0,0,0,0,3,60.0,1,,2,120919,2,1,3,0,1,,230.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,845.592212418862,300.0,83386.44272087129,1,1,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021586242814378594,55590.96181391419,10,5,10,10_1,10_4,10_0_1 +20899,1,32.0,337.0,5,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,2666.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,120920,2,2,0,0,1,,204.0,315.0,43,2.0,0.0,4.0,3.0,1.8,2,2,245.29757557873,0.0,13001.714599202503,4,4,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.20504987858782306,7223.174777334724,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20900,2,38.0,0.0,9,112,700.0,,,55,53,0.0,0.0,,769.0,95.60565655235995,,41,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,120921,2,1,0,0,2,,280.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,257.8575073021121,700.0,65741.77599106994,1,1,1,2,130.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011697280586159665,27392.40666294581,7,4,7,7_1,7_2,7_0_0 +20901,2,40.0,0.0,1,112,1550.0,0.0,0.0,31,37,4307.324763633481,132.4327277010224,2643.0608422266946,5814.0,110.84713803172167,0.0,41,0,0,0,0,0,0,0,0,4,100.0,1,,1,120922,1,3,2,0,1,,198.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,604.440376849048,1550.0,101183.82979618598,1,1,1,2,167.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05745977407369446,67455.88653079065,10,5,10,10_1,10_0,10_1_0 +20902,2,66.0,0.0,5,111,800.0,,,86,86,0.0,0.0,,800.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,3,120923,2,1,0,0,2,,700.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,55.58217237002254,800.0,67171.34533666866,6,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011909840364076826,44780.89689111244,10,5,10,10_1,10_2,10_0_0 +20903,2,39.0,0.0,5,300,2119.0,0.0,0.0,21,52,0.0,0.0,3613.3199514053977,2179.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,3,120924,2,1,2,0,1,,414.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1096.00932239129,2119.0,33106.43307771837,4,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06581802379267891,14394.101338138424,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +20904,2,87.0,0.0,2,111,580.0,,,0,74,0.0,0.0,,970.0,540.3797979046432,,41,0,0,0,0,0,0,0,0,0,,1,,2,120925,2,2,0,0,2,,1224.0,,21,1.0,4.0,6.0,2.0,1.5,2,2,142.4807160845778,580.0,51580.458613129755,0,5,0,1,149.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01880557145246257,34386.97240875317,9,5,9,9_1,9_2,9_0_1 +20906,2,29.0,0.0,2,111,0.0,0.0,0.0,52,42,0.0,0.0,0.0,1554.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,2,120927,2,2,5,0,1,,419.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,973.184248068117,0.0,50356.0261094816,1,1,1,2,58.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03086025884213678,33570.68407298774,9,5,9,9_1,9_4,9_0_1 +20907,2,32.0,0.0,2,112,300.0,800.0,0.0,0,67,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,120928,2,1,0,0,1,,385.0,600.0,22,2.0,0.0,5.0,2.0,1.5,2,2,1066.28943034142,300.0,44306.04450169706,0,1,2,3,110.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024827312218265535,29537.363001131376,8,4,8,8_0,8_1,8_0_1 +20908,2,73.0,0.0,2,111,120.0,,,0,77,0.0,0.0,,190.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,0,,1,,2,120929,2,2,0,0,2,,300.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,119.23676500534783,120.0,35498.696217494085,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.005352309246398921,23665.79747832939,6,3,6,6_1,6_2,6_0_1 +20909,2,32.0,0.0,1,111,320.0,61.0,0.0,0,38,0.0,0.0,545.6641738790596,381.0,0.0,115.80874692432712,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,120930,2,1,0,0,1,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1103.90521982468,320.0,27117.471254039083,0,1,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014049982626726338,27117.471254039083,7,4,7,7_0,7_4,7_1_0 +20910,2,54.0,0.0,2,111,1510.0,0.0,0.0,56,44,0.0,0.0,2574.8528204918125,1510.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,80.0,1,,2,120931,2,2,3,0,1,,962.0,,43,3.0,0.0,5.0,5.0,3.0,5,4,524.569008557204,1510.0,51963.59250240643,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029058806893116025,17321.197500802144,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +20911,1,57.0,258.0,2,112,350.0,71.0,0.0,0,77,0.0,0.0,596.8201901802214,421.0,0.0,134.79378740372502,71,2,2,2,2,1,1,2,2,0,,2,,2,120932,1,3,0,1,2,60.0,0.0,251.0,21,1.0,2.0,4.0,2.0,1.5,2,2,271.921821023544,350.0,35506.28545088965,0,7,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.01185705557913976,23670.856967259766,6,3,6,6_0,6_2,6_0_1 +20912,2,54.0,0.0,1,111,708.0,66.0,0.0,0,46,0.0,0.0,1207.2819847074193,774.0,0.0,125.30126716402607,60,0,0,0,0,0,0,0,0,3,50.0,2,,1,120933,2,3,0,0,1,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,978.144062303652,708.0,25866.07601426286,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029923363697423887,25866.07601426286,7,4,7,7_0,7_4,7_1_0 +20913,2,84.0,0.0,2,112,2300.0,0.0,0.0,77,75,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,120934,2,1,2,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2972.40275673357,2300.0,31477.434497753587,5,5,0,1,91.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07306821653982447,20984.956331835725,5,3,5,5_1,5_1,5_0_1 +20914,1,35.0,105.0,6,112,1360.0,0.0,0.0,67,67,0.0,913.7858211370545,2319.072738986003,2050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,4,120935,2,1,4,0,1,,400.0,512.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1019.43146429989,1360.0,47611.726599125905,1,1,2,3,96.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04305661958576473,22672.250761488525,6,3,6,6_1,6_0,6_0_0 +20915,2,51.0,0.0,7,300,1200.0,0.0,0.0,67,52,0.0,198.6490915515336,2046.2406520464733,1530.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,120936,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,977.860335297212,1200.0,41086.96633169084,1,1,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03723808634710258,16434.786532676335,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +20916,0,75.0,0.0,1,111,960.0,0.0,0.0,0,78,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120937,2,1,2,0,1,,204.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,306.793081565467,960.0,14889.97626039412,0,5,5,0,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06447290332849664,14889.97626039412,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +20917,2,31.0,0.0,1,400,1200.0,0.0,0.0,85,21,1265.6194212439218,0.0,2046.2406520464733,2750.0,484.95622888878233,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,120938,2,1,1,0,1,,360.0,,42,1.0,4.0,5.0,5.0,2.8,4,4,1557.82868293228,1200.0,27620.603619351743,6,1,0,1,110.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09956335632264299,9864.501292625622,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +20918,2,40.0,0.0,8,112,1200.0,0.0,0.0,42,42,0.0,1059.4618216081792,2046.2406520464733,2075.0,103.91919190473907,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,120939,2,1,1,0,1,,800.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1383.41324765295,1200.0,57691.89757746931,1,1,1,2,123.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035966922343188094,24038.29065727888,6,3,6,6_1,6_0,6_0_0 +20920,1,40.0,245.0,6,111,1200.0,0.0,0.0,0,68,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,120941,1,3,0,0,1,,140.0,307.0,12,1.0,1.0,2.0,1.0,1.0,1,1,273.903503206171,1200.0,6060.0,0,4,2,3,49.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.19801980198019803,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20921,2,52.0,0.0,5,111,685.0,1480.0,0.0,68,46,0.0,0.0,1168.062372209862,2165.0,0.0,2809.785990950888,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,120942,2,2,5,0,1,,327.0,538.0,43,2.0,1.0,5.0,3.0,2.0,3,2,444.932015811084,685.0,26622.00169320659,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0813237120540213,13311.000846603294,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +20922,2,37.0,0.0,7,120,636.0,0.0,0.0,46,38,1054.6828510366015,0.0,1084.5075455846309,1711.0,103.91919190473907,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,120943,2,1,1,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2093.06425534449,636.0,17096.297191518068,1,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10008015073865661,8141.093900722889,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +20923,2,75.0,0.0,1,300,300.0,0.0,0.0,0,71,0.0,198.6490915515336,511.56016301161833,620.0,235.55016831740858,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,120944,2,1,2,0,1,,160.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,788.874518089871,300.0,12697.309986357695,0,5,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04882924026161001,12697.309986357695,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +20924,2,58.0,0.0,2,111,330.0,0.0,0.0,62,75,0.0,0.0,562.7161793127802,330.0,0.0,0.0,44,1,2,2,1,2,2,2,2,0,,2,,2,120945,1,3,0,1,1,,0.0,,42,2.0,2.0,3.0,3.0,2.0,3,3,1273.8951676159,330.0,81564.91762441047,1,5,0,1,58.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.004045857086738953,40782.45881220524,9,5,9,9_0,9_3,9_0_1 +20925,2,61.0,0.0,6,300,1700.0,0.0,0.0,90,75,0.0,397.2981831030672,2898.840923732504,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,120946,2,2,2,0,1,,400.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,904.721616635091,1700.0,55239.07756742848,1,5,0,1,103.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036206252676081845,36826.05171161899,9,5,9,9_1,9_0,9_0_0 +20926,2,53.0,0.0,6,211,500.0,0.0,0.0,67,43,0.0,0.0,852.6002716860306,500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,4,120947,2,1,2,0,1,,308.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,732.609812694562,500.0,74571.94348760044,1,1,0,1,135.0,4,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006704934545297699,49714.628991733625,10,5,10,10_1,10_1,10_0_0 +20927,2,61.0,0.0,1,111,1500.0,0.0,0.0,0,75,1898.4291318658827,0.0,2557.8008150580918,3400.0,138.5589225396521,0.0,33,2,2,2,1,2,2,2,2,0,,1,,1,120948,2,1,2,0,1,,1000.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1529.52031303541,1500.0,29922.44655177478,0,5,0,1,160.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.11362707237581604,29922.44655177478,8,4,8,8_1,8_3,8_1_0 +20928,1,44.0,406.0,7,111,2900.0,2300.0,0.0,55,67,0.0,0.0,4945.081575778978,5200.0,0.0,4366.559310261515,50,0,0,0,0,0,0,0,0,0,,1,,5,120949,2,1,2,0,1,,960.0,465.0,43,4.0,1.0,6.0,7.0,3.6,5,5,217.527593481712,2900.0,14513.662120865427,4,4,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.35828310985166656,4031.5728113515074,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +20929,2,41.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1426.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,120950,2,1,2,0,1,,473.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,651.992083972204,0.0,27549.800727628128,0,1,1,2,90.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051760809963679544,21192.15440586779,5,3,5,5_1,5_3,5_1_0 +20930,2,56.0,0.0,1,111,540.0,2540.0,0.0,85,33,0.0,0.0,920.8082934209131,3080.0,0.0,4822.200281767064,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,120951,2,2,2,0,1,,550.0,,42,1.0,7.0,6.0,2.0,1.5,2,2,1782.42624734326,540.0,43795.093336768616,6,1,1,2,140.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07032751309184115,29196.72889117908,8,4,8,8_1,8_2,8_1_0 +20932,2,48.0,0.0,7,111,1152.0,180.0,0.0,22,38,0.0,52.973091080408956,1964.3910259646145,1372.0,0.0,341.730728629162,12,0,0,0,0,0,0,0,0,2,10.0,1,,5,120953,2,1,1,0,1,,806.0,,43,2.0,2.0,5.0,3.0,2.0,3,2,2952.9383743366,1152.0,84012.34295890691,1,1,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01633093366615294,42006.17147945346,9,5,9,9_1,9_3,9_0_0 +20933,2,55.0,0.0,5,400,103.0,,,0,52,0.0,0.0,,128.0,34.63973063491302,,41,0,0,0,0,0,0,0,0,0,,1,,3,120954,2,2,0,0,1,,665.0,,12,1.0,5.0,6.0,1.0,1.0,1,1,22.310719155592626,103.0,32767.60655857805,0,1,0,1,29.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003906296902435542,32767.60655857805,8,4,8,8_1,8_1,8_0_0 +20934,2,42.0,0.0,2,112,600.0,0.0,0.0,0,67,2636.7071275915036,0.0,1023.1203260232367,3120.0,27.711784507930417,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,120955,2,2,5,0,2,,225.0,425.0,12,1.0,0.0,6.0,1.0,1.0,1,1,1176.87697420799,600.0,16983.02053819583,0,1,2,3,120.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18371290271850838,16983.02053819583,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +20935,2,78.0,0.0,2,111,600.0,0.0,0.0,0,78,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,120956,2,2,0,1,1,953.0,0.0,385.0,21,1.0,6.0,5.0,3.0,2.0,3,3,455.216117064376,600.0,28628.69456399479,0,5,2,3,120.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020957993689121854,14314.347281997396,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +20936,2,50.0,0.0,2,111,450.0,0.0,0.0,0,56,0.0,0.0,767.3402445174275,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,2,120957,2,1,0,1,1,579.0,0.0,436.0,12,1.0,3.0,3.0,1.0,1.0,1,1,236.123016034446,450.0,16101.448629678047,0,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027947795900212607,16101.448629678047,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +20937,2,47.0,0.0,7,111,900.0,800.0,0.0,46,62,0.0,0.0,1534.680489034855,1700.0,0.0,1518.8032383518312,50,1,2,2,2,1,2,2,1,1,5.0,1,,5,120958,2,1,2,0,1,,720.0,585.0,43,4.0,0.0,6.0,6.0,3.3,5,4,287.78509420716,900.0,44000.412186215726,1,1,2,3,130.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.038636001699378836,13333.45823824719,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +20938,2,62.0,0.0,2,111,600.0,0.0,0.0,0,56,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,120959,2,2,0,0,1,,0.0,495.0,12,1.0,2.0,1.0,1.0,1.0,1,1,2699.27188017322,600.0,16017.960844638757,0,4,2,3,31.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.037457951472070254,16017.960844638757,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +20939,2,84.0,0.0,2,111,180.0,125.0,0.0,86,78,0.0,0.0,306.936097806971,305.0,0.0,237.31300599247362,71,0,0,0,0,0,0,0,0,0,,2,,2,120960,2,2,0,1,1,630.0,0.0,419.0,41,0.0,5.0,5.0,2.0,1.5,2,2,498.430058858529,180.0,19021.33795850204,6,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0160346238874155,12680.891972334693,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +20940,1,46.0,249.0,5,111,600.0,0.0,0.0,56,54,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,2,2,2,2,1,1,2,2,3,45.0,2,,3,120961,1,2,0,1,1,707.0,0.0,355.0,43,2.0,0.0,4.0,5.0,3.0,5,4,331.058495855356,600.0,24243.40759981719,1,1,2,3,72.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,1,0,1,0.02474899609428356,8081.13586660573,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +20941,2,36.0,0.0,1,112,200.0,,,85,21,0.0,0.0,,464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,1,120962,1,2,0,0,2,,180.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,105.83438414616009,200.0,9991.923645506286,7,1,0,1,76.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04643750457487502,4758.058878812517,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +20942,2,38.0,0.0,1,111,300.0,860.0,0.0,0,34,0.0,0.0,511.56016301161833,1160.0,0.0,1632.7134812282186,20,0,0,0,0,0,0,0,0,0,,2,,1,120963,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1649.55205696646,300.0,56660.729189790276,0,1,1,2,75.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.020472733347897346,35412.95574361892,9,5,9,9_0,9_3,9_1_0 +20943,2,40.0,0.0,1,111,1500.0,0.0,0.0,55,62,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,120964,2,1,2,0,1,,420.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,173.948400067732,1500.0,40200.11484294223,1,1,1,2,110.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03731332623949826,22333.397134967905,6,3,6,6_1,6_2,6_1_0 +20944,2,56.0,0.0,6,112,1467.0,0.0,0.0,77,52,0.0,0.0,2501.529197126814,1527.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,120965,2,2,3,0,1,,311.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1361.78766067214,1467.0,60366.238893157424,5,1,1,2,90.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025295596147751506,40244.15926210495,9,5,9,9_1,9_1,9_0_0 +20945,2,37.0,0.0,1,400,683.0,,,67,85,0.0,0.0,,796.0,156.57158246980686,,71,0,0,0,0,0,0,0,0,0,,1,,1,120966,2,2,0,0,2,,710.0,200.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,3,2,77.0185259842283,683.0,16110.0,4,6,2,3,63.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049410304158907514,6196.153846153847,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +20947,2,65.0,0.0,5,111,705.0,,,0,75,0.0,0.0,,843.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,1,,3,120968,2,1,0,0,2,,350.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,113.62325777783849,705.0,9447.12,0,5,0,1,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08923354419124557,9447.12,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +20948,2,48.0,0.0,2,111,0.0,0.0,0.0,85,47,0.0,0.0,0.0,407.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,2,,2,120969,2,1,0,1,1,1900.0,0.0,469.0,42,1.0,0.0,3.0,3.0,1.8,2,2,215.42408513707,0.0,32836.61182196451,6,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012394701445042405,18242.562123313615,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +20949,2,63.0,0.0,6,111,960.0,,,55,33,0.0,0.0,,1110.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,120970,2,1,0,0,2,,260.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,192.2071940190395,960.0,79255.70728746118,1,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014005300539102122,39627.85364373059,9,5,9,9_1,9_2,9_0_0 +20950,2,30.0,0.0,6,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,511.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,,4,120971,2,3,0,0,1,,0.0,690.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1481.60766933526,0.0,28900.802375074727,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017681170002418617,28900.802375074727,8,4,8,8_0,8_4,8_0_0 +20951,2,41.0,0.0,5,111,1008.0,,,85,45,0.0,0.0,,1123.0,159.34276092059991,,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,120972,2,1,0,0,1,,300.0,1300.0,42,1.0,0.0,3.0,4.0,2.1,2,1,70.11426571416364,1008.0,59106.04938927243,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018999747261129265,28145.737804415443,8,4,8,8_0,8_2,8_0_0 +20952,1,41.0,350.0,5,111,4200.0,,,0,52,0.0,0.0,,4200.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,,3,120973,2,1,0,0,2,,700.0,392.0,32,1.0,0.0,2.0,2.0,1.3,1,1,127.50626061675938,4200.0,21426.992993173517,0,4,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.19601443848598304,16482.302302441167,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +20953,2,74.0,0.0,5,111,918.0,,,77,78,0.0,0.0,,1194.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,120974,1,2,0,0,2,,1160.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,84.74528844862685,918.0,24216.582733516694,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04930505732947438,16144.38848901113,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +20954,2,35.0,0.0,2,111,930.0,0.0,0.0,0,47,0.0,0.0,1585.836505336017,965.0,48.49562288887823,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,120975,2,2,1,0,1,,250.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1032.63445447995,930.0,37966.51495981004,0,1,1,2,108.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02541713404618553,37966.51495981004,9,5,9,9_1,9_3,9_0_1 +20955,1,31.0,76.0,8,111,600.0,,,55,63,0.0,0.0,,672.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,120976,2,1,0,0,2,,700.0,550.0,43,2.0,0.0,4.0,5.0,2.4,2,2,116.53154934376302,600.0,41693.018095598345,1,1,2,3,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0161178065463902,17372.090873165977,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +20956,2,35.0,0.0,9,111,400.0,,,46,37,0.0,0.0,,463.0,87.29212119998083,,31,0,0,0,0,0,0,0,0,2,1.0,1,2011.0,6,120977,2,1,0,0,2,,250.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,169.94481661280582,400.0,44154.244602935694,1,1,1,2,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010485968091258352,29436.163068623795,8,4,8,8_1,8_2,8_0_0 +20957,1,52.0,318.0,7,111,300.0,,,0,53,0.0,0.0,,400.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,2,,5,120978,2,1,0,0,2,,300.0,418.0,12,1.0,0.0,2.0,1.0,1.0,1,1,130.75771359339294,300.0,9401.817240375656,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042544966549894106,9401.817240375656,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +20958,1,32.0,434.0,9,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1139.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,120979,2,1,1,0,1,,647.0,484.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1630.91654837642,0.0,12894.278489669488,0,1,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08833375212987161,8058.92405604343,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +20959,2,34.0,0.0,1,111,280.0,1660.0,0.0,37,37,0.0,0.0,477.4561521441771,1940.0,0.0,3151.5167195800495,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,120980,2,1,1,0,1,,320.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,143.758086404379,280.0,76624.19488130121,1,1,1,2,140.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025318373693913,51082.79658753414,10,5,10,10_1,10_3,10_1_0 +20960,2,44.0,0.0,9,111,550.0,0.0,0.0,52,47,527.3414255183008,0.0,937.8602988546337,1085.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,120981,2,1,1,0,1,,180.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,986.742920497382,550.0,77692.78646192435,1,1,1,2,142.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013965260475394797,31077.11458476974,8,4,8,8_1,8_2,8_0_0 +20961,1,47.0,360.0,9,211,900.0,,,52,68,0.0,0.0,,1500.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,3,1.0,1,2008.0,6,120982,2,2,0,0,2,,800.0,590.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,2,2,87.09372567190887,900.0,45234.619930973386,1,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03316044220751613,15598.14480378393,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +20962,1,41.0,289.0,5,111,782.0,0.0,0.0,0,54,0.0,33.1081819252556,1333.4668249169517,807.0,0.0,0.0,43,2,1,2,1,1,2,2,2,2,5.0,2,,3,120983,2,1,0,1,1,813.0,404.0,531.0,32,2.0,0.0,5.0,4.0,2.5,4,2,311.87450786203,782.0,46217.28409244437,0,1,2,3,118.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.01746100005326641,18486.913636977748,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +20963,2,75.0,0.0,1,120,450.0,0.0,0.0,86,77,1265.6194212439218,0.0,767.3402445174275,1830.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,120984,1,1,2,0,1,,228.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,1675.77989981596,450.0,34927.86209729793,5,5,0,1,65.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052393702050878496,23285.24139819862,6,3,6,6_1,6_0,6_1_0 +20964,2,53.0,0.0,2,112,53.0,60.0,0.0,75,43,0.0,0.0,90.37562879871925,113.0,0.0,113.91024287638734,33,0,0,0,0,0,0,0,0,2,30.0,1,,2,120985,1,1,4,0,2,,200.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2321.56599463464,53.0,64474.00528596091,5,1,1,2,138.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0017526443331512013,42982.67019064061,9,5,9,9_1,9_1,9_0_1 +20965,2,87.0,0.0,2,112,400.0,2000.0,0.0,86,78,0.0,0.0,682.0802173488245,2400.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,0,,1,,2,120986,1,3,4,0,2,,100.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,69.4427051977321,400.0,29948.785629409445,5,5,0,1,80.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08013680520131744,19965.857086272965,5,3,5,5_1,5_0,5_0_1 +20966,2,66.0,0.0,2,112,720.0,,,0,75,0.0,0.0,,850.0,180.1265993015477,,41,0,0,0,0,0,0,0,0,0,,1,,2,120987,2,3,0,0,2,,600.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,96.00907664483314,720.0,33674.27337772463,0,5,0,1,120.0,8,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02524182156703256,33674.27337772463,9,5,9,9_1,9_1,9_0_1 +20967,1,41.0,240.0,1,221,180.0,890.0,0.0,0,55,0.0,0.0,306.936097806971,1100.0,41.567676761895626,1689.6686026664122,50,2,1,2,2,1,2,2,1,2,5.0,2,,1,120988,1,2,0,0,1,,220.0,234.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2999.16616169308,180.0,10880.439705976982,0,1,2,3,101.0,1,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.10109885535193343,8369.569004597677,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +20968,2,55.0,0.0,5,111,142.0,260.0,0.0,0,52,0.0,0.0,242.1384771588327,402.0,0.0,493.61105246434516,71,0,0,0,0,0,0,0,0,2,10.0,2,,3,120989,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,488.221900487534,142.0,21938.307035452388,0,1,0,1,50.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018324112218429913,21938.307035452388,6,3,6,6_0,6_2,6_0_0 +20969,0,56.0,0.0,2,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,3216.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,120990,1,3,3,0,2,,0.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1305.79406313187,0.0,72880.1534996659,4,1,5,0,90.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0441272396608597,36440.07674983295,9,5,9,9_1,9_2,9_0_1 +20970,2,56.0,0.0,7,111,960.0,0.0,0.0,46,46,1898.4291318658827,0.0,1636.9925216371787,2760.0,0.0,0.0,20,2,2,1,1,1,2,2,2,2,50.0,1,,5,120991,2,2,3,0,1,,200.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,365.242515440354,960.0,76646.24699253288,1,1,0,1,135.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03600959092320447,38323.12349626644,9,5,9,9_1,9_3,9_0_0 +20971,2,32.0,0.0,2,300,950.0,0.0,0.0,65,54,1434.368677409778,0.0,1619.9405162034582,2370.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,2,120992,1,3,3,0,1,,430.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2013.80309681611,950.0,35101.72189455743,1,1,1,2,135.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06751805529994447,19500.95660808746,5,3,5,5_1,5_0,5_0_1 +20972,1,38.0,42.0,1,300,710.0,0.0,0.0,56,62,0.0,0.0,1210.6923857941633,2535.0,2528.7003363486506,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,,1,120993,1,1,1,0,1,,274.0,357.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1475.98710086999,710.0,32854.47490358881,1,1,2,3,90.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07715843906922686,15644.988049328003,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +20973,2,43.0,0.0,1,111,290.0,350.0,0.0,0,37,0.0,0.0,494.50815757789775,640.0,0.0,664.4764167789261,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,120994,2,1,1,0,1,,216.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,345.667235742668,290.0,48830.16396775605,0,1,1,2,140.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013106652691615171,48830.16396775605,10,5,10,10_1,10_3,10_1_0 +20974,2,47.0,0.0,1,111,0.0,0.0,2496.0,55,43,0.0,0.0,1573.2744528752005,2496.0,0.0,2987.043440321443,20,2,2,2,2,1,2,2,2,2,30.0,1,,1,120995,2,2,3,0,1,,428.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,808.403474636392,0.0,52845.08672047072,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04723239481473154,22976.124661074227,6,3,6,6_1,6_4,6_1_0 +20975,2,72.0,0.0,1,300,1200.0,0.0,0.0,0,75,0.0,198.6490915515336,2046.2406520464733,1395.0,62.351515142843446,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,120996,2,1,1,0,1,,104.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1544.84537314789,1200.0,19824.014419080424,0,5,0,1,130.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07036919821130305,19824.014419080424,5,3,5,5_1,5_0,5_1_0 +20976,2,41.0,0.0,9,221,420.0,,,55,62,0.0,0.0,,684.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,120997,2,3,0,0,2,,900.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,85.20855677938023,420.0,45401.145814384014,1,1,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015065699063993552,17461.97915937847,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +20977,2,55.0,0.0,2,112,400.0,0.0,0.0,0,37,0.0,198.6490915515336,682.0802173488245,2050.0,2078.3838380947814,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,120998,2,1,1,0,1,,250.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,1674.08050172259,400.0,37296.094959660346,0,1,1,2,120.0,9,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05496554001745466,24864.063306440232,7,4,7,7_1,7_1,7_0_1 +20978,2,44.0,0.0,8,112,430.0,435.0,0.0,52,42,0.0,0.0,733.2362336499863,865.0,0.0,825.8492608538082,50,0,0,0,0,0,0,0,0,2,40.0,1,2002.0,6,120999,2,1,1,0,1,,420.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1287.47641154664,430.0,67649.77158524016,1,1,1,2,125.0,9,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012786443763673045,28187.4048271834,8,4,8,8_1,8_0,8_0_0 +20979,2,80.0,0.0,1,212,493.0,0.0,0.0,77,78,0.0,0.0,840.6638678824262,529.0,49.88121211427475,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,121000,2,3,4,0,2,,137.0,166.0,41,0.0,6.0,4.0,2.0,1.5,2,2,1196.05557658273,493.0,21837.411195001554,5,5,2,3,145.0,2,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024224483171388225,14558.274130001037,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +20980,2,72.0,0.0,9,112,1300.0,0.0,0.0,0,77,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,2005.0,6,121001,2,2,0,0,1,,300.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,827.070787676459,1300.0,22391.283997944898,0,5,0,1,60.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.05805830519229338,22391.283997944898,6,3,6,6_0,6_1,6_0_0 +20981,1,91.0,87.0,2,112,296.0,0.0,0.0,0,72,0.0,0.0,504.7393608381301,296.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121002,2,1,0,1,1,1068.0,145.0,309.0,11,0.0,3.0,4.0,1.0,1.0,1,1,3734.22879810946,296.0,14932.946832003467,0,5,2,3,72.0,10,1,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019821941598668867,14932.946832003467,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +20982,2,80.0,0.0,1,112,300.0,0.0,0.0,0,72,1655.8520761274644,0.0,511.56016301161833,2050.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121003,1,1,2,0,2,,400.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1011.71919865279,300.0,13584.527928628038,0,5,0,1,120.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15090697378447943,13584.527928628038,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +20983,0,35.0,0.0,2,111,0.0,0.0,1380.0,85,63,0.0,0.0,869.8392407723464,1380.0,0.0,1651.4903636392596,71,2,2,2,2,2,2,2,1,0,,2,,2,121004,2,2,0,0,1,,410.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1705.31579183128,0.0,11527.156342631042,6,1,5,0,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.11971729704891108,5489.122067919544,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +20984,2,25.0,0.0,9,112,0.0,0.0,0.0,65,34,0.0,0.0,0.0,1798.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,70.0,1,2005.0,6,121005,2,1,1,0,1,,192.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,757.846506287243,0.0,45367.10605999954,1,1,1,2,96.0,9,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03963223921803793,30244.737373333028,8,4,8,8_1,8_0,8_0_0 +20985,2,33.0,0.0,1,111,562.0,1142.0,0.0,52,63,0.0,0.0,958.3227053750984,1704.0,0.0,2168.091622747239,43,0,0,0,0,0,0,0,0,2,8.0,1,,1,121006,2,1,1,0,1,,393.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,327.817181472309,562.0,37793.20546454226,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04508746953466807,17996.764506924887,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +20986,2,35.0,0.0,7,112,1650.0,0.0,0.0,62,46,0.0,728.3800023556231,2813.5808965639008,2268.0,94.22006732696343,0.0,20,2,2,1,2,1,2,2,2,3,130.0,1,,5,121007,2,3,3,0,1,,1500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,921.42289851245,1650.0,54082.19612595753,1,1,1,2,75.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.041936166843480685,25753.426726646445,7,4,7,7_1,7_0,7_0_0 +20987,1,91.0,72.0,9,111,579.0,,,0,77,0.0,0.0,,717.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,2,2010.0,6,121008,2,2,0,0,2,,280.0,341.0,11,0.0,4.0,2.0,1.0,1.0,1,1,143.16250585251873,579.0,18149.760226298768,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03950465411444259,18149.760226298768,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +20988,2,49.0,0.0,7,120,1400.0,0.0,0.0,11,11,0.0,132.4327277010224,2387.2807607208856,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,121009,1,1,2,0,1,,334.0,,43,2.0,0.0,6.0,5.0,3.0,5,4,727.321270354766,1400.0,87954.82746162506,1,1,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017054208885287785,29318.275820541687,8,4,8,8_1,8_0,8_0_0 +20989,1,34.0,390.0,2,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,821.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121010,1,2,0,0,1,,437.0,327.0,31,0.0,2.0,4.0,3.0,1.6,1,1,345.07100825767,0.0,16701.659596711896,0,6,2,3,90.0,2,3,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04915679158983893,10438.537247944934,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +20990,2,54.0,0.0,2,111,390.0,1200.0,0.0,0,45,0.0,0.0,665.0282119151038,1590.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,121011,2,2,0,0,1,,0.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,956.499108754104,390.0,33723.97006981914,0,1,0,1,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04714747393940286,16861.98503490957,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +20992,2,63.0,0.0,7,120,687.0,0.0,0.0,56,78,369.1389978628105,529.7309108040896,1171.472773296606,1577.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,121013,2,1,2,0,1,,275.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,248.090925909346,687.0,58401.82588182733,1,5,0,1,155.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02700258041916304,29200.912940913666,8,4,8,8_1,8_0,8_0_0 +20993,2,54.0,0.0,8,111,1800.0,,,52,63,0.0,0.0,,1892.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,121014,2,1,0,0,1,,1800.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,93.17524375944159,1800.0,39813.47292507066,4,1,1,2,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04752160163371737,22118.596069483698,6,3,6,6_1,6_2,6_0_0 +20994,2,56.0,0.0,6,111,720.0,,,52,55,0.0,185.40581878143135,,980.0,166.2707070475825,,50,2,2,1,2,1,2,2,2,1,5.0,1,,4,121015,2,2,0,0,2,,420.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,110.82495320151465,720.0,45667.76523384164,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.021459337784144095,22833.88261692082,6,3,6,6_1,6_2,6_0_0 +20995,2,65.0,0.0,2,111,0.0,0.0,300.0,0,23,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,12,0,0,0,0,0,0,0,0,2,45.0,2,,2,121016,1,2,0,1,2,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1183.26527389967,0.0,247770.33330053368,0,1,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0012107987102560587,247770.33330053368,10,5,10,10_0,10_4,10_0_1 +20996,2,34.0,0.0,7,111,708.0,1200.0,0.0,43,47,0.0,0.0,1207.2819847074193,1908.0,0.0,2278.2048575277468,42,2,2,2,2,2,2,2,1,2,45.0,1,,5,121017,2,2,3,0,1,,299.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1140.51140895273,708.0,58463.513734391076,1,1,1,2,95.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.032635739423195524,32479.729852439486,8,4,8,8_1,8_2,8_0_0 +20997,2,67.0,0.0,6,111,153.0,0.0,0.0,0,78,0.0,0.0,260.89568313592537,153.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,121018,2,1,0,1,2,353.0,0.0,569.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1012.59608668446,153.0,24614.503834083705,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006215847413838214,24614.503834083705,7,4,7,7_0,7_4,7_0_0 +20998,2,32.0,0.0,2,300,650.0,0.0,0.0,46,11,1582.0242765549024,0.0,1108.3803531918397,2180.0,41.567676761895626,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,121019,2,1,1,0,1,,0.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1166.03875658608,650.0,40274.60441842673,1,1,1,2,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05412840253752041,19178.38305639368,5,3,5,5_1,5_0,5_0_1 +20999,2,74.0,0.0,2,112,460.0,1062.0,0.0,78,78,0.0,198.6490915515336,784.3922499511482,1672.0,0.0,2016.211298912056,50,0,0,0,0,0,0,0,0,0,,1,,2,121020,2,1,2,0,1,,643.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,927.279552832049,460.0,30185.486209003033,5,5,0,1,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05539085865382928,20123.65747266869,5,3,5,5_1,5_2,5_0_1 +21000,2,52.0,0.0,5,120,1200.0,0.0,0.0,46,62,0.0,0.0,2046.2406520464733,1300.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,121021,1,1,2,0,1,,500.0,,43,3.0,5.0,5.0,3.0,2.0,3,3,249.056800435699,1200.0,55147.199365978435,1,1,0,1,115.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023573273256773938,27573.599682989217,7,4,7,7_1,7_0,7_0_0 +21001,1,64.0,359.0,2,111,370.0,700.0,0.0,78,78,0.0,0.0,630.9242010476627,1070.0,0.0,1328.9528335578523,71,1,2,2,2,2,2,1,2,0,,1,,2,121022,2,3,3,0,1,,500.0,366.0,41,2.0,8.0,4.0,5.0,3.0,5,4,214.142397653494,370.0,19741.627755576228,6,5,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.05420019125311323,6580.542585192076,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +21002,2,64.0,0.0,9,111,480.0,,,0,77,0.0,0.0,,500.0,27.711784507930417,,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,121023,2,1,0,0,2,,300.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,100.59254545713368,480.0,45397.77222193063,0,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011013756304069507,45397.77222193063,10,5,10,10_1,10_2,10_0_0 +21004,1,32.0,377.0,5,111,480.0,0.0,0.0,55,42,0.0,0.0,818.4962608185893,480.0,0.0,0.0,44,2,1,2,2,1,2,2,2,3,60.0,2,,3,121025,1,1,0,1,1,1152.0,0.0,390.0,43,2.0,0.0,3.0,3.0,1.8,2,2,419.239421662646,480.0,15830.161273930957,4,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.030321864173958987,8794.534041072753,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +21005,2,64.0,0.0,2,111,1380.0,0.0,0.0,54,75,0.0,953.5156394473612,2353.1767498534446,2100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121026,2,1,2,0,1,,250.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1348.94990773506,1380.0,45109.06540705941,1,5,0,1,110.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04655383526680997,30072.71027137294,8,4,8,8_1,8_3,8_0_1 +21006,1,31.0,120.0,9,211,640.0,,,56,63,0.0,0.0,,728.0,121.93185183489385,,43,0,0,0,0,0,0,0,0,1,15.0,1,2006.0,6,121027,2,3,0,0,2,,168.0,559.0,43,2.0,0.0,3.0,3.0,1.8,2,2,109.62712596829566,640.0,40604.97926487671,4,1,2,3,76.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017928835654639028,22558.321813820396,6,3,6,6_1,6_2,6_0_0 +21007,1,59.0,208.0,1,111,380.0,1300.0,0.0,85,78,0.0,0.0,647.9762064813832,1680.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,2,,1,121028,2,1,0,0,2,,0.0,195.0,41,0.0,2.0,2.0,2.0,1.5,2,2,2333.63803942761,380.0,9329.973190724144,7,7,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.18006482608870253,6219.982127149429,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +21008,2,36.0,0.0,2,111,271.0,569.0,0.0,68,46,0.0,0.0,462.10934725382856,840.0,0.0,1080.2488032777399,31,2,2,1,2,2,2,2,1,2,30.0,2,,2,121029,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1849.67473720469,271.0,46810.0,1,1,1,2,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01794488357188635,26005.555555555555,7,4,7,7_0,7_3,7_0_1 +21009,1,84.0,221.0,9,111,830.0,0.0,0.0,0,78,0.0,0.0,1415.3164509988108,830.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,121030,2,1,1,0,1,,70.0,313.0,11,0.0,5.0,3.0,1.0,1.0,1,1,8441.98553718179,830.0,14490.0,0,5,2,3,65.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05728088336783989,14490.0,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +21010,2,31.0,0.0,9,112,1200.0,0.0,0.0,46,21,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2006.0,6,121031,1,1,0,0,1,,500.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1279.13969471011,1200.0,17305.369833443216,4,1,1,2,75.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06934263824174154,11536.913222295478,2,1,2_0,2_0_0,2_1_0,2_0_0_0 +21011,1,65.0,320.0,2,111,537.0,0.0,0.0,77,90,0.0,0.0,915.6926917907969,633.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,121032,2,1,0,0,2,,0.0,320.0,41,0.0,2.0,2.0,2.0,1.5,2,2,440.866936914303,537.0,12054.227603473175,6,5,2,3,38.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05251269685812256,8036.151735648783,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21012,2,87.0,0.0,2,111,591.0,156.0,0.0,77,75,0.0,0.0,1007.7735211328882,747.0,0.0,296.1666314786071,70,0,0,0,0,0,0,0,0,0,,2,,2,121033,2,1,0,0,2,,238.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1724.72490117739,591.0,69558.71144472057,5,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010739129355402924,46372.47429648038,10,5,10,10_0,10_3,10_0_1 +21013,1,26.0,360.0,2,111,900.0,360.0,0.0,84,53,0.0,0.0,1534.680489034855,1260.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,0,,2,,2,121034,2,1,0,1,1,684.0,0.0,474.0,42,1.0,2.0,3.0,4.0,2.5,4,4,364.477952344921,900.0,7923.998533837006,3,4,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.15901063012815517,3169.5994135348024,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +21014,2,37.0,0.0,1,111,936.0,1817.0,0.0,56,48,0.0,0.0,1596.0677085962493,2753.0,0.0,3449.581855106597,50,0,0,0,0,0,0,0,0,3,25.0,1,,1,121035,2,1,1,0,1,,703.0,,43,2.0,2.0,6.0,5.0,2.5999999999999996,3,2,699.120206604976,936.0,51117.11791315026,1,1,1,2,100.0,4,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05385671400092317,19660.429966596257,5,3,5,5_1,5_2,5_1_0 +21015,2,39.0,0.0,6,111,696.0,,,0,63,0.0,0.0,,960.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,121036,1,2,0,0,2,,420.0,,22,3.0,0.0,5.0,5.0,2.8,4,4,79.48466493293883,696.0,24777.184227087982,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03874532276151329,8848.994366817136,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21016,2,54.0,0.0,7,112,1694.0,0.0,0.0,52,63,0.0,0.0,2888.6097204722714,1819.0,173.19865317456512,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,121037,2,1,2,0,1,,1338.0,,43,4.0,1.0,4.0,4.0,2.5,4,4,590.802250437505,1694.0,79102.90540704854,1,1,1,2,86.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022995362694199044,31641.16216281942,8,4,8,8_1,8_0,8_0_0 +21018,1,67.0,337.0,2,111,200.0,200.0,0.0,85,78,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,121039,2,1,0,1,1,579.0,0.0,392.0,41,0.0,7.0,5.0,4.0,2.5,4,4,299.367947977751,200.0,13850.759338048854,6,5,2,3,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02887928309469477,5540.3037352195415,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21019,2,59.0,0.0,5,211,1600.0,,,0,71,0.0,0.0,,1600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,121040,2,1,0,0,2,,900.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,81.255346956633,1600.0,13965.073327535381,0,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11457154305414415,13965.073327535381,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +21020,2,34.0,0.0,2,112,800.0,1621.0,0.0,42,38,0.0,860.8127300566456,1364.160434697649,3071.0,0.0,3077.4750617103978,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,121041,1,2,2,0,1,,500.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,679.661400565015,800.0,78494.76786077407,1,1,1,2,155.0,9,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03912362675493255,37378.46088608289,9,5,9,9_1,9_1,9_0_1 +21021,2,42.0,0.0,5,112,0.0,0.0,0.0,52,48,0.0,0.0,0.0,1823.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,121042,2,1,2,0,1,,127.0,990.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1063.48360221514,0.0,34121.87535302261,1,1,2,3,100.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05342613737197518,22747.916902015073,6,3,6,6_1,6_0,6_0_0 +21022,2,61.0,0.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,877.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,25.0,1,,1,121043,2,1,2,0,1,,167.0,500.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1422.83310882177,0.0,25722.01146266961,0,1,2,3,95.0,9,7,2,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0340953117633429,25722.01146266961,7,4,7,7_1,7_3,7_1_0 +21023,2,48.0,0.0,1,211,0.0,0.0,1000.0,0,42,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,121044,2,1,1,0,1,,200.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,2268.71061957179,0.0,39884.553162986784,0,1,0,1,100.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025072363125482094,39884.553162986784,9,5,9,9_1,9_1,9_1_0 +21024,2,28.0,0.0,8,111,420.0,,,0,52,0.0,0.0,,464.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,121045,1,1,0,0,2,,255.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,150.83168186420028,420.0,32201.852533778267,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014409108901833684,32201.852533778267,8,4,8,8_1,8_2,8_0_0 +21025,2,64.0,0.0,1,111,700.0,0.0,0.0,0,72,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,1,121046,1,3,0,0,2,,300.0,400.0,11,0.0,1.0,1.0,1.0,1.0,1,1,556.2382377507,700.0,10522.021564554077,0,5,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.06652713983766351,10522.021564554077,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +21026,2,64.0,0.0,9,111,1017.0,0.0,0.0,86,74,0.0,0.0,1734.1889526093862,1017.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2009.0,6,121047,2,1,0,0,1,,0.0,,41,0.0,3.0,6.0,3.0,2.0,3,3,1790.02641927059,1017.0,91072.56845822925,5,5,1,2,122.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01116691905385814,45536.28422911462,10,5,10,10_0,10_3,10_0_0 +21027,2,52.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1056.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,121048,1,1,0,0,1,,0.0,223.0,12,1.0,0.0,2.0,1.0,1.0,1,1,569.151619113063,0.0,19234.825065423243,0,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05490042131437309,19234.825065423243,5,3,5,5_0,5_4,5_1_0 +21028,2,48.0,0.0,1,111,500.0,0.0,0.0,85,21,0.0,662.163638505112,852.6002716860306,1088.0,121.93185183489385,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121049,2,1,1,0,1,,400.0,,42,1.0,3.0,6.0,3.0,2.0,3,2,429.596681060337,500.0,18099.778036952208,6,1,0,1,140.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060111234390761985,9049.889018476104,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +21029,2,33.0,0.0,6,112,750.0,0.0,0.0,0,46,1033.5891940158695,0.0,1278.9004075290459,1730.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,1.0,1,,4,121050,2,1,1,0,1,,1000.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,1749.88358471176,750.0,27950.36750791235,0,1,0,1,135.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06189542944328949,27950.36750791235,7,4,7,7_1,7_0,7_0_0 +21030,2,61.0,0.0,2,112,900.0,0.0,0.0,75,21,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,121051,2,2,1,0,1,,500.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,1488.14578213034,900.0,41588.37064370304,5,1,0,1,140.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023083376077041744,20794.18532185152,5,3,5,5_1,5_0,5_0_1 +21031,2,62.0,0.0,2,111,365.0,37.0,0.0,0,77,0.0,0.0,622.3981983308023,402.0,0.0,70.2446497737722,50,0,0,0,0,0,0,0,0,0,,2,,2,121052,2,2,0,0,1,,100.0,564.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2348.63588021658,365.0,21492.009343400307,0,5,2,3,33.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01870462615090221,21492.009343400307,6,3,6,6_0,6_2,6_0_1 +21032,2,48.0,0.0,9,300,693.0,0.0,0.0,45,43,0.0,437.0280014133739,1181.7039765568384,1143.0,166.2707070475825,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,121053,2,1,1,0,1,,416.0,,43,2.0,0.0,6.0,5.0,3.0,5,3,779.583623460101,693.0,63448.14070274825,1,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01801471228849565,21149.380234249416,5,3,5,5_1,5_0,5_0_0 +21033,2,40.0,0.0,1,112,492.0,636.0,0.0,85,38,0.0,0.0,838.958667339054,1128.0,0.0,1207.4485744897058,12,0,0,0,0,0,0,0,0,4,25.0,2,,1,121054,2,2,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,1070.58631769877,492.0,54738.94930530564,6,1,1,2,55.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020606899005470445,30410.52739183647,8,4,8,8_0,8_2,8_1_0 +21034,2,32.0,0.0,5,111,1000.0,0.0,0.0,0,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,121055,2,1,1,0,1,,566.0,,22,1.0,1.0,6.0,2.0,1.5,2,2,503.88235509193,1000.0,74031.54264255006,0,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013507755806580264,49354.36176170004,10,5,10,10_1,10_4,10_0_0 +21035,2,30.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,462.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,1,121056,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,860.291119283645,0.0,74874.26704820164,1,1,1,2,44.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006170344207878246,49916.17803213443,10,5,10,10_0,10_4,10_1_0 +21036,2,81.0,0.0,1,111,350.0,1880.0,0.0,0,77,0.0,0.0,596.8201901802214,2230.0,0.0,3569.1876101268035,70,0,0,0,0,0,0,0,0,0,,1,,1,121057,2,2,2,0,1,,100.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,511.276815790985,350.0,17870.142293396162,0,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12478915743295942,17870.142293396162,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +21037,2,48.0,0.0,2,111,400.0,200.0,0.0,0,62,0.0,0.0,682.0802173488245,600.0,0.0,379.7008095879578,31,2,2,1,2,1,2,2,2,2,20.0,1,,2,121058,2,2,5,1,1,550.0,0.0,650.0,12,1.0,1.0,2.0,1.0,1.0,1,1,942.820272575253,400.0,21746.276846852605,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.02759092989689587,21746.276846852605,6,3,6,6_1,6_4,6_0_1 +21038,2,88.0,0.0,5,111,420.0,,,0,77,0.0,0.0,,466.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,3,121059,2,2,0,0,2,,110.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,120.33078621742145,420.0,13004.047095273247,0,5,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03583499787303779,13004.047095273247,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +21039,2,59.0,0.0,6,111,1440.0,,,0,56,0.0,0.0,,1632.0,266.03313127613205,,71,0,0,0,0,0,0,0,0,0,,1,,4,121060,1,3,0,0,2,,580.0,,22,1.0,3.0,7.0,2.0,1.5,2,2,50.95258801056713,1440.0,4688.247173821004,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3481045131564365,3125.4981158806695,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21040,2,48.0,0.0,5,111,424.0,0.0,0.0,0,63,0.0,0.0,723.005030389754,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,121061,2,1,0,0,1,,300.0,307.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2257.85244636805,424.0,20373.281575541663,0,1,2,3,65.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07117164677784359,20373.281575541663,5,3,5,5_0,5_3,5_0_0 +21041,2,50.0,0.0,1,111,300.0,996.0,0.0,0,46,0.0,132.4327277010224,511.56016301161833,1396.0,0.0,1890.91003174803,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,121062,1,1,2,0,1,,300.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,436.999962963389,300.0,20836.108060806197,0,1,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06699907659943215,20836.108060806197,5,3,5,5_1,5_3,5_1_0 +21042,2,32.0,0.0,9,112,500.0,0.0,0.0,52,63,1582.0242765549024,0.0,852.6002716860306,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,121063,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1026.10742569381,500.0,43357.46352245632,1,1,1,2,120.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04612815966423247,20646.411201169674,5,3,5,5_1,5_0,5_0_0 +21043,2,45.0,0.0,2,111,840.0,,,0,55,0.0,0.0,,1075.0,325.6134679681824,,50,0,0,0,0,0,0,0,0,0,,1,,2,121064,2,2,0,0,2,,600.0,,32,2.0,9.0,7.0,4.0,2.5,4,3,66.80369810149978,840.0,19890.193843138888,0,4,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05404673320319705,7956.077537255555,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +21044,2,49.0,0.0,1,400,0.0,0.0,0.0,0,11,0.0,0.0,0.0,2010.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,5.0,1,,1,121065,1,1,1,0,2,,176.0,480.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1092.7883493495,0.0,48113.37178066942,0,1,2,3,105.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04177632798555101,48113.37178066942,10,5,10,10_1,10_0,10_1_0 +21045,2,45.0,0.0,1,111,0.0,0.0,0.0,46,48,0.0,0.0,0.0,946.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,2,,1,121066,1,3,0,0,1,,0.0,2600.0,43,2.0,0.0,4.0,4.0,2.1,2,2,893.276913626541,0.0,102599.53215058999,1,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.009220314948527375,48856.920071709515,10,5,10,10_0,10_4,10_1_0 +21046,1,27.0,413.0,9,111,223.0,,,0,85,0.0,0.0,,283.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,121067,2,2,0,0,2,,325.0,439.0,31,0.0,0.0,2.0,3.0,1.6,1,1,179.08501252923145,223.0,13209.665836179509,0,6,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021423706209501594,8256.041147612192,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21047,2,55.0,0.0,2,111,400.0,1600.0,0.0,38,38,0.0,0.0,682.0802173488245,2000.0,0.0,3037.6064767036623,12,0,0,0,0,0,0,0,0,2,45.0,2,,2,121068,2,3,0,1,1,,0.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,795.170319105009,400.0,129879.96929170316,1,1,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015398833329780912,64939.98464585158,10,5,10,10_0,10_4,10_0_1 +21048,2,67.0,0.0,1,112,659.0,0.0,0.0,0,77,0.0,317.83854648245375,1123.7271580821882,1019.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,121069,1,1,2,0,1,,138.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1769.24368280645,659.0,8710.04157884023,0,5,0,1,80.0,7,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11699140477991646,8710.04157884023,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +21049,2,68.0,0.0,6,111,423.0,1251.0,0.0,77,78,0.0,0.0,721.2998298463818,1674.0,0.0,2375.0285639726762,71,0,0,0,0,0,0,0,0,0,,1,,4,121070,2,1,2,0,2,,200.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,1930.27186608768,423.0,47523.96035351708,5,5,0,1,85.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03522433710380185,23761.98017675854,6,3,6,6_1,6_2,6_0_0 +21050,1,62.0,158.0,2,111,200.0,0.0,0.0,0,72,0.0,0.0,341.04010867441224,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121071,2,1,0,1,1,748.0,0.0,213.0,11,0.0,4.0,2.0,1.0,1.0,1,1,421.293238630943,200.0,9882.574514928121,0,5,2,3,45.0,5,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02023764148683018,9882.574514928121,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21051,2,44.0,0.0,7,111,1200.0,,,85,31,0.0,0.0,,1200.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,121072,2,1,0,0,2,,250.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,89.89486210267637,1200.0,138338.22641218576,6,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008674391967586306,76854.57022899209,10,5,10,10_1,10_2,10_0_0 +21052,2,73.0,0.0,2,120,1037.0,0.0,0.0,0,77,1898.4291318658827,0.0,1768.2929634768275,3011.0,241.09252521899464,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121073,2,1,1,0,1,,487.0,,21,3.0,0.0,6.0,5.0,3.0,5,5,1518.05693275944,1037.0,42689.308202164626,0,5,0,1,120.0,0,3,8,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07053288345036528,14229.769400721541,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +21053,2,64.0,0.0,2,111,512.0,275.0,0.0,77,72,0.0,0.0,873.0626782064953,787.0,0.0,522.088613183442,50,0,0,0,0,0,0,0,0,0,,2,,2,121074,2,2,0,1,1,646.0,0.0,563.0,41,0.0,2.0,4.0,2.0,1.5,2,2,221.435732676478,512.0,23339.00672667534,5,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03372037247414208,15559.33781778356,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +21054,2,32.0,0.0,2,111,280.0,90.0,0.0,54,53,0.0,0.0,477.4561521441771,370.0,0.0,170.865364314581,20,0,0,0,0,0,0,0,0,2,35.0,2,,2,121075,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,721.210021484657,280.0,72729.05442570217,1,1,1,2,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005087375367680339,34632.88305985818,9,5,9,9_0,9_4,9_0_1 +21055,2,56.0,0.0,5,112,1570.0,0.0,0.0,63,56,0.0,0.0,2677.164853094136,1619.0,67.89387204442953,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,121076,2,3,2,0,1,,400.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,842.943964076789,1570.0,22437.50597626463,1,1,0,1,98.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0721559696390788,14958.337317509753,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +21056,2,37.0,0.0,2,111,750.0,0.0,0.0,46,65,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,121077,2,2,0,1,1,,0.0,330.0,43,2.0,0.0,4.0,4.0,2.1,2,2,529.507808361704,750.0,49003.04476724507,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015305171414599932,23334.783222497652,6,3,6,6_0,6_4,6_0_1 +21057,2,60.0,0.0,8,112,1100.0,0.0,0.0,0,75,0.0,0.0,1875.7205977092674,1130.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,121078,2,1,1,0,1,,220.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,190.955336916396,1100.0,25291.404746499662,0,5,1,2,100.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04467921063800904,25291.404746499662,7,4,7,7_1,7_0,7_0_0 +21058,1,28.0,363.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,248.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121079,2,2,0,1,1,924.0,0.0,314.0,31,0.0,0.0,5.0,4.0,1.9,1,1,313.995748570441,0.0,830.9921079985489,0,6,2,3,87.0,4,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2984384540032636,437.36426736765736,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21059,2,40.0,0.0,1,111,1560.6,1664.0,0.0,31,22,0.0,0.0,2661.1359679864386,3225.0,0.0,3159.110735771809,41,0,0,0,0,0,0,0,0,0,,1,,1,121080,2,2,2,0,1,,540.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,945.28074657834,1560.6,44205.42891559038,1,1,1,2,100.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07295484014323422,18418.928714829326,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +21060,2,60.0,0.0,5,112,1546.0,0.0,0.0,77,77,0.0,0.0,2636.2400400532065,1606.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121081,1,1,2,0,1,,236.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,485.942910553448,1546.0,23966.170966244787,6,5,0,1,101.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06701112172912288,15977.447310829857,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +21061,1,22.0,269.0,2,111,249.0,572.0,0.0,0,67,0.0,0.0,424.5949352996432,821.0,0.0,1085.9443154215594,71,0,0,0,0,0,0,0,0,0,,2,,2,121082,1,2,0,0,2,,159.0,390.0,22,2.0,0.0,3.0,2.0,1.5,2,2,385.436938841433,249.0,22541.73121903612,0,1,2,3,60.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.036421337475032935,15027.820812690747,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +21062,2,66.0,0.0,9,112,0.0,0.0,0.0,75,74,0.0,662.163638505112,0.0,2404.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2009.0,6,121083,2,2,2,0,1,,166.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1714.51751636427,0.0,52790.93665981957,5,5,0,1,194.0,6,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045538119838471086,35193.95777321305,9,5,9,9_1,9_0,9_0_0 +21063,1,46.0,30.0,2,111,610.0,1500.0,0.0,85,62,0.0,0.0,1040.1723314569574,2420.0,429.5326598729215,2847.7560719096837,71,2,2,2,2,1,1,2,2,2,30.0,1,,2,121084,1,2,3,0,1,,0.0,510.0,42,1.0,0.0,5.0,4.0,2.3,4,2,1526.17985341138,610.0,45001.5400947293,7,1,2,3,100.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0.053775937332496686,19565.886997708392,5,3,5,5_1,5_2,5_0_1 +21064,1,57.0,150.0,7,211,1800.0,,,0,63,0.0,0.0,,1800.0,0.0,,71,0,0,0,0,0,0,0,0,1,30.0,2,,5,121085,1,3,0,0,2,,348.0,300.0,32,1.0,0.0,3.0,10.0,4.3,4,4,131.59765686282304,1800.0,35382.534632436065,0,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050872556720396575,8228.496426147922,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21065,1,41.0,468.0,9,120,0.0,,,64,68,0.0,0.0,,665.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,121086,1,1,0,0,1,,236.0,510.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,99.20041158463694,0.0,9318.206287202393,1,1,2,3,69.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07136566625631692,3583.9254950778436,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +21066,2,37.0,0.0,1,120,820.0,0.0,0.0,0,69,0.0,198.6490915515336,1398.2644455650902,1170.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121087,2,1,2,0,1,,400.0,,22,3.0,2.0,5.0,3.0,2.0,3,3,1880.95943700111,820.0,67378.23626394504,0,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01736465756415298,33689.11813197252,9,5,9,9_1,9_0,9_1_0 +21068,2,65.0,0.0,2,111,270.0,0.0,0.0,0,74,0.0,0.0,460.40414671045653,270.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,121089,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1309.90832188634,270.0,33307.52017165379,0,5,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008106277459520455,33307.52017165379,8,4,8,8_0,8_4,8_0_1 +21069,2,50.0,0.0,8,111,780.0,,,48,45,0.0,0.0,,843.0,87.29212119998083,,10,0,0,0,0,0,0,0,0,2,25.0,1,1999.0,6,121090,2,2,0,0,2,,192.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,101.3755417832853,780.0,89422.09142294097,1,1,1,2,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009427200668041308,49678.93967941165,10,5,10,10_1,10_3,10_0_0 +21070,1,29.0,270.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1075.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,2008.0,6,121091,2,2,0,0,1,,0.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,582.09596116206,0.0,9594.747595373656,0,1,2,3,42.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11204046686109156,9594.747595373656,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +21071,2,58.0,0.0,6,112,740.0,0.0,0.0,54,75,0.0,0.0,1261.8484020953254,2540.0,2494.060605713738,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,121092,2,2,2,0,1,,340.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1069.7627367242,740.0,62562.64181815359,1,5,0,1,125.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04059930856792842,41708.427878769064,9,5,9,9_1,9_0,9_0_0 +21072,1,23.0,270.0,2,111,0.0,0.0,0.0,67,55,0.0,0.0,0.0,318.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,10.0,2,,2,121093,1,2,0,0,1,,0.0,580.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1755.81030001255,0.0,29126.12314577252,4,1,2,3,42.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010918033904081593,19417.41543051501,5,3,5,5_0,5_3,5_0_1 +21073,2,72.0,0.0,5,112,2017.0,0.0,0.0,75,75,0.0,331.081819252556,3439.3894959814475,2387.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,121094,2,2,1,0,1,,403.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,644.495213600472,2017.0,70992.74408843879,5,5,0,1,140.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03362315445965026,47328.496058959194,10,5,10,10_1,10_0,10_0_0 +21074,2,38.0,0.0,2,112,540.0,0.0,0.0,46,38,1265.6194212439218,0.0,920.8082934209131,1806.0,91.44888887617039,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,2,121095,2,2,2,0,1,,586.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,1859.24630773783,540.0,64771.94046150075,1,1,1,2,92.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02788244395848312,23132.835879107413,6,3,6,6_1,6_1,6_0_1 +21075,2,37.0,0.0,9,211,500.0,,,52,52,0.0,0.0,,4155.0,91.44888887617039,,31,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,121096,2,1,0,0,1,,160.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,83.74926491440152,500.0,60439.86743532569,1,1,1,2,114.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06874601444892481,28780.889254916994,8,4,8,8_1,8_2,8_0_0 +21076,2,57.0,0.0,5,111,0.0,0.0,0.0,78,46,0.0,0.0,0.0,3593.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,121097,2,1,2,0,1,,388.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1079.9464208962,0.0,59321.08573249541,5,1,0,1,110.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0605686823771635,39547.390488330275,9,5,9,9_1,9_3,9_0_0 +21077,2,65.0,0.0,7,111,560.0,,,72,75,0.0,0.0,,590.0,41.567676761895626,,31,0,0,0,0,0,0,0,0,0,,2,,5,121098,2,1,0,0,1,,163.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,118.71687961188347,560.0,36981.11221661648,5,5,1,2,101.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01595409019999402,24654.07481107765,7,4,7,7_0,7_2,7_0_0 +21078,2,60.0,0.0,6,111,600.0,1100.0,0.0,47,55,0.0,0.0,1023.1203260232367,1700.0,0.0,2088.354452733768,42,0,0,0,0,0,0,0,0,2,5.0,1,,4,121099,2,1,2,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,290.6692822759,600.0,69354.08211043129,4,1,0,1,95.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02451189530982646,46236.05474028753,10,5,10,10_1,10_2,10_0_0 +21079,2,70.0,0.0,1,111,397.0,1300.0,0.0,0,77,0.0,0.0,676.9646157187083,1697.0,0.0,2468.055262321726,60,0,0,0,0,0,0,0,0,0,,1,,1,121100,1,2,3,0,1,,232.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1403.43995390802,397.0,25525.726281458537,0,5,0,1,110.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0664819477137727,25525.726281458537,7,4,7,7_1,7_2,7_1_0 +21080,1,40.0,100.0,2,111,0.0,0.0,900.0,0,53,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,121101,2,1,0,0,1,,0.0,250.0,32,1.0,1.0,3.0,2.0,1.3,1,1,1671.44486335379,0.0,16765.739029826316,0,1,2,3,60.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.053680902368747146,12896.722330635628,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21082,1,36.0,326.0,5,111,0.0,0.0,592.0,67,63,0.0,0.0,373.1484279255283,592.0,0.0,708.465431358291,50,1,2,2,2,1,2,2,2,2,25.0,8,,3,121103,1,3,0,1,1,98.0,1440.0,459.0,43,2.0,1.0,4.0,5.0,2.5999999999999996,3,2,253.88487030516,0.0,38276.734150663324,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.015466314280361373,14721.820827178204,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +21083,2,25.0,0.0,8,112,900.0,2039.0,0.0,0,37,0.0,0.0,1534.680489034855,2939.0,0.0,3871.0497537492297,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,121104,1,3,3,0,1,,928.0,,22,1.0,0.0,4.0,4.0,2.5,4,3,1110.58367448067,900.0,18302.791459798704,0,1,1,2,88.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16057659873661279,7321.116583919482,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +21084,2,58.0,0.0,6,112,507.0,1350.0,0.0,52,53,0.0,0.0,864.5366754896351,1857.0,0.0,2562.980464718715,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,121105,2,1,2,0,1,,107.0,,43,2.0,5.0,4.0,2.0,1.5,2,2,318.863393192613,507.0,47331.37665725021,1,1,1,2,130.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0392340162308705,31554.251104833475,8,4,8,8_1,8_0,8_0_0 +21085,0,81.0,0.0,7,111,240.0,,,77,77,0.0,397.2981831030672,,816.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,121106,2,1,0,0,2,,80.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,72.88563675669825,240.0,24693.170195655122,5,5,5,0,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033045574688647265,16462.11346377008,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +21086,1,52.0,210.0,5,111,650.0,650.0,0.0,85,12,0.0,0.0,1108.3803531918397,1300.0,0.0,1234.027631160863,71,2,2,2,2,1,2,2,2,0,,1,,3,121107,2,3,3,0,1,,500.0,314.0,42,1.0,2.0,3.0,2.0,1.5,2,2,1089.53237523099,650.0,8463.101549636174,6,1,2,3,117.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.15360798784883853,5642.067699757449,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +21087,2,76.0,0.0,5,111,330.0,,,0,78,0.0,0.0,,414.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,3,121108,2,1,0,0,2,,140.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,78.3658136899747,330.0,10092.038958744479,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04102243379087238,10092.038958744479,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +21088,2,30.0,0.0,6,111,420.0,0.0,0.0,0,42,0.0,0.0,716.1842282162656,420.0,0.0,0.0,20,2,2,2,1,1,2,2,2,2,20.0,2,,4,121109,2,1,0,1,1,800.0,0.0,460.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1310.33600413759,420.0,25562.085534499452,0,1,2,3,66.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.01643058425077069,25562.085534499452,7,4,7,7_0,7_2,7_0_0 +21089,0,67.0,0.0,1,111,310.0,1510.0,0.0,0,86,0.0,0.0,528.612168445339,1835.0,20.783838380947813,2866.7411123890815,70,0,0,0,0,0,0,0,0,0,,1,,1,121110,2,1,2,0,1,,240.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,879.340229365458,310.0,10377.567230453045,0,6,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17682371592979704,10377.567230453045,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +21090,2,47.0,0.0,1,111,600.0,2500.0,0.0,33,37,0.0,0.0,1023.1203260232367,3100.0,0.0,4746.260119849472,41,0,0,0,0,0,0,0,0,0,,1,,1,121111,1,1,2,0,1,,258.0,,43,2.0,0.0,8.0,4.0,2.3,3,2,1091.39995818425,600.0,105450.50385615927,1,1,0,1,130.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029397678404918613,45848.04515485186,10,5,10,10_1,10_2,10_1_0 +21091,2,35.0,0.0,2,111,150.0,314.0,0.0,34,37,0.0,0.0,255.78008150580916,464.0,0.0,596.1302710530938,12,0,0,0,0,0,0,0,0,0,,2,,2,121112,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,372.368105369821,150.0,46306.299410608866,1,1,0,1,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010020234955196975,25725.721894782702,7,4,7,7_0,7_3,7_0_1 +21092,1,53.0,360.0,2,111,1440.0,0.0,0.0,85,68,0.0,0.0,2455.488782455768,1440.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121113,2,2,0,1,2,531.0,0.0,750.0,42,1.0,0.0,5.0,9.0,4.199999999999999,5,4,473.571526291562,1440.0,38302.57328850399,6,1,2,3,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.037595385280085006,9119.660306786665,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +21094,2,56.0,0.0,7,111,569.0,650.0,0.0,52,52,0.0,0.0,970.2591091787028,1219.0,0.0,1234.027631160863,60,0,0,0,0,0,0,0,0,3,25.0,2,,5,121115,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,285.171035903734,569.0,51044.11254226262,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023881304606691193,25522.05627113131,7,4,7,7_0,7_4,7_0_0 +21095,1,52.0,147.0,7,111,540.0,354.0,0.0,0,52,0.0,0.0,920.8082934209131,894.0,0.0,672.0704329706853,71,2,1,2,1,1,2,2,2,3,10.0,8,,5,121116,2,2,0,0,1,,0.0,365.0,32,2.0,1.0,4.0,5.0,2.8,4,3,2155.7922586109,540.0,47835.980701448054,0,1,2,3,100.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.018688861122751844,17084.278821945736,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +21096,2,44.0,0.0,6,111,200.0,,,0,52,0.0,0.0,,464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,4,121117,2,3,0,0,2,,260.0,,32,3.0,0.0,6.0,5.0,2.5999999999999996,3,3,114.36845130277024,200.0,17098.60746423236,0,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027136712797847205,6576.387486243216,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21097,1,37.0,379.0,7,111,0.0,0.0,684.0,85,64,0.0,0.0,431.1377106436847,684.0,0.0,818.5647889342417,71,0,0,0,0,0,0,0,0,0,,2,,5,121118,1,1,0,1,2,1236.0,0.0,453.0,42,1.0,5.0,3.0,6.0,2.6999999999999997,2,2,260.742167006234,0.0,29779.870575469875,6,4,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02296853501315822,11029.581694618473,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +21098,2,61.0,0.0,6,111,660.0,0.0,0.0,78,78,0.0,1986.490915515336,1125.4323586255605,2310.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,121119,2,1,2,0,1,,220.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1155.91435795805,660.0,41811.28452119194,7,5,0,1,130.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055248242823756885,27874.18968079463,7,4,7,7_1,7_3,7_0_0 +21099,2,77.0,0.0,5,111,250.0,911.0,0.0,0,86,0.0,0.0,426.3001358430153,1161.0,0.0,1729.5371876731479,70,0,0,0,0,0,0,0,0,0,,1,,3,121120,2,1,2,0,1,,125.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1117.50709047638,250.0,18129.137451542803,0,5,0,1,83.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06404055367240861,18129.137451542803,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +21100,2,48.0,0.0,9,112,1200.0,0.0,0.0,63,54,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,121121,2,1,1,0,1,,130.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,5570.72828159925,1200.0,38715.60048289192,1,1,1,2,104.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03254502020591887,25810.400321927944,7,4,7,7_1,7_0,7_0_0 +21101,2,69.0,0.0,2,111,0.0,0.0,774.0,78,78,0.0,0.0,487.8663567810117,774.0,0.0,926.2706822150631,71,0,0,0,0,0,0,0,0,0,,1,,2,121122,2,3,3,0,1,,330.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1508.55709311304,0.0,22143.308740287866,5,5,0,1,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03495412582997467,14762.205826858577,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +21102,2,59.0,0.0,2,111,25.0,30.0,0.0,54,47,0.0,0.0,42.63001358430153,55.0,0.0,56.95512143819367,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,121123,1,3,0,1,1,1800.0,0.0,600.0,43,2.0,2.0,4.0,2.0,1.5,2,2,414.411497424332,25.0,64135.46226582777,1,1,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0008575598905335205,42756.97484388518,9,5,9,9_0,9_4,9_0_1 +21103,2,47.0,0.0,1,400,490.0,0.0,0.0,23,33,1455.46233443051,662.163638505112,835.54826625231,2430.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,121124,2,2,4,0,1,,210.0,,43,2.0,1.0,4.0,4.0,2.3,3,2,1134.56048892377,490.0,66057.13179530241,1,1,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03678633834012162,28720.492084914094,8,4,8,8_1,8_0,8_1_0 +21104,2,27.0,0.0,9,111,1250.0,0.0,0.0,45,63,0.0,0.0,2131.5006792150766,1298.0,66.50828281903301,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,121125,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1056.21509298035,1250.0,44973.80592288168,1,1,1,2,140.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028861244303533724,24985.447734934263,7,4,7,7_1,7_2,7_0_0 +21105,2,67.0,0.0,1,120,671.0,0.0,0.0,71,71,2109.365702073203,0.0,1144.189564602653,2791.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121126,2,2,1,0,1,,170.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,282.388581923123,671.0,25131.18655621849,6,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1110572313709315,16754.124370812326,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +21106,2,24.0,0.0,1,111,300.0,650.0,0.0,0,53,0.0,0.0,511.56016301161833,950.0,0.0,1234.027631160863,42,0,0,0,0,0,0,0,0,2,30.0,2,,1,121127,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1688.57748759921,300.0,18139.39950308493,0,1,1,2,42.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05237218574068207,18139.39950308493,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +21107,1,36.0,438.0,2,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,446.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,121128,2,1,0,1,1,916.0,0.0,395.0,42,1.0,1.0,4.0,5.0,2.5999999999999996,3,2,452.591940290261,0.0,8222.906338327271,7,4,2,3,79.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05423873040133966,3162.6562839720277,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +21108,2,61.0,0.0,1,111,650.0,480.0,0.0,78,77,0.0,0.0,1108.3803531918397,1130.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,0,,1,,1,121129,2,2,3,0,2,,400.0,90.0,41,2.0,2.0,3.0,5.0,3.0,5,5,251.67332415515,650.0,54976.43669544734,5,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020554260478172763,18325.478898482444,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +21109,1,48.0,400.0,9,300,0.0,,,81,69,0.0,0.0,,539.0,0.0,,71,0,0,0,0,0,0,0,0,2,90.0,1,2009.0,6,121130,2,1,0,0,2,,388.0,597.0,43,3.0,2.0,3.0,4.0,2.3,3,3,150.61907911320182,0.0,22348.047934080147,4,1,2,3,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024118437618797124,9716.542580034848,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +21110,2,54.0,0.0,5,111,200.0,300.0,0.0,0,52,0.0,0.0,341.04010867441224,500.0,0.0,569.5512143819367,70,0,0,0,0,0,0,0,0,2,15.0,2,,3,121131,2,1,0,1,1,660.0,0.0,288.0,12,1.0,1.0,3.0,1.0,1.0,1,1,650.627080006872,200.0,18892.5904628993,0,1,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026465401924732603,18892.5904628993,5,3,5,5_0,5_2,5_0_0 +21111,1,46.0,170.0,2,111,0.0,0.0,0.0,54,62,0.0,0.0,0.0,1341.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,121132,2,1,0,1,1,,125.0,450.0,43,2.0,1.0,4.0,2.0,1.5,2,2,212.602045012613,0.0,23830.276382069744,1,1,2,3,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05627295204217558,15886.85092137983,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +21112,1,31.0,425.0,6,111,0.0,0.0,1800.0,0,68,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,50,0,0,0,0,0,0,0,0,0,,1,,4,121133,2,2,5,0,1,,300.0,665.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1779.60126443038,0.0,5863.406131220597,0,1,2,3,89.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.30698879793020417,3664.628832012873,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +21113,2,32.0,0.0,8,111,0.0,0.0,0.0,53,53,0.0,0.0,0.0,2149.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,121134,2,1,2,0,1,,1011.0,775.0,43,2.0,0.0,2.0,2.0,1.5,2,2,591.805399778429,0.0,44482.50970076033,1,1,2,3,47.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04831112305615408,29655.006467173556,8,4,8,8_1,8_4,8_0_0 +21114,0,38.0,0.0,1,111,350.0,400.0,0.0,31,34,0.0,0.0,596.8201901802214,750.0,0.0,759.4016191759156,10,0,0,0,0,0,0,0,0,3,40.0,2,,1,121135,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1102.55843572941,350.0,36879.39515544668,1,1,5,0,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020336559123021118,24586.26343696445,7,4,7,7_0,7_4,7_1_0 +21115,2,42.0,0.0,2,111,500.0,900.0,0.0,0,65,0.0,0.0,852.6002716860306,1400.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,121136,2,1,2,0,1,,400.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1017.24585155289,500.0,31127.56267775585,0,1,1,2,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04497621656065149,31127.56267775585,8,4,8,8_1,8_3,8_0_1 +21116,2,60.0,0.0,1,211,600.0,0.0,0.0,0,12,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,60,2,2,2,2,1,2,2,2,0,,1,,1,121137,2,2,3,0,1,,225.0,,22,2.0,1.0,3.0,3.0,2.0,3,3,611.632794938527,600.0,70949.6682576564,0,1,0,1,65.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.009302369076669747,35474.8341288282,9,5,9,9_1,9_1,9_1_0 +21117,2,59.0,0.0,2,111,750.0,,,77,21,0.0,0.0,,835.0,117.77508415870429,,50,0,0,0,0,0,0,0,0,2,1.0,1,,2,121138,2,1,0,0,2,,400.0,,42,1.0,2.0,3.0,3.0,2.0,3,3,137.8944536392573,750.0,8260.0,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10108958837772397,4130.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +21118,1,26.0,320.0,2,111,480.0,0.0,0.0,47,34,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,2,1,2,1,1,2,2,2,1,10.0,2,,2,121139,1,3,0,1,2,229.0,0.0,785.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1226.94164325062,480.0,20122.93703686897,1,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.023853376826680445,13415.291357912647,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +21119,2,34.0,0.0,7,112,0.0,0.0,0.0,67,62,0.0,0.0,0.0,5475.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,5,121140,2,2,5,0,2,,291.0,850.0,43,2.0,0.0,4.0,3.0,2.0,3,2,1235.28553332433,0.0,41481.945390228146,1,1,2,3,98.0,10,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1319851310852393,20740.972695114073,5,3,5,5_1,5_0,5_0_0 +21120,2,63.0,0.0,2,111,500.0,0.0,0.0,77,43,1898.4291318658827,264.8654554020448,852.6002716860306,2650.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121141,2,2,2,0,1,,490.0,650.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1652.69206238751,500.0,36821.26469604642,5,5,2,3,90.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07196928247509479,24547.50979736428,7,4,7,7_1,7_3,7_0_1 +21121,1,74.0,230.0,2,111,44.0,213.0,0.0,0,78,0.0,0.0,75.0288239083707,257.0,0.0,404.38136221117503,71,2,1,2,1,1,2,2,2,0,,2,,2,121142,2,2,0,1,1,272.0,0.0,225.0,11,0.0,7.0,1.0,1.0,1.0,1,1,804.709731508628,44.0,9097.162494035325,0,5,2,3,15.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.028250567159650655,9097.162494035325,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21122,2,59.0,0.0,6,111,680.0,1490.0,0.0,0,38,0.0,0.0,1159.5363694930015,2170.0,0.0,2828.771031430286,12,0,0,0,0,0,0,0,0,2,30.0,1,,4,121143,2,1,2,0,1,,160.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,947.010728452114,680.0,112439.43537557207,0,1,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019299278698365303,112439.43537557207,10,5,10,10_1,10_4,10_0_0 +21123,0,82.0,0.0,1,111,530.0,1420.0,0.0,0,86,0.0,0.0,903.7562879871924,1950.0,0.0,2695.8757480745003,71,2,2,2,1,2,2,2,2,0,,1,,1,121144,2,1,2,0,1,,320.0,,21,0.0,0.0,3.0,2.0,1.5,2,2,254.076239931283,530.0,29757.164666014552,0,5,5,0,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.06553043685062782,19838.109777343034,5,3,5,5_1,5_3,5_1_0 +21124,1,47.0,353.0,2,111,900.0,150.0,0.0,0,56,0.0,0.0,1534.680489034855,1050.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,2,,2,121145,2,1,0,1,1,1150.0,0.0,375.0,32,2.0,0.0,6.0,5.0,3.0,5,3,245.373605605138,900.0,25971.252069517155,0,1,2,3,117.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.040429317662062224,8657.084023172385,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21125,2,50.0,0.0,6,111,1659.0,0.0,0.0,11,46,0.0,0.0,2828.9277014542495,1779.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,2,8.0,1,,4,121146,2,1,1,0,1,,0.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1260.64976896507,1659.0,66151.96055171035,1,1,0,1,114.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02689262699341122,33075.980275855174,8,4,8,8_1,8_2,8_0_0 +21126,2,41.0,0.0,9,112,1247.0,0.0,0.0,0,47,0.0,79.45963662061344,2126.38507758496,1342.0,48.49562288887823,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,121147,2,1,1,0,1,,150.0,,32,1.0,1.0,5.0,2.0,1.3,1,1,784.893736621169,1247.0,39562.08644598552,0,1,1,2,151.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033921365644661965,30432.37418921963,8,4,8,8_1,8_0,8_0_0 +21127,2,58.0,0.0,7,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,816.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,121148,2,3,0,0,1,,47.0,480.0,12,1.0,3.0,3.0,1.0,1.0,1,1,2794.06997600815,0.0,26794.52742816002,0,1,2,3,58.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03045397991018178,26794.52742816002,7,4,7,7_0,7_2,7_0_0 +21128,2,73.0,0.0,5,111,270.0,,,0,72,0.0,0.0,,316.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,3,121149,2,1,0,0,2,,800.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,90.78286028685605,270.0,4058.0578512396696,0,5,0,1,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07786976223206557,4058.0578512396696,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21129,2,42.0,0.0,6,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,357.0,0.0,0.0,50,2,1,2,2,1,2,2,2,1,10.0,2,,4,121150,1,2,0,1,2,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,614.759708428083,0.0,19219.25669679225,0,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.018575120028423594,12812.8377978615,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +21130,1,88.0,97.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,458.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,121151,2,1,0,1,1,748.0,105.0,292.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1517.97427302979,0.0,14988.175956191775,0,5,2,3,68.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030557420818828545,14988.175956191775,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +21131,2,52.0,0.0,8,111,960.0,,,0,68,0.0,0.0,,1248.0,399.049696914198,,71,0,0,0,0,0,0,0,0,1,10.0,7,2002.0,6,121152,1,3,0,0,2,,0.0,,22,1.0,4.0,2.0,5.0,2.5999999999999996,3,2,63.44564007962137,960.0,20773.224827510217,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06007733562615947,7989.7018567347,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21132,2,60.0,0.0,5,111,421.0,2040.0,0.0,31,33,0.0,0.0,717.8894287596378,2461.0,0.0,3872.9482577971694,12,0,0,0,0,0,0,0,0,3,60.0,1,,3,121153,2,2,3,0,1,,666.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,657.887053887187,421.0,124643.08383109764,1,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0197443766983082,83095.38922073175,10,5,10,10_1,10_4,10_0_0 +21133,1,37.0,147.0,1,111,466.0,1451.0,0.0,85,53,0.0,0.0,794.6234532113805,1997.0,110.84713803172167,2754.729373560634,31,2,2,2,2,1,2,2,2,0,,1,,1,121154,2,3,4,0,1,,285.0,,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,1285.60282551108,466.0,44563.96298214209,6,1,1,2,140.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.04481199306265129,16505.171474867442,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +21134,2,64.0,0.0,5,112,880.0,0.0,0.0,0,77,0.0,1721.6254601132912,1500.5764781674138,2360.0,249.40606057137379,0.0,71,2,2,2,2,2,1,2,2,0,,1,,3,121155,1,2,3,0,2,,340.0,390.0,11,0.0,7.0,3.0,1.0,1.0,1,1,791.051921138276,880.0,10983.712700141927,0,5,2,3,70.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.21486359525495466,10983.712700141927,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +21135,1,52.0,289.0,5,112,1440.0,0.0,0.0,52,11,0.0,0.0,2455.488782455768,1550.0,152.4148147936173,0.0,60,2,2,2,1,1,2,2,2,0,,1,,3,121156,1,1,3,0,1,,160.0,840.0,43,2.0,2.0,3.0,3.0,1.8,2,2,1562.86196952779,1440.0,7873.296195740753,1,1,2,3,120.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.1968679904153116,4374.053442078196,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +21136,2,72.0,0.0,2,111,590.0,300.0,0.0,86,78,0.0,0.0,1006.0683205895161,890.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,121157,2,1,0,1,1,122.0,0.0,383.0,41,3.0,6.0,5.0,5.0,3.0,5,5,229.92251880064,590.0,50533.12802880946,6,5,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01761220875724538,16844.37600960315,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +21137,2,51.0,0.0,7,112,1000.0,0.0,0.0,0,22,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,3.0,1,,5,121158,2,1,2,0,1,,120.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,734.134331007043,1000.0,60489.74894864226,0,1,1,2,98.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016531726736856392,60489.74894864226,10,5,10,10_1,10_0,10_0_0 +21138,0,87.0,0.0,2,111,400.0,,,0,86,0.0,0.0,,650.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,2,121159,2,1,0,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,93.57343009790448,400.0,9447.12,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06880403763263301,9447.12,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +21139,2,66.0,0.0,2,111,780.0,360.0,0.0,75,78,0.0,0.0,1330.0564238302077,1140.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,0,,2,,2,121160,2,1,0,1,1,,0.0,680.0,41,3.0,0.0,4.0,5.0,3.0,5,5,198.453925330174,780.0,66248.68511323044,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017207888700757505,22082.89503774348,6,3,6,6_0,6_4,6_0_1 +21140,2,31.0,0.0,5,120,0.0,0.0,0.0,55,65,0.0,0.0,0.0,2405.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,121161,2,1,1,0,1,,122.0,550.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1056.61756573289,0.0,37444.535030227424,1,1,2,3,180.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06422833126539142,24963.02335348495,7,4,7,7_1,7_0,7_0_0 +21141,2,59.0,0.0,2,111,200.0,1100.0,0.0,43,37,0.0,0.0,341.04010867441224,1300.0,0.0,2088.354452733768,41,0,0,0,0,0,0,0,0,2,15.0,1,,2,121162,2,1,1,0,1,,350.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1115.49515971746,200.0,110248.18163276793,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01179157769994108,73498.78775517862,10,5,10,10_1,10_4,10_0_1 +21142,2,73.0,0.0,2,111,210.0,20.0,0.0,75,75,0.0,0.0,358.0921141081328,230.0,0.0,37.970080958795776,71,0,0,0,0,0,0,0,0,0,,1,,2,121163,2,2,1,0,1,,955.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,526.420991608649,210.0,54815.13791979574,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004195921213160692,27407.56895989787,7,4,7,7_1,7_4,7_0_1 +21143,2,68.0,0.0,2,400,300.0,,,0,86,0.0,0.0,,396.0,133.01656563806603,,71,2,2,1,2,1,2,2,2,0,,1,,2,121164,2,3,0,0,2,,160.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,88.10438466049156,300.0,11623.223260692635,0,5,0,1,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03406972327023873,11623.223260692635,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +21144,1,46.0,220.0,5,111,660.0,800.0,0.0,0,54,0.0,0.0,1125.4323586255605,1460.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,121165,2,1,2,0,2,,300.0,370.0,32,1.0,1.0,3.0,2.0,1.5,2,1,622.663312401858,660.0,18065.183958414724,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08081844078426531,12043.455972276482,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +21145,2,52.0,0.0,5,111,296.0,255.0,0.0,0,52,0.0,0.0,504.7393608381301,551.0,0.0,484.1185322246462,50,0,0,0,0,0,0,0,0,2,10.0,8,,3,121166,2,1,0,1,1,,200.0,314.0,12,1.0,1.0,3.0,1.0,1.0,1,1,422.073960322006,296.0,26504.148399117,0,1,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02078919841915603,26504.148399117,7,4,7,7_0,7_2,7_0_0 +21146,2,45.0,0.0,7,221,0.0,,,0,56,0.0,0.0,,215.0,0.0,,71,0,0,0,0,0,0,0,0,3,15.0,1,,5,121167,2,3,0,0,2,,509.0,,32,2.0,1.0,7.0,3.0,1.8,2,2,79.48466493293883,0.0,20457.026109660575,0,1,0,1,140.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01050983651521415,11365.014505366986,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +21147,2,68.0,0.0,1,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1239.0,0.0,0.0,20,2,2,1,2,2,2,2,1,0,,2,,1,121168,2,2,0,0,2,,0.0,1698.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1209.17445496629,0.0,81927.38991218538,0,5,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.015123147476418247,81927.38991218538,10,5,10,10_0,10_4,10_1_0 +21148,2,78.0,0.0,2,112,300.0,0.0,0.0,0,71,2109.365702073203,0.0,511.56016301161833,2300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121169,2,1,2,0,1,,200.0,,21,0.0,4.0,4.0,2.0,1.5,2,2,982.950004839413,300.0,16484.369078493884,0,5,0,1,80.0,9,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13952611647118873,10989.57938566259,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +21149,2,56.0,0.0,8,111,1070.0,0.0,0.0,0,54,2320.3022722805235,0.0,1824.5645814081054,3330.0,83.13535352379125,0.0,30,2,2,1,2,2,2,2,1,2,70.0,1,2000.0,6,121170,2,1,2,0,1,,260.0,,32,1.0,1.0,6.0,2.0,1.5,2,2,1725.84158262793,1070.0,35776.10724171814,0,1,0,1,192.0,9,7,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.09307888020072017,23850.73816114543,6,3,6,6_1,6_3,6_0_0 +21150,2,74.0,0.0,2,111,350.0,105.0,0.0,75,74,2109.365702073203,198.6490915515336,596.8201901802214,2605.0,0.0,199.34292503367786,31,0,0,0,0,0,0,0,0,0,,1,,2,121171,2,3,3,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,553.471245426451,350.0,77671.0,5,5,0,1,110.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03353890126301966,51780.666666666664,10,5,10,10_1,10_4,10_0_1 +21151,1,38.0,180.0,1,111,600.0,0.0,0.0,0,46,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,121172,2,2,0,0,1,,0.0,656.0,32,1.0,0.0,1.0,2.0,1.3,1,1,1172.94184961167,600.0,6585.774595191291,0,1,3,4,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09110545636318917,5065.980457839454,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +21152,1,39.0,483.0,2,111,870.0,1560.0,0.0,85,62,0.0,0.0,1483.5244727336933,2430.0,0.0,2961.666314786071,60,2,2,2,2,2,1,2,2,1,20.0,2,,2,121173,1,3,0,0,2,,0.0,520.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,3,3,2143.37880509884,870.0,22781.496047452056,6,1,2,3,145.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.10666551463251149,7855.688292224848,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +21153,1,25.0,300.0,6,112,0.0,,,81,63,0.0,0.0,,88.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,4,121174,2,3,0,0,2,,0.0,520.0,43,2.0,0.0,3.0,2.0,1.5,2,2,113.976051965937,0.0,14201.962365591398,4,1,2,3,45.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.006196326798696985,9467.974910394265,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +21154,1,46.0,300.0,9,111,768.0,,,0,52,0.0,0.0,,894.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,2.0,1,2004.0,6,121175,2,1,0,0,1,,444.0,,32,2.0,0.0,3.0,3.0,1.8,2,2,128.96153655850955,768.0,15191.73465795118,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05884778928337132,8439.852587750654,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +21155,2,48.0,0.0,1,112,1360.0,0.0,0.0,33,42,4218.731404146406,0.0,2319.072738986003,5860.0,692.7946126982605,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,121176,2,2,3,0,1,,250.0,540.0,43,2.0,1.0,6.0,4.0,2.5,4,3,1426.16716849441,1360.0,77901.5322344192,1,1,2,3,110.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07522316740017701,31160.612893767677,8,4,8,8_1,8_0,8_1_0 +21156,2,41.0,0.0,2,111,688.0,1257.0,0.0,0,38,0.0,0.0,1173.177973839978,1945.0,0.0,2386.419588260315,12,2,2,2,2,1,2,2,2,2,15.0,1,,2,121177,1,3,3,0,1,,249.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,1063.96106166943,688.0,30530.182639741633,0,1,1,2,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.06370744724822451,23484.75587672433,6,3,6,6_1,6_3,6_0_1 +21157,1,80.0,112.0,7,111,260.0,1260.0,0.0,78,78,0.0,0.0,443.3521412767359,1586.0,91.44888887617039,2392.115100404134,71,1,2,2,1,2,2,2,2,0,,2,,5,121178,2,1,0,0,1,,320.0,480.0,41,0.0,6.0,3.0,2.0,1.5,2,2,1442.39749510806,260.0,15986.902583224326,5,5,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.09920620906668005,10657.935055482883,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +21158,2,42.0,0.0,2,111,340.0,0.0,0.0,0,52,0.0,0.0,579.7681847465008,340.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,70.0,2,,2,121179,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,278.375879632493,340.0,30663.810637776565,0,1,0,1,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011087989161436246,17035.450354320314,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +21159,2,64.0,0.0,7,111,1460.0,0.0,0.0,75,74,0.0,0.0,2489.592793323209,1460.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,121180,2,1,0,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1014.52286200331,1460.0,89108.93664754125,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016384439708610136,59405.9577650275,10,5,10,10_0,10_4,10_0_0 +21160,2,63.0,0.0,5,111,240.0,120.0,0.0,0,37,0.0,0.0,409.2481304092947,360.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,2,60.0,2,,3,121181,2,2,0,1,1,,0.0,680.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1042.65085189037,240.0,41598.65549936689,0,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008654125852829042,41598.65549936689,9,5,9,9_0,9_4,9_0_0 +21161,0,25.0,0.0,7,111,980.0,,,48,55,0.0,0.0,,1060.0,110.84713803172167,,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,121182,2,1,0,0,1,,240.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,128.7312204089902,980.0,48477.43327220438,1,1,5,0,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021865844135105537,32318.28884813625,8,4,8,8_1,8_2,8_0_0 +21162,1,33.0,43.0,2,400,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1071.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,2,121183,2,2,3,0,1,,0.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2195.88863599655,0.0,19183.77056328144,0,1,2,3,64.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05582844084102736,19183.77056328144,5,3,5,5_1,5_0,5_0_1 +21163,1,46.0,265.0,7,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,307.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,121184,2,2,0,0,1,,0.0,306.0,11,0.0,0.0,2.0,1.0,1.0,1,1,407.166534708021,0.0,1620.1001980701444,0,7,2,3,34.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.18949445248244332,1620.1001980701444,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +21164,1,41.0,350.0,2,111,1080.0,0.0,0.0,85,63,0.0,0.0,1841.6165868418261,1320.0,332.541414095165,0.0,50,2,2,2,2,1,2,2,2,1,2.0,1,,2,121185,1,3,3,0,2,,960.0,657.0,42,1.0,0.0,6.0,6.0,3.0999999999999996,4,2,434.351474776093,1080.0,24230.7930327822,6,1,2,3,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,1,0,1,0.05447613696399257,7816.384849284582,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +21165,2,44.0,0.0,1,112,200.0,0.0,0.0,0,62,0.0,66.2163638505112,341.04010867441224,310.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,121186,2,1,2,0,1,,200.0,500.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,1243.31764650478,200.0,27774.163964021718,0,1,2,3,90.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011161452074725629,10682.37075539297,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +21166,2,76.0,0.0,1,120,610.0,0.0,0.0,72,72,1054.6828510366015,1059.4618216081792,1040.1723314569574,2470.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,121187,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,252.61462547799,610.0,32842.00829798893,5,5,0,1,110.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07520855538396688,21894.672198659286,6,3,6,6_1,6_0,6_1_0 +21167,2,65.0,0.0,1,221,300.0,600.0,0.0,77,78,0.0,297.97363732730037,511.56016301161833,1125.0,0.0,1139.1024287638734,70,0,0,0,0,0,0,0,0,0,,1,,1,121188,2,1,1,0,1,,400.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,2638.2061179026,300.0,24376.78418562553,5,5,0,1,80.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04615046806146762,16251.189457083687,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +21168,2,76.0,0.0,5,111,780.0,,,0,77,0.0,0.0,,960.0,249.40606057137379,,50,0,0,0,0,0,0,0,0,0,,1,,3,121189,2,1,0,0,2,,290.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,173.02690149369172,780.0,47901.11671085149,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020041286423339733,31934.077807234327,8,4,8,8_1,8_2,8_0_0 +21169,2,55.0,0.0,1,111,1000.0,2000.0,0.0,22,54,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,44,0,0,0,0,0,0,0,0,2,60.0,2,,1,121190,1,3,0,0,2,,700.0,,43,2.0,0.0,6.0,5.0,3.0,5,5,785.534049960497,1000.0,123237.99906760157,4,1,0,1,143.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02434314109850457,41079.33302253386,9,5,9,9_0,9_4,9_1_0 +21170,2,70.0,0.0,1,111,936.0,0.0,0.0,0,78,0.0,0.0,1596.0677085962493,966.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121191,2,1,1,0,1,,152.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,473.196887681974,936.0,10123.812580228796,0,5,0,1,51.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09541859772142963,10123.812580228796,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +21171,1,27.0,343.0,2,111,300.0,600.0,0.0,56,81,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,0,,2,,2,121192,2,3,0,0,1,,0.0,755.0,43,2.0,0.0,3.0,4.0,2.1,2,2,284.621831367764,300.0,16424.229468668425,1,4,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05479709119486422,7821.061651746869,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +21172,2,67.0,0.0,7,112,450.0,0.0,0.0,74,74,1582.0242765549024,198.6490915515336,767.3402445174275,2100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,121193,2,1,1,0,1,,837.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1460.52233384767,450.0,79231.60276238307,5,5,0,1,160.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026504575532795113,52821.06850825538,10,5,10,10_1,10_0,10_0_0 +21173,2,82.0,0.0,2,111,544.0,1600.0,0.0,0,75,0.0,0.0,927.6290955944013,2144.0,0.0,3037.6064767036623,41,0,0,0,0,0,0,0,0,0,,1,,2,121194,1,2,5,0,2,,0.0,162.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1045.47187899958,544.0,11911.171596788237,0,5,2,3,42.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.17999908594869998,11911.171596788237,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +21174,2,52.0,0.0,7,300,660.0,0.0,0.0,77,21,3164.0485531098047,0.0,1125.4323586255605,3750.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,121195,2,1,2,0,1,,800.0,,42,2.0,0.0,7.0,4.0,2.5,4,3,1554.48767024763,660.0,51040.56090376953,6,1,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07347097942497433,20416.22436150781,5,3,5,5_1,5_0,5_0_0 +21175,2,63.0,0.0,7,111,520.0,,,0,75,0.0,0.0,,709.0,261.87636359994247,,60,0,0,0,0,0,0,0,0,0,,1,,5,121196,2,2,0,0,2,,400.0,,21,0.0,1.0,4.0,2.0,1.5,2,2,117.70367729144986,520.0,49479.91205799394,0,5,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014329047294364673,32986.60803866263,8,4,8,8_1,8_2,8_0_0 +21176,0,41.0,0.0,5,211,268.0,,,0,90,0.0,0.0,,316.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,0,,1,,3,121197,2,1,0,0,2,,272.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,98.88836485156881,268.0,16498.22064225934,0,4,5,0,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01915358067103202,16498.22064225934,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +21177,2,49.0,0.0,9,400,1100.0,0.0,0.0,55,67,0.0,0.0,1875.7205977092674,1205.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,121198,2,1,1,0,1,,507.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,2125.260882834,1100.0,50291.52170247798,1,1,1,2,89.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02396030104494983,23948.343667846653,6,3,6,6_1,6_1,6_0_0 +21178,2,46.0,0.0,9,111,2400.0,0.0,0.0,42,46,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,121199,1,2,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1257.88646341715,2400.0,63369.350457962806,1,1,1,2,111.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.037873198678154085,27551.89150346209,7,4,7,7_0,7_4,7_0_0 +21179,2,74.0,0.0,1,400,983.0,0.0,0.0,86,72,1377.4158034538016,0.0,1676.212134134736,2489.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121200,2,1,2,0,1,,320.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2013.12553359194,983.0,17274.28806490036,5,5,0,1,150.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1440869800624317,11516.192043266907,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +21180,1,50.0,413.0,7,111,240.0,,,0,90,0.0,0.0,,400.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,2,,5,121201,2,3,0,0,2,,1000.0,534.0,32,1.0,2.0,4.0,3.0,2.0,3,1,78.77057567440373,240.0,20672.0,0,4,2,3,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01934984520123839,10336.0,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +21181,1,34.0,425.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,757.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121202,2,3,3,0,1,,999.0,730.0,32,1.0,0.0,5.0,3.0,1.6,1,1,105.32124391765,0.0,27706.619049803267,0,4,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.027321991132850804,17316.63690612704,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +21182,0,55.0,0.0,6,111,360.0,,,63,56,0.0,0.0,,530.0,235.55016831740858,,60,0,0,0,0,0,0,0,0,0,,1,,4,121203,2,3,0,0,2,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,134.23385193165586,360.0,29236.958180408852,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018127740811119786,19491.305453605903,5,3,5,5_1,5_2,5_0_0 +21183,1,33.0,179.0,1,120,630.0,0.0,0.0,85,64,0.0,927.0290939071567,1074.2763423243985,1480.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,121204,1,1,1,0,1,,300.0,,42,1.0,0.0,7.0,5.0,2.4,2,2,178.139817239669,630.0,24890.417418497444,6,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05946063399081971,10371.007257707268,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +21184,2,81.0,0.0,2,111,198.0,0.0,0.0,55,78,0.0,0.0,337.6297075876681,318.0,166.2707070475825,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,121205,1,1,0,1,1,788.0,166.0,379.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1506.78945634439,198.0,37058.52200053934,5,5,2,3,60.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008581022200382732,24705.681333692894,7,4,7,7_0,7_2,7_0_1 +21185,2,48.0,0.0,1,112,2000.0,0.0,0.0,85,31,3164.0485531098047,0.0,3410.4010867441225,5000.0,0.0,0.0,10,1,2,1,1,1,2,2,2,2,15.0,1,,1,121206,1,1,2,0,2,,450.0,,42,1.0,0.0,11.0,5.0,2.4,2,2,757.810927817349,2000.0,32149.954304056533,6,1,1,2,250.0,7,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.15552121638223054,13395.814293356889,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +21186,1,58.0,269.0,6,111,230.0,,,0,53,0.0,0.0,,299.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,0,,2,,4,121207,2,2,0,0,2,,222.0,320.0,22,1.0,0.0,2.0,2.0,1.5,2,2,140.86341093794022,230.0,38862.16963335042,0,1,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00769385762094473,25908.11308890028,7,4,7,7_0,7_2,7_0_0 +21187,2,74.0,0.0,1,400,2000.0,0.0,0.0,77,35,527.3414255183008,0.0,3410.4010867441225,2620.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121208,2,1,2,0,1,,500.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,2302.85522011565,2000.0,55838.40504237014,5,5,0,1,170.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04692111098108812,37225.60336158009,9,5,9,9_1,9_1,9_1_0 +21188,2,32.0,0.0,1,300,1900.0,0.0,0.0,22,46,0.0,0.0,3239.8810324069163,4900.0,4156.767676189563,0.0,60,2,2,2,1,1,1,2,2,0,,1,,1,121209,1,1,3,0,1,,238.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1510.83928094389,1900.0,19435.380514017765,4,4,1,2,220.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.25211752332123755,12956.92034267851,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +21189,1,40.0,237.0,1,111,500.0,0.0,0.0,0,63,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,121210,1,1,0,0,2,,400.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,471.169880371997,500.0,22357.021607006413,0,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.02236433854155717,22357.021607006413,6,3,6,6_0,6_3,6_1_0 +21190,2,51.0,0.0,5,111,350.0,50.0,0.0,47,37,0.0,0.0,596.8201901802214,400.0,0.0,94.92520239698945,42,0,0,0,0,0,0,0,0,3,25.0,2,,3,121211,2,2,0,1,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,371.792321872847,350.0,79441.7178850458,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005035137842547794,39720.8589425229,9,5,9,9_0,9_4,9_0_0 +21191,2,28.0,0.0,2,111,200.0,130.0,0.0,0,46,0.0,0.0,341.04010867441224,330.0,0.0,246.80552623217258,43,2,1,2,2,1,2,2,2,3,45.0,2,,2,121212,2,1,0,1,1,43.0,0.0,384.0,22,3.0,0.0,4.0,4.0,2.5,4,4,286.358555561316,200.0,29157.502969410765,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011317841597965509,11663.001187764306,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +21193,2,34.0,0.0,6,120,2619.0,0.0,0.0,42,54,0.0,0.0,4465.920223091428,2659.0,55.423569015860835,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,4,121214,2,1,1,0,1,,190.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,213.578855419586,2619.0,50301.33156010466,1,1,1,2,110.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0528614236945752,23953.015028621267,6,3,6,6_1,6_0,6_0_0 +21194,2,36.0,0.0,9,300,1515.0,0.0,0.0,52,47,0.0,0.0,2583.3788232086727,1515.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,121215,2,1,1,0,1,,119.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1415.41382212971,1515.0,57377.03353169242,1,1,1,2,130.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02640429291561726,31876.12973982912,8,4,8,8_1,8_0,8_0_0 +21195,2,61.0,0.0,7,111,800.0,880.0,0.0,52,47,0.0,0.0,1364.160434697649,1680.0,0.0,1670.6835621870143,60,0,0,0,0,0,0,0,0,3,45.0,2,,5,121216,2,2,0,0,1,,0.0,562.0,43,2.0,4.0,4.0,3.0,2.0,3,3,841.54624129746,800.0,26769.221018591514,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06275864354936671,13384.610509295757,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +21196,1,41.0,446.0,2,111,0.0,0.0,800.0,0,52,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,71,2,2,2,2,1,2,2,2,3,25.0,2,,2,121217,2,2,0,1,1,,450.0,776.0,32,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,1276.93043685446,0.0,34448.07859175512,0,1,2,3,107.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.023223356213297592,12758.547626575972,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +21197,2,59.0,0.0,2,112,700.0,0.0,0.0,0,74,1582.0242765549024,0.0,1193.6403803604428,2210.0,13.855892253965209,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,121218,2,2,1,0,1,,429.0,,31,0.0,3.0,5.0,2.0,1.5,2,1,868.762451651664,700.0,33213.61628807498,0,5,0,1,130.0,8,1,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06653897548619174,22142.410858716656,6,3,6,6_1,6_1,6_0_1 +21198,1,40.0,250.0,2,111,420.0,420.0,0.0,85,64,0.0,0.0,716.1842282162656,840.0,0.0,797.3717001347114,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,121219,2,3,0,1,1,100.0,536.0,500.0,42,1.0,0.0,3.0,5.0,2.4,2,2,617.614269625852,420.0,16502.119656901144,6,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.050902551760901464,6875.883190375477,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21199,1,60.0,310.0,7,111,750.0,,,0,77,0.0,0.0,,861.0,153.80040401901383,,71,0,0,0,0,0,0,0,0,0,,1,,5,121220,2,2,0,0,2,,450.0,521.0,31,1.0,4.0,4.0,3.0,2.0,3,2,130.45204901778786,750.0,13292.589977909262,0,7,2,3,79.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06477292998812736,6646.294988954631,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +21200,2,43.0,0.0,2,111,891.0,586.0,0.0,52,38,0.0,0.0,1519.3336841445066,1477.0,0.0,1112.5233720927163,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,121221,2,1,1,0,1,,429.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,1496.64291612244,891.0,83449.30488690753,1,1,1,2,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017699368520824293,55632.86992460502,10,5,10,10_1,10_3,10_0_1 +21201,2,39.0,0.0,9,112,2700.0,0.0,0.0,46,37,0.0,0.0,4604.0414671045655,2700.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,60.0,1,2012.0,6,121222,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,714.366736501463,2700.0,61791.16544443707,1,1,1,2,140.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.043695566843254534,34328.425246909486,9,5,9,9_1,9_1,9_0_0 +21202,2,66.0,0.0,1,111,360.0,78.0,0.0,0,37,0.0,0.0,613.872195613942,438.0,0.0,148.08331573930354,20,0,0,0,0,0,0,0,0,0,,2,,1,121223,2,1,0,1,2,1096.0,286.0,3000.0,22,1.0,0.0,7.0,2.0,1.5,2,2,938.217611920233,360.0,183656.06657036013,0,1,2,3,172.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.002384892632077572,122437.37771357341,10,5,10,10_0,10_4,10_1_0 +21203,1,44.0,49.0,8,111,360.0,0.0,0.0,0,55,0.0,0.0,613.872195613942,360.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,121224,2,1,0,0,1,,0.0,320.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2395.41679278557,360.0,18883.563299918555,0,1,2,3,30.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.019064198545703112,18883.563299918555,5,3,5,5_0,5_3,5_0_0 +21204,2,76.0,0.0,8,111,280.0,,,0,77,0.0,0.0,,364.0,116.38949493330776,,71,2,2,1,1,1,2,2,2,0,,1,2002.0,6,121225,1,1,0,0,2,,400.0,,21,0.0,3.0,4.0,2.0,1.5,2,2,104.96017138369197,280.0,20255.012234605518,0,5,0,1,107.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.01797086053486105,13503.341489737011,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +21206,2,80.0,0.0,5,111,900.0,,,86,74,0.0,0.0,,984.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,3,121227,2,2,0,0,1,,360.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,102.64329373697144,900.0,41468.21959178598,6,5,0,1,91.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023729014886255465,27645.47972785732,7,4,7,7_1,7_3,7_0_0 +21207,2,55.0,0.0,1,211,200.0,0.0,0.0,0,63,0.0,0.0,341.04010867441224,235.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,121228,2,1,1,0,1,,108.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2552.95846268621,200.0,22768.086169469214,0,1,1,2,60.0,2,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010321464801689061,22768.086169469214,6,3,6,6_1,6_1,6_1_0 +21208,2,41.0,0.0,1,221,1000.0,0.0,0.0,0,43,1371.087706347582,0.0,1705.2005433720612,2510.0,290.9737373332694,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,1,121229,2,1,1,0,1,,600.0,,32,1.0,0.0,7.0,5.0,2.4,3,1,1940.74225669949,1000.0,43647.46064835086,0,1,1,2,140.0,1,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05750620912914061,18186.44193681286,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +21209,2,74.0,0.0,2,111,20.0,0.0,0.0,0,77,0.0,0.0,34.104010867441225,20.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,121230,2,1,0,1,1,,0.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,902.070823810534,20.0,42180.71077177656,0,5,0,1,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0004741503790254325,28120.47384785104,8,4,8,8_0,8_4,8_0_1 +21210,1,56.0,200.0,2,111,209.0,216.6,0.0,0,56,696.0906816841571,0.0,356.3869135647608,1086.0,0.0,411.21597678375826,50,2,1,2,1,1,1,2,2,0,,2,,2,121231,1,2,0,1,1,670.0,211.0,327.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1393.15029168408,209.0,15082.210009184724,0,1,2,3,70.0,7,5,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07200536256547618,15082.210009184724,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +21211,1,57.0,16.0,1,111,260.0,590.0,0.0,0,54,0.0,0.0,443.3521412767359,850.0,0.0,1120.1173882844755,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,121232,2,1,1,0,1,,256.0,311.0,12,1.0,2.0,4.0,1.0,1.0,1,1,308.920582125048,260.0,14341.98943509278,0,1,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.059266533687451516,14341.98943509278,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +21212,1,24.0,522.0,7,111,180.0,,,0,85,0.0,0.0,,305.0,173.19865317456512,,71,0,0,0,0,0,0,0,0,0,,1,,5,121233,1,3,0,0,2,,0.0,780.0,31,0.0,0.0,3.0,5.0,2.2,1,1,95.31289175114632,180.0,25494.19643597904,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011963507097229568,11588.2711072632,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +21213,2,35.0,0.0,1,111,700.0,2000.0,0.0,85,23,0.0,0.0,1193.6403803604428,2700.0,0.0,3797.008095879578,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,121234,1,3,3,0,1,,480.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,236.947689362521,700.0,34595.03029838037,6,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07804589204613026,16473.8239516097,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +21214,2,47.0,0.0,8,111,634.0,1040.0,0.0,37,43,0.0,0.0,1081.0971444978868,1674.0,0.0,1974.4442098573807,33,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,121235,2,1,1,0,1,,564.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1160.08713460153,634.0,67070.0955846778,1,1,1,2,130.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024958962491510545,31938.140754608474,8,4,8,8_1,8_2,8_0_0 +21215,0,65.0,0.0,2,111,1298.0,,,77,52,0.0,0.0,,1598.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,121236,2,2,0,0,2,,289.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,94.61165707248314,1298.0,41313.045632963906,5,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03868027581885532,27542.03042197594,7,4,7,7_1,7_2,7_0_1 +21216,2,43.0,0.0,2,111,275.0,0.0,0.0,0,38,0.0,0.0,468.93014942731685,1525.0,1731.9865317456513,0.0,12,0,0,0,0,0,0,0,0,2,50.0,1,,2,121237,1,2,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1067.56545521049,275.0,71125.71747657811,0,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02144090849420516,71125.71747657811,10,5,10,10_1,10_4,10_0_1 +21217,2,26.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,755.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,121238,2,1,0,0,1,,271.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,161.71911689996747,0.0,33842.962287961585,0,1,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02230892182474712,33842.962287961585,9,5,9,9_0,9_2,9_0_0 +21218,1,39.0,158.0,2,111,840.0,0.0,0.0,85,67,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,8.0,2,,2,121239,2,1,0,1,1,515.0,0.0,323.0,42,3.0,0.0,4.0,5.0,2.8,4,4,265.226892614853,840.0,28522.97295996727,7,1,2,3,82.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.029449945529134068,10186.776057131168,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +21219,2,63.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,496.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,121240,2,2,0,1,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,602.368820530024,0.0,119702.05659512192,5,5,0,1,87.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004143621372167911,79801.37106341461,10,5,10,10_0,10_4,10_0_1 +21220,1,48.0,291.0,2,111,0.0,0.0,880.0,85,85,0.0,0.0,554.6800955649745,880.0,0.0,1053.1242898569192,71,2,1,2,2,1,2,2,2,0,,2,,2,121241,1,3,0,0,1,575.0,330.0,267.0,41,0.0,0.0,3.0,3.0,1.8,2,2,1566.31359116467,0.0,15472.279125244475,6,7,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.056875912906987146,8595.71062513582,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +21221,2,24.0,0.0,9,120,720.0,,,0,53,0.0,0.0,,1000.0,387.96498311102584,,50,0,0,0,0,0,0,0,0,1,10.0,1,2009.0,6,121242,2,2,0,0,2,,987.0,,22,2.0,1.0,4.0,4.0,2.5,4,3,103.0635256104009,720.0,25003.69904917873,0,1,0,1,77.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03999408239689423,10001.479619671492,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +21222,1,47.0,138.0,2,111,400.0,76.0,0.0,0,46,0.0,0.0,682.0802173488245,615.0,0.0,144.28630764342395,50,0,0,0,0,0,0,0,0,3,10.0,2,,2,121243,2,2,0,1,1,672.0,0.0,255.0,32,1.0,0.0,2.0,2.0,1.5,2,2,291.643840133085,400.0,21166.572737961716,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02905524704512096,14111.048491974478,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +21223,2,64.0,0.0,2,111,205.0,0.0,0.0,0,74,0.0,0.0,349.56611139127256,205.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,121244,2,1,0,1,1,450.0,0.0,264.0,11,0.0,1.0,3.0,1.0,1.0,1,1,439.364650607483,205.0,37069.67530265571,0,5,2,3,111.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005530126668935608,37069.67530265571,9,5,9,9_0,9_2,9_0_1 +21224,2,27.0,0.0,9,111,677.0,0.0,0.0,81,43,0.0,0.0,1154.4207678628854,677.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,60.0,2,2008.0,6,121245,2,1,0,0,1,,0.0,88.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1353.57343690657,677.0,36917.108772689666,4,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01833838083498097,24611.405848459777,7,4,7,7_0,7_4,7_0_0 +21225,2,76.0,0.0,1,111,350.0,1700.0,0.0,0,75,0.0,0.0,596.8201901802214,2050.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,0,,1,,1,121246,2,1,2,0,1,,160.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1135.40866314392,350.0,22677.3371414409,0,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09039862075577647,22677.3371414409,6,3,6,6_1,6_3,6_1_0 +21226,2,82.0,0.0,6,111,360.0,,,0,77,0.0,0.0,,504.0,199.524848457099,,50,0,0,0,0,0,0,0,0,0,,1,,4,121247,2,1,0,0,2,,320.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,63.16156321969035,360.0,80441.77369941218,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0062654013806719795,53627.849132941454,10,5,10,10_1,10_2,10_0_0 +21227,2,52.0,0.0,6,111,680.0,1050.0,0.0,65,67,0.0,0.0,1159.5363694930015,1730.0,0.0,1993.4292503367785,50,1,2,2,2,1,2,2,2,2,10.0,1,,4,121248,1,2,3,0,1,,620.0,710.0,43,3.0,0.0,6.0,5.0,2.8,5,4,1093.0179044157,680.0,49064.1016243825,1,1,2,3,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03525999544930571,17522.893437279465,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +21228,1,34.0,522.0,5,111,580.0,,,21,68,0.0,0.0,,678.0,135.78774408885906,,71,0,0,0,0,0,0,0,0,0,,1,,3,121249,1,2,0,0,2,,350.0,800.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,3,2,154.8848757745128,580.0,25079.405263760258,1,4,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027034133898689777,8648.070780606988,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +21229,2,56.0,0.0,2,400,1200.0,0.0,0.0,71,77,0.0,0.0,2046.2406520464733,1310.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121250,2,1,2,0,1,,223.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1400.63981218071,1200.0,32072.800496829026,5,5,0,1,100.0,0,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.040844577951012324,21381.866997886016,6,3,6,6_1,6_0,6_0_1 +21230,2,56.0,0.0,7,111,2577.0,0.0,0.0,46,46,0.0,264.8654554020448,4394.301800269802,2777.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,70.0,1,,5,121251,2,1,2,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,766.716382220197,2577.0,84625.87021364307,1,1,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03281502444807123,56417.24680909538,10,5,10,10_1,10_4,10_0_0 +21231,2,65.0,0.0,9,112,500.0,,,0,72,0.0,0.0,,544.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,121252,2,2,0,0,2,,180.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,134.44579136379204,500.0,9460.09938458883,0,5,0,1,87.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05750468128127855,9460.09938458883,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +21232,1,46.0,197.0,6,111,580.0,1090.0,0.0,0,56,0.0,0.0,989.0163151557955,1770.0,138.5589225396521,2069.36941225437,30,0,0,0,0,0,0,0,0,2,20.0,2,,4,121253,2,2,0,0,1,,700.0,448.0,32,3.0,0.0,4.0,4.0,2.5,4,2,1411.51578036845,580.0,30868.782901138246,0,1,2,3,78.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.057339481302799714,12347.513160455299,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +21233,2,70.0,0.0,2,111,2000.0,150.0,0.0,78,75,0.0,0.0,3410.4010867441225,2150.0,0.0,284.77560719096834,41,2,1,2,2,1,2,2,2,0,,2,,2,121254,2,3,0,1,1,860.0,200.0,347.0,41,0.0,0.0,3.0,2.0,1.5,2,2,234.687792956539,2000.0,37569.76036613104,5,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05722687552562126,25046.50691075403,7,4,7,7_0,7_4,7_0_1 +21234,1,64.0,238.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,411.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,2,121255,2,2,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,429.271838005848,0.0,8255.565349541057,0,7,2,3,60.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0497845977347691,8255.565349541057,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21235,2,65.0,0.0,1,112,1100.0,0.0,0.0,67,78,0.0,529.7309108040896,1875.7205977092674,1630.0,180.1265993015477,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121256,1,2,3,0,2,,0.0,250.0,42,1.0,0.0,4.0,3.0,2.0,3,2,1089.37305446069,1100.0,23285.98984876997,1,5,2,3,106.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06999917163006499,11642.994924384984,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +21236,2,56.0,0.0,7,221,1240.0,0.0,0.0,52,42,0.0,264.8654554020448,2114.448673781356,1620.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,121257,2,1,1,0,1,,326.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,2392.0896501612,1240.0,47129.90796289307,1,1,0,1,110.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03437307794607788,31419.938641928715,8,4,8,8_1,8_1,8_0_0 +21237,2,35.0,0.0,1,111,700.0,0.0,0.0,0,52,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,100.0,2,,1,121258,1,3,0,0,2,,0.0,540.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1940.97847930806,700.0,21335.076524527864,0,1,2,3,50.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03280981904120406,21335.076524527864,6,3,6,6_0,6_3,6_1_0 +21238,2,57.0,0.0,6,111,1205.0,0.0,0.0,52,63,0.0,0.0,2054.766654763334,1205.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,121259,2,2,2,0,1,,760.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,731.368987903574,1205.0,53712.314562874264,1,1,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02243433391032624,35808.20970858284,9,5,9,9_1,9_4,9_0_0 +21239,2,53.0,0.0,5,112,800.0,0.0,0.0,85,37,0.0,0.0,1364.160434697649,1253.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,3,121260,1,2,1,0,2,,731.0,,42,2.0,0.0,6.0,6.0,3.5,6,5,3292.0885716539,800.0,60859.89596105882,7,1,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02058827048935035,17388.541703159663,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +21240,1,37.0,100.0,9,112,800.0,1600.0,0.0,56,63,0.0,0.0,1364.160434697649,2400.0,0.0,3037.6064767036623,50,1,2,2,2,1,2,2,2,2,20.0,1,2006.0,6,121261,2,1,1,0,1,,720.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,635.839314191017,800.0,34179.401186126386,1,1,1,2,120.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.07021773105182937,14241.417160885994,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +21241,2,40.0,0.0,8,120,120.0,0.0,0.0,46,90,0.0,198.6490915515336,204.62406520464734,270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,121262,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,3129.04681294928,120.0,19698.07121670119,1,1,1,2,170.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013706925771040872,10943.372898167328,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +21242,2,63.0,0.0,1,111,550.0,1500.0,0.0,55,78,0.0,0.0,937.8602988546337,2050.0,0.0,2847.7560719096837,50,2,2,2,2,1,2,2,2,0,,1,,1,121263,1,1,2,0,1,,370.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,825.601262998661,550.0,35815.159963617676,1,5,0,1,80.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05723833153565316,23876.77330907845,6,3,6,6_1,6_2,6_1_0 +21244,2,66.0,0.0,5,400,500.0,0.0,0.0,71,90,2425.7705573841836,0.0,852.6002716860306,2900.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,121265,2,1,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,815.735598480625,500.0,54992.81429926121,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05273416239835828,36661.876199507475,9,5,9,9_1,9_0,9_0_0 +21245,0,49.0,0.0,1,400,0.0,0.0,0.0,0,11,0.0,0.0,0.0,2174.0,187.05454542853033,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121266,2,1,2,0,2,,520.0,,22,1.0,2.0,5.0,3.0,2.0,3,3,2049.76919563684,0.0,7091.859005924979,0,1,0,1,120.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3065486776011347,3545.9295029624896,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +21246,2,42.0,0.0,2,111,200.0,220.0,0.0,0,47,464.06045445610465,0.0,341.04010867441224,860.0,0.0,417.6708905467536,43,0,0,0,0,0,0,0,0,0,,2,,2,121267,2,1,0,1,1,434.0,0.0,280.0,22,3.0,0.0,4.0,3.0,2.0,3,3,227.854284974489,200.0,33961.70047853787,0,1,2,3,60.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025322642502647295,16980.850239268933,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +21247,2,58.0,0.0,5,111,135.0,0.0,0.0,38,46,0.0,0.0,230.20207335522826,135.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,21.0,2,,3,121268,2,1,0,0,1,,0.0,1140.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1141.76050201871,135.0,55034.469122340655,4,1,2,3,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002453008126596032,36689.64608156044,9,5,9,9_0,9_4,9_0_0 +21248,2,72.0,0.0,7,111,1350.0,0.0,0.0,74,74,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,121269,2,2,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,677.563064435254,1350.0,84930.38726208136,5,5,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01589537082686459,56620.25817472091,10,5,10,10_0,10_4,10_0_0 +21249,2,58.0,0.0,7,400,500.0,0.0,0.0,52,64,2003.897416969543,0.0,852.6002716860306,2500.0,138.5589225396521,0.0,71,1,2,2,1,2,2,2,2,0,,1,,5,121270,2,1,2,0,1,,280.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,1060.64861203374,500.0,46449.84050436722,1,1,1,2,96.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.05382149804723118,16589.22875155972,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +21250,2,58.0,0.0,2,111,700.0,,,0,42,0.0,0.0,,704.0,5.542356901586084,,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,121271,2,1,0,0,1,,700.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,33.971009832944766,700.0,65907.2927173526,0,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010681670737396945,65907.2927173526,10,5,10,10_1,10_2,10_0_1 +21251,2,64.0,0.0,5,111,330.0,1100.0,0.0,0,56,0.0,331.081819252556,562.7161793127802,1680.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,121272,2,1,1,0,1,,260.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,831.009543972454,330.0,17143.351923132854,0,1,0,1,85.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09799717158772467,17143.351923132854,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +21252,0,49.0,0.0,2,111,1200.0,,,85,21,0.0,0.0,,1450.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,2,121273,2,1,0,0,2,,450.0,,42,1.0,1.0,3.0,5.0,2.8,4,3,80.79249248053688,1200.0,20611.376132647987,6,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.070349499745591,7361.205761659996,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +21253,2,47.0,0.0,9,111,4250.0,200.0,0.0,31,31,0.0,198.6490915515336,7247.10230933126,4600.0,0.0,379.7008095879578,10,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,121274,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.5,4,2,1491.60630151615,4250.0,178378.0,1,1,1,2,250.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025787933489555888,71351.2,10,5,10,10_1,10_2,10_0_0 +21254,2,88.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,601.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,121275,2,1,0,1,1,,100.0,,11,0.0,3.0,1.0,1.0,1.0,1,1,451.592898171345,0.0,15210.81321975771,0,5,2,3,40.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03951136545542127,15210.81321975771,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +21255,2,36.0,0.0,9,111,550.0,1000.0,0.0,52,62,0.0,0.0,937.8602988546337,1550.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,40.0,1,2008.0,6,121276,2,1,1,0,1,,450.0,620.0,43,2.0,0.0,5.0,4.0,2.1,2,2,315.022788779358,550.0,26230.519928576603,4,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05909147070742454,12490.723775512668,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +21256,2,68.0,0.0,1,111,1649.0,0.0,0.0,77,74,0.0,0.0,2811.8756960205287,1649.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,121277,2,1,0,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1023.48525839625,1649.0,254879.2238541097,5,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006469730937912268,169919.48256940648,10,5,10,10_0,10_4,10_1_0 +21257,1,75.0,105.0,6,120,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,121278,2,1,1,0,1,,114.0,255.0,11,0.0,3.0,2.0,1.0,1.0,1,1,4196.0170385544,600.0,13642.594855305466,0,5,2,3,48.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04397990311694011,13642.594855305466,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +21258,2,47.0,0.0,5,112,800.0,900.0,0.0,85,62,0.0,0.0,1364.160434697649,1754.0,74.82181817141213,1708.65364314581,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,121279,2,1,3,0,1,,650.0,488.0,42,1.0,2.0,5.0,4.0,2.3,3,2,373.464461806426,800.0,38243.38571492987,6,1,2,3,75.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045864140091426434,16627.55900649125,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +21259,2,43.0,0.0,1,112,2350.0,0.0,0.0,37,48,0.0,49.00010924937828,4007.221276924344,2387.0,0.0,0.0,12,2,2,2,2,1,2,2,1,2,25.0,1,,1,121280,2,1,1,0,1,,235.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,181.071593209755,2350.0,84888.88162159675,1,1,1,2,120.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0.028119112354906068,35370.367342331985,9,5,9,9_1,9_0,9_1_0 +21260,2,62.0,0.0,7,111,1100.0,0.0,0.0,77,77,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,121281,2,1,2,0,1,,350.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,531.100602360605,1100.0,42483.93926682738,5,5,0,1,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025892137569712374,28322.62617788492,8,4,8,8_1,8_4,8_0_0 +21261,1,50.0,577.0,2,111,900.0,,,0,81,0.0,0.0,,1140.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,121282,1,1,0,0,1,,800.0,600.0,32,5.0,0.0,6.0,11.0,5.8,10,9,108.37784963346459,900.0,62579.74275687886,0,4,2,3,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.018216757528532496,10789.610820151529,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +21262,2,64.0,0.0,5,111,400.0,1800.0,0.0,54,75,0.0,0.0,682.0802173488245,2200.0,0.0,3417.30728629162,41,0,0,0,0,0,0,0,0,0,,1,,3,121283,2,2,2,0,1,,400.0,,42,1.0,4.0,7.0,2.0,1.5,2,2,124.896983841479,400.0,74389.72779595673,1,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029573975670866424,49593.15186397115,10,5,10,10_1,10_3,10_0_0 +21263,1,34.0,62.0,9,112,0.0,0.0,0.0,53,46,0.0,0.0,0.0,1765.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,121284,2,2,1,0,1,,919.0,621.0,43,2.0,0.0,5.0,4.0,2.1,2,2,2371.46329592963,0.0,26779.938209851633,4,4,2,3,95.0,7,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.065907545647387,12752.351528500776,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +21264,2,47.0,0.0,2,111,1111.0,2649.0,0.0,0,22,0.0,0.0,1894.47780368636,3760.0,0.0,5029.137222992501,41,0,0,0,0,0,0,0,0,0,,1,,2,121285,2,2,2,0,2,,433.0,,32,1.0,0.0,6.0,3.0,2.0,3,2,705.002324901929,1111.0,42369.13446281965,0,1,0,1,179.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0887438473235635,21184.567231409826,5,3,5,5_1,5_4,5_0_1 +21265,2,86.0,0.0,5,400,1290.0,0.0,0.0,75,74,0.0,0.0,2199.7087009499587,1390.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121286,2,1,2,0,1,,116.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1220.31767405052,1290.0,53063.997677410734,5,5,0,1,95.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026194784804005087,35375.998451607156,9,5,9,9_1,9_0,9_0_0 +21266,2,62.0,0.0,5,112,1156.0,0.0,0.0,0,75,0.0,0.0,1971.2118281381026,1186.0,41.567676761895626,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,121287,2,1,1,0,1,,280.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,785.21731961595,1156.0,33611.78707037138,0,5,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03528524078523195,33611.78707037138,9,5,9,9_1,9_0,9_0_0 +21267,1,76.0,253.0,2,111,383.0,,,0,77,0.0,0.0,,479.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,2,121288,2,2,0,0,2,,840.0,510.0,11,0.0,4.0,3.0,1.0,1.0,1,1,122.00276354185455,383.0,10580.555133079848,0,5,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04527172666984345,10580.555133079848,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +21268,2,56.0,0.0,1,111,527.0,2064.0,0.0,0,78,0.0,0.0,898.6406863570762,2591.0,0.0,3918.5123549477244,70,0,0,0,0,0,0,0,0,0,,1,,1,121289,1,1,2,0,2,,216.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1791.58779973856,527.0,37036.16059359489,0,5,1,2,190.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06995865549973052,37036.16059359489,9,5,9,9_1,9_3,9_1_0 +21269,2,40.0,0.0,9,111,1000.0,0.0,0.0,37,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,121290,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1258.35966872869,1000.0,95490.45332569907,1,1,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01047225104890012,63660.30221713271,10,5,10,10_0,10_4,10_0_0 +21270,1,37.0,350.0,2,111,960.0,0.0,0.0,85,63,0.0,0.0,1636.9925216371787,1160.0,277.1178450793042,0.0,70,2,2,2,2,2,1,2,2,0,,2,,2,121291,1,2,0,0,2,,0.0,558.0,42,1.0,0.0,2.0,4.0,2.1,2,2,1025.80372788427,960.0,14322.940780911755,6,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.08098895455505457,6820.447990910359,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21271,2,58.0,0.0,6,111,2400.0,0.0,0.0,74,43,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,31,2,2,2,1,1,2,2,2,3,60.0,2,,4,121292,1,3,0,0,1,,0.0,571.0,42,1.0,1.0,4.0,3.0,2.0,3,3,854.924932705306,2400.0,44438.40262590982,5,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.05400734180757163,22219.20131295491,6,3,6,6_0,6_4,6_0_0 +21272,1,47.0,269.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,358.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121293,2,3,0,0,2,,0.0,375.0,31,0.0,2.0,1.0,2.0,1.5,2,2,2322.44090069858,0.0,9468.275317958238,0,7,2,3,18.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.037810476351589656,6312.183545305492,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +21274,2,46.0,0.0,8,112,1603.0,0.0,0.0,43,63,0.0,0.0,2733.436471025414,1803.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,121295,2,1,1,0,1,,226.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,733.355143312834,1603.0,45247.70341709749,1,1,1,2,90.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03984732624725238,21546.525436713087,6,3,6,6_1,6_0,6_0_0 +21275,2,37.0,0.0,1,111,0.0,0.0,1630.0,46,37,0.0,0.0,1027.4188133760324,1630.0,0.0,1950.67340053043,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,121296,1,1,0,0,2,,0.0,1630.0,43,2.0,0.0,3.0,5.0,2.4,2,2,753.253325026459,0.0,80090.87066674176,1,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02035188263569306,33371.1961111424,8,4,8,8_0,8_4,8_1_0 +21276,2,48.0,0.0,1,111,1206.0,0.0,0.0,0,43,0.0,0.0,2056.471855306706,1206.0,0.0,0.0,33,2,2,2,2,1,1,2,2,3,15.0,2,,1,121297,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,856.599109712656,1206.0,25532.174813998547,0,1,0,1,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.047234519142442394,25532.174813998547,7,4,7,7_0,7_4,7_1_0 +21277,2,32.0,0.0,2,112,1320.0,1444.0,0.0,85,65,0.0,0.0,2250.864717251121,2764.0,0.0,2741.4398452250553,50,0,0,0,0,0,0,0,0,0,,1,,2,121298,1,1,1,0,1,,400.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,65.9310416793785,1320.0,40981.48320142573,6,1,1,2,200.0,7,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06744509432259498,17075.618000594055,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +21278,2,66.0,0.0,5,111,1395.0,0.0,0.0,77,77,0.0,132.4327277010224,2378.7547580040255,1555.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121299,2,1,1,0,1,,294.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,580.871433393704,1395.0,25331.635857791276,5,5,0,1,92.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061385692133330075,16887.757238527516,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +21279,1,76.0,130.0,2,111,343.0,598.0,0.0,0,77,0.0,0.0,584.883786376617,941.0,0.0,1135.3054206679938,71,2,1,2,1,1,2,2,2,0,,2,,2,121300,2,1,0,1,1,579.0,118.0,368.0,11,0.0,5.0,5.0,1.0,1.0,1,1,1290.96620414716,343.0,11388.90304456677,0,5,2,3,85.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.08262428754707124,11388.90304456677,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21280,2,69.0,0.0,2,111,261.0,,,72,77,0.0,0.0,,537.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,0,,1,,2,121301,2,2,0,0,2,,554.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,77.12744431633972,261.0,15870.83739211028,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033835643749141664,10580.558261406853,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +21281,2,67.0,0.0,1,211,706.0,1407.0,0.0,0,77,0.0,0.0,1203.8715836206752,2113.0,0.0,2671.1951954512833,50,0,0,0,0,0,0,0,0,0,,1,,1,121302,2,1,4,0,1,,196.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1206.14716605017,706.0,19659.19205525498,0,5,0,1,128.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10748152793162152,19659.19205525498,5,3,5,5_1,5_1,5_1_0 +21282,2,51.0,0.0,8,111,250.0,,,0,54,0.0,0.0,,275.0,34.63973063491302,,71,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,121303,2,1,0,0,2,,300.0,400.0,32,1.0,0.0,3.0,2.0,1.5,2,1,91.12497232524234,250.0,33266.3932007614,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008266601021048047,22177.595467174266,6,3,6,6_0,6_2,6_0_0 +21283,1,53.0,73.0,5,111,504.0,1080.0,0.0,85,65,0.0,0.0,859.4210738595189,1584.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,121304,2,1,0,1,1,1084.0,0.0,335.0,42,1.0,1.0,5.0,3.0,2.0,3,2,326.82706316524,504.0,19136.510784199814,6,1,2,3,75.0,7,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08277371031023273,9568.255392099907,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21284,2,32.0,0.0,9,111,720.0,1660.0,0.0,43,47,0.0,0.0,1227.744391227884,2380.0,0.0,3151.5167195800495,12,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,121305,2,1,0,0,1,,0.0,720.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1054.52173976291,720.0,78204.3766236144,1,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030433079358903055,37240.17934457828,9,5,9,9_0,9_3,9_0_0 +21285,1,57.0,327.0,2,111,564.0,207.0,0.0,77,78,0.0,0.0,961.7331064618425,771.0,0.0,392.99033792353634,70,2,1,1,2,1,2,2,2,0,,2,,2,121306,1,3,0,1,2,607.0,321.0,363.0,41,1.0,2.0,5.0,3.0,2.0,3,3,267.528920489404,564.0,14452.685167933243,6,7,2,3,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.053346488285142254,7226.3425839666215,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21286,2,65.0,0.0,1,111,298.0,1490.0,0.0,0,74,0.0,0.0,508.1497619248742,1788.0,0.0,2828.771031430286,20,0,0,0,0,0,0,0,0,0,,1,,1,121307,2,1,1,0,1,,187.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1635.38636257608,298.0,35966.36139370984,0,5,0,1,98.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04971311888982752,35966.36139370984,9,5,9,9_1,9_3,9_1_0 +21287,2,28.0,0.0,1,111,2200.0,0.0,0.0,85,63,0.0,0.0,3751.441195418535,2360.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,121308,2,2,1,0,1,,720.0,,42,1.0,0.0,3.0,4.0,2.3,3,2,695.431772625205,2200.0,16601.674654125407,6,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14215433377460843,7218.119414837134,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +21288,2,55.0,0.0,9,112,1300.0,0.0,0.0,0,11,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,121309,2,1,1,0,1,,180.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,989.805529812306,1300.0,10700.485853064833,0,1,1,2,91.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12148981063580903,10700.485853064833,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +21289,2,39.0,0.0,2,111,390.0,930.0,0.0,67,63,0.0,662.163638505112,665.0282119151038,1820.0,0.0,1765.6087645840037,50,0,0,0,0,0,0,0,0,1,15.0,1,,2,121310,2,1,1,0,1,,288.0,,43,3.0,5.0,2.0,3.0,2.0,3,2,1221.04872120442,390.0,42699.195862620014,1,1,1,2,70.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042623753521158825,21349.597931310007,6,3,6,6_1,6_2,6_0_1 +21290,2,59.0,0.0,2,111,299.0,745.0,0.0,0,62,0.0,0.0,509.8549624682463,1044.0,0.0,1414.385515715143,71,2,2,2,2,2,1,2,1,2,15.0,2,,2,121311,1,1,0,0,1,,0.0,419.0,12,1.0,3.0,4.0,1.0,1.0,1,1,573.021242516818,299.0,15393.985598721258,0,1,2,3,80.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.0678186940805455,15393.985598721258,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +21291,1,67.0,35.0,1,111,850.0,0.0,0.0,0,77,0.0,0.0,1449.420461866252,895.0,62.351515142843446,0.0,44,2,2,2,2,2,1,2,2,0,,2,,1,121312,1,1,0,0,1,,150.0,390.0,11,0.0,2.0,2.0,1.0,1.0,1,1,3169.40793896863,850.0,12286.660275698985,0,5,2,3,50.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07284322834010186,12286.660275698985,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +21292,0,49.0,0.0,2,111,900.0,,,0,55,0.0,0.0,,1050.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,121313,2,2,0,0,2,,450.0,,32,2.0,0.0,4.0,3.0,1.8,2,2,108.98348232875537,900.0,30758.737381099498,0,1,5,0,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034136641793534726,17088.187433944164,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +21293,2,51.0,0.0,2,111,240.0,,,0,56,0.0,0.0,,500.0,360.2531986030954,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,121314,2,2,0,0,2,,200.0,,32,3.0,1.0,5.0,4.0,2.3,3,3,120.13668960118547,240.0,25450.210785212435,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019646202706129236,11065.309037048886,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +21295,2,69.0,0.0,1,211,0.0,0.0,1200.0,0,77,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,71,0,0,0,0,0,0,0,0,0,,1,,1,121316,2,2,5,0,1,,0.0,430.0,11,0.0,3.0,2.0,1.0,1.0,1,1,2761.99338129872,0.0,16895.001258032928,0,5,2,3,45.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0710269257558916,16895.001258032928,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +21296,2,62.0,0.0,2,111,360.0,0.0,0.0,0,78,0.0,0.0,613.872195613942,393.0,45.72444443808519,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,121317,2,1,0,1,1,,150.0,458.0,11,0.0,0.0,3.0,1.0,1.0,1,1,471.394900159384,360.0,20532.924913039315,0,5,2,3,66.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019139991095493056,20532.924913039315,5,3,5,5_0,5_2,5_0_1 +21297,2,39.0,0.0,1,111,0.0,0.0,1382.0,38,31,0.0,0.0,871.0998773531759,1382.0,0.0,1653.883827934389,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,121318,1,2,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,966.840192955568,0.0,134733.8453651581,1,1,1,2,86.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01025725938612142,64158.97398340862,10,5,10,10_0,10_4,10_1_0 +21298,2,58.0,0.0,8,111,0.0,,,0,75,0.0,0.0,,862.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,2000.0,6,121319,2,1,0,0,1,,0.0,450.0,11,0.0,3.0,1.0,1.0,1.0,1,1,131.91903329155733,0.0,22313.753629092997,0,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03863088274292461,22313.753629092997,6,3,6,6_1,6_2,6_0_0 +21299,1,23.0,366.0,2,111,250.0,400.0,0.0,85,67,0.0,0.0,426.3001358430153,650.0,0.0,759.4016191759156,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,121320,2,3,0,0,1,,0.0,344.0,42,1.0,0.0,3.0,3.0,1.8,2,2,176.263130791169,250.0,14148.476810143766,6,1,2,3,69.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04594134115793877,7860.2648945243145,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21300,1,24.0,347.0,2,111,420.0,432.0,0.0,0,81,0.0,0.0,716.1842282162656,852.0,0.0,820.1537487099888,60,1,2,1,1,1,2,2,2,0,,2,,2,121321,1,2,0,1,1,616.0,320.0,312.0,32,1.0,0.0,4.0,3.0,1.6,1,1,402.174553114714,420.0,11041.434937547596,0,4,2,3,79.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07716388357302018,6900.896835967247,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +21301,1,83.0,356.0,5,111,370.0,120.0,0.0,0,77,0.0,0.0,630.9242010476627,490.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,3,121322,2,1,0,1,2,680.0,0.0,335.0,21,0.0,3.0,4.0,2.0,1.5,2,2,342.676535658545,370.0,20828.59394617163,0,5,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023525351796013276,13885.729297447753,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +21302,1,38.0,457.0,2,111,500.0,450.0,0.0,0,56,0.0,0.0,852.6002716860306,950.0,0.0,854.326821572905,71,0,0,0,0,0,0,0,0,0,,2,,2,121323,2,1,0,1,1,660.0,0.0,422.0,32,1.0,0.0,4.0,5.0,2.8,5,2,531.152661124379,500.0,10240.488888888887,0,4,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.092769008424077,3657.31746031746,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21303,2,44.0,0.0,6,111,500.0,1000.0,0.0,0,65,0.0,0.0,852.6002716860306,2234.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,121324,1,1,1,0,1,,240.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,683.962888634352,500.0,27044.327276621334,0,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08260512369746381,27044.327276621334,7,4,7,7_1,7_4,7_0_0 +21304,1,42.0,413.0,7,111,402.0,,,0,22,0.0,0.0,,666.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,2,,5,121325,2,1,0,0,2,,400.0,702.0,32,2.0,1.0,5.0,6.0,3.0999999999999996,4,4,91.9194479336519,402.0,11084.16641536772,0,4,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06008570920377194,3575.537553344426,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +21305,2,30.0,0.0,2,111,200.0,0.0,0.0,0,48,52.734142551830075,0.0,341.04010867441224,250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,121326,2,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,972.20825497298,200.0,34397.75761597562,0,1,1,2,27.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007267915623775735,34397.75761597562,9,5,9,9_0,9_4,9_0_1 +21306,2,74.0,0.0,2,111,284.0,0.0,0.0,0,74,0.0,0.0,484.2769543176654,284.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,121327,2,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,596.150118029257,284.0,32775.83387100834,0,5,0,1,73.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008664920658241756,32775.83387100834,8,4,8,8_0,8_3,8_0_1 +21307,1,40.0,350.0,8,111,540.0,,,0,52,0.0,0.0,,582.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,2,15.0,2,2001.0,6,121328,2,1,0,0,2,,540.0,485.0,32,1.0,0.0,3.0,3.0,1.6,1,1,90.56157331680535,540.0,17901.5796896514,0,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03251109734949505,11188.487306032124,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +21308,2,36.0,0.0,8,111,880.0,370.0,0.0,56,63,0.0,0.0,1500.5764781674138,1250.0,0.0,702.446497737722,50,0,0,0,0,0,0,0,0,2,10.0,2,1999.0,6,121329,1,1,0,0,1,,405.0,575.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1251.97532999825,880.0,56582.34670027314,1,1,2,3,61.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022091695959898492,31434.6370557073,8,4,8,8_0,8_2,8_0_0 +21309,2,33.0,0.0,2,111,0.0,0.0,250.0,0,62,0.0,0.0,157.57957260368593,250.0,0.0,299.1830368911702,43,2,2,2,2,1,2,2,2,2,25.0,2,,2,121330,2,2,0,1,1,334.0,0.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,324.848135531767,0.0,24103.718497537866,0,1,2,3,42.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010371843664932316,24103.718497537866,6,3,6,6_0,6_3,6_0_1 +21310,2,60.0,0.0,2,111,540.0,120.0,0.0,56,62,0.0,0.0,920.8082934209131,660.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,121331,1,3,0,1,1,33.0,0.0,333.0,43,3.0,0.0,4.0,4.0,2.5,4,4,816.397256673261,540.0,55641.17800708404,1,1,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011861718670226054,22256.471202833614,6,3,6,6_0,6_3,6_0_1 +21311,2,77.0,0.0,2,111,490.0,1100.0,0.0,75,75,0.0,0.0,835.54826625231,1590.0,0.0,2088.354452733768,20,0,0,0,0,0,0,0,0,0,,1,,2,121332,2,1,2,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,927.183781970521,490.0,85723.61990788848,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01854798014489452,57149.079938592324,10,5,10,10_1,10_4,10_0_1 +21312,0,45.0,0.0,1,111,535.0,64.0,0.0,0,35,0.0,0.0,912.2822907040527,988.0,0.0,121.5042590681465,12,2,2,2,1,1,2,2,2,0,,2,,1,121333,1,2,0,1,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,927.057703309864,535.0,31252.554527864937,0,4,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03161341576475274,24040.426559896103,6,3,6,6_0,6_4,6_1_0 +21313,2,29.0,0.0,7,111,300.0,,,35,35,0.0,0.0,,370.0,96.99124577775646,,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,121334,2,1,0,0,2,,270.0,500.0,43,2.0,0.0,4.0,3.0,1.8,2,2,133.31149198548692,300.0,50203.52378936927,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007370000591041151,27890.846549649592,7,4,7,7_1,7_2,7_0_0 +21314,2,69.0,0.0,6,111,432.0,,,86,72,0.0,0.0,,708.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,121335,2,1,0,0,1,,700.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,102.16732561071501,432.0,2255.387840968927,5,5,0,1,187.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.31391496714633316,1503.5918939792846,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +21315,1,41.0,390.0,7,111,0.0,,,54,62,0.0,0.0,,471.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,121336,2,3,0,0,2,,606.0,600.0,43,2.0,0.0,3.0,4.0,2.1,2,2,132.568266187682,0.0,22031.216079241556,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02137875632039167,10491.055275829312,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +21316,1,45.0,203.0,7,111,360.0,,,63,54,0.0,0.0,,500.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,2,,5,121337,2,2,0,0,2,,600.0,453.0,43,2.0,1.0,2.0,3.0,1.8,2,2,144.56424567312055,360.0,14737.25997101474,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033927609405235475,8187.366650563745,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21317,2,37.0,0.0,1,111,788.0,1541.0,0.0,33,45,0.0,0.0,1343.6980281771841,2329.0,0.0,2925.594737875215,10,0,0,0,0,0,0,0,0,3,60.0,1,,1,121338,1,3,4,0,2,,365.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,581.502563459449,788.0,54321.76019999684,1,1,1,2,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04287416297677584,36214.50679999789,9,5,9,9_1,9_4,9_1_0 +21318,2,61.0,0.0,7,111,360.0,,,74,74,0.0,0.0,,446.0,119.1606733841008,,20,0,0,0,0,0,0,0,0,0,,1,,5,121339,2,2,0,0,2,,180.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,151.77704892684383,360.0,91422.82361595126,5,5,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004878431690904184,45711.41180797563,10,5,10,10_1,10_2,10_0_0 +21319,2,78.0,0.0,7,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1288.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,121340,2,1,1,0,1,,471.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,4131.73212260385,0.0,21361.231981398072,0,5,0,1,90.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06029614776533603,21361.231981398072,6,3,6,6_1,6_1,6_0_0 +21320,2,48.0,0.0,2,111,225.0,0.0,0.0,0,35,0.0,0.0,383.6701222587138,225.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,121341,1,1,0,3,2,576.0,0.0,720.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1423.34493154807,225.0,26940.666020803666,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008351686622233255,26940.666020803666,7,4,7,7_0,7_4,7_0_1 +21321,2,51.0,0.0,9,111,1200.0,0.0,0.0,74,43,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,121342,2,1,0,0,2,,0.0,,42,3.0,0.0,4.0,4.0,2.5,4,4,892.937689578059,1200.0,146120.9835429013,5,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008212372863256006,58448.393417160514,10,5,10,10_0,10_4,10_0_0 +21322,2,23.0,0.0,9,120,1400.0,0.0,0.0,52,63,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,43,2,2,2,2,1,2,2,2,2,3.0,1,2012.0,6,121343,2,2,1,0,1,,250.0,480.0,43,2.0,0.0,4.0,2.0,1.5,2,2,4810.64575231304,1400.0,29666.68258553894,1,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04719098591368728,19777.788390359292,5,3,5,5_1,5_0,5_0_0 +21324,2,45.0,0.0,9,111,450.0,0.0,0.0,0,42,0.0,0.0,767.3402445174275,450.0,0.0,0.0,20,1,2,2,2,1,2,2,2,0,,2,2005.0,6,121345,2,1,0,1,1,420.0,0.0,550.0,32,1.0,0.0,3.0,3.0,1.8,2,1,692.689034852312,450.0,42840.67229483804,0,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01050403683917494,23800.373497132245,6,3,6,6_0,6_4,6_0_0 +21325,2,72.0,0.0,1,111,200.0,1135.0,0.0,0,74,0.0,0.0,341.04010867441224,1335.0,0.0,2154.8020944116606,20,0,0,0,0,0,0,0,0,0,,2,,1,121346,2,1,0,1,1,,0.0,2160.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1017.24784030315,200.0,32505.19575980294,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041070357178125586,32505.19575980294,8,4,8,8_0,8_4,8_1_0 +21326,2,77.0,0.0,5,300,343.0,0.0,0.0,72,72,1265.6194212439218,331.081819252556,584.883786376617,2033.0,332.541414095165,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121347,2,1,3,0,1,,107.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,814.091018485778,343.0,16862.60272925056,5,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12056264579331369,11241.735152833708,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +21327,0,35.0,0.0,2,111,1200.0,,,48,42,0.0,0.0,,1350.0,207.83838380947813,,41,0,0,0,0,0,0,0,0,2,3.0,2,,2,121348,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,91.63852141976899,1200.0,51759.280447625686,1,1,5,0,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026082279126079456,28755.155804236492,8,4,8,8_0,8_3,8_0_1 +21328,2,83.0,0.0,2,111,520.0,0.0,0.0,77,77,2109.365702073203,0.0,886.7042825534718,2578.0,80.36417507299822,0.0,70,2,2,2,2,2,2,2,1,0,,1,,2,121349,1,2,5,0,2,,460.0,598.0,41,0.0,4.0,4.0,2.0,1.5,2,2,986.436351249037,520.0,39009.34876383664,5,5,2,3,85.0,4,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.06608672232923606,26006.23250922443,7,4,7,7_1,7_1,7_0_1 +21329,1,25.0,380.0,2,400,531.0,,,0,47,0.0,0.0,,644.0,156.57158246980686,,31,0,0,0,0,0,0,0,0,0,,2,,2,121350,2,2,0,0,2,,683.0,440.0,22,3.0,0.0,3.0,3.0,2.0,3,3,84.99287574244052,531.0,23550.91987650785,0,1,2,3,55.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02734500407529274,11775.459938253925,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +21330,2,62.0,0.0,9,111,600.0,0.0,0.0,77,72,3164.0485531098047,0.0,1023.1203260232367,3600.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,2008.0,6,121351,1,2,2,0,2,,350.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,541.091902277988,600.0,46166.257128586665,7,7,0,1,80.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.07797903109132145,30777.50475239111,8,4,8,8_1,8_4,8_0_0 +21331,2,79.0,0.0,2,111,996.0,0.0,0.0,74,74,0.0,0.0,1698.379741198573,996.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,121352,2,1,1,0,1,,358.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,265.544613111996,996.0,65845.15500376218,5,5,0,1,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015126397681698704,43896.77000250812,10,5,10,10_1,10_2,10_0_1 +21332,2,60.0,0.0,6,111,300.0,300.0,0.0,78,54,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,42,0,0,0,0,0,0,0,0,3,60.0,2,,4,121353,1,1,0,1,1,,0.0,680.0,42,2.0,0.0,5.0,3.0,2.0,3,3,142.631830610746,300.0,40074.62439835619,5,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014972067960906735,20037.312199178094,5,3,5,5_0,5_4,5_0_0 +21333,2,30.0,0.0,6,111,360.0,,,56,63,0.0,0.0,,498.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,121354,2,3,0,0,2,,560.0,597.0,43,2.0,0.0,3.0,4.0,2.1,2,2,111.52112906417779,360.0,6772.8985067382855,1,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07352834233445918,3225.189765113469,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21334,2,82.0,0.0,1,111,300.0,200.0,0.0,0,74,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,41,0,0,0,0,0,0,0,0,0,,2,,1,121355,2,1,0,1,1,386.0,0.0,400.0,11,0.0,0.0,2.0,1.0,1.0,1,1,873.139254586075,300.0,27686.59260886491,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018059282594417417,27686.59260886491,7,4,7,7_0,7_4,7_1_0 +21335,2,60.0,0.0,2,111,480.0,0.0,0.0,86,68,104.41360225262355,0.0,818.4962608185893,779.0,277.1178450793042,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,2,121356,1,3,0,1,1,385.0,330.0,269.0,42,1.0,0.0,3.0,2.0,1.5,2,2,663.059980263247,480.0,22161.0,6,1,2,3,72.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03515184332836966,14774.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +21337,1,51.0,235.0,8,112,780.0,,,0,67,0.0,0.0,,1056.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,121358,1,1,0,0,2,,1800.0,,32,2.0,1.0,5.0,5.0,2.5999999999999996,3,2,71.98581453192712,780.0,20722.19534515836,0,1,1,2,187.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05095985161855591,7970.075132753217,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +21338,2,62.0,0.0,9,111,360.0,,,0,56,0.0,0.0,,383.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,1,20.0,1,2012.0,6,121359,2,1,0,0,2,,120.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,173.56597043070045,360.0,3162.2061038134843,0,1,0,1,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1211179750548576,3162.2061038134843,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21339,2,82.0,0.0,5,111,440.0,520.0,0.0,0,77,0.0,0.0,750.2882390837069,960.0,0.0,987.2221049286903,41,0,0,0,0,0,0,0,0,0,,1,,3,121360,2,1,1,0,1,,480.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,892.434213744117,440.0,47987.025159569894,0,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020005407645248673,47987.025159569894,10,5,10,10_1,10_4,10_0_0 +21340,2,69.0,0.0,5,112,210.0,450.0,0.0,0,77,0.0,0.0,358.0921141081328,660.0,0.0,854.326821572905,70,0,0,0,0,0,0,0,0,0,,2,,3,121361,2,2,0,0,1,,80.0,366.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2647.95644757435,210.0,15020.808199895087,0,5,2,3,50.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0439390471682216,15020.808199895087,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +21341,2,43.0,0.0,2,112,550.0,700.0,0.0,84,65,0.0,0.0,937.8602988546337,1250.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,121362,1,1,0,1,1,848.0,0.0,326.0,42,1.0,0.0,4.0,5.0,2.8,4,3,204.775871822057,550.0,41715.62867670299,3,1,2,3,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0299647887291242,14898.43881310821,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +21342,2,24.0,0.0,1,112,0.0,0.0,0.0,53,46,0.0,0.0,0.0,1443.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,1,121363,1,3,3,0,2,,549.0,560.0,43,2.0,0.0,2.0,2.0,1.5,2,2,786.93266725637,0.0,34719.771860665096,1,1,2,3,40.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04156133300042824,23146.51457377673,6,3,6,6_1,6_0,6_1_0 +21343,2,67.0,0.0,5,111,297.0,0.0,0.0,0,75,0.0,0.0,506.4445613815022,297.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,121364,2,2,0,1,2,353.0,0.0,499.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1289.3432836254,297.0,28546.94334263595,0,5,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010403915979208153,28546.94334263595,8,4,8,8_0,8_4,8_0_0 +21344,2,52.0,0.0,2,111,0.0,1500.0,0.0,0,85,0.0,0.0,0.0,3092.0,0.0,2847.7560719096837,20,2,2,2,2,1,2,2,2,0,,1,,2,121365,1,3,4,0,2,,90.0,550.0,11,0.0,0.0,7.0,1.0,1.0,1,1,1068.66952772017,0.0,33697.41632031946,0,7,2,3,120.0,4,3,5,0,1,0,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09175777663807214,33697.41632031946,9,5,9,9_1,9_1,9_0_1 +21346,2,33.0,0.0,9,212,1200.0,0.0,0.0,52,52,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,121367,2,1,1,0,1,,275.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1203.97726243514,1200.0,46427.571280046344,1,1,1,2,110.0,3,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02584671062722026,22108.367276212542,6,3,6,6_1,6_0,6_0_0 +21347,0,60.0,0.0,1,300,200.0,0.0,0.0,0,63,0.0,662.163638505112,341.04010867441224,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,121368,2,3,4,0,2,,190.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1115.90218508709,200.0,11730.0,0,1,5,0,65.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.059676044330775786,11730.0,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +21348,2,68.0,0.0,5,111,1772.0,0.0,0.0,77,74,0.0,0.0,3021.6153628552925,1799.0,37.410909085706066,0.0,60,2,2,1,2,1,2,2,2,0,,1,,3,121369,2,1,2,0,1,,121.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1151.05031726994,1772.0,53325.843909690666,5,5,0,1,132.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03373598743316045,35550.562606460444,9,5,9,9_1,9_3,9_0_0 +21349,1,57.0,120.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,169.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,121370,1,3,0,1,1,,0.0,581.0,22,2.0,2.0,3.0,4.0,2.1,2,2,247.683736642291,0.0,17455.02830424175,0,4,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009682023830286844,8311.91824011512,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21350,2,87.0,0.0,2,111,431.0,0.0,0.0,0,75,0.0,0.0,734.9414341933584,431.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,121371,2,1,0,1,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1784.64074609725,431.0,39183.657318919526,0,5,0,1,140.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01099948370036135,39183.657318919526,9,5,9,9_0,9_2,9_0_1 +21351,2,46.0,0.0,5,111,1020.0,,,0,52,0.0,0.0,,1296.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,121372,2,2,0,0,2,,800.0,550.0,32,1.0,1.0,5.0,4.0,2.3,3,1,72.39894842029965,1020.0,32647.76703966451,0,1,2,3,173.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03969643615826651,14194.681321593267,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +21352,0,92.0,0.0,8,112,300.0,700.0,0.0,0,74,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,121373,2,1,2,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,761.922741895826,300.0,34380.643752193195,0,5,5,0,100.0,9,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029086133674742738,34380.643752193195,9,5,9,9_1,9_1,9_0_0 +21353,2,65.0,0.0,2,111,272.0,240.0,0.0,0,74,0.0,0.0,463.81454779720065,512.0,0.0,455.6409715055494,60,0,0,0,0,0,0,0,0,0,,2,,2,121374,2,1,0,1,1,,0.0,586.0,11,0.0,0.0,3.0,1.0,1.0,1,1,441.898385000707,272.0,76347.14654607554,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006706210030927714,76347.14654607554,10,5,10,10_0,10_4,10_0_1 +21354,2,59.0,0.0,2,111,120.0,850.0,0.0,0,52,0.0,0.0,204.62406520464734,970.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,121375,2,2,0,0,2,,0.0,446.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2173.73239548229,120.0,18722.005021602563,0,1,2,3,55.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05181069008798771,18722.005021602563,5,3,5,5_0,5_3,5_0_1 +21355,1,56.0,198.0,2,111,240.0,196.0,0.0,0,77,0.0,0.0,409.2481304092947,436.0,0.0,372.10679339619867,71,2,2,2,2,1,1,2,2,0,,2,,2,121376,1,3,0,1,1,619.0,0.0,498.0,11,0.0,4.0,3.0,1.0,1.0,1,1,263.807968811051,240.0,8230.218758138712,0,7,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.052975505610813524,8230.218758138712,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21356,2,47.0,0.0,6,111,1030.0,0.0,0.0,0,37,0.0,331.081819252556,1756.356559673223,1280.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,121377,2,1,2,0,1,,218.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,465.14332289422,1030.0,44494.67227124953,0,1,0,1,88.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028767489109636137,34226.670977884256,9,5,9,9_1,9_3,9_0_0 +21357,2,51.0,0.0,2,111,500.0,0.0,0.0,54,47,1898.4291318658827,0.0,852.6002716860306,2450.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,121378,2,2,2,0,1,,465.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,692.828123583334,500.0,56453.44871561557,1,1,0,1,100.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04339858867333125,22581.379486246227,6,3,6,6_1,6_2,6_0_1 +21358,2,32.0,0.0,9,112,1200.0,0.0,0.0,52,48,0.0,662.163638505112,2046.2406520464733,1770.0,96.99124577775646,0.0,43,2,2,1,2,1,1,2,2,2,45.0,1,2007.0,6,121379,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1119.10796458146,1200.0,43921.72731621675,1,1,1,2,109.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04029896154258218,29281.151544144497,8,4,8,8_1,8_0,8_0_0 +21359,2,61.0,0.0,1,221,305.0,745.0,0.0,0,77,0.0,0.0,520.0861657284787,1050.0,0.0,1414.385515715143,50,0,0,0,0,0,0,0,0,0,,1,,1,121380,2,2,2,0,1,,266.0,260.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2692.74597049025,305.0,12105.094784969446,0,5,2,3,45.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08674033691200464,12105.094784969446,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +21360,2,74.0,0.0,1,211,1100.0,0.0,0.0,75,74,0.0,1191.8945493092015,1875.7205977092674,2096.0,133.01656563806603,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,121381,2,1,2,0,1,,175.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2685.77727187443,1100.0,59330.58434464155,5,5,0,1,80.0,2,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035327479463621705,39553.7228964277,9,5,9,9_1,9_1,9_1_0 +21361,2,49.0,0.0,5,211,350.0,0.0,0.0,68,69,632.8097106219609,0.0,596.8201901802214,1070.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,121382,2,3,0,1,1,463.0,0.0,284.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2572.77435968964,350.0,27191.88011294372,1,1,2,3,60.0,1,2,2,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03934998225777941,18127.920075295813,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +21362,0,43.0,0.0,9,111,300.0,200.0,0.0,0,52,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,2009.0,6,121383,2,3,0,0,1,,0.0,,32,1.0,1.0,3.0,3.0,1.8,2,2,1506.8291648438,300.0,44798.0,0,1,5,0,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011161212554131881,24887.777777777777,7,4,7,7_0,7_4,7_0_0 +21363,2,60.0,0.0,1,111,300.0,0.0,0.0,0,54,0.0,0.0,511.56016301161833,300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,1,121384,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,564.511633678504,300.0,47491.519404186336,0,1,0,1,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006316917288890851,47491.519404186336,10,5,10,10_0,10_4,10_1_0 +21364,2,26.0,0.0,5,112,1100.0,0.0,0.0,0,12,0.0,0.0,1875.7205977092674,2300.0,1662.707070475825,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,121385,2,1,2,0,2,,900.0,,22,3.0,0.0,6.0,4.0,2.5,4,4,1762.29438035208,1100.0,8705.180476824778,0,1,0,1,115.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.264210490078079,3482.072190729911,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +21365,2,24.0,0.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1254.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,1,121386,2,1,0,0,1,,0.0,385.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3122.39147804917,0.0,30121.688095555175,0,1,2,3,37.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04163113289075731,30121.688095555175,8,4,8,8_0,8_2,8_1_0 +21366,1,48.0,297.0,1,111,180.0,900.0,0.0,0,43,0.0,0.0,306.936097806971,1080.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,3,25.0,2,,1,121387,2,1,0,0,1,,0.0,287.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1049.65348109501,180.0,12085.209194416768,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08936543692590344,12085.209194416768,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +21367,2,64.0,0.0,9,112,600.0,,,52,21,0.0,0.0,,666.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,121388,2,1,0,0,2,,150.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,126.70344112643299,600.0,51291.60683992923,1,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012984580539238162,34194.40455995282,9,5,9,9_1,9_1,9_0_0 +21368,2,59.0,0.0,2,111,265.0,830.0,0.0,0,63,0.0,0.0,451.8781439935962,1125.0,41.567676761895626,1575.7583597900248,71,2,2,2,2,1,2,2,2,2,20.0,1,,2,121389,2,3,4,0,1,,130.0,636.0,12,1.0,2.0,4.0,1.0,1.0,1,1,861.993607843248,265.0,19136.434935870842,0,1,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.05878837953725703,19136.434935870842,5,3,5,5_1,5_2,5_0_1 +21369,2,56.0,0.0,6,112,486.0,0.0,0.0,77,78,0.0,1986.490915515336,828.7274640788218,2116.0,180.1265993015477,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121390,2,1,2,0,1,,180.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,685.900818972235,486.0,12295.021639213528,7,5,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1721021777831823,8196.681092809018,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +21370,2,69.0,0.0,8,111,306.0,717.0,0.0,0,75,0.0,0.0,521.7913662718507,1023.0,0.0,1361.2274023728287,41,0,0,0,0,0,0,0,0,0,,2,1999.0,6,121391,2,2,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1187.91153856627,306.0,24677.92794813656,0,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04145404760683107,24677.92794813656,7,4,7,7_0,7_4,7_0_0 +21371,2,53.0,0.0,7,211,1000.0,,,0,34,0.0,0.0,,1000.0,0.0,,20,0,0,0,0,0,0,0,0,2,45.0,1,,5,121392,2,1,0,0,2,,600.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,114.94804101866816,1000.0,44776.64284471877,0,1,0,1,200.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022333072255280657,22388.321422359386,6,3,6,6_1,6_2,6_0_0 +21372,1,42.0,305.0,2,111,350.0,,,0,54,0.0,0.0,,390.0,55.423569015860835,,31,2,2,2,2,2,2,2,1,3,15.0,2,,2,121393,1,2,0,0,2,,400.0,464.0,32,1.0,0.0,3.0,3.0,1.8,3,1,123.14546858724025,350.0,17595.56720161889,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.022164673382289023,9775.315112010494,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21373,2,43.0,0.0,7,112,1284.0,0.0,0.0,0,67,0.0,0.0,2189.4774976897265,1319.0,48.49562288887823,0.0,50,2,2,2,2,1,2,2,2,2,40.0,2,,5,121394,1,1,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1846.95530979688,1284.0,40899.32899492659,0,1,2,3,55.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.03224991784495088,40899.32899492659,9,5,9,9_0,9_1,9_0_0 +21374,2,30.0,0.0,9,111,520.0,0.0,0.0,0,35,0.0,0.0,886.7042825534718,520.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,121395,2,1,0,0,1,,170.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1472.14796795142,520.0,65436.52982741261,0,1,1,2,35.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007946631665393755,65436.52982741261,10,5,10,10_0,10_2,10_0_0 +21375,2,69.0,0.0,6,111,0.0,,,77,78,0.0,0.0,,878.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,121396,2,3,0,0,2,,221.0,650.0,41,0.0,3.0,3.0,2.0,1.5,2,2,136.5340181302932,0.0,23058.957797744624,6,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03807630889917654,15372.638531829749,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +21376,2,43.0,0.0,7,111,571.0,0.0,0.0,0,38,0.0,0.0,973.6695102654469,571.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,121397,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1450.13393581924,571.0,67139.51390709644,0,1,1,2,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008504678791540179,67139.51390709644,10,5,10,10_0,10_4,10_0_0 +21377,2,52.0,0.0,2,111,500.0,450.0,0.0,0,48,0.0,0.0,852.6002716860306,950.0,0.0,854.326821572905,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,121398,2,1,2,0,1,,160.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,796.724538232304,500.0,34148.3892757354,0,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027819760174604646,34148.3892757354,9,5,9,9_1,9_4,9_0_1 +21378,2,37.0,0.0,9,111,720.0,,,0,56,0.0,0.0,,1020.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,121399,2,1,0,0,2,,0.0,,32,1.0,0.0,4.0,7.0,3.3999999999999995,4,3,8.135643015159527,720.0,13832.728344438847,0,4,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07373816463402676,4068.44951307025,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21379,2,69.0,0.0,1,120,550.0,0.0,0.0,71,71,1423.821848899412,317.83854648245375,937.8602988546337,2260.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121400,2,2,2,0,1,,629.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,778.685979461495,550.0,26104.35533321262,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08657559135829712,17402.90355547508,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +21380,0,74.0,0.0,2,111,550.0,0.0,0.0,0,74,0.0,0.0,937.8602988546337,550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,121401,2,3,0,1,1,2000.0,0.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1497.7887065042,550.0,57411.00814533807,0,5,5,0,189.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009580044276659537,57411.00814533807,10,5,10,10_0,10_4,10_0_1 +21382,2,33.0,0.0,2,111,500.0,900.0,0.0,43,54,0.0,0.0,852.6002716860306,1400.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,2,8.0,1,,2,121403,2,2,3,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,242.710969264575,500.0,49013.328138709556,1,1,1,2,95.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028563659175274682,27229.62674372753,7,4,7,7_1,7_3,7_0_1 +21383,1,30.0,357.0,7,211,0.0,,,11,85,0.0,0.0,,66.0,91.44888887617039,,44,0,0,0,0,0,0,0,0,0,,1,,5,121404,1,2,0,0,2,,0.0,540.0,42,1.0,0.0,4.0,4.0,2.1,2,2,116.852353425328,0.0,10856.721336919923,1,6,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.006079183388041564,5169.867303295201,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +21384,2,50.0,0.0,2,111,600.0,690.0,0.0,62,47,0.0,0.0,1023.1203260232367,1390.0,138.5589225396521,1309.9677930784544,50,2,1,2,2,1,2,2,2,2,20.0,2,,2,121405,2,1,0,1,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,830.715984118354,600.0,65699.33475986167,1,1,1,2,76.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021156987434965722,26279.733903944667,7,4,7,7_0,7_3,7_0_1 +21385,2,45.0,0.0,9,211,1500.0,0.0,0.0,52,53,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,60,2,2,2,1,2,2,2,2,0,,1,2011.0,6,121406,2,1,1,0,1,,1500.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,754.449272586482,1500.0,51232.50440720154,1,1,1,2,120.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.029278287629233117,20493.001762880616,5,3,5,5_1,5_2,5_0_0 +21386,0,48.0,0.0,9,111,900.0,,,0,21,0.0,0.0,,1000.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,15.0,7,2007.0,6,121407,2,1,0,0,2,,300.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,38.52526551203196,900.0,15116.900826446281,0,1,5,0,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06615112525250869,15116.900826446281,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +21387,2,45.0,0.0,2,111,600.0,,,42,52,0.0,264.8654554020448,,844.0,60.965925917446924,,43,2,2,1,1,2,2,2,2,2,20.0,1,,2,121408,1,3,0,0,2,,540.0,800.0,43,2.0,0.0,6.0,2.0,1.5,2,2,135.93444540869734,600.0,40597.63456268639,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.020789388571316594,27065.089708457595,7,4,7,7_1,7_2,7_0_1 +21388,2,58.0,0.0,1,300,650.0,0.0,0.0,11,55,1792.9608467622227,26.486545540204478,1108.3803531918397,2405.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,121409,2,2,1,0,1,,157.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,990.197900772633,650.0,26759.91750680071,1,1,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08987322174624784,17839.945004533805,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +21389,2,62.0,0.0,5,111,480.0,1250.0,0.0,46,74,0.0,0.0,818.4962608185893,1730.0,0.0,2373.130059924736,31,0,0,0,0,0,0,0,0,0,,1,,3,121410,2,1,1,0,1,,520.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,283.552566263252,480.0,85555.45410921938,1,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020220803197321544,42777.72705460969,9,5,9,9_1,9_3,9_0_0 +21390,2,41.0,0.0,8,111,400.0,,,0,81,0.0,0.0,,664.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,121411,2,3,0,0,2,,300.0,600.0,32,5.0,4.0,5.0,8.0,3.8999999999999995,5,5,8.767999114141478,400.0,25214.592425712002,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02633395728906969,6465.2801091569245,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +21391,1,58.0,24.0,8,111,600.0,0.0,0.0,56,68,1265.6194212439218,0.0,1023.1203260232367,1890.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,121412,2,1,1,0,1,,250.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1062.45242572926,600.0,22919.160599587885,4,1,1,2,110.0,6,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08246375305882644,15279.440399725258,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +21392,2,36.0,0.0,7,111,500.0,0.0,0.0,85,55,0.0,0.0,852.6002716860306,530.0,41.567676761895626,0.0,42,1,2,2,2,1,2,2,2,2,60.0,2,,5,121413,1,1,0,1,1,490.0,0.0,614.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1322.69238497365,500.0,55314.233924274995,7,1,2,3,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009581620541388466,26340.111392511903,7,4,7,7_0,7_2,7_0_0 +21393,2,67.0,0.0,1,111,600.0,0.0,0.0,78,78,0.0,0.0,1023.1203260232367,604.0,5.542356901586084,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,121414,2,1,2,0,2,,224.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,113.624421364015,600.0,25762.51861858154,5,5,0,1,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.02344491270214386,17175.012412387692,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +21394,1,67.0,40.0,2,111,320.0,0.0,0.0,0,54,0.0,0.0,545.6641738790596,634.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,121415,1,2,0,1,2,1020.0,0.0,833.0,11,0.0,3.0,3.0,1.0,1.0,1,1,710.086690845671,320.0,20072.946207999386,0,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.031584800428914664,20072.946207999386,5,3,5,5_0,5_4,5_0_1 +21395,2,57.0,0.0,6,120,950.0,,,46,63,0.0,0.0,,1088.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,121416,2,2,0,0,2,,650.0,,43,4.0,0.0,5.0,5.0,3.0,5,5,65.7830083463128,950.0,141082.15425730776,1,1,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007711818732337254,47027.38475243592,10,5,10,10_1,10_0,10_0_0 +21396,1,48.0,50.0,1,111,450.0,0.0,0.0,0,37,0.0,0.0,767.3402445174275,450.0,0.0,0.0,71,2,2,2,1,2,2,2,2,3,60.0,2,,1,121417,2,3,0,0,1,,0.0,,32,1.0,1.0,2.0,2.0,1.5,2,1,874.042647580305,450.0,33328.41947857301,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,0,0,1,0.013501990404594705,22218.94631904867,6,3,6,6_0,6_4,6_1_0 +21397,2,50.0,0.0,5,111,1500.0,2000.0,0.0,42,31,0.0,66.2163638505112,2557.8008150580918,3550.0,0.0,3797.008095879578,12,0,0,0,0,0,0,0,0,0,,1,,3,121418,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,505.129481523493,1500.0,84933.52324282273,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041797394767795544,30333.401158150977,8,4,8,8_1,8_4,8_0_0 +21398,2,58.0,0.0,7,111,212.0,0.0,0.0,34,75,0.0,0.0,361.502515194877,212.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,121419,2,1,2,0,1,,463.0,,42,2.0,0.0,7.0,4.0,2.5,4,4,1062.39776097178,212.0,88345.1063874156,1,5,0,1,158.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0023996801709686836,35338.04255496624,9,5,9,9_1,9_3,9_0_0 +21399,2,51.0,0.0,1,120,233.0,767.0,0.0,0,52,0.0,0.0,397.31172660569024,1000.0,0.0,1456.1526047698183,71,0,0,0,0,0,0,0,0,1,2.0,2,,1,121420,2,1,0,0,1,,0.0,543.0,12,1.0,1.0,3.0,1.0,1.0,1,1,909.193349666656,233.0,20136.60969334565,0,1,2,3,70.0,0,2,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04966079271678292,20136.60969334565,5,3,5,5_0,5_1,5_1_0 +21400,1,29.0,189.0,8,120,398.0,,,0,69,0.0,0.0,,441.0,59.5803366920504,,71,0,0,0,0,0,0,0,0,1,15.0,8,2000.0,6,121421,1,2,0,0,2,,120.0,193.0,12,1.0,1.0,1.0,1.0,1.0,1,1,100.92222453489697,398.0,7741.72612168822,0,1,2,3,37.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05696404045663039,7741.72612168822,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +21401,2,83.0,0.0,6,111,380.0,0.0,0.0,0,78,0.0,0.0,647.9762064813832,380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,121422,2,1,0,1,1,,280.0,375.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1076.96339012875,380.0,25894.804510901784,0,5,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01467475839950902,25894.804510901784,7,4,7,7_0,7_4,7_0_0 +21402,2,45.0,0.0,9,111,1560.0,0.0,0.0,37,37,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,35.0,2,2007.0,6,121423,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1277.43276697404,1560.0,96225.5256586821,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01621191455511936,53458.6253659345,10,5,10,10_0,10_4,10_0_0 +21403,0,56.0,0.0,6,111,468.0,,,52,64,0.0,0.0,,744.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,121424,2,1,0,0,2,,447.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,100.111073146924,468.0,23697.897088795537,4,1,0,1,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031395190772086114,9479.158835518214,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21404,2,82.0,0.0,2,111,0.0,0.0,1290.0,0,75,0.0,0.0,813.1105946350195,1290.0,0.0,1543.7844703584383,41,0,0,0,0,0,0,0,0,0,,1,,2,121425,2,1,2,0,1,,500.0,,21,1.0,3.0,5.0,2.0,1.5,2,2,1101.2016184404,0.0,36653.41249972999,0,5,0,1,120.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03519454020848681,24435.608333153326,7,4,7,7_1,7_3,7_0_1 +21405,2,33.0,0.0,6,111,450.0,,,90,47,0.0,0.0,,452.0,2.771178450793042,,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,121426,1,3,0,0,2,,230.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,7.926041328433796,450.0,66203.12068561435,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006827472713053202,31525.295564578264,8,4,8,8_1,8_2,8_0_0 +21406,2,54.0,0.0,7,111,1500.0,,,0,55,0.0,0.0,,1569.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,121427,1,1,0,0,1,,300.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,143.47296528577536,1500.0,22247.828961440893,0,1,0,1,62.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07052373526960011,22247.828961440893,6,3,6,6_1,6_3,6_0_0 +21407,2,61.0,0.0,6,112,1400.0,0.0,0.0,46,48,0.0,0.0,2387.2807607208856,3440.0,2826.6020198089027,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,121428,2,1,2,0,1,,300.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1214.41082666677,1400.0,77483.29008651206,1,1,0,1,103.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044396669219378175,51655.52672434138,10,5,10,10_1,10_1,10_0_0 +21408,1,50.0,422.0,2,111,270.0,820.0,0.0,85,62,0.0,0.0,460.40414671045653,1090.0,0.0,1556.773319310627,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,121429,2,3,0,1,1,480.0,0.0,358.0,42,1.0,0.0,5.0,7.0,3.1999999999999997,3,2,1614.61111772981,270.0,24609.274100325452,6,1,2,3,97.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.044292245092494825,7690.3981563517045,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21409,2,73.0,0.0,1,400,400.0,0.0,0.0,0,77,210.9365702073203,0.0,682.0802173488245,672.0,99.7624242285495,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,121430,2,3,2,0,1,,200.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1139.69241731468,400.0,18488.770311527132,0,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03634638695149078,18488.770311527132,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +21410,2,33.0,0.0,6,111,2000.0,0.0,0.0,68,37,0.0,0.0,3410.4010867441225,2090.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,121431,2,1,2,0,1,,2000.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,547.003698411194,2000.0,37154.21063871849,1,4,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05625203615070229,20641.22813262138,5,3,5,5_1,5_4,5_0_0 +21411,2,65.0,0.0,1,111,265.0,0.0,0.0,0,77,0.0,0.0,451.8781439935962,265.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,121432,2,2,0,1,1,556.0,0.0,320.0,11,0.0,0.0,2.0,1.0,1.0,1,1,249.40142517987,265.0,22674.722622885816,0,5,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011687022787768656,22674.722622885816,6,3,6,6_0,6_4,6_1_0 +21412,0,35.0,0.0,2,111,0.0,0.0,0.0,48,34,0.0,0.0,0.0,1429.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,1.0,2,,2,121433,2,1,0,1,1,,0.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1526.60251272504,0.0,58615.0,1,1,5,0,140.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024379425061844238,27911.90476190476,7,4,7,7_0,7_3,7_0_1 +21413,2,48.0,0.0,8,212,1700.0,0.0,0.0,62,48,0.0,0.0,2898.840923732504,1800.0,138.5589225396521,0.0,50,2,2,2,2,2,2,2,1,2,25.0,1,2002.0,6,121434,2,1,2,0,1,,150.0,425.0,43,3.0,3.0,4.0,3.0,2.0,3,2,760.324439082139,1700.0,47463.619666565304,1,1,2,3,95.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.03792378273391505,23731.809833282652,6,3,6,6_1,6_0,6_0_0 +21414,2,37.0,0.0,9,111,420.0,,,53,43,0.0,0.0,,483.0,87.29212119998083,,33,0,0,0,0,0,0,0,0,2,45.0,1,2010.0,6,121435,2,1,0,0,1,,160.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,143.03643059415356,420.0,61970.3969399773,1,1,1,2,65.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007794043992776415,34427.99829998739,9,5,9,9_1,9_2,9_0_0 +21415,2,47.0,0.0,6,111,400.0,,,0,63,0.0,0.0,,652.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,4,121436,1,3,0,0,2,,600.0,,22,1.0,5.0,4.0,2.0,1.5,2,2,96.2563870112737,400.0,35438.302600472816,0,4,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018398172377231778,23625.535066981876,6,3,6,6_1,6_2,6_0_0 +21416,1,69.0,326.0,2,111,310.0,0.0,0.0,85,78,0.0,0.0,528.612168445339,868.0,773.1587877712587,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121437,1,1,0,1,1,920.0,0.0,317.0,41,0.0,3.0,4.0,3.0,1.8,2,2,366.955586041395,310.0,17334.77319283298,6,5,2,3,90.0,7,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0500727635916732,9630.429551573878,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21417,1,45.0,206.0,8,111,500.0,,,0,46,0.0,0.0,,540.0,55.423569015860835,,31,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,121438,2,1,0,0,1,,300.0,685.0,32,1.0,0.0,4.0,3.0,2.0,3,1,138.42790353688432,500.0,23168.123211486563,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.023307887094293097,11584.061605743282,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +21418,1,19.0,304.0,9,211,0.0,0.0,1320.0,0,68,0.0,0.0,832.0201433474618,1320.0,0.0,1579.6864347853789,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,121439,2,1,0,0,1,,0.0,367.0,22,3.0,1.0,3.0,3.0,2.0,3,3,3352.61727203879,0.0,18851.013970116328,0,1,2,3,96.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07002275856845351,9425.506985058164,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +21419,0,26.0,0.0,2,111,311.0,701.0,0.0,0,33,0.0,0.0,530.317368988711,1012.0,0.0,1330.8513376057922,10,2,2,2,2,1,2,2,2,2,10.0,2,,2,121440,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1743.28677073812,311.0,20404.0,0,1,5,0,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.04959811801607528,20404.0,5,3,5,5_0,5_3,5_0_1 +21420,2,79.0,0.0,6,111,450.0,,,75,86,0.0,0.0,,600.0,207.83838380947813,,70,0,0,0,0,0,0,0,0,0,,1,,4,121441,2,1,0,0,2,,300.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,92.23433904598662,450.0,68973.24041068774,5,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008699025831284957,34486.62020534387,9,5,9,9_1,9_3,9_0_0 +21421,2,60.0,0.0,1,111,700.0,1500.0,0.0,55,75,0.0,0.0,1193.6403803604428,2200.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,121442,2,2,2,0,1,,400.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1809.96711380567,700.0,27845.389099376604,4,5,0,1,120.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07900769467248181,18563.592732917736,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +21422,2,42.0,0.0,2,111,200.0,0.0,0.0,0,55,0.0,0.0,341.04010867441224,200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,121443,2,1,0,1,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1600.76260208022,200.0,23347.064714275693,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00856638735736698,23347.064714275693,6,3,6,6_0,6_4,6_0_1 +21423,1,30.0,308.0,2,111,448.0,672.0,0.0,85,63,0.0,0.0,763.9298434306834,1120.0,0.0,1275.7947202155383,43,0,0,0,0,0,0,0,0,2,40.0,1,,2,121444,2,2,2,0,1,,623.0,324.0,42,1.0,0.0,4.0,5.0,2.4,2,2,195.948870240847,448.0,20940.70914384288,6,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05348433963275353,8725.2954766012,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +21424,2,20.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1113.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,121445,2,1,0,0,1,,161.0,330.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2158.04476914123,0.0,12369.319521562105,0,4,2,3,13.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0899806976495212,12369.319521562105,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +21425,2,50.0,0.0,1,111,1968.0,0.0,0.0,54,64,0.0,0.0,3355.834669356216,2088.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,1,121446,2,2,0,0,1,,546.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,1285.16571896923,1968.0,72025.29026855789,1,1,1,2,86.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02898981721857081,28810.116107423157,8,4,8,8_0,8_3,8_1_0 +21426,2,69.0,0.0,1,111,550.0,2000.0,0.0,0,72,0.0,0.0,937.8602988546337,2550.0,0.0,3797.008095879578,70,0,0,0,0,0,0,0,0,0,,1,,1,121447,2,1,1,0,1,,210.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,267.648363623662,550.0,29729.720160893947,0,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0857727548796182,29729.720160893947,8,4,8,8_1,8_2,8_1_0 +21427,1,56.0,211.0,2,111,340.0,617.0,0.0,0,77,0.0,0.0,579.7681847465008,957.0,0.0,1171.3769975788498,50,2,1,2,2,1,2,2,2,0,,2,,2,121448,1,2,0,1,1,924.0,0.0,344.0,31,1.0,0.0,4.0,4.0,2.5,4,4,174.077552193591,340.0,28734.69913717317,0,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03330468140388355,11493.879654869268,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +21428,2,81.0,0.0,7,112,1443.0,0.0,0.0,78,77,0.0,0.0,2460.6043840858842,1518.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,121449,2,1,2,0,1,,158.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1796.53674666554,1443.0,25844.82281413543,5,5,0,1,100.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05873516761622963,17229.881876090287,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +21429,2,79.0,0.0,7,400,1508.0,0.0,0.0,0,77,0.0,0.0,2571.4424194050684,1598.0,124.70303028568689,0.0,71,2,2,1,2,2,2,2,1,0,,1,,5,121450,2,1,1,0,1,,116.0,380.0,11,0.0,2.0,5.0,1.0,1.0,1,1,1989.46333674561,1508.0,28227.273342623484,0,5,2,3,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05661191502995803,28227.273342623484,8,4,8,8_1,8_0,8_0_0 +21430,2,59.0,0.0,2,111,770.0,66.0,0.0,0,52,0.0,0.0,1313.0044183964872,836.0,0.0,125.30126716402607,41,2,2,1,2,1,2,2,2,3,35.0,2,,2,121451,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1269.67842563531,770.0,23522.4869963188,0,1,0,1,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03554045965168698,23522.4869963188,6,3,6,6_0,6_4,6_0_1 +21431,2,33.0,0.0,2,300,1400.0,1600.0,0.0,52,43,0.0,0.0,2387.2807607208856,3070.0,96.99124577775646,3037.6064767036623,31,2,1,2,1,1,2,1,2,1,2.0,1,,2,121452,1,2,1,0,1,,244.0,460.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1609.73323959587,1400.0,31921.891223788927,4,1,2,3,80.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0961722467656354,21281.260815859285,6,3,6,6_1,6_0,6_0_1 +21432,2,41.0,0.0,9,111,3188.0,0.0,0.0,22,31,0.0,66.2163638505112,5436.179332270131,3343.0,145.4868686666347,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,121453,1,2,1,0,1,,448.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,809.382039321947,3188.0,121625.03065733117,1,1,0,1,200.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027486118457134338,50677.096107221325,10,5,10,10_1,10_2,10_0_0 +21433,2,50.0,0.0,1,112,300.0,800.0,0.0,0,64,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,121454,2,1,1,0,1,,200.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,664.782415238767,300.0,30199.833869538215,0,1,1,2,60.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03642404142857029,30199.833869538215,8,4,8,8_1,8_2,8_1_0 +21434,2,51.0,0.0,5,111,144.0,0.0,0.0,0,42,0.0,0.0,245.54887824557682,1058.0,0.0,0.0,41,2,1,2,1,2,2,2,2,2,20.0,2,,3,121455,2,2,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,838.018924947963,144.0,48168.95993794609,0,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02196435217540453,24084.479968973046,6,3,6,6_0,6_4,6_0_0 +21435,2,56.0,0.0,1,212,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1725.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,121456,1,3,4,0,2,,384.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1605.63285978192,0.0,30548.329018413307,0,1,1,2,150.0,3,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05646790038696516,30548.329018413307,8,4,8,8_1,8_0,8_1_0 +21436,2,65.0,0.0,7,111,480.0,1350.0,0.0,46,22,0.0,66.2163638505112,818.4962608185893,1880.0,0.0,2562.980464718715,33,0,0,0,0,0,0,0,0,2,60.0,1,,5,121457,2,1,1,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,361.694431799753,480.0,62781.61184809465,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02994507379881894,41854.40789872977,9,5,9,9_1,9_4,9_0_0 +21437,2,37.0,0.0,9,112,0.0,0.0,1300.0,45,47,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,43,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,121458,2,1,1,0,1,,350.0,750.0,43,2.0,0.0,4.0,3.0,1.8,2,2,16150.9210492832,0.0,33848.0,1,1,2,3,93.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03840699598203735,18804.444444444445,5,3,5,5_1,5_1,5_0_0 +21438,2,65.0,0.0,7,111,550.0,0.0,0.0,0,74,0.0,0.0,937.8602988546337,550.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,121459,2,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1027.56543633138,550.0,30856.395026877814,0,5,0,1,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01782450605525747,30856.395026877814,8,4,8,8_0,8_4,8_0_0 +21439,2,75.0,0.0,5,112,150.0,,,85,78,0.0,0.0,,304.0,213.38074071106422,,71,0,0,0,0,0,0,0,0,0,,1,,3,121460,2,2,0,0,2,,300.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,107.02736757437734,150.0,9447.12,6,5,0,1,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032179119138954514,6298.080000000001,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21440,2,72.0,0.0,2,111,610.0,0.0,0.0,75,75,0.0,0.0,1040.1723314569574,610.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,121461,2,1,0,1,1,646.0,0.0,384.0,41,1.0,3.0,4.0,3.0,2.0,3,3,1015.74285191502,610.0,79596.70523197425,5,5,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007663633792658054,39798.352615987125,9,5,9,9_0,9_4,9_0_1 +21441,2,80.0,0.0,2,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,554.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121462,2,2,0,0,1,,0.0,522.0,11,0.0,2.0,4.0,1.0,1.0,1,1,334.286112267687,0.0,16717.960756278975,0,5,2,3,60.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03313801294765734,16717.960756278975,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +21442,2,33.0,0.0,6,111,270.0,0.0,0.0,0,43,0.0,0.0,460.40414671045653,270.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,20.0,2,,4,121463,1,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1125.57109539071,270.0,27671.848410272396,0,1,1,2,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009757208698056111,27671.848410272396,7,4,7,7_0,7_4,7_0_0 +21444,2,76.0,0.0,2,400,1300.0,0.0,0.0,0,72,0.0,397.2981831030672,2216.7607063836795,1650.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121465,1,3,3,0,2,,350.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1853.14497893735,1300.0,22821.58916737929,0,5,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07229996070380919,22821.58916737929,6,3,6,6_1,6_0,6_0_1 +21445,2,38.0,0.0,9,120,120.0,0.0,0.0,54,48,0.0,0.0,204.62406520464734,120.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,121466,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2680.49994135369,120.0,49847.00033127782,1,1,1,2,92.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002407366525618249,23736.666824418007,6,3,6,6_1,6_1,6_0_0 +21446,0,36.0,0.0,1,112,959.0,0.0,0.0,0,62,0.0,0.0,1635.2873210938067,1001.0,58.19474746665388,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,1,121467,2,1,0,0,1,,349.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1188.80912374424,959.0,17733.592856847066,0,1,5,0,75.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05644654233806359,13641.225274497743,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +21447,2,50.0,0.0,6,111,1964.0,0.0,0.0,52,47,0.0,185.40581878143135,3349.013867182728,2104.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,1.0,1,,4,121468,1,2,3,0,1,,420.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1029.20717209366,1964.0,63066.7444453567,1,1,0,1,150.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03336148105477335,42044.496296904465,9,5,9,9_1,9_3,9_0_0 +21448,1,63.0,81.0,2,111,219.0,450.0,0.0,0,78,0.0,0.0,373.43891899848137,669.0,0.0,854.326821572905,71,0,0,0,0,0,0,0,0,0,,2,,2,121469,1,3,0,0,2,,0.0,228.0,11,0.0,4.0,2.0,1.0,1.0,1,1,438.673565736164,219.0,11478.2,0,5,2,3,45.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05828439999303026,11478.2,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21449,2,63.0,0.0,2,211,1000.0,0.0,0.0,77,38,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,121470,2,1,2,0,1,,350.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,810.211436002844,1000.0,86383.04395710045,7,1,0,1,122.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.012270926693975002,57588.6959714003,10,5,10,10_1,10_1,10_0_1 +21450,1,68.0,140.0,2,111,509.0,88.0,0.0,56,64,0.0,0.0,867.9470765763791,597.0,0.0,167.06835621870144,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,121471,1,1,0,1,1,1053.0,0.0,355.0,43,2.0,5.0,5.0,2.0,1.5,2,2,314.801620185442,509.0,16336.942976740622,4,1,2,3,98.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03654294446947426,10891.295317827082,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +21451,2,26.0,0.0,2,211,270.0,1050.0,0.0,0,46,0.0,0.0,460.40414671045653,1320.0,0.0,1993.4292503367785,31,2,2,2,2,2,2,2,1,0,,2,,2,121472,1,3,0,0,2,,300.0,427.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2222.87459600433,270.0,28103.522951558618,0,1,2,3,88.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.046969200348129056,28103.522951558618,8,4,8,8_0,8_1,8_0_1 +21452,1,42.0,409.0,2,111,420.0,210.0,0.0,0,56,0.0,132.4327277010224,716.1842282162656,730.0,0.0,398.6858500673557,31,2,2,2,1,1,2,1,2,3,30.0,2,,2,121473,1,2,0,1,2,720.0,0.0,342.0,32,1.0,0.0,5.0,6.0,3.0999999999999996,4,3,284.401322260062,420.0,32688.633192056797,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.022331921794068375,10544.720384534452,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +21453,0,41.0,0.0,1,120,300.0,0.0,0.0,0,63,0.0,0.0,511.56016301161833,396.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121474,2,1,3,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,870.474528499833,300.0,5294.127593480081,0,4,5,0,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07479985946838325,5294.127593480081,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +21454,2,43.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,528.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,121475,2,2,0,0,1,,0.0,660.0,32,1.0,0.0,2.0,3.0,1.6,1,1,1007.80403419987,0.0,19886.377025843452,0,1,3,4,40.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02655083926618884,12428.985641152158,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +21456,2,48.0,0.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,912.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121477,2,2,0,1,1,,0.0,611.0,32,1.0,0.0,3.0,3.0,2.0,3,2,230.967886374669,0.0,50883.95916501783,0,4,2,3,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01792313363514744,25441.979582508917,7,4,7,7_0,7_4,7_0_1 +21457,2,88.0,0.0,2,111,470.0,0.0,0.0,86,74,0.0,0.0,801.4442553848687,470.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,121478,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,925.895713002032,470.0,138748.59556550288,6,5,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003387421675040409,92499.06371033525,10,5,10,10_0,10_4,10_0_1 +21458,2,46.0,0.0,9,111,700.0,700.0,0.0,55,37,0.0,0.0,1193.6403803604428,1400.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,121479,2,1,0,0,1,,760.0,548.0,43,5.0,0.0,5.0,7.0,3.8,6,6,1017.83800554702,700.0,50682.6958027278,1,1,2,3,110.0,5,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027622840060623814,13337.551527033633,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +21459,2,47.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,644.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,2,2011.0,6,121480,2,2,0,0,1,660.0,0.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,6898.02914752381,0.0,19739.572731233835,0,1,3,4,30.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03262481963355781,19739.572731233835,5,3,5,5_0,5_2,5_0_0 +21460,2,73.0,0.0,9,300,800.0,0.0,0.0,0,77,0.0,0.0,1364.160434697649,900.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,7,2004.0,6,121481,2,1,0,0,1,,70.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,889.707206656423,800.0,13053.569558266565,0,5,0,1,37.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06894665830543248,13053.569558266565,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +21461,2,54.0,0.0,2,111,240.0,0.0,0.0,0,31,0.0,675.4069112752142,409.2481304092947,750.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,121482,2,1,0,1,1,684.0,0.0,602.0,32,2.0,0.0,4.0,2.0,1.5,2,2,904.49955267101,240.0,52175.10352898247,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014374672003925905,34783.40235265498,9,5,9,9_0,9_4,9_0_1 +21462,1,64.0,268.0,2,111,700.0,0.0,0.0,0,86,0.0,79.45963662061344,1193.6403803604428,1566.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,121483,2,3,0,1,1,,0.0,518.0,31,1.0,12.0,5.0,3.0,2.0,3,3,218.221453882199,700.0,12806.186446722695,0,6,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.12228464785476897,6403.093223361348,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21463,2,73.0,0.0,1,111,200.0,1000.0,0.0,0,78,0.0,0.0,341.04010867441224,1200.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,121484,2,2,1,0,1,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1046.20764257772,200.0,12430.045561775942,0,5,0,1,40.0,3,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09654027364872748,12430.045561775942,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +21464,1,65.0,156.0,5,111,300.0,72.0,0.0,0,77,648.6299533875099,0.0,511.56016301161833,987.0,0.0,136.6922914516648,70,0,0,0,0,0,0,0,0,0,,2,,3,121485,2,1,0,1,1,615.0,0.0,301.0,11,0.0,5.0,3.0,1.0,1.0,1,1,470.373142791833,300.0,10725.476356839163,0,5,2,3,63.0,8,7,2,1,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09202388473595709,10725.476356839163,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +21465,2,36.0,0.0,7,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,602.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,8,,5,121486,2,2,0,0,1,,0.0,640.0,32,1.0,0.0,3.0,2.0,1.3,1,1,920.642706946365,0.0,28455.41353838025,0,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02115590410197452,21888.779644907885,6,3,6,6_0,6_4,6_0_0 +21466,2,28.0,0.0,9,111,1000.0,0.0,0.0,0,45,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,121487,2,1,0,0,1,,0.0,650.0,22,2.0,0.0,3.0,2.0,1.5,2,2,555.983238551756,1000.0,44012.61696096979,0,1,2,3,70.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022720757570193928,29341.744640646528,8,4,8,8_0,8_2,8_0_0 +21467,2,76.0,0.0,5,120,216.0,767.0,0.0,0,78,0.0,0.0,368.3233173683652,1047.0,88.67771042537734,1456.1526047698183,70,2,1,2,2,1,2,2,2,0,,2,,3,121488,2,3,0,1,1,,0.0,286.0,11,0.0,2.0,3.0,1.0,1.0,1,1,734.979904007027,216.0,18041.08266763801,0,5,2,3,62.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.058034211099653274,18041.08266763801,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +21468,1,35.0,420.0,6,111,280.0,1330.0,0.0,63,56,0.0,0.0,477.4561521441771,1610.0,0.0,2525.0103837599195,71,2,2,2,2,1,2,2,2,0,,2,,4,121489,1,2,0,0,1,,0.0,453.0,43,2.0,0.0,3.0,5.0,2.8,4,2,360.484656184095,280.0,16754.195186790497,4,4,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09609533505192608,5983.641138139464,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +21469,2,49.0,0.0,5,111,505.0,864.0,0.0,67,47,0.0,132.4327277010224,861.1262744028909,1469.0,0.0,1640.3074974199776,44,0,0,0,0,0,0,0,0,0,,1,,3,121490,2,2,3,0,1,,314.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1829.07287039553,505.0,44509.33352666105,1,1,1,2,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033004313558639795,29672.889017774036,8,4,8,8_1,8_3,8_0_0 +21470,2,27.0,0.0,9,111,600.0,0.0,0.0,56,46,0.0,0.0,1023.1203260232367,650.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,121491,2,1,0,1,1,376.0,200.0,460.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1873.71859100549,600.0,35760.51513826774,4,1,2,3,54.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01817647194082021,23840.34342551183,6,3,6,6_0,6_2,6_0_0 +21471,2,79.0,0.0,5,111,5821.0,0.0,0.0,72,74,0.0,0.0,9925.972362968769,5821.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,121492,2,1,2,0,1,,815.0,,41,0.0,0.0,8.0,2.0,1.5,2,2,1601.20201222214,5821.0,90103.97123867058,5,5,0,1,250.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06460314589887642,60069.31415911372,10,5,10,10_1,10_2,10_0_0 +21472,2,58.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,1571.0,0.0,0.0,33,1,2,2,1,2,2,2,2,0,,2,,2,121493,1,2,0,1,1,,170.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,350.805099958297,300.0,55719.43758315062,0,7,0,1,67.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02819482873737881,55719.43758315062,10,5,10,10_0,10_2,10_0_1 +21473,1,37.0,219.0,9,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,568.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,2010.0,6,121494,1,1,0,0,1,,0.0,474.0,42,1.0,0.0,3.0,3.0,1.8,2,2,421.079076568056,0.0,30938.240582311166,6,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01835915647784936,17187.911434617316,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +21474,2,21.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1721.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,6.0,2,,1,121495,2,2,0,0,1,,0.0,495.0,12,1.0,0.0,3.0,1.0,1.0,1,1,528.626359916792,0.0,10159.402995404793,0,1,2,3,60.0,6,4,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.16939971775688265,10159.402995404793,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +21475,2,82.0,0.0,1,212,500.0,0.0,0.0,78,71,0.0,0.0,852.6002716860306,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,121496,2,1,2,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1558.46531964903,500.0,20173.266903762942,5,5,0,1,200.0,3,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02478527659328864,13448.844602508629,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +21477,2,63.0,0.0,9,111,1200.0,0.0,0.0,77,74,0.0,92.70290939071567,2046.2406520464733,1300.0,41.567676761895626,0.0,30,2,2,1,2,2,2,2,1,0,,1,2010.0,6,121498,2,1,1,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1037.14255010204,1200.0,61555.43612941111,6,5,1,2,129.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.021119174548076373,41036.9574196074,9,5,9,9_1,9_2,9_0_0 +21478,1,51.0,88.0,5,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1237.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,75.0,2,,3,121499,2,1,0,1,1,485.0,0.0,287.0,32,1.0,1.0,3.0,2.0,1.5,2,2,2679.78141664936,0.0,21429.0,0,1,2,3,70.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05772551215642354,14286.0,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +21479,2,90.0,0.0,2,400,270.0,,,0,86,0.0,0.0,,339.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,2,121500,2,3,0,0,2,,120.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,21.982043102130877,270.0,10786.575900824855,0,5,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03142795295901793,10786.575900824855,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +21480,2,68.0,0.0,5,111,380.0,0.0,0.0,0,77,0.0,0.0,647.9762064813832,380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,121501,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2447.66136721177,380.0,16629.873529222496,0,5,0,1,58.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022850444372427305,16629.873529222496,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +21481,2,66.0,0.0,1,112,0.0,0.0,3630.0,56,75,0.0,0.0,2288.05539420552,3630.0,0.0,4344.1376956597915,50,0,0,0,0,0,0,0,0,0,,1,,1,121502,2,2,3,0,1,,310.0,,41,0.0,0.0,9.0,2.0,1.5,2,2,470.375714664809,0.0,45059.631992931194,5,5,0,1,100.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08055991226402964,30039.754661954128,8,4,8,8_1,8_1,8_1_0 +21482,2,79.0,0.0,1,120,500.0,120.0,0.0,78,78,1582.0242765549024,132.4327277010224,852.6002716860306,2220.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,1,,1,121503,2,1,4,0,1,,225.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1209.93559026455,500.0,30860.920216632512,5,5,0,1,80.0,0,0,2,1,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07193563848441335,20573.946811088343,5,3,5,5_1,5_0,5_1_0 +21483,1,19.0,337.0,7,111,0.0,,,68,81,0.0,0.0,,604.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,121504,1,2,0,0,2,,505.0,500.0,43,2.0,0.0,3.0,3.0,1.8,2,2,100.72486415883266,0.0,15731.205533596836,4,4,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03839502310932552,8739.55862977602,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21484,2,67.0,0.0,1,400,2400.0,0.0,0.0,77,72,0.0,0.0,4092.4813040929466,2480.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121505,2,1,1,0,1,,140.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1831.89498429439,2400.0,29884.519648038855,5,5,0,1,62.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08298610883520585,19923.01309869257,5,3,5,5_1,5_0,5_1_0 +21485,2,53.0,0.0,2,111,470.0,0.0,0.0,34,33,0.0,0.0,801.4442553848687,470.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,,2,121506,2,2,0,1,1,,0.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,911.922462358273,470.0,92809.54210939792,1,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005064134455549777,51560.856727443286,10,5,10,10_0,10_4,10_0_1 +21486,2,82.0,0.0,2,111,675.0,84.0,0.0,0,78,0.0,0.0,1151.0103667761414,759.0,0.0,159.4743400269423,71,0,0,0,0,0,0,0,0,0,,2,,2,121507,2,2,0,1,1,,0.0,,21,0.0,0.0,2.0,2.0,1.5,2,2,904.73141959962,675.0,9979.459811580526,0,5,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0760562209107981,6652.973207720351,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +21487,1,43.0,351.0,2,111,250.0,402.0,0.0,0,67,0.0,0.0,426.3001358430153,652.0,0.0,763.1986272717952,50,2,2,2,2,1,2,2,2,0,,2,,2,121508,2,3,0,0,1,,180.0,600.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1205.2563828675,250.0,8403.743888125256,0,4,2,3,80.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.07758446814654783,5602.495925416838,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21488,2,47.0,0.0,1,111,400.0,450.0,0.0,0,52,0.0,0.0,682.0802173488245,850.0,0.0,854.326821572905,42,0,0,0,0,0,0,0,0,3,30.0,2,,1,121509,2,1,0,0,2,,270.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,373.973598494813,400.0,13155.569539805778,0,1,1,2,64.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06461141780506668,8222.230962378611,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +21490,2,40.0,0.0,9,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,988.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,121511,2,1,0,0,1,,0.0,637.0,12,1.0,0.0,3.0,1.0,1.0,1,1,675.375958711422,0.0,30127.2049343084,0,1,2,3,76.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03279428019141865,30127.2049343084,8,4,8,8_0,8_3,8_0_0 +21491,2,45.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,291.0,0.0,0.0,50,2,2,2,1,1,2,2,2,3,30.0,2,,1,121512,1,3,0,0,2,,0.0,455.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1181.88996454089,0.0,18617.9887765937,0,1,2,3,15.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.01563004487175551,18617.9887765937,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +21492,2,50.0,0.0,2,111,435.0,1330.0,0.0,56,63,0.0,0.0,741.7622363668467,1765.0,0.0,2525.0103837599195,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,121513,2,1,2,0,1,,516.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,458.296742548222,435.0,32674.36173118937,1,1,0,1,106.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054017887618450895,16337.180865594684,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +21493,2,58.0,0.0,5,111,360.0,456.0,0.0,0,46,0.0,0.0,613.872195613942,816.0,0.0,865.7178458605438,41,2,2,2,2,2,2,2,1,3,20.0,2,,3,121514,1,1,0,0,1,,0.0,393.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1471.16239707837,360.0,30171.721434449923,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.027045192027667843,30171.721434449923,8,4,8,8_0,8_4,8_0_0 +21494,2,32.0,0.0,7,111,660.0,0.0,0.0,0,33,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,5,121515,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1333.34071640981,660.0,36318.48480940497,0,1,1,2,44.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01817256428685284,36318.48480940497,9,5,9,9_0,9_3,9_0_0 +21496,2,32.0,0.0,1,111,216.0,380.0,0.0,0,46,0.0,0.0,368.3233173683652,596.0,0.0,721.4315382171199,20,0,0,0,0,0,0,0,0,3,60.0,2,,1,121517,2,1,0,0,1,,180.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,711.887501332923,216.0,23207.631516255587,0,1,1,2,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025681207476193204,23207.631516255587,6,3,6,6_0,6_4,6_1_0 +21497,2,58.0,0.0,5,111,1092.0,,,0,52,0.0,66.2163638505112,,1274.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,1,5.0,1,,3,121518,2,1,0,0,2,,720.0,,22,2.0,3.0,5.0,2.0,1.5,2,2,128.1308446768315,1092.0,21467.383642152214,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059345843966678885,14311.589094768142,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +21498,2,55.0,0.0,5,111,840.0,1092.0,0.0,78,62,0.0,0.0,1432.3684564325313,1932.0,0.0,2073.1664203502496,71,2,2,2,2,1,2,2,2,2,10.0,1,,3,121519,1,2,3,0,2,,576.0,490.0,42,3.0,1.0,4.0,5.0,2.8,4,4,570.936720802786,840.0,64093.750721665805,5,1,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.030143344370497576,22890.62525773779,6,3,6,6_1,6_4,6_0_0 +21499,1,50.0,288.0,7,112,400.0,,,0,46,0.0,0.0,,550.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,121520,1,3,0,0,2,,360.0,483.0,12,1.0,0.0,3.0,1.0,1.0,1,1,112.78244341618044,400.0,7032.0,0,4,2,3,54.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07821387940841866,7032.0,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +21500,1,42.0,60.0,2,120,2100.0,0.0,0.0,0,56,0.0,0.0,3580.9211410813286,2150.0,69.27946126982604,0.0,43,2,2,2,2,1,2,2,2,0,,1,,2,121521,2,1,3,0,1,,400.0,,32,1.0,0.0,4.0,3.0,2.0,3,1,2705.34676448548,2100.0,23188.504725781353,0,1,1,2,80.0,0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.09271835443574744,11594.252362890677,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +21501,2,78.0,0.0,8,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,953.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,8,2001.0,6,121522,2,1,0,0,1,,0.0,489.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1828.30478260524,0.0,29676.0,0,5,2,3,43.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032113492384418386,29676.0,8,4,8,8_0,8_3,8_0_0 +21502,2,31.0,0.0,8,120,2700.0,0.0,0.0,47,46,0.0,0.0,4604.0414671045655,2730.0,41.567676761895626,0.0,31,1,2,2,1,2,2,2,2,0,,1,2003.0,6,121523,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,262.040300169146,2700.0,58798.33878860698,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0464298831607293,27999.208946955707,7,4,7,7_1,7_0,7_0_0 +21503,1,41.0,157.0,6,111,450.0,600.0,0.0,85,65,0.0,0.0,767.3402445174275,1050.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,2,20.0,2,,4,121524,1,1,0,0,1,,0.0,415.0,42,1.0,0.0,3.0,4.0,2.1,2,2,342.507599571978,450.0,34713.199246820885,6,1,2,3,66.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030247860260133225,16530.094879438515,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +21504,0,83.0,0.0,1,111,280.0,1380.0,0.0,0,71,0.0,264.8654554020448,477.4561521441771,1860.0,0.0,2619.935586156909,70,0,0,0,0,0,0,0,0,0,,1,,1,121525,2,1,2,0,1,,64.0,,11,0.0,4.0,7.0,1.0,1.0,1,1,1684.2467140684,280.0,16264.809073322853,0,5,0,1,180.0,6,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1143573214794588,16264.809073322853,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +21505,2,49.0,0.0,5,111,930.0,0.0,0.0,37,37,2636.7071275915036,0.0,1585.836505336017,3430.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,3,121526,2,1,2,0,1,,504.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,632.174817983324,930.0,258014.99229027744,1,1,0,1,150.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01329380114524938,129007.49614513872,10,5,10,10_1,10_4,10_0_0 +21506,2,54.0,0.0,7,112,480.0,,,68,52,0.0,397.2981831030672,,1155.0,519.5959595236953,,71,0,0,0,0,0,0,0,0,1,3.0,1,,5,121527,2,2,0,0,2,,160.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,48.236453446313156,480.0,43406.18980815085,4,1,0,1,100.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026609108173394964,28937.459872100564,8,4,8,8_1,8_0,8_0_0 +21507,0,84.0,0.0,5,111,1432.0,0.0,0.0,77,75,0.0,0.0,2441.8471781087915,1432.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,121528,2,1,2,0,1,,166.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1518.59347439378,1432.0,46775.138366172905,5,5,0,1,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03061455401349708,31183.425577448605,8,4,8,8_1,8_2,8_0_0 +21508,2,26.0,0.0,2,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1299.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,121529,2,1,0,0,1,,353.0,192.0,12,1.0,0.0,3.0,1.0,1.0,1,1,363.441990029941,0.0,16904.89047324747,0,1,2,3,59.0,1,2,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07684166910490837,16904.89047324747,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +21509,2,25.0,0.0,7,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,514.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,5,121530,2,1,0,0,1,,0.0,795.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1357.13259691055,0.0,35064.77411910515,0,1,3,4,39.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014658585800498444,35064.77411910515,9,5,9,9_0,9_4,9_0_0 +21510,2,62.0,0.0,6,111,755.0,0.0,0.0,0,75,0.0,0.0,1287.4264102459063,755.0,0.0,0.0,50,2,2,2,2,2,2,1,2,0,,2,,4,121531,1,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1454.62764098104,755.0,26892.75114639841,0,5,1,2,50.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.028074479843655298,26892.75114639841,7,4,7,7_0,7_2,7_0_0 +21511,2,48.0,0.0,5,111,460.0,1500.0,0.0,38,38,0.0,0.0,784.3922499511482,1960.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,0,,2,,3,121532,2,1,0,0,1,,550.0,,43,2.0,1.0,3.0,3.0,2.0,3,3,576.868003044204,460.0,96615.26255459532,1,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020286649833326738,48307.63127729766,10,5,10,10_0,10_4,10_0_0 +21512,2,46.0,0.0,9,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,1795.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2013.0,6,121533,1,2,0,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1543.3979967005,0.0,108992.29502353912,1,1,1,2,140.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01646905407040317,51901.09286835196,10,5,10,10_0,10_3,10_0_0 +21514,2,36.0,0.0,9,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1941.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,121535,2,1,1,0,1,,605.0,,42,1.0,0.0,2.0,4.0,2.1,2,2,227.690141948519,0.0,31180.07164115065,6,1,1,2,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06225130020029584,14847.65316245269,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +21515,1,79.0,41.0,2,111,0.0,0.0,840.0,0,78,0.0,0.0,529.4673639483848,840.0,0.0,1005.255003954332,71,0,0,0,0,0,0,0,0,0,,2,,2,121536,2,1,0,0,1,,140.0,209.0,11,0.0,6.0,2.0,1.0,1.0,1,1,295.43551880628,0.0,17382.18639146015,0,5,2,3,41.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.048325336127605395,17382.18639146015,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +21516,2,70.0,0.0,5,221,500.0,1650.0,0.0,75,75,0.0,39.72981831030672,852.6002716860306,2180.0,0.0,3132.5316791006517,50,0,0,0,0,0,0,0,0,0,,1,,3,121537,2,1,2,0,1,,300.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,595.874969493877,500.0,39409.438265372184,5,5,0,1,100.0,1,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05531669813003898,26272.958843581455,7,4,7,7_1,7_1,7_0_0 +21517,2,70.0,0.0,2,111,290.0,1380.0,0.0,0,74,0.0,0.0,494.50815757789775,1670.0,0.0,2619.935586156909,20,0,0,0,0,0,0,0,0,0,,2,,2,121538,2,1,0,0,1,,0.0,,31,0.0,2.0,3.0,2.0,1.5,2,2,1880.20657091895,290.0,100334.2143559751,0,5,0,1,107.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016644372118916662,66889.47623731673,10,5,10,10_0,10_3,10_0_1 +21518,2,78.0,0.0,2,111,686.0,0.0,0.0,0,77,1001.9487084847715,0.0,1169.767572753234,1704.0,94.22006732696343,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,121539,2,1,2,0,1,,65.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,988.610241737852,686.0,20188.40414948406,0,5,0,1,48.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08440488843906703,20188.40414948406,5,3,5,5_1,5_2,5_0_1 +21519,2,49.0,0.0,7,111,2034.0,0.0,0.0,37,31,0.0,198.6490915515336,3468.3779052187724,2184.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,121540,1,1,2,0,2,,850.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,420.13566064381,2034.0,165952.6180096462,4,1,1,2,168.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013160382922510162,63827.930003710084,10,5,10,10_1,10_4,10_0_0 +21520,2,33.0,0.0,9,111,500.0,0.0,0.0,0,53,0.0,0.0,852.6002716860306,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,12.0,1,2009.0,6,121541,2,2,1,0,1,,80.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1103.04594448234,500.0,23324.081198785203,0,1,1,2,75.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02143707165734107,23324.081198785203,6,3,6,6_1,6_2,6_0_0 +21521,2,58.0,0.0,2,111,270.0,387.0,0.0,0,37,0.0,0.0,460.40414671045653,657.0,0.0,734.7210665526983,31,2,1,2,2,1,1,2,2,1,20.0,2,,2,121542,2,3,0,1,1,500.0,0.0,341.0,32,2.0,1.0,3.0,2.0,1.5,2,2,981.132339686198,270.0,39894.719590165616,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016468344852383823,26596.479726777077,7,4,7,7_0,7_4,7_0_1 +21522,1,36.0,285.0,2,111,470.0,131.0,0.0,0,54,0.0,0.0,801.4442553848687,601.0,0.0,248.70403028011236,71,0,0,0,0,0,0,0,0,0,,2,,2,121543,1,2,0,1,1,552.0,0.0,382.0,32,1.0,0.0,2.0,3.0,1.8,2,1,861.237785052995,470.0,22391.289531497816,0,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026840794459585437,12439.605295276564,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +21523,2,66.0,0.0,5,400,1500.0,0.0,0.0,77,72,3164.0485531098047,0.0,2557.8008150580918,4500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,121544,2,1,1,0,1,,180.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,1382.47596978227,1500.0,50624.28061445134,6,5,0,1,320.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.088890152025497,33749.52040963423,9,5,9,9_1,9_0,9_0_0 +21524,2,68.0,0.0,8,300,1488.0,0.0,0.0,77,78,316.40485531098045,0.0,2537.338408537627,1788.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,121545,2,1,1,0,1,,268.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1041.19395304965,1488.0,34119.65800761797,5,5,0,1,101.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05240380778731104,22746.438671745313,6,3,6,6_1,6_0,6_0_0 +21525,2,44.0,0.0,1,111,1600.0,2000.0,0.0,85,38,0.0,0.0,2728.320869395298,3600.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,3,140.0,2,,1,121546,1,2,0,0,1,,500.0,,42,1.0,0.0,5.0,4.0,2.3,3,2,2188.69299444498,1600.0,67941.26337877195,6,1,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05298694520780444,29539.67972990085,8,4,8,8_0,8_3,8_1_0 +21526,2,55.0,0.0,6,111,560.0,,,0,68,0.0,0.0,,666.0,146.87245789203124,,60,0,0,0,0,0,0,0,0,2,15.0,2,,4,121547,2,2,0,0,1,,360.0,268.0,32,2.0,1.0,3.0,2.0,1.5,2,2,172.29408109909403,560.0,37505.771011476245,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01775726726951469,25003.847340984164,7,4,7,7_0,7_2,7_0_0 +21527,2,35.0,0.0,2,112,490.0,1006.0,0.0,46,38,0.0,0.0,835.54826625231,1496.0,0.0,1909.8950722274278,31,0,0,0,0,0,0,0,0,2,45.0,1,,2,121548,2,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,781.499430809689,490.0,65640.31214619828,1,1,1,2,92.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022790872728758717,31257.291498189657,8,4,8,8_1,8_1,8_0_1 +21528,2,72.0,0.0,2,111,320.0,320.0,0.0,77,75,0.0,0.0,545.6641738790596,640.0,0.0,607.5212953407324,50,0,0,0,0,0,0,0,0,0,,2,,2,121549,2,3,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,244.318179381892,320.0,30036.71053874215,5,5,0,1,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021307259966916514,20024.47369249477,5,3,5,5_0,5_3,5_0_1 +21529,2,41.0,0.0,6,111,320.0,1600.0,0.0,0,62,0.0,0.0,545.6641738790596,1920.0,0.0,3037.6064767036623,71,2,2,2,2,1,2,2,2,0,,2,,4,121550,2,1,0,0,1,,0.0,308.0,12,1.0,3.0,3.0,1.0,1.0,1,1,2028.37612852504,320.0,13489.128617363343,0,4,2,3,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.1423368443183614,13489.128617363343,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +21530,2,75.0,0.0,5,111,1308.0,1440.0,0.0,77,74,0.0,0.0,2230.402310730656,2748.0,0.0,2733.845829033296,50,0,0,0,0,0,0,0,0,0,,1,,3,121551,2,1,1,0,1,,262.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1327.3295616836,1308.0,33713.28953836525,5,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08151088302649359,22475.526358910167,6,3,6,6_1,6_3,6_0_0 +21531,0,72.0,0.0,2,111,150.0,,,0,86,0.0,0.0,,213.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,2,121552,2,1,0,0,2,,150.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,94.83118414745853,150.0,20735.11592658222,0,5,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010272428702794762,20735.11592658222,5,3,5,5_1,5_3,5_0_1 +21532,1,25.0,82.0,9,111,0.0,,,0,46,0.0,0.0,,44.0,60.965925917446924,,20,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,121553,2,1,0,0,2,,0.0,553.0,12,1.0,0.0,2.0,1.0,1.0,1,1,147.79228405479475,0.0,20515.580657373932,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0021447114139655143,20515.580657373932,5,3,5,5_1,5_3,5_0_0 +21533,2,54.0,0.0,2,112,550.0,0.0,0.0,56,63,0.0,397.2981831030672,937.8602988546337,3850.0,4156.767676189563,0.0,71,2,2,1,2,2,2,2,1,3,90.0,1,,2,121554,2,1,2,0,1,,583.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,1216.52387231095,550.0,37787.48088842622,1,1,1,2,80.0,10,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.1018855956915403,20993.044938014566,5,3,5,5_1,5_0,5_0_1 +21534,1,26.0,24.0,1,112,1300.0,0.0,0.0,46,52,0.0,52.973091080408956,2216.7607063836795,1340.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,121555,2,2,1,0,1,,500.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1250.27649912961,1300.0,38546.65895244986,4,1,1,2,95.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03476306472249614,21414.810529138813,6,3,6,6_1,6_0,6_1_0 +21535,2,73.0,0.0,5,111,1930.0,2900.0,0.0,0,72,0.0,662.163638505112,3291.037048708078,5330.0,0.0,5505.661739025388,12,0,0,0,0,0,0,0,0,0,,1,,3,121556,2,1,2,0,2,,700.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,741.314743636416,1930.0,162163.27171183107,0,5,0,1,220.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03286810844240715,162163.27171183107,10,5,10,10_1,10_4,10_0_0 +21536,2,60.0,0.0,1,111,360.0,100.0,0.0,0,53,0.0,0.0,613.872195613942,460.0,0.0,189.8504047939789,70,1,2,2,1,2,2,2,2,3,60.0,2,,1,121557,2,3,0,1,1,564.0,0.0,376.0,12,1.0,1.0,2.0,1.0,1.0,1,1,936.334450187776,360.0,32535.381136731092,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01413845432044683,32535.381136731092,8,4,8,8_0,8_4,8_1_0 +21537,2,49.0,0.0,2,111,590.0,,,63,47,0.0,0.0,,592.0,2.771178450793042,,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,121558,2,2,0,0,2,,440.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,116.68957419318859,590.0,40862.35028471949,4,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014487663971237085,27241.56685647966,7,4,7,7_1,7_3,7_0_1 +21538,2,58.0,0.0,5,111,1200.0,0.0,0.0,48,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,121559,2,2,2,0,1,,80.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,830.152567014421,1200.0,50840.71791393892,1,5,0,1,110.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023603128540224606,33893.81194262594,9,5,9,9_1,9_1,9_0_0 +21539,2,60.0,0.0,8,211,1550.0,0.0,0.0,77,74,0.0,0.0,2643.0608422266946,1616.0,91.44888887617039,0.0,44,0,0,0,0,0,0,0,0,0,,1,2003.0,6,121560,2,1,1,0,1,,380.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1401.83412630105,1550.0,69637.48457750009,5,5,0,1,119.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02320589277175199,46424.98971833339,10,5,10,10_1,10_1,10_0_0 +21540,2,71.0,0.0,6,112,560.0,,,0,71,0.0,0.0,,780.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,4,121561,2,2,0,0,2,,810.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,89.72512845188683,560.0,11984.0,0,5,0,1,80.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.065086782376502,11984.0,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +21541,2,58.0,0.0,7,112,1200.0,0.0,0.0,55,47,2320.3022722805235,0.0,2046.2406520464733,3500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,121562,2,2,3,0,1,,800.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,656.553288211767,1200.0,80057.44036791271,1,1,0,1,126.0,10,1,1,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04371860983707907,40028.72018395636,9,5,9,9_1,9_1,9_0_0 +21542,2,73.0,0.0,8,221,960.0,0.0,0.0,74,72,0.0,0.0,1636.9925216371787,1070.0,152.4148147936173,0.0,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,121563,2,1,1,0,1,,190.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2309.53567600125,960.0,24763.171180672267,5,5,0,1,100.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043209328570774426,16508.780787114843,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +21543,2,41.0,0.0,1,112,1000.0,0.0,0.0,0,34,0.0,0.0,1705.2005433720612,1016.0,22.169427606344335,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,1,121564,1,1,1,0,1,,230.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,583.038182750825,1000.0,38594.023223633136,0,1,1,2,75.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02632531970333298,24121.264514770708,6,3,6,6_1,6_1,6_1_0 +21545,2,48.0,0.0,1,112,1200.0,0.0,0.0,62,21,0.0,0.0,2046.2406520464733,1300.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121566,2,1,2,0,1,,250.0,640.0,43,2.0,0.0,4.0,3.0,2.0,3,3,854.500771118452,1200.0,30381.186805358528,1,1,2,3,100.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04278963848017651,15190.593402679264,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +21546,2,82.0,0.0,2,111,816.0,360.0,0.0,0,72,0.0,0.0,1391.4436433916019,1176.0,0.0,683.461457258324,70,1,1,2,2,2,2,2,1,0,,2,,2,121567,2,1,0,1,1,1120.0,0.0,421.0,11,0.0,3.0,5.0,1.0,1.0,1,1,195.955153969612,816.0,18599.809402719307,0,5,2,3,91.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.06322645434356268,18599.809402719307,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +21547,2,61.0,0.0,1,111,1100.0,0.0,0.0,78,75,0.0,317.83854648245375,1875.7205977092674,1340.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121568,2,2,3,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,422.265216612075,1100.0,36155.37781471526,5,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03706225964134771,24103.585209810175,6,3,6,6_1,6_3,6_1_0 +21548,2,42.0,0.0,9,111,670.0,1070.0,0.0,0,38,0.0,0.0,1142.484364059281,1740.0,0.0,2031.3993312955743,50,0,0,0,0,0,0,0,0,3,75.0,1,2004.0,6,121569,2,1,1,0,1,,360.0,,32,1.0,0.0,5.0,3.0,1.8,2,1,590.325664661622,670.0,53474.975885435626,0,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03253858409824742,29708.319936353124,8,4,8,8_1,8_4,8_0_0 +21549,2,82.0,0.0,2,111,250.0,0.0,0.0,77,75,3164.0485531098047,132.4327277010224,426.3001358430153,3542.0,266.03313127613205,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,121570,2,2,2,0,1,,200.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,403.846171131972,250.0,37513.35220348177,5,5,0,1,80.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09441971436696217,25008.90146898785,7,4,7,7_1,7_3,7_0_1 +21551,2,43.0,0.0,7,111,910.0,1820.0,0.0,37,23,0.0,70.18934568154187,1551.7324944685756,2783.0,0.0,3455.277367250416,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,121572,2,1,3,0,1,,1112.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,532.234144845645,910.0,128865.65239447894,1,1,1,2,176.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021596134798439384,49563.71245941498,10,5,10,10_1,10_4,10_0_0 +21552,1,28.0,130.0,1,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,665.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,121573,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2069.60640085176,0.0,20543.833502576406,0,4,2,3,39.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.032369810625490235,20543.833502576406,5,3,5,5_0,5_3,5_1_0 +21553,2,59.0,0.0,9,111,1027.0,,,42,42,0.0,0.0,,1027.0,0.0,,20,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,121574,2,2,0,0,2,,438.0,,43,2.0,5.0,4.0,2.0,1.5,2,2,127.91235286980435,1027.0,109212.60281764319,1,1,1,2,143.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009403676622512371,72808.40187842879,10,5,10,10_1,10_2,10_0_0 +21554,1,34.0,413.0,9,111,340.0,,,0,85,0.0,0.0,,478.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,2012.0,6,121575,2,2,0,0,2,,400.0,459.0,31,0.0,0.0,3.0,3.0,1.6,1,1,256.79773213600237,340.0,13828.942084942082,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03456518922878994,8643.0888030888,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21555,1,48.0,301.0,6,111,720.0,420.0,0.0,68,63,0.0,0.0,1227.744391227884,1140.0,0.0,797.3717001347114,50,0,0,0,0,0,0,0,0,0,,2,,4,121576,1,2,0,1,1,1200.0,0.0,486.0,43,2.0,0.0,4.0,6.0,3.3,5,4,438.596115269213,720.0,38375.785148546864,1,1,2,3,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02970623260442053,11629.025802589958,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +21556,2,58.0,0.0,5,111,357.0,,,78,62,0.0,529.7309108040896,,820.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,3,121577,2,1,0,0,2,,1200.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,104.93488072182454,357.0,26896.733477289054,6,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03048697347179307,17931.155651526034,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +21557,2,51.0,0.0,2,111,954.0,808.0,0.0,90,34,0.0,238.3789098618403,1626.7613183769463,1942.0,0.0,1533.9912707353494,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,121578,2,1,2,0,1,,120.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2209.75670352911,954.0,75009.60959028726,1,1,0,1,120.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025890016100703222,50006.40639352484,10,5,10,10_1,10_2,10_0_1 +21558,2,55.0,0.0,7,111,480.0,480.0,0.0,0,52,0.0,0.0,818.4962608185893,960.0,0.0,911.2819430110987,60,0,0,0,0,0,0,0,0,1,10.0,1,,5,121579,2,1,1,0,1,,0.0,740.0,22,4.0,0.0,4.0,4.0,2.5,4,4,280.348645645785,480.0,39739.90402876914,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024157078972939183,15895.961611507655,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +21559,2,56.0,0.0,2,111,500.0,0.0,0.0,0,54,0.0,0.0,852.6002716860306,802.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,121580,2,1,0,1,2,,54.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1768.03767179072,500.0,14663.204989568056,0,4,1,2,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05469472741945382,14663.204989568056,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +21560,2,63.0,0.0,1,212,850.0,0.0,0.0,0,78,0.0,635.6770929649075,1449.420461866252,1330.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,121581,2,1,0,0,1,,80.0,360.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1184.2313243109,850.0,16578.191081476278,0,5,2,3,80.0,2,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.08022588191096929,16578.191081476278,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +21561,2,85.0,0.0,2,111,890.0,0.0,0.0,77,75,1476.555991451242,0.0,1517.6284836011343,2340.0,69.27946126982604,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,121582,2,3,3,0,2,,71.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,888.004461923907,890.0,24274.470697138804,5,5,0,1,85.0,5,4,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09639757048444365,16182.980464759203,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +21562,0,30.0,0.0,2,111,480.0,180.0,0.0,0,37,0.0,0.0,818.4962608185893,660.0,0.0,341.730728629162,12,0,0,0,0,0,0,0,0,0,,2,,2,121583,1,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1255.23522603965,480.0,11599.130009573866,0,4,5,0,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.056900819238618686,11599.130009573866,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +21563,2,69.0,0.0,6,111,580.0,0.0,0.0,0,86,0.0,0.0,989.0163151557955,580.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121584,2,1,2,0,1,,348.0,,21,1.0,1.0,6.0,2.0,1.5,2,2,1077.34737042467,580.0,68875.3187850717,0,5,0,1,250.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008421013655267632,45916.879190047795,10,5,10,10_1,10_2,10_0_0 +21565,1,66.0,56.0,2,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,423.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121586,2,2,0,1,1,,0.0,242.0,11,0.0,0.0,3.0,1.0,1.0,1,1,3078.04171005927,0.0,11253.072932124296,0,5,2,3,70.0,7,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037589732382561594,11253.072932124296,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +21566,2,82.0,0.0,2,111,905.0,0.0,0.0,0,78,2472.176602829794,0.0,1543.2064917517152,3284.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,3,,2,121587,2,2,0,0,1,,716.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1215.35625337227,905.0,18358.06461290271,0,5,0,1,50.0,7,5,7,1,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.17888595934518534,18358.06461290271,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +21567,2,74.0,0.0,5,111,980.0,,,77,77,0.0,0.0,,1080.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,3,121588,1,1,0,0,2,,336.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,113.0988035172761,980.0,36660.44918349034,5,5,0,1,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029459540841806353,24440.299455660224,7,4,7,7_1,7_2,7_0_0 +21568,2,50.0,0.0,5,112,1200.0,0.0,0.0,46,47,0.0,1191.8945493092015,2046.2406520464733,2270.0,235.55016831740858,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121589,2,2,3,0,1,,240.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,1163.15097574406,1200.0,57589.36072352398,1,1,0,1,99.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03941700292347151,23035.744289409595,6,3,6,6_1,6_0,6_0_0 +21569,2,51.0,0.0,7,211,350.0,,,85,63,0.0,0.0,,438.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,2,5.0,2,,5,121590,2,2,0,0,1,,300.0,376.0,42,1.0,1.0,4.0,3.0,2.0,3,3,92.09064703438149,350.0,38179.35986700757,6,1,2,3,72.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011472167200437916,19089.679933503787,5,3,5,5_0,5_2,5_0_0 +21570,2,77.0,0.0,1,111,1013.0,700.0,0.0,75,74,2109.365702073203,0.0,1727.3681504358979,3713.0,0.0,1328.9528335578523,41,0,0,0,0,0,0,0,0,0,,1,,1,121591,2,1,1,0,1,,320.0,,41,0.0,2.0,6.0,3.0,2.0,3,3,702.302058867002,1013.0,42735.09855424672,5,5,0,1,100.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08688408651466718,21367.54927712336,6,3,6,6_1,6_4,6_1_0 +21571,1,57.0,209.0,9,111,550.0,0.0,0.0,0,78,0.0,0.0,937.8602988546337,658.0,149.64363634282427,0.0,60,0,0,0,0,0,0,0,0,0,,2,2010.0,6,121592,1,2,0,1,1,619.0,324.0,374.0,31,0.0,4.0,3.0,2.0,1.5,2,2,92.8001169249662,550.0,9046.028532715789,0,7,2,3,80.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07273910286931805,6030.685688477192,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21572,2,36.0,0.0,2,112,3000.0,0.0,0.0,21,21,1265.6194212439218,0.0,5115.6016301161835,4200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,121593,2,1,2,0,1,,326.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1983.79203956987,3000.0,73701.60788969167,1,1,1,2,120.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05698654507356326,35096.00375699603,9,5,9,9_1,9_1,9_0_1 +21573,1,66.0,270.0,5,111,248.0,0.0,0.0,86,78,0.0,0.0,422.8897347562712,465.0,300.67286191104506,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,121594,2,2,0,1,1,1320.0,0.0,264.0,41,0.0,6.0,3.0,2.0,1.5,2,2,277.584609307354,248.0,13117.934221704838,5,5,2,3,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035447654496590965,8745.289481136559,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21574,2,37.0,0.0,2,111,267.0,150.0,0.0,0,46,0.0,0.0,455.2885450803403,417.0,0.0,284.77560719096834,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,121595,1,1,0,1,1,150.0,200.0,544.0,12,1.0,0.0,3.0,1.0,1.0,1,1,391.62099187641,267.0,21545.52560170035,0,1,2,3,64.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019354366549641788,21545.52560170035,6,3,6,6_0,6_2,6_0_1 +21575,2,57.0,0.0,1,111,1490.0,2070.0,0.0,0,42,0.0,331.081819252556,2540.748809624371,3810.0,0.0,3929.9033792353634,10,1,2,2,2,1,2,2,1,1,5.0,1,,1,121596,1,2,4,0,2,,2200.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,463.449963631484,1490.0,36209.471830337425,0,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.10522108739536662,36209.471830337425,9,5,9,9_1,9_4,9_1_0 +21576,2,27.0,0.0,7,120,0.0,0.0,0.0,46,62,0.0,0.0,0.0,836.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,121597,1,1,2,0,1,,325.0,520.0,43,2.0,0.0,6.0,2.0,1.5,2,2,291.383106435029,0.0,33321.69387540419,1,1,2,3,120.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02508876058720047,22214.462583602795,6,3,6,6_1,6_0,6_0_0 +21577,2,39.0,0.0,9,111,180.0,,,42,42,0.0,0.0,,230.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,121598,2,1,0,0,2,,120.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,131.64818527238745,180.0,84516.27227084976,1,1,1,2,169.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002721369433603481,46953.48459491653,10,5,10,10_1,10_2,10_0_0 +21578,0,54.0,0.0,7,111,1550.0,0.0,0.0,0,54,0.0,0.0,2643.0608422266946,1550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,121599,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1673.96490531901,1550.0,17548.527601352245,0,1,5,0,70.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08832649867904364,17548.527601352245,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +21579,2,78.0,0.0,2,112,640.0,0.0,0.0,77,75,0.0,331.081819252556,1091.3283477581192,1030.0,193.98249155551292,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,121600,2,1,2,0,1,,420.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1335.1784386724,640.0,47799.978263811936,5,5,0,1,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021548126953433888,31866.652175874624,8,4,8,8_1,8_0,8_0_1 +21580,2,76.0,0.0,5,112,600.0,0.0,0.0,0,71,1582.0242765549024,0.0,1023.1203260232367,2228.0,177.35542085075468,0.0,71,2,2,2,2,1,2,2,2,0,,1,,3,121601,1,3,1,0,2,,110.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1084.49437395891,600.0,16152.520676032058,0,5,0,1,120.0,6,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.13793512756841855,16152.520676032058,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +21581,0,54.0,0.0,2,111,273.0,,,0,78,0.0,0.0,,435.0,224.4654545142364,,50,0,0,0,0,0,0,0,0,0,,1,,2,121602,2,1,0,0,2,,389.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,111.13949576540615,273.0,12696.159484784046,0,7,5,0,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034262329527392436,12696.159484784046,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +21582,2,72.0,0.0,8,111,400.0,750.0,0.0,71,71,0.0,0.0,682.0802173488245,1150.0,0.0,1423.8780359548418,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,121603,2,1,1,0,1,,210.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,837.131596028738,400.0,28738.53433413581,5,5,0,1,120.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04001595859514738,19159.02288942387,5,3,5,5_1,5_1,5_0_0 +21583,2,35.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,597.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,121604,2,1,0,1,1,,207.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,413.189534483607,0.0,22849.161542769187,0,1,1,2,50.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026127873396252728,22849.161542769187,6,3,6,6_0,6_3,6_0_1 +21584,1,42.0,344.0,2,111,500.0,144.0,0.0,0,68,0.0,0.0,852.6002716860306,644.0,0.0,273.3845829033296,71,0,0,0,0,0,0,0,0,0,,2,,2,121605,1,1,0,1,1,686.0,0.0,309.0,32,1.0,0.0,4.0,3.0,2.0,3,1,286.563423687975,500.0,13896.89212565424,0,4,2,3,85.0,5,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.046341296613445625,6948.44606282712,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21585,1,73.0,78.0,5,111,588.0,0.0,0.0,72,78,0.0,0.0,1002.657919502772,708.0,166.2707070475825,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,121606,2,3,0,1,1,27.0,0.0,237.0,41,0.0,0.0,3.0,2.0,1.5,2,2,375.203249665557,588.0,14829.95999030083,5,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.04774119420841661,9886.639993533887,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +21586,2,76.0,0.0,2,111,0.0,0.0,950.0,0,74,0.0,0.0,598.8023758940067,950.0,0.0,1136.8955401864469,31,0,0,0,0,0,0,0,0,0,,2,,2,121607,2,2,0,0,1,,140.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1558.95698010177,0.0,33627.82905784916,0,5,0,1,84.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.028250411240218258,33627.82905784916,9,5,9,9_0,9_2,9_0_1 +21587,1,63.0,80.0,1,111,300.0,500.0,0.0,86,78,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,1,,1,121608,2,1,1,0,1,,600.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,244.314892202793,300.0,12992.155424041757,6,5,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06157561804714974,8661.436949361172,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +21588,2,85.0,0.0,1,400,922.0,0.0,0.0,78,75,0.0,0.0,1572.1949009890404,992.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121609,2,2,2,0,2,,320.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,812.939019417789,922.0,31617.527466858694,5,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03137500239510533,21078.351644572464,5,3,5,5_1,5_0,5_1_0 +21589,2,46.0,0.0,1,111,840.0,750.0,0.0,85,52,0.0,0.0,1432.3684564325313,1590.0,0.0,1423.8780359548418,50,2,2,2,1,2,2,2,2,2,20.0,1,,1,121610,2,1,3,0,1,,310.0,,42,3.0,1.0,4.0,4.0,2.5,4,4,536.464462526268,840.0,64826.24633865071,7,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.02452710267526334,25930.498535460283,7,4,7,7_1,7_3,7_1_0 +21590,2,64.0,0.0,1,111,603.0,1478.0,0.0,85,78,0.0,0.0,1028.235927653353,2081.0,0.0,2805.988982855008,50,2,2,1,1,2,2,2,2,0,,1,,1,121611,2,1,2,0,1,,262.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,493.196018895375,603.0,16374.34875264886,6,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.12708902390169008,10916.232501765908,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +21591,2,38.0,0.0,7,120,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1287.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,121612,2,3,1,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,1032.84727228303,0.0,12492.986432540021,0,1,1,2,50.0,0,3,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10301780178419137,12492.986432540021,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +21592,2,35.0,0.0,9,111,1450.0,0.0,0.0,47,54,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,121613,2,1,1,0,1,,185.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1103.80907735222,1450.0,63493.86852197643,1,1,1,2,104.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022836850766119684,42329.24568131762,9,5,9,9_1,9_2,9_0_0 +21593,2,39.0,0.0,6,111,0.0,,,56,33,0.0,0.0,,1235.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,121614,1,1,0,0,2,,134.0,139.0,43,2.0,1.0,4.0,3.0,2.0,3,2,157.66281239446724,0.0,43474.28821572505,4,1,3,4,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028407595631509134,21737.144107862525,6,3,6,6_1,6_2,6_0_0 +21594,2,33.0,0.0,9,111,1300.0,0.0,0.0,37,37,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,1,2013.0,6,121615,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,179.343329680875,1300.0,66932.98803544788,1,1,1,2,137.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019422410953945708,31872.85144545137,8,4,8,8_1,8_4,8_0_0 +21595,1,38.0,193.0,1,111,660.0,1020.0,0.0,55,64,0.0,0.0,1125.4323586255605,1680.0,0.0,1936.4741288985847,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,121616,1,3,0,0,2,,0.0,581.0,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,1794.37407511879,660.0,36903.85504441478,4,1,2,3,90.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.045523699298571245,13668.094460894363,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +21596,2,50.0,0.0,2,111,372.0,0.0,0.0,0,43,0.0,0.0,634.3346021344067,372.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,5.0,2,,2,121617,2,1,0,0,1,,60.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1308.75996165601,372.0,33031.0,0,1,1,2,58.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011262147679452635,33031.0,8,4,8,8_0,8_2,8_0_1 +21597,2,54.0,0.0,2,112,420.0,937.0,0.0,0,55,0.0,0.0,716.1842282162656,1357.0,0.0,1778.8982929195822,41,0,0,0,0,0,0,0,0,0,,2,,2,121618,2,1,0,0,1,,0.0,900.0,22,1.0,1.0,5.0,2.0,1.5,2,2,2430.99799907427,420.0,27766.0,0,1,2,3,100.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.048872722034142474,18510.666666666668,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +21598,1,84.0,99.0,2,111,220.0,200.0,0.0,0,77,0.0,0.0,375.14411954185346,420.0,0.0,379.7008095879578,70,0,0,0,0,0,0,0,0,0,,2,,2,121619,2,1,0,1,1,328.0,0.0,235.0,11,0.0,0.0,2.0,1.0,1.0,1,1,299.012415140078,220.0,13550.554789044789,0,5,2,3,69.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030995040907074684,13550.554789044789,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +21599,2,27.0,0.0,6,111,0.0,0.0,0.0,47,34,0.0,0.0,0.0,612.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,121620,2,2,3,0,1,,399.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,663.194126469912,0.0,47343.5186476533,1,1,1,2,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012926795841997168,26301.954804251833,7,4,7,7_1,7_4,7_0_0 +21600,2,51.0,0.0,5,111,600.0,400.0,0.0,0,46,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,121621,2,1,0,1,2,,600.0,,32,2.0,0.0,2.0,2.0,1.5,2,2,945.477372277686,600.0,50810.47136399484,0,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019680982544645648,33873.64757599656,9,5,9,9_0,9_4,9_0_0 +21601,2,46.0,0.0,1,111,1000.0,1110.0,0.0,0,67,0.0,0.0,1705.2005433720612,2110.0,0.0,2107.339493213166,50,0,0,0,0,0,0,0,0,0,,2,,1,121622,1,1,0,0,1,,0.0,276.0,22,1.0,4.0,4.0,2.0,1.5,2,2,1075.58568565382,1000.0,28401.05874358602,0,1,2,3,85.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07429300502667048,18934.03916239068,5,3,5,5_0,5_2,5_1_0 +21602,1,46.0,334.0,5,111,670.0,0.0,0.0,56,67,0.0,0.0,1142.484364059281,670.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,10.0,2,,3,121623,2,3,0,1,1,653.0,300.0,422.0,43,2.0,1.0,3.0,3.0,2.0,3,2,1920.4208320672,670.0,20741.85707119138,4,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.03230183284458995,10370.92853559569,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +21603,2,39.0,0.0,1,111,1170.0,0.0,0.0,52,43,0.0,79.45963662061344,1995.0846357453115,1230.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,121624,1,1,1,0,1,,333.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1243.38683669319,1170.0,50589.59056181215,1,1,1,2,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024313302130744518,28105.328089895636,8,4,8,8_1,8_3,8_1_0 +21604,2,52.0,0.0,2,111,0.0,0.0,0.0,34,33,0.0,0.0,0.0,1417.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,40.0,2,,2,121625,2,1,0,1,1,,220.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,1246.24271953711,0.0,69861.47586277271,1,1,1,2,95.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020282995492156227,27944.590345109085,7,4,7,7_0,7_3,7_0_1 +21605,2,54.0,0.0,8,111,1021.0,1277.0,0.0,90,38,0.0,0.0,1741.0097547828746,2298.0,0.0,2424.3896692191106,12,0,0,0,0,0,0,0,0,0,,1,1999.0,6,121626,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,490.872516318568,1021.0,127535.6688606487,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01801848863560593,42511.889620216236,9,5,9,9_1,9_4,9_0_0 +21606,2,29.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,657.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,121627,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1619.15730829029,0.0,27392.369924662733,0,1,1,2,39.0,8,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023984781229479155,27392.369924662733,7,4,7,7_0,7_3,7_1_0 +21607,2,59.0,0.0,2,111,172.0,660.0,0.0,0,52,0.0,0.0,293.2944934599945,832.0,0.0,1253.0126716402608,60,0,0,0,0,0,0,0,0,1,20.0,1,,2,121628,1,3,3,0,1,,210.0,271.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1142.38148193722,172.0,20103.473564624084,0,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.041385882759289096,20103.473564624084,5,3,5,5_1,5_3,5_0_1 +21608,2,55.0,0.0,1,112,469.8,0.0,0.0,56,34,2950.0006684919267,0.0,801.1032152761943,3363.0,133.01656563806603,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,1,121629,1,3,3,0,1,,220.0,355.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1141.22221360445,469.8,60324.56842940735,1,1,2,3,91.0,6,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0557484303254557,40216.378952938234,9,5,9,9_1,9_0,9_1_0 +21609,2,28.0,0.0,9,300,1560.0,0.0,0.0,46,43,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,121630,2,1,1,0,1,,192.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1615.13190595489,1560.0,44982.081709418126,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03468047588543184,29988.054472945416,8,4,8,8_1,8_0,8_0_0 +21610,2,47.0,0.0,2,111,570.0,1270.0,0.0,0,46,0.0,0.0,971.9643097220749,1840.0,0.0,2411.100140883532,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,121631,2,1,2,0,1,,348.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,1086.98768168976,570.0,47023.758425501874,0,1,0,1,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039129156443652814,31349.172283667915,8,4,8,8_1,8_2,8_0_1 +21611,2,44.0,0.0,2,111,1000.0,0.0,0.0,68,62,1582.0242765549024,0.0,1705.2005433720612,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,75.0,1,,2,121632,2,3,3,0,1,,700.0,,43,3.0,0.0,6.0,5.0,2.8,4,3,1346.45691970874,1000.0,18299.654402396372,1,1,1,2,110.0,6,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13661460184038343,6535.590857998704,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +21612,2,35.0,0.0,9,112,1100.0,0.0,0.0,55,62,0.0,463.51454695357836,1875.7205977092674,1510.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,121633,2,1,1,0,1,,227.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,728.050480696008,1100.0,35195.22124407813,4,1,1,2,93.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042903551863708464,16759.629163846726,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +21613,2,24.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,470.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,7.0,2,,2,121634,2,1,0,1,2,326.0,0.0,450.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1484.2389264299,0.0,18240.41009319187,0,1,2,3,75.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025766964536363405,18240.41009319187,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +21614,1,66.0,200.0,7,221,0.0,,,0,78,0.0,0.0,,160.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,121635,1,1,0,0,2,,356.0,350.0,11,0.0,4.0,1.0,1.0,1.0,1,1,130.64481923315796,0.0,9583.657931034482,0,5,2,3,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.016695086693555353,9583.657931034482,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +21615,2,71.0,0.0,2,112,267.0,68.0,0.0,0,74,0.0,0.0,455.2885450803403,335.0,0.0,129.09827525990565,50,2,1,2,2,1,2,2,2,0,,2,,2,121636,1,2,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,296.647560011017,267.0,22894.392075176394,0,5,0,1,66.0,10,5,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014632404254281512,22894.392075176394,6,3,6,6_0,6_2,6_0_1 +21616,2,58.0,0.0,7,111,1280.0,,,77,55,0.0,0.0,,1419.0,192.59690233011642,,71,0,0,0,0,0,0,0,0,0,,2,,5,121637,2,2,0,0,2,,400.0,685.0,42,2.0,1.0,4.0,3.0,2.0,3,3,81.9849810100895,1280.0,17168.91963250681,5,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08264934721421453,8584.459816253406,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +21617,2,37.0,0.0,8,221,2000.0,0.0,0.0,56,47,0.0,0.0,3410.4010867441225,2070.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,121638,2,1,1,0,1,,200.0,687.0,43,2.0,0.0,6.0,4.0,2.1,2,2,1982.48310631753,2000.0,35375.0,1,4,2,3,120.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05851590106007067,16845.238095238095,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +21618,2,74.0,0.0,1,111,0.0,400.0,0.0,86,78,0.0,0.0,0.0,2555.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,1,,1,121639,2,1,2,0,1,,152.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,730.843698662977,0.0,18632.05339525699,5,5,0,1,94.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1371292764033408,12421.368930171326,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +21619,1,57.0,234.0,7,112,820.0,0.0,0.0,0,52,0.0,0.0,1398.2644455650902,820.0,0.0,0.0,31,2,2,1,2,1,2,2,2,0,,1,,5,121640,2,3,2,0,1,,240.0,248.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1068.9189121457,820.0,12658.321915733517,0,4,2,3,35.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,1,0.06477951860118128,12658.321915733517,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +21620,2,61.0,0.0,2,111,415.0,73.0,0.0,0,78,0.0,0.0,707.6582254994054,488.0,0.0,138.5907954996046,41,0,0,0,0,0,0,0,0,0,,2,,2,121641,1,2,0,1,1,813.0,272.0,326.0,11,0.0,2.0,3.0,1.0,1.0,1,1,166.153643031884,415.0,27810.13162430543,0,5,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017547561679769216,27810.13162430543,7,4,7,7_0,7_2,7_0_1 +21621,2,65.0,0.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,341.04010867441224,240.0,55.423569015860835,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,121642,2,2,0,1,1,480.0,65.0,297.0,11,0.0,4.0,3.0,1.0,1.0,1,1,364.254398207378,200.0,18123.80867880189,0,5,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01324224969780831,18123.80867880189,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +21622,2,74.0,0.0,7,111,226.0,,,0,77,0.0,0.0,,249.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,0,,1,,5,121643,1,1,0,0,2,,250.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,127.93161208936803,226.0,21404.430153065336,0,5,0,1,66.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011633105773868996,21404.430153065336,6,3,6,6_1,6_3,6_0_0 +21623,2,87.0,0.0,1,112,1540.0,550.0,0.0,77,78,0.0,0.0,2626.0088367929743,2090.0,0.0,1044.177226366884,70,0,0,0,0,0,0,0,0,0,,1,,1,121644,2,2,2,0,1,,200.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,207.27537396457,1540.0,41454.38337239736,5,5,0,1,120.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05041686379037153,27636.255581598238,7,4,7,7_1,7_0,7_1_0 +21624,2,67.0,0.0,6,111,3901.0,0.0,0.0,74,74,0.0,185.40581878143135,6651.987319694411,4041.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,121645,2,1,2,0,1,,860.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,800.351592392512,3901.0,86222.94814742215,5,5,0,1,242.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04686687345798922,57481.96543161477,10,5,10,10_1,10_3,10_0_0 +21625,1,51.0,270.0,1,111,0.0,0.0,900.0,0,62,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,71,2,2,2,2,1,1,2,2,0,,1,,1,121646,2,2,2,0,1,,160.0,337.0,12,1.0,4.0,4.0,1.0,1.0,1,1,262.347241927454,0.0,7204.897959183673,0,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.12491502379333787,7204.897959183673,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +21626,2,32.0,0.0,2,300,738.0,,,64,43,0.0,0.0,,989.0,91.44888887617039,,33,0,0,0,0,0,0,0,0,0,,1,,2,121647,2,1,0,0,2,,216.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,90.54295783403856,738.0,65539.99048147508,4,1,1,2,97.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015090023552559739,36411.10582304171,9,5,9,9_1,9_1,9_0_1 +21627,1,40.0,195.0,9,300,375.0,0.0,0.0,0,22,0.0,635.6770929649075,639.4502037645229,855.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,121648,2,2,1,0,1,,340.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,1290.51930340925,375.0,14656.94160627159,0,4,1,2,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05833413429402982,7328.470803135795,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +21628,2,80.0,0.0,6,111,450.0,,,0,78,0.0,0.0,,978.0,731.5911110093631,,71,0,0,0,0,0,0,0,0,0,,1,,4,121649,2,2,0,0,2,,200.0,,21,2.0,6.0,7.0,3.0,2.0,3,3,89.35960117878267,450.0,11985.879278714681,0,5,0,1,113.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08159601621691595,5992.939639357341,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21629,2,50.0,0.0,2,111,500.0,,,0,21,0.0,0.0,,523.0,31.86855218411998,,31,0,0,0,0,0,0,0,0,0,,2,,2,121650,2,1,0,0,2,,500.0,488.0,12,1.0,0.0,3.0,1.0,1.0,1,1,111.28557025761023,500.0,18149.760226298768,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028815807673435806,18149.760226298768,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +21630,2,47.0,0.0,5,111,550.0,950.0,0.0,90,46,0.0,0.0,937.8602988546337,1500.0,0.0,1803.5788455427996,20,0,0,0,0,0,0,0,0,3,30.0,2,,3,121651,1,3,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,931.623499433212,550.0,47036.946921480136,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031889824875410915,18814.778768592056,5,3,5,5_0,5_4,5_0_0 +21631,2,58.0,0.0,5,111,900.0,0.0,0.0,85,67,0.0,0.0,1534.680489034855,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,121652,2,1,0,0,1,,0.0,257.0,42,1.0,6.0,3.0,2.0,1.5,2,2,312.954539878696,900.0,22490.80597691026,6,1,2,3,64.0,3,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04001635161158596,14993.870651273506,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +21632,0,66.0,0.0,7,112,660.0,,,0,86,0.0,0.0,,786.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,2,,5,121653,2,1,0,0,2,,600.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,78.34531397431311,660.0,9331.214439742038,0,5,0,1,200.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08423340874606768,9331.214439742038,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +21634,2,64.0,0.0,1,111,585.0,745.0,0.0,67,78,0.0,0.0,997.5423178726558,1330.0,0.0,1414.385515715143,71,0,0,0,0,0,0,0,0,0,,2,,1,121655,2,1,0,1,1,598.0,0.0,398.0,42,2.0,2.0,5.0,5.0,2.5999999999999996,3,3,193.315764567535,585.0,30787.82095708511,1,5,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043198900040827055,11841.46959887889,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +21635,2,72.0,0.0,2,111,500.0,1100.0,0.0,85,78,0.0,0.0,852.6002716860306,1600.0,0.0,2088.354452733768,71,2,2,2,2,2,2,2,1,0,,1,,2,121656,2,2,2,0,1,,450.0,450.0,41,0.0,6.0,6.0,3.0,2.0,3,3,213.621102302303,500.0,15108.556301217279,6,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.10590025731784114,7554.278150608639,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +21636,2,67.0,0.0,7,300,900.0,0.0,0.0,0,75,0.0,0.0,1534.680489034855,970.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,121657,2,2,1,0,1,,180.0,500.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2002.25250704584,900.0,17923.0,0,5,2,3,55.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054120403950231544,17923.0,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +21637,2,39.0,0.0,6,111,420.0,1500.0,0.0,42,34,0.0,0.0,716.1842282162656,1920.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,121658,1,3,2,0,1,,410.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,298.251574398422,420.0,56506.02974489637,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0339786746417698,31392.238747164647,8,4,8,8_1,8_3,8_0_0 +21638,2,77.0,0.0,2,112,400.0,0.0,0.0,78,78,2636.7071275915036,198.6490915515336,682.0802173488245,3350.0,415.67676761895626,0.0,71,1,2,1,1,1,2,2,2,0,,1,,2,121659,2,1,2,0,2,,275.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,1055.3699719532,400.0,29478.055827186658,5,5,0,1,100.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.11364385832088707,19652.03721812444,5,3,5,5_1,5_0,5_0_1 +21639,2,60.0,0.0,5,111,900.0,,,38,46,0.0,0.0,,1000.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,2,20.0,1,,3,121660,2,2,0,0,2,,100.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,45.65771954908576,900.0,64187.8440164433,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015579273853532537,42791.8960109622,9,5,9,9_1,9_2,9_0_0 +21640,2,44.0,0.0,2,111,807.0,900.0,0.0,85,46,0.0,0.0,1376.0968385012534,1707.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,1,10.0,1,,2,121661,2,1,1,0,1,,530.0,,42,1.0,0.0,5.0,4.0,2.3,3,2,1065.82487393584,807.0,52096.73049420383,6,1,1,2,110.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03276597175690166,22650.752388784276,6,3,6,6_1,6_2,6_0_1 +21641,1,39.0,300.0,6,111,400.0,0.0,0.0,0,85,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,2,1,2,1,1,2,2,2,0,,2,,4,121662,1,3,0,1,1,792.0,0.0,400.0,31,0.0,0.0,3.0,3.0,1.6,1,1,312.247641146155,400.0,9512.76362101444,0,6,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.042048768994571536,5945.477263134024,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +21643,1,42.0,420.0,2,111,420.0,840.0,0.0,56,46,0.0,0.0,716.1842282162656,1260.0,0.0,1594.7434002694229,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,121664,2,1,0,0,1,,360.0,670.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,3119.60805007401,420.0,33490.0,1,1,2,3,79.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.037623171095849506,12880.769230769232,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21644,2,36.0,0.0,7,111,0.0,0.0,0.0,31,31,0.0,0.0,0.0,1093.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,7.0,1,,5,121665,2,1,1,0,1,,421.0,800.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1627.35746776218,0.0,61065.618544740624,1,1,2,3,85.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017898778822639738,40710.412363160416,9,5,9,9_1,9_3,9_0_0 +21645,2,62.0,0.0,6,300,1400.0,0.0,0.0,77,21,0.0,0.0,2387.2807607208856,1530.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,121666,2,1,2,0,1,,93.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,727.654429834461,1400.0,10509.168088218787,6,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14558716609692385,7006.112058812524,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +21646,2,40.0,0.0,2,111,684.0,80.0,0.0,0,34,0.0,0.0,1166.3571716664899,764.0,0.0,151.8803238351831,10,2,2,2,1,1,1,2,2,3,25.0,2,,2,121667,1,3,0,0,2,,0.0,612.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1260.66587224199,684.0,19834.984392590814,0,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03851780192402801,19834.984392590814,5,3,5,5_0,5_4,5_0_1 +21647,2,81.0,0.0,2,111,439.0,0.0,0.0,0,86,4218.731404146406,0.0,748.5830385403349,4439.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121668,2,1,2,0,1,,243.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,231.500043909803,439.0,66381.63066434694,0,5,0,1,100.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06687090924966012,44254.420442897965,10,5,10,10_1,10_3,10_0_1 +21648,2,70.0,0.0,1,111,550.0,2060.0,0.0,78,74,0.0,0.0,937.8602988546337,2610.0,0.0,3910.918338755965,10,0,0,0,0,0,0,0,0,0,,1,,1,121669,2,1,3,0,1,,550.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,342.108532592938,550.0,58199.76034753131,5,5,0,1,117.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04484554548703928,38799.840231687536,9,5,9,9_1,9_3,9_1_0 +21649,2,38.0,0.0,1,111,250.0,0.0,0.0,85,47,0.0,0.0,426.3001358430153,250.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,1,121670,2,2,0,1,1,637.0,0.0,218.0,42,1.0,0.0,2.0,3.0,1.8,2,2,717.056369011182,250.0,39109.342569573855,6,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006392334505630225,21727.41253865214,6,3,6,6_0,6_4,6_1_0 +21650,2,81.0,0.0,1,111,440.0,0.0,0.0,0,77,0.0,0.0,750.2882390837069,440.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,121671,2,2,0,1,1,396.0,0.0,221.0,11,0.0,0.0,2.0,1.0,1.0,1,1,935.56524287509,440.0,20324.82068332154,0,5,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02164840747456444,20324.82068332154,5,3,5,5_0,5_4,5_1_0 +21651,1,42.0,340.0,6,111,0.0,0.0,1400.0,22,45,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,42,0,0,0,0,0,0,0,0,1,15.0,1,,4,121672,2,1,2,0,1,,420.0,835.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,324.043226112731,0.0,29109.240994044096,1,1,2,3,95.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.048094692688361314,11195.861920786192,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +21652,2,42.0,0.0,1,111,1800.0,1500.0,0.0,85,47,0.0,0.0,3069.36097806971,3300.0,0.0,2847.7560719096837,20,2,2,1,2,2,2,1,2,2,30.0,1,,1,121673,2,2,3,0,1,,1440.0,,42,1.0,1.0,4.0,5.0,2.4,2,2,451.641209548942,1800.0,71580.00946521337,6,1,1,2,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04610225710578793,29825.003943838907,8,4,8,8_1,8_4,8_1_0 +21653,0,62.0,0.0,9,111,300.0,0.0,0.0,52,52,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,2007.0,6,121674,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1710.27599259496,300.0,53447.96247625114,1,1,5,0,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005612936136401848,35631.97498416743,9,5,9,9_0,9_4,9_0_0 +21654,2,53.0,0.0,6,111,480.0,,,85,48,0.0,0.0,,732.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,4,121675,1,1,0,0,2,,300.0,,42,1.0,1.0,3.0,3.0,2.0,3,3,108.16130391832824,480.0,51877.11245806898,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014110268773954179,25938.55622903449,7,4,7,7_1,7_2,7_0_0 +21655,1,65.0,46.0,1,221,400.0,0.0,0.0,0,72,0.0,635.6770929649075,682.0802173488245,880.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121676,2,1,1,0,1,,98.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,2017.07969732557,400.0,12028.621708283996,0,5,1,2,55.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07315883908743696,12028.621708283996,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +21656,2,46.0,0.0,1,112,1500.0,0.0,0.0,42,37,0.0,132.4327277010224,2557.8008150580918,6600.0,6927.946126982605,0.0,42,2,2,1,1,2,2,2,2,2,45.0,1,,1,121677,2,1,3,0,1,,1500.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,512.361247361478,1500.0,150974.9497133703,1,1,1,2,180.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04371586155537899,62906.229047237626,10,5,10,10_1,10_0,10_1_0 +21657,2,67.0,0.0,5,111,0.0,0.0,0.0,22,22,0.0,0.0,0.0,1102.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,,3,121678,2,1,1,0,1,,446.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,577.89006068084,0.0,866332.0825616318,1,1,0,1,184.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0012720295394596593,577554.7217077545,10,5,10,10_1,10_4,10_0_0 +21658,2,52.0,0.0,2,111,103.0,53.0,0.0,0,54,0.0,0.0,175.6356559673223,156.0,0.0,100.62071454080882,71,0,0,0,0,0,0,0,0,0,,2,,2,121679,2,1,0,1,1,817.0,0.0,431.0,22,1.0,1.0,4.0,3.0,2.0,3,3,229.037658913298,103.0,22236.42594562706,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007015515909861335,11118.21297281353,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +21659,2,76.0,0.0,5,111,400.0,300.0,0.0,52,90,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,70,0,0,0,0,0,0,0,0,0,,2,,3,121680,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,829.633555541268,400.0,27141.866723111027,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02579041475448544,18094.577815407352,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +21660,2,70.0,0.0,6,111,1000.0,,,0,77,0.0,0.0,,1084.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,4,121681,2,1,0,0,2,,900.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,94.37760151469993,1000.0,10530.682926829279,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10293729357649414,10530.682926829279,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +21661,2,64.0,0.0,2,111,789.0,0.0,0.0,72,72,0.0,0.0,1345.4032287205562,939.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121682,2,1,2,0,1,,369.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1495.06907988897,789.0,85557.42672637156,5,5,0,1,96.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010975084641139282,57038.284484247706,10,5,10,10_1,10_2,10_0_1 +21662,1,48.0,350.0,6,111,0.0,,,0,21,0.0,0.0,,52.0,72.05063972061909,,60,0,0,0,0,0,0,0,0,0,,1,,4,121683,2,3,0,0,2,,0.0,650.0,12,1.0,1.0,3.0,1.0,1.0,1,1,125.32366682661905,0.0,251.00301138902938,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.2071688292193644,251.00301138902938,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +21663,2,46.0,0.0,7,111,460.8,,,11,64,0.0,0.0,,713.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,40.0,1,,5,121684,1,1,0,0,2,,320.0,,43,2.0,1.0,6.0,5.0,2.8,4,3,72.0413321392731,460.8,42653.874109148746,1,1,0,1,96.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0167159493689946,15233.526467553125,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +21664,2,67.0,0.0,2,111,149.0,290.0,0.0,0,78,0.0,0.0,254.0748809624371,593.0,0.0,550.5661739025388,70,0,0,0,0,0,0,0,0,0,,2,,2,121685,1,1,0,1,1,775.0,0.0,332.0,21,0.0,3.0,3.0,2.0,1.5,2,2,462.932096756256,149.0,19608.902350799588,0,5,2,3,59.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030241366364691973,13072.601567199725,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +21665,2,39.0,0.0,6,211,120.0,,,0,85,0.0,0.0,,270.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,4,121686,2,2,0,0,2,,800.0,415.0,31,0.0,1.0,4.0,6.0,2.7,2,1,8.628927407353641,120.0,7317.0,0,6,3,4,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03690036900369004,2710.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21666,2,59.0,0.0,7,111,0.0,0.0,1800.0,0,34,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,121687,2,1,2,0,1,,180.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1225.11102559626,0.0,152700.29723851968,0,1,0,1,140.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011787796307877374,152700.29723851968,10,5,10,10_1,10_2,10_0_0 +21667,2,64.0,0.0,2,111,139.0,311.0,0.0,77,78,0.0,0.0,237.0228755287165,450.0,0.0,590.4347589092744,71,0,0,0,0,0,0,0,0,0,,2,,2,121688,1,1,0,1,1,768.0,0.0,318.0,41,0.0,4.0,3.0,2.0,1.5,2,2,247.398630767306,139.0,26446.053077738885,5,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01701577164188595,17630.702051825923,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +21668,2,59.0,0.0,5,111,500.0,100.0,0.0,85,42,1054.6828510366015,0.0,852.6002716860306,2134.0,0.0,189.8504047939789,20,0,0,0,0,0,0,0,0,2,25.0,1,,3,121689,2,2,4,0,1,,450.0,700.0,42,1.0,0.0,6.0,3.0,2.0,3,2,1493.67819254648,500.0,38441.236769039424,6,1,2,3,100.0,7,5,7,1,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05551330236384912,19220.618384519712,5,3,5,5_1,5_2,5_0_0 +21669,2,73.0,0.0,1,112,3000.0,0.0,0.0,86,71,3164.0485531098047,1.324327277010224,5115.6016301161835,6097.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,121690,2,1,2,0,1,,123.0,,41,0.0,5.0,9.0,2.0,1.5,2,2,1350.19788558473,3000.0,132316.78167395556,5,5,0,1,450.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04607881118982882,88211.18778263703,10,5,10,10_1,10_0,10_1_0 +21670,2,82.0,0.0,1,111,272.0,0.0,0.0,75,72,2283.3883724942425,1291.2190950849683,463.81454779720065,3532.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121691,1,2,4,0,2,,552.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,751.540979867127,272.0,23296.38989582454,5,5,0,1,162.0,8,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1516114735284821,15530.926597216361,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +21671,2,51.0,0.0,2,111,900.0,,,0,21,0.0,0.0,,990.0,124.70303028568689,,31,0,0,0,0,0,0,0,0,0,,1,,2,121692,2,1,0,0,2,,300.0,800.0,32,1.0,1.0,6.0,2.0,1.5,2,2,129.13870259192666,900.0,14740.0,0,1,2,3,300.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06716417910447761,9826.666666666666,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +21672,2,48.0,0.0,5,111,300.0,300.0,0.0,46,21,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,121693,1,1,0,1,2,,300.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,886.495009715855,300.0,41443.89775134631,1,1,0,1,117.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014477402767467954,20721.948875673155,5,3,5,5_0,5_2,5_0_0 +21673,2,59.0,0.0,2,300,601.0,0.0,0.0,0,68,1265.6194212439218,0.0,1024.8255265666087,6725.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121694,2,2,5,0,1,,0.0,,22,1.0,4.0,6.0,2.0,1.5,2,2,1040.15637953531,601.0,31718.922470801048,0,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.21201855158196875,21145.948313867364,5,3,5,5_1,5_0,5_0_1 +21674,2,28.0,0.0,5,111,840.0,865.0,0.0,65,56,0.0,0.0,1432.3684564325313,1705.0,0.0,1642.2060014679175,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,121695,1,3,3,0,2,,0.0,445.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1074.238109515,840.0,32816.50311223049,4,1,2,3,52.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051955566203047324,21877.668741486996,6,3,6,6_1,6_2,6_0_0 +21675,2,83.0,0.0,2,111,960.0,0.0,0.0,0,74,2689.441270143334,0.0,1636.9925216371787,3510.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121696,1,2,2,0,2,,60.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1923.10230205949,960.0,29530.67281574841,0,5,0,1,60.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11885946594918598,29530.67281574841,8,4,8,8_1,8_3,8_0_1 +21676,1,34.0,113.0,8,111,400.0,1080.0,0.0,0,54,0.0,0.0,682.0802173488245,1480.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,3,45.0,2,2001.0,6,121697,2,1,0,1,1,150.0,0.0,384.0,32,1.0,0.0,3.0,3.0,1.6,1,1,629.268418423149,400.0,28571.003166953225,0,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05180077126979736,17856.876979345765,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +21677,2,60.0,0.0,7,111,1600.0,0.0,0.0,37,22,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,2,,5,121698,2,1,0,0,1,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,714.07315513629,1600.0,165935.13650099467,1,1,0,1,116.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00964232189600428,110623.42433399645,10,5,10,10_0,10_4,10_0_0 +21678,1,63.0,309.0,2,111,480.0,312.0,0.0,0,78,0.0,0.0,818.4962608185893,792.0,0.0,592.3332629572142,71,2,1,2,1,2,1,2,2,0,,2,,2,121699,2,2,0,1,1,550.0,112.0,286.0,31,1.0,0.0,4.0,2.0,1.5,2,2,262.508717984115,480.0,15680.000168182876,0,5,2,3,65.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.0505102035398628,10453.333445455251,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21679,2,87.0,0.0,5,111,740.0,0.0,0.0,0,86,0.0,0.0,1261.8484020953254,740.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,121700,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2848.96060188749,740.0,25795.447090976686,0,6,0,1,77.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02868723295975955,25795.447090976686,7,4,7,7_0,7_3,7_0_0 +21680,2,52.0,0.0,6,111,1200.0,0.0,0.0,75,56,1582.0242765549024,79.45963662061344,2046.2406520464733,2860.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,121701,1,2,2,0,2,,250.0,,42,1.0,2.0,8.0,5.0,2.5999999999999996,3,2,967.382079927264,1200.0,36379.41949784102,5,1,0,1,130.0,9,7,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07861587786384909,13992.08442224655,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +21681,2,23.0,0.0,6,120,0.0,0.0,0.0,85,47,0.0,0.0,0.0,917.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,,4,121702,1,2,2,0,1,,148.0,316.0,42,1.0,0.0,3.0,3.0,1.8,2,2,796.565458254554,0.0,15991.868874310663,6,1,2,3,62.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05734164075551349,8884.371596839257,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +21682,2,81.0,0.0,2,111,3570.0,,,0,77,0.0,0.0,,3800.0,318.68552184119983,,70,0,0,0,0,0,0,0,0,0,,1,,2,121703,2,1,0,0,2,,720.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,109.31682336394431,3570.0,38157.04951156592,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09958841285273297,38157.04951156592,9,5,9,9_1,9_2,9_0_1 +21683,2,67.0,0.0,2,111,377.0,1334.0,0.0,72,72,0.0,0.0,642.8606048512671,1711.0,0.0,2532.6043999516787,70,0,0,0,0,0,0,0,0,0,,1,,2,121704,1,3,3,0,1,,296.0,628.0,41,0.0,2.0,6.0,2.0,1.5,2,2,1745.53045393174,377.0,40111.687268700865,5,5,2,3,72.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04265589698429596,26741.124845800576,7,4,7,7_1,7_3,7_0_1 +21684,0,90.0,0.0,2,111,600.0,0.0,0.0,71,71,0.0,0.0,1023.1203260232367,1179.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,121705,2,1,0,1,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1388.22654344933,600.0,20163.666775318303,5,5,0,1,50.0,6,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.058471507843165516,13442.444516878868,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +21685,2,33.0,0.0,9,112,1600.0,0.0,0.0,42,48,0.0,264.8654554020448,2728.320869395298,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,121706,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1406.71132050343,1600.0,51238.612258181165,1,1,1,2,150.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035129757045919946,24399.33917056246,7,4,7,7_1,7_0,7_0_0 +21686,2,36.0,0.0,8,400,0.0,,,0,52,0.0,0.0,,180.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,1,10.0,1,2000.0,6,121707,2,2,0,0,2,,0.0,,32,1.0,0.0,4.0,5.0,2.8,4,3,6.69311278593562,0.0,9329.147777777778,0,1,0,1,55.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019294366890485293,3331.8384920634926,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +21687,2,77.0,0.0,1,300,287.0,0.0,0.0,78,75,2109.365702073203,0.0,489.39255594778155,2497.0,290.9737373332694,0.0,60,2,2,2,1,1,2,2,2,0,,1,,1,121708,1,3,4,0,2,,248.0,178.0,41,1.0,3.0,3.0,3.0,2.0,3,3,1201.49241120504,287.0,37819.790647646754,5,5,2,3,80.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.06602363358548548,18909.895323823377,5,3,5,5_1,5_0,5_1_0 +21688,2,86.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,792.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,121709,2,1,0,0,2,,255.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2084.49597389275,0.0,38852.21006427598,0,5,0,1,93.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020384940745706303,38852.21006427598,9,5,9,9_0,9_3,9_0_1 +21689,2,69.0,0.0,7,111,2345.0,0.0,0.0,86,74,0.0,0.0,3998.6952742074836,2345.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,121710,2,3,0,0,1,,318.0,700.0,41,0.0,0.0,3.0,2.0,1.5,2,2,527.032532946581,2345.0,30806.44062834162,5,5,2,3,90.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07612044599020061,20537.627085561082,5,3,5,5_0,5_2,5_0_0 +21690,2,60.0,0.0,6,111,1145.0,0.0,0.0,54,65,0.0,0.0,1952.45462216101,1205.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,121711,2,1,1,0,1,,314.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,2905.99580323278,1145.0,53201.57365202528,1,1,0,1,73.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022649705963239453,35467.71576801685,9,5,9,9_1,9_3,9_0_0 +21691,2,61.0,0.0,6,111,0.0,0.0,350.0,0,74,0.0,0.0,220.61140164516033,350.0,0.0,418.8562516476383,10,0,0,0,0,0,0,0,0,0,,2,,4,121712,2,1,0,1,1,,0.0,,31,0.0,0.0,3.0,3.0,2.0,3,3,1672.01595281156,0.0,36976.10460160026,0,5,0,1,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009465572530451265,18488.05230080013,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +21692,2,24.0,0.0,6,112,944.0,0.0,0.0,0,38,0.0,0.0,1609.7093129432258,3244.0,3186.855218411998,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,121713,2,1,1,0,1,,0.0,,22,1.0,0.0,6.0,3.0,2.0,3,3,1472.74249439893,944.0,59626.97609715625,0,2,0,1,130.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054404905503076716,29813.488048578125,8,4,8,8_1,8_1,8_0_0 +21693,2,41.0,0.0,8,111,1500.0,0.0,0.0,46,34,0.0,463.51454695357836,2557.8008150580918,1850.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,121714,2,2,3,0,1,,270.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,804.129518519565,1500.0,53608.47947730813,4,1,1,2,92.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034509466003099086,25527.847370146726,7,4,7,7_1,7_3,7_0_0 +21694,1,76.0,104.0,2,111,540.0,0.0,0.0,86,77,0.0,492.6497470478033,920.8082934209131,912.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121715,2,1,0,1,1,,0.0,219.0,41,0.0,5.0,1.0,2.0,1.5,2,2,982.607921758211,540.0,12743.452990749942,6,5,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07156616033833146,8495.635327166628,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21695,2,80.0,0.0,9,112,700.0,0.0,0.0,75,77,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,121716,2,1,0,0,1,,400.0,666.0,41,0.0,3.0,3.0,2.0,1.5,2,2,2131.3143410452,700.0,48947.0723356264,5,5,2,3,67.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014301161777361321,32631.381557084267,8,4,8,8_0,8_1,8_0_0 +21696,2,61.0,0.0,6,111,1100.0,,,52,47,0.0,0.0,,1180.0,110.84713803172167,,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,121717,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,51.27184356479189,1100.0,65109.0,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018123454514736827,26043.6,7,4,7,7_1,7_2,7_0_0 +21697,2,89.0,0.0,6,111,660.0,,,0,77,0.0,0.0,,968.0,426.76148142212844,,71,0,0,0,0,0,0,0,0,0,,1,,4,121718,1,3,0,0,2,,500.0,,21,2.0,9.0,8.0,3.0,2.0,3,3,89.65961058390245,660.0,11852.533333333333,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08167030395752245,5926.266666666666,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +21698,2,41.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,550.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,60.0,2,,2,121719,2,1,0,1,2,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,803.434844292625,0.0,51006.6982525134,0,1,1,2,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010782897518227388,51006.6982525134,10,5,10,10_0,10_4,10_0_1 +21699,2,79.0,0.0,1,111,664.0,743.0,0.0,0,77,0.0,0.0,1132.2531607990486,1407.0,0.0,1410.5885076192633,70,0,0,0,0,0,0,0,0,0,,1,,1,121720,2,1,1,0,1,,160.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,211.910799222456,664.0,21834.532797387186,0,5,0,1,70.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06443920797647512,21834.532797387186,6,3,6,6_1,6_2,6_1_0 +21700,2,54.0,0.0,5,111,700.0,0.0,0.0,75,34,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,15.0,2,,3,121721,1,2,0,0,2,,0.0,537.0,42,1.0,5.0,3.0,3.0,2.0,3,2,1991.89133571614,700.0,13267.971315840672,6,1,2,3,70.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0527586307911495,6633.985657920336,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +21701,2,66.0,0.0,7,111,420.0,1220.0,0.0,77,78,0.0,0.0,716.1842282162656,1640.0,0.0,2316.1749384865425,71,0,0,0,0,0,0,0,0,0,,1,,5,121722,2,1,2,0,1,,600.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,892.663427388016,420.0,22899.130749260596,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07161843905594342,11449.565374630298,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +21702,2,76.0,0.0,2,221,399.0,0.0,0.0,77,72,1387.9626319641677,0.0,680.3750168054524,1803.0,121.93185183489385,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121723,2,1,1,0,1,,229.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1670.09654325281,399.0,22099.55750626845,5,5,0,1,90.0,1,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08158534393679992,14733.0383375123,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +21703,1,32.0,360.0,8,111,600.0,,,0,67,0.0,0.0,,680.0,110.84713803172167,,43,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,121724,2,1,0,0,1,,350.0,640.0,32,1.0,0.0,3.0,2.0,1.3,1,1,115.2552315404132,600.0,23039.76665086391,0,1,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029514187808603626,17722.897423741466,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +21704,2,77.0,0.0,8,111,1200.0,,,0,78,0.0,0.0,,1332.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,121725,2,1,0,0,1,,120.0,,21,2.0,0.0,6.0,4.0,2.3,3,3,95.64957034683432,1200.0,24778.21345543777,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05375690230433794,10773.136284972945,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +21705,2,59.0,0.0,1,112,429.0,634.0,0.0,52,38,0.0,238.3789098618403,731.5310331066142,1243.0,0.0,1203.6515663938262,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,121726,2,1,2,0,1,,225.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,528.528207182966,429.0,49294.29716046403,1,1,0,1,95.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025215898625225455,32862.86477364269,8,4,8,8_1,8_1,8_1_0 +21706,2,28.0,0.0,9,112,917.0,0.0,0.0,55,38,0.0,0.0,1563.66889827218,917.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,121727,2,1,1,0,1,,332.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1229.25543232347,917.0,33562.40240372136,1,1,1,2,150.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027322239599222614,18645.779113178534,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +21707,2,44.0,0.0,9,300,2208.0,0.0,0.0,62,43,0.0,0.0,3765.082799765511,2208.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,3.0,1,2008.0,6,121728,2,1,1,0,1,,420.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,1059.55306979816,2208.0,67914.91657529803,1,1,1,2,121.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03251126720522384,27165.966630119212,7,4,7,7_1,7_0,7_0_0 +21708,2,43.0,0.0,9,300,788.0,,,52,37,0.0,0.0,,788.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,121729,2,1,0,0,1,,269.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,99.56012851584815,788.0,68338.50802361744,1,1,1,2,136.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011530834119581177,32542.146677913064,8,4,8,8_1,8_1,8_0_0 +21709,2,70.0,0.0,7,111,1400.0,0.0,0.0,0,74,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,121730,2,2,0,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1436.92273873016,1400.0,40491.81682392503,0,5,0,1,98.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03457488721950344,40491.81682392503,9,5,9,9_0,9_3,9_0_0 +21710,2,29.0,0.0,7,111,864.0,0.0,0.0,43,33,0.0,0.0,1473.293269473461,864.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,5,121731,2,1,0,0,1,,0.0,560.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1429.535958616,864.0,42755.39981136482,1,1,2,3,56.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020207973818790956,28503.599874243213,8,4,8,8_0,8_3,8_0_0 +21711,2,74.0,0.0,2,111,300.0,1000.0,0.0,0,78,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,44,0,0,0,0,0,0,0,0,0,,2,,2,121732,2,2,0,1,1,,180.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1855.0442371451,300.0,19055.627482188404,0,5,0,1,85.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06822131683751326,19055.627482188404,5,3,5,5_0,5_3,5_0_1 +21712,2,40.0,0.0,8,111,0.0,,,0,56,0.0,0.0,,223.0,0.0,,31,0,0,0,0,0,0,0,0,1,5.0,2,2000.0,6,121733,2,1,0,0,1,,276.0,548.0,12,1.0,0.0,2.0,1.0,1.0,1,1,150.77820633363956,0.0,19215.703835653163,0,1,2,3,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011605091434966946,19215.703835653163,5,3,5,5_0,5_2,5_0_0 +21713,2,70.0,0.0,1,111,0.0,0.0,920.0,0,75,0.0,0.0,579.8928271815643,920.0,0.0,1100.9935757595065,33,2,2,2,1,1,2,1,2,0,,2,,1,121734,1,1,0,0,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1974.52820317439,0.0,41187.25472503456,0,5,0,1,103.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0.022337007070315926,41187.25472503456,9,5,9,9_0,9_2,9_1_0 +21715,2,77.0,0.0,6,111,340.0,1600.0,0.0,75,74,0.0,0.0,579.7681847465008,1940.0,0.0,3037.6064767036623,12,0,0,0,0,0,0,0,0,0,,1,,4,121736,2,1,2,0,2,,340.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1509.29418528967,340.0,74284.22475055994,5,5,0,1,92.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02611590827681589,49522.816500373294,10,5,10,10_1,10_3,10_0_0 +21716,2,58.0,0.0,9,111,120.0,,,0,67,0.0,0.0,,432.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,3,30.0,1,2004.0,6,121737,2,1,0,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,33.90180321029502,120.0,17704.649178396237,0,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02440037052680715,17704.649178396237,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +21717,2,56.0,0.0,2,120,180.0,750.0,0.0,77,69,0.0,0.0,306.936097806971,930.0,0.0,1423.8780359548418,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,121738,2,1,0,0,1,,210.0,480.0,42,1.0,2.0,3.0,2.0,1.5,2,2,1344.28407385244,180.0,18822.15821740659,5,1,2,3,60.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04940984924565892,12548.105478271062,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +21718,2,85.0,0.0,1,120,240.0,1500.0,0.0,0,86,0.0,0.0,409.2481304092947,1740.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,2,,1,121739,1,2,0,0,2,,120.0,550.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1608.07792654739,240.0,21061.735685767453,0,5,2,3,50.0,0,3,9,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.08261427386422912,21061.735685767453,5,3,5,5_0,5_1,5_1_0 +21719,2,85.0,0.0,2,111,268.0,87.0,0.0,77,74,622.2628821115949,0.0,456.9937456237124,945.0,0.0,165.16985217076163,50,2,1,2,2,2,2,2,1,0,,2,,2,121740,2,2,0,1,1,525.0,0.0,384.0,41,0.0,3.0,3.0,2.0,1.5,2,2,1520.37416144482,268.0,27891.758649400115,5,5,2,3,60.0,9,7,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03388097580646191,18594.505766266742,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +21720,2,55.0,0.0,6,111,600.0,,,77,21,0.0,0.0,,900.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,4,121741,2,3,0,0,2,,270.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,132.27190115655605,600.0,34359.66782784185,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026193501186024985,22906.44521856123,6,3,6,6_1,6_2,6_0_0 +21721,2,46.0,0.0,1,120,1178.0,0.0,0.0,43,34,0.0,238.3789098618403,2008.726240092288,1442.0,116.38949493330776,0.0,20,0,0,0,0,0,0,0,0,2,12.0,1,,1,121742,2,1,4,0,1,,221.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,186.891933877094,1178.0,73608.85143614886,1,1,1,2,150.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019590035326809113,35051.83401721374,9,5,9,9_1,9_0,9_1_0 +21722,2,44.0,0.0,9,111,0.0,0.0,0.0,54,37,0.0,0.0,0.0,2626.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,121743,2,2,1,0,1,,255.0,880.0,43,2.0,0.0,7.0,6.0,2.8999999999999995,3,2,1454.1182332939,0.0,26735.187559923103,1,1,2,3,140.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09822261370391347,9219.030193076933,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21723,1,86.0,147.0,2,111,184.0,0.0,0.0,0,77,0.0,0.0,313.75689998045925,184.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121744,1,3,0,1,1,105.0,0.0,418.0,11,0.0,5.0,6.0,1.0,1.0,1,1,315.692624603106,184.0,13133.723139806069,0,5,2,3,96.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014009736465536377,13133.723139806069,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +21724,2,85.0,0.0,7,112,0.0,0.0,0.0,0,74,1054.6828510366015,0.0,0.0,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,121745,2,1,1,0,1,,0.0,980.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1989.03105959036,0.0,48119.71072766246,0,5,2,3,115.0,9,0,9,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02078150481119024,48119.71072766246,10,5,10,10_1,10_0,10_0_0 +21725,2,83.0,0.0,6,111,0.0,,,78,78,0.0,0.0,,595.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,1,,4,121746,2,1,0,0,2,,339.0,,41,0.0,12.0,4.0,2.0,1.5,2,2,82.41640104595002,0.0,19622.505454130005,5,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030322325627116523,13081.670302753337,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +21726,2,72.0,0.0,9,300,486.0,0.0,0.0,71,63,1898.4291318658827,0.0,828.7274640788218,2406.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,121747,2,1,1,0,1,,390.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1025.41947500547,486.0,23367.6557264956,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10296283153777973,15578.437150997066,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +21727,2,53.0,0.0,1,112,388.0,0.0,0.0,74,45,0.0,331.081819252556,661.6178108283598,698.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,1,7.0,1,,1,121748,2,1,2,0,1,,475.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1133.54635980873,388.0,79495.8469722592,5,1,0,1,130.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008780332892655052,52997.23131483947,10,5,10,10_1,10_0,10_1_0 +21728,2,75.0,0.0,7,111,236.0,839.0,0.0,0,75,0.0,0.0,402.42732823580644,1075.0,0.0,1592.844896221483,60,1,2,2,1,1,2,2,2,0,,2,,5,121749,2,2,0,0,1,,0.0,530.0,11,0.0,1.0,2.0,1.0,1.0,1,1,935.868387218105,236.0,24960.264745979468,0,5,2,3,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.04306845343750443,24960.264745979468,7,4,7,7_0,7_4,7_0_0 +21729,2,64.0,0.0,2,111,200.0,800.0,0.0,0,78,0.0,0.0,341.04010867441224,1000.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,2,121750,2,1,2,0,1,,700.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1768.64069311197,200.0,15665.743418269903,0,5,0,1,56.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06383354899287877,15665.743418269903,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +21730,2,30.0,0.0,2,111,340.0,350.0,0.0,85,38,0.0,0.0,579.7681847465008,690.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,121751,1,2,0,1,1,660.0,373.0,350.0,42,1.0,0.0,2.0,2.0,1.5,2,2,434.394327592296,340.0,24779.514946281586,6,1,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027845581380257865,16519.676630854392,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +21731,0,86.0,0.0,2,400,234.0,0.0,0.0,71,71,0.0,0.0,399.0169271490623,339.0,145.4868686666347,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,121752,1,1,4,0,2,,120.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1183.59436566657,234.0,19717.960692140437,5,5,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017192447296800074,13145.307128093626,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +21732,1,39.0,366.0,2,111,105.0,90.0,0.0,0,56,0.0,0.0,179.0460570540664,195.0,0.0,170.865364314581,60,1,2,2,2,1,2,2,2,0,,2,,2,121753,1,2,0,1,1,1119.0,197.0,342.0,32,1.0,0.0,3.0,2.0,1.5,2,1,271.166477841089,105.0,12103.496295253595,0,1,2,3,63.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01611104719191508,8068.997530169064,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21733,2,60.0,0.0,2,111,400.0,90.0,0.0,75,75,0.0,0.0,682.0802173488245,490.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,121754,1,2,0,1,2,,0.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,768.503952656453,400.0,73525.07350114542,7,7,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006664393201760845,36762.53675057271,9,5,9,9_0,9_4,9_0_1 +21734,2,60.0,0.0,6,112,510.0,0.0,0.0,0,78,0.0,529.7309108040896,869.6522771197511,1090.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,121755,2,1,2,0,1,,110.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,587.694469714079,510.0,32557.393700245506,0,7,0,1,100.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033479338365828115,32557.393700245506,8,4,8,8_1,8_1,8_0_0 +21735,2,41.0,0.0,8,112,1268.0,0.0,0.0,37,43,0.0,0.0,2162.1942889957736,1278.0,13.855892253965209,0.0,33,2,2,2,2,1,2,2,2,0,,1,2000.0,6,121756,2,1,1,0,1,,260.0,1083.0,43,2.0,0.0,4.0,5.0,2.6,3,2,520.684040672851,1268.0,120945.04237099836,1,1,2,3,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.010566782853982066,46517.32398884552,10,5,10,10_1,10_0,10_0_0 +21736,2,46.0,0.0,1,111,0.0,0.0,0.0,85,31,0.0,0.0,0.0,3915.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,4.0,1,,1,121757,2,1,1,0,1,,401.0,,42,1.0,0.0,7.0,5.0,2.5999999999999996,3,2,707.026268170253,0.0,136483.47758101032,5,1,0,1,150.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02868479078484966,52493.645223465515,10,5,10,10_1,10_4,10_1_0 +21737,2,60.0,0.0,6,111,1600.0,0.0,0.0,74,75,0.0,0.0,2728.320869395298,1700.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,121758,2,1,2,0,1,,400.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,2391.03780433716,1600.0,60447.840042387106,5,5,0,1,85.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028123420105795834,30223.920021193553,8,4,8,8_1,8_2,8_0_0 +21738,2,43.0,0.0,6,111,360.0,,,0,56,0.0,0.0,,584.0,310.3719864888207,,70,0,0,0,0,0,0,0,0,3,60.0,1,,4,121759,1,2,0,0,2,,360.0,300.0,32,1.0,1.0,3.0,3.0,1.6,1,1,59.43046533360442,360.0,8593.0,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0679622948911905,5370.625,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21739,1,33.0,459.0,2,111,800.0,1270.0,0.0,69,69,0.0,0.0,1364.160434697649,2070.0,0.0,2411.100140883532,71,2,2,2,1,1,1,1,2,0,,2,,2,121760,1,3,0,0,1,,891.0,438.0,43,2.0,0.0,3.0,5.0,2.4,2,2,289.76124063285,800.0,23332.97420385398,4,4,2,3,65.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.0887156511602405,9722.072584939158,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21740,2,80.0,0.0,5,111,232.0,75.0,0.0,0,77,0.0,0.0,395.6065260623182,307.0,0.0,142.38780359548417,41,0,0,0,0,0,0,0,0,0,,2,,3,121761,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,825.070516670401,232.0,45738.23950860063,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006712107927596812,45738.23950860063,10,5,10,10_0,10_4,10_0_0 +21741,2,45.0,0.0,1,111,650.0,1680.0,0.0,0,47,0.0,0.0,1108.3803531918397,2330.0,0.0,3189.4868005388457,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,121762,2,1,0,1,1,,0.0,424.0,32,1.0,0.0,3.0,3.0,2.0,3,3,874.754392631505,650.0,31054.11957949968,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07503030295336871,15527.05978974984,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +21742,2,54.0,0.0,5,211,0.0,600.0,0.0,85,64,0.0,0.0,0.0,4157.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,121763,2,1,2,0,1,,800.0,,42,2.0,0.0,4.0,4.0,2.3,3,3,2285.66988921038,0.0,42209.274543664156,6,1,0,1,100.0,1,2,2,0,1,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09848546427159546,18351.858497245288,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +21743,2,53.0,0.0,2,111,0.0,0.0,1075.0,0,31,0.0,0.0,677.5921621958496,1075.0,0.0,1286.487058632032,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,121764,2,1,0,0,1,,0.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,2972.471528852,0.0,58090.67198016522,0,1,1,2,110.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01850555284275337,58090.67198016522,10,5,10,10_0,10_2,10_0_1 +21744,1,77.0,31.0,5,111,135.0,645.0,0.0,0,78,0.0,0.0,230.20207335522826,780.0,0.0,1224.535110921164,50,0,0,0,0,0,0,0,0,0,,2,,3,121765,2,3,0,0,1,,0.0,399.0,11,0.0,3.0,2.0,1.0,1.0,1,1,365.239871721414,135.0,14312.367048966551,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0544983228372641,14312.367048966551,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +21745,2,76.0,0.0,2,112,1670.0,0.0,0.0,77,75,4113.2631190427455,0.0,2847.6849074313423,5570.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,121766,2,2,3,0,1,,782.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1001.60941280149,1670.0,58875.818304174405,5,5,0,1,280.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09460590375531268,39250.54553611627,9,5,9,9_1,9_0,9_0_1 +21746,1,68.0,271.0,2,111,320.0,80.0,0.0,0,78,0.0,0.0,545.6641738790596,400.0,0.0,151.8803238351831,50,1,2,2,1,1,2,2,2,0,,2,,2,121767,2,1,0,1,1,524.0,145.0,359.0,11,0.0,3.0,4.0,1.0,1.0,1,1,410.140235552319,320.0,11013.071075760947,0,5,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.036320477480652424,11013.071075760947,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +21747,2,35.0,0.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,899.0,0.0,0.0,12,2,2,2,1,1,2,2,2,2,25.0,2,,2,121768,1,3,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1434.20712534423,0.0,36360.63806362971,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.024724538618568374,36360.63806362971,9,5,9,9_0,9_4,9_0_1 +21749,2,49.0,0.0,6,111,600.0,,,85,21,0.0,0.0,,900.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,4,121770,2,2,0,0,2,,600.0,,42,2.0,1.0,5.0,5.0,2.8,4,3,112.09983132322947,600.0,18660.603921568625,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04822995031579585,6664.501400560223,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21750,2,43.0,0.0,7,111,400.0,,,0,63,0.0,0.0,,400.0,0.0,,43,0,0,0,0,0,0,0,0,2,25.0,2,,5,121771,2,2,0,0,2,,300.0,600.0,12,1.0,0.0,1.0,1.0,1.0,1,1,62.44097712331068,400.0,24487.006836411903,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016335193707922052,24487.006836411903,7,4,7,7_0,7_2,7_0_0 +21751,2,46.0,0.0,2,111,80.0,800.0,0.0,0,54,0.0,0.0,136.4160434697649,880.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,121772,2,1,0,0,1,,210.0,,32,1.0,0.0,5.0,4.0,2.1,2,1,1603.02970487023,80.0,67086.11314759501,0,1,0,1,90.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013117468857734045,31945.768165521433,8,4,8,8_0,8_2,8_0_1 +21752,1,44.0,107.0,1,111,1600.0,1950.0,0.0,85,63,0.0,0.0,2728.320869395298,3994.0,615.2016160760553,3702.0828934825886,42,2,2,2,1,2,2,2,2,0,,1,,1,121773,1,3,2,0,2,,1180.0,,42,2.0,1.0,7.0,5.0,3.0,5,4,238.453349298089,1600.0,33631.12919177589,6,4,1,2,160.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.11875902165594508,11210.376397258631,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +21753,2,49.0,0.0,7,120,900.0,0.0,0.0,85,62,2636.7071275915036,0.0,1534.680489034855,3400.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,,5,121774,2,2,3,0,1,,500.0,,42,1.0,0.0,6.0,5.0,2.8,4,3,1481.68434237105,900.0,47680.12284587593,6,1,0,1,160.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.07130854110821741,17028.615302098548,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +21754,2,70.0,0.0,6,112,2500.0,0.0,0.0,77,78,0.0,463.51454695357836,4263.001358430153,2850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,121775,2,2,3,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,774.164577126442,2500.0,42635.10170409128,5,5,0,1,80.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06684632816828752,28423.401136060853,8,4,8,8_1,8_0,8_0_0 +21755,2,45.0,0.0,1,112,1300.0,,,46,47,0.0,0.0,,1576.0,382.4226262094398,,41,0,0,0,0,0,0,0,0,0,,1,,1,121776,2,1,0,0,2,,1320.0,,43,3.0,0.0,4.0,5.0,2.8,4,3,79.00697918652779,1300.0,6983.0996141026535,4,4,0,1,136.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22568774428152277,2493.964147893805,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +21756,1,38.0,487.0,2,211,360.0,0.0,0.0,0,52,0.0,0.0,613.872195613942,540.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,2,5.0,8,,2,121777,2,1,0,1,1,886.0,416.0,443.0,32,1.0,1.0,5.0,5.0,2.4,2,1,2615.32296803464,360.0,27878.899354306057,0,1,2,3,88.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019369487766976494,11616.208064294191,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +21757,2,51.0,0.0,1,111,869.0,0.0,0.0,0,35,0.0,0.0,1481.8192721903213,869.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,20.0,2,,1,121778,2,2,0,0,1,,0.0,,32,1.0,1.0,3.0,2.0,1.5,2,2,685.718369527369,869.0,51199.622453059776,0,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01697278140667358,34133.081635373186,9,5,9,9_0,9_4,9_1_0 +21759,2,43.0,0.0,6,112,1600.0,0.0,0.0,42,33,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,121780,2,2,3,0,1,,360.0,700.0,43,2.0,0.0,6.0,5.0,2.4,2,2,837.20422164363,1600.0,115184.15821150341,1,1,2,3,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01389079908942034,47993.39925479309,10,5,10,10_1,10_0,10_0_0 +21760,2,32.0,0.0,9,111,402.0,,,43,43,0.0,0.0,,402.0,0.0,,33,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,121781,2,3,0,0,2,,365.0,630.0,43,2.0,0.0,3.0,2.0,1.5,2,2,248.81176204572492,402.0,31859.99742892205,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012617703466450067,21239.998285948033,5,3,5,5_0,5_2,5_0_0 +21761,2,28.0,0.0,9,111,552.0,0.0,0.0,0,64,0.0,0.0,941.2706999413778,602.0,69.27946126982604,0.0,31,2,2,2,2,1,2,2,2,2,5.0,2,2009.0,6,121782,2,2,0,0,1,479.0,156.0,296.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1602.57762542405,552.0,22967.50628600686,0,1,2,3,45.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.026210943082086945,22967.50628600686,6,3,6,6_0,6_2,6_0_0 +21762,2,48.0,0.0,8,111,240.0,0.0,0.0,0,43,0.0,0.0,409.2481304092947,240.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,8.0,2,1999.0,6,121783,2,1,0,1,1,,0.0,505.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1008.43125049292,240.0,36912.454977421265,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006501870443101225,36912.454977421265,9,5,9,9_0,9_4,9_0_0 +21763,2,44.0,0.0,2,111,600.0,1116.0,0.0,85,37,0.0,0.0,1023.1203260232367,1716.0,0.0,2118.7305175008046,41,0,0,0,0,0,0,0,0,1,5.0,1,,2,121784,2,1,1,0,1,,720.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,3,2,835.865083968622,600.0,20683.853266877504,6,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08296326500961745,7660.686395139817,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +21764,2,50.0,0.0,7,111,900.0,,,0,37,0.0,0.0,,900.0,0.0,,41,0,0,0,0,0,0,0,0,2,25.0,1,,5,121785,2,2,0,0,2,,250.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,42.0977980422214,900.0,66416.0279357073,0,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013550945878173066,44277.3519571382,10,5,10,10_1,10_2,10_0_0 +21765,2,43.0,0.0,2,211,0.0,0.0,1530.0,56,65,0.0,0.0,964.386984334558,1530.0,0.0,1831.0001857739617,60,0,0,0,0,0,0,0,0,2,3.0,1,,2,121786,2,2,3,0,1,,600.0,370.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,1097.76153146188,0.0,17874.969098439535,1,1,2,3,94.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08559455356672853,6874.988114784437,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +21766,1,62.0,139.0,9,111,175.0,263.0,0.0,0,75,0.0,0.0,298.4100950901107,508.0,96.99124577775646,499.3065646081645,31,0,0,0,0,0,0,0,0,0,,2,2005.0,6,121787,2,2,0,0,1,,130.0,423.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1325.83569520959,175.0,11019.370750092465,0,5,2,3,69.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04610063600916026,11019.370750092465,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +21767,2,54.0,0.0,6,221,1000.0,0.0,0.0,56,47,1898.4291318658827,132.4327277010224,1705.2005433720612,3000.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,121788,2,1,2,0,1,,150.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1717.94445299696,1000.0,37803.51118828498,1,1,0,1,155.0,1,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07935770794035865,25202.34079218999,7,4,7,7_1,7_1,7_0_0 +21768,2,64.0,0.0,5,111,1907.0,0.0,0.0,0,74,0.0,0.0,3251.8174362105206,1977.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,121789,2,2,1,0,1,,232.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1122.58048817109,1907.0,36251.26668075438,0,5,0,1,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05453602538665441,36251.26668075438,9,5,9,9_1,9_3,9_0_0 +21769,2,64.0,0.0,2,111,300.0,300.0,0.0,0,75,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,70,0,0,0,0,0,0,0,0,0,,2,,2,121790,1,2,0,1,1,576.0,0.0,219.0,11,0.0,4.0,2.0,1.0,1.0,1,1,411.353213200567,300.0,23848.046109510087,0,5,2,3,50.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02515929385765205,23848.046109510087,6,3,6,6_0,6_2,6_0_1 +21770,2,75.0,0.0,2,111,290.0,0.0,0.0,0,52,0.0,0.0,494.50815757789775,290.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,2,,2,121791,2,1,0,1,1,545.0,0.0,287.0,11,0.0,2.0,2.0,1.0,1.0,1,1,411.226022504225,290.0,25845.72123556765,0,5,2,3,39.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011220425901712343,25845.72123556765,7,4,7,7_0,7_4,7_0_1 +21771,2,65.0,0.0,1,300,2000.0,0.0,0.0,71,71,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,121792,2,1,1,0,1,,300.0,,41,0.0,4.0,9.0,2.0,1.5,2,2,1060.95968480531,2000.0,35411.610752099165,5,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05647865085836125,23607.740501399443,6,3,6,6_1,6_0,6_1_0 +21772,1,33.0,325.0,1,111,1800.0,0.0,0.0,81,52,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,121793,1,3,0,0,1,,0.0,520.0,43,2.0,0.0,2.0,3.0,1.8,2,2,756.386652660527,1800.0,15617.528856322344,4,4,2,3,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.11525510959893745,8676.40492017908,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +21773,2,87.0,0.0,2,120,500.0,0.0,0.0,0,75,0.0,0.0,852.6002716860306,6153.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121794,2,1,2,0,1,,600.0,,11,0.0,6.0,8.0,1.0,1.0,1,1,1365.93932871755,500.0,32532.177979152155,0,5,0,1,157.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1891358151287342,32532.177979152155,8,4,8,8_1,8_1,8_0_1 +21774,2,62.0,0.0,5,111,1730.0,0.0,0.0,75,74,0.0,264.8654554020448,2949.996940033666,1990.0,83.13535352379125,0.0,41,2,1,2,2,1,2,2,2,0,,1,,3,121795,2,2,2,0,1,,150.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1455.43656368003,1730.0,56396.80551707769,5,5,0,1,150.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.035285686516364864,37597.87034471846,9,5,9,9_1,9_2,9_0_0 +21775,2,34.0,0.0,5,111,744.0,800.0,0.0,55,62,0.0,953.5156394473612,1268.6692042688135,2324.0,83.13535352379125,1518.8032383518312,43,0,0,0,0,0,0,0,0,2,15.0,1,,3,121796,2,2,3,0,1,,321.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,255.5469006717,744.0,40265.71922136887,1,1,1,2,90.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05771658981734174,16777.383008903696,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +21776,2,79.0,0.0,2,111,178.0,0.0,0.0,0,77,0.0,0.0,303.5256967202269,178.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121797,2,1,0,1,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1557.17375268274,178.0,10377.0,0,5,0,1,36.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017153319841958177,10377.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +21777,2,58.0,0.0,7,112,1080.0,,,62,74,0.0,0.0,,1146.0,91.44888887617039,,20,0,0,0,0,0,0,0,0,0,,1,,5,121798,2,3,0,0,2,,760.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,89.21141930352901,1080.0,50091.0,4,5,0,1,80.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022878361382284242,33394.0,8,4,8,8_1,8_1,8_0_0 +21778,2,44.0,0.0,2,111,400.0,1200.0,0.0,34,38,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,2,18.0,1,,2,121799,2,3,3,0,1,,229.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1191.87427276518,400.0,73837.33334962431,1,1,1,2,118.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021669254934003394,35160.63492839253,9,5,9,9_1,9_3,9_0_1 +21779,2,63.0,0.0,2,111,274.0,168.0,0.0,0,56,0.0,0.0,467.22494888394476,442.0,0.0,318.9486800538846,50,0,0,0,0,0,0,0,0,0,,2,,2,121800,2,1,0,1,1,1079.0,0.0,251.0,11,0.0,3.0,3.0,1.0,1.0,1,1,483.485046859126,274.0,13921.246703146006,0,5,2,3,56.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031750029966792714,13921.246703146006,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +21780,1,37.0,80.0,9,211,360.0,,,0,68,0.0,0.0,,492.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,121801,2,2,0,0,2,,160.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,108.79950803644512,360.0,12361.006329113925,0,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03980258458740455,12361.006329113925,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +21781,1,69.0,150.0,2,112,800.0,0.0,0.0,0,77,0.0,0.0,1364.160434697649,826.0,36.025319860309544,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121802,2,1,0,0,1,,100.0,429.0,11,0.0,1.0,1.0,1.0,1.0,1,1,2300.23039258579,800.0,8902.734154884016,0,5,2,3,33.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0927804858181527,8902.734154884016,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21782,2,28.0,0.0,1,111,300.0,0.0,0.0,0,63,0.0,0.0,511.56016301161833,650.0,484.95622888878233,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,121803,1,3,0,0,2,,0.0,,22,1.0,5.0,1.0,4.0,2.5,4,4,794.358350012615,300.0,14872.017174080998,0,1,0,1,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043706243234631424,5948.806869632399,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +21783,2,90.0,0.0,2,400,267.0,0.0,0.0,78,72,1853.0777692713089,490.00109249378283,455.2885450803403,2499.0,145.4868686666347,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121804,2,2,2,0,1,,128.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1216.06265468826,267.0,26213.105589192764,5,5,0,1,81.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09533399205587823,17475.40372612851,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +21784,2,81.0,0.0,2,111,390.0,,,77,71,0.0,0.0,,522.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,121805,1,3,0,0,2,,420.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,108.5486051660345,390.0,21124.65420489037,5,5,0,1,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02471046365715926,10562.327102445184,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +21785,2,43.0,0.0,2,211,800.0,800.0,0.0,55,38,0.0,211.89236432163582,1364.160434697649,1824.0,88.67771042537734,1518.8032383518312,31,0,0,0,0,0,0,0,0,2,60.0,1,,2,121806,2,2,3,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,856.403903796188,800.0,102629.83067381088,1,1,0,1,125.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01777261043913472,48871.34793990994,10,5,10,10_1,10_1,10_0_1 +21786,2,50.0,0.0,8,111,900.0,,,56,63,0.0,0.0,,984.0,116.38949493330776,,42,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,121807,2,3,0,0,2,,360.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,108.47255125077358,900.0,44384.81882222544,1,1,1,2,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02216974240542056,19297.747314011063,5,3,5,5_1,5_2,5_0_0 +21787,2,74.0,0.0,6,111,500.0,,,0,86,0.0,0.0,,632.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,121808,2,3,0,0,2,,486.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,87.52851394772053,500.0,24567.056991869722,0,5,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02572550713783729,24567.056991869722,7,4,7,7_1,7_2,7_0_0 +21788,2,56.0,0.0,5,111,930.0,830.0,0.0,78,47,0.0,0.0,1585.836505336017,1760.0,0.0,1575.7583597900248,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,121809,2,1,2,0,1,,454.0,,42,2.0,3.0,4.0,3.0,2.0,3,3,594.204314228829,930.0,47245.51031723438,6,1,0,1,88.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03725221694468567,23622.75515861719,6,3,6,6_1,6_3,6_0_0 +21789,2,25.0,0.0,9,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,424.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2010.0,6,121810,2,1,0,0,1,,671.0,780.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1484.27636439868,0.0,20966.21384209862,0,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020223012280292548,13977.475894732414,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +21790,2,27.0,0.0,1,111,731.0,314.0,0.0,55,90,0.0,0.0,1246.5015972049766,1045.0,0.0,596.1302710530938,20,0,0,0,0,0,0,0,0,3,60.0,2,,1,121811,1,1,0,0,2,,0.0,992.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1134.10084854423,731.0,47907.202331472356,4,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021813004081715985,31938.134887648237,8,4,8,8_0,8_4,8_1_0 +21791,2,74.0,0.0,5,112,485.0,0.0,0.0,77,78,2636.7071275915036,0.0,827.0222635354497,3105.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121812,2,1,1,0,1,,156.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,757.850737033139,485.0,33868.46429011688,5,5,0,1,200.0,10,0,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09167820463905908,22578.97619341125,6,3,6,6_1,6_0,6_0_0 +21792,2,38.0,0.0,2,112,746.0,0.0,0.0,0,37,0.0,397.2981831030672,1272.0796053555575,1046.0,0.0,0.0,10,2,2,1,2,2,2,2,1,0,,1,,2,121813,2,2,3,0,1,,228.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,893.915578201177,746.0,49577.02799104592,0,4,1,2,86.0,6,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.021098481340771726,49577.02799104592,10,5,10,10_1,10_0,10_0_1 +21793,2,44.0,0.0,1,111,462.0,1000.0,0.0,38,35,0.0,0.0,787.8026510378922,1462.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,3,20.0,2,,1,121814,2,2,0,0,1,,394.0,995.0,43,2.0,0.0,3.0,4.0,2.1,2,2,2043.81109898206,462.0,66334.44351101865,1,1,2,3,109.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022039832138746305,31587.83024334221,8,4,8,8_0,8_3,8_1_0 +21794,2,59.0,0.0,5,111,1756.0,0.0,0.0,0,75,0.0,0.0,2994.3321541613395,1892.0,188.44013465392686,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,121815,1,2,2,0,2,,378.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,832.255981958262,1756.0,24841.69661406322,0,6,0,1,90.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07616226980764725,16561.131076042147,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +21795,2,65.0,0.0,7,300,920.0,0.0,0.0,0,74,0.0,0.0,1568.7844999022964,957.0,51.266801339671275,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,121816,2,1,1,0,1,,410.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,865.132067572735,920.0,16704.87076935219,0,5,0,1,78.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05728868024263753,16704.87076935219,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +21796,2,52.0,0.0,7,112,300.0,780.0,0.0,0,56,0.0,0.0,511.56016301161833,1080.0,0.0,1480.8331573930354,50,0,0,0,0,0,0,0,0,0,,2,,5,121817,2,2,0,0,1,,180.0,331.0,12,1.0,0.0,3.0,1.0,1.0,1,1,845.838259730347,300.0,16577.339709490483,0,1,2,3,71.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06514917465205246,16577.339709490483,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +21797,2,58.0,0.0,1,111,1342.0,0.0,0.0,52,38,0.0,1052.840185223128,2288.379129205306,2137.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,1.0,1,,1,121818,2,1,1,0,1,,420.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,1819.63018573905,1342.0,63856.425707032555,1,5,0,1,100.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03346570022262694,31928.212853516277,8,4,8,8_1,8_3,8_1_0 +21798,2,72.0,0.0,6,111,600.0,0.0,0.0,75,75,1265.6194212439218,66.2163638505112,1023.1203260232367,1950.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,121819,2,1,1,0,1,,150.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1022.55385716551,600.0,39814.602676342205,5,5,0,1,160.0,7,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04897700514185183,26543.068450894803,7,4,7,7_1,7_2,7_0_0 +21799,2,61.0,0.0,5,112,1370.0,0.0,0.0,0,75,2109.365702073203,0.0,2336.124744419724,3370.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121820,2,1,1,0,1,,271.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1181.42165498157,1370.0,38048.019944731364,0,5,0,1,150.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08857228325929363,38048.019944731364,9,5,9,9_1,9_0,9_0_0 +21800,2,61.0,0.0,1,111,483.0,0.0,0.0,0,74,0.0,0.0,823.6118624487056,861.0,0.0,0.0,20,1,2,2,1,2,2,2,2,0,,2,,1,121821,2,3,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,727.644906334002,483.0,59931.519162357916,0,5,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.014366397048396215,59931.519162357916,10,5,10,10_0,10_4,10_1_0 +21801,2,57.0,0.0,2,111,0.0,0.0,0.0,62,62,0.0,0.0,0.0,886.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,15.0,2,,2,121822,1,2,0,1,2,,178.0,500.0,43,3.0,2.0,5.0,3.0,2.0,3,3,289.395673885456,0.0,37186.81838478108,1,1,2,3,100.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02382564678785751,18593.40919239054,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +21802,2,47.0,0.0,7,112,540.0,1450.0,0.0,54,21,0.0,66.2163638505112,920.8082934209131,2040.0,0.0,2752.830869512694,50,2,2,2,2,1,2,2,2,2,15.0,1,,5,121823,2,1,3,0,1,,580.0,,43,3.0,0.0,6.0,3.0,2.0,3,3,612.634775813094,540.0,82042.99585431044,1,1,1,2,140.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.024865011068374104,41021.49792715522,9,5,9,9_1,9_2,9_0_0 +21803,2,56.0,0.0,5,111,1400.0,0.0,0.0,78,63,0.0,132.4327277010224,2387.2807607208856,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,121824,2,1,1,0,1,,400.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,604.168720102936,1400.0,8095.112276458128,6,4,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1852969975922679,5396.741517638752,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +21804,2,41.0,0.0,1,111,1300.0,0.0,0.0,54,48,3164.0485531098047,0.0,2216.7607063836795,4300.0,0.0,0.0,43,2,2,2,2,2,2,2,1,2,30.0,1,,1,121825,2,3,3,0,1,,120.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,350.318646623056,1300.0,56034.70096185004,1,1,1,2,150.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07673816271327223,21551.808062250017,6,3,6,6_1,6_3,6_1_0 +21805,0,36.0,0.0,5,111,360.0,,,0,52,0.0,0.0,,406.0,63.73710436823996,,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,121826,2,2,0,0,2,,80.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,120.73594301442641,360.0,20173.0,0,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020125910870966143,20173.0,5,3,5,5_1,5_3,5_0_0 +21806,2,56.0,0.0,8,300,600.0,0.0,0.0,21,42,263.6707127591504,238.3789098618403,1023.1203260232367,1150.0,166.2707070475825,0.0,30,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,121827,2,1,2,0,1,,203.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,1825.56742261875,600.0,20323.45772112235,1,1,1,2,180.0,0,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05658485951456945,10161.728860561176,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +21807,2,31.0,0.0,9,112,1200.0,0.0,0.0,43,47,0.0,0.0,2046.2406520464733,1270.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,121828,2,2,1,0,1,,400.0,650.0,43,2.0,0.0,4.0,2.0,1.5,2,2,440.207642803564,1200.0,44271.811829614446,1,1,2,3,90.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02868642478170427,29514.541219742965,8,4,8,8_1,8_1,8_0_0 +21808,1,55.0,421.0,2,111,200.0,0.0,0.0,0,55,0.0,0.0,341.04010867441224,200.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,121829,1,1,0,1,2,720.0,0.0,823.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1297.67343454063,200.0,7742.051749011238,0,4,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.025832945384993408,5161.367832674158,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21809,2,29.0,0.0,1,111,140.0,100.0,0.0,0,63,0.0,0.0,238.72807607208856,240.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,1,20.0,2,,1,121830,2,3,0,0,1,,0.0,280.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1070.51946840977,140.0,17285.99789954238,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01388406971901539,17285.99789954238,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +21810,2,47.0,0.0,8,111,707.0,0.0,0.0,34,42,1371.087706347582,198.6490915515336,1205.5767841640472,2157.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,121831,2,1,2,0,1,,430.0,,43,2.0,0.0,6.0,4.0,2.3,4,2,1261.12606461067,707.0,72591.59493543331,1,1,1,2,140.0,7,5,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02971418387925691,31561.56301540579,8,4,8,8_1,8_2,8_0_0 +21811,2,63.0,0.0,2,111,589.0,1388.0,0.0,77,74,0.0,0.0,1004.363120046144,1977.0,0.0,2635.1236185404273,31,0,0,0,0,0,0,0,0,0,,1,,2,121832,2,2,2,0,1,,286.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,337.005927271052,589.0,49921.64071641565,5,5,0,1,145.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03960206378693612,33281.09381094376,8,4,8,8_1,8_3,8_0_1 +21812,2,60.0,0.0,5,111,2500.0,0.0,0.0,72,54,0.0,158.91927324122688,4263.001358430153,2750.0,180.1265993015477,0.0,60,2,2,2,2,2,2,2,1,2,45.0,1,,3,121833,2,2,3,0,1,,287.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,732.08098837134,2500.0,45714.502796047775,5,1,0,1,103.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.060155964339565125,30476.335197365184,8,4,8,8_1,8_4,8_0_0 +21814,1,70.0,516.0,2,111,500.0,,,85,77,0.0,0.0,,800.0,415.67676761895626,,60,0,0,0,0,0,0,0,0,0,,2,,2,121835,1,1,0,0,2,,280.0,600.0,41,0.0,1.0,4.0,2.0,1.5,2,2,171.18084639214754,500.0,13939.868725868724,7,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05738934962245453,9293.245817245815,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21815,2,65.0,0.0,2,120,365.0,0.0,0.0,0,77,1898.4291318658827,0.0,622.3981983308023,2165.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121836,2,2,4,0,1,,210.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,872.701086448582,365.0,28547.911657759814,0,5,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07583742117303055,28547.911657759814,8,4,8,8_1,8_0,8_0_1 +21816,1,35.0,362.0,5,111,0.0,,,0,85,0.0,0.0,,265.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,,3,121837,2,3,0,0,2,,744.0,750.0,31,0.0,0.0,3.0,3.0,1.8,2,1,138.61473623688008,0.0,9179.79448453776,0,7,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028867748667615604,5099.8858247432,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +21817,2,50.0,0.0,6,111,2200.0,,,52,21,0.0,0.0,,2292.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,,4,121838,2,2,0,0,2,,380.0,834.0,43,2.0,0.0,5.0,4.0,2.5,4,3,57.75404699033384,2200.0,37230.14683863586,1,1,2,3,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06156301262882638,14892.058735454344,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +21818,1,51.0,404.0,7,221,698.0,1314.0,0.0,0,52,0.0,0.0,1190.2299792736987,2012.0,0.0,2494.6343189928825,71,1,2,2,2,1,2,2,2,0,,1,,5,121839,2,1,2,0,1,,578.0,369.0,32,2.0,2.0,5.0,5.0,3.0,5,3,483.543503082803,698.0,21567.26799671072,0,4,2,3,89.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.093289516331269,7189.0893322369075,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +21819,2,38.0,0.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1244.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121840,2,1,0,0,1,,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,547.65769338784,0.0,15997.850481007012,0,1,2,3,40.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07776044672232081,15997.850481007012,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +21820,2,43.0,0.0,7,400,1350.0,0.0,0.0,63,63,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,121841,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,899.322978044492,1350.0,46730.838319769326,1,1,0,1,170.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028888846178239586,22252.780152271105,6,3,6,6_1,6_0,6_0_0 +21821,1,25.0,130.0,5,111,0.0,0.0,0.0,54,55,0.0,0.0,0.0,891.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,3,121842,1,1,0,1,1,600.0,143.0,284.0,43,2.0,0.0,3.0,2.0,1.5,2,2,380.135497872962,0.0,28975.190208537933,4,2,2,3,52.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030750445245997203,19316.793472358622,5,3,5,5_0,5_2,5_0_0 +21822,0,85.0,0.0,2,112,0.0,0.0,0.0,0,78,1265.6194212439218,0.0,0.0,1922.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,121843,2,1,2,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2043.15855234597,0.0,20374.60789380852,0,5,0,1,64.0,9,3,5,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09433310373467661,20374.60789380852,5,3,5,5_1,5_1,5_0_1 +21823,0,46.0,0.0,7,111,500.0,,,85,68,0.0,0.0,,680.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,2,15.0,7,,5,121844,1,1,0,0,2,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,36.24370494558254,500.0,18820.0,6,1,5,0,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036131774707757705,12546.666666666666,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +21824,1,34.0,370.0,1,111,400.0,600.0,0.0,0,85,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,42,2,2,2,1,1,2,2,2,0,,2,,1,121845,1,3,0,0,2,,0.0,470.0,31,0.0,0.0,2.0,2.0,1.3,1,1,2335.63025798123,400.0,2941.2288152137626,0,6,2,3,47.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.3399939490689785,2262.4837040105867,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +21825,2,48.0,0.0,5,400,612.0,,,0,42,0.0,0.0,,612.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,3,121846,2,1,0,0,2,,280.0,,22,1.0,2.0,4.0,2.0,1.5,2,2,103.49500002007123,612.0,47281.8360186278,0,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012943659796943759,31521.224012418534,8,4,8,8_1,8_0,8_0_0 +21826,2,25.0,0.0,1,111,500.0,0.0,0.0,38,38,0.0,0.0,852.6002716860306,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,121847,2,1,0,0,1,,0.0,1210.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1108.79016864818,500.0,50204.46842389198,1,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009959272863489842,33469.645615927984,8,4,8,8_0,8_4,8_1_0 +21827,1,43.0,205.0,9,111,350.0,110.0,0.0,85,52,738.277995725621,0.0,596.8201901802214,1160.0,0.0,208.8354452733768,50,2,2,2,2,2,1,2,2,2,10.0,2,2006.0,6,121848,2,3,0,1,1,670.0,0.0,411.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1001.53910567902,350.0,22605.01700913769,6,1,2,3,68.0,9,7,7,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.05131604190039273,10764.29381387509,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +21828,1,50.0,170.0,1,111,1300.0,0.0,0.0,85,63,0.0,0.0,2216.7607063836795,1660.0,498.81212114274757,0.0,71,2,2,2,2,1,2,2,2,3,75.0,2,,1,121849,1,3,0,0,2,,0.0,550.0,42,2.0,1.0,2.0,8.0,4.1,6,5,884.542723481872,1300.0,24460.445242037087,6,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.0678646681846644,5965.962254155387,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +21829,2,68.0,0.0,1,212,1000.0,0.0,0.0,75,75,1054.6828510366015,662.163638505112,1705.2005433720612,2550.0,69.27946126982604,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,121850,2,1,2,0,1,,142.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,682.720215751022,1000.0,59470.84624220905,5,5,0,1,120.0,1,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04287815225656153,39647.23082813937,9,5,9,9_1,9_0,9_1_0 +21830,2,44.0,0.0,2,111,700.0,0.0,0.0,56,63,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,2,,2,121851,2,1,0,1,1,,240.0,330.0,43,2.0,2.0,3.0,4.0,2.3,3,2,256.789066322965,700.0,52980.15411725557,1,1,2,3,67.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013212494596575943,23034.849616198077,6,3,6,6_0,6_2,6_0_1 +21831,2,56.0,0.0,5,112,900.0,0.0,0.0,62,52,0.0,0.0,1534.680489034855,2100.0,1662.707070475825,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,121852,2,1,1,0,1,,350.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1231.72725157423,900.0,73149.75252281438,1,1,0,1,105.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028708231095450933,36574.87626140719,9,5,9,9_1,9_0,9_0_0 +21833,2,59.0,0.0,7,111,1529.0,0.0,0.0,48,37,0.0,529.7309108040896,2607.2516308158815,1989.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,80.0,1,,5,121854,2,1,1,0,1,,360.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,495.910603997957,1529.0,31555.300610116916,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06303219939417432,15777.650305058458,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +21834,2,48.0,0.0,6,111,0.0,0.0,0.0,45,45,0.0,0.0,0.0,1599.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,121855,2,2,2,0,1,,281.0,,43,3.0,2.0,4.0,4.0,2.5,4,4,242.706312304012,0.0,93604.28705923948,1,1,1,2,100.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01708255091978895,37441.71482369579,9,5,9,9_1,9_3,9_0_0 +21835,0,57.0,0.0,5,111,0.0,0.0,0.0,54,52,0.0,0.0,0.0,352.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,3,121856,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,3.0,2.0,3,3,1088.2373894772,0.0,41374.289412219776,1,1,5,0,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008507698984095128,20687.144706109888,5,3,5,5_0,5_4,5_0_0 +21836,1,68.0,270.0,6,111,320.0,510.0,0.0,0,86,0.0,0.0,545.6641738790596,830.0,0.0,968.2370644492923,71,0,0,0,0,0,0,0,0,0,,2,,4,121857,2,2,0,0,1,,0.0,334.0,11,0.0,4.0,2.0,1.0,1.0,1,1,1813.25018661548,320.0,18628.38021269945,0,5,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.044555672072559886,18628.38021269945,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +21837,0,36.0,0.0,5,111,300.0,,,55,21,0.0,0.0,,475.0,242.47811444439117,,50,0,0,0,0,0,0,0,0,0,,1,,3,121858,2,1,0,0,2,,250.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,74.67894457546068,300.0,56088.12,1,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008468816569355506,37392.08,9,5,9,9_1,9_2,9_0_0 +21838,1,65.0,148.0,5,120,365.0,0.0,0.0,0,75,0.0,397.2981831030672,622.3981983308023,725.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,121859,2,2,0,0,1,,290.0,515.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1769.07893595979,365.0,10629.365000692369,0,5,2,3,50.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06820727296059317,10629.365000692369,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +21839,2,55.0,0.0,2,111,2000.0,0.0,0.0,46,42,0.0,52.973091080408956,3410.4010867441225,2040.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,121860,1,1,1,0,1,,2000.0,,43,2.0,1.0,9.0,3.0,2.0,3,3,480.778989183655,2000.0,93812.7137816453,1,1,1,2,143.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021745453444063263,46906.35689082265,10,5,10,10_1,10_4,10_0_1 +21840,2,59.0,0.0,1,111,300.0,540.0,0.0,0,54,0.0,0.0,511.56016301161833,840.0,0.0,1025.192185887486,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,121861,2,1,1,0,1,,250.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,826.33920362637,300.0,20724.914908932617,0,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040530926360423936,20724.914908932617,5,3,5,5_1,5_4,5_1_0 +21841,2,59.0,0.0,6,111,700.0,0.0,0.0,77,47,0.0,0.0,1193.6403803604428,850.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,121862,2,1,1,0,1,,250.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,342.328097269781,700.0,40705.08959368529,5,1,0,1,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02088190957161935,27136.726395790192,7,4,7,7_1,7_3,7_0_0 +21842,2,47.0,0.0,9,112,1600.0,120.0,0.0,45,33,0.0,0.0,2728.320869395298,1720.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,121863,2,1,1,0,1,,530.0,,43,2.0,0.0,8.0,4.0,2.5,4,3,587.15029939439,1600.0,61434.33289556173,1,1,1,2,196.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0279973740892409,24573.73315822469,7,4,7,7_1,7_1,7_0_0 +21843,2,37.0,0.0,9,112,1000.0,0.0,0.0,0,52,0.0,0.0,1705.2005433720612,1033.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,121864,2,1,1,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2111.51299527431,1000.0,24566.0,0,1,1,2,90.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042049987787999676,24566.0,7,4,7,7_1,7_1,7_0_0 +21844,2,66.0,0.0,7,112,696.0,,,0,77,0.0,0.0,,811.0,159.34276092059991,,70,0,0,0,0,0,0,0,0,0,,1,,5,121865,2,2,0,0,2,,468.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,38.27997405243374,696.0,32429.833163445903,0,5,1,2,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025007837564645228,32429.833163445903,8,4,8,8_1,8_1,8_0_0 +21845,2,75.0,0.0,1,120,450.0,0.0,0.0,0,78,0.0,0.0,767.3402445174275,450.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,121866,1,1,3,0,2,,100.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,244.216549384017,450.0,10431.208295507593,0,5,0,1,70.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043139777027921246,10431.208295507593,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +21846,2,46.0,0.0,9,112,1800.0,0.0,0.0,52,47,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,121867,2,1,1,0,1,,530.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,3569.21157662043,1800.0,48206.24464958536,1,1,1,2,115.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037339560737085595,24103.12232479268,6,3,6,6_1,6_1,6_0_0 +21847,2,31.0,0.0,9,111,1540.0,0.0,0.0,56,37,0.0,0.0,2626.0088367929743,1668.0,177.35542085075468,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,121868,2,1,1,0,1,,515.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,493.20796208845,1540.0,63865.49678171165,1,1,1,2,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02611738863789194,26610.62365904652,7,4,7,7_1,7_4,7_0_0 +21848,0,53.0,0.0,1,111,0.0,0.0,0.0,52,37,0.0,0.0,0.0,2366.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,,1,121869,1,2,3,0,2,,0.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,619.763118041379,0.0,82855.37511827436,1,1,5,0,90.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02855578164509645,41427.68755913718,9,5,9,9_1,9_4,9_1_0 +21849,0,91.0,0.0,2,221,528.0,342.0,0.0,78,75,2563.9340108699785,0.0,900.3458869004482,3301.0,0.0,649.2883843954079,71,0,0,0,0,0,0,0,0,0,,1,,2,121870,1,2,5,0,2,,327.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1870.50165352201,528.0,33745.01408336755,5,5,0,1,90.0,1,1,7,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09782185871503363,22496.676055578366,6,3,6,6_1,6_1,6_0_1 +21850,2,75.0,0.0,8,111,0.0,100.0,0.0,78,78,0.0,0.0,0.0,100.0,0.0,189.8504047939789,71,2,1,2,1,1,2,2,2,0,,2,,6,121871,2,2,0,1,1,852.0,0.0,371.0,41,0.0,2.0,4.0,4.0,2.5,4,4,275.383728936359,0.0,36652.945879916995,5,5,2,3,85.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.00272829366369682,14661.178351966799,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +21851,2,66.0,0.0,5,300,652.0,0.0,0.0,71,71,0.0,0.0,1111.7907542785838,772.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121872,2,1,1,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1150.05108676507,652.0,24307.157301369403,5,5,0,1,83.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03176019270490785,16204.771534246269,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +21852,1,52.0,239.0,2,111,300.0,300.0,0.0,68,67,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,121873,2,2,0,1,1,564.0,300.0,227.0,43,2.0,1.0,2.0,2.0,1.5,2,2,392.98377828129,300.0,16221.721538921229,1,4,2,3,55.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03698744295174857,10814.481025947485,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21853,2,69.0,0.0,9,111,2200.0,,,23,34,0.0,0.0,,2244.0,60.965925917446924,,10,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,121874,2,1,0,0,1,,1300.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,104.66902557429529,2200.0,198078.65985678235,1,1,1,2,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011328832705262085,132052.43990452157,10,5,10,10_1,10_3,10_0_0 +21854,2,53.0,0.0,2,111,350.0,70.0,0.0,0,52,0.0,0.0,596.8201901802214,420.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,121875,2,2,0,1,1,288.0,0.0,302.0,12,1.0,0.0,2.0,1.0,1.0,1,1,256.540680432291,350.0,20407.230725810005,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020580940434451297,20407.230725810005,5,3,5,5_0,5_4,5_0_1 +21855,1,85.0,190.0,2,111,220.0,,,77,75,0.0,0.0,,312.0,127.47420873647992,,70,0,0,0,0,0,0,0,0,0,,2,,2,121876,2,3,0,0,2,,235.0,221.0,41,0.0,1.0,1.0,2.0,1.5,2,2,146.03474995207657,220.0,16448.11832060195,5,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018968735141527228,10965.412213734633,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21856,2,43.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,719.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,2,,2,121877,2,1,0,1,2,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,376.346677367694,0.0,23670.294239071543,0,1,1,2,64.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.030375625783864463,15780.196159381028,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +21857,1,42.0,377.0,2,111,800.0,600.0,0.0,81,69,0.0,0.0,1364.160434697649,1400.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,121878,2,2,0,0,1,,440.0,332.0,43,2.0,0.0,4.0,5.0,2.4,2,2,310.885517853364,800.0,25475.398961417857,4,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054954978413499264,10614.74956725744,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +21858,1,81.0,253.0,8,112,240.0,,,0,77,0.0,0.0,,490.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,121879,2,1,0,0,2,,160.0,340.0,11,0.0,1.0,2.0,1.0,1.0,1,1,107.10012544020013,240.0,11429.525192972484,0,5,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042871422191822946,11429.525192972484,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +21859,2,52.0,0.0,2,211,373.0,918.0,0.0,0,42,0.0,0.0,636.0398026777788,1291.0,0.0,1742.8267160087264,10,0,0,0,0,0,0,0,0,0,,1,,2,121880,2,1,2,0,1,,558.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1706.23759381523,373.0,27952.67925167693,0,1,1,2,108.0,2,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04618519707453627,27952.67925167693,7,4,7,7_1,7_1,7_0_1 +21861,2,66.0,0.0,2,111,63.0,58.0,0.0,77,75,0.0,0.0,107.42763423243986,121.0,0.0,110.11323478050777,70,0,0,0,0,0,0,0,0,0,,1,,2,121882,2,1,2,0,1,,396.0,,41,1.0,2.0,8.0,3.0,2.0,3,3,556.351922741,63.0,63403.52555789359,5,5,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.001908411226904334,31701.762778946795,8,4,8,8_1,8_3,8_0_1 +21863,2,81.0,0.0,5,111,450.0,,,77,78,0.0,0.0,,560.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,3,121884,2,2,0,0,2,,300.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,121.1281710475451,450.0,22770.476056828644,5,5,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02459324954833614,15180.317371219096,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +21864,2,68.0,0.0,1,111,0.0,0.0,356.0,78,75,0.0,0.0,224.3933113876488,416.0,83.13535352379125,426.0366445330264,44,0,0,0,0,0,0,0,0,0,,1,,1,121885,2,1,1,0,1,,60.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2330.07554697259,0.0,25595.48620122429,6,5,0,1,110.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01625286570958366,17063.65746748286,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +21865,0,81.0,0.0,2,112,204.0,,,86,78,0.0,0.0,,292.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,121886,2,2,0,0,2,,252.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,119.55545417074659,204.0,25276.002548784276,6,5,5,0,88.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011552459667481897,16850.668365856185,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +21866,2,35.0,0.0,5,111,1200.0,0.0,0.0,34,46,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,121887,2,3,0,0,1,1200.0,0.0,1100.0,43,2.0,0.0,3.0,5.0,2.4,2,2,720.72964574849,1200.0,82374.10268013357,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014567685242772398,34322.54278338899,9,5,9,9_0,9_4,9_0_0 +21867,1,25.0,296.0,1,111,1500.0,0.0,0.0,85,56,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,60,2,2,2,1,1,1,2,2,1,15.0,1,,1,121888,2,1,3,0,1,,550.0,510.0,42,1.0,0.0,3.0,3.0,1.8,2,2,272.081676544409,1500.0,16223.516291711261,6,1,2,3,74.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.09245837788977741,9013.064606506256,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +21869,2,33.0,0.0,9,120,0.0,0.0,0.0,43,37,0.0,0.0,0.0,2853.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2013.0,6,121890,2,1,1,0,1,,116.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,973.414545411024,0.0,47201.14507293371,1,1,1,2,120.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060443448894971406,31467.43004862247,8,4,8,8_1,8_0,8_0_0 +21870,1,62.0,140.0,1,111,192.0,0.0,0.0,0,56,0.0,0.0,327.3985043274357,192.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,1,121891,1,3,0,1,2,229.0,0.0,620.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1028.51546866227,192.0,9154.578933802082,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02097311098504653,9154.578933802082,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +21871,2,64.0,0.0,7,111,900.0,0.0,0.0,38,43,0.0,0.0,1534.680489034855,900.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,90.0,2,,5,121892,2,1,0,0,1,,0.0,600.0,43,2.0,4.0,1.0,2.0,1.5,2,2,1284.45357589157,900.0,27680.167474552807,4,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032514254143418624,18453.444983035206,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +21872,2,33.0,0.0,2,111,550.0,350.0,0.0,85,68,0.0,0.0,937.8602988546337,900.0,0.0,664.4764167789261,30,0,0,0,0,0,0,0,0,2,25.0,2,,2,121893,1,2,0,0,2,,0.0,700.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1897.96568981009,550.0,22641.40909977997,6,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03975017614997939,10781.623380847604,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +21873,0,59.0,0.0,5,111,360.0,,,0,77,0.0,0.0,,538.0,246.63488212058073,,60,0,0,0,0,0,0,0,0,0,,1,,3,121894,2,1,0,0,2,,272.0,,31,0.0,0.0,5.0,2.0,1.5,2,2,89.43965419551192,360.0,13775.07372462524,0,7,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03905605231268094,9183.382483083493,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21874,2,70.0,0.0,7,111,1500.0,0.0,0.0,74,74,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,8,,5,121895,1,1,0,0,1,,0.0,1200.0,41,0.0,3.0,5.0,2.0,1.5,2,2,924.873271192415,1500.0,65110.0031744789,5,5,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023037934677723276,43406.66878298594,10,5,10,10_0,10_4,10_0_0 +21875,2,56.0,0.0,7,112,580.0,0.0,0.0,11,11,0.0,0.0,989.0163151557955,627.0,65.12269359363648,0.0,50,2,2,2,2,1,2,2,2,2,5.0,1,,5,121896,1,3,4,0,1,,238.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1017.02208258046,580.0,24767.269348205424,1,1,0,1,115.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.025315669288565754,16511.512898803616,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +21877,2,71.0,0.0,1,111,564.0,0.0,0.0,0,75,0.0,0.0,961.7331064618425,564.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,121898,2,1,0,1,1,,285.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,974.81827461723,564.0,45072.22815494022,0,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012513248691881718,45072.22815494022,10,5,10,10_0,10_4,10_1_0 +21878,0,72.0,0.0,1,111,370.0,0.0,0.0,0,74,2910.92466886102,0.0,630.9242010476627,3180.0,69.27946126982604,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,121899,2,2,4,0,1,,177.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,281.908661037843,370.0,26163.049749364476,0,5,0,1,100.0,6,5,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12154546318046294,26163.049749364476,7,4,7,7_1,7_2,7_1_0 +21879,2,42.0,0.0,1,111,600.0,0.0,0.0,0,31,1476.555991451242,264.8654554020448,1023.1203260232367,2200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,121900,2,1,2,0,1,,440.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,382.003183410931,600.0,112045.00239010478,0,1,1,2,100.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01963496767433058,86188.46337700367,10,5,10,10_1,10_4,10_1_0 +21880,2,31.0,0.0,7,111,541.0,0.0,0.0,84,37,0.0,0.0,922.5134939642851,541.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,5,121901,1,2,0,0,1,,0.0,430.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1076.2745550999,541.0,32155.34248136834,3,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01682457589476678,21436.894987578893,6,3,6,6_0,6_4,6_0_0 +21881,2,40.0,0.0,7,211,300.0,,,0,46,0.0,0.0,,325.0,34.63973063491302,,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,121902,2,2,0,0,2,,450.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,71.36598278712341,300.0,46001.62718404424,0,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007064967478209704,35385.867064649414,9,5,9,9_1,9_2,9_0_0 +21882,2,51.0,0.0,7,112,840.0,,,0,65,0.0,0.0,,864.0,33.25414140951651,,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,121903,2,1,0,0,2,,200.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,54.25396590101436,840.0,62812.35026093399,0,1,1,2,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013755256671829441,48317.192508410764,10,5,10,10_1,10_1,10_0_0 +21883,2,61.0,0.0,8,111,500.0,1200.0,0.0,37,37,0.0,79.45963662061344,852.6002716860306,1760.0,0.0,2278.2048575277468,31,1,2,2,2,1,2,2,1,2,10.0,1,2000.0,6,121904,2,1,1,0,1,,258.0,,43,2.0,5.0,8.0,2.0,1.5,2,2,489.565594259709,500.0,182929.287783488,4,1,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.009621204025476261,121952.85852232533,10,5,10,10_1,10_3,10_0_0 +21885,2,68.0,0.0,6,111,1090.0,0.0,0.0,0,37,0.0,0.0,1858.6685922755466,1090.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,75.0,2,,4,121906,2,1,0,0,1,,419.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1393.14029266735,1090.0,30809.865072202087,0,1,0,1,84.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03537827891961274,30809.865072202087,8,4,8,8_0,8_3,8_0_0 +21886,2,37.0,0.0,7,112,1400.0,0.0,0.0,37,65,0.0,331.081819252556,2387.2807607208856,1710.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,121907,2,1,4,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,560.001917513037,1400.0,55174.72428903573,1,1,1,2,90.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030992452106186775,30652.62460501985,8,4,8,8_1,8_1,8_0_0 +21887,2,54.0,0.0,2,111,240.0,0.0,0.0,62,65,0.0,0.0,409.2481304092947,300.0,83.13535352379125,0.0,50,2,2,1,2,1,2,2,2,2,3.0,2,,2,121908,2,2,0,1,1,917.0,0.0,293.0,43,2.0,1.0,4.0,3.0,2.0,3,2,633.467452940543,240.0,42336.44953283393,1,1,2,3,90.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.007086092558785208,21168.224766416966,5,3,5,5_0,5_2,5_0_1 +21888,2,30.0,0.0,1,111,600.0,0.0,0.0,43,38,1160.1511361402618,0.0,1023.1203260232367,1820.0,166.2707070475825,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,,1,121909,2,1,3,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1713.33583944086,600.0,57341.96189477356,1,1,1,2,99.0,8,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03173940932366118,31856.64549709642,8,4,8,8_1,8_3,8_1_0 +21889,2,46.0,0.0,5,211,800.0,0.0,0.0,71,43,3164.0485531098047,0.0,1364.160434697649,3800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,3,121910,2,1,2,0,1,,190.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,1254.3987452156,800.0,32339.946345458317,5,1,0,1,185.0,1,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11750174101737976,21559.964230305544,6,3,6,6_1,6_1,6_0_0 +21890,0,36.0,0.0,2,112,0.0,0.0,0.0,0,67,0.0,0.0,0.0,293.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,121911,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,3495.43379307584,0.0,1006.0,0,4,5,0,25.0,7,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.2912524850894632,1006.0,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +21891,2,93.0,0.0,6,111,150.0,0.0,0.0,0,72,0.0,0.0,255.78008150580916,150.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,121912,2,1,0,0,2,,0.0,800.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2612.94548918201,150.0,16427.726388267212,0,5,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009130904451095007,16427.726388267212,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +21892,2,49.0,0.0,6,111,1688.0,0.0,0.0,37,37,0.0,0.0,2878.3785172120392,1688.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,121913,2,1,0,0,1,,0.0,1417.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,1098.24093059788,1688.0,41829.97770946129,4,1,3,4,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040353834556746626,16088.452965177421,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +21893,2,33.0,0.0,2,112,1000.0,0.0,0.0,42,37,1054.6828510366015,662.163638505112,1705.2005433720612,2500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,2,121914,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,896.889205614542,1000.0,79099.87229026624,1,1,1,2,107.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031605613607389366,43944.37349459236,10,5,10,10_1,10_0,10_0_1 +21894,2,22.0,0.0,9,400,420.0,,,0,52,0.0,0.0,,696.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,121915,1,1,0,0,2,,0.0,,22,1.0,0.0,3.0,3.0,2.0,3,3,49.65716042652294,420.0,12693.532269837064,0,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05483107343208684,6346.766134918532,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +21895,0,20.0,0.0,1,111,430.0,986.0,0.0,0,52,0.0,0.0,733.2362336499863,1416.0,0.0,1871.9249912686319,50,1,2,2,1,1,2,2,2,0,,1,,1,121916,2,1,2,0,1,,581.0,,22,1.0,5.0,5.0,3.0,2.0,3,3,237.830686235624,430.0,16676.399748689124,0,1,5,0,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08491041359879294,8338.199874344562,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +21896,2,52.0,0.0,1,111,350.0,0.0,0.0,0,85,0.0,0.0,596.8201901802214,350.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,121917,2,1,0,0,1,,80.0,595.0,31,1.0,1.0,2.0,2.0,1.5,2,2,2015.92187252551,350.0,25229.435060957574,0,7,2,3,47.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013872684788793518,16819.623373971717,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +21897,2,75.0,0.0,5,111,750.0,0.0,0.0,77,78,0.0,264.8654554020448,1278.9004075290459,1000.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,121918,2,1,2,0,1,,140.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,2259.47240159874,750.0,21383.834783162976,5,5,0,1,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04676429696264636,14255.889855441985,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +21898,1,55.0,164.0,2,111,250.0,150.0,0.0,0,68,0.0,0.0,426.3001358430153,400.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,1,30.0,2,,2,121919,2,2,0,1,1,736.0,210.0,306.0,12,1.0,6.0,3.0,1.0,1.0,1,1,343.694102670759,250.0,8191.746253331579,0,1,2,3,60.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04882963749485285,8191.746253331579,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21899,0,75.0,0.0,1,111,1940.0,0.0,0.0,75,74,0.0,105.94618216081791,3308.089054141799,2545.0,727.4343433331735,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,121920,1,1,4,0,2,,207.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1298.32974815064,1940.0,66724.99380771181,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0381416296168447,44483.329205141206,10,5,10,10_1,10_3,10_1_0 +21900,2,60.0,0.0,7,111,855.0,2200.0,0.0,54,38,0.0,0.0,1457.9464645831124,3055.0,0.0,4176.708905467536,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,121921,2,1,1,0,1,,500.0,,43,2.0,3.0,9.0,3.0,2.0,3,3,2012.8512296723,855.0,72776.58942279094,1,1,1,2,200.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04197778467265308,36388.29471139547,9,5,9,9_1,9_3,9_0_0 +21902,2,37.0,0.0,9,111,360.0,,,45,33,0.0,0.0,,406.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,121923,2,1,0,0,2,,360.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,217.80540307334368,360.0,70636.85347026837,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00574770788977582,33636.596890603985,9,5,9,9_1,9_2,9_0_0 +21903,2,31.0,0.0,9,112,1400.0,0.0,0.0,52,54,0.0,0.0,2387.2807607208856,1446.0,63.73710436823996,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,121924,2,1,1,0,1,,540.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1516.192006965,1400.0,44083.76282960172,1,1,1,2,95.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03280119271100489,20992.26801409606,5,3,5,5_1,5_0,5_0_0 +21904,1,33.0,200.0,6,111,0.0,0.0,816.0,0,53,0.0,0.0,514.3397249784309,816.0,0.0,976.5334324127797,71,0,0,0,0,0,0,0,0,3,75.0,2,,4,121925,1,3,0,0,2,,0.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,873.135983710248,0.0,18795.24253630156,0,1,1,2,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04341524183175391,18795.24253630156,5,3,5,5_0,5_4,5_0_0 +21905,2,83.0,0.0,2,111,200.0,,,0,86,0.0,0.0,,325.0,173.19865317456512,,50,0,0,0,0,0,0,0,0,0,,1,,2,121926,2,1,0,0,2,,200.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,59.34615594420299,200.0,14508.266430864785,0,5,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022401022310191192,14508.266430864785,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +21906,2,45.0,0.0,7,111,600.0,0.0,0.0,0,33,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,5,121927,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,914.095494676948,600.0,28713.13685791007,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02089635844976333,28713.13685791007,8,4,8,8_0,8_4,8_0_0 +21907,2,79.0,0.0,2,111,450.0,140.0,0.0,77,74,0.0,0.0,767.3402445174275,590.0,0.0,265.7905667115705,50,0,0,0,0,0,0,0,0,0,,2,,2,121928,2,1,0,1,1,,306.0,443.0,41,1.0,3.0,4.0,3.0,2.0,3,3,443.593540097356,450.0,47925.54709545341,5,5,2,3,75.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012310761916288526,23962.773547726705,6,3,6,6_0,6_2,6_0_1 +21908,2,67.0,0.0,2,111,432.0,601.0,0.0,0,56,0.0,0.0,736.6466347367304,1033.0,0.0,1141.0009328118133,71,0,0,0,0,0,0,0,0,0,,1,,2,121929,2,1,2,0,1,,690.0,,22,2.0,1.0,5.0,5.0,2.8,4,3,1520.22642327173,432.0,47904.78311016782,0,1,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021563608744963613,17108.85111077422,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +21909,2,73.0,0.0,2,120,240.0,0.0,0.0,86,72,922.8474946570263,19.86490915515336,409.2481304092947,1210.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,121930,2,1,2,0,1,,240.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,2003.17620027253,240.0,23849.206606917338,5,5,0,1,133.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05073544038354072,15899.471071278225,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +21910,2,40.0,0.0,6,112,1347.0,0.0,0.0,52,64,0.0,264.8654554020448,2296.905131922166,1597.0,69.27946126982604,0.0,31,2,2,2,1,1,2,1,2,2,60.0,1,,4,121931,2,1,3,0,1,,475.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,852.246546685543,1347.0,44006.25525277981,1,1,1,2,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,0,0,0.036290295341572375,20955.359644180862,5,3,5,5_1,5_0,5_0_0 +21911,1,44.0,123.0,5,111,360.0,180.0,0.0,0,52,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,1,5.0,2,,3,121932,2,1,0,1,1,1108.0,300.0,285.0,12,1.0,0.0,5.0,1.0,1.0,1,1,388.382630014209,360.0,14007.250285373766,0,1,2,3,45.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03855146363479081,14007.250285373766,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +21912,2,75.0,0.0,5,111,540.0,,,0,77,0.0,0.0,,816.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,121933,2,1,0,0,2,,240.0,,21,1.0,0.0,5.0,4.0,2.5,4,4,78.45906731852261,540.0,29214.875868879724,0,5,0,1,124.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027930976111701356,11685.95034755189,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +21913,2,44.0,0.0,1,111,1200.0,0.0,0.0,37,37,0.0,688.6501840453165,2046.2406520464733,1820.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,14.0,1,,1,121934,1,1,1,0,1,,500.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1260.70380120308,1200.0,75061.93063458207,1,1,1,2,82.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02424664519835173,50041.28708972138,10,5,10,10_1,10_3,10_1_0 +21914,2,33.0,0.0,2,111,500.0,1200.0,0.0,62,54,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,2,45.0,2,,2,121935,2,2,0,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1112.62637225224,500.0,12596.63843671027,4,1,1,2,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13495664010214864,5998.399255576318,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +21915,2,34.0,0.0,6,400,0.0,,,0,85,0.0,0.0,,360.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,0,,1,,4,121936,2,1,0,0,2,,0.0,,31,0.0,0.0,3.0,9.0,3.999999999999999,3,1,117.37468432204405,0.0,29299.308354637404,0,6,0,1,32.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012286979461855465,7324.827088659353,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +21916,2,30.0,0.0,1,111,550.0,700.0,0.0,0,35,0.0,0.0,937.8602988546337,1250.0,0.0,1328.9528335578523,20,0,0,0,0,0,0,0,0,0,,2,,1,121937,1,1,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2052.03941895897,550.0,19042.891965938332,0,1,2,3,59.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06564129031640004,19042.891965938332,5,3,5,5_0,5_3,5_1_0 +21917,2,89.0,0.0,2,111,205.0,0.0,0.0,0,75,0.0,0.0,349.56611139127256,205.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,121938,2,1,0,1,1,,480.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,291.122357260088,205.0,24362.359242443872,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.008414620191744441,24362.359242443872,7,4,7,7_0,7_4,7_0_1 +21918,2,91.0,0.0,2,111,250.0,960.0,0.0,0,75,0.0,0.0,426.3001358430153,1210.0,0.0,1822.5638860221975,60,0,0,0,0,0,0,0,0,0,,2,,2,121939,1,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1920.46233782034,250.0,13091.631050737142,0,5,0,1,66.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09242545831841704,13091.631050737142,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +21919,1,34.0,337.0,6,111,390.0,,,0,43,0.0,0.0,,459.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,3,20.0,1,,4,121940,2,2,0,0,2,,380.0,550.0,32,1.0,0.0,4.0,2.0,1.3,1,1,100.72061734802263,390.0,9389.22723484819,0,1,2,3,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04888581227392367,7222.482488344761,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +21920,2,54.0,0.0,1,111,500.0,1610.0,0.0,55,46,0.0,0.0,852.6002716860306,2110.0,0.0,3056.59151718306,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,121941,2,1,1,0,1,,300.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,275.609268471586,500.0,39150.703207733,1,1,1,2,110.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05389430654168264,26100.468805155335,7,4,7,7_1,7_3,7_1_0 +21921,2,61.0,0.0,9,112,2076.0,0.0,0.0,0,77,0.0,0.0,3539.996328040399,2076.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2010.0,6,121942,2,1,1,0,1,,226.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1178.09094590942,2076.0,19785.01146532721,0,5,0,1,96.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10492791493389547,19785.01146532721,5,3,5,5_1,5_1,5_0_0 +21922,2,58.0,0.0,1,211,700.0,0.0,0.0,56,62,0.0,662.163638505112,1193.6403803604428,1284.0,116.38949493330776,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,121943,2,3,2,0,1,,288.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1437.20066802048,700.0,40974.538546670745,1,1,0,1,102.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03133653350452015,27316.35903111383,7,4,7,7_1,7_1,7_1_0 +21923,2,54.0,0.0,2,111,0.0,0.0,450.0,56,53,0.0,0.0,283.6432306866347,450.0,0.0,538.5294664041063,31,0,0,0,0,0,0,0,0,3,45.0,2,,2,121944,2,3,0,0,1,,600.0,320.0,43,2.0,0.0,4.0,3.0,1.8,2,2,231.273959228155,0.0,33043.90898502401,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013618243537831635,18357.727213902228,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +21924,2,77.0,0.0,1,300,1330.0,0.0,0.0,77,75,0.0,0.0,2267.9167226848413,1330.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,121945,2,1,2,0,1,,320.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1820.89195645753,1330.0,28607.531132169075,5,5,0,1,120.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.046491254133580906,19071.68742144605,5,3,5,5_1,5_0,5_1_0 +21925,1,59.0,300.0,6,111,500.0,,,0,52,0.0,0.0,,650.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,8,,4,121946,2,2,0,0,2,,560.0,510.0,32,3.0,0.0,4.0,6.0,3.3,5,3,7.926041328368133,500.0,10265.797455986196,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06331704894693511,3110.8477139352112,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21926,1,22.0,250.0,9,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,277.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,121947,2,2,0,0,1,,0.0,350.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2117.06702896998,0.0,9432.51565815697,0,7,2,3,28.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02936650306649195,9432.51565815697,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +21927,2,48.0,0.0,1,111,700.0,0.0,0.0,35,54,2636.7071275915036,0.0,1193.6403803604428,3200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,1,121948,2,1,2,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,827.96281194763,700.0,82903.52427010347,1,1,1,2,170.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038599082827579845,39477.86870004927,9,5,9,9_1,9_4,9_1_0 +21928,2,70.0,0.0,1,111,203.0,976.0,0.0,77,75,0.0,0.0,346.15571030452844,1179.0,0.0,1852.939950789234,71,0,0,0,0,0,0,0,0,0,,1,,1,121949,2,2,1,0,1,,200.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,291.72190674207,203.0,25262.87689333727,5,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04666926910097657,16841.917928891515,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +21929,1,45.0,108.0,5,111,780.0,0.0,0.0,0,63,0.0,331.081819252556,1330.0564238302077,1030.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,121950,2,2,5,0,1,,167.0,320.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1446.52511173744,780.0,3073.0545295867405,0,4,2,3,47.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.33517140359319064,3073.0545295867405,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +21930,2,53.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1360.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,121951,2,3,4,0,1,,238.0,,32,1.0,2.0,7.0,2.0,1.5,2,1,276.773098684274,0.0,67560.96754165109,0,1,0,1,145.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02012996630282959,45040.645027767394,10,5,10,10_1,10_3,10_1_0 +21931,1,48.0,216.0,6,111,447.0,699.0,0.0,0,56,0.0,0.0,762.2246428873113,1146.0,0.0,1327.0543295099126,60,0,0,0,0,0,0,0,0,0,,2,,4,121952,2,1,0,0,1,,0.0,653.0,32,1.0,1.0,5.0,3.0,1.8,2,2,1665.29029357686,447.0,19326.06920621683,0,1,2,3,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059298142202210136,10736.705114564906,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +21932,2,76.0,0.0,2,221,417.0,0.0,0.0,77,75,2234.8729613465584,0.0,711.0686265861495,2626.0,124.70303028568689,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,121953,1,2,4,0,2,,329.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1439.39324077773,417.0,36496.4741050213,5,5,0,1,70.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07195215604782783,24330.982736680864,7,4,7,7_1,7_1,7_0_1 +21933,1,58.0,59.0,1,111,513.0,682.0,0.0,0,78,0.0,0.0,874.7678787498674,1195.0,0.0,1294.7797606949362,71,0,0,0,0,0,0,0,0,0,,2,,1,121954,2,2,0,0,1,,0.0,380.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1481.81100991983,513.0,5957.445650094552,0,7,2,3,35.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.2005893247185619,5957.445650094552,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +21934,2,44.0,0.0,9,112,1860.0,0.0,0.0,54,46,0.0,0.0,3171.673010672034,1860.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,121955,2,1,1,0,1,,360.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,955.506157307098,1860.0,60328.970046690214,4,1,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030830958966488173,26229.986976821834,7,4,7,7_1,7_1,7_0_0 +21935,2,71.0,0.0,1,112,850.0,0.0,0.0,0,78,632.8097106219609,0.0,1449.420461866252,1505.0,76.20740739680865,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,121956,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1059.4526311454,850.0,28556.39222501342,0,5,0,1,120.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05270273598083319,28556.39222501342,8,4,8,8_1,8_0,8_1_0 +21936,2,52.0,0.0,1,120,1550.0,0.0,0.0,85,69,0.0,1324.327277010224,2643.0608422266946,2700.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,121957,1,1,1,0,2,,150.0,,42,1.0,3.0,5.0,3.0,1.8,2,2,295.080466967606,1550.0,14673.01497506176,6,1,0,1,110.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.18401126180194846,8151.674986145422,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +21938,2,56.0,0.0,2,111,1100.0,0.0,0.0,55,33,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,121959,2,2,1,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,910.378259456307,1100.0,54946.111659282826,1,1,0,1,87.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020019614978781877,36630.74110618855,9,5,9,9_1,9_2,9_0_1 +21939,2,56.0,0.0,7,111,1222.0,0.0,0.0,0,42,0.0,0.0,2083.755064000659,1222.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,121960,2,1,3,0,1,,339.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,664.221506199706,1222.0,43729.34399633486,0,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027944622267885404,43729.34399633486,10,5,10,10_1,10_4,10_0_0 +21940,2,59.0,0.0,1,111,0.0,0.0,1200.0,0,65,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,121961,2,2,4,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,96.6815989590705,0.0,14499.827837924078,0,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08275960331483512,14499.827837924078,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +21941,2,48.0,0.0,2,111,200.0,480.0,0.0,53,37,0.0,0.0,341.04010867441224,680.0,0.0,911.2819430110987,41,2,2,2,1,1,2,2,2,3,90.0,2,,2,121962,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,871.417060814034,200.0,69999.77021145767,1,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.009714317603412598,38888.761228587595,9,5,9,9_0,9_4,9_0_1 +21942,2,67.0,0.0,1,300,2096.0,0.0,0.0,0,78,0.0,0.0,3574.10033890784,2228.0,182.89777775234077,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121963,2,1,1,0,2,,180.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1379.58383557583,2096.0,8044.624051420978,0,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2769551424353327,8044.624051420978,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +21943,2,51.0,0.0,2,112,600.0,0.0,0.0,52,37,2320.3022722805235,0.0,1023.1203260232367,2922.0,169.04188549837556,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,121964,2,2,3,0,1,,240.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,1820.41318542242,600.0,78457.96377767327,1,1,0,1,120.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037242873244583384,39228.981888836635,9,5,9,9_1,9_0,9_0_1 +21945,1,55.0,255.0,7,111,450.0,653.0,0.0,0,54,0.0,264.8654554020448,767.3402445174275,1303.0,0.0,1239.7231433046823,42,1,2,2,1,2,2,2,2,0,,2,,5,121966,1,2,0,0,1,,700.0,430.0,12,1.0,1.0,3.0,1.0,1.0,1,1,844.264233264537,450.0,8209.596054579677,0,4,2,3,75.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.15871670071673366,8209.596054579677,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +21946,2,50.0,0.0,2,111,719.0,450.0,0.0,46,42,0.0,0.0,1226.039190684512,1169.0,0.0,854.326821572905,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,121967,2,1,0,0,2,,0.0,773.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2015.28743682739,719.0,53073.378046760736,1,1,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022026108814291845,35382.252031173826,9,5,9,9_0,9_3,9_0_1 +21947,2,61.0,0.0,2,111,640.0,1250.0,0.0,74,46,0.0,158.91927324122688,1091.3283477581192,2010.0,0.0,2373.130059924736,20,0,0,0,0,0,0,0,0,2,60.0,1,,2,121968,2,2,3,0,1,,450.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,566.929931768605,640.0,92320.36679838208,5,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02177201055092889,61546.911198921385,10,5,10,10_1,10_4,10_0_1 +21948,1,45.0,80.0,1,111,500.0,570.0,0.0,0,53,0.0,0.0,852.6002716860306,1070.0,0.0,1082.1473073256798,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,121969,2,2,0,0,1,,140.0,295.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2170.26811311751,500.0,22780.459465993077,0,1,2,3,40.0,7,6,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.046970079843969254,22780.459465993077,6,3,6,6_0,6_2,6_1_0 +21949,2,35.0,0.0,9,111,650.0,0.0,0.0,63,65,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,121970,2,1,0,0,1,,200.0,697.0,43,2.0,0.0,4.0,5.0,2.4,2,2,411.890987601415,650.0,38817.86429461603,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016744867648222313,16174.110122756681,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +21950,2,40.0,0.0,2,111,335.0,1154.0,0.0,31,43,0.0,0.0,571.2421820296405,1489.0,0.0,2190.8736713225167,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,121971,1,1,3,0,2,,204.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,209.374342273304,335.0,20074.315050083853,4,1,0,1,99.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07417438633821682,9559.197642897072,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +21951,2,74.0,0.0,1,120,1200.0,0.0,0.0,77,75,0.0,582.7040018844986,2046.2406520464733,1740.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,121972,2,1,4,0,1,,280.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,1552.69644800569,1200.0,20442.001248817876,5,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0851188677087387,13628.00083254525,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +21952,2,29.0,0.0,2,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,306.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,121973,2,1,0,1,1,,240.0,304.0,41,0.0,0.0,1.0,2.0,1.5,2,2,1826.92395331452,0.0,10659.38180919742,6,7,2,3,35.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028707105672485498,7106.254539464947,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +21953,1,44.0,220.0,7,111,400.0,,,0,68,0.0,0.0,,488.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,121974,2,1,0,0,1,,225.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,138.06163987994964,400.0,11731.5138213171,0,1,1,2,57.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04159735967861752,11731.5138213171,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +21954,1,45.0,411.0,2,111,270.0,470.0,0.0,85,68,0.0,0.0,460.40414671045653,740.0,0.0,892.2969025317009,71,0,0,0,0,0,0,0,0,0,,2,,2,121975,1,1,0,1,1,948.0,0.0,353.0,42,1.0,0.0,6.0,6.0,2.8999999999999995,3,2,326.435421449856,270.0,14068.342658448428,6,1,2,3,110.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05260036793002121,4851.152640844286,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +21955,2,54.0,0.0,6,112,145.0,0.0,0.0,0,48,0.0,0.0,247.25407878894887,145.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,1,,4,121976,2,2,2,0,1,,996.0,,32,2.0,1.0,4.0,3.0,2.0,3,3,1188.33632128909,145.0,38011.42631713142,0,1,1,2,88.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003814642439098628,19005.71315856571,5,3,5,5_1,5_1,5_0_0 +21956,2,64.0,0.0,6,112,1952.0,0.0,0.0,75,74,0.0,662.163638505112,3328.5514606622633,2502.0,69.27946126982604,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,121977,2,2,3,0,1,,742.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,750.581504999361,1952.0,108208.31690237246,5,5,0,1,200.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023122067430892124,72138.87793491497,10,5,10,10_1,10_0,10_0_0 +21957,2,84.0,0.0,2,111,450.0,1384.0,0.0,0,78,0.0,0.0,767.3402445174275,1834.0,0.0,2627.529602348668,71,0,0,0,0,0,0,0,0,0,,1,,2,121978,2,2,1,0,1,,752.0,,21,0.0,9.0,5.0,2.0,1.5,2,2,1306.71311183704,450.0,13231.239685558887,0,5,0,1,90.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.138611350378733,8820.826457039258,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +21958,2,56.0,0.0,2,400,950.0,0.0,0.0,67,63,0.0,463.51454695357836,1619.9405162034582,1365.0,90.06329965077386,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,121979,2,1,1,0,1,,800.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,813.244293431497,950.0,39290.44851237381,1,1,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03474126795905926,26193.632341582543,7,4,7,7_1,7_0,7_0_1 +21959,2,47.0,0.0,1,112,1037.0,0.0,0.0,55,65,0.0,1655.40909626278,1768.2929634768275,2287.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,121980,1,2,2,0,1,,333.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,767.974168890651,1037.0,47908.66324616463,1,1,1,2,120.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04773666900804392,20829.853585288973,5,3,5,5_1,5_0,5_1_0 +21960,2,52.0,0.0,2,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,1352.0,0.0,0.0,41,2,2,2,2,1,2,2,2,2,45.0,1,,2,121981,2,1,2,0,1,,271.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,941.914596959504,0.0,32825.14057023946,6,1,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.041187942428060016,21883.42704682631,6,3,6,6_1,6_4,6_0_1 +21961,2,61.0,0.0,5,112,638.0,,,0,56,0.0,0.0,,726.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,121982,2,3,0,0,2,,373.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,109.95758487134063,638.0,27559.0,0,1,0,1,65.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026343481258391088,27559.0,7,4,7,7_1,7_2,7_0_0 +21963,1,71.0,128.0,5,111,320.0,0.0,0.0,0,77,0.0,0.0,545.6641738790596,894.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,121984,1,2,0,1,1,390.0,0.0,348.0,11,0.0,7.0,3.0,1.0,1.0,1,1,388.801101163518,320.0,11803.642201834864,0,5,2,3,60.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0757393340727516,11803.642201834864,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +21964,2,52.0,0.0,5,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,316.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,121985,2,1,0,1,2,11.0,0.0,625.0,32,1.0,2.0,2.0,2.0,1.3,1,1,1096.4974987235,0.0,29242.20013594053,0,1,2,3,42.0,10,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010806300433311645,22494.000104569637,6,3,6,6_0,6_2,6_0_0 +21965,2,80.0,0.0,2,221,780.0,0.0,0.0,77,75,1582.0242765549024,0.0,1330.0564238302077,2280.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,121986,2,2,3,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,920.305191670384,780.0,37065.246159033224,5,5,0,1,84.0,1,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061513148738237586,24710.16410602215,7,4,7,7_1,7_1,7_0_1 +21966,2,79.0,0.0,5,111,373.0,,,0,71,0.0,0.0,,511.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,1,,3,121987,2,1,0,0,2,,120.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,95.41086837443598,373.0,10345.560975609755,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049393164972369445,10345.560975609755,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +21967,2,70.0,0.0,1,111,500.0,1500.0,0.0,0,74,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,0,,1,,1,121988,2,1,2,0,1,,250.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1742.39539146765,500.0,82123.70499420947,0,5,0,1,140.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024353504267020338,82123.70499420947,10,5,10,10_1,10_3,10_1_0 +21968,1,59.0,153.0,6,111,550.0,825.0,0.0,68,75,84.37462808292813,0.0,937.8602988546337,1455.0,0.0,1566.2658395503258,44,2,2,2,1,1,1,2,2,0,,2,,4,121989,1,3,0,0,1,,0.0,385.0,42,1.0,3.0,3.0,2.0,1.5,2,2,264.244205662743,550.0,26579.96976675133,1,7,2,3,80.0,8,7,5,1,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,1,1,0,1,0.054740468584732846,17719.979844500886,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +21969,0,64.0,0.0,1,111,460.0,0.0,0.0,0,56,0.0,0.0,784.3922499511482,460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,121990,1,2,0,0,2,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,1321.25371214467,460.0,19292.03480320942,0,1,5,0,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02384403743266493,19292.03480320942,5,3,5,5_0,5_4,5_1_0 +21970,0,61.0,0.0,9,211,0.0,,,0,86,0.0,0.0,,1044.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,121991,2,1,0,0,1,,82.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,147.2095580936619,0.0,9400.577983059286,0,7,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11105700116326729,9400.577983059286,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +21971,2,49.0,0.0,2,111,511.0,0.0,0.0,55,63,1613.6647620860003,0.0,871.3574776631233,4311.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,121992,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1539.6757225218,511.0,25260.177029259325,4,1,1,2,95.0,8,6,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1706638870743657,14033.431682921846,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +21972,2,41.0,0.0,9,400,960.0,,,85,56,0.0,0.0,,1260.0,415.67676761895626,,60,0,0,0,0,0,0,0,0,0,,1,2009.0,6,121993,2,3,0,0,2,,0.0,,42,1.0,0.0,2.0,6.0,2.7,2,2,97.69445862448752,960.0,32386.70770061572,6,1,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03890484984295102,11995.07692615397,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +21973,1,27.0,401.0,2,111,279.0,391.0,0.0,0,56,0.0,79.45963662061344,475.7509516008051,730.0,0.0,742.3150827444575,50,1,1,2,1,1,2,2,2,0,,2,,2,121994,1,3,0,1,1,906.0,0.0,358.0,32,1.0,0.0,4.0,4.0,1.9,1,1,169.590290574531,279.0,15356.033544298652,0,4,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04753831761920268,8082.122918051923,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +21974,1,38.0,392.0,9,111,539.0,910.0,0.0,85,62,0.0,0.0,919.1030928775409,1579.0,180.1265993015477,1727.638683625208,50,2,2,2,2,1,2,2,2,2,55.0,1,2010.0,6,121995,1,2,1,0,1,,320.0,590.0,42,1.0,3.0,6.0,5.0,2.4,2,2,452.597257815628,539.0,31813.493016641063,6,1,2,3,106.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.04963302832461854,13255.62209026711,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +21975,2,87.0,0.0,1,300,500.0,0.0,0.0,78,78,1582.0242765549024,0.0,852.6002716860306,2180.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,121996,2,2,4,0,2,,280.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1490.40127777633,500.0,30616.21188415068,5,5,0,1,65.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0712041061202786,20410.807922767122,5,3,5,5_1,5_0,5_1_0 +21976,2,46.0,0.0,9,111,306.0,430.0,0.0,0,53,0.0,0.0,521.7913662718507,736.0,0.0,816.3567406141093,42,0,0,0,0,0,0,0,0,3,50.0,2,2007.0,6,121997,2,1,0,0,1,,0.0,447.0,32,3.0,0.0,3.0,5.0,2.8,4,3,1147.75092414895,306.0,41618.90345144889,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01768427178430088,14863.894089803176,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +21977,1,47.0,237.0,6,111,2000.0,1800.0,0.0,85,46,0.0,0.0,3410.4010867441225,4460.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,0,,1,,4,121998,2,1,1,0,1,,960.0,,42,1.0,1.0,8.0,10.0,4.299999999999999,4,3,1085.21175567464,2000.0,34098.38613104186,6,1,1,2,170.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.13079797920229977,7929.857239777179,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +21978,1,38.0,310.0,2,111,120.0,230.0,0.0,0,46,189.84291318658828,0.0,204.62406520464734,530.0,0.0,436.65593102615145,43,2,1,2,1,2,2,2,2,0,,2,,2,121999,2,2,0,1,1,740.0,0.0,304.0,32,1.0,0.0,3.0,2.0,1.3,1,1,274.628413534487,120.0,12867.89148538442,0,4,2,3,79.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04118778904857749,9898.378065680323,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +21979,1,54.0,350.0,5,211,800.0,,,85,53,0.0,0.0,,1040.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,3,122000,2,1,0,0,2,,300.0,600.0,42,1.0,0.0,3.0,3.0,2.0,3,2,59.46949127260768,800.0,35934.815826455866,6,4,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028941292061230854,17967.407913227933,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +21980,2,47.0,0.0,9,120,1600.0,0.0,0.0,43,62,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,16.0,1,2008.0,6,122001,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,601.632830679089,1600.0,51610.2347130662,1,1,1,2,151.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03100160285833629,21504.264463777585,6,3,6,6_1,6_1,6_0_0 +21981,1,35.0,246.0,1,111,300.0,0.0,0.0,0,55,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,122002,1,3,0,0,2,,0.0,440.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2566.66670635109,300.0,4977.960297012613,0,4,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,1,0.0602656473937803,4977.960297012613,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +21982,0,28.0,0.0,5,111,0.0,,,33,38,0.0,0.0,,907.0,0.0,,12,0,0,0,0,0,0,0,0,2,60.0,2,,3,122003,2,3,0,0,2,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,109.50339051971214,0.0,64511.46007812968,1,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014059517470253104,43007.640052086455,9,5,9,9_0,9_2,9_0_0 +21983,2,51.0,0.0,1,212,0.0,0.0,0.0,63,22,1582.0242765549024,0.0,0.0,6246.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122004,2,2,2,0,1,,216.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,935.779790748141,0.0,47897.15058777353,1,1,0,1,240.0,2,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1304044170342439,31931.433725182356,8,4,8,8_1,8_0,8_1_0 +21984,2,47.0,0.0,7,111,1004.0,1374.0,0.0,63,46,0.0,0.0,1712.0213455455494,2378.0,0.0,2608.54456186927,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,122005,2,1,2,0,1,,449.0,,43,2.0,0.0,7.0,4.0,2.3,3,3,629.952755710585,1004.0,42397.7789803498,4,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056087843684032065,18433.816947978175,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +21985,2,49.0,0.0,7,112,900.0,0.0,0.0,55,63,0.0,874.0560028267478,1534.680489034855,1560.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,122006,2,1,2,0,1,,400.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,793.543407651153,900.0,38385.58205583128,1,1,1,2,85.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04064025908819104,25590.38803722085,7,4,7,7_1,7_0,7_0_0 +21986,2,63.0,0.0,7,211,350.0,0.0,0.0,0,72,0.0,556.2174563442941,596.8201901802214,840.0,96.99124577775646,0.0,42,2,2,2,2,1,2,2,2,0,,1,,5,122007,2,1,2,0,1,,79.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1040.30093393324,350.0,9427.930145324606,0,5,0,1,95.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.08909696901143921,9427.930145324606,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +21987,1,47.0,396.0,2,111,560.0,220.0,0.0,0,56,0.0,0.0,954.9123042883542,780.0,0.0,417.6708905467536,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,122008,2,2,0,1,1,508.0,460.0,341.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,3,1,251.040539314715,560.0,20951.291933784905,0,1,2,3,83.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03722920774838781,8058.189205301887,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +21988,2,83.0,0.0,6,111,528.0,,,78,75,0.0,0.0,,666.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,1,,4,122009,2,2,0,0,2,,280.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,189.07275492168367,528.0,70965.35164830885,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009384861549063728,35482.67582415442,9,5,9,9_1,9_2,9_0_0 +21989,2,50.0,0.0,2,112,0.0,0.0,0.0,85,64,0.0,0.0,0.0,264.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,122010,2,2,0,1,1,,0.0,400.0,42,1.0,0.0,4.0,5.0,2.4,2,2,649.755902313585,0.0,13323.970076600015,6,1,2,3,65.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019813914207421204,5551.65419858334,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +21990,2,46.0,0.0,7,111,800.0,0.0,0.0,0,56,0.0,0.0,1364.160434697649,830.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,122011,1,1,0,0,2,,230.0,550.0,32,1.0,2.0,2.0,2.0,1.5,2,1,1229.20077509313,800.0,14278.603189020876,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.058128935233539146,9519.068792680584,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +21991,2,56.0,0.0,2,112,1600.0,0.0,0.0,0,68,0.0,0.0,2728.320869395298,1663.0,87.29212119998083,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,122012,2,1,1,0,1,,70.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1055.84005171394,1600.0,4154.65747318049,0,1,0,1,85.0,4,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4002736713520052,4154.65747318049,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +21992,1,31.0,451.0,7,112,1510.0,0.0,0.0,0,85,0.0,0.0,2574.8528204918125,1510.0,0.0,0.0,60,2,2,1,2,2,2,2,1,0,,1,,5,122013,2,1,1,0,1,,0.0,415.0,31,0.0,0.0,4.0,4.0,1.9,1,1,44.3229662173687,1510.0,11745.705069790205,0,6,2,3,80.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.1285576294507598,6181.950036731687,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +21993,2,65.0,0.0,6,111,800.0,0.0,0.0,0,74,0.0,0.0,1364.160434697649,800.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,4,122014,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,962.244954512805,800.0,39960.41250629555,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020019813355879754,39960.41250629555,9,5,9,9_0,9_4,9_0_0 +21994,2,43.0,0.0,7,400,720.0,0.0,0.0,56,62,2109.365702073203,0.0,1227.744391227884,2720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,122015,2,1,2,0,1,,575.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,823.211282514604,720.0,47516.96668112276,1,1,1,2,107.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057242711182584484,20659.55073092294,5,3,5,5_1,5_0,5_0_0 +21995,2,64.0,0.0,2,111,320.0,220.0,0.0,0,75,0.0,0.0,545.6641738790596,540.0,0.0,417.6708905467536,50,0,0,0,0,0,0,0,0,0,,2,,2,122016,1,3,0,1,1,521.0,0.0,488.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1347.49069574071,320.0,23063.92630688348,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023413186151173045,23063.92630688348,6,3,6,6_0,6_4,6_0_1 +21996,2,55.0,0.0,2,111,1000.0,1500.0,0.0,78,43,0.0,0.0,1705.2005433720612,2500.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,122017,2,3,4,0,1,,518.0,,42,3.0,0.0,6.0,4.0,2.5,4,4,1259.96573091823,1000.0,6676.400396439288,5,1,0,1,100.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3744532759499146,2670.560158575715,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +21997,2,58.0,0.0,1,111,600.0,0.0,0.0,0,37,1582.0242765549024,0.0,1023.1203260232367,2100.0,0.0,0.0,12,2,2,2,2,1,2,2,2,4,50.0,1,,1,122018,2,3,2,0,1,,375.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,899.453298225286,600.0,92676.04582858371,0,1,1,2,80.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.02265957703767617,61784.03055238914,10,5,10,10_1,10_4,10_1_0 +21998,2,54.0,0.0,5,111,814.0,0.0,0.0,0,56,0.0,0.0,1388.0332423048578,868.0,74.82181817141213,0.0,41,2,2,2,1,1,2,2,2,0,,2,,3,122019,2,2,0,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,453.538129529768,814.0,23333.618501617257,0,1,1,2,97.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.037199545365835085,23333.618501617257,6,3,6,6_0,6_3,6_0_0 +21999,2,83.0,0.0,2,111,250.0,0.0,0.0,0,74,1371.087706347582,0.0,426.3001358430153,1550.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,122020,2,2,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,884.529066433598,250.0,29240.146205650057,0,5,0,1,69.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05300931086659527,29240.146205650057,8,4,8,8_0,8_4,8_0_1 +22000,2,69.0,0.0,2,111,180.0,100.0,0.0,0,77,0.0,0.0,306.936097806971,280.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,122021,1,3,0,1,2,360.0,0.0,675.0,11,0.0,3.0,1.0,1.0,1.0,1,1,1519.63874028458,180.0,27625.14310142459,0,5,2,3,52.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01013569410199945,27625.14310142459,7,4,7,7_0,7_3,7_0_1 +22002,2,77.0,0.0,6,111,1800.0,0.0,0.0,0,72,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,122023,2,1,0,0,1,,495.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,949.623274120683,1800.0,63534.792934402176,0,5,0,1,108.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02833093360134891,63534.792934402176,10,5,10,10_0,10_4,10_0_0 +22004,2,29.0,0.0,1,111,420.0,360.0,0.0,0,54,0.0,132.4327277010224,716.1842282162656,880.0,0.0,683.461457258324,20,0,0,0,0,0,0,0,0,3,60.0,2,,1,122025,2,1,0,0,1,,0.0,424.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1178.75746190655,420.0,22954.671376811282,0,1,2,3,26.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03833642336038722,22954.671376811282,6,3,6,6_0,6_4,6_1_0 +22005,1,52.0,200.0,1,111,1472.0,0.0,0.0,77,65,0.0,0.0,2510.055199843674,1472.0,0.0,0.0,71,2,2,2,2,1,2,2,1,0,,1,,1,122026,2,3,4,0,1,,828.0,175.0,42,3.0,2.0,4.0,6.0,3.3,5,5,362.191377151421,1472.0,89288.27030626255,6,4,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.01648592805024644,27057.05160795835,7,4,7,7_1,7_3,7_1_0 +22006,2,33.0,0.0,7,111,0.0,0.0,1450.0,0,43,0.0,0.0,913.9615211013785,1450.0,0.0,1735.2616139687873,43,2,2,2,1,2,2,2,2,1,10.0,2,,5,122027,1,3,0,0,1,,0.0,343.0,12,1.0,0.0,2.0,1.0,1.0,1,1,372.662172005486,0.0,27967.544175045965,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0518458106626953,27967.544175045965,7,4,7,7_0,7_4,7_0_0 +22007,2,71.0,0.0,5,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,122028,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,264.393902008212,300.0,17522.420460611545,0,5,0,1,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017120922344853365,17522.420460611545,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +22008,1,33.0,190.0,1,111,360.0,0.0,0.0,0,48,0.0,0.0,613.872195613942,360.0,0.0,0.0,10,1,2,2,1,1,2,2,2,3,100.0,2,,1,122029,1,2,0,1,2,150.0,0.0,614.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1289.48518986435,360.0,16691.36603604458,0,2,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.021568036985264667,16691.36603604458,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +22009,2,74.0,0.0,1,112,300.0,0.0,0.0,0,48,0.0,1324.327277010224,511.56016301161833,1360.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,122030,2,1,2,0,1,,160.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1063.92328107653,300.0,33295.48518467032,0,5,1,2,100.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.040846378794508816,33295.48518467032,8,4,8,8_1,8_0,8_1_0 +22010,2,55.0,0.0,2,111,720.0,0.0,0.0,56,78,2320.3022722805235,0.0,1227.744391227884,3040.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122031,1,2,3,0,1,,450.0,,42,4.0,1.0,8.0,5.0,3.0,5,5,1097.08380309396,720.0,27695.630867994107,1,5,0,1,160.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10976460563363134,9231.876955998036,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +22011,2,30.0,0.0,2,112,336.0,180.0,0.0,45,53,0.0,0.0,572.9473825730125,516.0,0.0,341.730728629162,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,122032,2,3,0,1,1,395.0,0.0,293.0,43,2.0,0.0,2.0,3.0,1.8,2,2,876.579511707944,336.0,52395.02775057356,1,1,2,3,57.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009848262748450428,29108.34875031864,8,4,8,8_0,8_2,8_0_1 +22012,2,84.0,0.0,1,120,1386.0,0.0,0.0,78,74,0.0,0.0,2363.4079531136767,1506.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122033,2,1,2,0,1,,286.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1185.80513178769,1386.0,40381.10688277139,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037294668627385626,26920.737921847594,7,4,7,7_1,7_0,7_1_0 +22013,2,37.0,0.0,6,111,600.0,950.0,0.0,55,64,0.0,0.0,1023.1203260232367,1550.0,0.0,1803.5788455427996,60,0,0,0,0,0,0,0,0,2,2.0,1,,4,122034,2,2,4,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,348.864383213492,600.0,49080.223884434556,1,1,1,2,115.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03158094803417495,23371.535183064072,6,3,6,6_1,6_3,6_0_0 +22014,2,37.0,0.0,7,111,3000.0,,,46,37,0.0,0.0,,3075.0,103.91919190473907,,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,122035,2,1,0,0,2,,500.0,1200.0,43,2.0,0.0,6.0,5.0,2.4,2,2,102.31521492898099,3000.0,223505.55446557462,1,1,2,3,290.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013758047344070037,93127.31436065609,10,5,10,10_1,10_3,10_0_0 +22015,2,49.0,0.0,1,111,300.0,500.0,0.0,0,63,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,122036,2,2,3,0,1,,180.0,300.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1197.70750432104,300.0,29874.52644061544,0,1,2,3,50.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026778667156121767,29874.52644061544,8,4,8,8_1,8_3,8_1_0 +22016,2,26.0,0.0,1,111,0.0,0.0,400.0,46,52,0.0,0.0,252.12731616589753,400.0,0.0,478.69285902587234,41,1,2,2,2,1,2,2,2,2,20.0,2,,1,122037,2,2,0,1,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1395.66478678508,0.0,31132.608150091583,1,1,0,1,79.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.012848265011128639,20755.072100061054,5,3,5,5_0,5_2,5_1_0 +22017,2,63.0,0.0,1,111,160.0,480.0,0.0,0,77,0.0,0.0,272.8320869395298,692.0,72.05063972061909,911.2819430110987,70,0,0,0,0,0,0,0,0,0,,1,,1,122038,2,3,1,0,1,,160.0,470.0,11,0.0,0.0,4.0,1.0,1.0,1,1,102.952098701316,160.0,16841.350883078216,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041089340445682715,16841.350883078216,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +22018,2,74.0,0.0,6,111,360.0,,,77,77,0.0,0.0,,704.0,476.6426935364032,,50,0,0,0,0,0,0,0,0,0,,1,,4,122039,2,2,0,0,2,,708.0,,41,1.0,2.0,5.0,4.0,2.3,3,3,73.71854818674386,360.0,59679.306081237315,5,5,0,1,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011796383809183261,25947.52438314666,7,4,7,7_1,7_2,7_0_0 +22019,2,69.0,0.0,5,111,0.0,0.0,2125.0,52,74,0.0,0.0,1339.4263671313306,2125.0,0.0,2543.055813574947,50,0,0,0,0,0,0,0,0,0,,1,,3,122040,2,1,2,0,1,,432.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,636.397146530736,0.0,53750.81989593698,5,5,0,1,92.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03953428066984014,35833.87993062465,9,5,9,9_1,9_2,9_0_0 +22020,0,29.0,0.0,8,120,284.0,,,0,53,0.0,0.0,,347.0,87.29212119998083,,43,0,0,0,0,0,0,0,0,0,,1,2000.0,6,122041,2,1,0,0,2,,215.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,118.57794776616512,284.0,6036.840425531915,0,4,5,0,64.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05748039960314594,6036.840425531915,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22021,2,55.0,0.0,6,112,280.0,,,0,42,0.0,0.0,,346.0,91.44888887617039,,41,0,0,0,0,0,0,0,0,2,5.0,1,,4,122042,2,1,0,0,2,,250.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,113.53789289000248,280.0,73049.51203583756,0,1,0,1,85.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004736513501010862,48699.67469055837,10,5,10,10_1,10_2,10_0_0 +22022,2,60.0,0.0,1,111,240.0,0.0,0.0,0,69,0.0,139.05436408607352,409.2481304092947,420.0,103.91919190473907,0.0,71,2,2,2,1,1,1,2,2,2,25.0,1,,1,122043,2,3,3,0,2,,0.0,270.0,12,1.0,6.0,1.0,1.0,1.0,1,1,354.165343794426,240.0,11023.13922099307,0,1,2,3,21.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.03810166882407954,11023.13922099307,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +22023,1,54.0,51.0,8,111,420.0,0.0,0.0,78,63,0.0,0.0,716.1842282162656,420.0,0.0,0.0,50,2,1,1,2,1,2,2,2,2,45.0,2,,6,122044,2,1,0,1,1,592.0,0.0,353.0,41,0.0,1.0,3.0,2.0,1.5,2,2,217.676844503428,420.0,9509.245899132373,7,7,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04416754014514663,6339.497266088249,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +22024,1,35.0,392.0,2,111,378.0,378.0,0.0,0,52,0.0,0.0,644.5658053946391,756.0,0.0,717.6345301212402,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,122045,2,1,0,1,1,408.0,0.0,361.0,32,1.0,0.0,5.0,3.0,1.8,2,1,243.807484193997,378.0,22922.115891226513,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.032981248484541544,12734.508828459173,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +22025,2,43.0,0.0,8,112,414.0,,,56,63,0.0,0.0,,546.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,122046,1,3,0,0,2,,560.0,475.0,43,3.0,2.0,4.0,3.0,2.0,3,3,118.88646559537904,414.0,39401.0876409559,1,1,2,3,79.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013857485483026469,19700.54382047795,5,3,5,5_1,5_2,5_0_0 +22026,2,85.0,0.0,2,111,400.0,,,0,86,0.0,0.0,,532.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,122047,1,1,0,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,90.31390173949526,400.0,10866.390889421018,0,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04895829769182415,10866.390889421018,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +22027,2,35.0,0.0,9,300,1115.0,0.0,0.0,42,46,0.0,0.0,1901.2986058598483,1169.0,74.82181817141213,0.0,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,122048,2,1,1,0,1,,276.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1130.28318645762,1115.0,40795.23306600139,4,1,1,2,104.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028655308773667496,19426.30146000066,5,3,5,5_1,5_0,5_0_0 +22028,2,46.0,0.0,6,111,450.0,,,0,21,0.0,0.0,,525.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,0,,3,,4,122049,2,1,0,0,2,,0.0,465.0,12,1.0,0.0,1.0,1.0,1.0,1,1,164.1752820276703,450.0,7687.691910499139,0,1,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06829097811308014,7687.691910499139,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +22029,2,69.0,0.0,8,111,380.0,,,0,86,0.0,0.0,,729.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,122050,2,1,0,0,2,,340.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,120.30585496192515,380.0,21974.729683965532,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033174469514950844,21974.729683965532,6,3,6,6_1,6_2,6_0_0 +22030,2,66.0,0.0,7,111,250.0,,,0,74,0.0,0.0,,250.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,5,122051,2,2,0,0,2,,270.0,509.0,11,0.0,0.0,1.0,1.0,1.0,1,1,148.8993870908543,250.0,78332.12440810633,0,5,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0031915386169984726,78332.12440810633,10,5,10,10_0,10_2,10_0_0 +22031,1,33.0,378.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,2378.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,122052,1,1,2,0,2,,141.0,510.0,32,1.0,0.0,3.0,2.0,1.3,1,1,344.76143102687,0.0,15433.625779673326,0,1,2,3,81.0,6,5,9,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.15407915378717532,11872.019830517942,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +22032,2,40.0,0.0,5,111,0.0,,,55,47,0.0,0.0,,110.0,152.4148147936173,,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,122053,2,1,0,0,1,,0.0,600.0,43,2.0,1.0,3.0,2.0,1.5,2,2,156.2778794803794,0.0,45869.5881280795,1,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002398103067610988,30579.725418719667,8,4,8,8_1,8_2,8_0_0 +22033,2,53.0,0.0,1,111,1350.0,140.0,0.0,31,37,3058.5802680061443,0.0,2302.0207335522828,5654.0,0.0,265.7905667115705,10,0,0,0,0,0,0,0,0,3,70.0,1,,1,122054,2,1,2,0,2,,1180.0,,43,2.0,1.0,9.0,4.0,2.3,3,3,826.52906474896,1350.0,198028.30473997266,1,1,1,2,180.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028551474030059306,86099.2629304229,10,5,10,10_1,10_4,10_1_0 +22034,2,47.0,0.0,8,211,700.0,0.0,0.0,34,34,0.0,132.4327277010224,1193.6403803604428,900.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,122055,2,1,1,0,1,,150.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,1252.86752876077,700.0,74901.89378202119,1,1,0,1,145.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012015717554741297,28808.420685392768,8,4,8,8_1,8_1,8_0_0 +22035,2,49.0,0.0,7,111,177.0,0.0,0.0,0,52,0.0,0.0,301.8204961768548,366.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,15.0,2,,5,122056,1,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1497.90047054976,177.0,25044.628525923625,0,1,0,1,41.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014613912105789648,25044.628525923625,7,4,7,7_0,7_3,7_0_0 +22037,2,24.0,0.0,2,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,635.0,0.0,0.0,31,2,2,2,1,1,2,2,2,0,,2,,2,122058,2,1,0,1,1,,0.0,1440.0,22,2.0,0.0,5.0,4.0,2.5,4,4,1306.77100913909,0.0,45902.940087681185,0,1,3,4,73.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.01383353656186421,18361.176035072473,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +22038,2,58.0,0.0,2,111,564.0,0.0,0.0,0,37,2636.7071275915036,0.0,961.7331064618425,3064.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,122059,2,2,0,1,2,,0.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,982.279617045583,564.0,62463.73000712435,0,1,1,2,102.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.049052466121548184,31231.865003562176,8,4,8,8_0,8_4,8_0_1 +22039,1,73.0,188.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,627.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,2,122060,2,1,0,1,1,,0.0,369.0,21,1.0,2.0,4.0,2.0,1.5,2,2,278.793185878003,0.0,14127.848216638035,0,5,2,3,60.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04438043149852055,9418.56547775869,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22040,2,60.0,0.0,6,111,2383.0,0.0,0.0,77,21,0.0,0.0,4063.4928948556217,2473.0,124.70303028568689,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,4,122061,2,1,3,0,1,,319.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1244.05675682021,2383.0,319247.22779298405,6,1,0,1,180.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007746347609958315,212831.4851953227,10,5,10,10_1,10_2,10_0_0 +22041,1,31.0,370.0,1,111,0.0,0.0,1600.0,85,21,0.0,0.0,1008.5092646635901,1600.0,0.0,1914.7714361034893,50,0,0,0,0,0,0,0,0,0,,1,,1,122062,2,1,2,0,1,,600.0,518.0,42,1.0,0.0,5.0,4.0,2.1,2,2,1356.65656383553,0.0,18843.879786131663,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08490820458202751,8973.276088634126,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +22042,2,36.0,0.0,9,111,0.0,,,55,33,0.0,0.0,,834.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,122063,2,1,0,0,2,,263.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,116.51482318376482,0.0,78193.09409228574,1,1,1,2,102.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010665903551734239,33996.99743142859,9,5,9,9_1,9_2,9_0_0 +22043,2,71.0,0.0,2,120,600.0,0.0,0.0,77,72,2109.365702073203,529.7309108040896,1023.1203260232367,3105.0,145.4868686666347,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,122064,1,1,3,0,1,,220.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,2178.75315526931,600.0,52526.4359754272,5,5,0,1,125.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05911309119569,35017.623983618134,9,5,9,9_1,9_0,9_0_1 +22044,1,68.0,36.0,1,111,195.0,0.0,0.0,77,78,0.0,0.0,332.5141059575519,399.0,282.6602019808903,0.0,70,2,2,2,2,2,2,2,1,0,,2,,1,122065,1,1,0,1,1,48.0,0.0,253.0,41,0.0,3.0,3.0,2.0,1.5,2,2,299.955071943965,195.0,15217.838953141214,5,5,2,3,74.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.026219228711027973,10145.22596876081,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +22045,2,27.0,0.0,2,111,400.0,1049.0,0.0,54,62,0.0,0.0,682.0802173488245,1449.0,0.0,1991.5307462888386,42,0,0,0,0,0,0,0,0,0,,1,,2,122066,2,1,2,0,1,,320.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,341.994799717965,400.0,39046.56685285727,1,1,1,2,108.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03710953655568231,26031.044568571513,7,4,7,7_1,7_2,7_0_1 +22046,1,49.0,162.0,2,112,350.0,450.0,0.0,0,68,0.0,0.0,596.8201901802214,800.0,0.0,854.326821572905,71,2,2,2,2,2,2,2,1,0,,2,,2,122067,2,1,0,1,1,750.0,120.0,273.0,22,1.0,0.0,3.0,2.0,1.5,2,2,766.942266070639,350.0,20353.595457069307,0,1,2,3,50.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.039305094851049535,13569.063638046204,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +22047,2,78.0,0.0,5,111,280.0,240.0,0.0,0,74,0.0,0.0,477.4561521441771,520.0,0.0,455.6409715055494,50,2,1,2,2,1,2,2,2,0,,2,,3,122068,1,3,0,0,2,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1858.80165646397,280.0,24639.513171309463,0,5,0,1,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.021104313075693965,24639.513171309463,7,4,7,7_0,7_3,7_0_0 +22048,2,34.0,0.0,5,111,340.0,0.0,0.0,0,38,0.0,0.0,579.7681847465008,340.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,3,122069,2,1,0,0,1,,101.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1882.78316046102,340.0,30833.750608233488,0,1,1,2,67.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011026877797643286,30833.750608233488,8,4,8,8_0,8_2,8_0_0 +22049,2,37.0,0.0,5,211,400.0,1120.0,0.0,0,64,0.0,0.0,682.0802173488245,1571.0,70.66505049522257,2126.324533692564,50,2,1,1,1,2,2,2,2,2,15.0,2,,3,122070,1,3,0,1,1,750.0,0.0,311.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2693.10461816865,400.0,21844.330816203717,0,1,2,3,52.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.07191797328186687,21844.330816203717,6,3,6,6_0,6_1,6_0_0 +22050,2,43.0,0.0,1,111,870.0,2000.0,0.0,37,37,0.0,0.0,1483.5244727336933,2870.0,0.0,3797.008095879578,30,2,2,2,2,1,2,2,2,2,15.0,1,,1,122071,1,1,1,0,1,,336.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,105.643874914696,870.0,122855.6822029015,1,1,1,2,200.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.023360742853228963,58502.70581090548,10,5,10,10_1,10_3,10_1_0 +22052,2,54.0,0.0,1,111,450.0,1300.0,0.0,54,46,0.0,0.0,767.3402445174275,1750.0,0.0,2468.055262321726,60,0,0,0,0,0,0,0,0,3,45.0,1,,1,122073,2,1,1,0,1,,340.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,605.763860446619,450.0,22088.0,1,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07922854038391887,14725.333333333334,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +22053,2,72.0,0.0,8,300,214.0,0.0,0.0,0,78,0.0,0.0,364.9129162816211,304.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,122074,2,2,2,0,1,,170.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1271.61197677716,214.0,22098.581699398877,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013756538955089112,22098.581699398877,6,3,6,6_1,6_0,6_0_0 +22054,2,40.0,0.0,1,112,1100.0,0.0,0.0,46,62,0.0,794.5963662061343,1875.7205977092674,1775.0,103.91919190473907,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,122075,2,2,2,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1028.39929383602,1100.0,39753.32980195822,4,1,1,2,100.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04465034775307211,17284.05643563401,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22055,2,55.0,0.0,7,111,438.0,,,0,54,0.0,0.0,,530.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,3,60.0,2,,5,122076,2,1,0,0,2,,504.0,480.0,32,1.0,4.0,4.0,2.0,1.5,2,2,95.53674334268105,438.0,33452.0,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015843596795408345,22301.333333333332,6,3,6,6_0,6_2,6_0_0 +22056,2,63.0,0.0,7,111,512.0,684.0,0.0,0,54,0.0,0.0,873.0626782064953,1196.0,0.0,1298.5767687908158,20,1,2,2,2,1,2,2,2,2,10.0,2,,5,122077,2,1,0,1,1,,415.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,498.894849919356,512.0,29552.81367931083,0,1,0,1,61.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04046991981806758,29552.81367931083,8,4,8,8_0,8_2,8_0_0 +22057,2,61.0,0.0,9,111,720.0,0.0,0.0,74,33,0.0,0.0,1227.744391227884,755.0,48.49562288887823,0.0,31,0,0,0,0,0,0,0,0,3,35.0,1,2005.0,6,122078,2,1,1,0,1,,186.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1272.01475837574,720.0,121640.79746222025,5,1,0,1,65.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006206799164026291,81093.86497481349,10,5,10,10_1,10_3,10_0_0 +22058,2,73.0,0.0,1,111,1311.0,0.0,0.0,75,74,0.0,0.0,2235.5179123607722,1311.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,122079,2,1,2,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,672.284951750879,1311.0,50229.114531309446,5,5,0,1,93.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026100400379998952,33486.0763542063,8,4,8,8_1,8_4,8_1_0 +22059,2,91.0,0.0,1,111,1050.0,0.0,0.0,0,75,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,1,122080,1,2,0,0,2,,0.0,700.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1168.31666134775,1050.0,45992.33110330967,0,5,3,4,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02282989304546124,45992.33110330967,10,5,10,10_0,10_4,10_1_0 +22060,2,55.0,0.0,2,111,2800.0,0.0,0.0,0,37,0.0,0.0,4774.561521441771,2800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,90.0,1,,2,122081,2,1,2,0,1,,700.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,539.319703046206,2800.0,54281.768703523594,0,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05158269649047459,27140.884351761797,7,4,7,7_1,7_4,7_0_1 +22061,2,30.0,0.0,5,111,290.0,225.0,0.0,52,48,0.0,0.0,494.50815757789775,515.0,0.0,427.1634107864525,44,0,0,0,0,0,0,0,0,2,25.0,2,,3,122082,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1385.10204224298,290.0,49959.49412254743,1,1,1,2,69.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010308350976027461,23790.235296451156,6,3,6,6_0,6_3,6_0_0 +22062,0,55.0,0.0,5,111,750.0,,,52,52,0.0,0.0,,825.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,122083,2,1,0,0,2,,700.0,,43,3.0,0.0,1.0,3.0,2.0,3,3,87.27389632237833,750.0,27929.97321980047,1,1,5,0,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02953815936404588,13964.986609900236,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +22063,2,78.0,0.0,1,112,720.0,0.0,0.0,78,72,0.0,0.0,1227.744391227884,1120.0,554.2356901586083,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,122084,1,1,2,0,2,,250.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,917.235026435704,720.0,12744.359336734076,5,5,0,1,150.0,7,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.0878820166951614,8496.239557822717,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +22064,2,35.0,0.0,9,111,480.0,,,0,55,0.0,0.0,,503.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,1,10.0,2,2004.0,6,122085,2,1,0,0,2,,200.0,540.0,22,2.0,0.0,2.0,2.0,1.5,2,2,121.82503381810616,480.0,21154.788581374352,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023777122520754677,14103.192387582902,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +22065,2,48.0,0.0,9,111,1200.0,0.0,0.0,34,34,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,122086,2,1,1,0,1,,237.0,,43,2.0,0.0,9.0,5.0,3.0,5,4,626.912503782849,1200.0,63983.90306786868,1,1,0,1,251.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0187547170845008,21327.967689289562,6,3,6,6_1,6_2,6_0_0 +22066,2,47.0,0.0,8,112,438.0,,,0,11,0.0,0.0,,526.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,122087,2,1,0,0,2,,221.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,131.32889291987064,438.0,42732.60080765141,0,1,0,1,81.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012309103355717539,42732.60080765141,9,5,9,9_1,9_2,9_0_0 +22067,1,67.0,140.0,2,111,1200.0,220.0,0.0,52,78,0.0,0.0,2046.2406520464733,1420.0,0.0,417.6708905467536,71,2,1,2,2,1,2,2,2,0,,2,,2,122088,2,3,0,1,1,1500.0,740.0,386.0,42,1.0,4.0,4.0,3.0,2.0,3,2,314.280095581521,1200.0,33367.81107479606,1,5,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04255598297463924,16683.90553739803,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +22068,0,74.0,0.0,2,111,0.0,,,86,22,0.0,0.0,,916.0,0.0,,71,0,0,0,0,0,0,0,0,1,3.0,1,,2,122089,2,1,0,0,2,,140.0,,42,1.0,0.0,6.0,4.0,2.3,3,3,157.66964890706527,0.0,107790.39167594638,6,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008497974501788614,46865.38768519408,10,5,10,10_1,10_2,10_0_1 +22069,1,30.0,270.0,2,111,0.0,0.0,0.0,84,52,0.0,0.0,0.0,462.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,122090,2,3,0,0,1,,0.0,341.0,42,1.0,0.0,4.0,4.0,2.1,2,2,368.337362610397,0.0,10254.521114600186,3,4,2,3,68.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.045053298426799615,4883.105292666755,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22070,2,36.0,0.0,5,111,420.0,,,0,54,0.0,0.0,,546.0,174.58424239996165,,41,0,0,0,0,0,0,0,0,0,,1,,3,122091,2,1,0,0,2,,550.0,,32,2.0,3.0,6.0,5.0,2.4,2,2,87.53823627451203,420.0,16207.22249893146,0,4,0,1,183.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03368868416756774,6753.009374554776,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +22071,2,57.0,0.0,6,300,420.0,0.0,0.0,77,67,0.0,1324.327277010224,716.1842282162656,1484.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,3,45.0,1,,4,122092,1,1,3,0,1,,338.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1139.40396767663,420.0,22070.250336996556,6,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06723983540469215,14713.50022466437,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +22072,2,83.0,0.0,2,111,322.0,1416.0,0.0,0,77,0.0,0.0,549.0745749658037,1738.0,0.0,2688.281731882741,70,0,0,0,0,0,0,0,0,0,,2,,2,122093,2,2,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,419.358413703428,322.0,16978.346682163596,0,5,0,1,70.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10236567980001467,16978.346682163596,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +22073,1,30.0,339.0,2,111,600.0,,,0,81,0.0,0.0,,732.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,2,122094,2,2,0,0,2,,170.0,443.0,32,1.0,0.0,4.0,4.0,1.9,1,1,80.07597223781342,600.0,8708.251257275464,0,4,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08405820851671425,4583.29013540814,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22074,2,44.0,0.0,9,112,2500.0,0.0,0.0,46,21,0.0,0.0,4263.001358430153,2540.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,122095,2,1,1,0,1,,330.0,,43,3.0,1.0,7.0,6.0,3.0999999999999996,4,2,913.923052353519,2500.0,45195.87960706925,1,1,1,2,155.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05619981339189844,14579.316002280404,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +22075,2,49.0,0.0,1,111,242.0,52.0,0.0,0,33,267.8894441632968,0.0,412.6585314960388,548.0,0.0,98.72221049286902,31,0,0,0,0,0,0,0,0,3,45.0,2,,1,122096,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,887.854043700428,242.0,45696.55465704203,0,1,0,1,47.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011992151358298321,45696.55465704203,10,5,10,10_0,10_4,10_1_0 +22076,1,41.0,327.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1395.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122097,2,2,0,1,1,534.0,234.0,298.0,31,0.0,0.0,3.0,2.0,1.3,1,1,275.834751495496,0.0,12486.187436992468,0,7,2,3,71.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11172345498090744,9604.759566917282,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22077,1,26.0,116.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,394.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,4,122098,1,2,0,0,1,,0.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1772.16694427114,0.0,12366.996020198767,0,1,2,3,51.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03185898979481255,12366.996020198767,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +22078,1,42.0,180.0,9,111,480.0,,,85,22,0.0,0.0,,606.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,122099,2,2,0,0,1,,960.0,,42,3.0,1.0,5.0,6.0,3.0999999999999996,4,3,180.52929943611161,480.0,17068.250613534496,6,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03550451734751681,5505.887294688548,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +22079,2,42.0,0.0,1,111,0.0,0.0,2200.0,47,46,0.0,0.0,1386.7002389124364,2200.0,0.0,2632.810724642298,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,122100,2,1,2,0,1,,600.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1413.43834754488,0.0,51357.04895044992,4,1,0,1,100.0,5,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04283735231988493,34238.03263363328,9,5,9,9_1,9_2,9_1_0 +22080,2,47.0,0.0,5,111,150.0,150.0,0.0,0,69,0.0,0.0,255.78008150580916,350.0,69.27946126982604,284.77560719096834,50,2,2,2,2,1,2,2,2,1,10.0,2,,3,122101,2,3,0,1,1,274.0,100.0,233.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1222.94960812162,150.0,15042.27878532432,0,1,2,3,50.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.023267751182850703,15042.27878532432,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +22081,2,57.0,0.0,1,221,800.0,0.0,0.0,68,78,0.0,0.0,1364.160434697649,890.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,122102,1,2,3,0,2,,0.0,400.0,42,1.0,3.0,4.0,2.0,1.5,2,2,552.80708781033,800.0,34483.747044881595,1,5,2,3,80.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02580926019558255,22989.16469658773,6,3,6,6_1,6_1,6_1_0 +22082,2,33.0,0.0,9,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,484.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,122103,2,1,0,0,1,,168.0,680.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2984.09417682162,0.0,20164.670835563567,0,1,2,3,80.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024002375439047083,20164.670835563567,5,3,5,5_0,5_0,5_0_0 +22083,1,50.0,167.0,5,111,300.0,190.0,0.0,0,22,0.0,0.0,511.56016301161833,490.0,0.0,360.7157691085599,71,0,0,0,0,0,0,0,0,0,,2,,3,122104,2,2,0,1,1,,132.0,,32,1.0,3.0,4.0,2.0,1.5,2,1,1986.11189268357,300.0,13101.783651953445,0,1,1,2,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03739948796414007,8734.52243463563,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +22084,2,55.0,0.0,5,111,340.0,110.0,0.0,56,48,822.6526238085492,0.0,579.7681847465008,1230.0,0.0,208.8354452733768,50,1,2,2,2,1,2,2,2,2,15.0,2,,3,122105,2,1,0,1,1,780.0,0.0,423.0,43,2.0,1.0,5.0,3.0,2.0,3,3,1250.08235289975,340.0,9063.782152045662,1,1,2,3,70.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.13570493855287483,4531.891076022831,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +22085,2,52.0,0.0,1,111,638.0,1234.0,0.0,43,46,0.0,0.0,1087.917946671375,1872.0,0.0,2342.7539951576996,33,0,0,0,0,0,0,0,0,2,5.0,1,,1,122106,2,1,3,0,1,,291.0,,43,2.0,1.0,7.0,3.0,2.0,3,2,1553.80776906077,638.0,101489.58072970941,1,1,1,2,130.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018445243211572385,50744.79036485471,10,5,10,10_1,10_3,10_1_0 +22086,2,70.0,0.0,2,111,500.0,100.0,0.0,0,75,0.0,0.0,852.6002716860306,1249.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,0,,2,,2,122107,2,3,0,1,1,701.0,0.0,349.0,11,0.0,1.0,3.0,1.0,1.0,1,1,234.175641679745,500.0,22460.840414263173,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055607892534905105,22460.840414263173,6,3,6,6_0,6_4,6_0_1 +22087,2,50.0,0.0,1,111,150.0,0.0,0.0,0,43,0.0,0.0,255.78008150580916,590.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,2,,1,122108,1,1,0,1,2,,300.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1029.58901729242,150.0,33027.11724761241,0,1,1,2,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01786410831973693,33027.11724761241,8,4,8,8_0,8_4,8_1_0 +22088,2,55.0,0.0,9,111,3500.0,,,74,21,0.0,0.0,,3550.0,69.27946126982604,,60,0,0,0,0,0,0,0,0,0,,1,2010.0,6,122109,2,1,0,0,2,,200.0,2000.0,42,1.0,2.0,7.0,2.0,1.5,2,2,163.83550232266302,3500.0,20324.13315926893,5,1,2,3,250.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17466919608234327,13549.422106179287,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +22089,0,89.0,0.0,6,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,200.0,277.1178450793042,0.0,71,2,2,2,2,2,2,2,1,0,,2,,4,122110,2,2,0,0,1,,0.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,2055.36373982575,0.0,35092.10153749415,0,5,5,0,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.005699288194134228,23394.73435832943,6,3,6,6_0,6_3,6_0_0 +22090,2,35.0,0.0,1,111,550.0,0.0,0.0,0,67,0.0,794.5963662061343,937.8602988546337,1400.0,346.39730634913025,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,122111,2,1,3,0,1,,240.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,241.727560501567,550.0,27249.71558589206,0,4,0,1,120.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05137668301847595,18166.477057261374,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +22091,2,34.0,0.0,1,112,1900.0,0.0,0.0,43,43,0.0,397.2981831030672,3239.8810324069163,2251.0,70.66505049522257,0.0,33,2,2,2,2,1,2,2,1,2,30.0,1,,1,122112,2,1,1,0,1,,276.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,982.694529652033,1900.0,52141.226845620025,1,1,1,2,130.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.04317121280373342,28967.34824756668,8,4,8,8_1,8_0,8_1_0 +22092,1,78.0,31.0,9,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,829.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,2010.0,6,122113,2,3,3,0,1,,240.0,277.0,11,0.0,5.0,2.0,1.0,1.0,1,1,919.010005256252,0.0,13929.318166702642,0,5,2,3,50.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.05951475801462301,13929.318166702642,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +22093,2,31.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,991.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,1,122114,2,2,0,0,1,,104.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,323.764982484412,0.0,16301.17162557969,0,1,2,3,43.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06079317626746101,16301.17162557969,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +22094,2,51.0,0.0,7,111,644.0,0.0,0.0,85,54,0.0,397.2981831030672,1098.1491499316073,944.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,122115,2,1,2,0,1,,400.0,,42,1.0,0.0,3.0,3.0,2.0,3,3,452.657099127419,644.0,33199.95488623504,7,1,0,1,45.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028433773576945123,16599.97744311752,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +22095,2,45.0,0.0,7,111,4000.0,0.0,0.0,37,37,0.0,0.0,6820.802173488245,4000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,,5,122116,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,714.615111894314,4000.0,97680.63088345408,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04094977646870984,42469.83951454526,9,5,9,9_0,9_4,9_0_0 +22096,2,74.0,0.0,5,221,440.0,,,75,75,0.0,0.0,,701.0,361.63878782849196,,71,0,0,0,0,0,0,0,0,0,,1,,3,122117,2,1,0,0,1,,480.0,,41,1.0,4.0,4.0,5.0,2.5999999999999996,3,3,103.84066580684228,440.0,100132.8088407924,5,5,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00700070244823118,38512.61878492016,9,5,9,9_1,9_1,9_0_0 +22097,2,47.0,0.0,2,111,380.0,0.0,0.0,0,52,0.0,0.0,647.9762064813832,465.0,117.77508415870429,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,122118,1,2,0,1,1,600.0,200.0,346.0,32,2.0,0.0,4.0,3.0,2.0,3,2,360.737903578196,380.0,18930.666313044218,0,1,2,3,90.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02456331923613226,9465.333156522109,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +22098,0,78.0,0.0,1,120,0.0,0.0,1500.0,78,78,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,71,0,0,0,0,0,0,0,0,0,,1,,1,122119,2,2,4,0,1,,320.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1606.66460401655,0.0,25424.648523612417,5,5,0,1,100.0,0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.058997865736744315,16949.765682408277,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +22099,2,81.0,0.0,1,112,448.0,0.0,0.0,0,72,1898.4291318658827,0.0,763.9298434306834,2368.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,122120,2,2,4,0,1,,167.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1220.15373066312,448.0,17805.63763625029,0,5,0,1,100.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13299158661855595,17805.63763625029,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22100,2,26.0,0.0,9,112,386.0,790.0,0.0,54,54,0.0,0.0,658.2074097416156,1176.0,0.0,1499.8181978724333,31,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,122121,2,1,1,0,1,,540.0,451.0,43,2.0,0.0,3.0,2.0,1.5,2,2,339.438227717876,386.0,37148.461356536616,1,1,2,3,75.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031656762004574165,24765.640904357744,7,4,7,7_1,7_1,7_0_0 +22101,2,62.0,0.0,6,111,895.0,650.0,0.0,77,38,0.0,2979.7363732730037,1526.1544863179947,3795.0,0.0,1234.027631160863,71,0,0,0,0,0,0,0,0,0,,1,,4,122122,2,1,2,0,1,,800.0,,42,1.0,2.0,7.0,3.0,2.0,3,2,754.437068464142,895.0,75086.7733717757,7,1,0,1,171.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05054152455333098,37543.38668588785,9,5,9,9_1,9_4,9_0_0 +22103,2,41.0,0.0,2,112,0.0,,,0,42,0.0,0.0,,516.0,349.1684847999233,,12,0,0,0,0,0,0,0,0,0,,1,,2,122124,1,1,0,0,2,,360.0,,22,1.0,5.0,5.0,3.0,2.0,3,3,87.54700135818776,0.0,22662.603217109066,0,1,0,1,84.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022768787639120262,11331.301608554533,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +22104,2,32.0,0.0,1,111,648.0,0.0,0.0,0,34,0.0,0.0,1104.9699521050957,648.0,0.0,0.0,10,2,2,2,2,1,2,2,2,1,40.0,2,,1,122125,1,2,0,0,2,,0.0,756.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1141.44588948617,648.0,26936.060401914645,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.024056970111113185,17957.37360127643,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +22105,0,23.0,0.0,1,111,1000.0,0.0,0.0,0,67,0.0,0.0,1705.2005433720612,1140.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,122126,2,1,0,0,1,,369.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,994.552992327355,1000.0,25869.627109095098,0,1,5,0,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.044067121462265116,25869.627109095098,7,4,7,7_0,7_4,7_1_0 +22106,0,83.0,0.0,2,111,250.0,,,0,77,0.0,0.0,,450.0,277.1178450793042,,71,2,2,2,2,1,2,2,2,0,,1,,2,122127,1,3,0,0,2,,330.0,,11,0.0,6.0,1.0,1.0,1.0,1,1,129.91579109033142,250.0,7490.032702237521,0,5,5,0,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.06007984449327839,7490.032702237521,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22107,1,36.0,309.0,2,111,220.0,0.0,0.0,85,56,493.5915742851295,0.0,375.14411954185346,688.0,0.0,0.0,71,2,1,2,2,2,2,2,1,3,20.0,2,,2,122128,2,2,0,1,1,,0.0,410.0,42,1.0,0.0,3.0,4.0,2.1,2,2,101.919569530682,220.0,11678.834862385322,6,1,2,3,94.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05890998615074867,5561.349934469201,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22108,2,66.0,0.0,8,221,650.0,0.0,0.0,0,35,0.0,0.0,1108.3803531918397,722.0,99.7624242285495,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,122129,2,1,0,0,1,,260.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2910.89698295821,650.0,36545.0,0,1,2,3,70.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019756464632644685,36545.0,9,5,9,9_0,9_1,9_0_0 +22109,2,56.0,0.0,7,211,780.0,,,85,68,0.0,0.0,,1060.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,,5,122130,2,2,0,0,2,,500.0,,42,1.0,0.0,5.0,6.0,3.3,5,3,74.09632907046011,780.0,45887.99043995585,6,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02309972587243722,13905.451648471471,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +22110,2,74.0,0.0,1,120,700.0,0.0,0.0,78,78,2636.7071275915036,0.0,1193.6403803604428,3260.0,83.13535352379125,0.0,70,2,2,1,2,1,2,2,2,0,,1,,1,122131,1,2,2,0,1,,430.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,205.610992813363,700.0,26997.4850635451,5,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.1207519882806418,17998.323375696735,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22111,2,43.0,0.0,1,111,1200.0,750.0,0.0,47,45,0.0,0.0,2046.2406520464733,1950.0,0.0,1423.8780359548418,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,122132,2,1,1,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1416.74036965989,1200.0,46864.88138265727,4,1,1,2,160.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04160898187446631,20376.035383764032,5,3,5,5_1,5_2,5_1_0 +22113,2,87.0,0.0,5,111,181.0,,,77,77,0.0,0.0,,457.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,122134,2,1,0,0,2,,197.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,79.91271218884441,181.0,30440.575479066698,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015012856781050958,20293.716986044466,5,3,5,5_1,5_2,5_0_0 +22114,1,54.0,240.0,5,112,390.0,,,0,46,0.0,0.0,,463.0,101.14801345394604,,50,0,0,0,0,0,0,0,0,0,,1,,3,122135,2,2,0,0,2,,343.0,533.0,22,1.0,1.0,2.0,2.0,1.5,2,2,126.76922252959608,390.0,7282.275862068965,0,4,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06357902512477154,4854.850574712643,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +22115,2,50.0,0.0,2,111,0.0,0.0,0.0,56,21,0.0,0.0,0.0,484.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,122136,2,2,0,1,1,,0.0,350.0,43,2.0,1.0,3.0,2.0,1.5,2,2,282.507592260663,0.0,34078.4083700756,1,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014202541232090008,22718.938913383736,6,3,6,6_0,6_4,6_0_1 +22116,2,63.0,0.0,2,111,1990.0,0.0,0.0,78,78,0.0,0.0,3393.3490813104017,1990.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122137,2,1,2,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1543.82191064184,1990.0,29845.017983576214,5,5,0,1,120.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06667779530557166,19896.678655717475,5,3,5,5_1,5_3,5_0_1 +22117,1,31.0,32.0,2,111,0.0,0.0,438.0,85,63,0.0,0.0,276.07941120165776,438.0,0.0,524.1686806333302,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,122138,2,3,0,1,1,182.0,0.0,660.0,42,1.0,0.0,1.0,3.0,1.8,2,2,335.790251010544,0.0,31769.405348424603,6,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013786849177575802,17649.669638013667,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +22118,2,54.0,0.0,8,111,552.0,,,56,64,0.0,0.0,,690.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,122139,2,1,0,0,2,,444.0,600.0,43,2.0,2.0,4.0,2.0,1.5,2,2,142.73913582849062,552.0,42953.84849279544,4,1,2,3,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016063752706948535,28635.89899519696,8,4,8,8_0,8_2,8_0_0 +22119,2,58.0,0.0,1,111,500.0,2200.0,0.0,75,37,0.0,0.0,852.6002716860306,2700.0,0.0,4176.708905467536,10,2,2,1,1,2,2,2,2,3,60.0,2,,1,122140,1,3,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,2.0,3,3,703.789716105881,500.0,110701.31313227059,7,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.024389954586843305,55350.656566135294,10,5,10,10_0,10_4,10_1_0 +22120,1,54.0,200.0,2,112,1.0,1.0,0.0,0,68,0.0,0.0,1.7052005433720612,962.0,0.0,1.898504047939789,70,2,2,2,1,2,2,2,2,3,6.0,2,,2,122141,2,3,0,1,1,,221.0,399.0,22,2.0,0.0,3.0,3.0,2.0,3,3,310.390656620053,1.0,55550.21856776943,0,1,3,4,55.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.017317663634867465,27775.109283884714,7,4,7,7_0,7_2,7_0_1 +22121,2,58.0,0.0,2,111,160.0,170.0,0.0,0,69,0.0,0.0,272.8320869395298,330.0,0.0,322.74568814976413,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,122142,2,3,0,0,1,,0.0,296.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2590.21867740919,160.0,15519.785223475817,0,1,3,4,15.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.021263180852582254,15519.785223475817,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +22122,1,37.0,226.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,327.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,2,,1,122143,2,1,0,0,1,,0.0,550.0,32,1.0,0.0,1.0,2.0,1.3,1,1,908.44643700996,0.0,13315.597161071662,0,1,3,4,17.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.024557666925820582,10242.7670469782,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +22123,2,44.0,0.0,7,112,960.0,0.0,0.0,21,63,2109.365702073203,158.91927324122688,1636.9925216371787,3110.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,122144,2,1,1,0,1,,418.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,834.768278220142,960.0,35022.28143739726,1,1,1,2,140.0,10,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08880061127825616,16677.276874951076,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +22125,2,62.0,0.0,6,111,560.0,,,78,75,0.0,0.0,,686.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,,4,122146,2,2,0,0,2,,200.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,121.4713798278786,560.0,49038.0,5,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01398915127044333,32692.0,8,4,8,8_1,8_2,8_0_0 +22126,2,32.0,0.0,9,111,350.0,,,84,35,0.0,0.0,,413.0,87.29212119998083,,10,0,0,0,0,0,0,0,0,0,,2,2006.0,6,122147,1,1,0,0,1,,222.0,600.0,42,1.0,0.0,2.0,2.0,1.5,2,2,199.6032172949942,350.0,40788.03534841761,3,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010125518340662675,27192.02356561174,7,4,7,7_0,7_2,7_0_0 +22127,2,72.0,0.0,2,400,650.0,0.0,0.0,0,75,2425.7705573841836,0.0,1108.3803531918397,3045.0,131.6309764126695,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122148,2,1,2,0,1,,200.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1975.15464889042,650.0,36935.19226068521,0,5,0,1,160.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08244169892249832,36935.19226068521,9,5,9,9_1,9_0,9_0_1 +22128,0,77.0,0.0,1,111,671.0,0.0,0.0,0,77,3164.0485531098047,397.2981831030672,1144.189564602653,4019.0,66.50828281903301,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,122149,1,2,1,0,2,,227.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,253.104599043777,671.0,17511.34325053518,0,5,0,1,120.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.22950837879767855,17511.34325053518,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +22129,2,51.0,0.0,8,112,1106.0,0.0,0.0,74,35,0.0,0.0,1885.9518009694996,1136.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2000.0,6,122150,2,1,1,0,1,,251.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1054.81975871796,1106.0,62682.28043720315,5,1,1,2,135.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018123144085960247,41788.18695813543,9,5,9,9_1,9_0,9_0_0 +22130,2,77.0,0.0,8,111,661.0,1108.0,0.0,74,72,0.0,0.0,1127.1375591689325,1769.0,0.0,2103.542485117286,20,0,0,0,0,0,0,0,0,0,,2,1999.0,6,122151,2,1,0,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1383.44960167133,661.0,78130.52488605847,5,5,0,1,164.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022641598819153185,52087.01659070564,10,5,10,10_0,10_2,10_0_0 +22131,2,61.0,0.0,5,300,550.0,0.0,0.0,46,74,0.0,0.0,937.8602988546337,2050.0,2078.3838380947814,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122152,1,2,1,0,2,,320.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,787.368334535244,550.0,86816.17448839646,1,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02361311140557104,57877.44965893097,10,5,10,10_1,10_0,10_0_0 +22132,2,35.0,0.0,9,112,531.0,1179.0,0.0,42,42,0.0,0.0,905.4614885305645,1710.0,0.0,2238.3362725210113,20,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,122153,2,1,1,0,1,,612.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,220.599813715147,531.0,57431.40871606773,1,1,1,2,100.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029774648371485777,27348.289864794155,7,4,7,7_1,7_0,7_0_0 +22134,2,70.0,0.0,2,112,1030.0,0.0,0.0,78,78,0.0,198.6490915515336,1756.356559673223,1250.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122155,2,1,1,0,1,,240.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1153.89227347379,1030.0,43139.55571381483,5,5,0,1,80.0,9,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028975727248848445,28759.703809209885,8,4,8,8_1,8_0,8_0_1 +22135,2,64.0,0.0,6,112,700.0,0.0,0.0,74,74,0.0,463.51454695357836,1193.6403803604428,1050.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,122156,2,1,2,0,1,,540.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,703.376594091243,700.0,96377.69357656137,5,5,0,1,147.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010894637140967599,64251.79571770758,10,5,10,10_1,10_1,10_0_0 +22136,2,42.0,0.0,6,111,348.0,417.0,0.0,0,56,0.0,0.0,593.4097890934773,765.0,0.0,791.676187990892,20,2,2,1,2,1,2,2,2,2,25.0,2,,4,122157,2,3,0,0,1,,209.0,562.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2161.73679527658,348.0,11070.0,0,1,2,3,42.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.06910569105691057,11070.0,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +22137,2,55.0,0.0,2,111,120.0,2300.0,0.0,0,78,0.0,0.0,204.62406520464734,2420.0,0.0,4366.559310261515,50,0,0,0,0,0,0,0,0,0,,2,,2,122158,2,2,0,0,2,,0.0,373.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1244.36631554786,120.0,24940.614480458997,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09703048823821374,24940.614480458997,7,4,7,7_0,7_4,7_0_1 +22138,2,54.0,0.0,2,112,1130.0,900.0,0.0,0,52,0.0,0.0,1926.8766140104292,2030.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,3,15.0,1,,2,122159,1,3,4,0,1,,600.0,417.0,32,2.0,1.0,5.0,3.0,1.8,2,2,973.341529334417,1130.0,21331.147698224486,0,1,2,3,139.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0951659999133084,11850.637610124713,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +22139,1,29.0,363.0,9,111,310.0,,,0,81,0.0,0.0,,478.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,122160,2,2,0,0,2,,200.0,392.0,32,1.0,0.0,2.0,3.0,1.6,1,1,128.2002245843361,310.0,18860.090907064205,0,4,2,3,94.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0253445225876913,11787.556816915127,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +22140,2,37.0,0.0,6,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,683.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,122161,2,1,0,1,2,,148.0,710.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1069.39962203969,0.0,42137.533541540804,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016208827204531852,42137.533541540804,9,5,9,9_0,9_4,9_0_0 +22141,2,57.0,0.0,5,111,6021.0,0.0,0.0,85,21,0.0,0.0,10267.01247164318,6021.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,3,122162,2,2,2,0,1,,1998.0,,42,3.0,1.0,5.0,4.0,2.5,4,4,1117.36805840547,6021.0,22543.856404229093,6,4,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.267079415874495,9017.542561691636,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +22142,2,48.0,0.0,1,120,392.0,0.0,0.0,0,52,0.0,0.0,668.438613001848,417.0,34.63973063491302,0.0,44,0,0,0,0,0,0,0,0,2,7.0,1,,1,122163,2,1,2,0,1,,141.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1122.03182262347,392.0,26985.732925281765,0,1,0,1,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.015452609760668415,26985.732925281765,7,4,7,7_1,7_0,7_1_0 +22143,0,78.0,0.0,6,111,485.0,0.0,0.0,0,77,0.0,662.163638505112,827.0222635354497,1051.0,91.44888887617039,0.0,41,2,2,2,2,1,2,2,2,0,,1,,4,122164,2,1,2,0,1,,226.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1261.76656822353,485.0,18863.6204078856,0,5,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.05571570977756996,18863.6204078856,5,3,5,5_1,5_3,5_0_0 +22144,0,81.0,0.0,2,111,729.0,1338.0,0.0,0,86,0.0,0.0,1243.0911961182326,2067.0,0.0,2540.1984161434375,71,0,0,0,0,0,0,0,0,0,,1,,2,122165,2,1,3,0,1,,233.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2768.10264201406,729.0,11517.660004474426,0,5,0,1,100.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1794635367945402,11517.660004474426,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +22145,2,33.0,0.0,2,111,350.0,0.0,0.0,54,46,0.0,0.0,596.8201901802214,350.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,1.0,2,,2,122166,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,2046.79113413866,350.0,57355.26084581572,1,1,1,2,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006102317291187663,31864.033803230956,8,4,8,8_0,8_3,8_0_1 +22146,1,61.0,459.0,7,300,0.0,0.0,0.0,85,77,0.0,0.0,0.0,436.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,122167,2,2,5,0,1,,552.0,460.0,41,0.0,6.0,5.0,5.0,2.4,2,2,1000.53749767451,0.0,19603.62247094391,6,5,2,3,85.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.022240787418051453,8168.176029559962,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +22147,2,24.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122168,1,2,0,0,2,,0.0,280.0,12,1.0,0.0,1.0,1.0,1.0,1,1,335.126965029454,0.0,5571.0888888888885,0,1,3,4,25.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07179924929896012,5571.0888888888885,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +22148,2,51.0,0.0,5,112,787.0,0.0,0.0,85,47,0.0,940.272366677259,1341.992827633812,1587.0,124.70303028568689,0.0,20,2,2,2,2,1,2,2,2,2,30.0,1,,3,122169,2,1,2,0,1,,250.0,,42,1.0,0.0,6.0,4.0,2.5,4,4,709.934273724348,787.0,78979.02020468783,6,1,0,1,109.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02009394388392024,31591.60808187513,8,4,8,8_1,8_0,8_0_0 +22149,1,41.0,205.0,2,111,350.0,120.0,0.0,85,67,0.0,0.0,596.8201901802214,470.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,122170,1,1,0,1,1,68.0,300.0,355.0,42,1.0,0.0,4.0,5.0,2.4,2,2,342.613676034953,350.0,15351.268859797447,6,1,2,3,88.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.030616361702247033,6396.362024915603,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22150,1,31.0,276.0,5,111,400.0,650.0,0.0,85,67,0.0,0.0,682.0802173488245,1050.0,0.0,1234.027631160863,60,2,2,2,1,1,2,2,2,0,,2,,3,122171,2,3,0,1,1,835.0,500.0,216.0,42,1.0,1.0,5.0,6.0,2.6999999999999997,3,2,421.622619833874,400.0,21140.11852387841,6,1,2,3,82.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.04966859569940409,7829.673527362374,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +22151,2,34.0,0.0,1,111,285.0,1200.0,0.0,46,34,0.0,42.378472864327165,485.98215486103743,1517.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,122172,2,3,0,0,2,,0.0,1500.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1164.84870089771,285.0,24690.35683443809,4,1,3,4,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06144099132192733,16460.237889625394,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +22152,2,55.0,0.0,2,111,540.0,0.0,0.0,0,46,0.0,0.0,920.8082934209131,540.0,0.0,0.0,71,1,2,2,1,1,2,2,2,3,90.0,2,,2,122173,2,3,0,1,1,,248.0,328.0,22,2.0,1.0,4.0,2.0,1.5,2,2,275.521187124405,540.0,38440.08902075771,0,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014047834272922706,25626.726013838474,7,4,7,7_0,7_4,7_0_1 +22153,2,39.0,0.0,9,300,1918.0,0.0,0.0,62,68,0.0,0.0,3270.5746421876133,1918.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,122174,2,1,1,0,1,,410.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,925.268734158471,1918.0,36442.111627980245,1,4,1,2,116.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05263141772847653,17353.3864895144,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +22154,2,35.0,0.0,6,211,1500.0,,,37,53,0.0,0.0,,1575.0,103.91919190473907,,43,0,0,0,0,0,0,0,0,2,3.0,1,,4,122175,2,2,0,0,2,,600.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,87.24439513105705,1500.0,83420.33974112828,1,1,1,2,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018880287528048587,55613.55982741885,10,5,10,10_1,10_2,10_0_0 +22155,2,73.0,0.0,2,111,659.0,1625.0,0.0,77,74,0.0,0.0,1123.7271580821882,2284.0,0.0,3085.069077902157,70,0,0,0,0,0,0,0,0,0,,1,,2,122176,2,3,4,0,1,,680.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,299.800944020623,659.0,32831.41565401875,5,5,0,1,93.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06956751497008402,21887.6104360125,6,3,6,6_1,6_2,6_0_1 +22156,2,76.0,0.0,2,111,1036.0,0.0,0.0,0,77,0.0,0.0,1766.5877629334555,1208.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122177,2,1,0,1,1,,0.0,337.0,21,1.0,0.0,3.0,2.0,1.5,2,2,298.542723161403,1036.0,30535.941722458807,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039559939266963266,20357.294481639205,5,3,5,5_0,5_4,5_0_1 +22157,2,71.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2590.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,122178,2,1,1,0,1,,169.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,624.755252277173,0.0,21247.835569453597,0,5,0,1,60.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1218947686004991,21247.835569453597,5,3,5,5_1,5_2,5_0_1 +22158,2,54.0,0.0,1,111,200.0,0.0,0.0,0,63,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,122179,2,2,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,791.542278420991,200.0,4967.706654445654,0,4,0,1,13.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04026002618754025,4967.706654445654,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +22159,2,64.0,0.0,1,111,1020.0,1500.0,0.0,74,31,0.0,0.0,1739.3045542395023,2520.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,1,1.0,2,,1,122180,2,1,0,0,2,,0.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,910.778301788739,1020.0,131209.70038894645,5,1,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019205897068051633,87473.13359263097,10,5,10,10_0,10_4,10_1_0 +22160,2,34.0,0.0,1,111,860.0,1489.0,0.0,42,37,0.0,0.0,1466.4724672999725,2349.0,0.0,2826.8725273823457,20,0,0,0,0,0,0,0,0,3,15.0,1,,1,122181,1,1,1,0,1,,620.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,275.15711917663,860.0,77908.6168032751,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03015070856579825,37099.3413348929,9,5,9,9_1,9_3,9_1_0 +22161,2,62.0,0.0,1,111,734.0,410.0,0.0,34,38,0.0,0.0,1251.617198835093,1144.0,0.0,778.3866596553135,12,0,0,0,0,0,0,0,0,0,,2,,1,122182,2,2,0,0,1,,0.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,1019.10050212813,734.0,104441.41531155875,1,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010953509166716464,69627.61020770583,10,5,10,10_0,10_4,10_1_0 +22162,2,82.0,0.0,2,111,400.0,800.0,0.0,78,78,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,2,122183,2,1,2,0,1,,300.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1396.2136194831,400.0,31222.7278271963,5,5,0,1,50.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03843354131776884,20815.151884797535,5,3,5,5_1,5_2,5_0_1 +22163,1,40.0,380.0,9,400,320.0,,,81,81,0.0,0.0,,584.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122184,2,1,0,0,1,,336.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,98.49963420908608,320.0,14545.17466557007,4,4,1,2,85.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04015077257080923,5594.297948296182,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +22164,2,35.0,0.0,2,111,0.0,0.0,1460.0,45,33,0.0,0.0,920.2647040055259,1460.0,0.0,1747.228935444434,12,0,0,0,0,0,0,0,0,2,20.0,1,,2,122185,2,1,1,0,1,,688.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1313.41661820178,0.0,80545.70757188341,1,1,1,2,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018126353892875247,44747.615317713,10,5,10,10_1,10_3,10_0_1 +22165,2,74.0,0.0,5,221,2000.0,0.0,0.0,86,74,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122186,2,1,4,0,1,,280.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1443.59296654553,2000.0,40972.879940881976,6,5,0,1,106.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048812775740580475,27315.253293921316,7,4,7,7_1,7_1,7_0_0 +22166,2,56.0,0.0,1,112,443.0,0.0,0.0,0,43,0.0,1787.8418239638022,755.4038407138231,1843.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,122187,2,3,1,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,630.411639372357,443.0,33188.619120416515,0,1,0,1,83.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055531084113898815,33188.619120416515,8,4,8,8_1,8_0,8_1_0 +22167,2,45.0,0.0,2,111,172.0,273.0,0.0,0,68,923.9021775080629,0.0,293.2944934599945,1321.0,0.0,518.2916050875624,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,122188,2,1,0,1,1,792.0,0.0,486.0,32,1.0,0.0,4.0,2.0,1.5,2,1,183.347554660277,172.0,27036.603113537305,0,1,2,3,67.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04885968826973576,18024.402075691538,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +22168,2,87.0,0.0,2,111,160.0,800.0,0.0,0,75,0.0,0.0,272.8320869395298,960.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,0,,2,,2,122189,2,1,0,0,1,,133.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1834.67232321615,160.0,23592.672307336532,0,5,0,1,45.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0406906003480357,23592.672307336532,6,3,6,6_0,6_3,6_0_1 +22169,1,33.0,346.0,2,111,324.0,1112.0,0.0,85,67,0.0,0.0,552.4849760525478,1436.0,0.0,2111.1365013090453,71,2,2,2,2,1,2,1,2,0,,2,,2,122190,1,3,0,0,1,,420.0,299.0,42,1.0,0.0,4.0,5.0,2.4,2,2,388.698157051656,324.0,17174.91756969969,6,4,2,3,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08361029938993232,7156.215654041538,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22170,1,70.0,220.0,6,111,790.0,0.0,0.0,0,77,0.0,0.0,1347.1084292639284,790.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,2,,4,122191,2,1,0,1,1,648.0,0.0,320.0,21,2.0,1.0,4.0,5.0,2.5999999999999996,3,3,253.052511752027,790.0,36721.109244180705,0,5,2,3,78.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.02151351133613137,14123.50355545412,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +22171,2,85.0,0.0,1,111,300.0,500.0,0.0,0,78,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,2,,1,122192,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1637.74757554853,300.0,38138.90120623943,0,5,0,1,78.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020975958265654543,38138.90120623943,9,5,9,9_0,9_3,9_1_0 +22172,2,67.0,0.0,1,111,250.0,370.0,0.0,0,75,0.0,0.0,426.3001358430153,620.0,0.0,702.446497737722,70,0,0,0,0,0,0,0,0,0,,2,,1,122193,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1259.5866356483,250.0,22873.74191514441,0,5,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02710531588141711,22873.74191514441,6,3,6,6_0,6_4,6_1_0 +22173,2,42.0,0.0,5,111,320.0,1212.0,0.0,0,62,0.0,0.0,545.6641738790596,1532.0,0.0,2300.9869061030245,50,2,2,2,1,1,2,2,2,0,,1,,3,122194,2,1,2,0,1,,180.0,318.0,22,2.0,3.0,4.0,2.0,1.5,2,2,347.108659400464,320.0,48452.2530178681,0,1,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.031618756705390626,32301.502011912064,8,4,8,8_1,8_2,8_0_0 +22174,0,74.0,0.0,2,111,120.0,0.0,0.0,0,77,0.0,0.0,204.62406520464734,240.0,166.2707070475825,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,122195,2,3,0,1,1,,216.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,362.267854472797,120.0,17135.183014222377,0,5,5,0,59.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014006270011869586,17135.183014222377,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +22175,2,45.0,0.0,2,111,300.0,,,54,68,0.0,0.0,,700.0,554.2356901586083,,71,0,0,0,0,0,0,0,0,0,,1,,2,122196,2,2,0,0,2,,600.0,,43,3.0,0.0,5.0,7.0,3.3999999999999995,4,4,118.01119567809083,300.0,11573.706370647678,4,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0604819214850037,3404.031285484612,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22176,2,80.0,0.0,1,111,2300.0,0.0,0.0,0,72,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122197,2,2,4,0,1,,340.0,,21,1.0,0.0,5.0,4.0,2.3,3,3,1194.18723245322,2300.0,17975.863110833856,0,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12794934995993684,7815.592656884286,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +22177,2,33.0,0.0,1,112,496.0,1713.0,0.0,43,63,0.0,0.0,845.7794695125424,2209.0,0.0,3252.1374341208584,44,0,0,0,0,0,0,0,0,2,20.0,1,,1,122198,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2937.60105741354,496.0,57213.487207129656,1,1,1,2,120.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03860977730657756,27244.51771768079,7,4,7,7_1,7_1,7_1_0 +22178,2,31.0,0.0,9,111,720.0,,,43,43,0.0,0.0,,720.0,0.0,,33,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,122199,2,2,0,0,2,,360.0,665.0,43,2.0,0.0,3.0,3.0,1.8,2,2,170.9820473009973,720.0,71690.97167828957,1,1,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010043105612112106,39828.31759904976,9,5,9,9_0,9_3,9_0_0 +22179,2,49.0,0.0,2,111,500.0,0.0,0.0,67,47,0.0,0.0,852.6002716860306,650.0,207.83838380947813,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,122200,1,1,0,1,1,600.0,286.0,329.0,43,2.0,2.0,4.0,3.0,1.8,2,2,419.179192795731,500.0,10807.89240976099,4,4,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.06014123525257912,6004.384672089439,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +22180,2,63.0,0.0,1,400,900.0,0.0,0.0,71,71,0.0,0.0,1534.680489034855,1040.0,193.98249155551292,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,122201,2,2,2,0,1,,100.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1124.96942465741,900.0,26928.722633852183,5,5,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03862047279927837,17952.481755901455,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22181,2,24.0,0.0,2,111,200.0,0.0,0.0,0,48,0.0,0.0,341.04010867441224,260.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,2,122202,2,1,0,1,1,408.0,160.0,206.0,12,1.0,0.0,1.0,1.0,1.0,1,1,388.966750057647,200.0,20242.27270914981,0,1,2,3,39.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012844407529519949,20242.27270914981,5,3,5,5_0,5_2,5_0_1 +22182,2,88.0,0.0,2,111,0.0,0.0,1869.0,0,78,0.0,0.0,1178.0648847851562,1869.0,0.0,2236.6923837983886,71,2,2,1,2,2,2,2,1,0,,1,,2,122203,2,2,3,0,1,,157.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,256.257117095845,0.0,49949.64005155502,0,5,0,1,70.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.037417687055821235,33299.76003437001,8,4,8,8_1,8_3,8_0_1 +22183,2,28.0,0.0,2,111,500.0,0.0,0.0,55,46,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,122204,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,658.894189763367,500.0,48323.15984823255,1,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010347005484954598,32215.4398988217,8,4,8,8_0,8_4,8_0_1 +22184,0,58.0,0.0,5,111,100.0,100.0,0.0,74,42,0.0,0.0,170.52005433720612,200.0,0.0,189.8504047939789,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,122205,2,1,0,1,1,1500.0,583.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1085.12176847343,100.0,66201.15251487435,5,1,5,0,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003021095440220065,44134.101676582904,10,5,10,10_0,10_4,10_0_0 +22185,2,44.0,0.0,2,111,504.0,90.0,0.0,47,31,0.0,0.0,859.4210738595189,594.0,0.0,170.865364314581,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,122206,2,3,0,1,1,937.0,0.0,643.0,43,2.0,0.0,3.0,4.0,2.1,2,2,940.85696608256,504.0,93663.95002833655,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006341820944133732,44601.880965874545,10,5,10,10_0,10_4,10_0_1 +22186,1,28.0,320.0,8,111,279.0,,,0,81,0.0,0.0,,399.0,166.2707070475825,,42,0,0,0,0,0,0,0,0,0,,2,2000.0,6,122207,2,2,0,0,2,,190.0,460.0,32,2.0,0.0,3.0,3.0,1.8,2,2,120.14608039345511,279.0,11003.479553734483,0,4,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03626125700070783,6113.044196519158,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22187,2,52.0,0.0,6,111,1500.0,0.0,0.0,38,35,295.31119829024846,238.3789098618403,2557.8008150580918,1960.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,75.0,1,,4,122208,2,1,2,0,2,,750.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,606.105918403038,1500.0,108367.855194142,1,1,0,1,135.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01808654417390325,43347.1420776568,10,5,10,10_1,10_4,10_0_0 +22188,1,37.0,205.0,2,111,429.0,0.0,0.0,85,47,0.0,0.0,731.5310331066142,709.0,387.96498311102584,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,122209,2,1,0,1,1,111.0,246.0,317.0,42,1.0,0.0,4.0,5.0,2.4,2,2,251.047695234062,429.0,34789.83326485428,6,4,2,3,90.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020379517044603168,14495.76386035595,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +22189,2,72.0,0.0,2,111,207.0,0.0,0.0,0,74,0.0,0.0,352.9765124780167,207.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,122210,2,1,0,1,1,,116.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1399.8594439119,207.0,37016.03372370252,0,5,0,1,70.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005592171261381023,37016.03372370252,9,5,9,9_0,9_3,9_0_1 +22190,1,56.0,200.0,1,111,250.0,0.0,0.0,0,67,0.0,172.1625460113291,426.3001358430153,449.0,95.60565655235995,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122211,2,2,4,0,1,,60.0,186.0,22,1.0,0.0,4.0,2.0,1.5,2,2,820.103357716562,250.0,20542.2471036654,0,1,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.02185739455543225,13694.831402443599,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +22191,2,36.0,0.0,8,112,550.0,,,53,43,0.0,0.0,,700.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,122212,1,1,0,0,2,,1050.0,292.0,43,2.0,0.0,3.0,5.0,2.4,2,2,116.13147016960932,550.0,43240.33303272707,1,1,2,3,72.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0161885894697017,18016.805430302946,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +22192,2,54.0,0.0,7,111,1500.0,,,0,46,0.0,0.0,,1600.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,2,1.0,1,,5,122213,2,1,0,0,2,,160.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,141.8952705682125,1500.0,65803.98925600784,0,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024314635299316927,65803.98925600784,10,5,10,10_1,10_3,10_0_0 +22193,1,27.0,170.0,1,111,348.0,0.0,0.0,0,55,0.0,0.0,593.4097890934773,348.0,0.0,0.0,43,2,2,2,2,1,2,2,2,0,,2,,1,122214,1,3,0,0,2,,0.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2712.69297450511,348.0,10627.175082738004,0,4,3,4,25.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.03274623757401583,10627.175082738004,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +22194,2,60.0,0.0,2,221,2265.0,0.0,0.0,0,78,0.0,0.0,3862.2792307377185,2505.0,332.541414095165,0.0,60,2,2,2,1,2,2,2,2,0,,1,,2,122215,2,2,2,0,1,,79.0,,21,0.0,7.0,5.0,2.0,1.5,2,2,646.848233472119,2265.0,27253.81755911107,0,5,0,1,100.0,1,2,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.09191372895070135,18169.211706074046,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +22195,2,60.0,0.0,8,112,3000.0,0.0,0.0,54,22,0.0,794.5963662061343,5115.6016301161835,3600.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,7.0,1,2001.0,6,122216,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,606.897443931013,3000.0,111764.04656019874,1,1,0,1,150.0,8,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.03221071633318999,62091.136977888185,10,5,10,10_1,10_1,10_0_0 +22196,1,65.0,311.0,5,111,370.0,790.0,0.0,85,78,0.0,0.0,630.9242010476627,1160.0,0.0,1499.8181978724333,70,2,1,2,2,1,2,2,2,0,,2,,3,122217,1,2,0,1,1,1100.0,800.0,276.0,41,1.0,2.0,4.0,5.0,2.8,4,3,276.182835897871,370.0,16842.670139478185,6,5,2,3,65.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.06887269004224165,6015.239335527924,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22197,2,32.0,0.0,6,111,1600.0,0.0,0.0,37,37,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,45.0,2,,4,122218,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,545.152708280462,1600.0,83624.19602227137,1,1,1,2,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01913321832802885,55749.46401484758,10,5,10,10_0,10_4,10_0_0 +22198,2,63.0,0.0,1,111,360.0,980.0,0.0,0,78,0.0,0.0,613.872195613942,1340.0,0.0,1860.5339669809932,70,0,0,0,0,0,0,0,0,0,,2,,1,122219,2,2,0,0,1,,290.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,419.358413703428,360.0,14989.13223976015,0,5,0,1,70.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08939810381054067,14989.13223976015,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +22199,2,21.0,0.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,198.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122220,2,1,0,1,1,701.0,0.0,770.0,42,1.0,0.0,3.0,2.0,1.5,2,2,231.935107497739,0.0,17244.350016245604,6,1,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011482021636853093,11496.233344163737,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +22200,2,36.0,0.0,9,111,1500.0,0.0,0.0,81,43,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,122221,1,1,0,0,1,,0.0,650.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1027.66158024963,1500.0,55448.66004737758,4,1,3,4,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027052051370012174,26404.123832084562,7,4,7,7_0,7_4,7_0_0 +22201,1,59.0,91.0,6,111,0.0,0.0,800.0,0,72,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,43,1,2,2,1,1,2,2,2,0,,2,,4,122222,1,3,0,0,1,,216.0,293.0,11,0.0,5.0,3.0,1.0,1.0,1,1,447.185941425719,0.0,11556.627552278218,0,7,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.06922434736094717,11556.627552278218,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +22202,2,34.0,0.0,6,112,549.0,1082.0,0.0,34,34,0.0,0.0,936.1550983112616,1631.0,0.0,2054.1813798708517,10,2,2,1,2,1,2,2,2,2,20.0,1,,4,122223,2,2,1,0,1,,358.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1707.43056701613,549.0,66156.14435475123,1,1,1,2,180.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02465379468389264,31502.92588321487,8,4,8,8_1,8_0,8_0_0 +22203,2,69.0,0.0,6,400,542.0,0.0,0.0,77,71,0.0,0.0,924.2186945076571,662.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,122224,1,1,2,0,1,,236.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,929.92952177626,542.0,22383.359865454997,5,5,0,1,75.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02957554200885128,14922.239910303331,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +22204,2,42.0,0.0,8,111,1700.0,0.0,0.0,52,65,0.0,662.163638505112,2898.840923732504,2200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,45.0,1,2003.0,6,122225,1,2,1,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,352.332411334929,1700.0,45527.74010127783,1,1,1,2,200.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04832218764001977,17510.669269722242,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +22205,2,80.0,0.0,7,211,1200.0,,,86,78,0.0,0.0,,1752.0,764.8452524188796,,71,0,0,0,0,0,0,0,0,0,,1,,5,122226,2,1,0,0,2,,600.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,93.86813475563595,1200.0,27230.539006652063,5,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06433952701310867,13615.269503326032,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +22206,2,46.0,0.0,2,111,720.0,119.0,0.0,67,47,0.0,0.0,1227.744391227884,839.0,0.0,225.92198170483488,50,0,0,0,0,0,0,0,0,0,,2,,2,122227,2,3,0,1,1,688.0,0.0,395.0,43,2.0,0.0,3.0,3.0,2.0,3,3,1074.74836816026,720.0,44406.45240590948,1,1,2,3,77.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01889365068686163,22203.22620295474,6,3,6,6_0,6_3,6_0_1 +22207,1,25.0,270.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,307.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,122228,2,3,0,0,1,,0.0,545.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1602.56340479537,0.0,12763.22161667225,0,4,2,3,45.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02405348815685957,12763.22161667225,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +22208,2,75.0,0.0,2,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1387.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,122229,2,1,2,0,1,,294.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1482.80644074717,0.0,20033.454315828385,0,5,0,1,105.0,6,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06923419087561622,20033.454315828385,5,3,5,5_1,5_0,5_0_1 +22209,2,25.0,0.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,752.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,122230,2,1,0,0,1,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1680.88071247318,0.0,15523.856859682179,0,1,2,3,31.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04844157008127655,15523.856859682179,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +22210,1,36.0,226.0,9,111,574.0,0.0,0.0,0,46,0.0,0.0,978.7851118955631,574.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,20.0,2,2012.0,6,122231,2,1,0,1,1,950.0,434.0,480.0,32,1.0,0.0,3.0,4.0,1.9,1,1,4705.90393916779,574.0,39201.68274563709,0,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014642228593207079,20632.46460296689,5,3,5,5_0,5_4,5_0_0 +22211,2,58.0,0.0,5,112,234.0,0.0,0.0,0,43,1785.5780668049663,132.4327277010224,399.0169271490623,2078.0,70.66505049522257,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,122232,2,1,2,0,1,,81.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1464.75594162277,234.0,43636.18109458911,0,1,1,2,150.0,4,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04762103254397008,43636.18109458911,10,5,10,10_1,10_0,10_0_0 +22212,2,83.0,0.0,1,112,1700.0,1800.0,0.0,0,71,0.0,0.0,2898.840923732504,3560.0,83.13535352379125,3417.30728629162,70,0,0,0,0,0,0,0,0,0,,1,,1,122233,1,2,3,0,2,,250.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,227.979599147657,1700.0,17710.10704688156,0,5,0,1,190.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20101515990705734,17710.10704688156,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22213,2,31.0,0.0,1,112,2000.0,0.0,0.0,47,54,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,122234,2,1,4,0,1,,500.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,561.942356007454,2000.0,49779.4623375463,1,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040177211767341535,27655.256854192387,7,4,7,7_1,7_0,7_1_0 +22214,2,43.0,0.0,5,111,280.0,0.0,0.0,0,55,0.0,0.0,477.4561521441771,280.0,0.0,0.0,44,2,2,2,2,1,2,2,2,3,20.0,2,,3,122235,2,2,0,1,1,1110.0,0.0,277.0,32,1.0,0.0,3.0,2.0,1.5,2,2,2015.17408313473,280.0,21488.187846226778,0,1,2,3,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.013030414756410771,14325.458564151186,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +22215,2,39.0,0.0,2,111,500.0,80.0,0.0,56,38,0.0,0.0,852.6002716860306,580.0,0.0,151.8803238351831,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,122236,2,1,0,1,1,321.0,0.0,446.0,43,2.0,1.0,4.0,3.0,1.8,2,2,758.488518753704,500.0,43066.205717230514,1,1,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013467636406332998,23925.66984290584,6,3,6,6_0,6_4,6_0_1 +22216,2,78.0,0.0,2,111,404.0,1014.0,0.0,78,77,0.0,0.0,688.9010195223127,1418.0,0.0,1925.083104610946,50,0,0,0,0,0,0,0,0,0,,2,,2,122237,2,1,0,0,1,,328.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2328.36120672389,404.0,30373.348448944744,5,5,0,1,95.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04668566596743683,20248.898965963162,5,3,5,5_0,5_3,5_0_1 +22217,2,62.0,0.0,6,111,1000.0,1400.0,0.0,75,34,0.0,331.081819252556,1705.2005433720612,2650.0,0.0,2657.9056671157045,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,122238,2,1,3,0,1,,480.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1284.84001489163,1000.0,23928.532794448583,5,1,0,1,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11074644746354025,15952.355196299055,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +22218,2,26.0,0.0,1,112,800.0,1100.0,0.0,81,64,0.0,0.0,1364.160434697649,1900.0,0.0,2088.354452733768,41,0,0,0,0,0,0,0,0,2,14.0,1,,1,122239,2,1,1,0,1,,650.0,698.0,43,2.0,0.0,5.0,2.0,1.5,2,2,139.301173286694,800.0,23555.440290818187,4,1,2,3,110.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08066077205700171,15703.626860545459,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22219,2,49.0,0.0,2,111,40.0,10.0,0.0,38,38,0.0,0.0,68.20802173488245,50.0,0.0,18.985040479397888,12,2,2,2,1,2,2,2,2,2,60.0,2,,2,122240,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,893.123133647272,40.0,144684.7350706936,1,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.0003455789581089517,80380.40837260755,10,5,10,10_0,10_4,10_0_1 +22220,1,31.0,165.0,2,112,550.0,660.0,0.0,85,21,0.0,0.0,937.8602988546337,1210.0,0.0,1253.0126716402608,71,0,0,0,0,0,0,0,0,2,120.0,2,,2,122241,2,1,0,1,1,648.0,0.0,289.0,42,1.0,0.0,3.0,4.0,2.1,2,2,820.344255759053,550.0,17002.037522244584,6,1,2,3,55.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07116794080808837,8096.208343925992,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +22221,2,58.0,0.0,2,111,240.0,56.0,0.0,0,77,0.0,0.0,409.2481304092947,324.0,38.79649831110259,106.31622668462819,71,0,0,0,0,0,0,0,0,0,,2,,2,122242,2,2,0,1,2,328.0,0.0,518.0,11,0.0,3.0,2.0,1.0,1.0,1,1,392.698853425848,240.0,30956.338571861976,0,5,2,3,47.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010466354063413124,30956.338571861976,8,4,8,8_0,8_3,8_0_1 +22222,0,47.0,0.0,2,111,0.0,0.0,0.0,46,63,0.0,0.0,0.0,2074.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,122243,1,2,2,0,2,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1447.32450383868,0.0,59406.349386514135,1,1,5,0,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03491209309136272,39604.23292434276,9,5,9,9_1,9_3,9_0_1 +22224,2,62.0,0.0,2,111,359.0,0.0,0.0,72,34,0.0,0.0,612.16699507057,359.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,,2,122245,2,2,0,1,1,,0.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,915.511541032025,359.0,138971.63129688907,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0025832610342830186,69485.81564844454,10,5,10,10_0,10_4,10_0_1 +22225,1,43.0,260.0,9,111,900.0,,,68,56,0.0,0.0,,1050.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,122246,1,1,0,0,2,,240.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,79.64484672048923,900.0,9599.617204571054,4,4,0,1,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10937936144995668,4571.246287890977,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +22226,2,33.0,0.0,6,111,761.0,970.0,0.0,33,37,0.0,0.0,1297.6576135061387,1731.0,0.0,1841.5489265015954,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,122247,2,1,2,0,1,,410.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1874.19769160397,761.0,69882.79377304805,1,1,1,2,130.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0247700457657948,38823.774318360025,9,5,9,9_1,9_2,9_0_0 +22227,2,63.0,0.0,1,111,1020.0,0.0,0.0,0,54,0.0,0.0,1739.3045542395023,1020.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,122248,1,3,0,0,2,,240.0,514.0,12,1.0,2.0,2.0,1.0,1.0,1,1,407.105590314942,1020.0,31520.563453995303,0,1,2,3,50.0,8,6,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03235982762455069,31520.563453995303,8,4,8,8_0,8_2,8_1_0 +22228,2,40.0,0.0,2,111,700.0,,,0,42,0.0,0.0,,788.0,121.93185183489385,,10,0,0,0,0,0,0,0,0,0,,1,,2,122249,2,1,0,0,2,,800.0,700.0,22,2.0,0.0,3.0,2.0,1.5,2,2,133.64654837990304,700.0,10685.507108547426,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0737447452886604,7123.671405698285,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22229,2,82.0,0.0,1,112,1078.0,0.0,0.0,77,78,0.0,0.0,1838.2061857550818,1108.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122250,1,1,2,0,2,,426.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,658.042480905714,1078.0,20503.027916873383,5,5,0,1,47.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05404079848558119,13668.685277915589,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22230,2,58.0,0.0,9,111,1000.0,0.0,0.0,0,56,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,2011.0,6,122251,2,1,0,0,1,,0.0,742.0,22,2.0,1.0,2.0,2.0,1.5,2,2,1180.17384328863,1000.0,38133.19880194881,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026223868739511425,25422.132534632543,7,4,7,7_0,7_4,7_0_0 +22231,2,44.0,0.0,8,111,800.0,1000.0,0.0,52,38,0.0,165.540909626278,1364.160434697649,1925.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,122252,2,1,2,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1397.08419530877,800.0,99970.34925975476,1,1,1,2,135.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01925570946039448,43465.369243371635,10,5,10,10_1,10_3,10_0_0 +22232,2,75.0,0.0,1,111,968.0,896.0,0.0,72,37,0.0,0.0,1650.6341259841552,1864.0,0.0,1701.059626954051,50,0,0,0,0,0,0,0,0,0,,2,,1,122253,2,1,0,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,791.971402585938,968.0,39873.28222435227,5,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04674809536651532,26582.188149568177,7,4,7,7_0,7_4,7_1_0 +22233,2,64.0,0.0,8,112,1200.0,0.0,0.0,77,78,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,122254,2,1,1,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1292.44855406616,1200.0,28809.458855779823,5,5,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04581828511975602,19206.305903853216,5,3,5,5_1,5_0,5_0_0 +22234,1,42.0,310.0,1,111,720.0,200.0,0.0,56,67,0.0,0.0,1227.744391227884,920.0,0.0,379.7008095879578,42,0,0,0,0,0,0,0,0,0,,2,,1,122255,2,1,0,1,1,516.0,0.0,285.0,43,2.0,3.0,2.0,5.0,2.4,2,2,187.480426800741,720.0,30333.86781555245,1,4,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03032913592141084,12639.111589813521,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +22235,1,43.0,227.0,2,111,384.0,180.0,0.0,56,67,0.0,0.0,654.7970086548714,564.0,0.0,341.730728629162,71,2,1,2,2,1,2,2,1,3,25.0,2,,2,122256,2,1,0,1,1,435.0,88.0,214.0,43,2.0,1.0,2.0,2.0,1.5,2,2,270.538763608163,384.0,19670.712757850375,4,1,2,3,40.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.028672067298370442,13113.808505233583,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22236,2,42.0,0.0,2,111,370.0,1200.0,0.0,85,68,0.0,423.78472864327165,630.9242010476627,1890.0,0.0,2278.2048575277468,71,2,2,1,2,1,2,2,2,0,,1,,2,122257,2,1,2,0,1,,320.0,,42,1.0,0.0,6.0,6.0,2.8999999999999995,3,2,625.345999959921,370.0,22330.287805639484,6,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.0846384075498876,7700.099243323962,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +22237,2,71.0,0.0,2,111,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1270.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122258,2,2,3,0,1,,250.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,511.705841838287,1200.0,17253.246439951385,0,5,1,2,32.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0736093351717973,17253.246439951385,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +22238,2,39.0,0.0,7,111,0.0,0.0,0.0,42,34,0.0,0.0,0.0,1132.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,122259,2,2,2,0,1,,1634.0,670.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1163.2265669716,0.0,46269.17471733573,6,1,2,3,100.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024465532547652557,19278.822798889887,5,3,5,5_1,5_2,5_0_0 +22239,2,35.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,534.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,2009.0,6,122260,2,1,0,0,2,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,147.0490214593208,0.0,6257.652845410537,0,4,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08533551048483684,6257.652845410537,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +22240,2,33.0,0.0,2,111,250.0,0.0,0.0,0,48,1054.6828510366015,0.0,426.3001358430153,1357.0,148.25804711742774,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,122261,1,1,1,0,2,,92.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1154.13133914177,250.0,20612.59566802973,0,1,1,2,70.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06583353313938602,20612.59566802973,5,3,5,5_1,5_2,5_0_1 +22241,0,98.0,0.0,1,111,340.0,730.0,0.0,0,77,0.0,0.0,579.7681847465008,1070.0,0.0,1385.9079549960459,44,0,0,0,0,0,0,0,0,0,,2,,1,122262,2,2,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,936.507532347158,340.0,20197.81449759784,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05297602867514487,20197.81449759784,5,3,5,5_0,5_4,5_1_0 +22242,2,87.0,0.0,1,111,420.0,1400.0,0.0,0,75,0.0,0.0,716.1842282162656,1820.0,0.0,2657.9056671157045,41,0,0,0,0,0,0,0,0,0,,2,,1,122263,2,2,0,0,2,,420.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,588.3538389647,420.0,23773.738790244894,0,5,0,1,75.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07655506002054682,23773.738790244894,6,3,6,6_0,6_2,6_1_0 +22243,2,75.0,0.0,2,112,520.0,800.0,0.0,78,78,0.0,397.2981831030672,886.7042825534718,1620.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,0,,1,,2,122264,2,1,2,0,1,,330.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,978.951517009567,520.0,33262.54494326973,5,5,0,1,69.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04870342912013975,22175.02996217982,6,3,6,6_1,6_1,6_0_1 +22244,2,67.0,0.0,1,211,1061.0,0.0,0.0,78,78,0.0,247.64920080091187,1809.2177765177569,1248.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,122265,2,1,3,0,1,,271.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,759.520430966397,1061.0,30648.631493719568,5,5,0,1,110.0,2,3,4,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040719599511506305,20432.420995813045,5,3,5,5_1,5_1,5_1_0 +22245,2,42.0,0.0,6,112,603.0,0.0,0.0,54,63,0.0,529.7309108040896,1028.235927653353,1069.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,122266,2,1,1,0,1,,187.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1565.46609177959,603.0,40922.273365392066,1,1,0,1,130.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02612269339132201,19486.796840662886,5,3,5,5_1,5_1,5_0_0 +22246,2,35.0,0.0,5,111,470.0,863.0,0.0,85,67,0.0,0.0,801.4442553848687,1333.0,0.0,1638.408993372038,43,0,0,0,0,0,0,0,0,0,,2,,3,122267,2,1,0,1,1,,423.0,443.0,41,0.0,0.0,3.0,4.0,2.3,3,3,1135.77840779698,470.0,30491.24791869177,6,7,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04371746291114714,13257.064312474684,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +22247,2,56.0,0.0,6,112,700.0,0.0,0.0,85,63,0.0,0.0,1193.6403803604428,804.0,144.10127944123818,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,122268,2,1,2,0,1,,260.0,,42,1.0,3.0,4.0,3.0,2.0,3,2,553.148406818729,700.0,14391.125545048073,6,1,0,1,111.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05586776360773623,7195.5627725240365,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +22248,2,43.0,0.0,2,211,840.0,0.0,0.0,43,67,0.0,198.6490915515336,1432.3684564325313,1086.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,122269,2,2,2,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,685.354583507045,840.0,31889.97212282817,1,1,0,1,80.0,2,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034054592328181935,13865.205270794859,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +22249,2,59.0,0.0,1,111,532.0,874.0,0.0,0,37,0.0,0.0,907.1666890739366,1406.0,0.0,1659.2925378993755,33,2,2,2,2,1,2,2,2,2,30.0,2,,1,122270,1,2,0,0,2,,766.0,900.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1217.89888841667,532.0,43201.17945911427,0,1,2,3,93.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0325454077319959,43201.17945911427,9,5,9,9_0,9_4,9_1_0 +22250,2,83.0,0.0,1,111,250.0,1750.0,0.0,0,75,0.0,0.0,426.3001358430153,2000.0,0.0,3322.382083894631,60,2,2,2,2,1,2,2,2,0,,1,,1,122271,1,2,3,0,2,,400.0,265.0,11,0.0,0.0,4.0,1.0,1.0,1,1,222.349881346912,250.0,23231.2217724176,0,5,2,3,79.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.08609103815515193,23231.2217724176,6,3,6,6_1,6_3,6_1_0 +22251,2,47.0,0.0,5,111,1800.0,,,85,63,0.0,0.0,,2200.0,554.2356901586083,,50,0,0,0,0,0,0,0,0,0,,1,,3,122272,2,3,0,0,2,,0.0,,42,1.0,1.0,6.0,9.0,3.7999999999999985,3,3,130.21357861144313,1800.0,48440.11189412955,6,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04541690582400611,12747.397866876203,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +22252,2,54.0,0.0,2,111,600.0,792.0,0.0,0,68,0.0,0.0,1023.1203260232367,1392.0,0.0,1503.615205968313,70,2,2,2,2,2,2,2,1,1,5.0,2,,2,122273,2,2,0,1,1,1330.0,0.0,388.0,32,1.0,4.0,5.0,2.0,1.5,2,2,300.047148124595,600.0,17525.402752499074,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.07942756121832947,11683.601834999383,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +22253,2,61.0,0.0,2,111,265.0,0.0,0.0,0,34,0.0,0.0,451.8781439935962,265.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,122274,2,2,0,1,1,,99.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,490.328265308897,265.0,19298.50080107885,0,1,1,2,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013731636603874721,19298.50080107885,5,3,5,5_0,5_2,5_0_1 +22254,2,72.0,0.0,1,111,412.0,1004.0,0.0,78,74,0.0,198.6490915515336,702.5426238692892,1566.0,0.0,1906.0980641315482,50,0,0,0,0,0,0,0,0,0,,1,,1,122275,2,1,2,0,1,,191.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,342.80062622382,412.0,30001.78284483081,5,5,0,1,80.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0521968980343385,20001.18856322054,5,3,5,5_1,5_2,5_1_0 +22255,2,60.0,0.0,1,300,896.0,0.0,0.0,0,78,0.0,0.0,1527.8596868613668,916.0,27.711784507930417,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,122276,2,1,4,0,1,,384.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2042.32210759936,896.0,27853.25460435856,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03288664154373764,27853.25460435856,7,4,7,7_1,7_0,7_1_0 +22256,1,51.0,303.0,2,111,528.0,0.0,0.0,0,52,1160.1511361402618,0.0,900.3458869004482,1808.0,249.40606057137379,0.0,71,2,2,2,2,2,1,2,2,0,,2,,2,122277,1,3,0,1,1,866.0,0.0,260.0,32,3.0,2.0,3.0,3.0,2.0,3,2,305.052576348754,528.0,11484.8,0,4,2,3,90.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.15742546670381724,5742.4,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22257,2,29.0,0.0,9,111,458.0,,,0,43,0.0,0.0,,458.0,0.0,,33,0,0,0,0,0,0,0,0,0,,2,2010.0,6,122278,2,1,0,0,1,,348.0,854.0,22,2.0,0.0,3.0,2.0,1.5,2,2,233.43998127393962,458.0,53618.58764242843,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008541813951801749,35745.725094952286,9,5,9,9_0,9_2,9_0_0 +22258,1,32.0,170.0,2,300,369.0,,,0,42,0.0,0.0,,484.0,159.34276092059991,,44,0,0,0,0,0,0,0,0,0,,1,,2,122279,1,1,0,0,2,,162.0,1000.0,22,2.0,0.0,4.0,2.0,1.5,2,2,66.6246878889034,369.0,36649.98767976242,0,4,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01320600716783481,24433.32511984161,7,4,7,7_1,7_0,7_0_1 +22259,2,80.0,0.0,7,111,600.0,,,0,78,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,122280,1,1,0,0,2,,500.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,80.89977687688987,600.0,12108.732730622776,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04955101523403934,12108.732730622776,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +22260,2,26.0,0.0,1,400,880.0,0.0,0.0,64,34,0.0,635.6770929649075,1500.5764781674138,1720.0,498.81212114274757,0.0,10,2,2,2,1,2,2,2,2,2,60.0,1,,1,122281,1,2,4,0,1,,120.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,1336.33867470348,880.0,51098.18550935232,1,1,1,2,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.033660686438370585,34065.45700623488,9,5,9,9_1,9_0,9_1_0 +22261,2,62.0,0.0,2,111,1140.0,,,0,77,0.0,0.0,,1272.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,2,122282,1,3,0,0,2,,600.0,407.0,21,0.0,2.0,5.0,3.0,1.8,2,2,101.3978385745699,1140.0,15750.822765724359,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08075768605358327,8750.457092069088,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +22262,2,39.0,0.0,7,111,700.0,0.0,0.0,0,31,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,5,122283,1,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,914.582792164431,700.0,25198.5228966777,0,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.027779406073531854,25198.5228966777,7,4,7,7_0,7_4,7_0_0 +22263,1,76.0,92.0,2,111,425.0,701.0,0.0,0,77,0.0,0.0,724.710230933126,1126.0,0.0,1330.8513376057922,71,0,0,0,0,0,0,0,0,0,,2,,2,122284,2,3,0,0,1,,0.0,199.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1561.1155836692,425.0,11338.460185572658,0,5,2,3,80.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09930801727669783,11338.460185572658,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22264,2,60.0,0.0,5,111,562.0,1265.0,0.0,75,46,0.0,158.91927324122688,958.3227053750984,1947.0,0.0,2401.607620643833,30,0,0,0,0,0,0,0,0,4,70.0,1,,3,122285,2,2,1,0,1,,480.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,590.915286610477,562.0,96876.73024123455,5,1,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020097705559959954,48438.36512061727,10,5,10,10_1,10_4,10_0_0 +22265,2,40.0,0.0,2,111,605.0,96.0,0.0,62,37,0.0,0.0,1031.646328740097,701.0,0.0,182.25638860221974,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,122286,2,2,0,1,1,516.0,0.0,405.0,43,2.0,0.0,4.0,4.0,2.3,3,2,294.498384119781,605.0,53330.86624584791,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013144358030272509,23187.333150368657,6,3,6,6_0,6_4,6_0_1 +22266,2,62.0,0.0,1,111,432.0,0.0,0.0,68,78,975.5816372088564,0.0,736.6466347367304,1457.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122287,2,1,2,0,1,,240.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1297.11748336782,432.0,12053.86809494739,1,5,0,1,110.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12087406204575356,8035.912063298259,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +22267,1,33.0,305.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,712.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122288,1,3,0,0,1,,0.0,266.0,42,1.0,0.0,3.0,4.0,2.1,2,2,446.500594187554,0.0,16801.44389709828,6,4,2,3,64.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.042377310209806854,8000.6875700468,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22268,2,54.0,0.0,6,111,650.0,,,34,34,0.0,0.0,,830.0,249.40606057137379,,10,0,0,0,0,0,0,0,0,0,,1,,4,122289,2,1,0,0,1,,420.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,175.75161819237283,650.0,151964.0,1,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0054618199047142746,54272.857142857145,10,5,10,10_1,10_2,10_0_0 +22269,1,65.0,48.0,1,112,590.0,2000.0,0.0,86,86,0.0,0.0,1006.0683205895161,2590.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,0,,1,,1,122290,2,1,2,0,1,,530.0,499.0,41,2.0,3.0,4.0,5.0,3.0,5,5,195.079023019326,590.0,37015.265116649374,5,5,2,3,90.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06997113195969044,12338.421705549792,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +22270,2,46.0,0.0,8,112,512.0,0.0,0.0,52,68,0.0,635.6770929649075,873.0626782064953,1076.0,116.38949493330776,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,122291,1,1,2,0,1,,230.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,465.181226628614,512.0,44694.926086471656,1,1,0,1,126.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02407432105197475,19432.576559335503,5,3,5,5_1,5_0,5_0_0 +22271,2,76.0,0.0,5,112,1800.0,0.0,0.0,0,86,0.0,0.0,3069.36097806971,1825.0,34.63973063491302,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122292,2,1,2,0,1,,200.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1697.18813775459,1800.0,16662.204030941033,0,6,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10952932736935939,16662.204030941033,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +22272,1,36.0,468.0,8,211,0.0,,,0,81,0.0,0.0,,479.0,274.3466666285112,,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,122293,2,3,0,0,2,,0.0,735.0,32,1.0,0.0,3.0,4.0,1.9,1,1,39.565910434247535,0.0,12871.0,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03721544557532437,6774.21052631579,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +22273,2,59.0,0.0,1,112,1534.0,0.0,0.0,0,68,0.0,0.0,2615.7776335327417,1594.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,122294,2,1,2,0,1,,183.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,1939.92499439104,1534.0,68565.61132835493,0,1,0,1,160.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023247805556147794,45710.407552236626,10,5,10,10_1,10_0,10_1_0 +22274,1,50.0,392.0,2,111,756.0,924.0,0.0,0,56,0.0,0.0,1289.1316107892783,1680.0,0.0,1754.217740296365,71,2,2,2,2,1,2,2,2,0,,2,,2,122295,2,1,0,1,1,,0.0,361.0,32,2.0,2.0,5.0,3.0,2.0,3,2,573.038135162804,756.0,11469.2,0,1,2,3,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.1464792662086283,5734.6,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22275,2,55.0,0.0,7,221,1590.0,,,21,52,0.0,0.0,,1766.0,243.8637036697877,,50,0,0,0,0,0,0,0,0,2,4.0,1,,5,122296,2,1,0,0,2,,960.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,93.56813266306177,1590.0,62330.0,1,1,0,1,86.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028333065939355046,31165.0,8,4,8,8_1,8_1,8_0_0 +22276,2,53.0,0.0,7,111,1000.0,0.0,0.0,90,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,2,,5,122297,2,1,0,0,1,336.0,0.0,768.0,42,1.0,0.0,2.0,2.0,1.5,2,2,3069.59617390865,1000.0,53699.02355621853,5,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018622312544530367,35799.34903747902,9,5,9,9_0,9_4,9_0_0 +22277,2,47.0,0.0,1,111,980.0,0.0,0.0,52,63,0.0,482.0551288317215,1671.09653250462,1452.0,149.64363634282427,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,122298,2,1,1,0,1,,490.0,,43,2.0,1.0,3.0,3.0,2.0,3,2,1026.40312112398,980.0,35508.98287472555,1,1,1,2,65.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04089106142867018,17754.491437362776,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +22278,2,70.0,0.0,9,111,600.0,,,74,74,0.0,0.0,,646.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,0,,2,2008.0,6,122299,2,1,0,0,1,,480.0,900.0,41,0.0,3.0,4.0,2.0,1.5,2,2,158.73915608543382,600.0,109934.9863714222,5,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005876200300943766,73289.99091428147,10,5,10,10_0,10_2,10_0_0 +22279,2,85.0,0.0,2,111,480.0,0.0,0.0,0,77,4218.731404146406,0.0,818.4962608185893,4680.0,277.1178450793042,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,122300,2,2,2,0,1,,300.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,938.716855811265,480.0,28714.021138138873,0,5,0,1,120.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16298657640060993,28714.021138138873,8,4,8,8_1,8_2,8_0_1 +22280,2,41.0,0.0,2,111,492.0,,,0,81,0.0,0.0,,624.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,122301,1,1,0,0,2,,500.0,,32,1.0,3.0,6.0,2.0,1.5,2,2,129.55053339069286,492.0,4865.935418991544,0,4,0,1,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12823844672589652,3243.9569459943627,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22281,2,58.0,0.0,5,111,340.0,,,0,42,0.0,0.0,,406.0,91.44888887617039,,30,0,0,0,0,0,0,0,0,2,20.0,2,,3,122302,2,3,0,0,1,,160.0,386.0,12,1.0,0.0,3.0,1.0,1.0,1,1,180.49399850863307,340.0,44197.14368802313,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009186113991117958,44197.14368802313,10,5,10,10_0,10_2,10_0_0 +22282,2,24.0,0.0,7,111,0.0,,,0,63,0.0,0.0,,522.0,0.0,,43,0,0,0,0,0,0,0,0,2,20.0,2,,5,122303,2,1,0,0,2,,70.0,482.0,12,1.0,0.0,2.0,1.0,1.0,1,1,129.65715919551994,0.0,17101.518016978906,0,1,2,3,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030523606119745778,17101.518016978906,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +22283,2,69.0,0.0,6,221,600.0,,,77,78,0.0,0.0,,688.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,4,122304,2,2,0,0,2,,560.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,75.14835236789278,600.0,20746.811889242068,5,5,0,1,72.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033161721601994744,13831.207926161378,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +22284,2,47.0,0.0,1,111,600.0,0.0,0.0,84,34,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,30.0,2,,1,122305,2,1,0,0,1,,0.0,500.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1739.98154457691,600.0,49607.035373481034,3,1,2,3,54.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012095058603738865,23622.39779689573,6,3,6,6_0,6_3,6_1_0 +22285,1,39.0,220.0,2,111,350.0,75.0,0.0,34,38,0.0,860.8127300566456,596.8201901802214,1075.0,0.0,142.38780359548417,20,0,0,0,0,0,0,0,0,0,,2,,2,122306,2,1,0,1,1,624.0,0.0,315.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1040.32234367702,350.0,36479.0,1,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02946900956714822,24319.333333333332,7,4,7,7_0,7_4,7_0_1 +22286,2,44.0,0.0,9,111,718.0,1055.0,0.0,33,33,0.0,0.0,1224.33399014114,1773.0,0.0,2002.9217705764775,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,122307,2,1,1,0,1,,440.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,665.889210414327,718.0,92704.73264960863,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01912523718396684,44145.11078552792,10,5,10,10_1,10_4,10_0_0 +22287,2,43.0,0.0,1,111,640.0,2500.0,0.0,52,53,0.0,0.0,1091.3283477581192,3140.0,0.0,4746.260119849472,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,122308,2,3,1,0,2,,450.0,,43,2.0,0.0,10.0,5.0,2.4,2,2,780.736584495009,640.0,24845.330032913458,1,1,1,2,140.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1263818993686272,10352.220847047274,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +22288,2,58.0,0.0,5,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,782.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122309,2,1,2,0,1,,402.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,148.006956683536,0.0,20908.431233399922,6,7,0,1,120.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03740117999626885,13938.954155599948,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +22289,2,84.0,0.0,1,400,470.0,0.0,0.0,0,78,2452.1376286600985,0.0,801.4442553848687,2795.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122310,1,2,3,0,2,,284.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,763.257269722415,470.0,17141.02355313793,0,5,0,1,64.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1630591073710025,17141.02355313793,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22290,1,33.0,150.0,9,400,260.0,,,42,63,0.0,0.0,,395.0,187.05454542853033,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,122311,2,1,0,0,1,,160.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,94.8407313738375,260.0,35873.21282702711,1,1,1,2,88.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011011001493080777,14947.172011261298,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +22291,2,53.0,0.0,2,112,500.0,0.0,0.0,45,64,1089.4873851208094,0.0,852.6002716860306,1533.0,0.0,0.0,60,2,2,2,2,1,2,1,2,2,30.0,2,,2,122312,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,3.0,2.0,3,2,343.428360653475,500.0,50822.246482804105,1,1,0,1,56.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.030163955867608023,25411.123241402052,7,4,7,7_0,7_2,7_0_1 +22292,1,67.0,243.0,2,111,350.0,130.0,0.0,0,78,0.0,0.0,596.8201901802214,863.0,0.0,246.80552623217258,71,2,1,2,1,2,2,2,2,0,,2,,2,122313,1,2,0,1,1,481.0,0.0,250.0,11,0.0,4.0,3.0,1.0,1.0,1,1,392.862038807067,350.0,10820.361284318635,0,5,2,3,55.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07975704113047494,10820.361284318635,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22293,1,45.0,180.0,2,221,300.0,0.0,0.0,0,52,738.277995725621,0.0,511.56016301161833,1090.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122314,1,1,2,0,2,,170.0,180.0,22,1.0,1.0,4.0,2.0,1.5,2,2,1155.75965168062,300.0,19587.934910910677,0,1,2,3,84.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05564649897794274,13058.623273940451,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +22294,2,78.0,0.0,7,112,1000.0,0.0,0.0,78,77,0.0,0.0,1705.2005433720612,1080.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,122315,2,1,1,0,1,,600.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1334.40788179953,1000.0,22900.97689415471,5,5,0,1,50.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04715956026642956,15267.317929436475,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +22295,1,27.0,144.0,7,112,0.0,0.0,1400.0,63,54,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,43,2,2,2,1,1,2,2,2,0,,1,,5,122316,1,3,3,0,1,,400.0,470.0,43,2.0,0.0,4.0,3.0,1.8,2,2,740.375146529206,0.0,37166.49306340653,1,1,2,3,75.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.03766833738151139,20648.051701892517,5,3,5,5_1,5_2,5_0_0 +22296,2,51.0,0.0,5,111,0.0,200.0,0.0,68,52,0.0,0.0,0.0,509.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,3,35.0,2,,3,122317,2,1,0,1,1,912.0,0.0,400.0,43,2.0,5.0,3.0,2.0,1.5,2,2,285.733240961963,0.0,36020.49479309036,1,1,2,3,50.0,9,7,4,0,1,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014130844201996888,24013.663195393572,6,3,6,6_0,6_3,6_0_0 +22297,1,77.0,280.0,2,120,130.0,790.0,0.0,86,86,0.0,0.0,221.67607063836795,920.0,0.0,1499.8181978724333,71,0,0,0,0,0,0,0,0,0,,2,,2,122318,2,1,0,0,1,,160.0,400.0,41,0.0,3.0,5.0,2.0,1.5,2,2,1288.97301996162,130.0,14680.558391775243,6,5,2,3,90.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.062667915991222,9787.038927850163,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +22298,1,41.0,142.0,8,112,800.0,0.0,0.0,0,21,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,2000.0,6,122319,2,1,0,0,1,,0.0,465.0,12,1.0,2.0,1.0,1.0,1.0,1,1,2656.919828838,800.0,2365.4461740921006,0,1,2,3,27.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.33820258045273593,2365.4461740921006,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +22299,2,57.0,0.0,5,111,460.0,,,85,62,0.0,0.0,,644.0,254.94841747295985,,50,0,0,0,0,0,0,0,0,0,,1,,3,122320,2,2,0,0,2,,200.0,700.0,42,2.0,4.0,4.0,4.0,2.5,4,3,127.03818293611502,460.0,55620.40685339057,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011578484164948936,22248.162741356227,6,3,6,6_1,6_2,6_0_0 +22300,1,47.0,170.0,7,120,478.0,,,85,52,0.0,0.0,,566.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,1,20.0,2,,5,122321,2,1,0,0,1,,170.0,315.0,42,1.0,0.0,1.0,3.0,1.8,2,2,126.27425174999392,478.0,23514.112835783126,6,1,2,3,40.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02407065084499709,13063.396019879514,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +22301,2,41.0,0.0,8,111,800.0,1300.0,0.0,34,47,0.0,0.0,1364.160434697649,2100.0,0.0,2468.055262321726,20,0,0,0,0,0,0,0,0,1,25.0,1,2000.0,6,122322,2,1,1,0,1,,270.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1538.90408565136,800.0,72260.97251061808,1,1,1,2,120.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02906133043935195,31417.814135051343,8,4,8,8_1,8_2,8_0_0 +22302,0,63.0,0.0,1,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,857.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,1,122323,2,1,0,0,1,,0.0,,43,2.0,4.0,3.0,2.0,1.5,2,2,2141.71723246977,0.0,22922.09783004572,1,1,5,0,70.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.037387502939485125,15281.398553363813,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +22303,2,53.0,0.0,6,120,0.0,,,0,69,0.0,0.0,,88.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,4,122324,1,2,0,0,2,,0.0,,12,1.0,5.0,6.0,1.0,1.0,1,1,100.98302179537978,0.0,8748.673206330095,0,4,0,1,76.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010058668088816905,8748.673206330095,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +22304,2,51.0,0.0,7,111,1242.0,0.0,0.0,46,37,0.0,0.0,2117.8590748681,3716.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,122325,2,3,3,0,1,,582.0,934.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1166.14925964974,1242.0,49410.095804522294,1,1,2,3,98.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07520730206031882,23528.61704977252,6,3,6,6_1,6_2,6_0_0 +22305,2,72.0,0.0,6,111,1200.0,,,77,77,0.0,0.0,,1292.0,127.47420873647992,,70,0,0,0,0,0,0,0,0,0,,2,,4,122326,2,2,0,0,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,135.45316684774195,1200.0,78370.36020720676,5,5,0,1,107.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01648582444413967,52246.90680480451,10,5,10,10_0,10_2,10_0_0 +22306,2,71.0,0.0,1,111,540.0,278.0,0.0,78,77,0.0,1215.7324402953855,920.8082934209131,1925.0,261.87636359994247,527.7841253272613,50,0,0,0,0,0,0,0,0,0,,1,,1,122327,2,1,2,0,2,,116.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,233.600438093633,540.0,41159.23037126563,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046769582002288715,27439.486914177087,7,4,7,7_1,7_3,7_1_0 +22307,2,41.0,0.0,7,112,340.0,550.0,0.0,0,65,0.0,0.0,579.7681847465008,920.0,41.567676761895626,1044.177226366884,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,122328,2,1,2,0,1,,122.0,312.0,12,1.0,0.0,2.0,1.0,1.0,1,1,756.545396619118,340.0,20829.773396809185,0,1,2,3,53.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04416754721589676,20829.773396809185,5,3,5,5_1,5_0,5_0_0 +22308,2,48.0,0.0,2,221,282.0,1300.0,0.0,55,62,0.0,0.0,480.8665532309212,1582.0,0.0,2468.055262321726,50,1,2,2,2,1,2,2,2,2,4.0,1,,2,122329,1,3,4,0,1,,230.0,294.0,43,2.0,1.0,3.0,3.0,2.0,3,3,1881.37504083747,282.0,43637.86029252519,1,1,2,3,75.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03625292325047806,21818.930146262595,6,3,6,6_1,6_1,6_0_1 +22310,1,31.0,210.0,1,111,450.0,0.0,0.0,0,35,0.0,0.0,767.3402445174275,450.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,122331,1,1,0,0,2,,0.0,469.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2805.54031652949,450.0,23145.839860491687,0,4,3,4,25.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.01944193871176471,23145.839860491687,6,3,6,6_0,6_3,6_1_0 +22311,2,42.0,0.0,6,111,256.0,0.0,0.0,62,43,0.0,582.7040018844986,436.53133910324766,786.0,124.70303028568689,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,4,122332,2,1,2,0,1,,233.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,215.347757385005,256.0,46436.44909533178,1,1,1,2,128.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016926358826153568,19348.520456388243,5,3,5,5_1,5_2,5_0_0 +22312,2,70.0,0.0,9,120,450.0,,,0,74,0.0,0.0,,560.0,152.4148147936173,,41,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122333,2,1,0,0,2,,350.0,900.0,11,0.0,2.0,4.0,1.0,1.0,1,1,125.43822277634432,450.0,48605.665705545834,0,5,2,3,90.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011521290612343261,48605.665705545834,10,5,10,10_1,10_2,10_0_0 +22313,2,40.0,0.0,2,111,357.0,758.0,0.0,52,62,0.0,331.081819252556,608.7565939838258,1365.0,0.0,1439.06606833836,50,0,0,0,0,0,0,0,0,3,40.0,1,,2,122334,2,1,2,0,1,,303.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1077.37145370959,357.0,59033.52681893052,1,1,1,2,169.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023122453858919367,28111.20324710977,8,4,8,8_1,8_3,8_0_1 +22314,2,37.0,0.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,603.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,122335,2,1,0,1,1,360.0,0.0,380.0,32,1.0,0.0,1.0,2.0,1.3,1,1,1938.62855660425,0.0,9229.59350317402,0,4,3,4,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06533332153714362,7099.687310133861,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +22315,1,41.0,199.0,9,111,792.0,340.0,0.0,85,52,0.0,0.0,1350.5188303506725,1132.0,0.0,645.4913762995283,71,1,2,2,1,2,2,2,2,2,30.0,2,2008.0,6,122336,2,3,0,1,1,612.0,0.0,507.0,42,1.0,0.0,3.0,4.0,2.1,2,2,599.818661745679,792.0,32556.314379601015,6,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03477052060626627,15503.006847429055,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +22316,1,23.0,144.0,8,111,456.0,0.0,0.0,0,56,0.0,0.0,777.5714477776598,456.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,122337,2,1,0,0,1,,100.0,435.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2272.34573516565,456.0,15644.997418658702,0,1,2,3,57.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.029146697042989632,15644.997418658702,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +22317,2,54.0,0.0,5,111,300.0,900.0,0.0,0,65,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,122338,2,2,0,0,1,,0.0,,12,1.0,5.0,2.0,1.0,1.0,1,1,144.954453915158,300.0,37771.20867681406,0,1,1,2,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031770230343108476,37771.20867681406,9,5,9,9_0,9_3,9_0_0 +22318,2,42.0,0.0,1,111,200.0,900.0,0.0,81,38,0.0,0.0,341.04010867441224,1100.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,122339,2,2,2,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,104.095824627824,200.0,31576.934959314312,4,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034835553273847145,17542.741644063506,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +22319,2,55.0,0.0,6,112,1689.0,0.0,0.0,52,78,0.0,0.0,2880.0837177554113,1779.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,122340,2,1,2,0,1,,182.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1539.96474758906,1689.0,49153.825942943855,1,7,0,1,90.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03619250314441453,32769.2172952959,8,4,8,8_1,8_0,8_0_0 +22320,2,61.0,0.0,1,111,380.0,380.0,0.0,77,78,0.0,0.0,647.9762064813832,760.0,0.0,721.4315382171199,71,0,0,0,0,0,0,0,0,0,,1,,1,122341,2,2,1,0,1,,480.0,,41,1.0,2.0,3.0,3.0,2.0,3,3,719.918289947356,380.0,42520.1491362166,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017873878983003588,21260.0745681083,5,3,5,5_1,5_4,5_1_0 +22321,2,36.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1980.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,1,122342,1,1,0,0,1,,0.0,900.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1405.3964988081,0.0,35531.964368926594,0,1,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.055724473306394205,35531.964368926594,9,5,9,9_0,9_4,9_1_0 +22322,2,24.0,0.0,2,111,444.0,360.0,0.0,0,64,0.0,0.0,757.1090412571951,804.0,0.0,683.461457258324,50,0,0,0,0,0,0,0,0,0,,2,,2,122343,2,1,0,1,1,600.0,0.0,355.0,22,4.0,3.0,4.0,5.0,2.8,4,4,323.435348223445,444.0,40701.10742235319,0,1,2,3,61.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.019753762266390824,14536.10979369757,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +22323,2,52.0,0.0,1,112,500.0,0.0,0.0,11,11,949.2145659329414,0.0,852.6002716860306,1600.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122344,2,1,2,0,1,,373.0,,43,2.0,0.0,5.0,5.0,2.8,4,4,1045.33874986993,500.0,46999.61670147142,1,1,0,1,100.0,6,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03404283082057366,16785.577393382653,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22324,2,37.0,0.0,1,111,600.0,1100.0,0.0,67,62,0.0,0.0,1023.1203260232367,1700.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,122345,2,2,5,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,264.954793118143,600.0,45274.706295150856,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03754855943001619,21559.383950071835,6,3,6,6_1,6_3,6_1_0 +22325,2,40.0,0.0,7,111,300.0,,,67,52,0.0,0.0,,430.0,180.1265993015477,,43,0,0,0,0,0,0,0,0,0,,1,,5,122346,1,1,0,0,2,,240.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,125.30780435050688,300.0,38415.17649361702,4,1,0,1,49.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011193492761160367,16702.250649398706,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +22326,2,62.0,0.0,2,111,285.0,100.0,0.0,0,77,0.0,0.0,485.98215486103743,385.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,0,,2,,2,122347,2,1,0,1,1,384.0,170.0,277.0,11,0.0,0.0,2.0,1.0,1.0,1,1,361.144574462122,285.0,16638.50931716263,0,7,2,3,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02313909213025907,16638.50931716263,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +22327,2,69.0,0.0,6,112,503.0,0.0,0.0,0,77,2373.0364148323533,0.0,857.7158733161468,2923.0,235.55016831740858,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,122348,2,1,3,0,1,,384.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1766.33909395351,503.0,18839.04244302491,0,5,0,1,103.0,9,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15515650590204125,18839.04244302491,5,3,5,5_1,5_2,5_0_0 +22328,2,47.0,0.0,9,111,756.0,,,37,35,0.0,0.0,,1056.0,415.67676761895626,,41,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,122349,2,1,0,0,2,,178.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,44.95444387487954,756.0,91488.14636484599,1,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011542478910751703,45744.073182422995,10,5,10,10_1,10_2,10_0_0 +22329,2,93.0,0.0,5,111,640.0,0.0,0.0,0,72,0.0,0.0,1091.3283477581192,640.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,122350,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,2112.82192261071,640.0,44493.54646340253,0,5,0,1,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014384108502711107,44493.54646340253,10,5,10,10_0,10_2,10_0_0 +22330,2,52.0,0.0,1,211,240.0,1293.0,0.0,0,54,0.0,211.89236432163582,409.2481304092947,1693.0,0.0,2454.765733986147,50,2,2,2,1,1,2,2,2,0,,1,,1,122351,2,3,2,0,1,,130.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1345.75345569709,240.0,14498.69975514178,0,4,0,1,80.0,3,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.11676909161454971,14498.69975514178,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +22331,2,59.0,0.0,1,111,650.0,1800.0,0.0,34,35,0.0,0.0,1108.3803531918397,2450.0,0.0,3417.30728629162,20,0,0,0,0,0,0,0,0,3,45.0,1,,1,122352,2,1,1,0,1,,0.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,874.740224587985,650.0,63059.886348400294,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0388519571136549,25223.95453936012,7,4,7,7_1,7_4,7_1_0 +22332,2,61.0,0.0,2,111,1900.0,0.0,0.0,78,77,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122353,2,2,2,0,1,,460.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,788.110979575908,1900.0,24474.16487888805,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07763288387580414,16316.109919258699,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +22333,2,57.0,0.0,1,120,800.0,0.0,0.0,77,64,0.0,264.8654554020448,1364.160434697649,1060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,122354,2,1,2,0,1,,200.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,2952.35365722437,800.0,41629.89665793574,5,1,0,1,120.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025462470125972234,27753.264438623824,7,4,7,7_1,7_1,7_1_0 +22334,2,53.0,0.0,9,111,1500.0,0.0,0.0,37,38,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,2010.0,6,122355,2,1,1,0,1,,150.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1384.6325432579,1500.0,99282.48816550583,1,1,1,2,215.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01510840459094328,55156.93786972546,10,5,10,10_1,10_3,10_0_0 +22335,2,48.0,0.0,1,111,1305.0,0.0,0.0,22,37,0.0,0.0,2225.2867091005396,1375.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,122356,2,2,1,0,1,,500.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,1460.51703367248,1305.0,49749.77435455979,1,4,0,1,140.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027638316310754786,19899.909741823918,5,3,5,5_1,5_3,5_1_0 +22336,2,35.0,0.0,5,111,440.0,0.0,0.0,0,52,0.0,0.0,750.2882390837069,440.0,0.0,0.0,30,1,2,2,1,1,2,2,2,2,10.0,2,,3,122357,1,2,0,1,1,408.0,0.0,228.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1102.91072300115,440.0,16039.947671557858,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02743151093816914,16039.947671557858,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +22337,1,28.0,373.0,9,111,336.0,400.0,0.0,68,21,0.0,0.0,572.9473825730125,736.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,2,2012.0,6,122358,2,1,0,0,1,,350.0,352.0,43,2.0,0.0,3.0,3.0,1.8,2,2,3434.79858526093,336.0,9414.0,4,4,2,3,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0781814319099214,5230.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +22338,2,59.0,0.0,6,111,392.0,,,0,55,0.0,0.0,,434.0,58.19474746665388,,70,0,0,0,0,0,0,0,0,3,45.0,1,,4,122359,2,1,0,0,2,,377.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,105.87506110615159,392.0,26912.028894095176,0,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01612661764402404,26912.028894095176,7,4,7,7_1,7_2,7_0_0 +22339,2,48.0,0.0,2,111,1200.0,0.0,0.0,0,34,1687.4925616585624,331.081819252556,2046.2406520464733,3170.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,2,6.0,1,,2,122360,2,1,2,0,1,,900.0,,32,1.0,0.0,6.0,4.0,2.3,3,1,888.893415204163,1200.0,89306.72091312199,0,1,1,2,123.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03549564878867058,38829.009092661734,9,5,9,9_1,9_2,9_0_1 +22340,2,70.0,0.0,1,111,1700.0,1700.0,0.0,74,74,0.0,0.0,2898.840923732504,3400.0,0.0,3227.4568814976415,10,0,0,0,0,0,0,0,0,0,,1,,1,122361,2,2,2,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1356.005593228,1700.0,98568.39597023113,5,5,0,1,195.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034493814843317955,65712.26398015408,10,5,10,10_1,10_2,10_1_0 +22341,2,55.0,0.0,9,112,2086.0,0.0,0.0,37,37,0.0,0.0,3557.0483334741198,2086.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,2012.0,6,122362,2,1,1,0,1,,740.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,1260.64993622191,2086.0,96342.91597505924,1,1,1,2,165.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021651825449626343,53523.842208366244,10,5,10,10_1,10_0,10_0_0 +22342,2,50.0,0.0,8,111,2040.0,0.0,0.0,54,38,0.0,635.6770929649075,3478.6091084790046,2520.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,50.0,1,2002.0,6,122363,2,1,1,0,1,,750.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,606.105918403038,2040.0,84902.30735712468,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02968117214294449,33960.92294284987,9,5,9,9_1,9_4,9_0_0 +22343,2,49.0,0.0,7,400,0.0,0.0,0.0,11,11,1792.9608467622227,0.0,0.0,2083.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,122364,1,1,4,0,1,,539.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,742.936281108698,0.0,23119.63882527846,1,1,0,1,80.0,0,0,7,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09009656317478877,9247.855530111385,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +22344,2,44.0,0.0,2,111,792.0,1700.0,0.0,77,68,0.0,115.21647309988948,1350.5188303506725,2579.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,122365,2,2,2,0,1,,0.0,955.0,42,1.0,3.0,4.0,2.0,1.5,2,2,861.160448331475,792.0,13504.328947234944,5,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19097579821084398,9002.885964823296,1,1,1_0,1_1_0,1_4_0,1_0_1_0 +22345,2,52.0,0.0,2,111,360.0,120.0,0.0,0,56,0.0,0.0,613.872195613942,480.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,122366,1,1,0,1,1,36.0,0.0,366.0,32,1.0,0.0,3.0,3.0,2.0,3,3,216.86114016562,360.0,12387.973208350844,0,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03874725848425533,6193.986604175422,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +22346,2,28.0,0.0,6,111,180.0,200.0,0.0,0,63,0.0,0.0,306.936097806971,380.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,4,122367,1,2,0,3,1,,180.0,780.0,22,3.0,0.0,5.0,3.0,2.0,3,3,758.626595131378,180.0,29557.565116117556,0,4,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012856268725355472,14778.782558058778,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +22347,2,50.0,0.0,9,112,1440.0,0.0,0.0,56,63,0.0,844.9208027325228,2455.488782455768,2078.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,90.0,1,2011.0,6,122368,2,1,1,0,1,,1200.0,,43,2.0,0.0,4.0,6.0,3.3,5,5,199.262198492751,1440.0,34067.394607488226,1,1,1,2,99.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060996739666826255,10323.45291136007,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +22348,2,38.0,0.0,2,111,1080.0,,,0,52,0.0,0.0,,1300.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,0,,1,,2,122369,2,1,0,0,2,,400.0,,32,1.0,2.0,3.0,4.0,2.3,3,2,89.48042802128604,1080.0,41784.02672457686,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031112367617632114,18166.96814112038,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +22349,2,77.0,0.0,1,111,580.0,1900.0,0.0,0,78,0.0,595.9472746546007,989.0163151557955,2930.0,0.0,3607.1576910855993,70,0,0,0,0,0,0,0,0,0,,1,,1,122370,1,2,2,0,2,,220.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,424.629833367879,580.0,27286.264674651164,0,5,0,1,120.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1073800329556269,27286.264674651164,7,4,7,7_1,7_2,7_1_0 +22350,1,23.0,270.0,5,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1064.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,122371,1,1,0,1,2,350.0,251.0,335.0,12,1.0,0.0,2.0,1.0,1.0,1,1,396.661077532751,0.0,9023.80577170755,0,1,2,3,63.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11791033926461188,9023.80577170755,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +22351,0,42.0,0.0,2,111,384.0,0.0,0.0,46,47,0.0,0.0,654.7970086548714,384.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,2,122372,2,2,0,1,1,,180.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1491.74983562781,384.0,68988.24023464863,4,1,5,0,85.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005566166040674566,45992.16015643242,10,5,10,10_0,10_2,10_0_1 +22352,1,40.0,300.0,1,111,700.0,0.0,0.0,0,46,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,31,1,1,1,1,2,1,2,2,3,30.0,2,,1,122373,1,3,0,1,2,,0.0,700.0,32,1.0,0.0,1.0,3.0,1.6,1,1,772.934103249644,700.0,11828.259765866002,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,1,0.059180303261521225,7392.662353666251,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +22353,2,48.0,0.0,2,111,678.0,150.0,0.0,85,56,421.8731404146406,0.0,1156.1259684062575,1228.0,0.0,284.77560719096834,31,0,0,0,0,0,0,0,0,0,,2,,2,122374,2,2,0,1,1,,0.0,,42,1.0,0.0,6.0,5.0,2.8,4,3,725.465652118374,678.0,19427.264903301675,7,1,0,1,97.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0632101330842151,6938.308894036313,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +22354,1,75.0,87.0,7,112,128.0,670.0,0.0,0,72,0.0,0.0,218.26566955162383,798.0,0.0,1271.9977121196587,50,0,0,0,0,0,0,0,0,0,,2,,5,122375,2,2,0,0,1,,140.0,482.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2403.92716762102,128.0,10902.190758033263,0,5,2,3,47.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07319629767182297,10902.190758033263,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +22355,1,34.0,155.0,1,111,480.0,0.0,0.0,45,53,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,2,2,2,1,1,2,2,2,2,26.0,1,,1,122376,2,2,5,0,2,,350.0,520.0,43,2.0,0.0,2.0,3.0,1.8,2,2,810.53900603199,480.0,18419.16815367874,4,1,2,3,43.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.026059808781545474,10232.87119648819,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +22356,2,65.0,0.0,2,111,312.0,1112.0,0.0,0,77,0.0,0.0,532.0225695320831,1459.0,48.49562288887823,2111.1365013090453,42,0,0,0,0,0,0,0,0,0,,2,,2,122377,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2864.83606517312,312.0,55756.51815161813,0,5,0,1,91.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026167344166516213,55756.51815161813,10,5,10,10_0,10_3,10_0_1 +22357,2,47.0,0.0,1,111,560.0,1250.0,0.0,35,34,0.0,0.0,954.9123042883542,1810.0,0.0,2373.130059924736,10,1,2,2,1,1,2,2,2,3,30.0,1,,1,122378,2,1,1,0,1,,633.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,603.399522246511,560.0,89133.196502979,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02030668786729203,31833.284465349647,8,4,8,8_1,8_4,8_1_0 +22358,2,60.0,0.0,2,111,360.0,0.0,0.0,0,21,1582.0242765549024,198.6490915515336,613.872195613942,2010.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,122379,2,3,4,0,2,,180.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,806.345217336912,360.0,38813.950034403664,0,1,0,1,110.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.051785504907858874,25875.966689602443,7,4,7,7_1,7_3,7_0_1 +22359,1,49.0,322.0,2,111,250.0,400.0,0.0,85,63,0.0,0.0,426.3001358430153,650.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,122380,1,3,0,1,1,700.0,500.0,279.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1303.33827858925,250.0,60927.25078155855,6,1,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.010668461019691076,25386.354492316063,7,4,7,7_0,7_3,7_0_1 +22360,1,28.0,459.0,5,211,283.0,1210.0,0.0,0,85,0.0,0.0,482.5717537742933,1493.0,0.0,2297.1898980071446,41,2,2,2,2,1,2,2,2,0,,1,,3,122381,1,3,3,0,1,,256.0,442.0,31,0.0,0.0,5.0,4.0,1.9,1,1,247.513531564574,283.0,13396.136918637401,0,6,3,4,80.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.11145004034132115,7050.598378230212,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +22361,2,28.0,0.0,7,111,0.0,0.0,0.0,84,42,0.0,0.0,0.0,1022.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,122382,2,2,5,0,1,,252.0,490.0,42,1.0,0.0,3.0,3.0,1.8,2,2,2036.55493342466,0.0,35769.4047558603,3,1,2,3,80.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028571904032944805,19871.8915310335,5,3,5,5_1,5_2,5_0_0 +22362,2,40.0,0.0,6,111,1250.0,0.0,0.0,54,45,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,122383,2,2,1,0,2,,335.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,1329.5680217532,1250.0,66718.11984966951,1,1,0,1,91.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01873553995251249,33359.05992483476,8,4,8,8_1,8_2,8_0_0 +22363,2,48.0,0.0,1,111,1800.0,0.0,0.0,34,33,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,122384,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,803.292622373364,1800.0,195039.95530282767,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00922887824294894,130026.63686855178,10,5,10,10_0,10_4,10_1_0 +22364,2,42.0,0.0,5,112,1300.0,0.0,0.0,52,53,0.0,476.7578197236806,2216.7607063836795,1860.0,277.1178450793042,0.0,50,2,2,2,2,2,2,1,2,2,15.0,1,,3,122385,2,2,3,0,1,,180.0,,43,3.0,0.0,6.0,4.0,2.3,3,2,1254.00508959819,1300.0,57424.00766645542,1,1,1,2,162.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03239063373639332,24966.95985498062,7,4,7,7_1,7_0,7_0_0 +22365,2,54.0,0.0,6,112,600.0,1000.0,0.0,0,48,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,122386,2,2,2,0,1,,160.0,380.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1124.89773149372,600.0,20430.82091243167,0,1,2,3,32.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07831305491138821,15716.0160864859,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +22366,2,52.0,0.0,1,112,810.0,0.0,0.0,52,69,421.8731404146406,0.0,1381.2124401313695,2130.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,1,122387,1,2,2,0,2,,304.0,,43,3.0,0.0,6.0,5.0,3.0,5,4,1370.99986477999,810.0,42838.17736131117,1,1,0,1,90.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04972200339045438,14279.392453770392,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22367,1,32.0,122.0,7,112,450.0,1000.0,0.0,62,62,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,122388,2,2,4,0,1,,580.0,495.0,43,2.0,0.0,4.0,4.0,2.1,2,2,713.295919058958,450.0,38201.85528703872,4,1,2,3,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037956271733534414,18191.35966049463,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +22368,2,65.0,0.0,8,300,800.0,0.0,0.0,85,75,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,122389,2,1,2,0,1,,400.0,,41,0.0,0.0,3.0,4.0,2.1,2,2,2035.28903315228,800.0,28746.116658637606,6,5,0,1,91.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027829846010160707,13688.626980303621,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +22369,2,70.0,0.0,7,111,614.0,937.0,0.0,77,75,0.0,0.0,1046.9931336304455,1551.0,0.0,1778.8982929195822,50,0,0,0,0,0,0,0,0,0,,1,,5,122390,2,1,3,0,1,,662.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1136.69728193299,614.0,29931.77091959222,5,5,0,1,113.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05181784947394386,19954.513946394814,5,3,5,5_1,5_3,5_0_0 +22370,2,74.0,0.0,1,111,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,122391,2,2,2,0,1,,240.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1373.44505995337,1200.0,25435.869172552586,0,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04717747177654537,25435.869172552586,7,4,7,7_1,7_3,7_1_0 +22371,1,59.0,271.0,2,111,860.0,410.0,0.0,0,85,0.0,0.0,1466.4724672999725,1270.0,0.0,778.3866596553135,70,0,0,0,0,0,0,0,0,0,,2,,2,122392,2,1,0,1,1,607.0,0.0,313.0,31,1.0,6.0,5.0,3.0,2.0,3,3,259.992396965806,860.0,20244.976071488923,0,6,2,3,92.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06273161279694205,10122.488035744462,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +22372,2,35.0,0.0,5,111,980.0,0.0,0.0,56,37,0.0,0.0,1671.09653250462,980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,3,122393,2,1,0,1,2,516.0,463.0,712.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,556.519296022929,980.0,44395.076144905834,1,1,2,3,85.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02207452008419297,17075.029286502246,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +22373,2,75.0,0.0,5,300,1500.0,0.0,0.0,77,75,0.0,0.0,2557.8008150580918,1640.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,122394,2,1,2,0,2,,180.0,600.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1927.6875176999,1500.0,35694.23650133035,5,5,2,3,82.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04594579295564638,23796.157667553565,6,3,6,6_1,6_0,6_0_0 +22374,2,68.0,0.0,6,111,500.0,500.0,0.0,0,77,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,1,,4,122395,2,1,2,0,1,,360.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1586.81372158498,500.0,21346.443872449534,0,5,1,2,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04684621035593825,21346.443872449534,6,3,6,6_1,6_3,6_0_0 +22376,2,57.0,0.0,1,111,286.0,880.0,0.0,64,54,0.0,0.0,487.6873554044095,1166.0,0.0,1670.6835621870143,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,122397,2,1,2,0,1,,332.0,,43,2.0,5.0,4.0,2.0,1.5,2,2,260.362265721093,286.0,63075.102366074934,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018485899447816596,42050.06824404996,9,5,9,9_1,9_3,9_1_0 +22378,2,41.0,0.0,2,111,725.0,104.0,0.0,53,62,0.0,0.0,1236.2703939447445,829.0,0.0,197.44442098573805,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,122399,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,706.620531650158,725.0,43930.68521767729,1,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018870636683500176,20919.37391317966,5,3,5,5_0,5_4,5_0_1 +22379,0,35.0,0.0,2,111,210.0,0.0,0.0,55,52,0.0,0.0,358.0921141081328,210.0,0.0,0.0,50,1,2,1,2,1,2,2,2,2,15.0,2,,2,122400,1,1,0,1,2,468.0,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,926.358436448897,210.0,38208.94729853624,4,1,5,0,38.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005496094890006169,18194.73680882678,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +22380,2,69.0,0.0,2,111,948.0,0.0,0.0,0,75,0.0,0.0,1616.530115116714,948.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,122401,2,3,0,0,2,,0.0,684.0,11,0.0,2.0,4.0,1.0,1.0,1,1,2218.62001286183,948.0,25898.750605396235,0,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03660408235301033,25898.750605396235,7,4,7,7_0,7_3,7_0_1 +22381,1,52.0,466.0,2,111,444.0,0.0,0.0,0,85,0.0,0.0,757.1090412571951,624.0,249.40606057137379,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,122402,1,3,0,1,1,1346.0,0.0,432.0,31,4.0,4.0,5.0,6.0,3.3,5,4,237.261165468321,444.0,20982.86978677406,0,6,2,3,111.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.029738544171556563,6358.445389931533,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22382,1,54.0,118.0,5,111,0.0,0.0,470.0,0,68,0.0,0.0,296.24959649492956,470.0,0.0,562.4641093554,60,2,2,2,2,1,2,2,2,0,,2,,3,122403,1,2,0,1,1,573.0,0.0,333.0,32,2.0,4.0,3.0,2.0,1.5,2,2,360.633543854104,0.0,12119.983509432705,0,1,2,3,85.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03877893065070673,8079.98900628847,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +22383,2,68.0,0.0,1,112,1837.0,0.0,0.0,77,75,0.0,0.0,3132.453398174476,1877.0,55.423569015860835,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,122404,2,1,2,0,1,,255.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,867.153493498466,1837.0,26591.186491194192,5,5,0,1,107.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07058729781093365,17727.457660796128,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22384,2,39.0,0.0,8,111,0.0,,,85,55,0.0,0.0,,300.0,415.67676761895626,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,122405,2,1,0,0,2,,0.0,,42,1.0,0.0,5.0,4.0,2.1,3,2,70.03854802864535,0.0,41677.81530391627,7,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007198074030809633,19846.578716150605,5,3,5,5_1,5_2,5_0_0 +22385,2,39.0,0.0,2,111,480.0,1700.0,0.0,43,43,0.0,0.0,818.4962608185893,2180.0,0.0,3227.4568814976415,33,0,0,0,0,0,0,0,0,2,30.0,1,,2,122406,2,1,1,0,1,,460.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1703.73013073901,480.0,54821.102416339025,1,1,1,2,85.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039765708895162004,26105.286864923342,7,4,7,7_1,7_3,7_0_1 +22386,1,41.0,392.0,2,111,250.0,120.0,0.0,85,62,0.0,0.0,426.3001358430153,370.0,0.0,227.8204857527747,71,2,1,2,2,1,2,2,2,0,,2,,2,122407,2,2,0,1,1,1150.0,0.0,336.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,307.508765204964,250.0,18230.14109832494,6,4,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020296057940769153,6751.904110490719,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22387,2,32.0,0.0,7,111,585.0,0.0,0.0,0,37,0.0,0.0,997.5423178726558,585.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,5,122408,1,2,0,0,1,,0.0,569.0,12,1.0,0.0,2.0,1.0,1.0,1,1,855.988439545687,585.0,47517.54355077206,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012311242465110447,47517.54355077206,10,5,10,10_0,10_4,10_0_0 +22388,2,54.0,0.0,7,111,1777.0,0.0,0.0,75,37,3514.203259653956,0.0,3030.1413655721526,5169.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,122409,1,2,1,0,1,,366.0,,42,1.0,1.0,8.0,2.0,1.5,2,2,1513.38005290073,1777.0,81731.04821624808,7,1,0,1,270.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06324401941259339,54487.365477498715,10,5,10,10_1,10_2,10_0_0 +22389,2,41.0,0.0,1,112,450.0,1500.0,0.0,0,47,0.0,0.0,767.3402445174275,1950.0,0.0,2847.7560719096837,43,2,2,2,1,2,2,2,2,2,20.0,1,,1,122410,1,3,2,0,1,,72.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1476.87863670376,450.0,24696.72794075466,0,1,1,2,87.0,6,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0789578281251623,24696.72794075466,7,4,7,7_1,7_0,7_1_0 +22390,1,44.0,274.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,481.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,122411,2,1,0,1,1,,0.0,500.0,32,1.0,0.0,3.0,2.0,1.3,1,1,185.828761303846,0.0,6262.502835538751,0,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07680635244911957,4817.309873491347,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +22391,2,85.0,0.0,2,112,350.0,0.0,0.0,0,77,2003.897416969543,0.0,596.8201901802214,2340.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,122412,2,2,3,0,2,,416.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,2225.23511531642,350.0,11980.798754627218,0,5,0,1,100.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.19531252030222496,11980.798754627218,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +22392,2,47.0,0.0,5,111,1300.0,0.0,0.0,31,31,2320.3022722805235,0.0,2216.7607063836795,3500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,14.0,1,,3,122413,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,989.247284642918,1300.0,161335.22985928613,1,1,1,2,180.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021693959856459378,64534.091943714455,10,5,10,10_1,10_2,10_0_0 +22393,1,49.0,230.0,6,112,2127.0,0.0,0.0,0,42,0.0,0.0,3626.961555752374,2252.0,173.19865317456512,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,4,122414,2,2,1,0,1,,0.0,445.0,32,1.0,0.0,5.0,5.0,2.4,2,1,1352.56723917253,2127.0,45054.11243310821,0,1,2,3,75.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04998433835187724,18772.546847128422,5,3,5,5_1,5_1,5_0_0 +22394,0,66.0,0.0,1,120,456.0,0.0,0.0,77,78,2273.896226834913,0.0,777.5714477776598,2708.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122415,1,3,4,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1806.70966694039,456.0,33707.32782842747,5,5,5,0,95.0,0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08033861401840867,22471.551885618315,6,3,6,6_1,6_1,6_1_0 +22395,2,81.0,0.0,2,111,225.0,1850.0,0.0,77,72,0.0,0.0,383.6701222587138,2075.0,0.0,3512.2324886886095,50,0,0,0,0,0,0,0,0,0,,1,,2,122416,2,2,3,0,1,,226.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1050.95659107364,225.0,37016.68642543769,5,5,0,1,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0560558007854012,24677.790950291794,7,4,7,7_1,7_4,7_0_1 +22396,1,27.0,327.0,1,111,600.0,0.0,0.0,0,69,0.0,0.0,1023.1203260232367,2127.0,415.67676761895626,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,122417,1,3,4,0,1,,500.0,361.0,22,2.0,0.0,4.0,4.0,2.5,4,4,82.3695362937814,600.0,18446.00265290951,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.11530953562258682,7378.401061163803,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +22397,1,93.0,180.0,2,111,1100.0,0.0,0.0,0,77,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,122418,2,1,0,0,1,,210.0,474.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1917.98427178218,1100.0,10014.870190841106,0,5,2,3,60.0,4,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10983667077442326,10014.870190841106,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22398,2,56.0,0.0,5,111,480.0,,,0,22,0.0,0.0,,543.0,87.29212119998083,,41,0,0,0,0,0,0,0,0,1,2.0,1,,3,122419,1,1,0,0,1,,135.0,507.0,32,1.0,0.0,3.0,2.0,1.3,1,1,105.8923535366746,480.0,16417.084791070145,0,1,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033075299720408194,12628.52676236165,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +22399,2,48.0,0.0,2,112,400.0,0.0,0.0,0,43,1371.087706347582,0.0,682.0802173488245,1900.0,277.1178450793042,0.0,33,0,0,0,0,0,0,0,0,2,45.0,1,,2,122420,1,3,1,0,2,,300.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,992.131625534859,400.0,34658.650786560334,0,1,1,2,65.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05482036827402316,26660.50060504641,7,4,7,7_1,7_0,7_0_1 +22400,2,31.0,0.0,1,112,1200.0,0.0,0.0,85,38,0.0,0.0,2046.2406520464733,1270.0,96.99124577775646,0.0,12,2,2,2,2,1,2,2,2,2,30.0,1,,1,122421,2,2,5,0,2,,500.0,585.0,42,1.0,0.0,4.0,4.0,2.1,2,2,898.373867135895,1200.0,37381.092207749454,6,1,2,3,78.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.03397439520872846,17800.52009892831,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22401,1,45.0,319.0,7,221,0.0,0.0,0.0,84,63,0.0,0.0,0.0,2038.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,122422,2,1,1,0,1,,688.0,420.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,1144.5818837893,0.0,24076.800279652773,3,1,2,3,130.0,1,3,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08464579912316286,9260.307799866452,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +22402,2,31.0,0.0,6,211,0.0,,,0,52,0.0,0.0,,141.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,122423,2,3,0,0,1,,115.0,282.0,12,1.0,1.0,1.0,1.0,1.0,1,1,93.85251751870277,0.0,28133.706776738865,0,1,2,3,34.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0050117818145662815,28133.706776738865,8,4,8,8_0,8_2,8_0_0 +22403,2,79.0,0.0,6,111,250.0,340.0,0.0,0,75,0.0,0.0,426.3001358430153,590.0,0.0,645.4913762995283,41,0,0,0,0,0,0,0,0,0,,2,,4,122424,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1415.63194434467,250.0,38139.76618500066,0,5,0,1,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015469418379183222,38139.76618500066,9,5,9,9_0,9_3,9_0_0 +22404,2,61.0,0.0,6,111,260.0,454.0,0.0,0,77,0.0,0.0,443.3521412767359,714.0,0.0,861.9208377646642,50,0,0,0,0,0,0,0,0,0,,2,,4,122425,2,1,0,0,1,,0.0,484.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2102.22308921469,260.0,17638.960905015832,0,5,2,3,136.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04047857489139092,17638.960905015832,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +22405,2,69.0,0.0,7,221,0.0,0.0,0.0,77,78,0.0,0.0,0.0,2081.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,122426,2,2,3,0,1,,306.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1665.20478672411,0.0,35231.40746102227,5,5,0,1,80.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05906661555608537,23487.604974014845,6,3,6,6_1,6_1,6_0_0 +22406,2,72.0,0.0,2,112,0.0,0.0,3500.0,78,74,0.0,0.0,2206.114016451603,3500.0,0.0,4188.562516476382,50,2,2,2,2,1,2,2,2,0,,1,,2,122427,1,3,3,0,1,,600.0,683.0,41,0.0,6.0,6.0,2.0,1.5,2,2,2159.06031279741,0.0,31770.21628173654,5,5,2,3,90.0,9,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.11016607406642094,21180.14418782436,5,3,5,5_1,5_1,5_0_1 +22407,2,62.0,0.0,6,111,249.0,664.0,0.0,0,75,0.0,0.0,424.5949352996432,913.0,0.0,1260.6066878320198,33,0,0,0,0,0,0,0,0,0,,2,,4,122428,2,1,0,0,1,,168.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1681.15752171539,249.0,44583.719657603724,0,5,0,1,70.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.020478327223742276,44583.719657603724,10,5,10,10_0,10_2,10_0_0 +22408,2,60.0,0.0,9,112,1005.0,0.0,0.0,56,38,0.0,0.0,1713.7265460889214,1005.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,122429,2,1,1,0,1,,268.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1906.16136111409,1005.0,36714.67643439729,1,4,0,1,103.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02737324954492679,24476.45095626486,7,4,7,7_1,7_0,7_0_0 +22409,2,56.0,0.0,1,212,500.0,0.0,0.0,77,22,0.0,0.0,852.6002716860306,620.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,122430,2,1,3,0,1,,200.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,928.307914032012,500.0,22331.300652270947,6,1,0,1,120.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02776372096073813,14887.533768180632,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22410,2,39.0,0.0,1,112,0.0,0.0,0.0,42,46,0.0,0.0,0.0,753.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,1,,1,122431,1,2,5,0,2,,0.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,651.397288002607,0.0,22494.3287484027,1,1,3,4,50.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03347510425504339,12496.849304668165,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +22411,2,61.0,0.0,7,111,528.0,,,77,63,0.0,66.2163638505112,,721.0,198.1392592317025,,71,0,0,0,0,0,0,0,0,0,,1,,5,122432,2,1,0,0,2,,169.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,79.30827234127823,528.0,27251.329814597862,5,4,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026457424459843355,18167.55320973191,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +22412,2,35.0,0.0,2,111,360.0,0.0,0.0,0,55,0.0,0.0,613.872195613942,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,122433,2,1,0,0,1,,180.0,398.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2353.30463917734,360.0,15256.002726685883,0,1,2,3,40.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023597268986474816,15256.002726685883,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +22413,2,53.0,0.0,7,112,1277.0,0.0,0.0,56,62,0.0,0.0,2177.5410938861223,1277.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,122434,2,1,2,0,1,,492.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,1360.17301669137,1277.0,39622.24873875619,1,1,0,1,90.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03222936710179482,19811.124369378096,5,3,5,5_1,5_0,5_0_0 +22414,2,55.0,0.0,1,111,432.0,780.0,0.0,0,38,0.0,0.0,736.6466347367304,1212.0,0.0,1480.8331573930354,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,122435,2,1,3,0,1,,184.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,90.663577783925,432.0,40019.345296625615,0,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03028535302155966,40019.345296625615,9,5,9,9_1,9_3,9_1_0 +22415,0,57.0,0.0,2,111,550.0,,,0,43,0.0,0.0,,596.0,63.73710436823996,,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,122436,2,2,0,0,2,,350.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,136.0510764596818,550.0,54972.0,0,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010841883140507895,54972.0,10,5,10,10_1,10_2,10_0_1 +22416,1,60.0,245.0,7,111,476.0,,,0,56,0.0,0.0,,636.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,2,,5,122437,2,2,0,0,2,,394.0,371.0,12,1.0,6.0,4.0,1.0,1.0,1,1,95.23073005870033,476.0,7486.520074010141,0,4,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0849526874586109,7486.520074010141,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22417,1,55.0,40.0,1,112,350.0,0.0,0.0,0,77,0.0,993.245457757668,596.8201901802214,1130.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122438,2,3,4,0,1,,90.0,247.0,11,0.0,3.0,3.0,1.0,1.0,1,1,76.1924160417213,350.0,15886.943209064524,0,7,2,3,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07112759107461669,15886.943209064524,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +22418,2,55.0,0.0,2,111,720.0,,,54,67,0.0,0.0,,1020.0,415.67676761895626,,50,0,0,0,0,0,0,0,0,0,,1,,2,122439,2,2,0,0,2,,320.0,,43,2.0,1.0,5.0,4.0,2.5,4,3,44.06784588497965,720.0,20474.557355205805,4,4,0,1,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04981792682031573,8189.822942082322,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22419,2,58.0,0.0,5,111,724.0,0.0,0.0,86,65,0.0,0.0,1234.5651934013722,724.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,122440,2,1,0,1,1,,200.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1505.06860855685,724.0,31831.87402704994,5,1,0,1,69.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022744498152536125,21221.249351366627,5,3,5,5_0,5_3,5_0_0 +22420,2,66.0,0.0,2,111,300.0,,,52,77,0.0,0.0,,900.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,0,,2,,2,122441,2,1,0,0,2,,952.0,259.0,42,1.0,0.0,4.0,5.0,2.8,4,3,30.064326163835688,300.0,2759.224344170143,1,5,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.32617862404033027,985.4372657750512,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +22421,2,44.0,0.0,7,120,0.0,0.0,0.0,0,12,0.0,0.0,0.0,970.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,122442,2,2,5,0,1,,296.0,490.0,12,1.0,2.0,3.0,1.0,1.0,1,1,958.180382449107,0.0,4989.286994544484,0,1,2,3,60.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.19441655712742978,4989.286994544484,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +22422,2,51.0,0.0,1,112,700.0,0.0,0.0,0,52,3164.0485531098047,0.0,1193.6403803604428,3820.0,166.2707070475825,0.0,41,2,2,2,1,1,2,2,2,2,10.0,1,,1,122443,1,1,3,0,2,,260.0,,22,1.0,2.0,7.0,2.0,1.5,2,2,545.487320503178,700.0,18135.53553632559,0,1,0,1,120.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.21063618399073555,12090.35702421706,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +22423,2,50.0,0.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,2134.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,4.0,2,,1,122444,1,1,0,0,1,,224.0,550.0,32,3.0,5.0,2.0,3.0,2.0,3,2,980.040769115195,0.0,31632.868714439224,0,1,3,4,35.0,8,6,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06746147557037432,15816.434357219612,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +22424,2,39.0,0.0,2,111,752.0,0.0,0.0,62,48,0.0,0.0,1282.31080861579,752.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,122445,2,2,0,1,1,,0.0,,43,3.0,0.0,6.0,7.0,3.6,5,4,366.256393146644,752.0,69807.97782549768,1,1,1,2,103.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010772407730815668,19391.104951527133,5,3,5,5_0,5_3,5_0_1 +22425,2,40.0,0.0,1,111,900.0,0.0,0.0,55,43,0.0,0.0,1534.680489034855,1025.0,173.19865317456512,0.0,33,2,2,2,1,1,2,2,2,2,30.0,1,,1,122446,2,3,1,0,1,,293.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1260.27599179896,900.0,34669.86289356647,4,1,1,2,90.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02956458187177327,16509.458520745935,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +22426,2,62.0,0.0,5,112,240.0,,,77,77,0.0,0.0,,328.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,0,,1,,3,122447,2,2,0,0,2,,600.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,92.75618960366012,240.0,32872.2181601577,6,5,0,1,120.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009978030639792591,21914.812106771802,6,3,6,6_1,6_2,6_0_0 +22427,2,89.0,0.0,7,111,380.0,0.0,0.0,0,86,0.0,0.0,647.9762064813832,380.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,122448,2,1,0,0,1,,98.0,609.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1656.05106730519,380.0,28345.28329380604,0,5,2,3,49.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013406110500332764,28345.28329380604,8,4,8,8_0,8_2,8_0_0 +22428,2,45.0,0.0,1,112,650.0,0.0,0.0,42,34,2109.365702073203,52.973091080408956,1108.3803531918397,2745.0,76.20740739680865,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,122449,1,2,1,0,2,,210.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1065.53590442209,650.0,57490.725215832565,1,1,0,1,120.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.047746832027160534,38327.15014388838,9,5,9,9_1,9_0,9_1_0 +22429,2,63.0,0.0,8,112,300.0,,,0,78,0.0,0.0,,344.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,122450,2,2,0,0,2,,150.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,127.74793392836379,300.0,7979.015249047637,0,7,0,1,30.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04311308968121841,7979.015249047637,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +22430,2,45.0,0.0,5,111,0.0,,,85,22,0.0,0.0,,1127.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,122451,2,1,0,0,2,,535.0,800.0,42,1.0,1.0,4.0,2.0,1.5,2,2,81.3164591927682,0.0,86013.13792107535,7,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013102649516567132,57342.09194738357,10,5,10,10_1,10_3,10_0_0 +22431,2,61.0,0.0,2,111,545.0,0.0,0.0,68,75,12329.242528617871,0.0,929.3342961377733,12235.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122452,2,3,4,0,1,,325.0,,42,1.0,5.0,2.0,2.0,1.5,2,2,305.155676079395,545.0,26795.667558790505,1,5,1,2,75.0,6,4,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4566036644974804,17863.778372527002,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +22432,1,23.0,254.0,1,111,768.0,1308.0,0.0,0,52,0.0,0.0,1309.5940173097429,2076.0,0.0,2483.243294705244,71,0,0,0,0,0,0,0,0,0,,1,,1,122453,2,3,1,0,1,,600.0,381.0,22,3.0,1.0,4.0,3.0,2.0,3,3,802.286035125512,768.0,19873.059123599727,0,1,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10446303143810914,9936.529561799864,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +22433,2,37.0,0.0,2,111,181.0,200.0,0.0,68,46,0.0,0.0,308.64129835034305,381.0,0.0,379.7008095879578,41,0,0,0,0,0,0,0,0,0,,2,,2,122454,2,1,0,1,2,468.0,0.0,232.0,43,2.0,3.0,4.0,5.0,2.8,4,4,226.642111176387,181.0,27531.04178673204,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013838924184249878,9832.514923832872,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +22434,2,49.0,0.0,6,111,600.0,1200.0,0.0,0,43,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,33,0,0,0,0,0,0,0,0,0,,2,,4,122455,2,1,0,0,1,,340.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,3034.57084217866,600.0,32455.431199621446,0,1,1,2,100.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05546067124879225,16227.715599810723,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +22435,2,74.0,0.0,1,400,2500.0,0.0,0.0,72,74,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122456,2,1,1,0,1,,220.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1573.33556233693,2500.0,78247.05330441931,5,5,0,1,87.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03195008494791206,52164.70220294621,10,5,10,10_1,10_0,10_1_0 +22436,1,26.0,200.0,8,111,600.0,,,0,56,0.0,0.0,,692.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,122457,1,1,0,0,2,,216.0,400.0,32,1.0,0.0,3.0,3.0,1.6,1,1,75.62196681117736,600.0,12907.588597595883,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05361187295114823,8067.242873497426,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22437,2,52.0,0.0,9,120,400.0,,,43,34,0.0,0.0,,442.0,58.19474746665388,,10,0,0,0,0,0,0,0,0,2,2.0,1,2007.0,6,122458,2,1,0,0,1,,180.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,3,3,144.2751258192257,400.0,83721.06949582041,1,1,1,2,65.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0052794356625134355,32200.411344546315,8,4,8,8_1,8_2,8_0_0 +22438,2,61.0,0.0,7,111,707.0,0.0,0.0,78,34,960.816077294344,0.0,1205.5767841640472,1719.0,139.94451176504862,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,122459,2,1,2,0,1,,301.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1021.53725913818,707.0,79515.67919941318,5,1,0,1,125.0,6,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02161837787600368,53010.452799608785,10,5,10,10_1,10_2,10_0_0 +22439,2,33.0,0.0,2,111,210.0,240.0,0.0,56,65,0.0,0.0,358.0921141081328,450.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,122460,2,1,0,1,1,326.0,0.0,290.0,43,2.0,0.0,4.0,3.0,1.8,2,2,285.16939882276,210.0,36827.877054925455,1,1,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01221900462328756,20459.931697180808,5,3,5,5_0,5_2,5_0_1 +22441,2,77.0,0.0,9,221,0.0,0.0,0.0,0,77,0.0,0.0,0.0,676.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,122462,2,1,0,1,1,,104.0,756.0,11,0.0,4.0,3.0,1.0,1.0,1,1,3099.03054502068,0.0,13553.945511103278,0,5,2,3,90.0,1,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049874776274275744,13553.945511103278,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +22442,1,20.0,263.0,5,111,690.0,86.0,0.0,0,52,0.0,0.0,1176.5883749267223,776.0,0.0,163.27134812282185,31,2,1,2,2,1,2,2,2,0,,2,,3,122463,1,3,0,1,1,1068.0,0.0,414.0,22,2.0,0.0,5.0,4.0,2.3,3,2,815.202326690021,690.0,33049.386220404915,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.023480012452421654,14369.298356697791,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +22443,2,37.0,0.0,2,111,980.0,1700.0,0.0,46,46,0.0,0.0,1671.09653250462,2680.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,122464,2,2,2,0,1,,500.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,4,3,135.40156068136,980.0,45482.73701964448,1,1,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058923454822925,14671.850651498222,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +22444,2,56.0,0.0,6,112,800.0,0.0,0.0,0,67,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,122465,2,1,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,816.114902771936,800.0,6087.4239351297765,0,4,0,1,95.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13141847988987562,6087.4239351297765,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +22445,1,36.0,81.0,5,111,687.0,0.0,0.0,68,47,0.0,582.7040018844986,1171.472773296606,1127.0,0.0,0.0,50,2,2,2,2,1,2,2,1,2,10.0,2,,3,122466,1,2,0,1,1,474.0,0.0,326.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,97.9942165196961,687.0,39073.82276402181,1,1,2,3,68.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.028842839534956206,13473.73198759373,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +22446,2,53.0,0.0,1,111,520.0,1100.0,0.0,64,64,0.0,0.0,886.7042825534718,1620.0,0.0,2088.354452733768,60,0,0,0,0,0,0,0,0,2,60.0,2,,1,122467,1,3,0,0,2,,610.0,507.0,43,2.0,0.0,3.0,3.0,2.0,3,3,2056.90147176312,520.0,33759.73386623615,1,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04798616027065893,16879.866933118075,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +22447,2,60.0,0.0,5,111,460.0,,,52,35,0.0,0.0,,588.0,177.35542085075468,,60,0,0,0,0,0,0,0,0,2,20.0,2,,3,122468,2,2,0,0,2,,297.0,453.0,43,2.0,0.0,3.0,3.0,2.0,3,2,110.92272823328925,460.0,74867.19924125513,1,1,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007853906730305279,37433.59962062757,9,5,9,9_0,9_2,9_0_0 +22448,2,62.0,0.0,9,112,700.0,0.0,0.0,0,75,0.0,0.0,1193.6403803604428,750.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,122469,2,1,1,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,3973.34408677809,700.0,26652.60833997845,0,5,1,2,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028139834962231932,26652.60833997845,7,4,7,7_1,7_1,7_0_0 +22449,2,46.0,0.0,7,111,250.0,580.0,0.0,0,54,0.0,0.0,426.3001358430153,830.0,0.0,1101.1323478050776,31,0,0,0,0,0,0,0,0,2,15.0,2,,5,122470,2,1,0,0,1,,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1582.26117483402,250.0,29710.640874557823,0,1,2,3,54.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027936119032381954,29710.640874557823,8,4,8,8_0,8_3,8_0_0 +22451,2,46.0,0.0,1,300,2000.0,0.0,0.0,72,38,0.0,198.6490915515336,3410.4010867441225,2300.0,207.83838380947813,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,122472,2,1,1,0,1,,221.0,,42,1.0,3.0,4.0,3.0,2.0,3,3,1673.82361241929,2000.0,127637.20745368078,5,1,0,1,190.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018019823889007164,63818.60372684039,10,5,10,10_1,10_0,10_1_0 +22452,2,59.0,0.0,2,111,600.0,960.0,0.0,42,64,0.0,0.0,1023.1203260232367,1560.0,0.0,1822.5638860221975,71,2,2,2,2,1,2,2,2,0,,2,,2,122473,2,2,0,1,1,,0.0,243.0,43,3.0,0.0,3.0,4.0,2.5,4,3,349.294423270731,600.0,25985.015536256993,4,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.06003459947227378,10394.006214502797,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +22453,2,32.0,0.0,6,111,693.0,940.0,0.0,56,67,0.0,0.0,1181.7039765568384,1633.0,0.0,1784.5938050634018,71,0,0,0,0,0,0,0,0,2,30.0,2,,4,122474,1,3,0,0,1,,583.0,394.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1449.04694641531,693.0,24963.318332456794,4,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06541598269316651,13868.510184698218,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +22454,2,54.0,0.0,6,400,1125.0,0.0,0.0,56,21,1898.4291318658827,0.0,1918.3506112935688,3025.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,4,122475,2,1,1,0,1,,242.0,,43,3.0,1.0,7.0,3.0,2.0,3,3,1116.2373283994,1125.0,79721.8794014281,1,1,0,1,115.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03794441403931342,39860.93970071405,9,5,9,9_1,9_0,9_0_0 +22455,1,30.0,120.0,9,111,230.0,445.0,0.0,0,54,0.0,0.0,392.1961249755741,675.0,0.0,844.8343013332061,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,122476,2,1,1,0,1,,399.0,630.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1076.88040533856,230.0,19737.0,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03419972640218878,15182.307692307691,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +22456,2,65.0,0.0,7,111,120.0,,,0,78,0.0,0.0,,160.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,1,,5,122477,1,2,0,0,2,,124.0,200.0,11,0.0,0.0,3.0,1.0,1.0,1,1,116.10474548549792,120.0,5119.638415715187,0,5,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031252207091201155,5119.638415715187,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22457,2,53.0,0.0,1,112,343.0,0.0,0.0,0,47,0.0,0.0,584.883786376617,413.0,96.99124577775646,0.0,31,2,2,2,2,1,2,2,2,2,60.0,1,,1,122478,2,3,4,0,1,,90.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,592.7226131222,343.0,41458.56092313716,0,1,0,1,70.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.009961754359146443,41458.56092313716,9,5,9,9_1,9_0,9_1_0 +22458,2,83.0,0.0,2,111,408.0,0.0,0.0,0,78,1908.9759603762488,0.0,695.7218216958009,2308.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122479,2,1,3,0,1,,204.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1030.92093080796,408.0,16706.380533930616,0,6,0,1,72.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13815080982457317,16706.380533930616,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +22459,1,23.0,235.0,9,400,240.0,,,84,69,0.0,0.0,,240.0,0.0,,71,0,0,0,0,0,0,0,0,2,40.0,2,2005.0,6,122480,2,1,0,0,2,,360.0,435.0,42,1.0,0.0,3.0,3.0,1.8,2,2,88.42300065956711,240.0,15172.752066115703,3,1,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015817829155461916,8429.306703397613,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +22460,2,84.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,376.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,122481,2,1,0,1,2,710.0,0.0,712.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2118.61401740875,0.0,26235.37065507923,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014331796754211494,26235.37065507923,7,4,7,7_0,7_3,7_0_1 +22461,1,21.0,333.0,2,111,120.0,125.0,0.0,0,81,0.0,0.0,204.62406520464734,245.0,0.0,237.31300599247362,71,0,0,0,0,0,0,0,0,0,,2,,2,122482,2,1,0,1,1,,120.0,104.0,32,1.0,0.0,2.0,2.0,1.3,1,1,401.496650856925,120.0,7236.452119309262,0,4,2,3,60.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03385636993938763,5566.501630237894,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22462,2,58.0,0.0,6,111,1176.0,,,0,52,0.0,0.0,,1428.0,349.1684847999233,,60,0,0,0,0,0,0,0,0,2,20.0,1,,4,122483,2,2,0,0,2,,520.0,,22,3.0,1.0,4.0,4.0,2.5,4,4,72.91491050499367,1176.0,52184.68595316636,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02736434978801199,20873.87438126654,5,3,5,5_1,5_3,5_0_0 +22464,2,63.0,0.0,6,112,260.0,1600.0,0.0,0,75,0.0,0.0,443.3521412767359,1860.0,0.0,3037.6064767036623,41,0,0,0,0,0,0,0,0,0,,1,,4,122485,2,2,1,0,1,,260.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,254.818256885142,260.0,28737.189694874884,0,5,1,2,105.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06472449184311577,28737.189694874884,8,4,8,8_1,8_2,8_0_0 +22465,2,58.0,0.0,2,111,372.0,,,0,75,0.0,0.0,,516.0,199.524848457099,,60,0,0,0,0,0,0,0,0,0,,1,,2,122486,2,3,0,0,2,,620.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,171.37124705098583,372.0,29677.200818249945,0,5,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0173870845555854,29677.200818249945,8,4,8,8_1,8_2,8_0_1 +22466,2,66.0,0.0,6,111,350.0,,,0,75,0.0,0.0,,419.0,95.60565655235995,,33,0,0,0,0,0,0,0,0,0,,1,,4,122487,2,2,0,0,2,,268.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,133.09629105838334,350.0,29398.16221177916,0,5,0,1,124.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014252591606971827,29398.16221177916,8,4,8,8_1,8_2,8_0_0 +22467,2,46.0,0.0,7,120,600.0,1200.0,0.0,56,81,0.0,66.2163638505112,1023.1203260232367,1850.0,0.0,2278.2048575277468,71,1,2,2,1,1,2,2,2,0,,1,,5,122488,2,1,3,0,1,,0.0,350.0,43,2.0,7.0,4.0,3.0,2.0,3,3,608.868689268666,600.0,13208.634788261954,4,4,2,3,110.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.14005989488361276,6604.317394130977,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +22468,0,62.0,0.0,9,111,1200.0,1400.0,0.0,0,63,0.0,0.0,2046.2406520464733,2600.0,0.0,2657.9056671157045,41,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,122489,2,1,1,0,1,,970.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1737.93230555538,1200.0,23173.416004432354,0,1,0,1,140.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11219752838781735,23173.416004432354,6,3,6,6_1,6_3,6_0_0 +22469,2,78.0,0.0,1,111,900.0,1100.0,0.0,77,74,0.0,0.0,1534.680489034855,2000.0,0.0,2088.354452733768,41,0,0,0,0,0,0,0,0,0,,2,,1,122490,1,1,0,0,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,960.162577144024,900.0,90136.75965423258,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022188505640451935,60091.17310282172,10,5,10,10_0,10_4,10_1_0 +22471,2,41.0,0.0,8,120,550.0,0.0,0.0,54,63,1265.6194212439218,0.0,937.8602988546337,1750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,122492,2,1,2,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,895.892912375966,550.0,45343.2927781352,1,1,1,2,182.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03859446221876194,21592.04418006438,6,3,6,6_1,6_0,6_0_0 +22472,1,67.0,272.0,2,211,900.0,,,77,78,0.0,0.0,,1152.0,349.1684847999233,,71,2,2,1,2,1,2,2,2,0,,1,,2,122493,2,3,0,0,1,,336.0,338.0,41,0.0,4.0,4.0,2.0,1.5,2,2,101.08081061600916,900.0,10552.254748422987,6,5,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.10917098074912986,7034.836498948658,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +22473,2,45.0,0.0,7,111,555.0,982.0,0.0,52,48,0.0,0.0,946.386301571494,1537.0,0.0,1864.3309750768728,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,122494,2,1,2,0,1,,630.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,1034.61360431961,555.0,65299.74681260646,1,1,1,2,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023537610404689564,23321.338147359453,6,3,6,6_1,6_2,6_0_0 +22474,2,37.0,0.0,1,111,500.0,0.0,0.0,0,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,20.0,2,,1,122495,1,3,0,0,2,,300.0,270.0,12,1.0,0.0,1.0,1.0,1.0,1,1,618.301608253708,500.0,17845.743127500868,0,1,2,3,20.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.028017886194354316,17845.743127500868,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +22475,2,45.0,0.0,2,111,0.0,1100.0,0.0,0,65,0.0,0.0,0.0,1203.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,0,,2,,2,122496,2,2,0,0,1,,0.0,,22,1.0,4.0,3.0,2.0,1.5,2,2,1650.10884397718,0.0,18034.104195730593,0,4,0,1,57.0,7,6,8,0,1,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06670694518249479,12022.736130487063,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +22476,2,70.0,0.0,1,111,1237.0,0.0,0.0,77,74,0.0,0.0,2109.33307215124,1237.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,122497,2,1,2,0,1,,272.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,992.737269118832,1237.0,37925.982652096944,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032616162153193566,25283.988434731295,7,4,7,7_1,7_4,7_1_0 +22477,1,33.0,173.0,1,112,650.0,1000.0,0.0,85,63,0.0,0.0,1108.3803531918397,1650.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,1,122498,1,3,4,0,1,,735.0,620.0,42,1.0,0.0,5.0,5.0,2.4,2,2,433.999304135734,650.0,27770.0882837932,6,1,2,3,150.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05941644776703683,11570.870118247167,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +22478,2,76.0,0.0,5,221,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1348.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122499,2,2,5,0,1,,735.0,495.0,11,0.0,7.0,3.0,1.0,1.0,1,1,1181.3107728651,0.0,14430.770893467983,0,5,2,3,57.0,1,3,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09341150309649539,14430.770893467983,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +22479,1,25.0,325.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2572.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122500,2,2,0,0,1,,286.0,288.0,32,1.0,0.0,4.0,3.0,1.6,1,1,321.472243141536,0.0,10155.43050138626,0,4,2,3,65.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.25326351252651585,6347.1440633664115,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22480,2,66.0,0.0,2,112,750.0,2300.0,0.0,74,74,0.0,211.89236432163582,1278.9004075290459,3210.0,0.0,4366.559310261515,12,0,0,0,0,0,0,0,0,0,,1,,2,122501,2,2,2,0,1,,400.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,730.745650517282,750.0,156816.8192021429,5,5,0,1,360.0,8,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020469743081972518,104544.54613476194,10,5,10,10_1,10_0,10_0_1 +22481,1,38.0,200.0,9,400,480.0,,,0,56,0.0,0.0,,618.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,122502,1,1,0,0,2,,520.0,,32,2.0,0.0,4.0,4.0,2.1,2,2,139.59987309516532,480.0,7894.862259406427,0,4,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07827875644868618,3759.4582187649653,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +22482,2,76.0,0.0,1,120,1890.0,0.0,0.0,77,78,0.0,0.0,3222.8290269731956,1890.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,122503,2,1,2,0,1,,450.0,457.0,41,0.0,7.0,3.0,2.0,1.5,2,2,191.218822110641,1890.0,29389.34371461135,5,5,2,3,60.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.0643090236499687,19592.8958097409,5,3,5,5_1,5_0,5_1_0 +22483,2,73.0,0.0,6,111,380.0,,,0,72,0.0,0.0,,403.0,31.86855218411998,,70,0,0,0,0,0,0,0,0,0,,2,,4,122504,2,1,0,0,2,,150.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,111.81177577223296,380.0,29749.93967362765,0,5,0,1,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013546245956163949,29749.93967362765,8,4,8,8_0,8_3,8_0_0 +22484,2,90.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,527.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,122505,2,2,0,1,1,,0.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,271.444901793152,0.0,18561.55009403359,0,5,0,1,95.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028392025306625573,18561.55009403359,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +22485,2,46.0,0.0,7,120,660.0,,,0,42,0.0,0.0,,792.0,182.89777775234077,,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,122506,2,2,0,0,1,,240.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,103.76776414961773,660.0,44854.65417502705,0,1,0,1,122.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017657030570552214,29903.102783351365,8,4,8,8_1,8_2,8_0_0 +22486,2,55.0,0.0,6,111,590.0,600.0,0.0,65,48,0.0,370.8116375628627,1006.0683205895161,1470.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,1,5.0,1,,4,122507,2,1,2,0,1,,280.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,943.158574649282,590.0,68260.13320954677,1,1,0,1,82.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0215352641561269,45506.755473031175,10,5,10,10_1,10_2,10_0_0 +22487,2,74.0,0.0,1,111,360.0,,,0,72,0.0,0.0,,710.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,0,,2,,1,122508,2,2,0,0,2,,200.0,200.0,11,0.0,0.0,1.0,1.0,1.0,1,1,22.831187529991155,360.0,14024.999999999998,0,7,2,3,18.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05062388591800357,14024.999999999998,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +22488,2,54.0,0.0,1,111,700.0,1090.0,0.0,0,43,0.0,0.0,1193.6403803604428,1790.0,0.0,2069.36941225437,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,122509,2,1,0,0,1,,181.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,1766.6423684573,700.0,37821.49290428702,0,1,1,2,90.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04732758710846936,25214.328602858015,7,4,7,7_0,7_2,7_1_0 +22489,2,44.0,0.0,8,112,960.0,0.0,0.0,43,34,1582.0242765549024,66.2163638505112,1636.9925216371787,2540.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,122510,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,1101.91867684294,960.0,86010.70356863223,1,1,0,1,140.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02953120826378553,34404.281427452894,9,5,9,9_1,9_0,9_0_0 +22490,2,61.0,0.0,8,111,220.0,480.0,0.0,0,78,0.0,0.0,375.14411954185346,700.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,122511,2,1,0,0,1,,150.0,300.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1035.15087071125,220.0,15455.040053854624,0,5,2,3,56.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045292668123847,15455.040053854624,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +22491,2,55.0,0.0,1,120,877.0,0.0,0.0,74,77,2109.365702073203,0.0,1495.4608765372977,2941.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122512,2,2,2,0,1,,360.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1851.93915054508,877.0,25373.480126601604,5,6,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11590842033989063,16915.653417734404,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22492,2,36.0,0.0,9,112,1500.0,0.0,0.0,54,47,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,1,2,2,1,2,2,2,2,0,,1,2004.0,6,122513,2,1,3,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1067.61496279898,1500.0,36241.603585795354,1,1,1,2,90.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.041388897057190774,17257.906469426358,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +22493,0,40.0,0.0,9,111,480.0,,,55,52,0.0,0.0,,606.0,174.58424239996165,,43,0,0,0,0,0,0,0,0,2,45.0,1,2013.0,6,122514,2,1,0,0,2,,1080.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,117.23107243422268,480.0,54607.98397053261,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01109727838198546,26003.801890729814,7,4,7,7_1,7_3,7_0_0 +22494,1,54.0,137.0,5,111,280.0,0.0,0.0,85,65,0.0,0.0,477.4561521441771,573.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,122515,2,2,0,1,1,516.0,0.0,388.0,42,1.0,0.0,2.0,3.0,1.8,2,2,341.326344289231,280.0,18832.210808743657,6,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030426592279540556,10462.33933819092,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +22495,2,67.0,0.0,7,111,660.0,,,0,77,0.0,0.0,,752.0,127.47420873647992,,41,0,0,0,0,0,0,0,0,0,,1,,5,122516,2,1,0,0,2,,240.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,101.8652842870775,660.0,4981.723686943522,0,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1509517683549769,4981.723686943522,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22496,2,27.0,0.0,9,111,960.0,0.0,0.0,0,43,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,122517,2,1,0,0,1,,120.0,416.0,12,1.0,0.0,2.0,1.0,1.0,1,1,219.42695699644,960.0,23258.673791694648,0,1,2,3,38.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04127492429696498,23258.673791694648,6,3,6,6_0,6_2,6_0_0 +22497,2,39.0,0.0,2,111,480.0,100.0,0.0,54,47,0.0,0.0,818.4962608185893,580.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,122518,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1670.32332025501,480.0,48022.33920277236,1,1,1,2,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012077712365300943,26679.07733487353,7,4,7,7_0,7_3,7_0_1 +22498,2,54.0,0.0,1,400,150.0,0.0,0.0,0,11,0.0,1251.4892767746617,255.78008150580916,1195.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,122519,2,1,1,0,2,,150.0,,12,1.0,2.0,11.0,1.0,1.0,1,1,1117.14748406463,150.0,11645.86083023252,0,1,0,1,210.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10261156452237467,11645.86083023252,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +22499,2,37.0,0.0,2,111,350.0,0.0,0.0,0,35,0.0,0.0,596.8201901802214,350.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,25.0,2,,2,122520,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1147.84784648955,350.0,12489.553306622161,0,1,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028023420166229995,12489.553306622161,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +22500,2,79.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,542.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,122521,2,1,0,1,1,701.0,0.0,740.0,11,0.0,5.0,3.0,1.0,1.0,1,1,664.743817023981,0.0,27045.757192543526,0,5,2,3,58.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02004011187933864,27045.757192543526,7,4,7,7_0,7_4,7_0_1 +22501,1,58.0,253.0,2,111,270.0,,,0,55,0.0,0.0,,316.0,63.73710436823996,,70,0,0,0,0,0,0,0,0,0,,2,,2,122522,2,1,0,0,2,,0.0,255.0,12,1.0,1.0,4.0,1.0,1.0,1,1,104.9478707801438,270.0,6573.323218900845,0,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.048073096282771836,6573.323218900845,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22502,1,45.0,295.0,7,111,675.0,334.0,0.0,85,52,0.0,0.0,1151.0103667761414,1009.0,0.0,634.1003520118895,70,0,0,0,0,0,0,0,0,2,10.0,2,,5,122523,2,1,0,1,1,274.0,270.0,375.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1344.22821633372,675.0,16881.548064337618,6,1,2,3,49.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0597694000665448,9378.637813520898,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22503,2,41.0,0.0,2,111,1000.0,0.0,0.0,11,46,1582.0242765549024,0.0,1705.2005433720612,2530.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,122524,2,1,2,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1449.69789970757,1000.0,109069.63940080689,1,1,1,2,80.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023196189277776995,51937.92352419376,10,5,10,10_1,10_2,10_0_1 +22504,2,67.0,0.0,1,111,0.0,0.0,1300.0,77,74,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,20,0,0,0,0,0,0,0,0,0,,2,,1,122525,2,1,0,0,1,,230.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1733.83215897735,0.0,75040.43696503843,5,5,0,1,111.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01732399293737687,50026.95797669229,10,5,10,10_0,10_3,10_1_0 +22505,1,30.0,281.0,5,111,390.0,,,0,56,0.0,0.0,,440.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,2,15.0,8,,3,122526,2,2,0,0,2,,340.0,350.0,32,1.0,0.0,3.0,2.0,1.3,1,1,93.39747520297047,390.0,13052.579577248787,0,1,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03370981171928184,10040.445828652913,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +22506,2,62.0,0.0,9,111,0.0,,,77,77,0.0,0.0,,413.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,122527,2,1,0,0,2,,191.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,183.50997228159542,0.0,26871.68896410299,5,5,1,2,97.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01536933538311318,17914.45930940199,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +22507,2,68.0,0.0,6,111,5000.0,0.0,0.0,74,74,0.0,0.0,8526.002716860306,5000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,122528,2,1,2,0,1,,400.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1086.31726277965,5000.0,73218.60982127096,5,5,0,1,170.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06828864973269999,48812.40654751397,10,5,10,10_1,10_2,10_0_0 +22508,2,53.0,0.0,7,111,627.0,0.0,0.0,0,46,0.0,0.0,1069.1607406942824,627.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,2,,5,122529,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2263.1450539571,627.0,30873.183671162613,0,1,1,2,30.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0203088870483304,30873.183671162613,8,4,8,8_0,8_2,8_0_0 +22509,2,43.0,0.0,9,120,600.0,,,56,21,0.0,0.0,,732.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,122530,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,78.63360130974216,600.0,12880.427253412761,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05683041296677883,7155.792918562645,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +22510,1,34.0,235.0,7,111,643.0,,,0,56,0.0,0.0,,781.0,191.2113131047199,,43,0,0,0,0,0,0,0,0,2,10.0,2,,5,122531,2,2,0,0,2,,246.0,380.0,32,1.0,0.0,3.0,2.0,1.5,2,1,85.34939104260977,643.0,17968.901039084412,0,1,2,3,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04346398248291511,11979.267359389609,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +22511,2,54.0,0.0,1,300,1200.0,0.0,0.0,69,38,3164.0485531098047,0.0,2046.2406520464733,4200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,122532,2,1,1,0,1,,300.0,,43,2.0,2.0,9.0,3.0,2.0,3,3,1320.73530493213,1200.0,79625.98821323866,1,1,1,2,210.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0527465981175943,39812.99410661933,9,5,9,9_1,9_0,9_1_0 +22512,1,58.0,271.0,1,111,600.0,0.0,0.0,0,78,0.0,331.081819252556,1023.1203260232367,880.0,41.567676761895626,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,122533,1,2,3,0,2,,280.0,289.0,11,0.0,1.0,3.0,1.0,1.0,1,1,372.124042857482,600.0,9338.626537678125,0,7,2,3,70.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.09423227242780345,9338.626537678125,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +22513,2,36.0,0.0,7,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,586.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,5,122534,1,2,0,0,1,,0.0,360.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1682.16324053171,0.0,22217.406854777186,0,1,2,3,35.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02637571539425621,22217.406854777186,6,3,6,6_0,6_3,6_0_0 +22514,1,53.0,70.0,2,111,240.0,0.0,0.0,0,45,0.0,0.0,409.2481304092947,320.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,2,122535,2,1,0,1,2,200.0,0.0,588.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1289.61717254091,240.0,9076.790323424582,0,4,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03525475290248494,9076.790323424582,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +22515,2,58.0,0.0,5,111,0.0,0.0,804.0,68,78,0.0,0.0,506.77590549345405,804.0,0.0,962.1726466420034,50,0,0,0,0,0,0,0,0,0,,2,,3,122536,1,3,0,1,1,562.0,372.0,386.0,42,2.0,2.0,5.0,3.0,2.0,3,3,307.508936916609,0.0,43776.70163420208,1,7,2,3,85.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018365933704147477,21888.35081710104,6,3,6,6_0,6_3,6_0_0 +22516,2,56.0,0.0,2,112,1360.0,0.0,0.0,56,46,4218.731404146406,0.0,2319.072738986003,5500.0,193.98249155551292,0.0,70,2,2,2,2,1,1,2,2,2,30.0,1,,2,122537,2,3,4,0,1,,0.0,822.0,43,3.0,0.0,5.0,6.0,3.3,5,4,717.535965461235,1360.0,83992.05433761758,1,1,2,3,100.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.06548238453475606,25452.137678065934,7,4,7,7_1,7_0,7_0_1 +22517,2,49.0,0.0,1,111,750.0,420.0,0.0,0,68,0.0,0.0,1278.9004075290459,1170.0,0.0,797.3717001347114,71,2,2,2,2,1,2,2,2,3,20.0,2,,1,122538,2,3,0,0,1,,0.0,380.0,22,2.0,3.0,2.0,2.0,1.5,2,2,1940.6110058265,750.0,27256.34597388604,0,1,2,3,30.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,1,1,0,0,0.04292578326973697,18170.897315924027,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +22518,2,36.0,0.0,1,111,820.0,1600.0,0.0,85,65,0.0,264.8654554020448,1398.2644455650902,2620.0,0.0,3037.6064767036623,71,0,0,0,0,0,0,0,0,2,7.0,1,,1,122539,2,1,3,0,1,,530.0,,42,1.0,0.0,5.0,4.0,2.3,3,2,292.461826339019,820.0,46571.5065412774,6,1,1,2,100.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05625757452526973,20248.481104903218,5,3,5,5_1,5_2,5_1_0 +22519,2,79.0,0.0,2,111,273.0,0.0,0.0,77,77,2504.8717712119287,0.0,465.5197483405727,2903.0,353.32525247611284,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,122540,2,1,2,0,1,,613.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,918.452556753097,273.0,43819.49133171186,5,5,0,1,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06624905748048059,29212.99422114124,8,4,8,8_1,8_4,8_0_1 +22520,2,31.0,0.0,1,111,900.0,0.0,0.0,55,48,0.0,198.6490915515336,1534.680489034855,1950.0,1247.030302856869,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,122541,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,315.206354800914,900.0,41660.031170368304,1,1,1,2,100.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04680745417653418,19838.11008112776,5,3,5,5_1,5_3,5_1_0 +22521,2,92.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,490.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,2,122542,2,2,0,0,2,,320.0,,11,0.0,7.0,3.0,1.0,1.0,1,1,86.40621522662128,360.0,11374.463157894737,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04307895618439829,11374.463157894737,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +22522,2,59.0,0.0,2,111,150.0,800.0,0.0,0,62,0.0,0.0,255.78008150580916,980.0,41.567676761895626,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,122543,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2162.00471344006,150.0,20139.557880450062,0,1,0,1,56.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.048660452519233746,20139.557880450062,5,3,5,5_0,5_2,5_0_1 +22523,2,36.0,0.0,9,120,1429.0,0.0,0.0,21,63,0.0,0.0,2436.7315764786754,1429.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,122544,2,1,1,0,1,,233.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,610.40480246499,1429.0,45920.10009938332,1,1,1,2,113.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03111927014329811,19133.37504140972,5,3,5,5_1,5_0,5_0_0 +22524,2,51.0,0.0,6,111,1198.0,942.0,0.0,85,37,0.0,0.0,2042.8302509597293,2140.0,0.0,1788.3908131592812,12,2,2,2,1,2,1,2,1,3,60.0,2,,4,122545,2,1,0,0,1,,0.0,1299.0,42,1.0,0.0,5.0,5.0,3.0,5,3,1789.06752268256,1198.0,85780.90483638487,6,1,2,3,130.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02494727706686881,28593.634945461625,8,4,8,8_0,8_3,8_0_0 +22525,2,49.0,0.0,6,111,271.0,0.0,0.0,0,42,0.0,0.0,462.10934725382856,312.0,0.0,0.0,31,2,2,1,2,1,2,2,2,0,,2,,4,122546,2,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1125.57109539071,271.0,36004.96233971351,0,4,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.008665472193977654,36004.96233971351,9,5,9,9_0,9_4,9_0_0 +22526,2,51.0,0.0,6,111,1850.0,0.0,0.0,0,43,0.0,0.0,3154.621005238313,1850.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,122547,2,1,2,0,1,,160.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,1654.80980602024,1850.0,54375.040643412736,0,1,0,1,130.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03402296307477093,54375.040643412736,10,5,10,10_1,10_3,10_0_0 +22527,2,73.0,0.0,2,111,360.0,0.0,0.0,77,74,1687.4925616585624,450.2712741834761,613.872195613942,2420.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122548,2,2,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1138.71021891508,360.0,40226.33220644043,5,5,0,1,90.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06015959863257298,26817.554804293617,7,4,7,7_1,7_2,7_0_1 +22528,2,38.0,0.0,8,111,400.0,,,21,85,0.0,0.0,,715.0,436.4606059999041,,43,0,0,0,0,0,0,0,0,0,,1,2002.0,6,122549,2,1,0,0,1,,196.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,86.22031642348182,400.0,3090.547077448574,1,7,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23135062566019024,1471.6890844993209,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22529,1,45.0,120.0,7,111,300.0,,,0,55,0.0,0.0,,350.0,69.27946126982604,,42,0,0,0,0,0,0,0,0,2,20.0,2,,5,122550,2,1,0,0,1,,450.0,489.0,12,1.0,2.0,4.0,1.0,1.0,1,1,73.43010567044755,300.0,22652.601934212234,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015450763714317287,22652.601934212234,6,3,6,6_0,6_3,6_0_0 +22530,2,61.0,0.0,1,300,260.0,0.0,0.0,0,78,1582.0242765549024,0.0,443.3521412767359,1820.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,122551,2,1,2,0,1,,88.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1584.06818334857,260.0,14212.237592146777,0,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12805865284757645,14212.237592146777,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22532,2,40.0,0.0,1,111,610.0,650.0,0.0,54,47,0.0,0.0,1040.1723314569574,1260.0,0.0,1234.027631160863,31,0,0,0,0,0,0,0,0,2,7.0,1,,1,122553,2,1,1,0,1,,180.0,550.0,43,2.0,0.0,4.0,4.0,2.1,2,2,338.805330733066,610.0,46065.303263460235,1,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02735247378691313,21935.858696885825,6,3,6,6_1,6_2,6_1_0 +22533,2,52.0,0.0,6,111,900.0,,,81,63,0.0,0.0,,1092.0,266.03313127613205,,71,0,0,0,0,0,0,0,0,0,,1,,4,122554,2,2,0,0,2,,1000.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,92.62450565654508,900.0,32487.351898033303,4,4,0,1,37.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03361308128244539,18048.528832240725,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +22534,2,92.0,0.0,2,120,450.0,,,0,77,0.0,0.0,,650.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,2,122555,1,1,0,0,2,,189.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,100.98302179537978,450.0,10396.048780487807,0,5,0,1,150.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06252375433443287,10396.048780487807,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +22535,2,63.0,0.0,6,111,500.0,0.0,0.0,55,33,0.0,238.3789098618403,852.6002716860306,740.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,4,45.0,1,,4,122556,2,2,1,0,1,,120.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1654.86512296335,500.0,59032.68320485222,1,1,0,1,224.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012535428847645119,39355.12213656815,9,5,9,9_1,9_3,9_0_0 +22536,2,70.0,0.0,1,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,993.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,2,,1,122557,2,1,0,0,1,,460.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1019.10050212813,0.0,102168.44049448895,5,5,0,1,110.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.009719243977826628,68112.29366299264,10,5,10,10_0,10_4,10_1_0 +22537,1,41.0,172.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,511.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,122558,2,2,0,1,1,329.0,0.0,287.0,32,1.0,1.0,2.0,3.0,1.8,2,1,243.82738610067,0.0,12338.437706455212,0,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04141529196461036,6854.68761469734,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +22538,2,57.0,0.0,1,112,400.0,600.0,0.0,78,56,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,122559,2,1,2,0,1,,120.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,295.080466967606,400.0,56126.94696042504,7,1,0,1,96.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017816753879470716,28063.47348021252,8,4,8,8_1,8_0,8_1_0 +22539,2,91.0,0.0,7,111,0.0,,,56,72,0.0,0.0,,92.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,2,240.0,7,,5,122560,1,2,0,0,2,,0.0,,42,1.0,2.0,2.0,2.0,1.5,2,2,86.13630383107771,0.0,8866.866766850517,1,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010375705693915384,5911.244511233678,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22540,2,63.0,0.0,6,120,1200.0,0.0,0.0,72,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,122561,2,1,3,0,1,,400.0,610.0,41,0.0,5.0,4.0,2.0,1.5,2,2,2084.78500947057,1200.0,40969.36568423453,5,5,2,3,92.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029290177671990988,27312.910456156354,7,4,7,7_1,7_1,7_0_0 +22541,2,53.0,0.0,7,111,1370.0,0.0,0.0,56,21,0.0,0.0,2336.124744419724,1370.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,122562,2,1,1,0,1,,420.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,1785.49676347792,1370.0,47342.464296916136,1,1,1,2,90.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028938079593994456,18936.985718766453,5,3,5,5_1,5_3,5_0_0 +22542,2,48.0,0.0,7,120,1200.0,0.0,0.0,85,62,0.0,397.2981831030672,2046.2406520464733,1560.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,122563,2,1,1,0,1,,250.0,,42,1.0,0.0,5.0,5.0,2.8,4,2,1676.82692090198,1200.0,51684.57257039618,6,1,1,2,115.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030183087958698427,18458.775917998635,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +22544,2,66.0,0.0,7,112,50.0,0.0,0.0,0,77,0.0,0.0,85.26002716860306,150.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,122565,2,1,1,0,1,,85.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2040.43697679555,50.0,25272.914348258113,0,5,0,1,80.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005935207864554744,25272.914348258113,7,4,7,7_1,7_0,7_0_0 +22545,2,51.0,0.0,5,111,2200.0,0.0,0.0,42,37,0.0,198.6490915515336,3751.441195418535,2350.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,75.0,1,,3,122566,2,2,1,0,1,,0.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,364.293208018753,2200.0,92035.12840300341,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02553372870530283,35398.12630884747,9,5,9,9_1,9_4,9_0_0 +22546,2,71.0,0.0,2,111,644.0,,,81,78,0.0,0.0,,874.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,122567,2,1,0,0,2,,480.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,70.26100454636288,644.0,10179.970000000001,4,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08585486990629637,6786.646666666667,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22547,2,55.0,0.0,1,300,850.0,0.0,0.0,55,54,2109.365702073203,0.0,1449.420461866252,2852.0,2.771178450793042,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,122568,2,1,2,0,1,,200.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,830.427872375448,850.0,22439.188293507268,4,1,0,1,131.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1270990716195033,14959.458862338179,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22548,2,83.0,0.0,2,112,343.0,0.0,0.0,77,78,2081.9439479462512,0.0,584.883786376617,2737.0,581.9474746665388,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122569,2,1,2,0,1,,253.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,846.408807368057,343.0,22673.348970585877,5,5,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12071441248272183,15115.565980390586,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +22549,2,56.0,0.0,6,111,1335.0,0.0,0.0,85,37,0.0,0.0,2276.442725401702,1410.0,103.91919190473907,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,4,122570,2,1,2,0,1,,274.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,964.482245166792,1335.0,36747.4812593904,6,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038369976707987044,24498.320839593598,7,4,7,7_1,7_3,7_0_0 +22550,2,55.0,0.0,2,111,253.0,0.0,0.0,0,52,0.0,0.0,431.41573747313146,278.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,122571,2,2,0,1,1,,115.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1531.48231243406,253.0,20119.51488592255,0,1,0,1,47.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013817430568095566,20119.51488592255,5,3,5,5_0,5_2,5_0_1 +22551,2,74.0,0.0,6,111,1480.0,0.0,0.0,0,75,0.0,0.0,2523.6968041906507,1480.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,122572,2,1,0,0,1,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1016.48851041825,1480.0,30930.106279303393,0,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04784981941657048,30930.106279303393,8,4,8,8_0,8_4,8_0_0 +22552,2,55.0,0.0,6,111,1500.0,0.0,0.0,21,21,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,2,2,2,2,2,2,2,1,2,5.0,1,,4,122573,2,1,2,0,1,,500.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1100.77134524167,1500.0,54602.57165236191,1,1,1,2,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.02747123358126879,27301.285826180956,7,4,7,7_1,7_3,7_0_0 +22553,1,42.0,241.0,5,111,480.0,,,62,54,0.0,0.0,,546.0,91.44888887617039,,42,0,0,0,0,0,0,0,0,0,,1,,3,122574,2,1,0,0,2,,480.0,650.0,43,2.0,0.0,4.0,4.0,2.1,2,2,100.68959754565492,480.0,29166.020079877526,4,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01872041500707534,13888.58099041787,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +22554,2,77.0,0.0,7,120,750.0,0.0,0.0,78,74,0.0,529.7309108040896,1278.9004075290459,1206.0,77.59299662220518,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,122575,2,1,1,0,1,,150.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,552.084276482331,750.0,44330.777602618764,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02720457580984904,29553.851735079177,8,4,8,8_1,8_0,8_0_0 +22555,1,31.0,70.0,9,112,1100.0,0.0,0.0,45,64,316.40485531098045,0.0,1875.7205977092674,1460.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,122576,2,2,3,0,1,,520.0,550.0,43,2.0,0.0,4.0,4.0,2.1,2,2,716.85234216592,1100.0,37200.761380481985,1,1,2,3,100.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03924650856113966,17714.648276419994,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +22556,2,53.0,0.0,6,120,1600.0,0.0,0.0,55,48,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,122577,2,1,1,0,1,,250.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,836.189350046476,1600.0,61271.08975564981,1,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02611345752753588,40847.393170433206,9,5,9,9_1,9_0,9_0_0 +22557,2,50.0,0.0,1,111,580.0,910.0,0.0,0,52,0.0,0.0,989.0163151557955,1490.0,0.0,1727.638683625208,71,1,2,2,2,1,2,2,2,1,20.0,1,,1,122578,2,3,2,0,1,,600.0,417.0,32,3.0,1.0,7.0,3.0,2.0,3,3,300.988264339616,580.0,26219.93459317509,0,1,2,3,150.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05682699149020147,13109.967296587545,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +22558,2,35.0,0.0,5,111,259.2,72.0,0.0,0,35,0.0,0.0,441.9879808420382,331.0,0.0,136.6922914516648,12,0,0,0,0,0,0,0,0,0,,2,,3,122579,2,1,0,1,2,639.0,0.0,799.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1289.48518986435,259.2,33427.042833863205,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009902162199782778,33427.042833863205,8,4,8,8_0,8_4,8_0_0 +22559,0,31.0,0.0,6,400,0.0,,,0,85,0.0,0.0,,120.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,4,122580,2,2,0,0,2,,0.0,,31,0.0,0.0,3.0,4.0,1.9,1,1,49.961444604623054,0.0,17421.884518854633,0,6,5,0,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006887888613320297,9169.412904660334,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +22560,2,33.0,0.0,9,112,518.0,0.0,0.0,65,54,0.0,0.0,883.2938814667277,1818.0,1801.2659930154773,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,122581,2,1,1,0,1,,450.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1120.7338597468,518.0,38045.182548024604,1,1,1,2,90.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04778528786673925,21136.212526680334,5,3,5,5_1,5_1,5_0_0 +22561,2,51.0,0.0,2,111,550.0,450.0,0.0,85,37,0.0,0.0,937.8602988546337,1000.0,0.0,854.326821572905,12,0,0,0,0,0,0,0,0,2,3.0,1,,2,122582,2,1,1,0,1,,400.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1399.74186613637,550.0,73917.78652078714,5,1,1,2,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013528543630277407,41065.43695599285,9,5,9,9_1,9_3,9_0_1 +22562,1,85.0,327.0,2,111,380.0,120.0,0.0,77,74,0.0,0.0,647.9762064813832,500.0,0.0,227.8204857527747,60,0,0,0,0,0,0,0,0,0,,2,,2,122583,2,1,0,1,1,1020.0,0.0,359.0,41,0.0,6.0,3.0,2.0,1.5,2,2,477.89275577013,380.0,14015.977767241575,5,5,2,3,65.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03567357256863021,9343.98517816105,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22563,2,53.0,0.0,2,111,1200.0,0.0,0.0,0,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,122584,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1170.71803638333,1200.0,46415.620871495965,0,1,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025853365256542873,46415.620871495965,10,5,10,10_0,10_4,10_0_1 +22564,1,31.0,170.0,2,111,420.0,0.0,0.0,85,54,0.0,0.0,716.1842282162656,1110.0,332.541414095165,0.0,60,2,1,2,1,1,2,2,2,2,15.0,2,,2,122585,2,1,0,1,1,1045.0,0.0,351.0,42,1.0,0.0,5.0,5.0,2.4,2,2,262.250624348408,420.0,27012.39324972615,6,1,2,3,80.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.041092249388574746,11255.163854052562,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +22565,1,36.0,135.0,2,111,286.0,1159.0,0.0,85,64,0.0,0.0,487.6873554044095,1535.0,124.70303028568689,2200.3661915622156,50,2,2,2,2,1,2,2,1,0,,2,,2,122586,1,3,0,0,1,,0.0,282.0,42,1.0,0.0,4.0,5.0,2.4,2,2,245.640353514708,286.0,27000.525594876864,6,1,2,3,69.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0568507451681331,11250.21899786536,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +22566,0,52.0,0.0,1,211,240.0,,,0,68,0.0,0.0,,290.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,1,122587,2,1,0,0,2,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,98.88836485156881,240.0,6902.241657064706,0,4,5,0,64.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042015335655942156,6902.241657064706,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +22567,2,36.0,0.0,6,112,760.0,0.0,0.0,42,64,0.0,397.2981831030672,1295.9524129627664,1060.0,0.0,0.0,31,2,2,1,2,2,2,2,1,0,,1,,4,122588,2,2,1,0,1,,440.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1391.48355784144,760.0,51315.08898595347,1,1,1,2,90.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.020656692231210097,34210.059323968984,9,5,9,9_1,9_0,9_0_0 +22568,2,77.0,0.0,2,212,435.0,0.0,0.0,77,78,0.0,0.0,741.7622363668467,615.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122589,2,1,2,0,2,,299.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1610.04180942337,435.0,27435.863175679297,5,5,0,1,100.0,3,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02241591584204906,18290.575450452863,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +22569,2,62.0,0.0,1,222,300.0,0.0,0.0,56,75,0.0,0.0,511.56016301161833,325.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122590,2,2,4,0,2,,360.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1250.39352149709,300.0,35325.732540205354,1,5,0,1,120.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009200092301839942,23550.488360136904,6,3,6,6_1,6_0,6_1_0 +22570,2,101.0,0.0,2,111,0.0,0.0,0.0,0,71,0.0,0.0,0.0,823.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122591,2,2,0,0,1,,0.0,250.0,11,0.0,0.0,2.0,1.0,1.0,1,1,434.276916589004,0.0,24587.179557825148,0,5,2,3,43.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033472729072663035,24587.179557825148,7,4,7,7_0,7_2,7_0_1 +22571,0,71.0,0.0,5,221,600.0,0.0,0.0,78,78,0.0,264.8654554020448,1023.1203260232367,980.0,249.40606057137379,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,122592,2,1,0,0,1,,100.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2609.74142998101,600.0,28268.87447321946,5,5,0,1,90.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034667103599345765,18845.91631547964,5,3,5,5_0,5_1,5_0_0 +22572,1,62.0,97.0,2,111,300.0,350.0,0.0,0,77,0.0,0.0,511.56016301161833,650.0,0.0,664.4764167789261,71,2,2,2,2,2,1,2,1,0,,2,,2,122593,1,3,0,0,1,,150.0,280.0,11,0.0,1.0,2.0,1.0,1.0,1,1,521.013630840576,300.0,11725.578946024802,0,5,2,3,45.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05543436302736784,11725.578946024802,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +22573,2,23.0,0.0,9,112,0.0,0.0,0.0,54,63,0.0,0.0,0.0,906.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,122594,2,1,1,0,1,,234.0,540.0,43,2.0,0.0,4.0,2.0,1.5,2,2,758.104944936077,0.0,32675.91528170612,1,1,2,3,100.0,9,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02772684382944375,21783.94352113741,6,3,6,6_1,6_0,6_0_0 +22574,1,41.0,237.0,9,111,1000.0,456.0,0.0,0,45,0.0,0.0,1705.2005433720612,1456.0,0.0,865.7178458605438,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122595,2,1,1,0,1,,450.0,450.0,32,2.0,0.0,5.0,4.0,2.3,3,2,691.543762392223,1000.0,18149.395267226544,0,4,2,3,92.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08022305859574214,7891.041420533281,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +22575,2,73.0,0.0,5,300,620.0,0.0,0.0,78,75,0.0,0.0,1057.224336890678,680.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,122596,1,2,3,0,1,,240.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,759.667262105283,620.0,47750.897901851364,5,5,0,1,84.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014240569913422204,31833.931934567576,8,4,8,8_1,8_0,8_0_0 +22576,2,33.0,0.0,7,111,1080.0,0.0,0.0,53,54,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,41,0,0,0,0,0,0,0,0,4,120.0,2,,5,122597,2,1,0,0,1,,350.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,1783.59818072229,1080.0,54316.92383010622,1,1,1,2,52.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019883305677951314,30176.068794503455,8,4,8,8_0,8_3,8_0_0 +22577,0,84.0,0.0,1,111,415.0,0.0,0.0,0,72,1487.1028199616082,0.0,707.6582254994054,1865.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,122598,1,1,2,0,2,,150.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,325.506561652466,415.0,15148.424891744142,0,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1231151102063701,15148.424891744142,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +22578,2,60.0,0.0,1,112,1800.0,0.0,0.0,77,62,0.0,198.6490915515336,3069.36097806971,2130.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,122599,2,3,2,0,1,,349.0,,42,3.0,3.0,4.0,6.0,3.5,6,5,581.219751375392,1800.0,61233.50773225672,6,1,0,1,120.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03478487643258029,17495.28792350192,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22579,1,47.0,235.0,2,111,0.0,0.0,120.0,0,56,0.0,0.0,75.63819484976925,120.0,0.0,143.6078577077617,50,2,1,2,2,1,2,2,2,0,,2,,2,122600,2,1,0,1,1,355.0,120.0,222.0,12,1.0,0.0,3.0,1.0,1.0,1,1,306.256524747162,0.0,6060.0,0,4,2,3,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.019801980198019802,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22580,2,33.0,0.0,5,111,1100.0,,,85,65,0.0,0.0,,1100.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,3,122601,2,2,0,0,2,,560.0,527.0,42,1.0,0.0,3.0,5.0,2.4000000000000004,2,2,97.0994492462936,1100.0,73701.95991038132,6,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01492497623316336,30709.14996265888,8,4,8,8_0,8_2,8_0_0 +22582,2,53.0,0.0,7,111,750.0,650.0,0.0,45,52,0.0,0.0,1278.9004075290459,1400.0,0.0,1234.027631160863,42,0,0,0,0,0,0,0,0,2,2.0,2,,5,122603,2,1,0,0,1,,450.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,302.206114169404,750.0,48648.11139362803,1,1,0,1,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02877809559084699,24324.055696814015,7,4,7,7_0,7_3,7_0_0 +22583,0,43.0,0.0,2,111,300.0,,,0,69,0.0,0.0,,410.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,2,122604,2,1,0,0,2,,150.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,137.6773116384588,300.0,5225.240174563623,0,4,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07846529275264183,5225.240174563623,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22584,2,49.0,0.0,8,111,800.0,,,43,34,0.0,0.0,,884.0,116.38949493330776,,30,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,122605,2,2,0,0,2,,400.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,146.20029470695798,800.0,120210.61214487907,1,1,1,2,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007353760073483314,46234.85082495349,10,5,10,10_1,10_2,10_0_0 +22585,2,47.0,0.0,2,111,450.0,280.0,0.0,55,56,0.0,0.0,767.3402445174275,730.0,0.0,531.581133423141,71,2,1,2,1,2,1,2,2,3,45.0,2,,2,122606,2,2,0,1,1,412.0,0.0,378.0,43,2.0,0.0,3.0,2.0,1.5,2,2,218.360906050426,450.0,22808.331729416583,4,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.032005848067287505,15205.554486277722,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +22587,1,62.0,250.0,2,111,700.0,,,0,68,0.0,0.0,,746.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,122608,2,2,0,0,2,,0.0,750.0,12,1.0,6.0,6.0,1.0,1.0,1,1,125.6520610351923,700.0,11274.437435472712,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06616738123472694,11274.437435472712,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22588,1,55.0,390.0,2,111,445.0,336.0,0.0,85,62,0.0,0.0,758.8142418005672,781.0,0.0,637.8973601077691,71,2,1,2,1,1,2,2,2,0,,2,,2,122609,1,1,0,1,1,652.0,0.0,359.0,42,1.0,0.0,4.0,4.0,2.3,3,2,289.15113211165,445.0,23685.448526773307,6,4,2,3,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.032973831976083605,10298.021098597092,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22589,1,41.0,150.0,9,111,1200.0,,,0,68,0.0,0.0,,1300.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,1,10.0,8,2008.0,6,122610,2,2,0,0,2,,0.0,186.0,32,1.0,3.0,3.0,2.0,1.3,1,1,152.97754851378895,1200.0,7438.381681413032,0,1,2,3,29.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.17476919788190345,5721.832062625409,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +22590,2,31.0,0.0,2,111,120.0,,,0,85,0.0,0.0,,170.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,8,,2,122611,2,3,0,0,2,,250.0,200.0,11,0.0,1.0,2.0,1.0,1.0,1,1,54.32381926174837,120.0,11493.94843888116,0,7,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014790391735613884,11493.94843888116,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +22591,2,65.0,0.0,2,111,100.0,100.0,0.0,0,77,0.0,0.0,170.52005433720612,200.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,122612,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,993.487519949589,100.0,19197.21385707607,0,5,0,1,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01041817846532351,19197.21385707607,5,3,5,5_0,5_4,5_0_1 +22592,2,54.0,0.0,1,212,1440.0,0.0,0.0,77,68,0.0,0.0,2455.488782455768,1530.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,,1,122613,2,2,2,0,2,,346.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,883.656592311909,1440.0,53142.73608669666,5,1,0,1,123.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028790388163378894,35428.49072446444,9,5,9,9_1,9_0,9_1_0 +22593,2,82.0,0.0,2,111,292.0,0.0,0.0,77,77,1455.46233443051,0.0,497.91855866464186,1779.0,148.25804711742774,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,122614,2,1,2,0,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,995.131836574287,292.0,59131.05077089966,5,5,0,1,55.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030085715995351543,39420.70051393311,9,5,9,9_1,9_4,9_0_1 +22594,2,43.0,0.0,1,112,2000.0,0.0,0.0,43,63,0.0,503.2443652638851,3410.4010867441225,2480.0,138.5589225396521,0.0,43,0,0,0,0,0,0,0,0,4,60.0,1,,1,122615,2,1,1,0,1,,327.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,62.7279860551132,2000.0,58815.31144649189,1,1,1,2,135.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04216589080304738,28007.29116499614,7,4,7,7_1,7_0,7_1_0 +22595,2,81.0,0.0,1,400,400.0,0.0,0.0,0,77,2636.7071275915036,0.0,682.0802173488245,2993.0,128.85979796187644,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,122616,2,2,3,0,1,,142.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1357.42862543857,400.0,22230.705647310977,0,5,0,1,120.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.13463360306612818,22230.705647310977,6,3,6,6_1,6_0,6_1_0 +22596,1,50.0,254.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,390.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,122617,2,1,0,1,1,274.0,0.0,258.0,12,1.0,4.0,3.0,1.0,1.0,1,1,267.580178520474,0.0,4946.740646582001,0,1,2,3,59.0,6,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07883979126123669,4946.740646582001,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22597,2,78.0,0.0,7,120,537.0,0.0,0.0,90,75,0.0,331.081819252556,915.6926917907969,2987.0,3048.296295872346,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,122618,2,1,2,0,1,,200.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,2242.13614645914,537.0,64942.80346746452,5,5,0,1,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04599431870070788,43295.202311643014,9,5,9,9_1,9_0,9_0_0 +22598,1,21.0,75.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,880.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,1,122619,2,2,5,0,1,,254.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1202.54687982361,0.0,11524.866881280053,0,1,2,3,50.0,6,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07635663032510961,11524.866881280053,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +22599,2,45.0,0.0,1,112,600.0,0.0,0.0,0,53,2556.551230912722,0.0,1023.1203260232367,3024.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,30.0,1,,1,122620,2,1,2,0,1,,540.0,,32,1.0,0.0,7.0,3.0,2.0,3,1,719.860422057448,600.0,35600.139223562684,0,1,1,2,160.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.08494348802991487,17800.069611781342,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22600,2,46.0,0.0,1,112,1720.0,0.0,0.0,46,62,0.0,0.0,2932.944934599945,1784.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,122621,2,1,1,0,1,,880.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,792.027001403165,1720.0,33474.18293297404,1,1,1,2,120.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05329480344814197,15940.08711094002,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22601,1,48.0,200.0,2,111,120.0,380.0,0.0,0,85,0.0,0.0,204.62406520464734,500.0,0.0,721.4315382171199,71,0,0,0,0,0,0,0,0,0,,2,,2,122622,2,1,0,1,1,,0.0,320.0,11,0.0,3.0,4.0,1.0,1.0,1,1,273.448372628183,120.0,1823.1254127650107,0,7,2,3,70.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2742543088364305,1823.1254127650107,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22602,2,82.0,0.0,1,111,360.0,2000.0,0.0,72,75,0.0,0.0,613.872195613942,2360.0,0.0,3797.008095879578,41,0,0,0,0,0,0,0,0,0,,1,,1,122623,2,2,3,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,727.149701252361,360.0,35229.134321561105,5,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.066990008282878,23486.089547707405,6,3,6,6_1,6_2,6_1_0 +22603,1,51.0,310.0,9,111,1000.0,0.0,0.0,0,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,8,2009.0,6,122624,1,1,0,0,1,,200.0,523.0,32,1.0,1.0,3.0,2.0,1.5,2,2,1701.60647039072,1000.0,13209.183300033917,0,1,2,3,66.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07570490750911393,8806.122200022612,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22604,2,56.0,0.0,5,221,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1437.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,122625,2,1,2,0,1,,511.0,473.0,32,3.0,2.0,4.0,3.0,2.0,3,3,767.635569548335,0.0,29216.24322980534,0,1,2,3,80.0,1,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04918496839915494,14608.12161490267,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +22605,0,43.0,0.0,2,111,568.0,0.0,0.0,0,42,0.0,0.0,968.5539086353308,648.0,110.84713803172167,0.0,30,0,0,0,0,0,0,0,0,2,10.0,2,,2,122626,1,1,0,0,1,,160.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2210.28616832022,568.0,20269.077221389827,0,1,5,0,36.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031969881653821405,20269.077221389827,5,3,5,5_0,5_3,5_0_1 +22606,2,29.0,0.0,2,111,216.0,72.0,0.0,0,38,0.0,0.0,368.3233173683652,288.0,0.0,136.6922914516648,12,0,0,0,0,0,0,0,0,1,15.0,2,,2,122627,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1290.18790424855,216.0,40346.183252451425,0,1,1,2,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007138221680052008,40346.183252451425,9,5,9,9_0,9_4,9_0_1 +22607,2,54.0,0.0,6,111,240.0,720.0,0.0,0,75,0.0,0.0,409.2481304092947,960.0,0.0,1366.922914516648,50,0,0,0,0,0,0,0,0,0,,1,,4,122628,2,2,2,0,1,,250.0,281.0,11,0.0,0.0,2.0,1.0,1.0,1,1,467.969965941866,240.0,19828.05889499078,0,7,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048416237065067806,19828.05889499078,5,3,5,5_1,5_3,5_0_0 +22608,1,31.0,529.0,9,400,960.0,,,52,81,0.0,0.0,,1236.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,2004.0,6,122629,2,1,0,0,2,,836.0,548.0,43,2.0,1.0,4.0,7.0,2.9999999999999996,2,2,4.386640891614599,960.0,28269.140343090046,4,4,2,3,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04372258883712823,9423.046781030016,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +22609,2,40.0,0.0,6,300,700.0,0.0,0.0,42,42,0.0,662.163638505112,1193.6403803604428,1230.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,4,122630,2,1,3,0,1,,350.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,916.934107819653,700.0,66431.0,1,1,1,2,78.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01851545212325571,36906.11111111111,9,5,9,9_1,9_0,9_0_0 +22610,2,91.0,0.0,1,111,378.0,1630.0,0.0,0,86,0.0,0.0,644.5658053946391,2008.0,0.0,3094.561598141856,70,0,0,0,0,0,0,0,0,0,,1,,1,122631,2,2,1,0,2,,80.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,490.377419497746,378.0,10187.94253916495,0,5,0,1,90.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1970957327527865,10187.94253916495,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +22611,2,59.0,0.0,1,211,690.0,1025.0,0.0,62,52,0.0,0.0,1176.5883749267223,1715.0,0.0,1945.9666491382836,41,0,0,0,0,0,0,0,0,2,5.0,1,,1,122632,2,1,1,0,1,,35.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1156.52173140594,690.0,47477.556918823335,1,1,0,1,107.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036122330450412396,31651.70461254889,8,4,8,8_1,8_1,8_1_0 +22612,2,72.0,0.0,8,111,80.0,0.0,0.0,0,75,0.0,0.0,136.4160434697649,80.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,122633,2,1,1,0,1,,180.0,550.0,11,0.0,2.0,5.0,1.0,1.0,1,1,302.283128422202,80.0,32093.642428688043,0,5,2,3,85.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0024927055312515467,32093.642428688043,8,4,8,8_1,8_3,8_0_0 +22613,1,47.0,146.0,2,111,471.0,232.0,0.0,72,67,0.0,0.0,803.1494559282409,703.0,0.0,440.45293912203107,20,2,1,2,1,1,2,2,2,2,35.0,2,,2,122634,2,2,0,1,1,1262.0,0.0,295.0,42,1.0,0.0,4.0,6.0,3.0999999999999996,4,3,323.454030126337,471.0,38433.58638199481,5,1,2,3,112.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.018291293271796724,12397.93109096607,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22614,2,50.0,0.0,9,112,300.0,1300.0,0.0,0,43,0.0,463.51454695357836,511.56016301161833,1950.0,0.0,2468.055262321726,33,2,2,2,2,1,1,2,2,0,,1,2008.0,6,122635,2,1,4,0,1,,300.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,1116.80757824456,300.0,33591.60067405432,0,4,0,1,180.0,5,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05805022567757994,33591.60067405432,9,5,9,9_1,9_0,9_0_0 +22615,0,39.0,0.0,9,112,0.0,,,81,85,0.0,0.0,,230.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,122636,2,3,0,0,2,,546.0,,42,1.0,1.0,3.0,3.0,1.8,2,2,140.59902625022,0.0,20198.396597227184,4,7,5,0,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011387042476013872,11221.331442903991,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +22616,0,25.0,0.0,1,111,0.0,0.0,600.0,56,47,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,50,2,2,1,2,2,2,2,1,2,25.0,2,,1,122637,2,3,0,0,1,,0.0,,43,2.0,0.0,1.0,3.0,1.8,2,2,1152.76182413944,0.0,51642.22716481196,1,1,5,0,21.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.011618398991297353,28690.12620267331,8,4,8,8_0,8_4,8_1_0 +22617,2,41.0,0.0,9,112,0.0,0.0,0.0,53,53,0.0,0.0,0.0,1728.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,122638,2,1,1,0,2,,220.0,740.0,43,2.0,2.0,4.0,3.0,1.8,2,2,2444.28441409108,0.0,51885.911244464645,1,1,2,3,102.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03330383833596733,28825.5062469248,8,4,8,8_1,8_0,8_0_0 +22618,2,41.0,0.0,5,111,0.0,0.0,0.0,56,21,0.0,0.0,0.0,170.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,3,122639,2,2,0,1,1,,0.0,872.0,43,2.0,0.0,3.0,5.0,2.4,2,2,149.303156362006,0.0,58580.72173031431,4,1,2,3,79.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002901978585764479,24408.634054297632,7,4,7,7_0,7_4,7_0_0 +22619,2,41.0,0.0,1,111,700.0,1300.0,0.0,46,64,0.0,0.0,1193.6403803604428,2000.0,0.0,2468.055262321726,42,0,0,0,0,0,0,0,0,2,45.0,2,,1,122640,1,1,0,0,1,,0.0,582.0,43,2.0,0.0,4.0,4.0,2.5,4,2,430.940945867461,700.0,54820.26133719499,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03648286146791899,21928.104534877995,6,3,6,6_0,6_4,6_1_0 +22620,1,78.0,80.0,6,111,200.0,300.0,0.0,0,77,0.0,0.0,341.04010867441224,500.0,0.0,569.5512143819367,71,2,2,2,2,1,2,2,2,0,,2,,4,122641,2,1,0,1,1,,0.0,417.0,11,0.0,1.0,4.0,1.0,1.0,1,1,481.466542054764,200.0,13116.12392298284,0,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.03812101829290212,13116.12392298284,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +22621,2,30.0,0.0,5,112,1600.0,0.0,0.0,47,31,0.0,0.0,2728.320869395298,1630.0,41.567676761895626,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,3,122642,2,1,3,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,890.722613584488,1600.0,59141.71757899699,1,1,1,2,80.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027560917516857207,32856.50976610944,8,4,8,8_1,8_0,8_0_0 +22622,2,37.0,0.0,1,112,2050.0,0.0,0.0,45,21,0.0,0.0,3495.6611139127253,2050.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,,1,122643,2,2,1,0,1,,198.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1986.95605487421,2050.0,67167.84520240077,1,1,1,2,146.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030520556284374105,31984.688191619414,8,4,8,8_1,8_1,8_1_0 +22623,2,80.0,0.0,2,111,400.0,,,77,74,0.0,0.0,,664.0,365.79555550468154,,10,0,0,0,0,0,0,0,0,0,,8,,2,122644,2,3,0,0,2,,480.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,112.30821996929397,400.0,90768.37411818892,5,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0073153232769754125,60512.249412125944,10,5,10,10_0,10_2,10_0_1 +22625,2,45.0,0.0,2,112,210.0,0.0,0.0,67,54,843.7462808292812,251.62218263194254,358.0921141081328,1350.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,122646,2,1,2,0,1,,250.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,796.711029497793,210.0,43311.263444413366,1,1,1,2,110.0,8,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031169721052645344,18830.984106266682,5,3,5,5_1,5_0,5_0_1 +22626,2,83.0,0.0,5,111,243.0,1320.0,0.0,0,72,0.0,0.0,414.3637320394109,1563.0,0.0,2506.0253432805216,60,2,2,2,2,1,2,2,2,0,,2,,3,122647,2,2,0,0,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,2297.77978296458,243.0,16123.371561199328,0,5,0,1,65.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.09694002238100981,16123.371561199328,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +22628,1,21.0,289.0,5,111,440.0,,,0,47,0.0,0.0,,692.0,349.1684847999233,,43,0,0,0,0,0,0,0,0,0,,1,,3,122649,2,2,0,0,2,,420.0,296.0,22,2.0,3.0,5.0,3.0,2.0,3,3,102.64103425670334,440.0,28698.343264290226,0,4,2,3,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024112890198127426,14349.171632145113,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +22629,2,68.0,0.0,2,120,550.0,0.0,0.0,77,78,2636.7071275915036,0.0,937.8602988546337,3150.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122650,2,1,3,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,873.164372276188,550.0,33610.35699193201,5,5,0,1,128.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09372111104788745,22406.904661288005,6,3,6,6_1,6_0,6_0_1 +22630,2,84.0,0.0,1,111,500.0,1200.0,0.0,0,74,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,0,,2,,1,122651,2,1,0,0,1,,700.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1200.01847193003,500.0,103792.61073745361,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01637881529254716,103792.61073745361,10,5,10,10_0,10_4,10_1_0 +22631,2,32.0,0.0,8,120,3021.0,0.0,0.0,85,37,0.0,0.0,5151.410841526997,3021.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,1,2001.0,6,122652,1,1,4,0,1,,690.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,668.679636556161,3021.0,72135.76769851311,6,1,1,2,140.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04187936298988428,34350.365570720525,9,5,9,9_1,9_0,9_0_0 +22632,0,78.0,0.0,1,111,1800.0,0.0,0.0,0,75,0.0,0.0,3069.36097806971,1830.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122653,2,1,1,0,1,,70.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1123.04663084897,1800.0,30483.836760348,0,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0600318133962842,30483.836760348,8,4,8,8_1,8_3,8_1_0 +22633,2,50.0,0.0,6,112,445.0,0.0,0.0,62,46,1265.6194212439218,0.0,758.8142418005672,1795.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,4,122654,1,1,2,0,1,,523.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,1675.14103586763,445.0,53380.75194897801,1,1,0,1,100.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03362635284185737,26690.375974489005,7,4,7,7_1,7_0,7_0_0 +22634,2,26.0,0.0,1,111,600.0,0.0,0.0,35,46,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,2,2,2,2,2,1,2,2,2,30.0,2,,1,122655,1,1,0,0,1,,195.0,600.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1832.30918251285,600.0,26352.48886311274,1,1,3,4,55.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02276824792969966,17568.325908741826,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +22635,2,37.0,0.0,9,300,1643.0,0.0,0.0,38,38,0.0,0.0,2801.6444927602965,1703.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,122656,2,1,1,0,1,,870.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2524.77252339302,1643.0,33802.78798274747,4,1,1,2,157.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05038045976767332,18779.326657081925,5,3,5,5_1,5_0,5_0_0 +22636,1,43.0,300.0,2,111,750.0,2100.0,0.0,85,63,0.0,0.0,1278.9004075290459,2850.0,0.0,3986.858500673557,20,0,0,0,0,0,0,0,0,0,,2,,2,122657,2,3,0,0,1,,700.0,700.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,1359.26278623811,750.0,24619.501148958316,6,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11576189065555406,9118.33375887345,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +22637,1,39.0,218.0,5,112,1400.0,0.0,0.0,0,46,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,30.0,1,,3,122658,1,3,3,0,1,,204.0,496.0,32,1.0,0.0,4.0,3.0,1.6,1,1,218.059086764727,1400.0,23053.700351669573,0,1,2,3,90.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.06072777812862526,14408.562719793483,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +22638,2,41.0,0.0,1,112,2010.0,0.0,0.0,43,34,0.0,0.0,3427.453092177843,2143.0,127.47420873647992,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,122659,2,1,2,0,1,,178.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1382.36916754085,2010.0,55429.62401621769,1,1,1,2,120.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03866163695018024,36953.08267747846,9,5,9,9_1,9_0,9_1_0 +22639,0,27.0,0.0,1,112,650.0,0.0,0.0,85,62,0.0,635.6770929649075,1108.3803531918397,1225.0,131.6309764126695,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,122660,1,1,3,0,2,,400.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1539.36883046435,650.0,49021.47949725851,6,1,5,0,90.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.02498904587464577,27234.155276254725,7,4,7,7_1,7_1,7_1_0 +22640,2,59.0,0.0,5,111,720.0,0.0,0.0,22,46,0.0,0.0,1227.744391227884,720.0,0.0,0.0,41,2,2,2,1,2,2,2,2,3,40.0,2,,3,122661,1,2,0,0,1,,0.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,1760.01772524877,720.0,36188.80249694647,1,1,0,1,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.01989565695247175,18094.401248473234,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +22641,1,27.0,353.0,5,111,0.0,,,0,56,0.0,0.0,,807.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,3,122662,2,2,0,0,2,,402.0,714.0,32,1.0,0.0,3.0,2.0,1.3,1,1,151.34856975789677,0.0,21771.49137585667,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037066822206535496,16747.301058351284,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +22642,2,47.0,0.0,7,111,1200.0,,,0,63,0.0,0.0,,1246.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,1,15.0,8,,5,122663,2,2,0,0,2,,400.0,600.0,12,1.0,2.0,3.0,1.0,1.0,1,1,74.55042104910383,1200.0,50376.25839372279,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024733873450102434,50376.25839372279,10,5,10,10_0,10_2,10_0_0 +22643,2,33.0,0.0,2,111,648.0,0.0,0.0,85,48,0.0,0.0,1104.9699521050957,648.0,0.0,0.0,43,2,1,2,2,1,1,2,2,0,,2,,2,122664,2,1,0,1,1,300.0,0.0,264.0,42,1.0,0.0,2.0,3.0,1.8,2,2,215.263990113191,648.0,29372.24955013409,6,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.022061640150985364,16317.91641674116,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +22644,2,61.0,0.0,6,111,2340.0,0.0,0.0,31,31,0.0,0.0,3990.169271490623,2693.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,4.0,1,,4,122665,2,1,2,0,1,,398.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1295.81422514239,2340.0,251112.61044054638,1,1,0,1,180.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.010724272250905522,167408.40696036426,10,5,10,10_1,10_2,10_0_0 +22645,2,62.0,0.0,8,111,1581.0,0.0,0.0,46,90,0.0,0.0,2695.922059071229,1581.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,1.0,2,2000.0,6,122666,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,877.037866496931,1581.0,86645.60631388225,1,1,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018246741724821817,43322.803156941125,10,5,10,10_0,10_4,10_0_0 +22646,1,37.0,90.0,5,111,600.0,90.0,0.0,0,52,0.0,0.0,1023.1203260232367,690.0,0.0,170.865364314581,50,2,1,2,1,1,2,2,2,3,60.0,2,,3,122667,1,3,0,1,1,612.0,0.0,390.0,32,1.0,0.0,3.0,4.0,2.3,3,1,396.790682524159,600.0,26818.014793939623,0,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.025728973799952086,11660.006432147664,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +22647,2,43.0,0.0,5,111,1200.0,0.0,0.0,0,43,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,3,122668,2,2,5,0,1,,280.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,412.342516527449,1200.0,34862.65714651601,0,1,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03442078424937044,19368.14285917556,5,3,5,5_1,5_3,5_0_0 +22648,2,89.0,0.0,1,111,519.0,0.0,0.0,0,78,2847.643697798824,0.0,884.9990820100998,3309.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122669,2,2,2,0,1,,300.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,1741.28228868356,519.0,19773.922192581027,0,5,0,1,50.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16734161122781716,19773.922192581027,5,3,5,5_1,5_2,5_1_0 +22650,1,34.0,303.0,2,111,306.0,100.0,0.0,0,52,0.0,0.0,521.7913662718507,406.0,0.0,189.8504047939789,71,2,1,2,2,1,2,2,2,2,30.0,2,,2,122671,2,2,0,1,1,684.0,0.0,331.0,32,1.0,0.0,4.0,4.0,1.9,1,1,293.969710800118,306.0,19975.629840191814,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020324765889639725,10513.489389574639,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +22651,2,72.0,0.0,1,120,340.0,0.0,0.0,0,78,0.0,0.0,579.7681847465008,1560.0,1690.4188549837556,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122672,2,2,3,0,1,,178.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,939.443512303503,340.0,12132.168264145519,0,5,0,1,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12858377546660843,12132.168264145519,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +22652,2,70.0,0.0,2,111,1100.0,1400.0,0.0,78,77,0.0,0.0,1875.7205977092674,2500.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,1,,2,122673,2,1,2,0,2,,480.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,594.168793303045,1100.0,28244.242181030757,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08851361576551826,18829.494787353837,5,3,5,5_1,5_4,5_0_1 +22653,2,29.0,0.0,2,111,840.0,,,31,38,0.0,0.0,,840.0,0.0,,12,0,0,0,0,0,0,0,0,0,,2,,2,122674,2,2,0,0,2,,0.0,950.0,43,2.0,0.0,3.0,2.0,1.5,2,2,119.15336919256235,840.0,47579.177417998304,1,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01765478189377532,31719.45161199887,8,4,8,8_0,8_2,8_0_1 +22654,2,74.0,0.0,2,111,1310.0,0.0,0.0,77,75,0.0,0.0,2233.8127118174,1310.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,122675,2,1,2,0,1,,380.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1011.2826538721,1310.0,48984.130757909435,5,5,0,1,90.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026743355036232323,32656.087171939624,8,4,8,8_1,8_3,8_0_1 +22655,2,78.0,0.0,5,112,240.0,0.0,0.0,0,77,0.0,0.0,409.2481304092947,1440.0,1662.707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122676,2,1,1,0,1,,110.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1462.36389614796,240.0,27328.60156051982,0,5,0,1,90.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05269204854156503,27328.60156051982,7,4,7,7_1,7_0,7_0_0 +22656,2,63.0,0.0,1,111,920.0,0.0,0.0,21,78,0.0,0.0,1568.7844999022964,920.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,122677,2,1,2,0,1,,350.0,660.0,42,1.0,2.0,5.0,2.0,1.5,2,2,1350.3414517662,920.0,42068.92517400762,1,5,2,3,100.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021868873430795993,28045.950116005082,8,4,8,8_1,8_3,8_1_0 +22657,2,61.0,0.0,9,112,540.0,,,56,77,0.0,0.0,,626.0,119.1606733841008,,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,122678,2,1,0,0,2,,300.0,486.0,42,1.0,3.0,3.0,2.0,1.5,2,2,89.97918960617349,540.0,32082.205532371638,4,5,2,3,89.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01951237421530613,21388.137021581093,6,3,6,6_1,6_2,6_0_0 +22658,1,31.0,197.0,2,111,382.0,,,0,52,0.0,0.0,,524.0,196.75367000630598,,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,122679,2,2,0,0,2,,320.0,493.0,32,1.0,0.0,4.0,3.0,1.6,1,1,93.03342987149142,382.0,28388.747174215365,0,1,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018458017776703202,17742.966983884602,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +22659,2,50.0,0.0,2,111,420.0,1920.0,0.0,33,22,0.0,397.2981831030672,716.1842282162656,2640.0,0.0,3645.127772044395,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,122680,2,2,3,0,1,,240.0,,43,3.0,1.0,8.0,6.0,3.5,6,3,728.037081172038,420.0,97750.48903457484,1,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027007537517957772,27928.71115273567,7,4,7,7_1,7_4,7_0_1 +22660,2,82.0,0.0,2,111,435.0,700.0,0.0,77,72,0.0,0.0,741.7622363668467,1135.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,2,122681,2,1,2,0,1,,238.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1191.3640868895,435.0,20815.989417946035,5,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054525392822379386,13877.32627863069,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +22661,2,57.0,0.0,2,111,320.0,1275.0,0.0,0,55,0.0,0.0,545.6641738790596,1595.0,0.0,2420.5926611232308,50,0,0,0,0,0,0,0,0,2,75.0,1,,2,122682,2,2,2,0,1,,228.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,672.920507552449,320.0,15688.03778655473,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10166982140793784,15688.03778655473,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +22662,2,69.0,0.0,2,111,480.0,780.0,0.0,85,78,0.0,0.0,818.4962608185893,1260.0,0.0,1480.8331573930354,71,1,2,2,1,2,2,2,2,0,,2,,2,122683,2,1,0,0,1,,0.0,,41,2.0,5.0,5.0,5.0,2.8,4,4,471.20265363512,480.0,22779.96565419798,7,5,0,1,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.05531176030407238,8135.702019356421,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +22663,0,41.0,0.0,2,111,500.0,,,56,67,0.0,0.0,,592.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,122684,2,3,0,0,2,,400.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,96.16809328482188,500.0,43764.559882161506,1,1,5,0,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01352692684660814,20840.2666105531,5,3,5,5_1,5_2,5_0_1 +22664,1,82.0,153.0,2,111,500.0,550.0,0.0,0,86,0.0,0.0,852.6002716860306,1050.0,0.0,1044.177226366884,71,2,2,2,1,1,2,2,2,0,,8,,2,122685,1,1,0,0,2,,220.0,374.0,11,0.0,3.0,2.0,1.0,1.0,1,1,642.105516200658,500.0,11939.089074757043,0,5,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.08794640809071669,11939.089074757043,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +22665,2,85.0,0.0,1,120,460.0,0.0,0.0,77,78,0.0,754.8665478958276,784.3922499511482,3330.0,3186.855218411998,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122686,2,2,4,0,1,,243.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1143.62936566492,460.0,26755.753402921066,5,5,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12445921256085603,17837.16893528071,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22666,2,23.0,0.0,1,400,0.0,0.0,0.0,0,69,0.0,0.0,0.0,2413.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,5,,1,122687,2,1,1,0,1,,0.0,300.0,12,1.0,0.0,6.0,1.0,1.0,1,1,1589.68852771417,0.0,8803.634005657805,0,1,2,3,250.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2740913580061648,8803.634005657805,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +22667,2,64.0,0.0,5,211,500.0,,,0,78,0.0,0.0,,640.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,3,122688,2,1,0,0,2,,364.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,103.10975280392017,500.0,10106.95224445327,0,5,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06332274898708799,10106.95224445327,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +22668,2,55.0,0.0,7,111,400.0,,,0,78,0.0,0.0,,400.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,122689,2,1,0,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,98.98212538139661,400.0,5768.368468326607,0,7,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06934369782311067,5768.368468326607,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +22669,2,37.0,0.0,2,221,800.0,0.0,0.0,0,55,0.0,0.0,1364.160434697649,800.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,122690,1,3,0,0,1,,95.0,232.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1725.13482152984,800.0,15907.425189363154,0,1,2,3,45.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05029097987114454,15907.425189363154,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +22670,2,35.0,0.0,2,111,332.0,1084.0,0.0,0,46,0.0,0.0,566.1265803995243,1416.0,0.0,2057.978387966731,31,2,2,2,2,1,2,2,2,2,10.0,2,,2,122691,1,3,0,0,1,,0.0,350.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2598.0773585244,332.0,15339.110280132385,0,1,2,3,65.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.09231304646359052,15339.110280132385,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +22672,2,60.0,0.0,8,112,1300.0,,,21,52,0.0,0.0,,1366.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,122693,2,1,0,0,2,,500.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,94.73573173727101,1300.0,42540.71153661983,1,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032110417307527214,28360.474357746552,8,4,8,8_1,8_1,8_0_0 +22673,2,58.0,0.0,1,111,500.0,0.0,0.0,0,68,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,2,2,2,2,2,2,2,1,3,50.0,2,,1,122694,2,2,0,1,1,550.0,0.0,382.0,32,1.0,0.0,3.0,2.0,1.5,2,2,702.434488945838,500.0,23640.74884013173,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.021149922254206137,15760.499226754488,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +22674,2,42.0,0.0,7,111,350.0,500.0,0.0,0,47,0.0,0.0,596.8201901802214,850.0,0.0,949.2520239698945,31,2,2,2,2,1,2,2,2,2,30.0,2,,5,122695,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1543.48288696626,350.0,27524.148773945424,0,1,0,1,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.030881972299343793,21172.42213380417,5,3,5,5_0,5_3,5_0_0 +22675,2,35.0,0.0,1,112,2100.0,0.0,0.0,43,11,4113.2631190427455,0.0,3580.9211410813286,6000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,122696,2,1,2,0,1,,200.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,278.8297112632,2100.0,79489.58987358033,1,1,1,2,210.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07548158204794309,37852.18565408587,9,5,9,9_1,9_0,9_1_0 +22676,2,34.0,0.0,6,111,350.0,,,85,69,0.0,0.0,,482.0,182.89777775234077,,44,0,0,0,0,0,0,0,0,0,,2,,4,122697,2,2,0,0,2,,260.0,550.0,42,1.0,0.0,3.0,3.0,1.8,2,2,116.86843096616802,350.0,18634.60423485821,6,1,2,3,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02586585654973893,10352.557908254561,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +22677,2,44.0,0.0,2,111,650.0,650.0,0.0,0,54,0.0,0.0,1108.3803531918397,1300.0,0.0,1234.027631160863,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,122698,2,2,0,0,2,,450.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,528.924382552713,650.0,28354.15452232826,0,1,0,1,85.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.045848660342747274,18902.769681552174,5,3,5,5_0,5_2,5_0_1 +22678,2,60.0,0.0,7,111,1700.0,0.0,0.0,77,75,0.0,344.3250920226582,2898.840923732504,2060.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,122699,2,1,2,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,603.930381302872,1700.0,59829.50987499791,7,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03443116957340898,39886.339916665274,9,5,9,9_1,9_4,9_0_0 +22679,1,63.0,196.0,2,112,300.0,60.0,0.0,0,77,0.0,0.0,511.56016301161833,360.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,0,,2,,2,122700,2,1,0,1,1,756.0,0.0,471.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1113.32372615214,300.0,11470.745193728637,0,5,2,3,55.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03138418593735494,11470.745193728637,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22680,2,76.0,0.0,1,300,1256.0,0.0,0.0,77,72,0.0,0.0,2141.731882475309,1256.0,0.0,0.0,50,2,2,2,2,2,2,1,2,0,,1,,1,122701,2,2,3,0,1,,210.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1269.012156693,1256.0,41719.616262704614,5,5,0,1,160.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.030105741915052206,27813.07750846974,7,4,7,7_1,7_0,7_1_0 +22681,2,70.0,0.0,2,120,380.0,0.0,0.0,78,78,1898.4291318658827,0.0,647.9762064813832,2270.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122702,1,2,2,0,2,,400.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,893.784729944542,380.0,24727.362725008934,5,5,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09180113646750332,16484.908483339288,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +22682,1,62.0,326.0,2,111,441.0,0.0,0.0,78,63,2320.3022722805235,39.72981831030672,751.9934396270789,2776.0,145.4868686666347,0.0,41,1,2,2,1,1,1,2,2,0,,1,,2,122703,1,2,1,0,2,,737.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,637.761094765474,441.0,11305.49513705455,7,4,1,2,117.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,1,0.24554430976680236,7536.996758036366,1,1,1_1,1_1_1,1_4_1,1_0_1_1 +22683,1,48.0,100.0,2,111,0.0,0.0,2500.0,55,22,0.0,0.0,1575.7957260368596,2500.0,0.0,2991.830368911702,50,2,2,2,1,2,2,2,2,0,,1,,2,122704,1,3,4,0,2,,500.0,1000.0,43,2.0,0.0,5.0,5.0,3.0,5,4,646.343116512966,0.0,8450.783465922963,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,1,0.29583055938908254,2816.927821974321,1,1,1_1,1_1_1,1_4_1,1_0_1_1 +22684,1,22.0,45.0,2,111,0.0,0.0,0.0,54,52,0.0,0.0,0.0,505.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,122705,2,1,0,1,2,468.0,382.0,470.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1634.8132984862,0.0,25115.53876002961,2,1,2,3,100.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02010707414342581,16743.692506686406,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +22685,2,38.0,0.0,1,111,300.0,1400.0,0.0,54,47,0.0,0.0,511.56016301161833,1700.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,122706,2,2,1,0,1,,500.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,355.945200191285,300.0,55974.56676992219,1,1,1,2,140.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030370936268031848,26654.55560472485,7,4,7,7_1,7_3,7_1_0 +22686,2,67.0,0.0,5,111,393.0,,,0,77,0.0,0.0,,462.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,3,122707,2,1,0,0,2,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,121.96191140027348,393.0,15291.688396234948,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030212491127778383,15291.688396234948,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +22687,1,46.0,190.0,2,111,230.0,180.0,0.0,0,85,0.0,0.0,392.1961249755741,480.0,96.99124577775646,341.730728629162,50,0,0,0,0,0,0,0,0,0,,2,,2,122708,2,1,0,1,2,608.0,0.0,177.0,11,0.0,0.0,3.0,1.0,1.0,1,1,325.793050714469,230.0,6780.634538534974,0,7,2,3,56.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07078983497372046,6780.634538534974,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22688,2,51.0,0.0,2,111,700.0,0.0,0.0,77,52,0.0,728.3800023556231,1193.6403803604428,1340.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,3,120.0,1,,2,122709,2,1,2,0,1,,100.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1483.8930124911,700.0,42307.793230161784,5,1,1,2,90.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03167265171951101,28205.195486774523,8,4,8,8_1,8_2,8_0_1 +22689,2,40.0,0.0,2,111,470.0,1200.0,0.0,54,48,0.0,158.91927324122688,801.4442553848687,1790.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,122710,2,2,2,0,1,,260.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,268.114620803825,470.0,40484.33081926103,1,1,1,2,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044214637213377886,19278.252771076677,5,3,5,5_1,5_3,5_0_1 +22690,2,85.0,0.0,1,300,625.0,0.0,0.0,0,71,1792.9608467622227,0.0,1065.7503396075383,2325.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122711,2,2,4,0,2,,314.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1813.84462486931,625.0,10971.150502906852,0,5,0,1,112.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.21191943355293336,10971.150502906852,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +22691,2,45.0,0.0,8,111,400.0,,,0,52,0.0,0.0,,496.0,133.01656563806603,,42,0,0,0,0,0,0,0,0,2,5.0,2,2000.0,6,122712,2,1,0,0,2,,800.0,338.0,32,1.0,0.0,3.0,4.0,1.9,1,1,127.36701104635945,400.0,32097.427553808222,0,1,2,3,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015452951772178756,16893.38292305696,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +22692,2,59.0,0.0,6,111,2500.0,0.0,0.0,0,52,0.0,728.3800023556231,4263.001358430153,3170.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,122713,2,1,3,0,1,,500.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,431.848190333827,2500.0,27887.906911610808,0,4,0,1,127.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11366934098163556,27887.906911610808,7,4,7,7_1,7_2,7_0_0 +22693,2,39.0,0.0,1,400,700.0,0.0,0.0,52,48,738.277995725621,529.7309108040896,1193.6403803604428,1870.0,96.99124577775646,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,122714,2,2,2,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1732.852744027,700.0,43589.522396542816,4,1,1,2,200.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04290021769424833,20756.91542692515,5,3,5,5_1,5_0,5_1_0 +22694,2,88.0,0.0,2,111,360.0,0.0,0.0,75,74,0.0,0.0,613.872195613942,360.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,122715,2,2,0,1,2,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,246.444215720968,360.0,52749.586528902255,5,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006824698043893687,35166.39101926817,9,5,9,9_0,9_4,9_0_1 +22695,1,34.0,64.0,2,111,65.0,70.0,0.0,0,54,0.0,0.0,110.83803531918397,135.0,0.0,132.89528335578524,41,0,0,0,0,0,0,0,0,3,30.0,2,,2,122716,1,2,0,1,1,,0.0,318.0,32,1.0,0.0,2.0,3.0,1.6,1,1,1224.5413600283,65.0,22858.30057789047,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.005905950861919184,14286.437861181543,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +22696,2,45.0,0.0,9,300,690.0,,,0,52,0.0,0.0,,966.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,1,20.0,1,2007.0,6,122717,1,1,0,0,1,,720.0,,22,3.0,1.0,5.0,4.0,2.3,3,3,75.90035471787434,690.0,49962.34743694664,0,1,0,1,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019334559914725963,21722.759755194194,6,3,6,6_1,6_1,6_0_0 +22697,1,37.0,70.0,9,221,540.0,0.0,0.0,0,52,0.0,0.0,920.8082934209131,540.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,8,2010.0,6,122718,1,2,0,1,1,,100.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,670.049272905704,540.0,15841.974186370782,0,1,2,3,60.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03408666076886898,15841.974186370782,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +22698,1,35.0,233.0,2,111,2000.0,0.0,0.0,0,52,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,122719,2,1,3,0,1,,440.0,,32,1.0,0.0,6.0,4.0,2.1,2,2,1092.28336329145,2000.0,35412.33446758557,0,1,1,2,110.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05647749661436994,16863.016413135985,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +22699,2,45.0,0.0,9,112,0.0,,,0,42,0.0,0.0,,1391.0,0.0,,20,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,122720,2,1,0,0,2,,676.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,153.25382891408688,0.0,28935.129761778902,0,1,1,2,150.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04807305208070657,19290.0865078526,5,3,5,5_1,5_0,5_0_0 +22700,0,66.0,0.0,2,111,360.0,,,0,86,0.0,0.0,,636.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,122721,2,3,0,0,2,,360.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,107.40403528577478,360.0,27134.163359576705,0,7,5,0,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023439086422966153,18089.442239717802,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +22701,2,62.0,0.0,8,112,1303.0,0.0,0.0,72,74,0.0,397.2981831030672,2221.8763080137956,1603.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2003.0,6,122722,2,2,1,0,1,,163.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,541.516551659205,1303.0,110899.35762101272,5,5,0,1,110.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014454547207370574,55449.67881050636,10,5,10,10_1,10_1,10_0_0 +22702,1,30.0,318.0,7,111,0.0,,,0,53,0.0,0.0,,179.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,122723,2,2,0,0,2,,515.0,388.0,32,1.0,0.0,3.0,3.0,1.6,1,1,86.91786493634221,0.0,8814.439340284678,0,4,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020307587708036673,5509.024587677924,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22703,2,36.0,0.0,9,111,300.0,,,85,48,0.0,0.0,,400.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,122724,2,2,0,0,2,,450.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,71.44417026349414,300.0,34039.78524433019,6,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011750955451947973,16209.421544919136,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +22704,2,76.0,0.0,1,111,331.0,1350.0,0.0,78,75,0.0,0.0,564.4213798561523,1681.0,0.0,2562.980464718715,50,0,0,0,0,0,0,0,0,0,,1,,1,122725,2,2,2,0,1,,249.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1304.30129483784,331.0,31651.559278175722,5,5,0,1,100.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053109547786452264,21101.039518783815,5,3,5,5_1,5_2,5_1_0 +22705,2,47.0,0.0,7,111,600.0,1360.0,0.0,54,63,0.0,0.0,1023.1203260232367,3693.0,0.0,2581.965505198113,50,1,2,2,2,2,2,2,1,2,20.0,1,,5,122726,2,2,2,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,807.487132071645,600.0,60626.945107460095,1,1,1,2,130.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.060913509553453975,26359.54135106961,7,4,7,7_1,7_1,7_0_0 +22706,2,33.0,0.0,9,112,800.0,0.0,0.0,85,21,0.0,0.0,1364.160434697649,860.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,0,,1,2007.0,6,122727,2,1,1,0,1,,500.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,1333.69374881045,800.0,20792.411264311308,6,1,1,2,70.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041361244209137435,11551.339591284059,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +22707,2,51.0,0.0,8,111,2000.0,,,21,63,0.0,0.0,,2400.0,554.2356901586083,,71,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,122728,2,2,0,0,2,,400.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,106.3160893146194,2000.0,31751.820136739487,4,1,0,1,160.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07558621803929284,15875.910068369743,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +22708,2,74.0,0.0,2,111,800.0,800.0,0.0,75,75,0.0,0.0,1364.160434697649,1600.0,0.0,1518.8032383518312,43,0,0,0,0,0,0,0,0,0,,1,,2,122729,2,1,2,0,1,,400.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1802.46881046811,800.0,61372.62621569889,5,5,0,1,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026070254748048013,40915.08414379926,9,5,9,9_1,9_2,9_0_1 +22709,2,23.0,0.0,2,112,0.0,0.0,0.0,63,56,0.0,0.0,0.0,913.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,122730,2,2,5,0,1,,277.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,841.913756098356,0.0,8587.006975829796,1,1,2,3,71.0,9,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10632342591194567,5724.671317219864,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +22710,2,60.0,0.0,9,221,2000.0,0.0,0.0,75,74,0.0,132.4327277010224,3410.4010867441225,2100.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,2011.0,6,122731,2,1,1,0,1,,350.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,803.705956397008,2000.0,21864.274661720152,5,5,1,2,165.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09604709200240098,14576.183107813435,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +22711,0,47.0,0.0,1,400,712.0,0.0,0.0,0,69,0.0,364.19000117781155,1214.1027868809076,1022.0,48.49562288887823,0.0,60,0,0,0,0,0,0,0,0,2,3.0,1,,1,122732,2,3,3,0,1,,64.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,935.735255034626,712.0,14618.007041527246,0,1,5,0,70.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.069913771220432,14618.007041527246,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22712,2,39.0,0.0,9,112,1800.0,2300.0,0.0,90,42,0.0,0.0,3069.36097806971,4100.0,0.0,4366.559310261515,20,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,122733,2,1,1,0,1,,800.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,932.219710979671,1800.0,52318.508359169056,1,1,1,2,150.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07836614858843652,24913.57540912812,7,4,7,7_1,7_0,7_0_0 +22713,2,54.0,0.0,9,111,950.0,0.0,0.0,63,52,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,122734,2,1,1,0,1,,301.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,796.962557268811,950.0,36412.93153761993,1,1,1,2,90.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02608963244331234,24275.28769174662,7,4,7,7_1,7_2,7_0_0 +22714,1,42.0,352.0,2,120,250.0,850.0,0.0,0,67,0.0,0.0,426.3001358430153,1100.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,0,,2,,2,122735,2,1,0,0,1,,0.0,331.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1192.02868606141,250.0,8989.668206223334,0,4,2,3,50.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.12236269178861307,6915.129389402565,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +22715,2,35.0,0.0,1,111,360.0,960.0,0.0,0,46,0.0,0.0,613.872195613942,1320.0,0.0,1822.5638860221975,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,122736,2,2,0,0,1,,0.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2083.07637350528,360.0,25488.756379831564,0,1,2,3,82.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05178754036993636,25488.756379831564,7,4,7,7_0,7_3,7_1_0 +22716,2,68.0,0.0,5,111,500.0,,,86,78,0.0,0.0,,626.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,,3,122737,2,1,0,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,100.76443618730778,500.0,33369.1585525204,5,5,0,1,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018759837741030416,22246.105701680266,6,3,6,6_1,6_3,6_0_0 +22717,1,83.0,200.0,2,111,320.0,,,75,78,0.0,0.0,,620.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,2,,2,122738,2,1,0,0,2,,200.0,250.0,41,0.0,0.0,2.0,2.0,1.5,2,2,38.20946078435808,320.0,17704.649178396237,5,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03501905029310286,11803.099452264158,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22718,2,74.0,0.0,1,111,780.0,0.0,0.0,77,75,3164.0485531098047,0.0,1330.0564238302077,3870.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,122739,1,1,4,0,1,,330.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,424.446065173649,780.0,24763.422380518816,5,5,0,1,80.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15627888344886035,16508.94825367921,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +22719,0,68.0,0.0,1,211,205.0,1154.0,0.0,0,78,0.0,0.0,349.56611139127256,1359.0,0.0,2190.8736713225167,60,2,2,1,2,1,2,2,2,0,,1,,1,122740,2,2,1,0,1,,186.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1793.4000517224,205.0,11761.385311757764,0,5,0,1,70.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.11554761314055569,11761.385311757764,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +22720,2,56.0,0.0,2,111,620.0,130.0,0.0,64,63,0.0,0.0,1057.224336890678,944.0,0.0,246.80552623217258,70,0,0,0,0,0,0,0,0,2,15.0,2,,2,122741,2,1,0,1,1,1060.0,0.0,361.0,43,2.0,7.0,4.0,2.0,1.5,2,2,72.8453480260108,620.0,34724.82793111172,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027185159905550545,23149.885287407815,6,3,6,6_0,6_3,6_0_1 +22721,1,70.0,309.0,8,111,360.0,,,86,86,0.0,0.0,,636.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,122742,2,1,0,0,2,,350.0,400.0,41,0.0,0.0,2.0,2.0,1.5,2,2,109.66768746975403,360.0,3603.0,6,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1765195670274771,2402.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +22722,1,52.0,220.0,2,111,760.0,0.0,0.0,64,63,0.0,0.0,1295.9524129627664,1426.0,0.0,0.0,41,2,1,2,2,1,2,2,2,3,45.0,2,,2,122743,1,1,0,1,1,720.0,0.0,590.0,43,2.0,1.0,6.0,6.0,3.3,5,3,336.971443446921,760.0,30315.538853124694,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.047038583312300875,9186.526925189302,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +22723,2,46.0,0.0,6,111,360.0,950.0,0.0,53,62,0.0,245.00054624689142,613.872195613942,1495.0,0.0,1803.5788455427996,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,122744,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1639.24662537091,360.0,46292.45231095398,1,1,0,1,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03229468143009232,30861.63487396932,8,4,8,8_1,8_3,8_0_0 +22724,2,58.0,0.0,2,111,1021.0,0.0,0.0,54,48,400.7794833939086,19.86490915515336,1741.0097547828746,1511.0,131.6309764126695,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,122745,2,1,2,0,1,,478.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1536.44822006502,1021.0,52040.04295817606,1,1,0,1,140.0,9,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02903533344917436,34693.361972117375,9,5,9,9_1,9_3,9_0_1 +22725,1,82.0,253.0,2,112,240.0,,,0,77,0.0,0.0,,328.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,122746,2,2,0,0,2,,100.0,500.0,11,0.0,0.0,3.0,1.0,1.0,1,1,117.22103609494386,240.0,10976.127650843584,0,5,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.029883034384607505,10976.127650843584,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +22726,2,56.0,0.0,1,112,500.0,0.0,0.0,0,43,0.0,927.0290939071567,852.6002716860306,1230.0,41.567676761895626,0.0,20,2,2,2,2,1,1,2,2,0,,1,,1,122747,2,3,1,0,1,,250.0,524.0,12,1.0,1.0,5.0,1.0,1.0,1,1,1597.84241569694,500.0,31464.55623298681,0,1,2,3,100.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.03909160488049384,31464.55623298681,8,4,8,8_1,8_0,8_1_0 +22727,2,32.0,0.0,9,111,0.0,,,52,11,0.0,0.0,,347.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2007.0,6,122748,2,1,0,0,2,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,147.80033438419562,0.0,2270.0,4,1,3,4,53.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.15286343612334802,1513.3333333333333,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +22728,2,52.0,0.0,1,112,150.0,0.0,0.0,45,47,0.0,0.0,255.78008150580916,1352.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,122749,2,1,2,0,1,,287.0,,43,2.0,2.0,6.0,4.0,2.3,3,2,626.504812701499,150.0,67820.56615826779,1,1,1,2,130.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019934955966674453,29487.202677507736,8,4,8,8_1,8_0,8_1_0 +22729,2,65.0,0.0,2,111,420.0,0.0,0.0,0,34,0.0,0.0,716.1842282162656,645.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,2,122750,2,1,0,1,1,,242.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,862.068058907536,420.0,69529.7378066894,0,1,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009276606245708367,69529.7378066894,10,5,10,10_0,10_4,10_0_1 +22730,2,51.0,0.0,9,112,526.0,2020.0,0.0,0,46,0.0,198.6490915515336,896.9354858137042,2696.0,0.0,3834.9781768383737,50,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,122751,2,1,1,0,1,,280.0,,32,1.0,0.0,5.0,3.0,2.0,3,2,753.20919320326,526.0,86059.5176075785,0,1,1,2,120.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03132715677414612,43029.75880378925,9,5,9,9_1,9_0,9_0_0 +22732,0,39.0,0.0,8,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1283.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,122753,2,1,1,0,1,1500.0,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1261.81603025448,0.0,37045.0,0,1,5,0,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03463355378593602,37045.0,9,5,9,9_1,9_4,9_0_0 +22733,2,59.0,0.0,2,111,406.0,83.0,0.0,33,48,0.0,0.0,692.3114206090569,489.0,0.0,157.57583597900248,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,122754,2,3,0,1,1,773.0,0.0,875.0,43,2.0,3.0,4.0,2.0,1.5,2,2,1581.53376299893,406.0,67970.98567733631,1,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007194246120268462,45313.99045155754,10,5,10,10_0,10_3,10_0_1 +22734,2,48.0,0.0,6,111,1170.0,0.0,0.0,77,52,0.0,1986.490915515336,1995.0846357453115,3553.0,1223.475286025128,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,4,122755,2,1,2,0,1,,300.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,443.791724559166,1170.0,56271.589229821395,5,1,0,1,130.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06314021069298449,22508.635691928557,6,3,6,6_1,6_3,6_0_0 +22735,2,58.0,0.0,5,112,1380.0,0.0,0.0,0,78,0.0,397.2981831030672,2353.1767498534446,1740.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122756,2,1,2,0,1,,150.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1871.03694850366,1380.0,27986.972194171554,0,5,0,1,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06217178435480652,27986.972194171554,7,4,7,7_1,7_0,7_0_0 +22736,2,60.0,0.0,8,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,727.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2002.0,6,122757,2,1,0,0,1,,0.0,384.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1130.99021568258,0.0,26519.878944758566,0,1,2,3,49.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027413398134823897,26519.878944758566,7,4,7,7_0,7_4,7_0_0 +22737,1,39.0,394.0,5,111,310.0,300.0,0.0,56,62,0.0,0.0,528.612168445339,610.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,3,122758,2,1,0,1,1,817.0,0.0,427.0,43,2.0,0.0,4.0,5.0,2.4,2,2,353.884692454483,310.0,24100.106628242076,1,1,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02531109133289735,10041.711095100865,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +22738,2,67.0,0.0,1,111,2400.0,0.0,0.0,0,86,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122759,2,1,2,0,1,,340.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,669.312893245208,2400.0,17020.433309940123,0,5,0,1,60.0,7,5,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14100698591488697,17020.433309940123,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +22739,1,36.0,357.0,9,111,477.0,,,0,56,0.0,0.0,,561.0,116.38949493330776,,71,2,2,2,2,1,2,2,2,0,,2,2006.0,6,122760,2,3,0,0,2,,207.0,436.0,32,1.0,0.0,3.0,2.0,1.3,1,1,113.56595955618391,477.0,13224.378183905756,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04242165432645782,10172.598603004428,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +22740,2,82.0,0.0,7,111,350.0,0.0,0.0,0,77,0.0,0.0,596.8201901802214,350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,122761,2,1,0,1,1,936.0,250.0,426.0,21,1.0,0.0,3.0,2.0,1.5,2,2,268.210963716105,350.0,27235.96646481369,0,5,3,4,50.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012850654683106881,18157.31097654246,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +22741,2,77.0,0.0,2,112,360.0,0.0,0.0,0,78,2320.3022722805235,0.0,613.872195613942,2630.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122762,2,2,2,0,2,,320.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1370.42280626488,360.0,20876.300924742496,0,5,0,1,110.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12598017289944963,20876.300924742496,5,3,5,5_1,5_0,5_0_1 +22742,1,33.0,379.0,5,111,410.0,0.0,0.0,0,85,0.0,0.0,699.1322227825451,510.0,138.5589225396521,0.0,50,2,1,2,2,1,2,2,2,0,,2,,3,122763,1,2,0,1,1,1310.0,0.0,334.0,31,0.0,0.0,4.0,4.0,1.9,1,1,269.49110505154,410.0,11358.955558325872,0,6,2,3,85.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04489849417767824,5978.397662276775,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22743,2,46.0,0.0,9,111,1620.0,0.0,0.0,21,21,0.0,0.0,2762.424880262739,1620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,122764,2,1,1,0,1,,460.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,257.038084218435,1620.0,35973.4219756471,1,1,1,2,144.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04503324707604103,14389.368790258839,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +22744,2,65.0,0.0,5,111,0.0,0.0,393.0,0,23,0.0,0.0,247.7150881329943,393.0,0.0,470.3157339929196,10,0,0,0,0,0,0,0,0,0,,2,,3,122765,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,837.845189048145,0.0,71997.38863023906,0,5,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00545853130893888,71997.38863023906,10,5,10,10_0,10_4,10_0_0 +22745,2,59.0,0.0,5,111,1200.0,0.0,0.0,75,75,0.0,0.0,2046.2406520464733,1440.0,332.541414095165,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,122766,1,1,4,0,1,,336.0,,41,0.0,2.0,5.0,4.0,2.5,4,4,574.399493920929,1200.0,51825.70260063072,5,5,0,1,114.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027785440963466555,20730.28104025229,5,3,5,5_1,5_3,5_0_0 +22746,1,39.0,195.0,2,111,1453.0,,,62,52,0.0,0.0,,1663.0,290.9737373332694,,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,122767,2,1,0,0,2,,200.0,600.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,82.86993852366734,1453.0,42755.75690566548,4,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03889534697442437,14743.36445022948,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +22747,2,71.0,0.0,2,120,400.0,,,75,75,0.0,0.0,,532.0,182.89777775234077,,30,0,0,0,0,0,0,0,0,0,,1,,2,122768,2,2,0,0,2,,300.0,1498.0,41,0.0,2.0,3.0,2.0,1.5,2,2,122.06700929290658,400.0,73684.42119659143,5,5,2,3,54.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007219979357381582,49122.94746439429,10,5,10,10_1,10_2,10_0_1 +22748,2,41.0,0.0,2,111,600.0,1260.0,0.0,46,43,0.0,0.0,1023.1203260232367,1860.0,0.0,2392.115100404134,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,122769,2,1,2,0,1,,1020.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,462.003159530841,600.0,66526.59158979316,1,1,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027958744850012287,25587.15061145891,7,4,7,7_1,7_4,7_0_1 +22750,1,30.0,459.0,1,120,336.0,956.0,0.0,0,85,0.0,0.0,572.9473825730125,1292.0,0.0,1814.9698698304383,71,2,2,2,2,1,2,2,2,0,,2,,1,122771,1,2,0,0,1,,300.0,528.0,31,0.0,0.0,3.0,4.0,1.9,1,1,2308.31084717775,336.0,14380.982900217736,0,6,2,3,63.0,0,1,4,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.08984086894230564,7568.938368535651,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +22751,2,64.0,0.0,9,111,1130.0,0.0,0.0,78,77,0.0,0.0,1926.8766140104292,1210.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,122772,2,1,1,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1046.20837052482,1130.0,55424.42849940853,5,5,0,1,80.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021831528673550735,36949.618999605686,9,5,9,9_1,9_2,9_0_0 +22752,2,40.0,0.0,1,111,720.0,1390.0,0.0,33,38,0.0,132.4327277010224,1227.744391227884,2210.0,0.0,2638.9206266363067,20,0,0,0,0,0,0,0,0,0,,1,,1,122773,2,1,1,0,1,,465.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,818.927173268976,720.0,98429.58381570518,1,1,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022452599252455418,46871.23038843103,10,5,10,10_1,10_4,10_1_0 +22753,2,50.0,0.0,6,111,800.0,0.0,0.0,42,38,3269.516838213465,0.0,1364.160434697649,4870.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,122774,2,1,1,0,1,,900.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,358.647604081094,800.0,79585.37789200939,1,1,0,1,160.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06119214520295647,31834.151156803757,8,4,8,8_1,8_3,8_0_0 +22754,2,41.0,0.0,7,211,120.0,,,0,81,0.0,0.0,,166.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,5,122775,1,2,0,0,2,,200.0,,12,1.0,5.0,5.0,1.0,1.0,1,1,67.50154542643133,120.0,12938.1167398835,0,4,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01283030624451567,12938.1167398835,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +22755,2,56.0,0.0,6,112,1800.0,0.0,0.0,52,37,0.0,264.8654554020448,3069.36097806971,2090.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,122776,2,1,2,0,1,,450.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,887.44355715246,1800.0,51674.78935737754,4,1,0,1,140.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040445254368542745,34449.859571585024,9,5,9,9_1,9_1,9_0_0 +22756,2,62.0,0.0,2,111,210.0,81.0,0.0,0,52,0.0,0.0,358.0921141081328,291.0,0.0,153.77882788312291,50,2,1,2,2,2,2,2,1,2,10.0,2,,2,122777,2,2,0,1,1,780.0,0.0,247.0,12,1.0,1.0,3.0,1.0,1.0,1,1,328.389418954751,210.0,20687.820199278613,0,1,2,3,48.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014066247540673581,20687.820199278613,5,3,5,5_0,5_2,5_0_1 +22757,1,31.0,523.0,7,111,1200.0,0.0,0.0,85,65,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,1,2,1,2,2,2,2,1,1,35.0,2,,5,122778,2,1,0,0,1,,45.0,484.0,42,1.0,2.0,3.0,6.0,2.6999999999999997,2,2,570.610915155822,1200.0,30044.258080991785,7,1,2,3,115.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0399410761538894,11127.502992959922,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +22758,1,37.0,80.0,5,111,600.0,200.0,0.0,67,46,0.0,0.0,1023.1203260232367,800.0,0.0,379.7008095879578,60,2,2,2,2,1,2,2,2,2,10.0,8,,3,122779,2,1,0,1,1,1164.0,0.0,520.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,735.251019219878,600.0,45891.81363749329,1,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.017432302988052005,16996.968013886406,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +22759,2,54.0,0.0,7,120,710.0,0.0,0.0,55,53,0.0,463.51454695357836,1210.6923857941633,1190.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,122780,2,1,2,0,1,,629.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,922.373466894295,710.0,40210.98184054966,4,1,0,1,138.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029593905583274693,20105.49092027483,5,3,5,5_1,5_0,5_0_0 +22760,2,81.0,0.0,5,111,1788.0,0.0,0.0,78,78,0.0,132.4327277010224,3048.8985715492454,1888.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,122781,1,2,1,0,1,,386.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1116.80160967524,1788.0,33949.86072608058,5,5,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05561142106688002,22633.24048405372,6,3,6,6_1,6_3,6_0_0 +22761,2,56.0,0.0,9,300,765.0,,,54,67,0.0,0.0,,895.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,2,60.0,1,2004.0,6,122782,1,2,0,0,2,,920.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,66.82706975027537,765.0,9193.774933447865,1,1,0,1,135.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09734847834309074,4596.887466723932,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +22762,0,27.0,0.0,2,221,517.0,0.0,0.0,42,62,2320.3022722805235,0.0,881.5886809233556,2777.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,122783,2,1,1,0,1,,327.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1517.38305269201,517.0,41563.09110432401,1,1,5,0,100.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0668140873600976,19791.948144916194,5,3,5,5_1,5_1,5_0_1 +22763,2,38.0,0.0,7,111,450.0,950.0,0.0,52,37,0.0,0.0,767.3402445174275,1400.0,0.0,1803.5788455427996,12,0,0,0,0,0,0,0,0,2,25.0,1,,5,122784,2,1,2,0,1,,350.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,355.028416125345,450.0,39857.496673590824,1,1,1,2,157.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512513621879384,18979.760320757534,5,3,5,5_1,5_2,5_0_0 +22764,2,34.0,0.0,2,111,200.0,350.0,0.0,0,47,0.0,0.0,341.04010867441224,550.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,122785,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,336.269658848685,200.0,20874.415786842103,0,1,1,2,58.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026348042772372335,16057.242912955462,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +22765,2,50.0,0.0,8,111,400.0,,,0,23,0.0,0.0,,442.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,122786,1,2,0,0,1,,500.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,157.28654873259975,400.0,62783.01460988405,0,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00704012068783991,48294.62662298773,10,5,10,10_1,10_2,10_0_0 +22766,2,32.0,0.0,9,111,450.0,450.0,0.0,0,21,0.0,0.0,767.3402445174275,900.0,0.0,854.326821572905,44,0,0,0,0,0,0,0,0,0,,1,2004.0,6,122787,2,1,1,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,300.202716601082,450.0,20442.79589384562,0,1,1,2,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044025289137233345,20442.79589384562,5,3,5,5_1,5_3,5_0_0 +22767,2,50.0,0.0,2,112,1820.0,0.0,0.0,63,46,0.0,0.0,3103.4649889371512,1820.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,122788,2,1,1,0,1,,215.0,,43,2.0,4.0,5.0,3.0,2.0,3,3,2123.51143392113,1820.0,34636.64010491853,1,1,1,2,120.0,7,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0525455123385814,17318.320052459265,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +22768,1,35.0,265.0,2,211,400.0,0.0,0.0,0,55,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,3.0,2,,2,122789,2,2,0,0,1,,0.0,417.0,12,1.0,0.0,3.0,1.0,1.0,1,1,3345.39830216936,400.0,16946.262219008295,0,1,2,3,54.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.023604025172661837,16946.262219008295,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +22769,2,52.0,0.0,1,112,400.0,1460.0,0.0,85,46,0.0,0.0,682.0802173488245,1860.0,0.0,2771.8159099920917,50,0,0,0,0,0,0,0,0,0,,1,,1,122790,2,1,2,0,1,,190.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,1814.47379311269,400.0,28905.24196717697,6,4,0,1,110.0,8,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06434818992735306,16058.467759542762,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22770,2,30.0,0.0,9,400,0.0,0.0,0.0,12,43,0.0,0.0,0.0,1120.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,122791,1,3,1,0,1,,215.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1828.62218583157,0.0,15781.577941134561,1,1,1,2,96.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07096882226717828,8767.543300630312,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +22771,1,73.0,95.0,5,211,720.0,,,0,78,0.0,0.0,,720.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,122792,2,1,0,0,2,,300.0,285.0,11,0.0,5.0,4.0,1.0,1.0,1,1,95.19566502253092,720.0,14465.091900766272,0,5,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04977500350079758,14465.091900766272,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +22772,2,85.0,0.0,7,112,600.0,3000.0,0.0,75,74,0.0,0.0,1023.1203260232367,3600.0,0.0,5695.512143819367,10,1,2,2,1,1,2,2,2,0,,2,,5,122793,2,1,0,1,1,,360.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1340.01461111198,600.0,55858.76898992331,5,5,0,1,106.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.06444825163707824,37239.17932661554,9,5,9,9_0,9_1,9_0_0 +22773,2,48.0,0.0,6,111,210.0,800.0,0.0,0,43,0.0,0.0,358.0921141081328,1010.0,0.0,1518.8032383518312,33,2,2,2,2,1,2,2,2,2,30.0,2,,4,122794,1,1,0,0,1,,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2412.38682145252,210.0,32896.84875815167,0,1,2,3,57.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03070202886073479,32896.84875815167,8,4,8,8_0,8_3,8_0_0 +22774,2,66.0,0.0,2,111,1544.0,0.0,0.0,75,75,0.0,0.0,2632.8296389664624,1544.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,122795,2,1,1,0,1,,350.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,732.08098837134,1544.0,41958.63488961704,5,5,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0367981466523372,27972.423259744693,7,4,7,7_1,7_4,7_0_1 +22775,0,52.0,0.0,8,112,390.0,,,0,85,0.0,0.0,,918.0,731.5911110093631,,71,0,0,0,0,0,0,0,0,0,,3,1999.0,6,122796,2,2,0,0,2,,103.0,,21,1.0,1.0,2.0,2.0,1.5,2,2,86.93560954055549,390.0,11977.304644235664,0,7,0,1,45.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0766449570473109,7984.869762823776,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +22776,2,52.0,0.0,2,111,345.0,0.0,0.0,56,55,0.0,0.0,588.2941874633611,345.0,0.0,0.0,60,2,1,2,2,1,2,2,2,3,30.0,2,,2,122797,2,1,0,1,1,765.0,0.0,516.0,43,3.0,0.0,4.0,5.0,3.0,5,5,832.91295282858,345.0,64260.40008346562,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005368780766255601,21420.133361155207,6,3,6,6_0,6_4,6_0_1 +22777,2,58.0,0.0,2,111,234.0,600.0,0.0,0,46,0.0,0.0,399.0169271490623,834.0,0.0,1139.1024287638734,71,2,2,2,2,2,2,2,1,3,45.0,2,,2,122798,2,1,0,1,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,248.832504018671,234.0,27361.485917998285,0,1,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.03048080073207566,27361.485917998285,7,4,7,7_0,7_4,7_0_1 +22778,2,35.0,0.0,6,211,0.0,,,21,48,0.0,0.0,,533.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,122799,2,1,0,0,2,,121.0,1000.0,43,2.0,1.0,4.0,4.0,2.1,2,2,75.48465870943663,0.0,34074.708613563256,1,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01564210001161513,16226.051720744406,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +22779,2,48.0,0.0,5,112,1080.0,0.0,0.0,0,35,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,3,122800,2,1,0,0,1,,300.0,401.0,32,1.0,0.0,3.0,3.0,2.0,3,3,1839.02660089063,1080.0,27672.321922019724,0,1,2,3,80.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03902816695481598,13836.160961009862,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +22780,2,42.0,0.0,5,111,460.0,180.0,0.0,21,54,0.0,0.0,784.3922499511482,640.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,122801,2,2,0,1,1,100.0,0.0,545.0,43,2.0,0.0,4.0,6.0,3.3,5,4,768.22395871626,460.0,19802.093677770434,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032319814783951635,6000.634447809222,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +22782,2,67.0,0.0,5,112,0.0,0.0,0.0,78,78,0.0,0.0,0.0,2418.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,122803,2,1,2,0,1,,154.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1572.31195805807,0.0,30419.735383742962,5,5,0,1,100.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07948787093303374,20279.823589161973,5,3,5,5_1,5_0,5_0_0 +22783,2,37.0,0.0,7,111,0.0,,,0,34,0.0,0.0,,282.0,0.0,,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,122804,2,1,0,0,2,,892.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,153.23241450650983,0.0,44022.9776264134,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0064057457083684976,33863.82894339492,9,5,9,9_1,9_2,9_0_0 +22784,2,43.0,0.0,6,300,3200.0,0.0,0.0,52,47,0.0,0.0,5456.641738790596,3260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,122805,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1462.81448108433,3200.0,60839.25222958486,1,1,0,1,95.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053583827554256655,28971.072490278504,8,4,8,8_1,8_0,8_0_0 +22785,1,48.0,212.0,7,112,1500.0,0.0,0.0,0,64,0.0,0.0,2557.8008150580918,1620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,122806,2,2,2,0,1,,550.0,506.0,32,3.0,2.0,5.0,3.0,2.0,3,2,752.179524925607,1500.0,20209.901061561926,0,1,2,3,124.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08015872987528609,10104.950530780963,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +22786,2,27.0,0.0,8,120,0.0,0.0,0.0,0,46,0.0,0.0,0.0,3319.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,122807,2,1,2,0,1,,124.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1436.93725499029,0.0,20951.719889969056,0,1,1,2,117.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15841181618646114,20951.719889969056,5,3,5,5_1,5_0,5_0_0 +22787,2,32.0,0.0,7,112,807.0,0.0,0.0,43,42,0.0,0.0,1376.0968385012534,807.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,7.0,1,,5,122808,2,2,2,0,1,,500.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,516.901026981624,807.0,53420.62871705543,1,1,1,2,65.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015106523816376421,29678.127065030792,8,4,8,8_1,8_1,8_0_0 +22788,2,55.0,0.0,2,111,600.0,1300.0,0.0,85,42,0.0,0.0,1023.1203260232367,1900.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,122809,2,2,1,0,1,,500.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,665.124322385156,600.0,40192.026856792276,6,1,0,1,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047273057583531855,26794.68457119485,7,4,7,7_1,7_2,7_0_1 +22789,2,38.0,0.0,7,300,770.0,0.0,0.0,63,47,0.0,0.0,1313.0044183964872,814.0,60.965925917446924,0.0,31,0,0,0,0,0,0,0,0,1,30.0,1,,5,122810,2,1,3,0,1,,125.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,642.399739318798,770.0,39881.54516708873,1,1,1,2,109.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020410442890054663,22156.41398171596,6,3,6,6_1,6_0,6_0_0 +22790,2,55.0,0.0,2,111,700.0,117.0,0.0,0,52,0.0,0.0,1193.6403803604428,817.0,0.0,222.12497360895532,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,122811,2,2,0,1,1,800.0,0.0,415.0,22,2.0,1.0,4.0,2.0,1.5,2,2,1081.23901121006,700.0,23874.298479568908,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03422090080255846,15916.198986379271,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +22791,2,37.0,0.0,9,112,570.0,0.0,0.0,0,47,0.0,0.0,971.9643097220749,570.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,8,2007.0,6,122812,2,1,0,0,1,,187.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1353.73196246509,570.0,30299.53990133019,0,1,1,2,55.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018812166846631763,30299.53990133019,8,4,8,8_0,8_1,8_0_0 +22792,1,64.0,300.0,2,111,300.0,240.0,0.0,78,78,0.0,1232.9486948965184,511.56016301161833,1471.0,0.0,455.6409715055494,60,0,0,0,0,0,0,0,0,0,,2,,2,122813,2,2,0,1,1,936.0,0.0,296.0,41,0.0,2.0,4.0,2.0,1.5,2,2,358.808230877356,300.0,14980.007290850766,5,5,2,3,98.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09819754900242487,9986.671527233844,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22793,2,60.0,0.0,2,111,485.0,0.0,0.0,67,62,0.0,0.0,827.0222635354497,811.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,122814,2,1,0,1,1,659.0,0.0,518.0,43,2.0,3.0,4.0,2.0,1.5,2,2,231.017404186048,485.0,42447.0473843734,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019106158142310842,28298.031589582268,8,4,8,8_0,8_4,8_0_1 +22794,2,25.0,0.0,2,111,230.0,150.0,0.0,69,63,0.0,0.0,392.1961249755741,380.0,0.0,284.77560719096834,31,2,2,2,2,1,2,1,2,2,5.0,2,,2,122815,2,3,0,0,1,,110.0,313.0,43,2.0,0.0,3.0,2.0,1.5,2,2,264.546937038164,230.0,21336.525926480248,4,1,2,3,58.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.017809834708301372,14224.3506176535,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +22795,1,38.0,450.0,7,111,250.0,,,0,81,0.0,0.0,,370.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,5,122816,1,2,0,0,2,,636.0,700.0,32,1.0,0.0,6.0,4.0,2.1,2,1,94.13586509655032,250.0,19922.800000000003,0,4,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018571686710703313,9487.04761904762,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22796,2,43.0,0.0,9,111,1190.0,0.0,0.0,46,34,0.0,0.0,2029.1886466127528,1190.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,122817,2,1,1,0,1,,540.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,1757.8629244484,1190.0,73844.2917285398,1,1,0,1,120.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016114989691750018,29537.71669141592,8,4,8,8_1,8_2,8_0_0 +22797,2,51.0,0.0,5,111,600.0,150.0,0.0,52,37,0.0,0.0,1023.1203260232367,750.0,0.0,284.77560719096834,31,2,2,2,2,1,2,2,2,4,75.0,2,,3,122818,1,2,0,1,2,600.0,0.0,795.0,43,2.0,2.0,4.0,2.0,1.5,2,2,818.095992056812,600.0,58863.590402102614,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.012741322689912063,39242.393601401745,9,5,9,9_0,9_4,9_0_0 +22798,2,56.0,0.0,1,400,576.0,0.0,0.0,0,21,0.0,364.19000117781155,982.1955129823073,889.0,52.6523905650678,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122819,2,3,3,0,1,,20.0,207.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1102.27958586302,576.0,7457.331240188383,0,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11921154785361827,7457.331240188383,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +22799,2,49.0,0.0,7,112,566.1,25.0,0.0,0,42,1489.317653948785,370.8116375628627,965.3140276029238,2283.0,0.0,47.462601198494724,31,0,0,0,0,0,0,0,0,2,6.0,1,,5,122820,2,1,2,0,1,,317.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1049.90504552734,566.1,29619.732193014774,0,1,1,2,103.0,5,0,4,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07707699668325833,29619.732193014774,8,4,8,8_1,8_0,8_0_0 +22800,2,74.0,0.0,6,112,860.0,0.0,0.0,86,74,0.0,0.0,1466.4724672999725,930.0,96.99124577775646,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,122821,2,1,2,0,1,,134.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2054.66100865998,860.0,38882.226709417504,5,5,0,1,130.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02391838324873376,25921.484472945,7,4,7,7_1,7_1,7_0_0 +22801,1,33.0,50.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,897.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,5,122822,2,2,0,0,1,,925.0,396.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1004.25284390287,0.0,24661.346590012294,0,1,2,3,52.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03637270968663487,18970.266607701764,5,3,5,5_0,5_4,5_0_0 +22802,2,76.0,0.0,2,111,420.0,,,77,78,0.0,0.0,,552.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,122823,1,2,0,0,2,,200.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,96.12972684090333,420.0,14603.456530338053,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037799270251754696,9735.637686892036,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22803,2,31.0,0.0,9,112,370.0,0.0,0.0,37,46,1687.4925616585624,0.0,630.9242010476627,1970.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,2007.0,6,122824,2,1,1,0,1,,210.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,472.41845985542,370.0,59288.74404639406,1,1,1,2,105.0,4,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0332272176057306,28232.735260187645,8,4,8,8_1,8_0,8_0_0 +22804,0,83.0,0.0,2,111,367.0,1710.0,0.0,77,78,0.0,0.0,625.8085994175465,2077.0,0.0,3246.4419219770393,50,0,0,0,0,0,0,0,0,0,,1,,2,122825,2,1,1,0,1,,388.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1061.47448334805,367.0,39208.48548194152,5,5,0,1,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05297322695508389,26138.990321294346,7,4,7,7_1,7_2,7_0_1 +22805,1,53.0,500.0,5,111,300.0,300.0,0.0,0,68,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,,3,122826,2,3,0,1,1,82.0,0.0,503.0,32,5.0,0.0,4.0,7.0,3.8,6,5,392.921161812796,300.0,14650.394393522907,0,1,2,3,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04095452886000573,3855.366945663923,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +22806,1,32.0,162.0,2,111,552.0,2100.0,0.0,0,55,0.0,0.0,941.2706999413778,2652.0,0.0,3986.858500673557,43,2,2,2,1,2,2,2,2,2,20.0,2,,2,122827,1,3,0,0,2,,0.0,289.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1529.32253301793,552.0,9464.56464771444,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,1,1,0.2802030625508402,7280.434344395723,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22807,2,47.0,0.0,1,112,996.0,0.0,0.0,46,52,0.0,794.5963662061343,1698.379741198573,1596.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,122828,2,2,2,0,1,,200.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,1750.82242665132,996.0,42933.38370435513,1,1,1,2,90.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03717386942967887,23851.87983575285,6,3,6,6_1,6_0,6_1_0 +22808,2,46.0,0.0,7,111,420.0,0.0,0.0,0,37,0.0,0.0,716.1842282162656,420.0,0.0,0.0,31,2,2,2,1,2,2,2,2,2,15.0,2,,5,122829,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1778.28472091376,420.0,44750.61970940869,0,1,0,1,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.009385344889686438,44750.61970940869,10,5,10,10_0,10_4,10_0_0 +22809,2,47.0,0.0,2,111,670.0,0.0,0.0,21,21,1265.6194212439218,0.0,1142.484364059281,1870.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,122830,2,1,4,0,2,,268.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,165.655766076445,670.0,41111.52960233049,1,1,0,1,100.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0454860234607762,16444.611840932197,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +22810,2,53.0,0.0,2,111,463.0,2382.0,0.0,37,21,0.0,238.3789098618403,789.5078515812643,3025.0,0.0,4522.236642192577,41,0,0,0,0,0,0,0,0,2,12.0,1,,2,122831,2,1,2,0,1,,304.0,,43,3.0,2.0,9.0,4.0,2.5,4,4,450.764594931588,463.0,246933.52793839184,1,1,0,1,226.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01225026032412543,98773.41117535674,10,5,10,10_1,10_3,10_0_1 +22811,2,61.0,0.0,9,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,645.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2011.0,6,122832,2,1,0,0,1,,136.0,355.0,11,0.0,2.0,2.0,1.0,1.0,1,1,11447.5175348268,0.0,25467.0,0,5,2,3,55.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.025326893627046765,25467.0,7,4,7,7_0,7_1,7_0_0 +22812,2,39.0,0.0,2,111,600.0,0.0,0.0,0,33,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,,2,122833,2,2,0,0,1,,0.0,800.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1611.69956520927,600.0,36207.24997270976,0,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01657126681679039,36207.24997270976,9,5,9,9_0,9_4,9_0_1 +22813,2,77.0,0.0,5,111,513.0,,,77,78,0.0,0.0,,765.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,122834,2,1,0,0,2,,480.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,148.49185253407498,513.0,24927.43356576545,6,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030689079883884512,16618.289043843633,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +22814,2,80.0,0.0,2,211,540.0,0.0,0.0,0,77,0.0,1907.0312788947224,920.8082934209131,1980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122835,2,1,2,0,1,,372.0,,21,1.0,1.0,8.0,2.0,1.5,2,2,921.717612274109,540.0,34433.09437782794,0,5,1,2,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057502819185340365,22955.396251885293,6,3,6,6_1,6_1,6_0_1 +22815,1,49.0,75.0,2,111,370.0,372.0,0.0,0,68,0.0,0.0,630.9242010476627,742.0,0.0,706.2435058336015,50,2,2,2,1,2,2,2,2,0,,2,,2,122836,1,3,0,0,2,,0.0,340.0,12,1.0,1.0,3.0,1.0,1.0,1,1,661.740241058328,370.0,12747.421086059718,0,1,2,3,68.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.05820785200321294,12747.421086059718,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +22816,1,51.0,338.0,2,111,875.0,295.0,0.0,85,63,0.0,0.0,1492.0504754505534,1170.0,0.0,560.0586941422378,71,1,2,2,2,1,2,2,2,2,45.0,2,,2,122837,1,2,0,1,1,787.0,0.0,469.0,42,2.0,0.0,5.0,7.0,3.6,5,4,659.666129034445,875.0,28236.562817618775,6,1,2,3,108.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04143563816733228,7843.48967156077,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22817,2,61.0,0.0,2,112,1300.0,0.0,0.0,54,45,0.0,397.2981831030672,2216.7607063836795,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,2,122838,2,1,2,0,1,,160.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,244.489541863831,1300.0,69493.21093706632,1,5,0,1,108.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023023831802058685,46328.80729137755,10,5,10,10_1,10_0,10_0_1 +22818,1,45.0,456.0,7,111,840.0,,,0,81,0.0,0.0,,1320.0,665.08282819033,,71,0,0,0,0,0,0,0,0,0,,1,,5,122839,2,2,0,0,2,,800.0,486.0,32,2.0,0.0,5.0,7.0,3.1999999999999993,3,2,116.14255283047277,840.0,3973.656864421887,0,4,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.3321877165133739,1241.7677701318398,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +22819,2,35.0,0.0,5,111,500.0,0.0,0.0,37,37,0.0,0.0,852.6002716860306,2621.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,80.0,1,,3,122840,2,1,1,0,1,,620.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1030.73297295809,500.0,77703.4738453561,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03373079568123636,37001.65421207433,9,5,9,9_1,9_4,9_0_0 +22820,2,53.0,0.0,2,111,540.0,540.0,0.0,54,22,0.0,0.0,920.8082934209131,1080.0,0.0,1025.192185887486,31,0,0,0,0,0,0,0,0,0,,2,,2,122841,1,1,0,0,1,,360.0,298.0,43,4.0,2.0,4.0,4.0,2.5,4,4,1621.53912486585,540.0,96695.8506235028,4,1,2,3,76.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011169041825849518,38678.340249401124,9,5,9,9_0,9_3,9_0_1 +22821,2,33.0,0.0,2,111,265.0,59.0,0.0,52,42,0.0,0.0,451.8781439935962,1093.0,0.0,112.01173882844755,20,0,0,0,0,0,0,0,0,2,4.0,2,,2,122842,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,704.682431048154,265.0,49962.68612364347,1,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021876325810328435,33308.457415762314,8,4,8,8_0,8_4,8_0_1 +22822,1,35.0,247.0,2,111,360.0,61.0,0.0,0,22,0.0,0.0,613.872195613942,421.0,0.0,115.80874692432712,10,2,2,2,1,2,1,2,2,0,,2,,2,122843,1,3,0,3,1,360.0,206.0,233.0,12,1.0,0.0,3.0,1.0,1.0,1,1,266.535451812535,360.0,5354.438117607012,0,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.0786263639158747,5354.438117607012,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22823,1,36.0,433.0,7,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,765.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,122844,2,2,0,1,1,302.0,0.0,386.0,41,0.0,0.0,4.0,6.0,2.6999999999999997,2,2,2252.93366715234,0.0,19713.056803601634,7,6,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0388067668866166,7301.132149482088,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +22824,2,56.0,0.0,2,112,450.0,1200.0,0.0,0,53,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,122845,2,2,3,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1061.24424393306,450.0,32506.88374428058,0,1,1,2,70.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050758479741704214,32506.88374428058,8,4,8,8_1,8_1,8_0_1 +22825,1,76.0,202.0,2,111,192.0,720.0,0.0,0,77,0.0,0.0,327.3985043274357,912.0,0.0,1366.922914516648,71,2,2,2,2,1,2,2,2,0,,2,,2,122846,1,3,0,1,2,,0.0,305.0,11,0.0,8.0,1.0,1.0,1.0,1,1,373.607483221309,192.0,9972.3328,0,5,2,3,50.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.09145302491308753,9972.3328,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +22826,2,68.0,0.0,9,120,1000.0,0.0,0.0,78,77,0.0,238.3789098618403,1705.2005433720612,1180.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2007.0,6,122847,2,1,1,0,1,,433.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1891.42049867624,1000.0,45211.30885867427,5,5,1,2,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026099664658870068,30140.872572449513,8,4,8,8_1,8_1,8_0_0 +22827,2,34.0,0.0,9,400,1592.0,0.0,0.0,48,48,0.0,0.0,2714.679265048321,1692.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,4,30.0,1,2009.0,6,122848,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,821.955279879375,1592.0,64973.7523948413,1,1,1,2,144.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026041284944077498,27072.396831183876,7,4,7,7_1,7_0,7_0_0 +22828,2,59.0,0.0,2,111,430.0,470.0,0.0,0,52,0.0,0.0,733.2362336499863,1050.0,207.83838380947813,892.2969025317009,60,2,2,2,2,1,2,2,2,2,15.0,2,,2,122849,1,2,0,0,2,,264.0,561.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2276.03425107601,430.0,21618.419401015366,0,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.048569693302863946,21618.419401015366,6,3,6,6_0,6_3,6_0_1 +22830,2,83.0,0.0,2,111,500.0,0.0,0.0,75,74,0.0,0.0,852.6002716860306,500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,122851,2,2,0,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,275.415622023511,500.0,56588.61281448314,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008835699889643368,37725.74187632209,9,5,9,9_0,9_4,9_0_1 +22831,2,36.0,0.0,1,120,890.0,0.0,0.0,62,64,1476.555991451242,529.7309108040896,1517.6284836011343,2755.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,122852,2,2,1,0,1,,336.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,731.241304059195,890.0,47266.45433167475,1,1,1,2,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05828658059832059,22507.835396035596,6,3,6,6_1,6_0,6_1_0 +22832,2,61.0,0.0,5,221,2406.0,0.0,0.0,72,31,0.0,0.0,4102.712507353179,3535.0,0.0,0.0,10,2,2,1,2,1,2,2,2,2,15.0,1,,3,122853,2,2,2,0,1,,860.0,,42,4.0,0.0,6.0,5.0,3.0,5,5,545.737708863238,2406.0,114196.99287093114,6,1,0,1,180.0,1,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.030955280967821658,38065.66429031038,9,5,9,9_1,9_1,9_0_0 +22833,2,41.0,0.0,5,111,550.0,750.0,0.0,55,38,0.0,119.18945493092015,937.8602988546337,1390.0,0.0,1423.8780359548418,12,0,0,0,0,0,0,0,0,2,30.0,1,,3,122854,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,274.387264637546,550.0,51366.04397755036,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027060678463140017,21402.51832397932,6,3,6,6_1,6_3,6_0_0 +22834,2,42.0,0.0,1,112,3200.0,0.0,0.0,11,22,0.0,0.0,5456.641738790596,3200.0,0.0,0.0,43,2,2,1,1,1,2,2,2,0,,1,,1,122855,2,2,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,813.401034440569,3200.0,39285.17647470042,1,1,1,2,105.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08145566056094451,18707.226892714483,5,3,5,5_1,5_0,5_1_0 +22835,2,74.0,0.0,1,211,230.0,0.0,0.0,0,75,2197.9590615602774,0.0,392.1961249755741,2381.0,92.8344781015669,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,122856,2,1,4,0,1,,106.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,970.687925976266,230.0,26082.24651804557,0,5,0,1,150.0,4,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09128814875484953,26082.24651804557,7,4,7,7_1,7_2,7_1_0 +22836,1,61.0,148.0,5,111,600.0,0.0,0.0,0,78,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,2,,3,122857,2,2,0,1,1,554.0,0.0,320.0,21,0.0,0.0,3.0,2.0,1.5,2,2,264.333310182616,600.0,14237.03800501832,0,5,2,3,70.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.0421435975508747,9491.358670012212,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22837,2,28.0,0.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,444.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,,3,122858,2,2,0,0,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1607.07607745122,0.0,33237.0,0,1,3,4,35.0,7,5,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013358606372416284,33237.0,8,4,8,8_0,8_2,8_0_0 +22838,1,41.0,235.0,5,111,0.0,,,0,56,0.0,0.0,,973.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,3,122859,2,1,0,0,1,,262.0,500.0,32,1.0,0.0,3.0,2.0,1.5,2,2,134.6234279954568,0.0,23189.82470119522,0,4,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04195805757642709,15459.883134130147,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +22839,2,86.0,0.0,2,111,381.0,0.0,0.0,0,77,1276.166249754288,0.0,649.6814070247553,1591.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,122860,2,1,2,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1454.08293366605,381.0,14765.48206255053,0,5,0,1,80.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10775130762816267,14765.48206255053,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +22840,1,44.0,235.0,5,111,680.0,0.0,0.0,0,52,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,71,2,1,2,2,1,2,2,2,3,60.0,2,,3,122861,2,2,0,1,1,913.0,0.0,514.0,32,2.0,0.0,4.0,4.0,2.1,2,2,404.746484121823,680.0,44826.46113106709,0,1,2,3,122.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.015169611493795221,21345.933871936708,6,3,6,6_0,6_4,6_0_0 +22841,2,53.0,0.0,9,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1011.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,80.0,1,2006.0,6,122862,2,1,1,0,1,,368.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,1139.26935592061,0.0,48865.581866257824,0,1,1,2,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02068940881062353,24432.790933128912,7,4,7,7_1,7_4,7_0_0 +22842,1,28.0,134.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,913.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,122863,1,2,0,0,1,,186.0,271.0,11,0.0,0.0,2.0,1.0,1.0,1,1,397.134882461857,0.0,7043.378359841876,0,7,2,3,54.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1296252953278087,7043.378359841876,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22843,2,48.0,0.0,8,400,514.0,0.0,0.0,0,46,0.0,1324.327277010224,876.4730792932395,3004.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,122864,2,1,2,0,1,,314.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,1456.02556632022,514.0,29650.845096495,0,1,1,2,121.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10131245805048235,19767.23006433,5,3,5,5_1,5_0,5_0_0 +22844,1,31.0,430.0,5,111,580.0,,,0,54,0.0,0.0,,676.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,3,122865,2,2,0,0,2,,670.0,600.0,32,1.0,0.0,3.0,4.0,1.9,1,1,95.05250929080366,580.0,17551.30705394191,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0385156500266557,9237.53002839048,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +22845,2,56.0,0.0,6,111,240.0,1400.0,0.0,0,54,0.0,52.973091080408956,409.2481304092947,1680.0,0.0,2657.9056671157045,50,2,2,2,2,1,2,2,2,2,15.0,1,,4,122866,2,1,2,0,1,,240.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,721.819044063253,240.0,27435.81648586221,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06123382553115235,27435.81648586221,7,4,7,7_1,7_4,7_0_0 +22846,1,47.0,141.0,2,111,800.0,800.0,0.0,85,63,0.0,0.0,1364.160434697649,1600.0,0.0,1518.8032383518312,50,2,2,2,2,1,2,1,2,0,,2,,2,122867,1,3,0,0,1,,0.0,303.0,42,1.0,1.0,4.0,4.0,2.3,3,2,112.776998366253,800.0,18087.55190511848,6,4,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.08845862659541154,7864.153002225426,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22847,2,76.0,0.0,1,112,400.0,1200.0,0.0,72,77,0.0,198.6490915515336,682.0802173488245,1750.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,122868,1,2,2,0,2,,154.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,59.1392076643397,400.0,22364.587130920692,5,5,0,1,100.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07824870585607618,14909.724753947128,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22848,2,59.0,0.0,6,111,930.0,,,0,46,0.0,47.67578197236806,,1035.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,122869,2,2,0,0,1,,630.0,,22,2.0,5.0,4.0,2.0,1.5,2,2,105.09373909514333,930.0,28959.766188867063,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035739238820162944,19306.510792578043,5,3,5,5_1,5_2,5_0_0 +22849,2,53.0,0.0,1,111,210.0,440.0,0.0,0,47,0.0,0.0,358.0921141081328,650.0,0.0,835.3417810935072,31,0,0,0,0,0,0,0,0,2,10.0,2,,1,122870,1,3,0,0,2,,0.0,442.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1531.37256778339,210.0,26025.7728872038,0,1,2,3,80.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02497524291851437,26025.7728872038,7,4,7,7_0,7_2,7_1_0 +22850,2,62.0,0.0,5,111,0.0,,,52,72,0.0,0.0,,445.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,122871,2,2,0,0,2,,992.0,850.0,42,1.0,0.0,3.0,2.0,1.5,2,2,85.95751305738513,0.0,18964.270143948346,4,5,3,4,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02346517934105696,12642.84676263223,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +22851,2,48.0,0.0,8,111,530.0,933.0,0.0,33,38,0.0,0.0,903.7562879871924,1463.0,0.0,1771.3042767278232,12,0,0,0,0,0,0,0,0,2,75.0,1,2003.0,6,122872,1,1,1,0,1,,498.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,2766.85742531485,530.0,88123.14598941506,1,1,1,2,160.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016601767714644784,35249.258395766024,9,5,9,9_1,9_3,9_0_0 +22852,2,63.0,0.0,7,111,300.0,,,42,75,0.0,0.0,,322.0,30.482962958723462,,31,0,0,0,0,0,0,0,0,0,,1,,5,122873,2,1,0,0,2,,90.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,125.05721953789612,300.0,81518.40538606794,4,5,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003950028198846883,54345.60359071196,10,5,10,10_1,10_2,10_0_0 +22853,2,83.0,0.0,2,211,500.0,,,0,86,0.0,0.0,,500.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,2,122874,2,2,0,0,1,,500.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,96.19017638444517,500.0,24202.98493012453,0,5,0,1,63.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02065860890479129,24202.98493012453,7,4,7,7_1,7_2,7_0_1 +22854,2,91.0,0.0,2,111,200.0,380.0,0.0,0,78,0.0,0.0,341.04010867441224,580.0,0.0,721.4315382171199,70,0,0,0,0,0,0,0,0,0,,2,,2,122875,1,2,0,0,2,,100.0,344.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1933.39326201181,200.0,24809.852024210042,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023377809727926722,24809.852024210042,7,4,7,7_0,7_3,7_0_1 +22855,2,55.0,0.0,8,120,800.0,,,0,62,0.0,0.0,,1052.0,349.1684847999233,,71,2,2,2,2,1,2,2,2,0,,1,1999.0,6,122876,1,3,0,0,2,,460.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,110.54880206746357,800.0,7524.173838209983,0,4,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.13981601470418353,7524.173838209983,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22856,2,42.0,0.0,2,112,680.0,1800.0,0.0,47,54,0.0,0.0,1159.5363694930015,2480.0,0.0,3417.30728629162,42,2,2,1,2,1,2,2,2,2,20.0,1,,2,122877,2,2,3,0,1,,180.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,493.825723366983,680.0,50065.54504994704,1,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04953506443455015,19255.97886536425,5,3,5,5_1,5_1,5_0_1 +22857,2,55.0,0.0,6,111,1661.0,0.0,0.0,0,34,0.0,0.0,2832.3381025409935,1754.0,128.85979796187644,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,4,122878,2,2,5,0,1,,450.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,1260.21309162079,1661.0,42785.01095532052,0,1,0,1,95.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04099566555753988,21392.50547766026,6,3,6,6_1,6_3,6_0_0 +22858,2,65.0,0.0,5,211,1000.0,0.0,0.0,75,74,0.0,0.0,1705.2005433720612,1030.0,41.567676761895626,0.0,12,0,0,0,0,0,0,0,0,0,,8,,3,122879,2,1,0,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,777.65808039058,1000.0,87660.38031803824,5,5,0,1,107.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011749891983848177,58440.25354535883,10,5,10,10_0,10_1,10_0_0 +22859,2,87.0,0.0,2,111,410.0,1800.0,0.0,0,72,0.0,0.0,699.1322227825451,2210.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,0,,1,,2,122880,2,2,3,0,1,,300.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1355.60738053892,410.0,20238.391732696713,0,5,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10919840020833134,20238.391732696713,5,3,5,5_1,5_3,5_0_1 +22860,2,40.0,0.0,9,112,1300.0,0.0,0.0,45,33,0.0,331.081819252556,2216.7607063836795,1550.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,122881,2,1,1,0,1,,516.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1375.6330049437,1300.0,64406.14630271547,1,1,1,2,120.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024066026132270695,30669.593477483555,8,4,8,8_1,8_0,8_0_0 +22861,2,46.0,0.0,1,111,750.0,1200.0,0.0,0,31,0.0,0.0,1278.9004075290459,1950.0,0.0,2278.2048575277468,10,2,2,2,1,1,2,2,2,2,15.0,2,,1,122882,1,3,0,0,1,,0.0,540.0,32,1.0,1.0,3.0,2.0,1.5,2,2,888.002799620312,750.0,24007.121587400194,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.08122589761129174,16004.747724933462,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +22862,1,26.0,270.0,7,111,0.0,0.0,0.0,81,47,0.0,0.0,0.0,1378.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,122883,2,1,0,0,1,,0.0,520.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1810.21241462911,0.0,23541.519517853645,4,1,2,3,48.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05853487915064017,15694.346345235763,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +22863,1,32.0,127.0,2,111,360.0,960.0,0.0,56,46,0.0,0.0,613.872195613942,1320.0,0.0,1822.5638860221975,44,0,0,0,0,0,0,0,0,2,18.0,1,,2,122884,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,211.07098109267,360.0,26057.77814861862,1,1,1,2,88.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05065665969183854,12408.465785056485,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +22864,2,39.0,0.0,6,111,330.0,,,56,54,0.0,0.0,,402.0,99.7624242285495,,31,0,0,0,0,0,0,0,0,2,30.0,2,,4,122885,2,1,0,0,2,,347.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,145.02410037888396,330.0,45498.70907861074,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008835415512678425,25277.060599228185,7,4,7,7_0,7_2,7_0_0 +22865,1,37.0,413.0,8,111,680.0,,,0,56,0.0,0.0,,932.0,349.1684847999233,,41,0,0,0,0,0,0,0,0,0,,2,2001.0,6,122886,2,1,0,0,2,,685.0,700.0,32,1.0,0.0,3.0,3.0,1.6,1,1,153.56751230573752,680.0,14567.55323590814,0,1,2,3,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06397779949090394,9104.720772442588,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22866,1,42.0,491.0,6,111,300.0,900.0,0.0,0,85,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,71,2,2,2,1,1,2,2,2,0,,2,,4,122887,1,2,0,0,1,,0.0,445.0,31,0.0,0.0,5.0,6.0,3.3,5,4,546.391276968681,300.0,23586.615803050565,0,6,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.05087631095618213,7147.459334257747,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +22867,1,41.0,270.0,2,111,173.0,96.0,0.0,0,85,0.0,0.0,294.9996940033666,269.0,0.0,182.25638860221974,50,2,2,2,1,2,2,2,2,0,,2,,2,122888,1,2,0,1,1,660.0,0.0,271.0,11,0.0,5.0,2.0,1.0,1.0,1,1,336.320373670436,173.0,4940.7408899467555,0,7,2,3,42.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05444527571712001,4940.7408899467555,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22868,1,42.0,435.0,7,211,700.0,,,0,81,0.0,0.0,,778.0,108.07595958092864,,71,0,0,0,0,0,0,0,0,0,,1,,5,122889,1,1,0,0,2,,610.0,700.0,32,1.0,3.0,5.0,5.0,2.5999999999999996,3,2,35.57972797589352,700.0,8069.158678610697,0,4,2,3,44.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09641649532339494,3103.5225686964222,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +22869,2,82.0,0.0,1,111,670.0,3300.0,0.0,0,86,0.0,0.0,1142.484364059281,3970.0,0.0,6265.063358201303,41,1,2,2,2,2,2,2,1,0,,2,,1,122890,1,3,0,0,2,,280.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2967.17250940797,670.0,38462.28700808093,0,7,0,1,120.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.1032179911497697,38462.28700808093,9,5,9,9_0,9_2,9_1_0 +22870,2,91.0,0.0,5,111,800.0,,,0,72,0.0,0.0,,1020.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,3,122891,2,2,0,0,2,,400.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,103.72702520933873,800.0,10022.884990244444,0,5,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1017671060770222,10022.884990244444,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +22871,2,36.0,0.0,9,111,1300.0,0.0,0.0,38,37,0.0,423.78472864327165,2216.7607063836795,1620.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,1,2011.0,6,122892,2,1,1,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,247.242239236202,1300.0,160455.39037761049,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010096264115450063,76407.32875124308,10,5,10,10_1,10_4,10_0_0 +22872,2,52.0,0.0,2,111,1000.0,0.0,0.0,0,42,2636.7071275915036,0.0,1705.2005433720612,3550.0,69.27946126982604,0.0,20,2,2,2,2,2,2,2,1,2,20.0,1,,2,122893,1,2,3,0,2,,400.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,1563.37043801856,1000.0,41358.67874264997,0,1,0,1,100.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0858344634771701,20679.339371324986,5,3,5,5_1,5_3,5_0_1 +22873,2,61.0,0.0,1,120,1200.0,0.0,0.0,77,77,0.0,529.7309108040896,2046.2406520464733,3800.0,3048.296295872346,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,122894,2,1,2,0,1,,300.0,,41,2.0,1.0,8.0,4.0,2.5,4,4,602.755076670637,1200.0,68609.66672517173,5,5,0,1,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055385781353837184,27443.86669006869,7,4,7,7_1,7_0,7_1_0 +22874,1,30.0,400.0,5,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,3,122895,2,1,0,1,1,806.0,0.0,398.0,43,2.0,0.0,3.0,4.0,2.1,2,2,680.213807872137,0.0,15262.261377402348,1,1,2,3,79.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052416871931213166,7267.743513048737,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +22875,2,58.0,0.0,2,111,370.0,1285.0,0.0,0,52,0.0,0.0,630.9242010476627,1655.0,0.0,2439.577701602629,60,2,2,2,2,1,2,1,2,2,25.0,2,,2,122896,1,3,0,0,2,,0.0,487.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1871.90974345267,370.0,26934.54212081415,0,1,2,3,80.0,5,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.061445262094174204,26934.54212081415,7,4,7,7_0,7_2,7_0_1 +22876,2,79.0,0.0,1,211,528.0,1650.0,0.0,78,72,0.0,0.0,900.3458869004482,2178.0,0.0,3132.5316791006517,70,0,0,0,0,0,0,0,0,0,,1,,1,122897,2,2,2,0,1,,466.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1440.7232874475,528.0,21221.40752331838,5,5,0,1,101.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10263221219453908,14147.605015545587,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +22877,1,38.0,266.0,1,111,1248.0,0.0,0.0,0,35,0.0,0.0,2128.0902781283326,1248.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,25.0,2,,1,122898,1,3,0,0,1,,0.0,500.0,32,1.0,0.0,3.0,3.0,1.6,1,1,251.269723251107,1248.0,22735.55633171598,0,1,2,3,95.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.05489199304347115,14209.722707322486,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +22878,2,51.0,0.0,7,111,300.0,,,85,65,0.0,0.0,,386.0,119.1606733841008,,60,0,0,0,0,0,0,0,0,0,,1,,5,122899,2,1,0,0,2,,120.0,,42,1.0,0.0,5.0,4.0,2.5,4,3,124.43630317902715,300.0,18611.41203627437,6,4,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020739963160649546,7444.564814509748,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22879,0,70.0,0.0,2,120,1044.0,0.0,0.0,0,74,632.8097106219609,0.0,1780.229367280432,1714.0,96.99124577775646,0.0,50,1,2,2,2,1,2,2,1,0,,1,,2,122900,1,3,4,0,2,,270.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1467.10618410525,1044.0,17526.268609862418,0,5,0,1,80.0,0,2,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09779605905591875,17526.268609862418,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +22880,2,70.0,0.0,9,300,154.0,,,78,77,0.0,0.0,,269.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,122901,2,1,0,0,1,,396.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,95.010942328721,154.0,20658.963173377626,5,5,0,1,104.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013020982599293728,13772.642115585084,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +22881,1,31.0,233.0,1,111,300.0,540.0,0.0,47,54,0.0,0.0,511.56016301161833,840.0,0.0,1025.192185887486,20,2,2,2,2,1,2,2,2,3,25.0,2,,1,122902,2,3,0,0,2,,0.0,326.0,43,2.0,0.0,2.0,3.0,1.8,2,2,918.501593866169,300.0,13123.313625536653,4,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.0640082241397816,7290.729791964807,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +22882,2,60.0,0.0,1,112,1080.0,0.0,0.0,74,52,2320.3022722805235,0.0,1841.6165868418261,3326.0,63.73710436823996,0.0,50,1,2,2,2,2,2,2,1,2,10.0,1,,1,122903,1,3,3,0,2,,444.0,612.0,42,1.0,6.0,5.0,2.0,1.5,2,2,191.78721872567,1080.0,47033.79896288185,5,1,2,3,115.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07071510431519287,31355.865975254565,8,4,8,8_1,8_0,8_1_0 +22883,2,62.0,0.0,1,112,600.0,0.0,0.0,68,78,2109.365702073203,0.0,1023.1203260232367,2715.0,159.34276092059991,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,122904,2,1,4,0,2,,338.0,,42,2.0,0.0,6.0,3.0,2.0,3,3,1096.05716673893,600.0,38153.30416486949,1,5,0,1,130.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0711602850507479,19076.652082434746,5,3,5,5_1,5_0,5_1_0 +22884,1,49.0,205.0,8,111,552.0,624.0,0.0,0,52,0.0,0.0,941.2706999413778,1176.0,0.0,1184.6665259144283,71,2,2,2,2,1,2,2,2,3,15.0,2,2001.0,6,122905,2,1,0,0,1,,0.0,543.0,32,1.0,1.0,3.0,2.0,1.5,2,2,760.797905015087,552.0,13371.0,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08795153690823423,8914.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +22885,1,25.0,452.0,6,111,250.0,,,67,52,0.0,0.0,,410.0,221.69427606344334,,60,0,0,0,0,0,0,0,0,1,20.0,2,,4,122906,2,1,0,0,2,,300.0,519.0,43,2.0,0.0,4.0,7.0,3.1999999999999997,3,3,142.67813066844892,250.0,44312.62029114576,4,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009252443148389565,13847.69384098305,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +22886,2,46.0,0.0,5,112,650.0,900.0,0.0,62,48,0.0,132.4327277010224,1108.3803531918397,1650.0,0.0,1708.65364314581,50,2,2,2,1,1,2,2,2,1,20.0,1,,3,122907,1,3,4,0,1,,650.0,,43,3.0,0.0,6.0,5.0,2.8,4,3,881.018923741857,650.0,65583.73970415877,1,1,0,1,70.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.025158675114334336,23422.764180056703,6,3,6,6_1,6_1,6_0_0 +22887,2,78.0,0.0,1,111,0.0,0.0,0.0,86,72,0.0,0.0,0.0,745.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,122908,2,2,0,0,1,,0.0,650.0,41,0.0,8.0,3.0,2.0,1.5,2,2,1710.78166333175,0.0,27838.67796785492,6,5,2,3,55.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.026761328280755465,18559.118645236613,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +22888,2,38.0,0.0,9,112,1300.0,0.0,0.0,52,42,0.0,754.8665478958276,2216.7607063836795,1915.0,62.351515142843446,0.0,12,0,0,0,0,0,0,0,0,2,50.0,1,2005.0,6,122909,2,2,1,0,1,,100.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,814.020256017526,1300.0,57503.41648519649,1,1,1,2,121.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03330236909476487,27382.579278664994,7,4,7,7_1,7_0,7_0_0 +22889,2,65.0,0.0,1,120,0.0,0.0,2100.0,78,78,0.0,132.4327277010224,1323.6684098709618,2200.0,0.0,2513.13750988583,50,0,0,0,0,0,0,0,0,0,,1,,1,122910,2,1,1,0,1,,1000.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,769.147033468841,0.0,12498.65204213325,6,5,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17601898129364257,8332.4346947555,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +22890,2,47.0,0.0,9,111,582.0,0.0,0.0,52,22,0.0,0.0,992.4267162425396,2682.0,2909.737373332694,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,122911,2,1,1,0,1,,870.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,1021.38575731607,582.0,82852.89438175388,1,1,1,2,118.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03237062531143919,39453.759229406605,9,5,9,9_1,9_2,9_0_0 +22891,2,19.0,0.0,7,112,420.0,,,85,85,0.0,0.0,,552.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,,5,122912,1,1,0,0,2,,960.0,,41,1.0,3.0,3.0,4.0,2.3,3,3,103.14649166847398,420.0,4386.080351679746,7,6,0,1,66.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1258526875342353,1906.9914572520636,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22892,2,69.0,0.0,2,111,110.0,,,77,78,0.0,0.0,,308.0,274.3466666285112,,71,0,0,0,0,0,0,0,0,0,,1,,2,122913,2,1,0,0,2,,320.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,99.35968172977576,110.0,16212.608980198842,6,5,0,1,124.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018997559268602214,8106.304490099421,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +22893,1,62.0,288.0,2,111,96.0,0.0,0.0,86,86,0.0,278.10872817214704,163.69925216371786,446.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,122914,2,3,2,0,1,,0.0,401.0,41,0.0,1.0,3.0,2.0,1.5,2,2,3052.09760130393,96.0,11402.829312015545,5,5,2,3,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.03911309972254297,7601.886208010364,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +22894,2,26.0,0.0,1,112,0.0,0.0,0.0,0,34,0.0,0.0,0.0,1104.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,12.0,2,,1,122915,2,1,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,674.348396645845,0.0,25385.68221171518,0,1,1,2,53.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04348908139606812,25385.68221171518,7,4,7,7_0,7_2,7_1_0 +22895,0,49.0,0.0,1,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,266.0,0.0,0.0,50,2,2,2,1,1,2,2,2,1,3.0,2,,1,122916,2,3,0,1,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,986.369281360874,0.0,27264.82983343045,0,1,5,0,75.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.009756158451201747,27264.82983343045,7,4,7,7_0,7_4,7_1_0 +22896,2,77.0,0.0,2,112,420.0,0.0,0.0,77,75,2320.3022722805235,0.0,716.1842282162656,2620.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,122917,2,1,2,0,1,,420.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1069.80791537233,420.0,24167.847420797163,5,5,0,1,80.0,10,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1084084963953145,16111.898280531443,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +22897,2,54.0,0.0,8,112,900.0,,,54,65,0.0,0.0,,1026.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,122918,2,1,0,0,2,,400.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,96.08309722744286,900.0,68070.87351668249,1,1,0,1,100.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01507252583953624,27228.349406672998,7,4,7,7_1,7_0,7_0_0 +22899,1,43.0,254.0,5,111,568.0,,,0,54,0.0,0.0,,856.0,399.049696914198,,50,0,0,0,0,0,0,0,0,0,,2,,3,122920,2,3,0,0,2,,768.0,250.0,32,2.0,0.0,4.0,3.0,2.0,3,2,102.65701305289333,568.0,26844.336490148406,0,4,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03188754545355007,13422.168245074203,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +22900,2,64.0,0.0,1,112,550.0,0.0,0.0,78,78,1054.6828510366015,59.594727465460075,937.8602988546337,1755.0,221.69427606344334,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,122921,2,1,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,327.158837533611,550.0,25935.282800740264,5,5,0,1,100.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06766843506136387,17290.188533826844,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22901,2,65.0,0.0,5,111,640.0,0.0,0.0,75,75,1539.8369625134383,0.0,1091.3283477581192,2100.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,122922,2,1,1,0,1,,359.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,916.434627605548,640.0,46930.3510139492,5,5,0,1,110.0,6,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04474716158367988,31286.90067596613,8,4,8,8_1,8_2,8_0_0 +22902,2,60.0,0.0,2,111,0.0,0.0,0.0,78,56,0.0,0.0,0.0,345.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,2,,2,122923,1,1,0,3,1,756.0,0.0,350.0,42,2.0,0.0,4.0,4.0,2.5,4,4,200.125844113545,0.0,32763.679958769477,5,1,2,3,82.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010529952692559427,13105.47198350779,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +22903,2,59.0,0.0,7,112,460.0,1300.0,0.0,75,67,0.0,0.0,784.3922499511482,1760.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,2,25.0,1,,5,122924,2,1,2,0,1,,400.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1153.45529406602,460.0,51561.62584911027,5,1,0,1,80.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034133912013373215,34374.41723274018,9,5,9,9_1,9_1,9_0_0 +22904,2,44.0,0.0,7,111,300.0,,,0,21,0.0,0.0,,350.0,69.27946126982604,,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,122925,2,1,0,0,2,,145.0,500.0,12,1.0,0.0,4.0,1.0,1.0,1,1,129.15321896643906,300.0,32065.40817655884,0,1,2,3,63.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01091518929286123,32065.40817655884,8,4,8,8_1,8_3,8_0_0 +22905,2,82.0,0.0,1,112,350.0,800.0,0.0,0,78,0.0,0.0,596.8201901802214,1150.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,1,122926,2,1,3,0,1,,300.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,461.104865454064,350.0,17148.86224555735,0,5,0,1,72.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06705984242761781,17148.86224555735,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +22906,2,59.0,0.0,6,111,553.0,956.0,0.0,78,54,0.0,0.0,942.9759004847498,1509.0,0.0,1814.9698698304383,70,1,2,2,1,2,2,2,2,2,45.0,1,,4,122927,2,1,2,0,1,,434.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,649.494909664729,553.0,44109.63292455675,5,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.034210214412369516,29406.421949704498,8,4,8,8_1,8_4,8_0_0 +22907,1,27.0,270.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1270.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,122928,2,2,0,0,1,,188.0,462.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2097.45229669188,0.0,9525.838465494404,0,1,2,3,30.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1333215973166395,9525.838465494404,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +22908,2,49.0,0.0,8,111,610.0,,,34,43,0.0,0.0,,736.0,174.58424239996165,,33,0,0,0,0,0,0,0,0,0,,1,1999.0,6,122929,2,1,0,0,2,,320.0,,43,2.0,1.0,7.0,5.0,2.4,2,2,134.1576252608355,610.0,126557.17580272409,1,1,0,1,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005815553289109964,52732.15658446837,10,5,10,10_1,10_2,10_0_0 +22909,2,37.0,0.0,7,400,1200.0,,,84,85,0.0,0.0,,1650.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,0,,1,,5,122930,2,3,0,0,2,,0.0,,41,0.0,0.0,3.0,10.0,4.499999999999999,5,3,107.39074359915672,1200.0,11214.465823947374,3,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14713139492356286,2492.1035164327504,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +22910,2,54.0,0.0,6,112,1930.0,0.0,0.0,54,47,0.0,264.8654554020448,3291.037048708078,2210.0,110.84713803172167,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,4,122931,1,2,2,0,1,,360.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,565.153362325245,1930.0,94791.67474554208,1,1,0,1,110.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023314283727263012,37916.66989821683,9,5,9,9_1,9_1,9_0_0 +22911,2,51.0,0.0,1,112,1400.0,0.0,0.0,42,34,0.0,0.0,2387.2807607208856,1560.0,221.69427606344334,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,122932,1,2,2,0,1,,0.0,,43,3.0,2.0,7.0,3.0,2.0,3,3,939.398129176239,1400.0,95123.07602499044,1,1,1,2,180.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01639980607429223,47561.53801249522,10,5,10,10_1,10_0,10_1_0 +22912,2,44.0,0.0,5,111,360.0,72.0,0.0,85,22,0.0,0.0,613.872195613942,432.0,0.0,136.6922914516648,71,0,0,0,0,0,0,0,0,0,,2,,3,122933,2,2,0,1,1,,0.0,920.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1391.70458965358,360.0,2449.843775668789,6,1,2,3,65.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.17633777479629992,1166.5922741279946,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +22913,1,60.0,271.0,2,111,400.0,50.0,0.0,0,77,0.0,0.0,682.0802173488245,450.0,0.0,94.92520239698945,71,1,2,2,2,1,2,2,2,0,,2,,2,122934,2,1,0,1,1,619.0,0.0,284.0,21,0.0,3.0,3.0,2.0,1.5,2,2,395.64301423405,400.0,8393.242737169836,0,7,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05361455805479754,5595.495158113224,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +22914,2,72.0,0.0,6,111,600.0,,,77,75,0.0,0.0,,780.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,4,122935,2,2,0,0,2,,400.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,94.0442970660874,600.0,64673.05052336285,5,5,0,1,163.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012060665048082562,43115.36701557523,9,5,9,9_1,9_2,9_0_0 +22915,2,86.0,0.0,7,211,540.0,,,0,72,0.0,0.0,,840.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,122936,2,1,0,0,2,,1200.0,,21,3.0,4.0,5.0,4.0,2.5,4,4,93.62016756037208,540.0,39855.01403904985,0,5,0,1,92.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021076394532867807,15942.005615619939,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +22916,2,40.0,0.0,1,112,600.0,1200.0,0.0,38,34,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,122937,2,1,2,0,1,,350.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,337.185789217938,600.0,81507.68002444784,1,1,1,2,150.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02208380853755252,45282.044458026576,10,5,10,10_1,10_0,10_1_0 +22917,2,71.0,0.0,2,112,1000.0,1300.0,0.0,75,75,0.0,0.0,1705.2005433720612,2300.0,0.0,2468.055262321726,33,0,0,0,0,0,0,0,0,0,,1,,2,122938,1,1,1,0,2,,600.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1610.02984547266,1000.0,39284.75763012468,5,5,0,1,180.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05854688023418767,26189.83842008312,7,4,7,7_1,7_1,7_0_1 +22918,2,34.0,0.0,6,111,1500.0,,,42,53,0.0,0.0,,1630.0,180.1265993015477,,10,0,0,0,0,0,0,0,0,2,12.0,1,,4,122939,2,2,0,0,2,,600.0,200.0,43,2.0,0.0,4.0,4.0,2.1,2,2,83.02754490367522,1500.0,76593.56331513436,1,1,3,4,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02128116162050817,36473.12538815922,9,5,9,9_1,9_2,9_0_0 +22919,2,40.0,0.0,2,111,700.0,1200.0,0.0,11,43,0.0,0.0,1193.6403803604428,1900.0,0.0,2278.2048575277468,33,0,0,0,0,0,0,0,0,2,5.0,1,,2,122940,1,3,3,0,2,,340.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,883.400229302659,700.0,63471.74788145817,1,1,1,2,80.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029934578192938686,30224.641848313415,8,4,8,8_1,8_2,8_0_1 +22920,2,38.0,0.0,2,111,650.0,400.0,0.0,0,37,0.0,0.0,1108.3803531918397,1050.0,0.0,759.4016191759156,12,2,2,1,2,1,2,2,2,0,,2,,2,122941,2,1,0,1,1,1536.0,0.0,385.0,22,1.0,6.0,4.0,3.0,2.0,3,3,305.129837271362,650.0,59233.600377730414,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017726425429219057,29616.800188865207,8,4,8,8_0,8_4,8_0_1 +22921,2,50.0,0.0,7,111,603.0,1098.0,0.0,55,56,0.0,0.0,1028.235927653353,1701.0,0.0,2084.5574446378882,44,0,0,0,0,0,0,0,0,1,10.0,2,,5,122942,2,1,0,0,1,,168.0,623.0,43,2.0,0.0,5.0,3.0,2.0,3,2,3168.57341926926,603.0,53209.945810124074,1,1,2,3,92.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03196770780541477,26604.972905062037,7,4,7,7_0,7_2,7_0_0 +22922,2,58.0,0.0,8,111,920.0,1200.0,0.0,0,74,0.0,0.0,1568.7844999022964,2120.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,122943,2,1,1,0,1,,800.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,758.720196630894,920.0,37160.44054530729,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057049915686958094,37160.44054530729,9,5,9,9_1,9_4,9_0_0 +22923,2,62.0,0.0,1,111,500.0,,,35,35,0.0,0.0,,500.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,122944,2,1,0,0,2,,250.0,1100.0,43,2.0,1.0,3.0,2.0,1.5,2,2,149.40687351696505,500.0,84555.0,1,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.005913310862752055,56370.0,10,5,10,10_1,10_2,10_1_0 +22924,2,75.0,0.0,2,112,432.0,174.0,0.0,77,78,0.0,2500.3298989953028,736.6466347367304,2494.0,0.0,330.33970434152326,71,0,0,0,0,0,0,0,0,0,,2,,2,122945,2,1,0,1,1,,260.0,,41,0.0,1.0,4.0,3.0,2.0,3,2,232.803997275782,432.0,18865.47379773869,7,5,0,1,82.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13219917118110988,9432.736898869345,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +22925,2,58.0,0.0,6,212,1980.0,0.0,0.0,52,43,0.0,344.3250920226582,3376.297075876681,2304.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,122946,2,1,2,0,1,,235.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,816.432081129441,1980.0,42554.87016104897,1,1,0,1,107.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05414186416925979,28369.913440699314,8,4,8,8_1,8_0,8_0_0 +22926,2,51.0,0.0,7,111,570.0,,,43,22,0.0,0.0,,842.0,376.8802693078537,,42,0,0,0,0,0,0,0,0,2,30.0,1,,5,122947,2,1,0,0,2,,790.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,4,2,118.04028825961166,570.0,182232.76518394196,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004620464377797828,58784.76296256193,10,5,10,10_1,10_2,10_0_0 +22927,2,91.0,0.0,6,111,240.0,,,77,72,0.0,0.0,,288.0,66.50828281903301,,71,0,0,0,0,0,0,0,0,0,,2,,4,122948,2,2,0,0,2,,160.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,147.5683749417732,240.0,37623.93080650167,5,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00765470257430496,25082.62053766778,7,4,7,7_0,7_2,7_0_0 +22928,1,40.0,190.0,2,111,100.0,20.0,0.0,0,85,0.0,0.0,170.52005433720612,120.0,0.0,37.970080958795776,71,0,0,0,0,0,0,0,0,0,,2,,2,122949,2,1,0,1,1,,60.0,190.0,11,0.0,0.0,1.0,1.0,1.0,1,1,298.48564238445,100.0,1640.6077955140704,0,7,2,3,40.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.073143624166676,1640.6077955140704,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +22929,2,49.0,0.0,9,111,280.0,280.0,0.0,0,42,0.0,0.0,477.4561521441771,560.0,0.0,531.581133423141,50,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,122950,2,1,0,0,1,,403.0,650.0,32,2.0,0.0,3.0,2.0,1.5,2,2,402.282320776759,280.0,37168.939520806045,0,1,2,3,92.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015066343221509695,24779.293013870698,7,4,7,7_0,7_2,7_0_0 +22930,2,41.0,0.0,7,111,456.0,,,52,56,0.0,0.0,,540.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,5,122951,2,2,0,0,2,,600.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,125.52165969531784,456.0,24038.556522428386,4,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02246391123760575,10451.5463140993,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +22931,0,65.0,0.0,1,112,0.0,0.0,0.0,85,69,0.0,0.0,0.0,1106.0,249.40606057137379,0.0,71,2,2,2,2,1,2,2,2,0,,3,,1,122952,1,3,0,0,2,,0.0,,42,1.0,2.0,2.0,2.0,1.5,2,2,1409.37782420397,0.0,29928.0,6,1,5,0,70.0,9,2,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,1,1,1,1,0,0,0.03695535952953756,19952.0,5,3,5,5_0,5_1,5_1_0 +22932,1,41.0,352.0,1,111,180.0,50.0,0.0,0,62,0.0,0.0,306.936097806971,230.0,0.0,94.92520239698945,50,2,2,2,2,2,2,2,1,0,,2,,1,122953,1,3,0,1,1,,0.0,318.0,32,1.0,1.0,4.0,3.0,2.0,3,2,2360.26923835078,180.0,7933.522246589559,0,4,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.028990906289935947,3966.7611232947793,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +22933,2,76.0,0.0,2,211,553.0,1000.0,0.0,0,75,0.0,66.2163638505112,942.9759004847498,1843.0,332.541414095165,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,2,122954,2,1,2,0,1,,267.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1201.91336182175,553.0,23721.36939941285,0,5,0,1,75.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07769365962681808,23721.36939941285,6,3,6,6_1,6_1,6_0_1 +22934,2,39.0,0.0,1,111,1100.0,0.0,0.0,0,52,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,2,2,2,1,1,1,2,2,2,30.0,2,,1,122955,2,2,0,0,1,,0.0,478.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2351.59876101582,1100.0,26986.40505507318,0,1,2,3,32.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.040761264709217385,26986.40505507318,7,4,7,7_0,7_3,7_1_0 +22935,0,25.0,0.0,6,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,1304.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,1.0,2,,4,122956,1,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1102.20437007807,0.0,20888.0476472491,0,1,5,0,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06242804603003351,20888.0476472491,5,3,5,5_0,5_4,5_0_0 +22936,2,48.0,0.0,2,111,480.0,0.0,0.0,0,34,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,15.0,2,,2,122957,2,1,0,1,1,518.0,0.0,275.0,12,1.0,0.0,2.0,1.0,1.0,1,1,348.473847449392,480.0,24086.65125199908,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019928050395140017,24086.65125199908,6,3,6,6_0,6_4,6_0_1 +22937,2,47.0,0.0,2,111,0.0,0.0,0.0,53,62,0.0,0.0,0.0,827.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,110.0,2,,2,122958,1,1,0,1,1,,0.0,537.0,43,2.0,2.0,3.0,2.0,1.5,2,2,234.76437518967,0.0,35380.02517786559,1,1,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02337477138137784,23586.68345191039,6,3,6,6_0,6_4,6_0_1 +22938,2,51.0,0.0,6,112,150.0,450.0,0.0,0,47,0.0,0.0,255.78008150580916,600.0,0.0,854.326821572905,41,0,0,0,0,0,0,0,0,2,15.0,2,,4,122959,2,1,0,0,1,,0.0,271.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1084.71606928514,150.0,22372.390907394212,0,1,2,3,34.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0268187697275438,22372.390907394212,6,3,6,6_0,6_2,6_0_0 +22939,1,70.0,285.0,1,300,401.0,0.0,0.0,86,71,0.0,794.5963662061343,683.7854178921965,1151.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,122960,1,2,4,0,2,,118.0,282.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1473.18411326117,401.0,9432.939141930256,5,5,2,3,72.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12201923310240627,6288.62609462017,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +22940,1,45.0,175.0,6,111,580.0,,,63,55,0.0,0.0,,756.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,4,122961,2,2,0,0,2,,250.0,330.0,43,2.0,2.0,4.0,3.0,2.0,3,2,141.1918312717781,580.0,36826.14880967628,4,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020528891139476327,18413.07440483814,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +22941,1,28.0,367.0,2,111,360.0,600.0,0.0,85,68,0.0,0.0,613.872195613942,960.0,0.0,1139.1024287638734,71,2,1,2,2,1,2,2,2,0,,2,,2,122962,2,3,0,1,1,468.0,0.0,474.0,42,1.0,0.0,2.0,2.0,1.5,2,2,221.453808386091,360.0,18034.75109252647,6,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05323056553842988,12023.167395017646,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +22942,1,57.0,223.0,6,111,310.0,,,21,77,0.0,0.0,,442.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,122963,2,1,0,0,1,,210.0,455.0,42,1.0,1.0,5.0,2.0,1.5,2,2,128.47570539138385,310.0,9386.10474082378,4,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04709088724288064,6257.403160549186,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +22943,2,41.0,0.0,9,111,0.0,0.0,0.0,55,37,0.0,0.0,0.0,741.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,122964,2,1,1,0,1,,743.0,825.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,344.118690475543,0.0,47924.45484257882,1,1,2,3,100.0,6,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01546183472371298,18432.48263176109,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +22944,2,88.0,0.0,2,111,380.0,0.0,0.0,75,75,0.0,0.0,647.9762064813832,380.0,0.0,0.0,30,1,2,2,2,2,2,2,1,0,,2,,2,122965,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1827.75217374392,380.0,67686.48882852687,5,5,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00561411895603967,45124.32588568458,10,5,10,10_0,10_4,10_0_1 +22945,2,34.0,0.0,7,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1057.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,122966,2,1,0,0,1,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2468.15883710156,0.0,48126.81583810622,0,1,2,3,28.0,9,3,9,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021962807669546267,48126.81583810622,10,5,10,10_0,10_1,10_0_0 +22946,2,44.0,0.0,5,400,1060.0,0.0,0.0,63,54,479.8806972216537,0.0,1807.5125759743848,1643.0,177.35542085075468,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,3,122967,2,1,2,0,1,,285.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,943.803212100719,1060.0,45335.726119567975,1,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03624073419860462,19711.185269377384,5,3,5,5_1,5_0,5_0_0 +22947,0,82.0,0.0,1,120,383.0,0.0,0.0,0,78,0.0,1191.8945493092015,653.0918081114994,2283.0,1385.589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,122968,2,3,4,0,1,,225.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,960.359412760818,383.0,16431.07647677719,0,5,0,1,280.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13894403103939482,16431.07647677719,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22948,1,29.0,174.0,7,111,530.0,,,53,35,0.0,0.0,,570.0,55.423569015860835,,20,0,0,0,0,0,0,0,0,0,,2,,5,122969,2,1,0,0,1,,160.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,125.6663344827409,530.0,32850.52002191435,4,1,2,3,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017351323498676945,21900.346681276234,6,3,6,6_0,6_2,6_0_0 +22949,2,79.0,0.0,2,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,3198.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122970,2,1,0,0,1,,530.0,465.0,41,0.0,1.0,4.0,4.0,2.5,4,4,1531.36704103038,0.0,44231.07106896554,5,5,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07230211529387669,17692.428427586216,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +22951,2,63.0,0.0,6,111,796.0,2400.0,0.0,0,86,0.0,0.0,1357.3396325241606,3196.0,0.0,4556.4097150554935,31,0,0,0,0,0,0,0,0,0,,1,,4,122972,2,1,2,0,1,,328.0,,21,0.0,2.0,6.0,2.0,1.5,2,2,629.70960076097,796.0,79811.80107794386,0,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04004420344904634,53207.86738529591,10,5,10,10_1,10_4,10_0_0 +22952,2,41.0,0.0,1,111,1600.0,0.0,0.0,52,48,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,50.0,2,,1,122973,2,3,0,0,1,,0.0,216.0,43,3.0,1.0,3.0,4.0,2.3,3,3,932.420551970226,1600.0,45818.96513136831,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034920037923436585,19921.289187551443,5,3,5,5_0,5_4,5_1_0 +22953,2,60.0,0.0,9,112,300.0,0.0,0.0,34,34,0.0,132.4327277010224,511.56016301161833,2000.0,2216.9427606344334,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,122974,2,1,1,0,1,,194.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,935.613501550212,300.0,4090.0079852026615,1,1,1,2,100.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.48899660030881315,2726.6719901351075,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +22956,2,56.0,0.0,5,111,1120.0,0.0,0.0,68,67,0.0,0.0,1909.8246085767084,3320.0,3048.296295872346,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,122977,2,1,3,0,1,,180.0,422.0,43,3.0,1.0,4.0,3.0,2.0,3,3,1530.6204979128,1120.0,40279.2077085625,1,1,2,3,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0824246599888865,20139.60385428125,5,3,5,5_1,5_3,5_0_0 +22957,2,74.0,0.0,5,111,358.0,1008.0,0.0,0,33,0.0,0.0,610.4617945271979,1366.0,0.0,1913.6920803233072,50,2,2,2,2,1,2,2,2,2,5.0,2,,3,122978,1,3,0,0,1,,0.0,415.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1248.06982093616,358.0,23810.032204837855,0,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.057370774984607055,23810.032204837855,6,3,6,6_0,6_4,6_0_0 +22958,2,76.0,0.0,9,111,0.0,0.0,1861.0,0,72,0.0,0.0,1173.0223384618382,1861.0,0.0,2227.118526617871,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,122979,2,1,1,0,1,,835.0,3800.0,11,0.0,2.0,5.0,1.0,1.0,1,1,1323.06531503084,0.0,97019.7313475922,0,5,2,3,130.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019181665153582036,97019.7313475922,10,5,10,10_1,10_3,10_0_0 +22959,2,42.0,0.0,6,400,1450.0,500.0,0.0,47,43,0.0,66.2163638505112,2472.540787889489,2000.0,0.0,949.2520239698945,10,0,0,0,0,0,0,0,0,2,25.0,1,,4,122980,2,1,2,0,1,,1400.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,869.669313528494,1450.0,61313.15297787356,1,1,0,1,125.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03261942834226372,24525.261191149424,7,4,7,7_1,7_0,7_0_0 +22960,2,72.0,0.0,2,112,382.0,1242.0,0.0,77,78,0.0,158.91927324122688,651.3866075681274,1744.0,0.0,2357.942027541218,71,2,2,2,2,1,2,2,2,0,,1,,2,122981,2,3,1,0,1,,300.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,418.243962855007,382.0,32226.780571183364,5,5,0,1,102.0,9,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05411648228862969,21484.52038078891,6,3,6,6_1,6_0,6_0_1 +22961,2,34.0,0.0,1,120,1200.0,0.0,0.0,54,54,0.0,728.3800023556231,2046.2406520464733,1840.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,122982,2,2,3,0,1,,200.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1875.78370633041,1200.0,64977.53441883298,1,1,1,2,110.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028317479517454537,30941.68305658713,8,4,8,8_1,8_0,8_1_0 +22962,2,63.0,0.0,9,111,0.0,0.0,0.0,43,31,0.0,0.0,0.0,303.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,122983,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,973.296905316401,0.0,76258.48404368285,1,1,0,1,87.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003973328394863366,50838.989362455235,10,5,10,10_0,10_4,10_0_0 +22963,2,68.0,0.0,2,111,240.0,,,78,71,0.0,0.0,,765.0,727.4343433331735,,71,0,0,0,0,0,0,0,0,0,,1,,2,122984,2,2,0,0,2,,184.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,111.71287986405915,240.0,11132.760939410735,5,5,0,1,42.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06871610772596828,7421.840626273824,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22964,0,72.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,280.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,1,122985,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,987.080012918109,0.0,15206.422476623164,0,1,5,0,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0184132724465892,15206.422476623164,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +22965,0,69.0,0.0,5,120,700.0,0.0,0.0,0,75,1054.6828510366015,0.0,1193.6403803604428,1760.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122986,2,1,4,0,1,,101.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1358.88059107905,700.0,21653.65892237559,0,5,0,1,171.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08127956602204174,21653.65892237559,6,3,6,6_1,6_0,6_0_0 +22967,1,33.0,180.0,5,111,720.0,1080.0,0.0,85,68,0.0,0.0,1227.744391227884,1800.0,0.0,2050.384371774972,43,2,2,2,1,2,2,2,2,2,30.0,2,,3,122988,1,3,0,0,1,,0.0,575.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1336.47431474248,720.0,32621.422574676908,6,1,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.05517846427081599,15534.010749846146,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +22968,1,24.0,301.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,532.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,122989,1,2,0,1,1,450.0,0.0,278.0,32,1.0,0.0,3.0,3.0,1.6,1,1,288.907967026796,0.0,1510.6943191472162,0,4,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.3521559545549313,944.18394946701,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +22969,1,24.0,200.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1803.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,3,122990,2,1,0,0,1,,121.0,395.0,12,1.0,1.0,4.0,1.0,1.0,1,1,489.933614400937,0.0,5155.740001952274,0,1,2,3,90.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.34970731637306685,5155.740001952274,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +22970,0,54.0,0.0,2,111,240.0,,,0,78,0.0,0.0,,332.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,1,,2,122991,2,1,0,0,2,,360.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,109.31682336394431,240.0,7032.0,0,7,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047212741751990896,7032.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +22971,1,23.0,270.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,653.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,5.0,2,,2,122992,2,2,0,0,1,,411.0,440.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1528.82770397106,0.0,13184.598670196647,0,1,2,3,32.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04952748402392294,13184.598670196647,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +22972,0,77.0,0.0,2,221,1046.0,0.0,0.0,0,74,0.0,0.0,1783.639768367176,1046.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,122993,2,2,3,0,2,,180.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,813.29796091675,1046.0,64496.150729114364,0,5,0,1,90.0,1,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01621802213271966,64496.150729114364,10,5,10,10_1,10_1,10_0_1 +22973,2,57.0,0.0,2,221,170.0,999.0,0.0,0,46,0.0,0.0,289.8840923732504,1169.0,0.0,1896.6055438918493,50,0,0,0,0,0,0,0,0,2,75.0,2,,2,122994,2,1,0,0,1,,90.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,2824.76531004084,170.0,20776.0,0,1,1,2,72.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.056266846361185986,20776.0,5,3,5,5_0,5_1,5_0_1 +22974,2,48.0,0.0,7,111,1600.0,,,22,42,0.0,0.0,,1738.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,2,5.0,1,,5,122995,2,1,0,0,2,,720.0,,43,2.0,0.0,9.0,5.0,2.6,3,2,135.9976078272961,1600.0,71202.09883661685,1,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024409392818434798,27385.422629468016,7,4,7,7_1,7_2,7_0_0 +22975,2,55.0,0.0,1,111,1250.0,0.0,0.0,0,55,0.0,72.83800023556232,2131.5006792150766,1305.0,0.0,0.0,42,2,2,2,2,1,2,2,2,2,10.0,1,,1,122996,2,2,4,0,1,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,232.014381923819,1250.0,40490.54612260375,0,1,1,2,120.0,6,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.03222974558180846,40490.54612260375,9,5,9,9_1,9_2,9_1_0 +22976,2,68.0,0.0,5,300,1572.0,0.0,0.0,78,78,0.0,0.0,2680.57525418088,1872.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,122997,2,1,2,0,1,,555.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1219.94152823988,1572.0,31676.322929801066,5,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05909776851778536,21117.54861986738,5,3,5,5_1,5_0,5_0_0 +22977,2,55.0,0.0,5,111,329.0,70.0,0.0,0,43,0.0,0.0,561.0109787694081,399.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,122998,2,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,968.240204455388,329.0,37895.57304507792,0,1,1,2,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010528934330281205,37895.57304507792,9,5,9,9_0,9_3,9_0_0 +22978,2,44.0,0.0,2,120,617.0,1130.0,0.0,53,52,0.0,0.0,1052.1087352605618,1747.0,0.0,2145.3095741719617,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,122999,1,1,1,0,1,,372.0,696.0,43,3.0,1.0,6.0,4.0,2.3,3,3,1583.79978459524,617.0,52720.18664658705,1,1,2,3,110.0,0,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03313721196988774,22921.820281124805,6,3,6,6_1,6_1,6_0_1 +22979,2,39.0,0.0,9,211,450.0,,,31,22,0.0,0.0,,450.0,0.0,,31,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,123000,2,2,0,0,2,,100.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,168.46727057479575,450.0,35513.72576329185,1,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012671157146376762,16911.297982519925,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +22980,2,43.0,0.0,7,111,500.0,,,43,34,0.0,0.0,,500.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,123001,1,1,0,0,2,,180.0,709.0,43,2.0,0.0,6.0,2.0,1.5,2,2,164.58045650046904,500.0,45366.2812836428,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011021401487017612,30244.187522428532,8,4,8,8_0,8_2,8_0_0 +22981,2,63.0,0.0,6,112,2620.0,0.0,0.0,78,74,0.0,0.0,4467.6254236348,2670.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,123002,1,3,3,0,2,,820.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1383.26715048428,2620.0,34020.801565975395,6,6,0,1,100.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07848139600185959,22680.53437731693,6,3,6,6_1,6_0,6_0_0 +22982,2,35.0,0.0,7,111,300.0,,,0,81,0.0,0.0,,612.0,432.30383832371456,,50,0,0,0,0,0,0,0,0,0,,1,,5,123003,2,1,0,0,2,,0.0,300.0,12,1.0,3.0,2.0,1.0,1.0,1,1,34.56898464294446,300.0,9062.900327868854,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06752805149120647,9062.900327868854,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22983,2,60.0,0.0,2,111,550.0,,,0,77,0.0,0.0,,638.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,0,,8,,2,123004,2,1,0,0,2,,360.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,113.34637044704188,550.0,14384.326355741616,0,5,0,1,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04435383237431465,14384.326355741616,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +22984,2,33.0,0.0,1,111,12.0,24.0,0.0,38,37,0.0,0.0,20.462406520464732,36.0,0.0,45.564097150554936,10,0,0,0,0,0,0,0,0,1,20.0,2,,1,123005,2,1,0,0,2,,0.0,1856.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1058.09077390967,12.0,139441.64334759695,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00025817251672988407,77467.57963755386,10,5,10,10_0,10_4,10_1_0 +22985,2,57.0,0.0,7,111,800.0,0.0,0.0,0,43,0.0,0.0,1364.160434697649,800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,10.0,2,,5,123006,2,1,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,531.363475798783,800.0,33478.05962392987,0,1,1,2,40.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023896247542022,33478.05962392987,8,4,8,8_0,8_3,8_0_0 +22986,2,70.0,0.0,1,112,880.0,0.0,0.0,71,74,527.3414255183008,0.0,1500.5764781674138,1450.0,96.99124577775646,0.0,30,0,0,0,0,0,0,0,0,0,,1,,1,123007,2,2,1,0,1,,272.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1486.90910560176,880.0,66536.8269814253,5,5,0,1,160.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021792442858821447,44357.88465428353,10,5,10,10_1,10_0,10_1_0 +22987,2,65.0,0.0,1,400,490.0,0.0,0.0,75,90,0.0,1191.8945493092015,835.54826625231,1490.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123008,2,2,3,0,1,,120.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1075.86667213184,490.0,21300.518588108353,5,5,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06995134854753428,14200.345725405568,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +22988,2,37.0,0.0,6,111,1200.0,0.0,0.0,43,52,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,105.0,2,,4,123009,2,2,0,0,1,,0.0,580.0,43,2.0,0.0,3.0,3.0,1.8,2,2,944.873795197061,1200.0,42678.04923846808,1,1,2,3,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02811749884102889,23710.027354704485,6,3,6,6_0,6_4,6_0_0 +22989,2,45.0,0.0,7,111,400.0,,,0,85,0.0,0.0,,526.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,,5,123010,2,1,0,0,2,,180.0,,31,0.0,0.0,5.0,4.0,2.3,3,3,98.1524469291907,400.0,14584.151471967552,0,6,0,1,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036066548061505915,6340.935422594588,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +22990,2,55.0,0.0,2,111,960.0,,,0,47,0.0,0.0,,1110.0,207.83838380947813,,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,123011,2,1,0,0,2,,300.0,318.0,32,1.0,4.0,4.0,2.0,1.5,2,2,50.92348800266864,960.0,46591.18096886693,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023824251219167893,31060.787312577955,8,4,8,8_0,8_2,8_0_1 +22991,2,73.0,0.0,6,112,600.0,,,78,77,0.0,0.0,,840.0,332.541414095165,,70,0,0,0,0,0,0,0,0,0,,1,,4,123012,2,1,0,0,2,,600.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,96.40689464802085,600.0,31134.212093784452,5,5,0,1,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026979966522669617,20756.141395856303,5,3,5,5_1,5_2,5_0_0 +22992,2,29.0,0.0,9,112,0.0,0.0,0.0,52,46,0.0,0.0,0.0,1561.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,123013,2,1,1,0,1,,53.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,5260.7927253181,0.0,39978.702714567335,1,1,1,2,100.0,4,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03904578923295595,26652.468476378224,7,4,7,7_1,7_0,7_0_0 +22993,2,58.0,0.0,6,111,400.0,,,11,63,0.0,0.0,,1267.0,174.58424239996165,,60,0,0,0,0,0,0,0,0,1,5.0,1,,4,123014,2,1,0,0,2,,942.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,113.0442494247693,400.0,39506.36916637713,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03207077812350095,19753.184583188566,5,3,5,5_1,5_2,5_0_0 +22994,2,26.0,0.0,2,111,360.0,0.0,0.0,0,33,0.0,0.0,613.872195613942,360.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,2,123015,1,2,0,0,1,,0.0,555.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1116.23246376505,360.0,13398.0,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026869682042095836,13398.0,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +22995,2,26.0,0.0,1,112,720.0,0.0,0.0,0,62,0.0,0.0,1227.744391227884,755.0,48.49562288887823,0.0,50,2,2,2,1,2,2,2,2,2,20.0,1,,1,123016,2,3,3,0,1,,220.0,435.0,12,1.0,0.0,3.0,1.0,1.0,1,1,908.673957933009,720.0,17198.926041875973,0,1,2,3,48.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.043898089808731354,17198.926041875973,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +22996,2,38.0,0.0,2,111,420.0,90.0,0.0,0,45,0.0,0.0,716.1842282162656,510.0,0.0,170.865364314581,20,0,0,0,0,0,0,0,0,3,17.0,2,,2,123017,2,1,0,1,1,585.0,0.0,319.0,32,1.0,0.0,3.0,2.0,1.3,1,1,390.962749746812,420.0,16432.073632888092,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031036861895461374,12640.056640683148,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +22997,2,43.0,0.0,1,112,840.0,2800.0,0.0,42,46,0.0,582.7040018844986,1432.3684564325313,4080.0,0.0,5315.811334231409,44,0,0,0,0,0,0,0,0,3,105.0,1,,1,123018,2,2,2,0,1,,410.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,617.261768032247,840.0,71961.00848325212,1,1,0,1,160.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056697371062407506,31287.394992718317,8,4,8,8_1,8_0,8_1_0 +22998,2,57.0,0.0,2,111,363.0,1898.0,0.0,77,46,0.0,0.0,618.9877972440582,2261.0,0.0,3603.3606829897194,44,0,0,0,0,0,0,0,0,4,40.0,1,,2,123019,2,1,2,0,1,,416.0,,42,1.0,0.0,7.0,4.0,2.5,4,4,917.125825940835,363.0,40465.84879392722,6,1,0,1,156.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055874275899022094,16186.33951757089,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +22999,2,31.0,0.0,2,111,0.0,0.0,1000.0,42,46,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,20,0,0,0,0,0,0,0,0,1,13.0,1,,2,123020,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,410.095806245909,0.0,42288.65148236981,1,1,1,2,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023647006110301277,23493.69526798323,6,3,6,6_1,6_2,6_0_1 +23000,2,27.0,0.0,2,111,410.0,650.0,0.0,54,54,0.0,0.0,699.1322227825451,1060.0,0.0,1234.027631160863,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,123021,2,1,2,0,1,,210.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,456.527656021134,410.0,38012.78328787028,1,1,1,2,115.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02788535614381706,25341.855525246854,7,4,7,7_1,7_2,7_0_1 +23001,2,38.0,0.0,9,111,734.0,0.0,0.0,0,53,0.0,0.0,1251.617198835093,734.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,60.0,1,2007.0,6,123022,2,1,1,0,1,,200.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1078.09106228643,734.0,26928.299407454877,0,1,1,2,63.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027257569774227858,20714.076467272982,5,3,5,5_1,5_2,5_0_0 +23002,2,78.0,0.0,2,112,150.0,0.0,0.0,0,71,1687.4925616585624,0.0,255.78008150580916,1850.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123023,2,1,1,0,2,,220.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2070.06095314212,150.0,15586.618212813148,0,5,0,1,63.0,9,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11869155802374036,15586.618212813148,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +23003,2,30.0,0.0,2,112,0.0,0.0,0.0,52,37,0.0,0.0,0.0,2544.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,120.0,1,,2,123024,2,1,2,0,1,,366.0,900.0,43,2.0,0.0,5.0,5.0,2.4,2,2,763.622418608926,0.0,64701.854054140145,1,1,2,3,90.0,10,0,1,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039318811449688504,26959.10585589173,7,4,7,7_1,7_0,7_0_1 +23004,2,68.0,0.0,8,111,1000.0,0.0,0.0,0,75,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2001.0,6,123025,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,802.937043136318,1000.0,49808.961909636775,0,5,0,1,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020076708320366045,49808.961909636775,10,5,10,10_0,10_4,10_0_0 +23005,2,36.0,0.0,9,400,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1283.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,2012.0,6,123026,2,1,1,0,1,,485.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,1604.3380113533,0.0,14789.880858408482,0,1,1,2,75.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08674850137623501,9859.920572272322,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +23006,0,56.0,0.0,1,112,660.0,0.0,0.0,62,62,0.0,264.8654554020448,1125.4323586255605,1115.0,353.32525247611284,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,123027,2,2,2,0,1,,0.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1125.53863382134,660.0,48066.83652302394,1,1,5,0,140.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023196866710084335,32044.557682015962,8,4,8,8_1,8_0,8_1_0 +23007,2,37.0,0.0,5,111,390.0,1054.0,0.0,43,38,0.0,0.0,665.0282119151038,1444.0,0.0,2001.0232665285375,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,123028,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1277.09516145576,390.0,61702.46531084925,1,1,1,2,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02340263055495935,29382.126338499642,8,4,8,8_0,8_3,8_0_0 +23008,2,73.0,0.0,2,111,2282.0,0.0,0.0,0,75,0.0,0.0,3891.2676399750435,2282.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,123029,2,1,2,0,1,,549.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,526.228394087807,2282.0,38163.0345989831,0,5,0,1,127.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05979608340844066,38163.0345989831,9,5,9,9_1,9_3,9_0_1 +23009,2,43.0,0.0,1,112,300.0,0.0,0.0,52,67,1582.0242765549024,0.0,511.56016301161833,1908.0,149.64363634282427,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,123030,2,1,2,0,1,,100.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,2152.33081059867,300.0,31649.475247744645,1,1,1,2,97.0,8,1,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060285359711800116,21099.650165163097,5,3,5,5_1,5_1,5_1_0 +23010,2,87.0,0.0,2,111,400.0,1800.0,0.0,77,75,0.0,0.0,682.0802173488245,2200.0,0.0,3417.30728629162,70,0,0,0,0,0,0,0,0,0,,1,,2,123031,2,3,2,0,1,,310.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1068.19142448748,400.0,47945.461697277424,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04588546907506215,31963.64113151828,8,4,8,8_1,8_3,8_0_1 +23011,2,73.0,0.0,2,111,401.0,1563.0,0.0,77,74,0.0,0.0,683.7854178921965,1964.0,0.0,2967.3618269298904,44,0,0,0,0,0,0,0,0,0,,1,,2,123032,2,1,2,0,1,,273.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1164.28033904435,401.0,59106.75809614302,5,5,0,1,200.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033228010861386756,39404.50539742868,9,5,9,9_1,9_2,9_0_1 +23012,2,49.0,0.0,8,112,1375.0,0.0,0.0,75,48,0.0,0.0,2344.650747136584,1480.0,145.4868686666347,0.0,30,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,123033,2,1,1,0,1,,385.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,936.373060564134,1375.0,54360.70622700649,5,1,1,2,99.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027225547692843133,36240.47081800433,9,5,9,9_1,9_1,9_0_0 +23013,2,23.0,0.0,9,211,0.0,0.0,0.0,0,21,0.0,0.0,0.0,343.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,2005.0,6,123034,2,1,0,0,1,,129.0,440.0,12,1.0,0.0,3.0,1.0,1.0,1,1,3465.66053907378,0.0,18624.480273159603,0,1,2,3,52.0,2,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0184166212946253,18624.480273159603,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +23014,1,55.0,205.0,2,111,500.0,0.0,0.0,0,34,0.0,0.0,852.6002716860306,500.0,0.0,0.0,60,2,2,2,1,1,2,2,2,0,,2,,2,123035,2,3,0,1,1,192.0,0.0,326.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1310.88962153326,500.0,12314.836826493776,0,4,2,3,41.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.040601431187810365,12314.836826493776,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +23015,1,26.0,240.0,7,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1327.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,123036,2,1,0,0,1,,0.0,548.0,22,2.0,0.0,3.0,2.0,1.5,2,2,298.131877704554,0.0,28345.379202815668,0,4,3,4,70.0,6,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04681539063228279,18896.91946854378,5,3,5,5_0,5_2,5_0_0 +23016,1,28.0,115.0,2,111,300.0,480.0,0.0,0,54,0.0,0.0,511.56016301161833,780.0,0.0,911.2819430110987,42,2,1,2,1,2,2,2,2,3,30.0,2,,2,123037,1,2,0,1,2,376.0,0.0,500.0,22,2.0,0.0,2.0,2.0,1.5,2,2,322.044384905846,300.0,35262.3973095324,0,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.022119880085099727,23508.264873021602,6,3,6,6_0,6_4,6_0_1 +23017,1,80.0,159.0,5,111,430.0,160.0,0.0,0,77,0.0,0.0,733.2362336499863,590.0,0.0,303.7606476703662,71,2,1,2,1,1,2,2,2,0,,2,,3,123038,1,2,0,1,1,750.0,240.0,343.0,11,0.0,1.0,3.0,1.0,1.0,1,1,440.0535008756,430.0,10624.133767343668,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.05553393932346134,10624.133767343668,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +23018,1,48.0,420.0,6,111,400.0,0.0,0.0,0,43,0.0,0.0,682.0802173488245,400.0,0.0,0.0,33,2,2,2,2,1,1,2,2,0,,2,,4,123039,2,3,0,0,1,631.0,0.0,474.0,32,1.0,0.0,3.0,2.0,1.3,1,1,838.045992265018,400.0,8944.260692320788,0,4,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.044721415638457995,6880.2005325544515,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +23019,1,56.0,130.0,9,111,370.0,700.0,0.0,85,75,0.0,0.0,630.9242010476627,1070.0,0.0,1328.9528335578523,43,0,0,0,0,0,0,0,0,0,,2,2006.0,6,123040,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,4.0,2.1,2,2,875.363963834108,370.0,16398.31250237459,6,7,1,2,76.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06525061647929058,7808.720239225994,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +23020,1,60.0,31.0,2,111,350.0,75.0,0.0,0,78,0.0,0.0,596.8201901802214,425.0,0.0,142.38780359548417,50,0,0,0,0,0,0,0,0,0,,2,,2,123041,2,2,0,1,1,828.0,0.0,449.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1543.38100569138,350.0,13895.747907846811,0,7,2,3,79.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03058489566869633,13895.747907846811,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +23021,2,52.0,0.0,1,112,300.0,0.0,0.0,0,52,0.0,397.2981831030672,511.56016301161833,900.0,415.67676761895626,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,123042,2,2,3,0,1,,120.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,879.386884803389,300.0,21331.79041823039,0,1,1,2,70.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.042190551395575766,21331.79041823039,6,3,6,6_1,6_0,6_1_0 +23023,2,56.0,0.0,7,112,960.0,,,0,64,0.0,0.0,,1220.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,123044,2,1,0,0,2,,600.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,63.50707503405926,960.0,23012.0,0,1,0,1,100.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05301581783417347,15341.333333333334,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +23024,2,57.0,0.0,1,111,1234.0,0.0,0.0,56,62,0.0,0.0,2104.2174705211237,1354.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123045,2,1,1,0,1,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1669.64233088629,1234.0,39056.078296146254,1,1,0,1,90.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03466809928362936,26037.385530764168,7,4,7,7_1,7_2,7_1_0 +23025,2,50.0,0.0,7,120,1237.0,0.0,0.0,62,62,0.0,52.973091080408956,2109.33307215124,1367.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,5,123046,2,2,1,0,1,,327.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,585.102803615126,1237.0,54301.49575009666,1,1,0,1,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02517426050823962,27150.74787504833,7,4,7,7_1,7_0,7_0_0 +23026,2,83.0,0.0,5,111,0.0,0.0,2700.0,78,78,0.0,0.0,1701.8593841198083,2700.0,0.0,3231.1767984246385,71,0,0,0,0,0,0,0,0,0,,1,,3,123047,2,1,2,0,2,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1130.00692642611,0.0,28801.79468068239,5,5,0,1,120.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09374415830451403,19201.19645378826,5,3,5,5_1,5_2,5_0_0 +23028,2,74.0,0.0,2,111,200.0,906.0,0.0,78,75,0.0,0.0,341.04010867441224,1106.0,0.0,1720.044667433449,33,0,0,0,0,0,0,0,0,0,,2,,2,123049,1,2,0,0,2,,200.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,513.099880809727,200.0,41286.59191342231,5,5,0,1,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02678835788430477,27524.394608948205,7,4,7,7_0,7_2,7_0_1 +23029,2,57.0,0.0,5,111,444.0,180.0,0.0,0,68,0.0,0.0,757.1090412571951,624.0,0.0,341.730728629162,50,2,2,1,2,1,2,2,2,0,,8,,3,123050,1,1,0,1,1,911.0,0.0,408.0,12,1.0,4.0,5.0,1.0,1.0,1,1,313.774092713776,444.0,6046.957107914801,0,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.10319239724443435,6046.957107914801,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +23030,2,52.0,0.0,1,111,550.0,0.0,0.0,69,11,2636.7071275915036,0.0,937.8602988546337,3190.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123051,2,1,2,0,1,,0.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,916.665341375276,550.0,47262.218550731544,1,1,0,1,130.0,5,4,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0674957735336913,18904.887420292616,5,3,5,5_1,5_2,5_1_0 +23031,2,50.0,0.0,7,111,1557.0,0.0,0.0,52,42,0.0,275.46007361812656,2654.9972460302993,1815.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,8.0,1,,5,123052,2,2,2,0,1,,343.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,809.382039321947,1557.0,61500.3271530947,1,1,1,2,125.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029512038130819422,23653.971981959505,6,3,6,6_1,6_2,6_0_0 +23032,0,46.0,0.0,6,111,480.0,,,90,68,0.0,0.0,,720.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,4,123053,2,2,0,0,2,,480.0,,43,3.0,1.0,4.0,5.0,2.5999999999999996,3,2,96.01646238496214,480.0,51810.516729859446,4,4,5,0,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013896792493965795,19927.12181917671,5,3,5,5_1,5_2,5_0_0 +23033,2,37.0,0.0,9,221,720.0,,,55,85,0.0,0.0,,972.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,2013.0,6,123054,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,79.15439637026383,720.0,38595.34386258562,4,7,0,1,63.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025184385024802386,16081.393276077342,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23034,2,46.0,0.0,7,111,1234.0,0.0,0.0,37,47,0.0,264.8654554020448,2104.2174705211237,3524.0,2895.881481078729,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,123055,2,1,2,0,1,,303.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,3159.26555813771,1234.0,73608.15995572468,1,1,1,2,143.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04787512691690278,32003.54780683682,8,4,8,8_1,8_2,8_0_0 +23035,1,55.0,305.0,5,111,1200.0,,,52,52,0.0,0.0,,1464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,123056,2,2,0,0,2,,603.0,,43,2.0,4.0,3.0,3.0,1.8,2,2,107.31365980181243,1200.0,18309.254434852443,4,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0799595639030071,10171.808019362468,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +23036,2,64.0,0.0,5,111,500.0,,,0,46,0.0,0.0,,577.0,106.69037035553211,,30,0,0,0,0,0,0,0,0,2,20.0,1,,3,123057,2,2,0,0,2,,600.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,128.60479754486659,500.0,17869.126302711622,0,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03229033083237208,17869.126302711622,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +23037,2,85.0,0.0,2,111,327.0,786.0,0.0,0,75,0.0,0.0,557.600577682664,1113.0,0.0,1492.224181680674,41,0,0,0,0,0,0,0,0,0,,2,,2,123058,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1019.68872296547,327.0,64619.88924784665,0,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01722379925058582,64619.88924784665,10,5,10,10_0,10_4,10_0_1 +23038,2,74.0,0.0,2,111,380.0,,,77,78,0.0,0.0,,495.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,1,,2,123059,2,2,0,0,2,,350.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,91.2245632222541,380.0,19493.557998448894,5,5,0,1,84.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025393004193456487,12995.705332299263,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +23039,2,48.0,0.0,9,111,1230.0,,,35,46,0.0,0.0,,1330.0,138.5589225396521,,42,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,123060,2,1,0,0,2,,890.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,108.48474933064534,1230.0,44666.99136690621,1,1,1,2,147.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029775902949787603,22333.495683453104,6,3,6,6_1,6_3,6_0_0 +23040,2,41.0,0.0,1,120,593.0,703.0,0.0,55,62,0.0,0.0,1011.1839222196322,1296.0,0.0,1334.6483457016716,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,123061,2,2,2,0,1,,370.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,215.241317321646,593.0,28942.530866319266,1,1,1,2,173.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04477839225553592,13782.157555390126,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +23041,2,35.0,0.0,2,111,0.0,0.0,0.0,81,47,0.0,0.0,0.0,793.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,1,,2,123062,1,2,5,0,2,,359.0,345.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1366.80505787701,0.0,19070.638743047613,4,1,2,3,56.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.04158224644096391,10594.799301693118,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +23042,1,27.0,312.0,2,111,450.0,450.0,0.0,85,67,0.0,0.0,767.3402445174275,900.0,0.0,854.326821572905,71,2,2,2,1,2,2,2,2,2,20.0,2,,2,123063,2,3,0,1,1,,0.0,280.0,42,1.0,0.0,3.0,4.0,2.1,2,2,353.734393353858,450.0,26202.22971635197,6,1,2,3,53.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0343482218781686,12477.25224588189,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +23043,2,41.0,0.0,1,111,922.0,2616.0,0.0,45,38,0.0,0.0,1572.1949009890404,3538.0,0.0,4966.486589410488,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,123064,2,2,1,0,2,,698.0,,43,2.0,0.0,9.0,5.0,2.4,2,2,373.216886012223,922.0,74331.86738907786,4,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04759735123403969,30971.611412115777,8,4,8,8_1,8_4,8_1_0 +23044,2,37.0,0.0,2,111,250.0,80.0,0.0,43,42,0.0,0.0,426.3001358430153,330.0,0.0,151.8803238351831,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,123065,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1186.13535798434,250.0,59498.1533729746,1,1,0,1,72.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005546390623778475,39665.43558198307,9,5,9,9_0,9_2,9_0_1 +23045,1,54.0,200.0,6,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1022.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,123066,1,3,0,0,1,,0.0,271.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1331.94987799797,0.0,9415.765000312522,0,7,2,3,52.0,7,6,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.10854136652370555,9415.765000312522,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23046,1,42.0,307.0,2,111,390.0,360.0,0.0,0,68,0.0,0.0,665.0282119151038,750.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,123067,2,1,0,1,1,807.0,0.0,349.0,32,1.0,0.0,4.0,4.0,2.5,4,3,362.245155394416,390.0,13430.569131832797,0,1,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05584275637451349,5372.227652733119,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23047,2,48.0,0.0,1,111,560.0,1880.0,0.0,52,37,0.0,492.6497470478033,954.9123042883542,2812.0,0.0,3569.1876101268035,30,0,0,0,0,0,0,0,0,2,35.0,1,,1,123068,2,1,2,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,433.932991403406,560.0,78725.24683592231,1,1,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035719163966049135,31490.098734368927,8,4,8,8_1,8_4,8_1_0 +23048,1,34.0,230.0,2,111,0.0,0.0,0.0,56,65,0.0,0.0,0.0,1639.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,123069,2,3,3,0,1,,205.0,760.0,43,2.0,0.0,5.0,5.0,2.4,2,2,368.137849883105,0.0,33770.75327737795,4,1,2,3,113.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04853311936923594,14071.147198907482,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +23049,2,25.0,0.0,9,111,560.0,,,47,43,0.0,158.91927324122688,,768.0,121.93185183489385,,44,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,123070,2,1,0,0,2,,60.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,147.78786349432784,560.0,60697.05801138904,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012653002059109594,28903.360957804303,8,4,8,8_1,8_2,8_0_0 +23050,0,77.0,0.0,2,300,299.0,0.0,0.0,0,78,1582.0242765549024,66.2163638505112,509.8549624682463,1939.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123071,1,1,3,0,2,,237.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1106.7525875106,299.0,15773.761693163047,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12292565576418191,15773.761693163047,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +23051,2,69.0,0.0,1,111,0.0,0.0,2000.0,72,75,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,44,0,0,0,0,0,0,0,0,0,,1,,1,123072,2,2,1,0,1,,250.0,620.0,41,0.0,1.0,5.0,2.0,1.5,2,2,318.090385838919,0.0,32284.214459817416,5,5,2,3,88.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06194978051856589,21522.809639878276,6,3,6,6_1,6_3,6_1_0 +23053,2,57.0,0.0,2,111,200.0,0.0,0.0,0,85,0.0,0.0,341.04010867441224,800.0,831.3535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123074,2,1,2,0,2,,135.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,578.191473904289,200.0,8888.128849093951,0,6,0,1,120.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0900076960609714,8888.128849093951,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +23054,2,46.0,0.0,2,111,200.0,0.0,0.0,84,63,0.0,0.0,341.04010867441224,990.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123075,2,1,0,1,1,,0.0,364.0,42,1.0,0.0,3.0,3.0,1.8,2,2,204.91591177604,200.0,30605.476994996618,3,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.032347151464486086,17003.04277499812,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +23055,2,74.0,0.0,2,300,1750.0,0.0,0.0,0,74,0.0,198.6490915515336,2984.100950901107,1970.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,123076,2,1,2,0,1,,180.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1566.06620980485,1750.0,39548.30712854835,0,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049812498765034,39548.30712854835,9,5,9,9_1,9_0,9_0_1 +23056,2,71.0,0.0,7,111,517.0,,,75,77,0.0,0.0,,583.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,,5,123077,2,1,0,0,2,,375.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,108.78762023721492,517.0,40287.77408218424,5,5,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014470891313347837,26858.516054789492,7,4,7,7_1,7_2,7_0_0 +23057,2,40.0,0.0,9,120,980.0,,,46,62,0.0,0.0,,1173.0,267.4187205015285,,50,0,0,0,0,0,0,0,0,2,3.0,1,2009.0,6,123078,2,1,0,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,148.74260394133609,980.0,41586.61744428672,1,1,1,2,102.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02820618920429052,14852.363372959544,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +23058,2,38.0,0.0,1,112,500.0,0.0,0.0,43,64,843.7462808292812,132.4327277010224,852.6002716860306,1450.0,69.27946126982604,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,123079,2,1,2,0,1,,300.0,620.0,43,2.0,2.0,3.0,2.0,1.5,2,2,772.565563237466,500.0,40818.697890997406,1,1,2,3,68.0,8,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03552293617675145,27212.465260664936,7,4,7,7_1,7_1,7_1_0 +23059,0,53.0,0.0,9,111,640.0,,,0,68,0.0,635.6770929649075,,1258.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,123080,2,1,0,0,2,,936.0,,12,1.0,5.0,4.0,1.0,1.0,1,1,119.24839761771865,640.0,5754.017026106697,0,4,0,1,10.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2186298709740163,5754.017026106697,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23060,0,50.0,0.0,2,112,1500.0,0.0,0.0,62,63,0.0,0.0,2557.8008150580918,1600.0,138.5589225396521,0.0,71,2,2,2,2,1,2,1,2,2,30.0,1,,2,123081,2,2,1,0,1,,0.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1180.72875465913,1500.0,23919.08290199544,1,1,0,1,43.0,9,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0.06689219676840205,15946.05526799696,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +23061,2,45.0,0.0,8,112,700.0,0.0,0.0,55,42,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,2.0,1,2001.0,6,123082,2,2,2,0,1,,500.0,400.0,43,2.0,1.0,5.0,4.0,2.3,3,3,2607.06497058386,700.0,38663.88997347336,4,1,2,3,90.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019656583973351446,16810.38694498842,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23062,1,59.0,238.0,6,111,420.0,,,0,52,0.0,0.0,,640.0,304.8296295872346,,60,0,0,0,0,0,0,0,0,0,,2,,4,123083,2,2,0,0,2,,390.0,242.0,22,2.0,0.0,3.0,2.0,1.5,2,2,195.18300597165833,420.0,29506.0,0,4,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021690503626381075,19670.666666666668,5,3,5,5_0,5_2,5_0_0 +23063,2,51.0,0.0,7,112,439.0,0.0,0.0,0,43,0.0,0.0,748.5830385403349,439.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,2,,5,123084,2,1,0,0,1,,0.0,380.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1096.58265877536,439.0,19234.486237274934,0,1,2,3,25.0,9,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022823588557788054,19234.486237274934,5,3,5,5_0,5_1,5_0_0 +23064,2,73.0,0.0,2,112,600.0,0.0,0.0,0,78,2847.643697798824,0.0,1023.1203260232367,3300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123085,2,1,2,0,2,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,924.287886388925,600.0,20904.60233745501,0,5,0,1,106.0,10,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15785997488636047,20904.60233745501,5,3,5,5_1,5_1,5_0_1 +23065,2,47.0,0.0,2,111,504.0,108.0,0.0,67,56,0.0,0.0,859.4210738595189,612.0,0.0,205.0384371774972,50,0,0,0,0,0,0,0,0,0,,2,,2,123086,2,1,0,1,1,60.0,0.0,266.0,43,2.0,1.0,3.0,3.0,2.0,3,2,183.445240634118,504.0,27282.91724013062,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022431618826296375,13641.45862006531,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +23066,0,36.0,0.0,1,400,0.0,0.0,0.0,0,43,1687.4925616585624,52.973091080408956,0.0,6265.0,2.771178450793042,0.0,31,2,2,2,1,1,2,2,2,2,30.0,1,,1,123087,2,2,3,0,1,,394.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1715.21714880554,0.0,25283.874652161976,0,1,5,0,200.0,0,0,7,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.24778638900048067,25283.874652161976,7,4,7,7_1,7_0,7_1_0 +23067,2,80.0,0.0,6,111,1523.0,0.0,0.0,75,74,0.0,0.0,2597.0204275556493,1523.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,123088,2,2,0,0,1,,0.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,1063.8464095371,1523.0,146379.0,5,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010404497912951994,97586.0,10,5,10,10_0,10_4,10_0_0 +23068,2,74.0,0.0,1,211,0.0,0.0,1156.0,0,78,0.0,231.75727347678918,728.6479437194439,1331.0,0.0,1383.422362584771,70,0,0,0,0,0,0,0,0,0,,1,,1,123089,2,2,2,0,1,,172.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1017.06693571947,0.0,23785.42018469943,0,5,0,1,90.0,1,3,4,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055958649864684726,23785.42018469943,6,3,6,6_1,6_1,6_1_0 +23069,2,43.0,0.0,9,120,400.0,,,55,64,0.0,0.0,,484.0,116.38949493330776,,50,2,2,2,2,1,2,2,2,2,15.0,1,2004.0,6,123090,2,2,0,0,1,,480.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,119.01814570085892,400.0,55487.020401038644,1,1,0,1,150.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.008722760683522667,26422.390667161257,7,4,7,7_1,7_2,7_0_0 +23070,2,59.0,0.0,1,111,2160.0,0.0,0.0,75,46,0.0,0.0,3683.2331736836522,2160.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,123091,2,1,0,0,1,,450.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,742.963061222672,2160.0,74134.02952888931,5,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02913641702368639,49422.68635259287,10,5,10,10_0,10_4,10_1_0 +23071,2,79.0,0.0,1,111,210.0,1400.0,0.0,0,78,0.0,0.0,358.0921141081328,1610.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,1,,1,123092,1,1,2,0,2,,100.0,380.0,11,0.0,2.0,3.0,1.0,1.0,1,1,110.640822160695,210.0,17754.92190244739,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0906790809244885,17754.92190244739,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +23072,2,56.0,0.0,1,111,720.0,,,0,54,0.0,0.0,,970.0,346.39730634913025,,60,0,0,0,0,0,0,0,0,3,20.0,1,,1,123093,2,1,0,0,2,,300.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,81.85862047318395,720.0,23210.044280615344,0,1,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041792251159560624,23210.044280615344,6,3,6,6_1,6_2,6_1_0 +23073,0,25.0,0.0,8,120,0.0,0.0,0.0,46,62,0.0,0.0,0.0,1328.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,123094,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1249.35156631823,0.0,28959.710449414168,4,4,5,0,85.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045856812081035994,19306.47363294278,5,3,5,5_0,5_0,5_0_0 +23075,1,52.0,200.0,1,111,365.0,783.0,0.0,0,85,0.0,0.0,622.3981983308023,1148.0,0.0,1486.5286695368547,50,0,0,0,0,0,0,0,0,0,,1,,1,123096,2,3,3,0,1,,288.0,314.0,31,0.0,2.0,6.0,2.0,1.5,2,2,292.530258793794,365.0,22958.166197114173,0,5,2,3,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05000399379216546,15305.44413140945,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +23076,1,52.0,346.0,5,111,220.0,630.0,0.0,0,85,0.0,0.0,375.14411954185346,850.0,0.0,1196.057550202067,71,0,0,0,0,0,0,0,0,0,,2,,3,123097,1,2,0,0,1,,100.0,600.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1626.32313374408,220.0,8896.548087543255,0,7,2,3,62.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0955426747133701,8896.548087543255,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23077,2,33.0,0.0,2,111,200.0,100.0,0.0,0,68,0.0,0.0,341.04010867441224,300.0,0.0,189.8504047939789,50,2,2,2,2,1,2,2,1,0,,2,,2,123098,1,2,0,1,1,407.0,0.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,310.4407469073,200.0,5177.878704109885,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.057938784808125816,5177.878704109885,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +23078,2,84.0,0.0,2,111,400.0,650.0,0.0,0,77,0.0,0.0,682.0802173488245,1050.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,0,,2,,2,123099,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,965.426228956592,400.0,20732.46795600816,0,5,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05064520066921003,20732.46795600816,5,3,5,5_0,5_4,5_0_1 +23079,1,43.0,255.0,8,120,398.0,,,42,63,0.0,0.0,,591.0,267.4187205015285,,71,0,0,0,0,0,0,0,0,1,15.0,2,2002.0,6,123100,2,1,0,0,2,,280.0,409.0,43,3.0,0.0,3.0,3.0,2.0,3,3,92.27448801106003,398.0,17144.248112863435,4,1,2,3,57.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034472202928314426,8572.124056431718,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +23080,2,50.0,0.0,1,111,600.0,920.0,0.0,0,52,0.0,66.2163638505112,1023.1203260232367,1570.0,0.0,1746.6237241046058,50,0,0,0,0,0,0,0,0,0,,1,,1,123101,2,2,2,0,1,,200.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,65.559384831306,600.0,14620.0,0,1,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10738714090287278,9746.666666666666,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +23081,2,41.0,0.0,2,211,920.0,0.0,0.0,0,55,0.0,0.0,1568.7844999022964,950.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,123102,2,1,0,0,1,,110.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1857.98371630141,920.0,16516.931627788807,0,1,1,2,50.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05751673624425971,16516.931627788807,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +23082,2,78.0,0.0,1,111,340.0,1400.0,0.0,78,78,0.0,0.0,579.7681847465008,1740.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,1,,1,123103,2,1,2,0,1,,500.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,1166.28759819455,340.0,22635.957036066942,5,5,0,1,76.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07686885061796042,15090.638024044629,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +23083,1,32.0,250.0,6,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,707.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,123104,2,1,0,0,1,,0.0,564.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1984.51703023357,0.0,22624.937133726795,6,4,2,3,80.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.031248705612802845,10773.779587488949,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +23084,2,61.0,0.0,2,111,0.0,,,0,77,0.0,0.0,,164.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,123105,2,1,0,0,2,,418.0,248.0,11,0.0,1.0,2.0,1.0,1.0,1,1,27.349330012672112,0.0,27821.245302955303,0,5,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005894775672840897,27821.245302955303,7,4,7,7_0,7_2,7_0_1 +23085,1,45.0,459.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1397.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123106,2,1,0,0,1,,445.0,524.0,32,1.0,0.0,5.0,4.0,2.1,2,1,469.29224696978,0.0,14814.471345577664,0,4,2,3,77.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09429968626028798,7054.510164560792,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23086,2,42.0,0.0,2,111,480.0,150.0,0.0,85,48,0.0,0.0,818.4962608185893,630.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,2,,2,123107,2,3,0,1,1,650.0,0.0,559.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,3,665.491422702426,480.0,40496.795498741136,6,1,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015556786462760588,15575.690576438901,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +23087,2,43.0,0.0,8,120,0.0,,,21,43,0.0,0.0,,889.0,0.0,,33,0,0,0,0,0,0,0,0,0,,1,2003.0,6,123108,2,2,0,0,2,,665.0,875.0,43,2.0,0.0,4.0,4.0,2.1,2,2,125.94471186440578,0.0,51240.56614116132,1,1,2,3,98.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01734953508419319,24400.2695910292,7,4,7,7_1,7_2,7_0_0 +23088,2,47.0,0.0,2,111,423.0,1329.0,0.0,43,37,0.0,0.0,721.2998298463818,1752.0,0.0,2523.11187971198,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,123109,2,1,2,0,1,,539.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,422.29384885528,423.0,64147.23618213333,1,1,1,2,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0273121665760555,30546.302943873015,8,4,8,8_1,8_2,8_0_1 +23089,2,64.0,0.0,1,300,750.0,2000.0,0.0,78,78,0.0,0.0,1278.9004075290459,2940.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,1,123110,2,1,2,0,1,,276.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,209.608126207907,750.0,38293.53083564809,5,5,0,1,160.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07677537003882402,25529.020557098727,7,4,7,7_1,7_0,7_1_0 +23090,1,80.0,37.0,9,111,1320.0,0.0,0.0,0,77,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,2007.0,6,123111,2,2,0,0,1,,240.0,300.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1548.78693572548,1320.0,13770.959070429757,0,5,2,3,63.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09585389029544229,13770.959070429757,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +23091,2,54.0,0.0,6,111,1400.0,0.0,0.0,75,43,0.0,278.10872817214704,2387.2807607208856,1610.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,123112,2,1,2,0,1,,250.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1010.59772292641,1400.0,36274.383300116395,7,1,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04438393856842864,24182.922200077595,7,4,7,7_1,7_2,7_0_0 +23092,2,66.0,0.0,1,111,400.0,0.0,0.0,63,63,0.0,0.0,682.0802173488245,400.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,1,123113,2,2,0,1,1,637.0,0.0,288.0,43,2.0,2.0,2.0,3.0,1.8,2,2,1146.78824927817,400.0,36960.83148994943,4,1,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0108222673537193,20533.795272194126,5,3,5,5_0,5_4,5_1_0 +23093,2,55.0,0.0,2,112,1000.0,1650.0,0.0,37,38,0.0,0.0,1705.2005433720612,2650.0,0.0,3132.5316791006517,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,123114,2,1,3,0,1,,850.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,846.137209892864,1000.0,93835.74774278776,1,1,0,1,140.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028240836394930094,62557.16516185851,10,5,10,10_1,10_2,10_0_1 +23094,2,65.0,0.0,2,111,390.0,0.0,0.0,75,78,0.0,0.0,665.0282119151038,510.0,166.2707070475825,0.0,70,2,2,1,2,1,2,2,2,0,,2,,2,123115,2,2,0,1,1,324.0,0.0,283.0,41,0.0,5.0,4.0,2.0,1.5,2,2,345.566698360998,390.0,18955.94335294454,5,5,2,3,75.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02690449061300759,12637.295568629694,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +23095,1,43.0,228.0,2,111,0.0,0.0,400.0,0,68,0.0,0.0,252.12731616589753,400.0,0.0,478.69285902587234,60,2,2,1,2,1,2,2,2,0,,2,,2,123116,2,2,0,1,1,974.0,0.0,363.0,32,1.0,0.0,3.0,3.0,1.6,1,1,171.080182282613,0.0,18559.411963714912,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.021552406982615128,11599.63247732182,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +23096,2,42.0,0.0,7,111,910.0,,,0,52,0.0,0.0,,1050.0,193.98249155551292,,42,2,2,1,2,1,2,2,2,2,45.0,1,,5,123117,2,1,0,0,2,,875.0,,22,1.0,0.0,4.0,3.0,2.0,3,3,112.63256558137451,910.0,36382.249857521696,0,1,0,1,109.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.028860227284237677,18191.124928760848,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +23097,2,27.0,0.0,1,111,2600.0,0.0,0.0,55,43,0.0,437.0280014133739,4433.521412767359,2930.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,123118,1,2,3,0,1,,350.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,658.738911968695,2600.0,91712.8074578116,1,1,1,2,148.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03194755543109741,61141.87163854107,10,5,10,10_1,10_4,10_1_0 +23098,2,81.0,0.0,1,111,250.0,0.0,0.0,0,75,0.0,0.0,426.3001358430153,489.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,123119,1,3,0,1,2,353.0,0.0,586.0,11,0.0,2.0,1.0,1.0,1.0,1,1,883.130293705478,250.0,15653.388618381348,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03123924230858107,15653.388618381348,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +23099,1,41.0,321.0,2,111,270.0,0.0,0.0,56,64,0.0,0.0,460.40414671045653,382.0,155.18599324441035,0.0,71,1,2,2,1,1,2,2,2,1,15.0,2,,2,123120,1,3,0,1,1,783.0,0.0,353.0,43,2.0,0.0,4.0,4.0,2.1,2,2,248.075876367633,270.0,14460.177743046062,4,1,2,3,69.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.026417379287312342,6885.798925260029,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23100,1,42.0,308.0,7,111,160.0,229.0,0.0,0,53,0.0,0.0,272.8320869395298,389.0,0.0,434.7574269782117,50,2,2,2,2,1,2,2,2,0,,2,,5,123121,1,3,0,0,1,,0.0,426.0,32,1.0,2.0,2.0,2.0,1.5,2,1,780.172995042605,160.0,6060.0,0,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,1,0.06419141914191419,4040.0,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +23101,2,35.0,0.0,2,112,400.0,,,0,85,0.0,0.0,,620.0,304.8296295872346,,71,2,2,2,2,1,2,2,1,0,,1,,2,123122,2,3,0,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,125.11844140608954,400.0,14783.654669718346,0,6,0,1,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0419382090458294,14783.654669718346,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +23102,2,42.0,0.0,7,112,2400.0,0.0,0.0,55,63,0.0,397.2981831030672,4092.4813040929466,2820.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,123123,2,1,2,0,1,,200.0,,43,3.0,0.0,5.0,5.0,2.8,4,2,1240.96822216393,2400.0,51318.919877198015,1,1,1,2,130.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054950494023413385,18328.185670427865,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +23103,2,77.0,0.0,7,111,416.0,0.0,0.0,0,75,0.0,0.0,709.3634260427774,416.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,123124,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,992.604014967847,416.0,16147.795241033615,0,5,0,1,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02576203090208196,16147.795241033615,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +23104,2,62.0,0.0,1,112,450.0,1000.0,0.0,77,77,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,0,,1,,1,123125,2,1,2,0,1,,240.0,,41,1.0,1.0,7.0,3.0,2.0,3,3,150.129514138884,450.0,48716.47493167445,7,5,0,1,210.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029764058299243647,24358.237465837225,7,4,7,7_1,7_0,7_1_0 +23105,2,29.0,0.0,7,111,0.0,0.0,0.0,84,43,0.0,0.0,0.0,400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,,5,123126,1,1,0,1,1,170.0,59.0,550.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1617.84914583551,0.0,36628.04649392767,3,1,2,3,57.0,7,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010920593323651957,24418.697662618448,7,4,7,7_0,7_2,7_0_0 +23106,2,63.0,0.0,2,112,2300.0,0.0,0.0,0,78,0.0,132.4327277010224,3921.9612497557405,2451.0,70.66505049522257,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,123127,2,1,2,0,1,,140.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,151.115573233291,2300.0,10341.06678977754,0,5,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.23701616572314263,10341.06678977754,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +23107,2,66.0,0.0,2,111,321.0,1924.0,0.0,0,86,0.0,0.0,547.3693744224316,2245.0,0.0,3652.721788236154,41,0,0,0,0,0,0,0,0,0,,1,,2,123128,2,3,3,0,1,,226.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,633.578536817446,321.0,37278.21544759587,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.060222839882341624,37278.21544759587,9,5,9,9_1,9_4,9_0_1 +23108,2,55.0,0.0,2,120,600.0,0.0,0.0,0,56,0.0,0.0,1023.1203260232367,630.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123129,1,3,3,0,1,,117.0,340.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2881.25594442821,600.0,14076.906598780613,0,1,2,3,50.0,0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044754150748899095,14076.906598780613,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +23109,2,54.0,0.0,8,112,420.0,0.0,0.0,42,47,0.0,132.4327277010224,716.1842282162656,2067.0,2143.506531688418,0.0,44,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,123130,2,1,1,0,1,,114.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1469.87398183502,420.0,59797.75265007005,4,1,1,2,86.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034566516439101976,39865.16843338003,9,5,9,9_1,9_0,9_0_0 +23110,2,53.0,0.0,2,111,828.0,780.0,0.0,78,90,0.0,0.0,1411.9060499120667,1608.0,0.0,1480.8331573930354,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,123131,1,3,0,1,1,740.0,552.0,347.0,42,5.0,1.0,4.0,7.0,4.0,7,6,280.167719528323,828.0,44354.601792959744,7,1,2,3,88.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03625328455220699,11088.650448239936,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +23111,2,70.0,0.0,5,111,450.0,920.0,0.0,0,78,0.0,0.0,767.3402445174275,1370.0,0.0,1746.6237241046058,71,0,0,0,0,0,0,0,0,0,,2,,3,123132,2,1,0,0,1,,550.0,315.0,21,1.0,5.0,4.0,2.0,1.5,2,2,125.762126008337,450.0,9500.50091182342,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.14420292284747097,6333.667274548946,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +23112,2,74.0,0.0,2,120,360.0,0.0,0.0,78,78,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123133,2,2,2,0,1,,120.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1617.24210827163,360.0,15408.009468539247,5,5,0,1,96.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02336447162335043,10272.006312359497,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +23113,2,49.0,0.0,1,111,1700.0,2000.0,0.0,54,38,0.0,344.3250920226582,2898.840923732504,3960.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,3,2.0,1,,1,123134,2,2,5,0,1,,1620.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,826.466416040488,1700.0,67693.26696965419,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05849917099990469,27077.306787861675,7,4,7,7_1,7_4,7_1_0 +23114,2,56.0,0.0,1,111,411.0,1139.0,0.0,34,33,0.0,0.0,700.8374233259171,3230.0,0.0,2162.39611060342,10,2,2,2,2,1,2,2,2,0,,1,,1,123135,2,2,2,0,1,,200.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1338.32711088629,411.0,86839.00202957977,1,1,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.037195268537284346,57892.66801971985,10,5,10,10_1,10_3,10_1_0 +23115,2,64.0,0.0,7,120,360.0,,,0,77,0.0,0.0,,485.0,173.19865317456512,,71,0,0,0,0,0,0,0,0,0,,1,,5,123136,2,2,0,0,2,,600.0,,21,0.0,4.0,4.0,3.0,2.0,3,3,93.048993449177,360.0,40887.8059640556,0,6,0,1,78.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011861727196278583,20443.9029820278,5,3,5,5_1,5_1,5_0_0 +23116,0,40.0,0.0,7,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,70.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,5,123137,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,519.993371808354,0.0,9177.431272906237,0,1,5,0,25.0,4,4,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007627406615035642,9177.431272906237,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +23117,2,52.0,0.0,2,111,490.0,250.0,0.0,0,45,843.7462808292812,0.0,835.54826625231,1540.0,0.0,474.62601198494724,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,123138,2,1,0,1,2,,0.0,830.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1183.38798577074,490.0,40108.03868017161,0,1,2,3,55.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038396292879844474,40108.03868017161,9,5,9,9_0,9_4,9_0_1 +23118,2,55.0,0.0,2,111,500.0,900.0,0.0,52,62,0.0,0.0,852.6002716860306,4023.0,0.0,1708.65364314581,50,2,2,1,2,1,2,2,2,2,40.0,1,,2,123139,2,1,2,0,2,,244.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,428.216210466349,500.0,54014.38189359917,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.07448016359651678,27007.190946799587,7,4,7,7_1,7_3,7_0_1 +23119,1,28.0,120.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1436.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,123140,2,3,3,0,1,,480.0,321.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1366.81304785745,0.0,18366.507703076386,0,1,2,3,72.0,6,5,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07818579466576928,14128.082848520296,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +23120,0,28.0,0.0,5,111,500.0,,,0,67,0.0,0.0,,500.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,2,,3,123141,2,2,0,0,2,,300.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,124.42059698332203,500.0,19990.883581192007,0,1,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025011400720196992,19990.883581192007,5,3,5,5_0,5_2,5_0_0 +23121,2,70.0,0.0,2,111,270.0,0.0,0.0,0,75,2953.111982902484,0.0,460.40414671045653,3070.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,2,,2,123142,1,3,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,293.643880162353,270.0,25607.68629209685,0,5,0,1,73.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.11988587976991409,25607.68629209685,7,4,7,7_0,7_4,7_0_1 +23122,2,54.0,0.0,7,111,700.0,0.0,0.0,52,37,1265.6194212439218,0.0,1193.6403803604428,1960.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,123143,2,2,2,0,1,,300.0,,43,4.0,0.0,7.0,4.0,2.5,4,4,359.240279264108,700.0,137560.18986616025,1,1,0,1,145.0,8,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014248308336205337,55024.0759464641,10,5,10,10_1,10_3,10_0_0 +23123,2,82.0,0.0,2,111,343.0,0.0,0.0,77,72,1940.6164459073468,198.6490915515336,584.883786376617,2333.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,123144,2,2,2,0,1,,424.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,269.040635483042,343.0,20367.788939093807,5,5,0,1,103.0,6,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11454360642563682,13578.52595939587,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +23124,2,50.0,0.0,8,111,1109.0,0.0,0.0,56,53,0.0,0.0,1891.067402599616,1189.0,110.84713803172167,0.0,41,0,0,0,0,0,0,0,0,2,90.0,2,1999.0,6,123145,2,1,0,0,1,,0.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,753.196423083915,1109.0,97339.33668710402,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012215000024317245,38935.73467484161,9,5,9,9_0,9_4,9_0_0 +23125,2,70.0,0.0,2,111,450.0,0.0,0.0,75,74,0.0,0.0,767.3402445174275,450.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,123146,2,1,0,1,1,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,949.677867943596,450.0,68545.75512179823,6,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006564957949626491,45697.17008119882,10,5,10,10_0,10_4,10_0_1 +23126,2,60.0,0.0,5,111,800.0,0.0,0.0,71,77,0.0,264.8654554020448,1364.160434697649,1120.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,123147,2,1,2,0,1,,200.0,,41,1.0,1.0,7.0,3.0,2.0,3,3,1640.29353594856,800.0,69794.64426784554,5,5,0,1,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0160470765593684,34897.32213392277,9,5,9,9_1,9_3,9_0_0 +23127,2,49.0,0.0,8,111,1085.0,0.0,0.0,0,37,0.0,0.0,1850.1425895586863,1085.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,2003.0,6,123148,2,1,0,0,1,,0.0,888.0,32,1.0,0.0,3.0,2.0,1.3,2,1,1996.66069553755,1085.0,90523.98524310713,0,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011985773682921416,69633.8348023901,10,5,10,10_0,10_3,10_0_0 +23128,2,59.0,0.0,7,111,1440.0,,,45,54,0.0,0.0,,1500.0,83.13535352379125,,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,123149,2,1,0,0,1,,480.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,95.49884625505301,1440.0,37639.681379223555,1,1,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039851559445664535,18819.840689611778,5,3,5,5_1,5_2,5_0_0 +23129,1,66.0,95.0,2,111,176.0,74.0,0.0,0,77,0.0,0.0,300.1152956334828,250.0,0.0,140.4892995475444,71,2,2,2,2,1,2,2,2,0,,2,,2,123150,2,1,0,1,1,390.0,0.0,221.0,11,0.0,0.0,2.0,1.0,1.0,1,1,271.399431969731,176.0,11188.200049865702,0,5,2,3,45.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.022344970494427376,11188.200049865702,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +23130,2,45.0,0.0,8,300,570.0,0.0,0.0,42,38,1265.6194212439218,0.0,971.9643097220749,1820.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,123151,2,1,1,0,1,,396.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,841.119579677313,570.0,59934.455712024224,1,1,1,2,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03036650585007092,33296.919840013456,8,4,8,8_1,8_0,8_0_0 +23131,2,90.0,0.0,2,111,1200.0,450.0,0.0,74,74,0.0,0.0,2046.2406520464733,1650.0,0.0,854.326821572905,10,0,0,0,0,0,0,0,0,0,,2,,2,123152,2,1,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,857.186874987743,1200.0,69733.22915301559,5,5,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023661603227629193,46488.81943534373,10,5,10,10_0,10_4,10_0_1 +23132,2,38.0,0.0,7,111,0.0,,,0,54,0.0,0.0,,599.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,2,,5,123153,2,1,0,0,2,,176.0,495.0,12,1.0,1.0,2.0,1.0,1.0,1,1,148.27372761507482,0.0,31696.750922016217,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018897835979268814,31696.750922016217,8,4,8,8_0,8_2,8_0_0 +23133,2,99.0,0.0,2,112,400.0,1200.0,0.0,77,75,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,41,2,2,2,2,1,2,2,2,0,,2,,2,123154,2,3,0,0,1,,380.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,1835.55459562673,400.0,29250.82906947654,5,5,0,1,37.0,8,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.054699304289792326,19500.552712984358,5,3,5,5_0,5_1,5_0_1 +23134,2,56.0,0.0,6,400,468.0,0.0,0.0,62,63,1503.977745578194,0.0,798.0338542981247,2026.0,182.89777775234077,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,123155,2,1,1,0,1,,258.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,1039.58822814731,468.0,36413.60363143411,1,1,0,1,88.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055638547079999844,24275.735754289406,7,4,7,7_1,7_0,7_0_0 +23135,2,65.0,0.0,9,111,1550.0,0.0,0.0,0,31,0.0,0.0,2643.0608422266946,1550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,7.0,1,2012.0,6,123156,2,1,1,0,1,,190.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1007.21174844897,1550.0,113524.36872891337,0,1,0,1,94.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013653456234592852,113524.36872891337,10,5,10,10_1,10_2,10_0_0 +23136,2,42.0,0.0,7,111,1639.0,0.0,0.0,34,38,0.0,0.0,2794.8236905868084,1639.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,123157,2,1,1,0,1,,385.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1422.06796602923,1639.0,86551.09618073788,1,1,1,2,115.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01893679077821735,41214.80770511327,9,5,9,9_1,9_2,9_0_0 +23137,2,41.0,0.0,2,111,550.0,600.0,0.0,46,22,0.0,0.0,937.8602988546337,1150.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,123158,2,1,2,0,1,,500.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,684.809865356649,550.0,35468.696863398975,1,1,0,1,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03242295606260949,14187.478745359589,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +23138,2,41.0,0.0,8,112,900.0,0.0,0.0,85,12,0.0,529.7309108040896,1534.680489034855,1390.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,123159,2,1,1,0,1,,240.0,,42,2.0,0.0,6.0,5.0,2.8,4,3,938.480115232898,900.0,50759.439864470616,6,1,1,2,140.0,9,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027384068928091917,18128.37138016808,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +23139,2,73.0,0.0,2,111,354.0,859.0,0.0,78,78,0.0,0.0,603.6409923537096,1213.0,0.0,1630.8149771802787,70,0,0,0,0,0,0,0,0,0,,1,,2,123160,2,1,1,0,1,,168.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,306.104314961579,354.0,28590.068434102017,5,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04242732061995146,19060.045622734677,5,3,5,5_1,5_3,5_0_1 +23140,2,26.0,0.0,9,111,490.0,300.0,0.0,84,46,0.0,0.0,835.54826625231,790.0,0.0,569.5512143819367,31,0,0,0,0,0,0,0,0,2,65.0,2,2004.0,6,123161,2,1,0,1,1,,0.0,530.0,42,1.0,0.0,3.0,2.0,1.5,2,2,2024.43639617282,490.0,17291.778234448975,3,1,2,3,55.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04568645221381272,11527.852156299317,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +23141,2,66.0,0.0,1,111,597.0,90.0,0.0,75,74,0.0,0.0,1018.0047243931206,687.0,0.0,170.865364314581,50,2,2,2,2,2,2,2,1,0,,2,,1,123162,2,3,0,0,1,,0.0,213.0,41,0.0,0.0,2.0,2.0,1.5,2,2,1206.98720905602,597.0,44291.626403473005,5,5,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.015510832538453156,29527.75093564867,8,4,8,8_0,8_4,8_1_0 +23142,2,39.0,0.0,1,120,530.0,0.0,0.0,55,38,0.0,0.0,903.7562879871924,660.0,180.1265993015477,0.0,12,2,2,2,1,1,1,2,2,2,60.0,1,,1,123163,2,2,3,0,1,,295.0,450.0,43,2.0,0.0,3.0,4.0,2.1,2,2,560.402137995176,530.0,49194.92009711774,1,1,2,3,60.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.013416019351125411,23426.152427198922,6,3,6,6_1,6_0,6_1_0 +23143,2,35.0,0.0,2,111,660.0,0.0,0.0,55,53,1898.4291318658827,0.0,1125.4323586255605,2460.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,123164,2,2,1,0,1,,550.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1108.56548047909,660.0,43287.7899966343,4,1,1,2,102.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.056828958008511614,24048.77222035239,6,3,6,6_1,6_3,6_0_1 +23144,2,48.0,0.0,2,111,232.0,350.0,0.0,0,46,0.0,0.0,395.6065260623182,834.0,0.0,664.4764167789261,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,123165,1,1,0,1,2,650.0,0.0,770.0,22,1.0,0.0,3.0,2.0,1.5,2,2,1141.67825574008,232.0,45885.277283168,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018175764632590213,30590.18485544533,8,4,8,8_0,8_4,8_0_1 +23145,2,57.0,0.0,1,221,990.0,0.0,0.0,74,74,0.0,0.0,1688.1485379383405,1110.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,123166,2,2,1,0,1,,0.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,531.472335214327,990.0,73551.81081422138,5,5,1,2,90.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015091402750146561,49034.54054281425,10,5,10,10_1,10_1,10_1_0 +23146,2,63.0,0.0,1,300,979.0,0.0,0.0,77,78,0.0,264.8654554020448,1669.391331961248,1269.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123167,2,1,2,0,1,,127.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1210.53935669916,979.0,30002.708756089745,5,5,0,1,130.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04229618099873823,20001.805837393164,5,3,5,5_1,5_0,5_1_0 +23147,2,55.0,0.0,9,221,900.0,,,0,56,0.0,0.0,,900.0,0.0,,31,0,0,0,0,0,0,0,0,1,45.0,1,2005.0,6,123168,2,1,0,0,1,,1000.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,114.70019679619473,900.0,22155.0,0,1,0,1,62.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040622884224779957,22155.0,6,3,6,6_1,6_1,6_0_0 +23148,2,53.0,0.0,6,111,1200.0,0.0,0.0,38,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,,4,123169,2,1,1,0,1,,800.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,769.037619212831,1200.0,176920.5489879674,1,1,1,2,155.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006782705609180614,117947.03265864494,10,5,10,10_1,10_4,10_0_0 +23149,2,67.0,0.0,1,400,1380.0,0.0,0.0,75,74,0.0,119.18945493092015,2353.1767498534446,1502.0,44.33885521268867,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123170,2,1,1,0,1,,346.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1314.10625377072,1380.0,42957.9480251969,5,5,0,1,146.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0349644261201444,28638.632016797932,8,4,8,8_1,8_0,8_1_0 +23151,2,81.0,0.0,5,111,300.0,500.0,0.0,0,75,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,70,2,2,1,2,1,2,2,2,0,,1,,3,123172,2,1,2,0,1,,150.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,293.077270888248,300.0,25382.0285812349,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.031518363374290946,25382.0285812349,7,4,7,7_1,7_3,7_0_0 +23152,2,60.0,0.0,5,111,0.0,0.0,0.0,0,77,0.0,225.13563709173806,0.0,1182.0,42.95326598729215,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,123173,2,1,1,0,1,,203.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1403.24776213387,0.0,12250.01795770831,0,6,0,1,90.0,6,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09648965447076979,12250.01795770831,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +23153,0,66.0,0.0,1,221,600.0,,,0,78,0.0,0.0,,732.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,1,123174,2,1,0,0,2,,240.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,107.78967236959473,600.0,8378.244601286671,0,5,5,0,70.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08736913695353136,8378.244601286671,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +23154,2,40.0,0.0,2,112,620.0,1100.0,0.0,68,65,0.0,0.0,1057.224336890678,1720.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,123175,2,1,3,0,1,,370.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,803.614608412606,620.0,55401.763475415064,1,1,1,2,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031045943163221918,26381.79213115003,7,4,7,7_1,7_1,7_0_1 +23155,2,50.0,0.0,1,111,420.0,65.0,0.0,54,46,1708.5862186792945,0.0,716.1842282162656,2105.0,0.0,123.40276311608629,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,123176,2,2,2,0,1,,456.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,367.046428179072,420.0,72868.77784308023,1,1,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028887543640885905,36434.388921540114,9,5,9,9_1,9_4,9_1_0 +23156,2,36.0,0.0,5,111,400.0,400.0,0.0,56,64,0.0,662.163638505112,682.0802173488245,1300.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,1,10.0,1,,3,123177,2,1,2,0,1,,329.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,240.577013656951,400.0,29670.97656616751,1,1,1,2,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04381385955062672,12362.906902569795,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +23157,2,35.0,0.0,1,112,1200.0,0.0,0.0,54,64,0.0,331.081819252556,2046.2406520464733,1570.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,123178,2,1,1,0,1,,359.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1365.45531619082,1200.0,30725.074734316633,1,1,1,2,140.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051098329738038926,14630.987968722206,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +23158,2,88.0,0.0,1,111,800.0,1750.0,0.0,77,78,0.0,0.0,1364.160434697649,2550.0,0.0,3322.382083894631,70,0,0,0,0,0,0,0,0,0,,1,,1,123179,1,3,4,0,2,,80.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1234.66233866853,800.0,26388.514437256483,5,5,0,1,95.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09663295014439298,17592.34295817099,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +23159,2,29.0,0.0,8,120,0.0,0.0,0.0,62,62,0.0,0.0,0.0,245.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,2,2001.0,6,123180,2,2,0,0,1,,0.0,600.0,43,2.0,0.0,5.0,4.0,2.1,2,2,819.376481279111,0.0,75428.98286357358,1,1,2,3,100.0,0,2,4,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0032480883434836327,35918.563268368365,9,5,9,9_0,9_1,9_0_0 +23160,1,40.0,142.0,9,112,2340.0,0.0,0.0,56,63,0.0,0.0,3990.169271490623,2490.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,123181,2,1,1,0,1,,420.0,,43,2.0,0.0,5.0,6.0,2.6999999999999997,2,2,948.551520347312,2340.0,34029.44264971544,1,1,1,2,140.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07317193013212109,12603.497277672386,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +23161,2,52.0,0.0,6,111,480.0,,,0,85,0.0,0.0,,2746.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,123182,2,1,0,0,2,,600.0,,31,0.0,3.0,6.0,2.0,1.5,2,1,114.7488833325042,480.0,12788.725259893868,0,6,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21472038410361383,8525.816839929246,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23162,2,60.0,0.0,7,211,1500.0,,,77,34,0.0,0.0,,1630.0,180.1265993015477,,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,123183,2,2,0,0,2,,1000.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,82.23153982982286,1500.0,71295.86394459759,6,1,0,1,98.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022862476303907846,47530.57596306506,10,5,10,10_1,10_2,10_0_0 +23163,2,84.0,0.0,1,211,596.0,0.0,0.0,77,74,0.0,0.0,1016.2995238497484,716.0,166.2707070475825,0.0,10,2,2,2,1,2,2,2,2,0,,1,,1,123184,1,2,3,0,2,,400.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1568.81553193228,596.0,76448.13037970164,5,5,0,1,180.0,3,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.009365827476012558,50965.42025313443,10,5,10,10_1,10_1,10_1_0 +23164,2,40.0,0.0,2,111,720.0,516.0,0.0,43,85,0.0,0.0,1227.744391227884,1236.0,0.0,979.6280887369311,50,0,0,0,0,0,0,0,0,0,,2,,2,123185,1,3,0,0,1,,0.0,309.0,42,1.0,0.0,3.0,4.0,2.1,2,2,3011.18989203659,720.0,32351.892319246515,1,7,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03820487493600766,15405.663009165006,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +23165,1,36.0,26.0,9,112,354.0,879.0,0.0,0,53,0.0,0.0,603.6409923537096,1233.0,0.0,1668.7850581390746,60,2,2,1,2,2,2,2,1,2,20.0,1,2009.0,6,123186,2,1,1,0,1,,260.0,490.0,32,1.0,0.0,4.0,2.0,1.3,1,1,391.295000913905,354.0,21805.584700264375,0,1,2,3,85.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.05654514735323978,16773.526692511055,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +23166,2,46.0,0.0,5,112,710.0,1752.0,0.0,46,46,0.0,0.0,1210.6923857941633,2462.0,0.0,3326.17909199051,20,2,2,1,2,2,2,2,1,0,,1,,3,123187,2,1,2,0,1,,420.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,493.825723366983,710.0,63693.75156364699,1,1,1,2,139.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03865371311249907,26539.063151519582,7,4,7,7_1,7_1,7_0_0 +23167,1,41.0,459.0,9,120,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1970.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,123188,2,1,1,0,1,,303.0,590.0,31,0.0,2.0,4.0,4.0,2.1,2,1,776.033243239202,0.0,11170.528043097604,0,6,2,3,87.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.17635692712103127,5319.299068141716,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +23168,2,52.0,0.0,7,111,1800.0,0.0,0.0,42,62,0.0,238.3789098618403,3069.36097806971,1980.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,123189,2,1,1,0,1,,280.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,1081.99856650389,1800.0,49583.9564490755,1,1,0,1,165.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03993227127878613,19833.5825796302,5,3,5,5_1,5_3,5_0_0 +23169,2,66.0,0.0,9,111,700.0,,,77,77,0.0,0.0,,800.0,138.5589225396521,,60,0,0,0,0,0,0,0,0,0,,8,2009.0,6,123190,2,1,0,0,1,,720.0,600.0,41,0.0,4.0,3.0,2.0,1.5,2,2,241.7059091093056,700.0,30100.35755769792,7,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0265777573726996,20066.90503846528,5,3,5,5_0,5_2,5_0_0 +23170,2,43.0,0.0,1,400,770.0,0.0,0.0,52,63,0.0,0.0,1313.0044183964872,805.0,48.49562288887823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123191,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1144.60549874225,770.0,36274.12178585971,4,1,0,1,140.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.022192129274754852,15771.357298199875,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +23171,1,50.0,91.0,9,111,708.0,,,68,68,0.0,0.0,,892.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,1,15.0,2,2005.0,6,123192,2,1,0,0,2,,660.0,434.0,43,4.0,1.0,5.0,5.0,2.8,4,4,104.1075427374189,708.0,56138.97800269782,1,1,2,3,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01588913855818918,20049.635000963506,5,3,5,5_0,5_2,5_0_0 +23172,2,45.0,0.0,9,111,300.0,,,0,54,0.0,0.0,,399.0,137.1733333142556,,31,0,0,0,0,0,0,0,0,2,1.0,1,2012.0,6,123193,2,2,0,0,2,,180.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,206.10452312330744,300.0,16689.898306102885,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023906676522654442,11126.598870735257,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +23173,2,71.0,0.0,6,112,400.0,0.0,0.0,0,72,1898.4291318658827,0.0,682.0802173488245,2260.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,123194,2,1,1,0,1,,400.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1461.73079185258,400.0,27514.124335856024,0,5,0,1,99.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08213963026454742,27514.124335856024,7,4,7,7_1,7_0,7_0_0 +23174,2,51.0,0.0,2,111,273.0,190.0,0.0,0,64,759.3716527463531,0.0,465.5197483405727,1183.0,0.0,360.7157691085599,71,2,1,2,2,2,2,2,1,2,10.0,2,,2,123195,2,2,0,1,1,720.0,143.0,325.0,12,1.0,0.0,4.0,1.0,1.0,1,1,477.531351362901,273.0,24962.087852807203,0,1,2,3,82.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04739186910068348,24962.087852807203,7,4,7,7_0,7_3,7_0_1 +23175,2,39.0,0.0,9,112,1200.0,0.0,0.0,62,42,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,123196,2,1,1,0,1,,160.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,2164.59595398221,1200.0,58639.06907095834,1,1,1,2,155.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020464172078651116,27923.366224265876,7,4,7,7_1,7_0,7_0_0 +23176,1,43.0,340.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1730.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,123197,1,3,0,1,1,,0.0,400.0,32,1.0,0.0,4.0,3.0,2.0,3,2,283.085669384459,0.0,11647.970678856227,0,4,2,3,60.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.14852372552245105,5823.985339428114,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23177,2,80.0,0.0,1,400,695.0,0.0,0.0,86,75,843.7462808292812,0.0,1185.1143776435824,1495.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123198,2,2,2,0,1,,208.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1196.01002481494,695.0,60438.61316552454,6,5,0,1,96.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024735842232276428,40292.40877701636,9,5,9,9_1,9_0,9_1_0 +23178,2,46.0,0.0,5,112,1740.0,0.0,0.0,56,65,0.0,0.0,2967.0489454673866,1760.0,27.711784507930417,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,123199,2,1,1,0,1,,280.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,786.143386097406,1740.0,58583.793330298184,1,1,0,1,120.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030042438359650717,32546.551850165655,8,4,8,8_1,8_0,8_0_0 +23179,2,67.0,0.0,1,111,500.0,1300.0,0.0,75,75,0.0,0.0,852.6002716860306,1800.0,0.0,2468.055262321726,41,0,0,0,0,0,0,0,0,0,,1,,1,123200,2,2,1,0,1,,250.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1122.1618651542,500.0,24117.285464071887,6,5,0,1,149.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07463526534449759,16078.190309381258,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +23180,2,57.0,0.0,5,111,327.0,0.0,0.0,55,77,0.0,0.0,557.600577682664,327.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,123201,1,1,0,1,2,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1680.74047015185,327.0,41990.96939377222,1,5,1,2,72.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007787388686685051,27993.979595848145,7,4,7,7_0,7_3,7_0_0 +23181,2,46.0,0.0,2,112,600.0,0.0,0.0,69,22,0.0,0.0,1023.1203260232367,950.0,484.95622888878233,0.0,10,2,2,2,1,2,2,2,2,0,,1,,2,123202,1,1,3,0,1,,180.0,400.0,43,2.0,0.0,6.0,3.0,1.8,2,2,1671.31789154812,600.0,65434.222847676734,1,1,2,3,130.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.014518396622689164,36352.346026487074,9,5,9,9_1,9_0,9_0_1 +23182,1,41.0,54.0,2,111,0.0,0.0,800.0,68,63,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,123203,1,1,0,0,2,,0.0,580.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2457.86004488464,0.0,31957.102540689288,1,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.025033558626956318,21304.735027126193,6,3,6,6_0,6_3,6_0_1 +23183,1,38.0,285.0,5,111,0.0,0.0,0.0,81,63,0.0,0.0,0.0,247.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,123204,1,2,0,1,1,800.0,0.0,241.0,43,2.0,0.0,2.0,2.0,1.5,2,2,64.7357631136679,0.0,1454.7921279995694,4,4,2,3,40.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1697837067207949,969.8614186663796,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +23184,1,34.0,260.0,2,111,0.0,0.0,1080.0,0,43,0.0,0.0,680.7437536479233,1080.0,0.0,1292.4707193698553,33,2,2,2,2,2,1,2,2,2,17.0,2,,2,123205,1,3,0,0,2,,0.0,415.0,32,1.0,0.0,3.0,3.0,1.6,1,1,3108.9591882289,0.0,24061.73062562627,0,1,2,3,60.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.044884552021780856,15038.581641016419,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +23185,2,43.0,0.0,5,111,643.0,1350.0,0.0,85,38,0.0,0.0,1096.4439493882353,1993.0,0.0,2562.980464718715,31,2,2,2,2,1,2,2,2,2,120.0,1,,3,123206,1,3,2,0,2,,510.0,746.0,42,1.0,0.0,5.0,4.0,2.5,4,3,228.481568911651,643.0,65391.161528007986,6,1,2,3,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03047812507729151,26156.464611203195,7,4,7,7_1,7_2,7_0_0 +23186,1,27.0,153.0,5,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,271.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,123207,1,1,0,0,1,,0.0,402.0,43,2.0,0.0,3.0,2.0,1.5,2,2,191.033780158296,0.0,20234.157625215656,4,1,2,3,79.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013393194074078074,13489.438416810437,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +23187,2,73.0,0.0,7,111,672.0,,,85,78,0.0,0.0,,756.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,5,123208,2,1,0,0,2,,300.0,,41,0.0,4.0,4.0,3.0,1.8,2,2,81.72843932346042,672.0,21056.347732023067,6,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035903662383493726,11697.970962235036,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +23188,2,68.0,0.0,7,111,1768.0,,,0,77,0.0,0.0,,2320.0,764.8452524188796,,50,0,0,0,0,0,0,0,0,0,,2,,5,123209,2,1,0,0,2,,2148.0,,21,5.0,1.0,6.0,7.0,3.8,6,6,138.28376696881463,1768.0,81117.34006084558,0,5,1,2,136.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028600543339559498,21346.66843706463,6,3,6,6_0,6_2,6_0_0 +23189,2,83.0,0.0,5,111,300.0,400.0,0.0,75,78,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,70,0,0,0,0,0,0,0,0,0,,2,,3,123210,2,1,0,1,1,45.0,0.0,474.0,41,0.0,2.0,4.0,2.0,1.5,2,2,764.572876143366,300.0,26028.605882965163,5,5,2,3,118.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026893488001142857,17352.403921976776,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +23190,2,66.0,0.0,6,111,960.0,,,85,72,0.0,0.0,,1212.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,123211,2,1,0,0,2,,1000.0,,41,0.0,0.0,6.0,3.0,2.0,3,3,85.86880191144273,960.0,9447.12,6,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1282930670934634,4723.56,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23191,2,74.0,0.0,8,111,442.0,511.0,0.0,74,33,0.0,0.0,753.6986401704511,953.0,0.0,970.1355684972322,20,0,0,0,0,0,0,0,0,2,45.0,2,2002.0,6,123212,2,2,0,0,1,,201.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2047.78923067392,442.0,89718.68442172352,5,1,0,1,97.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010622090661967518,59812.45628114901,10,5,10,10_0,10_2,10_0_0 +23192,2,66.0,0.0,2,111,500.0,1200.0,0.0,0,78,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,123213,2,2,2,0,1,,150.0,,21,0.0,2.0,4.0,2.0,1.5,2,2,486.232530915433,500.0,43007.132950870604,0,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03952832666018455,28671.421967247068,8,4,8,8_1,8_2,8_0_1 +23193,1,58.0,600.0,1,111,1200.0,0.0,0.0,85,69,0.0,860.8127300566456,2046.2406520464733,2400.0,762.0740739680865,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,123214,1,3,4,0,1,,570.0,580.0,42,2.0,0.0,4.0,8.0,4.1,6,4,1072.09945314852,1200.0,29350.543760598666,6,1,2,3,60.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0.08177020567577542,7158.669209902115,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +23194,2,62.0,0.0,1,111,360.0,0.0,0.0,0,63,0.0,0.0,613.872195613942,360.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,123215,2,1,0,0,2,,0.0,,12,1.0,3.0,1.0,1.0,1.0,1,1,1180.633494534,360.0,37233.82280006958,0,1,0,1,9.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009668628492246228,37233.82280006958,9,5,9,9_0,9_4,9_1_0 +23195,2,68.0,0.0,2,111,549.0,0.0,0.0,75,74,3164.0485531098047,0.0,936.1550983112616,3549.0,0.0,0.0,20,1,2,2,1,1,2,2,2,0,,1,,2,123216,2,2,5,0,1,,361.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,455.799649096995,549.0,70245.9192347474,5,5,0,1,200.0,7,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.05052250776504145,46830.612823164935,10,5,10,10_1,10_2,10_0_1 +23196,2,47.0,0.0,2,111,1000.0,0.0,0.0,34,37,1054.6828510366015,0.0,1705.2005433720612,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,123217,1,1,1,0,1,,476.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1382.41947521393,1000.0,91510.8093169635,1,1,0,1,130.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021855341624973008,36604.3237267854,9,5,9,9_1,9_3,9_0_1 +23197,2,41.0,0.0,9,111,300.0,1200.0,0.0,56,62,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,50,2,2,2,2,1,2,2,2,1,5.0,1,2010.0,6,123218,2,1,1,0,1,,700.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,168.995628074902,300.0,28826.88456027771,1,1,1,2,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05203475931863063,13727.087885846528,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +23198,2,63.0,0.0,1,111,0.0,0.0,1900.0,77,75,0.0,0.0,1197.6047517880133,1900.0,0.0,2273.7910803728937,50,0,0,0,0,0,0,0,0,0,,1,,1,123219,2,1,2,0,1,,480.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1028.39987712032,0.0,52003.80858838246,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036535785581374824,34669.205725588305,9,5,9,9_1,9_4,9_1_0 +23199,2,32.0,0.0,5,111,700.0,0.0,0.0,0,21,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,123220,2,1,1,0,1,,400.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,1944.78837329956,700.0,15826.284522514943,0,4,0,1,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04423021707995703,9891.427826571839,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +23200,1,62.0,230.0,2,211,400.0,240.0,0.0,85,78,0.0,0.0,682.0802173488245,1000.0,498.81212114274757,455.6409715055494,60,2,2,2,2,1,2,2,2,0,,2,,2,123221,2,1,0,1,1,,160.0,342.0,41,0.0,5.0,4.0,2.0,1.5,2,2,3040.69867834709,400.0,15292.897563140283,6,5,2,3,80.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0653898318399942,10195.265042093522,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +23201,2,81.0,0.0,2,111,160.0,,,77,78,0.0,0.0,,270.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,2,123222,2,2,0,0,2,,200.0,245.0,41,0.0,4.0,3.0,2.0,1.5,2,2,131.74364037218902,160.0,20331.956834532375,5,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01327958750834176,13554.63788968825,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +23202,1,35.0,270.0,2,111,350.0,170.0,0.0,0,68,0.0,0.0,596.8201901802214,520.0,0.0,322.74568814976413,41,2,2,2,1,1,2,2,2,0,,2,,2,123223,1,1,0,1,1,856.0,0.0,296.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1417.05212653734,350.0,7279.365777080063,0,4,2,3,62.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.07143479472308989,7279.365777080063,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23203,2,33.0,0.0,2,111,700.0,0.0,0.0,0,37,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,12.0,2,,2,123224,2,2,0,0,1,,0.0,753.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1128.74128511224,700.0,30885.778059516157,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022664153017324568,30885.778059516157,8,4,8,8_0,8_4,8_0_1 +23204,2,31.0,0.0,9,120,1600.0,0.0,0.0,54,37,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,123225,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1197.93110715237,1600.0,53973.68632244301,1,1,1,2,167.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029644074900526066,29985.381290246118,8,4,8,8_1,8_0,8_0_0 +23205,0,70.0,0.0,1,400,1000.0,0.0,0.0,0,77,0.0,927.0290939071567,1705.2005433720612,1730.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123226,2,1,4,0,1,,100.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2024.75118592152,1000.0,21164.4014233711,0,5,5,0,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08174103133810448,21164.4014233711,5,3,5,5_1,5_0,5_1_0 +23206,2,33.0,0.0,9,120,1300.0,0.0,0.0,55,48,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,123227,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,4523.36382939316,1300.0,33968.63202428004,1,1,1,2,100.0,0,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03827060209757014,16175.539059180972,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23207,2,34.0,0.0,9,120,160.0,,,42,53,0.0,0.0,,181.0,29.09737373332694,,30,2,2,1,2,1,2,2,2,2,5.0,1,2009.0,6,123228,2,1,0,0,1,,150.0,850.0,43,2.0,0.0,4.0,3.0,1.8,2,2,146.2205917404708,160.0,53921.3500565518,1,1,2,3,100.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0033567408792652682,29956.30558697322,8,4,8,8_1,8_1,8_0_0 +23208,2,49.0,0.0,1,111,1080.0,1020.0,0.0,67,48,0.0,463.51454695357836,1841.6165868418261,2450.0,0.0,1936.4741288985847,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,123229,2,2,1,0,1,,630.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,248.156797926033,1080.0,40541.44057707583,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0604319916886563,16216.576230830333,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +23209,1,49.0,100.0,1,112,936.0,120.0,0.0,85,63,0.0,304.5952737123515,1596.0677085962493,1286.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,1,,1,123230,2,1,1,0,1,,762.0,,42,1.0,1.0,8.0,4.0,2.3,3,3,760.283915206023,936.0,14152.509675339636,6,4,1,2,150.0,6,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09086727580485743,6153.265076234625,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +23210,2,44.0,0.0,7,111,840.0,,,42,37,0.0,0.0,,966.0,174.58424239996165,,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,123231,2,1,0,0,2,,840.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,83.30388857658967,840.0,66097.89260569103,1,1,1,2,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014614686821601138,28738.214176387406,8,4,8,8_1,8_3,8_0_0 +23211,2,50.0,0.0,5,111,250.0,0.0,0.0,0,43,0.0,0.0,426.3001358430153,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,3,123232,1,3,0,1,2,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,711.166288301776,250.0,22975.362826858112,0,1,2,3,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010881220979359287,22975.362826858112,6,3,6,6_0,6_4,6_0_0 +23212,2,77.0,0.0,1,111,451.0,0.0,0.0,0,77,2636.7071275915036,692.6231658763471,769.0454450607996,3719.0,339.46936022214766,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,123233,2,1,1,0,2,,265.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,403.886925300698,451.0,15354.770200262203,0,5,0,1,120.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.2422048621695747,15354.770200262203,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +23213,2,45.0,0.0,1,111,720.0,920.0,0.0,55,62,0.0,0.0,1227.744391227884,1640.0,0.0,1746.6237241046058,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,123234,1,2,5,0,2,,650.0,575.0,43,3.0,2.0,5.0,3.0,2.0,3,3,254.313082486063,720.0,37825.99565621874,4,1,2,3,120.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043356426487887505,18912.99782810937,5,3,5,5_1,5_2,5_1_0 +23214,2,65.0,0.0,2,111,480.0,0.0,0.0,0,75,0.0,0.0,818.4962608185893,769.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,123235,1,1,0,1,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1076.86366760334,480.0,10192.977800484065,0,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07544409642131078,10192.977800484065,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +23215,2,93.0,0.0,1,112,800.0,0.0,0.0,0,78,0.0,0.0,1364.160434697649,830.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123236,2,2,2,0,1,,550.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,1641.56096820038,800.0,13082.743705380426,0,5,0,1,125.0,9,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0634423496088709,13082.743705380426,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +23216,2,62.0,0.0,5,111,200.0,200.0,0.0,0,77,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,3,123237,2,1,0,1,1,758.0,250.0,410.0,11,0.0,1.0,2.0,1.0,1.0,1,1,864.45878185639,200.0,27879.310708531284,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01434755701752687,27879.310708531284,7,4,7,7_0,7_4,7_0_0 +23217,2,72.0,0.0,1,300,618.0,0.0,0.0,22,22,0.0,0.0,1053.8139358039339,2138.0,242.47811444439117,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123238,2,1,4,0,2,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1553.98675451896,618.0,12012.094381400068,1,1,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1779872794964508,8008.062920933378,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +23218,2,62.0,0.0,5,111,650.0,,,0,77,0.0,0.0,,909.0,358.86760937769895,,50,0,0,0,0,0,0,0,0,0,,1,,3,123239,1,2,0,0,2,,220.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,149.66800569258092,650.0,18521.77530101778,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04907736894692001,18521.77530101778,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +23219,2,28.0,0.0,2,111,250.0,270.0,0.0,85,47,0.0,0.0,426.3001358430153,520.0,0.0,512.596092943743,42,1,2,2,2,2,2,2,1,3,30.0,2,,2,123240,2,3,0,1,1,552.0,0.0,301.0,42,1.0,0.0,3.0,3.0,1.8,2,2,814.136331101637,250.0,25144.815551702606,6,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020680207374390136,13969.341973168113,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +23220,0,35.0,0.0,1,111,660.0,1100.0,0.0,56,53,0.0,0.0,1125.4323586255605,1760.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,2,,1,123241,2,2,0,0,1,800.0,0.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,703.549702498202,660.0,61998.233800598246,1,1,5,0,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02838790546292977,29522.968476475355,8,4,8,8_0,8_4,8_1_0 +23221,2,52.0,0.0,1,112,800.0,0.0,0.0,0,63,0.0,0.0,1364.160434697649,866.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123242,2,2,3,0,1,,300.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1673.37893062583,800.0,16360.580472066544,0,4,0,1,130.0,9,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05293210723657248,16360.580472066544,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +23222,2,49.0,0.0,9,120,800.0,0.0,0.0,22,53,0.0,264.8654554020448,1364.160434697649,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,123243,2,1,1,0,1,,166.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,994.429852803853,800.0,50068.363691985716,1,1,1,2,95.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019972691860909903,33378.909127990475,8,4,8,8_1,8_0,8_0_0 +23223,1,30.0,100.0,1,120,600.0,0.0,0.0,69,63,1423.821848899412,0.0,1023.1203260232367,1983.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,123244,2,1,2,0,1,,550.0,450.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1831.10650140482,600.0,35224.47830414043,4,1,2,3,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05629607862118174,16773.561097209727,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +23224,1,63.0,270.0,5,111,363.0,120.0,0.0,0,86,0.0,0.0,618.9877972440582,483.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,3,123245,2,1,0,1,1,803.0,185.0,390.0,11,0.0,2.0,4.0,1.0,1.0,1,1,424.071107300234,363.0,9579.698500036844,0,7,2,3,140.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05041912331563904,9579.698500036844,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +23225,2,67.0,0.0,2,111,364.0,,,0,77,0.0,0.0,,502.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,,2,123246,2,2,0,0,2,,590.0,404.0,11,0.0,4.0,5.0,1.0,1.0,1,1,121.04989078651482,364.0,25062.209778703327,0,5,2,3,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020030157134291314,25062.209778703327,7,4,7,7_0,7_2,7_0_1 +23226,1,34.0,307.0,1,111,343.0,1580.0,0.0,85,63,0.0,0.0,584.883786376617,1923.0,0.0,2999.6363957448666,71,0,0,0,0,0,0,0,0,0,,2,,1,123247,1,3,0,0,1,,0.0,247.0,42,1.0,1.0,3.0,4.0,2.1,2,2,273.73392250812,343.0,11647.704116043387,6,4,2,3,64.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.16509691359272136,5546.52576954447,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +23227,0,80.0,0.0,1,111,580.0,827.0,0.0,77,77,0.0,0.0,989.0163151557955,1407.0,0.0,1570.0628476462055,71,0,0,0,0,0,0,0,0,0,,1,,1,123248,2,1,1,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,782.936075319462,580.0,24433.468896032955,6,5,5,0,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05758494653325472,16288.97926402197,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +23228,2,58.0,0.0,1,112,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1534.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,6.0,1,,1,123249,2,1,1,0,1,,116.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,648.488635174102,0.0,41432.31987915728,0,1,0,1,120.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03702423625985968,41432.31987915728,9,5,9,9_1,9_2,9_1_0 +23229,2,51.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1078.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,80.0,1,2004.0,6,123250,2,1,1,0,1,,204.0,660.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1187.47207473101,0.0,38516.940790735265,0,1,2,3,85.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027987684843841454,38516.940790735265,9,5,9,9_1,9_3,9_0_0 +23230,2,76.0,0.0,1,112,3400.0,0.0,0.0,77,75,0.0,0.0,5797.681847465008,3400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123251,2,2,1,0,1,,600.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,552.849077972803,3400.0,59148.427482957544,5,5,0,1,107.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05748250874428814,39432.28498863836,9,5,9,9_1,9_0,9_1_0 +23231,2,72.0,0.0,9,111,420.0,,,0,77,0.0,0.0,,420.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,2007.0,6,123252,2,1,0,0,2,,450.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,35.76277357096322,420.0,42116.76666632959,0,5,1,2,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009972275491313312,28077.844444219725,8,4,8,8_1,8_2,8_0_0 +23232,2,47.0,0.0,2,111,300.0,0.0,0.0,35,35,0.0,927.0290939071567,511.56016301161833,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,123253,2,1,1,0,2,,200.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,938.578359781629,300.0,62285.78942546992,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016055026503221614,41523.85961697995,9,5,9,9_1,9_4,9_0_1 +23233,2,34.0,0.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,830.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,2009.0,6,123254,2,1,1,0,1,,257.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,284.123979856955,0.0,4206.6406137602935,0,1,1,2,140.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1973070856790087,4206.6406137602935,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +23234,2,82.0,0.0,2,112,217.0,1495.0,0.0,0,78,0.0,0.0,370.02851791173725,1712.0,0.0,2838.2635516699847,71,0,0,0,0,0,0,0,0,0,,1,,2,123255,2,1,1,0,1,,143.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,175.124644974858,217.0,20231.41625737203,0,5,0,1,60.0,6,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08462086777420598,20231.41625737203,5,3,5,5_1,5_0,5_0_1 +23235,2,45.0,0.0,7,112,1585.0,0.0,0.0,52,62,0.0,529.7309108040896,2702.742861244717,2085.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,123256,2,1,2,0,1,,444.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,753.285323123732,1585.0,49729.83705874184,1,1,1,2,200.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041926539946977065,21621.6682864095,6,3,6,6_1,6_0,6_0_0 +23236,2,55.0,0.0,6,112,2943.0,0.0,0.0,43,38,0.0,52.973091080408956,5018.4051991439765,2983.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,123257,2,1,2,0,1,,400.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,817.813585671694,2943.0,178435.546119169,1,1,0,1,164.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016717521059440642,118957.03074611268,10,5,10,10_1,10_1,10_0_0 +23237,2,27.0,0.0,9,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1913.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,3.0,2,2007.0,6,123258,2,1,0,0,1,,135.0,550.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2958.04232239356,0.0,24363.012410721985,0,1,2,3,68.0,8,2,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07852066763131896,24363.012410721985,7,4,7,7_0,7_1,7_0_0 +23238,2,76.0,0.0,2,111,138.0,,,0,77,0.0,0.0,,390.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,123259,2,2,0,0,2,,180.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,88.154154620333,138.0,5489.369837037656,0,5,0,1,31.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07104640634132676,5489.369837037656,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +23239,2,67.0,0.0,2,111,355.0,0.0,0.0,0,77,0.0,0.0,605.3461928970817,385.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,123260,1,1,0,1,2,,145.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2440.71684269089,355.0,20507.58788828908,0,5,0,1,83.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018773538950422122,20507.58788828908,5,3,5,5_0,5_2,5_0_1 +23240,1,66.0,178.0,5,111,240.0,998.0,0.0,0,90,0.0,0.0,409.2481304092947,1238.0,0.0,1894.7070398439093,71,0,0,0,0,0,0,0,0,0,,2,,3,123261,1,1,0,0,1,,100.0,300.0,11,0.0,0.0,2.0,1.0,1.0,1,1,517.143351535451,240.0,23659.730736416957,0,5,2,3,51.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05232519396742228,23659.730736416957,6,3,6,6_0,6_2,6_0_0 +23241,0,52.0,0.0,2,112,240.0,,,0,56,0.0,0.0,,306.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,,2,123262,2,1,0,0,2,,160.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,108.23728981132018,240.0,8921.38571414703,0,1,5,0,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03429960432209118,8921.38571414703,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +23242,2,81.0,0.0,1,300,180.0,0.0,0.0,0,71,2109.365702073203,0.0,306.936097806971,2240.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123263,2,2,4,0,2,,120.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1132.99588868061,180.0,9011.896063942097,0,5,0,1,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24856034558172113,9011.896063942097,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +23243,2,29.0,0.0,6,211,0.0,0.0,0.0,67,67,0.0,0.0,0.0,766.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,2,,4,123264,1,2,0,1,1,,404.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,381.469339850547,0.0,33976.91603370184,1,1,1,2,83.0,2,3,4,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02254471827991103,18876.064463167688,5,3,5,5_0,5_1,5_0_0 +23244,2,40.0,0.0,1,120,750.0,0.0,0.0,54,38,2109.365702073203,132.4327277010224,1278.9004075290459,2850.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,123265,2,1,1,0,1,,20.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,963.972451968457,750.0,63644.17373353948,4,1,1,2,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04478021840509958,30306.749396923562,8,4,8,8_1,8_0,8_1_0 +23245,1,35.0,430.0,2,111,600.0,1900.0,0.0,85,63,0.0,0.0,1023.1203260232367,2640.0,193.98249155551292,3607.1576910855993,41,0,0,0,0,0,0,0,0,1,15.0,1,,2,123266,2,2,3,0,1,,0.0,841.0,42,1.0,0.0,4.0,5.0,2.4,2,2,448.270132438124,600.0,17514.346986520315,6,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1507335672881119,7297.644577716798,1,1,1_1,1_1_1,1_4_1,1_0_1_1 +23246,2,51.0,0.0,2,111,640.0,0.0,0.0,0,63,0.0,0.0,1091.3283477581192,640.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,2,123267,1,3,0,1,2,347.0,0.0,780.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1067.26840791382,640.0,56837.5271859126,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011260166155832101,37891.6847906084,9,5,9,9_0,9_4,9_0_1 +23247,1,71.0,111.0,6,111,450.0,0.0,0.0,0,77,0.0,0.0,767.3402445174275,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,123268,2,2,0,0,1,,70.0,460.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1691.58139220324,450.0,10224.266762397116,0,5,2,3,57.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04401293613103028,10224.266762397116,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +23248,2,39.0,0.0,2,112,800.0,0.0,0.0,42,42,2109.365702073203,0.0,1364.160434697649,2900.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,12.0,1,,2,123269,2,1,2,0,1,,526.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,233.201940345625,800.0,53015.58906840712,1,1,1,2,120.0,9,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05470089177464518,25245.518604003388,7,4,7,7_1,7_0,7_0_1 +23249,2,51.0,0.0,7,111,672.0,,,63,55,0.0,0.0,,948.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,123270,2,1,0,0,1,,480.0,,43,4.0,1.0,7.0,4.0,2.5,4,4,113.73354878071783,672.0,13130.75415292055,4,4,0,1,114.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0721969194579083,5252.30166116822,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23250,2,40.0,0.0,2,111,550.0,360.0,0.0,85,67,0.0,0.0,937.8602988546337,910.0,0.0,683.461457258324,71,2,2,2,1,1,2,2,2,3,35.0,2,,2,123271,2,3,0,0,2,,0.0,423.0,42,1.0,0.0,1.0,2.0,1.5,2,2,1267.45789389478,550.0,15937.924386888697,7,1,3,4,18.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.05709651883833818,10625.282924592464,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +23251,2,48.0,0.0,7,111,876.0,1560.0,0.0,37,38,0.0,66.2163638505112,1493.7556759939255,2486.0,0.0,2961.666314786071,42,0,0,0,0,0,0,0,0,4,70.0,1,,5,123272,2,3,1,0,1,,768.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,362.689206417549,876.0,90879.813279412,4,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02735480972387936,36351.925311764804,9,5,9,9_1,9_4,9_0_0 +23252,1,43.0,250.0,2,111,1000.0,0.0,0.0,0,56,0.0,397.2981831030672,1705.2005433720612,1450.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123273,1,3,0,0,2,,0.0,950.0,32,1.0,0.0,5.0,4.0,2.3,3,2,1331.13814696698,1000.0,18860.608157482035,0,1,2,3,82.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07687981150410479,8200.264416296537,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23253,2,48.0,0.0,9,120,1500.0,,,22,46,0.0,0.0,,1620.0,166.2707070475825,,42,0,0,0,0,0,0,0,0,2,90.0,1,2010.0,6,123274,2,1,0,0,1,,1400.0,,43,2.0,1.0,6.0,3.0,1.8,2,2,158.89744796775724,1500.0,33780.72234280108,1,1,1,2,140.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04795634573945794,18767.06796822282,5,3,5,5_1,5_1,5_0_0 +23254,1,40.0,101.0,2,111,383.0,376.0,0.0,63,52,0.0,0.0,653.0918081114994,759.0,0.0,713.8375220253606,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,123275,2,1,0,1,1,1900.0,0.0,334.0,43,2.0,0.0,3.0,3.0,2.0,3,2,218.221453882199,383.0,25799.99940071099,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029418605334505694,12899.999700355494,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +23255,2,50.0,0.0,1,112,0.0,60.0,0.0,54,45,0.0,0.0,0.0,1425.0,0.0,113.91024287638734,41,0,0,0,0,0,0,0,0,1,35.0,1,,1,123276,2,1,1,0,1,,311.0,,43,2.0,4.0,5.0,3.0,1.8,2,2,1068.39056865015,0.0,46761.64951788327,1,1,0,1,100.0,7,0,7,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03047368975842118,25978.694176601817,7,4,7,7_1,7_0,7_1_0 +23257,2,63.0,0.0,6,112,0.0,0.0,0.0,77,77,0.0,0.0,0.0,1289.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,123278,2,1,2,0,1,,252.0,600.0,41,0.0,7.0,5.0,2.0,1.5,2,2,1789.80872071771,0.0,33471.318932244125,5,5,2,3,80.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038510582824934934,22314.212621496084,6,3,6,6_1,6_0,6_0_0 +23258,2,33.0,0.0,9,111,0.0,0.0,0.0,48,34,0.0,0.0,0.0,1687.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,123279,2,1,1,0,1,,385.0,709.0,43,2.0,0.0,4.0,2.0,1.5,2,2,876.664085251367,0.0,39300.60516686684,1,1,2,3,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04292554765600045,26200.403444577893,7,4,7,7_1,7_3,7_0_0 +23259,2,64.0,0.0,5,111,258.0,1445.0,0.0,77,72,0.0,0.0,439.9417401899918,1703.0,0.0,2743.338349272995,31,0,0,0,0,0,0,0,0,0,,2,,3,123280,2,2,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1041.82205851377,258.0,80742.2471729419,5,5,0,1,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021091808311358273,53828.16478196127,10,5,10,10_0,10_4,10_0_0 +23260,1,44.0,309.0,2,111,400.0,,,85,42,0.0,0.0,,700.0,415.67676761895626,,43,0,0,0,0,0,0,0,0,0,,1,,2,123281,2,1,0,0,2,,200.0,550.0,42,1.0,1.0,3.0,2.0,1.5,2,2,117.7335388078212,400.0,17711.937992807754,7,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03952136690430191,11807.958661871837,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +23261,2,36.0,0.0,2,111,600.0,1500.0,0.0,54,46,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,2,60.0,2,,2,123282,2,1,0,0,1,,0.0,260.0,43,2.0,0.0,3.0,4.0,2.1,2,2,240.641552757443,600.0,40602.669249447164,1,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05172073754802692,19334.60440449865,5,3,5,5_0,5_4,5_0_1 +23262,2,54.0,0.0,5,112,2007.0,0.0,0.0,46,48,0.0,0.0,3422.3374905477267,2007.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,3,123283,2,2,3,0,1,,220.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,762.927091859437,2007.0,71102.8747062881,4,1,1,2,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028226706842592788,35551.43735314405,9,5,9,9_1,9_0,9_0_0 +23263,2,54.0,0.0,6,111,1980.0,0.0,0.0,85,43,0.0,0.0,3376.297075876681,2130.0,207.83838380947813,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,4,123284,2,1,3,0,1,,557.0,,42,1.0,2.0,5.0,4.0,2.1,2,2,748.339938262959,1980.0,73907.11003668795,6,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02881996060923847,35193.86192223236,9,5,9,9_1,9_4,9_0_0 +23264,2,40.0,0.0,2,112,39.0,0.0,0.0,55,47,0.0,0.0,66.50282119151039,39.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,123285,2,2,1,0,1,,410.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1050.54182402412,39.0,62794.316049711386,1,1,1,2,175.0,5,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.000621075321039017,29902.055261767324,8,4,8,8_1,8_0,8_0_1 +23265,2,48.0,0.0,5,112,780.0,1500.0,0.0,48,37,0.0,397.2981831030672,1330.0564238302077,2580.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,3,55.0,1,,3,123286,2,1,2,0,1,,670.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,669.825076622902,780.0,71781.33642844591,1,1,1,2,115.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0359424904629887,25636.191581587827,7,4,7,7_1,7_1,7_0_0 +23266,2,43.0,0.0,8,400,366.0,0.0,0.0,0,11,2109.365702073203,0.0,624.1033988741744,2426.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,123287,2,1,1,0,1,,270.0,,32,1.0,0.0,7.0,2.0,1.3,1,1,887.408499116222,366.0,29621.152026059288,0,1,1,2,165.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08190093342303904,22785.501558507145,6,3,6,6_1,6_0,6_0_0 +23267,2,68.0,0.0,9,112,1010.0,0.0,0.0,77,78,0.0,0.0,1722.2525488057818,1075.0,90.06329965077386,0.0,70,0,0,0,0,0,0,0,0,0,,1,2013.0,6,123288,2,1,1,0,1,,373.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,10049.2119735606,1010.0,27856.853128555635,5,5,1,2,100.0,6,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038590144947062734,18571.23541903709,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23268,2,42.0,0.0,8,111,1172.0,,,81,63,0.0,0.0,,1310.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,123289,2,1,0,0,2,,620.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,73.71854818674386,1172.0,8602.0,4,4,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15229016507788887,4096.190476190476,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23269,2,72.0,0.0,7,111,1200.0,0.0,0.0,74,75,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,123290,1,3,0,0,1,,0.0,830.0,41,0.0,2.0,4.0,2.0,1.5,2,2,719.52140235296,1200.0,30797.62256691797,5,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03896404657186135,20531.748377945314,5,3,5,5_0,5_4,5_0_0 +23270,2,43.0,0.0,1,300,241.0,0.0,0.0,0,45,2320.3022722805235,0.0,410.95333095266676,2540.0,137.1733333142556,0.0,42,2,2,2,2,1,2,1,2,2,10.0,5,,1,123291,2,1,3,0,1,,360.0,,22,1.0,0.0,5.0,3.0,2.0,3,3,1932.23532411321,241.0,40772.35674370818,0,1,1,2,124.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06229711017114462,20386.17837185409,5,3,5,5_1,5_0,5_1_0 +23271,2,67.0,0.0,5,112,2000.0,0.0,0.0,77,74,0.0,198.6490915515336,3410.4010867441225,2330.0,249.40606057137379,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,123292,2,1,2,0,1,,1000.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,179.495832736406,2000.0,57911.94768499659,5,5,0,1,150.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04023349400496229,38607.96512333106,9,5,9,9_1,9_0,9_0_0 +23272,1,22.0,365.0,9,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,267.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2006.0,6,123293,2,1,0,1,1,170.0,0.0,405.0,12,1.0,0.0,1.0,1.0,1.0,1,1,786.775399014524,0.0,15852.651123453179,0,4,3,4,18.0,10,3,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016842608717035808,15852.651123453179,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +23273,1,35.0,208.0,2,112,360.0,634.0,0.0,0,52,0.0,0.0,613.872195613942,1026.0,44.33885521268867,1203.6515663938262,31,0,0,0,0,0,0,0,0,2,3.0,2,,2,123294,2,2,0,1,1,840.0,0.0,346.0,32,1.0,0.0,4.0,3.0,1.6,1,1,603.233903766704,360.0,26403.64201049217,0,1,2,3,79.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038858275672435355,16502.276256557605,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +23274,2,49.0,0.0,1,111,1130.0,0.0,0.0,56,48,0.0,1191.8945493092015,1926.8766140104292,2130.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,123295,2,2,2,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1149.76287336821,1130.0,34685.875390591595,1,1,0,1,120.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06140828149828832,15080.815387213737,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +23275,1,69.0,250.0,2,111,800.0,0.0,0.0,0,78,0.0,3972.981831030672,1364.160434697649,3980.0,249.40606057137379,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,123296,2,3,0,0,1,,0.0,250.0,11,0.0,0.0,2.0,1.0,1.0,1,1,254.652352487111,800.0,68493.65773985868,0,5,2,3,25.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05810756982954801,68493.65773985868,10,5,10,10_0,10_3,10_0_1 +23276,2,49.0,0.0,7,111,3790.0,0.0,0.0,0,35,0.0,0.0,6462.7100593801115,3790.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,123297,2,1,2,0,1,,640.0,,32,2.0,1.0,6.0,3.0,2.0,3,3,691.820203940332,3790.0,45227.54049129301,0,1,0,1,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08379849885336198,22613.770245646505,6,3,6,6_1,6_4,6_0_0 +23277,1,53.0,113.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,513.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,123298,2,1,0,1,1,603.0,191.0,275.0,12,1.0,5.0,2.0,1.0,1.0,1,1,337.407169958156,0.0,9406.628148862505,0,1,2,3,50.0,8,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05453601353020789,9406.628148862505,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +23278,2,53.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,856.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,123299,2,1,1,0,2,,160.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,1090.01158099474,0.0,30073.27642367469,0,1,1,2,90.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02846380912876284,20048.850949116462,5,3,5,5_1,5_2,5_0_1 +23279,1,52.0,29.0,2,111,508.0,1600.0,0.0,68,67,0.0,0.0,866.2418760330071,2108.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,2,3.0,1,,2,123300,2,1,1,0,1,,644.0,349.0,43,3.0,0.0,4.0,4.0,2.5,4,3,141.154594507023,508.0,25180.289225087272,1,1,2,3,72.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0837162743110904,10072.115690034909,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +23280,1,46.0,259.0,6,111,480.0,480.0,0.0,85,52,0.0,0.0,818.4962608185893,960.0,0.0,911.2819430110987,71,2,1,2,2,1,2,2,2,2,15.0,2,,4,123301,2,1,0,1,1,,0.0,840.0,42,4.0,1.0,5.0,5.0,3.0,5,5,166.74019040078,480.0,40578.99970345048,7,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.023657557037276355,13526.333234483493,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +23281,2,62.0,0.0,9,111,680.0,1000.0,0.0,0,78,0.0,0.0,1159.5363694930015,1680.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,123302,2,1,1,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1769.70863809004,680.0,31473.060013734226,0,5,0,1,140.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053378985051560954,31473.060013734226,8,4,8,8_1,8_3,8_0_0 +23282,2,39.0,0.0,9,111,580.0,1400.0,0.0,56,65,0.0,0.0,989.0163151557955,1980.0,0.0,2657.9056671157045,42,0,0,0,0,0,0,0,0,2,9.0,1,2011.0,6,123303,2,1,1,0,1,,210.0,,43,2.0,0.0,9.0,5.0,2.8,4,2,200.44557447494,580.0,49024.802388380376,1,1,1,2,187.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040387720164870876,17508.857995850136,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +23283,2,38.0,0.0,5,111,2000.0,0.0,0.0,43,37,0.0,423.78472864327165,3410.4010867441225,2395.0,103.91919190473907,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,123304,2,1,2,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1450.38615566861,2000.0,87890.56860196158,1,1,1,2,110.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02724979526354489,41852.6517152198,9,5,9,9_1,9_2,9_0_0 +23284,2,51.0,0.0,1,111,600.0,1800.0,0.0,63,62,0.0,0.0,1023.1203260232367,2400.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,3,30.0,1,,1,123305,2,1,2,0,2,,0.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,249.686410316167,600.0,21904.610068126465,1,1,1,2,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10956597686677176,12169.227815625814,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +23285,2,74.0,0.0,7,111,600.0,,,77,78,0.0,0.0,,696.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,0,,1,,5,123306,2,1,0,0,2,,1000.0,,41,0.0,3.0,6.0,3.0,2.0,3,3,100.61337054621113,600.0,29497.274189652202,5,5,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02359540056227163,14748.637094826101,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +23286,2,54.0,0.0,2,111,330.0,828.0,0.0,77,48,0.0,0.0,562.7161793127802,1158.0,0.0,1571.9613516941454,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,123307,2,2,0,0,1,,252.0,380.0,42,1.0,1.0,4.0,2.0,1.5,2,2,655.923781610506,330.0,43851.745900627175,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026407158397390926,29234.497267084782,8,4,8,8_0,8_3,8_0_1 +23287,2,44.0,0.0,5,111,1380.0,0.0,0.0,67,63,0.0,0.0,2353.1767498534446,1380.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,123308,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,995.999650032782,1380.0,41542.500551439465,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03321899215698951,27695.00036762631,7,4,7,7_0,7_4,7_0_0 +23288,2,67.0,0.0,2,111,50.0,0.0,0.0,0,77,0.0,0.0,85.26002716860306,50.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123309,2,1,2,0,1,,94.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1095.54707003114,50.0,23458.062527122096,0,5,0,1,85.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.002131463327041193,23458.062527122096,6,3,6,6_1,6_2,6_0_1 +23289,2,48.0,0.0,1,111,297.0,0.0,0.0,0,54,990.3471971233688,0.0,506.4445613815022,1266.0,41.567676761895626,0.0,41,0,0,0,0,0,0,0,0,4,60.0,1,,1,123310,2,1,3,0,1,,103.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,350.374616091482,297.0,27976.355005271627,0,1,1,2,80.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04525249982570802,27976.355005271627,7,4,7,7_1,7_3,7_1_0 +23290,1,77.0,327.0,9,111,376.0,1004.0,0.0,86,86,0.0,0.0,641.155404307895,1380.0,0.0,1906.0980641315482,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,123311,2,2,0,0,1,,460.0,481.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1602.21774458465,376.0,17254.10437970821,6,5,2,3,78.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07998096972352602,11502.736253138806,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +23291,0,23.0,0.0,5,120,750.0,,,0,53,0.0,0.0,,795.0,62.351515142843446,,50,0,0,0,0,0,0,0,0,2,50.0,1,,3,123312,1,3,0,0,2,,600.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,97.7183982738739,750.0,18284.037525079308,0,1,5,0,120.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043480549572792,18284.037525079308,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23292,2,80.0,0.0,6,111,200.0,,,0,78,0.0,0.0,,300.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,4,123313,2,1,0,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,55.89020434966276,200.0,14656.925739604943,0,5,0,1,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020468139453648216,14656.925739604943,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +23293,2,35.0,0.0,1,111,322.0,0.0,0.0,35,56,0.0,0.0,549.0745749658037,322.0,0.0,0.0,31,2,1,2,2,1,2,2,2,0,,2,,1,123314,1,3,0,1,1,229.0,0.0,679.0,43,2.0,0.0,1.0,2.0,1.5,2,2,913.261290928859,322.0,34121.44549836824,4,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.009436880392871948,22747.63033224549,6,3,6,6_0,6_4,6_1_0 +23294,2,66.0,0.0,1,111,2521.0,3862.0,0.0,74,34,0.0,0.0,4298.810569840966,6383.0,0.0,7332.022633143465,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,123315,1,3,2,0,2,,437.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,1154.67721690419,2521.0,171774.63234837644,6,1,0,1,200.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03715915390262414,114516.4215655843,10,5,10,10_1,10_3,10_1_0 +23295,2,28.0,0.0,9,300,1182.0,0.0,0.0,55,38,0.0,238.3789098618403,2015.5470422657763,1362.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,123316,2,1,1,0,1,,115.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2283.5419846422,1182.0,48548.57148026852,1,1,1,2,99.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02805437850119966,26971.428600149175,7,4,7,7_1,7_0,7_0_0 +23296,2,70.0,0.0,6,111,739.0,1226.0,0.0,77,74,0.0,0.0,1260.143201551953,1965.0,0.0,2327.565962774181,12,0,0,0,0,0,0,0,0,0,,1,,4,123317,2,1,1,0,1,,414.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1462.14959861227,739.0,130923.75738662643,5,5,0,1,200.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015008735154134221,87282.50492441762,10,5,10,10_1,10_3,10_0_0 +23297,1,34.0,400.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,224.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123318,2,3,0,1,1,717.0,320.0,426.0,31,0.0,0.0,4.0,5.0,2.2,1,1,394.619130234436,0.0,29984.709765289525,0,6,2,3,75.0,5,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.007470474176785386,13629.413529677055,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +23298,2,79.0,0.0,2,111,366.0,1466.0,0.0,74,75,0.0,0.0,624.1033988741744,1832.0,0.0,2783.206934279731,60,0,0,0,0,0,0,0,0,0,,1,,2,123319,2,1,2,0,2,,379.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1522.81162672276,366.0,70767.4574455222,5,5,0,1,175.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025887605209079324,47178.30496368147,10,5,10,10_1,10_3,10_0_1 +23299,1,55.0,253.0,7,221,900.0,,,0,77,0.0,0.0,,1010.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,2,,5,123320,2,1,0,0,2,,990.0,407.0,21,0.0,6.0,4.0,2.0,1.5,2,2,91.80605677142148,900.0,9380.790050785325,0,6,2,3,81.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10766683771112077,6253.860033856883,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +23300,1,29.0,315.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,724.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,5,123321,1,1,0,0,1,,0.0,466.0,32,1.0,0.0,3.0,3.0,1.6,1,1,707.782525474425,0.0,16753.42218090472,0,1,2,3,71.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04321505135978747,10470.88886306545,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +23301,2,62.0,0.0,9,111,653.0,0.0,0.0,0,77,0.0,0.0,1113.495954821956,653.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2007.0,6,123322,2,1,0,0,1,,177.0,,21,0.0,1.0,3.0,2.0,1.5,2,2,3294.28950305333,653.0,29221.706034137034,0,5,1,2,67.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022346402336576792,19481.137356091356,5,3,5,5_0,5_3,5_0_0 +23302,1,29.0,300.0,1,111,0.0,0.0,0.0,68,63,0.0,0.0,0.0,278.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,123323,1,3,0,1,1,272.0,0.0,710.0,43,2.0,0.0,1.0,3.0,1.8,2,2,1003.4149038012,0.0,28830.612336995822,1,1,3,4,24.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.009642528460738474,16017.006853886567,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +23303,2,47.0,0.0,7,111,1203.0,1295.0,0.0,54,37,0.0,158.91927324122688,2051.3562536765894,2618.0,0.0,2458.562742082027,12,1,2,2,1,1,2,2,2,2,55.0,1,,5,123324,2,1,2,0,1,,580.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,521.933734576659,1203.0,92711.11662322779,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.028238253354658526,37084.446649291116,9,5,9,9_1,9_4,9_0_0 +23304,2,45.0,0.0,7,112,540.0,0.0,0.0,85,11,2425.7705573841836,0.0,920.8082934209131,2960.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,,5,123325,2,1,3,0,1,,230.0,,42,1.0,0.0,6.0,4.0,2.5,4,3,358.27389264387,540.0,136694.26270616255,7,1,0,1,160.0,9,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021654164128035162,54677.70508246502,10,5,10,10_1,10_0,10_0_0 +23305,2,47.0,0.0,5,221,640.0,0.0,0.0,0,64,0.0,0.0,1091.3283477581192,700.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,123326,2,1,1,0,2,,350.0,630.0,32,2.0,1.0,4.0,3.0,2.0,3,2,2311.86408068373,640.0,37567.970632099,0,1,2,3,75.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018632893611823225,18783.9853160495,5,3,5,5_1,5_1,5_0_0 +23306,1,65.0,115.0,8,111,220.0,460.0,0.0,78,78,0.0,0.0,375.14411954185346,770.0,124.70303028568689,873.3118620523029,71,0,0,0,0,0,0,0,0,0,,2,,6,123327,2,2,0,1,1,420.0,0.0,300.0,41,0.0,4.0,3.0,2.0,1.5,2,2,271.031739457663,220.0,14462.806616208316,6,5,2,3,61.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.053240012152072136,9641.871077472211,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23307,0,51.0,0.0,2,111,720.0,,,0,56,0.0,0.0,,870.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,3,30.0,1,,2,123328,2,2,0,0,2,,260.0,,32,2.0,2.0,3.0,2.0,1.5,2,2,78.77945560155895,720.0,34591.96482172812,0,1,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025150349350885386,23061.30988115208,6,3,6,6_1,6_2,6_0_1 +23308,2,60.0,0.0,1,111,500.0,1099.0,0.0,65,52,0.0,0.0,852.6002716860306,1599.0,0.0,2086.455948685828,50,0,0,0,0,0,0,0,0,3,20.0,1,,1,123329,2,1,2,0,1,,258.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,273.660390273402,500.0,45632.579962914584,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035040753805712956,30421.719975276388,8,4,8,8_1,8_3,8_1_0 +23309,2,59.0,0.0,2,111,215.0,86.0,0.0,34,45,0.0,0.0,366.61811682499314,301.0,0.0,163.27134812282185,10,2,1,2,1,1,2,2,2,3,30.0,2,,2,123330,1,2,0,1,2,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1700.56821526335,215.0,78682.36165679763,1,1,0,1,84.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0038255079494553482,52454.90777119842,10,5,10,10_0,10_3,10_0_1 +23310,1,49.0,308.0,5,111,330.0,660.0,0.0,0,55,0.0,0.0,562.7161793127802,990.0,0.0,1253.0126716402608,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,123331,2,3,0,0,1,,224.0,424.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1181.1296915587,330.0,11900.05580435525,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08319288718273692,11900.05580435525,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +23311,2,52.0,0.0,6,111,300.0,,,0,47,0.0,0.0,,300.0,0.0,,31,0,0,0,0,0,0,0,0,1,10.0,1,,4,123332,2,1,0,0,2,,250.0,550.0,12,1.0,2.0,2.0,1.0,1.0,1,1,206.56402847180837,300.0,40356.80681026225,0,1,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007433690217624295,40356.80681026225,9,5,9,9_1,9_2,9_0_0 +23312,1,57.0,255.0,1,111,400.0,663.0,0.0,0,77,0.0,0.0,682.0802173488245,1063.0,0.0,1258.7081837840801,50,0,0,0,0,0,0,0,0,0,,2,,1,123333,2,2,0,0,1,,300.0,389.0,11,0.0,2.0,3.0,1.0,1.0,1,1,353.72681777036,400.0,10623.397581743393,0,7,2,3,40.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10006214978029207,10623.397581743393,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +23313,2,43.0,0.0,1,300,1100.0,0.0,0.0,85,63,1265.6194212439218,0.0,1875.7205977092674,2475.0,242.47811444439117,0.0,50,1,2,2,1,2,2,2,2,2,10.0,1,,1,123334,2,2,1,0,1,,235.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,1195.78572199113,1100.0,25561.29758004512,6,1,0,1,130.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.0968260704390904,12172.046466688153,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +23314,2,48.0,0.0,1,120,850.0,0.0,0.0,52,62,1160.1511361402618,417.1630922582205,1449.420461866252,2335.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123335,2,1,2,0,1,,280.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,94.7755850346558,850.0,30391.23187360097,1,1,0,1,142.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07683137063056249,15195.615936800485,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +23315,2,31.0,0.0,7,111,0.0,,,21,42,0.0,0.0,,1204.0,0.0,,20,0,0,0,0,0,0,0,0,2,45.0,1,,5,123336,2,1,0,0,2,,464.0,680.0,43,2.0,0.0,3.0,3.0,1.8,2,2,110.14480232322786,0.0,31422.79363221381,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03831613490805895,17457.107573452115,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +23316,2,45.0,0.0,7,400,1800.0,,,62,43,0.0,0.0,,1932.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,0,,1,,5,123337,2,1,0,0,1,,140.0,,43,3.0,1.0,6.0,4.0,2.3,3,3,99.86442065695779,1800.0,37396.213773637275,4,1,0,1,180.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051662984164508576,16259.223379842295,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23317,2,41.0,0.0,2,111,500.0,0.0,0.0,0,38,0.0,0.0,852.6002716860306,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,2,,2,123338,1,2,0,1,1,308.0,0.0,418.0,12,1.0,0.0,2.0,1.0,1.0,1,1,610.783223572821,500.0,29009.167910078017,0,1,2,3,45.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017235930432402922,29009.167910078017,8,4,8,8_0,8_2,8_0_1 +23318,2,88.0,0.0,2,111,270.0,2008.0,0.0,0,77,0.0,0.0,460.40414671045653,2278.0,0.0,3812.1961282630964,50,0,0,0,0,0,0,0,0,0,,1,,2,123339,2,2,5,0,1,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2548.44009354756,270.0,27943.057470734355,0,5,0,1,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08152293292836052,27943.057470734355,7,4,7,7_1,7_3,7_0_1 +23319,1,42.0,121.0,9,221,830.0,0.0,0.0,0,52,0.0,0.0,1415.3164509988108,882.0,72.05063972061909,0.0,50,2,2,2,2,1,2,2,2,2,20.0,1,2010.0,6,123340,2,1,1,0,1,,420.0,422.0,32,2.0,0.0,3.0,2.0,1.5,2,2,837.22677845788,830.0,20472.397910047854,0,1,2,3,75.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.043082398255219256,13648.265273365236,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +23320,2,67.0,0.0,5,111,760.0,0.0,0.0,0,77,0.0,1284.5974586999173,1295.9524129627664,1820.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123341,2,2,1,0,1,,260.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,571.877611478167,760.0,25774.74479766031,0,5,0,1,55.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07061175636412934,25774.74479766031,7,4,7,7_1,7_3,7_0_0 +23321,2,38.0,0.0,1,400,1030.0,0.0,0.0,54,48,0.0,2781.0872817214704,1756.356559673223,3190.0,83.13535352379125,0.0,31,2,2,1,2,1,2,2,2,2,25.0,1,,1,123342,2,3,4,0,1,,380.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,164.975294816711,1030.0,54905.88270468419,1,1,1,2,90.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.058099421097693255,36603.921803122794,9,5,9,9_1,9_0,9_1_0 +23322,1,42.0,29.0,1,111,331.0,864.0,0.0,0,54,0.0,0.0,564.4213798561523,1195.0,0.0,1640.3074974199776,41,0,0,0,0,0,0,0,0,3,20.0,2,,1,123343,2,1,0,0,1,,230.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,2327.1918969618,331.0,21484.10740259299,0,1,1,2,49.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05562251098483018,14322.738268395326,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +23323,1,51.0,223.0,7,111,600.0,,,0,54,0.0,0.0,,669.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,0,,2,,5,123344,2,2,0,0,2,,565.0,470.0,12,1.0,0.0,3.0,1.0,1.0,1,1,110.37239712336296,600.0,7618.0,0,4,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08781832501969021,7618.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23324,2,42.0,0.0,2,111,0.0,0.0,3200.0,54,64,0.0,0.0,2017.0185293271802,3200.0,0.0,3829.5428722069787,43,1,2,2,1,2,2,2,2,2,30.0,1,,2,123345,2,2,1,0,1,,1120.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1102.87674553118,0.0,23563.113523655793,4,1,1,2,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.13580548244557808,11220.530249359901,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +23325,2,62.0,0.0,2,111,396.0,235.0,0.0,0,77,0.0,0.0,675.2594151753362,631.0,0.0,446.14845126585044,71,1,2,2,2,1,2,2,2,0,,2,,2,123346,1,3,0,1,2,662.0,0.0,346.0,11,0.0,2.0,3.0,1.0,1.0,1,1,263.807968811051,396.0,22056.93194602491,0,5,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.028607786501953576,22056.93194602491,6,3,6,6_0,6_4,6_0_1 +23326,2,35.0,0.0,1,112,1200.0,0.0,0.0,63,54,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,123347,2,2,3,0,1,,540.0,900.0,43,2.0,0.0,4.0,4.0,2.3,3,3,370.570604590493,1200.0,19817.082409895032,4,1,2,3,100.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06055381792230011,8616.122786910884,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +23327,0,25.0,0.0,2,111,250.0,0.0,0.0,0,54,0.0,0.0,426.3001358430153,310.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,123348,2,1,0,1,1,1556.0,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1760.17109158568,250.0,22113.0,0,1,5,0,73.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014018902907791796,22113.0,6,3,6,6_0,6_2,6_0_1 +23330,2,59.0,0.0,1,111,420.0,1800.0,0.0,21,21,0.0,0.0,716.1842282162656,2220.0,0.0,3417.30728629162,50,0,0,0,0,0,0,0,0,0,,1,,1,123351,2,2,1,0,1,,420.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,432.074349668257,420.0,90415.14271271636,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024553409234267236,60276.761808477575,10,5,10,10_1,10_4,10_1_0 +23331,0,67.0,0.0,2,111,290.0,0.0,0.0,0,77,1371.087706347582,264.8654554020448,494.50815757789775,1970.0,249.40606057137379,0.0,50,2,2,2,2,1,2,2,1,0,,1,,2,123352,2,1,1,0,1,,223.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1265.2285874868,290.0,33969.47861603583,0,5,0,1,95.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.05799323628917962,33969.47861603583,9,5,9,9_1,9_2,9_0_1 +23332,1,29.0,297.0,7,111,0.0,0.0,1050.0,56,46,0.0,0.0,661.8342049354809,1050.0,0.0,1256.568754942915,50,0,0,0,0,0,0,0,0,0,,2,,5,123353,2,1,0,0,1,,500.0,495.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1089.73389878573,0.0,28354.58895431167,1,1,2,3,87.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03703104290074127,11814.412064296528,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +23333,2,57.0,0.0,9,111,637.0,717.0,0.0,56,64,0.0,0.0,1086.212746128003,1354.0,0.0,1361.2274023728287,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123354,2,1,1,0,1,,260.0,649.0,43,2.0,3.0,4.0,2.0,1.5,2,2,198.141828074288,637.0,31689.820873983197,1,1,2,3,97.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042726653627493706,21126.54724932213,5,3,5,5_1,5_2,5_0_0 +23334,2,57.0,0.0,1,111,450.0,90.0,0.0,0,52,1054.6828510366015,0.0,767.3402445174275,1540.0,0.0,170.865364314581,60,0,0,0,0,0,0,0,0,3,45.0,1,,1,123355,2,1,3,0,1,,650.0,650.0,22,2.0,0.0,3.0,2.0,1.5,2,2,567.098800838857,450.0,57351.06582031651,0,1,2,3,50.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02685216007710981,38234.04388021101,9,5,9,9_1,9_4,9_1_0 +23335,2,60.0,0.0,6,111,2217.0,0.0,0.0,85,63,0.0,0.0,3780.4296046558597,2217.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,123356,2,2,2,0,1,,224.0,,42,2.0,1.0,4.0,4.0,2.5,4,4,805.347626714884,2217.0,74855.17053730995,7,1,0,1,100.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029617192561133553,29942.06821492398,8,4,8,8_1,8_3,8_0_0 +23336,2,54.0,0.0,2,112,650.0,0.0,0.0,85,48,1687.4925616585624,158.91927324122688,1108.3803531918397,2370.0,0.0,0.0,50,1,2,2,1,1,2,2,2,2,20.0,1,,2,123357,1,2,1,0,1,,350.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,722.470976824817,650.0,39190.6879752824,6,1,1,2,120.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06047354926493663,26127.125316854934,7,4,7,7_1,7_0,7_0_1 +23337,2,46.0,0.0,1,111,700.0,0.0,0.0,21,52,0.0,1149.5160764448744,1193.6403803604428,1818.0,346.39730634913025,0.0,41,0,0,0,0,0,0,0,0,4,45.0,1,,1,123358,2,3,2,0,1,,85.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1157.4146025835,700.0,10182.124682028389,1,1,0,1,160.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1785481966459121,5656.7359344602155,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +23338,2,50.0,0.0,9,111,650.0,,,85,85,0.0,0.0,,650.0,0.0,,71,0,0,0,0,0,0,0,0,0,,7,2011.0,6,123359,2,3,0,0,2,,0.0,250.0,41,0.0,0.0,2.0,2.0,1.5,2,2,64.17872982753919,650.0,16738.829283163243,6,7,2,3,18.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038831867450479514,11159.219522108828,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +23339,2,80.0,0.0,5,111,245.0,741.0,0.0,0,77,0.0,0.0,417.774133126155,986.0,0.0,1406.7914995233837,50,0,0,0,0,0,0,0,0,0,,2,,3,123360,1,1,0,0,1,,0.0,382.0,11,0.0,4.0,2.0,1.0,1.0,1,1,1277.58287694542,245.0,21724.137041990194,0,5,2,3,58.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04538730344474343,21724.137041990194,6,3,6,6_0,6_3,6_0_0 +23340,1,81.0,134.0,2,111,350.0,870.0,0.0,0,77,0.0,0.0,596.8201901802214,1220.0,0.0,1651.6985217076165,70,2,2,1,1,1,2,1,2,0,,1,,2,123361,2,2,3,0,1,,135.0,314.0,11,0.0,4.0,4.0,1.0,1.0,1,1,501.081257823086,350.0,11459.20181528818,0,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.1064646578064756,11459.20181528818,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +23341,2,58.0,0.0,2,111,1000.0,1000.0,0.0,0,46,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,123362,2,1,2,0,1,,1200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1669.3364019528,1000.0,23076.959433365228,0,1,1,2,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08666653012824348,23076.959433365228,6,3,6,6_1,6_3,6_0_1 +23342,2,40.0,0.0,9,112,1600.0,0.0,0.0,48,42,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,123363,2,1,1,0,1,,164.0,,43,2.0,1.0,7.0,4.0,2.1,2,2,751.443930568127,1600.0,55434.46183644249,1,1,1,2,144.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028862912112698886,26397.36277925833,7,4,7,7_1,7_0,7_0_0 +23343,2,48.0,0.0,8,111,900.0,,,90,21,0.0,0.0,,942.0,58.19474746665388,,44,0,0,0,0,0,0,0,0,2,25.0,2,2002.0,6,123364,2,2,0,0,2,,200.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,91.82151837603655,900.0,5110.0,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1843444227005871,3406.6666666666665,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +23344,2,58.0,0.0,6,111,498.0,875.0,0.0,77,46,0.0,0.0,849.1898705992865,1373.0,0.0,1661.1910419473154,50,2,2,2,2,1,2,2,2,3,40.0,2,,4,123365,1,3,0,0,1,,0.0,567.0,42,1.0,0.0,3.0,2.0,1.5,2,2,916.251569486059,498.0,36125.23470324491,5,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.0380066734867932,24083.489802163273,6,3,6,6_0,6_4,6_0_0 +23345,2,78.0,0.0,2,111,0.0,0.0,0.0,78,77,0.0,0.0,0.0,1360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,123366,2,1,0,1,1,756.0,0.0,283.0,41,0.0,4.0,4.0,2.0,1.5,2,2,369.239435460667,0.0,28607.899430650876,5,5,2,3,70.0,6,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0475393170091642,19071.93295376725,5,3,5,5_0,5_2,5_0_1 +23346,2,55.0,0.0,2,111,350.0,280.0,0.0,0,46,0.0,0.0,596.8201901802214,630.0,0.0,531.581133423141,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,123367,2,1,0,1,1,,209.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,338.587768978906,350.0,23082.50619079004,0,1,1,2,77.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027293396773846467,23082.50619079004,6,3,6,6_0,6_3,6_0_1 +23347,2,50.0,0.0,8,111,0.0,0.0,1905.0,68,56,0.0,0.0,1200.7563432400868,1905.0,0.0,2279.774741110717,71,0,0,0,0,0,0,0,0,3,45.0,2,2001.0,6,123368,2,1,0,0,1,,0.0,,43,4.0,0.0,4.0,4.0,2.5,4,3,459.188437094671,0.0,23837.316741350372,4,1,1,2,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07991671297027379,9534.92669654015,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +23348,2,65.0,0.0,1,112,800.0,0.0,0.0,77,74,0.0,0.0,1364.160434697649,832.0,44.33885521268867,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,123369,2,1,1,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,750.125241092377,800.0,40525.09589911055,5,5,0,1,90.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020530488122009867,27016.730599407034,7,4,7,7_1,7_0,7_1_0 +23349,2,46.0,0.0,8,111,744.0,,,85,69,0.0,397.2981831030672,,1320.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,123370,2,1,0,0,2,,444.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,95.21325185096661,744.0,22417.88480163671,6,1,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05888155870546841,10675.183238874622,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +23350,2,62.0,0.0,7,111,1200.0,4000.0,0.0,85,22,0.0,0.0,2046.2406520464733,5200.0,0.0,7594.016191759156,42,0,0,0,0,0,0,0,0,2,45.0,1,,5,123371,2,1,2,0,1,,300.0,,42,1.0,3.0,6.0,3.0,1.8,2,2,609.327328280442,1200.0,618863.0232450675,6,1,1,2,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008402505570187895,343812.79069170414,10,5,10,10_1,10_4,10_0_0 +23351,2,82.0,0.0,1,300,798.0,0.0,0.0,0,71,0.0,768.1098206659299,1360.750033610905,1448.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123372,2,2,4,0,1,,271.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1636.416119642,798.0,18161.665841077884,0,5,0,1,74.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07972836922948595,18161.665841077884,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +23352,1,55.0,270.0,2,111,360.0,180.0,0.0,0,56,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,41,0,0,0,0,0,0,0,0,2,3.0,2,,2,123373,2,1,0,1,1,400.0,0.0,334.0,12,1.0,0.0,3.0,1.0,1.0,1,1,560.941453209765,360.0,7463.642072213501,0,1,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07235073637981297,7463.642072213501,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23353,2,69.0,0.0,6,111,455.0,900.0,0.0,78,78,0.0,86.08127300566456,775.8662472342878,1420.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,4,123374,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,960.242934067522,455.0,25591.158592678028,5,5,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05548791372057227,17060.772395118685,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +23354,2,48.0,0.0,1,111,560.0,710.0,0.0,52,63,0.0,0.0,954.9123042883542,1270.0,0.0,1347.9378740372501,71,0,0,0,0,0,0,0,0,0,,1,,1,123375,2,1,2,0,1,,610.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,3,3,634.419232110771,560.0,34477.23575236028,1,1,1,2,146.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03683589975490007,13260.475289369338,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +23355,2,49.0,0.0,1,221,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1562.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,55.0,1,,1,123376,2,1,1,0,1,,287.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,555.460652099708,0.0,17781.12397379251,0,1,0,1,200.0,1,3,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08784596532267715,17781.12397379251,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +23356,2,39.0,0.0,1,112,650.0,0.0,0.0,46,42,2293.935201004608,158.91927324122688,1108.3803531918397,2997.0,72.05063972061909,0.0,33,0,0,0,0,0,0,0,0,2,2.0,1,,1,123377,2,2,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,2263.68585475833,650.0,55837.727346752166,1,1,1,2,170.0,7,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05367338791187966,24277.272759457464,7,4,7,7_1,7_1,7_1_0 +23357,2,55.0,0.0,1,111,1200.0,804.0,0.0,56,53,0.0,0.0,2046.2406520464733,2228.0,310.3719864888207,1526.3972545435904,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,123378,2,2,1,0,1,,437.0,145.0,43,2.0,3.0,5.0,3.0,2.0,3,3,223.763366753402,1200.0,40101.48982374779,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05555903308810726,20050.744911873895,5,3,5,5_1,5_3,5_1_0 +23358,1,37.0,309.0,9,111,1100.0,683.0,0.0,0,46,0.0,0.0,1875.7205977092674,1783.0,0.0,1296.6782647428759,31,0,0,0,0,0,0,0,0,2,25.0,2,2006.0,6,123379,2,2,0,0,1,,261.0,535.0,32,1.0,0.0,4.0,4.0,1.9,1,1,2074.09228689719,1100.0,22505.0,0,1,2,3,86.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07922683848033771,11844.736842105263,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +23359,2,60.0,0.0,5,111,300.0,800.0,0.0,0,55,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,2,15.0,2,,3,123380,1,2,0,0,2,,0.0,600.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1776.65004202127,300.0,19790.40940806377,0,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05558247822562962,19790.40940806377,5,3,5,5_0,5_3,5_0_0 +23360,2,56.0,0.0,6,111,600.0,1200.0,0.0,78,78,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,4,123381,2,1,2,0,1,,80.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,142.17178732265,600.0,46245.805984608116,5,7,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03892244846157703,23122.902992304058,6,3,6,6_1,6_3,6_0_0 +23361,2,85.0,0.0,2,111,350.0,1000.0,0.0,0,77,0.0,0.0,596.8201901802214,1350.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,1,,2,123382,1,1,2,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,135.613835035124,350.0,12810.262592532541,0,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10538425658713294,12810.262592532541,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +23362,2,57.0,0.0,5,112,2100.0,0.0,0.0,75,45,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,123383,2,3,1,0,1,,507.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1129.25671215653,2100.0,58096.12149907671,5,1,0,1,100.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03614699132769774,38730.74766605114,9,5,9,9_1,9_0,9_0_0 +23363,0,36.0,0.0,6,211,900.0,,,0,34,0.0,0.0,,1000.0,138.5589225396521,,43,0,0,0,0,0,0,0,0,2,50.0,1,,4,123384,2,2,0,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,106.03138034311371,900.0,33348.12,0,1,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029986697900811196,33348.12,8,4,8,8_1,8_2,8_0_0 +23364,2,66.0,0.0,2,111,256.0,149.0,0.0,77,77,0.0,0.0,436.53133910324766,790.0,0.0,282.87710314302853,44,2,2,1,2,1,2,2,2,0,,2,,2,123385,2,1,0,2,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,694.782918366886,256.0,33623.88217063359,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023495204866318793,22415.92144708906,6,3,6,6_0,6_4,6_0_1 +23365,2,55.0,0.0,2,221,356.0,1176.0,0.0,0,38,0.0,0.0,607.0513934404538,1532.0,0.0,2232.640760377192,31,0,0,0,0,0,0,0,0,0,,1,,2,123386,2,1,3,0,1,,186.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2322.29052210467,356.0,9015.129344952591,0,4,0,1,80.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1699365523643584,9015.129344952591,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +23366,2,77.0,0.0,2,111,660.0,0.0,0.0,0,77,1012.4955369951375,0.0,1125.4323586255605,1620.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,123387,2,1,2,0,2,,240.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1203.46514118926,660.0,16222.225548007256,0,5,0,1,130.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09986299322530387,16222.225548007256,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +23367,2,32.0,0.0,5,111,0.0,0.0,850.0,43,64,0.0,0.0,535.7705468525322,850.0,0.0,1017.2223254299786,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,123388,1,2,0,1,1,728.0,0.0,521.0,43,2.0,0.0,3.0,3.0,1.8,2,2,696.792629468358,0.0,38663.547361242716,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021984532150096003,21479.74853402373,6,3,6,6_0,6_4,6_0_0 +23368,2,60.0,0.0,1,112,900.0,0.0,0.0,45,33,1054.6828510366015,0.0,1534.680489034855,2000.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,1,123389,2,1,1,0,1,,200.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1052.5570987091,900.0,106716.92495410159,1,1,0,1,140.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.018741169695998924,71144.61663606773,10,5,10,10_1,10_1,10_1_0 +23369,2,61.0,0.0,2,111,132.0,209.0,0.0,0,77,0.0,0.0,225.08647172511206,580.0,0.0,396.7873460194159,41,0,0,0,0,0,0,0,0,0,,2,,2,123390,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,504.801234144238,132.0,30081.77115404489,0,5,1,2,38.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01928077961333774,30081.77115404489,8,4,8,8_0,8_3,8_0_1 +23370,2,51.0,0.0,2,111,427.0,1043.0,0.0,0,48,0.0,0.0,728.1206320198701,1470.0,0.0,1980.1397220012,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,123391,1,1,2,0,1,,226.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,504.135551876006,427.0,19451.133948057544,0,1,1,2,76.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07557400015472102,19451.133948057544,5,3,5,5_1,5_3,5_0_1 +23371,2,47.0,0.0,1,111,810.0,2030.0,0.0,85,34,0.0,0.0,1381.2124401313695,2840.0,0.0,3853.9632173177715,10,2,2,2,1,2,2,2,2,2,15.0,1,,1,123392,1,1,2,0,2,,400.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,3,2,669.058007532943,810.0,182756.52027260087,6,1,1,2,280.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.015539801238083526,70290.96933561574,10,5,10,10_1,10_3,10_1_0 +23372,2,83.0,0.0,9,111,456.0,,,0,77,0.0,0.0,,831.0,519.5959595236953,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,123393,2,3,0,0,2,,110.0,720.0,21,1.0,4.0,3.0,2.0,1.5,2,2,35.59913165772703,456.0,45758.46218386742,0,5,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018160575341471526,30505.641455911613,8,4,8,8_0,8_2,8_0_0 +23373,1,43.0,320.0,2,211,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1942.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,123394,1,3,0,0,1,,349.0,267.0,32,1.0,1.0,5.0,4.0,1.9,1,1,285.071211143555,0.0,13823.29358221415,0,1,2,3,60.0,3,3,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14048750310119215,7275.417674849553,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +23374,1,63.0,47.0,2,111,200.0,0.0,0.0,0,78,0.0,0.0,341.04010867441224,200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,123395,2,1,0,1,1,677.0,120.0,265.0,11,0.0,5.0,2.0,1.0,1.0,1,1,388.326229382325,200.0,14429.098587772056,0,5,2,3,60.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.013860879720476098,14429.098587772056,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +23375,1,47.0,443.0,5,111,600.0,1500.0,0.0,0,42,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,0,,2,,3,123396,1,3,0,1,2,444.0,606.0,640.0,32,1.0,0.0,4.0,4.0,2.3,4,2,1646.75815404057,600.0,31444.274043524143,0,4,2,3,83.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06678481421111036,13671.42349718441,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +23376,2,41.0,0.0,1,111,370.0,1300.0,0.0,63,33,0.0,0.0,630.9242010476627,1670.0,0.0,2468.055262321726,10,0,0,0,0,0,0,0,0,1,5.0,1,,1,123397,2,1,2,0,1,,434.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1114.07924231011,370.0,42952.74035270017,1,1,0,1,189.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03887994075085869,17896.975146958408,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +23378,2,24.0,0.0,9,111,450.0,0.0,0.0,55,46,0.0,0.0,767.3402445174275,450.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2012.0,6,123399,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,374.775217777755,450.0,36507.813912320235,1,1,1,2,90.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012326128348324335,20282.118840177907,5,3,5,5_1,5_2,5_0_0 +23380,0,62.0,0.0,2,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,1345.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,123401,1,3,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,964.312093643701,0.0,49982.59063260397,1,1,5,0,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026909369502001117,33321.727088402644,8,4,8,8_0,8_4,8_0_1 +23381,2,74.0,0.0,5,211,1280.0,0.0,0.0,72,75,0.0,0.0,2182.6566955162384,1280.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,123402,2,1,1,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,958.583854544957,1280.0,37768.62605820204,5,5,0,1,110.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033890562977522666,25179.08403880136,7,4,7,7_1,7_1,7_0_0 +23382,2,54.0,0.0,5,111,600.0,,,68,55,0.0,119.18945493092015,,816.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,123403,2,1,0,0,2,,520.0,,43,4.0,0.0,4.0,5.0,3.0,5,5,107.86691706654285,600.0,31079.19341067512,1,1,0,1,111.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02625550763874455,10359.731136891707,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +23383,2,50.0,0.0,2,111,360.0,100.0,0.0,68,64,0.0,0.0,613.872195613942,460.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,123404,2,1,0,1,1,539.0,0.0,350.0,43,2.0,0.0,4.0,4.0,2.5,4,3,846.570087659758,360.0,46924.10536768308,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009803063828187651,18769.64214707323,5,3,5,5_0,5_4,5_0_1 +23384,2,49.0,0.0,2,112,630.0,1400.0,0.0,56,33,0.0,0.0,1074.2763423243985,2030.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,123405,2,2,3,0,1,,1900.0,1000.0,43,2.0,0.0,4.0,4.0,2.5,4,3,1535.65921560145,630.0,47516.136652741494,1,1,2,3,100.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04272232851832404,19006.4546610966,5,3,5,5_1,5_1,5_0_1 +23385,2,32.0,0.0,1,211,573.0,0.0,0.0,55,54,741.4420442787309,0.0,977.0799113521911,1352.0,105.3047811301356,0.0,31,1,2,2,1,2,2,2,2,2,30.0,1,,1,123406,2,1,1,0,1,,311.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1478.52117787721,573.0,48065.472076902006,1,1,1,2,150.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.028128299620918677,22888.320036620004,6,3,6,6_1,6_1,6_1_0 +23386,2,46.0,0.0,1,400,0.0,0.0,0.0,11,43,4746.072829664707,0.0,0.0,5111.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,123407,2,1,4,0,1,,160.0,,43,3.0,0.0,8.0,5.0,3.0,5,4,1013.15825976348,0.0,193018.67270381836,1,1,0,1,240.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026479303418704383,64339.55756793945,10,5,10,10_1,10_0,10_1_0 +23387,2,73.0,0.0,9,111,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,123408,1,1,0,0,1,,55.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2194.23117366494,500.0,14820.289198404627,0,5,0,1,77.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033737533276599216,14820.289198404627,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +23388,2,70.0,0.0,6,111,780.0,0.0,0.0,0,77,0.0,0.0,1330.0564238302077,846.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,123409,2,1,0,0,1,,0.0,376.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1562.24235986342,780.0,22715.049137700138,0,5,2,3,56.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03724403125309093,22715.049137700138,6,3,6,6_0,6_3,6_0_0 +23389,2,65.0,0.0,2,111,340.0,204.0,0.0,75,74,4535.136259457387,0.0,579.7681847465008,4844.0,0.0,387.294825779717,10,0,0,0,0,0,0,0,0,0,,1,,2,123410,2,1,2,0,2,,224.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,828.541862914267,340.0,95775.49827461515,5,5,0,1,150.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0505766097515974,63850.33218307677,10,5,10,10_1,10_3,10_0_1 +23390,1,54.0,250.0,1,400,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1073.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,123411,2,1,0,0,2,,102.0,360.0,12,1.0,3.0,2.0,1.0,1.0,1,1,2543.61584073287,0.0,8775.626419390916,0,4,2,3,53.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.12227047377826654,8775.626419390916,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +23391,2,44.0,0.0,2,111,600.0,0.0,0.0,0,48,0.0,0.0,1023.1203260232367,632.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,123412,1,1,0,1,1,1088.0,0.0,581.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1345.55955097061,600.0,30967.3391859893,0,1,2,3,100.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020408598756393597,17204.077325549613,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +23392,1,55.0,377.0,1,111,840.0,2100.0,0.0,0,85,0.0,0.0,1432.3684564325313,2940.0,0.0,3986.858500673557,71,2,2,1,2,1,1,2,2,0,,1,,1,123413,2,2,5,0,1,,480.0,423.0,31,0.0,3.0,6.0,2.0,1.5,2,1,55.1173062485042,840.0,7944.6169871587035,0,6,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.3700618928202674,5296.411324772469,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +23393,2,68.0,0.0,1,111,600.0,2000.0,0.0,75,74,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,60,0,0,0,0,0,0,0,0,0,,1,,1,123414,2,1,2,0,1,,480.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,585.446714453217,600.0,52544.36946582946,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04948199067629551,35029.57964388631,9,5,9,9_1,9_4,9_1_0 +23394,2,85.0,0.0,5,111,300.0,300.0,0.0,0,75,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,70,0,0,0,0,0,0,0,0,0,,2,,3,123415,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,946.232268367179,300.0,19172.954190443295,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03129408196776834,19172.954190443295,5,3,5,5_0,5_4,5_0_0 +23396,1,36.0,194.0,2,111,0.0,0.0,1750.0,0,68,0.0,0.0,1103.0570082258016,1750.0,0.0,2094.281258238191,50,2,2,2,2,1,2,2,2,2,20.0,2,,2,123417,1,3,0,0,1,,370.0,344.0,32,1.0,0.0,4.0,3.0,1.8,2,1,270.977373248159,0.0,18055.604683607504,0,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.09692281320208604,10030.891490893058,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +23397,2,60.0,0.0,1,111,200.0,0.0,0.0,52,37,0.0,0.0,341.04010867441224,200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,123418,2,1,1,0,1,,850.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,767.114234048934,200.0,81810.2107484558,1,1,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0024446826156571794,45450.11708247544,10,5,10,10_1,10_4,10_1_0 +23398,2,36.0,0.0,7,112,864.0,0.0,0.0,47,37,0.0,529.7309108040896,1473.293269473461,1264.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,123419,2,3,3,0,1,,425.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,439.467954824137,864.0,53957.24491684107,1,1,0,1,73.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023425955160388146,29976.247176022815,8,4,8,8_1,8_0,8_0_0 +23399,1,75.0,119.0,2,111,180.0,500.0,0.0,0,77,0.0,0.0,306.936097806971,680.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,123420,2,2,0,1,2,500.0,240.0,250.0,11,0.0,0.0,2.0,1.0,1.0,1,1,433.41484106493,180.0,10229.70848056537,0,5,2,3,52.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06647305749639681,10229.70848056537,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +23400,2,41.0,0.0,9,111,540.0,,,0,34,0.0,0.0,,624.0,116.38949493330776,,10,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,123421,2,3,0,0,2,,260.0,,32,1.0,0.0,4.0,4.0,2.1,2,1,94.06881434151757,540.0,50905.6631307677,0,1,1,2,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01225796820281181,24240.791967032237,7,4,7,7_1,7_2,7_0_0 +23401,2,57.0,0.0,2,111,250.0,60.0,0.0,0,77,0.0,0.0,426.3001358430153,310.0,0.0,113.91024287638734,50,2,2,2,2,1,2,2,2,0,,2,,2,123422,1,1,0,1,1,700.0,0.0,317.0,11,0.0,3.0,4.0,1.0,1.0,1,1,349.326107514772,250.0,10161.477321319486,0,7,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.030507375079172637,10161.477321319486,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +23402,2,43.0,0.0,2,111,960.0,,,56,63,0.0,0.0,,1092.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,,2,123423,2,1,0,0,1,,440.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,115.29288628379754,960.0,37169.89411305096,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029378614764914834,16160.823527413464,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +23403,2,77.0,0.0,1,111,467.0,0.0,0.0,0,77,0.0,0.0,796.3286537547526,467.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123424,2,1,2,0,2,,234.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1081.57570477744,467.0,18320.620279248396,0,5,0,1,76.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025490403320512393,18320.620279248396,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +23404,2,81.0,0.0,1,111,339.0,1456.0,0.0,78,74,0.0,0.0,578.0629842031287,1795.0,0.0,2764.221893800333,50,0,0,0,0,0,0,0,0,0,,1,,1,123425,2,1,2,0,1,,204.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,367.432981433082,339.0,24936.90612328233,5,5,0,1,132.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07198166408960008,16624.60408218822,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +23405,2,24.0,0.0,9,111,700.0,0.0,0.0,43,63,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,123426,2,1,0,0,1,,220.0,440.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1300.37508148111,700.0,24129.583289208338,1,1,2,3,42.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029010032689336433,16086.388859472225,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +23406,1,21.0,270.0,1,112,0.0,0.0,1300.0,0,85,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,71,0,0,0,0,0,0,0,0,0,,8,,1,123427,1,3,0,0,2,,320.0,490.0,31,0.0,0.0,2.0,2.0,1.3,1,1,861.759963613868,0.0,12687.520825526972,0,6,2,3,52.0,8,2,3,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10246288600247519,9759.631404251517,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +23407,2,80.0,0.0,2,120,610.0,,,0,86,0.0,0.0,,830.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,2,123428,2,1,0,0,2,,250.0,,11,0.0,9.0,6.0,1.0,1.0,1,1,100.05585390001096,610.0,20079.751338542697,0,5,0,1,160.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04133517323029947,20079.751338542697,5,3,5,5_1,5_1,5_0_1 +23408,2,54.0,0.0,1,111,4200.0,0.0,0.0,52,33,0.0,0.0,7161.842282162657,4200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,60.0,1,,1,123429,1,1,2,0,1,,397.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,462.046740713747,4200.0,95640.00022569133,1,1,1,2,200.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043914679946558316,47820.000112845664,10,5,10,10_1,10_4,10_1_0 +23409,2,78.0,0.0,2,120,337.0,0.0,0.0,0,86,1880.4995233982606,0.0,574.6525831163846,2240.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,123430,2,1,2,0,1,,130.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,593.249007881847,337.0,12803.886877171299,0,6,0,1,90.0,0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1749468752331614,12803.886877171299,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +23410,2,50.0,0.0,2,111,360.0,600.0,0.0,0,53,0.0,0.0,613.872195613942,960.0,0.0,1139.1024287638734,60,0,0,0,0,0,0,0,0,2,15.0,1,,2,123431,2,2,2,0,1,,400.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1898.12777190556,360.0,34519.053145706086,0,1,0,1,120.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027810728062204013,34519.053145706086,9,5,9,9_1,9_3,9_0_1 +23411,1,30.0,181.0,1,111,1400.0,0.0,0.0,0,55,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,123432,1,3,0,0,1,,140.0,622.0,22,2.0,0.0,2.0,2.0,1.5,2,2,621.879381789687,1400.0,15312.17879771063,0,4,2,3,46.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09143048931803997,10208.119198473754,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +23412,2,57.0,0.0,2,111,400.0,150.0,0.0,74,46,0.0,0.0,682.0802173488245,967.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,3,50.0,2,,2,123433,2,1,0,2,1,,180.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,704.26613963868,400.0,60266.101633845,5,1,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0160455044176433,40177.40108923,9,5,9,9_0,9_4,9_0_1 +23413,2,71.0,0.0,2,112,457.0,0.0,0.0,90,74,2109.365702073203,0.0,779.276648321032,2457.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,123434,1,2,3,0,2,,106.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1611.65056583367,457.0,84923.3103120269,1,5,0,1,100.0,9,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028931985705366904,56615.54020801793,10,5,10,10_1,10_1,10_0_1 +23414,2,59.0,0.0,6,111,1000.0,0.0,0.0,77,47,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,123435,2,2,3,0,1,,321.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,672.971393844499,1000.0,40641.4358458761,5,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02460542988176611,27094.2905639174,7,4,7,7_1,7_4,7_0_0 +23415,1,59.0,320.0,5,111,450.0,1100.0,0.0,85,78,0.0,0.0,767.3402445174275,1550.0,0.0,2088.354452733768,71,2,2,2,2,1,2,2,2,0,,2,,3,123436,2,2,0,0,1,,800.0,600.0,41,0.0,8.0,5.0,2.0,1.5,2,2,1086.0436282682,450.0,10209.466666666665,6,7,2,3,110.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.15181987958887833,6806.31111111111,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23416,1,62.0,200.0,2,221,0.0,,,56,86,0.0,0.0,,549.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,123437,2,1,0,0,2,,0.0,500.0,42,1.0,0.0,3.0,2.0,1.5,2,2,141.90920580933525,0.0,14702.071258427237,1,5,2,3,40.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03734167726097184,9801.38083895149,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +23417,2,77.0,0.0,1,112,480.0,1500.0,0.0,77,77,0.0,0.0,818.4962608185893,1980.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,,1,123438,2,2,2,0,1,,280.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1130.04237061527,480.0,49432.69498278908,5,5,0,1,120.0,9,2,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04005446194445547,32955.12998852605,8,4,8,8_1,8_1,8_1_0 +23418,2,62.0,0.0,7,112,1480.0,0.0,0.0,0,56,0.0,0.0,2523.6968041906507,1630.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,3,15.0,1,,5,123439,1,2,3,0,1,,480.0,475.0,32,1.0,1.0,3.0,2.0,1.5,2,2,123.227997105079,1480.0,16308.337472023297,0,1,2,3,72.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09994887601487522,10872.224981348865,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +23420,0,26.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,789.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,5.0,2,,1,123441,2,1,0,0,1,,344.0,,22,2.0,0.0,1.0,2.0,1.5,2,2,489.74034415094,0.0,16547.850440527378,0,1,5,0,58.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04767990880964565,11031.90029368492,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +23421,0,47.0,0.0,2,112,1200.0,0.0,0.0,0,52,0.0,1721.6254601132912,2046.2406520464733,2570.0,96.99124577775646,0.0,50,2,2,2,2,1,2,2,2,2,90.0,1,,2,123442,2,2,2,0,2,,840.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,989.017985259354,1200.0,22553.245528368145,0,1,5,0,80.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.11395255715047209,15035.497018912096,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +23422,2,62.0,0.0,7,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,946.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,123443,2,2,5,0,1,,261.0,500.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1250.60435795777,0.0,19187.14427851032,0,5,2,3,60.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04930384565146174,19187.14427851032,5,3,5,5_1,5_2,5_0_0 +23423,1,43.0,467.0,7,111,0.0,,,0,55,0.0,0.0,,44.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,1,5.0,1,,5,123444,2,1,0,0,2,,0.0,600.0,32,2.0,0.0,3.0,4.0,2.3,3,2,126.09771399077066,0.0,10084.298951599878,0,1,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.004363218525271842,4384.477805043425,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +23424,2,72.0,0.0,6,111,469.0,626.0,0.0,78,78,0.0,476.7578197236806,799.7390548414967,1455.0,0.0,1188.463534010308,71,0,0,0,0,0,0,0,0,0,,1,,4,123445,2,1,2,0,1,,190.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,637.567385967948,469.0,39973.83041574584,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036398813545445725,26649.220277163895,7,4,7,7_1,7_4,7_0_0 +23425,1,50.0,323.0,7,112,1130.0,0.0,0.0,0,67,0.0,0.0,1926.8766140104292,1130.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,15.0,2,,5,123446,2,3,0,0,1,,0.0,288.0,32,1.0,0.0,3.0,3.0,1.8,2,1,581.15099717648,1130.0,11128.025446034313,0,1,2,3,45.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10154541841047797,6182.236358907951,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +23426,0,87.0,0.0,1,211,3639.0,0.0,0.0,0,74,0.0,0.0,6205.224777330931,3689.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,123447,1,1,2,0,2,,407.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1357.58408725702,3639.0,44072.75087760264,0,5,5,0,133.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08370251292561626,44072.75087760264,10,5,10,10_1,10_1,10_1_0 +23428,1,38.0,253.0,5,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,123.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,123449,2,1,0,1,1,481.0,0.0,359.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1251.92580080562,0.0,12349.00270603293,6,4,2,3,65.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009960318491136948,5880.4774790633,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23429,2,73.0,0.0,5,111,0.0,0.0,0.0,77,72,0.0,0.0,0.0,2972.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123450,1,3,2,0,1,,838.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1010.94639137732,0.0,59787.95919503912,5,5,0,1,123.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049709005626112766,39858.63946335941,9,5,9,9_1,9_4,9_0_0 +23430,2,77.0,0.0,2,112,1200.0,0.0,0.0,0,72,0.0,397.2981831030672,2046.2406520464733,1552.0,72.05063972061909,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,123451,1,1,1,0,1,,100.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,416.622391952765,1200.0,9926.787762354546,0,5,0,1,115.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15634463405026797,9926.787762354546,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +23431,2,64.0,0.0,1,111,451.0,1117.0,0.0,0,75,0.0,0.0,769.0454450607996,1568.0,0.0,2120.6290215487443,30,2,2,1,2,1,2,2,2,0,,1,,1,123452,2,1,2,0,1,,468.0,,21,1.0,0.0,6.0,3.0,2.0,3,3,245.958917420383,451.0,58036.43789301478,0,5,0,1,200.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.027017509291153846,29018.21894650739,8,4,8,8_1,8_2,8_1_0 +23432,2,60.0,0.0,5,112,1300.0,0.0,0.0,74,74,0.0,595.9472746546007,2216.7607063836795,1820.0,96.99124577775646,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,123453,2,1,1,0,1,,2315.0,,41,0.0,0.0,7.0,3.0,2.0,3,3,833.339457056019,1300.0,93352.28575758671,5,7,0,1,125.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019496041100976354,46676.142878793355,10,5,10,10_1,10_0,10_0_0 +23433,2,52.0,0.0,2,111,300.0,0.0,0.0,0,62,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,123454,2,1,0,0,1,,180.0,480.0,12,1.0,3.0,2.0,1.0,1.0,1,1,838.176009276243,300.0,24421.481250236255,0,1,2,3,50.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012284267155052184,24421.481250236255,7,4,7,7_0,7_3,7_0_1 +23434,1,49.0,380.0,2,111,0.0,0.0,770.0,0,55,0.0,0.0,485.3450836193527,770.0,0.0,921.4837536248043,71,2,2,2,2,1,2,2,2,2,30.0,2,,2,123455,1,3,0,0,1,,700.0,535.0,32,1.0,0.0,3.0,3.0,2.0,3,2,1866.04828109824,0.0,15361.46067349949,0,1,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05012544160779904,7680.730336749745,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23435,2,36.0,0.0,2,111,710.0,0.0,0.0,0,55,0.0,0.0,1210.6923857941633,1010.0,415.67676761895626,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,123456,1,1,0,1,1,93.0,400.0,381.0,22,3.0,4.0,4.0,5.0,3.0,5,5,358.225034616126,710.0,58185.98739967581,0,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017358131143541053,19395.32913322527,5,3,5,5_0,5_3,5_0_1 +23436,2,46.0,0.0,7,112,800.0,0.0,0.0,0,62,0.0,0.0,1364.160434697649,815.0,20.783838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,123457,2,2,0,0,1,,0.0,288.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1293.23467056534,800.0,23624.823928035414,0,1,2,3,50.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03449761160051844,23624.823928035414,6,3,6,6_0,6_0,6_0_0 +23437,1,59.0,247.0,1,111,106.0,0.0,0.0,0,69,0.0,0.0,180.7512575974385,106.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,123458,1,1,0,1,2,,0.0,325.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3509.26425248522,106.0,4839.267902296582,0,4,2,3,16.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.021904139663293975,4839.267902296582,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +23438,2,39.0,0.0,1,111,540.0,0.0,0.0,0,46,0.0,0.0,920.8082934209131,540.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,1,123459,2,2,0,0,1,,0.0,600.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1320.8955719601,540.0,36286.610614546924,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014881522160780694,36286.610614546924,9,5,9,9_0,9_4,9_1_0 +23439,1,42.0,178.0,2,111,344.0,0.0,0.0,0,54,0.0,0.0,586.588986919989,344.0,0.0,0.0,42,2,2,2,2,1,2,2,2,3,75.0,2,,2,123460,1,3,0,1,1,1340.0,0.0,530.0,32,2.0,0.0,4.0,3.0,2.0,3,2,1054.61487267429,344.0,25193.535947796947,0,1,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.013654296114399977,12596.767973898473,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +23440,2,44.0,0.0,2,111,750.0,600.0,0.0,42,38,0.0,0.0,1278.9004075290459,1350.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,123461,2,1,1,0,1,,630.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,260.225589909325,750.0,98886.77447792293,1,1,1,2,240.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013651977295521917,42994.24977300997,9,5,9,9_1,9_2,9_0_1 +23441,1,52.0,309.0,8,111,300.0,,,85,47,0.0,0.0,,392.0,127.47420873647992,,31,0,0,0,0,0,0,0,0,0,,2,2000.0,6,123462,2,1,0,0,1,,355.0,439.0,42,1.0,2.0,4.0,2.0,1.5,2,2,49.43509874965174,300.0,18282.146875,6,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021441683117426547,12188.097916666666,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +23442,2,48.0,0.0,2,111,480.0,,,0,22,0.0,0.0,,540.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,1,,2,123463,2,1,0,0,2,,100.0,,32,3.0,0.0,5.0,5.0,2.5999999999999996,3,3,41.04466007431963,480.0,15685.113253012049,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03442754867557635,6032.735866543097,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +23443,2,57.0,0.0,6,112,480.0,,,77,85,0.0,0.0,,732.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,123464,2,1,0,0,1,,516.0,,41,3.0,4.0,3.0,5.0,3.0,5,5,129.14677894131782,480.0,18442.0,6,6,0,1,52.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039692007374471316,6147.333333333333,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +23444,1,25.0,414.0,9,120,400.0,,,0,52,0.0,0.0,,442.0,58.19474746665388,,43,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,123465,2,2,0,0,2,,300.0,500.0,32,1.0,0.0,4.0,3.0,1.6,1,1,176.01171236316767,400.0,15722.86561264822,0,1,2,3,39.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028111923798702077,9826.791007905136,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +23445,1,50.0,421.0,7,111,600.0,,,0,56,0.0,0.0,,738.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,0,,1,,5,123466,2,1,0,0,2,,350.0,700.0,32,1.0,1.0,4.0,3.0,1.8,2,1,88.31557384113064,600.0,24218.65906066662,0,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030472372485666695,13454.810589259234,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +23446,2,54.0,0.0,1,111,868.0,0.0,0.0,0,34,0.0,0.0,1480.114071646949,868.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,,1,123467,2,3,0,0,1,,0.0,800.0,32,1.0,0.0,3.0,2.0,1.3,1,1,937.072649234068,868.0,19533.321508432684,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04443688696903278,15025.631929563602,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +23447,2,85.0,0.0,2,111,400.0,310.0,0.0,78,74,0.0,0.0,682.0802173488245,710.0,0.0,588.5362548613346,70,0,0,0,0,0,0,0,0,0,,2,,2,123468,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1792.68857693231,400.0,38779.606147247454,5,5,0,1,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018308592338563377,25853.070764831635,7,4,7,7_0,7_3,7_0_1 +23448,2,68.0,0.0,7,111,1260.0,,,77,75,0.0,0.0,,1375.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,1,,5,123469,1,3,0,0,2,,738.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,102.16732561071501,1260.0,44425.044625841845,5,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030951009989535695,29616.696417227897,8,4,8,8_1,8_3,8_0_0 +23449,2,31.0,0.0,2,111,530.0,0.0,0.0,31,56,0.0,0.0,903.7562879871924,530.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,2,123470,2,1,0,0,1,,350.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1795.88371080861,530.0,34580.85507907657,1,1,1,2,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01532639950018705,19211.58615504254,5,3,5,5_0,5_3,5_0_1 +23450,1,24.0,254.0,1,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2221.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,123471,2,3,0,0,2,,137.0,252.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1173.15281371147,0.0,17404.712580939675,0,4,2,3,40.0,4,3,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.12760911676486236,17404.712580939675,4,2,4_1,4_0_1,4_1_1,4_1_0_1 +23451,2,39.0,0.0,8,111,725.0,645.0,0.0,21,56,0.0,0.0,1236.2703939447445,1370.0,0.0,1224.535110921164,41,2,2,2,2,1,2,2,2,0,,1,2003.0,6,123472,2,2,4,0,2,,780.0,784.0,43,2.0,5.0,2.0,4.0,2.1,2,2,888.897627476458,725.0,30115.203567885095,4,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04549197208352828,14340.57312756433,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +23452,2,48.0,0.0,7,111,455.0,893.0,0.0,46,47,0.0,0.0,775.8662472342878,1348.0,0.0,1695.3641148102315,50,1,2,2,1,2,2,2,2,2,15.0,1,,5,123473,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,745.987050834484,455.0,47097.59414959413,1,1,1,2,92.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.028621419508572003,20477.214847649622,5,3,5,5_1,5_2,5_0_0 +23453,2,35.0,0.0,2,112,0.0,0.0,2600.0,45,42,0.0,0.0,1638.8275550783337,2600.0,0.0,3111.50358366817,50,0,0,0,0,0,0,0,0,4,75.0,1,,2,123474,2,1,1,0,1,,500.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,1427.10170576379,0.0,47939.95582502026,1,1,1,2,170.0,10,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054234509716486606,22828.55039286679,6,3,6,6_1,6_1,6_0_1 +23454,1,30.0,439.0,1,111,0.0,0.0,625.0,62,68,0.0,0.0,393.9489315092149,625.0,0.0,747.9575922279255,42,2,2,2,2,1,2,1,2,3,25.0,2,,1,123475,1,2,0,0,1,,520.0,402.0,43,2.0,0.0,5.0,5.0,2.4,2,2,1599.30511586511,0.0,24551.227206179836,4,1,2,3,81.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.025456975928383738,10229.678002574932,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +23455,1,38.0,320.0,9,112,980.0,0.0,0.0,21,54,0.0,556.2174563442941,1671.09653250462,1432.0,44.33885521268867,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,123476,2,1,1,0,1,,322.0,750.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1422.71396943014,980.0,29466.381563866846,1,1,2,3,90.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.048597755272265605,12277.658984944519,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +23456,2,54.0,0.0,6,111,600.0,,,43,45,0.0,0.0,,720.0,166.2707070475825,,41,0,0,0,0,0,0,0,0,2,45.0,1,,4,123477,1,3,0,0,2,,600.0,900.0,43,2.0,1.0,5.0,3.0,2.0,3,2,104.36897902249007,600.0,54209.86658702154,1,1,2,3,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013281715033262528,27104.93329351077,7,4,7,7_1,7_2,7_0_0 +23457,1,52.0,310.0,7,111,660.0,,,81,81,0.0,0.0,,840.0,249.40606057137379,,71,2,2,2,2,1,2,2,2,0,,2,,5,123478,1,2,0,0,2,,330.0,528.0,43,5.0,1.0,4.0,5.0,3.0,5,5,112.71381058143709,660.0,17868.254126162858,4,4,2,3,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.047010748451918674,5956.084708720952,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23458,2,53.0,0.0,2,111,510.0,1000.0,0.0,0,52,0.0,0.0,869.6522771197511,1510.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,123479,2,1,3,0,1,,912.0,264.0,32,1.0,1.0,3.0,2.0,1.5,2,2,251.475380126744,510.0,23463.914947730394,0,1,2,3,61.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06435413712348367,15642.609965153597,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +23459,1,39.0,357.0,6,111,572.0,108.0,0.0,0,56,0.0,0.0,975.374710808819,680.0,0.0,205.0384371774972,50,2,1,2,2,1,2,2,2,3,20.0,2,,4,123480,2,1,0,1,1,686.0,0.0,333.0,32,3.0,0.0,4.0,5.0,2.8,4,3,335.272757119854,572.0,29739.108503420844,0,1,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.022865513938381193,10621.110179793159,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +23460,2,68.0,0.0,6,111,4000.0,0.0,0.0,34,34,0.0,0.0,6820.802173488245,4000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,4,123481,2,1,2,0,1,,700.0,,43,2.0,3.0,6.0,3.0,1.8,2,2,1331.88914460472,4000.0,178530.6012793289,1,1,1,2,180.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022405122546703363,99183.66737740494,10,5,10,10_1,10_3,10_0_0 +23461,2,62.0,0.0,2,111,740.0,0.0,0.0,0,77,0.0,0.0,1261.8484020953254,740.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123482,2,1,0,0,1,,278.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,982.099371229104,740.0,12714.478243108842,0,5,0,1,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05820136586423236,12714.478243108842,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +23462,2,64.0,0.0,2,111,180.0,60.0,0.0,0,77,0.0,0.0,306.936097806971,240.0,0.0,113.91024287638734,20,0,0,0,0,0,0,0,0,0,,2,,2,123483,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,856.19292573572,180.0,51120.9137754022,0,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004694751761567309,51120.9137754022,10,5,10,10_0,10_4,10_0_1 +23463,1,37.0,144.0,2,111,360.0,0.0,0.0,85,63,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,123484,1,1,0,1,1,876.0,280.0,286.0,42,1.0,0.0,5.0,5.0,2.4,2,2,578.087005302341,360.0,31458.70791554552,7,1,2,3,86.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01144357234780465,13107.794964810635,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +23464,2,40.0,0.0,1,111,727.0,0.0,0.0,0,63,0.0,0.0,1239.6807950314885,727.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,123485,2,1,0,0,1,,0.0,550.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2131.0966988663,727.0,17252.433484079782,0,1,3,4,37.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.042138982924980514,17252.433484079782,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +23465,2,36.0,0.0,1,112,530.0,0.0,0.0,46,63,1371.087706347582,0.0,903.7562879871924,1986.0,216.15191916185728,0.0,50,2,2,2,1,2,2,2,2,2,25.0,1,,1,123486,2,3,3,0,1,,450.0,600.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2169.17754425613,530.0,26107.359164719077,4,1,2,3,80.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.07607050515794174,14504.08842484393,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +23466,2,78.0,0.0,2,111,250.0,0.0,0.0,0,78,0.0,0.0,426.3001358430153,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,123487,1,3,0,1,1,301.0,0.0,510.0,11,0.0,3.0,1.0,1.0,1.0,1,1,2364.23695263699,250.0,18559.66802729368,0,5,2,3,33.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01347006851805497,18559.66802729368,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +23467,1,60.0,304.0,5,111,500.0,430.0,0.0,85,67,0.0,0.0,852.6002716860306,930.0,0.0,816.3567406141093,70,0,0,0,0,0,0,0,0,0,,1,,3,123488,2,1,2,0,1,,190.0,329.0,42,1.0,3.0,2.0,2.0,1.5,2,2,1451.71356185926,500.0,8336.380913069328,6,4,2,3,54.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11155920173249236,5557.587275379552,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +23468,2,67.0,0.0,5,112,1424.0,0.0,0.0,77,75,0.0,728.3800023556231,2428.2055737618152,1974.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,123489,1,1,2,0,1,,150.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,66.928526574181,1424.0,32866.24437122738,6,5,0,1,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06006162364350124,21910.829580818256,6,3,6,6_1,6_0,6_0_0 +23469,2,54.0,0.0,1,111,1200.0,150.0,0.0,0,67,0.0,0.0,2046.2406520464733,1350.0,0.0,284.77560719096834,50,2,2,2,2,1,2,2,2,2,10.0,2,,1,123490,2,2,0,0,1,,0.0,570.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1108.61274034313,1200.0,20134.60097937242,0,1,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.06704875857152837,20134.60097937242,5,3,5,5_0,5_4,5_1_0 +23470,2,66.0,0.0,2,111,0.0,0.0,2700.0,78,78,0.0,0.0,1701.8593841198083,2700.0,0.0,3231.1767984246385,71,0,0,0,0,0,0,0,0,0,,1,,2,123491,2,1,1,0,1,,500.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,1178.96981641911,0.0,53509.62355570475,5,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.050458213319128246,26754.811777852374,7,4,7,7_1,7_3,7_0_1 +23471,2,45.0,0.0,9,111,750.0,,,63,47,0.0,0.0,,813.0,87.29212119998083,,31,0,0,0,0,0,0,0,0,2,60.0,1,2007.0,6,123492,1,2,0,0,2,,120.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,105.43430658946703,750.0,60470.81689965505,1,1,1,2,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013444501689948853,26291.659521589154,7,4,7,7_1,7_2,7_0_0 +23472,2,87.0,0.0,2,111,720.0,,,86,77,0.0,0.0,,996.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,0,,1,,2,123493,2,1,0,0,2,,720.0,,41,0.0,7.0,4.0,3.0,2.0,3,3,72.29206346397196,720.0,43044.06081962787,6,5,0,1,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023139080770600277,21522.030409813935,6,3,6,6_1,6_2,6_0_1 +23473,1,27.0,415.0,7,111,600.0,,,0,52,0.0,0.0,,750.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,123494,2,1,0,0,2,,0.0,480.0,32,1.0,0.0,2.0,3.0,1.6,1,1,93.56416076777106,600.0,14531.107547922695,0,4,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05161340919999018,9081.942217451684,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +23474,2,27.0,0.0,1,111,950.0,0.0,0.0,46,46,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,4,40.0,1,,1,123495,1,1,3,0,2,,200.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,275.306064952154,950.0,48674.20951249853,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01951752292466218,32449.473008332352,8,4,8,8_1,8_3,8_1_0 +23475,2,53.0,0.0,2,111,350.0,2173.0,0.0,0,90,0.0,0.0,596.8201901802214,2523.0,0.0,4125.449296173161,60,0,0,0,0,0,0,0,0,0,,1,,2,123496,2,1,2,0,1,,260.0,,22,1.0,3.0,7.0,2.0,1.5,2,2,369.738060617712,350.0,55303.76155341178,0,1,0,1,150.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04562076663742508,36869.17436894119,9,5,9,9_1,9_3,9_0_1 +23476,1,54.0,199.0,2,111,220.0,,,85,67,0.0,0.0,,320.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,2,,2,123497,1,1,0,0,2,,240.0,211.0,42,1.0,0.0,3.0,2.0,1.5,2,2,130.13151324372734,220.0,14472.27139874739,6,4,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022111249242305998,9648.18093249826,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23477,2,66.0,0.0,9,300,140.0,,,0,86,0.0,0.0,,278.0,191.2113131047199,,33,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123498,1,1,0,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,88.97799986228166,140.0,34881.14736868776,0,5,1,2,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007969921317713192,34881.14736868776,9,5,9,9_1,9_1,9_0_0 +23478,2,42.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,660.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,123499,2,2,0,1,1,,192.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,241.203921244674,0.0,34396.77110236167,0,1,1,2,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019187847546384508,19109.317279089817,5,3,5,5_0,5_4,5_0_1 +23479,2,82.0,0.0,2,111,430.0,1940.0,0.0,0,86,0.0,0.0,733.2362336499863,2370.0,0.0,3683.0978530031907,71,0,0,0,0,0,0,0,0,0,,1,,2,123500,1,2,3,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,480.342537535048,430.0,15667.85340833112,0,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15126513749099746,15667.85340833112,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +23480,2,61.0,0.0,2,400,0.0,0.0,0.0,0,78,0.0,0.0,0.0,624.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123501,2,1,3,0,2,,89.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1045.8206833437,0.0,65839.80407088484,0,5,0,1,70.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.009477549467312895,65839.80407088484,10,5,10,10_1,10_0,10_0_1 +23481,2,66.0,0.0,6,111,560.0,1200.0,0.0,77,77,0.0,0.0,954.9123042883542,1760.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,4,123502,2,1,1,0,1,,300.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1610.56017380902,560.0,37710.30563044814,5,5,0,1,84.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046671592037666666,25140.203753632097,7,4,7,7_1,7_3,7_0_0 +23482,2,47.0,0.0,6,111,0.0,0.0,0.0,43,37,0.0,0.0,0.0,931.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,1,,4,123503,1,2,3,0,1,,338.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,601.838673231349,0.0,123625.17669820583,1,1,1,2,140.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007530828467673378,47548.14488392533,10,5,10,10_1,10_4,10_0_0 +23483,2,59.0,0.0,1,211,1400.0,0.0,0.0,0,63,0.0,0.0,2387.2807607208856,1435.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,1,3.0,1,,1,123504,2,2,2,0,1,,180.0,391.0,12,1.0,0.0,1.0,1.0,1.0,1,1,611.254012318146,1400.0,20976.682631250034,0,1,2,3,40.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06840929165139807,20976.682631250034,5,3,5,5_1,5_1,5_1_0 +23484,2,47.0,0.0,2,111,750.0,0.0,0.0,52,48,2784.3627267366282,397.2981831030672,1278.9004075290459,3800.0,152.4148147936173,0.0,31,2,2,2,2,2,2,2,1,1,5.0,1,,2,123505,2,3,1,0,1,,600.0,,43,2.0,3.0,8.0,3.0,2.0,3,2,776.678715827732,750.0,78510.67341521036,1,1,1,2,220.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.04840106236133497,39255.33670760518,9,5,9,9_1,9_2,9_0_1 +23485,2,53.0,0.0,6,300,700.0,0.0,0.0,54,52,738.277995725621,0.0,1193.6403803604428,1466.0,91.44888887617039,0.0,70,0,0,0,0,0,0,0,0,2,60.0,1,,4,123506,2,1,2,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1586.40700793034,700.0,35613.07048145203,4,1,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041164661743039566,23742.046987634687,6,3,6,6_1,6_0,6_0_0 +23486,0,48.0,0.0,1,112,70.0,0.0,0.0,0,67,0.0,198.6490915515336,119.36403803604428,250.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,123507,2,2,2,0,2,,50.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,800.844064622513,70.0,17485.838161608222,0,1,0,1,30.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014297284333152423,17485.838161608222,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +23487,1,51.0,22.0,5,111,300.0,300.0,0.0,56,47,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,1,35.0,8,,3,123508,2,2,0,0,1,,280.0,540.0,43,2.0,0.0,4.0,4.0,2.5,4,3,174.373428521731,300.0,32232.652741912872,1,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01861466398078387,12893.061096765148,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +23488,0,81.0,0.0,5,111,1757.0,0.0,0.0,0,77,0.0,0.0,2996.0373547047116,1837.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,123509,2,2,2,0,1,,131.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1604.55944431925,1757.0,14345.970674193524,0,5,0,1,85.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12804989231607147,14345.970674193524,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +23489,1,51.0,396.0,7,111,310.0,,,0,85,0.0,0.0,,460.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,5,123510,2,2,0,0,2,,419.0,453.0,31,1.0,0.0,4.0,3.0,1.8,2,2,117.02668356997007,310.0,11681.607843408856,0,6,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03937814093455868,6489.782135227142,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23490,1,59.0,254.0,9,111,420.0,,,71,90,0.0,0.0,,530.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,123511,2,2,0,0,1,,270.0,320.0,41,0.0,4.0,2.0,2.0,1.5,2,2,128.4848544872949,420.0,9400.577983059286,7,7,2,3,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.056379512084800444,6267.05198870619,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23491,2,63.0,0.0,7,111,540.0,463.0,0.0,54,42,0.0,0.0,920.8082934209131,1003.0,0.0,879.0073741961223,20,0,0,0,0,0,0,0,0,2,20.0,2,,5,123512,2,1,0,1,1,,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,315.42163608212,540.0,68344.79805885765,1,1,1,2,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014675586562363232,45563.198705905095,10,5,10,10_0,10_2,10_0_0 +23492,2,46.0,0.0,5,111,790.0,,,0,54,0.0,0.0,,940.0,207.83838380947813,,42,0,0,0,0,0,0,0,0,2,15.0,2,,3,123513,2,2,0,0,2,,281.0,460.0,12,1.0,0.0,3.0,1.0,1.0,1,1,88.76488019822844,790.0,28460.346225998386,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0330284105659022,28460.346225998386,8,4,8,8_0,8_2,8_0_0 +23493,2,52.0,0.0,6,111,520.0,,,0,68,0.0,0.0,,658.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,123514,2,1,0,0,2,,450.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,104.38106543818337,520.0,19594.757267464447,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033580410873093956,13063.171511642964,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +23494,1,66.0,220.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,987.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,2,123515,1,3,0,1,1,,166.0,330.0,11,0.0,2.0,3.0,1.0,1.0,1,1,270.195689063876,250.0,9981.120819055248,0,5,2,3,65.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.09888668997129958,9981.120819055248,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +23495,2,45.0,0.0,1,111,622.0,1945.0,0.0,54,46,0.0,0.0,1060.634737977422,2567.0,0.0,3692.5903732428897,50,0,0,0,0,0,0,0,0,2,12.0,1,,1,123516,2,1,1,0,1,,445.0,,43,4.0,0.0,6.0,4.0,2.5,4,4,710.439690028121,622.0,63985.3768251015,1,1,1,2,126.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040118541569531936,25594.1507300406,7,4,7,7_1,7_2,7_1_0 +23496,2,74.0,0.0,6,111,650.0,,,77,75,0.0,0.0,,742.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,1,,4,123517,2,1,0,0,2,,300.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,42.10762638750041,650.0,44230.51134180005,5,5,0,1,172.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01677574998548056,29487.007561200033,8,4,8,8_1,8_2,8_0_0 +23497,2,36.0,0.0,1,111,950.0,0.0,0.0,81,62,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,,1,123518,2,1,3,0,1,,280.0,,43,2.0,0.0,4.0,5.0,3.0,5,4,1520.7114401991,950.0,51918.51336739589,4,1,1,2,75.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018297904511969075,17306.171122465297,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +23498,1,50.0,219.0,1,111,300.0,700.0,0.0,85,85,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,10,2,2,2,1,2,2,2,2,0,,1,,1,123519,2,2,5,0,1,,210.0,408.0,41,0.0,0.0,4.0,5.0,2.4,2,2,654.945317707534,300.0,24127.7375430024,6,5,2,3,68.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.04144607417988194,10053.223976251,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +23499,2,83.0,0.0,1,111,226.0,150.0,0.0,86,77,0.0,0.0,385.3753228020858,1966.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,2,,1,123520,1,1,0,1,2,796.0,0.0,700.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1638.85728602048,226.0,35766.66757729931,6,5,2,3,88.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05496737977478778,23844.445051532875,6,3,6,6_0,6_3,6_1_0 +23500,2,35.0,0.0,5,111,500.0,400.0,0.0,85,64,0.0,0.0,852.6002716860306,900.0,0.0,759.4016191759156,41,2,2,2,2,1,2,2,2,0,,2,,3,123521,2,2,0,0,1,,0.0,350.0,41,0.0,0.0,4.0,4.0,2.1,2,2,340.664431932192,500.0,21413.467111735274,7,7,2,3,81.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04202962534295863,10196.88910082632,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +23501,2,74.0,0.0,1,111,1180.0,0.0,0.0,0,74,0.0,0.0,2012.1366411790323,1180.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,123522,2,2,2,0,1,,166.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1375.12822605577,1180.0,26180.241282101542,0,5,0,1,200.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.045072159086888254,26180.241282101542,7,4,7,7_1,7_2,7_1_0 +23502,1,58.0,169.0,1,111,270.0,360.0,0.0,0,67,0.0,0.0,460.40414671045653,630.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,0,,2,,1,123523,2,2,0,0,1,,145.0,187.0,12,1.0,8.0,2.0,1.0,1.0,1,1,460.094215860216,270.0,8251.944407912151,0,4,2,3,45.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07634564277916629,8251.944407912151,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +23503,1,30.0,351.0,2,111,300.0,600.0,0.0,0,56,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,50,2,2,2,2,1,2,2,1,0,,2,,2,123524,1,3,0,0,1,,220.0,430.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1215.78589476906,300.0,9062.468474888718,0,1,2,3,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.09931069029302765,6971.129596068244,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23504,2,46.0,0.0,9,111,300.0,900.0,0.0,46,47,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,123525,1,2,4,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1114.63887430605,300.0,63824.45088696244,1,1,1,2,68.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018801571863505475,35458.02827053469,9,5,9,9_1,9_3,9_0_0 +23506,2,73.0,0.0,2,111,1155.0,0.0,0.0,0,77,2636.7071275915036,59.594727465460075,1969.5066275947306,3860.0,221.69427606344334,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,123527,1,1,2,0,2,,600.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,664.319969590328,1155.0,35805.416500534164,0,5,0,1,120.0,7,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.1078049182849867,23870.277667022776,6,3,6,6_1,6_2,6_0_1 +23507,2,70.0,0.0,5,112,2000.0,0.0,0.0,75,74,0.0,529.7309108040896,3410.4010867441225,2400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,123528,2,1,2,0,1,,600.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1579.4382238986,2000.0,35822.681707839256,5,5,0,1,120.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06699665925554636,23881.78780522617,6,3,6,6_1,6_1,6_0_0 +23508,2,88.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,3471.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,123529,2,1,2,0,2,,269.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,869.710512949429,0.0,49084.57671700208,0,5,0,1,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07071467723990178,49084.57671700208,10,5,10,10_1,10_4,10_0_1 +23509,1,58.0,250.0,2,112,600.0,200.0,0.0,56,43,0.0,0.0,1023.1203260232367,800.0,0.0,379.7008095879578,10,2,2,2,1,1,2,2,2,0,,2,,2,123530,2,1,0,1,1,1367.0,0.0,231.0,43,3.0,0.0,4.0,6.0,3.3,6,5,231.348509022347,600.0,30528.729140727988,1,4,2,3,86.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02620482484915267,9251.130042644845,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23510,1,34.0,200.0,7,211,0.0,,,0,85,0.0,0.0,,241.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,123531,2,2,0,0,2,,704.0,400.0,31,0.0,0.0,4.0,7.0,2.8,1,1,7.93378069410927,0.0,5616.515527950311,0,6,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042909166510922206,2005.8984028393968,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +23511,2,69.0,0.0,2,120,500.0,,,0,78,0.0,0.0,,730.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,123532,2,2,0,0,2,,400.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,100.12721177499527,500.0,24045.22515664193,0,5,0,1,120.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03035945786510361,24045.22515664193,6,3,6,6_1,6_0,6_0_1 +23512,2,72.0,0.0,2,111,0.0,0.0,1700.0,86,78,0.0,0.0,1071.5410937050644,1700.0,0.0,2034.4446508599572,71,0,0,0,0,0,0,0,0,0,,1,,2,123533,2,1,2,0,1,,230.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1449.45649555163,0.0,19277.263814065747,6,5,0,1,100.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0881867891832028,12851.509209377165,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +23513,2,48.0,0.0,1,112,1023.0,0.0,0.0,43,33,0.0,231.75727347678918,1744.4201558696186,1318.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,,1,123534,2,1,3,0,1,,244.0,,43,2.0,0.0,8.0,6.0,3.3,5,3,2444.92002850395,1023.0,83933.47986293824,1,1,1,2,220.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0157029114264328,25434.387837254013,7,4,7,7_1,7_1,7_1_0 +23514,2,58.0,0.0,6,120,1117.0,0.0,0.0,75,65,0.0,0.0,1904.7090069465924,1167.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,4,123535,2,1,1,0,1,,320.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1721.98190563272,1117.0,44450.57151338026,7,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026253880664925,22225.28575669013,6,3,6,6_1,6_0,6_0_0 +23515,2,46.0,0.0,7,111,260.0,,,52,53,0.0,0.0,,356.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,0,,1,,5,123536,2,1,0,0,2,,320.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,115.56388424132142,260.0,75508.510493486,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004714700338721575,32829.78717108087,8,4,8,8_1,8_2,8_0_0 +23517,1,23.0,28.0,6,120,0.0,0.0,0.0,0,65,0.0,0.0,0.0,5978.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,4,123538,2,2,5,0,1,,416.0,255.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1794.91088250019,0.0,14519.542548874275,0,1,2,3,63.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.4117209602077639,14519.542548874275,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +23518,2,84.0,0.0,1,111,332.0,1214.0,0.0,0,74,0.0,0.0,566.1265803995243,1546.0,0.0,2304.783914198904,31,2,2,2,2,1,2,2,2,0,,2,,1,123539,1,2,0,0,2,,253.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,932.580097362203,332.0,47973.689392979446,0,5,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0322259976158149,47973.689392979446,10,5,10,10_0,10_4,10_1_0 +23519,2,36.0,0.0,8,112,804.0,,,85,63,0.0,0.0,,930.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,123540,2,1,0,0,1,,280.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,100.02195250951927,804.0,27282.078064489906,6,1,0,1,90.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03408831240060409,12991.465744995192,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +23520,2,35.0,0.0,5,120,800.0,0.0,0.0,52,63,1054.6828510366015,264.8654554020448,1364.160434697649,2000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,3,123541,2,1,2,0,1,,720.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1373.94820787778,800.0,43790.33187000585,1,1,1,2,150.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04567218183998049,20852.53898571707,5,3,5,5_1,5_0,5_0_0 +23521,2,65.0,0.0,5,211,600.0,,,0,77,0.0,0.0,,621.0,29.09737373332694,,60,0,0,0,0,0,0,0,0,0,,1,,3,123542,2,1,0,0,1,,300.0,,31,0.0,3.0,6.0,2.0,1.5,2,2,93.43579584664872,600.0,57160.533789371504,0,5,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010864139272881834,38107.02252624767,9,5,9,9_1,9_2,9_0_0 +23522,0,50.0,0.0,1,112,1050.0,0.0,0.0,0,34,2636.7071275915036,0.0,1790.4605705406643,3680.0,180.1265993015477,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,123543,2,2,3,0,1,,300.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,1331.51744531554,1050.0,50216.32885978491,0,1,0,1,95.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07328293572147365,33477.55257318994,8,4,8,8_1,8_0,8_1_0 +23523,2,60.0,0.0,7,111,590.0,,,52,53,0.0,0.0,,727.0,189.82572387932336,,71,0,0,0,0,0,0,0,0,0,,1,,5,123544,2,2,0,0,1,,586.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,77.390424810329,590.0,15682.113868860697,7,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04635854618066336,10454.742579240465,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +23525,1,50.0,422.0,2,211,1500.0,600.0,0.0,85,68,0.0,0.0,2557.8008150580918,2160.0,83.13535352379125,1139.1024287638734,71,2,2,2,1,2,2,2,2,2,30.0,2,,2,123546,2,2,0,1,1,,700.0,565.0,42,1.0,0.0,4.0,6.0,3.5,6,3,228.627976176816,1500.0,27993.23243753847,6,1,2,3,70.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.07716150697564583,7998.066410725277,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +23526,2,78.0,0.0,2,111,262.0,76.0,0.0,75,74,0.0,0.0,446.76254236348,338.0,0.0,144.28630764342395,12,0,0,0,0,0,0,0,0,0,,2,,2,123547,2,1,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1134.5968622032,262.0,109871.82023412667,5,5,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003076312008663853,73247.88015608444,10,5,10,10_0,10_4,10_0_1 +23527,2,54.0,0.0,9,112,1180.0,0.0,0.0,46,37,0.0,0.0,2012.1366411790323,1180.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,123548,2,1,1,0,1,,257.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1172.67760562573,1180.0,86695.40639179418,1,1,1,2,136.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013610871084303358,43347.70319589709,10,5,10,10_1,10_0,10_0_0 +23528,2,80.0,0.0,1,300,900.0,0.0,0.0,77,72,1265.6194212439218,0.0,1534.680489034855,2220.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123549,2,2,1,0,1,,600.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1409.20163245559,900.0,24761.496146584712,5,5,0,1,140.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08965532562563668,16507.66409772314,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +23529,2,75.0,0.0,8,120,1414.0,0.0,0.0,77,75,0.0,0.0,2411.1535683280945,1414.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,123550,2,1,2,0,1,,398.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1098.34737360164,1414.0,51349.824616574566,5,5,0,1,98.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0275366081687374,34233.21641104971,9,5,9,9_1,9_1,9_0_0 +23530,2,57.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1351.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,123551,2,1,0,0,1,,0.0,365.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2975.10871595162,0.0,11040.516087805316,0,7,2,3,55.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1223674680835104,11040.516087805316,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +23531,2,74.0,0.0,2,111,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,1564.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,123552,2,1,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1775.6049800774,250.0,16976.12165631887,0,5,0,1,42.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09212940574196736,16976.12165631887,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +23532,2,32.0,0.0,1,112,0.0,0.0,0.0,43,65,0.0,0.0,0.0,739.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,27.0,2,,1,123553,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,906.451268501556,0.0,44171.48734986855,1,1,1,2,87.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016730249406061697,21034.0415951755,5,3,5,5_0,5_2,5_1_0 +23533,2,87.0,0.0,2,111,400.0,0.0,0.0,0,72,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123554,2,2,0,1,2,49.0,200.0,546.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1711.71526283503,400.0,37295.54120121805,0,5,2,3,65.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010725142660939217,37295.54120121805,9,5,9,9_0,9_2,9_0_1 +23534,2,57.0,0.0,2,111,1200.0,,,63,64,0.0,0.0,,1347.0,203.68161613328857,,50,0,0,0,0,0,0,0,0,0,,1,,2,123555,2,2,0,0,2,,500.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,79.70630470219986,1200.0,19996.966188353188,4,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06736021791068146,7998.786475341275,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +23535,2,71.0,0.0,5,111,1290.0,0.0,0.0,78,77,0.0,0.0,2199.7087009499587,1418.0,177.35542085075468,0.0,71,2,2,2,1,2,2,2,2,0,,1,,3,123556,2,1,4,0,1,,420.0,351.0,41,0.0,2.0,2.0,2.0,1.5,2,2,250.877915002755,1290.0,32525.06398683012,5,5,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.04359714712857042,21683.37599122008,6,3,6,6_1,6_3,6_0_0 +23536,2,43.0,0.0,9,111,1400.0,0.0,0.0,85,48,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,1,2012.0,6,123557,2,1,1,0,1,,280.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,199.669429630473,1400.0,25239.338636499273,6,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0.05546896533871229,16826.225757666183,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +23537,2,36.0,0.0,1,120,975.0,0.0,0.0,43,37,1054.6828510366015,1324.327277010224,1662.5705297877596,3095.0,166.2707070475825,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,123558,2,1,2,0,1,,400.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,145.254487445603,975.0,86228.70260303523,1,1,1,2,160.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035892920878657135,41061.2869538263,9,5,9,9_1,9_0,9_1_0 +23538,1,33.0,357.0,6,111,360.0,,,0,68,0.0,0.0,,408.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,0,,2,,4,123559,2,1,0,0,2,,283.0,493.0,32,3.0,0.0,4.0,4.0,2.3,3,3,110.62136004543527,360.0,25721.43695958701,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01586225531027062,11183.233460690004,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +23539,1,64.0,190.0,2,111,171.0,167.0,0.0,0,69,0.0,0.0,291.58929291662247,829.0,0.0,317.05017600594476,71,0,0,0,0,0,0,0,0,0,,2,,2,123560,2,1,0,1,1,329.0,0.0,239.0,12,1.0,2.0,4.0,1.0,1.0,1,1,332.831625530057,171.0,11317.773347461949,0,4,2,3,70.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07324762341047465,11317.773347461949,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +23540,2,44.0,0.0,1,300,550.0,0.0,0.0,43,43,1054.6828510366015,662.163638505112,937.8602988546337,2110.0,83.13535352379125,0.0,33,2,2,2,2,1,2,2,2,2,20.0,1,,1,123561,2,1,2,0,1,,350.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1097.62168141171,550.0,44757.63797392425,1,1,0,1,240.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.047142791610881786,21313.160939963927,6,3,6,6_1,6_0,6_1_0 +23541,2,24.0,0.0,9,111,0.0,,,46,52,0.0,0.0,,1202.0,0.0,,42,0,0,0,0,0,0,0,0,2,15.0,1,2013.0,6,123562,2,1,0,0,2,,567.0,800.0,43,2.0,0.0,4.0,2.0,1.5,2,2,256.27959975005115,0.0,45626.658975439015,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026344247573486385,30417.772650292678,8,4,8,8_1,8_2,8_0_0 +23542,0,89.0,0.0,1,111,142.0,646.0,0.0,0,77,0.0,0.0,242.1384771588327,788.0,0.0,1226.4336149691037,70,0,0,0,0,0,0,0,0,0,,2,,1,123563,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1194.67052352041,142.0,16199.628750121403,0,5,5,0,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04864309004575766,16199.628750121403,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +23543,2,52.0,0.0,7,111,300.0,,,55,63,0.0,0.0,,420.0,166.2707070475825,,50,2,2,2,2,2,2,2,1,3,15.0,1,,5,123564,1,1,0,0,2,,100.0,,43,2.0,1.0,3.0,3.0,2.0,3,2,103.48629399614262,300.0,44158.60731676933,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.009511169520975903,22079.303658384666,6,3,6,6_1,6_2,6_0_0 +23544,1,62.0,351.0,6,111,200.0,1578.0,0.0,85,78,0.0,0.0,341.04010867441224,1778.0,0.0,2995.839387648987,71,2,2,2,2,2,2,2,1,0,,8,,4,123565,1,3,0,1,2,856.0,0.0,486.0,41,0.0,4.0,5.0,3.0,2.0,3,2,326.354558633443,200.0,9405.15626324582,6,7,2,3,100.0,1,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.18904523755210773,4702.57813162291,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +23545,2,45.0,0.0,2,111,500.0,2200.0,0.0,0,38,0.0,66.2163638505112,852.6002716860306,2750.0,0.0,4176.708905467536,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,123566,2,2,2,0,2,,250.0,,32,1.0,0.0,5.0,3.0,1.8,2,1,1299.72942407682,500.0,55526.05490016163,0,1,1,2,110.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04952629904906129,30847.80827786757,8,4,8,8_1,8_3,8_0_1 +23546,1,55.0,149.0,2,111,410.0,220.0,0.0,0,56,0.0,0.0,699.1322227825451,630.0,0.0,417.6708905467536,60,1,2,2,2,2,2,2,1,2,7.0,2,,2,123567,2,1,0,1,1,625.0,146.0,319.0,32,1.0,2.0,3.0,2.0,1.3,1,1,1896.67818559253,410.0,17811.814268960396,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03536978268956375,13701.395591507997,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +23547,2,52.0,0.0,6,112,790.0,0.0,0.0,47,52,0.0,198.6490915515336,1347.1084292639284,1080.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,123568,2,1,2,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1227.86688807028,790.0,49329.0356485986,1,1,0,1,94.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02189379917526691,32886.023765732396,8,4,8,8_1,8_0,8_0_0 +23548,2,59.0,0.0,5,111,420.0,,,77,63,0.0,0.0,,672.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,123569,2,1,0,0,2,,320.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,126.2308387696621,420.0,11139.045791937155,6,1,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06032832726896751,7426.030527958103,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23549,2,61.0,0.0,6,111,360.0,325.0,0.0,0,52,0.0,0.0,613.872195613942,685.0,0.0,617.0138155804315,71,0,0,0,0,0,0,0,0,0,,2,,4,123570,2,1,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,934.340664986427,360.0,16642.973509341853,0,1,0,1,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0411585105038774,16642.973509341853,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +23551,2,75.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1492.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123572,2,2,2,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1131.70714689105,0.0,8082.7633271037585,0,5,0,1,90.0,3,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.184590336203079,8082.7633271037585,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +23552,2,39.0,0.0,7,112,1000.0,1500.0,0.0,37,48,0.0,927.0290939071567,1705.2005433720612,3200.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,123573,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,276.22552199946,1000.0,56028.19187034998,1,1,0,1,130.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057114104403098435,37352.127913566655,9,5,9,9_1,9_0,9_0_0 +23553,2,71.0,0.0,1,111,300.0,0.0,0.0,78,78,1164.3698675444082,794.5963662061343,511.56016301161833,2388.0,532.0662625522641,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123574,2,2,1,0,1,,190.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,295.086740013439,300.0,17783.28039518063,5,5,0,1,80.0,4,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1342834362914933,11855.520263453755,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +23554,2,27.0,0.0,5,111,1200.0,,,0,53,0.0,0.0,,1330.0,180.1265993015477,,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,123575,2,1,0,0,1,,400.0,800.0,12,1.0,0.0,2.0,1.0,1.0,1,1,142.44678130003206,1200.0,33233.20375881232,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040020216216660395,33233.20375881232,8,4,8,8_0,8_2,8_0_0 +23555,2,32.0,0.0,8,111,1278.0,0.0,0.0,64,54,0.0,0.0,2179.2462944294944,1278.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,2,2001.0,6,123576,2,1,0,0,1,,0.0,609.0,43,2.0,0.0,3.0,4.0,2.3,3,2,674.783332140351,1278.0,52109.36333037984,1,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024525342823655726,22656.244926252108,6,3,6,6_0,6_4,6_0_0 +23556,2,45.0,0.0,7,111,250.0,1000.0,0.0,43,55,0.0,0.0,426.3001358430153,1250.0,0.0,1898.504047939789,42,0,0,0,0,0,0,0,0,2,20.0,2,,5,123577,2,1,0,0,1,,0.0,600.0,43,2.0,0.0,4.0,2.0,1.5,2,2,913.89693801723,250.0,48077.431906422615,1,1,2,3,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025999724827918975,32051.62127094841,8,4,8,8_0,8_2,8_0_0 +23557,2,80.0,0.0,2,221,0.0,0.0,0.0,0,78,0.0,0.0,0.0,794.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123578,2,2,0,1,2,,68.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,3504.23868022141,0.0,18252.57509631838,0,5,2,3,70.0,1,2,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0435007113138876,18252.57509631838,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +23558,2,26.0,0.0,9,221,1000.0,0.0,0.0,47,54,0.0,0.0,1705.2005433720612,1015.0,20.783838380947813,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,123579,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1470.11240869487,1000.0,38643.53888486524,1,1,1,2,99.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026265710369438377,21468.63271381402,6,3,6,6_1,6_1,6_0_0 +23559,1,50.0,270.0,6,111,470.0,0.0,0.0,0,67,0.0,0.0,801.4442553848687,470.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,2,,4,123580,1,3,0,0,1,,0.0,393.0,12,1.0,3.0,1.0,1.0,1.0,1,1,905.006412773152,470.0,4582.769746695092,0,4,2,3,22.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.10255806553208241,4582.769746695092,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +23560,2,64.0,0.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,179.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,123581,1,1,0,1,2,504.0,0.0,251.0,11,0.0,4.0,2.0,1.0,1.0,1,1,375.403172402482,0.0,11527.400000000001,0,5,2,3,54.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015528219719971544,11527.400000000001,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +23561,2,40.0,0.0,2,111,0.0,0.0,2370.0,37,33,0.0,0.0,1493.8543482829427,2370.0,0.0,2836.2551897282933,10,0,0,0,0,0,0,0,0,0,,1,,2,123582,2,2,3,0,1,,460.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,534.571861194262,0.0,79419.70667276035,1,1,1,2,139.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02984146000142394,37818.90793940969,9,5,9,9_1,9_3,9_0_1 +23562,2,41.0,0.0,5,111,480.0,42.0,0.0,0,54,0.0,0.0,818.4962608185893,522.0,0.0,79.73717001347114,50,0,0,0,0,0,0,0,0,0,,2,,3,123583,1,1,0,1,1,708.0,0.0,497.0,22,2.0,0.0,3.0,2.0,1.5,2,2,384.443740831376,480.0,47078.8108310818,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011087790680884647,31385.873887387865,8,4,8,8_0,8_4,8_0_0 +23563,2,51.0,0.0,2,111,480.0,0.0,0.0,52,63,0.0,0.0,818.4962608185893,1116.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,123584,1,1,0,1,2,,0.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,223.557373555179,480.0,41675.167724315805,1,1,0,1,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026778536498819137,16670.067089726323,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +23564,2,62.0,0.0,6,111,833.0,0.0,0.0,0,78,0.0,0.0,1420.432052628927,897.0,88.67771042537734,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,123585,2,1,2,0,1,,105.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,888.541970776371,833.0,17617.742472003218,0,5,0,1,88.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05091458235500062,17617.742472003218,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +23565,2,38.0,0.0,1,111,922.0,0.0,0.0,0,37,0.0,0.0,1572.1949009890404,922.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,2,,1,123586,2,1,0,0,1,,0.0,940.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1285.38760878001,922.0,44100.914498057224,0,1,2,3,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02090659594010498,44100.914498057224,10,5,10,10_0,10_4,10_1_0 +23566,2,44.0,0.0,2,111,680.0,1750.0,0.0,55,46,0.0,0.0,1159.5363694930015,2430.0,0.0,3322.382083894631,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,123587,2,2,2,0,1,,720.0,,43,3.0,0.0,5.0,5.0,3.0,5,3,1145.11990746193,680.0,60953.29488392133,1,1,1,2,115.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039866589732805435,20317.764961307108,5,3,5,5_1,5_2,5_0_1 +23567,1,28.0,413.0,7,111,280.0,,,0,81,0.0,0.0,,400.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,5,123588,2,1,0,0,2,,280.0,422.0,32,1.0,0.0,3.0,3.0,1.6,1,1,127.10914008447098,280.0,9689.954545454544,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0412798634011793,6056.22159090909,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23568,2,62.0,0.0,7,111,600.0,,,0,52,0.0,0.0,,726.0,174.58424239996165,,30,0,0,0,0,0,0,0,0,3,30.0,1,,5,123589,2,1,0,0,1,,600.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,120.50088187147271,600.0,28676.78407872092,0,1,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025316646315955454,28676.78407872092,8,4,8,8_1,8_2,8_0_0 +23569,2,47.0,0.0,1,111,465.0,1167.0,0.0,52,52,0.0,0.0,792.9182526680084,1632.0,0.0,2215.5542239457336,42,0,0,0,0,0,0,0,0,2,5.0,1,,1,123590,2,1,3,0,1,,250.0,,43,2.0,2.0,5.0,4.0,2.3,3,3,371.06762675923,465.0,66791.09366728172,1,1,0,1,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024434395521800708,29039.605942296403,8,4,8,8_1,8_3,8_1_0 +23570,2,64.0,0.0,5,111,850.0,1350.0,0.0,77,75,0.0,0.0,1449.420461866252,2200.0,0.0,2562.980464718715,50,0,0,0,0,0,0,0,0,0,,1,,3,123591,2,2,3,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,590.254002393256,850.0,49275.158317156034,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04464724366464451,32850.10554477069,8,4,8,8_1,8_4,8_0_0 +23571,1,30.0,336.0,2,111,1100.0,532.0,0.0,0,67,0.0,0.0,1875.7205977092674,1632.0,0.0,1010.0041535039677,50,2,2,2,2,1,2,2,2,2,35.0,2,,2,123592,2,3,0,0,1,,384.0,277.0,32,1.0,0.0,4.0,3.0,1.6,1,1,353.917099451663,1100.0,17920.235849437053,0,1,2,3,67.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.09107022997419242,11200.147405898157,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +23572,2,57.0,0.0,7,111,1400.0,0.0,0.0,37,31,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,5,123593,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,771.707012636318,1400.0,120586.79045803263,1,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011609895202304408,66992.66136557369,10,5,10,10_0,10_4,10_0_0 +23573,2,69.0,0.0,1,111,645.0,138.0,0.0,0,78,0.0,0.0,1099.8543504749794,783.0,0.0,261.99355861569086,70,2,2,2,2,1,2,2,2,0,,2,,1,123594,1,2,0,0,1,,0.0,191.0,11,0.0,0.0,2.0,1.0,1.0,1,1,815.793274683993,645.0,18011.74764213295,0,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.04347162838149098,18011.74764213295,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +23574,1,27.0,223.0,2,111,0.0,,,0,63,0.0,0.0,,381.0,174.58424239996165,,31,0,0,0,0,0,0,0,0,0,,1,,2,123595,2,1,0,0,2,,233.0,700.0,22,1.0,4.0,3.0,2.0,1.5,2,2,113.06651163249231,0.0,29891.93672220112,0,1,3,4,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.012745912168247917,19927.957814800746,5,3,5,5_1,5_3,5_0_1 +23575,2,44.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,830.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,123596,2,2,0,0,1,,244.0,737.0,32,1.0,0.0,4.0,3.0,1.8,2,1,1834.62954005721,0.0,41769.16095695933,0,1,2,3,110.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019871119768368493,23205.08942053296,6,3,6,6_0,6_3,6_1_0 +23576,2,73.0,0.0,2,111,570.0,156.0,0.0,78,86,0.0,0.0,971.9643097220749,726.0,0.0,296.1666314786071,71,0,0,0,0,0,0,0,0,0,,2,,2,123597,2,1,0,1,1,,0.0,450.0,41,0.0,0.0,3.0,2.0,1.5,2,2,278.010279457254,570.0,33759.65334961726,5,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021504960151145353,22506.43556641151,6,3,6,6_0,6_4,6_0_1 +23577,2,50.0,0.0,8,111,2338.0,0.0,0.0,56,21,0.0,0.0,3986.758870403879,2478.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,123598,2,1,2,0,1,,320.0,,43,3.0,3.0,5.0,4.0,2.5,4,3,367.334873715397,2338.0,63641.37980686794,4,1,1,2,100.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038936930775542104,25456.551922747174,7,4,7,7_1,7_2,7_0_0 +23578,2,87.0,0.0,2,111,699.0,0.0,0.0,77,78,1582.0242765549024,0.0,1191.9351798170708,3164.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,123599,2,1,2,0,1,,173.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,966.411797585854,699.0,26242.35749088599,5,5,0,1,120.0,6,5,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12056843601413715,17494.904993923992,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +23579,2,48.0,0.0,1,111,1500.0,240.0,0.0,54,48,0.0,0.0,2557.8008150580918,1740.0,0.0,455.6409715055494,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,123600,2,3,1,0,1,,1200.0,,43,3.0,0.0,7.0,5.0,3.0,5,4,316.833777699968,1500.0,57088.784971876725,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030478840999281467,19029.594990625574,5,3,5,5_1,5_4,5_1_0 +23580,2,67.0,0.0,2,111,420.0,100.0,0.0,75,74,0.0,0.0,716.1842282162656,520.0,0.0,189.8504047939789,60,0,0,0,0,0,0,0,0,0,,2,,2,123601,1,3,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,955.684845513817,420.0,102230.91564623216,5,5,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005086523941538865,68153.94376415477,10,5,10,10_0,10_4,10_0_1 +23581,2,64.0,0.0,1,400,660.0,,,77,75,0.0,0.0,,798.0,191.2113131047199,,33,0,0,0,0,0,0,0,0,0,,1,,1,123602,1,1,0,0,2,,752.0,250.0,41,0.0,3.0,1.0,2.0,1.5,2,2,126.24640543594548,660.0,38428.834536922506,5,5,2,3,40.0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020765657080577864,25619.223024615003,7,4,7,7_1,7_0,7_1_0 +23582,2,66.0,0.0,1,221,1945.0,0.0,0.0,0,72,0.0,0.0,3316.615056858659,1995.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123603,2,2,4,0,1,,552.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,570.552567793936,1945.0,17660.871371971,0,5,0,1,65.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.112961583716996,17660.871371971,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +23583,2,78.0,0.0,5,211,2500.0,0.0,0.0,0,71,0.0,0.0,4263.001358430153,2555.0,76.20740739680865,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123604,2,1,2,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1171.98262634859,2500.0,17146.599613554572,0,5,0,1,120.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14900913636428792,17146.599613554572,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23584,2,77.0,0.0,6,111,1000.0,0.0,0.0,0,75,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,123605,2,1,0,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1322.22728724639,1000.0,42541.99222991081,0,5,0,1,72.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023506186419189626,42541.99222991081,9,5,9,9_0,9_3,9_0_0 +23585,2,49.0,0.0,8,111,0.0,0.0,1600.0,85,46,0.0,0.0,1008.5092646635901,1600.0,0.0,1914.7714361034893,50,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,123606,2,1,2,0,1,,548.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,993.905326161702,0.0,44125.12659344396,6,1,1,2,73.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036260519199002715,22062.56329672198,6,3,6,6_1,6_3,6_0_0 +23586,2,47.0,0.0,5,111,400.0,1100.0,0.0,55,52,0.0,0.0,682.0802173488245,1500.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,123607,1,2,3,0,2,,350.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,242.167754238158,400.0,43059.75760547248,1,1,1,2,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03483530989058249,18721.633741509773,5,3,5,5_1,5_3,5_0_0 +23587,2,47.0,0.0,7,111,1600.0,2700.0,0.0,0,34,0.0,0.0,2728.320869395298,4300.0,0.0,5125.96092943743,20,0,0,0,0,0,0,0,0,4,90.0,1,,5,123608,2,1,2,0,1,,720.0,,32,1.0,1.0,9.0,2.0,1.3,1,1,660.288534085707,1600.0,65554.9197388722,0,1,1,2,299.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06559385652714365,50426.861337594,10,5,10,10_1,10_4,10_0_0 +23589,2,59.0,0.0,8,111,450.0,0.0,0.0,0,63,0.0,0.0,767.3402445174275,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,6,123610,1,2,0,0,1,,0.0,458.0,12,1.0,3.0,2.0,1.0,1.0,1,1,341.587559304812,450.0,19359.35406241549,0,1,2,3,45.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02324457719762645,19359.35406241549,5,3,5,5_0,5_2,5_0_0 +23590,2,54.0,0.0,7,111,2053.0,0.0,0.0,55,55,0.0,0.0,3500.7767155428414,2053.0,0.0,0.0,30,1,2,2,2,2,2,2,1,3,45.0,2,,5,123611,2,3,0,0,1,,0.0,492.0,43,2.0,0.0,4.0,5.0,2.8,4,3,883.158172733661,2053.0,24498.197069360387,1,1,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.08380208527947812,8749.35609620014,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +23591,2,30.0,0.0,1,111,250.0,0.0,0.0,0,68,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,123612,2,2,0,0,2,,0.0,180.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.10309028357,250.0,7025.83779400829,0,1,2,3,5.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03558294502802252,7025.83779400829,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +23592,1,36.0,359.0,8,300,588.0,0.0,0.0,55,63,949.2145659329414,0.0,1002.657919502772,1568.0,110.84713803172167,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,123613,2,1,1,0,1,,250.0,610.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1296.09136768988,588.0,23962.93567087729,4,1,2,3,80.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06543438673524574,11410.921748036804,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +23593,2,71.0,0.0,5,120,300.0,,,75,72,0.0,0.0,,300.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,3,123614,2,2,0,0,2,,320.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,118.91767121316762,300.0,43520.45931688742,5,5,0,1,98.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006893309599873405,29013.639544591613,8,4,8,8_1,8_0,8_0_0 +23594,2,45.0,0.0,2,111,736.0,0.0,0.0,85,22,0.0,0.0,1255.027599921837,928.0,266.03313127613205,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123615,2,2,0,1,1,,672.0,408.0,42,1.0,2.0,5.0,3.0,2.0,3,2,274.404765878476,736.0,23189.62294818877,7,4,2,3,92.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040017899474837366,11594.811474094386,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +23595,1,33.0,380.0,8,120,500.0,,,0,21,0.0,0.0,,584.0,116.38949493330776,,44,0,0,0,0,0,0,0,0,2,5.0,1,1999.0,6,123616,2,1,0,0,1,,350.0,390.0,32,2.0,0.0,3.0,3.0,1.8,2,2,176.48900171261553,500.0,27218.830590676298,0,1,2,3,72.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.021455734406166844,15121.57255037572,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +23596,2,91.0,0.0,1,120,120.0,0.0,0.0,0,71,0.0,0.0,204.62406520464734,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123617,1,3,4,0,2,,100.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,303.393445874224,120.0,11188.332205062796,0,5,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010725459148030945,11188.332205062796,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +23597,2,28.0,0.0,1,111,550.0,0.0,0.0,0,54,0.0,0.0,937.8602988546337,550.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,120.0,2,,1,123618,2,1,0,0,1,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,673.684582358172,550.0,13738.363164314196,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.040033881287156625,13738.363164314196,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +23598,2,32.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1730.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,1,123619,2,1,1,0,1,,260.0,550.0,32,1.0,0.0,3.0,4.0,1.9,1,1,593.549144623513,0.0,26199.733254179195,0,1,2,3,65.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06603120662398511,13789.333291673262,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +23599,2,33.0,0.0,9,120,2300.0,0.0,0.0,55,42,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,123620,2,1,1,0,1,,185.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1705.10642555987,2300.0,48952.34289140851,1,1,1,2,169.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04698447232856891,23310.63947209929,6,3,6,6_1,6_0,6_0_0 +23600,2,24.0,0.0,1,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1413.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,123621,2,1,0,0,1,,620.0,350.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2084.06625595123,0.0,18976.712574610006,0,1,2,3,70.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0744596828583751,18976.712574610006,5,3,5,5_0,5_0,5_1_0 +23602,2,81.0,0.0,1,111,375.0,2600.0,0.0,0,74,0.0,0.0,639.4502037645229,2975.0,0.0,4936.110524643452,20,0,0,0,0,0,0,0,0,0,,1,,1,123623,2,1,2,0,1,,800.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,502.672093989354,375.0,38347.597843945405,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07757982682791993,38347.597843945405,9,5,9,9_1,9_4,9_1_0 +23603,1,29.0,257.0,1,112,0.0,0.0,0.0,52,56,0.0,0.0,0.0,757.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,1,123624,2,1,0,1,1,,0.0,600.0,43,2.0,0.0,4.0,4.0,2.1,2,2,557.546770023439,0.0,29528.34130530066,4,1,2,3,85.0,10,3,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02563638750220319,14061.114907286028,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +23604,2,39.0,0.0,1,111,1089.0,0.0,0.0,0,31,6644.50196153059,0.0,1856.9633917321746,7389.0,0.0,0.0,10,1,2,2,2,1,2,2,2,0,,1,,1,123625,1,1,4,0,1,,420.0,,32,1.0,0.0,10.0,4.0,1.9,1,1,1717.35782588185,1089.0,119897.80894130457,0,1,1,2,366.0,8,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.06162748147980963,63104.10996910767,10,5,10,10_1,10_3,10_1_0 +23605,2,62.0,0.0,6,112,350.0,0.0,0.0,72,78,0.0,2383.789098618403,596.8201901802214,2150.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,123626,2,2,2,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1016.82002295868,350.0,37102.54998559974,6,5,0,1,120.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057947499587884366,24735.03332373316,7,4,7,7_1,7_0,7_0_0 +23607,2,44.0,0.0,2,111,1440.0,0.0,0.0,85,54,1160.1511361402618,834.326184516441,2455.488782455768,3290.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,123628,2,2,1,0,1,,300.0,,42,1.0,2.0,4.0,3.0,2.0,3,3,1846.3373313242,1440.0,60229.34444729799,7,1,1,2,150.0,6,5,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0546245360993232,30114.672223648995,8,4,8,8_1,8_2,8_0_1 +23608,2,54.0,0.0,1,111,800.0,0.0,0.0,85,38,2109.365702073203,0.0,1364.160434697649,2800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,75.0,1,,1,123629,2,3,2,0,1,,425.0,1500.0,42,1.0,0.0,6.0,3.0,1.8,2,2,894.188130099482,800.0,57107.63159220654,6,1,2,3,120.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049030224541514955,31726.4619956703,8,4,8,8_1,8_4,8_1_0 +23609,2,74.0,0.0,2,111,350.0,0.0,0.0,77,74,0.0,0.0,596.8201901802214,350.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,123630,2,3,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,328.337781548842,350.0,48577.28341882612,5,5,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007205013853540389,32384.855612550746,8,4,8,8_0,8_3,8_0_1 +23610,2,79.0,0.0,2,112,450.0,0.0,0.0,77,75,0.0,0.0,767.3402445174275,600.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,123631,2,1,2,0,1,,250.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1173.31530281993,450.0,33395.42016119027,5,5,0,1,75.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017966535444200713,22263.613440793513,6,3,6,6_1,6_0,6_0_1 +23611,2,46.0,0.0,2,111,624.0,1560.0,0.0,0,54,0.0,0.0,1064.0451390641663,2184.0,0.0,2961.666314786071,31,2,2,2,2,1,1,2,2,1,15.0,1,,2,123632,1,1,1,0,1,,600.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,694.748338461077,624.0,38227.39846509381,0,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05713179781235319,25484.932310062537,7,4,7,7_1,7_4,7_0_1 +23612,1,48.0,122.0,7,111,1350.0,0.0,0.0,56,46,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,90.0,2,,5,123633,1,1,0,0,2,,0.0,745.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,577.236672682722,1350.0,39505.15595852508,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03417275459986317,15194.29075327888,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +23613,1,87.0,116.0,1,111,230.0,1100.0,0.0,0,77,0.0,0.0,392.1961249755741,1330.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,2,,1,123634,2,2,0,0,1,,0.0,314.0,11,0.0,4.0,3.0,1.0,1.0,1,1,264.349523668483,230.0,15236.874602179487,0,5,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08728824215759814,15236.874602179487,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +23614,2,40.0,0.0,6,111,1400.0,0.0,0.0,52,37,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,123635,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1005.29629816051,1400.0,22919.973068538904,1,4,0,1,116.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06108209620550164,9549.988778557878,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23615,2,80.0,0.0,2,111,0.0,0.0,660.0,77,78,0.0,0.0,416.0100716737309,660.0,0.0,789.8432173926894,71,0,0,0,0,0,0,0,0,0,,2,,2,123636,2,1,0,1,1,873.0,0.0,267.0,41,0.0,8.0,2.0,2.0,1.5,2,2,358.964809958201,0.0,29639.22691173506,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022267787279521997,19759.48460782337,5,3,5,5_0,5_4,5_0_1 +23616,2,42.0,0.0,8,111,330.0,,,0,43,0.0,0.0,,353.0,31.86855218411998,,31,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,123637,1,3,0,0,2,,223.0,363.0,12,1.0,0.0,2.0,1.0,1.0,1,1,204.86563260774298,330.0,30820.044921487788,0,1,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011453584863333142,30820.044921487788,8,4,8,8_0,8_2,8_0_0 +23617,2,58.0,0.0,6,111,940.0,840.0,0.0,56,67,0.0,0.0,1602.8885107697374,1780.0,0.0,1594.7434002694229,71,0,0,0,0,0,0,0,0,3,80.0,1,,4,123638,2,1,2,0,1,,850.0,495.0,43,5.0,0.0,4.0,6.0,3.3,6,5,372.874502800182,940.0,86629.66653063524,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020547233658928268,26251.414100192498,7,4,7,7_1,7_4,7_0_0 +23618,2,73.0,0.0,2,111,250.0,265.0,0.0,86,78,0.0,0.0,426.3001358430153,515.0,0.0,503.1035727040441,50,0,0,0,0,0,0,0,0,0,,2,,2,123639,2,3,0,1,1,750.0,0.0,348.0,41,0.0,2.0,3.0,2.0,1.5,2,2,777.003964842069,250.0,20036.31661312796,6,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025703327110661034,13357.544408751974,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +23619,2,70.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,41,2,2,1,2,1,2,2,2,0,,2,,2,123640,2,1,0,1,2,519.0,0.0,1559.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1222.04477031148,300.0,32789.85264287861,0,5,2,3,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009149171948631943,32789.85264287861,8,4,8,8_0,8_4,8_0_1 +23620,2,33.0,0.0,7,111,1070.0,0.0,0.0,65,37,0.0,0.0,1824.5645814081054,1070.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,123641,2,1,0,0,1,,0.0,475.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1994.35939009924,1070.0,37978.929196476034,1,1,2,3,72.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028173516806242197,21099.40510915335,5,3,5,5_0,5_3,5_0_0 +23621,2,55.0,0.0,7,120,410.0,,,0,56,0.0,0.0,,548.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,123642,2,1,0,0,2,,450.0,,32,1.0,1.0,4.0,2.0,1.5,2,1,88.01701858430962,410.0,24136.163636760873,0,1,0,1,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02270451958509935,16090.775757840582,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23622,2,57.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,30,2,2,2,2,1,2,2,2,0,,2,,2,123643,1,2,0,0,1,,0.0,432.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1463.41775998354,300.0,18349.877550023455,0,7,3,4,17.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,0,0.01634888293843773,18349.877550023455,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +23623,2,54.0,0.0,1,400,0.0,0.0,0.0,11,11,0.0,0.0,0.0,1964.0,8.313535352379127,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123644,2,1,2,0,1,,1116.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,1001.69617063176,0.0,66709.15902214142,1,1,0,1,100.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029441234588913484,26683.66360885657,7,4,7,7_1,7_0,7_1_0 +23624,1,46.0,122.0,7,111,2100.0,0.0,0.0,56,46,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,123645,2,2,1,0,1,,0.0,900.0,43,3.0,0.0,5.0,5.0,3.0,5,3,1529.33992690832,2100.0,39466.0,1,4,2,3,128.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05321035828307911,13155.333333333334,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +23625,2,78.0,0.0,6,111,310.0,802.0,0.0,0,77,0.0,0.0,528.612168445339,1112.0,0.0,1522.6002464477108,70,2,2,2,2,1,2,2,2,0,,2,,4,123646,1,2,0,0,1,,0.0,431.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1430.43516033157,310.0,26861.81702202972,0,5,2,3,60.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.04139705065699891,26861.81702202972,7,4,7,7_0,7_2,7_0_0 +23626,1,44.0,447.0,7,111,720.0,,,0,67,0.0,0.0,,795.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,123647,1,2,0,0,2,,600.0,100.0,32,3.0,0.0,4.0,5.0,2.8,4,3,73.87476328017958,720.0,21472.079481580244,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03702482568965844,7668.599814850088,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23627,2,55.0,0.0,1,112,650.0,1200.0,0.0,90,90,0.0,264.8654554020448,1108.3803531918397,2050.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,123648,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1947.54847079585,650.0,60256.61953943389,1,1,0,1,160.0,9,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03402115843319776,40171.07969295592,9,5,9,9_1,9_1,9_1_0 +23628,2,37.0,0.0,1,111,0.0,0.0,960.0,0,37,0.0,0.0,605.105558798154,960.0,0.0,1148.8628616620936,10,0,0,0,0,0,0,0,0,2,45.0,2,,1,123649,2,1,0,0,2,,0.0,1300.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1007.64859144358,0.0,129766.53199439117,0,1,3,4,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007397901332845155,81104.08249649448,10,5,10,10_0,10_4,10_1_0 +23629,2,79.0,0.0,1,112,1000.0,245.0,0.0,74,75,2953.111982902484,0.0,1705.2005433720612,4045.0,0.0,465.1334917452483,50,0,0,0,0,0,0,0,0,0,,1,,1,123650,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,658.793505908791,1000.0,46140.593809945865,5,5,0,1,102.0,10,2,1,1,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08766683880709132,30760.395873297242,8,4,8,8_1,8_1,8_1_0 +23630,1,83.0,209.0,5,111,210.0,830.0,0.0,0,78,0.0,0.0,358.0921141081328,1040.0,0.0,1575.7583597900248,70,2,2,2,2,1,2,2,2,0,,1,,3,123651,1,1,1,0,1,,171.0,351.0,11,0.0,5.0,3.0,1.0,1.0,1,1,274.52937238497,210.0,11231.043474744454,0,5,2,3,55.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.0926004785164153,11231.043474744454,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +23631,2,48.0,0.0,9,112,1950.0,0.0,0.0,56,53,0.0,463.51454695357836,3325.141059575519,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,123652,2,1,1,0,1,,704.0,,43,3.0,1.0,8.0,4.0,2.3,3,3,861.304567258021,1950.0,38817.170811672375,1,1,1,2,169.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05925212868188701,16877.03078768364,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23632,2,58.0,0.0,6,111,223.0,37.0,0.0,0,33,0.0,0.0,380.25972117196966,260.0,0.0,70.2446497737722,12,0,0,0,0,0,0,0,0,3,60.0,2,,4,123653,2,2,0,1,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,904.815671471547,223.0,80112.48208222642,0,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0032454368313434524,80112.48208222642,10,5,10,10_0,10_4,10_0_0 +23633,1,33.0,388.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,398.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123654,1,2,0,1,2,600.0,0.0,308.0,42,1.0,0.0,5.0,8.0,3.499999999999999,4,2,436.864883181809,0.0,26914.836713380177,6,4,2,3,92.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014787383042236412,7689.953346680052,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23634,2,70.0,0.0,2,111,545.0,,,75,74,0.0,0.0,,805.0,360.2531986030954,,70,0,0,0,0,0,0,0,0,0,,1,,2,123655,2,1,0,0,1,,480.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,128.64398559584225,545.0,50129.56662655585,5,5,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0160583873783891,33419.71108437057,8,4,8,8_1,8_2,8_0_1 +23635,2,74.0,0.0,1,111,670.0,0.0,0.0,77,75,0.0,2118.9236432163584,1142.484364059281,2351.0,112.2327272571182,0.0,42,2,2,2,1,1,2,2,2,0,,1,,1,123656,1,3,4,0,2,,397.0,352.0,41,0.0,5.0,3.0,2.0,1.5,2,2,720.288799502712,670.0,17630.953779196134,5,5,2,3,32.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.13334502656198283,11753.969186130756,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +23636,1,80.0,22.0,5,111,228.0,1160.0,0.0,0,86,0.0,0.0,388.7857238888299,1388.0,0.0,2202.2646956101553,70,0,0,0,0,0,0,0,0,0,,2,,3,123657,2,3,0,0,1,,0.0,509.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1234.52429961284,228.0,16332.509360330852,0,5,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08498387904624369,16332.509360330852,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +23637,2,64.0,0.0,7,221,1100.0,0.0,0.0,71,71,0.0,0.0,1875.7205977092674,1300.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,123658,2,2,2,0,1,,420.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,997.36555218731,1100.0,27827.697748436083,5,5,0,1,98.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046716045709281145,18551.79849895739,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +23638,1,38.0,350.0,2,111,0.0,,,0,85,0.0,0.0,,504.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,123659,2,2,0,0,2,,366.0,540.0,31,0.0,0.0,3.0,3.0,1.8,2,2,121.15858690645663,0.0,15928.616458187782,0,6,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03164116615670842,8849.231365659878,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23639,2,52.0,0.0,5,111,390.0,0.0,0.0,0,54,0.0,0.0,665.0282119151038,390.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,2,,3,123660,2,1,0,1,1,,0.0,488.0,12,1.0,1.0,2.0,1.0,1.0,1,1,950.089433785869,390.0,20704.90809446011,0,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018836113554367817,20704.90809446011,5,3,5,5_0,5_4,5_0_0 +23640,2,77.0,0.0,8,221,780.0,,,0,75,0.0,0.0,,834.0,74.82181817141213,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,123661,2,1,0,0,2,,420.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,127.602955023384,780.0,23316.29927487454,0,5,0,1,160.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0357689696022521,23316.29927487454,6,3,6,6_1,6_1,6_0_0 +23641,2,42.0,0.0,9,120,1500.0,0.0,0.0,52,46,0.0,264.8654554020448,2557.8008150580918,1830.0,180.1265993015477,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,123662,2,1,1,0,1,,396.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,2257.80918296833,1500.0,54678.85734008099,1,1,1,2,165.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033468146355329256,22782.857225033746,6,3,6,6_1,6_0,6_0_0 +23642,2,42.0,0.0,5,111,790.0,0.0,0.0,85,53,2109.365702073203,0.0,1347.1084292639284,2940.0,207.83838380947813,0.0,50,2,2,2,1,2,2,1,2,2,30.0,1,,3,123663,2,3,3,0,1,,0.0,1151.0,42,1.0,1.0,6.0,5.0,2.8,4,3,979.320627909447,790.0,50838.170534535944,6,1,2,3,105.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.057830562529837044,18156.48947661998,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +23643,1,27.0,350.0,2,111,400.0,400.0,0.0,0,55,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,31,0,0,0,0,0,0,0,0,0,,2,,2,123664,2,1,0,1,1,48.0,0.0,390.0,22,2.0,0.0,2.0,2.0,1.5,2,2,257.199315873995,400.0,18737.61916102075,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0426948585690232,12491.746107347166,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +23644,2,63.0,0.0,5,111,879.0,1705.0,0.0,77,74,0.0,0.0,1498.8712776240418,2584.0,0.0,3236.9494017373404,31,0,0,0,0,0,0,0,0,0,,1,,3,123665,2,1,2,0,1,,790.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,1877.20342868568,879.0,51952.016957944914,5,5,0,1,150.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049738203659960775,34634.677971963276,9,5,9,9_1,9_2,9_0_0 +23645,2,48.0,0.0,2,111,0.0,0.0,0.0,85,22,0.0,0.0,0.0,2028.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,2,,2,123666,2,2,0,1,1,,0.0,,42,1.0,2.0,5.0,4.0,2.3,3,3,291.78988662529,0.0,155511.42034890054,6,1,0,1,100.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01304084288761586,67613.66102126111,10,5,10,10_0,10_3,10_0_1 +23646,2,59.0,0.0,2,111,240.0,,,0,85,0.0,0.0,,286.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,2,123667,2,2,0,0,2,,180.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,124.5686204616168,240.0,11156.0,0,5,0,1,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02563642882753675,11156.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +23647,1,53.0,220.0,1,111,0.0,0.0,2700.0,85,43,0.0,0.0,1701.8593841198083,2700.0,0.0,3231.1767984246385,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,123668,2,1,2,0,1,,900.0,,42,1.0,0.0,5.0,7.0,3.6,5,4,766.908053012217,0.0,22101.832611572674,6,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12216181560375501,6139.397947659076,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +23648,2,43.0,0.0,7,111,820.0,0.0,0.0,46,42,0.0,0.0,1398.2644455650902,820.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,5,123669,2,1,0,1,1,768.0,0.0,505.0,43,2.0,0.0,4.0,4.0,2.1,2,2,706.314411923536,820.0,41996.0,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019525669111343937,19998.095238095237,5,3,5,5_0,5_4,5_0_0 +23649,2,47.0,0.0,6,111,500.0,0.0,0.0,0,43,0.0,0.0,852.6002716860306,500.0,0.0,0.0,44,2,2,2,1,1,2,1,2,1,5.0,2,,4,123670,1,1,0,0,1,,240.0,328.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1419.76369570275,500.0,22897.349065210845,0,1,2,3,45.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02183658896826954,22897.349065210845,6,3,6,6_0,6_2,6_0_0 +23650,2,61.0,0.0,5,111,1200.0,0.0,0.0,78,74,0.0,794.5963662061343,2046.2406520464733,2000.0,277.1178450793042,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,123671,2,1,2,0,1,,250.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1580.80632324822,1200.0,46236.29202822384,5,5,0,1,135.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04325606384653743,30824.194685482562,8,4,8,8_1,8_3,8_0_0 +23651,2,80.0,0.0,2,111,544.0,,,0,77,0.0,0.0,,694.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,2,123672,2,1,0,0,2,,225.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,116.33733250899475,544.0,19977.47449550225,0,5,0,1,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03473912581674164,19977.47449550225,5,3,5,5_0,5_2,5_0_1 +23652,1,24.0,330.0,1,111,270.0,790.0,0.0,84,38,0.0,0.0,460.40414671045653,1060.0,0.0,1499.8181978724333,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,123673,2,3,0,0,1,,0.0,660.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1761.94069072126,270.0,23588.518440467557,3,1,2,3,53.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.044937116448208324,15725.678960311705,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +23653,2,64.0,0.0,9,400,900.0,0.0,0.0,71,42,0.0,0.0,1534.680489034855,900.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,123674,2,1,1,0,1,,170.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,989.459136854969,900.0,57033.13162084963,5,1,1,2,126.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01578030128142195,28516.565810424814,8,4,8,8_1,8_0,8_0_0 +23654,2,48.0,0.0,1,111,800.0,0.0,0.0,48,65,2109.365702073203,0.0,1364.160434697649,2900.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,123675,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1463.67910251803,800.0,44994.129600859545,1,1,0,1,210.0,8,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06445285253266905,17997.651840343817,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +23655,2,52.0,0.0,2,111,449.0,319.0,0.0,72,56,0.0,0.0,765.6350439740555,1610.0,0.0,605.6227912927927,60,0,0,0,0,0,0,0,0,2,15.0,2,,2,123676,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1787.53541401888,449.0,27211.147097192268,7,1,1,2,53.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.059166928694679134,18140.764731461513,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +23656,2,75.0,0.0,2,111,654.0,1404.0,0.0,77,74,0.0,0.0,1115.201155365328,2058.0,0.0,2665.499683307464,12,0,0,0,0,0,0,0,0,0,,1,,2,123677,2,1,3,0,1,,320.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1350.59158791805,654.0,53449.899185722825,5,5,0,1,126.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03850334671070285,35633.266123815214,9,5,9,9_1,9_2,9_0_1 +23658,2,55.0,0.0,9,400,1750.0,0.0,0.0,78,64,0.0,0.0,2984.100950901107,1852.0,141.33010099044515,0.0,50,0,0,0,0,0,0,0,0,4,30.0,1,2004.0,6,123679,2,1,1,0,1,,350.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,1929.53776559528,1750.0,28511.904621537517,7,1,0,1,118.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0649553239105964,19007.936414358344,5,3,5,5_1,5_0,5_0_0 +23659,2,49.0,0.0,1,111,400.0,1222.0,0.0,0,46,0.0,0.0,682.0802173488245,1622.0,0.0,2319.9719465824223,31,0,0,0,0,0,0,0,0,0,,1,,1,123680,2,1,2,0,1,,210.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,558.729102120053,400.0,21597.125162343353,0,1,1,2,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07510258832171383,21597.125162343353,6,3,6,6_1,6_2,6_1_0 +23660,2,48.0,0.0,5,111,900.0,,,54,54,0.0,0.0,,1060.0,221.69427606344334,,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,123681,2,1,0,0,1,,540.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,121.55972866059824,900.0,68095.34598376168,1,1,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015566408903374575,34047.67299188084,9,5,9,9_1,9_2,9_0_0 +23661,2,59.0,0.0,2,112,1397.0,0.0,0.0,75,37,1006.1674398889179,0.0,2382.1651590907695,2351.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,123682,2,1,1,0,1,,370.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,904.816323575312,1397.0,67884.7462622461,6,4,1,2,200.0,8,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034632227848622035,45256.497508164066,10,5,10,10_1,10_0,10_0_1 +23662,2,66.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2841.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123683,2,2,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1695.80702984701,0.0,12893.710642544056,0,5,0,1,83.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.22033998425758394,12893.710642544056,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +23663,2,67.0,0.0,2,111,490.0,177.0,0.0,74,78,1371.087706347582,0.0,835.54826625231,1967.0,0.0,336.03521648534263,50,0,0,0,0,0,0,0,0,0,,1,,2,123684,2,3,1,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,278.126593545537,490.0,34107.294036666026,5,5,0,1,100.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05767094856265746,22738.196024444016,6,3,6,6_1,6_3,6_0_1 +23664,2,56.0,0.0,2,111,240.0,480.0,0.0,78,65,0.0,0.0,409.2481304092947,720.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,123685,2,1,0,1,1,,1884.0,1294.0,42,1.0,5.0,4.0,2.0,1.5,2,2,203.533972934039,240.0,34136.11263372756,5,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02109203258512269,22757.408422485038,6,3,6,6_0,6_4,6_0_1 +23665,2,55.0,0.0,7,112,2000.0,0.0,0.0,47,38,0.0,0.0,3410.4010867441225,2090.0,124.70303028568689,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,123686,1,1,2,0,1,,100.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1551.87779244039,2000.0,91962.82375274376,1,1,0,1,200.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022726574877901612,45981.41187637188,10,5,10,10_1,10_1,10_0_0 +23666,0,23.0,0.0,2,400,0.0,0.0,0.0,22,22,0.0,0.0,0.0,2225.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,123687,1,1,2,0,1,,180.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2053.95855885884,0.0,27333.820309482013,1,1,5,0,80.0,0,1,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08140098876804845,18222.54687298801,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +23667,2,49.0,0.0,1,111,345.0,1161.0,0.0,0,34,0.0,0.0,588.2941874633611,1506.0,0.0,2204.163199658095,10,2,2,2,1,1,2,2,2,0,,1,,1,123688,1,3,1,0,2,,160.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1371.09509093856,345.0,40220.11601073155,0,1,1,2,65.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.037443949679264184,40220.11601073155,9,5,9,9_1,9_3,9_1_0 +23668,1,70.0,141.0,2,111,287.0,76.0,0.0,0,77,0.0,0.0,489.39255594778155,363.0,0.0,144.28630764342395,71,2,1,2,2,1,2,2,2,0,,2,,2,123689,2,1,0,1,1,429.0,140.0,321.0,11,0.0,1.0,3.0,1.0,1.0,1,1,345.962382917274,287.0,10535.431734069147,0,5,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.034455161322543816,10535.431734069147,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +23669,2,41.0,0.0,8,111,800.0,0.0,0.0,0,45,0.0,0.0,1364.160434697649,800.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,80.0,2,2001.0,6,123690,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1206.87620350392,800.0,24146.080570771755,0,1,1,2,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03313167110725128,24146.080570771755,6,3,6,6_0,6_4,6_0_0 +23670,2,29.0,0.0,2,111,0.0,0.0,1100.0,85,63,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,71,0,0,0,0,0,0,0,0,3,50.0,2,,2,123691,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,820.115462751974,0.0,27601.90510716906,6,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03985232163247661,18401.27007144604,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +23671,1,67.0,307.0,1,111,600.0,0.0,0.0,0,72,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,123692,2,1,0,0,1,,0.0,391.0,11,0.0,6.0,1.0,1.0,1.0,1,1,1282.12650186356,600.0,4099.992424867429,0,5,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1463417337946425,4099.992424867429,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +23672,2,51.0,0.0,9,211,440.0,,,68,47,0.0,0.0,,555.0,159.34276092059991,,50,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,123693,2,1,0,0,2,,800.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,91.5903101979869,440.0,48083.634622834266,1,1,1,2,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011542388680751641,20905.928096884465,5,3,5,5_1,5_2,5_0_0 +23673,2,39.0,0.0,8,111,1100.0,0.0,0.0,68,63,0.0,331.081819252556,1875.7205977092674,1450.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,123694,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1647.16458720458,1100.0,34924.0,1,1,1,2,102.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04151872637727637,19402.222222222223,5,3,5,5_1,5_2,5_0_0 +23674,2,44.0,0.0,1,112,714.0,0.0,0.0,54,62,2636.7071275915036,0.0,1217.5131879676517,3274.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,123695,2,1,3,0,1,,160.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,857.339477165923,714.0,54821.46069644773,1,1,0,1,120.0,8,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059721137642218015,21928.584278579092,6,3,6,6_1,6_1,6_1_0 +23675,2,59.0,0.0,6,111,512.0,1393.0,0.0,78,63,0.0,0.0,873.0626782064953,1905.0,0.0,2644.616138780126,60,0,0,0,0,0,0,0,0,2,20.0,1,,4,123696,2,2,2,0,1,,361.0,732.0,42,1.0,2.0,5.0,2.0,1.5,2,2,193.715475734594,512.0,38603.08551219219,5,1,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04934838691581622,25735.39034146146,7,4,7,7_1,7_2,7_0_0 +23676,0,45.0,0.0,9,111,800.0,,,0,22,0.0,0.0,,842.0,58.19474746665388,,43,0,0,0,0,0,0,0,0,0,,1,2005.0,6,123697,2,1,0,0,1,,459.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,134.50159811020498,800.0,9732.944945773139,0,4,5,0,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08651030132104744,9732.944945773139,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +23677,1,51.0,247.0,1,221,180.0,180.0,0.0,0,85,0.0,0.0,306.936097806971,396.0,0.0,341.730728629162,50,2,1,2,1,2,2,2,2,0,,2,,1,123698,1,3,0,1,1,,152.0,362.0,11,0.0,0.0,4.0,1.0,1.0,1,1,717.378450397234,180.0,11235.491122629617,0,7,2,3,80.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.03524545528787868,11235.491122629617,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +23678,2,44.0,0.0,9,111,1300.0,,,38,33,0.0,0.0,,1392.0,127.47420873647992,,10,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,123699,2,3,0,0,2,,250.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,104.26920528983833,1300.0,180952.8994142458,1,1,1,2,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007692609538205679,86168.04734011705,10,5,10,10_1,10_2,10_0_0 +23679,0,46.0,0.0,9,211,600.0,,,0,53,0.0,0.0,,650.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,123700,2,2,0,0,2,,309.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,84.9374061127616,600.0,52575.78311421798,0,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012363106386602192,52575.78311421798,10,5,10,10_1,10_2,10_0_0 +23680,1,36.0,300.0,2,111,250.0,0.0,0.0,52,63,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123701,1,2,0,1,1,49.0,0.0,346.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1526.0517962653,250.0,27381.4450609478,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.00913027049681016,11408.935442061584,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +23681,1,32.0,22.0,2,211,460.0,360.0,0.0,52,67,0.0,0.0,784.3922499511482,820.0,0.0,683.461457258324,71,2,1,2,2,1,2,2,2,2,15.0,2,,2,123702,2,2,0,1,1,586.0,250.0,339.0,43,2.0,0.0,4.0,5.0,2.4,2,2,321.68839447493,460.0,33689.904946889896,1,1,2,3,61.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.024339635308935438,14037.460394537457,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +23682,2,28.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,672.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,2,,5,123703,2,1,0,0,2,,448.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,118.0457478180379,0.0,35223.1286446485,0,1,1,2,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01907837338299867,35223.1286446485,9,5,9,9_0,9_3,9_0_0 +23683,2,45.0,0.0,2,111,0.0,,,0,22,0.0,0.0,,332.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,123704,2,2,0,0,2,,662.0,290.0,32,1.0,1.0,3.0,2.0,1.3,1,1,99.47447942496754,0.0,2991.850974852512,0,4,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11096809392933298,2301.4238268096246,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +23684,0,52.0,0.0,2,112,510.0,0.0,0.0,64,85,0.0,0.0,869.6522771197511,580.0,96.99124577775646,0.0,71,2,2,1,2,1,2,2,2,0,,1,,2,123705,1,3,4,0,2,,0.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1194.71379842972,510.0,38670.82371613699,1,7,5,0,80.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,1,0,0,0.014998387524855623,25780.54914409133,7,4,7,7_1,7_0,7_0_1 +23685,2,62.0,0.0,8,112,1800.0,0.0,0.0,74,74,0.0,185.40581878143135,3069.36097806971,2100.0,221.69427606344334,0.0,10,0,0,0,0,0,0,0,0,0,,1,2000.0,6,123706,2,1,1,0,1,,732.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1382.9676394806,1800.0,103899.40090860371,6,6,0,1,180.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02021185860202687,69266.26727240247,10,5,10,10_1,10_1,10_0_0 +23686,2,80.0,0.0,5,300,0.0,0.0,0.0,86,77,0.0,0.0,0.0,50.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123707,2,1,2,0,1,,1900.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1378.61166551134,0.0,24236.831817431084,6,5,0,1,82.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002062975902817467,16157.887878287389,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +23687,2,63.0,0.0,2,111,500.0,1100.0,0.0,85,78,0.0,0.0,852.6002716860306,1600.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,0,,1,,2,123708,2,1,3,0,1,,250.0,,41,2.0,4.0,6.0,4.0,2.5,4,4,1280.97103614871,500.0,42093.09860447212,6,5,0,1,100.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03801098168216132,16837.23944178885,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +23688,2,75.0,0.0,2,111,195.0,1038.0,0.0,0,78,0.0,0.0,332.5141059575519,1233.0,0.0,1970.647201761501,70,2,2,2,2,1,2,2,2,0,,1,,2,123709,2,1,2,0,1,,83.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,2119.59330017293,195.0,15119.964782758618,0,5,0,1,88.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.08154780898735935,15119.964782758618,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +23689,2,51.0,0.0,2,111,370.0,,,0,63,0.0,0.0,,480.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,2,123710,1,2,0,0,2,,220.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,136.21209811362166,370.0,8324.523819609009,0,4,0,1,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057660955797774985,5549.682546406006,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +23690,2,46.0,0.0,2,120,4000.0,0.0,0.0,56,62,527.3414255183008,0.0,6820.802173488245,4500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,123711,2,1,2,0,1,,520.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,844.246598412323,4000.0,38135.27907769607,1,1,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1180009720351538,15254.111631078427,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +23692,1,36.0,105.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,644.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,123713,1,1,0,1,1,250.0,0.0,366.0,42,1.0,0.0,3.0,3.0,1.8,2,2,173.692589378635,0.0,19467.126394324292,6,1,2,3,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033081410525374735,10815.070219069052,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +23693,2,77.0,0.0,5,400,530.0,0.0,0.0,77,78,1476.555991451242,0.0,903.7562879871924,2015.0,117.77508415870429,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,123714,2,1,2,0,2,,148.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1614.47849578453,530.0,18589.431411764577,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1083949237266493,12392.954274509719,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +23694,2,66.0,0.0,9,112,1390.0,0.0,0.0,75,75,0.0,0.0,2370.228755287165,1390.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,1,2004.0,6,123715,1,2,1,0,1,,249.0,776.0,41,0.0,1.0,5.0,2.0,1.5,2,2,1989.42629164575,1390.0,49778.80536804888,5,5,2,3,92.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.027923530701927775,33185.87024536592,8,4,8,8_1,8_1,8_0_0 +23695,2,77.0,0.0,1,112,420.0,2938.0,0.0,71,71,0.0,185.40581878143135,716.1842282162656,3498.0,0.0,5577.8048928471,50,0,0,0,0,0,0,0,0,0,,1,,1,123716,2,1,2,0,1,,144.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,674.499303796362,420.0,18031.944784038922,5,5,0,1,100.0,8,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.19398905896696592,12021.296522692615,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +23696,2,35.0,0.0,5,111,300.0,1500.0,0.0,37,38,0.0,66.2163638505112,511.56016301161833,1850.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,3,80.0,1,,3,123717,1,2,3,0,2,,700.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,779.359969548541,300.0,87056.29555022702,1,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021250617066891443,41455.378833441435,9,5,9,9_1,9_4,9_0_0 +23697,2,67.0,0.0,7,211,520.0,,,0,72,0.0,0.0,,784.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,123718,2,1,0,0,2,,500.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,103.10975280392017,520.0,14438.492288047504,0,5,0,1,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05429929831724966,14438.492288047504,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +23698,2,44.0,0.0,9,112,1600.0,0.0,0.0,52,33,0.0,927.0290939071567,2728.320869395298,2300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,123719,2,2,1,0,1,,490.0,,43,3.0,1.0,5.0,4.0,2.3,3,2,1133.05448308838,1600.0,70554.60434299243,1,1,1,2,105.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03259886468668772,30675.914931735842,8,4,8,8_1,8_1,8_0_0 +23699,2,41.0,0.0,2,111,276.0,1600.0,0.0,0,46,0.0,0.0,470.6353499706889,1876.0,0.0,3037.6064767036623,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,123720,2,1,1,0,1,,300.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,280.722170725384,276.0,22571.792466707757,0,1,0,1,70.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08311258411431012,17362.91728208289,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +23700,1,36.0,241.0,7,111,350.0,0.0,0.0,0,43,0.0,0.0,596.8201901802214,350.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,15.0,2,,5,123721,2,1,0,1,1,572.0,0.0,571.0,32,1.0,0.0,4.0,2.0,1.3,1,1,331.022599118197,350.0,19578.21576360209,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017877012094773513,15060.165972001607,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +23701,2,59.0,0.0,2,111,570.0,1470.0,0.0,0,54,0.0,0.0,971.9643097220749,2040.0,0.0,2790.8009504714896,50,1,2,2,1,1,2,2,2,2,25.0,1,,2,123722,1,2,4,0,1,,270.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,488.505174390835,570.0,30404.13151895998,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06709614444102303,30404.13151895998,8,4,8,8_1,8_3,8_0_1 +23702,2,74.0,0.0,2,112,350.0,1100.0,0.0,86,78,0.0,264.8654554020448,596.8201901802214,1650.0,0.0,2088.354452733768,70,0,0,0,0,0,0,0,0,0,,1,,2,123723,2,1,1,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,416.744344886687,350.0,22148.791072338485,6,5,0,1,100.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07449616525845859,14765.860714892324,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +23703,2,24.0,0.0,5,111,480.0,0.0,0.0,0,85,0.0,0.0,818.4962608185893,480.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,3,123724,2,1,0,1,1,420.0,0.0,263.0,11,0.0,0.0,1.0,1.0,1.0,1,1,867.617160711923,480.0,11066.462705556876,0,7,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.043374293373705984,11066.462705556876,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +23704,0,35.0,0.0,5,111,500.0,,,52,53,0.0,0.0,,580.0,110.84713803172167,,43,2,2,2,1,1,2,2,2,2,35.0,1,,3,123725,2,3,0,0,2,,300.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,119.9822397559128,500.0,52702.23021399973,1,1,5,0,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.011005226868860851,29279.016785555403,8,4,8,8_1,8_2,8_0_0 +23705,2,48.0,0.0,2,111,200.0,150.0,0.0,65,54,0.0,0.0,341.04010867441224,350.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,123726,1,2,0,1,1,1200.0,0.0,408.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,176.924036898572,200.0,53945.500455981084,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0064880295305740285,20748.269406146574,5,3,5,5_0,5_4,5_0_1 +23706,1,32.0,305.0,2,112,420.0,0.0,0.0,0,63,0.0,0.0,716.1842282162656,450.0,41.567676761895626,0.0,60,2,1,2,2,1,2,2,2,0,,2,,2,123727,2,3,0,1,1,874.0,0.0,293.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2770.49334438193,420.0,17612.62313163273,0,4,2,3,72.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025549856863273723,13548.171639717482,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +23707,2,37.0,0.0,9,112,1100.0,0.0,0.0,46,62,0.0,0.0,1875.7205977092674,1230.0,180.1265993015477,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,123728,2,1,1,0,1,,700.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1507.07482411211,1100.0,44330.59619850619,1,1,1,2,106.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02774607394162336,18471.08174937758,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +23708,2,71.0,0.0,7,111,300.0,,,0,77,0.0,0.0,,420.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,123729,2,1,0,0,2,,170.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,110.21735669635056,300.0,3746.408198509498,0,5,0,1,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11210737798595899,3746.408198509498,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23709,2,32.0,0.0,9,111,250.0,0.0,0.0,37,65,0.0,0.0,426.3001358430153,306.0,77.59299662220518,0.0,50,2,2,2,2,2,2,2,1,2,30.0,1,2007.0,6,123730,1,3,3,0,1,1686.0,279.0,450.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1005.28271610453,250.0,38776.37496585169,1,1,2,3,74.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.007891402955265367,21542.43053658427,6,3,6,6_1,6_2,6_0_0 +23710,2,49.0,0.0,2,112,1205.0,0.0,0.0,54,53,0.0,0.0,2054.766654763334,1885.0,942.2006732696343,0.0,42,0,0,0,0,0,0,0,0,3,80.0,1,,2,123731,2,1,2,0,1,,435.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,757.893529011957,1205.0,78822.37779551822,1,1,0,1,60.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023914528497098696,39411.18889775911,9,5,9,9_1,9_0,9_0_1 +23711,2,56.0,0.0,2,111,216.0,0.0,0.0,0,46,0.0,0.0,368.3233173683652,216.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,75.0,2,,2,123732,2,1,0,1,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1325.70450955556,216.0,17990.391370680518,0,1,1,2,94.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012006409174178483,17990.391370680518,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +23712,2,55.0,0.0,7,112,398.0,,,85,63,0.0,0.0,,565.0,231.393400641219,,71,0,0,0,0,0,0,0,0,0,,1,,5,123733,2,1,0,0,2,,550.0,,42,1.0,0.0,5.0,3.0,2.0,3,3,112.96702789784507,398.0,10501.998591054271,6,4,0,1,60.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05379928354601703,5250.9992955271355,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +23713,2,32.0,0.0,1,112,0.0,0.0,0.0,54,63,0.0,0.0,0.0,693.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,123734,2,1,1,0,1,,401.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1057.73851728427,0.0,46405.40318400407,1,1,1,2,155.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014933605840081935,25780.779546668928,7,4,7,7_1,7_0,7_1_0 +23714,2,81.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1901.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123735,2,1,2,0,1,,564.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,853.826051975788,0.0,17376.965513914987,0,5,0,1,42.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1093976965355506,17376.965513914987,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +23715,0,27.0,0.0,1,111,1080.0,0.0,0.0,43,46,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,2,,1,123736,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1275.9634281571,1080.0,39771.79565304817,1,1,5,0,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02715492177978208,26514.530435365446,7,4,7,7_0,7_4,7_1_0 +23716,2,63.0,0.0,5,112,2680.0,0.0,0.0,45,74,0.0,0.0,4569.937456237124,2710.0,41.567676761895626,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,123737,2,1,2,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,824.22307549681,2680.0,63626.91737193911,7,5,0,1,120.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04259203670293118,42417.944914626074,9,5,9,9_1,9_0,9_0_0 +23717,2,49.0,0.0,5,221,240.0,941.0,0.0,0,62,0.0,0.0,409.2481304092947,1256.0,103.91919190473907,1786.4923091113415,71,0,0,0,0,0,0,0,0,2,25.0,2,,3,123738,2,1,0,1,1,940.0,55.0,165.0,12,1.0,2.0,4.0,1.0,1.0,1,1,2542.47940869862,240.0,13837.507457144457,0,1,2,3,90.0,1,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09076779209622131,13837.507457144457,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +23718,2,34.0,0.0,7,211,960.0,0.0,0.0,0,22,0.0,0.0,1636.9925216371787,975.0,20.783838380947813,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,5,123739,2,1,2,0,1,,277.0,560.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1664.91479187643,960.0,15849.578223467503,0,1,2,3,83.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061515832551075525,15849.578223467503,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +23719,0,51.0,0.0,2,112,160.0,0.0,0.0,0,85,827.9260380637322,66.2163638505112,272.8320869395298,1057.0,85.9065319745843,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,123740,1,1,4,0,2,,210.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,741.700795627999,160.0,10600.220623247535,0,7,5,0,80.0,9,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09971490571449751,10600.220623247535,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +23720,2,81.0,0.0,5,111,1100.0,0.0,0.0,0,77,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123741,2,2,2,0,1,,267.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1487.12591040679,1100.0,16548.674547504663,0,5,0,1,87.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06647058027773388,16548.674547504663,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +23722,1,74.0,44.0,2,111,300.0,1100.0,0.0,0,77,0.0,0.0,511.56016301161833,1400.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,0,,1,,2,123743,1,3,2,0,1,,0.0,289.0,11,0.0,6.0,5.0,1.0,1.0,1,1,294.710582505485,300.0,14483.110995377287,0,5,2,3,100.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09666431476268127,14483.110995377287,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +23723,2,57.0,0.0,7,111,1000.0,0.0,0.0,0,65,0.0,264.8654554020448,1705.2005433720612,1270.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,123744,2,1,2,0,1,,400.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,1594.77076807792,1000.0,8772.831886338408,0,4,0,1,137.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1447651130734332,8772.831886338408,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +23724,2,52.0,0.0,1,111,920.0,1848.0,0.0,0,63,0.0,0.0,1568.7844999022964,2768.0,0.0,3508.43548059273,41,0,0,0,0,0,0,0,0,0,,2,,1,123745,1,3,0,0,2,,0.0,580.0,22,2.0,2.0,3.0,3.0,2.0,3,3,2299.35222279797,920.0,28443.15796610717,0,1,2,3,91.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.09731690142488204,14221.578983053585,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +23725,2,40.0,0.0,2,111,341.0,825.0,0.0,54,47,0.0,384.05491033296494,581.4733852898729,1456.0,0.0,1566.2658395503258,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,123746,2,2,1,0,1,,200.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,524.121427639176,341.0,48792.79360499883,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029840472176834585,23234.66362142801,6,3,6,6_1,6_4,6_0_1 +23726,1,49.0,340.0,2,211,0.0,0.0,528.0,0,56,0.0,0.0,332.8080573389847,528.0,0.0,631.8745739141515,71,2,2,2,2,1,2,2,2,0,,2,,2,123747,1,3,0,1,1,864.0,576.0,306.0,32,2.0,0.0,3.0,3.0,2.0,3,2,326.146903452625,0.0,9381.256288874314,0,4,2,3,40.0,1,3,1,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.05628244061791391,4690.628144437157,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +23727,2,33.0,0.0,6,111,530.0,0.0,0.0,43,56,0.0,0.0,903.7562879871924,530.0,0.0,0.0,41,2,2,1,1,2,2,2,2,0,,2,,4,123748,1,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,857.688141874945,530.0,152131.74365539345,1,1,1,2,103.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0034838225558010303,72443.68745494926,10,5,10,10_0,10_4,10_0_0 +23728,2,33.0,0.0,1,211,650.0,0.0,0.0,53,52,1371.087706347582,132.4327277010224,1108.3803531918397,2146.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123749,2,3,3,0,1,,398.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1033.02649411486,650.0,36753.751974210114,1,1,1,2,90.0,1,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05838859666642565,20418.751096783395,5,3,5,5_1,5_1,5_1_0 +23729,2,58.0,0.0,9,111,780.0,0.0,0.0,0,35,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,2006.0,6,123750,2,1,0,0,1,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,924.05855385142,780.0,11328.86426322445,0,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06885067928053668,11328.86426322445,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +23730,2,28.0,0.0,2,111,500.0,1200.0,0.0,47,54,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,10,1,2,2,1,2,2,2,2,2,20.0,1,,2,123751,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,804.791413185955,500.0,55098.18031833491,1,1,1,2,124.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03085401351148242,30610.100176852728,8,4,8,8_1,8_3,8_0_1 +23731,2,64.0,0.0,5,120,360.0,1230.0,0.0,77,78,0.0,0.0,613.872195613942,1590.0,0.0,2335.1599789659404,50,0,0,0,0,0,0,0,0,0,,1,,3,123752,2,2,2,0,1,,580.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1086.86502320756,360.0,48122.912480223466,5,5,0,1,88.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03304039423327556,32081.94165348231,8,4,8,8_1,8_0,8_0_0 +23732,2,75.0,0.0,6,111,530.0,880.0,0.0,78,74,0.0,165.540909626278,903.7562879871924,1535.0,0.0,1670.6835621870143,50,0,0,0,0,0,0,0,0,0,,1,,4,123753,2,1,2,0,1,,360.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,350.765949437999,530.0,28600.434193829096,5,5,0,1,81.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05367051386692569,14300.217096914548,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +23733,2,68.0,0.0,2,111,270.0,0.0,0.0,77,75,0.0,0.0,460.40414671045653,474.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,123754,2,1,0,1,1,,130.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,258.314483924432,270.0,40360.44352046719,5,5,0,1,89.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011744172230407473,26906.962346978125,7,4,7,7_0,7_3,7_0_1 +23734,2,78.0,0.0,2,111,346.0,,,0,86,0.0,0.0,,483.0,189.82572387932336,,70,0,0,0,0,0,0,0,0,0,,1,,2,123755,2,2,0,0,2,,264.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,90.84048054354763,346.0,9114.728632478633,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052991155247224773,9114.728632478633,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +23735,2,55.0,0.0,1,112,1240.0,900.0,0.0,0,63,0.0,0.0,2114.448673781356,2140.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,40.0,1,,1,123756,2,1,2,0,1,,250.0,,22,1.0,0.0,5.0,3.0,2.0,3,3,204.531293787249,1240.0,47772.87805060356,0,1,0,1,120.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04479529154038404,23886.43902530178,6,3,6,6_1,6_0,6_1_0 +23736,1,63.0,28.0,1,222,567.0,0.0,0.0,0,77,0.0,860.8127300566456,966.8487080919587,1267.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123757,2,2,4,0,1,,140.0,350.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1700.53770646379,567.0,14266.438459195055,0,5,2,3,50.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08880983180377361,14266.438459195055,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +23737,2,45.0,0.0,2,111,156.0,800.0,0.0,0,67,0.0,0.0,266.01128476604157,956.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,2,123758,2,2,0,0,1,,0.0,445.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1385.76186470924,156.0,7230.715403187669,0,4,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.13221375018833495,7230.715403187669,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +23738,1,56.0,299.0,6,211,650.0,,,0,46,0.0,0.0,,650.0,0.0,,50,0,0,0,0,0,0,0,0,0,,8,,4,123759,2,1,0,0,2,,660.0,348.0,32,1.0,2.0,4.0,2.0,1.5,2,2,80.88176941720845,650.0,7618.0,0,4,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08532423208191127,5078.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23739,2,36.0,0.0,1,300,765.0,0.0,0.0,34,37,2953.111982902484,0.0,1304.4784156796268,3665.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,123760,2,1,1,0,1,,80.0,,43,2.0,0.0,9.0,5.0,2.4,2,2,1384.63176732003,765.0,113160.0,1,1,1,2,220.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032387769529869215,47150.0,10,5,10,10_1,10_0,10_1_0 +23740,2,72.0,0.0,6,211,1200.0,0.0,0.0,74,75,0.0,132.4327277010224,2046.2406520464733,1348.0,66.50828281903301,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,123761,2,1,2,0,1,,520.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1531.6595505547,1200.0,60559.41272151643,5,5,0,1,148.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022259132633911143,40372.94181434429,9,5,9,9_1,9_1,9_0_0 +23741,2,50.0,0.0,1,111,1500.0,0.0,0.0,22,37,3164.0485531098047,397.2981831030672,2557.8008150580918,4860.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,4,45.0,1,,1,123762,2,1,1,0,1,,300.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,958.669073074059,1500.0,49677.46072794427,1,1,0,1,170.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09783108735399154,33118.30715196285,8,4,8,8_1,8_2,8_1_0 +23742,2,78.0,0.0,5,112,810.0,0.0,0.0,0,77,0.0,0.0,1381.2124401313695,850.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,123763,2,1,1,0,1,,339.0,496.0,11,0.0,4.0,3.0,1.0,1.0,1,1,3761.16070041098,810.0,14695.921935838647,0,5,2,3,62.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057839174956905715,14695.921935838647,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +23743,1,40.0,434.0,1,111,500.0,500.0,0.0,55,22,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,41,0,0,0,0,0,0,0,0,0,,2,,1,123764,2,2,0,0,1,,0.0,701.0,43,2.0,0.0,3.0,4.0,2.1,2,2,508.007514790225,500.0,10177.33929949174,4,1,2,3,87.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09825750823203275,4846.352047377019,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +23744,2,70.0,0.0,5,112,1888.0,0.0,0.0,77,74,0.0,92.70290939071567,3219.4186258864515,1989.0,42.95326598729215,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,123765,2,1,2,0,1,,352.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1606.10630247832,1888.0,65421.5849060647,5,5,0,1,121.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030402809758520784,43614.389937376465,10,5,10,10_1,10_2,10_0_0 +23746,2,60.0,0.0,2,111,200.0,0.0,0.0,77,33,0.0,0.0,341.04010867441224,374.0,0.0,0.0,60,2,2,2,2,1,2,2,2,3,30.0,2,,2,123767,1,2,0,1,2,,0.0,420.0,42,1.0,4.0,2.0,2.0,1.5,2,2,358.964809958201,200.0,33793.576716978074,6,1,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.011067191943967873,22529.05114465205,6,3,6,6_0,6_4,6_0_1 +23747,2,46.0,0.0,7,111,2741.0,,,37,43,0.0,0.0,,2901.0,221.69427606344334,,20,0,0,0,0,0,0,0,0,0,,1,,5,123768,2,1,0,0,2,,380.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,99.34281670720418,2741.0,100917.40928645131,4,1,1,2,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02874627896724529,56065.22738136184,10,5,10,10_1,10_3,10_0_0 +23748,1,45.0,472.0,2,111,0.0,0.0,588.0,85,68,0.0,0.0,370.6271547638694,588.0,0.0,703.6785027680323,60,0,0,0,0,0,0,0,0,0,,2,,2,123769,2,2,0,1,1,1000.0,0.0,465.0,42,1.0,0.0,5.0,8.0,3.8999999999999995,5,3,358.200718507711,0.0,29534.427748399197,6,1,2,3,140.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019908968780743358,7572.930191897231,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23749,2,32.0,0.0,7,112,800.0,0.0,0.0,46,37,0.0,0.0,1364.160434697649,802.0,2.771178450793042,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,123770,2,1,2,0,1,,483.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1221.51462633596,800.0,66833.72791951009,1,1,1,2,105.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01199992915202745,27847.386633129205,7,4,7,7_1,7_0,7_0_0 +23751,2,65.0,0.0,2,111,900.0,,,0,86,0.0,0.0,,1015.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,2,,2,123772,2,3,0,0,2,,500.0,60.0,21,0.0,0.0,3.0,2.0,1.5,2,2,9.282631727586642,900.0,9454.224,0,7,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10735941945103056,6302.816,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +23752,2,54.0,0.0,2,111,440.0,480.0,0.0,0,34,0.0,0.0,750.2882390837069,920.0,0.0,911.2819430110987,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,123773,1,2,0,0,2,,0.0,680.0,12,1.0,0.0,2.0,1.0,1.0,1,1,683.890839214485,440.0,41649.88538517416,0,1,2,3,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022088896319687988,41649.88538517416,9,5,9,9_0,9_3,9_0_1 +23753,2,59.0,0.0,7,112,2000.0,0.0,0.0,46,38,0.0,0.0,3410.4010867441225,2080.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,123774,2,1,2,0,1,,246.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,817.813585671694,2000.0,87088.0,1,1,0,1,260.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023883887562006247,58058.666666666664,10,5,10,10_1,10_1,10_0_0 +23754,1,24.0,200.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,601.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,3,123775,2,1,0,0,1,,0.0,465.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1443.36405154626,0.0,13009.538881350494,0,1,2,3,45.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.046196871809311306,13009.538881350494,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +23755,2,35.0,0.0,1,300,0.0,0.0,0.0,0,47,2636.7071275915036,0.0,0.0,3849.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,123776,1,2,2,0,1,,250.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1016.11700377925,0.0,21784.64130416515,0,1,0,1,100.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17668411181340332,21784.64130416515,6,3,6,6_1,6_0,6_1_0 +23756,1,29.0,200.0,2,111,0.0,0.0,0.0,37,48,0.0,0.0,0.0,385.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,,2,123777,2,1,0,1,1,1048.0,0.0,900.0,43,2.0,0.0,3.0,3.0,1.8,2,2,226.793897840872,0.0,40586.974509356005,4,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009485801902067147,22548.31917186445,6,3,6,6_0,6_4,6_0_1 +23757,1,32.0,400.0,7,111,800.0,,,0,53,0.0,0.0,,920.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,123778,2,2,0,0,2,,1200.0,700.0,32,1.0,0.0,3.0,5.0,2.4,2,2,132.0833349527103,800.0,24739.091634432672,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03718810753421173,10307.954847680281,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +23758,2,87.0,0.0,2,111,426.0,,,0,72,0.0,0.0,,573.0,203.68161613328857,,71,0,0,0,0,0,0,0,0,0,,1,,2,123779,2,2,0,0,2,,559.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,90.6784231604455,426.0,13461.770844681034,0,5,0,1,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04256497949721093,13461.770844681034,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +23759,2,74.0,0.0,5,111,750.0,400.0,0.0,86,75,0.0,0.0,1278.9004075290459,1150.0,0.0,759.4016191759156,20,0,0,0,0,0,0,0,0,0,,1,,3,123780,2,2,2,0,1,,114.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1119.6051539803,750.0,49756.84038530873,7,5,0,1,107.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02311240004579452,33171.22692353915,8,4,8,8_1,8_2,8_0_0 +23760,2,51.0,0.0,1,111,222.0,192.0,0.0,0,55,0.0,0.0,378.5545206285976,414.0,0.0,364.5127772044395,50,0,0,0,0,0,0,0,0,3,60.0,2,,1,123781,2,3,0,1,1,518.0,0.0,539.0,32,2.0,1.0,2.0,2.0,1.5,2,2,990.827931310261,222.0,37779.764064590425,0,1,2,3,37.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010958247364705671,25186.509376393617,7,4,7,7_0,7_4,7_1_0 +23761,1,37.0,271.0,5,111,106.0,282.0,0.0,0,52,0.0,0.0,180.7512575974385,388.0,0.0,535.3781415190205,71,0,0,0,0,0,0,0,0,0,,2,,3,123782,2,1,0,1,1,509.0,0.0,293.0,32,1.0,1.0,4.0,2.0,1.3,1,1,290.432328511972,106.0,13550.105777496765,0,4,2,3,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02863446281315147,10423.158290382127,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +23762,2,41.0,0.0,1,111,900.0,2000.0,0.0,42,38,0.0,0.0,1534.680489034855,2900.0,0.0,3797.008095879578,20,2,2,2,1,2,1,2,2,2,45.0,1,,1,123783,2,1,2,0,1,,720.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,295.472618720934,900.0,64675.05882637898,1,1,1,2,200.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04483954174336489,30797.64706018047,8,4,8,8_1,8_2,8_1_0 +23763,2,36.0,0.0,8,111,0.0,0.0,0.0,54,53,0.0,0.0,0.0,1273.0,0.0,0.0,71,1,2,2,2,1,2,2,2,2,20.0,1,,6,123784,1,2,2,0,1,,272.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,232.199215219992,0.0,40658.53603539162,4,1,2,3,80.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03130953851589503,27105.69069026108,7,4,7,7_1,7_2,7_0_0 +23764,1,51.0,193.0,2,111,250.0,200.0,0.0,0,68,0.0,0.0,426.3001358430153,450.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,8,,2,123785,1,3,0,1,1,40.0,120.0,180.0,12,1.0,2.0,2.0,1.0,1.0,1,1,326.46074688963,250.0,6060.0,0,4,2,3,42.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07425742574257425,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23765,2,64.0,0.0,1,111,350.0,1148.0,0.0,72,75,0.0,0.0,596.8201901802214,1498.0,0.0,2179.4826470348776,50,0,0,0,0,0,0,0,0,0,,1,,1,123786,2,1,2,0,1,,255.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,404.16368418718,350.0,24406.62906658435,5,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06137676759511802,16271.086044389567,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +23766,1,34.0,127.0,7,111,1300.0,0.0,0.0,47,48,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,123787,1,1,2,0,1,,600.0,730.0,43,2.0,0.0,4.0,4.0,2.1,2,2,241.796756215105,1300.0,41814.68217171048,1,1,2,3,82.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.031089558319769044,19911.75341510023,5,3,5,5_1,5_3,5_0_0 +23767,2,83.0,0.0,2,111,349.0,1011.0,0.0,0,86,0.0,0.0,595.1149896368494,1360.0,0.0,1919.3875924671268,70,0,0,0,0,0,0,0,0,0,,1,,2,123788,2,1,2,0,1,,156.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,864.652978720658,349.0,17969.908576862217,0,6,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07568207674418086,17969.908576862217,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +23768,1,30.0,546.0,9,211,1320.0,,,0,85,0.0,0.0,,1596.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123789,2,1,0,0,2,,1000.0,555.0,31,0.0,0.0,4.0,8.0,3.0999999999999996,1,1,130.7691509029152,1320.0,6522.0,0,6,2,3,99.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.24471021159153633,2103.8709677419356,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +23769,2,50.0,0.0,9,111,960.0,960.0,0.0,65,54,0.0,0.0,1636.9925216371787,1920.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,3,60.0,1,2004.0,6,123790,2,2,4,0,1,,1200.0,552.0,43,3.0,1.0,5.0,3.0,2.0,3,3,579.103485922567,960.0,46649.52331530502,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04115797683553341,23324.76165765251,6,3,6,6_1,6_4,6_0_0 +23770,2,71.0,0.0,8,111,170.0,0.0,0.0,78,77,0.0,0.0,289.8840923732504,170.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,123791,2,1,0,1,1,,0.0,,41,0.0,1.0,1.0,2.0,1.5,2,2,784.401445878721,170.0,19313.07353488909,5,5,0,1,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008802327588764928,12875.382356592725,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +23772,2,68.0,0.0,5,221,1869.0,0.0,0.0,75,75,817.3792095533662,0.0,3187.0198155623825,2644.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,123793,2,1,2,0,1,,525.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,557.915564434247,1869.0,54986.94529150933,5,5,0,1,115.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048084140444300455,36657.96352767289,9,5,9,9_1,9_1,9_0_0 +23773,2,34.0,0.0,2,111,450.0,0.0,0.0,38,38,0.0,0.0,767.3402445174275,1938.0,0.0,0.0,12,2,1,2,1,1,2,2,2,2,45.0,2,,2,123794,1,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,260.546188305333,450.0,72273.57500966563,1,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026814779810474552,40151.986116480904,9,5,9,9_0,9_4,9_0_1 +23774,2,82.0,0.0,2,111,400.0,0.0,0.0,0,77,0.0,0.0,682.0802173488245,400.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,123795,2,1,0,1,1,457.0,0.0,336.0,11,0.0,4.0,4.0,1.0,1.0,1,1,379.942311695193,400.0,26877.83069766233,0,5,2,3,75.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.014882153418534239,26877.83069766233,7,4,7,7_0,7_2,7_0_1 +23775,2,82.0,0.0,2,120,420.0,0.0,0.0,86,72,3164.0485531098047,0.0,716.1842282162656,3570.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,123796,2,1,1,0,1,,156.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1249.0164381135,420.0,15029.11154743314,5,5,0,1,97.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.23753899149213045,10019.40769828876,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +23776,2,56.0,0.0,2,111,650.0,0.0,0.0,56,46,0.0,1364.0570953205306,1108.3803531918397,1680.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,15.0,2,,2,123797,1,3,0,1,1,670.0,0.0,363.0,43,2.0,0.0,4.0,5.0,3.0,5,3,806.509902533145,650.0,38249.03565965596,1,1,2,3,101.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04392267598453517,12749.678553218653,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +23778,2,85.0,0.0,2,221,0.0,0.0,0.0,72,72,0.0,0.0,0.0,500.0,152.4148147936173,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,123799,2,1,0,1,1,,131.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2777.68428711085,0.0,20013.358905162935,5,5,0,1,80.0,1,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02498331251487289,13342.239270108623,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +23779,1,58.0,32.0,9,111,180.0,105.0,0.0,0,68,0.0,0.0,306.936097806971,285.0,0.0,199.34292503367786,71,0,0,0,0,0,0,0,0,1,15.0,2,2006.0,6,123800,2,2,0,1,1,,0.0,388.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1843.49416965812,180.0,11452.400000000001,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024885613495861127,11452.400000000001,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +23780,1,58.0,251.0,1,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,296.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,123801,2,1,0,0,1,,95.0,140.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2985.92227569673,0.0,10181.475265017667,0,7,2,3,30.0,9,0,5,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.02907240771060169,10181.475265017667,2,1,2_1,2_0_1,2_0_1,2_1_0_1 +23781,2,85.0,0.0,2,111,250.0,2400.0,0.0,0,77,0.0,0.0,426.3001358430153,2650.0,0.0,4556.4097150554935,44,0,0,0,0,0,0,0,0,0,,1,,2,123802,2,2,2,0,1,,180.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,738.763577503087,250.0,16611.649735056646,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1595265998420092,16611.649735056646,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +23782,0,69.0,0.0,6,111,0.0,,,0,75,0.0,0.0,,170.0,235.55016831740858,,60,0,0,0,0,0,0,0,0,0,,2,,4,123803,2,1,0,0,2,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,212.34860726164976,0.0,43590.61754912892,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0038999218079074256,43590.61754912892,10,5,10,10_0,10_2,10_0_0 +23783,2,60.0,0.0,2,211,600.0,600.0,0.0,0,78,0.0,211.89236432163582,1023.1203260232367,1360.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,1,,2,123804,2,1,3,0,2,,224.0,458.0,11,0.0,1.0,5.0,1.0,1.0,1,1,1357.61029218786,600.0,13004.904768685199,0,7,2,3,100.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10457592917364335,13004.904768685199,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +23784,2,60.0,0.0,1,111,600.0,600.0,0.0,0,77,0.0,0.0,1023.1203260232367,1260.0,83.13535352379125,1139.1024287638734,50,1,2,2,2,1,2,2,2,0,,1,,1,123805,1,2,3,0,2,,130.0,,21,1.0,1.0,7.0,2.0,1.5,2,2,346.74316038837,600.0,21523.991080790118,0,5,0,1,200.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05853932921968796,14349.327387193413,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +23785,2,66.0,0.0,7,111,1250.0,0.0,0.0,0,56,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,5,123806,2,1,0,0,1,,160.0,366.0,11,0.0,3.0,2.0,1.0,1.0,1,1,373.633876028529,1250.0,18631.6969579305,0,5,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06708997053904653,18631.6969579305,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +23786,2,32.0,0.0,8,111,399.0,0.0,0.0,42,53,0.0,0.0,680.3750168054524,399.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,2001.0,6,123807,1,1,0,1,1,,460.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1916.47150868175,399.0,36830.93793957909,1,1,1,2,50.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01083328370986796,24553.95862638606,7,4,7,7_0,7_3,7_0_0 +23787,2,54.0,0.0,6,120,420.0,,,42,11,0.0,0.0,,678.0,357.4820201523024,,71,0,0,0,0,0,0,0,0,0,,1,,4,123808,2,1,0,0,1,,300.0,,43,3.0,1.0,5.0,4.0,2.3,3,3,94.57249618095067,420.0,22941.525729979665,4,1,0,1,103.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02955339622917926,9974.576404338986,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +23788,2,53.0,0.0,8,111,0.0,0.0,0.0,46,31,0.0,0.0,0.0,942.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,123809,2,1,1,0,1,,349.0,,43,2.0,0.0,6.0,5.0,2.8,5,3,486.805924146662,0.0,124009.31950127617,1,1,1,2,153.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007596203283659709,44289.04267902721,10,5,10,10_1,10_4,10_0_0 +23789,2,31.0,0.0,9,111,400.0,,,55,47,0.0,0.0,,400.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,123810,2,1,0,0,1,,300.0,650.0,43,2.0,0.0,2.0,2.0,1.5,2,2,136.6347101084575,400.0,64554.44563263489,1,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006196319960306247,43036.297088423256,9,5,9,9_0,9_2,9_0_0 +23790,1,51.0,450.0,1,111,850.0,650.0,0.0,62,22,0.0,0.0,1449.420461866252,1500.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,0,,1,,1,123811,1,2,3,0,1,,450.0,630.0,43,2.0,4.0,4.0,4.0,2.3,3,2,695.842547688828,850.0,11569.162458519431,4,4,2,3,110.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.12965502086932948,5030.070634138883,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +23791,2,60.0,0.0,6,111,1000.0,1000.0,0.0,55,55,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,123812,2,2,4,0,1,,0.0,570.0,43,2.0,1.0,6.0,3.0,1.8,2,2,225.271639221858,1000.0,48622.785236772965,1,1,2,3,86.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04113297891638298,27012.658464873868,7,4,7,7_1,7_2,7_0_0 +23792,2,59.0,0.0,2,221,1251.0,0.0,0.0,78,63,0.0,0.0,2133.2058797584486,1251.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,2,123813,2,1,2,0,1,,234.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,2575.38733765706,1251.0,38284.87440243773,5,1,0,1,86.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03267608995787497,25523.249601625153,7,4,7,7_1,7_1,7_0_1 +23793,2,39.0,0.0,1,112,1800.0,0.0,0.0,53,33,0.0,145.67600047112464,3069.36097806971,1910.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,123814,2,1,2,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,527.750346559988,1800.0,67213.05822331818,1,1,1,2,87.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02841709707143433,32006.218201580083,8,4,8,8_1,8_0,8_1_0 +23794,1,21.0,113.0,2,111,0.0,0.0,700.0,67,56,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,44,0,0,0,0,0,0,0,0,2,15.0,2,,2,123815,2,2,0,1,1,239.0,224.0,304.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2115.13737472668,0.0,30275.191999004735,1,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023121240652181883,20183.461332669824,5,3,5,5_0,5_3,5_0_1 +23795,2,71.0,0.0,2,111,173.0,845.0,0.0,0,77,0.0,0.0,294.9996940033666,1018.0,0.0,1604.2359205091218,50,0,0,0,0,0,0,0,0,0,,1,,2,123816,2,2,2,0,1,,80.0,292.0,11,0.0,6.0,4.0,1.0,1.0,1,1,1323.59649560439,173.0,22823.520617904825,0,5,2,3,60.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044603109968993526,22823.520617904825,6,3,6,6_1,6_2,6_0_1 +23796,2,42.0,0.0,9,112,1600.0,0.0,0.0,85,54,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,123817,2,1,1,0,1,,386.0,536.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,3,2,1338.34028455795,1600.0,58066.16152921564,7,1,2,3,90.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02755477472357062,21505.98575156135,6,3,6,6_1,6_1,6_0_0 +23797,2,51.0,0.0,2,111,340.0,1300.0,0.0,0,38,0.0,264.8654554020448,579.7681847465008,1840.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,180.0,1,,2,123818,2,1,2,0,1,,350.0,,32,1.0,0.0,3.0,3.0,2.0,3,3,615.704977255779,340.0,71992.5930026712,0,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025558184852874085,35996.2965013356,9,5,9,9_1,9_4,9_0_1 +23798,2,62.0,0.0,7,111,475.0,,,0,75,0.0,0.0,,562.0,120.54626260949732,,33,0,0,0,0,0,0,0,0,0,,1,,5,123819,2,3,0,0,2,,340.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,103.39283513987166,475.0,45016.08861302193,0,5,0,1,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012484425398021557,45016.08861302193,10,5,10,10_1,10_2,10_0_0 +23799,2,55.0,0.0,1,300,700.0,0.0,0.0,11,11,0.0,0.0,1193.6403803604428,800.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123820,2,1,2,0,1,,393.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,854.660223095303,700.0,62398.244106334416,1,1,0,1,240.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012820873591197532,41598.829404222946,9,5,9,9_1,9_0,9_1_0 +23800,2,39.0,0.0,9,111,342.0,,,68,47,0.0,0.0,,430.0,121.93185183489385,,31,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,123821,2,1,0,0,1,,150.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,244.84157931285793,342.0,40965.0,1,1,1,2,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010496765531551324,22758.333333333332,6,3,6,6_1,6_2,6_0_0 +23801,1,53.0,250.0,1,120,650.0,0.0,0.0,0,11,0.0,0.0,1108.3803531918397,710.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123822,1,3,4,0,2,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2207.62122809579,650.0,11735.328620253422,0,1,2,3,50.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.06050107525533168,11735.328620253422,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +23802,2,64.0,0.0,6,112,1175.0,0.0,0.0,77,74,0.0,0.0,2003.610638462172,1235.0,83.13535352379125,0.0,41,2,2,1,2,2,2,2,1,0,,1,,4,123823,2,2,2,0,1,,235.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,638.89819377152,1175.0,40004.21291925052,5,5,0,1,116.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03087174849541166,26669.475279500348,7,4,7,7_1,7_1,7_0_0 +23803,2,61.0,0.0,1,111,42.0,1500.0,0.0,37,23,0.0,0.0,71.61842282162657,1542.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,2,45.0,1,,1,123824,2,1,2,0,1,,196.0,,43,2.0,2.0,6.0,5.0,2.8,4,2,582.922207257563,42.0,186643.2621556517,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008261750154763393,66658.30791273275,10,5,10,10_1,10_4,10_1_0 +23804,2,77.0,0.0,5,111,240.0,,,0,77,0.0,0.0,,280.0,55.423569015860835,,71,2,2,2,2,1,2,2,2,0,,1,,3,123825,2,2,0,0,2,,240.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,93.93901914592006,240.0,3324.8322178653316,0,5,0,1,115.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0842147758601096,3324.8322178653316,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23805,2,40.0,0.0,1,111,0.0,0.0,1560.0,0,38,0.0,0.0,983.2965330470004,1560.0,0.0,1866.902150200902,10,0,0,0,0,0,0,0,0,1,15.0,2,,1,123826,1,3,0,0,2,,213.0,,32,1.0,0.0,4.0,4.0,1.9,1,1,365.63238913489,0.0,101859.49188208225,0,1,1,2,105.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015315214823631122,53610.25888530645,10,5,10,10_0,10_3,10_1_0 +23806,0,37.0,0.0,1,111,1200.0,420.0,0.0,37,34,0.0,0.0,2046.2406520464733,1620.0,0.0,797.3717001347114,10,0,0,0,0,0,0,0,0,1,20.0,2,,1,123827,1,3,0,0,2,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,950.192568568788,1200.0,76575.0,1,1,5,0,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021155729676787464,42541.666666666664,9,5,9,9_0,9_4,9_1_0 +23807,2,55.0,0.0,5,211,1236.0,0.0,0.0,74,43,0.0,264.8654554020448,2107.6278716078677,1436.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,3,123828,2,1,2,0,1,,376.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1065.40248616312,1236.0,69670.13971330397,5,1,0,1,100.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02061141266415153,46446.75980886931,10,5,10,10_1,10_1,10_0_0 +23808,1,44.0,253.0,1,111,400.0,0.0,0.0,0,68,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,1,123829,1,3,0,1,1,,0.0,342.0,12,1.0,1.0,3.0,1.0,1.0,1,1,272.496564921283,400.0,6149.603024574668,0,4,2,3,53.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.065044848976681,6149.603024574668,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +23809,0,85.0,0.0,9,111,220.0,1200.0,0.0,0,77,0.0,0.0,375.14411954185346,1420.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,2,2006.0,6,123830,2,1,0,0,1,,105.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1416.4455358067,220.0,49206.858425433675,0,5,5,0,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02885776587732821,49206.858425433675,10,5,10,10_0,10_4,10_0_0 +23810,1,73.0,112.0,2,111,730.0,0.0,0.0,86,78,0.0,0.0,1244.7963966616046,730.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123831,2,2,0,1,1,612.0,0.0,432.0,41,1.0,0.0,4.0,3.0,2.0,3,3,250.734620472352,730.0,16409.053673304774,5,5,2,3,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.044487635578132546,8204.526836652387,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +23811,2,49.0,0.0,2,111,0.0,0.0,1050.0,0,63,0.0,0.0,661.8342049354809,1050.0,0.0,1256.568754942915,71,0,0,0,0,0,0,0,0,0,,2,,2,123832,1,2,0,0,1,,0.0,394.0,32,2.0,5.0,4.0,2.0,1.5,2,2,195.540255920322,0.0,22673.91118193034,0,1,2,3,75.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04630872863420154,15115.94078795356,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +23812,2,57.0,0.0,9,112,900.0,1400.0,0.0,0,38,0.0,221.1626552607074,1534.680489034855,2467.0,0.0,2657.9056671157045,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,123833,2,1,1,0,1,,600.0,,22,2.0,5.0,7.0,3.0,2.0,3,2,915.871709004539,900.0,57230.108414103204,0,1,0,1,120.0,10,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04310668052818257,28615.054207051602,8,4,8,8_1,8_1,8_0_0 +23814,2,56.0,0.0,1,112,1000.0,0.0,0.0,52,11,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,123835,2,1,1,0,1,,0.0,,43,4.0,1.0,5.0,6.0,3.0999999999999996,4,4,1443.58787863069,1000.0,52298.63297422543,1,1,0,1,150.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01912095867769306,16870.526765879174,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +23815,1,59.0,125.0,6,120,390.0,,,11,11,0.0,0.0,,620.0,318.68552184119983,,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,123836,2,1,0,0,1,,480.0,285.0,43,2.0,2.0,4.0,2.0,1.5,2,2,94.13717422566148,390.0,5110.0,1,1,2,3,62.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12133072407045009,3406.6666666666665,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +23816,1,57.0,52.0,2,211,321.0,0.0,0.0,0,56,0.0,0.0,547.3693744224316,321.0,0.0,0.0,71,2,1,2,1,2,2,2,2,0,,2,,2,123837,1,2,0,1,2,591.0,150.0,185.0,12,1.0,1.0,1.0,1.0,1.0,1,1,488.348569761295,321.0,23350.54874393542,0,4,2,3,40.0,4,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01374700027481666,23350.54874393542,6,3,6,6_0,6_1,6_0_1 +23817,1,35.0,415.0,9,111,900.0,720.0,0.0,56,56,0.0,0.0,1534.680489034855,1620.0,0.0,1366.922914516648,71,2,1,2,1,2,2,2,2,3,120.0,2,2007.0,6,123838,1,3,0,0,1,,700.0,390.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,584.635044357091,900.0,18410.925135389545,1,7,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08799123281893262,6818.861161255388,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +23818,2,70.0,0.0,6,111,200.0,,,0,78,0.0,0.0,,307.0,148.25804711742774,,71,0,0,0,0,0,0,0,0,0,,1,,4,123839,2,2,0,0,2,,140.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,163.28729978390894,200.0,10619.635773961047,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028908712740671635,10619.635773961047,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +23819,2,69.0,0.0,2,111,250.0,1000.0,0.0,75,74,0.0,0.0,426.3001358430153,1250.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,0,,2,,2,123840,2,3,0,0,1,,500.0,600.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1956.72512058815,250.0,30413.66263842608,5,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.041099949547697356,20275.775092284053,5,3,5,5_0,5_3,5_0_1 +23820,1,42.0,577.0,7,120,584.0,,,81,85,0.0,0.0,,668.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,5,123841,2,1,0,0,2,,200.0,900.0,42,1.0,1.0,6.0,7.0,3.1999999999999993,3,2,132.09205099851076,584.0,11393.074679589165,4,6,2,3,84.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.058632109310819344,3560.3358373716146,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +23821,2,48.0,0.0,7,111,600.0,,,85,68,0.0,0.0,,888.0,399.049696914198,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,123842,1,2,0,0,2,,480.0,,42,2.0,0.0,5.0,5.0,3.0,5,4,139.78972457729876,600.0,25794.187597754906,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034426360459489345,8598.062532584969,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23822,2,83.0,0.0,2,211,1100.0,680.0,0.0,77,77,0.0,595.9472746546007,1875.7205977092674,2230.0,0.0,1290.9827525990565,60,0,0,0,0,0,0,0,0,0,,1,,2,123843,2,1,1,0,1,,513.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,830.03803904497,1100.0,45453.18856709452,5,5,0,1,114.0,1,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.049061464559482876,30302.125711396347,8,4,8,8_1,8_1,8_0_1 +23823,2,32.0,0.0,2,111,550.0,0.0,0.0,46,54,0.0,0.0,937.8602988546337,550.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,50.0,2,,2,123844,1,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,695.095260628283,550.0,50351.888771685575,1,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010923125495726826,27973.27153982532,7,4,7,7_0,7_4,7_0_1 +23824,2,39.0,0.0,9,400,1390.0,,,0,56,0.0,0.0,,1840.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,123845,2,1,0,0,2,,700.0,,32,1.0,1.0,5.0,7.0,2.8,1,1,6.69311278593562,1390.0,49555.46450945923,0,1,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03713011306046335,17698.380181949724,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +23825,1,63.0,103.0,2,111,625.0,0.0,0.0,56,78,0.0,0.0,1065.7503396075383,625.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123846,2,2,0,1,2,597.0,0.0,374.0,42,1.0,0.0,4.0,4.0,2.5,4,4,210.240002294762,625.0,25777.328893839724,4,5,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024246111867291368,10310.931557535889,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +23826,2,61.0,0.0,6,211,405.0,,,78,77,0.0,0.0,,537.0,182.89777775234077,,70,0,0,0,0,0,0,0,0,0,,1,,4,123847,2,1,0,0,2,,220.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,101.2545264025056,405.0,44615.69895221525,6,5,1,2,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012036122096285953,29743.799301476833,8,4,8,8_1,8_2,8_0_0 +23828,2,65.0,0.0,5,222,1562.0,0.0,0.0,72,75,0.0,0.0,2663.5232487471594,1712.0,207.83838380947813,0.0,70,2,2,2,2,1,2,2,2,0,,1,,3,123849,1,1,3,0,1,,156.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1458.13518136903,1562.0,20315.2529016521,5,5,0,1,106.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.0842716557991151,13543.501934434733,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +23829,1,62.0,300.0,2,111,1200.0,,,85,78,0.0,0.0,,1464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,2,,2,123850,2,2,0,0,2,,400.0,526.0,41,1.0,0.0,3.0,4.0,2.5,4,4,106.72961484292874,1200.0,12828.989489683963,6,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11411654839823748,5131.595795873585,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23830,1,38.0,400.0,7,111,870.0,,,85,81,0.0,0.0,,1010.0,193.98249155551292,,50,0,0,0,0,0,0,0,0,0,,1,,5,123851,2,2,0,0,2,,500.0,950.0,42,1.0,0.0,4.0,5.0,2.4,2,2,104.39323329351387,870.0,11511.635286985804,6,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08773731748970806,4796.514702910752,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +23831,1,31.0,150.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,545.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,123852,2,1,0,1,1,,0.0,240.0,12,1.0,0.0,2.0,1.0,1.0,1,1,338.71894388104,0.0,5850.80195195104,0,1,2,3,40.0,8,6,7,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09314962367137745,5850.80195195104,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23832,2,47.0,0.0,2,111,1175.0,0.0,0.0,0,56,700.3094130883035,0.0,2003.610638462172,1839.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,123853,2,1,0,1,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1874.33655008629,1175.0,26902.20400424299,0,1,0,1,64.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.06835871141672833,26902.20400424299,7,4,7,7_0,7_3,7_0_1 +23833,2,57.0,0.0,6,111,219.0,0.0,0.0,78,68,0.0,0.0,373.43891899848137,219.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,4,123854,2,1,4,0,1,,340.0,,42,1.0,5.0,6.0,2.0,1.5,2,2,1960.82499236705,219.0,38241.58844790489,5,1,0,1,140.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0057267495647660045,25494.39229860326,7,4,7,7_1,7_2,7_0_0 +23834,2,88.0,0.0,1,112,1000.0,400.0,0.0,77,71,0.0,0.0,1705.2005433720612,1400.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,1,,1,123855,1,3,1,0,2,,200.0,,41,0.0,4.0,11.0,2.0,1.5,2,2,801.113332539049,1000.0,45803.05587841529,5,5,0,1,200.0,6,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03056564618125732,30535.37058561019,8,4,8,8_1,8_0,8_1_0 +23835,2,24.0,0.0,9,112,1500.0,0.0,0.0,0,64,0.0,0.0,2557.8008150580918,1531.0,42.95326598729215,0.0,43,1,2,2,1,2,2,2,2,0,,1,2007.0,6,123856,1,1,1,0,1,,600.0,612.0,12,1.0,2.0,5.0,1.0,1.0,1,1,834.991725803343,1500.0,18656.33726001053,0,1,2,3,113.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.08206326776058379,18656.33726001053,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +23836,2,34.0,0.0,7,111,636.0,0.0,0.0,21,62,0.0,0.0,1084.5075455846309,696.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,123857,2,1,0,0,2,,250.0,547.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1519.92538852014,636.0,29614.40145007166,1,1,2,3,74.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02350207891837422,19742.93430004777,5,3,5,5_0,5_2,5_0_0 +23837,2,25.0,0.0,7,211,200.0,,,0,85,0.0,0.0,,464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,123858,1,2,0,0,2,,363.0,,31,1.0,1.0,5.0,4.0,2.1,2,2,102.43897531638086,200.0,18919.11447192909,0,6,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024525460781393973,9009.102129490042,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23838,2,46.0,0.0,7,111,720.0,,,46,68,0.0,0.0,,870.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,123859,2,1,0,0,1,,480.0,,43,3.0,1.0,3.0,3.0,2.0,3,3,112.11511373849733,720.0,10244.922220439192,4,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0849201176231774,5122.461110219596,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23839,2,36.0,0.0,1,112,1300.0,0.0,0.0,42,64,0.0,1059.4618216081792,2216.7607063836795,2160.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,123860,2,1,1,0,1,,250.0,,43,2.0,0.0,10.0,4.0,2.1,2,2,1107.3725854763,1300.0,49624.85564350378,1,1,1,2,200.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043526574979221286,23630.883639763706,6,3,6,6_1,6_0,6_1_0 +23840,2,73.0,0.0,2,120,250.0,0.0,0.0,77,74,632.8097106219609,0.0,426.3001358430153,850.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,123861,2,1,2,0,1,,300.0,,41,0.0,7.0,6.0,2.0,1.5,2,2,3025.8867768505,250.0,52403.69029592219,5,5,0,1,130.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016220231727957963,34935.79353061479,9,5,9,9_1,9_1,9_0_1 +23841,1,22.0,140.0,7,111,250.0,0.0,0.0,0,48,0.0,0.0,426.3001358430153,250.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,2,,5,123862,2,1,0,0,1,,0.0,390.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1415.52583916008,250.0,8572.615605129844,0,2,2,3,40.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029162628014068458,8572.615605129844,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +23842,0,83.0,0.0,1,300,2.0,0.0,0.0,0,78,0.0,0.0,3.4104010867441223,32.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,123863,2,2,4,0,2,,145.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1330.42951001638,2.0,16673.47907501947,0,5,5,0,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0019192155312050634,16673.47907501947,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +23843,2,38.0,0.0,7,111,0.0,,,11,85,0.0,0.0,,889.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,123864,2,1,0,0,2,,0.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,159.95181754409816,0.0,21025.524242163785,4,7,0,1,170.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042281942165191454,14017.016161442523,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +23844,1,78.0,197.0,2,111,660.0,110.0,0.0,78,78,0.0,0.0,1125.4323586255605,1040.0,0.0,208.8354452733768,70,2,1,2,1,2,2,2,2,0,,2,,2,123865,2,1,0,1,1,744.0,0.0,435.0,41,0.0,5.0,3.0,2.0,1.5,2,2,169.097026371064,660.0,25514.863095736964,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.040760555763035375,17009.90873049131,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +23845,1,65.0,204.0,2,111,300.0,,,68,78,0.0,0.0,,420.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,123866,2,1,0,0,2,,500.0,208.0,42,2.0,2.0,3.0,3.0,2.0,3,3,116.11456019880646,300.0,1802.2757422697914,1,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.23303870220827072,901.1378711348957,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23846,1,36.0,406.0,1,111,250.0,700.0,0.0,85,85,0.0,0.0,426.3001358430153,1010.0,83.13535352379125,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,1,,1,123867,2,1,1,0,1,,350.0,365.0,41,0.0,0.0,4.0,5.0,2.4,2,2,181.666608754633,250.0,15399.563843526083,6,7,2,3,74.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06558627310893614,6416.484934802535,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +23847,2,67.0,0.0,2,111,530.0,0.0,0.0,0,77,0.0,0.0,903.7562879871924,530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,123868,1,2,0,0,1,,0.0,600.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2273.62591002271,530.0,18165.246223776547,0,5,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.029176593230334603,18165.246223776547,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +23848,2,63.0,0.0,6,111,848.0,1570.0,0.0,78,64,0.0,0.0,1446.010060779508,2418.0,0.0,2980.6513552654687,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,123869,2,1,3,0,1,,100.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1850.12075863213,848.0,70831.89736522832,5,5,0,1,120.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034137162633553944,47221.26491015221,10,5,10,10_1,10_3,10_0_0 +23849,2,32.0,0.0,7,112,960.0,,,0,63,0.0,0.0,,1075.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,2,5.0,2,,5,123870,1,2,0,0,2,,300.0,575.0,22,3.0,0.0,3.0,5.0,2.5999999999999996,3,3,120.59536322509446,960.0,35660.30769020399,0,1,2,3,90.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03014556153970893,13715.502957770766,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +23850,1,46.0,270.0,7,111,276.0,378.0,0.0,0,68,0.0,0.0,470.6353499706889,1014.0,498.81212114274757,717.6345301212402,71,2,2,2,1,1,2,2,2,0,,1,,5,123871,1,3,4,0,1,,408.0,275.0,12,1.0,2.0,2.0,1.0,1.0,1,1,248.637024152061,276.0,6060.0,0,4,2,3,25.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.16732673267326734,6060.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +23851,2,38.0,0.0,8,111,280.0,,,85,55,0.0,0.0,,625.0,478.02828276179974,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,123872,2,1,0,0,2,,144.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,150.8815090061402,280.0,18975.411836933796,6,4,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032937361537708404,7298.235321897615,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23852,2,46.0,0.0,5,111,0.0,0.0,0.0,46,64,0.0,1191.8945493092015,0.0,2513.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123873,2,2,2,0,1,,103.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,380.182045023443,0.0,51361.0588066603,1,1,0,1,90.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04892811905338143,25680.52940333015,7,4,7,7_1,7_3,7_0_0 +23853,2,42.0,0.0,9,111,800.0,1000.0,0.0,46,46,0.0,0.0,1364.160434697649,1800.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,123874,2,1,1,0,1,,600.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,1264.01465028921,800.0,63950.22262798114,1,1,1,2,142.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028146891848542493,26645.92609499214,7,4,7,7_1,7_4,7_0_0 +23854,2,62.0,0.0,9,112,1600.1,0.0,0.0,0,72,0.0,0.0,2728.491389449635,1720.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,123875,2,1,1,0,1,,152.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,316.240133229794,1600.1,17154.695580061794,0,5,1,2,98.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10026409340653565,17154.695580061794,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +23855,2,68.0,0.0,6,112,580.0,,,0,77,0.0,0.0,,844.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,,4,123876,2,2,0,0,2,,310.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,100.98302179537978,580.0,9393.322351816005,0,5,0,1,35.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08985106316902135,9393.322351816005,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23856,1,47.0,330.0,5,111,800.0,,,85,22,0.0,0.0,,1080.0,387.96498311102584,,50,0,0,0,0,0,0,0,0,0,,2,,3,123877,2,2,0,0,2,,400.0,500.0,42,3.0,0.0,4.0,6.0,3.3,5,4,150.87579570654847,800.0,21445.79881374407,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0503595137387867,6498.726913255779,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23857,2,71.0,0.0,1,221,600.0,0.0,0.0,0,77,3164.0485531098047,0.0,1023.1203260232367,3690.0,124.70303028568689,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,123878,2,3,2,0,1,,191.0,,21,1.0,5.0,5.0,2.0,1.5,2,2,2784.0256083117,600.0,34035.34674534038,0,5,0,1,90.0,1,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.10841670066150216,22690.231163560253,6,3,6,6_1,6_1,6_1_0 +23858,2,96.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1731.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123879,2,1,2,0,1,,329.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1178.70044347919,0.0,20887.48291305207,0,5,0,1,70.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0828725992119587,20887.48291305207,5,3,5,5_1,5_4,5_1_0 +23859,2,52.0,0.0,6,111,0.0,0.0,0.0,46,53,0.0,0.0,0.0,1597.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,80.0,1,,4,123880,2,1,2,0,1,,600.0,711.0,43,3.0,0.0,4.0,4.0,2.5,4,4,188.745814328831,0.0,74344.7046690554,1,1,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021481018817803194,29737.88186762216,8,4,8,8_1,8_4,8_0_0 +23860,2,45.0,0.0,5,111,642.0,0.0,0.0,34,34,0.0,0.0,1094.7387488448633,642.0,0.0,0.0,12,2,1,2,1,1,2,2,2,2,45.0,2,,3,123881,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,879.009534855711,642.0,91040.12849853652,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0070518353893834875,43352.442142160246,10,5,10,10_0,10_4,10_0_0 +23861,2,60.0,0.0,5,112,1600.0,0.0,0.0,54,75,0.0,86.08127300566456,2728.320869395298,1665.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,123882,2,1,2,0,1,,190.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,2180.1835209046,1600.0,67889.36570839447,1,5,0,1,80.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024525195995374043,33944.682854197235,9,5,9,9_1,9_1,9_0_0 +23862,2,88.0,0.0,5,221,1200.0,0.0,0.0,0,75,0.0,0.0,2046.2406520464733,1280.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,123883,2,1,2,0,1,,194.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2002.03799498265,1200.0,28283.150456704607,0,5,0,1,95.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04525662733221334,28283.150456704607,8,4,8,8_1,8_1,8_0_0 +23863,2,26.0,0.0,1,112,1080.0,0.0,0.0,69,63,0.0,569.4607291143963,1841.6165868418261,1580.0,96.99124577775646,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,123884,2,2,2,0,1,,246.0,556.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1521.15172295711,1080.0,26715.640145311176,1,1,2,3,90.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05914138652138207,17810.426763540785,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +23864,1,26.0,377.0,2,111,900.0,600.0,0.0,0,46,0.0,0.0,1534.680489034855,1500.0,0.0,1139.1024287638734,60,2,1,2,2,1,2,2,1,0,,2,,2,123885,1,2,0,1,1,1100.0,0.0,372.0,22,3.0,1.0,4.0,4.0,2.5,4,4,257.923070415551,900.0,23363.15695618889,0,1,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06420365204979932,9345.262782475556,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23865,1,37.0,423.0,2,111,600.0,110.0,0.0,85,67,0.0,0.0,1023.1203260232367,710.0,0.0,208.8354452733768,70,0,0,0,0,0,0,0,0,2,5.0,2,,2,123886,2,1,0,1,1,835.0,350.0,383.0,42,1.0,0.0,5.0,5.0,2.4,2,2,253.459929201239,600.0,20809.856388957513,6,1,2,3,95.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.034118447851314945,8670.773495398964,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23866,2,69.0,0.0,1,300,1150.0,0.0,0.0,78,74,0.0,595.9472746546007,1960.9806248778702,2570.0,1344.0215486346253,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,123887,2,2,2,0,1,,260.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1130.66739973603,1150.0,69542.01802710918,5,5,0,1,160.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03695607451308288,46361.34535140612,10,5,10,10_1,10_0,10_1_0 +23867,2,43.0,0.0,5,112,431.0,0.0,0.0,0,46,0.0,0.0,734.9414341933584,431.0,0.0,0.0,20,2,2,2,1,1,2,2,2,2,40.0,2,,3,123888,1,3,0,0,1,,0.0,473.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1137.06568863447,431.0,22421.305391542563,0,1,2,3,60.0,10,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.019222787989970267,22421.305391542563,6,3,6,6_0,6_2,6_0_0 +23868,2,62.0,0.0,6,221,465.0,1502.0,0.0,77,75,0.0,238.3789098618403,792.9182526680084,2147.0,0.0,2851.553080005563,50,0,0,0,0,0,0,0,0,0,,1,,4,123889,2,1,2,0,1,,378.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2253.49728229485,465.0,23150.501061268515,6,5,0,1,92.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09274097326523942,15433.66737417901,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +23869,2,55.0,0.0,2,111,300.0,800.0,0.0,0,52,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,123890,2,3,0,0,2,,330.0,258.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1769.35988098604,300.0,22335.698410839133,0,1,2,3,60.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04924851597504508,22335.698410839133,6,3,6,6_0,6_2,6_0_1 +23870,2,48.0,0.0,1,112,338.0,571.0,0.0,0,37,0.0,0.0,576.3577836597567,909.0,0.0,1084.0458113736195,31,0,0,0,0,0,0,0,0,2,45.0,2,,1,123891,2,1,0,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,805.673271208953,338.0,43083.03063969016,0,1,1,2,69.0,10,5,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0210987942701177,43083.03063969016,9,5,9,9_0,9_2,9_1_0 +23871,2,35.0,0.0,1,111,520.0,1040.0,0.0,52,54,0.0,0.0,886.7042825534718,1560.0,0.0,1974.4442098573807,41,0,0,0,0,0,0,0,0,2,20.0,1,,1,123892,2,1,2,0,1,,348.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2015.0369592615,520.0,44286.01322200881,1,1,1,2,90.0,6,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035225568672881284,24603.340678893783,7,4,7,7_1,7_2,7_1_0 +23872,2,32.0,0.0,8,111,870.0,1700.0,0.0,42,65,0.0,0.0,1483.5244727336933,2570.0,0.0,3227.4568814976415,43,0,0,0,0,0,0,0,0,2,9.0,1,2003.0,6,123893,2,1,1,0,1,,500.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,1642.89321406515,870.0,58511.34097173861,1,1,1,2,149.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04392310887630021,27862.543319875527,7,4,7,7_1,7_2,7_0_0 +23873,2,61.0,0.0,2,111,743.0,799.0,0.0,0,78,0.0,0.0,1266.9640037254414,1542.0,0.0,1516.9047343038915,70,2,1,2,2,1,2,2,2,0,,2,,2,123894,1,2,0,1,1,240.0,0.0,231.0,11,0.0,3.0,2.0,1.0,1.0,1,1,397.996691370921,743.0,15388.330000532153,0,7,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.10020580530484303,15388.330000532153,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +23875,2,42.0,0.0,9,111,900.0,,,54,46,0.0,0.0,,969.0,95.60565655235995,,42,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,123896,2,1,0,0,2,,386.0,1100.0,43,2.0,2.0,4.0,3.0,1.8,2,2,222.46627180245179,900.0,95215.473824893,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010176917270632392,52897.485458273884,10,5,10,10_0,10_2,10_0_0 +23876,2,81.0,0.0,2,111,0.0,0.0,590.0,86,75,0.0,0.0,371.8877913446989,590.0,0.0,706.0719670631618,50,2,2,2,1,2,2,2,2,0,,2,,2,123897,2,2,0,1,1,684.0,0.0,335.0,41,0.0,2.0,4.0,2.0,1.5,2,2,160.405548697947,0.0,31319.01815470207,6,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.018838393882134537,20879.345436468047,5,3,5,5_0,5_4,5_0_1 +23877,2,30.0,0.0,6,111,2050.0,0.0,0.0,46,47,0.0,794.5963662061343,3495.6611139127253,2650.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,4,123898,1,1,2,0,1,,320.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,604.936575820775,2050.0,44662.57965061785,4,1,1,2,165.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05933378727180933,21267.895071722785,5,3,5,5_1,5_3,5_0_0 +23878,2,54.0,0.0,2,111,348.0,0.0,0.0,0,37,0.0,0.0,593.4097890934773,1003.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,123899,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1516.36265810089,348.0,90463.79170954388,0,1,0,1,73.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011087308867401632,90463.79170954388,10,5,10,10_0,10_2,10_0_1 +23879,2,46.0,0.0,1,300,400.0,0.0,0.0,85,21,0.0,198.6490915515336,682.0802173488245,582.0,44.33885521268867,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,123900,1,1,1,0,1,,244.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,770.933667558776,400.0,30269.981313621116,7,1,0,1,64.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01922696925280582,20179.987542414077,5,3,5,5_1,5_0,5_1_0 +23880,2,79.0,0.0,5,111,360.0,,,78,77,0.0,0.0,,510.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,3,123901,2,1,0,0,2,,400.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,77.49075027426947,360.0,18924.167477851362,5,5,0,1,60.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026949666377498422,12616.111651900908,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +23881,2,77.0,0.0,5,112,3000.0,0.0,0.0,74,74,0.0,172.1625460113291,5115.6016301161835,3130.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,123902,2,1,3,0,1,,200.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,1944.85120195827,3000.0,76144.03927171067,5,5,0,1,360.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041106303657348395,50762.69284780711,10,5,10,10_1,10_0,10_0_0 +23882,2,38.0,0.0,1,111,1000.0,0.0,0.0,33,54,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,123903,2,3,0,0,1,,0.0,874.0,43,2.0,0.0,3.0,4.0,2.1,2,2,939.347052266033,1000.0,40027.986066864614,1,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024982520937464937,19060.945746126006,5,3,5,5_0,5_4,5_1_0 +23883,1,41.0,200.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,60.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,123904,2,2,0,1,1,,0.0,310.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3133.72237421136,0.0,11407.544430530894,0,1,3,4,26.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.005259677081722983,11407.544430530894,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +23884,2,48.0,0.0,2,111,492.0,131.0,0.0,63,52,0.0,0.0,838.958667339054,623.0,0.0,248.70403028011236,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,123905,2,1,0,1,1,792.0,312.0,268.0,43,3.0,1.0,4.0,4.0,2.5,4,3,233.855369046761,492.0,45688.47682138038,4,1,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013635823370422821,18275.390728552153,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +23885,1,57.0,290.0,7,111,0.0,,,0,69,0.0,0.0,,143.0,198.1392592317025,,44,0,0,0,0,0,0,0,0,0,,1,,5,123906,1,3,0,0,2,,0.0,,22,2.0,2.0,3.0,2.0,1.5,2,2,85.22558877604881,0.0,18609.507142845203,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0076842443436219215,12406.338095230136,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +23886,2,43.0,0.0,9,112,924.0,1060.0,0.0,54,22,0.0,0.0,1575.6053020757845,1984.0,0.0,2012.4142908161764,50,0,0,0,0,0,0,0,0,2,3.0,1,2006.0,6,123907,2,1,1,0,1,,662.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,400.292192483431,924.0,50621.61488253823,1,1,1,2,168.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03919274413911229,22009.397775016623,6,3,6,6_1,6_0,6_0_0 +23887,2,62.0,0.0,9,111,810.0,,,46,22,0.0,0.0,,890.0,110.84713803172167,,20,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,123908,2,1,0,0,2,,300.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,231.25957578187575,810.0,134687.39575452177,1,1,1,2,179.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006607893745470393,89791.59716968118,10,5,10,10_1,10_2,10_0_0 +23888,2,78.0,0.0,2,111,647.0,,,77,78,0.0,0.0,,923.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,123909,2,1,0,0,2,,570.0,,41,0.0,0.0,5.0,5.0,3.0,5,5,103.84955794328935,647.0,38852.355427582865,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023756603424479248,12950.785142527622,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +23889,2,84.0,0.0,2,111,400.0,0.0,0.0,0,74,0.0,0.0,682.0802173488245,400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,123910,2,1,0,1,2,,0.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,1609.44110207464,400.0,119493.70050158733,0,5,0,1,145.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003347456797479349,119493.70050158733,10,5,10,10_0,10_4,10_0_1 +23890,2,60.0,0.0,2,111,310.0,0.0,0.0,0,90,0.0,0.0,528.612168445339,381.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,123911,2,2,0,1,1,,220.0,,22,2.0,0.0,5.0,3.0,2.0,3,3,939.538945703448,310.0,52549.461848183426,0,1,0,1,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007250312117386045,26274.730924091713,7,4,7,7_0,7_4,7_0_1 +23891,2,74.0,0.0,6,111,1200.0,0.0,0.0,54,78,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,123912,2,1,2,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,812.639342922579,1200.0,40620.60659775442,5,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031018739145802294,27080.404398502946,7,4,7,7_1,7_4,7_0_0 +23892,1,46.0,21.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2388.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,2010.0,6,123913,2,2,0,0,1,,91.0,435.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1270.89656194362,0.0,26685.92479948453,0,1,2,3,55.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08948537545328492,20527.634461141944,5,3,5,5_0,5_3,5_0_0 +23893,2,60.0,0.0,1,111,663.0,0.0,0.0,0,37,0.0,0.0,1130.5479602556766,663.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,123914,2,1,0,0,1,,0.0,225.0,12,1.0,0.0,2.0,1.0,1.0,1,1,957.127802927614,663.0,27618.473292839684,0,4,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024005671601401955,27618.473292839684,7,4,7,7_0,7_4,7_1_0 +23894,2,59.0,0.0,1,111,570.0,1200.0,0.0,34,34,0.0,0.0,971.9643097220749,1770.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,123915,2,2,2,0,1,,560.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,704.98633098696,570.0,88448.14390936663,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020011725761184207,44224.07195468331,10,5,10,10_1,10_4,10_1_0 +23895,2,27.0,0.0,2,111,620.0,1890.0,0.0,55,68,0.0,0.0,1057.224336890678,2510.0,0.0,3588.1726506062014,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,123916,2,3,3,0,1,,440.0,720.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1246.60224196003,620.0,30078.62928542975,1,1,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08344795157324066,16710.349603016526,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +23896,2,67.0,0.0,2,111,413.0,,,77,77,0.0,0.0,,597.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,2,123917,2,2,0,0,2,,109.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,87.4216980208191,413.0,43634.41510437807,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013681860947875976,21817.207552189037,6,3,6,6_1,6_2,6_0_1 +23897,0,59.0,0.0,2,300,860.0,0.0,0.0,0,56,0.0,0.0,1466.4724672999725,875.0,20.783838380947813,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,123918,2,3,2,0,1,,240.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1474.68088825195,860.0,15194.872180798926,0,1,0,1,45.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05758521622220014,15194.872180798926,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +23898,2,46.0,0.0,9,111,600.0,,,43,34,0.0,0.0,,600.0,0.0,,10,0,0,0,0,0,0,0,0,2,3.0,1,2012.0,6,123919,2,1,0,0,2,,300.0,,43,2.0,1.0,6.0,4.0,2.3,3,2,247.21057406138866,600.0,87368.3569891364,1,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00686747491514125,37986.24216918974,9,5,9,9_1,9_2,9_0_0 +23899,2,54.0,0.0,1,112,2400.0,0.0,0.0,56,38,0.0,662.163638505112,4092.4813040929466,3020.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,123920,2,2,3,0,1,,412.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1258.34762575448,2400.0,48344.863916917755,1,4,0,1,140.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.062467856051678414,32229.90927794517,8,4,8,8_1,8_0,8_1_0 +23900,2,62.0,0.0,1,111,300.0,0.0,0.0,77,37,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,123921,2,2,0,1,2,708.0,120.0,1535.0,42,1.0,2.0,3.0,2.0,1.5,2,2,733.877214479382,300.0,77273.64762519758,6,1,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0038823067011809504,51515.765083465056,10,5,10,10_0,10_4,10_1_0 +23901,1,28.0,389.0,7,112,1500.0,0.0,0.0,85,62,0.0,0.0,2557.8008150580918,1650.0,207.83838380947813,0.0,60,2,2,1,2,1,2,1,2,2,25.0,1,,5,123922,2,3,3,0,2,,540.0,470.0,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,1460.70878415664,1500.0,28459.64688452913,6,1,2,3,118.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.057976826160023504,10540.609957233013,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +23903,2,43.0,0.0,6,111,1750.0,0.0,0.0,42,37,0.0,0.0,2984.100950901107,1750.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,4,123924,2,2,0,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1503.20486344568,1750.0,74065.58976690247,1,1,0,1,110.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023627706273690117,35269.328460429744,9,5,9,9_0,9_3,9_0_0 +23904,1,43.0,406.0,5,111,360.0,1360.0,0.0,0,54,0.0,0.0,613.872195613942,1720.0,0.0,2581.965505198113,50,2,2,2,2,1,1,2,2,0,,2,,3,123925,1,3,0,0,1,,0.0,514.0,32,1.0,1.0,4.0,3.0,1.6,1,1,886.206014457829,360.0,17366.385396359306,0,4,2,3,90.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.09904191118323225,10853.990872724566,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +23905,1,44.0,115.0,8,300,1015.0,1022.0,0.0,85,56,147.65559914512423,0.0,1730.7785515226421,2177.0,0.0,1940.2711369944643,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,123926,2,1,2,0,1,,648.0,,42,1.0,0.0,6.0,5.0,2.8,4,3,1066.91278760009,1015.0,28171.299853303666,6,1,1,2,128.0,0,0,8,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07727722935527598,10061.178519037025,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +23906,2,38.0,0.0,7,112,1380.0,0.0,0.0,47,34,0.0,0.0,2353.1767498534446,1380.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,5,123927,2,2,1,0,1,,520.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1493.10447845317,1380.0,64341.82965326749,1,1,1,2,120.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021447944633167876,30638.966501555944,8,4,8,8_1,8_0,8_0_0 +23907,2,39.0,0.0,9,111,1265.0,0.0,0.0,46,64,0.0,0.0,2157.0786873656575,1265.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,123928,2,1,1,0,1,,176.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1061.3154064513,1265.0,56384.931031415756,1,1,1,2,87.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022435072223378004,26849.967157817024,7,4,7,7_1,7_3,7_0_0 +23908,2,57.0,0.0,9,111,500.0,,,0,52,0.0,0.0,,500.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,123929,2,1,0,0,1,,120.0,827.0,12,1.0,2.0,3.0,1.0,1.0,1,1,140.21080615101872,500.0,40522.68199767337,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012338768693264375,40522.68199767337,9,5,9,9_0,9_2,9_0_0 +23909,2,36.0,0.0,7,111,122.0,480.0,0.0,0,64,0.0,0.0,208.03446629139145,602.0,0.0,911.2819430110987,43,0,0,0,0,0,0,0,0,0,,2,,5,123930,1,1,0,1,1,,0.0,480.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1113.80723250537,122.0,22193.02422320049,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02712564064931141,22193.02422320049,6,3,6,6_0,6_4,6_0_0 +23910,2,64.0,0.0,6,120,300.0,0.0,0.0,75,75,980.8550514640394,132.4327277010224,511.56016301161833,1394.0,88.67771042537734,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,123931,2,1,2,0,1,,290.0,,41,0.0,5.0,8.0,2.0,1.5,2,2,988.116057015188,300.0,34920.132162084796,5,5,0,1,124.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03991966563956944,23280.08810805653,6,3,6,6_1,6_0,6_0_0 +23911,0,87.0,0.0,8,111,0.0,,,0,77,0.0,0.0,,549.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,123932,1,1,0,0,2,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,111.4643558947363,0.0,9572.781097798288,0,5,5,0,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05735010488501282,9572.781097798288,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23912,2,57.0,0.0,1,111,300.0,420.0,0.0,0,63,0.0,0.0,511.56016301161833,720.0,0.0,797.3717001347114,50,2,2,2,2,1,2,2,2,1,30.0,2,,1,123933,1,3,0,1,1,,0.0,265.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1081.52388076017,300.0,23143.488913717356,0,1,2,3,26.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.031110261840134632,23143.488913717356,6,3,6,6_0,6_4,6_1_0 +23913,2,69.0,0.0,1,120,400.0,0.0,0.0,0,86,738.277995725621,0.0,682.0802173488245,1158.0,80.36417507299822,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123934,2,3,4,0,1,,100.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1553.35317117093,400.0,17884.01765939695,0,5,0,1,70.0,0,1,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06475055113757071,17884.01765939695,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +23914,2,49.0,0.0,5,211,720.0,,,0,69,0.0,0.0,,820.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,123935,2,2,0,0,2,,240.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,8.289495526241517,720.0,26174.076933668934,0,1,2,3,25.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03132870748710897,26174.076933668934,7,4,7,7_1,7_2,7_0_0 +23915,2,39.0,0.0,2,221,450.0,0.0,0.0,65,47,917.5740804018434,397.2981831030672,767.3402445174275,1680.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,123936,2,2,1,0,1,,329.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1642.31558785792,450.0,50535.529589642996,1,1,0,1,90.0,1,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033243937753138886,21971.969386801306,6,3,6,6_1,6_1,6_0_1 +23916,2,51.0,0.0,9,211,600.0,,,0,34,0.0,0.0,,646.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,123937,2,1,0,0,2,,320.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,111.13241164634331,600.0,65989.7726161046,0,1,2,3,36.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009789395756189432,65989.7726161046,10,5,10,10_1,10_2,10_0_0 +23917,2,57.0,0.0,6,112,1020.0,0.0,0.0,56,52,0.0,0.0,1739.3045542395023,1100.0,110.84713803172167,0.0,31,2,2,2,2,1,2,2,2,1,4.0,1,,4,123938,2,1,3,0,1,,249.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,854.008182080427,1020.0,51501.94651106835,1,1,0,1,98.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02135841603119986,34334.6310073789,9,5,9,9_1,9_1,9_0_0 +23918,2,29.0,0.0,9,111,0.0,0.0,0.0,48,46,0.0,0.0,0.0,797.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,123939,2,1,1,0,1,,756.0,750.0,43,2.0,1.0,5.0,2.0,1.5,2,2,1160.47400454723,0.0,43598.3090796185,2,1,2,3,86.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018280525479658673,29065.539386412333,8,4,8,8_1,8_3,8_0_0 +23919,2,61.0,0.0,5,111,0.0,0.0,1200.0,77,78,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,70,0,0,0,0,0,0,0,0,0,,1,,3,123940,1,1,2,0,2,,500.0,495.0,41,0.0,3.0,4.0,2.0,1.5,2,2,722.257670642949,0.0,31896.209368494114,5,5,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03762202543056151,21264.139578996077,5,3,5,5_1,5_2,5_0_0 +23920,2,31.0,0.0,2,111,700.0,0.0,0.0,0,45,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,123941,2,1,0,1,1,,0.0,400.0,32,1.0,0.0,3.0,2.0,1.3,1,1,201.365476859305,700.0,20790.27392664068,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03366959004340098,15992.518405108214,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +23921,2,69.0,0.0,5,111,940.0,,,0,74,0.0,0.0,,1030.0,124.70303028568689,,10,0,0,0,0,0,0,0,0,0,,1,,3,123942,2,1,0,0,1,,600.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,231.40150787796225,940.0,62996.84817100332,0,5,0,1,145.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016350024325091497,62996.84817100332,10,5,10,10_1,10_2,10_0_0 +23922,2,81.0,0.0,7,111,250.0,,,90,77,0.0,0.0,,370.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,123943,2,1,0,0,2,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,107.29307575908999,250.0,52691.60477618059,5,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007021991483684317,35127.736517453726,9,5,9,9_1,9_2,9_0_0 +23923,1,28.0,415.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,195.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,123944,2,1,0,1,1,,0.0,385.0,31,0.0,1.0,3.0,3.0,1.6,1,1,299.443395433813,0.0,16711.547480053505,0,6,3,4,64.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.01166857828293563,10444.71717503344,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +23924,2,40.0,0.0,8,112,793.0,,,42,42,0.0,0.0,,931.0,191.2113131047199,,10,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,123945,2,1,0,0,2,,1140.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,128.53246185239928,793.0,112473.83819039726,1,1,1,2,156.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008277480478829133,43259.168534768185,9,5,9,9_1,9_2,9_0_0 +23925,2,28.0,0.0,1,111,720.0,0.0,0.0,31,37,0.0,0.0,1227.744391227884,720.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,123946,2,1,0,0,1,,0.0,700.0,43,2.0,0.0,1.0,2.0,1.5,2,2,517.838581857719,720.0,59236.35630103636,1,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012154697637731027,39490.90420069091,9,5,9,9_0,9_3,9_1_0 +23926,2,37.0,0.0,1,111,600.0,0.0,0.0,37,37,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,2,,1,123947,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,623.366526776459,600.0,143878.36100457262,1,1,0,1,62.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0041701892891380056,68513.50524027267,10,5,10,10_0,10_4,10_1_0 +23927,2,66.0,0.0,5,112,1048.0,0.0,0.0,75,74,0.0,158.91927324122688,1787.05016945392,1168.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,123948,2,2,2,0,1,,290.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1097.97447692323,1048.0,60331.00996694603,5,5,0,1,124.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01935986154781629,40220.67331129735,9,5,9,9_1,9_0,9_0_0 +23928,2,79.0,0.0,6,111,808.0,0.0,0.0,0,77,0.0,0.0,1377.8020390446254,808.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,4,123949,2,2,0,0,1,,0.0,481.0,11,0.0,2.0,3.0,1.0,1.0,1,1,448.258918844315,808.0,34739.68431324531,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02325870300703715,34739.68431324531,9,5,9,9_0,9_4,9_0_0 +23929,2,59.0,0.0,7,111,900.0,,,56,67,0.0,0.0,,1194.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,0,,2,,5,123950,1,2,0,0,2,,600.0,,43,5.0,3.0,5.0,5.0,3.0,5,5,72.0413321392731,900.0,26702.40608997611,4,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0447150715923019,8900.802029992037,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +23930,2,38.0,0.0,5,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,1879.0,0.0,0.0,50,2,2,1,2,1,2,2,2,3,50.0,2,,3,123951,1,1,0,1,1,775.0,0.0,350.0,32,1.0,0.0,3.0,3.0,1.6,1,1,892.142125140733,0.0,23351.55124152054,0,1,2,3,87.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.08046574638943124,14594.719525950337,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +23931,2,52.0,0.0,8,111,459.0,,,0,52,0.0,0.0,,597.0,191.2113131047199,,41,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,123952,2,1,0,0,1,,500.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,108.9042542472069,459.0,28167.0,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021195015443604217,28167.0,8,4,8,8_1,8_2,8_0_0 +23932,0,33.0,0.0,5,111,372.0,,,52,23,0.0,0.0,,624.0,349.1684847999233,,42,0,0,0,0,0,0,0,0,1,20.0,1,,3,123953,2,2,0,0,2,,180.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,105.18358716580371,372.0,12486.322784810127,1,1,5,0,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04997468115745887,6936.845991561181,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +23933,2,40.0,0.0,2,111,440.0,80.0,0.0,0,37,0.0,0.0,750.2882390837069,520.0,0.0,151.8803238351831,10,0,0,0,0,0,0,0,0,2,40.0,2,,2,123954,2,2,0,1,1,,0.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,928.609261383158,440.0,48924.60798275872,0,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010628598193024882,37634.31383289132,9,5,9,9_0,9_4,9_0_1 +23934,2,47.0,0.0,2,111,720.0,1524.0,0.0,47,38,0.0,0.0,1227.744391227884,2244.0,0.0,2893.3201690602386,20,0,0,0,0,0,0,0,0,3,90.0,1,,2,123955,2,1,1,0,1,,540.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,506.754576318725,720.0,62947.1129104196,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035648974134738304,29974.81567162838,8,4,8,8_1,8_4,8_0_1 +23935,1,67.0,185.0,9,111,350.0,950.0,0.0,0,78,0.0,0.0,596.8201901802214,1300.0,0.0,1803.5788455427996,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,123956,2,3,1,0,1,,220.0,586.0,21,0.0,8.0,3.0,2.0,1.5,2,2,1125.80111654345,350.0,22978.889194370753,0,5,2,3,72.0,6,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05657366589845723,15319.259462913835,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +23936,1,36.0,300.0,7,211,425.0,,,85,53,0.0,0.0,,565.0,193.98249155551292,,31,0,0,0,0,0,0,0,0,2,10.0,2,,5,123957,2,1,0,0,2,,800.0,474.0,42,1.0,2.0,3.0,4.0,2.1,2,2,62.19344783575539,425.0,54561.99999999999,6,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010355192258348302,25981.904761904756,7,4,7,7_0,7_2,7_0_0 +23937,2,56.0,0.0,6,111,1180.0,943.0,0.0,85,23,0.0,0.0,2012.1366411790323,2123.0,0.0,1790.289317207221,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,123958,2,2,2,0,1,,311.0,,42,1.0,0.0,7.0,6.0,3.5,6,6,648.808312968044,1180.0,79809.06296323499,6,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026600988925004492,22802.58941806714,6,3,6,6_1,6_4,6_0_0 +23938,2,46.0,0.0,1,111,510.0,1578.0,0.0,0,37,0.0,0.0,869.6522771197511,2088.0,0.0,2995.839387648987,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,123959,2,1,1,0,1,,186.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1034.41441955684,510.0,46135.256005189935,0,1,0,1,110.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04525822940627256,46135.256005189935,10,5,10,10_1,10_2,10_1_0 +23939,2,36.0,0.0,1,111,438.0,1030.0,0.0,37,33,0.0,0.0,746.8778379969627,1468.0,0.0,1955.4591693779826,20,2,2,2,1,1,2,1,2,3,80.0,2,,1,123960,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,915.499721673236,438.0,114001.43854038745,1,1,1,2,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.012877030490101488,54286.399304946404,10,5,10,10_0,10_4,10_1_0 +23940,1,24.0,350.0,7,120,0.0,0.0,0.0,62,64,0.0,0.0,0.0,3220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,123961,2,2,1,0,1,,281.0,550.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1394.83533280934,0.0,15339.217860371076,1,1,2,3,50.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.20991943848185907,8521.787700206154,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +23941,2,59.0,0.0,7,111,0.0,,,77,42,0.0,0.0,,276.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,0,,1,,5,123962,2,1,0,0,2,,0.0,900.0,42,1.0,1.0,3.0,3.0,2.0,3,3,133.98489991217585,0.0,30380.489799801184,5,1,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009084777823490068,15190.244899900592,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +23943,2,34.0,0.0,2,112,0.0,0.0,0.0,52,11,1265.6194212439218,0.0,0.0,2515.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,123964,2,1,4,0,1,,150.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1084.41621100907,0.0,43389.31156324217,1,1,1,2,125.0,8,0,5,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.057963583873283105,20661.576934877223,5,3,5,5_1,5_0,5_0_1 +23945,2,80.0,0.0,7,111,360.0,1300.0,0.0,77,74,0.0,0.0,613.872195613942,1660.0,0.0,2468.055262321726,20,0,0,0,0,0,0,0,0,0,,1,,5,123966,2,1,2,0,2,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,672.829118366853,360.0,76245.27717516034,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021771840322469246,50830.18478344023,10,5,10,10_1,10_4,10_0_0 +23946,2,52.0,0.0,1,111,1200.0,2000.0,0.0,37,22,0.0,0.0,2046.2406520464733,3200.0,0.0,3797.008095879578,12,0,0,0,0,0,0,0,0,2,60.0,1,,1,123967,2,2,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,3,2,404.694411564091,1200.0,293858.84490865434,1,1,1,2,121.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010889582040638307,139932.78328983538,10,5,10,10_1,10_3,10_1_0 +23947,2,74.0,0.0,2,111,262.0,815.0,0.0,0,78,0.0,0.0,446.76254236348,1077.0,0.0,1547.280799070928,71,0,0,0,0,0,0,0,0,0,,1,,2,123968,1,2,1,0,1,,101.0,355.0,11,0.0,4.0,6.0,1.0,1.0,1,1,310.505694550077,262.0,19730.65260264637,0,5,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05458511797301361,19730.65260264637,5,3,5,5_1,5_3,5_0_1 +23948,1,43.0,360.0,9,111,350.0,,,0,56,0.0,0.0,,375.0,34.63973063491302,,71,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,123969,1,1,0,0,2,,360.0,790.0,32,1.0,0.0,3.0,2.0,1.3,1,1,162.3389684807116,350.0,112719.99999999999,0,1,2,3,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.003326827537260469,86707.6923076923,10,5,10,10_0,10_2,10_0_0 +23949,2,51.0,0.0,1,111,560.0,,,0,46,0.0,0.0,,824.0,365.79555550468154,,60,0,0,0,0,0,0,0,0,2,3.0,1,,1,123970,2,1,0,0,1,,273.0,,32,1.0,0.0,5.0,3.0,1.8,3,2,87.41450453798029,560.0,38093.6744050871,0,1,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02163088788016631,21163.15244727061,5,3,5,5_1,5_2,5_1_0 +23950,2,66.0,0.0,7,111,750.0,,,77,77,0.0,0.0,,894.0,199.524848457099,,50,0,0,0,0,0,0,0,0,0,,1,,5,123971,2,1,0,0,2,,1224.0,,41,1.0,2.0,3.0,3.0,2.0,3,3,77.24513581227251,750.0,42658.3523476049,5,5,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020957208865339465,21329.17617380245,6,3,6,6_1,6_2,6_0_0 +23951,1,42.0,250.0,9,112,600.0,0.0,0.0,0,85,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,2,2,2,1,1,1,2,2,0,,2,2010.0,6,123972,1,3,0,0,1,,600.0,400.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1419.46057107407,600.0,11869.062739113497,0,7,2,3,40.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.05055159056685669,11869.062739113497,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +23952,1,50.0,205.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1458.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,123973,1,3,0,0,1,,324.0,208.0,32,1.0,0.0,4.0,2.0,1.5,2,2,385.886189362791,0.0,11126.246102377707,0,4,2,3,55.0,5,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13104150192115754,7417.497401585138,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23953,1,53.0,319.0,2,111,400.0,380.0,0.0,0,85,0.0,0.0,682.0802173488245,780.0,0.0,721.4315382171199,41,2,1,2,2,1,2,2,2,0,,2,,2,123974,1,3,0,1,1,490.0,0.0,323.0,31,0.0,0.0,3.0,2.0,1.5,2,1,883.475280728654,400.0,12328.711613011379,0,7,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.06326695152612781,8219.14107534092,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +23954,0,48.0,0.0,6,120,600.0,,,63,52,0.0,0.0,,732.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,1,5.0,1,,4,123975,2,1,0,0,1,,330.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,100.24432913119949,600.0,27553.634090874835,4,1,5,0,70.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02656636861714087,13776.817045437418,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +23955,1,80.0,155.0,1,400,350.0,0.0,0.0,0,71,0.0,0.0,596.8201901802214,560.0,290.9737373332694,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,123976,2,1,4,0,1,,72.0,305.0,11,0.0,0.0,5.0,1.0,1.0,1,1,2079.85476947575,350.0,8955.605237752774,0,5,2,3,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.06253067047208531,8955.605237752774,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +23956,1,50.0,357.0,7,111,530.0,,,0,85,0.0,0.0,,656.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,2,,5,123977,2,2,0,0,2,,350.0,416.0,31,1.0,0.0,3.0,2.0,1.5,2,1,157.19564908829665,530.0,7741.0,0,6,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08474357318175946,5160.666666666667,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23957,1,22.0,395.0,2,111,0.0,0.0,1200.0,0,85,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,71,2,2,1,2,1,2,2,2,0,,8,,2,123978,1,3,0,0,1,,0.0,435.0,31,0.0,0.0,3.0,4.0,1.9,1,1,437.798455074243,0.0,13347.485038300008,0,6,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.08990457727104799,7024.992125421058,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23958,2,62.0,0.0,6,111,450.0,990.0,0.0,56,78,0.0,0.0,767.3402445174275,1440.0,0.0,1879.519007460391,50,0,0,0,0,0,0,0,0,0,,2,,4,123979,1,1,0,1,1,796.0,0.0,574.0,42,1.0,4.0,3.0,2.0,1.5,2,2,1454.89538789733,450.0,28559.421449926354,1,5,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05042118946718766,19039.614299950903,5,3,5,5_0,5_3,5_0_0 +23959,0,43.0,0.0,1,111,414.0,1382.0,0.0,31,47,0.0,0.0,705.9530249560333,1796.0,0.0,2623.732594252788,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,123980,1,2,3,0,1,,311.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,223.270701709832,414.0,51150.45889185755,1,1,5,0,50.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.035112099459305116,34100.30592790503,9,5,9,9_1,9_2,9_1_0 +23960,1,52.0,36.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,489.0,0.0,0.0,30,2,2,2,1,2,2,2,2,3,45.0,2,,1,123981,2,3,0,0,2,,180.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,831.719613994557,0.0,30806.16124193934,0,1,1,2,54.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,1,0.01587344804695361,23697.047109184106,6,3,6,6_0,6_4,6_1_0 +23961,1,64.0,323.0,2,111,900.0,480.0,0.0,86,78,0.0,0.0,1534.680489034855,1380.0,0.0,911.2819430110987,71,2,1,2,2,1,2,2,2,0,,2,,2,123982,2,1,0,1,1,936.0,600.0,312.0,41,0.0,3.0,4.0,5.0,2.8,4,4,358.225034616126,900.0,14319.801407355128,6,5,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.09637005156308844,5114.214788341117,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +23962,2,66.0,0.0,5,111,563.0,0.0,0.0,52,74,0.0,0.0,960.0279059184704,563.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,123983,2,3,0,0,1,,0.0,,42,1.0,5.0,3.0,2.0,1.5,2,2,1426.14281418299,563.0,59625.89675800341,1,5,1,2,63.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009442205997923716,39750.59783866894,9,5,9,9_0,9_3,9_0_0 +23963,2,63.0,0.0,6,111,710.0,0.0,0.0,46,33,0.0,0.0,1210.6923857941633,710.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,4,123984,2,1,0,0,1,,0.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,952.018469270462,710.0,62578.30018627894,4,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011345785965526692,41718.866790852626,9,5,9,9_0,9_4,9_0_0 +23964,1,43.0,400.0,9,111,700.0,,,68,53,0.0,0.0,,880.0,249.40606057137379,,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,123985,2,2,0,0,2,,400.0,850.0,43,2.0,0.0,3.0,4.0,2.3,3,3,54.54757344588735,700.0,45541.54492711709,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.019323015971643424,19800.671707442212,5,3,5,5_1,5_2,5_0_0 +23965,2,62.0,0.0,6,111,480.0,,,46,52,0.0,0.0,,572.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,123986,2,1,0,0,2,,252.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,72.07403757108102,480.0,39882.180104706524,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014342245045237581,26588.12006980435,7,4,7,7_1,7_2,7_0_0 +23966,2,47.0,0.0,1,120,1586.0,0.0,0.0,21,37,1792.9608467622227,0.0,2704.448061788089,3336.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,123987,2,1,1,0,1,,325.0,,43,2.0,0.0,8.0,3.0,2.0,3,3,1755.35629896767,1586.0,22467.42617819026,1,1,0,1,140.0,0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14848162729197462,11233.71308909513,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +23967,2,69.0,0.0,6,211,1000.0,0.0,0.0,72,72,0.0,331.081819252556,1705.2005433720612,1280.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,123988,2,1,2,0,1,,697.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,1573.23539927035,1000.0,56120.63976235116,5,5,0,1,160.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022808007988153675,37413.75984156744,9,5,9,9_1,9_1,9_0_0 +23968,1,64.0,225.0,7,111,408.0,,,0,77,0.0,0.0,,500.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,,5,123989,2,2,0,0,2,,217.0,227.0,11,0.0,2.0,1.0,1.0,1.0,1,1,106.31952129769589,408.0,6082.54255319149,0,6,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08220246642379044,6082.54255319149,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +23969,1,80.0,154.0,1,221,268.0,315.0,0.0,0,78,0.0,0.0,456.9937456237124,583.0,0.0,598.0287751010335,71,0,0,0,0,0,0,0,0,0,,2,,1,123990,1,1,0,1,1,,260.0,363.0,11,0.0,4.0,4.0,1.0,1.0,1,1,744.315410000209,268.0,10222.643684970422,0,5,2,3,80.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.057030257335207786,10222.643684970422,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +23970,2,53.0,0.0,9,111,1200.0,,,11,52,0.0,0.0,,1272.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,2,10.0,1,2013.0,6,123991,2,3,0,0,2,,270.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,163.28144496108484,1200.0,45687.003425403316,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027841615878285653,25381.66856966851,7,4,7,7_1,7_2,7_0_0 +23971,1,58.0,254.0,2,111,0.0,0.0,600.0,0,63,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,50,0,0,0,0,0,0,0,0,0,,2,,2,123992,2,1,0,1,1,75.0,150.0,282.0,12,1.0,3.0,3.0,1.0,1.0,1,1,124.30589370422,0.0,3010.515304768319,0,4,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1993014282470736,3010.515304768319,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +23972,1,82.0,241.0,2,111,214.0,292.0,0.0,0,77,0.0,0.0,364.9129162816211,506.0,0.0,554.3631819984184,70,0,0,0,0,0,0,0,0,0,,2,,2,123993,2,1,0,0,1,,252.0,382.0,11,0.0,3.0,5.0,1.0,1.0,1,1,878.577363428532,214.0,10863.899326441187,0,5,2,3,92.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.046576278442535625,10863.899326441187,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +23973,2,68.0,0.0,9,300,570.0,,,0,77,0.0,0.0,,662.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,123994,2,1,0,0,1,,480.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,99.57456555745446,570.0,29878.255699762765,0,5,1,2,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022156581249328296,29878.255699762765,8,4,8,8_1,8_1,8_0_0 +23974,2,44.0,0.0,7,211,1190.0,,,21,42,0.0,0.0,,1322.0,182.89777775234077,,30,0,0,0,0,0,0,0,0,2,5.0,1,,5,123995,2,2,0,0,2,,486.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,111.93537851271515,1190.0,59651.446077248926,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02216207798697794,25935.411337934318,7,4,7,7_1,7_2,7_0_0 +23975,2,61.0,0.0,1,111,350.0,0.0,0.0,13,13,1582.0242765549024,0.0,596.8201901802214,2030.0,249.40606057137379,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,123996,2,2,2,0,1,,300.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,1332.42378305658,350.0,110534.63136531264,1,1,0,1,110.0,7,5,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01836528493310779,55267.31568265632,10,5,10,10_1,10_2,10_1_0 +23976,2,79.0,0.0,5,120,200.0,,,77,75,0.0,0.0,,452.0,349.1684847999233,,60,0,0,0,0,0,0,0,0,0,,1,,3,123997,2,1,0,0,1,,400.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,145.36588866155816,200.0,57174.0,5,5,0,1,75.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007905691398187987,38116.0,9,5,9,9_1,9_2,9_0_0 +23977,0,83.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,864.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,123998,2,2,2,0,1,,184.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1033.78122924879,0.0,22545.118948953947,0,5,0,1,73.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0383231510978605,22545.118948953947,6,3,6,6_1,6_3,6_0_1 +23978,2,40.0,0.0,1,111,436.0,2270.0,0.0,85,68,0.0,0.0,743.4674369102187,2706.0,0.0,4309.604188823321,50,2,2,2,2,1,2,2,2,0,,1,,1,123999,2,3,1,0,1,,300.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1018.68052637315,436.0,56252.24160970633,6,1,0,1,105.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04810474965202239,26786.781718907776,7,4,7,7_1,7_3,7_1_0 +23979,0,83.0,0.0,5,120,1747.0,0.0,0.0,0,75,0.0,0.0,2978.985349270991,1847.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,124000,2,1,2,0,1,,209.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,496.443702016926,1747.0,24471.129562206006,0,5,0,1,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07547669572444117,24471.129562206006,7,4,7,7_1,7_0,7_0_0 +23980,2,64.0,0.0,9,111,600.0,,,77,43,0.0,0.0,,738.0,191.2113131047199,,20,0,0,0,0,0,0,0,0,0,,1,2008.0,6,124001,1,1,0,0,2,,217.0,,42,2.0,3.0,5.0,3.0,2.0,3,3,124.57338059697291,600.0,75061.00649830127,5,1,1,2,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009832002452787546,37530.503249150635,9,5,9,9_1,9_2,9_0_0 +23981,2,44.0,0.0,1,112,90.0,0.0,0.0,0,33,0.0,993.245457757668,153.4680489034855,840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,124002,2,1,1,0,1,,220.0,680.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1002.59863770688,90.0,41921.22653885028,0,1,2,3,110.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.020037581658578964,41921.22653885028,9,5,9,9_1,9_0,9_1_0 +23982,2,61.0,0.0,9,111,492.0,,,0,42,0.0,0.0,,558.0,91.44888887617039,,20,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,124003,2,1,0,0,1,,204.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,113.21938179920126,492.0,72194.64093486758,0,1,1,2,75.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007729105550970401,72194.64093486758,10,5,10,10_0,10_2,10_0_0 +23983,2,78.0,0.0,2,111,564.0,1252.0,0.0,86,75,0.0,0.0,961.7331064618425,1816.0,0.0,2376.927068020616,71,0,0,0,0,0,0,0,0,0,,1,,2,124004,2,1,2,0,2,,112.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,267.847746343722,564.0,22450.0631753612,6,5,0,1,67.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08089064096679462,14966.708783574133,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +23985,2,58.0,0.0,5,111,750.0,0.0,0.0,0,52,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,124006,2,1,0,1,1,,0.0,410.0,22,2.0,1.0,3.0,2.0,1.5,2,2,1209.17006140665,750.0,31216.241756720472,0,1,2,3,80.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024025954368402925,20810.82783781365,5,3,5,5_0,5_3,5_0_0 +23986,2,33.0,0.0,2,111,468.0,0.0,0.0,46,38,0.0,0.0,798.0338542981247,468.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,124007,2,1,0,1,1,,0.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1669.5629896501,468.0,36662.382454533654,4,1,2,3,62.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012765127868609841,20367.990252518695,5,3,5,5_0,5_3,5_0_1 +23987,2,62.0,0.0,6,111,755.0,0.0,0.0,43,78,947.1052002308681,0.0,1287.4264102459063,1773.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,124008,2,1,2,0,1,,188.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1164.38634484573,755.0,26835.468298568547,1,5,0,1,115.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0660692774306672,13417.734149284273,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +23988,2,65.0,0.0,7,111,850.0,1000.0,0.0,56,74,0.0,0.0,1449.420461866252,1850.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,0,,2,,5,124009,2,2,0,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,660.20497139148,850.0,48929.275843222036,4,5,0,1,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03780967463993794,32619.51722881469,8,4,8,8_0,8_4,8_0_0 +23989,2,43.0,0.0,1,111,350.0,1650.0,0.0,52,43,0.0,132.4327277010224,596.8201901802214,2100.0,0.0,3132.5316791006517,20,2,2,2,1,1,2,2,2,2,8.0,1,,1,124010,2,1,2,0,1,,300.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,736.052242198184,350.0,42827.01577713968,1,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.04903446952568065,28551.343851426453,8,4,8,8_1,8_3,8_1_0 +23990,2,32.0,0.0,7,111,0.0,0.0,0.0,55,46,0.0,0.0,0.0,1073.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,124011,2,2,5,0,1,,0.0,1130.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1329.79118170708,0.0,55466.558993169645,4,1,2,3,110.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01934498947612981,30814.754996205356,8,4,8,8_1,8_3,8_0_0 +23991,2,50.0,0.0,7,111,400.0,905.0,0.0,0,64,0.0,0.0,682.0802173488245,1305.0,0.0,1718.146163385509,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,124012,2,1,0,0,1,,0.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,840.160114138133,400.0,27104.460782135327,0,1,1,2,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.048147056327353,18069.640521423553,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +23992,2,47.0,0.0,2,111,744.0,1868.0,0.0,34,34,0.0,0.0,1268.6692042688135,2612.0,0.0,3546.405561551526,10,0,0,0,0,0,0,0,0,0,,1,,2,124013,2,1,2,0,1,,543.0,,43,2.0,1.0,9.0,5.0,2.8,4,2,483.820666739494,744.0,96696.42013614395,1,1,1,2,190.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02701237539427446,34534.43576290856,9,5,9,9_1,9_4,9_0_1 +23993,2,84.0,0.0,5,111,700.0,0.0,0.0,77,74,0.0,0.0,1193.6403803604428,773.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,124014,2,1,0,1,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,826.184202311306,700.0,294674.77195153036,5,5,0,1,118.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0026232310111947658,196449.84796768692,10,5,10,10_0,10_4,10_0_0 +23994,2,84.0,0.0,7,111,640.0,0.0,0.0,0,74,0.0,0.0,1091.3283477581192,640.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,124015,2,2,0,0,1,,140.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1463.90704879054,640.0,20201.55140233633,0,5,0,1,48.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03168073516997231,20201.55140233633,5,3,5,5_0,5_2,5_0_0 +23995,2,37.0,0.0,7,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,1331.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,124016,2,1,2,0,1,,224.0,515.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1388.89398447384,0.0,39391.07410624782,1,1,2,3,69.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03378938072137744,26260.71607083188,7,4,7,7_1,7_2,7_0_0 +23996,2,70.0,0.0,2,112,480.0,900.0,0.0,74,74,0.0,0.0,818.4962608185893,1380.0,0.0,1708.65364314581,41,0,0,0,0,0,0,0,0,0,,1,,2,124017,2,1,2,0,1,,372.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,1694.07177676242,480.0,85126.94371147189,5,5,1,2,116.0,6,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.016211083586852987,56751.295807647926,10,5,10,10_1,10_1,10_0_1 +23997,1,35.0,393.0,8,112,1663.0,,,0,85,0.0,0.0,,1803.0,193.98249155551292,,60,0,0,0,0,0,0,0,0,0,,1,2003.0,6,124018,2,1,0,0,2,,216.0,421.0,31,0.0,0.0,3.0,4.0,2.1,2,1,89.79988973566499,1663.0,22431.258999540925,0,6,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08037890338820929,10681.551904543297,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +23998,2,50.0,0.0,2,211,400.0,0.0,0.0,0,63,0.0,0.0,682.0802173488245,1753.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,1,,2,124019,2,2,5,0,1,,550.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,1220.12060452553,400.0,23210.063549815957,0,1,0,1,100.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.07552758294855683,15473.375699877304,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +23999,2,61.0,0.0,5,111,1000.0,0.0,0.0,0,54,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,124020,2,1,2,0,2,,300.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,516.024481770749,1000.0,14424.32355925497,0,1,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06932734113263686,14424.32355925497,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +24000,1,38.0,398.0,8,111,600.0,,,0,52,0.0,0.0,,800.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,124021,1,2,0,0,1,,730.0,382.0,32,1.0,0.0,3.0,4.0,2.3,4,2,119.05208244304947,600.0,19193.602167235767,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.041680555480389785,8345.044420537291,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24001,2,42.0,0.0,2,111,1700.0,0.0,0.0,67,64,1054.6828510366015,0.0,2898.840923732504,2700.0,0.0,0.0,50,2,2,2,1,1,2,2,2,0,,1,,2,124022,1,3,3,0,2,,940.0,,43,3.0,1.0,4.0,4.0,2.5,4,4,313.591593061918,1700.0,47504.17948762464,4,1,1,2,94.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,1,0,0,0.05683710421108062,19001.671795049857,5,3,5,5_1,5_3,5_0_1 +24002,1,46.0,53.0,9,112,231.0,0.0,0.0,0,52,0.0,172.1625460113291,393.9013255189461,1391.0,1427.1569021584166,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,124023,2,2,1,0,1,,258.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,853.28677172549,231.0,19187.262621138292,0,1,1,2,140.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07249601089357885,19187.262621138292,5,3,5,5_1,5_0,5_0_0 +24003,2,68.0,0.0,7,111,1410.0,,,56,21,0.0,0.0,,2052.0,889.5482827045664,,50,0,0,0,0,0,0,0,0,0,,1,,5,124024,2,2,0,0,2,,440.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,92.62450565654508,1410.0,5693.373826865809,4,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3604189822064823,3795.582551243873,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24004,2,37.0,0.0,7,111,840.0,0.0,0.0,42,37,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,5,124025,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,867.251827436239,840.0,87119.98798012726,1,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009641874608518203,58079.991986751505,10,5,10,10_0,10_4,10_0_0 +24005,2,66.0,0.0,2,112,1052.0,0.0,0.0,0,77,0.0,1456.7600047112462,1793.8709716274084,2236.0,116.38949493330776,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124026,2,1,2,0,1,,325.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,496.22432753546,1052.0,14634.129525855615,0,5,0,1,120.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15279350890324087,14634.129525855615,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +24006,2,63.0,0.0,5,111,1316.0,0.0,0.0,72,72,0.0,0.0,2244.0439150776324,1390.0,102.53360267934255,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124027,2,1,1,0,1,,1682.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,826.534875867794,1316.0,45413.96708920694,5,5,0,1,95.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030607323893761897,30275.978059471294,8,4,8,8_1,8_1,8_0_0 +24007,2,51.0,0.0,7,112,400.0,1100.0,0.0,42,42,0.0,0.0,682.0802173488245,1500.0,0.0,2088.354452733768,20,2,2,1,2,2,2,2,1,1,5.0,1,,5,124028,2,2,1,0,1,,233.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,520.868521055839,400.0,60086.60688603316,1,1,1,2,153.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.024963965810967898,40057.737924022105,9,5,9,9_1,9_1,9_0_0 +24008,1,56.0,271.0,2,111,319.0,881.0,0.0,0,77,0.0,0.0,543.9589733356875,1200.0,0.0,1672.582066234954,71,0,0,0,0,0,0,0,0,0,,2,,2,124029,2,1,0,0,1,,0.0,304.0,11,0.0,0.0,4.0,1.0,1.0,1,1,639.998001064081,319.0,4911.580990601788,0,7,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.24432051559287654,4911.580990601788,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24009,1,40.0,306.0,9,112,1500.0,120.0,0.0,54,65,0.0,0.0,2557.8008150580918,1620.0,0.0,227.8204857527747,50,2,2,2,2,1,2,2,2,2,30.0,1,2012.0,6,124030,2,2,1,0,1,,620.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,290.532728694647,1500.0,21398.65433396499,4,1,1,2,105.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.07570569507394943,8916.105972485413,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +24011,2,37.0,0.0,6,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,1005.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,4,124032,1,1,0,1,1,192.0,90.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1990.35698026482,0.0,19032.442016973644,0,1,2,3,32.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05280457437378314,19032.442016973644,5,3,5,5_0,5_2,5_0_0 +24012,2,50.0,0.0,7,111,500.0,1700.0,0.0,54,37,0.0,0.0,852.6002716860306,2200.0,0.0,3227.4568814976415,42,2,2,1,2,1,2,2,2,2,20.0,1,,5,124033,1,2,3,0,1,,497.0,,43,2.0,2.0,8.0,3.0,2.0,3,2,311.630633817753,500.0,159679.25124047574,1,1,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.013777619715205306,79839.62562023787,10,5,10,10_1,10_3,10_0_0 +24013,2,47.0,0.0,5,112,0.0,0.0,1300.0,0,46,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,124034,2,2,1,0,1,,600.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1061.24424393306,0.0,31355.726801590077,0,1,1,2,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041459731047729244,31355.726801590077,8,4,8,8_1,8_1,8_0_0 +24014,2,59.0,0.0,6,111,750.0,0.0,0.0,0,81,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124035,1,1,2,0,1,,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,953.350433062144,750.0,26239.92298729312,0,4,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02858240096067329,26239.92298729312,7,4,7,7_1,7_4,7_0_0 +24015,2,59.0,0.0,7,111,0.0,,,21,77,0.0,0.0,,435.0,277.1178450793042,,60,0,0,0,0,0,0,0,0,0,,1,,5,124036,2,2,0,0,2,,450.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,86.22031642348182,0.0,42658.5783340457,4,5,1,2,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010197245594863805,28439.052222697133,8,4,8,8_1,8_2,8_0_0 +24016,2,69.0,0.0,5,112,1500.0,0.0,0.0,77,72,1265.6194212439218,79.45963662061344,2557.8008150580918,2835.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124037,2,1,1,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,983.526669608066,1500.0,68417.18380103313,5,5,0,1,102.0,8,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04143695841449104,45611.45586735542,10,5,10,10_1,10_0,10_0_0 +24017,2,70.0,0.0,2,111,0.0,0.0,480.0,77,77,0.0,0.0,302.552779399077,480.0,0.0,574.4314308310468,71,0,0,0,0,0,0,0,0,0,,2,,2,124038,2,1,0,1,1,500.0,190.0,631.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1505.64910923057,0.0,31944.49278117553,5,5,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015026064219835029,21296.328520783685,6,3,6,6_0,6_3,6_0_1 +24018,2,61.0,0.0,2,300,648.0,,,72,55,0.0,0.0,,786.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,124039,2,2,0,0,2,,420.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,78.9766185543492,648.0,22544.28920232253,5,1,0,1,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03486470533384684,11272.144601161264,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +24019,2,45.0,0.0,6,111,440.0,720.0,0.0,52,42,0.0,0.0,750.2882390837069,1160.0,0.0,1366.922914516648,31,2,2,2,2,1,2,2,2,0,,2,,4,124040,2,1,0,0,1,,210.0,,43,2.0,0.0,5.0,4.0,2.3,4,2,2638.7517403056,440.0,53525.44167366061,1,1,1,2,94.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02167193700282581,23271.931162461136,6,3,6,6_0,6_2,6_0_0 +24020,2,33.0,0.0,1,112,1340.0,0.0,0.0,0,62,0.0,0.0,2284.968728118562,1373.0,45.72444443808519,0.0,43,0,0,0,0,0,0,0,0,2,2.0,1,,1,124041,2,3,3,0,1,,220.0,640.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1004.03520794601,1340.0,23821.511146436587,0,1,2,3,118.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05763698161547507,23821.511146436587,6,3,6,6_1,6_0,6_1_0 +24021,0,80.0,0.0,1,111,700.0,0.0,0.0,86,74,0.0,0.0,1193.6403803604428,864.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,124042,2,1,0,1,2,,0.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,767.466240543851,700.0,150531.4024059037,6,5,0,1,200.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005739666183872042,100354.26827060246,10,5,10,10_0,10_4,10_1_0 +24022,0,64.0,0.0,2,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,921.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,8,,2,124043,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2585.65007660783,0.0,9373.0,0,7,5,0,80.0,8,3,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09826096233863224,9373.0,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +24023,2,58.0,0.0,6,111,1400.0,0.0,0.0,67,47,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,124044,2,1,2,0,1,,440.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,578.677306855648,1400.0,56333.66631434697,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024851924108540584,37555.77754289798,9,5,9,9_1,9_4,9_0_0 +24024,2,58.0,0.0,6,111,2000.0,0.0,0.0,37,37,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,60.0,1,,4,124045,2,1,2,0,1,,600.0,,43,2.0,2.0,7.0,3.0,2.0,3,3,480.128259549128,2000.0,94374.84447599151,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02119208790334791,47187.42223799576,10,5,10,10_1,10_4,10_0_0 +24025,2,50.0,0.0,1,111,320.0,790.0,0.0,0,52,0.0,0.0,545.6641738790596,1110.0,0.0,1499.8181978724333,50,0,0,0,0,0,0,0,0,3,20.0,1,,1,124046,2,1,1,0,1,,260.0,517.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1520.5835733671,320.0,20147.592508878482,0,1,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.055093431113958355,20147.592508878482,5,3,5,5_1,5_3,5_1_0 +24026,0,35.0,0.0,2,111,660.0,1190.0,0.0,0,67,0.0,0.0,1125.4323586255605,1850.0,0.0,2259.219817048349,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,124047,2,3,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2351.9302775756,660.0,13468.07644924026,0,1,5,0,70.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.13736185764704056,13468.07644924026,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +24027,2,78.0,0.0,5,120,420.0,0.0,0.0,71,78,1687.4925616585624,0.0,716.1842282162656,2370.0,484.95622888878233,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124048,1,3,2,0,2,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,462.463708856111,420.0,22733.303926919587,5,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10425233426776871,15155.535951279724,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +24028,2,33.0,0.0,5,111,400.0,400.0,0.0,46,47,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,43,2,1,2,2,1,2,2,2,3,15.0,2,,3,124049,2,2,0,1,1,,480.0,440.0,43,2.0,0.0,2.0,2.0,1.5,2,2,322.158022056581,400.0,36179.780818507556,1,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.022111797857845637,24119.853879005037,6,3,6,6_0,6_4,6_0_0 +24029,2,55.0,0.0,1,111,1950.0,396.0,0.0,35,35,1171.7526475016643,0.0,3325.141059575519,3457.0,0.0,751.8076029841565,20,2,2,1,1,2,2,2,2,2,25.0,2,,1,124050,2,3,0,1,1,,0.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,830.826902289088,1950.0,161273.419802186,1,1,0,1,125.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.021435646396289428,107515.61320145732,10,5,10,10_0,10_4,10_1_0 +24030,2,64.0,0.0,5,111,450.0,300.0,0.0,56,78,0.0,0.0,767.3402445174275,750.0,0.0,569.5512143819367,71,1,2,2,2,1,2,2,2,0,,2,,3,124051,2,2,0,1,1,,0.0,,42,3.0,3.0,4.0,4.0,2.5,4,4,345.7069986045,450.0,52860.45667306947,4,5,1,2,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014188299670556922,21144.18266922779,5,3,5,5_0,5_3,5_0_0 +24031,2,47.0,0.0,8,111,0.0,,,0,63,0.0,0.0,,547.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,124052,2,2,0,0,2,,541.0,452.0,32,1.0,0.0,4.0,6.0,2.8999999999999995,3,1,51.12000367992905,0.0,26973.32289239807,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020279296035645714,9301.145824964853,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +24032,2,67.0,0.0,5,400,600.0,0.0,0.0,74,74,0.0,264.8654554020448,1023.1203260232367,870.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,124053,2,1,2,0,1,,90.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1242.35348094793,600.0,67035.0,5,5,0,1,130.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012978294920563885,44690.0,10,5,10,10_1,10_0,10_0_0 +24033,2,25.0,0.0,5,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,630.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,3,124054,1,2,2,0,1,,224.0,249.0,12,1.0,0.0,2.0,1.0,1.0,1,1,149.037048646124,0.0,15873.2978533834,0,1,2,3,49.0,8,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03968929492907583,15873.2978533834,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +24034,2,49.0,0.0,1,111,1800.0,0.0,0.0,63,46,0.0,198.6490915515336,3069.36097806971,1950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,124055,2,1,1,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,862.133391119119,1800.0,50929.554600845084,1,4,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03828818090562377,24252.168857545275,7,4,7,7_1,7_4,7_1_0 +24035,2,71.0,0.0,1,111,297.0,48.0,0.0,0,77,0.0,0.0,506.4445613815022,345.0,0.0,91.12819430110987,71,0,0,0,0,0,0,0,0,0,,2,,1,124056,2,1,0,0,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,752.856108226679,297.0,8606.08408107488,0,5,0,1,28.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.040087918819973964,8606.08408107488,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +24036,0,78.0,0.0,5,111,400.0,,,0,77,0.0,0.0,,526.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,3,124057,2,2,0,0,2,,360.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,114.70475230557643,400.0,26961.504704822502,0,5,5,0,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019509296894172096,26961.504704822502,7,4,7,7_1,7_2,7_0_0 +24037,2,35.0,0.0,7,111,500.0,0.0,0.0,0,37,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,124058,2,1,0,0,1,,0.0,626.0,12,1.0,0.0,1.0,1.0,1.0,1,1,980.588161134706,500.0,29181.327775491918,0,1,2,3,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01713424433071642,29181.327775491918,8,4,8,8_0,8_4,8_0_0 +24038,1,42.0,280.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,307.0,0.0,0.0,31,2,2,1,2,1,2,2,2,0,,2,,1,124059,1,1,0,1,2,220.0,0.0,473.0,12,1.0,0.0,1.0,1.0,1.0,1,1,889.674271101578,0.0,9329.973190724144,0,4,2,3,25.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.032904703338828376,9329.973190724144,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +24039,2,37.0,0.0,5,111,440.0,0.0,0.0,0,46,0.0,0.0,750.2882390837069,440.0,0.0,0.0,20,2,2,2,2,2,2,2,1,1,10.0,2,,3,124060,1,2,0,1,1,,0.0,392.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2380.6903520783,440.0,23818.771216497324,0,1,2,3,39.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0.01847282531918556,23818.771216497324,6,3,6,6_0,6_3,6_0_0 +24040,2,34.0,0.0,2,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,209.0,0.0,0.0,42,2,2,2,2,1,2,2,2,1,10.0,2,,2,124061,1,2,0,1,2,250.0,0.0,728.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1286.13791565047,0.0,29072.848262453474,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0071888381252935545,29072.848262453474,8,4,8,8_0,8_4,8_0_1 +24041,1,37.0,350.0,5,111,0.0,,,0,42,0.0,0.0,,41.0,56.80915824125736,,71,0,0,0,0,0,0,0,0,0,,1,,3,124062,2,2,0,0,2,,0.0,650.0,32,1.0,0.0,3.0,2.0,1.3,1,1,114.1805163747458,0.0,8287.123807718017,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.004947434230657399,6374.710621321551,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +24042,1,28.0,154.0,6,111,1500.0,0.0,0.0,0,67,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,124063,2,1,0,0,1,,0.0,357.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2277.74792585515,1500.0,5676.102470897122,0,4,2,3,50.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.2642658422202377,5676.102470897122,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24043,1,33.0,430.0,8,111,463.0,329.0,0.0,63,56,0.0,0.0,789.5078515812643,792.0,0.0,624.6078317721906,50,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,124064,1,1,0,0,1,,0.0,404.0,43,2.0,1.0,3.0,4.0,2.3,3,2,1476.03488721205,463.0,14925.17057757008,4,1,2,3,72.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0530647201573855,6489.204598943514,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +24044,1,43.0,407.0,6,111,780.0,,,0,54,0.0,0.0,,830.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,2,15.0,2,,4,124065,2,2,0,0,2,,400.0,524.0,32,1.0,0.0,4.0,4.0,1.9,1,1,76.44569774955478,780.0,25527.811523887336,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03251355876015215,13435.690275730178,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +24045,2,47.0,0.0,2,111,384.0,106.0,0.0,85,22,0.0,0.0,654.7970086548714,490.0,0.0,201.24142908161764,20,1,2,2,2,1,2,2,2,1,5.0,2,,2,124066,2,1,0,1,1,824.0,498.0,340.0,42,1.0,0.0,3.0,4.0,2.1,2,2,276.646430525856,384.0,4261.478748847798,6,1,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.11498356060850574,2029.2755946894274,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +24046,1,35.0,80.0,2,111,0.0,0.0,0.0,42,62,0.0,0.0,0.0,457.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,124067,2,1,0,1,1,990.0,605.0,560.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1254.98279484103,0.0,50902.915669029055,4,1,2,3,64.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00897787472472924,24239.483651918596,7,4,7,7_0,7_3,7_0_1 +24047,1,74.0,351.0,2,111,800.0,500.0,0.0,85,78,0.0,0.0,1364.160434697649,1300.0,0.0,949.2520239698945,71,2,2,2,2,2,2,2,1,0,,2,,2,124068,2,2,0,1,1,,0.0,418.0,41,3.0,0.0,5.0,6.0,3.5,6,6,348.917016971965,800.0,20456.831254645705,6,5,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.06354845400138756,5844.808929898773,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24048,2,84.0,0.0,5,111,180.0,921.0,0.0,0,78,0.0,0.0,306.936097806971,1101.0,0.0,1748.5222281525457,71,0,0,0,0,0,0,0,0,0,,2,,3,124069,2,1,0,0,1,,120.0,512.0,11,0.0,1.0,3.0,1.0,1.0,1,1,509.375130162045,180.0,21850.929158219442,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0503868733465665,21850.929158219442,6,3,6,6_0,6_3,6_0_0 +24049,2,36.0,0.0,9,112,0.0,,,65,54,0.0,0.0,,1417.0,0.0,,60,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,124070,2,1,0,0,2,,346.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,104.56654730623431,0.0,42965.82962178597,1,1,1,2,147.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032979696015959285,20459.918867517128,5,3,5,5_1,5_2,5_0_0 +24050,2,34.0,0.0,1,111,530.0,0.0,0.0,0,46,0.0,185.40581878143135,903.7562879871924,670.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,124071,2,1,0,0,1,,0.0,440.0,12,1.0,0.0,1.0,1.0,1.0,1,1,858.622940480475,530.0,9417.0,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07114792396729319,9417.0,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +24051,2,35.0,0.0,1,211,1000.0,0.0,0.0,0,62,0.0,52.973091080408956,1705.2005433720612,1075.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,124072,2,1,2,0,1,,0.0,460.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1392.40437680772,1000.0,20916.58748452375,0,1,2,3,48.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.051394616870242146,20916.58748452375,5,3,5,5_1,5_1,5_1_0 +24052,2,74.0,0.0,9,300,480.0,,,78,78,0.0,0.0,,480.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,124073,2,1,0,0,2,,420.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,107.5128683187223,480.0,15094.8154513596,5,5,0,1,34.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03179899757944812,10063.2103009064,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +24053,2,46.0,0.0,2,211,600.0,1559.0,0.0,0,34,0.0,0.0,1023.1203260232367,2159.0,0.0,2959.767810738131,20,2,2,2,2,1,2,2,2,2,5.0,1,,2,124074,2,3,1,0,1,,798.0,,32,1.0,0.0,7.0,3.0,1.8,2,1,762.247539959454,600.0,43219.304935828906,0,1,1,2,100.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.049954528496134694,24010.724964349392,6,3,6,6_1,6_1,6_0_1 +24054,2,70.0,0.0,2,111,210.0,900.0,0.0,0,77,0.0,0.0,358.0921141081328,1110.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,124075,1,3,0,0,1,,211.0,493.0,11,0.0,0.0,4.0,1.0,1.0,1,1,2407.50874426278,210.0,30436.116767905783,0,5,2,3,67.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03646982985590562,30436.116767905783,8,4,8,8_0,8_3,8_0_1 +24055,2,30.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1660.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,15.0,2,,2,124076,2,1,0,1,2,,0.0,815.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1709.26501841667,0.0,18636.291510610903,0,1,2,3,62.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0890735154606725,18636.291510610903,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +24056,2,49.0,0.0,1,112,1600.0,0.0,0.0,56,62,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,124077,2,1,3,0,1,,0.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,890.195521512017,1600.0,37228.864281408554,1,1,1,2,145.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04297740559329961,18614.432140704277,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +24057,2,56.0,0.0,6,111,652.0,,,63,56,0.0,0.0,,946.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,124078,2,1,0,0,2,,233.0,,43,5.0,0.0,5.0,5.0,3.0,5,5,138.35508962301813,652.0,56804.44236918421,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01665362708521534,18934.814123061402,5,3,5,5_1,5_2,5_0_0 +24058,2,31.0,0.0,2,111,0.0,0.0,0.0,52,33,0.0,0.0,0.0,576.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,2,124079,2,3,0,1,1,467.0,0.0,324.0,43,2.0,0.0,2.0,2.0,1.5,2,2,880.653557307583,0.0,42114.91770930537,1,1,2,3,46.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013676863955327917,28076.611806203582,8,4,8,8_0,8_4,8_0_1 +24059,2,34.0,0.0,2,111,2500.0,0.0,0.0,54,64,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,50,2,2,2,1,1,1,2,2,2,20.0,2,,2,124080,1,3,0,0,1,,0.0,676.0,43,2.0,0.0,2.0,5.0,2.4,2,2,884.724160288151,2500.0,51202.78653585232,4,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.048825467696948364,21334.494389938467,6,3,6,6_0,6_4,6_0_1 +24060,2,37.0,0.0,9,112,1211.0,0.0,0.0,63,54,0.0,0.0,2064.997858023566,1261.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,2006.0,6,124081,2,1,1,0,1,,609.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,917.470648637901,1211.0,41884.55104748236,1,1,1,2,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030106565988267827,19945.024308324933,5,3,5,5_1,5_0,5_0_0 +24061,2,66.0,0.0,1,111,399.0,1515.0,0.0,77,78,0.0,331.081819252556,680.3750168054524,2164.0,0.0,2876.2336326287805,70,0,0,0,0,0,0,0,0,0,,1,,1,124082,2,1,1,0,1,,251.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1558.55641781039,399.0,39568.41078647567,5,5,0,1,135.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054690091337700295,26378.940524317117,7,4,7,7_1,7_2,7_1_0 +24062,2,40.0,0.0,1,111,1750.0,0.0,0.0,0,47,0.0,0.0,2984.100950901107,1750.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,1,124083,2,1,0,0,1,,150.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,237.936772237192,1750.0,45513.365689423576,0,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.038450243648025045,28445.853555889735,8,4,8,8_0,8_4,8_1_0 +24063,2,43.0,0.0,8,112,1500.0,0.0,0.0,43,45,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,124084,2,1,2,0,1,,1000.0,,43,2.0,0.0,7.0,6.0,3.0999999999999996,4,3,527.744826430632,1500.0,74074.78600474156,1,1,1,2,148.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020249805377824302,23895.092259594054,6,3,6,6_1,6_0,6_0_0 +24064,2,67.0,0.0,5,111,934.0,0.0,0.0,0,75,1265.6194212439218,0.0,1592.6573075095052,2260.0,174.58424239996165,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,124085,1,1,2,0,2,,158.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,733.27515363443,934.0,22627.58301525974,0,5,1,2,200.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09987810003728131,22627.58301525974,6,3,6,6_1,6_3,6_0_0 +24066,2,51.0,0.0,9,221,2280.0,,,56,63,0.0,0.0,,2784.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,124087,2,2,0,0,2,,3480.0,,42,3.0,4.0,4.0,8.0,4.1,6,5,86.3570483656732,2280.0,16654.748936170214,6,1,0,1,52.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16715952973351667,4062.1338868707844,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +24067,2,40.0,0.0,6,111,650.0,,,0,53,0.0,0.0,,650.0,0.0,,41,0,0,0,0,0,0,0,0,2,25.0,1,,4,124088,2,2,0,0,2,,180.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,192.49488251731924,650.0,51769.0,0,1,1,2,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012555776623075585,51769.0,10,5,10,10_1,10_2,10_0_0 +24068,2,35.0,0.0,6,111,250.0,0.0,0.0,52,48,0.0,0.0,426.3001358430153,250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,124089,2,1,2,1,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,125.457825183007,250.0,61727.77904089722,1,1,1,2,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004050040417530081,34293.21057827623,9,5,9,9_1,9_4,9_0_0 +24069,2,53.0,0.0,2,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,744.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124090,2,1,0,0,1,,304.0,,31,1.0,2.0,2.0,2.0,1.5,2,2,855.944345989408,0.0,6422.728776632899,0,7,0,1,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11583861406491468,4281.819184421933,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +24070,2,69.0,0.0,8,120,700.0,,,54,74,0.0,0.0,,750.0,69.27946126982604,,10,0,0,0,0,0,0,0,0,0,,1,2003.0,6,124091,2,1,0,0,2,,700.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,159.21747760160144,700.0,47878.80061039276,1,5,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015664552796612913,31919.200406928507,8,4,8,8_1,8_1,8_0_0 +24071,1,35.0,459.0,7,111,1800.0,0.0,0.0,0,55,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,124092,2,2,5,0,1,,700.0,590.0,32,1.0,0.0,4.0,4.0,1.9,1,1,311.099316943282,1800.0,15478.367247047263,0,4,2,3,78.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11629133559570876,8146.509077393297,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +24072,2,43.0,0.0,2,112,364.0,0.0,0.0,56,63,2636.7071275915036,0.0,620.6929977874303,2961.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124093,2,2,2,0,1,,184.0,,43,2.0,0.0,4.0,4.0,2.3,4,3,2311.63571881746,364.0,53587.68764671134,1,1,1,2,90.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05525522988640686,23298.994629004934,6,3,6,6_1,6_1,6_0_1 +24073,2,76.0,0.0,5,111,600.0,1960.0,0.0,75,75,0.0,0.0,1023.1203260232367,2560.0,0.0,3721.0679339619865,41,0,0,0,0,0,0,0,0,0,,1,,3,124094,2,1,2,0,2,,230.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,358.653228191823,600.0,40157.89194166611,5,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06374836616719548,26771.927961110738,7,4,7,7_1,7_2,7_0_0 +24074,2,46.0,0.0,6,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1428.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,4,124095,2,2,0,0,1,,0.0,431.0,32,1.0,0.0,4.0,4.0,2.5,4,3,241.646219741646,0.0,48720.84274950769,0,1,2,3,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029309837831457245,19488.337099803077,5,3,5,5_0,5_4,5_0_0 +24075,2,59.0,0.0,6,111,660.0,1187.0,0.0,42,74,0.0,0.0,1125.4323586255605,1847.0,0.0,2253.5243049045293,20,0,0,0,0,0,0,0,0,0,,1,,4,124096,2,1,2,0,1,,320.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,508.536741131279,660.0,75179.2025919806,1,5,0,1,115.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02456796476046981,50119.46839465373,10,5,10,10_1,10_3,10_0_0 +24077,2,25.0,0.0,9,211,1500.0,,,67,55,0.0,0.0,,2100.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,1,5.0,3,2011.0,6,124098,1,2,0,0,2,,0.0,600.0,43,2.0,0.0,2.0,2.0,1.5,2,2,185.25289149457043,1500.0,31771.6941291994,1,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06609656984170761,21181.129419466266,5,3,5,5_0,5_2,5_0_0 +24078,2,59.0,0.0,8,300,101.0,,,0,85,0.0,0.0,,365.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,124099,2,2,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,92.34125416950563,101.0,10589.585365853665,0,7,0,1,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034467827340714394,10589.585365853665,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +24079,0,97.0,0.0,2,400,160.0,,,0,77,0.0,0.0,,226.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,2,124100,1,3,0,0,2,,280.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,97.57220151034026,160.0,9303.487035683109,0,5,5,0,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024291966994008495,9303.487035683109,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +24080,2,68.0,0.0,2,111,500.0,600.0,0.0,0,77,0.0,0.0,852.6002716860306,1100.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,2,,2,124101,2,1,0,0,1,,0.0,,21,1.0,3.0,3.0,2.0,1.5,2,2,1696.62871461315,500.0,23308.658428233353,0,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.047192763298105136,15539.105618822236,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +24081,2,54.0,0.0,5,111,750.0,900.0,0.0,64,54,0.0,0.0,1278.9004075290459,1650.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,124102,1,1,1,0,1,,600.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,912.04946545822,750.0,57732.95314942094,1,1,1,2,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028579864877682073,38488.63543294729,9,5,9,9_1,9_3,9_0_0 +24082,0,40.0,0.0,1,111,0.0,0.0,1200.0,85,68,0.0,0.0,756.3819484976925,1420.0,304.8296295872346,1436.078577077617,71,0,0,0,0,0,0,0,0,0,,2,,1,124103,2,1,0,0,1,,0.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,1015.92573502472,0.0,10519.841741541924,6,4,5,0,68.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.13498301922095896,7013.227827694616,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +24083,2,53.0,0.0,5,300,336.0,,,0,63,0.0,0.0,,418.0,113.61831648251471,,71,0,0,0,0,0,0,0,0,0,,2,,3,124104,2,1,0,0,2,,442.0,600.0,12,1.0,2.0,4.0,1.0,1.0,1,1,84.72860872539246,336.0,20840.1230880177,0,4,2,3,90.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020057463107803552,20840.1230880177,5,3,5,5_0,5_0,5_0_0 +24084,0,90.0,0.0,1,120,230.0,0.0,0.0,0,78,1898.4291318658827,0.0,392.1961249755741,2120.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124105,1,2,2,0,1,,194.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1805.38920827064,230.0,12495.854175185541,0,5,0,1,70.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16965626921366678,12495.854175185541,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +24085,1,53.0,75.0,2,112,0.0,0.0,1600.0,85,62,0.0,0.0,1008.5092646635901,1600.0,0.0,1914.7714361034893,70,0,0,0,0,0,0,0,0,2,20.0,1,,2,124106,2,1,2,0,1,,460.0,,42,2.0,3.0,8.0,5.0,2.8,4,4,2323.00349882446,0.0,40595.31551151901,6,1,1,2,120.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03941341457356075,14498.326968399648,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +24086,1,32.0,283.0,2,112,0.0,0.0,0.0,85,63,0.0,0.0,0.0,4794.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,124107,2,1,2,0,1,,391.0,700.0,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,962.609632407171,0.0,39363.66786265019,6,1,2,3,150.0,6,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.12178743141333985,14579.136245425998,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +24087,2,49.0,0.0,6,111,600.0,,,46,38,0.0,0.0,,600.0,0.0,,12,0,0,0,0,0,0,0,0,2,20.0,1,,4,124108,2,2,0,0,2,,240.0,1109.0,43,2.0,1.0,4.0,3.0,2.0,3,3,154.5172814307315,600.0,94645.30282791176,4,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0063394588222824575,47322.65141395588,10,5,10,10_1,10_3,10_0_0 +24088,2,65.0,0.0,8,120,0.0,0.0,0.0,77,75,0.0,0.0,0.0,3130.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,124109,2,1,2,0,1,,170.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,303.585770708923,0.0,31408.61418258363,5,5,0,1,100.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0996541898284584,20939.07612172242,5,3,5,5_1,5_0,5_0_0 +24089,2,54.0,0.0,2,111,0.0,,,0,48,0.0,0.0,,567.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,2,124110,2,2,0,0,2,,312.0,510.0,12,1.0,0.0,4.0,1.0,1.0,1,1,99.34480041553256,0.0,9408.58525327343,0,1,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06026410823058968,9408.58525327343,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +24090,2,83.0,0.0,2,112,0.0,0.0,0.0,77,78,2382.528560491683,0.0,0.0,2770.0,133.01656563806603,0.0,71,2,2,1,2,2,2,2,1,0,,1,,2,124111,2,3,4,0,2,,260.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,884.543922553052,0.0,21284.85585380113,5,5,0,1,80.0,10,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.13013947658495995,14189.903902534088,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +24091,2,58.0,0.0,1,111,480.0,980.0,0.0,0,52,0.0,0.0,818.4962608185893,1460.0,0.0,1860.5339669809932,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,124112,2,1,0,0,1,,360.0,351.0,12,1.0,2.0,4.0,1.0,1.0,1,1,858.87236967421,480.0,23333.019245607953,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06257227085066672,23333.019245607953,6,3,6,6_0,6_4,6_1_0 +24093,2,91.0,0.0,6,111,700.0,,,0,75,0.0,0.0,,867.0,231.393400641219,,33,0,0,0,0,0,0,0,0,0,,1,,4,124114,2,1,0,0,2,,426.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,231.40150787796225,700.0,63544.53977821994,0,5,0,1,163.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013643973235559832,63544.53977821994,10,5,10,10_1,10_2,10_0_0 +24094,2,49.0,0.0,7,112,0.0,0.0,0.0,85,46,0.0,0.0,0.0,689.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,124115,2,3,2,0,1,,704.0,,42,1.0,2.0,6.0,5.0,2.8,4,2,1127.68248427796,0.0,55554.206383435165,6,1,1,2,120.0,9,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012402301191101923,19840.78799408399,5,3,5,5_1,5_1,5_0_0 +24095,2,91.0,0.0,1,111,750.0,,,77,74,0.0,0.0,,890.0,193.98249155551292,,70,0,0,0,0,0,0,0,0,0,,1,,1,124116,2,1,0,0,2,,600.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,98.5552339083418,750.0,35002.556361163544,5,5,0,1,102.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02542671428957353,23335.03757410903,6,3,6,6_1,6_2,6_1_0 +24096,2,55.0,0.0,7,111,450.0,,,56,69,0.0,0.0,,726.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,124117,2,1,0,0,2,,533.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,82.58317926381218,450.0,33207.71701261303,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021862388182971117,12772.198851005012,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +24097,2,58.0,0.0,7,111,408.0,0.0,0.0,0,46,0.0,0.0,695.7218216958009,408.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,25.0,2,,5,124118,2,1,0,0,1,,0.0,568.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1222.49166284879,408.0,45881.975488859156,0,1,2,3,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008892380845699824,45881.975488859156,10,5,10,10_0,10_4,10_0_0 +24098,2,58.0,0.0,1,111,1700.0,0.0,0.0,54,21,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,124119,2,2,1,0,1,,189.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1377.35375684667,1700.0,48918.51479058268,1,1,0,1,150.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.034751668305499486,32612.343193721787,8,4,8,8_1,8_3,8_1_0 +24099,2,77.0,0.0,2,111,340.0,1380.0,0.0,0,77,0.0,0.0,579.7681847465008,1720.0,0.0,2619.935586156909,41,0,0,0,0,0,0,0,0,0,,1,,2,124120,2,1,2,0,1,,190.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,415.092714087674,340.0,35412.08989925518,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04857098253430608,35412.08989925518,9,5,9,9_1,9_3,9_0_1 +24100,2,26.0,0.0,1,111,565.0,1700.0,0.0,43,42,0.0,0.0,963.4383070052146,2265.0,0.0,3227.4568814976415,20,2,2,1,2,1,1,2,2,2,10.0,1,,1,124121,2,1,2,0,1,,430.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,453.746115214706,565.0,34230.74661610634,1,1,1,2,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06616858304032043,22820.497744070894,6,3,6,6_1,6_3,6_1_0 +24101,2,67.0,0.0,2,111,312.0,0.0,0.0,0,75,0.0,0.0,532.0225695320831,1812.0,2078.3838380947814,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,124122,2,1,2,0,1,,95.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1526.37119088406,312.0,19667.854504698742,0,5,0,1,42.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09213002870074642,19667.854504698742,5,3,5,5_1,5_2,5_0_1 +24102,2,37.0,0.0,8,111,420.0,300.0,0.0,0,37,0.0,0.0,716.1842282162656,720.0,0.0,569.5512143819367,20,0,0,0,0,0,0,0,0,2,35.0,2,2000.0,6,124123,2,1,0,0,1,,0.0,543.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1458.59831446971,420.0,40889.431872981295,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01760846182056537,40889.431872981295,9,5,9,9_0,9_4,9_0_0 +24103,2,37.0,0.0,5,111,1200.0,,,0,53,0.0,0.0,,1290.0,124.70303028568689,,31,0,0,0,0,0,0,0,0,2,5.0,1,,3,124124,2,1,0,0,2,,250.0,,22,4.0,2.0,5.0,4.0,2.5,4,4,113.82527259205268,1200.0,99367.70910824157,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012982084538094752,39747.08364329663,9,5,9,9_1,9_3,9_0_0 +24104,2,70.0,0.0,2,111,220.0,0.0,0.0,0,77,0.0,0.0,375.14411954185346,220.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,124125,2,2,0,1,1,600.0,280.0,368.0,11,0.0,1.0,3.0,1.0,1.0,1,1,160.773220837411,220.0,19436.18111557419,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01131909600408664,19436.18111557419,5,3,5,5_0,5_3,5_0_1 +24105,2,48.0,0.0,2,111,340.0,59.0,0.0,52,53,0.0,0.0,579.7681847465008,399.0,0.0,112.01173882844755,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,124126,1,2,0,1,2,412.0,0.0,317.0,43,2.0,0.0,3.0,2.0,1.5,2,2,298.592585821944,340.0,36624.65151442985,1,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010894301611110126,24416.43434295323,7,4,7,7_0,7_3,7_0_1 +24106,1,58.0,184.0,1,111,540.0,0.0,0.0,77,78,0.0,0.0,920.8082934209131,640.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124127,2,3,4,0,2,,240.0,528.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1016.42730160351,540.0,14201.046601176546,7,7,2,3,92.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04506710089571683,9467.364400784363,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +24107,2,84.0,0.0,2,120,380.0,,,0,77,0.0,0.0,,468.0,121.93185183489385,,70,2,2,2,2,1,2,2,2,0,,1,,2,124128,2,2,0,0,2,,120.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,104.65654385160293,380.0,10098.343220338984,0,5,0,1,83.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04634423586013647,10098.343220338984,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +24108,2,62.0,0.0,7,211,292.0,,,0,77,0.0,0.0,,380.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,5,124129,2,1,0,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,90.91348978979327,292.0,5018.480249642052,0,5,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07572013460192534,5018.480249642052,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24109,1,28.0,546.0,7,111,540.0,0.0,0.0,81,56,0.0,0.0,920.8082934209131,540.0,0.0,0.0,71,2,1,1,1,2,2,2,2,0,,2,,5,124130,1,2,0,1,2,,1038.0,800.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,307.215150034911,540.0,21630.90182932382,4,4,3,4,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.02496428508902721,8011.445121971786,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +24110,2,32.0,0.0,1,111,505.0,256.0,0.0,42,90,0.0,0.0,861.1262744028909,761.0,0.0,486.017036272586,12,1,2,2,2,1,2,2,2,2,30.0,2,,1,124131,1,3,0,1,2,347.0,0.0,797.0,43,2.0,0.0,2.0,2.0,1.5,2,2,965.655066012387,505.0,57630.08317759963,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.013204908930199061,38420.05545173308,9,5,9,9_0,9_4,9_1_0 +24111,2,47.0,0.0,5,112,1850.0,0.0,0.0,42,45,0.0,112.56781854586903,3154.621005238313,2185.0,346.39730634913025,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,3,124132,2,1,1,0,1,,200.0,,43,2.0,0.0,8.0,4.0,2.3,3,3,748.283495221948,1850.0,54756.6159690694,1,1,0,1,195.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03990385383264463,23807.224334378,6,3,6,6_1,6_0,6_0_0 +24112,1,65.0,291.0,2,111,319.0,289.0,0.0,85,78,0.0,0.0,543.9589733356875,608.0,0.0,548.667669854599,71,0,0,0,0,0,0,0,0,0,,2,,2,124133,2,1,0,1,1,1116.0,0.0,379.0,41,1.0,3.0,4.0,4.0,2.5,4,4,219.397303320245,319.0,32671.456979122602,6,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018609515957262582,13068.582791649042,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +24113,2,47.0,0.0,6,111,1100.0,,,52,52,0.0,0.0,,1175.0,103.91919190473907,,41,0,0,0,0,0,0,0,0,2,90.0,2,,4,124134,2,1,0,0,2,,500.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,94.30146734743114,1100.0,85064.5523847921,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013813039239715877,42532.27619239605,9,5,9,9_0,9_2,9_0_0 +24114,2,52.0,0.0,6,112,2176.0,0.0,0.0,38,37,0.0,397.2981831030672,3710.516382377605,2476.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,1,,4,124135,2,1,2,0,1,,432.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,1457.78266035889,2176.0,77275.57202499453,1,1,1,2,100.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03204117336328673,38637.786012497265,9,5,9,9_1,9_1,9_0_0 +24115,2,85.0,0.0,2,111,0.0,0.0,452.0,78,77,0.0,0.0,284.9038672674642,452.0,0.0,540.9229306992357,70,0,0,0,0,0,0,0,0,0,,2,,2,124136,1,1,0,1,2,850.0,242.0,460.0,41,0.0,14.0,3.0,2.0,1.5,2,2,467.454186611342,0.0,38545.65873666192,5,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011726352975000253,25697.10582444128,7,4,7,7_0,7_3,7_0_1 +24116,2,54.0,0.0,6,111,1200.0,0.0,0.0,68,63,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,1,15.0,1,,4,124137,2,1,2,0,1,,230.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1834.11716425006,1200.0,45209.85986472207,1,1,0,1,110.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02853359872956842,30139.906576481382,8,4,8,8_1,8_2,8_0_0 +24117,2,69.0,0.0,2,111,378.0,1189.0,0.0,77,78,0.0,0.0,644.5658053946391,1567.0,0.0,2257.321313000409,50,0,0,0,0,0,0,0,0,0,,2,,2,124138,2,1,0,0,1,,184.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,382.202695266077,378.0,23237.105751210416,5,5,0,1,67.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06743524846756681,15491.403834140277,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +24118,2,44.0,0.0,1,111,517.0,1800.0,0.0,85,68,0.0,0.0,881.5886809233556,2317.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,0,,1,,1,124139,2,1,1,0,1,,700.0,,42,1.0,0.0,6.0,7.0,3.3999999999999995,4,3,1527.01517592704,517.0,25310.18735934962,6,1,1,2,122.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09154416627200893,7444.17275274989,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +24119,1,84.0,30.0,2,120,560.0,0.0,0.0,0,77,0.0,0.0,954.9123042883542,2233.0,2318.0907740883795,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,124140,1,3,0,0,1,,200.0,434.0,11,0.0,6.0,4.0,1.0,1.0,1,1,4118.2632232596,560.0,19377.754454651607,0,5,2,3,70.0,0,1,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.1152352304404379,19377.754454651607,5,3,5,5_0,5_1,5_0_1 +24120,2,54.0,0.0,7,111,750.0,0.0,0.0,0,34,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,,5,124141,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1044.92238372095,750.0,60862.531721139494,0,1,1,2,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012322852480674922,60862.531721139494,10,5,10,10_0,10_4,10_0_0 +24121,2,38.0,0.0,9,300,1690.0,0.0,0.0,63,64,0.0,0.0,2881.7889182987833,1690.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,2.0,1,2008.0,6,124142,2,1,1,0,1,,370.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,753.095875437469,1690.0,52258.60498924851,1,1,1,2,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03233917170861515,24885.049994880243,7,4,7,7_1,7_0,7_0_0 +24122,1,57.0,434.0,2,111,430.0,300.0,0.0,0,77,0.0,0.0,733.2362336499863,730.0,0.0,569.5512143819367,70,2,2,2,1,1,2,2,2,0,,1,,2,124143,2,3,3,0,1,,300.0,529.0,31,0.0,3.0,4.0,3.0,2.0,3,2,319.756832204994,430.0,8635.311645483425,0,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,1,0,1,0.08453661314954579,4317.655822741713,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +24123,2,68.0,0.0,7,111,1600.0,0.0,0.0,0,75,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,5,124144,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,801.992576762291,1600.0,19162.757307557677,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08349529111705493,19162.757307557677,5,3,5,5_0,5_4,5_0_0 +24124,2,47.0,0.0,5,111,300.0,0.0,0.0,0,52,0.0,801.2180025911855,511.56016301161833,905.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,90.0,2,,3,124145,1,1,0,1,1,605.0,0.0,486.0,32,3.0,0.0,3.0,3.0,2.0,3,3,213.719263849683,300.0,46480.92290628101,0,1,2,3,81.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019470353500182037,23240.461453140506,6,3,6,6_0,6_4,6_0_0 +24125,2,53.0,0.0,2,111,445.0,1042.0,0.0,0,31,0.0,0.0,758.8142418005672,1487.0,0.0,1978.24121795326,10,0,0,0,0,0,0,0,0,0,,1,,2,124146,2,2,2,0,1,,192.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1523.71768220773,445.0,87961.1074298716,0,1,1,2,78.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016905198711663953,87961.1074298716,10,5,10,10_1,10_2,10_0_1 +24126,2,39.0,0.0,2,111,1000.0,1200.0,0.0,43,52,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,124147,2,1,0,0,1,,0.0,940.0,43,2.0,0.0,4.0,5.0,2.8,4,2,2004.34157866361,1000.0,68270.66024504909,1,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03222467736657844,24382.378658946105,7,4,7,7_0,7_3,7_0_1 +24127,2,59.0,0.0,1,112,500.0,0.0,0.0,85,63,0.0,397.2981831030672,852.6002716860306,940.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,124148,2,2,1,0,1,,400.0,520.0,42,3.0,1.0,6.0,4.0,2.5,4,4,873.228691360725,500.0,30639.55398128197,6,1,2,3,100.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030679297765700376,12255.821592512788,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +24128,2,60.0,0.0,1,111,410.0,90.0,0.0,52,34,2636.7071275915036,0.0,699.1322227825451,3000.0,0.0,170.865364314581,12,0,0,0,0,0,0,0,0,1,30.0,1,,1,124149,1,1,1,0,2,,230.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,232.972491385309,410.0,58764.5359900975,1,1,0,1,100.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051051198643098865,39176.35732673167,9,5,9,9_1,9_4,9_1_0 +24129,1,49.0,358.0,7,111,210.0,,,0,52,0.0,0.0,,336.0,174.58424239996165,,60,0,0,0,0,0,0,0,0,0,,2,,5,124150,2,2,0,0,2,,219.0,424.0,32,1.0,0.0,3.0,2.0,1.3,1,1,85.34939104260977,210.0,9382.41904408957,0,4,2,3,46.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035811659916390355,7217.245418530439,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24130,1,37.0,310.0,5,111,900.0,,,0,85,0.0,0.0,,947.0,65.12269359363648,,71,0,0,0,0,0,0,0,0,0,,2,,3,124151,2,2,0,0,2,,700.0,423.0,31,0.0,0.0,4.0,6.0,2.5,1,1,63.266633103605685,900.0,15910.251875757123,0,6,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059521370710854005,6364.1007503028495,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24131,2,74.0,0.0,5,111,1272.0,0.0,0.0,77,74,0.0,476.7578197236806,2169.0150911692617,1727.0,131.6309764126695,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124152,2,1,2,0,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2261.22226119287,1272.0,46396.10479475747,5,5,0,1,127.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03722295239308845,30930.736529838312,8,4,8,8_1,8_2,8_0_0 +24132,2,89.0,0.0,1,111,1447.0,140.0,0.0,0,77,0.0,0.0,2467.4251862593724,1587.0,0.0,265.7905667115705,71,0,0,0,0,0,0,0,0,0,,1,,1,124153,2,2,2,0,1,,115.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1012.65227841154,1447.0,34253.16571150101,0,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046331484025931687,34253.16571150101,9,5,9,9_1,9_4,9_1_0 +24133,2,36.0,0.0,1,111,300.0,0.0,0.0,0,55,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,1,124154,1,2,0,1,2,,300.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,379.106232403536,300.0,22786.466573726073,0,1,0,1,39.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.013165709524526057,22786.466573726073,6,3,6,6_0,6_4,6_1_0 +24134,2,62.0,0.0,5,111,425.0,1304.0,0.0,43,33,0.0,0.0,724.710230933126,1729.0,0.0,2475.6492785134847,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,124155,2,1,2,0,2,,312.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,970.597396880893,425.0,79354.68500524516,1,1,0,1,95.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021788253584343723,52903.12333683011,10,5,10,10_1,10_3,10_0_0 +24135,1,71.0,105.0,1,111,900.0,0.0,0.0,78,78,0.0,0.0,1534.680489034855,1157.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124156,2,3,4,0,1,,303.0,325.0,41,0.0,8.0,4.0,2.0,1.5,2,2,1544.37213258182,900.0,24228.102593180072,5,5,2,3,64.0,5,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04775446180938998,16152.068395453382,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +24136,2,59.0,0.0,2,111,0.0,0.0,1000.0,0,63,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,60,0,0,0,0,0,0,0,0,1,8.0,1,,2,124157,1,2,3,0,2,,443.0,680.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1105.13577395231,0.0,23430.119072941652,0,1,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04268010746709577,23430.119072941652,6,3,6,6_1,6_3,6_0_1 +24137,0,81.0,0.0,2,111,760.0,,,0,86,0.0,0.0,,904.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,1,,2,124158,2,2,0,0,2,,600.0,,21,1.0,6.0,4.0,2.0,1.5,2,2,99.55545223129934,760.0,30702.949611859436,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029443425189702867,20468.633074572957,5,3,5,5_1,5_2,5_0_1 +24138,2,63.0,0.0,1,111,240.0,1225.0,0.0,74,34,0.0,0.0,409.2481304092947,1465.0,0.0,2325.6674587262414,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,124159,2,2,4,0,1,,414.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,602.852709504742,240.0,98245.56427672177,5,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01491161469512895,65497.042851147846,10,5,10,10_1,10_4,10_1_0 +24139,2,49.0,0.0,9,400,1400.0,,,81,52,0.0,0.0,,1520.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,1,10.0,1,2013.0,6,124160,2,2,0,0,2,,750.0,,43,2.0,0.0,3.0,7.0,3.1999999999999993,3,2,4.386640891614599,1400.0,42833.70981445783,4,1,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0354860694201871,13385.534317018073,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +24140,1,52.0,130.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,334.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124161,2,1,0,1,1,,0.0,628.0,21,0.0,0.0,3.0,2.0,1.5,2,2,454.665553086312,0.0,32161.437298191096,0,7,2,3,78.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01038510800693555,21440.958198794066,6,3,6,6_0,6_3,6_0_1 +24141,2,68.0,0.0,8,112,1000.0,,,75,75,0.0,0.0,,1110.0,152.4148147936173,,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,124162,2,1,0,0,1,,300.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,92.45114374001963,1000.0,37192.088905969315,5,5,1,2,90.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029845056641113952,24794.725937312876,7,4,7,7_1,7_2,7_0_0 +24142,2,70.0,0.0,2,120,571.0,0.0,0.0,0,77,981.909734315076,0.0,973.6695102654469,1562.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,124163,2,1,2,0,1,,285.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,273.100820922685,571.0,25383.904046236534,0,5,0,1,87.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06153505769462539,25383.904046236534,7,4,7,7_1,7_0,7_0_1 +24143,1,49.0,434.0,5,111,650.0,1000.0,0.0,85,85,0.0,0.0,1108.3803531918397,1650.0,0.0,1898.504047939789,71,1,2,1,1,1,2,1,2,0,,1,,3,124164,2,2,3,0,1,,550.0,517.0,41,0.0,5.0,5.0,4.0,2.1,2,2,445.924613808118,650.0,11344.363160344637,6,7,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,1,1,0,1,0.14544668366821514,5402.0776954022085,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +24144,2,62.0,0.0,2,111,725.0,880.0,0.0,74,34,0.0,0.0,1236.2703939447445,1605.0,0.0,1670.6835621870143,10,0,0,0,0,0,0,0,0,2,45.0,1,,2,124165,2,1,2,0,2,,420.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,348.97187152161,725.0,236029.03068277525,5,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006800010978976276,157352.68712185018,10,5,10,10_1,10_3,10_0_1 +24145,2,32.0,0.0,9,111,1876.0,0.0,0.0,54,22,0.0,715.1367295855209,3198.9562193659867,2476.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,124166,2,1,1,0,1,,320.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,243.031609088165,1876.0,108580.05225161699,1,1,1,2,150.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022803451910874607,72386.70150107799,10,5,10,10_1,10_3,10_0_0 +24146,1,86.0,198.0,2,111,75.0,144.0,0.0,0,78,0.0,0.0,127.89004075290458,219.0,0.0,273.3845829033296,71,0,0,0,0,0,0,0,0,0,,2,,2,124167,2,2,0,1,1,24.0,0.0,220.0,11,0.0,0.0,2.0,1.0,1.0,1,1,311.751982993679,75.0,9544.322829265091,0,5,2,3,41.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02294557758759957,9544.322829265091,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24147,2,76.0,0.0,2,111,240.0,610.0,0.0,86,77,0.0,0.0,409.2481304092947,850.0,0.0,1158.0874692432712,71,0,0,0,0,0,0,0,0,0,,2,,2,124168,2,1,0,0,2,,390.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,505.517199828703,240.0,14546.961560414707,6,5,0,1,78.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.058431446076892504,9697.974373609804,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +24148,2,30.0,0.0,9,400,1300.0,0.0,0.0,22,46,0.0,893.9209119819011,2216.7607063836795,2095.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,2013.0,6,124169,2,2,3,0,1,,434.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,2154.20655617173,1300.0,27550.985627989394,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0760408367340464,10204.068751107185,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +24149,2,78.0,0.0,1,112,312.0,0.0,0.0,0,71,2202.177792964424,927.0290939071567,532.0225695320831,3220.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124170,2,1,1,0,1,,204.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2006.64004423371,312.0,21289.48842262106,0,5,1,2,140.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1512483501754134,21289.48842262106,6,3,6,6_1,6_0,6_1_0 +24150,2,82.0,0.0,1,111,449.0,2618.0,0.0,75,74,0.0,0.0,765.6350439740555,3067.0,0.0,4970.283597506367,10,0,0,0,0,0,0,0,0,0,,2,,1,124171,2,3,0,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,731.137693102196,449.0,178199.51948053364,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017211045287554978,118799.67965368909,10,5,10,10_0,10_4,10_1_0 +24151,2,30.0,0.0,6,112,1550.0,0.0,0.0,53,46,0.0,0.0,2643.0608422266946,1550.0,0.0,0.0,31,2,2,2,2,1,1,2,2,4,90.0,2,,4,124172,1,3,0,0,1,,0.0,703.0,43,2.0,0.0,2.0,2.0,1.5,2,2,920.62257904806,1550.0,46497.73707449327,1,1,2,3,55.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03333495558110215,30998.491382995515,8,4,8,8_0,8_0,8_0_0 +24152,2,70.0,0.0,2,111,312.0,132.0,0.0,56,78,0.0,0.0,532.0225695320831,444.0,0.0,250.60253432805214,71,0,0,0,0,0,0,0,0,0,,2,,2,124173,2,1,0,1,1,528.0,0.0,339.0,42,1.0,2.0,3.0,2.0,1.5,2,2,471.931608844269,312.0,24020.422414399163,1,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018484271106483204,16013.614942932776,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +24153,2,67.0,0.0,2,111,351.0,120.0,0.0,77,78,0.0,0.0,598.5253907235934,471.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,124174,1,1,0,1,1,888.0,0.0,344.0,41,0.0,3.0,4.0,2.0,1.5,2,2,339.591049188996,351.0,30313.078727235436,5,5,2,3,100.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015537847680803862,20208.71915149029,5,3,5,5_0,5_2,5_0_1 +24154,0,47.0,0.0,6,211,540.0,,,22,22,0.0,0.0,,540.0,0.0,,71,0,0,0,0,0,0,0,0,0,,7,,4,124175,2,2,0,0,2,,300.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,34.73918777842146,540.0,23497.0,1,1,5,0,16.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022981657232838234,15664.666666666666,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +24155,1,32.0,420.0,2,111,644.0,0.0,0.0,0,37,0.0,0.0,1098.1491499316073,644.0,0.0,0.0,10,2,2,2,1,2,2,2,2,0,,2,,2,124176,2,3,0,1,1,,378.0,676.0,32,1.0,0.0,3.0,2.0,1.3,1,1,280.11674634724,644.0,20598.53831169012,0,4,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03126435430782561,15845.029470530862,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +24156,2,52.0,0.0,5,120,1400.0,0.0,0.0,78,13,0.0,0.0,2387.2807607208856,1520.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124177,2,1,1,0,1,,350.0,,42,1.0,0.0,5.0,5.0,2.8,4,2,1581.8019726781,1400.0,29600.23311991774,7,1,0,1,110.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05135094692809042,10571.51182854205,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +24157,2,58.0,0.0,1,111,1000.0,0.0,0.0,56,56,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,124178,2,1,0,0,1,,330.0,440.0,42,1.0,5.0,2.0,2.0,1.5,2,2,2277.59211982284,1000.0,22043.477246411316,5,1,2,3,50.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045364893606465846,14695.651497607543,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +24158,1,65.0,80.0,2,111,450.0,2022.0,0.0,77,78,0.0,0.0,767.3402445174275,2472.0,0.0,3838.7751849342535,71,0,0,0,0,0,0,0,0,0,,1,,2,124179,1,3,3,0,1,,372.0,330.0,41,0.0,2.0,5.0,2.0,1.5,2,2,503.881317364063,450.0,12858.635729585161,6,5,2,3,77.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.19224434473343233,8572.42381972344,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +24159,2,54.0,0.0,1,111,250.0,1100.0,0.0,0,67,0.0,0.0,426.3001358430153,1350.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,124180,2,2,2,0,2,,200.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,1209.26410210038,250.0,37054.07779733646,0,1,0,1,115.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036433237048394206,37054.07779733646,9,5,9,9_1,9_3,9_1_0 +24160,2,37.0,0.0,1,120,840.0,0.0,0.0,42,21,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,124181,2,1,1,0,1,,340.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,887.518007182482,840.0,69061.62485465081,1,1,1,2,180.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012163050055191858,38367.56936369489,9,5,9,9_1,9_0,9_1_0 +24161,1,26.0,357.0,7,111,420.0,,,0,43,0.0,0.0,,570.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,2,,5,124182,2,2,0,0,2,,300.0,500.0,32,1.0,0.0,2.0,2.0,1.3,1,1,223.01815865546902,420.0,8548.191986868482,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06668076721669561,6575.5322975911395,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24162,2,78.0,0.0,5,111,900.0,0.0,0.0,77,78,0.0,529.7309108040896,1534.680489034855,1390.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124183,2,1,1,0,1,,180.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,2195.83240652952,900.0,37499.035185222194,5,5,0,1,120.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037067620357010625,24999.35679014813,7,4,7,7_1,7_2,7_0_0 +24163,2,52.0,0.0,7,111,600.0,1500.0,0.0,46,46,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,3,70.0,1,,5,124184,2,1,2,0,1,,450.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,581.216943592294,600.0,63050.434758285315,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03330666962171968,42033.62317219021,9,5,9,9_1,9_4,9_0_0 +24164,2,47.0,0.0,6,112,400.0,500.0,0.0,0,42,0.0,0.0,682.0802173488245,900.0,0.0,949.2520239698945,20,1,2,2,2,1,2,2,2,1,5.0,2,,4,124185,2,1,0,1,1,,0.0,445.0,12,1.0,0.0,3.0,1.0,1.0,1,1,962.482333483268,400.0,15245.525047729992,0,1,2,3,66.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.059033716266400874,15245.525047729992,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +24165,2,60.0,0.0,6,111,800.0,0.0,0.0,0,78,0.0,0.0,1364.160434697649,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,124186,2,1,2,0,1,,367.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,1341.13345337017,800.0,23493.52493676472,0,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03405193567816169,15662.349957843146,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +24166,1,46.0,157.0,1,111,600.0,1100.0,0.0,0,55,0.0,0.0,1023.1203260232367,1700.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,124187,2,1,3,0,1,,240.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,866.023712582818,600.0,14877.760132444386,0,1,1,2,90.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11426451192022904,11444.430871111066,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +24167,2,26.0,0.0,9,111,392.0,,,0,52,0.0,0.0,,436.0,60.965925917446924,,31,2,2,1,1,1,2,2,2,2,10.0,2,2011.0,6,124188,1,2,0,0,1,,200.0,395.0,12,1.0,0.0,2.0,1.0,1.0,1,1,194.64962587802543,392.0,18603.50588235294,0,1,2,3,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02343644271984155,18603.50588235294,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +24168,2,28.0,0.0,1,111,600.0,0.0,0.0,0,46,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,12,2,1,2,2,1,2,2,2,1,5.0,2,,1,124189,2,1,0,1,1,469.0,0.0,445.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1456.78171564577,600.0,27122.947674694253,0,1,3,4,48.0,8,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0.022121489419079654,27122.947674694253,7,4,7,7_0,7_3,7_1_0 +24169,2,27.0,0.0,7,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1311.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,65.0,2,,5,124190,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1047.34999960667,0.0,30239.540946449943,0,1,1,2,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04335383272919388,30239.540946449943,8,4,8,8_0,8_4,8_0_0 +24170,0,56.0,0.0,2,111,1200.0,,,0,22,0.0,0.0,,1480.0,387.96498311102584,,60,0,0,0,0,0,0,0,0,1,1.0,1,,2,124191,2,3,0,0,2,,900.0,,22,2.0,2.0,7.0,2.0,1.5,2,2,128.34169506014834,1200.0,57557.63115395845,0,1,5,0,114.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02571335842577001,38371.754102638966,9,5,9,9_1,9_2,9_0_1 +24171,2,61.0,0.0,9,111,230.0,,,78,63,0.0,0.0,,356.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,124192,2,2,0,0,2,,50.0,,42,1.0,4.0,2.0,2.0,1.5,2,2,253.29321598199084,230.0,9400.577983059286,7,4,0,1,43.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03787001189092257,6267.05198870619,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24172,2,44.0,0.0,9,111,1500.0,0.0,0.0,62,43,3164.0485531098047,0.0,2557.8008150580918,4500.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2004.0,6,124193,2,1,1,0,1,,600.0,,43,2.0,0.0,8.0,7.0,3.8,6,5,2274.66179914114,1500.0,169265.39812812692,1,1,1,2,200.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02658546903126465,44543.525823191296,10,5,10,10_1,10_3,10_0_0 +24173,2,78.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124194,2,1,0,1,1,840.0,0.0,323.0,11,0.0,3.0,3.0,1.0,1.0,1,1,705.759674523211,300.0,20611.52828379493,0,5,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014554961469590014,20611.52828379493,5,3,5,5_0,5_4,5_0_1 +24174,2,55.0,0.0,6,111,500.0,,,0,38,0.0,0.0,,500.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,4,124195,2,3,0,0,2,,150.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,154.43700735076604,500.0,36557.06488744232,0,4,1,2,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013677246834216018,36557.06488744232,9,5,9,9_1,9_2,9_0_0 +24175,2,68.0,0.0,6,111,1200.0,0.0,0.0,37,77,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124196,1,1,2,0,1,,175.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,592.982896323633,1200.0,58219.92915341171,4,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020611498802033144,29109.964576705854,8,4,8,8_1,8_4,8_0_0 +24177,1,53.0,117.0,2,111,118.0,0.0,0.0,0,67,0.0,0.0,201.21366411790322,180.0,85.9065319745843,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,124198,2,2,0,1,1,485.0,84.0,261.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1238.65540231587,118.0,16499.189690737556,0,1,2,3,65.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.010909626677063407,16499.189690737556,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +24178,1,89.0,86.0,5,111,228.0,228.0,0.0,0,78,0.0,0.0,388.7857238888299,456.0,0.0,432.8589229302719,71,0,0,0,0,0,0,0,0,0,,2,,3,124199,2,1,0,1,1,,0.0,298.0,11,0.0,1.0,3.0,1.0,1.0,1,1,310.300645261259,228.0,15309.575076470901,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0297852812845747,15309.575076470901,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +24179,2,66.0,0.0,5,111,300.0,200.0,0.0,68,78,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,70,0,0,0,0,0,0,0,0,0,,2,,3,124200,2,3,0,1,1,,0.0,,42,2.0,0.0,4.0,7.0,3.8,6,3,225.089079163174,300.0,40154.82317670583,1,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01245180430255398,10567.058730712062,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +24180,1,28.0,363.0,2,111,350.0,500.0,0.0,56,85,0.0,0.0,596.8201901802214,850.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,2,,2,124201,1,1,0,1,1,,500.0,320.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,84.1348611041492,350.0,17299.692160904895,4,6,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04913382227233453,6407.29339292774,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24181,2,50.0,0.0,6,112,1800.0,0.0,0.0,0,63,0.0,0.0,3069.36097806971,1825.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,124202,2,1,1,0,1,,356.0,870.0,32,1.0,0.0,5.0,2.0,1.3,1,1,640.524358361311,1800.0,28756.39493433224,0,1,2,3,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06346414438136451,22120.303795640182,6,3,6,6_1,6_0,6_0_0 +24182,2,78.0,0.0,2,221,600.0,1200.0,0.0,77,74,0.0,222.4869825377176,1023.1203260232367,1968.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,0,,1,,2,124203,2,1,3,0,1,,440.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,595.874969493877,600.0,17126.882208781033,5,5,0,1,80.0,1,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11490707859198081,11417.92147252069,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +24184,2,81.0,0.0,5,111,1500.0,0.0,0.0,74,74,0.0,66.2163638505112,2557.8008150580918,1550.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,124205,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1845.56281098485,1500.0,66802.21515664058,5,5,0,1,120.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02320282338490567,44534.81010442705,10,5,10,10_1,10_3,10_0_0 +24185,1,25.0,99.0,2,111,360.0,700.0,0.0,0,52,0.0,0.0,613.872195613942,1060.0,0.0,1328.9528335578523,50,1,2,2,2,2,2,2,1,3,15.0,2,,2,124206,1,2,0,0,1,,0.0,191.0,32,1.0,0.0,3.0,3.0,1.6,1,1,249.777154366533,360.0,18351.324174522888,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.057761499383875314,11469.577609076805,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +24186,2,35.0,0.0,1,120,1000.0,0.0,0.0,54,21,1160.1511361402618,0.0,1705.2005433720612,2220.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,124207,2,1,1,0,1,,550.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,2219.37506018844,1000.0,38333.659286121096,1,1,1,2,250.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05791255104110978,18254.123469581475,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +24187,2,82.0,0.0,5,111,712.0,379.0,0.0,0,75,0.0,0.0,1214.1027868809076,2299.0,0.0,719.53303416918,33,0,0,0,0,0,0,0,0,0,,2,,3,124208,2,1,0,1,1,710.0,0.0,279.0,11,0.0,3.0,3.0,1.0,1.0,1,1,390.687994417354,712.0,17789.13920583514,0,5,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.12923615771390945,17789.13920583514,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +24188,1,26.0,357.0,8,111,0.0,,,0,54,0.0,0.0,,902.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,124209,2,2,0,0,2,,279.0,416.0,32,1.0,0.0,3.0,2.0,1.3,1,1,96.21049489967595,0.0,9613.126177244554,0,4,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09383003857113041,7394.712444034272,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +24190,0,79.0,0.0,2,400,426.0,0.0,0.0,0,71,2352.997440662658,0.0,726.415431476498,2777.0,166.2707070475825,0.0,60,2,2,2,2,1,2,2,2,0,,1,,2,124211,2,2,2,0,1,,114.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1484.71533138609,426.0,8373.21706522067,0,5,0,1,134.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.3316526943430929,8373.21706522067,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +24191,2,76.0,0.0,5,400,760.0,0.0,0.0,75,77,0.0,238.3789098618403,1295.9524129627664,1040.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,124212,2,1,2,0,1,,178.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1326.70145553218,760.0,43361.23564336648,5,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023984556357058102,28907.490428910987,8,4,8,8_1,8_0,8_0_0 +24192,2,82.0,0.0,2,400,552.0,0.0,0.0,72,86,1265.6194212439218,0.0,941.2706999413778,1907.0,214.76632993646075,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,124213,2,2,1,0,1,,316.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1616.71861241667,552.0,20618.8676253022,5,6,0,1,99.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0924881052953581,13745.911750201465,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +24193,2,66.0,0.0,7,120,1000.0,,,72,77,0.0,0.0,,1150.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,1,,5,124214,2,1,0,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,84.56165287287618,1000.0,38300.28172372636,5,5,0,1,89.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030025888798817763,25533.521149150907,7,4,7,7_1,7_1,7_0_0 +24194,1,20.0,380.0,6,111,0.0,,,67,85,0.0,0.0,,726.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,124215,2,2,0,0,2,,321.0,389.0,42,1.0,0.0,4.0,4.0,2.1,2,2,148.24817488992647,0.0,20722.844124700237,1,6,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03503380113421096,9868.021011762017,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +24195,2,76.0,0.0,2,112,900.0,1500.0,0.0,77,78,0.0,0.0,1534.680489034855,2400.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,,2,124216,2,2,2,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,628.350131544466,900.0,28949.80042964539,5,5,0,1,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08290212590005747,19299.866953096927,5,3,5,5_1,5_2,5_0_1 +24196,2,66.0,0.0,2,111,0.0,0.0,430.0,0,77,0.0,0.0,271.0368648783398,430.0,0.0,514.5948234528128,70,0,0,0,0,0,0,0,0,0,,2,,2,124217,2,1,0,1,1,,0.0,,21,0.0,1.0,2.0,2.0,1.5,2,2,1732.93825462349,0.0,21016.32001834203,0,5,0,1,48.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020460289890176623,14010.88001222802,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +24197,2,63.0,0.0,7,111,1500.0,0.0,0.0,22,46,0.0,662.163638505112,2557.8008150580918,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,124218,2,2,3,0,1,,600.0,,43,2.0,2.0,4.0,3.0,2.0,3,3,1433.25724018799,1500.0,35777.17720089793,1,1,0,1,140.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05590155949893678,17888.588600448966,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +24198,2,52.0,0.0,6,111,1200.0,,,22,52,0.0,0.0,,1280.0,110.84713803172167,,50,0,0,0,0,0,0,0,0,0,,2,,4,124219,2,1,0,0,2,,450.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,161.71911689996747,1200.0,61291.07673869523,1,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02088395355586714,24516.43069547809,7,4,7,7_0,7_2,7_0_0 +24199,2,65.0,0.0,1,111,1487.0,0.0,0.0,0,71,0.0,1032.9752760679746,2535.633207994255,2513.0,340.85494944754413,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124220,2,3,4,0,1,,268.0,167.0,21,1.0,1.0,3.0,2.0,1.5,2,2,1112.88681629095,1487.0,13533.369700391375,0,5,2,3,47.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.18568915618460685,9022.246466927583,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +24200,1,31.0,432.0,7,111,1436.0,0.0,0.0,0,37,0.0,0.0,2448.66798028228,1436.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,124221,2,1,0,1,1,476.0,0.0,477.0,22,4.0,0.0,4.0,7.0,3.8,6,6,774.162210191568,1436.0,60000.465326972735,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023933147721013716,15789.596138677036,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +24201,2,55.0,0.0,1,111,400.0,0.0,0.0,0,22,0.0,0.0,682.0802173488245,505.0,0.0,0.0,31,2,2,2,1,1,2,2,2,0,,2,,1,124222,2,3,0,1,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,766.396323882913,400.0,1064.8885903909718,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.4742280127300361,1064.8885903909718,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +24202,2,63.0,0.0,2,112,690.0,0.0,0.0,75,74,3796.8582637317654,0.0,1176.5883749267223,4290.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,124223,2,1,1,0,1,,460.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1619.68825747287,690.0,66644.2227381615,5,5,0,1,160.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0643716712978255,44429.481825441,10,5,10,10_1,10_0,10_0_1 +24203,2,59.0,0.0,6,120,2000.0,0.0,0.0,77,23,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,17.0,1,,4,124224,2,1,1,0,1,,600.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,973.233854619342,2000.0,109170.27497655785,5,1,0,1,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018320005151855303,54585.137488278924,10,5,10,10_1,10_0,10_0_0 +24204,1,76.0,20.0,5,211,600.0,,,0,78,0.0,0.0,,900.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,3,124225,2,1,0,0,2,,900.0,,21,0.0,3.0,5.0,3.0,2.0,3,2,51.54492009355126,600.0,32922.02499889489,0,5,1,2,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027337322052036917,16461.012499447446,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +24205,1,29.0,235.0,2,111,600.0,,,0,52,0.0,132.4327277010224,,994.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,0,,1,,2,124226,2,1,0,0,2,,486.0,,22,2.0,9.0,5.0,4.0,2.5,4,4,128.41625458971913,600.0,23039.922084982747,0,1,1,2,81.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04314250700734279,9215.968833993098,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +24206,2,54.0,0.0,7,221,1000.0,,,11,56,0.0,158.91927324122688,,1204.0,116.38949493330776,,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,124227,2,1,0,0,2,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,75.48794278008387,1000.0,19737.92093643668,1,1,0,1,90.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06099933239561148,13158.613957624453,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +24207,2,42.0,0.0,1,111,0.0,0.0,0.0,42,33,0.0,0.0,0.0,4377.0,0.0,0.0,12,1,2,2,2,1,2,2,2,3,80.0,1,,1,124228,2,1,1,0,1,,999.0,,43,2.0,0.0,8.0,5.0,2.8,4,3,347.13304923923,0.0,73724.86273285376,1,1,1,2,160.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.059369388259972886,26330.308118876343,7,4,7,7_1,7_4,7_1_0 +24208,2,47.0,0.0,2,111,1600.0,0.0,0.0,52,53,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,124229,1,2,0,0,2,,490.0,927.0,43,2.0,0.0,3.0,4.0,2.1,2,2,2048.27776608664,1600.0,76406.69428634863,1,1,2,3,125.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020940573531472197,36384.14013635649,9,5,9,9_0,9_3,9_0_1 +24209,2,57.0,0.0,5,111,1760.0,0.0,0.0,37,37,0.0,0.0,3001.1529563348276,1760.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,3,124230,2,2,2,0,1,,800.0,,43,2.0,5.0,7.0,7.0,3.8,6,4,188.540670448533,1760.0,119621.01439295366,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014713133883135452,31479.214313935176,8,4,8,8_1,8_4,8_0_0 +24210,2,56.0,0.0,1,120,1060.0,0.0,0.0,54,63,2109.365702073203,0.0,1807.5125759743848,3210.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,124231,2,1,2,0,1,,800.0,,43,3.0,0.0,6.0,5.0,3.0,5,5,838.022334250416,1060.0,79327.38438538482,1,1,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040465219228776265,26442.46146179494,7,4,7,7_1,7_0,7_1_0 +24211,2,63.0,0.0,9,120,291.0,0.0,0.0,77,78,0.0,0.0,496.2133581212698,483.0,266.03313127613205,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,124232,2,1,2,0,1,,260.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,744.302217104506,291.0,22256.432086510427,6,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02170159161731701,14837.621391006951,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +24212,2,67.0,0.0,2,111,1500.0,0.0,0.0,77,75,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,124233,1,1,1,0,2,,97.0,,41,0.0,3.0,6.0,4.0,2.5,4,4,803.596352207472,1500.0,44479.027912760925,5,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03372375859791787,17791.61116510437,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +24213,2,51.0,0.0,7,111,800.0,,,0,63,0.0,0.0,,944.0,199.524848457099,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,124234,2,3,0,0,2,,350.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,111.84615415970612,800.0,26012.56795277286,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03629015027327867,26012.56795277286,7,4,7,7_1,7_2,7_0_0 +24214,2,45.0,0.0,9,112,600.0,,,21,31,0.0,132.4327277010224,,810.0,152.4148147936173,,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,124235,2,2,0,0,2,,800.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,94.11540918472043,600.0,28975.58181471746,1,1,0,1,40.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02795457241133221,13797.89610224641,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +24215,2,34.0,0.0,7,111,900.0,0.0,0.0,42,38,0.0,0.0,1534.680489034855,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,5,124236,1,1,0,0,1,,0.0,960.0,43,2.0,0.0,2.0,2.0,1.5,2,2,838.601556829979,900.0,79411.23707869966,1,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01133340863470071,52940.82471913311,10,5,10,10_0,10_4,10_0_0 +24216,2,58.0,0.0,8,111,360.0,,,0,45,0.0,0.0,,560.0,277.1178450793042,,60,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,124237,2,1,0,0,2,,280.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,99.6259813014227,360.0,52866.96291017964,0,1,0,1,105.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01059262664570752,52866.96291017964,10,5,10,10_1,10_2,10_0_0 +24217,1,23.0,375.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,795.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,124238,2,1,0,1,1,572.0,0.0,355.0,31,0.0,0.0,3.0,2.0,1.3,1,1,429.839461079837,0.0,9382.332864296453,0,6,2,3,70.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08473372363767805,7217.179126381887,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24218,2,42.0,0.0,2,211,2400.0,0.0,0.0,85,37,0.0,198.6490915515336,4092.4813040929466,2550.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,50.0,1,,2,124239,2,3,3,0,1,,500.0,,42,1.0,0.0,6.0,4.0,2.3,3,2,1451.2464588635,2400.0,59488.63494698251,6,1,1,2,125.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04286533053368282,25864.623889992396,7,4,7,7_1,7_1,7_0_1 +24219,2,64.0,0.0,2,111,221.0,87.0,0.0,0,75,833.1994523189152,0.0,376.84932008522554,1566.0,0.0,165.16985217076163,33,0,0,0,0,0,0,0,0,0,,2,,2,124240,2,1,0,1,1,805.0,0.0,250.0,11,0.0,2.0,4.0,1.0,1.0,1,1,350.913839343918,221.0,22479.612138448134,0,5,2,3,60.0,6,4,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06966312364978855,22479.612138448134,6,3,6,6_0,6_2,6_0_1 +24220,1,37.0,80.0,1,111,300.0,420.0,0.0,0,62,0.0,0.0,511.56016301161833,720.0,0.0,797.3717001347114,43,1,2,1,2,1,2,2,2,1,20.0,2,,1,124241,2,3,0,0,1,,0.0,400.0,32,1.0,0.0,3.0,2.0,1.3,1,1,979.753356076514,300.0,19492.145315109505,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.03693795569243401,14993.957934699618,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +24221,1,46.0,410.0,2,111,410.0,120.0,0.0,0,85,0.0,0.0,699.1322227825451,530.0,0.0,227.8204857527747,50,2,1,1,2,1,2,2,2,0,,2,,2,124242,1,3,0,1,1,1108.0,0.0,381.0,31,0.0,0.0,4.0,3.0,1.8,2,1,738.440477862254,410.0,8144.313481538389,0,7,2,3,130.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06507608053169973,4524.61860085466,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24223,2,54.0,0.0,7,111,1062.4,0.0,0.0,56,47,0.0,264.8654554020448,1811.605057278478,1397.0,186.22319189329244,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,5,124244,2,1,2,0,1,,258.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,896.759010130397,1062.4,40722.412323393415,1,1,1,2,100.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034305433305518565,20361.206161696708,5,3,5,5_1,5_2,5_0_0 +24224,2,47.0,0.0,9,300,1200.0,0.0,0.0,54,64,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2005.0,6,124245,2,1,1,0,1,,155.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1120.34840690429,1200.0,44702.14462714521,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02818656712132039,19435.715055280525,5,3,5,5_1,5_0,5_0_0 +24225,2,42.0,0.0,9,300,1500.0,0.0,0.0,62,46,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,124246,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1299.09979201193,1500.0,61347.11601626309,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024451027161608553,29212.91238869671,8,4,8,8_1,8_0,8_0_0 +24226,2,60.0,0.0,6,111,1060.0,0.0,0.0,0,46,0.0,0.0,1807.5125759743848,1060.0,0.0,0.0,33,0,0,0,0,0,0,0,0,4,80.0,1,,4,124247,2,1,2,0,1,,540.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,549.075820352834,1060.0,20942.36717806132,0,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050615099572431745,20942.36717806132,5,3,5,5_1,5_4,5_0_0 +24227,2,70.0,0.0,6,111,900.0,0.0,0.0,77,75,0.0,0.0,1534.680489034855,900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,124248,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1904.71108173781,900.0,45628.55397655903,5,5,0,1,67.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019724490950608718,30419.035984372687,8,4,8,8_0,8_3,8_0_0 +24228,2,41.0,0.0,2,120,486.0,80.0,0.0,11,47,0.0,2251.3563709173804,828.7274640788218,2266.0,0.0,151.8803238351831,31,0,0,0,0,0,0,0,0,2,40.0,1,,2,124249,2,3,1,0,1,,292.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,4,2,1071.27955699992,486.0,92858.29516236568,1,1,1,2,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024402774098294902,35714.72890860219,9,5,9,9_1,9_0,9_0_1 +24229,2,46.0,0.0,1,111,600.0,2000.0,0.0,52,63,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,124250,2,1,1,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,923.269522139376,600.0,41249.02760276137,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06303178889545376,19642.394096553035,5,3,5,5_1,5_4,5_1_0 +24230,2,39.0,0.0,5,111,0.0,0.0,500.0,56,43,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,31,0,0,0,0,0,0,0,0,3,75.0,2,,3,124251,1,3,0,1,2,528.0,0.0,784.0,43,2.0,0.0,2.0,3.0,1.8,2,2,287.34222432668,0.0,39227.09263357742,4,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012746292585854614,21792.829240876345,6,3,6,6_0,6_4,6_0_0 +24231,2,81.0,0.0,2,111,504.0,1877.0,0.0,77,72,0.0,0.0,859.4210738595189,2381.0,0.0,3563.492097982984,70,0,0,0,0,0,0,0,0,0,,1,,2,124252,2,2,3,0,1,,232.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1693.4970241515,504.0,36684.45439660101,5,5,0,1,110.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06490487698845566,24456.30293106734,7,4,7,7_1,7_2,7_0_1 +24232,2,65.0,0.0,6,211,602.0,0.0,0.0,0,77,0.0,79.45963662061344,1026.5307271099807,817.0,214.76632993646075,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,124253,2,1,1,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1513.7474974799,602.0,20438.763434559834,0,6,0,1,92.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03997306405624019,20438.763434559834,5,3,5,5_1,5_1,5_0_0 +24233,0,80.0,0.0,1,400,350.0,0.0,0.0,71,71,1265.6194212439218,0.0,596.8201901802214,1800.0,346.39730634913025,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124254,2,1,2,0,1,,360.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2238.70587869784,350.0,21766.08790248814,5,5,0,1,100.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08269745156152922,14510.725268325426,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +24234,2,89.0,0.0,2,111,1748.0,75.0,0.0,0,78,0.0,0.0,2980.690549814363,1823.0,0.0,142.38780359548417,70,0,0,0,0,0,0,0,0,0,,2,,2,124255,2,2,0,1,1,468.0,0.0,341.0,11,0.0,5.0,4.0,1.0,1.0,1,1,206.636444760041,1748.0,20495.390833696638,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08894682784008154,20495.390833696638,5,3,5,5_0,5_4,5_0_1 +24235,2,36.0,0.0,2,111,1243.0,0.0,0.0,63,43,0.0,417.1630922582205,2119.564275411472,1558.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,2,,2,124256,2,1,0,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,778.369176723276,1243.0,48992.10404632046,1,1,1,2,90.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0318010428481896,23329.573355390694,6,3,6,6_0,6_2,6_0_1 +24236,2,81.0,0.0,6,111,3061.0,0.0,0.0,78,90,0.0,0.0,5219.61886326188,3802.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124257,2,1,2,0,1,,297.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,1048.58866269547,3061.0,59533.73409211257,5,5,0,1,200.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06386295195455771,39689.15606140838,9,5,9,9_1,9_2,9_0_0 +24238,1,34.0,40.0,2,111,0.0,0.0,0.0,46,55,0.0,0.0,0.0,248.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,124259,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,386.156216128901,0.0,31148.539206015135,4,1,1,2,55.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.00796185010024831,14832.637717150064,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +24239,2,38.0,0.0,2,111,300.0,610.0,0.0,34,34,0.0,0.0,511.56016301161833,910.0,0.0,1158.0874692432712,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,124260,1,1,0,0,1,,285.0,567.0,43,2.0,0.0,4.0,3.0,1.8,2,2,394.634516788202,300.0,57731.66777876748,1,1,2,3,83.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015762579447508692,32073.148765981932,8,4,8,8_0,8_2,8_0_1 +24240,2,60.0,0.0,6,111,250.0,75.0,0.0,77,38,0.0,0.0,426.3001358430153,325.0,0.0,142.38780359548417,31,0,0,0,0,0,0,0,0,2,35.0,2,,4,124261,1,3,0,1,2,,0.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,631.330808674148,250.0,70857.9067367528,5,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004586644101799694,47238.60449116854,10,5,10,10_0,10_4,10_0_0 +24241,1,34.0,250.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1132.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,124262,1,2,0,0,1,,521.0,990.0,32,1.0,0.0,5.0,3.0,1.6,1,1,449.868767413148,0.0,23215.001820866706,0,1,2,3,90.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.048761572742264725,14509.37613804169,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +24242,2,40.0,0.0,6,111,1102.0,0.0,0.0,85,38,0.0,0.0,1879.1309987960115,1102.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,5.0,2,,4,124263,2,2,0,0,1,,0.0,766.0,42,1.0,1.0,2.0,2.0,1.5,2,2,1091.50585901793,1102.0,43013.72903268505,6,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025619727114629332,28675.819355123367,8,4,8,8_0,8_4,8_0_0 +24243,2,38.0,0.0,2,111,300.0,70.0,0.0,0,37,0.0,0.0,511.56016301161833,370.0,0.0,132.89528335578524,60,1,2,2,2,1,2,2,2,2,20.0,2,,2,124264,1,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1549.86920179436,300.0,30370.68009286063,0,1,0,1,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01218280258686,30370.68009286063,8,4,8,8_0,8_3,8_0_1 +24244,2,71.0,0.0,2,111,176.0,715.0,0.0,77,86,0.0,0.0,300.1152956334828,891.0,0.0,1357.430394276949,71,0,0,0,0,0,0,0,0,0,,2,,2,124265,2,1,0,0,2,,160.0,,41,1.0,1.0,3.0,3.0,2.0,3,3,2040.79554555478,176.0,64204.61339742472,5,5,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013877507438363275,32102.30669871236,8,4,8,8_0,8_3,8_0_1 +24245,2,58.0,0.0,5,111,673.0,0.0,0.0,34,37,0.0,0.0,1147.599965689397,673.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,124266,2,1,0,1,1,,0.0,,43,2.0,1.0,6.0,4.0,2.5,4,3,852.303526620017,673.0,316381.78172082664,1,1,0,1,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002127176844189629,126552.71268833065,10,5,10,10_0,10_4,10_0_0 +24246,2,81.0,0.0,2,111,100.0,,,0,86,0.0,0.0,,150.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,2,,2,124267,2,1,0,0,2,,100.0,320.0,11,0.0,1.0,4.0,1.0,1.0,1,1,36.479720070082315,100.0,17067.66108855594,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00878855041834506,17067.66108855594,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +24247,2,38.0,0.0,9,221,1500.0,0.0,0.0,56,48,0.0,529.7309108040896,2557.8008150580918,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2010.0,6,124268,2,1,1,0,1,,680.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,1044.33273854792,1500.0,47200.254582627895,1,1,1,2,95.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040254020170037326,16857.233779509963,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +24248,2,54.0,0.0,5,111,1000.0,0.0,0.0,75,53,0.0,0.0,1705.2005433720612,2000.0,1385.589225396521,0.0,41,0,0,0,0,0,0,0,0,1,60.0,2,,3,124269,1,1,0,0,1,1096.0,650.0,834.0,42,1.0,2.0,6.0,4.0,2.5,4,4,1034.8385617906,1000.0,47490.087602069456,6,1,2,3,123.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04211405160501003,18996.03504082778,5,3,5,5_0,5_4,5_0_0 +24249,2,74.0,0.0,5,211,974.0,0.0,0.0,86,75,0.0,423.78472864327165,1660.8653292443876,1414.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124270,2,1,2,0,1,,470.0,,41,0.0,5.0,8.0,2.0,1.5,2,2,1291.78842016562,974.0,50552.9662974819,5,5,0,1,150.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02797066331734589,33701.9775316546,9,5,9,9_1,9_1,9_0_0 +24250,2,46.0,0.0,2,120,2400.0,0.0,0.0,46,46,0.0,397.2981831030672,4092.4813040929466,2790.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,2,124271,2,1,2,0,1,,340.0,,43,2.0,0.0,8.0,5.0,2.4,3,2,584.703817572027,2400.0,107451.49272287799,1,1,1,2,180.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025965204663982937,44771.45530119916,10,5,10,10_1,10_0,10_0_1 +24251,2,40.0,0.0,2,111,0.0,0.0,0.0,55,52,0.0,0.0,0.0,1373.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,124272,2,1,1,0,1,,334.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,277.997404667221,0.0,38581.310690270824,1,1,1,2,90.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03558717875145268,18372.052709652773,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +24252,2,44.0,0.0,9,112,1000.0,2000.0,0.0,22,46,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,124273,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,284.016652933452,1000.0,79902.03059841366,1,1,1,2,180.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03754597946425107,38048.5859992446,9,5,9,9_1,9_0,9_0_0 +24253,2,73.0,0.0,7,111,0.0,,,0,77,0.0,0.0,,264.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,124274,2,2,0,0,2,,400.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,88.154154620333,0.0,9394.633635564785,0,5,0,1,123.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02810114904327814,9394.633635564785,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24254,0,82.0,0.0,5,111,270.0,530.0,0.0,0,77,0.0,0.0,460.40414671045653,800.0,0.0,1006.2071454080882,71,0,0,0,0,0,0,0,0,0,,2,,3,124275,2,1,0,0,1,,121.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1376.76963504352,270.0,21953.84486949318,0,5,5,0,70.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03644008622433473,21953.84486949318,6,3,6,6_0,6_2,6_0_0 +24255,2,39.0,0.0,9,111,300.0,,,0,42,0.0,0.0,,300.0,0.0,,20,0,0,0,0,0,0,0,0,3,90.0,1,2009.0,6,124276,2,1,0,0,1,,142.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,281.0250748056108,300.0,36838.936566927674,0,1,1,2,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008143557549631506,36838.936566927674,9,5,9,9_1,9_2,9_0_0 +24256,2,35.0,0.0,2,111,1320.0,0.0,0.0,0,53,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,2,,2,124277,2,1,0,0,1,,1700.0,1210.0,32,2.0,0.0,4.0,3.0,2.0,3,2,1329.934208445,1320.0,47909.86411268911,0,1,2,3,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027551737506397833,23954.932056344554,6,3,6,6_0,6_4,6_0_1 +24257,1,87.0,30.0,2,111,230.0,1050.0,0.0,0,72,0.0,0.0,392.1961249755741,1280.0,0.0,1993.4292503367785,70,0,0,0,0,0,0,0,0,0,,1,,2,124278,1,3,4,0,2,,340.0,246.0,11,0.0,6.0,4.0,1.0,1.0,1,1,310.896273587068,230.0,17443.157711540778,0,5,2,3,85.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07338120890537633,17443.157711540778,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +24258,2,76.0,0.0,2,111,400.0,1000.0,0.0,77,78,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,2,124279,2,3,3,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,267.513971759402,400.0,39378.18787220569,5,5,0,1,78.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03555267714561751,26252.12524813713,7,4,7,7_1,7_3,7_0_1 +24259,2,52.0,0.0,8,111,570.0,,,0,54,0.0,0.0,,662.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,25.0,2,2003.0,6,124280,2,2,0,0,2,,216.0,453.0,12,1.0,0.0,3.0,1.0,1.0,1,1,116.87815338197424,570.0,30459.895470272604,0,1,2,3,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021733495462782536,30459.895470272604,8,4,8,8_0,8_3,8_0_0 +24260,2,47.0,0.0,1,300,800.0,0.0,0.0,52,42,0.0,927.0290939071567,1364.160434697649,1590.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,124281,2,1,2,0,1,,450.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,607.283684021802,800.0,65058.34012974049,1,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024439602929143194,25022.438511438653,7,4,7,7_1,7_0,7_1_0 +24261,1,46.0,344.0,2,112,0.0,0.0,1296.0,85,62,0.0,0.0,816.892504377508,1296.0,0.0,1550.9648632438266,71,2,1,2,1,1,2,2,2,2,5.0,2,,2,124282,1,1,0,1,1,,0.0,366.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,2731.97962037061,0.0,27822.79188624738,6,1,2,3,92.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04658051590576013,9274.263962082461,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +24262,2,38.0,0.0,1,111,300.0,600.0,0.0,0,23,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,12,0,0,0,0,0,0,0,0,0,,2,,1,124283,2,3,0,0,1,,0.0,1289.0,12,1.0,0.0,2.0,1.0,1.0,1,1,610.091230502458,300.0,34434.068052690134,0,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02613690600317229,34434.068052690134,9,5,9,9_0,9_4,9_1_0 +24263,0,56.0,0.0,7,111,360.0,,,56,65,0.0,0.0,,636.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,2,15.0,2,,5,124284,2,1,0,0,2,,360.0,,43,4.0,0.0,3.0,5.0,3.0,5,4,102.345739889938,360.0,22380.24590163934,1,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028417918319360976,7460.081967213114,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +24264,1,35.0,128.0,1,112,1150.0,0.0,0.0,0,63,0.0,0.0,1960.9806248778702,1196.0,63.73710436823996,0.0,50,2,2,1,1,2,2,2,2,2,60.0,1,,1,124285,1,2,4,0,2,,2500.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1879.59000369304,1150.0,8058.625524764695,0,1,2,3,90.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,1,0.14841240560497718,8058.625524764695,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +24265,2,86.0,0.0,1,111,192.0,170.0,0.0,0,78,0.0,397.2981831030672,327.3985043274357,662.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,0,,2,,1,124286,1,2,0,0,2,,0.0,141.0,11,0.0,2.0,4.0,1.0,1.0,1,1,340.093060379638,192.0,17588.544771854224,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03763813371640356,17588.544771854224,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +24266,2,74.0,0.0,7,112,290.0,960.0,0.0,77,78,0.0,0.0,494.50815757789775,1250.0,0.0,1822.5638860221975,70,0,0,0,0,0,0,0,0,0,,1,,5,124287,2,1,2,0,1,,120.0,380.0,41,0.0,5.0,3.0,2.0,1.5,2,2,1077.39909550956,290.0,22071.583452073315,5,5,2,3,50.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05663390679306156,14714.388968048877,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +24267,2,66.0,0.0,5,111,244.0,0.0,0.0,0,77,0.0,0.0,416.0689325827829,314.0,96.99124577775646,0.0,70,2,2,2,2,1,2,2,2,0,,2,,3,124288,2,1,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,349.849151715507,244.0,26175.91591185934,0,5,0,1,85.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.011995759806736627,26175.91591185934,7,4,7,7_0,7_2,7_0_0 +24268,1,47.0,437.0,6,111,0.0,0.0,1700.0,85,22,0.0,0.0,1071.5410937050644,1700.0,0.0,2034.4446508599572,71,0,0,0,0,0,0,0,0,0,,1,,4,124289,1,3,4,0,1,,650.0,430.0,42,1.0,0.0,4.0,4.0,2.3,3,2,237.610421207475,0.0,11332.84000997314,6,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15000652956398958,4927.321743466583,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +24269,2,67.0,0.0,2,111,470.0,0.0,0.0,0,74,0.0,0.0,801.4442553848687,470.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,124290,2,1,0,1,1,1068.0,0.0,652.0,21,1.0,0.0,4.0,2.0,1.5,2,2,955.393380313385,470.0,54549.34310631935,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008616052425855008,36366.22873754623,9,5,9,9_0,9_4,9_0_1 +24270,2,63.0,0.0,2,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,290.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124291,2,1,0,1,1,840.0,0.0,464.0,41,0.0,7.0,3.0,3.0,2.0,3,3,230.845744992689,0.0,27825.578720066667,6,5,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010422065356393248,13912.789360033334,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +24271,1,32.0,26.0,2,111,305.0,120.0,0.0,42,62,0.0,0.0,520.0861657284787,425.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,2,7.0,2,,2,124292,2,1,0,1,1,330.0,0.0,344.0,43,2.0,0.0,4.0,4.0,2.1,2,2,267.682503126238,305.0,36573.96293402414,1,1,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01162028847589359,17416.17282572578,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +24272,2,73.0,0.0,1,112,450.0,0.0,0.0,71,71,0.0,331.081819252556,767.3402445174275,760.0,83.13535352379125,0.0,71,2,2,2,2,2,2,2,1,0,,1,,1,124293,1,3,4,0,1,,100.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1262.66662859989,450.0,17643.110985028685,5,5,0,1,60.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.04307630330302342,11762.073990019124,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +24273,1,39.0,16.0,8,111,876.0,420.0,0.0,0,43,0.0,0.0,1493.7556759939255,1296.0,0.0,797.3717001347114,50,1,2,2,1,2,2,2,2,3,15.0,2,,6,124294,2,1,0,1,1,,448.0,255.0,32,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,457.013861863775,876.0,31415.828872825135,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04125308949340016,12083.011104932746,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +24274,2,55.0,0.0,6,112,900.0,0.0,0.0,77,52,0.0,529.7309108040896,1534.680489034855,1330.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,124295,2,1,3,0,1,,312.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1697.30631858988,900.0,47998.58469043049,5,1,0,1,130.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02770915035470125,31999.056460286996,8,4,8,8_1,8_1,8_0_0 +24275,1,50.0,268.0,2,111,230.0,240.0,0.0,0,52,0.0,0.0,392.1961249755741,470.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,2,,2,124296,2,1,0,1,1,44.0,460.0,256.0,12,1.0,0.0,3.0,1.0,1.0,1,1,431.52729462627,230.0,6060.0,0,4,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07755775577557755,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24276,1,47.0,280.0,7,112,1200.0,,,0,21,0.0,0.0,,1250.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,0,,2,,5,124297,2,3,0,0,2,,1000.0,420.0,12,1.0,2.0,4.0,1.0,1.0,1,1,74.5394772152239,1200.0,8598.451806627108,0,1,2,3,80.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14537500797952768,8598.451806627108,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24277,2,69.0,0.0,6,112,1200.0,0.0,0.0,78,75,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,124298,2,1,2,0,1,,195.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1387.65639609094,1200.0,33721.847505939906,5,5,0,1,85.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03825413182871354,22481.231670626603,6,3,6,6_1,6_0,6_0_0 +24278,2,56.0,0.0,1,111,600.0,1200.0,0.0,55,56,0.0,79.45963662061344,1023.1203260232367,1860.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,124299,2,2,2,0,1,,240.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,448.000888592571,600.0,28419.623839655844,4,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06544773465314536,18946.415893103895,5,3,5,5_1,5_3,5_1_0 +24279,1,81.0,93.0,1,300,120.0,0.0,0.0,0,78,0.0,1046.218548838077,204.62406520464734,1060.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124300,1,3,4,0,2,,92.0,110.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1531.85595354485,120.0,9328.625387733056,0,5,2,3,25.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1136287454949019,9328.625387733056,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +24280,2,33.0,0.0,5,111,0.0,,,0,35,0.0,0.0,,688.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,124301,2,1,0,0,2,,279.0,750.0,22,2.0,0.0,5.0,3.0,1.8,2,2,131.30583636489288,0.0,15404.957520461427,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04466094756095064,8558.309733589682,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24281,2,56.0,0.0,2,111,480.0,0.0,0.0,0,52,0.0,0.0,818.4962608185893,480.0,0.0,0.0,71,2,1,2,1,1,2,2,2,1,3.0,2,,2,124302,1,3,0,1,1,1110.0,130.0,252.0,12,1.0,1.0,3.0,1.0,1.0,1,1,450.177219601767,480.0,13803.305812347387,0,1,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03477427846093423,13803.305812347387,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +24282,0,58.0,0.0,1,300,400.0,0.0,0.0,71,11,0.0,0.0,682.0802173488245,490.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,124303,1,3,3,0,2,,138.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1431.6350948128,400.0,41925.726916097585,5,1,5,0,190.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.011687334628224707,27950.484610731724,7,4,7,7_1,7_0,7_1_0 +24283,2,53.0,0.0,1,400,500.0,0.0,0.0,56,48,2636.7071275915036,0.0,852.6002716860306,3120.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,2,45.0,1,,1,124304,2,2,1,0,1,,150.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,1327.56077642002,500.0,47741.82094622728,1,1,0,1,140.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06535150813610835,19096.728378490912,5,3,5,5_1,5_0,5_1_0 +24285,2,77.0,0.0,5,111,548.0,1495.0,0.0,0,77,0.0,0.0,934.4498977678895,2043.0,0.0,2838.2635516699847,70,0,0,0,0,0,0,0,0,0,,1,,3,124306,2,1,3,0,1,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1531.06990901135,548.0,14046.931679532237,0,5,0,1,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14544101492120534,14046.931679532237,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +24286,2,52.0,0.0,8,400,0.0,,,0,85,0.0,0.0,,180.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,124307,2,3,0,0,2,,0.0,,31,1.0,0.0,4.0,3.0,2.0,3,2,46.597104306411616,0.0,20500.47000244864,0,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008780286499699775,10250.23500122432,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +24287,2,71.0,0.0,5,111,750.0,0.0,0.0,77,78,0.0,529.7309108040896,1278.9004075290459,1210.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124308,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1043.35360162329,750.0,26316.21581157684,5,5,0,1,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04597925509744853,17544.14387438456,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +24288,2,45.0,0.0,7,111,700.0,,,52,54,0.0,0.0,,940.0,332.541414095165,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,124309,2,3,0,0,2,,250.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,100.7411032137526,700.0,105370.34300729008,1,1,1,2,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008920916200633093,43904.309586370866,10,5,10,10_1,10_2,10_0_0 +24290,2,73.0,0.0,1,111,420.0,0.0,0.0,0,86,0.0,463.51454695357836,716.1842282162656,890.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124311,1,3,2,0,2,,240.0,,11,0.0,8.0,2.0,1.0,1.0,1,1,829.410153345221,420.0,17150.11774616164,0,6,0,1,60.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051894687440218336,17150.11774616164,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +24291,2,63.0,0.0,6,111,549.0,89.0,0.0,0,46,0.0,0.0,936.1550983112616,638.0,0.0,168.96686026664122,71,0,0,0,0,0,0,0,0,3,25.0,2,,4,124312,2,2,0,1,1,,0.0,950.0,22,2.0,0.0,2.0,2.0,1.5,2,2,741.957103653813,549.0,28159.531453520874,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022656626977372127,18773.020969013916,5,3,5,5_0,5_4,5_0_0 +24292,1,19.0,357.0,7,111,0.0,,,0,85,0.0,0.0,,789.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,124313,2,1,0,0,2,,215.0,536.0,31,0.0,0.0,2.0,2.0,1.3,1,1,138.0565185312093,0.0,6057.787234042553,0,6,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13024557804970568,4659.836333878887,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24293,2,47.0,0.0,6,300,467.0,0.0,0.0,0,69,0.0,158.91927324122688,796.3286537547526,659.0,99.7624242285495,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,4,124314,2,1,1,0,1,,115.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1422.496576509,467.0,16711.28884666415,0,1,1,2,92.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03943442101005557,16711.28884666415,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +24294,0,77.0,0.0,2,111,316.0,1380.0,0.0,0,78,0.0,0.0,538.8433717055714,1696.0,0.0,2619.935586156909,50,0,0,0,0,0,0,0,0,0,,1,,2,124315,2,1,2,0,1,,267.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,816.813937253397,316.0,28301.418597317912,0,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05992632468821643,28301.418597317912,8,4,8,8_1,8_4,8_0_1 +24295,2,39.0,0.0,1,111,600.0,0.0,0.0,21,54,0.0,132.4327277010224,1023.1203260232367,775.0,103.91919190473907,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,124316,2,2,1,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,3,2,1597.78271350185,600.0,25315.536010162527,1,1,1,2,100.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03061361211901215,14064.186672312515,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +24296,2,37.0,0.0,2,111,210.0,90.0,0.0,0,54,0.0,0.0,358.0921141081328,300.0,0.0,170.865364314581,42,2,1,2,2,1,2,2,2,0,,2,,2,124317,1,1,0,1,1,1200.0,0.0,380.0,22,2.0,0.0,4.0,3.0,2.0,3,3,338.622320220366,210.0,56764.01176875437,0,1,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005285038718231229,28382.005884377184,8,4,8,8_0,8_3,8_0_1 +24297,2,36.0,0.0,9,112,1200.0,0.0,0.0,43,53,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,124318,2,1,1,0,1,,196.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,969.331831365125,1200.0,35793.10371199666,1,1,1,2,117.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03352601131367661,17044.33510095079,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +24298,0,74.0,0.0,1,400,354.0,0.0,0.0,0,78,2399.4034861082687,0.0,603.6409923537096,2683.0,74.82181817141213,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124319,2,2,2,0,1,,71.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1200.54596230904,354.0,19856.266378056444,0,5,0,1,52.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1351210720543635,19856.266378056444,5,3,5,5_1,5_0,5_1_0 +24299,2,30.0,0.0,6,111,576.0,0.0,0.0,55,21,0.0,927.0290939071567,982.1955129823073,1396.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124320,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,256.025440810151,576.0,31232.295542235748,1,1,1,2,92.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04469732293971716,17351.275301242084,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +24300,0,84.0,0.0,2,111,433.0,1287.0,0.0,0,77,0.0,0.0,738.3518352801025,1720.0,0.0,2443.3747096985085,71,0,0,0,0,0,0,0,0,0,,1,,2,124321,2,1,1,0,2,,352.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,616.925554292739,433.0,21763.435548425416,0,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07903163984256346,21763.435548425416,6,3,6,6_1,6_3,6_0_1 +24301,2,71.0,0.0,7,111,390.0,,,21,75,0.0,0.0,,528.0,191.2113131047199,,41,0,0,0,0,0,0,0,0,0,,1,,5,124322,2,1,0,0,2,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,172.3357322544114,390.0,15862.318065207732,1,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03328643378789072,10574.878710138488,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +24302,2,46.0,0.0,2,112,1000.0,0.0,0.0,0,62,0.0,198.6490915515336,1705.2005433720612,1150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,23.0,1,,2,124323,2,1,2,0,1,,567.0,311.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1448.18298049619,1000.0,32859.2946496226,0,1,2,3,85.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03499770802332813,21906.19643308173,6,3,6,6_1,6_1,6_0_1 +24303,1,38.0,100.0,1,111,650.0,100.0,0.0,85,67,0.0,728.3800023556231,1108.3803531918397,1300.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,124324,2,1,3,0,1,,290.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,216.024293189487,650.0,22090.074998226803,6,1,1,2,95.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05884995863999342,10519.083332488954,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +24304,2,28.0,0.0,7,111,1100.0,,,53,43,0.0,0.0,,1100.0,0.0,,33,0,0,0,0,0,0,0,0,2,10.0,2,,5,124325,2,1,0,0,2,,720.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,136.45491065262237,1100.0,80745.0,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013623134559415443,53830.0,10,5,10,10_0,10_2,10_0_0 +24305,2,35.0,0.0,1,111,1300.0,0.0,0.0,21,52,0.0,0.0,2216.7607063836795,1420.0,166.2707070475825,0.0,42,2,2,1,1,1,2,1,2,2,5.0,1,,1,124326,1,2,3,0,2,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,258.346489705338,1300.0,30551.485826912813,1,1,1,2,70.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04647891785181595,14548.326584244196,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +24306,2,78.0,0.0,1,112,430.0,0.0,0.0,0,77,0.0,264.8654554020448,733.2362336499863,690.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,124327,2,3,0,0,1,,0.0,708.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1822.73237159751,430.0,23873.781395580943,0,5,2,3,75.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02890199874778612,23873.781395580943,6,3,6,6_0,6_1,6_1_0 +24307,2,33.0,0.0,2,111,360.0,80.0,0.0,34,46,0.0,0.0,613.872195613942,440.0,0.0,151.8803238351831,31,1,2,2,1,2,2,2,2,2,60.0,2,,2,124328,2,1,0,1,1,750.0,210.0,226.0,43,2.0,0.0,2.0,2.0,1.5,2,2,267.656805612816,360.0,51165.87310867606,1,1,2,3,43.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00859948190594622,34110.58207245071,9,5,9,9_0,9_3,9_0_1 +24308,2,41.0,0.0,9,111,972.0,0.0,0.0,45,33,0.0,0.0,1657.4549281576435,972.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,124329,2,1,1,0,1,,129.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1041.84907250638,972.0,81077.8254489494,1,1,1,2,126.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011988481371050326,38608.48830902352,9,5,9,9_1,9_2,9_0_0 +24309,2,86.0,0.0,5,112,240.0,0.0,0.0,0,75,1529.2901340030721,0.0,409.2481304092947,1750.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124330,2,1,2,0,1,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1352.88352979432,240.0,21184.88304087317,0,5,0,1,100.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08260607323739423,21184.88304087317,5,3,5,5_1,5_0,5_0_0 +24310,2,40.0,0.0,6,111,700.0,,,0,34,0.0,0.0,,840.0,193.98249155551292,,20,0,0,0,0,0,0,0,0,0,,1,,4,124331,2,1,0,0,2,,312.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,68.73468729971734,700.0,64648.49790967293,0,1,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012993341332905375,43098.99860644862,9,5,9,9_1,9_2,9_0_0 +24311,0,46.0,0.0,8,112,0.0,0.0,0.0,68,53,0.0,0.0,0.0,1093.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2001.0,6,124332,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,235.946393610611,0.0,42112.62197179753,1,1,5,0,100.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025954213934529482,16197.162296845207,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +24312,2,62.0,0.0,2,111,162.0,444.0,0.0,0,75,0.0,0.0,276.2424880262739,606.0,0.0,842.9357972852663,50,0,0,0,0,0,0,0,0,0,,2,,2,124333,2,1,0,0,1,,0.0,233.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1737.07526214738,162.0,21782.0,0,5,2,3,60.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027821136718391332,21782.0,6,3,6,6_0,6_2,6_0_1 +24313,2,46.0,0.0,7,111,300.0,,,0,81,0.0,0.0,,343.0,59.5803366920504,,71,0,0,0,0,0,0,0,0,0,,1,,5,124334,2,2,0,0,2,,300.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,90.6784231604455,300.0,7567.0752889812575,0,4,0,1,135.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04532794863286969,7567.0752889812575,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24314,2,84.0,0.0,1,111,0.0,1700.0,0.0,0,86,0.0,0.0,0.0,1710.0,0.0,3227.4568814976415,60,0,0,0,0,0,0,0,0,0,,1,,1,124335,2,1,2,0,1,,170.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1293.81576414051,0.0,10988.321851971923,0,5,0,1,100.0,8,6,7,0,1,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15561975914394333,10988.321851971923,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +24315,2,53.0,0.0,1,112,200.0,0.0,0.0,69,54,527.3414255183008,198.6490915515336,341.04010867441224,905.0,76.20740739680865,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,124336,2,1,2,0,1,,300.0,750.0,43,2.0,4.0,5.0,3.0,2.0,3,2,1052.79955823167,200.0,69518.46261788748,1,1,2,3,130.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013018124479742718,34759.23130894374,9,5,9,9_1,9_0,9_1_0 +24316,2,72.0,0.0,5,211,600.0,,,0,77,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,124337,2,1,0,0,2,,300.0,,21,2.0,1.0,4.0,5.0,2.5999999999999996,3,3,125.02054010784843,600.0,19302.563315642998,0,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031083954508454,7424.062813708846,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24317,2,54.0,0.0,7,111,396.0,1059.0,0.0,47,77,0.0,0.0,675.2594151753362,1455.0,0.0,2010.5157867682365,50,2,2,1,2,1,2,2,2,0,,1,,5,124338,2,3,1,0,1,,253.0,685.0,42,1.0,1.0,4.0,3.0,2.0,3,3,1789.25215307411,396.0,44299.971481495144,1,5,2,3,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.032844264936102235,22149.985740747572,6,3,6,6_1,6_2,6_0_0 +24318,2,38.0,0.0,7,112,0.0,,,0,85,0.0,0.0,,586.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,5,124339,1,2,0,0,2,,0.0,400.0,31,0.0,0.0,2.0,3.0,1.6,1,1,130.69281273730599,0.0,2353.019241248866,0,6,2,3,36.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.24904173741009455,1470.637025780541,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +24319,2,41.0,0.0,1,400,0.0,0.0,0.0,0,69,0.0,0.0,0.0,3411.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,7.0,1,,1,124340,2,1,3,0,1,,149.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,196.692707949281,0.0,16623.797282262436,0,1,0,1,110.0,0,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20518777641974323,11082.53152150829,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +24320,2,37.0,0.0,1,221,240.75,625.0,0.0,52,43,0.0,0.0,410.52703081682375,866.0,0.0,1186.565029962368,33,0,0,0,0,0,0,0,0,0,,1,,1,124341,1,3,3,0,1,,522.0,555.0,43,2.0,0.0,4.0,4.0,2.1,2,2,550.729520466326,240.75,88420.52175348213,1,1,2,3,100.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009794106422651772,42105.01035880101,9,5,9,9_1,9_1,9_1_0 +24321,2,67.0,0.0,1,111,396.0,1930.0,0.0,0,77,0.0,728.3800023556231,675.2594151753362,2876.0,0.0,3664.112812523793,70,0,0,0,0,0,0,0,0,0,,1,,1,124342,2,1,2,0,1,,160.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,853.068678827319,396.0,41653.48833256899,0,5,0,1,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06904583781885194,41653.48833256899,9,5,9,9_1,9_3,9_1_0 +24322,2,37.0,0.0,8,111,360.0,,,54,47,0.0,0.0,,480.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,2,2.0,1,2000.0,6,124343,2,1,0,0,2,,300.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,122.64013516234219,360.0,56542.57587472673,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008489178156005257,26925.036130822253,7,4,7,7_1,7_2,7_0_0 +24323,2,55.0,0.0,6,111,840.0,,,0,52,0.0,0.0,,882.0,58.19474746665388,,10,0,0,0,0,0,0,0,0,2,8.0,2,,4,124344,2,1,0,0,2,,492.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,94.41417594861126,840.0,50091.716959850935,0,1,0,1,87.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01760770150296371,50091.716959850935,10,5,10,10_0,10_3,10_0_0 +24324,2,54.0,0.0,6,211,426.0,,,0,52,0.0,0.0,,470.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,124345,1,3,0,0,2,,180.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,103.93664793347278,426.0,32669.52147770756,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014386497834708419,32669.52147770756,8,4,8,8_1,8_2,8_0_0 +24325,1,49.0,239.0,2,111,130.0,100.0,0.0,0,67,0.0,0.0,221.67607063836795,230.0,0.0,189.8504047939789,71,2,2,2,2,2,2,2,1,1,20.0,2,,2,124346,2,2,0,1,1,780.0,200.0,213.0,32,2.0,0.0,3.0,2.0,1.5,2,2,486.548430732497,130.0,13104.497100733413,0,1,2,3,50.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.017551226745445094,8736.331400488942,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24326,2,75.0,0.0,2,111,300.0,500.0,0.0,0,78,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,70,0,0,0,0,0,0,0,0,0,,1,,2,124347,2,2,5,0,1,,250.0,270.0,11,0.0,3.0,3.0,1.0,1.0,1,1,327.212624764628,300.0,18659.08590137784,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04287455474659269,18659.08590137784,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +24327,1,43.0,323.0,8,400,400.0,,,21,55,0.0,0.0,,544.0,199.524848457099,,50,2,2,2,1,2,2,2,2,0,,1,2001.0,6,124348,2,3,0,0,1,,300.0,,43,2.0,1.0,4.0,4.0,2.3,2,2,106.47096912787852,400.0,13929.629343629342,4,4,1,2,55.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.03905344403501994,6056.360584186671,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +24328,2,58.0,0.0,2,111,684.0,,,77,68,0.0,0.0,,810.0,174.58424239996165,,60,0,0,0,0,0,0,0,0,0,,1,,2,124349,2,2,0,0,2,,500.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,99.1832226606231,684.0,35619.93861513203,5,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022740072877494983,23746.62574342135,6,3,6,6_1,6_2,6_0_1 +24329,2,34.0,0.0,2,111,0.0,0.0,872.0,0,43,0.0,0.0,549.6375492416565,872.0,0.0,1043.5504326764017,33,0,0,0,0,0,0,0,0,2,2.0,2,,2,124350,2,2,0,0,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1720.44862195599,0.0,20359.555799899576,0,1,2,3,46.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.042830011055756984,20359.555799899576,5,3,5,5_0,5_3,5_0_1 +24330,2,33.0,0.0,9,112,1609.0,0.0,0.0,46,46,0.0,0.0,2743.6676742856466,1639.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,124351,2,1,1,0,1,,170.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,725.867051976702,1609.0,55425.75103986568,1,1,1,2,120.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029571092303668167,26393.21478088842,7,4,7,7_1,7_0,7_0_0 +24331,2,35.0,0.0,7,111,390.0,,,0,46,0.0,0.0,,440.0,69.27946126982604,,41,0,0,0,0,0,0,0,0,2,15.0,2,,5,124352,2,1,0,0,2,,350.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,116.5634748249648,390.0,38206.83823673362,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011516263064577951,29389.875566718172,8,4,8,8_0,8_2,8_0_0 +24332,2,66.0,0.0,5,111,660.0,0.0,0.0,0,74,0.0,0.0,1125.4323586255605,2597.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,124353,2,1,0,1,1,920.0,0.0,440.0,31,1.0,0.0,3.0,3.0,2.0,3,3,856.762624132944,660.0,44468.071163175686,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.058401453718788535,22234.035581587843,6,3,6,6_0,6_4,6_0_0 +24333,2,49.0,0.0,8,111,420.0,0.0,0.0,0,37,0.0,0.0,716.1842282162656,420.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,1999.0,6,124354,2,1,0,1,1,630.0,0.0,548.0,32,1.0,0.0,3.0,2.0,1.5,2,1,1156.79063187781,420.0,55259.24333908358,0,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007600538382742272,36839.495559389055,9,5,9,9_0,9_4,9_0_0 +24334,2,66.0,0.0,7,112,1000.0,0.0,0.0,78,72,0.0,0.0,1705.2005433720612,1120.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124355,2,1,2,0,1,,600.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,594.007888874964,1000.0,20565.703676698933,6,5,0,1,153.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05445960019685428,13710.469117799288,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +24335,2,93.0,0.0,7,111,0.0,,,0,45,0.0,0.0,,784.0,69.27946126982604,,41,0,0,0,0,0,0,0,0,0,,1,,5,124356,2,2,0,0,1,,518.0,584.0,11,0.0,0.0,3.0,1.0,1.0,1,1,120.64496959983937,0.0,41572.41666655786,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018858658285090122,41572.41666655786,9,5,9,9_1,9_2,9_0_0 +24336,2,83.0,0.0,5,112,1130.0,0.0,0.0,75,74,0.0,0.0,1926.8766140104292,1205.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,124357,1,1,2,0,2,,267.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1518.30969131473,1130.0,55147.44073803206,5,5,0,1,100.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021850515343479572,36764.960492021375,9,5,9,9_1,9_1,9_0_0 +24337,2,51.0,0.0,2,221,640.0,0.0,0.0,0,65,791.0121382774512,0.0,1091.3283477581192,1754.0,504.35447804433363,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,124358,1,3,3,0,2,,340.0,374.0,12,1.0,2.0,3.0,1.0,1.0,1,1,2282.88347117594,640.0,13474.0,0,1,2,3,80.0,1,1,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13017663648508238,13474.0,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +24338,2,39.0,0.0,5,111,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1670.0,0.0,0.0,44,1,2,2,2,1,2,2,2,2,7.0,1,,3,124359,2,2,5,0,1,,384.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,330.460978836686,0.0,46509.13535253756,1,1,1,2,100.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03590692424921385,31006.09023502504,8,4,8,8_1,8_2,8_0_0 +24339,2,36.0,0.0,6,111,1300.0,0.0,0.0,52,47,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,1,,4,124360,2,1,2,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,541.039447141286,1300.0,47556.73750311789,1,1,1,2,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0273357691938975,19815.307292965786,5,3,5,5_1,5_4,5_0_0 +24340,1,39.0,270.0,1,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,389.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,124361,2,2,0,0,2,,259.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2065.99561801435,0.0,7041.902025569951,0,4,2,3,30.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.05524075719706076,7041.902025569951,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +24341,2,68.0,0.0,5,120,825.0,0.0,0.0,72,75,0.0,331.081819252556,1406.7904482819504,1175.0,138.5589225396521,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,124362,1,1,2,0,1,,449.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1437.84663301375,825.0,39456.021632721975,5,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029779991782687483,26304.01442181465,7,4,7,7_1,7_0,7_0_0 +24342,2,54.0,0.0,6,111,1436.0,0.0,0.0,85,62,0.0,0.0,2448.66798028228,1436.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,1,,4,124363,2,1,3,0,1,,298.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,679.764897612302,1436.0,50534.10167002241,7,1,0,1,98.0,4,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028416454484078753,33689.40111334828,9,5,9,9_1,9_2,9_0_0 +24343,1,35.0,256.0,9,111,215.0,,,68,90,0.0,0.0,,387.0,238.3213467682016,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,124364,1,1,0,0,2,,336.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,122.88149829092666,215.0,10604.30576855487,1,4,1,2,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.036494609684641285,5891.280982530483,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +24344,2,58.0,0.0,6,111,120.0,,,0,38,0.0,0.0,,142.0,30.482962958723462,,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,124365,2,1,0,0,2,,166.0,850.0,12,1.0,0.0,5.0,1.0,1.0,1,1,126.53010394875763,120.0,80692.14397098077,0,1,2,3,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001759774781186472,80692.14397098077,10,5,10,10_1,10_2,10_0_0 +24345,2,79.0,0.0,2,111,211.0,83.0,0.0,0,75,0.0,0.0,359.7973146515049,294.0,0.0,157.57583597900248,70,0,0,0,0,0,0,0,0,0,,2,,2,124366,2,1,0,1,1,476.0,0.0,310.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1171.01801603422,211.0,23909.899490220032,0,5,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01229616210307601,23909.899490220032,6,3,6,6_0,6_4,6_0_1 +24346,2,63.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,273.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,124367,2,3,0,0,1,,201.0,380.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2006.8725833041,0.0,20281.56304077938,0,5,2,3,51.0,7,5,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01346050102011808,20281.56304077938,5,3,5,5_0,5_2,5_1_0 +24347,2,49.0,0.0,8,211,1200.0,,,33,46,0.0,0.0,,1200.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,2002.0,6,124368,2,2,0,0,2,,360.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,80.84448878485996,1200.0,58378.69480008348,1,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020555444141212353,25382.041217427603,7,4,7,7_1,7_2,7_0_0 +24348,2,52.0,0.0,2,112,1000.0,0.0,0.0,34,38,0.0,0.0,1705.2005433720612,4200.0,4433.885521268867,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,124369,2,3,3,0,1,,260.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,1140.77889834681,1000.0,82486.3645498022,1,1,0,1,140.0,8,3,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050917506462103766,32994.54581992088,8,4,8,8_1,8_1,8_0_1 +24349,2,82.0,0.0,1,111,238.0,1194.0,0.0,0,77,0.0,0.0,405.83772932255056,1432.0,0.0,2266.813833240108,71,0,0,0,0,0,0,0,0,0,,1,,1,124370,2,1,4,0,2,,140.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,475.321160812787,238.0,22788.58790751797,0,5,0,1,60.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06283847010667924,22788.58790751797,6,3,6,6_1,6_2,6_1_0 +24350,2,37.0,0.0,7,111,0.0,0.0,0.0,55,68,0.0,0.0,0.0,1512.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,124371,2,1,2,0,1,,149.0,730.0,43,2.0,1.0,4.0,3.0,1.8,2,2,985.11997189177,0.0,18678.36169791431,1,1,2,3,100.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08094928369273602,10376.867609952395,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +24351,2,51.0,0.0,9,111,950.0,,,69,11,0.0,79.45963662061344,,1230.0,304.8296295872346,,31,0,0,0,0,0,0,0,0,0,,1,2009.0,6,124372,2,1,0,0,1,,350.0,,43,3.0,0.0,7.0,4.0,2.5,4,3,212.6028393368758,950.0,77669.18884010488,1,1,1,2,185.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01583639559481125,31067.675536041952,8,4,8,8_1,8_2,8_0_0 +24352,2,27.0,0.0,2,111,0.0,0.0,0.0,46,46,0.0,0.0,0.0,880.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,124373,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1967.13320377306,0.0,39076.724425294524,4,1,2,3,65.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02251979952112804,26051.149616863015,7,4,7,7_0,7_3,7_0_1 +24353,2,44.0,0.0,1,111,480.0,1500.0,0.0,54,46,0.0,0.0,818.4962608185893,1980.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,124374,2,2,2,0,1,,460.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,394.721050623909,480.0,63917.43316724173,4,1,1,2,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030977464236075863,24583.628141246823,7,4,7,7_1,7_4,7_1_0 +24354,2,57.0,0.0,1,112,980.0,0.0,0.0,0,64,0.0,0.0,1671.09653250462,980.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,124375,2,1,1,0,1,,110.0,585.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1785.25297901326,980.0,22453.486749339805,0,1,2,3,70.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.04364578254327536,22453.486749339805,6,3,6,6_1,6_0,6_1_0 +24355,2,47.0,0.0,5,111,600.0,0.0,0.0,65,54,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,42,2,2,2,2,1,2,2,2,1,15.0,2,,3,124376,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,221.927408870867,600.0,39684.09580839994,1,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.015119407101950345,22046.719893555524,6,3,6,6_0,6_4,6_0_0 +24356,2,61.0,0.0,5,111,0.0,0.0,0.0,77,74,0.0,0.0,0.0,876.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,124377,2,1,0,1,1,677.0,0.0,560.0,41,0.0,2.0,2.0,2.0,1.5,2,2,1512.37283960062,0.0,32371.043084105757,5,5,2,3,73.0,8,6,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027061222516802916,21580.695389403838,6,3,6,6_0,6_2,6_0_0 +24357,2,61.0,0.0,5,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,344.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,3,124378,2,2,0,0,2,,0.0,400.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2251.94153455907,0.0,31521.033669037417,0,1,3,4,35.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010913347690685202,31521.033669037417,8,4,8,8_0,8_3,8_0_0 +24358,2,42.0,0.0,2,111,907.0,1667.0,0.0,56,43,0.0,463.51454695357836,1546.6168928384595,2924.0,0.0,3164.8062479156283,33,1,2,2,2,1,2,2,1,2,30.0,1,,2,124379,2,1,1,0,1,,836.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,304.20060692846,907.0,38121.616366442366,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.07670188933997914,16574.615811496682,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +24359,2,33.0,0.0,2,111,0.0,0.0,1300.0,69,43,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,33,0,0,0,0,0,0,0,0,2,5.0,1,,2,124380,2,2,2,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1228.83401659609,0.0,35431.0,1,1,1,2,108.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03669103327594479,19683.888888888887,5,3,5,5_1,5_2,5_0_1 +24360,2,60.0,0.0,2,111,1100.0,0.0,0.0,56,21,0.0,0.0,1875.7205977092674,1400.0,415.67676761895626,0.0,71,2,2,1,2,2,2,1,2,0,,2,,2,124381,1,2,0,0,1,,0.0,542.0,43,4.0,1.0,4.0,4.0,2.5,4,4,1508.03348398186,1100.0,59197.08170097028,1,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.02364981448024748,23678.832680388114,6,3,6,6_0,6_3,6_0_1 +24361,1,35.0,254.0,2,111,360.0,,,67,56,0.0,0.0,,383.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,3,30.0,8,,2,124382,2,1,0,0,2,,300.0,241.0,43,2.0,0.0,1.0,2.0,1.5,2,2,203.57645825595648,360.0,15405.180663497913,4,1,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024861766204891472,10270.120442331941,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +24362,2,30.0,0.0,7,111,301.0,0.0,0.0,0,67,0.0,0.0,513.2653635549904,301.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,2,,5,124383,2,1,0,1,1,,93.0,322.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1250.05885189096,301.0,26067.191654973583,0,1,2,3,55.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011547082017274755,26067.191654973583,7,4,7,7_0,7_2,7_0_0 +24363,2,66.0,0.0,9,120,520.0,0.0,0.0,77,86,0.0,794.5963662061343,886.7042825534718,1120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,124384,2,1,1,0,1,,120.0,650.0,41,0.0,0.0,3.0,2.0,1.5,2,2,1901.82939992727,520.0,29344.764284711884,5,5,2,3,82.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03816694484690411,19563.176189807924,5,3,5,5_1,5_1,5_0_0 +24364,1,43.0,329.0,6,111,0.0,0.0,808.0,0,52,0.0,0.0,509.29717865511304,808.0,0.0,966.9595752322621,71,1,2,2,1,1,2,2,2,3,20.0,2,,4,124385,1,1,0,0,1,,0.0,381.0,32,1.0,0.0,4.0,2.0,1.3,1,1,127.081784838189,0.0,15513.439496609755,0,1,2,3,124.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.05208387219201629,11933.41499739212,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +24365,2,64.0,0.0,5,111,480.0,,,0,69,0.0,0.0,,565.0,117.77508415870429,,71,0,0,0,0,0,0,0,0,3,8.0,1,,3,124386,1,1,0,0,2,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,93.6579950591848,480.0,17102.653082575063,0,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03303581013261895,17102.653082575063,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +24366,2,41.0,0.0,6,111,500.0,0.0,0.0,34,38,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,80.0,1,,4,124387,2,1,2,0,1,,480.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,564.022621493867,500.0,80445.75935202418,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00621536801973663,38307.504453344845,9,5,9,9_1,9_4,9_0_0 +24367,2,51.0,0.0,7,111,1.0,,,0,56,0.0,0.0,,277.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,124388,2,2,0,0,2,,440.0,,32,3.0,0.0,5.0,4.0,2.3,3,3,136.7363119012363,1.0,12446.536474385117,0,4,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022255187261939417,5411.537597558747,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24368,2,60.0,0.0,2,112,420.0,,,0,64,0.0,0.0,,470.0,69.27946126982604,,70,0,0,0,0,0,0,0,0,0,,1,,2,124389,2,1,0,0,2,,150.0,500.0,12,1.0,4.0,4.0,1.0,1.0,1,1,106.6097958846631,420.0,16984.80822563898,0,1,2,3,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027671787267549104,16984.80822563898,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +24369,2,67.0,0.0,1,111,450.0,0.0,0.0,77,90,0.0,0.0,767.3402445174275,1650.0,1662.707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124390,2,2,2,0,2,,600.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,982.694183647253,450.0,29968.113676565186,5,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05505852045970735,19978.742451043458,5,3,5,5_1,5_3,5_1_0 +24370,2,53.0,0.0,2,111,225.0,100.0,0.0,45,45,0.0,0.0,383.6701222587138,325.0,0.0,189.8504047939789,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,124391,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,602.368820530024,225.0,71348.60347331148,1,1,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004555099668090474,47565.73564887432,10,5,10,10_0,10_4,10_0_1 +24371,2,66.0,0.0,1,111,0.0,0.0,0.0,72,31,5062.477684975687,0.0,0.0,6116.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,124392,2,1,2,0,1,,997.0,,42,2.0,1.0,16.0,3.0,2.0,3,3,298.572289463704,0.0,62318.3268679073,6,1,0,1,320.0,9,7,3,1,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0981412741225185,31159.16343395365,8,4,8,8_1,8_3,8_1_0 +24372,2,46.0,0.0,1,111,304.0,840.0,0.0,0,47,0.0,0.0,518.3809651851066,1144.0,0.0,1594.7434002694229,31,2,1,2,2,1,2,2,2,2,20.0,1,,1,124393,2,2,1,0,1,,140.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1552.44160827135,304.0,23428.490188120868,0,1,1,2,59.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.048829437612674303,23428.490188120868,6,3,6,6_1,6_3,6_1_0 +24373,2,46.0,0.0,8,111,586.0,770.0,0.0,55,38,0.0,397.2981831030672,999.2475184160279,1656.0,0.0,1461.8481169136376,71,0,0,0,0,0,0,0,0,3,90.0,1,2003.0,6,124394,2,1,1,0,1,,410.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,529.65875774415,586.0,82163.6464924499,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02015489904226891,29344.159461589254,8,4,8,8_1,8_4,8_0_0 +24374,2,33.0,0.0,6,111,2200.0,0.0,0.0,52,21,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124395,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,541.91386377048,2200.0,50968.67289641983,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0431637685460422,28315.9293868999,8,4,8,8_1,8_4,8_0_0 +24375,2,66.0,0.0,1,111,974.0,0.0,0.0,77,75,3058.5802680061443,0.0,1660.8653292443876,3994.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,124396,2,1,2,0,2,,589.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1260.20471327257,974.0,43670.64699271699,6,5,0,1,185.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09145731229184868,29113.764661811325,8,4,8,8_1,8_3,8_1_0 +24376,2,54.0,0.0,8,111,1700.0,0.0,0.0,0,34,0.0,0.0,2898.840923732504,1760.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,124397,2,1,1,0,1,,300.0,460.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1746.27504138767,1700.0,45432.26952809269,0,1,3,4,100.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038738984829091966,45432.26952809269,10,5,10,10_1,10_2,10_0_0 +24377,2,51.0,0.0,1,211,856.0,0.0,0.0,67,52,1582.0242765549024,794.5963662061343,1459.6516651264844,3022.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,1,124398,2,1,1,0,2,,383.0,600.0,43,2.0,2.0,7.0,3.0,2.0,3,2,1912.19199847791,856.0,50656.0,1,1,2,3,130.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059657296272899556,25328.0,7,4,7,7_1,7_1,7_1_0 +24378,2,56.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,929.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124399,2,1,0,0,1,,480.0,352.0,12,1.0,2.0,5.0,1.0,1.0,1,1,486.563159876261,0.0,19564.468753504032,0,1,2,3,70.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04748403913771563,19564.468753504032,5,3,5,5_0,5_2,5_0_1 +24379,2,71.0,0.0,1,111,450.0,1540.0,0.0,90,77,0.0,119.18945493092015,767.3402445174275,2080.0,0.0,2923.696233827275,71,0,0,0,0,0,0,0,0,0,,1,,1,124400,2,1,1,0,1,,954.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,313.0761472212,450.0,32405.47210194927,5,5,0,1,125.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06418669024343215,21603.64806796618,6,3,6,6_1,6_3,6_1_0 +24380,2,49.0,0.0,2,211,500.0,,,81,52,0.0,0.0,,506.0,8.313535352379127,,71,0,0,0,0,0,0,0,0,1,1.0,1,,2,124401,2,2,0,0,2,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,8.628927407381553,500.0,18581.534375000003,4,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027231335679188222,12387.689583333335,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +24381,2,81.0,0.0,6,111,1550.0,0.0,0.0,86,74,0.0,0.0,2643.0608422266946,1550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,124402,2,1,2,0,1,,200.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1517.52861059943,1550.0,61609.46060233979,6,5,0,1,156.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025158473793570828,41072.97373489319,9,5,9,9_1,9_3,9_0_0 +24382,2,43.0,0.0,9,111,2380.0,0.0,0.0,54,53,0.0,0.0,4058.3772932255056,2380.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,35.0,1,2007.0,6,124403,2,1,1,0,1,,490.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,363.945807068545,2380.0,56552.93791172949,1,1,1,2,130.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0420844625917546,20197.477825617676,5,3,5,5_1,5_3,5_0_0 +24383,1,36.0,200.0,6,211,600.0,,,0,52,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,1,1.0,8,,4,124404,1,1,0,0,2,,250.0,200.0,32,1.0,0.0,4.0,4.0,1.9,1,1,63.465323898601255,600.0,24952.0,0,1,2,3,55.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02404616864379609,13132.631578947368,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +24384,2,23.0,0.0,2,111,0.0,,,0,68,0.0,0.0,,610.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,124405,1,2,0,0,2,,286.0,,22,2.0,1.0,4.0,4.0,2.5,4,3,118.57180259038873,0.0,19438.822192546308,0,1,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03138050206734751,7775.528877018523,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +24385,1,22.0,434.0,8,111,0.0,0.0,0.0,62,64,0.0,0.0,0.0,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,124406,2,1,1,0,1,,411.0,468.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1416.18538684409,0.0,20741.85707119138,4,1,2,3,88.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03760511883400024,9877.07479580542,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +24386,2,41.0,0.0,1,111,0.0,0.0,360.0,0,37,0.0,0.0,226.91458454930776,360.0,0.0,430.8235731232851,10,0,0,0,0,0,0,0,0,3,35.0,2,,1,124407,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,746.732780705686,0.0,63126.331204858536,0,1,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005702850033082431,63126.331204858536,10,5,10,10_0,10_4,10_1_0 +24387,1,26.0,200.0,5,120,0.0,,,0,68,0.0,0.0,,351.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,124408,2,2,0,0,2,,329.0,450.0,22,1.0,0.0,3.0,3.0,1.8,2,2,124.75069314086919,0.0,25043.324087935194,0,1,2,3,65.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01401571128367487,13912.957826630663,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +24388,1,44.0,377.0,5,111,1200.0,380.0,0.0,85,68,0.0,0.0,2046.2406520464733,1655.0,103.91919190473907,721.4315382171199,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,124409,2,2,0,0,2,,0.0,435.0,42,1.0,3.0,3.0,5.0,2.5999999999999996,3,2,2964.22922563576,1200.0,23539.503071640218,6,1,2,3,75.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0703073465469159,9053.655027553932,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24389,2,45.0,0.0,2,211,349.0,1200.0,0.0,0,38,0.0,0.0,595.1149896368494,1549.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,124410,1,2,4,0,1,,178.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1100.60620719248,349.0,28471.03822157131,0,1,1,2,160.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05440616488746054,28471.03822157131,8,4,8,8_1,8_1,8_0_1 +24390,2,79.0,0.0,2,111,318.0,,,0,86,0.0,0.0,,588.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,2,124411,2,1,0,0,2,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,102.08422980318396,318.0,5281.077450980392,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11134091583732449,5281.077450980392,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +24391,2,61.0,0.0,6,111,72.0,0.0,0.0,0,74,0.0,0.0,122.77443912278841,72.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,124412,2,2,0,0,2,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1425.67305243347,72.0,60433.02174625025,0,5,0,1,40.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0011914016198348954,60433.02174625025,10,5,10,10_0,10_3,10_0_0 +24392,2,65.0,0.0,1,111,480.0,800.0,0.0,77,74,0.0,0.0,818.4962608185893,1280.0,0.0,1518.8032383518312,12,0,0,0,0,0,0,0,0,0,,2,,1,124413,2,1,0,0,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1042.66265953557,480.0,89343.68299225646,5,5,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014326698398038273,59562.455328170974,10,5,10,10_0,10_4,10_1_0 +24393,2,39.0,0.0,1,111,1000.0,80.0,0.0,0,37,0.0,0.0,1705.2005433720612,1080.0,0.0,151.8803238351831,20,2,2,2,1,1,2,2,2,3,30.0,2,,1,124414,2,3,0,0,1,,0.0,900.0,12,1.0,0.0,2.0,1.0,1.0,1,1,983.665659832822,1000.0,30597.095395516968,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.03529746814327479,30597.095395516968,8,4,8,8_0,8_4,8_1_0 +24394,2,67.0,0.0,1,112,460.0,1462.0,0.0,78,74,0.0,0.0,784.3922499511482,1922.0,0.0,2775.6129180879716,44,0,0,0,0,0,0,0,0,0,,1,,1,124415,2,1,3,0,1,,126.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1976.19420589801,460.0,47597.17654697788,5,5,0,1,153.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04038054648268911,31731.451031318586,8,4,8,8_1,8_1,8_1_0 +24396,2,55.0,0.0,2,111,600.0,773.0,0.0,68,54,0.0,0.0,1023.1203260232367,1373.0,0.0,1467.5436290574569,60,2,2,2,1,1,2,2,2,2,15.0,1,,2,124417,2,2,1,0,1,,310.0,374.0,43,2.0,2.0,4.0,6.0,3.3,5,2,227.091451319988,600.0,37754.21218176834,1,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,1,0,0,0,0.036366803083843116,11440.670358111618,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +24397,2,37.0,0.0,7,111,900.0,,,34,34,0.0,0.0,,963.0,87.29212119998083,,10,0,0,0,0,0,0,0,0,2,25.0,1,,5,124418,2,3,0,0,2,,636.0,980.0,43,2.0,0.0,4.0,4.0,2.1,2,2,123.22031726318467,900.0,56600.03878346702,1,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01701412261719676,26952.399420698577,7,4,7,7_1,7_3,7_0_0 +24398,2,87.0,0.0,1,400,350.0,0.0,0.0,0,77,1339.4472208164839,0.0,596.8201901802214,1700.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124419,2,2,2,0,2,,100.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1212.49797613528,350.0,15400.204836105218,0,5,0,1,75.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11038814211187711,15400.204836105218,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +24399,2,35.0,0.0,7,111,600.0,0.0,0.0,0,43,0.0,0.0,1023.1203260232367,625.0,34.63973063491302,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,5,124420,2,2,5,0,1,,190.0,478.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1035.83591525327,600.0,18000.903136952187,0,1,2,3,30.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03472048014729896,18000.903136952187,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +24400,2,76.0,0.0,1,120,374.0,0.0,0.0,78,78,685.543853173791,1324.327277010224,637.7450032211509,2214.0,263.261952825339,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124421,2,2,3,0,1,,353.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1780.32124269241,374.0,26617.04238704171,5,5,0,1,99.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08317979014369635,17744.694924694475,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +24401,2,45.0,0.0,6,111,670.0,380.0,0.0,0,54,0.0,0.0,1142.484364059281,1050.0,0.0,721.4315382171199,42,0,0,0,0,0,0,0,0,2,20.0,2,,4,124422,1,2,0,0,1,,0.0,432.0,32,2.0,1.0,4.0,2.0,1.5,2,1,259.620908103743,670.0,18642.908792716175,0,1,2,3,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.056321683041770675,12428.605861810784,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +24402,2,63.0,0.0,7,111,399.0,1123.0,0.0,68,75,0.0,0.0,680.3750168054524,1522.0,0.0,2132.020045836383,50,0,0,0,0,0,0,0,0,0,,1,,5,124423,2,1,1,0,1,,283.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,690.266919318032,399.0,41331.45438338362,1,5,0,1,92.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03682425461930722,27554.30292225575,7,4,7,7_1,7_2,7_0_0 +24403,2,64.0,0.0,1,111,1100.0,900.0,0.0,46,38,0.0,0.0,1875.7205977092674,2000.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,0,,1,,1,124424,1,1,1,0,1,,1350.0,,43,2.0,1.0,7.0,3.0,1.8,2,2,1327.58857777839,1100.0,137679.21181678402,1,1,0,1,181.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014526521278037899,76488.45100932446,10,5,10,10_1,10_3,10_1_0 +24404,2,37.0,0.0,6,111,483.0,0.0,0.0,0,55,0.0,0.0,823.6118624487056,483.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,3.0,1,,4,124425,2,2,2,0,1,,0.0,520.0,12,1.0,0.0,1.0,1.0,1.0,1,1,824.486468858469,483.0,16584.002920989573,0,1,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029124452178471955,16584.002920989573,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +24405,2,32.0,0.0,1,111,850.0,150.0,0.0,52,52,0.0,0.0,1449.420461866252,1000.0,0.0,284.77560719096834,71,2,2,2,2,1,2,2,2,2,20.0,2,,1,124426,2,3,0,0,1,,0.0,664.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1568.47438592509,850.0,35012.17516828148,1,1,3,4,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.028561493114713087,19451.208426823043,5,3,5,5_0,5_4,5_1_0 +24406,2,58.0,0.0,5,112,665.0,1100.0,0.0,77,45,0.0,397.2981831030672,1133.9583613424206,2065.0,0.0,2088.354452733768,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,124427,2,1,2,0,1,,350.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,730.707107388569,665.0,52488.57821192563,5,1,0,1,110.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03934189247158581,34992.38547461709,9,5,9,9_1,9_0,9_0_0 +24407,2,76.0,0.0,6,111,480.0,,,0,72,0.0,0.0,,816.0,465.55797973323104,,71,0,0,0,0,0,0,0,0,0,,1,,4,124428,2,2,0,0,2,,160.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,116.35035977449763,480.0,5624.937522867969,0,5,0,1,260.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14506827794665864,5624.937522867969,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24408,2,61.0,0.0,6,111,960.0,,,72,68,0.0,0.0,,1120.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,7,,4,124429,2,2,0,0,2,,600.0,,42,4.0,3.0,4.0,5.0,3.0,5,5,78.67943863354706,960.0,16917.01276595745,5,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06620554204781387,5639.00425531915,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24409,2,91.0,0.0,2,111,250.0,660.0,0.0,0,77,0.0,0.0,426.3001358430153,910.0,0.0,1253.0126716402608,70,0,0,0,0,0,0,0,0,0,,1,,2,124430,2,1,1,0,1,,200.0,304.0,11,0.0,1.0,3.0,1.0,1.0,1,1,348.985766290535,250.0,17258.642579624884,0,5,2,3,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05272720585072681,17258.642579624884,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +24410,2,79.0,0.0,1,400,0.0,0.0,0.0,0,71,0.0,1589.1927324122687,0.0,2136.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124431,2,1,4,0,2,,100.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1645.22138322795,0.0,8790.67254564313,0,5,0,1,140.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24298482157188908,8790.67254564313,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +24411,2,56.0,0.0,1,120,600.0,1200.0,0.0,22,22,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,124432,2,1,2,0,1,,150.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,214.677824645342,600.0,43303.23942869724,1,1,0,1,156.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04156732899772695,28868.82628579816,8,4,8,8_1,8_0,8_1_0 +24412,2,21.0,0.0,1,300,0.0,0.0,0.0,0,67,0.0,0.0,0.0,920.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,1,124433,2,1,0,0,1,,351.0,266.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1824.14613265724,0.0,19917.676298994724,0,1,2,3,38.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04619012711068278,19917.676298994724,5,3,5,5_0,5_0,5_1_0 +24413,2,34.0,0.0,1,111,500.0,0.0,0.0,67,63,1582.0242765549024,132.4327277010224,852.6002716860306,2220.0,166.2707070475825,0.0,42,2,2,2,2,1,2,2,2,2,15.0,1,,1,124434,2,2,3,0,1,,200.0,816.0,43,2.0,0.0,6.0,4.0,2.1,2,2,1655.23238812345,500.0,32458.92361691436,1,1,2,3,160.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.06839413488262307,15456.630293768741,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +24414,0,28.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1047.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,25.0,2,,1,124435,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1405.3964988081,0.0,28404.76802828551,0,1,5,0,28.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03686000881814616,28404.76802828551,8,4,8,8_0,8_4,8_1_0 +24415,2,86.0,0.0,2,111,1293.0,0.0,0.0,0,77,0.0,344.3250920226582,2204.8243025800753,1646.0,128.85979796187644,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,124436,1,3,2,0,1,,206.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,2217.31159357372,1293.0,11097.943955607061,0,5,0,1,90.0,4,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1483157607016374,11097.943955607061,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +24416,1,35.0,350.0,5,111,0.0,0.0,1400.0,85,37,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,124437,2,1,0,0,1,,0.0,560.0,42,1.0,0.0,4.0,4.0,2.1,2,2,2121.86291259242,0.0,25753.176322711184,6,1,2,3,75.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0543622263311019,12263.417296529135,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +24417,2,59.0,0.0,7,111,432.0,,,0,85,0.0,0.0,,616.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,5,124438,2,2,0,0,2,,99.0,,21,2.0,0.0,5.0,3.0,2.0,3,3,79.70630470219986,432.0,15271.98457494903,0,6,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04033529479923901,7635.992287474515,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24418,2,67.0,0.0,1,400,0.0,0.0,0.0,75,74,2636.7071275915036,211.89236432163582,0.0,4513.0,69.27946126982604,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,124439,2,1,3,0,1,,250.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,212.177993225107,0.0,79172.27842356147,5,5,0,1,125.0,0,0,3,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05700227516323369,52781.518949040976,10,5,10,10_1,10_0,10_1_0 +24419,0,38.0,0.0,5,111,1800.0,,,0,68,0.0,0.0,,2064.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,3,124440,2,3,0,0,2,,832.0,,22,1.0,0.0,2.0,2.0,1.5,2,2,68.97239423580442,1800.0,20929.065187845183,0,1,5,0,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09861883373552173,13952.710125230122,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +24420,2,62.0,0.0,2,111,180.0,780.0,0.0,0,37,0.0,0.0,306.936097806971,960.0,0.0,1480.8331573930354,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,124441,1,2,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1102.23258381658,180.0,48314.88529969966,0,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01986965288326924,48314.88529969966,10,5,10,10_0,10_4,10_0_1 +24421,2,81.0,0.0,8,111,1120.0,0.0,0.0,90,74,0.0,0.0,1909.8246085767084,1180.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,0,,1,2003.0,6,124442,2,1,1,0,1,,825.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,2342.26926790598,1120.0,43186.427855025126,5,5,0,1,98.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027323399007697657,28790.951903350084,8,4,8,8_1,8_3,8_0_0 +24422,2,38.0,0.0,9,222,628.0,0.0,0.0,62,48,0.0,662.163638505112,1070.8659412376544,1362.0,324.2278787427859,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,124443,2,1,1,0,1,,224.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1066.69039859589,628.0,58007.31472866467,1,1,1,2,100.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02347979744228635,27622.530823173653,7,4,7,7_1,7_0,7_0_0 +24423,2,93.0,0.0,2,111,220.0,72.0,0.0,0,86,0.0,0.0,375.14411954185346,292.0,0.0,136.6922914516648,71,2,2,2,1,1,2,2,2,0,,2,,2,124444,2,1,0,1,1,,0.0,450.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1018.76225545103,220.0,13837.395533007195,0,6,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02110223699998127,13837.395533007195,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +24424,2,62.0,0.0,2,111,720.0,620.0,0.0,86,63,0.0,0.0,1227.744391227884,1340.0,0.0,1177.072509722669,71,0,0,0,0,0,0,0,0,0,,2,,2,124445,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,5.0,3.0,5,5,174.79091925801,720.0,23151.054307902246,6,1,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05788073329958939,7717.018102634082,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +24425,1,38.0,350.0,9,111,650.0,150.0,0.0,0,56,0.0,0.0,1108.3803531918397,800.0,0.0,284.77560719096834,43,0,0,0,0,0,0,0,0,0,,2,2009.0,6,124446,2,1,0,0,1,,0.0,450.0,32,1.0,0.0,3.0,2.0,1.3,1,1,848.908729094635,650.0,10721.276593295532,0,4,2,3,69.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07461797977493406,8247.135840996563,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24426,2,82.0,0.0,2,111,480.0,1000.0,0.0,77,78,0.0,0.0,818.4962608185893,1480.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,124447,2,1,2,0,2,,257.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1145.61719151661,480.0,20648.646989590154,5,5,0,1,95.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07167539842906559,13765.764659726769,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +24427,2,60.0,0.0,2,112,1100.0,1600.0,0.0,77,34,0.0,132.4327277010224,1875.7205977092674,2800.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,2,1.0,1,,2,124448,2,1,2,0,1,,400.0,,42,1.0,2.0,8.0,2.0,1.5,2,2,1707.43627548622,1100.0,68713.00040952342,5,1,0,1,180.0,9,2,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04074920296468277,45808.666939682276,10,5,10,10_1,10_1,10_0_1 +24428,1,54.0,430.0,2,111,421.0,186.0,0.0,81,63,0.0,0.0,717.8894287596378,607.0,0.0,353.12175291680074,71,1,2,2,1,2,2,2,2,0,,2,,2,124449,2,2,0,1,1,,0.0,383.0,43,3.0,0.0,4.0,5.0,3.0,5,4,198.453925330174,421.0,16108.65189912323,4,4,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03768161381853674,5369.550633041076,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +24429,2,47.0,0.0,9,111,660.0,,,12,35,0.0,0.0,,752.0,127.47420873647992,,31,0,0,0,0,0,0,0,0,2,80.0,1,2006.0,6,124450,2,1,0,0,2,,498.0,900.0,43,2.0,0.0,4.0,4.0,2.1,2,2,100.81590766645188,660.0,84076.50670930027,1,1,2,3,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008944234595760343,40036.43176633346,9,5,9,9_1,9_2,9_0_0 +24430,2,66.0,0.0,2,300,0.0,0.0,0.0,77,75,0.0,0.0,0.0,1746.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,124451,2,1,1,0,2,,156.0,650.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1149.93072869334,0.0,31681.18858389424,5,5,2,3,91.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05511156866404986,21120.792389262828,5,3,5,5_1,5_0,5_0_1 +24431,2,70.0,0.0,8,211,300.0,0.0,0.0,78,78,0.0,794.5963662061343,511.56016301161833,1284.0,532.0662625522641,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,124452,1,1,1,0,1,,400.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1159.13188267873,300.0,20386.56389098154,5,5,1,2,70.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06298265891526755,13591.042593987693,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +24432,2,80.0,0.0,2,111,468.0,,,0,86,0.0,0.0,,720.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,124453,2,1,0,0,2,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,134.61117987465653,468.0,21812.562475562845,0,7,0,1,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033008501445285665,21812.562475562845,6,3,6,6_1,6_3,6_0_1 +24433,1,41.0,373.0,2,111,0.0,0.0,1100.0,0,85,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,71,0,0,0,0,0,0,0,0,0,,2,,2,124454,2,2,0,0,1,,365.0,327.0,31,1.0,4.0,4.0,5.0,2.6,3,2,283.170357218384,0.0,14317.169351060922,0,6,2,3,70.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07683082968621088,5506.603596561893,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24434,1,22.0,240.0,2,211,335.0,36.0,0.0,63,68,0.0,794.5963662061343,571.2421820296405,971.0,0.0,68.3461457258324,60,0,0,0,0,0,0,0,0,2,7.0,2,,2,124455,1,3,0,1,1,760.0,0.0,227.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1822.70548360095,335.0,4764.517243606362,4,1,2,3,60.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.20379819200004193,3176.344829070908,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +24435,1,46.0,107.0,5,111,1200.0,0.0,0.0,56,62,0.0,0.0,2046.2406520464733,1584.0,532.0662625522641,0.0,71,2,2,2,2,1,2,2,2,2,30.0,2,,3,124456,1,3,0,0,1,,342.0,376.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1472.93827249504,1200.0,34007.530708529164,1,1,2,3,50.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.04657791868442625,18893.072615849534,5,3,5,5_0,5_2,5_0_0 +24436,2,57.0,0.0,5,111,680.0,1400.0,0.0,0,54,0.0,0.0,1159.5363694930015,2080.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,2,12.0,2,,3,124457,2,2,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,2307.85561167927,680.0,39434.08629486308,0,1,0,1,79.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05274624558173047,26289.390863242053,7,4,7,7_0,7_3,7_0_0 +24437,2,35.0,0.0,7,111,432.0,1200.0,0.0,47,34,0.0,476.7578197236806,736.6466347367304,1992.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,50.0,1,,5,124458,2,2,2,0,1,,980.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,4,4,675.833729629621,432.0,94933.56691845208,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020983094438146707,30623.731264016806,8,4,8,8_1,8_4,8_0_0 +24438,2,66.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,124459,1,2,0,1,1,,0.0,,31,1.0,0.0,2.0,2.0,1.5,2,2,851.292367313473,300.0,18120.437053180223,0,5,0,1,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016555892063726384,12080.291368786815,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +24439,2,28.0,0.0,9,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,526.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,2005.0,6,124460,2,2,0,0,1,,0.0,298.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2095.0743000684,0.0,24917.204832043055,0,1,3,4,19.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021109911948212344,24917.204832043055,7,4,7,7_0,7_3,7_0_0 +24440,2,28.0,0.0,2,300,330.0,0.0,0.0,0,52,1265.6194212439218,0.0,562.7161793127802,1620.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124461,2,1,2,0,1,,450.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,1488.80068121917,330.0,45443.71784166248,0,1,0,1,120.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0356484917375047,30295.811894441653,8,4,8,8_1,8_1,8_0_1 +24442,2,76.0,0.0,5,221,516.0,1178.0,0.0,78,75,0.0,158.91927324122688,879.8834803799836,1814.0,0.0,2236.4377684730716,71,2,2,2,2,1,2,2,2,0,,1,,3,124463,2,1,2,0,1,,434.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2281.85178273834,516.0,24561.79626961254,5,5,0,1,120.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.07385453327956522,16374.53084640836,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +24443,2,43.0,0.0,8,400,1116.0,,,0,85,0.0,0.0,,1466.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,124464,2,2,0,0,2,,360.0,,31,0.0,0.0,7.0,13.0,5.999999999999999,8,6,5.5111023518125295,1116.0,45541.54492711709,0,6,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03219038797094234,7590.257487852849,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +24444,2,44.0,0.0,7,221,1315.0,0.0,0.0,67,63,0.0,39.72981831030672,2242.3387145342604,1405.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,124465,1,2,5,0,1,,340.0,392.0,43,2.0,6.0,4.0,2.0,1.5,2,2,2306.30457266677,1315.0,39194.76475512426,1,1,2,3,88.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035846624128961314,26129.84317008284,7,4,7,7_1,7_1,7_0_0 +24445,2,52.0,0.0,6,111,450.0,,,77,53,0.0,0.0,,450.0,0.0,,10,0,0,0,0,0,0,0,0,2,15.0,1,,4,124466,2,1,0,0,2,,400.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,53.95227333382496,450.0,122959.41921026449,5,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0036597440268523536,81972.94614017633,10,5,10,10_1,10_2,10_0_0 +24447,2,59.0,0.0,2,111,1100.0,0.0,0.0,46,65,0.0,331.081819252556,1875.7205977092674,1350.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,45.0,1,,2,124468,2,1,3,0,1,,328.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,586.318372929427,1100.0,59252.573536467884,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022783820506448085,39501.71569097859,9,5,9,9_1,9_4,9_0_1 +24448,1,30.0,108.0,5,111,0.0,0.0,0.0,85,52,0.0,0.0,0.0,1971.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,45.0,2,,3,124469,2,1,0,1,1,522.0,0.0,326.0,42,1.0,0.0,4.0,4.0,2.1,2,2,83.2173549233346,0.0,32371.929724794114,6,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.060886082997096816,15415.20463085434,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +24449,0,79.0,0.0,1,111,480.0,1790.0,0.0,86,78,0.0,0.0,818.4962608185893,2426.0,216.15191916185728,3398.3222458122223,71,0,0,0,0,0,0,0,0,0,,1,,1,124470,2,3,1,0,1,,560.0,,41,0.0,7.0,7.0,2.0,1.5,2,2,1016.78062202497,480.0,26059.26473056979,6,5,5,0,100.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.093095489265823,17372.843153713195,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +24450,2,82.0,0.0,2,221,550.0,1300.0,0.0,0,78,0.0,0.0,937.8602988546337,1850.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,2,,2,124471,2,3,0,0,1,,0.0,307.0,11,0.0,4.0,2.0,1.0,1.0,1,1,3504.23868022141,550.0,17938.784979717668,0,5,3,4,30.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.10312850073690534,17938.784979717668,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +24451,2,38.0,0.0,9,111,1450.0,0.0,0.0,37,37,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,2006.0,6,124472,1,3,0,0,1,,1450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1229.66717187893,1450.0,180329.91038504857,1,1,0,1,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008040818058989185,85871.38589764218,10,5,10,10_0,10_4,10_0_0 +24452,2,53.0,0.0,5,300,1160.0,0.0,0.0,0,48,0.0,132.4327277010224,1978.032630311591,1324.0,88.67771042537734,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,124473,2,1,2,0,1,,315.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,1321.88603480719,1160.0,26518.24897469617,0,1,0,1,70.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04992788178674115,17678.832649797445,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +24453,1,63.0,150.0,2,111,0.0,0.0,680.0,0,78,0.0,0.0,428.6164374820258,1714.0,0.0,813.777860343983,50,0,0,0,0,0,0,0,0,0,,2,,2,124474,2,1,0,1,1,1512.0,0.0,382.0,11,0.0,4.0,5.0,1.0,1.0,1,1,287.668294806968,0.0,9844.715013066712,0,5,2,3,95.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.17410356701286311,9844.715013066712,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +24454,2,56.0,0.0,6,120,350.0,,,77,63,0.0,0.0,,602.0,349.1684847999233,,71,2,2,2,2,1,2,2,2,0,,1,,4,124475,1,1,0,0,1,,300.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,112.57587109565615,350.0,5551.679900744417,6,4,0,1,90.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.10843564664441094,3701.1199338296115,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24455,2,38.0,0.0,1,112,600.0,1500.0,0.0,0,38,0.0,79.45963662061344,1023.1203260232367,2160.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,0,,1,,1,124476,2,2,2,0,1,,400.0,,32,2.0,0.0,7.0,5.0,2.4,2,2,332.88951374157,600.0,88586.21778595676,0,1,1,2,140.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02438302541845755,36910.924077481985,9,5,9,9_1,9_1,9_1_0 +24456,2,62.0,0.0,5,112,900.0,0.0,0.0,0,75,2109.365702073203,0.0,1534.680489034855,3260.0,498.81212114274757,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,124477,2,2,2,0,1,,600.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,264.137730781828,900.0,32321.167140857004,0,5,0,1,120.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10086269427687382,32321.167140857004,8,4,8,8_1,8_0,8_0_0 +24457,2,56.0,0.0,9,111,550.0,250.0,0.0,85,52,0.0,317.83854648245375,937.8602988546337,1040.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,124478,2,1,1,0,1,,200.0,,42,1.0,1.0,5.0,4.0,2.1,2,2,1037.57180234741,550.0,33661.907235889965,5,1,0,1,85.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030895456775876417,16029.479636138078,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +24458,2,65.0,0.0,1,400,771.0,0.0,0.0,78,78,1200.2290844796526,264.8654554020448,1314.7096189398592,2196.0,120.54626260949732,0.0,50,0,0,0,0,0,0,0,0,0,,3,,1,124479,1,2,0,0,1,,276.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1195.90813243372,771.0,37463.86615850654,5,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.058616481030252035,24975.910772337695,7,4,7,7_0,7_0,7_1_0 +24459,2,63.0,0.0,2,111,260.0,72.0,0.0,0,77,1591.5164222142316,0.0,443.3521412767359,1841.0,0.0,136.6922914516648,70,0,0,0,0,0,0,0,0,0,,2,,2,124480,2,1,0,1,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1559.50645638222,260.0,14263.456535154904,0,5,0,1,65.0,7,5,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12907109826166735,14263.456535154904,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +24460,2,67.0,0.0,2,111,336.0,108.0,0.0,77,78,0.0,0.0,572.9473825730125,444.0,0.0,205.0384371774972,70,2,2,1,2,1,2,2,2,0,,2,,2,124481,2,2,0,1,1,737.0,0.0,260.0,41,0.0,2.0,3.0,2.0,1.5,2,2,304.335131822202,336.0,39273.41540167764,5,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01130535746532077,26182.27693445176,7,4,7,7_0,7_3,7_0_1 +24461,1,28.0,170.0,9,112,715.0,0.0,0.0,67,46,0.0,0.0,1219.2183885110237,776.0,84.52094274918778,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,124482,1,1,2,0,1,,178.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,843.124973940426,715.0,21096.238022782105,4,1,2,3,70.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03678380947171659,14064.158681854737,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +24462,2,51.0,0.0,8,111,450.0,0.0,0.0,0,54,0.0,794.5963662061343,767.3402445174275,1170.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,0,,1,1999.0,6,124483,2,1,2,0,1,,0.0,,32,3.0,0.0,3.0,3.0,2.0,3,3,2832.28781837336,450.0,39014.16442282422,0,4,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029989108245914962,19507.08221141211,5,3,5,5_1,5_3,5_0_0 +24463,2,47.0,0.0,7,111,400.0,0.0,0.0,0,52,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,5,124484,1,2,0,0,1,,0.0,274.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1446.86650243412,400.0,21409.662412779555,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01868315306836588,21409.662412779555,6,3,6,6_0,6_4,6_0_0 +24464,2,40.0,0.0,1,111,800.0,0.0,0.0,0,54,1898.4291318658827,0.0,1364.160434697649,2600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,1,124485,2,1,3,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1609.03600810869,800.0,26271.342309911513,0,1,0,1,90.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09896715475474908,26271.342309911513,7,4,7,7_1,7_3,7_1_0 +24465,2,57.0,0.0,9,111,175.0,0.0,0.0,0,34,0.0,0.0,298.4100950901107,175.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,2005.0,6,124486,2,3,0,0,1,,133.0,315.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1984.10183820774,175.0,32510.737020582113,0,1,2,3,30.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005382837057468425,32510.737020582113,8,4,8,8_0,8_2,8_0_0 +24466,0,89.0,0.0,2,111,2130.0,0.0,0.0,0,77,0.0,0.0,3632.0771573824904,2220.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,124487,2,1,2,0,1,,217.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1925.06899353497,2130.0,15026.683830235743,0,5,5,0,80.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1477371870653894,15026.683830235743,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +24467,1,39.0,160.0,2,111,480.0,1000.0,0.0,56,55,0.0,0.0,818.4962608185893,1480.0,0.0,1898.504047939789,50,2,2,2,2,1,2,2,2,2,5.0,1,,2,124488,2,3,2,0,1,,340.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,999.400862882944,480.0,31467.84418591502,3,1,1,2,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.04703213830779189,13111.601744131258,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +24468,2,61.0,0.0,2,111,0.0,0.0,1223.0,78,56,0.0,0.0,770.8792691772317,1223.0,0.0,1463.6034164716048,70,0,0,0,0,0,0,0,0,1,20.0,1,,2,124489,2,3,4,0,1,,89.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1023.39971658041,0.0,24100.340779703612,5,1,0,1,80.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.050746170403945655,16066.893853135742,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +24469,1,69.0,57.0,6,111,230.0,0.0,0.0,0,77,0.0,0.0,392.1961249755741,230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,124490,2,2,0,1,1,452.0,192.0,305.0,11,0.0,2.0,3.0,1.0,1.0,1,1,232.876199317051,230.0,12913.141847069684,0,5,2,3,70.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017811312128673998,12913.141847069684,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +24470,1,48.0,200.0,1,112,1500.0,0.0,0.0,0,85,0.0,139.05436408607352,2557.8008150580918,4405.0,3879.6498311102587,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,124491,2,2,1,0,1,,500.0,,31,0.0,2.0,9.0,3.0,2.0,3,2,1575.62441881538,1500.0,32025.202716751293,0,7,1,2,275.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0.13754791933591398,16012.601358375647,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +24472,2,62.0,0.0,7,111,1000.0,1200.0,0.0,42,75,0.0,331.081819252556,1705.2005433720612,2450.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,0,,1,,5,124493,1,3,3,0,1,,270.0,,42,2.0,1.0,7.0,3.0,2.0,3,3,1860.29464736652,1000.0,115623.61443552413,1,5,0,1,172.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021189443107802238,57811.80721776206,10,5,10,10_1,10_2,10_0_0 +24473,2,62.0,0.0,2,111,180.0,0.0,0.0,0,90,0.0,0.0,306.936097806971,180.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124494,2,2,0,1,2,,0.0,376.0,12,1.0,0.0,4.0,1.0,1.0,1,1,206.022126785387,180.0,18194.864547315192,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009892901347625615,18194.864547315192,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +24474,2,67.0,0.0,8,112,2200.0,0.0,0.0,77,74,0.0,66.2163638505112,3751.441195418535,2250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2003.0,6,124495,2,2,3,0,1,,360.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1460.18621480794,2200.0,76376.39222841799,5,5,0,1,203.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029459364789985776,50917.59481894533,10,5,10,10_1,10_0,10_0_0 +24475,2,70.0,0.0,6,111,420.0,,,0,77,0.0,0.0,,464.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,4,124496,2,2,0,0,2,,300.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,94.83118414745853,420.0,6097.948002326406,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07609117031220683,6097.948002326406,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24476,1,30.0,491.0,1,111,1256.64,0.0,0.0,85,22,0.0,0.0,2142.8232108230673,1257.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,8,,1,124497,1,3,0,0,2,,0.0,500.0,42,1.0,0.0,4.0,5.0,2.4,2,2,515.226988654627,1256.64,17744.41660306162,6,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.07083918441044251,7393.506917942343,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +24477,2,38.0,0.0,8,111,450.0,,,45,47,0.0,0.0,,570.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,124498,2,1,0,0,2,,426.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,168.42660118464477,450.0,41603.40743472792,1,1,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013700800851331223,23113.0041304044,6,3,6,6_1,6_2,6_0_0 +24478,1,75.0,61.0,5,111,450.0,450.0,0.0,77,78,0.0,0.0,767.3402445174275,900.0,0.0,854.326821572905,71,0,0,0,0,0,0,0,0,0,,2,,3,124499,2,1,0,0,1,,330.0,386.0,41,0.0,4.0,3.0,3.0,2.0,3,3,1402.67586438614,450.0,30573.18352848166,5,5,2,3,65.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029437562469134735,15286.59176424083,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +24479,2,56.0,0.0,2,400,1400.0,0.0,0.0,0,52,0.0,99.3245457757668,2387.2807607208856,1525.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,124500,1,2,1,0,1,,139.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,781.793792396892,1400.0,38805.12932313859,0,1,1,2,67.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039298928430337124,25870.08621542573,7,4,7,7_1,7_0,7_0_1 +24480,0,26.0,0.0,6,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,533.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,4,124501,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,432.843802032852,0.0,30384.595656160258,0,1,5,0,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017541783541619654,30384.595656160258,8,4,8,8_0,8_4,8_0_0 +24481,2,81.0,0.0,2,111,133.0,0.0,0.0,77,78,0.0,0.0,226.79167226848415,133.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,124502,2,1,0,1,1,492.0,0.0,446.0,41,1.0,1.0,4.0,3.0,2.0,3,3,687.280893031441,133.0,39948.82559527953,5,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003329259321598572,19974.412797639765,5,3,5,5_0,5_4,5_0_1 +24482,2,61.0,0.0,2,111,110.0,220.0,0.0,77,78,0.0,0.0,187.57205977092673,401.0,0.0,417.6708905467536,71,2,2,1,2,1,2,2,2,0,,2,,2,124503,2,2,0,1,1,552.0,0.0,460.0,41,3.0,0.0,5.0,8.0,4.3,7,7,1057.03891796793,110.0,84279.86990620206,5,5,2,3,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.004757957035841258,19599.969745628387,5,3,5,5_0,5_4,5_0_1 +24483,2,79.0,0.0,1,222,500.0,0.0,0.0,0,72,527.3414255183008,264.8654554020448,852.6002716860306,1315.0,159.34276092059991,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124504,2,1,2,0,2,,160.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,991.352435264272,500.0,8421.692342297572,0,5,0,1,90.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.15614438839037986,5614.461561531715,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +24484,2,64.0,0.0,2,111,0.0,0.0,1500.0,78,78,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,50,0,0,0,0,0,0,0,0,0,,1,,2,124505,1,1,1,0,1,,250.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,1717.13797393851,0.0,23977.314042143167,5,5,0,1,95.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06255913391147816,15984.876028095445,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +24485,2,33.0,0.0,7,111,390.0,,,47,42,0.0,0.0,,390.0,0.0,,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,124506,2,2,0,0,2,,390.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,108.74909444927061,390.0,97510.06219830863,1,1,1,2,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003999587234462504,40629.192582628595,9,5,9,9_1,9_2,9_0_0 +24486,2,49.0,0.0,2,111,250.0,340.0,0.0,45,42,0.0,768.1098206659299,426.3001358430153,1170.0,0.0,645.4913762995283,20,0,0,0,0,0,0,0,0,4,30.0,1,,2,124507,2,1,1,0,1,,220.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,224.957237447639,250.0,68695.60647723463,1,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017031656899160384,45797.07098482308,10,5,10,10_1,10_2,10_0_1 +24487,2,35.0,0.0,2,111,1080.0,1200.0,0.0,0,85,0.0,0.0,1841.6165868418261,2280.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,2,,2,124508,2,1,0,1,1,,0.0,450.0,31,0.0,0.0,3.0,2.0,1.3,1,1,293.690641533786,1080.0,11369.149616486444,0,7,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.20054270344844122,8745.499704989572,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +24488,2,45.0,0.0,2,111,480.0,66.0,0.0,0,54,0.0,0.0,818.4962608185893,546.0,0.0,125.30126716402607,42,0,0,0,0,0,0,0,0,1,5.0,2,,2,124509,2,1,0,1,1,,0.0,,22,2.0,0.0,4.0,3.0,2.0,3,3,964.619243297409,480.0,61003.4486382644,0,1,0,1,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008950313665669085,30501.7243191322,8,4,8,8_0,8_4,8_0_1 +24489,2,85.0,0.0,2,221,1200.0,1200.0,0.0,72,72,0.0,0.0,2046.2406520464733,2640.0,332.541414095165,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,124510,2,1,1,0,1,,120.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1970.15246513941,1200.0,13447.941876792485,5,5,0,1,100.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.1963125676915608,8965.294584528323,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +24490,2,35.0,0.0,1,111,0.0,0.0,0.0,54,65,0.0,0.0,0.0,1673.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,1,124511,2,1,0,0,1,,437.0,500.0,43,2.0,1.0,3.0,3.0,1.8,2,2,1971.04903454492,0.0,30695.301910901435,1,1,2,3,73.0,7,5,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.054503454791100595,17052.945506056352,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +24491,2,69.0,0.0,2,111,900.0,1200.0,0.0,77,77,0.0,0.0,1534.680489034855,2100.0,0.0,2278.2048575277468,44,0,0,0,0,0,0,0,0,0,,1,,2,124512,2,2,3,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1140.09007055028,900.0,51523.6560676425,5,5,0,1,78.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04075797721425336,34349.104045095,9,5,9,9_1,9_2,9_0_1 +24492,2,48.0,0.0,2,111,600.0,170.0,0.0,85,52,0.0,0.0,1023.1203260232367,770.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,124513,2,1,0,1,1,914.0,0.0,290.0,42,1.0,0.0,3.0,3.0,2.0,3,3,320.396749336773,600.0,22869.19766314488,6,1,2,3,55.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033669742653057846,11434.59883157244,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +24493,2,48.0,0.0,1,111,630.0,1500.0,0.0,56,53,0.0,0.0,1074.2763423243985,2130.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,124514,2,1,2,0,1,,370.0,,43,3.0,0.0,5.0,5.0,3.0,5,4,302.775249404102,630.0,40625.73342373129,1,1,1,2,120.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05242982268858616,13541.911141243763,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +24494,2,74.0,0.0,7,111,180.0,,,0,78,0.0,0.0,,204.0,33.25414140951651,,71,0,0,0,0,0,0,0,0,0,,2,,5,124515,2,1,0,0,2,,160.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,119.81508630801115,180.0,9581.058936839188,0,5,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021292009718844297,9581.058936839188,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +24495,2,80.0,0.0,2,111,360.0,,,0,75,0.0,0.0,,498.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,124516,2,1,0,0,2,,600.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,105.88306538655605,360.0,26684.131257487083,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018662777333636082,26684.131257487083,7,4,7,7_1,7_3,7_0_1 +24496,2,53.0,0.0,2,111,520.0,2350.0,0.0,52,37,0.0,0.0,886.7042825534718,2870.0,0.0,4461.484512658504,60,2,2,2,1,1,2,2,2,3,50.0,1,,2,124517,1,3,3,0,2,,1230.0,670.0,43,2.0,1.0,2.0,3.0,2.0,3,2,1219.74850248254,520.0,47056.39745018573,1,1,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.060990644322872455,23528.198725092865,6,3,6,6_1,6_4,6_0_1 +24497,2,60.0,0.0,5,211,390.0,,,71,52,0.0,0.0,,566.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,3,124518,2,1,0,0,2,,780.0,,42,1.0,5.0,3.0,2.0,1.5,2,2,86.60710037601925,390.0,22929.937730229947,5,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024683887355429115,15286.625153486631,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +24498,1,60.0,49.0,6,111,780.0,,,0,62,0.0,39.72981831030672,,890.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,4,124519,1,2,0,0,1,,350.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,110.62058972764653,780.0,6352.512675303165,0,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14010204237137172,6352.512675303165,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +24499,1,54.0,146.0,1,111,468.0,840.0,0.0,0,46,0.0,0.0,798.0338542981247,1308.0,0.0,1594.7434002694229,60,2,2,2,2,1,2,2,2,0,,2,,1,124520,1,2,0,0,1,,255.0,299.0,32,1.0,1.0,3.0,2.0,1.5,2,2,508.534542002023,468.0,17245.361275829826,0,4,2,3,67.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07584648295151826,11496.907517219885,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +24500,2,77.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1400.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124521,2,2,4,0,2,,150.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,890.235231637156,0.0,11522.902209595903,0,5,0,1,80.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12149716924909117,11522.902209595903,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +24501,2,48.0,0.0,8,111,770.0,0.0,0.0,37,21,2425.7705573841836,0.0,1313.0044183964872,3150.0,110.84713803172167,0.0,41,0,0,0,0,0,0,0,0,0,,1,1999.0,6,124522,2,1,2,0,1,,324.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,1130.84185580689,770.0,49680.45820706117,1,1,1,2,155.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06340521230442848,24840.229103530586,7,4,7,7_1,7_2,7_0_0 +24502,2,43.0,0.0,2,111,120.0,180.0,0.0,52,64,0.0,0.0,204.62406520464734,300.0,0.0,341.730728629162,20,0,0,0,0,0,0,0,0,2,25.0,2,,2,124523,2,1,0,1,1,670.0,0.0,190.0,43,2.0,0.0,3.0,4.0,2.1,2,2,340.101108199867,120.0,32442.40128639516,1,1,2,3,64.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009247157673430484,15448.762517331028,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +24503,2,52.0,0.0,6,111,300.0,600.0,0.0,77,53,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,13.0,1,,4,124524,2,1,2,0,1,,400.0,866.0,42,1.0,5.0,4.0,2.0,1.5,2,2,1264.2565132988,300.0,51561.32014169324,7,1,2,3,70.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01745494486034788,34374.2134277955,9,5,9,9_1,9_3,9_0_0 +24504,2,70.0,0.0,1,111,167.0,711.0,0.0,0,74,0.0,0.0,284.76849074313424,878.0,0.0,1349.83637808519,20,0,0,0,0,0,0,0,0,0,,1,,1,124525,1,3,3,0,2,,120.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,458.250769365906,167.0,29516.085187578756,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029746492274303656,29516.085187578756,8,4,8,8_1,8_4,8_1_0 +24505,2,50.0,0.0,8,111,1702.0,0.0,0.0,45,37,0.0,0.0,2902.251324819248,1862.0,221.69427606344334,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,2002.0,6,124526,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,2078.05113126859,1702.0,56495.26288357958,1,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03295851554557847,22598.105153431832,6,3,6,6_1,6_3,6_0_0 +24506,2,45.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1907.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,2,,2,124527,1,2,0,0,1,,0.0,290.0,32,1.0,2.0,3.0,2.0,1.3,1,1,396.928457899948,0.0,23466.24738023325,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08126565654491301,18050.959523256344,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +24507,2,55.0,0.0,6,400,700.0,0.0,0.0,54,63,1054.6828510366015,264.8654554020448,1193.6403803604428,1960.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,124528,2,1,2,0,1,,160.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1454.76104836842,700.0,37208.342420525776,1,1,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05267635891564943,24805.56161368385,7,4,7,7_1,7_0,7_0_0 +24508,2,37.0,0.0,9,111,800.0,,,0,85,0.0,0.0,,875.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,124529,2,3,0,0,2,,120.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,109.80395039069583,800.0,6221.920960273885,0,7,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14063180898419564,6221.920960273885,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24510,1,60.0,321.0,2,111,390.0,0.0,0.0,0,55,0.0,0.0,665.0282119151038,390.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124531,1,2,0,1,1,540.0,0.0,311.0,12,1.0,3.0,3.0,1.0,1.0,1,1,260.638037643518,390.0,11501.6,0,1,2,3,86.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03390832579814982,11501.6,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +24511,1,52.0,244.0,8,111,0.0,,,0,46,0.0,0.0,,21.0,29.09737373332694,,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,124532,2,1,0,0,2,,0.0,517.0,12,1.0,0.0,2.0,1.0,1.0,1,1,82.38977593633344,0.0,20970.373096092768,0,4,3,4,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0010014127981305566,20970.373096092768,5,3,5,5_0,5_3,5_0_0 +24512,1,37.0,298.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,442.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,124533,2,1,0,1,1,100.0,0.0,269.0,32,1.0,0.0,4.0,2.0,1.3,1,1,345.721239711783,0.0,11830.847283504323,0,4,2,3,68.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03735996158248766,9100.651756541787,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24513,2,39.0,0.0,9,112,522.0,1222.0,0.0,54,56,0.0,0.0,890.114683640216,1744.0,0.0,2319.9719465824223,31,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,124534,2,1,1,0,1,,328.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,2034.49164495041,522.0,55423.91801255774,1,1,1,2,150.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031466559249832375,19794.256433056336,5,3,5,5_1,5_1,5_0_0 +24514,2,50.0,0.0,7,111,0.0,,,54,48,0.0,0.0,,788.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,124535,1,1,0,0,2,,1200.0,,43,6.0,2.0,6.0,10.0,4.8999999999999995,7,6,9.207663865180178,0.0,117886.87486352929,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006684374328458714,24058.545890516183,6,3,6,6_1,6_2,6_0_0 +24515,2,68.0,0.0,2,111,300.0,0.0,0.0,62,78,0.0,0.0,511.56016301161833,399.0,137.1733333142556,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124536,2,1,0,1,1,,300.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1721.62750305256,300.0,22089.876331625906,4,5,0,1,73.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018062572827931805,14726.584221083938,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +24516,1,46.0,114.0,2,111,0.0,0.0,80.0,85,68,0.0,0.0,50.4254632331795,80.0,0.0,95.73857180517446,71,0,0,0,0,0,0,0,0,0,,2,,2,124537,2,1,0,1,1,856.0,0.0,331.0,42,1.0,1.0,3.0,4.0,2.1,2,2,336.225296808088,0.0,18616.709556622944,6,4,2,3,68.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.004297214808915563,8865.099788868069,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24517,2,56.0,0.0,1,400,700.0,0.0,0.0,62,38,0.0,52.973091080408956,1193.6403803604428,810.0,96.99124577775646,0.0,44,0,0,0,0,0,0,0,0,2,3.0,1,,1,124538,2,1,1,0,1,,750.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,990.132958993471,700.0,78608.13168372792,1,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.010304277466597926,39304.06584186396,9,5,9,9_1,9_0,9_1_0 +24518,2,89.0,0.0,8,111,150.0,480.0,0.0,0,74,0.0,0.0,255.78008150580916,630.0,0.0,911.2819430110987,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,124539,2,1,0,0,1,,106.0,460.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1867.43948610403,150.0,23329.670821345193,0,5,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027004238714915314,23329.670821345193,6,3,6,6_0,6_3,6_0_0 +24520,2,61.0,0.0,5,111,250.0,60.0,0.0,0,34,0.0,0.0,426.3001358430153,310.0,0.0,113.91024287638734,10,0,0,0,0,0,0,0,0,2,20.0,2,,3,124541,2,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1269.55067257654,250.0,75162.95724786169,0,1,0,1,85.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004124372049089635,75162.95724786169,10,5,10,10_0,10_2,10_0_0 +24521,2,33.0,0.0,9,112,320.0,900.0,0.0,43,38,0.0,0.0,545.6641738790596,1220.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,124542,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,378.069165681904,320.0,68472.43114504157,1,1,1,2,130.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01781738985454946,32605.919592876937,8,4,8,8_1,8_0,8_0_0 +24522,1,38.0,230.0,1,400,1200.0,0.0,0.0,0,52,0.0,0.0,2046.2406520464733,1232.0,44.33885521268867,0.0,71,2,2,2,1,1,2,2,2,3,10.0,1,,1,124543,1,3,3,0,2,,180.0,307.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1834.84982043422,1200.0,8492.180229330288,0,1,2,3,100.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.1450746412263978,8492.180229330288,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +24523,2,87.0,0.0,1,112,90.0,0.0,0.0,0,78,949.2145659329414,0.0,153.4680489034855,1054.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124544,1,3,2,0,2,,82.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,955.248792107312,90.0,19219.323475228288,0,5,0,1,60.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05484064001308353,19219.323475228288,5,3,5,5_1,5_0,5_1_0 +24524,2,69.0,0.0,5,111,1000.0,0.0,0.0,0,78,0.0,0.0,1705.2005433720612,1100.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124545,2,1,2,0,1,,200.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1287.15911924023,1000.0,20659.121294733533,0,5,0,1,80.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053245246218696356,20659.121294733533,5,3,5,5_1,5_2,5_0_0 +24525,2,66.0,0.0,5,111,2900.0,0.0,0.0,75,74,0.0,0.0,4945.081575778978,2900.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,124546,2,1,2,0,1,,820.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,517.667143662817,2900.0,94211.51875014651,5,5,0,1,167.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030781798642806512,62807.67916676434,10,5,10,10_1,10_4,10_0_0 +24526,2,52.0,0.0,6,112,1350.0,0.0,0.0,74,52,0.0,496.622728878834,2302.0207335522828,1815.0,124.70303028568689,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,4,124547,2,1,2,0,1,,100.0,,42,1.0,0.0,7.0,2.0,1.5,2,2,856.994426721394,1350.0,56305.7275196697,5,1,1,2,120.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03223473134888369,37537.1516797798,9,5,9,9_1,9_0,9_0_0 +24527,1,41.0,413.0,9,211,420.0,,,0,67,0.0,0.0,,546.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,124548,2,2,0,0,1,,280.0,498.0,32,1.0,0.0,4.0,3.0,1.8,2,1,92.09064703438149,420.0,35075.94089834516,0,4,2,3,61.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015566225338969016,19486.633832413976,5,3,5,5_0,5_2,5_0_0 +24528,2,46.0,0.0,8,112,900.0,0.0,0.0,35,52,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,2001.0,6,124549,2,1,2,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1624.74794957505,900.0,39728.75958420525,1,1,1,2,80.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022653614394691754,17273.373732263153,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +24529,2,61.0,0.0,6,211,600.0,850.0,0.0,43,34,0.0,264.8654554020448,1023.1203260232367,1650.0,0.0,1613.7284407488207,10,1,2,2,1,2,2,2,2,2,20.0,1,,4,124550,2,1,3,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1254.31183539981,600.0,164818.3114708302,1,1,0,1,135.0,3,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.010011023564526806,109878.8743138868,10,5,10,10_1,10_1,10_0_0 +24530,2,45.0,0.0,2,111,817.0,905.0,0.0,0,63,0.0,0.0,1393.148843934974,1722.0,0.0,1718.146163385509,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,124551,2,2,0,0,1,,358.0,293.0,12,1.0,0.0,2.0,1.0,1.0,1,1,230.97402859629,817.0,19728.0,0,1,2,3,64.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08728710462287105,19728.0,5,3,5,5_0,5_3,5_0_1 +24531,0,21.0,0.0,7,111,350.0,,,0,69,0.0,0.0,,630.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,,5,124552,2,1,0,0,2,,800.0,,22,2.0,0.0,4.0,5.0,2.4,2,2,104.47125141638946,350.0,20575.068893953954,0,1,5,0,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0306195815550891,8572.945372480815,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24532,2,56.0,0.0,1,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,1027.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,20.0,1,,1,124553,2,1,1,0,1,,571.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,742.020305001888,0.0,55588.03880300761,1,1,1,2,110.0,7,5,4,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018475197580534786,22235.21552120304,6,3,6,6_1,6_2,6_1_0 +24533,2,51.0,0.0,5,111,750.0,180.0,0.0,0,47,0.0,0.0,1278.9004075290459,930.0,0.0,341.730728629162,31,1,2,2,2,1,2,2,2,2,20.0,2,,3,124554,2,1,0,1,2,,0.0,,32,1.0,1.0,3.0,2.0,1.3,1,1,287.604023018573,750.0,25366.61523692667,0,1,0,1,87.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.036662360796413274,19512.780951482055,5,3,5,5_0,5_3,5_0_0 +24534,2,83.0,0.0,6,120,0.0,0.0,0.0,0,75,0.0,0.0,0.0,923.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,124555,2,1,2,0,1,,291.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,886.603013126158,0.0,2779.2673661995327,0,5,0,1,60.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.3321019097425457,2779.2673661995327,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +24535,2,45.0,0.0,1,300,600.0,0.0,0.0,52,67,1265.6194212439218,264.8654554020448,1023.1203260232367,2032.0,44.33885521268867,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,124556,2,2,2,0,2,,185.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1128.26606237325,600.0,32509.856443821358,1,1,1,2,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06250412097363138,14134.72019296581,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +24536,2,63.0,0.0,2,111,286.0,682.0,0.0,0,46,0.0,0.0,487.6873554044095,968.0,0.0,1294.7797606949362,41,2,2,2,2,1,2,2,2,2,30.0,1,,2,124557,2,3,4,0,1,,300.0,463.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1977.92508071854,286.0,35293.28143383257,0,1,2,3,75.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.027427316494069702,23528.854289221712,6,3,6,6_1,6_2,6_0_1 +24537,1,90.0,100.0,1,112,260.0,0.0,0.0,0,72,0.0,0.0,443.3521412767359,320.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124558,1,2,2,0,2,,227.0,200.0,11,0.0,7.0,3.0,1.0,1.0,1,1,3281.99990784321,260.0,9514.506507633992,0,5,2,3,90.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03363285313255575,9514.506507633992,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +24538,0,87.0,0.0,2,211,1209.0,2736.0,0.0,0,90,0.0,0.0,2061.587456936822,3945.0,0.0,5194.307075163263,70,0,0,0,0,0,0,0,0,0,,1,,2,124559,2,1,2,0,1,,500.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,1114.50201293981,1209.0,301125.9323754665,0,5,0,1,250.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01310083116681255,301125.9323754665,10,5,10,10_1,10_2,10_0_1 +24539,2,68.0,0.0,1,111,1024.0,0.0,0.0,77,72,0.0,2251.3563709173804,1746.1253564129906,2784.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124560,2,3,4,0,1,,234.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,367.258064853063,1024.0,57699.88125056519,5,5,0,1,160.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048249666024619935,38466.587500376794,9,5,9,9_1,9_2,9_1_0 +24540,2,48.0,0.0,9,300,732.0,,,43,34,0.0,0.0,,868.0,60.965925917446924,,10,0,0,0,0,0,0,0,0,2,7.0,1,2010.0,6,124561,2,1,0,0,1,,170.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,159.77651552732726,732.0,95309.97803641952,1,1,1,2,146.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009107126219967471,47654.98901820976,10,5,10,10_1,10_1,10_0_0 +24541,2,37.0,0.0,6,111,462.0,,,47,46,0.0,0.0,,562.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,2,30.0,2,,4,124562,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,180.77145173582787,462.0,79164.62306992267,1,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007099130624339736,37697.43955710603,9,5,9,9_0,9_2,9_0_0 +24542,2,50.0,0.0,2,400,360.0,0.0,0.0,0,63,2109.365702073203,0.0,613.872195613942,2360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124563,2,1,4,0,1,,275.0,,22,2.0,0.0,4.0,3.0,2.0,3,3,1105.10437304765,360.0,41703.23510340038,0,1,0,1,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05659033391890432,20851.61755170019,5,3,5,5_1,5_0,5_0_1 +24543,2,78.0,0.0,2,111,370.0,0.0,0.0,0,77,1845.6949893140527,132.4327277010224,630.9242010476627,2220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124564,2,2,5,0,2,,310.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,419.196462496432,370.0,15044.943196764834,0,5,0,1,90.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1475578851289631,15044.943196764834,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +24544,2,79.0,0.0,5,112,1146.0,0.0,0.0,71,71,485.1541114768367,0.0,1954.1598227043821,1702.0,133.01656563806603,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,124565,2,2,2,0,1,,365.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,901.083465239539,1146.0,23563.110814681742,5,5,0,1,110.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07223154927996668,15708.740543121161,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +24545,2,50.0,0.0,7,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1590.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,124566,2,2,5,0,1,,545.0,650.0,32,1.0,0.0,5.0,2.0,1.5,2,1,2068.35043682335,0.0,29578.121043767136,0,1,2,3,90.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053755950137848715,19718.747362511425,5,3,5,5_1,5_0,5_0_0 +24546,2,65.0,0.0,1,400,1194.0,0.0,0.0,75,74,421.8731404146406,0.0,2036.0094487862411,1594.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,124567,2,1,1,0,1,,259.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,858.937650526027,1194.0,57561.19467727797,6,5,0,1,190.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027692267489180945,38374.12978485198,9,5,9,9_1,9_0,9_1_0 +24547,2,53.0,0.0,1,112,450.0,1600.0,0.0,54,47,0.0,0.0,767.3402445174275,2050.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,0,,1,,1,124568,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2292.46600240499,450.0,111364.00682340258,1,4,1,2,85.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01840810202932823,61868.8926796681,10,5,10,10_1,10_1,10_1_0 +24548,2,60.0,0.0,2,111,432.0,612.0,0.0,85,65,0.0,0.0,736.6466347367304,1044.0,0.0,1161.8844773391509,41,0,0,0,0,0,0,0,0,0,,2,,2,124569,2,2,0,1,1,,104.0,,42,1.0,5.0,3.0,2.0,1.5,2,2,1410.62558859744,432.0,29713.953553531795,6,4,0,1,51.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035135008140844,19809.302369021196,5,3,5,5_0,5_2,5_0_1 +24549,2,45.0,0.0,1,111,1190.0,0.0,0.0,56,38,0.0,0.0,2029.1886466127528,1190.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,,1,124570,2,1,0,0,1,,942.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1179.48079011052,1190.0,54991.9401989852,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021639534733527366,23909.53921695009,6,3,6,6_0,6_4,6_1_0 +24550,2,50.0,0.0,7,120,246.0,,,85,52,0.0,0.0,,330.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,5,124571,2,1,0,0,2,,498.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,136.23544823239143,246.0,13254.095024477865,6,4,0,1,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024897965450719265,6311.473821179936,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24551,1,21.0,230.0,9,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,276.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2006.0,6,124572,2,1,0,0,1,,189.0,460.0,12,1.0,0.0,3.0,1.0,1.0,1,1,392.013665708953,0.0,7347.928934867941,0,4,2,3,54.0,5,4,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037561604425745625,7347.928934867941,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24552,1,55.0,300.0,8,111,1140.0,,,85,69,0.0,0.0,,1416.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,124573,2,2,0,0,1,,470.0,449.0,42,4.0,1.0,4.0,6.0,3.5,6,6,114.68793285370165,1140.0,37066.24653945837,6,4,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038201871842961393,10590.356154130963,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +24553,2,43.0,0.0,6,211,1080.0,,,62,56,0.0,0.0,,1344.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,,4,124574,2,1,0,0,2,,480.0,264.0,43,3.0,3.0,4.0,4.0,2.5,4,3,102.44011837761575,1080.0,33138.0,4,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04055766793409379,13255.2,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +24554,2,23.0,0.0,2,111,900.0,980.0,0.0,0,54,0.0,0.0,1534.680489034855,1880.0,0.0,1860.5339669809932,20,0,0,0,0,0,0,0,0,0,,2,,2,124575,2,1,0,1,1,96.0,0.0,361.0,22,3.0,0.0,3.0,5.0,3.0,5,5,176.520194446533,900.0,17407.747204735584,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10799789185177086,5802.582401578528,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +24555,2,44.0,0.0,7,211,1500.0,0.0,0.0,46,47,0.0,99.3245457757668,2557.8008150580918,1665.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,124576,2,1,1,0,1,,385.0,,43,5.0,0.0,6.0,5.0,3.0,5,5,1089.19602113501,1500.0,60333.614329749864,1,1,0,1,120.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027596556554693362,20111.204776583287,5,3,5,5_1,5_1,5_0_0 +24556,2,52.0,0.0,7,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,808.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,15.0,2,,5,124577,2,1,0,0,1,,202.0,550.0,22,2.0,1.0,3.0,2.0,1.5,2,2,1453.75688278222,0.0,35249.33271477304,0,1,2,3,67.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.022922419738781785,23499.555143182024,6,3,6,6_0,6_3,6_0_0 +24557,2,49.0,0.0,8,300,1535.0,0.0,0.0,0,45,0.0,0.0,2617.4828340761137,1535.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,124578,2,1,2,0,1,,419.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,819.401643064951,1535.0,47683.54866171778,0,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03219139604918621,23841.77433085889,6,3,6,6_1,6_0,6_0_0 +24558,2,40.0,0.0,9,111,500.0,900.0,0.0,0,42,0.0,0.0,852.6002716860306,1400.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,0,,2,2005.0,6,124579,1,3,0,0,1,,0.0,710.0,32,1.0,0.0,3.0,2.0,1.3,1,1,354.144010768929,500.0,15811.418390400599,0,1,2,3,62.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08854360598350655,12162.629531077384,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +24559,2,83.0,0.0,9,300,0.0,,,0,71,0.0,0.0,,539.0,324.2278787427859,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,124580,2,2,0,0,2,,299.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,98.38013463330704,0.0,10741.545921192686,0,5,0,1,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05017899694834169,10741.545921192686,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +24560,1,60.0,95.0,5,111,300.0,120.0,0.0,77,68,0.0,0.0,511.56016301161833,420.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,3,124581,2,3,0,1,1,910.0,0.0,338.0,42,1.0,3.0,3.0,2.0,1.5,2,2,269.578807151329,300.0,12946.051201022605,6,1,2,3,78.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.032442324959044214,8630.700800681736,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24561,2,59.0,0.0,7,112,960.0,0.0,0.0,22,31,0.0,529.7309108040896,1636.9925216371787,2206.0,1172.7627203756153,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,124582,2,1,3,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1452.95028953255,960.0,38898.97744169579,1,1,0,1,200.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05671100232150036,15559.590976678315,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +24562,2,56.0,0.0,1,111,550.0,1400.0,0.0,22,22,0.0,0.0,937.8602988546337,1950.0,0.0,2657.9056671157045,60,0,0,0,0,0,0,0,0,0,,1,,1,124583,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1057.77890700065,550.0,71222.73351768484,1,1,1,2,64.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027378898614103437,33915.58738937373,9,5,9,9_1,9_2,9_1_0 +24563,2,61.0,0.0,5,112,1500.0,0.0,0.0,0,72,0.0,0.0,2557.8008150580918,1680.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124584,2,2,3,0,1,,480.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,1011.7745388766,1500.0,20428.650990693415,0,5,0,1,77.0,6,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0822374419517642,13619.100660462276,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +24564,2,48.0,0.0,6,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,651.0,0.0,0.0,31,1,2,2,1,2,2,2,2,2,45.0,2,,4,124585,1,3,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,630.662648007482,0.0,37853.166494321114,0,1,1,2,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.017198032827654343,25235.44432954741,7,4,7,7_0,7_4,7_0_0 +24565,2,52.0,0.0,1,300,700.0,0.0,0.0,53,56,1265.6194212439218,0.0,1193.6403803604428,2070.0,235.55016831740858,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124586,1,3,3,0,1,,400.0,495.0,43,2.0,5.0,4.0,2.0,1.5,2,2,1620.28428439109,700.0,21830.806864617873,1,1,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0948201325235916,14553.871243078582,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +24566,2,75.0,0.0,2,111,370.0,0.0,0.0,0,74,0.0,6515.690202890301,630.9242010476627,5290.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,124587,2,2,0,1,1,540.0,0.0,580.0,21,1.0,0.0,4.0,2.0,1.5,2,2,904.49955267101,370.0,67759.02338961669,0,5,2,3,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07807078283260253,45172.68225974446,10,5,10,10_0,10_4,10_0_1 +24567,2,41.0,0.0,1,111,696.0,0.0,0.0,0,46,0.0,0.0,1186.8195781869547,696.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,1,124588,2,2,0,0,1,,189.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,1456.03564354616,696.0,14032.734786510287,0,4,0,1,47.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04959831498198534,14032.734786510287,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +24568,2,87.0,0.0,1,111,120.0,300.0,0.0,0,86,0.0,0.0,204.62406520464734,420.0,0.0,569.5512143819367,20,2,2,2,1,2,2,2,2,0,,1,,1,124589,1,3,4,0,1,,120.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,358.475027206792,120.0,9544.603974085738,0,5,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.04400392107837362,9544.603974085738,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +24569,2,49.0,0.0,8,111,528.0,,,0,54,0.0,0.0,,550.0,30.482962958723462,,42,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,124590,2,1,0,0,2,,120.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,140.1241538421023,528.0,30423.564274575252,0,1,1,2,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01807809219972398,30423.564274575252,8,4,8,8_0,8_2,8_0_0 +24570,1,83.0,106.0,1,111,312.0,100.0,0.0,0,77,0.0,0.0,532.0225695320831,412.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,1,124591,2,1,0,1,1,468.0,0.0,334.0,11,0.0,0.0,2.0,1.0,1.0,1,1,933.7923802443,312.0,15374.570310135687,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.026797496885385404,15374.570310135687,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +24571,1,35.0,434.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,523.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124592,2,2,2,0,2,,180.0,600.0,31,0.0,0.0,4.0,4.0,2.1,2,1,298.079461212336,0.0,9859.920494699647,0,6,2,3,80.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05304302405695328,4695.20023557126,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +24572,2,41.0,0.0,1,111,500.0,1000.0,0.0,38,37,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,10,1,2,2,2,2,2,2,1,3,45.0,2,,1,124593,2,2,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,697.579262340995,500.0,144675.89997626145,1,1,1,2,97.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.010368001859647124,68893.28570298164,10,5,10,10_0,10_4,10_1_0 +24574,2,75.0,0.0,7,111,420.0,,,86,71,0.0,0.0,,720.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,124595,2,3,0,0,2,,360.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,109.14377542562988,420.0,13069.375293585948,6,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05509062092304856,8712.916862390632,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24575,2,93.0,0.0,2,111,240.0,140.0,0.0,0,78,506.24776849756876,0.0,409.2481304092947,860.0,0.0,265.7905667115705,71,0,0,0,0,0,0,0,0,0,,2,,2,124596,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1773.72967624754,240.0,10013.514912065257,0,5,0,1,60.0,9,7,8,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08588392862568052,10013.514912065257,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +24576,1,72.0,62.0,5,111,456.0,504.0,0.0,0,78,0.0,0.0,777.5714477776598,960.0,0.0,956.8460401616536,70,0,0,0,0,0,0,0,0,0,,2,,3,124597,2,1,0,4,1,,264.0,243.0,11,0.0,3.0,3.0,1.0,1.0,1,1,919.406564327641,456.0,14855.77054912072,0,5,2,3,64.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06462135348858228,14855.77054912072,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +24577,2,29.0,0.0,2,111,382.0,200.0,0.0,47,52,0.0,0.0,651.3866075681274,582.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,124598,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,758.196360135223,382.0,48757.54530821337,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011936614042421044,18058.3501141531,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +24578,2,57.0,0.0,2,120,1375.0,0.0,0.0,55,62,0.0,0.0,2344.650747136584,1435.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,124599,2,1,2,0,1,,407.0,,43,2.0,7.0,3.0,2.0,1.5,2,2,1068.74047402793,1375.0,60682.35726841143,1,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023647729992634908,40454.90484560762,9,5,9,9_1,9_0,9_0_1 +24579,2,58.0,0.0,5,111,320.0,1200.0,0.0,86,77,0.0,0.0,545.6641738790596,1520.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,0,,1,,3,124600,2,2,1,0,1,,250.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,884.169718737672,320.0,29116.569412534016,5,7,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052203952274187726,19411.046275022676,5,3,5,5_1,5_4,5_0_0 +24580,2,27.0,0.0,9,112,760.0,0.0,0.0,84,62,0.0,0.0,1295.9524129627664,810.0,69.27946126982604,0.0,71,2,2,2,2,1,2,2,2,2,25.0,1,2006.0,6,124601,1,2,5,0,1,,370.0,550.0,42,1.0,0.0,2.0,2.0,1.5,2,2,3590.7078927977,760.0,43806.58019684807,3,1,3,4,50.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.018490372824361223,29204.38679789871,8,4,8,8_1,8_1,8_0_0 +24581,2,41.0,0.0,1,111,1700.0,1500.0,0.0,37,31,0.0,0.0,2898.840923732504,3200.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,1,5.0,1,,1,124602,2,2,1,0,1,,800.0,,43,2.0,0.0,12.0,5.0,2.4,2,2,296.778787272921,1700.0,426610.16302555904,1,1,0,1,300.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0075009933596173655,177754.23459398295,10,5,10,10_1,10_4,10_1_0 +24582,2,61.0,0.0,6,111,1000.0,0.0,0.0,47,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,75.0,1,,4,124603,2,1,2,0,1,,600.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,813.986010471603,1000.0,382706.0210258965,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002612971693832675,191353.01051294824,10,5,10,10_1,10_4,10_0_0 +24583,1,31.0,97.0,2,111,427.0,888.0,0.0,0,55,0.0,0.0,728.1206320198701,1315.0,0.0,1685.8715945705326,43,0,0,0,0,0,0,0,0,0,,2,,2,124604,2,1,0,1,1,,0.0,344.0,12,1.0,0.0,3.0,1.0,1.0,1,1,71.8097866697044,427.0,7155.836591169443,0,4,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.18376607448285737,7155.836591169443,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24584,2,36.0,0.0,6,111,968.0,0.0,0.0,0,34,0.0,0.0,1650.6341259841552,968.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,4,124605,2,3,0,0,1,,0.0,528.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1446.21741616251,968.0,32407.758400020404,0,1,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02986939078141827,32407.758400020404,8,4,8,8_0,8_3,8_0_0 +24585,2,42.0,0.0,2,111,468.0,,,0,43,0.0,0.0,,560.0,127.47420873647992,,20,0,0,0,0,0,0,0,0,0,,1,,2,124606,1,3,0,0,2,,318.0,,32,1.0,4.0,4.0,3.0,1.8,2,2,71.56634871919583,468.0,33831.7200321416,0,1,0,1,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016552513424324147,18795.400017856446,5,3,5,5_1,5_3,5_0_1 +24586,1,33.0,406.0,9,120,377.0,976.0,0.0,0,56,0.0,0.0,642.8606048512671,1353.0,0.0,1852.939950789234,50,2,2,2,2,2,2,2,1,0,,1,2010.0,6,124607,2,2,1,0,1,,276.0,471.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1968.38892145788,377.0,12708.747808431499,0,1,2,3,88.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.10646210156931156,7942.967380269686,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +24587,2,37.0,0.0,2,111,100.0,1200.0,0.0,52,62,0.0,0.0,170.52005433720612,1300.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,124608,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1774.38905798289,100.0,36739.79038319849,1,1,1,2,100.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035383979778896735,17495.138277713566,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +24588,2,93.0,0.0,1,112,500.0,1500.0,0.0,86,77,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,,1,124609,2,1,2,0,1,,257.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,245.543346987265,500.0,44270.3121394531,6,5,0,1,120.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04517700245030862,29513.541426302065,8,4,8,8_1,8_0,8_1_0 +24589,2,79.0,0.0,2,111,440.0,1800.0,0.0,74,75,0.0,0.0,750.2882390837069,2240.0,0.0,3417.30728629162,30,0,0,0,0,0,0,0,0,0,,1,,2,124610,1,2,2,0,1,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1289.26242315166,440.0,73680.6689857149,5,5,0,1,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030401461208696242,49120.445990476604,10,5,10,10_1,10_3,10_0_1 +24590,2,62.0,0.0,5,112,770.0,975.0,0.0,46,86,0.0,132.4327277010224,1313.0044183964872,1845.0,0.0,1851.0414467412943,12,0,0,0,0,0,0,0,0,0,,1,,3,124611,2,1,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,254.137166609294,770.0,141432.20847931816,5,5,0,1,100.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013045119070383441,94288.1389862121,10,5,10,10_1,10_0,10_0_0 +24591,2,39.0,0.0,1,112,230.0,1850.0,0.0,42,37,0.0,0.0,392.1961249755741,2080.0,0.0,3512.2324886886095,31,0,0,0,0,0,0,0,0,0,,1,,1,124612,2,1,1,0,1,,230.0,,43,2.0,0.0,8.0,2.0,1.5,2,2,303.498037643307,230.0,76557.68777561121,1,1,0,1,250.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027169054610118728,51038.45851707414,10,5,10,10_1,10_0,10_1_0 +24592,2,38.0,0.0,6,111,691.0,1570.0,0.0,47,37,0.0,0.0,1178.2935754700943,2261.0,0.0,2980.6513552654687,41,0,0,0,0,0,0,0,0,2,35.0,1,,4,124613,2,2,3,0,1,,650.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,522.338967425285,691.0,52260.876718567044,1,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0432637211996239,24886.13177074621,7,4,7,7_1,7_4,7_0_0 +24593,2,58.0,0.0,2,111,300.0,0.0,0.0,0,63,0.0,0.0,511.56016301161833,1508.0,0.0,0.0,71,2,1,2,1,1,2,2,2,1,15.0,2,,2,124614,2,2,0,1,1,606.0,38.0,249.0,12,1.0,1.0,3.0,1.0,1.0,1,1,378.567466881137,300.0,16776.498995790567,0,1,2,3,65.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.08988764582994199,16776.498995790567,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +24594,1,57.0,405.0,6,111,600.0,1200.0,0.0,0,75,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,2,,4,124615,2,2,0,0,1,,0.0,707.0,31,0.0,0.0,3.0,3.0,2.0,3,3,886.555910463284,600.0,19042.697998379714,0,7,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09452442086479325,9521.348999189857,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +24595,2,66.0,0.0,7,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,124616,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1662.81026050205,300.0,24970.70843473814,0,5,0,1,60.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012014076444169014,24970.70843473814,7,4,7,7_0,7_3,7_0_0 +24596,0,31.0,0.0,9,400,0.0,0.0,0.0,85,52,0.0,0.0,0.0,105.0,145.4868686666347,0.0,50,2,2,2,2,2,2,2,1,2,10.0,1,2005.0,6,124617,2,1,1,0,1,1500.0,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,1310.97882533355,0.0,24261.698515635086,6,1,5,0,80.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.0043278091157688044,11553.18976935004,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +24597,2,24.0,0.0,5,112,1050.0,0.0,0.0,54,56,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,1,,3,124618,2,1,3,0,1,,0.0,610.0,43,2.0,1.0,2.0,2.0,1.5,2,2,862.899907381632,1050.0,18197.152956533424,4,1,2,3,24.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05770133396735629,12131.435304355617,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +24598,2,62.0,0.0,2,112,251.0,398.0,0.0,68,78,0.0,0.0,428.00533638638734,649.0,0.0,755.604611080036,70,0,0,0,0,0,0,0,0,0,,1,,2,124619,2,1,4,0,1,,290.0,330.0,42,1.0,1.0,4.0,2.0,1.5,2,2,779.705684131445,251.0,32103.395124779036,1,5,2,3,100.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020215930354950798,21402.263416519356,6,3,6,6_1,6_1,6_0_1 +24599,2,60.0,0.0,1,111,380.0,0.0,0.0,54,47,2109.365702073203,0.0,647.9762064813832,2428.0,66.50828281903301,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,124620,2,2,1,0,1,,270.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1102.2491669436,380.0,73606.89458899992,1,1,0,1,120.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03298604041859483,49071.26305933328,10,5,10,10_1,10_3,10_1_0 +24600,2,57.0,0.0,5,400,0.0,,,52,43,0.0,0.0,,1186.0,415.67676761895626,,44,0,0,0,0,0,0,0,0,1,5.0,1,,3,124621,2,2,0,0,2,,324.0,,43,3.0,1.0,4.0,4.0,2.5,4,3,34.65086116441197,0.0,77713.25243928275,1,1,1,2,120.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015261232322332927,31085.3009757131,8,4,8,8_1,8_1,8_0_0 +24601,2,58.0,0.0,2,111,720.0,,,85,55,0.0,0.0,,1098.0,523.7527271998849,,50,0,0,0,0,0,0,0,0,0,,2,,2,124622,2,2,0,0,2,,500.0,,42,1.0,2.0,3.0,3.0,2.0,3,3,121.31209771996448,720.0,38450.433544274114,6,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02855624498318589,19225.216772137057,5,3,5,5_0,5_3,5_0_1 +24602,0,49.0,0.0,1,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1293.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,2.0,1,,1,124623,1,1,2,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,463.355865022798,0.0,22444.156123855988,0,1,5,0,100.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05760965094275319,22444.156123855988,6,3,6,6_1,6_3,6_1_0 +24603,1,47.0,240.0,5,111,480.0,200.0,0.0,42,56,0.0,0.0,818.4962608185893,680.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,3,124624,2,3,0,1,1,1428.0,0.0,360.0,43,2.0,0.0,4.0,5.0,2.8,4,4,275.214867960954,480.0,24895.734920624505,4,1,2,3,86.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027313915502717858,8891.333900223039,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24604,1,37.0,80.0,2,111,1400.0,0.0,0.0,56,64,0.0,397.2981831030672,2387.2807607208856,1850.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124625,2,1,1,0,1,,120.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1362.63220408951,1400.0,24557.246787308228,1,1,1,2,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07533417797292016,11693.927041575345,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +24605,2,44.0,0.0,5,112,470.0,1250.0,0.0,46,38,0.0,238.3789098618403,801.4442553848687,1900.0,0.0,2373.130059924736,31,2,2,2,2,1,2,2,2,2,20.0,1,,3,124626,2,1,1,0,1,,390.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,1140.77889834681,470.0,51283.90274774633,1,1,0,1,100.0,8,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.037048662410613734,22297.349020759277,6,3,6,6_1,6_1,6_0_0 +24606,2,42.0,0.0,9,120,800.0,0.0,0.0,55,63,0.0,1324.327277010224,1364.160434697649,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,124627,1,1,1,0,1,,600.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,756.944634975467,800.0,13485.152795313714,1,1,1,2,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13348013384212645,7491.751552952063,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +24607,2,68.0,0.0,1,111,350.0,0.0,0.0,86,78,0.0,1059.4618216081792,596.8201901802214,1374.0,310.3719864888207,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124628,2,1,2,0,1,,157.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,921.612933277814,350.0,26266.6756937508,5,5,0,1,64.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052309626692763914,17511.1171291672,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +24608,2,54.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124629,2,2,5,0,1,,0.0,800.0,11,0.0,0.0,3.0,1.0,1.0,1,1,3203.69313573,0.0,23207.574224397937,0,7,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.053861725827677634,23207.574224397937,6,3,6,6_1,6_3,6_1_0 +24609,1,78.0,66.0,2,111,210.0,555.0,0.0,0,75,0.0,0.0,358.0921141081328,765.0,0.0,1053.669746606583,70,2,2,2,1,2,2,2,2,0,,1,,2,124630,2,3,1,0,1,,210.0,228.0,11,0.0,3.0,2.0,1.0,1.0,1,1,368.122886112877,210.0,12297.79251979079,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.062206286109388206,12297.79251979079,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +24610,2,63.0,0.0,1,111,1111.0,1650.0,0.0,0,74,0.0,0.0,1894.47780368636,2761.0,0.0,3132.5316791006517,10,0,0,0,0,0,0,0,0,0,,1,,1,124631,2,3,3,0,1,,200.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1203.616003713,1111.0,87834.69408620217,0,5,0,1,120.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03143404811418045,87834.69408620217,10,5,10,10_1,10_2,10_1_0 +24611,2,71.0,0.0,5,111,300.0,120.0,0.0,75,74,0.0,0.0,511.56016301161833,420.0,0.0,227.8204857527747,10,0,0,0,0,0,0,0,0,0,,2,,3,124632,2,1,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1684.72576479128,300.0,126660.35541004725,5,5,0,1,135.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.003315954693481649,84440.23694003151,10,5,10,10_0,10_3,10_0_0 +24612,2,30.0,0.0,2,211,500.0,,,53,34,0.0,0.0,,600.0,138.5589225396521,,30,0,0,0,0,0,0,0,0,2,10.0,1,,2,124633,2,1,0,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,82.23153982982286,500.0,77642.88238067576,1,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007727688380478411,36972.80113365512,9,5,9,9_1,9_2,9_0_1 +24613,2,76.0,0.0,2,111,350.0,100.0,0.0,0,75,0.0,0.0,596.8201901802214,450.0,0.0,189.8504047939789,60,2,2,2,1,1,2,2,2,0,,2,,2,124634,2,3,0,1,1,646.0,0.0,365.0,11,0.0,4.0,4.0,1.0,1.0,1,1,941.243892925316,350.0,17425.337901362618,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02582446335028092,17425.337901362618,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +24614,2,38.0,0.0,7,111,720.0,30.0,0.0,0,64,0.0,0.0,1227.744391227884,750.0,0.0,56.95512143819367,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,124635,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1332.08737592644,720.0,19051.119051285903,0,1,0,1,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.039367766165388424,19051.119051285903,5,3,5,5_0,5_3,5_0_0 +24615,2,75.0,0.0,1,111,304.0,1706.0,0.0,0,74,0.0,0.0,518.3809651851066,2010.0,0.0,3238.84790578528,60,2,2,2,2,1,2,2,2,0,,1,,1,124636,2,1,3,0,1,,176.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,473.700796674263,304.0,33021.482207298184,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,1,0,0,0.06086946634865965,33021.482207298184,8,4,8,8_1,8_4,8_1_0 +24616,0,51.0,0.0,6,111,1092.0,0.0,0.0,64,35,0.0,0.0,1862.0789933622907,1476.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124637,1,2,5,0,1,,930.0,,42,1.0,1.0,3.0,3.0,2.0,3,3,1190.76786720521,1092.0,33061.13213635357,5,1,5,0,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04464456915487811,16530.566068176784,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +24617,0,91.0,0.0,1,111,480.0,2400.0,0.0,0,71,0.0,0.0,818.4962608185893,2880.0,0.0,4556.4097150554935,20,0,0,0,0,0,0,0,0,0,,2,,1,124638,2,2,0,0,2,,0.0,,11,0.0,6.0,7.0,1.0,1.0,1,1,823.452240818552,480.0,53932.86442718279,0,5,0,1,154.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05339972261047657,53932.86442718279,10,5,10,10_0,10_4,10_1_0 +24618,2,43.0,0.0,5,112,2000.0,0.0,0.0,38,38,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,10,2,2,1,2,1,2,2,1,3,100.0,1,,3,124639,2,1,3,0,1,,550.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,659.112787575956,2000.0,97690.37006457755,1,1,1,2,116.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02047284700301487,37573.21925560675,9,5,9,9_1,9_0,9_0_0 +24619,1,53.0,357.0,2,111,200.0,,,0,68,0.0,0.0,,440.0,332.541414095165,,71,0,0,0,0,0,0,0,0,3,15.0,1,,2,124640,2,2,0,0,2,,200.0,420.0,32,1.0,2.0,3.0,2.0,1.3,1,1,129.8059126962516,200.0,15354.362575089339,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.028656350782926582,11811.048134684106,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +24620,2,75.0,0.0,2,111,1020.0,,,0,78,0.0,0.0,,1158.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,1,,2,124641,2,1,0,0,2,,720.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,113.0405660521195,1020.0,23366.669322709167,0,5,0,1,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0495577689745703,23366.669322709167,6,3,6,6_1,6_2,6_0_1 +24621,2,46.0,0.0,6,111,600.0,,,63,56,0.0,0.0,,1104.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,1,,4,124642,2,1,0,0,2,,300.0,,43,2.0,3.0,6.0,4.0,2.3,3,3,94.84303866403951,600.0,19206.30797716992,4,1,0,1,135.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0574811151269832,8350.568685726053,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24622,2,59.0,0.0,1,111,524.0,1155.0,0.0,77,62,0.0,0.0,893.52508472696,1679.0,0.0,2192.7721753704564,50,0,0,0,0,0,0,0,0,0,,1,,1,124643,2,1,4,0,2,,347.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,375.788573710082,524.0,39789.51703212424,7,4,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04219704397629285,26526.344688082827,7,4,7,7_1,7_3,7_1_0 +24623,0,81.0,0.0,2,111,150.0,70.0,0.0,0,77,0.0,0.0,255.78008150580916,220.0,0.0,132.89528335578524,41,0,0,0,0,0,0,0,0,0,,2,,2,124644,2,1,0,1,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,838.481679602008,150.0,36214.63908657046,0,6,0,1,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006074891412671374,36214.63908657046,9,5,9,9_0,9_4,9_0_1 +24624,1,43.0,130.0,9,400,300.0,,,85,62,0.0,0.0,,476.0,243.8637036697877,,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,124645,2,1,0,0,1,,505.0,,42,2.0,0.0,4.0,4.0,2.3,3,3,151.29550323398064,300.0,26238.5340572059,6,1,1,2,98.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01814125739502874,11408.058285741696,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +24625,2,86.0,0.0,6,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1183.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,124646,2,1,2,0,1,,277.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1074.47399001093,0.0,11119.769062986774,0,5,2,3,75.0,8,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10638710150354919,11119.769062986774,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +24626,1,90.0,101.0,5,111,495.0,0.0,0.0,0,77,0.0,0.0,844.0742689691702,495.0,0.0,0.0,70,1,2,2,2,1,2,2,2,0,,2,,3,124647,2,1,0,1,1,156.0,0.0,188.0,11,0.0,4.0,2.0,1.0,1.0,1,1,1106.92363922647,495.0,13846.175870733787,0,5,3,4,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03574994313384863,13846.175870733787,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +24627,2,38.0,0.0,9,112,470.0,570.0,0.0,42,34,0.0,0.0,801.4442553848687,1040.0,0.0,1082.1473073256798,10,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,124648,2,1,1,0,1,,450.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1389.20493772152,470.0,57306.40079683749,1,1,1,2,120.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018148059999213793,23877.66699868229,6,3,6,6_1,6_0,6_0_0 +24628,2,35.0,0.0,2,112,200.0,1000.0,0.0,54,37,0.0,0.0,341.04010867441224,1200.0,0.0,1898.504047939789,31,2,2,2,2,1,2,2,2,3,80.0,1,,2,124649,2,1,4,0,1,,1200.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2998.15175692689,200.0,57373.624132304205,1,1,1,2,67.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.020915534239789122,38249.08275486947,9,5,9,9_1,9_1,9_0_1 +24629,0,75.0,0.0,5,111,250.0,,,77,78,0.0,0.0,,450.0,277.1178450793042,,71,2,2,2,2,1,2,2,2,0,,1,,3,124650,1,2,0,0,2,,250.0,,41,0.0,10.0,5.0,2.0,1.5,2,2,106.38536212271978,250.0,17840.98543370846,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.025222822005659926,11893.990289138974,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +24630,2,61.0,0.0,2,111,311.0,0.0,0.0,0,77,0.0,0.0,530.317368988711,311.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,124651,1,3,0,1,1,540.0,0.0,361.0,11,0.0,2.0,4.0,1.0,1.0,1,1,932.227014481305,311.0,15177.76411509349,0,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.020490501607593626,15177.76411509349,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +24631,2,68.0,0.0,1,111,940.0,0.0,0.0,0,78,0.0,0.0,1602.8885107697374,940.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,124652,2,1,0,0,1,,0.0,420.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2206.17779692479,940.0,15931.150701253067,0,5,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05900389856497084,15931.150701253067,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +24632,2,39.0,0.0,9,111,300.0,,,0,85,0.0,0.0,,612.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,124653,2,2,0,0,2,,0.0,,31,0.0,1.0,2.0,4.0,1.9,1,1,108.27538771861869,300.0,15978.231325301205,0,6,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03830211163803283,8409.595434369056,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24634,0,49.0,0.0,2,120,600.0,0.0,0.0,0,65,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,2,124655,2,2,3,0,2,,90.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,330.826277780314,600.0,32744.807371507144,0,1,0,1,80.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018323515945373656,32744.807371507144,8,4,8,8_1,8_0,8_0_1 +24635,2,53.0,0.0,6,111,0.0,,,75,56,0.0,0.0,,481.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,124656,2,2,0,0,2,,182.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,136.12303303966002,0.0,32176.90226780207,5,1,0,1,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014948611149598274,21451.268178534712,6,3,6,6_0,6_3,6_0_0 +24636,2,59.0,0.0,2,300,1555.0,0.0,0.0,71,11,0.0,0.0,2651.586844943555,1660.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124657,2,1,2,0,1,,120.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,830.733876678454,1555.0,39131.55831487882,5,1,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0424210042095059,26087.70554325255,7,4,7,7_1,7_0,7_0_1 +24637,2,60.0,0.0,5,120,920.0,0.0,0.0,75,42,0.0,397.2981831030672,1568.7844999022964,1220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,124658,2,1,2,0,1,,444.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1723.47436353622,920.0,54684.99742598668,5,1,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022309592345710668,36456.66495065779,9,5,9,9_1,9_0,9_0_0 +24638,2,53.0,0.0,6,111,500.0,,,45,37,0.0,0.0,,638.0,191.2113131047199,,10,0,0,0,0,0,0,0,0,2,180.0,1,,4,124659,2,1,0,0,2,,1200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,98.19147948205435,500.0,148771.50082445363,1,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00428845576245697,99181.00054963575,10,5,10,10_1,10_2,10_0_0 +24639,2,86.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1765.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,124660,2,1,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1518.10260673269,0.0,41736.025444805564,0,5,0,1,80.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04228960427327108,41736.025444805564,9,5,9,9_0,9_2,9_0_1 +24640,0,28.0,0.0,1,111,454.0,0.0,0.0,0,46,0.0,0.0,774.1610466909158,454.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,1,124661,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.7609340468,454.0,45638.227374330236,0,1,5,0,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009947800914269464,45638.227374330236,10,5,10,10_0,10_4,10_1_0 +24641,2,66.0,0.0,8,111,360.0,,,0,75,0.0,0.0,,423.0,87.29212119998083,,20,0,0,0,0,0,0,0,0,0,,2,1999.0,6,124662,2,2,0,0,1,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,124.04730896282783,360.0,40654.426561460146,0,5,0,1,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01040477103669194,40654.426561460146,9,5,9,9_0,9_2,9_0_0 +24642,2,41.0,0.0,2,111,180.0,396.0,0.0,0,67,0.0,0.0,306.936097806971,576.0,0.0,751.8076029841565,41,1,2,2,1,1,2,2,2,1,15.0,1,,2,124663,1,1,1,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,777.95971366263,180.0,20727.23030901663,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.027789530555340624,20727.23030901663,5,3,5,5_1,5_3,5_0_1 +24643,2,71.0,0.0,1,112,1260.0,0.0,0.0,78,78,0.0,0.0,2148.552684648797,1449.0,261.87636359994247,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124664,2,2,4,0,1,,142.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,2622.63638088994,1260.0,36104.233478223294,5,5,0,1,100.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04013379762996442,18052.116739111647,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +24644,2,36.0,0.0,9,112,1165.0,0.0,0.0,46,46,0.0,0.0,1986.5586330284514,1165.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,90.0,1,2009.0,6,124665,2,2,1,0,1,,195.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,3024.60342520726,1165.0,61028.26254912631,1,1,1,2,160.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019089516092027074,29061.077404345862,8,4,8,8_1,8_1,8_0_0 +24645,2,39.0,0.0,1,111,720.0,210.0,0.0,35,54,0.0,0.0,1227.744391227884,930.0,0.0,398.6858500673557,60,0,0,0,0,0,0,0,0,2,30.0,2,,1,124666,1,1,0,0,2,,0.0,525.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1596.10149211423,720.0,16382.68838814133,1,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0567672397817921,10921.792258760886,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +24646,2,65.0,0.0,2,111,0.0,0.0,250.0,77,74,0.0,0.0,157.57957260368593,250.0,0.0,299.1830368911702,44,0,0,0,0,0,0,0,0,0,,2,,2,124667,2,2,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,235.4622824776,0.0,38549.003023133184,5,5,0,1,93.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006485252027139988,25699.335348755456,7,4,7,7_0,7_4,7_0_1 +24647,2,65.0,0.0,2,111,120.0,,,56,21,0.0,0.0,,330.0,290.9737373332694,,70,0,0,0,0,0,0,0,0,0,,1,,2,124668,2,2,0,0,2,,160.0,,43,2.0,8.0,3.0,2.0,1.5,2,2,84.66932140342483,120.0,3157.94722558946,4,4,0,1,24.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10449826308873876,2105.298150392973,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +24648,2,64.0,0.0,2,111,251.0,315.0,0.0,0,75,0.0,0.0,428.00533638638734,566.0,0.0,598.0287751010335,42,2,1,2,2,1,2,2,2,0,,2,,2,124669,2,2,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,793.61381898756,251.0,21229.67124332207,0,5,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026660799101071286,21229.67124332207,5,3,5,5_0,5_4,5_0_1 +24650,1,55.0,294.0,1,400,900.0,0.0,0.0,68,78,0.0,1854.0581878143134,1534.680489034855,2460.0,221.69427606344334,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124671,1,3,4,0,2,,800.0,300.0,42,1.0,3.0,7.0,5.0,2.8,4,3,975.760679732763,900.0,9229.0,1,7,2,3,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.2665510889587171,3296.071428571429,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +24651,2,76.0,0.0,1,111,2075.0,0.0,0.0,71,71,1265.6194212439218,0.0,3538.291127497027,3461.0,257.7195959237529,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124672,2,1,3,0,2,,778.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,309.120613477696,2075.0,31100.10197016132,5,5,0,1,194.0,7,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11128580875138679,20733.401313440878,5,3,5,5_1,5_2,5_1_0 +24652,2,33.0,0.0,9,112,0.0,0.0,0.0,54,62,0.0,0.0,0.0,1064.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,124673,2,1,1,0,1,,210.0,710.0,43,2.0,0.0,4.0,4.0,2.1,2,2,787.145945793185,0.0,45482.04455006837,1,1,2,3,85.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02339384718795366,21658.11645241351,6,3,6,6_1,6_0,6_0_0 +24653,2,37.0,0.0,9,111,531.0,0.0,0.0,52,34,0.0,0.0,905.4614885305645,531.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,120.0,2,2006.0,6,124674,2,1,0,0,1,,832.0,756.0,43,2.0,0.0,4.0,5.0,2.4,2,2,4279.89335779088,531.0,54577.3616145929,1,1,2,3,78.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00972930871502629,22740.56733941371,6,3,6,6_0,6_3,6_0_0 +24654,2,87.0,0.0,1,112,1060.0,0.0,0.0,0,72,0.0,0.0,1807.5125759743848,1130.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124675,1,1,2,0,2,,202.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1661.94130892921,1060.0,11268.60614339764,0,5,0,1,60.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10027859573937416,11268.60614339764,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +24655,1,36.0,267.0,9,221,480.0,,,0,56,0.0,0.0,,564.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,124676,1,2,0,0,2,,430.0,465.0,32,1.0,0.0,3.0,3.0,1.8,2,1,69.96086107017757,480.0,25825.239385222867,0,1,2,3,81.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021839100563099498,14347.355214012703,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +24656,2,60.0,0.0,2,111,310.0,0.0,0.0,0,75,0.0,0.0,528.612168445339,397.0,120.54626260949732,0.0,44,2,2,2,2,1,2,1,2,0,,2,,2,124677,1,3,0,1,1,915.0,0.0,241.0,11,0.0,2.0,4.0,1.0,1.0,1,1,373.935937440129,310.0,28086.768129571996,0,5,2,3,70.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014134769731018168,28086.768129571996,8,4,8,8_0,8_2,8_0_1 +24657,2,89.0,0.0,1,111,180.0,,,0,71,0.0,0.0,,390.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,1,124678,2,1,0,0,2,,120.0,,11,0.0,13.0,4.0,1.0,1.0,1,1,99.48423475439284,180.0,9452.51314973262,0,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04125886881321417,9452.51314973262,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +24658,2,40.0,0.0,2,120,540.0,0.0,0.0,63,52,105.46828510366015,0.0,920.8082934209131,680.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,16.0,1,,2,124679,2,2,1,0,1,,265.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1066.19605886747,540.0,44325.67510658434,1,1,1,2,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.015340995898311532,19272.032655036674,5,3,5,5_1,5_0,5_0_1 +24659,1,87.0,44.0,2,111,75.0,600.0,0.0,0,78,0.0,0.0,127.89004075290458,675.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,124680,2,1,0,1,1,,0.0,263.0,11,0.0,0.0,3.0,1.0,1.0,1,1,260.817940107005,75.0,18162.045586349865,0,5,2,3,72.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03716541712169873,18162.045586349865,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +24660,1,25.0,406.0,1,112,0.0,0.0,0.0,68,68,0.0,0.0,0.0,372.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,124681,2,2,0,0,2,,0.0,610.0,43,2.0,0.0,2.0,4.0,2.1,2,2,1250.56997588943,0.0,12137.737053267922,4,4,2,3,56.0,8,1,9,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.030648217074355225,5779.874787270439,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +24661,2,80.0,0.0,2,300,417.0,0.0,0.0,77,77,2109.365702073203,0.0,711.0686265861495,2517.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,124682,2,1,3,0,1,,200.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,969.686106564984,417.0,31524.109065610326,5,5,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07984365219525894,21016.072710406883,5,3,5,5_1,5_0,5_0_1 +24662,1,35.0,223.0,2,111,342.0,458.0,0.0,64,53,0.0,0.0,583.1785858332449,800.0,0.0,869.5148539564234,50,0,0,0,0,0,0,0,0,3,50.0,2,,2,124683,2,1,0,0,1,,0.0,370.0,43,2.0,0.0,2.0,4.0,2.1,2,2,148.062080755033,342.0,41183.843718525226,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019425093137679757,19611.35415167868,5,3,5,5_0,5_4,5_0_1 +24663,1,39.0,467.0,9,112,0.0,,,0,53,0.0,0.0,,641.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,124684,2,1,0,0,2,,400.0,520.0,32,2.0,0.0,4.0,4.0,2.3,3,2,77.95731192611477,0.0,31624.155591442886,0,1,2,3,95.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020269315907788122,13749.632865844735,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +24664,1,94.0,169.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,421.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,124685,2,3,0,1,1,675.0,0.0,373.0,11,0.0,4.0,3.0,1.0,1.0,1,1,472.26051244334,0.0,13103.377340652461,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.032129121298664895,13103.377340652461,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +24665,1,68.0,210.0,2,111,310.0,1080.0,0.0,0,78,0.0,0.0,528.612168445339,1390.0,0.0,2050.384371774972,71,2,2,2,2,1,2,2,1,0,,2,,2,124686,2,2,0,0,1,,300.0,257.0,21,1.0,2.0,3.0,2.0,1.5,2,2,1520.73643685515,310.0,12972.790051109352,0,5,2,3,50.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10714734413520674,8648.526700739569,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24666,2,55.0,0.0,2,111,300.0,780.0,0.0,52,68,0.0,0.0,511.56016301161833,1080.0,0.0,1480.8331573930354,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,124687,2,2,2,0,2,,0.0,400.0,43,2.0,0.0,3.0,2.0,1.5,2,2,765.182486064033,300.0,52335.79250092996,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020635972981221398,34890.528333953305,9,5,9,9_1,9_4,9_0_1 +24667,1,33.0,188.0,2,111,520.0,885.0,0.0,0,55,0.0,0.0,886.7042825534718,1405.0,0.0,1680.1760824267133,50,0,0,0,0,0,0,0,0,0,,2,,2,124688,1,2,0,0,1,,354.0,270.0,22,4.0,6.0,6.0,5.0,2.8,4,4,884.313176709316,520.0,31785.8604214581,0,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04420204397083139,11352.093007663607,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +24668,2,75.0,0.0,1,112,350.0,0.0,0.0,0,75,0.0,365.5143284548218,596.8201901802214,661.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124689,2,2,2,0,1,,210.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,1054.52493291855,350.0,16686.315089285534,0,5,0,1,89.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039613299668806765,16686.315089285534,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +24669,2,55.0,0.0,5,111,420.0,624.0,0.0,63,52,0.0,0.0,716.1842282162656,1044.0,0.0,1184.6665259144283,41,2,2,2,1,2,2,2,2,1,10.0,2,,3,124690,1,3,0,0,1,,467.0,555.0,43,2.0,2.0,5.0,3.0,2.0,3,3,1359.14990529281,420.0,36204.4677687076,1,1,2,3,99.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.028836220067357397,18102.2338843538,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +24670,0,57.0,0.0,7,111,240.0,,,85,55,0.0,0.0,,366.0,174.58424239996165,,60,0,0,0,0,0,0,0,0,0,,1,,5,124691,2,1,0,0,1,,318.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,117.78664900813699,240.0,20343.947242206235,6,1,0,1,111.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017990608982738812,13562.631494804156,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +24671,2,66.0,0.0,6,111,1250.0,0.0,0.0,78,74,0.0,105.94618216081791,2131.5006792150766,1330.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,124692,2,1,3,0,1,,350.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1325.16883519658,1250.0,49385.51232585332,5,5,0,1,95.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0269309750443501,32923.67488390221,8,4,8,8_1,8_2,8_0_0 +24672,1,42.0,350.0,9,111,360.0,,,0,56,0.0,0.0,,360.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,124693,1,1,0,0,2,,220.0,810.0,12,1.0,0.0,4.0,1.0,1.0,1,1,109.6585070554014,360.0,9691.318144842453,0,1,2,3,84.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03714664967340749,9691.318144842453,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +24674,2,39.0,0.0,1,111,1200.0,0.0,0.0,22,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,40.0,2,,1,124695,1,1,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1846.91664979596,1200.0,119394.34096700134,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010050727616409062,66330.18942611186,10,5,10,10_0,10_4,10_1_0 +24675,2,42.0,0.0,8,111,1200.0,0.0,0.0,54,21,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,124696,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,984.747695965174,1200.0,60847.28568424234,1,1,1,2,101.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020707579406887215,28974.897944877306,8,4,8,8_1,8_2,8_0_0 +24676,1,60.0,213.0,5,111,500.0,420.0,0.0,78,21,0.0,0.0,852.6002716860306,920.0,0.0,797.3717001347114,71,1,2,2,1,2,2,2,2,0,,2,,3,124697,1,2,0,1,1,695.0,300.0,307.0,41,0.0,2.0,4.0,2.0,1.5,2,2,880.509875685036,500.0,11507.367982132519,6,7,2,3,68.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.07994877729020948,7671.578654755012,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24677,2,49.0,0.0,7,111,518.0,,,68,53,0.0,0.0,,656.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,5,124698,2,1,0,0,1,,532.0,,43,2.0,1.0,4.0,4.0,2.3,3,2,131.86870803721717,518.0,37231.12847959567,4,1,0,1,89.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01761966469427639,16187.447165041596,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +24678,2,50.0,0.0,8,300,2400.0,0.0,0.0,47,47,0.0,0.0,4092.4813040929466,2450.0,69.27946126982604,0.0,42,0,0,0,0,0,0,0,0,2,50.0,1,2003.0,6,124699,2,1,1,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,4,2,1158.25090951607,2400.0,80026.07399858448,1,1,0,1,144.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030615021799561676,38107.654285040226,9,5,9,9_1,9_0,9_0_0 +24679,2,28.0,0.0,1,111,440.0,1000.0,0.0,62,46,0.0,0.0,750.2882390837069,1440.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,3,75.0,1,,1,124700,2,2,3,0,1,,480.0,330.0,43,2.0,0.0,5.0,3.0,1.8,2,2,221.832868308806,440.0,42424.370269462735,1,1,2,3,81.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033942754856552786,23569.094594145965,6,3,6,6_1,6_3,6_1_0 +24680,2,46.0,0.0,7,120,0.0,0.0,0.0,54,21,0.0,0.0,0.0,2562.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,124701,2,1,1,0,1,,277.0,,43,3.0,1.0,5.0,4.0,2.3,3,3,862.882288457799,0.0,67712.39060864112,1,1,1,2,110.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037836501960293374,29440.169829843966,8,4,8,8_1,8_0,8_0_0 +24681,2,38.0,0.0,9,112,1363.0,0.0,0.0,56,47,0.0,278.10872817214704,2324.1883406161196,1573.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,124702,2,1,1,0,1,,343.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1467.71486100323,1363.0,51526.42860593445,4,1,1,2,105.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030528023046775512,24536.3945742545,7,4,7,7_1,7_2,7_0_0 +24682,2,50.0,0.0,7,112,2500.0,,,0,56,0.0,0.0,,2750.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,5,124703,2,2,0,0,2,,1200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,100.89973509510358,2500.0,13123.046464440778,0,4,0,1,120.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.209554999858578,13123.046464440778,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +24683,2,47.0,0.0,9,112,2400.0,0.0,0.0,0,43,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,33,2,2,1,2,1,2,2,2,2,30.0,1,2007.0,6,124704,2,1,1,0,1,,300.0,,32,1.0,0.0,7.0,3.0,2.0,3,2,641.83038038377,2400.0,44292.83496944074,0,1,1,2,167.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.054184836027223106,22146.41748472037,6,3,6,6_1,6_0,6_0_0 +24684,1,80.0,35.0,1,111,190.0,1000.0,0.0,0,77,0.0,0.0,323.9881032406916,1190.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,1,124705,2,3,0,0,1,,190.0,225.0,11,0.0,2.0,3.0,1.0,1.0,1,1,444.436916967532,190.0,26789.993993950462,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.044419569495563076,26789.993993950462,7,4,7,7_0,7_3,7_1_0 +24685,2,38.0,0.0,5,111,500.0,,,42,34,0.0,0.0,,560.0,83.13535352379125,,10,0,0,0,0,0,0,0,0,2,40.0,1,,3,124706,2,1,0,0,2,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,114.87613206506452,500.0,83776.48573936979,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006684453221661391,39893.564637795134,9,5,9,9_1,9_2,9_0_0 +24686,2,66.0,0.0,1,111,256.0,,,0,75,0.0,0.0,,302.0,63.73710436823996,,31,0,0,0,0,0,0,0,0,0,,1,,1,124707,2,2,0,0,2,,360.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,106.0922323827217,256.0,39410.99759873414,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.00766283571592971,39410.99759873414,9,5,9,9_1,9_2,9_1_0 +24687,1,21.0,290.0,1,221,0.0,0.0,0.0,63,56,0.0,0.0,0.0,432.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,124708,2,1,0,0,1,,210.0,360.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2614.88977471012,0.0,9838.579865294372,4,4,2,3,60.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.043908776054548446,6559.053243529582,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +24688,2,88.0,0.0,2,211,763.0,1733.0,0.0,0,86,0.0,0.0,1301.0680145928827,2496.0,0.0,3290.107515079654,20,0,0,0,0,0,0,0,0,0,,1,,2,124709,2,1,2,0,2,,272.0,,11,0.0,5.0,7.0,1.0,1.0,1,1,1557.45949108617,763.0,41291.71953932858,0,6,0,1,160.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.060447954888937665,41291.71953932858,9,5,9,9_1,9_1,9_0_1 +24689,1,41.0,151.0,2,111,137.0,0.0,0.0,0,67,0.0,0.0,233.61247444197238,207.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,2,7.0,2,,2,124710,2,1,0,1,1,596.0,0.0,327.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1510.10652628373,137.0,18936.641789016176,0,1,2,3,63.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01093118844968944,14566.647530012442,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +24690,2,42.0,0.0,9,120,840.0,0.0,0.0,85,48,1160.1511361402618,0.0,1432.3684564325313,1940.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,124711,2,1,1,0,1,,350.0,,42,1.0,1.0,5.0,3.0,1.8,2,2,93.7546239269761,840.0,41418.84738166034,6,1,1,2,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04683858008224062,23010.470767589075,6,3,6,6_1,6_0,6_0_0 +24691,1,23.0,270.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,453.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124712,2,1,0,1,1,490.0,136.0,290.0,12,1.0,0.0,2.0,1.0,1.0,1,1,466.449112855351,0.0,11544.160707892624,0,4,2,3,42.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03924061795937132,11544.160707892624,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +24692,2,70.0,0.0,2,111,380.0,100.0,0.0,78,75,0.0,0.0,647.9762064813832,480.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,2,,2,124713,2,1,0,1,1,297.0,0.0,441.0,41,0.0,2.0,4.0,2.0,1.5,2,2,219.609488567493,380.0,23159.6076298221,5,5,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0207257397306643,15439.738419881402,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +24693,2,53.0,0.0,2,111,600.0,,,0,52,0.0,0.0,,712.0,155.18599324441035,,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,124714,2,1,0,0,2,,660.0,370.0,32,2.0,0.0,3.0,2.0,1.5,2,2,88.5742382803468,600.0,39270.31070901368,0,1,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018130745266463483,26180.207139342452,7,4,7,7_0,7_2,7_0_1 +24694,2,58.0,0.0,2,111,350.0,350.0,0.0,0,38,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,31,0,0,0,0,0,0,0,0,3,90.0,2,,2,124715,2,2,0,0,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1313.8983152293,350.0,43455.35395964664,0,1,0,1,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01610848690014196,43455.35395964664,10,5,10,10_0,10_4,10_0_1 +24695,0,51.0,0.0,2,111,579.0,,,0,53,0.0,0.0,,855.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,124716,2,2,0,0,2,,450.0,,32,3.0,0.0,4.0,4.0,2.3,3,3,104.5245872425849,579.0,19459.0,0,4,5,0,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0439385374376895,8460.434782608696,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +24696,2,39.0,0.0,5,111,0.0,0.0,1200.0,37,38,0.0,0.0,756.3819484976925,1235.0,48.49562288887823,1436.078577077617,12,0,0,0,0,0,0,0,0,2,5.0,1,,3,124717,2,1,1,0,1,,480.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,284.458579245291,0.0,84078.27157596007,4,1,1,2,80.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01468869396160512,56052.18105064004,10,5,10,10_1,10_2,10_0_0 +24697,2,49.0,0.0,2,111,477.0,410.0,0.0,52,63,0.0,0.0,813.3806591884731,887.0,0.0,778.3866596553135,43,0,0,0,0,0,0,0,0,0,,2,,2,124718,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,254.747260852712,477.0,50091.24570221582,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017707684996956723,25045.62285110791,7,4,7,7_0,7_4,7_0_1 +24698,2,85.0,0.0,2,111,165.0,100.0,0.0,0,77,0.0,0.0,281.3580896563901,265.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,0,,2,,2,124719,2,2,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1528.78277527891,165.0,31486.435476515166,0,5,0,1,64.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008416322647816261,31486.435476515166,8,4,8,8_0,8_2,8_0_1 +24699,2,35.0,0.0,2,111,398.0,210.0,0.0,85,37,0.0,0.0,678.6698162620803,608.0,0.0,398.6858500673557,12,0,0,0,0,0,0,0,0,3,1.0,2,,2,124720,2,1,0,1,1,,0.0,636.0,42,1.0,0.0,3.0,3.0,1.8,2,2,243.807484193997,398.0,45545.56705500347,6,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013349268420914464,25303.09280833526,7,4,7,7_0,7_4,7_0_1 +24700,2,62.0,0.0,1,111,283.0,0.0,0.0,43,90,0.0,0.0,482.5717537742933,1974.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,124721,2,1,2,0,1,,215.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,714.760022642555,283.0,160708.33312212623,1,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012283121613238988,107138.88874808415,10,5,10,10_1,10_4,10_1_0 +24701,2,81.0,0.0,6,111,720.0,1600.0,0.0,78,78,0.0,0.0,1227.744391227884,2320.0,0.0,3037.6064767036623,71,0,0,0,0,0,0,0,0,0,,1,,4,124722,2,1,2,0,2,,760.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,880.515412988351,720.0,17908.658732526354,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12954627337815824,11939.105821684236,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +24702,2,54.0,0.0,1,111,460.0,0.0,0.0,0,37,0.0,0.0,784.3922499511482,560.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,2,60.0,1,,1,124723,2,1,3,0,1,,250.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,1109.9741444981,460.0,37071.07834808837,0,1,1,2,150.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015106115736416858,37071.07834808837,9,5,9,9_1,9_2,9_1_0 +24703,1,48.0,253.0,7,111,364.0,,,0,64,0.0,0.0,,814.0,623.5151514284345,,71,0,0,0,0,0,0,0,0,0,,1,,5,124724,2,2,0,0,2,,250.0,386.0,32,1.0,2.0,2.0,2.0,1.5,2,2,133.11404008306025,364.0,12052.520030725655,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06753774297199744,8035.013353817103,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +24704,2,45.0,0.0,7,112,485.0,0.0,0.0,52,47,1054.6828510366015,225.13563709173806,827.0222635354497,1655.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,124725,2,2,2,0,1,,150.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,1250.73433973459,485.0,45519.82058073437,1,1,1,2,115.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036357788297180935,16257.078778833704,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +24705,2,55.0,0.0,6,400,815.0,0.0,0.0,54,21,1402.72819187868,0.0,1389.7384428482299,2225.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124726,2,2,2,0,2,,271.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,831.387327710432,815.0,88407.14483719118,1,1,0,1,108.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025167649109102158,58938.09655812746,10,5,10,10_1,10_0,10_0_0 +24706,2,34.0,0.0,1,300,1197.0,0.0,0.0,46,46,0.0,1059.4618216081792,2041.1250504163572,2057.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,124727,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1015.5433249183,1197.0,94738.11261031603,1,1,1,2,135.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021712486594080756,52632.284783508905,10,5,10,10_1,10_0,10_1_0 +24708,2,41.0,0.0,6,212,1466.0,0.0,0.0,67,52,0.0,158.91927324122688,2499.823996583442,1666.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,124729,2,1,2,0,1,,369.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,686.457752276462,1466.0,33268.27573052155,1,1,1,2,103.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.050077738127905135,14464.467708922413,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +24709,1,43.0,331.0,2,111,550.0,220.0,0.0,0,85,0.0,0.0,937.8602988546337,770.0,0.0,417.6708905467536,71,2,2,2,2,1,1,2,2,0,,2,,2,124730,2,3,0,0,1,,260.0,307.0,31,0.0,0.0,4.0,2.0,1.3,1,1,1322.00529310538,550.0,9987.657777777777,0,7,2,3,77.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0.07709515255050345,7682.813675213674,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24710,2,50.0,0.0,2,112,350.0,,,0,68,0.0,0.0,,394.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,124731,2,2,0,0,2,,170.0,356.0,12,1.0,1.0,3.0,1.0,1.0,1,1,130.34544319044537,350.0,22683.78668856131,0,1,2,3,78.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01736923404409729,22683.78668856131,6,3,6,6_0,6_2,6_0_1 +24711,2,97.0,0.0,2,111,240.0,,,0,78,0.0,0.0,,260.0,27.711784507930417,,71,0,0,0,0,0,0,0,0,0,,1,,2,124732,1,3,0,0,2,,100.0,,21,0.0,0.0,7.0,2.0,1.5,2,2,88.71460858600547,240.0,4998.050149451961,0,5,0,1,140.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052020286356772374,3332.033432967974,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +24712,2,28.0,0.0,7,111,1365.0,0.0,0.0,43,42,0.0,0.0,2327.5987417028637,1365.0,0.0,0.0,20,1,2,2,2,1,2,2,2,2,45.0,2,,5,124733,2,2,0,0,1,,760.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,686.157451533009,1365.0,43430.1778136936,1,1,1,2,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03142975849317415,28953.45187579573,8,4,8,8_0,8_4,8_0_0 +24713,2,68.0,0.0,6,111,408.0,615.0,0.0,77,77,0.0,0.0,695.7218216958009,1023.0,0.0,1167.5799894829702,71,0,0,0,0,0,0,0,0,0,,2,,4,124734,1,2,0,1,1,211.0,146.0,492.0,41,1.0,3.0,4.0,3.0,2.0,3,3,474.412036302826,408.0,27071.171850849685,5,5,2,3,82.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03778927656461577,13535.585925424843,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +24715,2,63.0,0.0,2,112,1800.0,0.0,0.0,78,74,3164.0485531098047,0.0,3069.36097806971,4920.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,124736,2,1,2,0,1,,600.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,782.662219762617,1800.0,54594.472981220446,5,5,0,1,120.0,10,4,1,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09011901262775071,36396.31532081363,9,5,9,9_1,9_2,9_0_1 +24716,2,31.0,0.0,9,111,360.0,0.0,0.0,0,63,0.0,0.0,613.872195613942,360.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,25.0,2,2010.0,6,124737,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1480.89585422208,360.0,19628.821928631933,0,1,1,2,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,0,0.01834037729360006,19628.821928631933,5,3,5,5_0,5_3,5_0_0 +24717,2,50.0,0.0,2,112,350.0,0.0,0.0,55,63,949.2145659329414,0.0,596.8201901802214,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124738,2,1,3,0,1,,336.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,2108.67812079599,350.0,36617.37283218872,1,1,1,2,107.0,8,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03413680183252197,15920.596883560313,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +24718,2,47.0,0.0,1,112,300.0,1115.0,0.0,52,46,0.0,0.0,511.56016301161833,1415.0,0.0,2116.832013452865,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,124739,2,2,1,0,1,,300.0,,43,4.0,0.0,6.0,4.0,2.5,4,4,1569.10896697707,300.0,37719.51288934314,1,1,0,1,100.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037513740014383345,15087.805155737256,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +24719,2,33.0,0.0,2,111,1400.0,0.0,0.0,54,54,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,40.0,2,,2,124740,2,1,0,0,1,,330.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2098.88104781643,1400.0,65295.398951640236,1,1,1,2,101.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021441020691777727,36275.22163980013,9,5,9,9_0,9_2,9_0_1 +24720,2,34.0,0.0,9,111,1200.0,0.0,0.0,43,54,0.0,397.2981831030672,2046.2406520464733,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,124741,2,1,1,0,1,,390.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,539.294551503252,1200.0,43632.4692383853,1,1,1,2,107.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03437806812639399,24240.260687991835,7,4,7,7_1,7_2,7_0_0 +24721,1,49.0,376.0,2,111,150.0,80.0,0.0,0,67,0.0,0.0,255.78008150580916,230.0,0.0,151.8803238351831,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,124742,2,2,0,1,1,650.0,0.0,363.0,32,1.0,0.0,3.0,2.0,1.3,1,1,298.542723161403,150.0,11872.203104490269,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019372983933623078,9132.463926530976,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +24722,2,61.0,0.0,7,111,714.0,0.0,0.0,0,33,0.0,0.0,1217.5131879676517,714.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,20.0,2,,5,124743,2,2,0,0,1,,90.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2938.40819011672,714.0,35168.70029658441,0,1,1,2,68.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02030214349631066,35168.70029658441,9,5,9,9_0,9_3,9_0_0 +24723,2,69.0,0.0,2,111,523.0,1309.0,0.0,0,37,0.0,0.0,891.819884183588,2231.0,0.0,2485.1417987531836,41,0,0,0,0,0,0,0,0,2,1.0,1,,2,124744,2,2,2,0,1,,199.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1806.91080901272,523.0,49492.08566161736,0,1,0,1,100.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04507791438117164,49492.08566161736,10,5,10,10_1,10_2,10_0_1 +24724,2,58.0,0.0,5,111,220.0,0.0,0.0,67,67,1126.4012849070905,0.0,375.14411954185346,1696.0,565.3204039617806,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,124745,1,2,0,1,2,1056.0,0.0,339.0,43,2.0,0.0,3.0,2.0,1.5,2,2,339.830048792421,220.0,34536.51946101749,4,1,2,3,52.0,6,5,8,1,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04910743834260228,23024.346307344993,6,3,6,6_0,6_2,6_0_0 +24725,2,52.0,0.0,8,112,600.0,700.0,0.0,56,62,0.0,0.0,1023.1203260232367,1300.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,124746,2,1,1,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1603.09944136248,600.0,29801.708656221177,1,1,1,2,110.0,9,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04362165991877187,19867.805770814117,5,3,5,5_1,5_1,5_0_0 +24726,1,83.0,109.0,7,111,211.0,0.0,0.0,0,78,0.0,0.0,359.7973146515049,841.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,124747,2,1,0,0,1,,0.0,432.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1643.11405907034,211.0,16955.85683210301,0,5,2,3,50.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04959938081145569,16955.85683210301,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +24727,2,57.0,0.0,5,111,390.0,0.0,0.0,52,68,0.0,0.0,665.0282119151038,540.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,124748,2,2,0,1,1,809.0,340.0,308.0,43,2.0,2.0,4.0,2.0,1.5,2,2,308.949704316635,390.0,29757.98979765659,1,1,2,3,70.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.018146387026536464,19838.659865104393,5,3,5,5_0,5_2,5_0_0 +24728,2,58.0,0.0,2,111,100.0,140.0,0.0,0,56,0.0,0.0,170.52005433720612,240.0,0.0,265.7905667115705,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,124749,2,2,0,1,1,363.0,0.0,346.0,22,2.0,2.0,3.0,2.0,1.5,2,2,392.956158864104,100.0,15831.512037399796,0,1,2,3,60.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015159638538190958,10554.34135826653,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +24729,2,66.0,0.0,6,111,500.0,700.0,0.0,75,74,0.0,0.0,852.6002716860306,1200.0,0.0,1328.9528335578523,41,0,0,0,0,0,0,0,0,0,,1,,4,124750,2,1,2,0,1,,300.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1331.09611592702,500.0,71732.03542723393,5,5,0,1,140.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016728927219935064,47821.35695148929,10,5,10,10_1,10_2,10_0_0 +24730,2,52.0,0.0,2,111,250.0,,,0,56,0.0,0.0,,350.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,124751,2,1,0,0,2,,200.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,48.09791179504085,250.0,19611.500491751744,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017846671148248137,19611.500491751744,5,3,5,5_1,5_2,5_0_1 +24731,2,38.0,0.0,9,112,1200.0,0.0,0.0,21,46,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,124752,1,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,761.899040595932,1200.0,59756.17431081564,1,1,1,2,171.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02008160686054503,28455.3211003884,8,4,8,8_1,8_0,8_0_0 +24734,1,46.0,480.0,2,111,670.0,200.0,0.0,0,52,0.0,0.0,1142.484364059281,870.0,0.0,379.7008095879578,71,2,2,2,1,2,2,2,2,1,10.0,2,,2,124755,1,3,0,1,1,1096.0,0.0,435.0,32,1.0,0.0,6.0,5.0,2.8,4,3,285.194877426475,670.0,17577.399516982598,0,1,2,3,120.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.049495376102673204,6277.642684636642,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24735,1,41.0,110.0,1,120,480.0,0.0,0.0,0,64,0.0,1059.4618216081792,818.4962608185893,1400.0,166.2707070475825,0.0,60,2,2,2,1,2,2,2,2,0,,1,,1,124756,1,3,4,0,2,,170.0,300.0,32,1.0,0.0,4.0,3.0,1.8,2,2,1835.34468780457,480.0,19094.295774325183,0,4,2,3,90.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,1,0.07332032647585181,10607.942096847324,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +24736,1,32.0,380.0,2,111,420.0,300.0,0.0,0,85,0.0,0.0,716.1842282162656,720.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,124757,1,2,0,1,1,820.0,300.0,480.0,31,0.0,0.0,4.0,5.0,2.2,1,1,106.246302636559,420.0,14275.93380245171,0,6,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05043452918479835,6489.060819296231,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24737,2,33.0,0.0,1,111,1400.0,0.0,0.0,42,31,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,10,2,2,1,2,1,2,2,2,0,,2,,1,124758,1,1,0,0,1,,0.0,1300.0,43,2.0,0.0,3.0,4.0,2.1,2,2,477.365751049403,1400.0,51683.5038992534,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02708794672143395,24611.19233297781,7,4,7,7_0,7_4,7_1_0 +24738,2,56.0,0.0,5,111,63.0,60.0,0.0,84,37,0.0,0.0,107.42763423243986,123.0,0.0,113.91024287638734,12,0,0,0,0,0,0,0,0,2,10.0,1,,3,124759,1,2,2,0,1,,480.0,,42,1.0,2.0,6.0,3.0,1.8,2,2,1317.85063099825,63.0,81223.7406543983,3,1,0,1,140.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.001514335574907304,45124.300363554605,10,5,10,10_1,10_3,10_0_0 +24739,2,47.0,0.0,6,112,660.0,1080.0,0.0,47,85,0.0,0.0,1125.4323586255605,1740.0,0.0,2050.384371774972,50,0,0,0,0,0,0,0,0,0,,1,,4,124760,1,2,3,0,1,,0.0,514.0,42,3.0,0.0,6.0,5.0,3.0,5,5,145.05499999693,660.0,48873.12485014144,1,5,2,3,100.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03560238894761329,16291.041616713812,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +24740,0,53.0,0.0,2,111,450.0,,,0,56,0.0,0.0,,513.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,2,90.0,1,,2,124761,2,1,0,0,2,,270.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,106.2774234569179,450.0,4802.341773544039,0,1,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10682288437405728,4802.341773544039,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +24741,2,41.0,0.0,9,111,260.0,,,0,52,0.0,0.0,,452.0,266.03313127613205,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,124762,2,1,0,0,2,,150.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,236.47727434162164,260.0,9760.272727272726,0,4,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046310181347391566,6100.170454545453,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24742,2,61.0,0.0,9,111,600.0,,,78,77,0.0,0.0,,912.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,124763,2,1,0,0,2,,0.0,,41,0.0,9.0,5.0,2.0,1.5,2,2,87.95625791286635,600.0,8476.590817469045,5,6,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1075904239851354,5651.060544979363,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24743,1,52.0,304.0,2,111,287.0,562.0,0.0,0,56,0.0,0.0,489.39255594778155,849.0,0.0,1066.9592749421615,50,0,0,0,0,0,0,0,0,0,,2,,2,124764,2,1,0,0,1,,0.0,352.0,32,2.0,0.0,4.0,3.0,2.0,3,2,290.724260238122,287.0,24188.967139094446,0,4,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03509864621825203,12094.483569547223,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +24744,2,64.0,0.0,2,112,550.0,2777.0,0.0,43,74,0.0,0.0,937.8602988546337,3327.0,0.0,5272.145741128794,41,0,0,0,0,0,0,0,0,0,,1,,2,124765,2,1,2,0,1,,254.0,,42,1.0,0.0,7.0,2.0,1.5,2,2,256.978695078831,550.0,84004.21345809867,1,5,0,1,150.0,7,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03960515625397181,56002.80897206578,10,5,10,10_1,10_0,10_0_1 +24745,1,35.0,400.0,2,111,2200.0,0.0,0.0,0,85,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,124766,1,3,0,0,1,,200.0,565.0,31,0.0,0.0,4.0,3.0,1.8,2,1,2501.22453076691,2200.0,10522.021564554077,0,6,2,3,74.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.2090852966326567,5845.567535863376,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24746,2,55.0,0.0,6,111,4800.0,0.0,0.0,56,37,0.0,0.0,8184.962608185893,9983.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,4,124767,1,2,3,0,1,,247.0,,43,3.0,1.0,6.0,4.0,2.5,4,4,1169.01917811591,4800.0,109340.04836104138,1,1,0,1,145.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09130231922923689,43736.01934441655,10,5,10,10_1,10_3,10_0_0 +24747,2,30.0,0.0,9,112,0.0,0.0,0.0,64,52,0.0,0.0,0.0,788.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,124768,2,1,1,0,1,,150.0,450.0,43,2.0,0.0,2.0,2.0,1.5,2,2,490.904820825695,0.0,21985.378168242216,1,1,2,3,65.0,4,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03584200344291837,14656.918778828143,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +24748,2,36.0,0.0,2,111,480.0,105.0,0.0,63,45,0.0,0.0,818.4962608185893,585.0,0.0,199.34292503367786,10,0,0,0,0,0,0,0,0,3,20.0,2,,2,124769,2,2,0,1,1,405.0,0.0,290.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1024.83715885509,480.0,44149.64566272581,1,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013250389470144662,24527.58092373656,7,4,7,7_0,7_4,7_0_1 +24749,0,26.0,0.0,2,300,500.0,0.0,0.0,0,43,0.0,0.0,852.6002716860306,540.0,55.423569015860835,0.0,43,2,2,2,2,1,2,2,2,0,,1,,2,124770,2,2,3,0,1,,70.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1009.62712641471,500.0,16683.992561326126,0,4,5,0,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,1,0,1,0,0,0.032366353438189145,16683.992561326126,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +24750,0,46.0,0.0,1,112,0.0,0.0,0.0,56,46,0.0,66.2163638505112,0.0,180.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,124771,1,2,4,0,2,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1216.40178548549,0.0,38952.789439336244,1,1,5,0,90.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.004620978435455204,25968.52629289083,7,4,7,7_1,7_0,7_1_0 +24751,2,60.0,0.0,2,111,600.0,,,78,78,0.0,0.0,,810.0,290.9737373332694,,50,2,2,2,2,1,2,2,2,0,,1,,2,124772,1,3,0,0,2,,400.0,,41,3.0,0.0,6.0,9.0,4.199999999999999,5,5,109.76718070971508,600.0,18002.0,6,7,0,1,101.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04499500055549383,4286.190476190477,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +24752,2,54.0,0.0,1,112,700.0,0.0,0.0,0,68,1582.0242765549024,0.0,1193.6403803604428,2200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,124773,2,1,3,0,1,,130.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,846.985590432169,700.0,16494.983462868666,0,1,0,1,110.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0.13337388333564262,16494.983462868666,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +24753,2,45.0,0.0,6,111,480.0,,,0,63,0.0,0.0,,656.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,4,124774,1,1,0,0,1,,180.0,,32,1.0,3.0,7.0,3.0,1.8,2,1,116.5680148374314,480.0,12487.746835443038,0,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05253149416339257,6937.637130801688,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24754,2,43.0,0.0,6,112,2340.0,0.0,0.0,46,22,0.0,384.05491033296494,3990.169271490623,2630.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,124775,1,1,4,0,1,,347.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,810.323344616835,2340.0,95548.55438612746,1,1,1,2,110.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027525272537057298,53082.53021451525,10,5,10,10_1,10_1,10_0_0 +24755,2,26.0,0.0,7,111,500.0,0.0,0.0,0,48,0.0,0.0,852.6002716860306,500.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,30.0,2,,5,124776,2,2,0,0,1,,0.0,470.0,12,1.0,0.0,2.0,1.0,1.0,1,1,356.788057308981,500.0,19254.173891694918,0,1,2,3,54.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.025968395362611203,19254.173891694918,5,3,5,5_0,5_3,5_0_0 +24756,2,76.0,0.0,2,111,900.0,0.0,0.0,86,75,1898.4291318658827,0.0,1534.680489034855,2700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,124777,2,1,2,0,1,,147.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,313.817887551819,900.0,22784.43026497137,6,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11850197562986517,15189.62017664758,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +24757,2,44.0,0.0,2,111,200.0,150.0,0.0,37,22,0.0,0.0,341.04010867441224,350.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,2,,2,124778,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,792.964378707837,200.0,34973.298604377625,1,1,1,2,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01000763479473996,16653.9517163703,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +24758,2,50.0,0.0,9,111,780.0,0.0,0.0,55,53,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,70.0,2,2006.0,6,124779,2,1,0,1,1,530.0,0.0,552.0,43,3.0,0.0,4.0,5.0,2.8,4,4,965.066982170637,780.0,41565.093953863914,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018765746105753496,14844.676412094255,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +24759,2,40.0,0.0,5,111,1500.0,0.0,0.0,38,90,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,124780,2,2,3,0,1,,660.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,479.049537921143,1500.0,69562.09621892498,1,1,1,2,108.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02156346748492481,38645.60901051388,9,5,9,9_1,9_3,9_0_0 +24760,2,47.0,0.0,5,111,0.0,0.0,0.0,52,67,0.0,0.0,0.0,2697.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,10.0,1,,3,124781,2,1,1,0,1,,0.0,0.0,43,2.0,0.0,4.0,2.0,1.5,2,2,263.336228942941,0.0,51937.239451897,1,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05192805833467324,34624.82630126467,9,5,9,9_1,9_4,9_0_0 +24761,2,47.0,0.0,1,112,480.0,0.0,0.0,55,85,949.2145659329414,635.6770929649075,818.4962608185893,1920.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124782,2,1,1,0,1,,456.0,,42,1.0,0.0,6.0,5.0,2.4,3,2,873.275958951656,480.0,18922.581595528784,1,7,0,1,200.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10146607059438849,7884.408998136993,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +24762,2,66.0,0.0,7,111,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,5,124783,2,1,0,1,1,,0.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,433.443813660759,600.0,37259.96902500388,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016103072968132657,24839.979350002584,7,4,7,7_0,7_4,7_0_0 +24763,2,49.0,0.0,2,111,690.0,0.0,0.0,46,47,1371.087706347582,0.0,1176.5883749267223,2082.0,127.47420873647992,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,124784,2,1,1,0,1,,155.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,580.433764461112,690.0,54071.34233719617,1,1,1,2,75.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03850468492193827,30039.634631775647,8,4,8,8_1,8_4,8_0_1 +24764,0,52.0,0.0,1,112,0.0,0.0,0.0,56,69,0.0,0.0,0.0,1559.0,0.0,0.0,42,2,2,2,2,1,2,2,2,1,5.0,1,,1,124785,1,3,4,0,1,,350.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,2201.69558660649,0.0,47587.89084228882,1,1,5,0,120.0,9,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.032760434900691165,31725.26056152588,8,4,8,8_1,8_1,8_1_0 +24765,1,29.0,260.0,7,111,460.0,0.0,0.0,85,67,0.0,0.0,784.3922499511482,508.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,124786,1,2,0,1,2,,350.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,315.024046091074,460.0,24482.65776779219,6,1,1,2,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0207493812484808,10201.107403246746,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +24766,1,47.0,380.0,8,111,600.0,,,63,54,0.0,0.0,,700.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,124787,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,108.95980538704521,600.0,29504.619859898863,4,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02372509808036549,11801.847943959545,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +24767,2,65.0,0.0,6,111,648.0,0.0,0.0,0,75,0.0,794.5963662061343,1104.9699521050957,1248.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,124788,2,1,2,0,1,,117.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1607.74601062434,648.0,22302.22688515101,0,5,0,1,90.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05595853752303667,22302.22688515101,6,3,6,6_1,6_2,6_0_0 +24768,1,46.0,254.0,2,111,1020.0,300.0,0.0,68,63,0.0,0.0,1739.3045542395023,1320.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,124789,1,1,0,1,1,,0.0,700.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,4,3,166.866265931021,1020.0,34246.64729105808,1,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03854391902312308,13171.787419637723,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +24769,2,87.0,0.0,1,111,201.0,244.0,0.0,0,77,0.0,0.0,342.74530921778427,445.0,0.0,463.2349876973085,70,0,0,0,0,0,0,0,0,0,,2,,1,124790,2,2,0,1,1,1049.0,0.0,326.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1661.42517234001,201.0,18785.659496107102,0,5,2,3,120.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.023688282015982248,18785.659496107102,5,3,5,5_0,5_3,5_1_0 +24770,2,69.0,0.0,1,111,530.0,0.0,0.0,0,43,0.0,0.0,903.7562879871924,530.0,0.0,0.0,33,2,2,2,1,1,2,2,2,0,,2,,1,124791,2,2,0,1,1,,0.0,930.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1086.94133775081,530.0,5825.418863079035,0,5,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.09098058224775747,5825.418863079035,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +24771,2,64.0,0.0,6,111,2000.0,0.0,0.0,0,74,0.0,0.0,3410.4010867441225,2075.0,103.91919190473907,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,124792,2,1,1,0,1,,160.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1993.64619193481,2000.0,20277.971263771913,0,5,0,1,180.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10232779073452679,20277.971263771913,5,3,5,5_1,5_3,5_0_0 +24772,2,57.0,0.0,6,111,1402.0,0.0,0.0,63,52,0.0,0.0,2390.6911618076297,1402.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,124793,2,1,3,0,1,,876.0,560.0,43,2.0,0.0,4.0,4.0,2.5,4,4,681.344460803956,1402.0,50941.16146849985,1,1,2,3,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027521948058976738,20376.46458739994,5,3,5,5_1,5_4,5_0_0 +24773,2,42.0,0.0,1,111,1000.0,1100.0,0.0,52,21,0.0,0.0,1705.2005433720612,2100.0,0.0,2088.354452733768,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,124794,2,1,1,0,1,,220.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,1037.32496751844,1000.0,51229.136503775335,1,1,0,1,150.0,8,6,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04099229741741285,20491.654601510134,5,3,5,5_1,5_2,5_1_0 +24774,2,56.0,0.0,5,112,0.0,0.0,0.0,56,62,0.0,0.0,0.0,1711.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,3,124795,2,2,3,0,1,,256.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1733.17088263946,0.0,38322.369359128286,1,1,1,2,98.0,7,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044647552555161736,25548.24623941886,7,4,7,7_1,7_0,7_0_0 +24775,2,43.0,0.0,2,111,420.0,0.0,0.0,38,43,0.0,0.0,716.1842282162656,420.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,124796,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1831.58878655439,420.0,66699.18058223964,1,1,1,2,93.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006296928932764666,31761.514562971257,8,4,8,8_0,8_3,8_0_1 +24776,2,53.0,0.0,1,120,760.0,1750.0,0.0,52,62,0.0,132.4327277010224,1295.9524129627664,2610.0,0.0,3322.382083894631,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,124797,2,1,3,0,1,,460.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,177.204479659156,760.0,72855.96987233915,1,1,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03582410617240201,36427.984936169574,9,5,9,9_1,9_0,9_1_0 +24778,2,86.0,0.0,2,111,185.0,70.0,0.0,0,72,0.0,0.0,315.46210052383134,255.0,0.0,132.89528335578524,44,2,2,2,2,1,2,2,2,0,,2,,2,124799,2,2,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,839.017409556987,185.0,11004.66386615926,0,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.023171993538499382,11004.66386615926,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +24779,2,62.0,0.0,7,111,396.0,672.0,0.0,77,78,0.0,0.0,675.2594151753362,1068.0,0.0,1275.7947202155383,50,0,0,0,0,0,0,0,0,0,,2,,5,124800,2,1,0,0,1,,400.0,443.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1490.68961761229,396.0,22542.74738057482,5,5,2,3,80.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04737665653478866,15028.498253716547,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +24780,2,66.0,0.0,5,111,800.0,0.0,0.0,77,77,0.0,0.0,1364.160434697649,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,124801,1,2,1,0,1,,500.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1419.48428102368,800.0,40968.25763195752,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019527313247902335,27312.171754638344,7,4,7,7_1,7_3,7_0_0 +24781,2,70.0,0.0,5,111,360.0,,,0,77,0.0,0.0,,486.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,3,124802,1,1,0,0,2,,305.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,139.47988894117003,360.0,25778.750980565706,0,5,0,1,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01885273651801011,25778.750980565706,7,4,7,7_1,7_2,7_0_0 +24783,2,44.0,0.0,2,111,696.0,1590.0,0.0,52,54,0.0,0.0,1186.8195781869547,2286.0,0.0,3018.6214362242645,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,124804,2,1,2,0,2,,744.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,403.903071828452,696.0,48773.549935711766,1,1,0,1,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04686966610003102,24386.774967855883,7,4,7,7_1,7_2,7_0_1 +24784,1,33.0,421.0,2,111,270.0,240.0,0.0,0,85,0.0,0.0,460.40414671045653,510.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,2,,2,124805,2,2,0,1,1,,400.0,521.0,31,0.0,0.0,4.0,2.0,1.3,1,1,293.690641533786,270.0,10853.76338697788,0,6,2,3,61.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04698831012033001,8349.048759213754,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +24785,1,32.0,160.0,6,111,220.0,,,0,63,0.0,0.0,,220.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,124806,2,1,0,0,2,,0.0,238.0,12,1.0,0.0,1.0,1.0,1.0,1,1,128.56312487605393,220.0,9383.473242235506,0,4,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023445476351951263,9383.473242235506,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24786,2,66.0,0.0,5,112,510.0,0.0,0.0,77,78,1582.0242765549024,0.0,869.6522771197511,2100.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124807,2,1,2,0,1,,355.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1535.93190436194,510.0,29309.479095243645,5,5,0,1,98.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07164917510733887,19539.65273016243,5,3,5,5_1,5_0,5_0_0 +24787,1,70.0,193.0,2,111,750.0,1017.0,0.0,0,77,0.0,132.4327277010224,1278.9004075290459,1867.0,0.0,1930.7786167547654,50,2,2,2,1,2,2,2,2,0,,1,,2,124808,2,2,3,0,1,,178.0,352.0,11,0.0,4.0,2.0,1.0,1.0,1,1,936.53919629987,750.0,9416.368102885554,0,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.19827177310834695,9416.368102885554,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +24788,2,32.0,0.0,9,111,507.0,0.0,0.0,0,47,0.0,0.0,864.5366754896351,507.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2005.0,6,124809,1,2,0,0,1,,0.0,481.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2139.65070096707,507.0,25184.13937417423,0,1,2,3,46.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.020131718319503788,25184.13937417423,7,4,7,7_0,7_3,7_0_0 +24789,2,81.0,0.0,2,111,480.0,,,0,77,0.0,0.0,,612.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,124810,1,3,0,0,2,,400.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,129.3239714969558,480.0,11283.473504240632,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054238617192657386,11283.473504240632,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +24790,1,32.0,208.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,696.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,50.0,2,,2,124811,2,1,0,1,1,898.0,0.0,374.0,32,1.0,0.0,3.0,2.0,1.3,1,1,219.05663156842,0.0,17865.625744005516,0,1,2,3,53.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03895749356741843,13742.789033850397,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +24791,2,82.0,0.0,5,111,360.0,0.0,0.0,74,74,0.0,0.0,613.872195613942,360.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,124812,2,1,0,1,1,,383.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,924.72749434287,360.0,58325.85584829029,5,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006172219760244679,38883.90389886019,9,5,9,9_0,9_4,9_0_0 +24792,2,51.0,0.0,2,111,480.0,0.0,0.0,85,48,0.0,0.0,818.4962608185893,480.0,0.0,0.0,71,2,2,1,1,1,2,2,2,0,,2,,2,124813,1,1,0,1,1,660.0,300.0,311.0,42,1.0,2.0,4.0,3.0,1.8,2,2,380.662803742205,480.0,29274.874631902385,6,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01639631274379288,16263.81923994577,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +24793,2,50.0,0.0,9,111,720.0,,,54,21,0.0,0.0,,858.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,124814,2,2,0,0,1,,700.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,192.2483856110161,720.0,45476.155126881706,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018867030372425264,19772.241359513788,5,3,5,5_1,5_2,5_0_0 +24794,1,38.0,250.0,2,111,300.0,,,0,68,0.0,0.0,,340.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,124815,2,2,0,0,1,,200.0,700.0,32,1.0,0.0,4.0,4.0,2.1,2,1,151.98977100871716,300.0,36275.609498726175,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009372688831374126,17274.099761298177,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +24795,2,48.0,0.0,2,111,0.0,0.0,1080.0,21,52,0.0,0.0,680.7437536479233,1080.0,0.0,1292.4707193698553,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,124816,1,1,0,0,1,,0.0,297.0,43,2.0,0.0,4.0,4.0,2.3,3,3,381.920730786493,0.0,21939.863800401883,1,1,2,3,55.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04922546510886805,9539.071217566037,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +24796,2,61.0,0.0,1,112,870.0,0.0,0.0,77,78,0.0,529.7309108040896,1483.5244727336933,1270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124817,2,1,2,0,1,,204.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,1010.21385241737,870.0,46092.61684954378,5,5,0,1,77.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027553219730299828,23046.30842477189,6,3,6,6_1,6_0,6_1_0 +24797,0,65.0,0.0,1,111,800.0,0.0,0.0,74,38,2636.7071275915036,0.0,1364.160434697649,3366.0,91.44888887617039,0.0,20,2,2,2,2,2,1,2,2,2,90.0,1,,1,124818,2,1,2,0,2,,960.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,480.155387495992,800.0,59701.08283521513,5,1,0,1,103.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.056380886914408526,29850.541417607565,8,4,8,8_1,8_4,8_1_0 +24798,2,52.0,0.0,2,112,130.0,1300.0,0.0,90,21,0.0,397.2981831030672,221.67607063836795,1730.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,124819,2,2,2,0,1,,290.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,801.410474954006,130.0,51579.65449911854,5,1,0,1,85.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03354035649908366,34386.43633274569,9,5,9,9_1,9_0,9_0_1 +24799,2,42.0,0.0,2,111,210.0,0.0,0.0,33,38,0.0,0.0,358.0921141081328,1425.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,,2,124820,2,1,0,0,1,,330.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1443.82667076761,210.0,108010.42828261394,1,1,1,2,100.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013193170536009968,45004.34511775581,10,5,10,10_0,10_3,10_0_1 +24800,2,62.0,0.0,5,112,800.0,0.0,0.0,78,78,0.0,0.0,1364.160434697649,1050.0,346.39730634913025,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124821,2,1,1,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1991.45166463031,800.0,40237.3197206893,5,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0260951774941438,26824.879813792868,7,4,7,7_1,7_0,7_0_0 +24801,2,38.0,0.0,7,111,631.0,0.0,0.0,0,31,0.0,0.0,1075.9815428677707,631.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,124822,2,1,0,0,1,,0.0,509.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1463.3334478379,631.0,28234.15919567673,0,1,2,3,45.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022348814980706774,28234.15919567673,8,4,8,8_0,8_3,8_0_0 +24802,2,46.0,0.0,1,111,400.0,0.0,0.0,0,53,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,124823,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1320.90974006307,400.0,9751.54506728179,0,4,0,1,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041019140786425004,9751.54506728179,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +24803,2,44.0,0.0,1,111,250.0,500.0,0.0,0,47,0.0,0.0,426.3001358430153,750.0,0.0,949.2520239698945,20,0,0,0,0,0,0,0,0,1,15.0,2,,1,124824,2,2,0,0,1,,160.0,600.0,32,1.0,0.0,2.0,2.0,1.5,2,1,1711.59803470479,250.0,35389.27909386923,0,1,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021192858944954564,23592.85272924615,6,3,6,6_0,6_3,6_1_0 +24804,2,50.0,0.0,1,111,250.0,0.0,0.0,0,52,0.0,0.0,426.3001358430153,370.0,0.0,0.0,71,2,1,2,1,1,2,2,2,2,15.0,2,,1,124825,1,3,0,1,1,48.0,0.0,224.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1461.48223702378,250.0,20675.79170616596,0,1,2,3,47.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01789532440925385,20675.79170616596,5,3,5,5_0,5_3,5_1_0 +24805,2,57.0,0.0,6,112,1028.0,0.0,0.0,56,48,0.0,476.7578197236806,1752.946158586479,1448.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,124826,2,1,2,0,1,,160.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,491.347223168707,1028.0,39874.469583218444,1,1,0,1,120.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0363139626717293,26582.97972214563,7,4,7,7_1,7_1,7_0_0 +24806,2,29.0,0.0,9,221,0.0,,,0,63,0.0,0.0,,190.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,124827,2,1,0,0,2,,0.0,400.0,12,1.0,3.0,4.0,1.0,1.0,1,1,300.648896471942,0.0,15503.727260924745,0,4,2,3,55.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01225511754704766,15503.727260924745,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +24807,2,45.0,0.0,8,111,1230.0,0.0,0.0,52,67,0.0,0.0,2097.396668347635,1230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,124828,2,1,3,0,1,,900.0,575.0,43,3.0,1.0,4.0,3.0,2.0,3,3,1189.32714968424,1230.0,60553.85815530759,1,1,3,4,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020312495974167576,30276.929077653796,8,4,8,8_1,8_3,8_0_0 +24808,2,27.0,0.0,9,112,0.0,0.0,0.0,0,42,0.0,0.0,0.0,840.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,2.0,1,2010.0,6,124829,2,1,1,0,1,,152.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1032.8814221988,0.0,16632.35165601698,0,1,2,3,40.0,9,3,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05050398268221551,16632.35165601698,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +24809,2,85.0,0.0,2,111,282.0,0.0,0.0,75,74,0.0,0.0,480.8665532309212,411.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,124830,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1903.61358964545,282.0,52846.88358153394,5,5,0,1,80.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007777185183794148,35231.25572102263,9,5,9,9_0,9_2,9_0_1 +24811,0,71.0,0.0,2,111,266.0,,,0,72,0.0,0.0,,386.0,166.2707070475825,,70,0,0,0,0,0,0,0,0,0,,1,,2,124832,2,2,0,0,2,,0.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,113.63551882616599,266.0,6864.063720944494,0,5,5,0,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05623490918684049,6864.063720944494,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +24812,2,55.0,0.0,2,111,186.0,222.0,0.0,53,46,0.0,0.0,317.16730106720337,408.0,0.0,421.46789864263314,60,2,1,2,1,2,2,2,2,2,45.0,2,,2,124833,1,3,0,1,1,698.0,0.0,426.0,43,2.0,2.0,4.0,2.0,1.5,2,2,239.385496600987,186.0,39592.36609293055,1,1,2,3,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010305016857096875,26394.910728620365,7,4,7,7_0,7_3,7_0_1 +24813,2,70.0,0.0,7,112,540.0,,,0,77,0.0,0.0,,672.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,124834,2,1,0,0,2,,1500.0,,21,0.0,3.0,4.0,4.0,2.3,3,2,79.00697918652779,540.0,23637.341150386237,0,5,0,1,82.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02842959348619544,10277.104847994016,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +24814,2,45.0,0.0,8,112,1400.0,0.0,0.0,62,54,0.0,79.45963662061344,2387.2807607208856,1460.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,124835,2,2,2,0,1,,281.0,,43,2.0,0.0,3.0,3.0,2.0,3,2,1497.94666638568,1400.0,48312.8975544151,1,1,1,2,120.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03021967370836314,24156.44877720755,6,3,6,6_1,6_1,6_0_0 +24815,2,55.0,0.0,1,112,1062.0,1089.0,0.0,43,34,0.0,0.0,1810.922977061129,2151.0,0.0,2067.47090820643,12,0,0,0,0,0,0,0,0,2,35.0,1,,1,124836,2,2,2,0,1,,564.0,,43,2.0,3.0,5.0,3.0,2.0,3,3,413.365491749676,1062.0,62189.916272667164,1,1,0,1,140.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034587600834982586,31094.958136333582,8,4,8,8_1,8_1,8_1_0 +24816,1,39.0,270.0,2,111,170.0,0.0,0.0,0,67,0.0,0.0,289.8840923732504,254.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124837,1,1,0,1,1,,0.0,454.0,12,1.0,0.0,2.0,1.0,1.0,1,1,288.124149884496,170.0,4839.267902296582,0,4,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05248727806110066,4839.267902296582,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24817,2,71.0,0.0,7,300,300.0,0.0,0.0,0,71,0.0,66.2163638505112,511.56016301161833,425.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124838,2,1,1,0,1,,130.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,793.954256408278,300.0,17598.843143725775,0,5,0,1,65.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02414931461853038,17598.843143725775,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +24818,2,59.0,0.0,6,300,0.0,,,77,68,0.0,158.91927324122688,,867.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,4,124839,2,2,0,0,2,,562.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,108.50965553119455,0.0,33514.23445661578,5,1,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02586960478307606,22342.822971077185,6,3,6,6_1,6_1,6_0_0 +24819,2,68.0,0.0,6,112,684.0,0.0,0.0,77,78,0.0,476.7578197236806,1166.3571716664899,1140.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,124840,2,1,2,0,1,,336.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,756.816149076514,684.0,28855.837740110543,5,5,0,1,80.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03950673725945455,19237.225160073696,5,3,5,5_1,5_0,5_0_0 +24820,0,78.0,0.0,2,111,95.0,300.0,0.0,0,77,0.0,0.0,161.9940516203458,395.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,124841,1,1,0,0,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,2377.85024910677,95.0,23861.169758862394,0,5,5,0,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016554092024482207,23861.169758862394,6,3,6,6_0,6_3,6_0_1 +24821,2,53.0,0.0,9,111,500.0,0.0,0.0,0,45,0.0,0.0,852.6002716860306,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,2004.0,6,124842,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,557.110254989139,500.0,23164.001949918496,0,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021585216625392284,23164.001949918496,6,3,6,6_0,6_4,6_0_0 +24822,2,53.0,0.0,1,112,961.0,0.0,0.0,67,62,0.0,794.5963662061343,1638.6977221805507,1629.0,94.22006732696343,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,124843,2,1,1,0,1,,313.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,877.753675213572,961.0,58279.675584875105,1,1,0,1,132.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027951425323698306,29139.837792437553,8,4,8,8_1,8_0,8_1_0 +24823,2,36.0,0.0,9,112,1100.0,0.0,0.0,37,38,0.0,198.6490915515336,1875.7205977092674,1250.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,124844,2,1,1,0,1,,330.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,916.68129735133,1100.0,62795.593413073584,4,1,1,2,110.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019905855364363182,34886.44078504088,9,5,9,9_1,9_0,9_0_0 +24824,2,38.0,0.0,5,111,648.0,605.0,0.0,52,42,0.0,0.0,1104.9699521050957,1253.0,0.0,1148.5949490035723,20,0,0,0,0,0,0,0,0,1,20.0,2,,3,124845,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1146.13718582576,648.0,36750.70405834172,1,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03409458490947176,20417.057810189843,5,3,5,5_0,5_4,5_0_0 +24825,1,49.0,248.0,5,211,600.0,,,0,69,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,124846,2,1,0,0,2,,500.0,535.0,32,2.0,0.0,4.0,2.0,1.5,2,2,95.85508013373173,600.0,6573.323218900845,0,4,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09127803091665539,4382.21547926723,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +24826,2,68.0,0.0,1,111,404.0,856.0,0.0,86,74,0.0,0.0,688.9010195223127,1260.0,0.0,1625.1194650364594,71,0,0,0,0,0,0,0,0,0,,2,,1,124847,2,1,0,0,1,,0.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,964.9535900054,404.0,60009.93305943211,6,5,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020996524004653235,40006.622039621405,9,5,9,9_0,9_4,9_1_0 +24827,2,44.0,0.0,6,111,0.0,0.0,0.0,21,43,0.0,0.0,0.0,923.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,15.0,1,,4,124848,2,1,2,0,1,,189.0,1245.0,43,2.0,1.0,5.0,2.0,1.5,2,2,1514.69359120737,0.0,23038.29052833377,1,1,2,3,140.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040063736450620904,15358.860352222515,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +24828,2,58.0,0.0,1,111,0.0,0.0,800.0,0,37,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,20,0,0,0,0,0,0,0,0,2,45.0,2,,1,124849,2,1,0,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,360.598407828765,0.0,38993.06174115657,0,1,0,1,55.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020516470476479986,38993.06174115657,9,5,9,9_0,9_3,9_1_0 +24829,2,61.0,0.0,1,120,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,124850,2,2,4,0,1,,111.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2021.72348859238,500.0,6100.834059801092,0,7,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.08195600717851712,6100.834059801092,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +24830,1,54.0,188.0,1,111,606.0,0.0,0.0,0,63,0.0,0.0,1033.351529283469,606.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,124851,2,2,0,0,1,,195.0,492.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1817.64701983708,606.0,13385.778549319815,0,1,2,3,42.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04527192779763963,13385.778549319815,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +24831,2,43.0,0.0,6,111,602.0,119.0,0.0,85,38,0.0,0.0,1026.5307271099807,721.0,0.0,225.92198170483488,31,0,0,0,0,0,0,0,0,0,,2,,4,124852,2,1,0,1,1,420.0,0.0,1468.0,42,1.0,0.0,4.0,5.0,2.4,2,2,403.580638655236,602.0,36669.33509592393,6,1,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019662205439883867,15278.889623301638,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +24832,2,78.0,0.0,1,300,540.0,0.0,0.0,0,86,0.0,993.245457757668,920.8082934209131,1290.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124853,1,3,4,0,2,,240.0,,21,2.0,4.0,3.0,3.0,2.0,3,3,999.030514324338,540.0,28106.477821113695,0,5,0,1,50.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04589689281632247,14053.238910556847,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +24833,2,47.0,0.0,1,111,1700.0,0.0,0.0,0,37,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,2,,1,124854,2,1,0,0,1,,0.0,685.0,32,1.0,0.0,3.0,3.0,1.8,2,2,435.049864462491,1700.0,34452.25423422555,0,1,2,3,80.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04934365073595639,19140.141241236415,5,3,5,5_0,5_2,5_1_0 +24834,2,63.0,0.0,5,111,1200.0,,,0,90,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,124855,2,3,0,0,1,,800.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,38.08521124847453,1200.0,8893.145555184132,0,1,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13493538282418838,8893.145555184132,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24835,2,67.0,0.0,5,112,900.0,0.0,0.0,77,74,1265.6194212439218,0.0,1534.680489034855,2220.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124856,2,1,1,0,1,,300.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,531.255460310994,900.0,38425.02430426866,5,5,0,1,139.0,7,1,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0577748495985565,25616.682869512442,7,4,7,7_1,7_1,7_0_0 +24836,2,62.0,0.0,1,112,1120.0,0.0,0.0,77,31,2636.7071275915036,39.72981831030672,1909.8246085767084,3650.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,124857,2,1,3,0,1,,107.0,,42,1.0,2.0,9.0,2.0,1.5,2,2,2476.41173367874,1120.0,84169.35119688243,5,4,0,1,240.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043364953490757016,56112.90079792162,10,5,10,10_1,10_0,10_1_0 +24837,2,44.0,0.0,9,111,1800.0,0.0,0.0,22,31,0.0,79.45963662061344,3069.36097806971,1860.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,124858,2,1,1,0,1,,424.0,,43,2.0,0.0,7.0,7.0,3.3999999999999995,4,2,1713.11065260944,1800.0,16890.0,1,1,1,2,200.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11012433392539965,4967.647058823531,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24838,2,22.0,0.0,1,111,0.0,0.0,0.0,68,52,0.0,0.0,0.0,888.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,124859,2,2,2,0,1,,254.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,327.80781460273,0.0,19069.643327322286,2,1,2,3,74.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04656615673182026,12713.095551548191,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +24839,2,63.0,0.0,2,111,300.0,1200.0,0.0,0,77,0.0,6.6216363850511195,511.56016301161833,1505.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,2,,2,124860,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,597.234952080013,300.0,20173.82264465021,0,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07460162739157931,20173.82264465021,5,3,5,5_0,5_4,5_0_1 +24840,2,39.0,0.0,2,111,1050.0,0.0,0.0,0,47,0.0,0.0,1790.4605705406643,1101.0,70.66505049522257,0.0,43,0,0,0,0,0,0,0,0,2,23.0,1,,2,124861,2,2,3,0,1,,160.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1489.40173368206,1050.0,36556.26775331676,0,1,1,2,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.030117954256971596,36556.26775331676,9,5,9,9_1,9_3,9_0_1 +24842,2,52.0,0.0,7,111,330.0,780.0,0.0,0,54,0.0,0.0,562.7161793127802,1110.0,0.0,1480.8331573930354,20,2,2,2,2,2,2,2,1,2,20.0,2,,5,124863,1,2,0,0,1,,0.0,468.0,32,1.0,0.0,3.0,3.0,1.6,1,1,856.063569978659,330.0,46575.82753681584,0,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.023832104735500428,29109.8922105099,8,4,8,8_0,8_4,8_0_0 +24843,1,53.0,400.0,1,111,270.0,140.0,0.0,0,77,0.0,0.0,460.40414671045653,410.0,0.0,265.7905667115705,71,0,0,0,0,0,0,0,0,0,,2,,1,124864,2,1,0,0,1,,0.0,670.0,31,2.0,2.0,2.0,3.0,2.0,3,3,537.29559816584,270.0,8369.466583677488,0,6,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04898759029632791,4184.733291838744,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +24844,2,46.0,0.0,6,400,700.0,0.0,0.0,85,21,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124865,2,1,2,0,1,,300.0,,42,2.0,0.0,5.0,4.0,2.5,4,4,205.232009643845,700.0,50095.855222102226,6,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015170915769987473,20038.34208884089,5,3,5,5_1,5_0,5_0_0 +24845,2,77.0,0.0,2,111,470.0,88.0,0.0,0,74,0.0,0.0,801.4442553848687,558.0,0.0,167.06835621870144,44,2,1,2,1,1,2,2,2,0,,2,,2,124866,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1076.86366760334,470.0,29961.023323452457,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.018624196976717307,29961.023323452457,8,4,8,8_0,8_4,8_0_1 +24846,2,71.0,0.0,5,111,373.0,1480.0,0.0,75,75,0.0,0.0,636.0398026777788,1853.0,0.0,2809.785990950888,31,0,0,0,0,0,0,0,0,0,,1,,3,124867,2,1,1,0,1,,330.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,598.435972983748,373.0,62123.23481660944,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02982780928053954,41415.48987773962,9,5,9,9_1,9_4,9_0_0 +24847,2,39.0,0.0,7,111,912.0,0.0,0.0,0,46,0.0,0.0,1555.1428955553197,912.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,124868,2,1,2,0,1,,336.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,1195.40295212527,912.0,57752.33484329807,0,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01579156933610683,36095.209277061294,9,5,9,9_1,9_4,9_0_0 +24848,2,42.0,0.0,1,120,840.0,1671.0,0.0,33,33,0.0,0.0,1432.3684564325313,2511.0,0.0,3172.4002641073876,10,0,0,0,0,0,0,0,0,3,150.0,1,,1,124869,2,1,3,0,1,,400.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,214.195413162337,840.0,87601.30271956927,1,1,0,1,250.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0286639572934007,41714.90605693775,9,5,9,9_1,9_0,9_1_0 +24849,2,50.0,0.0,1,111,352.0,756.0,0.0,85,34,0.0,0.0,600.2305912669656,1108.0,0.0,1435.2690602424805,10,0,0,0,0,0,0,0,0,1,5.0,2,,1,124870,1,1,0,0,2,,0.0,,42,1.0,0.0,4.0,6.0,3.0999999999999996,4,3,1038.01081698995,352.0,80721.36356807937,6,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013726229972137759,26039.14953809012,7,4,7,7_0,7_4,7_1_0 +24850,2,39.0,0.0,9,111,250.0,520.0,0.0,0,54,0.0,0.0,426.3001358430153,770.0,0.0,987.2221049286903,43,1,2,2,2,2,2,2,1,2,10.0,2,2005.0,6,124871,2,1,0,1,1,,0.0,441.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1870.37589629209,250.0,21867.71337890892,0,1,2,3,50.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.035211729121283133,21867.71337890892,6,3,6,6_0,6_2,6_0_0 +24851,2,73.0,0.0,2,211,950.0,0.0,0.0,77,75,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,124872,1,1,0,0,1,,0.0,495.0,41,0.0,5.0,4.0,2.0,1.5,2,2,2072.91146804523,950.0,35237.03190161103,5,5,2,3,60.0,1,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026960273006324524,23491.35460107402,6,3,6,6_0,6_1,6_0_1 +24852,1,43.0,288.0,9,112,314.0,,,22,52,0.0,0.0,,446.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,124873,2,3,0,0,2,,269.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,105.68774179308132,314.0,30734.6675792896,4,4,1,2,69.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014511300597262189,15367.3337896448,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +24853,2,82.0,0.0,1,212,1500.0,0.0,0.0,71,71,0.0,0.0,2557.8008150580918,1680.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,124874,2,1,1,0,1,,120.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,869.027680267171,1500.0,28405.824595257298,5,5,0,1,69.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05914279989888048,18937.216396838197,5,3,5,5_1,5_0,5_1_0 +24854,2,53.0,0.0,9,111,900.0,,,0,52,0.0,0.0,,966.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,124875,2,1,0,0,2,,500.0,551.0,32,1.0,0.0,5.0,2.0,1.3,1,1,78.96737748575278,900.0,36057.386511255034,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02679062720473295,27736.451162503872,7,4,7,7_0,7_3,7_0_0 +24855,2,79.0,0.0,2,112,1000.0,3000.0,0.0,0,72,0.0,0.0,1705.2005433720612,4000.0,0.0,5695.512143819367,70,0,0,0,0,0,0,0,0,0,,1,,2,124876,2,1,2,0,1,,650.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,1036.12958799714,1000.0,15821.112713768376,0,5,0,1,100.0,8,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.25282671784007876,15821.112713768376,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +24856,2,71.0,0.0,5,111,457.0,0.0,0.0,78,77,0.0,0.0,779.276648321032,517.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,124877,2,1,0,1,1,,614.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,494.346853365524,457.0,32679.10301374291,5,5,0,1,72.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015820507673744294,21786.068675828607,6,3,6,6_0,6_2,6_0_0 +24857,2,27.0,0.0,2,111,576.0,0.0,0.0,0,35,0.0,0.0,982.1955129823073,576.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,2,124878,1,3,0,0,1,,180.0,439.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1157.94638080065,576.0,20739.23926291116,0,1,2,3,43.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.027773439165152247,20739.23926291116,5,3,5,5_0,5_2,5_0_1 +24858,2,68.0,0.0,1,221,337.0,645.0,0.0,0,75,0.0,0.0,574.6525831163846,982.0,0.0,1224.535110921164,50,0,0,0,0,0,0,0,0,0,,1,,1,124879,2,1,3,0,1,,222.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,538.577296494726,337.0,23634.27425182436,0,5,0,1,91.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04154982672777431,23634.27425182436,6,3,6,6_1,6_1,6_1_0 +24859,2,77.0,0.0,2,111,220.0,0.0,0.0,0,72,0.0,0.0,375.14411954185346,220.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,124880,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,881.450191194227,220.0,2284.7374986876744,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0962911494761938,2284.7374986876744,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +24861,1,32.0,250.0,2,111,180.0,958.0,0.0,22,52,0.0,119.18945493092015,306.936097806971,1228.0,0.0,1818.7668779263179,30,2,2,2,1,1,2,1,2,3,45.0,2,,2,124882,2,3,0,0,1,,0.0,578.0,43,2.0,2.0,2.0,2.0,1.5,2,2,1942.99223656672,180.0,15252.404132391597,4,1,2,3,54.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.08051189762223065,10168.269421594397,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +24862,1,58.0,226.0,1,111,944.0,0.0,0.0,0,85,0.0,0.0,1609.7093129432258,944.0,0.0,0.0,50,2,2,2,2,1,2,1,2,0,,2,,1,124883,1,3,0,0,2,,210.0,315.0,11,0.0,3.0,1.0,1.0,1.0,1,1,2984.43968110244,944.0,10177.618048172104,0,7,3,4,22.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.09275254735753638,10177.618048172104,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +24863,2,67.0,0.0,9,112,450.0,0.0,0.0,0,75,0.0,595.9472746546007,767.3402445174275,970.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,124884,2,2,1,0,1,,120.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,705.118611237908,450.0,24241.38584831365,0,5,0,1,63.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04001421395911975,24241.38584831365,7,4,7,7_1,7_0,7_0_0 +24864,0,80.0,0.0,1,112,360.0,0.0,0.0,0,71,1953.272640119786,0.0,613.872195613942,2276.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124885,1,1,4,0,1,,85.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1438.06233353895,360.0,17144.68571509754,0,5,0,1,80.0,6,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13275250639303138,17144.68571509754,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +24865,2,56.0,0.0,5,111,1200.0,0.0,0.0,37,38,0.0,540.3255290201713,2046.2406520464733,1710.0,141.33010099044515,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,124886,2,1,2,0,1,,600.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,1549.0406371438,1200.0,55137.90447441267,1,1,0,1,126.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031013148147361013,36758.60298294178,9,5,9,9_1,9_3,9_0_0 +24866,2,48.0,0.0,1,112,490.0,0.0,0.0,62,63,0.0,331.081819252556,835.54826625231,890.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,124887,1,3,4,0,1,,180.0,421.0,43,2.0,1.0,5.0,2.0,1.5,2,2,64.4277229181592,490.0,27009.08075383588,1,1,2,3,100.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032951880447600966,18006.053835890587,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +24867,2,44.0,0.0,1,111,792.0,0.0,0.0,35,37,0.0,0.0,1350.5188303506725,792.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,124888,2,3,0,0,1,,0.0,343.0,43,2.0,0.0,2.0,2.0,1.5,2,2,268.540869421866,792.0,64225.97493852407,1,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012331459362946034,42817.31662568272,9,5,9,9_0,9_4,9_1_0 +24868,2,54.0,0.0,5,111,1920.0,0.0,0.0,46,21,0.0,740.2989478487152,3273.9850432743574,2539.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124889,2,1,3,0,1,,181.0,,43,2.0,1.0,7.0,4.0,2.1,2,2,1187.46828085632,1920.0,81250.58709232546,4,1,0,1,168.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031249004971680035,38690.75575825021,9,5,9,9_1,9_3,9_0_0 +24869,2,66.0,0.0,6,111,240.0,,,85,86,0.0,0.0,,366.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,124890,2,2,0,0,2,,400.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,78.45723682630921,240.0,28666.816176011394,6,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012767375272956594,19111.210784007595,5,3,5,5_1,5_2,5_0_0 +24870,2,64.0,0.0,2,111,200.0,150.0,0.0,0,77,0.0,0.0,341.04010867441224,350.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,2,,2,124891,2,2,0,1,1,480.0,210.0,283.0,21,1.0,2.0,3.0,2.0,1.5,2,2,295.215212415132,200.0,24498.630366740756,0,5,2,3,86.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014286512950338589,16332.420244493836,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +24871,2,89.0,0.0,7,111,200.0,,,0,77,0.0,0.0,,989.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,124892,2,2,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,116.67187317173565,200.0,9218.718411024478,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1072817235438361,9218.718411024478,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24872,2,81.0,0.0,2,111,338.0,0.0,0.0,77,77,1792.9608467622227,0.0,576.3577836597567,2188.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124893,2,1,2,0,1,,392.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1004.13828126569,338.0,35782.83021305853,5,5,0,1,83.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06114664454913672,23855.22014203902,6,3,6,6_1,6_3,6_0_1 +24873,2,61.0,0.0,5,112,300.0,0.0,0.0,0,78,0.0,0.0,511.56016301161833,2550.0,3117.5757571421723,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,124894,1,2,2,0,2,,180.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1058.76722295346,300.0,20005.42716287249,0,5,0,1,80.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1274654112226343,20005.42716287249,5,3,5,5_1,5_0,5_0_0 +24874,1,67.0,309.0,2,111,450.0,940.0,0.0,86,86,0.0,0.0,767.3402445174275,1390.0,0.0,1784.5938050634018,71,0,0,0,0,0,0,0,0,0,,2,,2,124895,2,2,0,0,1,,0.0,297.0,41,0.0,3.0,4.0,2.0,1.5,2,2,377.187271386157,450.0,4378.372054278175,5,5,2,3,55.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.3174695943534103,2918.9147028521165,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24875,2,78.0,0.0,2,111,239.0,0.0,0.0,0,77,0.0,0.0,407.54292986592264,287.0,66.50828281903301,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,124896,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1896.62200679634,239.0,21533.93636372857,0,5,0,1,71.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013327800136133881,21533.93636372857,6,3,6,6_0,6_2,6_0_1 +24876,2,46.0,0.0,5,111,600.0,,,43,64,0.0,0.0,,726.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,30.0,1,,3,124897,2,1,0,0,2,,180.0,,43,3.0,1.0,3.0,4.0,2.3,3,3,114.85514715645435,600.0,33975.6708795693,1,1,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021368231478736392,14772.030817204044,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +24877,1,23.0,357.0,6,111,0.0,,,0,85,0.0,0.0,,257.0,0.0,,60,0,0,0,0,0,0,0,0,0,,2,,4,124898,2,1,0,0,2,,257.0,370.0,31,0.0,0.0,2.0,2.0,1.3,1,1,159.6622833255883,0.0,9104.70349752727,0,6,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02822716852556463,7003.618075020978,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24878,2,72.0,0.0,6,111,0.0,0.0,0.0,86,77,0.0,0.0,0.0,948.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,124899,2,1,2,0,1,,327.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,642.768754517235,0.0,27468.116129041606,5,5,0,1,93.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034512741811139155,18312.07741936107,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +24879,2,70.0,0.0,2,111,350.0,0.0,0.0,77,78,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124900,1,2,0,1,1,444.0,0.0,423.0,41,0.0,3.0,3.0,2.0,1.5,2,2,307.102544050857,350.0,23016.022388984355,5,5,2,3,66.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015206797859542955,15344.01492598957,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +24880,2,64.0,0.0,9,111,0.0,0.0,0.0,46,75,0.0,0.0,0.0,1570.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,124901,2,1,2,0,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1151.78877192015,0.0,36968.0,4,5,0,1,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042469162518935295,24645.333333333332,7,4,7,7_1,7_3,7_0_0 +24881,2,48.0,0.0,2,111,340.0,,,0,52,0.0,0.0,,363.0,31.86855218411998,,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,124902,1,2,0,0,2,,320.0,305.0,12,1.0,0.0,4.0,1.0,1.0,1,1,122.42681339539426,340.0,30064.508252916647,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012074037497845464,30064.508252916647,8,4,8,8_0,8_2,8_0_1 +24882,1,21.0,380.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1205.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,124903,2,1,0,0,2,,0.0,500.0,32,1.0,0.0,3.0,2.0,1.3,1,1,430.838904660909,0.0,9329.973190724144,0,4,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1291536401410039,7176.902454403187,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24883,2,56.0,0.0,2,111,265.0,695.0,0.0,0,55,0.0,0.0,451.8781439935962,960.0,0.0,1319.4603133181533,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,124904,2,2,0,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1840.49069919261,265.0,16656.779060710625,0,1,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05763419185071689,16656.779060710625,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +24884,1,54.0,263.0,7,111,1500.0,,,85,21,0.0,0.0,,1740.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,5,124905,2,1,0,0,2,,360.0,496.0,42,1.0,3.0,4.0,4.0,2.3,3,3,130.1806411566635,1500.0,36304.903535155165,6,1,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.047927410089799685,15784.74066745877,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +24885,2,79.0,0.0,2,111,2038.0,0.0,0.0,0,72,0.0,0.0,3475.1987073922605,2158.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,124906,2,2,5,0,1,,232.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,473.217352326942,2038.0,20880.6755345941,0,5,0,1,112.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10334914674693975,20880.6755345941,5,3,5,5_1,5_2,5_0_1 +24886,2,49.0,0.0,7,111,900.0,,,34,43,0.0,0.0,,900.0,0.0,,33,0,0,0,0,0,0,0,0,2,25.0,1,,5,124907,2,1,0,0,2,,250.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,75.85319974143896,900.0,76421.96040243401,1,1,1,2,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011776719613847218,36391.409715444766,9,5,9,9_1,9_2,9_0_0 +24887,1,45.0,229.0,2,111,0.0,0.0,300.0,0,52,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,71,0,0,0,0,0,0,0,0,0,,2,,2,124908,2,1,0,1,1,240.0,0.0,216.0,22,2.0,0.0,1.0,2.0,1.5,2,2,236.137268099213,0.0,10761.373573671466,0,4,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027877482176993953,7174.249049114311,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +24888,2,33.0,0.0,5,111,430.0,0.0,0.0,52,63,0.0,0.0,733.2362336499863,430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,124909,1,2,0,1,1,593.0,180.0,275.0,43,2.0,1.0,3.0,4.0,2.1,2,2,259.445531401354,430.0,41598.5826133224,1,4,2,3,75.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010336890657959287,19808.84886348686,5,3,5,5_0,5_2,5_0_0 +24889,2,50.0,0.0,6,111,3750.0,0.0,0.0,54,38,0.0,211.89236432163582,6394.502037645229,3910.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,4,124910,2,1,1,0,1,,650.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,1235.27995110039,3750.0,113430.98412668412,1,1,1,2,150.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03447029954031925,45372.39365067365,10,5,10,10_1,10_3,10_0_0 +24890,1,51.0,286.0,2,111,300.0,300.0,0.0,85,56,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,124911,2,1,0,1,1,440.0,0.0,238.0,42,2.0,0.0,3.0,5.0,2.5999999999999996,3,3,342.737495873461,300.0,16580.529506174276,7,1,2,3,68.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.036187022843665595,6377.126733143953,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24891,1,54.0,175.0,7,400,1240.0,0.0,0.0,0,77,0.0,1191.8945493092015,2114.448673781356,2140.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,124912,1,1,3,0,1,,365.0,450.0,11,0.0,3.0,4.0,1.0,1.0,1,1,841.568553506266,1240.0,16242.690446124761,0,7,2,3,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.13175157201315554,16242.690446124761,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +24892,2,77.0,0.0,1,300,1296.0,,,77,78,0.0,0.0,,1548.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,1,124913,2,3,0,0,2,,272.0,,41,0.0,7.0,7.0,2.0,1.5,2,2,83.7166981953634,1296.0,32657.917562864044,5,5,0,1,69.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04740045035082889,21771.945041909363,6,3,6,6_1,6_1,6_1_0 +24893,2,32.0,0.0,2,120,1100.0,0.0,0.0,55,63,0.0,794.5963662061343,1875.7205977092674,1700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,124914,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,201.041551180238,1100.0,36752.943650757996,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04625479842251871,17501.40173845619,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +24894,1,45.0,323.0,2,111,350.0,400.0,0.0,0,52,0.0,0.0,596.8201901802214,750.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,124915,2,2,0,1,1,576.0,0.0,298.0,22,3.0,0.0,3.0,3.0,2.0,3,3,326.92000073826,350.0,12459.448563752972,0,1,2,3,62.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06019528040606067,6229.724281876486,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24895,0,73.0,0.0,1,400,0.0,0.0,0.0,71,71,0.0,0.0,0.0,2353.0,290.9737373332694,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,124916,1,3,4,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1402.53706583347,0.0,18577.335723025088,5,5,0,1,110.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12665971240879548,12384.890482016724,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +24896,2,83.0,0.0,1,111,328.0,0.0,0.0,77,75,2098.818873562837,0.0,559.3057782260361,2378.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,124917,2,1,1,0,1,,177.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,456.467592552199,328.0,42464.79293506427,5,5,0,1,84.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05599933110792174,28309.861956709516,8,4,8,8_1,8_4,8_1_0 +24897,2,37.0,0.0,1,111,850.0,840.0,0.0,85,21,0.0,0.0,1449.420461866252,1690.0,0.0,1594.7434002694229,43,0,0,0,0,0,0,0,0,2,7.0,1,,1,124918,2,1,1,0,1,,280.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,2197.6738467512,850.0,27758.868679528543,7,1,1,2,115.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06088144367520035,18505.912453019027,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +24898,2,69.0,0.0,1,300,360.0,0.0,0.0,77,71,0.0,0.0,613.872195613942,2060.0,2355.5016831740854,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,124919,2,1,2,0,1,,120.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1427.95633234146,360.0,31819.62342781153,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06473992392378483,21213.082285207685,5,3,5,5_1,5_0,5_1_0 +24899,2,66.0,0.0,2,111,0.0,0.0,416.0,77,75,0.0,0.0,262.21240881253345,416.0,0.0,497.8405733869073,33,0,0,0,0,0,0,0,0,0,,1,,2,124920,2,2,5,1,1,240.0,178.0,351.0,41,0.0,1.0,2.0,2.0,1.5,2,2,307.952982200286,0.0,25384.76481174827,6,5,2,3,36.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016387782320814406,16923.176541165514,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +24900,1,44.0,344.0,5,111,660.0,2880.0,0.0,85,55,0.0,0.0,1125.4323586255605,3540.0,0.0,5467.691658066592,71,2,1,2,2,1,2,2,2,3,45.0,2,,3,124921,2,1,0,0,1,,0.0,531.0,42,1.0,0.0,3.0,5.0,3.0,5,3,767.88045903482,660.0,35762.259208468226,7,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.09898703488961222,11920.753069489409,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +24901,2,27.0,0.0,6,111,0.0,0.0,0.0,81,38,0.0,0.0,0.0,1329.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,4,124922,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1460.46340402631,0.0,29791.22637526462,4,1,0,1,63.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.044610449508163126,19860.817583509746,5,3,5,5_0,5_3,5_0_0 +24902,0,42.0,0.0,1,400,0.0,0.0,0.0,0,69,0.0,0.0,0.0,428.0,0.0,0.0,50,2,1,2,2,1,2,2,2,1,1.0,1,,1,124923,2,1,1,1,1,733.0,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1538.78189368254,0.0,17252.540202321972,0,1,5,0,60.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.024807941032497734,17252.540202321972,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +24903,2,71.0,0.0,7,111,250.0,,,78,75,0.0,0.0,,271.0,29.09737373332694,,70,0,0,0,0,0,0,0,0,0,,2,,5,124924,2,1,0,0,2,,238.0,460.0,41,0.0,4.0,2.0,2.0,1.5,2,2,95.46827878008399,250.0,56359.13009310237,5,5,3,4,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004808448951435588,37572.75339540158,9,5,9,9_0,9_3,9_0_0 +24904,2,53.0,0.0,5,120,1500.0,0.0,0.0,85,52,1371.087706347582,0.0,2557.8008150580918,2800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,124925,2,2,2,0,1,,150.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,181.444710672546,1500.0,35666.611702779126,7,1,0,1,150.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07850479387650454,17833.305851389563,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +24905,1,45.0,361.0,7,111,500.0,,,85,81,0.0,0.0,,500.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,124926,1,3,0,0,2,,300.0,450.0,42,1.0,0.0,3.0,4.0,2.5,4,3,123.1399501590639,500.0,15198.338905905037,6,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03289833205428352,6079.335562362015,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24906,2,63.0,0.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,613.872195613942,395.0,48.49562288887823,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,124927,2,3,0,1,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2015.34168327749,360.0,17473.559476698894,0,5,1,2,64.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02260558305402715,17473.559476698894,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +24907,2,52.0,0.0,7,111,1900.0,0.0,0.0,0,85,0.0,397.2981831030672,3239.8810324069163,2290.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,7,,5,124928,1,1,0,0,2,,3000.0,,21,1.0,2.0,2.0,5.0,2.6,3,3,949.441339338789,1900.0,10501.27962014273,0,7,0,1,20.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.2180686623759167,4038.953700054896,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +24908,2,57.0,0.0,2,111,370.0,0.0,0.0,47,54,1054.6828510366015,0.0,630.9242010476627,1464.0,130.24538718727297,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,124929,2,1,2,0,1,,350.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1122.48297250624,370.0,43197.324466985265,4,1,1,2,110.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.033890987880948555,28798.21631132351,8,4,8,8_1,8_3,8_0_1 +24909,2,90.0,0.0,6,111,300.0,,,0,78,0.0,0.0,,400.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,4,124930,2,1,0,0,2,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,113.81395617269902,300.0,10621.684410646389,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03765881046127389,10621.684410646389,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +24910,2,56.0,0.0,7,120,550.0,,,77,63,0.0,0.0,,802.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,124931,2,1,0,0,1,,450.0,,42,4.0,0.0,6.0,5.0,3.0,5,5,87.21534683673043,550.0,4974.2276045163635,6,1,0,1,100.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.16123106213954141,1658.075868172121,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +24911,1,41.0,332.0,8,112,700.0,,,0,11,0.0,0.0,,790.0,124.70303028568689,,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,124932,2,1,0,0,2,,220.0,600.0,32,1.0,0.0,4.0,4.0,2.3,3,2,92.24731560969643,700.0,22021.322909308506,0,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0358743206869767,9574.488221438482,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +24912,2,49.0,0.0,1,111,780.0,1340.0,0.0,54,22,0.0,0.0,1330.0564238302077,2120.0,0.0,2543.9954242393173,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,124933,1,2,1,0,1,,513.0,,43,2.0,0.0,7.0,4.0,2.3,4,2,408.926927014293,780.0,50214.264776866716,1,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042219078770155884,21832.28903342031,6,3,6,6_1,6_4,6_1_0 +24913,2,44.0,0.0,2,111,490.0,0.0,0.0,0,43,0.0,0.0,835.54826625231,490.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,3.0,2,,2,124934,1,2,0,0,2,336.0,250.0,246.0,12,1.0,0.0,2.0,1.0,1.0,1,1,719.190916167912,490.0,19140.376621962445,0,1,2,3,52.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02560033220233264,19140.376621962445,5,3,5,5_0,5_2,5_0_1 +24914,2,60.0,0.0,9,111,800.0,,,81,38,0.0,0.0,,800.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,124935,2,2,0,0,2,,400.0,750.0,43,2.0,0.0,3.0,2.0,1.5,2,2,47.657003656179505,800.0,8130.292991974893,4,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09839743792624078,5420.195327983262,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +24915,1,26.0,327.0,7,111,0.0,0.0,0.0,53,54,0.0,0.0,0.0,1035.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,5,124936,1,2,0,0,2,,0.0,460.0,43,2.0,0.0,1.0,2.0,1.5,2,2,364.798028315683,0.0,12147.771668231999,4,1,2,3,32.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08520081116659935,8098.514445487999,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +24916,1,42.0,320.0,8,111,0.0,,,85,67,0.0,0.0,,385.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,124937,2,3,0,0,2,,1827.0,475.0,42,1.0,0.0,4.0,5.0,2.4,2,2,136.44277929964522,0.0,40770.293827770955,6,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009443149996082558,16987.622428237897,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +24917,2,37.0,0.0,2,111,409.0,0.0,0.0,54,46,0.0,0.0,697.427022239173,409.0,0.0,0.0,50,1,1,2,1,2,2,2,2,2,40.0,2,,2,124938,1,3,0,1,2,,0.0,887.0,43,2.0,2.0,4.0,4.0,2.1,2,2,1931.177801196,409.0,43405.55217620147,1,1,2,3,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.009422757677167572,20669.310560095935,5,3,5,5_0,5_3,5_0_1 +24918,2,69.0,0.0,1,112,279.0,0.0,0.0,0,77,2271.7868611328395,0.0,475.7509516008051,3229.0,1102.9290234156306,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,124939,2,2,2,0,1,,260.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,423.563160407867,279.0,18992.90823493424,0,5,0,1,80.0,7,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17001082509632734,18992.90823493424,5,3,5,5_1,5_1,5_1_0 +24919,1,40.0,377.0,2,111,315.0,0.0,0.0,0,52,0.0,0.0,537.1381711621992,435.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124940,1,2,0,1,1,1128.0,0.0,496.0,32,1.0,0.0,5.0,2.0,1.3,1,1,2468.11927211623,315.0,12980.128477186237,0,1,2,3,80.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03351276536010813,9984.714213220183,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +24920,2,76.0,0.0,1,111,300.0,800.0,0.0,0,77,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,1,124941,2,1,2,0,1,,290.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,385.974110058126,300.0,35346.292508011575,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031120661374900195,23564.19500534105,6,3,6,6_1,6_3,6_1_0 +24921,2,58.0,0.0,2,111,500.0,1200.0,0.0,21,37,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,124942,2,2,0,0,1,,0.0,830.0,43,2.0,5.0,4.0,2.0,1.5,2,2,1934.74771019254,500.0,11436.876067328089,1,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1486419884234313,7624.584044885392,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +24922,2,42.0,0.0,2,111,700.0,800.0,0.0,42,38,0.0,0.0,1193.6403803604428,1500.0,0.0,1518.8032383518312,10,0,0,0,0,0,0,0,0,2,60.0,1,,2,124943,2,1,1,0,1,,800.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,3,2,1070.38000379841,700.0,85942.57386090995,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017453514976495936,31830.58291144813,8,4,8,8_1,8_4,8_0_1 +24923,1,51.0,307.0,1,111,160.0,0.0,0.0,0,56,0.0,0.0,272.8320869395298,160.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,1,124944,1,1,0,1,2,170.0,0.0,540.0,12,1.0,1.0,1.0,1.0,1.0,1,1,960.574834730593,160.0,7768.771939800614,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.020595275706356546,7768.771939800614,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +24924,2,45.0,0.0,9,112,1500.0,0.0,0.0,48,56,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,124945,2,1,1,0,1,,665.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,1497.06071865184,1500.0,72095.98673230912,1,1,1,2,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020805596372090288,28838.394692923648,8,4,8,8_1,8_1,8_0_0 +24925,2,28.0,0.0,9,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,381.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2011.0,6,124946,2,1,1,0,1,,88.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,8612.09352094057,0.0,24756.220570764337,0,1,2,3,56.0,8,3,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015390071312013552,24756.220570764337,7,4,7,7_1,7_1,7_0_0 +24926,1,66.0,192.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1670.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,124947,2,2,0,1,1,980.0,173.0,178.0,11,0.0,4.0,2.0,1.0,1.0,1,1,285.777657486871,0.0,16729.06747076465,0,5,2,3,50.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09982624571982002,16729.06747076465,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +24927,1,42.0,83.0,5,111,680.0,0.0,0.0,0,52,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,50,2,2,1,2,1,1,2,2,3,60.0,2,,3,124948,2,1,0,1,1,1092.0,0.0,355.0,32,1.0,0.0,3.0,2.0,1.5,2,1,191.830467474695,680.0,21855.190308427413,0,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.031113890586337765,14570.126872284942,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +24928,0,70.0,0.0,1,111,400.0,1000.0,0.0,0,86,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,124949,2,1,2,0,1,,240.0,,21,1.0,7.0,3.0,2.0,1.5,2,2,197.82388373079,400.0,26045.523816177174,0,6,5,0,55.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05375203854147268,17363.682544118117,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +24929,2,38.0,0.0,1,111,660.0,0.0,0.0,68,21,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,124950,1,2,0,0,1,,0.0,540.0,43,2.0,0.0,2.0,4.0,2.3,3,2,904.564434216959,660.0,16064.2707972158,1,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04108496478498039,6984.46556400687,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +24930,2,57.0,0.0,2,111,110.0,0.0,0.0,77,52,0.0,0.0,187.57205977092673,110.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,124951,1,3,0,1,1,,0.0,386.0,42,1.0,2.0,1.0,2.0,1.5,2,2,465.378606354284,110.0,37901.57968007031,5,1,2,3,30.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002902253703632332,25267.71978671354,7,4,7,7_0,7_2,7_0_1 +24931,2,58.0,0.0,1,111,2896.0,0.0,0.0,52,34,0.0,132.4327277010224,4938.260773605489,3056.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,124952,2,2,3,0,1,,540.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1098.92300300431,2896.0,62672.173584504235,1,1,0,1,90.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04876167244908831,41781.449056336154,9,5,9,9_1,9_2,9_1_0 +24932,2,33.0,0.0,1,111,780.0,0.0,0.0,0,42,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,2,,1,124953,2,1,0,0,1,,0.0,619.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1181.85632493484,780.0,1722.904723816654,0,4,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.452723815320507,1722.904723816654,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +24933,2,66.0,0.0,2,111,686.0,68.0,0.0,37,74,0.0,0.0,1169.767572753234,3434.0,0.0,129.09827525990565,20,0,0,0,0,0,0,0,0,0,,2,,2,124954,2,1,0,1,1,1450.0,0.0,393.0,42,1.0,1.0,4.0,2.0,1.5,2,2,178.591641728206,686.0,79436.52373026677,1,5,2,3,81.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04322948486089886,52957.68248684451,10,5,10,10_0,10_4,10_0_1 +24934,2,63.0,0.0,8,111,540.0,,,0,43,0.0,0.0,,771.0,320.07111106659636,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,124955,2,2,0,0,2,,400.0,,22,2.0,0.0,4.0,3.0,2.0,3,3,91.7197862926788,540.0,37838.82306360394,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02037589802156406,18919.41153180197,5,3,5,5_1,5_3,5_0_0 +24935,0,41.0,0.0,1,111,316.0,756.0,0.0,0,47,0.0,0.0,538.8433717055714,1072.0,0.0,1435.2690602424805,31,0,0,0,0,0,0,0,0,0,,1,,1,124956,2,1,2,0,1,,372.0,,22,1.0,2.0,4.0,2.0,1.5,2,2,493.196018895375,316.0,34600.677634113,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030982052182212443,23067.118422742,6,3,6,6_1,6_3,6_1_0 +24936,1,22.0,300.0,2,111,0.0,0.0,1056.0,52,64,0.0,0.0,665.6161146779694,1056.0,0.0,1263.749147828303,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,124957,2,1,0,1,1,360.0,456.0,300.0,43,2.0,0.0,4.0,3.0,1.8,2,2,422.336275771634,0.0,12150.037134829181,4,2,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08691331460814061,6750.020630460656,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +24937,2,81.0,0.0,2,112,1157.0,0.0,0.0,74,74,3691.3899786281054,0.0,1972.9170286814747,4737.0,110.84713803172167,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,124958,2,1,2,0,1,,542.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,894.13109582863,1157.0,139255.79910149824,5,5,0,1,181.0,10,3,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03401653669408325,92837.19940099883,10,5,10,10_1,10_1,10_0_1 +24938,2,77.0,0.0,5,111,385.0,210.0,0.0,0,74,1729.6798757000265,0.0,656.5022091982436,2235.0,0.0,398.6858500673557,71,0,0,0,0,0,0,0,0,0,,1,,3,124959,2,1,2,0,1,,420.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,923.805078094786,385.0,22238.629245496384,0,5,0,1,120.0,10,8,1,1,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10050079864758828,22238.629245496384,6,3,6,6_1,6_4,6_0_0 +24939,2,63.0,0.0,1,300,612.0,0.0,0.0,0,75,2572.3714736782713,662.163638505112,1043.5827325437015,3631.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,124960,2,3,4,0,1,,205.0,410.0,11,0.0,0.0,3.0,1.0,1.0,1,1,3397.99980155175,612.0,20099.282547996772,0,5,2,3,80.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1806532144283871,20099.282547996772,5,3,5,5_1,5_0,5_1_0 +24940,2,31.0,0.0,5,221,1200.0,0.0,0.0,55,67,0.0,0.0,2046.2406520464733,1280.0,110.84713803172167,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,124961,2,1,2,0,1,,234.0,340.0,43,2.0,0.0,4.0,4.0,2.1,2,2,2106.45885209796,1200.0,44636.74694702825,1,4,3,4,80.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02867592482756447,21255.593784299166,5,3,5,5_1,5_1,5_0_0 +24941,2,55.0,0.0,9,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,966.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,2009.0,6,124962,2,1,0,0,1,,0.0,370.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1548.77456197258,0.0,35440.03285427018,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027257311074518554,35440.03285427018,9,5,9,9_0,9_4,9_0_0 +24942,1,41.0,450.0,7,111,200.0,,,0,85,0.0,0.0,,488.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,2,,5,124963,1,2,0,0,2,,600.0,521.0,31,0.0,0.0,4.0,6.0,2.6999999999999997,2,1,134.62481144875596,200.0,26224.1863885554,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018608775607733247,9712.66162539089,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +24943,1,49.0,75.0,9,112,560.0,0.0,0.0,0,52,0.0,0.0,954.9123042883542,560.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,124964,1,1,0,0,1,,120.0,347.0,32,1.0,1.0,3.0,2.0,1.5,2,2,4475.59121206387,560.0,19453.0,0,1,2,3,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02878733357322778,12968.666666666666,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +24944,2,53.0,0.0,1,111,250.0,380.0,0.0,85,68,0.0,0.0,426.3001358430153,630.0,0.0,721.4315382171199,70,2,2,2,2,1,2,2,2,0,,2,,1,124965,2,3,0,1,1,93.0,400.0,343.0,42,1.0,4.0,4.0,2.0,1.5,2,2,426.768331407042,250.0,23547.99704267593,6,1,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.026753867807026384,15698.664695117286,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +24945,2,75.0,0.0,9,120,600.0,0.0,0.0,0,75,0.0,794.5963662061343,1023.1203260232367,1200.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2007.0,6,124966,2,1,1,0,1,,320.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1877.123080657,600.0,16338.095253891752,0,5,0,1,90.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07344797428048773,16338.095253891752,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +24946,2,69.0,0.0,5,112,1100.0,0.0,0.0,77,74,0.0,0.0,1875.7205977092674,1132.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,124967,2,1,3,0,2,,150.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,929.654366941563,1100.0,40578.011627895496,5,5,0,1,110.0,9,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027896881946324906,27052.00775193033,7,4,7,7_1,7_1,7_0_0 +24947,0,30.0,0.0,7,400,1080.0,,,0,42,0.0,0.0,,1264.0,254.94841747295985,,20,0,0,0,0,0,0,0,0,0,,1,,5,124968,2,2,0,0,2,,360.0,,32,2.0,1.0,4.0,3.0,1.8,2,2,22.67293860381903,1080.0,48041.54368358316,0,1,5,0,110.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02631056171560816,26689.74649087953,7,4,7,7_1,7_1,7_0_0 +24948,2,50.0,0.0,2,111,410.0,0.0,0.0,0,21,1054.6828510366015,0.0,699.1322227825451,1460.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,2,124969,2,1,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,330.885441176584,410.0,34079.27229962791,0,1,1,2,120.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04284129036452286,34079.27229962791,9,5,9,9_1,9_2,9_0_1 +24949,1,55.0,218.0,2,111,435.0,548.0,0.0,0,68,0.0,0.0,741.7622363668467,983.0,0.0,1040.3802182710044,71,0,0,0,0,0,0,0,0,3,60.0,2,,2,124970,1,2,0,1,1,455.0,0.0,278.0,32,1.0,1.0,5.0,2.0,1.5,2,2,1255.50598843171,435.0,20111.082465587442,0,1,2,3,84.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04887852265943591,13407.388310391629,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +24950,0,34.0,0.0,6,112,0.0,,,0,47,0.0,0.0,,961.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,,4,124971,1,1,0,0,2,,189.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,128.26298173639134,0.0,30104.179292371962,0,1,5,0,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03192247796117484,30104.179292371962,8,4,8,8_1,8_1,8_0_0 +24951,2,33.0,0.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,2413.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,124972,2,2,0,0,2,,164.0,367.0,12,1.0,0.0,1.0,1.0,1.0,1,1,438.590784837657,0.0,14556.95993621873,0,4,2,3,40.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1657626324845676,14556.95993621873,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +24952,2,56.0,0.0,7,111,530.0,630.0,0.0,56,56,0.0,0.0,903.7562879871924,1160.0,0.0,1196.057550202067,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,124973,2,1,0,0,1,,540.0,624.0,43,2.0,3.0,5.0,3.0,2.0,3,2,1338.56509992265,530.0,35954.43188527644,1,1,2,3,90.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03226306018966822,17977.21594263822,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +24953,2,43.0,0.0,1,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,788.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,124974,2,1,1,0,1,,165.0,,42,1.0,0.0,3.0,4.0,2.3,3,2,164.194918563737,0.0,37511.40602930873,6,1,0,1,100.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02100694384487516,16309.306969264668,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +24954,2,67.0,0.0,2,120,323.0,0.0,0.0,77,71,2003.897416969543,0.0,550.7797755091758,2423.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,124975,2,1,2,0,1,,352.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2575.24708991999,323.0,43062.452680996634,5,5,0,1,74.0,0,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056267115529842184,28708.30178733109,8,4,8,8_1,8_1,8_0_1 +24955,2,63.0,0.0,2,111,689.0,1146.0,0.0,74,74,0.0,0.0,1174.8831743833503,1835.0,0.0,2175.685638938998,20,0,0,0,0,0,0,0,0,0,,1,,2,124976,2,2,1,0,1,,250.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,296.666587402625,689.0,78589.10693741788,5,5,0,1,115.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023349291924913314,52392.73795827859,10,5,10,10_1,10_3,10_0_1 +24956,2,67.0,0.0,5,112,467.0,1712.0,0.0,75,75,0.0,0.0,796.3286537547526,2179.0,0.0,3250.2389300729187,31,0,0,0,0,0,0,0,0,0,,1,,3,124977,2,1,2,0,1,,300.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,410.121714517446,467.0,49789.97513495359,5,5,0,1,180.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04376382984915968,33193.31675663572,8,4,8,8_1,8_1,8_0_0 +24957,1,37.0,150.0,1,111,360.0,828.0,0.0,85,53,0.0,0.0,613.872195613942,1188.0,0.0,1571.9613516941454,10,0,0,0,0,0,0,0,0,0,,2,,1,124978,2,2,0,0,1,,0.0,229.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1787.62973508107,360.0,17657.20110585198,6,4,2,3,67.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.06728133144534844,9809.556169917765,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +24958,2,56.0,0.0,2,111,225.0,70.0,0.0,0,48,0.0,0.0,383.6701222587138,295.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,0,,2,,2,124979,1,1,0,1,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,964.537229293519,225.0,38894.5992438514,0,1,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00758460058041695,38894.5992438514,9,5,9,9_0,9_4,9_0_1 +24959,0,21.0,0.0,1,111,552.0,0.0,0.0,56,63,0.0,0.0,941.2706999413778,552.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,7.0,1,,1,124980,2,2,3,0,1,,230.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1263.74637922654,552.0,9468.255511239853,4,1,5,0,30.0,8,6,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05830007432147514,6312.1703408265685,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +24960,2,65.0,0.0,2,111,400.0,200.0,0.0,0,74,0.0,0.0,682.0802173488245,600.0,0.0,379.7008095879578,20,0,0,0,0,0,0,0,0,0,,2,,2,124981,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1075.39368111137,400.0,18641.420617959917,0,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03218638816732321,18641.420617959917,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +24961,0,43.0,0.0,6,111,1330.0,0.0,0.0,52,63,0.0,0.0,2267.9167226848413,1330.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,1,,4,124982,2,2,2,0,1,,191.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,376.892152030577,1330.0,49965.23872246125,1,1,5,0,60.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.02661850586540108,24982.619361230623,7,4,7,7_1,7_2,7_0_0 +24962,0,79.0,0.0,2,221,219.0,0.0,0.0,0,77,2673.6210273777847,0.0,373.43891899848137,2794.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,124983,2,1,1,0,1,,272.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,554.895178350077,219.0,31394.114773402936,0,5,0,1,71.0,1,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08899757232100948,31394.114773402936,8,4,8,8_1,8_1,8_0_1 +24963,2,50.0,0.0,9,111,860.0,1170.0,0.0,47,46,0.0,0.0,1466.4724672999725,2030.0,0.0,2221.249736089553,42,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,124984,2,1,1,0,1,,200.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,1410.73833709385,860.0,72975.5914249115,1,1,1,2,200.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027817520356635626,29190.2365699646,8,4,8,8_1,8_3,8_0_0 +24964,2,61.0,0.0,5,111,560.0,950.0,0.0,78,68,0.0,0.0,954.9123042883542,1510.0,0.0,1803.5788455427996,71,2,2,2,1,2,2,2,2,2,20.0,1,,3,124985,2,1,3,0,1,,280.0,393.0,42,1.0,4.0,4.0,2.0,1.5,2,2,214.088210397254,560.0,23822.325648414986,5,1,2,3,100.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.06338591883452267,15881.550432276657,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +24965,2,60.0,0.0,1,111,430.0,1800.0,0.0,33,34,0.0,0.0,733.2362336499863,2230.0,0.0,3417.30728629162,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,124986,2,1,0,0,1,,110.0,,43,3.0,0.0,7.0,3.0,2.0,3,3,1240.17461426097,430.0,136943.32027106133,1,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016284109335059263,68471.66013553066,10,5,10,10_0,10_4,10_1_0 +24966,2,41.0,0.0,1,111,700.0,0.0,0.0,0,68,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,8,,1,124987,2,1,0,0,2,,0.0,393.0,12,1.0,1.0,2.0,1.0,1.0,1,1,802.897910541164,700.0,16549.634991582665,0,1,2,3,25.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0422970053633224,16549.634991582665,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +24967,2,73.0,0.0,7,112,484.0,715.0,0.0,77,78,0.0,0.0,825.3170629920776,1199.0,0.0,1357.430394276949,70,0,0,0,0,0,0,0,0,0,,2,,5,124988,2,1,0,0,1,,180.0,560.0,41,0.0,3.0,4.0,2.0,1.5,2,2,972.899498237787,484.0,34348.07100723956,5,5,2,3,90.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.034907346026718244,22898.714004826372,6,3,6,6_0,6_1,6_0_0 +24968,2,76.0,0.0,5,111,180.0,60.0,0.0,0,77,0.0,0.0,306.936097806971,240.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,2,,3,124989,2,2,0,1,1,,0.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,392.358132775888,180.0,34533.634723630166,0,5,0,1,104.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006949746295769334,34533.634723630166,9,5,9,9_0,9_3,9_0_0 +24970,2,69.0,0.0,2,111,300.0,0.0,0.0,74,74,0.0,5297.309108040896,511.56016301161833,4300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,124991,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1263.76823598356,300.0,89578.82347498806,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04800241656668591,59719.215649992046,10,5,10,10_0,10_4,10_0_1 +24971,2,24.0,0.0,7,120,450.0,,,0,63,0.0,0.0,,708.0,357.4820201523024,,50,0,0,0,0,0,0,0,0,0,,1,,5,124992,2,1,0,0,1,,280.0,,22,3.0,1.0,5.0,3.0,2.0,3,3,88.31892533586743,450.0,26159.763602192917,0,1,0,1,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02706446475459166,13079.881801096459,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +24972,2,53.0,0.0,8,111,1800.0,,,33,34,0.0,0.0,,1944.0,199.524848457099,,31,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,124993,2,1,0,0,2,,450.0,,43,2.0,0.0,6.0,5.0,3.0,5,5,140.513181214787,1800.0,104569.67040335036,1,1,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018590476497645298,34856.556801116785,9,5,9,9_1,9_2,9_0_0 +24973,1,45.0,472.0,7,111,2000.0,1200.0,0.0,0,85,0.0,0.0,3410.4010867441225,3200.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,2,,5,124994,2,3,0,1,2,418.0,0.0,60.0,31,2.0,0.0,3.0,5.0,2.8,4,3,366.190008823944,2000.0,16463.30447804489,0,6,2,3,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.19437167090406737,5879.751599301747,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +24974,2,62.0,0.0,2,111,169.0,0.0,0.0,0,74,0.0,0.0,288.17889182987835,169.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,124995,2,2,0,1,1,,119.0,,31,0.0,1.0,5.0,2.0,1.5,2,2,321.529576089131,169.0,51980.67281282453,0,5,1,2,72.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0032512083983319427,34653.78187521635,9,5,9,9_0,9_3,9_0_1 +24975,1,45.0,351.0,1,111,0.0,0.0,752.0,0,56,0.0,0.0,473.9993543918873,752.0,0.0,899.94257496864,42,0,0,0,0,0,0,0,0,0,,2,,1,124996,1,3,0,0,2,,132.0,550.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1662.58361926606,0.0,14935.353436975998,0,1,2,3,68.0,7,5,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.050350331726214545,11488.73341305846,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +24976,1,48.0,232.0,2,111,0.0,0.0,300.0,0,68,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,50,2,1,2,1,2,2,2,2,0,,2,,2,124997,2,1,0,1,1,900.0,0.0,217.0,12,1.0,4.0,2.0,1.0,1.0,1,1,433.64513751037,0.0,6060.0,0,4,2,3,45.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04950495049504951,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24977,2,74.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,379.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,124998,2,1,0,1,1,574.0,0.0,494.0,11,0.0,3.0,3.0,1.0,1.0,1,1,354.647231116542,300.0,20110.01362576814,0,5,2,3,73.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018846332332384155,20110.01362576814,5,3,5,5_0,5_2,5_0_1 +24978,2,61.0,0.0,2,111,500.0,1500.0,0.0,77,75,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,70,2,2,1,1,1,2,2,2,0,,1,,2,124999,2,1,3,0,1,,300.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,370.414785611281,500.0,29278.54153581792,6,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06830941348472905,19519.02769054528,5,3,5,5_1,5_3,5_0_1 +24979,2,74.0,0.0,2,111,1316.0,0.0,0.0,74,74,0.0,0.0,2244.0439150776324,1316.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,125000,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,971.214883243586,1316.0,88758.49823489657,5,5,0,1,109.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014826749282274329,59172.33215659772,10,5,10,10_0,10_4,10_0_1 +24980,2,42.0,0.0,7,111,1241.0,0.0,0.0,0,47,0.0,26.486545540204478,2116.153874324728,1261.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,5,125001,1,3,0,0,1,,0.0,606.0,32,1.0,0.0,3.0,3.0,1.6,1,1,813.824232104218,1241.0,31886.350724981683,0,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.039546701686752034,19928.96920311355,5,3,5,5_0,5_4,5_0_0 +24981,1,61.0,18.0,7,211,0.0,,,0,77,0.0,0.0,,295.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,125002,2,1,0,0,2,,0.0,450.0,11,0.0,3.0,1.0,1.0,1.0,1,1,126.40198122072933,0.0,15137.957210326913,0,5,2,3,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01948743782937601,15137.957210326913,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +24982,2,49.0,0.0,8,112,500.0,,,68,46,0.0,0.0,,566.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125003,2,1,0,0,2,,150.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,78.55911095989467,500.0,7882.225798589067,4,4,0,1,90.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07180712840037075,3941.1128992945337,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +24983,1,41.0,258.0,2,211,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1209.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,125004,1,1,0,0,1,,245.0,292.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2160.37884843001,0.0,20798.801980568962,0,4,2,3,98.0,2,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05812834802357819,12999.2512378556,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +24984,2,52.0,0.0,5,111,420.0,,,52,64,0.0,0.0,,672.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,125005,2,1,0,0,2,,210.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,115.37591338770052,420.0,37398.3496529783,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01796870734231674,14959.33986119132,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +24985,2,50.0,0.0,1,111,1200.0,0.0,0.0,68,63,0.0,0.0,2046.2406520464733,2455.0,0.0,0.0,71,2,2,1,2,1,2,2,2,2,20.0,1,,1,125006,2,1,2,0,1,,230.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,404.989829827156,1200.0,24585.070292909375,1,1,0,1,85.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.09985735126037248,10689.16099691712,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +24986,1,58.0,270.0,2,111,384.0,120.0,0.0,53,48,0.0,0.0,654.7970086548714,1135.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,2,,2,125007,2,1,0,1,1,36.0,0.0,270.0,43,3.0,2.0,3.0,3.0,2.0,3,3,204.91591177604,384.0,30323.22923986691,1,4,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037430050441586205,15161.614619933454,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +24987,2,48.0,0.0,8,111,800.0,,,85,37,0.0,0.0,,880.0,110.84713803172167,,41,0,0,0,0,0,0,0,0,2,90.0,1,2003.0,6,125008,1,3,0,0,1,,300.0,,42,1.0,0.0,7.0,4.0,2.3,4,2,139.1571074253744,800.0,87213.78315389856,6,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010090148233188562,37919.03615386895,9,5,9,9_1,9_2,9_0_0 +24988,2,55.0,0.0,7,111,1500.0,0.0,0.0,0,34,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,5,125009,2,1,0,0,1,,0.0,609.0,32,2.0,0.0,4.0,3.0,2.0,3,3,724.188551417411,1500.0,65464.16355899012,0,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022913299711655854,32732.08177949506,8,4,8,8_0,8_4,8_0_0 +24989,2,37.0,0.0,9,112,540.0,,,62,55,0.0,0.0,,804.0,365.79555550468154,,41,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,125010,1,1,0,0,2,,396.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,129.13310399311817,540.0,60392.74792900984,1,1,1,2,48.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013312856718245074,28758.45139476659,8,4,8,8_1,8_2,8_0_0 +24990,2,69.0,0.0,7,211,570.0,1660.0,0.0,74,74,0.0,0.0,971.9643097220749,2230.0,0.0,3151.5167195800495,10,0,0,0,0,0,0,0,0,0,,1,,5,125011,2,1,3,0,1,,304.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,987.238882626866,570.0,127980.69914683372,5,5,0,1,140.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01742450240439377,85320.46609788915,10,5,10,10_1,10_2,10_0_0 +24991,2,34.0,0.0,9,221,200.0,365.0,0.0,0,47,0.0,0.0,341.04010867441224,565.0,0.0,692.9539774980229,31,0,0,0,0,0,0,0,0,3,15.0,8,2007.0,6,125012,2,1,0,0,1,,30.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2675.45586888804,200.0,24532.851129674153,0,1,1,2,54.0,1,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023030343966690202,24532.851129674153,7,4,7,7_0,7_1,7_0_0 +24992,1,44.0,231.0,2,111,400.0,600.0,0.0,0,81,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,125013,2,2,0,0,1,,193.0,292.0,12,1.0,0.0,3.0,1.0,1.0,1,1,382.56114306407,400.0,5052.906418848841,0,4,2,3,60.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.19790590149655318,5052.906418848841,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +24993,2,57.0,0.0,2,111,480.0,0.0,0.0,0,52,0.0,0.0,818.4962608185893,480.0,0.0,0.0,50,2,2,1,1,1,2,2,2,2,10.0,2,,2,125014,1,1,0,0,1,,160.0,327.0,12,1.0,1.0,2.0,1.0,1.0,1,1,340.173635800761,480.0,19181.55447973194,0,1,2,3,47.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.025024040700517194,19181.55447973194,5,3,5,5_0,5_3,5_0_1 +24994,2,32.0,0.0,2,111,300.0,1500.0,0.0,21,43,0.0,0.0,511.56016301161833,1800.0,0.0,2847.7560719096837,33,0,0,0,0,0,0,0,0,2,4.0,2,,2,125015,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1861.93659022815,300.0,35361.43679384928,1,1,1,2,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05090290902187237,16838.779425642515,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +24995,2,58.0,0.0,6,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,2479.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,4,125016,2,1,1,0,1,,790.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,1411.07310775677,0.0,85787.60936522197,0,1,1,2,120.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028896946987369703,57191.739576814645,10,5,10,10_1,10_3,10_0_0 +24996,2,63.0,0.0,2,112,586.0,1400.0,0.0,0,75,0.0,0.0,999.2475184160279,1986.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,2,125017,2,1,2,0,1,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,976.909903399571,586.0,20897.518239729383,0,5,0,1,114.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09503520835427767,20897.518239729383,5,3,5,5_1,5_2,5_0_1 +24997,2,60.0,0.0,7,111,580.0,1450.0,0.0,77,77,0.0,0.0,989.0163151557955,2030.0,0.0,2752.830869512694,70,0,0,0,0,0,0,0,0,0,,1,,5,125018,2,1,2,0,1,,200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1503.44759350106,580.0,48596.78734696645,5,5,0,1,124.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04177230864061878,32397.858231310965,8,4,8,8_1,8_3,8_0_0 +24998,1,25.0,406.0,2,300,0.0,0.0,0.0,63,56,0.0,0.0,0.0,910.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,125019,2,1,2,0,1,,266.0,409.0,43,2.0,1.0,5.0,4.0,2.1,2,2,1152.4960539513,0.0,13280.540391029392,4,4,2,3,84.0,0,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06852130810992284,6324.0668528711385,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +24999,2,63.0,0.0,1,120,360.0,0.0,0.0,72,72,1265.6194212439218,0.0,613.872195613942,1680.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,125020,2,1,2,0,1,,600.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1992.48708399861,360.0,33419.2673842021,5,5,0,1,175.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050270401821979095,22279.511589468068,6,3,6,6_1,6_1,6_1_0 +25000,2,42.0,0.0,1,112,840.0,0.0,0.0,52,64,2109.365702073203,231.75727347678918,1432.3684564325313,3069.0,74.82181817141213,0.0,50,2,2,1,2,2,2,2,1,2,30.0,5,,1,125021,2,1,2,0,1,,613.0,,43,2.0,3.0,5.0,3.0,2.0,3,2,1810.36573570919,840.0,46167.2705645042,1,1,1,2,120.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06647566473985159,23083.6352822521,6,3,6,6_1,6_0,6_1_0 +25001,2,29.0,0.0,1,112,0.0,0.0,0.0,0,33,0.0,0.0,0.0,227.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,2.0,2,,1,125022,2,3,0,0,1,,0.0,405.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2431.25268446112,0.0,21272.081202829486,0,1,3,4,31.0,9,2,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.010671264265849353,21272.081202829486,6,3,6,6_0,6_1,6_1_0 +25002,2,47.0,0.0,1,112,600.0,0.0,0.0,0,54,0.0,66.2163638505112,1023.1203260232367,650.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,,1,125023,2,1,0,0,1,,220.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1300.33513971255,600.0,24263.153217926276,0,1,1,2,80.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.02678959301628456,24263.153217926276,7,4,7,7_0,7_0,7_1_0 +25003,2,45.0,0.0,1,112,2500.0,0.0,0.0,67,62,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125024,2,1,4,0,1,,690.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,579.582044399214,2500.0,46393.56448369072,1,1,1,2,100.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05388678425170057,18557.42579347629,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +25004,2,61.0,0.0,6,111,800.0,,,77,13,0.0,0.0,,1064.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,125025,2,1,0,0,1,,400.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,138.2141438670303,800.0,52931.67106772884,5,1,0,1,102.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020101386911411816,35287.78071181923,9,5,9,9_1,9_2,9_0_0 +25005,2,44.0,0.0,8,112,1542.0,0.0,0.0,52,54,0.0,0.0,2629.4192378797184,1542.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,75.0,1,2002.0,6,125026,2,1,2,0,1,,385.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1436.44420160622,1542.0,54128.30421603098,1,1,1,2,80.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.028487868266586332,36085.536144020654,9,5,9,9_1,9_0,9_0_0 +25006,0,57.0,0.0,7,111,1200.0,,,52,21,0.0,0.0,,1368.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,5,125027,2,1,0,0,2,,1545.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,103.29643831975959,1200.0,29084.37572143079,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04703556346206842,19389.583814287194,5,3,5,5_1,5_3,5_0_0 +25007,2,47.0,0.0,8,111,0.0,0.0,0.0,22,56,0.0,0.0,0.0,748.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,6,125028,2,1,2,0,1,,296.0,,43,3.0,0.0,10.0,5.0,3.0,5,3,276.307138228047,0.0,41618.516885940924,1,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017972769237547735,13872.838961980307,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +25008,2,51.0,0.0,2,111,1140.0,0.0,0.0,0,56,0.0,0.0,1943.9286194441497,1140.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,125029,2,1,0,0,1,,0.0,,32,2.0,0.0,4.0,3.0,2.0,3,3,1952.54823848101,1140.0,37355.42082033836,0,1,1,2,91.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03051765915000269,18677.71041016918,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +25009,1,40.0,180.0,1,111,440.0,0.0,0.0,56,52,0.0,0.0,750.2882390837069,505.0,90.06329965077386,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,125030,1,3,0,1,1,744.0,200.0,345.0,43,2.0,0.0,4.0,5.0,2.4,2,2,230.134192580005,440.0,27396.91739037512,4,1,2,3,80.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.01843273069025688,11415.382245989635,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +25010,2,57.0,0.0,2,111,300.0,,,0,54,0.0,0.0,,388.0,121.93185183489385,,44,0,0,0,0,0,0,0,0,0,,1,,2,125031,2,1,0,0,1,,220.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,140.90285474916516,300.0,50021.045799188585,0,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007756735066228742,33347.36386612572,8,4,8,8_1,8_2,8_0_1 +25011,1,46.0,356.0,9,111,800.0,,,0,56,0.0,0.0,,822.0,30.482962958723462,,50,0,0,0,0,0,0,0,0,1,5.0,1,2006.0,6,125032,1,3,0,0,2,,260.0,654.0,32,1.0,2.0,5.0,2.0,1.5,2,2,128.61527454019344,800.0,8466.074034503808,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09709341031627028,5644.049356335872,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +25012,2,66.0,0.0,8,300,1400.0,0.0,0.0,72,74,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2002.0,6,125033,2,1,1,0,1,,115.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,749.069492767783,1400.0,47582.228134257566,7,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029422749940372132,31721.485422838377,8,4,8,8_1,8_0,8_0_0 +25013,2,52.0,0.0,5,111,820.0,0.0,0.0,0,62,0.0,0.0,1398.2644455650902,850.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,3,125034,1,2,0,0,1,,0.0,355.0,12,1.0,0.0,2.0,1.0,1.0,1,1,874.657755711226,820.0,26658.58983120419,0,1,2,3,33.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031884657267394735,26658.58983120419,7,4,7,7_0,7_3,7_0_0 +25014,2,56.0,0.0,2,112,525.0,0.0,0.0,75,33,3902.3265488354255,0.0,895.2302852703322,4225.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,7.0,1,,2,125035,1,3,2,0,2,,730.0,,42,2.0,3.0,8.0,3.0,2.0,3,3,1492.01428806461,525.0,93554.27486309787,5,1,0,1,170.0,4,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04516095075487069,46777.13743154894,10,5,10,10_1,10_0,10_0_1 +25015,2,67.0,0.0,1,111,250.0,1800.0,0.0,77,78,0.0,0.0,426.3001358430153,2050.0,0.0,3417.30728629162,71,2,2,1,2,1,2,2,2,0,,1,,1,125036,2,2,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,734.231315564705,250.0,26306.62122517896,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0779271493078661,17537.74748345264,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +25016,0,45.0,0.0,7,112,0.0,0.0,0.0,52,48,0.0,0.0,0.0,1637.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,125037,2,1,2,0,1,,861.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,3133.00421337273,0.0,40371.0,1,1,5,0,100.0,9,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04054890887022863,16148.4,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +25017,1,25.0,331.0,1,111,0.0,0.0,850.0,68,85,0.0,0.0,535.7705468525322,850.0,0.0,1017.2223254299786,71,2,2,2,1,2,2,2,2,0,,2,,1,125038,1,2,0,1,1,564.0,0.0,296.0,42,1.0,0.0,4.0,5.0,2.4,2,2,261.047596682078,0.0,10615.89067695287,4,6,2,3,67.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.08006864669823255,4423.287782063696,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +25018,2,47.0,0.0,8,111,600.0,980.0,0.0,56,46,0.0,0.0,1023.1203260232367,1580.0,0.0,1860.5339669809932,50,0,0,0,0,0,0,0,0,2,5.0,1,1999.0,6,125039,1,2,2,0,1,,400.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,6330.27510326174,600.0,42537.1227136874,1,1,1,2,110.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03714402618707435,21268.5613568437,6,3,6,6_1,6_2,6_0_0 +25019,1,50.0,420.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,568.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,5,125040,1,2,0,0,1,,0.0,653.0,32,1.0,0.0,5.0,2.0,1.3,1,1,978.171935423793,0.0,9377.811247523467,0,1,2,3,98.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.06056850420720506,7213.700959633436,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +25021,2,36.0,0.0,2,111,720.0,0.0,0.0,42,45,2109.365702073203,0.0,1227.744391227884,2720.0,0.0,0.0,31,2,2,1,1,1,1,2,2,2,15.0,1,,2,125042,2,2,4,0,2,,640.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,707.546032882052,720.0,67966.57785391572,1,1,1,2,113.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04001966975365811,28319.40743913155,8,4,8,8_1,8_3,8_0_1 +25022,1,46.0,190.0,2,111,350.0,75.0,0.0,0,56,0.0,0.0,596.8201901802214,425.0,0.0,142.38780359548417,71,2,2,1,1,2,2,2,2,0,,2,,2,125043,1,2,0,1,1,800.0,0.0,507.0,32,1.0,2.0,5.0,3.0,1.8,2,1,738.850530039252,350.0,13892.692426120968,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030591622341031407,7718.162458956093,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25023,2,66.0,0.0,1,112,1800.0,0.0,0.0,74,74,0.0,132.4327277010224,3069.36097806971,1900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,125044,2,3,2,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,815.418490124727,1800.0,66775.5791536073,5,5,0,1,160.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028453515852394667,44517.05276907153,10,5,10,10_1,10_0,10_1_0 +25024,2,50.0,0.0,8,111,0.0,0.0,0.0,37,35,0.0,397.2981831030672,0.0,3608.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2001.0,6,125045,2,1,2,0,1,,1100.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,811.472571983901,0.0,90027.52928966818,1,4,1,2,93.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04007663020931159,42870.25204269913,9,5,9,9_1,9_4,9_0_0 +25025,1,51.0,429.0,2,111,251.0,108.0,0.0,0,52,0.0,0.0,428.00533638638734,1286.0,0.0,205.0384371774972,50,2,2,2,2,1,2,2,2,0,,2,,2,125046,1,3,0,1,2,,0.0,500.0,32,1.0,0.0,2.0,3.0,1.8,2,1,1479.74766229125,251.0,9665.438358355554,0,4,2,3,60.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.13305138911659212,5369.687976864197,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25026,2,39.0,0.0,2,111,850.0,1100.0,0.0,38,47,0.0,158.91927324122688,1449.420461866252,2070.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,2,2.0,1,,2,125047,2,2,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,823.766209232143,850.0,50797.01665391509,4,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04075042465787129,24189.055549483375,7,4,7,7_1,7_4,7_0_1 +25027,2,68.0,0.0,8,112,250.0,,,75,74,0.0,0.0,,400.0,207.83838380947813,,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,125048,2,3,0,0,2,,175.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,100.63416435356625,250.0,95468.0,5,5,0,1,150.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00418988561612268,63645.333333333336,10,5,10,10_1,10_1,10_0_0 +25028,1,67.0,172.0,2,111,0.0,0.0,240.0,0,78,0.0,0.0,151.2763896995385,240.0,0.0,287.2157154155234,71,0,0,0,0,0,0,0,0,0,,2,,2,125049,2,1,0,1,1,860.0,80.0,234.0,11,0.0,1.0,2.0,1.0,1.0,1,1,337.407169958156,0.0,9972.3328,0,5,2,3,37.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02406658550344409,9972.3328,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25029,2,87.0,0.0,2,120,344.0,,,0,86,0.0,0.0,,596.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,125050,2,1,0,0,1,,421.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,115.54450316559712,344.0,8798.080691691646,0,5,0,1,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06774204748574594,8798.080691691646,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +25030,1,41.0,200.0,1,111,1800.0,0.0,0.0,52,38,0.0,132.4327277010224,3069.36097806971,2140.0,332.541414095165,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,125051,1,2,3,0,2,,300.0,700.0,43,2.0,0.0,4.0,4.0,2.1,2,2,952.304760711447,1800.0,36426.35770400528,4,1,2,3,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05874866813172197,17345.884620954894,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +25031,2,82.0,0.0,2,111,240.0,,,78,77,0.0,0.0,,304.0,88.67771042537734,,71,0,0,0,0,0,0,0,0,0,,2,,2,125052,2,2,0,0,2,,360.0,335.0,41,0.0,5.0,3.0,2.0,1.5,2,2,89.64982863731417,240.0,24447.046877057848,5,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012435039762830682,16298.031251371898,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +25032,2,51.0,0.0,2,112,681.0,0.0,0.0,52,38,0.0,0.0,1161.2415700363736,2706.0,2805.818181427955,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,125053,2,1,1,0,1,,568.0,,43,2.0,0.0,8.0,4.0,2.5,4,3,796.711029497793,681.0,58230.924807087955,1,1,1,2,170.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04647015325558803,23292.369922835183,6,3,6,6_1,6_0,6_0_1 +25033,1,38.0,252.0,1,111,1140.0,0.0,0.0,0,68,0.0,0.0,1943.9286194441497,1200.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,1,125054,2,1,0,0,2,,0.0,600.0,32,2.0,0.0,2.0,2.0,1.5,2,2,2260.27951865791,1140.0,18838.718014230268,0,1,3,4,55.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.06369860194804933,12559.145342820178,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +25034,2,63.0,0.0,1,111,705.0,831.0,0.0,86,78,0.0,0.0,1202.1663830773032,1536.0,0.0,1577.6568638379647,71,0,0,0,0,0,0,0,0,0,,1,,1,125055,2,1,2,0,1,,634.0,,41,0.0,2.0,3.0,3.0,2.0,3,3,377.667648424583,705.0,22834.777153282157,5,5,0,1,75.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06726581957377338,11417.388576641079,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +25035,0,64.0,0.0,6,111,528.0,,,56,78,0.0,0.0,,689.0,223.07986528883987,,71,0,0,0,0,0,0,0,0,0,,1,,4,125056,2,1,0,0,2,,432.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,112.25211185794632,528.0,31780.44199425804,4,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021680000552682235,21186.96132950536,5,3,5,5_1,5_2,5_0_0 +25036,0,43.0,0.0,2,111,1000.0,0.0,0.0,56,56,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,30,2,2,2,2,1,2,2,2,0,,2,,2,125057,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1007.25959180152,1000.0,28892.142799633722,4,4,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03461148613777021,19261.428533089147,5,3,5,5_0,5_4,5_0_1 +25037,2,40.0,0.0,9,111,1500.0,0.0,0.0,55,47,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,75.0,1,2012.0,6,125058,2,1,1,0,1,,900.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,685.536089199588,1500.0,37148.08023110064,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04037893723359059,17689.562014809828,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +25038,2,57.0,0.0,2,112,566.0,0.0,0.0,78,54,3164.0485531098047,0.0,965.1435075485866,3698.0,182.89777775234077,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,125059,2,1,0,1,2,,380.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,2089.49027634109,566.0,54630.74474613445,5,1,0,1,110.0,8,2,8,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0676908216643278,36420.496497422966,9,5,9,9_0,9_1,9_0_1 +25039,2,69.0,0.0,2,111,200.0,80.0,0.0,75,72,0.0,0.0,341.04010867441224,795.0,0.0,151.8803238351831,31,0,0,0,0,0,0,0,0,0,,2,,2,125060,1,2,0,1,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,785.623555027334,200.0,70209.58584676521,5,5,0,1,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011323240130416298,46806.39056451014,10,5,10,10_0,10_4,10_0_1 +25040,2,41.0,0.0,7,211,700.0,,,34,52,0.0,0.0,,1050.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,125061,1,2,0,0,2,,800.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,71.53428923101116,700.0,69947.01165754796,1,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015011363246519693,29144.588190644987,8,4,8,8_1,8_2,8_0_0 +25041,2,86.0,0.0,2,111,610.0,0.0,0.0,0,77,2742.175412695164,0.0,1040.1723314569574,3210.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125062,1,1,2,0,2,,340.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1643.70163077117,610.0,23889.473738838064,0,5,0,1,70.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13436880339399757,23889.473738838064,6,3,6,6_1,6_2,6_0_1 +25042,2,58.0,0.0,1,112,0.0,0.0,0.0,75,52,0.0,0.0,0.0,1549.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,125063,2,1,2,0,1,,140.0,,42,2.0,1.0,6.0,4.0,2.5,4,4,334.208311712276,0.0,59363.937162078,5,1,0,1,120.0,6,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026093282791720046,23745.5748648312,6,3,6,6_1,6_0,6_1_0 +25043,2,68.0,0.0,1,112,1835.0,930.0,0.0,77,74,0.0,0.0,3129.042997087732,2765.0,0.0,1765.6087645840037,12,0,0,0,0,0,0,0,0,0,,1,,1,125064,2,1,2,0,1,,350.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,2020.91369178416,1835.0,20718.859568109317,5,5,0,1,187.0,10,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13345329123500196,13812.573045406212,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +25044,2,61.0,0.0,2,111,300.0,0.0,0.0,0,67,0.0,0.0,511.56016301161833,537.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,25.0,2,,2,125065,2,2,0,1,1,63.0,0.0,258.0,12,1.0,0.0,2.0,1.0,1.0,1,1,347.818607292024,300.0,26073.402104521032,0,1,2,3,53.0,6,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020595701237886642,26073.402104521032,7,4,7,7_0,7_2,7_0_1 +25045,2,45.0,0.0,6,111,420.0,,,81,85,0.0,0.0,,670.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,4,125066,2,2,0,0,2,,1320.0,,42,3.0,1.0,4.0,5.0,2.8,4,4,117.74934395829729,420.0,20936.332342398196,4,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03200178469861133,7477.2615508564995,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25046,2,56.0,0.0,6,120,1003.0,0.0,0.0,52,34,493.0642328596112,0.0,1710.3161450021773,1531.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,4,125067,1,1,2,0,1,,480.0,,43,2.0,1.0,6.0,4.0,2.5,4,3,1012.6678730173,1003.0,71566.42255332315,1,1,0,1,100.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021392713864651722,28626.569021329262,8,4,8,8_1,8_0,8_0_0 +25047,2,75.0,0.0,1,111,500.0,0.0,0.0,0,77,2109.365702073203,0.0,852.6002716860306,2550.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125068,2,1,2,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1543.03812951033,500.0,22200.70138970141,0,5,0,1,80.0,6,4,8,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11486123592396538,22200.70138970141,6,3,6,6_1,6_2,6_1_0 +25048,2,36.0,0.0,2,111,195.0,0.0,0.0,0,62,0.0,0.0,332.5141059575519,195.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,125069,2,2,2,0,1,,142.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,895.778156125515,195.0,26631.01471822635,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0073222895208172965,26631.01471822635,7,4,7,7_1,7_4,7_0_1 +25049,2,53.0,0.0,1,111,744.0,2500.0,0.0,77,64,0.0,768.1098206659299,1268.6692042688135,3824.0,0.0,4746.260119849472,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,125070,1,3,2,0,2,,600.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,1828.66495476876,744.0,33060.60221791973,7,1,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1156663745806569,16530.301108959866,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +25050,1,40.0,40.0,8,111,240.0,,,0,62,0.0,0.0,,328.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,125071,2,2,0,0,2,,169.0,,32,1.0,0.0,4.0,3.0,2.0,3,1,87.59949796143475,240.0,27120.271321428936,0,1,1,2,55.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.012094274283341427,13560.135660714468,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +25051,2,64.0,0.0,5,300,2760.0,0.0,0.0,75,56,0.0,0.0,4706.353499706889,3000.0,332.541414095165,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125072,2,1,1,0,1,,120.0,,41,0.0,3.0,8.0,3.0,2.0,3,3,1165.9825113565,2760.0,53919.24500917091,5,5,0,1,250.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055638761252865127,26959.622504585455,7,4,7,7_1,7_0,7_0_0 +25052,2,61.0,0.0,5,111,0.0,0.0,540.0,0,52,0.0,0.0,340.37187682396166,540.0,0.0,646.2353596849276,70,0,0,0,0,0,0,0,0,0,,2,,3,125073,2,1,0,1,1,492.0,0.0,305.0,22,2.0,0.0,3.0,2.0,1.5,2,2,698.63814896512,0.0,39835.42384209985,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013555773929768106,26556.94922806657,7,4,7,7_0,7_4,7_0_0 +25053,1,49.0,362.0,2,111,720.0,1200.0,0.0,85,46,0.0,0.0,1227.744391227884,1920.0,0.0,2278.2048575277468,31,2,2,2,2,2,1,2,2,0,,2,,2,125074,1,3,0,0,2,,0.0,460.0,42,2.0,0.0,4.0,5.0,2.8,4,4,2009.66953739852,720.0,16783.196546041196,6,4,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.11440013794350086,5993.998766443285,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25054,2,60.0,0.0,5,111,700.0,1680.0,0.0,0,37,0.0,79.45963662061344,1193.6403803604428,2440.0,0.0,3189.4868005388457,12,0,0,0,0,0,0,0,0,2,75.0,1,,3,125075,2,1,2,0,1,,400.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,736.370421709411,700.0,88264.2238948441,0,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027644269584321708,88264.2238948441,10,5,10,10_1,10_4,10_0_0 +25055,1,69.0,131.0,5,111,198.0,,,0,77,0.0,0.0,,244.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,2,,3,125076,2,2,0,0,2,,130.0,213.0,11,0.0,0.0,3.0,1.0,1.0,1,1,118.41172864319776,198.0,9608.60606060606,0,5,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025393901931349425,9608.60606060606,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25056,2,63.0,0.0,5,221,426.0,975.0,0.0,0,77,0.0,0.0,726.415431476498,1461.0,83.13535352379125,1851.0414467412943,50,0,0,0,0,0,0,0,0,0,,1,,3,125077,2,1,2,0,2,,180.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1233.44606538453,426.0,21701.928971350648,0,5,0,1,240.0,1,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06732120457719261,21701.928971350648,6,3,6,6_1,6_1,6_0_0 +25057,2,36.0,0.0,1,111,615.0,960.0,0.0,54,38,0.0,0.0,1048.6983341738176,1575.0,0.0,1822.5638860221975,12,0,0,0,0,0,0,0,0,0,,1,,1,125078,2,1,1,0,1,,401.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1001.99402246023,615.0,38109.377664635314,1,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04132841039442022,15878.907360264715,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +25058,1,22.0,167.0,2,111,703.0,0.0,0.0,0,42,0.0,0.0,1198.755981990559,703.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,30.0,2,,2,125079,2,2,0,0,1,,0.0,366.0,12,1.0,0.0,1.0,1.0,1.0,1,1,509.702966632211,703.0,4419.214477951828,0,2,2,3,18.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1590780450931676,4419.214477951828,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25059,2,50.0,0.0,1,400,0.0,0.0,0.0,0,43,0.0,0.0,0.0,692.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,1,125080,2,1,1,0,1,,104.0,,32,2.0,1.0,4.0,3.0,2.0,3,2,955.6049900564,0.0,38700.441461269824,0,1,1,2,80.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01788093297831064,19350.220730634912,5,3,5,5_1,5_0,5_1_0 +25060,2,57.0,0.0,7,111,800.0,0.0,0.0,85,78,0.0,927.0290939071567,1364.160434697649,1700.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,125081,2,2,3,0,1,,300.0,,41,3.0,0.0,4.0,5.0,3.0,5,5,1205.18973401014,800.0,75953.4629739336,6,7,1,2,100.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02238212628413561,25317.820991311197,7,4,7,7_1,7_2,7_0_0 +25061,1,49.0,352.0,2,211,0.0,0.0,871.0,0,52,0.0,0.0,549.0072309512418,871.0,0.0,1042.353700528837,71,0,0,0,0,0,0,0,0,0,,2,,2,125082,2,1,0,3,1,1204.0,446.0,356.0,32,1.0,1.0,4.0,2.0,1.5,2,1,2591.55123618703,0.0,7246.759630891218,0,4,2,3,55.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12019165038773102,4831.173087260812,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +25062,2,39.0,0.0,9,111,0.0,0.0,1400.0,53,35,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,20,2,2,2,1,1,2,2,2,2,40.0,1,2008.0,6,125083,1,2,1,0,1,,540.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,293.685550181772,0.0,37561.07741067067,1,1,1,2,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.037272626253321374,17886.227338414603,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +25063,1,55.0,253.0,7,221,520.0,,,0,77,0.0,0.0,,754.0,324.2278787427859,,70,0,0,0,0,0,0,0,0,0,,2,,5,125084,2,1,0,0,2,,534.0,684.0,11,0.0,7.0,4.0,1.0,1.0,1,1,109.93532772903966,520.0,11893.749335295623,0,7,2,3,80.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06339464358496665,11893.749335295623,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +25064,1,54.0,373.0,2,111,770.0,228.0,0.0,0,55,0.0,0.0,1313.0044183964872,998.0,0.0,432.8589229302719,71,0,0,0,0,0,0,0,0,0,,2,,2,125085,1,2,0,1,1,1175.0,0.0,351.0,32,3.0,4.0,5.0,3.0,2.0,3,3,278.683141233202,770.0,8323.3839247035,0,4,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11990315585923803,4161.69196235175,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25065,2,55.0,0.0,5,111,1400.0,0.0,0.0,47,54,0.0,39.72981831030672,2387.2807607208856,1430.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,3,125086,1,2,0,0,1,,0.0,,43,3.0,1.0,3.0,3.0,2.0,3,3,417.724343054888,1400.0,60598.56831136754,1,1,1,2,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023597917242076983,30299.28415568377,8,4,8,8_0,8_3,8_0_0 +25066,2,48.0,0.0,1,112,2000.0,0.0,0.0,63,63,0.0,0.0,3410.4010867441225,2174.0,241.09252521899464,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,125087,2,1,2,0,1,,250.0,,43,3.0,1.0,5.0,4.0,2.5,4,3,1583.43098989123,2000.0,32452.947822327973,1,1,0,1,120.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0669892920637633,12981.17912893119,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +25067,2,62.0,0.0,7,111,1050.0,0.0,0.0,43,75,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,125088,2,1,0,0,1,,0.0,1100.0,42,2.0,2.0,4.0,3.0,2.0,3,3,787.897278172754,1050.0,77648.95893992955,1,5,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013522396363514627,38824.479469964775,9,5,9,9_0,9_4,9_0_0 +25068,2,44.0,0.0,8,112,1500.0,0.0,0.0,68,37,0.0,198.6490915515336,2557.8008150580918,1860.0,290.9737373332694,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,125089,2,1,1,0,1,,530.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,827.961637636895,1500.0,50994.24095216087,1,1,1,2,110.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03647470705064359,25497.120476080436,7,4,7,7_1,7_0,7_0_0 +25069,2,64.0,0.0,2,111,1106.0,0.0,0.0,0,64,3691.3899786281054,0.0,1885.9518009694996,4756.0,207.83838380947813,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,125090,2,1,4,0,1,,790.0,,22,2.0,2.0,9.0,5.0,2.5999999999999996,3,3,372.821865035194,1106.0,44861.69802075899,0,1,0,1,141.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10601471210026964,17254.49923875346,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +25070,2,43.0,0.0,2,111,740.0,760.0,0.0,54,62,0.0,0.0,1261.8484020953254,1500.0,0.0,1442.8630764342397,71,0,0,0,0,0,0,0,0,0,,1,,2,125091,2,2,4,0,1,,460.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,212.100249842698,740.0,61761.37650543678,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024287023458228085,26852.77239366817,7,4,7,7_1,7_3,7_0_1 +25071,2,57.0,0.0,1,111,780.0,0.0,0.0,85,48,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,125092,2,1,0,1,1,583.0,0.0,407.0,42,1.0,3.0,3.0,2.0,1.5,2,2,930.159646585154,780.0,26714.744896077955,7,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0291973591001617,17809.829930718635,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +25072,2,51.0,0.0,1,112,780.0,0.0,0.0,56,62,0.0,357.56836479276046,1330.0564238302077,1150.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125093,2,1,4,0,1,,360.0,,43,4.0,1.0,6.0,4.0,2.5,4,4,1008.59512057673,780.0,57184.682341994136,1,1,1,2,120.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020110280461512437,22873.872936797656,6,3,6,6_1,6_0,6_1_0 +25073,2,58.0,0.0,5,111,760.0,0.0,0.0,21,46,0.0,2050.0586248118266,1295.9524129627664,2308.0,0.0,0.0,50,2,1,2,2,1,2,2,2,1,10.0,2,,3,125094,2,1,0,1,2,,0.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,889.090684749579,760.0,56003.48116462643,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.041211723842942215,28001.740582313214,7,4,7,7_0,7_4,7_0_0 +25074,2,55.0,0.0,7,120,540.0,0.0,0.0,85,21,0.0,0.0,920.8082934209131,1340.0,1108.4713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,125095,2,2,2,0,2,,312.0,,42,2.0,0.0,4.0,3.0,2.0,3,3,664.107859152692,540.0,62348.9026133452,6,1,1,2,92.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021491958059149312,31174.4513066726,8,4,8,8_1,8_0,8_0_0 +25075,2,40.0,0.0,1,111,480.0,1400.0,0.0,43,42,0.0,0.0,818.4962608185893,1880.0,0.0,2657.9056671157045,41,0,0,0,0,0,0,0,0,2,5.0,1,,1,125096,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,298.071626713339,480.0,84549.80775620844,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0222354142474316,30196.359912931588,8,4,8,8_1,8_4,8_1_0 +25076,2,83.0,0.0,2,120,800.0,0.0,0.0,71,71,0.0,662.163638505112,1364.160434697649,1390.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125097,2,1,2,0,1,,50.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,220.937094270426,800.0,22063.61433870934,5,5,0,1,89.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06299965085780733,14709.076225806226,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +25077,2,84.0,0.0,2,111,570.0,0.0,0.0,77,75,0.0,0.0,971.9643097220749,570.0,0.0,0.0,71,2,2,1,1,2,2,2,2,0,,8,,2,125098,2,3,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1456.19061749879,570.0,32986.70309274082,5,5,0,1,76.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.017279689891938198,21991.135395160545,6,3,6,6_0,6_3,6_0_1 +25078,2,39.0,0.0,5,111,0.0,,,0,56,0.0,0.0,,1413.0,0.0,,50,0,0,0,0,0,0,0,0,3,40.0,1,,3,125099,2,2,0,0,2,,0.0,400.0,12,1.0,1.0,3.0,1.0,1.0,1,1,134.4322466420867,0.0,18952.306645444565,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07455556869325101,18952.306645444565,5,3,5,5_1,5_2,5_0_0 +25079,2,56.0,0.0,2,111,340.0,184.0,0.0,75,54,0.0,0.0,579.7681847465008,524.0,0.0,349.3247448209212,33,0,0,0,0,0,0,0,0,1,25.0,2,,2,125100,2,3,0,1,2,,0.0,,42,1.0,0.0,4.0,4.0,2.3,4,3,746.283888272338,340.0,54589.360242482595,5,1,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009598940117129494,23734.504453253303,6,3,6,6_0,6_4,6_0_1 +25080,2,55.0,0.0,7,400,270.0,,,78,77,0.0,0.0,,630.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,0,,1,,5,125101,2,2,0,0,2,,700.0,,41,3.0,1.0,4.0,7.0,3.8,6,6,8.280596007637794,270.0,25604.529604212163,6,6,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02460502144496963,6738.034106371622,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +25081,0,75.0,0.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125102,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1695.12186040109,240.0,19132.453939381696,0,5,0,1,68.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012544130552223145,19132.453939381696,5,3,5,5_0,5_3,5_0_1 +25082,2,63.0,0.0,5,111,300.0,,,0,21,0.0,0.0,,415.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,1,,3,125103,2,1,0,0,2,,460.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,107.2490362387036,300.0,5110.0,0,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0812133072407045,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25083,2,66.0,0.0,6,111,2000.0,0.0,0.0,21,22,0.0,66.2163638505112,3410.4010867441225,2050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,125104,2,1,2,0,1,,286.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1096.77665115867,2000.0,682092.76693833,1,1,0,1,100.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0030054562947525675,454728.51129222004,10,5,10,10_1,10_2,10_0_0 +25084,2,34.0,0.0,7,211,300.0,900.0,0.0,0,62,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,125105,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1094.07228306883,300.0,33886.5331376658,0,1,1,2,60.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03541229771499308,33886.5331376658,9,5,9,9_0,9_1,9_0_0 +25085,2,58.0,0.0,1,111,566.0,0.0,0.0,0,52,0.0,0.0,965.1435075485866,566.0,0.0,0.0,70,2,2,2,2,1,1,2,2,1,15.0,2,,1,125106,2,2,0,0,2,,0.0,251.0,12,1.0,0.0,1.0,1.0,1.0,1,1,849.473658374042,566.0,19819.08263210198,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.028558334939439673,19819.08263210198,5,3,5,5_0,5_4,5_1_0 +25086,2,65.0,0.0,2,111,629.0,1378.0,0.0,77,75,0.0,0.0,1072.5711417810264,2007.0,0.0,2616.1385780610294,42,0,0,0,0,0,0,0,0,0,,1,,2,125107,2,2,1,0,1,,312.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,383.855503113417,629.0,49853.31085337223,5,5,0,1,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040258108551766134,33235.540568914825,8,4,8,8_1,8_3,8_0_1 +25087,1,45.0,131.0,2,111,600.0,210.0,0.0,52,47,0.0,0.0,1023.1203260232367,810.0,0.0,398.6858500673557,33,0,0,0,0,0,0,0,0,2,25.0,2,,2,125108,2,2,0,1,1,923.0,500.0,282.0,43,2.0,0.0,3.0,5.0,2.4,2,2,1952.08169527955,600.0,37005.49154255919,1,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02188864317795744,15418.954809399664,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +25088,2,61.0,0.0,7,111,1300.0,0.0,0.0,55,77,0.0,397.2981831030672,2216.7607063836795,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,125109,2,1,2,0,1,,500.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,1734.58877310222,1300.0,57400.650742068276,1,5,0,1,118.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02787424845041658,28700.325371034138,8,4,8,8_1,8_2,8_0_0 +25089,2,64.0,0.0,2,111,444.0,340.0,0.0,0,75,0.0,0.0,757.1090412571951,784.0,0.0,645.4913762995283,33,1,2,2,2,1,2,2,2,0,,2,,2,125110,1,3,0,1,2,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1962.47162260312,444.0,26614.855062403913,0,5,1,2,85.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0294572334946688,26614.855062403913,7,4,7,7_0,7_3,7_0_1 +25090,2,52.0,0.0,5,120,1500.0,0.0,0.0,78,33,0.0,397.2981831030672,2557.8008150580918,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,125111,2,2,3,0,1,,500.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1277.36197013935,1500.0,64404.670844958164,5,1,0,1,140.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02794828350777777,42936.44722997211,9,5,9,9_1,9_1,9_0_0 +25091,2,44.0,0.0,8,111,440.0,470.0,0.0,37,37,0.0,0.0,750.2882390837069,910.0,0.0,892.2969025317009,20,0,0,0,0,0,0,0,0,3,30.0,2,2001.0,6,125112,2,1,0,0,1,,0.0,931.0,43,2.0,0.0,4.0,4.0,2.3,3,2,828.21194224109,440.0,60635.38783586274,1,1,2,3,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015007737766324327,26363.21210254902,7,4,7,7_0,7_4,7_0_0 +25092,2,69.0,0.0,2,300,467.0,,,81,75,0.0,0.0,,731.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,125113,2,1,0,0,2,,520.0,,42,3.0,2.0,5.0,4.0,2.5,4,4,84.20945002072988,467.0,36994.84894421795,4,5,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01975950763043325,14797.939577687179,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +25093,2,20.0,0.0,1,111,1000.0,0.0,0.0,0,68,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,2,2,2,2,1,2,2,2,1,10.0,2,,1,125114,1,2,0,0,2,,150.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,350.950486624762,1000.0,14201.375273445497,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.07041571543214228,14201.375273445497,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +25094,2,73.0,0.0,2,111,240.0,120.0,0.0,78,77,0.0,0.0,409.2481304092947,360.0,0.0,227.8204857527747,71,2,2,2,2,2,2,2,1,0,,2,,2,125115,2,1,0,0,1,,0.0,314.0,41,0.0,4.0,5.0,2.0,1.5,2,2,487.957942603708,240.0,21396.682994682382,6,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.016825037791580552,14264.455329788254,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +25095,1,47.0,162.0,9,111,450.0,,,63,56,0.0,0.0,,520.0,96.99124577775646,,71,2,2,1,2,1,2,2,1,0,,1,2004.0,6,125116,2,1,0,0,2,,190.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,125.68633801631405,450.0,19641.61166726445,4,1,1,2,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.02647440590970721,8539.831159680196,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +25096,2,43.0,0.0,2,111,754.0,0.0,0.0,0,52,0.0,0.0,1285.7212097025342,754.0,0.0,0.0,50,2,1,2,2,1,2,2,2,2,20.0,2,,2,125117,2,2,0,1,1,624.0,0.0,262.0,12,1.0,0.0,2.0,1.0,1.0,1,1,201.179888243419,754.0,17805.008220472937,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04234763560137083,17805.008220472937,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +25097,2,53.0,0.0,7,112,200.0,,,21,69,0.0,0.0,,475.0,381.03703698404325,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,125118,1,1,0,0,2,,1200.0,,43,3.0,3.0,4.0,4.0,2.3,3,3,87.76639103944274,200.0,26011.407975417114,1,1,0,1,42.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01826121832577896,11309.307815398746,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25098,2,37.0,0.0,9,111,1215.0,0.0,0.0,52,52,0.0,0.0,2071.818660197054,1215.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,125119,2,1,1,0,1,,300.0,720.0,43,2.0,0.0,4.0,4.0,2.1,2,2,269.943336339713,1215.0,40198.90881817629,1,1,2,3,96.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030224701011053987,19142.3375324649,5,3,5,5_1,5_3,5_0_0 +25099,2,63.0,0.0,1,111,432.0,972.0,0.0,77,75,0.0,0.0,736.6466347367304,1404.0,0.0,1845.345934597475,50,0,0,0,0,0,0,0,0,0,,2,,1,125120,2,1,0,0,1,,0.0,380.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1150.89258346144,432.0,13519.506115642094,5,5,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10384994747519433,9013.004077094729,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +25100,2,53.0,0.0,7,111,1510.0,0.0,0.0,45,33,0.0,309.8925828203924,2574.8528204918125,1744.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,7.0,1,,5,125121,2,2,3,0,1,,543.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,1125.20165101476,1510.0,79864.15297097349,1,1,1,2,140.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021837081282685793,31945.661188389397,8,4,8,8_1,8_3,8_0_0 +25101,0,92.0,0.0,1,111,710.0,315.0,0.0,0,77,0.0,0.0,1210.6923857941633,1025.0,0.0,598.0287751010335,60,0,0,0,0,0,0,0,0,0,,1,,1,125122,2,2,4,0,1,,200.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1334.03447303024,710.0,30050.237643312903,0,5,0,1,50.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03410954722443248,30050.237643312903,8,4,8,8_1,8_3,8_1_0 +25102,2,49.0,0.0,1,111,650.0,1600.0,0.0,37,43,0.0,119.18945493092015,1108.3803531918397,2340.0,0.0,3037.6064767036623,20,2,2,2,2,1,2,2,2,2,15.0,1,,1,125123,1,2,3,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,404.694411564091,650.0,91840.84708413252,1,1,1,2,135.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.025478859072983064,36736.338833653004,9,5,9,9_1,9_3,9_1_0 +25103,2,21.0,0.0,1,112,460.0,1032.0,0.0,54,63,0.0,0.0,784.3922499511482,1492.0,0.0,1959.2561774738622,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,125124,2,2,5,0,1,,77.0,455.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1989.34693876451,460.0,31919.59958597477,1,1,2,3,70.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0467424409877489,21279.733057316513,6,3,6,6_1,6_1,6_1_0 +25104,2,82.0,0.0,2,111,530.0,89.0,0.0,77,90,0.0,0.0,903.7562879871924,619.0,0.0,168.96686026664122,50,0,0,0,0,0,0,0,0,0,,2,,2,125125,2,1,0,1,1,818.0,0.0,304.0,41,0.0,0.0,3.0,2.0,1.5,2,2,1141.34804381641,530.0,30438.355917622317,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020336183783225603,20292.23727841488,5,3,5,5_0,5_4,5_0_1 +25105,2,43.0,0.0,6,112,1276.0,0.0,0.0,52,52,0.0,0.0,2175.83589334275,1336.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,4,125126,2,2,2,0,1,,330.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1141.35646897262,1276.0,47378.927969638804,1,1,1,2,88.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02819818972806077,20599.53389984296,5,3,5,5_1,5_0,5_0_0 +25106,2,74.0,0.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,341.04010867441224,200.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,125127,2,1,0,1,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,334.396342607936,200.0,25194.145548894994,0,5,0,1,82.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.007938352170422066,25194.145548894994,7,4,7,7_0,7_2,7_0_1 +25107,2,37.0,0.0,5,111,700.0,,,0,46,0.0,0.0,,800.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,2,30.0,1,,3,125128,2,1,0,0,2,,600.0,900.0,12,1.0,0.0,3.0,1.0,1.0,1,1,50.772001385726234,700.0,31811.903413963955,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02514781934264383,31811.903413963955,8,4,8,8_1,8_2,8_0_0 +25108,0,71.0,0.0,1,111,1050.0,0.0,0.0,77,72,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125129,2,1,1,0,1,,200.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,563.76368014592,1050.0,34295.41138961429,5,5,5,0,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03061634071308946,22863.60759307619,6,3,6,6_1,6_4,6_1_0 +25109,2,77.0,0.0,5,112,320.0,990.0,0.0,77,78,0.0,0.0,545.6641738790596,1310.0,0.0,1879.519007460391,50,0,0,0,0,0,0,0,0,0,,1,,3,125130,2,1,1,0,1,,202.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1742.98326187042,320.0,28184.508004334413,5,5,0,1,95.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04647943472344945,18789.67200288961,5,3,5,5_1,5_0,5_0_0 +25110,2,51.0,0.0,5,111,400.0,120.0,0.0,38,37,0.0,460.86589239955794,682.0802173488245,868.0,0.0,227.8204857527747,41,0,0,0,0,0,0,0,0,3,20.0,2,,3,125131,2,1,0,1,1,624.0,0.0,836.0,43,2.0,0.0,3.0,3.0,2.0,3,3,1044.71273618043,400.0,82814.86376597239,1,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010481210262603251,41407.431882986195,9,5,9,9_0,9_4,9_0_0 +25111,2,66.0,0.0,2,111,216.0,0.0,0.0,0,78,0.0,793.2720389291242,368.3233173683652,885.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125132,2,1,0,1,1,599.0,0.0,366.0,11,0.0,5.0,5.0,1.0,1.0,1,1,351.892859095636,216.0,21597.887288135717,0,5,2,3,72.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040976230137387264,21597.887288135717,6,3,6,6_0,6_2,6_0_1 +25112,2,38.0,0.0,2,112,520.0,730.0,0.0,55,38,0.0,0.0,886.7042825534718,1250.0,0.0,1385.9079549960459,31,0,0,0,0,0,0,0,0,3,90.0,1,,2,125133,2,1,3,0,1,,537.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,817.715230228066,520.0,59451.170410331455,1,1,1,2,75.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02102565839112184,28310.081147776884,8,4,8,8_1,8_1,8_0_1 +25113,1,47.0,360.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,548.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125134,2,2,0,1,1,926.0,188.0,480.0,32,1.0,1.0,4.0,3.0,1.8,3,1,375.571261778246,0.0,10645.498113509855,0,4,2,3,62.0,7,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0514771590917433,5914.1656186165865,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25114,1,45.0,100.0,8,300,1000.0,0.0,0.0,85,43,1476.555991451242,0.0,1705.2005433720612,2520.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,2002.0,6,125135,2,1,1,0,1,,420.0,,42,2.0,3.0,6.0,5.0,2.5999999999999996,3,3,1054.35618248769,1000.0,54549.51230908931,7,1,1,2,130.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.046196563329863265,20980.581657342045,5,3,5,5_1,5_0,5_0_0 +25115,2,44.0,0.0,7,111,0.0,0.0,0.0,68,64,0.0,0.0,0.0,1757.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,125136,2,1,1,0,1,,192.0,920.0,43,4.0,3.0,5.0,5.0,2.8,5,3,1045.61133712107,0.0,60292.8392635964,1,1,2,3,92.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02914110566793031,21533.15687985586,6,3,6,6_1,6_3,6_0_0 +25116,2,78.0,0.0,1,111,500.0,0.0,0.0,74,74,4218.731404146406,0.0,852.6002716860306,4500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,125137,2,2,2,0,2,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,871.784472971237,500.0,73407.80485687804,5,5,0,1,160.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061301383535082875,48938.53657125202,10,5,10,10_1,10_4,10_1_0 +25117,2,53.0,0.0,6,111,1550.0,0.0,0.0,46,47,0.0,397.2981831030672,2643.0608422266946,2150.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,125138,2,1,2,0,1,,940.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,622.01033361973,1550.0,93151.58957404886,1,1,1,2,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023080658202734194,37260.63582961955,9,5,9,9_1,9_4,9_0_0 +25118,2,62.0,0.0,7,111,2800.0,0.0,0.0,72,74,0.0,0.0,4774.561521441771,2800.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,,5,125139,2,1,1,0,1,,450.0,,41,0.0,0.0,8.0,3.0,2.0,3,3,1192.02928533182,2800.0,49633.15486589396,6,5,0,1,200.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.0564139033185669,24816.57743294698,7,4,7,7_1,7_2,7_0_0 +25119,2,53.0,0.0,8,111,720.0,,,0,52,0.0,0.0,,1008.0,399.049696914198,,71,0,0,0,0,0,0,0,0,3,15.0,1,2000.0,6,125140,2,2,0,0,2,,452.0,,32,4.0,0.0,4.0,5.0,3.0,5,5,69.76385346174737,720.0,22397.0,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0450060275929812,7465.666666666667,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25120,1,36.0,253.0,2,111,400.0,,,0,85,0.0,0.0,,652.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,2,,2,125141,2,1,0,0,2,,420.0,295.0,11,0.0,2.0,2.0,1.0,1.0,1,1,105.6162475019616,400.0,11935.302251542791,0,7,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05462785828617961,11935.302251542791,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +25121,2,72.0,0.0,5,111,354.0,1331.0,0.0,77,77,0.0,0.0,603.6409923537096,1916.0,0.0,2526.908887807859,60,0,0,0,0,0,0,0,0,0,,1,,3,125142,2,2,3,0,1,,201.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1082.99659145674,354.0,30498.956669011248,5,5,0,1,89.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0628218211132045,20332.637779340832,5,3,5,5_1,5_2,5_0_0 +25122,2,41.0,0.0,6,111,700.0,,,0,43,0.0,0.0,,832.0,182.89777775234077,,43,0,0,0,0,0,0,0,0,2,12.0,1,,4,125143,2,1,0,0,2,,704.0,850.0,12,1.0,0.0,4.0,1.0,1.0,1,1,40.60272569612563,700.0,24393.673161619005,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034107204539784865,24393.673161619005,7,4,7,7_1,7_2,7_0_0 +25123,2,34.0,0.0,9,111,900.0,0.0,0.0,54,53,0.0,0.0,1534.680489034855,900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,50.0,2,2007.0,6,125144,2,1,0,0,1,,380.0,880.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1397.78167398172,900.0,51229.029157667115,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017568164277134323,28460.57175425951,8,4,8,8_0,8_4,8_0_0 +25124,2,44.0,0.0,6,400,1578.0,0.0,0.0,54,47,0.0,0.0,2690.8064574411123,1578.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,7.0,1,,4,125145,2,1,1,0,1,,290.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,960.78464121525,1578.0,48831.23798562613,1,1,1,2,178.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03231537976703554,32554.15865708409,8,4,8,8_1,8_0,8_0_0 +25125,2,56.0,0.0,1,111,474.0,0.0,0.0,0,56,1444.9155059201441,0.0,808.265057558357,1899.0,76.20740739680865,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,125146,2,1,2,0,2,,149.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1435.55974461538,474.0,17144.82792484212,0,1,0,1,100.0,6,5,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11076226651703108,17144.82792484212,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +25126,1,69.0,59.0,2,111,280.0,300.0,0.0,0,77,738.277995725621,0.0,477.4561521441771,1280.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,125147,2,1,0,1,1,700.0,160.0,269.0,11,0.0,3.0,3.0,1.0,1.0,1,1,395.786174205731,280.0,14229.009248629049,0,5,2,3,70.0,7,5,4,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08995707133462766,14229.009248629049,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +25127,0,70.0,0.0,2,112,501.0,1125.0,0.0,77,64,0.0,0.0,854.3054722294027,1626.0,0.0,2135.8170539322628,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,125148,2,2,5,0,2,,245.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1798.47169004891,501.0,38591.62255464115,5,1,0,1,110.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04213349665974208,25727.748369760768,7,4,7,7_1,7_0,7_0_1 +25128,1,63.0,76.0,2,111,73.0,96.0,0.0,0,78,0.0,0.0,124.47963966616047,169.0,0.0,182.25638860221974,50,2,1,2,2,2,2,2,1,0,,2,,2,125149,2,1,0,1,1,305.0,60.0,194.0,11,0.0,0.0,1.0,1.0,1.0,1,1,431.339000579633,73.0,11004.030119236035,0,5,2,3,74.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.0153580095809237,11004.030119236035,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +25129,2,48.0,0.0,6,400,1253.0,0.0,0.0,62,64,0.0,437.0280014133739,2136.6162808451927,1583.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,125150,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,996.824058987874,1253.0,40544.110715132076,1,1,1,2,134.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03904389495979708,22524.505952851152,6,3,6,6_1,6_0,6_0_0 +25130,2,45.0,0.0,2,111,0.0,0.0,0.0,56,46,0.0,0.0,0.0,1032.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,60.0,2,,2,125151,2,1,0,1,1,840.0,0.0,436.0,43,2.0,0.0,5.0,3.0,2.0,3,2,823.055831979513,0.0,38447.10805811739,1,1,2,3,95.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026842070889701482,19223.554029058694,5,3,5,5_0,5_4,5_0_1 +25131,2,76.0,0.0,1,120,450.0,0.0,0.0,0,78,1898.4291318658827,0.0,767.3402445174275,2879.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125152,2,1,2,0,1,,170.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,84.7113160975766,450.0,20942.637569345243,0,5,0,1,90.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1374707455289267,20942.637569345243,5,3,5,5_1,5_0,5_1_0 +25132,2,41.0,0.0,6,111,800.0,1800.0,0.0,85,47,0.0,397.2981831030672,1364.160434697649,2900.0,0.0,3417.30728629162,50,2,2,2,1,1,2,2,2,2,30.0,2,,4,125153,1,2,0,0,1,,0.0,559.0,42,1.0,0.0,5.0,5.0,2.8,4,2,1343.26112991721,800.0,75633.26072415488,6,1,2,3,100.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.0383429191368161,27011.878830055317,7,4,7,7_0,7_2,7_0_0 +25133,2,66.0,0.0,7,221,530.0,0.0,0.0,0,86,0.0,0.0,903.7562879871924,620.0,124.70303028568689,0.0,71,2,2,2,1,1,2,2,2,0,,1,,5,125154,2,1,2,0,1,,400.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,924.69728694256,530.0,3909.3173079087537,0,5,0,1,49.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.1585954659514866,3909.3173079087537,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +25134,1,43.0,315.0,7,111,1400.0,0.0,0.0,0,68,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,1,2,2,2,1,2,2,2,3,25.0,2,,5,125155,2,1,0,0,1,,0.0,400.0,32,1.0,0.0,4.0,5.0,2.8,4,3,148.058366604206,1400.0,18426.80212232761,0,1,2,3,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07597628664518144,6581.000757974146,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +25135,2,49.0,0.0,7,111,0.0,,,81,63,0.0,0.0,,156.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,125156,2,2,0,0,2,,377.0,400.0,43,2.0,0.0,1.0,2.0,1.5,2,2,119.78868798862084,0.0,10222.0,4,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015261201330463705,6814.666666666667,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +25136,2,44.0,0.0,2,111,640.0,0.0,0.0,54,37,0.0,0.0,1091.3283477581192,1097.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,125157,2,1,0,1,1,934.0,0.0,396.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,176.162515171569,640.0,62718.00621845428,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017490989687698594,24122.31008402088,6,3,6,6_0,6_4,6_0_1 +25137,2,84.0,0.0,1,111,430.0,1590.0,0.0,0,78,0.0,0.0,733.2362336499863,2020.0,0.0,3018.6214362242645,50,0,0,0,0,0,0,0,0,0,,1,,1,125158,2,1,2,0,1,,114.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,511.311610900679,430.0,23242.89054264539,0,5,0,1,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08690829551917227,23242.89054264539,6,3,6,6_1,6_3,6_1_0 +25138,1,38.0,359.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1199.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,125159,2,2,2,0,1,,276.0,500.0,32,1.0,0.0,4.0,3.0,1.6,1,1,292.01288537232,0.0,13736.2658520172,0,1,2,3,85.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08728718655542941,8585.16615751075,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +25139,2,28.0,0.0,9,111,850.0,1300.0,0.0,38,38,0.0,0.0,1449.420461866252,2150.0,0.0,2468.055262321726,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,125160,2,1,1,0,1,,550.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,664.021401127075,850.0,75177.64563893441,1,1,1,2,140.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0285989270045259,41765.358688296896,9,5,9,9_1,9_2,9_0_0 +25140,2,67.0,0.0,9,112,1000.0,0.0,0.0,86,72,0.0,397.2981831030672,1705.2005433720612,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,125161,2,1,2,0,1,,200.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,232.823435667807,1000.0,36249.57783230066,5,5,0,1,80.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03586248662023363,24166.385221533772,6,3,6,6_1,6_0,6_0_0 +25141,2,65.0,0.0,9,300,1500.0,0.0,0.0,77,78,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,125162,2,1,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1520.95975929387,1500.0,27842.706745920186,5,5,0,1,89.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053874072434419336,18561.804497280125,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +25142,2,31.0,0.0,1,112,700.0,0.0,0.0,47,46,738.277995725621,0.0,1193.6403803604428,1495.0,131.6309764126695,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,125163,2,2,3,0,1,,0.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2200.80961506392,700.0,38588.38259740697,1,1,1,2,129.0,8,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0387422301576449,21437.99033189276,6,3,6,6_1,6_1,6_1_0 +25143,1,62.0,224.0,2,111,190.0,0.0,0.0,0,78,0.0,0.0,323.9881032406916,250.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125164,1,2,0,1,1,703.0,0.0,345.0,11,0.0,0.0,4.0,1.0,1.0,1,1,320.837096695814,190.0,10016.556289481636,0,7,2,3,73.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02495867769070738,10016.556289481636,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25144,2,30.0,0.0,9,111,900.0,1200.0,0.0,0,54,0.0,0.0,1534.680489034855,2100.0,0.0,2278.2048575277468,60,0,0,0,0,0,0,0,0,0,,1,2011.0,6,125165,2,1,1,0,1,,500.0,418.0,22,2.0,1.0,4.0,4.0,2.5,4,4,258.243185210601,900.0,34821.006741983736,0,1,2,3,69.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0603084228885326,13928.402696793495,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +25145,2,55.0,0.0,2,400,1000.0,0.0,0.0,55,47,0.0,529.7309108040896,1705.2005433720612,1500.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,2,50.0,1,,2,125166,2,1,3,0,1,,600.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,893.703202141428,1000.0,30331.3315452185,1,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04945381305676517,20220.887696812333,5,3,5,5_1,5_0,5_0_1 +25146,1,73.0,140.0,2,111,100.0,0.0,0.0,0,86,0.0,0.0,170.52005433720612,160.0,83.13535352379125,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,125167,2,2,0,1,1,504.0,0.0,440.0,11,0.0,8.0,4.0,1.0,1.0,1,1,376.875852419,100.0,11339.883342375164,0,6,2,3,80.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.014109492590819514,11339.883342375164,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25147,2,49.0,0.0,1,111,400.0,1300.0,0.0,0,43,0.0,0.0,682.0802173488245,1700.0,0.0,2468.055262321726,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,125168,2,1,3,0,1,,400.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,1917.4718639052,400.0,30577.97103714034,0,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055595578854305314,19111.23189821271,5,3,5,5_1,5_2,5_1_0 +25148,1,31.0,180.0,2,112,2200.0,0.0,0.0,63,63,0.0,0.0,3751.441195418535,2350.0,207.83838380947813,0.0,43,2,2,2,1,1,2,2,2,0,,1,,2,125169,1,2,3,0,1,,220.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,62.5017866084502,2200.0,42877.2509566376,1,1,1,2,131.0,8,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.05480761820240271,20417.73855077981,5,3,5,5_1,5_0,5_0_1 +25149,2,42.0,0.0,1,111,200.0,810.0,0.0,47,34,0.0,0.0,341.04010867441224,1010.0,0.0,1537.788278831229,10,0,0,0,0,0,0,0,0,3,50.0,2,,1,125170,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1133.90697377487,200.0,77538.18515773249,1,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013025840080540986,43076.7695320736,9,5,9,9_0,9_4,9_1_0 +25150,2,66.0,0.0,5,221,800.0,0.0,0.0,77,74,0.0,0.0,1364.160434697649,2900.0,2909.737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125171,2,2,1,0,1,,150.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1453.25054782277,800.0,28207.36973903777,5,5,0,1,120.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10281001124278973,18804.913159358515,5,3,5,5_1,5_1,5_0_0 +25151,2,54.0,0.0,1,111,1056.0,3159.0,0.0,43,37,0.0,0.0,1800.6917738008965,4215.0,0.0,5997.374287441793,12,0,0,0,0,0,0,0,0,2,50.0,1,,1,125172,2,1,1,0,1,,761.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,351.267607855641,1056.0,150600.94412750908,1,1,0,1,165.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02798787234979943,65478.67135978656,10,5,10,10_1,10_4,10_1_0 +25152,2,39.0,0.0,1,112,563.0,1202.0,0.0,46,46,0.0,0.0,960.0279059184704,1765.0,0.0,2282.0018656236266,43,1,2,2,2,2,2,2,1,2,45.0,1,,1,125173,2,2,3,0,1,,244.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1497.15531664566,563.0,63396.97743608713,1,1,0,1,90.0,9,4,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.027840443998759446,30189.036874327205,8,4,8,8_1,8_2,8_1_0 +25153,2,42.0,0.0,5,111,278.0,920.0,0.0,0,45,0.0,0.0,474.045751057433,1198.0,0.0,1746.6237241046058,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,125174,2,3,1,0,1,,180.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,250.299137315661,278.0,27625.797674274778,0,1,2,3,56.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04336526366134872,27625.797674274778,7,4,7,7_1,7_2,7_0_0 +25154,2,70.0,0.0,1,112,1680.0,0.0,0.0,77,78,0.0,238.3789098618403,2864.7369128650625,2000.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125175,2,1,1,0,1,,166.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,828.383660865934,1680.0,29930.6239132655,5,5,0,1,70.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06682119309626498,19953.749275510334,5,3,5,5_1,5_0,5_1_0 +25155,2,36.0,0.0,1,111,730.0,0.0,0.0,0,52,0.0,172.1625460113291,1244.7963966616046,860.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,1,,1,125176,2,2,1,0,1,,150.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,2259.13505766595,730.0,19007.087356521053,0,1,1,2,100.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04524628018321527,19007.087356521053,5,3,5,5_1,5_2,5_1_0 +25156,2,70.0,0.0,2,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,1007.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,125177,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1718.1149655631,0.0,57949.660497069744,5,5,0,1,74.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017377150985223105,38633.106998046496,9,5,9,9_0,9_3,9_0_1 +25157,2,66.0,0.0,7,111,350.0,0.0,0.0,0,78,0.0,927.0290939071567,596.8201901802214,1110.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,125178,2,1,2,0,1,,106.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,678.655242158601,350.0,24088.126330387986,0,5,0,1,110.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04608079452820278,24088.126330387986,6,3,6,6_1,6_2,6_0_0 +25158,2,67.0,0.0,1,400,500.0,0.0,0.0,0,71,4007.794833939086,0.0,852.6002716860306,4300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125179,2,3,2,0,2,,130.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1416.74045332056,500.0,13398.42495968756,0,5,0,1,70.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.32093324498495923,13398.42495968756,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +25160,2,49.0,0.0,1,300,2296.0,0.0,0.0,47,43,5262.867426672642,0.0,3915.1404475822524,7386.0,138.5589225396521,0.0,33,2,2,2,2,1,2,2,1,0,,1,,1,125181,2,1,1,0,1,,486.0,,43,3.0,0.0,7.0,4.0,2.5,4,4,997.874926914861,2296.0,219218.68493382283,4,1,1,2,185.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,1,0,0.03369238348560327,87687.47397352914,10,5,10,10_1,10_0,10_1_0 +25161,2,38.0,0.0,9,111,0.0,0.0,0.0,42,46,0.0,0.0,0.0,2080.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,125182,2,2,1,0,1,,315.0,964.0,43,2.0,0.0,4.0,5.0,2.4,2,2,1009.9262166392,0.0,52229.007445704294,1,1,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03982461282961016,21762.086435710124,6,3,6,6_1,6_3,6_0_0 +25162,2,61.0,0.0,2,111,650.0,0.0,0.0,0,22,495.70093998720273,0.0,1108.3803531918397,1120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,125183,2,1,0,1,1,,0.0,,22,3.0,0.0,3.0,3.0,2.0,3,3,913.336391577256,650.0,34253.53678932647,0,1,0,1,83.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0326973534700509,17126.768394663235,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +25163,2,67.0,0.0,1,112,533.0,0.0,0.0,0,75,0.0,0.0,908.8718896173086,653.0,166.2707070475825,0.0,60,1,2,2,1,2,2,2,2,0,,1,,1,125184,2,2,2,0,2,,140.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,848.420124001307,533.0,18108.56456231423,0,5,0,1,70.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.036060285052022266,18108.56456231423,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +25164,1,40.0,248.0,7,111,600.0,1200.0,0.0,54,68,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,71,1,2,2,1,1,1,2,2,0,,8,,5,125185,2,3,0,0,1,,0.0,461.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,727.275038262688,600.0,34635.01069269213,1,1,2,3,103.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.051970533977048664,13321.157958727743,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +25165,2,47.0,0.0,2,111,1000.0,,,0,34,0.0,0.0,,1050.0,69.27946126982604,,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,125186,2,3,0,0,2,,400.0,,32,1.0,2.0,4.0,2.0,1.5,1,1,142.41161699460315,1000.0,28931.798017762158,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036292248388965366,19287.86534517477,5,3,5,5_1,5_2,5_0_1 +25166,2,61.0,0.0,1,111,388.0,0.0,0.0,0,52,1170.6979646506277,0.0,661.6178108283598,1498.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,2,,1,125187,1,3,0,1,1,1110.0,0.0,575.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1121.96762035935,388.0,31919.259334886436,0,1,2,3,90.0,4,4,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0469309135366668,31919.259334886436,8,4,8,8_0,8_2,8_1_0 +25167,2,49.0,0.0,1,111,748.0,0.0,0.0,67,56,5273.414255183007,0.0,1275.4900064423018,5838.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125188,1,3,2,0,2,,148.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1591.76450601236,748.0,17885.279583120122,4,1,1,2,150.0,8,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.3264136841064438,11923.519722080082,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +25168,1,26.0,88.0,8,111,875.0,0.0,0.0,0,54,0.0,980.0021849875657,1492.0504754505534,1615.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2002.0,6,125189,2,1,0,1,1,841.0,0.0,709.0,22,3.0,0.0,4.0,5.0,3.0,5,5,488.064722672152,875.0,37968.06494784326,0,1,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04253574687618465,12656.021649281087,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +25169,2,80.0,0.0,1,300,0.0,0.0,0.0,0,77,0.0,0.0,0.0,558.0,69.27946126982604,0.0,70,1,2,2,1,2,2,2,2,0,,1,,1,125190,2,1,1,0,1,,200.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,882.072921622794,0.0,22231.68440696088,0,5,0,1,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02509931275496546,22231.68440696088,6,3,6,6_1,6_0,6_1_0 +25170,1,19.0,270.0,2,111,200.0,150.0,0.0,0,62,0.0,0.0,341.04010867441224,350.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,125191,1,2,0,1,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2167.00269367768,200.0,36901.796257387665,0,1,2,3,19.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00948463314790349,36901.796257387665,9,5,9,9_0,9_3,9_0_1 +25171,0,45.0,0.0,6,111,0.0,,,0,56,0.0,0.0,,100.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,1,2.0,2,,4,125192,2,2,0,0,2,,0.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,46.4573888701481,0.0,24781.11927871324,0,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0040353302397401845,24781.11927871324,7,4,7,7_0,7_2,7_0_0 +25172,2,72.0,0.0,6,112,1445.0,0.0,0.0,0,72,0.0,198.6490915515336,2464.0147851726283,1595.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,125193,2,1,2,0,1,,627.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,2192.56995767578,1445.0,13527.952974784544,0,5,0,1,135.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11790401718375304,13527.952974784544,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +25173,2,45.0,0.0,2,111,2532.0,0.0,0.0,46,38,0.0,0.0,4317.567775818059,2532.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,30.0,1,,2,125194,2,2,2,0,1,,536.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,554.817727780761,2532.0,76176.85200146836,4,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0332384436147505,29298.789231333987,8,4,8,8_1,8_4,8_0_1 +25174,1,39.0,290.0,9,120,250.0,,,0,56,0.0,0.0,,350.0,138.5589225396521,,43,0,0,0,0,0,0,0,0,0,,2,2006.0,6,125195,2,1,0,0,2,,140.0,590.0,32,2.0,0.0,3.0,4.0,2.1,3,2,139.85310860966337,250.0,13809.955079661006,0,1,2,3,60.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025344036094329676,6576.1690855528595,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25175,1,40.0,413.0,7,111,900.0,,,85,62,0.0,0.0,,1050.0,207.83838380947813,,44,0,0,0,0,0,0,0,0,0,,1,,5,125196,2,1,0,0,1,,600.0,450.0,42,1.0,0.0,3.0,4.0,2.3,3,2,118.41697129490593,900.0,14100.582303573172,6,4,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07446500984104208,6130.687958075293,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +25177,2,61.0,0.0,7,111,300.0,,,0,77,0.0,0.0,,426.0,174.58424239996165,,70,0,0,0,0,0,0,0,0,0,,1,,5,125198,2,2,0,0,2,,474.0,,21,0.0,2.0,4.0,2.0,1.5,2,2,84.66932140342483,300.0,15587.987094912312,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02732873702076903,10391.991396608208,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +25178,2,31.0,0.0,1,111,483.0,860.0,0.0,37,37,0.0,0.0,823.6118624487056,1343.0,0.0,1632.7134812282186,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,125199,2,1,1,0,1,,315.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2317.35702310604,483.0,67766.73916657665,1,1,1,2,115.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01981798174911127,37648.18842587592,9,5,9,9_1,9_2,9_1_0 +25180,2,55.0,0.0,1,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1537.0,0.0,0.0,10,2,2,2,2,1,2,2,2,0,,1,,1,125201,2,3,2,0,1,,240.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,985.607491018309,0.0,20518.801900880615,0,1,1,2,75.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.07490690769493885,20518.801900880615,5,3,5,5_1,5_4,5_1_0 +25181,2,40.0,0.0,1,111,640.0,835.0,0.0,85,33,0.0,198.6490915515336,1091.3283477581192,1625.0,0.0,1585.2508800297237,10,0,0,0,0,0,0,0,0,3,30.0,1,,1,125202,2,2,1,0,1,,578.0,,42,1.0,0.0,6.0,5.0,2.5999999999999996,3,2,268.696711064688,640.0,49671.35529444582,6,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0327150324440957,19104.367420940704,5,3,5,5_1,5_3,5_1_0 +25182,2,83.0,0.0,5,111,534.0,,,0,77,0.0,0.0,,671.0,189.82572387932336,,71,0,0,0,0,0,0,0,0,0,,1,,3,125203,2,1,0,0,1,,455.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,80.51037019868075,534.0,15958.083397033999,0,5,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04204765593120746,10638.722264689333,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25183,2,47.0,0.0,2,111,360.0,0.0,0.0,37,38,0.0,0.0,613.872195613942,360.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,125204,1,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,941.053234772822,360.0,89418.25771421473,1,1,0,1,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004026023422985697,38877.50335400641,9,5,9,9_0,9_4,9_0_1 +25184,1,64.0,139.0,2,111,450.0,200.0,0.0,0,67,0.0,0.0,767.3402445174275,650.0,0.0,379.7008095879578,70,2,2,2,1,1,2,2,2,0,,2,,2,125205,1,3,0,1,2,500.0,0.0,226.0,12,1.0,2.0,4.0,1.0,1.0,1,1,339.853010650107,450.0,9383.732412345236,0,4,2,3,65.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.06926881239120375,9383.732412345236,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25185,2,65.0,0.0,8,111,500.0,384.0,0.0,0,78,0.0,0.0,852.6002716860306,884.0,0.0,729.025554408879,70,2,1,2,2,1,2,2,2,0,,2,2000.0,6,125206,2,1,0,0,1,,0.0,435.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1761.90230015254,500.0,15527.998251142471,0,5,2,3,49.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.05692942423759996,15527.998251142471,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +25186,2,31.0,0.0,1,111,0.0,0.0,0.0,35,35,0.0,0.0,0.0,678.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,125207,1,2,0,1,2,,0.0,,43,2.0,0.0,1.0,2.0,1.5,2,2,1102.94116180371,0.0,17885.89962344946,4,1,1,2,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0379069554382997,11923.93308229964,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +25187,0,61.0,0.0,1,120,0.0,0.0,2000.0,54,77,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,50,0,0,0,0,0,0,0,0,0,,1,,1,125208,2,2,2,1,1,,500.0,,42,3.0,1.0,6.0,5.0,3.0,5,5,219.454664564412,0.0,28537.96862902361,4,5,0,1,123.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07008207297438701,9512.656209674537,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +25188,2,77.0,0.0,2,111,400.0,1253.0,0.0,75,77,0.0,0.0,682.0802173488245,1653.0,0.0,2378.8255720685556,60,0,0,0,0,0,0,0,0,0,,1,,2,125209,2,1,2,0,2,,216.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1836.3845648306,400.0,43294.76160157175,5,5,0,1,100.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038180138632291034,28863.174401047832,8,4,8,8_1,8_3,8_0_1 +25189,2,57.0,0.0,8,111,1300.0,,,0,43,0.0,0.0,,1300.0,0.0,,33,0,0,0,0,0,0,0,0,2,60.0,2,1999.0,6,125210,2,1,0,0,2,,0.0,,22,2.0,1.0,4.0,3.0,2.0,3,3,175.59120235794472,1300.0,114429.93424629468,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011360663698380959,57214.96712314734,10,5,10,10_0,10_2,10_0_0 +25190,1,38.0,290.0,9,111,0.0,,,0,54,0.0,0.0,,1750.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,125211,2,1,0,0,1,,242.0,780.0,32,1.0,0.0,3.0,2.0,1.3,1,1,170.9820473009973,0.0,27402.0,0,1,2,3,42.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0638639515363842,21078.46153846154,5,3,5,5_0,5_3,5_0_0 +25192,2,55.0,0.0,6,111,215.0,,,42,52,0.0,0.0,,455.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,4,125213,1,1,0,0,1,,900.0,470.0,43,3.0,0.0,4.0,3.0,2.0,3,2,99.54768132505045,215.0,16027.685426594016,4,1,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02838837847697204,8013.842713297008,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25193,2,82.0,0.0,2,111,540.0,,,75,72,0.0,0.0,,770.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,125214,2,1,0,0,2,,778.0,,41,0.0,8.0,5.0,4.0,2.3,3,3,121.02859360856543,540.0,49279.45902831523,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015625171525474126,21425.851751441405,6,3,6,6_1,6_2,6_0_1 +25194,2,67.0,0.0,5,112,280.0,0.0,0.0,55,72,0.0,662.163638505112,477.4561521441771,780.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125215,2,2,1,0,1,,320.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1308.5682948097,280.0,41780.516850521715,1,5,0,1,75.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018668988772700165,27853.67790034781,7,4,7,7_1,7_0,7_0_0 +25195,2,42.0,0.0,1,300,855.0,0.0,0.0,54,64,1582.0242765549024,264.8654554020448,1457.9464645831124,2555.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,1,125216,2,1,2,0,1,,366.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1115.72207665526,855.0,43210.616805172394,1,1,1,2,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059128987015389274,20576.484192939235,5,3,5,5_1,5_0,5_1_0 +25196,2,67.0,0.0,1,300,0.0,0.0,0.0,71,71,0.0,0.0,0.0,1686.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125217,2,1,2,0,1,,165.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1041.51433202879,0.0,28140.934182435914,5,5,0,1,100.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05991272319070034,18760.62278829061,5,3,5,5_1,5_0,5_1_0 +25197,2,44.0,0.0,5,112,1650.0,0.0,0.0,0,55,0.0,0.0,2813.5808965639008,1854.0,282.6602019808903,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,3,125218,2,2,3,0,1,,360.0,,32,3.0,0.0,4.0,3.0,2.0,3,3,1874.93401401039,1650.0,70852.11193655005,0,1,0,1,90.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02616718047389055,35426.055968275024,9,5,9,9_1,9_0,9_0_0 +25198,2,69.0,0.0,6,111,780.0,2300.0,0.0,75,75,0.0,66.2163638505112,1330.0564238302077,3130.0,0.0,4366.559310261515,31,0,0,0,0,0,0,0,0,0,,1,,4,125219,2,2,2,0,1,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1843.53831954214,780.0,49103.27069902646,5,5,0,1,210.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06374320804789194,32735.513799350974,8,4,8,8_1,8_3,8_0_0 +25199,1,66.0,200.0,1,111,400.0,800.0,0.0,85,78,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,1,125220,2,2,0,0,1,,0.0,425.0,41,0.0,2.0,3.0,3.0,2.0,3,2,415.362723082956,400.0,15678.152462460715,7,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07653963072965664,7839.076231230358,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +25200,2,47.0,0.0,7,112,1500.0,,,68,67,0.0,0.0,,1588.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,125221,2,1,0,0,2,,2000.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,102.03460657208973,1500.0,34610.17281439953,1,1,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045882463763350936,13844.069125759812,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +25201,2,82.0,0.0,1,111,600.0,250.0,0.0,0,86,2636.7071275915036,0.0,1023.1203260232367,3350.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,0,,1,,1,125222,2,1,2,0,1,,550.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,972.949606948286,600.0,13857.315104471543,0,5,0,1,150.0,7,6,4,1,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.24174957231931649,13857.315104471543,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +25202,2,64.0,0.0,7,111,840.0,,,0,75,0.0,0.0,,886.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,0,,1,,5,125223,1,1,0,0,2,,600.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,78.32043950332108,840.0,25830.630890612774,0,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034300362377985325,25830.630890612774,7,4,7,7_1,7_3,7_0_0 +25203,2,58.0,0.0,5,112,1115.0,1548.0,0.0,75,75,0.0,331.081819252556,1901.2986058598483,2913.0,0.0,2938.884266210793,31,0,0,0,0,0,0,0,0,0,,1,,3,125224,1,2,1,0,1,,351.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1703.96175212578,1115.0,58648.776212656085,5,5,0,1,175.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04966855556265453,39099.184141770726,9,5,9,9_1,9_2,9_0_0 +25204,0,75.0,0.0,2,111,130.0,0.0,0.0,0,77,0.0,0.0,221.67607063836795,130.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,125225,2,2,0,1,2,427.0,0.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,1599.61418720839,130.0,60521.0,0,5,5,0,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0021480147386857456,60521.0,10,5,10,10_0,10_4,10_0_1 +25205,2,75.0,0.0,2,111,750.0,,,86,77,0.0,0.0,,2900.0,2979.0168346025202,,71,0,0,0,0,0,0,0,0,0,,1,,2,125226,1,3,0,0,2,,800.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,96.59346358223752,750.0,52773.54172923455,5,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054951778959218676,35182.36115282303,9,5,9,9_1,9_2,9_0_1 +25206,2,26.0,0.0,2,111,414.0,0.0,0.0,0,63,0.0,0.0,705.9530249560333,414.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125227,2,1,0,1,1,274.0,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,1,1,265.924539807065,414.0,16350.638276561516,0,1,2,3,57.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.025320112462732726,16350.638276561516,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +25207,1,48.0,100.0,2,111,250.0,0.0,0.0,0,62,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125228,2,1,0,1,1,,300.0,357.0,12,1.0,2.0,2.0,1.0,1.0,1,1,132.891037447894,250.0,13079.86237895247,0,4,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019113350947964777,13079.86237895247,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25208,1,34.0,100.0,5,112,0.0,0.0,3500.0,84,64,0.0,0.0,2206.114016451603,3500.0,0.0,4188.562516476382,43,2,2,2,1,2,1,2,2,2,40.0,2,,3,125229,1,1,0,0,1,,0.0,600.0,42,1.0,0.0,5.0,4.0,2.1,2,2,567.355580829028,0.0,16879.773757620096,3,1,2,3,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.20734875065609115,8037.987503628617,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +25209,1,67.0,270.0,1,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1399.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,125230,2,3,0,0,1,,0.0,470.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1470.17876331897,0.0,10618.409980659579,0,5,2,3,50.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0.1317523059053234,10618.409980659579,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +25210,1,55.0,183.0,9,111,1115.0,0.0,0.0,85,68,0.0,0.0,1901.2986058598483,1115.0,0.0,0.0,41,2,2,2,1,1,2,2,2,3,60.0,1,2004.0,6,125231,2,1,1,0,1,,380.0,,42,1.0,0.0,3.0,3.0,2.0,3,3,793.611818703863,1115.0,17802.53438930023,6,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,1,0.06263153187167234,8901.267194650114,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +25211,2,91.0,0.0,1,111,1500.0,890.0,0.0,86,78,0.0,0.0,2557.8008150580918,2440.0,69.27946126982604,1689.6686026664122,70,0,0,0,0,0,0,0,0,0,,1,,1,125232,2,1,2,0,1,,450.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,428.473547813048,1500.0,24845.579669197105,5,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09820660385014272,16563.719779464736,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +25212,2,37.0,0.0,1,111,793.0,0.0,0.0,46,21,0.0,0.0,1352.2240308940445,793.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,1,125233,2,2,0,0,1,,0.0,794.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1049.37276715257,793.0,5006.70674172335,4,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1583875471258464,3337.8044944822336,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +25213,2,30.0,0.0,5,400,400.0,0.0,0.0,0,67,1582.0242765549024,423.78472864327165,682.0802173488245,2340.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125234,2,1,2,0,2,,140.0,,22,1.0,0.0,5.0,3.0,2.0,3,3,1492.57437281636,400.0,48309.1381082559,0,1,0,1,150.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048438040744098895,24154.56905412795,6,3,6,6_1,6_0,6_0_0 +25214,2,56.0,0.0,7,112,1924.0,0.0,0.0,55,63,0.0,1324.327277010224,3280.8058454478455,2924.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,10.0,1,,5,125235,2,1,2,0,1,,400.0,,43,2.0,0.0,4.0,5.0,3.0,5,5,462.199125504085,1924.0,49438.08652192372,1,1,1,2,91.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059144683900808515,16479.362173974572,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +25215,2,46.0,0.0,2,111,250.0,140.0,0.0,38,22,0.0,0.0,426.3001358430153,390.0,0.0,265.7905667115705,71,0,0,0,0,0,0,0,0,0,,2,,2,125236,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,245.42987755535,250.0,35930.135370582466,4,4,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010854398292061812,17109.588271705936,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +25216,1,71.0,123.0,7,120,320.0,,,0,78,0.0,0.0,,412.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,,5,125237,2,2,0,0,2,,210.0,312.0,11,0.0,3.0,2.0,1.0,1.0,1,1,137.9924598994505,320.0,13486.002898397102,0,5,2,3,34.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030550193641806857,13486.002898397102,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +25217,2,30.0,0.0,9,120,1666.0,0.0,0.0,52,48,0.0,0.0,2840.864105257854,1666.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,125238,2,1,1,0,1,,255.0,690.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1022.28750750642,1666.0,43780.78628979763,1,1,2,3,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03805322245635943,20847.993471332204,5,3,5,5_1,5_0,5_0_0 +25218,2,72.0,0.0,5,112,634.0,0.0,0.0,0,78,2510.145185467112,0.0,1081.0971444978868,3089.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125239,2,2,2,0,1,,248.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1488.3116529557,634.0,13651.04674973887,0,5,0,1,102.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2262830137959266,13651.04674973887,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +25219,2,25.0,0.0,8,400,0.0,,,0,43,0.0,0.0,,1186.0,0.0,,20,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,125240,2,1,0,0,2,,237.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,96.48510552582067,0.0,29474.10841444317,0,1,3,4,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040238706573353905,29474.10841444317,8,4,8,8_1,8_1,8_0_0 +25220,2,46.0,0.0,1,300,500.0,0.0,0.0,0,52,1792.9608467622227,0.0,852.6002716860306,2230.0,41.567676761895626,0.0,50,2,2,2,1,1,2,2,2,2,35.0,1,,1,125241,1,2,3,0,2,,90.0,453.0,32,2.0,2.0,5.0,2.0,1.5,2,2,1199.54271818624,500.0,20890.415788856673,0,1,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.1067475163031232,13926.943859237783,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +25221,1,46.0,180.0,9,111,0.0,,,0,54,0.0,0.0,,694.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,2012.0,6,125242,2,2,0,0,1,,308.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,238.8659852569326,0.0,5309.734491315136,0,4,1,2,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13070333387387648,5309.734491315136,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +25222,2,38.0,0.0,1,111,360.0,910.0,0.0,0,43,0.0,0.0,613.872195613942,1270.0,0.0,1727.638683625208,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,125243,2,2,2,0,1,,250.0,309.0,12,1.0,0.0,2.0,1.0,1.0,1,1,302.246055433617,360.0,13972.964592809885,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09088980305965336,13972.964592809885,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +25223,2,58.0,0.0,2,211,300.0,0.0,0.0,0,77,0.0,132.4327277010224,511.56016301161833,460.0,83.13535352379125,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,125244,1,3,0,1,1,,0.0,430.0,11,0.0,0.0,3.0,1.0,1.0,1,1,366.069403384888,300.0,18421.96322222554,0,5,2,3,90.0,1,3,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02497019424319684,18421.96322222554,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +25224,2,41.0,0.0,9,111,0.0,,,0,52,0.0,0.0,,92.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,125245,2,2,0,0,2,,450.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,93.52914141678039,0.0,19712.375262920476,0,1,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004667118942944159,19712.375262920476,5,3,5,5_1,5_3,5_0_0 +25225,2,52.0,0.0,6,111,210.0,68.0,0.0,0,53,0.0,0.0,358.0921141081328,278.0,0.0,129.09827525990565,20,0,0,0,0,0,0,0,0,0,,2,,4,125246,1,3,0,4,1,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1757.99580117597,210.0,42699.773831576684,0,1,2,3,34.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006510573126137209,42699.773831576684,9,5,9,9_0,9_4,9_0_0 +25226,2,33.0,0.0,9,112,1653.0,0.0,0.0,54,47,0.0,0.0,2818.6964981940173,1913.0,360.2531986030954,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,125247,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,3329.57510199213,1653.0,59802.07372343888,1,1,1,2,137.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03198885725680474,33223.37429079938,8,4,8,8_1,8_0,8_0_0 +25227,1,44.0,406.0,7,112,0.0,0.0,0.0,0,68,0.0,0.0,0.0,777.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,5,125248,2,1,0,0,1,,307.0,504.0,32,2.0,2.0,4.0,3.0,1.8,2,1,2630.26953052773,0.0,12451.68566507054,0,1,2,3,72.0,9,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06240118975855935,6917.60314726141,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +25228,2,72.0,0.0,7,111,838.0,1989.0,0.0,74,23,0.0,0.0,1428.9580553457872,2827.0,0.0,3776.1245513522404,20,1,2,2,1,1,2,2,2,0,,1,,5,125249,2,1,2,0,1,,660.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,583.225800793674,838.0,85167.7181365229,5,1,0,1,104.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03319332796339982,56778.478757681936,10,5,10,10_1,10_4,10_0_0 +25229,2,66.0,0.0,1,111,280.0,0.0,0.0,86,78,2636.7071275915036,0.0,477.4561521441771,2867.0,120.54626260949732,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125250,2,3,3,0,1,,280.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,896.11679759196,280.0,22288.454541648818,6,5,0,1,90.0,7,5,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1286316193275153,14858.969694432546,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +25230,2,91.0,0.0,2,111,560.0,620.0,0.0,78,78,0.0,0.0,954.9123042883542,1180.0,0.0,1177.072509722669,71,0,0,0,0,0,0,0,0,0,,2,,2,125251,2,1,0,1,1,720.0,0.0,385.0,41,0.0,0.0,3.0,2.0,1.5,2,2,927.588312385016,560.0,34332.47040293479,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.034369795885679455,22888.313601956528,6,3,6,6_0,6_4,6_0_1 +25231,2,47.0,0.0,9,111,0.0,0.0,0.0,90,38,0.0,0.0,0.0,3918.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,50.0,1,2004.0,6,125252,2,1,1,0,1,,995.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,557.281715701203,0.0,107958.99211368606,4,1,1,2,156.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03629155777847718,43183.59684547443,9,5,9,9_1,9_4,9_0_0 +25232,2,59.0,0.0,5,212,447.0,0.0,0.0,0,55,527.3414255183008,662.163638505112,762.2246428873113,1567.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,125253,2,1,1,0,1,,125.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1460.34615561471,447.0,25358.12206387454,0,1,0,1,90.0,3,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06179479679342523,25358.12206387454,7,4,7,7_1,7_0,7_0_0 +25233,2,55.0,0.0,1,400,622.0,0.0,0.0,63,54,0.0,860.8127300566456,1060.634737977422,1362.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,1,125254,2,3,4,0,1,,346.0,,43,2.0,4.0,3.0,2.0,1.5,2,2,1132.10543194296,622.0,39874.3723304617,4,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03415727747918708,26582.914886974468,7,4,7,7_1,7_0,7_1_0 +25234,2,26.0,0.0,1,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,798.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,1,125255,2,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1736.87209772549,0.0,35594.94843684093,0,1,1,2,50.0,8,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022418911532234905,35594.94843684093,9,5,9,9_0,9_3,9_1_0 +25235,1,25.0,189.0,5,111,240.0,0.0,0.0,0,63,0.0,0.0,409.2481304092947,345.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,125256,2,1,0,1,1,900.0,0.0,320.0,22,2.0,0.0,2.0,3.0,2.0,3,3,389.51576471166,240.0,14460.9116333504,0,4,2,3,52.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023857417066593892,7230.4558166752,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25236,1,28.0,305.0,5,111,180.0,600.0,0.0,69,69,0.0,0.0,306.936097806971,876.0,133.01656563806603,1139.1024287638734,41,0,0,0,0,0,0,0,0,0,,2,,3,125257,1,1,0,1,1,,250.0,483.0,43,2.0,0.0,4.0,3.0,1.8,2,2,505.82065819847,180.0,14096.90532637944,4,4,2,3,75.0,5,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06214129837140549,7831.6140702108,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25237,2,52.0,0.0,7,111,1360.0,0.0,0.0,0,45,0.0,0.0,2319.072738986003,1360.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,2,,5,125258,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,783.152603567455,1360.0,27602.41217856737,0,1,0,1,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049271056138202596,27602.41217856737,7,4,7,7_0,7_4,7_0_0 +25238,2,44.0,0.0,7,111,324.0,,,85,63,0.0,0.0,,444.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,,5,125259,2,1,0,0,2,,180.0,,42,1.0,0.0,4.0,4.0,2.3,3,2,141.2559983349785,324.0,26769.271670571383,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01658618155413277,11638.813769813645,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25239,2,25.0,0.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,836.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,125260,1,1,0,0,1,,0.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1576.51061635179,0.0,15519.930847923355,0,1,2,3,47.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.053866219391812624,15519.930847923355,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +25240,2,66.0,0.0,7,221,400.0,0.0,0.0,77,72,0.0,317.83854648245375,682.0802173488245,760.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,125261,2,1,1,0,1,,195.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,733.647023901968,400.0,40106.21717576767,5,5,0,1,70.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018949680461492015,26737.478117178445,7,4,7,7_1,7_1,7_0_0 +25241,1,26.0,98.0,2,111,120.0,,,0,46,0.0,0.0,,193.0,101.14801345394604,,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,125262,2,1,0,0,2,,0.0,312.0,32,1.0,0.0,2.0,2.0,1.3,1,1,194.92520055239098,120.0,19604.44254187485,0,2,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009844707371186626,15080.340416826808,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +25242,2,71.0,0.0,1,111,0.0,0.0,0.0,52,75,0.0,0.0,0.0,625.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,1,125263,2,3,0,1,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,2363.35515823425,0.0,50642.16167538122,1,5,0,1,76.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012341495294104568,33761.44111692081,9,5,9,9_0,9_3,9_1_0 +25243,2,55.0,0.0,7,211,850.0,900.0,0.0,63,21,0.0,0.0,1449.420461866252,1807.0,78.97858584760169,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,5,125264,2,1,2,0,1,,630.0,,43,3.0,0.0,6.0,3.0,2.0,3,2,1675.88792258509,850.0,52766.85577652712,1,1,0,1,80.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03424498150226773,26383.42788826356,7,4,7,7_1,7_1,7_0_0 +25244,2,70.0,0.0,1,400,600.0,0.0,0.0,71,71,1476.555991451242,0.0,1023.1203260232367,2096.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125265,2,1,2,0,1,,280.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1225.53257698417,600.0,22133.867693561,5,5,0,1,132.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09469650894361092,14755.911795707332,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +25245,2,80.0,0.0,5,111,200.0,0.0,0.0,0,77,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,125266,2,2,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,884.077235810824,200.0,23261.08463144783,0,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008598051344932125,23261.08463144783,6,3,6,6_0,6_4,6_0_0 +25246,0,25.0,0.0,1,111,477.0,0.0,0.0,0,11,0.0,0.0,813.3806591884731,477.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,125267,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,993.252042912073,477.0,5298.668252281118,0,1,5,0,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09002262026777158,5298.668252281118,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +25247,1,33.0,119.0,9,111,500.0,0.0,0.0,0,54,0.0,0.0,852.6002716860306,540.0,55.423569015860835,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,125268,2,1,0,0,1,,360.0,390.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1167.5835416081,500.0,20930.684858603843,0,1,2,3,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.025799442476342367,16100.526814310648,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +25248,1,66.0,88.0,2,111,277.0,1117.0,0.0,0,78,0.0,0.0,472.34055051406096,1394.0,0.0,2120.6290215487443,71,0,0,0,0,0,0,0,0,0,,8,,2,125269,1,2,0,0,2,,0.0,270.0,11,0.0,0.0,3.0,1.0,1.0,1,1,3588.91898119579,277.0,11997.49635292271,0,5,2,3,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.11619090841902258,11997.49635292271,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25249,1,42.0,470.0,2,111,500.0,300.0,0.0,62,56,0.0,0.0,852.6002716860306,800.0,0.0,569.5512143819367,60,0,0,0,0,0,0,0,0,0,,2,,2,125270,2,1,0,1,1,455.0,0.0,700.0,43,2.0,0.0,5.0,5.0,2.8,4,3,1580.06665731372,500.0,25414.790166471772,4,1,2,3,97.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03147773382191416,9076.710773739918,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25250,1,80.0,35.0,8,300,246.0,,,0,78,0.0,0.0,,378.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,125271,1,1,0,0,2,,234.0,309.0,11,0.0,7.0,2.0,1.0,1.0,1,1,155.51474462041082,246.0,14732.414251685446,0,5,2,3,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02565770915359343,14732.414251685446,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +25251,2,28.0,0.0,1,111,0.0,0.0,0.0,48,47,0.0,0.0,0.0,891.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,1,125272,2,1,1,0,1,,462.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1101.42262637827,0.0,47044.05651034093,1,1,1,2,95.0,5,4,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0189396932597457,31362.704340227287,8,4,8,8_1,8_2,8_1_0 +25252,2,75.0,0.0,9,111,0.0,0.0,0.0,75,90,0.0,0.0,0.0,1302.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2005.0,6,125273,2,3,0,0,1,,519.0,620.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1997.66565250098,0.0,59206.23432282913,5,5,2,3,66.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02199092738951591,39470.82288188609,9,5,9,9_0,9_3,9_0_0 +25253,2,30.0,0.0,1,111,900.0,0.0,0.0,0,34,0.0,0.0,1534.680489034855,900.0,0.0,0.0,10,2,2,1,1,1,2,1,2,2,105.0,2,,1,125274,1,3,0,0,1,,0.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,196.744848302514,900.0,25854.355540370467,0,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.03481038228141826,25854.355540370467,7,4,7,7_0,7_3,7_1_0 +25254,1,55.0,124.0,7,111,663.0,,,81,52,0.0,0.0,,783.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,2,,5,125275,2,1,0,0,2,,924.0,433.0,43,3.0,1.0,3.0,3.0,2.0,3,3,157.54085788662758,663.0,12990.492067437717,4,4,2,3,39.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.060274853018284565,6495.246033718859,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25255,2,53.0,0.0,9,111,1300.0,1500.0,0.0,85,22,0.0,0.0,2216.7607063836795,2800.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,125276,2,1,1,0,1,,650.0,970.0,42,1.0,0.0,5.0,4.0,2.5,4,4,325.411279478995,1300.0,29813.978741932813,6,1,2,3,200.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.093915677080089,11925.591496773126,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25256,2,57.0,0.0,2,111,515.0,2240.0,0.0,55,46,0.0,0.0,878.1782798366115,2755.0,0.0,4252.649067385128,20,0,0,0,0,0,0,0,0,3,75.0,1,,2,125277,2,2,1,0,1,,217.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,700.887827675056,515.0,80556.38533929113,1,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03419964771751318,40278.19266964556,9,5,9,9_1,9_4,9_0_1 +25258,2,77.0,0.0,1,120,600.0,0.0,0.0,71,33,0.0,662.163638505112,1023.1203260232367,1100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,,1,125279,2,1,2,0,1,,60.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,213.2534228917,600.0,28157.940423647582,5,1,0,1,60.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03906535717634372,18771.960282431723,5,3,5,5_1,5_0,5_1_0 +25259,2,57.0,0.0,7,112,794.0,0.0,0.0,77,63,0.0,1258.1109131597127,1353.9292314374165,1810.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,125280,2,2,2,0,1,,211.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,709.451213411313,794.0,44386.75076130489,6,1,0,1,95.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040777934157278005,22193.375380652444,6,3,6,6_1,6_0,6_0_0 +25260,2,50.0,0.0,2,211,462.0,0.0,0.0,65,48,1265.6194212439218,0.0,787.8026510378922,1662.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,125281,2,2,2,0,1,,318.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,2016.99344062583,462.0,41658.316173839296,1,1,0,1,150.0,1,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03989599562940826,18112.311379930128,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +25261,1,26.0,238.0,2,111,140.0,500.0,0.0,0,68,0.0,0.0,238.72807607208856,640.0,0.0,949.2520239698945,50,2,2,2,1,2,2,2,2,0,,2,,2,125282,2,1,0,0,1,,0.0,237.0,22,1.0,6.0,4.0,2.0,1.5,2,2,457.187482130915,140.0,16064.060788899613,0,1,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03984048668704272,10709.373859266409,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25262,2,42.0,0.0,5,211,980.0,1050.0,0.0,0,52,0.0,0.0,1671.09653250462,2030.0,0.0,1993.4292503367785,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,125283,2,2,5,0,1,,450.0,515.0,22,1.0,4.0,4.0,2.0,1.3,1,1,1140.20761475496,980.0,19722.225169722944,0,1,2,3,120.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10292956208188943,15170.942438248418,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +25263,1,58.0,267.0,6,111,200.0,600.0,0.0,0,75,0.0,0.0,341.04010867441224,800.0,0.0,1139.1024287638734,44,0,0,0,0,0,0,0,0,0,,2,,4,125284,2,1,0,0,1,,250.0,254.0,11,0.0,3.0,1.0,1.0,1.0,1,1,296.870671616725,200.0,6322.5601263491535,0,5,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.12653102287885165,6322.5601263491535,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +25264,2,46.0,0.0,8,111,575.0,1982.0,0.0,67,48,0.0,0.0,980.4903124389351,2557.0,0.0,3762.8350230166616,50,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,125285,2,1,1,0,1,,600.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,598.765814537354,575.0,47422.47272407495,1,1,1,2,112.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053919583967663685,18968.98908962998,5,3,5,5_1,5_4,5_0_0 +25265,2,53.0,0.0,2,112,610.0,0.0,0.0,85,64,1613.6647620860003,0.0,1040.1723314569574,2215.0,103.91919190473907,0.0,50,2,2,1,1,1,2,2,2,2,10.0,1,,2,125286,2,2,3,0,1,,780.0,,42,4.0,0.0,7.0,6.0,3.5,6,6,1140.35945902695,610.0,68414.67149358522,6,1,1,2,170.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.032376096408029756,19547.048998167207,5,3,5,5_1,5_0,5_0_1 +25266,2,39.0,0.0,2,221,1150.0,2760.0,0.0,22,22,0.0,344.3250920226582,1960.9806248778702,4170.0,0.0,5239.871172313818,10,0,0,0,0,0,0,0,0,1,2.0,1,,2,125287,1,1,2,0,1,,324.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2144.44462570213,1150.0,78769.15084266828,1,1,0,1,217.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05293950684233049,37509.11944888966,9,5,9,9_1,9_1,9_0_1 +25267,2,70.0,0.0,2,300,0.0,,,77,71,0.0,0.0,,132.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,125288,2,2,0,0,2,,540.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,86.31912701538062,0.0,12129.066666666668,5,5,0,1,32.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010882947849793333,8086.044444444445,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +25268,2,53.0,0.0,1,111,1800.0,2800.0,0.0,45,34,0.0,39.72981831030672,3069.36097806971,4630.0,0.0,5315.811334231409,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,125289,2,2,0,0,1,,0.0,,43,2.0,2.0,9.0,6.0,3.3,5,4,839.727688671835,1800.0,135696.92291866176,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034120154683059935,41120.27967232175,9,5,9,9_0,9_4,9_1_0 +25269,0,86.0,0.0,1,111,0.0,0.0,1600.0,0,78,0.0,0.0,1008.5092646635901,1600.0,0.0,1914.7714361034893,71,0,0,0,0,0,0,0,0,0,,1,,1,125290,2,1,1,0,1,,150.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,403.230374854377,0.0,17755.085961936173,0,5,5,0,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09011502413618963,17755.085961936173,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +25270,2,27.0,0.0,1,111,0.0,0.0,2100.0,46,22,0.0,0.0,1323.6684098709618,2100.0,0.0,2513.13750988583,42,0,0,0,0,0,0,0,0,2,5.0,1,,1,125291,2,2,2,0,1,,650.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,268.716247276501,0.0,66095.41661150672,1,1,1,2,145.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031772248480455234,44063.611074337816,10,5,10,10_1,10_2,10_1_0 +25271,1,39.0,120.0,5,111,150.0,380.0,0.0,55,68,0.0,0.0,255.78008150580916,530.0,0.0,721.4315382171199,42,0,0,0,0,0,0,0,0,2,10.0,2,,3,125292,2,1,0,1,1,,0.0,350.0,43,2.0,0.0,4.0,4.0,2.1,2,2,902.088603817751,150.0,22090.001542464346,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023992755228249455,10519.04835355445,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +25272,2,66.0,0.0,7,111,335.0,979.0,0.0,77,78,0.0,79.45963662061344,571.2421820296405,1374.0,0.0,1858.6354629330535,71,0,0,0,0,0,0,0,0,0,,1,,5,125293,2,1,1,0,1,,199.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1279.78928634165,335.0,21104.840271432495,5,5,0,1,87.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06510354886977496,14069.89351428833,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +25273,0,70.0,0.0,7,111,376.0,1173.0,0.0,0,78,0.0,0.0,641.155404307895,1549.0,0.0,2226.9452482333727,71,0,0,0,0,0,0,0,0,0,,1,,5,125294,2,1,2,0,1,,372.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1539.37229152086,376.0,20617.14511738668,0,5,0,1,160.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07513164364806794,20617.14511738668,5,3,5,5_1,5_3,5_0_0 +25274,2,43.0,0.0,6,111,2887.5,0.0,0.0,54,37,0.0,66.2163638505112,4923.766568986826,2938.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,4,125295,2,2,2,0,1,,460.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,483.410644387282,2887.5,100852.65406092111,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02913160816001203,42021.939192050464,9,5,9,9_1,9_4,9_0_0 +25275,2,57.0,0.0,9,111,480.0,,,0,42,0.0,0.0,,580.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,125296,2,1,0,0,2,,160.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,76.55273684534522,480.0,57975.51802675241,0,1,1,2,144.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010004222812331973,28987.759013376206,8,4,8,8_1,8_2,8_0_0 +25276,2,42.0,0.0,7,111,1220.0,0.0,0.0,37,37,0.0,0.0,2080.344662913915,1220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,5,125297,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,798.332274129323,1220.0,113509.92898865168,1,1,1,2,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010747958446189948,63061.07166036204,10,5,10,10_0,10_4,10_0_0 +25277,2,68.0,0.0,2,212,388.0,0.0,0.0,75,78,1054.6828510366015,0.0,661.6178108283598,1463.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125298,2,2,2,0,1,,208.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,740.37922257492,388.0,46646.11727921722,5,5,1,2,110.0,2,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03136381086645827,31097.411519478148,8,4,8,8_1,8_0,8_0_1 +25278,2,59.0,0.0,2,112,900.0,3400.0,0.0,34,37,0.0,0.0,1534.680489034855,4300.0,0.0,6454.913762995283,12,0,0,0,0,0,0,0,0,0,,1,,2,125299,2,2,2,0,1,,200.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,667.774439005429,900.0,253572.75047761484,1,1,0,1,150.0,8,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01695765807603842,169048.5003184099,10,5,10,10_1,10_0,10_0_1 +25279,2,46.0,0.0,9,120,800.0,0.0,0.0,78,65,0.0,132.4327277010224,1364.160434697649,1020.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,125300,2,1,1,0,1,,180.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,1549.07976880459,800.0,31878.364243799704,5,1,1,2,85.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03199662291952099,21252.242829199804,5,3,5,5_1,5_1,5_0_0 +25280,1,42.0,540.0,2,111,0.0,0.0,0.0,21,56,0.0,0.0,0.0,2700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,125301,1,3,0,0,2,,0.0,580.0,42,1.0,0.0,4.0,5.0,2.8,4,3,644.889173565977,0.0,22214.166466199844,7,1,2,3,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12154406081849653,7933.630880785659,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25281,1,49.0,83.0,6,111,960.0,0.0,0.0,56,63,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,45.0,2,,4,125302,2,1,0,1,1,912.0,0.0,382.0,43,2.0,0.0,3.0,4.0,2.1,2,2,194.510712380961,960.0,26365.432754854646,4,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03641131207388341,12554.967978502213,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +25282,2,35.0,0.0,6,211,1200.0,,,54,47,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,2,5.0,8,,4,125303,1,2,0,0,2,,175.0,700.0,43,2.0,0.0,3.0,3.0,1.8,2,2,51.433462995160575,1200.0,59711.070402516605,1,1,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020096775889474332,33172.816890287,8,4,8,8_0,8_2,8_0_0 +25283,2,58.0,0.0,7,111,576.0,,,0,65,0.0,0.0,,708.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,125304,2,3,0,0,2,,300.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,93.3026856592263,576.0,21438.48693959233,0,1,0,1,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033024718675107353,14292.324626394888,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +25284,1,47.0,215.0,2,112,250.0,0.0,0.0,62,46,0.0,0.0,426.3001358430153,250.0,0.0,0.0,10,2,1,2,2,1,2,2,2,0,,2,,2,125305,2,3,0,1,1,220.0,0.0,202.0,43,2.0,0.0,1.0,2.0,1.5,2,2,241.133702614432,250.0,41410.52996908028,4,4,2,3,20.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.00603711182123643,27607.019979386852,7,4,7,7_0,7_2,7_0_1 +25285,0,50.0,0.0,6,111,0.0,,,85,52,0.0,0.0,,42.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,4,125306,1,1,0,0,2,,0.0,,42,1.0,1.0,4.0,3.0,2.0,3,2,128.91502054184224,0.0,27801.08123475251,6,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001510732609474852,13900.540617376255,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +25286,0,63.0,0.0,2,111,0.0,,,0,77,0.0,33.1081819252556,,117.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,,2,125307,2,2,0,0,1,,120.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,95.19608418570286,0.0,13044.0,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008969641214351426,13044.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +25287,1,39.0,320.0,2,111,0.0,0.0,800.0,68,63,0.0,0.0,504.25463233179505,800.0,0.0,957.3857180517447,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,125308,2,1,0,0,1,,800.0,280.0,43,2.0,0.0,4.0,5.0,2.4,2,2,331.111435027644,0.0,21223.76537028757,1,1,2,3,80.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03769359423469543,8843.235570953155,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25288,2,69.0,0.0,2,111,170.0,0.0,0.0,0,75,0.0,0.0,289.8840923732504,170.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,2,125309,2,2,0,1,1,459.0,0.0,283.0,11,0.0,4.0,2.0,1.0,1.0,1,1,1277.58287694542,170.0,19180.220054068996,0,5,2,3,45.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.00886329768484253,19180.220054068996,5,3,5,5_0,5_3,5_0_1 +25289,2,35.0,0.0,1,112,320.0,0.0,0.0,48,47,0.0,0.0,545.6641738790596,3620.0,4572.444443808519,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,125310,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,853.492704472295,320.0,96083.98287584432,1,1,1,2,145.0,9,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03767537410140056,45754.27755992586,10,5,10,10_1,10_0,10_1_0 +25290,2,29.0,0.0,1,400,674.0,0.0,0.0,21,54,527.3414255183008,264.8654554020448,1149.3051662327691,1498.0,171.8130639491686,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,125311,2,2,1,0,1,,216.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1236.9540948255,674.0,47489.6917444569,1,1,1,2,85.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03154368758720886,31659.7944963046,8,4,8,8_1,8_0,8_1_0 +25291,2,49.0,0.0,7,111,1200.0,1000.0,0.0,85,48,0.0,0.0,2046.2406520464733,2200.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,125312,2,3,1,0,1,,0.0,300.0,42,1.0,0.0,2.0,4.0,2.1,2,2,343.621092702944,1200.0,35896.39097839221,6,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06128749827034944,17093.5195135201,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +25292,2,48.0,0.0,9,112,830.0,0.0,0.0,22,22,0.0,357.56836479276046,1415.3164509988108,1130.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,125313,2,1,1,0,1,,120.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,236.065716928179,830.0,54782.15275367449,1,1,1,2,120.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020627155801653044,23818.3272842063,6,3,6,6_1,6_0,6_0_0 +25293,2,55.0,0.0,9,111,286.0,0.0,0.0,0,64,0.0,0.0,487.6873554044095,346.0,83.13535352379125,0.0,70,2,2,1,2,1,2,2,2,2,40.0,1,2004.0,6,125314,2,2,1,0,1,,150.0,,32,1.0,3.0,5.0,2.0,1.5,2,1,358.256895163079,286.0,28970.86831315248,0,1,1,2,128.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.011943031746926257,19313.91220876832,5,3,5,5_1,5_3,5_0_0 +25294,2,47.0,0.0,1,300,299.6,0.0,0.0,69,11,0.0,0.0,510.8780827942696,360.0,83.13535352379125,0.0,50,2,2,2,2,1,2,2,2,0,,3,,1,125315,1,3,0,0,2,,218.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1208.45065334824,299.6,28737.86702139505,1,1,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.012527025743837692,19158.578014263367,5,3,5,5_0,5_0,5_1_0 +25295,2,35.0,0.0,1,111,600.0,900.0,0.0,55,43,0.0,0.0,1023.1203260232367,1500.0,0.0,1708.65364314581,44,2,2,1,2,1,2,2,2,2,20.0,1,,1,125316,2,1,2,0,1,,360.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,423.770944998423,600.0,49771.389431007345,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.030137796375551994,23700.66163381302,6,3,6,6_1,6_3,6_1_0 +25296,0,48.0,0.0,1,111,800.0,100.0,0.0,63,56,0.0,0.0,1364.160434697649,900.0,0.0,189.8504047939789,60,0,0,0,0,0,0,0,0,0,,2,,1,125317,1,2,0,0,2,,427.0,,43,3.0,1.0,3.0,4.0,2.5,4,3,822.329581949123,800.0,83328.59137980155,1,1,5,0,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010800614592150128,33331.43655192062,8,4,8,8_0,8_4,8_1_0 +25297,2,55.0,0.0,2,111,290.0,,,85,53,0.0,0.0,,530.0,332.541414095165,,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,125318,1,2,0,0,2,,240.0,,42,1.0,3.0,4.0,3.0,1.8,2,2,123.92455539768389,290.0,28043.679883556644,6,1,1,2,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01889908892843854,15579.82215753147,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +25298,2,58.0,0.0,1,300,0.0,0.0,0.0,71,69,0.0,132.4327277010224,0.0,280.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125319,2,1,4,0,1,,0.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,1192.51530299702,0.0,30857.03921864594,5,1,0,1,140.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.009074104550860627,15428.51960932297,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +25300,1,71.0,109.0,1,300,213.0,0.0,0.0,0,78,0.0,0.0,363.207715738249,333.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125321,1,2,4,0,1,,179.0,225.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1043.44024948949,213.0,9843.842756183745,0,5,2,3,75.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.03382825267000681,9843.842756183745,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +25302,2,35.0,0.0,8,120,1300.0,0.0,0.0,63,43,0.0,0.0,2216.7607063836795,1370.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,125323,2,1,1,0,1,,120.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,549.484696133852,1300.0,47944.37177937275,1,1,1,2,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02857478258979752,22830.653228272735,6,3,6,6_1,6_0,6_0_0 +25303,1,43.0,121.0,1,112,932.0,0.0,0.0,0,56,2109.365702073203,132.4327277010224,1589.246906422761,3107.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125324,2,1,1,0,1,,790.0,,32,1.0,1.0,6.0,3.0,1.8,2,1,670.208342181934,932.0,15565.312058528903,0,1,1,2,151.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.19961051781788988,8647.395588071613,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +25304,2,53.0,0.0,9,111,251.0,414.0,0.0,0,42,0.0,0.0,428.00533638638734,665.0,0.0,785.9806758470727,10,0,0,0,0,0,0,0,0,1,5.0,2,2004.0,6,125325,1,2,0,0,1,,0.0,454.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1264.42329374717,251.0,31356.168739584347,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02120794812411177,31356.168739584347,8,4,8,8_0,8_4,8_0_0 +25305,1,54.0,351.0,5,111,0.0,,,0,81,0.0,0.0,,120.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,3,125326,2,3,0,0,2,,0.0,421.0,32,1.0,0.0,3.0,3.0,2.0,3,2,79.11894908604435,0.0,9136.34188034188,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013134359634483119,4568.17094017094,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +25306,2,61.0,0.0,6,111,474.0,0.0,0.0,90,35,0.0,0.0,808.265057558357,474.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,125327,2,1,0,1,2,,0.0,955.0,42,1.0,0.0,6.0,2.0,1.5,2,2,606.997575476386,474.0,52933.00819564199,6,1,2,3,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008954714953060702,35288.67213042799,9,5,9,9_0,9_3,9_0_0 +25307,2,47.0,0.0,6,111,750.0,0.0,0.0,0,43,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,10.0,2,,4,125328,2,1,0,1,1,250.0,90.0,280.0,12,1.0,0.0,1.0,1.0,1.0,1,1,899.636707433443,750.0,20611.508635065897,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03638743836169478,20611.508635065897,5,3,5,5_0,5_4,5_0_0 +25308,2,64.0,0.0,7,111,1300.0,0.0,0.0,77,72,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,125329,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1589.81027755977,1300.0,52288.43966450484,5,5,0,1,94.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024862092048282786,34858.95977633656,9,5,9,9_0,9_3,9_0_0 +25309,2,47.0,0.0,1,111,740.0,570.0,0.0,0,34,0.0,0.0,1261.8484020953254,1310.0,0.0,1082.1473073256798,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,125330,2,1,0,0,1,,400.0,563.0,12,1.0,1.0,5.0,1.0,1.0,1,1,1682.83167660846,740.0,31195.847988314505,0,1,2,3,58.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04199276777123373,31195.847988314505,8,4,8,8_0,8_2,8_1_0 +25310,2,59.0,0.0,2,111,1200.0,0.0,0.0,68,64,2636.7071275915036,0.0,2046.2406520464733,3820.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125331,2,1,2,0,1,,480.0,,43,2.0,2.0,3.0,3.0,2.0,3,3,763.940471750631,1200.0,42917.149828335176,1,1,1,2,65.0,4,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08900870666574234,21458.574914167588,6,3,6,6_1,6_2,6_0_1 +25311,2,43.0,0.0,8,111,0.0,0.0,1800.0,54,63,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,50,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,125332,2,1,2,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1254.52242527272,0.0,53207.43838454234,1,1,1,2,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03382985640073457,25336.87542121064,7,4,7,7_1,7_3,7_0_0 +25312,0,87.0,0.0,2,120,385.0,0.0,0.0,0,78,3585.9216935244453,0.0,656.5022091982436,3785.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,125333,2,3,2,0,1,,140.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1191.64148848817,385.0,17595.402051819143,0,5,0,1,85.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.21511301582385148,17595.402051819143,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +25314,0,31.0,0.0,2,111,0.0,,,0,55,0.0,0.0,,434.0,0.0,,43,0,0,0,0,0,0,0,0,1,5.0,2,,2,125335,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,125.22347847858498,0.0,18601.300049784033,0,1,5,0,25.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023331702560490598,18601.300049784033,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +25315,1,37.0,359.0,2,111,100.0,300.0,0.0,85,68,0.0,0.0,170.52005433720612,1543.0,0.0,569.5512143819367,50,2,2,2,2,1,2,2,2,0,,2,,2,125336,1,2,0,1,1,337.0,0.0,361.0,42,1.0,0.0,4.0,5.0,2.4,2,2,185.131808527986,100.0,18849.192817387207,6,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.08186026929368978,7853.830340578003,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25316,2,61.0,0.0,2,111,1993.0,0.0,0.0,77,72,0.0,59.594727465460075,3398.464682940518,2038.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,125337,2,1,2,0,1,,462.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1554.59459035292,1993.0,38714.35145654163,5,5,0,1,128.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0526419770272462,25809.56763769442,7,4,7,7_1,7_3,7_0_1 +25317,1,62.0,187.0,2,111,240.0,132.0,0.0,67,78,0.0,0.0,409.2481304092947,372.0,0.0,250.60253432805214,71,0,0,0,0,0,0,0,0,0,,2,,2,125338,1,1,0,1,1,,296.0,400.0,42,1.0,4.0,4.0,2.0,1.5,2,2,247.041356945291,240.0,22585.10688041157,4,5,2,3,40.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.016471031196343005,15056.737920274381,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +25318,2,74.0,0.0,2,120,750.0,0.0,0.0,75,72,1687.4925616585624,0.0,1278.9004075290459,2350.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,125339,2,1,2,0,1,,212.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,100.710474103866,750.0,82148.3246185723,5,5,0,1,132.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028606791567709053,54765.54974571487,10,5,10,10_1,10_0,10_0_1 +25319,2,64.0,0.0,5,111,1400.0,0.0,0.0,0,74,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,3,125340,2,2,0,0,1,,0.0,,31,0.0,3.0,5.0,2.0,1.5,2,2,431.924893482524,1400.0,49813.04941304515,0,5,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.028105085243654345,33208.69960869676,8,4,8,8_0,8_4,8_0_0 +25320,2,33.0,0.0,1,300,650.0,0.0,0.0,42,48,2636.7071275915036,529.7309108040896,1108.3803531918397,3650.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,1,125341,2,1,2,0,1,,300.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1723.06480937594,650.0,52437.267000611835,1,1,1,2,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06960698390244885,29131.815000339906,8,4,8,8_1,8_0,8_1_0 +25321,2,79.0,0.0,2,120,700.0,1100.0,0.0,75,75,0.0,238.3789098618403,1193.6403803604428,1980.0,0.0,2088.354452733768,20,0,0,0,0,0,0,0,0,0,,1,,2,125342,2,1,2,0,1,,110.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,303.498037643307,700.0,57492.781417198225,5,5,0,1,220.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03443910611372349,38328.520944798816,9,5,9,9_1,9_0,9_0_1 +25322,1,46.0,220.0,2,111,1500.0,0.0,0.0,0,52,0.0,0.0,2557.8008150580918,3933.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,10.0,2,,2,125343,1,2,0,0,1,,0.0,558.0,32,1.0,1.0,5.0,6.0,3.1,4,3,233.174248886543,1500.0,26615.165819632806,0,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,1,0,1,0.14777289108974115,8585.537361171873,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25323,2,38.0,0.0,1,300,435.0,0.0,0.0,46,38,0.0,0.0,741.7622363668467,500.0,90.06329965077386,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,125344,2,1,1,0,1,,107.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,880.396633188689,435.0,56354.4369985786,1,1,0,1,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008872415849218957,26835.446189799335,7,4,7,7_1,7_0,7_1_0 +25324,2,36.0,0.0,1,111,0.0,0.0,0.0,63,64,0.0,0.0,0.0,3032.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,1,125345,1,3,4,0,2,,728.0,510.0,43,3.0,0.0,5.0,4.0,2.3,3,3,262.571646657302,0.0,7626.242178631022,4,1,2,3,140.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.3975745759157455,3315.75746897001,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +25325,2,53.0,0.0,7,111,540.0,,,12,68,0.0,0.0,,780.0,332.541414095165,,71,0,0,0,0,0,0,0,0,2,5.0,2,,5,125346,2,1,0,0,2,,426.0,320.0,43,2.0,3.0,4.0,2.0,1.5,2,2,122.44166320860583,540.0,21886.0,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0356392214200859,14590.666666666666,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +25326,2,37.0,0.0,9,111,520.0,,,46,46,0.0,0.0,,520.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,125347,2,1,0,0,1,,120.0,760.0,43,2.0,0.0,3.0,2.0,1.5,2,2,143.2297354647647,520.0,85261.39718944461,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006098891375713652,56840.93145962974,10,5,10,10_0,10_2,10_0_0 +25327,2,64.0,0.0,9,112,210.0,1200.0,0.0,0,77,0.0,0.0,358.0921141081328,1410.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,125348,2,1,1,0,1,,300.0,637.0,11,0.0,1.0,4.0,1.0,1.0,1,1,2134.61758762477,210.0,19546.515694924215,0,5,2,3,84.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07213561854229318,19546.515694924215,5,3,5,5_1,5_0,5_0_0 +25328,2,25.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,790.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,125349,2,3,0,0,2,,0.0,585.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1174.20936063346,0.0,22487.609085060598,0,4,2,3,18.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03513045771170169,22487.609085060598,6,3,6,6_0,6_4,6_1_0 +25329,2,80.0,0.0,2,212,220.0,0.0,0.0,0,78,0.0,0.0,375.14411954185346,220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125350,2,1,2,0,1,,142.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,989.569318236443,220.0,9941.16844324022,0,5,0,1,60.0,1,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022130195384587336,9941.16844324022,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +25330,2,32.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,578.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,3.0,2,,1,125351,1,1,0,1,2,182.0,0.0,550.0,12,1.0,0.0,1.0,1.0,1.0,1,1,978.50271588457,0.0,17512.852790192817,0,1,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03300433155720235,17512.852790192817,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +25332,2,53.0,0.0,5,111,313.0,1600.0,0.0,52,55,0.0,0.0,533.7277700754552,1913.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,125353,2,2,1,0,1,,376.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,2400.03811582018,313.0,54669.37691611628,1,1,0,1,98.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034992167606652504,27334.68845805814,7,4,7,7_1,7_3,7_0_0 +25333,2,50.0,0.0,1,120,700.0,0.0,0.0,63,56,105.46828510366015,1032.9752760679746,1193.6403803604428,1580.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,125354,2,1,1,0,1,,350.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,2006.09169724863,700.0,17508.163337246453,4,1,1,2,120.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09024361776650469,8754.081668623227,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +25334,2,50.0,0.0,9,111,600.0,,,0,52,0.0,0.0,,600.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,125355,2,2,0,0,2,,1080.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,108.37044242614186,600.0,35576.93801997175,0,1,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01686485778127334,35576.93801997175,9,5,9,9_1,9_2,9_0_0 +25335,2,35.0,0.0,7,112,358.0,,,81,68,0.0,0.0,,610.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,125356,1,2,0,0,2,,280.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,103.44298477913078,358.0,13624.154440154438,4,4,0,1,26.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04477342081517723,6487.692590549732,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +25336,1,31.0,357.0,5,111,0.0,,,0,54,0.0,0.0,,22.0,30.482962958723462,,44,0,0,0,0,0,0,0,0,2,15.0,2,,3,125357,2,2,0,0,1,,0.0,550.0,32,1.0,0.0,3.0,2.0,1.3,1,1,152.3802254355868,0.0,11594.857696767293,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0018973928421850072,8919.12130520561,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25337,1,46.0,270.0,9,111,573.0,0.0,0.0,0,85,0.0,0.0,977.0799113521911,573.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2008.0,6,125358,2,1,0,0,1,,168.0,303.0,11,0.0,0.0,2.0,1.0,1.0,1,1,300.243837628347,573.0,16045.130856067239,0,7,2,3,57.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035711768582013664,16045.130856067239,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +25338,1,81.0,24.0,2,111,390.0,817.0,0.0,0,74,0.0,0.0,665.0282119151038,1207.0,0.0,1551.0778071668076,10,0,0,0,0,0,0,0,0,0,,1,,2,125359,1,1,2,0,2,,310.0,640.0,21,0.0,0.0,4.0,3.0,2.0,3,3,1176.36032605598,390.0,41750.13967266172,0,5,2,3,100.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.02891008292339563,20875.06983633086,5,3,5,5_1,5_2,5_0_1 +25339,2,27.0,0.0,6,211,290.0,0.0,0.0,43,63,0.0,0.0,494.50815757789775,290.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,125360,1,1,0,0,1,,0.0,318.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2206.57030851428,290.0,23420.251711915906,4,1,2,3,33.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01238244590908696,15613.501141277271,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +25341,2,63.0,0.0,7,400,2000.0,0.0,0.0,37,75,0.0,794.5963662061343,3410.4010867441225,2690.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,125362,2,1,4,0,1,,300.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1185.99656551823,2000.0,70062.87502504753,1,5,0,1,170.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03839408529893076,46708.58335003169,10,5,10,10_1,10_0,10_0_0 +25342,2,49.0,0.0,5,111,0.0,,,0,55,0.0,0.0,,669.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,125363,2,1,0,0,2,,99.0,650.0,12,1.0,2.0,2.0,1.0,1.0,1,1,130.17734955878257,0.0,17616.897371972074,0,1,3,4,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03797490476753062,17616.897371972074,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +25343,2,65.0,0.0,6,112,1800.0,0.0,0.0,0,77,0.0,430.4063650283228,3069.36097806971,2165.0,55.423569015860835,0.0,50,2,2,2,2,1,1,2,2,0,,1,,4,125364,2,1,2,0,1,,290.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1411.56229392607,1800.0,17444.48881474019,0,5,0,1,150.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.12410796458366982,17444.48881474019,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +25344,2,83.0,0.0,2,111,760.0,,,0,77,0.0,0.0,,856.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,2,125365,2,2,0,0,2,,650.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,107.49900175150297,760.0,14286.902909233493,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0599150148522935,14286.902909233493,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +25345,2,67.0,0.0,8,111,410.0,750.0,0.0,75,74,0.0,0.0,699.1322227825451,1160.0,0.0,1423.8780359548418,44,0,0,0,0,0,0,0,0,0,,1,2001.0,6,125366,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1201.83306258864,410.0,52417.951157645155,5,5,0,1,100.0,6,4,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022129823359774984,34945.30077176344,9,5,9,9_1,9_2,9_0_0 +25346,2,63.0,0.0,1,111,511.0,1928.0,0.0,42,74,0.0,0.0,871.3574776631233,2439.0,0.0,3660.315804427913,41,0,0,0,0,0,0,0,0,0,,1,,1,125367,2,1,2,0,1,,588.0,,42,2.0,3.0,6.0,3.0,2.0,3,3,407.646997044506,511.0,85650.70210707435,1,5,0,1,204.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028476123837851763,42825.351053537175,9,5,9,9_1,9_3,9_1_0 +25347,2,72.0,0.0,2,111,600.0,1400.0,0.0,0,77,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,2,,2,125368,2,1,0,1,1,945.0,0.0,326.0,21,1.0,1.0,4.0,2.0,1.5,2,2,755.494403540972,600.0,22435.99421862653,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08914247260500652,14957.329479084352,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +25348,2,64.0,0.0,1,111,700.0,0.0,0.0,0,75,1898.4291318658827,0.0,1193.6403803604428,2560.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,125369,2,3,3,0,1,,150.0,700.0,11,0.0,3.0,7.0,1.0,1.0,1,1,363.853112377554,700.0,26301.0,0,5,2,3,180.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09733470210258165,26301.0,7,4,7,7_1,7_2,7_1_0 +25349,2,33.0,0.0,1,112,700.0,2300.0,0.0,56,63,0.0,0.0,1193.6403803604428,3180.0,249.40606057137379,4366.559310261515,50,0,0,0,0,0,0,0,0,0,,1,,1,125370,1,2,1,0,2,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,591.911194650024,700.0,40344.461542970595,1,1,1,2,85.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07882122795499463,19211.64835379552,5,3,5,5_1,5_0,5_1_0 +25350,1,26.0,175.0,5,111,0.0,0.0,0.0,46,43,0.0,0.0,0.0,238.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,30.0,2,,3,125371,2,1,0,1,1,433.0,0.0,380.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1431.65305867634,0.0,18811.0,4,1,2,3,47.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.012652171601722396,12540.666666666666,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +25351,0,78.0,0.0,7,112,430.0,0.0,0.0,0,75,3164.0485531098047,0.0,733.2362336499863,3430.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,125372,2,1,2,0,1,,350.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,969.951938055235,430.0,28028.022112350423,0,5,0,1,100.0,10,3,1,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12237752582935868,28028.022112350423,7,4,7,7_1,7_1,7_0_0 +25352,2,46.0,0.0,2,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,668.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,125373,1,3,0,1,2,576.0,0.0,294.0,12,1.0,3.0,4.0,1.0,1.0,1,1,359.756773255703,0.0,4716.242687188851,0,4,2,3,60.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.14163817350081406,4716.242687188851,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +25353,2,83.0,0.0,5,111,2165.0,0.0,0.0,0,77,0.0,39.72981831030672,3691.7591764005124,2230.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,125374,2,1,2,0,1,,520.0,,21,1.0,0.0,6.0,2.0,1.5,2,2,1398.53279807482,2165.0,51857.47652731326,0,5,0,1,122.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043002478125318384,34571.65101820884,9,5,9,9_1,9_3,9_0_0 +25354,2,50.0,0.0,1,111,300.0,2000.0,0.0,0,38,0.0,0.0,511.56016301161833,2300.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,125375,2,2,1,0,1,,240.0,,32,1.0,0.0,6.0,3.0,1.8,2,2,858.085267809584,300.0,106849.98665004391,0,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021525505731067443,59361.10369446884,10,5,10,10_1,10_4,10_1_0 +25355,2,76.0,0.0,2,111,540.0,,,0,77,0.0,0.0,,701.0,223.07986528883987,,71,0,0,0,0,0,0,0,0,0,,1,,2,125376,2,1,0,0,2,,358.0,,21,1.0,5.0,4.0,3.0,1.8,2,2,106.42932043701002,540.0,20926.46174998768,0,5,0,1,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03349825729619164,11625.81208332649,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +25356,2,43.0,0.0,1,112,627.0,1117.0,0.0,43,38,0.0,0.0,1069.1607406942824,1744.0,0.0,2120.6290215487443,31,0,0,0,0,0,0,0,0,0,,1,,1,125377,2,2,1,0,1,,370.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,2888.99826143519,627.0,69875.06363860446,1,1,1,2,115.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024958832367151903,33273.839827906886,8,4,8,8_1,8_1,8_1_0 +25357,2,33.0,0.0,2,111,270.0,336.0,0.0,55,63,0.0,0.0,460.40414671045653,606.0,0.0,637.8973601077691,71,1,2,2,2,1,2,2,2,3,60.0,2,,2,125378,2,3,0,1,1,448.0,0.0,680.0,43,2.0,0.0,1.0,4.0,2.1,2,2,922.218965049601,270.0,24540.67241047678,4,1,2,3,27.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024693699906172477,11686.03448117942,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +25358,2,59.0,0.0,2,111,240.0,0.0,0.0,0,52,0.0,0.0,409.2481304092947,240.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,2,,2,125379,2,1,0,1,1,541.0,130.0,340.0,32,2.0,0.0,4.0,2.0,1.5,2,2,1194.25866287749,240.0,47165.393752553144,0,1,2,3,73.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005088476548274515,31443.59583503543,8,4,8,8_0,8_3,8_0_1 +25359,1,24.0,332.0,6,112,430.0,391.0,0.0,0,55,0.0,0.0,733.2362336499863,821.0,0.0,742.3150827444575,50,0,0,0,0,0,0,0,0,0,,2,,4,125380,1,1,0,1,1,,131.0,106.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1841.25456452934,430.0,12639.716560838619,0,4,2,3,61.0,9,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06495398817277975,9722.858892952783,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +25360,2,79.0,0.0,1,221,360.0,0.0,0.0,72,72,2109.365702073203,0.0,613.872195613942,2420.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125381,2,1,1,0,1,,305.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2512.17764901119,360.0,25626.80895164408,5,5,0,1,120.0,1,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09443235810460691,17084.539301096054,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +25361,2,32.0,0.0,7,111,491.0,0.0,0.0,0,68,0.0,0.0,837.253466795682,491.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,1.0,2,,5,125382,2,1,0,0,1,,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1047.03322830284,491.0,25783.166132161103,0,1,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019043433125443123,25783.166132161103,7,4,7,7_0,7_4,7_0_0 +25362,2,46.0,0.0,7,112,500.0,800.0,0.0,55,64,0.0,662.163638505112,852.6002716860306,1800.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,5,125383,2,1,2,0,1,,404.0,,43,3.0,0.0,6.0,5.0,2.8,4,2,1915.22782531976,500.0,41511.98621977482,1,1,1,2,90.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04336097026218766,14825.709364205295,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +25363,0,62.0,0.0,8,111,1800.0,,,47,77,0.0,0.0,,1932.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125384,2,3,0,0,2,,540.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,96.01646238496214,1800.0,33911.606980130724,4,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056971643989976214,22607.737986753815,6,3,6,6_1,6_2,6_0_0 +25364,2,41.0,0.0,1,111,720.0,0.0,0.0,0,21,0.0,0.0,1227.744391227884,2141.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,,1,125385,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,858.25472067172,720.0,30944.151163621016,0,1,1,2,54.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06918916562549085,30944.151163621016,8,4,8,8_0,8_4,8_1_0 +25365,2,35.0,0.0,9,300,1300.0,0.0,0.0,69,13,0.0,0.0,2216.7607063836795,1400.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,125386,2,1,1,0,1,,750.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,678.663763048897,1300.0,60479.199278967484,1,1,1,2,180.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02314845462060987,28799.61870427023,8,4,8,8_1,8_0,8_0_0 +25366,2,61.0,0.0,1,111,300.0,760.0,0.0,0,75,0.0,0.0,511.56016301161833,1060.0,0.0,1442.8630764342397,50,0,0,0,0,0,0,0,0,0,,2,,1,125387,2,1,0,0,2,,0.0,340.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1741.12761478638,300.0,16507.23371353462,0,5,2,3,65.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06421427226361279,16507.23371353462,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +25367,2,44.0,0.0,2,111,480.0,,,85,33,0.0,0.0,,605.0,173.19865317456512,,20,0,0,0,0,0,0,0,0,0,,1,,2,125388,2,1,0,0,2,,350.0,,42,1.0,0.0,5.0,5.0,2.8,4,2,132.93274940557836,480.0,76501.73567490396,6,1,1,2,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007908317303687887,27322.048455322845,7,4,7,7_1,7_2,7_0_1 +25368,1,27.0,322.0,2,111,130.0,80.0,0.0,0,81,0.0,0.0,221.67607063836795,210.0,0.0,151.8803238351831,60,0,0,0,0,0,0,0,0,0,,2,,2,125389,2,2,0,1,1,536.0,250.0,299.0,32,1.0,1.0,3.0,2.0,1.3,1,1,257.829254369518,130.0,9489.226489860765,0,4,2,3,50.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02213036017470812,7299.404992200588,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25369,2,45.0,0.0,2,111,314.0,0.0,0.0,0,52,0.0,0.0,535.4329706188272,633.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,10.0,2,,2,125390,2,2,0,1,1,420.0,0.0,386.0,32,1.0,0.0,3.0,2.0,1.5,2,1,472.27459207912,314.0,23651.315843979875,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02676383860313301,15767.543895986584,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +25370,0,41.0,0.0,1,111,246.0,693.0,0.0,0,67,0.0,0.0,419.479333669527,939.0,0.0,1315.6633052222737,71,0,0,0,0,0,0,0,0,0,,1,,1,125391,2,1,1,0,1,,230.0,,22,1.0,6.0,5.0,2.0,1.5,2,2,231.522778064261,246.0,57624.125685598156,0,1,5,0,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016295258085532772,38416.08379039877,9,5,9,9_1,9_3,9_1_0 +25371,1,40.0,250.0,2,111,2600.0,0.0,0.0,0,43,0.0,0.0,4433.521412767359,2600.0,0.0,0.0,60,2,2,2,2,1,2,2,2,3,20.0,1,,2,125392,2,2,2,0,1,,300.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,443.718805481668,2600.0,20023.707350904933,0,1,1,2,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.12984608466536032,11124.281861613852,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +25372,2,43.0,0.0,8,111,780.0,,,0,21,0.0,0.0,,860.0,110.84713803172167,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125393,2,2,0,0,2,,550.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,88.06817101260756,780.0,4883.063889603813,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1761189325888128,4883.063889603813,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +25373,2,81.0,0.0,6,211,780.0,,,78,56,0.0,0.0,,780.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,125394,2,1,0,0,2,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,81.255346956633,780.0,32735.763641574056,5,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023827151507454333,21823.842427716037,6,3,6,6_1,6_2,6_0_0 +25374,2,72.0,0.0,2,111,313.0,180.0,0.0,0,77,0.0,0.0,533.7277700754552,493.0,0.0,341.730728629162,41,0,0,0,0,0,0,0,0,0,,2,,2,125395,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1045.21511512505,313.0,26954.875471974614,0,5,0,1,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01828982665909844,26954.875471974614,7,4,7,7_0,7_4,7_0_1 +25375,2,83.0,0.0,2,111,900.0,0.0,0.0,0,75,210.9365702073203,0.0,1534.680489034855,1220.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,125396,2,1,1,0,1,,250.0,,21,0.0,2.0,6.0,2.0,1.5,2,2,221.004370247971,900.0,24755.516681684923,0,5,0,1,90.0,8,7,5,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.049281944533300835,16503.677787789948,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +25376,2,44.0,0.0,5,111,0.0,,,0,21,0.0,0.0,,829.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,125397,2,2,0,0,2,,0.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,134.10195445743446,0.0,4871.424093093178,0,4,3,4,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17017610952316306,4871.424093093178,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +25377,1,51.0,250.0,1,400,1320.0,0.0,0.0,0,56,0.0,0.0,2250.864717251121,1350.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125398,2,1,1,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1051.01015445833,1320.0,12280.837023627453,0,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.1099273606027583,12280.837023627453,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +25378,2,71.0,0.0,2,111,689.0,1494.0,0.0,78,78,0.0,0.0,1174.8831743833503,2183.0,0.0,2836.3650476220446,71,0,0,0,0,0,0,0,0,0,,1,,2,125399,2,3,3,0,1,,305.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,128.580738246105,689.0,29537.285366541797,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07390658866954583,19691.52357769453,5,3,5,5_1,5_3,5_0_1 +25379,1,59.0,251.0,2,111,558.0,413.0,0.0,0,77,0.0,0.0,951.5019032016102,971.0,0.0,784.0821717991329,70,0,0,0,0,0,0,0,0,0,,2,,2,125400,2,2,0,0,1,,179.0,485.0,21,1.0,1.0,5.0,2.0,1.5,2,2,1830.84354940227,558.0,14333.315931499641,0,7,2,3,79.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0677442682935691,9555.543954333094,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25380,2,48.0,0.0,1,111,150.0,150.0,0.0,0,34,0.0,0.0,255.78008150580916,300.0,0.0,284.77560719096834,20,2,2,2,2,1,2,2,2,2,30.0,2,,1,125401,2,2,0,0,1,,365.0,896.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1003.22968124085,150.0,41761.32352107422,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.0071836803699147495,41761.32352107422,9,5,9,9_0,9_4,9_1_0 +25381,2,75.0,0.0,8,111,552.0,,,74,77,0.0,0.0,,726.0,241.09252521899464,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,125402,2,1,0,0,2,,400.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,87.5800333471359,552.0,44187.70435263406,5,5,0,1,102.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016429909872806566,29458.469568422704,8,4,8,8_1,8_2,8_0_0 +25382,2,65.0,0.0,1,111,300.0,700.0,0.0,0,72,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,70,2,2,2,2,1,2,2,2,0,,1,,1,125403,2,1,1,0,1,,190.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,563.262072716342,300.0,25175.312665691534,0,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03972145304724585,25175.312665691534,7,4,7,7_1,7_2,7_1_0 +25383,1,46.0,369.0,9,111,380.0,,,85,69,0.0,317.83854648245375,,914.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,1,5.0,1,2010.0,6,125404,1,2,0,0,2,,410.0,,42,2.0,2.0,4.0,5.0,2.8,4,3,193.00573008583893,380.0,33267.27871063277,6,1,1,2,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027474444421805702,11881.170968083132,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +25384,1,40.0,340.0,2,111,960.0,,,43,47,0.0,0.0,,1090.0,180.1265993015477,,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,125405,2,2,0,0,2,,455.0,620.0,43,3.0,0.0,5.0,5.0,2.8,4,3,91.63852141976899,960.0,53498.71387645461,1,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020374321568125048,19106.68352730522,5,3,5,5_0,5_3,5_0_1 +25385,2,59.0,0.0,6,111,800.0,0.0,0.0,62,77,0.0,569.4607291143963,1364.160434697649,1270.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,125406,2,1,2,0,1,,340.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1721.50168505714,800.0,40128.710709027924,1,5,0,1,93.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03164816356071671,26752.473806018617,7,4,7,7_1,7_2,7_0_0 +25386,2,64.0,0.0,5,111,660.0,0.0,0.0,0,75,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,125407,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2182.64282917279,660.0,77190.2294620362,0,5,0,1,96.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.00855030493625624,77190.2294620362,10,5,10,10_0,10_3,10_0_0 +25387,2,48.0,0.0,7,111,500.0,,,0,63,0.0,0.0,,742.0,335.31259254595807,,71,0,0,0,0,0,0,0,0,0,,1,,5,125408,2,2,0,0,2,,950.0,,32,1.0,2.0,4.0,3.0,1.8,2,1,110.15727446362997,500.0,13936.314703137166,0,4,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05324219607590882,7742.397057298425,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +25388,2,69.0,0.0,1,111,500.0,1500.0,0.0,0,77,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,125409,2,2,4,0,1,,240.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,499.681177331216,500.0,23235.04901806367,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0860768573565365,23235.04901806367,6,3,6,6_1,6_4,6_1_0 +25389,2,56.0,0.0,2,111,360.0,500.0,0.0,85,53,0.0,0.0,613.872195613942,860.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,125410,2,2,0,0,1,,0.0,350.0,42,1.0,3.0,4.0,3.0,2.0,3,3,371.239272321519,360.0,26146.878723243324,6,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.032891115192097524,13073.439361621662,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +25390,2,72.0,0.0,2,111,0.0,0.0,1200.0,0,74,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,10,0,0,0,0,0,0,0,0,0,,2,,2,125411,2,2,0,0,1,,175.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,560.608946726049,0.0,36745.620799150165,0,5,0,1,72.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03265695268993123,36745.620799150165,9,5,9,9_0,9_2,9_0_1 +25391,2,84.0,0.0,5,111,175.0,866.0,0.0,0,78,0.0,0.0,298.4100950901107,1041.0,0.0,1644.1045055158572,71,0,0,0,0,0,0,0,0,0,,2,,3,125412,1,2,0,0,1,,310.0,325.0,11,0.0,3.0,3.0,1.0,1.0,1,1,385.7695468053,175.0,19525.117853561496,0,5,2,3,55.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05331593938676869,19525.117853561496,5,3,5,5_0,5_2,5_0_0 +25392,2,51.0,0.0,8,111,700.0,0.0,0.0,0,56,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,125413,2,2,0,0,2,,150.0,392.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2262.48232749094,700.0,20318.70410104174,0,1,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034451015995853346,20318.70410104174,5,3,5,5_0,5_3,5_0_0 +25393,2,64.0,0.0,1,112,1020.0,0.0,0.0,74,34,3164.0485531098047,132.4327277010224,1739.3045542395023,4120.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,1.0,1,,1,125414,2,2,2,0,1,,650.0,,42,1.0,3.0,11.0,2.0,1.5,2,2,770.890924057477,1020.0,142538.3787284638,5,1,0,1,144.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028904496015410817,95025.58581897587,10,5,10,10_1,10_0,10_1_0 +25394,2,51.0,0.0,2,111,258.0,,,0,68,0.0,0.0,,384.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,1,30.0,2,,2,125415,2,1,0,0,2,,140.0,131.0,12,1.0,0.0,2.0,1.0,1.0,1,1,152.8755510364635,258.0,26651.060325622013,0,1,2,3,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01440843235909931,26651.060325622013,7,4,7,7_0,7_3,7_0_1 +25395,1,30.0,300.0,2,111,800.0,,,0,85,0.0,0.0,,1064.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,2,,2,125416,2,1,0,0,1,,883.0,280.0,31,0.0,0.0,3.0,5.0,2.4,2,1,125.17646757192625,800.0,24622.171464562016,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04321308547182301,10259.238110234173,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +25397,2,49.0,0.0,7,111,1200.0,,,85,63,0.0,0.0,,1200.0,0.0,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,125418,2,3,0,0,2,,700.0,750.0,42,1.0,0.0,3.0,4.0,2.1,2,2,98.46489329991248,1200.0,19957.74869114945,6,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060127022269408435,9503.689852928308,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25398,1,43.0,190.0,2,111,300.0,80.0,0.0,0,67,0.0,0.0,511.56016301161833,380.0,0.0,151.8803238351831,31,0,0,0,0,0,0,0,0,3,35.0,2,,2,125419,2,1,0,1,1,300.0,132.0,178.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1745.32382077562,300.0,15720.746608356054,0,1,2,3,30.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024171879966439918,15720.746608356054,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +25399,2,54.0,0.0,2,111,500.0,300.0,0.0,68,63,0.0,0.0,852.6002716860306,800.0,0.0,569.5512143819367,71,2,2,2,2,1,2,2,2,2,10.0,2,,2,125420,2,1,0,1,1,,200.0,490.0,43,2.0,0.0,4.0,4.0,2.5,4,2,1851.86322705601,500.0,38483.27132251579,1,1,2,3,80.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.0207882535061913,15393.308529006317,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +25400,1,44.0,233.0,2,221,0.0,0.0,0.0,85,64,0.0,0.0,0.0,836.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,125421,2,1,0,1,1,515.0,0.0,330.0,42,1.0,0.0,3.0,2.0,1.5,2,2,558.278650143544,0.0,6135.492214269034,6,4,2,3,70.0,1,1,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13625638674200466,4090.3281428460227,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +25401,1,40.0,200.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,277.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,125422,2,2,0,1,1,170.0,0.0,650.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1149.61289189609,0.0,8188.582566469422,0,4,3,4,13.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.033827588322093566,8188.582566469422,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +25402,2,49.0,0.0,2,111,1200.0,400.0,0.0,55,48,0.0,529.7309108040896,2046.2406520464733,2000.0,0.0,759.4016191759156,42,0,0,0,0,0,0,0,0,2,35.0,1,,2,125423,2,3,2,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,741.635273290609,1200.0,45957.69403856491,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043518284410042886,16413.462156630325,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +25403,2,57.0,0.0,6,112,800.0,0.0,0.0,62,75,0.0,1059.4618216081792,1364.160434697649,1800.0,277.1178450793042,0.0,43,0,0,0,0,0,0,0,0,0,,1,,4,125424,2,1,1,0,2,,350.0,,42,1.0,0.0,7.0,4.0,2.5,4,4,807.079789288929,800.0,43675.55358398549,1,5,0,1,144.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041212986494577726,17470.221433594197,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +25405,2,53.0,0.0,2,111,492.0,0.0,0.0,85,48,0.0,0.0,838.958667339054,492.0,0.0,0.0,71,2,1,2,1,1,2,2,2,2,30.0,2,,2,125426,1,1,0,1,1,836.0,0.0,399.0,42,1.0,0.0,3.0,3.0,1.8,2,2,204.91591177604,492.0,34089.820126095874,6,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014432461015638281,18938.78895894215,5,3,5,5_0,5_4,5_0_1 +25407,2,27.0,0.0,8,111,0.0,0.0,1920.0,0,62,0.0,0.0,1210.211117596308,1920.0,0.0,2297.725723324187,60,2,2,2,2,1,2,2,2,2,30.0,2,2003.0,6,125428,2,2,0,0,1,,0.0,673.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1490.48470373627,0.0,60699.68287957452,0,1,2,3,55.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.03163113724678257,60699.68287957452,10,5,10,10_0,10_2,10_0_0 +25408,1,41.0,384.0,5,111,350.0,245.0,0.0,52,85,0.0,0.0,596.8201901802214,595.0,0.0,465.1334917452483,33,2,1,2,2,2,2,2,1,0,,2,,3,125429,2,2,0,1,1,1086.0,0.0,328.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,3,2,307.049498490823,350.0,25971.420033911254,4,7,2,3,73.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.022909798510173877,8955.662080659054,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +25409,2,64.0,0.0,2,111,340.0,1800.0,0.0,0,33,0.0,0.0,579.7681847465008,2140.0,0.0,3417.30728629162,20,0,0,0,0,0,0,0,0,2,60.0,2,,2,125430,1,2,0,1,2,,0.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1008.63651575937,340.0,50975.96602301955,0,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04198056784316017,50975.96602301955,10,5,10,10_0,10_4,10_0_1 +25410,1,46.0,370.0,2,111,700.0,780.0,0.0,56,38,0.0,0.0,1193.6403803604428,1480.0,0.0,1480.8331573930354,12,0,0,0,0,0,0,0,0,3,50.0,2,,2,125431,2,2,0,1,1,43.0,0.0,543.0,43,2.0,0.0,4.0,3.0,1.8,2,2,243.807484193997,700.0,11887.65297351315,4,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12449892365613165,6604.251651951749,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25411,2,82.0,0.0,2,111,150.0,0.0,0.0,0,77,0.0,0.0,255.78008150580916,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125432,2,2,0,1,1,310.0,0.0,256.0,11,0.0,3.0,3.0,1.0,1.0,1,1,278.102734676,150.0,22598.526658089297,0,5,2,3,65.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.006637600860864373,22598.526658089297,6,3,6,6_0,6_2,6_0_1 +25412,2,60.0,0.0,5,111,1500.0,0.0,0.0,56,77,0.0,0.0,2557.8008150580918,1600.0,138.5589225396521,0.0,71,2,2,2,2,2,2,2,1,0,,1,,3,125433,1,2,2,0,1,,800.0,345.0,42,1.0,2.0,4.0,2.0,1.5,2,2,219.032284663066,1500.0,22597.143820541485,1,5,2,3,122.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.07080540853776182,15064.762547027656,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +25413,2,42.0,0.0,8,111,450.0,,,0,38,0.0,0.0,,450.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,125434,2,1,0,0,2,,80.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,144.72579257080466,450.0,74434.53554218127,0,1,1,2,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0060455808143652584,74434.53554218127,10,5,10,10_0,10_2,10_0_0 +25414,2,60.0,0.0,9,111,0.0,0.0,1129.0,0,62,0.0,0.0,711.6293498782458,1129.0,0.0,1351.1105946005246,60,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,125435,2,2,5,0,1,,165.0,313.0,12,1.0,6.0,3.0,1.0,1.0,1,1,1112.52720769881,0.0,25040.461232883506,0,1,2,3,70.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0450870289288993,25040.461232883506,7,4,7,7_1,7_2,7_0_0 +25416,2,58.0,0.0,9,120,750.0,0.0,0.0,77,62,0.0,0.0,1278.9004075290459,890.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,125437,2,1,1,0,1,,380.0,,42,2.0,2.0,3.0,3.0,2.0,3,3,554.341805011077,750.0,28927.363698169436,6,1,1,2,113.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03076671656934712,14463.681849084718,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +25417,2,68.0,0.0,6,111,1210.0,0.0,0.0,78,75,0.0,0.0,2063.292657480194,1270.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,125438,2,2,1,0,1,,311.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1200.3658217813,1210.0,28371.569374303384,7,5,0,1,110.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04476312125159564,18914.37958286892,5,3,5,5_1,5_2,5_0_0 +25418,2,65.0,0.0,2,111,570.0,110.0,0.0,0,77,0.0,0.0,971.9643097220749,680.0,0.0,208.8354452733768,70,2,1,2,1,2,2,2,2,0,,2,,2,125439,1,1,0,1,1,1018.0,0.0,342.0,21,0.0,4.0,4.0,2.0,1.5,2,2,357.319558429171,570.0,33146.88101018499,0,5,2,3,77.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020514750687736127,22097.920673456658,6,3,6,6_0,6_2,6_0_1 +25419,2,66.0,0.0,2,112,1700.0,0.0,0.0,77,77,0.0,0.0,2898.840923732504,1800.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,125440,2,1,1,0,1,,166.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,538.537572167761,1700.0,35005.99381128084,5,5,0,1,94.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05141976570366478,23337.329207520557,6,3,6,6_1,6_1,6_0_1 +25420,2,38.0,0.0,1,111,360.0,700.0,0.0,42,42,0.0,26.486545540204478,613.872195613942,1080.0,0.0,1328.9528335578523,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,125441,2,1,2,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,392.989198442119,360.0,58021.018451843614,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01861394420189953,27629.056405639814,7,4,7,7_1,7_3,7_1_0 +25421,2,56.0,0.0,6,111,124.0,,,78,75,0.0,0.0,,124.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,125442,2,1,0,0,2,,500.0,,41,1.0,2.0,5.0,4.0,2.3,3,3,94.9962672449265,124.0,96824.50481997983,6,5,0,1,161.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.001280667535873754,42097.610791295585,9,5,9,9_1,9_3,9_0_0 +25422,2,53.0,0.0,1,111,1294.0,0.0,0.0,0,90,0.0,0.0,2206.5295031234473,1294.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,10.0,2,,1,125443,2,1,0,0,1,,130.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,1819.67712335366,1294.0,49596.110708609725,0,1,0,1,115.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.026090755535299784,49596.110708609725,10,5,10,10_0,10_3,10_1_0 +25423,2,25.0,0.0,7,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1053.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,5,125444,2,1,0,0,1,,0.0,421.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2423.86917442406,0.0,17831.0,0,2,3,4,22.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05905445572317873,17831.0,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +25424,2,38.0,0.0,5,111,839.0,0.0,0.0,0,46,0.0,0.0,1430.6632558891592,839.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,3,125445,2,2,0,1,2,,0.0,,32,3.0,0.0,4.0,5.0,3.0,5,4,191.741497199954,839.0,29911.204234422923,0,1,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028049689789301353,9970.401411474308,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +25426,2,57.0,0.0,1,111,420.0,,,0,43,0.0,0.0,,670.0,346.39730634913025,,70,0,0,0,0,0,0,0,0,0,,1,,1,125447,1,3,0,0,2,,520.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,184.56471700762162,420.0,15130.409498379648,0,4,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04428168319381917,10086.939665586431,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +25427,2,58.0,0.0,6,112,630.0,0.0,0.0,63,53,0.0,264.8654554020448,1074.2763423243985,950.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,125448,2,1,1,0,1,,159.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1319.72300943247,630.0,49658.545492112295,1,1,0,1,88.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019130644898789816,33105.69699474153,8,4,8,8_1,8_0,8_0_0 +25428,2,45.0,0.0,2,111,860.0,0.0,0.0,0,37,0.0,0.0,1466.4724672999725,860.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,2,125449,2,1,2,0,1,,200.0,780.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1804.34105208074,860.0,99560.84451510335,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008637933960770474,99560.84451510335,10,5,10,10_1,10_4,10_0_1 +25429,2,45.0,0.0,1,112,500.0,0.0,0.0,0,46,527.3414255183008,0.0,852.6002716860306,1050.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,125450,2,3,1,0,1,,80.0,,32,1.0,0.0,9.0,3.0,1.8,2,1,1486.86947963548,500.0,64974.49821350625,0,1,0,1,120.0,7,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016160186363420603,36096.94345194792,9,5,9,9_1,9_0,9_1_0 +25430,2,63.0,0.0,7,111,880.0,2000.0,0.0,75,74,0.0,0.0,1500.5764781674138,2880.0,0.0,3797.008095879578,41,0,0,0,0,0,0,0,0,0,,1,,5,125451,2,1,2,0,1,,510.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,660.288534085707,880.0,84958.10573455863,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03389906089712279,56638.73715637242,10,5,10,10_1,10_4,10_0_0 +25431,2,72.0,0.0,5,111,468.0,,,0,86,0.0,0.0,,732.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,3,125452,1,1,0,0,2,,420.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,117.88013891469765,468.0,15341.745432903079,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047712954383280076,10227.830288602052,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25432,2,55.0,0.0,2,112,360.0,270.0,0.0,0,52,0.0,0.0,613.872195613942,630.0,0.0,512.596092943743,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,125453,2,2,0,1,1,837.0,420.0,355.0,32,3.0,0.0,4.0,3.0,2.0,3,3,265.699833557909,360.0,30342.922097521092,0,1,2,3,73.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020762667417963305,15171.461048760546,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +25433,2,54.0,0.0,1,111,0.0,0.0,0.0,56,75,0.0,0.0,0.0,3370.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,125454,2,2,4,0,2,,0.0,812.0,42,1.0,1.0,3.0,2.0,1.5,2,2,2053.29167990844,0.0,43881.702354305904,4,5,2,3,69.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0767973852242612,29254.468236203935,8,4,8,8_1,8_3,8_1_0 +25434,2,57.0,0.0,5,111,900.0,0.0,0.0,85,21,0.0,1324.327277010224,1534.680489034855,2020.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,2,3.0,1,,3,125455,2,1,2,0,1,,380.0,,42,3.0,3.0,6.0,5.0,3.0,5,4,635.877254432322,900.0,13766.527419541564,6,1,1,2,177.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14673271903941534,4588.842473180522,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25435,2,34.0,0.0,1,112,1000.0,1675.0,0.0,52,65,0.0,0.0,1705.2005433720612,2705.0,41.567676761895626,3179.994280299147,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,125456,2,2,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,576.586051192881,1000.0,43013.559794780434,1,1,1,2,90.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06288714565605992,20482.647521324016,5,3,5,5_1,5_0,5_1_0 +25436,2,77.0,0.0,5,111,120.0,103.0,0.0,0,75,0.0,0.0,204.62406520464734,223.0,0.0,195.54591693779827,60,0,0,0,0,0,0,0,0,0,,2,,3,125457,2,1,0,1,1,264.0,0.0,494.0,11,0.0,2.0,1.0,1.0,1.0,1,1,2345.64457069953,120.0,16562.62273864099,0,5,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013464051166228386,16562.62273864099,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +25437,2,69.0,0.0,2,111,255.0,0.0,0.0,0,78,0.0,0.0,434.8261385598756,265.0,13.855892253965209,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125458,2,1,0,1,1,574.0,0.0,314.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1430.58743715498,255.0,23197.89526916902,0,5,2,3,62.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011423450141711613,23197.89526916902,6,3,6,6_0,6_3,6_0_1 +25438,2,69.0,0.0,7,111,978.0,0.0,0.0,0,75,0.0,0.0,1667.686131417876,978.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,125459,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,915.081166481533,978.0,48917.05670961034,0,5,0,1,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01999302627314166,48917.05670961034,10,5,10,10_0,10_4,10_0_0 +25439,2,31.0,0.0,9,111,1150.0,0.0,0.0,47,54,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,20,0,0,0,0,0,0,0,0,4,30.0,2,2006.0,6,125460,2,1,0,0,1,,200.0,558.0,43,2.0,0.0,3.0,4.0,2.1,2,2,548.143177664159,1150.0,37271.542083333814,1,1,2,3,66.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03085463964514173,17748.3533730161,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +25440,2,82.0,0.0,1,111,717.0,0.0,0.0,0,74,0.0,0.0,1222.6287895977678,717.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,125461,2,1,0,0,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,462.720592006801,717.0,26532.863473732516,0,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02702309159770217,26532.863473732516,7,4,7,7_0,7_4,7_1_0 +25441,2,71.0,0.0,6,111,929.0,0.0,0.0,74,74,0.0,0.0,1584.1313047926449,929.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,125462,2,1,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1744.98363587217,929.0,77804.94833928742,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01194011460490751,51869.96555952495,10,5,10,10_0,10_3,10_0_0 +25442,2,51.0,0.0,5,111,270.0,500.0,0.0,0,35,0.0,0.0,460.40414671045653,770.0,0.0,949.2520239698945,20,0,0,0,0,0,0,0,0,3,70.0,2,,3,125463,2,1,0,0,1,,0.0,303.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1389.6990059638,270.0,19044.118788679294,0,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04043243000866618,19044.118788679294,5,3,5,5_0,5_4,5_0_0 +25443,2,62.0,0.0,7,211,360.0,,,55,62,0.0,0.0,,498.0,191.2113131047199,,70,0,0,0,0,0,0,0,0,0,,1,,5,125464,2,1,0,0,2,,240.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,88.0154342563898,360.0,17638.029045643154,4,4,0,1,88.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028234447211266677,11758.68603042877,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25444,2,47.0,0.0,6,112,1705.0,0.0,0.0,47,45,0.0,662.163638505112,2907.366926449364,2255.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,4,125465,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,694.679302258338,1705.0,60722.63216844681,1,1,0,1,106.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03713607133736474,26401.144421063833,7,4,7,7_1,7_1,7_0_0 +25445,2,78.0,0.0,5,111,550.0,,,0,77,0.0,0.0,,670.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,3,125466,2,2,0,0,2,,360.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,119.8033098496317,550.0,13407.613787405371,0,5,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04997160647850506,13407.613787405371,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +25446,1,43.0,430.0,2,111,800.0,1500.0,0.0,52,22,0.0,0.0,1364.160434697649,2300.0,0.0,2847.7560719096837,71,2,2,2,1,1,2,2,2,0,,1,,2,125467,1,1,1,0,2,,800.0,634.0,43,2.0,1.0,5.0,4.0,2.3,3,2,355.182024941056,800.0,12852.18897389124,1,4,2,3,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.1789578417087056,5587.908249517931,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +25447,1,57.0,342.0,2,111,500.0,132.0,0.0,54,64,0.0,0.0,852.6002716860306,632.0,0.0,250.60253432805214,50,2,1,2,2,1,2,2,2,2,40.0,2,,2,125468,2,2,0,1,2,720.0,0.0,351.0,43,2.0,0.0,4.0,5.0,2.8,4,4,1625.74599150614,500.0,29850.726054959443,4,1,2,3,84.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.021172014336817063,10660.973591056945,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25448,2,52.0,0.0,7,112,750.0,0.0,0.0,52,47,2109.365702073203,397.2981831030672,1278.9004075290459,3140.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,125469,2,1,3,0,1,,350.0,,43,2.0,2.0,7.0,3.0,2.0,3,3,2025.2944397123,750.0,48117.13896650023,1,4,1,2,250.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06525741279393417,24058.569483250114,6,3,6,6_1,6_0,6_0_0 +25449,2,55.0,0.0,5,111,650.0,0.0,0.0,55,90,0.0,0.0,1108.3803531918397,1158.0,166.2707070475825,0.0,31,2,1,2,1,2,2,2,2,2,75.0,2,,3,125470,2,2,0,1,2,850.0,0.0,650.0,43,3.0,0.0,3.0,4.0,2.3,3,3,1082.54324500464,650.0,49822.61586058452,1,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.023242456864175063,21662.006895906314,6,3,6,6_0,6_4,6_0_0 +25450,2,78.0,0.0,9,111,0.0,800.0,0.0,72,72,0.0,0.0,0.0,2320.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,125471,2,1,1,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1425.96373428697,0.0,26319.60492616192,5,5,0,1,80.0,8,7,5,0,1,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08814721978193144,17546.403284107946,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +25451,2,51.0,0.0,1,111,450.0,0.0,0.0,22,22,1687.4925616585624,0.0,767.3402445174275,2110.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,125472,2,1,2,0,1,,120.0,,43,3.0,0.0,7.0,3.0,2.0,3,3,1994.04046496974,450.0,29237.29061150669,1,1,1,2,140.0,9,7,7,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07216810983058683,14618.645305753345,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +25452,0,75.0,0.0,1,112,1350.0,0.0,0.0,77,75,0.0,2648.654554020448,2302.0207335522828,3750.0,554.2356901586083,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125473,2,1,3,0,1,,180.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,73.9722331761543,1350.0,39274.15536369648,6,5,5,0,150.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09548263903509319,26182.77024246432,7,4,7,7_1,7_0,7_1_0 +25453,2,62.0,0.0,9,111,390.0,,,55,77,0.0,0.0,,390.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,125474,2,1,0,0,1,,113.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,80.08797535958878,390.0,26677.721209835894,4,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014618939786214187,17785.14747322393,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +25454,1,31.0,467.0,6,120,0.0,,,0,85,0.0,0.0,,132.0,182.89777775234077,,71,2,2,2,2,1,2,2,2,0,,2,,4,125475,2,1,0,0,1,,0.0,650.0,31,0.0,0.0,3.0,4.0,1.9,1,1,118.44119896165061,0.0,14050.393063583815,0,6,2,3,63.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.009394754965405283,7394.943717675693,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25455,2,50.0,0.0,1,111,1080.0,0.0,0.0,52,33,0.0,0.0,1841.6165868418261,1087.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,15.0,2,,1,125476,2,1,0,1,1,,310.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,267.704599761517,1080.0,48127.62561670285,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02258578074590809,32085.083744468564,8,4,8,8_0,8_4,8_1_0 +25456,0,35.0,0.0,1,111,960.0,1640.0,0.0,0,55,0.0,0.0,1636.9925216371787,2600.0,0.0,3113.546638621254,43,0,0,0,0,0,0,0,0,0,,1,,1,125477,2,1,2,0,2,,670.0,,22,1.0,0.0,5.0,3.0,2.0,3,3,1361.23639803776,960.0,54497.154679802894,0,1,0,1,112.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0477089127914339,27248.577339901447,7,4,7,7_1,7_3,7_1_0 +25457,2,25.0,0.0,9,112,0.0,0.0,0.0,56,46,0.0,0.0,0.0,1109.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2012.0,6,125478,2,1,1,0,1,,397.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1889.02983656151,0.0,39420.73159882417,1,1,1,2,137.0,5,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028132405336512806,26280.487732549445,7,4,7,7_1,7_0,7_0_0 +25458,1,58.0,478.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,836.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,125479,2,1,0,1,2,852.0,0.0,448.0,42,2.0,0.0,4.0,4.0,2.5,4,4,261.694829109766,0.0,13357.562879028575,6,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06258626723835402,5343.02515161143,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25459,2,70.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,320.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,2,,2,125480,2,3,0,0,2,,220.0,196.0,21,0.0,2.0,3.0,2.0,1.5,2,1,97.39674155358506,240.0,19480.17276454473,0,5,2,3,49.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016426959035107852,12986.781843029821,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +25460,2,43.0,0.0,2,111,320.0,0.0,0.0,0,54,0.0,0.0,545.6641738790596,320.0,0.0,0.0,30,2,2,2,2,1,2,2,2,3,30.0,2,,2,125481,2,1,0,0,1,,0.0,374.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1165.44865857637,320.0,19463.71779699889,0,1,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.016440846673667905,19463.71779699889,5,3,5,5_0,5_4,5_0_1 +25461,1,34.0,300.0,5,111,450.0,1360.0,0.0,0,56,0.0,198.6490915515336,767.3402445174275,1960.0,0.0,2581.965505198113,50,0,0,0,0,0,0,0,0,0,,1,,3,125482,2,1,2,0,1,,700.0,625.0,32,1.0,0.0,5.0,4.0,2.1,2,1,894.831475738897,450.0,23300.233370561775,0,1,2,3,73.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08411932914269965,11095.349224077036,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +25462,2,48.0,0.0,1,111,550.0,1130.0,0.0,0,47,0.0,0.0,937.8602988546337,1680.0,0.0,2145.3095741719617,42,0,0,0,0,0,0,0,0,0,,1,,1,125483,2,1,3,0,1,,300.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,581.93084851495,550.0,31075.652549584236,0,1,1,2,70.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05406161615816099,31075.652549584236,8,4,8,8_1,8_2,8_1_0 +25463,2,51.0,0.0,7,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1307.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,125484,2,2,0,0,1,,0.0,500.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2329.77855013619,0.0,29336.71842320783,0,1,2,3,49.0,10,2,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04455167688305766,29336.71842320783,8,4,8,8_0,8_1,8_0_0 +25464,2,65.0,0.0,2,221,280.0,280.0,0.0,0,77,0.0,0.0,477.4561521441771,560.0,0.0,531.581133423141,71,2,2,2,2,1,2,2,2,0,,2,,2,125485,1,2,0,1,1,796.0,430.0,286.0,21,1.0,1.0,3.0,2.0,1.5,2,2,705.856501936359,280.0,32569.403443564508,0,5,2,3,80.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0171940514959187,21712.935629043004,6,3,6,6_0,6_1,6_0_1 +25465,2,49.0,0.0,6,112,1200.0,0.0,0.0,0,37,0.0,397.2981831030672,2046.2406520464733,1500.0,0.0,0.0,31,2,2,2,2,1,1,2,2,2,12.0,1,,4,125486,2,1,2,0,1,,350.0,,32,2.0,1.0,5.0,2.0,1.5,2,2,817.813585671694,1200.0,46604.68687337567,0,1,0,1,160.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.032185604080453976,31069.791248917114,8,4,8,8_1,8_1,8_0_0 +25466,1,39.0,400.0,2,112,480.0,0.0,0.0,0,46,1371.087706347582,92.70290939071567,818.4962608185893,1910.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,125487,2,1,2,0,1,,300.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,746.744324947219,480.0,31776.306535063406,0,1,1,2,105.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06010767796101224,19860.191584414628,5,3,5,5_1,5_0,5_0_1 +25468,2,54.0,0.0,6,111,600.0,,,68,67,0.0,0.0,,852.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,125489,2,2,0,0,1,,450.0,,43,2.0,3.0,3.0,3.0,2.0,3,2,104.18260268605812,600.0,16893.24426897933,1,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050434362188470076,8446.622134489666,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25469,1,94.0,80.0,5,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,739.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,,3,125490,1,1,1,1,2,,0.0,302.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2076.02357800642,0.0,11165.097834015209,0,5,2,3,30.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.06618840345031171,11165.097834015209,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +25470,1,59.0,235.0,7,400,180.0,,,0,63,0.0,0.0,,246.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,5,125491,1,3,0,0,2,,180.0,300.0,12,1.0,6.0,2.0,1.0,1.0,1,1,132.53310688045607,180.0,8753.66211057263,0,4,2,3,30.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028102524051377583,8753.66211057263,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +25471,1,35.0,483.0,2,300,720.0,,,0,85,0.0,0.0,,808.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,125492,2,2,0,0,2,,540.0,600.0,11,0.0,0.0,5.0,1.0,1.0,1,1,95.12267176888763,720.0,13309.94306312612,0,6,2,3,95.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06070649560015655,13309.94306312612,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +25472,2,69.0,0.0,6,111,360.0,,,46,75,0.0,0.0,,528.0,232.77898986661552,,50,0,0,0,0,0,0,0,0,0,,1,,4,125493,2,1,0,0,2,,1000.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,72.07403757108102,360.0,38862.18530331755,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013586472193444206,25908.123535545034,7,4,7,7_1,7_2,7_0_0 +25473,2,42.0,0.0,9,112,1800.0,0.0,0.0,54,47,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,125494,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,1996.86353682788,1800.0,51948.90170457993,1,1,1,2,122.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03464943321104531,19980.346809453822,5,3,5,5_1,5_0,5_0_0 +25474,2,34.0,0.0,1,212,910.0,0.0,0.0,0,46,0.0,0.0,1551.7324944685756,962.0,72.05063972061909,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,125495,2,1,2,0,1,,245.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,742.350838540551,910.0,30926.972306383966,0,1,1,2,96.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03110553436882741,30926.972306383966,8,4,8,8_1,8_0,8_1_0 +25475,2,80.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,700.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,2,,2,125496,2,3,0,0,1,,480.0,70.0,11,0.0,0.0,3.0,1.0,1.0,1,1,27.04405449348232,600.0,9450.881890909091,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0740671619939868,9450.881890909091,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +25476,2,68.0,0.0,5,111,340.0,,,86,77,0.0,0.0,,592.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,125497,1,3,0,0,2,,234.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,118.00080644011675,340.0,24995.269588255098,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02368448149397724,12497.634794127549,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25477,1,57.0,200.0,5,211,1800.0,,,0,52,0.0,0.0,,2100.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,2,,3,125498,2,2,0,0,2,,600.0,500.0,22,3.0,0.0,3.0,4.0,2.3,3,3,7.253920819854411,1800.0,9456.0,0,4,2,3,42.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.22208121827411167,4111.304347826087,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25478,2,57.0,0.0,2,112,488.0,949.0,0.0,47,77,0.0,0.0,832.1378651655658,1437.0,0.0,1801.6803414948597,50,0,0,0,0,0,0,0,0,0,,1,,2,125499,2,1,1,0,1,,516.0,,42,1.0,3.0,9.0,3.0,2.0,3,2,2314.63014432878,488.0,37063.35785251553,1,5,0,1,120.0,9,0,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03877144660551767,18531.678926257766,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +25479,2,57.0,0.0,7,111,2000.0,,,54,34,0.0,0.0,,2200.0,277.1178450793042,,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,125500,2,1,0,0,2,,900.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,139.50932701655614,2000.0,125041.14057978292,1,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017594209312224583,83360.76038652194,10,5,10,10_1,10_3,10_0_0 +25480,2,58.0,0.0,2,112,460.0,0.0,0.0,0,43,1324.6816609019716,860.8127300566456,784.3922499511482,2391.0,34.63973063491302,0.0,33,0,0,0,0,0,0,0,0,2,35.0,1,,2,125501,2,2,1,0,1,,200.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1176.0285808464,460.0,46665.16863699096,0,1,0,1,115.0,5,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05123735903752164,46665.16863699096,10,5,10,10_1,10_0,10_0_1 +25481,2,45.0,0.0,5,120,1600.0,0.0,0.0,43,48,0.0,0.0,2728.320869395298,1650.0,69.27946126982604,0.0,31,2,2,2,1,2,2,2,2,2,25.0,1,,3,125502,2,1,1,0,1,,424.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1174.03894159968,1600.0,96480.79527834014,1,1,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.017101849080325974,53600.441821300075,10,5,10,10_1,10_0,10_0_0 +25482,1,46.0,222.0,2,111,570.0,112.0,0.0,85,63,0.0,0.0,971.9643097220749,682.0,0.0,212.63245336925638,71,2,2,1,2,2,2,2,1,2,3.0,2,,2,125503,2,2,0,1,1,840.0,315.0,353.0,42,2.0,0.0,4.0,4.0,2.5,4,4,96.5527239118157,570.0,20292.49705268034,6,1,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03360848091930203,8116.998821072137,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25483,2,68.0,0.0,7,111,400.0,1500.0,0.0,86,74,0.0,0.0,682.0802173488245,1900.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,0,,1,,5,125504,2,1,2,0,1,,800.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,606.05366254538,400.0,53029.16694837151,6,5,0,1,114.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03582933900979087,35352.77796558101,9,5,9,9_1,9_4,9_0_0 +25484,2,82.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,738.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125505,2,1,0,0,1,,0.0,355.0,11,0.0,4.0,2.0,1.0,1.0,1,1,3065.55615500594,0.0,17185.352160310293,0,5,2,3,30.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04294354826806615,17185.352160310293,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +25485,2,39.0,0.0,6,111,991.0,0.0,0.0,0,43,0.0,0.0,1689.8537384817125,991.0,0.0,0.0,33,2,2,2,1,1,2,2,2,2,30.0,1,,4,125506,2,1,2,0,1,,37.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,596.686982940345,991.0,26734.965997127994,0,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03706756163843478,16709.353748204994,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +25486,2,81.0,0.0,1,111,150.0,1111.0,0.0,0,75,0.0,0.0,255.78008150580916,1261.0,0.0,2109.2379972611056,60,0,0,0,0,0,0,0,0,0,,1,,1,125507,2,1,1,0,1,,140.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,988.392342883052,150.0,35661.549987840015,0,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.035360212902411134,35661.549987840015,9,5,9,9_1,9_3,9_1_0 +25487,2,67.0,0.0,6,111,240.0,,,0,74,0.0,0.0,,410.0,235.55016831740858,,41,0,0,0,0,0,0,0,0,0,,1,,4,125508,2,1,0,0,2,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,116.33390647527888,240.0,32729.0,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012527116624400378,32729.0,8,4,8,8_1,8_2,8_0_0 +25488,2,61.0,0.0,7,111,1490.0,1200.0,0.0,54,74,0.0,0.0,2540.748809624371,6558.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,0,,1,,5,125509,2,1,2,0,1,,800.0,,42,1.0,2.0,5.0,3.0,2.0,3,3,1287.09263173792,1490.0,24512.755882909547,1,5,0,1,130.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.26753417817750474,12256.377941454773,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +25489,1,38.0,440.0,2,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,725.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125510,2,1,0,0,1,,0.0,400.0,31,1.0,0.0,5.0,4.0,2.1,2,2,2686.96723723624,0.0,16363.949034151934,0,6,2,3,85.0,2,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04430470899700974,7792.356682929492,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +25490,2,63.0,0.0,5,120,1100.0,0.0,0.0,74,74,2847.643697798824,0.0,1875.7205977092674,3800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125511,2,1,2,0,1,,570.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1184.96174621307,1100.0,60241.26072935283,5,5,0,1,160.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0630796891365262,40160.84048623522,9,5,9,9_1,9_0,9_0_0 +25491,2,41.0,0.0,1,400,1050.0,0.0,0.0,11,69,0.0,66.2163638505112,1790.4605705406643,1250.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,1,125512,2,1,1,0,1,,0.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1002.00154504838,1050.0,37800.10860182178,1,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03306868806032361,18000.05171515323,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +25492,2,38.0,0.0,7,111,240.0,,,52,31,0.0,0.0,,290.0,69.27946126982604,,10,0,0,0,0,0,0,0,0,2,45.0,8,,5,125513,2,2,0,0,2,,240.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,125.4333641502687,240.0,47719.518059872535,1,1,1,2,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006077177888430138,26510.84336659585,7,4,7,7_0,7_3,7_0_0 +25493,2,38.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,554.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,1,125514,2,1,0,0,1,,0.0,610.0,32,1.0,0.0,2.0,2.0,1.3,1,1,1141.51143318317,0.0,12710.466387184286,0,1,2,3,34.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043586126828405555,9777.281836295604,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +25494,1,62.0,270.0,2,111,180.0,218.0,0.0,0,69,0.0,0.0,306.936097806971,398.0,0.0,413.873882450874,60,2,2,2,2,1,2,2,2,3,50.0,2,,2,125515,1,3,0,1,1,481.0,0.0,311.0,12,1.0,1.0,4.0,1.0,1.0,1,1,301.855295305146,180.0,11770.871559633028,0,1,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.033812279573663805,11770.871559633028,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +25495,2,32.0,0.0,9,111,1670.0,0.0,0.0,22,62,0.0,0.0,2847.6849074313423,1715.0,62.351515142843446,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,125516,2,1,1,0,1,,420.0,650.0,43,2.0,0.0,7.0,3.0,1.8,2,2,1102.46845969983,1670.0,36519.05609691484,1,1,2,3,130.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04696178333439687,20288.364498286024,5,3,5,5_1,5_2,5_0_0 +25496,2,31.0,0.0,9,112,1450.0,0.0,0.0,47,34,0.0,662.163638505112,2472.540787889489,1950.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,125517,2,1,1,0,2,,350.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,260.791784944827,1450.0,54232.05784053194,1,1,1,2,120.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03595659242239946,25824.78944787235,7,4,7,7_1,7_0,7_0_0 +25497,2,29.0,0.0,1,112,1560.0,0.0,0.0,52,43,0.0,105.94618216081791,2660.1128476604154,1640.0,0.0,0.0,33,2,2,2,1,1,2,2,2,2,17.0,1,,1,125518,2,1,1,0,1,,0.0,750.0,43,2.0,0.0,2.0,2.0,1.5,2,2,658.793505908791,1560.0,51821.24649125175,1,1,2,3,70.0,10,3,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.031647251099543854,34547.4976608345,9,5,9,9_1,9_1,9_1_0 +25498,2,59.0,0.0,6,111,600.0,,,0,67,0.0,0.0,,700.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,125519,2,2,0,0,2,,600.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,35.48388233731924,600.0,23513.38962601634,0,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02977027179550015,23513.38962601634,6,3,6,6_1,6_2,6_0_0 +25499,2,90.0,0.0,8,112,719.0,1953.0,0.0,0,74,0.0,0.0,1226.039190684512,2672.0,0.0,3707.778405626408,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,125520,2,1,1,0,1,,238.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1805.48776802939,719.0,71322.55954058908,0,5,0,1,165.0,8,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037463602220828694,71322.55954058908,10,5,10,10_1,10_0,10_0_0 +25500,2,37.0,0.0,9,112,1274.0,0.0,0.0,54,53,0.0,397.2981831030672,2172.425492256006,1574.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,125521,2,1,1,0,1,,442.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,787.44886037442,1274.0,61946.84779797114,1,1,1,2,98.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025408879643615233,29498.498951414826,8,4,8,8_1,8_0,8_0_0 +25501,1,33.0,299.0,7,111,740.0,515.0,0.0,0,65,0.0,0.0,1261.8484020953254,1255.0,0.0,977.7295846889913,50,0,0,0,0,0,0,0,0,0,,2,2005.0,5,125522,2,1,0,0,1,,0.0,288.0,12,1.0,0.0,1.0,1.0,1.0,1,1,425.775104898741,740.0,6114.6760672237415,0,4,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.20524390600626047,6114.6760672237415,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +25502,2,34.0,0.0,2,111,1200.0,0.0,0.0,35,35,0.0,345.64941929966847,2046.2406520464733,1461.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,125523,2,1,3,0,1,,600.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,538.623120861735,1200.0,26146.768960525013,7,1,1,2,80.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05587688491093257,14525.982755847228,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +25503,2,65.0,0.0,2,111,516.0,,,0,77,0.0,0.0,,654.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,125524,1,1,0,0,2,,516.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,90.6784231604455,516.0,16697.635439511036,0,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03916722235128349,16697.635439511036,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +25504,2,43.0,0.0,8,111,1120.0,0.0,0.0,46,38,0.0,1059.4618216081792,1909.8246085767084,2040.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,125525,1,1,1,0,1,,665.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,484.450356188237,1120.0,90562.32088469273,1,1,1,2,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022525924469155367,37734.300368621974,9,5,9,9_1,9_4,9_0_0 +25505,2,44.0,0.0,2,221,414.0,0.0,0.0,54,62,0.0,0.0,705.9530249560333,1522.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,125526,1,1,0,1,1,324.0,0.0,401.0,43,4.0,0.0,4.0,4.0,2.5,4,4,847.040762723085,414.0,23837.97165418796,4,1,2,3,83.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06384771414612402,9535.188661675184,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +25506,2,57.0,0.0,2,111,540.0,420.0,0.0,56,56,0.0,0.0,920.8082934209131,960.0,0.0,797.3717001347114,71,0,0,0,0,0,0,0,0,0,,2,,2,125527,2,1,0,1,1,775.0,0.0,404.0,43,2.0,1.0,3.0,2.0,1.5,2,2,764.696094989801,540.0,26542.991201718272,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03616773982646892,17695.32746781218,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +25507,0,46.0,0.0,2,211,540.0,,,56,65,0.0,0.0,,804.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,125528,1,2,0,0,2,,244.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,110.01417915961042,540.0,12903.21700872053,1,1,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06231004248449231,5161.286803488212,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +25509,2,42.0,0.0,1,111,650.0,1300.0,0.0,42,34,0.0,0.0,1108.3803531918397,1950.0,0.0,2468.055262321726,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,125530,2,2,0,0,1,,300.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,1677.96782950247,650.0,94407.0,1,1,1,2,130.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020655248021862787,33716.78571428572,9,5,9,9_0,9_3,9_1_0 +25510,2,61.0,0.0,5,211,400.0,1000.0,0.0,56,72,0.0,79.45963662061344,682.0802173488245,1460.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,3,125531,2,1,2,0,1,,400.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1039.12908661465,400.0,28716.176572364646,1,5,0,1,112.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05084242313111587,19144.117714909764,5,3,5,5_1,5_2,5_0_0 +25511,2,38.0,0.0,8,111,250.0,250.0,0.0,56,42,0.0,0.0,426.3001358430153,500.0,0.0,474.62601198494724,10,2,1,2,1,1,2,2,2,0,,2,,6,125532,2,1,0,1,1,,0.0,854.0,43,2.0,0.0,4.0,4.0,2.1,2,2,404.447246870502,250.0,45019.67111028839,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011106256169111251,21437.93862394685,6,3,6,6_0,6_4,6_0_0 +25512,2,64.0,0.0,5,111,1200.0,0.0,0.0,74,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,125533,2,1,2,0,1,,0.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,777.147330462461,1200.0,150978.83429595927,5,5,0,1,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007948133959278531,75489.41714797964,10,5,10,10_1,10_4,10_0_0 +25513,2,75.0,0.0,5,111,1900.0,0.0,0.0,75,74,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,125534,2,1,1,0,1,,540.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1212.80185532686,1900.0,31029.91970375146,5,5,0,1,123.0,5,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06123122515751446,20686.61313583431,5,3,5,5_1,5_2,5_0_0 +25514,2,68.0,0.0,2,111,650.0,126.0,0.0,52,74,0.0,0.0,1108.3803531918397,776.0,0.0,239.2115100404134,50,0,0,0,0,0,0,0,0,0,,2,,2,125535,1,3,0,1,1,700.0,0.0,833.0,42,1.0,5.0,4.0,2.0,1.5,2,2,2002.02332797823,650.0,65775.85929593492,1,5,2,3,76.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011797641388593131,43850.572863956615,10,5,10,10_0,10_3,10_0_1 +25515,1,64.0,254.0,1,300,1096.0,0.0,0.0,0,78,0.0,0.0,1868.899795535779,1096.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,,1,125536,2,1,0,0,1,,160.0,259.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1953.29116465973,1096.0,10000.570662235117,0,5,2,3,60.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.10959374589880105,10000.570662235117,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +25516,1,44.0,145.0,5,111,220.0,,,0,21,0.0,0.0,,330.0,152.4148147936173,,50,0,0,0,0,0,0,0,0,0,,1,,3,125537,2,2,0,0,2,,125.0,448.0,12,1.0,0.0,2.0,1.0,1.0,1,1,123.30333995401358,220.0,5241.0,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06296508299942759,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +25517,1,86.0,268.0,2,111,600.0,550.0,0.0,0,86,0.0,0.0,1023.1203260232367,1150.0,0.0,1044.177226366884,70,0,0,0,0,0,0,0,0,0,,1,,2,125538,1,1,2,0,1,,160.0,608.0,11,0.0,2.0,3.0,1.0,1.0,1,1,309.247127553659,600.0,9594.994718852857,0,5,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11985415664069171,9594.994718852857,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +25518,2,70.0,0.0,9,111,1300.0,0.0,0.0,71,71,0.0,0.0,2216.7607063836795,1500.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,125539,2,1,1,0,1,,350.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1199.28353884466,1300.0,42789.42871307953,5,5,0,1,180.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03505538739622135,28526.285808719684,8,4,8,8_1,8_3,8_0_0 +25519,2,80.0,0.0,2,111,1500.0,0.0,0.0,0,75,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,125540,2,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,2036.56165837444,1500.0,18499.465185643563,0,5,0,1,38.0,7,5,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08108342511242266,18499.465185643563,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +25520,2,63.0,0.0,2,111,0.0,0.0,375.0,0,77,0.0,0.0,236.3693589055289,375.0,0.0,448.77455533675527,41,0,0,0,0,0,0,0,0,0,,2,,2,125541,2,1,0,1,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,1991.53056949756,0.0,22900.69466043901,0,5,1,2,66.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016375049122322613,22900.69466043901,6,3,6,6_0,6_3,6_0_1 +25521,1,38.0,229.0,5,111,700.0,180.0,0.0,54,47,0.0,0.0,1193.6403803604428,880.0,0.0,341.730728629162,31,0,0,0,0,0,0,0,0,0,,2,,3,125542,2,2,0,1,1,543.0,0.0,410.0,43,2.0,0.0,4.0,5.0,3.0,5,2,314.093371942203,700.0,40174.73637841889,1,1,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.021904312991901032,13391.578792806298,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +25522,1,37.0,491.0,8,111,700.0,100.0,0.0,85,81,0.0,0.0,1193.6403803604428,800.0,0.0,189.8504047939789,12,2,2,2,1,2,2,2,2,0,,2,,6,125543,2,3,0,0,2,,0.0,520.0,42,1.0,0.0,2.0,5.0,2.4,2,2,484.061253045484,700.0,12880.533491232629,6,4,2,3,30.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.06210922867011173,5366.888954680262,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +25523,2,57.0,0.0,6,300,1200.0,,,74,33,0.0,0.0,,1266.0,91.44888887617039,,31,0,0,0,0,0,0,0,0,0,,1,,4,125544,2,1,0,0,2,,200.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,97.77678567157739,1200.0,119694.31922040525,5,1,0,1,170.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010576943068357205,79796.2128136035,10,5,10,10_1,10_1,10_0_0 +25524,1,52.0,131.0,2,112,530.0,0.0,0.0,0,21,0.0,0.0,903.7562879871924,560.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,125545,2,1,2,0,1,,310.0,500.0,12,1.0,4.0,4.0,1.0,1.0,1,1,2168.83708046407,530.0,6505.664478877923,0,1,2,3,65.0,7,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.08607883204216321,6505.664478877923,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +25525,2,45.0,0.0,9,111,1200.0,,,0,68,0.0,0.0,,1325.0,173.19865317456512,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,125546,2,1,0,0,2,,240.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,181.08185995044244,1200.0,21377.867200500375,0,1,0,1,57.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06197999021946337,21377.867200500375,6,3,6,6_1,6_3,6_0_0 +25526,2,30.0,0.0,9,300,1005.0,0.0,0.0,43,46,0.0,0.0,1713.7265460889214,1005.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,125547,2,1,1,0,1,,276.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,4225.97477239243,1005.0,40573.056587860185,1,1,1,2,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02477013280534316,22540.586993255656,6,3,6,6_1,6_0,6_0_0 +25527,2,66.0,0.0,6,111,900.0,,,77,77,0.0,0.0,,1020.0,166.2707070475825,,41,0,0,0,0,0,0,0,0,0,,1,,4,125548,1,1,0,0,2,,800.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,43.23488993901219,900.0,58556.11525368628,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017419188338929092,39037.41016912419,9,5,9,9_1,9_2,9_0_0 +25528,2,64.0,0.0,1,111,250.0,1661.0,0.0,77,78,0.0,0.0,426.3001358430153,1911.0,0.0,3153.4152236279897,50,1,2,2,2,1,2,2,2,0,,1,,1,125549,2,1,1,0,1,,394.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1338.68120466439,250.0,22558.707401860418,5,5,1,2,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.0847123004859046,15039.138267906945,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +25529,2,49.0,0.0,7,111,2250.0,1200.0,0.0,0,56,0.0,0.0,3836.7012225871376,3450.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,2,,5,125550,1,2,0,0,1,,525.0,480.0,32,3.0,1.0,4.0,3.0,2.0,3,3,399.330185835531,2250.0,46122.3133309406,0,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07480110494990305,23061.1566654703,6,3,6,6_0,6_3,6_0_0 +25530,2,85.0,0.0,1,111,369.0,0.0,0.0,0,78,1898.4291318658827,0.0,629.2190005042905,2309.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125551,2,1,4,0,1,,210.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,284.472620281418,369.0,15684.655988714927,0,5,0,1,81.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14721393964020124,15684.655988714927,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +25531,1,48.0,200.0,9,111,180.0,,,0,56,0.0,0.0,,318.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,30.0,2,2008.0,6,125552,2,1,0,0,2,,500.0,282.0,32,1.0,0.0,3.0,2.0,1.5,2,1,138.9925121823841,180.0,24314.35375239729,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013078694307005655,16209.56916826486,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +25532,2,30.0,0.0,9,112,2160.0,0.0,0.0,54,47,0.0,0.0,3683.2331736836522,2320.0,221.69427606344334,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,125553,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,154.209654786734,2160.0,37326.921207819076,1,1,1,2,110.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06215353222097559,15552.883836591282,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +25533,1,29.0,52.0,2,111,300.0,300.0,0.0,0,56,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,44,0,0,0,0,0,0,0,0,2,40.0,2,,2,125554,2,1,0,1,1,636.0,0.0,282.0,12,1.0,0.0,2.0,1.0,1.0,1,1,925.832289381971,300.0,13715.509138673118,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04374609749689875,13715.509138673118,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +25534,1,30.0,44.0,6,120,700.0,,,54,63,0.0,0.0,,784.0,116.38949493330776,,60,0,0,0,0,0,0,0,0,2,10.0,2,,4,125555,2,1,0,0,1,,600.0,468.0,43,2.0,0.0,4.0,4.0,2.1,2,2,127.54609179388825,700.0,45623.58301462974,1,1,2,3,84.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017184095333954836,21725.515721252254,6,3,6,6_0,6_2,6_0_0 +25535,2,57.0,0.0,2,211,600.0,0.0,0.0,0,68,0.0,908.4885120290136,1023.1203260232367,1316.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,125556,2,1,0,1,1,,0.0,318.0,12,1.0,3.0,5.0,1.0,1.0,1,1,357.026512913207,600.0,19603.05481023149,0,1,2,3,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06713239404468407,19603.05481023149,5,3,5,5_0,5_1,5_0_1 +25536,2,65.0,0.0,1,112,341.0,1100.0,0.0,0,77,0.0,0.0,581.4733852898729,1441.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,1,125557,2,2,2,0,2,,81.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1989.65553324362,341.0,10876.968310593415,0,5,0,1,100.0,7,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13248176871091605,10876.968310593415,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +25537,0,46.0,0.0,1,300,0.0,64.0,0.0,11,45,0.0,0.0,0.0,2700.0,0.0,121.5042590681465,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,125558,1,2,3,0,2,,605.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,585.074329345282,0.0,34003.14362769599,1,1,5,0,50.0,0,0,7,0,1,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07940442300166671,16191.973156045708,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +25538,2,60.0,0.0,6,111,420.0,0.0,0.0,56,48,0.0,132.4327277010224,716.1842282162656,660.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,125559,2,2,2,0,1,,295.0,,43,2.0,1.0,7.0,3.0,1.8,2,2,1279.26177852224,420.0,43552.9492829649,1,1,0,1,130.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015153968005977252,24196.082934980503,7,4,7,7_1,7_2,7_0_0 +25539,2,58.0,0.0,6,111,316.0,0.0,0.0,0,46,0.0,0.0,538.8433717055714,316.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,20.0,2,,4,125560,1,3,0,1,1,284.0,120.0,447.0,12,1.0,3.0,4.0,1.0,1.0,1,1,1326.21096562575,316.0,32586.123923757645,0,1,2,3,74.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009697379189355293,32586.123923757645,8,4,8,8_0,8_3,8_0_0 +25540,1,41.0,473.0,7,111,440.0,0.0,0.0,0,85,0.0,0.0,750.2882390837069,440.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,125561,2,1,0,1,1,327.0,0.0,439.0,31,0.0,0.0,4.0,4.0,1.9,1,1,1032.60536435741,440.0,12798.080361122658,0,6,2,3,75.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.034380156053450725,6735.831769011926,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25541,2,84.0,0.0,9,111,321.0,1072.0,0.0,77,75,0.0,0.0,547.3693744224316,1393.0,0.0,2035.1963393914539,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,125562,2,1,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1579.99181972502,321.0,29672.774456948682,5,5,0,1,92.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04694539103584874,19781.849637965788,5,3,5,5_0,5_3,5_0_0 +25542,2,69.0,0.0,7,120,900.0,1000.0,0.0,72,75,0.0,0.0,1534.680489034855,1900.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,5,125563,2,1,1,0,1,,395.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1140.71519568975,900.0,34508.82697925179,5,5,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055058376836232735,23005.884652834528,6,3,6,6_1,6_1,6_0_0 +25543,2,40.0,0.0,1,111,362.0,994.0,0.0,85,42,0.0,0.0,617.2825967006861,1356.0,0.0,1887.1130236521503,30,0,0,0,0,0,0,0,0,2,30.0,2,,1,125564,2,2,0,0,1,,0.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,748.661689214542,362.0,25490.18866207468,6,1,1,2,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.053196938554539254,12138.18507717842,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +25544,2,80.0,0.0,2,112,422.0,1718.0,0.0,0,78,0.0,0.0,719.5946293030098,2140.0,0.0,3261.6299543605573,70,0,0,0,0,0,0,0,0,0,,1,,2,125565,2,1,2,0,2,,260.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,902.549005881803,422.0,20884.146768144565,0,5,0,1,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10247007089914867,20884.146768144565,5,3,5,5_1,5_2,5_0_1 +25545,2,65.0,0.0,8,112,869.0,0.0,0.0,0,77,0.0,0.0,1481.8192721903213,921.0,72.05063972061909,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,125566,2,1,1,0,1,,84.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,510.202518020827,869.0,20016.724096362315,0,5,0,1,100.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04601152494115535,20016.724096362315,5,3,5,5_1,5_0,5_0_0 +25546,2,65.0,0.0,2,111,524.0,0.0,0.0,0,77,0.0,0.0,893.52508472696,524.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,125567,1,2,0,1,2,495.0,0.0,510.0,11,0.0,1.0,2.0,1.0,1.0,1,1,930.496164711685,524.0,29437.420503084497,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01780047269919912,29437.420503084497,8,4,8,8_0,8_4,8_0_1 +25547,1,51.0,224.0,2,111,270.0,700.0,0.0,0,85,0.0,0.0,460.40414671045653,970.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,2,,2,125568,2,1,0,0,2,,320.0,359.0,11,0.0,0.0,2.0,1.0,1.0,1,1,505.045705364042,270.0,5968.699755403609,0,7,2,3,60.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16251445704264741,5968.699755403609,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25548,2,45.0,0.0,1,111,618.0,0.0,0.0,0,52,0.0,0.0,1053.8139358039339,618.0,0.0,0.0,50,2,2,2,2,1,1,2,2,0,,2,,1,125569,1,3,0,0,2,,0.0,392.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1876.81043685685,618.0,10116.991216098699,0,4,2,3,45.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.06108535500323508,10116.991216098699,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +25549,2,53.0,0.0,5,111,1600.0,0.0,0.0,42,38,2636.7071275915036,0.0,2728.320869395298,4160.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,3,125570,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,906.244171490292,1600.0,181782.30395959393,1,1,0,1,175.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02288451576081175,64922.251414140694,10,5,10,10_1,10_3,10_0_0 +25550,2,68.0,0.0,5,111,350.0,0.0,0.0,77,78,0.0,0.0,596.8201901802214,3483.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125571,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,247.448424880857,350.0,19787.62655282015,5,5,0,1,90.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17601908903539518,13191.751035213434,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25551,2,43.0,0.0,1,111,0.0,0.0,0.0,56,62,0.0,0.0,0.0,3083.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,125572,1,1,2,0,2,,571.0,1024.0,43,2.0,1.0,7.0,7.0,3.6,6,3,540.728379617523,0.0,45802.28399636368,1,1,2,3,125.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06731105375104797,12722.856665656578,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +25552,2,74.0,0.0,9,111,240.0,,,0,75,0.0,0.0,,360.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,2009.0,6,125573,2,1,0,0,2,,120.0,370.0,11,0.0,0.0,2.0,1.0,1.0,1,1,155.78001314082496,240.0,19434.839723062236,0,5,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018523435496759368,19434.839723062236,5,3,5,5_0,5_3,5_0_0 +25553,1,55.0,377.0,8,111,0.0,0.0,843.0,0,77,0.0,595.9472746546007,531.358318819629,1371.0,108.07595958092864,1008.8452003970259,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125574,2,2,1,0,1,,274.0,600.0,31,1.0,3.0,3.0,2.0,1.5,2,2,270.884295686246,0.0,5674.617676011468,0,6,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.24160217979013487,3783.0784506743116,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +25554,0,23.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,534.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,125575,1,2,0,0,2,,0.0,,32,1.0,0.0,3.0,4.0,1.9,1,1,187.43808334914596,0.0,1603.9949020821587,0,4,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3329187638357268,844.2078432011361,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25555,2,57.0,0.0,2,112,360.0,0.0,0.0,75,54,1476.555991451242,0.0,613.872195613942,1760.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,125576,2,1,1,0,1,,600.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,768.194747590971,360.0,52803.67616755318,5,1,1,2,80.0,6,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03333101268205802,35202.45077836879,9,5,9,9_1,9_0,9_0_1 +25556,2,68.0,0.0,2,111,480.0,250.0,0.0,85,78,0.0,0.0,818.4962608185893,730.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,0,,2,,2,125577,2,2,0,1,2,,0.0,556.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1954.05116071423,480.0,19466.89787911097,6,5,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03749955460460546,12977.931919407312,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +25557,2,45.0,0.0,2,112,803.0,0.0,0.0,0,42,0.0,0.0,1369.276036327765,833.0,41.567676761895626,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,2,125578,2,2,5,0,1,,153.0,550.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2524.5729393682,803.0,32915.441838587474,0,1,2,3,90.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025307270796634314,20572.15114911717,5,3,5,5_1,5_0,5_0_1 +25558,2,39.0,0.0,6,111,0.0,0.0,0.0,56,21,0.0,0.0,0.0,1537.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,4,125579,2,1,1,0,1,,633.0,1150.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1078.13955346487,0.0,40319.988763456204,1,1,2,3,120.0,8,6,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03812005030599243,19199.99464926486,5,3,5,5_1,5_2,5_0_0 +25559,2,67.0,0.0,1,112,1300.0,0.0,0.0,85,74,3164.0485531098047,2185.1400070668697,2216.7607063836795,6030.0,110.84713803172167,0.0,30,2,2,1,2,1,2,2,2,0,,1,,1,125580,2,2,2,0,1,,368.0,,41,1.0,4.0,6.0,5.0,3.0,5,3,678.739612059935,1300.0,74109.53323992071,6,5,0,1,200.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08136605017438983,24703.17774664024,7,4,7,7_1,7_0,7_1_0 +25560,2,76.0,0.0,2,221,384.0,950.0,0.0,77,75,0.0,0.0,654.7970086548714,1334.0,0.0,1803.5788455427996,42,0,0,0,0,0,0,0,0,0,,1,,2,125581,2,2,2,0,1,,700.0,700.0,41,0.0,4.0,6.0,2.0,1.5,2,2,2028.05162347214,384.0,36955.18070270693,5,5,2,3,96.0,1,1,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03609778046362755,24636.787135137954,7,4,7,7_1,7_1,7_0_1 +25561,0,44.0,0.0,1,120,900.0,0.0,0.0,56,47,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,125582,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,232.56138558954,900.0,32150.9499786823,1,1,5,0,140.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02985914881633446,13396.229157784292,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +25562,2,59.0,0.0,1,112,2500.0,0.0,0.0,74,75,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,125583,2,2,4,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1331.11402407117,2500.0,67097.26167827722,5,5,1,2,140.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03725934468066938,44731.50778551815,10,5,10,10_1,10_0,10_1_0 +25563,2,56.0,0.0,2,112,515.0,0.0,0.0,54,38,2109.365702073203,132.4327277010224,878.1782798366115,2735.0,166.2707070475825,0.0,44,2,2,2,2,1,2,2,2,4,2.0,1,,2,125584,1,1,2,0,1,,381.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,950.968313472238,515.0,75654.88884847614,1,1,0,1,120.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03615100149678019,30261.955539390456,8,4,8,8_1,8_0,8_0_1 +25564,2,53.0,0.0,5,111,0.0,0.0,200.0,0,56,0.0,0.0,126.06365808294876,200.0,0.0,239.34642951293617,60,0,0,0,0,0,0,0,0,2,25.0,2,,3,125585,1,1,0,1,2,,150.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1192.78997635332,0.0,26296.39674519873,0,1,0,1,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007605604750259808,26296.39674519873,7,4,7,7_0,7_4,7_0_0 +25566,2,57.0,0.0,5,111,600.0,720.0,0.0,52,67,0.0,0.0,1023.1203260232367,1320.0,0.0,1366.922914516648,71,0,0,0,0,0,0,0,0,2,50.0,1,,3,125587,2,1,2,0,1,,450.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,646.714258159103,600.0,69442.66591925932,1,1,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01900848682184463,27777.06636770373,7,4,7,7_1,7_4,7_0_0 +25568,2,39.0,0.0,2,111,546.0,1200.0,0.0,22,22,0.0,0.0,931.0394966811454,1746.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,1,2.0,1,,2,125589,2,1,3,0,1,,369.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1190.72792006288,546.0,27339.390111147855,1,1,1,2,77.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06386389721576322,15188.550061748809,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +25569,2,61.0,0.0,7,212,500.0,0.0,0.0,78,78,2109.365702073203,0.0,852.6002716860306,2620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,125590,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,841.581493732802,500.0,24684.70948257497,5,5,0,1,120.0,1,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1061385795060488,16456.472988383313,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +25570,2,37.0,0.0,1,111,1310.0,0.0,0.0,37,38,0.0,0.0,2233.8127118174,1310.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,125591,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,838.965331769203,1310.0,70697.63657612205,1,1,1,2,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01852961518154129,47131.7577174147,10,5,10,10_0,10_4,10_1_0 +25571,2,56.0,0.0,6,112,1000.0,,,85,43,0.0,0.0,,1132.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,,4,125592,2,1,0,0,2,,350.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,75.75601504323583,1000.0,24743.53039104051,6,1,0,1,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045749332537037266,12371.765195520255,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +25572,2,92.0,0.0,1,111,400.0,,,0,77,0.0,0.0,,500.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,1,125593,2,2,0,0,2,,350.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,99.6964590069803,400.0,8323.518744019355,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06007074836700065,8323.518744019355,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +25573,2,35.0,0.0,6,111,414.0,1463.0,0.0,0,63,0.0,0.0,705.9530249560333,1877.0,0.0,2777.5114221359113,71,0,0,0,0,0,0,0,0,0,,2,,4,125594,2,1,0,0,1,,0.0,449.0,22,2.0,4.0,3.0,2.0,1.5,2,2,252.798263316827,414.0,35297.19757462495,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05317702619398231,23531.465049749968,6,3,6,6_0,6_4,6_0_0 +25574,2,72.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,334.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,125595,2,1,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,199.723615203571,300.0,27363.329039110584,0,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012206117154919698,27363.329039110584,7,4,7,7_0,7_4,7_0_0 +25575,0,59.0,0.0,5,112,650.0,0.0,0.0,0,54,0.0,1059.4618216081792,1108.3803531918397,1510.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,1,3.0,1,,3,125596,2,1,2,0,1,,73.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1357.52301130933,650.0,35782.187119586364,0,1,0,1,100.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042199768140317506,35782.187119586364,9,5,9,9_1,9_0,9_0_0 +25576,1,51.0,227.0,2,111,800.0,0.0,0.0,63,65,0.0,0.0,1364.160434697649,845.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,125597,2,1,1,0,1,,280.0,528.0,43,2.0,2.0,3.0,2.0,1.5,2,2,883.871168563326,800.0,10169.738609900078,4,4,2,3,48.0,4,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.08308964786739022,6779.825739933385,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +25577,2,27.0,0.0,6,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,784.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,125598,2,1,0,1,1,300.0,0.0,272.0,12,1.0,0.0,1.0,1.0,1.0,1,1,616.539213793139,0.0,11087.01600048549,0,4,2,3,18.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07071334613079565,11087.01600048549,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +25578,2,46.0,0.0,7,111,870.0,0.0,0.0,52,22,0.0,0.0,1483.5244727336933,870.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,125599,2,1,0,1,1,,0.0,1800.0,43,2.0,3.0,3.0,3.0,1.8,2,2,862.967092113825,870.0,89928.45728260666,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009674356997651614,49960.25404589259,10,5,10,10_0,10_4,10_0_0 +25579,2,36.0,0.0,9,400,1000.0,0.0,0.0,37,62,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,125600,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1773.25783595917,1000.0,46957.49618356461,1,1,1,2,140.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02129585436350428,22360.712468364098,6,3,6,6_1,6_0,6_0_0 +25580,2,90.0,0.0,1,111,390.0,0.0,0.0,0,72,4746.072829664707,0.0,665.0282119151038,4890.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,125601,2,2,2,0,1,,150.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1294.03310715583,390.0,35898.68000839989,0,5,0,1,120.0,9,7,2,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.13621670765765745,35898.68000839989,9,5,9,9_1,9_3,9_1_0 +25581,2,60.0,0.0,2,111,397.0,740.0,0.0,85,78,0.0,0.0,676.9646157187083,1137.0,0.0,1404.892995475444,41,0,0,0,0,0,0,0,0,0,,2,,2,125602,2,1,0,0,1,,210.0,445.0,41,0.0,2.0,3.0,2.0,1.5,2,2,2612.35981837565,397.0,23061.50286423444,7,5,2,3,90.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.049302944682037504,15374.335242822961,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +25582,2,36.0,0.0,1,111,824.5,715.0,0.0,43,22,0.0,0.0,1405.9378480102644,1540.0,0.0,1357.430394276949,12,2,2,2,1,1,2,2,2,0,,1,,1,125603,2,2,1,0,1,,500.0,,43,2.0,0.0,8.0,6.0,2.6999999999999997,2,2,332.320998729213,824.5,105373.30398807902,1,1,1,2,200.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.014614707347263417,39027.14962521446,9,5,9,9_1,9_2,9_1_0 +25583,2,58.0,0.0,5,111,720.0,0.0,0.0,78,56,0.0,0.0,1227.744391227884,720.0,0.0,0.0,60,2,2,2,1,1,2,2,2,0,,2,,3,125604,2,1,0,1,1,492.0,460.0,283.0,42,1.0,2.0,3.0,3.0,2.0,3,2,369.576885694549,720.0,36554.253191231335,7,1,2,3,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.019696750368099824,18277.126595615668,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +25584,2,43.0,0.0,8,111,0.0,0.0,0.0,55,56,0.0,0.0,0.0,1150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,125605,1,2,5,0,1,,411.0,980.0,43,2.0,1.0,7.0,5.0,2.4,2,2,1243.28994389271,0.0,22126.554425107748,1,4,2,3,114.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.051973749636095905,9219.397677128229,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +25585,1,24.0,101.0,5,111,447.0,937.0,0.0,0,48,0.0,0.0,762.2246428873113,1384.0,0.0,1778.8982929195822,43,0,0,0,0,0,0,0,0,0,,2,,3,125606,2,1,0,1,1,504.0,100.0,387.0,22,2.0,2.0,4.0,4.0,2.5,4,4,343.245856875172,447.0,48267.92110752121,0,1,2,3,83.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.028673287936246798,19307.168443008482,5,3,5,5_0,5_3,5_0_0 +25586,2,30.0,0.0,9,111,548.0,0.0,0.0,54,52,0.0,0.0,934.4498977678895,548.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,125607,2,1,0,0,1,,0.0,595.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1980.50938928437,548.0,42830.23451497148,1,1,2,3,58.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012794699963840833,28553.489676647656,8,4,8,8_0,8_3,8_0_0 +25587,2,73.0,0.0,7,120,260.0,890.0,0.0,81,48,0.0,0.0,443.3521412767359,1150.0,0.0,1689.6686026664122,71,0,0,0,0,0,0,0,0,0,,2,,5,125608,2,1,0,0,1,,400.0,360.0,43,2.0,3.0,2.0,2.0,1.5,2,2,1213.30351925156,260.0,24012.610670379596,4,4,2,3,51.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04789150233541935,16008.407113586398,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +25588,2,75.0,0.0,2,111,170.0,0.0,0.0,0,75,0.0,0.0,289.8840923732504,334.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,125609,2,1,0,1,1,,0.0,421.0,11,0.0,1.0,2.0,1.0,1.0,1,1,604.785032109567,170.0,25540.656374632657,0,5,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01307718936823149,25540.656374632657,7,4,7,7_0,7_4,7_0_1 +25589,2,78.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,3479.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125610,2,1,1,0,1,,286.0,344.0,11,0.0,3.0,3.0,1.0,1.0,1,1,263.526954952422,0.0,26828.25647233937,0,5,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1296767087189188,26828.25647233937,7,4,7,7_1,7_3,7_1_0 +25590,2,32.0,0.0,9,111,1275.0,0.0,0.0,37,37,0.0,0.0,2174.130692799378,1275.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,75.0,1,2007.0,6,125611,2,1,1,0,1,,620.0,880.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1749.8952307161,1275.0,70418.52764529242,1,1,2,3,75.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01810603036777972,39121.40424738467,9,5,9,9_1,9_2,9_0_0 +25591,2,66.0,0.0,9,112,500.0,,,55,77,0.0,0.0,,500.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,2009.0,6,125612,2,1,0,0,2,,150.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,105.70496931581839,500.0,45417.79926021503,1,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011008899773749907,30278.532840143354,8,4,8,8_1,8_1,8_0_0 +25592,2,40.0,0.0,8,300,1150.0,0.0,0.0,54,47,843.7462808292812,0.0,1960.9806248778702,1980.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,1999.0,6,125613,2,1,2,0,1,,530.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,1067.72461772477,1150.0,50381.16640242532,1,1,1,2,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039300400157164364,19377.37169324051,5,3,5,5_1,5_0,5_0_0 +25593,1,42.0,365.0,9,211,400.0,,,0,56,0.0,0.0,,676.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,125614,2,1,0,0,2,,320.0,750.0,32,2.0,3.0,4.0,4.0,2.5,4,3,67.22594687856751,400.0,31699.585193395615,0,1,2,3,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02132520018403395,12679.834077358246,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +25594,2,38.0,0.0,5,112,499.0,,,55,62,0.0,0.0,,587.0,121.93185183489385,,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,125615,2,2,0,0,2,,349.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,110.96478856993001,499.0,44422.459614252984,1,1,1,2,108.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013214036437812654,21153.552197263325,5,3,5,5_1,5_2,5_0_0 +25595,2,47.0,0.0,7,111,738.0,0.0,0.0,52,64,0.0,0.0,1258.438001008581,738.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,15.0,2,,5,125616,1,3,0,0,1,,0.0,462.0,43,3.0,0.0,3.0,5.0,3.0,5,4,277.975114491458,738.0,35748.07551802304,1,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.020644467969413455,11916.025172674346,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +25596,2,40.0,0.0,1,112,382.85,1400.0,0.0,21,52,0.0,662.163638505112,652.8360280299937,2283.0,0.0,2657.9056671157045,60,2,2,2,2,1,2,2,2,2,20.0,1,,1,125617,1,1,1,0,2,,358.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,614.382230098061,382.85,40041.303939312,1,1,1,2,100.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0570161252355866,20020.651969656,5,3,5,5_1,5_2,5_1_0 +25597,1,45.0,238.0,2,111,400.0,412.0,0.0,0,52,0.0,0.0,682.0802173488245,812.0,0.0,782.1836677511931,50,0,0,0,0,0,0,0,0,0,,2,,2,125618,2,3,0,0,1,,0.0,225.0,32,2.0,0.0,3.0,2.0,1.5,2,2,300.986727123459,400.0,7929.227985235851,0,4,2,3,52.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10240593428665899,5286.151990157234,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25598,2,46.0,0.0,9,111,1200.0,0.0,0.0,55,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,125619,2,1,1,0,1,,300.0,823.0,43,2.0,2.0,5.0,2.0,1.5,2,2,1568.6938185184,1200.0,54932.172020945945,1,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021845122008691615,36621.44801396396,9,5,9,9_1,9_3,9_0_0 +25599,2,76.0,0.0,7,111,260.0,0.0,0.0,0,77,0.0,0.0,443.3521412767359,260.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,125620,2,1,0,1,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,522.823082385105,260.0,20926.279996878402,0,5,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01242456853481768,20926.279996878402,5,3,5,5_0,5_4,5_0_0 +25600,1,95.0,118.0,2,111,180.0,140.0,0.0,0,77,0.0,0.0,306.936097806971,320.0,0.0,265.7905667115705,71,0,0,0,0,0,0,0,0,0,,2,,2,125621,2,2,0,1,1,112.0,150.0,391.0,11,0.0,4.0,5.0,1.0,1.0,1,1,333.775570238204,180.0,17192.408420880747,0,5,2,3,85.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018612866339968368,17192.408420880747,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +25601,2,54.0,0.0,8,111,480.0,,,81,64,0.0,0.0,,720.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,125622,2,1,0,0,2,,200.0,,43,6.0,1.0,3.0,7.0,3.8,6,6,116.81614093233335,480.0,34703.97578333445,4,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02074690244412165,9132.625206140645,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25602,1,89.0,253.0,6,111,310.0,890.0,0.0,86,78,0.0,0.0,528.612168445339,1200.0,0.0,1689.6686026664122,71,2,2,2,2,1,2,2,2,0,,2,,4,125623,1,2,0,0,1,,120.0,351.0,41,0.0,3.0,3.0,2.0,1.5,2,2,452.402582180117,310.0,17363.853730351242,5,5,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.06910908250179817,11575.902486900828,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +25603,1,40.0,288.0,5,120,0.0,,,0,68,0.0,0.0,,132.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,20.0,1,,3,125624,2,2,0,0,2,,0.0,600.0,32,1.0,0.0,4.0,4.0,2.5,4,3,122.59437028581024,0.0,15055.527604121467,0,1,2,3,86.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008767543952685182,6022.211041648587,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +25604,2,41.0,0.0,9,112,1656.0,0.0,0.0,63,33,0.0,0.0,2823.8120998241334,1656.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,1,2011.0,6,125625,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,192.757625131642,1656.0,50909.152411176394,1,1,1,2,91.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03252853213161035,28282.862450653553,8,4,8,8_1,8_1,8_0_0 +25605,2,54.0,0.0,1,111,695.0,0.0,0.0,56,47,0.0,529.7309108040896,1185.1143776435824,1185.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,125626,1,2,2,0,2,,220.0,,43,2.0,2.0,6.0,3.0,2.0,3,2,1640.09649356959,695.0,48082.92819758661,1,1,1,2,130.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024644921688847514,24041.464098793305,6,3,6,6_1,6_3,6_1_0 +25606,2,82.0,0.0,7,112,0.0,0.0,0.0,0,75,2109.365702073203,0.0,0.0,2198.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,125627,2,1,2,0,1,,347.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,664.782415238767,0.0,23663.679031131902,0,5,0,1,99.0,10,1,1,1,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09288496506009544,23663.679031131902,6,3,6,6_1,6_1,6_0_0 +25607,2,52.0,0.0,2,111,200.0,200.0,0.0,0,67,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,125628,2,3,0,1,1,,120.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,447.626064281755,200.0,21829.362855284184,0,1,0,1,57.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01832394296854949,21829.362855284184,6,3,6,6_0,6_2,6_0_1 +25608,2,41.0,0.0,9,111,1200.0,,,54,62,0.0,0.0,,1288.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,125629,2,1,0,0,2,,156.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,117.98854686731946,1200.0,58048.987670712384,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022188156101985535,27642.37508129161,7,4,7,7_1,7_2,7_0_0 +25609,2,63.0,0.0,7,111,210.0,,,0,74,0.0,0.0,,210.0,0.0,,12,0,0,0,0,0,0,0,0,0,,1,,5,125630,2,1,0,0,2,,200.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,86.13488956330956,210.0,95677.24344812694,0,5,0,1,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0021948792882380136,95677.24344812694,10,5,10,10_1,10_2,10_0_0 +25611,2,81.0,0.0,9,111,0.0,,,0,77,0.0,0.0,,717.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,125632,2,1,0,0,2,,313.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,74.51915975352809,0.0,13762.141814479523,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05209944859350489,13762.141814479523,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +25612,2,51.0,0.0,8,111,900.0,0.0,0.0,0,46,0.0,0.0,1534.680489034855,900.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,125633,2,1,1,0,1,,150.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1122.98331574067,900.0,30723.856316151952,0,1,0,1,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029293197791934004,30723.856316151952,8,4,8,8_1,8_3,8_0_0 +25613,1,46.0,215.0,2,111,480.0,1200.0,0.0,62,68,0.0,0.0,818.4962608185893,1680.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,1,5.0,1,,2,125634,2,3,4,0,1,,480.0,599.0,43,2.0,1.0,4.0,2.0,1.5,2,2,409.549727867675,480.0,10148.661224101905,4,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.16553907583496758,6765.77414940127,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +25614,2,66.0,0.0,5,111,2125.0,0.0,0.0,75,77,0.0,397.2981831030672,3623.55115466563,2465.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,125635,2,2,1,0,1,,653.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,843.302425550514,2125.0,67875.94498443349,5,5,0,1,179.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03631625313747481,45250.62998962233,10,5,10,10_1,10_2,10_0_0 +25615,2,73.0,0.0,2,211,630.0,850.0,0.0,77,78,0.0,0.0,1074.2763423243985,1480.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,0,,2,,2,125636,2,1,0,0,1,,750.0,500.0,41,0.0,3.0,4.0,2.0,1.5,2,2,383.391556272705,630.0,29335.03751684427,5,5,2,3,80.0,2,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05045161435877419,19556.69167789618,5,3,5,5_0,5_1,5_0_1 +25616,2,64.0,0.0,5,111,266.0,98.0,0.0,77,78,0.0,0.0,453.5833445369683,364.0,0.0,186.05339669809933,50,0,0,0,0,0,0,0,0,0,,2,,3,125637,2,1,0,1,1,98.0,0.0,249.0,41,0.0,0.0,3.0,2.0,1.5,2,2,276.550984438838,266.0,18075.206336683783,5,5,2,3,103.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0201380826984674,12050.137557789189,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +25617,2,45.0,0.0,2,300,1800.0,0.0,0.0,69,67,0.0,529.7309108040896,3069.36097806971,2320.0,166.2707070475825,0.0,42,2,2,2,1,1,2,2,2,0,,1,,2,125638,2,1,2,0,1,,440.0,,43,3.0,1.0,11.0,4.0,2.5,4,3,765.614719528197,1800.0,20141.19380615208,4,4,0,1,210.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.11518681674625271,8056.477522460833,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +25618,2,49.0,0.0,9,111,250.0,,,0,54,0.0,0.0,,370.0,166.2707070475825,,31,0,0,0,0,0,0,0,0,2,25.0,2,2005.0,6,125639,1,2,0,0,2,,400.0,400.0,12,1.0,1.0,3.0,1.0,1.0,1,1,124.60286116221201,250.0,14035.222000511134,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026362247778234312,14035.222000511134,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +25619,2,72.0,0.0,7,111,190.0,0.0,0.0,0,77,0.0,0.0,323.9881032406916,190.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,125640,2,1,0,1,1,720.0,0.0,395.0,11,0.0,6.0,2.0,1.0,1.0,1,1,257.244099517492,190.0,20557.021882471297,0,5,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009242583925155545,20557.021882471297,5,3,5,5_0,5_3,5_0_0 +25620,2,59.0,0.0,6,111,1553.0,0.0,0.0,72,77,0.0,0.0,2648.176443856811,1733.0,249.40606057137379,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,125641,2,2,2,0,1,,540.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,634.736301953565,1553.0,25925.958021980066,5,7,0,1,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0668442029617868,17283.972014653376,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +25621,2,40.0,0.0,9,112,1700.0,0.0,0.0,52,63,0.0,0.0,2898.840923732504,1730.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,125642,2,1,1,0,1,,293.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,713.975786521763,1700.0,50141.72414659155,1,1,1,2,169.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034502204091392395,20892.385061079814,5,3,5,5_1,5_0,5_0_0 +25622,2,73.0,0.0,2,111,273.0,183.0,0.0,77,74,0.0,0.0,465.5197483405727,456.0,0.0,347.4262407729814,42,0,0,0,0,0,0,0,0,0,,2,,2,125643,2,1,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1343.26565536391,273.0,39805.41205452597,5,5,0,1,89.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011455728667633568,26536.94136968398,7,4,7,7_0,7_3,7_0_1 +25624,2,55.0,0.0,7,120,552.0,0.0,0.0,85,46,2373.0364148323533,0.0,941.2706999413778,2872.0,96.99124577775646,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,125645,2,1,2,0,1,,300.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1002.74770703077,552.0,20477.605837199444,6,4,0,1,113.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14025077066298197,13651.73722479963,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +25625,2,58.0,0.0,5,120,800.0,0.0,0.0,0,72,3164.0485531098047,0.0,1364.160434697649,3860.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,125646,2,1,2,0,1,,400.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1297.339486585,800.0,20782.981024935612,0,6,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18572889016107633,20782.981024935612,5,3,5,5_1,5_0,5_0_0 +25626,1,76.0,218.0,5,111,240.0,0.0,0.0,0,77,632.8097106219609,0.0,409.2481304092947,840.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,3,125647,2,2,0,1,1,550.0,0.0,378.0,11,0.0,5.0,3.0,1.0,1.0,1,1,270.179954241759,240.0,10346.329167026242,0,5,2,3,50.0,9,7,4,1,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,1,0,0,1,0.08118821530220405,10346.329167026242,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +25627,1,63.0,215.0,9,112,375.0,625.0,0.0,0,78,0.0,0.0,639.4502037645229,1000.0,0.0,1186.565029962368,71,0,0,0,0,0,0,0,0,0,,8,2005.0,6,125648,2,1,0,0,1,,0.0,480.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1527.74859324213,375.0,12211.906149733593,0,5,2,3,65.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08188729816121419,12211.906149733593,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +25628,2,46.0,0.0,2,111,600.0,0.0,0.0,0,22,0.0,0.0,1023.1203260232367,681.0,112.2327272571182,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,125649,2,1,0,0,1,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1388.31414948502,600.0,13195.357736889651,0,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05160905930546769,13195.357736889651,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +25629,2,64.0,0.0,2,111,300.0,1400.0,0.0,52,78,0.0,0.0,511.56016301161833,1700.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,2,,2,125650,2,1,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,177.342832662525,300.0,47262.15124985808,1,5,0,1,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03596958570532916,31508.100833238717,8,4,8,8_0,8_4,8_0_1 +25630,2,93.0,0.0,2,111,345.0,,,0,86,0.0,0.0,,488.0,198.1392592317025,,71,0,0,0,0,0,0,0,0,0,,1,,2,125651,2,3,0,0,2,,297.0,,21,1.0,7.0,5.0,2.0,1.5,2,2,76.40603202182514,345.0,8346.784049662487,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05846563144517114,5564.522699774991,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +25631,2,50.0,0.0,1,111,520.0,0.0,0.0,37,31,2109.365702073203,0.0,886.7042825534718,2520.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,1.0,1,,1,125652,2,1,3,0,1,,800.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,595.697888584269,520.0,75756.24367157926,1,1,0,1,70.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03326458490899813,37878.12183578963,9,5,9,9_1,9_4,9_1_0 +25632,2,59.0,0.0,2,111,193.0,1126.0,0.0,0,54,0.0,0.0,329.1037048708078,1319.0,0.0,2137.7155579802024,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,125653,2,1,2,0,1,,215.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,286.653671486877,193.0,30846.57635778914,0,1,1,2,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04276001280339613,30846.57635778914,8,4,8,8_1,8_2,8_0_1 +25633,1,57.0,86.0,6,400,900.0,0.0,0.0,0,74,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,50,2,2,2,1,2,2,2,2,0,,2,,4,125654,1,3,0,0,1,,110.0,314.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1883.3255752763,900.0,29088.646465744823,0,5,2,3,80.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03300256686506568,29088.646465744823,8,4,8,8_0,8_0,8_0_0 +25634,2,44.0,0.0,1,111,1370.0,0.0,0.0,54,63,0.0,0.0,2336.124744419724,1405.0,48.49562288887823,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,125655,2,1,1,0,1,,402.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,975.703599010906,1370.0,34266.85208576468,1,1,1,2,72.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04100172366237495,22844.568057176453,6,3,6,6_1,6_2,6_1_0 +25635,1,50.0,251.0,2,111,230.0,0.0,0.0,0,56,0.0,0.0,392.1961249755741,230.0,0.0,0.0,31,2,2,2,1,1,2,2,2,0,,2,,2,125656,1,3,0,1,2,585.0,0.0,361.0,12,1.0,0.0,2.0,1.0,1.0,1,1,464.838650229178,230.0,6070.23766616654,0,4,2,3,47.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.037889784988476234,6070.23766616654,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25636,2,45.0,0.0,2,222,1300.0,0.0,0.0,85,22,0.0,0.0,2216.7607063836795,1370.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,125657,2,3,3,0,2,,600.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1194.7131810066,1300.0,53253.188384118606,6,1,0,1,100.0,1,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025726159157234,25358.661135294573,7,4,7,7_1,7_0,7_0_1 +25637,2,44.0,0.0,6,111,740.0,0.0,0.0,0,45,0.0,0.0,1261.8484020953254,740.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,8,,4,125658,2,2,0,0,1,,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1481.7593163238,740.0,26070.465621527343,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028384610031243738,26070.465621527343,7,4,7,7_0,7_4,7_0_0 +25638,1,35.0,244.0,2,221,260.0,760.0,0.0,85,85,0.0,0.0,443.3521412767359,1020.0,0.0,1442.8630764342397,50,2,2,2,2,2,2,2,1,0,,2,,2,125659,1,2,0,0,2,,163.0,214.0,41,0.0,0.0,3.0,4.0,2.1,2,2,3395.3804995207,260.0,17695.139828785977,6,7,2,3,65.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.05764294658698833,8426.257061326656,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +25639,1,53.0,235.0,2,111,280.0,72.0,0.0,0,77,0.0,0.0,477.4561521441771,352.0,0.0,136.6922914516648,71,0,0,0,0,0,0,0,0,0,,2,,2,125660,2,1,0,1,1,377.0,0.0,341.0,11,0.0,1.0,3.0,1.0,1.0,1,1,236.123016034446,280.0,8419.498633876947,0,7,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04180771507981274,8419.498633876947,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25640,2,58.0,0.0,2,111,1560.0,,,85,21,0.0,0.0,,1868.0,426.76148142212844,,31,0,0,0,0,0,0,0,0,1,5.0,1,,2,125661,1,2,0,0,2,,600.0,,42,2.0,0.0,4.0,6.0,3.5,6,6,106.34448495289017,1560.0,16145.54826186,6,1,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11569752663108404,4613.013789102857,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +25641,2,30.0,0.0,5,221,1225.0,0.0,0.0,0,62,0.0,0.0,2088.870665630775,1317.0,127.47420873647992,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,125662,2,2,3,0,1,,286.0,,22,3.0,1.0,4.0,3.0,2.0,3,3,768.419182135918,1225.0,75628.56832403608,0,1,0,1,100.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01741405436047947,37814.28416201804,9,5,9,9_1,9_1,9_0_0 +25642,2,24.0,0.0,7,112,0.0,0.0,0.0,53,63,0.0,0.0,0.0,1605.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,3.0,2,,5,125663,2,1,0,0,1,,314.0,722.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2663.02707764131,0.0,37363.666830100134,1,1,2,3,83.0,9,4,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04295616935292372,20757.592683388964,5,3,5,5_0,5_2,5_0_0 +25643,2,32.0,0.0,9,400,510.0,,,81,52,0.0,0.0,,630.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,125664,2,2,0,0,2,,0.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,32.000205821663336,510.0,26121.90495470512,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024117689773866333,12439.00235938339,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +25644,0,48.0,0.0,7,111,480.0,,,56,65,0.0,0.0,,615.0,187.05454542853033,,71,0,0,0,0,0,0,0,0,0,,1,,5,125665,2,2,0,0,2,,380.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,114.18555113948862,480.0,15782.91304347826,4,4,5,0,113.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03896619073461394,6313.165217391304,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25645,2,52.0,0.0,7,112,458.0,0.0,0.0,67,64,0.0,0.0,780.981848864404,586.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,125666,2,1,1,0,1,,329.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,871.873402881247,458.0,44011.323858338685,1,1,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013314755127252834,22005.661929169342,6,3,6,6_1,6_0,6_0_0 +25646,1,47.0,193.0,2,111,112.0,654.0,0.0,85,63,0.0,0.0,190.98246085767084,766.0,0.0,1241.621647352622,50,2,2,2,1,2,2,2,2,2,20.0,2,,2,125667,1,2,0,0,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,547.769910950379,112.0,27890.347179084507,6,1,1,2,70.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.027464699348541552,11620.977991285212,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +25647,2,75.0,0.0,6,111,1980.0,0.0,0.0,72,72,0.0,317.83854648245375,3376.297075876681,2220.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,125668,2,1,2,0,1,,545.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1080.06573411473,1980.0,49536.91637408892,5,5,0,1,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04481506243213004,33024.61091605928,8,4,8,8_1,8_3,8_0_0 +25648,1,52.0,115.0,2,111,250.0,0.0,0.0,0,46,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,125669,1,3,0,1,1,710.0,0.0,490.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1560.79564021054,250.0,18444.80662065593,0,4,2,3,62.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.013553950721284902,18444.80662065593,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +25649,2,71.0,0.0,1,111,0.0,0.0,1264.0,0,74,0.0,0.0,796.7223190842361,1264.0,0.0,1512.6694345217566,20,0,0,0,0,0,0,0,0,0,,2,,1,125670,1,1,0,0,2,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1808.88670726196,0.0,35722.55723998542,0,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03538380501452913,35722.55723998542,9,5,9,9_0,9_3,9_1_0 +25650,1,35.0,310.0,9,112,900.0,,,0,54,0.0,0.0,,1015.0,159.34276092059991,,43,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,125671,2,1,0,0,2,,1020.0,358.0,32,1.0,0.0,3.0,3.0,1.6,1,1,93.98465707976275,900.0,31689.653781501587,0,1,2,3,40.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03202938116643271,19806.033613438492,5,3,5,5_0,5_2,5_0_0 +25651,2,75.0,0.0,2,111,612.0,,,0,77,0.0,0.0,,759.0,203.68161613328857,,71,0,0,0,0,0,0,0,0,0,,1,,2,125672,2,3,0,0,2,,578.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,123.05159004685137,612.0,12333.235479946847,0,5,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06154102881065489,12333.235479946847,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +25652,2,66.0,0.0,5,111,1800.0,0.0,0.0,77,78,0.0,185.40581878143135,3069.36097806971,1940.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,125673,2,1,1,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1775.35344851379,1800.0,35629.650565485994,5,5,0,1,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0544490324549872,23753.100376990664,6,3,6,6_1,6_3,6_0_0 +25653,2,76.0,0.0,8,120,150.0,0.0,0.0,74,74,0.0,79.45963662061344,255.78008150580916,210.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,1999.0,6,125674,2,1,2,0,1,,427.0,,41,0.0,5.0,9.0,2.0,1.5,2,2,943.583639709232,150.0,136469.63371372377,5,5,0,1,240.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.001538803866364315,90979.75580914918,10,5,10,10_1,10_0,10_0_0 +25654,0,74.0,0.0,1,111,430.0,970.0,0.0,0,77,0.0,0.0,733.2362336499863,1400.0,0.0,1841.5489265015954,50,0,0,0,0,0,0,0,0,0,,2,,1,125675,2,1,0,0,1,,125.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1792.28599166367,430.0,13752.173951033503,0,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.10180208634539467,13752.173951033503,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +25655,0,34.0,0.0,7,111,600.0,,,81,62,0.0,0.0,,1200.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,0,,1,,5,125676,2,2,0,0,2,,200.0,,43,5.0,1.0,3.0,8.0,3.8999999999999995,5,4,7.857653049296154,600.0,5956.973041630805,4,4,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20144459134088732,1527.42898503354,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25656,2,52.0,0.0,7,111,900.0,,,75,46,0.0,0.0,,999.0,137.1733333142556,,50,0,0,0,0,0,0,0,0,0,,1,,5,125677,2,1,0,0,2,,440.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,167.04428547391032,900.0,77824.68251025936,5,1,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012836544496899237,38912.34125512968,9,5,9,9_1,9_2,9_0_0 +25657,1,67.0,37.0,2,111,125.0,655.0,0.0,0,56,0.0,0.0,213.15006792150766,780.0,0.0,1243.5201514005619,70,0,0,0,0,0,0,0,0,0,,2,,2,125678,2,1,0,0,1,,0.0,470.0,11,0.0,3.0,3.0,1.0,1.0,1,1,383.273608706866,125.0,12208.556946902456,0,5,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06388961475073439,12208.556946902456,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25658,2,80.0,0.0,1,111,0.0,0.0,1200.0,75,77,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,70,0,0,0,0,0,0,0,0,0,,2,,1,125679,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,854.019883620484,0.0,48390.92564272463,5,5,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024798037732522996,32260.61709514975,8,4,8,8_0,8_4,8_1_0 +25659,2,51.0,0.0,2,112,411.0,998.0,0.0,0,65,0.0,0.0,700.8374233259171,1409.0,0.0,1894.7070398439093,50,1,2,2,1,2,2,2,2,2,16.0,2,,2,125680,1,2,0,0,1,,240.0,334.0,12,1.0,0.0,4.0,1.0,1.0,1,1,984.695870488612,411.0,23665.921473013394,0,1,2,3,80.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.059537085915150355,23665.921473013394,6,3,6,6_0,6_1,6_0_1 +25660,2,49.0,0.0,2,111,600.0,0.0,0.0,64,56,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125681,1,3,0,0,1,,0.0,279.0,43,2.0,0.0,3.0,3.0,2.0,3,2,257.086684375493,600.0,21996.91593021236,1,4,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02727655103577093,10998.45796510618,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +25661,1,42.0,250.0,8,111,480.0,,,0,63,0.0,0.0,,572.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,3,20.0,2,2001.0,6,125682,2,2,0,0,2,,200.0,410.0,32,1.0,0.0,3.0,3.0,1.8,2,2,99.75046943431576,480.0,18930.881933867568,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030215179725815382,10517.156629926427,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +25662,1,43.0,396.0,2,111,650.0,0.0,0.0,0,46,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125683,1,2,0,0,2,,0.0,432.0,32,1.0,0.0,3.0,4.0,1.9,1,1,1641.88538912221,650.0,12676.0,0,4,2,3,65.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.051278005680025246,6671.578947368422,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25663,0,67.0,0.0,2,211,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1129.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,2,125684,2,2,0,0,1,,93.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,2043.54340478481,0.0,14381.024687081492,0,5,0,1,65.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.07850622779433675,14381.024687081492,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +25664,0,79.0,0.0,2,111,200.0,1000.0,0.0,0,90,0.0,0.0,341.04010867441224,1200.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,2,125685,2,1,1,0,1,,140.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1113.42806201666,200.0,49322.853304297845,0,5,0,1,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02432949271196027,49322.853304297845,10,5,10,10_1,10_3,10_0_1 +25665,2,35.0,0.0,7,300,700.0,0.0,0.0,43,48,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,5.0,1,,5,125686,1,2,5,0,1,,145.0,580.0,43,2.0,0.0,6.0,4.0,2.1,2,2,1556.0347357589,700.0,46812.549853257384,1,1,2,3,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.014953255103477161,22291.69040631304,6,3,6,6_1,6_0,6_0_0 +25666,2,50.0,0.0,5,111,420.0,1000.0,0.0,0,35,0.0,0.0,716.1842282162656,1420.0,0.0,1898.504047939789,10,2,2,2,1,2,2,2,2,3,20.0,2,,3,125687,1,3,0,0,2,,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1117.76714941822,420.0,47897.7674630307,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.02964647571718263,47897.7674630307,10,5,10,10_0,10_4,10_0_0 +25667,1,59.0,130.0,9,112,1620.0,0.0,0.0,56,64,0.0,429.08203775131255,2762.424880262739,2124.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,125688,2,1,1,0,1,,396.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,3,3,461.637915707674,1620.0,32667.689609288813,1,1,1,2,89.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06501837214089534,12564.496003572622,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +25668,2,39.0,0.0,1,120,560.0,0.0,0.0,45,52,1582.0242765549024,1258.1109131597127,954.9123042883542,3075.0,90.06329965077386,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,125689,1,2,3,0,1,,490.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,836.795115273723,560.0,49282.28438281165,1,1,1,2,280.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06239564660019043,18954.72476261987,5,3,5,5_1,5_0,5_1_0 +25669,2,53.0,0.0,6,111,1600.0,0.0,0.0,46,37,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,35.0,2,,4,125690,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,1937.55132635852,1600.0,118514.47305705448,1,1,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013500460819074293,59257.23652852724,10,5,10,10_0,10_3,10_0_0 +25670,1,48.0,80.0,2,111,365.0,120.0,0.0,0,55,0.0,0.0,622.3981983308023,485.0,0.0,227.8204857527747,50,2,1,2,1,1,1,2,2,3,40.0,2,,2,125691,2,3,0,1,1,816.0,0.0,372.0,32,2.0,0.0,3.0,4.0,2.1,2,2,738.882830109196,365.0,34799.496792886086,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.013936983137616706,16571.188948993375,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +25671,2,83.0,0.0,2,111,145.0,1700.0,0.0,0,86,0.0,86.08127300566456,247.25407878894887,1910.0,0.0,3227.4568814976415,70,0,0,0,0,0,0,0,0,0,,1,,2,125692,2,1,1,0,1,,135.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,393.306655376308,145.0,22252.243009041533,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08583404375118178,22252.243009041533,6,3,6,6_1,6_3,6_0_1 +25672,1,50.0,200.0,6,211,50.0,,,0,81,0.0,0.0,,50.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,4,125693,2,1,0,0,2,,140.0,200.0,32,1.0,1.0,3.0,3.0,1.8,2,1,28.82407282394668,50.0,10166.035822398462,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.004918337971014896,5647.7976791102565,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25674,1,40.0,235.0,2,111,150.0,70.0,0.0,85,22,0.0,0.0,255.78008150580916,220.0,0.0,132.89528335578524,71,1,2,2,1,1,2,2,2,0,,2,,2,125695,1,3,0,1,2,1020.0,0.0,538.0,42,1.0,0.0,4.0,5.0,2.4,2,2,262.519358686096,150.0,9003.834707047266,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.02443403362656212,3751.597794603028,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25675,0,28.0,0.0,6,211,150.0,,,0,85,0.0,0.0,,238.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,0,,1,,4,125696,2,3,0,0,2,,240.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,103.23110766644673,150.0,8080.420912340447,0,7,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029453911198675995,5386.947274893631,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25676,2,45.0,0.0,8,111,0.0,,,55,22,0.0,0.0,,184.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,2000.0,6,125697,2,2,0,0,2,,408.0,900.0,43,2.0,1.0,4.0,5.0,2.5999999999999996,3,2,122.44606169099205,0.0,32003.668980153925,4,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005749340805708928,12309.103453905358,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +25677,2,40.0,0.0,1,111,1800.0,0.0,0.0,56,21,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125698,2,1,2,0,1,,780.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,227.65330705047,1800.0,25735.63324385191,1,1,1,2,160.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06994193548472367,11189.405758196483,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +25678,1,24.0,265.0,8,221,0.0,0.0,0.0,85,63,0.0,0.0,0.0,930.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125699,2,3,1,0,1,,551.0,238.0,42,1.0,0.0,4.0,4.0,2.1,2,2,2020.71254730024,0.0,18846.715581937897,6,4,2,3,86.0,1,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04934546796531927,8974.626467589474,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +25679,1,21.0,344.0,1,111,700.0,0.0,0.0,0,67,0.0,529.7309108040896,1193.6403803604428,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125700,1,3,3,0,1,,700.0,299.0,22,3.0,0.0,4.0,5.0,3.0,5,3,232.564533542036,700.0,14535.375246894739,0,1,2,3,72.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07567744081701629,4845.1250822982465,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +25680,2,49.0,0.0,8,111,1200.0,0.0,0.0,85,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,40.0,2,2003.0,6,125701,2,1,0,0,1,,0.0,,42,1.0,0.0,5.0,3.0,2.0,3,3,950.049682218828,1200.0,101290.70037217764,5,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011847089570817244,50645.35018608882,10,5,10,10_0,10_4,10_0_0 +25681,2,76.0,0.0,6,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,4140.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,4,125702,2,2,0,0,1,,343.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,439.524045021533,0.0,41012.47017771957,5,5,2,3,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10094490729429645,27341.646785146382,7,4,7,7_0,7_4,7_0_0 +25682,2,45.0,0.0,7,111,320.0,,,0,63,0.0,0.0,,416.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,125703,2,2,0,0,2,,350.0,350.0,12,1.0,1.0,2.0,1.0,1.0,1,1,74.54730947712595,320.0,28085.406734218963,0,1,2,3,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014811962808185006,28085.406734218963,8,4,8,8_0,8_2,8_0_0 +25683,2,51.0,0.0,6,111,1110.0,0.0,0.0,43,62,0.0,0.0,1892.772603142988,1110.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,4,125704,2,1,2,0,1,,336.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,972.192813011755,1110.0,51714.231204025564,1,1,0,1,130.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0214641110223755,25857.115602012782,7,4,7,7_1,7_2,7_0_0 +25684,0,84.0,0.0,2,111,200.0,1150.0,0.0,0,77,0.0,0.0,341.04010867441224,1350.0,0.0,2183.2796551307574,70,0,0,0,0,0,0,0,0,0,,2,,2,125705,2,3,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,283.642102855147,200.0,23069.542317324755,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05851871621164229,23069.542317324755,6,3,6,6_0,6_4,6_0_1 +25685,2,71.0,0.0,5,211,300.0,900.0,0.0,56,86,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,2,,3,125706,1,2,0,0,1,,60.0,,42,1.0,1.0,2.0,2.0,1.5,2,2,3188.79084991656,300.0,24229.63487608924,4,6,0,1,39.0,2,2,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04952612807154628,16153.089917392826,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +25686,1,30.0,357.0,9,120,240.0,,,0,52,0.0,0.0,,350.0,152.4148147936173,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,125707,2,1,0,0,1,,200.0,394.0,32,1.0,0.0,2.0,2.0,1.3,1,1,101.95196987886236,240.0,9577.47743995793,0,4,2,3,59.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036544069374653355,7367.290338429176,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +25688,2,46.0,0.0,9,300,950.0,0.0,0.0,22,22,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,125709,2,1,1,0,1,,770.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,1735.73154594721,950.0,8157.850839359731,1,1,1,2,105.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11645223953059686,4078.9254196798656,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +25689,2,61.0,0.0,2,111,285.0,553.0,0.0,0,43,0.0,0.0,485.98215486103743,838.0,0.0,1049.8727385107034,30,0,0,0,0,0,0,0,0,1,20.0,2,,2,125710,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,470.481984808098,285.0,34666.1876002874,0,1,0,1,62.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02417341098082134,34666.1876002874,9,5,9,9_0,9_3,9_0_1 +25690,2,39.0,0.0,8,111,372.0,,,0,63,0.0,0.0,,624.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125711,2,1,0,0,2,,219.0,,22,1.0,3.0,3.0,3.0,2.0,3,3,112.6028829454199,372.0,32894.982726914226,0,4,0,1,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01896945820523115,16447.491363457113,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +25691,1,30.0,250.0,7,111,420.0,,,0,63,0.0,0.0,,660.0,332.541414095165,,50,0,0,0,0,0,0,0,0,0,,2,,5,125712,2,1,0,0,2,,420.0,420.0,22,1.0,0.0,3.0,2.0,1.5,2,2,88.16173411454126,420.0,19307.10314966394,0,4,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03418431003780533,12871.40209977596,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +25692,1,35.0,230.0,2,111,600.0,0.0,0.0,85,48,0.0,0.0,1023.1203260232367,850.0,346.39730634913025,0.0,43,2,2,2,2,1,2,2,2,0,,2,,2,125713,2,3,0,1,1,33.0,0.0,459.0,42,1.0,0.0,4.0,7.0,2.9999999999999996,2,2,1130.58300427757,600.0,26091.07714597091,6,1,2,3,85.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03257818737204801,8697.025715323638,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25693,2,33.0,0.0,2,111,1000.0,300.0,0.0,37,37,0.0,0.0,1705.2005433720612,1300.0,0.0,569.5512143819367,10,0,0,0,0,0,0,0,0,2,30.0,2,,2,125714,2,2,0,0,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,810.468878364483,1000.0,95225.76796067788,1,1,1,2,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013651767035754611,39677.40331694912,9,5,9,9_0,9_4,9_0_1 +25694,2,46.0,0.0,1,111,900.0,60.0,0.0,0,37,0.0,0.0,1534.680489034855,960.0,0.0,113.91024287638734,10,0,0,0,0,0,0,0,0,3,75.0,2,,1,125715,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,900.948307309586,900.0,45131.02305306082,0,1,0,1,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021271399030137698,45131.02305306082,10,5,10,10_0,10_4,10_1_0 +25695,2,26.0,0.0,8,211,600.0,,,0,56,0.0,0.0,,888.0,399.049696914198,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,125716,2,1,0,0,2,,480.0,,22,1.0,1.0,4.0,4.0,2.5,4,4,93.86813475563595,600.0,26690.62655623859,0,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03327010694668168,10676.250622495436,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25696,2,47.0,0.0,2,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,536.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,125717,2,2,3,0,1,,365.0,550.0,32,1.0,0.0,2.0,3.0,2.0,3,2,394.264171156294,0.0,24612.25478152932,0,1,2,3,47.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021777769032451683,12306.12739076466,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +25697,2,26.0,0.0,2,111,1598.0,0.0,0.0,54,55,0.0,132.4327277010224,2724.910468308554,1758.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,125718,2,1,2,0,1,,350.0,460.0,43,2.0,0.0,3.0,4.0,2.1,2,2,856.62419461263,1598.0,39990.537477488564,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04396039940672495,19043.11308451836,5,3,5,5_1,5_4,5_0_1 +25698,2,53.0,0.0,1,111,1100.0,1500.0,0.0,55,35,0.0,0.0,1875.7205977092674,2600.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,125719,2,1,2,0,1,,500.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,267.95130661045,1100.0,47127.15740709024,4,4,0,1,100.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055169888086838696,23563.57870354512,6,3,6,6_1,6_2,6_1_0 +25699,2,28.0,0.0,2,112,650.0,1200.0,0.0,46,37,0.0,0.0,1108.3803531918397,1850.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,125720,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,894.406181241622,650.0,76346.5222447698,1,1,1,2,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02423162110867121,50897.6814965132,10,5,10,10_1,10_0,10_0_1 +25700,2,26.0,0.0,1,112,300.0,0.0,0.0,52,64,1582.0242765549024,0.0,511.56016301161833,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,125721,2,1,1,0,1,,198.0,450.0,43,2.0,0.0,6.0,3.0,1.8,2,2,957.446418231529,300.0,34062.16282650525,1,1,2,3,170.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05284455978818062,18923.423792502916,5,3,5,5_1,5_0,5_1_0 +25701,1,33.0,537.0,6,111,254.0,,,85,63,0.0,0.0,,338.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,2,,4,125722,2,1,0,0,2,,348.0,520.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,3,2,127.08018963018334,254.0,34018.09648687638,6,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009935888097983226,10630.655152148871,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +25702,1,49.0,357.0,8,111,720.0,,,68,48,0.0,0.0,,852.0,182.89777775234077,,42,0,0,0,0,0,0,0,0,0,,1,2003.0,6,125723,2,1,0,0,2,,300.0,548.0,43,4.0,0.0,5.0,6.0,3.3,5,5,118.82257641752668,720.0,28592.247734704542,1,4,2,3,89.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02979828686101737,8664.317495365014,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +25703,1,64.0,400.0,2,111,900.0,0.0,0.0,68,64,0.0,0.0,1534.680489034855,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,125724,2,2,0,1,2,432.0,0.0,700.0,43,2.0,0.0,3.0,4.0,2.3,3,2,1083.00712553722,900.0,5970.709305658183,1,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1507358596653012,2595.9605676774713,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25704,2,75.0,0.0,6,112,320.0,0.0,0.0,0,78,2003.897416969543,595.9472746546007,545.6641738790596,2770.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,125725,1,2,5,0,1,,100.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1462.71582863533,320.0,13948.473898542132,0,5,0,1,92.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19858803336826084,13948.473898542132,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +25705,2,38.0,0.0,1,111,900.0,0.0,0.0,38,38,0.0,0.0,1534.680489034855,900.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,,1,125726,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1141.51143318317,900.0,132248.31000081875,1,1,1,2,31.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006805379970408908,88165.54000054584,10,5,10,10_0,10_4,10_1_0 +25706,2,74.0,0.0,2,111,621.0,0.0,0.0,77,75,0.0,0.0,1058.92953743405,711.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,125727,1,1,4,0,2,,144.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,355.266009228217,621.0,28908.43908964541,5,5,0,1,107.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024594894168971926,19272.292726430274,5,3,5,5_1,5_3,5_0_1 +25708,0,58.0,0.0,7,211,800.0,,,85,21,0.0,0.0,,800.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,125729,2,2,0,0,2,,500.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,82.01245126839247,800.0,35517.00000000001,6,1,5,0,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022524424923276172,16912.857142857145,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +25709,2,64.0,0.0,6,111,1600.0,0.0,0.0,75,74,0.0,198.6490915515336,2728.320869395298,1750.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,125730,2,2,3,0,1,,300.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,276.609966371687,1600.0,74604.49058119635,5,5,0,1,150.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02345703303335842,49736.3270541309,10,5,10,10_1,10_3,10_0_0 +25710,1,71.0,205.0,5,111,270.0,0.0,0.0,0,72,0.0,0.0,460.40414671045653,312.0,0.0,0.0,41,2,2,2,1,1,2,2,2,0,,2,,3,125731,1,2,0,1,1,328.0,0.0,410.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1380.42568814233,270.0,28559.160182008487,0,5,2,3,60.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.010924690992718747,28559.160182008487,8,4,8,8_0,8_3,8_0_0 +25711,2,50.0,0.0,7,211,600.0,0.0,0.0,45,67,0.0,132.4327277010224,1023.1203260232367,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,125732,1,1,1,0,1,,218.0,300.0,43,2.0,1.0,4.0,3.0,1.8,2,2,1983.91124886686,600.0,37130.74269889994,1,1,2,3,92.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018852302677499058,20628.190388277744,5,3,5,5_1,5_1,5_0_0 +25712,2,43.0,0.0,2,120,0.0,0.0,0.0,0,47,0.0,662.163638505112,0.0,590.0,124.70303028568689,0.0,42,2,2,2,2,1,2,2,2,2,45.0,1,,2,125733,2,3,4,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,557.550181338375,0.0,28699.085989970146,0,1,1,2,48.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.020558146005283762,28699.085989970146,8,4,8,8_1,8_1,8_0_1 +25713,2,32.0,0.0,9,111,770.0,0.0,0.0,21,42,0.0,0.0,1313.0044183964872,770.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,2006.0,6,125734,2,2,0,0,1,,350.0,319.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1647.29369808313,770.0,30631.143046422076,1,1,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0251378147669204,17017.30169245671,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +25714,1,51.0,500.0,2,111,200.0,200.0,0.0,0,85,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,125735,2,1,0,1,1,,0.0,350.0,31,1.0,2.0,6.0,4.0,2.5,4,2,201.912444052757,200.0,5043.10882746884,0,7,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07931615471418686,2017.243530987536,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25715,2,51.0,0.0,5,112,730.0,0.0,0.0,52,62,0.0,529.7309108040896,1244.7963966616046,1190.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,125736,1,2,1,0,1,,330.0,,43,2.0,1.0,5.0,4.0,2.5,4,3,865.743895625325,730.0,55348.81284279928,1,1,0,1,96.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021500009465059658,22139.525137119712,6,3,6,6_1,6_0,6_0_0 +25716,1,85.0,253.0,9,111,200.0,,,0,77,0.0,0.0,,305.0,145.4868686666347,,71,2,2,1,2,1,2,2,2,0,,2,2004.0,6,125737,2,2,0,0,2,,156.0,295.0,11,0.0,3.0,2.0,1.0,1.0,1,1,132.77193435285966,200.0,7457.089500860585,0,5,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04090067578842945,7457.089500860585,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25717,2,78.0,0.0,5,111,152.0,58.0,0.0,0,77,0.0,0.0,259.1904825925533,210.0,0.0,110.11323478050777,50,0,0,0,0,0,0,0,0,0,,2,,3,125738,1,1,0,1,1,583.0,120.0,315.0,11,0.0,1.0,3.0,1.0,1.0,1,1,464.451697045312,152.0,17555.46389883128,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011962087769949522,17555.46389883128,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +25718,1,34.0,300.0,9,400,1000.0,,,85,69,0.0,0.0,,1300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,125739,2,2,0,0,2,,0.0,550.0,42,1.0,0.0,3.0,2.0,1.5,2,2,85.05616335290799,1000.0,11493.94843888116,6,1,2,3,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11310299562528264,7662.63229258744,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +25719,2,44.0,0.0,5,112,330.0,0.0,0.0,55,68,0.0,0.0,562.7161793127802,2160.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,3,125740,2,1,2,0,1,,190.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,861.534631046645,330.0,34312.113179463835,1,1,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06295152935356901,22874.742119642557,6,3,6,6_1,6_0,6_0_0 +25720,2,34.0,0.0,9,112,400.0,,,0,42,0.0,0.0,,470.0,96.99124577775646,,20,0,0,0,0,0,0,0,0,2,70.0,2,2007.0,6,125741,2,1,0,0,2,,120.0,710.0,12,1.0,2.0,3.0,1.0,1.0,1,1,86.68522270938854,400.0,40438.609183856555,0,1,2,3,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011622556004908994,40438.609183856555,9,5,9,9_0,9_1,9_0_0 +25721,1,25.0,290.0,1,111,1400.0,0.0,0.0,84,46,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,1,125742,2,2,0,0,1,,0.0,900.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1275.5230635867,1400.0,27077.06030419325,3,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.051704283414517896,18051.373536128835,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +25722,2,44.0,0.0,2,111,800.0,1380.0,0.0,42,62,0.0,0.0,1364.160434697649,2180.0,0.0,2619.935586156909,50,2,2,2,2,1,2,2,2,2,10.0,1,,2,125743,2,1,4,0,1,,270.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,325.525493691261,800.0,39119.67726941405,1,1,1,2,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.055726431099789406,21733.154038563363,6,3,6,6_1,6_3,6_0_1 +25723,2,63.0,0.0,7,111,800.0,,,0,77,0.0,0.0,,920.0,166.2707070475825,,70,0,0,0,0,0,0,0,0,0,,1,,5,125744,2,2,0,0,2,,560.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,103.38432388626195,800.0,10522.26829268293,0,5,0,1,82.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08743361929288174,10522.26829268293,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +25724,2,42.0,0.0,1,111,0.0,0.0,1000.0,0,55,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,71,0,0,0,0,0,0,0,0,2,20.0,2,,1,125745,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1814.1726487861,0.0,26828.689194207833,0,1,1,2,40.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03727353180623877,26828.689194207833,7,4,7,7_0,7_3,7_1_0 +25725,2,71.0,0.0,1,111,765.0,2211.0,0.0,43,31,0.0,0.0,1304.4784156796268,2976.0,0.0,4197.592449994873,10,2,2,2,2,2,2,2,1,1,3.0,2,,1,125746,2,2,0,0,1,,650.0,,43,2.0,2.0,5.0,4.0,2.5,4,4,1696.554446069,765.0,212208.16651581042,1,1,0,1,180.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.014023965471556323,84883.26660632416,10,5,10,10_0,10_3,10_1_0 +25726,1,52.0,327.0,2,111,250.0,0.0,0.0,0,85,0.0,0.0,426.3001358430153,280.0,41.567676761895626,0.0,31,2,2,2,2,1,2,2,2,0,,2,,2,125747,2,1,0,1,1,840.0,0.0,342.0,31,0.0,0.0,4.0,3.0,2.0,3,2,378.714128383217,250.0,13204.389211357717,0,7,2,3,70.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.021205070186749633,6602.194605678858,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25727,2,58.0,0.0,2,221,583.0,0.0,0.0,90,43,0.0,0.0,994.1319167859117,2242.0,2298.6925249328283,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,125748,2,3,3,0,1,,700.0,1022.0,42,1.0,2.0,3.0,3.0,2.0,3,3,7314.62769299858,583.0,37699.4478305639,5,1,2,3,100.0,1,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05947036704825034,18849.72391528195,5,3,5,5_1,5_1,5_0_1 +25728,1,53.0,260.0,2,111,420.0,,,0,81,0.0,0.0,,470.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,2,125749,2,2,0,0,2,,200.0,680.0,12,1.0,0.0,3.0,1.0,1.0,1,1,45.491820062709905,420.0,8096.105248641012,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.058052604995333136,8096.105248641012,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +25729,2,62.0,0.0,5,112,435.0,865.0,0.0,0,77,0.0,0.0,741.7622363668467,1300.0,0.0,1642.2060014679175,70,0,0,0,0,0,0,0,0,0,,1,,3,125750,2,1,2,0,1,,192.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,722.18246604549,435.0,24404.36698815873,0,5,0,1,90.0,7,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053269154681650804,24404.36698815873,7,4,7,7_1,7_1,7_0_0 +25730,1,87.0,144.0,1,111,240.0,89.0,0.0,0,74,0.0,0.0,409.2481304092947,329.0,0.0,168.96686026664122,10,0,0,0,0,0,0,0,0,0,,2,,1,125751,2,1,0,1,1,720.0,0.0,524.0,11,0.0,2.0,4.0,1.0,1.0,1,1,791.082185108129,240.0,13897.19649748652,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0236738395445084,13897.19649748652,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +25731,2,56.0,0.0,2,111,1000.0,0.0,0.0,86,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,45.0,1,,2,125752,2,1,1,0,1,,250.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,617.204254954674,1000.0,64740.07506346121,6,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.015446383079101372,43160.05004230748,9,5,9,9_1,9_4,9_0_1 +25732,2,69.0,0.0,1,400,750.0,0.0,0.0,77,78,1054.6828510366015,397.2981831030672,1278.9004075290459,2350.0,415.67676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125753,2,1,1,0,1,,474.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,956.647846121234,750.0,16851.701880797555,5,5,0,1,95.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13945179048519815,11234.467920531702,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +25733,2,71.0,0.0,2,120,560.0,0.0,0.0,0,86,1487.1028199616082,0.0,954.9123042883542,2066.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,125754,2,2,3,0,1,,410.0,,11,0.0,11.0,5.0,1.0,1.0,1,1,839.311835053856,560.0,19017.621189117395,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10863608962735274,19017.621189117395,5,3,5,5_1,5_0,5_0_1 +25734,0,39.0,0.0,7,111,222.0,430.0,0.0,0,38,0.0,0.0,378.5545206285976,652.0,0.0,816.3567406141093,12,0,0,0,0,0,0,0,0,2,5.0,2,,5,125755,1,1,0,0,2,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,317.536734053935,222.0,52988.75472710695,0,1,5,0,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01230449749872047,52988.75472710695,10,5,10,10_0,10_3,10_0_0 +25735,2,43.0,0.0,2,111,700.0,2000.0,0.0,38,37,0.0,0.0,1193.6403803604428,2700.0,0.0,3797.008095879578,12,2,2,2,1,1,2,2,2,2,45.0,1,,2,125756,2,3,1,0,1,,610.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,916.087490747059,700.0,176570.7961240069,1,1,1,2,195.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.015291316906697135,84081.33148762233,10,5,10,10_1,10_4,10_0_1 +25736,2,84.0,0.0,2,112,1200.0,0.0,0.0,78,78,0.0,662.163638505112,2046.2406520464733,1880.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,125757,2,2,1,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1558.01392958093,1200.0,33157.8635693459,6,5,0,1,70.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056698465993389284,22105.242379563933,6,3,6,6_1,6_0,6_0_1 +25737,2,62.0,0.0,5,111,600.0,0.0,0.0,54,90,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,125758,2,1,0,2,1,,432.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,342.857403912994,600.0,23939.625527859887,1,5,0,1,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025063048680596372,15959.750351906592,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +25738,2,46.0,0.0,5,111,450.0,750.0,0.0,37,22,0.0,0.0,767.3402445174275,1200.0,0.0,1423.8780359548418,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,125759,1,1,1,0,1,,0.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,1388.07168700104,450.0,170586.61155478394,1,1,1,2,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007034549716784893,113724.4077031893,10,5,10,10_1,10_3,10_0_0 +25739,2,51.0,0.0,5,111,1668.0,0.0,0.0,52,38,0.0,0.0,2844.274506344598,1668.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,125760,2,1,0,0,1,,0.0,579.0,43,2.0,0.0,3.0,4.0,2.5,4,4,795.669869951605,1668.0,64401.65690592541,1,4,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02589995475483694,25760.662762370164,7,4,7,7_0,7_4,7_0_0 +25740,2,29.0,0.0,2,111,350.0,665.0,0.0,0,46,0.0,0.0,596.8201901802214,1015.0,0.0,1262.5051918799597,31,0,0,0,0,0,0,0,0,0,,2,,2,125761,2,1,0,0,1,,330.0,306.0,12,1.0,0.0,3.0,1.0,1.0,1,1,459.486140403428,350.0,18209.4828232523,0,4,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05574018822236469,18209.4828232523,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +25741,2,77.0,0.0,5,111,14.0,0.0,0.0,77,75,0.0,0.0,23.872807607208856,14.0,0.0,0.0,60,1,2,2,2,1,2,2,2,0,,2,,3,125762,1,1,0,1,2,,0.0,950.0,41,0.0,2.0,3.0,2.0,1.5,2,2,771.852137207371,14.0,30469.95897072157,5,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.00045946894820083375,20313.305980481047,5,3,5,5_0,5_4,5_0_0 +25742,2,56.0,0.0,8,111,426.0,1042.0,0.0,63,56,0.0,0.0,726.415431476498,1468.0,0.0,1978.24121795326,50,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,125763,2,2,5,0,1,,267.0,640.0,43,3.0,1.0,4.0,3.0,2.0,3,3,415.707398393131,426.0,56914.04526167009,1,1,2,3,90.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02579328166273667,28457.022630835047,8,4,8,8_1,8_2,8_0_0 +25743,2,27.0,0.0,9,111,324.0,636.0,0.0,52,47,0.0,0.0,552.4849760525478,1060.0,138.5589225396521,1207.4485744897058,20,0,0,0,0,0,0,0,0,2,15.0,2,2010.0,6,125764,2,1,0,0,1,,56.0,710.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1779.36987571801,324.0,40290.40144985681,1,1,2,3,42.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026308995737339996,26860.267633237872,7,4,7,7_0,7_3,7_0_0 +25744,2,66.0,0.0,2,111,580.0,0.0,0.0,86,75,1642.1411990639886,0.0,989.0163151557955,2137.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,125765,2,1,1,0,1,,355.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,350.300991359631,580.0,16843.967119303656,6,5,0,1,100.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12687034977353634,11229.311412869103,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +25745,1,32.0,270.0,2,111,180.0,,,0,45,0.0,0.0,,295.0,159.34276092059991,,70,0,0,0,0,0,0,0,0,0,,2,,2,125766,2,1,0,0,2,,300.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,112.4729138488867,180.0,14781.279779273938,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01995767649386111,14781.279779273938,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +25746,2,57.0,0.0,5,111,420.0,90.0,0.0,0,54,0.0,0.0,716.1842282162656,510.0,0.0,170.865364314581,70,0,0,0,0,0,0,0,0,1,15.0,2,,3,125767,2,1,0,1,1,671.0,0.0,515.0,22,2.0,0.0,3.0,2.0,1.5,2,2,473.527446388868,420.0,48323.26672173775,0,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010553922253161362,32215.511147825167,8,4,8,8_0,8_4,8_0_0 +25747,1,42.0,400.0,6,211,1068.0,,,67,81,0.0,0.0,,1137.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,4,125768,2,1,0,0,2,,520.0,600.0,43,2.0,0.0,3.0,4.0,2.3,3,2,89.5424520038517,1068.0,5956.973041630805,4,4,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.19086875029549072,2589.9882789699154,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +25748,2,66.0,0.0,1,112,780.0,0.0,0.0,78,78,0.0,0.0,1330.0564238302077,930.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,7,,1,125769,2,1,0,0,1,,0.0,177.0,41,0.0,2.0,3.0,2.0,1.5,2,2,559.761920350495,780.0,34634.97856060947,5,5,2,3,57.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026851467465832175,23089.985707072978,6,3,6,6_1,6_1,6_1_0 +25749,2,69.0,0.0,1,120,623.0,1910.0,0.0,77,75,0.0,0.0,1062.339938520794,2533.0,0.0,3626.142731564997,50,0,0,0,0,0,0,0,0,0,,1,,1,125770,2,2,3,0,1,,830.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1122.77692485808,623.0,30265.88169285454,5,5,0,1,118.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08369159787596787,20177.254461903027,5,3,5,5_1,5_0,5_1_0 +25750,2,55.0,0.0,6,300,800.0,0.0,0.0,38,21,0.0,595.9472746546007,1364.160434697649,1477.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,125771,2,2,2,0,1,,248.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,778.522827405021,800.0,93770.20982221652,1,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015751271142512274,62513.47321481101,10,5,10,10_1,10_0,10_0_0 +25751,0,43.0,0.0,6,211,450.0,0.0,0.0,85,35,0.0,0.0,767.3402445174275,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,,4,125772,1,3,3,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1435.19792639342,450.0,7618.446959316409,6,4,5,0,50.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05906715665319507,5078.964639544273,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +25752,2,39.0,0.0,9,120,2160.0,0.0,0.0,46,46,0.0,509.8660016489362,3683.2331736836522,2545.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,125773,2,2,3,0,1,,290.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1630.09863687441,2160.0,41317.18693764675,1,1,1,2,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06159664267174701,22953.992743137085,6,3,6,6_1,6_0,6_0_0 +25753,2,81.0,0.0,7,120,792.0,0.0,0.0,77,72,1708.5862186792945,0.0,1350.5188303506725,2540.0,177.35542085075468,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,125774,2,1,2,0,1,,402.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,575.334358641639,792.0,112685.13504437511,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022540683817787985,75123.42336291674,10,5,10,10_1,10_0,10_0_0 +25754,1,49.0,285.0,8,111,606.0,,,0,55,0.0,0.0,,781.0,242.47811444439117,,71,0,0,0,0,0,0,0,0,2,10.0,2,1999.0,6,125775,2,1,0,0,2,,460.0,690.0,32,1.0,1.0,4.0,3.0,1.8,2,1,109.23283071036428,606.0,24686.084638222877,0,1,2,3,95.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03163725683702522,13714.491465679375,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +25755,2,73.0,0.0,5,111,321.0,1178.0,0.0,74,74,0.0,0.0,547.3693744224316,1499.0,0.0,2236.4377684730716,12,0,0,0,0,0,0,0,0,0,,2,,3,125776,2,2,0,0,1,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1631.16271634614,321.0,111096.91912083491,5,5,0,1,119.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013492723397393297,74064.61274722328,10,5,10,10_0,10_3,10_0_0 +25756,2,60.0,0.0,1,111,2640.0,0.0,0.0,75,74,0.0,0.0,4501.729434502242,2700.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,125777,2,2,3,0,1,,600.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1145.13124178433,2640.0,49852.84867339263,5,5,1,2,110.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.054159392529178355,33235.23244892842,8,4,8,8_1,8_3,8_1_0 +25757,2,37.0,0.0,5,111,1000.0,0.0,0.0,37,85,0.0,463.51454695357836,1705.2005433720612,1350.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,125778,2,1,1,0,1,,360.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1903.33050085093,1000.0,64268.58802159675,1,6,1,2,95.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02100559607045276,30604.089534093688,8,4,8,8_1,8_3,8_0_0 +25758,2,77.0,0.0,2,300,270.0,0.0,0.0,0,77,2109.365702073203,0.0,460.40414671045653,2330.0,83.13535352379125,0.0,70,2,2,2,1,1,2,2,2,0,,1,,2,125779,2,2,3,0,1,,282.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1229.91844054041,270.0,11763.00929757029,0,5,0,1,99.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.19807856485170622,11763.00929757029,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +25759,1,21.0,345.0,1,111,345.0,464.0,0.0,0,67,0.0,0.0,588.2941874633611,809.0,0.0,880.9058782440621,71,0,0,0,0,0,0,0,0,0,,2,,1,125780,1,2,0,1,2,,237.0,450.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2261.53863827691,345.0,9247.839795771708,0,1,2,3,97.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08747988912717655,9247.839795771708,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +25760,1,81.0,34.0,5,111,140.0,1010.0,0.0,0,78,0.0,0.0,238.72807607208856,1150.0,0.0,1917.4890884191868,71,2,2,2,2,1,2,2,2,0,,2,,3,125781,2,1,0,0,1,,0.0,355.0,11,0.0,5.0,2.0,1.0,1.0,1,1,1500.74914438737,140.0,16340.85017419112,0,5,2,3,52.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,1,0.07037577529572604,16340.85017419112,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +25761,2,40.0,0.0,5,112,500.0,0.0,0.0,53,45,3164.0485531098047,893.9209119819011,852.6002716860306,4245.0,96.99124577775646,0.0,20,2,2,2,1,2,2,2,2,4,75.0,1,,3,125782,2,3,1,0,1,,331.0,,43,2.0,0.0,13.0,5.0,2.4,2,2,470.24026365626,500.0,132909.80715406485,1,1,1,2,300.0,10,0,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03193895236849851,55379.08631419369,10,5,10,10_1,10_0,10_0_0 +25762,2,31.0,0.0,9,120,0.0,0.0,0.0,53,53,0.0,0.0,0.0,1588.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,2013.0,6,125783,2,1,1,0,1,,198.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,5686.67240594428,0.0,43493.57058948558,1,1,1,2,120.0,0,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03651114356621467,20711.224090231226,5,3,5,5_1,5_1,5_0_0 +25764,1,38.0,425.0,8,111,360.0,,,0,56,0.0,0.0,,420.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,125785,2,1,0,0,2,,200.0,379.0,32,1.0,1.0,3.0,3.0,1.8,2,1,135.70819692325566,360.0,11372.814605101607,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03693017204479855,6318.230336167559,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25766,2,63.0,0.0,6,111,171.0,,,75,74,0.0,0.0,,217.0,63.73710436823996,,20,0,0,0,0,0,0,0,0,0,,2,,4,125787,2,1,0,0,2,,140.0,764.0,41,0.0,4.0,5.0,2.0,1.5,2,2,157.2657279449122,171.0,86337.69146567094,5,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00251338663700873,57558.46097711396,10,5,10,10_0,10_2,10_0_0 +25767,2,44.0,0.0,9,112,1570.0,0.0,0.0,52,56,0.0,1191.8945493092015,2677.164853094136,2470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,125788,2,1,1,0,1,,500.0,,43,3.0,1.0,10.0,10.0,4.699999999999999,6,5,1991.4688009556,1570.0,78530.70149222601,1,1,1,2,215.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031452666957833206,16708.659891962983,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +25768,2,49.0,0.0,2,112,990.0,0.0,0.0,65,63,0.0,0.0,1688.1485379383405,1060.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,125789,2,1,2,0,1,,80.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,774.661913206656,990.0,49427.88637731914,1,1,0,1,152.0,7,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021445383925750863,19771.154550927655,5,3,5,5_1,5_0,5_0_1 +25769,1,65.0,216.0,6,111,840.0,700.0,0.0,63,47,0.0,0.0,1432.3684564325313,1540.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,,4,125790,2,2,0,0,1,,0.0,492.0,43,3.0,4.0,4.0,7.0,3.4,4,4,965.648643910243,840.0,43534.201558352564,1,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03537448591852105,12804.176928927225,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +25770,2,62.0,0.0,7,112,500.0,,,56,34,0.0,0.0,,566.0,91.44888887617039,,30,0,0,0,0,0,0,0,0,0,,1,,5,125791,2,1,0,0,2,,150.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,113.09840619287502,500.0,78504.76924579676,4,1,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007209753056248927,52336.512830531174,10,5,10,10_1,10_1,10_0_0 +25771,2,36.0,0.0,9,112,1300.0,0.0,0.0,43,62,0.0,132.4327277010224,2216.7607063836795,1400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,125792,2,1,1,0,1,,120.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,343.741553887774,1300.0,57814.36192132968,1,1,1,2,135.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024215436328866455,27530.648533966512,7,4,7,7_1,7_0,7_0_0 +25772,2,49.0,0.0,2,111,800.0,800.0,0.0,37,42,0.0,0.0,1364.160434697649,1600.0,0.0,1518.8032383518312,30,0,0,0,0,0,0,0,0,2,15.0,1,,2,125793,2,1,3,0,1,,600.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,348.594700575819,800.0,56502.235220463845,1,1,1,2,110.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028317463791600866,28251.117610231922,8,4,8,8_1,8_3,8_0_1 +25773,1,25.0,270.0,2,111,600.0,200.0,0.0,0,63,0.0,0.0,1023.1203260232367,800.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,2,125794,2,2,0,0,1,,0.0,371.0,22,1.0,6.0,3.0,2.0,1.5,2,2,478.520596144507,600.0,12363.555981413887,0,1,2,3,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06470630304118319,8242.370654275925,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25774,0,28.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,406.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,125795,1,2,0,0,2,,0.0,,32,1.0,0.0,2.0,4.0,1.9,1,1,121.6929495835282,0.0,5206.504775388589,0,4,5,0,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07797937724347867,2740.2656712571525,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25775,2,69.0,0.0,7,111,600.0,,,0,86,0.0,0.0,,730.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,5,125796,2,1,0,0,2,,1200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,46.96124626046994,600.0,10243.066957194054,0,6,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07126771728142382,10243.066957194054,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25776,2,58.0,0.0,2,112,1500.0,0.0,0.0,90,31,3374.985123317125,198.6490915515336,2557.8008150580918,4910.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,125797,2,1,2,0,2,,750.0,,42,1.0,2.0,6.0,3.0,2.0,3,3,530.944349004208,1500.0,93524.83846670603,6,1,0,1,103.0,7,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05249942240475416,46762.419233353015,10,5,10,10_1,10_1,10_0_1 +25777,2,64.0,0.0,1,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1541.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125798,2,2,4,0,1,,247.0,550.0,11,0.0,0.0,3.0,1.0,1.0,1,1,748.643154747585,0.0,24681.027896534433,0,5,2,3,80.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06243662162127284,24681.027896534433,7,4,7,7_1,7_1,7_1_0 +25778,2,62.0,0.0,1,120,720.0,0.0,0.0,86,78,0.0,0.0,1227.744391227884,816.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125799,2,1,1,0,1,,640.0,,41,1.0,0.0,5.0,4.0,2.5,4,4,803.937891069555,720.0,54919.269996355404,6,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01485817273343495,21967.707998542162,6,3,6,6_1,6_0,6_1_0 +25779,2,47.0,0.0,7,211,150.0,,,0,64,0.0,0.0,,171.0,29.09737373332694,,71,0,0,0,0,0,0,0,0,2,90.0,1,,5,125800,2,1,0,0,1,,120.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,93.43579584664872,150.0,31262.89940420255,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005469742194705496,31262.89940420255,8,4,8,8_1,8_2,8_0_0 +25780,2,65.0,0.0,2,111,220.0,400.0,0.0,85,78,0.0,0.0,375.14411954185346,620.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,125801,1,2,0,0,2,,0.0,,41,0.0,0.0,3.0,4.0,2.5,4,4,454.701492059056,220.0,24352.259632029552,6,5,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02545964971499149,9740.903852811822,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +25781,2,29.0,0.0,9,120,1395.0,0.0,0.0,54,55,0.0,0.0,2378.7547580040255,1395.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,23.0,1,2011.0,6,125802,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1107.47991158022,1395.0,59505.819115100734,1,1,1,2,127.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023443085411557544,33058.788397278186,8,4,8,8_1,8_0,8_0_0 +25782,2,63.0,0.0,5,111,344.0,0.0,0.0,0,77,0.0,0.0,586.588986919989,344.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,125803,2,1,0,0,1,,0.0,595.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1950.62239186264,344.0,22494.98853014247,0,5,2,3,51.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015292294972235814,22494.98853014247,6,3,6,6_0,6_3,6_0_0 +25783,2,84.0,0.0,1,111,405.0,1832.0,0.0,0,77,0.0,0.0,690.6062200656847,2237.0,0.0,3478.0594158256936,70,0,0,0,0,0,0,0,0,0,,1,,1,125804,2,3,4,0,2,,384.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,680.046465222097,405.0,16994.03619564033,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13163441422902716,16994.03619564033,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +25784,2,77.0,0.0,5,111,640.0,,,75,72,0.0,0.0,,724.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,1,,3,125805,2,1,0,0,2,,80.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,88.5538568886709,640.0,30526.823577536336,5,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02371684686292639,20351.21571835756,5,3,5,5_1,5_3,5_0_0 +25785,2,71.0,0.0,2,211,180.0,,,0,77,0.0,0.0,,180.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,125806,2,2,0,0,2,,180.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,72.94242593683786,180.0,9418.076516707726,0,5,0,1,71.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019112182798757142,6278.717677805151,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +25786,1,30.0,377.0,2,111,330.0,0.0,0.0,0,56,0.0,0.0,562.7161793127802,330.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,40.0,2,,2,125807,2,1,0,1,1,609.0,0.0,360.0,32,1.0,0.0,4.0,2.0,1.3,1,1,282.454731536859,330.0,9477.162425338303,0,1,2,3,82.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034820549146409724,7290.124942567925,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25787,2,34.0,0.0,9,111,500.0,,,46,34,0.0,0.0,,500.0,0.0,,12,0,0,0,0,0,0,0,0,2,35.0,2,2007.0,6,125808,2,2,0,0,2,,232.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,148.79292523540948,500.0,77449.21042338942,1,1,1,2,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006455843736387551,51632.80694892628,10,5,10,10_0,10_2,10_0_0 +25788,1,73.0,278.0,2,111,272.0,525.0,0.0,77,78,0.0,0.0,463.81454779720065,797.0,0.0,996.7146251683893,71,2,1,2,2,1,2,2,2,0,,2,,2,125809,2,1,0,1,1,492.0,500.0,271.0,41,0.0,1.0,3.0,2.0,1.5,2,2,331.346530547281,272.0,8131.548098751006,7,5,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0980133168150869,5421.032065834004,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25789,2,74.0,0.0,1,111,575.0,,,0,78,0.0,0.0,,851.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,0,,1,,1,125810,2,2,0,0,2,,424.0,,21,1.0,2.0,3.0,2.0,1.5,2,2,78.8815443707613,575.0,20861.66841136693,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04079251875829425,13907.778940911287,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +25790,0,87.0,0.0,8,300,1200.0,0.0,0.0,0,72,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,125811,2,1,1,0,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1455.79353994586,1200.0,16730.983757726262,0,5,5,0,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07172321827434969,16730.983757726262,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +25791,0,49.0,0.0,6,211,2400.0,,,45,34,0.0,0.0,,2475.0,103.91919190473907,,10,0,0,0,0,0,0,0,0,0,,1,,4,125812,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,68.61431506165778,2400.0,109695.27435954813,1,1,5,0,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022562503393607405,43878.10974381925,10,5,10,10_1,10_2,10_0_0 +25792,2,44.0,0.0,7,111,384.0,0.0,0.0,52,56,0.0,0.0,654.7970086548714,516.0,182.89777775234077,0.0,50,0,0,0,0,0,0,0,0,1,3.0,2,,5,125813,2,2,0,1,1,432.0,0.0,670.0,43,2.0,2.0,3.0,4.0,2.1,2,2,1850.85124253159,384.0,42779.09688544242,1,1,2,3,65.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012061965716148464,20370.998516877342,5,3,5,5_0,5_2,5_0_0 +25793,2,36.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,329.0,0.0,0.0,33,2,2,2,2,1,2,2,2,3,35.0,2,,1,125814,1,3,0,0,2,,0.0,756.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1141.44588948617,0.0,30604.414797299374,0,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.010750083024918089,20402.943198199584,5,3,5,5_0,5_4,5_1_0 +25794,2,66.0,0.0,2,111,210.0,250.0,0.0,0,75,0.0,0.0,358.0921141081328,460.0,0.0,474.62601198494724,33,0,0,0,0,0,0,0,0,0,,2,,2,125815,2,2,0,1,2,,0.0,652.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2137.0055593736,210.0,25840.78557759162,0,5,2,3,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017801316396468172,25840.78557759162,7,4,7,7_0,7_3,7_0_1 +25795,2,68.0,0.0,2,400,484.0,,,77,77,0.0,0.0,,622.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,0,,1,,2,125816,2,1,0,0,2,,424.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,103.84066580684228,484.0,36676.65092958861,5,5,0,1,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01695901845547752,24451.10061972574,7,4,7,7_1,7_1,7_0_1 +25796,2,26.0,0.0,1,111,800.0,0.0,0.0,55,56,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,2,2,2,2,1,1,2,2,3,30.0,2,,1,125817,1,3,0,0,1,,0.0,632.0,43,2.0,0.0,3.0,2.0,1.5,2,2,126.974330344694,800.0,12434.991036815125,4,1,2,3,58.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.0643345859785113,8289.994024543417,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +25797,1,33.0,253.0,6,211,180.0,,,0,68,0.0,0.0,,262.0,113.61831648251471,,71,0,0,0,0,0,0,0,0,0,,2,,4,125818,2,2,0,0,1,,350.0,392.0,22,1.0,3.0,4.0,2.0,1.5,2,2,93.88785905833714,180.0,12157.063062988773,0,4,2,3,82.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021551257786729634,8104.708708659182,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25798,2,30.0,0.0,7,211,1572.0,0.0,0.0,63,43,0.0,99.3245457757668,2680.57525418088,1647.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,,5,125819,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1470.49289637557,1572.0,45456.79944702678,1,1,1,2,97.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03623220332349479,30304.53296468452,8,4,8,8_1,8_1,8_0_0 +25799,0,46.0,0.0,7,111,0.0,,,0,63,0.0,0.0,,244.0,0.0,,71,0,0,0,0,0,0,0,0,0,,7,,5,125820,1,3,0,0,2,,520.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,42.018564941393365,0.0,12049.780487636915,0,4,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020249331533495087,8033.186991757943,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25800,2,56.0,0.0,1,211,2320.0,0.0,0.0,77,22,210.9365702073203,0.0,3956.065260623182,2570.0,69.27946126982604,0.0,50,2,2,1,2,2,2,2,1,2,8.0,1,,1,125821,2,1,2,0,1,,246.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1780.37585300475,2320.0,21971.77896158662,5,1,0,1,120.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.11696822567226554,14647.852641057747,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +25801,2,32.0,0.0,7,111,0.0,,,42,53,0.0,0.0,,291.0,0.0,,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,125822,2,1,0,0,2,,247.0,180.0,43,2.0,0.0,5.0,4.0,2.1,2,2,77.67285636535378,0.0,77303.0,1,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003764407590908503,36810.95238095238,9,5,9,9_1,9_2,9_0_0 +25802,2,37.0,0.0,1,111,0.0,0.0,1200.0,65,55,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,20,2,2,1,2,1,2,2,2,2,20.0,1,,1,125823,1,1,3,0,1,,0.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,251.59211367197,0.0,28938.098629096105,4,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.04146782466189564,19292.065752730738,5,3,5,5_1,5_3,5_1_0 +25803,1,18.0,250.0,1,221,1128.0,0.0,0.0,0,63,0.0,0.0,1923.466212923685,1218.0,124.70303028568689,0.0,60,2,2,2,1,1,2,2,2,2,45.0,1,,1,125824,1,3,3,0,2,,0.0,290.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1799.27328236072,1128.0,8730.08939726328,0,1,2,3,59.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,1,0.13951747165175882,8730.08939726328,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +25804,2,72.0,0.0,5,111,576.0,2173.0,0.0,75,77,0.0,198.6490915515336,982.1955129823073,2899.0,0.0,4125.449296173161,60,0,0,0,0,0,0,0,0,0,,1,,3,125825,2,1,2,0,2,,349.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,2665.16586760717,576.0,70657.32240020724,5,5,0,1,112.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04102901017929739,35328.66120010362,9,5,9,9_1,9_3,9_0_0 +25805,2,63.0,0.0,7,221,925.0,0.0,0.0,0,74,0.0,0.0,1577.3105026191565,925.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,125826,2,2,2,0,1,,321.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1003.64883452145,925.0,30544.011993465574,0,5,0,1,85.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030284168307617536,30544.011993465574,8,4,8,8_1,8_1,8_0_0 +25806,2,57.0,0.0,5,111,2000.0,,,71,13,0.0,0.0,,2576.0,798.099393828396,,71,0,0,0,0,0,0,0,0,0,,1,,3,125827,2,1,0,0,2,,1200.0,,42,4.0,0.0,7.0,8.0,4.1,6,6,116.54568263766217,2000.0,55362.0,5,1,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04653011090639789,13502.926829268294,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +25807,2,66.0,0.0,1,300,750.0,0.0,0.0,52,75,0.0,1854.0581878143134,1278.9004075290459,2270.0,166.2707070475825,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,125828,2,1,1,0,1,,300.0,,42,1.0,1.0,8.0,3.0,1.8,2,2,751.653768467232,750.0,36151.64008423532,1,5,0,1,200.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0627910654872303,20084.244491241843,5,3,5,5_1,5_0,5_1_0 +25808,1,42.0,107.0,2,111,530.0,180.0,0.0,85,63,0.0,0.0,903.7562879871924,710.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,2,,2,125829,2,1,0,1,1,385.0,700.0,304.0,42,1.0,0.0,3.0,6.0,2.9,3,3,272.932666289517,530.0,36763.367511505385,6,1,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.01931270305359812,12677.023279829444,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25809,1,69.0,240.0,7,111,200.0,,,0,72,0.0,0.0,,294.0,130.24538718727297,,71,0,0,0,0,0,0,0,0,0,,2,,5,125830,2,2,0,0,2,,200.0,480.0,11,0.0,3.0,3.0,1.0,1.0,1,1,99.05487170615284,200.0,21790.928822186106,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013491852614408446,21790.928822186106,6,3,6,6_0,6_3,6_0_0 +25810,2,24.0,0.0,2,300,900.0,0.0,0.0,42,69,0.0,0.0,1534.680489034855,980.0,110.84713803172167,0.0,60,2,2,2,2,2,1,2,2,0,,1,,2,125831,1,2,3,0,2,,250.0,420.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1186.37999833766,900.0,31842.627189222156,1,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.03077635504685062,21228.418126148103,5,3,5,5_1,5_0,5_0_1 +25811,2,49.0,0.0,7,112,800.0,0.0,0.0,42,31,1845.6949893140527,66.2163638505112,1364.160434697649,2700.0,138.5589225396521,0.0,10,2,2,2,2,1,2,2,2,0,,1,,5,125832,1,2,3,0,1,,630.0,600.0,43,2.0,2.0,5.0,3.0,2.0,3,2,960.130443371364,800.0,91633.35120620014,1,1,2,3,160.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.029465254347451078,45816.67560310007,10,5,10,10_1,10_0,10_0_0 +25812,1,20.0,351.0,1,211,540.0,1332.0,0.0,0,81,0.0,0.0,920.8082934209131,1872.0,0.0,2528.807391855799,50,0,0,0,0,0,0,0,0,0,,1,,1,125833,1,2,2,0,1,,687.0,390.0,22,2.0,1.0,5.0,3.0,2.0,3,2,1268.00344935399,540.0,18585.458028413275,0,4,2,3,80.0,3,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10072390990515831,9292.729014206638,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +25813,1,56.0,200.0,8,300,200.0,,,0,43,0.0,0.0,,248.0,66.50828281903301,,50,0,0,0,0,0,0,0,0,1,5.0,1,2003.0,6,125834,2,1,0,0,1,,100.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,94.81098121887305,200.0,20822.836411807675,0,1,1,2,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.011910000880541451,13881.890941205116,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +25814,2,76.0,0.0,2,111,367.0,96.0,0.0,0,77,0.0,0.0,625.8085994175465,463.0,0.0,182.25638860221974,70,2,2,1,2,1,2,2,2,0,,2,,2,125835,2,2,0,1,1,900.0,0.0,423.0,11,0.0,4.0,5.0,1.0,1.0,1,1,1282.66952452972,367.0,18343.379271784233,0,5,2,3,91.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.025240714545557378,18343.379271784233,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +25816,2,82.0,0.0,9,111,268.0,,,0,77,0.0,0.0,,436.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,125837,2,1,0,0,2,,200.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,126.36390163015203,268.0,10513.853658536595,0,5,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041469095363144526,10513.853658536595,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +25817,2,85.0,0.0,5,211,738.0,,,0,78,0.0,0.0,,870.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,125838,2,1,0,0,2,,604.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,128.3702473473919,738.0,9071.152946227756,0,5,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09590842588116541,9071.152946227756,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25818,2,77.0,0.0,2,111,244.0,,,0,77,0.0,0.0,,314.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,0,,1,,2,125839,1,2,0,0,2,,527.0,40.0,11,0.0,6.0,3.0,1.0,1.0,1,1,126.1950751361264,244.0,11822.476575543957,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026559578950618706,11822.476575543957,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +25819,1,61.0,310.0,2,111,360.0,360.0,0.0,0,77,0.0,0.0,613.872195613942,720.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,0,,2,,2,125840,2,1,0,1,1,,0.0,270.0,21,1.0,6.0,5.0,2.0,1.5,2,2,545.672228537292,360.0,14099.301109834742,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.051066360977125,9399.534073223162,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +25820,1,47.0,271.0,2,111,115.0,200.0,0.0,0,68,0.0,0.0,196.09806248778705,315.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,125841,2,2,0,1,1,450.0,0.0,268.0,12,1.0,0.0,2.0,1.0,1.0,1,1,294.311312620932,115.0,11136.19777796716,0,4,2,3,45.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.028286135562644543,11136.19777796716,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25821,1,44.0,135.0,1,111,960.0,860.0,0.0,85,63,0.0,0.0,1636.9925216371787,1820.0,0.0,1632.7134812282186,50,0,0,0,0,0,0,0,0,0,,1,,1,125842,2,1,1,0,1,,370.0,505.0,42,3.0,2.0,4.0,5.0,2.8,4,4,99.7953958245537,960.0,7182.17896389325,6,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.25340499159790236,2565.063915676161,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +25822,2,49.0,0.0,9,111,0.0,,,0,34,0.0,0.0,,837.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,2,2007.0,6,125843,2,2,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,242.11753096194408,0.0,51763.0,0,1,1,2,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016169851051909667,51763.0,10,5,10,10_0,10_2,10_0_0 +25823,2,56.0,0.0,6,400,580.0,0.0,0.0,55,38,2214.833987176863,26.486545540204478,989.0163151557955,2760.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,125844,2,1,2,0,1,,1200.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,2420.8104713815,580.0,60866.80559320016,1,1,0,1,98.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04534491293080671,30433.40279660008,8,4,8,8_1,8_0,8_0_0 +25824,2,47.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,748.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,125845,2,1,1,0,1,,680.0,,32,2.0,0.0,4.0,3.0,2.0,3,3,796.963626033466,0.0,20894.55608643022,0,1,1,2,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03579879835235082,10447.27804321511,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +25825,2,66.0,0.0,5,111,210.0,500.0,0.0,0,78,0.0,0.0,358.0921141081328,710.0,0.0,949.2520239698945,70,1,2,2,2,1,2,2,2,0,,2,,3,125846,2,2,0,0,1,,0.0,347.0,11,0.0,0.0,2.0,1.0,1.0,1,1,348.391815158443,210.0,13459.766875363157,0,5,2,3,46.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0527497992034014,13459.766875363157,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +25826,2,30.0,0.0,9,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,1657.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,1,2012.0,6,125847,2,1,1,0,1,,142.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,283.822530308958,0.0,51058.75097441419,1,1,1,2,89.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03245281109266326,34039.16731627613,9,5,9,9_1,9_4,9_0_0 +25827,2,50.0,0.0,7,300,640.0,0.0,0.0,46,21,2109.365702073203,0.0,1091.3283477581192,2808.0,232.77898986661552,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,125848,2,1,2,0,1,,594.0,,43,4.0,0.0,6.0,5.0,3.0,5,5,1100.9706379124,640.0,97197.02986580327,1,1,1,2,140.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02888977167179813,32399.009955267757,8,4,8,8_1,8_0,8_0_0 +25828,1,68.0,228.0,6,111,200.0,,,0,77,0.0,0.0,,280.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,4,125849,2,2,0,0,2,,240.0,228.0,11,0.0,3.0,2.0,1.0,1.0,1,1,152.75934694242588,200.0,7504.180867150477,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037312533500584846,7504.180867150477,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +25829,2,61.0,0.0,2,111,800.0,0.0,0.0,77,31,3164.0485531098047,0.0,1364.160434697649,3950.0,207.83838380947813,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,125850,2,1,2,0,2,,170.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,451.750644265827,800.0,26820.219217985014,6,1,0,1,240.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14727694683983875,17880.146145323342,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +25830,2,38.0,0.0,1,111,450.0,780.0,0.0,0,21,0.0,0.0,767.3402445174275,1230.0,0.0,1480.8331573930354,41,0,0,0,0,0,0,0,0,1,15.0,2,,1,125851,2,1,0,0,1,,400.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1181.91314351196,450.0,26642.529151343155,0,1,0,1,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04616678818339553,26642.529151343155,7,4,7,7_0,7_4,7_1_0 +25831,2,89.0,0.0,2,111,384.0,1650.0,0.0,0,77,0.0,0.0,654.7970086548714,2034.0,0.0,3132.5316791006517,60,0,0,0,0,0,0,0,0,0,,2,,2,125852,2,1,0,1,1,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2184.9558639294,384.0,16260.80434404721,0,5,0,1,64.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12508606320846674,16260.80434404721,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +25832,2,41.0,0.0,9,112,0.0,0.0,0.0,56,53,0.0,0.0,0.0,983.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,125853,2,1,1,0,1,,797.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,635.896949750684,0.0,46321.0,1,1,1,2,120.0,5,1,4,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021221476220288853,17815.769230769234,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +25833,2,58.0,0.0,7,221,1188.0,0.0,0.0,0,74,0.0,809.1639662532468,2025.7782455260087,1799.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,125854,2,1,2,0,1,,305.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,2075.26526524228,1188.0,56055.99969069219,0,5,0,1,170.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03209290726999049,56055.99969069219,10,5,10,10_1,10_1,10_0_0 +25834,1,47.0,420.0,2,111,550.0,0.0,0.0,0,56,0.0,0.0,937.8602988546337,572.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,2,125855,2,1,0,1,1,1009.0,0.0,482.0,32,1.0,0.0,3.0,2.0,1.3,1,1,195.337580547939,550.0,15285.231315600542,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.037421743131633246,11757.870242769648,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +25835,1,32.0,400.0,7,211,0.0,,,0,81,0.0,0.0,,231.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,0,,8,,5,125856,1,1,0,0,2,,364.0,280.0,32,1.0,0.0,1.0,3.0,1.8,2,1,40.90727628878516,0.0,16897.236631276002,0,4,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013670874418153659,9387.353684042224,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25836,1,61.0,16.0,2,111,210.0,270.0,0.0,0,77,0.0,0.0,358.0921141081328,480.0,0.0,512.596092943743,50,2,2,2,1,2,2,2,2,0,,2,,2,125857,2,1,0,1,1,480.0,190.0,253.0,11,0.0,2.0,3.0,1.0,1.0,1,1,294.141237725232,210.0,11528.6,0,5,2,3,64.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.04163558454625887,11528.6,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +25837,2,70.0,0.0,2,211,1160.0,1750.0,0.0,78,78,0.0,529.7309108040896,1978.032630311591,3310.0,0.0,3322.382083894631,71,0,0,0,0,0,0,0,0,0,,1,,2,125858,2,2,1,0,1,,389.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1230.57782261118,1160.0,24043.429457643007,5,5,0,1,75.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13766754887572022,16028.952971762004,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +25838,1,64.0,110.0,9,112,430.0,600.0,0.0,0,78,0.0,0.0,733.2362336499863,1030.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,125859,2,1,0,1,1,438.0,0.0,430.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1477.17795617661,430.0,14390.72670899547,0,5,2,3,50.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07157386981410463,14390.72670899547,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +25839,2,93.0,0.0,2,212,550.0,0.0,0.0,90,72,2425.7705573841836,0.0,937.8602988546337,2970.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,125860,2,1,2,0,1,,0.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,1290.86631495525,550.0,20838.038939870235,5,5,0,1,92.0,3,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14252780737046147,13892.02595991349,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +25840,1,31.0,320.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1433.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,1.0,1,,1,125861,2,3,3,0,1,,119.0,462.0,32,1.0,0.0,5.0,3.0,1.6,1,1,281.920989326233,0.0,18024.65245413537,0,1,2,3,80.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07950222638945968,11265.407783834604,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +25841,1,32.0,413.0,5,211,0.0,,,0,56,0.0,0.0,,268.0,0.0,,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,125862,2,1,0,0,1,,636.0,496.0,32,1.0,0.0,4.0,3.0,1.6,1,1,119.3605629397594,0.0,18255.899052308527,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.014680186345909401,11409.936907692829,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +25842,2,80.0,0.0,5,111,480.0,1500.0,0.0,75,75,0.0,52.973091080408956,818.4962608185893,2020.0,0.0,2847.7560719096837,33,0,0,0,0,0,0,0,0,0,,1,,3,125863,2,1,1,0,1,,171.0,,41,0.0,2.0,10.0,2.0,1.5,2,2,1148.23595850693,480.0,64823.84502459291,5,5,0,1,162.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03116137278240208,43215.89668306194,9,5,9,9_1,9_3,9_0_0 +25843,2,66.0,0.0,2,111,750.0,3000.0,0.0,77,31,0.0,0.0,1278.9004075290459,3750.0,0.0,5695.512143819367,12,0,0,0,0,0,0,0,0,0,,1,,2,125864,2,2,3,0,2,,300.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,755.190744031193,750.0,94009.4134437172,6,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03988962235409648,62672.94229581147,10,5,10,10_1,10_4,10_0_1 +25844,2,79.0,0.0,6,111,660.0,0.0,0.0,0,75,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,2,,4,125865,2,1,0,0,1,,150.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,639.634300952636,660.0,61699.73886786795,0,5,0,1,100.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.010696965856102116,61699.73886786795,10,5,10,10_0,10_2,10_0_0 +25845,1,29.0,413.0,7,120,420.0,,,85,62,0.0,0.0,,546.0,174.58424239996165,,50,2,2,2,2,1,2,2,2,0,,2,,5,125866,2,1,0,0,2,,0.0,530.0,42,1.0,0.0,3.0,4.0,2.1,2,2,125.98255804856807,420.0,8524.110325358402,6,4,2,3,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.06405360549777293,4059.1001549325724,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25846,2,51.0,0.0,1,112,600.0,0.0,0.0,62,65,1054.6828510366015,0.0,1023.1203260232367,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,26.0,1,,1,125867,2,1,1,0,1,,326.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1060.28651365465,600.0,40815.0,1,1,0,1,120.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.039201274041406345,27210.0,7,4,7,7_1,7_0,7_1_0 +25847,2,25.0,0.0,7,111,630.0,0.0,0.0,38,38,0.0,0.0,1074.2763423243985,630.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,50.0,2,,5,125868,2,1,0,0,1,,0.0,791.0,43,2.0,0.0,2.0,2.0,1.5,2,2,947.751413324006,630.0,53108.658379931934,1,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011862472508589237,35405.772253287956,9,5,9,9_0,9_4,9_0_0 +25848,2,80.0,0.0,6,111,333.0,1077.0,0.0,77,72,0.0,0.0,567.8317809428963,1410.0,0.0,2044.6888596311528,50,0,0,0,0,0,0,0,0,0,,1,,4,125869,2,2,1,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1021.31607168125,333.0,28924.012666868402,5,5,0,1,75.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04874842284988739,19282.6751112456,5,3,5,5_1,5_2,5_0_0 +25849,2,66.0,0.0,5,211,480.0,,,71,77,0.0,0.0,,960.0,665.08282819033,,71,0,0,0,0,0,0,0,0,0,,1,,3,125870,2,2,0,0,2,,790.0,,41,1.0,7.0,7.0,3.0,2.0,3,3,84.28703408561307,480.0,41431.55990290252,5,5,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02317074235799523,20715.77995145126,5,3,5,5_1,5_2,5_0_0 +25850,1,41.0,173.0,8,111,227.0,,,0,52,0.0,0.0,,271.0,60.965925917446924,,60,0,0,0,0,0,0,0,0,1,15.0,1,2002.0,6,125871,2,1,0,0,1,,148.0,425.0,22,1.0,0.0,3.0,2.0,1.5,2,2,156.94779392164276,227.0,30196.109827920212,0,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008974665993214313,20130.73988528014,5,3,5,5_1,5_2,5_0_0 +25851,2,48.0,0.0,2,111,410.0,1250.0,0.0,37,85,0.0,0.0,699.1322227825451,1660.0,0.0,2373.130059924736,71,0,0,0,0,0,0,0,0,0,,1,,2,125872,2,1,1,0,1,,250.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1148.71575744277,410.0,65463.84319570773,1,6,0,1,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025357509106780356,43642.562130471815,10,5,10,10_1,10_2,10_0_1 +25852,2,80.0,0.0,2,111,420.0,,,0,75,0.0,198.6490915515336,,846.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,125873,2,1,0,0,2,,90.0,,21,1.0,6.0,6.0,2.0,1.5,2,2,71.58132570423342,420.0,51878.49352986238,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016307335514918607,34585.66235324159,9,5,9,9_1,9_2,9_0_1 +25853,2,63.0,0.0,6,211,450.0,0.0,0.0,77,77,0.0,1176.0026219850788,767.3402445174275,1538.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,125874,2,2,1,0,1,,174.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1398.63054577927,450.0,26465.26976100944,5,5,0,1,98.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058113898474819,17643.513174006293,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +25854,2,44.0,0.0,9,111,974.0,2234.0,0.0,43,31,0.0,291.3520009422493,1660.8653292443876,3428.0,0.0,4241.258043097489,10,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,125875,2,2,1,0,1,,212.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,477.806877796352,974.0,146680.0,1,1,1,2,248.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02337060267248432,97786.66666666667,10,5,10,10_1,10_3,10_0_0 +25855,1,76.0,92.0,2,111,600.0,,,86,78,0.0,0.0,,840.0,332.541414095165,,70,0,0,0,0,0,0,0,0,0,,2,,2,125876,2,3,0,0,2,,300.0,302.0,41,1.0,2.0,4.0,3.0,2.0,3,3,136.8879462495784,600.0,25280.679609772385,6,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033226954851138316,12640.339804886193,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +25856,1,46.0,271.0,2,111,561.0,0.0,0.0,0,68,0.0,0.0,956.6175048317264,561.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,125877,1,3,0,1,1,298.0,0.0,339.0,12,1.0,2.0,4.0,1.0,1.0,1,1,335.923703671481,561.0,9504.119527261606,0,1,2,3,69.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05902703542298981,9504.119527261606,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25857,2,51.0,0.0,9,111,280.0,,,0,45,0.0,0.0,,324.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,125878,2,1,0,0,1,,290.0,765.0,32,1.0,2.0,4.0,3.0,2.0,3,2,195.85240910537922,280.0,41485.57775763292,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007809943057630126,20742.78887881646,5,3,5,5_1,5_2,5_0_0 +25858,1,62.0,30.0,9,111,270.0,,,77,78,0.0,33.1081819252556,,390.0,131.6309764126695,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,125879,2,1,0,0,2,,245.0,,41,0.0,3.0,4.0,3.0,2.0,3,3,108.56362707426386,270.0,22212.64612875694,6,5,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017557565980178207,11106.32306437847,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +25859,2,62.0,0.0,5,112,600.0,0.0,0.0,75,74,1265.6194212439218,0.0,1023.1203260232367,1866.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125880,2,1,2,0,1,,320.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2010.37099901272,600.0,49346.830491240726,5,5,0,1,160.0,8,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037813978758599764,32897.886994160486,8,4,8,8_1,8_1,8_0_0 +25860,2,24.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,264.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,125881,2,1,0,1,1,609.0,0.0,285.0,12,1.0,0.0,2.0,1.0,1.0,1,1,372.034188303538,0.0,15132.471530352097,0,1,2,3,45.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017445927419752913,15132.471530352097,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +25861,2,54.0,0.0,9,112,1600.0,0.0,0.0,52,62,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,1,2011.0,6,125882,2,1,1,0,1,,530.0,,43,2.0,0.0,6.0,5.0,2.8,4,4,1050.62119807309,1600.0,42049.54076379625,1,1,1,2,120.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038050356102285084,15017.693129927233,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +25862,0,56.0,0.0,5,111,0.0,0.0,1760.0,0,43,0.0,0.0,1109.360191129949,1760.0,0.0,2106.2485797138384,33,0,0,0,0,0,0,0,0,2,10.0,2,,3,125883,1,2,0,0,1,,600.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1150.95603380006,0.0,34506.103018365706,0,1,0,1,130.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05100546993276084,34506.103018365706,9,5,9,9_0,9_3,9_0_0 +25863,1,28.0,357.0,2,111,270.0,,,0,46,0.0,0.0,,534.0,365.79555550468154,,43,2,2,1,2,1,2,2,2,0,,1,,2,125884,2,3,0,0,2,,247.0,730.0,22,4.0,0.0,4.0,5.0,3.0,5,4,155.8457237019922,270.0,26871.24111594552,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.01987254692464212,8957.08037198184,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +25864,2,61.0,0.0,2,111,500.0,1090.0,0.0,0,78,0.0,132.4327277010224,852.6002716860306,1690.0,0.0,2069.36941225437,50,0,0,0,0,0,0,0,0,0,,1,,2,125885,2,1,2,0,1,,300.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,280.016535290322,500.0,32854.672394568785,0,5,0,1,112.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.051438650177482045,32854.672394568785,8,4,8,8_1,8_3,8_0_1 +25865,2,44.0,0.0,2,111,480.0,0.0,0.0,54,56,0.0,1059.4618216081792,818.4962608185893,1400.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,125886,2,3,4,0,1,,540.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,503.019603567742,480.0,35582.064660367425,1,1,1,2,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03934566510861777,16943.84031446068,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +25866,2,65.0,0.0,9,111,638.0,0.0,0.0,52,75,0.0,0.0,1087.917946671375,1785.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,125887,2,1,0,1,1,,0.0,502.0,41,1.0,0.0,3.0,3.0,2.0,3,3,1143.65177794448,638.0,61260.27764432297,5,5,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029137967842126116,30630.138822161483,8,4,8,8_0,8_4,8_0_0 +25867,0,75.0,0.0,2,112,1278.0,2172.0,0.0,0,75,0.0,0.0,2179.2462944294944,3450.0,0.0,4123.550792125222,50,0,0,0,0,0,0,0,0,0,,1,,2,125888,2,1,2,0,1,,120.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,957.413587265719,1278.0,19991.32013551214,0,5,0,1,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.17257489633571005,19991.32013551214,5,3,5,5_1,5_0,5_0_1 +25868,2,64.0,0.0,2,111,218.0,615.0,0.0,0,74,0.0,0.0,371.73371845510934,833.0,0.0,1167.5799894829702,71,0,0,0,0,0,0,0,0,0,,2,,2,125889,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1631.70073701026,218.0,35096.42177913472,0,5,0,1,78.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023734613324462306,35096.42177913472,9,5,9,9_0,9_2,9_0_1 +25869,2,49.0,0.0,6,111,1765.0,0.0,0.0,54,38,0.0,0.0,3009.678959051688,1855.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,125890,2,1,2,0,1,,500.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,699.476991007124,1765.0,54683.47243137506,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03392249828918471,27341.73621568753,7,4,7,7_1,7_4,7_0_0 +25870,1,34.0,130.0,9,300,1800.0,0.0,0.0,63,53,0.0,0.0,3069.36097806971,1880.0,110.84713803172167,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,125891,2,1,2,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1360.26888249251,1800.0,36696.642233597384,1,1,1,2,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0512308452646051,17474.591539808276,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +25871,2,47.0,0.0,2,111,938.0,1191.0,0.0,67,65,0.0,26.486545540204478,1599.4781096829934,2149.0,0.0,2261.1183210962886,50,0,0,0,0,0,0,0,0,1,10.0,1,,2,125892,2,2,5,0,1,,280.0,692.0,43,4.0,1.0,6.0,4.0,2.5,4,4,1262.96554127212,938.0,61950.14508381819,1,1,2,3,120.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03468918429637922,24780.058033527275,7,4,7,7_1,7_2,7_0_1 +25872,2,53.0,0.0,5,111,1200.0,,,85,11,0.0,0.0,,1502.0,418.4479460697493,,50,0,0,0,0,0,0,0,0,0,,5,,3,125893,2,1,0,0,2,,120.0,,42,2.0,0.0,6.0,5.0,3.0,5,5,82.84090715575663,1200.0,29424.421689542956,5,1,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05104603298061727,9808.140563180985,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25873,2,72.0,0.0,2,111,576.0,0.0,0.0,0,77,0.0,384.05491033296494,982.1955129823073,2426.0,2161.5191916185727,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,125894,2,1,2,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1343.51799384782,576.0,34165.27541395394,0,5,0,1,105.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0710077694561526,34165.27541395394,9,5,9,9_1,9_3,9_0_1 +25874,2,70.0,0.0,6,111,750.0,0.0,0.0,77,75,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,125895,2,1,2,0,1,,120.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2405.24880739321,750.0,22951.24172922999,5,5,0,1,87.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03267797049276089,15300.82781948666,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +25875,2,50.0,0.0,2,111,500.0,0.0,0.0,45,33,0.0,0.0,852.6002716860306,842.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,125896,2,1,0,1,1,,0.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,530.28676718418,500.0,87563.30558717363,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009615900111968102,43781.652793586814,10,5,10,10_0,10_4,10_0_1 +25876,2,31.0,0.0,7,111,313.0,,,0,67,0.0,0.0,,451.0,191.2113131047199,,43,0,0,0,0,0,0,0,0,0,,2,,5,125897,2,1,0,0,2,,311.0,366.0,22,2.0,1.0,3.0,2.0,1.5,2,2,115.41287432407483,313.0,27680.636847968,0,1,2,3,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016292977740254098,18453.757898645334,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +25877,2,35.0,0.0,9,111,400.0,0.0,0.0,46,37,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,75.0,2,2010.0,6,125898,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,923.520635034641,400.0,55444.33115409827,1,1,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007214443599080792,30802.40619672126,8,4,8,8_0,8_4,8_0_0 +25878,2,58.0,0.0,2,111,580.0,0.0,0.0,0,52,0.0,0.0,989.0163151557955,580.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,125899,1,1,0,1,1,650.0,0.0,418.0,22,2.0,1.0,3.0,2.0,1.5,2,2,981.398210629983,580.0,55230.85394253358,0,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010501376650874828,36820.56929502238,9,5,9,9_0,9_4,9_0_1 +25879,2,65.0,0.0,6,211,1440.0,0.0,0.0,77,72,527.3414255183008,92.70290939071567,2455.488782455768,2010.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,125900,2,1,2,0,1,,495.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,927.172325749076,1440.0,47232.81301546858,5,5,0,1,88.0,1,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04255516179698491,31488.542010312387,8,4,8,8_1,8_1,8_0_0 +25880,2,74.0,0.0,7,111,1200.0,,,0,77,0.0,0.0,,1350.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,125901,2,2,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,51.855390144157745,1200.0,5110.0,0,6,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.26418786692759294,5110.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25881,2,66.0,0.0,6,111,260.0,0.0,0.0,22,72,0.0,0.0,443.3521412767359,260.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,125902,2,1,0,0,2,,0.0,330.0,42,1.0,3.0,1.0,2.0,1.5,2,2,2768.31956283477,260.0,16749.549105987924,1,5,2,3,25.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015522805918820264,11166.366070658616,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +25882,2,38.0,0.0,2,111,720.0,180.0,0.0,0,68,0.0,0.0,1227.744391227884,900.0,0.0,341.730728629162,10,0,0,0,0,0,0,0,0,0,,2,,2,125903,2,2,0,0,2,,150.0,540.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1599.11833954818,720.0,17536.139720080893,0,4,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05132258378218763,17536.139720080893,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +25883,2,55.0,0.0,1,111,744.0,1243.0,0.0,43,37,0.0,0.0,1268.6692042688135,1987.0,0.0,2359.8405315891578,31,0,0,0,0,0,0,0,0,0,,1,,1,125904,2,2,2,0,1,,475.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,680.771728283043,744.0,110093.81903731081,1,1,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01804824301105047,55046.909518655404,10,5,10,10_1,10_3,10_1_0 +25884,2,49.0,0.0,8,111,750.0,,,54,53,0.0,397.2981831030672,,1176.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,125905,2,1,0,0,1,,420.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,100.59894257498993,750.0,56523.70938365114,1,1,0,1,168.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020805428603738185,31402.06076869508,8,4,8,8_1,8_2,8_0_0 +25885,2,80.0,0.0,1,112,360.0,0.0,0.0,71,71,1265.6194212439218,0.0,613.872195613942,1740.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125906,2,1,2,0,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,870.371250811493,360.0,18910.015253757912,5,5,0,1,150.0,7,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09201473275671825,12606.676835838609,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +25886,2,93.0,0.0,7,112,0.0,,,72,71,0.0,0.0,,448.0,127.47420873647992,,70,0,0,0,0,0,0,0,0,0,,7,,5,125907,2,1,0,0,2,,600.0,,41,0.0,8.0,3.0,2.0,1.5,2,2,75.18985463102507,0.0,10051.120522949297,5,5,0,1,68.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04457214486455521,6700.747015299531,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +25887,2,80.0,0.0,2,112,1200.0,,,0,72,0.0,0.0,,1458.0,357.4820201523024,,71,0,0,0,0,0,0,0,0,0,,1,,2,125908,1,2,0,0,2,,454.0,,21,1.0,6.0,7.0,3.0,2.0,3,3,69.41635548107905,1200.0,7751.6633682020065,0,5,0,1,78.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.188088663135301,3875.8316841010032,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +25888,2,47.0,0.0,1,111,820.0,0.0,0.0,0,34,0.0,0.0,1398.2644455650902,820.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,15.0,2,,1,125909,2,2,0,0,1,,0.0,955.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1286.10092246784,820.0,39380.365511016134,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02082255939881045,39380.365511016134,9,5,9,9_0,9_4,9_1_0 +25889,2,61.0,0.0,5,111,730.0,0.0,0.0,0,78,0.0,0.0,1244.7963966616046,730.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,3,125910,2,2,0,0,1,,0.0,437.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2001.3665350662,730.0,8056.60948295983,0,7,2,3,47.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.0906088350867682,8056.60948295983,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +25890,1,47.0,400.0,1,120,1280.0,0.0,0.0,0,22,0.0,0.0,2182.6566955162384,1358.0,108.07595958092864,0.0,50,0,0,0,0,0,0,0,0,1,2.0,1,,1,125911,2,1,1,0,1,,120.0,650.0,32,1.0,0.0,4.0,3.0,2.0,3,2,1584.56667603506,1280.0,9795.445360115205,0,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.13863586085931967,4897.722680057603,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +25891,1,25.0,179.0,2,111,250.0,700.0,0.0,0,55,0.0,0.0,426.3001358430153,950.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,2,,2,125912,2,1,0,0,1,,500.0,242.0,12,1.0,0.0,2.0,1.0,1.0,1,1,229.397296401499,250.0,4561.976290812959,0,4,2,3,50.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2082430813840786,4561.976290812959,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25892,1,54.0,56.0,8,112,619.0,1186.0,0.0,0,67,0.0,0.0,1055.519136347306,1805.0,0.0,2251.6258008565896,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,125913,2,2,1,0,1,,448.0,493.0,32,3.0,2.0,4.0,4.0,2.5,4,4,2158.95128515879,619.0,28831.54067127537,0,4,2,3,88.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06260504842872677,11532.616268510148,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +25893,1,29.0,323.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,674.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,125914,2,2,0,0,1,,0.0,294.0,31,0.0,0.0,3.0,2.0,1.3,1,1,264.546937038164,0.0,7815.1683239252925,0,7,2,3,57.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08624254425034224,6011.667941480994,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25894,2,45.0,0.0,7,111,1478.0,0.0,0.0,55,47,0.0,0.0,2520.286403103906,1568.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,8.0,1,,5,125915,2,1,2,0,1,,636.0,689.0,43,2.0,0.0,5.0,4.0,2.1,3,2,1792.67035977936,1478.0,47592.586756551435,1,1,2,3,150.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03294630754198614,22663.136550738778,6,3,6,6_1,6_2,6_0_0 +25895,2,64.0,0.0,1,400,1285.0,0.0,0.0,0,77,0.0,0.0,2191.1826982330986,1315.0,41.567676761895626,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,125916,1,3,2,0,1,,314.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2156.75091478781,1285.0,20492.714518852736,0,5,0,1,68.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06416914649302492,20492.714518852736,5,3,5,5_1,5_1,5_1_0 +25896,2,41.0,0.0,9,112,890.0,0.0,0.0,43,43,0.0,0.0,1517.6284836011343,890.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,2,2005.0,6,125917,2,1,0,0,1,,265.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,2604.21751225109,890.0,53932.89546885852,1,1,1,2,92.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01650198811435771,23449.084986460228,6,3,6,6_0,6_1,6_0_0 +25897,2,50.0,0.0,2,111,500.0,,,0,52,0.0,0.0,,600.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,20.0,8,,2,125918,2,2,0,0,2,,120.0,445.0,12,1.0,0.0,2.0,1.0,1.0,1,1,51.15746165190392,500.0,29788.632139759407,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020141911759659806,29788.632139759407,8,4,8,8_0,8_2,8_0_1 +25898,2,85.0,0.0,2,111,1000.0,850.0,0.0,86,77,0.0,0.0,1705.2005433720612,1850.0,0.0,1613.7284407488207,60,0,0,0,0,0,0,0,0,0,,1,,2,125919,2,1,2,0,2,,350.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1333.62167559332,1000.0,39090.880893863134,6,5,0,1,82.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04732561553225144,26060.587262575424,7,4,7,7_1,7_3,7_0_1 +25899,2,50.0,0.0,8,111,1800.0,0.0,0.0,21,21,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,125920,2,1,2,0,1,,480.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,929.072918850286,1800.0,52424.11595905057,1,1,1,2,110.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03433534294419028,29124.508866139204,8,4,8,8_1,8_2,8_0_0 +25900,2,80.0,0.0,5,111,2400.0,0.0,0.0,77,74,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,125921,2,1,1,0,1,,328.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,2153.45848586584,2400.0,50134.244153208296,5,5,0,1,94.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04787147069906337,25067.122076604148,7,4,7,7_1,7_3,7_0_0 +25901,2,63.0,0.0,6,111,300.0,,,85,77,0.0,0.0,,426.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,125922,2,2,0,0,2,,500.0,,41,2.0,1.0,4.0,4.0,2.5,4,4,131.00935107474297,300.0,29127.7337220227,6,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014625236692476106,11651.09348880908,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +25902,2,53.0,0.0,6,111,0.0,0.0,0.0,77,38,0.0,0.0,0.0,273.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,125923,1,3,0,1,1,1236.0,0.0,690.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1674.18068106997,0.0,12008.003373763144,7,4,2,3,70.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022734837050136965,8005.335582508763,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +25903,2,57.0,0.0,1,111,350.0,0.0,0.0,0,56,1582.0242765549024,0.0,596.8201901802214,1974.0,171.8130639491686,0.0,70,0,0,0,0,0,0,0,0,2,30.0,1,,1,125924,2,2,2,0,1,,190.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1847.15730563878,350.0,27780.431841416554,0,1,0,1,90.0,7,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0710572107470646,27780.431841416554,7,4,7,7_1,7_2,7_1_0 +25904,2,71.0,0.0,7,111,1531.0,1046.0,0.0,0,74,0.0,0.0,2610.6620319026256,2577.0,0.0,1985.8352341450193,50,0,0,0,0,0,0,0,0,0,,1,,5,125925,2,1,2,0,1,,262.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1585.01645956788,1531.0,63866.904319530964,0,5,0,1,140.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0403495367038157,63866.904319530964,10,5,10,10_1,10_2,10_0_0 +25905,2,46.0,0.0,1,300,2600.0,0.0,0.0,56,62,0.0,0.0,4433.521412767359,2671.0,98.37683500315299,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,125926,2,1,2,0,1,,330.0,,43,2.0,0.0,5.0,4.0,2.3,4,2,946.792251287307,2600.0,37793.21441206069,1,1,0,1,97.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07067406256789902,16431.832353069865,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +25906,2,75.0,0.0,5,111,300.0,,,72,77,0.0,0.0,,560.0,360.2531986030954,,41,0,0,0,0,0,0,0,0,0,,1,,3,125927,2,2,0,0,2,,700.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,105.7051336789189,300.0,20991.237335257778,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026677798504969506,13994.158223505185,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +25907,1,63.0,88.0,2,111,180.0,150.0,0.0,0,86,0.0,0.0,306.936097806971,330.0,0.0,284.77560719096834,71,2,2,2,1,1,2,2,2,0,,1,,2,125928,1,2,5,0,1,,87.0,367.0,11,0.0,8.0,4.0,1.0,1.0,1,1,507.15865730414,180.0,12615.569081699701,0,7,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.026158154092208338,12615.569081699701,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +25909,2,46.0,0.0,6,111,774.0,0.0,0.0,54,63,564.2553253045818,211.89236432163582,1319.8252205699753,1529.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,125930,2,1,2,0,1,,533.0,,43,2.0,3.0,5.0,3.0,2.0,3,2,1553.86717082291,774.0,52456.117837760794,1,1,1,2,110.0,8,6,5,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029148173044924452,26228.058918880397,7,4,7,7_1,7_2,7_0_0 +25910,1,45.0,352.0,5,120,0.0,0.0,0.0,81,68,0.0,0.0,0.0,616.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,125931,2,2,3,0,1,,221.0,376.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1680.96057968919,0.0,8262.0,4,4,2,3,78.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07455821834906802,5508.0,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +25911,2,55.0,0.0,6,111,900.0,0.0,0.0,47,62,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,125932,2,1,1,0,1,,280.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1505.07050065817,900.0,55926.91914832218,1,1,0,1,100.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01609242943658555,37284.61276554812,9,5,9,9_1,9_2,9_0_0 +25912,1,44.0,95.0,7,111,460.0,700.0,0.0,54,53,0.0,0.0,784.3922499511482,1160.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,125933,2,1,1,0,1,,0.0,705.0,43,2.0,3.0,4.0,3.0,1.8,2,2,3418.4911958231,460.0,42131.939873841344,1,1,2,3,80.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.027532556143236468,23406.633263245192,6,3,6,6_1,6_3,6_0_0 +25913,2,87.0,0.0,2,111,780.0,,,86,77,0.0,0.0,,872.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,2,125934,2,1,0,0,2,,240.0,,41,0.0,10.0,7.0,2.0,1.5,2,2,82.38977593633344,780.0,11429.525192972484,6,5,0,1,118.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07629363296177472,7619.6834619816555,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +25914,1,46.0,265.0,2,111,210.0,230.0,0.0,0,56,0.0,0.0,358.0921141081328,440.0,0.0,436.65593102615145,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,125935,1,2,0,1,1,808.0,0.0,254.0,32,2.0,0.0,3.0,2.0,1.5,2,2,360.318151523872,210.0,1136.1208983934937,0,1,2,3,58.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.38728272723631096,757.4139322623291,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25915,2,63.0,0.0,2,111,290.0,430.0,0.0,0,77,0.0,0.0,494.50815757789775,782.0,85.9065319745843,816.3567406141093,50,1,2,2,1,2,2,2,2,0,,8,,2,125936,1,3,0,0,1,,0.0,336.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1209.55008880199,290.0,20752.299737220765,0,5,2,3,62.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03768257060191868,20752.299737220765,5,3,5,5_0,5_2,5_0_1 +25916,2,52.0,0.0,6,111,179.0,714.0,0.0,0,52,0.0,0.0,305.23089726359893,893.0,0.0,1355.5318902290094,41,1,2,2,2,1,2,2,2,2,10.0,2,,4,125937,2,1,0,1,1,,0.0,307.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1615.2394316498,179.0,22258.949538710287,0,1,2,3,67.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04011869466018573,22258.949538710287,6,3,6,6_0,6_2,6_0_0 +25917,2,85.0,0.0,2,111,200.0,1200.0,0.0,0,78,0.0,0.0,341.04010867441224,1400.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,125938,2,1,1,0,2,,100.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,534.264188885736,200.0,16335.31698688107,0,5,0,1,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08570387713469799,16335.31698688107,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +25918,2,82.0,0.0,5,300,0.0,0.0,0.0,71,71,0.0,0.0,0.0,1114.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,125939,2,1,3,0,1,,149.0,400.0,41,0.0,5.0,4.0,2.0,1.5,2,2,1057.49002881182,0.0,22497.459173654548,5,5,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049516702815246796,14998.3061157697,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +25919,2,67.0,0.0,8,211,1089.0,0.0,0.0,77,75,0.0,0.0,1856.9633917321746,1161.0,99.7624242285495,0.0,70,0,0,0,0,0,0,0,0,0,,1,2002.0,6,125940,2,1,1,0,1,,393.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1432.20474976476,1089.0,44888.47329244694,5,5,1,2,100.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02586410084468952,29925.648861631296,8,4,8,8_1,8_1,8_0_0 +25920,2,77.0,0.0,2,111,200.0,0.0,0.0,0,75,0.0,0.0,341.04010867441224,882.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,125941,1,1,0,1,2,,130.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,362.805036928754,200.0,19861.0845353096,0,5,0,1,100.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04440845103055451,19861.0845353096,5,3,5,5_0,5_2,5_0_1 +25921,2,42.0,0.0,1,300,840.0,0.0,0.0,55,62,0.0,794.5963662061343,1432.3684564325313,1500.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,125942,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,884.207454259456,840.0,37215.525817356654,1,1,1,2,95.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04030575860627574,17721.678960646026,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +25922,2,89.0,0.0,5,120,500.0,,,71,71,0.0,0.0,,585.0,117.77508415870429,,71,0,0,0,0,0,0,0,0,0,,1,,3,125943,2,1,0,0,1,,400.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,138.75956714399857,500.0,19194.699259885972,5,5,0,1,144.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030477164142006737,12796.466173257315,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25923,2,49.0,0.0,7,111,200.0,,,0,46,0.0,0.0,,223.0,31.86855218411998,,30,0,0,0,0,0,0,0,0,2,1.0,2,,5,125944,2,2,0,0,2,,400.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,192.16822679183161,200.0,36643.908450398376,0,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006085595380794475,36643.908450398376,9,5,9,9_0,9_2,9_0_0 +25924,2,44.0,0.0,1,112,900.0,0.0,0.0,56,52,1371.087706347582,662.163638505112,1534.680489034855,2810.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125945,2,1,1,0,1,,100.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,60.1566552670795,900.0,65189.74357237104,1,1,0,1,100.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04310494022545818,26075.897428948414,7,4,7,7_1,7_0,7_1_0 +25925,2,57.0,0.0,6,111,472.0,,,78,63,0.0,0.0,,725.0,350.5540740253198,,71,0,0,0,0,0,0,0,0,1,10.0,1,,4,125946,2,1,0,0,2,,352.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,102.11997764620034,472.0,42697.772628097475,5,1,0,1,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01697980843906856,21348.886314048737,6,3,6,6_1,6_2,6_0_0 +25926,2,29.0,0.0,1,111,552.0,0.0,0.0,0,37,0.0,0.0,941.2706999413778,552.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,125947,2,2,0,0,1,,0.0,930.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1150.21584015756,552.0,46072.70729877987,0,1,3,4,29.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011981062810576761,46072.70729877987,10,5,10,10_0,10_4,10_1_0 +25927,2,52.0,0.0,1,112,180.0,0.0,0.0,0,21,1054.6828510366015,0.0,306.936097806971,1250.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125948,2,3,2,0,1,,144.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1950.91435373027,180.0,13273.63914329046,0,1,1,2,132.0,6,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09417161235936176,13273.63914329046,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +25928,2,79.0,0.0,2,400,0.0,0.0,0.0,86,72,0.0,0.0,0.0,4651.0,4929.926463960822,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,125949,2,2,2,0,2,,260.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,747.187802843227,0.0,16910.235385624655,5,5,0,1,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.27504052391569916,11273.490257083104,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +25929,2,43.0,0.0,5,111,150.0,0.0,0.0,85,38,0.0,0.0,255.78008150580916,150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,15.0,1,,3,125950,2,2,2,0,1,,551.0,,42,1.0,0.0,5.0,4.0,2.3,4,2,659.959580546274,150.0,59186.66825244314,6,1,1,2,111.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0025343545164633967,25733.334022801366,7,4,7,7_1,7_2,7_0_0 +25930,2,37.0,0.0,8,112,1900.0,0.0,0.0,22,37,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,41,2,2,2,2,1,2,2,2,2,40.0,1,2000.0,6,125951,2,1,3,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1026.07785120327,1900.0,62783.02112389005,1,1,1,2,90.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.03026295909288469,29896.676725661928,8,4,8,8_1,8_1,8_0_0 +25931,2,68.0,0.0,5,111,330.0,0.0,0.0,0,77,0.0,0.0,562.7161793127802,330.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,3,125952,1,3,0,1,1,750.0,0.0,367.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1702.41736784052,330.0,17982.027772911482,0,5,2,3,78.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.018351656674511378,17982.027772911482,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +25932,0,33.0,0.0,7,112,732.0,,,0,56,0.0,0.0,,832.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,1,,5,125953,2,3,0,0,2,,1200.0,,32,1.0,0.0,4.0,4.0,1.9,1,1,84.4950626482678,732.0,8968.850997159903,0,4,5,0,80.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09276550588960203,4720.447893242054,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +25933,2,47.0,0.0,9,112,813.0,0.0,0.0,48,46,0.0,662.163638505112,1386.3280417614858,1413.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,2,90.0,1,2009.0,6,125954,2,1,1,0,1,,329.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,1171.04017958453,813.0,63980.822278466716,1,1,1,2,135.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022084742735098563,31990.411139233358,8,4,8,8_1,8_1,8_0_0 +25935,1,38.0,213.0,2,111,756.0,,,0,85,0.0,0.0,,806.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,2,,2,125956,2,2,0,0,2,,0.0,216.0,11,0.0,0.0,2.0,1.0,1.0,1,1,112.85723289847972,756.0,7032.0,0,7,2,3,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11461888509670079,7032.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +25936,2,69.0,0.0,2,111,340.0,0.0,0.0,86,75,0.0,0.0,579.7681847465008,1197.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,125957,2,1,1,0,2,,152.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,562.580505659578,340.0,36565.18503819543,5,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03273605750250224,24376.79002546362,7,4,7,7_1,7_4,7_0_1 +25937,2,77.0,0.0,2,111,394.0,2542.0,0.0,0,72,0.0,0.0,671.8490140885921,2936.0,0.0,4825.997289862944,50,0,0,0,0,0,0,0,0,0,,1,,2,125958,2,1,2,0,2,,197.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,277.974439063422,394.0,44608.56521024048,0,5,0,1,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06581695659034563,44608.56521024048,10,5,10,10_1,10_2,10_0_1 +25939,1,42.0,122.0,5,111,420.0,0.0,0.0,0,46,0.0,0.0,716.1842282162656,476.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,3,125960,2,1,0,1,1,,0.0,481.0,32,1.0,1.0,3.0,2.0,1.3,1,1,254.156677547786,420.0,20456.795275605724,0,1,2,3,65.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023268551773973096,15735.996365850557,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +25940,2,52.0,0.0,7,300,591.0,975.0,0.0,45,52,0.0,0.0,1007.7735211328882,1566.0,0.0,1851.0414467412943,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,125961,2,1,2,0,1,,345.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,978.000775716946,591.0,49426.669568356716,1,1,1,2,130.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031683300001312725,19770.667827342688,5,3,5,5_1,5_0,5_0_0 +25941,2,72.0,0.0,1,112,600.0,0.0,0.0,75,75,2109.365702073203,0.0,1023.1203260232367,2720.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,125962,2,1,2,0,1,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,2129.24141424308,600.0,50651.4033451401,5,5,0,1,150.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05370038775561346,33767.6022300934,9,5,9,9_1,9_0,9_1_0 +25942,2,47.0,0.0,1,111,728.0,1821.0,0.0,21,35,0.0,0.0,1241.3859955748605,2549.0,0.0,3457.1758712983556,20,1,2,2,2,2,2,2,1,1,5.0,1,,1,125963,2,2,2,0,1,,345.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,1253.29927016615,728.0,78721.59682496072,1,1,0,1,180.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.032379932608173075,37486.474678552724,9,5,9,9_1,9_2,9_1_0 +25943,2,50.0,0.0,7,111,677.0,693.0,0.0,46,38,0.0,0.0,1154.4207678628854,1370.0,0.0,1315.6633052222737,42,0,0,0,0,0,0,0,0,2,2.0,1,,5,125964,2,1,2,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1160.02706802573,677.0,77607.53773592917,1,1,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01765292444480873,51738.35849061945,10,5,10,10_1,10_3,10_0_0 +25944,2,86.0,0.0,2,111,890.0,670.0,0.0,75,75,0.0,0.0,1517.6284836011343,1560.0,0.0,1271.9977121196587,31,0,0,0,0,0,0,0,0,0,,1,,2,125965,2,3,2,0,2,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1643.38793221511,890.0,43042.04748760078,5,5,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03624362898743125,28694.698325067187,8,4,8,8_1,8_3,8_0_1 +25945,2,51.0,0.0,7,111,35.0,0.0,0.0,0,46,0.0,0.0,59.68201901802214,35.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,20.0,2,,5,125966,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1470.96013465939,35.0,28683.170424970525,0,1,0,1,41.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0012202277322011193,28683.170424970525,8,4,8,8_0,8_3,8_0_0 +25946,2,59.0,0.0,2,120,292.0,60.0,0.0,0,68,1265.6194212439218,0.0,497.91855866464186,1552.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,125967,2,2,1,0,1,,223.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,564.086938699592,292.0,19290.747790628815,0,1,1,2,108.0,0,0,5,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08045307609868502,19290.747790628815,5,3,5,5_1,5_0,5_0_1 +25947,2,83.0,0.0,1,112,365.0,0.0,0.0,0,71,0.0,0.0,622.3981983308023,445.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125968,2,2,3,0,1,,170.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1440.35792998509,365.0,13103.282265200041,0,5,0,1,90.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033960956575120105,13103.282265200041,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +25948,0,38.0,0.0,5,111,797.0,0.0,0.0,65,43,4236.661012614029,0.0,1359.0448330675329,4964.0,207.83838380947813,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,125969,1,2,2,0,2,,554.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1953.08044013451,797.0,42647.036646932,1,1,5,0,98.0,6,5,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11639730190625348,23692.798137184443,6,3,6,6_1,6_2,6_0_0 +25949,2,59.0,0.0,6,111,1050.0,,,43,67,0.0,0.0,,1182.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,125970,2,1,0,0,2,,600.0,,43,2.0,2.0,4.0,3.0,2.0,3,2,119.93122006160898,1050.0,117424.99682741023,4,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010065999846159576,58712.498413705114,10,5,10,10_1,10_2,10_0_0 +25950,2,79.0,0.0,5,120,1700.0,0.0,0.0,72,77,0.0,1522.9763685617575,2898.840923732504,2950.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,125971,2,1,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,149.993292147142,1700.0,22937.846485766797,5,5,0,1,90.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1286084115102309,15291.897657177864,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +25951,1,85.0,141.0,5,111,400.0,1200.0,0.0,0,78,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,3,125972,1,1,1,0,1,,250.0,346.0,11,0.0,2.0,2.0,1.0,1.0,1,1,573.621814088809,400.0,12851.696510297239,0,5,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1244971820426994,12851.696510297239,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +25952,1,39.0,127.0,2,111,0.0,0.0,1470.0,81,63,0.0,0.0,926.5678869096735,1470.0,0.0,1759.1962569200807,50,0,0,0,0,0,0,0,0,0,,1,,2,125973,2,2,1,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,195.312801094144,0.0,31696.48693382246,4,1,1,2,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.046377379394414935,13781.081275574983,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +25953,2,77.0,0.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,613.872195613942,390.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,125974,2,1,0,1,1,818.0,0.0,283.0,11,0.0,5.0,3.0,1.0,1.0,1,1,858.436298781786,360.0,18466.15820764251,0,5,2,3,50.0,4,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02111971508175384,18466.15820764251,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +25954,2,50.0,0.0,2,111,1851.0,0.0,0.0,56,62,0.0,0.0,3156.326205781685,1921.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,2,4.0,1,,2,125975,2,1,2,0,1,,733.0,,43,2.0,1.0,6.0,4.0,2.3,3,3,1390.65302516838,1851.0,53002.92105438812,1,1,0,1,118.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036243285497959556,23044.748284516576,6,3,6,6_1,6_2,6_0_1 +25955,2,37.0,0.0,7,111,210.0,300.0,0.0,0,37,0.0,0.0,358.0921141081328,510.0,0.0,569.5512143819367,12,1,2,2,2,1,2,2,2,3,45.0,2,,5,125976,2,1,0,1,1,250.0,0.0,543.0,12,1.0,0.0,1.0,1.0,1.0,1,1,851.489488213073,210.0,34706.97117914084,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014694454245737064,34706.97117914084,9,5,9,9_0,9_4,9_0_0 +25956,2,65.0,0.0,1,112,200.0,0.0,0.0,0,78,0.0,0.0,341.04010867441224,275.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,125977,2,2,4,0,2,,449.0,77.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1656.24682487713,200.0,14880.524682308984,0,5,2,3,30.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.018480531155392617,14880.524682308984,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +25957,1,26.0,357.0,2,111,342.0,,,0,81,0.0,0.0,,364.0,30.482962958723462,,43,0,0,0,0,0,0,0,0,0,,2,,2,125978,2,3,0,0,2,,304.0,433.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.39674155358506,342.0,19886.01278179935,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01830432294266403,15296.932909076422,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +25959,2,49.0,0.0,6,111,1200.0,,,0,55,0.0,0.0,,1476.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,45.0,1,,4,125980,2,1,0,0,1,,500.0,,32,1.0,1.0,4.0,2.0,1.5,2,1,82.53707118137785,1200.0,27145.10439944637,0,1,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05437444550885954,18096.73626629758,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +25960,1,55.0,212.0,1,111,1700.0,0.0,0.0,0,78,0.0,0.0,2898.840923732504,1800.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,125981,1,2,2,0,1,,450.0,447.0,31,0.0,2.0,4.0,2.0,1.5,2,2,217.824413064898,1700.0,16189.492354511156,0,7,2,3,90.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.11118322678588716,10792.994903007437,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +25961,2,73.0,0.0,1,211,900.0,,,86,86,0.0,0.0,,900.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,1,125982,1,1,0,0,2,,500.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,81.255346956633,900.0,54996.76301709878,5,5,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01636459948961333,36664.50867806585,9,5,9,9_1,9_2,9_1_0 +25962,1,39.0,300.0,1,120,0.0,0.0,0.0,0,11,0.0,0.0,0.0,1724.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,125983,2,1,2,0,1,,311.0,587.0,32,1.0,1.0,5.0,3.0,1.6,2,1,235.181272305818,0.0,17156.124809462424,0,1,2,3,80.0,0,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10048889356698615,10722.578005914014,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +25963,2,42.0,0.0,7,111,300.0,,,0,56,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,125984,1,1,0,0,2,,600.0,,32,1.0,2.0,5.0,5.0,2.8,4,4,137.1746702112971,300.0,54203.83352228849,0,1,1,2,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005534663888240316,19358.51197224589,5,3,5,5_1,5_2,5_0_0 +25964,2,55.0,0.0,1,111,600.0,0.0,0.0,0,52,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,60,2,2,2,2,1,2,2,2,3,10.0,2,,1,125985,2,1,0,0,1,,300.0,377.0,32,2.0,1.0,3.0,2.0,1.5,2,2,1530.34840270443,600.0,29320.72007313271,0,1,2,3,54.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0.020463344641722992,19547.146715421808,5,3,5,5_0,5_3,5_1_0 +25965,2,40.0,0.0,5,400,420.0,,,85,55,0.0,0.0,,596.0,243.8637036697877,,50,0,0,0,0,0,0,0,0,1,15.0,1,,3,125986,1,1,0,0,1,,260.0,,42,1.0,0.0,5.0,4.0,2.3,3,3,98.64447700598043,420.0,22166.03012953298,6,1,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02688799015958737,9637.404404144774,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +25966,1,32.0,253.0,7,111,300.0,,,0,63,0.0,0.0,,432.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,,5,125987,2,2,0,0,1,,500.0,451.0,22,3.0,0.0,4.0,3.0,2.0,3,3,137.38504459894241,300.0,43672.34165699565,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009891844210987027,21836.170828497827,6,3,6,6_0,6_2,6_0_0 +25967,0,86.0,0.0,2,112,200.0,,,0,78,0.0,0.0,,326.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,125988,1,2,0,0,2,,360.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,126.19667930622118,200.0,10628.549862345673,0,6,5,0,50.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030672105246919663,10628.549862345673,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +25968,1,33.0,357.0,7,111,450.0,,,0,64,0.0,0.0,,538.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,2,,5,125989,2,2,0,0,2,,1319.0,451.0,32,1.0,0.0,3.0,2.0,1.5,2,1,119.26293367341867,450.0,9280.84188034188,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05796887900219043,6187.227920227921,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +25969,2,38.0,0.0,2,111,288.0,0.0,0.0,0,47,0.0,0.0,491.09775649115363,288.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,125990,2,3,0,0,2,,0.0,,12,1.0,1.0,1.0,1.0,1.0,1,1,1116.58975840219,288.0,6218.402878493576,0,4,1,2,21.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04631414297649507,6218.402878493576,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +25970,1,57.0,31.0,5,111,800.0,900.0,0.0,0,68,0.0,0.0,1364.160434697649,1700.0,0.0,1708.65364314581,71,2,2,2,1,1,2,2,2,2,10.0,2,,3,125991,2,3,0,0,1,,540.0,351.0,22,1.0,2.0,4.0,3.0,1.8,2,2,267.529700075826,800.0,22445.977200589125,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07573740206576443,12469.987333660625,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +25971,2,48.0,0.0,1,112,500.0,1500.0,0.0,46,33,0.0,198.6490915515336,852.6002716860306,2150.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,125992,2,2,3,0,1,,600.0,,43,2.0,1.0,7.0,4.0,2.5,4,4,1986.95605487421,500.0,81591.26248644006,1,1,1,2,250.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.026350860796611846,32636.504994576022,8,4,8,8_1,8_1,8_1_0 +25972,2,47.0,0.0,8,111,724.0,1375.0,0.0,55,21,0.0,595.9472746546007,1234.5651934013722,2549.0,0.0,2610.44306591721,50,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,125993,2,1,1,0,1,,400.0,,43,3.0,0.0,5.0,3.0,2.0,3,2,387.429080399944,724.0,46946.936480602024,1,1,1,2,160.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054295342595000205,23473.468240301012,6,3,6,6_1,6_3,6_0_0 +25973,0,25.0,0.0,1,111,390.0,1684.0,0.0,63,37,0.0,0.0,665.0282119151038,2074.0,0.0,3197.0808167306045,20,2,2,2,2,2,2,2,1,2,80.0,1,,1,125994,1,2,3,0,2,,492.0,,43,2.0,0.0,9.0,2.0,1.5,2,2,775.487512191021,390.0,60935.871425186386,1,1,5,0,230.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0340357814123712,40623.91428345759,9,5,9,9_1,9_3,9_1_0 +25974,2,38.0,0.0,9,400,300.0,,,0,42,0.0,0.0,,388.0,121.93185183489385,,31,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,125995,1,1,0,0,2,,320.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,132.52025891529587,300.0,20027.942135235637,0,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019372933942992693,20027.942135235637,5,3,5,5_1,5_1,5_0_0 +25975,0,66.0,0.0,1,120,600.0,0.0,0.0,0,71,0.0,0.0,1023.1203260232367,1127.0,193.98249155551292,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,125996,1,2,3,0,2,,288.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1702.93951288603,600.0,35398.0,0,5,5,0,110.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.031837956946720154,35398.0,9,5,9,9_1,9_0,9_1_0 +25976,2,43.0,0.0,8,112,960.0,,,22,55,0.0,0.0,,1236.0,382.4226262094398,,42,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,125997,1,1,0,0,2,,480.0,,43,2.0,2.0,3.0,4.0,2.3,3,2,96.51407748500301,960.0,29948.781979003397,1,1,0,1,88.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04127045970906394,13021.209556088435,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +25977,2,82.0,0.0,2,111,180.0,200.0,0.0,0,78,0.0,0.0,306.936097806971,380.0,0.0,379.7008095879578,70,0,0,0,0,0,0,0,0,0,,2,,2,125998,2,3,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1045.19479367481,180.0,17989.612519357765,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021123300993342694,17989.612519357765,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +25978,2,60.0,0.0,2,111,0.0,0.0,0.0,46,56,0.0,0.0,0.0,1735.0,0.0,0.0,60,2,2,1,2,2,2,2,1,3,20.0,2,,2,125999,2,2,0,0,1,,227.0,538.0,43,2.0,2.0,3.0,2.0,1.5,2,2,852.449623908867,0.0,65009.63291665174,1,1,2,3,71.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026688352512687277,43339.75527776783,10,5,10,10_0,10_4,10_0_1 +25979,2,37.0,0.0,2,111,0.0,0.0,0.0,56,37,0.0,0.0,0.0,679.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,126000,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,814.347053574613,0.0,55753.70482366117,1,4,1,2,68.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012178562880216723,27876.852411830587,7,4,7,7_0,7_4,7_0_1 +25980,2,40.0,0.0,5,112,600.0,0.0,0.0,38,38,0.0,1191.8945493092015,1023.1203260232367,1558.0,80.36417507299822,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,3,126001,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1607.48584638309,600.0,76912.360823471,1,1,1,2,120.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020256821963584196,42729.08934637278,9,5,9,9_1,9_2,9_0_0 +25981,2,75.0,0.0,6,112,200.0,0.0,0.0,74,74,0.0,0.0,341.04010867441224,200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,126002,2,2,1,0,1,,270.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,749.683073487907,200.0,121239.2742365925,5,5,0,1,200.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016496304622354455,80826.182824395,10,5,10,10_1,10_1,10_0_0 +25982,2,64.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1175.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126003,2,2,3,0,1,,205.0,265.0,11,0.0,3.0,2.0,1.0,1.0,1,1,993.898913971138,0.0,18249.473367332983,0,5,2,3,44.0,6,5,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06438541958713612,18249.473367332983,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +25983,2,54.0,0.0,5,111,1630.0,0.0,0.0,43,38,0.0,0.0,2779.4768856964597,1690.0,83.13535352379125,0.0,12,2,2,2,2,1,2,2,2,0,,1,,3,126004,2,1,3,0,1,,840.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,491.717505419392,1630.0,120049.63102284147,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.014077510989421109,48019.85240913658,10,5,10,10_1,10_4,10_0_0 +25984,2,47.0,0.0,5,111,1340.0,0.0,0.0,52,45,0.0,0.0,2284.968728118562,1390.0,69.27946126982604,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,3,126005,2,2,0,0,1,,0.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,1614.39207815951,1340.0,49210.04536382835,1,1,0,1,86.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028246265365601837,24605.022681914175,7,4,7,7_0,7_3,7_0_0 +25985,2,55.0,0.0,2,111,250.0,560.0,0.0,0,52,0.0,0.0,426.3001358430153,810.0,0.0,1063.162266846282,71,2,2,2,2,1,2,2,2,3,15.0,2,,2,126006,2,1,0,1,1,699.0,0.0,353.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2249.17413821187,250.0,18208.659787179942,0,1,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0444843283068143,18208.659787179942,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +25986,2,55.0,0.0,7,111,300.0,,,0,46,0.0,0.0,,392.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,1,,5,126007,2,2,0,0,2,,1530.0,,12,1.0,5.0,5.0,1.0,1.0,1,1,110.52774113196546,300.0,6312.05194786816,0,4,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06210341791188752,6312.05194786816,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +25987,2,28.0,0.0,5,111,569.0,0.0,0.0,0,38,0.0,0.0,970.2591091787028,569.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,3,126008,2,2,0,0,1,,0.0,955.0,12,1.0,0.0,2.0,1.0,1.0,1,1,751.21506108756,569.0,53336.75758623615,0,1,3,4,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010668065059635978,53336.75758623615,10,5,10,10_0,10_4,10_0_0 +25988,2,55.0,0.0,1,400,2010.0,0.0,0.0,0,67,0.0,132.4327277010224,3427.453092177843,2206.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,2,3.0,1,,1,126009,2,1,1,0,2,,208.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,1567.66423418608,2010.0,17540.325376170975,0,1,0,1,60.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12576733627740527,13492.557981669981,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +25989,1,50.0,183.0,2,111,156.0,,,0,52,0.0,0.0,,216.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,2,,2,126010,2,1,0,0,2,,160.0,272.0,12,1.0,1.0,3.0,1.0,1.0,1,1,141.35364763976787,156.0,8685.664590980321,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02486856333645516,8685.664590980321,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +25990,2,50.0,0.0,7,112,600.0,0.0,0.0,54,48,1582.0242765549024,158.91927324122688,1023.1203260232367,2220.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,126011,2,2,3,0,1,,710.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,794.307482744604,600.0,54950.0,1,1,1,2,150.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04040036396724295,23891.304347826088,6,3,6,6_1,6_0,6_0_0 +25991,2,64.0,0.0,5,112,1246.0,36.0,0.0,0,74,0.0,0.0,2124.679877041588,1282.0,0.0,68.3461457258324,50,0,0,0,0,0,0,0,0,0,,1,,3,126012,1,1,1,0,1,,235.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,454.410558939673,1246.0,26940.598825663863,0,5,0,1,80.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04758617313208179,26940.598825663863,7,4,7,7_1,7_0,7_0_0 +25992,2,69.0,0.0,2,111,394.0,48.0,0.0,77,74,0.0,0.0,671.8490140885921,442.0,0.0,91.12819430110987,20,0,0,0,0,0,0,0,0,0,,2,,2,126013,2,2,0,1,1,,161.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1790.34755717359,394.0,110741.94511739368,5,5,0,1,105.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003991260940300906,73827.96341159579,10,5,10,10_0,10_2,10_0_1 +25993,2,70.0,0.0,6,112,0.0,0.0,0.0,86,86,1054.6828510366015,0.0,0.0,2583.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,126014,2,2,5,0,2,,178.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,842.446721030294,0.0,26989.091468995288,5,5,0,1,60.0,6,0,7,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09570533350362373,17992.72764599686,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +25994,2,31.0,0.0,1,221,0.0,0.0,0.0,43,21,0.0,1205.1378220793038,0.0,2370.0,277.1178450793042,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,126015,2,1,1,0,1,,421.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,637.93774133538,0.0,63704.875259123415,1,1,0,1,120.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03720280418664792,35391.597366179674,9,5,9,9_1,9_1,9_1_0 +25996,2,35.0,0.0,1,111,0.0,0.0,2000.0,55,22,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,126017,2,2,5,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1033.75577947333,0.0,38609.96974181298,1,1,1,2,140.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05180009239515367,18385.699877053798,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +25997,2,69.0,0.0,1,211,700.0,0.0,0.0,90,90,0.0,529.7309108040896,1193.6403803604428,1460.0,498.81212114274757,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126018,2,2,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1332.16812389455,700.0,27979.98838122374,5,5,0,1,70.0,3,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05218015033128992,18653.325587482494,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +25998,0,72.0,0.0,1,111,432.0,0.0,0.0,0,74,0.0,0.0,736.6466347367304,460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,126019,1,1,0,1,1,936.0,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1044.67464666957,432.0,33555.06906334215,0,5,5,0,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013708808023361677,33555.06906334215,9,5,9,9_0,9_4,9_1_0 +25999,1,68.0,121.0,7,221,385.0,,,0,78,0.0,0.0,,429.0,60.965925917446924,,41,0,0,0,0,0,0,0,0,0,,2,,5,126020,2,1,0,0,2,,300.0,440.0,11,0.0,1.0,3.0,1.0,1.0,1,1,98.22597638526716,385.0,17437.121885774766,0,5,2,3,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024602684021494334,17437.121885774766,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +26000,2,69.0,0.0,2,111,500.0,1100.0,0.0,68,75,0.0,0.0,852.6002716860306,1600.0,0.0,2088.354452733768,41,0,0,0,0,0,0,0,0,0,,1,,2,126021,2,1,3,0,1,,240.0,670.0,42,1.0,3.0,5.0,2.0,1.5,2,2,92.0104389056879,500.0,46730.443250002456,1,5,2,3,120.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03423892196870861,31153.62883333497,8,4,8,8_1,8_2,8_0_1 +26001,1,31.0,415.0,2,111,400.0,900.0,0.0,0,85,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,50,2,2,2,2,2,2,2,1,0,,1,,2,126022,1,2,2,0,1,,450.0,403.0,31,1.0,0.0,4.0,5.0,2.4,2,2,367.583154942894,400.0,13697.48783574778,0,6,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.0949079141802377,5707.286598228242,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +26002,2,53.0,0.0,1,111,520.0,0.0,0.0,0,52,0.0,0.0,886.7042825534718,520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,8.0,2,,1,126023,1,3,0,0,1,,0.0,360.0,12,1.0,1.0,1.0,1.0,1.0,1,1,391.304183317328,520.0,15708.55933605778,0,1,2,3,30.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.033102972008793974,15708.55933605778,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +26003,2,83.0,0.0,1,111,240.0,1450.0,0.0,0,78,0.0,0.0,409.2481304092947,1760.0,96.99124577775646,2752.830869512694,50,0,0,0,0,0,0,0,0,0,,1,,1,126024,2,1,1,0,2,,30.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1346.45918956914,240.0,13425.10906240755,0,5,0,1,30.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.13109763144705328,13425.10906240755,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +26004,0,58.0,0.0,2,111,0.0,0.0,210.0,0,56,0.0,0.0,132.3668409870962,210.0,0.0,251.313750988583,60,0,0,0,0,0,0,0,0,0,,2,,2,126025,2,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1560.03166079623,0.0,9365.789901289372,0,1,5,0,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022422027636034167,9365.789901289372,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +26005,2,39.0,0.0,6,111,284.0,1058.0,0.0,52,38,0.0,0.0,484.2769543176654,1342.0,0.0,2008.6172827202968,50,0,0,0,0,0,0,0,0,0,,2,,4,126026,1,2,0,0,1,,350.0,450.0,43,2.0,0.0,3.0,2.0,1.5,2,2,374.160356100204,284.0,15452.26046829952,4,4,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08684813479251968,10301.506978866348,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +26006,1,67.0,166.0,9,111,446.0,,,0,52,0.0,0.0,,572.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,126027,2,1,0,0,1,,306.0,316.0,22,1.0,2.0,3.0,2.0,1.5,2,2,155.16020168312014,446.0,16964.02542613852,0,1,2,3,26.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033718412088598416,11309.350284092347,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +26007,2,57.0,0.0,6,111,1985.0,0.0,0.0,52,33,0.0,0.0,3384.8230785935416,1985.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,80.0,1,,4,126028,2,1,2,0,1,,577.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,602.058093210392,1985.0,126248.60727718717,1,1,0,1,94.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015722945724397586,50499.442910874866,10,5,10,10_1,10_4,10_0_0 +26008,2,42.0,0.0,7,111,900.0,0.0,0.0,37,38,0.0,0.0,1534.680489034855,900.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,5.0,2,,5,126029,1,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,957.558912916505,900.0,188034.5134730737,4,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004786355352411827,89540.24451098747,10,5,10,10_0,10_4,10_0_0 +26009,0,71.0,0.0,1,111,1850.0,0.0,0.0,0,74,0.0,0.0,3154.621005238313,1850.0,0.0,0.0,44,2,2,2,2,2,2,2,1,0,,2,,1,126030,2,3,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,967.647128004892,1850.0,47930.42594710107,0,5,0,1,96.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.03859761234005666,47930.42594710107,10,5,10,10_0,10_4,10_1_0 +26010,2,56.0,0.0,6,111,1200.0,1310.0,0.0,33,47,0.0,397.2981831030672,2046.2406520464733,2810.0,0.0,2487.0403028011237,50,1,2,2,2,2,2,2,1,2,3.0,1,,4,126031,2,1,2,0,1,,600.0,,43,4.0,1.0,5.0,4.0,2.5,4,4,925.875875995599,1200.0,100392.93771359239,1,1,0,1,85.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02799001666846879,40157.17508543695,9,5,9,9_1,9_2,9_0_0 +26011,2,84.0,0.0,2,111,0.0,,,0,74,0.0,0.0,,1128.0,63.73710436823996,,20,0,0,0,0,0,0,0,0,0,,2,,2,126032,2,2,0,0,2,,246.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,116.5634748249648,0.0,49619.78042095261,0,5,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022732869642520366,49619.78042095261,10,5,10,10_0,10_2,10_0_1 +26012,2,56.0,0.0,1,111,484.0,1904.0,0.0,31,47,0.0,0.0,825.3170629920776,2388.0,0.0,3614.751707277358,31,2,2,2,2,1,2,2,2,2,30.0,1,,1,126033,2,3,3,0,1,,417.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,375.744338151015,484.0,63870.87352929577,1,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,1,1,0,0,0.037387933936815373,31935.436764647886,8,4,8,8_1,8_4,8_1_0 +26013,2,32.0,0.0,9,111,1512.0,0.0,0.0,54,38,0.0,0.0,2578.2632215785566,1512.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,126034,2,1,1,0,1,,560.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,217.166198110279,1512.0,52675.96244021513,4,1,1,2,142.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02870379448151617,21948.31768342297,6,3,6,6_1,6_4,6_0_0 +26014,2,92.0,0.0,2,111,416.0,113.0,0.0,0,74,0.0,0.0,709.3634260427774,529.0,0.0,214.53095741719616,71,0,0,0,0,0,0,0,0,0,,2,,2,126035,2,3,0,1,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,2059.44927247344,416.0,46197.25717587396,0,5,0,1,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011450896272609552,46197.25717587396,10,5,10,10_0,10_3,10_0_1 +26015,2,51.0,0.0,2,111,864.0,0.0,0.0,55,47,0.0,0.0,1473.293269473461,864.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,2,,2,126036,2,1,0,1,1,750.0,0.0,440.0,43,2.0,1.0,3.0,4.0,2.1,2,2,207.676420443001,864.0,31671.47718657017,1,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0272800663799277,15081.655803128651,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +26016,0,31.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,302.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,126037,2,2,0,1,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,273.661112564917,0.0,681.5294250943631,0,4,5,0,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.4431209994464813,681.5294250943631,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +26017,2,77.0,0.0,1,112,720.0,0.0,0.0,0,77,3691.3899786281054,0.0,1227.744391227884,4250.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126038,1,1,1,0,1,,240.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1221.2501634625,720.0,21682.116425132488,0,5,0,1,160.0,9,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.19601407522531697,21682.116425132488,6,3,6,6_1,6_0,6_1_0 +26018,1,29.0,102.0,1,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,2868.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,30.0,1,,1,126039,2,1,1,0,1,,0.0,350.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2271.3082236869,0.0,13379.269975237385,0,1,3,4,70.0,1,2,7,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.214361471538294,13379.269975237385,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +26019,2,84.0,0.0,7,111,1457.0,0.0,0.0,77,78,0.0,0.0,2484.477191693093,1617.0,221.69427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,126040,2,1,1,0,1,,175.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,917.642978724573,1457.0,36054.86008232807,5,5,0,1,80.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044848322703450356,24036.573388218716,6,3,6,6_1,6_3,6_0_0 +26020,2,34.0,0.0,1,120,957.0,1406.0,0.0,43,48,0.0,1046.218548838077,1631.8769200070626,3153.0,0.0,2669.296691403343,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,126041,2,2,1,0,1,,290.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1439.60307418808,957.0,37951.87677214255,1,1,1,2,150.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08307889538454569,21084.375984523638,5,3,5,5_1,5_0,5_1_0 +26021,1,52.0,126.0,2,111,130.0,0.0,0.0,0,68,0.0,0.0,221.67607063836795,180.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,126042,2,1,0,1,1,370.0,0.0,207.0,12,1.0,0.0,1.0,1.0,1.0,1,1,350.995994086302,130.0,11450.0,0,1,2,3,30.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.01572052401746725,11450.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26022,2,41.0,0.0,2,111,300.0,200.0,0.0,0,67,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,71,1,2,2,2,1,2,2,2,0,,2,,2,126043,2,1,0,1,1,600.0,0.0,348.0,12,1.0,0.0,2.0,1.0,1.0,1,1,278.643244950271,300.0,18524.355064674175,0,4,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026991492996886933,18524.355064674175,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +26023,2,54.0,0.0,1,111,540.0,120.0,0.0,52,46,0.0,0.0,920.8082934209131,660.0,0.0,227.8204857527747,20,0,0,0,0,0,0,0,0,3,60.0,2,,1,126044,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,914.105377622167,540.0,86609.60752803269,1,1,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007620401694885635,43304.803764016346,10,5,10,10_0,10_4,10_1_0 +26025,2,32.0,0.0,5,111,300.0,,,67,34,0.0,0.0,,468.0,232.77898986661552,,20,0,0,0,0,0,0,0,0,0,,1,,3,126046,2,1,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,83.99006675175225,300.0,23687.994390606924,4,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01975684358425792,11279.99732886044,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +26026,2,49.0,0.0,2,111,0.0,0.0,323.0,0,85,0.0,0.0,203.59280780396224,323.0,0.0,386.54448366339193,50,2,1,1,1,1,2,2,2,0,,2,,2,126047,2,1,0,1,1,869.0,0.0,243.0,11,0.0,1.0,3.0,1.0,1.0,1,1,392.862038807067,0.0,12392.341919691604,0,7,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.026064484186540116,12392.341919691604,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +26027,2,64.0,0.0,7,111,700.0,,,77,90,0.0,0.0,,784.0,116.38949493330776,,70,0,0,0,0,0,0,0,0,0,,1,,5,126048,1,2,0,0,2,,350.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,143.31551289567722,700.0,43122.706086423634,6,5,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018180677215125597,28748.470724282422,8,4,8,8_1,8_2,8_0_0 +26028,0,44.0,0.0,2,111,1560.0,0.0,0.0,0,62,0.0,0.0,2660.1128476604154,1586.0,36.025319860309544,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,126049,2,1,0,0,1,,312.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,2140.13296657759,1560.0,14274.174608895932,0,4,0,1,80.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1111097519440161,10980.134314535331,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +26029,1,24.0,413.0,5,111,0.0,,,0,68,0.0,0.0,,514.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,2,,3,126050,2,2,0,0,2,,0.0,700.0,22,2.0,0.0,4.0,4.0,2.5,4,3,111.70702888756522,0.0,30261.319869257917,0,1,2,3,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016985379428944406,12104.527947703167,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +26030,1,44.0,300.0,1,111,480.0,36.0,0.0,0,52,0.0,0.0,818.4962608185893,516.0,0.0,68.3461457258324,42,0,0,0,0,0,0,0,0,3,60.0,2,,1,126051,1,2,0,1,1,305.0,0.0,285.0,12,1.0,0.0,1.0,1.0,1.0,1,1,860.938989879534,480.0,19372.274174287613,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.02663600542495291,19372.274174287613,5,3,5,5_0,5_4,5_1_0 +26031,2,62.0,0.0,2,222,350.0,0.0,0.0,0,78,1582.0242765549024,7.945963662061343,596.8201901802214,1901.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126052,2,2,2,0,1,,182.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1549.65131469261,350.0,15038.7433991439,0,5,0,1,140.0,1,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12640683796148933,15038.7433991439,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +26032,2,45.0,0.0,7,111,900.0,,,72,21,0.0,0.0,,1005.0,145.4868686666347,,71,0,0,0,0,0,0,0,0,0,,1,,5,126053,2,2,0,0,2,,600.0,,42,1.0,1.0,4.0,4.0,2.5,4,3,109.53347045536245,900.0,5115.505439591257,7,4,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19646152503755374,2046.2021758365026,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26033,2,35.0,0.0,8,111,1560.0,0.0,0.0,46,53,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,2,2002.0,6,126054,2,1,0,0,2,,0.0,1453.0,43,2.0,0.0,3.0,4.0,2.1,2,2,866.84596782104,1560.0,102965.16792009659,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015150754682501922,49031.032342903134,10,5,10,10_0,10_4,10_0_0 +26034,2,49.0,0.0,1,111,320.0,1300.0,0.0,0,37,0.0,0.0,545.6641738790596,1620.0,0.0,2468.055262321726,20,2,1,2,2,2,2,2,1,2,15.0,1,,1,126055,2,1,1,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1131.70977083599,320.0,32829.65347042568,0,1,0,1,60.0,8,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04934563203535985,32829.65347042568,8,4,8,8_1,8_2,8_1_0 +26035,0,47.0,0.0,7,111,1600.0,,,0,85,0.0,0.0,,1876.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,126056,2,2,0,0,2,,600.0,,31,0.0,0.0,3.0,3.0,1.8,2,1,107.96821398799503,1600.0,11574.115279535348,0,6,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1620858229498569,6430.064044186304,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26036,1,37.0,400.0,7,111,800.0,,,0,55,0.0,0.0,,1040.0,332.541414095165,,60,0,0,0,0,0,0,0,0,2,20.0,2,,5,126057,2,1,0,0,2,,800.0,500.0,32,1.0,0.0,3.0,3.0,1.6,1,1,110.92272823328925,800.0,26834.871101460503,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.038755542967500875,16771.794438412813,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +26037,1,40.0,345.0,5,111,1300.0,0.0,0.0,0,52,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,45.0,2,,3,126058,2,1,0,1,1,528.0,0.0,641.0,32,1.0,0.0,4.0,6.0,3.0999999999999996,4,2,216.65726983505,1300.0,39443.84064340538,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03295825099165,12723.819562388835,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +26038,2,71.0,0.0,2,111,530.0,,,78,78,0.0,0.0,,760.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,126059,2,2,0,0,2,,600.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,111.86819398274164,530.0,46899.04714254605,5,5,0,1,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01620502006554714,23449.523571273025,6,3,6,6_1,6_2,6_0_1 +26039,2,52.0,0.0,1,120,900.0,0.0,0.0,0,69,0.0,66.2163638505112,1534.680489034855,1310.0,498.81212114274757,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126060,1,2,2,0,2,,400.0,,22,1.0,0.0,3.0,2.0,1.5,2,2,1056.07994027058,900.0,27897.58665383277,0,1,0,1,85.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04695746683235135,18598.39110255518,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +26040,2,59.0,0.0,6,111,336.0,1264.0,0.0,42,38,0.0,0.0,572.9473825730125,1600.0,0.0,2399.709116595893,41,0,0,0,0,0,0,0,0,2,40.0,1,,4,126061,2,2,2,0,1,,450.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,842.08705207727,336.0,60683.57767461742,1,1,0,1,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02636627669810648,40455.71844974495,9,5,9,9_1,9_4,9_0_0 +26041,2,50.0,0.0,2,111,180.0,120.0,0.0,54,33,0.0,0.0,306.936097806971,300.0,0.0,227.8204857527747,42,0,0,0,0,0,0,0,0,3,60.0,2,,2,126062,2,1,0,1,1,1200.0,0.0,417.0,43,2.0,0.0,4.0,4.0,2.1,2,2,629.057722025149,180.0,43072.6691506967,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006964973518367331,20510.794833665095,5,3,5,5_0,5_4,5_0_1 +26042,0,28.0,0.0,6,111,660.0,0.0,0.0,0,46,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,4,126063,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2060.10205227155,660.0,32510.307537755238,0,1,5,0,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02030125366342725,32510.307537755238,8,4,8,8_0,8_3,8_0_0 +26043,2,24.0,0.0,6,120,0.0,0.0,0.0,68,52,0.0,0.0,0.0,3349.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,126064,1,1,3,0,1,,125.0,450.0,43,2.0,0.0,4.0,2.0,1.5,2,2,976.028623816469,0.0,19126.35004044955,1,1,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.17509875082895243,12750.900026966367,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +26044,2,48.0,0.0,8,111,700.0,,,53,42,0.0,0.0,,952.0,349.1684847999233,,41,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,126065,1,1,0,0,2,,792.0,,43,2.0,0.0,6.0,6.0,3.3,5,4,76.57642750335924,700.0,75586.04688627907,1,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012594917173434214,22904.862692811843,6,3,6,6_1,6_2,6_0_0 +26045,1,24.0,350.0,5,111,900.0,0.0,0.0,0,52,0.0,0.0,1534.680489034855,1550.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,126066,2,1,0,1,1,300.0,0.0,350.0,32,1.0,0.0,3.0,2.0,1.3,1,1,363.490705597985,900.0,11753.078844521242,0,1,2,3,61.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.13188033710184294,9040.829880400956,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26046,2,55.0,0.0,7,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1279.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,126067,2,1,2,0,1,,417.0,700.0,43,2.0,1.0,3.0,3.0,2.0,3,3,609.525029355044,0.0,47357.62055559052,1,1,2,3,60.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027007269051844612,23678.81027779526,6,3,6,6_1,6_2,6_0_0 +26047,2,30.0,0.0,9,111,573.0,0.0,0.0,46,38,0.0,0.0,977.0799113521911,573.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,2,2004.0,6,126068,2,1,0,0,1,,0.0,710.0,43,2.0,0.0,2.0,2.0,1.5,2,2,919.008852712473,573.0,52770.708882294515,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010858296432554678,35180.472588196346,9,5,9,9_0,9_4,9_0_0 +26048,0,78.0,0.0,5,112,1551.0,0.0,0.0,71,72,0.0,463.51454695357836,2644.766042770067,2051.0,207.83838380947813,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,126069,2,1,3,0,2,,946.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,926.323102802146,1551.0,85605.67428206281,5,5,0,1,180.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023958692191853356,57070.44952137521,10,5,10,10_1,10_1,10_0_0 +26049,1,47.0,388.0,7,111,1900.0,0.0,0.0,0,85,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,5,126070,2,1,0,0,1,,0.0,333.0,31,0.0,4.0,3.0,5.0,2.5999999999999996,3,1,141.64714427797,1900.0,16404.017863240697,0,6,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11582528230828477,6309.2376397079615,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +26050,2,64.0,0.0,6,111,1000.0,0.0,0.0,0,77,1476.555991451242,0.0,1705.2005433720612,2400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,126071,2,1,1,0,1,,800.0,,21,1.0,3.0,3.0,5.0,2.5999999999999996,3,3,712.202050843195,1000.0,52995.501409915276,0,5,0,1,150.0,7,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04528686277418574,20382.885157659723,5,3,5,5_1,5_2,5_0_0 +26051,2,27.0,0.0,5,111,0.0,0.0,1900.0,63,52,0.0,0.0,1197.6047517880133,1900.0,0.0,2273.7910803728937,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,126072,1,1,3,0,1,,360.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1563.37043801856,0.0,35773.921398478524,1,1,1,2,82.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05311131477134647,19874.400776932514,5,3,5,5_1,5_3,5_0_0 +26052,1,37.0,512.0,2,111,0.0,0.0,1235.0,85,64,0.0,0.0,778.4430886622085,1235.0,0.0,1477.964202242381,31,0,0,0,0,0,0,0,0,0,,2,,2,126073,1,2,0,0,1,,360.0,594.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,1040.81110448779,0.0,15861.075328954317,6,4,2,3,78.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07786357320587926,5874.472344057155,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +26053,2,75.0,0.0,1,400,340.0,0.0,0.0,78,78,0.0,132.4327277010224,579.7681847465008,1811.0,1899.6428280186303,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126074,2,1,2,0,1,,228.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1111.52636236026,340.0,35288.376904773126,5,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05132001409095818,23525.584603182084,6,3,6,6_1,6_0,6_1_0 +26054,0,65.0,0.0,2,111,600.0,,,0,75,0.0,0.0,,663.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,2,126075,2,2,0,0,2,,220.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,139.01726547052814,600.0,41429.05827086245,0,5,5,0,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01600326021569976,41429.05827086245,9,5,9,9_1,9_3,9_0_1 +26055,1,43.0,375.0,2,112,550.0,,,0,63,0.0,0.0,,638.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,2,126076,2,1,0,0,2,,240.0,350.0,32,1.0,4.0,5.0,3.0,1.6,1,1,123.72554956866654,550.0,14953.482968969314,0,4,2,3,110.0,7,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04266564527635095,9345.926855605821,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +26056,1,60.0,270.0,2,111,1483.0,0.0,0.0,0,86,0.0,0.0,2528.812405820767,1579.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126077,2,2,5,0,1,,372.0,282.0,11,0.0,0.0,2.0,1.0,1.0,1,1,287.746074494486,1483.0,11793.183486238533,0,7,2,3,50.0,7,6,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.13389090416871197,11793.183486238533,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +26057,0,30.0,0.0,6,111,0.0,0.0,0.0,0,33,0.0,0.0,0.0,357.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,4,126078,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,347.196822040076,0.0,55204.98999770646,0,1,5,0,72.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006466806714661697,55204.98999770646,10,5,10,10_0,10_3,10_0_0 +26058,2,69.0,0.0,1,111,2458.0,135.0,0.0,86,72,0.0,0.0,4191.382935608526,2593.0,0.0,256.2980464718715,41,0,0,0,0,0,0,0,0,0,,2,,1,126079,2,2,0,0,1,,356.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,778.910753607749,2458.0,72221.63646735082,6,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.035903368115623016,48147.75764490055,10,5,10,10_0,10_4,10_1_0 +26059,2,54.0,0.0,1,211,1200.0,0.0,0.0,43,31,6328.0971062196095,0.0,2046.2406520464733,7200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,8.0,1,,1,126080,2,2,3,0,1,,1100.0,,43,2.0,1.0,7.0,4.0,2.5,4,3,1710.39549815962,1200.0,211468.72742477336,1,1,0,1,222.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03404758749759482,84587.49096990934,10,5,10,10_1,10_1,10_1_0 +26060,2,74.0,0.0,9,111,983.0,0.0,0.0,77,74,0.0,0.0,1676.212134134736,983.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2010.0,6,126081,2,1,0,0,1,,374.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,418.298869712596,983.0,44155.46087102996,5,5,0,1,64.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022262252065971263,29436.97391401997,8,4,8,8_0,8_2,8_0_0 +26061,2,59.0,0.0,7,111,280.0,0.0,0.0,55,52,0.0,595.9472746546007,477.4561521441771,2330.0,2216.9427606344334,0.0,60,0,0,0,0,0,0,0,0,2,8.0,1,,5,126082,2,1,2,0,1,,250.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,360.026118795836,280.0,42785.14886791059,1,1,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05445814871869079,28523.43257860706,8,4,8,8_1,8_3,8_0_0 +26062,2,62.0,0.0,1,112,460.0,0.0,0.0,22,22,210.9365702073203,13.243272770102239,784.3922499511482,680.0,13.855892253965209,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,126083,2,1,1,0,1,,200.0,,42,1.0,1.0,2.0,2.0,1.5,2,2,883.765970765131,460.0,42273.76944105663,1,5,0,1,30.0,8,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01608562493931706,28182.512960704422,8,4,8,8_1,8_0,8_1_0 +26063,2,51.0,0.0,2,111,1100.0,0.0,0.0,31,38,527.3414255183008,397.2981831030672,1875.7205977092674,1900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,126084,2,1,1,0,2,,600.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1798.71444866504,1100.0,65380.75520354969,1,1,1,2,90.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029060539207366697,28426.415305891172,8,4,8,8_1,8_3,8_0_1 +26064,2,82.0,0.0,2,111,0.0,0.0,1820.0,86,78,0.0,0.0,1147.1792885548336,1820.0,0.0,2178.052508567719,71,2,2,2,2,1,2,2,2,0,,1,,2,126085,1,3,4,0,2,,270.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,310.856407845709,0.0,20931.028028559853,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,0,0,0,0.0869522508649196,13954.01868570657,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +26065,2,58.0,0.0,2,111,550.0,0.0,0.0,43,33,0.0,0.0,937.8602988546337,550.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,25.0,2,,2,126086,2,2,0,1,1,,207.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,499.816812698518,550.0,81376.27254412833,1,1,1,2,125.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006758726872157344,54250.848362752215,10,5,10,10_0,10_3,10_0_1 +26066,2,67.0,0.0,2,221,0.0,0.0,0.0,71,71,2003.897416969543,0.0,0.0,3086.0,457.2444443808519,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126087,2,1,2,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1336.52013928183,0.0,22010.21350337872,5,5,0,1,140.0,1,3,7,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14020763585624818,14673.475668919147,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +26067,2,62.0,0.0,9,120,700.0,,,38,45,0.0,0.0,,784.0,116.38949493330776,,42,0,0,0,0,0,0,0,0,0,,1,2011.0,6,126088,2,1,0,0,2,,500.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,240.018413185795,700.0,47730.25607664018,4,1,1,2,150.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016425639928290683,31820.17071776012,8,4,8,8_1,8_2,8_0_0 +26068,2,81.0,0.0,7,111,490.0,391.0,0.0,0,77,0.0,0.0,835.54826625231,881.0,0.0,742.3150827444575,50,0,0,0,0,0,0,0,0,0,,2,,5,126089,2,2,0,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,915.201235192223,490.0,36498.959350723104,0,5,0,1,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02413767448913707,36498.959350723104,9,5,9,9_0,9_4,9_0_0 +26069,2,58.0,0.0,1,111,469.0,2290.0,0.0,46,38,0.0,0.0,799.7390548414967,2759.0,0.0,4347.574269782117,12,0,0,0,0,0,0,0,0,3,60.0,1,,1,126090,2,2,2,0,1,,387.0,,43,2.0,3.0,11.0,2.0,1.5,2,2,369.973360264589,469.0,129840.1729258146,1,1,0,1,232.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021249201520829618,86560.1152838764,10,5,10,10_1,10_4,10_1_0 +26070,2,49.0,0.0,7,111,500.0,0.0,0.0,55,55,0.0,0.0,852.6002716860306,500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,5,126091,2,1,0,1,2,,541.0,1200.0,43,3.0,0.0,5.0,3.0,2.0,3,3,279.720514942038,500.0,42180.879725767874,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011853711995830069,21090.439862883937,5,3,5,5_0,5_4,5_0_0 +26071,2,40.0,0.0,9,111,480.0,,,54,52,0.0,0.0,,732.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,126092,2,1,0,0,2,,360.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,148.18026954554549,480.0,51685.6940083346,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014162526285938252,24612.235242064093,7,4,7,7_1,7_3,7_0_0 +26072,2,52.0,0.0,5,111,400.0,200.0,0.0,67,62,0.0,0.0,682.0802173488245,600.0,0.0,379.7008095879578,43,1,2,2,1,1,2,2,2,0,,2,,3,126093,1,3,0,1,1,,0.0,525.0,43,2.0,4.0,3.0,2.0,1.5,2,2,835.612443862381,400.0,21833.614029383894,4,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.027480562731965218,14555.74268625593,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +26073,2,53.0,0.0,7,111,440.0,,,31,34,0.0,0.0,,515.0,103.91919190473907,,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,126094,1,1,0,0,2,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,148.02208038930846,440.0,72076.0840156866,1,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007145227255797022,34321.944769374575,9,5,9,9_1,9_2,9_0_0 +26074,2,35.0,0.0,2,111,1200.0,,,81,38,0.0,0.0,,1200.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,2,126095,2,2,0,0,2,,343.0,1000.0,43,2.0,2.0,2.0,2.0,1.5,2,2,44.916126302011996,1200.0,69509.30651407322,4,1,2,3,33.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01726387530218046,46339.537676048814,10,5,10,10_0,10_2,10_0_1 +26075,2,44.0,0.0,7,111,0.0,,,0,85,0.0,0.0,,365.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,126096,2,2,0,0,2,,0.0,550.0,31,2.0,2.0,4.0,3.0,2.0,3,2,132.7264281581501,0.0,6748.059154245988,0,6,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05408962661068792,3374.029577122994,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26076,2,65.0,0.0,8,112,80.0,,,77,77,0.0,0.0,,164.0,116.38949493330776,,60,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126097,2,1,0,0,2,,134.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,92.08831680236045,80.0,26527.387405195106,5,5,0,1,96.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006182289929082211,17684.92493679674,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +26077,2,68.0,0.0,5,111,0.0,0.0,165.0,0,78,0.0,0.0,104.00251791843273,165.0,0.0,197.46080434817236,71,2,1,2,1,2,2,2,2,0,,2,,3,126098,2,2,0,1,1,,36.0,,11,0.0,3.0,1.0,1.0,1.0,1,1,427.274418894081,0.0,9444.535996188883,0,5,0,1,28.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01747041888204797,9444.535996188883,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +26078,1,80.0,270.0,2,111,201.0,0.0,0.0,86,78,0.0,0.0,342.74530921778427,425.0,310.3719864888207,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126099,2,2,0,1,1,589.0,0.0,258.0,41,0.0,3.0,2.0,2.0,1.5,2,2,332.210499404858,201.0,9401.821393247883,6,5,2,3,49.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04520400699222203,6267.880928831922,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26079,1,25.0,335.0,2,111,0.0,0.0,0.0,38,68,0.0,0.0,0.0,1027.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,126100,2,3,0,1,1,600.0,698.0,500.0,43,2.0,0.0,5.0,3.0,1.8,2,2,461.197974711088,0.0,10522.021564554077,4,1,2,3,85.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09760481801897201,5845.567535863376,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26080,2,37.0,0.0,2,112,800.0,0.0,0.0,54,33,738.277995725621,0.0,1364.160434697649,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,1,,2,126101,2,1,1,0,2,,720.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,828.597998956316,800.0,49657.62891165505,4,1,1,2,75.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03020683896664945,23646.489957930975,6,3,6,6_1,6_0,6_0_1 +26082,0,42.0,0.0,1,111,600.0,1374.0,0.0,22,23,0.0,0.0,1023.1203260232367,1974.0,0.0,2608.54456186927,50,0,0,0,0,0,0,0,0,3,20.0,2,,1,126103,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1575.47239283467,600.0,128002.69646482055,1,1,5,0,150.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015421550127598459,85335.13097654704,10,5,10,10_0,10_3,10_1_0 +26083,1,47.0,548.0,5,111,300.0,0.0,0.0,0,85,0.0,0.0,511.56016301161833,369.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,126104,1,2,0,1,1,417.0,0.0,620.0,31,2.0,0.0,3.0,6.0,3.0999999999999996,4,4,93.6720240910364,300.0,18847.181956710498,0,6,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01957852377334418,6079.7361150679035,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +26084,2,66.0,0.0,1,120,640.0,890.0,0.0,78,72,0.0,0.0,1091.3283477581192,1530.0,0.0,1689.6686026664122,50,0,0,0,0,0,0,0,0,0,,1,,1,126105,2,1,1,0,1,,370.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,690.348468941855,640.0,26174.513257582836,5,5,0,1,160.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0584538090524665,17449.675505055224,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +26085,1,60.0,244.0,8,111,660.0,,,0,75,0.0,0.0,,723.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,126106,2,2,0,0,2,,100.0,354.0,11,0.0,2.0,3.0,1.0,1.0,1,1,99.05487170615284,660.0,8060.528618523346,0,7,2,3,53.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08969635047737731,8060.528618523346,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +26086,2,66.0,0.0,1,111,1559.0,0.0,0.0,85,74,2379.364511938573,144.3516731941144,2658.4076471170433,3924.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,126107,2,2,1,0,1,,654.0,,41,0.0,2.0,4.0,3.0,2.0,3,2,596.059179235552,1559.0,38862.39261595895,7,5,0,1,102.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10097165243471394,19431.196307979473,5,3,5,5_1,5_4,5_1_0 +26087,1,52.0,147.0,2,112,800.0,0.0,0.0,0,22,0.0,794.5963662061343,1364.160434697649,1700.0,415.67676761895626,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,126108,2,1,2,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,858.020164809814,800.0,4345.812361178163,0,1,1,2,50.0,9,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.3911811782732204,4345.812361178163,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +26088,2,51.0,0.0,2,112,530.0,1000.0,0.0,52,38,0.0,0.0,903.7562879871924,1530.0,0.0,1898.504047939789,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,126109,2,3,2,0,1,,377.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,861.260317493722,530.0,83082.27634741983,1,1,0,1,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018415480018892323,55388.18423161322,10,5,10,10_1,10_1,10_0_1 +26089,2,40.0,0.0,8,111,957.0,0.0,0.0,0,37,0.0,0.0,1631.8769200070626,957.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,90.0,2,2002.0,6,126110,2,1,0,0,1,,0.0,886.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1092.23359504846,957.0,54076.31468191813,0,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017697211905603447,41597.16513993702,9,5,9,9_0,9_4,9_0_0 +26090,2,70.0,0.0,2,111,288.0,1195.0,0.0,75,75,0.0,0.0,491.09775649115363,1483.0,0.0,2268.712337288048,41,0,0,0,0,0,0,0,0,0,,1,,2,126111,1,1,2,0,2,,356.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,82.0310124802741,288.0,52381.771475686786,5,5,0,1,84.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02831137546939092,34921.18098379119,9,5,9,9_1,9_3,9_0_1 +26091,2,86.0,0.0,1,112,640.0,0.0,0.0,77,75,1898.4291318658827,0.0,1091.3283477581192,2590.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126112,2,2,1,0,1,,375.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,956.015813889503,640.0,29881.863488423456,5,5,0,1,120.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08667464801863488,19921.242325615636,5,3,5,5_1,5_0,5_1_0 +26092,2,45.0,0.0,2,111,476.0,0.0,0.0,46,38,3164.0485531098047,0.0,811.6754586451011,7505.0,242.47811444439117,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,126113,2,2,1,0,1,,550.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,356.662915214748,476.0,80739.83766303718,1,1,0,1,150.0,7,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09295287453167372,32295.93506521487,8,4,8,8_1,8_2,8_0_1 +26093,1,47.0,270.0,8,111,750.0,1547.0,0.0,0,56,0.0,0.0,1278.9004075290459,2297.0,0.0,2936.9857621628535,60,0,0,0,0,0,0,0,0,0,,2,2003.0,6,126114,2,1,0,0,1,,600.0,447.0,12,1.0,2.0,4.0,1.0,1.0,1,1,391.131092338075,750.0,10931.253645110262,0,1,2,3,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.21013143364644984,10931.253645110262,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +26094,1,62.0,300.0,2,111,600.0,1000.0,0.0,77,78,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,126115,1,3,0,0,1,,1400.0,670.0,41,3.0,3.0,4.0,5.0,3.0,5,5,329.780575532519,600.0,33768.73449301011,6,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04738110634057633,11256.24483100337,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +26095,2,56.0,0.0,2,111,582.0,0.0,0.0,74,34,0.0,0.0,992.4267162425396,582.0,0.0,0.0,10,2,2,2,1,2,2,2,2,3,40.0,2,,2,126116,2,1,0,1,1,,0.0,710.0,42,1.0,2.0,4.0,3.0,2.0,3,3,622.80017457698,582.0,31123.206698565715,7,1,2,3,82.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01869987259464562,15561.603349282857,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +26096,1,37.0,140.0,9,111,300.0,,,0,52,0.0,0.0,,350.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,126117,2,1,0,0,1,,300.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,200.0233614887762,300.0,6332.0,0,4,1,2,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05527479469361971,6332.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +26097,1,34.0,167.0,7,111,200.0,780.0,0.0,0,52,0.0,0.0,341.04010867441224,980.0,0.0,1480.8331573930354,71,2,2,2,2,1,2,2,2,1,15.0,2,,5,126118,2,3,0,0,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3678.18335983898,200.0,9466.0,0,1,3,4,28.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.10352841749418973,9466.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +26098,2,45.0,0.0,7,120,550.0,1200.0,0.0,64,52,0.0,0.0,937.8602988546337,1750.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,126119,2,1,1,0,1,,148.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1716.48815533406,550.0,43035.252925273366,1,1,1,2,90.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04066433635323833,28690.16861684891,8,4,8,8_1,8_1,8_0_0 +26099,2,43.0,0.0,8,300,2100.0,0.0,0.0,55,62,0.0,132.4327277010224,3580.9211410813286,2260.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,1999.0,6,126120,1,1,2,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,726.830973361767,2100.0,48304.51063038304,1,1,1,2,106.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04678652097923301,23002.147919230018,6,3,6,6_1,6_0,6_0_0 +26100,1,60.0,250.0,7,111,400.0,0.0,0.0,0,52,0.0,0.0,682.0802173488245,450.0,69.27946126982604,0.0,50,1,2,2,1,2,2,2,2,2,120.0,1,,5,126121,2,2,5,0,1,,400.0,650.0,22,2.0,1.0,3.0,2.0,1.5,2,2,1102.92319540035,400.0,23968.455929098953,0,1,2,3,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,1,0.018774676238266837,15978.970619399302,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +26101,2,60.0,0.0,2,111,410.0,150.0,0.0,0,77,0.0,0.0,699.1322227825451,560.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,2,,2,126122,1,1,0,1,2,568.0,0.0,410.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1901.96101091038,410.0,18404.715846315943,0,5,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030426984294467916,18404.715846315943,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +26102,1,24.0,470.0,7,211,0.0,,,0,81,0.0,0.0,,406.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,5,126123,2,2,0,0,2,,807.0,600.0,32,1.0,0.0,6.0,4.0,1.9,1,1,7.559826641115449,0.0,5435.925024737596,0,4,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07468830017934225,2861.0131709145244,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +26103,2,47.0,0.0,2,111,420.0,0.0,0.0,46,46,0.0,0.0,716.1842282162656,420.0,0.0,0.0,20,2,1,2,2,1,2,1,2,3,45.0,2,,2,126124,1,1,0,1,2,,0.0,850.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1049.54984620456,420.0,58360.375409802786,1,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00719666378173182,32422.43078322377,8,4,8,8_0,8_4,8_0_1 +26104,2,62.0,0.0,1,112,520.0,0.0,0.0,78,77,1898.4291318658827,0.0,886.7042825534718,2320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126125,2,1,3,0,1,,213.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,641.736715839708,520.0,36352.59944034679,5,5,0,1,110.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06381937016105355,24235.066293564527,7,4,7,7_1,7_0,7_1_0 +26105,1,21.0,257.0,2,111,130.0,0.0,0.0,0,43,0.0,0.0,221.67607063836795,130.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,35.0,2,,2,126126,2,1,0,1,2,170.0,0.0,410.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1343.16798177881,130.0,10528.867151828954,0,1,2,3,14.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012347007339476013,10528.867151828954,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +26106,2,68.0,0.0,1,111,1100.0,290.0,0.0,0,75,0.0,0.0,1875.7205977092674,1390.0,0.0,550.5661739025388,50,0,0,0,0,0,0,0,0,0,,2,,1,126127,2,1,0,0,1,,340.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,468.955148794694,1100.0,15890.044315034229,0,5,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0874761562927086,15890.044315034229,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +26107,2,51.0,0.0,5,111,300.0,800.0,0.0,0,52,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,2,,3,126128,2,1,0,0,1,,400.0,450.0,11,0.0,2.0,5.0,1.0,1.0,1,1,229.145367683747,300.0,22529.27518456563,0,5,2,3,100.0,6,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04882536126832827,22529.27518456563,6,3,6,6_0,6_2,6_0_0 +26108,2,22.0,0.0,1,111,0.0,0.0,0.0,34,55,0.0,0.0,0.0,338.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,30.0,2,,1,126129,2,2,0,0,1,,0.0,400.0,43,2.0,0.0,3.0,2.0,1.5,2,2,760.586511410611,0.0,33571.563223067955,1,1,3,4,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010068044724463435,22381.04214871197,6,3,6,6_0,6_4,6_1_0 +26109,2,46.0,0.0,5,112,2500.0,0.0,0.0,33,37,0.0,0.0,4263.001358430153,2600.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,4,100.0,1,,3,126130,2,2,1,0,1,,424.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1676.53574090232,2500.0,81752.0,1,1,1,2,100.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03180350327820726,45417.777777777774,10,5,10,10_1,10_1,10_0_0 +26110,2,61.0,0.0,5,111,350.0,1230.0,0.0,0,74,0.0,0.0,596.8201901802214,1580.0,0.0,2335.1599789659404,41,0,0,0,0,0,0,0,0,0,,1,,3,126131,2,1,2,0,1,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,380.715250518568,350.0,29305.000157327664,0,5,0,1,87.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05391571375251891,29305.000157327664,8,4,8,8_1,8_3,8_0_0 +26111,0,57.0,0.0,8,112,0.0,0.0,0.0,0,56,0.0,2383.789098618403,0.0,1900.0,138.5589225396521,0.0,42,0,0,0,0,0,0,0,0,0,,1,2002.0,6,126132,1,1,1,0,1,,0.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,1215.96649667667,0.0,16332.798393364887,0,1,5,0,110.0,6,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11633034059686091,16332.798393364887,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +26112,2,34.0,0.0,9,112,1400.0,0.0,0.0,43,38,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,126133,2,1,1,0,1,,200.0,407.0,43,2.0,0.0,3.0,3.0,1.8,2,2,782.874928356302,1400.0,58419.00335735404,1,1,2,3,70.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023964804593397122,32455.00186519669,8,4,8,8_1,8_0,8_0_0 +26113,2,56.0,0.0,1,111,244.0,992.0,0.0,0,55,0.0,0.0,416.0689325827829,1236.0,0.0,1883.3160155562707,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,126134,1,1,4,0,2,,153.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,317.299889548609,244.0,21498.5860711255,0,1,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05749215301466068,21498.5860711255,6,3,6,6_1,6_3,6_1_0 +26114,2,59.0,0.0,1,120,920.0,0.0,0.0,77,62,2109.365702073203,0.0,1568.7844999022964,3010.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,126135,2,1,1,0,1,,750.0,,42,2.0,0.0,5.0,4.0,2.5,4,3,820.064665440857,920.0,33442.365212768425,6,1,0,1,132.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09000559562248815,13376.94608510737,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +26115,2,60.0,0.0,7,111,350.0,,,63,77,0.0,0.0,,460.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,5,126136,2,1,0,0,2,,270.0,,42,1.0,5.0,4.0,2.0,1.5,2,2,124.47608244723021,350.0,15447.413400164794,4,6,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029778448215485233,10298.275600109862,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26116,1,65.0,40.0,2,111,250.0,300.0,0.0,0,78,0.0,0.0,426.3001358430153,550.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,,2,126137,2,2,0,0,1,,200.0,380.0,11,0.0,0.0,3.0,1.0,1.0,1,1,372.55032035687,250.0,13955.797383048424,0,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03941014511059497,13955.797383048424,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +26117,2,79.0,0.0,1,112,730.0,1632.0,0.0,75,75,0.0,0.0,1244.7963966616046,2362.0,0.0,3098.358606237736,41,0,0,0,0,0,0,0,0,0,,1,,1,126138,2,1,1,0,1,,324.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,502.341708345939,730.0,18265.078687246543,5,5,0,1,70.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12931781135162856,12176.719124831028,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +26118,1,30.0,254.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,981.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126139,2,1,0,0,1,,0.0,251.0,12,1.0,1.0,3.0,1.0,1.0,1,1,236.967901397536,0.0,5945.494596925272,0,4,2,3,57.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.16499888848731384,5945.494596925272,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +26119,2,21.0,0.0,2,111,900.0,,,0,55,0.0,0.0,,1026.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,126140,2,1,0,0,2,,400.0,,22,2.0,2.0,4.0,3.0,2.0,3,3,116.84794908682694,900.0,29729.906752500417,0,1,0,1,76.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034510703600296656,14864.953376250209,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +26120,2,58.0,0.0,5,111,1150.0,,,0,64,0.0,0.0,,1216.0,91.44888887617039,,70,0,0,0,0,0,0,0,0,0,,1,,3,126141,2,3,0,0,2,,600.0,,22,3.0,1.0,3.0,4.0,2.5,4,4,92.97898489201188,1150.0,15259.571451640217,0,4,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07968769004120983,6103.828580656087,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26121,2,68.0,0.0,1,112,500.0,1000.0,0.0,77,78,0.0,132.4327277010224,852.6002716860306,1600.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,1,126142,2,1,2,0,1,,800.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,574.51647175516,500.0,40049.90903520318,5,5,0,1,140.0,10,1,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03995015315998914,26699.93935680212,7,4,7,7_1,7_1,7_1_0 +26123,2,78.0,0.0,2,111,420.0,,,0,72,0.0,0.0,,690.0,374.10909085706066,,60,0,0,0,0,0,0,0,0,0,,2,,2,126144,2,1,0,0,2,,700.0,200.0,11,0.0,2.0,5.0,1.0,1.0,1,1,102.6110095692883,420.0,5543.0,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12448132780082988,5543.0,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +26124,2,67.0,0.0,1,211,0.0,0.0,1610.0,78,77,0.0,0.0,1014.8124475677375,1610.0,0.0,1926.7387575791363,70,0,0,0,0,0,0,0,0,0,,1,,1,126145,2,1,2,0,2,,250.0,710.0,41,0.0,3.0,6.0,2.0,1.5,2,2,1374.99631329436,0.0,34006.242407705155,5,5,2,3,77.0,1,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047344248761668685,22670.828271803435,6,3,6,6_1,6_1,6_1_0 +26125,2,38.0,0.0,2,111,1400.0,750.0,0.0,0,37,0.0,0.0,2387.2807607208856,2150.0,0.0,1423.8780359548418,31,0,0,0,0,0,0,0,0,0,,2,,2,126146,2,3,0,0,1,,450.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,378.755590396065,1400.0,34472.186073233,0,1,1,2,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.062369122614751554,22981.457382155335,6,3,6,6_0,6_3,6_0_1 +26126,2,75.0,0.0,2,111,600.0,1400.0,0.0,86,78,0.0,0.0,1023.1203260232367,2125.0,173.19865317456512,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,2,126147,2,2,2,0,1,,200.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,415.542582751328,600.0,19589.66968016999,5,5,0,1,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10847554015426156,13059.779786779995,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +26127,2,33.0,0.0,1,111,196.0,0.0,0.0,0,55,622.2628821115949,0.0,334.219306500924,801.0,20.783838380947813,0.0,20,1,2,2,2,1,2,2,2,2,15.0,2,,1,126148,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1651.93150840277,196.0,14734.052810455922,0,1,1,2,51.0,8,7,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.05436386107097266,14734.052810455922,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +26128,2,49.0,0.0,2,111,1000.0,0.0,0.0,22,69,527.3414255183008,0.0,1705.2005433720612,1568.0,94.22006732696343,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,126149,2,3,2,0,1,,245.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1091.91857425103,1000.0,37562.34279907177,1,1,0,1,100.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04174393509977626,25041.561866047847,7,4,7,7_1,7_2,7_0_1 +26129,2,63.0,0.0,6,111,0.0,0.0,1426.0,77,78,0.0,0.0,898.8338821314246,1426.0,0.0,1706.540042427235,70,0,0,0,0,0,0,0,0,0,,1,,4,126150,2,2,2,0,1,,438.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,357.644455114272,0.0,20162.541179702923,6,5,0,1,102.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07072521203009445,13441.694119801949,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +26130,2,50.0,0.0,7,111,610.0,1680.0,0.0,43,37,0.0,0.0,1040.1723314569574,2290.0,0.0,3189.4868005388457,41,0,0,0,0,0,0,0,0,2,15.0,1,,5,126151,2,1,1,0,1,,411.0,1241.0,43,2.0,0.0,5.0,4.0,2.3,4,2,862.548315486593,610.0,68344.0,4,1,3,4,116.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033506964766475474,29714.782608695656,8,4,8,8_1,8_2,8_0_0 +26131,1,53.0,138.0,2,111,220.0,0.0,0.0,0,77,0.0,0.0,375.14411954185346,220.0,0.0,0.0,41,2,1,2,2,1,2,2,2,0,,2,,2,126152,1,2,0,1,1,516.0,0.0,278.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1310.64485438415,220.0,15342.28388599365,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.014339455692176538,15342.28388599365,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +26132,1,44.0,325.0,9,111,440.0,,,56,52,0.0,0.0,,566.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126153,2,1,0,0,1,,600.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,105.02459079276078,440.0,14532.480167014613,4,4,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03894724049131612,6318.469637832442,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +26133,2,25.0,0.0,7,111,249.0,346.0,0.0,38,47,0.0,0.0,424.5949352996432,595.0,0.0,656.882400587167,12,0,0,0,0,0,0,0,0,1,5.0,2,,5,126154,2,1,0,0,1,,0.0,630.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1758.71818271951,249.0,64343.36240504516,1,1,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00924726308604205,42895.57493669677,9,5,9,9_0,9_3,9_0_0 +26134,2,29.0,0.0,5,111,390.0,240.0,0.0,46,37,0.0,0.0,665.0282119151038,630.0,0.0,455.6409715055494,12,0,0,0,0,0,0,0,0,2,90.0,2,,3,126155,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,371.792321872847,390.0,60791.01401024037,1,1,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010363373769252726,33772.78556124465,9,5,9,9_0,9_4,9_0_0 +26135,2,61.0,0.0,5,111,180.0,850.0,0.0,0,56,0.0,0.0,306.936097806971,1030.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,2,10.0,8,,3,126156,2,1,0,0,1,,0.0,331.0,12,1.0,3.0,4.0,1.0,1.0,1,1,364.663255971927,180.0,14995.4610623943,0,1,2,3,90.0,7,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0686874512036872,14995.4610623943,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +26136,1,48.0,180.0,2,112,0.0,0.0,0.0,56,42,0.0,0.0,0.0,1578.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,60.0,1,,2,126157,2,1,2,0,1,,309.0,680.0,43,2.0,1.0,5.0,4.0,2.1,2,2,292.404917979764,0.0,25854.78794379499,4,1,2,3,98.0,6,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06103318284529623,12311.803782759518,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +26137,2,53.0,0.0,1,111,1300.0,0.0,0.0,52,53,0.0,529.7309108040896,2216.7607063836795,1780.0,110.84713803172167,0.0,60,2,2,2,1,2,2,1,2,2,10.0,1,,1,126158,2,2,1,0,1,,280.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,401.479248102748,1300.0,56534.60362674023,1,1,0,1,130.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03148514159137184,37689.73575116015,9,5,9,9_1,9_3,9_1_0 +26138,2,26.0,0.0,1,111,180.0,0.0,0.0,68,62,0.0,529.7309108040896,306.936097806971,640.0,83.13535352379125,0.0,31,2,2,2,2,1,2,2,2,2,60.0,1,,1,126159,2,2,4,0,1,,155.0,361.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1167.00186918772,180.0,36387.560688039506,1,1,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.017588428240268558,24258.373792026337,7,4,7,7_1,7_3,7_1_0 +26139,1,28.0,308.0,7,111,180.0,0.0,0.0,0,81,0.0,0.0,306.936097806971,180.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,2,,5,126160,2,1,0,1,2,330.0,0.0,672.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1289.3432836254,180.0,4852.694428053195,0,4,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,1,1,0.037092795078838794,4852.694428053195,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +26140,2,65.0,0.0,5,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,126161,2,2,0,1,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,855.572481620716,300.0,24339.70374976844,0,5,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012325540322275045,24339.70374976844,7,4,7,7_0,7_4,7_0_0 +26141,1,39.0,453.0,5,111,433.0,151.0,0.0,85,63,0.0,0.0,738.3518352801025,584.0,0.0,286.67411123890815,50,2,2,1,2,1,2,2,2,2,20.0,2,,3,126162,2,1,0,1,1,572.0,0.0,112.0,42,1.0,0.0,4.0,5.0,2.4,2,2,248.655134649576,433.0,18387.799756203487,6,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0317601892419443,7661.583231751453,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +26142,2,76.0,0.0,2,111,539.0,1089.0,0.0,86,74,0.0,0.0,919.1030928775409,1628.0,0.0,2067.47090820643,60,0,0,0,0,0,0,0,0,0,,1,,2,126163,2,3,3,0,1,,665.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,821.030685665308,539.0,71954.84668100749,6,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022625300102678297,47969.89778733833,10,5,10,10_1,10_3,10_0_1 +26143,1,31.0,265.0,1,111,460.0,1200.0,0.0,56,62,0.0,0.0,784.3922499511482,1660.0,0.0,2278.2048575277468,50,1,2,2,1,1,2,2,2,2,5.0,1,,1,126164,1,1,3,0,1,,473.0,484.0,43,2.0,0.0,5.0,5.0,2.4,2,2,74.5307602555548,460.0,29492.869355993906,1,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.05628479141730692,12288.69556499746,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +26144,0,66.0,0.0,2,120,636.0,0.0,0.0,75,75,1582.0242765549024,927.0290939071567,1084.5075455846309,2936.0,138.5589225396521,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,126165,2,1,1,0,1,,400.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,896.561524246072,636.0,75566.89222268507,5,5,0,1,180.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038852993865991184,37783.446111342535,9,5,9,9_1,9_0,9_0_1 +26145,0,50.0,0.0,5,111,0.0,0.0,0.0,85,56,0.0,0.0,0.0,482.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,126166,1,1,0,1,1,,0.0,,42,1.0,3.0,4.0,3.0,2.0,3,2,362.130717650921,0.0,25558.41307927265,7,1,5,0,70.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01885876085127101,12779.206539636325,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +26147,2,32.0,0.0,9,111,0.0,,,52,42,0.0,0.0,,568.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,126168,2,1,0,0,2,,613.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,240.77600953800186,0.0,57727.62094782656,1,1,1,2,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00983931072637396,27489.343308488835,7,4,7,7_1,7_2,7_0_0 +26148,2,38.0,0.0,7,111,900.0,,,0,81,0.0,0.0,,1125.0,311.75757571421724,,71,0,0,0,0,0,0,0,0,0,,2,,5,126169,2,2,0,0,2,,0.0,800.0,32,2.0,0.0,3.0,5.0,2.8,4,3,7.857653049296154,900.0,11848.392542194088,0,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09494958881499653,4231.568765069317,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +26149,2,24.0,0.0,5,111,564.0,0.0,0.0,0,64,0.0,0.0,961.7331064618425,564.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,3,126170,2,1,0,0,1,,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2019.04300647293,564.0,15895.274715642521,0,1,2,3,44.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03548224299923349,15895.274715642521,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +26150,2,44.0,0.0,5,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,879.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,126171,2,1,2,0,2,,333.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,573.350333945123,0.0,45279.322343022824,6,1,1,2,153.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019412834700593674,18866.384309592846,5,3,5,5_1,5_4,5_0_0 +26151,2,83.0,0.0,2,111,390.0,236.0,0.0,86,78,0.0,0.0,665.0282119151038,626.0,0.0,448.0469553137902,71,2,1,2,2,1,2,2,2,0,,2,,2,126172,2,2,0,1,2,,0.0,,41,1.0,4.0,4.0,3.0,2.0,3,3,407.722012940002,390.0,31465.011114245397,5,5,0,1,96.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019895114536177178,15732.505557122699,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +26152,1,40.0,467.0,2,111,0.0,,,0,56,0.0,5.297309108040896,,141.0,189.82572387932336,,50,0,0,0,0,0,0,0,0,0,,1,,2,126173,2,1,0,0,2,,0.0,700.0,32,1.0,0.0,3.0,4.0,2.1,2,1,114.8476024204095,0.0,20416.0,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.006906347962382445,9721.904761904761,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +26153,2,61.0,0.0,5,111,420.0,1196.0,0.0,77,77,0.0,0.0,716.1842282162656,1616.0,0.0,2270.6108413359875,70,2,2,2,2,1,2,2,2,0,,1,,3,126174,1,3,3,0,1,,320.0,505.0,41,1.0,2.0,5.0,3.0,2.0,3,3,260.989655249741,420.0,41919.240408506506,7,5,2,3,130.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.03855031685335766,20959.620204253253,5,3,5,5_1,5_3,5_0_0 +26154,2,73.0,0.0,7,222,1190.0,0.0,0.0,72,78,0.0,476.7578197236806,2029.1886466127528,1646.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,126175,2,1,2,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1207.30536359693,1190.0,39710.94588907896,5,5,0,1,120.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041449528918238936,26473.963926052642,7,4,7,7_1,7_0,7_0_0 +26155,2,64.0,0.0,9,300,2070.0,0.0,0.0,77,74,0.0,927.0290939071567,3529.765124780167,2770.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,126176,2,1,1,0,1,,336.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,796.854191636029,2070.0,62736.42005398567,5,5,0,1,108.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044152981595321696,41824.28003599044,9,5,9,9_1,9_0,9_0_0 +26156,1,43.0,450.0,1,111,1000.0,200.0,0.0,0,43,0.0,0.0,1705.2005433720612,1200.0,0.0,379.7008095879578,50,2,2,2,1,1,2,2,2,3,30.0,2,,1,126177,2,3,0,0,1,,0.0,660.0,31,0.0,0.0,2.0,4.0,1.9,1,1,511.812992348888,1000.0,9335.343548291365,0,7,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,1,0.12854374279772857,4913.338709627034,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +26157,2,27.0,0.0,9,111,360.0,,,31,34,0.0,0.0,,360.0,0.0,,41,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,126178,2,1,0,0,1,,120.0,790.0,43,2.0,0.0,3.0,2.0,1.5,2,2,190.17025320589948,360.0,70678.22694659914,1,1,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005093506381703627,47118.81796439943,10,5,10,10_0,10_2,10_0_0 +26158,2,63.0,0.0,1,111,480.0,1000.0,0.0,77,72,0.0,0.0,818.4962608185893,1480.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,1,,1,126179,2,2,3,0,2,,300.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,228.382491774102,480.0,23152.347737022243,5,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06392440269171386,15434.898491348162,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +26159,2,75.0,0.0,1,112,150.0,0.0,0.0,0,72,1582.0242765549024,0.0,255.78008150580916,1682.0,44.33885521268867,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126180,2,1,2,0,1,,100.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,2899.05431632815,150.0,13796.002261963324,0,5,0,1,80.0,7,2,2,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1219193769369992,13796.002261963324,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +26160,2,58.0,0.0,7,111,360.0,,,0,78,0.0,0.0,,618.0,357.4820201523024,,71,0,0,0,0,0,0,0,0,0,,1,,5,126181,2,1,0,0,2,,480.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,169.96902077193926,360.0,12837.760714682638,0,7,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048139236564301205,12837.760714682638,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26161,2,79.0,0.0,9,112,260.0,,,0,72,0.0,0.0,,380.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,126182,2,2,0,0,2,,200.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,113.85861412705552,260.0,9447.12,0,5,0,1,28.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040223898923693144,9447.12,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26162,1,37.0,170.0,9,120,470.0,0.0,0.0,0,55,0.0,741.6232751257254,801.4442553848687,1120.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2009.0,6,126183,2,1,1,0,1,,193.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,1398.32467686985,470.0,19401.784476275305,0,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0577266488744655,14924.44959713485,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +26163,2,70.0,0.0,2,111,650.0,0.0,0.0,71,71,0.0,0.0,1108.3803531918397,770.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,126184,2,1,1,0,1,,380.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1048.42534735361,650.0,24672.414789860795,5,5,0,1,110.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03120894353301947,16448.276526573864,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +26164,2,66.0,0.0,9,112,2245.0,0.0,0.0,0,43,0.0,39.72981831030672,3828.1752198702775,2275.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126185,2,1,1,0,1,,315.0,,21,1.0,3.0,6.0,2.0,1.5,2,2,1104.59774149756,2245.0,67669.50546463234,0,5,1,2,160.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03361927923633246,45113.003643088225,10,5,10,10_1,10_0,10_0_0 +26165,1,29.0,60.0,1,112,750.0,0.0,0.0,85,21,0.0,198.6490915515336,1278.9004075290459,990.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,126186,2,1,1,0,1,,300.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1312.65838153508,750.0,10533.446353054973,6,1,1,2,100.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.09398633332507307,5015.9268347880825,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +26166,2,59.0,0.0,5,111,2500.0,0.0,0.0,75,34,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,126187,2,1,2,0,1,,230.0,,42,1.0,2.0,7.0,3.0,2.0,3,3,526.191706802604,2500.0,74933.32258401783,5,1,1,2,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03336299410982228,37466.66129200892,9,5,9,9_1,9_4,9_0_0 +26167,1,38.0,206.0,2,111,360.0,360.0,0.0,0,68,0.0,0.0,613.872195613942,720.0,0.0,683.461457258324,10,0,0,0,0,0,0,0,0,2,15.0,2,,2,126188,1,2,0,0,1,,0.0,270.0,12,1.0,0.0,3.0,1.0,1.0,1,1,358.403518774122,360.0,18359.26922166023,0,1,2,3,50.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03921724722847603,18359.26922166023,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +26168,2,50.0,0.0,1,400,349.0,0.0,0.0,11,11,0.0,0.0,595.1149896368494,349.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126189,2,2,4,0,1,,157.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,1383.37677486176,349.0,29582.217020628712,1,1,0,1,70.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011797628276360427,14791.108510314356,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +26169,2,26.0,0.0,2,111,400.0,0.0,0.0,0,56,0.0,0.0,682.0802173488245,460.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,1,5.0,1,,2,126190,2,1,2,0,1,,560.0,450.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1698.27460566906,400.0,15720.0,0,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029262086513994912,12092.307692307691,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +26170,1,37.0,310.0,5,111,310.0,510.0,0.0,0,62,0.0,0.0,528.612168445339,820.0,0.0,968.2370644492923,50,2,2,2,2,1,2,2,2,2,15.0,2,,3,126191,1,2,0,0,2,,162.0,404.0,32,1.0,0.0,3.0,2.0,1.3,1,1,396.327595299832,310.0,23086.394081130424,0,1,2,3,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.03551875607417721,17758.764677792635,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +26171,2,69.0,0.0,1,111,400.0,0.0,0.0,71,71,1582.0242765549024,0.0,682.0802173488245,2020.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,126192,2,2,1,0,1,,100.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,165.438520550715,400.0,28278.621739994298,5,5,0,1,142.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0714320527560622,18852.414493329532,5,3,5,5_1,5_3,5_1_0 +26172,2,53.0,0.0,6,112,2039.0,0.0,0.0,37,54,0.0,59.594727465460075,3476.9039079356326,2164.0,110.84713803172167,0.0,60,1,2,2,2,1,2,2,2,2,20.0,1,,4,126193,2,2,3,0,1,,210.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1475.5563686608,2039.0,99093.02452781894,1,1,1,2,170.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02183806590132374,66062.0163518793,10,5,10,10_1,10_0,10_0_0 +26173,2,28.0,0.0,8,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,347.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,1999.0,6,126194,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,2288.35756554601,0.0,17343.12926182891,0,1,2,3,35.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.020007923296963725,17343.12926182891,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +26174,2,40.0,0.0,7,211,500.0,,,0,34,0.0,0.0,,575.0,103.91919190473907,,31,0,0,0,0,0,0,0,0,2,4.0,1,,5,126195,1,3,0,0,2,,180.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,89.37657352534215,500.0,45205.8314783363,0,1,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012719597919032936,45205.8314783363,10,5,10,10_1,10_2,10_0_0 +26175,2,74.0,0.0,2,112,1583.0,0.0,0.0,77,78,0.0,0.0,2699.332460157973,1763.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126196,2,1,1,0,1,,141.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,777.565406751701,1583.0,37211.2011487737,5,5,0,1,85.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04737820724870903,24807.4674325158,7,4,7,7_1,7_2,7_0_1 +26176,2,52.0,0.0,7,111,620.0,,,56,21,0.0,0.0,,880.0,360.2531986030954,,71,2,2,1,2,1,2,2,2,0,,1,,5,126197,2,2,0,0,2,,500.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,141.2559983349785,620.0,24499.109183346314,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03591967338135686,11666.242468260149,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26177,2,60.0,0.0,5,221,600.0,0.0,0.0,67,78,0.0,264.8654554020448,1023.1203260232367,940.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126198,2,1,2,0,1,,220.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2326.11707126937,600.0,16972.422206717943,4,5,0,1,90.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05538396279276706,11314.948137811962,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +26178,2,49.0,0.0,1,111,230.0,902.0,0.0,0,37,0.0,0.0,392.1961249755741,1132.0,0.0,1712.4506512416897,20,2,2,2,2,1,2,2,2,3,35.0,2,,1,126199,1,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,976.397917205913,230.0,71159.8259610489,0,1,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.015907852284793786,71159.8259610489,10,5,10,10_0,10_4,10_1_0 +26179,2,52.0,0.0,7,300,1100.0,0.0,0.0,43,11,0.0,132.4327277010224,1875.7205977092674,1200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,2.0,5,,5,126200,2,1,4,0,1,,271.0,,43,3.0,1.0,9.0,5.0,3.0,5,3,1684.1363533068,1100.0,58644.846132059436,1,1,0,1,200.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02046215616795684,19548.282044019812,5,3,5,5_1,5_0,5_0_0 +26180,2,66.0,0.0,6,112,1800.0,0.0,0.0,42,42,0.0,529.7309108040896,3069.36097806971,2280.0,110.84713803172167,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,4,126201,2,1,2,0,1,,510.0,,42,1.0,2.0,7.0,4.0,2.5,4,4,756.904036787165,1800.0,78985.97452799397,1,5,0,1,300.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028865884274073612,31594.389811197587,8,4,8,8_1,8_0,8_0_0 +26181,2,42.0,0.0,9,112,1648.0,0.0,0.0,52,63,0.0,0.0,2810.1704954771567,1648.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,126202,2,1,1,0,1,,442.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1075.86282479816,1648.0,47235.14727531453,1,1,1,2,128.0,8,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03488927409063586,22492.9272739593,6,3,6,6_1,6_1,6_0_0 +26182,2,83.0,0.0,1,400,0.0,0.0,0.0,0,78,0.0,0.0,0.0,3454.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126203,2,3,3,0,2,,281.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1052.88792352207,0.0,13131.750178611628,0,5,0,1,80.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.2630266303440429,13131.750178611628,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +26183,0,81.0,0.0,5,400,250.0,0.0,0.0,0,71,0.0,0.0,426.3001358430153,285.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126204,2,1,1,0,1,,100.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1785.03653961178,250.0,16233.768938187335,0,5,0,1,65.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01755599707530537,16233.768938187335,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +26184,2,58.0,0.0,5,111,700.0,0.0,0.0,0,65,0.0,397.2981831030672,1193.6403803604428,1000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,3,126205,2,3,0,0,1,,0.0,530.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1443.36405154626,700.0,26848.22670597955,0,1,2,3,47.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0372464077777354,26848.22670597955,7,4,7,7_0,7_3,7_0_0 +26185,0,44.0,0.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,713.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,126206,2,1,2,0,1,,558.0,,32,2.0,1.0,2.0,2.0,1.5,2,2,1126.77015826736,0.0,32202.57084349339,0,1,5,0,40.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02214108940137813,21468.380562328926,6,3,6,6_1,6_2,6_0_1 +26186,2,48.0,0.0,7,111,0.0,,,52,53,0.0,0.0,,92.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,,5,126207,2,2,0,0,2,,0.0,390.0,43,2.0,1.0,2.0,3.0,1.8,2,2,168.42799274853843,0.0,38940.12165261685,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0023626017612561165,21633.40091812047,6,3,6,6_0,6_2,6_0_0 +26187,2,64.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,411.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,126208,2,1,0,2,1,,0.0,287.0,11,0.0,3.0,1.0,1.0,1.0,1,1,532.668938397791,0.0,20097.262216587405,0,5,3,4,13.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020450546724756297,20097.262216587405,5,3,5,5_0,5_2,5_1_0 +26188,2,53.0,0.0,2,112,925.0,0.0,0.0,0,45,0.0,66.2163638505112,1577.3105026191565,995.0,27.711784507930417,0.0,42,2,2,2,2,1,2,2,2,1,5.0,1,,2,126209,2,1,3,0,1,,321.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1817.61251646651,925.0,36320.69197117795,0,1,1,2,50.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.0273948525206947,36320.69197117795,9,5,9,9_1,9_0,9_0_1 +26189,2,25.0,0.0,2,111,312.0,960.0,0.0,56,62,0.0,0.0,532.0225695320831,1302.0,41.567676761895626,1822.5638860221975,43,0,0,0,0,0,0,0,0,2,35.0,1,,2,126210,2,1,2,0,1,,340.0,375.0,43,2.0,0.0,3.0,2.0,1.5,2,2,230.107518052489,312.0,36199.64412864695,1,1,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03596720441153866,24133.09608576463,6,3,6,6_1,6_3,6_0_1 +26190,2,42.0,0.0,2,211,1200.0,0.0,0.0,43,43,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,2,40.0,2,,2,126211,1,2,0,0,1,,340.0,676.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1597.58146939444,1200.0,59140.27103838209,1,1,2,3,70.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.021305279429346187,32855.70613243449,8,4,8,8_0,8_1,8_0_1 +26191,2,62.0,0.0,9,211,65.0,0.0,0.0,62,77,0.0,0.0,110.83803531918397,145.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,126212,2,1,1,0,1,,254.0,676.0,42,1.0,2.0,4.0,2.0,1.5,2,2,2864.50542096248,65.0,42986.07786652417,1,5,2,3,82.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003373185161257063,28657.385244349443,8,4,8,8_1,8_1,8_0_0 +26192,2,50.0,0.0,7,111,900.0,,,0,54,0.0,0.0,,969.0,95.60565655235995,,42,0,0,0,0,0,0,0,0,2,10.0,1,,5,126213,2,2,0,0,2,,480.0,457.0,22,2.0,1.0,3.0,2.0,1.5,2,2,99.17636451446427,900.0,23255.648311702294,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04166729677935476,15503.765541134862,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +26193,1,69.0,44.0,5,120,0.0,0.0,1000.0,0,78,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,70,2,2,2,2,2,2,2,1,0,,1,,3,126214,1,2,1,0,1,,208.0,274.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1799.31025976543,0.0,13158.245584619111,0,5,2,3,62.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.07599797355727396,13158.245584619111,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +26194,2,52.0,0.0,6,111,650.0,,,0,34,0.0,0.0,,722.0,99.7624242285495,,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,126215,1,3,0,0,2,,650.0,1210.0,12,1.0,2.0,4.0,1.0,1.0,1,1,47.7181619705996,650.0,70387.60852788498,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010257487292155552,70387.60852788498,10,5,10,10_1,10_2,10_0_0 +26195,2,26.0,0.0,9,300,1276.0,0.0,0.0,55,48,0.0,0.0,2175.83589334275,1276.0,0.0,0.0,31,2,2,2,1,2,2,2,2,2,7.0,1,2011.0,6,126216,2,1,1,0,1,,199.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1188.61212249091,1276.0,41469.424145729965,1,1,1,2,117.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.030769658038074965,23038.56896984998,6,3,6,6_1,6_0,6_0_0 +26196,2,28.0,0.0,5,111,420.0,72.0,0.0,90,65,0.0,0.0,716.1842282162656,492.0,0.0,136.6922914516648,43,0,0,0,0,0,0,0,0,3,3.0,2,,3,126217,1,2,0,1,1,42.0,0.0,292.0,43,2.0,0.0,3.0,2.0,1.5,2,2,348.345378007982,420.0,38725.46600620972,1,1,2,3,70.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012704818062644015,25816.977337473145,7,4,7,7_0,7_2,7_0_0 +26197,2,25.0,0.0,9,111,500.0,500.0,0.0,55,48,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,20,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,126218,2,1,0,0,1,,0.0,675.0,43,2.0,0.0,2.0,2.0,1.5,2,2,678.371293838407,500.0,38489.737369950155,1,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02598095150373054,25659.824913300105,7,4,7,7_0,7_3,7_0_0 +26198,1,42.0,140.0,8,111,0.0,,,0,22,0.0,0.0,,351.0,0.0,,50,0,0,0,0,0,0,0,0,2,45.0,2,2000.0,6,126219,2,2,0,0,2,,380.0,461.0,32,1.0,0.0,3.0,2.0,1.3,1,1,98.19560493543153,0.0,20535.198433420366,0,1,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017092603275201807,15796.306487246435,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +26199,2,55.0,0.0,2,111,500.0,270.0,0.0,68,68,0.0,0.0,852.6002716860306,770.0,0.0,512.596092943743,71,2,1,2,2,1,2,2,2,3,120.0,2,,2,126220,2,2,0,1,1,840.0,0.0,866.0,43,2.0,0.0,5.0,8.0,4.1,6,5,313.232161197428,500.0,37102.65235732168,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020753233288672193,9049.4274042248,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +26200,2,94.0,0.0,2,111,600.0,0.0,0.0,0,75,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,2,,2,126221,2,2,0,0,1,,0.0,306.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1342.24784996492,600.0,21216.488356989696,0,5,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,0,0.02827989203040437,21216.488356989696,5,3,5,5_0,5_4,5_0_1 +26201,2,57.0,0.0,5,111,2640.0,0.0,0.0,85,74,0.0,105.94618216081791,4501.729434502242,2720.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,126222,2,1,3,0,1,,1066.0,,41,0.0,2.0,6.0,5.0,3.0,5,4,462.014747547027,2640.0,177743.28226860217,6,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01530296934592211,59247.760756200725,10,5,10,10_1,10_4,10_0_0 +26202,2,64.0,0.0,2,111,530.0,0.0,0.0,75,38,0.0,0.0,903.7562879871924,530.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,126223,2,1,0,1,1,1000.0,0.0,1200.0,42,1.0,3.0,5.0,2.0,1.5,2,2,1350.71275422606,530.0,132389.59924493596,5,4,2,3,105.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004003335632276061,88259.73282995731,10,5,10,10_0,10_4,10_0_1 +26203,2,37.0,0.0,2,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1112.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,126224,2,1,0,1,1,,0.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,1686.9155450473,0.0,40370.67102073159,7,1,1,2,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02754474899436161,16821.11292530483,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +26204,2,37.0,0.0,8,111,960.0,,,55,22,0.0,0.0,,1020.0,83.13535352379125,,50,0,0,0,0,0,0,0,0,1,1.0,1,2003.0,6,126225,1,1,0,0,1,,600.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,166.71567516970885,960.0,25745.909332234263,1,1,1,2,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03961794422708328,14303.282962352368,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +26205,2,44.0,0.0,2,111,180.0,0.0,0.0,0,43,0.0,0.0,306.936097806971,180.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,20.0,2,,2,126226,1,2,0,1,1,343.0,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2059.12299482755,180.0,24040.82190318004,0,1,2,3,45.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007487264816690406,24040.82190318004,6,3,6,6_0,6_2,6_0_1 +26206,1,53.0,373.0,5,111,370.0,0.0,0.0,0,67,0.0,0.0,630.9242010476627,370.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,3,126227,1,2,0,0,2,60.0,105.0,353.0,32,1.0,0.0,3.0,2.0,1.5,2,2,559.855395213014,370.0,8906.577358770825,0,4,2,3,71.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.04154233271612911,5937.71823918055,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26207,2,31.0,0.0,5,111,800.0,0.0,0.0,0,56,0.0,0.0,1364.160434697649,800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,3,126228,1,2,0,0,2,,0.0,600.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1162.09569014328,800.0,17736.157663822753,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04510559813255361,17736.157663822753,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +26208,1,54.0,270.0,2,111,202.0,45.0,0.0,0,85,0.0,0.0,344.45050976115635,247.0,0.0,85.4326821572905,41,0,0,0,0,0,0,0,0,0,,2,,2,126229,2,1,0,1,1,,0.0,329.0,11,0.0,3.0,4.0,1.0,1.0,1,1,282.352144780655,202.0,10320.514963642188,0,7,2,3,72.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.023932914284815088,10320.514963642188,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26209,1,26.0,302.0,1,221,0.0,0.0,0.0,52,21,0.0,0.0,0.0,1566.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,126230,2,1,1,0,1,,270.0,500.0,43,2.0,0.0,5.0,4.0,2.1,2,2,3088.87342140506,0.0,15513.434048905721,4,1,2,3,130.0,1,1,4,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10094476793875704,7387.349547097962,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +26211,2,42.0,0.0,2,111,191.0,300.0,0.0,0,52,0.0,0.0,325.6933037840637,491.0,0.0,569.5512143819367,71,2,2,2,1,1,2,2,2,2,40.0,2,,2,126232,2,1,0,0,1,,0.0,497.0,32,1.0,0.0,3.0,2.0,1.3,1,1,586.463440269641,191.0,23850.164298988457,0,1,2,3,67.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.020586860276716187,18346.28022999112,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +26212,2,73.0,0.0,1,111,1000.0,,,86,78,0.0,0.0,,1258.0,357.4820201523024,,71,2,2,1,1,1,2,2,2,0,,1,,1,126233,1,2,0,0,2,,320.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,144.6129974548365,1000.0,19003.786364192798,6,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06619733435702799,12669.190909461866,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +26213,2,47.0,0.0,8,400,480.0,0.0,0.0,68,42,949.2145659329414,238.3789098618403,818.4962608185893,1634.0,102.53360267934255,0.0,44,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126234,2,1,2,0,1,,100.0,,43,2.0,0.0,5.0,3.0,1.8,3,2,1373.16831789623,480.0,34926.1126402502,1,1,1,2,102.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046784479476164646,19403.39591125011,5,3,5,5_1,5_0,5_0_0 +26214,2,59.0,0.0,5,120,300.0,0.0,0.0,11,11,1582.0242765549024,0.0,511.56016301161833,1920.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,126235,2,1,2,0,1,,270.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,1566.46233518534,300.0,63615.27276283681,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03018143154330132,42410.18184189121,9,5,9,9_1,9_0,9_0_0 +26215,2,71.0,0.0,2,112,900.0,0.0,0.0,0,86,3164.0485531098047,0.0,1534.680489034855,3900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,126236,2,1,1,0,1,,400.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,994.051250696411,900.0,53443.83525874559,0,5,0,1,150.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07297380476379269,53443.83525874559,10,5,10,10_1,10_0,10_0_1 +26216,2,84.0,0.0,1,112,445.0,4000.0,0.0,74,74,0.0,0.0,758.8142418005672,5383.0,0.0,7594.016191759156,10,0,0,0,0,0,0,0,0,0,,1,,1,126237,1,1,2,0,2,,327.0,,41,0.0,5.0,13.0,2.0,1.5,2,2,802.407059810266,445.0,121329.57949110167,5,5,0,1,300.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04436675724566234,80886.38632740111,10,5,10,10_1,10_2,10_1_0 +26217,2,44.0,0.0,5,111,500.0,,,0,47,0.0,0.0,,600.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,2,15.0,1,,3,126238,2,2,0,0,2,,400.0,900.0,12,1.0,0.0,4.0,1.0,1.0,1,1,43.44502935016734,500.0,24393.673161619005,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02459654173542178,24393.673161619005,7,4,7,7_1,7_2,7_0_0 +26218,0,71.0,0.0,1,400,700.0,0.0,0.0,0,72,0.0,0.0,1193.6403803604428,890.0,263.261952825339,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,126239,2,2,2,0,1,,120.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,1840.02773457198,700.0,18146.642895803525,0,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04904488423067033,12097.761930535684,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +26219,2,76.0,0.0,2,111,720.0,0.0,0.0,0,78,0.0,79.45963662061344,1227.744391227884,840.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126240,2,1,2,0,2,,80.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,391.512730605512,720.0,17197.863130574915,0,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04884327742477616,17197.863130574915,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +26221,2,71.0,0.0,5,112,1500.0,0.0,0.0,74,72,0.0,0.0,2557.8008150580918,2700.0,1662.707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,126242,2,2,2,0,1,,550.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1810.80077047742,1500.0,61615.25934686649,5,5,0,1,196.0,6,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04382031380895764,41076.83956457766,9,5,9,9_1,9_1,9_0_0 +26222,2,49.0,0.0,2,111,300.0,600.0,0.0,81,37,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,126243,2,2,0,1,1,,0.0,400.0,43,2.0,0.0,3.0,5.0,2.4,2,2,156.682519439869,300.0,25279.496147524093,4,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03560197540124419,10533.123394801705,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +26223,2,31.0,0.0,7,112,1500.0,0.0,0.0,53,52,0.0,33.1081819252556,2557.8008150580918,1705.0,249.40606057137379,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,5,126244,1,2,3,0,1,,0.0,570.0,43,2.0,0.0,5.0,3.0,1.8,2,2,2065.11567380452,1500.0,50027.266501511745,1,1,2,3,87.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03408141438126502,27792.92583417319,7,4,7,7_1,7_1,7_0_0 +26224,2,36.0,0.0,6,111,24.0,30.0,0.0,35,38,0.0,0.0,40.924813040929465,54.0,0.0,56.95512143819367,12,0,0,0,0,0,0,0,0,2,15.0,2,,4,126245,2,1,0,0,1,,0.0,563.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1008.82389945227,24.0,61827.640331811854,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.000873395777522754,29441.733491338975,8,4,8,8_0,8_4,8_0_0 +26225,2,50.0,0.0,7,112,1200.0,0.0,0.0,34,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,2,2,1,1,2,2,2,2,2,11.0,1,,5,126246,2,1,2,0,1,,500.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,231.988202971037,1200.0,103139.59591222792,1,1,0,1,167.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.011634716903692383,51569.79795611396,10,5,10,10_1,10_0,10_0_0 +26226,2,38.0,0.0,5,211,1520.0,0.0,0.0,63,68,0.0,397.2981831030672,2591.904825925533,2090.0,374.10909085706066,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,3,126247,1,1,2,0,2,,300.0,,43,2.0,1.0,5.0,4.0,2.3,3,3,474.409426870687,1520.0,17864.976830160595,1,1,0,1,55.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1169886767763142,7767.381230504607,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +26227,1,30.0,420.0,7,111,180.0,696.0,0.0,0,85,0.0,0.0,306.936097806971,876.0,0.0,1321.358817366093,41,0,0,0,0,0,0,0,0,0,,2,,5,126248,2,2,0,1,1,624.0,0.0,464.0,31,0.0,0.0,3.0,2.0,1.3,1,1,589.454208624199,180.0,9344.68982089145,0,6,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09374307941624463,7188.222939147269,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +26228,2,65.0,0.0,1,300,650.0,1500.0,0.0,0,74,0.0,0.0,1108.3803531918397,2150.0,0.0,2847.7560719096837,60,0,0,0,0,0,0,0,0,0,,1,,1,126249,2,1,2,0,1,,350.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,241.329102380582,650.0,65980.3047140494,5,5,0,1,120.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032585481520854415,43986.86980936627,10,5,10,10_1,10_0,10_1_0 +26229,1,32.0,400.0,2,111,573.0,,,0,85,0.0,0.0,,823.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,2,,2,126250,2,1,0,0,2,,600.0,430.0,31,0.0,0.0,2.0,3.0,1.6,1,1,44.36908226336902,573.0,3489.3666963713604,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.23585941851736272,2180.8541852321,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +26230,2,67.0,0.0,1,111,1000.0,1200.0,0.0,72,75,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,60,2,2,2,2,1,2,2,2,0,,2,,1,126251,2,3,0,0,1,,450.0,1000.0,41,0.0,3.0,4.0,2.0,1.5,2,2,2290.62506280652,1000.0,44278.0184733519,5,5,2,3,85.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.04968605361877337,29518.6789822346,8,4,8,8_0,8_3,8_1_0 +26231,2,47.0,0.0,2,111,0.0,0.0,600.0,0,37,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,12,0,0,0,0,0,0,0,0,2,50.0,2,,2,126252,2,1,0,0,1,,153.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1018.42701651778,0.0,64829.80055348194,0,1,1,2,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009255003021411804,64829.80055348194,10,5,10,10_0,10_4,10_0_1 +26232,2,64.0,0.0,5,111,1200.0,0.0,0.0,0,75,0.0,927.0290939071567,2046.2406520464733,1950.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,126253,2,2,2,0,1,,140.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1144.07637313532,1200.0,37888.1690524909,0,5,0,1,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051467253466337674,37888.1690524909,9,5,9,9_1,9_2,9_0_0 +26233,1,46.0,33.0,9,111,1100.0,1500.0,0.0,85,63,0.0,0.0,1875.7205977092674,2600.0,0.0,2847.7560719096837,41,2,2,1,2,1,2,2,2,0,,1,2006.0,6,126254,2,1,1,0,1,,350.0,,42,1.0,0.0,6.0,5.0,3.0,5,3,277.973526402325,1100.0,28849.033772158025,6,1,1,2,160.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.09012433555085785,9616.344590719342,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +26234,1,41.0,297.0,2,111,240.0,70.0,0.0,68,47,0.0,0.0,409.2481304092947,310.0,0.0,132.89528335578524,50,0,0,0,0,0,0,0,0,0,,2,,2,126255,2,1,0,1,1,564.0,0.0,286.0,43,2.0,0.0,2.0,2.0,1.5,2,2,315.331795353546,240.0,19193.523939738177,1,4,2,3,52.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01615128107653944,12795.682626492118,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26235,2,26.0,0.0,1,300,1230.0,0.0,0.0,46,46,0.0,0.0,2097.396668347635,1290.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,1,126256,2,2,1,0,1,,180.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1295.73877058374,1230.0,47595.9018518282,1,1,1,2,98.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027103173798784734,26442.167695460113,7,4,7,7_1,7_0,7_1_0 +26236,2,59.0,0.0,2,111,580.0,1590.0,0.0,33,33,0.0,0.0,989.0163151557955,2170.0,0.0,3018.6214362242645,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,126257,2,1,1,0,1,,330.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,385.710794495818,580.0,107258.44208589816,1,1,1,2,135.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02023150772842804,53629.22104294908,10,5,10,10_1,10_3,10_0_1 +26237,1,54.0,140.0,2,111,280.0,0.0,0.0,0,52,0.0,0.0,477.4561521441771,582.0,83.13535352379125,0.0,71,2,2,1,2,1,2,2,2,1,20.0,2,,2,126258,2,1,0,1,1,645.0,0.0,247.0,12,1.0,0.0,2.0,1.0,1.0,1,1,597.502934909317,280.0,12919.860329078027,0,1,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04504692660570984,12919.860329078027,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26238,2,59.0,0.0,6,112,1500.0,0.0,0.0,52,46,0.0,0.0,2557.8008150580918,1590.0,124.70303028568689,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,126259,1,1,2,0,1,,300.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,162.779357061762,1500.0,49322.68076097208,1,1,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03223669061512429,32881.787173981385,8,4,8,8_1,8_0,8_0_0 +26239,2,63.0,0.0,2,111,548.0,432.0,0.0,85,21,0.0,0.0,934.4498977678895,980.0,0.0,820.1537487099888,71,0,0,0,0,0,0,0,0,0,,2,,2,126260,1,1,0,1,2,1230.0,0.0,360.0,41,0.0,3.0,5.0,3.0,2.0,3,2,243.807484193997,548.0,17180.75440366923,6,5,2,3,124.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05704056859055648,8590.377201834615,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +26240,2,87.0,0.0,1,112,1920.0,0.0,0.0,0,75,0.0,0.0,3273.9850432743574,1920.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,126261,2,2,3,0,1,,170.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,756.507992637827,1920.0,37581.0,0,5,0,1,150.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051089646363854074,37581.0,9,5,9,9_1,9_0,9_1_0 +26241,1,61.0,119.0,2,111,300.0,0.0,0.0,0,46,0.0,0.0,511.56016301161833,300.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,2,,2,126262,1,3,0,1,1,360.0,60.0,458.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1895.04683640844,300.0,12769.57207062099,0,4,2,3,40.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.023493347963492943,12769.57207062099,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +26242,2,81.0,0.0,1,111,279.0,0.0,0.0,0,78,690.817267428974,0.0,475.7509516008051,1004.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,126263,2,1,0,1,1,655.0,0.0,280.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2961.45338563525,279.0,12898.893752705924,0,5,2,3,35.0,6,4,4,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07783613224889005,12898.893752705924,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +26243,2,87.0,0.0,7,111,276.0,0.0,0.0,0,75,0.0,0.0,470.6353499706889,276.0,0.0,0.0,71,2,1,2,2,2,2,2,1,0,,2,,5,126264,1,2,0,1,1,,0.0,600.0,11,0.0,1.0,2.0,1.0,1.0,1,1,715.068803393541,276.0,31221.31670283145,0,5,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.008840114035772543,31221.31670283145,8,4,8,8_0,8_3,8_0_0 +26244,2,55.0,0.0,1,211,1200.0,0.0,0.0,56,62,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,126265,2,1,2,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1552.62166434441,1200.0,35099.13907778783,4,1,0,1,100.0,1,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03418887276239231,19499.52170988213,5,3,5,5_1,5_1,5_1_0 +26245,2,67.0,0.0,6,111,390.0,0.0,0.0,77,77,0.0,0.0,665.0282119151038,390.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,126266,1,2,0,1,1,888.0,0.0,459.0,41,0.0,2.0,4.0,2.0,1.5,2,2,704.449396523499,390.0,28958.636585787775,5,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013467484867412678,19305.757723858518,5,3,5,5_0,5_4,5_0_0 +26246,2,70.0,0.0,5,120,800.0,0.0,0.0,77,75,0.0,529.7309108040896,1364.160434697649,1340.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,126267,2,1,2,0,1,,420.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1386.50978774113,800.0,31985.180318376122,5,5,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0418944019280749,21323.45354558408,6,3,6,6_1,6_0,6_0_0 +26247,2,64.0,0.0,2,111,180.0,80.0,0.0,0,74,0.0,0.0,306.936097806971,260.0,0.0,151.8803238351831,10,0,0,0,0,0,0,0,0,0,,2,,2,126268,1,2,0,1,1,1032.0,0.0,691.0,11,0.0,0.0,6.0,1.0,1.0,1,1,239.664090062974,180.0,36510.25036832263,0,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007121287785678503,36510.25036832263,9,5,9,9_0,9_4,9_0_1 +26248,2,53.0,0.0,8,111,0.0,,,0,63,0.0,0.0,,300.0,415.67676761895626,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126269,2,2,0,0,2,,600.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,143.37165962489595,0.0,17238.524142240232,0,1,0,1,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017402881912895213,11492.349428160154,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26249,2,38.0,0.0,9,112,452.0,693.0,0.0,37,53,0.0,0.0,770.7506456041716,1145.0,0.0,1315.6633052222737,20,0,0,0,0,0,0,0,0,2,50.0,1,2007.0,6,126270,2,1,1,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1514.94517886412,452.0,68547.30116580929,1,1,1,2,100.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016703794030203403,32641.571983718706,8,4,8,8_1,8_2,8_0_0 +26250,2,52.0,0.0,1,111,500.0,0.0,0.0,0,85,1898.4291318658827,927.0290939071567,852.6002716860306,3060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126271,2,3,3,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1354.5515409399,500.0,8903.255953130945,0,7,0,1,130.0,6,4,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.34369448841060346,8903.255953130945,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +26251,2,30.0,0.0,9,400,650.0,0.0,0.0,54,43,0.0,95.35156394473611,1108.3803531918397,722.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,126272,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1272.0657189032,650.0,46655.18685526954,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015475235416798093,22216.755645366447,6,3,6,6_1,6_0,6_0_0 +26252,2,67.0,0.0,2,111,1000.0,,,0,78,0.0,0.0,,1240.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,126273,1,3,0,0,2,,750.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,113.05002585418423,1000.0,9877.205031304322,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12554158753108857,9877.205031304322,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +26253,2,31.0,0.0,7,111,350.0,,,0,43,0.0,0.0,,482.0,182.89777775234077,,20,0,0,0,0,0,0,0,0,2,30.0,2,,5,126274,2,1,0,0,1,,240.0,670.0,32,1.0,0.0,3.0,2.0,1.3,1,1,135.58398145783633,350.0,37438.116536605485,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012874579294840321,28798.55118200422,8,4,8,8_0,8_2,8_0_0 +26255,0,45.0,0.0,6,111,540.0,,,52,63,0.0,99.3245457757668,,891.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,0,,1,,4,126276,2,2,0,0,2,,600.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,96.85820532089114,540.0,8638.095336185048,1,4,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10314773863025037,5758.730224123366,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26256,2,61.0,0.0,1,112,912.0,0.0,0.0,74,34,1502.9230627271572,564.1634200063554,1555.1428955553197,2865.0,141.33010099044515,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,1,126277,2,1,2,0,1,,664.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,867.178860304437,912.0,76056.28139695183,5,1,0,1,130.0,8,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037669472492969175,50704.18759796789,10,5,10,10_1,10_0,10_1_0 +26257,2,43.0,0.0,5,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,386.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,3,126278,2,1,0,1,1,,0.0,,32,2.0,0.0,4.0,3.0,1.8,2,1,932.236615690105,0.0,22383.44702876444,0,1,0,1,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01724488634408992,12435.248349313577,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +26258,1,62.0,200.0,9,111,230.4,540.0,0.0,0,56,0.0,0.0,392.8782051929229,770.0,0.0,1025.192185887486,50,2,2,2,2,1,2,2,2,0,,8,2007.0,6,126279,2,2,0,0,1,,0.0,653.0,11,0.0,1.0,3.0,1.0,1.0,1,1,2199.3570265598,230.4,13330.742420629356,0,5,2,3,73.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.057761224071693346,13330.742420629356,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +26259,2,48.0,0.0,5,111,300.0,500.0,0.0,55,43,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,41,0,0,0,0,0,0,0,0,0,,2,,3,126280,2,2,0,1,1,1000.0,350.0,555.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,449.657734031569,300.0,41328.97855969728,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019356878100542627,14251.371917136996,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +26260,2,72.0,0.0,7,111,900.0,,,81,77,0.0,0.0,,1026.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,2,,5,126281,2,1,0,0,2,,1080.0,309.0,42,1.0,0.0,3.0,2.0,1.5,2,2,89.98763047848938,900.0,11369.301036527166,4,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09024301465003684,7579.534024351444,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +26261,2,47.0,0.0,1,111,700.0,250.0,0.0,85,47,0.0,662.163638505112,1193.6403803604428,1450.0,0.0,474.62601198494724,31,2,2,2,2,1,2,2,2,0,,8,,1,126282,2,1,0,4,1,,300.0,,42,1.0,0.0,5.0,6.0,3.1,5,4,900.247931916137,700.0,17694.16711983142,6,1,0,1,140.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0.08194790917142726,5707.79584510691,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +26262,2,89.0,0.0,2,111,680.0,1340.0,0.0,0,78,0.0,0.0,1159.5363694930015,2020.0,0.0,2543.9954242393173,70,0,0,0,0,0,0,0,0,0,,1,,2,126283,2,2,4,0,2,,250.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,488.505174390835,680.0,20056.393902959328,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10071601155090738,20056.393902959328,5,3,5,5_1,5_3,5_0_1 +26263,2,47.0,0.0,1,400,500.0,0.0,0.0,52,22,1054.6828510366015,0.0,852.6002716860306,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,126284,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,2398.47471516743,500.0,32267.23767329481,1,1,1,2,120.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04648678065310308,17926.24315183045,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +26264,2,57.0,0.0,1,221,0.0,0.0,2080.0,45,48,0.0,0.0,1311.0620440626672,2080.0,0.0,2489.2028669345364,60,0,0,0,0,0,0,0,0,1,4.0,1,,1,126285,2,1,2,0,1,,440.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,522.311631446232,0.0,46488.70797113342,1,1,0,1,81.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044742047924660536,30992.471980755614,8,4,8,8_1,8_1,8_1_0 +26265,2,54.0,0.0,1,120,800.0,0.0,0.0,56,38,0.0,0.0,1364.160434697649,870.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126286,2,2,2,0,1,,0.0,165.0,43,2.0,1.0,4.0,2.0,1.5,2,2,1527.52913838242,800.0,34705.935524779125,1,1,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02506775820461151,23137.29034985275,6,3,6,6_1,6_0,6_1_0 +26266,2,66.0,0.0,5,112,2766.0,0.0,0.0,75,75,0.0,470.1361833386295,4716.584702967121,3121.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,1,,3,126287,2,1,2,0,1,,1227.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,821.669820318341,2766.0,57622.79134844036,5,5,0,1,105.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05416259655190193,38415.19423229357,9,5,9,9_1,9_0,9_0_0 +26267,1,69.0,270.0,2,111,0.0,0.0,340.0,0,72,0.0,0.0,214.3082187410129,340.0,0.0,406.8889301719915,71,2,1,2,2,1,2,2,2,0,,2,,2,126288,1,3,0,1,2,396.0,0.0,274.0,11,0.0,0.0,2.0,1.0,1.0,1,1,456.514303270846,0.0,9933.368888888888,0,5,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.03422806540289789,9933.368888888888,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26268,2,51.0,0.0,1,300,2400.0,0.0,0.0,56,63,0.0,0.0,4092.4813040929466,2760.0,498.81212114274757,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,126289,2,1,2,0,1,,130.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,859.635260327142,2400.0,42745.78912277223,1,1,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0645677634368352,21372.894561386114,6,3,6,6_1,6_0,6_1_0 +26269,2,55.0,0.0,5,111,880.0,0.0,0.0,0,54,0.0,0.0,1500.5764781674138,880.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,3,126290,2,1,0,1,1,1080.0,0.0,453.0,32,2.0,1.0,4.0,2.0,1.5,2,2,769.044638409571,880.0,38404.95703303629,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022913708749706867,25603.30468869086,7,4,7,7_0,7_4,7_0_0 +26270,2,49.0,0.0,7,111,1140.0,0.0,0.0,21,38,0.0,768.1098206659299,1943.9286194441497,1720.0,0.0,0.0,12,2,2,2,2,2,2,2,1,2,60.0,1,,5,126291,1,2,3,0,1,,808.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,399.76581081466,1140.0,113234.29037173296,1,1,0,1,138.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.015189745035302214,45293.71614869319,10,5,10,10_1,10_4,10_0_0 +26271,2,83.0,0.0,2,111,152.0,0.0,0.0,0,78,0.0,0.0,259.1904825925533,152.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126292,2,1,4,0,1,,1008.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1365.7214992604,152.0,30054.97722030751,0,5,0,1,80.0,8,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.005057398609415576,30054.97722030751,8,4,8,8_1,8_3,8_0_1 +26272,2,58.0,0.0,1,111,500.0,,,0,35,0.0,0.0,,569.0,95.60565655235995,,31,0,0,0,0,0,0,0,0,0,,1,,1,126293,2,2,0,0,2,,600.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,90.05777410646897,500.0,10887.722895693034,0,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05226069816904369,10887.722895693034,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +26274,0,67.0,0.0,1,112,200.0,0.0,0.0,71,71,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126295,2,1,2,0,1,,0.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,751.739375082096,200.0,23410.920349282365,5,5,0,1,47.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.008543021676041488,15607.28023285491,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +26275,2,26.0,0.0,5,111,400.0,600.0,0.0,56,63,0.0,132.4327277010224,682.0802173488245,1100.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,30.0,8,,3,126296,2,1,0,0,1,,0.0,585.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1795.53946522311,400.0,36052.188438985395,1,1,2,3,72.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03051132393423596,24034.79229265693,6,3,6,6_0,6_2,6_0_0 +26276,2,43.0,0.0,2,111,600.0,0.0,0.0,54,21,1898.4291318658827,0.0,1023.1203260232367,2500.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,126297,2,1,3,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,597.871654718184,600.0,22919.48653579122,1,1,1,2,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10907748723323202,9964.994145996183,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +26277,1,30.0,406.0,1,212,0.0,0.0,0.0,85,69,0.0,0.0,0.0,1288.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,126298,2,3,3,0,1,,358.0,490.0,42,1.0,0.0,4.0,4.0,2.1,2,2,892.056321762478,0.0,11500.969457263816,6,4,2,3,83.0,2,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.11199055912512847,5476.652122506579,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +26278,1,39.0,372.0,2,111,600.0,700.0,0.0,0,56,0.0,0.0,1023.1203260232367,1300.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,3,25.0,2,,2,126299,1,3,0,1,1,686.0,0.0,338.0,32,1.0,0.0,4.0,4.0,2.3,3,3,317.214452102877,600.0,12789.731769746235,0,1,2,3,56.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1016440394062927,5560.752943367928,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26279,2,53.0,0.0,1,111,91.0,818.0,0.0,77,62,0.0,0.0,155.17324944685757,909.0,0.0,1552.9763112147475,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,126300,1,2,5,0,1,,622.0,555.0,42,3.0,3.0,6.0,4.0,2.5,4,4,159.040131070063,91.0,26708.611758303956,6,1,2,3,163.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034033966580737145,10683.444703321582,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +26280,2,48.0,0.0,6,111,1200.0,0.0,0.0,53,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,4,126301,2,1,0,0,1,,318.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,1041.95412356383,1200.0,52317.97119257005,1,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02293666922945243,29065.539551427803,8,4,8,8_0,8_4,8_0_0 +26281,2,83.0,0.0,2,211,0.0,,,77,77,0.0,0.0,,791.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,126302,1,2,0,0,2,,280.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,8.628927407353641,0.0,26079.14583361146,5,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03033074798717293,17386.09722240764,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +26282,2,86.0,0.0,2,111,252.0,0.0,0.0,0,77,2910.92466886102,0.0,429.7105369297594,3162.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126303,2,2,2,0,1,,304.0,,11,0.0,5.0,8.0,1.0,1.0,1,1,1374.41937572698,252.0,15575.587751687483,0,5,0,1,160.0,7,5,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.2030099955398103,15575.587751687483,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +26283,1,70.0,43.0,2,111,200.0,0.0,0.0,77,78,0.0,0.0,341.04010867441224,260.0,83.13535352379125,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,126304,1,3,0,1,1,800.0,0.0,316.0,41,0.0,5.0,3.0,2.0,1.5,2,2,1244.07946456743,200.0,19135.8551112106,5,5,2,3,74.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.0135870593965608,12757.236740807066,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26284,2,81.0,0.0,2,112,180.0,250.0,0.0,0,78,0.0,0.0,306.936097806971,430.0,0.0,474.62601198494724,70,0,0,0,0,0,0,0,0,0,,2,,2,126305,2,1,0,0,1,,70.0,608.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1005.39444934934,180.0,18373.61207912307,0,5,2,3,70.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023403128255253928,18373.61207912307,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +26285,2,79.0,0.0,2,111,654.0,0.0,0.0,78,74,2425.7705573841836,158.91927324122688,1115.201155365328,3154.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,126306,2,1,1,0,2,,320.0,,41,1.0,4.0,6.0,3.0,2.0,3,3,513.773769349505,654.0,87877.92527662823,5,5,0,1,78.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03589069712412554,43938.962638314115,10,5,10,10_1,10_4,10_0_1 +26286,2,87.0,0.0,2,120,320.0,,,0,72,0.0,79.45963662061344,,472.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,2,126307,2,3,0,0,2,,280.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,125.55635453395675,320.0,9394.0,0,5,0,1,78.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050244837130083035,9394.0,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +26287,2,39.0,0.0,9,211,0.0,,,81,11,0.0,0.0,,276.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,126308,2,2,0,0,2,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,62.57638188910305,0.0,10936.799027006226,4,1,0,1,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02523590305705294,4556.999594585927,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26288,2,35.0,0.0,1,111,0.0,0.0,1500.0,47,46,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,126309,2,1,0,0,1,,0.0,960.0,43,2.0,0.0,2.0,2.0,1.5,2,2,955.829353488631,0.0,49815.0740493444,1,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0301113674650804,33210.0493662296,8,4,8,8_0,8_4,8_1_0 +26289,2,53.0,0.0,2,111,600.0,1000.0,0.0,37,22,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,126310,2,1,1,0,1,,200.0,,43,2.0,2.0,5.0,3.0,2.0,3,2,973.694329528196,600.0,27609.449828737415,4,1,1,2,95.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057951172874681225,13804.724914368708,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +26290,2,77.0,0.0,5,221,0.0,0.0,0.0,0,71,0.0,0.0,0.0,1611.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126311,2,1,2,0,1,,441.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2720.03764107321,0.0,25455.41697393251,0,5,0,1,90.0,1,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06328711887335164,25455.41697393251,7,4,7,7_1,7_1,7_0_0 +26291,2,45.0,0.0,1,111,1463.0,0.0,0.0,35,54,0.0,0.0,2494.7083949533253,1663.0,277.1178450793042,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,1,126312,2,2,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,392.5524921819,1463.0,62955.42501287522,4,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026415515416819035,25182.17000515009,7,4,7,7_1,7_4,7_1_0 +26292,1,22.0,178.0,1,111,610.0,0.0,0.0,0,67,0.0,0.0,1040.1723314569574,610.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,2,,1,126313,2,3,0,0,1,,0.0,320.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2144.52224388602,610.0,6625.684021058067,0,1,2,3,25.0,8,6,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.09206596602875548,6625.684021058067,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +26293,1,66.0,51.0,2,111,77.0,55.0,0.0,0,78,0.0,0.0,131.3004418396487,132.0,0.0,104.4177226366884,71,0,0,0,0,0,0,0,0,0,,2,,2,126314,1,1,0,1,1,353.0,0.0,229.0,11,0.0,0.0,1.0,1.0,1.0,1,1,286.572399637886,77.0,13413.72628649024,0,5,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00984066598503244,13413.72628649024,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +26294,1,25.0,320.0,1,111,960.0,0.0,0.0,34,42,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,,1,126315,1,2,0,0,1,,0.0,820.0,42,1.0,0.0,3.0,2.0,1.5,2,2,532.263930261416,960.0,18551.50587966531,3,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05174782070129821,12367.67058644354,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +26295,1,53.0,180.0,5,111,950.0,0.0,0.0,0,54,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,10.0,2,,3,126316,1,3,0,1,1,650.0,0.0,506.0,32,2.0,0.0,5.0,5.0,3.0,5,5,604.706770544567,950.0,53974.70401252347,0,1,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017600837603103416,17991.56800417449,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +26296,2,43.0,0.0,1,111,1275.0,250.0,0.0,0,34,0.0,0.0,2174.130692799378,1525.0,0.0,474.62601198494724,10,2,2,2,1,1,2,1,2,0,,2,,1,126317,1,3,0,0,2,,0.0,1200.0,32,1.0,0.0,3.0,2.0,1.3,1,1,807.470434342608,1275.0,36794.8778639815,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0414459861950737,28303.75220306269,8,4,8,8_0,8_4,8_1_0 +26297,1,41.0,425.0,5,111,600.0,99.0,0.0,55,47,0.0,0.0,1023.1203260232367,699.0,0.0,187.95190074603912,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,126318,2,1,0,1,1,884.0,0.0,386.0,43,2.0,0.0,5.0,5.0,2.8,4,2,259.813502069015,600.0,27368.600155876993,4,4,2,3,95.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025540217476190515,9774.500055670354,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +26298,1,31.0,64.0,1,111,440.0,100.0,0.0,0,55,0.0,0.0,750.2882390837069,540.0,0.0,189.8504047939789,41,0,0,0,0,0,0,0,0,0,,2,,1,126319,1,3,0,0,2,,0.0,582.0,22,1.0,0.0,2.0,2.0,1.5,2,2,1953.46636112956,440.0,47565.73383569646,0,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.011352710374768746,31710.489223797642,8,4,8,8_0,8_3,8_1_0 +26299,0,65.0,0.0,1,400,300.0,0.0,0.0,0,71,0.0,0.0,511.56016301161833,364.0,88.67771042537734,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126320,2,1,2,0,2,,0.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,827.93285890018,300.0,9820.4396047206,0,5,5,0,60.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03706555048971824,9820.4396047206,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +26300,1,47.0,150.0,1,111,900.0,0.0,0.0,0,54,0.0,0.0,1534.680489034855,906.0,0.0,0.0,31,2,2,2,2,2,2,2,1,0,,2,,1,126321,2,2,0,1,1,240.0,99.0,706.0,12,1.0,0.0,1.0,1.0,1.0,1,1,676.24773691531,900.0,17088.31497251353,0,4,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.053018685660774424,17088.31497251353,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +26301,1,35.0,113.0,2,111,520.0,0.0,0.0,0,67,0.0,0.0,886.7042825534718,520.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,2,,2,126322,2,1,0,1,1,708.0,0.0,347.0,32,1.0,0.0,3.0,2.0,1.3,1,1,58.0871587494742,520.0,19557.901688034006,0,1,2,3,92.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0265877192908761,15044.539760026159,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +26302,2,53.0,0.0,1,111,0.0,0.0,0.0,46,46,0.0,430.4063650283228,0.0,3284.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,126323,2,2,2,0,2,,163.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,971.132069361085,0.0,37738.128772791184,1,1,1,2,140.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08702074286120226,25158.752515194123,7,4,7,7_1,7_3,7_1_0 +26303,2,42.0,0.0,8,111,494.0,1074.0,0.0,52,48,0.0,0.0,842.3690684257982,1568.0,0.0,2038.9933474873335,50,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,126324,2,2,1,0,1,,528.0,553.0,43,2.0,0.0,4.0,4.0,2.3,3,2,292.154946339101,494.0,52861.0622877318,1,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02966266533701324,22983.070559883396,6,3,6,6_1,6_4,6_0_0 +26305,2,57.0,0.0,5,111,528.0,1000.0,0.0,56,78,0.0,0.0,900.3458869004482,1528.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,2,,3,126326,2,2,0,0,1,,0.0,485.0,42,4.0,1.0,5.0,5.0,3.0,5,5,1309.74115260929,528.0,62540.0,4,7,2,3,102.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024432363287496,20846.666666666668,5,3,5,5_0,5_3,5_0_0 +26306,1,37.0,440.0,5,111,200.0,250.0,0.0,63,85,0.0,0.0,341.04010867441224,450.0,0.0,474.62601198494724,50,2,1,2,2,1,2,2,2,0,,2,,3,126327,2,2,0,1,1,504.0,0.0,379.0,42,1.0,0.0,4.0,7.0,3.3999999999999995,4,2,347.187877517903,200.0,20190.666378698734,4,6,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.02228752590725547,5938.43128785257,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +26307,2,53.0,0.0,9,111,1836.0,0.0,0.0,85,37,0.0,0.0,3130.748197631104,1976.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,126328,2,1,1,0,1,,547.0,,42,1.0,0.0,5.0,4.0,2.5,4,3,893.413350919169,1836.0,31231.642986719315,6,1,1,2,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0632691658533705,12492.657194687727,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +26308,1,50.0,340.0,7,111,264.0,,,0,47,0.0,0.0,,614.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,0,,2,,5,126329,1,3,0,0,2,,250.0,389.0,32,1.0,0.0,3.0,3.0,2.0,3,3,147.57715433364024,264.0,2473.1575931024972,0,4,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.24826561870234748,1236.5787965512486,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26309,1,51.0,420.0,2,111,100.0,1200.0,0.0,0,56,0.0,0.0,170.52005433720612,1300.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,2,,2,126330,1,2,0,0,2,,480.0,585.0,32,1.0,0.0,3.0,3.0,1.8,2,2,372.67738155114,100.0,10796.47911605298,0,4,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12040962484399814,5998.043953362767,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +26310,1,49.0,92.0,2,400,1799.0,0.0,0.0,85,55,0.0,79.45963662061344,3067.655777526338,1949.0,124.70303028568689,0.0,71,2,2,1,1,2,2,2,2,2,35.0,1,,2,126331,1,3,3,0,1,,258.0,294.0,42,1.0,0.0,4.0,3.0,2.0,3,2,1545.34457232845,1799.0,22778.96346661923,7,1,2,3,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.08556139979135159,11389.481733309614,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +26311,1,39.0,66.0,1,111,40.0,88.0,0.0,0,85,0.0,0.0,68.20802173488245,128.0,0.0,167.06835621870144,50,2,2,1,2,2,2,2,1,0,,1,,1,126332,1,1,2,0,2,,192.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,511.464325957225,40.0,11361.503366478202,0,5,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.011266114691974692,11361.503366478202,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +26312,1,47.0,183.0,2,111,288.0,70.0,0.0,0,55,0.0,0.0,491.09775649115363,358.0,0.0,132.89528335578524,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,126333,2,1,0,2,1,588.0,0.0,358.0,32,1.0,0.0,3.0,2.0,1.3,1,1,173.72646567297,288.0,18244.624938835444,0,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01962221756819799,14034.326876027264,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +26313,2,68.0,0.0,1,112,1200.0,0.0,0.0,77,74,0.0,794.5963662061343,2046.2406520464733,1870.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126334,2,1,2,0,1,,450.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1523.11575577982,1200.0,39424.39350224201,6,5,0,1,120.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04743256227628855,26282.929001494675,7,4,7,7_1,7_0,7_1_0 +26314,2,47.0,0.0,7,111,480.0,,,42,43,0.0,0.0,,595.0,159.34276092059991,,33,0,0,0,0,0,0,0,0,0,,1,,5,126335,2,1,0,0,2,,340.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,110.37762451211974,480.0,61866.91354900838,4,1,0,1,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009617418517713283,26898.658064786254,7,4,7,7_1,7_2,7_0_0 +26315,2,67.0,0.0,5,112,790.0,0.0,0.0,0,75,0.0,0.0,1347.1084292639284,822.0,44.33885521268867,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,126336,2,2,2,0,1,,134.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,793.164690686456,790.0,42694.48500805674,0,5,0,1,100.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01925307214374135,42694.48500805674,9,5,9,9_1,9_0,9_0_0 +26316,2,48.0,0.0,2,111,330.0,,,0,45,0.0,0.0,,380.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,2,3.0,2,,2,126337,2,3,0,0,2,,250.0,550.0,12,1.0,3.0,2.0,1.0,1.0,1,1,128.5526269717044,330.0,38316.0,0,1,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009917527925670739,38316.0,9,5,9,9_0,9_2,9_0_1 +26317,2,77.0,0.0,5,111,2140.0,0.0,0.0,75,74,0.0,39.72981831030672,3649.1291628162107,2170.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,126338,2,1,2,0,1,,303.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1723.57491073967,2140.0,85264.90146677429,5,5,0,1,115.0,6,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025450096847242563,56843.26764451619,10,5,10,10_1,10_2,10_0_0 +26318,2,58.0,0.0,7,111,480.0,,,75,33,0.0,0.0,,480.0,0.0,,20,0,0,0,0,0,0,0,0,2,30.0,2,,5,126339,2,1,0,0,1,,300.0,1000.0,42,1.0,2.0,4.0,2.0,1.5,2,2,180.49412838103086,480.0,118924.79391258147,6,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004036164236305808,79283.19594172099,10,5,10,10_0,10_2,10_0_0 +26319,2,64.0,0.0,1,112,1070.0,0.0,0.0,86,75,0.0,0.0,1824.5645814081054,1140.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126340,2,2,4,0,1,,450.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,762.465964162146,1070.0,18772.273744824663,7,5,0,1,120.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.060727859368356334,12514.849163216442,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +26320,2,72.0,0.0,1,111,1700.0,0.0,0.0,74,74,0.0,317.83854648245375,2898.840923732504,1990.0,69.27946126982604,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,126341,1,3,4,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1293.19983120034,1700.0,88240.98797588247,5,5,0,1,120.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02255187805177222,58827.32531725498,10,5,10,10_1,10_2,10_1_0 +26321,2,83.0,0.0,1,111,400.0,4000.0,0.0,0,74,0.0,0.0,682.0802173488245,4400.0,0.0,7594.016191759156,10,0,0,0,0,0,0,0,0,0,,1,,1,126342,1,2,4,0,2,,210.0,,11,0.0,2.0,13.0,1.0,1.0,1,1,948.121813447029,400.0,47574.0024897762,0,5,0,1,342.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09248748832822241,47574.0024897762,10,5,10,10_1,10_2,10_1_0 +26322,2,64.0,0.0,5,112,1830.0,1370.0,0.0,52,74,0.0,0.0,3120.516994370872,3200.0,0.0,2600.950545677511,70,0,0,0,0,0,0,0,0,0,,1,,3,126343,1,1,3,0,1,,530.0,,42,3.0,0.0,7.0,4.0,2.5,4,4,848.924070955947,1830.0,119396.57675750807,1,5,0,1,200.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026801438423977034,47758.630703003226,10,5,10,10_1,10_1,10_0_0 +26323,2,66.0,0.0,2,111,800.0,0.0,0.0,77,74,2953.111982902484,0.0,1364.160434697649,3600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126344,2,2,2,0,1,,400.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1553.13670451118,800.0,36761.770768078626,5,5,0,1,95.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09792781807795806,24507.847178719083,7,4,7,7_1,7_3,7_0_1 +26324,2,53.0,0.0,2,111,828.0,0.0,0.0,52,67,864.8399378500133,0.0,1411.9060499120667,1648.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,45.0,2,,2,126345,1,2,0,1,1,820.0,0.0,349.0,43,2.0,1.0,4.0,2.0,1.5,2,2,261.968035419234,828.0,82120.76454369327,1,1,2,3,62.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02006800605373277,54747.176362462174,10,5,10,10_0,10_4,10_0_1 +26325,1,47.0,250.0,2,111,208.0,,,0,85,0.0,0.0,,254.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,2,,2,126346,2,2,0,0,2,,0.0,350.0,11,0.0,0.0,1.0,1.0,1.0,1,1,183.21354936511705,208.0,12605.80921205761,0,7,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020149440287978174,12605.80921205761,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +26326,2,58.0,0.0,2,111,330.0,0.0,0.0,75,35,0.0,0.0,562.7161793127802,330.0,0.0,0.0,60,2,2,2,2,2,2,2,1,3,30.0,2,,2,126347,2,3,0,1,1,620.0,0.0,965.0,42,1.0,1.0,4.0,2.0,1.5,2,2,983.207894837016,330.0,66086.68606529245,5,1,2,3,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.004993441487956681,44057.79071019497,10,5,10,10_0,10_4,10_0_1 +26327,2,78.0,0.0,1,112,2000.0,0.0,0.0,75,74,527.3414255183008,0.0,3410.4010867441225,2545.0,62.351515142843446,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,126348,2,1,3,0,1,,200.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,753.12057669851,2000.0,63401.02553147617,5,5,0,1,120.0,7,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04014130652723442,42267.350354317445,9,5,9,9_1,9_1,9_1_0 +26328,2,43.0,0.0,9,120,230.0,,,42,33,0.0,0.0,,314.0,116.38949493330776,,12,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,126349,2,2,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,105.93943696522855,230.0,111239.08015098993,1,1,1,2,122.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002822748979709229,48364.81745695215,10,5,10,10_1,10_2,10_0_0 +26329,2,75.0,0.0,1,300,689.0,0.0,0.0,71,71,1476.555991451242,0.0,1174.8831743833503,2229.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126350,2,1,2,0,1,,209.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1689.77249539166,689.0,28693.456523002813,5,5,0,1,114.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07768321666694522,19128.97101533521,5,3,5,5_1,5_0,5_1_0 +26330,2,33.0,0.0,7,211,0.0,,,0,68,0.0,0.0,,1396.0,0.0,,71,0,0,0,0,0,0,0,0,1,10.0,2,,5,126351,2,1,0,0,2,,374.0,560.0,22,2.0,2.0,4.0,2.0,1.5,2,2,70.26053548049039,0.0,19425.460595446584,0,1,3,4,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07186444785392779,12950.307063631057,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +26331,2,92.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,471.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,126352,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1095.54269126103,0.0,31242.569152734475,0,5,0,1,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015075584779773983,31242.569152734475,8,4,8,8_0,8_4,8_0_1 +26332,2,35.0,0.0,2,111,300.0,130.0,0.0,54,47,0.0,0.0,511.56016301161833,430.0,0.0,246.80552623217258,41,2,1,2,1,2,2,2,2,0,,2,,2,126353,1,1,0,1,1,448.0,0.0,499.0,43,2.0,0.0,3.0,4.0,2.1,2,2,289.482804514817,300.0,42277.817864500474,1,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010170818214368136,20132.2942211907,5,3,5,5_0,5_4,5_0_1 +26333,2,65.0,0.0,6,111,160.0,,,0,78,0.0,0.0,,204.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,4,126354,2,2,0,0,1,,115.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,94.62473121824033,160.0,2949.262192612269,0,7,0,1,41.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06916984204083591,2949.262192612269,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26335,2,60.0,0.0,9,111,1200.0,,,0,34,0.0,0.0,,1332.0,182.89777775234077,,20,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,126356,2,1,0,0,2,,600.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,195.5302801840146,1200.0,49043.06667128944,0,1,1,2,878.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027159802402401016,49043.06667128944,10,5,10,10_1,10_2,10_0_0 +26336,2,37.0,0.0,1,112,1170.0,1800.0,0.0,46,38,0.0,0.0,1995.0846357453115,2970.0,0.0,3417.30728629162,12,1,2,2,2,1,2,2,1,2,60.0,1,,1,126357,2,1,3,0,1,,534.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,323.498728338945,1170.0,58660.83375347243,1,1,1,2,135.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.050630033873737615,27933.730358796394,7,4,7,7_1,7_0,7_1_0 +26337,2,65.0,0.0,7,111,1750.0,0.0,0.0,75,74,0.0,0.0,2984.100950901107,1750.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,126358,1,2,0,0,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,830.441408222788,1750.0,90510.60672375599,5,5,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01933475051538555,60340.404482504,10,5,10,10_0,10_4,10_0_0 +26338,2,64.0,0.0,1,111,250.0,127.0,0.0,0,75,0.0,0.0,426.3001358430153,377.0,0.0,241.1100140883532,44,2,1,2,1,1,2,2,2,0,,2,,1,126359,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,787.423092025656,250.0,15470.015552399342,0,5,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.024369723399633475,15470.015552399342,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +26339,1,68.0,48.0,5,111,315.0,75.0,0.0,0,75,0.0,1068.7321125472506,537.1381711621992,1197.0,0.0,142.38780359548417,42,2,1,1,1,2,2,2,2,0,,2,,3,126360,1,1,0,1,1,,0.0,390.0,11,0.0,1.0,3.0,1.0,1.0,1,1,806.851428037477,315.0,15038.030862808078,0,5,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.07959818748346963,15038.030862808078,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +26340,1,51.0,33.0,1,300,0.0,0.0,0.0,0,52,0.0,0.0,0.0,98.0,135.78774408885906,0.0,71,0,0,0,0,0,0,0,0,1,3.0,2,,1,126361,2,1,0,1,1,,0.0,467.0,32,1.0,1.0,4.0,2.0,1.5,2,1,1742.65831926155,0.0,23095.420385693604,0,1,2,3,80.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0042432654770253,15396.946923795736,3,2,3_1,3_0_1,3_0_1,3_1_0_1 +26341,2,43.0,0.0,9,120,1390.0,0.0,0.0,33,22,0.0,0.0,2370.228755287165,1390.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,126362,2,1,1,0,1,,661.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,932.798974471222,1390.0,118851.70923870272,1,1,1,2,152.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011695246192953885,49521.545516126134,10,5,10,10_1,10_0,10_0_0 +26342,2,76.0,0.0,1,221,1300.0,0.0,0.0,0,77,0.0,0.0,2216.7607063836795,1360.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126363,2,3,4,0,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1397.81637113553,1300.0,12099.512930447514,0,5,0,1,85.0,1,3,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11240121877779578,12099.512930447514,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +26343,2,87.0,0.0,5,111,0.0,0.0,364.0,0,77,0.0,0.0,229.43585771096676,364.0,0.0,435.61050171354384,60,0,0,0,0,0,0,0,0,0,,1,,3,126364,2,2,1,0,1,,459.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1064.76365162223,0.0,45828.83873801979,0,5,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00794259706384452,45828.83873801979,10,5,10,10_1,10_3,10_0_0 +26344,1,42.0,392.0,2,111,422.0,540.0,0.0,81,62,0.0,0.0,719.5946293030098,962.0,0.0,1025.192185887486,31,0,0,0,0,0,0,0,0,2,150.0,1,,2,126365,1,2,3,0,1,,355.0,,43,3.0,0.0,5.0,6.0,2.8999999999999995,3,3,309.874902713149,422.0,35648.8211818261,4,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02698546454294627,12292.696959250381,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +26345,2,66.0,0.0,9,300,1300.0,0.0,0.0,77,74,0.0,397.2981831030672,2216.7607063836795,1600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126366,2,1,1,0,1,,500.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2070.30213368215,1300.0,51240.92567264543,5,5,0,1,159.0,0,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031225040902298676,34160.61711509695,9,5,9,9_1,9_1,9_0_0 +26346,2,37.0,0.0,1,111,240.0,300.0,0.0,0,33,0.0,0.0,409.2481304092947,628.0,0.0,569.5512143819367,10,0,0,0,0,0,0,0,0,2,5.0,2,,1,126367,2,1,0,1,1,564.0,0.0,807.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1873.72731075549,240.0,40290.82036110728,0,1,2,3,110.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015586676924707351,40290.82036110728,9,5,9,9_0,9_3,9_1_0 +26347,2,38.0,0.0,8,221,1500.0,0.0,0.0,54,62,105.46828510366015,0.0,2557.8008150580918,1600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,20.0,1,2001.0,6,126368,2,2,2,0,1,,130.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1707.7636300775,1500.0,71975.42382449374,1,1,1,2,125.0,1,1,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022229810051573585,39986.34656916319,9,5,9,9_1,9_1,9_0_0 +26348,2,52.0,0.0,1,111,900.0,0.0,0.0,90,37,0.0,0.0,1534.680489034855,1139.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,20.0,2,,1,126369,2,1,0,1,1,,0.0,,43,2.0,3.0,2.0,2.0,1.5,2,2,960.162577144024,900.0,127175.28630574947,1,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008956142605110117,84783.52420383297,10,5,10,10_0,10_4,10_1_0 +26349,1,47.0,353.0,7,211,760.0,,,0,68,0.0,0.0,,760.0,0.0,,50,0,0,0,0,0,0,0,0,3,120.0,2,,5,126370,2,1,0,0,2,,400.0,495.0,32,1.0,0.0,4.0,3.0,2.0,3,2,101.45016413802192,760.0,16705.50280613838,0,1,2,3,82.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045493991340430695,8352.75140306919,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26350,2,37.0,0.0,8,112,500.0,0.0,0.0,21,47,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,2,2,2,2,2,2,1,2,2,1.0,2,2003.0,6,126371,2,1,0,0,1,,244.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,2146.90736367786,500.0,39099.25096613974,1,1,1,2,50.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.012787968762700951,26066.16731075983,7,4,7,7_0,7_1,7_0_0 +26351,2,44.0,0.0,5,111,400.0,0.0,0.0,90,46,1582.0242765549024,0.0,682.0802173488245,2044.0,199.524848457099,0.0,31,1,1,2,1,1,1,1,2,0,,1,,3,126372,1,2,3,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,751.030799952654,400.0,23895.392070615635,1,1,1,2,120.0,8,7,4,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.08553950460237579,11378.758128864587,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +26352,0,46.0,0.0,6,111,0.0,,,56,56,0.0,0.0,,230.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,2,,4,126373,2,1,0,0,2,,0.0,,43,2.0,0.0,3.0,5.0,2.8,4,3,164.67514259534136,0.0,36738.75928079739,4,1,5,0,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006260418274936583,13120.985457427641,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +26353,2,55.0,0.0,7,400,570.0,,,56,78,0.0,0.0,,680.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,5,126374,1,2,0,0,2,,600.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,86.88809152536489,570.0,17694.81824847131,1,7,0,1,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03842932944839637,11796.545498980873,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +26354,1,48.0,270.0,2,111,650.0,90.0,0.0,0,85,0.0,0.0,1108.3803531918397,740.0,0.0,170.865364314581,50,1,1,2,2,1,2,2,1,0,,2,,2,126375,2,1,0,1,1,504.0,0.0,297.0,31,1.0,0.0,4.0,2.0,1.5,2,2,366.964860521129,650.0,31888.62210062745,0,7,2,3,68.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.02320576905658898,21259.0814004183,5,3,5,5_0,5_3,5_0_1 +26355,2,33.0,0.0,1,111,240.0,0.0,0.0,0,46,0.0,0.0,409.2481304092947,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,1,126376,1,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1059.03710823107,240.0,37031.12218843326,0,1,1,2,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.006481035027206506,37031.12218843326,9,5,9,9_0,9_4,9_1_0 +26356,1,59.0,155.0,2,111,125.0,750.0,0.0,0,56,0.0,0.0,213.15006792150766,875.0,0.0,1423.8780359548418,70,0,0,0,0,0,0,0,0,0,,2,,2,126377,1,2,0,0,1,,0.0,140.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1103.64611571034,125.0,7723.648351648351,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11328843056575211,7723.648351648351,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +26357,2,50.0,0.0,1,111,300.0,0.0,0.0,0,38,0.0,0.0,511.56016301161833,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,20.0,2,,1,126378,2,1,0,1,1,684.0,0.0,614.0,32,1.0,0.0,3.0,2.0,1.5,2,2,987.444128875968,300.0,42742.37154682259,0,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007018796317171165,28494.914364548396,8,4,8,8_0,8_4,8_1_0 +26358,1,43.0,363.0,2,300,1520.0,0.0,0.0,0,85,0.0,0.0,2591.904825925533,1610.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126379,1,2,3,0,1,,270.0,323.0,31,1.0,1.0,3.0,3.0,1.8,2,2,725.814921494457,1520.0,14181.799922729944,0,7,2,3,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.11352578719007064,7878.7777348499685,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +26359,2,32.0,0.0,1,400,500.0,0.0,0.0,0,11,0.0,264.8654554020448,852.6002716860306,820.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126380,2,1,1,0,1,,300.0,,32,1.0,0.0,7.0,3.0,1.6,1,1,1863.64868014354,500.0,17471.815236553757,0,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0469327307379277,10919.884522846098,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +26360,2,46.0,0.0,2,111,569.0,2503.0,0.0,0,52,0.0,0.0,970.2591091787028,3072.0,0.0,4751.955631993292,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,126381,2,2,3,0,1,,400.0,,32,2.0,0.0,5.0,4.0,2.3,3,2,414.613130825877,569.0,34285.192748138514,0,1,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08960136297226422,14906.60554266892,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +26361,2,77.0,0.0,2,111,350.0,0.0,0.0,0,74,0.0,0.0,596.8201901802214,350.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,126382,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1209.56797116932,350.0,53865.832332211095,0,5,0,1,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006497625393429674,53865.832332211095,10,5,10,10_0,10_4,10_0_1 +26363,2,74.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,876.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,126384,2,1,0,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,90.78286028685605,600.0,8060.528618523346,0,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10867773584810861,8060.528618523346,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +26364,2,74.0,0.0,6,120,1500.0,0.0,0.0,0,75,0.0,317.83854648245375,2557.8008150580918,1740.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,126385,2,1,2,0,1,,350.0,,21,1.0,0.0,7.0,2.0,1.5,2,2,1354.362584733,1500.0,58148.43149719398,0,5,0,1,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02992342106569058,38765.62099812932,9,5,9,9_1,9_0,9_0_0 +26365,2,62.0,0.0,2,111,220.0,400.0,0.0,0,78,0.0,0.0,375.14411954185346,620.0,0.0,759.4016191759156,71,2,2,2,2,1,2,2,2,0,,2,,2,126386,2,1,0,1,1,400.0,400.0,230.0,11,0.0,0.0,2.0,1.0,1.0,1,1,907.9108069898,220.0,20723.491264936994,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02991773886328728,20723.491264936994,5,3,5,5_0,5_4,5_0_1 +26366,2,31.0,0.0,2,111,733.0,0.0,0.0,68,46,0.0,0.0,1249.911998291721,733.0,0.0,0.0,50,2,1,2,1,1,2,2,2,3,60.0,2,,2,126387,2,2,0,1,1,265.0,0.0,650.0,43,2.0,0.0,3.0,3.0,1.8,2,2,192.50213283003,733.0,21428.478541334884,4,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03420681494423719,11904.710300741603,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +26367,2,89.0,0.0,6,112,360.0,0.0,0.0,77,78,2593.465130699003,0.0,613.872195613942,2969.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126388,2,2,4,0,2,,560.0,,41,1.0,5.0,8.0,3.0,2.0,3,3,2163.80307324367,360.0,30517.56528758355,5,5,0,1,120.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09728823292492388,15258.782643791776,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +26368,2,42.0,0.0,1,112,1600.0,600.0,0.0,43,53,0.0,0.0,2728.320869395298,2200.0,0.0,1139.1024287638734,60,0,0,0,0,0,0,0,0,2,40.0,1,,1,126389,2,2,2,0,1,,150.0,,43,2.0,0.0,7.0,5.0,2.8,4,2,203.584676188884,1600.0,56965.14212930371,1,1,1,2,110.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03862010903099788,20344.69361760847,5,3,5,5_1,5_0,5_1_0 +26369,2,86.0,0.0,1,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2067.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,126390,1,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,621.209111806162,0.0,54411.89357258497,0,5,0,1,100.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03798801813876668,54411.89357258497,10,5,10,10_0,10_3,10_1_0 +26370,2,77.0,0.0,2,112,800.0,0.0,0.0,56,72,3137.6814818338894,0.0,1364.160434697649,3850.0,103.91919190473907,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,126391,2,2,2,0,2,,225.0,,42,2.0,0.0,5.0,4.0,2.5,4,4,1487.57249170306,800.0,84994.72901517188,1,5,0,1,110.0,9,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04529692658132672,33997.89160606875,9,5,9,9_1,9_2,9_0_1 +26371,2,53.0,0.0,7,111,319.0,118.0,0.0,0,52,0.0,0.0,543.9589733356875,437.0,0.0,224.0234776568951,41,0,0,0,0,0,0,0,0,2,6.0,2,,5,126392,2,1,0,1,1,583.0,0.0,407.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1937.51863994818,319.0,23029.808754611888,0,1,2,3,64.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0189754072496363,23029.808754611888,6,3,6,6_0,6_2,6_0_0 +26372,2,38.0,0.0,1,111,350.0,650.0,0.0,34,37,0.0,132.4327277010224,596.8201901802214,1100.0,0.0,1234.027631160863,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,126393,1,1,0,0,2,,0.0,1200.0,43,2.0,0.0,3.0,2.0,1.5,2,2,301.828197818466,350.0,86886.46507716124,1,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012660199710313031,57924.31005144082,10,5,10,10_0,10_4,10_1_0 +26373,2,79.0,0.0,1,111,900.0,50.0,0.0,74,74,0.0,66.2163638505112,1534.680489034855,1000.0,0.0,94.92520239698945,10,0,0,0,0,0,0,0,0,0,,2,,1,126394,2,1,0,0,2,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1739.40188114848,900.0,61617.23021935501,5,5,0,1,110.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016229226734795408,41078.153479570006,9,5,9,9_0,9_3,9_1_0 +26374,2,49.0,0.0,2,111,472.0,140.0,0.0,63,52,0.0,0.0,804.8546564716129,612.0,0.0,265.7905667115705,71,2,1,2,1,1,2,2,2,1,15.0,2,,2,126395,2,1,0,1,1,750.0,0.0,289.0,43,4.0,0.0,3.0,5.0,2.8,4,4,239.479802723182,472.0,41030.49591161516,4,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.014915734904065621,14653.748539862558,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +26375,1,35.0,300.0,2,111,634.0,0.0,0.0,0,52,0.0,0.0,1081.0971444978868,634.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,20.0,2,,2,126396,1,2,0,0,1,,0.0,486.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1174.18259817928,634.0,5864.279964008074,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10811216447563299,5864.279964008074,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +26376,1,53.0,420.0,2,111,300.0,180.0,0.0,68,56,0.0,0.0,511.56016301161833,480.0,0.0,341.730728629162,71,2,1,2,1,1,2,2,2,3,90.0,2,,2,126397,2,1,0,1,1,,0.0,400.0,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,181.938337406158,300.0,30317.512330926416,1,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.015832433570427202,11228.708270713489,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +26377,2,46.0,0.0,5,111,960.0,500.0,0.0,68,67,0.0,0.0,1636.9925216371787,1460.0,0.0,949.2520239698945,71,1,2,2,2,1,2,2,2,0,,2,,3,126398,2,1,0,0,1,,920.0,224.0,43,5.0,2.0,4.0,6.0,3.3,5,5,1378.69399132229,960.0,30058.0,1,4,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.04857275933195821,9108.48484848485,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +26378,2,48.0,0.0,9,111,600.0,,,55,63,0.0,0.0,,726.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,126399,2,1,0,0,1,,780.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,86.64877377207883,600.0,32498.27037861013,1,1,1,2,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022339650434991833,15475.366846957204,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +26379,2,82.0,0.0,2,111,278.0,62.0,0.0,0,77,0.0,0.0,474.045751057433,340.0,0.0,117.70725097226692,70,0,0,0,0,0,0,0,0,0,,2,,2,126400,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1105.06688075385,278.0,23069.45242347011,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014738104475080435,23069.45242347011,6,3,6,6_0,6_4,6_0_1 +26380,2,62.0,0.0,5,300,635.0,0.0,0.0,0,77,1054.6828510366015,105.94618216081791,1082.8023450412588,2015.0,415.67676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126401,2,2,3,0,1,,460.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,786.172539008794,635.0,9686.491067200823,0,6,0,1,107.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20802166501995129,9686.491067200823,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +26381,2,61.0,0.0,5,111,800.0,1400.0,0.0,0,77,0.0,0.0,1364.160434697649,2200.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,3,126402,2,1,2,0,1,,692.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,656.606538144127,800.0,36069.04171859527,0,5,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06099413500264404,36069.04171859527,9,5,9,9_1,9_4,9_0_0 +26382,1,37.0,20.0,2,221,800.0,0.0,0.0,85,63,1054.6828510366015,331.081819252556,1364.160434697649,2110.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126403,2,1,2,0,2,,500.0,470.0,42,1.0,0.0,6.0,5.0,2.4,2,2,1541.41912614665,800.0,28368.189080773194,6,1,2,3,85.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07437908687058464,11820.078783655497,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +26383,2,44.0,0.0,7,111,540.0,0.0,0.0,52,23,0.0,0.0,920.8082934209131,566.0,0.0,0.0,50,1,1,2,1,1,2,2,2,2,60.0,2,,5,126404,1,2,0,1,1,,0.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,838.640599088835,540.0,78097.41806475677,1,1,1,2,102.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.00724735867107264,37189.24669750322,9,5,9,9_0,9_4,9_0_0 +26384,2,65.0,0.0,2,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,814.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126405,2,1,0,1,2,1200.0,0.0,720.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1949.4832432568,0.0,30735.551961855384,0,5,2,3,63.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02648398834711742,30735.551961855384,8,4,8,8_0,8_3,8_0_1 +26385,1,37.0,200.0,2,111,120.0,0.0,0.0,0,42,0.0,0.0,204.62406520464734,120.0,0.0,0.0,50,1,2,2,2,1,2,2,2,1,5.0,2,,2,126406,1,3,0,1,1,1020.0,0.0,306.0,32,1.0,0.0,5.0,3.0,1.6,1,1,377.998021523632,120.0,14360.472094359524,0,1,2,3,80.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.008356271243139238,8975.295058974702,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +26386,0,48.0,0.0,2,211,336.0,,,85,68,0.0,0.0,,468.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,126407,1,3,0,0,2,,144.0,,42,1.0,1.0,2.0,3.0,1.8,2,2,97.34668481046744,336.0,25160.23446112766,6,1,5,0,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.018600780558029214,13977.908033959811,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +26387,2,44.0,0.0,1,111,1200.0,0.0,0.0,0,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,60.0,2,,1,126408,2,3,0,0,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1049.47839759997,1200.0,34769.52583615336,0,1,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.034512981444004616,34769.52583615336,9,5,9,9_0,9_4,9_1_0 +26388,2,70.0,0.0,1,111,215.0,170.0,0.0,0,78,0.0,0.0,366.61811682499314,385.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,0,,2,,1,126409,2,1,0,0,1,,0.0,500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,977.317088174413,215.0,13639.415464192874,0,5,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028227016107158574,13639.415464192874,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +26389,2,86.0,0.0,6,111,444.0,0.0,0.0,0,78,0.0,0.0,757.1090412571951,444.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,126410,2,3,3,0,1,,253.0,475.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1191.24581764388,444.0,19154.911627776022,0,5,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023179433485674115,19154.911627776022,5,3,5,5_1,5_3,5_0_0 +26390,2,48.0,0.0,6,112,1395.0,0.0,0.0,56,38,0.0,0.0,2378.7547580040255,1531.0,188.44013465392686,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,126411,2,1,2,0,1,,590.0,,43,3.0,0.0,6.0,5.0,2.8,4,4,882.877392643285,1395.0,68045.00145619367,4,1,0,1,160.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022499815816531862,24301.786234354884,7,4,7,7_1,7_0,7_0_0 +26391,1,58.0,271.0,2,111,0.0,0.0,500.0,0,52,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,70,2,2,2,2,1,2,2,2,0,,2,,2,126412,1,3,0,1,1,840.0,0.0,418.0,22,2.0,3.0,4.0,2.0,1.5,2,2,288.812665712099,0.0,22911.750430750213,0,4,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.021822863404139664,15274.50028716681,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +26392,2,39.0,0.0,6,112,937.0,0.0,0.0,47,38,0.0,993.245457757668,1597.7729091396213,1777.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,4,126413,2,2,1,0,1,,376.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,853.513910319469,937.0,76839.11895095931,1,1,1,2,190.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023126241220102053,32016.299562899712,8,4,8,8_1,8_0,8_0_0 +26393,2,36.0,0.0,2,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1083.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,126414,2,2,4,0,1,,396.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,860.054499821669,0.0,44131.624725637026,1,1,1,2,86.0,10,5,1,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024540224991328307,24517.56929202057,7,4,7,7_1,7_2,7_0_1 +26394,2,80.0,0.0,2,111,300.0,0.0,0.0,0,72,3164.0485531098047,0.0,511.56016301161833,3350.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,126415,1,3,4,0,2,,150.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,339.464184286681,300.0,10118.98295351263,0,5,0,1,120.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3310609391665301,10118.98295351263,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +26395,1,30.0,150.0,6,111,360.0,0.0,0.0,0,46,0.0,0.0,613.872195613942,360.0,0.0,0.0,31,2,2,2,2,1,2,2,2,2,25.0,2,,4,126416,2,1,0,1,1,324.0,0.0,423.0,12,1.0,0.0,1.0,1.0,1.0,1,1,941.333678228915,360.0,18656.384601741942,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.019296343192152402,18656.384601741942,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +26396,2,39.0,0.0,6,111,1700.0,0.0,0.0,0,37,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,126417,2,1,2,0,1,,150.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1216.16411494305,1700.0,33186.084733298696,0,1,1,2,135.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05122628998455583,20741.302958311684,5,3,5,5_1,5_2,5_0_0 +26397,2,67.0,0.0,1,111,676.0,500.0,0.0,75,75,0.0,0.0,1152.7155673195134,1176.0,0.0,949.2520239698945,30,0,0,0,0,0,0,0,0,0,,1,,1,126418,2,1,1,0,1,,90.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,259.78446538524,676.0,30032.939265499685,5,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.039157006565485555,20021.959510333123,5,3,5,5_1,5_3,5_1_0 +26398,2,60.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,540.0,332.541414095165,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,126419,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1786.57709798978,300.0,19931.936880161156,0,5,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027092198979291264,19931.936880161156,5,3,5,5_0,5_3,5_0_0 +26399,2,38.0,0.0,2,111,600.0,600.0,0.0,55,64,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,30,2,1,2,2,1,2,2,2,2,25.0,2,,2,126420,1,2,0,1,1,,0.0,580.0,43,2.0,0.0,4.0,5.0,2.4,2,2,523.674948593233,600.0,47889.89246984411,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.025057479524633105,19954.121862435048,5,3,5,5_0,5_4,5_0_1 +26400,2,63.0,0.0,9,112,700.0,0.0,0.0,0,75,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,2007.0,6,126421,1,1,0,0,1,,234.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1553.90257846892,700.0,28506.383654710364,0,5,1,2,68.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02455590328394155,28506.383654710364,8,4,8,8_0,8_2,8_0_0 +26401,1,53.0,270.0,2,111,222.0,426.0,0.0,0,55,404.99821479805496,0.0,378.5545206285976,1032.0,0.0,808.7627244223501,71,2,1,2,2,2,2,2,1,0,,2,,2,126422,2,1,0,1,1,384.0,0.0,286.0,32,1.0,1.0,4.0,2.0,1.5,2,2,388.353966724171,222.0,6767.863894139886,0,4,2,3,70.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.15248533601474779,4511.909262759924,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26402,2,55.0,0.0,5,111,560.0,0.0,0.0,85,55,1582.0242765549024,0.0,954.9123042883542,2060.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,5.0,1,,3,126423,2,1,2,0,1,,380.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,288.783286166092,560.0,27677.544597120468,6,1,0,1,80.0,9,7,3,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.07442856763436737,13838.772298560234,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +26403,2,40.0,0.0,2,111,366.0,379.0,0.0,34,21,0.0,0.0,624.1033988741744,790.0,62.351515142843446,719.53303416918,50,0,0,0,0,0,0,0,0,0,,2,,2,126424,2,1,0,1,1,,396.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1324.91763772152,366.0,69888.63354783456,1,1,1,2,74.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011303697896157787,29120.2639782644,8,4,8,8_0,8_3,8_0_1 +26404,2,62.0,0.0,7,111,288.0,,,0,78,0.0,0.0,,288.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,126425,2,2,0,0,2,,253.0,473.0,11,0.0,3.0,3.0,1.0,1.0,1,1,135.28321911267307,288.0,10170.18,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028318082865789986,10170.18,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +26405,2,70.0,0.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,511.56016301161833,485.0,0.0,0.0,71,2,2,2,2,1,2,2,1,2,60.0,2,,2,126426,2,1,0,1,1,468.0,320.0,427.0,12,1.0,6.0,3.0,1.0,1.0,1,1,247.344539969872,300.0,16709.44762678068,0,1,3,4,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.029025495685607076,16709.44762678068,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +26406,2,69.0,0.0,1,111,1295.0,150.0,0.0,75,72,1265.6194212439218,0.0,2208.2347036668193,2645.0,0.0,284.77560719096834,20,0,0,0,0,0,0,0,0,0,,1,,1,126427,2,1,1,0,2,,407.0,,41,0.0,3.0,10.0,2.0,1.5,2,2,949.10283130599,1295.0,82465.30661320897,5,5,0,1,300.0,5,4,9,1,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032074094047888184,54976.87107547265,10,5,10,10_1,10_2,10_1_0 +26407,2,54.0,0.0,1,211,1070.0,0.0,0.0,56,64,1476.555991451242,0.0,1824.5645814081054,2590.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,1,126428,2,1,2,0,1,,506.0,,43,3.0,3.0,6.0,3.0,2.0,3,3,1554.40515963779,1070.0,39893.28207377782,1,1,0,1,100.0,2,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06492321176307597,19946.64103688891,5,3,5,5_1,5_1,5_1_0 +26408,2,61.0,0.0,5,111,1550.0,0.0,0.0,75,33,0.0,0.0,2643.0608422266946,1550.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,126429,1,2,0,0,1,,0.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,419.199748218907,1550.0,39066.018115852865,5,1,0,1,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03967642659160635,26044.012077235242,7,4,7,7_0,7_3,7_0_0 +26409,2,62.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,126430,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1402.77627324047,300.0,16595.074289583034,0,5,0,1,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018077653330441208,16595.074289583034,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +26410,2,30.0,0.0,2,111,295.0,0.0,0.0,0,37,0.0,0.0,503.03416029475807,402.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,2,126431,2,2,0,1,2,167.0,0.0,612.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1286.64716049251,295.0,43447.72109364692,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00925249909272645,43447.72109364692,10,5,10,10_0,10_4,10_0_1 +26411,2,70.0,0.0,5,111,380.0,0.0,0.0,77,75,0.0,0.0,647.9762064813832,380.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,126432,1,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,779.641796785105,380.0,37962.37142355092,5,5,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010009912072148828,25308.247615700613,7,4,7,7_0,7_4,7_0_0 +26413,2,56.0,0.0,8,112,1600.0,0.0,0.0,75,62,0.0,0.0,2728.320869395298,1970.0,512.6680133967128,0.0,60,2,2,2,1,1,2,2,2,2,15.0,1,2000.0,6,126434,2,2,3,0,1,,720.0,584.0,42,3.0,0.0,4.0,4.0,2.5,4,4,1263.28681254831,1600.0,43955.227707888094,5,1,2,3,92.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04481833226054403,17582.09108315524,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +26414,2,75.0,0.0,2,111,240.0,,,0,78,0.0,0.0,,309.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,2,,2,126435,1,3,0,0,2,,0.0,365.0,11,0.0,3.0,2.0,1.0,1.0,1,1,131.8306194529527,240.0,18358.518625836357,0,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01683142340064069,18358.518625836357,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +26415,2,69.0,0.0,2,111,0.0,0.0,1730.0,78,78,0.0,0.0,1090.4506424175067,1790.0,83.13535352379125,2070.346615286898,71,0,0,0,0,0,0,0,0,0,,1,,2,126436,2,1,2,0,1,,200.0,,41,1.0,3.0,6.0,4.0,2.3,3,3,1434.3672611307,0.0,44421.15302051163,5,5,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040296117463980756,19313.544791526798,5,3,5,5_1,5_3,5_0_1 +26416,2,47.0,0.0,8,111,480.0,0.0,0.0,63,52,0.0,794.5963662061343,818.4962608185893,1140.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,1999.0,6,126437,2,1,1,0,1,,450.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,537.302618936442,480.0,45634.08152980088,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0249813289055798,25352.267516556043,7,4,7,7_1,7_4,7_0_0 +26417,2,23.0,0.0,1,111,1350.0,0.0,0.0,43,63,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,126438,1,1,1,0,1,,480.0,600.0,43,2.0,0.0,5.0,2.0,1.5,2,2,359.56296576965,1350.0,19823.583495616924,1,1,2,3,80.0,7,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06810070441090989,13215.722330411283,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +26418,2,60.0,0.0,9,112,1750.0,60.0,0.0,21,43,0.0,0.0,2984.100950901107,1810.0,0.0,113.91024287638734,33,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,126439,2,1,1,0,1,,290.0,,43,2.0,0.0,9.0,2.0,1.5,2,2,1511.03405133041,1750.0,83915.22787755019,1,1,1,2,143.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021569386698695108,55943.48525170013,10,5,10,10_1,10_0,10_0_0 +26419,2,75.0,0.0,5,111,139.0,100.0,0.0,0,77,0.0,0.0,237.0228755287165,239.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,3,126440,2,2,0,1,1,339.0,0.0,260.0,11,0.0,5.0,2.0,1.0,1.0,1,1,275.103890549778,139.0,15677.534071483838,0,5,2,3,45.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015244744416452686,15677.534071483838,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +26420,1,70.0,50.0,1,112,500.0,0.0,0.0,0,75,0.0,794.5963662061343,852.6002716860306,1130.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126441,2,1,1,0,1,,400.0,459.0,11,0.0,7.0,3.0,1.0,1.0,1,1,223.528125538783,500.0,14790.168305092491,0,5,2,3,80.0,6,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07640210555351983,14790.168305092491,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +26421,2,38.0,0.0,9,111,1000.0,,,52,52,0.0,0.0,,1242.0,335.31259254595807,,43,0,0,0,0,0,0,0,0,2,5.0,1,2004.0,6,126442,2,1,0,0,2,,420.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,107.40403528577478,1000.0,58532.716091543145,1,1,1,2,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021218902571641385,32518.175606412857,8,4,8,8_1,8_2,8_0_0 +26422,2,67.0,0.0,2,111,329.0,0.0,0.0,0,75,0.0,0.0,561.0109787694081,329.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,126443,1,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1575.54623679539,329.0,15999.683249674516,0,5,0,1,72.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02056290708171944,15999.683249674516,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +26423,2,75.0,0.0,2,111,0.0,0.0,0.0,78,74,1582.0242765549024,0.0,0.0,2254.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,1,,2,126444,1,2,3,0,2,,900.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,591.604087025609,0.0,35214.03027484107,5,5,0,1,75.0,10,8,1,1,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06400857789942856,23476.020183227378,6,3,6,6_1,6_4,6_0_1 +26424,2,41.0,0.0,1,111,170.0,0.0,0.0,0,67,0.0,0.0,289.8840923732504,170.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,40.0,2,,1,126445,2,2,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1055.78464150242,170.0,19138.56951562043,0,1,1,2,13.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008882586541342611,19138.56951562043,5,3,5,5_0,5_4,5_1_0 +26425,2,50.0,0.0,8,111,570.0,708.0,0.0,68,62,0.0,0.0,971.9643097220749,1278.0,0.0,1344.1408659413705,50,2,2,2,2,1,2,2,2,1,10.0,1,2000.0,6,126446,2,1,4,0,1,,528.0,687.0,43,2.0,5.0,5.0,3.0,1.8,2,2,644.787814495892,570.0,36150.51715937616,1,1,2,3,94.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03535219134945438,20083.620644097868,5,3,5,5_1,5_2,5_0_0 +26426,2,38.0,0.0,1,111,397.0,419.0,0.0,33,47,0.0,0.0,676.9646157187083,816.0,0.0,795.4731960867716,41,0,0,0,0,0,0,0,0,2,20.0,2,,1,126447,1,3,0,0,2,,276.0,669.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2043.18822804102,397.0,63104.89345356407,1,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012930851402204745,35058.274140868925,9,5,9,9_0,9_3,9_1_0 +26427,2,58.0,0.0,9,112,0.0,0.0,0.0,11,37,0.0,264.8654554020448,0.0,1619.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,7,2005.0,6,126448,1,3,0,0,2,,0.0,,43,2.0,2.0,2.0,2.0,1.5,2,2,1445.36808749143,0.0,41179.55528942423,1,1,0,1,56.0,4,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03931562613100373,27453.036859616153,7,4,7,7_1,7_0,7_0_0 +26428,2,66.0,0.0,1,112,500.0,2000.0,0.0,0,77,0.0,0.0,852.6002716860306,2500.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,1,126449,1,2,2,0,1,,450.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,3101.61055585748,500.0,17346.781709443665,0,5,0,1,120.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14411895196899774,11564.52113962911,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +26429,2,48.0,0.0,5,111,906.0,902.0,0.0,52,62,0.0,0.0,1544.9116922950875,1808.0,0.0,1712.4506512416897,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,126450,2,1,1,0,1,,812.0,,43,6.0,0.0,4.0,6.0,3.5,6,6,290.459163871829,906.0,119837.29413093993,1,1,1,2,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0150871230288669,34239.22689455427,9,5,9,9_1,9_3,9_0_0 +26430,2,21.0,0.0,7,211,80.0,,,84,69,0.0,0.0,,256.0,243.8637036697877,,50,2,2,2,2,1,2,2,2,0,,1,,5,126451,2,2,0,0,1,,196.0,,42,2.0,2.0,4.0,3.0,2.0,3,2,110.3979431438901,80.0,4713.273640434878,3,1,0,1,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.05431469070749301,2356.636820217439,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26431,1,45.0,29.0,2,111,0.0,0.0,0.0,68,52,0.0,0.0,0.0,851.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,126452,1,3,0,0,2,,645.0,454.0,43,2.0,0.0,5.0,4.0,2.3,3,2,1531.35495596631,0.0,35060.50733845732,1,1,2,3,117.0,6,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02427232417902155,15243.698842807531,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +26432,2,44.0,0.0,1,120,1129.0,0.0,0.0,46,64,0.0,0.0,1925.1714134670572,1129.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,10.0,1,,1,126453,2,1,1,0,1,,418.0,,43,2.0,3.0,5.0,5.0,2.5999999999999996,3,2,1231.56460171705,1129.0,63950.15074954449,1,1,1,2,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.01765437589696443,24596.211826747884,7,4,7,7_1,7_0,7_1_0 +26433,2,55.0,0.0,7,211,360.0,,,0,68,0.0,0.0,,400.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,126454,2,1,0,0,2,,160.0,580.0,12,1.0,2.0,3.0,1.0,1.0,1,1,38.06921608911572,360.0,12232.50274397355,0,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03269976785388939,12232.50274397355,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +26434,2,73.0,0.0,2,111,513.0,100.0,0.0,75,74,0.0,0.0,874.7678787498674,613.0,0.0,189.8504047939789,44,0,0,0,0,0,0,0,0,0,,2,,2,126455,2,1,0,1,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1832.2245821861,513.0,64525.80415522592,5,5,0,1,116.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009500075326846638,43017.20277015061,9,5,9,9_0,9_3,9_0_1 +26435,2,69.0,0.0,5,111,716.0,0.0,0.0,43,31,0.0,0.0,1220.9235890543957,716.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,,3,126456,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,786.745264041394,716.0,101372.53420637113,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007063057124944602,67581.68947091409,10,5,10,10_0,10_4,10_0_0 +26436,0,37.0,0.0,7,111,0.0,0.0,0.0,55,37,0.0,0.0,0.0,931.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,126457,2,1,1,0,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1290.67260982625,0.0,58309.94382452472,1,1,5,0,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015966401936549773,27766.63991644034,7,4,7,7_1,7_3,7_0_0 +26437,0,55.0,0.0,6,111,550.0,0.0,0.0,56,52,0.0,0.0,937.8602988546337,650.0,138.5589225396521,0.0,71,2,1,2,1,1,2,2,2,2,5.0,2,,4,126458,1,2,0,1,1,,0.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,709.198399325006,550.0,26753.839423700414,1,1,5,0,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.024295578279661226,17835.89294913361,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +26438,0,65.0,0.0,1,111,300.0,340.0,0.0,85,56,0.0,0.0,511.56016301161833,640.0,0.0,645.4913762995283,43,0,0,0,0,0,0,0,0,1,5.0,2,,1,126459,2,2,0,1,1,,0.0,,42,1.0,3.0,3.0,3.0,1.8,2,2,305.36799325118,300.0,31187.64674551982,6,1,5,0,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020520945527637075,17326.47041417768,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +26439,1,40.0,406.0,5,111,0.0,0.0,1300.0,85,63,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,126460,1,2,0,0,1,,0.0,650.0,42,1.0,0.0,5.0,4.0,2.1,2,2,816.240857126864,0.0,16240.85761716471,6,1,2,3,80.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08004503399044952,7733.741722459385,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26440,2,38.0,0.0,1,111,1661.0,0.0,0.0,0,56,0.0,0.0,2832.3381025409935,1693.0,44.33885521268867,0.0,43,2,2,2,2,1,2,2,2,2,35.0,2,,1,126461,1,2,0,0,1,,220.0,434.0,12,1.0,1.0,3.0,1.0,1.0,1,1,616.366587287753,1661.0,19949.99468145803,0,1,2,3,50.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.08486217801218324,19949.99468145803,5,3,5,5_0,5_2,5_1_0 +26441,2,42.0,0.0,1,111,350.0,0.0,0.0,0,31,0.0,0.0,596.8201901802214,350.0,0.0,0.0,10,1,2,2,2,1,2,2,2,1,20.0,2,,1,126462,2,1,0,1,1,718.0,0.0,1200.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1089.61250200052,350.0,75122.4794117013,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.004659058150648353,75122.4794117013,10,5,10,10_0,10_4,10_1_0 +26442,1,45.0,138.0,6,111,570.0,,,0,56,0.0,0.0,,610.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,0,,2,,4,126463,2,1,0,0,2,,142.0,301.0,32,1.0,2.0,3.0,2.0,1.5,2,1,149.08741874650553,570.0,19914.4,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.030631101112762623,13276.266666666668,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +26443,2,87.0,0.0,6,111,960.0,,,77,78,0.0,0.0,,1248.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,,4,126464,2,1,0,0,2,,3446.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,52.32125552644095,960.0,11664.0,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10699588477366255,7776.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26444,1,30.0,230.0,7,111,530.0,0.0,0.0,0,43,0.0,0.0,903.7562879871924,530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,5,126465,2,1,0,0,1,,0.0,444.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2395.41679278557,530.0,10948.079500918617,0,1,2,3,30.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.048410317074837596,10948.079500918617,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +26445,2,58.0,0.0,6,111,720.0,,,75,42,0.0,0.0,,895.0,242.47811444439117,,42,0,0,0,0,0,0,0,0,0,,1,,4,126466,2,1,0,0,2,,720.0,,42,1.0,1.0,5.0,4.0,2.5,4,3,98.5552339083418,720.0,76565.84969464576,5,1,0,1,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01168928449915168,30626.339877858303,8,4,8,8_1,8_2,8_0_0 +26446,2,67.0,0.0,2,111,200.0,1000.0,0.0,77,75,0.0,132.4327277010224,341.04010867441224,1300.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,2,126467,2,2,2,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,335.185117962972,200.0,46759.857258105425,5,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02780162464620561,31173.238172070283,8,4,8,8_1,8_3,8_0_1 +26447,2,36.0,0.0,6,211,1160.0,0.0,0.0,0,42,0.0,0.0,1978.032630311591,1160.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,126468,2,2,2,0,1,,149.0,571.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1235.7240563899,1160.0,25936.090858823893,0,1,2,3,75.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04472532141848773,25936.090858823893,7,4,7,7_1,7_1,7_0_0 +26448,2,64.0,0.0,7,112,500.0,,,0,52,0.0,0.0,,620.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,3,60.0,1,,5,126469,2,2,0,0,2,,220.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,116.17410495812159,500.0,16886.05106382979,0,1,0,1,96.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03671669578970128,16886.05106382979,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +26449,2,86.0,0.0,5,111,450.0,0.0,0.0,77,72,0.0,0.0,767.3402445174275,450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,126470,2,1,0,2,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,385.812920117343,450.0,22934.639360624315,5,5,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019620975630974577,15289.759573749543,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +26450,2,36.0,0.0,1,111,575.0,0.0,0.0,0,46,0.0,0.0,980.4903124389351,575.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,1,126471,1,3,0,0,2,,0.0,580.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1323.76772179029,575.0,23615.530179464204,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.024348384119701597,23615.530179464204,6,3,6,6_0,6_4,6_1_0 +26451,2,39.0,0.0,2,111,480.0,1000.0,0.0,47,43,0.0,0.0,818.4962608185893,1480.0,0.0,1898.504047939789,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,126472,2,2,4,0,1,,300.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,707.522054456478,480.0,54308.731322118576,1,1,1,2,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02725160326839072,25861.300629580273,7,4,7,7_1,7_2,7_0_1 +26452,2,34.0,0.0,2,111,613.0,0.0,0.0,0,46,0.0,0.0,1045.2879330870735,613.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,20.0,2,,2,126473,2,1,0,0,1,154.0,0.0,170.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1472.20763040771,613.0,26735.0,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02292874509070507,26735.0,7,4,7,7_0,7_4,7_0_1 +26453,2,53.0,0.0,1,111,0.0,0.0,3000.0,43,42,0.0,0.0,1890.9548712442313,3000.0,0.0,3590.196442694042,10,2,2,2,2,1,2,2,2,1,20.0,1,,1,126474,2,2,3,0,1,,922.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,409.500307850222,0.0,55721.21008400747,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.05383946248613558,18573.736694669158,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +26454,1,33.0,164.0,2,111,0.0,0.0,1598.0,42,34,0.0,0.0,1007.2486280827605,1598.0,0.0,1912.37797180836,10,2,2,2,2,1,2,2,2,3,15.0,2,,2,126475,2,2,0,0,1,,518.0,594.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1448.71914413143,0.0,29147.630966499026,1,1,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05482435268364243,19431.753977666016,5,3,5,5_0,5_3,5_0_1 +26455,1,38.0,104.0,5,111,500.0,0.0,0.0,0,68,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,2,2,2,2,2,2,2,1,3,10.0,2,,3,126476,2,1,0,1,1,359.0,0.0,339.0,32,1.0,0.0,3.0,2.0,1.3,1,1,242.936838958087,500.0,24282.68529138643,0,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.020590803446987813,18678.98868568187,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +26456,2,34.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,779.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,3,126477,1,1,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,837.573681868687,0.0,33304.25935500539,0,1,1,2,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02339040156084185,25618.66104231184,7,4,7,7_0,7_4,7_0_0 +26457,1,39.0,370.0,5,111,0.0,,,0,68,0.0,0.0,,295.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,1,10.0,1,,3,126478,1,2,0,0,2,,298.0,400.0,32,1.0,0.0,3.0,2.0,1.3,1,1,180.86036538230962,0.0,5682.260439623695,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05191595899809482,4370.969568941304,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +26458,2,49.0,0.0,2,111,0.0,0.0,660.0,0,45,0.0,0.0,416.0100716737309,660.0,0.0,789.8432173926894,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,126479,1,2,0,1,2,,200.0,514.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1482.78557864565,0.0,34849.69449041096,0,1,2,3,115.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018938473052657657,34849.69449041096,9,5,9,9_0,9_3,9_0_1 +26459,1,45.0,122.0,8,111,360.0,920.0,0.0,0,52,0.0,0.0,613.872195613942,1280.0,0.0,1746.6237241046058,42,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,126480,2,1,1,0,1,,240.0,406.0,32,1.0,0.0,3.0,2.0,1.5,2,1,70.5420988087665,360.0,21103.053861754386,0,1,2,3,83.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.060654728381268896,14068.702574502924,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +26460,2,81.0,0.0,1,111,150.0,2800.0,0.0,0,77,0.0,0.0,255.78008150580916,2950.0,0.0,5315.811334231409,71,0,0,0,0,0,0,0,0,0,,1,,1,126481,2,3,4,0,2,,300.0,350.0,11,0.0,2.0,6.0,1.0,1.0,1,1,368.1198725027,150.0,22523.22027237296,0,5,2,3,200.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13097594235307805,22523.22027237296,6,3,6,6_1,6_3,6_1_0 +26461,2,64.0,0.0,1,111,600.0,0.0,0.0,0,77,0.0,0.0,1023.1203260232367,2076.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,126482,2,2,0,0,1,,130.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,413.632682857262,600.0,18728.82978718732,0,5,0,1,46.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.11084515282531018,18728.82978718732,5,3,5,5_0,5_3,5_1_0 +26462,2,67.0,0.0,5,111,530.0,0.0,0.0,56,78,0.0,0.0,903.7562879871924,530.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,126483,2,1,0,1,1,720.0,0.0,410.0,42,1.0,4.0,3.0,4.0,2.3,3,3,691.39552848115,530.0,23548.166578132772,1,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02250706008221324,10238.333294840337,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +26463,2,65.0,0.0,5,111,750.0,670.0,0.0,0,21,0.0,0.0,1278.9004075290459,1420.0,0.0,1271.9977121196587,71,0,0,0,0,0,0,0,0,2,2.0,1,,3,126484,2,1,1,0,1,,280.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1098.32663979464,750.0,51146.09832980445,0,1,0,1,100.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027763603605566154,51146.09832980445,10,5,10,10_1,10_2,10_0_0 +26464,2,37.0,0.0,1,111,475.0,0.0,0.0,0,35,0.0,0.0,809.9702581017291,475.0,0.0,0.0,10,2,2,2,1,2,2,2,2,3,45.0,2,,1,126485,2,2,0,0,1,,0.0,708.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1181.97729147428,475.0,28451.05994803211,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01669533581060324,28451.05994803211,8,4,8,8_0,8_4,8_1_0 +26465,2,70.0,0.0,1,111,2000.0,100.0,0.0,71,71,4218.731404146406,238.3789098618403,3410.4010867441225,6280.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,0,,1,,1,126486,1,2,1,0,1,,325.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,636.112550231814,2000.0,46240.346626333885,5,5,0,1,200.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13581213070802411,30826.897750889257,8,4,8,8_1,8_4,8_1_0 +26466,2,55.0,0.0,5,111,600.0,100.0,0.0,0,56,0.0,0.0,1023.1203260232367,700.0,0.0,189.8504047939789,50,2,2,2,2,1,2,2,2,3,45.0,2,,3,126487,1,1,0,1,1,660.0,0.0,376.0,32,3.0,0.0,4.0,3.0,2.0,3,3,201.8950246772,600.0,26531.038668842935,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,0.02638419131407976,13265.519334421468,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +26467,2,20.0,0.0,1,221,0.0,0.0,0.0,0,62,0.0,0.0,0.0,2043.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,1,126488,1,3,2,0,2,,472.0,350.0,22,2.0,0.0,4.0,2.0,1.5,2,2,578.274429495543,0.0,26779.400893594913,0,1,2,3,65.0,1,2,8,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07628998154654923,17852.933929063274,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +26468,1,21.0,351.0,2,211,1000.0,0.0,0.0,0,68,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,1,45.0,2,,2,126489,2,3,0,0,1,,400.0,560.0,32,1.0,1.0,3.0,2.0,1.3,1,1,3203.14719392042,1000.0,8114.557463007737,0,1,2,3,85.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13062942801653424,6241.967279236721,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +26469,2,83.0,0.0,2,111,822.0,,,77,77,0.0,0.0,,972.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,126490,2,1,0,0,2,,459.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,94.13225704532992,822.0,41762.559239455615,5,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02327443570751509,27841.706159637077,7,4,7,7_1,7_2,7_0_1 +26470,2,51.0,0.0,1,111,660.0,1476.0,0.0,0,56,0.0,0.0,1125.4323586255605,2136.0,0.0,2802.1919747591287,60,2,2,1,2,2,1,2,2,2,20.0,1,,1,126491,2,1,1,0,1,,408.0,,32,1.0,0.0,9.0,2.0,1.5,2,1,402.611677217471,660.0,22778.322990488403,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09377336518109496,15185.548660325601,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +26471,2,32.0,0.0,1,111,540.0,133.0,0.0,0,37,0.0,0.0,920.8082934209131,673.0,0.0,252.50103837599193,10,0,0,0,0,0,0,0,0,3,50.0,2,,1,126492,1,1,0,1,2,,0.0,675.0,22,2.0,0.0,2.0,2.0,1.5,2,2,913.339093949843,540.0,33063.5859301297,0,1,3,4,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020354718977614535,22042.39062008647,6,3,6,6_0,6_4,6_1_0 +26472,0,45.0,0.0,2,111,240.0,,,0,63,0.0,0.0,,263.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,126493,2,2,0,0,2,,360.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,157.4168360896384,240.0,20728.55946083287,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012687808841562053,20728.55946083287,5,3,5,5_1,5_2,5_0_1 +26473,2,64.0,0.0,5,120,530.0,800.0,0.0,75,78,0.0,0.0,903.7562879871924,1330.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,3,126494,2,2,1,0,1,,286.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1201.87380364355,530.0,33248.83732847824,5,5,0,1,110.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0400013987514935,22165.89155231883,6,3,6,6_1,6_0,6_0_0 +26474,1,55.0,271.0,2,111,294.0,348.0,0.0,0,55,0.0,0.0,501.328959751386,642.0,0.0,660.6794086830465,71,0,0,0,0,0,0,0,0,0,,2,,2,126495,2,3,0,1,1,450.0,357.0,260.0,22,2.0,2.0,3.0,2.0,1.5,2,2,260.687250842815,294.0,22002.29547055821,0,4,2,3,60.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02917877368109502,14668.196980372139,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +26475,2,41.0,0.0,2,111,470.0,0.0,0.0,0,56,0.0,0.0,801.4442553848687,502.0,44.33885521268867,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,126496,2,1,0,1,1,720.0,210.0,244.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1481.47960616683,470.0,16988.531268537154,0,1,2,3,45.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029549346677761754,16988.531268537154,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +26476,2,53.0,0.0,9,111,890.0,,,0,46,0.0,0.0,,890.0,0.0,,71,0,0,0,0,0,0,0,0,2,25.0,2,2010.0,6,126497,2,2,0,0,2,,1200.0,1289.0,32,1.0,1.0,4.0,2.0,1.5,2,2,177.20333369663055,890.0,35911.516236557654,0,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024783136254603103,23941.01082437177,6,3,6,6_0,6_2,6_0_0 +26477,2,39.0,0.0,2,111,0.0,0.0,0.0,56,31,0.0,0.0,0.0,563.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,,2,126498,2,1,0,0,1,,0.0,512.0,43,2.0,0.0,1.0,2.0,1.5,2,2,972.160684229519,0.0,29294.734065928267,1,1,2,3,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01921847109903642,19529.822710618846,5,3,5,5_0,5_4,5_0_1 +26478,2,49.0,0.0,1,111,260.0,1175.0,0.0,0,43,0.0,0.0,443.3521412767359,1435.0,0.0,2230.742256329252,33,2,2,2,2,1,2,2,2,1,10.0,2,,1,126499,2,2,0,0,1,,126.0,,22,1.0,0.0,2.0,2.0,1.5,2,2,749.469623518885,260.0,60853.309953977194,0,1,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.02358129740330111,40568.87330265146,9,5,9,9_0,9_4,9_1_0 +26479,2,38.0,0.0,1,111,0.0,0.0,0.0,43,37,0.0,0.0,0.0,783.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,126500,2,1,2,0,1,,233.0,1045.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1433.0277533654,0.0,56391.77547693917,1,1,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013885003502331643,26853.22641759008,7,4,7,7_1,7_3,7_1_0 +26480,2,50.0,0.0,2,111,500.0,,,0,22,0.0,0.0,,684.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,2,126501,2,2,0,0,2,,600.0,,32,2.0,0.0,5.0,3.0,2.0,3,3,102.43348382873418,500.0,8810.863911093631,0,1,0,1,79.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07763143397763589,4405.4319555468155,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +26481,2,72.0,0.0,5,111,400.0,960.0,0.0,86,78,0.0,0.0,682.0802173488245,1360.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,0,,1,,3,126502,2,1,2,0,1,,450.0,,41,1.0,4.0,5.0,4.0,2.5,4,4,205.504456580045,400.0,15007.917052260085,6,5,0,1,87.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09061883772839707,6003.1668209040345,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26482,2,40.0,0.0,2,111,60.0,240.0,0.0,0,34,0.0,0.0,102.31203260232367,300.0,0.0,455.6409715055494,10,2,1,2,2,1,2,2,2,0,,2,,2,126503,1,1,0,1,1,192.0,0.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1824.57998116518,60.0,3969.0504315830294,0,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0755848294626851,3969.0504315830294,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +26483,2,21.0,0.0,1,120,0.0,0.0,0.0,54,63,0.0,0.0,0.0,3541.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,5.0,1,,1,126504,2,1,2,0,1,,339.0,505.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1912.34816243474,0.0,33584.46763503116,1,1,2,3,90.0,0,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10543564478915447,22389.64509002077,6,3,6,6_1,6_1,6_1_0 +26484,2,69.0,0.0,1,111,720.0,370.0,0.0,77,77,0.0,132.4327277010224,1227.744391227884,1190.0,0.0,702.446497737722,70,0,0,0,0,0,0,0,0,0,,1,,1,126505,2,1,2,0,1,,624.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,418.752476203823,720.0,34552.858234961874,5,5,0,1,85.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03443998733499602,17276.429117480937,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +26485,2,69.0,0.0,5,111,663.0,379.0,0.0,0,75,0.0,0.0,1130.5479602556766,1042.0,0.0,719.53303416918,50,0,0,0,0,0,0,0,0,0,,1,,3,126506,2,2,5,0,1,,184.0,543.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1742.98437882724,663.0,24456.446528528668,0,5,2,3,120.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042606353248600425,24456.446528528668,7,4,7,7_1,7_3,7_0_0 +26486,1,26.0,302.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,977.0,0.0,0.0,50,2,1,2,2,1,2,2,2,0,,2,,1,126507,1,3,0,1,2,300.0,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1113.80723250537,0.0,13315.748358121384,0,4,2,3,19.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07337176805418673,13315.748358121384,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +26487,2,51.0,0.0,7,111,580.0,0.0,0.0,63,54,0.0,304.5952737123515,989.0163151557955,1660.0,1177.7508415870427,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,126508,1,1,3,0,1,,290.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1258.87933271336,580.0,34813.61893285681,1,1,1,2,95.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047682488947832585,23209.079288571204,6,3,6,6_1,6_2,6_0_0 +26488,2,54.0,0.0,9,111,520.0,,,85,21,0.0,0.0,,610.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,126509,2,1,0,0,2,,680.0,,42,1.0,0.0,4.0,4.0,2.5,4,2,251.3653238623986,520.0,131254.85581261577,6,1,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004647447107563459,52501.94232504631,10,5,10,10_1,10_2,10_0_0 +26489,1,46.0,447.0,1,111,785.0,182.0,0.0,56,54,0.0,0.0,1338.582426547068,967.0,0.0,345.5277367250416,71,2,2,2,2,2,2,2,1,2,20.0,2,,1,126510,1,1,0,1,2,707.0,1100.0,515.0,43,3.0,0.0,4.0,7.0,3.3999999999999995,4,3,406.057004472385,785.0,44494.78739736836,1,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.02173288280633954,13086.702175696579,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +26490,1,28.0,270.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1945.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,80.0,2,,2,126511,2,1,0,1,1,594.0,0.0,299.0,12,1.0,0.0,2.0,1.0,1.0,1,1,336.320373670436,0.0,9454.578655982266,0,4,2,3,54.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.20572043141968316,9454.578655982266,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26491,2,91.0,0.0,1,111,558.0,,,0,86,0.0,0.0,,602.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,1,126512,1,3,0,0,2,,180.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,78.3658136899747,558.0,9704.479704657097,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.062033207170406605,9704.479704657097,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +26492,1,24.0,305.0,1,111,320.0,0.0,0.0,0,35,0.0,0.0,545.6641738790596,320.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,30.0,2,,1,126513,2,3,0,0,1,,0.0,870.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1216.95214347531,320.0,19409.05877387747,0,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.016487146735352565,19409.05877387747,5,3,5,5_0,5_4,5_1_0 +26493,2,62.0,0.0,6,400,176.0,,,0,86,0.0,0.0,,446.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,4,126514,2,1,0,0,1,,460.0,,21,1.0,4.0,4.0,2.0,1.5,2,2,107.28044655781919,176.0,12119.454504322495,0,6,0,1,73.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03680033617362322,8079.636336214997,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +26494,2,58.0,0.0,6,111,2133.0,0.0,0.0,54,47,0.0,0.0,3637.1927590126065,2133.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126515,1,1,2,0,1,,390.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,534.710629498853,2133.0,59173.29288332327,1,1,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03604666727278144,39448.86192221552,9,5,9,9_1,9_4,9_0_0 +26495,1,41.0,413.0,7,111,401.0,,,0,81,0.0,0.0,,527.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,126516,2,1,0,0,2,,135.0,550.0,32,1.0,1.0,4.0,3.0,1.6,1,1,94.17688763382176,401.0,9764.589961451138,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05397052022465891,6102.868725906961,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +26496,1,39.0,522.0,7,111,800.0,,,0,56,0.0,0.0,,968.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,2,,5,126517,2,1,0,0,1,,1200.0,800.0,32,1.0,0.0,4.0,5.0,2.8,4,2,99.8706729113674,800.0,13652.356360167412,0,4,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07090351104694793,4875.841557202648,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +26497,2,75.0,0.0,2,111,300.0,1850.0,0.0,78,78,0.0,0.0,511.56016301161833,2150.0,0.0,3512.2324886886095,71,0,0,0,0,0,0,0,0,0,,1,,2,126518,2,1,1,0,1,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1658.04712066527,300.0,49905.716246631346,5,5,0,1,85.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0430812372148877,33270.47749775423,8,4,8,8_1,8_2,8_0_1 +26498,2,71.0,0.0,2,111,510.0,,,0,78,0.0,0.0,,648.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,126519,2,1,0,0,2,,720.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,101.21658591438154,510.0,15699.457355021,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04127531196438179,15699.457355021,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +26499,2,66.0,0.0,6,111,230.0,,,0,72,0.0,0.0,,482.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,126520,2,2,0,0,2,,160.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,72.0413321392731,230.0,2282.494318517962,0,5,0,1,137.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.21117248620928253,2282.494318517962,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26500,2,35.0,0.0,2,111,0.0,0.0,0.0,46,64,0.0,0.0,0.0,2043.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,126521,2,2,1,0,1,,480.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,823.420488628891,0.0,59786.38449755848,1,1,1,2,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03417165993845021,28469.706903599275,8,4,8,8_1,8_4,8_0_1 +26501,2,85.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1894.0,0.0,0.0,41,2,2,1,2,1,2,2,2,0,,2,,1,126522,2,1,0,1,1,,0.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,830.826902289088,0.0,46564.00892140848,0,5,0,1,129.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.04067519193196456,31042.67261427232,8,4,8,8_0,8_4,8_1_0 +26502,2,46.0,0.0,7,111,960.0,,,43,43,0.0,0.0,,960.0,0.0,,33,0,0,0,0,0,0,0,0,0,,2,,5,126523,2,1,0,0,1,,250.0,845.0,43,2.0,0.0,3.0,4.0,2.1,2,2,148.65457953328786,960.0,68435.65574601071,1,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014027775280811287,32588.40749810034,8,4,8,8_0,8_2,8_0_0 +26503,0,67.0,0.0,6,211,300.0,,,0,69,0.0,0.0,,438.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,126524,2,3,0,0,2,,0.0,,32,2.0,2.0,2.0,2.0,1.5,2,2,47.337206864329325,300.0,14024.999999999998,0,4,5,0,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031229946524064175,9349.999999999998,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26504,2,73.0,0.0,1,111,900.0,0.0,0.0,0,77,0.0,0.0,1534.680489034855,900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,126525,2,2,0,0,1,,150.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,403.813909024067,900.0,8914.094889102187,0,5,0,1,50.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.10096369975826525,8914.094889102187,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +26505,2,51.0,0.0,2,111,700.0,0.0,0.0,43,34,770.9731641077557,803.8666571452059,1193.6403803604428,2138.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,2,126526,2,3,1,0,1,,400.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1431.23491729769,700.0,53256.02468005728,1,1,1,2,140.0,6,5,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04014569267691913,35504.01645337152,9,5,9,9_1,9_2,9_0_1 +26506,2,48.0,0.0,6,111,530.0,600.0,0.0,37,47,0.0,105.94618216081791,903.7562879871924,1210.0,0.0,1139.1024287638734,31,2,2,2,2,1,2,2,2,2,30.0,1,,4,126527,2,1,2,0,1,,500.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,764.610711594428,530.0,115380.49652852747,4,1,1,2,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.010487041019977161,57690.24826426373,10,5,10,10_1,10_4,10_0_0 +26507,2,47.0,0.0,7,111,280.0,1040.0,0.0,45,47,0.0,0.0,477.4561521441771,1320.0,0.0,1974.4442098573807,44,0,0,0,0,0,0,0,0,3,20.0,2,,5,126528,2,1,0,0,1,,0.0,676.0,43,2.0,0.0,5.0,4.0,2.5,4,3,725.682085893646,280.0,67122.2434716339,1,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019665612049421986,26848.89738865356,7,4,7,7_0,7_4,7_0_0 +26508,2,33.0,0.0,7,400,0.0,,,0,81,0.0,0.0,,180.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,5,126529,2,1,0,0,2,,0.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,68.54001740184702,0.0,13230.074558376726,0,4,0,1,58.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013605365503101537,7350.041421320403,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +26509,1,47.0,279.0,2,111,0.0,0.0,0.0,85,64,0.0,0.0,0.0,775.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126530,2,3,0,1,1,720.0,0.0,436.0,42,1.0,1.0,4.0,7.0,3.3999999999999995,4,3,297.129582883692,0.0,36355.40783799279,6,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021317323778997616,10692.767011174352,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +26510,2,56.0,0.0,5,111,400.0,720.0,0.0,67,34,0.0,0.0,682.0802173488245,1120.0,0.0,1366.922914516648,20,2,2,1,2,2,2,2,1,3,25.0,2,,3,126531,2,2,0,1,1,743.0,0.0,638.0,43,2.0,2.0,4.0,3.0,2.0,3,3,1856.8150147891,400.0,34450.72668995683,1,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.03251019956936077,17225.363344978414,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +26511,2,47.0,0.0,1,300,720.0,0.0,0.0,56,47,1160.1511361402618,264.8654554020448,1227.744391227884,2120.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,126532,2,1,1,0,1,,252.0,,43,3.0,1.0,6.0,4.0,2.5,4,3,1590.89849412421,720.0,74885.25221673252,1,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028309980099476818,29954.10088669301,8,4,8,8_1,8_0,8_1_0 +26512,2,45.0,0.0,6,111,360.0,0.0,0.0,0,42,0.0,0.0,613.872195613942,1554.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,3.0,2,,4,126533,2,1,0,1,1,,680.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,391.12817660076,360.0,49988.09983944996,0,1,0,1,103.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03108739890076004,33325.39989296664,8,4,8,8_0,8_3,8_0_0 +26513,2,51.0,0.0,8,111,847.0,1091.0,0.0,65,33,0.0,66.2163638505112,1444.3048602361357,1988.0,0.0,2071.26791630231,10,1,2,2,2,1,2,2,2,2,30.0,1,2003.0,6,126534,2,1,1,0,1,,293.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,1125.51911116952,847.0,62887.017843736474,1,1,0,1,160.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03161224793549348,31443.508921868237,8,4,8,8_1,8_3,8_0_0 +26514,2,28.0,0.0,9,111,0.0,,,43,34,0.0,0.0,,193.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,2012.0,6,126535,2,1,0,0,2,,391.0,950.0,43,2.0,0.0,3.0,3.0,1.8,2,2,264.2505571988145,0.0,53116.0,4,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0036335567437307025,29508.888888888887,8,4,8,8_0,8_2,8_0_0 +26515,2,45.0,0.0,2,111,360.0,200.0,0.0,0,46,0.0,0.0,613.872195613942,560.0,0.0,379.7008095879578,42,0,0,0,0,0,0,0,0,2,35.0,2,,2,126536,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,904.120972674854,360.0,28236.932740153454,0,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01983218238161078,18824.62182676897,5,3,5,5_0,5_4,5_0_1 +26516,1,31.0,300.0,7,111,420.0,,,0,54,0.0,0.0,,466.0,63.73710436823996,,43,0,0,0,0,0,0,0,0,0,,2,,5,126537,2,2,0,0,2,,520.0,326.0,32,1.0,0.0,3.0,3.0,1.6,1,1,148.46320417341917,420.0,8818.055024875424,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05284612067915547,5511.28439054714,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26517,2,76.0,0.0,2,111,540.0,,,0,78,0.0,0.0,,640.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,2,126538,2,2,0,0,2,,400.0,,21,1.0,5.0,4.0,2.0,1.5,2,2,74.27785963352962,540.0,9386.762237762237,0,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06818112399026452,6257.841491841492,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +26518,0,82.0,0.0,2,111,0.0,,,0,78,0.0,0.0,,144.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,3,,2,126539,2,2,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,97.15653917276066,0.0,10923.842105263146,0,5,5,0,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013182175155261563,10923.842105263146,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +26519,1,80.0,112.0,2,111,254.0,0.0,0.0,0,77,0.0,0.0,433.12093801650354,254.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,126540,2,1,0,1,1,738.0,0.0,478.0,11,0.0,5.0,2.0,1.0,1.0,1,1,580.365897613482,254.0,11354.999212335122,0,5,2,3,58.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022369001992010324,11354.999212335122,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +26521,2,70.0,0.0,6,111,756.0,0.0,0.0,0,74,0.0,397.2981831030672,1289.1316107892783,1056.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,126542,2,1,2,0,1,,340.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1984.54373554264,756.0,48051.52482060371,0,5,0,1,110.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02197640977976217,48051.52482060371,10,5,10,10_1,10_2,10_0_0 +26522,1,60.0,158.0,7,111,1220.0,0.0,0.0,52,78,0.0,0.0,2080.344662913915,1220.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,126543,1,1,0,0,1,,0.0,440.0,42,2.0,0.0,3.0,4.0,2.5,4,4,683.142596063427,1220.0,42780.40465444021,1,7,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02851772931683514,17112.161861776083,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +26523,2,62.0,0.0,1,111,500.0,620.0,0.0,0,77,0.0,0.0,852.6002716860306,1120.0,0.0,1177.072509722669,60,0,0,0,0,0,0,0,0,0,,2,,1,126544,2,1,0,0,1,,0.0,448.0,21,1.0,2.0,3.0,2.0,1.5,2,2,913.064854667698,500.0,23665.737165769326,0,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.047325802367990215,15777.158110512884,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +26524,2,55.0,0.0,6,111,2350.0,650.0,0.0,53,43,0.0,0.0,4007.221276924344,3000.0,0.0,1234.027631160863,33,0,0,0,0,0,0,0,0,2,150.0,1,,4,126545,1,1,1,0,1,,360.0,,43,2.0,1.0,5.0,4.0,2.5,4,4,175.500681229059,2350.0,61601.125744820114,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048700408697519015,24640.450297928044,7,4,7,7_1,7_4,7_0_0 +26525,2,74.0,0.0,7,112,1900.0,0.0,0.0,0,77,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,126546,2,1,1,0,1,,400.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,463.293950256359,1900.0,18969.971969033075,0,5,0,1,120.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1001582924372052,18969.971969033075,5,3,5,5_1,5_1,5_0_0 +26526,2,38.0,0.0,1,211,800.0,1600.0,0.0,46,46,0.0,0.0,1364.160434697649,2400.0,0.0,3037.6064767036623,31,0,0,0,0,0,0,0,0,0,,1,,1,126547,2,1,4,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1124.88602808924,800.0,28026.99057142262,1,1,0,1,180.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08563174108486449,11677.912738092758,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +26527,2,71.0,0.0,5,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,126548,2,1,0,0,2,,355.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,3477.60066019593,300.0,31706.043626417202,0,5,0,1,145.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009461918476326154,31706.043626417202,8,4,8,8_0,8_3,8_0_0 +26529,2,65.0,0.0,1,111,3293.0,0.0,0.0,75,74,0.0,66.2163638505112,5615.225389324198,3343.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,126550,2,1,2,0,1,,581.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,535.45039284893,3293.0,234921.56171226018,5,5,1,2,185.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014230281697576227,156614.37447484012,10,5,10,10_1,10_4,10_1_0 +26530,1,63.0,108.0,5,111,480.0,90.0,0.0,77,86,0.0,0.0,818.4962608185893,570.0,0.0,170.865364314581,50,2,1,2,2,2,2,2,1,0,,2,,3,126551,2,1,0,1,1,,80.0,221.0,41,0.0,1.0,2.0,2.0,1.5,2,2,322.085633452374,480.0,12309.90255995297,7,5,2,3,45.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04630418455580185,8206.601706635314,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26531,2,46.0,0.0,1,111,0.0,0.0,0.0,62,47,0.0,0.0,0.0,1060.0,249.40606057137379,0.0,50,2,2,2,1,2,2,2,2,2,2.0,1,,1,126552,2,2,4,0,1,,136.0,92.0,43,2.0,0.0,3.0,3.0,2.0,3,2,2083.49792637333,0.0,40154.77877753041,1,1,2,3,80.0,6,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02639785430951369,20077.389388765205,5,3,5,5_1,5_2,5_1_0 +26532,2,50.0,0.0,1,111,340.0,1065.0,0.0,75,38,0.0,0.0,579.7681847465008,1405.0,0.0,2021.9068110558753,20,0,0,0,0,0,0,0,0,3,35.0,2,,1,126553,2,1,0,0,1,,0.0,828.0,42,1.0,0.0,3.0,2.0,1.5,2,2,564.351664450072,340.0,56496.31092371558,5,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02486888041056536,37664.20728247705,9,5,9,9_0,9_4,9_1_0 +26533,1,23.0,370.0,1,111,0.0,0.0,0.0,55,53,0.0,0.0,0.0,815.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,,1,126554,2,2,1,0,2,,522.0,470.0,43,2.0,0.0,3.0,3.0,1.8,2,2,284.149211046814,0.0,15551.218490491588,4,1,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05240746893874019,8639.565828050881,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +26534,1,42.0,377.0,1,111,450.0,0.0,0.0,0,85,0.0,377.4332739479138,767.3402445174275,1095.0,498.81212114274757,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,126555,1,2,3,0,1,,309.0,580.0,31,0.0,0.0,5.0,2.0,1.3,1,1,614.359906442623,450.0,8867.183750658067,0,6,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,1,0,0,1,0.1234890389994158,6820.910577429282,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +26535,2,29.0,0.0,1,111,1200.0,0.0,0.0,85,62,3359.164880551576,0.0,2046.2406520464733,4565.0,249.40606057137379,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,126556,2,1,3,0,1,,1200.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,378.707346597254,1200.0,40603.12453627476,6,1,1,2,80.0,7,6,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1124297711601391,22557.291409041532,6,3,6,6_1,6_2,6_1_0 +26536,2,60.0,0.0,6,112,770.0,0.0,0.0,78,90,0.0,482.0551288317215,1313.0044183964872,1168.0,47.110033663481715,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,126557,2,1,1,0,1,,269.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,835.629720200688,770.0,57106.53102850441,5,1,0,1,90.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02045300211664055,38071.02068566961,9,5,9,9_1,9_0,9_0_0 +26537,1,59.0,254.0,7,112,810.0,0.0,0.0,0,78,0.0,0.0,1381.2124401313695,810.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,126558,2,2,5,0,1,,190.0,395.0,11,0.0,1.0,2.0,1.0,1.0,1,1,681.5780750519,810.0,9902.114902985624,0,7,2,3,46.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08180070701419288,9902.114902985624,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +26538,1,27.0,84.0,2,111,0.0,0.0,480.0,0,56,0.0,0.0,302.552779399077,480.0,0.0,574.4314308310468,42,1,2,2,2,2,2,2,1,3,35.0,2,,2,126559,2,1,0,1,2,400.0,0.0,385.0,32,2.0,2.0,3.0,4.0,2.1,2,2,260.743275684658,0.0,10331.898179398937,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.046458065271789604,4919.951513999494,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +26539,2,69.0,0.0,1,111,200.0,,,74,74,0.0,0.0,,280.0,110.84713803172167,,10,0,0,0,0,0,0,0,0,0,,1,,1,126560,2,2,0,0,2,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,118.69397089475153,200.0,115243.77725344464,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0024296322688575427,76829.18483562976,10,5,10,10_1,10_2,10_1_0 +26540,2,44.0,0.0,7,111,150.0,750.0,0.0,0,52,0.0,0.0,255.78008150580916,900.0,0.0,1423.8780359548418,50,0,0,0,0,0,0,0,0,1,20.0,2,,5,126561,2,1,0,0,1,,0.0,481.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1044.02926041176,150.0,21076.056581111898,0,1,2,3,48.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.042702485473803904,21076.056581111898,5,3,5,5_0,5_2,5_0_0 +26541,2,61.0,0.0,9,112,1100.0,0.0,0.0,0,75,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2011.0,6,126562,2,1,1,0,1,,120.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,2143.20939194377,1100.0,56640.1102778045,0,5,0,1,140.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019420866142470343,56640.1102778045,10,5,10,10_1,10_0,10_0_0 +26542,2,60.0,0.0,5,112,1036.0,0.0,0.0,85,38,316.40485531098045,0.0,1766.5877629334555,1336.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,126563,2,1,1,0,1,,265.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,937.1604796914,1036.0,44704.869950428525,6,4,0,1,150.0,9,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029884887294861565,29803.246633619015,8,4,8,8_1,8_0,8_0_0 +26543,2,36.0,0.0,8,111,960.0,,,38,37,0.0,0.0,,1092.0,182.89777775234077,,10,2,2,2,1,1,2,1,2,0,,1,2003.0,6,126564,1,2,0,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,125.30780435050688,960.0,42681.524887802945,4,1,1,2,114.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.025584840346509263,20324.535660858546,5,3,5,5_1,5_2,5_0_0 +26544,2,30.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,150.0,207.83838380947813,,20,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,126565,2,1,0,0,1,,0.0,1320.0,22,3.0,0.0,6.0,4.0,2.5,4,4,141.11142241975924,0.0,63288.09383010406,0,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00237011404392543,25315.237532041625,7,4,7,7_0,7_2,7_0_0 +26545,2,76.0,0.0,2,111,139.0,108.0,0.0,0,74,0.0,0.0,237.0228755287165,247.0,0.0,205.0384371774972,60,0,0,0,0,0,0,0,0,0,,2,,2,126566,2,1,0,1,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,2050.53705864747,139.0,24691.572219782764,0,5,0,1,35.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010003413221378623,24691.572219782764,7,4,7,7_0,7_2,7_0_1 +26546,2,47.0,0.0,7,112,1000.0,0.0,0.0,56,47,0.0,0.0,1705.2005433720612,1120.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,5,126567,2,1,1,0,1,,268.0,,43,2.0,0.0,5.0,5.0,3.0,5,3,1081.15624119457,1000.0,33357.24374343587,1,1,1,2,120.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033575915582665504,11119.081247811957,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +26547,1,44.0,135.0,9,112,0.0,0.0,1660.0,63,47,0.0,0.0,1046.3283620884747,1660.0,0.0,1986.5753649573703,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,126568,2,2,1,0,1,,267.0,596.0,43,4.0,1.0,5.0,5.0,2.8,4,4,2194.33780343255,0.0,24369.620245676953,1,1,2,3,96.0,7,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06811759819254777,8703.435802027483,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +26548,2,34.0,0.0,9,111,1200.0,0.0,0.0,52,55,0.0,496.622728878834,2046.2406520464733,1575.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,126569,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,167.339228808067,1200.0,38077.73403682525,1,1,1,2,129.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041362755422284486,18132.254303250116,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +26549,2,52.0,0.0,2,111,107.0,337.0,0.0,0,85,0.0,0.0,182.45645814081055,444.0,0.0,639.7958641557088,70,0,0,0,0,0,0,0,0,0,,2,,2,126570,2,2,0,0,1,,120.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1491.35766024648,107.0,9514.781236100078,0,7,0,1,43.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04666423630586665,9514.781236100078,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +26550,2,53.0,0.0,7,111,1300.0,0.0,0.0,52,64,0.0,0.0,2216.7607063836795,1360.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,126571,2,1,2,0,1,,426.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,271.927709033112,1300.0,47141.84432714081,1,1,1,2,101.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02884910464177601,31427.896218093872,8,4,8,8_1,8_3,8_0_0 +26551,0,62.0,0.0,7,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,907.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,126572,2,1,2,0,1,,0.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,874.731866568804,0.0,107269.92849810586,0,1,5,0,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008455305346978166,107269.92849810586,10,5,10,10_1,10_4,10_0_0 +26552,2,39.0,0.0,2,111,800.0,,,21,21,0.0,0.0,,880.0,110.84713803172167,,44,0,0,0,0,0,0,0,0,1,2.0,1,,2,126573,2,1,0,0,2,,140.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,138.08978769392073,800.0,24589.8097660417,1,1,1,2,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03578718210399789,11709.433221924619,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +26553,2,73.0,0.0,1,111,300.0,400.0,0.0,0,75,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,41,0,0,0,0,0,0,0,0,0,,2,,1,126574,2,1,0,0,1,,600.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,505.901194651471,300.0,28029.982014047724,0,5,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024973258978517453,28029.982014047724,7,4,7,7_0,7_4,7_1_0 +26554,0,31.0,0.0,5,111,300.0,,,0,46,0.0,0.0,,573.0,378.2658585332502,,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,126575,2,2,0,0,2,,0.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,107.54955331500514,300.0,22976.78311567899,0,1,5,0,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02493821685634461,14360.48944729937,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +26555,2,36.0,0.0,1,111,300.0,200.0,0.0,37,37,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,126576,1,3,0,0,2,,0.0,2000.0,43,2.0,0.0,4.0,5.0,2.4,2,2,975.670022889672,300.0,193501.2586672443,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.002583962520160286,80625.52444468513,10,5,10,10_0,10_4,10_1_0 +26556,2,48.0,0.0,2,111,990.0,81.0,0.0,0,52,0.0,0.0,1688.1485379383405,1071.0,0.0,153.77882788312291,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,126577,2,1,0,1,1,,400.0,525.0,32,2.0,1.0,4.0,2.0,1.5,2,2,288.753390990115,990.0,23541.150568360354,0,1,2,3,75.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04549480268137104,15694.100378906902,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +26557,2,67.0,0.0,6,112,800.0,0.0,0.0,77,75,0.0,0.0,1364.160434697649,1067.0,144.10127944123818,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,126578,2,1,2,0,1,,340.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,1739.08721037354,800.0,45063.45007475275,5,5,0,1,110.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02367772547885315,22531.725037376375,6,3,6,6_1,6_1,6_0_0 +26558,2,38.0,0.0,5,111,630.0,,,56,21,0.0,0.0,,756.0,174.58424239996165,,43,0,0,0,0,0,0,0,0,0,,1,,3,126579,2,1,0,0,1,,480.0,950.0,43,2.0,0.0,4.0,3.0,1.8,2,2,87.17306211495004,630.0,28238.03544251652,4,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02677240070538798,15687.797468064733,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +26559,2,66.0,0.0,7,112,1000.0,0.0,0.0,0,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,2,,5,126580,2,2,0,0,1,,0.0,900.0,12,1.0,2.0,4.0,1.0,1.0,1,1,884.243800264231,1000.0,57717.99043736558,0,1,2,3,77.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017325620528753166,57717.99043736558,10,5,10,10_0,10_1,10_0_0 +26560,2,61.0,0.0,1,120,1300.0,0.0,0.0,68,64,0.0,52.973091080408956,2216.7607063836795,1440.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,126581,2,2,3,0,1,,300.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,2558.67578139306,1300.0,37383.33699680109,5,5,0,1,85.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03851983572582676,24922.22466453406,7,4,7,7_1,7_1,7_1_0 +26561,2,35.0,0.0,2,112,1003.0,0.0,0.0,0,63,0.0,0.0,1710.3161450021773,1003.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,8,,2,126582,2,1,0,0,1,,0.0,415.0,12,1.0,2.0,3.0,1.0,1.0,1,1,3063.74401605632,1003.0,20558.686575358,0,1,2,3,58.0,6,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04878716333961788,20558.686575358,5,3,5,5_0,5_0,5_0_1 +26562,2,68.0,0.0,5,111,550.0,0.0,0.0,77,78,0.0,0.0,937.8602988546337,550.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,126583,2,1,0,1,2,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,804.816574114043,550.0,34107.083721982664,5,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016125682409062564,22738.05581465511,6,3,6,6_0,6_4,6_0_0 +26563,2,36.0,0.0,7,120,1360.0,0.0,0.0,0,62,0.0,0.0,2319.072738986003,1420.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,126584,2,2,5,0,1,,370.0,497.0,32,1.0,0.0,4.0,2.0,1.3,1,1,917.740060202087,1360.0,27471.285946946395,0,1,2,3,104.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051690335965428,21131.758420727994,5,3,5,5_1,5_0,5_0_0 +26564,2,51.0,0.0,6,111,3100.0,0.0,0.0,56,34,0.0,0.0,5286.121684453389,3200.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,126585,1,1,2,0,1,,600.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1240.92091163266,3100.0,73793.8715837976,1,1,0,1,270.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043364034591493114,49195.914389198406,10,5,10,10_1,10_3,10_0_0 +26565,2,50.0,0.0,7,211,1200.0,,,81,81,0.0,0.0,,1350.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,126586,1,2,0,0,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,8.154053824490994,1200.0,12142.70414045297,4,4,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11117787145142777,8095.136093635313,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26566,2,51.0,0.0,9,111,1040.0,0.0,0.0,23,42,0.0,0.0,1773.4085651069436,1040.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,30.0,2,2012.0,6,126587,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,9394.6956698715,1040.0,51749.27181728331,1,1,1,2,84.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020096901144271928,28749.595454046284,8,4,8,8_0,8_3,8_0_0 +26567,2,49.0,0.0,2,111,706.0,3060.0,0.0,46,37,0.0,0.0,1203.8715836206752,3766.0,0.0,5809.4223866957545,12,0,0,0,0,0,0,0,0,2,240.0,1,,2,126588,2,1,1,0,1,,750.0,,43,2.0,0.0,9.0,7.0,3.8,6,5,834.865545136117,706.0,60384.976500139586,1,1,1,2,194.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06236650601315204,15890.783289510418,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +26568,2,42.0,0.0,5,221,892.0,0.0,0.0,47,54,1552.4931567258775,0.0,1521.0388846878786,2434.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,3,126589,2,2,1,0,1,,389.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1282.57262712015,892.0,53685.4055598286,1,1,1,2,120.0,1,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045338206438386285,25564.478838013616,7,4,7,7_1,7_1,7_0_0 +26569,1,46.0,370.0,9,111,150.0,,,0,52,0.0,0.0,,180.0,41.567676761895626,,30,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,126590,2,1,0,0,2,,80.0,620.0,32,1.0,1.0,3.0,2.0,1.3,1,1,151.3204592231711,150.0,23565.505891082204,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.007638282871241761,18127.312223909386,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +26570,2,57.0,0.0,1,111,401.0,532.0,0.0,0,42,0.0,0.0,683.7854178921965,933.0,0.0,1010.0041535039677,20,2,2,2,2,1,2,2,2,2,20.0,1,,1,126591,2,3,3,0,1,,192.0,565.0,32,1.0,0.0,6.0,3.0,1.8,2,1,225.055543764276,401.0,42210.0509958804,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.02210374017532124,23450.02833104467,6,3,6,6_1,6_3,6_1_0 +26571,1,68.0,375.0,7,111,200.0,,,0,78,0.0,0.0,,320.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,126592,2,2,0,0,2,,0.0,400.0,31,0.0,0.0,3.0,2.0,1.5,2,1,118.0457478180379,200.0,8414.319863999612,0,5,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03803040592372883,5609.546575999741,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +26572,2,52.0,0.0,9,400,0.0,,,11,11,0.0,0.0,,120.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,1,30.0,1,2009.0,6,126593,2,3,0,0,2,,0.0,,43,2.0,2.0,3.0,5.0,2.8,4,2,61.85774646307551,0.0,9395.453333333333,4,4,0,1,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012772135174602184,3355.519047619048,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +26573,2,50.0,0.0,7,112,680.0,0.0,0.0,90,53,0.0,701.8934568154186,1159.5363694930015,2010.0,1108.4713803172167,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,126594,2,1,1,0,1,,480.0,,43,2.0,1.0,4.0,4.0,2.3,3,3,856.417081306891,680.0,13275.200933909306,1,1,0,1,110.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15141013759466249,5771.826493004046,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +26574,2,44.0,0.0,5,111,500.0,0.0,0.0,45,65,0.0,0.0,852.6002716860306,692.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,2,,3,126595,2,1,0,1,1,412.0,0.0,344.0,43,2.0,2.0,3.0,3.0,1.8,2,2,755.432472163559,500.0,49303.86285919968,1,1,2,3,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014035411423567163,27391.034921777602,7,4,7,7_0,7_4,7_0_0 +26575,1,31.0,344.0,1,400,754.0,0.0,0.0,22,22,0.0,264.8654554020448,1285.7212097025342,1134.0,249.40606057137379,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,126596,2,1,2,0,1,,386.0,500.0,43,2.0,0.0,6.0,3.0,1.8,2,2,1959.16045486239,754.0,5968.569439941666,1,1,2,3,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.1899952763238829,3315.8719110787033,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +26576,2,33.0,0.0,2,111,360.0,180.0,0.0,56,63,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,43,0,0,0,0,0,0,0,0,0,,2,,2,126597,1,2,0,1,1,385.0,234.0,323.0,43,2.0,0.0,3.0,2.0,1.5,2,2,253.530290006283,360.0,21115.663186094025,4,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025573433107022824,14077.10879072935,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +26577,1,53.0,88.0,1,111,270.0,1250.0,0.0,0,68,0.0,0.0,460.40414671045653,1520.0,0.0,2373.130059924736,50,2,2,2,2,2,2,2,1,3,2.0,1,,1,126598,2,1,1,0,1,,140.0,402.0,12,1.0,0.0,5.0,1.0,1.0,1,1,91.5455304522494,270.0,11205.422691293836,0,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.1356486088812142,11205.422691293836,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +26578,2,39.0,0.0,9,120,2150.0,0.0,0.0,54,54,0.0,0.0,3666.1811682499315,2150.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,126599,2,2,1,0,1,,308.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1706.81828973764,2150.0,46827.4227954439,1,1,1,2,131.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045913267731855306,22298.772759735188,6,3,6,6_1,6_0,6_0_0 +26579,2,81.0,0.0,5,221,342.0,,,0,78,0.0,0.0,,452.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,3,126600,1,1,0,0,2,,230.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,112.16312800036636,342.0,10498.296577946769,0,5,0,1,60.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04305460382491891,10498.296577946769,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +26580,1,31.0,310.0,1,111,0.0,0.0,1160.0,0,54,0.0,0.0,731.1692168811028,1160.0,0.0,1388.2092911750296,43,2,2,2,2,1,2,2,2,2,10.0,1,,1,126601,2,2,2,0,1,,310.0,500.0,32,1.0,0.0,4.0,2.0,1.3,1,1,206.290430122139,0.0,12370.799710443036,0,1,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.09376920062983195,9515.999777263874,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +26581,2,45.0,0.0,1,112,940.0,0.0,0.0,52,53,0.0,993.245457757668,1602.8885107697374,1690.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,126602,2,1,1,0,1,,262.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1350.56891109153,940.0,45258.401637157905,1,1,1,2,100.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03734113311267453,19677.565929199092,5,3,5,5_1,5_0,5_1_0 +26582,2,49.0,0.0,6,112,1545.0,0.0,0.0,0,54,0.0,0.0,2634.5348395098345,1645.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,126603,2,2,2,0,1,,320.0,,32,1.0,0.0,7.0,3.0,2.0,3,2,1171.07086228447,1545.0,36560.4197727405,0,1,0,1,167.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04499401293052205,18280.20988637025,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +26583,2,55.0,0.0,6,300,303.0,0.0,0.0,48,64,0.0,79.45963662061344,516.6757646417345,888.0,727.4343433331735,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,126604,2,1,2,0,1,,300.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,806.253725849834,303.0,46878.2022468758,1,1,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0189427059366207,31252.134831250532,8,4,8,8_1,8_0,8_0_0 +26584,2,61.0,0.0,2,111,300.0,771.0,0.0,0,37,0.0,0.0,511.56016301161833,1071.0,0.0,1463.7466209615773,20,0,0,0,0,0,0,0,0,3,60.0,8,,2,126605,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1043.75074494373,300.0,45363.720099540624,0,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02360917485713094,45363.720099540624,10,5,10,10_0,10_4,10_0_1 +26585,2,41.0,0.0,7,111,900.0,,,46,52,0.0,0.0,,992.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,126606,2,2,0,0,2,,1200.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,78.65972688895864,900.0,57366.94443797465,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017292188205571137,24942.149755641152,7,4,7,7_1,7_3,7_0_0 +26586,2,51.0,0.0,5,111,2440.0,0.0,0.0,75,56,0.0,0.0,4160.68932582783,2440.0,0.0,0.0,42,2,2,1,2,1,2,2,2,2,20.0,1,,3,126607,2,1,2,0,1,,400.0,,42,1.0,2.0,5.0,3.0,2.0,3,3,773.500047348037,2440.0,25919.627747261424,5,1,0,1,200.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.09413715442953464,12959.813873630712,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +26587,2,85.0,0.0,2,211,229.0,608.0,0.0,0,77,0.0,0.0,390.490924432202,837.0,0.0,1154.2904611473916,70,0,0,0,0,0,0,0,0,0,,1,,2,126608,1,3,4,0,1,,304.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,1578.142196343,229.0,15365.367721253235,0,5,0,1,75.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05447315125704862,15365.367721253235,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +26588,2,35.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,218.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,2,126609,2,1,0,1,1,229.0,0.0,439.0,12,1.0,1.0,1.0,1.0,1.0,1,1,372.885205111555,0.0,19850.08321918354,0,1,2,3,21.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010982321715876747,19850.08321918354,5,3,5,5_0,5_4,5_0_1 +26589,2,59.0,0.0,2,111,600.0,500.0,0.0,0,54,0.0,0.0,1023.1203260232367,1100.0,0.0,949.2520239698945,70,2,2,2,2,1,1,2,2,3,75.0,2,,2,126610,1,2,0,1,1,750.0,0.0,650.0,32,1.0,0.0,4.0,2.0,1.5,2,2,882.696801682275,600.0,29017.47287789108,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.03790819430172051,19344.981918594054,5,3,5,5_0,5_4,5_0_1 +26591,2,56.0,0.0,5,111,450.0,,,22,63,0.0,0.0,,580.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,0,,1,,3,126612,2,2,0,0,2,,590.0,,43,3.0,0.0,2.0,3.0,2.0,3,3,60.1734946448313,450.0,54940.10109847721,1,1,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010556951814857073,27470.050549238604,7,4,7,7_1,7_2,7_0_0 +26592,0,69.0,0.0,2,120,270.0,,,0,77,0.0,0.0,,534.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,126613,2,2,0,0,2,,1127.0,,21,1.0,3.0,4.0,2.0,1.5,2,2,90.96233761612828,270.0,13769.9203016133,0,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038780180880018306,9179.9468677422,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +26593,2,86.0,0.0,1,111,0.0,719.0,0.0,0,86,0.0,0.0,0.0,1341.0,0.0,1365.0244104687083,70,0,0,0,0,0,0,0,0,0,,2,,1,126614,1,1,0,0,2,,350.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1806.17740362866,0.0,16265.699822592083,0,5,0,1,65.0,9,7,9,0,1,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0824434247911935,16265.699822592083,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +26594,0,24.0,0.0,6,221,600.0,0.0,0.0,43,43,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,4,126615,2,1,2,1,1,,341.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,601.79328352998,600.0,50183.1594651762,1,1,5,0,120.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01195620216810702,33455.4396434508,8,4,8,8_1,8_1,8_0_0 +26595,2,37.0,0.0,2,111,390.0,0.0,0.0,0,56,0.0,0.0,665.0282119151038,390.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,126616,1,3,0,1,1,600.0,0.0,234.0,32,1.0,1.0,3.0,4.0,1.9,1,1,283.448484324973,390.0,12952.732737397899,0,4,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03010947634810443,6817.22775652521,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +26596,2,82.0,0.0,2,111,321.0,1340.0,0.0,86,78,0.0,0.0,547.3693744224316,1661.0,0.0,2543.9954242393173,50,0,0,0,0,0,0,0,0,0,,1,,2,126617,1,2,2,0,1,,220.0,224.0,41,0.0,3.0,3.0,2.0,1.5,2,2,1055.60678547137,321.0,27720.382516451155,5,5,2,3,59.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059919808069540524,18480.255010967438,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +26597,2,40.0,0.0,7,112,0.0,,,85,47,0.0,0.0,,358.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,5,126618,2,3,0,0,1,,210.0,650.0,42,1.0,0.0,3.0,4.0,2.1,2,2,139.6594614187944,0.0,28176.999861728287,6,1,2,3,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01270539808201005,13417.618981775375,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +26598,1,39.0,270.0,5,111,239.0,98.0,0.0,0,81,0.0,0.0,407.54292986592264,337.0,0.0,186.05339669809933,71,0,0,0,0,0,0,0,0,0,,2,,3,126619,2,3,0,1,1,,0.0,307.0,12,1.0,2.0,3.0,1.0,1.0,1,1,301.107448803251,239.0,11586.821964284542,0,4,2,3,63.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.029084765524038925,11586.821964284542,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +26599,2,83.0,0.0,1,120,240.0,0.0,0.0,0,78,0.0,2463.2487352390162,409.2481304092947,2277.0,245.2492928951842,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,126620,1,2,2,0,2,,229.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,238.762268997399,240.0,12647.802087361313,0,5,0,1,72.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.18003128008109479,12647.802087361313,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +26600,1,33.0,30.0,1,111,1125.0,0.0,0.0,0,68,0.0,0.0,1918.3506112935688,1125.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,1,126621,1,3,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,536.683885803782,1125.0,8701.734261797275,0,4,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.129284573184339,8701.734261797275,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +26601,2,33.0,0.0,2,112,0.0,0.0,1318.0,0,43,0.0,0.0,830.7595067666324,1318.0,0.0,1577.2929704902494,20,1,2,2,2,1,2,2,2,2,45.0,1,,2,126622,2,1,1,0,1,,430.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,872.722616963782,0.0,32415.18753571387,0,1,1,2,80.0,10,1,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04065995294791602,24934.75964285682,7,4,7,7_1,7_1,7_0_1 +26602,2,53.0,0.0,6,112,2400.0,0.0,0.0,43,63,0.0,0.0,4092.4813040929466,2500.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,126623,2,1,2,0,1,,700.0,,43,4.0,1.0,6.0,4.0,2.5,4,4,614.795047544306,2400.0,93831.10703462719,1,1,0,1,150.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026643616163213407,37532.442813850874,9,5,9,9_1,9_1,9_0_0 +26603,2,64.0,0.0,9,111,2400.0,0.0,0.0,52,78,0.0,0.0,4092.4813040929466,2540.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,126624,2,1,1,0,1,,388.0,,42,2.0,3.0,5.0,3.0,2.0,3,3,1962.92301711126,2400.0,61648.42286666629,1,5,1,2,144.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04120137842769364,30824.211433333145,8,4,8,8_1,8_2,8_0_0 +26604,1,29.0,406.0,6,111,90.0,0.0,0.0,0,62,0.0,0.0,153.4680489034855,90.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,2,,4,126625,2,1,0,0,1,277.0,0.0,417.0,32,1.0,0.0,4.0,3.0,1.6,1,1,375.303167568274,90.0,9000.36655412806,0,4,2,3,81.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009999592734222705,5625.2290963300375,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26605,1,51.0,386.0,1,111,998.0,1828.0,0.0,56,53,0.0,0.0,1701.790142285317,2946.0,166.2707070475825,3470.4653996339343,50,0,0,0,0,0,0,0,0,1,7.0,1,,1,126626,2,1,2,0,2,,650.0,700.0,43,2.0,3.0,6.0,6.0,2.8999999999999995,3,2,633.956767781551,998.0,36901.68646013852,1,1,2,3,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07983374969006611,12724.719469013284,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +26606,2,80.0,0.0,2,111,1050.0,0.0,0.0,0,78,0.0,0.0,1790.4605705406643,1140.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126627,2,1,3,0,1,,144.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1215.57445183164,1050.0,11508.560055340635,0,5,0,1,70.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09905670166538118,11508.560055340635,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +26607,2,45.0,0.0,5,111,1216.0,0.0,0.0,34,37,0.0,0.0,2073.5238607404262,1242.0,36.025319860309544,0.0,12,0,0,0,0,0,0,0,0,3,75.0,1,,3,126628,2,1,2,0,1,,380.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,587.041175910667,1216.0,156452.90386570137,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00793849119646976,74501.38279319112,10,5,10,10_1,10_4,10_0_0 +26608,2,65.0,0.0,5,112,0.0,0.0,0.0,0,77,0.0,1032.9752760679746,0.0,2409.0,484.95622888878233,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,126629,2,1,2,0,1,,224.0,,21,0.0,2.0,7.0,2.0,1.5,2,2,695.449705121003,0.0,18032.984146951985,0,5,0,1,90.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13358853866719447,12021.989431301323,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26609,2,59.0,0.0,5,111,652.0,,,0,55,0.0,0.0,,782.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,3,126630,2,2,0,0,2,,677.0,,22,1.0,4.0,5.0,2.0,1.5,2,2,101.48953677927989,652.0,34684.63340095774,0,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022546007361819394,23123.088933971827,6,3,6,6_1,6_2,6_0_0 +26610,2,65.0,0.0,2,111,600.0,,,72,75,0.0,0.0,,876.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,126631,1,2,0,0,2,,972.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,82.0475722530191,600.0,19882.174312581836,6,5,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04405956744105446,9941.087156290918,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +26611,2,50.0,0.0,8,112,600.0,0.0,0.0,67,47,2636.7071275915036,0.0,1023.1203260232367,3220.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,126632,1,1,2,0,1,,1300.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,1507.32194340819,600.0,56475.26131090792,1,1,1,2,160.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0570161151140716,22590.104524363167,6,3,6,6_1,6_1,6_0_0 +26612,1,26.0,377.0,2,111,217.0,930.0,0.0,0,85,0.0,0.0,370.02851791173725,1147.0,0.0,1765.6087645840037,60,0,0,0,0,0,0,0,0,0,,2,,2,126633,1,3,0,0,1,,318.0,403.0,31,0.0,0.0,3.0,2.0,1.3,1,1,222.530546974368,217.0,8350.461743086602,0,7,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1373576737776936,6423.432110066617,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26613,1,23.0,350.0,9,111,420.0,,,0,85,0.0,0.0,,506.0,119.1606733841008,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,126634,2,2,0,0,1,,360.0,,31,0.0,0.0,3.0,3.0,1.6,1,1,236.47727434162164,420.0,12228.569620253165,0,6,1,2,78.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04137851079180628,7642.856012658228,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +26614,2,66.0,0.0,2,111,300.0,,,0,77,0.0,0.0,,440.0,193.98249155551292,,60,0,0,0,0,0,0,0,0,0,,2,,2,126635,2,1,0,0,2,,0.0,830.0,11,0.0,0.0,5.0,1.0,1.0,1,1,137.24745535740155,300.0,30707.0,0,5,2,3,156.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01432898036278373,30707.0,8,4,8,8_0,8_2,8_0_1 +26615,1,56.0,145.0,1,111,817.0,0.0,0.0,0,68,0.0,0.0,1393.148843934974,840.0,31.86855218411998,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,1,126636,1,1,0,0,2,,203.0,300.0,12,1.0,3.0,1.0,1.0,1.0,1,1,910.716182192782,817.0,14507.026081166328,0,1,3,4,24.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.057902977171215377,14507.026081166328,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +26616,2,59.0,0.0,2,111,298.0,396.0,0.0,0,75,0.0,0.0,508.1497619248742,694.0,0.0,751.8076029841565,60,0,0,0,0,0,0,0,0,0,,2,,2,126637,2,2,0,1,1,625.0,473.0,319.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2029.80596208132,298.0,65860.28935797999,0,5,2,3,67.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010537457499280046,65860.28935797999,10,5,10,10_0,10_3,10_0_1 +26617,1,50.0,336.0,7,111,360.0,,,81,63,0.0,0.0,,864.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,2,,5,126638,2,1,0,0,2,,480.0,587.0,43,3.0,0.0,5.0,8.0,3.499999999999999,3,3,144.60722064329886,360.0,31869.036268107033,4,1,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027110954744014294,9105.438933744868,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26618,2,61.0,0.0,2,111,1200.0,0.0,0.0,0,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,126639,2,1,2,0,1,,250.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,699.357685700662,1200.0,37525.95446032844,0,5,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03197786751216713,37525.95446032844,9,5,9,9_1,9_4,9_0_1 +26619,2,61.0,0.0,9,111,440.0,900.0,0.0,75,22,0.0,0.0,750.2882390837069,1340.0,0.0,1708.65364314581,41,0,0,0,0,0,0,0,0,1,5.0,2,2004.0,6,126640,2,1,0,0,1,,0.0,1050.0,42,1.0,4.0,3.0,2.0,1.5,2,2,2103.80180986498,440.0,37347.45349621716,5,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.035879286927440066,24898.30233081144,7,4,7,7_0,7_3,7_0_0 +26620,2,57.0,0.0,2,111,280.0,0.0,0.0,0,46,0.0,0.0,477.4561521441771,280.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,126641,2,1,0,1,1,800.0,0.0,305.0,12,1.0,2.0,4.0,1.0,1.0,1,1,401.443784435119,280.0,26791.575071037514,0,1,2,3,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010451046616616739,26791.575071037514,7,4,7,7_0,7_3,7_0_1 +26621,2,36.0,0.0,9,120,320.0,,,62,55,0.0,0.0,,572.0,349.1684847999233,,42,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,126642,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,136.23544823239143,320.0,34545.229868429844,1,1,0,1,130.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01655800242692085,16450.109461157066,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +26622,1,83.0,234.0,2,111,200.0,400.0,0.0,0,78,0.0,0.0,341.04010867441224,600.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,126643,2,1,0,1,1,506.0,0.0,307.0,11,0.0,11.0,3.0,1.0,1.0,1,1,334.85557354431,200.0,12688.293435416528,0,5,2,3,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04728768317457369,12688.293435416528,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26623,2,70.0,0.0,7,111,180.0,,,0,21,0.0,0.0,,222.0,58.19474746665388,,12,0,0,0,0,0,0,0,0,0,,1,,5,126644,2,1,0,0,2,,112.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,78.32043950332108,180.0,20319.991824040248,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010925201246260122,20319.991824040248,5,3,5,5_1,5_3,5_0_0 +26624,2,49.0,0.0,9,111,0.0,0.0,0.0,52,12,0.0,0.0,0.0,1633.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,126645,2,1,1,0,1,,316.0,690.0,43,2.0,1.0,4.0,3.0,2.0,3,2,1537.08644276896,0.0,45918.60793145284,1,1,2,3,95.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035562924782862264,22959.30396572642,6,3,6,6_1,6_2,6_0_0 +26625,2,34.0,0.0,8,111,273.0,590.0,0.0,0,47,0.0,0.0,465.5197483405727,863.0,0.0,1120.1173882844755,43,0,0,0,0,0,0,0,0,0,,2,2001.0,6,126646,1,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1171.73394804132,273.0,26763.717641054158,0,1,1,2,58.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03224514664122008,26763.717641054158,7,4,7,7_0,7_3,7_0_0 +26626,1,71.0,247.0,2,111,360.0,,,0,72,0.0,0.0,,486.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,126647,1,3,0,0,2,,250.0,320.0,11,0.0,1.0,2.0,1.0,1.0,1,1,149.1823830064137,360.0,9450.449908829873,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05142612306170883,9450.449908829873,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +26627,2,36.0,0.0,9,111,1500.0,0.0,0.0,46,38,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,126648,2,1,1,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,840.338835698652,1500.0,79778.1637221511,1,1,1,2,134.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01880213745235041,37989.60177245291,9,5,9,9_1,9_4,9_0_0 +26628,2,30.0,0.0,6,111,800.0,0.0,0.0,42,68,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,126649,2,1,0,0,1,,0.0,580.0,43,2.0,0.0,2.0,2.0,1.5,2,2,354.537291625045,800.0,14994.081634634742,1,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05335438471617259,9996.054423089829,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +26629,2,48.0,0.0,8,111,800.0,0.0,0.0,85,63,1265.6194212439218,0.0,1364.160434697649,2175.0,242.47811444439117,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,126650,2,1,1,0,1,,440.0,,42,1.0,0.0,4.0,4.0,2.3,3,2,884.352293029199,800.0,34953.17950315156,6,1,0,1,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.062226098767463794,15197.034566587636,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +26630,2,46.0,0.0,2,111,350.0,987.0,0.0,0,68,0.0,0.0,596.8201901802214,1337.0,0.0,1873.8234953165718,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,126651,2,2,0,0,1,,0.0,305.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1161.93201612327,350.0,27942.803501612056,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04784774011393906,27942.803501612056,7,4,7,7_0,7_4,7_0_1 +26631,2,63.0,0.0,5,112,1000.0,0.0,0.0,77,78,0.0,350.9467284077093,1705.2005433720612,1365.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,126652,2,1,2,0,1,,140.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,69.9543999149601,1000.0,20140.766850119646,5,5,0,1,90.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06777299048034466,13427.177900079763,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +26632,2,66.0,0.0,2,111,20.0,2.0,0.0,78,78,0.0,0.0,34.104010867441225,587.0,0.0,3.797008095879578,71,1,2,2,1,2,2,2,2,0,,2,,2,126653,1,1,0,1,1,640.0,0.0,343.0,41,0.0,4.0,4.0,2.0,1.5,2,2,72.8453480260108,20.0,36819.8130673859,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015942503535411767,24546.542044923932,7,4,7,7_0,7_3,7_0_1 +26633,2,55.0,0.0,2,111,400.0,,,0,34,0.0,0.0,,484.0,116.38949493330776,,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,126654,2,2,0,0,2,,600.0,695.0,32,3.0,0.0,4.0,3.0,2.0,3,3,114.31491090642399,400.0,65733.42492361114,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007363072904879926,32866.71246180557,8,4,8,8_0,8_3,8_0_1 +26634,2,66.0,0.0,8,112,486.0,0.0,0.0,71,78,812.1057952981831,0.0,828.7274640788218,1316.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,126655,2,1,2,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,857.974017107236,486.0,30282.901941079537,5,5,1,2,85.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.043456865612169486,20188.601294053024,5,3,5,5_1,5_0,5_0_0 +26635,2,46.0,0.0,5,111,480.0,0.0,0.0,0,53,0.0,0.0,818.4962608185893,480.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,126656,2,2,0,1,1,,0.0,464.0,22,1.0,2.0,4.0,3.0,2.0,3,3,321.56700827981,480.0,33806.46534653565,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014198467514415506,16903.232673267827,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +26636,1,47.0,30.0,2,111,500.0,0.0,0.0,85,65,1582.0242765549024,0.0,852.6002716860306,2096.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,4,15.0,1,,2,126657,2,1,2,0,1,,260.0,,42,1.0,0.0,7.0,5.0,2.4,2,2,830.878544735351,500.0,33267.22843207622,6,1,1,2,120.0,4,3,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06300494807613848,13861.345180031758,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +26637,2,68.0,0.0,2,111,780.0,,,0,77,0.0,0.0,,801.0,29.09737373332694,,71,0,0,0,0,0,0,0,0,0,,2,,2,126658,2,2,0,0,2,,800.0,291.0,11,0.0,3.0,2.0,1.0,1.0,1,1,110.78410118106012,780.0,17501.226971067757,0,5,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.045768219641067295,17501.226971067757,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +26638,2,86.0,0.0,2,300,504.0,,,0,86,0.0,0.0,,744.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,126659,1,2,0,0,1,,108.0,,11,0.0,9.0,6.0,1.0,1.0,1,1,96.14547923647832,504.0,14824.482004577518,0,6,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050187251046631305,14824.482004577518,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +26639,2,48.0,0.0,2,111,350.0,70.0,0.0,0,43,0.0,0.0,596.8201901802214,420.0,0.0,132.89528335578524,30,2,2,2,1,1,2,2,2,2,15.0,2,,2,126660,1,2,0,1,1,737.0,0.0,331.0,32,1.0,0.0,4.0,2.0,1.5,2,2,1553.44041055987,350.0,29821.70284443968,0,1,2,3,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.014083702804996259,19881.135229626452,5,3,5,5_0,5_3,5_0_1 +26640,2,69.0,0.0,5,111,660.0,980.0,0.0,77,75,0.0,0.0,1125.4323586255605,1640.0,0.0,1860.5339669809932,70,0,0,0,0,0,0,0,0,0,,1,,3,126661,2,1,2,0,1,,194.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1091.69705212663,660.0,33663.43162563328,5,5,0,1,169.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048717552572721354,22442.287750422187,6,3,6,6_1,6_3,6_0_0 +26641,1,78.0,87.0,5,111,0.0,,,0,77,0.0,0.0,,684.0,110.84713803172167,,70,0,0,0,0,0,0,0,0,0,,2,,3,126662,2,1,0,0,2,,80.0,272.0,21,0.0,6.0,4.0,2.0,1.5,2,1,130.10966076830368,0.0,14754.88995652211,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04635751279850455,9836.593304348075,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +26642,2,43.0,0.0,8,111,740.0,,,0,45,0.0,0.0,,763.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,2,5.0,2,2002.0,6,126663,2,1,0,0,2,,360.0,500.0,32,1.0,0.0,4.0,2.0,1.3,1,1,108.21887086493123,740.0,38173.85293890886,0,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019987502996384972,29364.50226069912,8,4,8,8_0,8_3,8_0_0 +26643,2,44.0,0.0,5,112,700.0,545.0,0.0,85,37,0.0,794.5963662061343,1193.6403803604428,1845.0,0.0,1034.684706127185,31,2,2,2,2,1,2,2,2,3,70.0,1,,3,126664,2,1,3,0,1,,414.0,,42,1.0,0.0,6.0,3.0,1.8,2,2,869.846739513332,700.0,45967.94667036752,7,1,0,1,132.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.04013666334131363,25537.748150204177,7,4,7,7_1,7_1,7_0_0 +26644,2,56.0,0.0,7,221,1080.0,0.0,0.0,46,46,0.0,0.0,1841.6165868418261,1140.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,126665,2,1,2,0,1,,150.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,2049.92448818569,1080.0,77529.14536678669,1,1,0,1,118.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01470414764159613,38764.572683393344,9,5,9,9_1,9_1,9_0_0 +26645,2,59.0,0.0,7,111,1200.0,,,63,63,0.0,0.0,,1320.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,1,15.0,1,,5,126666,2,2,0,0,2,,600.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,113.9443016094277,1200.0,49987.30121111363,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026406706663862176,33324.86747407575,8,4,8,8_1,8_2,8_0_0 +26646,2,79.0,0.0,5,111,429.0,,,0,78,0.0,0.0,,781.0,487.7274073395754,,50,0,0,0,0,0,0,0,0,0,,2,,3,126667,2,3,0,0,2,,0.0,654.0,21,1.0,6.0,4.0,2.0,1.5,2,2,77.8069365493319,429.0,28747.472008821103,0,5,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027167606242397654,19164.981339214068,5,3,5,5_0,5_2,5_0_0 +26647,2,65.0,0.0,1,112,790.0,0.0,0.0,54,78,2440.536117298696,397.2981831030672,1347.1084292639284,3479.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126668,2,2,2,0,1,,323.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,198.901512830251,790.0,37425.17249499492,5,5,0,1,110.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09295882338191672,24950.11499666328,7,4,7,7_1,7_0,7_1_0 +26648,2,68.0,0.0,6,111,587.0,,,77,78,0.0,0.0,,755.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,4,126669,2,1,0,0,2,,346.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,99.6971601541575,587.0,42655.65067669396,5,5,0,1,116.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017699882384223344,28437.100451129303,8,4,8,8_1,8_3,8_0_0 +26649,2,44.0,0.0,9,120,924.0,0.0,0.0,56,63,0.0,0.0,1575.6053020757845,984.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,126670,2,2,1,0,1,,481.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2050.35180336685,924.0,29218.296104399637,1,1,1,2,97.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03367752850761996,16232.386724666465,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +26650,1,37.0,355.0,7,111,400.0,,,0,81,0.0,0.0,,544.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,2,,5,126671,2,1,0,0,2,,800.0,406.0,32,1.0,0.0,4.0,4.0,2.1,2,1,125.17646757192625,400.0,23612.31134165617,0,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023038828860446656,11243.957781741032,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +26651,1,59.0,230.0,5,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,204.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,126672,2,1,0,1,1,312.0,118.0,213.0,12,1.0,2.0,1.0,1.0,1.0,1,1,321.988375701305,0.0,6060.0,0,4,2,3,30.0,4,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033663366336633666,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26652,2,48.0,0.0,7,112,2000.0,0.0,0.0,31,31,0.0,264.8654554020448,3410.4010867441225,2360.0,221.69427606344334,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,126673,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,5.0,2.8,4,4,1303.72358304166,2000.0,186291.87729807384,1,1,0,1,120.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01266829254301793,66532.81332074066,10,5,10,10_1,10_1,10_0_0 +26653,2,39.0,0.0,2,111,400.0,140.0,0.0,0,65,0.0,0.0,682.0802173488245,540.0,0.0,265.7905667115705,50,2,2,2,2,1,2,2,2,0,,2,,2,126674,2,3,0,1,1,843.0,0.0,351.0,22,1.0,1.0,3.0,2.0,1.5,2,2,247.398630767306,400.0,38539.706670307176,0,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.014011523352253268,25693.137780204783,7,4,7,7_0,7_4,7_0_1 +26654,2,77.0,0.0,1,111,500.0,1500.0,0.0,86,74,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,,1,126675,2,1,1,0,1,,500.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,729.182277501609,500.0,89245.76188041686,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022410027746526066,59497.17458694457,10,5,10,10_1,10_4,10_1_0 +26655,2,28.0,0.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,723.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,126676,1,2,0,1,1,881.0,0.0,496.0,42,1.0,0.0,3.0,3.0,1.8,2,2,294.20918795168,0.0,19306.517576334307,6,1,2,3,67.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03744849360540528,10725.843097963503,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +26656,2,42.0,0.0,8,112,1500.0,0.0,0.0,21,52,0.0,0.0,2557.8008150580918,1540.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,126677,2,1,3,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,894.879096689308,1500.0,44405.54007604145,1,1,1,2,110.0,9,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0346803573915069,21145.49527430545,5,3,5,5_1,5_1,5_0_0 +26657,2,48.0,0.0,8,111,600.0,,,85,48,0.0,0.0,,688.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,126678,2,2,0,0,1,,400.0,,42,1.0,2.0,5.0,3.0,2.0,3,3,115.4946443788885,600.0,42292.862880582135,7,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01626752017101875,21146.431440291068,5,3,5,5_1,5_2,5_0_0 +26658,2,29.0,0.0,7,111,430.0,0.0,0.0,0,38,0.0,0.0,733.2362336499863,430.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,35.0,2,,5,126679,2,1,0,0,1,,0.0,514.0,12,1.0,0.0,2.0,1.0,1.0,1,1,351.817487157694,430.0,28312.57734799084,0,1,2,3,41.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015187596477525009,28312.57734799084,8,4,8,8_0,8_3,8_0_0 +26659,2,42.0,0.0,7,112,1500.0,0.0,0.0,0,52,0.0,662.163638505112,2557.8008150580918,2065.0,90.06329965077386,0.0,50,2,2,2,1,1,2,2,2,1,20.0,1,,5,126680,1,3,2,0,1,,150.0,560.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1580.12543043204,1500.0,18803.782697040962,0,1,2,3,80.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.1098183292835519,18803.782697040962,5,3,5,5_1,5_0,5_0_0 +26660,2,46.0,0.0,8,111,100.0,,,0,47,0.0,0.0,,140.0,55.423569015860835,,43,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,126681,2,1,0,0,2,,120.0,550.0,12,1.0,3.0,3.0,1.0,1.0,1,1,118.635315105618,100.0,18084.04355835212,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007741631430396603,18084.04355835212,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +26661,2,42.0,0.0,5,111,600.0,1900.0,0.0,64,43,0.0,0.0,1023.1203260232367,2500.0,0.0,3607.1576910855993,33,0,0,0,0,0,0,0,0,2,45.0,8,,3,126682,1,3,0,0,2,,0.0,535.0,43,2.0,0.0,3.0,5.0,2.4,2,2,121.717903652449,600.0,43318.61405186992,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05771191102758939,18049.422521612465,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +26662,2,27.0,0.0,8,400,360.0,,,81,81,0.0,0.0,,720.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,126683,2,3,0,0,2,,200.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,117.53838667862544,360.0,9447.12,4,4,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07621370322383964,3936.3000000000006,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +26663,2,68.0,0.0,5,111,324.0,0.0,0.0,0,74,0.0,0.0,552.4849760525478,324.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,126684,2,1,0,1,2,886.0,0.0,469.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1108.90047545323,324.0,36405.21113090828,0,5,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008899824776044814,36405.21113090828,9,5,9,9_0,9_4,9_0_0 +26664,2,68.0,0.0,5,111,0.0,0.0,1790.0,0,78,0.0,0.0,1128.2697398423913,1790.0,0.0,2142.150544140779,50,2,2,2,2,1,2,2,2,0,,1,,3,126685,2,1,1,0,1,,280.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,469.438122660578,0.0,29883.563783238842,0,5,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.05989914767140254,29883.563783238842,8,4,8,8_1,8_2,8_0_0 +26665,2,44.0,0.0,6,111,1890.0,0.0,0.0,0,42,0.0,0.0,3222.8290269731956,1890.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,8,,4,126686,1,3,0,0,1,,0.0,509.0,32,1.0,0.0,4.0,3.0,1.6,1,1,721.900398444966,1890.0,44162.903236651175,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04279609947453528,27601.81452290698,7,4,7,7_0,7_4,7_0_0 +26666,1,27.0,350.0,7,111,0.0,,,81,81,0.0,0.0,,442.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,126687,2,1,0,0,2,,80.0,580.0,43,2.0,0.0,5.0,3.0,1.8,2,2,102.31934104327986,0.0,9400.577983059286,4,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04701838554996566,5222.5433239218255,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +26667,2,51.0,0.0,2,211,0.0,,,0,43,0.0,0.0,,186.0,0.0,,10,0,0,0,0,0,0,0,0,2,60.0,1,,2,126688,2,2,0,0,2,,247.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,96.22361498070559,0.0,44339.94288549728,0,1,1,2,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004194863319520354,44339.94288549728,10,5,10,10_1,10_2,10_0_1 +26668,2,62.0,0.0,8,111,1920.0,0.0,0.0,52,52,0.0,0.0,3273.9850432743574,1990.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,2000.0,6,126689,2,1,1,0,1,,1020.0,,43,2.0,0.0,5.0,5.0,3.0,5,5,1972.30206045036,1920.0,51299.3692400711,1,1,1,2,101.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03879189996834437,17099.789746690367,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +26669,2,76.0,0.0,2,111,228.0,120.0,0.0,77,74,0.0,0.0,388.7857238888299,348.0,0.0,227.8204857527747,44,1,2,2,2,1,2,2,2,0,,2,,2,126690,2,2,0,1,2,780.0,0.0,291.0,41,0.0,1.0,3.0,2.0,1.5,2,2,195.337580547939,228.0,44450.65008565713,5,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00782890687378921,29633.76672377142,8,4,8,8_0,8_4,8_0_1 +26670,0,87.0,0.0,2,111,390.0,,,78,75,0.0,0.0,,650.0,360.2531986030954,,31,0,0,0,0,0,0,0,0,0,,1,,2,126691,2,1,0,0,2,,526.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,143.63853044500172,390.0,89641.35748914149,5,5,5,0,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007251117321362925,59760.904992760996,10,5,10,10_1,10_2,10_0_1 +26671,2,83.0,0.0,2,120,550.0,800.0,0.0,77,90,0.0,529.7309108040896,937.8602988546337,1750.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,2,126692,2,3,4,0,1,,240.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,1742.79264509814,550.0,34680.1666439071,5,5,0,1,140.0,0,1,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050461118539851496,23120.111095938064,6,3,6,6_1,6_1,6_0_1 +26672,2,33.0,0.0,9,111,582.0,0.0,0.0,56,47,1582.0242765549024,0.0,992.4267162425396,2082.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,126693,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,360.484600022071,582.0,47398.056098603345,1,1,1,2,119.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04392585205749291,22570.50290409683,6,3,6,6_1,6_3,6_0_0 +26673,2,39.0,0.0,6,112,0.0,0.0,0.0,52,45,0.0,0.0,0.0,4238.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,120.0,1,,4,126694,2,2,3,0,1,,267.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,445.885428465993,0.0,46424.50738487688,1,1,1,2,120.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09128799073440592,19343.5447436987,5,3,5,5_1,5_0,5_0_0 +26674,2,31.0,0.0,1,111,980.0,120.0,0.0,85,62,0.0,0.0,1671.09653250462,1100.0,0.0,227.8204857527747,43,2,2,2,2,1,2,2,2,2,20.0,2,,1,126695,1,3,0,0,2,,700.0,328.0,42,1.0,0.0,3.0,3.0,1.8,2,2,455.146836221343,980.0,25014.301734567347,6,1,2,3,45.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.043974843338517276,13896.834296981859,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +26675,2,45.0,0.0,7,300,1300.0,0.0,0.0,52,37,0.0,0.0,2216.7607063836795,1360.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,126696,2,1,2,0,1,,450.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,712.957529162495,1300.0,92703.13851205562,1,1,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014670484967702988,37081.25540482225,9,5,9,9_1,9_0,9_0_0 +26676,2,56.0,0.0,9,112,0.0,0.0,0.0,54,55,0.0,0.0,0.0,2691.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,126697,2,1,1,0,1,,496.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,318.535156905302,0.0,36679.374851764005,1,1,1,2,90.0,7,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07336548157855484,24452.91656784267,7,4,7,7_1,7_1,7_0_0 +26677,2,47.0,0.0,2,111,800.0,,,54,37,0.0,0.0,,932.0,182.89777775234077,,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,126698,2,2,0,0,2,,740.0,1200.0,43,2.0,0.0,4.0,3.0,1.8,2,2,52.267543902505324,800.0,67223.08387937346,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013864285096952719,37346.15771076303,9,5,9,9_1,9_2,9_0_1 +26678,2,59.0,0.0,2,111,620.0,0.0,0.0,0,31,0.0,556.2174563442941,1057.224336890678,1280.0,332.541414095165,0.0,10,2,2,2,1,2,2,2,2,0,,1,,2,126699,2,3,3,0,2,,240.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,960.837067245262,620.0,32492.869244972568,0,1,1,2,80.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03939325857466548,32492.869244972568,8,4,8,8_1,8_2,8_0_1 +26679,2,55.0,0.0,1,120,960.0,0.0,0.0,11,78,0.0,331.081819252556,1636.9925216371787,1310.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126700,1,2,2,0,2,,230.0,,42,2.0,0.0,7.0,4.0,2.5,4,4,992.369942630371,960.0,13318.566928946246,1,7,0,1,460.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09835893058080282,5327.426771578498,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +26680,1,65.0,132.0,2,111,130.0,86.0,0.0,0,77,0.0,0.0,221.67607063836795,216.0,0.0,163.27134812282185,71,0,0,0,0,0,0,0,0,0,,2,,2,126701,2,1,0,1,1,,0.0,315.0,11,0.0,0.0,3.0,1.0,1.0,1,1,925.654383865666,130.0,11624.449541284404,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018581525020421208,11624.449541284404,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +26681,2,58.0,0.0,5,300,750.0,0.0,0.0,77,63,2109.365702073203,0.0,1278.9004075290459,2810.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,126702,2,1,2,0,2,,200.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,926.064105717196,750.0,91653.2134230248,5,1,0,1,71.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03065904505748711,61102.14228201654,10,5,10,10_1,10_0,10_0_0 +26682,2,39.0,0.0,9,112,1800.0,0.0,0.0,64,37,0.0,370.8116375628627,3069.36097806971,2160.0,110.84713803172167,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,126703,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,334.860033717888,1800.0,72001.32345152729,1,1,1,2,110.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029999448571999574,34286.34450072728,9,5,9,9_1,9_0,9_0_0 +26683,2,54.0,0.0,6,111,672.0,1300.0,0.0,52,52,0.0,662.163638505112,1145.894765146025,2472.0,0.0,2468.055262321726,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,126704,2,1,1,0,1,,500.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1798.76548242729,672.0,61389.23856846167,1,1,1,2,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0402676439331172,30694.619284230834,8,4,8,8_1,8_3,8_0_0 +26684,1,26.0,200.0,1,111,40.0,0.0,0.0,0,52,0.0,0.0,68.20802173488245,40.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,2,,1,126705,2,1,0,0,1,,0.0,800.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1032.55386687019,40.0,13984.192262569055,0,4,3,4,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.0028603725727560573,9322.794841712703,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +26685,2,48.0,0.0,7,112,1050.0,0.0,0.0,31,56,0.0,0.0,1790.4605705406643,1200.0,207.83838380947813,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,5,126706,2,1,2,0,1,,224.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,1002.13977388883,1050.0,25857.212213195628,1,1,1,2,85.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0464087152979163,12928.606106597814,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +26686,2,83.0,0.0,1,111,0.0,1500.0,0.0,0,78,0.0,0.0,0.0,1525.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,2,,1,126707,1,2,0,0,1,,87.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,653.241747158274,0.0,25982.765303087283,0,5,0,1,76.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.058692751991982886,25982.765303087283,7,4,7,7_0,7_4,7_1_0 +26688,1,27.0,215.0,2,111,562.0,458.0,0.0,85,52,0.0,0.0,958.3227053750984,1020.0,0.0,869.5148539564234,43,2,2,2,1,2,2,2,2,2,15.0,2,,2,126709,1,3,0,1,2,841.0,0.0,579.0,42,1.0,0.0,3.0,5.0,2.4,2,2,411.506247585129,562.0,31966.29592756999,6,1,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.031908607813402615,13319.28996982083,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +26689,0,22.0,0.0,2,111,0.0,,,0,90,0.0,0.0,,1208.0,0.0,,60,0,0,0,0,0,0,0,0,2,30.0,1,,2,126710,1,1,0,0,2,,0.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,150.05732349181017,0.0,22021.87754352538,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05485454169892804,14681.251695683588,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +26690,2,46.0,0.0,1,112,300.0,0.0,0.0,0,63,0.0,529.7309108040896,511.56016301161833,916.0,299.28727268564853,0.0,71,2,2,2,2,1,2,2,2,2,10.0,1,,1,126711,2,1,1,0,1,,80.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,299.826555219645,300.0,16571.988185782986,0,1,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05527399547543916,11047.992123855323,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +26691,1,75.0,320.0,1,111,0.0,0.0,0.0,86,78,0.0,0.0,0.0,293.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,126712,2,1,0,1,1,313.0,412.0,370.0,41,0.0,3.0,2.0,2.0,1.5,2,2,363.90612730017,0.0,13974.71065565307,5,5,2,3,65.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.020966444831648463,9316.473770435381,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +26692,2,33.0,0.0,9,111,1200.0,0.0,0.0,56,67,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,126713,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1635.20726558383,1200.0,27389.0,1,1,1,2,75.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048194530650991274,13042.380952380952,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26693,1,34.0,522.0,2,111,1300.0,,,0,85,0.0,476.7578197236806,,1786.0,174.58424239996165,,60,2,2,2,1,1,2,2,2,0,,1,,2,126714,1,1,0,0,2,,455.0,550.0,31,0.0,1.0,5.0,5.0,2.4,2,1,135.0946640807589,1300.0,19596.982109902878,0,6,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.09113648162680552,8165.409212459533,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +26694,2,57.0,0.0,8,300,700.0,0.0,0.0,72,21,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,126715,2,1,3,0,1,,280.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1789.46139432365,700.0,30027.728445626144,6,1,1,2,125.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025309939823659956,20018.48563041743,5,3,5,5_1,5_0,5_0_0 +26695,2,41.0,0.0,9,111,984.0,,,54,47,0.0,0.0,,1080.0,133.01656563806603,,43,0,0,0,0,0,0,0,0,2,50.0,2,2008.0,6,126716,2,1,0,0,2,,680.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,164.94962248013593,984.0,51996.5823916116,1,1,0,1,65.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02077059588005215,24760.277329338856,7,4,7,7_0,7_2,7_0_0 +26696,2,39.0,0.0,9,111,580.0,1200.0,0.0,55,67,0.0,0.0,989.0163151557955,1780.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,126717,2,2,5,0,1,,564.0,606.0,43,2.0,0.0,4.0,4.0,2.1,2,2,696.33305997975,580.0,54759.43365686502,4,1,2,3,95.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03250581463559105,26075.92078898334,7,4,7,7_1,7_2,7_0_0 +26697,2,78.0,0.0,2,111,1700.0,,,77,78,0.0,0.0,,1700.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,126718,1,1,0,0,1,,480.0,,41,0.0,0.0,5.0,4.0,2.5,4,4,86.95832326123185,1700.0,21674.0,5,5,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07843499123373628,8669.6,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +26698,2,77.0,0.0,6,111,90.0,,,78,77,0.0,132.4327277010224,,316.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,126719,2,2,0,0,2,,500.0,,41,0.0,5.0,2.0,2.0,1.5,2,2,120.36222283848763,90.0,16836.526653207515,5,5,0,1,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018768716761411064,11224.351102138344,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26699,1,41.0,92.0,2,111,468.0,0.0,0.0,0,45,0.0,0.0,798.0338542981247,468.0,0.0,0.0,31,2,1,2,1,1,2,2,2,3,20.0,2,,2,126720,1,3,0,1,1,650.0,0.0,306.0,32,1.0,0.0,4.0,4.0,2.1,2,1,424.466130693803,468.0,27428.514511343812,0,1,2,3,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.017062535406591042,13061.197386354195,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26700,1,50.0,307.0,7,111,384.0,,,0,52,0.0,0.0,,644.0,360.2531986030954,,50,0,0,0,0,0,0,0,0,2,30.0,2,,5,126721,1,2,0,0,2,,400.0,411.0,32,1.0,2.0,4.0,2.0,1.5,2,2,75.87928374446442,384.0,17522.67810021642,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03675237291450592,11681.785400144281,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +26701,2,81.0,0.0,1,400,1152.0,0.0,0.0,0,71,0.0,0.0,1964.3910259646145,5034.0,133.01656563806603,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126722,2,2,4,0,2,,130.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1085.02810637808,1152.0,10813.618725172922,0,5,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.4655240884609144,10813.618725172922,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +26702,2,59.0,0.0,2,111,700.0,800.0,0.0,0,62,0.0,0.0,1193.6403803604428,1500.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,1,10.0,1,,2,126723,2,1,1,0,1,,143.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,1704.02712173374,700.0,43065.69745692052,0,1,1,2,60.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034830505218230355,43065.69745692052,9,5,9,9_1,9_2,9_0_1 +26703,2,46.0,0.0,1,111,550.0,2800.0,0.0,22,22,0.0,0.0,937.8602988546337,3950.0,0.0,5315.811334231409,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,126724,2,3,3,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,365.63780254678,550.0,80459.61128272895,1,1,0,1,140.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04909295405517187,34982.43968814302,9,5,9,9_1,9_3,9_1_0 +26704,2,48.0,0.0,2,111,142.0,73.0,0.0,0,34,0.0,0.0,242.1384771588327,215.0,0.0,138.5907954996046,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,126725,2,1,0,1,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,554.264842117708,142.0,32023.72926092892,0,1,1,2,93.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006713771473902457,32023.72926092892,8,4,8,8_0,8_2,8_0_1 +26705,0,26.0,0.0,1,111,950.0,0.0,0.0,56,68,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,126726,2,1,1,0,1,,500.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,203.291728102946,950.0,34885.56868880331,1,1,5,0,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02723189088515295,23257.04579253554,6,3,6,6_1,6_3,6_1_0 +26706,2,44.0,0.0,5,111,1500.0,0.0,0.0,0,55,0.0,158.91927324122688,2557.8008150580918,1720.0,138.5589225396521,0.0,60,2,2,1,1,1,2,2,2,2,20.0,1,,3,126727,1,3,3,0,2,,250.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1353.05317230368,1500.0,21221.80094578439,0,1,1,2,55.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.08104872929465817,21221.80094578439,5,3,5,5_1,5_3,5_0_0 +26707,2,52.0,0.0,2,111,1350.0,0.0,0.0,52,46,0.0,397.2981831030672,2302.0207335522828,1755.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,126728,2,1,3,0,1,,350.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,336.808489803134,1350.0,49181.60509731831,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0356840732734787,24590.802548659154,7,4,7,7_1,7_3,7_0_1 +26708,2,42.0,0.0,9,111,1400.0,1400.0,0.0,43,64,0.0,0.0,2387.2807607208856,2800.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,126729,2,1,1,0,1,,650.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,602.389100575307,1400.0,42642.77474978857,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06566176841045933,20306.083214185033,5,3,5,5_1,5_4,5_0_0 +26709,2,50.0,0.0,5,111,500.0,125.0,0.0,54,37,0.0,0.0,852.6002716860306,625.0,0.0,237.31300599247362,31,0,0,0,0,0,0,0,0,2,10.0,2,,3,126730,1,2,0,1,2,,0.0,,43,2.0,0.0,2.0,4.0,2.3,3,3,1698.58389870804,500.0,62591.916813029195,1,1,0,1,57.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009985314906826746,27213.876875230086,7,4,7,7_0,7_3,7_0_0 +26710,2,45.0,0.0,1,112,515.0,0.0,0.0,0,62,0.0,264.8654554020448,878.1782798366115,715.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,126731,2,1,1,0,1,,46.0,,12,1.0,1.0,7.0,1.0,1.0,1,1,286.017506607929,515.0,23817.671749940884,0,1,1,2,150.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03001972684428211,23817.671749940884,6,3,6,6_1,6_0,6_1_0 +26711,2,46.0,0.0,1,111,682.0,0.0,0.0,37,37,0.0,0.0,1162.9467705797458,682.0,0.0,0.0,10,2,1,2,1,1,2,2,2,3,50.0,2,,1,126732,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,330.710374182282,682.0,163886.59531000958,1,1,1,2,114.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.004161414170023617,78041.23586190931,10,5,10,10_0,10_4,10_1_0 +26712,1,79.0,95.0,9,120,830.0,0.0,0.0,0,77,0.0,0.0,1415.3164509988108,875.0,62.351515142843446,0.0,71,2,2,2,2,2,1,2,2,0,,1,2008.0,6,126733,2,2,1,0,1,,300.0,393.0,11,0.0,1.0,3.0,1.0,1.0,1,1,767.979709267764,830.0,11938.432357580836,0,5,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.07329270492070762,11938.432357580836,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +26713,2,54.0,0.0,2,111,320.0,700.0,0.0,67,21,0.0,0.0,545.6641738790596,1020.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,126734,2,2,0,0,1,,320.0,,43,2.0,1.0,3.0,3.0,2.0,3,3,1887.52353095059,320.0,50388.37869234164,1,1,0,1,65.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02024276284473956,25194.18934617082,7,4,7,7_0,7_2,7_0_1 +26714,1,54.0,300.0,2,111,250.0,1200.0,0.0,0,77,0.0,0.0,426.3001358430153,1450.0,0.0,2278.2048575277468,50,2,2,2,2,1,2,2,2,0,,2,,2,126735,2,2,0,1,1,,270.0,350.0,31,0.0,0.0,3.0,2.0,1.5,2,1,370.489966558306,250.0,8446.855314178887,0,6,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.17166151734196639,5631.236876119258,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26715,2,53.0,0.0,2,111,480.0,,,0,46,0.0,0.0,,546.0,91.44888887617039,,20,0,0,0,0,0,0,0,0,0,,2,,2,126736,2,1,0,0,2,,160.0,330.0,12,1.0,0.0,2.0,1.0,1.0,1,1,136.90280520291242,480.0,23927.84406318874,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02281860407306739,23927.84406318874,6,3,6,6_0,6_3,6_0_1 +26716,1,47.0,216.0,5,111,540.0,0.0,0.0,85,63,0.0,0.0,920.8082934209131,540.0,0.0,0.0,50,2,2,2,1,2,2,2,2,3,30.0,2,,3,126737,2,2,0,1,1,,0.0,635.0,42,1.0,4.0,2.0,5.0,2.5999999999999996,3,2,404.404076947782,540.0,27935.754786482154,6,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.019330066580527865,10744.521071723906,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +26717,1,38.0,426.0,2,111,309.0,618.0,0.0,43,21,0.0,0.0,526.9069679019669,927.0,0.0,1173.2755016267895,44,1,2,2,1,1,2,2,2,1,7.0,2,,2,126739,2,1,0,0,1,,419.0,406.0,43,2.0,0.0,5.0,4.0,2.1,2,2,485.959514897066,309.0,18913.86957475139,1,1,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.049011652339903844,9006.604559405423,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26718,2,86.0,0.0,1,111,1000.0,0.0,0.0,86,72,1054.6828510366015,1059.4618216081792,1705.2005433720612,2900.0,138.5589225396521,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,126740,1,2,3,0,2,,0.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,397.088890115451,1000.0,10800.052974370148,5,5,0,1,80.0,7,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.2685172014324426,7200.035316246765,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +26719,0,84.0,0.0,1,111,360.0,1100.0,0.0,0,86,0.0,0.0,613.872195613942,1460.0,0.0,2088.354452733768,71,2,2,2,1,2,2,2,2,0,,1,,1,126741,2,2,1,0,1,,400.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,276.686216242953,360.0,21989.665292481404,0,5,5,0,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06639482595941085,21989.665292481404,6,3,6,6_1,6_3,6_1_0 +26720,2,38.0,0.0,2,111,700.0,200.0,0.0,52,64,0.0,0.0,1193.6403803604428,900.0,0.0,379.7008095879578,43,2,2,2,1,2,2,2,1,0,,2,,2,126742,1,1,0,1,1,,0.0,535.0,43,2.0,1.0,5.0,3.0,1.8,2,2,526.862830643478,700.0,30086.292986539695,1,1,2,3,84.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.0299139545175157,16714.607214744276,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +26721,2,56.0,0.0,6,112,1400.0,0.0,0.0,78,45,0.0,463.51454695357836,2387.2807607208856,1870.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,4,126743,2,1,1,0,1,,800.0,,42,2.0,1.0,6.0,4.0,2.5,4,3,655.679023197208,1400.0,48303.011223172296,6,1,0,1,89.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038713942519237994,19321.20448926892,5,3,5,5_1,5_0,5_0_0 +26722,2,57.0,0.0,1,211,750.0,0.0,0.0,22,38,0.0,4469.604559909506,1278.9004075290459,4125.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,126744,2,1,2,0,1,,362.0,,43,2.0,3.0,11.0,3.0,2.0,3,2,1707.52356116188,750.0,275905.7537094681,1,1,1,2,480.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014950757439961443,137952.87685473406,10,5,10,10_1,10_1,10_1_0 +26723,2,82.0,0.0,2,221,264.0,,,0,77,0.0,0.0,,396.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,126745,1,1,0,0,1,,164.0,,11,0.0,8.0,6.0,1.0,1.0,1,1,107.78967236959473,264.0,13492.670949491694,0,5,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029349266834000604,13492.670949491694,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +26725,1,42.0,324.0,2,111,450.0,0.0,0.0,0,67,0.0,430.4063650283228,767.3402445174275,1096.0,444.7741413522832,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,126747,1,3,3,0,2,,650.0,342.0,12,1.0,2.0,3.0,1.0,1.0,1,1,437.378647884979,450.0,9405.248144707844,0,4,2,3,48.0,7,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.1165306840539554,9405.248144707844,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +26726,2,67.0,0.0,7,111,780.0,,,72,77,0.0,0.0,,1032.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,126748,2,1,0,0,2,,1200.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,143.72332407950577,780.0,5255.042585870598,5,5,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19638280435153307,3503.3617239137316,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26727,2,80.0,0.0,2,111,300.0,0.0,0.0,0,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,126749,2,2,0,1,2,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1126.02739793172,300.0,20890.195472751773,0,5,0,1,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014360803870471506,20890.195472751773,5,3,5,5_0,5_4,5_0_1 +26728,2,66.0,0.0,2,111,0.0,0.0,400.0,77,74,0.0,0.0,252.12731616589753,400.0,0.0,478.69285902587234,12,0,0,0,0,0,0,0,0,0,,2,,2,126750,2,2,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,619.719584727486,0.0,90724.51331270023,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004408951730843899,60483.00887513349,10,5,10,10_0,10_4,10_0_1 +26729,1,27.0,277.0,2,111,264.0,420.0,0.0,53,56,0.0,0.0,450.1729434502241,684.0,0.0,797.3717001347114,71,1,2,2,2,1,2,2,2,3,45.0,2,,2,126751,2,1,0,1,1,,0.0,418.0,43,2.0,2.0,5.0,6.0,2.6999999999999997,2,2,296.609641418343,264.0,33316.66970455078,4,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020530263260573466,12339.507297981772,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +26730,2,61.0,0.0,1,111,400.0,650.0,0.0,42,46,0.0,0.0,682.0802173488245,1050.0,0.0,1234.027631160863,30,0,0,0,0,0,0,0,0,2,25.0,1,,1,126752,2,1,1,0,1,,200.0,,43,2.0,4.0,7.0,2.0,1.5,2,2,1069.84285005888,400.0,57566.812702026014,1,1,0,1,135.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01823967579089273,38377.87513468401,9,5,9,9_1,9_3,9_1_0 +26731,2,51.0,0.0,6,111,1450.0,0.0,0.0,74,34,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,12,2,2,2,2,1,2,2,2,3,20.0,2,,4,126753,2,2,0,0,1,,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1060.99874576475,1450.0,92871.25671520691,6,1,1,2,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.015613011509540328,61914.17114347127,10,5,10,10_0,10_4,10_0_0 +26732,2,55.0,0.0,2,112,1727.0,0.0,0.0,43,63,0.0,0.0,2944.8813384035498,1827.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,126754,2,1,2,0,1,,300.0,,43,3.0,1.0,6.0,4.0,2.5,4,4,1022.40817320035,1727.0,70314.04612894499,1,1,0,1,120.0,6,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025983428640268647,28125.618451577997,8,4,8,8_1,8_0,8_0_1 +26733,2,27.0,0.0,7,111,526.0,0.0,0.0,52,63,316.40485531098045,927.0290939071567,896.9354858137042,1526.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,5,126755,2,2,5,0,1,,247.0,600.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1358.65221348223,526.0,33756.51444899776,1,1,2,3,110.0,6,4,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04520608910335253,22504.34296599851,6,3,6,6_1,6_2,6_0_0 +26734,2,47.0,0.0,7,111,500.0,1500.0,0.0,54,54,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,2,50.0,1,,5,126756,2,1,1,0,1,,100.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,840.093184211187,500.0,99477.93039960925,1,1,0,1,135.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020104961894219866,39791.1721598437,9,5,9,9_1,9_4,9_0_0 +26735,2,51.0,0.0,1,112,0.0,0.0,0.0,46,54,0.0,0.0,0.0,1495.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,2.0,5,,1,126757,2,1,2,0,2,,0.0,200.0,43,2.0,0.0,4.0,2.0,1.5,2,2,623.906278089035,0.0,41785.307649419665,1,1,2,3,50.0,10,0,1,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035778125951425495,27856.871766279775,7,4,7,7_1,7_0,7_1_0 +26736,2,22.0,0.0,2,111,512.0,0.0,0.0,0,67,0.0,0.0,873.0626782064953,1255.0,498.81212114274757,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,126758,2,1,0,1,1,800.0,0.0,315.0,22,4.0,1.0,4.0,5.0,3.0,5,5,303.821382192381,512.0,71775.83202702597,0,1,2,3,64.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017484994106755195,23925.27734234199,6,3,6,6_0,6_2,6_0_1 +26737,2,29.0,0.0,1,111,0.0,0.0,0.0,35,42,0.0,0.0,0.0,1563.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,17.0,2,,1,126759,2,1,0,0,1,,272.0,2200.0,43,2.0,0.0,3.0,2.0,1.5,2,2,409.197853017966,0.0,49313.99427650941,1,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03169485706706445,32875.99618433961,8,4,8,8_0,8_4,8_1_0 +26738,1,48.0,310.0,2,111,300.0,300.0,0.0,68,85,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,1,2,2,2,1,2,2,2,0,,2,,2,126760,1,3,0,1,1,,500.0,400.0,42,2.0,0.0,4.0,5.0,2.8,4,3,1009.78233051025,300.0,19926.422235428814,4,7,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030110774172656594,7116.579369796005,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +26739,1,42.0,360.0,2,400,0.0,,,52,48,0.0,0.0,,590.0,0.0,,71,0,0,0,0,0,0,0,0,3,30.0,1,,2,126761,2,1,0,0,1,,260.0,500.0,43,2.0,0.0,6.0,4.0,2.1,2,2,132.53310688045607,0.0,15882.753547012016,1,1,2,3,75.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037147211171767835,7563.215974767627,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +26740,0,89.0,0.0,5,111,1392.0,,,0,77,0.0,0.0,,1539.0,203.68161613328857,,71,0,0,0,0,0,0,0,0,0,,1,,3,126762,2,2,0,0,2,,300.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,95.78190495397969,1392.0,9402.920977347429,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1636725442772096,9402.920977347429,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26742,1,58.0,318.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,235.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126764,1,2,0,1,1,545.0,0.0,289.0,31,0.0,1.0,3.0,2.0,1.5,2,1,299.466771498077,0.0,4875.874078051573,0,7,2,3,65.0,8,6,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04819648666848003,3250.5827187010486,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +26743,0,53.0,0.0,2,111,900.0,,,53,34,0.0,0.0,,1068.0,232.77898986661552,,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,126765,2,1,0,0,2,,1080.0,,43,2.0,0.0,4.0,5.0,2.8,4,4,71.79898465195423,900.0,82267.81153153729,1,1,5,0,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012981991135021055,29381.36126126332,8,4,8,8_1,8_3,8_0_1 +26744,2,36.0,0.0,9,211,540.0,,,63,54,0.0,0.0,,584.0,60.965925917446924,,42,0,0,0,0,0,0,0,0,2,4.0,1,2013.0,6,126766,2,1,0,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,165.02021616467192,540.0,25537.846036924348,1,1,1,2,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022868021020865003,14187.692242735748,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +26746,2,41.0,0.0,9,111,1800.0,0.0,0.0,55,21,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,126768,2,1,1,0,1,,0.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,1009.86101560422,1800.0,21144.873949252742,1,1,1,2,120.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08512701491245409,9193.423456196844,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26748,1,46.0,270.0,2,111,467.0,704.0,0.0,0,62,0.0,0.0,796.3286537547526,1171.0,0.0,1336.5468497496115,60,0,0,0,0,0,0,0,0,0,,2,,2,126770,1,3,0,1,2,,155.0,273.0,12,1.0,0.0,2.0,1.0,1.0,1,1,278.907657618606,467.0,6060.0,0,4,2,3,53.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.19323432343234323,6060.0,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26749,2,59.0,0.0,1,112,950.0,0.0,0.0,0,52,0.0,728.3800023556231,1619.9405162034582,1620.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,126771,2,1,2,0,1,,320.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1084.19410919588,950.0,24377.71755158471,0,1,0,1,100.0,6,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06645412953743447,24377.71755158471,7,4,7,7_1,7_1,7_1_0 +26750,2,46.0,0.0,8,112,1500.0,0.0,0.0,54,54,0.0,331.081819252556,2557.8008150580918,1750.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,126772,2,1,2,0,1,,250.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,1029.12757496067,1500.0,43540.76975432388,1,1,1,2,110.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04019221547699472,18930.76945840169,5,3,5,5_1,5_0,5_0_0 +26751,2,71.0,0.0,2,111,260.0,,,0,75,0.0,0.0,,316.0,77.59299662220518,,41,0,0,0,0,0,0,0,0,0,,1,,2,126773,1,1,0,0,2,,134.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,83.9514709849261,260.0,9401.478653224873,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033611734032029786,9401.478653224873,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +26752,2,62.0,0.0,1,111,469.0,74.0,0.0,77,86,0.0,0.0,799.7390548414967,543.0,0.0,140.4892995475444,42,0,0,0,0,0,0,0,0,0,,2,,1,126774,2,1,0,1,1,725.0,0.0,327.0,41,0.0,6.0,3.0,2.0,1.5,2,2,700.914643243283,469.0,47683.88596138452,5,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011387494728087673,31789.25730758968,8,4,8,8_0,8_4,8_1_0 +26753,2,53.0,0.0,7,111,1450.0,0.0,0.0,52,52,0.0,79.45963662061344,2472.540787889489,1510.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,126775,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1357.34876068443,1450.0,52974.97506082551,1,1,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028504024745008905,21189.990024330204,5,3,5,5_1,5_3,5_0_0 +26754,2,32.0,0.0,2,111,0.0,0.0,0.0,42,42,0.0,0.0,0.0,1253.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,126776,2,1,0,1,2,973.0,0.0,700.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1062.45396826922,0.0,42292.76520789403,1,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029626816639696216,28195.176805262687,8,4,8,8_0,8_4,8_0_1 +26755,2,32.0,0.0,1,111,1260.0,0.0,0.0,42,34,0.0,0.0,2148.552684648797,1260.0,0.0,0.0,10,2,2,2,2,1,2,1,1,2,25.0,1,,1,126777,1,2,3,0,1,,0.0,664.0,43,2.0,0.0,3.0,2.0,1.5,2,2,2338.82923887271,1260.0,62241.11502422004,1,1,2,3,67.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.020243853271421842,41494.07668281336,9,5,9,9_1,9_3,9_1_0 +26757,2,36.0,0.0,5,111,600.0,920.0,0.0,52,62,0.0,0.0,1023.1203260232367,1520.0,0.0,1746.6237241046058,50,2,2,2,2,2,2,2,1,2,25.0,2,,3,126779,1,2,0,0,1,,0.0,455.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1436.33885734481,600.0,37985.645434711296,1,1,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.04001511577873634,21103.136352617385,5,3,5,5_0,5_3,5_0_0 +26758,2,65.0,0.0,1,111,750.0,,,86,78,0.0,0.0,,838.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,1,126780,2,3,0,0,2,,882.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,94.34594188731907,750.0,18654.65777720882,6,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04492175680777268,12436.438518139214,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +26759,2,67.0,0.0,2,111,220.0,153.0,0.0,78,77,0.0,1589.1927324122687,375.14411954185346,1573.0,0.0,290.4711193347877,70,0,0,0,0,0,0,0,0,0,,1,,2,126781,2,2,3,0,1,,133.0,143.0,41,0.0,2.0,2.0,2.0,1.5,2,2,164.857003794483,220.0,23746.56468364517,5,5,2,3,36.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06624116039333314,15831.043122430114,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +26760,1,50.0,300.0,2,111,300.0,0.0,0.0,0,52,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,2,1,2,1,1,1,2,2,3,90.0,2,,2,126782,1,3,0,1,1,,0.0,291.0,22,2.0,0.0,2.0,2.0,1.5,2,2,247.418825817826,300.0,5526.545713715374,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.054283455804134954,3684.363809143583,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +26761,1,38.0,290.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,955.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,126783,2,2,0,0,1,,0.0,700.0,32,1.0,0.0,2.0,2.0,1.5,2,1,505.658264324536,0.0,14952.592415728646,0,4,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06386852349398854,9968.394943819098,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +26762,0,54.0,0.0,1,111,500.0,0.0,0.0,0,72,1054.6828510366015,0.0,852.6002716860306,1627.0,175.96983162535815,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,126784,2,1,2,0,1,,260.0,,21,0.0,1.0,3.0,2.0,1.5,2,2,1119.09585863085,500.0,22534.0,0,7,5,0,50.0,6,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07220200585781486,15022.666666666666,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +26763,2,47.0,0.0,8,111,1780.0,0.0,0.0,42,43,0.0,662.163638505112,3035.2569672022687,2280.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,126785,1,1,2,0,1,,520.0,,43,2.0,0.0,6.0,5.0,3.0,5,3,1406.84570917359,1780.0,77554.80026314071,1,1,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02939856710692362,25851.60008771357,7,4,7,7_1,7_3,7_0_0 +26764,2,40.0,0.0,7,111,300.0,,,0,68,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,126786,2,2,0,0,2,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,100.5943413193926,300.0,9356.183094361488,0,4,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032064357545631535,9356.183094361488,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26765,0,64.0,0.0,5,111,720.0,,,21,77,0.0,0.0,,990.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,3,126787,2,1,0,0,2,,600.0,,42,1.0,4.0,3.0,2.0,1.5,2,2,96.59346358223752,720.0,14838.26645768025,4,5,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06671938415606349,9892.1776384535,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26766,2,41.0,0.0,2,111,250.0,75.0,0.0,35,37,0.0,0.0,426.3001358430153,325.0,0.0,142.38780359548417,10,1,2,2,2,2,2,2,1,3,45.0,2,,2,126788,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,857.186874987743,250.0,147029.64453177576,1,1,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0022104385890000682,98019.76302118384,10,5,10,10_0,10_4,10_0_1 +26767,1,50.0,208.0,2,111,450.0,400.0,0.0,85,47,0.0,0.0,767.3402445174275,850.0,0.0,759.4016191759156,70,0,0,0,0,0,0,0,0,0,,2,,2,126789,2,3,0,1,1,624.0,0.0,548.0,42,1.0,0.0,4.0,5.0,2.4,2,2,468.095058452812,450.0,23505.610598362306,6,1,2,3,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03616157922990614,9794.004415984295,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26768,2,78.0,0.0,2,300,300.0,0.0,0.0,72,72,0.0,810.488293530257,511.56016301161833,1032.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126790,2,1,2,0,2,,84.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1128.74933793506,300.0,15628.04717388277,5,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06603512188807918,10418.698115921847,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +26769,2,65.0,0.0,5,221,1300.0,0.0,0.0,75,75,0.0,0.0,2216.7607063836795,1420.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,126791,1,1,2,0,1,,283.0,,41,0.0,5.0,9.0,2.0,1.5,2,2,2640.12934240414,1300.0,56459.81070656501,5,5,0,1,150.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025150633383807748,37639.87380437667,9,5,9,9_1,9_1,9_0_0 +26771,0,31.0,0.0,7,111,320.0,,,0,85,0.0,0.0,,570.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,5,126793,2,1,0,0,2,,800.0,,21,1.0,1.0,4.0,4.0,2.5,4,4,111.61816868814631,320.0,26931.92654845591,0,7,0,1,55.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02116447180169069,10772.770619382365,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26773,2,58.0,0.0,7,120,0.0,,,81,42,0.0,0.0,,554.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,126795,2,1,0,0,2,,563.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,102.81334186161801,0.0,55807.367429933576,4,1,0,1,45.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009927004722011834,37204.91161995572,9,5,9,9_1,9_2,9_0_0 +26774,2,64.0,0.0,1,111,264.0,566.0,0.0,0,38,0.0,0.0,450.1729434502241,830.0,0.0,1074.5532911339205,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,126796,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1146.65646105595,264.0,43610.97095778558,0,1,1,2,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019031908296731594,43610.97095778558,10,5,10,10_0,10_4,10_1_0 +26775,1,24.0,450.0,7,211,160.0,,,0,85,0.0,0.0,,298.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,126797,2,1,0,0,2,,150.0,550.0,31,0.0,0.0,3.0,3.0,1.6,1,1,95.56404845874478,160.0,13956.91686361717,0,6,2,3,54.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02135142043991285,8723.073039760731,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +26776,2,75.0,0.0,7,111,600.0,0.0,0.0,77,78,1582.0242765549024,0.0,1023.1203260232367,2220.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,126798,2,1,0,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1539.3565637675,600.0,16231.46432761943,5,5,0,1,80.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.1367713938305894,10820.976218412952,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +26777,1,38.0,300.0,5,112,500.0,0.0,0.0,90,64,0.0,0.0,852.6002716860306,2500.0,2771.178450793042,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,126799,2,2,1,0,1,,360.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1332.80898570278,500.0,22453.959156660654,1,1,1,2,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11133893949648563,9355.816315275273,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +26778,2,23.0,0.0,7,112,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1605.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,126800,2,3,1,0,1,,91.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1085.30173336263,0.0,20830.22300142931,0,1,1,2,43.0,8,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0770515034759767,20830.22300142931,5,3,5,5_1,5_0,5_0_0 +26779,2,59.0,0.0,5,111,1300.0,0.0,0.0,74,38,0.0,463.51454695357836,2216.7607063836795,1700.0,69.27946126982604,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,126801,2,1,3,0,1,,400.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1369.56283035843,1300.0,76636.1789617181,5,1,0,1,145.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02218273435643493,51090.785974478735,10,5,10,10_1,10_2,10_0_0 +26780,2,60.0,0.0,5,300,500.0,0.0,0.0,77,75,2320.3022722805235,72.83800023556232,852.6002716860306,2785.0,41.567676761895626,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,126802,2,1,1,0,1,,160.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,1416.80385470807,500.0,58663.170292488605,5,5,0,1,150.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04747442025574603,29331.585146244302,8,4,8,8_1,8_0,8_0_0 +26781,1,43.0,120.0,8,111,582.0,,,0,54,0.0,0.0,,666.0,116.38949493330776,,42,0,0,0,0,0,0,0,0,0,,1,2002.0,6,126803,2,2,0,0,1,,554.0,,32,1.0,0.0,4.0,3.0,1.8,2,2,110.65289356620644,582.0,16331.318510985988,0,4,1,2,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04078054074764297,9072.954728325549,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +26782,2,27.0,0.0,7,112,1230.0,0.0,0.0,55,55,0.0,0.0,2097.396668347635,1230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,126804,2,1,0,0,1,,880.0,470.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1730.43444616166,1230.0,28648.083197563694,4,1,2,3,78.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04293480968753268,19098.722131709128,5,3,5,5_0,5_0,5_0_0 +26783,1,61.0,219.0,7,111,130.0,,,0,78,0.0,0.0,,170.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,2,,5,126805,2,1,0,0,2,,200.0,255.0,11,0.0,4.0,1.0,1.0,1.0,1,1,160.34518219353953,130.0,7581.674698795181,0,6,2,3,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022422486687145127,7581.674698795181,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26784,1,45.0,413.0,8,111,352.0,,,0,55,0.0,0.0,,472.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,3,45.0,2,2001.0,6,126806,2,3,0,0,2,,240.0,714.0,32,1.0,2.0,4.0,3.0,2.0,3,2,77.1712989977263,352.0,16232.536495579177,0,1,2,3,94.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029077402667694357,8116.268247789589,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +26785,2,45.0,0.0,2,120,150.0,,,0,62,0.0,0.0,,380.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,126807,2,2,0,0,2,,1380.0,,22,3.0,2.0,5.0,4.0,2.5,4,4,80.91922883855423,150.0,47474.40269898043,0,1,0,1,110.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008004313448859062,18989.761079592172,5,3,5,5_1,5_1,5_0_1 +26787,2,62.0,0.0,8,111,300.0,,,0,74,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2003.0,6,126809,2,1,0,0,2,,150.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,119.33908391664215,300.0,46975.27300742301,0,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006386338615905311,46975.27300742301,10,5,10,10_0,10_3,10_0_0 +26788,2,59.0,0.0,7,111,646.0,,,77,21,0.0,0.0,,922.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,0,,1,,5,126810,2,2,0,0,2,,396.0,,42,1.0,6.0,6.0,2.0,1.5,2,2,83.62340541904324,646.0,16389.546232429027,6,1,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05625537076650072,10926.364154952686,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26789,1,42.0,117.0,2,300,1200.0,0.0,0.0,63,45,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,126811,2,2,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,1608.87706843573,1200.0,40337.24783391663,1,1,1,2,135.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.029749178846827727,17537.933840833317,4,2,4_1,4_1_1,4_1_1,4_0_1_1 +26790,0,61.0,0.0,8,111,0.0,,,0,63,0.0,0.0,,100.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,126812,1,2,0,0,2,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,149.14715055478825,0.0,835.89851268169,0,4,5,0,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11963174773356725,835.89851268169,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26792,1,37.0,275.0,1,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1698.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,45.0,1,,1,126814,2,3,4,0,2,,400.0,336.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1052.31684319442,0.0,16324.751825146552,0,1,2,3,85.0,8,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10401383238086417,10202.969890716595,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +26793,2,46.0,0.0,7,120,1200.0,,,55,21,0.0,0.0,,1430.0,318.68552184119983,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,126815,2,1,0,0,1,,1100.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,76.30367445266066,1200.0,58414.18104929934,1,1,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024480356898150032,27816.276690142542,7,4,7,7_1,7_0,7_0_0 +26794,2,73.0,0.0,2,111,300.0,326.0,0.0,0,78,0.0,0.0,511.56016301161833,626.0,0.0,618.9123196283712,70,0,0,0,0,0,0,0,0,0,,2,,2,126816,2,1,0,0,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,544.149218479391,300.0,21823.69135107111,0,5,0,1,37.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02868442326871874,21823.69135107111,6,3,6,6_0,6_3,6_0_1 +26795,2,74.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,2078.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,126817,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1941.57280895,0.0,27800.5401762404,0,5,0,1,73.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07474674904971641,27800.5401762404,7,4,7,7_0,7_3,7_0_1 +26796,0,49.0,0.0,1,111,500.0,0.0,0.0,23,23,5273.414255183007,927.0290939071567,852.6002716860306,6200.0,0.0,0.0,41,1,2,1,1,1,2,2,2,2,13.0,1,,1,126818,2,1,2,0,1,,230.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1804.32179557565,500.0,107843.0,1,1,5,0,160.0,6,4,4,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05749098226125015,71895.33333333333,10,5,10,10_1,10_2,10_1_0 +26797,2,71.0,0.0,5,112,1132.0,468.0,0.0,78,74,0.0,0.0,1930.2870150971733,1600.0,0.0,888.4998944358213,31,0,0,0,0,0,0,0,0,0,,1,,3,126819,1,1,2,0,1,,160.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,927.283450052768,1132.0,43933.50645068783,6,5,0,1,130.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03641867288229961,29289.004300458557,8,4,8,8_1,8_1,8_0_0 +26798,1,61.0,265.0,5,111,0.0,,,78,86,0.0,0.0,,344.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,126820,2,2,0,0,2,,119.0,383.0,41,0.0,0.0,2.0,2.0,1.5,2,2,76.3544634777219,0.0,2401.8040569918776,6,7,2,3,41.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14322567196877847,1601.2027046612518,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26799,2,77.0,0.0,2,221,421.0,0.0,0.0,78,78,1706.4768529772214,0.0,717.8894287596378,2187.0,205.0672053586851,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,126821,2,1,2,0,1,,157.0,,41,0.0,8.0,7.0,2.0,1.5,2,2,1634.50503201342,421.0,23617.83911220831,5,5,0,1,120.0,1,2,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09259949606776333,15745.22607480554,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +26801,0,69.0,0.0,1,112,300.0,0.0,0.0,0,71,0.0,0.0,511.56016301161833,390.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126823,2,3,4,0,1,,120.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1098.91767235127,300.0,16586.810319921853,0,5,0,1,120.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023512658098681232,16586.810319921853,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +26802,1,79.0,270.0,2,111,150.0,180.0,0.0,0,77,0.0,0.0,255.78008150580916,330.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,2,,2,126824,2,1,0,1,1,648.0,0.0,337.0,11,0.0,3.0,3.0,1.0,1.0,1,1,424.671306312633,150.0,5554.716504709985,0,5,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0594089724867479,5554.716504709985,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +26803,2,58.0,0.0,1,300,300.0,0.0,0.0,37,33,3164.0485531098047,0.0,511.56016301161833,3360.0,83.13535352379125,0.0,12,2,2,2,1,1,2,2,2,2,10.0,1,,1,126825,2,1,1,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1242.86803062278,300.0,54596.868004744465,1,1,0,1,230.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06154199174406884,36397.91200316298,9,5,9,9_1,9_0,9_1_0 +26804,2,80.0,0.0,2,111,180.0,150.0,0.0,0,77,0.0,0.0,306.936097806971,330.0,0.0,284.77560719096834,50,2,2,2,2,1,2,2,2,0,,2,,2,126826,1,2,0,1,1,1032.0,120.0,324.0,11,0.0,0.0,3.0,1.0,1.0,1,1,241.290560880586,180.0,17160.97132007414,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0192296807590361,17160.97132007414,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +26805,0,44.0,0.0,6,112,0.0,0.0,0.0,68,68,0.0,0.0,0.0,132.0,182.89777775234077,0.0,43,0,0,0,0,0,0,0,0,2,2.0,1,,4,126827,2,1,1,0,1,,0.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,248.223930240152,0.0,45978.07265708271,1,1,5,0,80.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002870933738012309,21894.32031289653,6,3,6,6_1,6_0,6_0_0 +26806,1,58.0,235.0,5,111,440.0,160.0,0.0,56,68,0.0,0.0,750.2882390837069,600.0,0.0,303.7606476703662,70,0,0,0,0,0,0,0,0,0,,2,,3,126828,2,1,0,1,1,835.0,476.0,477.0,43,2.0,0.0,5.0,6.0,3.3,5,4,1679.5126956166,440.0,25903.712808110628,1,1,2,3,99.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02316270275402899,7849.609941851706,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +26807,2,79.0,0.0,2,111,291.0,0.0,0.0,78,74,0.0,0.0,496.2133581212698,291.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,126829,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,658.894189763367,291.0,56464.373675479575,5,5,0,1,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005153692161228572,37642.91578365305,9,5,9,9_0,9_4,9_0_1 +26808,2,66.0,0.0,2,111,1780.0,1400.0,0.0,74,74,0.0,0.0,3035.2569672022687,3180.0,0.0,2657.9056671157045,20,0,0,0,0,0,0,0,0,0,,1,,2,126830,2,1,3,0,1,,250.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,224.957237447639,1780.0,66367.12479393127,5,5,0,1,70.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047915289533392365,44244.74986262085,10,5,10,10_1,10_2,10_0_1 +26810,1,62.0,100.0,2,111,960.0,480.0,0.0,0,78,0.0,0.0,1636.9925216371787,1440.0,0.0,911.2819430110987,70,2,2,2,1,1,2,2,2,0,,2,,2,126832,1,1,0,1,1,708.0,0.0,520.0,11,0.0,2.0,2.0,1.0,1.0,1,1,868.198244737836,960.0,11170.120054852272,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.12891535569257087,11170.120054852272,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +26811,2,60.0,0.0,5,111,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,126833,1,2,0,1,2,,0.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,304.188250845083,250.0,20189.21780075605,0,5,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012382847243870832,20189.21780075605,5,3,5,5_0,5_4,5_0_0 +26812,2,70.0,0.0,7,111,200.0,2000.0,0.0,31,74,0.0,105.94618216081791,341.04010867441224,2280.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,0,,1,,5,126834,2,1,2,0,1,,400.0,,42,1.0,2.0,6.0,3.0,2.0,3,3,374.255415980075,200.0,144133.49899146648,1,5,0,1,195.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0158186682204599,72066.74949573324,10,5,10,10_1,10_3,10_0_0 +26813,2,36.0,0.0,7,221,1350.0,0.0,0.0,0,31,0.0,0.0,2302.0207335522828,1350.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,126835,2,1,2,0,1,,481.0,,22,1.0,2.0,5.0,2.0,1.5,2,2,1209.46363682576,1350.0,25032.695900597675,0,1,0,1,100.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05392946909756403,16688.463933731782,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +26814,0,84.0,0.0,2,111,233.0,0.0,0.0,0,86,2109.365702073203,79.45963662061344,397.31172660569024,2393.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,126836,2,1,2,0,1,,381.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,326.190321433221,233.0,43421.23888341881,0,6,0,1,120.0,7,6,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05511127875519486,43421.23888341881,10,5,10,10_1,10_2,10_0_1 +26815,2,48.0,0.0,6,120,2000.0,,,22,64,0.0,0.0,,2129.0,178.7410100761512,,50,0,0,0,0,0,0,0,0,0,,1,,4,126837,2,1,0,0,1,,800.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,4,3,93.9287263161135,2000.0,12796.877481600353,1,1,0,1,135.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1663687101061275,4128.024994064631,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +26816,2,40.0,0.0,6,112,2000.0,0.0,0.0,48,34,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,126838,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,5.0,2.4,3,2,454.720090039445,2000.0,66586.08610902377,4,1,0,1,120.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03003630513325755,27744.202545426575,7,4,7,7_1,7_1,7_0_0 +26817,2,60.0,0.0,5,111,650.0,,,68,54,0.0,291.3520009422493,,891.0,29.09737373332694,,60,2,2,2,2,1,2,2,2,2,15.0,1,,3,126839,1,1,0,0,2,,600.0,,43,2.0,1.0,3.0,3.0,2.0,3,3,108.66041954295213,650.0,37580.68327463928,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0237089888304739,18790.34163731964,5,3,5,5_1,5_2,5_0_0 +26818,2,71.0,0.0,5,111,450.0,,,22,75,0.0,0.0,,533.0,115.00390570791124,,50,0,0,0,0,0,0,0,0,0,,2,,3,126840,2,1,0,0,2,,247.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,183.8235001662293,450.0,61464.34404890357,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008671694268402558,40976.22936593572,9,5,9,9_0,9_2,9_0_0 +26819,1,37.0,150.0,1,112,1300.0,0.0,0.0,56,38,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,2,2,2,1,2,2,2,2,2,45.0,1,,1,126841,1,1,2,0,1,,240.0,1050.0,43,2.0,0.0,5.0,5.0,2.4,2,2,498.935568736849,1300.0,58666.05662584221,1,1,2,3,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.022159321331090696,24444.190260767587,7,4,7,7_1,7_0,7_1_0 +26820,2,52.0,0.0,2,111,0.0,0.0,900.0,21,67,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,50,2,2,1,2,2,2,2,1,2,15.0,2,,2,126842,2,2,0,0,1,,580.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,478.414033326912,0.0,55473.77905236325,1,1,1,2,80.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01622388118088124,22189.5116209453,6,3,6,6_0,6_2,6_0_1 +26822,1,29.0,90.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,131.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,13.0,2,,5,126844,2,1,0,1,1,360.0,0.0,500.0,32,1.0,0.0,2.0,2.0,1.3,1,1,2137.69666641113,0.0,23463.978806795,0,1,3,4,38.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0055830258405306496,18049.214466765385,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +26823,2,62.0,0.0,5,111,230.0,150.0,0.0,0,75,0.0,0.0,392.1961249755741,380.0,0.0,284.77560719096834,33,0,0,0,0,0,0,0,0,0,,2,,3,126845,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,981.234062380096,230.0,54010.9588332603,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00703560922095672,54010.9588332603,10,5,10,10_0,10_4,10_0_0 +26824,1,66.0,330.0,2,112,400.0,,,85,78,0.0,0.0,,620.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,2,126846,2,3,0,0,2,,0.0,400.0,41,0.0,0.0,3.0,4.0,2.1,2,2,108.20345536744506,400.0,5639.076419680508,6,5,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10994708243998709,2685.2744855621463,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +26825,2,23.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1680.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,,2,126847,2,3,0,0,1,,0.0,530.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1614.58722568908,0.0,24100.937408279537,0,1,2,3,49.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06970683220906004,24100.937408279537,6,3,6,6_0,6_2,6_0_1 +26826,2,31.0,0.0,5,112,338.0,1102.0,0.0,55,54,0.0,0.0,576.3577836597567,1440.0,0.0,2092.1514608296475,20,0,0,0,0,0,0,0,0,2,30.0,2,,3,126848,1,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,958.380352225633,338.0,66437.38927885226,4,1,1,2,80.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02167454223639049,36909.66071047348,9,5,9,9_0,9_0,9_0_0 +26827,2,45.0,0.0,2,120,790.0,0.0,0.0,34,33,1181.2447931609938,0.0,1347.1084292639284,1990.0,110.84713803172167,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,2,126849,2,1,2,0,1,,1000.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1100.77920490119,790.0,81086.83576082235,1,1,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02454159150900647,33786.18156700931,9,5,9,9_1,9_0,9_0_1 +26828,1,45.0,345.0,9,112,630.0,1100.0,0.0,0,52,0.0,0.0,1074.2763423243985,1730.0,0.0,2088.354452733768,42,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,126850,2,1,1,0,1,,320.0,779.0,32,1.0,0.0,6.0,5.0,2.8,4,2,1942.19002898247,630.0,31027.445765839042,0,1,2,3,120.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05575708722709993,11081.2306306568,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +26829,2,85.0,0.0,2,111,360.0,,,0,72,0.0,0.0,,510.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,126851,1,3,0,0,2,,288.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,112.1601148310336,360.0,8035.825303974911,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06346578984833445,8035.825303974911,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +26830,2,46.0,0.0,9,111,1800.0,0.0,0.0,0,52,0.0,0.0,3069.36097806971,1866.0,91.44888887617039,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,126852,2,1,1,0,1,,600.0,830.0,32,2.0,2.0,6.0,3.0,2.0,3,3,2423.61602447212,1800.0,12750.780452074352,0,4,2,3,120.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.14634398317919678,6375.390226037176,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26831,2,31.0,0.0,9,400,800.0,0.0,0.0,54,63,0.0,397.2981831030672,1364.160434697649,1100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,126853,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1482.89989067081,800.0,58819.76988486384,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018701195229991273,32677.649936035465,8,4,8,8_1,8_0,8_0_0 +26833,2,32.0,0.0,9,211,120.0,,,21,42,0.0,0.0,,208.0,121.93185183489385,,30,0,0,0,0,0,0,0,0,0,,1,2005.0,6,126855,1,3,0,0,2,,360.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,119.12190446860573,120.0,14702.927893974073,4,4,0,1,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014146842145995141,7001.394235225748,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26834,2,60.0,0.0,2,211,410.0,1250.0,0.0,0,54,0.0,30.45952737123515,699.1322227825451,1709.0,36.025319860309544,2373.130059924736,60,0,0,0,0,0,0,0,0,0,,1,,2,126856,2,2,2,0,2,,440.0,385.0,12,1.0,2.0,4.0,1.0,1.0,1,1,267.294196162544,410.0,18483.74411910887,0,4,2,3,58.0,2,3,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0924596223031026,18483.74411910887,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +26835,1,60.0,250.0,2,111,346.0,263.0,0.0,0,75,0.0,993.245457757668,589.9993880067332,1359.0,0.0,499.3065646081645,70,2,2,2,1,2,2,2,2,0,,2,,2,126857,1,3,0,0,2,,166.0,357.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2084.68299417032,346.0,11226.791030905799,0,7,2,3,47.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.12104972794620132,11226.791030905799,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26836,2,54.0,0.0,2,111,1850.0,0.0,0.0,78,67,0.0,0.0,3154.621005238313,2150.0,415.67676761895626,0.0,70,2,2,2,2,2,2,2,1,2,20.0,1,,2,126858,2,2,2,0,1,,480.0,360.0,42,1.0,3.0,4.0,2.0,1.5,2,2,261.023813479194,1850.0,45181.55995073809,5,1,2,3,85.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.0475857850491255,30121.039967158726,8,4,8,8_1,8_2,8_0_1 +26837,2,52.0,0.0,8,300,1100.0,0.0,0.0,65,54,0.0,132.4327277010224,1875.7205977092674,1265.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,3,135.0,1,2003.0,6,126859,2,1,2,0,1,,340.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,1145.90048672987,1100.0,63742.63095492105,1,1,1,2,92.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019845431245136574,42495.0873032807,9,5,9,9_1,9_0,9_0_0 +26838,1,77.0,17.0,2,111,240.0,0.0,0.0,0,75,0.0,0.0,409.2481304092947,362.0,0.0,0.0,60,2,2,1,2,1,2,2,2,0,,2,,2,126860,1,1,0,1,2,552.0,0.0,595.0,11,0.0,3.0,3.0,1.0,1.0,1,1,449.623310396457,240.0,14314.003699170182,0,5,2,3,64.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025289919410946222,14314.003699170182,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +26839,1,41.0,256.0,1,111,500.0,1200.0,0.0,0,52,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,71,2,2,2,2,1,2,2,2,2,10.0,1,,1,126861,2,2,5,0,1,,480.0,429.0,32,2.0,1.0,4.0,2.0,1.5,2,2,205.246596940532,500.0,18823.38666557456,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.09031318488022515,12548.924443716372,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +26840,1,35.0,357.0,6,211,0.0,,,47,85,0.0,0.0,,155.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,126862,1,3,0,0,2,,191.0,484.0,42,1.0,0.0,3.0,3.0,1.8,2,2,98.4435042982658,0.0,9560.348484848484,4,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016212798126098486,5311.304713804713,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26841,2,47.0,0.0,2,111,210.0,900.0,0.0,0,54,0.0,0.0,358.0921141081328,1110.0,0.0,1708.65364314581,31,1,2,2,2,1,2,2,2,3,15.0,1,,2,126863,2,2,1,0,1,,200.0,290.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1170.09215969934,210.0,18325.685348802424,0,1,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.06057072239715924,18325.685348802424,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +26842,2,56.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,566.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,90.0,2,,2,126864,2,1,0,1,1,,431.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,262.545586487514,0.0,20854.404352047906,0,1,1,2,69.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027140549806421044,20854.404352047906,5,3,5,5_0,5_4,5_0_1 +26843,1,33.0,195.0,2,211,0.0,0.0,750.0,0,43,0.0,0.0,472.7387178110578,750.0,0.0,897.5491106735105,33,0,0,0,0,0,0,0,0,2,35.0,2,,2,126865,2,1,0,1,1,1084.0,212.0,353.0,32,1.0,0.0,5.0,3.0,1.6,1,1,325.968250355157,0.0,25660.070962188427,0,1,2,3,70.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.029228290175236368,16037.544351367766,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +26844,2,65.0,0.0,9,111,580.0,0.0,0.0,0,74,0.0,370.8116375628627,989.0163151557955,860.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,126866,2,1,1,0,1,,152.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1118.99350744569,580.0,35045.965737078746,0,5,0,1,110.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024539201072439478,35045.965737078746,9,5,9,9_1,9_2,9_0_0 +26845,2,30.0,0.0,9,112,1050.0,0.0,0.0,0,63,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,126867,2,1,0,0,1,,150.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2322.26337804477,1050.0,17092.818225590403,0,1,1,2,60.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.061429308271002334,17092.818225590403,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +26846,2,74.0,0.0,7,111,660.0,,,78,77,0.0,0.0,,936.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,126868,1,2,0,0,2,,600.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,96.66834252624712,660.0,15399.87681976701,5,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06077970693886115,10266.58454651134,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +26847,1,75.0,228.0,2,111,240.0,725.0,0.0,0,78,0.0,0.0,409.2481304092947,965.0,0.0,1376.415434756347,71,0,0,0,0,0,0,0,0,0,,2,,2,126869,1,2,0,0,1,,0.0,354.0,31,0.0,2.0,4.0,2.0,1.5,2,2,1561.35077338606,240.0,24132.0,0,5,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.039988397149013755,16088.0,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +26848,2,57.0,0.0,1,111,450.0,1000.0,0.0,0,34,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,126870,2,1,1,0,1,,150.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,512.764356222544,450.0,45652.38535358053,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031761757655589314,45652.38535358053,10,5,10,10_1,10_3,10_1_0 +26849,2,35.0,0.0,2,111,630.0,130.0,0.0,34,48,0.0,0.0,1074.2763423243985,760.0,0.0,246.80552623217258,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,126871,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,213.985585602613,630.0,57912.37979227572,1,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013123273516405689,24130.158246781553,6,3,6,6_0,6_4,6_0_1 +26850,2,83.0,0.0,2,111,380.0,,,0,86,0.0,0.0,,545.0,228.62222219042596,,71,0,0,0,0,0,0,0,0,0,,1,,2,126872,1,2,0,0,2,,450.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,94.38560324489669,380.0,10317.029999999999,0,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052825280143607226,10317.029999999999,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +26851,2,41.0,0.0,1,112,300.0,1900.0,0.0,46,62,0.0,0.0,511.56016301161833,2200.0,0.0,3607.1576910855993,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,126873,2,1,1,0,1,,400.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,363.122540134443,300.0,59056.122473150856,1,1,0,1,120.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037252699768770006,39370.748315433906,9,5,9,9_1,9_1,9_1_0 +26852,2,37.0,0.0,9,111,500.0,0.0,0.0,0,64,0.0,0.0,852.6002716860306,500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2005.0,6,126874,2,1,0,0,1,,200.0,200.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2328.44289013191,500.0,21001.58567342112,0,1,2,3,20.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023807726129593285,21001.58567342112,5,3,5,5_0,5_2,5_0_0 +26853,1,40.0,127.0,7,112,0.0,0.0,0.0,81,42,0.0,0.0,0.0,1761.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,126875,2,2,2,0,1,,156.0,566.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1262.29748886279,0.0,18400.00279681045,4,1,2,3,84.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09570650719168698,12266.668531206968,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +26854,2,70.0,0.0,2,112,478.0,0.0,0.0,0,71,1023.0423655055035,0.0,815.0858597318453,1548.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126876,2,2,2,0,1,,111.0,,11,0.0,5.0,9.0,1.0,1.0,1,1,1595.83439754079,478.0,31714.32914165584,0,5,0,1,140.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04881074397272202,31714.32914165584,8,4,8,8_1,8_0,8_0_1 +26856,2,65.0,0.0,5,111,1154.0,0.0,0.0,77,75,0.0,0.0,1967.8014270513586,1776.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,126878,2,1,2,0,1,,366.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1360.07337103382,1154.0,44126.23636748294,5,5,0,1,168.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04024816404484367,29417.49091165529,8,4,8,8_1,8_3,8_0_0 +26857,2,79.0,0.0,2,111,550.0,1870.0,0.0,0,86,0.0,0.0,937.8602988546337,2420.0,0.0,3550.202569647405,71,0,0,0,0,0,0,0,0,0,,1,,2,126879,2,1,3,0,1,,500.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,2109.10157521701,550.0,12493.660374658828,0,5,0,1,87.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1936982379406231,12493.660374658828,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +26858,2,59.0,0.0,7,300,1228.0,0.0,0.0,0,68,0.0,0.0,2093.986267260891,1258.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,126880,2,1,2,0,1,,216.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1113.95027467945,1228.0,17192.517048344802,0,4,1,2,60.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07317136847749196,17192.517048344802,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +26859,1,22.0,384.0,6,221,0.0,0.0,0.0,0,52,0.0,0.0,0.0,767.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,,4,126881,2,2,5,0,1,,354.0,344.0,32,1.0,0.0,5.0,3.0,1.6,1,1,2430.03689818725,0.0,15897.670556784522,0,1,2,3,86.0,1,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04824606204162871,9936.044097990325,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +26860,2,82.0,0.0,2,111,500.0,0.0,0.0,75,78,0.0,0.0,852.6002716860306,1720.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,126882,1,3,0,1,2,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,304.870270734803,500.0,29144.6534954836,5,5,0,1,99.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.059015970125242345,19429.768996989067,5,3,5,5_0,5_3,5_0_1 +26861,2,84.0,0.0,6,112,595.0,400.0,0.0,74,74,0.0,0.0,1014.5943233063764,995.0,0.0,759.4016191759156,12,0,0,0,0,0,0,0,0,0,,1,,4,126883,2,1,2,0,1,,1200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1481.72137326288,595.0,85447.82824985043,5,5,0,1,200.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01164453234657537,56965.218833233615,10,5,10,10_1,10_1,10_0_0 +26862,2,66.0,0.0,9,112,2000.0,0.0,0.0,74,74,0.0,0.0,3410.4010867441225,2150.0,207.83838380947813,0.0,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,126884,2,1,1,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1397.70990352549,2000.0,81755.8954371556,5,5,0,1,120.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026297797712370105,54503.93029143707,10,5,10,10_1,10_0,10_0_0 +26863,2,37.0,0.0,1,112,468.0,672.0,0.0,46,37,0.0,397.2981831030672,798.0338542981247,1440.0,0.0,1275.7947202155383,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,126885,2,1,2,0,1,,1166.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,625.485085536742,468.0,76714.03785926654,1,1,1,2,90.0,10,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018771010367642352,36530.494218698346,9,5,9,9_1,9_1,9_1_0 +26864,2,47.0,0.0,6,111,3000.0,0.0,0.0,0,43,0.0,397.2981831030672,5115.6016301161835,3300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,4,126886,2,2,3,0,1,,450.0,,32,1.0,0.0,7.0,4.0,2.3,3,2,546.841021409079,3000.0,39460.38466773562,0,1,1,2,172.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08362817615151662,17156.68898597201,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +26865,2,32.0,0.0,1,111,40.0,60.0,0.0,35,35,0.0,0.0,68.20802173488245,100.0,0.0,113.91024287638734,41,0,0,0,0,0,0,0,0,1,5.0,2,,1,126887,1,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,263.994058275226,40.0,17311.60607643147,1,1,1,2,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00577647155084836,11541.070717620982,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +26866,2,58.0,0.0,2,111,642.0,180.0,0.0,78,62,0.0,52.973091080408956,1094.7387488448633,862.0,0.0,341.730728629162,71,2,2,2,1,1,1,2,2,0,,8,,2,126888,1,1,0,0,2,,300.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,1783.30836006355,642.0,35795.103568899125,5,4,0,1,90.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.02408150596186446,17897.551784449563,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +26867,2,80.0,0.0,2,221,420.0,,,0,78,0.0,0.0,,550.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,2,126889,2,2,0,0,2,,300.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,93.6579950591848,420.0,6083.35096669516,0,5,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09041069683651556,6083.35096669516,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +26868,2,53.0,0.0,1,111,600.0,1800.0,0.0,52,62,0.0,0.0,1023.1203260232367,2400.0,0.0,3417.30728629162,50,2,2,2,2,1,2,2,2,3,20.0,2,,1,126890,1,3,0,0,2,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,1411.18172748142,600.0,53363.320885848254,1,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04497471222103928,26681.660442924127,7,4,7,7_0,7_4,7_1_0 +26869,2,38.0,0.0,7,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,1083.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,90.0,2,,5,126891,2,1,0,0,1,,0.0,690.0,43,2.0,0.0,2.0,2.0,1.5,2,2,736.606001704834,0.0,10625.142259911445,1,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10192804703294639,7083.428173274297,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +26870,2,35.0,0.0,2,112,1500.0,0.0,0.0,43,64,0.0,198.6490915515336,2557.8008150580918,1680.0,41.567676761895626,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,126892,2,2,3,0,1,,350.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,893.824884332612,1500.0,50311.627938701,1,1,1,2,60.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03339188312584298,33541.08529246733,8,4,8,8_1,8_0,8_0_1 +26871,2,36.0,0.0,2,111,1200.0,0.0,0.0,0,55,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,126893,2,3,0,0,1,,206.0,427.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1696.56594320709,1200.0,17835.28046782385,0,1,2,3,41.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06728237339271943,17835.28046782385,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +26872,2,43.0,0.0,9,112,1560.0,,,31,34,0.0,0.0,,1692.0,182.89777775234077,,10,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,126894,2,1,0,0,2,,550.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,106.74794037753114,1560.0,71697.01148719093,1,1,1,2,95.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023599309997771458,34141.43404151949,9,5,9,9_1,9_0,9_0_0 +26873,2,50.0,0.0,2,111,280.0,100.0,0.0,56,54,0.0,0.0,477.4561521441771,380.0,0.0,189.8504047939789,50,1,1,2,1,2,2,2,2,3,20.0,2,,2,126895,2,3,0,1,1,684.0,0.0,344.0,43,2.0,0.0,3.0,2.0,1.5,2,2,218.597160269302,280.0,29397.554698754488,4,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.012926245189233368,19598.369799169657,5,3,5,5_0,5_4,5_0_1 +26874,0,38.0,0.0,2,111,208.0,0.0,0.0,0,53,0.0,0.0,354.6817130213887,237.0,40.18208753649911,0.0,31,0,0,0,0,0,0,0,0,2,13.0,2,,2,126896,2,2,0,1,1,720.0,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,396.040710016845,208.0,35300.46114555237,0,1,5,0,72.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006713793313429858,35300.46114555237,9,5,9,9_0,9_2,9_0_1 +26875,2,42.0,0.0,8,111,900.0,984.0,0.0,62,54,0.0,0.0,1534.680489034855,1884.0,0.0,1868.1279831727525,31,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,126897,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1451.1527695794,900.0,49161.47823193779,1,1,1,2,110.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038322688164735816,21374.555753016433,6,3,6,6_1,6_2,6_0_0 +26876,2,46.0,0.0,7,111,300.0,,,0,67,0.0,0.0,,340.0,55.423569015860835,,71,2,2,2,2,1,2,2,2,0,,1,,5,126898,2,2,0,0,2,,120.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,84.8426824595595,300.0,5214.799999999999,0,4,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.06519904886093428,5214.799999999999,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26877,2,48.0,0.0,5,111,400.0,800.0,0.0,42,46,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,4,60.0,1,,3,126899,1,2,3,0,2,,450.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,238.149964853926,400.0,80154.60399017802,1,1,1,2,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014971067665022032,40077.30199508901,9,5,9,9_1,9_2,9_0_0 +26878,2,58.0,0.0,7,111,0.0,,,54,45,0.0,0.0,,2096.0,0.0,,71,0,0,0,0,0,0,0,0,2,25.0,1,,5,126900,2,1,0,0,2,,157.0,1000.0,43,4.0,1.0,6.0,5.0,2.8,4,4,159.73004499647402,0.0,74818.6241287649,1,1,2,3,148.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02801441518615374,26720.93718884461,7,4,7,7_1,7_2,7_0_0 +26879,2,39.0,0.0,9,111,730.0,0.0,0.0,0,38,0.0,0.0,1244.7963966616046,730.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,126901,2,1,0,0,1,,68.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,297.606619897195,730.0,42879.18029127386,0,1,1,2,70.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017024579179013805,42879.18029127386,9,5,9,9_0,9_2,9_0_0 +26880,2,63.0,0.0,1,211,217.0,1042.0,0.0,78,78,0.0,0.0,370.02851791173725,1259.0,0.0,1978.24121795326,70,0,0,0,0,0,0,0,0,0,,2,,1,126902,2,2,0,1,1,,217.0,224.0,41,0.0,1.0,3.0,2.0,1.5,2,2,364.92664852297,217.0,23217.391404608203,5,5,2,3,64.0,3,3,2,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05422659152613126,15478.260936405468,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +26881,1,82.0,47.0,2,111,166.0,0.0,0.0,0,77,164.53052476170984,0.0,283.06329019976215,322.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,126903,2,1,0,1,1,214.0,0.0,279.0,11,0.0,4.0,1.0,1.0,1.0,1,1,1308.18918852079,166.0,15668.483528777517,0,5,2,3,35.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02055080821373675,15668.483528777517,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +26883,2,64.0,0.0,1,111,1250.0,0.0,0.0,77,78,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,126905,2,1,3,0,1,,470.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,1552.29476352937,1250.0,55242.73232907445,5,5,0,1,90.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022627410833951825,27621.366164537227,7,4,7,7_1,7_2,7_1_0 +26884,1,30.0,413.0,9,120,249.0,,,0,85,0.0,0.0,,438.0,261.87636359994247,,60,0,0,0,0,0,0,0,0,0,,2,2011.0,6,126906,2,1,0,0,1,,346.0,497.0,31,0.0,0.0,4.0,4.0,2.1,2,2,147.8215687860441,249.0,23454.0,0,7,2,3,70.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018674852903555896,11168.571428571428,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +26885,2,37.0,0.0,7,111,720.0,2568.0,0.0,46,46,0.0,0.0,1227.744391227884,3538.0,0.0,4875.358395109378,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,126907,2,1,3,0,1,,1296.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,605.924678610784,720.0,98834.50116594158,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0357972161366986,47064.04817425789,10,5,10,10_1,10_4,10_0_0 +26886,2,30.0,0.0,5,112,780.0,0.0,0.0,85,63,0.0,0.0,1330.0564238302077,1235.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,126908,1,1,0,1,2,500.0,290.0,240.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1034.18586295221,780.0,32771.142663055034,6,1,2,3,59.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03768559469219525,15605.306030026206,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +26887,2,21.0,0.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,383.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,1,126909,2,1,0,0,1,,256.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,972.11408283081,0.0,18802.305351011822,0,1,1,2,52.0,7,6,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02036984257249015,18802.305351011822,5,3,5,5_0,5_2,5_1_0 +26888,2,62.0,0.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1562.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,126910,2,1,2,0,1,,161.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1464.39328745534,0.0,18956.233462599255,0,5,0,1,60.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08240033565116371,18956.233462599255,5,3,5,5_1,5_2,5_1_0 +26889,0,77.0,0.0,6,112,120.0,,,0,86,0.0,0.0,,288.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,4,126911,2,2,0,0,2,,80.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,98.31566835640307,120.0,17521.01265517586,0,5,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016437406083085176,17521.01265517586,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +26890,2,68.0,0.0,1,300,600.0,0.0,0.0,77,78,2636.7071275915036,397.2981831030672,1023.1203260232367,3464.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126912,2,1,4,0,1,,200.0,,41,1.0,1.0,6.0,5.0,2.5999999999999996,3,3,701.450593300064,600.0,73405.93008034854,5,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04718964797814537,28233.050030903287,8,4,8,8_1,8_0,8_1_0 +26891,2,59.0,0.0,2,111,900.0,,,0,52,0.0,0.0,,1038.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,40.0,1,,2,126913,1,1,0,0,1,,420.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,86.72718517318023,900.0,39578.451611650744,0,1,0,1,102.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026226392335531465,26385.634407767164,7,4,7,7_1,7_3,7_0_1 +26892,2,47.0,0.0,7,111,350.0,,,85,62,0.0,0.0,,650.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,126914,2,2,0,0,2,,300.0,,42,1.0,0.0,3.0,4.0,2.3,3,2,98.57452615522115,350.0,20718.159408992964,6,1,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031373443324210534,9007.895395214333,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26893,2,59.0,0.0,5,112,510.0,1948.0,0.0,77,37,0.0,0.0,869.6522771197511,2458.0,0.0,3698.2858853867087,41,0,0,0,0,0,0,0,0,3,120.0,1,,3,126915,2,1,2,0,1,,135.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,820.624987566784,510.0,44439.001880226766,5,1,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05531177335226543,29626.001253484512,8,4,8,8_1,8_1,8_0_0 +26894,1,29.0,413.0,9,111,275.0,,,0,81,0.0,0.0,,485.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,126916,2,1,0,0,2,,80.0,439.0,32,1.0,0.0,3.0,3.0,1.6,1,1,127.6759707303335,275.0,9434.329133862557,0,4,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05140800083592522,5896.455708664098,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26896,2,78.0,0.0,2,111,750.0,600.0,0.0,0,75,0.0,0.0,1278.9004075290459,1638.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,0,,2,,2,126918,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,760.004478576344,750.0,28977.14343177343,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05652731104626184,28977.14343177343,8,4,8,8_0,8_4,8_0_1 +26897,2,85.0,0.0,1,300,240.0,0.0,0.0,0,71,1898.4291318658827,0.0,409.2481304092947,2110.0,96.99124577775646,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,126919,1,3,4,0,2,,100.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,986.633564811878,240.0,19122.118052235193,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.11034342504508077,19122.118052235193,5,3,5,5_1,5_0,5_1_0 +26898,2,45.0,0.0,9,112,1200.0,0.0,0.0,45,45,0.0,0.0,2046.2406520464733,1400.0,277.1178450793042,0.0,43,2,2,2,2,1,2,2,2,3,60.0,1,2007.0,6,126920,2,1,1,0,1,,840.0,,43,2.0,0.0,5.0,7.0,3.6,5,4,816.81229735878,1200.0,52905.32055508147,1,1,1,2,75.0,10,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.026462366834020295,14695.922376411518,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +26899,2,53.0,0.0,1,300,1075.0,0.0,0.0,0,63,0.0,0.0,1833.0905841249657,1075.0,0.0,0.0,71,1,2,2,1,2,2,2,1,2,10.0,1,,1,126921,2,2,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1252.39063066104,1075.0,22089.49217273114,0,1,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04866567287260037,22089.49217273114,6,3,6,6_1,6_0,6_1_0 +26900,2,70.0,0.0,5,111,3255.0,0.0,0.0,0,74,0.0,0.0,5550.427768676059,3255.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,126922,2,1,2,0,1,,360.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1661.64307813965,3255.0,64257.026740528025,0,5,0,1,190.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05065593858153127,64257.026740528025,10,5,10,10_1,10_2,10_0_0 +26901,2,69.0,0.0,1,111,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,126923,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,197.611668251081,500.0,16551.940220192308,0,5,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030207938969597777,16551.940220192308,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +26902,2,50.0,0.0,8,111,1100.0,,,85,22,0.0,0.0,,1320.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,2,15.0,1,1999.0,6,126924,2,1,0,0,2,,560.0,,42,2.0,1.0,4.0,4.0,2.5,4,3,88.88192437751896,1100.0,16220.325813834239,6,1,1,2,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08137937641635892,6488.130325533695,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26903,2,56.0,0.0,6,111,730.0,1372.0,0.0,77,62,0.0,0.0,1244.7963966616046,2102.0,0.0,2604.7475537733903,44,0,0,0,0,0,0,0,0,2,15.0,1,,4,126925,2,1,3,0,1,,468.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,329.729198643801,730.0,55675.693701243305,5,1,0,1,90.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037754356708680936,27837.846850621652,7,4,7,7_1,7_2,7_0_0 +26904,1,49.0,222.0,2,111,328.0,,,0,67,0.0,0.0,,420.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,,2,126926,2,1,0,0,2,,0.0,230.0,12,1.0,1.0,2.0,1.0,1.0,1,1,169.40685849316625,328.0,7385.12,0,4,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05687111380722317,7385.12,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +26905,2,42.0,0.0,2,211,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1238.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,,2,126927,2,2,2,0,1,,315.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,1593.67092624699,0.0,44020.643825038685,0,1,1,2,78.0,2,3,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028123168868689576,27512.90239064918,7,4,7,7_1,7_1,7_0_1 +26906,2,61.0,0.0,6,111,2250.0,0.0,0.0,77,37,0.0,529.7309108040896,3836.7012225871376,2650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,1,,4,126928,2,1,2,0,1,,800.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,339.458447285887,2250.0,85398.69410119997,5,1,0,1,141.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03103091947588416,42699.34705059999,9,5,9,9_1,9_2,9_0_0 +26907,1,25.0,351.0,1,212,0.0,0.0,0.0,47,52,0.0,0.0,0.0,1137.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,4.0,1,,1,126929,2,1,2,0,1,,262.0,480.0,43,2.0,0.0,3.0,3.0,1.8,2,2,930.104389730771,0.0,29531.654385407826,4,1,2,3,74.0,2,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0385010600883171,16406.474658559902,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +26908,1,75.0,125.0,2,111,298.0,830.0,0.0,0,77,0.0,0.0,508.1497619248742,1128.0,0.0,1575.7583597900248,71,0,0,0,0,0,0,0,0,0,,2,,2,126930,2,1,0,0,1,,0.0,600.0,11,0.0,10.0,3.0,1.0,1.0,1,1,1487.766371364,298.0,12349.656887859026,0,5,2,3,47.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09133856998966014,12349.656887859026,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +26909,2,62.0,0.0,7,111,240.0,,,0,21,0.0,0.0,,284.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,0,,2,,5,126931,2,2,0,0,2,,240.0,700.0,12,1.0,2.0,4.0,1.0,1.0,1,1,110.01678498603566,240.0,8920.22802431745,0,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031837751145574654,8920.22802431745,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +26910,1,51.0,262.0,2,111,600.0,0.0,0.0,0,52,0.0,0.0,1023.1203260232367,740.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,126932,1,2,3,1,1,936.0,0.0,544.0,32,4.0,1.0,4.0,5.0,3.0,5,4,656.705829835571,600.0,35460.74155704981,0,1,2,3,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.020868147915335502,11820.24718568327,2,1,2_1,2_1_1,2_4_1,2_0_1_1 +26912,2,59.0,0.0,7,111,1500.0,0.0,0.0,52,42,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,126934,2,1,2,0,1,,400.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,641.486396086999,1500.0,62187.42199481536,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02412063327090576,41458.28132987691,9,5,9,9_1,9_4,9_0_0 +26913,1,32.0,47.0,9,111,880.0,0.0,0.0,56,52,0.0,0.0,1500.5764781674138,880.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,2,2011.0,6,126935,2,2,0,0,1,,530.0,800.0,43,2.0,0.0,3.0,4.0,2.1,2,2,11685.3728980945,880.0,25925.157961412093,1,1,2,3,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0339438626105894,12345.313314958139,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +26914,0,46.0,0.0,9,211,0.0,,,0,81,0.0,0.0,,300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,126936,2,3,0,0,2,,0.0,,32,3.0,0.0,2.0,6.0,3.1,4,3,7.559826641115449,0.0,1914.3022650703942,0,4,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1567150629626237,617.5168597001272,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +26915,2,31.0,0.0,1,111,700.0,0.0,0.0,56,47,1054.6828510366015,0.0,1193.6403803604428,1820.0,166.2707070475825,0.0,31,1,2,2,1,2,2,2,2,2,10.0,2,,1,126937,1,3,0,0,1,,305.0,605.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1436.99485617018,700.0,48828.58992803679,1,1,2,3,85.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.03727324509436587,27126.99440446488,7,4,7,7_0,7_3,7_1_0 +26916,2,54.0,0.0,2,111,122.0,268.0,0.0,0,52,0.0,0.0,208.03446629139145,484.0,0.0,508.79908484786347,70,2,2,2,1,2,2,2,2,2,10.0,2,,2,126938,2,1,0,1,1,772.0,200.0,302.0,12,1.0,1.0,2.0,1.0,1.0,1,1,597.854714901379,122.0,15554.501265382762,0,1,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.031116394652727544,15554.501265382762,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +26917,2,64.0,0.0,6,111,2097.0,0.0,0.0,0,77,0.0,0.0,3575.805539451212,2132.0,48.49562288887823,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,126939,2,1,2,0,1,,654.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,608.817930600401,2097.0,35026.07274662085,0,5,0,1,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06086894227117385,23350.715164413898,6,3,6,6_1,6_4,6_0_0 +26918,1,27.0,318.0,2,111,250.0,260.0,0.0,0,54,0.0,0.0,426.3001358430153,510.0,0.0,493.61105246434516,50,2,1,2,2,1,2,2,2,0,,2,,2,126940,1,2,0,1,2,274.0,0.0,450.0,32,1.0,0.0,3.0,3.0,1.6,1,1,389.98872546659,250.0,18736.0,0,1,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.027220324508966696,11710.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +26919,2,56.0,0.0,1,111,0.0,0.0,2051.0,78,52,0.0,0.0,1292.7828136406395,2051.0,0.0,2454.4976346551603,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,126941,2,1,1,0,1,,228.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,67.6907197852583,0.0,39778.35931726211,5,1,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051560698711622166,26518.906211508074,7,4,7,7_1,7_3,7_1_0 +26920,2,63.0,0.0,6,111,390.0,840.0,0.0,0,75,0.0,0.0,665.0282119151038,1230.0,0.0,1594.7434002694229,33,0,0,0,0,0,0,0,0,0,,1,,4,126942,1,3,3,0,1,,350.0,544.0,11,0.0,5.0,4.0,1.0,1.0,1,1,794.898206766004,390.0,27831.813249217827,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04419403037042753,27831.813249217827,7,4,7,7_1,7_4,7_0_0 +26921,2,29.0,0.0,5,211,1800.0,,,0,67,0.0,0.0,,2040.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,3,126943,2,1,0,0,2,,600.0,,32,1.0,3.0,5.0,4.0,2.1,2,2,150.78819221345245,1800.0,30910.07047620091,0,4,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06599790840239883,14719.081179143292,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +26922,1,45.0,250.0,2,111,0.0,0.0,0.0,54,45,0.0,0.0,0.0,1034.0,0.0,0.0,50,2,2,1,2,1,2,2,2,2,25.0,2,,2,126944,2,2,0,2,1,,200.0,450.0,43,2.0,0.0,5.0,2.0,1.5,2,2,215.702551076812,0.0,14914.420268126376,4,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06932887644381072,9942.946845417584,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +26923,2,39.0,0.0,2,111,560.0,1700.0,0.0,54,53,0.0,0.0,954.9123042883542,2260.0,0.0,3227.4568814976415,42,0,0,0,0,0,0,0,0,2,60.0,1,,2,126945,2,2,1,0,1,,450.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,793.404541774231,560.0,56094.31431207552,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040289288276646,23372.6309633648,6,3,6,6_1,6_4,6_0_1 +26924,2,39.0,0.0,1,111,0.0,0.0,1260.0,0,63,0.0,0.0,794.2010459225771,1260.0,0.0,1507.882505931498,43,0,0,0,0,0,0,0,0,0,,2,,1,126946,2,2,0,0,1,,150.0,483.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1862.08708719445,0.0,20134.452005672196,0,1,2,3,75.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06257930435082305,20134.452005672196,5,3,5,5_0,5_3,5_1_0 +26925,2,46.0,0.0,8,112,500.0,1200.0,0.0,0,34,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,126947,2,1,1,0,1,,600.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,610.326764332542,500.0,41433.95706153716,0,1,1,2,169.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041029149049780174,41433.95706153716,9,5,9,9_1,9_1,9_0_0 +26926,2,55.0,0.0,8,111,700.0,,,11,11,0.0,0.0,,780.0,110.84713803172167,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,126948,2,1,0,0,1,,1500.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,145.54170689219424,700.0,141450.66634301667,1,1,0,1,170.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0055142900359939385,94300.44422867778,10,5,10,10_1,10_2,10_0_0 +26927,2,81.0,0.0,1,111,230.0,810.0,0.0,77,78,0.0,0.0,392.1961249755741,1040.0,0.0,1537.788278831229,71,0,0,0,0,0,0,0,0,0,,2,,1,126949,2,1,0,0,1,,111.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1062.81029203473,230.0,25813.079306330666,5,5,0,1,70.0,4,3,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.040289652685680924,17208.719537553778,4,2,4_0,4_0_0,4_1_0,4_1_0_0 +26928,2,74.0,0.0,5,112,600.0,,,0,77,0.0,0.0,,640.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,0,,1,,3,126950,2,2,0,0,2,,280.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,107.42847528221172,600.0,33685.1856107958,0,5,0,1,35.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01899945000733158,33685.1856107958,9,5,9,9_1,9_2,9_0_0 +26929,2,61.0,0.0,5,111,400.0,90.0,0.0,77,56,0.0,0.0,682.0802173488245,490.0,0.0,170.865364314581,71,1,2,2,1,2,2,2,2,0,,2,,3,126951,2,2,0,1,1,122.0,0.0,324.0,41,0.0,1.0,5.0,2.0,1.5,2,2,287.405020097616,400.0,29657.72133147611,5,5,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01652183573118805,19771.814220984073,5,3,5,5_0,5_2,5_0_0 +26930,2,25.0,0.0,2,112,0.0,0.0,0.0,55,53,0.0,0.0,0.0,1599.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,55.0,1,,2,126952,2,1,2,0,1,,165.0,950.0,43,2.0,0.0,6.0,2.0,1.5,2,2,749.373047014414,0.0,39916.58117901211,1,1,2,3,110.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040058540906322514,26611.054119341406,7,4,7,7_1,7_2,7_0_1 +26931,2,37.0,0.0,6,111,450.0,120.0,0.0,0,45,0.0,0.0,767.3402445174275,570.0,0.0,227.8204857527747,44,0,0,0,0,0,0,0,0,1,20.0,2,,4,126953,2,1,0,1,2,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1399.06857054324,450.0,41889.0,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013607390961827687,41889.0,9,5,9,9_0,9_4,9_0_0 +26933,2,80.0,0.0,2,112,360.0,0.0,0.0,0,77,1518.7433054927062,0.0,613.872195613942,1800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,126955,2,1,2,0,1,,134.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1624.2257455205,360.0,22212.626953005325,0,5,0,1,81.0,9,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08103498986446822,22212.626953005325,6,3,6,6_1,6_2,6_0_1 +26934,2,47.0,0.0,8,111,1750.0,0.0,0.0,62,64,0.0,0.0,2984.100950901107,1850.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,126956,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,6.0,3.5,6,4,692.166798631204,1750.0,49398.7808720259,1,1,1,2,117.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03745031693783437,14113.9373920074,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +26935,1,32.0,176.0,1,111,540.0,830.0,0.0,85,47,0.0,0.0,920.8082934209131,1370.0,0.0,1575.7583597900248,31,0,0,0,0,0,0,0,0,0,,1,,1,126957,2,1,2,0,1,,440.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,363.838600574975,540.0,36726.37861211898,6,1,1,2,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03730288832637387,15302.657755049575,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +26936,2,81.0,0.0,2,111,1500.0,0.0,0.0,72,72,2109.365702073203,0.0,2557.8008150580918,3550.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,126958,2,1,2,0,1,,255.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1543.46819973341,1500.0,41037.80107218896,5,5,0,1,152.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08650560963915319,27358.534048125974,7,4,7,7_1,7_2,7_0_1 +26937,2,32.0,0.0,9,111,280.0,,,55,38,0.0,0.0,,280.0,0.0,,20,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,126959,2,1,0,0,2,,300.0,850.0,43,2.0,0.0,3.0,2.0,1.5,2,2,256.9752720275884,280.0,70209.67701645746,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003988054238368975,46806.45134430497,10,5,10,10_1,10_2,10_0_0 +26938,2,50.0,0.0,2,111,0.0,0.0,0.0,42,38,0.0,0.0,0.0,1758.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,,2,126960,2,1,1,0,1,,842.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,1109.07643427719,0.0,92602.070366468,1,1,0,1,150.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018984456751806995,33072.16798802429,8,4,8,8_1,8_2,8_0_1 +26939,2,40.0,0.0,2,400,846.0,0.0,0.0,0,68,0.0,0.0,1442.5996596927637,846.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,1.0,1,,2,126961,2,1,3,0,1,,212.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2421.07185335303,846.0,19355.988059260864,0,1,2,3,55.0,0,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04370740452049575,19355.988059260864,5,3,5,5_1,5_1,5_0_1 +26940,2,55.0,0.0,7,400,510.0,0.0,0.0,11,11,0.0,0.0,869.6522771197511,710.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,126962,2,3,2,0,2,,500.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,1334.50795579747,510.0,19758.240874965286,1,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035934373130333014,7903.296349986114,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +26941,2,44.0,0.0,1,300,620.0,0.0,0.0,55,48,0.0,0.0,1057.224336890678,1820.0,1662.707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126963,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1532.12779135381,620.0,56787.04433619946,1,1,1,2,165.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03204956379178592,27041.449683904506,7,4,7,7_1,7_0,7_1_0 +26942,2,42.0,0.0,8,111,720.0,,,55,64,0.0,0.0,,770.0,69.27946126982604,,43,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,126964,2,1,0,0,1,,260.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,103.30609661847421,720.0,45269.246528030104,1,1,0,1,130.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017009339873223346,25149.58140446117,7,4,7,7_1,7_3,7_0_0 +26943,2,34.0,0.0,9,112,1056.0,0.0,0.0,33,48,0.0,331.081819252556,1800.6917738008965,1306.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,126965,2,1,1,0,1,,239.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2138.07878786448,1056.0,35505.710918144636,1,1,1,2,108.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03678281510855735,19725.394954524796,5,3,5,5_1,5_0,5_0_0 +26944,2,41.0,0.0,1,112,0.0,0.0,0.0,0,54,0.0,0.0,0.0,790.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,80.0,2,,1,126966,2,1,0,0,1,,337.0,670.0,12,1.0,0.0,2.0,1.0,1.0,1,1,782.726267016067,0.0,27677.790648745926,0,1,2,3,50.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0285427406408898,27677.790648745926,7,4,7,7_0,7_1,7_1_0 +26945,2,46.0,0.0,7,111,2009.0,0.0,0.0,46,37,0.0,0.0,3425.7478916344708,2009.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,5,126967,2,1,0,0,1,,0.0,1321.0,43,2.0,0.0,4.0,4.0,2.3,3,2,877.986712674947,2009.0,88449.14528302352,1,1,2,3,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022713616887664795,38456.15012305371,9,5,9,9_0,9_4,9_0_0 +26946,2,64.0,0.0,9,111,600.0,,,0,75,0.0,0.0,,864.0,365.79555550468154,,42,0,0,0,0,0,0,0,0,0,,1,2006.0,6,126968,1,1,0,0,2,,300.0,,21,0.0,2.0,3.0,3.0,1.8,2,2,122.73973837996122,600.0,71178.19418748992,0,5,1,2,77.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01213854902983552,39543.44121527218,9,5,9,9_1,9_2,9_0_0 +26947,1,34.0,202.0,5,111,180.0,440.0,0.0,0,67,0.0,0.0,306.936097806971,620.0,0.0,835.3417810935072,71,0,0,0,0,0,0,0,0,0,,2,,3,126969,1,2,0,1,1,,259.0,188.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1294.84802070735,180.0,8039.71179148211,0,4,2,3,63.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0771171922676228,8039.71179148211,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26948,1,38.0,146.0,1,221,0.0,0.0,0.0,0,67,0.0,0.0,0.0,797.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,126970,2,2,0,0,2,,144.0,320.0,12,1.0,1.0,2.0,1.0,1.0,1,1,3481.75805831794,0.0,15294.0402397571,0,4,2,3,50.0,1,2,7,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.0521118022122229,15294.0402397571,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +26949,1,43.0,400.0,9,111,0.0,,,0,52,0.0,0.0,,1141.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,126971,1,2,0,0,2,,287.0,376.0,32,1.0,1.0,5.0,4.0,2.1,2,1,134.57106289728745,0.0,22050.33127231492,0,4,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0517452543414879,10500.15774872139,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +26950,1,26.0,421.0,6,111,211.0,,,0,85,0.0,26.486545540204478,,349.0,163.49952859678947,,50,0,0,0,0,0,0,0,0,0,,2,,4,126972,2,1,0,0,2,,217.0,550.0,31,0.0,2.0,3.0,3.0,1.8,2,2,86.42234690813028,211.0,23718.919172977035,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014713992549779236,13177.177318320575,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +26951,2,23.0,0.0,7,111,157.0,0.0,0.0,0,35,0.0,0.0,267.7164853094136,157.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,8,,5,126973,2,1,0,0,1,,0.0,1200.0,22,3.0,0.0,4.0,5.0,3.0,5,5,155.770041949363,157.0,57668.76686710486,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0027224442021068287,19222.922289034952,5,3,5,5_0,5_4,5_0_0 +26952,2,70.0,0.0,2,211,800.0,2500.0,0.0,77,77,0.0,966.7589122174635,1364.160434697649,4030.0,0.0,4746.260119849472,71,0,0,0,0,0,0,0,0,0,,1,,2,126974,1,1,1,0,1,,750.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1158.69158490126,800.0,57663.77598222176,5,5,0,1,140.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06988789636742629,38442.51732148117,9,5,9,9_1,9_1,9_0_1 +26953,2,79.0,0.0,7,111,380.0,,,75,75,0.0,0.0,,860.0,665.08282819033,,70,0,0,0,0,0,0,0,0,0,,1,,5,126975,2,2,0,0,2,,250.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,119.76000018324545,380.0,35741.52719572281,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024061646702744036,23827.68479714854,6,3,6,6_1,6_2,6_0_0 +26954,1,30.0,200.0,9,111,250.0,0.0,0.0,0,21,0.0,0.0,426.3001358430153,250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2006.0,6,126976,1,2,0,1,1,300.0,120.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,561.292959064531,250.0,697.402903793272,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.3584728406495227,697.402903793272,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +26955,2,26.0,0.0,2,111,0.0,0.0,0.0,52,54,0.0,0.0,0.0,1296.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,,2,126977,2,2,1,0,1,,369.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,379.274013825034,0.0,35101.94101509019,1,1,1,2,120.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03692103520551341,23401.294010060126,6,3,6,6_1,6_3,6_0_1 +26956,1,38.0,366.0,5,111,450.0,0.0,0.0,0,85,0.0,0.0,767.3402445174275,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,126978,1,1,0,1,1,417.0,0.0,308.0,31,0.0,0.0,3.0,5.0,2.2,1,1,618.495401117128,450.0,12223.184073806962,0,6,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036815284567652394,5555.992760821346,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +26957,1,53.0,247.0,2,111,599.0,,,0,77,0.0,0.0,,731.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,126979,1,2,0,0,2,,367.0,445.0,31,1.0,1.0,3.0,2.0,1.5,2,1,117.12994619432978,599.0,9383.352690569802,0,7,2,3,39.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07790392454656953,6255.568460379868,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +26958,2,51.0,0.0,7,111,2350.0,0.0,0.0,77,43,0.0,198.6490915515336,4007.221276924344,2551.0,70.66505049522257,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,5,126980,2,1,2,0,1,,330.0,,42,1.0,3.0,5.0,3.0,2.0,3,3,1501.80390820972,2350.0,65411.29001505581,5,1,0,1,130.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03899938373655117,32705.645007527906,8,4,8,8_1,8_2,8_0_0 +26959,2,65.0,0.0,5,112,1200.0,900.0,0.0,77,77,0.0,238.3789098618403,2046.2406520464733,2280.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,1,,3,126981,2,1,2,0,1,,750.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,820.624987566784,1200.0,50210.506145696854,5,5,0,1,120.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04540882327264492,33473.670763797905,8,4,8,8_1,8_1,8_0_0 +26960,2,42.0,0.0,1,111,800.0,0.0,0.0,52,37,1476.555991451242,0.0,1364.160434697649,2278.0,108.07595958092864,0.0,10,1,2,2,1,1,2,2,2,2,40.0,1,,1,126982,1,2,3,0,1,,560.0,900.0,43,2.0,0.0,8.0,6.0,2.8999999999999995,3,2,255.151401867686,800.0,62812.85118001855,1,1,2,3,120.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03626646390356272,21659.603855178815,6,3,6,6_1,6_3,6_1_0 +26961,2,44.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,187.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,126983,2,1,0,0,1,,69.0,454.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1758.20984905678,0.0,14756.0,0,1,2,3,37.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.012672811059907835,14756.0,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +26962,1,38.0,80.0,1,111,340.0,0.0,0.0,0,85,0.0,0.0,579.7681847465008,340.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,1,126984,1,3,0,0,2,,0.0,499.0,11,0.0,0.0,1.0,1.0,1.0,1,1,849.473658374042,340.0,12659.540291272358,0,7,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.026857215363057074,12659.540291272358,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +26963,2,21.0,0.0,1,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1263.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,1,126985,2,1,0,0,1,,0.0,800.0,22,2.0,0.0,3.0,2.0,1.5,2,2,2312.06189409301,0.0,25811.322175309106,0,1,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04893201485076093,17207.54811687274,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +26964,1,59.0,255.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1858.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,126986,1,1,4,0,2,,125.0,550.0,11,0.0,2.0,4.0,1.0,1.0,1,1,577.877078118795,0.0,4897.154133533647,0,7,2,3,100.0,8,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.379404027183298,4897.154133533647,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +26965,1,83.0,182.0,2,111,191.0,0.0,0.0,0,78,0.0,0.0,325.6933037840637,251.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,126987,2,3,0,1,2,700.0,0.0,250.0,11,0.0,2.0,3.0,1.0,1.0,1,1,316.824217337637,191.0,10367.990150230047,0,5,2,3,77.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024209127937339984,10367.990150230047,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +26966,2,70.0,0.0,2,111,480.0,,,0,86,0.0,0.0,,618.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,126988,2,2,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,119.99137961223458,480.0,5849.524463866788,0,6,0,1,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10564961371090247,5849.524463866788,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +26967,2,54.0,0.0,1,111,280.0,300.0,0.0,0,46,0.0,0.0,477.4561521441771,580.0,0.0,569.5512143819367,31,2,2,2,2,2,2,2,1,3,30.0,2,,1,126989,1,2,0,1,1,70.0,300.0,423.0,32,1.0,0.0,3.0,3.0,1.8,2,2,777.145449886551,280.0,18256.6727168482,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.031769206196304654,10142.595953804555,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +26968,2,23.0,0.0,1,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,1207.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,1,126990,2,2,0,0,1,,0.0,900.0,43,2.0,0.0,2.0,2.0,1.5,2,2,287.551088489209,0.0,13037.675264574178,1,1,3,4,26.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09257785421912192,8691.783509716119,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +26969,2,48.0,0.0,7,111,1200.0,,,85,21,0.0,0.0,,1450.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,5,126991,2,2,0,0,2,,600.0,,42,1.0,2.0,4.0,5.0,2.8,4,2,78.79134763241706,1200.0,23365.133362619217,6,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06205828049412237,8344.69048664972,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +26970,2,49.0,0.0,1,112,500.0,0.0,0.0,52,46,0.0,529.7309108040896,852.6002716860306,900.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,126992,2,2,1,0,1,,600.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,876.819963568953,500.0,42532.27216396073,1,1,1,2,120.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021160402541640026,17721.780068316973,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +26971,2,27.0,0.0,2,300,870.0,0.0,0.0,53,67,1145.3855762257492,405.2441467651285,1483.5244727336933,2306.0,60.965925917446924,0.0,71,1,2,2,1,1,2,2,2,0,,1,,2,126993,1,3,4,0,1,,440.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1676.85926416383,870.0,32615.452295855426,1,1,1,2,96.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.07070268347292036,18119.69571991968,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +26972,0,72.0,0.0,9,211,0.0,0.0,1438.0,72,21,0.0,0.0,906.3977016164016,1438.0,0.0,1720.9008281980111,70,0,0,0,0,0,0,0,0,0,,1,2007.0,6,126994,2,1,1,0,1,,235.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2452.44975804714,0.0,47840.0,5,5,5,0,190.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030058528428093645,31893.333333333332,8,4,8,8_1,8_1,8_0_0 +26973,2,48.0,0.0,9,111,372.0,,,0,52,0.0,0.0,,416.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,126995,2,2,0,0,2,,500.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,129.8263785995442,372.0,28394.629324155147,0,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014650657885014587,28394.629324155147,8,4,8,8_1,8_3,8_0_0 +26974,1,48.0,300.0,2,211,700.0,0.0,0.0,85,68,0.0,662.163638505112,1193.6403803604428,1630.0,595.803366920504,0.0,50,2,2,2,1,1,2,2,2,0,,8,,2,126996,1,3,0,1,1,,500.0,420.0,42,2.0,0.0,5.0,8.0,3.8999999999999995,5,4,299.311221460976,700.0,14035.812953304778,6,4,2,3,80.0,2,3,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,1,0,0,1,0.11613149914599077,3598.9263982832767,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +26975,2,74.0,0.0,2,112,1500.0,0.0,0.0,86,72,0.0,397.2981831030672,2557.8008150580918,1950.0,207.83838380947813,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,126997,2,2,2,0,2,,400.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1404.93913463747,1500.0,21686.414039328258,5,5,0,1,120.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08991804714526246,14457.609359552172,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +26976,2,31.0,0.0,9,211,900.0,,,43,43,0.0,0.0,,966.0,91.44888887617039,,44,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,126998,2,1,0,0,2,,540.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,144.03006889888394,900.0,27470.275115008746,1,1,1,2,128.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035165283054344555,15261.263952782636,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +26977,1,21.0,213.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,103.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,2.0,2,,4,126999,2,1,0,1,1,200.0,103.0,196.0,12,1.0,0.0,1.0,1.0,1.0,1,1,336.586300810632,0.0,8465.446018140685,0,4,2,3,35.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.012167108475948027,8465.446018140685,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26978,2,75.0,0.0,2,211,240.0,,,0,72,0.0,0.0,,384.0,199.524848457099,,70,0,0,0,0,0,0,0,0,0,,1,,2,127000,2,2,0,0,2,,360.0,,21,1.0,2.0,4.0,2.0,1.5,2,2,88.14430222728718,240.0,16531.88085769351,0,5,0,1,68.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023227847049314795,11021.253905129008,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +26979,1,38.0,400.0,2,111,510.0,0.0,0.0,0,85,0.0,0.0,869.6522771197511,510.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,127001,1,3,0,1,2,1310.0,0.0,419.0,31,0.0,0.0,4.0,4.0,1.9,1,1,1069.49261392447,510.0,12332.147067813667,0,6,2,3,90.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.041355329059533874,6490.60371990193,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +26980,2,72.0,0.0,2,111,1560.0,0.0,0.0,78,78,0.0,0.0,2660.1128476604154,1740.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127002,2,1,2,0,1,,350.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1442.70818403647,1560.0,33013.000756898466,5,5,0,1,94.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.052706508348424094,22008.667171265643,6,3,6,6_1,6_3,6_0_1 +26981,2,45.0,0.0,5,111,480.0,,,52,63,0.0,0.0,,612.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,127003,2,1,0,0,1,,280.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,110.38843462366562,480.0,21088.093019218337,4,4,0,1,87.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029021116297346678,10544.046509609168,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +26982,0,20.0,0.0,2,400,0.0,,,0,63,0.0,0.0,,985.0,0.0,,44,0,0,0,0,0,0,0,0,0,,1,,2,127004,2,1,0,0,2,,275.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,93.34754261361955,0.0,3773.226364051954,0,4,5,0,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2610498032623302,3773.226364051954,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +26983,2,59.0,0.0,6,211,3000.0,0.0,0.0,85,47,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,42,2,2,1,1,2,2,2,2,2,40.0,1,,4,127005,2,1,2,0,1,,600.0,,42,2.0,0.0,5.0,4.0,2.5,4,4,1730.75239051003,3000.0,69163.22208719411,7,1,0,1,170.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04337565413331811,27665.288834877643,7,4,7,7_1,7_1,7_0_0 +26984,2,79.0,0.0,1,111,300.0,550.0,0.0,72,78,0.0,0.0,511.56016301161833,850.0,0.0,1044.177226366884,70,0,0,0,0,0,0,0,0,0,,2,,1,127006,1,2,0,0,2,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,398.004728251046,300.0,26904.977738758735,5,5,0,1,51.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03159266691291508,17936.651825839155,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +26985,2,49.0,0.0,2,112,864.0,0.0,0.0,52,38,1898.4291318658827,0.0,1473.293269473461,2732.0,94.22006732696343,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,127007,2,1,2,0,1,,600.0,,43,2.0,1.0,6.0,4.0,2.5,4,2,618.330325328379,864.0,69706.37167854347,1,1,1,2,100.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03919297381592084,27882.548671417386,7,4,7,7_1,7_0,7_0_1 +26986,2,62.0,0.0,1,111,190.0,1005.0,0.0,0,75,0.0,0.0,323.9881032406916,1195.0,0.0,1907.996568179488,30,2,2,2,2,1,2,2,2,0,,1,,1,127008,2,2,2,0,1,,245.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,407.802024542016,190.0,6590.338311325493,0,7,0,1,130.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.18132604785195824,6590.338311325493,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +26987,2,31.0,0.0,7,112,0.0,0.0,450.0,0,43,0.0,0.0,283.6432306866347,450.0,0.0,538.5294664041063,33,0,0,0,0,0,0,0,0,2,20.0,2,,5,127009,1,2,0,0,1,,100.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2932.37514959938,0.0,22901.50154922079,0,1,1,2,37.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019649366616107798,22901.50154922079,6,3,6,6_0,6_1,6_0_0 +26988,2,60.0,0.0,7,300,504.0,,,77,52,0.0,0.0,,1354.0,432.30383832371456,,50,0,0,0,0,0,0,0,0,2,3.0,1,,5,127010,1,3,0,0,2,,200.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,111.50975662097113,504.0,20778.0,6,1,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06516507844835884,13852.0,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +26989,1,51.0,308.0,7,111,164.0,0.0,0.0,0,56,0.0,0.0,279.65288911301803,164.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,5,127011,2,2,0,1,1,570.0,0.0,514.0,22,2.0,1.0,3.0,2.0,1.5,2,2,702.818126555382,164.0,7236.452119309262,0,4,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.022663039469630903,4824.301412872842,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +26991,2,56.0,0.0,2,221,1011.0,0.0,0.0,0,42,0.0,0.0,1723.9577493491538,1071.0,83.13535352379125,0.0,30,0,0,0,0,0,0,0,0,2,15.0,2,,2,127013,2,2,0,0,1,,100.0,,22,2.0,2.0,7.0,2.0,1.5,2,2,3319.8335720002,1011.0,27633.350448355835,0,1,0,1,100.0,1,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03875751519894772,18422.233632237225,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +26992,2,40.0,0.0,1,111,1717.0,0.0,0.0,45,37,0.0,0.0,2927.829332969829,1773.0,77.59299662220518,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,127014,2,1,1,0,1,,362.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,239.165146685835,1717.0,100965.8497529827,1,1,1,2,110.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017560392987705457,48078.976072848905,10,5,10,10_1,10_3,10_1_0 +26993,1,69.0,93.0,5,111,264.0,600.0,0.0,85,78,0.0,0.0,450.1729434502241,864.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,3,127015,1,2,0,1,1,430.0,0.0,218.0,41,0.0,7.0,3.0,2.0,1.5,2,2,695.792652098109,264.0,12515.513943126107,6,5,2,3,54.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06903432043831764,8343.675962084071,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +26994,2,64.0,0.0,6,112,1940.0,0.0,0.0,75,63,0.0,0.0,3308.089054141799,1940.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,127016,2,1,1,0,1,,440.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1181.160201025,1940.0,36831.87321674835,5,5,0,1,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05267177122878005,24554.582144498898,7,4,7,7_1,7_0,7_0_0 +26995,2,63.0,0.0,2,111,332.0,158.0,0.0,77,75,0.0,0.0,566.1265803995243,490.0,0.0,299.96363957448665,50,0,0,0,0,0,0,0,0,0,,2,,2,127017,2,1,0,1,1,832.0,0.0,453.0,41,0.0,4.0,5.0,2.0,1.5,2,2,240.993245057629,332.0,34697.11491105559,5,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0141222116379443,23131.40994070373,6,3,6,6_0,6_4,6_0_1 +26996,2,65.0,0.0,9,400,1300.0,0.0,0.0,22,78,527.3414255183008,397.2981831030672,2216.7607063836795,2200.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,127018,2,1,1,0,1,,140.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1923.16155323891,1300.0,24019.244551304826,1,5,1,2,95.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0915932220641172,16012.829700869885,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +26997,1,35.0,231.0,8,111,0.0,0.0,0.0,64,68,0.0,0.0,0.0,1378.0,0.0,0.0,71,2,2,2,2,2,1,2,2,0,,1,,6,127019,2,3,2,0,1,,474.0,632.0,43,2.0,0.0,4.0,4.0,2.1,2,2,298.464911329651,0.0,25654.05425561283,1,1,2,3,100.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.05371470669976105,12216.216312196586,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +26999,2,46.0,0.0,9,211,1309.0,0.0,0.0,34,48,0.0,0.0,2232.107511274028,1309.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,2006.0,6,127021,2,1,1,0,1,,410.0,720.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1148.34361705904,1309.0,56619.65915890589,1,1,2,3,108.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023119178381597574,31455.36619939216,8,4,8,8_1,8_1,8_0_0 +27000,2,53.0,0.0,2,111,1500.0,2000.0,0.0,31,31,0.0,0.0,2557.8008150580918,3500.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,127022,2,1,2,0,1,,2000.0,,43,2.0,1.0,12.0,4.0,2.5,4,4,777.060766531783,1500.0,709099.5630840434,1,1,0,1,260.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004935837197216232,283639.8252336174,10,5,10,10_1,10_4,10_0_1 +27001,2,71.0,0.0,1,400,1100.0,0.0,0.0,86,78,0.0,794.5963662061343,1875.7205977092674,1820.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127023,2,1,4,0,1,,140.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1805.75122819931,1100.0,20494.31012095972,5,5,0,1,95.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08880513612110658,13662.873413973146,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +27002,2,30.0,0.0,2,111,418.0,686.0,0.0,55,47,0.0,0.0,712.7738271295216,1104.0,0.0,1302.3737768866952,71,1,2,2,2,1,2,2,2,2,5.0,2,,2,127024,1,2,0,1,1,80.0,0.0,307.0,43,2.0,0.0,2.0,2.0,1.5,2,2,936.007120354882,418.0,20909.564620338406,4,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05279880380322011,13939.709746892271,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +27003,0,87.0,0.0,2,111,335.0,618.0,0.0,0,78,0.0,0.0,571.2421820296405,953.0,0.0,1173.2755016267895,70,0,0,0,0,0,0,0,0,0,,1,,2,127025,2,1,1,0,1,,130.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1069.64835856013,335.0,20821.00131923876,0,5,0,1,50.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.045771093589020664,20821.00131923876,5,3,5,5_1,5_2,5_0_1 +27004,1,53.0,190.0,5,112,300.0,685.0,0.0,0,52,0.0,0.0,511.56016301161833,985.0,0.0,1300.4752728387555,50,0,0,0,0,0,0,0,0,0,,2,,3,127026,2,2,0,0,1,,0.0,462.0,32,2.0,0.0,4.0,2.0,1.5,2,2,1272.04193232263,300.0,16021.422101716136,0,4,2,3,80.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.061480185326026185,10680.948067810757,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +27005,1,33.0,500.0,2,111,400.0,400.0,0.0,85,21,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,71,2,2,2,1,2,2,2,2,0,,2,,2,127027,2,3,0,1,1,720.0,0.0,400.0,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,277.215952075594,400.0,16642.730541508237,6,1,2,3,91.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.04806903518654821,5547.576847169414,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27006,2,42.0,0.0,6,111,798.0,0.0,0.0,52,63,0.0,0.0,1360.750033610905,798.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,30.0,2,,4,127028,2,1,0,1,1,,0.0,,43,2.0,1.0,5.0,5.0,2.6,3,2,339.64005253413,798.0,39055.43032144959,1,1,1,2,115.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0204324979505278,15021.319354403688,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +27007,2,58.0,0.0,2,111,360.0,,,0,21,0.0,0.0,,430.0,96.99124577775646,,50,0,0,0,0,0,0,0,0,0,,2,,2,127029,1,3,0,0,2,,180.0,174.0,12,1.0,2.0,3.0,1.0,1.0,1,1,91.63151137864757,360.0,12336.475348294813,0,1,2,3,49.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03485598502488282,12336.475348294813,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +27008,1,68.0,140.0,2,111,230.0,650.0,0.0,0,78,0.0,0.0,392.1961249755741,880.0,0.0,1234.027631160863,71,2,2,2,2,1,2,2,2,0,,1,,2,127030,2,2,5,0,1,,250.0,402.0,11,0.0,4.0,2.0,1.0,1.0,1,1,332.315970196788,230.0,9601.24036243379,0,5,2,3,51.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.09165482445821525,9601.24036243379,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +27009,2,54.0,0.0,6,112,675.0,800.0,0.0,0,37,0.0,0.0,1151.0103667761414,1535.0,83.13535352379125,1518.8032383518312,42,0,0,0,0,0,0,0,0,2,5.0,1,,4,127031,2,1,2,0,1,,350.0,,22,2.0,0.0,7.0,2.0,1.5,2,2,616.28673785184,675.0,80279.50025605282,0,1,0,1,120.0,8,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01912069700364466,53519.666837368546,10,5,10,10_1,10_1,10_0_0 +27010,0,68.0,0.0,1,211,444.0,1000.0,0.0,0,77,0.0,0.0,757.1090412571951,1444.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,1,127032,2,1,2,0,1,,370.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1484.11783170812,444.0,14704.165813289499,0,5,0,1,85.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09820346276936874,14704.165813289499,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +27011,2,54.0,0.0,8,111,489.0,,,85,63,0.0,0.0,,599.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,127033,1,2,0,0,2,,420.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,122.38374177063714,489.0,27195.924351592286,6,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022025359103667656,18130.616234394856,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +27012,2,56.0,0.0,9,111,360.0,750.0,0.0,0,33,0.0,0.0,613.872195613942,1110.0,0.0,1423.8780359548418,71,0,0,0,0,0,0,0,0,2,20.0,2,2006.0,6,127034,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1512.33909895874,360.0,39315.565303437004,0,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02823309270598133,30242.74254110539,8,4,8,8_0,8_4,8_0_0 +27013,2,73.0,0.0,2,111,400.0,150.0,0.0,0,74,3164.0485531098047,0.0,682.0802173488245,3550.0,0.0,284.77560719096834,30,0,0,0,0,0,0,0,0,0,,1,,2,127035,2,1,2,0,2,,300.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,474.006933813669,400.0,52462.14792882632,0,5,0,1,100.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06766783557577873,52462.14792882632,10,5,10,10_1,10_3,10_0_1 +27014,2,36.0,0.0,1,111,360.0,750.0,0.0,46,37,0.0,0.0,613.872195613942,1110.0,0.0,1423.8780359548418,31,2,2,2,2,1,2,2,2,0,,2,,1,127036,1,3,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1218.83501810466,360.0,51336.232170841664,1,1,1,2,75.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.021622155601642813,34224.15478056111,9,5,9,9_0,9_3,9_1_0 +27015,1,42.0,491.0,1,111,385.0,1080.0,0.0,0,52,0.0,0.0,656.5022091982436,1465.0,0.0,2050.384371774972,30,2,2,2,1,1,2,2,2,0,,1,,1,127037,1,2,5,0,1,,348.0,650.0,32,1.0,0.0,3.0,4.0,1.9,1,1,344.223441232692,385.0,34203.848827126145,0,4,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.042831437111198675,18002.025698487447,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +27016,2,51.0,0.0,2,111,390.0,1500.0,0.0,0,62,0.0,0.0,665.0282119151038,1890.0,0.0,2847.7560719096837,50,2,2,2,2,1,2,2,2,0,,2,,2,127038,1,2,0,0,1,,0.0,530.0,12,1.0,2.0,4.0,1.0,1.0,1,1,283.39718563858,390.0,19606.54701530125,0,4,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.09639637201415502,19606.54701530125,5,3,5,5_0,5_3,5_0_1 +27017,2,52.0,0.0,1,111,365.0,1444.0,0.0,35,37,0.0,0.0,622.3981983308023,1809.0,0.0,2741.4398452250553,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,127039,2,1,1,0,1,,352.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1180.89916193289,365.0,90424.38589742519,1,1,1,2,150.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020005665308604665,39314.95039018487,9,5,9,9_1,9_3,9_1_0 +27018,1,51.0,172.0,7,111,398.0,570.0,0.0,85,64,0.0,0.0,678.6698162620803,968.0,0.0,1082.1473073256798,50,0,0,0,0,0,0,0,0,0,,2,,5,127040,2,3,0,0,1,,0.0,571.0,42,2.0,0.0,4.0,5.0,2.8,4,4,944.227963180514,398.0,33029.126292806526,6,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02930746612606651,11796.116533145188,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +27019,2,80.0,0.0,1,111,336.0,100.0,0.0,0,90,0.0,0.0,572.9473825730125,436.0,0.0,189.8504047939789,20,0,0,0,0,0,0,0,0,0,,2,,1,127041,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1002.47156291581,336.0,14915.04457826003,0,5,0,1,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029232229090049636,14915.04457826003,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +27020,2,59.0,0.0,1,111,2200.0,0.0,0.0,90,21,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,50,2,2,2,2,1,1,2,2,2,35.0,1,,1,127042,2,2,1,0,1,,1140.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,622.926849298847,2200.0,47816.963860602875,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04600877643368348,19126.78554424115,5,3,5,5_1,5_4,5_1_0 +27021,1,37.0,305.0,8,111,180.0,0.0,0.0,0,56,0.0,0.0,306.936097806971,336.0,0.0,0.0,50,2,2,2,2,1,2,2,2,3,60.0,2,,6,127043,1,3,0,1,2,1237.0,0.0,340.0,32,1.0,0.0,5.0,3.0,1.8,2,1,363.47086825744,180.0,16683.030445184715,0,1,2,3,75.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.020140225788353755,9268.35024732484,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +27022,2,60.0,0.0,2,111,276.0,0.0,0.0,78,45,0.0,0.0,470.6353499706889,1779.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,127044,2,1,0,1,1,,0.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,1088.86543614309,276.0,61044.92951458675,5,1,0,1,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029142469557195672,30522.464757293375,8,4,8,8_0,8_4,8_0_1 +27023,2,69.0,0.0,1,111,300.0,400.0,0.0,0,77,0.0,198.6490915515336,511.56016301161833,850.0,0.0,759.4016191759156,71,2,2,2,2,1,2,2,2,0,,2,,1,127045,1,3,0,0,2,,0.0,339.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1285.44053030115,300.0,20276.543184225207,0,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.04192036050115707,20276.543184225207,5,3,5,5_0,5_4,5_1_0 +27024,2,64.0,0.0,7,112,1200.0,0.0,0.0,77,75,1054.6828510366015,0.0,2046.2406520464733,2202.0,2.771178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,127046,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,980.941012035835,1200.0,40834.1434133443,5,5,0,1,110.0,8,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053925460801521365,27222.76227556287,7,4,7,7_1,7_1,7_0_0 +27025,2,64.0,0.0,5,112,2650.0,0.0,0.0,75,74,0.0,0.0,4518.781439935962,2650.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,127047,2,1,3,0,1,,350.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,245.457968773297,2650.0,775210.8297436234,5,5,0,1,145.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0034184248959427,516807.21982908226,10,5,10,10_1,10_0,10_0_0 +27026,2,56.0,0.0,6,211,565.0,2042.0,0.0,56,65,0.0,0.0,963.4383070052146,2607.0,0.0,3876.7452658930492,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,127048,2,1,2,0,1,,405.0,,43,2.0,3.0,8.0,2.0,1.5,2,2,881.838978357523,565.0,22101.742208976946,1,1,0,1,120.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11795450219942973,14734.49480598463,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +27027,2,52.0,0.0,2,111,580.0,0.0,0.0,0,42,0.0,0.0,989.0163151557955,580.0,0.0,0.0,10,2,2,1,2,1,2,2,2,1,20.0,2,,2,127049,2,2,0,1,2,,0.0,,32,1.0,1.0,3.0,2.0,1.5,2,2,944.327985574273,580.0,28811.05172978853,0,1,1,2,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02013116374367973,19207.36781985902,5,3,5,5_0,5_4,5_0_1 +27028,1,68.0,92.0,5,111,984.0,0.0,0.0,0,78,0.0,0.0,1677.917334678108,984.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,127050,2,2,0,0,1,,744.0,263.0,21,1.0,3.0,3.0,3.0,2.0,3,2,327.228701295221,984.0,12013.178149514088,0,5,2,3,60.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.08191004809495821,6006.589074757044,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27029,2,32.0,0.0,2,111,176.0,0.0,0.0,0,46,0.0,0.0,300.1152956334828,176.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,127051,2,2,0,1,1,170.0,0.0,600.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1439.93754241234,176.0,18106.55727497548,0,1,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009720235455430515,18106.55727497548,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +27030,2,54.0,0.0,7,212,350.0,0.0,0.0,69,11,527.3414255183008,0.0,596.8201901802214,970.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,127052,2,2,5,0,1,,130.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,694.440042689919,350.0,69409.15012816616,1,1,0,1,100.0,2,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013975102680393935,27763.660051266466,7,4,7,7_1,7_0,7_0_0 +27031,2,47.0,0.0,6,111,500.0,300.0,0.0,0,68,0.0,0.0,852.6002716860306,800.0,0.0,569.5512143819367,50,2,2,1,2,1,2,2,2,2,30.0,2,,4,127053,2,1,0,0,1,,0.0,440.0,12,1.0,2.0,1.0,1.0,1.0,1,1,482.556917423635,500.0,16929.018411058012,0,1,2,3,30.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.04725613621386584,16929.018411058012,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +27032,0,63.0,0.0,2,300,1500.0,0.0,0.0,77,78,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127054,2,3,3,0,1,,330.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1150.83825497047,1500.0,22020.61421599257,6,5,0,1,62.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06811799095552104,14680.40947732838,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +27033,2,31.0,0.0,9,221,913.0,0.0,0.0,52,43,0.0,158.91927324122688,1556.848096098692,1123.0,124.70303028568689,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,127055,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,4291.86169267701,913.0,35269.085421840144,1,1,1,2,100.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03184091638805552,16794.80258182864,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +27034,2,54.0,0.0,2,111,750.0,550.0,0.0,52,46,0.0,0.0,1278.9004075290459,1300.0,0.0,1044.177226366884,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,127056,2,3,0,0,1,,1000.0,800.0,43,2.0,0.0,4.0,4.0,2.5,4,4,1079.73129964204,750.0,58433.19785576044,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022247627165793458,23373.279142304174,6,3,6,6_0,6_4,6_0_1 +27035,2,62.0,0.0,6,111,370.0,,,22,22,0.0,0.0,,458.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,2,15.0,2,,4,127057,1,1,0,0,2,,320.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,104.31098371950863,370.0,34041.94188527392,1,1,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013453991594942608,22694.627923515945,6,3,6,6_0,6_3,6_0_0 +27036,2,80.0,0.0,1,112,500.0,0.0,0.0,0,86,1687.4925616585624,1059.4618216081792,852.6002716860306,2990.0,124.70303028568689,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,127058,1,2,4,0,2,,90.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,156.66728430385,500.0,14290.225978638724,0,7,0,1,100.0,6,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.2092339200562331,14290.225978638724,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +27037,2,55.0,0.0,7,111,1000.0,,,0,71,0.0,0.0,,1132.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,127059,2,2,0,0,2,,500.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,86.22031642348182,1000.0,22102.7898287267,0,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0512152542177619,14735.193219151135,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +27038,2,49.0,0.0,9,111,0.0,,,34,34,0.0,0.0,,653.0,127.47420873647992,,10,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,127060,2,1,0,0,2,,426.0,1000.0,43,2.0,2.0,4.0,2.0,1.5,2,2,130.99138979744595,0.0,87147.0,1,1,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007493086394253388,58098.0,10,5,10,10_1,10_3,10_0_0 +27039,2,45.0,0.0,1,112,690.0,0.0,0.0,54,11,1054.6828510366015,0.0,1176.5883749267223,1690.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,127061,2,2,2,0,1,,90.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,963.972451968457,690.0,89986.50906371891,1,1,0,1,80.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01878059297536835,35994.603625487565,9,5,9,9_1,9_0,9_1_0 +27040,2,46.0,0.0,2,111,500.0,1100.0,0.0,0,54,0.0,0.0,852.6002716860306,1600.0,0.0,2088.354452733768,30,0,0,0,0,0,0,0,0,0,,2,,2,127062,2,3,0,0,1,,360.0,610.0,22,1.0,0.0,6.0,2.0,1.3,1,1,1310.09203662361,500.0,39819.8429794489,0,4,2,3,90.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040180972105434046,30630.64844572992,8,4,8,8_0,8_2,8_0_1 +27041,2,60.0,0.0,5,400,1763.0,0.0,0.0,85,78,0.0,0.0,3006.2685579649437,1793.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127063,2,2,3,0,2,,260.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,1097.41803148854,1763.0,19734.525143319366,7,5,0,1,85.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09085599916788348,13156.350095546244,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +27042,2,88.0,0.0,1,111,200.0,1500.0,0.0,0,77,0.0,0.0,341.04010867441224,1700.0,0.0,2847.7560719096837,60,0,0,0,0,0,0,0,0,0,,1,,1,127064,2,1,2,0,1,,240.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,1853.9680579518,200.0,25762.082076886032,0,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06598845523923143,25762.082076886032,7,4,7,7_1,7_3,7_1_0 +27043,1,38.0,329.0,9,111,1000.0,,,0,55,0.0,0.0,,1088.0,121.93185183489385,,42,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,127065,2,2,0,0,2,,600.0,563.0,32,2.0,0.0,4.0,3.0,1.8,2,2,101.20944246341635,1000.0,28046.0,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.038793410825073094,15581.111111111111,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +27044,2,56.0,0.0,7,111,543.0,,,0,68,0.0,39.72981831030672,,625.0,72.05063972061909,,60,0,0,0,0,0,0,0,0,1,10.0,1,,5,127066,2,1,0,0,2,,602.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,110.63461893471707,543.0,9166.799492849104,0,1,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06818083023279324,9166.799492849104,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27045,2,48.0,0.0,6,111,528.0,796.0,0.0,0,37,0.0,132.4327277010224,900.3458869004482,1424.0,0.0,1511.209222160072,42,0,0,0,0,0,0,0,0,0,,1,,4,127067,2,1,2,0,2,,261.0,,32,2.0,0.0,4.0,2.0,1.5,2,2,1166.87229040141,528.0,191824.2230775825,0,4,0,1,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007423462882599917,127882.81538505499,10,5,10,10_1,10_3,10_0_0 +27046,2,49.0,0.0,1,120,3500.0,0.0,0.0,56,48,0.0,0.0,5968.201901802214,3600.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,127068,2,1,1,0,1,,440.0,,43,4.0,1.0,5.0,5.0,2.8,4,4,813.585776729605,3500.0,54375.85360226002,1,1,1,2,130.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06620585722355214,19419.947715092865,5,3,5,5_1,5_0,5_1_0 +27047,2,58.0,0.0,7,111,0.0,,,0,75,0.0,0.0,,598.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,5,127069,2,2,0,0,2,,0.0,800.0,11,0.0,2.0,3.0,1.0,1.0,1,1,145.9338212253633,0.0,63487.187118120615,0,5,3,4,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009419223423576721,63487.187118120615,10,5,10,10_0,10_3,10_0_0 +27048,2,27.0,0.0,9,400,420.0,,,81,85,0.0,0.0,,540.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,127070,2,3,0,0,2,,0.0,,42,1.0,0.0,3.0,7.0,3.1999999999999993,3,2,4.386640891614599,420.0,23995.19095192602,4,6,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022504509386146638,7498.497172476883,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +27049,2,59.0,0.0,5,111,250.0,,,75,42,0.0,0.0,,422.0,238.3213467682016,,41,0,0,0,0,0,0,0,0,0,,1,,3,127071,2,1,0,0,1,,300.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,120.89241058584722,250.0,109057.8149150516,5,1,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0038695071997243706,72705.20994336774,10,5,10,10_1,10_2,10_0_0 +27050,1,68.0,90.0,7,111,500.0,,,86,90,0.0,0.0,,740.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,8,,5,127072,2,2,0,0,2,,450.0,525.0,41,0.0,5.0,3.0,2.0,1.5,2,2,98.80610045050496,500.0,19491.394831960723,6,5,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037965471757136444,12994.263221307148,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +27051,2,36.0,0.0,7,112,2300.0,0.0,0.0,43,38,0.0,1291.2190950849683,3921.9612497557405,3355.0,110.84713803172167,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,127073,2,1,2,0,1,,470.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,730.224768838539,2300.0,80361.11131334145,1,1,1,2,150.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04174904932459548,29763.374560496835,8,4,8,8_1,8_1,8_0_0 +27052,2,60.0,0.0,5,120,812.0,0.0,0.0,77,38,1991.2412227571037,0.0,1384.6228412181138,2800.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,127074,1,1,2,0,2,,268.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1794.71979696285,812.0,201043.77756639192,5,1,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013927314905706738,134029.18504426128,10,5,10,10_1,10_0,10_0_0 +27053,2,68.0,0.0,2,111,384.0,2038.0,0.0,78,75,0.0,0.0,654.7970086548714,2422.0,0.0,3869.15124970129,50,0,0,0,0,0,0,0,0,0,,1,,2,127075,2,1,2,0,1,,228.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,867.393718757515,384.0,50132.18679186536,5,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048312275106918,33421.45786124357,8,4,8,8_1,8_4,8_0_1 +27054,1,25.0,100.0,2,111,160.0,210.0,0.0,0,63,0.0,0.0,272.8320869395298,370.0,0.0,398.6858500673557,71,0,0,0,0,0,0,0,0,0,,2,,2,127076,2,3,0,1,1,,120.0,162.0,12,1.0,0.0,1.0,1.0,1.0,1,1,318.859770669981,160.0,1792.364016599122,0,4,2,3,20.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.20643128101960428,1792.364016599122,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +27055,2,81.0,0.0,2,111,156.0,60.0,0.0,0,75,0.0,0.0,266.01128476604157,216.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,2,,2,127077,2,1,0,1,2,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1067.05212556244,156.0,27153.184212493,0,5,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007954868140312613,27153.184212493,7,4,7,7_0,7_4,7_0_1 +27056,2,66.0,0.0,1,222,450.0,0.0,0.0,54,72,0.0,0.0,767.3402445174275,570.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127078,2,1,3,0,1,,160.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1207.41707682488,450.0,33923.19517263564,4,5,0,1,116.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01680266251746811,22615.46344842376,6,3,6,6_1,6_0,6_1_0 +27057,2,51.0,0.0,6,112,360.0,0.0,0.0,52,62,0.0,0.0,613.872195613942,420.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,127079,2,2,1,0,1,,360.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,551.104996674125,360.0,43959.42161012587,1,1,1,2,160.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00955426583463634,21979.710805062936,6,3,6,6_1,6_1,6_0_0 +27058,2,37.0,0.0,1,111,480.0,0.0,0.0,0,37,0.0,0.0,818.4962608185893,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,127080,2,2,0,0,1,,0.0,536.0,12,1.0,0.0,1.0,1.0,1.0,1,1,332.196608531871,480.0,27737.735916818114,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017304945199545414,27737.735916818114,7,4,7,7_0,7_4,7_1_0 +27059,2,28.0,0.0,1,120,0.0,0.0,0.0,84,55,0.0,0.0,0.0,3201.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,1,127081,2,1,0,0,1,,312.0,423.0,42,1.0,0.0,3.0,2.0,1.5,2,2,2249.81654893655,0.0,30786.915301410234,3,1,2,3,74.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.10397274194772524,20524.610200940155,5,3,5,5_0,5_0,5_1_0 +27060,2,48.0,0.0,1,111,510.0,3000.0,0.0,43,37,0.0,0.0,869.6522771197511,3510.0,0.0,5695.512143819367,12,0,0,0,0,0,0,0,0,2,40.0,1,,1,127082,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,553.183404542167,510.0,106230.53212903562,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033041348185439655,44262.72172043151,10,5,10,10_1,10_4,10_1_0 +27061,0,27.0,0.0,7,111,1250.0,0.0,0.0,56,22,0.0,0.0,2131.5006792150766,1620.0,512.6680133967128,0.0,20,2,2,2,1,2,2,2,2,0,,1,,5,127083,1,3,3,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,945.308293007506,1250.0,9376.328112615673,1,1,5,0,70.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.17277552369571203,6250.885408410449,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27062,2,42.0,0.0,1,111,300.0,690.0,0.0,0,46,0.0,0.0,511.56016301161833,990.0,0.0,1309.9677930784544,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,127084,2,1,0,0,1,,274.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1740.57767235754,300.0,28598.951614135152,0,1,1,2,79.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03461665355280675,28598.951614135152,8,4,8,8_0,8_3,8_1_0 +27063,2,38.0,0.0,2,111,850.0,0.0,0.0,42,48,2003.897416969543,0.0,1449.420461866252,2750.0,0.0,0.0,31,1,2,2,1,2,2,2,2,2,20.0,1,,2,127085,2,1,1,0,1,,280.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,351.437976475084,850.0,70646.91647321358,1,1,1,2,160.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03892597352133107,33641.38879676837,9,5,9,9_1,9_3,9_0_1 +27064,2,48.0,0.0,2,111,450.0,550.0,0.0,85,63,0.0,0.0,767.3402445174275,1000.0,0.0,1044.177226366884,71,0,0,0,0,0,0,0,0,3,45.0,2,,2,127086,2,2,0,1,1,,0.0,850.0,42,1.0,0.0,3.0,5.0,2.4,2,2,224.69917351973,450.0,48406.35536987378,6,1,3,4,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02065844437902798,20169.31473744741,5,3,5,5_0,5_4,5_0_1 +27065,2,43.0,0.0,9,112,1264.0,0.0,0.0,56,64,0.0,0.0,2155.3734868222855,1264.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2008.0,6,127087,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,655.122243121975,1264.0,32367.998740750092,4,1,1,2,60.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03905091600268359,17982.221522638938,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +27066,2,67.0,0.0,5,112,720.0,0.0,0.0,77,75,843.7462808292812,768.1098206659299,1227.744391227884,2220.0,166.2707070475825,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,127088,2,1,2,0,1,,340.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,830.491130284086,720.0,32194.614680658393,7,5,0,1,106.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06895563192851979,21463.07645377226,6,3,6,6_1,6_0,6_0_0 +27067,2,60.0,0.0,6,112,862.0,0.0,0.0,0,52,0.0,0.0,1469.8828683867168,1569.0,16.627070704758253,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,4,127089,2,1,2,0,1,,383.0,,22,4.0,2.0,6.0,4.0,2.5,4,4,645.353294152694,862.0,93624.84634797518,0,1,0,1,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.016758371962165924,37449.93853919007,9,5,9,9_1,9_0,9_0_0 +27068,2,83.0,0.0,2,111,200.0,60.0,0.0,0,74,0.0,0.0,341.04010867441224,260.0,0.0,113.91024287638734,10,0,0,0,0,0,0,0,0,0,,2,,2,127090,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,744.510994078676,200.0,49485.07885664676,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005254109036649079,49485.07885664676,10,5,10,10_0,10_4,10_0_1 +27069,2,73.0,0.0,7,111,300.0,,,0,72,0.0,0.0,,372.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,0,,1,,5,127091,2,1,0,0,2,,100.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,91.63205807697577,300.0,40103.03912781831,0,5,0,1,98.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009276104955894838,40103.03912781831,9,5,9,9_1,9_3,9_0_0 +27070,2,48.0,0.0,5,111,900.0,0.0,0.0,53,37,0.0,662.163638505112,1534.680489034855,1432.0,44.33885521268867,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,3,127092,1,1,2,0,1,,350.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,1139.60082002967,900.0,81477.02104735386,1,1,0,1,130.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017575507567559837,54318.01403156924,10,5,10,10_1,10_2,10_0_0 +27071,2,36.0,0.0,2,111,600.0,0.0,0.0,0,46,0.0,0.0,1023.1203260232367,898.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,127093,2,1,0,1,2,,0.0,,22,2.0,2.0,3.0,3.0,2.0,3,3,1664.76927607683,600.0,51946.228352865524,0,1,0,1,67.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017287106850183153,25973.114176432762,7,4,7,7_0,7_2,7_0_1 +27072,2,32.0,0.0,1,111,368.0,971.0,0.0,47,42,0.0,0.0,627.5137999609185,1371.0,44.33885521268867,1843.447430549535,31,0,0,0,0,0,0,0,0,2,45.0,1,,1,127094,2,1,3,0,1,,291.0,617.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1062.08696824377,368.0,36237.506225983074,1,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.037833729270723475,24158.337483988715,6,3,6,6_1,6_3,6_1_0 +27073,2,51.0,0.0,8,211,540.0,,,62,21,0.0,0.0,,624.0,116.38949493330776,,43,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127095,2,3,0,0,2,,224.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,101.2545264025056,540.0,15629.458498023716,4,1,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03992460775777372,8683.032498902065,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27074,2,80.0,0.0,1,112,303.0,0.0,0.0,0,72,0.0,211.89236432163582,516.6757646417345,2483.0,2798.8902353009726,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127096,2,1,2,0,1,,168.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1929.7252659297,303.0,13061.937404435366,0,5,0,1,84.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.19009431167208488,13061.937404435366,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +27075,1,38.0,144.0,9,111,1721.0,0.0,0.0,85,56,0.0,0.0,2934.650135143317,1781.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,127097,2,2,1,0,1,,564.0,660.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1824.42104991113,1721.0,28924.32678857903,7,1,2,3,72.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.061574466815360426,12051.802828574597,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +27076,2,57.0,0.0,8,111,560.0,986.0,0.0,75,37,0.0,0.0,954.9123042883542,1546.0,0.0,1871.9249912686319,10,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,127098,2,1,1,0,1,,329.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,630.43975338821,560.0,148575.24325173927,5,1,1,2,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01040550206187801,99050.16216782619,10,5,10,10_1,10_4,10_0_0 +27077,2,56.0,0.0,1,111,1190.0,0.0,0.0,0,34,0.0,258.24381901699365,2029.1886466127528,1430.0,62.351515142843446,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,127099,2,1,1,0,1,,150.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,403.336038369295,1190.0,49544.26830603774,0,1,1,2,100.0,7,6,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028863076373775658,49544.26830603774,10,5,10,10_1,10_2,10_1_0 +27078,2,54.0,0.0,1,111,0.0,0.0,0.0,23,23,0.0,0.0,0.0,611.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,8,,1,127100,2,2,0,0,1,,699.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,2225.24107040087,0.0,136843.138492817,1,1,0,1,100.0,9,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004464966287162961,91228.75899521133,10,5,10,10_0,10_3,10_1_0 +27079,2,24.0,0.0,9,111,480.0,0.0,0.0,0,42,0.0,0.0,818.4962608185893,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,2012.0,6,127101,2,1,0,0,1,,0.0,480.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1347.90600849373,480.0,20801.530812716286,0,1,2,3,20.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02307522481502029,20801.530812716286,5,3,5,5_0,5_4,5_0_0 +27080,1,37.0,237.0,7,111,480.0,0.0,0.0,0,45,0.0,0.0,818.4962608185893,660.0,249.40606057137379,0.0,43,0,0,0,0,0,0,0,0,3,45.0,2,,5,127102,2,1,0,1,1,834.0,0.0,504.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2219.80112879282,480.0,37923.67952741373,0,1,2,3,77.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017403374572947453,23702.29970463358,6,3,6,6_0,6_3,6_0_0 +27081,1,48.0,277.0,5,111,750.0,125.0,0.0,0,65,0.0,0.0,1278.9004075290459,979.0,0.0,237.31300599247362,44,2,2,2,1,1,2,2,2,0,,2,,3,127103,2,1,0,1,1,576.0,90.0,347.0,32,1.0,0.0,4.0,3.0,2.0,3,3,270.694917053847,750.0,20071.499461102787,0,4,2,3,76.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.04877562844257032,10035.749730551393,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +27082,2,61.0,0.0,7,400,1000.0,0.0,0.0,0,77,0.0,1191.8945493092015,1705.2005433720612,2020.0,166.2707070475825,0.0,70,2,2,2,2,2,2,2,1,0,,1,,5,127104,2,2,3,0,1,,240.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1327.47683050623,1000.0,9554.693238992686,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.21141442738908495,9554.693238992686,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +27083,2,31.0,0.0,1,111,160.0,430.0,0.0,0,35,0.0,0.0,272.8320869395298,590.0,0.0,816.3567406141093,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,127105,2,3,0,0,1,,0.0,347.0,12,1.0,0.0,1.0,1.0,1.0,1,1,592.192087753272,160.0,31076.441962998626,0,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01898544243586468,31076.441962998626,8,4,8,8_0,8_4,8_1_0 +27084,2,47.0,0.0,6,111,300.0,450.0,0.0,0,22,0.0,0.0,511.56016301161833,750.0,0.0,854.326821572905,12,0,0,0,0,0,0,0,0,0,,2,,4,127106,2,2,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1578.54118545528,300.0,9019.196676546635,0,1,0,1,64.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08315596464930045,9019.196676546635,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +27085,2,33.0,0.0,9,111,0.0,0.0,1700.0,43,48,0.0,0.0,1071.5410937050644,1700.0,0.0,2034.4446508599572,31,2,2,2,2,1,2,2,2,2,20.0,1,2007.0,6,127107,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,667.497762177585,0.0,63117.00584520375,1,1,1,2,140.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.026934104006284747,30055.71706914464,8,4,8,8_1,8_2,8_0_0 +27086,2,76.0,0.0,2,112,1960.0,0.0,0.0,0,77,0.0,0.0,3342.19306500924,2000.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127108,2,1,3,0,1,,310.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1066.1640498208,1960.0,19722.988118295096,0,5,0,1,96.0,8,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10140451274443525,19722.988118295096,5,3,5,5_1,5_0,5_0_1 +27087,1,41.0,199.0,8,111,600.0,,,0,54,0.0,0.0,,726.0,174.58424239996165,,42,0,0,0,0,0,0,0,0,2,1.0,2,1999.0,6,127109,1,3,0,0,2,,509.0,442.0,32,1.0,1.0,3.0,2.0,1.3,1,1,89.13550806943869,600.0,32770.07083201306,0,1,2,3,71.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022154361634481763,25207.746793856197,7,4,7,7_0,7_3,7_0_0 +27088,2,72.0,0.0,5,111,1500.0,0.0,0.0,86,74,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,127110,2,1,2,0,1,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1099.46373154473,1500.0,38725.63351744303,6,5,0,1,90.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03873403386220554,25817.089011628686,7,4,7,7_1,7_3,7_0_0 +27089,2,69.0,0.0,2,111,300.0,0.0,0.0,77,75,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127111,2,2,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,269.502841679031,300.0,49471.089410544926,5,5,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00606414784017378,32980.726273696615,8,4,8,8_0,8_4,8_0_1 +27090,2,67.0,0.0,1,112,730.0,0.0,0.0,0,75,0.0,0.0,1244.7963966616046,850.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127112,1,1,1,0,2,,220.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,916.209820214524,730.0,14906.821428108937,0,5,0,1,180.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.057020874912823725,14906.821428108937,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +27091,1,27.0,377.0,2,111,0.0,0.0,0.0,81,56,0.0,0.0,0.0,233.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,127113,1,2,0,2,1,480.0,0.0,387.0,43,2.0,0.0,4.0,3.0,1.8,2,2,516.283518823,0.0,17835.64891187526,4,1,2,3,65.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.013063724294598828,9908.6938399307,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +27092,2,83.0,0.0,7,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,403.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,127114,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1700.25632182093,0.0,30757.554274011512,0,5,0,1,54.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0131024722060074,30757.554274011512,8,4,8,8_0,8_3,8_0_0 +27093,1,32.0,413.0,9,111,0.0,,,53,52,0.0,0.0,,875.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,127115,1,3,0,0,2,,666.0,650.0,43,2.0,1.0,3.0,3.0,1.8,2,2,105.14380846687564,0.0,10287.013645085979,4,4,2,3,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0850586992676908,5715.007580603322,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27094,2,63.0,0.0,2,111,380.0,0.0,0.0,0,75,0.0,0.0,647.9762064813832,380.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127116,2,1,0,1,1,468.0,0.0,240.0,21,1.0,3.0,4.0,3.0,2.0,3,3,285.838266020085,380.0,46356.79843994527,0,5,2,3,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0081972874052613,23178.399219972634,6,3,6,6_0,6_4,6_0_1 +27095,2,75.0,0.0,6,111,246.0,,,0,77,0.0,0.0,,396.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,8,,4,127117,2,2,0,0,2,,250.0,188.0,11,0.0,3.0,3.0,1.0,1.0,1,1,109.7581262214712,246.0,14740.0,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026865671641791045,14740.0,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +27096,2,56.0,0.0,1,112,1413.0,72.0,0.0,54,54,0.0,2238.1130981472784,2409.4483677847224,3175.0,0.0,136.6922914516648,42,1,2,2,1,2,2,2,2,0,,1,,1,127118,1,3,3,0,2,,520.0,,42,2.0,2.0,8.0,3.0,2.0,3,3,1888.29880629142,1413.0,52034.51592225843,1,7,0,1,160.0,9,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.06101719106493797,26017.257961129217,7,4,7,7_1,7_2,7_1_0 +27097,2,53.0,0.0,2,211,450.0,850.0,0.0,78,48,0.0,0.0,767.3402445174275,1300.0,0.0,1613.7284407488207,60,0,0,0,0,0,0,0,0,2,2.0,1,,2,127119,2,2,2,0,2,,435.0,,42,1.0,0.0,5.0,3.0,2.0,3,3,758.843990372462,450.0,45470.873826298855,5,1,1,2,100.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028589729877768984,22735.436913149428,6,3,6,6_1,6_1,6_0_1 +27098,2,68.0,0.0,2,300,450.0,0.0,0.0,0,74,3691.3899786281054,0.0,767.3402445174275,3980.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,127120,2,1,1,0,1,,200.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,991.804684513439,450.0,118714.34021068562,0,5,0,1,250.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033525857052623835,118714.34021068562,10,5,10,10_1,10_0,10_0_1 +27099,2,39.0,0.0,2,111,600.0,900.0,0.0,52,43,0.0,0.0,1023.1203260232367,1871.0,0.0,1708.65364314581,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,127121,2,2,1,0,1,,378.0,,43,2.0,1.0,5.0,4.0,2.3,3,3,244.620628914493,600.0,53095.71021948503,1,1,1,2,78.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03523825168296518,23085.0913997761,6,3,6,6_1,6_2,6_0_1 +27100,2,65.0,0.0,7,111,1100.0,0.0,0.0,78,72,0.0,0.0,1875.7205977092674,1325.0,311.75757571421724,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,127122,2,1,1,0,1,,1000.0,,41,1.0,3.0,5.0,5.0,2.8,4,3,1329.39095904313,1100.0,27353.383169189405,5,5,0,1,155.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048440077477965054,9769.065417567645,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +27101,2,78.0,0.0,2,112,348.0,1622.0,0.0,86,74,0.0,0.0,593.4097890934773,1970.0,0.0,3079.373565758338,12,0,0,0,0,0,0,0,0,0,,1,,2,127123,2,1,2,0,1,,300.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,775.504578228187,348.0,40956.36481495081,6,5,0,1,71.0,7,2,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04809997197995625,27304.243209967204,7,4,7,7_1,7_1,7_0_1 +27102,1,47.0,321.0,6,111,670.0,,,0,52,0.0,0.0,,796.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,10.0,2,,4,127124,1,3,0,0,2,,200.0,431.0,32,2.0,2.0,4.0,3.0,1.8,2,2,120.98771036643832,670.0,15220.038577753425,0,1,2,3,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05229947321969894,8455.576987640792,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27103,0,55.0,0.0,2,211,720.0,1800.0,0.0,75,54,0.0,0.0,1227.744391227884,2520.0,0.0,3417.30728629162,20,2,2,2,2,1,2,2,2,2,15.0,1,,2,127125,2,3,4,0,1,,450.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,286.976746833043,720.0,50504.315287280624,5,1,5,0,130.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.04989672636220563,33669.54352485375,9,5,9,9_1,9_1,9_0_1 +27104,2,43.0,0.0,5,111,360.0,,,0,90,0.0,0.0,,402.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,127126,1,2,0,0,2,,720.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,94.41417594861126,360.0,28179.518346690907,0,1,1,2,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014265680309159949,21676.55257437762,6,3,6,6_0,6_3,6_0_0 +27105,2,63.0,0.0,7,112,2600.0,0.0,0.0,74,31,0.0,198.6490915515336,4433.521412767359,2750.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,5,127127,2,2,3,0,1,,600.0,,42,2.0,2.0,8.0,3.0,2.0,3,3,600.513952956085,2600.0,66568.90337348962,5,1,0,1,200.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04131057987497446,33284.45168674481,8,4,8,8_1,8_1,8_0_0 +27106,2,63.0,0.0,7,112,456.0,696.0,0.0,62,63,0.0,0.0,777.5714477776598,1152.0,0.0,1321.358817366093,70,0,0,0,0,0,0,0,0,2,20.0,1,,5,127128,2,1,2,0,1,,150.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,733.104513829083,456.0,111312.31660733614,1,1,0,1,132.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010349259049775957,74208.21107155742,10,5,10,10_1,10_0,10_0_0 +27107,1,77.0,165.0,5,111,760.0,233.0,0.0,86,77,0.0,0.0,1295.9524129627664,993.0,0.0,442.3514431699708,41,0,0,0,0,0,0,0,0,0,,2,,3,127129,1,2,0,1,2,,0.0,480.0,41,0.0,3.0,2.0,2.0,1.5,2,2,1040.00972685543,760.0,14441.554336504998,6,5,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06875991163152843,9627.702891003331,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +27108,2,38.0,0.0,9,111,480.0,,,42,33,0.0,0.0,,480.0,0.0,,43,0,0,0,0,0,0,0,0,1,10.0,1,2010.0,6,127130,2,3,0,0,2,,800.0,700.0,43,2.0,0.0,4.0,4.0,2.3,3,2,115.64680576004103,480.0,7508.703636144043,1,1,2,3,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06392581506206511,3264.6537548452366,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27109,2,71.0,0.0,1,111,807.0,0.0,0.0,74,74,2320.3022722805235,0.0,1376.0968385012534,3007.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,127131,2,1,2,0,1,,425.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,621.684742252092,807.0,64295.182156171606,5,5,0,1,100.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046768667560441186,42863.45477078107,9,5,9,9_1,9_4,9_1_0 +27110,2,70.0,0.0,1,400,0.0,0.0,0.0,71,71,0.0,0.0,0.0,2175.0,72.05063972061909,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127132,2,1,2,0,1,,94.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,743.138418884636,0.0,32343.696370903228,5,5,0,1,220.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06724648831284033,21562.464247268817,6,3,6,6_1,6_0,6_1_0 +27111,2,45.0,0.0,8,112,0.0,0.0,0.0,62,54,0.0,0.0,0.0,1530.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,35.0,1,1999.0,6,127133,2,1,2,0,1,,811.0,2100.0,43,3.0,0.0,6.0,5.0,2.8,4,2,759.330750383461,0.0,86017.99016942277,1,1,2,3,134.0,8,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01778697685201062,30720.71077479385,8,4,8,8_1,8_0,8_0_0 +27112,2,39.0,0.0,9,120,1320.0,0.0,0.0,52,46,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,127134,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1003.19976504475,1320.0,57497.981561474706,1,1,1,2,100.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022957327616599986,24999.122418032483,7,4,7,7_1,7_1,7_0_0 +27113,2,48.0,0.0,5,111,1900.0,0.0,0.0,46,37,0.0,662.163638505112,3239.8810324069163,2640.0,332.541414095165,0.0,71,0,0,0,0,0,0,0,0,2,180.0,1,,3,127135,2,2,1,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,602.644207266468,1900.0,52249.93033924408,1,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05052638315226879,20899.97213569763,5,3,5,5_1,5_4,5_0_0 +27114,2,86.0,0.0,2,111,520.0,460.0,0.0,77,77,0.0,0.0,886.7042825534718,980.0,0.0,873.3118620523029,12,0,0,0,0,0,0,0,0,0,,2,,2,127136,2,2,0,3,1,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,905.423659492701,520.0,26208.076233984288,5,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03739305362402845,17472.05082265619,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +27115,1,30.0,483.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,283.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,127137,2,2,0,3,1,,0.0,600.0,32,2.0,0.0,2.0,4.0,2.1,2,2,1032.19305591827,0.0,11304.17987759046,0,4,2,3,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.025034987328981073,5382.9427988526,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +27116,2,61.0,0.0,8,111,730.0,,,85,65,0.0,0.0,,1020.0,401.8208753649911,,71,0,0,0,0,0,0,0,0,2,50.0,1,1999.0,6,127138,2,2,0,0,2,,1000.0,,42,2.0,0.0,4.0,5.0,3.0,5,4,133.2429599457404,730.0,73269.60429698094,6,1,0,1,156.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01392118887206859,24423.20143232698,7,4,7,7_1,7_2,7_0_0 +27117,2,54.0,0.0,2,111,300.0,900.0,0.0,56,34,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,2,12.0,1,,2,127139,2,1,1,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,277.284371223166,300.0,72707.58581409989,4,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01650446767780438,31611.993832217348,8,4,8,8_1,8_3,8_0_1 +27118,2,59.0,0.0,2,111,360.0,,,0,77,0.0,0.0,,660.0,415.67676761895626,,50,0,0,0,0,0,0,0,0,0,,2,,2,127140,2,2,0,0,2,,100.0,250.0,31,0.0,1.0,2.0,3.0,2.0,3,3,65.71658195929436,360.0,25837.274049840584,0,5,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025544490441477986,12918.637024920292,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +27119,2,55.0,0.0,7,112,2200.0,0.0,0.0,86,48,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,127141,2,2,1,0,1,,200.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1390.34317054354,2200.0,28367.004744947506,5,1,1,2,125.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07755489237515799,18911.33649663167,5,3,5,5_1,5_0,5_0_0 +27120,2,71.0,0.0,1,111,177.0,0.0,0.0,78,77,0.0,0.0,301.8204961768548,979.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,127142,2,2,5,0,1,,215.0,,41,0.0,10.0,5.0,2.0,1.5,2,2,284.582798503147,177.0,23434.45807850495,5,5,0,1,80.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.04177608872884409,15622.972052336634,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +27121,2,51.0,0.0,2,111,500.0,800.0,0.0,0,42,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,20,0,0,0,0,0,0,0,0,1,4.0,1,,2,127143,2,2,3,0,1,,400.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1673.06381786132,500.0,27624.69106033765,0,1,1,2,79.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047059349809941746,27624.69106033765,7,4,7,7_1,7_2,7_0_1 +27122,2,64.0,0.0,5,400,539.0,0.0,0.0,78,75,0.0,595.9472746546007,919.1030928775409,989.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,127144,1,1,3,0,2,,187.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,893.656063827944,539.0,32525.441661981706,5,5,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030406966038404974,21683.62777465447,6,3,6,6_1,6_0,6_0_0 +27123,2,79.0,0.0,1,112,275.0,1800.0,0.0,0,78,0.0,0.0,468.93014942731685,2075.0,0.0,3417.30728629162,70,0,0,0,0,0,0,0,0,0,,1,,1,127145,2,1,1,0,1,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,163.136271652121,275.0,18020.92175336543,0,5,0,1,70.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11514394371156354,18020.92175336543,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +27124,2,28.0,0.0,8,111,750.0,0.0,0.0,0,47,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,25.0,2,2000.0,6,127146,2,1,0,0,1,,0.0,620.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1047.03322830284,750.0,6572.302018195349,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11411526705918762,6572.302018195349,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +27125,1,61.0,270.0,2,111,260.0,620.0,0.0,0,77,0.0,0.0,443.3521412767359,1015.0,187.05454542853033,1177.072509722669,50,0,0,0,0,0,0,0,0,0,,1,,2,127147,2,1,2,0,1,,240.0,486.0,11,0.0,0.0,3.0,1.0,1.0,1,1,398.599650208908,260.0,9792.427419471873,0,5,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10365152137678454,9792.427419471873,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +27126,2,48.0,0.0,2,111,2611.0,0.0,0.0,46,38,0.0,397.2981831030672,4452.278618744452,2911.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,127148,2,1,1,0,1,,651.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,462.014747547027,2611.0,99050.33935965055,1,1,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029389096683759913,35375.1211998752,9,5,9,9_1,9_4,9_0_1 +27127,2,55.0,0.0,5,111,601.0,1000.0,0.0,45,65,0.0,0.0,1024.8255265666087,1601.0,0.0,1898.504047939789,44,0,0,0,0,0,0,0,0,0,,1,,3,127149,2,2,3,0,1,,279.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,510.754202020995,601.0,46493.69259745507,1,4,0,1,130.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03443477836577846,30995.795064970047,8,4,8,8_1,8_2,8_0_0 +27128,2,87.0,0.0,5,300,350.0,0.0,0.0,71,71,1898.4291318658827,0.0,596.8201901802214,2250.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127150,2,1,2,0,1,,120.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1577.66732550116,350.0,17473.94050746415,5,5,0,1,72.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12876317159480383,11649.293671642767,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +27129,0,47.0,0.0,1,111,400.0,,,0,52,0.0,0.0,,485.0,117.77508415870429,,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,127151,2,2,0,0,2,,400.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,88.17704451097369,400.0,23351.6198681288,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020769437098534946,14594.7624175805,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +27130,2,58.0,0.0,2,111,720.0,600.0,0.0,54,52,0.0,0.0,1227.744391227884,1320.0,0.0,1139.1024287638734,60,2,1,2,2,2,2,2,1,1,30.0,2,,2,127152,2,3,0,1,1,936.0,0.0,600.0,43,2.0,2.0,4.0,2.0,1.5,2,2,327.26452641739,720.0,48868.84956175849,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02701107171209007,32579.233041172327,8,4,8,8_0,8_4,8_0_1 +27131,0,77.0,0.0,1,111,280.0,859.0,0.0,78,78,0.0,0.0,477.4561521441771,1139.0,0.0,1630.8149771802787,71,0,0,0,0,0,0,0,0,0,,1,,1,127153,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,332.085047564426,280.0,26399.718503216245,5,5,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04314439943218474,17599.812335477498,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +27132,2,70.0,0.0,1,112,398.0,1280.0,0.0,78,72,0.0,0.0,678.6698162620803,1678.0,0.0,2430.0851813629297,50,0,0,0,0,0,0,0,0,0,,1,,1,127154,2,1,2,0,1,,741.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,897.936307891656,398.0,27112.098237952843,5,5,0,1,98.0,8,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061891189138989375,18074.73215863523,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +27134,2,71.0,0.0,8,120,650.0,0.0,0.0,0,72,1529.2901340030721,0.0,1108.3803531918397,2190.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127156,2,1,2,0,1,,200.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,273.825901545967,650.0,17270.04330593237,0,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1268091782518994,17270.04330593237,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +27135,2,64.0,0.0,5,111,1786.0,0.0,0.0,75,74,0.0,0.0,3045.4881704625013,1786.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,127157,2,1,2,0,1,,382.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,656.326765687432,1786.0,64449.72039504741,5,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027711524410852898,42966.48026336494,9,5,9,9_1,9_4,9_0_0 +27136,2,25.0,0.0,7,112,0.0,0.0,0.0,55,62,0.0,0.0,0.0,1591.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,127158,2,3,2,0,1,,543.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,680.332737827606,0.0,39387.30425567481,1,1,1,2,93.0,10,1,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0403937266097812,26258.20283711654,7,4,7,7_1,7_1,7_0_0 +27137,2,79.0,0.0,7,112,650.0,0.0,0.0,0,86,0.0,0.0,1108.3803531918397,1800.0,1593.427609205999,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,127159,2,1,2,0,1,,340.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,975.226211069127,650.0,18353.631284986597,0,6,0,1,95.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09807323532059908,18353.631284986597,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +27138,1,26.0,200.0,9,111,530.0,0.0,0.0,0,46,0.0,0.0,903.7562879871924,661.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,2010.0,6,127160,2,1,0,1,1,439.0,0.0,566.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1244.73227146653,530.0,29020.851126610523,0,1,2,3,53.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022776726882207096,22323.73163585425,6,3,6,6_0,6_2,6_0_0 +27139,2,50.0,0.0,2,112,1203.0,0.0,0.0,55,64,0.0,0.0,2051.3562536765894,1263.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127161,1,2,2,0,1,,142.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,728.381807538957,1203.0,37608.76145257257,1,1,0,1,85.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03358260020321957,25072.507635048383,7,4,7,7_1,7_0,7_0_1 +27140,2,80.0,0.0,1,400,468.0,0.0,0.0,78,75,0.0,105.94618216081791,798.0338542981247,758.0,290.9737373332694,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127162,2,1,2,0,1,,350.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,835.447652341873,468.0,32944.52085297729,5,5,0,1,75.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02300837833953494,21963.01390198486,6,3,6,6_1,6_0,6_1_0 +27141,2,50.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,2579.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,127163,2,1,1,0,1,,364.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1107.8168367113,0.0,87679.71737381589,1,1,0,1,120.0,7,5,5,0,0,0,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029413872184425816,41752.24636848376,9,5,9,9_1,9_2,9_1_0 +27142,2,68.0,0.0,2,111,348.0,188.0,0.0,77,78,0.0,0.0,593.4097890934773,536.0,0.0,356.9187610126803,71,0,0,0,0,0,0,0,0,0,,2,,2,127164,2,1,0,1,1,417.0,0.0,359.0,41,0.0,4.0,5.0,2.0,1.5,2,2,321.41617422179,348.0,30115.934907813706,5,5,2,3,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017797886787865667,20077.28993854247,5,3,5,5_0,5_3,5_0_1 +27143,2,61.0,0.0,5,112,748.0,0.0,0.0,0,78,0.0,0.0,1275.4900064423018,1468.0,997.6242422854951,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127165,2,2,3,0,2,,193.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1362.44425394697,748.0,18064.457403321907,0,5,0,1,80.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08126454989619819,18064.457403321907,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +27144,1,48.0,180.0,5,300,1500.0,0.0,0.0,69,69,1265.6194212439218,0.0,2557.8008150580918,2790.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,127166,1,1,3,0,2,,600.0,470.0,43,3.0,4.0,6.0,5.0,2.8,4,3,1267.02810355009,1500.0,33570.076918615974,1,1,2,3,130.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08310972914252786,11989.313185219991,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +27145,2,69.0,0.0,1,111,337.0,950.0,0.0,0,74,0.0,66.2163638505112,574.6525831163846,1337.0,0.0,1803.5788455427996,30,2,2,2,2,2,2,1,2,0,,2,,1,127167,2,3,0,0,1,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,297.381205364134,337.0,61008.28495127151,0,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.021915056308629027,61008.28495127151,10,5,10,10_0,10_4,10_1_0 +27146,2,66.0,0.0,6,400,1622.0,0.0,0.0,78,77,1054.6828510366015,0.0,2765.835281349483,2814.0,266.03313127613205,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,127168,2,1,1,0,1,,382.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,832.086459135165,1622.0,28290.253006749066,5,5,0,1,92.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0994688877235802,18860.168671166044,5,3,5,5_1,5_0,5_0_0 +27147,2,69.0,0.0,1,111,2177.0,1246.0,0.0,0,78,0.0,0.0,3712.221582920977,3423.0,0.0,2365.5360437329773,70,0,0,0,0,0,0,0,0,0,,1,,1,127169,2,1,4,0,2,,235.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1090.34374626446,2177.0,16414.11887493058,0,5,0,1,51.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20853997866604806,16414.11887493058,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +27148,2,76.0,0.0,1,111,450.0,0.0,0.0,74,74,0.0,0.0,767.3402445174275,450.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,127170,2,1,0,1,1,1140.0,0.0,2150.0,41,0.0,2.0,5.0,2.0,1.5,2,2,949.769764678115,450.0,122491.11120875142,5,5,2,3,130.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003673735959771827,81660.74080583428,10,5,10,10_0,10_4,10_1_0 +27149,2,55.0,0.0,2,111,650.0,350.0,0.0,52,52,0.0,0.0,1108.3803531918397,1000.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,12.0,2,,2,127171,2,1,0,1,1,,0.0,350.0,43,3.0,0.0,3.0,3.0,2.0,3,3,244.754420148842,650.0,56444.28249196063,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01771658626615424,28222.141245980314,8,4,8,8_0,8_4,8_0_1 +27150,1,53.0,413.0,8,111,0.0,,,0,85,0.0,0.0,,660.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,127172,2,1,0,0,2,,167.0,600.0,31,0.0,3.0,3.0,4.0,2.3,3,2,37.88795075158533,0.0,18553.351247280676,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0355730881824778,8066.674455339425,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27151,2,27.0,0.0,1,111,456.0,0.0,0.0,0,46,0.0,0.0,777.5714477776598,456.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,15.0,2,,1,127173,2,2,0,0,1,,0.0,820.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1029.08623358713,456.0,33704.2436737793,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013529453573074885,33704.2436737793,9,5,9,9_0,9_4,9_1_0 +27152,2,70.0,0.0,2,111,300.0,300.0,0.0,0,78,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,127174,2,1,0,0,1,,200.0,360.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1390.65058192378,300.0,17970.67409877022,0,5,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03338772918045737,17970.67409877022,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +27153,2,70.0,0.0,6,111,630.0,,,0,74,0.0,0.0,,651.0,29.09737373332694,,12,0,0,0,0,0,0,0,0,0,,2,,4,127175,2,1,0,0,1,,170.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,109.07302216240072,630.0,44561.60993307876,0,5,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01460898744407241,44561.60993307876,10,5,10,10_0,10_2,10_0_0 +27154,2,61.0,0.0,2,111,360.0,0.0,0.0,56,22,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,127176,2,2,0,1,2,,0.0,,43,2.0,2.0,4.0,3.0,2.0,3,3,453.314537961236,360.0,53400.579611401816,1,1,0,1,106.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006741499860483437,26700.289805700908,7,4,7,7_0,7_3,7_0_1 +27156,2,50.0,0.0,1,111,300.0,2200.0,0.0,56,48,0.0,0.0,511.56016301161833,2500.0,0.0,4176.708905467536,50,2,2,2,2,2,1,2,2,2,10.0,1,,1,127178,1,3,4,0,2,,400.0,556.0,43,2.0,3.0,3.0,2.0,1.5,2,2,272.698105761074,300.0,41156.87378512142,1,1,2,3,60.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06074319475897056,27437.91585674761,7,4,7,7_1,7_2,7_1_0 +27157,2,23.0,0.0,5,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,594.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,3,127179,2,1,0,1,1,310.0,135.0,459.0,12,1.0,0.0,1.0,1.0,1.0,1,1,897.986305834548,0.0,3574.853603828713,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.16616065042882275,3574.853603828713,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +27158,1,47.0,33.0,7,111,860.0,810.0,0.0,56,52,0.0,0.0,1466.4724672999725,1670.0,0.0,1537.788278831229,50,1,2,2,1,1,2,2,2,2,5.0,1,,5,127180,1,2,3,0,1,,350.0,439.0,43,3.0,0.0,4.0,5.0,3.0,5,4,1946.59381499386,860.0,45856.20370834222,1,1,2,3,83.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.036418191323068276,15285.401236114072,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +27159,2,60.0,0.0,7,300,4200.0,0.0,0.0,55,21,0.0,225.13563709173806,7161.842282162657,4370.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,127181,2,1,2,0,1,,250.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,761.73862858295,4200.0,99711.90613933982,1,1,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043826260766625574,66474.6040928932,10,5,10,10_1,10_0,10_0_0 +27160,2,67.0,0.0,1,111,825.0,0.0,0.0,75,56,0.0,0.0,1406.7904482819504,825.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,127182,2,2,0,1,1,480.0,0.0,446.0,42,2.0,0.0,3.0,4.0,2.5,4,4,612.925562782173,825.0,36652.743152401345,5,1,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02250854722031765,14661.097260960538,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +27161,1,34.0,351.0,5,111,350.0,350.0,0.0,63,64,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,7.0,2,,3,127183,2,1,0,0,1,,400.0,338.0,43,2.0,0.0,3.0,3.0,1.8,2,2,405.114907458415,350.0,24493.266181591913,4,1,2,3,65.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028579283579831014,13607.370100884396,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +27162,1,40.0,231.0,1,111,600.0,800.0,0.0,62,55,0.0,0.0,1023.1203260232367,1400.0,0.0,1518.8032383518312,42,2,2,1,1,2,2,2,2,2,8.0,1,,1,127184,2,1,1,0,1,,480.0,340.0,43,2.0,0.0,4.0,4.0,2.1,2,2,275.767302778982,600.0,23106.845127339086,4,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.06058810678328287,11003.259584447183,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +27163,2,82.0,0.0,2,111,1300.0,0.0,0.0,0,77,0.0,211.89236432163582,2216.7607063836795,1460.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127185,2,1,2,0,1,,400.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,300.645410812118,1300.0,21104.67468313825,0,5,0,1,100.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06917898626347833,21104.67468313825,5,3,5,5_1,5_2,5_0_1 +27164,2,36.0,0.0,9,120,820.0,1400.0,0.0,54,52,0.0,0.0,1398.2644455650902,2220.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,127186,2,1,1,0,1,,770.0,,43,2.0,3.0,7.0,4.0,2.1,2,2,648.583879812288,820.0,95408.56043737121,1,1,1,2,156.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0232683523346657,45432.647827319626,10,5,10,10_1,10_0,10_0_0 +27165,2,46.0,0.0,1,111,260.0,324.0,0.0,52,63,0.0,165.540909626278,443.3521412767359,709.0,0.0,615.1153115324917,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,127187,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1169.21231475198,260.0,39886.83113079499,1,1,0,1,58.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017775290237398933,26591.220753863327,7,4,7,7_0,7_3,7_1_0 +27166,2,57.0,0.0,1,112,1300.0,0.0,0.0,35,75,0.0,132.4327277010224,2216.7607063836795,1440.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,127188,2,1,2,0,1,,300.0,,42,1.0,4.0,8.0,2.0,1.5,2,2,1797.88887827087,1300.0,33679.556219908685,4,5,0,1,130.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04275590778564909,22453.037479939125,6,3,6,6_1,6_0,6_1_0 +27167,2,90.0,0.0,1,400,300.0,0.0,0.0,0,71,0.0,1324.327277010224,511.56016301161833,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127189,1,2,4,0,2,,150.0,,21,0.0,0.0,3.0,2.0,1.5,2,2,832.811967262031,300.0,21397.233291397057,0,5,0,1,40.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06075551835585567,14264.822194264705,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +27168,2,53.0,0.0,2,111,500.0,200.0,0.0,74,47,0.0,0.0,852.6002716860306,700.0,0.0,379.7008095879578,41,0,0,0,0,0,0,0,0,3,45.0,2,,2,127190,2,2,0,1,2,,0.0,,42,1.0,3.0,4.0,3.0,2.0,3,3,208.999354727231,500.0,1757.9231898980624,5,1,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.3981971476470432,878.9615949490312,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +27169,2,50.0,0.0,5,111,180.0,0.0,0.0,0,45,0.0,0.0,306.936097806971,180.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,,3,127191,2,1,0,1,2,170.0,0.0,258.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1147.68017680797,180.0,31635.178345564156,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005689868349524869,31635.178345564156,8,4,8,8_0,8_4,8_0_0 +27170,2,77.0,0.0,2,111,361.0,1569.0,0.0,77,75,0.0,0.0,615.5773961573141,1930.0,0.0,2978.752851217529,71,0,0,0,0,0,0,0,0,0,,1,,2,127192,2,1,2,0,1,,267.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1193.34753006863,361.0,55227.27567674102,5,5,0,1,145.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03494650019126002,36818.18378449401,9,5,9,9_1,9_2,9_0_1 +27171,2,46.0,0.0,2,111,700.0,0.0,0.0,0,23,3164.0485531098047,0.0,1193.6403803604428,4437.0,0.0,0.0,41,2,2,2,2,1,2,2,2,1,5.0,2,,2,127193,1,3,0,1,2,,286.0,600.0,32,2.0,0.0,5.0,5.0,2.8,4,4,2493.80480800458,700.0,144201.89357713965,0,1,2,3,130.0,5,4,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.030769360165346666,51500.67627754988,10,5,10,10_0,10_2,10_0_1 +27172,2,50.0,0.0,7,112,1370.0,0.0,0.0,34,37,0.0,172.1625460113291,2336.124744419724,1620.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,127194,2,1,2,0,1,,737.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,1370.9424082877,1370.0,77849.45657223236,1,1,1,2,130.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020809393813775546,31139.782628892943,8,4,8,8_1,8_1,8_0_0 +27173,2,73.0,0.0,2,111,405.0,940.0,0.0,0,74,0.0,0.0,690.6062200656847,1345.0,0.0,1784.5938050634018,41,0,0,0,0,0,0,0,0,0,,2,,2,127195,2,2,0,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1410.14868046213,405.0,50521.690123859385,0,5,0,1,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026622228921926148,50521.690123859385,10,5,10,10_0,10_4,10_0_1 +27174,1,74.0,79.0,2,111,450.0,241.0,0.0,78,86,0.0,0.0,767.3402445174275,691.0,0.0,457.5394755534891,71,0,0,0,0,0,0,0,0,0,,2,,2,127196,2,1,0,1,1,834.0,0.0,440.0,41,1.0,1.0,5.0,6.0,3.5,6,5,1103.22618926484,450.0,47756.426222260336,7,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01446925690762659,13644.693206360096,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +27175,1,26.0,477.0,2,111,470.0,0.0,0.0,0,85,0.0,0.0,801.4442553848687,470.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127197,2,1,0,1,1,888.0,260.0,430.0,31,0.0,0.0,4.0,4.0,1.9,1,1,340.130529135557,470.0,14354.010739180178,0,6,2,3,117.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.032743461638711564,7554.742494305357,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +27176,1,30.0,399.0,7,111,140.0,,,0,85,0.0,0.0,,278.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,2,,5,127198,2,2,0,0,2,,500.0,440.0,31,0.0,0.0,3.0,4.0,1.9,1,1,81.43412436136443,140.0,19167.05668945787,0,6,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014504052682898548,10087.92457339888,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +27177,2,78.0,0.0,1,111,587.0,2162.0,0.0,77,74,0.0,0.0,1000.9527189593999,2749.0,0.0,4104.565751645824,12,0,0,0,0,0,0,0,0,0,,1,,1,127199,2,2,2,0,1,,490.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,1427.49281438738,587.0,71341.92699088625,5,5,0,1,230.0,4,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03853274106755173,47561.284660590834,10,5,10,10_1,10_2,10_1_0 +27178,2,48.0,0.0,1,111,0.0,0.0,1500.0,85,22,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,127200,2,1,1,0,1,,800.0,,42,1.0,0.0,8.0,4.0,2.3,3,2,1542.95776705658,0.0,54848.946695565806,6,1,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027347836018175815,23847.368128506874,6,3,6,6_1,6_3,6_1_0 +27179,2,50.0,0.0,6,112,850.0,0.0,0.0,45,48,0.0,0.0,1449.420461866252,850.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,4,127201,2,1,2,0,1,,200.0,,43,2.0,5.0,6.0,2.0,1.5,2,2,914.58321118184,850.0,59710.676126684746,1,1,1,2,125.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014235310251664263,39807.11741778983,9,5,9,9_1,9_0,9_0_0 +27180,2,70.0,0.0,9,112,3506.0,0.0,0.0,77,74,0.0,529.7309108040896,5978.433105062447,3906.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2011.0,6,127202,2,2,2,0,1,,202.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,348.710066758527,3506.0,58618.56991799244,5,5,0,1,201.0,7,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06663417421244677,39079.04661199496,9,5,9,9_1,9_1,9_0_0 +27181,2,58.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,576.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,127203,2,1,0,0,2,,129.0,500.0,12,1.0,2.0,2.0,1.0,1.0,1,1,158.06414046725985,0.0,34263.67504742086,0,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016810806173091972,34263.67504742086,9,5,9,9_0,9_2,9_0_0 +27182,2,56.0,0.0,5,111,975.0,0.0,0.0,52,47,0.0,794.5963662061343,1662.5705297877596,1635.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,,3,127204,2,1,2,0,1,,250.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,1581.98404980036,975.0,82778.51969210959,1,1,0,1,100.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019751500825108948,41389.259846054796,9,5,9,9_1,9_3,9_0_0 +27183,2,59.0,0.0,9,111,150.0,,,0,34,0.0,0.0,,200.0,69.27946126982604,,10,0,0,0,0,0,0,0,0,2,8.0,1,2010.0,6,127205,2,1,0,0,2,,270.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,189.24737593784081,150.0,57565.00728534768,0,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003474332922579288,57565.00728534768,10,5,10,10_1,10_2,10_0_0 +27184,2,42.0,0.0,1,112,1400.0,0.0,0.0,53,46,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,4,100.0,2,,1,127206,2,1,0,0,1,,350.0,,43,2.0,1.0,4.0,3.0,1.8,2,2,1488.97041418269,1400.0,41498.78374056361,1,1,1,2,72.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03373592847328557,23054.879855868672,6,3,6,6_0,6_1,6_1_0 +27185,2,48.0,0.0,1,112,550.0,0.0,0.0,0,45,0.0,1271.354185929815,937.8602988546337,1570.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,127207,2,2,3,0,1,,350.0,,32,2.0,0.0,5.0,2.0,1.5,2,2,1121.79877416639,550.0,47503.131211283246,0,1,1,2,110.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033050452885242304,31668.754140855497,8,4,8,8_1,8_0,8_1_0 +27186,1,73.0,89.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,235.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,127208,2,2,0,1,1,310.0,252.0,299.0,11,0.0,1.0,3.0,1.0,1.0,1,1,286.338489712901,0.0,17859.018310660205,0,5,2,3,77.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.013158618010919807,17859.018310660205,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +27187,2,42.0,0.0,8,111,1200.0,,,54,38,0.0,0.0,,1284.0,116.38949493330776,,10,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,127209,2,1,0,0,1,,800.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,132.40874847934924,1200.0,91037.05245033043,1,1,1,2,143.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014104147327271463,43350.9773573002,10,5,10,10_1,10_3,10_0_0 +27188,2,49.0,0.0,9,111,1560.0,,,68,47,0.0,0.0,,1680.0,166.2707070475825,,20,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,127210,2,1,0,0,1,,840.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,167.5992761550614,1560.0,47822.577644725774,1,1,1,2,104.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512985043342352,31881.71842981718,8,4,8,8_1,8_3,8_0_0 +27189,2,57.0,0.0,1,112,0.0,0.0,0.0,0,64,0.0,331.081819252556,0.0,2130.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127211,2,1,4,0,2,,105.0,,22,1.0,1.0,6.0,2.0,1.5,2,2,929.307185245436,0.0,31328.660365942233,0,1,0,1,200.0,8,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0679888630768122,20885.77357729482,5,3,5,5_1,5_0,5_1_0 +27190,2,52.0,0.0,6,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,282.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,127212,2,1,0,1,1,240.0,0.0,181.0,42,1.0,3.0,3.0,3.0,1.8,2,2,354.276581469413,0.0,22461.21898453831,7,4,2,3,50.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012554973093585041,12478.454991410172,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +27191,2,56.0,0.0,9,111,275.0,348.0,0.0,56,47,0.0,0.0,468.93014942731685,623.0,0.0,660.6794086830465,43,0,0,0,0,0,0,0,0,2,15.0,2,2006.0,6,127213,2,1,0,0,1,,143.0,470.0,43,2.0,1.0,3.0,2.0,1.5,2,2,699.406800676502,275.0,30714.299938052452,1,1,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020283711536858276,20476.199958701636,5,3,5,5_0,5_3,5_0_0 +27192,2,71.0,0.0,7,112,490.0,2600.0,0.0,74,72,0.0,0.0,835.54826625231,3090.0,0.0,4936.110524643452,12,0,0,0,0,0,0,0,0,0,,1,,5,127214,2,1,2,0,1,,490.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,666.223947416306,490.0,93976.26147141383,5,5,0,1,330.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03288064402242615,62650.84098094256,10,5,10,10_1,10_1,10_0_0 +27193,2,87.0,0.0,5,112,290.0,0.0,0.0,0,86,2035.537902500641,0.0,494.50815757789775,2280.0,83.13535352379125,0.0,70,2,2,1,2,1,2,2,2,0,,1,,3,127215,2,1,2,0,1,,120.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2348.90558797758,290.0,12468.502133496877,0,5,0,1,80.0,7,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.1828607779498016,12468.502133496877,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +27194,2,80.0,0.0,2,111,400.0,0.0,0.0,86,74,0.0,0.0,682.0802173488245,400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,127216,1,1,0,1,2,,0.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1518.33430809043,400.0,92324.15644555508,6,5,0,1,140.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.004332560571359089,61549.437630370056,10,5,10,10_0,10_3,10_0_1 +27195,2,42.0,0.0,6,111,400.0,,,68,63,0.0,0.0,,589.0,261.87636359994247,,50,2,2,2,2,1,2,2,2,2,15.0,1,,4,127217,2,2,0,0,2,,492.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,117.22765215253747,400.0,36879.7507937968,1,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.015970823753480197,13171.339569213142,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +27196,2,53.0,0.0,2,111,238.0,0.0,0.0,0,74,0.0,0.0,405.83772932255056,238.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,2,127218,2,1,0,1,1,408.0,0.0,660.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1755.51667203399,238.0,76511.35131174946,0,7,2,3,70.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0031106495431018687,76511.35131174946,10,5,10,10_0,10_2,10_0_1 +27197,0,80.0,0.0,2,112,616.0,0.0,0.0,72,72,1891.0463519086265,0.0,1050.4035347171896,2409.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,127219,2,1,2,0,1,,355.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1076.84670470452,616.0,42818.94897257062,5,5,0,1,120.0,7,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.056260138508845245,28545.965981713747,8,4,8,8_1,8_2,8_0_1 +27198,2,63.0,0.0,2,111,540.0,1340.0,0.0,54,43,0.0,0.0,920.8082934209131,1880.0,0.0,2543.9954242393173,33,0,0,0,0,0,0,0,0,2,5.0,1,,2,127220,2,1,2,0,2,,640.0,,43,2.0,2.0,5.0,3.0,2.0,3,3,496.120014883944,540.0,118931.33024416113,1,1,0,1,106.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015807441118672744,59465.665122080565,10,5,10,10_1,10_3,10_0_1 +27199,1,29.0,270.0,7,111,1080.0,0.0,0.0,0,52,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,71,2,2,2,1,1,2,2,2,2,15.0,1,,5,127221,1,3,3,0,2,,0.0,400.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1804.77604456664,1080.0,11736.41963970929,0,1,3,4,32.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,1,1,0,1,0.09202124950831697,11736.41963970929,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +27200,2,82.0,0.0,2,112,760.0,,,0,72,0.0,0.0,,892.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,127222,2,1,0,0,2,,300.0,,21,1.0,11.0,5.0,2.0,1.5,2,2,81.24529308041659,760.0,20378.853785900785,0,5,0,1,120.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04377086215796567,13585.902523933857,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +27201,2,62.0,0.0,5,111,220.0,150.0,0.0,0,77,0.0,0.0,375.14411954185346,370.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,2,,3,127223,2,2,0,1,1,240.0,0.0,232.0,11,0.0,3.0,2.0,1.0,1.0,1,1,246.00131135933,220.0,23436.433750475102,0,5,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015787384887109773,23436.433750475102,6,3,6,6_0,6_4,6_0_0 +27202,2,45.0,0.0,5,211,600.0,,,0,56,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,127224,2,2,0,0,2,,160.0,,31,0.0,0.0,2.0,5.0,2.4,2,1,55.48979611291639,600.0,21067.470792041622,0,6,0,1,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02847992556499255,8778.112830017342,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27203,1,55.0,357.0,2,111,360.0,146.0,0.0,85,90,0.0,0.0,613.872195613942,942.0,0.0,277.1815909992092,71,1,2,2,1,2,2,2,2,1,5.0,2,,2,127225,2,3,0,1,1,938.0,0.0,402.0,42,1.0,0.0,5.0,5.0,2.4,2,2,287.791097440086,360.0,23232.50462255504,6,1,2,3,98.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.040546639947096744,9680.210259397934,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27204,2,59.0,0.0,7,111,0.0,,,0,52,0.0,0.0,,1072.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,127226,2,2,0,0,2,,300.0,917.0,12,1.0,3.0,4.0,1.0,1.0,1,1,110.44737568878192,0.0,32286.12120637217,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033203121339593564,32286.12120637217,8,4,8,8_0,8_2,8_0_0 +27205,2,52.0,0.0,2,111,0.0,0.0,3410.0,42,46,0.0,0.0,2149.3853703142763,5269.0,0.0,4080.856623195562,12,0,0,0,0,0,0,0,0,3,45.0,1,,2,127227,2,1,1,0,1,,840.0,,43,2.0,0.0,7.0,5.0,3.0,5,5,1778.2674169126,0.0,101576.88820097127,1,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05187203598494976,33858.96273365709,9,5,9,9_1,9_4,9_0_1 +27206,2,83.0,0.0,1,112,352.0,0.0,0.0,77,78,0.0,264.8654554020448,600.2305912669656,2832.0,3159.143433904068,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127228,1,3,1,0,1,,342.0,,41,0.0,3.0,4.0,3.0,2.0,3,3,691.121494540929,352.0,43069.99128247855,5,5,0,1,86.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06575343796626436,21534.995641239275,6,3,6,6_1,6_0,6_1_0 +27207,2,29.0,0.0,9,112,1400.0,0.0,0.0,54,46,0.0,0.0,2387.2807607208856,1430.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,127229,2,1,1,0,1,,160.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2240.18860643878,1400.0,41506.17652109728,1,1,1,2,99.0,7,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03445270366623969,23058.986956165154,6,3,6,6_1,6_1,6_0_0 +27208,1,42.0,140.0,8,111,236.0,752.0,0.0,0,53,0.0,0.0,402.42732823580644,988.0,0.0,1427.6750440507212,71,0,0,0,0,0,0,0,0,0,,2,2001.0,6,127230,2,1,0,0,1,,110.0,331.0,22,1.0,2.0,3.0,2.0,1.5,2,2,291.809112920311,236.0,29931.92710395933,0,1,2,3,64.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03300823219863146,19954.61806930622,5,3,5,5_0,5_2,5_0_0 +27209,2,44.0,0.0,1,112,1065.0,0.0,0.0,52,21,0.0,317.83854648245375,1816.0385786912452,1365.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,127231,1,1,2,0,2,,800.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,939.237820760611,1065.0,29734.54621597559,4,1,0,1,160.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04590619914241776,11893.818486390237,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +27210,1,47.0,300.0,1,221,0.0,0.0,0.0,85,85,0.0,0.0,0.0,845.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,127232,1,1,3,0,2,,0.0,480.0,41,0.0,1.0,4.0,2.0,1.5,2,2,612.354352321435,0.0,22276.806606748796,7,7,2,3,50.0,1,3,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.037931828152784064,14851.204404499198,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +27211,1,24.0,350.0,6,111,0.0,,,0,52,0.0,0.0,,760.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,127233,2,1,0,0,2,,120.0,720.0,32,1.0,0.0,3.0,2.0,1.3,1,1,58.60169497445711,0.0,12288.0,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.061848958333333336,9452.307692307691,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27212,2,36.0,0.0,9,120,450.0,600.0,0.0,52,62,0.0,0.0,767.3402445174275,1050.0,0.0,1139.1024287638734,43,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,127234,2,1,0,0,1,,450.0,560.0,43,2.0,0.0,3.0,2.0,1.5,2,2,976.909243170081,450.0,37510.20310574203,1,1,2,3,66.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027992383753295828,25006.802070494687,7,4,7,7_0,7_0,7_0_0 +27213,1,34.0,67.0,2,111,223.0,196.0,0.0,85,63,0.0,0.0,380.25972117196966,419.0,0.0,372.10679339619867,50,0,0,0,0,0,0,0,0,0,,2,,2,127235,2,2,0,1,1,532.0,0.0,324.0,42,1.0,0.0,3.0,4.0,2.1,2,2,206.703800546864,223.0,25137.8380192536,6,1,2,3,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016668100083988092,11970.399056787428,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +27214,2,78.0,0.0,2,111,350.0,,,77,78,0.0,0.0,,644.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,0,,1,,2,127236,1,2,0,0,2,,500.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,113.57805836800758,350.0,20840.928680269328,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030900734313710897,13893.952453512886,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +27215,0,72.0,0.0,6,111,600.0,,,0,75,0.0,0.0,,744.0,199.524848457099,,41,0,0,0,0,0,0,0,0,0,,1,,4,127237,2,1,0,0,1,,200.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,84.45406376536668,600.0,28679.558889156688,0,5,0,1,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025941821590613628,28679.558889156688,8,4,8,8_1,8_2,8_0_0 +27216,2,58.0,0.0,2,112,336.0,,,85,64,0.0,0.0,,566.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,127238,2,2,0,0,2,,360.0,,42,2.0,0.0,3.0,4.0,2.5,4,4,102.69499769844236,336.0,9297.26593403437,6,4,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06087811234139832,3718.906373613748,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +27217,2,66.0,0.0,5,111,380.0,1000.0,0.0,0,77,0.0,0.0,647.9762064813832,1380.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,0,,1,,3,127239,2,1,2,0,2,,108.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,987.949113494693,380.0,40093.31510921908,0,5,0,1,92.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03441970304128535,40093.31510921908,9,5,9,9_1,9_3,9_0_0 +27218,2,52.0,0.0,9,111,480.0,,,77,21,0.0,0.0,,585.0,145.4868686666347,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,127240,2,1,0,0,2,,180.0,,42,1.0,4.0,2.0,2.0,1.5,2,2,253.29321598199084,480.0,47536.8112987469,5,1,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012306252439263232,31691.207532497934,8,4,8,8_1,8_2,8_0_0 +27219,2,42.0,0.0,9,111,0.0,0.0,0.0,22,37,0.0,0.0,0.0,3005.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,2,2011.0,6,127241,2,1,0,0,1,,459.0,1190.0,43,2.0,2.0,5.0,4.0,2.1,2,2,648.84126574241,0.0,88983.2714526601,4,1,2,3,99.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03377039246751775,42372.98640602862,9,5,9,9_0,9_4,9_0_0 +27220,1,41.0,522.0,2,111,480.0,,,0,85,0.0,0.0,,756.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,127242,2,2,0,0,2,,1116.0,690.0,31,0.0,0.0,3.0,5.0,2.5999999999999996,3,2,69.08290542741514,480.0,23931.0,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03159082361790147,9204.230769230771,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +27221,2,61.0,0.0,2,111,300.0,120.0,0.0,53,67,0.0,0.0,511.56016301161833,420.0,0.0,227.8204857527747,71,1,2,2,2,1,2,2,2,2,15.0,2,,2,127243,2,1,0,1,1,,0.0,,43,2.0,5.0,2.0,2.0,1.5,2,2,1141.34804381641,300.0,40381.45101038811,1,1,0,1,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.010400814965563153,26920.96734025874,7,4,7,7_0,7_4,7_0_1 +27222,2,57.0,0.0,1,111,180.0,325.0,0.0,0,54,0.0,0.0,306.936097806971,505.0,0.0,617.0138155804315,60,0,0,0,0,0,0,0,0,3,1.0,2,,1,127244,2,1,0,1,1,48.0,0.0,314.0,12,1.0,0.0,2.0,1.0,1.0,1,1,331.103904245373,180.0,23598.014457275833,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021400105543383816,23598.014457275833,6,3,6,6_0,6_4,6_1_0 +27223,2,50.0,0.0,8,211,500.0,,,0,55,0.0,0.0,,698.0,274.3466666285112,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,127245,2,1,0,0,2,,400.0,,32,1.0,2.0,5.0,4.0,2.1,2,2,86.37426534693522,500.0,38162.17917369558,0,1,0,1,102.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018290360118667366,18172.46627318837,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27224,2,48.0,0.0,2,111,570.0,1767.0,0.0,43,31,0.0,0.0,971.9643097220749,2337.0,0.0,3354.656652709607,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,127246,2,2,1,0,1,,340.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1005.62904128469,570.0,225493.3938887644,1,1,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01036393997933633,125274.10771598022,10,5,10,10_1,10_4,10_0_1 +27225,1,27.0,24.0,2,111,400.0,1000.0,0.0,0,43,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,31,1,2,2,2,1,2,2,2,2,20.0,2,,2,127247,1,3,0,0,2,,0.0,,32,1.0,0.0,2.0,2.0,1.3,1,1,936.077199246322,400.0,26671.058788692455,0,1,1,2,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05249135443372606,20516.199068224963,5,3,5,5_0,5_4,5_0_1 +27226,2,44.0,0.0,7,112,196.0,0.0,0.0,0,62,0.0,0.0,334.219306500924,420.0,310.3719864888207,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,127248,2,1,0,0,1,,0.0,244.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1067.08765840966,196.0,15208.865701384704,0,1,2,3,52.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027615471675955475,15208.865701384704,3,2,3_0,3_0_0,3_0_0,3_0_0_0 +27227,2,50.0,0.0,2,111,660.0,900.0,0.0,85,63,0.0,0.0,1125.4323586255605,1560.0,0.0,1708.65364314581,60,0,0,0,0,0,0,0,0,0,,2,,2,127249,2,1,0,1,1,,0.0,,42,2.0,0.0,3.0,6.0,3.0999999999999996,4,4,221.982918388807,660.0,37316.169191682406,6,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041804934262858806,12037.473932800778,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +27228,2,57.0,0.0,1,400,242.0,0.0,0.0,0,62,0.0,0.0,412.6585314960388,2462.0,3076.0080803802766,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,127250,2,1,1,0,1,,103.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,953.645415373269,242.0,23600.225667494138,0,1,0,1,40.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10432103636157367,23600.225667494138,6,3,6,6_1,6_0,6_1_0 +27229,0,29.0,0.0,2,111,0.0,,,0,48,0.0,0.0,,593.0,0.0,,31,0,0,0,0,0,0,0,0,1,2.0,2,,2,127251,1,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,125.22347847858498,0.0,20341.142630148956,0,1,5,0,24.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029152737915571932,20341.142630148956,5,3,5,5_0,5_3,5_0_1 +27230,1,28.0,330.0,7,112,400.0,,,0,81,0.0,0.0,,554.0,213.38074071106422,,50,0,0,0,0,0,0,0,0,0,,2,,5,127252,1,1,0,0,2,,350.0,358.0,32,1.0,0.0,2.0,2.0,1.3,1,1,107.95579855871935,400.0,12054.935655117692,0,4,2,3,62.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04595628013699185,9273.027427013609,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +27231,2,28.0,0.0,2,111,312.0,0.0,0.0,0,37,0.0,0.0,532.0225695320831,312.0,0.0,0.0,10,2,2,2,1,2,2,2,2,3,15.0,2,,2,127253,1,1,0,1,2,300.0,0.0,704.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1285.96669442676,312.0,36579.325395912165,0,1,2,3,21.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.008529408255157894,36579.325395912165,9,5,9,9_0,9_4,9_0_1 +27232,2,55.0,0.0,2,112,0.0,0.0,0.0,46,37,0.0,0.0,0.0,1703.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,90.0,1,,2,127254,2,1,2,0,1,,1060.0,,43,2.0,6.0,4.0,2.0,1.5,2,2,940.275831924548,0.0,17760.50648743114,1,1,1,2,90.0,9,3,8,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09588690509503145,11840.337658287426,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +27233,2,34.0,0.0,7,112,0.0,0.0,0.0,46,22,0.0,0.0,0.0,1554.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,127255,2,2,5,0,2,,830.0,1400.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1577.59022709203,0.0,47401.060392764295,1,1,2,3,72.0,9,3,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03278407670890873,26333.92244042461,7,4,7,7_1,7_1,7_0_0 +27234,2,44.0,0.0,2,111,302.0,284.0,0.0,0,55,0.0,0.0,514.9705640983625,586.0,0.0,539.1751496149001,50,2,1,2,2,1,2,2,2,0,,2,,2,127256,2,2,0,1,1,840.0,0.0,493.0,22,1.0,0.0,5.0,2.0,1.5,2,2,652.828937666806,302.0,38628.4416127012,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015170169324338486,25752.294408467467,7,4,7,7_0,7_4,7_0_1 +27235,2,71.0,0.0,1,112,1200.0,0.0,0.0,54,74,0.0,1986.490915515336,2046.2406520464733,2820.0,166.2707070475825,0.0,41,2,2,2,2,1,2,2,2,0,,1,,1,127257,2,3,4,0,1,,500.0,,42,1.0,3.0,10.0,2.0,1.5,2,2,1257.75469427095,1200.0,72530.65250092887,1,5,1,2,181.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03888011347979925,48353.76833395258,10,5,10,10_1,10_0,10_1_0 +27236,2,40.0,0.0,9,111,600.0,,,0,37,0.0,0.0,,600.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,127258,2,1,0,0,1,,240.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,151.43605832640347,600.0,48222.80273523528,0,1,1,2,81.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012442246530013362,48222.80273523528,10,5,10,10_0,10_3,10_0_0 +27237,2,66.0,0.0,5,111,1600.0,0.0,0.0,74,72,0.0,79.45963662061344,2728.320869395298,1660.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,127259,2,1,1,0,1,,550.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1113.68474140984,1600.0,86834.07469327834,5,5,0,1,110.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019116919318407817,57889.38312885223,10,5,10,10_1,10_2,10_0_0 +27238,1,36.0,95.0,1,111,587.0,1470.0,0.0,56,64,0.0,0.0,1000.9527189593999,2057.0,0.0,2790.8009504714896,30,0,0,0,0,0,0,0,0,0,,1,,1,127260,2,2,2,0,1,,592.0,706.0,43,2.0,0.0,6.0,5.0,2.4,3,2,1256.9491326397,587.0,26948.292117367815,1,1,2,3,118.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.07633136790417568,11228.455048903257,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +27239,2,63.0,0.0,2,111,1250.0,0.0,0.0,75,75,1054.6828510366015,0.0,2131.5006792150766,2350.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,127261,2,1,2,0,1,,350.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1224.84543644468,1250.0,52229.69732963284,5,5,0,1,134.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.044993559605920073,34819.79821975523,9,5,9,9_1,9_3,9_0_1 +27240,1,34.0,400.0,9,211,2131.0,0.0,0.0,0,54,0.0,0.0,3633.7823579258625,2203.0,99.7624242285495,0.0,50,2,2,2,2,1,1,2,2,0,,1,2009.0,6,127262,1,3,4,0,1,,130.0,530.0,32,1.0,0.0,4.0,3.0,1.6,1,1,557.942223055431,2131.0,13591.242178160523,0,4,2,3,83.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,1,0.16208967297631954,8494.526361350327,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +27241,2,59.0,0.0,1,112,800.0,0.0,0.0,0,47,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,127263,2,1,1,0,1,,110.0,375.0,12,1.0,0.0,2.0,1.0,1.0,1,1,831.540109544031,800.0,18044.28846052774,0,1,2,3,39.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04433535862331268,18044.28846052774,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +27242,0,63.0,0.0,1,111,360.0,180.0,0.0,77,22,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,30,0,0,0,0,0,0,0,0,1,2.0,2,,1,127264,2,1,0,1,1,856.0,0.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,1432.70725406826,360.0,50619.13714475682,6,1,5,0,120.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010667902110929871,33746.091429837885,9,5,9,9_0,9_3,9_1_0 +27243,2,34.0,0.0,5,111,600.0,0.0,0.0,56,63,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,127265,2,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,873.674472701107,600.0,45932.68843179298,1,1,1,2,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013062592686926229,21872.708777044274,6,3,6,6_0,6_4,6_0_0 +27244,0,56.0,0.0,7,400,0.0,,,0,21,0.0,0.0,,30.0,41.567676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,127266,2,2,0,0,2,,0.0,,12,1.0,6.0,2.0,1.0,1.0,1,1,57.458887657123576,0.0,9831.337762985151,0,1,5,0,30.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003051466720322597,9831.337762985151,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +27245,2,76.0,0.0,2,111,332.0,144.0,0.0,0,77,0.0,0.0,566.1265803995243,476.0,0.0,273.3845829033296,50,2,2,2,1,1,2,2,2,0,,2,,2,127267,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1011.34606518429,332.0,16489.955455859363,0,5,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02886605735680525,16489.955455859363,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +27246,2,28.0,0.0,1,111,1200.0,0.0,0.0,0,55,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,1,127268,2,2,0,0,1,,310.0,510.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2300.20162722167,1200.0,23174.3455316,0,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.05178139759604895,23174.3455316,6,3,6,6_0,6_3,6_1_0 +27247,2,87.0,0.0,1,221,271.0,0.0,0.0,0,75,0.0,0.0,462.10934725382856,951.0,942.2006732696343,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127269,2,3,4,0,1,,142.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,586.629302584556,271.0,24249.424140236806,0,5,0,1,80.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03921742613351449,24249.424140236806,7,4,7,7_1,7_1,7_1_0 +27248,2,58.0,0.0,5,111,1200.0,240.0,0.0,75,33,0.0,331.081819252556,2046.2406520464733,1690.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,127270,2,2,2,0,1,,600.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1082.91727862041,1200.0,44922.21988804615,5,1,0,1,90.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037620580732915,29948.146592030767,8,4,8,8_1,8_2,8_0_0 +27249,2,54.0,0.0,1,112,350.0,0.0,0.0,0,37,1582.0242765549024,264.8654554020448,596.8201901802214,2063.0,18.012659930154772,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,,1,127271,2,1,4,0,1,,300.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1748.1247749658,350.0,38357.0,0,1,1,2,100.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.053784185415960584,38357.0,9,5,9,9_1,9_0,9_1_0 +27250,2,59.0,0.0,6,120,750.0,,,0,52,0.0,0.0,,948.0,274.3466666285112,,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,127272,2,2,0,0,2,,400.0,,32,4.0,0.0,6.0,4.0,2.5,4,4,108.52108624404863,750.0,87698.22204118452,0,1,0,1,130.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010809797256263687,35079.28881647381,9,5,9,9_1,9_1,9_0_0 +27251,2,51.0,0.0,9,112,346.0,1311.0,0.0,45,62,0.0,0.0,589.9993880067332,1657.0,0.0,2488.9388068490634,50,0,0,0,0,0,0,0,0,2,35.0,1,2005.0,6,127273,2,1,1,0,1,,237.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,1153.78819954695,346.0,53806.0,1,1,1,2,105.0,4,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030795822027283204,21522.4,6,3,6,6_1,6_0,6_0_0 +27252,2,47.0,0.0,7,120,1460.0,0.0,0.0,56,37,1054.6828510366015,0.0,2489.592793323209,2580.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,127274,2,1,1,0,1,,220.0,,43,2.0,2.0,6.0,3.0,2.0,3,3,351.515778823869,1460.0,27085.053260138728,1,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09525548926267038,13542.526630069364,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +27253,1,43.0,410.0,2,111,300.0,1190.0,0.0,0,46,0.0,0.0,511.56016301161833,1490.0,0.0,2259.219817048349,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,127275,1,1,2,0,1,,236.0,550.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1060.53562456971,300.0,33970.65946910941,0,1,2,3,100.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04386137988739677,21231.66216819338,5,3,5,5_1,5_1,5_0_1 +27254,2,59.0,0.0,2,111,0.0,0.0,1320.0,47,43,0.0,0.0,832.0201433474618,1320.0,0.0,1579.6864347853789,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,127276,2,1,2,0,1,,300.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,265.531177086008,0.0,65347.3058417763,1,1,0,1,70.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02019976161214788,43564.8705611842,10,5,10,10_1,10_2,10_0_1 +27255,2,40.0,0.0,5,111,820.0,0.0,0.0,63,56,0.0,0.0,1398.2644455650902,820.0,0.0,0.0,71,2,2,2,2,1,2,2,2,1,10.0,2,,3,127277,2,2,0,0,1,,0.0,386.0,43,2.0,0.0,2.0,5.0,2.4,2,2,751.076494280639,820.0,40723.35078831231,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.020135867607322278,16968.062828463462,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +27256,2,55.0,0.0,1,111,500.0,850.0,0.0,31,31,0.0,0.0,852.6002716860306,1350.0,0.0,1613.7284407488207,10,0,0,0,0,0,0,0,0,3,30.0,1,,1,127278,2,1,3,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,714.718388663985,500.0,225805.32011523825,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.005978601386854111,98176.22613706012,10,5,10,10_1,10_4,10_1_0 +27257,0,70.0,0.0,2,120,0.0,0.0,0.0,86,78,0.0,0.0,0.0,616.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127279,2,1,0,1,1,,191.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,335.237859311885,0.0,41406.933801322055,6,5,5,0,60.0,0,2,4,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014876735451015987,27604.622534214705,7,4,7,7_0,7_1,7_0_1 +27258,1,43.0,341.0,1,400,726.0,0.0,0.0,0,56,0.0,317.83854648245375,1237.9755944881165,1466.0,692.7946126982605,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,127280,1,2,5,0,2,,225.0,394.0,32,1.0,2.0,6.0,2.0,1.3,1,1,824.076893816304,726.0,10256.0,0,4,2,3,84.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.14294071762870514,7889.230769230769,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +27259,0,59.0,0.0,1,111,0.0,0.0,600.0,75,56,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,71,0,0,0,0,0,0,0,0,0,,2,,1,127281,2,1,0,1,1,,0.0,,42,1.0,2.0,1.0,2.0,1.5,2,2,876.469041365168,0.0,60940.37668255886,5,1,5,0,25.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009845689059741569,40626.91778837257,9,5,9,9_0,9_4,9_1_0 +27260,2,51.0,0.0,2,111,600.0,,,46,52,0.0,0.0,,669.0,95.60565655235995,,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,127282,2,2,0,0,2,,700.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,104.0441763855755,600.0,44854.47685810428,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014914899177541638,24919.153810057935,7,4,7,7_0,7_2,7_0_1 +27261,2,79.0,0.0,2,111,368.0,256.0,0.0,77,78,0.0,0.0,627.5137999609185,624.0,0.0,486.017036272586,31,0,0,0,0,0,0,0,0,0,,2,,2,127283,2,1,0,3,1,920.0,0.0,486.0,41,0.0,3.0,4.0,2.0,1.5,2,2,1662.64226016584,368.0,20702.694653066555,5,5,2,3,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030141003886543383,13801.796435377704,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +27262,2,52.0,0.0,7,221,580.0,,,0,52,0.0,0.0,,844.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,127284,2,2,0,0,2,,300.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,85.87545443802038,580.0,30624.728726892332,0,1,0,1,90.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027559427792052987,20416.48581792822,5,3,5,5_1,5_1,5_0_0 +27263,2,74.0,0.0,9,112,219.0,599.0,0.0,77,78,0.0,0.0,373.43891899848137,818.0,0.0,1137.2039247159337,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,127285,2,2,1,0,1,,85.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1928.59397482499,219.0,24504.14187241614,5,5,1,2,80.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033382111655205826,16336.094581610761,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +27264,2,45.0,0.0,2,111,1200.0,1800.0,0.0,46,47,0.0,0.0,2046.2406520464733,3000.0,0.0,3417.30728629162,50,2,2,1,2,1,2,2,2,2,30.0,1,,2,127286,2,3,4,0,1,,250.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,1128.81333582705,1200.0,53683.859160741646,1,1,1,2,96.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.055882718696085534,26841.929580370823,7,4,7,7_1,7_3,7_0_1 +27265,2,49.0,0.0,5,112,0.0,0.0,0.0,56,47,0.0,0.0,0.0,1426.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,80.0,1,,3,127287,2,2,5,0,1,,0.0,820.0,43,2.0,1.0,4.0,4.0,2.1,2,2,919.026925999341,0.0,46948.32071264337,1,1,2,3,89.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030373823352024015,22356.34319649684,6,3,6,6_1,6_1,6_0_0 +27266,2,29.0,0.0,2,111,0.0,0.0,0.0,54,63,0.0,0.0,0.0,536.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,2,,2,127288,1,2,0,0,2,,0.0,605.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1452.72469027748,0.0,34472.26502303297,1,1,2,3,60.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015548731701901995,22981.51001535531,6,3,6,6_0,6_3,6_0_1 +27267,2,51.0,0.0,8,111,150.0,1500.0,0.0,0,47,0.0,0.0,255.78008150580916,1650.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,127289,2,1,1,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1755.68524595591,150.0,48298.29196276371,0,1,1,2,105.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034162698781813904,48298.29196276371,10,5,10,10_1,10_3,10_0_0 +27268,2,65.0,0.0,7,111,260.0,280.0,0.0,0,77,0.0,0.0,443.3521412767359,540.0,0.0,531.581133423141,71,0,0,0,0,0,0,0,0,0,,2,,5,127290,2,1,0,1,1,,0.0,506.0,11,0.0,4.0,4.0,1.0,1.0,1,1,982.75291609658,260.0,17153.09518795336,0,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03148119882056287,17153.09518795336,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +27269,2,46.0,0.0,9,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,668.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2013.0,6,127291,2,1,0,0,1,,303.0,550.0,12,1.0,3.0,4.0,1.0,1.0,1,1,916.201802659511,0.0,17990.79112670556,0,1,2,3,80.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0371301070250557,17990.79112670556,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +27270,2,56.0,0.0,7,111,1030.0,840.0,0.0,56,62,0.0,0.0,1756.356559673223,1870.0,0.0,1594.7434002694229,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,127292,2,2,2,0,1,,563.0,,43,4.0,0.0,5.0,5.0,3.0,5,5,352.7902843004,1030.0,14346.392986923838,4,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13034635268282627,4782.13099564128,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +27271,2,42.0,0.0,9,111,1000.0,100.0,0.0,37,54,0.0,0.0,1705.2005433720612,1100.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,3,30.0,2,2010.0,6,127293,2,1,0,0,1,,750.0,784.0,43,2.0,0.0,4.0,5.0,2.4,2,2,789.626635095871,1000.0,50008.08189223849,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021996444542111613,20836.700788432707,5,3,5,5_0,5_4,5_0_0 +27272,0,71.0,0.0,6,111,1200.0,,,0,78,0.0,0.0,,1330.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,4,127294,2,2,0,0,2,,600.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,129.39769147612833,1200.0,15116.900826446281,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08798099658583655,15116.900826446281,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +27273,1,39.0,199.0,2,111,960.0,,,0,46,0.0,0.0,,1008.0,66.50828281903301,,31,0,0,0,0,0,0,0,0,2,6.0,1,,2,127295,1,1,0,0,2,,420.0,568.0,32,1.0,0.0,5.0,2.0,1.3,1,1,161.3443001833365,960.0,20626.232416246927,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04886980712997376,15866.332627882251,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +27274,2,58.0,0.0,6,111,2000.0,0.0,0.0,75,34,0.0,397.2981831030672,3410.4010867441225,2300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,4,127296,2,1,2,0,1,,600.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,526.938198876418,2000.0,78436.82038734604,5,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02932296322877274,52291.21359156403,10,5,10,10_1,10_4,10_0_0 +27275,1,25.0,270.0,2,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,545.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,10.0,2,,2,127297,2,2,0,1,1,463.0,258.0,256.0,12,1.0,0.0,3.0,1.0,1.0,1,1,374.566340713082,0.0,8949.363560136513,0,1,2,3,75.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06089818525505143,8949.363560136513,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27276,2,56.0,0.0,6,400,862.0,0.0,0.0,0,52,0.0,0.0,1469.8828683867168,892.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,127298,2,1,2,0,1,,52.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1503.29680010824,862.0,12958.571037182104,0,1,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06883475017735977,12958.571037182104,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +27277,2,76.0,0.0,2,111,310.0,130.0,0.0,77,77,0.0,0.0,528.612168445339,440.0,0.0,246.80552623217258,70,0,0,0,0,0,0,0,0,0,,2,,2,127299,1,1,0,1,1,800.0,400.0,267.0,41,0.0,3.0,3.0,2.0,1.5,2,2,63.9884641085534,310.0,21047.316280214927,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020905278095412688,14031.544186809951,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +27278,2,61.0,0.0,5,111,330.0,,,52,65,0.0,0.0,,418.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,2,45.0,1,,3,127300,2,2,0,0,1,,420.0,650.0,43,2.0,1.0,4.0,2.0,1.5,2,2,122.23675197467585,330.0,87219.31543801536,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004792516404202489,58146.21029201024,10,5,10,10_1,10_2,10_0_0 +27279,2,77.0,0.0,2,111,580.0,,,86,86,0.0,0.0,,810.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,127301,2,2,0,0,2,,600.0,,41,2.0,6.0,5.0,4.0,2.5,4,4,162.53232454086026,580.0,19633.97497816299,7,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04125501845147945,7853.589991265197,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +27280,2,70.0,0.0,5,111,1035.0,0.0,0.0,77,74,158.20242765549023,72.83800023556232,1764.8825623900834,1280.0,55.423569015860835,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,127302,1,2,1,0,2,,280.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,711.211509611851,1035.0,61604.908346842574,5,5,0,1,110.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020777565202977917,41069.93889789505,9,5,9,9_1,9_4,9_0_0 +27281,1,38.0,24.0,6,112,670.0,0.0,0.0,42,62,0.0,397.2981831030672,1142.484364059281,1010.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,4,127303,2,2,2,0,1,,434.0,,43,3.0,0.0,4.0,6.0,3.0999999999999996,4,3,108.115117205102,670.0,20084.415146614676,1,1,1,2,100.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05028774762058433,6478.843595682154,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +27282,2,70.0,0.0,5,111,700.0,0.0,0.0,74,75,0.0,0.0,1193.6403803604428,1487.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,2,,3,127304,2,2,0,1,1,,290.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,287.20516474738,700.0,33472.31791352308,5,5,0,1,75.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.044424769262819415,22314.878609015388,6,3,6,6_0,6_3,6_0_0 +27283,2,35.0,0.0,2,112,360.0,180.0,0.0,55,67,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,71,2,2,2,1,2,2,2,2,2,15.0,2,,2,127305,2,1,0,1,1,1116.0,346.0,388.0,43,2.0,0.0,4.0,3.0,1.8,2,2,267.974704935035,360.0,32789.083706839025,1,1,2,3,76.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,1,0,0.01646889571017103,18216.157614910568,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +27284,2,66.0,0.0,6,112,396.0,,,0,77,0.0,0.0,,462.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,4,127306,2,1,0,0,2,,295.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,113.99497844659733,396.0,33010.909710183034,0,5,0,1,62.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013995373167722326,33010.909710183034,8,4,8,8_1,8_2,8_0_0 +27285,2,45.0,0.0,2,111,400.0,100.0,0.0,85,37,0.0,0.0,682.0802173488245,500.0,0.0,189.8504047939789,12,0,0,0,0,0,0,0,0,2,30.0,2,,2,127307,1,1,0,1,1,,0.0,,42,1.0,0.0,8.0,5.0,2.5999999999999996,3,2,703.485809969499,400.0,77268.08349715977,7,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006470977114611353,29718.49365275376,8,4,8,8_0,8_4,8_0_1 +27286,2,75.0,0.0,1,111,334.0,0.0,0.0,0,77,0.0,0.0,569.5369814862685,334.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,127308,2,1,0,1,1,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1968.33263563272,334.0,31355.916773962774,0,5,0,1,99.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01065189713340947,31355.916773962774,8,4,8,8_0,8_3,8_1_0 +27287,2,80.0,0.0,2,111,245.0,0.0,0.0,0,74,0.0,0.0,417.774133126155,730.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,127309,2,2,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1268.1288710632,245.0,39733.45183922663,0,5,0,1,66.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018372428425141547,39733.45183922663,9,5,9,9_0,9_3,9_0_1 +27288,2,44.0,0.0,1,112,489.0,0.0,0.0,52,62,421.8731404146406,0.0,833.843065708938,979.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,,1,127310,2,1,1,0,1,,234.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,686.734769723877,489.0,34477.73055561102,1,1,0,1,120.0,6,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028395140405802443,16417.966931243343,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +27289,2,36.0,0.0,7,111,600.0,,,0,43,0.0,0.0,,720.0,166.2707070475825,,33,0,0,0,0,0,0,0,0,2,20.0,1,,5,127311,2,1,0,0,2,,300.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,7.835959960480189,600.0,25481.0,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028256347867038185,25481.0,7,4,7,7_1,7_2,7_0_0 +27290,2,43.0,0.0,8,111,262.0,0.0,0.0,0,45,0.0,0.0,446.76254236348,262.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,10.0,2,2003.0,6,127312,2,1,0,1,1,894.0,0.0,521.0,12,1.0,0.0,2.0,1.0,1.0,1,1,745.012229453034,262.0,36526.70349761009,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0071728345268590255,36526.70349761009,9,5,9,9_0,9_4,9_0_0 +27291,1,61.0,60.0,2,111,200.0,250.0,0.0,0,68,0.0,0.0,341.04010867441224,450.0,0.0,474.62601198494724,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,127313,2,1,0,1,1,,0.0,440.0,12,1.0,1.0,1.0,1.0,1.0,1,1,739.178513106612,200.0,15018.220864507239,0,1,2,3,33.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029963602483932768,15018.220864507239,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +27292,2,32.0,0.0,2,120,0.0,0.0,0.0,52,64,0.0,0.0,0.0,5141.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,127314,1,2,3,0,2,,121.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,307.491298040224,0.0,34932.536010855474,1,1,1,2,140.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1471693895456776,23288.357340570317,6,3,6,6_1,6_0,6_0_1 +27293,2,51.0,0.0,8,111,900.0,4000.0,0.0,63,46,0.0,397.2981831030672,1534.680489034855,5200.0,0.0,7594.016191759156,20,2,2,1,2,1,2,2,2,3,60.0,1,2002.0,6,127315,2,1,3,0,1,,600.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,475.366828483835,900.0,37887.638904986925,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.13724792967543709,14572.168809610357,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +27294,1,49.0,585.0,1,111,1000.0,1000.0,0.0,85,85,0.0,0.0,1705.2005433720612,2197.0,272.96107740311464,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,127316,1,2,1,0,2,,507.0,527.0,41,0.0,2.0,4.0,7.0,3.1999999999999993,4,3,474.057432751465,1000.0,36137.66338550993,6,7,2,3,60.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06079529759749017,11293.019807971856,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +27295,2,48.0,0.0,5,111,600.0,500.0,0.0,77,62,0.0,0.0,1023.1203260232367,1130.0,41.567676761895626,949.2520239698945,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,127317,2,2,0,0,1,,360.0,371.0,42,1.0,0.0,3.0,4.0,2.3,3,2,180.656434686856,600.0,32806.75077732797,6,1,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0344441303459079,14263.804685794772,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +27296,2,46.0,0.0,2,111,480.0,77.0,0.0,52,52,0.0,0.0,818.4962608185893,557.0,0.0,146.18481169136376,50,1,2,2,1,1,2,2,2,2,15.0,2,,2,127318,1,1,0,1,1,,0.0,680.0,43,2.0,0.0,4.0,4.0,2.1,3,2,208.506092590926,480.0,40826.08679983377,1,1,2,3,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013643237539049858,19440.993714206557,5,3,5,5_0,5_4,5_0_1 +27297,2,65.0,0.0,1,111,1008.0,,,47,31,0.0,0.0,,1146.0,191.2113131047199,,10,0,0,0,0,0,0,0,0,1,3.0,1,,1,127319,2,1,0,0,2,,740.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,140.50719943700457,1008.0,169283.38953648912,1,1,0,1,122.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006769713219577159,84641.69476824456,10,5,10,10_1,10_2,10_1_0 +27298,2,58.0,0.0,6,111,969.0,0.0,0.0,54,37,0.0,0.0,1652.3393265275272,969.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,127320,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1742.38940274114,969.0,74843.44315089122,1,1,0,1,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012947025941155692,49895.628767260816,10,5,10,10_0,10_3,10_0_0 +27299,2,41.0,0.0,1,111,1042.0,2250.0,0.0,37,38,0.0,0.0,1776.8189661936876,3292.0,0.0,4271.6341078645255,12,2,2,2,2,1,2,2,2,2,25.0,1,,1,127321,1,2,1,0,1,,1502.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,206.203957306359,1042.0,138829.21553668505,1,1,1,2,180.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0.023712588069260555,77127.34196482503,10,5,10,10_1,10_4,10_1_0 +27300,2,54.0,0.0,6,112,1400.0,0.0,0.0,67,48,0.0,529.7309108040896,2387.2807607208856,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,127322,2,1,1,0,1,,600.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,805.210765443502,1400.0,85000.58361371084,1,1,0,1,110.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02117632519066204,34000.23344548434,9,5,9,9_1,9_1,9_0_0 +27301,2,40.0,0.0,6,111,1200.0,,,0,34,0.0,0.0,,1326.0,174.58424239996165,,20,0,0,0,0,0,0,0,0,0,,1,,4,127323,2,1,0,0,2,,320.0,,32,1.0,3.0,7.0,4.0,2.3,3,3,124.68371092099382,1200.0,81909.68909263816,0,1,0,1,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01618856101993406,35612.90830114703,9,5,9,9_1,9_2,9_0_0 +27302,2,42.0,0.0,8,111,0.0,0.0,1400.0,52,31,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,31,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,127324,2,1,2,0,1,,300.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,372.861770518526,0.0,62009.77664220592,1,1,1,2,168.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02257708503092903,23849.914093156127,6,3,6,6_1,6_2,6_0_0 +27303,2,58.0,0.0,5,400,340.0,,,0,77,0.0,0.0,,604.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,3,127325,2,2,0,0,2,,120.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,92.73109719272854,340.0,8204.973568408144,0,7,0,1,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07361388735310487,8204.973568408144,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +27304,0,86.0,0.0,5,112,1517.0,0.0,0.0,0,77,0.0,0.0,2586.7892242954167,1667.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127326,2,1,2,0,1,,180.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1012.37279361788,1517.0,18676.806740839427,0,5,5,0,100.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08925508643588807,18676.806740839427,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27305,2,68.0,0.0,2,111,360.0,0.0,0.0,72,77,0.0,0.0,613.872195613942,855.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,127327,2,1,0,1,1,,0.0,592.0,41,0.0,2.0,2.0,2.0,1.5,2,2,2223.81384290454,360.0,32398.00608097221,5,5,2,3,53.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026390512979814307,21598.67072064814,6,3,6,6_0,6_3,6_0_1 +27306,2,24.0,0.0,5,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,912.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,,3,127328,1,2,0,1,2,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,645.856471999062,0.0,43377.60097280141,1,1,1,2,102.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021024675859133878,28918.400648534272,8,4,8,8_0,8_4,8_0_0 +27307,1,49.0,327.0,2,111,480.0,180.0,0.0,68,85,0.0,0.0,818.4962608185893,660.0,0.0,341.730728629162,50,1,2,2,2,1,2,2,2,0,,2,,2,127329,2,1,0,1,1,576.0,0.0,347.0,42,2.0,2.0,4.0,3.0,2.0,3,3,282.717034797209,480.0,5548.718630260212,4,7,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.11894638095373178,2774.359315130106,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +27308,2,68.0,0.0,2,111,480.0,640.0,0.0,0,77,0.0,0.0,818.4962608185893,1120.0,0.0,1215.0425906814648,71,0,0,0,0,0,0,0,0,0,,2,,2,127330,2,2,0,1,1,,0.0,402.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1385.76186470924,480.0,18641.652710825467,0,5,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060080509886851416,18641.652710825467,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +27309,2,32.0,0.0,1,111,600.0,0.0,0.0,0,46,0.0,132.4327277010224,1023.1203260232367,700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,127331,2,1,1,0,1,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1050.18212783762,600.0,21549.55161604261,0,1,1,2,65.0,3,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03248327447699114,21549.55161604261,6,3,6,6_1,6_2,6_1_0 +27310,2,66.0,0.0,7,112,0.0,,,0,77,0.0,0.0,,250.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,5,127332,2,1,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,79.01580071304774,0.0,24905.649994318206,0,5,0,1,110.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010037882972619995,24905.649994318206,7,4,7,7_1,7_0,7_0_0 +27311,2,38.0,0.0,9,112,1100.0,0.0,0.0,34,42,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,127333,2,2,1,0,2,,443.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,781.455877860092,1100.0,90937.5366534134,1,1,1,2,125.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012096215055751798,43303.5888825778,9,5,9,9_1,9_0,9_0_0 +27312,1,63.0,308.0,6,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,491.0,0.0,0.0,31,2,1,2,1,1,2,2,2,0,,2,,4,127334,1,2,0,1,2,720.0,0.0,478.0,22,2.0,3.0,4.0,3.0,2.0,3,3,353.965606616756,0.0,18003.86276364356,0,4,2,3,84.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.02727192527769708,9001.93138182178,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +27313,2,82.0,0.0,2,111,193.0,452.0,0.0,0,72,0.0,0.0,329.1037048708078,645.0,0.0,858.1238296687847,70,0,0,0,0,0,0,0,0,0,,1,,2,127335,2,2,2,0,1,,118.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1141.30765675826,193.0,19455.904920828827,0,6,0,1,140.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0331518889830452,19455.904920828827,5,3,5,5_1,5_2,5_0_1 +27314,1,41.0,235.0,5,111,770.0,100.0,0.0,43,56,0.0,0.0,1313.0044183964872,870.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,0,,2,,3,127336,2,1,0,1,1,918.0,0.0,313.0,43,2.0,0.0,5.0,6.0,3.0999999999999996,4,3,302.227268131614,770.0,35612.87622641637,1,1,2,3,90.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024429366346845775,11488.02458916657,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +27315,2,40.0,0.0,2,111,480.0,0.0,0.0,54,37,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,2,2,2,1,2,2,2,2,0,,2,,2,127337,1,3,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1387.68419120839,480.0,61765.94040411362,1,1,1,2,85.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.007771273243142136,29412.352573387438,8,4,8,8_0,8_3,8_0_1 +27316,0,85.0,0.0,6,111,500.0,,,0,86,0.0,0.0,,752.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,127338,1,2,0,0,2,,144.0,,21,0.0,11.0,4.0,2.0,1.5,2,2,131.10573627993912,500.0,7018.509347665386,0,5,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1071452587364784,4679.006231776923,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27317,2,26.0,0.0,1,111,733.0,0.0,0.0,34,38,0.0,0.0,1249.911998291721,733.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,2,,1,127339,2,3,0,0,1,,0.0,730.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1173.49278979434,733.0,40265.0,1,1,2,3,19.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,1,0,0,0.018204395877312804,26843.333333333332,7,4,7,7_0,7_4,7_1_0 +27318,2,65.0,0.0,7,111,236.0,0.0,0.0,0,77,0.0,927.0290939071567,402.42732823580644,936.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,127340,2,1,2,0,1,,105.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,450.331331097231,236.0,16586.128558779285,0,5,0,1,85.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05643269896787104,16586.128558779285,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +27319,2,83.0,0.0,2,111,457.0,567.0,0.0,0,72,0.0,0.0,779.276648321032,1024.0,0.0,1076.4517951818605,71,0,0,0,0,0,0,0,0,0,,1,,2,127341,2,2,2,0,2,,356.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1522.91132511125,457.0,15482.715361602026,0,5,0,1,110.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0661382694239523,15482.715361602026,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +27320,2,54.0,0.0,1,111,900.0,480.0,0.0,37,34,0.0,0.0,1534.680489034855,1380.0,0.0,911.2819430110987,20,0,0,0,0,0,0,0,0,2,45.0,2,,1,127342,2,1,0,0,1,,0.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1003.54485481171,900.0,94036.60734875435,1,1,0,1,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014675135980629144,47018.30367437717,10,5,10,10_0,10_4,10_1_0 +27321,2,81.0,0.0,2,112,400.0,0.0,0.0,86,86,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127343,2,1,2,0,1,,200.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1231.1624507237,400.0,35611.30818856385,5,5,0,1,100.0,9,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011232387136186567,23740.872125709237,6,3,6,6_1,6_0,6_0_1 +27322,2,50.0,0.0,1,111,331.0,0.0,0.0,0,37,2109.365702073203,0.0,564.4213798561523,2331.0,0.0,0.0,10,1,2,2,2,1,2,2,2,2,10.0,1,,1,127344,2,2,2,0,1,,163.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,1166.55585958788,331.0,52933.49744686532,0,1,1,2,90.0,9,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.04403638739986639,26466.74872343266,7,4,7,7_1,7_3,7_1_0 +27323,2,41.0,0.0,1,221,1800.0,0.0,0.0,85,63,0.0,0.0,3069.36097806971,1920.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127345,2,1,1,0,1,,498.0,,42,1.0,0.0,4.0,5.0,2.6,3,3,511.935342436006,1800.0,48483.91621210188,6,1,0,1,98.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03960076144840701,18647.660081577647,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +27324,2,41.0,0.0,7,111,0.0,0.0,0.0,46,54,0.0,0.0,0.0,1769.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,127346,2,1,3,0,1,,167.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,351.771499024876,0.0,56543.59967250755,1,1,1,2,95.0,4,4,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031285592184540696,31413.110929170864,8,4,8,8_1,8_2,8_0_0 +27325,2,57.0,0.0,1,111,550.0,1500.0,0.0,52,45,0.0,0.0,937.8602988546337,2050.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,127347,2,1,2,0,1,,360.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,318.52733404048,550.0,79731.77449485159,1,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025711205011903653,39865.887247425795,9,5,9,9_1,9_3,9_1_0 +27326,2,43.0,0.0,1,111,215.0,0.0,0.0,78,68,1687.4925616585624,0.0,366.61811682499314,1955.0,193.98249155551292,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127348,2,1,1,0,1,,130.0,,42,1.0,7.0,5.0,2.0,1.5,2,2,922.954977665988,215.0,28393.552622443884,5,1,1,2,125.0,6,5,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06885365934992779,18929.035081629256,5,3,5,5_1,5_2,5_1_0 +27327,2,43.0,0.0,8,112,1250.0,0.0,0.0,46,37,0.0,185.40581878143135,2131.5006792150766,1390.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,127349,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,980.510524314479,1250.0,64524.968906780414,1,1,1,2,80.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02154204835043223,30726.175669895434,8,4,8,8_1,8_2,8_0_0 +27328,1,23.0,434.0,7,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,1157.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,127350,2,2,0,0,1,,189.0,415.0,32,1.0,0.0,3.0,3.0,1.6,1,1,485.671729938459,0.0,31887.573512064497,0,1,2,3,75.0,7,5,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03628372662354679,19929.73344504031,5,3,5,5_0,5_2,5_0_0 +27329,0,40.0,0.0,1,112,400.0,0.0,0.0,68,64,949.2145659329414,0.0,682.0802173488245,1420.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,2.0,1,,1,127351,1,2,4,0,2,,250.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,402.160043568051,400.0,35424.13059721525,1,1,5,0,70.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040085669741507464,19680.07255400847,5,3,5,5_1,5_1,5_1_0 +27330,2,65.0,0.0,6,111,850.0,,,68,75,0.0,0.0,,930.0,110.84713803172167,,50,0,0,0,0,0,0,0,0,0,,1,,4,127352,2,1,0,0,2,,300.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,119.67299577367855,850.0,31702.96167655174,1,5,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029334798732316862,21135.307784367826,5,3,5,5_1,5_2,5_0_0 +27331,2,33.0,0.0,1,111,660.0,0.0,0.0,35,46,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,50.0,2,,1,127353,2,1,0,0,1,,0.0,680.0,43,2.0,0.0,2.0,2.0,1.5,2,2,993.432742005391,660.0,51279.3182654143,1,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01287068592807603,34186.21217694287,9,5,9,9_0,9_4,9_1_0 +27332,2,71.0,0.0,6,111,480.0,,,0,75,0.0,0.0,,524.0,60.965925917446924,,31,0,0,0,0,0,0,0,0,0,,2,,4,127354,2,3,0,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,106.9466330681433,480.0,38207.74651893134,0,5,0,1,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013714496345403837,38207.74651893134,9,5,9,9_0,9_2,9_0_0 +27333,2,77.0,0.0,1,211,2000.0,0.0,0.0,72,72,0.0,1324.327277010224,3410.4010867441225,5000.0,2771.178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127355,2,1,2,0,1,,1200.0,,41,1.0,2.0,8.0,3.0,2.0,3,3,652.705100596822,2000.0,30428.08136302694,5,5,0,1,280.0,1,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1643218953027871,15214.04068151347,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +27334,2,30.0,0.0,9,112,1700.0,0.0,0.0,54,55,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,11.0,1,2012.0,6,127356,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,189.638446340646,1700.0,49519.57130582696,1,1,1,2,108.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03432986100588398,33013.04753721797,8,4,8,8_1,8_1,8_0_0 +27335,2,49.0,0.0,7,300,1727.0,0.0,0.0,11,43,0.0,0.0,2944.8813384035498,1787.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,127357,2,2,1,0,1,,355.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,1117.03200439681,1727.0,38175.584268430735,1,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046810023585618254,15270.233707372294,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +27336,2,41.0,0.0,6,112,2100.0,0.0,0.0,62,55,0.0,0.0,3580.9211410813286,2205.0,145.4868686666347,0.0,71,1,2,2,1,2,2,2,2,2,12.0,1,,4,127358,2,3,3,0,1,,330.0,,43,2.0,1.0,6.0,4.0,2.3,4,3,809.110806563344,2100.0,28865.949504151202,4,1,0,1,180.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.07638757906379971,12550.412827891827,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +27337,2,55.0,0.0,6,112,700.0,1100.0,0.0,21,21,0.0,0.0,1193.6403803604428,1800.0,0.0,2088.354452733768,44,0,0,0,0,0,0,0,0,0,,1,,4,127359,2,2,5,0,1,,530.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,1060.26373548745,700.0,19039.042268021723,1,1,0,1,78.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09454257071655901,9519.521134010862,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +27338,1,47.0,219.0,9,111,480.0,,,0,56,0.0,0.0,,540.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,127360,2,2,0,0,2,,240.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,214.233867995128,480.0,4425.739660844937,0,4,1,2,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12201350313879653,2950.4931072299582,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27339,2,51.0,0.0,6,112,1034.0,0.0,0.0,37,38,0.0,0.0,1763.1773618467112,1124.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,4,127361,2,1,2,0,1,,452.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,694.679302258338,1034.0,144086.41979253877,1,1,0,1,148.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007800873958964203,57634.567917015505,10,5,10,10_1,10_2,10_0_0 +27340,2,45.0,0.0,6,111,380.0,365.0,0.0,55,37,0.0,26.486545540204478,647.9762064813832,765.0,0.0,692.9539774980229,10,0,0,0,0,0,0,0,0,2,20.0,2,,4,127362,2,2,0,0,1,,0.0,630.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1058.13288073719,380.0,78179.35371315484,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00978519217243513,37228.26367293087,9,5,9,9_0,9_4,9_0_0 +27341,2,41.0,0.0,1,111,400.0,0.0,0.0,0,47,0.0,0.0,682.0802173488245,400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,127363,1,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,913.901952875965,400.0,9177.602983234992,0,1,0,1,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04358436519107355,9177.602983234992,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +27342,1,74.0,229.0,2,111,0.0,,,0,78,0.0,0.0,,563.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,127364,2,1,0,0,2,,102.0,386.0,11,0.0,4.0,2.0,1.0,1.0,1,1,152.66270695645966,0.0,11739.311630365262,0,5,2,3,39.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04795851901092113,11739.311630365262,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +27343,2,66.0,0.0,2,112,310.0,0.0,0.0,0,75,0.0,0.0,528.612168445339,335.0,34.63973063491302,0.0,41,2,1,2,1,2,2,2,2,0,,2,,2,127365,2,2,0,1,1,1100.0,0.0,316.0,11,0.0,0.0,4.0,1.0,1.0,1,1,2453.62437260474,310.0,21400.82107042606,0,5,2,3,82.0,7,0,2,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015653605013451505,21400.82107042606,6,3,6,6_0,6_0,6_0_1 +27344,2,29.0,0.0,9,112,443.0,469.0,0.0,63,43,0.0,397.2981831030672,755.4038407138231,1212.0,0.0,890.3983984837611,31,0,0,0,0,0,0,0,0,2,35.0,1,2008.0,6,127366,2,1,1,0,1,,206.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1821.59352702438,443.0,52829.08072083627,1,1,1,2,101.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02294190971076232,25156.705105160127,7,4,7,7_1,7_1,7_0_0 +27345,2,28.0,0.0,1,111,450.0,0.0,0.0,0,55,0.0,0.0,767.3402445174275,450.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,80.0,2,,1,127367,2,3,0,0,1,,0.0,462.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1084.27487020083,450.0,19420.92420748266,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02317088492764006,19420.92420748266,5,3,5,5_0,5_4,5_1_0 +27346,2,51.0,0.0,6,111,310.0,1225.0,0.0,0,21,0.0,0.0,528.612168445339,1535.0,0.0,2325.6674587262414,50,0,0,0,0,0,0,0,0,0,,2,,4,127368,2,1,0,0,1,,0.0,385.0,12,1.0,0.0,2.0,1.0,1.0,1,1,300.711801644519,310.0,25540.599465802927,0,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.060100390441315106,25540.599465802927,7,4,7,7_0,7_4,7_0_0 +27347,1,34.0,370.0,7,111,0.0,0.0,2000.0,0,52,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,50,0,0,0,0,0,0,0,0,1,5.0,2,,5,127369,2,3,0,0,1,,0.0,410.0,32,1.0,0.0,3.0,3.0,1.6,1,1,3255.30419262525,0.0,20746.58495819118,0,1,2,3,61.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09640140794402689,12966.615598869486,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +27348,0,64.0,0.0,1,300,443.0,1591.0,0.0,0,74,0.0,0.0,755.4038407138231,2034.0,0.0,3020.519940272204,10,0,0,0,0,0,0,0,0,0,,1,,1,127370,2,1,1,0,1,,291.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,273.952584350078,443.0,53145.3777601232,0,5,0,1,240.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03827237825236007,53145.3777601232,10,5,10,10_1,10_0,10_1_0 +27349,2,54.0,0.0,6,221,384.0,0.0,0.0,0,54,0.0,0.0,654.7970086548714,478.0,130.24538718727297,0.0,42,2,2,1,2,1,1,1,2,0,,1,,4,127371,2,1,3,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,534.191070537512,384.0,25861.695087677006,0,4,0,1,50.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.018482933867229958,25861.695087677006,7,4,7,7_1,7_1,7_0_0 +27351,2,89.0,0.0,1,111,250.0,0.0,0.0,0,77,1371.087706347582,0.0,426.3001358430153,1610.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127373,2,2,4,0,1,,210.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,633.578536817446,250.0,28007.29138187731,0,5,0,1,80.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05748503052465057,28007.29138187731,7,4,7,7_1,7_4,7_1_0 +27352,1,24.0,172.0,8,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,538.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2000.0,6,127374,2,1,0,0,1,,0.0,515.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2181.45753569605,0.0,13629.096515289188,0,4,3,4,22.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.039474370101970364,13629.096515289188,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +27353,1,71.0,147.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,2614.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127375,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,360.371032666126,0.0,9907.0,0,5,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.2638538407186838,9907.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +27354,2,78.0,0.0,2,111,230.0,856.0,0.0,77,78,0.0,211.89236432163582,392.1961249755741,1246.0,0.0,1625.1194650364594,70,0,0,0,0,0,0,0,0,0,,1,,2,127376,1,2,1,0,2,,280.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,218.331499615732,230.0,23393.947769986873,5,5,0,1,112.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0532616389611055,15595.965179991248,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +27355,2,31.0,0.0,9,400,1000.0,,,55,42,0.0,0.0,,1000.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,127377,2,3,0,0,2,,240.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,122.21972095590128,1000.0,57546.99965010785,4,1,0,1,107.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017377100562672443,31970.555361171027,8,4,8,8_1,8_0,8_0_0 +27356,2,39.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,672.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,127378,2,2,0,1,1,408.0,336.0,233.0,12,1.0,0.0,2.0,1.0,1.0,1,1,380.404695215219,0.0,27171.647516340752,0,1,2,3,44.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024731661913244902,27171.647516340752,7,4,7,7_0,7_2,7_0_1 +27357,2,63.0,0.0,6,111,402.0,628.0,0.0,52,31,0.0,79.45963662061344,685.4906184355685,1090.0,0.0,1192.2605421061876,12,0,0,0,0,0,0,0,0,0,,1,,4,127379,2,1,2,0,1,,300.0,,42,1.0,6.0,4.0,2.0,1.5,2,2,242.921424107418,402.0,56505.0340322648,1,5,1,2,105.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01929031667121202,37670.022688176534,9,5,9,9_1,9_2,9_0_0 +27358,1,69.0,45.0,5,111,480.0,,,56,56,0.0,0.0,,780.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,3,15.0,8,,3,127380,2,2,0,0,2,,950.0,496.0,43,2.0,1.0,4.0,6.0,3.5,6,3,113.83770952684453,480.0,50096.10718771667,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015570072083190774,14313.173482204762,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +27359,1,27.0,533.0,5,111,564.0,,,68,85,0.0,0.0,,696.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,127381,2,3,0,0,2,,560.0,670.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,98.0337885825485,564.0,19819.0835414623,1,6,2,3,57.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03511766820821663,7340.401311652704,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27360,2,77.0,0.0,6,112,1140.0,0.0,0.0,75,75,0.0,218.51400070668694,1943.9286194441497,1305.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,127382,2,1,1,0,1,,250.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,848.827395378976,1140.0,61354.75694287771,5,5,0,1,128.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021269744434241282,40903.17129525181,9,5,9,9_1,9_2,9_0_0 +27361,2,62.0,0.0,2,111,697.0,1103.0,0.0,78,78,0.0,0.0,1188.5247787303267,1800.0,0.0,2094.049964877587,70,0,0,0,0,0,0,0,0,0,,1,,2,127383,2,1,1,0,1,,320.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,428.899417394155,697.0,24824.0,6,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07251047373509507,16549.333333333332,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +27362,2,60.0,0.0,5,212,763.0,0.0,0.0,22,75,2636.7071275915036,0.0,1301.0680145928827,3332.0,95.60565655235995,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,127384,2,2,4,0,2,,248.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,893.920081309662,763.0,30280.259381326858,1,5,0,1,90.0,2,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11003868751714749,20186.83958755124,5,3,5,5_1,5_0,5_0_0 +27363,2,46.0,0.0,5,111,560.0,0.0,0.0,64,43,1054.6828510366015,0.0,954.9123042883542,1560.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,3,127385,2,2,5,1,1,,0.0,686.0,43,2.0,0.0,4.0,4.0,2.5,4,4,1595.8195002464,560.0,45223.123379975455,1,1,2,3,90.0,6,5,9,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03449562709086917,18089.249351990184,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27364,1,36.0,260.0,5,111,672.0,0.0,0.0,0,54,0.0,0.0,1145.894765146025,672.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,127386,2,2,0,1,1,,0.0,400.0,22,2.0,0.0,5.0,3.0,2.0,3,3,289.240838693107,672.0,35139.86412317825,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01912357992177747,17569.932061589127,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +27365,2,33.0,0.0,7,120,1250.0,0.0,0.0,0,46,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,127387,1,3,3,0,2,,299.0,402.0,12,1.0,0.0,4.0,1.0,1.0,1,1,502.2365503984,1250.0,21680.775571281607,0,1,2,3,79.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05765476405077281,21680.775571281607,6,3,6,6_1,6_0,6_0_0 +27366,1,37.0,467.0,2,111,246.0,,,0,85,0.0,0.0,,428.0,252.17723902216682,,71,0,0,0,0,0,0,0,0,0,,2,,2,127388,2,2,0,0,2,,700.0,535.0,31,0.0,0.0,4.0,5.0,2.5999999999999996,3,2,92.61701883815131,246.0,16991.12565445026,0,6,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025189620081933747,6535.048328634717,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27367,2,59.0,0.0,5,111,268.0,560.0,0.0,0,74,0.0,0.0,456.9937456237124,828.0,0.0,1063.162266846282,41,0,0,0,0,0,0,0,0,0,,2,,3,127389,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,658.352277868748,268.0,55144.57580226379,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015015076060590696,55144.57580226379,10,5,10,10_0,10_4,10_0_0 +27368,2,36.0,0.0,9,300,1700.0,0.0,0.0,42,38,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,127390,2,1,1,0,1,,220.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,1084.66372358331,1700.0,66724.72225556051,1,4,1,2,98.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02547781305838752,27801.967606483548,7,4,7,7_1,7_0,7_0_0 +27369,2,32.0,0.0,2,111,1000.0,0.0,0.0,55,62,0.0,1589.1927324122687,1705.2005433720612,2300.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,1,20.0,1,,2,127391,2,1,3,0,1,,320.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1171.40581951812,1000.0,23976.277172951948,1,1,1,2,110.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0959281536248951,15984.184781967966,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +27370,2,56.0,0.0,8,211,450.0,,,78,37,0.0,0.0,,538.0,121.93185183489385,,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127392,2,1,0,0,2,,240.0,,42,2.0,2.0,3.0,3.0,2.0,3,3,102.39444134990221,450.0,53171.91132482104,6,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010118124148545656,26585.95566241052,7,4,7,7_1,7_2,7_0_0 +27371,1,45.0,115.0,9,120,947.0,0.0,0.0,69,62,0.0,39.72981831030672,1614.8249145733419,1067.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,13.0,1,2012.0,6,127393,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,5.0,2.8,5,2,155.377621507893,947.0,31291.098505614114,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03409915442273666,11175.392323433613,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +27372,2,45.0,0.0,2,111,1080.0,,,0,37,0.0,0.0,,1180.0,138.5589225396521,,42,0,0,0,0,0,0,0,0,2,5.0,2,,2,127394,2,3,0,0,1,,900.0,130.0,22,1.0,0.0,3.0,2.0,1.5,2,2,44.36600499334878,1080.0,33519.17249758478,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03520373303025379,22346.114998389854,6,3,6,6_0,6_2,6_0_1 +27373,1,65.0,83.0,2,111,250.0,,,0,77,0.0,0.0,,346.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,0,,2,,2,127395,2,2,0,0,2,,400.0,279.0,11,0.0,2.0,3.0,1.0,1.0,1,1,111.69661178915595,250.0,13214.27981629258,0,5,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02618379547051807,13214.27981629258,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +27374,2,65.0,0.0,6,111,2125.0,0.0,0.0,77,75,0.0,0.0,3623.55115466563,2230.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,127396,2,2,3,0,2,,600.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,1300.97914522594,2125.0,39781.90837400112,5,5,1,2,280.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056055631596029304,26521.27224933408,7,4,7,7_1,7_3,7_0_0 +27375,1,70.0,84.0,2,111,600.0,50.0,0.0,0,86,0.0,0.0,1023.1203260232367,650.0,0.0,94.92520239698945,71,2,2,2,2,2,2,2,1,0,,2,,2,127397,2,2,0,1,1,720.0,0.0,257.0,11,0.0,2.0,3.0,1.0,1.0,1,1,263.783575626167,600.0,12321.286958631026,0,5,2,3,65.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.05275422950397863,12321.286958631026,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +27376,2,60.0,0.0,2,111,590.0,700.0,0.0,0,47,0.0,0.0,1006.0683205895161,1290.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,127398,2,1,0,1,1,1500.0,0.0,523.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1723.0645827099,590.0,15327.89063782945,0,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.084160308191152,15327.89063782945,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +27377,2,81.0,0.0,5,221,480.0,0.0,0.0,77,75,2531.2388424878436,0.0,818.4962608185893,2940.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,127399,2,1,1,0,1,,540.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2136.11392045951,480.0,24395.426753517408,5,5,0,1,103.0,1,2,2,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12051439106619037,16263.617835678271,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +27378,2,84.0,0.0,2,111,432.0,,,0,86,0.0,0.0,,558.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,127400,2,3,0,0,2,,170.0,,11,0.0,7.0,5.0,1.0,1.0,1,1,95.93686638535515,432.0,12296.516972003226,0,6,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045378703682551515,12296.516972003226,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +27379,2,69.0,0.0,2,111,842.0,0.0,0.0,0,75,2636.7071275915036,0.0,1435.7788575192756,3342.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,127401,2,2,2,0,1,,250.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,808.139159622383,842.0,34562.04718313204,0,5,0,1,145.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09669566106116129,34562.04718313204,9,5,9,9_1,9_4,9_0_1 +27380,2,58.0,0.0,5,111,420.0,,,0,63,0.0,0.0,,549.0,178.7410100761512,,71,0,0,0,0,0,0,0,0,1,20.0,1,,3,127402,1,2,0,0,2,,180.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,159.31230217206476,420.0,20510.6139088729,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026766629338310657,20510.6139088729,5,3,5,5_1,5_2,5_0_0 +27381,2,69.0,0.0,9,211,378.0,,,0,77,0.0,0.0,,474.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,127403,1,1,0,0,1,,148.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,181.90889776174745,378.0,18970.0,0,5,0,1,79.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024986821296784395,18970.0,5,3,5,5_1,5_2,5_0_0 +27382,2,62.0,0.0,8,111,480.0,,,85,33,0.0,0.0,,540.0,83.13535352379125,,12,0,0,0,0,0,0,0,0,2,65.0,1,1999.0,6,127404,2,1,0,0,1,,200.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,128.70241923645412,480.0,115874.19627786265,6,1,1,2,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00466022649861663,77249.46418524177,10,5,10,10_1,10_3,10_0_0 +27383,1,57.0,204.0,2,112,0.0,0.0,1030.0,85,78,0.0,0.0,649.227839127186,1030.0,0.0,1232.6341119916212,71,0,0,0,0,0,0,0,0,0,,2,,2,127405,1,1,0,0,1,,0.0,189.0,41,0.0,8.0,2.0,2.0,1.5,2,2,2778.06632122323,0.0,9811.27216301612,6,7,2,3,55.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10498128916274645,6540.848108677413,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +27384,2,53.0,0.0,5,111,249.9,0.0,0.0,0,31,0.0,0.0,426.1296157886781,250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,127406,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,987.596083712045,249.9,54403.59537769487,0,1,0,1,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004595284526038851,54403.59537769487,10,5,10,10_0,10_4,10_0_0 +27385,2,87.0,0.0,1,111,930.0,1910.0,0.0,0,74,0.0,0.0,1585.836505336017,2840.0,0.0,3626.142731564997,20,0,0,0,0,0,0,0,0,0,,2,,1,127407,2,1,0,0,2,,224.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,870.547901151581,930.0,86873.26130213958,0,5,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03269130175880774,86873.26130213958,10,5,10,10_0,10_4,10_1_0 +27386,2,73.0,0.0,5,111,337.0,1014.0,0.0,0,75,0.0,0.0,574.6525831163846,1351.0,0.0,1925.083104610946,31,0,0,0,0,0,0,0,0,0,,2,,3,127408,1,3,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1783.26063464906,337.0,23634.006721551552,0,5,0,1,46.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.057163392391186896,23634.006721551552,6,3,6,6_0,6_3,6_0_0 +27387,2,84.0,0.0,7,111,1500.0,0.0,0.0,75,77,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,127409,2,2,3,0,1,,270.0,500.0,41,0.0,3.0,3.0,2.0,1.5,2,2,529.057138090358,1500.0,30122.122665153438,5,5,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049797287418102985,20081.41511010229,5,3,5,5_1,5_4,5_0_0 +27388,1,66.0,134.0,6,111,398.0,0.0,0.0,0,75,0.0,0.0,678.6698162620803,398.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,127410,2,2,0,1,1,526.0,0.0,488.0,21,0.0,0.0,3.0,2.0,1.5,2,2,884.954710274301,398.0,29522.30307987398,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013481333042452423,19681.53538658265,5,3,5,5_0,5_4,5_0_0 +27389,2,55.0,0.0,1,111,393.0,0.0,0.0,75,22,0.0,0.0,670.14381354522,2493.0,2909.737373332694,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,127411,2,2,2,0,1,,384.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,290.900046792339,393.0,42956.358931618306,5,1,0,1,95.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05803564505940961,28637.57262107887,8,4,8,8_1,8_2,8_1_0 +27390,2,82.0,0.0,1,111,291.0,587.0,0.0,0,77,0.0,0.0,496.2133581212698,878.0,0.0,1114.4218761406562,71,0,0,0,0,0,0,0,0,0,,2,,1,127412,2,1,0,0,1,,218.0,276.0,21,0.0,1.0,3.0,3.0,2.0,3,3,381.095374104776,291.0,18073.65896916218,0,5,2,3,60.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04857898455968821,9036.82948458109,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +27391,2,65.0,0.0,2,120,625.0,0.0,0.0,77,75,0.0,794.5963662061343,1065.7503396075383,1225.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127413,2,3,0,0,1,,140.0,390.0,41,0.0,0.0,3.0,2.0,1.5,2,2,3026.74440100652,625.0,27815.216120591802,5,5,2,3,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04404064288729807,18543.47741372787,4,2,4_0,4_0_0,4_0_0,4_0_1_0 +27392,2,69.0,0.0,2,111,400.0,900.0,0.0,75,74,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,41,0,0,0,0,0,0,0,0,0,,1,,2,127414,2,2,1,0,1,,210.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,282.255791495471,400.0,58203.5112600008,5,5,0,1,130.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022335422242702376,38802.340840000536,9,5,9,9_1,9_2,9_0_1 +27393,2,78.0,0.0,5,112,1700.0,0.0,0.0,0,77,0.0,92.70290939071567,2898.840923732504,1770.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,127415,2,2,2,0,1,,460.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1425.93735194772,1700.0,17925.282838290408,0,5,0,1,100.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09874321180690561,17925.282838290408,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +27394,0,60.0,0.0,1,300,602.0,3144.0,0.0,0,77,0.0,0.0,1026.5307271099807,3746.0,0.0,5968.896726722696,60,0,0,0,0,0,0,0,0,0,,1,,1,127416,2,1,2,0,2,,570.0,,11,0.0,5.0,7.0,1.0,1.0,1,1,236.103149970643,602.0,17726.17020360327,0,5,0,1,150.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2113259636443373,17726.17020360327,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +27395,2,33.0,0.0,1,111,296.14,0.0,0.0,0,35,0.0,0.0,504.97808891420215,296.0,0.0,0.0,41,2,2,2,1,2,2,2,2,0,,2,,1,127417,1,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1282.12650186356,296.14,58813.14644051266,0,1,1,2,36.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0050328883576972565,58813.14644051266,10,5,10,10_0,10_4,10_1_0 +27396,2,27.0,0.0,6,111,780.0,,,0,47,0.0,0.0,,989.0,289.5881481078729,,31,0,0,0,0,0,0,0,0,0,,1,,4,127418,1,1,0,0,2,,260.0,,22,2.0,1.0,5.0,3.0,2.0,3,3,97.25230936565995,780.0,30456.147911186243,0,1,0,1,83.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03247291820633528,15228.073955593121,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +27397,2,51.0,0.0,1,111,1200.0,0.0,0.0,85,63,0.0,317.83854648245375,2046.2406520464733,1690.0,346.39730634913025,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,127419,2,1,2,0,1,,400.0,,42,1.0,3.0,5.0,3.0,2.0,3,3,214.704174594692,1200.0,31425.929201005463,6,1,0,1,50.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05377724837316597,15712.964600502732,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +27398,2,57.0,0.0,1,111,631.0,940.0,0.0,52,38,0.0,0.0,1075.9815428677707,1571.0,0.0,1784.5938050634018,70,0,0,0,0,0,0,0,0,2,3.0,1,,1,127420,2,1,3,0,1,,499.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,378.814736662351,631.0,59162.5863084529,1,1,0,1,98.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026553943936956356,29581.29315422645,8,4,8,8_1,8_3,8_1_0 +27399,2,29.0,0.0,5,111,360.0,,,0,68,0.0,0.0,,612.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,127421,2,1,0,0,2,,300.0,,22,3.0,2.0,4.0,4.0,2.5,4,4,112.81076765447892,360.0,30391.237093093678,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02013738361901284,12156.494837237471,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +27400,2,58.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,616.0,0.0,0.0,71,1,1,1,2,1,2,2,2,0,,2,,2,127422,1,3,0,1,1,508.0,228.0,321.0,22,2.0,4.0,4.0,2.0,1.5,2,2,295.378249366649,0.0,25340.24954856284,0,1,2,3,85.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.024309152868422963,16893.49969904189,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +27401,2,91.0,0.0,2,111,620.0,1310.0,0.0,0,72,0.0,39.72981831030672,1057.224336890678,1960.0,0.0,2487.0403028011237,70,0,0,0,0,0,0,0,0,0,,1,,2,127423,2,2,3,0,1,,234.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,229.179998178138,620.0,17797.452881521815,0,5,0,1,75.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11012811850368587,11864.96858768121,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +27402,1,55.0,434.0,6,111,495.0,0.0,0.0,0,85,0.0,0.0,844.0742689691702,495.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,4,127424,1,3,0,1,1,1685.0,0.0,431.0,31,1.0,0.0,3.0,4.0,2.5,4,3,419.625391826035,495.0,25970.49224345222,0,7,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.019060093099498385,10388.196897380887,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +27403,1,93.0,65.0,6,111,190.0,168.0,0.0,0,77,0.0,0.0,323.9881032406916,358.0,0.0,318.9486800538846,71,0,0,0,0,0,0,0,0,0,,2,,4,127425,2,1,0,1,1,,0.0,690.0,11,0.0,2.0,1.0,1.0,1.0,1,1,3076.20281048927,190.0,15988.598577801782,0,5,2,3,25.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022390955546100162,15988.598577801782,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +27405,2,61.0,0.0,1,111,321.0,918.0,0.0,0,31,0.0,0.0,547.3693744224316,1239.0,0.0,1742.8267160087264,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,127427,2,2,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,534.307000211848,321.0,83104.82603874562,0,1,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014908881458007579,83104.82603874562,10,5,10,10_0,10_4,10_1_0 +27406,2,43.0,0.0,7,111,1200.0,,,0,21,0.0,0.0,,1270.0,96.99124577775646,,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,127428,2,1,0,0,2,,500.0,,32,1.0,0.0,5.0,3.0,2.0,3,1,120.67520831601838,1200.0,31007.14812638632,0,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04095829757781759,15503.57406319316,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +27407,0,44.0,0.0,9,400,0.0,,,85,21,0.0,0.0,,180.0,249.40606057137379,,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,127429,2,3,0,0,2,,0.0,,42,1.0,0.0,2.0,4.0,2.1,2,2,138.78484606993513,0.0,8519.705329517546,6,1,5,0,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021127491273244897,4057.002537865498,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +27408,1,67.0,239.0,2,111,456.0,1392.0,0.0,0,77,0.0,0.0,777.5714477776598,1848.0,0.0,2642.717634732186,70,1,2,2,1,2,2,2,2,0,,1,,2,127430,2,2,1,0,1,,336.0,425.0,21,1.0,2.0,5.0,2.0,1.5,2,2,213.768699607978,456.0,23959.21294527787,0,5,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.0771310812346289,15972.808630185247,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +27409,2,48.0,0.0,1,111,350.0,0.0,0.0,0,46,0.0,0.0,596.8201901802214,350.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,127431,2,2,0,0,2,,0.0,474.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1185.30011770774,350.0,26895.82116360752,0,1,3,4,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013013173974906617,26895.82116360752,7,4,7,7_0,7_4,7_1_0 +27410,2,58.0,0.0,9,112,756.0,0.0,0.0,54,56,0.0,0.0,1289.1316107892783,803.0,65.12269359363648,0.0,41,0,0,0,0,0,0,0,0,4,60.0,1,2006.0,6,127432,2,1,1,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1031.61963526881,756.0,47786.68053767972,1,1,0,1,115.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016803845568784292,31857.787025119815,8,4,8,8_1,8_0,8_0_0 +27411,2,37.0,0.0,7,211,500.0,,,67,68,0.0,0.0,,700.0,277.1178450793042,,71,0,0,0,0,0,0,0,0,0,,1,,5,127433,1,1,0,0,2,,1200.0,600.0,43,3.0,0.0,5.0,6.0,3.1,4,3,97.99730643201204,500.0,3176.729554377653,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.22035240583680585,1024.7514691540816,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27412,1,27.0,200.0,1,111,600.0,0.0,0.0,0,56,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,1,127434,2,1,0,0,2,,0.0,184.0,22,2.0,0.0,1.0,2.0,1.5,2,2,458.671990338462,600.0,6037.66792182367,0,1,2,3,14.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.09937611802584378,4025.111947882447,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +27413,2,41.0,0.0,1,111,500.0,1300.0,0.0,0,37,0.0,0.0,852.6002716860306,1800.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,127435,1,3,4,0,2,,502.0,703.0,32,1.0,0.0,4.0,2.0,1.3,1,1,446.538047994432,500.0,69979.42504239245,0,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025721846084182428,53830.3269556865,10,5,10,10_1,10_3,10_1_0 +27414,2,81.0,0.0,5,111,600.0,,,86,86,0.0,0.0,,726.0,174.58424239996165,,10,0,0,0,0,0,0,0,0,0,,1,,3,127436,2,1,0,0,2,,500.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,73.1958938609709,600.0,16352.68813512068,6,5,0,1,250.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044396370431645994,10901.792090080453,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +27415,2,59.0,0.0,9,111,1100.0,0.0,0.0,78,78,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2011.0,6,127437,2,1,1,0,1,,326.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,270.893201392718,1100.0,29638.27499549473,6,5,1,2,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03711417078649852,19758.849996996487,5,3,5,5_1,5_2,5_0_0 +27416,2,61.0,0.0,5,112,863.0,0.0,0.0,77,78,0.0,132.4327277010224,1471.5880689300889,1001.0,52.6523905650678,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,127438,2,2,2,0,1,,234.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,932.002765201194,863.0,29843.032776920998,5,5,0,1,80.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033542167362230015,19895.355184614,5,3,5,5_1,5_0,5_0_0 +27417,1,34.0,64.0,2,111,960.0,852.0,0.0,68,68,0.0,211.89236432163582,1636.9925216371787,1972.0,0.0,1617.5254488447001,50,1,2,2,1,1,2,2,2,2,40.0,1,,2,127439,2,2,1,0,1,,324.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,885.088087495961,960.0,43924.29930863561,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.044895423058286574,16268.259003198375,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +27418,1,31.0,142.0,1,111,600.0,0.0,0.0,0,56,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,1,127440,2,1,0,1,1,408.0,0.0,601.0,12,1.0,0.0,2.0,1.0,1.0,1,1,580.174858893411,600.0,11043.214029654699,0,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,1,0.0543320086334287,11043.214029654699,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +27419,2,49.0,0.0,5,111,990.0,0.0,0.0,0,31,0.0,0.0,1688.1485379383405,990.0,0.0,0.0,10,2,1,2,2,1,2,2,2,1,10.0,2,,3,127441,1,2,0,0,1,635.0,0.0,740.0,32,1.0,1.0,5.0,3.0,2.0,3,1,2042.14691760089,990.0,47794.27083125281,0,1,2,3,98.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.020713779764428085,23897.135415626406,6,3,6,6_0,6_2,6_0_0 +27420,1,41.0,252.0,7,111,450.0,300.0,0.0,0,67,0.0,0.0,767.3402445174275,750.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,,5,127442,2,1,0,0,1,,0.0,361.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1397.79830064065,450.0,12539.769895399402,0,4,2,3,56.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.059809709927385546,12539.769895399402,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +27421,1,47.0,185.0,2,111,829.0,0.0,0.0,0,85,0.0,0.0,1413.6112504554387,829.0,0.0,0.0,33,2,2,2,2,1,2,2,2,0,,2,,2,127443,1,2,0,0,2,,0.0,213.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1383.1976257388,829.0,12813.058624019488,0,7,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,1,0.06469961812599127,12813.058624019488,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +27422,1,36.0,220.0,7,111,1200.0,0.0,0.0,0,68,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,127444,1,3,3,0,2,,600.0,,32,1.0,0.0,2.0,2.0,1.3,1,1,1692.50514592303,1200.0,14409.551010270616,0,1,1,2,20.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08327809791885137,11084.270007900474,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +27423,0,78.0,0.0,2,211,240.0,,,0,86,0.0,0.0,,372.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,127445,2,2,0,0,2,,180.0,,11,0.0,7.0,3.0,1.0,1.0,1,1,104.0718849099597,240.0,10606.10063131804,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035074153351095524,10606.10063131804,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +27424,2,47.0,0.0,2,120,407.0,0.0,0.0,63,43,2109.365702073203,0.0,694.0166211524289,2407.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,127446,2,1,1,0,1,,280.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,945.051116324858,407.0,53877.00294388291,1,1,1,2,190.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0446758332587111,29931.66830215717,8,4,8,8_1,8_0,8_0_1 +27425,2,35.0,0.0,2,111,1365.0,0.0,0.0,42,33,0.0,0.0,2327.5987417028637,1365.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,127447,1,3,0,0,1,,0.0,580.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1686.79848003286,1365.0,59835.0081088238,1,1,2,3,85.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02281273192973304,28492.861004201808,8,4,8,8_0,8_2,8_0_1 +27426,2,26.0,0.0,1,111,0.0,0.0,0.0,43,43,0.0,0.0,0.0,590.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,1,127448,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1276.66229349088,0.0,62211.623266974704,1,1,0,1,110.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009483758323875852,41474.41551131647,9,5,9,9_0,9_4,9_1_0 +27427,1,77.0,270.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,3204.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127449,2,2,5,0,1,,247.0,440.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1080.17536385913,0.0,12996.835458694546,0,5,2,3,50.0,8,7,5,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.2465215482786317,12996.835458694546,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +27428,2,42.0,0.0,7,400,1000.0,0.0,0.0,43,48,949.2145659329414,350.9467284077093,1705.2005433720612,2165.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,127450,2,1,2,0,1,,390.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1105.13098146966,1000.0,83769.66347027282,1,1,1,2,128.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025844678255968992,46538.701927929345,10,5,10,10_1,10_0,10_0_0 +27429,1,31.0,340.0,2,111,462.0,420.0,0.0,85,56,0.0,0.0,787.8026510378922,882.0,0.0,797.3717001347114,43,2,1,2,1,2,2,2,2,1,10.0,2,,2,127451,1,2,0,1,1,93.0,390.0,335.0,42,1.0,2.0,4.0,4.0,2.1,2,2,113.515662941308,462.0,14901.625551248599,6,1,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05918817359667836,7096.012167261237,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27430,2,36.0,0.0,2,111,496.0,1125.0,0.0,47,38,0.0,0.0,845.7794695125424,1621.0,0.0,2135.8170539322628,10,0,0,0,0,0,0,0,0,2,4.0,1,,2,127452,2,2,3,0,1,,270.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1123.08642933206,496.0,69203.53764925267,1,1,1,2,105.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.023423658024764364,32954.06554726318,8,4,8,8_1,8_2,8_0_1 +27431,2,50.0,0.0,7,111,444.0,1320.0,0.0,43,21,0.0,0.0,757.1090412571951,1764.0,0.0,2506.0253432805216,50,0,0,0,0,0,0,0,0,2,40.0,2,,5,127453,1,2,0,0,1,,0.0,717.0,43,2.0,1.0,3.0,3.0,1.8,2,2,748.800477091824,444.0,42731.61837267318,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04128090784242508,23739.787984818435,6,3,6,6_0,6_4,6_0_0 +27432,2,71.0,0.0,2,221,338.0,1840.0,0.0,78,78,0.0,0.0,576.3577836597567,2178.0,0.0,3493.2474482092116,71,2,2,2,2,1,2,2,2,0,,2,,2,127454,2,2,0,0,1,,484.0,412.0,41,0.0,1.0,4.0,2.0,1.5,2,2,3873.83797107171,338.0,21639.20527194717,5,5,2,3,90.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.10065064648300812,14426.136847964779,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +27433,2,61.0,0.0,2,111,262.0,0.0,0.0,0,56,0.0,0.0,446.76254236348,262.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127455,1,1,0,1,2,,0.0,,22,2.0,0.0,2.0,2.0,1.5,2,2,1374.8351642002,262.0,18152.800260168387,0,1,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014433034917201786,12101.866840112258,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +27434,2,54.0,0.0,2,112,900.0,0.0,0.0,75,52,0.0,331.081819252556,1534.680489034855,1150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,127456,2,2,2,0,1,,450.0,,42,1.0,0.0,5.0,3.0,2.0,3,3,746.974065834194,900.0,50329.55418787296,5,1,0,1,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022849397705912836,25164.77709393648,7,4,7,7_1,7_2,7_0_1 +27435,2,56.0,0.0,9,111,700.0,,,42,33,0.0,0.0,,806.0,146.87245789203124,,42,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,127457,2,2,0,0,2,,400.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,60.44991731047327,700.0,110296.30979587935,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007307588091493084,73530.8731972529,10,5,10,10_1,10_2,10_0_0 +27436,1,41.0,196.0,1,111,480.0,0.0,0.0,53,56,0.0,0.0,818.4962608185893,480.0,0.0,0.0,60,2,2,1,1,2,2,2,2,3,10.0,2,,1,127458,2,2,0,1,1,742.0,0.0,527.0,43,2.0,1.0,3.0,4.0,2.1,2,2,666.862780634454,480.0,38654.67609993323,1,1,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.012417643825524878,18406.988619015825,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +27437,1,29.0,200.0,1,111,1500.0,0.0,0.0,52,21,0.0,79.45963662061344,2557.8008150580918,1635.0,103.91919190473907,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,127459,1,3,3,0,1,,100.0,550.0,43,2.0,0.0,4.0,4.0,2.1,2,2,230.871599668846,1500.0,26330.641319047412,1,1,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.06209495546229828,12538.400628117815,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +27438,2,29.0,0.0,7,111,0.0,,,0,43,0.0,0.0,,248.0,0.0,,31,0,0,0,0,0,0,0,0,2,15.0,8,,5,127460,2,3,0,0,2,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,107.77307482348874,0.0,22038.93880988037,0,1,2,3,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011252810407042742,22038.93880988037,6,3,6,6_0,6_3,6_0_0 +27439,2,38.0,0.0,5,111,408.0,0.0,0.0,47,45,0.0,0.0,695.7218216958009,408.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,127461,1,2,0,1,1,870.0,0.0,345.0,43,2.0,0.0,3.0,3.0,1.8,2,2,359.887621922406,408.0,46196.35548780587,1,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008831865537698031,25664.641937669927,7,4,7,7_0,7_4,7_0_0 +27440,0,79.0,0.0,1,111,169.0,0.0,0.0,0,77,678.1610732165348,0.0,288.17889182987835,829.0,23.555016831740858,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,127462,2,2,2,0,1,,70.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,990.401746570877,169.0,20876.304852858742,0,5,0,1,75.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.039710092654949854,20876.304852858742,5,3,5,5_1,5_3,5_1_0 +27441,2,66.0,0.0,1,111,410.0,638.0,0.0,86,75,0.0,0.0,699.1322227825451,1048.0,0.0,1211.2455825855855,42,0,0,0,0,0,0,0,0,0,,1,,1,127463,2,1,2,0,1,,193.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,372.144993843173,410.0,33476.669938315245,6,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03130538377715182,22317.77995887683,6,3,6,6_1,6_3,6_1_0 +27442,1,35.0,377.0,6,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,512.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,127464,1,1,0,1,1,,258.0,520.0,32,2.0,0.0,4.0,3.0,1.8,2,2,1934.49853849519,0.0,5757.277983533776,0,4,2,3,65.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08893091517629623,3198.4877686298755,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +27443,2,63.0,0.0,7,300,1500.0,,,54,43,0.0,0.0,,1800.0,415.67676761895626,,33,0,0,0,0,0,0,0,0,0,,1,,5,127465,2,2,0,0,1,,1200.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,92.16763524383246,1500.0,52695.122240448,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03415875935891361,26347.561120224,7,4,7,7_1,7_1,7_0_0 +27444,2,64.0,0.0,2,111,1330.0,0.0,0.0,77,77,0.0,331.081819252556,2267.9167226848413,1580.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,127466,1,3,0,0,2,,300.0,580.0,41,0.0,4.0,4.0,2.0,1.5,2,2,3420.57993249972,1330.0,27523.316320858677,6,5,2,3,77.0,4,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05740587295443716,18348.877547239117,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +27445,2,60.0,0.0,8,111,2300.0,0.0,0.0,52,22,0.0,92.70290939071567,3921.9612497557405,2370.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,127467,2,1,2,0,1,,600.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1689.61988289883,2300.0,64666.59198315638,1,1,1,2,150.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03664952686260799,43111.06132210425,9,5,9,9_1,9_3,9_0_0 +27447,2,52.0,0.0,1,111,950.0,700.0,0.0,45,33,0.0,0.0,1619.9405162034582,1650.0,0.0,1328.9528335578523,42,0,0,0,0,0,0,0,0,2,3.0,1,,1,127469,2,1,1,0,1,,310.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,292.722805587425,950.0,75416.8756596292,1,1,1,2,140.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02187839240976736,50277.91710641946,10,5,10,10_1,10_2,10_1_0 +27448,2,54.0,0.0,6,112,0.0,0.0,0.0,38,21,0.0,0.0,0.0,1746.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,127470,2,1,1,0,1,,398.0,,43,3.0,1.0,6.0,4.0,2.3,3,3,823.581123176196,0.0,45248.628702616326,1,1,0,1,120.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03858680472893634,19673.31682722449,5,3,5,5_1,5_1,5_0_0 +27449,2,53.0,0.0,5,112,600.0,0.0,0.0,0,52,0.0,264.8654554020448,1023.1203260232367,827.0,37.410909085706066,0.0,50,2,2,2,2,1,2,2,2,2,30.0,1,,3,127471,1,3,3,0,1,,180.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,2015.96376072451,600.0,21736.4416147858,0,1,1,2,103.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.03804670583419915,21736.4416147858,6,3,6,6_1,6_1,6_0_0 +27450,2,44.0,0.0,7,111,1080.0,,,85,37,0.0,0.0,,1140.0,83.13535352379125,,10,0,0,0,0,0,0,0,0,0,,1,,5,127472,2,2,0,0,2,,200.0,740.0,42,2.0,0.0,4.0,4.0,2.3,3,3,109.22974882654225,1080.0,47710.65151739371,6,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02389403547726432,20743.761529301613,5,3,5,5_1,5_2,5_0_0 +27451,2,35.0,0.0,6,111,400.0,,,67,22,0.0,0.0,,421.0,29.09737373332694,,44,0,0,0,0,0,0,0,0,2,20.0,1,,4,127473,1,3,0,0,2,,300.0,764.0,43,2.0,0.0,5.0,3.0,1.8,2,2,112.75778517413848,400.0,33413.93203959808,1,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012599534813834018,18563.29557755449,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27452,2,75.0,0.0,1,111,422.0,1223.0,0.0,78,75,0.0,0.0,719.5946293030098,1645.0,0.0,2321.870450630362,50,0,0,0,0,0,0,0,0,0,,1,,1,127474,2,1,1,0,1,,324.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,405.619369842931,422.0,55302.98077548716,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029745232118286474,36868.65385032477,9,5,9,9_1,9_3,9_1_0 +27453,2,52.0,0.0,6,111,1560.0,0.0,0.0,0,38,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,4,127475,2,2,0,0,1,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1544.3240252788,1560.0,48874.121561240594,0,1,1,2,80.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03191873224862524,48874.121561240594,10,5,10,10_0,10_3,10_0_0 +27454,2,45.0,0.0,2,111,1100.0,650.0,0.0,56,22,0.0,0.0,1875.7205977092674,1750.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,127476,2,2,0,1,1,488.0,0.0,630.0,43,2.0,0.0,3.0,3.0,1.8,2,2,305.36799325118,1100.0,31973.74102900202,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05473241302644722,17763.189460556678,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +27455,1,79.0,245.0,6,111,350.0,,,0,78,0.0,0.0,,396.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,2,,4,127477,2,1,0,0,2,,340.0,460.0,11,0.0,4.0,2.0,1.0,1.0,1,1,118.11658054313146,350.0,11996.097960445291,0,5,2,3,37.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03301073409918208,11996.097960445291,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +27457,2,28.0,0.0,2,111,360.0,0.0,0.0,46,46,0.0,0.0,613.872195613942,360.0,0.0,0.0,12,2,2,2,2,2,1,1,2,3,45.0,2,,2,127479,1,3,0,1,2,,300.0,900.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1015.97004743147,360.0,51084.53723546637,1,1,3,4,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.007047142236811014,34056.35815697758,9,5,9,9_0,9_4,9_0_1 +27458,2,45.0,0.0,7,111,1300.0,0.0,0.0,21,37,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,127480,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,492.206120161062,1300.0,56397.85167851186,1,1,1,2,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02305052340309822,24520.805077613855,7,4,7,7_1,7_4,7_0_0 +27459,2,43.0,0.0,5,111,844.0,,,0,67,0.0,0.0,,1012.0,232.77898986661552,,31,0,0,0,0,0,0,0,0,0,,1,,3,127481,2,1,0,0,2,,700.0,,22,2.0,0.0,4.0,4.0,2.3,3,3,106.36707784077231,844.0,68766.61390759307,0,4,0,1,194.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014716443670760079,29898.52778591003,8,4,8,8_1,8_2,8_0_0 +27460,2,61.0,0.0,9,111,1562.0,0.0,0.0,78,62,0.0,0.0,2663.5232487471594,1562.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,127482,2,1,1,0,1,,368.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1151.07329634584,1562.0,50938.480981734436,5,1,1,2,125.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03066444012258833,33958.98732115629,9,5,9,9_1,9_3,9_0_0 +27461,2,73.0,0.0,1,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1243.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,127483,1,1,2,0,2,,107.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,121.082185978789,0.0,22683.391020047864,0,5,0,1,60.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.054797803331143084,22683.391020047864,6,3,6,6_1,6_3,6_1_0 +27462,2,75.0,0.0,6,400,318.0,,,78,72,0.0,0.0,,450.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,127484,2,1,0,0,2,,408.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,87.99059635104776,318.0,16299.226774031316,5,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02760867164060573,10866.151182687545,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +27463,1,49.0,383.0,1,400,530.0,0.0,0.0,0,56,1582.0242765549024,0.0,903.7562879871924,2180.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127485,2,2,1,0,1,,0.0,520.0,32,1.0,0.0,4.0,3.0,2.0,3,1,2278.91314138251,530.0,15101.46598245163,0,1,2,3,70.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.14435684605277577,7550.732991225815,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +27464,2,62.0,0.0,9,111,300.0,,,0,86,0.0,0.0,,430.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,127486,2,3,0,0,2,,360.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,131.63285279187176,300.0,5331.224071775974,0,5,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0806568987179628,5331.224071775974,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27465,1,67.0,153.0,1,111,283.0,800.0,0.0,0,78,0.0,0.0,482.5717537742933,1083.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,1,127487,1,2,3,0,2,,140.0,328.0,11,0.0,0.0,5.0,1.0,1.0,1,1,276.287374102044,283.0,10326.673395776243,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10487404399203354,10326.673395776243,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +27466,1,31.0,360.0,2,111,1020.0,0.0,0.0,0,52,0.0,0.0,1739.3045542395023,1020.0,0.0,0.0,60,2,2,2,2,1,2,2,2,2,20.0,1,,2,127488,2,1,1,0,1,,0.0,1115.0,32,1.0,0.0,3.0,3.0,1.6,1,1,647.507018418992,1020.0,25455.52577748515,0,1,3,4,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,1,0.040069885372478437,15909.703610928218,3,2,3_1,3_1_1,3_4_1,3_0_1_1 +27468,2,44.0,0.0,8,112,600.0,0.0,0.0,52,62,1898.4291318658827,0.0,1023.1203260232367,4318.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,127490,2,2,1,0,1,,250.0,,43,2.0,4.0,4.0,3.0,1.8,2,2,1163.71516547071,600.0,49635.0,1,1,1,2,120.0,5,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0869950639669588,27575.0,7,4,7,7_1,7_0,7_0_0 +27469,2,28.0,0.0,5,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,418.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,127491,2,2,0,0,1,,142.0,744.0,22,1.0,2.0,4.0,2.0,1.5,2,2,1625.67659636028,0.0,34612.34231667026,0,1,2,3,80.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01207661695286885,23074.894877780174,6,3,6,6_0,6_3,6_0_0 +27470,0,89.0,0.0,5,111,1785.0,0.0,0.0,0,78,0.0,0.0,3043.7829699191293,1785.0,0.0,0.0,70,1,2,2,1,2,2,2,2,0,,1,,3,127492,2,2,4,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1820.8151404997,1785.0,14621.398516931946,0,5,5,0,50.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.12208134522377768,14621.398516931946,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +27471,2,34.0,0.0,1,111,431.0,893.0,0.0,62,62,0.0,0.0,734.9414341933584,1324.0,0.0,1695.3641148102315,42,0,0,0,0,0,0,0,0,2,3.0,1,,1,127493,2,1,2,0,1,,355.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,255.300275482908,431.0,44617.73240808268,1,1,1,2,88.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029674300520036112,29745.154938721786,8,4,8,8_1,8_2,8_1_0 +27472,2,26.0,0.0,1,111,60.0,0.0,0.0,0,48,0.0,0.0,102.31203260232367,60.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,127494,2,1,2,0,1,,0.0,800.0,12,1.0,0.0,2.0,1.0,1.0,1,1,607.715582566682,60.0,26534.327615273654,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0022612217980403195,26534.327615273654,7,4,7,7_1,7_4,7_1_0 +27474,2,64.0,0.0,6,111,2000.0,0.0,0.0,0,77,0.0,0.0,3410.4010867441225,2060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,127496,2,1,2,0,1,,600.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,669.028550039831,2000.0,18143.016925764477,0,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1135423071272475,18143.016925764477,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +27475,2,69.0,0.0,1,111,222.0,763.0,0.0,0,77,0.0,0.0,378.5545206285976,985.0,0.0,1448.558588578059,50,0,0,0,0,0,0,0,0,0,,2,,1,127497,2,2,0,0,1,,0.0,440.0,11,0.0,0.0,4.0,1.0,1.0,1,1,3410.68412744691,222.0,22631.544821571602,0,5,2,3,100.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0435233214420755,22631.544821571602,6,3,6,6_0,6_3,6_1_0 +27476,2,94.0,0.0,6,111,325.0,,,0,86,0.0,0.0,,425.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,4,127498,2,2,0,0,2,,34.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,148.41428028342142,325.0,17975.53475238554,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02364324654895722,17975.53475238554,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +27477,2,51.0,0.0,8,111,600.0,,,0,52,0.0,0.0,,715.0,159.34276092059991,,50,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,127499,2,1,0,0,2,,479.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,142.65847649111933,600.0,30973.835074862873,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02308399971368949,20649.223383241915,5,3,5,5_1,5_3,5_0_0 +27479,2,77.0,0.0,2,111,100.0,150.0,0.0,0,78,0.0,0.0,170.52005433720612,250.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,1,,2,127501,2,1,2,0,1,,100.0,341.0,11,0.0,3.0,5.0,1.0,1.0,1,1,425.46147485618,100.0,22468.447138255397,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011126714652849467,22468.447138255397,6,3,6,6_1,6_3,6_0_1 +27480,1,69.0,127.0,2,111,630.0,0.0,0.0,0,78,0.0,0.0,1074.2763423243985,630.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127502,1,3,3,0,1,,122.0,430.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1040.37937895305,630.0,12142.07619080873,0,5,2,3,50.0,4,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.05188568990177276,12142.07619080873,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +27481,1,34.0,360.0,5,111,340.0,0.0,0.0,42,22,0.0,0.0,579.7681847465008,340.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,2,,3,127503,1,1,0,1,2,,0.0,720.0,43,2.0,0.0,4.0,3.0,1.8,2,2,130.947500900759,340.0,17345.863309126133,4,4,2,3,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.019601215225829475,9636.590727292296,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +27482,2,51.0,0.0,9,111,1500.0,3000.0,0.0,54,21,0.0,0.0,2557.8008150580918,4500.0,0.0,5695.512143819367,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,127504,2,1,1,0,1,,600.0,,43,3.0,5.0,7.0,3.0,2.0,3,3,1149.11669381027,1500.0,73878.62142771504,1,1,1,2,294.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.060910719678262115,36939.31071385752,9,5,9,9_1,9_3,9_0_0 +27483,2,40.0,0.0,1,111,1800.0,0.0,0.0,42,38,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,12,1,2,2,1,1,2,2,2,2,50.0,1,,1,127505,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1129.81924960107,1800.0,51716.24230654477,4,1,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03480531298717748,24626.782050735605,7,4,7,7_1,7_3,7_1_0 +27484,1,28.0,180.0,7,111,0.0,,,85,54,0.0,0.0,,556.0,0.0,,42,0,0,0,0,0,0,0,0,0,,1,,5,127506,2,1,0,0,2,,167.0,500.0,42,1.0,0.0,5.0,5.0,2.4,2,2,121.04860855896783,0.0,28860.89775528067,7,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.01926481998981715,12025.37406470028,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +27485,2,70.0,0.0,5,111,350.0,1360.0,0.0,77,75,0.0,0.0,596.8201901802214,1710.0,0.0,2581.965505198113,50,0,0,0,0,0,0,0,0,0,,1,,3,127507,2,2,1,0,1,,280.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1524.49461122481,350.0,24013.656528947995,5,5,0,1,71.0,6,5,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0712094802363242,16009.104352631997,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27486,1,47.0,250.0,1,112,200.0,250.0,0.0,0,62,0.0,0.0,341.04010867441224,480.0,41.567676761895626,474.62601198494724,71,0,0,0,0,0,0,0,0,0,,1,,1,127508,2,2,4,0,1,,180.0,380.0,12,1.0,1.0,3.0,1.0,1.0,1,1,451.974286793277,200.0,5536.1956738116705,0,4,2,3,50.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08670213776413001,5536.1956738116705,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +27487,1,35.0,357.0,7,111,0.0,,,52,31,0.0,0.0,,95.0,131.6309764126695,,31,0,0,0,0,0,0,0,0,0,,1,,5,127509,2,1,0,0,2,,100.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,80.93059507136977,0.0,43264.503524108455,4,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.002195795450352568,24035.835291171363,6,3,6,6_1,6_2,6_0_0 +27488,2,29.0,0.0,1,111,326.0,0.0,0.0,0,38,0.0,0.0,555.8953771392919,326.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,45.0,2,,1,127510,1,2,0,0,1,,0.0,704.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1611.18366954826,326.0,32013.812825230012,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.010183104454933282,32013.812825230012,8,4,8,8_0,8_4,8_1_0 +27489,2,37.0,0.0,1,111,700.0,2400.0,0.0,0,22,0.0,0.0,1193.6403803604428,3100.0,0.0,4556.4097150554935,31,0,0,0,0,0,0,0,0,1,1.0,2,,1,127511,2,1,0,0,1,,200.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1610.4145976245,700.0,18889.428354546035,0,1,1,2,80.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.16411296000145695,18889.428354546035,5,3,5,5_0,5_2,5_1_0 +27490,2,44.0,0.0,1,222,800.0,0.0,0.0,0,42,0.0,953.5156394473612,1364.160434697649,1675.0,214.76632993646075,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,127512,2,2,1,0,1,,130.0,,32,1.0,0.0,5.0,3.0,1.6,2,1,1288.65844576152,800.0,25995.44844063159,0,1,0,1,70.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0644343568000131,16247.155275394744,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +27491,2,67.0,0.0,5,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,1465.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,127513,2,1,2,0,1,,323.0,870.0,41,0.0,4.0,5.0,2.0,1.5,2,2,353.170219100041,0.0,29935.603854102832,6,5,2,3,100.0,6,5,3,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04893838143836922,19957.069236068553,5,3,5,5_1,5_2,5_0_0 +27492,2,50.0,0.0,7,222,1300.0,0.0,0.0,62,43,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,127514,2,1,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1083.35740600588,1300.0,40755.39939456525,1,1,0,1,74.0,1,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03189761404162207,19407.333045031068,5,3,5,5_1,5_0,5_0_0 +27493,2,29.0,0.0,9,111,560.0,330.0,0.0,52,48,0.0,0.0,954.9123042883542,890.0,0.0,626.5063358201304,20,0,0,0,0,0,0,0,0,0,,2,2011.0,6,127515,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,6103.6650783098,560.0,43324.41284016053,1,1,1,2,80.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02054269040606581,20630.67278102882,5,3,5,5_0,5_3,5_0_0 +27494,1,70.0,62.0,5,111,300.0,0.0,0.0,0,78,0.0,0.0,511.56016301161833,300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,127516,2,1,0,1,1,624.0,193.0,286.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1568.70839861908,300.0,12909.35602972982,0,5,2,3,55.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023238959349258778,12909.35602972982,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +27495,2,52.0,0.0,7,120,120.0,0.0,0.0,43,47,0.0,0.0,204.62406520464734,120.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,127517,2,1,2,0,1,,200.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1027.01234780139,120.0,74705.22279776436,1,1,0,1,170.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016063133942435834,49803.48186517624,10,5,10,10_1,10_0,10_0_0 +27496,2,50.0,0.0,7,111,800.0,,,0,46,0.0,0.0,,866.0,91.44888887617039,,41,0,0,0,0,0,0,0,0,2,20.0,2,,5,127518,2,2,0,0,2,,120.0,639.0,32,1.0,0.0,4.0,3.0,2.0,3,3,84.83993986511786,800.0,46842.667021883004,0,1,2,3,56.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01848741873718334,23421.333510941502,6,3,6,6_0,6_3,6_0_0 +27497,2,51.0,0.0,1,111,1994.0,0.0,0.0,22,22,1731.7892414020996,0.0,3400.16988348389,3786.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,127519,2,1,0,1,1,,0.0,,43,2.0,2.0,3.0,4.0,2.3,3,2,1968.1476802605,1994.0,32583.63601090593,1,1,0,1,65.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.11619329404283807,14166.798265611276,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +27498,1,55.0,399.0,2,111,49.0,210.0,0.0,81,68,0.0,1430.2734591710418,83.554826625231,1339.0,0.0,398.6858500673557,31,2,1,2,2,1,2,2,2,0,,2,,2,127520,2,1,0,1,1,500.0,0.0,370.0,43,4.0,0.0,6.0,6.0,3.3,5,5,247.643765470026,49.0,8230.218758138712,4,4,2,3,90.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.1626931238827507,2494.0056842844583,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +27499,2,71.0,0.0,2,111,350.0,204.0,0.0,0,78,0.0,63.56770929649075,596.8201901802214,602.0,0.0,387.294825779717,71,0,0,0,0,0,0,0,0,0,,1,,2,127521,1,1,1,0,1,,220.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,258.465690650571,350.0,19746.297631503454,0,5,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030486727751918557,19746.297631503454,5,3,5,5_1,5_3,5_0_1 +27500,0,39.0,0.0,2,111,0.0,0.0,0.0,54,53,0.0,0.0,0.0,2113.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,127522,2,1,2,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,1588.41765966544,0.0,57200.93921356033,1,1,5,0,100.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03693995289327491,22000.361235984743,6,3,6,6_1,6_3,6_0_1 +27501,1,42.0,40.0,5,112,1000.0,0.0,0.0,56,63,2109.365702073203,0.0,1705.2005433720612,3150.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,127523,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,406.862001916656,1000.0,49275.06602063329,1,1,1,2,120.0,9,3,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06392685498748958,17598.23786451189,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +27502,1,70.0,81.0,2,111,300.0,100.0,0.0,0,78,1054.6828510366015,0.0,511.56016301161833,1400.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,127524,2,2,0,1,1,,200.0,350.0,11,0.0,0.0,3.0,1.0,1.0,1,1,365.634708085742,300.0,10682.354823824222,0,5,2,3,60.0,7,5,4,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1310572456250623,10682.354823824222,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +27503,2,56.0,0.0,9,111,1600.0,0.0,0.0,85,22,0.0,92.70290939071567,2728.320869395298,1670.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,127525,2,1,1,0,1,,673.0,,42,2.0,3.0,6.0,3.0,2.0,3,3,1211.09094524323,1600.0,118418.78416564508,6,1,1,2,185.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014102492368643065,59209.39208282254,10,5,10,10_1,10_3,10_0_0 +27504,2,66.0,0.0,5,211,420.0,,,77,11,0.0,0.0,,750.0,457.2444443808519,,71,0,0,0,0,0,0,0,0,0,,1,,3,127526,2,1,0,0,2,,272.0,,42,1.0,5.0,6.0,2.0,1.5,2,2,95.38782655810441,420.0,23857.933453621554,6,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03143608399520255,15905.288969081035,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +27505,1,43.0,250.0,2,111,960.0,,,0,38,0.0,0.0,,1035.0,103.91919190473907,,20,0,0,0,0,0,0,0,0,0,,2,,2,127527,2,2,0,0,2,,120.0,627.0,12,1.0,0.0,2.0,1.0,1.0,1,1,38.14789370126486,960.0,5715.323355479284,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1810921159881085,5715.323355479284,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27506,2,29.0,0.0,1,111,250.0,900.0,0.0,42,43,0.0,0.0,426.3001358430153,1150.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,4,50.0,2,,1,127528,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,749.48412768616,250.0,56646.17882684947,1,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020301457641391983,37764.11921789965,9,5,9,9_0,9_4,9_1_0 +27507,1,69.0,120.0,7,111,1200.0,0.0,0.0,77,75,0.0,529.7309108040896,2046.2406520464733,1600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,2000.0,5,127529,1,2,0,0,1,,400.0,580.0,41,3.0,0.0,4.0,5.0,3.0,5,5,291.141366859049,1200.0,36384.76224304325,7,5,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.04397445252802,12128.254081014418,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +27508,2,71.0,0.0,2,111,330.0,,,54,78,0.0,0.0,,350.0,27.711784507930417,,50,0,0,0,0,0,0,0,0,0,,1,,2,127530,2,1,0,0,2,,300.0,,41,0.0,3.0,6.0,3.0,2.0,3,3,106.38536212271978,330.0,45923.0402781771,6,5,0,1,132.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007621446617643085,22961.52013908855,6,3,6,6_1,6_2,6_0_1 +27509,2,42.0,0.0,9,120,1060.0,0.0,0.0,56,48,0.0,529.7309108040896,1807.5125759743848,1460.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2009.0,6,127531,2,1,1,0,1,,480.0,,43,3.0,0.0,6.0,5.0,3.0,5,3,294.675850551781,1060.0,62998.75485346584,1,1,1,2,110.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023175061211859475,20999.58495115528,5,3,5,5_1,5_0,5_0_0 +27510,0,85.0,0.0,1,211,298.0,1241.0,0.0,0,72,0.0,0.0,508.1497619248742,1539.0,0.0,2356.0435234932784,71,2,2,2,1,2,2,2,2,0,,1,,1,127532,2,2,2,0,1,,170.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1060.78483526737,298.0,11194.894276261552,0,5,0,1,90.0,4,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.13747338402859283,11194.894276261552,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +27511,2,33.0,0.0,5,111,0.0,0.0,0.0,43,42,0.0,0.0,0.0,437.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,2,,3,127533,1,1,0,1,1,894.0,267.0,262.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1168.28953516536,0.0,38567.02952872017,1,1,2,3,67.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011330921912836817,25711.353019146783,7,4,7,7_0,7_2,7_0_0 +27512,2,61.0,0.0,2,211,600.0,,,64,11,0.0,0.0,,892.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,127534,1,3,0,0,2,,200.0,,43,4.0,2.0,4.0,4.0,2.5,4,4,97.48512087377257,600.0,10141.287531446933,4,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08795727339689498,4056.515012578773,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +27513,2,61.0,0.0,2,111,310.0,450.0,0.0,0,77,0.0,0.0,528.612168445339,760.0,0.0,854.326821572905,44,0,0,0,0,0,0,0,0,0,,1,,2,127535,2,1,1,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,377.997638540563,310.0,20360.73769903196,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03732674185160461,20360.73769903196,5,3,5,5_1,5_3,5_0_1 +27514,2,44.0,0.0,9,112,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1069.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,127536,2,1,2,0,1,,248.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1896.04943323731,0.0,22898.85972879827,0,1,0,1,89.0,8,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04668354724473877,22898.85972879827,6,3,6,6_1,6_0,6_0_0 +27515,2,50.0,0.0,1,112,945.0,0.0,0.0,63,52,1539.8369625134383,0.0,1611.4145134865978,2585.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,127537,2,1,3,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,895.164704115406,945.0,45893.5156010022,1,1,0,1,80.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0563260400984306,30595.677067334796,8,4,8,8_1,8_0,8_1_0 +27516,2,39.0,0.0,2,111,1181.0,1487.0,0.0,85,47,0.0,0.0,2013.8418417224043,2668.0,0.0,2823.0755192864663,50,2,2,2,2,2,2,1,2,2,15.0,1,,2,127538,2,2,2,0,1,,537.0,,42,1.0,0.0,4.0,4.0,2.3,3,2,531.272121177993,1181.0,48109.72602264783,6,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.05545656191731437,20917.272183759927,5,3,5,5_1,5_4,5_0_1 +27517,2,74.0,0.0,1,112,300.0,0.0,0.0,0,77,2109.365702073203,0.0,511.56016301161833,2370.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127539,2,3,4,0,1,,240.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1252.62432541399,300.0,20867.868322401227,0,5,0,1,70.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11357173446680482,20867.868322401227,5,3,5,5_1,5_0,5_1_0 +27518,1,66.0,270.0,5,111,240.0,0.0,0.0,0,77,0.0,0.0,409.2481304092947,1199.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,127540,2,2,0,1,1,828.0,0.0,351.0,11,0.0,3.0,4.0,1.0,1.0,1,1,480.117578947469,240.0,14851.57230522472,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08073219288561097,14851.57230522472,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +27519,1,78.0,66.0,5,111,360.0,540.0,0.0,86,78,0.0,0.0,613.872195613942,900.0,0.0,1025.192185887486,71,0,0,0,0,0,0,0,0,0,,2,,3,127541,2,1,0,1,1,,0.0,551.0,41,0.0,3.0,4.0,3.0,2.0,3,3,466.078552285348,360.0,18690.122097536358,7,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.048153778520186,9345.061048768179,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +27520,2,43.0,0.0,2,111,490.0,1072.0,0.0,65,37,0.0,0.0,835.54826625231,1562.0,0.0,2035.1963393914539,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,127542,2,2,3,0,1,,250.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1108.79998376977,490.0,53099.11600394359,1,1,0,1,110.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02941668557879556,23086.57217562765,6,3,6,6_1,6_2,6_0_1 +27521,2,50.0,0.0,8,111,480.0,,,0,46,0.0,0.0,,560.0,110.84713803172167,,20,0,0,0,0,0,0,0,0,0,,2,2002.0,6,127543,2,1,0,0,1,,84.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,111.45421636858671,480.0,43350.81842138017,0,4,1,2,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012917864538488479,43350.81842138017,10,5,10,10_0,10_3,10_0_0 +27522,2,78.0,0.0,6,111,300.0,,,0,75,0.0,0.0,,468.0,232.77898986661552,,20,0,0,0,0,0,0,0,0,0,,1,,4,127544,2,1,0,0,2,,330.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,116.33390647527888,300.0,30547.569099833167,0,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015320367996239542,30547.569099833167,8,4,8,8_1,8_2,8_0_0 +27523,2,51.0,0.0,1,111,670.0,0.0,0.0,0,52,0.0,0.0,1142.484364059281,670.0,0.0,0.0,41,2,2,2,1,1,1,1,2,2,5.0,2,,1,127545,1,3,0,0,2,,240.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,1616.64459993582,670.0,20309.783053201943,0,1,0,1,38.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,1,1,0,0,0.032989027910584744,20309.783053201943,5,3,5,5_0,5_2,5_1_0 +27524,0,51.0,0.0,1,221,540.0,,,0,63,0.0,238.3789098618403,,783.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,0,,1,,1,127546,2,2,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,107.7271568904445,540.0,4420.125619834711,0,4,0,1,30.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17714428668868465,4420.125619834711,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +27525,2,40.0,0.0,9,111,380.0,,,0,21,0.0,0.0,,422.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,127547,2,1,0,0,2,,160.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,85.31531054022021,380.0,25727.42207314889,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016402731637867114,25727.42207314889,7,4,7,7_1,7_2,7_0_0 +27526,2,58.0,0.0,1,111,2052.0,0.0,0.0,0,43,0.0,0.0,3499.0715149994694,2052.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,20.0,1,,1,127548,2,1,2,0,1,,230.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,432.300666242053,2052.0,35192.27767350211,0,1,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.058308246457859855,35192.27767350211,9,5,9,9_1,9_3,9_1_0 +27527,0,55.0,0.0,7,111,400.0,,,0,22,0.0,0.0,,443.0,59.5803366920504,,71,0,0,0,0,0,0,0,0,0,,1,,5,127549,2,1,0,0,2,,180.0,,12,1.0,5.0,4.0,1.0,1.0,1,1,149.66800569258092,400.0,14625.423799582462,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030289720562671634,14625.423799582462,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +27529,2,64.0,0.0,5,111,600.0,600.0,0.0,0,77,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,1,,3,127551,2,1,1,0,1,,180.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1091.92069294504,600.0,26174.990296788746,0,5,0,1,83.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04584528920139546,26174.990296788746,7,4,7,7_1,7_3,7_0_0 +27530,2,66.0,0.0,6,111,325.0,776.0,0.0,78,78,0.0,0.0,554.1901765959199,1101.0,0.0,1473.2391412012762,70,0,0,0,0,0,0,0,0,0,,1,,4,127552,2,1,1,0,1,,267.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1586.90705074828,325.0,32866.10731452823,5,5,0,1,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03349955592438873,21910.738209685485,6,3,6,6_1,6_2,6_0_0 +27531,2,50.0,0.0,2,111,322.0,0.0,0.0,0,46,0.0,0.0,549.0745749658037,322.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,127553,2,3,0,1,1,,0.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,630.799412505928,322.0,27505.39952680474,0,1,1,2,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011706792322220314,18336.933017869826,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +27532,2,65.0,0.0,6,111,521.0,485.0,0.0,0,77,0.0,0.0,888.4094830968438,1006.0,0.0,920.7744632507977,70,0,0,0,0,0,0,0,0,0,,1,,4,127554,2,2,2,0,1,,310.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2285.17944848308,521.0,21133.0,0,5,0,1,80.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04760327449959779,21133.0,5,3,5,5_1,5_2,5_0_0 +27533,2,52.0,0.0,7,111,550.0,,,0,54,0.0,0.0,,613.0,87.29212119998083,,41,0,0,0,0,0,0,0,0,0,,1,,5,127555,2,1,0,0,2,,120.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,129.30405233960607,550.0,36272.898195980124,0,1,1,2,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01689966973931889,36272.898195980124,9,5,9,9_1,9_2,9_0_0 +27534,2,49.0,0.0,7,112,548.0,1582.0,0.0,34,34,0.0,0.0,934.4498977678895,2130.0,0.0,3003.433403840746,10,0,0,0,0,0,0,0,0,0,,1,,5,127556,2,1,2,0,1,,260.0,,43,2.0,2.0,6.0,4.0,2.5,4,2,665.395223979526,548.0,456888.12255244737,1,4,0,1,142.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004661972800038136,182755.24902097895,10,5,10,10_1,10_0,10_0_0 +27535,2,61.0,0.0,9,111,1300.0,1100.0,0.0,0,90,0.0,0.0,2216.7607063836795,2400.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,2,3.0,1,2004.0,6,127557,2,1,1,0,1,,180.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1130.69293373666,1300.0,48083.45927435693,0,5,1,2,250.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049913214153456884,48083.45927435693,10,5,10,10_1,10_2,10_0_0 +27536,2,71.0,0.0,1,211,1000.0,3200.0,0.0,75,72,0.0,0.0,1705.2005433720612,4200.0,0.0,6075.212953407325,12,0,0,0,0,0,0,0,0,0,,1,,1,127558,1,2,1,0,2,,700.0,,41,0.0,1.0,9.0,2.0,1.5,2,2,594.904854505285,1000.0,38849.04125468084,5,5,0,1,210.0,1,3,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1081107760798074,25899.360836453892,7,4,7,7_1,7_1,7_1_0 +27537,2,46.0,0.0,9,111,1400.0,0.0,0.0,62,64,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,127559,2,1,1,0,1,,440.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1058.16803457319,1400.0,63255.27599270675,1,1,1,2,92.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02213254116797179,42170.183995137835,9,5,9,9_1,9_2,9_0_0 +27538,2,48.0,0.0,6,111,447.0,767.0,0.0,52,62,0.0,0.0,762.2246428873113,1214.0,0.0,1456.1526047698183,50,0,0,0,0,0,0,0,0,0,,1,,4,127560,2,1,2,0,1,,300.0,,43,2.0,4.0,6.0,2.0,1.5,2,2,217.798192040576,447.0,48733.05615012529,1,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024911222400257345,32488.704100083527,8,4,8,8_1,8_3,8_0_0 +27539,2,67.0,0.0,1,111,743.0,1070.0,0.0,86,86,0.0,0.0,1266.9640037254414,1813.0,0.0,2031.3993312955743,70,0,0,0,0,0,0,0,0,0,,1,,1,127561,1,1,2,0,2,,263.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,211.121636964383,743.0,35491.78555063384,5,5,0,1,96.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05108224260550403,23661.190367089224,6,3,6,6_1,6_3,6_1_0 +27540,2,40.0,0.0,9,111,600.0,,,90,69,0.0,0.0,,738.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,127562,2,1,0,0,1,,300.0,511.0,43,2.0,0.0,2.0,3.0,1.8,2,2,193.38961028641674,600.0,29041.173513971506,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025412196227020695,16133.985285539726,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +27541,2,33.0,0.0,6,112,650.0,1000.0,0.0,46,53,0.0,211.89236432163582,1108.3803531918397,1810.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,2,35.0,1,,4,127563,1,1,2,0,1,,380.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1484.53240825088,650.0,27153.61522559625,4,1,1,2,150.0,9,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06665779068320193,12930.292964569642,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +27542,2,68.0,0.0,2,111,400.0,600.0,0.0,0,75,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,41,0,0,0,0,0,0,0,0,0,,2,,2,127564,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1789.5028782803,400.0,27532.050440058323,0,5,0,1,90.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03632130495246476,27532.050440058323,7,4,7,7_0,7_3,7_0_1 +27543,1,91.0,197.0,1,221,300.0,936.0,0.0,0,77,0.0,0.0,511.56016301161833,1236.0,0.0,1776.9997888716425,71,0,0,0,0,0,0,0,0,0,,2,,1,127565,2,2,0,0,1,,108.0,266.0,11,0.0,3.0,4.0,1.0,1.0,1,1,2902.42689358097,300.0,11400.769634702396,0,6,2,3,75.0,1,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10841373342355623,11400.769634702396,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +27544,2,60.0,0.0,7,111,540.0,,,0,54,0.0,0.0,,600.0,83.13535352379125,,41,0,0,0,0,0,0,0,0,0,,1,,5,127566,2,1,0,0,2,,120.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,85.15876486556523,540.0,23521.978585190544,0,4,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025508058253983806,23521.978585190544,6,3,6,6_1,6_3,6_0_0 +27545,2,52.0,0.0,2,111,293.0,145.0,0.0,0,34,0.0,0.0,499.62375920801395,438.0,0.0,275.2830869512694,10,0,0,0,0,0,0,0,0,2,45.0,2,,2,127567,2,1,0,1,1,299.0,0.0,189.0,12,1.0,0.0,1.0,1.0,1.0,1,1,332.133846786888,293.0,32682.907288239694,0,1,2,3,35.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013401500550032332,32682.907288239694,8,4,8,8_0,8_3,8_0_1 +27546,2,39.0,0.0,2,111,500.0,800.0,0.0,0,46,0.0,198.6490915515336,852.6002716860306,1450.0,0.0,1518.8032383518312,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,127568,2,1,2,0,1,,200.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,1554.3757099911,500.0,30305.678722044333,0,1,1,2,115.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04784581837942045,23312.060555418717,6,3,6,6_1,6_2,6_0_1 +27547,1,54.0,169.0,6,400,135.0,1500.0,0.0,85,64,0.0,0.0,230.20207335522826,1695.0,83.13535352379125,2847.7560719096837,71,0,0,0,0,0,0,0,0,2,10.0,2,,4,127569,2,2,0,0,1,,200.0,342.0,42,1.0,2.0,4.0,3.0,1.8,2,2,2215.52803917311,135.0,32388.7690572247,7,1,2,3,80.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052332955198305386,17993.760587347057,4,2,4_1,4_0_1,4_0_1,4_0_0_1 +27548,2,79.0,0.0,1,112,308.0,0.0,0.0,0,78,0.0,0.0,525.2017673585948,358.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127570,2,1,1,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,843.872358197242,308.0,21657.54343935363,0,5,0,1,100.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016530037259418952,21657.54343935363,6,3,6,6_1,6_0,6_1_0 +27549,2,49.0,0.0,7,111,540.0,,,56,63,0.0,0.0,,816.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,127571,2,1,0,0,2,,700.0,330.0,43,3.0,2.0,5.0,4.0,2.3,3,3,110.93794272474715,540.0,11587.052631578947,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07042343087111749,5037.848970251716,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +27550,2,55.0,0.0,5,111,300.0,900.0,0.0,0,42,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,20,2,2,2,2,1,1,2,1,2,20.0,2,,3,127572,1,1,0,0,1,,0.0,515.0,22,2.0,0.0,4.0,2.0,1.5,2,2,1744.63523419524,300.0,29570.52300488008,0,1,2,3,70.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.0405809528563956,19713.682003253387,5,3,5,5_0,5_3,5_0_0 +27551,1,55.0,459.0,7,112,810.0,150.0,0.0,0,56,0.0,0.0,1381.2124401313695,960.0,0.0,284.77560719096834,42,2,2,2,2,2,2,2,1,0,,1,,5,127573,2,3,4,0,1,,50.0,868.0,32,1.0,0.0,3.0,4.0,2.3,3,2,1728.18495188566,810.0,19567.90885956012,0,4,2,3,112.0,9,0,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.04905991779141905,8507.786460678313,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +27552,2,45.0,0.0,9,300,1300.0,0.0,0.0,67,47,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,127574,2,1,1,0,1,,700.0,1020.0,43,3.0,0.0,6.0,5.0,3.0,5,4,776.967710854262,1300.0,63054.32682619701,1,1,2,3,98.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020617141843149337,21018.108942065668,5,3,5,5_1,5_0,5_0_0 +27553,2,76.0,0.0,1,112,340.0,1302.0,0.0,78,78,0.0,0.0,579.7681847465008,1642.0,0.0,2471.8522704176053,71,0,0,0,0,0,0,0,0,0,,1,,1,127575,2,1,4,0,1,,130.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,671.226557719511,340.0,28417.299498791665,5,5,0,1,85.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057781704418107,18944.866332527778,5,3,5,5_1,5_1,5_1_0 +27554,2,78.0,0.0,1,221,364.0,221.0,0.0,86,86,0.0,0.0,620.6929977874303,585.0,0.0,419.5693945946934,71,0,0,0,0,0,0,0,0,0,,1,,1,127576,2,1,1,0,2,,252.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1816.75360676778,364.0,20789.81724885734,6,5,0,1,72.0,1,1,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028138775487896752,13859.878165904893,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +27555,2,54.0,0.0,1,111,0.0,0.0,0.0,54,23,0.0,0.0,0.0,2652.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,1,127577,2,1,1,0,1,,900.0,,43,2.0,0.0,6.0,6.0,3.0999999999999996,4,2,595.922320570644,0.0,178053.98047945957,1,1,1,2,130.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014894359524335017,57436.76789659987,10,5,10,10_1,10_4,10_1_0 +27556,2,58.0,0.0,8,111,620.0,1001.0,0.0,33,34,0.0,0.0,1057.224336890678,1621.0,0.0,1900.4025519877289,10,0,0,0,0,0,0,0,0,2,35.0,1,2000.0,6,127578,2,2,1,0,1,,265.0,,43,2.0,0.0,7.0,4.0,2.5,4,4,1239.56136978072,620.0,198904.41244661072,1,1,0,1,198.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.008149643238483226,79561.76497864429,10,5,10,10_1,10_3,10_0_0 +27557,0,36.0,0.0,1,111,0.0,1000.0,0.0,42,38,0.0,0.0,0.0,1385.0,0.0,1898.504047939789,10,0,0,0,0,0,0,0,0,2,75.0,1,,1,127579,2,1,2,0,1,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1617.58175239547,0.0,64483.07631629582,1,1,5,0,70.0,9,7,9,0,1,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02147850380472605,35823.93128683101,9,5,9,9_1,9_3,9_1_0 +27558,2,39.0,0.0,2,111,400.0,0.0,0.0,69,52,0.0,0.0,682.0802173488245,600.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,2,5.0,2,,2,127580,2,2,0,1,1,400.0,0.0,295.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1280.09539350686,400.0,29331.432029836782,1,1,2,3,63.0,5,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020455871346126663,13967.348585636562,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +27559,2,34.0,0.0,6,112,660.0,0.0,0.0,0,43,0.0,0.0,1125.4323586255605,689.0,40.18208753649911,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,4,127581,2,2,3,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1526.1565704746,660.0,37806.23139886216,0,1,0,1,33.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018224508884023192,37806.23139886216,9,5,9,9_1,9_1,9_0_0 +27560,0,67.0,0.0,1,112,500.0,1000.0,0.0,0,72,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,1,127582,2,1,2,0,1,,180.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,503.356357337637,500.0,20683.001984138595,0,5,0,1,120.0,7,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07252332138005507,20683.001984138595,5,3,5,5_1,5_1,5_1_0 +27561,2,90.0,0.0,7,221,592.0,,,0,77,0.0,0.0,,724.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,127583,2,1,0,0,2,,0.0,,11,0.0,8.0,4.0,1.0,1.0,1,1,91.02243580299466,592.0,14097.09677419355,0,5,0,1,35.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051358092492162645,14097.09677419355,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +27562,2,56.0,0.0,2,120,348.0,0.0,0.0,0,78,0.0,2781.0872817214704,593.4097890934773,2748.0,415.67676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127584,1,1,2,0,2,,248.0,400.0,11,0.0,2.0,3.0,1.0,1.0,1,1,251.585593944644,348.0,13219.377170176129,0,7,2,3,88.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.20787666201095215,13219.377170176129,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +27563,2,88.0,0.0,2,111,316.0,0.0,0.0,0,86,0.0,0.0,538.8433717055714,316.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127585,2,1,0,1,1,430.0,0.0,265.0,21,0.0,1.0,3.0,3.0,2.0,3,3,354.390237891474,316.0,46503.294572933264,0,6,2,3,70.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006795217476568302,23251.647286466632,6,3,6,6_0,6_3,6_0_1 +27564,0,31.0,0.0,2,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,283.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,,2,127586,2,1,0,1,2,,0.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,695.245538700306,0.0,51325.37862714699,6,1,5,0,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0055138414478313426,24440.656489117613,7,4,7,7_0,7_4,7_0_1 +27565,2,29.0,0.0,1,111,500.0,0.0,0.0,0,67,0.0,0.0,852.6002716860306,600.0,138.5589225396521,0.0,31,2,2,2,2,1,2,2,2,2,15.0,2,,1,127587,2,2,0,0,1,,170.0,480.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2270.45599973645,500.0,18579.72873518496,0,1,2,3,45.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,1,0,0,0.0322932594200777,18579.72873518496,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +27566,2,29.0,0.0,8,112,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1971.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,2,2001.0,6,127588,2,1,0,0,1,,71.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2419.6224147369,0.0,18243.16232590442,0,1,1,2,56.0,9,5,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10804047921019011,18243.16232590442,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +27567,2,69.0,0.0,1,112,400.0,900.0,0.0,77,75,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,70,0,0,0,0,0,0,0,0,0,,1,,1,127589,1,1,3,0,1,,120.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,245.836864880852,400.0,18822.54832201652,5,5,0,1,80.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06906609975225325,12548.365548011012,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +27568,2,57.0,0.0,5,111,500.0,0.0,0.0,0,48,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,45.0,2,,3,127590,2,1,0,1,1,40.0,0.0,432.0,12,1.0,2.0,3.0,1.0,1.0,1,1,848.712129628758,500.0,30302.34745999468,0,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01650037181641134,30302.34745999468,8,4,8,8_0,8_4,8_0_0 +27569,2,46.0,0.0,8,111,1600.0,0.0,0.0,53,53,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,127591,1,2,2,0,1,,190.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,339.680195232608,1600.0,60829.052245765895,1,1,1,2,105.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026303220926993328,40552.701497177266,9,5,9,9_1,9_3,9_0_0 +27570,2,53.0,0.0,2,111,324.0,1050.0,0.0,0,63,0.0,0.0,552.4849760525478,1374.0,0.0,1993.4292503367785,60,1,2,2,1,1,2,2,2,2,30.0,2,,2,127592,1,1,0,0,1,,200.0,609.0,22,2.0,0.0,2.0,2.0,1.5,2,2,1784.05379984848,324.0,29953.823658055844,0,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,1,0,0,0.04587060455737422,19969.21577203723,5,3,5,5_0,5_3,5_0_1 +27572,2,40.0,0.0,5,111,1600.0,0.0,0.0,37,38,0.0,132.4327277010224,2728.320869395298,1700.0,0.0,0.0,10,2,2,1,2,1,2,2,1,2,60.0,1,,3,127594,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,449.23798268606,1600.0,84626.0,1,1,1,2,100.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.020088388911209322,31342.962962962967,8,4,8,8_1,8_2,8_0_0 +27573,1,51.0,201.0,2,111,320.0,0.0,0.0,85,67,0.0,0.0,545.6641738790596,320.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,127595,2,2,0,1,1,876.0,380.0,278.0,42,3.0,2.0,5.0,4.0,2.5,4,4,290.947303155297,320.0,19557.23384270082,6,1,2,3,73.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016362232132302843,7822.893537080328,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27574,2,89.0,0.0,2,111,270.0,75.0,0.0,0,74,0.0,0.0,460.40414671045653,345.0,0.0,142.38780359548417,60,0,0,0,0,0,0,0,0,0,,2,,2,127596,2,1,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1920.46233782034,270.0,38601.344941742675,0,5,0,1,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008937512424001691,38601.344941742675,9,5,9,9_0,9_3,9_0_1 +27575,1,60.0,103.0,6,111,900.0,,,0,86,0.0,0.0,,1188.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,,4,127597,2,3,0,0,2,,1200.0,300.0,31,0.0,0.0,3.0,5.0,2.5999999999999996,3,2,143.84365054151735,900.0,7665.247082935929,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15498521928206055,2948.171954975358,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27576,2,64.0,0.0,9,112,300.0,,,45,77,0.0,0.0,,450.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,127598,2,3,0,0,2,,400.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,103.97799748351133,300.0,75487.16956338992,1,5,0,1,125.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005961277957601987,50324.77970892662,10,5,10,10_1,10_1,10_0_0 +27577,2,33.0,0.0,2,111,665.0,0.0,0.0,46,54,0.0,0.0,1133.9583613424206,665.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,127599,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,891.74869150392,665.0,13794.637240340024,4,4,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04820713936973441,7663.687355744458,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +27578,2,41.0,0.0,1,111,0.0,0.0,0.0,85,37,0.0,0.0,0.0,2858.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,127600,2,2,4,0,1,,618.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,682.809409559658,0.0,75726.70744996659,7,1,1,2,85.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03774097800156318,42070.393027759215,9,5,9,9_1,9_4,9_1_0 +27579,2,40.0,0.0,1,111,405.0,1350.0,0.0,43,31,0.0,0.0,690.6062200656847,1755.0,0.0,2562.980464718715,12,0,0,0,0,0,0,0,0,3,30.0,1,,1,127601,2,1,4,0,1,,420.0,1356.0,43,2.0,0.0,4.0,4.0,2.1,2,2,568.888794655999,405.0,93873.27183896137,1,1,2,3,110.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018695417402843743,44701.558018553034,10,5,10,10_1,10_4,10_1_0 +27580,2,59.0,0.0,2,211,530.0,750.0,0.0,75,74,0.0,0.0,903.7562879871924,1280.0,0.0,1423.8780359548418,44,0,0,0,0,0,0,0,0,0,,1,,2,127602,2,3,1,0,1,,421.0,,41,0.0,7.0,3.0,2.0,1.5,2,2,1360.65843331246,530.0,30469.768635264,6,5,0,1,45.0,2,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04200885196478321,20313.179090176,5,3,5,5_1,5_1,5_0_1 +27581,2,70.0,0.0,7,112,600.0,0.0,0.0,75,75,1582.0242765549024,172.1625460113291,1023.1203260232367,2368.0,191.2113131047199,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,127603,2,1,1,0,1,,350.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1138.38251212487,600.0,31700.046968136172,5,5,0,1,95.0,4,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07470020477825268,21133.364645424113,5,3,5,5_1,5_0,5_0_0 +27582,2,87.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,310.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,127604,1,1,0,3,2,,0.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,696.758722014498,0.0,16080.447146202623,0,5,0,1,50.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019278070888296542,16080.447146202623,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +27583,0,74.0,0.0,7,111,840.0,,,0,77,0.0,0.0,,1344.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,1,,5,127605,2,1,0,0,2,,720.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,78.3658136899747,840.0,9404.09307656096,0,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14291649275035628,9404.09307656096,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +27584,2,59.0,0.0,7,112,540.0,1340.0,0.0,35,42,0.0,0.0,920.8082934209131,1880.0,0.0,2543.9954242393173,42,0,0,0,0,0,0,0,0,2,60.0,1,,5,127606,2,1,1,0,1,,500.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,369.055103009776,540.0,78904.35261595297,1,1,0,1,160.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023826315503156406,52602.90174396865,10,5,10,10_1,10_0,10_0_0 +27586,2,82.0,0.0,5,111,331.0,,,0,78,0.0,0.0,,331.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,127608,1,3,0,0,2,,590.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,72.23160283879771,331.0,12095.772676024902,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027364932267293425,12095.772676024902,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +27587,0,42.0,0.0,1,112,886.0,0.0,0.0,22,47,861.6758892969035,198.6490915515336,1510.8076814276462,1913.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,127609,2,1,2,0,1,,256.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,220.39719967284,886.0,46067.94252138984,1,1,5,0,120.0,6,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04152562270632715,21937.115486376115,6,3,6,6_1,6_0,6_1_0 +27588,0,35.0,0.0,5,111,0.0,0.0,0.0,45,53,0.0,0.0,0.0,1118.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,3,127610,2,1,0,1,2,703.0,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1090.41044355817,0.0,55770.86313232842,1,1,5,0,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020046309797058428,26557.55387253734,7,4,7,7_0,7_4,7_0_0 +27589,0,35.0,0.0,8,112,0.0,0.0,0.0,85,21,0.0,0.0,0.0,498.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,127611,2,1,1,0,1,,0.0,,42,1.0,0.0,2.0,3.0,1.8,2,2,2597.25824618314,0.0,15814.305066152265,6,1,5,0,35.0,6,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03149047637040222,8785.725036751259,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +27590,2,65.0,0.0,2,120,350.0,0.0,0.0,77,75,1604.1726164266709,211.89236432163582,596.8201901802214,2211.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,127612,2,1,2,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1226.31395222959,350.0,35703.54699056845,5,5,0,1,98.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0619266203602702,23802.364660378968,6,3,6,6_1,6_0,6_0_1 +27593,2,24.0,0.0,9,120,0.0,0.0,0.0,55,48,0.0,0.0,0.0,2271.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2013.0,6,127615,2,1,1,0,1,,127.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2216.31080661223,0.0,32447.001097460634,1,1,1,2,90.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06999105998050874,21631.334064973755,6,3,6,6_1,6_0,6_0_0 +27594,2,79.0,0.0,2,111,0.0,0.0,1500.0,77,78,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,70,0,0,0,0,0,0,0,0,0,,1,,2,127616,2,1,2,0,1,,344.0,,41,1.0,3.0,4.0,3.0,2.0,3,3,929.681966130606,0.0,46013.28619044046,5,5,0,1,110.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03259927999473409,23006.64309522023,6,3,6,6_1,6_2,6_0_1 +27595,2,56.0,0.0,8,111,650.0,850.0,0.0,38,38,0.0,0.0,1108.3803531918397,1500.0,0.0,1613.7284407488207,12,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,127617,2,1,1,0,1,,292.0,,43,2.0,0.0,7.0,4.0,2.5,4,4,1221.74651337748,650.0,90627.04801756777,1,1,0,1,136.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016551350097039792,36250.8192070271,9,5,9,9_1,9_3,9_0_0 +27596,2,29.0,0.0,2,111,1005.0,,,0,64,0.0,0.0,,1120.0,159.34276092059991,,50,0,0,0,0,0,0,0,0,0,,1,,2,127618,2,1,0,0,2,,700.0,,22,1.0,5.0,4.0,3.0,2.0,3,3,105.0306031590758,1005.0,49049.31811578575,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022834160453691316,24524.659057892874,7,4,7,7_1,7_3,7_0_1 +27597,2,54.0,0.0,1,111,740.0,0.0,0.0,85,62,0.0,860.8127300566456,1261.8484020953254,1690.0,415.67676761895626,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,127619,2,1,1,0,1,,600.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,247.068928584709,740.0,33447.732223486084,6,1,0,1,111.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050526594410287944,13379.092889394433,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +27598,2,38.0,0.0,8,112,760.0,0.0,0.0,55,47,316.40485531098045,0.0,1295.9524129627664,1120.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2003.0,6,127620,2,1,1,0,1,,271.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,315.116600060647,760.0,47833.60613500463,1,1,1,2,97.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023414500609444625,19930.669222918597,5,3,5,5_1,5_0,5_0_0 +27599,0,38.0,0.0,6,211,300.0,,,21,68,0.0,0.0,,300.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,127621,1,2,0,0,2,,280.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,92.29676903203098,300.0,17734.20731239098,1,1,5,0,180.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016916459513270067,8444.860624948085,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27601,2,59.0,0.0,6,112,1200.0,0.0,0.0,85,78,0.0,0.0,2046.2406520464733,1410.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,127623,2,1,0,1,1,1800.0,0.0,420.0,41,0.0,4.0,6.0,3.0,2.0,3,2,1872.6074604193,1200.0,26764.721081932723,7,7,2,3,100.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05268128876380511,13382.360540966361,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +27602,2,45.0,0.0,2,111,1087.0,120.0,0.0,64,46,0.0,0.0,1853.5529906454306,1207.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,127624,2,3,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,268.440872475434,1087.0,49477.2871213272,1,1,1,2,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024395031947491767,23560.612914917714,6,3,6,6_0,6_4,6_0_1 +27603,2,78.0,0.0,1,111,280.0,1795.0,0.0,0,77,0.0,0.0,477.4561521441771,2075.0,0.0,3407.814766051921,70,0,0,0,0,0,0,0,0,0,,1,,1,127625,1,3,2,0,2,,181.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,1541.86300416506,280.0,18588.443670256896,0,5,0,1,100.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11162849546786845,12392.295780171264,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +27604,2,89.0,0.0,2,111,232.0,1144.0,0.0,0,78,0.0,0.0,395.6065260623182,1376.0,0.0,2171.888630843119,71,0,0,0,0,0,0,0,0,0,,1,,2,127626,2,1,2,0,2,,148.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1219.00093459659,232.0,10162.36888570754,0,5,0,1,160.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13540150091729308,10162.36888570754,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +27605,2,82.0,0.0,2,400,0.0,0.0,1900.0,0,78,0.0,0.0,1197.6047517880133,1900.0,0.0,2273.7910803728937,70,2,2,2,1,1,2,2,2,0,,1,,2,127627,2,2,5,0,1,,217.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,282.157466521019,0.0,15881.606598826911,0,5,0,1,85.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.11963525152048174,15881.606598826911,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +27606,2,30.0,0.0,7,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,1497.0,99.7624242285495,0.0,50,2,2,2,1,1,2,2,2,2,30.0,1,,5,127628,1,1,3,0,2,,0.0,470.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1315.93962547425,0.0,45934.31575691297,4,1,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.03259001413936826,25519.064309396093,7,4,7,7_1,7_3,7_0_0 +27607,2,54.0,0.0,2,300,1200.0,0.0,0.0,56,52,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,127629,2,2,1,0,1,,250.0,,43,2.0,6.0,4.0,3.0,2.0,3,2,1720.70051762895,1200.0,40456.6426223098,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03262752206907269,20228.3213111549,5,3,5,5_1,5_0,5_0_1 +27608,0,93.0,0.0,2,221,500.0,0.0,0.0,78,78,2471.1219199787574,0.0,852.6002716860306,2883.0,55.423569015860835,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127630,2,1,4,0,1,,180.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,2807.01139337179,500.0,28518.673478004468,5,5,0,1,100.0,1,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10109165849609256,19012.448985336312,5,3,5,5_1,5_1,5_0_1 +27609,2,38.0,0.0,9,111,1340.0,0.0,0.0,54,48,0.0,0.0,2284.968728118562,1340.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,127631,2,1,1,0,1,,520.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,180.991588171443,1340.0,43581.42142099736,1,1,1,2,96.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030747046707255702,24211.900789442978,7,4,7,7_1,7_3,7_0_0 +27610,2,35.0,0.0,9,111,300.0,500.0,0.0,54,54,0.0,0.0,511.56016301161833,800.0,0.0,949.2520239698945,50,1,2,2,1,2,2,2,2,2,10.0,2,2006.0,6,127632,2,2,0,0,1,,250.0,506.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1527.59135248325,300.0,34680.1109921865,4,1,2,3,67.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.023067976921418782,19266.7283289925,5,3,5,5_0,5_3,5_0_0 +27611,2,33.0,0.0,8,111,0.0,0.0,0.0,33,45,0.0,0.0,0.0,2118.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,1,2002.0,6,127633,2,1,1,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1179.60548245237,0.0,52168.92325164919,1,1,1,2,93.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04059888278282693,24842.344405547232,7,4,7,7_1,7_3,7_0_0 +27612,2,72.0,0.0,1,300,367.0,0.0,0.0,0,78,0.0,0.0,625.8085994175465,1956.0,2201.701279155072,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127634,2,1,1,0,2,,171.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1361.40587189971,367.0,19129.54412956697,0,5,1,2,75.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10225021499476147,19129.54412956697,5,3,5,5_1,5_0,5_1_0 +27613,2,46.0,0.0,7,111,60.0,60.0,0.0,0,62,0.0,0.0,102.31203260232367,120.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,127635,2,1,2,0,1,,434.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,287.555534539309,60.0,29755.89645720732,0,1,1,2,100.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.004032814140638476,29755.89645720732,8,4,8,8_1,8_3,8_0_0 +27614,2,69.0,0.0,1,111,200.0,0.0,0.0,0,78,0.0,0.0,341.04010867441224,260.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,127636,2,1,0,0,2,,0.0,161.0,11,0.0,0.0,1.0,1.0,1.0,1,1,544.923088775412,200.0,15082.118266360168,0,5,2,3,11.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.017238957778226392,15082.118266360168,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +27615,0,33.0,0.0,1,112,544.0,0.0,0.0,85,21,0.0,0.0,927.6290955944013,724.0,249.40606057137379,0.0,10,2,2,2,1,1,2,2,2,2,20.0,1,,1,127637,1,3,3,0,2,,500.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,215.229851245856,544.0,79439.71865846866,6,1,5,0,120.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.009113828853204506,52959.812438979105,10,5,10,10_1,10_0,10_1_0 +27616,2,49.0,0.0,2,111,305.0,1160.0,0.0,0,52,0.0,0.0,520.0861657284787,1465.0,0.0,2202.2646956101553,50,2,2,2,2,1,2,2,2,3,15.0,2,,2,127638,2,2,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,1338.27569039285,305.0,24019.766902811152,0,1,0,1,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.06099143284477685,16013.177935207435,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +27617,2,32.0,0.0,6,111,0.0,0.0,0.0,42,38,0.0,0.0,0.0,888.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,4,127639,1,2,0,0,2,,0.0,763.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1315.99728432694,0.0,61114.568067312706,1,1,2,3,85.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014530087147502058,40743.04537820847,9,5,9,9_0,9_3,9_0_0 +27618,2,31.0,0.0,1,111,300.0,0.0,0.0,42,52,0.0,0.0,511.56016301161833,320.0,27.711784507930417,0.0,71,2,1,2,2,2,2,2,1,2,7.0,1,,1,127640,2,1,3,0,1,,0.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1196.75965877349,300.0,37150.714905303335,1,1,1,2,180.0,3,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.008613562371967151,20639.286058501853,5,3,5,5_1,5_2,5_1_0 +27619,2,48.0,0.0,7,111,492.0,,,0,42,0.0,0.0,,756.0,365.79555550468154,,20,0,0,0,0,0,0,0,0,0,,1,,5,127641,2,2,0,0,2,,876.0,,32,1.0,0.0,4.0,4.0,2.1,2,2,45.328662577263685,492.0,66261.50402675424,0,1,0,1,143.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011409339572110405,31553.097155597254,8,4,8,8_1,8_2,8_0_0 +27620,2,42.0,0.0,9,300,1800.0,0.0,0.0,52,64,0.0,0.0,3069.36097806971,1920.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,127642,2,1,1,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,1283.80631192237,1800.0,41122.86150875039,1,1,0,1,125.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04668935792786331,17879.50500380452,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +27621,1,53.0,84.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,936.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127643,2,1,2,0,1,,119.0,277.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1090.13630965552,0.0,14095.910901154222,0,1,2,3,56.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06640223583729925,14095.910901154222,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +27623,2,81.0,0.0,9,111,0.0,0.0,0.0,90,77,0.0,0.0,0.0,1921.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2012.0,6,127645,2,1,1,0,1,,442.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,215.704326178563,0.0,33617.124764893364,5,5,1,2,80.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05714349497272045,16808.562382446682,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +27625,0,79.0,0.0,2,111,200.0,200.0,0.0,0,77,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,127647,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,836.531529325656,200.0,17575.118297808003,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022759448512496706,17575.118297808003,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +27626,2,44.0,0.0,5,111,0.0,0.0,0.0,54,52,0.0,0.0,0.0,661.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,8,,3,127648,2,2,0,1,1,3600.0,0.0,800.0,43,2.0,0.0,5.0,6.0,2.8999999999999995,3,3,887.497740126589,0.0,60962.418029672364,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010842745766387909,21021.523458507716,5,3,5,5_0,5_4,5_0_0 +27627,1,74.0,94.0,2,111,241.0,508.0,0.0,0,77,0.0,0.0,410.95333095266676,749.0,0.0,964.4400563534128,50,0,0,0,0,0,0,0,0,0,,2,,2,127649,2,3,0,0,1,,85.0,326.0,11,0.0,1.0,3.0,1.0,1.0,1,1,421.988645978387,241.0,14017.184910217014,0,5,2,3,52.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05343440960488863,14017.184910217014,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +27628,2,52.0,0.0,7,111,348.0,456.0,0.0,0,52,0.0,0.0,593.4097890934773,804.0,0.0,865.7178458605438,60,0,0,0,0,0,0,0,0,2,15.0,2,,5,127650,2,1,0,0,2,,0.0,430.0,32,2.0,0.0,3.0,2.0,1.5,2,2,506.554598698976,348.0,24718.20900161973,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032526628444128604,16478.806001079818,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +27629,1,41.0,286.0,7,400,489.0,,,0,46,0.0,0.0,,581.0,127.47420873647992,,43,0,0,0,0,0,0,0,0,2,45.0,1,,5,127651,2,2,0,0,1,,590.0,580.0,32,1.0,0.0,4.0,2.0,1.3,1,1,55.16027696370309,489.0,34284.674694955946,0,1,2,3,75.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.016946347170255588,26372.82668842765,7,4,7,7_1,7_1,7_0_0 +27630,2,37.0,0.0,1,111,1150.0,0.0,0.0,55,55,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,1,,1,127652,2,1,3,0,1,,480.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1528.66177355631,1150.0,56127.17242372471,1,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02048918465584238,31181.762457624838,8,4,8,8_1,8_4,8_1_0 +27631,2,40.0,0.0,7,112,1380.0,0.0,0.0,47,34,0.0,0.0,2353.1767498534446,1380.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,127653,2,1,2,0,2,,296.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1058.93142794331,1380.0,100190.8264355906,1,1,1,2,120.0,8,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013773716108501777,47709.917350281234,10,5,10,10_1,10_1,10_0_0 +27632,2,47.0,0.0,2,111,900.0,150.0,0.0,0,37,0.0,0.0,1534.680489034855,1140.0,0.0,284.77560719096834,12,2,2,2,1,2,2,2,2,2,30.0,2,,2,127654,1,3,0,1,2,,0.0,460.0,12,1.0,0.0,2.0,1.0,1.0,1,1,349.354622864139,900.0,20880.524969695925,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.0545963284761514,20880.524969695925,5,3,5,5_0,5_4,5_0_1 +27633,0,49.0,0.0,2,111,360.0,360.0,0.0,0,54,0.0,0.0,613.872195613942,720.0,0.0,683.461457258324,42,0,0,0,0,0,0,0,0,0,,2,,2,127655,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,547.65769338784,360.0,5198.980668875265,0,4,5,0,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1384886857361143,5198.980668875265,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +27634,2,68.0,0.0,1,111,270.0,,,0,86,0.0,0.0,,408.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,127656,2,1,0,0,2,,320.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,108.46378958030444,270.0,5110.0,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07984344422700587,5110.0,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +27635,2,40.0,0.0,9,112,2600.0,0.0,0.0,56,62,0.0,0.0,4433.521412767359,2600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,127657,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,6.0,2.8999999999999995,3,2,1513.51082405316,2600.0,54160.73747396465,1,1,1,2,170.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04800525475211326,18676.116370332642,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27636,1,33.0,410.0,5,111,320.0,,,0,56,0.0,0.0,,452.0,182.89777775234077,,43,0,0,0,0,0,0,0,0,0,,1,,3,127658,2,1,0,0,2,,210.0,635.0,32,1.0,0.0,4.0,3.0,1.6,1,1,120.69398683930261,320.0,8685.447860996997,0,4,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05204106998670247,5428.404913123123,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27637,1,79.0,80.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,153.0,0.0,0.0,71,1,2,2,2,1,1,2,2,0,,2,,1,127659,1,3,0,1,2,,0.0,512.0,11,0.0,1.0,1.0,1.0,1.0,1,1,403.917582263637,0.0,12477.444444444445,0,5,3,4,12.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.01226212632572553,12477.444444444445,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +27638,2,31.0,0.0,1,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,753.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,127660,1,2,3,0,1,,99.0,430.0,22,2.0,0.0,3.0,2.0,1.5,2,2,841.44009624957,0.0,14538.768864442885,0,4,2,3,65.0,8,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05179255595991995,9692.512576295258,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +27639,2,68.0,0.0,1,111,550.0,0.0,0.0,63,74,0.0,0.0,937.8602988546337,550.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,127661,2,1,0,1,1,,0.0,1120.0,42,1.0,3.0,5.0,2.0,1.5,2,2,722.688136248561,550.0,71128.78989544818,1,5,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007732452651147897,47419.19326363212,10,5,10,10_0,10_4,10_1_0 +27640,2,41.0,0.0,9,111,460.0,,,0,56,0.0,0.0,,750.0,401.8208753649911,,50,0,0,0,0,0,0,0,0,1,1.0,1,2012.0,6,127662,2,1,0,0,2,,250.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,122.28866990735528,460.0,7912.0,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09479271991911022,4945.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27641,2,59.0,0.0,6,112,900.0,0.0,0.0,77,69,0.0,198.6490915515336,1534.680489034855,1110.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,127663,2,1,2,0,1,,1400.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,631.221179991323,900.0,35487.50146918036,5,1,0,1,92.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03127861793719109,23658.334312786905,6,3,6,6_1,6_2,6_0_0 +27642,0,33.0,0.0,6,120,700.0,,,69,85,0.0,0.0,,832.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,,4,127664,2,2,0,0,2,,550.0,,42,1.0,0.0,4.0,7.0,2.9999999999999996,2,2,99.27450145681524,700.0,39088.21924986632,4,6,5,0,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02128518556144881,13029.406416622109,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +27643,2,63.0,0.0,8,300,1200.0,0.0,0.0,0,21,0.0,132.4327277010224,2046.2406520464733,1330.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,127665,2,1,1,0,1,,270.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1849.16397112477,1200.0,7795.813057442421,0,1,0,1,99.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.170604398822813,7795.813057442421,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +27644,1,69.0,256.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1788.0,45.72444443808519,0.0,70,2,2,2,1,1,2,2,2,0,,2,,2,127666,2,1,0,1,2,552.0,120.0,355.0,21,1.0,2.0,3.0,2.0,1.5,2,2,285.709197691267,0.0,17935.10731423056,0,5,2,3,70.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.0996927405380684,11956.73820948704,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +27645,2,41.0,0.0,6,111,400.0,300.0,0.0,56,48,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,44,0,0,0,0,0,0,0,0,3,45.0,2,,4,127667,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,303.875184702706,400.0,41727.94906693794,1,1,1,2,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0167753272243765,17386.645444557475,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +27646,2,35.0,0.0,9,111,1000.0,0.0,0.0,43,38,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,110.0,2,2007.0,6,127668,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,605.194820651159,1000.0,77213.20239832673,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012951153027447425,36768.19161825082,9,5,9,9_0,9_4,9_0_0 +27647,1,39.0,566.0,9,111,580.0,670.0,0.0,0,62,0.0,0.0,989.0163151557955,1250.0,0.0,1271.9977121196587,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,127669,2,1,1,0,1,,485.0,785.0,32,1.0,0.0,5.0,6.0,2.6999999999999997,2,1,1002.81803637344,580.0,20649.57606620341,0,4,2,3,120.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.060533930381546204,7647.991135630894,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27649,2,68.0,0.0,1,112,350.0,0.0,0.0,86,86,0.0,1263.4082222677537,596.8201901802214,1379.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127671,2,1,1,0,1,,152.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1676.16582324168,350.0,46332.04826577098,5,5,0,1,200.0,9,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029763415424454105,30888.032177180652,8,4,8,8_1,8_2,8_1_0 +27650,2,46.0,0.0,1,111,179.0,0.0,0.0,31,34,0.0,0.0,305.23089726359893,179.0,0.0,0.0,10,2,2,2,1,2,2,2,2,2,40.0,2,,1,127672,1,1,0,1,2,763.0,0.0,1040.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1176.09738754764,179.0,104339.04750233289,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.0017155609935580233,57966.13750129605,10,5,10,10_0,10_4,10_1_0 +27651,2,58.0,0.0,7,111,720.0,1200.0,0.0,34,38,0.0,0.0,1227.744391227884,1920.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,127673,2,1,2,0,1,,256.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,324.979099273297,720.0,124791.11555372766,1,1,0,1,174.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015385710685255969,83194.07703581844,10,5,10,10_1,10_2,10_0_0 +27652,2,69.0,0.0,2,211,1260.0,1700.0,0.0,75,75,0.0,0.0,2148.552684648797,2960.0,0.0,3227.4568814976415,60,0,0,0,0,0,0,0,0,0,,1,,2,127674,2,2,2,0,1,,621.0,600.0,41,0.0,2.0,6.0,3.0,2.0,3,3,1395.5303438795,1260.0,37640.72197084092,5,5,2,3,130.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0786382365963389,18820.36098542046,5,3,5,5_1,5_1,5_0_1 +27653,1,30.0,56.0,1,211,1129.0,0.0,0.0,0,43,0.0,0.0,1925.1714134670572,1129.0,0.0,0.0,44,2,2,2,1,1,2,2,2,0,,1,,1,127675,2,2,5,0,1,,491.0,384.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1858.40725914589,1129.0,16929.990769817363,0,4,2,3,80.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.06668639193901814,16929.990769817363,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +27654,2,81.0,0.0,2,111,350.0,459.0,0.0,0,78,0.0,0.0,596.8201901802214,809.0,0.0,871.4133580043632,71,2,1,2,2,1,2,2,2,0,,2,,2,127676,2,3,0,1,1,850.0,210.0,246.0,11,0.0,0.0,3.0,1.0,1.0,1,1,241.290560880586,350.0,18876.84457848616,0,5,2,3,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04285673893411259,18876.84457848616,5,3,5,5_0,5_2,5_0_1 +27655,2,89.0,0.0,1,111,192.0,61.0,0.0,0,77,0.0,0.0,327.3985043274357,253.0,0.0,115.80874692432712,50,0,0,0,0,0,0,0,0,0,,2,,1,127677,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1528.96775282747,192.0,33924.41541981783,0,5,0,1,53.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.007457755627299726,33924.41541981783,9,5,9,9_0,9_3,9_1_0 +27656,2,67.0,0.0,2,112,0.0,0.0,0.0,54,72,0.0,0.0,0.0,1216.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,127678,1,1,2,0,2,,221.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,204.216493057718,0.0,72579.92994836066,1,5,0,1,85.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01675394287188156,48386.61996557377,10,5,10,10_1,10_0,10_0_1 +27657,2,71.0,0.0,1,111,344.0,1516.0,0.0,77,75,0.0,66.2163638505112,586.588986919989,1910.0,0.0,2878.13213667672,70,0,0,0,0,0,0,0,0,0,,1,,1,127679,1,3,2,0,1,,190.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,948.988888221826,344.0,47419.382327492116,5,5,0,1,123.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040278888215139155,31612.92155166141,8,4,8,8_1,8_3,8_1_0 +27658,2,81.0,0.0,1,221,250.0,700.0,0.0,0,78,0.0,0.0,426.3001358430153,950.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,,1,127680,2,1,0,1,1,,48.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,3150.1057846669,250.0,20916.07071344164,0,5,0,1,35.0,1,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04541962077941751,20916.07071344164,5,3,5,5_0,5_1,5_1_0 +27659,2,49.0,0.0,1,112,480.0,0.0,0.0,63,62,0.0,0.0,818.4962608185893,835.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,127681,1,2,3,0,2,,900.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1084.99267663146,480.0,22653.55658818303,1,1,0,1,50.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03685955433751044,15102.371058788687,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +27660,2,39.0,0.0,9,111,360.0,,,0,42,0.0,132.4327277010224,,525.0,90.06329965077386,,31,2,2,1,2,1,2,2,2,2,25.0,1,2006.0,6,127682,2,1,0,0,2,,120.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,121.5285274012221,360.0,40949.715862542624,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.012820601778099908,25593.57241408914,7,4,7,7_1,7_2,7_0_0 +27661,2,79.0,0.0,5,111,204.0,0.0,0.0,0,75,0.0,0.0,347.86091084790047,204.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,127683,2,1,0,1,2,,92.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,382.966598879354,204.0,22815.9770757726,0,5,0,1,71.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008941102952659418,22815.9770757726,6,3,6,6_0,6_3,6_0_0 +27662,0,25.0,0.0,2,111,0.0,,,0,42,0.0,0.0,,138.0,0.0,,20,0,0,0,0,0,0,0,0,1,5.0,2,,2,127684,2,2,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,125.22347847858498,0.0,14501.88342644655,0,1,5,0,25.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009516005331303002,14501.88342644655,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +27663,2,41.0,0.0,9,112,380.0,870.0,0.0,0,54,0.0,0.0,647.9762064813832,1250.0,0.0,1651.6985217076165,43,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,127685,2,1,1,0,1,,170.0,,22,1.0,0.0,4.0,2.0,1.3,1,1,274.500985040288,380.0,31285.320645693464,0,1,1,2,190.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03995484061538832,24065.631265918048,6,3,6,6_1,6_0,6_0_0 +27664,2,31.0,0.0,9,111,2020.0,0.0,0.0,48,54,0.0,0.0,3444.5050976115635,2020.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,127686,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1445.45432462028,2020.0,44939.06242462982,1,1,1,2,140.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04494975842871381,18724.60934359576,5,3,5,5_1,5_3,5_0_0 +27665,2,56.0,0.0,8,111,540.0,1057.0,0.0,47,33,0.0,0.0,920.8082934209131,1597.0,0.0,2006.718778672357,20,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,127687,2,1,1,0,1,,0.0,745.0,43,2.0,5.0,4.0,2.0,1.5,2,2,1307.70563061679,540.0,68852.94494417089,1,1,2,3,120.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023194360114805846,45901.96329611392,10,5,10,10_1,10_2,10_0_0 +27666,2,61.0,0.0,1,221,500.0,,,0,22,0.0,0.0,,638.0,191.2113131047199,,44,0,0,0,0,0,0,0,0,0,,1,,1,127688,2,2,0,0,2,,373.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,86.56838172445757,500.0,9415.489936305732,0,1,0,1,60.0,1,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06776067993444493,9415.489936305732,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +27667,2,62.0,0.0,6,111,1200.0,0.0,0.0,0,75,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,127689,1,2,0,0,1,,200.0,600.0,21,0.0,1.0,2.0,2.0,1.5,2,2,1195.0076722905,1200.0,44114.57291765645,0,5,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027201895442576327,29409.715278437634,8,4,8,8_0,8_4,8_0_0 +27668,2,32.0,0.0,2,111,460.0,,,54,54,0.0,0.0,,598.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,127690,2,1,0,0,2,,600.0,527.0,43,2.0,0.0,3.0,3.0,1.8,2,2,83.38341084281848,460.0,34163.16572426494,1,1,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017504232623713232,18979.53651348052,5,3,5,5_1,5_2,5_0_1 +27669,2,43.0,0.0,2,111,389.0,761.0,0.0,0,54,0.0,0.0,663.3230113717318,1150.0,0.0,1444.7615804821794,71,0,0,0,0,0,0,0,0,2,60.0,2,,2,127691,2,2,0,0,1,,145.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1268.85208169053,389.0,33951.024308030916,0,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03387232118731611,33951.024308030916,9,5,9,9_0,9_4,9_0_1 +27670,1,51.0,197.0,2,111,350.0,450.0,0.0,0,85,0.0,0.0,596.8201901802214,800.0,0.0,854.326821572905,70,0,0,0,0,0,0,0,0,0,,2,,2,127692,2,2,0,1,1,620.0,90.0,172.0,31,0.0,0.0,3.0,2.0,1.3,1,1,303.892930410291,350.0,8918.339233376417,0,6,2,3,55.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08970279993454858,6860.26094875109,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +27671,1,48.0,392.0,2,111,300.0,650.0,0.0,67,67,0.0,0.0,511.56016301161833,950.0,0.0,1234.027631160863,71,2,2,2,2,1,2,2,2,0,,1,,2,127693,1,3,3,0,2,,600.0,349.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,239.1185649081,300.0,14191.516933900819,4,4,2,3,67.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.06694139917704159,5458.275743808008,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +27672,2,60.0,0.0,5,221,270.0,0.0,0.0,0,75,0.0,0.0,460.40414671045653,270.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,127694,2,2,0,0,1,,0.0,260.0,11,0.0,0.0,2.0,1.0,1.0,1,1,3744.97969519156,270.0,26896.036881524575,0,5,2,3,50.0,1,3,2,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010038653694197914,26896.036881524575,7,4,7,7_0,7_1,7_0_0 +27673,2,77.0,0.0,2,111,120.0,,,0,77,0.0,0.0,,420.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,127695,2,2,0,0,2,,300.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,74.51915975352809,120.0,15000.830721003136,0,5,0,1,198.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027998449406668176,15000.830721003136,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +27674,2,41.0,0.0,8,221,0.0,0.0,0.0,0,63,0.0,0.0,0.0,2104.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,127696,2,1,1,0,1,,206.0,520.0,32,1.0,1.0,3.0,2.0,1.3,1,1,704.565635283995,0.0,26385.10381543194,0,1,2,3,70.0,1,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07974196405357431,20296.233704178416,5,3,5,5_1,5_1,5_0_0 +27675,2,80.0,0.0,2,221,600.0,2000.0,0.0,77,75,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,2,127697,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2328.11113305793,600.0,31767.975601711136,5,5,0,1,110.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0818434272487906,21178.650401140756,5,3,5,5_1,5_1,5_0_1 +27676,2,26.0,0.0,9,112,970.0,0.0,0.0,21,52,0.0,0.0,1654.0445270708994,970.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,127698,2,1,1,0,1,,200.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1578.84001695215,970.0,30751.7383276336,1,1,1,2,91.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03154293229428124,20501.158885089066,5,3,5,5_1,5_0,5_0_0 +27677,2,78.0,0.0,2,111,191.0,81.0,0.0,0,78,0.0,0.0,325.6933037840637,272.0,0.0,153.77882788312291,70,0,0,0,0,0,0,0,0,0,,2,,2,127699,2,2,0,1,1,,167.0,384.0,11,0.0,2.0,3.0,1.0,1.0,1,1,290.020862642418,191.0,16533.44006014424,0,5,2,3,56.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0164515067046263,16533.44006014424,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +27678,2,31.0,0.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1346.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,127700,2,1,0,0,1,,185.0,515.0,12,1.0,0.0,3.0,1.0,1.0,1,1,528.626359916792,0.0,25350.042851985036,0,1,2,3,90.0,6,4,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05309655718765783,25350.042851985036,7,4,7,7_0,7_2,7_1_0 +27679,0,45.0,0.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,75.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,1,1.0,8,,5,127701,2,1,0,1,1,,230.0,,32,1.0,0.0,6.0,3.0,2.0,3,1,467.714797147831,0.0,34543.46749573606,0,1,5,0,124.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002171177517406374,17271.73374786803,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +27680,1,44.0,336.0,7,111,256.0,,,48,85,0.0,0.0,,376.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,5,127702,1,3,0,0,2,,480.0,713.0,42,1.0,1.0,4.0,5.0,2.5999999999999996,3,2,76.24669465604333,256.0,5976.329166957075,4,7,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0629148745820246,2298.588141137337,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +27681,2,65.0,0.0,1,112,362.0,0.0,0.0,78,75,1568.3133994914265,39.72981831030672,617.2825967006861,1978.0,137.1733333142556,0.0,50,2,2,2,2,1,1,2,2,0,,1,,1,127703,1,1,2,0,1,,137.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1716.75409994162,362.0,23945.49554861015,6,5,0,1,108.0,8,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08260426250041869,15963.663699073433,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +27682,2,40.0,0.0,7,111,675.0,567.0,0.0,64,54,0.0,0.0,1151.0103667761414,1242.0,0.0,1076.4517951818605,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,127704,2,1,2,0,1,,345.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1537.72083829751,675.0,67045.83794546714,1,1,1,2,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01852463982939853,37247.687747481745,9,5,9,9_1,9_2,9_0_0 +27683,1,80.0,139.0,5,221,488.0,0.0,0.0,0,78,0.0,13.243272770102239,832.1378651655658,522.0,33.25414140951651,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127705,2,1,1,0,1,,222.0,318.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1785.33148615217,488.0,10652.965276782106,0,5,2,3,68.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04900044132666864,10652.965276782106,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +27684,2,46.0,0.0,2,111,564.0,180.0,0.0,85,47,0.0,0.0,961.7331064618425,744.0,0.0,341.730728629162,71,2,1,2,2,1,2,2,2,0,,2,,2,127706,1,2,0,1,1,,0.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1093.36562169425,564.0,38435.75523694833,7,1,1,2,73.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.019356976216894837,21353.197353860185,6,3,6,6_0,6_3,6_0_1 +27685,2,50.0,0.0,6,111,2172.0,0.0,0.0,35,37,0.0,0.0,3703.695580204117,2172.0,0.0,0.0,12,2,2,2,1,2,2,2,2,2,45.0,1,,4,127707,2,3,3,0,1,,400.0,1950.0,43,2.0,0.0,5.0,5.0,2.8,4,2,652.877252450009,2172.0,82754.0096608275,1,1,2,3,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.02624646236360121,29555.00345029554,8,4,8,8_1,8_4,8_0_0 +27686,1,65.0,83.0,2,111,720.0,0.0,0.0,0,78,0.0,0.0,1227.744391227884,750.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,127708,2,2,0,0,2,,200.0,242.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2152.25523543029,720.0,12179.132698390515,0,5,2,3,50.0,4,4,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.061580739661298976,12179.132698390515,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +27687,1,25.0,400.0,6,111,600.0,,,0,85,0.0,0.0,,880.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,,4,127709,2,2,0,0,2,,600.0,700.0,31,0.0,0.0,3.0,5.0,2.2,1,1,94.19148244191749,600.0,10520.555781545343,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08364577102890838,4782.0708097933375,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27688,2,53.0,0.0,6,112,1200.0,0.0,0.0,0,46,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,127710,2,2,2,0,1,,130.0,623.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1032.6152929973,1200.0,38997.52798972701,0,1,2,3,70.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030771181196821297,25998.35199315134,7,4,7,7_1,7_0,7_0_0 +27689,2,53.0,0.0,8,112,140.0,1500.0,0.0,0,85,0.0,0.0,238.72807607208856,1640.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,127711,2,2,2,0,1,,150.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,225.976384379933,140.0,8219.660388675125,0,6,0,1,100.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.19952162528023146,8219.660388675125,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +27690,2,42.0,0.0,9,111,1084.0,0.0,0.0,62,65,0.0,0.0,1848.4373890153142,1214.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,127712,2,1,1,0,1,,380.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,915.604119322417,1084.0,47155.323091494625,1,1,1,2,120.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02574470749875889,26197.401717497014,7,4,7,7_1,7_2,7_0_0 +27691,2,47.0,0.0,7,120,504.0,,,90,69,0.0,0.0,,630.0,174.58424239996165,,71,2,2,2,2,1,2,2,2,0,,1,,5,127713,2,1,0,0,2,,176.0,,43,2.0,1.0,3.0,3.0,2.0,3,2,104.4634562145839,504.0,12359.757655339621,4,4,0,1,65.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.0509718732007524,6179.878827669811,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27692,1,46.0,115.0,7,400,900.0,0.0,0.0,62,11,0.0,0.0,1534.680489034855,2398.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,127714,1,1,2,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1001.69617063176,900.0,19132.598641051452,1,1,1,2,94.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1253358231669995,7653.039456420581,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +27693,2,85.0,0.0,8,111,300.0,630.0,0.0,0,74,0.0,0.0,511.56016301161833,930.0,0.0,1196.057550202067,10,0,0,0,0,0,0,0,0,0,,2,2001.0,6,127715,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1352.55046670903,300.0,42843.11896314118,0,5,0,1,55.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.021707103089298848,42843.11896314118,9,5,9,9_0,9_3,9_0_0 +27694,1,75.0,180.0,6,111,540.0,,,0,78,0.0,0.0,,690.0,207.83838380947813,,70,0,0,0,0,0,0,0,0,0,,2,,4,127716,2,3,0,0,2,,224.0,325.0,11,0.0,3.0,2.0,1.0,1.0,1,1,72.13360081400575,540.0,26337.93101630634,0,5,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026197957598598283,26337.93101630634,7,4,7,7_0,7_2,7_0_0 +27695,2,29.0,0.0,1,111,550.0,800.0,0.0,46,46,0.0,0.0,937.8602988546337,1350.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,0,,2,,1,127717,1,3,0,0,1,,0.0,850.0,43,2.0,0.0,2.0,3.0,1.8,2,2,994.058112715998,550.0,53724.79180666246,1,1,2,3,42.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0251280638714841,29847.10655925692,8,4,8,8_0,8_4,8_1_0 +27696,1,28.0,218.0,2,111,600.0,0.0,0.0,0,55,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,2,127718,2,1,0,0,1,,0.0,410.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1002.50859989083,600.0,13568.66397965617,0,1,2,3,22.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.044219534133912865,13568.66397965617,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +27697,2,56.0,0.0,6,111,455.0,563.0,0.0,0,47,0.0,0.0,775.8662472342878,1018.0,0.0,1068.8577789901012,50,0,0,0,0,0,0,0,0,2,90.0,1,,4,127719,2,1,2,0,1,,414.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,658.761318072579,455.0,19960.816397261904,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050999918026381055,19960.816397261904,5,3,5,5_1,5_4,5_0_0 +27698,2,53.0,0.0,7,112,1101.0,868.0,0.0,47,54,0.0,0.0,1877.4257982526394,1969.0,0.0,1647.9015136117368,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,127720,2,1,3,0,1,,396.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,2001.87836169267,1101.0,71672.3132534434,4,1,0,1,96.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027472254077210243,35836.1566267217,9,5,9,9_1,9_0,9_0_0 +27699,2,28.0,0.0,6,111,350.0,130.0,0.0,0,64,0.0,0.0,596.8201901802214,480.0,0.0,246.80552623217258,71,1,2,2,2,1,2,2,2,0,,2,,4,127721,1,2,0,1,1,,0.0,284.0,12,1.0,1.0,3.0,1.0,1.0,1,1,412.615716142827,350.0,17846.62853792079,0,1,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.02689583631889287,17846.62853792079,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +27701,2,62.0,0.0,6,112,0.0,0.0,0.0,78,77,0.0,1059.4618216081792,0.0,1100.0,415.67676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,127723,2,2,3,0,1,,75.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,110.66169929645,0.0,25028.231047664718,6,5,0,1,100.0,8,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04395036940106226,16685.487365109813,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +27702,2,40.0,0.0,2,111,0.0,0.0,660.0,54,63,0.0,0.0,416.0100716737309,660.0,0.0,789.8432173926894,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,127724,2,1,0,1,1,588.0,0.0,476.0,43,2.0,1.0,3.0,2.0,1.5,2,2,418.118663654065,0.0,29089.133589851328,1,1,2,3,60.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022688884767274816,19392.755726567553,5,3,5,5_0,5_2,5_0_1 +27703,2,68.0,0.0,2,111,1500.0,0.0,0.0,0,78,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,127725,2,1,1,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1197.95977961848,1500.0,18665.618583342064,0,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08036165494877621,18665.618583342064,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +27704,2,70.0,0.0,2,120,548.0,1888.0,0.0,77,78,0.0,198.6490915515336,934.4498977678895,2586.0,0.0,3584.3756425103215,50,0,0,0,0,0,0,0,0,0,,1,,2,127726,2,1,1,0,1,,286.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,856.855598893201,548.0,28214.536513831,5,5,0,1,120.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09165488147332568,18809.691009220667,5,3,5,5_1,5_0,5_0_1 +27705,2,27.0,0.0,2,300,900.0,0.0,0.0,55,63,0.0,463.51454695357836,1534.680489034855,1282.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,127727,2,1,2,0,1,,85.0,460.0,43,2.0,0.0,3.0,2.0,1.5,2,2,799.527536623201,900.0,28669.745313447467,1,1,2,3,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044716127959416554,19113.163542298313,5,3,5,5_1,5_0,5_0_1 +27706,2,72.0,0.0,2,111,500.0,1000.0,0.0,0,77,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,2,127728,2,2,3,0,1,,260.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,571.015156895859,500.0,56600.39810582668,0,5,0,1,90.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026501580381032404,56600.39810582668,10,5,10,10_1,10_2,10_0_1 +27707,1,72.0,288.0,1,111,250.0,600.0,0.0,86,78,0.0,0.0,426.3001358430153,850.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,1,127729,2,2,0,0,1,,0.0,389.0,41,0.0,7.0,2.0,2.0,1.5,2,2,755.910166716827,250.0,11035.927719052133,6,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07702116411405835,7357.285146034756,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +27708,1,54.0,400.0,5,111,464.0,,,0,81,0.0,0.0,,648.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,2,,3,127730,2,2,0,0,2,,450.0,600.0,32,1.0,2.0,3.0,3.0,1.6,1,1,85.13349351124295,464.0,5110.0,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12681017612524462,3193.75,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27709,0,44.0,0.0,7,111,590.0,,,63,31,0.0,46.35145469535784,,740.0,159.34276092059991,,33,0,0,0,0,0,0,0,0,2,90.0,1,,5,127731,2,1,0,0,2,,560.0,,43,3.0,1.0,5.0,4.0,2.5,4,3,62.52154487420725,590.0,26216.845483639197,4,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028226126612440925,10486.73819345568,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +27710,2,51.0,0.0,1,111,590.0,970.0,0.0,45,38,0.0,0.0,1006.0683205895161,1560.0,0.0,1841.5489265015954,31,0,0,0,0,0,0,0,0,0,,1,,1,127732,1,1,2,0,2,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,333.598380027427,590.0,77080.25184681754,1,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02023864689882184,36704.881831817875,9,5,9,9_1,9_4,9_1_0 +27711,2,83.0,0.0,1,111,1800.0,1200.0,0.0,0,77,0.0,0.0,3069.36097806971,3000.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,1,127733,2,1,1,0,1,,250.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,396.5915710772,1800.0,28370.97387337441,0,5,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10574187595355829,28370.97387337441,8,4,8,8_1,8_2,8_1_0 +27712,2,51.0,0.0,7,112,1050.0,,,22,55,0.0,0.0,,1314.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,127734,1,2,0,0,2,,1080.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,89.4381397656874,1050.0,41878.62446022716,4,1,0,1,74.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03137638871706323,16751.449784090866,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27713,2,55.0,0.0,8,111,1281.0,0.0,0.0,52,33,0.0,0.0,2184.3618960596104,1281.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,127735,2,1,2,0,1,,409.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,2593.63843832354,1281.0,62314.892772777544,1,1,1,2,92.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020556883643705937,41543.26184851836,9,5,9,9_1,9_3,9_0_0 +27714,2,42.0,0.0,6,111,1750.0,0.0,0.0,34,38,0.0,0.0,2984.100950901107,1750.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,4,127736,2,1,2,0,1,,434.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2491.12765255756,1750.0,86184.75029545087,1,1,1,2,120.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020305216340487223,41040.35728354803,9,5,9,9_1,9_3,9_0_0 +27715,2,62.0,0.0,7,111,240.0,,,0,52,0.0,0.0,,309.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,3,30.0,2,,5,127737,2,1,0,0,2,,482.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,112.40796570653936,240.0,20422.82007014915,0,1,0,1,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015130133788508832,20422.82007014915,5,3,5,5_0,5_2,5_0_0 +27716,2,43.0,0.0,1,120,150.0,,,0,63,0.0,0.0,,213.0,87.29212119998083,,71,2,2,2,2,1,2,2,2,0,,1,,1,127738,1,3,0,0,2,,0.0,200.0,12,1.0,4.0,5.0,1.0,1.0,1,1,138.5569972160523,150.0,4788.08220747436,0,4,2,3,43.0,0,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04448545174673478,4788.08220747436,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +27717,1,56.0,270.0,7,111,0.0,0.0,913.0,0,54,0.0,0.0,575.4805991486611,913.0,0.0,1092.6164507265537,43,2,2,1,1,1,2,1,2,0,,2,,5,127739,1,2,0,0,1,,0.0,438.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1454.07782947174,0.0,7227.2765192612715,0,4,2,3,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.12632697774421414,7227.2765192612715,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +27718,0,30.0,0.0,9,211,0.0,,,81,53,0.0,0.0,,880.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,127740,2,1,0,0,2,,559.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,148.51818899862312,0.0,25055.984585459948,4,1,5,0,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03512134983155546,16703.989723639967,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27719,1,52.0,227.0,5,111,150.0,60.0,0.0,0,56,0.0,0.0,255.78008150580916,210.0,0.0,113.91024287638734,43,2,1,2,1,1,2,2,2,0,,2,,3,127741,1,2,0,1,2,578.0,0.0,256.0,12,1.0,0.0,2.0,1.0,1.0,1,1,434.12442207149,150.0,18105.125756733625,0,4,2,3,52.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.011598925233750293,18105.125756733625,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +27720,2,57.0,0.0,7,111,816.0,1236.0,0.0,0,47,0.0,0.0,1391.4436433916019,2052.0,0.0,2346.551003253579,71,0,0,0,0,0,0,0,0,3,90.0,1,,5,127742,2,1,3,0,1,,0.0,686.0,32,3.0,6.0,5.0,4.0,2.5,4,3,697.147338492299,816.0,40173.33283752,0,1,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051078659774115846,16069.333135008,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +27721,2,51.0,0.0,1,111,720.0,1157.0,0.0,52,38,0.0,0.0,1227.744391227884,1877.0,0.0,2196.5691834663357,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,127743,2,1,2,0,1,,500.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,261.667102149342,720.0,62507.685967940626,1,1,0,1,150.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030028307254290117,41671.79064529375,9,5,9,9_1,9_3,9_1_0 +27722,2,44.0,0.0,2,111,960.0,0.0,0.0,42,38,1423.821848899412,0.0,1636.9925216371787,3274.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,2,127744,2,2,1,0,1,,235.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,3,443.050529496302,960.0,148846.44238723948,1,1,1,2,125.0,6,4,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021995822993755867,57248.63168739981,10,5,10,10_1,10_2,10_0_1 +27723,1,47.0,110.0,8,111,510.0,,,52,63,0.0,0.0,,710.0,277.1178450793042,,71,2,2,1,2,2,2,2,1,0,,1,1999.0,6,127745,1,1,0,0,2,,350.0,,43,3.0,0.0,5.0,5.0,2.5999999999999996,3,3,119.66721366773747,510.0,14004.532923621478,4,1,1,2,126.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.05069787074458166,5386.358816777492,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27724,2,60.0,0.0,5,120,1000.0,0.0,0.0,72,45,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,127746,2,1,1,0,1,,346.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,433.90795112619,1000.0,4515.138812966342,6,1,0,1,40.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.221477133134479,3010.0925419775613,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +27725,1,65.0,237.0,2,111,360.0,1200.0,0.0,0,86,0.0,0.0,613.872195613942,1560.0,0.0,2278.2048575277468,71,2,2,2,2,2,2,2,1,0,,2,,2,127747,2,1,0,1,1,,0.0,226.0,11,0.0,4.0,2.0,1.0,1.0,1,1,376.408002482661,360.0,10509.907064803614,0,5,2,3,40.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.14843137911506832,10509.907064803614,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +27726,1,48.0,455.0,9,111,260.0,,,0,52,0.0,0.0,,348.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,0,,2,2006.0,6,127748,1,1,0,0,2,,320.0,455.0,32,3.0,2.0,5.0,5.0,2.5999999999999996,3,2,85.97158347941325,260.0,9676.708773721966,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03596264061857762,3721.811066816141,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +27727,2,78.0,0.0,8,111,250.0,1000.0,0.0,0,78,0.0,264.8654554020448,426.3001358430153,1450.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127749,2,1,3,0,1,,300.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,519.546257001363,250.0,22924.530401026666,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06325102301485147,22924.530401026666,6,3,6,6_1,6_4,6_0_0 +27728,2,82.0,0.0,1,221,1500.0,0.0,0.0,78,74,0.0,0.0,2557.8008150580918,1620.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,127750,2,1,2,0,1,,1000.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1761.23894453698,1500.0,23215.0210494766,5,5,0,1,83.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06978240495872925,15476.680699651066,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +27729,2,71.0,0.0,5,300,1040.0,0.0,0.0,71,78,369.1389978628105,0.0,1773.4085651069436,4327.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127751,2,2,1,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,982.109399965579,1040.0,27112.31313958068,5,5,0,1,113.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15959538301743448,18074.87542638712,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +27730,2,39.0,0.0,9,111,660.0,1560.0,0.0,38,37,0.0,0.0,1125.4323586255605,2220.0,0.0,2961.666314786071,12,0,0,0,0,0,0,0,0,3,75.0,1,2006.0,6,127752,2,1,1,0,1,,800.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,546.493735647513,660.0,89221.66112624633,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024881850124475465,37175.69213593597,9,5,9,9_1,9_4,9_0_0 +27731,2,71.0,0.0,2,111,1150.0,0.0,0.0,75,74,0.0,0.0,1960.9806248778702,1255.0,145.4868686666347,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,127753,2,2,1,0,1,,310.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1058.60427023024,1150.0,61123.967927982485,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020532044017146707,40749.311951988326,9,5,9,9_1,9_3,9_0_1 +27732,2,37.0,0.0,9,112,600.0,1500.0,0.0,43,48,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,127754,2,1,1,0,1,,250.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,862.805442425919,600.0,57758.331256496254,1,1,1,2,140.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03635839115008723,27503.967264998217,7,4,7,7_1,7_0,7_0_0 +27733,2,30.0,0.0,1,111,282.0,553.0,0.0,56,90,0.0,0.0,480.8665532309212,835.0,0.0,1049.8727385107034,20,0,0,0,0,0,0,0,0,0,,2,,1,127755,1,2,0,0,2,,0.0,261.0,43,3.0,1.0,3.0,5.0,3.0,5,5,990.690945550397,282.0,37760.452289895446,1,4,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.022113082586763477,12586.81742996515,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +27734,2,41.0,0.0,8,111,1200.0,,,46,46,0.0,0.0,,1500.0,415.67676761895626,,31,0,0,0,0,0,0,0,0,2,45.0,1,2001.0,6,127756,2,2,0,0,2,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,109.78185518906149,1200.0,68707.83102786013,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021831572581468475,32718.014775171487,8,4,8,8_1,8_3,8_0_0 +27735,2,46.0,0.0,1,111,426.0,0.0,0.0,63,54,1582.0242765549024,0.0,726.415431476498,1986.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,127757,2,2,5,0,1,,163.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,269.138561305434,426.0,34942.10607050759,1,1,1,2,110.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05683687170980963,23294.737380338393,6,3,6,6_1,6_3,6_1_0 +27736,1,44.0,258.0,6,111,698.0,0.0,0.0,68,68,0.0,0.0,1190.2299792736987,698.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,25.0,2,,4,127758,2,2,0,1,1,710.0,0.0,523.0,43,2.0,1.0,4.0,4.0,2.5,4,3,341.019311453887,698.0,26688.991686652484,4,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026153104927867283,10675.596674660994,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +27737,2,60.0,0.0,5,112,499.0,0.0,0.0,33,42,0.0,132.4327277010224,850.8950711426585,1844.0,1725.0585856186685,0.0,12,0,0,0,0,0,0,0,0,2,40.0,1,,3,127759,2,2,1,0,1,,192.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,796.187874330091,499.0,100971.33077279771,1,1,0,1,96.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01826260965252906,67314.22051519847,10,5,10,10_1,10_0,10_0_0 +27738,2,57.0,0.0,2,111,350.0,64.0,0.0,0,43,0.0,0.0,596.8201901802214,414.0,0.0,121.5042590681465,43,2,2,2,2,1,1,2,2,2,20.0,2,,2,127760,1,2,0,1,2,561.0,0.0,703.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1086.4713337157,350.0,37979.042914213125,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010900748629583457,37979.042914213125,9,5,9,9_0,9_4,9_0_1 +27739,1,50.0,200.0,6,111,360.0,,,0,52,0.0,0.0,,450.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,0,,2,,4,127761,1,2,0,0,2,,640.0,410.0,22,1.0,2.0,3.0,2.0,1.5,2,2,97.17301963069292,360.0,2475.301169786959,0,1,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.18179606000781312,1650.2007798579725,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27740,1,49.0,225.0,5,111,380.0,,,0,85,0.0,0.0,,512.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,127762,2,1,0,0,2,,250.0,325.0,21,2.0,2.0,3.0,3.0,2.0,3,3,120.04099491999614,380.0,10410.460590132683,0,7,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04918130140037103,5205.230295066342,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27741,1,54.0,580.0,2,111,600.0,300.0,0.0,52,63,0.0,0.0,1023.1203260232367,900.0,0.0,569.5512143819367,43,2,2,2,2,1,2,2,2,3,90.0,2,,2,127763,1,3,0,1,2,1620.0,0.0,551.0,43,2.0,4.0,5.0,6.0,3.3,5,3,229.253180608383,600.0,35481.758010608544,1,1,2,3,89.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.02536514678136615,10752.04788200259,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +27742,1,30.0,670.0,9,111,0.0,0.0,0.0,85,22,0.0,0.0,0.0,1360.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,6.0,1,2006.0,6,127764,2,1,1,0,1,,439.0,850.0,42,1.0,0.0,5.0,9.0,3.599999999999999,2,2,1562.63148378394,0.0,35404.162228012756,6,1,2,3,107.0,6,5,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.038413562542201046,9834.489507781323,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +27743,2,73.0,0.0,1,300,885.0,0.0,0.0,21,71,0.0,417.1630922582205,1509.1024808842742,1410.0,290.9737373332694,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,127765,1,2,1,0,1,,270.0,,42,1.0,5.0,6.0,2.0,1.5,2,2,1561.09493031055,885.0,20360.53726428382,1,5,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06925161068678688,13573.691509522547,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +27744,2,27.0,0.0,9,112,1100.0,0.0,0.0,90,43,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,2010.0,6,127766,2,1,1,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,922.666990881883,1100.0,42887.19679716574,1,1,1,2,100.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02564868030900763,23826.220442869857,6,3,6,6_1,6_0,6_0_0 +27745,2,30.0,0.0,9,221,1420.0,0.0,0.0,52,62,0.0,0.0,2421.3847715883267,1420.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,127767,2,1,1,0,1,,111.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,2296.98264153905,1420.0,36858.539440242326,1,1,1,2,168.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03852567197629207,24572.359626828216,7,4,7,7_1,7_1,7_0_0 +27746,2,70.0,0.0,6,111,1307.0,,,31,31,0.0,0.0,,1349.0,58.19474746665388,,10,0,0,0,0,0,0,0,0,0,,1,,4,127768,2,1,0,0,2,,209.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,146.82434142342328,1307.0,126072.72718998749,1,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01070017306730504,84048.484793325,10,5,10,10_1,10_2,10_0_0 +27747,2,56.0,0.0,6,111,520.0,590.0,0.0,21,54,0.0,463.51454695357836,886.7042825534718,1460.0,0.0,1120.1173882844755,42,0,0,0,0,0,0,0,0,2,60.0,1,,4,127769,2,1,1,0,1,,190.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2558.53380644298,520.0,30840.060321535006,1,1,0,1,115.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.047341022837770225,20560.04021435667,5,3,5,5_1,5_3,5_0_0 +27748,1,57.0,188.0,2,111,300.0,600.0,0.0,0,78,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,50,2,2,2,2,1,2,2,2,0,,2,,2,127770,1,3,0,0,1,,100.0,345.0,11,0.0,3.0,4.0,1.0,1.0,1,1,367.496935663675,300.0,9546.90081340565,0,7,2,3,70.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,1,1,0,1,0.09427143086437331,9546.90081340565,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27749,2,34.0,0.0,5,111,288.0,0.0,0.0,0,47,0.0,0.0,491.09775649115363,288.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,55.0,2,,3,127771,2,3,0,1,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1054.77691919853,288.0,57830.14080238617,0,1,1,2,82.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004980102002243726,57830.14080238617,10,5,10,10_0,10_3,10_0_0 +27750,2,43.0,0.0,9,211,1500.0,0.0,0.0,55,21,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2007.0,6,127772,2,1,1,0,1,,192.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1885.29472978643,1500.0,51629.0,1,1,1,2,110.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029053438958724746,34419.333333333336,9,5,9,9_1,9_1,9_0_0 +27751,2,67.0,0.0,2,111,360.0,2000.0,0.0,0,78,0.0,0.0,613.872195613942,2360.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,2,127773,1,1,2,0,2,,200.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,303.528126989773,360.0,31528.482351692815,0,5,0,1,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0748529527579144,21018.988234461878,5,3,5,5_1,5_2,5_0_1 +27752,1,36.0,548.0,1,111,430.0,2300.0,0.0,85,65,0.0,0.0,733.2362336499863,3130.0,554.2356901586083,4366.559310261515,50,2,2,2,2,1,2,2,2,1,20.0,1,,1,127774,1,3,4,0,2,,600.0,488.0,42,1.0,0.0,6.0,10.0,4.299999999999999,4,2,739.358267475705,430.0,31315.958796971492,6,1,2,3,80.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.09994903941126326,7282.781115574768,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +27753,2,31.0,0.0,2,111,60.0,110.0,0.0,55,43,0.0,0.0,102.31203260232367,170.0,0.0,208.8354452733768,42,2,2,2,2,2,2,1,2,0,,1,,2,127775,2,1,1,0,1,,900.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,296.887719811656,60.0,36715.659259529224,1,1,1,2,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.004630176971584079,17483.647266442487,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +27754,2,47.0,0.0,6,111,100.0,0.0,0.0,0,38,3164.0485531098047,927.0290939071567,170.52005433720612,3830.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,127776,2,1,3,0,2,,120.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1040.60880856676,100.0,29070.096260177605,0,1,0,1,160.0,6,5,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1317505097238574,29070.096260177605,8,4,8,8_1,8_2,8_0_0 +27755,1,39.0,451.0,1,111,0.0,0.0,950.0,85,85,0.0,0.0,598.8023758940067,950.0,0.0,1136.8955401864469,50,0,0,0,0,0,0,0,0,0,,2,,1,127777,1,3,0,0,1,,220.0,572.0,41,0.0,0.0,5.0,6.0,2.6999999999999997,2,2,3187.93851770017,0.0,33500.025194605725,6,7,2,3,102.0,4,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.028358187627661003,12407.416738742862,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +27756,2,35.0,0.0,1,111,600.0,1120.0,0.0,56,46,0.0,211.89236432163582,1023.1203260232367,1880.0,0.0,2126.324533692564,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,127778,2,1,2,0,1,,430.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1227.99653802084,600.0,48369.61428409987,1,1,1,2,95.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03886737630277106,23033.149659095176,6,3,6,6_1,6_3,6_1_0 +27757,1,42.0,20.0,5,111,0.0,0.0,680.0,0,54,0.0,0.0,428.6164374820258,680.0,0.0,813.777860343983,71,2,1,2,2,1,2,2,2,1,10.0,2,,3,127779,2,2,0,1,1,60.0,650.0,293.0,32,1.0,0.0,3.0,2.0,1.5,2,2,187.21643930799,0.0,18889.370322634473,0,1,2,3,62.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03599908246730595,12592.913548422983,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +27758,1,33.0,168.0,2,111,519.0,1306.0,0.0,85,55,0.0,0.0,884.9990820100998,1825.0,0.0,2479.4462866093645,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,127780,2,3,3,0,1,,499.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,570.300136853948,519.0,30917.489321957164,7,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05902807892954978,14722.613962836744,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +27759,1,35.0,400.0,1,111,640.0,865.0,0.0,85,21,0.0,331.081819252556,1091.3283477581192,1755.0,0.0,1642.2060014679175,71,0,0,0,0,0,0,0,0,0,,1,,1,127781,2,1,2,0,1,,390.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,371.090697367215,640.0,25199.30438572219,7,1,1,2,79.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06964477959932795,10499.71016071758,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +27760,2,84.0,0.0,1,212,360.0,0.0,0.0,0,71,548.4350825390328,529.7309108040896,613.872195613942,1355.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127782,2,2,3,0,1,,163.0,,11,0.0,6.0,2.0,1.0,1.0,1,1,1199.49881311619,360.0,10682.355885563464,0,5,0,1,65.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1268446786940695,10682.355885563464,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +27761,2,39.0,0.0,9,111,0.0,,,85,63,0.0,0.0,,1444.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,127783,2,1,0,0,2,,0.0,,42,1.0,2.0,2.0,5.0,2.4,2,2,133.71225121796186,0.0,19296.066666666666,6,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07483390397352138,8040.027777777777,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27762,2,42.0,0.0,9,112,2241.0,0.0,0.0,68,42,0.0,0.0,3821.354417696789,2241.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,127784,2,1,1,0,1,,379.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,224.547122676757,2241.0,51962.83264485153,1,1,1,2,140.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04312697914904833,24744.20602135787,7,4,7,7_1,7_0,7_0_0 +27763,2,54.0,0.0,6,111,1660.0,0.0,0.0,0,43,0.0,0.0,2830.6329019976215,1660.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,,4,127785,2,2,0,0,1,,0.0,,32,1.0,1.0,3.0,2.0,1.5,2,2,1339.69829796538,1660.0,36812.42608844051,0,1,1,2,120.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045093469145769165,24541.617392293672,7,4,7,7_0,7_3,7_0_0 +27764,2,86.0,0.0,1,112,400.0,0.0,0.0,86,78,2109.365702073203,993.245457757668,682.0802173488245,3250.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127786,2,3,4,0,1,,430.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,347.328591093665,400.0,22475.46125314852,5,5,0,1,80.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14460214913474653,14983.640835432348,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +27765,1,30.0,335.0,2,111,1141.0,0.0,0.0,53,63,0.0,0.0,1945.6338199875217,1321.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127787,1,1,0,0,1,,0.0,318.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1148.90710948292,1141.0,35761.338206900204,1,1,2,3,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0369393335438748,17029.208669952477,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +27766,2,33.0,0.0,9,300,2200.0,0.0,0.0,54,62,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,127788,2,1,1,0,1,,114.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1315.6639603373,2200.0,51054.419787796396,1,1,1,2,127.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04309127415695103,28363.566548775776,8,4,8,8_1,8_0,8_0_0 +27767,2,58.0,0.0,2,111,350.0,0.0,0.0,75,43,0.0,0.0,596.8201901802214,350.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,15.0,2,,2,127789,2,1,0,0,1,,0.0,,42,1.0,1.0,2.0,2.0,1.5,2,2,1656.29198673357,350.0,64003.27074093049,5,1,0,1,55.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005468470532025058,42668.84716062033,9,5,9,9_0,9_3,9_0_1 +27768,2,64.0,0.0,1,211,400.0,1500.0,0.0,0,74,0.0,0.0,682.0802173488245,1900.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,0,,1,,1,127790,2,1,1,0,2,,310.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1162.83893861125,400.0,30793.969102612587,0,5,1,2,150.0,2,3,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06170039314090246,30793.969102612587,8,4,8,8_1,8_1,8_1_0 +27769,2,38.0,0.0,9,112,1500.0,0.0,0.0,37,45,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,10,1,2,2,2,1,2,2,2,2,20.0,1,2005.0,6,127791,2,1,1,0,1,,184.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,714.119875888523,1500.0,73717.69785507198,1,1,1,2,110.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02034789533103679,35103.66564527237,9,5,9,9_1,9_0,9_0_0 +27770,2,48.0,0.0,8,112,455.0,1318.0,0.0,0,45,0.0,397.2981831030672,775.8662472342878,2073.0,0.0,2502.2283351846418,41,0,0,0,0,0,0,0,0,2,12.0,1,1999.0,6,127792,2,1,2,0,1,,340.0,,32,1.0,0.0,7.0,3.0,2.0,3,2,1773.68813226929,455.0,29267.01659136242,0,1,1,2,169.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07083058819913353,14633.50829568121,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +27771,2,55.0,0.0,1,111,408.0,600.0,0.0,0,52,0.0,0.0,695.7218216958009,1008.0,0.0,1139.1024287638734,30,0,0,0,0,0,0,0,0,2,25.0,2,,1,127793,2,3,0,0,1,,320.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,390.720930656128,408.0,21330.861055535624,0,1,1,2,65.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04725547634367115,21330.861055535624,6,3,6,6_0,6_3,6_1_0 +27772,2,36.0,0.0,9,112,570.0,350.0,0.0,52,62,0.0,0.0,971.9643097220749,920.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,127794,2,1,1,0,1,,700.0,527.0,43,2.0,0.0,4.0,3.0,1.8,2,2,796.138112057229,570.0,27976.757314280363,1,1,2,3,68.0,8,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03288444009665117,15542.642952377979,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +27773,2,46.0,0.0,7,112,1370.0,,,47,43,0.0,0.0,,1480.0,152.4148147936173,,33,0,0,0,0,0,0,0,0,2,5.0,1,,5,127795,2,1,0,0,1,,480.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,96.56897524902297,1370.0,102478.588476538,1,1,0,1,170.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014442041230289185,40991.4353906152,9,5,9,9_1,9_1,9_0_0 +27774,2,47.0,0.0,1,111,2885.0,120.0,0.0,0,22,0.0,0.0,4919.503567628397,3005.0,0.0,227.8204857527747,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,127796,2,2,0,0,1,,0.0,1230.0,32,1.0,0.0,3.0,2.0,1.5,2,1,1034.56944389934,2885.0,44633.50404544163,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0673261054507527,29755.669363627752,8,4,8,8_0,8_4,8_1_0 +27775,2,54.0,0.0,7,111,620.0,693.0,0.0,75,21,0.0,0.0,1057.224336890678,1313.0,0.0,1315.6633052222737,12,0,0,0,0,0,0,0,0,3,90.0,1,,5,127797,2,1,2,0,1,,140.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1459.1487413761,620.0,43825.993948963565,5,1,0,1,148.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02995938897652887,29217.329299309044,8,4,8,8_1,8_2,8_0_0 +27776,2,52.0,0.0,9,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,1116.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,127798,2,1,0,0,1,,243.0,750.0,12,1.0,2.0,3.0,1.0,1.0,1,1,2870.85841968572,0.0,26134.20176403923,0,1,2,3,63.0,8,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04270266259043047,26134.20176403923,7,4,7,7_0,7_3,7_0_0 +27777,2,67.0,0.0,7,120,592.0,,,0,77,0.0,29.135200094224928,,812.0,274.3466666285112,,60,0,0,0,0,0,0,0,0,0,,1,,5,127799,2,1,0,0,2,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,80.42358956548964,592.0,17088.828350891177,0,5,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047516423205085,17088.828350891177,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +27778,2,59.0,0.0,2,111,225.0,83.0,0.0,0,54,0.0,0.0,383.6701222587138,308.0,0.0,157.57583597900248,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,127800,2,1,0,1,1,1103.0,0.0,311.0,12,1.0,3.0,4.0,1.0,1.0,1,1,282.855462915766,225.0,26002.594168184987,0,1,2,3,60.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011844972005787328,26002.594168184987,7,4,7,7_0,7_2,7_0_1 +27779,2,72.0,0.0,1,111,360.0,930.0,0.0,0,74,0.0,0.0,613.872195613942,1290.0,0.0,1765.6087645840037,10,0,0,0,0,0,0,0,0,0,,1,,1,127801,2,1,2,0,1,,90.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,1664.35561484833,360.0,67061.73155473243,0,5,0,1,85.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019236007930203334,44707.82103648828,10,5,10,10_1,10_2,10_1_0 +27780,2,44.0,0.0,7,400,1800.0,,,0,45,0.0,0.0,,2160.0,498.81212114274757,,50,0,0,0,0,0,0,0,0,1,3.0,1,,5,127802,2,1,0,0,2,,800.0,,32,1.0,0.0,4.0,10.0,3.8999999999999995,2,2,5.5111023518125295,1800.0,59412.81245234842,0,1,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036355794496892586,15234.054474961136,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +27781,2,57.0,0.0,1,111,200.0,0.0,0.0,74,38,0.0,0.0,341.04010867441224,200.0,0.0,0.0,12,1,2,2,1,2,2,2,2,0,,1,,1,127803,1,1,1,0,1,,266.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1170.66184138391,200.0,61545.90675647028,6,1,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.003249606846989449,41030.60450431352,9,5,9,9_1,9_3,9_1_0 +27782,2,41.0,0.0,1,111,780.0,850.0,0.0,54,38,0.0,0.0,1330.0564238302077,1630.0,0.0,1613.7284407488207,12,0,0,0,0,0,0,0,0,2,40.0,1,,1,127804,1,1,2,0,1,,330.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,557.829042615483,780.0,53050.841886042246,1,1,1,2,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030725242843485493,29472.689936690134,8,4,8,8_1,8_4,8_1_0 +27783,2,45.0,0.0,5,111,2200.0,0.0,0.0,52,55,0.0,0.0,3751.441195418535,2290.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,3,127805,1,1,3,0,1,,500.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1232.68680149336,2200.0,51029.15197656708,1,1,1,2,100.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04487630915464915,19626.596914064266,5,3,5,5_1,5_2,5_0_0 +27784,2,79.0,0.0,2,221,410.0,1032.0,0.0,0,74,0.0,0.0,699.1322227825451,1442.0,0.0,1959.2561774738622,60,0,0,0,0,0,0,0,0,0,,1,,2,127806,2,1,1,0,1,,453.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1859.84374387711,410.0,53266.50854721028,0,5,0,1,90.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027071419534132796,53266.50854721028,10,5,10,10_1,10_1,10_0_1 +27785,1,33.0,375.0,2,111,400.0,80.0,0.0,0,52,1139.0574791195297,0.0,682.0802173488245,1560.0,0.0,151.8803238351831,50,2,2,2,1,1,1,1,2,3,20.0,2,,2,127807,2,3,0,1,1,973.0,0.0,329.0,32,1.0,0.0,4.0,4.0,1.9,1,1,300.995150460462,400.0,19627.48269493626,0,1,2,3,76.0,7,6,8,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.07948039105404321,10330.254049966454,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +27786,1,37.0,337.0,5,111,500.0,0.0,0.0,0,85,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,2,,3,127808,2,2,0,1,1,590.0,0.0,303.0,31,0.0,0.0,4.0,3.0,1.6,1,1,781.777517632371,500.0,13753.635987542053,0,7,2,3,79.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.03635402307090987,8596.022492213782,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27787,2,64.0,0.0,7,111,480.0,,,78,75,0.0,0.0,,618.0,191.2113131047199,,42,0,0,0,0,0,0,0,0,0,,1,,5,127809,1,1,0,0,2,,300.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,74.57516201010513,480.0,55291.024319676886,5,5,0,1,165.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011177221033687146,36860.68287978459,9,5,9,9_1,9_3,9_0_0 +27788,2,42.0,0.0,5,111,310.0,1120.0,0.0,22,34,0.0,0.0,528.612168445339,1430.0,0.0,2126.324533692564,10,0,0,0,0,0,0,0,0,2,25.0,1,,3,127810,2,1,1,0,1,,336.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,608.527497746567,310.0,32138.638442839234,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04449472875284847,15304.113544209158,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +27789,2,55.0,0.0,2,111,760.0,0.0,0.0,78,43,0.0,441.00098324440455,1295.9524129627664,1093.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,,2,127811,2,1,1,0,1,,155.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2035.21262935821,760.0,56953.12698825483,5,1,0,1,110.0,8,6,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019191220180507458,37968.75132550322,9,5,9,9_1,9_2,9_0_1 +27790,2,37.0,0.0,9,400,1500.0,,,85,85,0.0,0.0,,1770.0,374.10909085706066,,60,0,0,0,0,0,0,0,0,0,,1,2004.0,6,127812,2,1,0,0,2,,408.0,,41,1.0,0.0,6.0,7.0,3.3999999999999995,4,3,92.52560164417784,1500.0,26400.907049157307,7,7,0,1,109.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0670431510820571,7764.9726615168565,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +27791,2,91.0,0.0,1,111,300.0,650.0,0.0,0,74,0.0,0.0,511.56016301161833,950.0,0.0,1234.027631160863,20,0,0,0,0,0,0,0,0,0,,2,,1,127813,2,1,0,0,1,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,1031.06886143321,300.0,67247.64050239774,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014126889700555775,67247.64050239774,10,5,10,10_0,10_4,10_1_0 +27792,2,45.0,0.0,7,111,960.0,980.0,0.0,52,37,0.0,0.0,1636.9925216371787,1940.0,0.0,1860.5339669809932,10,0,0,0,0,0,0,0,0,2,10.0,2,,5,127814,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,947.591200454243,960.0,94804.65900451656,4,1,1,2,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0204631293479741,45145.075716436455,10,5,10,10_0,10_4,10_0_0 +27793,2,87.0,0.0,1,111,719.0,210.0,0.0,0,72,0.0,0.0,1226.039190684512,4464.0,0.0,398.6858500673557,44,0,0,0,0,0,0,0,0,0,,1,,1,127815,2,2,2,0,2,,147.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,255.819920434833,719.0,27514.539687986093,0,5,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16224149306590632,27514.539687986093,7,4,7,7_1,7_3,7_1_0 +27794,2,37.0,0.0,7,112,324.0,340.0,0.0,0,33,0.0,0.0,552.4849760525478,692.0,38.79649831110259,645.4913762995283,43,1,2,2,1,2,1,2,2,2,10.0,2,,5,127816,2,1,0,1,1,340.0,0.0,421.0,12,1.0,0.0,2.0,1.0,1.0,1,1,857.625435786481,324.0,22067.930206939858,0,1,2,3,47.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.031357721069028115,22067.930206939858,6,3,6,6_0,6_0,6_0_0 +27795,2,29.0,0.0,2,111,375.0,1066.0,0.0,38,34,0.0,0.0,639.4502037645229,1441.0,0.0,2023.805315103815,41,0,0,0,0,0,0,0,0,2,25.0,1,,2,127817,2,2,1,0,1,,233.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,239.348187503086,375.0,66118.88103406051,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021794077235785077,36732.71168558917,9,5,9,9_1,9_3,9_0_1 +27796,2,42.0,0.0,1,120,0.0,0.0,0.0,22,21,0.0,0.0,0.0,1304.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,127818,2,1,1,0,1,,580.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,121.288901830631,0.0,54468.844566921885,1,1,1,2,396.0,0,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023940291195233096,25937.545031867565,7,4,7,7_1,7_0,7_1_0 +27797,2,44.0,0.0,2,111,876.0,0.0,0.0,0,45,0.0,0.0,1493.7556759939255,876.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,5.0,2,,2,127819,2,2,0,0,1,,0.0,,32,1.0,0.0,2.0,2.0,1.5,2,1,1431.0944952796,876.0,28537.031340336664,0,1,0,1,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030696956160320265,19024.687560224444,5,3,5,5_0,5_4,5_0_1 +27798,2,66.0,0.0,6,111,450.0,1100.0,0.0,0,75,0.0,0.0,767.3402445174275,1550.0,0.0,2088.354452733768,71,0,0,0,0,0,0,0,0,0,,2,,4,127820,2,1,0,0,1,,290.0,485.0,11,0.0,3.0,4.0,1.0,1.0,1,1,2204.89641024452,450.0,21886.7775951539,0,5,2,3,92.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07081901359216973,21886.7775951539,6,3,6,6_0,6_2,6_0_0 +27799,2,75.0,0.0,9,111,400.0,,,86,86,0.0,0.0,,676.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,127821,1,1,0,0,2,,400.0,,41,1.0,5.0,6.0,3.0,2.0,3,3,107.17317806163273,400.0,20850.032032346826,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03242201253941725,10425.016016173413,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +27800,1,51.0,349.0,2,111,850.0,120.0,0.0,85,68,0.0,0.0,1449.420461866252,970.0,0.0,227.8204857527747,71,2,2,2,1,2,1,2,2,1,5.0,2,,2,127822,1,3,0,1,1,315.0,0.0,328.0,42,2.0,2.0,4.0,5.0,2.8,4,4,311.377203667975,850.0,23734.49739765587,7,1,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04086878199897343,8476.606213448526,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +27801,2,64.0,0.0,5,112,550.0,0.0,0.0,52,72,527.3414255183008,0.0,937.8602988546337,1314.0,365.79555550468154,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,127823,1,2,3,0,2,,200.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,906.005206793253,550.0,28203.75452231134,1,5,0,1,140.0,9,1,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04658954179169744,18802.503014874226,5,3,5,5_1,5_1,5_0_0 +27802,0,88.0,0.0,2,111,302.0,70.0,0.0,0,74,0.0,0.0,514.9705640983625,372.0,0.0,132.89528335578524,41,0,0,0,0,0,0,0,0,0,,2,,2,127824,1,1,0,1,2,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,986.218787459053,302.0,173235.7094837001,0,5,0,1,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002147363272322337,173235.7094837001,10,5,10,10_0,10_4,10_0_1 +27803,2,35.0,0.0,5,111,0.0,0.0,1430.0,43,43,0.0,0.0,901.3551552930837,1430.0,0.0,1711.3269710174936,33,0,0,0,0,0,0,0,0,2,10.0,1,,3,127825,2,2,3,0,1,,300.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,343.748267998478,0.0,53343.82219789847,1,1,1,2,95.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02680722792406758,35562.548131932315,9,5,9,9_1,9_2,9_0_0 +27804,2,56.0,0.0,5,111,2160.0,0.0,0.0,54,65,0.0,0.0,3683.2331736836522,2160.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,3,127826,2,1,2,0,1,,600.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,553.041405831341,2160.0,44908.89972878052,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04809737074488451,22454.44986439026,6,3,6,6_1,6_4,6_0_0 +27805,1,53.0,270.0,1,111,600.0,0.0,0.0,0,35,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,2,,1,127827,1,3,0,0,2,,209.0,360.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2630.96878172724,600.0,14280.861004614562,0,1,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,0,1,0,1,0.04201427349556323,14280.861004614562,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +27806,2,92.0,0.0,5,111,467.0,0.0,0.0,0,77,0.0,0.0,796.3286537547526,467.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,127828,1,1,0,0,1,1600.0,0.0,420.0,11,0.0,3.0,1.0,1.0,1.0,1,1,852.810166696502,467.0,37151.91652044449,0,5,2,3,36.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012570011017951459,37151.91652044449,9,5,9,9_0,9_3,9_0_0 +27807,1,45.0,119.0,2,111,520.0,989.0,0.0,85,47,0.0,211.89236432163582,886.7042825534718,1669.0,0.0,1877.6205034124514,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,127829,2,1,2,0,1,,213.0,,42,1.0,0.0,5.0,6.0,3.0999999999999996,5,3,282.880619731039,520.0,36887.9153937337,6,1,1,2,100.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.04524516992043198,11899.327546365712,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +27808,2,64.0,0.0,5,111,0.0,0.0,0.0,78,78,0.0,0.0,0.0,1034.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,127830,1,2,0,1,1,900.0,0.0,288.0,41,0.0,6.0,2.0,2.0,1.5,2,2,893.000952065436,0.0,25725.805014586844,5,5,2,3,30.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04019310569343542,17150.536676391228,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +27809,2,51.0,0.0,8,112,200.0,,,0,69,0.0,132.4327277010224,,350.0,69.27946126982604,,42,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,127831,2,2,0,0,2,,300.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,119.81717712883582,200.0,11565.547781788362,0,4,1,2,74.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030262293373697867,11565.547781788362,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +27810,0,32.0,0.0,8,211,0.0,,,0,64,0.0,0.0,,44.0,60.965925917446924,,43,0,0,0,0,0,0,0,0,0,,1,2002.0,6,127832,2,1,0,0,2,,152.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,128.14589405139722,0.0,26887.229613314314,0,4,5,0,86.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0016364646202973474,20682.484317934086,5,3,5,5_1,5_2,5_0_0 +27811,2,46.0,0.0,6,111,0.0,0.0,2000.0,85,38,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,31,0,0,0,0,0,0,0,0,0,,1,,4,127833,1,1,1,0,1,,1400.0,1740.0,42,2.0,0.0,6.0,6.0,2.8999999999999995,3,3,672.661928281774,0.0,81791.89352553814,6,1,2,3,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024452301001877817,28204.101215702813,8,4,8,8_1,8_4,8_0_0 +27812,2,63.0,0.0,2,112,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1345.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,127834,2,1,0,0,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2176.8505548223,0.0,26186.62368376821,0,5,0,1,82.0,9,3,9,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05136210059923452,26186.62368376821,7,4,7,7_0,7_1,7_0_1 +27813,2,44.0,0.0,2,112,960.0,204.0,0.0,0,62,0.0,0.0,1636.9925216371787,1164.0,0.0,387.294825779717,43,0,0,0,0,0,0,0,0,2,45.0,2,,2,127835,2,1,0,1,1,990.0,0.0,439.0,32,2.0,0.0,4.0,3.0,2.0,3,2,267.974704935035,960.0,41789.38927902073,0,1,2,3,70.0,10,5,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027853960540752763,20894.694639510366,5,3,5,5_0,5_2,5_0_1 +27814,2,35.0,0.0,1,111,450.0,1550.0,0.0,35,37,0.0,0.0,767.3402445174275,2000.0,0.0,2942.681274306673,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,127836,1,3,0,0,2,,0.0,1583.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1058.67795137026,450.0,133497.29566934594,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014981576892416752,74165.16426074774,10,5,10,10_0,10_4,10_1_0 +27815,2,54.0,0.0,5,111,490.0,0.0,0.0,0,33,0.0,0.0,835.54826625231,490.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,3,127837,2,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1874.33655008629,490.0,41843.805836537,0,1,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01171021588987835,41843.805836537,9,5,9,9_0,9_3,9_0_0 +27816,2,24.0,0.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,287.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,127838,2,1,0,1,1,448.0,0.0,236.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1202.52507352712,0.0,31848.694528995962,0,1,2,3,27.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00901135836945238,31848.694528995962,8,4,8,8_0,8_4,8_0_1 +27817,1,27.0,246.0,2,111,200.0,150.0,0.0,0,54,0.0,0.0,341.04010867441224,350.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,2,40.0,2,,2,127839,2,2,0,1,1,,0.0,450.0,32,1.0,0.0,3.0,2.0,1.3,1,1,777.332937086005,200.0,18585.199663624295,0,1,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018832189394501594,14296.30743355715,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +27818,1,51.0,254.0,7,111,480.0,,,0,68,0.0,0.0,,732.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,2,10.0,3,,5,127840,2,2,0,0,2,,220.0,380.0,32,1.0,1.0,4.0,2.0,1.5,2,2,96.12878885168276,480.0,13468.788919235096,0,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.054347870798881814,8979.192612823397,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +27819,2,47.0,0.0,7,111,2000.0,,,46,54,0.0,0.0,,2130.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,127841,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,106.3160893146194,2000.0,46659.27144938888,1,1,0,1,144.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04565009126450683,23329.63572469444,6,3,6,6_1,6_3,6_0_0 +27820,2,73.0,0.0,2,111,1500.0,,,0,74,0.0,0.0,,1696.0,271.5754881777181,,60,0,0,0,0,0,0,0,0,0,,1,,2,127842,2,2,0,0,1,,800.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,82.83694207483325,1500.0,35845.72157189701,0,5,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04731387528629529,35845.72157189701,9,5,9,9_1,9_2,9_0_1 +27821,2,63.0,0.0,6,111,740.0,0.0,0.0,0,75,0.0,158.91927324122688,1261.8484020953254,860.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,127843,2,1,2,0,1,,290.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1529.58456782507,740.0,20956.469764248257,0,5,0,1,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04103744617651014,20956.469764248257,5,3,5,5_1,5_3,5_0_0 +27822,2,41.0,0.0,1,111,860.0,1080.0,0.0,54,47,0.0,0.0,1466.4724672999725,1940.0,0.0,2050.384371774972,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,127844,2,1,3,0,1,,520.0,,43,3.0,1.0,6.0,4.0,2.3,3,3,624.682082799237,860.0,38079.246092238514,1,1,1,2,106.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.050946386787721086,16556.19395314718,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +27823,1,50.0,255.0,1,112,600.0,0.0,0.0,0,35,0.0,0.0,1023.1203260232367,1196.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,127845,2,3,0,0,1,,180.0,370.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1433.69388832039,600.0,8693.343662711564,0,1,2,3,65.0,9,3,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.13757652364877893,8693.343662711564,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +27824,2,61.0,0.0,5,111,20.0,0.0,0.0,0,75,0.0,0.0,34.104010867441225,20.0,0.0,0.0,60,2,1,2,1,1,2,2,2,0,,2,,3,127846,1,3,0,1,1,214.0,174.0,311.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1908.5615626445,20.0,25732.6046186252,0,5,2,3,35.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0007772240819152853,25732.6046186252,7,4,7,7_0,7_2,7_0_0 +27825,2,67.0,0.0,2,111,140.0,180.0,0.0,0,77,0.0,0.0,238.72807607208856,320.0,0.0,341.730728629162,70,2,1,2,2,1,1,2,2,0,,2,,2,127847,2,2,0,1,1,852.0,0.0,286.0,11,0.0,1.0,3.0,1.0,1.0,1,1,327.839182431314,140.0,15055.079425920085,0,5,2,3,53.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.021255284741245616,15055.079425920085,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +27826,2,56.0,0.0,6,111,1900.0,0.0,0.0,37,38,0.0,198.6490915515336,3239.8810324069163,2170.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,4,127848,2,1,2,0,1,,400.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,2708.92696225996,1900.0,142674.69256705284,1,1,0,1,220.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015209424747701242,95116.46171136857,10,5,10,10_1,10_3,10_0_0 +27827,2,45.0,0.0,9,112,0.0,0.0,900.0,0,64,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,50,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,127849,2,1,0,0,1,,150.0,565.0,12,1.0,1.0,3.0,1.0,1.0,1,1,2756.35816604404,0.0,19950.411578695177,0,1,2,3,58.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04511185127434163,19950.411578695177,5,3,5,5_0,5_1,5_0_0 +27828,1,36.0,181.0,6,111,300.0,180.0,0.0,0,45,0.0,0.0,511.56016301161833,480.0,0.0,341.730728629162,31,2,2,2,2,2,2,2,1,0,,2,,4,127850,1,3,0,1,1,840.0,0.0,454.0,22,1.0,1.0,4.0,3.0,2.0,3,3,309.342651904959,300.0,31187.04256140293,0,1,2,3,78.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.01539100730872275,15593.521280701465,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +27829,2,59.0,0.0,6,111,300.0,,,56,75,0.0,0.0,,600.0,415.67676761895626,,70,0,0,0,0,0,0,0,0,0,,1,,4,127851,2,2,0,0,2,,600.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,76.62605609568335,300.0,30206.702199167346,4,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019863141498992865,20137.801466111563,5,3,5,5_1,5_2,5_0_0 +27830,1,58.0,83.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,2,1,2,2,2,2,2,1,0,,2,,2,127852,2,2,0,1,1,1100.0,180.0,325.0,11,0.0,0.0,4.0,1.0,1.0,1,1,339.642033947603,300.0,11692.779816513761,0,7,2,3,80.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.025656858737415782,11692.779816513761,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +27831,2,81.0,0.0,7,111,540.0,1625.0,0.0,86,74,0.0,0.0,920.8082934209131,2165.0,0.0,3085.069077902157,20,0,0,0,0,0,0,0,0,0,,1,,5,127853,2,1,2,0,1,,355.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,487.923873836922,540.0,68800.1418997428,6,5,0,1,198.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03146795835326749,45866.761266495196,10,5,10,10_1,10_3,10_0_0 +27832,1,21.0,310.0,8,221,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,127854,2,2,0,0,1,,221.0,310.0,31,0.0,0.0,2.0,3.0,1.6,1,1,4043.36001072351,0.0,11435.0,0,6,2,3,45.0,1,2,7,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.10319195452557936,7146.875,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +27833,2,85.0,0.0,1,221,289.0,0.0,0.0,78,72,1827.7653808464304,0.0,492.80295703452566,2022.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,127855,2,2,2,0,1,,147.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,1713.43262967019,289.0,24770.32056785664,5,5,0,1,250.0,1,2,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08162994881155719,16513.54704523776,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +27834,1,41.0,300.0,1,111,300.0,0.0,0.0,85,68,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,127856,2,3,0,1,1,305.0,0.0,450.0,42,1.0,0.0,1.0,2.0,1.5,2,2,883.477839253476,300.0,6392.58037039185,6,1,2,3,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04692940606417604,4261.7202469279,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +27835,2,69.0,0.0,1,300,4000.0,136.0,0.0,75,74,1582.0242765549024,0.0,6820.802173488245,7231.0,0.0,258.1965505198113,10,0,0,0,0,0,0,0,0,0,,1,,1,127857,2,1,2,0,1,,385.0,,41,0.0,4.0,10.0,2.0,1.5,2,2,616.877309161363,4000.0,63977.8057679229,5,5,0,1,400.0,0,0,7,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11302356986468373,42651.870511948604,9,5,9,9_1,9_0,9_1_0 +27836,2,60.0,0.0,2,111,280.0,,,0,67,0.0,0.0,,412.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,127858,2,1,0,0,2,,600.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,114.68066024443374,280.0,6332.0,0,4,0,1,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06506632975363234,6332.0,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +27837,1,59.0,140.0,6,111,640.0,,,21,56,0.0,0.0,,905.0,367.1811447300781,,71,0,0,0,0,0,0,0,0,0,,1,,4,127859,2,2,0,0,2,,461.0,240.0,43,3.0,2.0,3.0,3.0,2.0,3,3,103.10511374946314,640.0,32924.0,4,4,2,3,58.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027487547078119304,16462.0,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +27838,2,40.0,0.0,9,211,1783.0,0.0,0.0,43,45,0.0,0.0,3040.3725688323852,1813.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2004.0,6,127860,2,1,1,0,1,,534.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,564.480007582477,1783.0,47369.710821968,1,1,1,2,146.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0382734023184961,22557.005153318096,6,3,6,6_1,6_1,6_0_0 +27839,1,63.0,115.0,2,111,432.0,1080.0,0.0,0,86,0.0,0.0,736.6466347367304,1512.0,0.0,2050.384371774972,71,2,1,2,1,1,2,2,2,0,,2,,2,127861,1,2,0,1,1,1450.0,0.0,393.0,11,0.0,4.0,4.0,1.0,1.0,1,1,201.130024797645,432.0,9392.14209472983,0,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.16098563935147678,9392.14209472983,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +27840,2,33.0,0.0,2,111,1300.0,0.0,0.0,67,54,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,15.0,2,,2,127862,2,1,0,0,1,,280.0,670.0,43,2.0,0.0,2.0,2.0,1.5,2,2,183.552539583742,1300.0,34995.608515931,1,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.037147518078109794,23330.405677287334,6,3,6,6_0,6_4,6_0_1 +27841,2,61.0,0.0,2,111,600.0,240.0,0.0,77,74,2636.7071275915036,0.0,1023.1203260232367,3340.0,0.0,455.6409715055494,12,0,0,0,0,0,0,0,0,0,,1,,2,127863,2,1,2,0,2,,320.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,296.666587402625,600.0,43178.993187158936,6,5,1,2,145.0,9,7,9,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07735242888880715,28785.995458105957,8,4,8,8_1,8_3,8_0_1 +27842,2,37.0,0.0,9,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,839.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,2007.0,6,127864,2,1,0,0,1,,0.0,782.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1218.98468388564,0.0,44544.835029786445,0,1,2,3,44.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018834955824597256,44544.835029786445,10,5,10,10_0,10_4,10_0_0 +27843,2,40.0,0.0,9,111,2000.0,0.0,0.0,37,31,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,127865,2,1,1,0,1,,380.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,217.166198110279,2000.0,43082.20616103854,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04642287798642733,17950.91923376606,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +27844,1,48.0,274.0,5,111,1300.0,0.0,0.0,85,52,0.0,0.0,2216.7607063836795,1510.0,290.9737373332694,0.0,71,2,2,2,1,1,2,2,2,2,10.0,1,,3,127866,1,3,3,0,1,,500.0,588.0,42,2.0,1.0,4.0,4.0,2.3,3,3,786.029683607046,1300.0,26478.673809677814,7,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.05702702525260548,11512.466873772963,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +27845,2,53.0,0.0,5,212,1200.0,0.0,0.0,56,62,0.0,172.1625460113291,2046.2406520464733,1360.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,127867,2,2,2,0,1,,260.0,510.0,43,2.0,3.0,5.0,2.0,1.5,2,2,780.562121229738,1200.0,43750.56568093653,1,1,2,3,120.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03108531235728899,29167.043787291022,8,4,8,8_1,8_0,8_0_0 +27846,2,71.0,0.0,2,111,150.0,100.0,0.0,77,74,0.0,0.0,255.78008150580916,250.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,0,,2,,2,127868,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,948.438490642046,150.0,50037.36924808173,5,5,0,1,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004996265866027402,33358.24616538782,8,4,8,8_0,8_4,8_0_1 +27847,2,44.0,0.0,2,111,700.0,,,0,68,0.0,0.0,,980.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,127869,2,3,0,0,1,,600.0,70.0,32,1.0,0.0,4.0,3.0,2.0,3,2,70.14277981119565,700.0,38823.69591670746,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025242315984096327,19411.84795835373,5,3,5,5_0,5_2,5_0_1 +27848,2,68.0,0.0,5,111,447.0,471.0,0.0,77,64,0.0,0.0,762.2246428873113,918.0,0.0,894.1954065796406,70,0,0,0,0,0,0,0,0,2,25.0,1,,3,127870,1,1,3,0,1,,283.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,392.939826409162,447.0,51537.653816367696,5,5,0,1,104.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01781221945552467,34358.435877578464,9,5,9,9_1,9_3,9_0_0 +27849,2,51.0,0.0,9,111,180.0,,,0,67,0.0,0.0,,230.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,1,5.0,1,2005.0,6,127871,1,1,0,0,2,,150.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,141.49669188095834,180.0,6344.803784768226,0,4,2,3,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03625013598563188,6344.803784768226,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27850,1,41.0,112.0,2,111,370.0,510.0,0.0,0,42,0.0,0.0,630.9242010476627,880.0,0.0,968.2370644492923,60,0,0,0,0,0,0,0,0,0,,2,,2,127872,1,1,0,1,1,,0.0,385.0,32,1.0,0.0,4.0,2.0,1.5,2,2,645.266029254513,370.0,19810.69326113712,0,1,2,3,93.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.044420454569669546,13207.12884075808,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +27851,2,48.0,0.0,2,111,650.0,0.0,0.0,42,52,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,50,1,2,2,2,1,2,2,2,3,90.0,2,,2,127873,2,2,0,1,1,780.0,0.0,375.0,43,2.0,2.0,3.0,3.0,1.8,2,2,204.91591177604,650.0,38979.85413921546,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016675280458427144,21655.474521786364,6,3,6,6_0,6_4,6_0_1 +27852,2,60.0,0.0,2,111,300.0,90.0,0.0,0,53,0.0,0.0,511.56016301161833,390.0,0.0,170.865364314581,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,127874,2,2,0,1,1,600.0,0.0,299.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1048.28032532785,300.0,15012.0,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02597921662669864,15012.0,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +27853,2,54.0,0.0,9,111,410.0,707.0,0.0,54,55,0.0,0.0,699.1322227825451,1117.0,0.0,1342.2423618934308,50,0,0,0,0,0,0,0,0,3,40.0,1,2009.0,6,127875,2,1,1,0,1,,231.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,942.666206214691,410.0,37332.487747588064,1,1,1,2,79.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02992032054097884,16231.516411994811,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +27854,1,43.0,364.0,5,111,480.0,160.0,0.0,0,56,0.0,0.0,818.4962608185893,640.0,0.0,303.7606476703662,71,0,0,0,0,0,0,0,0,0,,2,,3,127876,1,2,0,1,1,640.0,0.0,317.0,32,1.0,0.0,3.0,4.0,1.9,1,1,367.374481582182,480.0,11296.119933820939,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05665662225166536,5945.326280958389,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +27855,1,66.0,434.0,2,111,500.0,0.0,0.0,85,75,0.0,0.0,852.6002716860306,680.0,249.40606057137379,0.0,20,2,2,2,2,1,2,2,2,0,,2,,2,127877,2,1,0,0,1,960.0,0.0,582.0,41,0.0,0.0,5.0,4.0,2.1,2,2,1636.86665528704,500.0,16476.32992068457,6,5,2,3,86.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.04127132700507049,7845.8713908021755,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +27856,2,67.0,0.0,6,112,1710.0,0.0,0.0,0,75,0.0,0.0,2915.892929166225,1710.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,1,,4,127878,1,2,3,0,1,,165.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,2000.19999598357,1710.0,25933.839745444526,0,5,0,1,100.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.06593701575951068,25933.839745444526,7,4,7,7_1,7_1,7_0_0 +27857,2,53.0,0.0,6,111,586.0,782.0,0.0,52,53,0.0,0.0,999.2475184160279,1368.0,0.0,1484.630165488915,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,127879,1,2,1,0,1,,333.0,707.0,43,3.0,4.0,4.0,3.0,2.0,3,3,283.263082227341,586.0,25287.98026141393,1,1,2,3,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054096847033979406,12643.990130706965,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +27858,2,54.0,0.0,5,111,360.0,1100.0,0.0,0,55,0.0,0.0,613.872195613942,1460.0,0.0,2088.354452733768,50,2,2,2,2,2,2,2,1,3,1.0,2,,3,127880,1,3,0,1,1,1200.0,0.0,415.0,12,1.0,1.0,4.0,1.0,1.0,1,1,289.928475290058,360.0,15146.102137912309,0,1,2,3,83.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.09639443777059079,15146.102137912309,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +27859,1,34.0,281.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,1713.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,127881,2,1,0,0,1,,0.0,433.0,31,0.0,0.0,4.0,4.0,1.9,1,1,863.395605263629,0.0,31830.612206056503,0,7,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05381611854999328,16752.95379266132,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +27860,2,83.0,0.0,1,120,250.0,0.0,0.0,0,72,3164.0485531098047,0.0,426.3001358430153,3400.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,127882,2,1,2,0,1,,140.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1076.03620161382,250.0,17781.96839457924,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.19120492875448347,17781.96839457924,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +27861,2,42.0,0.0,2,112,230.0,0.0,0.0,0,11,1898.4291318658827,0.0,392.1961249755741,2060.0,41.567676761895626,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,127883,2,2,2,0,2,,140.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,849.628472973266,230.0,58745.02320751741,0,1,1,2,89.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03506680034363129,58745.02320751741,10,5,10,10_1,10_0,10_0_1 +27862,1,22.0,134.0,5,111,320.0,770.0,0.0,0,55,0.0,0.0,545.6641738790596,1090.0,0.0,1461.8481169136376,50,2,2,2,2,1,2,2,2,0,,2,,3,127884,1,1,0,0,1,,0.0,264.0,12,1.0,0.0,2.0,1.0,1.0,1,1,359.47136154502,320.0,12526.987285883084,0,4,2,3,70.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.08701214227528938,12526.987285883084,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +27863,0,70.0,0.0,5,111,645.0,0.0,0.0,0,78,0.0,648.9203657350097,1099.8543504749794,1195.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,127885,2,1,2,0,1,,120.0,,11,0.0,5.0,7.0,1.0,1.0,1,1,1643.89987616758,645.0,19218.810800416148,0,5,0,1,107.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06217866508026212,19218.810800416148,5,3,5,5_1,5_3,5_0_0 +27864,2,76.0,0.0,1,111,0.0,0.0,0.0,72,75,0.0,0.0,0.0,1502.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,127886,2,1,0,0,2,,0.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,960.162577144024,0.0,37487.89620451183,5,5,0,1,108.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04006626543687527,24991.930803007886,7,4,7,7_0,7_4,7_1_0 +27865,2,75.0,0.0,7,111,1503.0,0.0,0.0,75,75,0.0,0.0,2562.916416688208,1503.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,127887,2,1,2,0,1,,312.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1103.14873196055,1503.0,68268.75896726934,5,5,0,1,110.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022015926797799207,45512.505978179564,10,5,10,10_1,10_2,10_0_0 +27866,2,58.0,0.0,5,112,1230.0,1600.0,0.0,46,34,0.0,397.2981831030672,2097.396668347635,3130.0,0.0,3037.6064767036623,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,127888,2,1,2,0,1,,560.0,,43,2.0,0.0,8.0,5.0,3.0,5,4,717.238511695155,1230.0,86548.50983921338,1,1,0,1,160.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036164689673049234,28849.503279737793,8,4,8,8_1,8_1,8_0_0 +27867,2,36.0,0.0,6,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,539.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,25.0,1,,4,127889,2,2,2,0,1,,0.0,296.0,12,1.0,0.0,2.0,1.0,1.0,1,1,499.98003202001,0.0,17356.88559938318,0,1,2,3,57.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031053958206601003,17356.88559938318,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +27869,2,92.0,0.0,1,400,1080.0,0.0,0.0,0,75,1349.99404932685,0.0,1841.6165868418261,2400.0,55.423569015860835,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,127891,1,1,2,0,2,,120.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,1014.93963094735,1080.0,41115.87136591347,0,5,0,1,50.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05837161952962248,41115.87136591347,9,5,9,9_1,9_0,9_1_0 +27870,2,23.0,0.0,5,111,1400.0,0.0,0.0,63,52,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,42,2,2,2,1,1,2,2,2,2,10.0,2,,3,127892,1,1,0,0,2,,500.0,390.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1702.36930737782,1400.0,37371.0,1,1,2,3,80.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03746220331272912,24914.0,7,4,7,7_0,7_3,7_0_0 +27871,2,64.0,0.0,5,111,200.0,71.0,0.0,55,74,0.0,0.0,341.04010867441224,271.0,0.0,134.79378740372502,31,0,0,0,0,0,0,0,0,0,,2,,3,127893,2,2,0,1,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1512.69113219576,200.0,52838.87306209288,1,5,0,1,80.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005128799769850088,35225.91537472859,9,5,9,9_0,9_2,9_0_0 +27872,2,41.0,0.0,1,112,980.0,0.0,0.0,67,48,1054.6828510366015,397.2981831030672,1671.09653250462,2280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127894,2,1,4,0,1,,300.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,993.591020117539,980.0,46314.59345670536,1,4,1,2,100.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049228543960584084,20136.779763784943,5,3,5,5_1,5_0,5_1_0 +27873,2,59.0,0.0,9,111,0.0,0.0,0.0,86,37,0.0,0.0,0.0,2639.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,127895,2,1,1,0,1,,215.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,1488.51890822213,0.0,162407.4060052108,6,1,1,2,145.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016249258977237335,108271.60400347387,10,5,10,10_1,10_2,10_0_0 +27874,0,58.0,0.0,1,112,800.0,0.0,0.0,67,67,0.0,331.081819252556,1364.160434697649,1200.0,207.83838380947813,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,127896,1,3,4,0,2,,400.0,,43,3.0,3.0,4.0,3.0,2.0,3,3,1247.14343833792,800.0,12214.222222222223,4,4,5,0,100.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,1,0,0.09824612473619096,6107.111111111111,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +27875,2,71.0,0.0,2,120,1000.0,0.0,0.0,78,75,0.0,662.163638505112,1705.2005433720612,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,127897,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,637.539526603937,1000.0,24486.013100346412,5,5,0,1,87.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061259462447105326,16324.008733564275,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +27876,1,34.0,215.0,8,111,1092.0,0.0,0.0,52,56,0.0,0.0,1862.0789933622907,1092.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2001.0,6,127898,2,2,0,0,1,,0.0,726.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1910.37452873034,1092.0,18967.03874009375,1,4,3,4,47.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05757356300916178,12644.692493395834,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +27877,1,38.0,171.0,9,300,1200.0,0.0,0.0,69,64,0.0,0.0,2046.2406520464733,1300.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,127899,2,1,1,0,1,,190.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,994.990985306914,1200.0,44165.27886104143,1,1,1,2,88.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.029434887167592214,18402.19952543393,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +27878,2,80.0,0.0,2,111,792.0,1720.0,0.0,74,74,0.0,0.0,1350.5188303506725,2512.0,0.0,3265.426962456437,10,0,0,0,0,0,0,0,0,0,,1,,2,127900,2,1,3,0,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,150.218448114537,792.0,112733.24088760102,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022282691247247577,75155.49392506735,10,5,10,10_1,10_4,10_0_1 +27880,2,62.0,0.0,6,111,1200.0,0.0,0.0,86,75,0.0,0.0,2046.2406520464733,1410.0,290.9737373332694,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,127902,2,2,3,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,346.329196194728,1200.0,31234.66054151414,6,5,0,1,89.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0451421586005701,20823.10702767609,5,3,5,5_1,5_3,5_0_0 +27881,2,45.0,0.0,5,111,259.0,259.0,0.0,54,64,0.0,0.0,441.64694073336386,518.0,0.0,491.71254841640535,50,0,0,0,0,0,0,0,0,3,30.0,2,,3,127903,2,2,0,1,1,,0.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,466.143889318432,259.0,57889.03836821717,1,1,1,2,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008948153477781688,25169.14711661616,7,4,7,7_0,7_4,7_0_0 +27882,2,66.0,0.0,8,211,549.0,588.0,0.0,0,77,0.0,463.51454695357836,936.1550983112616,1487.0,0.0,1116.320380188596,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,127904,2,1,1,0,1,,190.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1061.40282452484,549.0,16876.614460222114,0,5,0,1,116.0,1,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08811008887504262,16876.614460222114,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +27883,2,33.0,0.0,2,111,450.0,0.0,0.0,55,90,0.0,0.0,767.3402445174275,450.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,127905,2,2,0,1,1,458.0,0.0,287.0,43,2.0,0.0,2.0,2.0,1.5,2,2,251.780712948492,450.0,13604.494914897148,1,1,2,3,60.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03307730296603974,9069.6632765981,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +27884,1,33.0,219.0,1,111,1272.0,0.0,0.0,0,47,0.0,0.0,2169.0150911692617,1272.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,127906,2,1,0,1,1,,0.0,611.0,22,1.0,1.0,3.0,3.0,2.0,3,3,648.966684167765,1272.0,19036.334940986424,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.066819584964399,9518.167470493212,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +27885,2,31.0,0.0,2,111,0.0,0.0,0.0,85,55,0.0,0.0,0.0,869.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,5.0,2,,2,127907,1,1,0,1,1,,0.0,635.0,42,1.0,0.0,4.0,5.0,2.4,2,2,170.491881849732,0.0,26288.931513082538,6,1,2,3,76.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03305573676767909,10953.721463784392,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +27886,2,26.0,0.0,1,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1823.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,127908,2,1,0,0,1,,0.0,550.0,43,2.0,0.0,4.0,2.0,1.5,2,2,2203.26993869124,0.0,51607.16050983034,1,1,2,3,84.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03532455539096648,34404.773673220225,9,5,9,9_0,9_3,9_1_0 +27887,2,29.0,0.0,2,112,384.0,0.0,0.0,52,62,2109.365702073203,0.0,654.7970086548714,2414.0,41.567676761895626,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,127909,2,1,1,0,1,,185.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,764.332793970108,384.0,42583.149246150424,1,1,1,2,107.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05668909046735732,28388.76616410028,8,4,8,8_1,8_0,8_0_1 +27888,2,43.0,0.0,1,111,816.0,0.0,0.0,85,68,0.0,0.0,1391.4436433916019,1176.0,498.81212114274757,0.0,41,2,2,2,1,2,2,2,2,0,,2,,1,127910,1,1,0,0,1,,0.0,555.0,42,1.0,0.0,2.0,7.0,3.3999999999999995,3,3,421.546752594052,816.0,35417.924472550025,6,4,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.033203526675071995,10417.036609573539,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +27889,2,44.0,0.0,1,300,510.0,0.0,0.0,56,11,0.0,0.0,869.6522771197511,1510.0,1385.589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,127911,2,1,1,0,1,,300.0,,43,2.0,1.0,9.0,6.0,3.3,6,3,1036.26255279222,510.0,33509.872470782706,1,1,1,2,200.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045061347258679385,10154.506809328093,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +27890,2,73.0,0.0,2,300,456.0,0.0,0.0,78,90,1582.0242765549024,198.6490915515336,777.5714477776598,2256.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,127912,2,2,2,0,2,,112.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,838.676531108873,456.0,36924.37146243144,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061097857882167574,24616.247641620957,7,4,7,7_1,7_0,7_0_1 +27891,1,61.0,40.0,7,111,210.0,490.0,0.0,0,77,0.0,0.0,358.0921141081328,700.0,0.0,930.2669834904966,71,0,0,0,0,0,0,0,0,0,,2,,5,127913,2,2,0,0,1,,0.0,409.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1643.85382989727,210.0,13400.279742765273,0,5,2,3,65.0,4,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05223771543858445,13400.279742765273,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +27892,1,44.0,57.0,8,112,678.0,0.0,0.0,0,54,949.2145659329414,0.0,1156.1259684062575,1653.0,103.91919190473907,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,127914,2,1,2,0,1,,272.0,,32,1.0,0.0,6.0,3.0,1.8,2,1,1919.29465142812,678.0,23462.547952582245,0,1,1,2,150.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07045270630200562,13034.748862545692,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +27893,2,44.0,0.0,8,111,480.0,,,0,64,0.0,0.0,,560.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,127915,2,1,0,0,2,,90.0,,22,1.0,4.0,3.0,2.0,1.5,2,2,128.12156640863913,480.0,27430.110411002992,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020415521177609558,18286.740274001993,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27894,0,66.0,0.0,2,111,124.0,,,0,22,0.0,0.0,,147.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,0,,1,,2,127916,2,2,0,0,2,,120.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,80.83496927018956,124.0,15401.386536386664,0,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009544595199445454,15401.386536386664,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +27895,2,23.0,0.0,1,120,661.0,0.0,0.0,0,67,0.0,0.0,1127.1375591689325,691.0,41.567676761895626,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,127917,1,2,5,0,1,,0.0,230.0,12,1.0,0.0,2.0,1.0,1.0,1,1,614.294031820285,661.0,19391.349534914414,0,1,3,4,30.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03563444610989267,19391.349534914414,5,3,5,5_1,5_0,5_1_0 +27896,2,42.0,0.0,1,111,0.0,0.0,2500.0,54,38,0.0,0.0,1575.7957260368596,2500.0,0.0,2991.830368911702,41,0,0,0,0,0,0,0,0,0,,2,,1,127918,1,3,0,0,1,,0.0,1473.0,43,2.0,0.0,4.0,4.0,2.1,2,2,911.776112374632,0.0,57975.07540626821,1,4,2,3,84.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04312197927266003,27607.178764889624,7,4,7,7_0,7_4,7_1_0 +27897,2,68.0,0.0,1,400,479.0,0.0,0.0,0,38,0.0,907.1641847520034,816.7910602752173,1164.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,1,127919,2,3,3,0,2,,207.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1821.80421675624,479.0,9809.681391378355,0,5,0,1,134.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11865828802788943,9809.681391378355,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +27898,1,71.0,278.0,7,111,300.0,,,77,78,0.0,0.0,,540.0,332.541414095165,,71,2,2,2,2,1,2,2,2,0,,2,,5,127920,2,2,0,0,2,,540.0,378.0,41,0.0,7.0,2.0,2.0,1.5,2,2,99.6035359234767,300.0,10149.733050847457,7,5,2,3,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.05320336971373966,6766.488700564972,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27899,2,47.0,0.0,7,111,629.0,1096.0,0.0,85,46,0.0,0.0,1072.5711417810264,1725.0,0.0,2080.760436542009,71,0,0,0,0,0,0,0,0,2,45.0,1,,5,127921,2,1,1,0,1,,663.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,809.435727860214,629.0,57678.90872799599,6,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029906945849735283,27466.147013331425,7,4,7,7_1,7_4,7_0_0 +27900,2,43.0,0.0,8,112,0.0,700.0,0.0,46,68,0.0,0.0,0.0,3583.0,0.0,1328.9528335578523,41,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,127922,2,1,1,0,1,,274.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,429.897321335994,0.0,27301.518324117977,1,1,1,2,90.0,9,1,3,0,1,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13123812227083365,18201.012216078652,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +27901,1,27.0,57.0,9,120,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1911.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,127923,2,1,1,0,1,,379.0,600.0,43,2.0,1.0,4.0,3.0,1.8,2,2,684.528634012527,0.0,31108.064048250224,4,1,2,3,90.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06143101663401296,17282.257804583456,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +27902,1,47.0,60.0,2,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,637.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127924,2,1,0,1,1,,0.0,170.0,12,1.0,0.0,1.0,1.0,1.0,1,1,481.805756770769,0.0,9175.049958677871,0,4,2,3,30.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06942741487718199,9175.049958677871,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +27903,2,59.0,0.0,5,211,480.0,,,0,56,0.0,0.0,,756.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,127925,2,1,0,0,2,,872.0,,22,3.0,5.0,4.0,4.0,2.5,4,4,93.86813475563595,480.0,42896.83995150165,0,1,0,1,48.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017623675796509003,17158.73598060066,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27904,2,82.0,0.0,2,111,360.0,2000.0,0.0,77,75,0.0,0.0,613.872195613942,2360.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,2,,2,127926,1,3,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1163.59355032768,360.0,36064.14206250104,5,5,0,1,65.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06543896139023622,24042.761375000697,6,3,6,6_0,6_3,6_0_1 +27905,2,26.0,0.0,1,112,600.0,0.0,0.0,0,62,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,127927,1,2,0,0,1,,150.0,475.0,12,1.0,1.0,1.0,1.0,1.0,1,1,3200.87006066381,600.0,47314.7895802703,0,1,2,3,27.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012681024375731195,47314.7895802703,10,5,10,10_0,10_1,10_1_0 +27906,2,66.0,0.0,1,111,480.0,100.0,0.0,0,75,1265.6194212439218,0.0,818.4962608185893,1780.0,0.0,189.8504047939789,20,0,0,0,0,0,0,0,0,0,,2,,1,127928,2,1,0,1,1,,380.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,707.049215024868,480.0,24901.502810275757,0,5,0,1,58.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07148162958524222,24901.502810275757,7,4,7,7_0,7_4,7_1_0 +27907,2,82.0,0.0,2,112,254.0,1292.0,0.0,75,75,0.0,0.0,433.12093801650354,1546.0,0.0,2452.8672299382074,71,0,0,0,0,0,0,0,0,0,,1,,2,127929,2,2,1,0,1,,318.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,901.807680919027,254.0,52952.048717599275,5,5,0,1,97.0,8,2,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029196226348956498,35301.36581173285,9,5,9,9_1,9_1,9_0_1 +27908,2,49.0,0.0,2,111,600.0,900.0,0.0,56,21,0.0,0.0,1023.1203260232367,1500.0,0.0,1708.65364314581,41,0,0,0,0,0,0,0,0,0,,1,,2,127930,2,2,1,0,1,,600.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,884.370313006666,600.0,42067.903483382106,4,1,0,1,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03565663785913501,28045.268988921405,8,4,8,8_1,8_4,8_0_1 +27909,2,32.0,0.0,8,112,840.0,0.0,0.0,85,62,0.0,834.326184516441,1432.3684564325313,1520.0,69.27946126982604,0.0,71,2,2,2,2,1,2,2,1,2,45.0,1,1999.0,6,127931,2,3,1,0,1,,300.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,863.502806692346,840.0,31406.034790029065,7,1,1,2,106.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.04839834159779307,13085.847829178778,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +27910,2,79.0,0.0,2,111,600.0,300.0,0.0,77,74,0.0,0.0,1023.1203260232367,900.0,0.0,569.5512143819367,31,0,0,0,0,0,0,0,0,0,,2,,2,127932,2,2,0,1,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,879.06647216137,600.0,68660.4152526438,5,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013107989467997648,45773.6101684292,10,5,10,10_0,10_4,10_0_1 +27911,2,28.0,0.0,6,111,0.0,0.0,0.0,55,54,0.0,0.0,0.0,1306.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,4,127933,2,1,0,0,1,,0.0,366.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1039.57212078381,0.0,40823.828180958604,1,1,2,3,43.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03199112033812536,27215.8854539724,7,4,7,7_0,7_4,7_0_0 +27912,2,52.0,0.0,2,111,600.0,1870.0,0.0,45,85,0.0,0.0,1023.1203260232367,2470.0,0.0,3550.202569647405,31,0,0,0,0,0,0,0,0,0,,1,,2,127934,2,3,3,0,1,,370.0,,42,1.0,2.0,4.0,3.0,2.0,3,3,285.324623365587,600.0,57420.49718461438,1,5,0,1,105.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04301599813841089,28710.24859230719,8,4,8,8_1,8_3,8_0_1 +27913,2,27.0,0.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,223.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,2,,3,127935,2,1,0,1,1,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2816.1760357978,0.0,23704.830282246377,0,1,3,4,30.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009407365391137805,23704.830282246377,6,3,6,6_0,6_3,6_0_0 +27914,2,72.0,0.0,2,111,589.0,,,56,78,0.0,0.0,,673.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,2,127936,2,1,0,0,2,,168.0,,42,1.0,5.0,4.0,2.0,1.5,2,2,131.2513888908937,589.0,17106.494621701542,4,5,0,1,58.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03934178304105755,11404.329747801028,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +27915,2,49.0,0.0,2,120,850.0,0.0,0.0,0,62,2320.3022722805235,0.0,1449.420461866252,3230.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,127937,1,1,2,0,1,,300.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,193.483530864931,850.0,17943.309013667495,0,1,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18001139018113635,17943.309013667495,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +27916,2,50.0,0.0,6,400,1350.0,,,85,11,0.0,0.0,,1959.0,843.8238382664813,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,127938,2,1,0,0,1,,0.0,,42,1.0,2.0,12.0,2.0,1.5,2,2,98.8695466929785,1350.0,66718.93499943377,6,1,0,1,270.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029361979474292053,44479.28999962251,10,5,10,10_1,10_0,10_0_0 +27917,2,25.0,0.0,7,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,358.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,7.0,2,,5,127939,2,1,0,0,2,,444.0,430.0,22,2.0,0.0,2.0,2.0,1.5,2,2,2408.55406365304,0.0,20859.005401329625,0,1,2,3,47.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017162850917962744,13906.003600886417,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +27919,1,54.0,272.0,2,111,360.0,0.0,0.0,85,67,0.0,0.0,613.872195613942,786.0,590.2610100189179,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127941,2,1,0,1,1,1129.0,0.0,277.0,42,1.0,0.0,4.0,6.0,3.0999999999999996,4,3,274.692012577528,360.0,22494.39227901595,6,4,2,3,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03494204200987575,7256.255573876113,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27920,2,51.0,0.0,1,112,1120.0,0.0,0.0,62,21,0.0,741.6232751257254,1909.8246085767084,1680.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,127942,2,1,4,0,1,,302.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1181.32409741123,1120.0,34590.27915491489,1,1,1,2,80.0,6,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.048568558596361916,23060.186103276592,6,3,6,6_1,6_0,6_1_0 +27922,2,44.0,0.0,5,112,900.0,1500.0,0.0,21,47,0.0,860.8127300566456,1534.680489034855,3050.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,2,45.0,1,,3,127944,2,2,2,0,1,,1200.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,1310.22160701482,900.0,57152.40744271901,1,1,0,1,150.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053366080913684374,28576.203721359507,8,4,8,8_1,8_1,8_0_0 +27923,2,41.0,0.0,9,112,1200.0,0.0,0.0,56,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,127945,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,3964.60385692875,1200.0,40341.94308035797,1,1,1,2,125.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029745716452221814,22412.190600198872,6,3,6,6_1,6_1,6_0_0 +27924,2,62.0,0.0,9,111,381.0,0.0,0.0,0,78,0.0,119.18945493092015,649.6814070247553,501.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,127946,2,1,1,0,1,,160.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,3152.75608263687,381.0,13944.763776938333,0,5,0,1,90.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03592746410151079,13944.763776938333,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +27925,2,62.0,0.0,7,111,220.0,216.0,0.0,0,78,0.0,0.0,375.14411954185346,436.0,0.0,410.0768743549944,71,0,0,0,0,0,0,0,0,0,,2,,5,127947,2,1,0,0,1,,133.0,287.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1400.59467074847,220.0,15309.490700032777,0,5,2,3,48.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028479066256532397,15309.490700032777,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +27926,2,39.0,0.0,8,111,360.0,,,42,68,0.0,0.0,,406.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,127948,2,2,0,0,2,,258.0,403.0,43,2.0,3.0,3.0,2.0,1.5,2,2,92.8560265660998,360.0,30707.0,4,1,2,3,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013221740971114079,20471.333333333332,5,3,5,5_0,5_3,5_0_0 +27927,2,90.0,0.0,2,111,216.0,312.0,0.0,0,75,745.6607756828773,0.0,368.3233173683652,1235.0,0.0,592.3332629572142,41,0,0,0,0,0,0,0,0,0,,2,,2,127949,2,2,0,2,2,600.0,210.0,260.0,21,0.0,0.0,3.0,2.0,1.5,2,2,782.639538428026,216.0,39744.907723934964,0,5,2,3,55.0,6,5,9,1,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031073163097476885,26496.605149289975,7,4,7,7_0,7_2,7_0_1 +27928,2,29.0,0.0,6,111,1810.0,0.0,0.0,47,43,0.0,0.0,3086.4129835034305,1870.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,,4,127950,2,3,3,0,1,,500.0,640.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1246.19297158485,1810.0,35775.5422389403,1,1,2,3,86.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05227034680594098,17035.972494733476,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +27929,2,77.0,0.0,5,221,600.0,0.0,0.0,0,86,0.0,0.0,1023.1203260232367,860.0,360.2531986030954,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,127951,2,1,2,0,2,,320.0,682.0,21,0.0,5.0,4.0,2.0,1.5,2,2,998.309144510814,600.0,31091.792844153802,0,5,2,3,110.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027660032482228057,20727.861896102535,5,3,5,5_1,5_1,5_0_0 +27930,2,57.0,0.0,2,111,325.0,404.0,0.0,77,64,0.0,0.0,554.1901765959199,729.0,0.0,766.9956353676747,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,127952,2,2,0,1,1,1848.0,0.0,441.0,42,1.0,2.0,4.0,2.0,1.5,2,2,359.035134214686,325.0,31134.406916328593,5,1,2,3,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023414610143663035,20756.271277552394,5,3,5,5_0,5_2,5_0_1 +27931,2,56.0,0.0,1,112,643.2,0.0,0.0,37,11,1476.555991451242,0.0,1096.78498949691,2163.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,127953,2,2,4,0,1,,320.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,368.309831067595,643.2,32913.036350510985,1,1,0,1,80.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06571864038810928,16456.518175255493,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +27932,2,80.0,0.0,2,111,210.0,90.0,0.0,77,74,843.7462808292812,0.0,358.0921141081328,1100.0,0.0,170.865364314581,70,0,0,0,0,0,0,0,0,0,,2,,2,127954,2,2,0,1,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1849.27907650542,210.0,79737.08524407883,5,5,0,1,83.0,9,7,7,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013795337472304764,53158.05682938589,10,5,10,10_0,10_3,10_0_1 +27933,2,69.0,0.0,5,112,300.0,0.0,0.0,78,75,0.0,662.163638505112,511.56016301161833,2000.0,1662.707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,127955,2,2,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,953.615220852598,300.0,31835.669861563856,5,5,0,1,111.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06282261402687364,21223.77990770924,5,3,5,5_1,5_0,5_0_0 +27934,2,52.0,0.0,1,111,0.0,0.0,3428.0,0,38,0.0,0.0,2160.731099541742,3428.0,0.0,4102.397801851726,42,0,0,0,0,0,0,0,0,0,,2,,1,127956,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,706.975897290289,0.0,83667.78079373816,0,1,1,2,63.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04097156596576729,83667.78079373816,10,5,10,10_0,10_4,10_1_0 +27935,2,79.0,0.0,5,112,912.0,0.0,0.0,0,77,0.0,0.0,1555.1428955553197,3010.0,41.567676761895626,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,127957,2,2,5,0,1,,113.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1806.42126098884,912.0,37191.393182643085,0,5,0,1,125.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08093270357521165,37191.393182643085,9,5,9,9_1,9_0,9_0_0 +27936,2,53.0,0.0,1,111,1800.0,0.0,0.0,38,38,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,,1,127958,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,705.546524523285,1800.0,111987.41268149501,1,1,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016073234990430625,44794.965072598,10,5,10,10_0,10_4,10_1_0 +27937,2,47.0,0.0,7,112,1189.0,0.0,0.0,56,64,0.0,0.0,2027.4834460693808,1249.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,127959,2,1,1,0,1,,353.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,788.553598021637,1189.0,29869.31571862943,1,1,1,2,90.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04181548756475199,14934.657859314715,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +27938,1,48.0,425.0,6,400,600.0,,,0,85,0.0,0.0,,1140.0,748.2181817141213,,43,0,0,0,0,0,0,0,0,0,,1,,4,127960,2,1,0,0,1,,1000.0,450.0,31,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,122.65762613235516,600.0,22363.0,0,6,2,3,150.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05097706032285471,8601.153846153848,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +27939,0,40.0,0.0,7,111,912.0,,,0,81,0.0,0.0,,1038.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,127961,2,1,0,0,2,,240.0,,32,2.0,0.0,4.0,3.0,2.0,3,2,101.13821040925055,912.0,11984.0,0,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0866154873164219,5992.0,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +27940,2,86.0,0.0,2,111,216.0,139.0,0.0,0,75,0.0,0.0,368.3233173683652,355.0,0.0,263.89206266363067,60,1,2,2,1,1,2,2,2,0,,2,,2,127962,2,1,0,1,1,252.0,0.0,308.0,11,0.0,0.0,2.0,1.0,1.0,1,1,387.649259087448,216.0,20167.232161055465,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.017602812183891717,20167.232161055465,5,3,5,5_0,5_4,5_0_1 +27941,2,31.0,0.0,1,111,700.0,0.0,0.0,22,22,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,127963,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,931.698073220451,700.0,7396.875724695115,4,1,1,2,140.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09463454924124098,3522.3217736643405,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +27942,2,47.0,0.0,7,111,566.0,1159.0,0.0,46,53,0.0,0.0,965.1435075485866,1725.0,0.0,2200.3661915622156,42,0,0,0,0,0,0,0,0,2,5.0,1,,5,127964,1,1,2,0,1,,472.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1010.83358533795,566.0,49938.10126406998,4,1,1,2,136.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03454276306738803,19975.24050562799,5,3,5,5_1,5_2,5_0_0 +27943,2,61.0,0.0,1,111,505.0,925.0,0.0,43,38,0.0,0.0,861.1262744028909,1430.0,0.0,1756.1162443443047,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,127965,2,2,1,0,1,,427.0,,43,3.0,1.0,6.0,4.0,2.5,4,4,654.409546891291,505.0,159916.9144897921,1,1,0,1,126.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008942143515977358,63966.76579591684,10,5,10,10_1,10_4,10_1_0 +27944,2,33.0,0.0,1,111,404.0,0.0,0.0,0,34,0.0,0.0,688.9010195223127,404.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,127966,1,2,0,0,2,,0.0,456.0,12,1.0,0.0,1.0,1.0,1.0,1,1,263.164382829221,404.0,22376.297854172957,0,4,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018054818658246364,22376.297854172957,6,3,6,6_0,6_4,6_1_0 +27945,2,35.0,0.0,2,111,0.0,0.0,0.0,48,62,0.0,0.0,0.0,255.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,110.0,2,,2,127967,2,3,0,1,1,750.0,0.0,552.0,43,2.0,0.0,3.0,3.0,1.8,2,2,618.226235342883,0.0,37255.45945414869,1,1,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006844634416972779,20697.477474527048,5,3,5,5_0,5_4,5_0_1 +27946,2,67.0,0.0,2,111,1080.0,0.0,0.0,0,78,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,127968,2,2,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,400.471266090872,1080.0,13419.347404923286,0,5,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08048081381392436,13419.347404923286,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +27947,2,65.0,0.0,6,111,2050.0,0.0,0.0,77,77,0.0,317.83854648245375,3495.6611139127253,2380.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,127969,2,1,2,0,1,,560.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1784.03508842026,2050.0,44506.5159363278,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.053475315915649094,29671.010624218532,8,4,8,8_1,8_3,8_0_0 +27948,2,58.0,0.0,7,112,460.0,1000.0,0.0,45,38,0.0,66.2163638505112,784.3922499511482,1510.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,127970,1,2,1,0,1,,230.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,1137.95193370076,460.0,90340.955052165,1,1,0,1,125.0,8,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01671445690526617,45170.4775260825,10,5,10,10_1,10_0,10_0_0 +27949,2,43.0,0.0,2,300,580.0,0.0,0.0,0,63,0.0,0.0,989.0163151557955,704.0,171.8130639491686,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,127971,2,1,1,0,1,,110.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1174.81313006538,580.0,6704.349447479601,0,1,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10500645968933768,6704.349447479601,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +27950,1,33.0,148.0,2,111,324.0,0.0,0.0,0,85,0.0,0.0,552.4849760525478,324.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,127972,2,1,0,1,1,377.0,0.0,346.0,11,0.0,0.0,3.0,1.0,1.0,1,1,198.024958482269,324.0,10817.940106439208,0,7,2,3,64.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029950249013409137,10817.940106439208,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +27951,2,25.0,0.0,2,111,0.0,0.0,0.0,52,62,0.0,0.0,0.0,1499.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,127973,2,1,0,0,2,,0.0,610.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1097.29840495529,0.0,38599.53505228766,1,1,2,3,63.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038834664665505066,25733.023368191774,7,4,7,7_0,7_4,7_0_1 +27952,2,45.0,0.0,1,112,1200.0,0.0,0.0,0,54,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,,1,127974,2,1,4,0,1,,155.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,1094.61685756562,1200.0,35059.835487190045,0,1,1,2,150.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034227199966139286,23373.223658126695,6,3,6,6_1,6_0,6_1_0 +27953,2,78.0,0.0,6,111,2000.0,1700.0,0.0,0,74,0.0,0.0,3410.4010867441225,3700.0,0.0,3227.4568814976415,70,0,0,0,0,0,0,0,0,0,,2,,4,127975,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1204.22681515827,2000.0,31189.42704658574,0,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11862994451528514,31189.42704658574,8,4,8,8_0,8_4,8_0_0 +27954,2,63.0,0.0,8,111,950.0,0.0,0.0,0,75,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,2001.0,6,127976,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1917.6482389955,950.0,30799.39072153709,0,5,0,1,38.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030844766008169554,30799.39072153709,8,4,8,8_0,8_3,8_0_0 +27955,2,76.0,0.0,6,111,248.0,880.0,0.0,0,78,0.0,0.0,422.8897347562712,1128.0,0.0,1670.6835621870143,60,0,0,0,0,0,0,0,0,0,,1,,4,127977,2,1,1,0,1,,225.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,329.336853697345,248.0,16470.044720435446,0,5,0,1,73.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06848797432835248,16470.044720435446,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +27956,2,60.0,0.0,2,112,500.0,0.0,0.0,75,46,0.0,1854.0581878143134,852.6002716860306,1900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,8.0,1,,2,127978,2,1,3,0,2,,714.0,,42,1.0,2.0,7.0,3.0,2.0,3,3,1779.47908486849,500.0,123944.64469874118,6,1,0,1,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015329423910311932,61972.32234937059,10,5,10,10_1,10_1,10_0_1 +27957,2,57.0,0.0,9,111,1500.0,0.0,0.0,56,37,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,2,2004.0,6,127979,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,694.604818531606,1500.0,59329.82819989536,1,1,1,2,77.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025282392440884323,39553.21879993024,9,5,9,9_0,9_4,9_0_0 +27958,2,86.0,0.0,1,211,451.0,0.0,0.0,86,86,5522.319408027645,0.0,769.0454450607996,5687.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,127980,2,2,2,0,2,,296.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1419.11082043707,451.0,68300.47612800017,6,5,0,1,120.0,3,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08326442687371811,45533.65075200011,10,5,10,10_1,10_1,10_1_0 +27959,2,68.0,0.0,2,112,507.0,0.0,0.0,0,77,0.0,529.7309108040896,864.5366754896351,1069.0,224.4654545142364,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,127981,2,2,3,0,1,,412.0,,21,1.0,2.0,4.0,3.0,2.0,3,3,1700.33124643338,507.0,53349.22752528434,0,5,0,1,92.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020037778419441182,26674.61376264217,7,4,7,7_1,7_0,7_0_1 +27960,2,52.0,0.0,7,300,373.0,0.0,0.0,56,11,910.1913004445871,66.2163638505112,636.0398026777788,1406.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,127982,2,1,1,0,1,,253.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1526.42467377475,373.0,85446.05477298227,1,1,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01645482642511158,47470.03042943459,10,5,10,10_1,10_0,10_0_0 +27961,2,76.0,0.0,5,112,600.0,0.0,0.0,71,72,3744.1241211799356,0.0,1023.1203260232367,4210.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,127983,2,2,2,0,1,,136.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,967.887425429328,600.0,78761.88681643225,5,5,0,1,136.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05345224918001405,52507.924544288166,10,5,10,10_1,10_0,10_0_0 +27962,1,45.0,307.0,1,111,1200.0,0.0,0.0,0,85,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,127984,2,1,0,0,1,,0.0,830.0,11,0.0,0.0,2.0,1.0,1.0,1,1,649.140672517235,1200.0,9329.973190724144,0,7,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1286177329205018,9329.973190724144,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +27963,2,72.0,0.0,2,111,550.0,0.0,0.0,77,78,685.543853173791,0.0,937.8602988546337,1300.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,127985,1,3,3,0,2,,180.0,547.0,41,0.0,2.0,5.0,2.0,1.5,2,2,1542.00929821276,550.0,19669.23635352677,5,5,2,3,120.0,6,5,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06609305906108068,13112.824235684513,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +27964,2,44.0,0.0,5,111,1159.0,1019.0,0.0,37,37,0.0,79.45963662061344,1976.327429768219,2238.0,0.0,1934.575624850645,10,2,2,2,2,2,2,2,1,2,45.0,1,,3,127986,1,1,2,0,1,,750.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,572.881934252155,1159.0,151149.0588938507,1,1,1,2,108.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.014806575815809131,62978.77453910447,10,5,10,10_1,10_4,10_0_0 +27966,0,65.0,0.0,7,111,894.0,,,52,77,0.0,0.0,,1026.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,127988,2,3,0,0,2,,780.0,,42,2.0,0.0,3.0,3.0,2.0,3,3,93.59668095115595,894.0,9270.326152510363,4,5,5,0,55.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1106757176738775,4635.163076255181,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +27967,1,51.0,189.0,5,111,120.0,150.0,0.0,0,67,0.0,0.0,204.62406520464734,270.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,0,,2,,3,127989,2,1,0,1,1,32.0,160.0,175.0,12,1.0,5.0,2.0,1.0,1.0,1,1,273.13983007797,120.0,6060.0,0,4,2,3,50.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04455445544554455,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27968,2,51.0,0.0,2,111,600.0,204.0,0.0,47,46,0.0,0.0,1023.1203260232367,804.0,0.0,387.294825779717,20,0,0,0,0,0,0,0,0,4,40.0,2,,2,127990,2,1,0,1,1,,250.0,,43,3.0,0.0,3.0,4.0,2.5,4,4,1581.82523916035,600.0,39412.71404830424,1,1,0,1,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02039950862086324,15765.085619321695,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +27969,2,57.0,0.0,7,111,400.0,0.0,0.0,55,37,0.0,0.0,682.0802173488245,400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,4,90.0,1,,5,127991,2,1,2,0,1,,500.0,1550.0,43,2.0,4.0,4.0,2.0,1.5,2,2,635.645912822654,400.0,84116.71070699542,1,1,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004755297688628411,56077.80713799695,10,5,10,10_1,10_4,10_0_0 +27970,0,85.0,0.0,1,111,849.0,0.0,0.0,75,74,3164.0485531098047,0.0,1447.71526132288,3909.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,127992,2,1,2,0,2,,124.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1471.92107820097,849.0,85718.2739467083,5,5,0,1,400.0,6,5,7,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04560287812643375,57145.5159644722,10,5,10,10_1,10_2,10_1_0 +27971,2,42.0,0.0,1,112,600.0,0.0,0.0,85,63,0.0,1059.4618216081792,1023.1203260232367,1540.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,127993,2,1,3,0,1,,160.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1240.74030941232,600.0,18137.52706854479,6,1,1,2,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08490683400113361,12091.684712363194,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +27972,2,81.0,0.0,2,111,650.0,170.0,0.0,54,75,0.0,0.0,1108.3803531918397,820.0,0.0,322.74568814976413,50,0,0,0,0,0,0,0,0,0,,2,,2,127994,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1539.65109458709,650.0,30623.387406329708,5,5,0,1,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026776920172799364,20415.591604219804,5,3,5,5_0,5_3,5_0_1 +27973,2,37.0,0.0,8,111,231.0,,,0,47,0.0,0.0,,275.0,60.965925917446924,,43,0,0,0,0,0,0,0,0,0,,1,2003.0,6,127995,2,1,0,0,1,,205.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,134.9220986684984,231.0,50207.937013085604,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0054772216577695125,50207.937013085604,10,5,10,10_1,10_2,10_0_0 +27974,2,86.0,0.0,2,112,322.0,659.0,0.0,78,77,0.0,0.0,549.0745749658037,981.0,0.0,1251.1141675923209,70,0,0,0,0,0,0,0,0,0,,1,,2,127996,2,1,2,0,1,,320.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,989.648224378963,322.0,43523.37880500648,5,5,0,1,120.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.022539610364238447,29015.58587000432,8,4,8,8_1,8_1,8_0_1 +27975,2,30.0,0.0,1,300,690.0,0.0,0.0,55,48,2636.7071275915036,39.72981831030672,1176.5883749267223,3241.0,29.09737373332694,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,127997,1,3,4,0,2,,170.0,500.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1456.89720769964,690.0,34133.5829858582,1,1,2,3,160.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09495047740352282,18963.101658810112,5,3,5,5_1,5_0,5_1_0 +27976,1,52.0,254.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,369.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,127998,2,1,0,0,1,,0.0,300.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1518.06177501027,0.0,9263.063245063568,0,4,2,3,35.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.039835634307759465,9263.063245063568,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +27977,1,49.0,413.0,7,111,384.0,,,0,85,0.0,0.0,,534.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,5,127999,2,1,0,0,2,,480.0,507.0,31,0.0,0.0,4.0,3.0,1.8,2,2,95.53674334268105,384.0,9414.126478499275,0,6,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0567232659577701,5230.07026583293,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27978,2,46.0,0.0,9,112,1763.0,0.0,0.0,45,47,0.0,92.70290939071567,3006.2685579649437,1833.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,2007.0,6,128000,2,1,1,0,1,,300.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,764.039895924427,1763.0,64360.629132962946,1,1,1,2,140.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02848014422315848,30647.91863474426,8,4,8,8_1,8_0,8_0_0 +27979,2,35.0,0.0,2,111,1080.0,1400.0,0.0,47,37,0.0,0.0,1841.6165868418261,2480.0,0.0,2657.9056671157045,43,0,0,0,0,0,0,0,0,3,90.0,1,,2,128001,2,2,3,0,1,,456.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,519.865584110077,1080.0,56990.83351802893,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04351576993895794,27138.492151442344,7,4,7,7_1,7_4,7_0_1 +27980,2,43.0,0.0,2,111,360.0,0.0,0.0,37,37,0.0,0.0,613.872195613942,922.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,,2,128002,1,1,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,881.069767349064,360.0,83263.59368016597,1,1,1,2,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011073266949557901,39649.33032388856,9,5,9,9_0,9_4,9_0_1 +27981,2,77.0,0.0,2,111,690.0,0.0,0.0,0,72,1877.3354748451507,0.0,1176.5883749267223,2565.0,131.6309764126695,0.0,71,2,2,2,2,2,2,2,1,0,,1,,2,128003,2,2,2,0,1,,240.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1071.32661757669,690.0,10290.88942561999,0,5,0,1,80.0,6,4,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.24924959290828916,10290.88942561999,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +27982,2,51.0,0.0,1,111,150.0,0.0,0.0,0,45,0.0,0.0,255.78008150580916,150.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,,1,128004,2,1,0,0,2,,0.0,,12,1.0,5.0,1.0,1.0,1.0,1,1,1059.7987969049,150.0,56486.73662163455,0,1,1,2,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0026554906332214925,56486.73662163455,10,5,10,10_0,10_4,10_1_0 +27983,2,84.0,0.0,6,111,540.0,0.0,0.0,0,75,0.0,0.0,920.8082934209131,540.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,128005,2,1,0,1,1,,123.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1042.21999129593,540.0,9685.431186597507,0,7,0,1,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05575384199179903,9685.431186597507,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +27984,2,65.0,0.0,5,111,720.0,0.0,0.0,0,35,0.0,0.0,1227.744391227884,720.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,30.0,2,,3,128006,1,2,0,1,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,933.997231889776,720.0,37830.747804917766,0,1,0,1,87.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01903213765989591,37830.747804917766,9,5,9,9_0,9_4,9_0_0 +27985,2,25.0,0.0,1,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,573.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,2,,1,128007,1,2,0,0,1,,0.0,700.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1275.93148183625,0.0,34806.67426626994,3,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016462359937538657,23204.449510846625,6,3,6,6_0,6_4,6_1_0 +27986,2,43.0,0.0,8,212,584.0,0.0,0.0,63,54,767.8091155546459,794.5963662061343,995.8371173292837,2024.0,155.18599324441035,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,128008,2,1,1,0,1,,497.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,712.957529162495,584.0,43738.273330124655,1,1,1,2,135.0,2,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.046275260678980065,19016.64057831507,5,3,5,5_1,5_0,5_0_0 +27987,2,48.0,0.0,1,112,340.0,0.0,0.0,0,43,0.0,717.7853841395414,579.7681847465008,960.0,108.07595958092864,0.0,43,2,2,2,1,2,2,2,2,0,,1,,1,128009,2,3,3,0,1,,106.0,,32,1.0,0.0,4.0,3.0,2.0,3,1,1084.62114371781,340.0,10721.281591779949,0,4,0,1,65.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08954153398377634,5360.6407958899745,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +27988,2,32.0,0.0,1,111,0.0,0.0,0.0,31,37,0.0,0.0,0.0,1896.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,2,,1,128010,2,1,0,0,1,,350.0,810.0,43,2.0,0.0,3.0,2.0,1.5,2,2,382.864815933626,0.0,63244.28164975865,1,1,2,3,66.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02997899494692475,42162.85443317243,9,5,9,9_0,9_3,9_1_0 +27990,2,53.0,0.0,1,111,600.0,0.0,0.0,54,63,0.0,397.2981831030672,1023.1203260232367,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,128012,2,2,2,0,1,,400.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,885.769920592666,600.0,45863.39372006616,1,1,0,1,120.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01962349331349703,30575.59581337744,8,4,8,8_1,8_2,8_1_0 +27991,2,87.0,0.0,1,212,300.0,0.0,0.0,0,78,0.0,0.0,511.56016301161833,2200.0,2632.61952825339,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128013,2,1,2,0,1,,172.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,707.093663562855,300.0,22984.605216722768,0,5,0,1,70.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09571624046861416,22984.605216722768,6,3,6,6_1,6_0,6_1_0 +27992,2,71.0,0.0,6,111,347.0,1668.0,0.0,74,74,0.0,0.0,591.7045885501052,2015.0,0.0,3166.704751963568,12,0,0,0,0,0,0,0,0,0,,2,,4,128014,2,2,0,1,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,743.190973333444,347.0,61642.38882645551,5,5,0,1,77.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03268854498278639,41094.92588430367,9,5,9,9_0,9_4,9_0_0 +27993,1,39.0,618.0,5,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128015,2,2,2,0,2,,257.0,850.0,32,4.0,0.0,7.0,7.0,3.6,5,2,1211.50350228342,0.0,22078.21746292442,0,4,2,3,111.0,4,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.065675591901156,6132.838184145671,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +27994,1,56.0,310.0,5,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,533.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,128016,1,1,0,1,1,856.0,0.0,,42,1.0,5.0,3.0,3.0,1.8,2,2,290.070434773993,0.0,7637.549494049233,6,4,3,4,60.0,7,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06978678179634513,4243.0830522495735,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +27995,2,82.0,0.0,1,111,353.0,1438.0,0.0,0,75,0.0,0.0,601.9357918103376,1791.0,0.0,2730.0488209374166,70,2,2,2,2,1,2,2,1,0,,1,,1,128017,1,2,3,0,1,,203.0,385.0,11,0.0,2.0,4.0,1.0,1.0,1,1,242.599106263951,353.0,14275.974347423034,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.12545553504187226,14275.974347423034,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +27996,2,67.0,0.0,5,400,781.0,0.0,0.0,77,75,0.0,397.2981831030672,1331.7616243735797,1171.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,128018,2,1,3,0,1,,421.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,886.241079235568,781.0,37807.02334474371,5,5,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030973081094542276,25204.68222982914,7,4,7,7_1,7_0,7_0_0 +27997,2,90.0,0.0,1,120,750.0,0.0,0.0,0,71,1687.4925616585624,264.8654554020448,1278.9004075290459,2650.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,128019,2,1,2,0,2,,500.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,216.526924964161,750.0,15023.22524790794,0,5,0,1,130.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17639354774162266,15023.22524790794,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +27998,2,51.0,0.0,6,111,884.0,,,0,62,0.0,0.0,,1010.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,4,128020,2,1,0,0,1,,960.0,,32,1.0,2.0,4.0,2.0,1.5,2,1,84.66932140342483,884.0,8454.797525362175,0,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11945880394773084,5636.5316835747835,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +27999,2,44.0,0.0,2,111,360.0,0.0,0.0,0,37,0.0,0.0,613.872195613942,360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,25.0,2,,2,128021,2,1,0,1,2,894.0,0.0,1090.0,22,1.0,1.0,2.0,2.0,1.5,2,2,1120.66415105075,360.0,61339.15101875299,0,1,2,3,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0058690085210005355,40892.76734583533,9,5,9,9_0,9_4,9_0_1 +28000,2,59.0,0.0,7,111,900.0,,,0,52,0.0,0.0,,1188.0,399.049696914198,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,128022,1,1,0,0,2,,300.0,457.0,32,1.0,4.0,4.0,2.0,1.5,2,1,47.14772668032692,900.0,36349.88705399648,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032682357395918946,24233.258035997653,7,4,7,7_1,7_2,7_0_0 +28001,2,64.0,0.0,6,112,979.0,0.0,0.0,54,48,0.0,0.0,1669.391331961248,2320.0,1858.0751512567347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128023,2,1,2,0,2,,1400.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1805.0037087287,979.0,35335.37974721106,1,1,0,1,110.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06565657470210469,23556.91983147404,6,3,6,6_1,6_0,6_0_0 +28002,2,83.0,0.0,5,300,1300.0,0.0,0.0,0,72,0.0,0.0,2216.7607063836795,1430.0,180.1265993015477,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,128024,2,1,2,0,1,,114.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1594.59086595008,1300.0,14539.204813604285,0,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09835475999773756,14539.204813604285,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +28003,2,65.0,0.0,6,112,800.0,,,74,34,0.0,0.0,,930.0,180.1265993015477,,41,0,0,0,0,0,0,0,0,0,,1,,4,128025,2,2,0,0,2,,800.0,,42,1.0,3.0,4.0,3.0,2.0,3,3,81.3718552386464,800.0,114683.30427651308,5,1,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008109288495539643,57341.65213825654,10,5,10,10_1,10_2,10_0_0 +28004,2,64.0,0.0,6,111,401.0,0.0,0.0,0,74,0.0,0.0,683.7854178921965,401.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,128026,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2047.61705931253,401.0,40630.58805393703,0,5,0,1,91.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009869411672498397,40630.58805393703,9,5,9,9_0,9_3,9_0_0 +28005,2,42.0,0.0,1,111,690.0,2300.0,0.0,33,31,0.0,0.0,1176.5883749267223,2990.0,0.0,4366.559310261515,12,0,0,0,0,0,0,0,0,1,12.0,1,,1,128027,2,3,3,0,2,,238.0,,43,2.0,0.0,9.0,4.0,2.1,2,2,1590.70499404833,690.0,105781.40105560335,1,1,1,2,120.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028265838513788683,50372.0957407635,10,5,10,10_1,10_2,10_1_0 +28006,2,54.0,0.0,2,111,1032.0,110.0,0.0,77,46,0.0,0.0,1759.766960759967,1142.0,0.0,208.8354452733768,31,1,2,2,1,1,2,2,2,2,20.0,2,,2,128028,2,3,0,1,1,960.0,0.0,507.0,42,1.0,2.0,5.0,3.0,2.0,3,3,198.047006668791,1032.0,54810.50791367792,5,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02083542086124356,27405.25395683896,7,4,7,7_0,7_4,7_0_1 +28007,2,61.0,0.0,6,400,120.0,,,0,34,0.0,0.0,,120.0,0.0,,20,0,0,0,0,0,0,0,0,2,7.0,2,,4,128029,2,3,0,0,2,,200.0,412.0,12,1.0,0.0,2.0,1.0,1.0,1,1,54.53557298422768,120.0,97345.8806518147,0,1,2,3,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0012327178016829927,97345.8806518147,10,5,10,10_0,10_1,10_0_0 +28008,2,46.0,0.0,5,111,540.0,980.0,0.0,46,64,0.0,0.0,920.8082934209131,1520.0,0.0,1860.5339669809932,71,0,0,0,0,0,0,0,0,2,5.0,1,,3,128030,2,2,3,0,2,,571.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,1130.27255922835,540.0,74060.14319528863,1,1,0,1,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02052385985795252,37030.07159764432,9,5,9,9_1,9_3,9_0_0 +28009,2,64.0,0.0,1,400,200.0,0.0,0.0,0,78,0.0,377.4332739479138,341.04010867441224,541.0,77.59299662220518,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128031,2,1,1,0,1,,90.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1275.21897174945,200.0,21431.327366394242,0,5,1,2,50.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025243420099509296,21431.327366394242,6,3,6,6_1,6_0,6_1_0 +28010,2,62.0,0.0,6,111,11980.0,0.0,0.0,0,77,0.0,0.0,20428.30250959729,11980.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,128032,2,1,2,0,1,,220.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,802.145035637989,11980.0,46517.99759986429,0,5,0,1,140.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.25753473103139224,31011.998399909528,8,4,8,8_1,8_2,8_0_0 +28011,2,36.0,0.0,2,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,1353.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,128033,2,1,0,0,1,,0.0,370.0,42,1.0,0.0,4.0,3.0,1.8,2,2,415.056311890184,0.0,37324.84771168892,6,1,2,3,70.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.036249310658976505,20736.026506493843,5,3,5,5_0,5_3,5_0_1 +28012,2,78.0,0.0,2,111,310.0,112.0,0.0,77,74,0.0,0.0,528.612168445339,422.0,0.0,212.63245336925638,12,0,0,0,0,0,0,0,0,0,,2,,2,128034,2,1,0,1,1,815.0,0.0,857.0,41,0.0,3.0,5.0,2.0,1.5,2,2,904.628183389455,310.0,62173.48651176915,5,5,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006787459151420073,41448.9910078461,9,5,9,9_0,9_4,9_0_1 +28013,2,34.0,0.0,1,112,540.0,0.0,0.0,0,47,0.0,0.0,920.8082934209131,540.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,1,128035,1,2,0,1,1,609.0,0.0,300.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1844.42382646086,540.0,21953.9112992311,0,1,2,3,90.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02459698377386232,21953.9112992311,6,3,6,6_0,6_0,6_1_0 +28014,2,60.0,0.0,1,111,0.0,0.0,2400.0,78,78,0.0,132.4327277010224,1512.763896995385,2500.0,0.0,2872.157154155234,70,2,2,2,1,1,2,2,2,0,,1,,1,128036,1,3,1,0,1,,500.0,480.0,41,2.0,0.0,4.0,4.0,2.5,4,4,252.367837162056,0.0,40582.45106636583,6,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06160298193698717,16232.980426546332,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +28015,1,32.0,100.0,1,111,429.0,1560.0,0.0,63,52,0.0,0.0,731.5310331066142,1989.0,0.0,2961.666314786071,60,0,0,0,0,0,0,0,0,1,15.0,1,,1,128037,2,2,4,0,1,,410.0,428.0,43,2.0,0.0,6.0,6.0,2.8999999999999995,3,2,1457.07912145295,429.0,43604.20484325816,1,1,2,3,181.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04561486689528586,15035.932704571782,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +28016,2,83.0,0.0,1,111,800.0,0.0,0.0,0,78,0.0,0.0,1364.160434697649,800.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,128038,1,3,0,0,2,,140.0,350.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1928.12380601495,800.0,20665.15374736872,0,5,2,3,60.0,7,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03871251139865647,20665.15374736872,5,3,5,5_0,5_2,5_1_0 +28017,0,66.0,0.0,2,111,960.0,0.0,0.0,0,77,1265.6194212439218,0.0,1636.9925216371787,2230.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128039,2,1,0,0,1,,936.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2028.65360884135,960.0,17989.68858004862,0,5,0,1,140.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.12395990014375075,17989.68858004862,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +28018,1,65.0,103.0,2,111,220.0,160.0,0.0,0,77,0.0,0.0,375.14411954185346,380.0,0.0,303.7606476703662,50,0,0,0,0,0,0,0,0,0,,2,,2,128040,2,1,0,1,1,500.0,0.0,260.0,11,0.0,2.0,2.0,1.0,1.0,1,1,359.64830742399,220.0,11635.562380866719,0,5,2,3,60.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03265849879545696,11635.562380866719,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28019,2,45.0,0.0,2,111,500.0,,,54,63,0.0,0.0,,620.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,128041,2,3,0,0,2,,200.0,450.0,43,2.0,0.0,4.0,4.0,2.1,2,2,90.95684787819887,500.0,49578.67133649406,1,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012505377479602363,23608.891112616217,6,3,6,6_0,6_3,6_0_1 +28020,1,26.0,215.0,2,111,576.0,,,53,90,0.0,0.0,,668.0,127.47420873647992,,43,0,0,0,0,0,0,0,0,0,,2,,2,128042,2,2,0,0,2,,581.0,230.0,43,2.0,2.0,3.0,3.0,1.8,2,2,97.30278481369292,576.0,30267.457738831672,1,1,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022069907745934956,16815.254299350927,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +28021,2,28.0,0.0,9,300,846.0,0.0,0.0,63,56,0.0,297.97363732730037,1442.5996596927637,1071.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,2005.0,6,128043,2,1,1,0,1,,428.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,822.978580114849,846.0,27801.65246549794,4,1,1,2,91.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03852289000911435,15445.36248083219,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +28022,1,29.0,115.0,7,111,500.0,880.0,0.0,0,54,0.0,0.0,852.6002716860306,1380.0,0.0,1670.6835621870143,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,128044,2,2,2,0,1,,360.0,336.0,32,1.0,0.0,4.0,2.0,1.3,1,1,214.071016662788,500.0,18188.38204962904,0,1,2,3,66.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0758726090223152,13991.063115099261,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +28023,2,33.0,0.0,1,112,3000.0,0.0,0.0,63,68,0.0,0.0,5115.6016301161835,3095.0,131.6309764126695,0.0,71,0,0,0,0,0,0,0,0,2,35.0,1,,1,128045,2,1,1,0,1,,530.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,626.222949892676,3000.0,30820.548487012216,4,1,1,2,155.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1004200169021727,17122.52693722901,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +28024,2,58.0,0.0,9,211,648.0,,,0,52,0.0,0.0,,786.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,128046,2,1,0,0,2,,720.0,,22,1.0,0.0,5.0,2.0,1.5,2,2,110.52335021239303,648.0,31280.464550338387,0,1,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02512750406040556,20853.643033558925,5,3,5,5_1,5_2,5_0_0 +28025,2,66.0,0.0,7,221,1900.0,0.0,0.0,74,78,0.0,0.0,3239.8810324069163,1932.0,44.33885521268867,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,128047,2,2,3,0,1,,204.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,767.5607260687,1900.0,50674.84651161344,5,5,0,1,130.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03812542381469735,33783.231007742295,9,5,9,9_1,9_1,9_0_0 +28026,1,33.0,150.0,7,111,0.0,,,0,85,0.0,0.0,,333.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,5,128048,2,1,0,0,2,,762.0,123.0,31,0.0,0.0,3.0,3.0,1.6,1,1,81.72498984088244,0.0,14001.965811922753,0,6,2,3,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.023782374880279213,8751.22863245172,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28027,1,55.0,77.0,7,120,700.0,,,85,63,0.0,0.0,,832.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,,5,128049,2,2,0,0,2,,250.0,460.0,42,1.0,0.0,4.0,3.0,1.8,2,2,121.04301078279008,700.0,22787.115816476966,6,1,2,3,79.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03651186076819758,12659.508786931647,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +28028,1,49.0,467.0,8,111,1356.0,,,0,85,0.0,0.0,,1482.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,2,1999.0,6,128050,2,2,0,0,2,,500.0,573.0,31,0.0,0.0,4.0,4.0,2.3,3,2,91.13895852484335,1356.0,4763.851157215997,0,6,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.31109284297330636,2071.239633572173,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +28029,2,59.0,0.0,6,111,150.0,,,67,75,0.0,0.0,,171.0,29.09737373332694,,70,0,0,0,0,0,0,0,0,0,,1,,4,128051,2,2,0,0,2,,300.0,,42,2.0,1.0,7.0,4.0,2.5,4,4,117.03991322613022,150.0,59913.61758086407,1,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002854109080781262,23965.447032345626,6,3,6,6_1,6_2,6_0_0 +28030,2,66.0,0.0,2,112,1786.0,0.0,0.0,67,78,0.0,0.0,3045.4881704625013,1786.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128052,2,1,2,0,1,,500.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,787.748454037973,1786.0,32975.919932838355,1,5,0,1,98.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05416073315429938,21983.946621892235,6,3,6,6_1,6_0,6_0_1 +28031,2,50.0,0.0,2,111,540.0,156.0,0.0,52,67,164.53052476170984,0.0,920.8082934209131,852.0,0.0,296.1666314786071,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,128053,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,905.374952194011,540.0,54238.68982459082,1,1,0,1,65.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015708344039197623,36159.12654972722,9,5,9,9_0,9_4,9_0_1 +28032,2,78.0,0.0,2,111,396.0,720.0,0.0,77,74,0.0,0.0,675.2594151753362,1116.0,0.0,1366.922914516648,10,2,2,2,1,2,2,2,2,0,,2,,2,128054,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1101.19571984268,396.0,41379.00054974562,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.02697020191820125,27586.000366497083,7,4,7,7_0,7_4,7_0_1 +28033,2,49.0,0.0,7,111,1000.0,0.0,0.0,0,42,0.0,0.0,1705.2005433720612,1030.0,41.567676761895626,0.0,31,1,2,2,1,2,2,2,2,0,,1,,5,128055,2,1,1,0,1,,100.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1052.01089660383,1000.0,23560.52869904585,0,1,2,3,60.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04371718534659677,18123.483614650653,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28034,2,50.0,0.0,1,111,330.0,0.0,0.0,0,68,1054.6828510366015,0.0,562.7161793127802,1390.0,83.13535352379125,0.0,71,2,2,1,2,1,2,2,2,2,20.0,1,,1,128056,2,1,3,0,1,,170.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,291.161541952412,330.0,10619.674956451465,0,1,0,1,55.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.13088912849969794,10619.674956451465,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +28035,2,54.0,0.0,6,111,202.0,405.0,0.0,85,54,0.0,0.0,344.45050976115635,607.0,0.0,768.8941394156145,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,128057,2,1,0,0,1,,0.0,506.0,42,1.0,0.0,2.0,2.0,1.5,2,2,931.953523121821,202.0,29870.193773554412,7,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020321260873018096,19913.46251570294,5,3,5,5_0,5_4,5_0_0 +28036,2,59.0,0.0,9,111,1250.0,0.0,0.0,63,37,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,95.0,2,2005.0,6,128058,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,385.971278601993,1250.0,60600.67068761731,1,1,0,1,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020626834419761885,30300.335343808656,8,4,8,8_0,8_4,8_0_0 +28037,2,27.0,0.0,1,111,0.0,0.0,0.0,34,38,0.0,0.0,0.0,496.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,128059,2,2,0,0,2,,0.0,1050.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1173.73379506608,0.0,41015.28112415834,1,1,3,4,35.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012093053769363338,27343.520749438892,7,4,7,7_0,7_4,7_1_0 +28038,2,76.0,0.0,5,111,396.0,,,77,78,0.0,0.0,,444.0,66.50828281903301,,71,0,0,0,0,0,0,0,0,0,,1,,3,128060,2,1,0,0,2,,436.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,82.41640104595002,396.0,25444.494944056536,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01744974702685981,16962.996629371024,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28039,2,28.0,0.0,1,112,800.0,1200.0,0.0,43,38,0.0,0.0,1364.160434697649,2120.0,166.2707070475825,2278.2048575277468,12,0,0,0,0,0,0,0,0,2,45.0,1,,1,128061,2,3,3,0,1,,390.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,301.228907260283,800.0,52367.50914820028,1,1,1,2,80.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04048311700295675,29093.060637889044,8,4,8,8_1,8_1,8_1_0 +28040,1,22.0,455.0,9,111,0.0,,,85,68,0.0,0.0,,1040.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128062,2,1,0,0,1,,508.0,630.0,42,1.0,0.0,3.0,4.0,2.1,2,2,120.22964869323113,0.0,5994.946808510638,6,1,2,3,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17347943746950004,2854.7365754812563,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +28041,2,78.0,0.0,1,112,356.0,,,0,72,0.0,0.0,,488.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,1,128063,1,2,0,0,2,,350.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,91.20726406153356,356.0,9397.776764132488,0,5,0,1,84.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05192717514449785,9397.776764132488,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +28042,1,41.0,200.0,1,112,1200.0,0.0,0.0,63,55,0.0,0.0,2046.2406520464733,1350.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,128064,2,2,5,0,1,,380.0,550.0,43,2.0,0.0,3.0,5.0,2.8,4,2,1226.48019915574,1200.0,31016.730194416632,4,1,2,3,85.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04352489741949058,11077.403640863084,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +28043,1,39.0,400.0,6,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,526.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,128065,2,1,0,1,1,,0.0,451.0,31,0.0,0.0,4.0,4.0,2.1,2,2,291.107791608523,0.0,13132.160186098756,0,6,2,3,71.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04005433931249218,6253.409612427979,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28044,2,53.0,0.0,9,111,780.0,,,52,62,0.0,0.0,,780.0,0.0,,50,0,0,0,0,0,0,0,0,2,35.0,1,2010.0,6,128066,2,1,0,0,2,,422.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,243.5586480817696,780.0,49825.2331926598,1,1,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015654718503453163,24912.6165963299,7,4,7,7_1,7_2,7_0_0 +28045,2,77.0,0.0,1,112,431.0,0.0,0.0,0,71,0.0,1324.327277010224,734.9414341933584,1493.0,85.9065319745843,0.0,70,2,2,1,2,1,1,2,2,0,,1,,1,128067,2,1,3,0,2,,175.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,967.382493826686,431.0,15467.458488932922,0,5,2,3,80.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.09652523076549727,15467.458488932922,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +28046,2,86.0,0.0,2,111,259.0,0.0,0.0,0,75,1402.72819187868,158.91927324122688,441.64694073336386,1709.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,128068,2,1,1,0,1,,768.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1084.30681073742,259.0,22335.35645060891,0,5,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07651545672795426,22335.35645060891,6,3,6,6_1,6_4,6_0_1 +28047,2,55.0,0.0,8,111,500.0,60.0,0.0,42,11,0.0,794.5963662061343,852.6002716860306,1160.0,0.0,113.91024287638734,71,0,0,0,0,0,0,0,0,0,,7,2002.0,6,128069,2,1,0,0,1,,0.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,744.752046576301,500.0,21352.559514180804,1,1,1,2,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054326039893700474,14235.039676120536,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +28048,2,43.0,0.0,9,111,540.0,,,0,34,0.0,0.0,,540.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,128070,2,1,0,0,2,,300.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,238.5095760312618,540.0,44841.52616035064,0,1,1,2,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012042409039982093,28025.953850219146,7,4,7,7_1,7_2,7_0_0 +28049,2,62.0,0.0,1,111,512.0,1805.0,0.0,74,37,0.0,0.0,873.0626782064953,2317.0,0.0,3426.799806531319,20,2,2,1,2,1,2,2,2,2,15.0,1,,1,128071,2,1,3,0,1,,352.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,511.425826560589,512.0,87867.97201285175,5,1,0,1,150.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.026369107502118187,58578.648008567834,10,5,10,10_1,10_3,10_1_0 +28050,1,23.0,270.0,5,111,720.0,0.0,0.0,0,38,0.0,0.0,1227.744391227884,720.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,15.0,2,,3,128072,1,1,0,0,1,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2675.09845397485,720.0,17091.01663830084,0,2,3,4,29.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04212739448082248,17091.01663830084,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +28051,2,36.0,0.0,1,111,315.0,666.0,0.0,38,38,0.0,0.0,537.1381711621992,981.0,0.0,1264.4036959278994,10,2,2,2,2,1,2,2,2,1,15.0,2,,1,128073,1,3,0,0,2,,0.0,625.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1019.50695684099,315.0,62660.3442252027,1,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.01565583483669135,29838.259154858428,8,4,8,8_0,8_4,8_1_0 +28052,2,57.0,0.0,7,111,750.0,,,46,22,0.0,0.0,,750.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,128074,1,1,0,0,2,,300.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,103.98134828551576,750.0,53800.957340539215,4,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013940272386842312,35867.30489369281,9,5,9,9_1,9_3,9_0_0 +28053,2,54.0,0.0,2,111,544.0,1200.0,0.0,54,64,0.0,0.0,927.6290955944013,1744.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,35.0,2,,2,128075,2,2,0,0,1,,487.0,,43,4.0,1.0,4.0,4.0,2.5,4,4,338.023113845718,544.0,86445.96268537093,1,1,1,2,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020174452870025512,34578.38507414838,9,5,9,9_0,9_3,9_0_1 +28054,2,70.0,0.0,2,111,233.0,258.0,0.0,74,74,0.0,0.0,397.31172660569024,491.0,0.0,489.81404436846555,10,0,0,0,0,0,0,0,0,0,,2,,2,128076,2,2,0,0,2,,218.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1646.70382402782,233.0,66254.72479066152,5,5,0,1,110.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.007410792234838556,44169.81652710768,10,5,10,10_0,10_2,10_0_1 +28055,2,63.0,0.0,6,300,1324.0,0.0,0.0,46,75,0.0,0.0,2257.685519424609,1324.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128077,2,1,2,0,1,,307.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1227.86688807028,1324.0,33895.364162034835,1,5,0,1,93.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039061388857505534,22596.909441356558,6,3,6,6_1,6_0,6_0_0 +28056,2,89.0,0.0,2,111,720.0,479.0,0.0,0,77,0.0,0.0,1227.744391227884,1199.0,0.0,909.3834389631589,60,0,0,0,0,0,0,0,0,0,,2,,2,128078,2,1,0,0,2,,0.0,477.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2475.91103874706,720.0,22248.268905755718,0,6,2,3,60.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05389183334123644,22248.268905755718,6,3,6,6_0,6_2,6_0_1 +28057,2,42.0,0.0,7,211,1392.0,,,46,37,0.0,0.0,,1392.0,0.0,,20,0,0,0,0,0,0,0,0,2,2.0,1,,5,128079,2,1,0,0,2,,600.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,81.93164320017853,1392.0,105609.7733315241,1,1,1,2,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013180598311013451,70406.5155543494,10,5,10,10_1,10_2,10_0_0 +28058,2,64.0,0.0,5,111,1957.0,0.0,0.0,74,75,0.0,0.0,3337.077463379124,1957.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,128080,2,1,2,0,1,,372.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,829.002312073147,1957.0,60408.03376752141,5,5,0,1,125.0,4,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032396353232277984,40272.02251168094,9,5,9,9_1,9_1,9_0_0 +28059,2,25.0,0.0,9,111,2500.0,0.0,0.0,52,62,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,128081,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,391.081878871824,2500.0,40442.49198808187,4,1,1,2,120.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061816170990074824,22468.05110448993,6,3,6,6_1,6_3,6_0_0 +28060,2,69.0,0.0,1,111,411.0,1372.0,0.0,77,78,0.0,0.0,700.8374233259171,1783.0,0.0,2604.7475537733903,71,0,0,0,0,0,0,0,0,0,,2,,1,128082,2,1,0,0,2,,172.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1768.96928784722,411.0,22059.669158949117,5,5,0,1,130.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08082623484299521,14706.446105966077,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +28061,1,32.0,446.0,6,111,1008.0,,,85,85,0.0,0.0,,1284.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,,4,128083,2,2,0,0,2,,1487.0,603.0,41,0.0,0.0,5.0,6.0,2.8999999999999995,3,2,129.43612041270708,1008.0,17739.266733963796,7,6,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07238179679330485,6116.988528953034,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28062,2,43.0,0.0,7,111,360.0,,,52,22,0.0,0.0,,748.0,537.6086194538501,,42,0,0,0,0,0,0,0,0,0,,1,,5,128084,2,1,0,0,1,,156.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,150.15980151648048,360.0,59111.0,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012654159124359257,28148.095238095237,8,4,8,8_1,8_2,8_0_0 +28063,2,42.0,0.0,8,111,1200.0,1200.0,0.0,54,38,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,3,5.0,1,2003.0,6,128085,2,1,1,0,1,,800.0,,43,2.0,0.0,8.0,6.0,2.8999999999999995,3,2,672.661928281774,1200.0,87287.62381008311,1,1,1,2,148.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027495306840083344,30099.180624166594,8,4,8,8_1,8_4,8_0_0 +28064,2,37.0,0.0,9,112,779.0,0.0,0.0,46,53,0.0,331.081819252556,1328.3512232868356,1029.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2010.0,6,128086,1,1,1,0,1,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,717.066684331825,779.0,52561.135433939504,1,1,1,2,90.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01957720265182018,25029.11211139976,7,4,7,7_1,7_0,7_0_0 +28065,1,44.0,377.0,2,111,450.0,1520.0,0.0,0,54,0.0,0.0,767.3402445174275,1970.0,0.0,2885.7261528684794,71,1,2,2,1,2,2,2,2,0,,2,,2,128087,1,2,0,0,1,,0.0,410.0,32,1.0,2.0,6.0,2.0,1.5,2,2,1767.41860016138,450.0,7477.52590266876,0,4,2,3,100.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.26345612514654065,4985.01726844584,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +28066,0,78.0,0.0,1,111,225.0,1032.0,0.0,78,78,0.0,0.0,383.6701222587138,1257.0,0.0,1959.2561774738622,71,1,2,2,1,2,2,2,2,0,,1,,1,128088,2,1,1,0,1,,348.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,241.027881666673,225.0,36600.327756201834,5,5,5,0,75.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03434395474196278,24400.218504134555,7,4,7,7_1,7_3,7_1_0 +28067,2,69.0,0.0,5,300,720.0,0.0,0.0,78,78,0.0,66.2163638505112,1227.744391227884,830.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,128089,2,1,2,0,1,,180.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1195.53079913856,720.0,36631.90881264185,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022657841944440607,24421.272541761235,7,4,7,7_1,7_0,7_0_0 +28068,2,34.0,0.0,9,111,0.0,0.0,1200.0,0,42,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,128090,2,1,1,0,1,,200.0,375.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1344.59309830332,0.0,17483.048051750637,0,1,2,3,65.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06863791693805017,17483.048051750637,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +28069,2,71.0,0.0,1,300,300.0,0.0,0.0,77,71,1160.1511361402618,0.0,511.56016301161833,1479.0,109.46154880632515,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128091,2,2,4,0,1,,275.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1991.85052143492,300.0,24285.338902814965,5,5,0,1,108.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06090094134237369,16190.225935209977,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +28070,2,56.0,0.0,1,111,0.0,0.0,1580.0,0,52,0.0,0.0,995.9028988552951,1580.0,0.0,1890.836793152196,60,0,0,0,0,0,0,0,0,3,50.0,1,,1,128092,2,2,1,0,1,,183.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,449.864850092977,0.0,26747.408283944496,0,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05907114376193289,26747.408283944496,7,4,7,7_1,7_3,7_1_0 +28071,1,42.0,274.0,6,111,1320.0,0.0,0.0,56,63,0.0,0.0,2250.864717251121,1320.0,0.0,0.0,30,2,2,2,2,1,2,2,2,2,20.0,2,,4,128093,2,3,0,0,1,,0.0,479.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1471.86252351062,1320.0,29303.75007691345,4,1,2,3,68.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.04504542922101781,13954.166703292118,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +28072,2,73.0,0.0,5,111,1157.0,0.0,0.0,0,78,0.0,2849.952300126002,1972.9170286814747,3399.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128094,2,1,1,0,1,,600.0,,11,0.0,9.0,6.0,1.0,1.0,1,1,472.884795395988,1157.0,15805.667367110756,0,5,0,1,110.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2150494453067394,15805.667367110756,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +28073,2,39.0,0.0,9,111,10809.0,,,21,52,0.0,26.486545540204478,,10921.0,127.47420873647992,,43,0,0,0,0,0,0,0,0,2,15.0,1,2013.0,6,128095,2,1,0,0,2,,424.0,,43,2.0,1.0,4.0,4.0,2.3,3,2,107.21503814815124,10809.0,43106.34475531313,1,1,1,2,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2533501752930215,18741.889024049186,5,3,5,5_1,5_2,5_0_0 +28074,2,80.0,0.0,1,300,1870.0,0.0,0.0,75,75,0.0,0.0,3188.7250161057545,1870.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128096,2,2,2,0,1,,251.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1593.80017935064,1870.0,43815.11731572255,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04267933340278818,29210.0782104817,8,4,8,8_1,8_0,8_1_0 +28075,2,56.0,0.0,2,111,250.0,125.0,0.0,35,38,0.0,0.0,426.3001358430153,375.0,0.0,237.31300599247362,12,2,2,2,2,1,2,2,2,2,35.0,2,,2,128097,1,2,0,1,1,,0.0,991.0,43,2.0,2.0,3.0,2.0,1.5,2,2,962.881546298041,250.0,60300.3495660566,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.006218869421133332,40200.23304403773,9,5,9,9_0,9_4,9_0_1 +28076,2,66.0,0.0,9,400,700.0,0.0,0.0,0,77,1792.9608467622227,0.0,1193.6403803604428,2496.0,133.01656563806603,0.0,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,128098,2,1,1,0,1,,160.0,,21,1.0,7.0,7.0,2.0,1.5,2,2,897.151229390975,700.0,14247.589926223713,0,5,1,2,160.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17518752384962546,9498.393284149142,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +28077,2,68.0,0.0,1,111,2500.0,0.0,0.0,77,74,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,128099,2,1,2,0,1,,490.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,577.89006068084,2500.0,49991.05343779977,5,5,0,1,150.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05000894816330622,33327.36895853318,8,4,8,8_1,8_4,8_1_0 +28078,2,53.0,0.0,1,112,1200.0,1800.0,0.0,46,46,0.0,0.0,2046.2406520464733,3000.0,0.0,3417.30728629162,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,128100,2,2,3,0,1,,350.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,3075.21199229107,1200.0,52447.02311704047,1,1,1,2,140.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.057200577300740546,34964.682078026985,9,5,9,9_1,9_1,9_1_0 +28079,1,32.0,304.0,2,111,0.0,,,0,52,0.0,0.0,,651.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,2,128101,2,2,0,0,2,,0.0,295.0,12,1.0,1.0,3.0,1.0,1.0,1,1,104.16988849296456,0.0,11788.037199828595,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.055225478929559695,11788.037199828595,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28080,1,76.0,183.0,8,111,648.0,,,0,77,0.0,0.0,,753.0,145.4868686666347,,50,0,0,0,0,0,0,0,0,0,,8,2001.0,6,128102,2,1,0,0,1,,720.0,560.0,11,0.0,6.0,2.0,1.0,1.0,1,1,155.92939188026895,648.0,11066.620386556438,0,5,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06804245322399717,11066.620386556438,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +28081,2,50.0,0.0,8,111,900.0,,,75,52,0.0,0.0,,992.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,128103,2,1,0,0,2,,800.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,56.56160744096419,900.0,95280.83852351244,5,1,0,1,200.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010411327349467063,63520.55901567496,10,5,10,10_1,10_2,10_0_0 +28082,2,68.0,0.0,1,300,751.0,0.0,0.0,86,86,1054.6828510366015,132.4327277010224,1280.605608072418,1881.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128104,2,1,2,0,1,,147.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1140.49675355573,751.0,30725.6255283698,5,5,0,1,210.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06121925811610318,20483.750352246534,5,3,5,5_1,5_0,5_1_0 +28083,2,74.0,0.0,7,111,409.0,1150.0,0.0,77,75,0.0,0.0,697.427022239173,1559.0,0.0,2183.2796551307574,31,0,0,0,0,0,0,0,0,0,,1,,5,128105,2,1,2,0,1,,286.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1024.28366931982,409.0,31706.841282593454,6,5,0,1,134.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04916919935685508,21137.894188395636,5,3,5,5_1,5_3,5_0_0 +28084,2,42.0,0.0,1,112,3459.0,0.0,0.0,56,21,0.0,476.7578197236806,5898.288679523959,3819.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,128106,2,1,1,0,1,,262.0,,43,2.0,8.0,7.0,4.0,2.3,3,3,1676.48483585098,3459.0,73878.11777157105,4,1,1,2,170.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0516932498444023,32120.920770248285,8,4,8,8_1,8_0,8_1_0 +28085,0,73.0,0.0,7,400,288.0,,,0,86,0.0,0.0,,311.0,31.86855218411998,,41,0,0,0,0,0,0,0,0,0,,1,,5,128107,2,1,0,0,2,,140.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,4.571849354819069,288.0,36415.595022357404,0,5,5,0,110.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00854029708450627,36415.595022357404,9,5,9,9_1,9_1,9_0_0 +28087,2,67.0,0.0,2,111,0.0,2400.0,0.0,64,64,0.0,0.0,0.0,2441.0,0.0,4556.4097150554935,50,2,2,2,1,1,2,1,2,0,,2,,2,128109,1,3,0,0,1,,508.0,316.0,43,2.0,6.0,3.0,2.0,1.5,2,2,1155.50355749232,0.0,21899.2336658557,1,1,2,3,70.0,9,7,4,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.11146508764851884,14599.489110570466,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +28088,2,40.0,0.0,9,120,753.0,0.0,0.0,54,62,1898.4291318658827,0.0,1284.016009159162,2553.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,128110,2,1,1,0,1,,603.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1577.03219277348,753.0,48887.0305242707,1,1,1,2,140.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05222243962501516,20369.59605177946,5,3,5,5_1,5_0,5_0_0 +28089,2,57.0,0.0,1,112,720.0,0.0,0.0,68,46,0.0,423.78472864327165,1227.744391227884,4488.0,4777.511649167204,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,128111,2,3,3,0,1,,330.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,846.137209892864,720.0,58193.829529792594,1,1,1,2,140.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07712157863235909,38795.88635319506,9,5,9,9_1,9_0,9_1_0 +28090,2,57.0,0.0,1,111,677.0,1350.0,0.0,0,54,0.0,0.0,1154.4207678628854,2027.0,0.0,2562.980464718715,43,0,0,0,0,0,0,0,0,2,10.0,1,,1,128112,2,2,3,0,1,,600.0,526.0,22,2.0,0.0,4.0,2.0,1.5,2,2,251.48185989675,677.0,43304.05705681473,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04680854723012638,28869.37137120982,8,4,8,8_1,8_3,8_1_0 +28091,2,40.0,0.0,6,112,1700.0,0.0,0.0,0,45,0.0,17.21625460113291,2898.840923732504,1738.0,34.63973063491302,0.0,60,1,2,2,1,1,2,2,2,2,60.0,1,,4,128113,2,1,3,0,1,,280.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1595.78191754481,1700.0,38591.48362156381,0,1,1,2,150.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04503584306431939,38591.48362156381,9,5,9,9_1,9_2,9_0_0 +28092,2,85.0,0.0,5,111,440.0,0.0,0.0,0,86,0.0,0.0,750.2882390837069,440.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,128114,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,961.218261834576,440.0,96133.93407446971,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004576947820102276,96133.93407446971,10,5,10,10_0,10_4,10_0_0 +28093,2,39.0,0.0,1,111,800.0,0.0,0.0,0,62,0.0,132.4327277010224,1364.160434697649,945.0,62.351515142843446,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,128115,1,2,0,0,1,,0.0,258.0,12,1.0,0.0,5.0,1.0,1.0,1,1,1755.25361757282,800.0,24010.658415347858,0,1,2,3,100.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03935752129962194,24010.658415347858,6,3,6,6_0,6_3,6_1_0 +28094,1,47.0,355.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1317.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,128116,1,3,0,1,1,829.0,446.0,321.0,32,1.0,1.0,5.0,4.0,2.3,3,3,255.044029220222,0.0,24106.20723050794,0,4,2,3,77.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05463323149123404,10480.959665438235,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28095,2,44.0,0.0,1,111,1080.0,360.0,0.0,84,34,0.0,0.0,1841.6165868418261,1440.0,0.0,683.461457258324,10,0,0,0,0,0,0,0,0,3,40.0,2,,1,128117,1,2,0,0,1,,0.0,730.0,42,1.0,1.0,3.0,3.0,1.8,2,2,863.266279894461,1080.0,46824.18623086056,3,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030753337450442113,26013.436794922534,7,4,7,7_0,7_4,7_1_0 +28096,2,68.0,0.0,2,112,1100.0,0.0,0.0,0,77,0.0,0.0,1875.7205977092674,1150.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128118,2,2,2,0,2,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,296.902595874536,1100.0,31244.27098321318,0,5,0,1,90.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03680674772721912,31244.27098321318,8,4,8,8_1,8_0,8_0_1 +28097,2,35.0,0.0,1,111,1200.0,0.0,0.0,0,63,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,1,128119,2,2,0,0,1,,0.0,619.0,32,1.0,0.0,3.0,2.0,1.3,1,1,232.27154268777,1200.0,22693.19802906563,0,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05287928120413132,17456.30617620433,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +28098,2,58.0,0.0,2,111,600.0,0.0,0.0,85,69,0.0,0.0,1023.1203260232367,960.0,498.81212114274757,0.0,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,128120,1,1,0,1,1,960.0,600.0,332.0,42,4.0,3.0,4.0,5.0,3.0,5,5,340.567650244797,600.0,38724.76009548888,6,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024790340795728578,12908.253365162958,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +28099,1,33.0,169.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,542.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,128121,2,1,0,1,1,,626.0,495.0,32,1.0,0.0,3.0,2.0,1.3,1,1,342.696578822343,0.0,14715.85172759249,0,1,2,3,65.0,7,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03683103160000859,11319.885944301916,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28100,1,39.0,380.0,1,111,1200.0,0.0,0.0,85,21,0.0,0.0,2046.2406520464733,1325.0,173.19865317456512,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,128122,2,2,2,0,1,,245.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,964.978518544053,1200.0,26117.266499511945,6,1,1,2,95.0,5,4,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0.050732721206668406,10882.194374796643,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +28101,2,67.0,0.0,5,111,300.0,1000.0,0.0,0,77,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,2,,3,128123,1,2,0,0,2,,240.0,343.0,11,0.0,1.0,3.0,1.0,1.0,1,1,558.263534953907,300.0,24039.406340057638,0,5,2,3,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.054077874536933475,24039.406340057638,6,3,6,6_0,6_2,6_0_0 +28102,2,53.0,0.0,1,111,594.0,1610.0,0.0,52,62,0.0,0.0,1012.8891227630044,2204.0,0.0,3056.59151718306,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,128124,2,1,4,0,1,,772.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,1178.02212913137,594.0,47085.63137452159,1,1,0,1,110.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04680833484995174,18834.252549808636,5,3,5,5_1,5_3,5_1_0 +28103,2,59.0,0.0,7,111,300.0,,,0,54,0.0,0.0,,300.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,128125,2,1,0,0,2,,160.0,,22,1.0,1.0,6.0,3.0,2.0,3,3,121.59573901171224,300.0,43955.27795878017,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006825118937510309,21977.638979390085,6,3,6,6_1,6_2,6_0_0 +28104,1,56.0,338.0,6,111,256.0,0.0,0.0,75,77,0.0,843.5964754555126,436.53133910324766,893.0,0.0,0.0,71,2,1,2,2,2,2,2,1,0,,2,,4,128126,2,1,0,1,1,637.0,0.0,328.0,41,0.0,1.0,2.0,2.0,1.5,2,2,982.25017656244,256.0,19941.245322048006,5,7,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04478155629591779,13294.163548032004,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +28105,2,59.0,0.0,1,112,1140.0,0.0,0.0,0,75,0.0,17.21625460113291,1943.9286194441497,1153.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128127,2,2,2,0,1,,545.0,,31,0.0,3.0,3.0,2.0,1.5,2,2,750.581504999361,1140.0,16821.637605396827,0,5,1,2,60.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06854267266048385,11214.425070264551,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +28106,2,66.0,0.0,6,111,2000.0,0.0,0.0,0,21,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,3.0,2,,4,128128,2,1,0,0,1,,0.0,,32,2.0,3.0,3.0,2.0,1.5,2,2,855.256840749278,2000.0,33333.8219714462,0,1,1,2,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.059999120464290075,22222.547980964137,6,3,6,6_0,6_4,6_0_0 +28107,2,65.0,0.0,5,300,355.0,0.0,0.0,0,78,1603.1179335756344,0.0,605.3461928970817,1935.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128129,2,1,2,0,1,,260.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1239.97381120469,355.0,10202.885731530268,0,6,0,1,95.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.18965222692048922,10202.885731530268,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +28108,1,51.0,254.0,1,221,500.0,0.0,0.0,0,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128130,2,2,0,0,1,,58.0,355.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2752.75759966829,500.0,7276.936680303517,0,4,2,3,45.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06871023096206813,7276.936680303517,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +28109,2,41.0,0.0,2,111,250.0,0.0,0.0,84,34,0.0,0.0,426.3001358430153,553.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,,2,128131,1,3,0,1,2,660.0,0.0,650.0,42,1.0,0.0,1.0,2.0,1.5,2,2,1996.75869473659,250.0,35961.4707891976,3,1,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.015377569044426144,23974.313859465066,6,3,6,6_0,6_3,6_0_1 +28110,1,43.0,69.0,2,111,374.0,182.0,0.0,0,55,0.0,0.0,637.7450032211509,556.0,0.0,345.5277367250416,71,2,2,2,2,1,2,2,2,1,15.0,2,,2,128132,1,3,0,1,2,684.0,0.0,389.0,32,1.0,0.0,3.0,3.0,2.0,3,3,173.778905829173,374.0,28592.57199359873,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01944560986414502,14296.285996799365,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +28111,2,49.0,0.0,9,111,1100.0,0.0,0.0,34,42,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,1,2012.0,6,128133,2,1,1,0,1,,320.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,260.11994364649,1100.0,63640.376431119825,1,1,1,2,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017284624348357962,30304.941157676105,8,4,8,8_1,8_4,8_0_0 +28112,2,56.0,0.0,1,111,800.0,3000.0,0.0,37,23,0.0,0.0,1364.160434697649,3800.0,0.0,5695.512143819367,20,0,0,0,0,0,0,0,0,2,4.0,1,,1,128134,2,2,2,0,2,,700.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,263.443913158849,800.0,253393.30549018452,1,1,0,1,250.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014996449857461595,168928.87032678968,10,5,10,10_1,10_3,10_1_0 +28113,2,31.0,0.0,2,111,200.0,0.0,0.0,42,34,0.0,0.0,341.04010867441224,200.0,0.0,0.0,10,2,2,1,2,1,2,2,2,2,30.0,2,,2,128135,2,1,0,1,1,485.0,0.0,521.0,43,2.0,0.0,2.0,2.0,1.5,2,2,348.90682234283,200.0,50583.9848238062,1,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.003953820575754138,33722.65654920413,9,5,9,9_0,9_3,9_0_1 +28114,2,38.0,0.0,2,111,800.0,850.0,0.0,63,62,0.0,0.0,1364.160434697649,1650.0,0.0,1613.7284407488207,50,2,2,2,1,2,2,2,2,2,10.0,1,,2,128136,2,2,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,409.452259450971,800.0,38326.8739956184,1,1,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.04305073250139396,18250.892378865905,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +28115,2,32.0,0.0,9,400,979.0,0.0,0.0,46,62,0.0,0.0,1669.391331961248,979.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,128137,2,1,1,0,1,,208.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,2051.44193948936,979.0,35690.46443697129,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02743029589118674,23793.64295798086,6,3,6,6_1,6_0,6_0_0 +28116,2,56.0,0.0,6,112,1600.0,0.0,0.0,52,78,0.0,158.91927324122688,2728.320869395298,1724.0,5.542356901586084,0.0,71,2,2,1,1,2,1,2,2,0,,1,,4,128138,1,2,3,0,1,,400.0,454.0,42,1.0,1.0,4.0,2.0,1.5,2,2,1125.62284762212,1600.0,25778.35937142478,1,7,2,3,72.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.066877801459741,17185.572914283188,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +28117,2,59.0,0.0,6,112,480.0,0.0,0.0,11,11,0.0,0.0,818.4962608185893,536.0,77.59299662220518,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,128139,2,1,2,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1012.53688116386,480.0,31804.424086643194,1,1,0,1,100.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016853001284972247,21202.949391095462,5,3,5,5_1,5_0,5_0_0 +28118,2,62.0,0.0,1,111,700.0,0.0,0.0,78,78,0.0,741.6232751257254,1193.6403803604428,1390.0,180.1265993015477,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128140,2,1,1,0,1,,150.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,964.375150443906,700.0,22885.297851887488,6,5,0,1,80.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06073768447306262,15256.865234591658,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +28119,2,67.0,0.0,1,112,391.0,0.0,0.0,0,77,0.0,0.0,666.7334124584759,819.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128141,1,2,2,0,1,,192.0,250.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1619.24748613889,391.0,19077.532635039854,0,5,2,3,80.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04293007988337739,19077.532635039854,5,3,5,5_1,5_0,5_1_0 +28120,1,80.0,168.0,2,111,480.0,,,0,78,0.0,0.0,,555.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,0,,8,,2,128142,2,2,0,0,2,,375.0,258.0,11,0.0,1.0,4.0,1.0,1.0,1,1,90.4752543870714,480.0,10959.0,0,5,2,3,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05064330687106488,10959.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28121,2,65.0,0.0,2,111,1195.0,1797.0,0.0,77,78,0.0,0.0,2037.7146493296132,2992.0,0.0,3411.611774147801,50,0,0,0,0,0,0,0,0,0,,1,,2,128143,2,1,1,0,1,,350.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,604.22884083373,1195.0,82079.67886228696,5,5,0,1,200.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03645238433522588,54719.78590819131,10,5,10,10_1,10_2,10_0_1 +28122,2,30.0,0.0,1,111,0.0,0.0,900.0,34,37,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,10,0,0,0,0,0,0,0,0,2,45.0,2,,1,128144,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,877.464674216533,0.0,87991.82512295792,1,1,1,2,83.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010228222891642024,48884.347290532176,10,5,10,10_0,10_4,10_1_0 +28123,2,33.0,0.0,9,111,240.0,800.0,0.0,22,37,0.0,0.0,409.2481304092947,1040.0,0.0,1518.8032383518312,10,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,128145,2,2,0,0,1,,280.0,800.0,43,2.0,0.0,4.0,2.0,1.5,2,2,2198.9156149754,240.0,61416.0,1,1,3,4,75.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016933698059137685,40944.0,9,5,9,9_0,9_2,9_0_0 +28124,1,56.0,246.0,9,111,180.0,,,0,56,0.0,0.0,,264.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,128146,2,1,0,0,2,,200.0,252.0,12,1.0,3.0,2.0,1.0,1.0,1,1,100.92893851759035,180.0,5241.0,0,4,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05037206639954207,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28125,1,42.0,254.0,2,112,860.0,770.0,0.0,0,54,0.0,0.0,1466.4724672999725,1630.0,0.0,1461.8481169136376,50,2,2,2,2,1,2,2,2,0,,1,,2,128147,1,2,5,0,1,,0.0,414.0,12,1.0,0.0,5.0,1.0,1.0,1,1,2254.859520048,860.0,7204.897959183673,0,4,2,3,90.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.22623498753682303,7204.897959183673,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +28126,2,61.0,0.0,6,111,500.0,,,56,52,0.0,33.1081819252556,,665.0,193.98249155551292,,70,0,0,0,0,0,0,0,0,2,30.0,1,,4,128148,2,1,0,0,2,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,74.03644617204739,500.0,54831.12151485671,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012128148789001435,36554.081009904476,9,5,9,9_1,9_2,9_0_0 +28127,1,39.0,367.0,9,111,612.0,305.0,0.0,62,55,0.0,0.0,1043.5827325437015,917.0,0.0,579.0437346216356,60,0,0,0,0,0,0,0,0,3,30.0,2,2007.0,6,128149,2,1,0,0,1,,720.0,592.0,43,2.0,0.0,4.0,5.0,2.8,4,3,731.752168246548,612.0,48701.62730949788,4,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.018828939619871077,17393.438324820672,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +28128,1,41.0,620.0,7,111,1200.0,,,0,68,0.0,0.0,,1430.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,2,45.0,2,,5,128150,2,2,0,0,2,,600.0,750.0,32,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,7.552813844411952,1200.0,24906.001107160002,0,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05741588117045824,9579.23119506154,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28129,2,85.0,0.0,1,112,0.0,0.0,0.0,0,86,0.0,0.0,0.0,2092.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,128151,2,1,3,0,1,,144.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,2346.06194687463,0.0,22378.86414298054,0,5,0,1,70.0,7,2,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0934810626059494,22378.86414298054,6,3,6,6_1,6_1,6_1_0 +28130,2,34.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,775.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128152,1,3,0,1,2,439.0,0.0,511.0,12,1.0,1.0,2.0,1.0,1.0,1,1,362.741217798715,0.0,14766.510332483875,0,1,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05248362561973281,14766.510332483875,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +28132,0,88.0,0.0,5,221,324.0,0.0,0.0,0,72,0.0,0.0,552.4849760525478,688.0,504.35447804433363,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,128154,2,1,0,1,1,,218.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,780.712371108083,324.0,8626.113462128955,0,5,0,1,40.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07975781944215225,8626.113462128955,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +28133,2,37.0,0.0,7,112,1020.0,0.0,0.0,0,46,0.0,0.0,1739.3045542395023,1020.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,90.0,2,,5,128155,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,733.379491889751,1020.0,26769.000000000004,0,1,1,2,83.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03810377675669617,26769.000000000004,7,4,7,7_0,7_1,7_0_0 +28134,2,39.0,0.0,7,221,660.0,,,0,52,0.0,0.0,,924.0,365.79555550468154,,43,0,0,0,0,0,0,0,0,0,,1,,5,128156,1,2,0,0,2,,600.0,,22,4.0,0.0,5.0,6.0,3.5,6,5,152.52228273801052,660.0,46687.061927626186,0,1,0,1,64.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01979135036238467,13339.16055075034,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +28135,2,65.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,360.0,83.13535352379125,0.0,44,2,1,2,1,1,2,2,2,0,,2,,2,128157,1,2,0,1,1,755.0,0.0,333.0,11,0.0,4.0,3.0,1.0,1.0,1,1,359.791274045249,300.0,13399.270096463022,0,5,2,3,62.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02686713510574195,13399.270096463022,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +28136,2,36.0,0.0,9,400,800.0,0.0,0.0,12,46,0.0,397.2981831030672,1364.160434697649,1100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,128158,2,1,1,0,1,,150.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1765.41196580234,800.0,51751.06451297052,1,1,1,2,105.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02125560141326762,34500.70967531368,9,5,9,9_1,9_0,9_0_0 +28137,2,66.0,0.0,2,111,265.0,1680.0,0.0,0,75,0.0,0.0,451.8781439935962,1945.0,0.0,3189.4868005388457,10,0,0,0,0,0,0,0,0,0,,2,,2,128159,2,3,0,0,1,,0.0,1009.0,11,0.0,4.0,4.0,1.0,1.0,1,1,1782.22514501857,265.0,86078.34477351292,0,5,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022595694714130865,86078.34477351292,10,5,10,10_0,10_4,10_0_1 +28138,2,57.0,0.0,7,111,400.0,,,0,42,0.0,0.0,,400.0,0.0,,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,128160,2,2,0,0,1,,200.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,141.3353637544598,400.0,36908.41049739763,0,1,0,1,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010837638213333613,36908.41049739763,9,5,9,9_0,9_2,9_0_0 +28139,2,72.0,0.0,1,400,250.0,0.0,0.0,77,78,0.0,2330.816007537994,426.3001358430153,2470.0,637.3710436823997,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128161,2,2,3,0,2,,80.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1326.49115808739,250.0,23316.0,5,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10593583805112369,15544.0,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +28140,1,50.0,218.0,5,111,200.0,500.0,0.0,0,56,0.0,0.0,341.04010867441224,700.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,2,,3,128162,2,1,0,0,1,,120.0,307.0,12,1.0,0.0,4.0,1.0,1.0,1,1,271.460212358339,200.0,15554.0,0,4,2,3,60.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045004500450045004,15554.0,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +28141,1,36.0,201.0,6,221,2000.0,0.0,0.0,85,63,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,4,128163,1,3,3,0,2,,590.0,365.0,42,1.0,0.0,3.0,3.0,1.8,2,2,537.769292914643,2000.0,15827.478888657675,6,1,2,3,68.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12636251256877332,8793.043827032041,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +28142,2,58.0,0.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,3373.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,30.0,2,,3,128164,2,1,0,0,1,,185.0,312.0,12,1.0,1.0,3.0,1.0,1.0,1,1,280.194359976143,0.0,11283.622245769915,0,1,2,3,70.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2989288303465223,11283.622245769915,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +28143,2,62.0,0.0,5,112,780.0,0.0,0.0,75,78,0.0,794.5963662061343,1330.0564238302077,2130.0,1039.1919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,128165,2,1,2,0,1,,240.0,,41,0.0,6.0,5.0,3.0,2.0,3,3,1398.06082810953,780.0,42143.7429629451,5,5,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05054131053031533,21071.87148147255,5,3,5,5_1,5_0,5_0_0 +28144,2,91.0,0.0,2,111,290.0,,,0,77,0.0,0.0,,359.0,95.60565655235995,,70,0,0,0,0,0,0,0,0,0,,1,,2,128166,2,1,0,0,2,,400.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,95.21325185096661,290.0,14640.890693233589,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02452036611173628,14640.890693233589,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28145,2,55.0,0.0,7,112,780.0,,,0,45,0.0,0.0,,780.0,0.0,,71,0,0,0,0,0,0,0,0,2,50.0,1,,5,128167,2,1,0,0,1,,432.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,128.15358334685575,780.0,32668.897525598746,0,1,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02387592049559696,32668.897525598746,8,4,8,8_1,8_2,8_0_0 +28146,1,31.0,253.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,1213.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,128168,2,1,0,0,1,,0.0,380.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1925.49190622125,0.0,13184.65322821793,0,1,2,3,78.0,6,4,7,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.09200090279234079,13184.65322821793,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +28147,2,27.0,0.0,5,111,480.0,,,0,81,0.0,158.91927324122688,,705.0,145.4868686666347,,71,0,0,0,0,0,0,0,0,0,,1,,3,128169,2,1,0,0,2,,180.0,,32,1.0,4.0,4.0,4.0,2.1,2,2,130.63446578750373,480.0,16999.59442599574,0,4,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04147157763492967,8095.044964759875,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28148,2,89.0,0.0,2,111,120.0,75.0,0.0,0,77,0.0,0.0,204.62406520464734,195.0,0.0,142.38780359548417,70,0,0,0,0,0,0,0,0,0,,2,,2,128170,1,2,0,1,2,504.0,60.0,542.0,11,0.0,0.0,3.0,1.0,1.0,1,1,380.004594775494,120.0,14285.224618623091,0,5,2,3,63.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01365046789294346,14285.224618623091,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +28149,2,82.0,0.0,7,111,900.0,0.0,0.0,75,78,0.0,0.0,1534.680489034855,900.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,128171,2,1,0,0,1,,590.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1761.09779425604,900.0,33659.91788230157,5,5,0,1,48.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.026738033145149807,22439.94525486771,6,3,6,6_0,6_3,6_0_0 +28150,1,49.0,53.0,2,111,200.0,240.0,0.0,0,56,0.0,0.0,341.04010867441224,440.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,2,40.0,2,,2,128172,2,1,0,1,1,433.0,200.0,237.0,12,1.0,0.0,2.0,1.0,1.0,1,1,326.931150720836,200.0,15251.7753827267,0,1,2,3,40.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028849100446254876,15251.7753827267,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +28151,2,54.0,0.0,6,111,540.0,,,68,56,0.0,0.0,,678.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,4,128173,1,2,0,0,2,,400.0,,43,3.0,3.0,4.0,4.0,2.3,3,3,81.94290212958164,540.0,23380.052271430053,4,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0289990797338166,10165.240118013067,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +28152,2,55.0,0.0,2,111,600.0,0.0,0.0,0,46,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,60.0,2,,2,128174,2,2,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1391.71345542955,600.0,28497.692742343024,0,1,1,2,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.021054336062389212,28497.692742343024,8,4,8,8_0,8_4,8_0_1 +28153,2,51.0,0.0,1,111,270.0,90.0,0.0,90,52,0.0,0.0,460.40414671045653,360.0,0.0,170.865364314581,20,0,0,0,0,0,0,0,0,1,10.0,2,,1,128175,1,3,0,1,1,612.0,0.0,201.0,43,2.0,0.0,3.0,4.0,2.5,4,3,168.306182595765,270.0,49777.37237224978,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00723220175841775,19910.948948899913,5,3,5,5_0,5_4,5_1_0 +28154,2,37.0,0.0,2,111,250.0,320.0,0.0,0,42,0.0,0.0,426.3001358430153,570.0,0.0,607.5212953407324,10,0,0,0,0,0,0,0,0,0,,2,,2,128176,2,2,0,0,1,,240.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1585.16558336154,250.0,24095.820675524108,0,1,1,2,55.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02365555453269914,24095.820675524108,6,3,6,6_0,6_2,6_0_1 +28155,2,57.0,0.0,7,111,1800.0,0.0,0.0,75,37,0.0,397.2981831030672,3069.36097806971,2100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,,5,128177,1,1,3,0,1,,580.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,464.391722766722,1800.0,76218.30746498302,5,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02755243549543268,50812.20497665535,10,5,10,10_1,10_4,10_0_0 +28156,2,71.0,0.0,5,111,450.0,,,0,72,0.0,0.0,,510.0,83.13535352379125,,60,0,0,0,0,0,0,0,0,0,,1,,3,128178,2,1,0,0,2,,450.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,122.59751047593653,450.0,92833.7994528008,0,5,0,1,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005493688753515876,61889.19963520053,10,5,10,10_1,10_2,10_0_0 +28157,2,66.0,0.0,2,112,430.0,0.0,0.0,71,75,2636.7071275915036,0.0,733.2362336499863,3080.0,207.83838380947813,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,128179,2,1,1,0,2,,300.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1552.40029896822,430.0,42664.963003187404,5,5,0,1,160.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07219038253402212,28443.308668791604,8,4,8,8_1,8_0,8_0_1 +28158,2,41.0,0.0,2,112,600.0,0.0,0.0,0,21,2109.365702073203,0.0,1023.1203260232367,2645.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128180,2,1,1,0,1,,360.0,,32,1.0,0.0,5.0,4.0,2.1,2,1,773.341763461083,600.0,11364.425595388928,0,1,0,1,180.0,7,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.23274383538339136,5411.631235899489,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +28159,0,38.0,0.0,9,111,1200.0,,,85,53,0.0,0.0,,1270.0,96.99124577775646,,10,0,0,0,0,0,0,0,0,0,,1,2007.0,6,128181,2,1,0,0,2,,300.0,,42,1.0,0.0,6.0,6.0,2.6999999999999997,2,2,111.43404454692346,1200.0,73103.94541207247,6,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01737252336848937,27075.53533780462,7,4,7,7_1,7_2,7_0_0 +28160,2,33.0,0.0,5,111,600.0,0.0,0.0,0,46,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,128182,1,1,0,0,1,,0.0,685.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1105.26515825302,600.0,32394.50009642569,3,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018521662572783523,21596.333397617127,6,3,6,6_0,6_4,6_0_0 +28161,2,54.0,0.0,7,111,552.0,130.0,0.0,56,46,0.0,0.0,941.2706999413778,682.0,0.0,246.80552623217258,71,0,0,0,0,0,0,0,0,0,,2,,5,128183,1,1,0,1,1,,0.0,477.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,3,512.373272099793,552.0,40328.742786005125,1,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01691101564010737,15511.05491769428,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +28162,2,25.0,0.0,2,111,205.0,1025.0,0.0,46,68,0.0,0.0,349.56611139127256,1230.0,0.0,1945.9666491382836,43,2,2,2,1,2,2,2,2,2,15.0,2,,2,128184,2,1,0,0,2,,220.0,611.0,43,2.0,0.0,3.0,2.0,1.5,2,2,397.618420168311,205.0,30513.863958116708,1,1,2,3,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04030954590635576,20342.575972077804,5,3,5,5_0,5_3,5_0_1 +28163,2,52.0,0.0,5,111,1000.0,,,77,63,0.0,0.0,,1264.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,,3,128185,2,1,0,0,2,,600.0,,42,2.0,2.0,5.0,6.0,3.0999999999999996,4,4,88.25294086842125,1000.0,67735.79626551928,6,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018660738777547016,21850.256859844932,6,3,6,6_1,6_2,6_0_0 +28164,1,36.0,55.0,9,112,1500.0,0.0,0.0,54,63,0.0,0.0,2557.8008150580918,1710.0,290.9737373332694,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,128186,2,1,1,0,1,,450.0,600.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1250.75661314703,1500.0,38161.59181683912,4,1,2,3,80.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04480945156080853,18172.1865794472,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +28165,2,69.0,0.0,1,112,1070.0,0.0,0.0,0,22,0.0,0.0,1824.5645814081054,3920.0,3948.929292380085,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,128187,2,1,1,0,1,,250.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1192.93573910722,1070.0,35339.91939004962,0,5,1,2,80.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11092272047184475,35339.91939004962,9,5,9,9_1,9_0,9_1_0 +28166,2,67.0,0.0,6,300,581.0,,,75,74,0.0,0.0,,673.0,127.47420873647992,,70,0,0,0,0,0,0,0,0,0,,2,,4,128188,2,2,0,0,2,,860.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,74.95249752963274,581.0,68263.11522373269,5,5,0,1,184.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0098589113285299,45508.74348248846,10,5,10,10_0,10_1,10_0_0 +28167,1,64.0,136.0,1,112,1000.0,0.0,0.0,86,78,0.0,0.0,1705.2005433720612,1132.0,182.89777775234077,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128189,2,1,3,0,1,,936.0,336.0,41,2.0,3.0,4.0,4.0,2.5,4,4,175.700698442233,1000.0,31991.116822113087,6,5,2,3,121.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03538482280235782,12796.446728845234,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +28168,1,24.0,307.0,1,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,279.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,,1,128190,2,2,0,1,1,,0.0,470.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1149.74184448511,0.0,10960.255070294483,0,1,3,4,15.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025455611955252037,10960.255070294483,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +28169,2,51.0,0.0,1,120,300.0,0.0,0.0,0,63,2109.365702073203,0.0,511.56016301161833,2300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128191,2,1,3,0,1,,240.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,976.394799477934,300.0,40411.43709118622,0,1,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.056914580761138846,40411.43709118622,9,5,9,9_1,9_0,9_1_0 +28170,2,49.0,0.0,2,111,283.0,0.0,0.0,0,34,0.0,0.0,482.5717537742933,283.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,2,128192,1,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1287.53803831805,283.0,40635.97545705666,0,1,1,2,37.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0069642723428423444,40635.97545705666,9,5,9,9_0,9_4,9_0_1 +28171,0,57.0,0.0,8,111,900.0,,,0,33,0.0,0.0,,900.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,128193,2,1,0,0,2,,500.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,130.17734955878257,900.0,183385.10358232484,0,1,5,0,66.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004907705055748838,183385.10358232484,10,5,10,10_0,10_3,10_0_0 +28172,2,59.0,0.0,2,400,960.0,,,81,52,0.0,0.0,,1080.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,128194,2,2,0,0,2,,260.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,21.221823116462247,960.0,32875.22980983983,4,1,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032851481381181005,21916.819873226556,6,3,6,6_1,6_1,6_0_1 +28173,2,58.0,0.0,6,112,1100.0,0.0,0.0,68,56,2636.7071275915036,0.0,1875.7205977092674,4020.0,581.9474746665388,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128195,2,1,2,0,1,,513.0,,43,2.0,3.0,9.0,2.0,1.5,2,2,81.3715102009549,1100.0,29107.567662981364,1,1,1,2,140.0,7,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13810841381681593,19405.04510865424,5,3,5,5_1,5_0,5_0_0 +28174,1,49.0,109.0,6,111,600.0,0.0,0.0,0,63,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,2,1,2,2,1,2,2,2,1,15.0,2,,4,128196,2,2,0,1,1,,0.0,547.0,32,2.0,7.0,3.0,2.0,1.5,2,2,140.680524130422,600.0,24649.56781756641,0,1,2,3,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.024341197559350818,16433.04521171094,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +28175,2,49.0,0.0,2,111,480.0,1000.0,0.0,54,22,0.0,0.0,818.4962608185893,1555.0,103.91919190473907,1898.504047939789,31,0,0,0,0,0,0,0,0,0,,1,,2,128197,2,1,3,0,1,,400.0,,43,2.0,2.0,3.0,3.0,2.0,3,2,543.62126857809,480.0,44574.121185819284,4,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03488571302432552,22287.060592909642,6,3,6,6_1,6_3,6_0_1 +28176,2,56.0,0.0,1,400,1830.0,0.0,0.0,0,13,527.3414255183008,264.8654554020448,3120.516994370872,2605.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128198,2,2,4,0,2,,810.0,,22,3.0,0.0,8.0,4.0,2.5,4,4,1546.45230198253,1830.0,63446.42248205261,0,1,0,1,182.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04105826456545897,25378.56899282104,7,4,7,7_1,7_0,7_1_0 +28177,2,59.0,0.0,2,111,600.0,0.0,0.0,0,68,1898.4291318658827,0.0,1023.1203260232367,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128199,2,1,1,0,1,,430.0,,12,1.0,1.0,6.0,1.0,1.0,1,1,286.653671486877,600.0,14682.004073963466,0,1,0,1,80.0,7,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.16346542256149302,14682.004073963466,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28178,2,32.0,0.0,5,120,1080.0,0.0,0.0,55,63,0.0,0.0,1841.6165868418261,1130.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,128200,2,2,1,0,1,,468.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1723.74284454037,1080.0,41526.47247086236,1,1,1,2,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027211557658620787,19774.510700410647,5,3,5,5_1,5_1,5_0_0 +28179,2,70.0,0.0,2,112,1452.0,0.0,0.0,77,78,0.0,662.163638505112,2475.951188976233,1952.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128201,2,1,2,0,1,,516.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,849.522412225839,1452.0,36700.817438286125,6,5,0,1,85.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05318682624119654,24467.211625524084,7,4,7,7_1,7_0,7_0_1 +28180,2,44.0,0.0,9,111,828.0,695.0,0.0,55,67,0.0,0.0,1411.9060499120667,1523.0,0.0,1319.4603133181533,71,0,0,0,0,0,0,0,0,1,10.0,1,2005.0,6,128202,1,1,2,0,1,,732.0,514.0,43,3.0,0.0,5.0,5.0,3.0,5,4,479.094852359683,828.0,39417.59642070927,1,1,2,3,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038637566424518065,13139.19880690309,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +28181,2,42.0,0.0,1,111,0.0,0.0,1900.0,0,46,0.0,92.70290939071567,1197.6047517880133,1970.0,0.0,2273.7910803728937,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,128203,2,1,2,0,1,,120.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1275.36837989343,0.0,54517.114315323466,0,1,1,2,145.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.036135441590060095,54517.114315323466,10,5,10,10_1,10_3,10_1_0 +28182,2,64.0,0.0,5,111,700.0,0.0,0.0,0,78,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,128204,2,1,0,0,1,,169.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1459.62025885499,700.0,4711.704671410954,0,7,0,1,73.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.1485661875726986,4711.704671410954,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +28183,2,40.0,0.0,9,211,620.0,,,52,33,0.0,0.0,,872.0,349.1684847999233,,20,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,128205,2,1,0,0,1,,410.0,700.0,43,2.0,0.0,4.0,4.0,2.1,2,2,99.28127693052902,620.0,68003.7842128186,1,1,2,3,92.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012822815819647128,32382.754387056477,8,4,8,8_1,8_2,8_0_0 +28184,1,36.0,30.0,2,111,900.0,1000.0,0.0,0,55,0.0,0.0,1534.680489034855,1900.0,0.0,1898.504047939789,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,128206,1,2,1,0,1,,200.0,350.0,12,1.0,0.0,3.0,1.0,1.0,1,1,296.939308788897,900.0,16452.24305325478,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11548577259950699,16452.24305325478,4,2,4_1,4_1_1,4_3_1,4_0_1_1 +28185,1,51.0,413.0,6,111,100.0,,,0,46,0.0,0.0,,163.0,87.29212119998083,,10,0,0,0,0,0,0,0,0,0,,2,,4,128207,2,1,0,0,2,,260.0,689.0,32,1.0,0.0,3.0,3.0,2.0,3,2,112.89788669376452,100.0,12090.681354837212,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013481456934996252,6045.340677418606,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28186,1,44.0,537.0,2,211,260.0,,,0,85,0.0,0.0,,788.0,731.5911110093631,,71,0,0,0,0,0,0,0,0,0,,1,,2,128208,1,2,0,0,2,,560.0,500.0,31,0.0,0.0,5.0,8.0,3.499999999999999,3,1,134.9559698031569,260.0,25953.46854968898,0,6,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.030362030357959348,7415.276728482568,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +28187,2,67.0,0.0,1,120,1500.0,0.0,0.0,22,74,1687.4925616585624,0.0,2557.8008150580918,3100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,128209,2,2,2,0,1,,200.0,,41,0.0,0.0,8.0,2.0,1.5,2,2,202.887799879896,1500.0,56516.94344942374,5,5,0,1,200.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05485080775421177,37677.96229961583,9,5,9,9_1,9_0,9_1_0 +28188,2,57.0,0.0,9,111,360.0,,,34,34,0.0,0.0,,360.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,2,2010.0,6,128210,1,3,0,0,1,,200.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,78.08910177264347,360.0,123467.98061124599,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0029157357091107203,82311.98707416399,10,5,10,10_0,10_2,10_0_0 +28189,2,67.0,0.0,5,111,240.0,,,42,74,0.0,0.0,,312.0,99.7624242285495,,10,0,0,0,0,0,0,0,0,0,,1,,3,128211,2,2,0,0,2,,2000.0,,42,2.0,2.0,5.0,4.0,2.5,4,4,159.6775151942509,240.0,80373.88607789786,1,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0038818578424540976,32149.554431159144,8,4,8,8_1,8_3,8_0_0 +28190,2,92.0,0.0,2,111,186.0,,,0,78,0.0,0.0,,209.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,0,,1,,2,128212,1,1,0,0,2,,222.0,,11,0.0,7.0,3.0,1.0,1.0,1,1,85.8955829266672,186.0,5129.318092935428,0,5,0,1,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040746156938064375,5129.318092935428,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +28191,2,53.0,0.0,7,111,600.0,600.0,0.0,55,38,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,128213,2,1,1,0,1,,300.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,626.904525495896,600.0,86258.91476416998,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013911605580487237,34503.565905667994,9,5,9,9_1,9_4,9_0_0 +28192,2,47.0,0.0,9,111,1200.0,1200.0,0.0,0,46,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,128214,2,1,2,0,1,,380.0,539.0,32,1.0,1.0,4.0,3.0,2.0,3,2,1570.99573628604,1200.0,26671.304010558568,0,1,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0899843516856129,13335.652005279284,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +28193,2,47.0,0.0,2,111,469.0,287.0,0.0,63,34,0.0,0.0,799.7390548414967,756.0,0.0,544.8706617587194,10,2,2,2,1,1,2,2,2,2,10.0,2,,2,128215,1,2,0,1,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1517.03109236155,469.0,58007.77680491412,1,1,0,1,98.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013032735292416095,38671.851203276085,9,5,9,9_0,9_3,9_0_1 +28194,0,79.0,0.0,2,111,500.0,,,0,86,0.0,0.0,,620.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,128216,1,3,0,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,115.56388424132142,500.0,11316.0,0,6,5,0,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05478967833156592,11316.0,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +28195,2,31.0,0.0,8,111,240.0,0.0,0.0,0,56,0.0,0.0,409.2481304092947,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,2000.0,6,128217,2,1,0,1,1,,0.0,260.0,12,1.0,0.0,1.0,1.0,1.0,1,1,981.613021049411,240.0,13150.407264052448,0,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018250385344038483,13150.407264052448,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +28196,2,31.0,0.0,7,111,900.0,,,85,63,0.0,0.0,,900.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,128218,2,1,0,0,2,,0.0,350.0,42,1.0,0.0,2.0,5.0,2.4,2,2,58.2455796154435,900.0,6479.200597309498,6,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13890602497686627,2699.6669155456243,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28197,2,43.0,0.0,2,111,2000.0,0.0,0.0,65,43,0.0,0.0,3410.4010867441225,2090.0,124.70303028568689,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,,2,128219,2,2,1,0,1,,550.0,,43,2.0,1.0,6.0,4.0,2.5,4,3,429.438658097171,2000.0,30006.645683574574,4,1,1,2,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06965123733053746,12002.65827342983,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +28198,0,53.0,0.0,7,112,0.0,0.0,0.0,68,64,0.0,0.0,0.0,2889.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,128220,2,1,2,0,1,,0.0,,43,3.0,3.0,4.0,3.0,2.0,3,3,840.558581102726,0.0,35205.59563912462,1,1,5,0,103.0,7,2,8,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08206081867251243,17602.79781956231,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +28199,2,34.0,0.0,9,111,420.0,,,0,52,0.0,0.0,,420.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,128221,2,1,0,0,1,,420.0,507.0,12,1.0,0.0,1.0,1.0,1.0,1,1,242.0362645329031,420.0,31638.0,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013275175421960933,31638.0,8,4,8,8_0,8_2,8_0_0 +28200,2,51.0,0.0,1,400,550.0,0.0,0.0,0,62,0.0,496.622728878834,937.8602988546337,960.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,128222,1,2,3,0,2,,150.0,261.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2020.50043322794,550.0,18258.755336235878,0,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0525775159544861,18258.755336235878,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +28201,2,50.0,0.0,7,111,2013.0,819.0,0.0,54,54,0.0,0.0,3432.5686938079593,2832.0,0.0,1554.8748152626872,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,128223,2,1,2,0,1,,365.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1647.44954721322,2013.0,58860.46686100027,1,1,0,1,105.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048113787590027164,32700.25936722237,8,4,8,8_1,8_2,8_0_0 +28202,2,48.0,0.0,2,111,1120.0,0.0,0.0,63,65,0.0,0.0,1909.8246085767084,1230.0,152.4148147936173,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,2,128224,2,1,2,0,1,,700.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,645.520901840228,1120.0,33928.65223762744,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036252545234788595,13571.460895050976,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +28203,2,73.0,0.0,7,111,300.0,710.0,0.0,0,78,0.0,0.0,511.56016301161833,1010.0,0.0,1347.9378740372501,50,2,2,1,2,2,2,2,1,0,,2,,5,128225,2,2,0,0,1,,0.0,346.0,11,0.0,2.0,2.0,1.0,1.0,1,1,488.817521016964,300.0,19927.41044120343,0,5,2,3,35.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0506839563012988,19927.41044120343,5,3,5,5_0,5_3,5_0_0 +28204,2,65.0,0.0,2,111,500.0,140.0,0.0,0,78,0.0,0.0,852.6002716860306,640.0,0.0,265.7905667115705,71,0,0,0,0,0,0,0,0,0,,2,,2,128226,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1954.47680455913,500.0,21242.757091418865,0,7,0,1,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030127915940748186,21242.757091418865,5,3,5,5_0,5_3,5_0_1 +28205,2,82.0,0.0,2,400,240.0,,,0,86,0.0,0.0,,436.0,271.5754881777181,,71,0,0,0,0,0,0,0,0,0,,1,,2,128227,2,1,0,0,2,,230.0,,11,0.0,9.0,3.0,1.0,1.0,1,1,103.21362816914574,240.0,8721.934552630475,0,7,0,1,45.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04998890984208376,8721.934552630475,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +28206,2,71.0,0.0,5,111,744.0,,,0,78,0.0,0.0,,744.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,128228,2,1,0,0,1,,116.0,166.0,11,0.0,6.0,5.0,1.0,1.0,1,1,41.7365417561847,744.0,18419.653844600383,0,5,3,4,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04039163853332126,18419.653844600383,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28207,2,86.0,0.0,1,221,1700.0,0.0,0.0,77,78,0.0,0.0,2898.840923732504,1790.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,128229,2,1,2,0,1,,776.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,917.283514922063,1700.0,24049.9432710676,5,5,0,1,172.0,1,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0744284499894598,16033.295514045067,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +28208,2,55.0,0.0,9,111,0.0,,,52,52,0.0,0.0,,482.0,0.0,,31,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,128230,2,1,0,0,2,,134.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,214.44387090178088,0.0,52470.4873578493,1,1,1,2,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009186116315496647,26235.24367892465,7,4,7,7_1,7_2,7_0_0 +28209,1,47.0,77.0,6,111,520.0,420.0,0.0,52,46,0.0,0.0,886.7042825534718,940.0,0.0,797.3717001347114,20,0,0,0,0,0,0,0,0,2,40.0,1,,4,128231,2,3,3,0,1,,500.0,381.0,43,2.0,0.0,4.0,4.0,2.1,3,2,569.78557492451,520.0,25439.23338547739,4,1,2,3,83.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03695079901804832,12113.920659751137,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +28210,2,66.0,0.0,1,112,1740.0,0.0,0.0,0,77,0.0,0.0,2967.0489454673866,1860.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128232,2,1,2,0,1,,398.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,696.209027480261,1740.0,40180.0,0,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04629168740666999,26786.666666666668,7,4,7,7_1,7_0,7_1_0 +28211,0,89.0,0.0,1,212,880.0,0.0,0.0,0,75,2636.7071275915036,0.0,1500.5764781674138,3452.0,99.7624242285495,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,128233,2,2,4,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1097.60462089549,880.0,33991.55520099285,0,5,0,1,80.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.10155463554368856,33991.55520099285,9,5,9,9_1,9_0,9_1_0 +28212,0,44.0,0.0,2,111,240.0,,,0,34,0.0,0.0,,612.0,221.69427606344334,,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,128234,2,3,0,0,2,,800.0,,32,1.0,0.0,4.0,4.0,2.5,4,1,128.3426653221623,240.0,39182.0,0,1,5,0,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015619417079271093,15672.8,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28213,2,62.0,0.0,8,112,1200.0,0.0,0.0,0,71,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,128235,2,1,1,0,1,,270.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1340.49995924887,1200.0,10103.781778356872,0,5,0,1,90.0,4,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12470578122530548,10103.781778356872,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +28214,2,40.0,0.0,2,111,350.0,700.0,0.0,0,46,0.0,0.0,596.8201901802214,1080.0,41.567676761895626,1328.9528335578523,41,0,0,0,0,0,0,0,0,0,,1,,2,128236,2,1,2,0,1,,200.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1106.81453803049,350.0,43819.12917536992,0,1,1,2,100.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.024646770036841625,43819.12917536992,10,5,10,10_1,10_3,10_0_1 +28215,1,39.0,98.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,204.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,128237,2,2,0,1,1,,0.0,370.0,32,1.0,0.0,4.0,3.0,1.8,2,1,218.221453882199,0.0,35771.07270964987,0,1,2,3,74.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00570293213334269,19872.818172027703,5,3,5,5_0,5_4,5_0_1 +28216,2,62.0,0.0,9,120,350.0,,,0,75,0.0,0.0,,350.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,128238,2,1,0,0,2,,125.0,575.0,11,0.0,2.0,2.0,1.0,1.0,1,1,139.31810250314498,350.0,28007.11036250837,0,5,2,3,56.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012496826536897087,28007.11036250837,7,4,7,7_0,7_2,7_0_0 +28217,0,59.0,0.0,7,400,200.0,,,52,68,0.0,0.0,,464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,128239,2,1,0,0,1,,120.0,,43,2.0,4.0,2.0,2.0,1.5,2,2,118.49892352318113,200.0,8613.148078809427,4,4,5,0,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053871127693898596,5742.098719206285,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +28218,1,64.0,203.0,2,111,700.0,0.0,0.0,0,72,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128240,2,2,1,0,1,,0.0,357.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1924.19660506766,700.0,7578.518211431794,0,6,2,3,55.0,7,6,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10028345631651055,7578.518211431794,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +28219,2,39.0,0.0,2,111,240.0,80.0,0.0,0,53,0.0,0.0,409.2481304092947,320.0,0.0,151.8803238351831,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,128241,2,2,0,1,1,600.0,0.0,345.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1048.28032532785,240.0,17480.115247948906,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01830651545833191,17480.115247948906,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +28220,2,80.0,0.0,5,111,370.0,0.0,0.0,0,74,0.0,0.0,630.9242010476627,370.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,3,128242,2,1,0,1,2,802.0,0.0,1141.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1183.01117919966,370.0,48274.75671301148,0,5,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007664461204840708,48274.75671301148,10,5,10,10_0,10_4,10_0_0 +28221,2,27.0,0.0,9,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,595.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2005.0,6,128243,2,1,0,0,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2084.20745573635,0.0,6839.614628015546,0,4,2,3,18.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08699320537195733,6839.614628015546,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +28222,2,28.0,0.0,6,111,900.0,0.0,0.0,54,53,0.0,0.0,1534.680489034855,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,15.0,2,,4,128244,1,2,0,0,2,,400.0,540.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1729.5056134822,900.0,28984.170230860935,1,1,2,3,77.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031051432310514233,19322.78015390729,5,3,5,5_0,5_2,5_0_0 +28223,2,66.0,0.0,5,112,472.0,0.0,0.0,74,75,2425.7705573841836,132.4327277010224,804.8546564716129,2942.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,128245,1,1,1,0,2,,326.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,676.387932488558,472.0,69034.47525063451,5,5,0,1,110.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04261638825121597,46022.983500423004,10,5,10,10_1,10_0,10_0_0 +28224,2,78.0,0.0,5,111,470.0,410.0,0.0,78,74,0.0,0.0,801.4442553848687,880.0,0.0,778.3866596553135,70,0,0,0,0,0,0,0,0,0,,2,,3,128246,1,1,0,0,2,,300.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1727.73425971885,470.0,30085.873422855497,5,5,0,1,140.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029249607868505015,20057.24894857033,5,3,5,5_0,5_3,5_0_0 +28225,2,54.0,0.0,7,112,1127.0,0.0,0.0,74,37,1402.72819187868,0.0,1921.7610123803129,2457.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,128247,2,1,1,0,1,,247.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1087.25493507005,1127.0,92512.35414582891,5,1,0,1,130.0,8,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02655861503780334,61674.90276388594,10,5,10,10_1,10_0,10_0_0 +28226,2,57.0,0.0,1,111,268.0,1499.0,0.0,74,37,0.0,0.0,456.9937456237124,1767.0,0.0,2845.8575678617435,12,0,0,0,0,0,0,0,0,2,35.0,1,,1,128248,2,2,1,0,1,,1085.0,,42,1.0,0.0,9.0,4.0,2.5,4,4,172.473341316617,268.0,210831.8719143595,6,1,1,2,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008381085762582235,84332.7487657438,10,5,10,10_1,10_4,10_1_0 +28227,1,48.0,121.0,2,111,249.0,385.0,0.0,0,56,0.0,0.0,424.5949352996432,634.0,0.0,730.9240584568188,30,0,0,0,0,0,0,0,0,0,,2,,2,128249,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,360.662980277528,249.0,8696.867520251342,0,4,0,1,46.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07289981117036462,8696.867520251342,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28228,2,83.0,0.0,2,111,270.0,0.0,0.0,0,78,2109.365702073203,0.0,460.40414671045653,2270.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,1,,2,128250,2,2,4,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,399.209770723048,270.0,18078.659179935345,0,5,0,1,80.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.12556240910384364,18078.659179935345,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +28230,2,59.0,0.0,2,111,150.0,0.0,0.0,0,54,0.0,0.0,255.78008150580916,150.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,2,,2,128252,2,2,0,1,1,600.0,150.0,400.0,12,1.0,3.0,3.0,1.0,1.0,1,1,371.100804612026,150.0,21986.60130911115,0,1,2,3,76.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006822336835563606,21986.60130911115,6,3,6,6_0,6_2,6_0_1 +28231,2,51.0,0.0,2,112,600.0,0.0,0.0,46,23,2636.7071275915036,0.0,1023.1203260232367,3100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,2,128253,2,2,2,0,1,,850.0,,43,3.0,0.0,7.0,4.0,2.5,4,4,682.099003780679,600.0,145602.15024500014,1,1,0,1,180.0,9,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021290894363742072,58240.860098000056,10,5,10,10_1,10_1,10_0_1 +28232,1,39.0,315.0,6,111,600.0,,,0,85,0.0,0.0,,732.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,,4,128254,2,2,0,0,2,,320.0,367.0,31,0.0,0.0,3.0,3.0,1.8,2,1,117.72044951068676,600.0,10979.556099934012,0,6,2,3,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0666693619794337,6099.753388852229,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28233,2,45.0,0.0,9,111,360.0,,,33,42,0.0,0.0,,460.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,128255,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,216.96324820325063,360.0,73706.42025193415,1,1,1,2,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006240976002194721,32046.26967475398,8,4,8,8_1,8_2,8_0_0 +28234,2,42.0,0.0,9,300,554.2,0.0,0.0,21,21,1355.4784001522403,0.0,945.0221411367963,1909.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,128256,2,1,1,0,1,,157.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,908.839233087691,554.2,33957.43243568719,1,1,1,2,170.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05621744234095148,16170.205921755804,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +28235,2,47.0,0.0,5,211,700.0,700.0,0.0,0,62,0.0,0.0,1193.6403803604428,1400.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,128257,2,2,0,0,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1451.68997706818,700.0,25176.51490111556,0,1,2,3,50.0,3,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05560737876146498,25176.51490111556,7,4,7,7_0,7_2,7_0_0 +28236,2,50.0,0.0,7,111,1090.0,,,34,34,0.0,0.0,,1174.0,116.38949493330776,,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,128258,2,1,0,0,2,,951.0,,43,3.0,1.0,5.0,3.0,2.0,3,2,150.69260664524,1090.0,108919.25768619162,1,1,0,1,146.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010778626525186422,54459.62884309581,10,5,10,10_1,10_2,10_0_0 +28237,1,51.0,400.0,7,111,1046.0,0.0,0.0,85,63,0.0,0.0,1783.639768367176,1046.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,10.0,2,,5,128259,2,1,0,1,1,,0.0,691.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,831.15008936436,1046.0,22464.805286644,6,1,2,3,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04656172117467131,8640.309725632309,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +28238,1,30.0,375.0,1,111,0.0,0.0,1000.0,0,55,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,50,1,2,2,2,2,2,2,1,0,,2,,1,128260,1,2,0,0,1,,550.0,353.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1792.30143783142,0.0,12544.840449259747,0,4,2,3,67.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.07971404690595396,7840.525280787342,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +28239,2,75.0,0.0,2,111,400.0,400.0,0.0,78,78,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,128261,1,2,0,1,2,583.0,300.0,380.0,41,0.0,1.0,3.0,2.0,1.5,2,2,209.663361429173,400.0,30650.072203884796,5,5,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026101080437213542,20433.381469256532,5,3,5,5_0,5_4,5_0_1 +28240,1,37.0,270.0,2,111,216.0,95.0,0.0,0,56,0.0,0.0,368.3233173683652,311.0,0.0,180.35788455427996,71,0,0,0,0,0,0,0,0,0,,2,,2,128262,2,1,0,1,1,946.0,192.0,264.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2015.42607492616,216.0,7369.512489788544,0,4,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04220089190851261,7369.512489788544,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28241,2,62.0,0.0,2,112,328.0,763.0,0.0,77,78,0.0,397.2981831030672,559.3057782260361,1391.0,0.0,1448.558588578059,71,2,2,2,1,1,2,2,2,0,,1,,2,128263,1,3,1,0,1,,162.0,361.0,41,0.0,3.0,4.0,2.0,1.5,2,2,2226.4572817006,328.0,35364.36962496959,5,5,2,3,80.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.03933337465791732,23576.246416646394,6,3,6,6_1,6_1,6_0_1 +28242,2,53.0,0.0,2,111,199.0,236.0,0.0,37,37,0.0,0.0,339.33490813104015,435.0,0.0,448.0469553137902,31,2,2,2,2,1,2,2,1,2,45.0,2,,2,128264,1,3,0,1,2,752.0,0.0,555.0,43,2.0,4.0,4.0,2.0,1.5,2,2,1900.66640763538,199.0,33716.34444509317,1,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012901754539505149,22477.56296339545,6,3,6,6_0,6_3,6_0_1 +28243,2,21.0,0.0,7,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,451.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,5,128265,2,1,0,0,1,540.0,0.0,310.0,12,1.0,0.0,1.0,1.0,1.0,1,1,418.924883974235,0.0,4934.254788869024,0,1,2,3,20.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0914018467423676,4934.254788869024,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +28244,1,64.0,251.0,2,111,420.0,150.0,0.0,0,78,0.0,0.0,716.1842282162656,570.0,0.0,284.77560719096834,20,2,2,2,2,2,2,2,1,0,,2,,2,128266,2,2,0,1,1,456.0,120.0,237.0,11,0.0,1.0,3.0,1.0,1.0,1,1,404.501787735515,420.0,9898.451080224842,0,5,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.05758476708934268,9898.451080224842,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28245,2,71.0,0.0,9,120,1542.0,0.0,0.0,75,74,0.0,397.2981831030672,2629.4192378797184,1842.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2004.0,6,128267,2,1,1,0,1,,279.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,781.527455532772,1542.0,53023.347879122215,5,5,0,1,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03473941336558422,35348.89858608148,9,5,9,9_1,9_0,9_0_0 +28246,1,49.0,358.0,2,111,566.0,,,0,68,0.0,0.0,,750.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,2,,2,128268,2,3,0,0,2,,862.0,398.0,22,2.0,3.0,4.0,2.0,1.5,2,2,152.24204168612908,566.0,33260.89722991198,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022549000852734508,22173.931486607984,6,3,6,6_0,6_2,6_0_1 +28247,2,59.0,0.0,6,111,650.0,,,54,37,0.0,0.0,,750.0,138.5589225396521,,42,0,0,0,0,0,0,0,0,2,45.0,1,,4,128269,2,2,0,0,2,,400.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,115.42716576209068,650.0,136879.27765561885,1,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005479280814784551,68439.63882780942,10,5,10,10_1,10_3,10_0_0 +28248,1,42.0,240.0,7,112,500.0,,,0,52,0.0,0.0,,600.0,138.5589225396521,,43,0,0,0,0,0,0,0,0,2,15.0,2,,5,128270,2,3,0,0,2,,550.0,542.0,32,1.0,0.0,4.0,5.0,2.2,1,1,124.30331717006204,500.0,37327.524508619,0,1,2,3,90.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01607392957069679,16967.056594826816,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +28249,0,76.0,0.0,1,111,800.0,1080.0,0.0,86,78,0.0,0.0,1364.160434697649,1880.0,0.0,2050.384371774972,71,0,0,0,0,0,0,0,0,0,,1,,1,128271,2,1,1,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,345.545525602484,800.0,19505.413776834586,6,5,5,0,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09638349750020497,13003.609184556391,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +28250,2,52.0,0.0,2,111,600.0,120.0,0.0,37,38,0.0,1721.6254601132912,1023.1203260232367,2020.0,0.0,227.8204857527747,12,0,0,0,0,0,0,0,0,2,45.0,2,,2,128272,2,1,0,1,1,1635.0,0.0,1868.0,43,2.0,0.0,6.0,4.0,2.5,4,4,1199.78328128491,600.0,132932.8661096284,1,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01519564016873093,53173.146443851365,10,5,10,10_0,10_4,10_0_1 +28251,0,65.0,0.0,2,111,0.0,0.0,1579.0,78,77,0.0,0.0,995.2725805648804,1579.0,0.0,1889.6400610046312,70,1,2,2,1,2,2,2,2,0,,1,,2,128273,1,2,2,0,1,,541.0,,41,0.0,0.0,4.0,3.0,2.0,3,3,219.872068039273,0.0,60734.038371230235,7,5,5,0,96.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.025998600493985488,30367.019185615118,8,4,8,8_1,8_3,8_0_1 +28252,1,58.0,270.0,2,111,320.0,180.0,0.0,0,77,0.0,0.0,545.6641738790596,500.0,0.0,341.730728629162,71,2,1,2,1,2,2,2,2,0,,2,,2,128274,1,3,0,1,1,,550.0,296.0,11,0.0,6.0,4.0,1.0,1.0,1,1,498.402311107223,320.0,10023.333333333332,0,6,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.049883604921849026,10023.333333333332,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28253,2,69.0,0.0,9,300,708.0,,,77,72,0.0,0.0,,862.0,213.38074071106422,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,128275,2,1,0,0,1,,150.0,,41,0.0,7.0,6.0,2.0,1.5,2,2,98.87338828378756,708.0,70238.0466797224,5,5,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012272550857381086,46825.36445314827,10,5,10,10_1,10_1,10_0_0 +28254,2,33.0,0.0,2,111,445.0,947.0,0.0,21,35,0.0,0.0,758.8142418005672,1392.0,0.0,1797.88333339898,10,0,0,0,0,0,0,0,0,0,,1,,2,128276,1,1,3,0,2,,403.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1089.90500766956,445.0,38846.0,1,1,1,2,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03583380528239716,18498.095238095237,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +28255,1,40.0,187.0,1,112,450.0,317.0,0.0,46,67,0.0,0.0,767.3402445174275,767.0,0.0,601.8257831969131,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,128277,2,1,3,0,1,,319.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1779.90820568306,450.0,26400.758485308506,1,1,1,2,90.0,7,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.02905219561880467,12571.789754908812,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +28256,2,63.0,0.0,2,111,200.0,200.0,0.0,85,42,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,20,0,0,0,0,0,0,0,0,1,1.0,2,,2,128278,2,1,0,1,2,420.0,0.0,290.0,42,1.0,0.0,4.0,4.0,2.5,4,4,442.567112506425,200.0,19784.123708146948,6,1,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0202182318459363,7913.64948325878,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +28257,2,58.0,0.0,6,111,960.0,,,52,68,0.0,0.0,,1098.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,1,30.0,1,,4,128279,2,1,0,0,1,,320.0,,43,5.0,0.0,4.0,5.0,3.0,5,5,90.08533283129113,960.0,44617.56685402021,1,1,0,1,99.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02460914113923866,14872.522284673403,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +28258,2,48.0,0.0,8,111,600.0,,,68,21,0.0,0.0,,684.0,116.38949493330776,,44,0,0,0,0,0,0,0,0,0,,1,2001.0,6,128280,2,1,0,0,2,,360.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,106.97592551760393,600.0,7181.654645548806,4,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09524267508796787,3989.8081364160034,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28259,2,51.0,0.0,2,111,800.0,650.0,0.0,34,35,0.0,0.0,1364.160434697649,1450.0,0.0,1234.027631160863,20,0,0,0,0,0,0,0,0,2,60.0,2,,2,128281,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,2151.55384528438,800.0,40213.46144270966,1,1,1,2,90.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036057577437489455,20106.73072135483,5,3,5,5_0,5_2,5_0_1 +28260,2,43.0,0.0,2,111,0.0,0.0,530.0,0,54,0.0,0.0,334.0686939198142,530.0,0.0,634.2680382092809,31,1,2,2,2,1,2,2,2,3,45.0,2,,2,128282,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1528.90097563539,0.0,34200.18306708397,0,1,1,2,61.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.015496993070487377,34200.18306708397,9,5,9,9_0,9_3,9_0_1 +28261,2,68.0,0.0,5,111,500.0,0.0,0.0,0,75,0.0,611.8392019787234,852.6002716860306,1028.0,91.44888887617039,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,128283,2,3,3,0,1,,228.0,569.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1514.88798430219,500.0,20223.3325009275,0,5,2,3,70.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05083237393999496,20223.3325009275,5,3,5,5_1,5_2,5_0_0 +28262,1,46.0,50.0,2,111,750.0,0.0,0.0,75,63,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,128284,1,3,0,0,1,,459.0,650.0,42,1.0,1.0,3.0,3.0,2.0,3,2,2025.36775227998,750.0,27261.238078485854,7,1,2,3,86.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.027511589819975504,13630.619039242927,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +28263,2,64.0,0.0,9,112,816.0,24.0,0.0,0,21,0.0,264.8654554020448,1391.4436433916019,1040.0,0.0,45.564097150554936,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128285,2,1,1,0,1,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1170.64754116349,816.0,9438.892955168201,0,5,0,1,115.0,7,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.11018241280409427,9438.892955168201,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28264,2,49.0,0.0,6,300,900.0,0.0,0.0,67,64,0.0,529.7309108040896,1534.680489034855,1375.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,128286,2,1,2,0,1,,200.0,,43,3.0,3.0,4.0,3.0,2.0,3,3,741.913712922906,900.0,37135.44455939138,1,1,0,1,84.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03702662015533268,18567.72227969569,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +28265,1,46.0,106.0,2,111,0.0,,,54,63,0.0,0.0,,202.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,2,,2,128287,2,2,0,0,2,,378.0,443.0,43,2.0,1.0,2.0,4.0,2.1,2,2,155.14968160264374,0.0,31126.346597197604,1,1,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.006489679068798477,14822.069808189335,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +28266,2,65.0,0.0,1,120,440.0,0.0,0.0,54,52,1054.6828510366015,0.0,750.2882390837069,1440.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,128288,2,2,2,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1093.10841000668,440.0,58772.88790451657,1,1,0,1,85.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024501093128849624,39181.92526967771,9,5,9,9_1,9_0,9_1_0 +28267,1,77.0,151.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,341.04010867441224,662.0,0.0,0.0,71,2,1,2,2,1,2,2,1,0,,2,,2,128289,1,3,0,1,2,720.0,0.0,330.0,21,0.0,2.0,4.0,2.0,1.5,2,2,502.859219000951,200.0,18767.585978305433,0,5,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.035273582908598104,12511.723985536955,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28268,2,70.0,0.0,7,111,662.0,770.0,0.0,0,72,0.0,258.24381901699365,1128.8427597123045,1627.0,0.0,1461.8481169136376,44,0,0,0,0,0,0,0,0,0,,1,,5,128290,2,1,2,0,2,,250.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,3197.18224593173,662.0,21039.209419485138,0,5,0,1,115.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07733180309014745,21039.209419485138,5,3,5,5_1,5_3,5_0_0 +28269,2,63.0,0.0,2,111,865.0,465.0,0.0,0,77,0.0,0.0,1474.998470016833,1330.0,0.0,882.8043822920018,10,0,0,0,0,0,0,0,0,0,,1,,2,128291,2,1,2,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,364.757320066329,865.0,29702.59756312351,0,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0447772285630408,29702.59756312351,8,4,8,8_1,8_3,8_0_1 +28270,2,58.0,0.0,2,120,3200.0,0.0,0.0,86,22,0.0,0.0,5456.641738790596,3200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128292,2,1,2,0,1,,124.0,,42,1.0,1.0,7.0,2.0,1.5,2,2,863.616534559204,3200.0,91805.4012493547,6,1,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03485633695242406,61203.60083290314,10,5,10,10_1,10_0,10_0_1 +28271,2,64.0,0.0,9,111,0.0,,,0,22,0.0,0.0,,43.0,59.5803366920504,,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,128293,2,1,0,0,2,,0.0,400.0,12,1.0,2.0,3.0,1.0,1.0,1,1,172.65096908607293,0.0,8636.0,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004979157017137564,8636.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28272,2,63.0,0.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1146.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,128294,2,2,2,0,1,,225.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2157.36215997398,0.0,14336.158261337432,0,5,0,1,120.0,4,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07993773360402961,14336.158261337432,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +28274,2,80.0,0.0,2,222,353.0,1192.0,0.0,77,75,0.0,582.7040018844986,601.9357918103376,1985.0,0.0,2263.0168251442283,50,0,0,0,0,0,0,0,0,0,,1,,2,128296,2,2,2,0,2,,345.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1345.21429390946,353.0,32250.4019207956,5,5,0,1,120.0,1,0,8,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06154962052488526,21500.267947197066,6,3,6,6_1,6_0,6_0_1 +28275,2,47.0,0.0,1,112,60.0,100.0,0.0,55,33,0.0,0.0,102.31203260232367,160.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,128297,2,1,1,0,1,,510.0,,43,4.0,0.0,6.0,4.0,2.5,4,4,56.0714406881318,60.0,68298.42001105602,1,1,1,2,110.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0023426603422758464,27319.36800442241,7,4,7,7_1,7_0,7_1_0 +28276,2,41.0,0.0,1,111,450.0,1400.0,0.0,54,63,0.0,0.0,767.3402445174275,1850.0,0.0,2657.9056671157045,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,128298,2,2,5,0,1,,440.0,503.0,43,2.0,0.0,3.0,4.0,2.3,4,2,369.35954069417,450.0,40688.23376974584,4,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04546769000761067,17690.53642162863,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +28277,1,27.0,230.0,5,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2145.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,128299,2,2,0,0,1,,131.0,740.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1632.68486620113,0.0,41735.92200473409,0,4,2,3,80.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.051394575630956306,27823.948003156063,7,4,7,7_0,7_3,7_0_0 +28278,2,66.0,0.0,5,112,750.0,0.0,0.0,77,77,0.0,0.0,1278.9004075290459,1852.0,1526.919326386966,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,128300,2,2,3,0,1,,390.0,,41,1.0,9.0,6.0,5.0,2.5999999999999996,3,3,1448.42974254496,750.0,68062.25479574148,5,5,0,1,110.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02721038269387273,26177.79030605442,7,4,7,7_1,7_2,7_0_0 +28279,2,47.0,0.0,2,111,0.0,0.0,1250.0,21,46,0.0,0.0,787.8978630184298,1250.0,0.0,1495.915184455851,20,2,2,2,2,1,2,2,2,0,,1,,2,128301,2,3,1,0,2,,324.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,274.249241428413,0.0,38281.70788031419,1,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.03265267066736054,16644.220817527912,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +28280,2,66.0,0.0,6,222,1800.0,0.0,0.0,78,72,0.0,0.0,3069.36097806971,3800.0,2771.178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128302,1,1,2,0,1,,300.0,,41,0.0,0.0,5.0,3.0,2.0,3,3,1279.02903889533,1800.0,37581.28576278013,6,5,0,1,140.0,1,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10111415623154267,18790.642881390064,5,3,5,5_1,5_0,5_0_0 +28281,2,31.0,0.0,7,111,550.0,1200.0,0.0,65,54,0.0,0.0,937.8602988546337,1750.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,3,30.0,2,,5,128303,1,3,0,0,1,,0.0,590.0,43,2.0,0.0,3.0,4.0,2.1,2,2,741.153084069984,550.0,47006.526844556975,4,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03722887261564694,22384.060402169987,6,3,6,6_0,6_4,6_0_0 +28282,1,40.0,120.0,1,111,1300.0,0.0,0.0,56,68,0.0,0.0,2216.7607063836795,1504.0,282.6602019808903,0.0,60,2,2,2,1,1,2,2,2,3,60.0,8,,1,128304,1,3,0,0,2,,300.0,460.0,43,2.0,3.0,4.0,3.0,1.8,2,2,1062.38763705383,1300.0,27018.90771132695,4,1,2,3,45.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,0.05566472249984734,15010.504284070526,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +28283,1,57.0,201.0,1,211,0.0,0.0,0.0,0,78,0.0,0.0,0.0,462.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128305,1,3,4,0,2,,0.0,275.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1789.96412580614,0.0,9332.20050232717,0,7,2,3,20.0,2,3,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.0495060087794718,9332.20050232717,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +28284,2,32.0,0.0,9,120,518.0,1200.0,0.0,47,37,0.0,0.0,883.2938814667277,1718.0,0.0,2278.2048575277468,43,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,128306,2,1,1,0,1,,0.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,207.53669691114,518.0,41440.61404490421,1,1,1,2,110.0,0,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0414569146619886,23022.563358280113,6,3,6,6_1,6_0,6_0_0 +28285,2,45.0,0.0,2,112,0.0,0.0,0.0,33,33,0.0,0.0,0.0,1632.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,90.0,1,,2,128307,1,1,2,0,2,,1072.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,660.522711528131,0.0,129853.95958987018,1,1,1,2,170.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012567964851857403,54105.81649577925,10,5,10,10_1,10_2,10_0_1 +28286,2,33.0,0.0,7,111,1080.0,1140.0,0.0,46,37,0.0,0.0,1841.6165868418261,2220.0,0.0,2164.2946146513596,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,128308,2,1,2,0,1,,480.0,890.0,43,2.0,0.0,5.0,3.0,1.8,2,2,560.614273960742,1080.0,49176.66411788144,1,1,2,3,104.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04514336301214811,27320.368954378577,7,4,7,7_1,7_3,7_0_0 +28287,2,43.0,0.0,9,400,0.0,,,85,11,0.0,0.0,,247.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,128309,2,1,0,0,2,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,8.630211236835555,0.0,10291.053565755243,6,1,0,1,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024001429826575108,4287.938985731352,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +28288,2,31.0,0.0,1,112,0.0,0.0,0.0,52,53,0.0,0.0,0.0,1101.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,128310,2,3,3,0,1,,346.0,430.0,43,2.0,0.0,3.0,2.0,1.5,2,2,756.87766730938,0.0,38210.130014055685,1,1,2,3,58.0,8,2,3,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028814348435741897,25473.420009370457,7,4,7,7_1,7_1,7_1_0 +28290,2,72.0,0.0,5,111,240.0,,,77,77,0.0,0.0,,744.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,2,,3,128312,2,1,0,0,2,,362.0,720.0,41,3.0,1.0,5.0,5.0,3.0,5,5,132.77772983406595,240.0,44798.80677360063,5,5,2,3,97.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01660758519216699,14932.935591200208,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +28291,2,25.0,0.0,2,211,0.0,0.0,0.0,53,38,0.0,0.0,0.0,1701.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,1,,2,128313,1,1,4,0,2,,427.0,610.0,43,2.0,0.0,4.0,3.0,1.8,2,2,868.166033797827,0.0,35567.165125391206,1,1,2,3,80.0,1,3,1,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04782500921856337,19759.53618077289,5,3,5,5_1,5_1,5_0_1 +28292,1,81.0,151.0,2,111,180.0,700.0,0.0,0,77,0.0,0.0,306.936097806971,880.0,0.0,1328.9528335578523,70,0,0,0,0,0,0,0,0,0,,2,,2,128314,2,1,0,0,1,,50.0,280.0,11,0.0,3.0,3.0,1.0,1.0,1,1,607.130285296405,180.0,10264.773881408073,0,5,2,3,59.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0857300911025315,10264.773881408073,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28293,1,66.0,253.0,7,111,200.0,,,0,77,0.0,0.0,,263.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,2,,5,128315,2,2,0,0,2,,260.0,430.0,11,0.0,6.0,3.0,1.0,1.0,1,1,90.47527477915658,200.0,8782.0,0,5,2,3,67.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029947620132088362,8782.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +28294,1,72.0,214.0,7,111,600.0,,,0,75,0.0,0.0,,840.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,5,128316,2,2,0,0,2,,600.0,394.0,11,0.0,7.0,2.0,1.0,1.0,1,1,104.44046551977355,600.0,8080.420912340447,0,5,2,3,50.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1039549807012094,8080.420912340447,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28295,1,42.0,413.0,9,112,984.0,,,0,56,0.0,0.0,,1059.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,3,20.0,1,2006.0,6,128317,2,3,0,0,2,,600.0,549.0,32,1.0,1.0,4.0,3.0,2.0,3,2,76.51549089034897,984.0,17815.37072480534,0,1,2,3,70.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05944305152884048,8907.68536240267,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +28296,2,36.0,0.0,1,111,900.0,0.0,0.0,43,34,0.0,0.0,1534.680489034855,900.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,20.0,2,,1,128318,1,2,0,0,1,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,2104.26589490521,900.0,55986.77875974089,1,1,1,2,101.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.016075223828508137,23327.824483225373,6,3,6,6_0,6_3,6_1_0 +28297,1,70.0,331.0,2,111,337.0,360.0,0.0,85,77,0.0,0.0,574.6525831163846,697.0,0.0,683.461457258324,20,0,0,0,0,0,0,0,0,0,,2,,2,128319,2,3,0,1,1,696.0,480.0,603.0,41,0.0,4.0,5.0,5.0,2.4,2,2,287.996117072334,337.0,28749.265809033925,6,5,2,3,86.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.024244097384253222,11978.860753764136,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28298,2,75.0,0.0,1,111,690.0,75.0,0.0,77,74,0.0,0.0,1176.5883749267223,765.0,0.0,142.38780359548417,71,2,1,2,1,1,2,2,2,0,,2,,1,128320,1,2,0,1,2,1480.0,0.0,1624.0,41,0.0,2.0,6.0,3.0,2.0,3,3,977.077815028082,690.0,74445.51158129495,5,5,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01027597210027384,37222.755790647476,9,5,9,9_0,9_4,9_1_0 +28299,0,29.0,0.0,7,400,0.0,,,0,85,0.0,0.0,,300.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,128321,2,3,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,98.64714677831931,0.0,3091.0162339671165,0,6,5,0,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09705545920571555,3091.0162339671165,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +28300,2,59.0,0.0,1,400,700.0,0.0,0.0,85,38,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,128322,2,1,2,0,1,,250.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1378.62507649102,700.0,57194.14231900477,6,1,0,1,120.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01223901559876002,38129.428212669845,9,5,9,9_1,9_0,9_1_0 +28301,1,43.0,187.0,2,111,522.0,139.0,0.0,55,64,0.0,0.0,890.114683640216,661.0,0.0,263.89206266363067,71,2,2,2,1,2,2,2,2,0,,2,,2,128323,1,2,0,1,1,1136.0,0.0,385.0,43,2.0,1.0,3.0,5.0,2.4,2,2,235.587644379232,522.0,39282.48308219877,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.01682683853301367,16367.701284249488,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +28302,2,60.0,0.0,1,111,275.0,1800.0,0.0,74,37,0.0,0.0,468.93014942731685,2075.0,0.0,3417.30728629162,31,0,0,0,0,0,0,0,0,2,5.0,2,,1,128324,2,1,0,0,2,,150.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,329.75343461727,275.0,90783.48059237798,5,1,0,1,130.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02285658124650283,60522.32039491865,10,5,10,10_0,10_3,10_1_0 +28303,2,40.0,0.0,2,111,0.0,0.0,0.0,22,33,0.0,0.0,0.0,707.0,0.0,0.0,10,2,1,2,2,1,2,2,2,2,20.0,2,,2,128325,2,1,0,1,1,,643.0,800.0,43,2.0,0.0,5.0,4.0,2.1,2,2,676.214462584742,0.0,35731.38112981953,1,1,2,3,72.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019786528749933346,17014.943395152157,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +28304,2,48.0,0.0,2,111,589.0,1022.0,0.0,85,45,0.0,390.676546718016,1004.363120046144,1906.0,0.0,1940.2711369944643,44,0,0,0,0,0,0,0,0,2,2.0,1,,2,128326,2,1,1,0,1,,495.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,617.885316089164,589.0,51714.87563236865,6,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03685593316610479,25857.437816184323,7,4,7,7_1,7_3,7_0_1 +28305,2,63.0,0.0,7,111,50.0,,,0,43,0.0,0.0,,50.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,5,128327,2,1,0,0,2,,600.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,57.56785903031067,50.0,21488.0,0,1,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002326880119136262,14325.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +28306,2,65.0,0.0,2,120,500.0,0.0,0.0,0,78,1898.4291318658827,0.0,852.6002716860306,2330.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128328,2,2,5,0,1,,184.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2472.7072939332,500.0,27905.13886179634,0,5,0,1,113.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08349716557726568,27905.13886179634,7,4,7,7_1,7_0,7_0_1 +28307,1,46.0,367.0,6,112,400.0,760.0,0.0,0,56,0.0,0.0,682.0802173488245,1160.0,0.0,1442.8630764342397,30,2,2,2,2,1,2,2,2,0,,1,,4,128329,1,3,3,0,1,,400.0,516.0,32,1.0,0.0,4.0,3.0,2.0,3,2,2067.33879776527,400.0,18877.09418076987,0,1,2,3,87.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.06145013575138562,9438.547090384935,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +28308,1,47.0,468.0,7,111,540.0,,,85,63,0.0,0.0,,771.0,320.07111106659636,,71,0,0,0,0,0,0,0,0,0,,2,,5,128330,1,2,0,0,2,,300.0,704.0,42,1.0,0.0,4.0,6.0,3.3,5,5,77.2317691367952,540.0,14607.988372093025,6,1,2,3,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.052779341026373744,4426.663143058493,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +28309,2,84.0,0.0,7,400,610.0,0.0,0.0,71,71,1582.0242765549024,0.0,1040.1723314569574,2350.0,332.541414095165,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,128331,2,1,2,0,1,,480.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,1158.66550066081,610.0,30703.258696583667,5,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07653910691445541,15351.629348291834,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +28311,2,53.0,0.0,2,111,260.0,0.0,0.0,0,64,0.0,0.0,443.3521412767359,303.0,59.5803366920504,0.0,60,2,2,1,1,2,2,2,2,2,10.0,8,,2,128333,2,3,0,0,1,,461.0,205.0,12,1.0,3.0,1.0,1.0,1.0,1,1,1536.58316053715,260.0,30360.42675219714,0,1,2,3,35.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.009980096869951683,30360.42675219714,8,4,8,8_0,8_3,8_0_1 +28312,2,32.0,0.0,6,112,1761.0,0.0,0.0,52,65,0.0,350.9467284077093,3002.8581568781997,2582.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,4,128334,2,2,3,0,1,,527.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,862.926447440037,1761.0,48747.02839978374,1,1,1,2,95.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05296733123554778,23212.870666563686,6,3,6,6_1,6_0,6_0_0 +28313,2,74.0,0.0,2,112,1512.0,0.0,0.0,0,75,0.0,2230.167134485217,2578.2632215785566,3266.0,96.99124577775646,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,128335,2,2,3,0,1,,189.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1758.33974654315,1512.0,26643.04397106084,0,5,0,1,110.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12258359080694631,26643.04397106084,7,4,7,7_1,7_0,7_0_1 +28314,2,51.0,0.0,8,111,660.0,,,54,46,0.0,0.0,,732.0,99.7624242285495,,31,0,0,0,0,0,0,0,0,2,60.0,1,1999.0,6,128336,2,2,0,0,1,,504.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,73.44472475038903,660.0,70362.27880411019,1,1,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010403301491100093,46908.18586940679,10,5,10,10_1,10_2,10_0_0 +28315,2,48.0,0.0,8,111,480.0,,,85,37,0.0,0.0,,480.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,128337,2,2,0,0,1,,120.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,122.20541481964037,480.0,57170.564565034474,6,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00839592898289425,38113.70971002298,9,5,9,9_1,9_2,9_0_0 +28316,2,76.0,0.0,1,111,0.0,0.0,0.0,77,78,0.0,0.0,0.0,3764.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128338,2,1,2,0,1,,341.0,,41,0.0,4.0,10.0,2.0,1.5,2,2,1742.99454002835,0.0,30165.427984573453,5,5,0,1,120.0,7,6,4,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.124778604232796,20110.285323048967,5,3,5,5_1,5_2,5_1_0 +28317,2,55.0,0.0,1,111,690.0,0.0,0.0,85,63,1582.0242765549024,503.2443652638851,1176.5883749267223,2722.0,210.6095622602712,0.0,50,2,2,2,2,1,2,2,2,2,3.0,1,,1,128339,2,1,2,0,1,,222.0,,42,2.0,0.0,5.0,4.0,2.5,4,4,999.079493934905,690.0,45718.84266630714,7,1,1,2,164.0,8,6,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.059537815072602425,18287.537066522855,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +28318,0,75.0,0.0,2,111,0.0,0.0,0.0,0,44,0.0,0.0,0.0,1158.0,0.0,0.0,41,2,2,2,2,2,2,2,1,0,,1,,2,128340,2,1,2,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,910.20207907351,0.0,31344.9051240096,0,1,5,0,90.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.03694380300143241,31344.9051240096,8,4,8,8_1,8_3,8_0_1 +28319,2,58.0,0.0,1,211,300.0,700.0,0.0,0,47,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,2,5.0,8,,1,128341,2,2,0,0,1,,100.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,4177.55391398073,300.0,23049.879384258493,0,1,0,1,80.0,2,2,8,0,1,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04338417495941138,23049.879384258493,6,3,6,6_0,6_1,6_1_0 +28320,0,78.0,0.0,7,120,90.0,,,78,77,0.0,0.0,,216.0,174.58424239996165,,71,2,2,2,2,1,2,2,2,0,,1,,5,128342,1,3,0,0,2,,0.0,,41,1.0,8.0,3.0,3.0,2.0,3,3,124.86198833156229,90.0,18212.238752039408,5,5,5,0,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.011860156400366336,9106.119376019704,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28321,2,30.0,0.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1540.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,30.0,2,,2,128343,2,1,0,1,2,324.0,0.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2470.65885798329,0.0,35212.61546873238,0,1,2,3,46.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04373432588009454,35212.61546873238,9,5,9,9_0,9_2,9_0_1 +28322,2,69.0,0.0,1,111,500.0,1700.0,0.0,72,75,0.0,0.0,852.6002716860306,2200.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,0,,1,,1,128344,2,1,4,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1228.6982827452,500.0,21112.0236499241,5,5,0,1,100.0,6,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1042060219560198,14074.682433282733,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +28323,2,59.0,0.0,6,112,1800.0,0.0,0.0,55,64,0.0,132.4327277010224,3069.36097806971,1925.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,128345,2,1,2,0,1,,230.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1225.66286119511,1800.0,64830.23647988706,1,1,0,1,110.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029692935033442492,43220.157653258044,9,5,9,9_1,9_0,9_0_0 +28324,1,45.0,253.0,7,111,360.0,,,53,54,0.0,66.2163638505112,,510.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,128346,2,1,0,0,2,,480.0,424.0,43,2.0,1.0,3.0,4.0,2.3,3,3,83.53020998057588,360.0,28462.513526538904,1,1,2,3,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017918305054979343,12375.005881103873,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +28325,2,56.0,0.0,6,111,750.0,,,0,46,0.0,0.0,,950.0,277.1178450793042,,50,0,0,0,0,0,0,0,0,2,45.0,2,,4,128347,2,2,0,0,2,,320.0,550.0,12,1.0,2.0,3.0,1.0,1.0,1,1,255.0806536334287,750.0,45275.74411133355,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0209825375296746,45275.74411133355,10,5,10,10_0,10_2,10_0_0 +28326,2,27.0,0.0,2,112,518.0,1800.0,0.0,52,63,0.0,198.6490915515336,883.2938814667277,2468.0,0.0,3417.30728629162,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,128348,2,2,3,0,1,,130.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1514.21436067874,518.0,35611.037025666345,1,1,1,2,100.0,4,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0693043563494433,19783.909458703525,5,3,5,5_1,5_0,5_0_1 +28327,2,63.0,0.0,9,111,360.0,,,13,78,0.0,0.0,,636.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,128349,2,2,0,0,2,,400.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,172.41385611911673,360.0,22672.0,1,5,0,1,86.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02805222300635145,15114.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +28328,2,32.0,0.0,2,111,1500.0,0.0,0.0,43,38,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,128350,2,1,3,0,1,,1000.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,885.559512063791,1500.0,46365.71502579703,1,1,1,2,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03235149073330213,19319.047927415428,5,3,5,5_1,5_4,5_0_1 +28329,2,67.0,0.0,1,120,590.0,0.0,0.0,74,74,3164.0485531098047,0.0,1006.0683205895161,3590.0,0.0,0.0,42,2,2,2,2,2,2,2,1,0,,1,,1,128351,2,2,4,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1333.42694295121,590.0,53098.92956240829,5,5,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06760964918851325,35399.286374938856,9,5,9,9_1,9_0,9_1_0 +28330,2,58.0,0.0,2,111,0.0,0.0,0.0,56,46,0.0,0.0,0.0,1968.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128352,2,1,0,0,1,,0.0,550.0,43,2.0,1.0,4.0,2.0,1.5,2,2,310.602939039304,0.0,28346.82421058807,1,1,2,3,70.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06942576654724218,18897.882807058715,5,3,5,5_0,5_3,5_0_1 +28331,2,52.0,0.0,5,112,499.0,0.0,0.0,0,64,1508.1964769823403,0.0,850.8950711426585,2049.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,128353,2,1,1,0,1,,380.0,,22,1.0,2.0,6.0,2.0,1.5,2,2,717.624999606125,499.0,33669.85836190607,0,1,0,1,121.0,6,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.060855616853982074,22446.57224127071,6,3,6,6_1,6_0,6_0_0 +28332,2,48.0,0.0,1,111,340.0,850.0,0.0,0,46,0.0,0.0,579.7681847465008,1190.0,0.0,1613.7284407488207,10,0,0,0,0,0,0,0,0,0,,2,,1,128354,2,1,0,0,2,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,964.747424849552,340.0,26769.174793505426,0,1,1,2,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04445411594416091,20591.672918081098,5,3,5,5_0,5_4,5_1_0 +28333,2,89.0,0.0,2,111,481.0,766.0,0.0,0,77,0.0,0.0,820.2014613619614,1247.0,0.0,1454.2541007218783,70,0,0,0,0,0,0,0,0,0,,2,,2,128355,2,1,0,1,1,,192.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,292.770394174407,481.0,42855.914345114936,0,5,0,1,71.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.029097500754692057,28570.60956340996,8,4,8,8_0,8_3,8_0_1 +28334,2,38.0,0.0,6,111,950.0,1200.0,0.0,53,53,0.0,105.94618216081791,1619.9405162034582,2230.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,128356,1,1,2,0,1,,700.0,,43,3.0,0.0,7.0,4.0,2.3,3,2,589.650013653212,950.0,79477.65002010453,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028058202519021424,34555.5000087411,9,5,9,9_1,9_4,9_0_0 +28335,2,62.0,0.0,7,111,300.0,0.0,0.0,77,74,0.0,529.7309108040896,511.56016301161833,790.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,128357,2,1,2,0,1,,220.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,2020.52389041474,300.0,45004.997138790146,5,5,1,2,120.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01755360627095992,30003.3314258601,8,4,8,8_1,8_2,8_0_0 +28336,2,66.0,0.0,5,211,308.0,1418.0,0.0,78,67,0.0,0.0,525.2017673585948,1726.0,0.0,2692.078739978621,70,0,0,0,0,0,0,0,0,2,10.0,1,,3,128358,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,3.0,2.0,3,3,1244.93614876367,308.0,35924.73408474486,6,5,0,1,90.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048044892856505005,17962.36704237243,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +28337,2,69.0,0.0,9,400,2474.0,0.0,0.0,72,37,0.0,0.0,4218.66614430248,2564.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128359,2,1,1,0,1,,650.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,2812.24913925187,2474.0,75000.07327214237,5,4,0,1,127.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03418663326762853,50000.04884809491,10,5,10,10_1,10_0,10_0_0 +28338,0,58.0,0.0,7,112,0.0,,,0,55,0.0,0.0,,1368.0,0.0,,60,0,0,0,0,0,0,0,0,2,15.0,1,,5,128360,2,1,0,0,2,,320.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,129.69134263861474,0.0,23108.03914342628,0,1,5,0,60.0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059200176679169485,23108.03914342628,6,3,6,6_1,6_0,6_0_0 +28339,2,42.0,0.0,8,120,840.0,0.0,0.0,21,43,1582.0242765549024,437.0280014133739,1432.3684564325313,2670.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,128361,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,98.3712729735858,840.0,59659.795328771885,1,1,1,2,190.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044753757288073535,25939.041447292126,7,4,7,7_1,7_0,7_0_0 +28340,2,49.0,0.0,5,112,847.0,0.0,0.0,90,48,0.0,0.0,1444.3048602361357,1429.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,128362,2,1,2,0,1,,172.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1943.62651311428,847.0,46985.34695812616,7,1,1,2,99.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03041373731417882,31323.564638750773,8,4,8,8_1,8_0,8_0_0 +28342,2,66.0,0.0,6,221,966.0,0.0,0.0,72,74,0.0,0.0,1647.223724897411,1116.0,207.83838380947813,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,128364,2,1,3,0,2,,238.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2591.00113031408,966.0,83196.04346137392,6,5,0,1,135.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013414099439934714,55464.02897424928,10,5,10,10_1,10_1,10_0_0 +28343,2,80.0,0.0,2,111,600.0,,,75,75,0.0,0.0,,680.0,110.84713803172167,,31,0,0,0,0,0,0,0,0,0,,1,,2,128365,2,1,0,0,1,,360.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,110.66757354029987,600.0,77898.9048335917,5,5,0,1,150.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008729262644354523,51932.60322239447,10,5,10,10_1,10_2,10_0_1 +28344,2,55.0,0.0,2,211,0.0,0.0,1500.0,56,77,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,50,0,0,0,0,0,0,0,0,0,,1,,2,128366,2,1,1,0,1,,200.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,1356.54127733895,0.0,27954.778406822552,1,5,0,1,90.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.053658089438974585,18636.5189378817,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +28345,2,50.0,0.0,2,111,1150.0,0.0,0.0,0,52,0.0,0.0,1960.9806248778702,1330.0,249.40606057137379,0.0,33,2,2,2,2,1,2,2,2,1,30.0,1,,2,128367,1,3,4,0,2,,0.0,547.0,32,2.0,0.0,5.0,5.0,3.0,5,5,1371.77117410634,1150.0,58004.1502654234,0,1,2,3,85.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.02292939374017208,19334.716755141133,5,3,5,5_1,5_3,5_0_1 +28346,2,51.0,0.0,7,300,480.0,,,52,52,0.0,0.0,,700.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,5,128368,2,1,0,0,2,,400.0,,43,4.0,0.0,5.0,4.0,2.5,4,4,90.54295783403856,480.0,39280.754809801314,4,1,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017820431490927876,15712.301923920526,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +28347,2,29.0,0.0,2,111,480.0,120.0,0.0,81,21,0.0,0.0,818.4962608185893,600.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,128369,2,3,0,1,1,804.0,0.0,323.0,43,2.0,0.0,3.0,2.0,1.5,2,2,343.072607075511,480.0,9447.729436683181,4,4,2,3,56.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06350732247584794,6298.486291122121,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +28348,2,43.0,0.0,6,111,408.0,1960.0,0.0,46,46,0.0,0.0,695.7218216958009,2368.0,0.0,3721.0679339619865,31,0,0,0,0,0,0,0,0,2,3.0,2,,4,128370,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2177.74580342044,408.0,86184.87548085708,1,1,1,2,105.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02747581854458869,41040.41689564623,9,5,9,9_0,9_3,9_0_0 +28349,2,66.0,0.0,1,111,600.0,3000.0,0.0,74,77,0.0,0.0,1023.1203260232367,3600.0,0.0,5695.512143819367,70,2,2,2,2,1,2,2,2,0,,1,,1,128371,1,2,2,0,2,,600.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,370.480823668098,600.0,38039.96874828817,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,1,0,0,0.09463730172391382,25359.97916552545,7,4,7,7_1,7_4,7_1_0 +28350,1,38.0,230.0,6,221,600.0,,,0,52,0.0,0.0,,700.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,3,15.0,1,,4,128372,2,3,0,0,2,,600.0,243.0,32,1.0,0.0,4.0,3.0,1.8,2,1,67.62405502356864,600.0,20319.361564173192,0,1,2,3,55.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03444990128204766,11288.53420231844,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +28351,2,48.0,0.0,2,111,730.0,1266.0,0.0,37,47,0.0,304.5952737123515,1244.7963966616046,2226.0,0.0,2403.506124691773,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,128373,2,1,2,0,1,,177.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1301.99752532894,730.0,95265.14098046185,1,1,0,1,160.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023366364412944454,63510.09398697456,10,5,10,10_1,10_2,10_0_1 +28352,1,84.0,164.0,9,111,218.0,851.0,0.0,0,77,0.0,0.0,371.73371845510934,1069.0,0.0,1615.6269447967604,50,2,2,2,2,1,2,2,2,0,,1,2008.0,6,128374,2,3,3,0,1,,192.0,392.0,11,0.0,0.0,2.0,1.0,1.0,1,1,353.779512922169,218.0,11631.274980114427,0,5,2,3,54.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.09190737918479538,11631.274980114427,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +28353,1,49.0,229.0,2,111,300.0,,,69,64,0.0,66.2163638505112,,490.0,193.98249155551292,,50,0,0,0,0,0,0,0,0,2,60.0,1,,2,128375,2,2,0,0,2,,250.0,550.0,43,2.0,2.0,3.0,2.0,1.5,2,2,72.67560978584741,300.0,16277.897727336818,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.030102167258189767,10851.931818224546,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +28354,2,67.0,0.0,2,111,360.0,0.0,0.0,75,75,0.0,927.0290939071567,613.872195613942,1060.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,128376,2,2,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1175.43781630673,360.0,37769.98962075166,5,5,0,1,65.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028064609247803785,25179.993080501106,7,4,7,7_0,7_2,7_0_1 +28355,1,28.0,230.0,9,112,900.0,0.0,0.0,56,55,0.0,0.0,1534.680489034855,900.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,128377,2,1,1,0,1,,480.0,709.0,43,2.0,0.0,6.0,4.0,2.1,2,2,877.248723954553,900.0,36769.79021398345,1,1,2,3,123.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024476615035397525,17509.42391142069,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +28356,2,39.0,0.0,9,112,2300.0,0.0,0.0,46,42,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,43,2,2,2,2,1,2,2,2,3,25.0,1,2006.0,6,128378,1,2,1,0,1,,0.0,789.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1418.67002146493,2300.0,38882.31737527008,1,1,2,3,65.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.059152852897158985,21601.2874307056,6,3,6,6_1,6_1,6_0_0 +28357,1,59.0,360.0,5,111,480.0,,,0,78,0.0,0.0,,756.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,128379,2,2,0,0,2,,660.0,500.0,31,2.0,0.0,4.0,3.0,2.0,3,3,79.52289107592193,480.0,23581.45064613717,0,7,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0320590964205096,11790.725323068586,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +28358,2,40.0,0.0,8,111,400.0,,,52,69,0.0,0.0,,900.0,692.7946126982605,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128380,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,114.24780230905023,400.0,35410.09990744771,4,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02541647728620798,19672.277726359836,5,3,5,5_1,5_2,5_0_0 +28359,1,74.0,103.0,7,111,400.0,600.0,0.0,0,78,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,5,128381,2,1,0,0,1,,220.0,318.0,11,0.0,0.0,2.0,1.0,1.0,1,1,445.804962880886,400.0,11371.400000000001,0,5,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08793991944703378,11371.400000000001,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +28360,1,31.0,58.0,2,111,500.0,,,64,55,0.0,0.0,,588.0,121.93185183489385,,43,0,0,0,0,0,0,0,0,2,15.0,2,,2,128382,2,1,0,0,1,,600.0,227.0,43,2.0,0.0,3.0,4.0,2.1,2,2,117.85411570046277,500.0,31571.315851628962,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018624500884389376,15033.959929347124,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +28361,2,73.0,0.0,6,111,306.0,,,77,71,0.0,0.0,,556.0,346.39730634913025,,71,2,2,2,2,1,2,2,2,0,,1,,4,128383,2,3,0,0,2,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,104.31808684736194,306.0,8199.013761230482,6,5,0,1,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.06781303412723597,5466.009174153655,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28362,1,32.0,303.0,2,111,400.0,180.0,0.0,85,68,1139.0574791195297,0.0,682.0802173488245,1660.0,0.0,341.730728629162,71,1,2,2,1,1,2,2,2,0,,2,,2,128384,1,2,0,1,1,929.0,0.0,318.0,42,1.0,0.0,3.0,5.0,2.4,2,2,252.89199841165,400.0,23664.963612640553,6,1,2,3,70.0,9,7,4,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07014589277091966,9860.401505266898,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28363,2,71.0,0.0,2,112,980.0,792.0,0.0,72,72,0.0,0.0,1671.09653250462,1772.0,0.0,1503.615205968313,50,0,0,0,0,0,0,0,0,0,,1,,2,128385,2,1,2,0,1,,149.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,3495.58567614174,980.0,56713.18794379334,5,5,0,1,120.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.031244937275544688,37808.79196252889,9,5,9,9_1,9_1,9_0_1 +28364,2,38.0,0.0,7,120,500.0,,,0,31,0.0,0.0,,500.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,5,128386,2,1,0,0,2,,0.0,760.0,32,1.0,0.0,3.0,3.0,1.6,1,1,110.93892603400073,500.0,8338.91891175644,0,1,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.059959810772963154,5211.824319847775,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +28365,2,31.0,0.0,7,111,0.0,,,55,63,0.0,0.0,,961.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,128387,2,1,0,0,2,,254.0,970.0,43,2.0,0.0,4.0,3.0,1.8,2,2,142.49018404280378,0.0,17840.98543370846,4,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05386473766097598,9911.65857428248,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +28366,2,61.0,0.0,2,111,280.0,0.0,0.0,0,55,0.0,0.0,477.4561521441771,1290.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,35.0,2,,2,128388,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1076.87151312662,280.0,11272.735685995505,0,1,1,2,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11443539846344573,11272.735685995505,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +28367,2,44.0,0.0,6,111,1400.0,0.0,0.0,62,22,0.0,1191.8945493092015,2387.2807607208856,2400.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,128389,2,1,2,0,1,,600.0,,43,4.0,0.0,6.0,5.0,3.0,5,3,420.00798671168,1400.0,35547.92102653624,1,1,1,2,110.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.067514496788952,11849.307008845413,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +28368,1,47.0,377.0,2,111,264.0,500.0,0.0,0,85,0.0,0.0,450.1729434502241,764.0,0.0,949.2520239698945,44,2,2,2,2,1,2,2,2,0,,2,,2,128390,2,1,0,0,1,,0.0,478.0,31,0.0,0.0,3.0,2.0,1.3,1,1,427.479909545468,264.0,7475.7435666214715,0,7,2,3,74.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.10219719191696086,5750.571974324209,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28369,2,49.0,0.0,2,111,324.0,900.0,0.0,0,64,0.0,0.0,552.4849760525478,1374.0,207.83838380947813,1708.65364314581,41,0,0,0,0,0,0,0,0,2,7.0,2,,2,128391,2,2,0,0,1,,0.0,880.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2671.84568730124,324.0,30021.647752828074,0,1,2,3,77.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04576697492796902,30021.647752828074,8,4,8,8_0,8_3,8_0_1 +28371,2,28.0,0.0,2,111,0.0,0.0,0.0,55,63,0.0,0.0,0.0,927.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,3.0,1,,2,128393,1,3,2,0,2,,128.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1216.85976952423,0.0,34525.212830017656,4,1,1,2,140.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026849943099960492,19180.67379445425,5,3,5,5_1,5_2,5_0_1 +28372,2,42.0,0.0,1,112,0.0,0.0,0.0,54,62,0.0,0.0,0.0,3623.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,128394,2,2,1,0,1,,301.0,,43,2.0,0.0,6.0,5.0,2.4,3,2,1064.43569354347,0.0,51696.67434898594,1,1,1,2,187.0,5,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07008187752160633,21540.28097874414,6,3,6,6_1,6_0,6_1_0 +28373,2,91.0,0.0,2,111,342.0,1038.0,0.0,86,86,0.0,0.0,583.1785858332449,1380.0,0.0,1970.647201761501,44,0,0,0,0,0,0,0,0,0,,1,,2,128395,2,2,2,0,1,,365.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1471.06144591149,342.0,39789.39800326687,5,5,0,1,86.0,6,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03468260565004518,26526.265335511245,7,4,7,7_1,7_2,7_0_1 +28374,0,50.0,0.0,7,211,0.0,,,0,33,0.0,0.0,,30.0,41.567676761895626,,20,0,0,0,0,0,0,0,0,1,5.0,2,,5,128396,2,1,0,0,2,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,51.84834526578352,0.0,71422.19095260145,0,1,5,0,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0004200375205502891,71422.19095260145,10,5,10,10_0,10_2,10_0_0 +28375,2,65.0,0.0,5,111,429.0,,,56,77,0.0,0.0,,693.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,3,128397,2,2,0,0,2,,550.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,127.50902287019996,429.0,23403.279257355447,4,5,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029611234920516368,15602.186171570298,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +28376,2,85.0,0.0,2,111,200.0,340.0,0.0,77,75,0.0,0.0,341.04010867441224,696.0,0.0,645.4913762995283,70,0,0,0,0,0,0,0,0,0,,2,,2,128398,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1724.97907693082,200.0,42301.8453677479,5,5,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016453182927349305,28201.230245165265,8,4,8,8_0,8_3,8_0_1 +28377,2,27.0,0.0,1,300,1680.0,0.0,0.0,46,62,0.0,662.163638505112,2864.7369128650625,2300.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,128399,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1774.8798107821,1680.0,50082.45280386738,1,1,1,2,110.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045924268306251834,27823.584891037433,7,4,7,7_1,7_0,7_1_0 +28378,2,49.0,0.0,9,112,0.0,0.0,0.0,85,53,0.0,0.0,0.0,2392.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,128400,2,1,1,0,1,,280.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,1463.37536619963,0.0,49367.98002955304,6,1,1,2,124.0,8,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048452458426860544,24683.99001477652,7,4,7,7_1,7_0,7_0_0 +28379,2,73.0,0.0,6,111,420.0,1120.0,0.0,68,78,0.0,0.0,716.1842282162656,1540.0,0.0,2126.324533692564,70,0,0,0,0,0,0,0,0,0,,1,,4,128401,2,1,2,0,1,,450.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,238.543486709403,420.0,31493.979748199235,5,5,0,1,80.0,8,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04889823427564927,20995.98649879949,5,3,5,5_1,5_3,5_0_0 +28380,2,64.0,0.0,5,120,2000.0,0.0,0.0,71,72,0.0,0.0,3410.4010867441225,2060.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,128402,1,2,5,0,2,,460.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,343.074864127456,2000.0,88832.51661633284,5,5,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023189706635208016,59221.677744221895,10,5,10,10_1,10_0,10_0_0 +28381,2,35.0,0.0,1,111,1632.0,0.0,0.0,46,46,0.0,0.0,2782.8872867832038,1632.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,55.0,2,,1,128403,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1088.92498687235,1632.0,108022.45663257557,1,1,1,2,49.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01510796968403558,60012.47590698643,10,5,10,10_0,10_4,10_1_0 +28382,1,46.0,320.0,2,111,360.0,580.0,0.0,85,68,0.0,0.0,613.872195613942,940.0,0.0,1101.1323478050776,71,2,2,2,2,1,2,2,2,2,15.0,2,,2,128404,1,3,0,0,2,,500.0,638.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1308.64825702084,360.0,26522.074653013722,6,1,2,3,70.0,5,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03544217457713803,11050.864438755718,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28383,1,43.0,270.0,2,111,0.0,0.0,270.0,0,56,0.0,0.0,170.18593841198083,270.0,0.0,323.1176798424638,60,0,0,0,0,0,0,0,0,0,,2,,2,128405,2,1,0,1,1,441.0,0.0,273.0,12,1.0,1.0,3.0,1.0,1.0,1,1,313.417510099052,0.0,10075.55533819064,0,4,2,3,58.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.026797530353149388,10075.55533819064,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28384,2,27.0,0.0,1,112,0.0,0.0,0.0,31,55,0.0,0.0,0.0,646.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,6.0,2,,1,128406,2,1,0,0,1,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,943.134898737796,0.0,16723.22691387805,1,1,2,3,75.0,9,3,4,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03862890836360691,11148.817942585367,2,1,2_0,2_0_0,2_1_0,2_1_0_0 +28385,2,66.0,0.0,2,111,514.0,1921.0,0.0,77,78,0.0,0.0,876.4730792932395,2435.0,0.0,3647.0262760923347,70,0,0,0,0,0,0,0,0,0,,1,,2,128407,1,1,1,0,1,,1333.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,739.797694796695,514.0,56841.6277609512,5,5,0,1,140.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042838322826370304,37894.418507300805,9,5,9,9_1,9_3,9_0_1 +28386,2,29.0,0.0,7,111,841.0,0.0,0.0,0,54,0.0,0.0,1434.0736569759035,841.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,128408,2,1,0,0,1,,0.0,,22,3.0,1.0,2.0,3.0,2.0,3,3,768.534093830041,841.0,49696.933722762216,0,1,0,1,51.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01692257322537396,24848.466861381108,7,4,7,7_0,7_4,7_0_0 +28387,2,65.0,0.0,1,111,534.0,832.0,0.0,68,78,0.0,0.0,910.5770901606807,1366.0,0.0,1579.5553678859044,70,0,0,0,0,0,0,0,0,0,,1,,1,128409,2,1,1,0,1,,170.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1120.82773298297,534.0,32643.255714325307,1,5,1,2,60.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04184631618716079,21762.17047621687,6,3,6,6_1,6_3,6_1_0 +28388,2,92.0,0.0,2,111,360.0,120.0,0.0,78,77,0.0,0.0,613.872195613942,480.0,0.0,227.8204857527747,70,2,1,2,1,1,2,2,2,0,,2,,2,128410,1,3,0,1,2,689.0,0.0,512.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1522.94497729134,360.0,33980.43244825369,5,5,2,3,66.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.01412577667252931,22653.621632169128,6,3,6,6_0,6_3,6_0_1 +28389,2,81.0,0.0,7,111,4050.0,0.0,0.0,74,74,0.0,0.0,6906.062200656847,4050.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,128411,2,1,2,0,1,,480.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,515.650694468721,4050.0,53445.13219794027,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07577865061686728,35630.08813196018,9,5,9,9_1,9_4,9_0_0 +28390,2,61.0,0.0,1,111,1200.0,0.0,0.0,0,75,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,2,2,2,2,2,2,2,1,0,,2,,1,128412,2,3,0,0,1,,0.0,346.0,31,0.0,1.0,3.0,2.0,1.5,2,2,1052.47684514052,1200.0,21147.254010224795,0,5,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.05674495607892138,14098.169340149863,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +28391,2,79.0,0.0,2,111,220.0,0.0,0.0,0,77,0.0,0.0,375.14411954185346,220.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128413,2,1,0,1,1,936.0,0.0,229.0,11,0.0,2.0,4.0,1.0,1.0,1,1,2002.79536524569,220.0,14169.43242494573,0,5,2,3,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015526380549490685,14169.43242494573,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +28392,2,51.0,0.0,2,111,155.0,60.0,0.0,0,45,0.0,0.0,264.3060842226695,600.0,0.0,113.91024287638734,50,2,2,1,1,1,2,2,2,2,7.0,2,,2,128414,2,1,0,1,1,408.0,0.0,256.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1302.59217637277,155.0,27377.116341782857,0,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.021916113899997647,27377.116341782857,7,4,7,7_0,7_3,7_0_1 +28393,2,27.0,0.0,9,112,1200.0,0.0,0.0,52,54,0.0,0.0,2046.2406520464733,1252.0,72.05063972061909,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,128415,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1381.60090800525,1200.0,50256.80002511564,1,1,1,2,96.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024912051690006484,27920.44445839758,7,4,7,7_1,7_0,7_0_0 +28394,2,53.0,0.0,5,111,1200.0,,,45,33,0.0,0.0,,1263.0,87.29212119998083,,20,0,0,0,0,0,0,0,0,2,10.0,1,,3,128416,2,1,0,0,2,,300.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,127.1076308837635,1200.0,112143.15024066475,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01126239094665648,62301.75013370263,10,5,10,10_1,10_3,10_0_0 +28395,1,50.0,70.0,8,111,1700.0,0.0,0.0,22,21,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,90.0,2,1999.0,6,128417,2,1,0,0,1,,0.0,,43,3.0,0.0,3.0,5.0,2.8,4,4,1697.32216607365,1700.0,17797.406194067684,1,1,1,2,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09551953703043829,6356.216497881316,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +28397,2,30.0,0.0,2,111,0.0,0.0,480.0,37,38,0.0,0.0,302.552779399077,480.0,0.0,574.4314308310468,20,2,1,2,2,1,2,2,2,1,20.0,2,,2,128419,1,2,0,1,2,637.0,0.0,829.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1344.49042628465,0.0,78853.60873780953,1,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006087229331456643,52569.07249187302,10,5,10,10_0,10_4,10_0_1 +28398,2,43.0,0.0,2,111,460.0,320.0,0.0,78,48,0.0,0.0,784.3922499511482,780.0,0.0,607.5212953407324,50,0,0,0,0,0,0,0,0,2,4.0,2,,2,128420,2,1,0,1,1,1204.0,520.0,402.0,42,1.0,3.0,5.0,4.0,2.3,3,3,265.267888251799,460.0,35420.8475413262,6,1,2,3,88.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02202092988006452,15400.368496228783,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +28399,2,28.0,0.0,7,211,0.0,,,0,52,0.0,0.0,,158.0,0.0,,50,0,0,0,0,0,0,0,0,2,60.0,2,,5,128421,2,1,0,0,2,,152.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,82.82932425759022,0.0,24660.446351664676,0,1,3,4,52.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006407021095517778,18969.574116665135,5,3,5,5_0,5_2,5_0_0 +28400,2,28.0,0.0,2,111,480.0,0.0,0.0,55,46,0.0,0.0,818.4962608185893,952.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,25.0,2,,2,128422,2,1,0,1,1,,0.0,370.0,43,2.0,0.0,2.0,2.0,1.5,2,2,310.206373739658,480.0,4690.057689810165,1,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.2029825778195349,3126.70512654011,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +28401,2,49.0,0.0,8,400,912.0,,,81,65,0.0,0.0,,1272.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,1,15.0,1,2000.0,6,128423,2,2,0,0,2,,420.0,,43,2.0,0.0,4.0,7.0,3.8,6,4,68.66664661474428,912.0,37722.35273238459,4,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03372006006687885,9926.934929574893,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +28402,2,56.0,0.0,2,111,0.0,0.0,800.0,0,31,1792.9608467622227,0.0,504.25463233179505,2500.0,0.0,957.3857180517447,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,128424,2,1,3,0,1,,450.0,760.0,32,1.0,0.0,4.0,3.0,2.0,3,2,1700.79300137117,0.0,86467.25037023718,0,1,2,3,60.0,9,7,9,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.028912680688878745,43233.62518511859,9,5,9,9_1,9_3,9_0_1 +28403,2,40.0,0.0,2,400,626.0,0.0,0.0,0,52,1265.6194212439218,0.0,1067.4555401509103,1826.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,2,128425,2,2,1,0,1,,142.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1345.44904223369,626.0,22606.709450839022,0,1,1,2,110.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08077248057577129,22606.709450839022,6,3,6,6_1,6_0,6_0_1 +28404,1,69.0,48.0,1,111,550.0,115.0,0.0,0,77,0.0,0.0,937.8602988546337,665.0,0.0,218.32796551307572,71,0,0,0,0,0,0,0,0,0,,2,,1,128426,2,1,0,1,2,665.0,0.0,309.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1049.66303460666,550.0,15604.630699454261,0,5,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0426155551392355,15604.630699454261,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +28405,0,41.0,0.0,1,111,299.0,1000.0,0.0,0,37,0.0,0.0,509.8549624682463,1299.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,3,35.0,1,,1,128427,2,1,2,0,1,,173.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,482.452287811719,299.0,36247.2152792148,0,1,0,1,100.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035837235770905806,36247.2152792148,9,5,9,9_1,9_2,9_1_0 +28406,2,56.0,0.0,7,300,569.0,0.0,0.0,56,34,1259.2913241377023,79.45963662061344,970.2591091787028,1827.0,5.542356901586084,0.0,42,0,0,0,0,0,0,0,0,2,45.0,1,,5,128428,2,1,2,0,1,,546.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,986.632402700104,569.0,48426.13232825191,1,1,0,1,210.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0377275638619218,32284.088218834604,8,4,8,8_1,8_0,8_0_0 +28407,1,40.0,200.0,2,112,396.0,1024.0,0.0,53,52,0.0,0.0,675.2594151753362,1420.0,0.0,1944.068145090344,50,2,2,2,2,2,2,1,2,1,2.0,2,,2,128429,1,3,0,0,2,,152.0,400.0,43,2.0,2.0,5.0,2.0,1.5,2,2,2704.07894198895,396.0,19882.052580803665,4,1,2,3,90.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.07142119729484195,13254.701720535777,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +28408,2,64.0,0.0,2,111,480.0,0.0,0.0,0,77,0.0,0.0,818.4962608185893,480.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128430,2,2,0,2,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,969.445976221584,480.0,33374.30157976408,0,5,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014382323442868378,33374.30157976408,8,4,8,8_0,8_4,8_0_1 +28409,2,51.0,0.0,2,111,720.0,,,62,52,0.0,0.0,,920.0,277.1178450793042,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,128431,2,3,0,0,2,,240.0,353.0,43,3.0,4.0,5.0,4.0,2.5,4,3,131.85456557213936,720.0,33975.683456176674,4,1,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027078189646623483,13590.27338247067,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28410,2,55.0,0.0,5,111,260.0,0.0,0.0,34,37,0.0,0.0,443.3521412767359,260.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,128432,2,1,0,1,1,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1826.84774584949,260.0,109356.92027664726,1,1,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0023775358646006234,72904.61351776484,10,5,10,10_0,10_3,10_0_0 +28411,2,23.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,189.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,2,,2,128433,1,1,0,1,1,540.0,132.0,428.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2425.12111350573,0.0,21609.140266925664,0,1,2,3,38.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008746298911728479,21609.140266925664,6,3,6,6_0,6_3,6_0_1 +28412,1,43.0,201.0,9,212,1600.0,0.0,0.0,0,43,0.0,0.0,2728.320869395298,1771.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,128434,2,1,1,0,1,,336.0,,32,1.0,0.0,7.0,2.0,1.3,2,1,743.218011450211,1600.0,12839.119204370754,0,1,1,2,100.0,1,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13793781113871953,9876.245541823657,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +28413,2,75.0,0.0,1,112,980.0,0.0,0.0,77,78,0.0,595.9472746546007,1671.09653250462,1530.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128435,2,1,1,0,1,,720.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,1585.60852247917,980.0,31801.374395335297,5,5,0,1,70.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0481111281852153,21200.916263556865,5,3,5,5_1,5_0,5_1_0 +28414,2,33.0,0.0,9,300,966.0,0.0,0.0,52,64,0.0,0.0,1647.223724897411,999.0,45.72444443808519,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,128436,2,1,1,0,1,,188.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1524.43592008492,966.0,50452.07359695159,1,1,1,2,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01980097008461435,24024.796950929325,6,3,6,6_1,6_0,6_0_0 +28415,2,59.0,0.0,1,300,1061.0,96.0,0.0,62,52,0.0,317.83854648245375,1809.2177765177569,1397.0,0.0,182.25638860221974,70,0,0,0,0,0,0,0,0,4,180.0,1,,1,128437,2,1,2,0,1,,414.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1147.11098290735,1061.0,45324.5578757089,1,1,0,1,55.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030822142906080142,30216.37191713927,8,4,8,8_1,8_0,8_1_0 +28416,2,30.0,0.0,2,111,420.0,0.0,0.0,0,38,0.0,0.0,716.1842282162656,420.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,2,,2,128438,2,1,0,0,1,,132.0,580.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1838.15489320874,420.0,31931.560035854673,0,1,2,3,50.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01315313124471209,31931.560035854673,8,4,8,8_0,8_3,8_0_1 +28417,2,78.0,0.0,2,111,262.0,0.0,0.0,0,74,0.0,0.0,446.76254236348,1198.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,128439,2,2,0,1,1,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,2055.8171427643,262.0,45595.74686179687,0,5,0,1,104.0,6,4,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.026274380451124128,45595.74686179687,10,5,10,10_0,10_2,10_0_1 +28418,1,44.0,414.0,2,111,784.0,0.0,0.0,85,67,0.0,0.0,1336.877226003696,784.0,0.0,0.0,50,1,1,2,2,1,2,2,2,2,40.0,2,,2,128440,1,3,0,1,1,671.0,296.0,378.0,42,1.0,0.0,3.0,5.0,2.4,2,2,282.034169287842,784.0,28933.955818851067,6,1,2,3,65.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027096191233181046,12055.814924521279,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28419,2,86.0,0.0,8,111,800.0,0.0,0.0,0,77,0.0,0.0,1364.160434697649,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2000.0,6,128441,2,1,0,0,1,,100.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,625.204402903313,800.0,19677.965038896087,0,5,0,1,65.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04065461029220729,19677.965038896087,5,3,5,5_0,5_2,5_0_0 +28420,2,50.0,0.0,2,111,380.0,0.0,0.0,85,21,0.0,0.0,647.9762064813832,1383.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,1.0,2,,2,128442,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4000000000000004,2,2,1690.36348852543,380.0,15934.195134332316,6,1,1,2,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08679446864687534,6639.2479726384645,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +28421,2,52.0,0.0,9,111,1700.0,0.0,0.0,54,48,0.0,0.0,2898.840923732504,2073.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2004.0,6,128443,2,2,3,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,489.363522663022,1700.0,41495.42234449802,1,1,0,1,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04995731776844691,16598.168937799208,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +28422,2,63.0,0.0,2,111,660.0,,,0,77,0.0,0.0,,798.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,2,128444,1,2,0,0,2,,240.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,123.37448853258752,660.0,27356.92961120162,0,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02916994017023202,27356.92961120162,7,4,7,7_1,7_3,7_0_1 +28423,2,28.0,0.0,8,111,570.0,0.0,0.0,0,54,0.0,0.0,971.9643097220749,570.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,128445,2,3,0,0,2,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1634.36753574285,570.0,18899.205401546962,0,1,2,3,50.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030159998152797664,18899.205401546962,5,3,5,5_0,5_3,5_0_0 +28424,1,58.0,231.0,2,111,490.0,300.0,0.0,56,52,0.0,0.0,835.54826625231,790.0,0.0,569.5512143819367,71,2,2,2,2,2,2,2,1,0,,2,,2,128446,1,3,0,1,1,1080.0,0.0,461.0,43,2.0,2.0,5.0,5.0,2.4,2,2,280.549716552793,490.0,32513.496382821624,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.024297602161833118,13547.29015950901,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +28425,2,66.0,0.0,1,111,500.0,700.0,0.0,86,74,0.0,0.0,852.6002716860306,1200.0,0.0,1328.9528335578523,31,0,0,0,0,0,0,0,0,0,,1,,1,128447,2,2,2,0,1,,330.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1124.09303916138,500.0,34726.99858570137,6,5,0,1,220.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03455524660556449,23151.332390467578,6,3,6,6_1,6_2,6_1_0 +28426,1,44.0,90.0,9,111,600.0,,,0,54,0.0,0.0,,600.0,0.0,,31,0,0,0,0,0,0,0,0,2,25.0,2,2005.0,6,128448,2,2,0,0,2,,300.0,380.0,32,1.0,0.0,3.0,3.0,1.6,1,1,106.18844229244674,600.0,27483.467677832712,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021831306261398044,17177.167298645443,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +28427,2,65.0,0.0,2,112,369.0,1050.0,0.0,77,75,0.0,0.0,629.2190005042905,1419.0,0.0,1993.4292503367785,50,0,0,0,0,0,0,0,0,0,,1,,2,128449,2,2,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1114.48199103196,369.0,30562.16959573463,5,5,0,1,125.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04642994979643202,20374.779730489754,5,3,5,5_1,5_1,5_0_1 +28428,1,37.0,124.0,9,111,1200.0,0.0,0.0,85,48,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128450,1,1,1,0,1,,480.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,519.586536677499,1200.0,27138.067366988304,6,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.044218329322143334,11307.52806957846,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +28429,2,36.0,0.0,5,111,600.0,80.0,0.0,0,33,0.0,0.0,1023.1203260232367,680.0,0.0,151.8803238351831,10,0,0,0,0,0,0,0,0,3,60.0,2,,3,128451,2,1,0,1,1,330.0,0.0,365.0,12,1.0,0.0,3.0,1.0,1.0,1,1,226.923550560717,600.0,15853.845156926876,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.042891802794156456,15853.845156926876,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +28430,2,35.0,0.0,5,111,420.0,240.0,0.0,64,52,0.0,0.0,716.1842282162656,660.0,0.0,455.6409715055494,43,0,0,0,0,0,0,0,0,2,2.0,2,,3,128452,2,1,0,1,1,600.0,0.0,412.0,43,2.0,0.0,3.0,4.0,2.1,2,2,738.031195333431,420.0,41369.4650725633,1,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015953795845373875,19699.745272649187,5,3,5,5_0,5_4,5_0_0 +28431,2,51.0,0.0,2,111,420.0,24.0,0.0,0,55,0.0,0.0,716.1842282162656,444.0,0.0,45.564097150554936,42,2,2,2,2,1,2,2,2,2,20.0,2,,2,128453,1,1,0,1,1,432.0,200.0,290.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1466.55208075215,420.0,21399.533237753403,0,1,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.020748116095200057,21399.533237753403,6,3,6,6_0,6_3,6_0_1 +28433,1,56.0,154.0,7,112,280.0,574.0,0.0,0,52,0.0,0.0,477.4561521441771,854.0,0.0,1089.7413235174388,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,128455,2,3,3,0,1,,303.0,457.0,32,1.0,2.0,4.0,2.0,1.3,2,1,1433.0563916009,280.0,16008.117637678459,0,1,2,3,84.0,6,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.053347933800157246,12313.936644368045,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +28434,1,88.0,168.0,5,111,480.0,300.0,0.0,0,72,0.0,0.0,818.4962608185893,780.0,0.0,569.5512143819367,70,2,1,2,1,1,2,2,2,0,,2,,3,128456,2,2,0,1,1,547.0,0.0,307.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1200.94428125907,480.0,12631.467867456839,0,5,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.06175054302355135,12631.467867456839,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +28435,2,29.0,0.0,1,111,700.0,100.0,0.0,56,63,105.46828510366015,0.0,1193.6403803604428,900.0,0.0,189.8504047939789,50,2,2,2,2,1,2,2,2,2,20.0,2,,1,128457,1,3,0,0,1,,470.0,307.0,43,2.0,0.0,2.0,3.0,1.8,2,2,598.433088794594,700.0,40412.39701005262,1,1,2,3,50.0,9,7,9,1,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.02227039390353718,22451.331672251454,6,3,6,6_0,6_3,6_1_0 +28436,1,63.0,348.0,5,120,0.0,680.0,0.0,85,78,0.0,0.0,0.0,1236.0,0.0,1290.9827525990565,71,0,0,0,0,0,0,0,0,0,,2,,3,128458,2,1,0,0,2,,0.0,444.0,41,0.0,0.0,4.0,3.0,2.0,3,3,1374.29020624666,0.0,13127.864676232299,6,5,2,3,75.0,0,3,9,0,1,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09415087910204849,6563.932338116149,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +28437,1,24.0,96.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,441.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,1.0,2,,1,128459,2,1,0,4,1,272.0,0.0,513.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1345.48322626682,0.0,11482.168342542689,0,1,3,4,20.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03840737975997502,11482.168342542689,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +28438,2,76.0,0.0,5,120,360.0,,,0,77,0.0,0.0,,590.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,3,128460,2,2,0,0,2,,300.0,,11,0.0,6.0,6.0,1.0,1.0,1,1,74.85502558559627,360.0,5821.371169125993,0,5,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1013506926218864,5821.371169125993,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +28439,2,54.0,0.0,1,111,250.0,1000.0,0.0,0,22,0.0,0.0,426.3001358430153,1250.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,0,,1,,1,128461,2,1,3,0,1,,170.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,283.396469508811,250.0,19076.911020519612,0,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0655242349589757,19076.911020519612,5,3,5,5_1,5_3,5_1_0 +28440,1,25.0,297.0,2,111,46.0,0.0,0.0,0,56,0.0,0.0,78.43922499511481,46.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,128462,2,2,0,1,1,468.0,0.0,404.0,32,1.0,0.0,3.0,2.0,1.3,1,1,350.884476513514,46.0,9986.715899245548,0,4,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.004606118814642068,7682.089153265806,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +28441,2,40.0,0.0,7,400,360.0,,,0,67,0.0,0.0,,624.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,2,6.0,1,,5,128463,1,1,0,0,2,,756.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,112.16312800036636,360.0,16720.378064124852,0,1,0,1,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03731973030794387,12861.829280096039,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +28442,2,74.0,0.0,5,111,640.0,0.0,0.0,75,74,2953.111982902484,0.0,1091.3283477581192,3620.0,249.40606057137379,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,128464,2,2,1,0,1,,280.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,640.42089068925,640.0,74777.4019656786,5,5,0,1,160.0,7,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04841034730868975,49851.601310452395,10,5,10,10_1,10_2,10_0_0 +28443,2,24.0,0.0,1,111,482.0,0.0,0.0,0,56,0.0,0.0,821.9066619053335,482.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,128465,1,2,0,0,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,312.381448043001,482.0,14067.868740205453,0,1,2,3,28.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.034262474927880274,14067.868740205453,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +28444,2,40.0,0.0,2,111,1800.0,0.0,0.0,64,38,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,128466,2,1,1,0,1,,730.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1174.34479106895,1800.0,52642.23084402392,1,1,1,2,85.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034193079798105486,20247.011863086125,5,3,5,5_1,5_3,5_0_1 +28445,2,70.0,0.0,2,111,360.0,280.0,0.0,77,78,0.0,0.0,613.872195613942,640.0,0.0,531.581133423141,71,0,0,0,0,0,0,0,0,0,,2,,2,128467,2,2,0,1,1,562.0,0.0,338.0,41,0.0,5.0,3.0,2.0,1.5,2,2,310.785700714575,360.0,38841.15842482272,5,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016477366431763965,25894.10561654848,7,4,7,7_0,7_4,7_0_1 +28446,1,26.0,270.0,1,111,330.0,0.0,0.0,0,81,0.0,0.0,562.7161793127802,370.0,55.423569015860835,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,128468,2,2,0,0,2,,0.0,560.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2438.74006444355,330.0,9480.257080374604,0,4,3,4,30.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03902847748358526,9480.257080374604,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +28447,2,32.0,0.0,1,111,600.0,1800.0,0.0,54,37,0.0,0.0,1023.1203260232367,3105.0,0.0,3417.30728629162,31,0,0,0,0,0,0,0,0,0,,1,,1,128469,2,1,2,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,652.848247111131,600.0,87732.1712947307,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035391806154767884,41777.22442606223,9,5,9,9_1,9_3,9_1_0 +28448,0,75.0,0.0,2,111,0.0,0.0,1365.0,0,77,0.0,0.0,860.3844664161253,3021.0,0.0,1633.5393814257893,50,0,0,0,0,0,0,0,0,0,,1,,2,128470,2,1,2,0,2,,158.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1828.60010774506,0.0,19364.675023135474,0,5,0,1,80.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15600571640839486,19364.675023135474,5,3,5,5_1,5_2,5_0_1 +28449,2,60.0,0.0,5,111,650.0,0.0,0.0,0,43,0.0,0.0,1108.3803531918397,760.0,152.4148147936173,0.0,33,0,0,0,0,0,0,0,0,2,12.0,1,,3,128471,2,2,2,0,1,,200.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,274.545370216326,650.0,39140.176069666566,0,1,1,2,105.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019417388379839102,39140.176069666566,9,5,9,9_1,9_2,9_0_0 +28450,2,52.0,0.0,9,111,0.0,0.0,0.0,63,63,0.0,0.0,0.0,1510.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,128472,2,1,1,0,1,,270.0,,43,3.0,4.0,4.0,3.0,2.0,3,3,1052.02532514788,0.0,20077.72964940776,4,1,1,2,115.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07520770656679009,10038.86482470388,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +28451,2,75.0,0.0,5,111,1155.0,,,75,74,0.0,0.0,,1255.0,138.5589225396521,,10,0,0,0,0,0,0,0,0,0,,1,,3,128473,1,3,0,0,2,,490.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,119.67299577367855,1155.0,256197.12936116947,5,5,0,1,250.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004898571670687166,170798.08624077964,10,5,10,10_1,10_2,10_0_0 +28452,2,42.0,0.0,2,111,450.0,500.0,0.0,0,21,0.0,0.0,767.3402445174275,950.0,0.0,949.2520239698945,43,1,2,2,2,2,2,2,1,0,,2,,2,128474,1,3,0,0,1,,0.0,440.0,32,1.0,0.0,3.0,2.0,1.5,2,1,274.628413534487,450.0,26711.41146475725,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.035565323878650884,17807.6076431715,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +28453,2,67.0,0.0,5,112,1200.0,0.0,0.0,77,77,0.0,794.5963662061343,2046.2406520464733,1800.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,1,,3,128475,2,1,2,0,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,991.043600369808,1200.0,36378.39951057673,5,5,1,2,112.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.04947991182175742,24252.26634038449,7,4,7,7_1,7_0,7_0_0 +28454,2,64.0,0.0,1,111,0.0,660.0,0.0,0,74,0.0,0.0,0.0,733.0,0.0,1253.0126716402608,20,0,0,0,0,0,0,0,0,0,,2,,1,128476,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2110.1620447129,0.0,34707.965340486546,0,5,0,1,91.0,8,7,4,0,1,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02111907145259713,34707.965340486546,9,5,9,9_0,9_3,9_1_0 +28455,2,36.0,0.0,1,111,654.0,0.0,0.0,0,37,991.4018799744055,0.0,1115.201155365328,1644.0,69.27946126982604,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,128477,1,3,3,0,2,,160.0,,32,1.0,0.0,7.0,3.0,1.8,2,1,1207.31280885936,654.0,34318.6708649728,0,1,1,2,120.0,8,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04790395311252981,19065.928258318225,5,3,5,5_1,5_3,5_1_0 +28456,2,30.0,0.0,7,211,300.0,1120.0,0.0,0,52,0.0,0.0,511.56016301161833,1420.0,0.0,2126.324533692564,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,128478,2,1,2,0,1,,180.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2882.7742512605,300.0,47835.04021929903,0,1,2,3,37.0,2,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029685351856923944,47835.04021929903,10,5,10,10_1,10_1,10_0_0 +28457,2,47.0,0.0,7,111,110.0,0.0,0.0,85,21,0.0,0.0,187.57205977092673,110.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,128479,2,1,0,1,1,,0.0,380.0,42,1.0,0.0,3.0,5.0,2.4,2,2,717.408155093261,110.0,8968.731441808639,6,1,2,3,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01226483374083697,3736.971434086933,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +28458,2,64.0,0.0,6,111,976.0,0.0,0.0,0,38,0.0,0.0,1664.2757303311316,976.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,60.0,2,,4,128480,2,1,0,0,1,,0.0,622.0,12,1.0,3.0,5.0,1.0,1.0,1,1,1379.20586122592,976.0,43175.310368818224,0,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02260551207768225,43175.310368818224,9,5,9,9_0,9_4,9_0_0 +28459,2,38.0,0.0,9,211,1564.0,100.0,0.0,46,48,0.0,0.0,2666.9336498339035,1664.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,128481,2,1,1,0,1,,543.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1487.30133524171,1564.0,67308.79445097946,1,1,1,2,160.0,2,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024721880900895943,32051.80688141879,8,4,8,8_1,8_1,8_0_0 +28460,2,56.0,0.0,5,111,400.0,1300.0,0.0,64,54,0.0,0.0,682.0802173488245,1700.0,0.0,2468.055262321726,41,0,0,0,0,0,0,0,0,2,40.0,1,,3,128482,2,1,2,0,1,,270.0,830.0,43,2.0,1.0,4.0,2.0,1.5,2,2,390.480627539271,400.0,55925.704284055726,1,1,2,3,115.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03039747146259302,37283.80285603715,9,5,9,9_1,9_2,9_0_0 +28461,2,29.0,0.0,7,111,700.0,0.0,0.0,0,65,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,,5,128483,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1442.91573411443,700.0,29932.453026741914,0,1,1,2,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023385988424490765,29932.453026741914,8,4,8,8_0,8_4,8_0_0 +28462,2,58.0,0.0,2,211,410.0,0.0,0.0,74,37,0.0,683.3528749372755,699.1322227825451,926.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,128484,2,1,3,0,1,,348.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,1416.79523903025,410.0,55073.609494554235,5,1,1,2,63.0,2,3,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.016813860731092346,36715.739663036155,9,5,9,9_1,9_1,9_0_1 +28463,2,61.0,0.0,7,112,2310.0,0.0,0.0,46,74,0.0,0.0,3939.0132551894612,2378.0,94.22006732696343,0.0,20,1,2,2,1,2,2,2,2,0,,1,,5,128485,2,1,1,0,1,,430.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1603.67254729415,2310.0,53048.55611586479,1,5,0,1,120.0,9,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.044826856263649205,35365.704077243194,9,5,9,9_1,9_2,9_0_0 +28464,2,88.0,0.0,1,112,180.0,500.0,0.0,0,77,0.0,0.0,306.936097806971,680.0,0.0,949.2520239698945,70,0,0,0,0,0,0,0,0,0,,1,,1,128486,2,1,2,0,1,,200.0,,21,0.0,3.0,6.0,2.0,1.5,2,2,1352.36882899191,180.0,33188.22781987816,0,5,0,1,150.0,10,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020489192845443607,22125.485213252105,6,3,6,6_1,6_1,6_1_0 +28465,2,53.0,0.0,7,211,0.0,,,81,47,0.0,0.0,,502.0,0.0,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,128487,2,2,0,0,2,,591.0,1500.0,43,2.0,0.0,5.0,2.0,1.5,2,2,44.957436233579834,0.0,76954.10449453305,4,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006523368744231998,51302.7363296887,10,5,10,10_1,10_2,10_0_0 +28466,2,63.0,0.0,2,111,616.0,1500.0,0.0,77,75,0.0,0.0,1050.4035347171896,2116.0,0.0,2847.7560719096837,31,0,0,0,0,0,0,0,0,0,,1,,2,128488,2,1,2,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,290.869424389886,616.0,51903.15989255536,5,5,0,1,112.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04076823076630263,34602.10659503691,9,5,9,9_1,9_3,9_0_1 +28467,2,48.0,0.0,9,212,1100.0,0.0,0.0,46,38,0.0,264.8654554020448,1875.7205977092674,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,128489,2,1,1,0,1,,172.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,732.285474519667,1100.0,59623.64578233665,1,1,1,2,150.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021803430215351267,21294.159207977376,6,3,6,6_1,6_0,6_0_0 +28468,1,67.0,75.0,2,111,200.0,130.0,0.0,0,78,0.0,0.0,341.04010867441224,330.0,0.0,246.80552623217258,71,0,0,0,0,0,0,0,0,0,,2,,2,128490,2,1,0,1,1,850.0,0.0,314.0,11,0.0,1.0,3.0,1.0,1.0,1,1,307.232424436158,200.0,12525.864474702686,0,5,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02634548702538416,12525.864474702686,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28469,2,48.0,0.0,5,120,420.0,0.0,0.0,0,62,421.8731404146406,0.0,716.1842282162656,853.0,45.72444443808519,0.0,50,1,2,2,2,2,2,2,1,2,30.0,1,,3,128491,2,3,2,0,1,,400.0,300.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1567.36516215559,420.0,18199.210050999474,0,1,2,3,80.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04687016621104137,18199.210050999474,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +28470,1,45.0,243.0,5,111,400.0,,,0,55,0.0,0.0,,561.0,223.07986528883987,,71,0,0,0,0,0,0,0,0,2,45.0,2,,3,128492,1,1,0,0,2,,586.0,404.0,32,2.0,1.0,3.0,3.0,1.8,2,2,96.65232608638719,400.0,21694.786599926265,0,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0258587470964986,12052.659222181259,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +28471,2,38.0,0.0,5,112,1600.0,0.0,0.0,54,38,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,128493,2,2,2,0,1,,535.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,100.352544677536,1600.0,88886.88212723412,1,1,1,2,88.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01800040637840952,49381.60118179673,10,5,10,10_1,10_0,10_0_0 +28472,1,54.0,163.0,2,211,710.0,0.0,0.0,56,78,3164.0485531098047,0.0,1210.6923857941633,3810.0,138.5589225396521,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,128494,1,1,3,0,1,,266.0,534.0,42,3.0,1.0,5.0,4.0,2.5,4,4,1389.31226297401,710.0,31303.98340439586,1,7,2,3,150.0,3,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,1,0.12170975018677593,12521.593361758345,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +28473,2,62.0,0.0,8,112,260.0,,,77,11,0.0,0.0,,524.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128495,2,1,0,0,2,,590.0,,42,1.0,7.0,3.0,2.0,1.5,2,2,138.5306329090352,260.0,5603.91811414392,5,1,0,1,62.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09350600585641294,3735.94540942928,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28474,2,31.0,0.0,2,111,1200.0,0.0,0.0,0,65,0.0,0.0,2046.2406520464733,1230.0,41.567676761895626,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,128496,2,1,1,0,1,,480.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2598.28740427628,1200.0,17685.85223728713,0,1,1,2,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06954711503281633,17685.85223728713,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +28475,2,83.0,0.0,2,111,432.0,,,0,78,0.0,0.0,,600.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,2,128497,2,1,0,0,2,,114.0,,11,0.0,7.0,6.0,1.0,1.0,1,1,94.9455381875873,432.0,26184.12802081708,0,5,0,1,116.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022914645067538014,26184.12802081708,7,4,7,7_1,7_2,7_0_1 +28476,2,53.0,0.0,1,112,1000.0,0.0,0.0,68,65,0.0,933.6507302922079,1705.2005433720612,1837.0,182.89777775234077,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,128498,2,1,4,0,1,,270.0,405.0,43,2.0,3.0,5.0,2.0,1.5,2,2,594.867277791202,1000.0,30054.41883543732,1,1,2,3,74.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06112245956438139,20036.27922362488,5,3,5,5_1,5_0,5_1_0 +28477,2,45.0,0.0,2,111,600.0,300.0,0.0,0,55,0.0,0.0,1023.1203260232367,900.0,0.0,569.5512143819367,30,2,2,2,1,2,1,2,2,3,45.0,2,,2,128499,1,3,0,0,2,,0.0,430.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1272.41474229518,600.0,22974.244160759015,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03917430291514174,22974.244160759015,6,3,6,6_0,6_4,6_0_1 +28478,2,58.0,0.0,6,111,580.0,0.0,0.0,54,21,1054.6828510366015,0.0,989.0163151557955,2192.0,0.0,0.0,50,2,2,2,2,2,2,2,1,0,,1,,4,128500,1,1,2,0,2,,130.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1461.26532423874,580.0,49687.50469172108,1,1,0,1,110.0,9,7,9,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.04411571910483222,33125.00312781405,8,4,8,8_1,8_3,8_0_0 +28479,2,45.0,0.0,2,111,450.0,1200.0,0.0,52,47,0.0,0.0,767.3402445174275,1750.0,138.5589225396521,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,128501,2,1,1,0,1,,350.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,378.966929005503,450.0,54397.48374581263,1,1,1,2,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03217060568789104,36264.989163875085,9,5,9,9_1,9_3,9_0_1 +28480,2,64.0,0.0,2,111,1080.0,,,78,75,0.0,198.6490915515336,,1349.0,164.885117822186,,41,0,0,0,0,0,0,0,0,0,,1,,2,128502,2,1,0,0,2,,500.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,97.01920730652368,1080.0,75262.14928438861,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01792401642560876,37631.074642194304,9,5,9,9_1,9_2,9_0_1 +28481,1,79.0,178.0,2,112,480.0,120.0,0.0,0,78,0.0,0.0,818.4962608185893,600.0,0.0,227.8204857527747,71,2,1,2,2,1,2,2,2,0,,2,,2,128503,2,2,0,1,1,744.0,0.0,164.0,11,0.0,1.0,3.0,1.0,1.0,1,1,861.889270364735,480.0,5173.8559951950665,0,5,2,3,52.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.11596766523019135,5173.8559951950665,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +28482,1,44.0,270.0,7,111,1020.0,540.0,0.0,85,52,0.0,0.0,1739.3045542395023,1690.0,180.1265993015477,1025.192185887486,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,128504,1,1,2,0,1,,220.0,690.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1247.02462838863,1020.0,26693.111699545185,6,1,2,3,83.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06331221399072763,11122.129874810495,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +28483,1,48.0,179.0,1,212,1138.0,0.0,0.0,12,12,0.0,0.0,1940.5182183574057,2794.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128505,2,2,3,0,2,,660.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,694.011832308437,1138.0,11294.927456672538,1,1,1,2,120.0,2,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.24736767993577768,4033.9026630973353,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +28484,2,62.0,0.0,5,111,0.0,,,0,77,0.0,0.0,,380.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,3,128506,2,1,0,0,1,,0.0,550.0,11,0.0,2.0,2.0,1.0,1.0,1,1,173.64693615244644,0.0,22322.233753742406,0,5,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01702338592956861,22322.233753742406,6,3,6,6_1,6_2,6_0_0 +28486,2,61.0,0.0,9,111,1000.0,0.0,0.0,77,75,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128508,1,1,1,0,1,,240.0,520.0,41,0.0,4.0,3.0,2.0,1.5,2,2,301.695853519669,1000.0,36914.75753185911,5,5,2,3,47.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027089437039833044,24609.83835457274,7,4,7,7_1,7_2,7_0_0 +28487,2,66.0,0.0,6,120,360.0,0.0,0.0,0,75,0.0,993.245457757668,613.872195613942,1210.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,128509,2,2,2,0,1,,160.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,576.077939289763,360.0,29872.91796314431,0,5,1,2,86.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04050491490295111,29872.91796314431,8,4,8,8_1,8_1,8_0_0 +28488,2,76.0,0.0,2,221,561.0,1508.0,0.0,78,78,0.0,0.0,956.6175048317264,2069.0,0.0,2862.9441042932017,71,0,0,0,0,0,0,0,0,0,,1,,2,128510,2,2,1,0,1,,510.0,500.0,41,0.0,1.0,3.0,2.0,1.5,2,2,2441.89247675614,561.0,23536.093049260773,5,5,2,3,70.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08790753825070315,15690.728699507183,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +28489,1,32.0,200.0,7,111,800.0,,,56,62,0.0,0.0,,800.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,128511,2,2,0,0,2,,500.0,650.0,43,2.0,0.0,2.0,3.0,1.8,2,2,37.25604582640204,800.0,35675.4818652074,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0224243642460847,19819.712147337446,5,3,5,5_1,5_2,5_0_0 +28490,2,75.0,0.0,2,211,580.0,,,78,72,0.0,0.0,,920.0,471.10033663481715,,71,0,0,0,0,0,0,0,0,0,,1,,2,128512,2,1,0,0,2,,480.0,,41,0.0,6.0,4.0,2.0,1.5,2,2,118.13612714348994,580.0,36602.0,5,5,0,1,77.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025135238511556746,24401.333333333332,7,4,7,7_1,7_2,7_0_1 +28491,1,53.0,19.0,5,111,350.0,900.0,0.0,85,52,0.0,0.0,596.8201901802214,1250.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,8,,3,128513,1,3,0,0,1,,200.0,422.0,42,1.0,0.0,3.0,2.0,1.5,2,2,271.446375727887,350.0,12968.081353007761,6,4,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09639051190175332,8645.38756867184,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +28492,2,51.0,0.0,6,400,600.0,,,64,45,0.0,0.0,,621.0,29.09737373332694,,60,0,0,0,0,0,0,0,0,2,10.0,1,,4,128514,2,1,0,0,1,,600.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,100.89965015765284,600.0,75558.34112438127,4,1,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008218814637258027,37779.17056219064,9,5,9,9_1,9_0,9_0_0 +28493,1,60.0,40.0,2,111,530.0,134.0,0.0,0,56,0.0,0.0,903.7562879871924,664.0,0.0,254.39954242393173,70,2,2,2,2,1,2,2,2,3,30.0,2,,2,128515,1,3,0,1,2,552.0,0.0,322.0,12,1.0,3.0,4.0,1.0,1.0,1,1,338.702574835148,530.0,15874.800418937135,0,1,2,3,75.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.041827297507810605,15874.800418937135,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +28494,1,34.0,369.0,2,112,2300.0,0.0,0.0,65,53,0.0,0.0,3921.9612497557405,2408.0,149.64363634282427,0.0,43,2,2,2,2,1,2,2,2,2,35.0,1,,2,128516,1,3,2,0,1,,350.0,555.0,43,2.0,0.0,5.0,5.0,2.4,2,2,2165.31612187551,2300.0,35583.829729047764,1,1,2,3,110.0,8,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.06767118711885875,14826.59572043657,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +28495,2,83.0,0.0,2,111,80.0,0.0,0.0,72,72,0.0,397.2981831030672,136.4160434697649,450.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128517,2,1,3,0,2,,638.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1351.46915879374,80.0,35630.1986174403,5,5,0,1,79.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.012629735939213474,23753.4657449602,6,3,6,6_1,6_3,6_0_1 +28496,2,34.0,0.0,2,111,1000.0,0.0,0.0,43,37,0.0,0.0,1705.2005433720612,1302.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,2,,2,128518,2,2,0,1,1,,182.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,695.052806061872,1000.0,65181.86051533891,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01997488242443781,36212.144730743836,9,5,9,9_0,9_4,9_0_1 +28497,2,28.0,0.0,7,111,2000.0,0.0,0.0,52,34,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,5,128519,2,2,3,0,1,,190.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1579.12395734939,2000.0,52731.72655908994,1,1,1,2,103.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037927830748322774,35154.48437272663,9,5,9,9_1,9_3,9_0_0 +28498,2,78.0,0.0,6,111,700.0,,,74,74,0.0,0.0,,792.0,127.47420873647992,,10,0,0,0,0,0,0,0,0,0,,1,,4,128520,1,1,0,0,2,,1000.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,94.62473121824033,700.0,110619.87113075404,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007159653974500173,73746.58075383602,10,5,10,10_1,10_3,10_0_0 +28499,1,60.0,128.0,1,111,500.0,0.0,0.0,63,67,0.0,927.0290939071567,852.6002716860306,1386.0,257.7195959237529,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,128521,1,2,0,0,2,,0.0,111.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2297.71433407616,500.0,7232.063991640554,4,4,2,3,51.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.19164653432298978,4821.375994427036,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +28500,2,28.0,0.0,7,112,700.0,0.0,0.0,53,46,843.7462808292812,529.7309108040896,1193.6403803604428,1945.0,62.351515142843446,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,128522,2,1,2,0,2,,500.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1158.74035701336,700.0,63814.17734867628,1,1,1,2,110.0,4,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030479120484036854,42542.78489911752,9,5,9,9_1,9_0,9_0_0 +28501,2,24.0,0.0,8,112,1200.0,0.0,0.0,52,54,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,128523,2,1,1,0,1,,200.0,540.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1284.81792371551,1200.0,32362.0,4,1,2,3,80.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03708052654347692,17978.888888888887,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +28502,0,48.0,0.0,1,211,0.0,0.0,0.0,56,22,0.0,595.9472746546007,0.0,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128524,2,1,3,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,575.236871971014,0.0,152054.25241245137,1,1,5,0,53.0,1,3,9,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0029594700106075466,101369.50160830091,10,5,10,10_1,10_1,10_1_0 +28503,2,75.0,0.0,2,111,0.0,0.0,570.0,77,72,0.0,0.0,359.28142553640396,570.0,0.0,682.1373241118681,50,2,1,2,2,1,2,2,2,0,,2,,2,128525,1,2,0,1,1,588.0,0.0,386.0,41,1.0,3.0,5.0,3.0,2.0,3,3,1917.343825566,0.0,27907.051829446988,5,5,2,3,94.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.02042494504555823,13953.525914723494,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +28504,2,46.0,0.0,5,111,720.0,,,56,63,0.0,0.0,,972.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,128526,1,3,0,0,2,,800.0,,43,4.0,0.0,4.0,9.0,4.3999999999999995,6,4,86.02275479394197,720.0,24287.741737413042,4,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04002018839416112,5519.94130395751,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +28505,2,40.0,0.0,9,111,350.0,,,0,43,0.0,0.0,,350.0,0.0,,33,0,0,0,0,0,0,0,0,1,15.0,2,2006.0,6,128527,2,1,0,0,1,,160.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,193.9635518100829,350.0,33991.43686757942,0,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010296710944097376,33991.43686757942,9,5,9,9_0,9_2,9_0_0 +28506,1,48.0,357.0,7,111,1200.0,,,68,56,0.0,0.0,,1470.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,5,128528,2,2,0,0,2,,400.0,430.0,43,2.0,1.0,3.0,3.0,1.8,2,2,110.43433870271282,1200.0,9044.10083608275,4,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.16253688748529008,5024.5004644904175,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +28507,2,33.0,0.0,9,111,1020.0,0.0,0.0,54,46,0.0,397.2981831030672,1739.3045542395023,1320.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2008.0,6,128529,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1530.00601478952,1020.0,29205.81656529836,1,1,0,1,149.0,6,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045196476429575055,16225.453647387976,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28508,0,94.0,0.0,1,400,472.0,,,0,78,0.0,0.0,,564.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,1,128530,1,2,0,0,2,,708.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,110.27402420870726,472.0,10955.5,0,5,5,0,80.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051480991282917256,10955.5,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +28509,2,73.0,0.0,2,111,564.0,,,0,77,0.0,0.0,,726.0,224.4654545142364,,71,0,0,0,0,0,0,0,0,0,,1,,2,128531,2,2,0,0,2,,127.0,,11,0.0,9.0,4.0,1.0,1.0,1,1,73.04467586580644,564.0,15569.479518072289,0,5,0,1,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046629689782326685,15569.479518072289,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28510,1,40.0,522.0,9,111,343.0,,,85,64,0.0,0.0,,383.0,55.423569015860835,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,128532,1,3,0,0,2,,200.0,520.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,132.7751633586769,343.0,39776.93675941353,6,1,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.009628695198841825,14732.198799782791,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +28511,2,44.0,0.0,5,111,1000.0,1000.0,0.0,46,37,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,3,128533,2,2,2,0,1,,600.0,1137.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,528.341808223704,1000.0,65381.46015395022,1,1,2,3,133.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030589711445579638,22545.331087569044,6,3,6,6_1,6_2,6_0_0 +28512,2,46.0,0.0,8,111,650.0,,,85,62,0.0,0.0,,790.0,193.98249155551292,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,128534,2,1,0,0,2,,120.0,,42,1.0,0.0,4.0,7.0,3.1999999999999993,3,2,7.574688069164691,650.0,52802.536935675154,6,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01496140234629995,16500.79279239849,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28513,2,65.0,0.0,2,211,600.0,,,0,75,0.0,0.0,,600.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,128535,2,1,0,0,2,,400.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,96.0829349628072,600.0,40686.231883591565,0,5,0,1,67.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014747003401953653,40686.231883591565,9,5,9,9_1,9_2,9_0_1 +28514,1,38.0,243.0,1,112,504.0,1752.0,0.0,56,68,0.0,0.0,859.4210738595189,2256.0,0.0,3326.17909199051,43,2,2,2,2,2,1,2,2,2,10.0,1,,1,128536,2,2,3,0,1,,160.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,271.76397513019,504.0,36882.85735043754,1,1,1,2,96.0,9,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.06116662758974766,17563.265404970254,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +28515,2,38.0,0.0,2,111,708.0,,,0,52,0.0,132.4327277010224,,1060.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,128537,1,2,0,0,2,,450.0,,32,1.0,4.0,5.0,5.0,2.5999999999999996,3,3,123.93968804116739,708.0,30102.96582522076,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03521247727398058,11578.063778931062,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +28516,2,52.0,0.0,1,111,1200.0,1300.0,0.0,0,46,0.0,0.0,2046.2406520464733,2500.0,0.0,2468.055262321726,20,0,0,0,0,0,0,0,0,1,5.0,2,,1,128538,1,2,0,0,2,,0.0,,32,1.0,0.0,6.0,3.0,1.8,2,2,576.384000135332,1200.0,56056.138578331615,0,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04459814863106482,31142.29921018423,8,4,8,8_0,8_4,8_1_0 +28517,2,51.0,0.0,5,111,500.0,800.0,0.0,63,52,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,128539,2,1,1,0,1,,300.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,340.135060575582,500.0,56190.475072493355,1,1,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023135593680651805,37460.31671499557,9,5,9,9_1,9_3,9_0_0 +28518,1,23.0,331.0,2,111,210.0,500.0,0.0,0,81,0.0,0.0,358.0921141081328,710.0,0.0,949.2520239698945,71,2,2,2,2,2,2,1,2,0,,2,,2,128540,2,1,0,0,1,,192.0,308.0,32,1.0,0.0,3.0,2.0,1.3,1,1,143.304377731711,210.0,9494.05668688508,0,4,2,3,53.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07478362763314667,7303.120528373138,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28519,2,73.0,0.0,2,221,1200.0,0.0,0.0,72,72,3164.0485531098047,79.45963662061344,2046.2406520464733,4320.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128541,2,2,2,0,1,,800.0,,41,0.0,4.0,9.0,2.0,1.5,2,2,2640.12934240414,1200.0,33749.247880248244,5,5,0,1,145.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12800285254736835,22499.498586832164,6,3,6,6_1,6_1,6_0_1 +28520,2,61.0,0.0,1,112,400.0,0.0,0.0,78,78,0.0,754.8665478958276,682.0802173488245,1120.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128542,2,1,1,0,1,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,60.2938145707716,400.0,37663.25876505033,7,5,0,1,160.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029737203755701182,25108.839176700218,7,4,7,7_1,7_0,7_1_0 +28521,2,43.0,0.0,6,111,420.0,,,0,52,0.0,0.0,,549.0,178.7410100761512,,71,0,0,0,0,0,0,0,0,0,,1,,4,128543,2,2,0,0,2,,200.0,,32,1.0,1.0,2.0,2.0,1.5,2,1,128.67895172519403,420.0,24182.58946184412,0,4,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022702283428589216,16121.72630789608,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28522,2,79.0,0.0,1,112,476.0,0.0,0.0,71,71,2636.7071275915036,0.0,811.6754586451011,3096.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,128544,1,2,2,0,2,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,196.0245853872,476.0,31042.29949041777,5,5,0,1,130.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09973487952964576,20694.86632694518,5,3,5,5_1,5_0,5_1_0 +28523,2,92.0,0.0,1,111,613.0,583.0,0.0,74,74,0.0,0.0,1045.2879330870735,1196.0,0.0,1106.827859948897,10,0,0,0,0,0,0,0,0,0,,2,,1,128545,2,2,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,691.615717936106,613.0,26952.520927431553,5,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04437432784933833,17968.34728495437,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +28524,0,44.0,0.0,2,111,870.0,,,21,46,0.0,0.0,,945.0,103.91919190473907,,20,0,0,0,0,0,0,0,0,1,5.0,1,,2,128546,2,2,0,0,2,,1400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,125.43013794717785,870.0,37886.664205967194,1,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02494281351513553,18041.268669508187,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +28525,2,32.0,0.0,9,111,400.0,0.0,0.0,55,38,0.0,0.0,682.0802173488245,400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,20.0,2,2005.0,6,128547,1,1,0,0,1,,0.0,850.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1377.13693920556,400.0,38982.11715807604,1,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010261115330857057,21656.73175448669,6,3,6,6_0,6_4,6_0_0 +28526,2,42.0,0.0,2,211,480.0,,,34,38,0.0,0.0,,555.0,103.91919190473907,,20,0,0,0,0,0,0,0,0,2,5.0,2,,2,128548,2,1,0,0,2,,230.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,42.71549644761216,480.0,92950.65956376445,1,1,1,2,38.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005970909755828771,51639.25531320247,10,5,10,10_0,10_2,10_0_1 +28527,2,37.0,0.0,6,112,523.0,994.0,0.0,0,37,0.0,0.0,891.819884183588,1517.0,0.0,1887.1130236521503,12,2,2,1,2,1,2,2,1,2,40.0,1,,4,128549,2,1,3,0,1,,306.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,542.798897457871,523.0,44133.700003287595,0,1,1,2,100.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.034372826205076756,44133.700003287595,10,5,10,10_1,10_1,10_0_0 +28528,1,21.0,353.0,9,111,0.0,,,0,56,0.0,0.0,,994.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2004.0,6,128550,2,1,0,0,2,,205.0,404.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.90520981931692,0.0,9447.12,0,4,2,3,69.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10521725139513417,7267.015384615385,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +28529,1,56.0,255.0,2,111,234.0,242.0,0.0,0,62,0.0,0.0,399.0169271490623,476.0,0.0,459.43797960142894,71,0,0,0,0,0,0,0,0,0,,2,,2,128551,2,2,0,0,1,,105.0,310.0,12,1.0,3.0,5.0,1.0,1.0,1,1,1249.35741083629,234.0,7207.957108974831,0,4,2,3,76.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06603812880730367,7207.957108974831,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +28530,2,36.0,0.0,2,111,0.0,0.0,540.0,63,64,0.0,0.0,340.37187682396166,540.0,0.0,646.2353596849276,43,0,0,0,0,0,0,0,0,2,45.0,2,,2,128552,2,1,0,1,1,528.0,0.0,414.0,43,2.0,1.0,4.0,3.0,1.8,2,2,645.143549208715,0.0,42467.53005374206,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012715597053010562,23593.072252078924,6,3,6,6_0,6_4,6_0_1 +28531,2,44.0,0.0,9,211,0.0,,,33,53,0.0,0.0,,326.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,128553,2,2,0,0,2,,250.0,612.0,43,2.0,1.0,5.0,6.0,3.0999999999999996,4,3,311.9603870524971,0.0,41994.1117245098,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0077629931105253165,13546.48765306768,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +28532,2,57.0,0.0,2,111,500.0,0.0,0.0,0,47,0.0,0.0,852.6002716860306,500.0,0.0,0.0,10,2,2,2,1,2,2,2,2,3,45.0,2,,2,128554,1,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1147.60451091333,500.0,53515.09943018171,0,1,0,1,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009343157451334334,53515.09943018171,10,5,10,10_0,10_4,10_0_1 +28533,2,82.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2169.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128555,2,2,5,0,1,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1165.99575065882,0.0,10302.244235175316,0,5,0,1,90.0,3,4,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.21053665109144926,10302.244235175316,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +28534,1,49.0,278.0,8,112,200.0,,,0,52,0.0,0.0,,284.0,116.38949493330776,,71,2,2,2,2,1,2,2,2,0,,1,1999.0,6,128556,2,3,0,0,2,,140.0,,32,2.0,0.0,3.0,2.0,1.5,2,2,96.46667411201828,200.0,10289.555449698728,0,4,1,2,50.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.02760080368761853,6859.703633132485,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +28535,2,73.0,0.0,2,111,372.0,,,0,78,0.0,0.0,,522.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,128557,2,1,0,0,2,,250.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,98.04775839005185,372.0,19373.266774542797,0,5,0,1,86.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026944345838768282,19373.266774542797,5,3,5,5_1,5_2,5_0_1 +28536,2,65.0,0.0,2,111,160.0,0.0,0.0,0,75,0.0,0.0,272.8320869395298,160.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,128558,2,2,0,1,1,720.0,0.0,258.0,11,0.0,0.0,2.0,1.0,1.0,1,1,326.238951844348,160.0,36788.68254967112,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0043491636261769415,36788.68254967112,9,5,9,9_0,9_4,9_0_1 +28537,2,59.0,0.0,7,112,650.0,0.0,0.0,74,46,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,2,,5,128559,2,2,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,1726.73823927906,650.0,63935.0,5,1,0,1,40.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.010166575428169235,42623.333333333336,9,5,9,9_0,9_1,9_0_0 +28538,1,49.0,153.0,2,111,445.0,200.0,0.0,56,54,0.0,0.0,758.8142418005672,645.0,0.0,379.7008095879578,44,2,1,2,2,1,2,1,2,2,35.0,2,,2,128560,2,2,0,1,1,,300.0,370.0,43,3.0,0.0,5.0,5.0,2.8,4,3,386.984156519967,445.0,33293.05891335449,1,1,2,3,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01937340758260209,11890.37818334089,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28539,1,51.0,300.0,8,111,360.0,400.0,0.0,56,21,0.0,0.0,613.872195613942,760.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,128561,2,1,2,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,1421.86641272829,360.0,19155.01082966209,1,1,1,2,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03967630228760393,6841.075296307889,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +28540,2,26.0,0.0,9,221,0.0,0.0,0.0,84,62,0.0,0.0,0.0,487.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,2004.0,6,128562,2,1,0,1,1,,295.0,560.0,42,1.0,0.0,3.0,2.0,1.5,2,2,696.118902856748,0.0,22005.241552029427,3,4,2,3,69.0,1,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022131090851628784,14670.161034686285,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +28541,2,37.0,0.0,8,120,2100.0,0.0,0.0,33,62,0.0,0.0,3580.9211410813286,2250.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,128563,2,1,1,0,1,,250.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,558.811739398172,2100.0,54564.216665513646,1,1,1,2,108.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0412358160255982,22735.090277297353,6,3,6,6_1,6_0,6_0_0 +28542,2,49.0,0.0,7,111,0.0,,,0,90,0.0,0.0,,472.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,128564,2,1,0,0,2,,0.0,600.0,12,1.0,7.0,3.0,1.0,1.0,1,1,93.62588024537467,0.0,2557.353789972104,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1845657811800645,2557.353789972104,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28543,2,67.0,0.0,1,112,309.0,1291.0,0.0,78,78,0.0,0.0,526.9069679019669,1600.0,0.0,2450.9687258902677,71,0,0,0,0,0,0,0,0,0,,1,,1,128565,2,1,4,0,1,,110.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,2059.71748201027,309.0,29126.95254866955,5,5,0,1,107.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05493193966401007,19417.9683657797,5,3,5,5_1,5_1,5_1_0 +28544,2,71.0,0.0,1,112,400.0,0.0,0.0,0,78,0.0,0.0,682.0802173488245,1496.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128566,1,1,4,0,2,,150.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,603.274479687875,400.0,12552.700686131437,0,5,0,1,80.0,8,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11917754094565652,12552.700686131437,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +28545,2,30.0,0.0,1,111,276.0,0.0,0.0,0,37,0.0,0.0,470.6353499706889,276.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,128567,2,1,0,0,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.7609340468,276.0,34873.705494287395,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007914272260090375,34873.705494287395,9,5,9,9_0,9_4,9_1_0 +28546,1,29.0,200.0,8,112,458.0,0.0,0.0,54,65,1582.0242765549024,0.0,780.981848864404,2058.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,128568,2,1,0,0,1,,0.0,500.0,43,2.0,0.0,4.0,3.0,1.8,2,2,2564.26329330178,458.0,33331.909721248696,1,1,2,3,90.0,8,0,4,1,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.061742636926921994,18517.727622915943,4,2,4_1,4_0_1,4_0_1,4_0_0_1 +28547,2,33.0,0.0,1,111,286.0,1250.0,0.0,52,63,0.0,0.0,487.6873554044095,1536.0,0.0,2373.130059924736,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,128569,2,1,1,0,2,,318.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,285.113583950833,286.0,43716.6831163217,1,1,1,2,56.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035135327991673085,20817.46815062938,5,3,5,5_1,5_2,5_1_0 +28548,2,69.0,0.0,5,112,550.0,150.0,0.0,74,74,0.0,264.8654554020448,937.8602988546337,900.0,0.0,284.77560719096834,60,0,0,0,0,0,0,0,0,0,,1,,3,128570,2,1,1,0,1,,440.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,820.624987566784,550.0,58250.39952902657,5,5,0,1,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015450537803633844,38833.59968601771,9,5,9,9_1,9_1,9_0_0 +28549,2,77.0,0.0,1,300,420.0,0.0,0.0,71,71,2109.365702073203,0.0,716.1842282162656,2520.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128571,2,1,2,0,2,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1363.70039251888,420.0,20242.947252164337,5,5,0,1,150.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12448780153446116,13495.298168109557,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +28550,2,61.0,0.0,2,111,266.9,599.76,0.0,74,43,0.0,172.1625460113291,455.11802502600307,997.0,0.0,1138.6467877923678,33,0,0,0,0,0,0,0,0,0,,1,,2,128572,2,2,2,0,1,,332.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,228.401762640255,266.9,94970.82091136655,6,1,0,1,140.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010497961273078503,63313.8806075777,10,5,10,10_1,10_2,10_0_1 +28551,1,72.0,160.0,9,112,612.0,0.0,0.0,0,77,0.0,0.0,1043.5827325437015,612.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,2006.0,6,128573,2,1,0,0,1,,0.0,500.0,11,0.0,2.0,2.0,1.0,1.0,1,1,785.325037652899,612.0,12096.52835861576,0,5,2,3,35.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.050593028169450174,12096.52835861576,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +28552,2,48.0,0.0,7,211,900.0,,,22,43,0.0,0.0,,900.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,5,128574,1,1,0,0,2,,400.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,65.04077345441931,900.0,114502.8344984618,1,1,1,2,140.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007860067429266045,49783.84108628774,10,5,10,10_1,10_2,10_0_0 +28553,2,61.0,0.0,2,111,779.5,0.0,0.0,75,21,1318.3535637957518,0.0,1329.2038235585217,2030.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,128575,2,1,3,0,1,,350.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,360.757977481735,779.5,44804.73717043489,5,1,0,1,100.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045307709144191285,29869.824780289928,8,4,8,8_1,8_3,8_0_1 +28554,1,37.0,280.0,8,111,1200.0,0.0,0.0,22,23,0.0,993.245457757668,2046.2406520464733,1950.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,2002.0,6,128576,2,1,1,0,1,,400.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,469.81473518561,1200.0,27547.725378911062,4,1,1,2,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07078624362550118,15304.291877172811,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +28555,2,68.0,0.0,2,111,260.0,500.0,0.0,0,77,0.0,0.0,443.3521412767359,760.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,128577,2,1,0,0,1,,0.0,357.0,11,0.0,1.0,4.0,1.0,1.0,1,1,347.922505199521,260.0,20879.68871454819,0,5,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.036399010080569845,20879.68871454819,5,3,5,5_0,5_3,5_0_1 +28556,2,65.0,0.0,2,112,1005.84,0.0,0.0,22,22,4176.544090104942,0.0,1715.158914545354,5411.0,617.27999991415,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128578,1,3,4,0,2,,380.0,542.0,43,2.0,1.0,4.0,2.0,1.5,2,2,203.007972756313,1005.84,21115.606620656465,1,1,2,3,100.0,6,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2562559578424168,14077.071080437643,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +28557,1,64.0,274.0,2,111,364.0,0.0,0.0,85,67,0.0,0.0,620.6929977874303,544.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128579,2,1,0,1,1,693.0,0.0,415.0,42,1.0,4.0,4.0,3.0,2.0,3,3,403.466654558364,364.0,15456.65401963704,6,4,2,3,82.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03519519808807718,7728.32700981852,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +28558,2,23.0,0.0,2,111,160.0,,,0,85,0.0,0.0,,252.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,2,128580,2,2,0,0,2,,125.0,,21,0.0,4.0,4.0,2.0,1.5,2,2,82.41640104595002,160.0,21630.482804343428,0,7,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011650225391612529,14420.321869562285,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28559,2,68.0,0.0,2,111,583.0,2000.0,0.0,77,21,0.0,728.3800023556231,994.1319167859117,3133.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,2,128581,2,1,1,0,1,,495.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1804.65644367573,583.0,56033.83576980495,5,5,0,1,160.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055912645582051786,37355.8905132033,9,5,9,9_1,9_3,9_0_1 +28560,2,46.0,0.0,2,111,1500.0,0.0,0.0,0,62,0.0,0.0,2557.8008150580918,1540.0,55.423569015860835,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,2,128582,1,2,5,0,1,,500.0,613.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1141.07091657303,1500.0,35043.58460617598,0,1,2,3,90.0,6,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04394527606997701,26956.60354321229,7,4,7,7_1,7_2,7_0_1 +28561,1,39.0,468.0,2,111,480.0,540.0,0.0,0,52,0.0,0.0,818.4962608185893,1020.0,0.0,1025.192185887486,60,0,0,0,0,0,0,0,0,0,,2,,2,128583,1,1,0,1,1,,0.0,560.0,32,1.0,0.0,5.0,4.0,2.1,2,1,246.478430129935,480.0,13068.88048301378,0,4,2,3,105.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07804800122900661,6223.276420482752,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28562,2,79.0,0.0,5,111,0.0,0.0,0.0,0,74,0.0,0.0,0.0,315.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,128584,2,1,0,1,2,,0.0,430.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2775.42836532386,0.0,17446.607196562552,0,5,3,4,27.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01805508638161255,17446.607196562552,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +28563,1,43.0,24.0,2,111,610.0,0.0,0.0,0,55,0.0,0.0,1040.1723314569574,981.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,2.0,2,,2,128585,1,3,0,1,2,,0.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,663.958037206861,610.0,24251.547916718595,0,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04045102619300089,15157.21744794912,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +28564,2,60.0,0.0,1,400,0.0,0.0,0.0,13,48,2636.7071275915036,132.4327277010224,0.0,3419.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128586,2,1,2,0,1,,1339.0,,43,2.0,3.0,7.0,3.0,2.0,3,3,1822.16292936428,0.0,60858.208460476555,1,1,0,1,110.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05617976747081568,30429.104230238278,8,4,8,8_1,8_0,8_1_0 +28565,2,49.0,0.0,7,111,650.0,112.0,0.0,46,48,0.0,0.0,1108.3803531918397,762.0,0.0,212.63245336925638,50,0,0,0,0,0,0,0,0,2,60.0,1,,5,128587,2,1,1,0,1,,800.0,,43,3.0,0.0,4.0,4.0,2.5,4,3,662.667090037171,650.0,73045.00400406323,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010431924953520608,29218.001601625292,8,4,8,8_1,8_4,8_0_0 +28566,2,33.0,0.0,7,112,0.0,0.0,0.0,55,64,0.0,0.0,0.0,1471.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,25.0,1,,5,128588,2,1,1,0,1,,167.0,890.0,43,2.0,0.0,4.0,2.0,1.5,2,2,758.387464950474,0.0,39703.22571436808,1,1,2,3,70.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037049886338773326,26468.817142912056,7,4,7,7_1,7_1,7_0_0 +28567,1,63.0,400.0,1,111,720.0,588.0,0.0,85,75,0.0,0.0,1227.744391227884,1308.0,0.0,1116.320380188596,60,0,0,0,0,0,0,0,0,0,,2,,1,128589,2,2,0,1,1,770.0,0.0,650.0,41,0.0,4.0,4.0,4.0,2.1,2,2,816.963436796419,720.0,14774.277740240716,6,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08853224658403429,7035.370352495578,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +28568,2,39.0,0.0,2,111,1000.0,0.0,0.0,38,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,8,,2,128590,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,454.874902876328,1000.0,80263.75882680473,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012458923113205135,33443.232844501974,8,4,8,8_0,8_4,8_0_1 +28569,2,46.0,0.0,2,111,550.0,420.0,0.0,0,21,0.0,0.0,937.8602988546337,970.0,0.0,797.3717001347114,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,128591,2,2,0,1,1,1340.0,0.0,485.0,32,1.0,0.0,4.0,5.0,2.8,4,3,211.448766784377,550.0,27557.497420177882,0,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035199132388914096,9841.963364349243,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +28570,2,32.0,0.0,9,300,1812.0,0.0,0.0,21,43,0.0,0.0,3089.823384590175,1812.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,128592,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,696.515618794326,1812.0,22150.565355222854,1,1,1,2,130.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08180378111986883,10547.888264391835,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +28571,2,60.0,0.0,6,112,1100.0,0.0,0.0,52,48,1582.0242765549024,0.0,1875.7205977092674,2650.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,128593,2,1,2,0,1,,360.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,257.421679581445,1100.0,56016.31921981533,1,1,0,1,180.0,8,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047307642431860884,37344.212813210215,9,5,9,9_1,9_0,9_0_0 +28572,2,30.0,0.0,2,111,0.0,0.0,0.0,56,68,0.0,0.0,0.0,417.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,180.0,2,,2,128594,2,2,0,1,1,612.0,0.0,358.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1631.25013403383,0.0,24954.707222039728,4,1,2,3,56.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016710274189540887,13863.726234466514,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +28573,2,67.0,0.0,2,111,400.0,1600.0,0.0,77,77,0.0,0.0,682.0802173488245,2000.0,0.0,3037.6064767036623,60,0,0,0,0,0,0,0,0,0,,1,,2,128595,2,1,1,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,594.168793303045,400.0,76983.69111389363,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025979528534700907,51322.46074259575,10,5,10,10_1,10_4,10_0_1 +28574,1,39.0,500.0,2,400,840.0,,,0,85,0.0,0.0,,1140.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,128596,2,3,0,0,2,,800.0,500.0,31,0.0,0.0,5.0,11.0,4.799999999999999,5,3,5.445516010697485,840.0,40041.780749299236,0,6,2,3,70.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.028470262277732264,8342.03765610401,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +28575,2,37.0,0.0,1,400,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1192.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,128597,2,1,2,0,1,,294.0,400.0,12,1.0,0.0,4.0,1.0,1.0,1,1,989.003945050717,0.0,18096.01711556013,0,1,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06587084839652593,18096.01711556013,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +28576,2,74.0,0.0,2,111,528.0,1900.0,0.0,74,74,0.0,158.91927324122688,900.3458869004482,2548.0,0.0,3607.1576910855993,50,0,0,0,0,0,0,0,0,0,,1,,2,128598,2,1,1,0,2,,450.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,562.580505659578,528.0,62781.912248682645,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04058493774301156,41854.60816578843,9,5,9,9_1,9_4,9_0_1 +28577,1,40.0,319.0,2,111,276.0,237.0,0.0,55,68,0.0,0.0,470.6353499706889,513.0,0.0,449.94545936173,71,0,0,0,0,0,0,0,0,3,20.0,2,,2,128599,2,1,0,1,2,776.0,0.0,296.0,43,2.0,1.0,3.0,3.0,1.8,2,2,279.677242610819,276.0,14579.911585854601,4,1,2,3,55.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03518539855191656,8099.950881030334,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28578,2,76.0,0.0,5,112,370.0,0.0,0.0,0,71,3164.0485531098047,0.0,630.9242010476627,3490.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,128600,2,2,4,0,2,,400.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,845.453824723124,370.0,15325.888974116151,0,5,0,1,100.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.22771925373426957,15325.888974116151,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +28579,2,39.0,0.0,9,300,750.0,0.0,0.0,62,52,0.0,397.2981831030672,1278.9004075290459,1085.0,48.49562288887823,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,128601,2,1,1,0,1,,303.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1004.60235631176,750.0,49668.093851062105,1,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02184500986193571,20695.03910460921,5,3,5,5_1,5_0,5_0_0 +28580,2,75.0,0.0,1,221,300.0,0.0,0.0,0,78,0.0,0.0,511.56016301161833,2800.0,3463.9730634913026,0.0,70,1,2,2,2,1,2,2,2,0,,1,,1,128602,2,1,1,0,1,,146.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,2199.51064884656,300.0,12236.471318711145,0,5,0,1,60.0,1,3,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.2288241378638659,12236.471318711145,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +28581,2,57.0,0.0,9,111,236.0,,,0,37,0.0,0.0,,280.0,60.965925917446924,,31,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,128603,2,2,0,0,2,,155.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,174.37831727885055,236.0,44135.44873883414,0,1,1,2,94.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006344106789462233,44135.44873883414,10,5,10,10_1,10_3,10_0_0 +28582,2,58.0,0.0,7,300,360.0,,,0,52,0.0,0.0,,406.0,63.73710436823996,,70,0,0,0,0,0,0,0,0,0,,1,,5,128604,2,2,0,0,2,,260.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,97.3213174568268,360.0,7872.607817054656,0,4,0,1,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05157122130743901,7872.607817054656,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +28583,2,44.0,0.0,1,111,280.0,1022.0,0.0,0,52,0.0,0.0,477.4561521441771,1302.0,0.0,1940.2711369944643,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,128605,1,1,2,0,1,,100.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,822.873910680938,280.0,23778.36969994912,0,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05475564626294737,23778.36969994912,6,3,6,6_1,6_3,6_1_0 +28584,2,64.0,0.0,8,111,600.0,,,0,75,0.0,0.0,,600.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,2003.0,6,128606,2,1,0,0,1,,480.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,169.88266732026634,600.0,43237.10964781397,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013876968300778529,43237.10964781397,9,5,9,9_0,9_2,9_0_0 +28585,0,50.0,0.0,1,400,110.0,0.0,0.0,0,11,0.0,264.8654554020448,187.57205977092673,1222.0,1263.657373561627,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,128607,1,1,1,0,2,,91.0,,22,2.0,2.0,5.0,3.0,2.0,3,3,1474.8086604122,110.0,37758.88969178828,0,1,0,1,124.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.032363239755584174,18879.44484589414,5,3,5,5_1,5_0,5_1_0 +28587,1,58.0,243.0,5,111,670.0,1250.0,0.0,52,63,0.0,0.0,1142.484364059281,1920.0,0.0,2373.130059924736,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,128609,2,2,3,0,1,,680.0,602.0,43,2.0,6.0,5.0,5.0,2.4,2,2,270.836905647334,670.0,32875.9747286483,1,1,2,3,140.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0584013102530737,13698.32280360346,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +28588,2,51.0,0.0,7,111,410.0,0.0,0.0,56,62,0.0,0.0,699.1322227825451,3110.0,3741.0909085706066,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,128610,2,1,2,0,1,,222.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,998.593479721934,410.0,46510.33264177836,1,1,1,2,89.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06686686212186778,31006.888427852242,8,4,8,8_1,8_2,8_0_0 +28589,2,73.0,0.0,1,120,250.0,0.0,0.0,0,78,1371.087706347582,0.0,426.3001358430153,1676.0,174.58424239996165,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128611,2,1,1,0,1,,150.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1465.57792086793,250.0,13841.397408677545,0,5,0,1,90.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.12108603997955224,13841.397408677545,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +28590,1,69.0,41.0,2,111,200.0,0.0,0.0,0,77,0.0,0.0,341.04010867441224,300.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128612,2,1,0,1,1,610.0,0.0,450.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1764.79637858051,200.0,13674.895871323184,0,5,2,3,64.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0219380098263938,13674.895871323184,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +28591,2,60.0,0.0,2,111,150.0,70.0,0.0,0,47,0.0,0.0,255.78008150580916,220.0,0.0,132.89528335578524,70,0,0,0,0,0,0,0,0,2,25.0,2,,2,128613,2,1,0,1,1,310.0,0.0,165.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1201.55333193298,150.0,35934.05594934567,0,1,2,3,29.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006122325860184621,35934.05594934567,9,5,9,9_0,9_4,9_0_1 +28592,1,63.0,350.0,7,111,200.0,,,0,86,0.0,0.0,,375.0,242.47811444439117,,71,0,0,0,0,0,0,0,0,0,,1,,5,128614,2,2,0,0,2,,175.0,500.0,11,0.0,0.0,3.0,1.0,1.0,1,1,51.37533390178064,200.0,14546.911971698451,0,6,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.025778667027722187,14546.911971698451,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +28593,2,84.0,0.0,2,211,626.0,0.0,0.0,86,78,2109.365702073203,0.0,1067.4555401509103,2776.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128615,2,1,1,0,1,,288.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,1737.9666527433,626.0,28934.182998820834,6,5,0,1,100.0,2,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09594188300091734,14467.091499410417,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +28594,2,84.0,0.0,2,111,450.0,60.0,0.0,0,74,0.0,0.0,767.3402445174275,611.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,0,,2,,2,128616,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1857.27634028185,450.0,25778.413700638954,0,5,0,1,62.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02370200149223517,25778.413700638954,7,4,7,7_0,7_3,7_0_1 +28595,1,56.0,96.0,2,111,489.0,0.0,0.0,0,54,0.0,0.0,833.843065708938,489.0,0.0,0.0,60,2,1,2,2,1,2,2,2,0,,2,,2,128617,1,2,0,1,1,750.0,0.0,323.0,22,1.0,0.0,4.0,2.0,1.5,2,2,247.398630767306,489.0,58044.40273848518,0,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.008424584919981928,38696.268492323456,9,5,9,9_0,9_4,9_0_1 +28596,2,51.0,0.0,2,111,459.0,1750.0,0.0,0,52,0.0,0.0,782.687049407776,2209.0,0.0,3322.382083894631,71,0,0,0,0,0,0,0,0,3,60.0,1,,2,128618,2,1,1,0,1,,1400.0,,32,1.0,0.0,6.0,5.0,2.2,1,1,458.84129463935,459.0,26438.09704436026,0,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.083553668643153,12017.316838345572,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +28597,2,77.0,0.0,1,120,500.0,0.0,0.0,77,78,0.0,0.0,852.6002716860306,2036.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128619,2,1,2,0,1,,150.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,245.73432253998,500.0,34451.60374308163,5,5,0,1,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.059097393990224845,22967.735828721085,6,3,6,6_1,6_0,6_1_0 +28598,0,84.0,0.0,2,111,460.0,0.0,0.0,0,77,3923.4202058561577,0.0,784.3922499511482,4180.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128620,2,1,2,0,1,,170.0,,11,0.0,7.0,8.0,1.0,1.0,1,1,1034.30943395531,460.0,27758.926627507164,0,5,0,1,160.0,7,5,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15058219131059308,27758.926627507164,7,4,7,7_1,7_2,7_0_1 +28600,2,32.0,0.0,1,111,917.0,0.0,0.0,22,63,1550.3837910238042,0.0,1563.66889827218,2429.0,58.19474746665388,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,128622,1,1,1,0,2,,384.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,401.892194022988,917.0,42648.02914053073,1,1,1,2,130.0,6,4,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05695456622382557,20308.585305014632,5,3,5,5_1,5_2,5_1_0 +28601,1,51.0,422.0,2,111,650.0,70.0,0.0,0,85,0.0,0.0,1108.3803531918397,720.0,0.0,132.89528335578524,71,1,2,2,2,1,2,2,2,0,,2,,2,128623,2,1,0,1,1,302.0,0.0,389.0,31,0.0,1.0,4.0,3.0,1.8,2,1,390.636480522375,650.0,8125.2114509004205,0,6,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.08861307848427882,4514.006361611345,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28602,2,59.0,0.0,1,112,2000.0,0.0,0.0,75,75,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,128624,2,1,2,0,1,,219.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,409.284352649482,2000.0,39618.35355217921,5,5,0,1,210.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05048165359436018,26412.235701452806,7,4,7,7_1,7_1,7_1_0 +28603,2,27.0,0.0,9,211,0.0,,,81,81,0.0,0.0,,150.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,7,2011.0,6,128625,1,3,0,0,1,,0.0,,43,2.0,0.0,2.0,4.0,2.1,2,2,209.59936788769684,0.0,17771.704128444097,4,4,0,1,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008440383596073993,8462.716251640046,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28604,2,63.0,0.0,1,400,1900.0,0.0,0.0,77,56,1582.0242765549024,0.0,3239.8810324069163,3460.0,83.13535352379125,0.0,70,2,2,2,2,2,2,2,1,2,45.0,1,,1,128626,2,2,3,0,2,,300.0,,41,1.0,2.0,8.0,3.0,2.0,3,3,2175.73907110563,1900.0,45860.146267179174,5,5,1,2,227.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07544677201512166,22930.073133589587,6,3,6,6_1,6_0,6_1_0 +28605,1,56.0,180.0,2,111,430.0,0.0,0.0,0,67,0.0,0.0,733.2362336499863,430.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,128627,2,1,0,0,1,,0.0,315.0,12,1.0,0.0,2.0,1.0,1.0,1,1,408.920694925379,430.0,9025.924364066592,0,4,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.047640549893359106,9025.924364066592,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +28606,1,36.0,305.0,2,111,642.0,1046.0,0.0,85,62,0.0,0.0,1094.7387488448633,1779.0,126.08861951108341,1985.8352341450193,60,0,0,0,0,0,0,0,0,0,,1,,2,128628,1,3,3,0,1,,418.0,530.0,42,1.0,0.0,4.0,5.0,2.4,2,2,195.948870240847,642.0,26689.000656033455,6,1,2,3,105.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0666566733961929,11120.41694001394,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +28607,2,67.0,0.0,2,111,369.0,280.0,0.0,0,78,0.0,0.0,629.2190005042905,649.0,0.0,531.581133423141,50,0,0,0,0,0,0,0,0,0,,2,,2,128629,2,2,0,1,1,,117.0,162.0,11,0.0,0.0,2.0,1.0,1.0,1,1,302.712629777738,369.0,11401.867182483746,0,5,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05692050166985228,11401.867182483746,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +28608,1,27.0,356.0,5,111,0.0,,,85,68,0.0,0.0,,1044.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,128630,1,2,0,0,2,,0.0,600.0,42,1.0,0.0,4.0,3.0,1.8,2,2,133.83096158893758,0.0,25049.23006069005,6,1,2,3,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04167792772354936,13916.238922605582,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +28609,2,90.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,929.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128631,2,1,2,0,1,,203.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,222.842847360468,0.0,19533.338885518133,0,5,0,1,100.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04755971344401102,19533.338885518133,5,3,5,5_1,5_3,5_0_1 +28610,1,54.0,306.0,8,112,980.0,0.0,0.0,68,64,0.0,900.5425483669522,1671.09653250462,1700.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,128632,2,1,2,0,1,,600.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,1668.51253461922,980.0,35991.37179048188,1,1,1,2,120.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0472335428028774,13842.835304031492,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +28611,2,61.0,0.0,5,111,305.0,70.0,0.0,0,75,0.0,0.0,520.0861657284787,375.0,0.0,132.89528335578524,60,0,0,0,0,0,0,0,0,0,,2,,3,128633,2,1,0,1,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,886.105362191525,305.0,25645.25429638236,0,5,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014622588478403165,25645.25429638236,7,4,7,7_0,7_4,7_0_0 +28612,2,54.0,0.0,6,111,850.0,,,62,56,0.0,0.0,,1100.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,4,128634,1,2,0,0,2,,900.0,,43,2.0,2.0,8.0,5.0,2.5999999999999996,3,2,129.87276681473463,850.0,17221.12844036697,1,1,0,1,112.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0638750244392556,6623.510938602682,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28613,2,38.0,0.0,1,111,200.0,2000.0,0.0,46,37,0.0,0.0,341.04010867441224,2200.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,0,,1,,1,128635,2,1,1,0,1,,397.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,1700.91512229788,200.0,104575.56781473127,1,4,1,2,135.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021037418643497837,45467.63818031795,10,5,10,10_1,10_3,10_1_0 +28614,1,26.0,333.0,5,112,0.0,0.0,0.0,85,69,0.0,0.0,0.0,599.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,128636,2,2,2,0,1,,130.0,550.0,42,1.0,0.0,4.0,4.0,2.1,2,2,921.975786999961,0.0,13342.373944346595,6,1,2,3,90.0,6,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04489455943136769,6353.5114020698065,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +28615,2,43.0,0.0,1,111,600.0,180.0,0.0,54,33,0.0,0.0,1023.1203260232367,780.0,0.0,341.730728629162,31,2,1,2,2,1,2,2,2,3,30.0,2,,1,128637,2,2,0,1,1,990.0,0.0,398.0,43,2.0,0.0,4.0,5.0,2.8,4,2,659.037565435603,600.0,75003.41294892716,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.010399526759284053,26786.933196045415,7,4,7,7_0,7_4,7_1_0 +28616,2,52.0,0.0,6,211,1000.0,,,52,21,0.0,0.0,,1000.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,128638,2,2,0,0,2,,800.0,,43,2.0,2.0,4.0,4.0,2.3,3,2,113.04231331946309,1000.0,5429.670308430417,4,4,0,1,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.18417324500298715,2360.7262210567033,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28618,2,55.0,0.0,8,111,700.0,1200.0,0.0,56,37,0.0,0.0,1193.6403803604428,1900.0,0.0,2278.2048575277468,71,2,2,2,2,1,2,2,2,2,10.0,1,2001.0,6,128640,2,1,2,0,1,,400.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1239.920342554,700.0,69637.57782333838,1,1,1,2,110.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.02728411957147701,46425.05188222558,10,5,10,10_1,10_2,10_0_0 +28619,2,94.0,0.0,2,112,1769.0,0.0,0.0,0,74,0.0,0.0,3016.4997612251764,1769.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128641,2,1,2,0,2,,310.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,748.636350740996,1769.0,23133.16056785014,0,5,0,1,90.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07647031173330071,23133.16056785014,6,3,6,6_1,6_2,6_0_1 +28620,2,57.0,0.0,1,112,588.0,1476.0,0.0,56,65,0.0,0.0,1002.657919502772,2064.0,0.0,2802.1919747591287,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,128642,2,1,2,0,1,,110.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,260.48269588536,588.0,21888.27633003233,1,1,0,1,180.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09429705513942364,10944.138165016166,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +28621,1,53.0,253.0,9,211,220.0,,,0,56,0.0,0.0,,286.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,128643,2,1,0,0,1,,245.0,365.0,12,1.0,1.0,3.0,1.0,1.0,1,1,93.08325517428501,220.0,4945.899597954429,0,4,2,3,81.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05782567849098404,4945.899597954429,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28622,1,43.0,138.0,5,111,490.0,240.0,0.0,56,63,0.0,0.0,835.54826625231,730.0,0.0,455.6409715055494,50,2,1,2,2,1,2,2,2,0,,2,,3,128644,2,2,0,1,1,61.0,0.0,521.0,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,2,331.442024517571,490.0,41579.14777206439,1,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.017556877404073735,13412.62831356916,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +28623,2,44.0,0.0,2,111,0.0,0.0,240.0,0,63,0.0,0.0,151.2763896995385,240.0,0.0,287.2157154155234,71,0,0,0,0,0,0,0,0,1,20.0,2,,2,128645,2,3,0,1,1,600.0,0.0,236.0,12,1.0,1.0,3.0,1.0,1.0,1,1,808.305283225287,0.0,19656.41623314465,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0122097536577045,19656.41623314465,5,3,5,5_0,5_4,5_0_1 +28624,1,50.0,165.0,5,111,360.0,,,0,55,0.0,0.0,,400.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,128646,2,1,0,0,1,,160.0,615.0,22,1.0,0.0,4.0,2.0,1.5,2,2,144.64005537120565,360.0,32168.288037552524,0,1,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01243460639040067,21445.525358368348,6,3,6,6_0,6_2,6_0_0 +28625,2,64.0,0.0,8,112,1.0,60.0,0.0,0,78,0.0,524.4336016960486,1.7052005433720612,457.0,0.0,113.91024287638734,71,0,0,0,0,0,0,0,0,0,,7,2001.0,6,128647,1,2,0,0,1,,0.0,80.0,11,0.0,0.0,2.0,1.0,1.0,1,1,151.049176681938,1.0,12140.014097604366,0,5,2,3,20.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03764410785076284,12140.014097604366,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +28627,2,48.0,0.0,5,111,1200.0,2000.0,0.0,21,37,0.0,0.0,2046.2406520464733,3200.0,0.0,3797.008095879578,20,0,0,0,0,0,0,0,0,0,,1,,3,128649,1,1,1,0,2,,480.0,,43,2.0,1.0,8.0,5.0,3.0,5,4,527.690642473796,1200.0,155345.19247408962,1,1,0,1,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020599285687799673,51781.73082469654,10,5,10,10_1,10_4,10_0_0 +28628,2,50.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,835.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,2,,2,128650,2,1,0,0,1,,0.0,469.0,12,1.0,0.0,2.0,1.0,1.0,1,1,434.524281998713,0.0,19889.60551068223,0,1,2,3,50.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041981727568781664,19889.60551068223,5,3,5,5_0,5_2,5_0_1 +28629,2,52.0,0.0,2,111,223.0,1170.0,0.0,0,54,0.0,0.0,380.25972117196966,1393.0,0.0,2221.249736089553,50,0,0,0,0,0,0,0,0,2,7.0,2,,2,128651,2,3,0,0,1,,0.0,850.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1235.77818795659,223.0,27151.77531231955,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05130419591266857,27151.77531231955,7,4,7,7_0,7_4,7_0_1 +28630,2,62.0,0.0,7,111,700.0,,,71,77,0.0,0.0,,920.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,0,,1,,5,128652,2,1,0,0,2,,400.0,,41,1.0,2.0,3.0,3.0,2.0,3,3,87.69514282113784,700.0,5314.475990017394,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.17311208136570938,2657.237995008697,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28631,2,52.0,0.0,6,112,740.0,636.0,0.0,77,48,0.0,662.163638505112,1261.8484020953254,1876.0,0.0,1207.4485744897058,50,0,0,0,0,0,0,0,0,0,,1,,4,128653,2,1,2,0,1,,300.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,460.81496504939,740.0,37360.119342910824,6,1,0,1,79.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05021397235862887,24906.746228607215,7,4,7,7_1,7_1,7_0_0 +28632,2,82.0,0.0,5,111,2584.0,0.0,0.0,86,78,0.0,0.0,4406.238204073406,2794.0,290.9737373332694,0.0,71,2,2,2,1,2,2,2,2,0,,1,,3,128654,1,3,3,0,1,,683.0,,41,1.0,6.0,6.0,3.0,2.0,3,3,899.034644445096,2584.0,61517.8826588343,6,5,0,1,120.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.045417687983426824,30758.94132941715,8,4,8,8_1,8_2,8_0_0 +28633,0,68.0,0.0,5,221,360.0,0.0,0.0,0,86,0.0,0.0,613.872195613942,450.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,128655,1,3,3,0,2,,0.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,953.080345070557,360.0,12280.325594703923,0,5,0,1,72.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03664397955328394,12280.325594703923,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +28634,2,56.0,0.0,9,211,750.0,,,0,45,0.0,0.0,,800.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,128656,1,2,0,0,2,,200.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,35.0929481927198,750.0,46291.579493809055,0,1,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017281760716481718,46291.579493809055,10,5,10,10_1,10_2,10_0_0 +28636,2,50.0,0.0,6,112,1168.0,0.0,0.0,22,38,0.0,860.8127300566456,1991.6742346585675,1818.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,4,128658,2,1,1,0,1,,640.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,1648.84055649264,1168.0,94982.86807344334,1,1,0,1,130.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019140293790605195,47491.43403672167,10,5,10,10_1,10_1,10_0_0 +28637,2,89.0,0.0,2,111,600.0,200.0,0.0,0,74,0.0,0.0,1023.1203260232367,1732.0,0.0,379.7008095879578,42,0,0,0,0,0,0,0,0,0,,2,,2,128659,1,3,0,1,2,,0.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1967.17648348771,600.0,46903.5628453299,0,5,0,1,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.036926832311470176,46903.5628453299,10,5,10,10_0,10_3,10_0_1 +28638,2,74.0,0.0,5,111,996.0,,,21,74,0.0,0.0,,1080.0,116.38949493330776,,70,0,0,0,0,0,0,0,0,0,,2,,3,128660,2,1,0,0,2,,356.0,390.0,42,1.0,3.0,3.0,2.0,1.5,2,2,100.48735706711965,996.0,26170.487207895898,1,5,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04126785991489502,17446.9914719306,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +28639,2,67.0,0.0,5,112,720.0,0.0,0.0,77,77,0.0,993.245457757668,1227.744391227884,1530.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,128661,2,2,2,0,1,,410.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1074.47549918209,720.0,46374.54135340192,5,5,0,1,80.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032992240038353784,30916.360902267945,8,4,8,8_1,8_0,8_0_0 +28640,2,32.0,0.0,8,111,284.0,624.0,0.0,85,46,0.0,0.0,484.2769543176654,908.0,0.0,1184.6665259144283,31,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,128662,2,1,2,0,1,,160.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,1094.83994144556,284.0,35393.44641782282,6,1,1,2,95.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025654466911217918,16854.022103725154,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +28641,2,59.0,0.0,1,112,1200.0,0.0,0.0,72,52,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,,1,128663,2,1,1,0,1,,420.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,1458.21145409542,1200.0,22323.52709808978,7,1,0,1,65.0,8,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05778656725398851,14882.35139872652,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +28642,2,54.0,0.0,5,111,80.0,0.0,0.0,0,46,0.0,0.0,136.4160434697649,80.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,3,128664,2,1,2,0,2,,300.0,500.0,12,1.0,3.0,5.0,1.0,1.0,1,1,708.183313475874,80.0,52196.879212618995,0,1,2,3,90.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0015326586801124192,52196.879212618995,10,5,10,10_1,10_2,10_0_0 +28643,1,58.0,31.0,9,111,400.0,,,0,63,0.0,0.0,,463.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,3,20.0,1,2007.0,6,128665,2,1,0,0,1,,600.0,288.0,12,1.0,3.0,2.0,1.0,1.0,1,1,115.69436167167784,400.0,12187.127708453218,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037990904097842074,12187.127708453218,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +28644,2,33.0,0.0,8,211,600.0,,,62,42,0.0,0.0,,710.0,152.4148147936173,,41,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,128666,2,3,0,0,2,,350.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,98.64110138218084,600.0,24432.182880496188,4,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02906003133132985,10180.076200206746,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +28645,2,67.0,0.0,2,112,810.0,0.0,0.0,77,78,2636.7071275915036,264.8654554020448,1381.2124401313695,3690.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128667,2,2,2,0,1,,389.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,886.968183961494,810.0,29213.203702478655,5,5,0,1,180.0,8,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12631274671483272,19475.46913498577,5,3,5,5_1,5_0,5_0_1 +28646,2,66.0,0.0,5,111,900.0,1870.0,0.0,78,64,0.0,0.0,1534.680489034855,2770.0,0.0,3550.202569647405,71,0,0,0,0,0,0,0,0,0,,1,,3,128668,1,3,3,0,2,,480.0,556.0,41,0.0,2.0,4.0,2.0,1.5,2,2,243.863966092176,900.0,46281.17771193197,5,5,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05985154520572741,30854.11847462131,8,4,8,8_1,8_4,8_0_0 +28647,1,43.0,520.0,7,111,430.0,1450.0,0.0,85,55,0.0,0.0,733.2362336499863,1880.0,0.0,2752.830869512694,71,0,0,0,0,0,0,0,0,0,,2,,5,128669,2,2,0,0,1,,0.0,882.0,42,1.0,0.0,4.0,5.0,2.4,2,2,970.015227367659,430.0,17258.49709222819,6,4,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.10893184904533765,7191.04045509508,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +28648,2,81.0,0.0,1,111,500.0,800.0,0.0,0,77,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,1,128670,2,1,1,0,1,,180.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,144.522129762609,500.0,16939.73649143598,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07674263414057389,16939.73649143598,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +28649,2,70.0,0.0,2,112,600.0,,,0,74,0.0,0.0,,600.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,128671,2,1,0,0,2,,600.0,,21,1.0,1.0,5.0,2.0,1.5,2,2,109.39994951685948,600.0,135721.88762316765,0,5,0,1,140.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004420805004318112,90481.2584154451,10,5,10,10_1,10_1,10_0_1 +28650,2,74.0,0.0,2,111,455.0,1412.0,0.0,77,78,0.0,0.0,775.8662472342878,1867.0,0.0,2680.6877156909823,50,0,0,0,0,0,0,0,0,0,,1,,2,128672,2,2,1,0,1,,186.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1005.70026770287,455.0,38206.06917418373,5,5,0,1,80.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.048866581680733406,25470.712782789153,7,4,7,7_1,7_2,7_0_1 +28651,2,60.0,0.0,2,221,600.0,3500.0,0.0,74,22,0.0,0.0,1023.1203260232367,4100.0,0.0,6644.764167789262,31,0,0,0,0,0,0,0,0,2,5.0,1,,2,128673,2,1,2,0,1,,600.0,,42,2.0,2.0,6.0,3.0,2.0,3,3,634.120345667899,600.0,86509.27306159741,5,1,0,1,161.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04739376317589291,43254.63653079871,9,5,9,9_1,9_1,9_0_1 +28652,2,41.0,0.0,1,112,2200.0,0.0,0.0,46,48,0.0,132.4327277010224,3751.441195418535,2300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,,1,128674,2,1,2,0,1,,180.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,571.8024762208,2200.0,66164.20017492646,1,1,1,2,90.0,10,2,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03476200111116293,36757.888986070255,9,5,9,9_1,9_1,9_1_0 +28653,2,57.0,0.0,2,111,1400.0,0.0,0.0,0,52,0.0,331.081819252556,2387.2807607208856,1700.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,2,128675,2,2,5,0,1,,140.0,1583.0,32,1.0,1.0,5.0,2.0,1.5,2,2,902.241267560966,1400.0,55608.64655733193,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030570785394809383,37072.431038221286,9,5,9,9_1,9_4,9_0_1 +28654,2,43.0,0.0,7,120,450.0,,,0,42,0.0,0.0,,576.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,128676,2,2,0,0,1,,800.0,,32,2.0,1.0,4.0,6.0,2.8999999999999995,3,2,99.17905753813372,450.0,28692.556235403736,0,4,0,1,90.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02007489312817914,9893.98490875991,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +28655,2,48.0,0.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,406.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,128677,2,1,0,1,1,,0.0,370.0,11,0.0,0.0,1.0,1.0,1.0,1,1,804.709731508628,0.0,4779.249556166041,0,7,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08495057544676471,4779.249556166041,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +28656,2,26.0,0.0,1,112,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1851.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,128678,2,1,1,0,1,,93.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,65.4147200976766,0.0,18202.81175820765,0,1,2,3,90.0,8,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10168758676336825,18202.81175820765,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +28657,2,41.0,0.0,1,111,400.0,400.0,0.0,0,38,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,128679,2,1,1,0,1,,430.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1106.81453803049,400.0,25960.434158898926,0,1,1,2,90.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03081612561266698,25960.434158898926,7,4,7,7_1,7_3,7_1_0 +28658,2,74.0,0.0,8,111,250.0,1500.0,0.0,77,72,0.0,794.5963662061343,426.3001358430153,2350.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128680,2,1,1,0,1,,220.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,660.288534085707,250.0,29339.06905448344,5,5,0,1,164.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08009797433026886,19559.379369655628,5,3,5,5_1,5_4,5_0_0 +28659,2,81.0,0.0,1,221,489.0,0.0,0.0,86,77,2214.833987176863,158.91927324122688,833.843065708938,2849.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,128681,1,1,2,0,2,,374.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1828.77048438632,489.0,24520.520001765344,6,5,0,1,70.0,1,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11618840056389047,16347.01333451023,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +28660,1,37.0,354.0,7,111,240.0,,,0,56,0.0,0.0,,240.0,0.0,,10,0,0,0,0,0,0,0,0,0,,2,,5,128682,2,2,0,0,2,,140.0,368.0,32,1.0,0.0,1.0,2.0,1.3,1,1,154.35344336093277,240.0,3595.3795820335636,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06675233991962953,2765.6766015642797,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28661,2,78.0,0.0,2,112,742.0,1127.0,0.0,0,74,0.0,0.0,1265.2588031820694,1869.0,0.0,2139.614062028142,44,0,0,0,0,0,0,0,0,0,,1,,2,128683,2,1,1,0,1,,536.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2014.77349565598,742.0,29157.544744895007,0,5,0,1,120.0,6,0,7,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06410004739261287,29157.544744895007,8,4,8,8_1,8_0,8_0_1 +28662,2,57.0,0.0,5,111,143.0,0.0,0.0,0,52,0.0,0.0,243.84367770220476,143.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,3,128684,2,1,0,1,1,,0.0,398.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1267.48178734874,143.0,23438.0,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006101203174332281,23438.0,6,3,6,6_0,6_4,6_0_0 +28663,2,73.0,0.0,7,111,1370.0,0.0,0.0,0,78,0.0,0.0,2336.124744419724,1445.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,128685,2,1,2,0,1,,47.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1053.92673895293,1370.0,16808.959223137004,0,5,0,1,64.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08596606017170907,16808.959223137004,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +28664,2,51.0,0.0,2,111,603.0,1865.0,0.0,56,47,0.0,66.2163638505112,1028.235927653353,2518.0,0.0,3540.7100494077063,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,128686,2,2,3,0,1,,280.0,,43,2.0,2.0,6.0,4.0,2.3,3,2,802.121554382006,603.0,46920.57217562464,1,1,1,2,128.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05366515972088055,20400.248772010716,5,3,5,5_1,5_2,5_0_1 +28665,2,32.0,0.0,9,120,960.0,0.0,0.0,63,42,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,128687,2,1,1,0,1,,420.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1914.77458353034,960.0,46369.67382945914,1,1,1,2,131.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020703186387092978,22080.79706164721,6,3,6,6_1,6_1,6_0_0 +28666,2,48.0,0.0,1,111,462.0,1000.0,0.0,0,52,0.0,0.0,787.8026510378922,1462.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,2,7.0,1,,1,128688,2,1,1,0,1,,85.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1396.78926826423,462.0,21196.506297072174,0,1,1,2,97.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06897363081961969,21196.506297072174,5,3,5,5_1,5_3,5_1_0 +28667,1,52.0,308.0,2,111,204.0,60.0,0.0,0,85,0.0,0.0,347.86091084790047,264.0,0.0,113.91024287638734,71,2,1,2,2,1,2,2,2,0,,2,,2,128689,1,3,0,1,1,600.0,0.0,294.0,11,0.0,1.0,2.0,1.0,1.0,1,1,259.322052618395,204.0,6060.0,0,7,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0.04356435643564356,6060.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +28668,2,54.0,0.0,8,211,780.0,,,56,34,0.0,0.0,,924.0,199.524848457099,,10,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,128690,2,1,0,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,91.72441233051396,780.0,53950.400722314036,1,1,1,2,55.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01712684220374717,21580.160288925614,6,3,6,6_1,6_2,6_0_0 +28669,2,82.0,0.0,2,112,845.0,550.0,0.0,77,72,0.0,0.0,1440.8944591493917,1525.0,180.1265993015477,1044.177226366884,50,2,2,2,1,1,2,2,2,0,,1,,2,128691,1,1,2,0,2,,134.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,865.043750227966,845.0,38777.495421503394,5,5,0,1,150.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03932693391936647,25851.663614335597,7,4,7,7_1,7_1,7_0_1 +28670,1,35.0,100.0,2,111,1200.0,1200.0,0.0,55,64,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,0,,2,,2,128692,1,2,0,0,2,,0.0,,43,2.0,0.0,2.0,5.0,2.4,2,2,987.295866487045,1200.0,24442.00920752319,1,1,0,1,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09819160035588588,10184.170503134663,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +28671,2,43.0,0.0,8,111,483.0,,,54,34,0.0,0.0,,571.0,121.93185183489385,,20,0,0,0,0,0,0,0,0,2,30.0,1,2002.0,6,128693,2,1,0,0,1,,540.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,167.45833515219798,483.0,67334.3239013469,1,1,1,2,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00848007326600005,29275.79300058561,8,4,8,8_1,8_2,8_0_0 +28672,2,71.0,0.0,6,300,1000.0,0.0,0.0,11,71,0.0,264.8654554020448,1705.2005433720612,1400.0,277.1178450793042,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,128694,2,1,1,0,2,,1683.0,,42,1.0,3.0,6.0,4.0,2.5,4,4,697.623406104234,1000.0,31333.77299555779,1,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04468022412106193,12533.509198223115,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +28673,1,50.0,184.0,5,111,528.0,276.0,0.0,0,69,0.0,0.0,900.3458869004482,804.0,0.0,523.9871172313817,71,2,1,2,2,1,2,2,1,0,,2,,3,128695,2,1,0,1,1,913.0,0.0,366.0,22,2.0,3.0,4.0,3.0,2.0,3,3,392.232022743925,528.0,36165.91756258746,0,4,2,3,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.022230875204773275,18082.95878129373,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +28674,2,30.0,0.0,1,111,0.0,0.0,0.0,56,62,0.0,0.0,0.0,3873.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,128696,2,1,1,0,1,,408.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,432.232888181246,0.0,46324.3718549537,1,1,1,2,95.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08360609858082384,25735.762141640946,7,4,7,7_1,7_3,7_1_0 +28675,2,58.0,0.0,1,112,1100.0,0.0,0.0,0,33,1265.6194212439218,397.2981831030672,1875.7205977092674,2630.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,105.0,1,,1,128697,1,2,3,0,1,,240.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1144.18306663271,1100.0,56951.722461150166,0,1,0,1,120.0,9,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04617946369917195,56951.722461150166,10,5,10,10_1,10_0,10_1_0 +28676,2,37.0,0.0,9,400,0.0,,,0,11,0.0,0.0,,30.0,41.567676761895626,,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,128698,2,3,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,97.65144072348026,0.0,31995.0,0,1,0,1,132.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0009376465072667605,31995.0,8,4,8,8_1,8_0,8_0_0 +28677,2,52.0,0.0,2,112,475.0,,,52,45,0.0,0.0,,580.0,145.4868686666347,,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,128699,2,1,0,0,1,,160.0,,43,3.0,0.0,6.0,3.0,2.0,3,3,108.30620131546631,475.0,75920.69438024305,1,1,0,1,140.0,7,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007639550780385568,37960.34719012152,9,5,9,9_1,9_1,9_0_1 +28678,1,36.0,250.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,436.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,128700,2,3,0,1,2,625.0,709.0,420.0,42,1.0,0.0,3.0,4.0,2.1,2,2,403.436678695024,0.0,21504.909141375152,6,1,2,3,64.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020274440460719825,10240.432924464358,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28679,1,63.0,40.0,2,111,190.0,99.0,0.0,0,68,0.0,0.0,323.9881032406916,289.0,0.0,187.95190074603912,50,0,0,0,0,0,0,0,0,0,,2,,2,128701,2,2,0,1,1,632.0,170.0,338.0,12,1.0,4.0,4.0,1.0,1.0,1,1,395.047590009598,190.0,13645.877075476206,0,1,2,3,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02117855806567235,13645.877075476206,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +28680,2,75.0,0.0,2,111,300.0,900.0,0.0,78,78,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,71,2,2,1,2,1,2,1,2,0,,1,,2,128702,2,2,5,0,1,,400.0,400.0,41,1.0,4.0,4.0,3.0,2.0,3,3,427.71359847271,300.0,26434.44044293686,5,5,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.045395324428765566,13217.22022146843,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +28681,0,59.0,0.0,1,111,938.0,120.0,0.0,0,34,896.4804233811113,0.0,1599.4781096829934,1908.0,0.0,227.8204857527747,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,128703,2,1,0,1,1,,0.0,,32,2.0,0.0,6.0,3.0,2.0,3,3,706.199093865529,938.0,99602.35054442151,0,1,0,1,160.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019156174423303935,49801.175272210756,10,5,10,10_0,10_4,10_1_0 +28682,2,82.0,0.0,2,111,910.0,1330.0,0.0,90,77,0.0,0.0,1551.7324944685756,2240.0,0.0,2525.0103837599195,41,2,2,2,2,1,2,2,2,0,,1,,2,128704,2,2,3,0,1,,340.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,433.761360714998,910.0,48768.166691201906,5,5,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04593160153391845,32512.11112746794,8,4,8,8_1,8_2,8_0_1 +28683,2,69.0,0.0,2,300,600.0,1700.0,0.0,75,72,0.0,0.0,1023.1203260232367,2300.0,0.0,3227.4568814976415,70,0,0,0,0,0,0,0,0,0,,1,,2,128705,1,2,3,0,1,,380.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,279.01358548701,600.0,33398.29790456643,5,5,1,2,95.0,0,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06886578491431232,22265.53193637762,6,3,6,6_1,6_0,6_0_1 +28684,2,40.0,0.0,2,111,1050.0,0.0,0.0,85,63,0.0,0.0,1790.4605705406643,1260.0,290.9737373332694,0.0,50,2,2,2,1,1,2,2,2,0,,2,,2,128706,2,2,0,1,1,648.0,0.0,384.0,42,1.0,1.0,5.0,4.0,2.3,3,2,342.325051286673,1050.0,32064.105576378624,6,4,2,3,125.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03929627779569913,13940.915467990708,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +28685,1,28.0,233.0,1,111,0.0,0.0,0.0,42,63,0.0,0.0,0.0,1540.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,1,,1,128707,2,1,1,0,2,,370.0,,43,2.0,0.0,5.0,5.0,2.8,4,4,402.762722012985,0.0,25818.26845862531,1,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05964768715872269,9220.810163794753,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +28686,2,75.0,0.0,5,111,149.0,0.0,0.0,0,75,0.0,0.0,254.0748809624371,149.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,128708,1,1,0,1,2,,0.0,743.0,11,0.0,2.0,1.0,1.0,1.0,1,1,801.316203360451,149.0,27503.294303706178,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005417532836418133,27503.294303706178,7,4,7,7_0,7_4,7_0_0 +28687,2,62.0,0.0,2,111,600.0,,,0,77,0.0,0.0,,696.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,2,,2,128709,2,3,0,0,2,,480.0,466.0,21,1.0,3.0,5.0,2.0,1.5,2,2,149.36172685133286,600.0,44321.264359515575,0,5,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015703523129537524,29547.509573010382,8,4,8,8_0,8_2,8_0_1 +28688,2,76.0,0.0,7,400,607.0,0.0,0.0,77,75,0.0,0.0,1035.056729826841,4107.0,4849.562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,128710,2,1,2,0,1,,276.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1429.32332477124,607.0,29728.632971414216,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.13814964192767007,19819.08864760948,5,3,5,5_1,5_0,5_0_0 +28689,2,57.0,0.0,7,111,480.0,,,85,68,0.0,0.0,,1170.0,956.0565655235995,,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,128711,2,2,0,0,2,,180.0,,42,1.0,3.0,5.0,3.0,2.0,3,2,131.60779195321427,480.0,24383.16479338428,6,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04798392702154268,12191.58239669214,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +28691,1,38.0,390.0,2,111,400.0,1000.0,0.0,67,67,0.0,0.0,682.0802173488245,1400.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,80.0,2,,2,128713,1,2,0,0,1,,0.0,359.0,43,2.0,0.0,4.0,4.0,2.1,2,2,255.072969103124,400.0,16011.366798897308,1,1,2,3,60.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08743788194874262,7624.460380427289,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28692,2,78.0,0.0,2,111,864.0,,,74,78,0.0,0.0,,1128.0,365.79555550468154,,70,0,0,0,0,0,0,0,0,0,,1,,2,128714,1,1,0,0,2,,816.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,75.65631735660781,864.0,34208.67105251244,5,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03297409590300803,22805.78070167496,6,3,6,6_1,6_2,6_0_1 +28693,2,72.0,0.0,2,111,417.0,0.0,0.0,0,74,0.0,0.0,711.0686265861495,417.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128715,2,2,0,1,1,721.0,0.0,291.0,11,0.0,1.0,4.0,1.0,1.0,1,1,330.754594352314,417.0,23299.91489064409,0,5,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017897061081860146,23299.91489064409,6,3,6,6_0,6_4,6_0_1 +28694,2,30.0,0.0,6,112,1270.0,0.0,0.0,54,62,0.0,688.6501840453165,2165.6046900825177,1854.0,88.67771042537734,0.0,50,2,1,2,2,2,2,2,1,2,30.0,1,,4,128716,1,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,733.807520024531,1270.0,45876.69215046749,1,1,1,2,79.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04041267827068276,21846.043881174995,6,3,6,6_1,6_0,6_0_0 +28695,2,59.0,0.0,9,120,700.0,1000.0,0.0,43,21,0.0,0.0,1193.6403803604428,1700.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128717,2,1,1,0,1,,400.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,2048.1986335947,700.0,56718.744221192486,1,1,1,2,180.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029972454844386508,37812.49614746166,9,5,9,9_1,9_0,9_0_0 +28696,1,33.0,22.0,2,211,0.0,0.0,0.0,33,52,0.0,0.0,0.0,514.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,128718,2,2,0,1,1,870.0,274.0,256.0,43,2.0,0.0,3.0,3.0,1.8,2,2,3336.96379083392,0.0,20847.125010680516,4,1,2,3,65.0,2,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02465567792857119,11581.736117044731,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +28697,2,24.0,0.0,1,120,0.0,0.0,0.0,42,22,0.0,0.0,0.0,1177.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,128719,2,1,1,0,1,,89.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1785.9963248459,0.0,38491.192684160815,1,1,2,3,60.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0305784237359924,25660.795122773878,7,4,7,7_1,7_0,7_1_0 +28698,2,66.0,0.0,9,300,2200.0,0.0,0.0,75,74,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2007.0,6,128720,2,1,1,0,1,,500.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1601.45267272123,2200.0,88704.82854343671,5,5,0,1,160.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024801355643483496,59136.55236229114,10,5,10,10_1,10_1,10_0_0 +28699,2,62.0,0.0,2,111,0.0,0.0,1020.0,0,75,0.0,0.0,642.9246562230387,1020.0,0.0,1220.6667905159743,50,0,0,0,0,0,0,0,0,0,,1,,2,128721,2,2,3,0,1,,210.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1286.66846342072,0.0,19336.64434707299,0,5,1,2,90.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05274958683068495,19336.64434707299,5,3,5,5_1,5_2,5_0_1 +28700,2,32.0,0.0,1,400,600.0,0.0,0.0,0,63,0.0,0.0,1023.1203260232367,635.0,48.49562288887823,0.0,44,0,0,0,0,0,0,0,0,2,55.0,1,,1,128722,2,2,5,0,1,,167.0,250.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1013.664098397,600.0,17727.42629548768,0,1,2,3,60.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03582020251646074,17727.42629548768,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +28701,1,81.0,81.0,2,111,198.0,196.0,0.0,86,75,0.0,0.0,337.6297075876681,394.0,0.0,372.10679339619867,71,0,0,0,0,0,0,0,0,0,,2,,2,128723,2,2,0,1,2,,300.0,458.0,41,0.0,3.0,5.0,2.0,1.5,2,2,460.125105820384,198.0,16694.8499848167,6,5,2,3,75.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02360009226547871,11129.8999898778,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28702,2,49.0,0.0,7,400,1200.0,0.0,0.0,0,52,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,128724,2,1,2,0,1,,350.0,322.0,32,2.0,0.0,4.0,3.0,2.0,3,2,1934.82104284991,1200.0,28004.43765478229,0,1,2,3,100.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04713538676519666,14002.218827391145,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +28703,2,77.0,0.0,2,111,400.0,1500.0,0.0,77,78,0.0,0.0,682.0802173488245,1900.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,2,128725,2,1,2,0,2,,180.0,,41,0.0,1.0,4.0,3.0,2.0,3,3,725.954091168991,400.0,28557.364566240874,5,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06653275009298608,14278.682283120437,3,2,3_0,3_1_0,3_4_0,3_0_1_0 +28704,2,30.0,0.0,2,111,180.0,0.0,0.0,0,38,0.0,0.0,306.936097806971,180.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,,2,128726,2,1,0,1,1,360.0,0.0,752.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1439.64049071336,180.0,42158.82014008291,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004269569200511455,42158.82014008291,9,5,9,9_0,9_4,9_0_1 +28705,2,27.0,0.0,9,111,0.0,0.0,1296.0,63,43,0.0,0.0,816.892504377508,1296.0,0.0,1550.9648632438266,33,0,0,0,0,0,0,0,0,2,5.0,2,2007.0,6,128727,2,1,0,0,1,,480.0,620.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2672.52502116314,0.0,43792.74393697466,1,1,2,3,75.0,7,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029593943733353827,24329.30218720814,7,4,7,7_0,7_2,7_0_0 +28706,2,79.0,0.0,1,111,300.0,966.0,0.0,0,78,0.0,0.0,511.56016301161833,1266.0,0.0,1833.9549103098361,70,2,2,2,2,1,2,2,2,0,,2,,1,128728,2,2,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,752.160965236551,300.0,19298.859209883423,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.06559973241069349,19298.859209883423,5,3,5,5_0,5_4,5_1_0 +28708,2,86.0,0.0,2,300,1900.0,0.0,0.0,0,71,0.0,0.0,3239.8810324069163,2050.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128730,2,3,4,0,1,,470.0,,21,1.0,3.0,6.0,3.0,2.0,3,3,1245.00647521461,1900.0,34701.13751510638,0,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05907587320754479,17350.56875755319,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +28709,2,43.0,0.0,9,111,0.0,0.0,850.0,46,37,0.0,397.2981831030672,535.7705468525322,1150.0,0.0,1017.2223254299786,20,2,2,2,2,1,2,1,2,2,20.0,1,2007.0,6,128731,2,1,1,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1511.14902258275,0.0,65793.77306644285,1,1,1,2,109.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0.017478857745985395,31330.368126877547,8,4,8,8_1,8_4,8_0_0 +28710,2,51.0,0.0,6,112,1815.0,0.0,0.0,54,43,0.0,0.0,3094.938986220291,1875.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,2,25.0,1,,4,128732,2,1,2,0,1,,569.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,820.100261180413,1815.0,63171.864453970265,1,1,0,1,97.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02968093495746363,42114.57630264684,9,5,9,9_1,9_0,9_0_0 +28711,1,54.0,154.0,2,112,150.0,75.0,0.0,0,68,0.0,0.0,255.78008150580916,225.0,0.0,142.38780359548417,71,0,0,0,0,0,0,0,0,3,35.0,2,,2,128733,1,1,0,1,1,,0.0,255.0,12,1.0,0.0,3.0,1.0,1.0,1,1,289.957721500466,150.0,11027.475932053461,0,1,2,3,60.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020403581144620285,11027.475932053461,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28712,2,88.0,0.0,2,111,480.0,,,78,78,0.0,0.0,,656.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,2,128734,2,1,0,0,2,,520.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,91.07515177947117,480.0,18310.62023393401,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03582620313342927,12207.080155956006,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +28713,2,44.0,0.0,7,111,800.0,,,64,65,0.0,0.0,,910.0,152.4148147936173,,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,128735,2,2,0,0,2,,300.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,88.51118925386373,800.0,36197.43140552306,4,1,1,2,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025139905365250608,15738.013654575243,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +28714,2,45.0,0.0,1,111,1200.0,6167.0,0.0,0,37,0.0,0.0,2046.2406520464733,7367.0,0.0,11708.074463644678,10,0,0,0,0,0,0,0,0,2,30.0,2,,1,128736,1,2,0,1,2,182.0,0.0,2954.0,32,1.0,0.0,3.0,3.0,2.0,3,2,890.072310169769,1200.0,97026.04370814071,0,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07592806754195101,48513.02185407036,10,5,10,10_0,10_4,10_1_0 +28715,1,78.0,81.0,2,111,188.0,160.0,0.0,0,77,0.0,0.0,320.5777021539475,348.0,0.0,303.7606476703662,71,2,2,2,1,2,2,2,1,0,,8,,2,128737,1,2,0,1,1,643.0,0.0,248.0,11,0.0,2.0,5.0,1.0,1.0,1,1,1872.49327392173,188.0,12338.727624912583,0,6,2,3,91.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.028203880544163118,12338.727624912583,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28716,2,45.0,0.0,6,111,1852.0,0.0,0.0,45,38,0.0,0.0,3158.031406325057,1852.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,4,128738,2,1,3,0,1,,100.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,2246.29231368052,1852.0,65806.0685118005,1,1,1,2,160.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02814330109491186,32903.03425590025,8,4,8,8_1,8_3,8_0_0 +28717,1,39.0,433.0,2,111,500.0,200.0,0.0,0,85,0.0,0.0,852.6002716860306,700.0,0.0,379.7008095879578,71,2,2,2,1,1,1,2,2,0,,2,,2,128739,2,2,0,1,1,980.0,0.0,424.0,31,1.0,0.0,5.0,8.0,3.499999999999999,3,2,312.02206594652,500.0,23586.615803050565,0,6,2,3,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.029677848057772908,6739.033086585878,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +28718,2,59.0,0.0,2,111,240.0,750.0,0.0,52,78,0.0,0.0,409.2481304092947,990.0,0.0,1423.8780359548418,50,2,1,2,2,1,1,2,2,0,,2,,2,128740,1,2,0,1,1,480.0,0.0,316.0,42,1.0,0.0,3.0,4.0,2.3,3,2,199.06283893394,240.0,18169.4243820611,1,7,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.05448714164976186,7899.749731330914,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +28719,2,45.0,0.0,9,111,1476.0,0.0,0.0,54,38,0.0,0.0,2516.876002017162,1476.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,2005.0,6,128741,2,1,1,0,1,,285.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,1725.99527064407,1476.0,64801.79359821582,1,1,1,2,118.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022777147329462785,24923.766768544552,7,4,7,7_1,7_2,7_0_0 +28720,2,65.0,0.0,2,111,300.0,180.0,0.0,0,77,0.0,0.0,511.56016301161833,480.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,0,,2,,2,128742,2,1,0,1,1,1884.0,0.0,179.0,11,0.0,2.0,3.0,1.0,1.0,1,1,195.715174015135,300.0,16567.124361655075,0,5,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028973042606655935,16567.124361655075,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +28721,1,52.0,280.0,2,111,645.0,0.0,0.0,0,85,0.0,0.0,1099.8543504749794,645.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,128743,2,1,0,1,1,1312.0,0.0,660.0,11,0.0,0.0,3.0,1.0,1.0,1,1,730.305838514331,645.0,10381.222153585364,0,7,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06213141289701004,10381.222153585364,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28722,2,62.0,0.0,6,111,1000.0,,,34,34,0.0,0.0,,1055.0,76.20740739680865,,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,128744,2,1,0,0,2,,500.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,7.835959960480189,1000.0,120592.64018058227,1,1,1,2,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008748460921165529,80395.0934537215,10,5,10,10_1,10_2,10_0_0 +28723,1,41.0,273.0,7,111,268.0,,,0,90,0.0,0.0,,368.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,5,128745,2,1,0,0,2,,375.0,450.0,32,1.0,0.0,3.0,2.0,1.3,1,1,151.8659272610735,268.0,8397.120932261183,0,4,2,3,45.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.043824544503839206,6459.3237940470635,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +28724,2,53.0,0.0,7,112,1900.0,0.0,0.0,42,38,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,12.0,1,,5,128746,2,1,2,0,1,,500.0,,43,2.0,3.0,8.0,2.0,1.5,2,2,1054.5024286156,1900.0,127098.3648608741,1,1,0,1,240.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01494905148527914,84732.24324058274,10,5,10,10_1,10_0,10_0_0 +28725,2,68.0,0.0,6,111,280.0,1156.0,0.0,0,77,0.0,0.0,477.4561521441771,1436.0,0.0,2194.670679418396,50,2,2,2,2,1,2,2,2,0,,1,,4,128747,1,1,1,0,2,,220.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1309.33949168743,280.0,12510.709493811732,0,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.11478165972204052,12510.709493811732,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +28726,2,39.0,0.0,2,112,1500.0,0.0,0.0,52,64,0.0,0.0,2557.8008150580918,1610.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,128748,1,1,3,0,2,,550.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,921.653127612846,1500.0,39542.73990108732,1,1,1,2,120.0,6,1,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.040715438637466024,17192.4956091684,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +28727,1,22.0,270.0,2,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,2231.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,2,128749,2,2,5,0,1,703.0,0.0,830.0,22,1.0,0.0,4.0,3.0,2.0,3,3,1167.73907263983,0.0,15553.808105948716,0,1,3,4,90.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.14343754177774193,7776.904052974358,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +28728,2,32.0,0.0,7,111,1920.0,0.0,0.0,42,34,0.0,0.0,3273.9850432743574,2070.0,207.83838380947813,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,128750,2,2,1,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,634.409648844126,1920.0,51454.62212344037,1,1,1,2,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04022962203539345,24502.20101116208,7,4,7,7_1,7_4,7_0_0 +28729,2,48.0,0.0,5,111,2000.0,0.0,0.0,0,38,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,,3,128751,2,1,2,0,1,,580.0,,32,1.0,2.0,7.0,2.0,1.5,2,1,295.283148365436,2000.0,61520.569032289655,0,1,0,1,150.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03250945222808783,41013.7126881931,9,5,9,9_1,9_2,9_0_0 +28730,2,62.0,0.0,2,111,236.0,0.0,0.0,0,63,0.0,0.0,402.42732823580644,236.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,8.0,2,,2,128752,2,1,0,1,1,1428.0,0.0,450.0,32,1.0,0.0,4.0,2.0,1.5,2,1,1524.84646629125,236.0,34145.098893014714,0,1,2,3,80.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006911680084437538,22763.39926200981,6,3,6,6_0,6_2,6_0_1 +28731,2,73.0,0.0,8,111,400.0,400.0,0.0,0,74,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,128753,2,1,2,0,1,,260.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,497.067097993712,400.0,92696.69639034309,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00863029677596301,92696.69639034309,10,5,10,10_1,10_3,10_0_0 +28732,2,69.0,0.0,1,112,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2149.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128754,2,2,1,0,1,,151.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1603.53176764461,0.0,20925.129551250193,0,5,1,2,72.0,7,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10269948363935485,20925.129551250193,5,3,5,5_1,5_0,5_1_0 +28733,2,61.0,0.0,2,111,200.0,200.0,0.0,75,75,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,31,1,2,2,1,2,2,2,2,0,,2,,2,128755,1,1,0,2,2,,0.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1689.64741314217,200.0,64793.776914654125,5,5,0,1,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.006173432373403343,43195.851276436086,9,5,9,9_0,9_3,9_0_1 +28734,2,36.0,0.0,9,211,600.0,1320.0,0.0,0,38,0.0,0.0,1023.1203260232367,1920.0,0.0,2506.0253432805216,31,0,0,0,0,0,0,0,0,2,30.0,1,2004.0,6,128756,2,1,1,0,1,,194.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1016.30850599181,600.0,42722.91619168818,0,1,1,2,108.0,1,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044940752437998124,42722.91619168818,9,5,9,9_1,9_1,9_0_0 +28735,2,59.0,0.0,6,211,463.0,0.0,0.0,52,63,0.0,524.4336016960486,789.5078515812643,987.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128757,2,1,2,0,1,,103.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,528.965696576141,463.0,45093.150234949724,1,1,0,1,104.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02188802500728857,30062.10015663315,8,4,8,8_1,8_1,8_0_0 +28736,2,46.0,0.0,1,111,720.0,0.0,0.0,35,35,0.0,0.0,1227.744391227884,1006.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,128758,2,1,0,1,1,,0.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,788.768430795724,720.0,126086.3106075647,1,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00797866156248404,54820.13504676726,10,5,10,10_0,10_4,10_1_0 +28737,2,72.0,0.0,6,111,300.0,0.0,0.0,75,75,0.0,198.6490915515336,511.56016301161833,450.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,128759,2,1,1,0,1,,370.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1989.03610285407,300.0,59187.93440898563,5,5,0,1,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007602900903595026,39458.62293932375,9,5,9,9_1,9_3,9_0_0 +28738,2,46.0,0.0,9,111,580.0,,,85,62,0.0,0.0,,712.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128760,2,2,0,0,2,,710.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,113.45792107478779,580.0,26956.367971205997,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026413053893630536,14975.75998400333,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +28739,2,40.0,0.0,1,300,0.0,0.0,0.0,11,22,1582.0242765549024,768.1098206659299,0.0,5369.0,103.91919190473907,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,128761,2,1,4,0,1,,151.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1287.65053676631,0.0,39341.05928049838,1,1,0,1,170.0,0,0,8,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13647319360974727,18733.837752618278,5,3,5,5_1,5_0,5_1_0 +28740,2,49.0,0.0,2,111,385.0,,,0,68,0.0,0.0,,462.0,106.69037035553211,,50,0,0,0,0,0,0,0,0,1,7.0,2,,2,128762,2,1,0,0,1,,180.0,377.0,12,1.0,0.0,2.0,1.0,1.0,1,1,162.57559400764632,385.0,26040.17050128399,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017741819316322054,26040.17050128399,7,4,7,7_0,7_2,7_0_1 +28741,2,23.0,0.0,6,111,420.0,,,0,54,0.0,0.0,,504.0,116.38949493330776,,33,0,0,0,0,0,0,0,0,0,,1,,4,128763,2,1,0,0,2,,189.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,84.75096443705554,420.0,13819.209737227446,0,1,0,1,59.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03647097117588996,9212.806491484964,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28742,0,34.0,0.0,2,111,270.0,,,53,45,0.0,0.0,,342.0,99.7624242285495,,20,0,0,0,0,0,0,0,0,2,45.0,1,,2,128764,2,2,0,0,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,68.92383720764691,270.0,68780.95319893255,1,1,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0049723067810771154,28658.73049955523,8,4,8,8_1,8_2,8_0_1 +28743,1,43.0,118.0,2,111,756.0,1176.0,0.0,85,64,0.0,0.0,1289.1316107892783,1932.0,0.0,2232.640760377192,43,0,0,0,0,0,0,0,0,2,60.0,2,,2,128765,1,3,0,0,2,,0.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1299.25681739583,756.0,20754.514355263473,6,1,1,2,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0930881815362754,9883.102073934986,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28744,2,37.0,0.0,9,120,1200.0,0.0,0.0,33,33,0.0,231.75727347678918,2046.2406520464733,1375.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,128766,2,1,1,0,1,,360.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1523.86624316015,1200.0,58961.50399739953,1,1,1,2,146.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023320300650075745,32756.391109666405,8,4,8,8_1,8_0,8_0_0 +28745,2,59.0,0.0,1,111,811.0,0.0,0.0,54,37,0.0,0.0,1382.9176406747415,811.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,2,,1,128767,2,1,0,0,1,,278.0,507.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1867.26860620198,811.0,64665.41311264201,1,1,2,3,70.0,6,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012541480228190956,43110.27540842801,9,5,9,9_0,9_2,9_1_0 +28746,2,44.0,0.0,7,111,900.0,,,69,55,0.0,0.0,,1152.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,128768,2,1,0,0,2,,600.0,,43,2.0,0.0,3.0,4.0,2.3,2,2,100.7469656446396,900.0,21149.60857876396,4,4,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05446909316121849,9195.48199076694,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +28747,2,76.0,0.0,2,111,1600.0,,,0,86,0.0,0.0,,1864.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,128769,2,3,0,0,2,,800.0,,11,0.0,8.0,3.0,1.0,1.0,1,1,89.6972956834616,1600.0,3927.077945321832,0,5,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.47465317112447625,3927.077945321832,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +28748,2,63.0,0.0,1,212,1000.0,0.0,0.0,72,72,0.0,397.2981831030672,1705.2005433720612,1390.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128770,2,1,1,0,1,,800.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,706.858972610993,1000.0,29624.388241622662,5,5,0,1,120.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.046920800141520946,19749.592161081775,5,3,5,5_1,5_0,5_1_0 +28749,2,48.0,0.0,1,112,300.0,650.0,0.0,0,63,0.0,0.0,511.56016301161833,950.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,0,,1,,1,128771,2,3,1,0,1,,180.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,1750.14714033972,300.0,21731.868031223716,0,1,1,2,70.0,9,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0437146037623212,21731.868031223716,6,3,6,6_1,6_2,6_1_0 +28750,2,28.0,0.0,9,112,1229.0,0.0,0.0,43,53,0.0,662.163638505112,2095.691467804263,1729.0,0.0,0.0,43,2,2,2,2,1,2,2,2,2,25.0,1,2010.0,6,128772,2,1,1,0,1,,340.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,139.901878562838,1229.0,38519.66095261392,1,1,1,2,122.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04488616870555999,25679.77396840928,7,4,7,7_1,7_0,7_0_0 +28751,2,48.0,0.0,6,111,327.0,,,85,63,0.0,0.0,,407.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,4,128773,1,1,0,0,2,,300.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,104.80962791711065,327.0,24416.17086059975,6,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016669280466773514,16277.447240399832,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28752,2,53.0,0.0,7,111,1200.0,100.0,0.0,0,64,0.0,0.0,2046.2406520464733,1300.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,128774,2,1,2,0,1,,225.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,1464.83822830167,1200.0,26416.978334136107,0,1,0,1,83.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04921077587136965,17611.31888942407,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28753,2,46.0,0.0,1,300,1500.0,0.0,0.0,56,47,3164.0485531098047,331.081819252556,2557.8008150580918,4900.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,128775,2,1,3,0,1,,500.0,,43,2.0,0.0,9.0,5.0,2.6,3,2,718.682529917266,1500.0,66106.88968664096,1,1,1,2,225.0,0,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07412238003068844,25425.726802554214,7,4,7,7_1,7_0,7_1_0 +28754,2,80.0,0.0,2,211,396.0,,,86,75,0.0,0.0,,720.0,448.9309090284728,,71,0,0,0,0,0,0,0,0,0,,1,,2,128776,1,1,0,0,2,,540.0,,41,1.0,5.0,6.0,3.0,2.0,3,3,121.48225024678992,396.0,31861.12026999128,5,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022598075456817485,15930.56013499564,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28755,2,22.0,0.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,3041.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,128777,1,1,0,0,1,,93.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2472.09296562224,0.0,14135.069086405929,0,1,2,3,25.0,9,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2151386725746258,14135.069086405929,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +28756,1,36.0,168.0,2,111,600.0,,,81,47,0.0,0.0,,726.0,174.58424239996165,,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,128778,1,1,0,0,2,,180.0,443.0,43,2.0,0.0,4.0,5.0,2.4,2,2,77.27984322840818,600.0,31102.61698437503,4,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023342087270814525,12959.423743489595,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28757,2,32.0,0.0,7,112,1279.0,0.0,0.0,54,48,0.0,1297.8407314700194,2180.9514949728664,2347.0,121.93185183489385,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,128779,2,1,4,0,1,,938.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,561.007374789927,1279.0,53327.30348207424,1,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044011225896485366,25393.95403908297,7,4,7,7_1,7_0,7_0_0 +28758,2,70.0,0.0,6,111,960.0,,,77,78,0.0,0.0,,1260.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,4,128780,2,1,0,0,2,,0.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,26.47093681881638,960.0,26601.719386094584,5,5,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04736535942329483,17734.479590729723,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28759,1,53.0,243.0,9,300,300.0,400.0,0.0,0,11,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,128781,2,1,1,0,1,,110.0,246.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1951.77348398208,300.0,6527.416727273139,0,1,2,3,40.0,0,0,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.10723997398162573,6527.416727273139,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +28760,2,66.0,0.0,5,111,120.0,,,0,75,0.0,0.0,,240.0,166.2707070475825,,60,0,0,0,0,0,0,0,0,0,,2,,3,128782,2,1,0,0,2,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,101.24512528309506,120.0,39552.27157281129,0,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006067919501366361,39552.27157281129,9,5,9,9_0,9_3,9_0_0 +28761,1,81.0,75.0,2,111,373.0,0.0,0.0,0,78,0.0,0.0,636.0398026777788,373.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128783,2,1,0,1,1,665.0,0.0,355.0,11,0.0,2.0,2.0,1.0,1.0,1,1,440.0535008756,373.0,12478.424538310033,0,5,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02989159399528779,12478.424538310033,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28762,2,80.0,0.0,8,111,280.0,,,0,75,0.0,0.0,,415.0,187.05454542853033,,71,0,0,0,0,0,0,0,0,0,,8,2001.0,6,128784,2,1,0,0,2,,182.0,400.0,11,0.0,0.0,2.0,1.0,1.0,1,1,185.4124630216456,280.0,17147.82722513089,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024201316852073208,17147.82722513089,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +28763,2,74.0,0.0,6,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,181.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,128785,1,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,934.073473707384,0.0,55137.44929784772,0,5,0,1,54.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0032827053537107546,55137.44929784772,10,5,10,10_0,10_4,10_0_0 +28764,2,67.0,0.0,2,111,1840.0,1100.0,0.0,71,71,0.0,0.0,3137.5689998045927,2940.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,2,128786,2,1,2,0,1,,340.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1039.592434774,1840.0,57869.60620259533,5,5,0,1,130.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.050803870855926914,38579.73746839689,9,5,9,9_1,9_2,9_0_1 +28765,2,60.0,0.0,5,111,420.0,,,56,81,0.0,0.0,,504.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,3,128787,2,1,0,0,2,,360.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,95.64957034683432,420.0,14640.348837209303,4,4,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0344254092306226,7320.174418604652,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +28766,2,62.0,0.0,1,111,339.0,1069.0,0.0,0,77,0.0,0.0,578.0629842031287,1408.0,0.0,2029.5008272476343,50,0,0,0,0,0,0,0,0,0,,2,,1,128788,2,2,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2051.00558248904,339.0,26353.95909336781,0,5,0,1,93.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.053426507759676035,26353.95909336781,7,4,7,7_0,7_3,7_1_0 +28767,2,43.0,0.0,9,400,0.0,0.0,0.0,43,31,0.0,0.0,0.0,1221.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,2.0,1,2012.0,6,128789,2,1,1,0,1,,391.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,1402.97688673996,0.0,9873.241410726383,1,1,1,2,210.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1236675929622762,4113.85058780266,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +28768,2,77.0,0.0,2,111,400.0,1320.0,0.0,77,74,0.0,0.0,682.0802173488245,1720.0,0.0,2506.0253432805216,60,0,0,0,0,0,0,0,0,0,,1,,2,128790,2,1,1,0,1,,210.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,2190.62923971879,400.0,51693.21323350045,5,5,0,1,140.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03327322664642042,34462.14215566697,9,5,9,9_1,9_3,9_0_1 +28769,1,60.0,250.0,9,400,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1546.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,128791,2,1,1,0,1,,267.0,232.0,11,0.0,8.0,2.0,1.0,1.0,1,1,2058.34017852372,0.0,6672.884688090737,0,6,2,3,50.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.2316839076747699,6672.884688090737,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +28770,2,31.0,0.0,7,111,380.0,,,0,53,0.0,0.0,,504.0,171.8130639491686,,71,0,0,0,0,0,0,0,0,0,,1,,5,128792,2,3,0,0,2,,400.0,300.0,32,2.0,0.0,2.0,3.0,1.8,2,2,128.85032063064062,380.0,13479.0,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037391497885599825,7488.333333333333,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28771,2,46.0,0.0,1,120,1130.0,0.0,0.0,52,64,0.0,662.163638505112,1926.8766140104292,1690.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,128793,2,1,1,0,1,,200.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,4,2,563.361120863268,1130.0,39710.09980499393,1,1,0,1,125.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04255844251963996,15273.115309613053,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +28772,1,48.0,270.0,5,111,360.0,1000.0,0.0,0,67,0.0,0.0,613.872195613942,1360.0,0.0,1898.504047939789,71,2,2,1,2,1,2,2,2,0,,2,,3,128794,2,3,0,0,1,,240.0,291.0,22,2.0,3.0,2.0,2.0,1.5,2,2,365.683291235073,360.0,12522.967680286883,0,4,2,3,45.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.10860045595588763,8348.645120191255,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +28773,2,67.0,0.0,5,111,561.0,806.0,0.0,77,75,0.0,0.0,956.6175048317264,1367.0,0.0,1530.19426263947,31,2,2,1,2,1,2,2,2,0,,1,,3,128795,2,2,2,0,1,,241.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1072.44762231386,561.0,48500.00320926876,5,5,0,1,98.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.028185565145256625,32333.33547284584,8,4,8,8_1,8_3,8_0_0 +28774,2,77.0,0.0,7,120,174.0,,,0,75,0.0,0.0,,306.0,182.89777775234077,,70,0,0,0,0,0,0,0,0,0,,1,,5,128796,2,1,0,0,2,,120.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,118.96131279135167,174.0,10976.55534643049,0,5,0,1,40.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027877598239370183,10976.55534643049,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +28775,2,56.0,0.0,1,111,110.0,0.0,0.0,0,63,0.0,0.0,187.57205977092673,210.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,128797,2,2,3,0,1,,61.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1348.45356349813,110.0,20685.582552793494,0,1,1,2,70.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.010151998352671023,20685.582552793494,5,3,5,5_1,5_3,5_1_0 +28776,2,48.0,0.0,6,111,1755.0,0.0,0.0,43,38,0.0,165.540909626278,2992.6269536179675,1880.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,4,128798,2,1,1,0,1,,328.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,373.876806100668,1755.0,96707.58809629075,1,1,1,2,112.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01944004640182013,53726.43783127264,10,5,10,10_1,10_3,10_0_0 +28777,1,31.0,155.0,2,111,0.0,0.0,518.0,0,53,0.0,0.0,326.5048744348373,518.0,0.0,619.9072524385048,50,2,2,2,1,2,2,2,2,1,20.0,2,,2,128799,2,2,0,0,1,,0.0,317.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1659.31168175924,0.0,16522.732210067545,0,1,2,3,84.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.03135074716543399,16522.732210067545,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +28778,2,27.0,0.0,9,111,0.0,0.0,0.0,63,43,0.0,0.0,0.0,1343.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,128800,1,3,0,0,1,,0.0,570.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1490.80014784917,0.0,18580.74493765641,1,1,2,3,42.0,7,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0722791257565905,12387.163291770941,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +28779,2,42.0,0.0,9,112,1200.0,0.0,0.0,56,65,0.0,529.7309108040896,2046.2406520464733,1660.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,40.0,1,2006.0,6,128801,2,1,1,0,1,,560.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,909.389615984915,1200.0,32066.44188715206,1,1,1,2,83.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0517675146448071,12333.246879673872,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +28780,0,73.0,0.0,2,111,960.0,,,0,77,0.0,33.1081819252556,,1128.0,198.1392592317025,,71,0,0,0,0,0,0,0,0,0,,1,,2,128802,2,2,0,0,2,,186.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,93.426414726828,960.0,14341.531270628662,0,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07865268908279932,14341.531270628662,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28781,2,51.0,0.0,6,111,500.0,,,22,22,0.0,0.0,,550.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,2,15.0,8,,4,128803,2,1,0,0,2,,444.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,61.25823047011009,500.0,69202.23172771878,1,1,0,1,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007947720561441067,46134.821151812524,10,5,10,10_0,10_2,10_0_0 +28782,2,47.0,0.0,5,111,1500.0,,,54,67,0.0,0.0,,1584.0,116.38949493330776,,60,0,0,0,0,0,0,0,0,2,5.0,2,,3,128804,2,3,0,0,2,,220.0,550.0,43,2.0,4.0,4.0,4.0,2.1,2,2,77.51550132117286,1500.0,66310.56703922617,1,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023887595457643743,31576.460494869603,8,4,8,8_0,8_3,8_0_0 +28783,2,83.0,0.0,1,120,421.0,0.0,0.0,0,86,2721.081755674432,0.0,717.8894287596378,3181.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128805,2,2,3,0,2,,127.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1665.55433368469,421.0,15841.76674793411,0,5,0,1,123.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.20079831060603306,15841.76674793411,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +28784,2,35.0,0.0,2,111,395.0,72.0,0.0,65,46,0.0,0.0,673.5542146319642,467.0,0.0,136.6922914516648,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,128806,1,3,0,1,1,,0.0,674.0,43,2.0,0.0,4.0,5.0,2.4,2,2,176.162515171569,395.0,35792.65878900356,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013047368253723431,14913.607828751483,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +28785,2,53.0,0.0,2,112,1190.0,0.0,0.0,43,38,0.0,0.0,2029.1886466127528,1256.0,91.44888887617039,0.0,12,0,0,0,0,0,0,0,0,3,5.0,1,,2,128807,2,1,2,0,1,,360.0,,43,2.0,1.0,7.0,3.0,2.0,3,2,1851.16178506761,1190.0,72933.58710014283,1,1,0,1,115.0,9,2,5,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.017221146661488426,36466.793550071416,9,5,9,9_1,9_1,9_0_1 +28786,1,74.0,183.0,2,111,400.0,1200.0,0.0,86,78,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,2,,2,128808,2,3,0,0,1,,0.0,351.0,41,0.0,0.0,3.0,2.0,1.5,2,2,1037.3774547276,400.0,14535.342280269271,6,5,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11007652720857425,9690.228186846181,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +28787,2,70.0,0.0,6,111,1800.0,,,0,72,0.0,0.0,,1800.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,,4,128809,2,1,0,0,2,,298.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,30.206112371355037,1800.0,21787.553093189686,0,5,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08261597767776138,14525.03539545979,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +28788,2,78.0,0.0,5,111,670.0,0.0,0.0,74,74,0.0,0.0,1142.484364059281,670.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,128810,2,1,0,1,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1843.55816274692,670.0,88587.40789398279,5,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007563151647938771,59058.27192932186,10,5,10,10_0,10_3,10_0_0 +28789,2,34.0,0.0,5,111,170.0,255.0,0.0,85,53,0.0,0.0,289.8840923732504,425.0,0.0,484.1185322246462,31,2,2,2,1,2,2,2,2,1,10.0,2,,3,128811,2,3,0,0,1,,100.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,1323.73083539497,170.0,21028.811699204023,6,1,1,2,45.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.020210366904188266,14019.207799469348,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +28790,2,43.0,0.0,2,111,170.0,60.0,0.0,0,63,0.0,0.0,289.8840923732504,230.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,128812,2,3,0,1,1,545.0,0.0,306.0,12,1.0,0.0,2.0,1.0,1.0,1,1,293.619955447169,170.0,21548.74711938414,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01067347436608525,21548.74711938414,6,3,6,6_0,6_4,6_0_1 +28791,2,58.0,0.0,2,111,1033.0,0.0,0.0,77,31,2904.5965717548006,0.0,1761.4721613033391,3787.0,0.0,0.0,10,2,2,2,2,2,2,2,1,2,15.0,1,,2,128813,2,1,1,0,1,,530.0,,42,1.0,6.0,7.0,2.0,1.5,2,2,1291.23242653687,1033.0,314080.1234373861,6,1,1,2,280.0,8,6,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.012057432856794463,209386.7489582574,10,5,10,10_1,10_2,10_0_1 +28792,2,52.0,0.0,7,111,1000.0,0.0,0.0,0,48,0.0,317.83854648245375,1705.2005433720612,1300.0,83.13535352379125,0.0,60,2,2,2,1,1,1,2,2,2,5.0,2,,5,128814,1,3,0,0,1,,0.0,461.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1481.35974874256,1000.0,28008.06392263496,0,1,2,3,67.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.04641520397807268,28008.06392263496,7,4,7,7_0,7_2,7_0_0 +28793,1,29.0,304.0,2,111,1050.0,0.0,0.0,46,53,0.0,0.0,1790.4605705406643,1147.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,20.0,2,,2,128815,2,3,0,1,1,,0.0,307.0,43,2.0,4.0,3.0,4.0,2.1,2,2,247.683736642291,1050.0,17422.168556829565,4,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06583566197621082,8296.27074134741,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +28794,2,88.0,0.0,2,111,230.0,190.0,0.0,0,78,0.0,0.0,392.1961249755741,420.0,0.0,360.7157691085599,70,0,0,0,0,0,0,0,0,0,,2,,2,128816,2,2,0,1,1,780.0,150.0,197.0,11,0.0,0.0,3.0,1.0,1.0,1,1,384.978274675783,230.0,23349.225934798415,0,5,2,3,55.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017987748337903352,23349.225934798415,6,3,6,6_0,6_2,6_0_1 +28795,2,62.0,0.0,2,111,367.2,267.2,0.0,0,43,0.0,0.0,626.1496395262209,634.0,0.0,507.2802816095116,33,0,0,0,0,0,0,0,0,0,,2,,2,128817,2,1,0,1,1,,300.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1659.62773729441,367.2,37604.45982311299,0,1,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01685970235930159,37604.45982311299,9,5,9,9_0,9_3,9_0_1 +28796,2,61.0,0.0,1,111,365.0,1397.0,0.0,78,75,0.0,0.0,622.3981983308023,5403.0,108.07595958092864,2652.210154971885,70,0,0,0,0,0,0,0,0,0,,1,,1,128818,2,1,2,0,1,,178.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,172.859084220073,365.0,31580.47650173041,5,5,0,1,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17108671554414165,21053.651001153605,5,3,5,5_1,5_3,5_1_0 +28797,2,92.0,0.0,2,111,400.0,0.0,0.0,72,72,0.0,0.0,682.0802173488245,400.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,128819,2,1,0,1,1,,209.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,390.183383036256,400.0,56425.937964911725,5,5,0,1,110.0,8,6,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007088938428435849,37617.29197660782,9,5,9,9_0,9_2,9_0_1 +28798,1,41.0,460.0,2,111,0.0,0.0,0.0,67,67,0.0,529.7309108040896,0.0,1153.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,128820,2,3,4,0,1,,280.0,700.0,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,782.422075704665,0.0,43920.51870150254,1,1,2,3,120.0,4,4,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.026251966827535566,16266.858778334274,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +28799,2,46.0,0.0,7,111,858.0,0.0,0.0,0,45,0.0,0.0,1463.0620662132285,858.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,45.0,2,,5,128821,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,816.206728460418,858.0,31438.02962976408,0,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027291786734232385,31438.02962976408,8,4,8,8_0,8_4,8_0_0 +28800,0,51.0,0.0,6,111,500.0,,,0,35,0.0,0.0,,542.0,58.19474746665388,,60,0,0,0,0,0,0,0,0,0,,1,,4,128822,2,2,0,0,2,,175.0,,12,1.0,4.0,8.0,1.0,1.0,1,1,78.32043950332108,500.0,4834.111497810751,0,1,5,0,193.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11211987978462193,4834.111497810751,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +28801,2,52.0,0.0,9,111,380.0,,,0,12,0.0,0.0,,446.0,91.44888887617039,,44,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,128823,2,1,0,0,1,,180.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,238.8659852569326,380.0,9843.0,0,1,1,2,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04531138880422635,9843.0,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +28802,2,64.0,0.0,6,111,588.0,,,77,75,0.0,0.0,,726.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,0,,1,,4,128824,2,2,0,0,2,,216.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,84.45406376536668,588.0,43026.0,6,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016873518337749267,28684.0,8,4,8,8_1,8_2,8_0_0 +28803,2,64.0,0.0,8,111,341.0,,,75,74,0.0,0.0,,510.0,234.16457909201205,,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128825,2,2,0,0,2,,482.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,74.95249752963274,341.0,51590.64395960279,5,5,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009885513357796952,34393.76263973519,9,5,9,9_1,9_2,9_0_0 +28804,2,57.0,0.0,8,111,0.0,0.0,0.0,33,45,0.0,0.0,0.0,2082.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,1.0,1,2001.0,6,128826,1,1,3,0,1,,0.0,750.0,43,2.0,1.0,4.0,3.0,2.0,3,3,1645.31927165886,0.0,66112.27427786622,1,1,2,3,92.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03149188290285507,33056.13713893311,8,4,8,8_1,8_3,8_0_0 +28805,1,22.0,50.0,7,111,450.0,,,0,56,0.0,0.0,,450.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,5,128827,1,1,0,0,2,,120.0,490.0,12,1.0,0.0,1.0,1.0,1.0,1,1,129.49355641140806,450.0,7833.33524452798,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05744679449463752,7833.33524452798,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +28806,2,52.0,0.0,2,112,0.0,0.0,0.0,54,69,0.0,0.0,0.0,2031.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,128828,2,2,2,0,1,,202.0,,43,3.0,2.0,4.0,3.0,2.0,3,3,408.129804107314,0.0,71845.87810505845,1,1,0,1,120.0,9,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028268845110781704,35922.939052529226,9,5,9,9_1,9_0,9_0_1 +28807,2,46.0,0.0,9,111,1937.7,0.0,0.0,62,56,0.0,0.0,3304.167092892043,2080.0,197.44646461900425,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,128829,2,1,2,0,1,,656.0,621.0,43,3.0,1.0,6.0,4.0,2.5,4,3,1463.07918319412,1937.7,41128.00825352332,1,1,2,3,99.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05057380817418534,16451.20330140933,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +28808,2,66.0,0.0,6,211,111.0,446.0,0.0,0,78,0.0,0.0,189.2772603142988,557.0,0.0,846.7328053811459,70,0,0,0,0,0,0,0,0,0,,2,,4,128830,2,1,0,0,1,,175.0,399.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1388.92671709096,111.0,18882.836740653544,0,5,2,3,70.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02949768658438986,18882.836740653544,5,3,5,5_0,5_1,5_0_0 +28809,2,36.0,0.0,9,111,2000.0,0.0,0.0,42,38,0.0,0.0,3410.4010867441225,2120.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,128831,2,1,1,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,352.504513880654,2000.0,77293.07650377689,1,1,1,2,150.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027428071127384965,36806.22690656042,9,5,9,9_1,9_2,9_0_0 +28810,1,25.0,363.0,2,111,0.0,0.0,960.0,63,67,0.0,0.0,605.105558798154,960.0,0.0,1148.8628616620936,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,128832,2,1,0,0,1,,0.0,330.0,42,1.0,0.0,3.0,4.0,2.1,2,2,349.400777489707,0.0,18115.437857110293,4,7,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05299347482364059,8626.39897957633,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28811,2,36.0,0.0,7,211,930.0,,,0,11,0.0,0.0,,1062.0,182.89777775234077,,44,0,0,0,0,0,0,0,0,0,,1,,5,128833,2,1,0,0,2,,400.0,,22,2.0,2.0,5.0,5.0,3.0,5,5,98.75166161099436,930.0,28124.013942165337,0,1,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03776132390575234,9374.671314055113,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28812,2,67.0,0.0,1,111,700.0,0.0,0.0,34,74,147.65559914512423,0.0,1193.6403803604428,840.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,128834,1,2,2,0,1,,520.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1368.87989920764,700.0,191193.68660964275,1,5,0,1,180.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.004393450510293341,127462.45773976184,10,5,10,10_1,10_3,10_1_0 +28813,2,61.0,0.0,2,111,0.0,0.0,120.0,0,37,0.0,0.0,75.63819484976925,120.0,0.0,143.6078577077617,10,0,0,0,0,0,0,0,0,0,,2,,2,128835,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1290.93598178025,0.0,171166.47690639703,0,1,0,1,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0007010718580462599,171166.47690639703,10,5,10,10_0,10_4,10_0_1 +28814,2,61.0,0.0,5,300,1850.0,0.0,0.0,0,21,0.0,0.0,3154.621005238313,1940.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,,3,128836,2,1,1,0,2,,400.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1087.1710337276,1850.0,23704.429860098924,0,1,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08184124281620263,23704.429860098924,6,3,6,6_1,6_0,6_0_0 +28815,2,57.0,0.0,8,111,0.0,,,0,42,0.0,0.0,,1675.0,0.0,,20,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,128837,2,2,0,0,2,,193.0,,32,1.0,0.0,6.0,2.0,1.5,2,1,130.90614522963247,0.0,44510.81444681075,0,1,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03763130423060627,29673.876297873834,8,4,8,8_1,8_2,8_0_0 +28816,1,52.0,254.0,2,111,80.0,856.0,0.0,0,85,0.0,0.0,136.4160434697649,936.0,0.0,1625.1194650364594,71,2,2,2,2,1,2,2,2,0,,2,,2,128838,1,3,0,0,1,,480.0,332.0,11,0.0,4.0,4.0,1.0,1.0,1,1,295.71827790707,80.0,4306.595463224435,0,7,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.2173410546666944,4306.595463224435,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +28817,1,59.0,115.0,2,111,500.0,1200.0,0.0,0,56,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,2,,2,128839,2,1,0,0,1,,0.0,324.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1739.61404531754,500.0,11469.2,0,1,2,3,80.0,6,4,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14822306699682627,11469.2,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28818,2,68.0,0.0,2,111,400.0,0.0,0.0,0,77,0.0,0.0,682.0802173488245,400.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,128840,2,3,0,1,1,,160.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1790.5733315393,400.0,20069.228477621422,0,5,0,1,79.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01993101032488756,20069.228477621422,5,3,5,5_0,5_2,5_0_1 +28819,0,45.0,0.0,5,111,400.0,2200.0,0.0,42,37,0.0,0.0,682.0802173488245,2600.0,0.0,4176.708905467536,12,0,0,0,0,0,0,0,0,2,45.0,1,,3,128841,2,2,2,0,1,,1000.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1057.52619836972,400.0,111601.10922547153,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023297259481060633,48522.221402378935,10,5,10,10_1,10_4,10_0_0 +28820,2,51.0,0.0,9,111,1290.0,0.0,0.0,42,38,0.0,0.0,2199.7087009499587,1410.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,128842,2,1,1,0,1,,390.0,1117.0,43,2.0,1.0,4.0,2.0,1.5,2,2,769.167705156009,1290.0,66068.95948882324,1,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02134133806418621,44045.97299254883,10,5,10,10_1,10_4,10_0_0 +28821,2,81.0,0.0,2,300,1120.0,0.0,0.0,77,78,969.2535401026369,211.89236432163582,1909.8246085767084,2349.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128843,2,1,2,0,1,,78.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,991.002067298306,1120.0,32136.97497514572,5,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07309337614435345,21424.64998343048,6,3,6,6_1,6_0,6_0_1 +28822,2,50.0,0.0,2,111,790.0,1419.0,0.0,90,53,0.0,0.0,1347.1084292639284,2209.0,0.0,2693.9772440265606,60,0,0,0,0,0,0,0,0,0,,1,,2,128844,2,1,2,0,1,,500.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,585.544059934799,790.0,69619.37665894,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0317296721977521,34809.68832947,9,5,9,9_1,9_4,9_0_1 +28823,2,55.0,0.0,8,111,280.0,,,65,43,0.0,0.0,,409.0,178.7410100761512,,60,0,0,0,0,0,0,0,0,2,3.0,1,2000.0,6,128845,2,1,0,0,2,,400.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,114.43141765990208,280.0,56581.04399102793,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0072285693432036216,37720.69599401862,9,5,9,9_1,9_2,9_0_0 +28824,2,83.0,0.0,2,111,300.0,480.0,0.0,0,78,0.0,0.0,511.56016301161833,780.0,0.0,911.2819430110987,50,2,1,2,1,1,2,2,2,0,,2,,2,128846,1,2,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1019.61347259401,300.0,20551.215211355484,0,5,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03795395999595267,20551.215211355484,5,3,5,5_0,5_4,5_0_1 +28825,2,48.0,0.0,9,111,0.0,,,46,22,0.0,0.0,,552.0,0.0,,20,0,0,0,0,0,0,0,0,0,,2,2006.0,6,128847,2,2,0,0,2,,269.0,425.0,43,2.0,0.0,2.0,2.0,1.5,2,2,152.96845343548583,0.0,99867.47271505861,1,1,2,3,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005527325214036043,66578.31514337241,10,5,10,10_0,10_2,10_0_0 +28826,0,75.0,0.0,2,112,1045.0,0.0,0.0,0,77,1687.4925616585624,0.0,1781.934567823804,2705.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128848,2,1,2,0,2,,0.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1057.66603207099,1045.0,16945.26204328386,0,5,0,1,81.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.15963164175865363,16945.26204328386,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +28827,0,33.0,0.0,2,111,255.0,1100.0,0.0,0,43,0.0,0.0,434.8261385598756,1355.0,0.0,2088.354452733768,12,0,0,0,0,0,0,0,0,0,,2,,2,128849,1,2,0,0,2,,480.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1108.09105534616,255.0,6138.99164147091,0,4,5,0,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.22072028748932135,6138.99164147091,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +28828,2,55.0,0.0,7,211,710.0,1180.0,0.0,52,38,0.0,662.163638505112,1210.6923857941633,2390.0,0.0,2240.234776568951,12,0,0,0,0,0,0,0,0,2,70.0,1,,5,128850,2,1,2,0,1,,300.0,,43,2.0,0.0,8.0,4.0,2.5,4,3,2383.22121517342,710.0,89565.51032956962,1,1,0,1,185.0,2,2,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026684378743621732,35826.20413182785,9,5,9,9_1,9_1,9_0_0 +28829,1,27.0,371.0,6,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1939.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,4,128851,1,3,0,0,2,,314.0,393.0,31,0.0,0.0,3.0,2.0,1.3,1,1,243.920649249386,0.0,9382.714821703807,0,6,2,3,60.0,7,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.20665660598729538,7217.4729397721585,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28830,2,62.0,0.0,2,111,378.0,0.0,0.0,78,52,0.0,0.0,644.5658053946391,378.0,0.0,0.0,70,2,2,1,2,1,2,2,2,2,5.0,2,,2,128852,1,2,0,1,1,,0.0,480.0,42,1.0,3.0,3.0,2.0,1.5,2,2,199.530881857857,378.0,32986.18023676742,5,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011459344406863742,21990.78682451161,6,3,6,6_0,6_3,6_0_1 +28831,0,26.0,0.0,7,111,180.0,,,0,85,0.0,0.0,,318.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,128853,2,1,0,0,2,,180.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,77.91173562154486,180.0,6806.587070868183,0,7,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0467194493641347,6806.587070868183,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28832,2,38.0,0.0,1,111,404.0,1188.0,0.0,55,54,0.0,0.0,688.9010195223127,1592.0,0.0,2255.4228089524695,43,2,2,2,2,1,2,2,2,2,10.0,1,,1,128854,2,2,3,0,1,,200.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,98.5410174174967,404.0,43781.71895740525,1,1,1,2,110.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0363622086549146,24323.177198558475,7,4,7,7_1,7_2,7_1_0 +28833,2,35.0,0.0,2,111,600.0,220.0,0.0,81,62,0.0,0.0,1023.1203260232367,820.0,0.0,417.6708905467536,31,2,2,2,2,1,2,2,2,0,,2,,2,128855,1,3,0,1,2,500.0,0.0,276.0,43,2.0,0.0,2.0,2.0,1.5,2,2,770.308112820674,600.0,12335.94256472097,4,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.06647242362696164,8223.96170981398,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +28834,2,45.0,0.0,8,111,840.0,,,46,42,0.0,0.0,,840.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,128856,1,3,0,0,2,,300.0,,43,2.0,0.0,5.0,4.0,2.1,3,2,85.89347803306661,840.0,94984.77179154428,1,1,0,1,115.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008843522852731414,45230.84371025918,10,5,10,10_1,10_2,10_0_0 +28835,2,91.0,0.0,1,300,360.0,0.0,0.0,0,86,1265.6194212439218,0.0,613.872195613942,1660.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,128857,2,2,4,0,2,,170.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1726.32144869794,360.0,10382.301762402805,0,5,0,1,60.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15988747370176817,10382.301762402805,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +28836,1,68.0,54.0,2,111,336.0,,,0,77,0.0,0.0,,528.0,266.03313127613205,,71,0,0,0,0,0,0,0,0,0,,8,,2,128858,2,2,0,0,2,,192.0,341.0,11,0.0,1.0,3.0,1.0,1.0,1,1,137.27117987451842,336.0,13135.0,0,5,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.040197944423296536,13135.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28838,2,61.0,0.0,6,111,395.0,1180.0,0.0,75,54,0.0,0.0,673.5542146319642,1575.0,0.0,2240.234776568951,70,0,0,0,0,0,0,0,0,2,8.0,1,,4,128860,2,1,2,0,1,,233.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1069.94436470861,395.0,70547.50159997333,5,1,0,1,95.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022325383100463978,47031.66773331555,10,5,10,10_1,10_3,10_0_0 +28839,2,54.0,0.0,2,211,240.0,240.0,0.0,78,52,0.0,0.0,409.2481304092947,480.0,0.0,455.6409715055494,50,2,2,2,1,2,2,2,2,1,1.0,2,,2,128861,2,3,0,1,1,760.0,380.0,285.0,42,1.0,3.0,3.0,2.0,1.5,2,2,938.394045488128,240.0,28168.225977592916,7,1,2,3,62.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.017040476754973045,18778.81731839528,5,3,5,5_0,5_1,5_0_1 +28840,0,70.0,0.0,6,300,880.0,0.0,0.0,0,78,0.0,0.0,1500.5764781674138,908.0,38.79649831110259,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,128862,2,1,2,0,1,,430.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1316.8250341337,880.0,24102.66810520395,0,5,0,1,99.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03767217786996602,24102.66810520395,6,3,6,6_1,6_0,6_0_0 +28841,2,84.0,0.0,2,221,520.0,2890.0,0.0,0,74,0.0,0.0,886.7042825534718,3410.0,0.0,5486.67669854599,70,0,0,0,0,0,0,0,0,0,,2,,2,128863,1,1,0,0,2,,365.0,642.0,11,0.0,8.0,5.0,1.0,1.0,1,1,2927.43461921584,520.0,34380.53775082201,0,5,2,3,126.0,1,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09918402163207786,34380.53775082201,9,5,9,9_0,9_1,9_0_1 +28842,1,40.0,491.0,9,111,500.0,0.0,0.0,0,35,0.0,0.0,852.6002716860306,600.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,0,,2,2006.0,6,128864,2,1,0,1,1,744.0,0.0,518.0,32,1.0,0.0,4.0,4.0,2.1,2,1,325.786758868281,500.0,20071.634758223932,0,1,2,3,85.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029892931354490823,9557.921313439967,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28843,2,77.0,0.0,2,112,202.0,0.0,0.0,0,77,0.0,0.0,344.45050976115635,202.0,0.0,0.0,70,2,2,2,1,1,1,2,2,0,,2,,2,128865,1,2,0,1,1,67.0,0.0,263.0,11,0.0,3.0,3.0,1.0,1.0,1,1,861.889270364735,202.0,19000.480570653042,0,5,2,3,66.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010631310047599355,19000.480570653042,5,3,5,5_0,5_2,5_0_1 +28844,2,43.0,0.0,8,112,630.0,0.0,0.0,54,54,1343.6659522206303,0.0,1074.2763423243985,1934.0,41.567676761895626,0.0,30,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,128866,2,1,1,0,1,,661.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1189.95545455875,630.0,48542.26803728622,1,1,1,2,127.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03984156649859167,23115.365732041057,6,3,6,6_1,6_0,6_0_0 +28845,1,56.0,258.0,1,300,300.0,0.0,0.0,0,67,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128867,2,2,0,0,1,,70.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,3009.527240978,300.0,6180.597224784707,0,4,1,2,26.0,0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04853899859336815,6180.597224784707,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +28846,2,42.0,0.0,2,111,400.0,350.0,0.0,52,52,0.0,0.0,682.0802173488245,750.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,128868,2,1,0,1,1,,0.0,504.0,43,2.0,0.0,4.0,5.0,2.4,2,2,165.480073644075,400.0,40990.82234541516,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018296778573506412,17079.509310589652,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +28847,1,23.0,357.0,7,111,423.0,,,0,63,0.0,0.0,,753.0,457.2444443808519,,50,0,0,0,0,0,0,0,0,0,,1,,5,128869,1,2,0,0,2,,588.0,448.0,22,3.0,0.0,4.0,4.0,2.5,4,4,135.8678968483612,423.0,43555.57884021304,0,1,2,3,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017288256063877325,17422.231536085215,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +28848,2,89.0,0.0,2,221,216.0,0.0,0.0,86,75,2847.643697798824,0.0,368.3233173683652,2976.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128870,2,2,2,0,1,,322.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,2446.0656068707,216.0,23484.420639185708,6,5,0,1,79.0,1,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12672230861996642,15656.280426123805,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +28849,2,44.0,0.0,6,211,360.0,,,81,52,0.0,0.0,,404.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,4,128871,1,1,0,0,2,,276.0,,43,2.0,1.0,5.0,5.0,2.5999999999999996,3,2,116.55599163080477,360.0,15772.482095051284,4,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025614231011031392,6066.3392673274175,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28850,2,55.0,0.0,2,111,330.0,0.0,0.0,0,52,4218.731404146406,0.0,562.7161793127802,4345.0,20.783838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128872,2,1,2,0,1,,360.0,,22,1.0,1.0,5.0,2.0,1.5,2,2,977.601111554501,330.0,42544.25955095465,0,1,0,1,100.0,8,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10212893692029251,28362.839700636436,8,4,8,8_1,8_3,8_0_1 +28851,2,42.0,0.0,2,111,223.0,331.0,0.0,56,54,0.0,0.0,380.25972117196966,554.0,0.0,628.4048398680702,41,0,0,0,0,0,0,0,0,2,60.0,2,,2,128873,1,2,0,1,1,1330.0,0.0,456.0,43,2.0,0.0,5.0,4.0,2.1,2,2,169.570518901861,223.0,37429.26004777995,1,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014801254400776205,17823.4571656095,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +28852,2,49.0,0.0,6,111,1200.0,0.0,0.0,47,22,0.0,0.0,2046.2406520464733,3287.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,4,128874,2,1,2,0,1,,256.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1213.07931359647,1200.0,36643.86980395108,4,1,1,2,88.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0897012247228753,24429.246535967384,7,4,7,7_1,7_3,7_0_0 +28853,2,77.0,0.0,6,120,1338.0,0.0,0.0,0,77,0.0,0.0,2281.558327031818,1458.0,166.2707070475825,0.0,60,2,2,2,1,2,2,2,2,0,,1,,4,128875,1,2,2,0,1,,412.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1449.00056084632,1338.0,15304.893221254333,0,5,0,1,130.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.09526365058040619,15304.893221254333,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +28854,2,26.0,0.0,2,111,800.0,820.0,0.0,55,47,0.0,0.0,1364.160434697649,1620.0,0.0,1556.773319310627,50,0,0,0,0,0,0,0,0,2,40.0,2,,2,128876,2,1,0,0,1,,0.0,425.0,43,2.0,0.0,1.0,3.0,1.8,2,2,1205.04689183944,800.0,36195.267086053645,1,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.044757232931821635,20108.48171447425,5,3,5,5_0,5_4,5_0_1 +28855,2,34.0,0.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,603.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,2,128877,1,2,0,0,2,,0.0,600.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1508.56172056448,0.0,12630.217672728679,0,1,3,4,35.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.047742645109118347,12630.217672728679,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +28856,2,49.0,0.0,7,400,1440.0,0.0,0.0,38,46,2109.365702073203,46.35145469535784,2455.488782455768,3475.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,128878,2,1,2,0,1,,380.0,,43,2.0,0.0,8.0,4.0,2.5,4,4,899.322978044492,1440.0,140518.60760284448,1,1,0,1,160.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024729820906150626,56207.44304113779,10,5,10,10_1,10_0,10_0_0 +28857,1,88.0,185.0,1,400,350.0,0.0,0.0,0,71,1054.6828510366015,0.0,596.8201901802214,1420.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128879,1,2,3,0,1,,300.0,370.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2461.52541926895,350.0,12408.782443763263,0,5,2,3,50.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.11443507906077453,12408.782443763263,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +28858,2,34.0,0.0,1,112,1500.0,0.0,0.0,52,21,0.0,119.18945493092015,2557.8008150580918,1590.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,128880,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1052.94365338836,1500.0,62864.10124364453,1,1,1,2,200.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02529265460803429,29935.286306497394,8,4,8,8_1,8_0,8_1_0 +28859,2,45.0,0.0,1,400,480.0,0.0,0.0,22,22,1054.6828510366015,1032.9752760679746,818.4962608185893,2380.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,128881,2,2,1,0,1,,566.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,961.726885777608,480.0,49325.23390973636,1,1,1,2,180.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04825116499914275,20552.180795723485,5,3,5,5_1,5_0,5_1_0 +28860,2,40.0,0.0,9,112,1700.0,0.0,0.0,46,38,0.0,0.0,2898.840923732504,1720.0,27.711784507930417,0.0,12,0,0,0,0,0,0,0,0,2,28.0,1,2004.0,6,128882,2,2,1,0,1,,406.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,857.387537287116,1700.0,62474.18505855571,1,1,1,2,98.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02753137153190363,29749.611932645577,8,4,8,8_1,8_0,8_0_0 +28861,1,80.0,120.0,2,111,0.0,0.0,0.0,56,78,0.0,0.0,0.0,424.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,2,128883,2,1,0,1,1,,149.0,320.0,42,1.0,3.0,2.0,2.0,1.5,2,2,320.701234749827,0.0,12600.905828632882,4,5,2,3,55.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0336483746300643,8400.603885755254,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28862,2,52.0,0.0,6,111,1210.0,0.0,0.0,90,38,0.0,1059.4618216081792,2063.292657480194,2050.0,55.423569015860835,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,128884,2,1,1,0,1,,323.0,,43,4.0,0.0,7.0,4.0,2.5,4,4,1333.95811899636,1210.0,152036.50258695634,1,1,0,1,248.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013483604036652415,60814.601034782536,10,5,10,10_1,10_3,10_0_0 +28863,0,89.0,0.0,2,111,420.0,,,77,71,0.0,0.0,,672.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,128885,2,1,0,0,2,,400.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,124.18572259271954,420.0,19128.16379176894,5,5,5,0,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03513144321198091,12752.109194512626,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +28864,2,25.0,0.0,9,111,0.0,,,0,43,0.0,0.0,,194.0,0.0,,20,0,0,0,0,0,0,0,0,2,15.0,2,2011.0,6,128886,2,1,0,0,2,,136.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,233.8981952365452,0.0,35032.58201816202,0,1,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0055377020140686215,35032.58201816202,9,5,9,9_0,9_2,9_0_0 +28865,2,66.0,0.0,2,111,330.0,96.0,0.0,0,75,0.0,0.0,562.7161793127802,426.0,0.0,182.25638860221974,70,0,0,0,0,0,0,0,0,0,,2,,2,128887,2,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,939.886834324651,330.0,26242.435993264557,0,5,0,1,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016233249082110292,26242.435993264557,7,4,7,7_0,7_4,7_0_1 +28866,0,53.0,0.0,9,112,0.0,0.0,0.0,90,53,0.0,0.0,0.0,942.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,7.0,2,2012.0,6,128888,2,1,0,0,1,,391.0,,43,3.0,5.0,3.0,3.0,2.0,3,3,1473.05182514383,0.0,65604.60240082414,1,1,5,0,64.0,10,2,1,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014358748708583995,32802.30120041207,8,4,8,8_0,8_1,8_0_0 +28867,2,75.0,0.0,2,111,400.0,0.0,0.0,0,77,1898.4291318658827,0.0,682.0802173488245,2235.0,48.49562288887823,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,128889,2,1,3,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,601.098726364209,400.0,17586.85005064725,0,5,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12708358765575223,17586.85005064725,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +28869,1,27.0,464.0,6,111,400.0,0.0,0.0,0,54,0.0,476.7578197236806,682.0802173488245,760.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,90.0,2,,4,128891,1,3,0,1,1,1045.0,0.0,441.0,32,1.0,0.0,3.0,3.0,1.6,1,1,704.945972749783,400.0,10114.845389068469,0,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07513708522142745,6321.778368167793,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +28870,2,44.0,0.0,6,211,969.0,0.0,0.0,85,21,0.0,0.0,1652.3393265275272,1149.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128892,2,1,2,0,1,,500.0,,42,1.0,0.0,4.0,4.0,2.3,3,2,540.47861372984,969.0,53732.407118548115,6,1,1,2,82.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021383743286709594,23361.916138499182,6,3,6,6_1,6_1,6_0_0 +28871,1,34.0,273.0,6,111,600.0,,,85,52,0.0,0.0,,776.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,,4,128893,2,1,0,0,2,,160.0,500.0,42,1.0,1.0,5.0,4.0,2.1,2,2,120.02745462626801,600.0,24578.18065046651,6,1,2,3,110.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03157271935769872,11703.895547841195,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +28873,2,62.0,0.0,1,111,600.0,250.0,0.0,0,78,0.0,0.0,1023.1203260232367,850.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,0,,2,,1,128895,2,1,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,961.640381199187,600.0,18838.916249877526,0,5,0,1,38.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045119368265439684,18838.916249877526,5,3,5,5_0,5_4,5_1_0 +28874,1,38.0,211.0,7,111,560.0,,,0,52,0.0,0.0,,812.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,128896,2,2,0,0,2,,500.0,,22,2.0,4.0,4.0,3.0,2.0,3,3,88.54407738255635,560.0,21475.660153684574,0,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037810246306243835,10737.830076842287,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +28875,2,22.0,0.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,128897,1,3,0,0,2,,0.0,370.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1633.03017508061,0.0,10106.336743569918,0,4,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09498990824848508,6737.557829046612,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +28876,2,52.0,0.0,9,120,473.36,0.0,0.0,21,35,1054.6828510366015,0.0,807.1737292105989,1473.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,128898,1,1,1,0,1,,285.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,1199.05328737834,473.36,31399.950291351102,1,1,1,2,98.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04691090228909463,15699.975145675551,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +28877,1,38.0,312.0,2,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,235.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,100.0,2,,2,128899,2,1,0,1,1,816.0,0.0,364.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,307.25970276174,0.0,28098.537992732578,6,1,2,3,78.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008363424462183069,10406.865923234289,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +28878,2,53.0,0.0,2,111,822.0,,,0,56,0.0,0.0,,1122.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,128900,2,1,0,0,2,,160.0,343.0,22,2.0,1.0,4.0,2.0,1.5,2,2,38.07709657056797,822.0,33431.84112350151,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03356081993376279,22287.89408233434,6,3,6,6_0,6_2,6_0_1 +28879,2,35.0,0.0,9,111,140.0,0.0,0.0,37,33,0.0,0.0,238.72807607208856,140.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,2007.0,6,128901,2,1,1,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,351.256511234229,140.0,69252.17555846041,1,1,1,2,140.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0020215971393103254,32977.22645640972,8,4,8,8_1,8_3,8_0_0 +28880,2,71.0,0.0,5,112,90.0,0.0,0.0,75,74,0.0,0.0,153.4680489034855,96.0,8.313535352379127,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,128902,2,1,2,0,1,,261.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,990.833718687134,90.0,64225.48755003278,5,5,0,1,116.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0014947336900356625,42816.991700021856,9,5,9,9_1,9_0,9_0_0 +28881,2,68.0,0.0,1,111,330.0,1358.0,0.0,78,77,0.0,0.0,562.7161793127802,1688.0,0.0,2578.1684971022332,70,2,2,1,2,1,2,2,2,0,,1,,1,128903,2,2,2,0,1,,292.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,651.992083972204,330.0,32727.269828217846,5,5,0,1,59.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05157778234665288,21818.179885478563,6,3,6,6_1,6_3,6_1_0 +28882,2,50.0,0.0,6,120,150.0,,,0,63,0.0,0.0,,276.0,174.58424239996165,,71,2,2,2,2,1,2,2,2,2,20.0,1,,4,128904,2,1,0,0,2,,120.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,119.49959452885719,150.0,12587.210628972614,0,1,0,1,28.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.021927018474189743,12587.210628972614,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +28883,2,28.0,0.0,1,112,810.0,0.0,0.0,67,65,0.0,139.05436408607352,1381.2124401313695,940.0,34.63973063491302,0.0,50,2,2,1,1,1,2,2,2,2,30.0,1,,1,128905,2,3,4,0,2,,200.0,450.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1230.60910198453,810.0,32211.543254782497,1,1,2,3,40.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.02918208520979313,17895.301808212498,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +28884,2,61.0,0.0,5,111,700.0,,,0,74,0.0,26.486545540204478,,762.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,0,,1,,3,128906,2,1,0,0,2,,210.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,96.15600755490976,700.0,31859.22876744007,0,5,0,1,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02391771645077483,31859.22876744007,8,4,8,8_1,8_3,8_0_0 +28885,2,39.0,0.0,2,111,110.0,55.0,0.0,0,65,0.0,0.0,187.57205977092673,165.0,0.0,104.4177226366884,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,128907,2,1,0,1,1,456.0,0.0,317.0,12,1.0,1.0,3.0,1.0,1.0,1,1,696.380566458436,110.0,27449.345905379596,0,1,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006011072197085136,27449.345905379596,7,4,7,7_0,7_4,7_0_1 +28886,2,46.0,0.0,7,111,232.0,431.0,0.0,55,37,0.0,0.0,395.6065260623182,663.0,0.0,818.2552446620491,10,2,2,1,2,1,2,2,2,2,7.0,2,,5,128908,1,2,0,0,1,,194.0,328.0,43,2.0,0.0,3.0,2.0,1.5,2,2,256.150718661193,232.0,46472.07951492218,4,1,2,3,55.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.014266630779608448,30981.386343281454,8,4,8,8_0,8_2,8_0_0 +28887,0,77.0,0.0,2,111,1813.0,0.0,0.0,78,78,0.0,0.0,3091.528585133547,1813.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128909,2,1,1,0,1,,199.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,606.274348775345,1813.0,44063.73505407217,5,5,0,1,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04114494601456739,29375.823369381444,8,4,8,8_1,8_3,8_0_1 +28888,2,64.0,0.0,2,112,500.0,1250.0,0.0,56,78,0.0,0.0,852.6002716860306,1750.0,0.0,2373.130059924736,50,0,0,0,0,0,0,0,0,0,,1,,2,128910,2,1,2,0,1,,270.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,627.863305107297,500.0,30245.735706584703,4,5,0,1,90.0,9,3,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057859396014592994,20163.8238043898,5,3,5,5_1,5_1,5_0_1 +28889,1,29.0,350.0,5,111,600.0,,,46,55,0.0,0.0,,754.0,213.38074071106422,,50,0,0,0,0,0,0,0,0,0,,1,,3,128911,2,1,0,0,1,,295.0,650.0,43,2.0,0.0,4.0,5.0,2.4000000000000004,2,2,144.41785388417256,600.0,9369.0,4,4,2,3,79.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08047817269719287,3903.7499999999995,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +28890,2,48.0,0.0,5,111,433.0,1546.0,0.0,85,46,0.0,0.0,738.3518352801025,1979.0,0.0,2935.0872581149138,20,0,0,0,0,0,0,0,0,2,5.0,1,,3,128912,2,1,2,0,1,,360.0,,42,1.0,0.0,7.0,3.0,1.8,2,2,1156.66589710673,433.0,63240.5675179009,6,1,1,2,120.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031293204309715016,35133.648621056054,9,5,9,9_1,9_3,9_0_0 +28891,2,51.0,0.0,6,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,362.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,4,128913,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1015.76599927886,0.0,14104.717442269572,0,4,1,2,42.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025665172059040627,14104.717442269572,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +28892,2,36.0,0.0,1,112,720.0,0.0,0.0,63,52,0.0,529.7309108040896,1227.744391227884,1220.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,1,128914,2,1,3,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,747.705513621962,720.0,29736.45449468096,4,1,1,2,110.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04102708344796872,14160.21642603855,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +28893,2,55.0,0.0,1,111,600.0,3500.0,0.0,68,62,0.0,0.0,1023.1203260232367,4100.0,0.0,6644.764167789262,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,128915,2,2,2,0,2,,400.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,288.187721949892,600.0,34174.914793022464,1,1,1,2,200.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11997103796253215,22783.276528681643,6,3,6,6_1,6_2,6_1_0 +28894,2,63.0,0.0,5,400,624.0,,,0,78,0.0,0.0,,762.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,3,128916,1,1,0,0,2,,324.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,116.36039160400408,624.0,9362.354700854701,0,5,0,1,60.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08138978113384618,9362.354700854701,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +28895,2,54.0,0.0,8,211,1200.0,,,0,81,0.0,0.0,,1488.0,399.049696914198,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,128917,2,3,0,0,2,,900.0,,32,4.0,0.0,6.0,6.0,3.5,6,4,75.15530354607722,1200.0,3503.3207311463993,0,4,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4247398723076886,1000.9487803275426,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +28896,2,31.0,0.0,5,111,900.0,,,54,35,0.0,0.0,,1030.0,180.1265993015477,,20,0,0,0,0,0,0,0,0,2,30.0,1,,3,128918,2,2,0,0,2,,800.0,850.0,43,2.0,0.0,4.0,4.0,2.1,2,2,74.89863874749754,900.0,55593.17120564887,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01852745539897067,26472.938669356605,7,4,7,7_1,7_2,7_0_0 +28897,0,44.0,0.0,7,111,2100.0,,,56,63,0.0,0.0,,2238.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,128919,2,2,0,0,2,,1500.0,,43,2.0,0.0,4.0,5.0,2.8,4,2,82.8414841816684,2100.0,29006.122961285353,1,1,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07715612331186322,10359.329629030484,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +28898,2,41.0,0.0,1,400,1445.0,0.0,0.0,55,37,1995.4599541612502,794.5963662061343,2464.0147851726283,3997.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,128920,2,1,1,0,1,,688.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1008.19380446099,1445.0,51141.14016288102,1,1,1,2,90.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07815625516501645,28411.7445349339,8,4,8,8_1,8_0,8_1_0 +28899,2,78.0,0.0,2,120,0.0,0.0,0.0,0,72,0.0,0.0,0.0,960.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,128921,2,1,2,0,1,,231.0,600.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1361.75300006581,0.0,22059.362471599194,0,5,2,3,100.0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043518936743343006,22059.362471599194,6,3,6,6_1,6_0,6_0_1 +28900,2,95.0,0.0,1,211,588.0,,,0,78,0.0,0.0,,726.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,128922,2,1,0,0,2,,588.0,,21,0.0,7.0,4.0,2.0,1.5,2,2,88.14430222728718,588.0,25204.130522361054,0,5,0,1,78.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02880480242537604,16802.753681574035,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +28901,1,41.0,468.0,2,111,720.0,,,81,85,0.0,0.0,,940.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,2,128923,2,2,0,0,2,,751.0,600.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,83.66891644325035,720.0,19162.770148712745,4,6,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.049053450660062545,7370.296211043365,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +28902,2,71.0,0.0,2,111,0.0,0.0,1700.0,0,77,0.0,0.0,1071.5410937050644,1700.0,0.0,2034.4446508599572,71,0,0,0,0,0,0,0,0,0,,1,,2,128924,1,2,4,0,2,,241.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1124.7134634984,0.0,15295.710034858213,0,5,0,1,110.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11114227427989802,15295.710034858213,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28903,2,31.0,0.0,1,111,0.0,0.0,0.0,34,37,0.0,0.0,0.0,1572.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,128925,2,1,2,0,1,,193.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1027.8908221959,0.0,47859.82910967991,1,1,1,2,86.0,8,6,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03284591753132805,31906.552739786606,8,4,8,8_1,8_2,8_1_0 +28904,2,55.0,0.0,6,112,1500.0,0.0,0.0,37,37,1054.6828510366015,0.0,2557.8008150580918,2590.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,128926,2,2,3,0,1,,320.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,913.223063531428,1500.0,40660.076387631525,1,1,0,1,100.0,4,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06369884737323951,27106.71759175435,7,4,7,7_1,7_0,7_0_0 +28905,2,27.0,0.0,5,111,250.0,800.0,0.0,55,65,0.0,0.0,426.3001358430153,1050.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,128927,2,1,0,0,1,,0.0,168.0,43,2.0,0.0,2.0,4.0,2.1,2,2,772.97119570881,250.0,35961.3726208968,4,1,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029197995612377025,17124.463152808,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +28906,2,56.0,0.0,9,112,1185.0,0.0,0.0,0,52,0.0,0.0,2020.6626438958924,1185.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,128928,2,1,1,0,1,,261.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,1179.29645584946,1185.0,28311.40366736926,0,1,1,2,78.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04185592540456727,18874.269111579506,5,3,5,5_1,5_0,5_0_0 +28907,2,31.0,0.0,1,111,400.0,400.0,0.0,85,56,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,50,2,2,2,2,1,2,2,2,3,30.0,2,,1,128929,1,2,0,0,1,,0.0,736.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1141.51143318317,400.0,26845.861224439457,6,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.029799751749879054,17897.24081629297,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +28908,2,53.0,0.0,1,111,309.0,2230.0,0.0,37,37,0.0,0.0,526.9069679019669,2539.0,0.0,4233.66402690573,41,2,2,2,2,1,2,2,1,2,30.0,1,,1,128930,1,1,2,0,1,,370.0,,43,2.0,0.0,8.0,2.0,1.5,2,2,420.636025339957,309.0,54011.64830883071,4,1,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.047008378368354344,36007.76553922047,9,5,9,9_1,9_3,9_1_0 +28909,2,87.0,0.0,7,111,734.0,0.0,0.0,0,86,0.0,0.0,1251.617198835093,734.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,128931,1,1,0,0,1,,197.0,369.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1014.53498173088,734.0,12843.716516555576,0,6,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05714856747685707,12843.716516555576,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +28910,1,26.0,243.0,6,111,300.0,700.0,0.0,42,42,0.0,0.0,511.56016301161833,1000.0,0.0,1328.9528335578523,10,2,2,2,2,1,2,2,2,1,15.0,2,,4,128932,2,3,0,0,1,,290.0,516.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1337.19319886143,300.0,11883.338972941081,3,1,2,3,45.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.0841514327140753,7922.225981960721,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +28911,2,63.0,0.0,2,111,800.0,,,85,78,0.0,0.0,,1040.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,128933,1,1,0,0,2,,2000.0,,41,2.0,6.0,9.0,8.0,3.8999999999999995,5,5,119.43569709150005,800.0,53261.00720148888,6,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019526480152086335,13656.66851320228,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28912,2,52.0,0.0,6,111,2015.0,0.0,0.0,52,33,0.0,463.51454695357836,3435.9790948947034,2480.0,159.34276092059991,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,128934,2,1,2,0,1,,422.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,611.96299356447,2015.0,65606.4205768559,1,1,0,1,99.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037801178271793634,32803.21028842795,8,4,8,8_1,8_4,8_0_0 +28913,2,25.0,0.0,9,111,530.0,505.0,0.0,54,55,0.0,0.0,903.7562879871924,1035.0,0.0,958.7445442095934,42,0,0,0,0,0,0,0,0,2,50.0,2,2008.0,6,128935,2,1,0,1,1,,253.0,457.0,42,1.0,0.0,2.0,2.0,1.5,2,2,546.92382529625,530.0,27017.050107519197,3,1,2,3,53.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03830914166724464,18011.366738346132,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +28914,2,88.0,0.0,7,111,600.0,0.0,0.0,0,74,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,128936,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,999.498577471613,600.0,50012.19330709803,0,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011997074319770823,50012.19330709803,10,5,10,10_0,10_4,10_0_0 +28915,2,78.0,0.0,2,111,286.0,175.0,0.0,77,78,0.0,0.0,487.6873554044095,461.0,0.0,332.23820838946307,70,0,0,0,0,0,0,0,0,0,,2,,2,128937,1,1,0,1,1,416.0,0.0,213.0,41,1.0,1.0,3.0,3.0,2.0,3,3,967.782581204717,286.0,42659.328897250634,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010806545998657545,21329.664448625317,6,3,6,6_0,6_4,6_0_1 +28916,2,42.0,0.0,5,111,400.0,400.0,0.0,54,56,0.0,0.0,682.0802173488245,800.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,3,30.0,2,,3,128938,2,2,0,1,1,60.0,0.0,460.0,43,2.0,0.0,3.0,2.0,1.5,2,2,223.514914245375,400.0,41434.550504881685,4,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019307558311891102,27623.033669921122,7,4,7,7_0,7_4,7_0_0 +28917,2,70.0,0.0,2,111,450.0,90.0,0.0,74,74,0.0,0.0,767.3402445174275,540.0,0.0,170.865364314581,10,0,0,0,0,0,0,0,0,0,,2,,2,128939,1,2,0,1,2,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,746.370065285761,450.0,118118.53119413942,5,5,0,1,114.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0045716789274365165,78745.68746275961,10,5,10,10_0,10_4,10_0_1 +28918,2,44.0,0.0,9,300,650.0,900.0,0.0,46,34,0.0,0.0,1108.3803531918397,1550.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,128940,2,1,1,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,2014.62123159007,650.0,63655.3078343057,1,1,1,2,130.0,0,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02434989402666371,27676.22079752422,7,4,7,7_1,7_1,7_0_0 +28919,2,44.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,941.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,128941,2,1,0,1,1,756.0,0.0,403.0,32,1.0,0.0,4.0,3.0,1.8,1,1,890.961445366544,0.0,52500.80441750575,0,1,2,3,87.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01792353489513839,29167.11356528097,8,4,8,8_0,8_4,8_0_1 +28920,2,83.0,0.0,8,211,850.0,,,75,77,0.0,0.0,,850.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,2003.0,6,128942,2,1,0,0,2,,350.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,110.89029367078567,850.0,51304.85110757155,5,5,0,1,144.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01656763408625422,34203.23407171437,9,5,9,9_1,9_2,9_0_0 +28921,2,24.0,0.0,9,112,0.0,0.0,0.0,55,63,0.0,0.0,0.0,538.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,2008.0,6,128943,2,1,0,1,1,516.0,0.0,620.0,43,2.0,0.0,2.0,2.0,1.5,2,2,833.345543321101,0.0,30705.959733256284,1,1,2,3,42.0,10,5,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017521028643091578,20470.639822170855,5,3,5,5_0,5_2,5_0_0 +28922,2,34.0,0.0,9,111,1200.0,0.0,0.0,48,22,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,43,2,2,1,2,2,2,2,1,0,,2,2011.0,6,128944,2,1,0,0,1,,0.0,1110.0,43,2.0,0.0,3.0,4.0,2.1,2,2,5818.17696947979,1200.0,55152.04522186142,1,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.021758032638186525,26262.878677076867,7,4,7,7_0,7_4,7_0_0 +28923,2,57.0,0.0,6,112,1600.0,0.0,0.0,77,75,0.0,529.7309108040896,2728.320869395298,2150.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,128945,1,2,3,0,1,,400.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,377.195619723968,1600.0,38370.65068317603,6,5,0,1,100.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056032409190879,19185.325341588014,5,3,5,5_1,5_0,5_0_0 +28924,2,80.0,0.0,1,111,2300.0,0.0,0.0,71,71,0.0,0.0,3921.9612497557405,2370.0,96.99124577775646,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,128946,2,1,3,0,1,,0.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1231.4951310101,2300.0,23567.83220578626,5,5,0,1,180.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10056079741683366,15711.888137190841,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +28925,2,51.0,0.0,2,111,1500.0,0.0,0.0,31,46,4218.731404146406,0.0,2557.8008150580918,5500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,2,128947,1,1,1,0,1,,1000.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,1216.1878119098,1500.0,320965.52965129074,1,1,0,1,130.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017135796501186313,139550.2302831699,10,5,10,10_1,10_2,10_0_1 +28926,1,59.0,238.0,2,111,300.0,,,0,77,0.0,0.0,,740.0,609.6592591744692,,41,0,0,0,0,0,0,0,0,0,,1,,2,128948,2,3,0,0,2,,0.0,408.0,11,0.0,2.0,2.0,1.0,1.0,1,1,157.4672694060057,300.0,12402.303797468354,0,7,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.05966633393959064,12402.303797468354,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +28927,0,86.0,0.0,2,400,788.0,0.0,0.0,71,71,0.0,0.0,1343.6980281771841,916.0,177.35542085075468,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,128949,2,3,1,0,2,,293.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1133.94619004355,788.0,14772.795168562174,5,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06200586886558407,9848.530112374783,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +28928,1,27.0,426.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,433.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128950,2,2,0,1,1,600.0,0.0,379.0,32,1.0,0.0,5.0,4.0,1.9,1,1,525.643841166354,0.0,8785.786069671749,0,4,2,3,91.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.049284150167815045,4624.097931406184,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +28929,2,30.0,0.0,6,111,1700.0,0.0,0.0,64,55,0.0,0.0,2898.840923732504,1805.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,128951,2,2,5,0,1,,367.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,574.119261544014,1700.0,40227.57890833527,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044869714981181696,22348.65494907515,6,3,6,6_1,6_4,6_0_0 +28931,1,61.0,32.0,5,111,280.0,0.0,0.0,0,75,0.0,0.0,477.4561521441771,280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,128953,2,1,0,0,1,1014.0,100.0,364.0,11,0.0,2.0,3.0,1.0,1.0,1,1,380.835640174342,280.0,13899.06193496356,0,6,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020145244428017874,13899.06193496356,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +28932,2,79.0,0.0,6,111,324.0,1506.0,0.0,0,75,0.0,0.0,552.4849760525478,1830.0,0.0,2859.1470961973223,70,0,0,0,0,0,0,0,0,0,,1,,4,128954,2,2,1,0,1,,229.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,390.39243583002,324.0,42576.50968153681,0,5,0,1,100.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042981447133360835,28384.339787691206,8,4,8,8_1,8_2,8_0_0 +28933,2,44.0,0.0,7,111,350.0,0.0,0.0,0,38,0.0,0.0,596.8201901802214,530.0,249.40606057137379,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,,5,128955,2,1,0,0,1,,0.0,627.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1987.57702613808,350.0,49319.170944152225,0,1,2,3,60.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01074632825033005,49319.170944152225,10,5,10,10_0,10_2,10_0_0 +28934,1,54.0,270.0,2,111,0.0,0.0,0.0,0,22,0.0,0.0,0.0,593.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,128956,2,2,0,1,1,67.0,476.0,284.0,22,2.0,2.0,3.0,3.0,1.8,2,2,606.78939452171,0.0,11916.450746359058,0,4,2,3,65.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.04976313942984951,6620.2504146439205,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +28935,2,59.0,0.0,1,111,288.0,1900.0,0.0,0,54,0.0,0.0,491.09775649115363,2188.0,0.0,3607.1576910855993,44,0,0,0,0,0,0,0,0,3,30.0,1,,1,128957,2,2,2,0,1,,134.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1083.65254123614,288.0,30378.60632290216,0,1,0,1,120.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07202437059630633,30378.60632290216,8,4,8,8_1,8_3,8_1_0 +28936,2,48.0,0.0,2,111,390.0,960.0,0.0,54,52,0.0,0.0,665.0282119151038,1350.0,0.0,1822.5638860221975,33,0,0,0,0,0,0,0,0,1,15.0,2,,2,128958,1,1,0,0,2,,372.0,380.0,43,2.0,0.0,3.0,4.0,2.1,2,2,298.245671749072,390.0,43727.40253564685,1,1,2,3,69.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030873089223616052,20822.57263602231,5,3,5,5_0,5_3,5_0_1 +28937,2,53.0,0.0,6,111,0.0,,,0,52,0.0,0.0,,982.0,0.0,,50,0,0,0,0,0,0,0,0,3,60.0,1,,4,128959,2,2,0,0,2,,811.0,680.0,32,1.0,1.0,3.0,2.0,1.5,2,1,222.72824333113044,0.0,30725.9483367414,0,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031959957402705984,20483.9655578276,5,3,5,5_1,5_2,5_0_0 +28938,2,50.0,0.0,1,300,808.0,0.0,0.0,54,37,2320.3022722805235,1589.1927324122687,1377.8020390446254,4328.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,128960,2,1,1,0,2,,0.0,,43,3.0,0.0,9.0,5.0,3.0,5,4,1152.69884178847,808.0,46909.38863345298,1,1,0,1,440.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09226298031335944,15636.462877817661,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +28939,2,47.0,0.0,6,111,580.0,2125.0,0.0,54,38,0.0,0.0,989.0163151557955,2705.0,0.0,4034.3211018720517,42,0,0,0,0,0,0,0,0,2,40.0,1,,4,128961,2,1,2,0,1,,780.0,,43,2.0,0.0,4.0,4.0,2.3,4,3,787.882002872043,580.0,81359.66595187734,1,1,1,2,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03324743247593906,35373.76780516406,9,5,9,9_1,9_4,9_0_0 +28940,2,51.0,0.0,7,111,520.0,0.0,0.0,0,42,0.0,0.0,886.7042825534718,520.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,5,128962,2,2,0,0,1,,0.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,849.790190174467,520.0,27120.68334890782,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019173558177358423,27120.68334890782,7,4,7,7_0,7_4,7_0_0 +28941,2,61.0,0.0,5,111,280.0,0.0,0.0,0,45,0.0,0.0,477.4561521441771,280.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,128963,1,2,0,0,1,69.0,100.0,380.0,12,1.0,1.0,3.0,1.0,1.0,1,1,232.876199317051,280.0,21131.869409099858,0,1,2,3,80.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013250129204348845,21131.869409099858,5,3,5,5_0,5_2,5_0_0 +28942,2,62.0,0.0,9,111,1926.0,0.0,0.0,78,75,0.0,132.4327277010224,3284.21624653459,2026.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,128964,2,1,1,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1731.07974525689,1926.0,54469.747330092694,5,5,1,2,110.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03719495865699938,36313.16488672846,9,5,9,9_1,9_3,9_0_0 +28943,2,53.0,0.0,8,111,900.0,,,55,43,0.0,0.0,,1155.0,353.32525247611284,,33,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,128965,2,1,0,0,2,,500.0,,43,4.0,0.0,5.0,5.0,2.8,4,4,88.86819313245049,900.0,90257.57570290541,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012796709760982648,32234.84846532336,8,4,8,8_1,8_2,8_0_0 +28944,2,51.0,0.0,2,111,765.0,1530.0,0.0,56,38,0.0,0.0,1304.4784156796268,2295.0,0.0,2904.7111933478773,41,0,0,0,0,0,0,0,0,0,,1,,2,128966,2,1,1,0,1,,720.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,558.450301999033,765.0,61127.2740682649,1,1,1,2,130.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03754461547617877,29108.22574679281,8,4,8,8_1,8_4,8_0_1 +28946,2,32.0,0.0,7,111,450.0,,,0,34,0.0,0.0,,496.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,2,10.0,2,,5,128968,2,2,0,0,2,,130.0,509.0,12,1.0,0.0,1.0,1.0,1.0,1,1,74.88131121142108,450.0,34692.843689238915,0,1,3,4,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014296896629256428,34692.843689238915,9,5,9,9_0,9_2,9_0_0 +28947,1,41.0,522.0,6,111,672.0,0.0,0.0,0,52,0.0,0.0,1145.894765146025,1053.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,2,,4,128969,2,1,0,1,1,1041.0,0.0,522.0,32,1.0,0.0,4.0,4.0,2.1,2,1,685.236033057203,672.0,24330.045036023534,0,1,2,3,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04327982124327793,11585.735731439778,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +28948,2,70.0,0.0,6,120,160.0,,,75,75,0.0,0.0,,258.0,135.78774408885906,,33,0,0,0,0,0,0,0,0,0,,1,,4,128970,2,1,0,0,1,,557.0,,41,2.0,0.0,6.0,5.0,3.0,5,5,123.25579526095046,160.0,108727.16212406648,5,5,0,1,132.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0023729121128499716,36242.38737468883,9,5,9,9_1,9_1,9_0_0 +28949,2,57.0,0.0,2,111,360.0,1100.0,0.0,0,47,0.0,0.0,613.872195613942,1460.0,0.0,2088.354452733768,12,2,2,2,1,1,2,2,2,3,45.0,2,,2,128971,1,2,0,0,1,,0.0,857.0,32,1.0,2.0,5.0,2.0,1.5,2,2,1012.57395443141,360.0,53531.59446857377,0,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,0,0.02727361317169633,35687.729645715845,9,5,9,9_0,9_4,9_0_1 +28950,1,56.0,280.0,2,111,0.0,0.0,480.0,0,22,0.0,0.0,302.552779399077,480.0,0.0,574.4314308310468,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,128972,2,1,0,1,1,508.0,160.0,280.0,32,2.0,1.0,4.0,2.0,1.5,2,2,280.471161294552,0.0,10758.703632193088,0,1,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.044615040660075815,7172.469088128725,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +28951,0,46.0,0.0,2,400,470.0,,,52,43,0.0,0.0,,746.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,1,3.0,1,,2,128973,2,3,0,0,2,,700.0,,43,4.0,1.0,3.0,6.0,3.3,5,4,108.4997873302584,470.0,67521.71530088354,1,1,5,0,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01104829752437048,20461.125848752592,5,3,5,5_1,5_1,5_0_1 +28952,2,51.0,0.0,9,211,950.0,0.0,0.0,85,53,0.0,1191.8945493092015,1619.9405162034582,1940.0,124.70303028568689,0.0,60,2,1,2,2,1,2,2,2,2,25.0,1,2008.0,6,128974,2,1,1,0,1,,180.0,,42,1.0,3.0,5.0,3.0,2.0,3,2,655.022808564612,950.0,29717.878224433018,6,1,1,2,120.0,1,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.06528056900122159,14858.939112216509,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +28953,2,35.0,0.0,8,111,620.0,820.0,0.0,53,52,0.0,0.0,1057.224336890678,1440.0,0.0,1556.773319310627,50,0,0,0,0,0,0,0,0,2,20.0,2,1999.0,6,128975,2,1,0,0,1,,240.0,1000.0,43,2.0,1.0,4.0,4.0,2.1,2,2,1509.17854759065,620.0,29653.422472112165,1,1,2,3,83.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04856100510334891,14120.677367672459,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +28954,0,79.0,0.0,2,111,216.0,,,0,86,0.0,0.0,,456.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,128976,2,1,0,0,2,,390.0,,21,1.0,4.0,5.0,3.0,2.0,3,3,103.74854930287046,216.0,29818.253064732602,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015292646387099446,14909.126532366301,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +28955,2,31.0,0.0,6,111,180.0,,,0,34,0.0,0.0,,203.0,31.86855218411998,,12,0,0,0,0,0,0,0,0,2,10.0,2,,4,128977,2,1,0,0,2,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,104.55531362236381,180.0,63849.57311641038,0,1,1,2,34.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0031793478028410765,63849.57311641038,10,5,10,10_0,10_3,10_0_0 +28956,2,26.0,0.0,7,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,558.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,6.0,2,,5,128978,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2020.34626793303,0.0,15485.182770709906,0,1,2,3,47.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03603444713971684,15485.182770709906,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +28957,1,48.0,377.0,2,111,0.0,0.0,0.0,68,67,0.0,0.0,0.0,119.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,30.0,2,,2,128979,2,1,0,1,1,586.0,0.0,337.0,43,2.0,1.0,4.0,4.0,2.1,2,2,261.514864575074,0.0,26985.05234542977,4,1,2,3,75.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.004409848773932581,12850.024926395128,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +28958,2,50.0,0.0,7,112,692.0,1554.0,0.0,52,47,0.0,0.0,1179.9987760134663,2246.0,0.0,2950.2752904984322,41,0,0,0,0,0,0,0,0,2,8.0,1,,5,128980,2,2,2,0,1,,286.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,642.480269483498,692.0,59329.68830591248,1,1,0,1,100.0,7,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037856258209537495,25795.51665474456,7,4,7,7_1,7_0,7_0_0 +28959,2,40.0,0.0,7,111,265.0,498.0,0.0,0,37,0.0,0.0,451.8781439935962,763.0,0.0,945.455015874015,31,1,2,2,2,1,2,2,2,3,60.0,2,,5,128981,2,1,0,1,1,,0.0,516.0,32,1.0,0.0,3.0,2.0,1.3,1,1,781.056057411998,265.0,42852.226085978655,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0178053760490556,32963.25083536819,8,4,8,8_0,8_4,8_0_0 +28960,2,72.0,0.0,5,221,0.0,0.0,0.0,0,78,0.0,0.0,0.0,1158.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,128982,2,2,0,0,1,,0.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,3377.17604347541,0.0,15314.792965793102,0,5,0,1,45.0,1,3,2,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07561316712452411,15314.792965793102,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +28961,1,37.0,245.0,8,211,0.0,0.0,1014.0,0,52,0.0,0.0,639.1427464805503,1014.0,0.0,1213.4863976305862,44,0,0,0,0,0,0,0,0,2,40.0,2,2001.0,6,128983,2,2,0,0,1,,422.0,556.0,32,1.0,0.0,4.0,4.0,2.1,2,1,2693.77342602359,0.0,29208.102108439096,0,1,2,3,100.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.034716394657735225,13908.620051637665,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +28962,0,51.0,0.0,6,111,756.0,,,56,65,0.0,0.0,,926.0,235.55016831740858,,71,0,0,0,0,0,0,0,0,0,,1,,4,128984,2,1,0,0,2,,180.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,120.33442976484018,756.0,22919.0,4,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04040315895108862,15279.333333333334,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +28963,2,55.0,0.0,5,111,500.0,800.0,0.0,56,52,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,3,50.0,2,,3,128985,2,1,0,0,1,,0.0,450.0,43,2.0,1.0,3.0,2.0,1.5,2,2,700.893118087362,500.0,38664.51010815079,1,1,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03362256488867163,25776.340072100527,7,4,7,7_0,7_4,7_0_0 +28964,2,60.0,0.0,1,112,720.0,0.0,0.0,55,74,1476.555991451242,264.8654554020448,1227.744391227884,2410.0,124.70303028568689,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,128986,1,1,1,0,2,,200.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1044.46925600167,720.0,55097.35225485284,4,5,0,1,160.0,4,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0.043740758881707115,36731.5681699019,9,5,9,9_1,9_0,9_1_0 +28965,1,68.0,40.0,7,221,244.0,601.0,0.0,0,77,0.0,0.0,416.0689325827829,845.0,0.0,1141.0009328118133,71,0,0,0,0,0,0,0,0,0,,1,,5,128987,2,1,2,0,1,,227.0,445.0,11,0.0,6.0,3.0,1.0,1.0,1,1,1817.23162137146,244.0,14719.008966876507,0,5,2,3,74.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0574087563844535,14719.008966876507,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +28966,2,30.0,0.0,9,112,1200.0,0.0,0.0,43,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,128988,2,1,1,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,756.194541850857,1200.0,59449.40809906309,1,1,1,2,80.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02018523040633792,39632.938732708724,9,5,9,9_1,9_0,9_0_0 +28967,2,58.0,0.0,6,111,288.0,0.0,0.0,0,77,0.0,0.0,491.09775649115363,852.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,128989,2,1,0,1,1,,0.0,465.0,11,0.0,0.0,2.0,1.0,1.0,1,1,873.867233826597,288.0,22252.443160023624,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03828793062734849,22252.443160023624,6,3,6,6_0,6_4,6_0_0 +28968,1,42.0,350.0,8,111,600.0,,,0,52,0.0,0.0,,840.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,128990,2,1,0,0,2,,600.0,490.0,32,3.0,0.0,4.0,5.0,2.8,4,3,133.82332620963882,600.0,12403.727848101265,0,4,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06772157614926913,4429.902802893309,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28969,2,66.0,0.0,1,111,634.0,2289.0,0.0,0,78,0.0,0.0,1081.0971444978868,2923.0,0.0,4345.675765734177,70,0,0,0,0,0,0,0,0,0,,1,,1,128991,2,2,2,0,1,,532.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,1142.79831015875,634.0,32609.91216767722,0,5,0,1,90.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0896353226887027,21739.941445118147,6,3,6,6_1,6_2,6_1_0 +28970,2,53.0,0.0,1,112,1788.0,0.0,0.0,43,35,0.0,490.00109249378283,3048.8985715492454,2248.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,128992,2,1,1,0,1,,467.0,,43,2.0,1.0,4.0,4.0,2.1,2,2,791.558389873171,1788.0,66928.03566051781,1,1,1,2,175.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0335883158352747,31870.493171675145,8,4,8,8_1,8_0,8_1_0 +28971,2,70.0,0.0,2,221,760.0,0.0,0.0,77,72,1898.4291318658827,158.91927324122688,1295.9524129627664,2680.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,128993,2,1,1,0,1,,255.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1447.13125367678,760.0,51222.66684648373,5,5,0,1,120.0,1,1,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05232058705635264,34148.44456432248,9,5,9,9_1,9_1,9_0_1 +28972,2,82.0,0.0,1,120,50.0,0.0,0.0,0,71,3164.0485531098047,0.0,85.26002716860306,3120.0,96.99124577775646,0.0,71,2,2,2,2,1,1,2,2,0,,1,,1,128994,2,1,2,0,2,,80.0,,11,0.0,4.0,8.0,1.0,1.0,1,1,1534.51007557832,50.0,23421.122106544888,0,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.1332130879898421,23421.122106544888,6,3,6,6_1,6_0,6_1_0 +28973,2,61.0,0.0,1,112,1180.0,0.0,0.0,85,78,0.0,688.6501840453165,2012.1366411790323,1830.0,180.1265993015477,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,128995,2,3,4,0,2,,380.0,,41,0.0,1.0,5.0,4.0,2.5,4,4,907.138000363186,1180.0,35704.21530138576,6,5,0,1,70.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05125445229793283,14281.686120554305,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +28974,1,36.0,407.0,7,111,672.0,,,0,42,0.0,0.0,,804.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,,5,128996,2,3,0,0,1,,480.0,394.0,32,1.0,0.0,3.0,3.0,1.8,2,1,132.74539358565,672.0,13190.017112210684,0,4,2,3,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0609551900623158,7327.787284561491,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +28975,2,27.0,0.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1347.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,128997,2,1,0,0,1,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1453.0595407998,0.0,14842.24302798394,0,1,2,3,48.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09075447676340646,14842.24302798394,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +28976,1,40.0,253.0,7,111,234.0,,,0,52,0.0,0.0,,234.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,5,128998,1,1,0,0,2,,90.0,427.0,12,1.0,0.0,2.0,1.0,1.0,1,1,148.26801036044222,234.0,17166.389225000436,0,4,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013631288265281313,17166.389225000436,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +28977,2,55.0,0.0,7,111,0.0,0.0,0.0,54,48,0.0,0.0,0.0,1468.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,,5,128999,2,2,2,0,1,,329.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,703.832704366453,0.0,95363.75282661841,1,1,0,1,128.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015393689494046887,47681.876413309205,10,5,10,10_1,10_4,10_0_0 +28978,0,46.0,0.0,1,111,267.0,549.0,0.0,0,35,0.0,0.0,455.2885450803403,816.0,0.0,1042.2787223189441,41,0,0,0,0,0,0,0,0,2,20.0,2,,1,129000,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1044.21390598729,267.0,41897.97678180925,0,1,5,0,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019475880762678758,41897.97678180925,9,5,9,9_0,9_4,9_1_0 +28979,2,50.0,0.0,8,111,400.0,0.0,0.0,0,11,1054.6828510366015,0.0,682.0802173488245,1460.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,129001,2,1,2,0,1,,145.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1025.00834720596,400.0,30536.48187682305,0,1,0,1,140.0,6,4,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047811663632022015,30536.48187682305,8,4,8,8_1,8_2,8_0_0 +28980,2,48.0,0.0,7,300,1237.0,,,52,21,0.0,0.0,,1397.0,221.69427606344334,,50,0,0,0,0,0,0,0,0,0,,1,,5,129002,2,2,0,0,2,,440.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,118.71726007588985,1237.0,46581.871165285986,1,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02999020788673428,20252.98746316782,5,3,5,5_1,5_1,5_0_0 +28981,2,98.0,0.0,1,111,276.0,120.0,0.0,0,77,3237.876352682367,0.0,470.6353499706889,3466.0,0.0,227.8204857527747,70,0,0,0,0,0,0,0,0,0,,1,,1,129003,1,2,3,0,2,,140.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1259.30069518351,276.0,35508.78320988745,0,5,0,1,80.0,9,7,5,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0976096527868319,35508.78320988745,9,5,9,9_1,9_3,9_1_0 +28982,1,45.0,261.0,9,111,1232.0,,,0,52,0.0,0.0,,1295.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,2,20.0,2,2011.0,6,129004,2,2,0,0,2,,260.0,545.0,32,1.0,0.0,4.0,3.0,1.6,1,1,190.07517895255006,1232.0,25887.089001120014,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05002493713928095,16179.430625700008,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +28983,2,78.0,0.0,5,111,400.0,0.0,0.0,72,72,1371.087706347582,0.0,682.0802173488245,1748.0,66.50828281903301,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,129005,2,1,2,0,2,,180.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1330.59894251086,400.0,18268.17293308809,5,5,0,1,187.0,8,7,7,1,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09568554044252275,12178.781955392062,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +28984,2,69.0,0.0,1,112,1200.0,0.0,0.0,0,31,2636.7071275915036,0.0,2046.2406520464733,3700.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,129006,2,1,2,0,1,,600.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,1093.95631996222,1200.0,50892.037519836194,0,1,0,1,300.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07270292525737156,50892.037519836194,10,5,10,10_1,10_1,10_1_0 +28985,1,31.0,199.0,2,111,0.0,0.0,1200.0,67,45,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,31,0,0,0,0,0,0,0,0,2,20.0,2,,2,129007,2,1,0,0,1,,0.0,579.0,43,2.0,0.0,5.0,5.0,2.4,2,2,1577.67030242708,0.0,28784.069883240118,4,1,2,3,105.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0416897264656349,11993.362451350049,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +28986,2,65.0,0.0,1,111,350.0,0.0,0.0,0,75,0.0,0.0,596.8201901802214,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,129008,2,2,0,0,1,,0.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,1657.19586714158,350.0,12461.367486466366,0,5,1,2,17.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028086805110283164,12461.367486466366,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +28987,2,64.0,0.0,6,111,1614.0,0.0,0.0,54,77,0.0,0.0,2752.193677002507,1794.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129009,2,1,2,0,1,,221.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,883.081376283644,1614.0,41989.90958462452,1,5,0,1,117.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042724550201387206,27993.273056416347,7,4,7,7_1,7_2,7_0_0 +28988,2,63.0,0.0,2,111,1013.0,0.0,0.0,85,34,5958.958108356798,0.0,1727.3681504358979,6663.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,2,129010,2,2,2,0,2,,2000.0,,42,4.0,0.0,6.0,5.0,3.0,5,5,655.61082092159,1013.0,97187.85727119692,6,1,0,1,260.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06855794733088205,32395.952423732306,8,4,8,8_1,8_4,8_0_1 +28989,2,87.0,0.0,2,111,0.0,0.0,684.0,77,75,0.0,0.0,431.1377106436847,684.0,0.0,818.5647889342417,70,2,1,2,1,2,2,2,2,0,,2,,2,129011,2,2,0,1,1,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,921.670894056837,0.0,59426.8265366711,5,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011509953330217244,39617.884357780735,9,5,9,9_0,9_4,9_0_1 +28990,2,36.0,0.0,1,111,0.0,0.0,2160.0,63,43,0.0,0.0,1361.4875072958466,2160.0,0.0,2584.9414387397105,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,129012,2,1,1,0,1,,380.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1205.64019996767,0.0,55821.19071380066,1,1,1,2,160.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.038694982539417305,23258.829464083607,6,3,6,6_1,6_2,6_1_0 +28991,1,30.0,270.0,5,111,600.0,0.0,0.0,0,65,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,2,,3,129013,2,2,0,0,2,,240.0,449.0,32,1.0,0.0,3.0,2.0,1.3,1,1,885.777681577099,600.0,11039.91373408353,0,1,2,3,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.05434825076101997,8492.241333910408,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +28992,2,50.0,0.0,9,111,400.0,1080.0,0.0,0,52,0.0,0.0,682.0802173488245,1480.0,0.0,2050.384371774972,42,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,129014,2,1,1,0,1,,200.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1453.06173659425,400.0,20388.86182510039,0,1,1,2,91.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07258865221098298,20388.86182510039,5,3,5,5_1,5_3,5_0_0 +28993,2,47.0,0.0,7,212,2093.0,0.0,0.0,56,38,0.0,132.4327277010224,3568.984737277724,2257.0,88.67771042537734,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,129015,2,1,1,0,1,,322.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,874.923932281374,2093.0,67316.85027520068,1,1,0,1,120.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03352800956629832,37398.25015288926,9,5,9,9_1,9_0,9_0_0 +28994,2,64.0,0.0,7,112,600.0,0.0,0.0,77,75,0.0,0.0,1023.1203260232367,750.0,207.83838380947813,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,129016,2,1,1,0,1,,550.0,,41,2.0,2.0,5.0,4.0,2.5,4,4,3261.21033100084,600.0,51140.30072057014,6,5,0,1,107.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014665537539522676,20456.120288228056,5,3,5,5_1,5_1,5_0_0 +28995,2,85.0,0.0,1,111,450.0,0.0,0.0,0,86,0.0,0.0,767.3402445174275,1250.0,1108.4713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129017,2,3,2,0,2,,150.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,479.546505143659,450.0,18544.9167663776,0,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06740391535573141,18544.9167663776,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +28996,2,66.0,0.0,6,112,0.0,0.0,0.0,77,78,0.0,0.0,0.0,1253.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129018,1,2,3,0,1,,368.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,437.912241702517,0.0,47376.38700130799,5,5,1,2,120.0,9,1,3,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026447774499254378,31584.258000871992,8,4,8,8_1,8_1,8_0_0 +28997,2,42.0,0.0,2,300,1000.0,0.0,0.0,54,43,2109.365702073203,0.0,1705.2005433720612,3100.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,,2,129019,1,2,2,0,2,,368.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,279.38268688375,1000.0,41289.86482173904,1,1,1,2,140.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0750789573514868,19661.840391304304,5,3,5,5_1,5_0,5_0_1 +28998,2,73.0,0.0,7,111,550.0,,,0,75,0.0,0.0,,575.0,34.63973063491302,,60,0,0,0,0,0,0,0,0,0,,1,,5,129020,2,1,0,0,2,,600.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,135.25844679362305,550.0,27409.937118643044,0,5,0,1,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02097779347362713,27409.937118643044,7,4,7,7_1,7_3,7_0_0 +28999,2,62.0,0.0,2,111,220.0,950.0,0.0,0,77,0.0,331.081819252556,375.14411954185346,1420.0,0.0,1803.5788455427996,50,0,0,0,0,0,0,0,0,0,,1,,2,129021,2,1,2,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,841.140218690829,220.0,26738.987352322038,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05310597522971213,26738.987352322038,7,4,7,7_1,7_4,7_0_1 +29000,2,66.0,0.0,5,111,360.0,1100.0,0.0,86,77,0.0,0.0,613.872195613942,1460.0,0.0,2088.354452733768,50,2,2,2,2,1,2,2,2,0,,1,,3,129022,1,1,2,0,1,,210.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,239.294490109748,360.0,26662.91490520412,6,5,0,1,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.054757703919125295,17775.276603469414,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +29001,2,72.0,0.0,2,112,2400.0,0.0,0.0,0,78,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129023,1,1,3,0,1,,300.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1346.46857257391,2400.0,64347.3895572568,0,5,0,1,110.0,9,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03729755032042849,64347.3895572568,10,5,10,10_1,10_0,10_0_1 +29002,2,25.0,0.0,6,111,1644.0,0.0,0.0,37,34,0.0,0.0,2803.3496933036686,1689.0,62.351515142843446,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,4,129024,2,2,1,0,1,,261.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,337.562355683899,1644.0,49700.83107208325,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03398333515893066,33133.887381388835,8,4,8,8_1,8_3,8_0_0 +29003,2,61.0,0.0,5,111,1100.0,0.0,0.0,0,75,0.0,0.0,1875.7205977092674,1170.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,129025,2,1,3,0,1,,400.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,2506.40443020199,1100.0,33478.798181427184,0,5,0,1,85.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03494749105566977,22319.198787618123,6,3,6,6_1,6_3,6_0_0 +29004,2,89.0,0.0,1,212,584.0,0.0,0.0,0,75,2335.067832195036,0.0,995.8371173292837,2860.0,85.9065319745843,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,129026,2,1,2,0,1,,167.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,960.422865378835,584.0,34771.27827028747,0,5,0,1,140.0,1,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08225179349946157,34771.27827028747,9,5,9,9_1,9_0,9_1_0 +29005,2,31.0,0.0,2,400,0.0,0.0,0.0,42,63,0.0,0.0,0.0,1335.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,129027,2,1,1,0,1,,284.0,680.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1846.06638040306,0.0,41195.550430860654,1,1,2,3,84.0,0,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032406412489634245,22886.416906033697,6,3,6,6_1,6_0,6_0_1 +29006,2,68.0,0.0,2,111,952.0,786.0,0.0,77,42,0.0,397.2981831030672,1623.3509172902022,2038.0,0.0,1492.224181680674,12,0,0,0,0,0,0,0,0,0,,1,,2,129028,2,2,2,0,1,,245.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,459.360287996568,952.0,61905.07254791302,5,5,0,1,125.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.032921373259398694,41270.04836527535,9,5,9,9_1,9_2,9_0_1 +29007,2,72.0,0.0,6,111,300.0,,,0,86,0.0,0.0,,434.0,185.6689562031338,,71,0,0,0,0,0,0,0,0,0,,1,,4,129029,2,2,0,0,2,,320.0,90.0,21,1.0,5.0,5.0,2.0,1.5,2,2,147.44935533476843,300.0,9443.747522886593,0,5,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04595633237210293,6295.8316819243955,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29008,1,65.0,340.0,2,111,370.0,110.0,0.0,74,75,0.0,0.0,630.9242010476627,480.0,0.0,208.8354452733768,31,2,1,2,1,2,2,2,2,0,,2,,2,129030,2,1,0,1,1,564.0,0.0,333.0,41,0.0,2.0,3.0,2.0,1.5,2,2,209.663361429173,370.0,4670.1531626510705,6,5,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.10278035500821177,3113.4354417673803,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +29009,2,33.0,0.0,2,111,336.0,1000.0,0.0,37,37,0.0,0.0,572.9473825730125,1336.0,0.0,1898.504047939789,12,0,0,0,0,0,0,0,0,3,45.0,2,,2,129031,2,2,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1100.73079904343,336.0,73319.45861781327,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018221629362596154,34914.02791324441,9,5,9,9_0,9_4,9_0_1 +29010,2,82.0,0.0,5,221,130.0,0.0,0.0,0,75,0.0,0.0,221.67607063836795,145.0,20.783838380947813,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,129032,2,1,2,0,1,,410.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1010.80494668602,130.0,26624.383161346905,0,5,0,1,156.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.005446135563828198,26624.383161346905,7,4,7,7_1,7_1,7_0_0 +29011,2,50.0,0.0,7,111,1925.0,0.0,0.0,0,55,0.0,0.0,3282.5110459912175,2029.0,144.10127944123818,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,5,129033,2,1,1,0,1,,336.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,422.920150486877,1925.0,26477.014531641566,0,1,1,2,120.0,4,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07663250694579736,26477.014531641566,7,4,7,7_1,7_2,7_0_0 +29013,2,56.0,0.0,7,112,360.0,,,67,67,0.0,0.0,,620.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,129035,1,2,0,0,2,,400.0,,43,2.0,0.0,4.0,5.0,2.8,4,4,90.79655391926796,360.0,30532.641118002575,1,1,0,1,54.0,8,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02030613721242861,10904.51468500092,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +29014,1,51.0,280.0,7,111,324.0,,,0,81,0.0,0.0,,396.0,99.7624242285495,,50,0,0,0,0,0,0,0,0,0,,2,,5,129036,2,2,0,0,2,,187.0,399.0,12,1.0,5.0,4.0,1.0,1.0,1,1,88.08459419462226,324.0,9512.555921591102,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04162919022648581,9512.555921591102,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29015,2,47.0,0.0,7,111,316.0,770.0,0.0,0,52,0.0,0.0,538.8433717055714,1086.0,0.0,1461.8481169136376,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,129037,2,1,2,0,1,,223.0,486.0,12,1.0,0.0,3.0,1.0,1.0,1,1,990.956689266062,316.0,24071.74410998467,0,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045115135614520775,24071.74410998467,6,3,6,6_1,6_3,6_0_0 +29016,2,59.0,0.0,2,111,389.0,1106.0,0.0,85,62,0.0,0.0,663.3230113717318,1495.0,0.0,2099.7454770214067,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,129038,2,1,2,0,1,,120.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,413.633398973313,389.0,23635.7236415486,6,1,0,1,66.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06325171264788271,15757.149094365734,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +29017,2,58.0,0.0,6,400,1147.0,0.0,0.0,77,11,2958.3853971576673,0.0,1955.8650232477542,3982.0,41.567676761895626,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,129039,2,1,2,0,1,,329.0,,42,1.0,3.0,10.0,2.0,1.5,2,2,1450.14385429389,1147.0,144992.9597347391,5,1,0,1,261.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027463402411296155,96661.97315649274,10,5,10,10_1,10_0,10_0_0 +29018,0,90.0,0.0,9,111,420.0,,,0,77,0.0,0.0,,508.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129040,1,1,0,0,2,,430.0,,11,0.0,6.0,5.0,1.0,1.0,1,1,122.38374177063714,420.0,56740.52735897925,0,5,5,0,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008953036280153792,56740.52735897925,10,5,10,10_1,10_3,10_0_0 +29019,0,43.0,0.0,2,221,1200.0,,,0,22,0.0,185.40581878143135,,1466.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,129041,2,1,0,0,2,,700.0,,32,2.0,0.0,4.0,4.0,2.5,4,3,97.36850774900509,1200.0,4850.027841995743,0,1,0,1,120.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.3022663060418132,1940.0111367982972,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +29020,2,65.0,0.0,6,111,340.0,0.0,0.0,0,77,2109.365702073203,0.0,579.7681847465008,2460.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129042,2,1,2,0,1,,157.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1377.53988987577,340.0,19888.98666115603,0,5,0,1,200.0,6,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12368654280433887,19888.98666115603,5,3,5,5_1,5_2,5_0_0 +29021,1,52.0,160.0,5,111,660.0,0.0,0.0,85,68,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,129043,2,1,0,1,1,,0.0,360.0,42,1.0,3.0,3.0,2.0,1.5,2,2,167.18361870894,660.0,12736.761673411824,6,4,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.051818509046750845,8491.174448941216,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +29022,2,48.0,0.0,5,111,1260.0,0.0,0.0,0,52,0.0,0.0,2148.552684648797,1260.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,129044,1,3,3,0,2,,360.0,407.0,32,1.0,0.0,4.0,2.0,1.5,2,2,422.661125618164,1260.0,17773.246069904086,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07089307125126636,11848.83071326939,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +29024,2,63.0,0.0,2,111,310.0,0.0,0.0,0,75,0.0,0.0,528.612168445339,310.0,0.0,0.0,50,2,1,2,2,2,2,2,1,0,,2,,2,129046,2,1,0,1,1,631.0,0.0,284.0,11,0.0,0.0,3.0,1.0,1.0,1,1,338.305630648591,310.0,20090.15865869294,0,5,2,3,48.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015430440608584447,20090.15865869294,5,3,5,5_0,5_2,5_0_1 +29025,2,41.0,0.0,9,120,1595.0,0.0,0.0,55,63,0.0,0.0,2719.7948666784378,1595.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,13.0,1,2010.0,6,129047,2,1,1,0,1,,530.0,,43,2.0,3.0,6.0,3.0,1.8,2,2,939.09972479139,1595.0,46896.10207800989,1,1,1,2,113.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034011355514084685,26053.390043338826,7,4,7,7_1,7_0,7_0_0 +29026,2,42.0,0.0,6,400,600.0,,,0,81,0.0,0.0,,720.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,4,129048,2,2,0,0,2,,500.0,,32,4.0,0.0,4.0,10.0,4.699999999999999,6,6,157.70387774392498,600.0,50908.70913637051,0,4,0,1,50.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014142963202451606,10831.640241780962,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +29027,2,44.0,0.0,2,111,900.0,0.0,0.0,68,63,0.0,0.0,1534.680489034855,1080.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129049,2,1,1,0,1,,380.0,532.0,43,2.0,0.0,4.0,4.0,2.3,3,3,904.119557001272,900.0,30797.44395963368,1,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03506784528662703,13390.193025927689,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +29028,1,35.0,259.0,9,111,420.0,,,85,68,0.0,0.0,,660.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,2006.0,6,129050,2,1,0,0,2,,460.0,378.0,42,1.0,0.0,4.0,4.0,2.3,3,2,139.07043141196607,420.0,25063.10561074475,6,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02633352826463185,10897.00243945424,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +29029,2,78.0,0.0,2,111,400.0,900.0,0.0,0,77,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,71,2,2,2,2,2,2,2,1,0,,1,,2,129051,2,2,3,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,289.952675445004,400.0,16550.33560340283,0,5,0,1,90.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.07854825612918168,16550.33560340283,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +29030,2,40.0,0.0,1,111,1570.0,0.0,0.0,56,64,0.0,0.0,2677.164853094136,1570.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129052,2,1,3,0,1,,396.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,788.928137823429,1570.0,49596.149906364466,1,1,1,2,100.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03165568301096147,20665.062460985195,5,3,5,5_1,5_3,5_1_0 +29031,2,57.0,0.0,7,111,1000.0,0.0,0.0,0,68,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,20.0,2,,5,129053,2,1,0,0,1,,0.0,299.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1094.80613314845,1000.0,14990.541823072906,0,1,2,3,50.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06670872953109912,14990.541823072906,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +29032,2,57.0,0.0,1,111,1200.0,0.0,0.0,62,69,0.0,0.0,2046.2406520464733,1326.0,174.58424239996165,0.0,70,2,2,2,1,1,2,2,2,0,,5,,1,129054,1,2,4,0,1,,225.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,1071.45025485339,1200.0,18016.183415272844,4,4,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,1,0,0,0.07360049403559642,12010.78894351523,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +29033,2,74.0,0.0,2,112,258.0,0.0,0.0,77,78,0.0,0.0,439.9417401899918,303.0,62.351515142843446,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,129055,1,3,0,1,1,756.0,0.0,338.0,41,0.0,2.0,4.0,2.0,1.5,2,2,3126.00010971144,258.0,27483.688944431415,5,5,2,3,79.0,7,2,2,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01102472090310104,18322.45929628761,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +29034,2,73.0,0.0,1,111,281.0,0.0,0.0,77,75,0.0,0.0,479.1613526875492,281.0,0.0,0.0,60,2,1,2,2,1,2,2,2,0,,2,,1,129056,2,1,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,630.641927752964,281.0,45808.61573522532,5,5,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.006134217231627024,30539.077156816882,8,4,8,8_0,8_4,8_1_0 +29035,2,39.0,0.0,1,111,876.0,60.0,0.0,0,56,0.0,0.0,1493.7556759939255,936.0,0.0,113.91024287638734,50,2,2,2,1,2,2,2,2,3,25.0,2,,1,129057,2,3,0,0,1,,0.0,890.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1357.38274959013,876.0,23395.92971551558,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.040006958961723536,23395.92971551558,6,3,6,6_0,6_4,6_1_0 +29036,2,71.0,0.0,2,111,390.0,,,78,77,0.0,0.0,,432.0,58.19474746665388,,70,0,0,0,0,0,0,0,0,0,,2,,2,129058,2,2,0,0,2,,0.0,409.0,41,0.0,2.0,4.0,2.0,1.5,2,2,85.34939104260977,390.0,22677.96909457801,5,5,2,3,55.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019049324840260288,15118.646063052007,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +29037,2,46.0,0.0,5,221,270.0,,,0,47,0.0,0.0,,1307.0,349.1684847999233,,41,0,0,0,0,0,0,0,0,0,,1,,3,129059,2,1,0,0,2,,240.0,,22,2.0,4.0,7.0,4.0,2.3,3,3,64.07015420384268,270.0,22597.15433802589,0,1,0,1,100.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057839141178967615,9824.84971218517,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +29038,2,48.0,0.0,7,111,450.0,,,85,48,0.0,0.0,,720.0,374.10909085706066,,50,0,0,0,0,0,0,0,0,2,45.0,1,,5,129060,2,1,0,0,1,,600.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,131.0720436775199,450.0,54098.672715345514,6,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013309014137712225,22541.113631393964,6,3,6,6_1,6_2,6_0_0 +29039,2,59.0,0.0,2,111,500.0,150.0,0.0,68,53,0.0,0.0,852.6002716860306,650.0,0.0,284.77560719096834,60,0,0,0,0,0,0,0,0,0,,2,,2,129061,2,1,0,1,1,1048.0,0.0,135.0,43,2.0,0.0,3.0,4.0,2.5,4,4,787.869663943085,500.0,44537.11737459242,1,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01459456826837232,17814.846949836967,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +29040,2,54.0,0.0,2,211,1713.0,0.0,0.0,78,34,0.0,0.0,2921.008530796341,1803.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,,2,129062,2,2,2,0,1,,400.0,,42,1.0,2.0,7.0,3.0,2.0,3,3,1139.28720763504,1713.0,82885.88369027426,5,1,1,2,260.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.021752799387859602,41442.94184513713,9,5,9,9_1,9_1,9_0_1 +29041,2,37.0,0.0,7,112,0.0,0.0,1000.0,52,46,0.0,0.0,630.3182904147437,1000.0,0.0,1196.7321475646809,43,0,0,0,0,0,0,0,0,3,30.0,2,,5,129063,1,2,0,0,1,,0.0,490.0,43,2.0,0.0,3.0,3.0,1.8,2,2,661.457111585197,0.0,34468.989369477786,1,1,2,3,66.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0290115845660824,19149.43853859877,5,3,5,5_0,5_1,5_0_0 +29042,2,66.0,0.0,1,111,700.0,1900.0,0.0,74,74,0.0,132.4327277010224,1193.6403803604428,2700.0,0.0,3607.1576910855993,20,0,0,0,0,0,0,0,0,0,,1,,1,129064,2,2,2,0,1,,300.0,,41,0.0,5.0,9.0,2.0,1.5,2,2,1252.18075525709,700.0,90529.58875422564,5,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02982450309511621,60353.05916948376,10,5,10,10_1,10_3,10_1_0 +29043,2,71.0,0.0,2,112,500.0,0.0,0.0,77,75,2636.7071275915036,264.8654554020448,852.6002716860306,3332.0,182.89777775234077,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,129065,1,1,2,0,1,,120.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1752.46027898854,500.0,36421.6351101642,5,5,0,1,107.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09148408603627292,24281.0900734428,7,4,7,7_1,7_0,7_0_1 +29044,2,48.0,0.0,1,211,0.0,0.0,640.0,0,68,0.0,0.0,403.403705865436,640.0,0.0,765.9085744413957,71,0,0,0,0,0,0,0,0,3,20.0,2,,1,129066,2,1,0,0,1,,88.0,221.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1421.56815922732,0.0,14783.0,0,1,2,3,60.0,2,3,5,0,1,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.043292971656632616,14783.0,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +29045,2,31.0,0.0,6,111,600.0,,,55,55,0.0,0.0,,640.0,55.423569015860835,,42,0,0,0,0,0,0,0,0,2,20.0,1,,4,129067,2,1,0,0,2,,300.0,1050.0,43,2.0,0.0,4.0,3.0,1.8,2,2,146.66992669453256,600.0,62920.138847723334,4,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010171624089210945,34955.63269317963,9,5,9,9_1,9_2,9_0_0 +29046,0,30.0,0.0,7,111,240.0,,,62,42,0.0,0.0,,380.0,193.98249155551292,,31,2,2,2,2,1,2,2,2,0,,1,,5,129068,1,3,0,0,2,,240.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,170.30950772295748,240.0,18635.500600459607,4,4,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.020391188202941436,7764.79191685817,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29047,2,83.0,0.0,2,111,280.0,170.0,0.0,0,77,0.0,0.0,477.4561521441771,450.0,0.0,322.74568814976413,70,2,2,2,2,1,2,2,2,0,,2,,2,129069,1,3,0,1,1,770.0,0.0,299.0,21,0.0,0.0,3.0,3.0,2.0,3,3,215.397155515342,280.0,46338.40008451503,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.009711168257412002,23169.200042257515,6,3,6,6_0,6_4,6_0_1 +29048,1,31.0,467.0,7,111,0.0,,,0,81,0.0,0.0,,265.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,129070,2,1,0,0,1,,539.0,600.0,32,1.0,0.0,4.0,4.0,1.9,1,1,99.95590778672522,0.0,16261.26574684098,0,4,2,3,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01629639439669576,8558.560919389989,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29049,2,47.0,0.0,1,120,380.0,0.0,0.0,0,64,0.0,2781.0872817214704,647.9762064813832,2600.0,166.2707070475825,0.0,50,2,2,2,2,1,2,1,2,0,,1,,1,129071,1,3,2,0,2,,230.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,107.726211389374,380.0,25915.78316914701,0,1,0,1,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.1003249634799895,25915.78316914701,7,4,7,7_1,7_0,7_1_0 +29050,2,27.0,0.0,2,111,350.0,0.0,0.0,0,54,0.0,0.0,596.8201901802214,350.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,2,,2,129072,2,1,0,1,1,569.0,0.0,463.0,12,1.0,0.0,2.0,1.0,1.0,1,1,351.80584931358,350.0,28216.738798425602,0,1,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012403984829725568,28216.738798425602,8,4,8,8_0,8_4,8_0_1 +29051,2,43.0,0.0,1,300,1800.0,0.0,0.0,47,55,0.0,0.0,3069.36097806971,1850.0,69.27946126982604,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,1,129073,1,1,1,0,2,,800.0,187.0,43,3.0,0.0,3.0,4.0,2.5,4,3,193.510865419297,1800.0,40293.475629550565,1,1,2,3,60.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045913140306100594,16117.390251820227,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +29052,2,71.0,0.0,2,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,1930.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129074,2,2,1,0,1,,334.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,287.238570766894,0.0,26919.13133691976,5,5,0,1,90.0,6,5,2,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07169622139154962,17946.087557946506,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +29053,2,61.0,0.0,5,111,700.0,,,71,43,0.0,0.0,,850.0,207.83838380947813,,44,0,0,0,0,0,0,0,0,2,45.0,1,,3,129075,2,1,0,0,2,,200.0,,42,3.0,0.0,5.0,4.0,2.5,4,4,125.5630312885297,700.0,41398.342012211695,7,1,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0205322232409517,16559.33680488468,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +29054,2,62.0,0.0,6,111,700.0,,,74,75,0.0,0.0,,703.0,4.156767676189563,,41,0,0,0,0,0,0,0,0,0,,1,,4,129076,2,1,0,0,2,,800.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,49.97923730585862,700.0,57596.521851702164,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012205598140284648,38397.68123446811,9,5,9,9_1,9_2,9_0_0 +29055,1,44.0,232.0,9,111,500.0,0.0,0.0,0,56,0.0,0.0,852.6002716860306,500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,2004.0,6,129077,2,2,0,0,1,,170.0,360.0,32,1.0,0.0,3.0,2.0,1.5,2,1,1501.93088018038,500.0,20734.54720497081,0,1,2,3,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.024114343807813278,13823.03146998054,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +29056,1,48.0,223.0,2,300,500.0,0.0,0.0,0,47,0.0,0.0,852.6002716860306,1147.0,277.1178450793042,0.0,50,1,2,2,1,1,2,2,2,0,,1,,2,129078,1,1,2,0,2,,150.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,839.283728566699,500.0,23912.21947093732,0,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,1,0.047967107419453585,11956.10973546866,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +29057,1,80.0,120.0,2,111,280.0,,,0,77,0.0,0.0,,523.0,336.6981817713546,,71,0,0,0,0,0,0,0,0,0,,2,,2,129079,2,2,0,0,2,,310.0,210.0,11,0.0,0.0,2.0,1.0,1.0,1,1,104.73934016133461,280.0,15631.784025695955,0,5,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.033457473512957844,15631.784025695955,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +29058,2,68.0,0.0,1,111,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129080,2,1,1,0,1,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,224.964901065733,250.0,13937.01226579808,0,5,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017937847454831395,13937.01226579808,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +29059,2,74.0,0.0,1,300,340.0,0.0,0.0,0,77,0.0,662.163638505112,579.7681847465008,840.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129081,2,1,3,0,2,,84.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,254.428694996389,340.0,15503.299725497895,0,5,0,1,60.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05418201382112691,15503.299725497895,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +29060,2,62.0,0.0,6,112,859.0,0.0,0.0,54,64,0.0,701.8934568154186,1464.7672667566005,1389.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,129082,2,1,2,0,1,,537.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1460.07197970373,859.0,51488.0404786636,1,1,0,1,100.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02697713851774171,34325.360319109066,9,5,9,9_1,9_1,9_0_0 +29061,2,97.0,0.0,1,111,349.0,,,0,77,0.0,0.0,,487.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,129083,2,2,0,0,2,,300.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,93.32963377250418,349.0,10560.63829791857,0,7,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04611463684879582,10560.63829791857,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +29062,2,50.0,0.0,2,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,2922.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,7.0,1,,2,129084,2,1,3,0,1,,650.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1440.85308152387,0.0,46714.33208512225,1,1,0,1,100.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06255039662507791,31142.88805674817,8,4,8,8_1,8_3,8_0_1 +29063,1,34.0,268.0,7,111,3300.0,0.0,0.0,0,45,0.0,0.0,5627.1617931278015,3300.0,0.0,0.0,43,2,2,2,2,1,2,2,2,2,10.0,2,,5,129085,2,1,0,0,1,,0.0,571.0,32,1.0,0.0,4.0,3.0,1.6,1,1,917.685219827951,3300.0,22457.632682432617,0,1,2,3,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.14694335982177723,14036.020426520385,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +29064,1,62.0,304.0,2,111,360.0,1020.0,0.0,77,78,0.0,0.0,613.872195613942,1380.0,0.0,1936.4741288985847,50,2,2,2,1,1,2,2,2,0,,2,,2,129086,2,3,0,0,1,,600.0,299.0,41,2.0,1.0,5.0,6.0,3.3,5,5,281.033397742639,360.0,18802.134540552375,7,6,2,3,62.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07339592199085807,5697.616527440114,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +29065,2,94.0,0.0,2,111,290.0,0.0,0.0,0,77,0.0,0.0,494.50815757789775,290.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,129087,1,2,0,1,1,49.0,0.0,79.0,11,0.0,0.0,2.0,1.0,1.0,1,1,494.902462364547,290.0,22460.27171259898,0,5,2,3,45.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.012911687076222053,22460.27171259898,6,3,6,6_0,6_3,6_0_1 +29066,2,73.0,0.0,8,111,504.0,0.0,0.0,0,77,0.0,0.0,859.4210738595189,504.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,1999.0,6,129088,2,1,0,0,1,,0.0,267.0,11,0.0,0.0,1.0,1.0,1.0,1,1,859.114940546971,504.0,16285.172745728556,0,5,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030948397531257034,16285.172745728556,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +29067,2,44.0,0.0,6,111,240.0,0.0,0.0,0,63,0.0,0.0,409.2481304092947,240.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,7.0,2,,4,129089,2,2,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,378.170180211594,240.0,19626.1335753679,0,1,1,2,48.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012228593017486435,19626.1335753679,5,3,5,5_0,5_2,5_0_0 +29068,0,25.0,0.0,7,111,200.0,,,85,21,0.0,0.0,,376.0,243.8637036697877,,43,0,0,0,0,0,0,0,0,0,,1,,5,129090,1,2,0,0,2,,220.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,112.72478355236407,200.0,14137.87495968963,6,1,5,0,36.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026595227434962003,9425.24997312642,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29069,2,85.0,0.0,5,120,1900.0,0.0,0.0,0,78,0.0,0.0,3239.8810324069163,1950.0,69.27946126982604,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,129091,2,1,2,0,1,,350.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1346.57909652988,1900.0,25157.288507811965,0,5,0,1,105.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07751232806327583,25157.288507811965,7,4,7,7_1,7_0,7_0_0 +29070,1,69.0,98.0,5,111,250.0,0.0,0.0,0,78,0.0,145.67600047112464,426.3001358430153,440.0,110.84713803172167,0.0,71,2,1,2,2,1,2,2,2,0,,2,,3,129092,2,2,0,1,1,410.0,160.0,170.0,11,0.0,0.0,1.0,1.0,1.0,1,1,150.634471105167,250.0,8974.767906739895,0,5,2,3,40.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.049026337457659226,8974.767906739895,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29071,2,71.0,0.0,7,111,634.0,1262.0,0.0,75,74,0.0,0.0,1081.0971444978868,1896.0,0.0,2395.912108500014,41,0,0,0,0,0,0,0,0,0,,1,,5,129093,2,1,2,0,1,,612.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1284.33881205601,634.0,65317.75056157832,5,5,0,1,140.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029027331524721534,43545.16704105221,10,5,10,10_1,10_3,10_0_0 +29073,2,69.0,0.0,9,111,792.0,,,52,75,0.0,0.0,,1068.0,382.4226262094398,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129095,2,1,0,0,2,,328.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,121.39935959186461,792.0,69795.90340405653,1,5,1,2,118.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015301757666452498,46530.60226937102,10,5,10,10_1,10_2,10_0_0 +29074,2,82.0,0.0,1,111,250.0,0.0,0.0,77,72,1645.3052476170983,0.0,426.3001358430153,1966.0,216.15191916185728,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129096,2,2,1,0,2,,340.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1057.59739801048,250.0,22038.40599026355,5,5,0,1,70.0,9,7,5,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08920790373262787,14692.2706601757,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +29075,2,57.0,0.0,2,111,401.0,1200.0,0.0,67,63,0.0,0.0,683.7854178921965,1601.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,129097,2,2,2,0,1,,280.0,420.0,43,2.0,3.0,4.0,2.0,1.5,2,2,320.000163161519,401.0,27616.43052067564,4,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.057972734702313414,18410.953680450428,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +29076,2,87.0,0.0,1,111,657.0,0.0,0.0,71,71,685.543853173791,0.0,1120.3167569954442,1307.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129098,1,2,4,0,2,,243.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,995.514133061056,657.0,26470.217893587396,5,5,0,1,130.0,6,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04937624636314877,17646.811929058265,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +29077,1,81.0,224.0,2,111,316.0,85.0,0.0,0,78,0.0,0.0,538.8433717055714,401.0,0.0,161.37284407488207,71,2,2,2,2,1,2,2,2,0,,2,,2,129099,2,2,0,1,1,540.0,0.0,255.0,11,0.0,2.0,3.0,1.0,1.0,1,1,401.781762140196,316.0,10338.633508907607,0,5,2,3,62.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.038786557203570916,10338.633508907607,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +29078,2,33.0,0.0,1,112,2200.0,0.0,0.0,52,37,0.0,218.51400070668694,3751.441195418535,2400.0,48.49562288887823,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,129100,2,1,3,0,1,,230.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,921.804676158671,2200.0,84098.87228985612,1,1,1,2,120.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02853783807859079,40047.08204278863,9,5,9,9_1,9_1,9_1_0 +29080,2,49.0,0.0,1,120,920.0,0.0,0.0,63,43,0.0,927.0290939071567,1568.7844999022964,1620.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,1,,1,129102,2,1,1,0,1,,300.0,,43,2.0,1.0,7.0,5.0,2.8,4,3,1131.41415021713,920.0,64335.52978964984,1,1,0,1,180.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025180487442890725,22976.974924874943,6,3,6,6_1,6_0,6_1_0 +29081,1,39.0,117.0,2,400,960.0,0.0,0.0,56,63,0.0,529.7309108040896,1636.9925216371787,1552.0,266.03313127613205,0.0,50,2,2,2,1,2,2,1,2,2,15.0,1,,2,129103,1,3,1,0,2,,170.0,436.0,43,2.0,0.0,4.0,4.0,2.3,4,2,975.753015237266,960.0,24455.3407339428,1,1,2,3,85.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.06346262016484198,10632.756840844697,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +29082,2,46.0,0.0,2,111,300.0,200.0,0.0,0,63,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,129104,2,1,0,1,1,744.0,0.0,281.0,32,1.0,0.0,2.0,3.0,2.0,3,1,759.126606556196,300.0,19811.790365573735,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025237497004250195,9905.895182786868,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +29083,2,50.0,0.0,7,400,454.0,0.0,0.0,52,38,469.33386871128766,609.190547424703,774.1610466909158,1461.0,141.33010099044515,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,129105,2,1,2,0,1,,259.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1146.64259110118,454.0,58472.49920777403,1,1,0,1,132.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024986104917604706,38981.66613851602,9,5,9,9_1,9_0,9_0_0 +29084,2,58.0,0.0,2,221,0.0,0.0,0.0,0,77,0.0,0.0,0.0,913.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,129106,2,1,2,0,2,,148.0,180.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2460.07652885029,0.0,12276.069322932713,0,5,3,4,55.0,1,1,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07437233987384223,12276.069322932713,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +29085,1,58.0,341.0,2,111,464.0,138.0,0.0,0,78,0.0,0.0,791.2130521246364,602.0,0.0,261.99355861569086,50,0,0,0,0,0,0,0,0,0,,2,,2,129107,2,1,0,1,1,645.0,0.0,431.0,11,0.0,3.0,5.0,1.0,1.0,1,1,242.924355401916,464.0,8365.842322010925,0,7,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07195928118512461,8365.842322010925,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +29086,1,43.0,151.0,2,112,1586.0,0.0,0.0,0,46,0.0,0.0,2704.448061788089,1766.0,249.40606057137379,0.0,30,2,2,2,1,2,2,2,2,2,20.0,1,,2,129108,2,2,5,0,1,,486.0,500.0,32,1.0,0.0,4.0,3.0,1.6,1,1,1152.78333804266,1586.0,29060.445957514563,0,1,2,3,90.0,7,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,1,0,1,0.06076988641474516,18162.7787234466,4,2,4_1,4_1_1,4_0_1,4_0_1_1 +29087,1,31.0,300.0,1,111,150.0,700.0,0.0,85,46,0.0,0.0,255.78008150580916,850.0,0.0,1328.9528335578523,41,0,0,0,0,0,0,0,0,0,,2,,1,129109,2,2,0,0,1,,0.0,550.0,42,1.0,0.0,3.0,3.0,1.8,2,2,1124.12189364498,150.0,10722.673457463661,6,4,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07927127533743425,5957.040809702034,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +29088,2,66.0,0.0,2,221,332.0,1020.0,0.0,72,72,0.0,0.0,566.1265803995243,1352.0,0.0,1936.4741288985847,50,0,0,0,0,0,0,0,0,0,,2,,2,129110,2,2,0,0,1,,434.0,410.0,41,0.0,4.0,3.0,2.0,1.5,2,2,3149.07735485078,332.0,25789.1549247041,5,5,2,3,65.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05242513777389751,17192.769949802732,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +29089,2,60.0,0.0,7,111,300.0,859.0,0.0,0,75,0.0,264.8654554020448,511.56016301161833,1359.0,0.0,1630.8149771802787,50,0,0,0,0,0,0,0,0,0,,1,,5,129111,2,1,2,0,1,,240.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1030.70878720659,300.0,63455.690225548955,0,5,0,1,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021416519072907828,63455.690225548955,10,5,10,10_1,10_3,10_0_0 +29090,2,56.0,0.0,6,111,200.0,,,78,63,0.0,0.0,,364.0,227.23663296502943,,71,0,0,0,0,0,0,0,0,0,,1,,4,129112,2,2,0,0,2,,350.0,,42,1.0,2.0,3.0,5.0,2.8,4,3,110.04895058869822,200.0,8733.03919791023,6,4,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04168079310660867,3118.942570682225,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29091,2,49.0,0.0,1,112,2100.0,0.0,0.0,0,47,0.0,198.6490915515336,3580.9211410813286,2280.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129113,2,1,1,0,1,,120.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,654.43149631287,2100.0,36172.89355472699,0,1,0,1,95.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06303062254476613,24115.262369817992,6,3,6,6_1,6_0,6_1_0 +29092,1,28.0,183.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,482.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,129114,2,1,0,1,1,508.0,434.0,500.0,32,1.0,0.0,4.0,3.0,1.6,1,1,694.206810082732,0.0,23473.5852848809,0,1,2,3,80.0,4,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020533718822682418,14670.990803050563,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +29093,2,85.0,0.0,5,111,1800.0,0.0,0.0,77,75,0.0,0.0,3069.36097806971,2050.0,346.39730634913025,0.0,20,2,2,1,1,1,2,2,2,0,,1,,3,129115,2,1,2,0,2,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1390.22777824068,1800.0,58481.02893357522,5,5,0,1,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03505410279850687,38987.35262238348,9,5,9,9_1,9_2,9_0_0 +29094,2,51.0,0.0,6,120,336.0,,,85,63,0.0,0.0,,588.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,4,129116,2,1,0,0,1,,312.0,,42,3.0,1.0,5.0,5.0,3.0,5,4,135.46156238337718,336.0,33827.89917245696,6,1,0,1,78.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01738210218146671,11275.966390818985,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +29095,2,49.0,0.0,1,111,329.0,723.0,0.0,0,85,0.0,0.0,561.0109787694081,1052.0,0.0,1372.6184266604675,20,0,0,0,0,0,0,0,0,0,,1,,1,129117,1,2,1,0,1,,189.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,71.1513376215386,329.0,6360.8775447014905,0,7,0,1,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16538598528379142,6360.8775447014905,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +29096,1,49.0,430.0,2,111,742.0,120.0,0.0,67,21,0.0,0.0,1265.2588031820694,862.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,129118,2,1,0,1,1,891.0,0.0,378.0,43,4.0,0.0,4.0,6.0,3.3,5,4,234.996348257425,742.0,20168.02154559989,1,4,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04274093014285106,6111.521680484816,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +29098,2,51.0,0.0,9,111,225.0,,,52,52,0.0,0.0,,351.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,45.0,1,2012.0,6,129120,2,1,0,0,1,,276.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,248.20016199928398,225.0,53497.51456553975,1,1,1,2,93.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00656105246852151,23259.788941539024,6,3,6,6_1,6_2,6_0_0 +29099,1,39.0,125.0,7,112,479.0,1059.0,0.0,85,64,0.0,0.0,816.7910602752173,1538.0,0.0,2010.5157867682365,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,129121,2,3,3,0,1,,448.0,620.0,42,1.0,0.0,4.0,4.0,2.3,3,2,713.295919058958,479.0,23605.393784434167,6,1,2,3,78.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06515460042925382,10263.214688884422,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +29100,1,36.0,69.0,2,111,200.0,0.0,0.0,0,65,0.0,0.0,341.04010867441224,622.0,0.0,0.0,71,2,2,1,1,2,2,2,2,2,20.0,2,,2,129122,2,1,0,4,1,,0.0,278.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1613.59262255336,200.0,14792.032129844203,0,1,2,3,58.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.042049665288724,14792.032129844203,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +29101,1,35.0,118.0,9,111,2900.0,0.0,0.0,85,21,0.0,0.0,4945.081575778978,2900.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,129123,2,1,1,0,1,,950.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,193.677855223453,2900.0,29687.901932212342,6,1,1,2,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09768288802023445,10995.51923415272,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +29102,2,51.0,0.0,2,111,270.0,120.0,0.0,21,54,0.0,0.0,460.40414671045653,390.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,129124,1,2,0,1,2,650.0,0.0,658.0,43,3.0,1.0,4.0,3.0,2.0,3,3,862.60239984996,270.0,51693.674646477964,4,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007544443351476307,25846.837323238982,7,4,7,7_0,7_4,7_0_1 +29103,1,47.0,155.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,294.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,2,129125,1,3,0,0,1,,154.0,354.0,32,1.0,0.0,3.0,2.0,1.3,1,1,518.116020594085,0.0,18727.44144473888,0,1,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01569888769202873,14405.724188260678,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +29104,2,39.0,0.0,7,111,780.0,0.0,0.0,42,34,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,5,129126,2,1,0,0,1,,0.0,926.0,43,2.0,0.0,3.0,2.0,1.5,2,2,902.76079206102,780.0,48250.55693461909,1,1,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016165616514166307,32167.037956412725,8,4,8,8_0,8_4,8_0_0 +29105,2,54.0,0.0,7,111,500.0,644.0,0.0,62,45,0.0,0.0,852.6002716860306,1144.0,0.0,1222.636606873224,50,0,0,0,0,0,0,0,0,2,3.0,1,,5,129127,2,1,3,0,1,,288.0,504.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1024.23788649457,500.0,40895.769489027276,1,1,2,3,75.0,5,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02797355360453472,27263.846326018185,7,4,7,7_1,7_2,7_0_0 +29106,2,66.0,0.0,2,111,537.0,989.0,0.0,78,74,0.0,0.0,915.6926917907969,1526.0,0.0,1877.6205034124514,42,0,0,0,0,0,0,0,0,0,,1,,2,129128,2,2,1,0,1,,513.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,1493.18194306547,537.0,30772.53004132935,5,5,0,1,114.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04958968267966562,20515.020027552902,5,3,5,5_1,5_2,5_0_1 +29107,2,41.0,0.0,5,111,0.0,0.0,720.0,0,54,0.0,0.0,453.8291690986155,720.0,0.0,861.6471462465702,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,129129,2,2,0,0,1,,120.0,323.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1313.67451196547,0.0,22224.527641671342,0,1,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03239663904712146,22224.527641671342,6,3,6,6_0,6_3,6_0_0 +29108,2,56.0,0.0,6,111,1370.0,1600.0,0.0,0,74,0.0,0.0,2336.124744419724,2970.0,0.0,3037.6064767036623,20,0,0,0,0,0,0,0,0,0,,1,,4,129130,1,1,3,0,1,,242.0,,11,0.0,1.0,8.0,1.0,1.0,1,1,711.554026500468,1370.0,46550.58491317102,0,7,0,1,167.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0638015613668405,46550.58491317102,10,5,10,10_1,10_4,10_0_0 +29109,2,67.0,0.0,2,111,230.0,694.0,0.0,0,77,0.0,0.0,392.1961249755741,924.0,0.0,1317.5618092702136,70,0,0,0,0,0,0,0,0,0,,1,,2,129131,2,2,3,0,1,,151.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,273.411041184335,230.0,17594.39573435515,0,5,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05251672259455778,17594.39573435515,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +29110,1,47.0,161.0,2,111,240.0,180.0,0.0,0,85,0.0,0.0,409.2481304092947,420.0,0.0,341.730728629162,60,0,0,0,0,0,0,0,0,0,,2,,2,129132,2,1,0,1,2,,0.0,240.0,11,0.0,0.0,2.0,1.0,1.0,1,1,399.243695686694,240.0,9179.305831284142,0,7,2,3,64.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0457550938730673,9179.305831284142,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +29111,2,51.0,0.0,9,111,310.0,,,78,52,0.0,0.0,,373.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,129133,2,1,0,0,2,,299.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,100.15891250629788,310.0,36714.890020353734,5,1,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010159365853832572,24476.59334690249,7,4,7,7_1,7_2,7_0_0 +29112,2,55.0,0.0,5,111,805.0,660.0,0.0,47,33,0.0,218.51400070668694,1372.6864374145093,1630.0,0.0,1253.0126716402608,41,0,0,0,0,0,0,0,0,4,35.0,2,,3,129134,2,2,0,0,1,,360.0,,43,2.0,2.0,4.0,3.0,2.0,3,2,1450.31601646313,805.0,75935.29048457714,1,1,1,2,95.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02146564515126286,37967.64524228857,9,5,9,9_0,9_3,9_0_0 +29113,1,31.0,358.0,5,111,444.0,0.0,0.0,0,85,0.0,0.0,757.1090412571951,444.0,0.0,0.0,71,2,2,1,1,2,2,2,2,0,,2,,3,129135,1,2,0,1,1,426.0,0.0,322.0,31,0.0,0.0,3.0,3.0,1.6,1,1,419.239421662646,444.0,10825.497749094211,0,6,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.04101428038605895,6765.936093183882,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +29114,1,63.0,99.0,6,111,233.0,570.0,0.0,0,77,0.0,0.0,397.31172660569024,803.0,0.0,1082.1473073256798,50,2,2,2,1,2,2,1,2,0,,2,,4,129136,2,2,0,0,1,,135.0,343.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1386.91691697867,233.0,10805.995667506526,0,5,2,3,53.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.07431059799650018,10805.995667506526,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +29115,2,80.0,0.0,1,112,530.0,0.0,0.0,77,71,2003.897416969543,0.0,903.7562879871924,2570.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129137,2,2,4,0,2,,440.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,896.361727505543,530.0,37891.6236306561,5,5,0,1,95.0,8,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06782501655381032,25261.082420437397,7,4,7,7_1,7_1,7_1_0 +29116,2,49.0,0.0,7,211,1429.0,0.0,0.0,43,47,0.0,198.6490915515336,2436.7315764786754,1579.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,129138,2,1,2,0,1,,359.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1236.24357668775,1429.0,59085.71550305108,1,1,0,1,129.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02672388726372389,29542.85775152554,8,4,8,8_1,8_1,8_0_0 +29117,2,27.0,0.0,2,111,250.0,720.0,0.0,0,52,0.0,0.0,426.3001358430153,970.0,0.0,1366.922914516648,31,0,0,0,0,0,0,0,0,1,5.0,2,,2,129139,2,1,0,0,1,,110.0,230.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1785.84392590105,250.0,20798.318300609073,0,1,2,3,49.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.046638386141613856,20798.318300609073,5,3,5,5_0,5_2,5_0_1 +29118,2,32.0,0.0,5,111,350.0,0.0,0.0,0,55,0.0,0.0,596.8201901802214,380.0,41.567676761895626,0.0,60,0,0,0,0,0,0,0,0,2,20.0,2,,3,129140,1,1,0,1,1,861.0,730.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1313.82082429854,350.0,14186.829612946287,0,1,2,3,76.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026785406631882603,14186.829612946287,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +29119,2,39.0,0.0,5,111,367.0,,,42,42,0.0,0.0,,413.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,129141,2,1,0,0,1,,217.0,1200.0,43,2.0,1.0,4.0,2.0,1.5,2,2,160.7115152193828,367.0,91649.97400595405,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004506275146059173,61099.98267063603,10,5,10,10_1,10_2,10_0_0 +29120,2,30.0,0.0,9,120,2000.0,0.0,0.0,42,42,0.0,132.4327277010224,3410.4010867441225,2100.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,129142,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,267.100940900066,2000.0,48763.84175505505,1,1,1,2,141.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04306469556989541,23220.87702621669,6,3,6,6_1,6_0,6_0_0 +29121,2,59.0,0.0,2,111,470.0,1110.0,0.0,68,63,0.0,0.0,801.4442553848687,1580.0,0.0,2107.339493213166,70,0,0,0,0,0,0,0,0,0,,1,,2,129143,2,3,3,0,1,,600.0,609.0,43,2.0,2.0,5.0,2.0,1.5,2,2,238.930066326014,470.0,33629.20714583061,1,1,2,3,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046982969094348404,22419.471430553738,6,3,6,6_1,6_3,6_0_1 +29122,1,43.0,171.0,9,111,500.0,1000.0,0.0,0,55,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,2,7.0,1,2008.0,6,129144,2,1,1,0,1,,180.0,370.0,32,2.0,0.0,3.0,3.0,2.0,3,2,1412.62074848821,500.0,22598.019591356468,0,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.06637749798985643,11299.009795678234,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +29123,2,51.0,0.0,7,112,248.0,,,0,52,0.0,0.0,,668.0,581.9474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,5,129145,2,2,0,0,2,,226.0,,32,1.0,1.0,3.0,4.0,2.1,2,2,102.34936750818241,248.0,18889.524226198337,0,4,0,1,83.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03536351641263334,8995.011536284921,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29124,2,52.0,0.0,6,112,0.0,0.0,1495.0,0,67,0.0,0.0,942.325844170042,1495.0,0.0,1789.114560609198,60,0,0,0,0,0,0,0,0,2,30.0,2,,4,129146,2,1,0,0,1,,230.0,511.0,32,3.0,1.0,3.0,3.0,2.0,3,3,1225.50310114772,0.0,37873.94182062939,0,1,2,3,75.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03947305002157697,18936.970910314696,5,3,5,5_0,5_1,5_0_0 +29125,1,54.0,359.0,7,111,1200.0,,,0,54,0.0,0.0,,1464.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,129147,2,2,0,0,2,,400.0,493.0,32,2.0,3.0,4.0,5.0,2.5999999999999996,3,3,52.584136910959735,1200.0,25684.506506137775,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05699934315071036,9878.65634851453,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +29126,2,36.0,0.0,1,111,0.0,0.0,470.0,63,63,0.0,0.0,296.24959649492956,470.0,0.0,562.4641093554,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,129148,2,3,0,1,1,303.0,0.0,328.0,43,2.0,0.0,3.0,3.0,1.8,2,2,215.698275171558,0.0,29681.088318984504,4,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01583499887028672,16489.493510546945,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +29127,2,49.0,0.0,2,111,1750.0,,,54,48,0.0,0.0,,2210.0,637.3710436823997,,50,0,0,0,0,0,0,0,0,0,,1,,2,129149,2,1,0,0,2,,1400.0,,43,3.0,0.0,5.0,6.0,3.3,5,5,107.4478196351651,1750.0,102606.14722338675,1,1,0,1,123.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021538670535874875,31092.771885874776,8,4,8,8_1,8_2,8_0_1 +29128,2,83.0,0.0,1,111,1200.0,0.0,0.0,78,78,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129150,2,1,2,0,1,,380.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1376.79749945529,1200.0,35263.17857817016,5,5,0,1,70.0,6,4,4,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034029830786237336,23508.78571878011,6,3,6,6_1,6_2,6_1_0 +29129,2,59.0,0.0,7,112,1100.0,0.0,0.0,52,63,0.0,529.7309108040896,1875.7205977092674,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,129151,2,1,2,0,1,,180.0,,43,2.0,1.0,8.0,3.0,2.0,3,3,2162.72653248932,1100.0,68279.15909002745,1,1,0,1,234.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02196863611079656,34139.57954501372,9,5,9,9_1,9_0,9_0_0 +29130,2,50.0,0.0,5,111,900.0,,,56,46,0.0,0.0,,988.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,3,129152,2,3,0,0,2,,600.0,290.0,43,3.0,0.0,3.0,3.0,2.0,3,3,144.00940549951122,900.0,7477.454388984509,1,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.13213052846641,3738.7271944922545,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +29131,0,64.0,0.0,2,111,585.0,1014.0,0.0,75,75,0.0,39.72981831030672,997.5423178726558,1629.0,0.0,1925.083104610946,33,0,0,0,0,0,0,0,0,0,,1,,2,129153,2,3,4,0,1,,525.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1027.2133733667,585.0,59206.93366349644,5,5,0,1,101.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02751366941680256,39471.289108997626,9,5,9,9_1,9_2,9_0_1 +29132,2,59.0,0.0,5,300,443.0,0.0,0.0,72,42,4007.794833939086,0.0,755.4038407138231,4243.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,60.0,1,,3,129154,2,2,3,0,1,,238.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1041.47786066683,443.0,77438.07057395969,5,1,0,1,240.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054792170938034776,51625.38038263979,10,5,10,10_1,10_0,10_0_0 +29133,2,24.0,0.0,2,111,250.0,600.0,0.0,62,55,0.0,0.0,426.3001358430153,850.0,0.0,1139.1024287638734,43,2,2,2,1,2,2,2,2,1,5.0,2,,2,129155,2,1,0,0,1,,200.0,540.0,43,2.0,0.0,1.0,2.0,1.5,2,2,2201.71827621865,250.0,35640.132175365325,1,1,2,3,40.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.023849518734038958,23760.088116910218,6,3,6,6_0,6_3,6_0_1 +29134,2,43.0,0.0,2,111,1500.0,0.0,0.0,21,63,0.0,0.0,2557.8008150580918,1660.0,221.69427606344334,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129156,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,890.478730751643,1500.0,29554.03122043915,1,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056168310428391495,12849.578791495283,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +29135,2,57.0,0.0,7,111,1000.0,0.0,0.0,0,37,0.0,0.0,1705.2005433720612,1120.0,166.2707070475825,0.0,12,0,0,0,0,0,0,0,0,0,,1,,5,129157,2,2,2,0,1,,330.0,,32,1.0,2.0,4.0,2.0,1.5,2,2,1418.35671828295,1000.0,33127.139037835776,0,4,1,2,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03380913753888632,22084.759358557185,6,3,6,6_1,6_2,6_0_0 +29136,2,36.0,0.0,1,111,715.0,0.0,0.0,0,38,0.0,0.0,1219.2183885110237,715.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,129158,2,1,0,0,1,,0.0,505.0,12,1.0,0.0,2.0,1.0,1.0,1,1,905.006412773152,715.0,32564.353707150494,0,1,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021956523578817413,32564.353707150494,8,4,8,8_0,8_3,8_1_0 +29137,2,54.0,0.0,2,111,660.0,,,56,54,0.0,0.0,,726.0,91.44888887617039,,60,0,0,0,0,0,0,0,0,0,,2,,2,129159,2,1,0,0,1,,250.0,497.0,43,2.0,0.0,4.0,4.0,2.5,4,4,155.24830517979467,660.0,51531.70864991036,4,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014088413115354033,20612.683459964144,5,3,5,5_0,5_2,5_0_1 +29138,1,48.0,308.0,2,111,300.0,0.0,0.0,0,67,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,129160,2,2,0,1,1,425.0,0.0,297.0,12,1.0,0.0,1.0,1.0,1.0,1,1,277.047038893744,300.0,6060.0,0,4,2,3,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04950495049504951,6060.0,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +29139,2,75.0,0.0,2,111,273.0,160.0,0.0,0,77,0.0,0.0,465.5197483405727,433.0,0.0,303.7606476703662,71,0,0,0,0,0,0,0,0,0,,2,,2,129161,1,3,0,1,1,521.0,530.0,430.0,21,1.0,0.0,3.0,2.0,1.5,2,2,243.853056103907,273.0,33154.72083489024,0,5,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013059980271175565,22103.147223260163,6,3,6,6_0,6_3,6_0_1 +29140,2,80.0,0.0,2,112,2030.0,0.0,0.0,74,77,0.0,0.0,3461.5571030452843,2126.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129162,2,2,5,0,1,,265.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,899.786539813783,2030.0,36737.003423221846,5,5,0,1,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.057870806050994705,24491.33561548123,7,4,7,7_1,7_1,7_0_1 +29141,2,82.0,0.0,1,120,182.0,0.0,0.0,0,75,2531.2388424878436,0.0,310.34649889371514,2582.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129163,2,1,2,0,1,,377.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1349.54667986402,182.0,25837.0,0,5,0,1,122.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09993420288733212,25837.0,7,4,7,7_1,7_0,7_1_0 +29142,2,25.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1314.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,2,,1,129164,1,2,0,0,1,,0.0,640.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1401.773208696,0.0,30520.401717034918,0,1,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04305316857171617,30520.401717034918,8,4,8,8_0,8_4,8_1_0 +29143,0,83.0,0.0,1,111,293.0,,,71,71,0.0,0.0,,431.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,129165,2,3,0,0,2,,113.0,,41,0.0,11.0,2.0,2.0,1.5,2,2,84.081071519862,293.0,17793.113434901392,5,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024222854621641914,11862.075623267594,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +29144,2,87.0,0.0,2,112,1642.0,0.0,0.0,77,74,0.0,397.2981831030672,2799.9392922169245,1942.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129166,2,1,2,0,1,,290.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1484.08345945133,1642.0,39534.349118209764,5,5,0,1,90.0,9,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.049121840711056575,26356.232745473175,7,4,7,7_1,7_0,7_0_1 +29145,1,57.0,491.0,1,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,725.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,1,129167,1,2,0,0,1,,0.0,490.0,42,2.0,0.0,2.0,5.0,2.8,4,4,145.819263234499,0.0,8297.738299105516,6,1,2,3,48.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08737320627214212,2963.477963966256,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +29146,2,58.0,0.0,8,112,464.0,1047.0,0.0,77,55,0.0,0.0,791.2130521246364,1511.0,0.0,1987.733738192959,71,0,0,0,0,0,0,0,0,3,60.0,1,2000.0,6,129168,2,1,2,0,1,,320.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,670.457280665285,464.0,24498.536105876872,6,1,1,2,87.0,10,5,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.061677154645886426,12249.268052938436,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +29147,2,63.0,0.0,6,111,1230.0,0.0,0.0,77,78,0.0,0.0,2097.396668347635,1230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129169,2,1,1,0,1,,295.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1315.27635774408,1230.0,30919.12383938261,5,5,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039781204874677345,20612.749226255073,5,3,5,5_1,5_3,5_0_0 +29148,2,53.0,0.0,2,111,700.0,350.0,0.0,67,52,0.0,0.0,1193.6403803604428,1050.0,0.0,664.4764167789261,71,0,0,0,0,0,0,0,0,1,5.0,2,,2,129170,2,1,0,1,1,,1800.0,582.0,43,3.0,0.0,3.0,5.0,2.5999999999999996,3,2,104.462844867269,700.0,26500.134817532373,1,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039622439932091386,10192.35954520476,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +29149,2,73.0,0.0,9,111,850.0,0.0,0.0,0,77,0.0,0.0,1449.420461866252,850.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129171,2,1,1,0,1,,170.0,540.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1229.97440854776,850.0,19110.800662688336,0,5,2,3,80.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044477466695549195,19110.800662688336,5,3,5,5_1,5_2,5_0_0 +29150,2,54.0,0.0,1,111,650.0,250.0,0.0,0,46,0.0,0.0,1108.3803531918397,900.0,0.0,474.62601198494724,20,0,0,0,0,0,0,0,0,2,20.0,2,,1,129172,1,1,0,0,2,,500.0,891.0,32,1.0,1.0,4.0,2.0,1.5,2,2,2039.95176419236,650.0,26593.080363145007,0,1,2,3,95.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.033843390374862246,17728.72024209667,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +29151,2,58.0,0.0,5,400,600.0,0.0,0.0,78,69,0.0,794.5963662061343,1023.1203260232367,1290.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,1,10.0,1,,3,129173,2,1,1,0,1,,300.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1269.227983291,600.0,52204.90994445583,7,1,0,1,85.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024710319419619996,34803.27329630389,9,5,9,9_1,9_0,9_0_0 +29152,2,61.0,0.0,5,211,450.0,,,78,56,0.0,0.0,,726.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,129174,2,1,0,0,2,,540.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,79.6916524312524,450.0,44377.710641474725,5,4,0,1,88.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01635956405830209,22188.855320737362,6,3,6,6_1,6_2,6_0_0 +29153,2,84.0,0.0,5,111,1200.0,,,86,78,0.0,0.0,,1326.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,3,129175,2,2,0,0,2,,116.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,112.23872386524643,1200.0,12503.586725551399,6,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10604957034370667,8335.724483700933,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +29154,2,86.0,0.0,6,112,1643.0,0.0,0.0,78,78,0.0,0.0,2801.6444927602965,1769.0,174.58424239996165,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,129176,2,1,2,0,1,,217.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2411.74529893702,1643.0,26603.241762019046,5,5,0,1,75.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06649565552291331,17735.494508012696,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +29155,2,55.0,0.0,9,111,800.0,,,56,22,0.0,0.0,,860.0,83.13535352379125,,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,129177,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,138.23862118583997,800.0,11271.081137735782,1,1,0,1,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0763014647388798,7514.054091823855,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29156,2,64.0,0.0,5,112,700.0,0.0,0.0,0,74,0.0,72.83800023556232,1193.6403803604428,839.0,116.38949493330776,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,129178,2,1,3,0,1,,297.0,500.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1082.31670943053,700.0,15473.203617639478,0,5,2,3,92.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05422277252549941,15473.203617639478,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +29157,1,37.0,491.0,6,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,597.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,129179,1,2,0,0,1,,197.0,488.0,32,1.0,0.0,5.0,4.0,2.1,3,1,271.007358248225,0.0,17231.841158811112,0,1,2,3,85.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03464516614898911,8205.63864705291,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +29158,2,41.0,0.0,1,112,610.0,0.0,0.0,64,54,1877.3354748451507,0.0,1040.1723314569574,2494.0,144.10127944123818,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,1,129180,2,2,2,0,1,,180.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1488.55512403199,610.0,48003.696971523634,1,1,0,1,120.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05195433179822526,22858.90331977316,6,3,6,6_1,6_0,6_1_0 +29159,2,45.0,0.0,2,111,480.0,710.0,0.0,54,63,0.0,0.0,818.4962608185893,1190.0,0.0,1347.9378740372501,60,0,0,0,0,0,0,0,0,0,,2,,2,129181,2,2,0,0,1,,0.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,1989.32288932459,480.0,52918.64341397968,1,1,1,2,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022487348942237514,23008.105832165078,6,3,6,6_0,6_3,6_0_1 +29160,2,89.0,0.0,1,112,2500.0,0.0,0.0,0,72,0.0,0.0,4263.001358430153,2620.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129182,2,1,2,0,1,,80.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,909.755285220157,2500.0,12423.430055658619,0,5,0,1,70.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2108918381044568,12423.430055658619,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +29161,2,38.0,0.0,1,111,800.0,1000.0,0.0,54,54,0.0,0.0,1364.160434697649,1800.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,2,90.0,1,,1,129183,2,3,2,0,1,,1000.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,260.715023520955,800.0,50117.743072266814,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03591542415237068,23865.591939174672,6,3,6,6_1,6_4,6_1_0 +29162,2,63.0,0.0,1,112,1500.0,0.0,0.0,52,78,0.0,1198.5161856942527,2557.8008150580918,2495.0,124.70303028568689,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,129184,2,2,3,0,1,,250.0,,42,2.0,0.0,7.0,3.0,2.0,3,3,1021.81549494648,1500.0,70040.43484464807,1,5,0,1,160.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.03562228026616325,35020.217422324036,9,5,9,9_1,9_0,9_1_0 +29163,1,71.0,206.0,6,111,480.0,0.0,0.0,0,77,0.0,0.0,818.4962608185893,480.0,0.0,0.0,50,2,2,1,2,2,2,2,1,0,,2,,4,129185,1,2,0,0,1,,180.0,358.0,11,0.0,1.0,1.0,1.0,1.0,1,1,2711.19828664145,480.0,9283.196743396622,0,5,2,3,25.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.05170632630849243,9283.196743396622,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +29164,2,92.0,0.0,2,111,1276.0,,,0,72,0.0,0.0,,1284.0,11.084713803172168,,60,0,0,0,0,0,0,0,0,0,,1,,2,129186,2,1,0,0,2,,1000.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,98.07821583118266,1276.0,18414.448011335073,0,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06972785712662305,18414.448011335073,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +29165,2,66.0,0.0,1,111,1000.0,1000.0,0.0,77,74,0.0,662.163638505112,1705.2005433720612,2500.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,0,,1,,1,129187,1,3,3,0,2,,100.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,386.519532927955,1000.0,57492.035714068305,5,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04348428384817569,38328.02380937887,9,5,9,9_1,9_3,9_1_0 +29166,1,47.0,357.0,7,111,1230.0,,,0,90,0.0,0.0,,1322.0,127.47420873647992,,41,0,0,0,0,0,0,0,0,0,,2,,5,129188,2,1,0,0,2,,1202.0,465.0,32,2.0,2.0,4.0,3.0,1.8,2,2,97.84821934340405,1230.0,8172.0,0,4,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.16177190406265296,4540.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29167,2,37.0,0.0,6,111,0.0,,,0,42,0.0,0.0,,682.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,0,,1,,4,129189,2,1,0,0,2,,900.0,1580.0,12,1.0,0.0,4.0,1.0,1.0,1,1,166.0161598814476,0.0,48495.22156982654,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014063241241572894,48495.22156982654,10,5,10,10_1,10_3,10_0_0 +29168,2,48.0,0.0,1,111,1058.6,1570.0,0.0,21,37,0.0,0.0,1805.1252952136638,2629.0,0.0,2980.6513552654687,42,0,0,0,0,0,0,0,0,0,,1,,1,129190,2,1,3,0,1,,348.0,,43,2.0,3.0,4.0,3.0,1.8,2,2,646.575348328174,1058.6,63442.51009917892,1,4,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04143909179964846,35245.83894398829,9,5,9,9_1,9_4,9_1_0 +29169,2,41.0,0.0,5,300,1200.0,0.0,0.0,85,62,0.0,0.0,2046.2406520464733,1380.0,249.40606057137379,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,129191,2,1,2,0,1,,350.0,,42,1.0,0.0,4.0,5.0,2.8,4,2,1445.09379916009,1200.0,36964.22499348881,6,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03733339466046116,13201.508926246004,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +29170,2,26.0,0.0,7,111,360.0,,,0,53,0.0,0.0,,383.0,31.86855218411998,,42,0,0,0,0,0,0,0,0,2,30.0,2,,5,129192,2,1,0,0,2,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,128.32578722293871,360.0,27561.626705940565,0,1,2,3,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013896131896940942,27561.626705940565,7,4,7,7_0,7_3,7_0_0 +29171,2,45.0,0.0,6,111,390.0,708.0,0.0,56,62,0.0,0.0,665.0282119151038,1098.0,0.0,1344.1408659413705,50,2,2,2,2,1,2,2,2,2,15.0,2,,4,129193,1,2,0,0,2,,200.0,539.0,43,2.0,0.0,4.0,4.0,2.5,4,3,2017.31084424702,390.0,39109.76109469414,1,1,2,3,85.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,1,0,0,0.02807483270842483,15643.904437877656,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +29172,2,55.0,0.0,7,111,550.0,1100.0,0.0,42,38,0.0,198.6490915515336,937.8602988546337,1800.0,0.0,2088.354452733768,42,0,0,0,0,0,0,0,0,3,60.0,1,,5,129194,2,1,2,0,1,,550.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,824.927070793026,550.0,90931.75222614004,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019795065595167933,45465.87611307002,10,5,10,10_1,10_4,10_0_0 +29173,1,55.0,116.0,9,221,925.0,0.0,0.0,0,69,0.0,0.0,1577.3105026191565,925.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,129195,2,1,1,0,1,,186.0,367.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1605.67066192073,925.0,18634.100746590702,0,1,2,3,70.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04964017381784512,18634.100746590702,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +29174,1,43.0,120.0,1,400,1250.0,0.0,0.0,85,68,0.0,0.0,2131.5006792150766,1550.0,415.67676761895626,0.0,71,2,2,2,2,2,2,1,2,0,,1,,1,129196,2,2,1,0,1,,250.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,1549.41780194705,1250.0,35154.35824820422,6,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,1,0,0,1,0.04409126143212067,14647.649270085092,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +29175,2,27.0,0.0,5,111,0.0,0.0,0.0,48,38,0.0,0.0,0.0,1951.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,3,129197,2,2,3,0,1,,262.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,610.856532850605,0.0,60870.33887016121,1,1,1,2,180.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032051735479271086,40580.22591344081,9,5,9,9_1,9_4,9_0_0 +29176,1,50.0,250.0,2,111,400.0,500.0,0.0,0,55,0.0,0.0,682.0802173488245,1250.0,484.95622888878233,949.2520239698945,30,0,0,0,0,0,0,0,0,0,,1,,2,129198,2,2,1,0,1,,200.0,400.0,12,1.0,0.0,5.0,1.0,1.0,1,1,411.984653425322,400.0,7512.866562009419,0,1,2,3,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.16638123274023256,7512.866562009419,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +29177,2,65.0,0.0,2,111,840.0,100.0,0.0,31,34,0.0,0.0,1432.3684564325313,940.0,0.0,189.8504047939789,10,0,0,0,0,0,0,0,0,3,40.0,2,,2,129199,2,2,0,1,1,1300.0,0.0,2000.0,43,3.0,3.0,5.0,4.0,2.5,4,4,1055.75245379907,840.0,233510.74970266814,1,1,2,3,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004025510607956647,93404.29988106726,10,5,10,10_0,10_4,10_0_1 +29178,2,88.0,0.0,1,120,600.0,1500.0,0.0,71,71,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,70,0,0,0,0,0,0,0,0,0,,1,,1,129200,2,1,4,0,2,,100.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,303.498037643307,600.0,26986.573400722056,5,5,0,1,150.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07781647446740356,17991.048933814705,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +29179,2,70.0,0.0,5,120,800.0,0.0,0.0,86,86,1582.0242765549024,0.0,1364.160434697649,2300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,129201,2,1,2,0,1,,660.0,,41,1.0,0.0,7.0,3.0,2.0,3,3,273.287384364089,800.0,92150.3673691478,5,5,0,1,220.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0249592059767528,46075.1836845739,10,5,10,10_1,10_0,10_0_0 +29180,2,59.0,0.0,7,111,480.0,,,0,33,0.0,0.0,,480.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,129202,2,1,0,0,2,,101.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,143.2032906392241,480.0,70732.68279334411,0,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006786113307795638,70732.68279334411,10,5,10,10_1,10_2,10_0_0 +29181,2,30.0,0.0,2,111,300.0,,,0,48,0.0,0.0,,435.0,187.05454542853033,,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,129203,2,2,0,0,1,,180.0,194.0,12,1.0,3.0,1.0,1.0,1.0,1,1,101.37050404648065,300.0,15046.248664380748,0,1,2,3,45.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028910860753603204,15046.248664380748,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +29182,2,52.0,0.0,2,111,330.0,900.0,0.0,0,42,0.0,0.0,562.7161793127802,1230.0,0.0,1708.65364314581,20,2,2,1,2,1,2,2,2,2,20.0,1,,2,129204,2,2,5,0,1,,120.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,614.678558061587,330.0,26893.78155503565,0,1,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.04573547968636981,26893.78155503565,7,4,7,7_1,7_3,7_0_1 +29183,2,38.0,0.0,9,111,665.0,876.0,0.0,90,47,0.0,0.0,1133.9583613424206,1541.0,0.0,1663.089545995255,20,1,2,2,1,2,2,2,2,0,,1,2007.0,6,129205,2,1,1,0,1,,291.0,730.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1887.85691220068,665.0,49518.22453394311,1,1,2,3,108.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03111985565927743,27510.124741079504,7,4,7,7_1,7_2,7_0_0 +29184,2,41.0,0.0,2,120,0.0,0.0,0.0,56,63,0.0,0.0,0.0,2230.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,129206,2,2,5,0,1,,357.0,700.0,43,2.0,3.0,6.0,5.0,2.5999999999999996,3,2,101.573056876353,0.0,38907.044667731025,4,1,2,3,92.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05731609838383669,14964.247949127319,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +29185,1,61.0,270.0,2,111,120.0,170.0,0.0,0,77,0.0,0.0,204.62406520464734,290.0,0.0,322.74568814976413,70,1,1,1,1,1,2,2,2,0,,2,,2,129207,1,3,0,1,1,820.0,0.0,282.0,11,0.0,4.0,4.0,1.0,1.0,1,1,285.172553322895,120.0,6060.0,0,7,2,3,70.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.04785478547854786,6060.0,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +29186,2,36.0,0.0,2,111,0.0,0.0,840.0,0,37,711.910924449706,0.0,529.4673639483848,1515.0,0.0,1005.255003954332,41,2,1,2,2,1,2,2,2,2,35.0,2,,2,129208,2,2,0,1,1,675.0,0.0,365.0,22,2.0,0.0,3.0,2.0,1.5,2,2,779.335024638706,0.0,7876.709491252547,0,1,2,3,68.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.1923391997232446,5251.1396608350315,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +29187,0,79.0,0.0,6,211,1800.0,0.0,0.0,0,75,0.0,66.2163638505112,3069.36097806971,1865.0,20.783838380947813,0.0,41,2,2,2,2,1,2,2,2,0,,1,,4,129209,2,2,3,0,1,,500.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1606.07815291457,1800.0,37856.35944201759,0,5,0,1,100.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.04926517043606672,37856.35944201759,9,5,9,9_1,9_1,9_0_0 +29188,2,43.0,0.0,7,111,360.0,,,85,85,0.0,66.2163638505112,,674.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,129210,1,1,0,0,2,,1800.0,,41,1.0,2.0,3.0,8.0,3.6999999999999993,4,3,133.09357987720924,360.0,25162.0,6,6,0,1,64.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02678642397265718,6800.540540540542,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29189,2,74.0,0.0,2,111,297.0,31.0,0.0,78,77,0.0,0.0,506.4445613815022,328.0,0.0,58.85362548613346,70,0,0,0,0,0,0,0,0,0,,2,,2,129211,2,3,0,1,1,546.0,0.0,295.0,41,0.0,8.0,3.0,2.0,1.5,2,2,360.435760817377,297.0,27227.485388665344,5,5,2,3,75.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012046650482697334,18151.656925776897,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +29190,2,43.0,0.0,2,111,470.0,904.0,0.0,34,45,0.0,158.91927324122688,801.4442553848687,1494.0,0.0,1716.2476593375693,41,0,0,0,0,0,0,0,0,2,5.0,1,,2,129212,1,1,2,0,1,,362.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,1060.60148462275,470.0,50640.35393273898,1,1,1,2,120.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02950216347192884,22017.545188147385,6,3,6,6_1,6_2,6_0_1 +29191,2,78.0,0.0,1,120,534.0,0.0,0.0,77,78,0.0,0.0,910.5770901606807,1797.0,748.2181817141213,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129213,1,2,1,0,2,,224.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,233.239927529201,534.0,21952.38119123907,5,5,0,1,72.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.081859001278511,14634.92079415938,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +29192,2,42.0,0.0,2,111,737.0,90.0,0.0,46,48,0.0,0.0,1256.732800465209,827.0,0.0,170.865364314581,71,2,1,2,1,1,2,2,2,2,20.0,2,,2,129214,2,3,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1550.80015505545,737.0,74976.89234484486,1,1,1,2,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011030065052527634,35703.28206897374,9,5,9,9_0,9_3,9_0_1 +29193,1,21.0,357.0,5,111,240.0,,,0,81,0.0,0.0,,516.0,382.4226262094398,,60,0,0,0,0,0,0,0,0,0,,2,,3,129215,2,2,0,0,2,,240.0,500.0,32,1.0,0.0,2.0,3.0,1.6,1,1,106.6200448504494,240.0,14735.46284246704,0,4,2,3,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035017563107207446,9209.6642765419,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29194,2,25.0,0.0,1,120,1300.0,0.0,0.0,11,54,0.0,0.0,2216.7607063836795,1330.0,41.567676761895626,0.0,31,2,2,2,2,1,2,2,2,2,20.0,1,,1,129216,2,2,3,0,1,,210.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,152.428301081239,1300.0,47671.64718141357,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.027899182819060342,31781.09812094238,8,4,8,8_1,8_0,8_1_0 +29195,2,63.0,0.0,7,300,900.0,0.0,0.0,78,75,0.0,0.0,1534.680489034855,906.0,8.313535352379127,0.0,33,0,0,0,0,0,0,0,0,0,,1,,5,129217,2,1,1,0,1,,150.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1215.79149920806,900.0,43624.05032089898,5,5,0,1,115.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020768360418976558,29082.700213932654,8,4,8,8_1,8_0,8_0_0 +29196,2,58.0,0.0,2,111,656.0,1225.0,0.0,33,33,0.0,0.0,1118.6115564520721,1881.0,0.0,2325.6674587262414,10,0,0,0,0,0,0,0,0,2,45.0,1,,2,129218,2,1,1,0,1,,462.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,773.750079514389,656.0,96490.88955616573,1,1,1,2,170.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019494068389794474,64327.25970411048,10,5,10,10_1,10_2,10_0_1 +29197,2,66.0,0.0,7,111,480.0,,,55,74,0.0,0.0,,502.0,30.482962958723462,,50,0,0,0,0,0,0,0,0,0,,1,,5,129219,1,2,0,0,2,,376.0,860.0,42,1.0,2.0,3.0,2.0,1.5,2,2,116.17440603145813,480.0,46741.200903955556,1,5,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010739989351825092,31160.80060263704,8,4,8,8_1,8_3,8_0_0 +29198,2,58.0,0.0,6,111,1700.0,0.0,0.0,77,34,0.0,0.0,2898.840923732504,1760.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,40.0,1,,4,129220,2,1,2,0,1,,300.0,,42,1.0,2.0,7.0,3.0,2.0,3,3,361.065365766324,1700.0,49452.5366302434,5,1,0,1,170.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03558968093304332,24726.2683151217,7,4,7,7_1,7_3,7_0_0 +29199,2,35.0,0.0,2,111,240.0,120.0,0.0,0,46,0.0,0.0,409.2481304092947,360.0,0.0,227.8204857527747,20,0,0,0,0,0,0,0,0,0,,2,,2,129221,2,1,0,1,1,400.0,0.0,305.0,12,1.0,0.0,2.0,1.0,1.0,1,1,295.014780867044,240.0,22792.307832926526,0,4,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01579480246752073,22792.307832926526,6,3,6,6_0,6_4,6_0_1 +29200,2,83.0,0.0,2,112,640.0,0.0,0.0,86,90,738.277995725621,1522.9763685617575,1091.3283477581192,2670.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129222,2,1,2,0,2,,100.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1714.13817252997,640.0,25667.18280632762,5,5,0,1,95.0,7,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10402388217462559,17111.45520421841,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +29201,2,91.0,0.0,1,111,500.0,0.0,0.0,77,74,0.0,0.0,852.6002716860306,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,129223,1,2,0,1,2,,0.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,582.016687897659,500.0,331370.61850143387,5,5,0,1,145.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0015088845301407929,220913.74566762257,10,5,10,10_0,10_4,10_1_0 +29202,2,74.0,0.0,6,111,419.0,816.0,0.0,72,86,0.0,0.0,714.4790276728936,1235.0,0.0,1549.179303118868,70,0,0,0,0,0,0,0,0,0,,1,,4,129224,2,1,2,0,1,,0.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1461.28692605103,419.0,79499.68794018884,5,5,0,1,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01553465217283803,52999.7919601259,10,5,10,10_1,10_3,10_0_0 +29203,2,83.0,0.0,2,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,644.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,129225,1,3,0,4,2,1240.0,0.0,308.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1250.36843478775,0.0,18562.152764906463,0,5,2,3,68.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03469425169356132,18562.152764906463,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +29204,2,45.0,0.0,9,111,720.0,,,55,52,0.0,66.2163638505112,,888.0,163.49952859678947,,50,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,129226,2,1,0,0,2,,3649.0,,43,2.0,0.0,4.0,4.0,2.5,3,2,256.59495768963404,720.0,34383.463234709685,1,1,1,2,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025826368738317635,13753.385293883874,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +29205,2,65.0,0.0,1,111,380.0,1115.0,0.0,0,86,0.0,0.0,647.9762064813832,1495.0,0.0,2116.832013452865,20,0,0,0,0,0,0,0,0,0,,2,,1,129227,2,1,0,0,1,,400.0,1500.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1437.11870742802,380.0,57519.60274377211,0,6,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02599113917145177,57519.60274377211,10,5,10,10_0,10_4,10_1_0 +29206,2,30.0,0.0,2,221,0.0,0.0,0.0,54,68,0.0,0.0,0.0,887.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129228,2,1,0,0,1,,360.0,296.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2606.82983921823,0.0,28487.0,4,1,2,3,65.0,1,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03113700986414856,15826.111111111111,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +29207,2,58.0,0.0,7,111,48.0,36.0,0.0,54,78,0.0,0.0,81.84962608185893,84.0,0.0,68.3461457258324,50,0,0,0,0,0,0,0,0,0,,2,,5,129229,2,3,0,1,1,,0.0,540.0,42,1.0,2.0,4.0,4.0,2.3,3,3,1052.04932100987,48.0,60809.0921147829,1,5,2,3,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0013813723750626316,26438.735702079524,7,4,7,7_0,7_4,7_0_0 +29208,2,70.0,0.0,2,111,490.0,1611.0,0.0,75,34,0.0,0.0,835.54826625231,2101.0,0.0,3058.490021231,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,129230,2,2,3,0,2,,191.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,224.42144930062,490.0,109258.38455135474,5,5,0,1,180.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01922964547414177,72838.92303423649,10,5,10,10_1,10_2,10_0_1 +29209,2,44.0,0.0,1,112,600.0,0.0,0.0,68,48,1054.6828510366015,794.5963662061343,1023.1203260232367,2380.0,249.40606057137379,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,1,129231,2,1,2,0,1,,240.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,555.231572206742,600.0,38536.02805300894,1,1,0,1,80.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06176038684438748,25690.685368672624,7,4,7,7_1,7_0,7_1_0 +29210,2,66.0,0.0,6,111,1128.0,,,75,77,0.0,0.0,,1238.0,152.4148147936173,,60,0,0,0,0,0,0,0,0,0,,1,,4,129232,2,1,0,0,2,,1000.0,,41,1.0,3.0,4.0,3.0,2.0,3,3,139.50932701655614,1128.0,58688.6484543197,5,5,0,1,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021094368887427984,29344.32422715985,8,4,8,8_1,8_3,8_0_0 +29211,2,58.0,0.0,5,111,1600.0,0.0,0.0,77,43,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,7.0,1,,3,129233,2,1,2,0,1,,250.0,,42,1.0,1.0,5.0,3.0,2.0,3,3,1139.57518755884,1600.0,54502.90973368552,5,1,0,1,100.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02935623084745364,27251.45486684276,7,4,7,7_1,7_2,7_0_0 +29212,2,57.0,0.0,2,120,1000.0,,,55,31,0.0,0.0,,1050.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,0,,1,,2,129234,2,1,0,0,2,,1820.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,85.17693809554576,1000.0,9937.298805454615,1,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10566251660095514,6624.865870303077,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +29213,2,76.0,0.0,2,300,407.0,0.0,0.0,77,75,544.2163511348864,0.0,694.0166211524289,923.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129235,1,3,3,0,1,,275.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,802.73581402308,407.0,40585.23792186383,5,5,0,1,88.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02274225918736741,27056.825281242553,7,4,7,7_1,7_0,7_0_1 +29214,2,67.0,0.0,1,111,661.0,966.0,0.0,77,78,0.0,0.0,1127.1375591689325,1627.0,0.0,1833.9549103098361,70,0,0,0,0,0,0,0,0,0,,2,,1,129236,2,1,0,0,1,,550.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,655.237563398736,661.0,39445.96888285034,5,5,0,1,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04124629324816407,26297.312588566896,7,4,7,7_0,7_4,7_1_0 +29215,1,39.0,385.0,2,111,240.0,200.0,0.0,85,85,0.0,0.0,409.2481304092947,440.0,0.0,379.7008095879578,41,0,0,0,0,0,0,0,0,0,,2,,2,129237,2,2,0,1,1,70.0,200.0,341.0,41,0.0,0.0,4.0,5.0,2.5999999999999996,3,2,275.14400401001,240.0,24740.625205690052,6,7,2,3,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01778451418838054,9515.62507911156,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +29216,1,29.0,313.0,9,112,1500.0,0.0,0.0,85,47,0.0,0.0,2557.8008150580918,1572.0,99.7624242285495,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,129238,2,1,1,0,1,,330.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,1319.66368653091,1500.0,21518.944623485088,7,1,1,2,111.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0730519097244374,8966.22692645212,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +29217,0,56.0,0.0,2,111,623.0,562.0,0.0,77,56,0.0,0.0,1062.339938520794,1185.0,0.0,1066.9592749421615,71,1,2,2,1,1,2,2,2,0,,2,,2,129239,1,2,0,2,2,172.0,0.0,,42,2.0,3.0,3.0,4.0,2.3,3,3,1096.69378228108,623.0,48202.87081539001,7,1,5,0,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024583598029635577,20957.769919734787,5,3,5,5_0,5_4,5_0_1 +29218,2,54.0,0.0,8,111,924.0,0.0,0.0,34,31,0.0,0.0,1575.6053020757845,924.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,2000.0,6,129240,2,1,0,0,1,,0.0,,43,2.0,4.0,5.0,3.0,2.0,3,2,793.456826031864,924.0,386102.11032546917,1,1,0,1,127.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002393149312810292,193051.05516273458,10,5,10,10_0,10_4,10_0_0 +29219,2,49.0,0.0,1,112,300.0,0.0,0.0,0,63,791.0121382774512,0.0,511.56016301161833,1230.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129241,2,1,1,0,1,,100.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1113.13135848422,300.0,16303.1636381756,0,4,0,1,60.0,7,4,5,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0754454796196625,16303.1636381756,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +29220,2,52.0,0.0,2,111,415.0,904.0,0.0,56,47,0.0,0.0,707.6582254994054,1319.0,0.0,1716.2476593375693,50,0,0,0,0,0,0,0,0,2,45.0,1,,2,129242,2,1,3,0,1,,432.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,311.549048896676,415.0,40958.999414763275,1,1,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032202935102085994,27305.999609842183,7,4,7,7_1,7_3,7_0_1 +29221,2,74.0,0.0,5,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1292.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,129243,2,2,0,0,1,,76.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,354.375750321377,0.0,14289.755105490114,0,5,0,1,55.0,5,4,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.09041442561206767,14289.755105490114,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +29222,2,50.0,0.0,2,111,700.0,1200.0,0.0,43,34,0.0,0.0,1193.6403803604428,1900.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,129244,2,1,1,0,1,,800.0,,43,2.0,0.0,7.0,5.0,2.8,4,4,359.767490860761,700.0,86041.5099106866,1,1,1,2,170.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022082364686210772,30729.110682388073,8,4,8,8_1,8_3,8_0_1 +29223,2,53.0,0.0,2,111,400.0,83.0,0.0,75,38,0.0,0.0,682.0802173488245,483.0,0.0,157.57583597900248,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,129245,2,1,0,1,2,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,744.385023542591,400.0,84393.39260668946,5,1,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005723196865079161,56262.26173779298,10,5,10,10_0,10_4,10_0_1 +29224,2,51.0,0.0,8,111,581.0,1249.0,0.0,0,42,0.0,291.3520009422493,990.7215156991675,2050.0,0.0,2371.2315558767964,31,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,129246,2,1,2,0,1,,480.0,,22,2.0,3.0,7.0,2.0,1.5,2,2,2803.36845635047,581.0,123446.37123452593,0,1,0,1,176.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0166064014640444,82297.58082301728,10,5,10,10_1,10_3,10_0_0 +29225,2,64.0,0.0,5,111,690.0,,,86,55,0.0,0.0,,690.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,129247,2,2,0,0,2,,240.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,105.87946918255527,690.0,53628.19521266948,6,1,0,1,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012866366232607989,35752.13014177966,9,5,9,9_0,9_2,9_0_0 +29226,2,63.0,0.0,2,211,620.0,,,77,77,0.0,0.0,,708.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,129248,2,1,0,0,1,,370.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,82.23153982982286,620.0,30296.739834954926,6,5,0,1,84.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023368851033375663,20197.826556636617,5,3,5,5_1,5_2,5_0_1 +29227,1,47.0,235.0,2,221,135.0,378.0,0.0,0,56,0.0,0.0,230.20207335522826,513.0,0.0,717.6345301212402,71,0,0,0,0,0,0,0,0,0,,2,,2,129249,2,3,0,0,1,,129.0,222.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2768.04060359986,135.0,6060.0,0,4,2,3,54.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08465346534653466,6060.0,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +29228,2,93.0,0.0,2,111,339.0,1170.0,0.0,78,74,0.0,0.0,578.0629842031287,1509.0,0.0,2221.249736089553,71,0,0,0,0,0,0,0,0,0,,1,,2,129250,2,2,2,0,1,,332.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,323.196700050649,339.0,38474.07557289288,5,5,0,1,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03922121526067736,25649.38371526192,7,4,7,7_1,7_3,7_0_1 +29229,2,47.0,0.0,9,120,800.0,,,0,21,0.0,0.0,,865.0,90.06329965077386,,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,129251,2,1,0,0,1,,184.0,,12,1.0,4.0,7.0,1.0,1.0,1,1,104.39411504465185,800.0,17917.59747441367,0,1,1,2,180.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04827656170059742,17917.59747441367,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +29230,2,55.0,0.0,1,112,1409.0,2376.0,0.0,0,42,0.0,158.91927324122688,2402.6275656112343,3905.0,0.0,4510.845617904939,30,0,0,0,0,0,0,0,0,2,15.0,1,,1,129252,2,1,1,0,1,,482.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,961.484586295782,1409.0,48865.539556918535,0,1,1,2,200.0,9,0,7,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07991316652610496,48865.539556918535,10,5,10,10_1,10_0,10_1_0 +29231,2,67.0,0.0,1,300,1129.0,0.0,0.0,52,74,0.0,0.0,1925.1714134670572,1239.0,152.4148147936173,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,129253,2,2,1,0,1,,355.0,695.0,42,1.0,2.0,6.0,2.0,1.5,2,2,2480.72395004137,1129.0,35233.69109760737,4,5,2,3,87.0,0,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03516520584140948,23489.127398404915,6,3,6,6_1,6_1,6_1_0 +29232,2,82.0,0.0,1,111,400.0,2240.0,0.0,75,74,0.0,0.0,682.0802173488245,2708.0,94.22006732696343,4252.649067385128,71,0,0,0,0,0,0,0,0,0,,1,,1,129254,2,1,3,0,2,,180.0,,41,0.0,4.0,10.0,2.0,1.5,2,2,712.153001454425,400.0,50713.55207020379,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05339795556523552,33809.03471346919,9,5,9,9_1,9_4,9_1_0 +29233,2,59.0,0.0,2,111,900.0,0.0,0.0,0,52,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,2,2,2,2,1,2,2,2,1,15.0,2,,2,129255,1,2,0,0,1,,390.0,410.0,12,1.0,2.0,4.0,1.0,1.0,1,1,310.8827726728,900.0,24600.840819759425,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.036584115420848495,24600.840819759425,7,4,7,7_0,7_3,7_0_1 +29234,2,68.0,0.0,6,211,1500.0,0.0,0.0,86,78,0.0,609.190547424703,2557.8008150580918,2050.0,124.70303028568689,0.0,50,2,2,1,2,1,2,2,2,0,,1,,4,129256,2,1,2,0,2,,350.0,,41,3.0,0.0,6.0,5.0,3.0,5,5,538.899041263995,1500.0,42722.70677094998,6,5,0,1,100.0,2,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04798385109330038,14240.902256983327,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +29235,2,86.0,0.0,6,120,1300.0,0.0,0.0,0,75,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129257,2,2,2,0,2,,210.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1064.87797017816,1300.0,21286.15920838418,0,5,0,1,100.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.061072548940062275,21286.15920838418,6,3,6,6_1,6_1,6_0_0 +29236,2,46.0,0.0,6,111,430.0,0.0,0.0,0,56,0.0,0.0,733.2362336499863,430.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,129258,2,1,0,1,1,,430.0,380.0,32,1.0,0.0,1.0,4.0,2.1,2,1,659.90196931037,430.0,12750.958554814846,0,4,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03372295487837102,6071.885026102307,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +29237,1,85.0,59.0,2,111,186.0,172.0,0.0,0,78,0.0,0.0,317.16730106720337,358.0,0.0,326.5426962456437,71,2,1,2,1,1,2,2,2,0,,2,,2,129259,2,2,0,0,1,532.0,167.0,259.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1647.17422712416,186.0,16943.220279299327,0,5,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.021129395362780752,16943.220279299327,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +29238,2,80.0,0.0,2,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129260,2,1,0,1,1,,0.0,723.0,21,1.0,3.0,4.0,2.0,1.5,2,2,875.263647934485,300.0,17248.40546142045,0,5,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017392912096773856,11498.936974280301,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +29239,2,35.0,0.0,9,111,1100.0,0.0,0.0,46,47,0.0,0.0,1875.7205977092674,1125.0,34.63973063491302,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2009.0,6,129261,2,1,1,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1272.53590727163,1100.0,58884.01783659277,1,1,1,2,85.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0191053539030226,32713.34324255154,8,4,8,8_1,8_2,8_0_0 +29240,2,63.0,0.0,1,400,2.0,0.0,0.0,71,71,0.0,1324.327277010224,3.4104010867441223,1062.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129262,2,3,2,0,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1122.36613999432,2.0,23145.084551003467,5,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04588447269050726,15430.056367335645,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +29241,1,39.0,235.0,7,211,540.0,,,85,67,0.0,0.0,,632.0,127.47420873647992,,70,0,0,0,0,0,0,0,0,0,,1,,5,129263,2,1,0,0,2,,620.0,,42,2.0,1.0,4.0,6.0,2.8999999999999995,3,2,173.66116028626115,540.0,23111.15232932623,7,4,0,1,49.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.027346105074909737,7969.362872181459,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +29242,2,52.0,0.0,1,300,840.0,0.0,0.0,0,48,0.0,0.0,1432.3684564325313,875.0,48.49562288887823,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,129264,2,1,2,0,1,,40.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,1388.52717734268,840.0,19034.28559068036,0,1,1,2,98.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045969679073661736,19034.28559068036,5,3,5,5_1,5_0,5_1_0 +29243,2,46.0,0.0,5,111,744.0,,,90,52,0.0,0.0,,828.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,129265,2,2,0,0,2,,400.0,517.0,43,2.0,1.0,5.0,3.0,2.0,3,2,81.23135696141564,744.0,27862.463759751874,1,1,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029717400698644234,13931.231879875937,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +29244,2,64.0,0.0,2,111,100.0,,,0,77,0.0,0.0,,340.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,2,129266,2,2,0,0,2,,100.0,,21,1.0,12.0,5.0,3.0,2.0,3,3,114.6827142600993,100.0,24941.30911582015,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013632002972303473,12470.654557910075,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +29245,1,43.0,357.0,6,111,376.0,,,81,38,0.0,0.0,,514.0,191.2113131047199,,12,0,0,0,0,0,0,0,0,0,,2,,4,129267,2,2,0,0,2,,319.0,367.0,43,2.0,0.0,1.0,3.0,1.8,2,2,154.35344336093277,376.0,9648.102160720993,4,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0532747261002872,5360.056755956107,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29246,0,90.0,0.0,2,111,150.0,,,0,71,0.0,165.540909626278,,275.0,0.0,,71,2,2,1,2,1,2,2,2,0,,1,,2,129268,1,3,0,0,2,,250.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,122.85387589256727,150.0,11935.302251542791,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.02304089114831195,11935.302251542791,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +29247,2,44.0,0.0,8,120,540.0,0.0,0.0,47,46,0.0,297.97363732730037,920.8082934209131,1565.0,1108.4713803172167,0.0,31,0,0,0,0,0,0,0,0,2,35.0,1,1999.0,6,129269,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,2983.60446560881,540.0,55732.22093863922,1,1,1,2,110.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028080704010038534,30962.344965910677,8,4,8,8_1,8_1,8_0_0 +29248,1,39.0,210.0,1,111,945.0,945.0,0.0,56,65,0.0,0.0,1611.4145134865978,1890.0,0.0,1794.0863253031007,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,129270,1,1,1,0,1,,580.0,,43,3.0,0.0,6.0,5.0,2.5999999999999996,3,3,385.40719526322,945.0,26382.05102661289,1,1,1,2,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07163961581658161,10146.942702543422,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +29249,2,55.0,0.0,2,111,250.0,0.0,0.0,47,47,0.0,0.0,426.3001358430153,250.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,35.0,2,,2,129271,2,3,0,1,1,1300.0,0.0,416.0,43,3.0,0.0,5.0,5.0,3.0,5,5,193.315764567535,250.0,75571.59248150022,4,1,2,3,162.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0033081213692989137,25190.53082716674,7,4,7,7_0,7_4,7_0_1 +29250,2,55.0,0.0,1,111,350.0,900.0,0.0,0,68,0.0,0.0,596.8201901802214,1250.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,40.0,2,,1,129272,2,1,0,0,1,,250.0,300.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1006.66394853801,350.0,16735.481909290433,0,1,2,3,44.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07469160474584736,16735.481909290433,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +29251,2,77.0,0.0,2,112,630.0,0.0,0.0,75,74,3796.8582637317654,26.486545540204478,1074.2763423243985,4250.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,129273,2,2,2,0,1,,500.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,673.843415199876,630.0,70284.972069987,5,5,0,1,138.0,9,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06046811821690728,46856.648046657996,10,5,10,10_1,10_1,10_0_1 +29252,2,52.0,0.0,2,111,0.0,0.0,0.0,62,52,0.0,0.0,0.0,1513.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,2,,2,129274,2,1,0,1,1,400.0,0.0,770.0,43,2.0,5.0,3.0,2.0,1.5,2,2,1453.37058033744,0.0,34773.52694422471,4,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04351011050523547,23182.351296149805,6,3,6,6_0,6_4,6_0_1 +29253,2,70.0,0.0,7,111,400.0,,,0,72,0.0,0.0,,484.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,5,129275,2,1,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,78.32043950332108,400.0,13203.972392821948,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036655635561849254,13203.972392821948,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +29254,2,31.0,0.0,2,111,878.0,543.0,0.0,85,38,0.0,0.0,1497.1660770806698,1421.0,0.0,1030.8876980313055,10,0,0,0,0,0,0,0,0,0,,2,,2,129276,2,3,0,0,1,,0.0,540.0,42,1.0,0.0,3.0,3.0,1.8,2,2,2417.22453420048,878.0,35109.59067285703,6,4,2,3,78.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04047327162656341,19505.32815158724,5,3,5,5_0,5_2,5_0_1 +29255,2,81.0,0.0,5,120,800.0,0.0,0.0,0,86,0.0,0.0,1364.160434697649,860.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,129277,2,1,2,0,1,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,2268.66279224992,800.0,10181.636510463894,0,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08446579281397042,10181.636510463894,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +29256,1,26.0,300.0,1,111,480.0,,,85,63,0.0,0.0,,606.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,1,129278,1,1,0,0,2,,400.0,660.0,42,1.0,0.0,3.0,2.0,1.5,2,2,107.55238464449168,480.0,25457.68833498267,6,1,2,3,52.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.023804203744896404,16971.79222332178,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +29257,2,38.0,0.0,9,120,0.0,,,47,43,0.0,0.0,,431.0,0.0,,20,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,129279,2,1,0,0,1,,232.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,246.56921428710842,0.0,67488.9365518772,1,1,1,2,74.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006386231907339363,32137.588834227234,8,4,8,8_1,8_1,8_0_0 +29258,1,57.0,237.0,1,222,480.0,0.0,0.0,0,42,0.0,1112.4349126885882,818.4962608185893,1383.0,87.29212119998083,0.0,60,2,2,2,2,1,1,2,2,0,,1,,1,129280,1,2,3,0,1,,120.0,300.0,12,1.0,3.0,2.0,1.0,1.0,1,1,1717.58004632147,480.0,5494.075892719216,0,4,3,4,35.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,1,0.2517256818080653,5494.075892719216,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +29259,1,27.0,243.0,2,111,0.0,,,0,53,0.0,0.0,,78.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,2,129281,1,3,0,0,2,,593.0,235.0,32,1.0,0.0,3.0,3.0,1.6,1,1,122.2645781805114,0.0,9293.980052132629,0,4,2,3,47.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008392529310637142,5808.7375325828925,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +29260,2,65.0,0.0,2,111,200.0,100.0,0.0,0,78,0.0,0.0,341.04010867441224,300.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,129282,2,1,0,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1889.67441692752,200.0,12632.959368630105,0,5,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023747404804051978,12632.959368630105,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +29261,1,24.0,327.0,1,111,0.0,0.0,0.0,84,46,0.0,0.0,0.0,785.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,1,129283,2,2,0,0,2,,0.0,550.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1920.36072879388,0.0,14117.405757895052,3,1,2,3,47.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.055605117077618504,9411.603838596702,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +29262,2,47.0,0.0,7,112,400.0,,,0,64,0.0,0.0,,500.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,2,90.0,1,,5,129284,2,2,0,0,2,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,137.08134927983596,400.0,28681.0,0,1,0,1,100.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017433143893169693,28681.0,8,4,8,8_1,8_1,8_0_0 +29263,2,72.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,123.0,0.0,0.0,20,1,2,2,2,2,2,2,1,0,,2,,2,129285,1,2,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,861.003711804502,0.0,34931.969980393915,0,5,0,1,38.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.003521129786526084,34931.969980393915,9,5,9,9_0,9_4,9_0_1 +29265,2,80.0,0.0,2,111,230.0,350.0,0.0,0,77,0.0,0.0,392.1961249755741,580.0,0.0,664.4764167789261,71,0,0,0,0,0,0,0,0,0,,2,,2,129287,1,3,0,1,2,,0.0,,21,0.0,1.0,4.0,3.0,2.0,3,3,1738.46874133227,230.0,27858.491935556478,0,5,0,1,60.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02081950456405473,13929.245967778239,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +29266,2,82.0,0.0,2,111,240.0,,,86,78,0.0,0.0,,764.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,129288,2,2,0,0,2,,436.0,262.0,41,0.0,0.0,5.0,2.0,1.5,2,2,83.63966074033759,240.0,18753.361455975064,5,5,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04073936300932224,12502.240970650042,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +29267,2,69.0,0.0,6,111,222.0,946.0,0.0,0,77,0.0,0.0,378.5545206285976,1168.0,0.0,1795.9848293510404,71,0,0,0,0,0,0,0,0,0,,1,,4,129289,2,2,5,0,1,,533.0,464.0,11,0.0,3.0,5.0,1.0,1.0,1,1,238.356154247582,222.0,19812.765218917626,0,5,2,3,91.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05895189223182083,19812.765218917626,5,3,5,5_1,5_2,5_0_0 +29268,2,52.0,0.0,6,111,480.0,0.0,0.0,0,63,0.0,647.5960384579995,818.4962608185893,1004.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,1,3.0,2,,4,129290,2,1,0,1,1,,0.0,510.0,12,1.0,2.0,3.0,1.0,1.0,1,1,420.111480258847,480.0,24245.322113356233,0,1,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04141004995957211,24245.322113356233,7,4,7,7_0,7_2,7_0_0 +29269,2,87.0,0.0,2,111,348.0,0.0,0.0,78,78,1792.9608467622227,132.4327277010224,593.4097890934773,2340.0,266.03313127613205,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,129291,1,2,3,0,2,,249.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1039.32606890297,348.0,31243.452183712405,5,5,0,1,60.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.07489569290361169,20828.968122474937,5,3,5,5_1,5_3,5_0_1 +29270,2,35.0,0.0,2,111,491.0,1425.0,0.0,55,37,0.0,0.0,837.253466795682,1916.0,0.0,2705.368268314199,12,0,0,0,0,0,0,0,0,2,30.0,1,,2,129292,2,2,3,0,1,,250.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,310.869869904111,491.0,64169.498980875294,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02985842231012328,30556.90427660728,8,4,8,8_1,8_3,8_0_1 +29271,2,60.0,0.0,1,112,555.0,0.0,0.0,0,38,1360.540877837216,0.0,946.386301571494,1890.0,62.351515142843446,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,1,129293,2,3,3,0,1,,45.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,909.818449941735,555.0,58436.343817640925,0,1,0,1,100.0,7,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03234288589132165,58436.343817640925,10,5,10,10_1,10_0,10_1_0 +29272,2,80.0,0.0,1,211,1800.0,3413.0,0.0,74,11,0.0,0.0,3069.36097806971,5213.0,0.0,6479.594315618499,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,129294,1,3,4,0,2,,746.0,,42,2.0,0.0,9.0,3.0,2.0,3,3,845.773391433699,1800.0,296772.0599742232,5,1,0,1,120.0,4,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017565669761677654,148386.0299871116,10,5,10,10_1,10_1,10_1_0 +29273,2,63.0,0.0,5,112,1280.0,0.0,0.0,75,74,0.0,201.29774610555404,2182.6566955162384,1548.0,160.72835014599644,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,129295,2,1,3,0,1,,300.0,,41,1.0,2.0,8.0,3.0,2.0,3,3,1607.48584638309,1280.0,82860.99778340777,5,5,0,1,127.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018681889446303217,41430.498891703886,9,5,9,9_1,9_2,9_0_0 +29274,2,77.0,0.0,1,111,390.0,300.0,0.0,0,74,0.0,0.0,665.0282119151038,690.0,0.0,569.5512143819367,12,0,0,0,0,0,0,0,0,0,,2,,1,129296,1,2,0,0,1,,39.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1796.68780505551,390.0,56055.0,0,5,0,1,79.0,8,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.01230933904201231,56055.0,10,5,10,10_0,10_3,10_1_0 +29275,2,48.0,0.0,9,300,1700.0,0.0,0.0,52,46,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,129297,2,1,1,0,1,,300.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,927.613910267024,1700.0,64702.21481537081,1,1,1,2,95.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026274216498631264,28131.3977458134,8,4,8,8_1,8_0,8_0_0 +29276,2,42.0,0.0,9,221,539.0,1130.0,0.0,63,45,0.0,0.0,919.1030928775409,1669.0,0.0,2145.3095741719617,31,0,0,0,0,0,0,0,0,2,8.0,1,2004.0,6,129298,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1787.2427926294,539.0,41299.91374327812,1,1,1,2,116.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04041170667751437,17956.48423620788,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +29277,2,35.0,0.0,7,112,800.0,0.0,0.0,0,47,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,129299,2,1,2,0,1,,190.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,302.204152614226,800.0,20077.49641867026,0,1,0,1,130.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0398456054140332,20077.49641867026,5,3,5,5_1,5_0,5_0_0 +29278,1,85.0,160.0,2,111,400.0,0.0,0.0,0,78,0.0,0.0,682.0802173488245,400.0,0.0,0.0,70,2,2,2,2,2,2,2,1,0,,2,,2,129300,2,2,0,1,1,768.0,0.0,285.0,11,0.0,0.0,3.0,1.0,1.0,1,1,361.296934817365,400.0,19551.78894549654,0,5,2,3,70.0,6,5,3,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.020458485978702933,19551.78894549654,5,3,5,5_0,5_2,5_0_1 +29279,2,52.0,0.0,7,221,400.0,0.0,0.0,56,42,2109.365702073203,105.94618216081791,682.0802173488245,2480.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,5,129301,2,1,2,0,1,,500.0,,43,2.0,1.0,7.0,5.0,3.0,5,5,521.499803611484,400.0,70538.9334270853,1,1,1,2,145.0,1,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03515788911897182,23512.977809028434,6,3,6,6_1,6_1,6_0_0 +29280,2,48.0,0.0,7,221,0.0,0.0,0.0,64,62,0.0,0.0,0.0,2736.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,129302,2,1,2,0,1,,204.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,2474.09741530124,0.0,38068.18788119641,1,1,0,1,140.0,1,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07187103332941763,25378.79192079761,7,4,7,7_1,7_1,7_0_0 +29281,2,36.0,0.0,1,111,257.0,800.0,0.0,37,38,0.0,0.0,438.23653964661975,1057.0,0.0,1518.8032383518312,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,129303,2,3,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,777.560165508569,257.0,76572.86533099104,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013803845467073105,42540.48073943947,9,5,9,9_0,9_4,9_1_0 +29282,2,53.0,0.0,1,112,1054.0,0.0,0.0,47,42,0.0,0.0,1797.2813727141524,1054.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,129304,2,3,1,0,1,,149.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,2038.16141136183,1054.0,65008.36702277957,1,1,0,1,190.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.016213297584150486,43338.91134851971,10,5,10,10_1,10_1,10_1_0 +29283,2,61.0,0.0,2,111,205.0,0.0,0.0,0,45,0.0,0.0,349.56611139127256,205.0,0.0,0.0,50,2,2,1,1,1,2,2,2,3,30.0,2,,2,129305,2,3,0,1,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1045.53519640763,205.0,38550.32470202191,0,1,1,2,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.005317724340444998,38550.32470202191,9,5,9,9_0,9_4,9_0_1 +29284,2,65.0,0.0,2,211,900.0,0.0,0.0,77,78,2109.365702073203,0.0,1534.680489034855,3485.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,2,129306,2,1,2,0,1,,270.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,252.817677965536,900.0,30903.737723104423,5,5,0,1,100.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.11276953070290022,20602.491815402947,5,3,5,5_1,5_1,5_0_1 +29285,2,54.0,0.0,1,120,350.0,0.0,0.0,56,69,1265.6194212439218,0.0,596.8201901802214,1640.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,129307,2,2,2,0,2,,342.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,594.263720002249,350.0,36173.50250254965,1,1,1,2,110.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04533705299575031,24115.6683350331,6,3,6,6_1,6_0,6_1_0 +29286,2,81.0,0.0,2,111,373.0,0.0,0.0,0,75,0.0,0.0,636.0398026777788,373.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129308,2,1,1,1,1,,100.0,258.0,11,0.0,1.0,1.0,1.0,1.0,1,1,327.399566220671,373.0,29924.63640352877,0,5,2,3,40.0,6,4,3,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012464646018422973,29924.63640352877,8,4,8,8_1,8_2,8_0_1 +29287,2,38.0,0.0,9,111,240.0,,,0,85,0.0,264.8654554020448,,566.0,174.58424239996165,,10,0,0,0,0,0,0,0,0,0,,1,2009.0,6,129309,2,1,0,0,1,,0.0,,31,0.0,0.0,5.0,5.0,2.2,1,1,192.14480305007558,240.0,20126.800000000003,0,6,0,1,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02812170836894091,9148.545454545456,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29288,2,48.0,0.0,1,400,0.0,0.0,0.0,0,11,0.0,0.0,0.0,2312.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129310,2,1,2,0,1,,96.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,838.295730528351,0.0,6224.477574980339,0,1,0,1,49.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.3714367948393328,6224.477574980339,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +29289,0,57.0,0.0,2,111,1500.0,0.0,0.0,0,37,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,2,129311,2,1,2,0,1,,500.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,476.05301468934,1500.0,57917.358794220156,0,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025898971072377215,38611.5725294801,9,5,9,9_1,9_4,9_0_1 +29290,2,53.0,0.0,1,300,680.0,0.0,0.0,46,62,0.0,595.9472746546007,1159.5363694930015,2330.0,1662.707070475825,0.0,60,2,2,2,2,1,2,1,2,2,10.0,1,,1,129312,1,3,4,0,1,,470.0,,43,3.0,0.0,5.0,4.0,2.5,4,3,1005.1383603361,680.0,69227.12425337588,1,1,0,1,110.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.033657327602863364,27690.84970135035,7,4,7,7_1,7_0,7_1_0 +29291,2,37.0,0.0,1,111,548.0,1966.0,0.0,34,42,0.0,0.0,934.4498977678895,2514.0,0.0,3732.458958249625,20,0,0,0,0,0,0,0,0,2,7.0,1,,1,129313,2,1,2,0,1,,166.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,220.149352961335,548.0,55793.32188557159,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045059156096782474,30996.28993642866,8,4,8,8_1,8_3,8_1_0 +29292,2,45.0,0.0,2,120,1200.0,0.0,0.0,0,63,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129314,2,1,0,0,1,,100.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2190.20705594953,1200.0,17365.460159712416,0,1,1,2,76.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06910268941700609,17365.460159712416,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +29293,2,75.0,0.0,6,111,396.0,,,0,77,0.0,0.0,,546.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,4,129315,2,1,0,0,2,,327.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,123.41626250291719,396.0,31956.895477927403,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017085514466732905,21304.596985284934,6,3,6,6_1,6_2,6_0_0 +29294,2,57.0,0.0,9,111,576.0,,,54,34,0.0,0.0,,576.0,0.0,,10,0,0,0,0,0,0,0,0,2,5.0,1,2012.0,6,129316,2,1,0,0,2,,148.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,206.81752056347926,576.0,8722.746052963812,1,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06603425073968386,5815.164035309208,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +29295,2,52.0,0.0,7,111,800.0,0.0,0.0,55,63,0.0,529.7309108040896,1364.160434697649,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,129317,2,1,1,0,1,,200.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1034.56614249863,800.0,37062.24573119466,1,1,1,2,98.0,3,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03237796243388405,24708.16382079644,7,4,7,7_1,7_2,7_0_0 +29296,2,76.0,0.0,2,112,1000.0,1200.0,0.0,75,75,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,0,,1,,2,129318,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,517.160617096594,1000.0,49131.388848568495,5,5,0,1,130.0,7,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04477789151820608,32754.259232378998,8,4,8,8_1,8_1,8_0_1 +29297,2,50.0,0.0,7,111,450.0,,,0,52,0.0,0.0,,470.0,27.711784507930417,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,129319,2,1,0,0,2,,180.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,126.20652910680475,450.0,36248.01500811451,0,1,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012966227251196663,36248.01500811451,9,5,9,9_1,9_2,9_0_0 +29298,2,81.0,0.0,2,111,600.0,110.0,0.0,0,77,0.0,0.0,1023.1203260232367,710.0,0.0,208.8354452733768,71,0,0,0,0,0,0,0,0,0,,2,,2,129320,2,2,0,1,1,700.0,200.0,450.0,21,0.0,2.0,5.0,2.0,1.5,2,2,1056.93097259714,600.0,39757.253937182184,0,5,2,3,100.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017858376263155,26504.835958121457,7,4,7,7_0,7_2,7_0_1 +29299,2,26.0,0.0,2,111,0.0,0.0,0.0,21,43,0.0,0.0,0.0,292.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,129321,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1256.4086629392,0.0,69877.65181085067,1,1,1,2,73.0,9,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004178732290409592,46585.10120723378,10,5,10,10_0,10_3,10_0_1 +29300,2,65.0,0.0,1,111,867.0,1320.0,0.0,85,72,0.0,0.0,1478.408871103577,2187.0,0.0,2506.0253432805216,71,0,0,0,0,0,0,0,0,0,,1,,1,129322,2,1,1,0,1,,900.0,,41,0.0,0.0,9.0,4.0,2.1,2,2,345.520559783396,867.0,27017.50223637204,6,5,0,1,170.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08094752730531,12865.477255415257,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +29301,2,72.0,0.0,2,111,220.0,500.0,0.0,78,78,0.0,0.0,375.14411954185346,720.0,0.0,949.2520239698945,60,0,0,0,0,0,0,0,0,0,,2,,2,129323,2,1,0,1,1,37.0,210.0,288.0,41,0.0,2.0,3.0,2.0,1.5,2,2,564.904239521071,220.0,19196.44776353254,5,5,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03750693924569643,12797.631842355026,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +29302,2,74.0,0.0,1,111,37.0,180.0,0.0,0,77,0.0,0.0,63.09242010476626,217.0,0.0,341.730728629162,60,0,0,0,0,0,0,0,0,0,,1,,1,129324,2,1,2,0,1,,259.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1237.38214675533,37.0,26674.00758720648,0,5,0,1,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.008135260488719312,26674.00758720648,7,4,7,7_1,7_4,7_1_0 +29304,1,34.0,456.0,2,111,300.0,150.0,0.0,0,54,0.0,0.0,511.56016301161833,741.0,0.0,284.77560719096834,43,2,2,2,1,2,2,2,2,0,,2,,2,129326,2,1,0,1,1,906.0,0.0,421.0,32,1.0,0.0,4.0,4.0,1.9,1,1,208.506092590926,300.0,17918.434498084407,0,4,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,1,0.041354059143906656,9430.754998991793,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +29305,2,43.0,0.0,2,111,453.0,1236.0,0.0,21,65,0.0,0.0,772.4558461475438,1689.0,0.0,2346.551003253579,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,129327,1,1,2,0,2,,345.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,1563.06257616669,453.0,29809.04320496493,1,1,0,1,120.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056660657921374806,11465.016617294206,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +29306,2,42.0,0.0,1,111,0.0,0.0,0.0,90,38,0.0,39.72981831030672,0.0,1246.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,50.0,1,,1,129328,1,2,2,0,2,,912.0,,43,2.0,0.0,8.0,6.0,2.6999999999999997,2,2,595.922320570644,0.0,346766.9994600524,1,1,1,2,250.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0035931908224834967,128432.22202224165,10,5,10,10_1,10_4,10_1_0 +29307,2,45.0,0.0,1,112,807.0,0.0,0.0,46,34,2109.365702073203,397.2981831030672,1376.0968385012534,3107.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,129329,2,3,3,0,2,,438.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1840.53523087469,807.0,75055.05120354019,1,1,0,1,139.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041396281132021255,41697.25066863344,9,5,9,9_1,9_0,9_1_0 +29308,2,62.0,0.0,5,111,300.0,1500.0,0.0,72,37,0.0,0.0,511.56016301161833,1800.0,0.0,2847.7560719096837,33,0,0,0,0,0,0,0,0,2,5.0,1,,3,129330,2,1,2,0,2,,320.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,244.73324748572,300.0,80599.02146635858,5,1,0,1,110.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022332777337145542,53732.68097757239,10,5,10,10_1,10_2,10_0_0 +29309,2,49.0,0.0,9,212,701.0,0.0,0.0,67,21,0.0,0.0,1195.3455809038148,1551.0,1177.7508415870427,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,129331,2,1,1,0,1,,339.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,658.002585785117,701.0,79280.71459439021,1,1,1,2,90.0,1,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01956339581366168,52853.80972959348,10,5,10,10_1,10_0,10_0_0 +29310,2,69.0,0.0,1,111,300.0,0.0,0.0,0,77,0.0,662.163638505112,511.56016301161833,835.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129332,2,1,2,0,1,,350.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1310.44719417718,300.0,18027.963102585487,0,5,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.046316935265983995,18027.963102585487,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +29312,2,25.0,0.0,2,111,1440.0,0.0,0.0,52,46,0.0,0.0,2455.488782455768,1440.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,129334,2,2,0,0,1,,394.0,759.0,43,2.0,0.0,3.0,2.0,1.5,2,2,891.785751875008,1440.0,45538.53657331805,1,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03162156951797448,30359.024382212036,8,4,8,8_0,8_4,8_0_1 +29313,1,36.0,247.0,1,111,0.0,0.0,600.0,0,48,0.0,0.0,378.19097424884626,600.0,0.0,718.0392885388085,42,0,0,0,0,0,0,0,0,2,35.0,2,,1,129335,2,2,0,0,1,,190.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,1530.34742751223,0.0,17419.754856167514,0,1,1,2,56.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03444365348158549,13399.811427821163,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +29314,2,58.0,0.0,2,112,950.0,0.0,0.0,85,72,3058.5802680061443,0.0,1619.9405162034582,4350.0,692.7946126982605,0.0,50,2,2,1,2,1,2,2,2,0,,1,,2,129336,2,1,2,0,1,,680.0,,41,0.0,2.0,5.0,5.0,2.8,4,3,927.371468383703,950.0,11061.188743169421,6,7,0,1,100.0,10,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.3932669535800337,3950.4245511319364,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +29315,2,64.0,0.0,5,111,0.0,0.0,1200.0,0,43,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,20,2,2,1,2,1,1,2,2,2,60.0,1,,3,129337,2,2,1,0,2,,260.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,485.70985339766,0.0,32716.753855448827,0,1,1,2,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03667845548803264,32716.753855448827,8,4,8,8_1,8_3,8_0_0 +29316,2,45.0,0.0,2,111,700.0,0.0,0.0,0,67,527.3414255183008,0.0,1193.6403803604428,1230.0,41.567676761895626,0.0,71,2,2,1,2,1,2,2,2,2,20.0,1,,2,129338,1,3,4,0,1,,200.0,430.0,12,1.0,5.0,2.0,1.0,1.0,1,1,371.382418152765,700.0,13638.269554335602,0,1,2,3,45.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,0,0,0,0.09018739474972345,13638.269554335602,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +29317,2,78.0,0.0,1,400,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1661.0,0.0,0.0,60,2,2,2,2,2,2,2,1,0,,1,,1,129339,2,2,3,0,1,,182.0,,11,0.0,1.0,14.0,1.0,1.0,1,1,1332.19527716512,0.0,18799.392131404966,0,5,0,1,200.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.0883539206156165,18799.392131404966,5,3,5,5_1,5_0,5_1_0 +29318,2,61.0,0.0,2,111,181.0,133.0,0.0,0,52,0.0,0.0,308.64129835034305,314.0,0.0,252.50103837599193,70,2,1,2,1,2,2,2,2,3,20.0,2,,2,129340,1,1,0,1,1,1050.0,0.0,309.0,12,1.0,2.0,4.0,1.0,1.0,1,1,173.77529845991,181.0,30115.23085624993,0,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010426617730371287,30115.23085624993,8,4,8,8_0,8_2,8_0_1 +29319,2,70.0,0.0,1,111,500.0,2000.0,0.0,77,74,0.0,304.5952737123515,852.6002716860306,2730.0,0.0,3797.008095879578,12,0,0,0,0,0,0,0,0,0,,1,,1,129341,2,2,2,0,2,,300.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,338.189960751843,500.0,45560.716658097925,5,5,1,2,190.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05992004077738255,30373.811105398618,8,4,8,8_1,8_2,8_1_0 +29320,2,26.0,0.0,9,111,150.0,,,0,67,0.0,0.0,,194.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,129342,2,1,0,0,1,,200.0,480.0,12,1.0,0.0,3.0,1.0,1.0,1,1,122.46395276355828,150.0,14526.81505952374,0,4,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013354613465173436,14526.81505952374,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +29321,2,60.0,0.0,5,112,1012.0,0.0,0.0,68,78,0.0,0.0,1725.6629498925258,1111.0,137.1733333142556,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,129343,2,1,1,0,1,,270.0,363.0,42,1.0,2.0,3.0,2.0,1.5,2,2,1849.35843688196,1012.0,27343.37133242881,1,5,2,3,74.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04063141982358157,18228.91422161921,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +29322,1,43.0,98.0,9,120,1023.0,0.0,0.0,0,68,0.0,0.0,1744.4201558696186,1083.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,129344,2,1,1,0,1,,220.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1058.40292854887,1023.0,14863.309218442137,0,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.07286398904062578,14863.309218442137,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +29323,1,47.0,350.0,5,111,1600.0,,,85,67,0.0,0.0,,1780.0,249.40606057137379,,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,129345,2,1,0,0,2,,600.0,800.0,42,1.0,0.0,5.0,2.0,1.5,2,2,48.38816550297917,1600.0,24393.673161619005,6,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07296974048175128,16262.448774412669,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +29324,2,66.0,0.0,6,111,400.0,,,77,77,0.0,0.0,,532.0,182.89777775234077,,60,0,0,0,0,0,0,0,0,0,,1,,4,129346,2,2,0,0,2,,480.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,106.0047670432656,400.0,34146.00763555563,5,5,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01558015231760324,22764.00509037042,6,3,6,6_1,6_2,6_0_0 +29325,2,30.0,0.0,7,111,340.0,0.0,0.0,0,56,0.0,0.0,579.7681847465008,340.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,5,129347,2,1,0,1,1,,0.0,540.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1081.35673375664,340.0,19919.627312787816,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01706859243203461,19919.627312787816,5,3,5,5_0,5_4,5_0_0 +29326,2,69.0,0.0,9,111,660.0,572.0,0.0,55,78,0.0,662.163638505112,1125.4323586255605,1732.0,0.0,1085.9443154215594,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,129348,2,2,1,0,1,,360.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,571.473628055473,660.0,38261.64197994404,1,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04526726795749849,25507.761319962694,7,4,7,7_1,7_4,7_0_0 +29327,2,67.0,0.0,5,221,639.0,0.0,0.0,77,78,958.7067115922708,0.0,1089.6231472147472,1638.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,129349,2,2,2,0,1,,286.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1508.93876869045,639.0,33952.30974775729,5,5,0,1,125.0,1,1,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04824414044785857,22634.873165171524,6,3,6,6_1,6_1,6_0_0 +29328,2,58.0,0.0,5,111,1050.0,0.0,0.0,56,67,0.0,92.70290939071567,1790.4605705406643,1120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,129350,2,2,2,0,1,,380.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1406.28757789617,1050.0,51453.29060055988,1,1,1,2,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02176731530534634,34302.19373370658,9,5,9,9_1,9_3,9_0_0 +29329,1,51.0,389.0,2,112,324.0,0.0,0.0,0,85,0.0,0.0,552.4849760525478,324.0,0.0,0.0,42,1,1,2,2,1,2,2,2,0,,2,,2,129351,2,2,0,1,1,717.0,0.0,759.0,31,0.0,1.0,4.0,4.0,1.9,2,1,258.173527754485,324.0,14517.847842030505,0,7,2,3,75.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02231735747098755,7640.972548437108,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +29330,2,66.0,0.0,5,111,444.0,1740.0,0.0,78,74,0.0,0.0,757.1090412571951,2184.0,0.0,3303.397043415233,42,0,0,0,0,0,0,0,0,0,,1,,3,129352,1,2,3,0,1,,180.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,232.0863482647,444.0,56544.734671987244,5,5,0,1,89.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03862428593341641,37696.48978132483,9,5,9,9_1,9_2,9_0_0 +29331,2,44.0,0.0,1,400,600.0,0.0,0.0,0,69,0.0,0.0,1023.1203260232367,635.0,48.49562288887823,0.0,44,0,0,0,0,0,0,0,0,1,5.0,2,,1,129353,2,1,0,0,1,,60.0,236.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2204.33540048956,600.0,15054.864522879881,0,1,2,3,63.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.042179057741432886,15054.864522879881,3,2,3_0,3_0_0,3_0_0,3_1_0_0 +29333,2,49.0,0.0,1,400,580.0,0.0,0.0,85,85,2636.7071275915036,0.0,989.0163151557955,3230.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,129355,2,1,1,0,1,,100.0,,41,1.0,1.0,7.0,4.0,2.3,3,3,1706.33192806397,580.0,22833.49930757687,6,5,0,1,180.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14145882575817825,9927.60839459864,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +29334,2,58.0,0.0,7,111,800.0,0.0,0.0,77,35,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,129356,2,1,0,0,1,,0.0,,42,1.0,3.0,3.0,2.0,1.5,2,2,964.43761741775,800.0,78214.21394521637,5,4,0,1,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010228319887742457,52142.80929681091,10,5,10,10_0,10_4,10_0_0 +29335,1,31.0,262.0,2,111,220.0,300.0,0.0,85,46,0.0,0.0,375.14411954185346,520.0,0.0,569.5512143819367,20,2,2,2,2,1,2,2,2,0,,2,,2,129357,2,2,0,1,1,1270.0,280.0,324.0,42,1.0,0.0,3.0,4.0,2.1,2,2,402.284324517866,220.0,20615.500812235845,6,4,2,3,75.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.025223738425571803,9816.905148683736,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +29336,2,54.0,0.0,2,111,415.0,1714.0,0.0,0,31,0.0,0.0,707.6582254994054,2129.0,0.0,3254.0359381687986,10,0,0,0,0,0,0,0,0,2,20.0,1,,2,129358,2,1,2,0,2,,170.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,338.858287507514,415.0,49923.79567741295,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042644994658593734,49923.79567741295,10,5,10,10_1,10_3,10_0_1 +29337,2,54.0,0.0,1,111,600.0,0.0,0.0,0,37,0.0,0.0,1023.1203260232367,1061.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,2,,1,129359,2,1,0,1,1,,0.0,,32,1.0,0.0,6.0,2.0,1.3,2,1,152.306768877531,600.0,64942.96877006716,0,1,0,1,150.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016337411425654213,49956.129823128584,10,5,10,10_0,10_3,10_1_0 +29338,2,50.0,0.0,9,111,150.0,,,0,68,0.0,0.0,,172.0,30.482962958723462,,50,0,0,0,0,0,0,0,0,2,15.0,1,2004.0,6,129360,2,1,0,0,1,,210.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,101.24512528309506,150.0,24212.064717303012,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007103896425532069,24212.064717303012,7,4,7,7_1,7_3,7_0_0 +29339,2,34.0,0.0,9,120,1300.0,0.0,0.0,67,62,0.0,0.0,2216.7607063836795,1390.0,124.70303028568689,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,129361,2,2,1,0,1,,260.0,530.0,43,2.0,0.0,3.0,3.0,1.8,2,2,646.574048231534,1300.0,40826.21645365138,1,1,2,3,77.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03404675036634903,22681.231363139657,6,3,6,6_1,6_0,6_0_0 +29340,2,69.0,0.0,9,112,0.0,0.0,0.0,78,78,0.0,0.0,0.0,664.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,8,2013.0,6,129362,2,1,0,0,1,,311.0,474.0,41,0.0,1.0,3.0,2.0,1.5,2,2,184.015141817645,0.0,33893.9892317413,5,5,2,3,76.0,9,0,3,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019590494215952964,22595.992821160868,6,3,6,6_0,6_0,6_0_0 +29341,0,76.0,0.0,1,400,250.0,0.0,0.0,0,71,0.0,1059.4618216081792,426.3001358430153,1230.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129363,1,1,4,0,2,,170.0,,21,0.0,3.0,4.0,3.0,2.0,3,3,2405.26092172553,250.0,21057.0,0,5,5,0,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05841287932753954,10528.5,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +29342,2,52.0,0.0,2,111,343.0,630.0,0.0,0,64,0.0,0.0,584.883786376617,973.0,0.0,1196.057550202067,71,2,2,2,2,2,1,2,2,0,,1,,2,129364,1,3,1,0,1,,150.0,389.0,22,1.0,0.0,5.0,2.0,1.5,2,2,443.230109468331,343.0,44865.14923738889,0,1,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.021687211934851635,29910.099491592595,8,4,8,8_1,8_3,8_0_1 +29343,2,72.0,0.0,1,111,561.0,0.0,0.0,0,75,0.0,0.0,956.6175048317264,625.0,88.67771042537734,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,129365,2,2,3,0,1,,129.0,196.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1669.52780745314,561.0,30717.37043941801,0,5,2,3,40.0,6,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020346793721573574,30717.37043941801,8,4,8,8_1,8_2,8_1_0 +29344,2,62.0,0.0,7,111,850.0,,,0,81,0.0,0.0,,1102.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,129366,2,1,0,0,2,,840.0,,22,2.0,0.0,7.0,2.0,1.5,2,2,76.65057716911467,850.0,24536.609211883453,0,4,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04491248120242648,16357.739474588969,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +29345,2,60.0,0.0,1,400,450.0,0.0,0.0,77,62,263.6707127591504,0.0,767.3402445174275,1050.0,484.95622888878233,0.0,44,0,0,0,0,0,0,0,0,2,15.0,1,,1,129367,1,2,3,0,1,,150.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,1172.75321539632,450.0,44770.625579681415,5,1,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023452877559891172,29847.08371978761,8,4,8,8_1,8_0,8_1_0 +29346,2,67.0,0.0,5,211,1960.0,0.0,0.0,0,72,0.0,66.2163638505112,3342.19306500924,2070.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,129368,2,2,3,0,1,,500.0,,21,0.0,2.0,6.0,2.0,1.5,2,2,1209.35454660324,1960.0,94276.92018005413,0,5,0,1,150.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02195659336396039,62851.28012003609,10,5,10,10_1,10_1,10_0_0 +29347,0,79.0,0.0,5,221,1282.0,0.0,0.0,0,74,0.0,463.51454695357836,2186.0670966029825,1666.0,47.110033663481715,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,129369,2,1,2,0,1,,282.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,776.569239513731,1282.0,38233.929468526454,0,5,0,1,165.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04357386287934187,38233.929468526454,9,5,9,9_1,9_1,9_0_0 +29348,2,27.0,0.0,2,111,0.0,0.0,1036.0,54,46,0.0,0.0,653.0097488696746,1036.0,0.0,1239.8145048770095,20,0,0,0,0,0,0,0,0,0,,2,,2,129370,1,2,0,0,2,,425.0,537.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1839.32645873633,0.0,24840.620580056966,1,1,2,3,49.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.041705882373636906,16560.413720037977,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +29349,2,39.0,0.0,1,400,800.0,0.0,0.0,0,54,1687.4925616585624,0.0,1364.160434697649,2480.0,110.84713803172167,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,129371,2,2,1,0,2,,250.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,855.475893318985,800.0,9386.106160430276,0,4,0,1,141.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.26422032284858715,5866.316350268922,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +29350,2,37.0,0.0,9,111,470.0,957.0,0.0,62,46,0.0,66.2163638505112,801.4442553848687,1477.0,0.0,1816.8683738783782,31,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,129372,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,2072.03512852288,470.0,55957.46788787227,1,1,1,2,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026395047091116,37304.97859191485,9,5,9,9_1,9_3,9_0_0 +29351,1,32.0,124.0,2,111,540.0,180.0,0.0,0,52,0.0,0.0,920.8082934209131,720.0,0.0,341.730728629162,50,2,2,2,2,1,2,2,2,2,5.0,2,,2,129373,2,3,0,1,1,840.0,0.0,699.0,32,1.0,0.0,4.0,3.0,1.6,1,1,686.300530031008,540.0,21181.900225183414,0,1,2,3,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03399128465084466,13238.687640739632,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +29352,1,70.0,421.0,2,111,300.0,1000.0,0.0,85,78,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,71,2,2,1,1,1,2,2,2,0,,1,,2,129374,1,3,3,0,1,,500.0,422.0,41,0.0,3.0,4.0,6.0,3.3,5,4,364.276944760361,300.0,18656.101651747216,6,5,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,1,1,1,0,1,0.06968229613383618,5653.364136893096,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +29353,1,57.0,40.0,7,111,600.0,,,0,52,0.0,0.0,,738.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,1,5.0,1,,5,129375,1,3,0,0,2,,500.0,650.0,32,2.0,1.0,4.0,2.0,1.5,2,2,125.0545911691533,600.0,18665.498039215683,0,1,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03953818957573395,12443.665359477121,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +29354,2,68.0,0.0,2,111,250.0,900.0,0.0,0,75,0.0,66.2163638505112,426.3001358430153,1200.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,1,,2,129376,2,2,1,0,1,,50.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1013.77184399066,250.0,30118.546071796143,0,5,0,1,100.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039842560697965226,30118.546071796143,8,4,8,8_1,8_2,8_0_1 +29355,2,25.0,0.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,1059.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,129377,2,1,0,0,1,,0.0,840.0,22,2.0,0.0,3.0,2.0,1.5,2,2,932.37802129525,0.0,39955.811727025364,0,1,2,3,47.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026504279458392586,26637.20781801691,7,4,7,7_0,7_4,7_1_0 +29356,2,51.0,0.0,8,111,720.0,,,55,46,0.0,0.0,,846.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,5.0,1,2003.0,6,129378,2,1,0,0,2,,600.0,450.0,43,2.0,7.0,4.0,3.0,2.0,3,2,72.91491050499367,720.0,75925.01857549399,1,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011142572183354855,37962.509287746994,9,5,9,9_1,9_3,9_0_0 +29357,2,42.0,0.0,9,111,190.0,,,0,11,0.0,0.0,,256.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,129379,2,1,0,0,2,,95.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,244.88212229625384,190.0,36684.6910622793,0,1,1,2,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0069783877848498405,36684.6910622793,9,5,9,9_1,9_2,9_0_0 +29358,2,43.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,763.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,1,129380,2,3,0,0,1,,0.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1282.12650186356,0.0,20089.66226711328,0,1,0,1,40.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03797973255374377,20089.66226711328,5,3,5,5_0,5_4,5_1_0 +29359,2,55.0,0.0,2,111,845.0,0.0,0.0,56,56,0.0,0.0,1440.8944591493917,845.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,2,129381,2,1,0,1,1,600.0,0.0,379.0,43,2.0,1.0,3.0,3.0,2.0,3,3,173.095889448067,845.0,49398.154878293455,1,1,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017105902074316344,24699.077439146728,7,4,7,7_0,7_4,7_0_1 +29360,1,54.0,150.0,7,111,600.0,,,85,62,0.0,0.0,,740.0,193.98249155551292,,60,0,0,0,0,0,0,0,0,2,20.0,2,,5,129382,2,2,0,0,2,,400.0,670.0,42,1.0,0.0,3.0,2.0,1.5,2,2,35.91397080315094,600.0,21425.511316765722,6,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03453826557786469,14283.674211177147,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +29361,2,54.0,0.0,1,112,400.0,1800.0,0.0,85,11,0.0,0.0,682.0802173488245,2200.0,0.0,3417.30728629162,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,129383,2,1,2,0,1,,500.0,,42,1.0,0.0,5.0,5.0,2.8,4,3,469.910346751427,400.0,163743.7051360126,5,1,0,1,125.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013435630995234808,58479.89469143308,10,5,10,10_1,10_1,10_1_0 +29362,2,64.0,0.0,5,111,271.0,307.0,0.0,0,75,0.0,0.0,462.10934725382856,578.0,0.0,582.8407427175152,30,0,0,0,0,0,0,0,0,0,,2,,3,129384,2,1,0,0,1,,0.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1659.41485296112,271.0,29763.052348585155,0,5,1,2,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019420051183946407,29763.052348585155,8,4,8,8_0,8_3,8_0_0 +29363,2,75.0,0.0,2,111,204.0,360.0,0.0,0,75,0.0,0.0,347.86091084790047,564.0,0.0,683.461457258324,50,2,1,2,1,2,2,2,2,0,,2,,2,129385,2,1,0,1,1,396.0,0.0,255.0,11,0.0,1.0,2.0,1.0,1.0,1,1,735.541620038271,204.0,20726.372021665928,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.027211708803182393,20726.372021665928,5,3,5,5_0,5_4,5_0_1 +29364,2,34.0,0.0,6,111,360.0,,,46,42,0.0,0.0,,406.0,63.73710436823996,,20,0,0,0,0,0,0,0,0,2,40.0,1,,4,129386,2,2,0,0,2,,230.0,640.0,43,2.0,0.0,3.0,2.0,1.5,2,2,96.16796082052794,360.0,52051.783453306176,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007799924864518971,34701.18896887078,9,5,9,9_1,9_3,9_0_0 +29365,0,33.0,0.0,5,111,390.0,,,0,55,0.0,0.0,,651.0,198.1392592317025,,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,129387,2,1,0,0,2,,130.0,,32,1.0,0.0,3.0,5.0,2.2,1,1,68.19622845640006,390.0,23870.89214067688,0,1,5,0,44.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02727170799329582,10850.40551848949,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +29366,1,46.0,300.0,7,211,420.0,,,0,56,0.0,0.0,,570.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,5,129388,2,2,0,0,2,,250.0,520.0,32,1.0,0.0,2.0,2.0,1.5,2,1,100.97861475222147,420.0,10684.862325806218,0,4,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05334649924532285,7123.241550537478,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29367,2,78.0,0.0,2,111,700.0,0.0,0.0,0,77,0.0,0.0,1193.6403803604428,790.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129389,1,2,0,0,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,329.835721136184,700.0,27039.49071829713,0,5,0,1,68.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02921652660659845,27039.49071829713,7,4,7,7_0,7_2,7_0_1 +29368,2,33.0,0.0,5,111,500.0,0.0,0.0,0,35,0.0,0.0,852.6002716860306,500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,3,129390,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,767.495807518468,500.0,55390.69398404337,0,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009026787065423609,55390.69398404337,10,5,10,10_0,10_4,10_0_0 +29369,1,41.0,370.0,9,111,450.0,800.0,0.0,85,68,0.0,0.0,767.3402445174275,1250.0,0.0,1518.8032383518312,50,2,2,2,2,1,2,2,2,0,,1,2009.0,6,129391,1,1,1,0,1,,400.0,431.0,42,1.0,3.0,4.0,5.0,2.5999999999999996,3,2,73.4763299695976,450.0,38870.696961061854,6,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.03215790036520747,14950.268061946868,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +29370,1,28.0,330.0,7,111,0.0,0.0,0.0,55,67,0.0,0.0,0.0,158.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,5,129392,2,1,0,1,1,380.0,0.0,478.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1077.15241706395,0.0,21585.06835909353,4,1,2,3,48.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0073198748955287185,14390.04557272902,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +29371,2,61.0,0.0,2,111,440.0,0.0,0.0,0,77,0.0,0.0,750.2882390837069,440.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129393,2,2,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2186.7715846718,440.0,40528.92466358159,0,5,1,2,90.0,6,5,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01085644397556332,40528.92466358159,9,5,9,9_0,9_2,9_0_1 +29373,2,54.0,0.0,1,400,380.0,0.0,0.0,42,42,1792.9608467622227,331.081819252556,647.9762064813832,2394.0,88.67771042537734,0.0,30,0,0,0,0,0,0,0,0,2,35.0,1,,1,129395,2,1,1,0,1,,121.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,973.673312340312,380.0,71586.59203027455,1,1,1,2,135.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.033442016613775355,47724.3946868497,10,5,10,10_1,10_0,10_1_0 +29374,2,84.0,0.0,1,300,230.0,0.0,0.0,71,78,0.0,1165.408003768997,392.1961249755741,1170.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129396,2,1,2,0,1,,120.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,2859.41357289009,230.0,31312.407557049693,5,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03736537977376273,20874.93837136646,5,3,5,5_1,5_0,5_1_0 +29375,1,67.0,129.0,1,111,135.0,460.0,0.0,0,78,0.0,0.0,230.20207335522826,595.0,0.0,873.3118620523029,71,0,0,0,0,0,0,0,0,0,,2,,1,129397,2,2,0,0,1,,120.0,224.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2007.47640050465,135.0,9306.85884585958,0,5,2,3,35.0,6,4,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06393134459804369,9306.85884585958,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +29376,2,55.0,0.0,7,111,500.0,,,62,56,0.0,0.0,,590.0,124.70303028568689,,70,0,0,0,0,0,0,0,0,0,,1,,5,129398,1,2,0,0,2,,200.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,117.58631583285529,500.0,20628.11990407674,4,1,0,1,63.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028601734076763738,13752.07993605116,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +29377,2,81.0,0.0,2,111,440.0,70.0,0.0,74,74,0.0,0.0,750.2882390837069,510.0,0.0,132.89528335578524,12,2,1,2,2,1,2,2,2,0,,2,,2,129399,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,978.799196525506,440.0,107174.14514326607,5,5,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.0047586103842326205,71449.43009551072,10,5,10,10_0,10_4,10_0_1 +29378,2,70.0,0.0,2,111,140.0,108.0,0.0,0,90,0.0,0.0,238.72807607208856,248.0,0.0,205.0384371774972,70,0,0,0,0,0,0,0,0,0,,2,,2,129400,2,3,0,1,1,808.0,0.0,396.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2667.3472380283,140.0,13872.253899591977,0,5,2,3,60.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017877412120267954,13872.253899591977,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +29379,2,52.0,0.0,1,112,733.0,2558.0,0.0,85,38,0.0,72.83800023556232,1249.911998291721,3346.0,0.0,4856.37335462998,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,129401,2,1,2,0,1,,472.0,,42,1.0,2.0,7.0,3.0,2.0,3,3,511.475748592295,733.0,89055.96435208549,6,1,0,1,200.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03757187993351559,44527.982176042744,10,5,10,10_1,10_0,10_1_0 +29380,2,49.0,0.0,2,111,900.0,0.0,0.0,0,54,2109.365702073203,0.0,1534.680489034855,2900.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,90.0,1,,2,129402,2,2,2,0,1,,500.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,743.303063725117,900.0,73093.86112915608,0,1,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03967501449780756,48729.24075277072,10,5,10,10_1,10_4,10_0_1 +29381,2,35.0,0.0,1,300,1595.0,0.0,0.0,47,47,0.0,0.0,2719.7948666784378,1665.0,96.99124577775646,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,129403,2,1,1,0,1,,240.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1481.68434237105,1595.0,57615.18545325591,1,1,1,2,170.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.028898631270584736,24006.327272189963,6,3,6,6_1,6_0,6_1_0 +29382,2,69.0,0.0,1,111,292.0,0.0,0.0,0,77,0.0,0.0,497.91855866464186,292.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,129404,2,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1962.40269381391,292.0,16108.165877472231,0,5,0,1,65.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.018127451767079892,16108.165877472231,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +29383,2,80.0,0.0,2,111,342.0,,,86,78,0.0,0.0,,618.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,129405,2,1,0,0,2,,600.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,87.69514282113784,342.0,17417.28215767635,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035481999683149634,11611.5214384509,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +29384,2,67.0,0.0,1,111,395.0,0.0,0.0,77,78,1054.6828510366015,0.0,673.5542146319642,1485.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,129406,2,1,0,0,1,,266.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1686.74267866104,395.0,27131.62258621172,5,5,0,1,100.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05473318063751471,18087.748390807814,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +29385,2,59.0,0.0,5,120,920.0,970.0,0.0,75,46,0.0,0.0,1568.7844999022964,2454.0,0.0,1841.5489265015954,50,0,0,0,0,0,0,0,0,3,10.0,1,,3,129407,2,1,2,0,1,,270.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1229.38099120868,920.0,103253.15089036242,7,1,0,1,112.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023766829184764904,68835.43392690828,10,5,10,10_1,10_0,10_0_0 +29386,2,58.0,0.0,1,112,940.0,0.0,0.0,74,45,0.0,1589.1927324122687,1602.8885107697374,2280.0,193.98249155551292,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,129408,2,1,2,0,1,,240.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1741.25716498394,940.0,45320.59212991593,5,1,0,1,200.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0503082570824352,30213.72808661062,8,4,8,8_1,8_0,8_1_0 +29387,2,39.0,0.0,9,111,2267.0,0.0,0.0,43,38,0.0,0.0,3865.6896318244626,2267.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,129409,2,1,1,0,1,,690.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,528.88890681889,2267.0,76273.28241917821,1,1,1,2,136.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02972207210830596,42374.04578843234,9,5,9,9_1,9_3,9_0_0 +29388,2,79.0,0.0,2,111,265.0,0.0,0.0,0,75,0.0,0.0,451.8781439935962,265.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,129410,2,2,0,1,1,906.0,0.0,594.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1018.6479932529,265.0,31341.138088319734,0,5,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008455340685243356,31341.138088319734,8,4,8,8_0,8_4,8_0_1 +29389,2,51.0,0.0,6,111,1050.0,400.0,0.0,37,37,0.0,0.0,1790.4605705406643,1450.0,0.0,759.4016191759156,20,0,0,0,0,0,0,0,0,2,8.0,2,,4,129411,2,1,0,0,2,,268.0,,43,2.0,0.0,7.0,6.0,3.5,6,6,607.879977482005,1050.0,105206.20121438138,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013782457528765798,30058.914632680393,8,4,8,8_0,8_3,8_0_0 +29390,2,74.0,0.0,6,112,1000.0,0.0,0.0,0,75,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,41,2,2,1,1,1,2,2,2,0,,1,,4,129412,2,1,2,0,1,,182.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,730.778273661512,1000.0,42380.52945655425,0,5,0,1,130.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02501148554754708,42380.52945655425,9,5,9,9_1,9_0,9_0_0 +29391,0,76.0,0.0,2,111,873.0,0.0,0.0,71,71,0.0,0.0,1488.6400743638094,1003.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129413,2,2,2,0,1,,280.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1059.90163065516,873.0,17894.10482561529,5,5,0,1,120.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05605197967568695,11929.40321707686,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +29392,2,80.0,0.0,2,300,410.0,1200.0,0.0,77,77,0.0,0.0,699.1322227825451,1610.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,129414,2,1,1,0,1,,267.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1397.24603504264,410.0,24127.87736781136,5,5,0,1,102.0,0,0,4,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06672779272941252,16085.251578540907,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +29393,1,42.0,886.0,9,111,1200.0,0.0,0.0,85,21,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,129415,2,1,1,0,1,,950.0,,42,1.0,0.0,6.0,6.0,2.8999999999999995,3,2,275.799146984077,1200.0,3172.383233227343,6,1,1,2,138.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.37826451338894845,1093.925252837015,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +29394,2,85.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,431.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,2,129416,1,1,0,1,1,,0.0,400.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2583.00847569475,0.0,23718.98635314696,0,5,2,3,24.0,6,4,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01817109692559928,23718.98635314696,6,3,6,6_0,6_2,6_0_1 +29395,2,65.0,0.0,6,111,1738.0,0.0,0.0,52,77,0.0,0.0,2963.6385443806425,1802.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,129417,2,1,2,0,1,,416.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,1925.63355062284,1738.0,64139.566534831865,1,5,0,1,190.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02809498251007667,32069.783267415933,8,4,8,8_1,8_2,8_0_0 +29396,2,44.0,0.0,7,212,600.0,0.0,0.0,52,62,843.7462808292812,264.8654554020448,1023.1203260232367,1630.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,5,129418,2,2,3,0,1,,210.0,,43,2.0,0.0,4.0,4.0,2.1,3,2,708.783832649968,600.0,38187.42645564323,1,1,1,2,89.0,1,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04268420659070423,18184.488788401537,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +29397,1,29.0,146.0,6,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,906.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,129419,1,2,0,0,1,,0.0,443.0,32,1.0,0.0,3.0,2.0,1.3,1,1,328.018739116046,0.0,21388.13596889069,0,1,2,3,75.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04235993268968312,16452.412283762067,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +29398,2,65.0,0.0,2,111,700.0,1950.0,0.0,77,77,0.0,0.0,1193.6403803604428,2650.0,0.0,3702.0828934825886,50,0,0,0,0,0,0,0,0,0,,1,,2,129420,2,2,3,0,1,,400.0,625.0,41,0.0,4.0,7.0,2.0,1.5,2,2,1124.00200090127,700.0,63487.2903099441,5,5,2,3,105.0,4,4,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04174063796175164,42324.860206629404,9,5,9,9_1,9_2,9_0_1 +29399,2,35.0,0.0,5,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,169.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,4.0,2,,3,129421,2,2,0,1,1,542.0,0.0,670.0,12,1.0,0.0,3.0,1.0,1.0,1,1,409.505055712603,0.0,9807.985411692569,0,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0172308576028801,9807.985411692569,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +29400,2,63.0,0.0,1,300,320.0,0.0,0.0,0,77,1265.6194212439218,0.0,545.6641738790596,1574.0,74.82181817141213,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129422,2,1,2,0,1,,200.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1007.68383473886,320.0,16878.12181928778,0,5,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09325682186991227,16878.12181928778,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +29401,2,63.0,0.0,2,111,450.0,198.0,0.0,67,67,0.0,0.0,767.3402445174275,648.0,0.0,375.90380149207823,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,129423,2,1,0,1,1,61.0,0.0,477.0,43,2.0,4.0,4.0,2.0,1.5,2,2,309.624227479085,450.0,33919.192170616996,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019104228565954458,22612.794780411332,6,3,6,6_0,6_4,6_0_1 +29402,2,33.0,0.0,9,300,1227.0,0.0,0.0,65,47,0.0,0.0,2092.281066717519,1771.0,96.99124577775646,0.0,43,0,0,0,0,0,0,0,0,2,18.0,1,2011.0,6,129424,2,1,1,0,1,,209.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1601.83552690452,1227.0,5160.873445450981,1,1,1,2,84.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3431589669304983,2867.151914139434,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +29403,2,54.0,0.0,2,211,420.0,0.0,0.0,85,64,0.0,1059.4618216081792,716.1842282162656,1370.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,129425,2,1,2,0,1,,290.0,,42,2.0,2.0,5.0,3.0,2.0,3,3,2229.26804314958,420.0,45152.36995006527,6,1,0,1,80.0,1,2,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030341707456665173,22576.184975032636,6,3,6,6_1,6_1,6_0_1 +29405,1,37.0,400.0,7,112,300.0,,,0,81,0.0,0.0,,468.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,0,,1,,5,129427,2,2,0,0,2,,120.0,430.0,32,1.0,0.0,3.0,3.0,1.6,1,1,146.6861745220548,300.0,9399.56747126427,0,4,2,3,40.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04978952504258716,5874.729669540168,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +29406,2,31.0,0.0,7,211,680.0,,,55,67,0.0,0.0,,680.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,129428,1,2,0,0,2,,120.0,85.0,43,2.0,0.0,2.0,4.0,2.1,2,2,151.74835687879977,680.0,22492.0,1,1,2,3,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03023297172327939,10710.47619047619,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +29407,2,46.0,0.0,1,111,540.0,1700.0,0.0,37,37,0.0,0.0,920.8082934209131,2240.0,0.0,3227.4568814976415,31,0,0,0,0,0,0,0,0,2,1.0,1,,1,129429,1,3,2,0,2,,520.0,630.0,43,2.0,0.0,5.0,3.0,2.0,3,2,650.854481915982,540.0,62631.287173920355,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03576487249543125,31315.643586960177,8,4,8,8_1,8_3,8_1_0 +29408,1,25.0,350.0,9,211,192.0,,,0,81,0.0,0.0,,444.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,129430,2,3,0,0,2,,180.0,550.0,32,1.0,0.0,3.0,2.0,1.3,1,1,116.91680081582163,192.0,6764.526556813966,0,4,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06563652256679442,5203.481966779974,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29409,2,72.0,0.0,1,111,204.0,180.0,0.0,0,77,1434.368677409778,0.0,347.86091084790047,1744.0,0.0,341.730728629162,50,0,0,0,0,0,0,0,0,0,,2,,1,129431,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,249.483842605891,204.0,13343.85547351055,0,5,0,1,80.0,9,7,3,1,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.13069685919950857,13343.85547351055,3,2,3_0,3_0_0,3_3_0,3_1_0_0 +29410,2,69.0,0.0,2,111,360.0,,,0,75,0.0,0.0,,430.0,96.99124577775646,,44,0,0,0,0,0,0,0,0,0,,1,,2,129432,2,1,0,0,2,,160.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,93.26696311012148,360.0,35210.08719948557,0,5,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012212409403129294,35210.08719948557,9,5,9,9_1,9_2,9_0_1 +29411,1,40.0,312.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,1194.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,129433,2,1,0,1,1,,536.0,500.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1181.61108045518,0.0,14246.06592557472,6,1,2,3,64.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08381261228452663,6783.840916940342,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +29412,1,31.0,610.0,2,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,418.0,166.2707070475825,0.0,71,2,2,2,1,2,2,2,2,3,30.0,2,,2,129434,2,2,0,0,1,,356.0,620.0,42,1.0,1.0,1.0,6.0,2.6999999999999997,2,2,966.264802273155,0.0,19398.32796019564,6,1,2,3,34.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.021548248944842786,7184.56591118357,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +29413,2,39.0,0.0,7,111,80.0,0.0,0.0,47,37,0.0,0.0,136.4160434697649,80.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,5,129435,2,1,1,0,1,,480.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,547.83769131463,80.0,62167.9907009199,1,1,0,1,76.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0012868358635695176,29603.805095676144,8,4,8,8_1,8_4,8_0_0 +29414,2,29.0,0.0,1,111,240.0,0.0,0.0,0,38,0.0,0.0,409.2481304092947,240.0,0.0,0.0,12,2,2,2,1,1,2,2,2,3,45.0,2,,1,129436,1,1,0,1,1,564.0,0.0,792.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1205.53190254246,240.0,40153.57264290471,0,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.005977052207393279,26769.048428603142,7,4,7,7_0,7_4,7_1_0 +29415,2,27.0,0.0,8,111,480.0,,,0,55,0.0,0.0,,580.0,138.5589225396521,,43,0,0,0,0,0,0,0,0,3,30.0,2,1999.0,6,129437,1,1,0,0,2,,240.0,480.0,12,1.0,0.0,2.0,1.0,1.0,1,1,174.17296272224806,480.0,18906.58231387965,0,1,2,3,55.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03067714674027637,18906.58231387965,5,3,5,5_0,5_2,5_0_0 +29416,2,45.0,0.0,8,111,342.0,1077.0,0.0,85,62,0.0,0.0,583.1785858332449,1419.0,0.0,2044.6888596311528,31,2,2,1,2,1,1,2,2,2,30.0,2,2003.0,6,129438,2,2,0,0,1,,650.0,566.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1325.20860770058,342.0,51644.705964748784,7,1,2,3,87.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.027476194771417023,24592.71712607085,7,4,7,7_0,7_2,7_0_0 +29417,1,75.0,367.0,2,111,540.0,300.0,0.0,78,75,0.0,0.0,920.8082934209131,840.0,0.0,569.5512143819367,20,0,0,0,0,0,0,0,0,0,,2,,2,129439,2,2,0,1,1,,0.0,459.0,41,0.0,4.0,4.0,2.0,1.5,2,2,310.181053785251,540.0,14714.828338849053,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05708527348445454,9809.885559232702,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +29418,2,62.0,0.0,2,111,350.0,855.0,0.0,78,78,0.0,0.0,596.8201901802214,1205.0,0.0,1623.2209609885197,50,0,0,0,0,0,0,0,0,0,,1,,2,129440,2,1,3,0,1,,507.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1095.28809899775,350.0,23069.56912502942,6,5,0,1,93.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05223331192140171,15379.712750019613,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +29419,2,86.0,0.0,2,111,300.0,900.0,0.0,77,72,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,2,129441,2,2,4,0,1,,300.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1313.81311155322,300.0,31497.939705877376,5,5,0,1,80.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03809772992155691,20998.626470584917,5,3,5,5_1,5_2,5_0_1 +29420,2,45.0,0.0,7,111,0.0,0.0,806.0,0,52,0.0,0.0,508.0365420742835,806.0,0.0,964.5661109371327,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,129442,2,3,0,0,1,,0.0,393.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1639.46673866546,0.0,17645.53841390391,0,1,2,3,72.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0456772687290124,11763.692275935939,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +29421,2,40.0,0.0,8,112,400.0,300.0,0.0,0,53,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,41,0,0,0,0,0,0,0,0,4,120.0,1,2002.0,6,129443,2,1,2,0,1,,400.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,882.066352694187,400.0,38550.728386212904,0,1,1,2,142.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018157892971234872,38550.728386212904,9,5,9,9_1,9_1,9_0_0 +29422,2,61.0,0.0,6,120,334.0,0.0,0.0,35,43,0.0,662.163638505112,569.5369814862685,994.0,221.69427606344334,0.0,41,2,2,1,2,1,2,2,2,2,10.0,1,,4,129444,2,1,2,0,1,,133.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1700.29291058971,334.0,16338.08066658975,1,1,0,1,130.0,0,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.06083945968222947,10892.0537777265,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +29423,2,32.0,0.0,6,111,385.0,600.0,0.0,0,38,0.0,0.0,656.5022091982436,985.0,0.0,1139.1024287638734,12,0,0,0,0,0,0,0,0,1,15.0,2,,4,129445,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,838.176932895086,385.0,48833.90366643758,0,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020170412890357727,48833.90366643758,10,5,10,10_0,10_4,10_0_0 +29424,2,66.0,0.0,6,111,850.0,0.0,0.0,78,77,0.0,0.0,1449.420461866252,920.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129446,2,1,2,0,1,,204.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,598.072856124583,850.0,30024.30786757623,5,5,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03064183874138607,20016.20524505082,5,3,5,5_1,5_4,5_0_0 +29425,2,79.0,0.0,6,112,600.0,0.0,0.0,77,78,0.0,0.0,1023.1203260232367,720.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129447,2,1,2,0,2,,178.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1973.8993159144,600.0,36933.526534031094,5,5,0,1,130.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01949448286062208,24622.351022687395,7,4,7,7_1,7_1,7_0_0 +29426,2,49.0,0.0,8,112,565.0,1700.0,0.0,38,33,0.0,0.0,963.4383070052146,2265.0,0.0,3227.4568814976415,60,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,129448,2,1,2,0,1,,429.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,426.181000867364,565.0,79761.33852476174,1,1,1,2,134.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02839721651984107,39880.66926238087,9,5,9,9_1,9_0,9_0_0 +29427,1,47.0,325.0,2,111,0.0,0.0,861.0,85,68,0.0,0.0,542.7040480470944,861.0,0.0,1030.3863790531902,71,2,1,2,1,1,2,2,2,1,20.0,2,,2,129449,2,2,0,1,1,539.0,0.0,289.0,42,3.0,3.0,4.0,5.0,2.8,5,4,120.537275125474,0.0,18680.7324178442,6,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04609026994988462,6671.690149230071,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +29428,2,59.0,0.0,6,111,540.0,,,78,52,0.0,0.0,,816.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,4,20.0,1,,4,129450,2,3,0,0,2,,460.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,91.71182466907626,540.0,26609.470250150058,7,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030665773964267416,13304.735125075029,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +29429,2,44.0,0.0,8,112,1512.0,0.0,0.0,46,47,0.0,609.190547424703,2578.2632215785566,1972.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,129451,2,1,1,0,1,,151.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,345.26828792649,1512.0,52989.08236227094,1,1,1,2,150.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03721521324936351,21195.63294490838,5,3,5,5_1,5_0,5_0_0 +29430,2,34.0,0.0,9,112,800.0,0.0,0.0,0,33,0.0,0.0,1364.160434697649,830.0,41.567676761895626,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,129452,2,1,1,0,1,,208.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,802.654773546585,800.0,34183.32615387231,0,1,1,2,93.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024280843714969413,34183.32615387231,9,5,9,9_1,9_0,9_0_0 +29431,1,24.0,231.0,5,111,1000.0,0.0,0.0,37,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,129453,1,3,0,0,1,42.0,370.0,416.0,42,1.0,0.0,4.0,4.0,2.1,2,2,221.259732588247,1000.0,27789.882861024777,1,7,2,3,62.0,7,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035984318645779424,13233.27755286894,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +29432,2,51.0,0.0,6,111,1500.0,0.0,0.0,65,45,0.0,83.4326184516441,2557.8008150580918,1643.0,110.84713803172167,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,4,129454,2,2,3,0,1,,240.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1061.46333496282,1500.0,49617.002839684596,1,1,1,2,85.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03311364866815168,33078.001893123066,8,4,8,8_1,8_3,8_0_0 +29433,2,47.0,0.0,2,111,500.0,0.0,0.0,0,37,1582.0242765549024,662.163638505112,852.6002716860306,2500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,129455,2,1,1,0,1,,192.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1977.51075534849,500.0,61956.93440499028,0,1,1,2,130.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.040350608434858895,61956.93440499028,10,5,10,10_1,10_3,10_0_1 +29434,2,59.0,0.0,5,112,580.0,0.0,0.0,11,54,0.0,1589.1927324122687,989.0163151557955,1840.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,18.0,1,,3,129456,2,1,1,0,1,,69.0,,43,2.0,5.0,4.0,2.0,1.5,2,2,2114.6608948925,580.0,35485.14524534612,1,1,0,1,92.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05185268334899422,23656.763496897413,6,3,6,6_1,6_0,6_0_0 +29435,0,49.0,0.0,6,111,483.0,0.0,0.0,0,52,0.0,0.0,823.6118624487056,1323.0,1163.8949493330776,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,129457,2,1,2,0,1,780.0,170.0,,22,2.0,0.0,3.0,2.0,1.5,2,2,1072.59607730444,483.0,51104.0,0,1,5,0,50.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025888384470882906,34069.333333333336,9,5,9,9_1,9_2,9_0_0 +29436,2,71.0,0.0,5,111,500.0,,,0,72,0.0,0.0,,638.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,0,,1,,3,129458,2,1,0,0,2,,450.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,85.17693809554576,500.0,14337.038909699244,0,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0445001233531132,9558.025939799496,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29437,2,49.0,0.0,1,112,420.0,0.0,0.0,56,64,0.0,529.7309108040896,716.1842282162656,940.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,129459,2,3,4,0,1,,170.0,,43,2.0,4.0,3.0,3.0,1.8,2,2,1818.05958973536,420.0,35722.155791587866,1,1,1,2,80.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026314201345635432,19845.642106437703,5,3,5,5_1,5_0,5_1_0 +29438,2,38.0,0.0,2,111,400.0,90.0,0.0,21,52,0.0,0.0,682.0802173488245,490.0,0.0,170.865364314581,43,0,0,0,0,0,0,0,0,2,5.0,2,,2,129460,2,3,0,3,1,816.0,0.0,445.0,43,2.0,0.0,3.0,4.0,2.3,3,3,2878.93587275287,400.0,39165.0984827754,1,1,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012511139228093588,17028.303688163218,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +29439,2,84.0,0.0,1,112,300.0,0.0,0.0,71,71,2847.643697798824,0.0,511.56016301161833,3000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129461,1,2,4,0,2,,100.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1280.94564267986,300.0,27954.732544652412,5,5,0,1,210.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1073163549394746,18636.48836310161,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +29440,2,44.0,0.0,6,111,600.0,,,52,52,0.0,0.0,,720.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,2,15.0,2,,4,129462,2,3,0,0,2,,300.0,530.0,43,2.0,0.0,3.0,2.0,1.5,2,2,97.41822555028745,600.0,54604.395190011426,1,1,2,3,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01318575176035842,36402.930126674284,9,5,9,9_0,9_3,9_0_0 +29441,2,61.0,0.0,2,111,370.0,71.0,0.0,77,78,0.0,0.0,630.9242010476627,441.0,0.0,134.79378740372502,60,0,0,0,0,0,0,0,0,0,,2,,2,129463,2,1,0,1,1,111.0,0.0,215.0,41,0.0,3.0,3.0,2.0,1.5,2,2,269.713273414197,370.0,18551.02081543326,6,5,2,3,69.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023772276705825063,12367.34721028884,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +29442,2,41.0,0.0,6,111,1800.0,0.0,0.0,54,48,0.0,264.8654554020448,3069.36097806971,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,4,129464,2,1,2,0,1,,550.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,602.644207266468,1800.0,89303.44153551865,1,1,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022395553470406178,42525.448350246974,9,5,9,9_1,9_4,9_0_0 +29443,1,76.0,75.0,7,211,402.0,,,0,86,0.0,0.0,,427.0,34.63973063491302,,71,0,0,0,0,0,0,0,0,0,,2,,5,129465,2,2,0,0,2,,133.0,460.0,11,0.0,0.0,2.0,1.0,1.0,1,1,59.41431586668638,402.0,17209.811024198432,0,5,2,3,35.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024811428748380927,17209.811024198432,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +29444,2,49.0,0.0,9,112,1800.0,0.0,0.0,47,21,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,129466,2,1,1,0,1,,220.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1359.88755645985,1800.0,34929.51535559947,1,1,1,2,112.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051532349695526086,23286.343570399647,6,3,6,6_1,6_0,6_0_0 +29445,2,84.0,0.0,2,111,170.0,170.0,0.0,86,78,0.0,0.0,289.8840923732504,340.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,0,,2,,2,129467,1,1,0,3,2,,0.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,1792.87476372018,170.0,19759.947744113142,6,5,0,1,55.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.017206523235937826,13173.298496075427,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +29446,2,52.0,0.0,7,112,1900.0,,,78,81,0.0,0.0,,2038.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,129468,2,1,0,0,2,,0.0,,42,1.0,3.0,3.0,4.0,2.3,3,3,84.11700395971958,1900.0,6899.662344925694,5,4,0,1,80.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2953767732559887,2999.8531934459543,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +29447,1,28.0,297.0,5,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,1286.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,129469,2,2,0,0,1,,285.0,570.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1223.30711777235,0.0,15699.503977397502,0,4,2,3,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08191341598125952,12076.541521075002,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +29448,2,34.0,0.0,7,111,242.0,65.0,0.0,52,65,0.0,0.0,412.6585314960388,307.0,0.0,123.40276311608629,50,0,0,0,0,0,0,0,0,2,6.0,2,,5,129470,2,1,0,1,1,376.0,200.0,431.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1355.24223265709,242.0,31549.962471940096,1,1,2,3,56.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009730597945181064,21033.30831462673,5,3,5,5_0,5_2,5_0_0 +29449,2,55.0,0.0,1,111,600.0,880.0,0.0,0,85,0.0,0.0,1023.1203260232367,1480.0,0.0,1670.6835621870143,71,0,0,0,0,0,0,0,0,0,,1,,1,129471,2,1,2,0,1,,260.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,426.511742553407,600.0,7599.33269050583,0,6,0,1,65.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.19475394225719675,7599.33269050583,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +29450,1,46.0,444.0,2,111,0.0,0.0,950.0,0,55,0.0,0.0,598.8023758940067,950.0,0.0,1136.8955401864469,42,2,1,2,2,1,2,2,2,0,,2,,2,129472,1,1,0,0,1,,180.0,500.0,32,1.0,0.0,3.0,3.0,2.0,3,1,698.115010980408,0.0,13480.025735888832,0,4,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.07047464289854784,6740.012867944416,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +29451,2,72.0,0.0,5,111,980.0,1200.0,0.0,75,78,0.0,0.0,1671.09653250462,2180.0,0.0,2278.2048575277468,60,0,0,0,0,0,0,0,0,0,,1,,3,129473,2,2,4,0,1,,250.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,914.637852387949,980.0,33912.0872174397,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06428386392209173,22608.0581449598,6,3,6,6_1,6_3,6_0_0 +29452,1,55.0,300.0,6,111,680.0,0.0,0.0,0,56,0.0,0.0,1159.5363694930015,980.0,415.67676761895626,0.0,71,2,2,2,2,2,1,2,2,0,,2,,4,129474,2,2,0,0,1,,0.0,500.0,32,2.0,1.0,4.0,3.0,2.0,3,3,1476.43147423666,680.0,19509.371987331622,0,4,2,3,90.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.050232267888292936,9754.685993665811,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +29453,2,34.0,0.0,8,112,607.0,0.0,0.0,52,64,1582.0242765549024,0.0,1035.056729826841,2167.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,129475,2,1,2,0,1,,452.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,1408.09615144775,607.0,56595.23621189245,1,1,1,2,105.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03828944174535744,20212.584361390163,5,3,5,5_1,5_0,5_0_0 +29454,2,65.0,0.0,1,300,285.0,0.0,0.0,78,78,0.0,0.0,485.98215486103743,2011.0,2391.527003034395,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129476,2,2,3,0,1,,165.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1446.53929263299,285.0,21190.130890211443,5,5,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09490267004103123,14126.753926807629,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +29455,2,52.0,0.0,7,111,525.0,1407.0,0.0,46,37,0.0,0.0,895.2302852703322,1932.0,0.0,2671.1951954512833,50,0,0,0,0,0,0,0,0,2,90.0,1,,5,129477,2,1,1,0,1,,715.0,,43,2.0,1.0,5.0,3.0,2.0,3,3,491.94493030776,525.0,110881.51757192025,1,1,1,2,160.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017424003948600914,55440.758785960126,10,5,10,10_1,10_4,10_0_0 +29456,1,43.0,160.0,1,111,450.0,670.0,0.0,56,62,0.0,0.0,767.3402445174275,1120.0,0.0,1271.9977121196587,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,129478,2,2,2,0,1,,300.0,,43,3.0,1.0,5.0,6.0,3.0999999999999996,4,3,313.010320044749,450.0,34255.43495180784,1,1,1,2,90.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.032695541643995144,11050.140307034788,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +29457,0,76.0,0.0,2,221,0.0,0.0,0.0,0,74,2109.365702073203,0.0,0.0,3704.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,129479,2,1,2,0,1,,124.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,2137.28919308563,0.0,29053.942775994845,0,5,0,1,91.0,1,2,7,1,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12748699990764575,29053.942775994845,8,4,8,8_1,8_1,8_0_1 +29458,2,48.0,0.0,2,111,365.0,484.0,0.0,0,52,0.0,0.0,622.3981983308023,849.0,0.0,918.8759592028579,41,2,1,2,2,1,2,2,2,3,45.0,2,,2,129480,2,1,0,1,1,,0.0,,32,2.0,3.0,6.0,3.0,1.8,2,2,208.999354727231,365.0,24207.00176680511,0,1,0,1,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.03507249713032316,13448.334314891728,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +29459,2,61.0,0.0,1,111,255.0,0.0,0.0,0,54,0.0,0.0,434.8261385598756,255.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,30.0,2,,1,129481,2,1,0,1,1,,0.0,830.0,12,1.0,0.0,2.0,1.0,1.0,1,1,835.59257988002,255.0,33647.85660486985,0,1,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007578491640477744,33647.85660486985,9,5,9,9_0,9_4,9_1_0 +29460,1,23.0,351.0,2,211,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1155.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,129482,2,1,2,0,1,,269.0,451.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1436.00594537888,0.0,16835.4555470617,0,1,2,3,60.0,3,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06860521218278424,12950.350420816692,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +29461,2,66.0,0.0,2,221,441.0,927.0,0.0,77,78,0.0,0.0,751.9934396270789,1368.0,0.0,1759.9132524401844,71,2,2,2,2,1,2,2,2,0,,2,,2,129483,1,3,0,0,1,79.0,100.0,311.0,41,0.0,1.0,3.0,2.0,1.5,2,2,2527.76663031964,441.0,23706.684366549296,5,5,2,3,72.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.05770524375522884,15804.456244366198,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +29462,1,64.0,80.0,2,111,450.0,600.0,0.0,0,81,0.0,0.0,767.3402445174275,1050.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,2,,2,129484,2,1,0,0,1,,160.0,258.0,12,1.0,2.0,4.0,1.0,1.0,1,1,396.669048977497,450.0,16084.760052224936,0,4,2,3,60.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0652791833133226,16084.760052224936,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +29463,2,68.0,0.0,1,120,1100.0,0.0,0.0,0,77,0.0,0.0,1875.7205977092674,1780.0,942.2006732696343,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129485,2,2,2,0,1,,150.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2316.66020864675,1100.0,19112.791375228877,0,5,0,1,115.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0931313467015063,19112.791375228877,5,3,5,5_1,5_0,5_1_0 +29464,2,62.0,0.0,1,112,700.0,0.0,0.0,52,78,0.0,331.081819252556,1193.6403803604428,1100.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,129486,2,1,3,0,2,,70.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,824.852669999142,700.0,99664.6881784682,1,5,0,1,120.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.011037008393888164,39865.87527138728,9,5,9,9_1,9_0,9_1_0 +29465,2,76.0,0.0,7,111,550.0,1200.0,0.0,72,75,0.0,0.0,937.8602988546337,1750.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,0,,1,,5,129487,2,1,2,0,1,,140.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1040.25934217116,550.0,70771.87316710645,5,5,0,1,149.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02472733759452576,47181.24877807096,10,5,10,10_1,10_2,10_0_0 +29466,2,50.0,0.0,2,111,479.0,641.0,0.0,0,54,0.0,0.0,816.7910602752173,1120.0,0.0,1216.9410947294048,42,2,2,2,1,1,2,2,2,2,10.0,8,,2,129488,1,2,0,0,2,,300.0,396.0,32,2.0,0.0,3.0,2.0,1.5,2,2,296.205469987582,479.0,26710.715943273564,0,1,2,3,69.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.04193073680161106,17807.143962182377,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +29467,2,36.0,0.0,7,111,260.0,,,0,68,0.0,0.0,,260.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,5,129489,2,1,0,0,2,,120.0,500.0,12,1.0,0.0,2.0,1.0,1.0,1,1,100.58179700620443,260.0,14557.119999999999,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01786067573805808,14557.119999999999,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +29469,1,30.0,279.0,2,111,350.0,1620.0,0.0,85,54,0.0,0.0,596.8201901802214,1970.0,0.0,3075.576557662458,60,0,0,0,0,0,0,0,0,2,25.0,2,,2,129491,2,1,0,1,1,,552.0,441.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,347.048379062498,350.0,30014.48392314066,6,1,2,3,50.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06563497826731458,11116.475527089135,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +29471,2,68.0,0.0,1,111,1595.0,0.0,0.0,77,78,0.0,264.8654554020448,2719.7948666784378,1840.0,62.351515142843446,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129493,2,2,1,0,1,,334.0,650.0,41,0.0,3.0,4.0,2.0,1.5,2,2,695.609356061409,1595.0,25238.172595715623,5,5,2,3,65.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07290543691393704,16825.448397143748,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +29472,1,38.0,340.0,9,211,400.0,,,0,54,0.0,0.0,,532.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,129494,2,1,0,0,2,,240.0,490.0,32,1.0,0.0,2.0,2.0,1.5,2,1,119.71078348656759,400.0,5960.670212765957,0,4,2,3,77.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08925170845060619,3973.7801418439717,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29473,2,63.0,0.0,6,112,398.0,0.0,0.0,0,33,0.0,0.0,678.6698162620803,2598.0,3048.296295872346,0.0,20,0,0,0,0,0,0,0,0,1,5.0,1,,4,129495,2,1,1,0,1,,220.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1168.05237641447,398.0,37453.73100616004,0,1,0,1,106.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06936558602326443,37453.73100616004,9,5,9,9_1,9_0,9_0_0 +29474,2,33.0,0.0,6,111,360.0,,,0,37,0.0,0.0,,405.0,62.351515142843446,,31,0,0,0,0,0,0,0,0,2,30.0,2,,4,129496,2,1,0,0,2,,500.0,540.0,12,1.0,0.0,3.0,1.0,1.0,1,1,106.40957100841503,360.0,36683.57310677484,0,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01104036400219703,36683.57310677484,9,5,9,9_0,9_3,9_0_0 +29475,2,81.0,0.0,2,111,356.0,870.0,0.0,86,75,0.0,0.0,607.0513934404538,1226.0,0.0,1651.6985217076165,71,0,0,0,0,0,0,0,0,0,,1,,2,129497,1,2,1,0,1,,282.0,326.0,41,0.0,3.0,2.0,2.0,1.5,2,2,294.151775317306,356.0,26436.57950965061,5,5,2,3,62.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046375137129690006,17624.386339767076,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +29476,2,42.0,0.0,7,112,2010.0,0.0,0.0,85,56,0.0,0.0,3427.453092177843,2130.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,129498,2,1,2,0,1,,704.0,,42,2.0,0.0,4.0,4.0,2.5,4,3,642.68037565562,2010.0,51029.02310550921,7,1,1,2,96.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04174095192055598,20411.60924220368,5,3,5,5_1,5_0,5_0_0 +29477,2,41.0,0.0,9,111,50.0,100.0,0.0,38,46,0.0,0.0,85.26002716860306,150.0,0.0,189.8504047939789,31,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,129499,2,1,1,0,1,,660.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1774.86370222912,50.0,66688.70032809481,1,1,1,2,99.0,4,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.002249256609620979,31756.523965759432,8,4,8,8_1,8_2,8_0_0 +29478,2,41.0,0.0,5,112,3000.0,0.0,0.0,46,21,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,129500,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,753.285323123732,3000.0,48132.32465626415,1,1,1,2,160.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06232817594879176,22920.154598221023,6,3,6,6_1,6_0,6_0_0 +29479,2,67.0,0.0,2,111,900.0,0.0,0.0,78,62,1476.555991451242,0.0,1534.680489034855,2540.0,332.541414095165,0.0,70,0,0,0,0,0,0,0,0,2,18.0,1,,2,129501,1,1,3,0,1,,100.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1045.15065069973,900.0,29791.864739392196,5,1,0,1,78.0,6,4,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08525817441167062,19861.243159594796,5,3,5,5_1,5_2,5_0_1 +29480,0,87.0,0.0,1,112,420.0,0.0,0.0,0,74,1687.4925616585624,0.0,716.1842282162656,2055.0,48.49562288887823,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129502,2,2,2,0,1,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1545.14762562491,420.0,13284.940722664747,0,5,0,1,90.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.154686425999182,13284.940722664747,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +29481,1,34.0,377.0,1,111,0.0,0.0,0.0,85,63,0.0,0.0,0.0,1615.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,129503,1,1,1,0,1,,438.0,515.0,42,1.0,1.0,5.0,4.0,2.1,2,2,1369.80835022379,0.0,23359.805704303508,6,1,2,3,110.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06913584900676092,11123.717002049289,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +29482,2,59.0,0.0,6,111,0.0,0.0,0.0,54,64,0.0,794.5963662061343,0.0,3600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,4,129504,2,1,2,0,1,,223.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1744.19245689418,0.0,69261.27016737183,1,1,0,1,120.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05197710049643181,46174.18011158122,10,5,10,10_1,10_2,10_0_0 +29484,2,30.0,0.0,5,111,240.0,130.0,0.0,37,37,0.0,0.0,409.2481304092947,370.0,0.0,246.80552623217258,10,0,0,0,0,0,0,0,0,3,40.0,2,,3,129506,2,1,0,1,1,250.0,0.0,300.0,43,2.0,0.0,1.0,2.0,1.5,2,2,559.917749965411,240.0,51483.38241102194,1,1,2,3,32.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00718678499104961,34322.2549406813,9,5,9,9_0,9_4,9_0_0 +29485,2,71.0,0.0,2,211,440.0,,,0,78,0.0,0.0,,716.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,129507,1,1,0,0,2,,210.0,,21,1.0,9.0,5.0,2.0,1.5,2,2,118.13612714348994,440.0,21161.361915005757,0,5,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033835251382959265,14107.574610003838,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +29486,2,77.0,0.0,6,111,2000.0,0.0,0.0,0,78,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,129508,2,1,2,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,863.56515966784,2000.0,14721.999015248206,0,5,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13585111627357904,14721.999015248206,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +29487,2,75.0,0.0,1,111,875.0,0.0,0.0,0,75,0.0,0.0,1492.0504754505534,960.0,117.77508415870429,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129509,2,1,1,0,1,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1215.67669099265,875.0,30398.654857480593,0,5,0,1,77.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03158034473896335,30398.654857480593,8,4,8,8_1,8_2,8_1_0 +29488,2,69.0,0.0,6,111,290.0,0.0,0.0,90,78,0.0,0.0,494.50815757789775,290.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,,4,129510,1,1,2,1,2,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,635.514369115404,290.0,18112.931994310882,5,5,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0.01601066023386421,12075.287996207255,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +29489,1,25.0,251.0,2,221,0.0,0.0,0.0,68,68,0.0,0.0,0.0,3015.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,129511,2,1,1,0,1,,482.0,550.0,43,2.0,3.0,5.0,4.0,2.1,2,2,2081.28387533225,0.0,27526.10927560371,1,1,2,3,98.0,1,3,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10953237051457118,13107.671083620815,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +29490,2,73.0,0.0,5,112,1470.0,0.0,0.0,0,77,0.0,0.0,2506.64479875693,1470.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,129512,2,1,2,0,1,,200.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,2188.18975556112,1470.0,18029.624000616157,0,5,0,1,100.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08153248231631248,18029.624000616157,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +29491,1,35.0,298.0,2,111,350.0,110.0,0.0,0,67,0.0,0.0,596.8201901802214,460.0,0.0,208.8354452733768,60,0,0,0,0,0,0,0,0,0,,2,,2,129513,2,3,0,1,1,44.0,500.0,350.0,32,1.0,0.0,3.0,3.0,1.6,1,1,406.739749513613,350.0,11435.6,0,4,2,3,75.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04022526146419952,7147.25,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +29492,2,58.0,0.0,2,111,210.0,60.0,0.0,0,52,0.0,0.0,358.0921141081328,270.0,0.0,113.91024287638734,50,2,2,2,2,1,2,2,2,3,25.0,2,,2,129514,2,1,0,1,1,845.0,123.0,299.0,12,1.0,1.0,3.0,1.0,1.0,1,1,381.544366603895,210.0,26137.024020634384,0,1,2,3,61.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010330173771384349,26137.024020634384,7,4,7,7_0,7_3,7_0_1 +29493,2,32.0,0.0,6,111,1200.0,0.0,0.0,47,46,0.0,145.67600047112464,2046.2406520464733,1340.0,41.567676761895626,0.0,31,2,2,1,2,2,2,2,1,3,60.0,1,,4,129515,1,1,3,0,1,,384.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,575.961476938637,1200.0,50974.816627789514,1,1,1,2,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02628749034615425,33983.21108519301,9,5,9,9_1,9_4,9_0_0 +29494,0,38.0,0.0,7,112,450.0,,,0,85,0.0,0.0,,542.0,127.47420873647992,,42,0,0,0,0,0,0,0,0,0,,1,,5,129516,2,1,0,0,2,,160.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,103.14649166847398,450.0,10182.866025687346,0,7,5,0,82.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053226665128731754,10182.866025687346,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +29495,2,40.0,0.0,2,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,1634.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,129517,2,2,3,0,1,,0.0,1900.0,42,1.0,1.0,7.0,4.0,2.1,2,2,1050.44968017432,0.0,93392.89449888562,6,1,2,3,92.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01749597770545057,44472.80690423125,10,5,10,10_1,10_4,10_0_1 +29496,2,33.0,0.0,5,111,160.0,0.0,0.0,0,38,0.0,0.0,272.8320869395298,160.0,0.0,0.0,10,0,0,0,0,0,0,0,0,4,120.0,2,,3,129518,2,1,0,0,1,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1350.80489572336,160.0,34643.296066274896,0,1,3,4,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004618498184869866,34643.296066274896,9,5,9,9_0,9_4,9_0_0 +29498,2,61.0,0.0,1,111,350.0,100.0,0.0,74,46,0.0,0.0,596.8201901802214,450.0,0.0,189.8504047939789,20,0,0,0,0,0,0,0,0,0,,2,,1,129520,2,1,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,813.534687756096,350.0,46520.74319583748,5,1,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009673104277497107,31013.828797224985,8,4,8,8_0,8_4,8_1_0 +29499,2,53.0,0.0,7,112,913.0,0.0,0.0,0,54,0.0,0.0,1556.848096098692,913.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,129521,2,2,0,0,2,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,968.120468214801,913.0,55178.286627993366,0,1,1,2,76.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016546363720123407,36785.524418662244,9,5,9,9_0,9_0,9_0_0 +29500,1,85.0,137.0,2,111,276.0,1300.0,0.0,0,78,0.0,0.0,470.6353499706889,1576.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,0,,1,,2,129522,2,1,1,0,1,,140.0,191.0,11,0.0,5.0,2.0,1.0,1.0,1,1,240.616524923934,276.0,13284.846132548793,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11863140786694479,13284.846132548793,3,2,3_1,3_1_1,3_3_1,3_0_1_1 +29501,2,67.0,0.0,2,111,640.0,0.0,0.0,0,74,0.0,0.0,1091.3283477581192,640.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,129523,2,2,0,1,1,,310.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1764.76401914251,640.0,60069.50936846614,0,5,0,1,106.0,8,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010654323744751143,60069.50936846614,10,5,10,10_0,10_2,10_0_1 +29502,1,33.0,80.0,2,111,0.0,0.0,0.0,56,52,0.0,0.0,0.0,1162.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,129524,2,3,3,0,1,,585.0,443.0,43,2.0,3.0,4.0,3.0,1.8,2,2,1159.3982904667,0.0,9870.361772392183,1,1,2,3,90.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.11772618134931617,5483.534317995657,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +29503,2,34.0,0.0,2,111,600.0,0.0,0.0,46,48,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,,2,129525,2,1,2,0,1,,0.0,650.0,43,2.0,0.0,2.0,2.0,1.5,2,2,688.421603513325,600.0,52832.78343404788,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011356585078448325,35221.85562269859,9,5,9,9_1,9_4,9_0_1 +29504,2,67.0,0.0,8,111,696.0,1007.0,0.0,55,75,0.0,0.0,1186.8195781869547,1703.0,0.0,1911.7935762753675,70,0,0,0,0,0,0,0,0,0,,1,2000.0,6,129526,2,1,2,0,1,,542.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1076.57560556391,696.0,41862.79147358445,1,5,1,2,156.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.040680516995016874,27908.5276490563,7,4,7,7_1,7_2,7_0_0 +29505,2,66.0,0.0,7,111,500.0,,,85,77,0.0,0.0,,720.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,5,129527,2,2,0,0,2,,700.0,,41,1.0,4.0,4.0,5.0,2.8,5,3,108.1824199133214,500.0,28517.980863994562,6,5,0,1,71.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025247229228245873,10184.993165712343,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +29506,2,55.0,0.0,7,111,2130.0,0.0,0.0,42,43,0.0,0.0,3632.0771573824904,2130.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,129528,2,1,1,0,1,,575.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,655.403651986651,2130.0,105132.49841493799,1,1,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020260148214049808,52566.249207468994,10,5,10,10_1,10_4,10_0_0 +29507,1,44.0,115.0,8,111,1224.0,,,54,54,0.0,0.0,,1312.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,129529,2,2,0,0,2,,900.0,455.0,43,2.0,0.0,4.0,4.0,2.3,3,2,132.80200774755394,1224.0,45606.40104049177,1,4,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0287678915693246,19828.87001760512,5,3,5,5_1,5_2,5_0_0 +29508,2,65.0,0.0,2,111,600.0,2100.0,0.0,74,74,0.0,0.0,1023.1203260232367,2700.0,0.0,3986.858500673557,20,0,0,0,0,0,0,0,0,0,,1,,2,129530,2,2,2,0,1,,500.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1309.05630432875,600.0,61713.072851370365,5,5,0,1,200.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04375085983001809,41142.04856758024,9,5,9,9_1,9_3,9_0_1 +29509,2,36.0,0.0,9,111,2400.0,0.0,0.0,0,54,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,129531,2,1,1,0,1,,361.0,,32,1.0,0.0,6.0,3.0,1.6,2,1,1296.66819782405,2400.0,33503.31867568516,0,1,1,2,150.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07163469455764053,20939.574172303222,5,3,5,5_1,5_2,5_0_0 +29510,2,49.0,0.0,2,111,800.0,900.0,0.0,68,63,0.0,66.2163638505112,1364.160434697649,1750.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,129532,2,2,2,0,1,,730.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,237.743606740016,800.0,47526.168465711686,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036821819567940936,16388.333953693687,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +29511,2,24.0,0.0,1,111,850.0,0.0,0.0,0,62,0.0,0.0,1449.420461866252,850.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,129533,2,1,0,1,1,532.0,0.0,550.0,12,1.0,0.0,3.0,1.0,1.0,1,1,912.103079612295,850.0,82805.71413527794,0,1,2,3,100.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.010264992082688556,82805.71413527794,10,5,10,10_0,10_2,10_1_0 +29512,1,63.0,144.0,2,111,1000.0,2500.0,0.0,86,86,0.0,0.0,1705.2005433720612,3500.0,0.0,4746.260119849472,60,2,2,2,2,2,2,2,1,0,,2,,2,129534,1,3,0,0,1,,350.0,241.0,41,0.0,0.0,4.0,2.0,1.5,2,2,396.490410224216,1000.0,21913.12335707459,7,5,2,3,90.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.1597216399947858,14608.748904716393,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +29513,2,90.0,0.0,1,120,0.0,0.0,0.0,0,77,0.0,0.0,0.0,4410.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129535,2,1,1,0,2,,126.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1449.00690666706,0.0,29664.06457157718,0,5,0,1,120.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14866472493541802,29664.06457157718,8,4,8,8_1,8_0,8_1_0 +29514,2,43.0,0.0,1,112,900.0,0.0,0.0,38,48,2320.3022722805235,0.0,1534.680489034855,3170.0,96.99124577775646,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,,1,129536,2,1,1,0,1,,150.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,260.48269588536,900.0,42674.40494657284,1,1,1,2,120.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07428340252122441,23708.00274809602,6,3,6,6_1,6_0,6_1_0 +29515,2,58.0,0.0,6,112,1100.0,0.0,0.0,45,37,0.0,178.78418239638023,1875.7205977092674,1235.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,129537,2,1,2,0,1,,150.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,899.786539813783,1100.0,64336.72986615897,1,1,0,1,180.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019195877729085643,42891.153244105975,9,5,9,9_1,9_1,9_0_0 +29516,0,49.0,0.0,1,300,390.0,0.0,0.0,0,11,0.0,198.6490915515336,665.0282119151038,680.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129538,1,2,3,0,2,,300.0,,32,1.0,0.0,4.0,4.0,2.3,3,2,2150.72055858492,390.0,16622.0,0,1,5,0,85.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04090963782938275,7226.956521739131,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +29517,2,35.0,0.0,5,112,450.0,0.0,0.0,0,62,210.9365702073203,264.8654554020448,767.3402445174275,914.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,129539,2,3,1,0,1,,140.0,550.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1928.95876444649,450.0,21634.050618946974,0,1,2,3,88.0,9,5,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04224821398908645,21634.050618946974,6,3,6,6_1,6_2,6_0_0 +29518,2,65.0,0.0,7,111,324.0,,,0,77,0.0,0.0,,412.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,5,129540,2,2,0,0,2,,375.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,119.64292257518935,324.0,18818.26279943183,0,5,1,2,65.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02189362559079785,18818.26279943183,5,3,5,5_1,5_3,5_0_0 +29519,2,71.0,0.0,1,120,3600.0,0.0,0.0,71,71,2109.365702073203,0.0,6138.72195613942,5696.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129541,2,1,2,0,1,,250.0,,41,0.0,1.0,4.0,3.0,2.0,3,3,1867.59562388076,3600.0,32928.96838367689,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17297839196272985,16464.484191838445,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +29520,1,22.0,274.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,165.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,1,129542,2,1,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1905.48506839169,0.0,12728.181906425605,0,1,2,3,31.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.01296335967014288,12728.181906425605,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +29521,1,50.0,351.0,2,111,345.0,300.0,0.0,22,62,923.9021775080629,0.0,588.2941874633611,1521.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,,2,129543,2,1,0,1,1,876.0,0.0,348.0,43,2.0,2.0,4.0,3.0,1.8,2,2,295.51382040272,345.0,10924.842663388044,4,4,2,3,60.0,6,4,2,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13922397300029427,6069.35703521558,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +29522,2,76.0,0.0,1,300,1870.0,0.0,0.0,86,71,1054.6828510366015,0.0,3188.7250161057545,2940.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129544,2,1,3,0,1,,187.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1724.83866137741,1870.0,22015.243100818356,5,5,0,1,120.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.13354383535699924,14676.828733878903,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +29523,2,70.0,0.0,2,111,420.0,,,0,78,0.0,0.0,,486.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,0,,1,,2,129545,1,1,0,0,2,,112.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,90.44109755224477,420.0,17726.329187701238,0,5,0,1,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027416843885376633,17726.329187701238,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +29524,2,35.0,0.0,6,111,1352.0,0.0,0.0,43,38,0.0,0.0,2305.431134639027,1352.0,0.0,0.0,12,2,2,1,2,2,2,2,1,2,20.0,1,,4,129546,1,1,2,0,1,,192.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,729.204612972632,1352.0,89854.43955775125,1,1,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.01504655759530994,42787.828360833926,9,5,9,9_1,9_3,9_0_0 +29525,2,59.0,0.0,1,400,460.0,0.0,0.0,11,11,0.0,1191.8945493092015,784.3922499511482,1440.0,110.84713803172167,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,129547,2,3,4,0,2,,115.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1237.61963513275,460.0,32443.714394826253,1,1,0,1,75.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.044384560364322354,21629.14292988417,6,3,6,6_1,6_0,6_1_0 +29526,2,24.0,0.0,1,111,500.0,600.0,0.0,47,46,0.0,0.0,852.6002716860306,1100.0,0.0,1139.1024287638734,12,1,2,2,1,1,1,2,2,3,15.0,2,,1,129548,1,3,0,0,2,,0.0,1550.0,43,2.0,0.0,4.0,2.0,1.5,2,2,868.657256421157,500.0,58774.03028783792,1,1,3,4,74.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01871574902406552,39182.68685855861,9,5,9,9_0,9_4,9_1_0 +29527,2,60.0,0.0,6,111,1300.0,0.0,0.0,47,54,0.0,397.2981831030672,2216.7607063836795,1600.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,129549,2,1,2,0,1,,100.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1654.83905030793,1300.0,82495.94444851074,1,1,0,1,160.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019394892811956697,54997.29629900716,10,5,10,10_1,10_2,10_0_0 +29528,2,88.0,0.0,7,111,240.0,0.0,0.0,0,75,0.0,0.0,409.2481304092947,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,129550,2,1,0,1,1,360.0,0.0,405.0,11,0.0,4.0,2.0,1.0,1.0,1,1,745.012229453034,240.0,15134.99433607439,0,5,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015857290374265812,15134.99433607439,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +29529,1,53.0,105.0,7,111,0.0,0.0,420.0,0,55,0.0,0.0,264.7336819741924,420.0,0.0,502.627501977166,50,0,0,0,0,0,0,0,0,1,5.0,2,,5,129551,2,1,0,1,1,,0.0,458.0,32,1.0,1.0,3.0,2.0,1.5,2,2,557.583683297727,0.0,18696.830452676477,0,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02246370052202492,12464.55363511765,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +29530,2,77.0,0.0,1,111,900.0,0.0,0.0,85,78,0.0,0.0,1534.680489034855,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,129552,2,1,0,0,2,,0.0,,41,3.0,1.0,5.0,10.0,4.8999999999999995,7,7,1252.71570185354,900.0,97251.56425268474,6,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009254349859726339,19847.25801075199,5,3,5,5_0,5_4,5_1_0 +29531,2,62.0,0.0,5,400,280.0,0.0,0.0,56,78,0.0,1191.8945493092015,477.4561521441771,1570.0,540.3797979046432,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,129553,2,1,2,0,1,,100.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1466.09638631823,280.0,20916.76726236872,1,6,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07505939996877917,13944.511508245814,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +29532,2,72.0,0.0,2,112,1200.0,0.0,0.0,0,71,0.0,397.2981831030672,2046.2406520464733,1560.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129554,2,2,1,0,1,,189.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,293.5644060932,1200.0,8488.448443501773,0,5,0,1,90.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18377916887676202,8488.448443501773,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +29533,2,64.0,0.0,5,111,299.0,,,77,54,0.0,0.0,,449.0,207.83838380947813,,43,0,0,0,0,0,0,0,0,0,,2,,3,129555,2,2,0,0,2,,799.0,411.0,42,1.0,0.0,3.0,2.0,1.5,2,2,156.93337956946402,299.0,59338.94939044728,5,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0075666995221907755,39559.29959363152,9,5,9,9_0,9_2,9_0_0 +29534,2,82.0,0.0,6,111,1173.0,0.0,0.0,77,78,0.0,0.0,2000.2002373754278,1173.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,4,129556,2,1,0,0,1,,311.0,595.0,41,0.0,5.0,3.0,2.0,1.5,2,2,961.325156796938,1173.0,21528.623763042444,5,5,2,3,66.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.05448560079412297,14352.415842028297,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +29535,1,67.0,240.0,6,111,975.0,0.0,0.0,0,75,0.0,0.0,1662.5705297877596,975.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,129557,2,2,0,1,1,1160.0,0.0,540.0,11,0.0,1.0,3.0,1.0,1.0,1,1,730.902358843576,975.0,23142.122044417316,0,5,3,4,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042130967857167786,23142.122044417316,6,3,6,6_0,6_4,6_0_0 +29536,2,39.0,0.0,1,400,1000.0,960.0,0.0,53,42,0.0,662.163638505112,1705.2005433720612,2520.0,83.13535352379125,1822.5638860221975,30,2,2,1,2,2,2,2,1,2,2.0,1,,1,129558,2,1,1,0,1,,290.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1472.24146796926,1000.0,53354.740320884666,1,1,1,2,120.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.04723104235620458,25407.01920042127,7,4,7,7_1,7_0,7_1_0 +29537,1,40.0,111.0,1,111,688.0,0.0,0.0,85,48,0.0,0.0,1173.177973839978,952.0,365.79555550468154,0.0,50,0,0,0,0,0,0,0,0,1,2.0,2,,1,129559,2,1,0,0,1,,0.0,512.0,42,1.0,0.0,2.0,3.0,1.8,2,2,1124.82757135248,688.0,39898.873484804804,6,1,3,4,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023860322782360315,22166.04082489156,6,3,6,6_0,6_4,6_1_0 +29538,2,49.0,0.0,7,111,500.0,940.0,0.0,45,33,0.0,182.7571642274109,852.6002716860306,1578.0,0.0,1784.5938050634018,31,0,0,0,0,0,0,0,0,1,10.0,1,,5,129560,2,2,1,0,1,,400.0,1097.0,43,2.0,2.0,5.0,4.0,2.3,3,2,1176.22656464167,500.0,70637.64165844936,1,1,2,3,120.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022339364154171853,30712.01811236929,8,4,8,8_1,8_2,8_0_0 +29539,2,58.0,0.0,6,212,1941.0,0.0,0.0,46,46,0.0,198.6490915515336,3309.794254685171,2091.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,129561,2,1,2,0,1,,286.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,816.335433444782,1941.0,56043.322938337325,4,1,0,1,120.0,2,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03731042148055105,37362.215292224886,9,5,9,9_1,9_0,9_0_0 +29540,2,35.0,0.0,2,111,360.0,132.0,0.0,0,68,0.0,0.0,613.872195613942,492.0,0.0,250.60253432805214,43,2,1,2,1,1,2,2,2,3,20.0,2,,2,129562,2,2,0,1,1,170.0,0.0,240.0,12,1.0,0.0,1.0,1.0,1.0,1,1,441.629396726582,360.0,18996.037541861475,0,1,2,3,19.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.025900138327047524,18996.037541861475,5,3,5,5_0,5_3,5_0_1 +29541,2,36.0,0.0,2,111,400.0,1000.0,0.0,34,34,0.0,331.081819252556,682.0802173488245,1650.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,129563,2,2,1,0,1,,410.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,276.45887588664,400.0,64294.99378067539,1,1,1,2,98.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025662962277102307,30616.663705083516,8,4,8,8_1,8_3,8_0_1 +29542,2,64.0,0.0,6,112,1440.0,0.0,0.0,77,72,0.0,0.0,2455.488782455768,1475.0,48.49562288887823,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,129564,2,1,2,0,1,,264.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1977.85012096042,1440.0,59270.806313587906,5,5,0,1,97.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024885775843779174,39513.87087572527,9,5,9,9_1,9_1,9_0_0 +29543,2,48.0,0.0,1,112,1500.0,0.0,0.0,77,21,0.0,0.0,2557.8008150580918,1620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129565,2,1,2,0,1,,260.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1491.65956190867,1500.0,47159.553075112926,5,1,0,1,60.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03435147057945525,31439.702050075284,8,4,8,8_1,8_0,8_1_0 +29544,2,62.0,0.0,6,112,1300.0,0.0,0.0,0,75,0.0,794.5963662061343,2216.7607063836795,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129566,2,1,2,0,1,,500.0,,21,1.0,3.0,7.0,2.0,1.5,2,2,968.379343803522,1300.0,41590.673023231044,0,5,0,1,100.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04568331940526014,27727.115348820695,7,4,7,7_1,7_1,7_0_0 +29545,2,46.0,0.0,6,112,1475.0,0.0,0.0,0,43,0.0,105.94618216081791,2515.17080147379,1605.0,69.27946126982604,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,,4,129567,2,1,0,0,1,,552.0,,32,1.0,2.0,4.0,2.0,1.5,2,1,1357.7083314947,1475.0,34232.0,0,1,1,2,90.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.046885954662304274,22821.333333333332,6,3,6,6_0,6_0,6_0_0 +29546,1,53.0,306.0,7,112,1000.0,,,56,64,0.0,0.0,,1000.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,129568,2,1,0,0,2,,450.0,522.0,43,3.0,3.0,4.0,3.0,2.0,3,3,89.11635594768686,1000.0,18764.08975641522,4,1,2,3,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05329328589776714,9382.04487820761,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +29547,2,49.0,0.0,1,111,0.0,0.0,1400.0,47,47,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,31,0,0,0,0,0,0,0,0,3,30.0,2,,1,129569,2,1,0,0,1,,384.0,,43,2.0,1.0,5.0,4.0,2.3,3,2,348.139952767794,0.0,68366.88702725823,1,1,0,1,123.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02047774969543096,29724.733490112274,8,4,8,8_0,8_3,8_1_0 +29548,1,54.0,327.0,8,111,450.0,580.0,0.0,52,78,0.0,0.0,767.3402445174275,1030.0,0.0,1101.1323478050776,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,129570,1,1,1,0,1,,560.0,498.0,42,2.0,1.0,5.0,4.0,2.5,4,4,1505.03504283276,450.0,39914.73545897883,1,7,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.025805006300456422,15965.894183591532,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +29549,2,32.0,0.0,5,111,385.0,0.0,0.0,38,38,0.0,0.0,656.5022091982436,385.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,2,,3,129571,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1790.53886626067,385.0,75044.89769775543,1,1,1,2,98.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005130262173860159,41691.609832086346,9,5,9,9_0,9_3,9_0_0 +29550,0,83.0,0.0,1,111,200.0,3326.0,0.0,0,75,0.0,0.0,341.04010867441224,3526.0,0.0,6314.424463447738,70,0,0,0,0,0,0,0,0,0,,1,,1,129572,1,2,2,0,2,,280.0,,11,0.0,1.0,9.0,1.0,1.0,1,1,823.401126507929,200.0,20239.524937799775,0,5,0,1,300.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17421357521167732,20239.524937799775,5,3,5,5_1,5_2,5_1_0 +29551,1,34.0,250.0,2,111,900.0,264.0,0.0,85,52,0.0,0.0,1534.680489034855,1164.0,0.0,501.2050686561043,71,2,2,2,1,2,2,2,2,3,15.0,2,,2,129573,1,2,0,0,1,570.0,0.0,213.0,42,1.0,0.0,3.0,4.0,2.1,2,2,240.867213233681,900.0,24500.406403378383,7,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04750941600052377,11666.860192084943,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +29553,2,30.0,0.0,7,112,1110.0,0.0,0.0,0,54,0.0,0.0,1892.772603142988,1110.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,,5,129575,2,1,2,0,1,,231.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,731.329313304211,1110.0,30630.82388890518,0,1,2,3,52.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03623800665714559,30630.82388890518,8,4,8,8_1,8_0,8_0_0 +29554,2,34.0,0.0,5,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,420.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,2,,3,129576,1,3,0,1,2,,236.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1499.02755742294,0.0,52190.915403062514,1,1,2,3,80.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008047377532208504,34793.943602041676,9,5,9,9_0,9_2,9_0_0 +29555,2,28.0,0.0,5,112,800.0,0.0,0.0,56,64,0.0,1059.4618216081792,1364.160434697649,1690.0,124.70303028568689,0.0,50,1,2,2,1,1,2,2,2,2,30.0,1,,3,129577,2,1,2,0,1,,82.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1872.85485905527,800.0,35601.449405949235,1,1,1,2,157.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04746997743630039,16953.07114569011,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +29556,1,32.0,180.0,5,211,800.0,,,85,43,0.0,0.0,,1050.0,346.39730634913025,,33,0,0,0,0,0,0,0,0,0,,2,,3,129578,2,1,0,0,2,,600.0,500.0,42,1.0,0.0,2.0,6.0,3.1,4,3,7.582084356783388,800.0,32972.067747403824,6,1,2,3,68.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03184513655752377,10636.150886259298,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +29557,2,69.0,0.0,9,111,359.0,535.0,0.0,0,75,0.0,0.0,612.16699507057,894.0,0.0,1015.6996656477871,31,2,2,2,1,1,1,2,2,0,,2,2005.0,6,129579,2,1,0,1,1,630.0,0.0,395.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1558.01964274777,359.0,26839.91098870372,0,5,2,3,65.0,8,6,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.033308605247471326,26839.91098870372,7,4,7,7_0,7_2,7_0_0 +29558,2,47.0,0.0,7,111,300.0,380.0,0.0,52,42,0.0,0.0,511.56016301161833,680.0,0.0,721.4315382171199,42,0,0,0,0,0,0,0,0,2,15.0,2,,5,129580,2,2,0,0,1,,0.0,380.0,43,2.0,0.0,2.0,2.0,1.5,2,2,622.243292893248,300.0,45103.772008379434,1,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015076344388085076,30069.18133891962,8,4,8,8_0,8_4,8_0_0 +29559,2,68.0,0.0,1,111,770.0,340.0,0.0,77,75,0.0,0.0,1313.0044183964872,1110.0,0.0,645.4913762995283,71,2,2,2,1,2,2,2,2,0,,2,,1,129581,2,1,0,0,1,,0.0,327.0,41,0.0,7.0,4.0,2.0,1.5,2,2,248.011257910569,770.0,16648.832966757007,7,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.06667133979999408,11099.221977838004,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +29560,2,62.0,0.0,5,111,494.0,0.0,0.0,0,31,0.0,0.0,842.3690684257982,494.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,,3,129582,2,1,1,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1525.37252186811,494.0,85697.35435480837,0,1,0,1,82.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.005764472004056474,85697.35435480837,10,5,10,10_1,10_3,10_0_0 +29561,2,66.0,0.0,7,222,1650.0,0.0,0.0,72,75,0.0,13.243272770102239,2813.5808965639008,1724.0,88.67771042537734,0.0,31,0,0,0,0,0,0,0,0,0,,1,,5,129583,2,1,2,0,1,,182.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1253.11241691806,1650.0,45098.86207616346,5,5,0,1,150.0,1,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038227128593366494,30065.90805077564,8,4,8,8_1,8_0,8_0_0 +29562,0,72.0,0.0,1,112,397.0,0.0,0.0,0,77,2953.111982902484,0.0,676.9646157187083,3281.0,116.38949493330776,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,129584,2,2,1,0,1,,58.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1097.49969846361,397.0,31723.760897728072,0,5,0,1,170.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10342405525553472,31723.760897728072,8,4,8,8_1,8_0,8_1_0 +29563,2,33.0,0.0,1,111,1000.0,0.0,0.0,0,37,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,12,2,2,2,1,1,2,2,2,3,45.0,2,,1,129585,2,3,0,0,1,,0.0,570.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1246.3370138083,1000.0,33213.61387807736,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.030108135888821476,33213.61387807736,8,4,8,8_0,8_4,8_1_0 +29564,2,89.0,0.0,5,111,354.0,0.0,0.0,0,77,0.0,0.0,603.6409923537096,616.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,3,129586,2,1,0,1,2,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,2075.74215224859,354.0,35502.333754203515,0,5,0,1,82.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017350972030875714,35502.333754203515,9,5,9,9_0,9_3,9_0_0 +29565,2,70.0,0.0,2,400,0.0,0.0,0.0,77,72,0.0,0.0,0.0,1135.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129587,2,2,1,0,1,,480.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,958.691960015961,0.0,65162.967908948856,5,5,0,1,98.0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017417868406268983,43441.9786059659,10,5,10,10_1,10_0,10_0_1 +29566,2,72.0,0.0,2,111,360.0,100.0,0.0,22,74,0.0,0.0,613.872195613942,1144.0,0.0,189.8504047939789,20,0,0,0,0,0,0,0,0,0,,2,,2,129588,1,3,0,1,2,528.0,0.0,706.0,42,1.0,0.0,4.0,2.0,1.5,2,2,1934.74771019254,360.0,39137.50759777441,4,5,2,3,78.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.029230272192014968,26091.67173184961,7,4,7,7_0,7_3,7_0_1 +29567,2,36.0,0.0,1,111,525.0,1585.0,0.0,35,33,0.0,0.0,895.2302852703322,2110.0,0.0,3009.1289159845655,10,1,2,2,2,2,2,2,1,3,40.0,2,,1,129589,1,1,0,0,2,,0.0,1301.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1058.13433724642,525.0,99819.47998869636,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.021138158606305486,55455.266660386864,10,5,10,10_0,10_4,10_1_0 +29568,1,37.0,98.0,1,111,777.0,1200.0,0.0,85,62,0.0,0.0,1324.9408222000916,1977.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,2,20.0,1,,1,129590,1,1,3,0,2,,350.0,,42,1.0,0.0,6.0,5.0,2.5999999999999996,3,2,312.77057989457,777.0,28795.56300771789,6,1,1,2,120.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06865641069320705,11075.21654142996,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +29569,2,67.0,0.0,2,111,1649.0,0.0,0.0,75,31,0.0,0.0,2811.8756960205287,1769.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129591,2,1,2,0,1,,415.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1541.57486831363,1649.0,56700.59245940863,5,5,0,1,140.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031198968533995633,37800.39497293909,9,5,9,9_1,9_2,9_0_1 +29570,2,69.0,0.0,5,120,449.0,0.0,0.0,77,78,1866.7886463347847,178.78418239638023,765.6350439740555,2490.0,188.44013465392686,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,129592,2,1,2,0,1,,260.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,527.504823949994,449.0,20468.525572048944,6,5,0,1,82.0,0,2,4,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12165018878547125,13645.683714699297,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +29571,2,86.0,0.0,1,111,240.0,640.0,0.0,78,78,0.0,0.0,409.2481304092947,880.0,0.0,1215.0425906814648,50,0,0,0,0,0,0,0,0,0,,1,,1,129593,2,2,2,0,2,,100.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,211.473399914184,240.0,30813.475874973527,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02855893322683305,20542.317249982352,5,3,5,5_1,5_3,5_1_0 +29572,1,41.0,140.0,2,111,345.0,1200.0,0.0,85,62,0.0,0.0,588.2941874633611,1611.0,91.44888887617039,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,129594,1,3,3,0,2,,302.0,681.0,42,1.0,0.0,4.0,4.0,2.1,2,2,342.634231311589,345.0,24737.89825987785,6,1,2,3,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06512275145915952,11779.951552322786,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +29573,2,76.0,0.0,7,111,480.0,,,0,86,0.0,0.0,,606.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,5,129595,1,2,0,0,2,,240.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,118.22733643922919,480.0,5481.052110779668,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11056271455769791,3654.0347405197786,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29574,2,34.0,0.0,1,111,516.0,641.0,0.0,52,62,0.0,0.0,879.8834803799836,1157.0,0.0,1216.9410947294048,50,0,0,0,0,0,0,0,0,1,15.0,1,,1,129596,2,1,4,0,1,,225.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1495.14414899433,516.0,43898.29811592915,1,1,1,2,80.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026356374840421554,20903.951483775785,5,3,5,5_1,5_3,5_1_0 +29575,2,56.0,0.0,6,211,450.0,580.0,0.0,78,43,0.0,317.83854648245375,767.3402445174275,1270.0,0.0,1101.1323478050776,31,0,0,0,0,0,0,0,0,0,,1,,4,129597,2,2,2,0,1,,390.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,682.611360552562,450.0,56691.215107375174,5,1,0,1,100.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022402059959282492,37794.14340491678,9,5,9,9_1,9_1,9_0_0 +29576,2,67.0,0.0,8,111,220.0,629.0,0.0,0,75,0.0,0.0,375.14411954185346,849.0,0.0,1194.1590461541273,50,2,2,2,2,1,2,2,2,0,,2,2000.0,6,129598,1,3,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,379.811132739833,220.0,25985.083187619875,0,5,0,1,58.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.032672591188951466,25985.083187619875,7,4,7,7_0,7_3,7_0_0 +29577,1,58.0,270.0,1,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,221.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,129599,2,2,0,1,1,272.0,0.0,385.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2863.71757516816,0.0,12143.751653081568,0,7,3,4,18.0,7,6,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.018198659385785413,12143.751653081568,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +29578,1,44.0,92.0,2,111,500.0,0.0,0.0,0,42,0.0,0.0,852.6002716860306,500.0,0.0,0.0,31,2,1,2,2,1,2,2,2,2,15.0,2,,2,129600,1,2,0,1,1,,730.0,436.0,32,1.0,0.0,4.0,3.0,2.0,3,3,240.574243000857,500.0,27495.92527215205,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.018184512615998467,13747.962636076025,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +29579,1,52.0,432.0,2,111,0.0,0.0,750.0,0,52,0.0,0.0,472.7387178110578,750.0,0.0,897.5491106735105,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,129601,1,3,0,1,1,468.0,0.0,401.0,32,1.0,1.0,4.0,3.0,1.6,1,1,213.872907548178,0.0,19617.447144616912,0,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038231274154639554,12260.904465385569,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +29580,2,37.0,0.0,7,111,670.0,,,46,63,0.0,0.0,,770.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,129602,2,1,0,0,1,,300.0,,43,2.0,0.0,4.0,4.0,2.3,2,2,110.34692013896344,670.0,97001.46437276606,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007938024492506359,42174.549727289595,9,5,9,9_1,9_2,9_0_0 +29581,2,63.0,0.0,5,112,1000.0,0.0,0.0,75,74,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,129603,2,1,2,0,1,,283.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,2095.40027819601,1000.0,62139.595771093416,5,5,0,1,158.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01609279860274192,41426.39718072894,9,5,9,9_1,9_1,9_0_0 +29582,2,65.0,0.0,6,112,500.0,1750.0,0.0,74,74,0.0,72.83800023556232,852.6002716860306,2305.0,0.0,3322.382083894631,44,0,0,0,0,0,0,0,0,0,,1,,4,129604,2,1,2,0,1,,200.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,970.258863566164,500.0,74477.4829802432,5,5,0,1,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03094895138456078,49651.655320162135,10,5,10,10_1,10_0,10_0_0 +29583,2,35.0,0.0,7,111,600.0,0.0,0.0,54,54,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,1,2,2,1,1,2,2,2,2,15.0,2,,5,129605,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,839.65286201857,600.0,46715.34824986325,1,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012843744561012801,31143.565499908833,8,4,8,8_0,8_4,8_0_0 +29584,2,76.0,0.0,5,111,2630.0,0.0,0.0,75,72,0.0,0.0,4484.677429068521,2630.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,129606,2,1,2,0,1,,847.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1153.55310172694,2630.0,63604.79425090059,5,5,0,1,150.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041349084309989126,42403.19616726706,9,5,9,9_1,9_2,9_0_0 +29585,1,74.0,109.0,2,111,351.0,936.0,0.0,0,78,0.0,0.0,598.5253907235934,1287.0,0.0,1776.9997888716425,41,0,0,0,0,0,0,0,0,0,,2,,2,129607,1,2,0,1,1,561.0,0.0,311.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1049.52828689735,351.0,12497.42403783955,0,5,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10298122205850077,12497.42403783955,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +29587,2,86.0,0.0,6,212,2500.0,0.0,0.0,86,74,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,129609,2,1,2,0,1,,500.0,,41,0.0,5.0,8.0,2.0,1.5,2,2,3376.35902687764,2500.0,47376.26077791499,5,5,0,1,165.0,2,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05276904422067444,31584.173851943327,8,4,8,8_1,8_0,8_0_0 +29588,0,41.0,0.0,9,400,690.0,,,81,42,0.0,0.0,,1050.0,498.81212114274757,,30,0,0,0,0,0,0,0,0,0,,1,2010.0,6,129610,2,2,0,0,2,,0.0,,43,2.0,0.0,3.0,6.0,2.6999999999999997,2,2,114.84914083069526,690.0,39511.20535574718,4,1,5,0,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026574739761698263,14633.779761387847,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +29589,2,63.0,0.0,2,300,1500.0,0.0,0.0,0,77,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,129611,2,2,1,0,1,,600.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1867.45282991559,1500.0,25073.28478408003,0,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06221761581835111,25073.28478408003,7,4,7,7_1,7_0,7_0_1 +29590,2,35.0,0.0,9,112,1500.0,0.0,0.0,42,62,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,129612,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,419.691073712083,1500.0,49247.30719568155,1,1,1,2,113.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03045851814881634,23451.09866461026,6,3,6,6_1,6_1,6_0_0 +29591,2,83.0,0.0,2,111,260.0,0.0,0.0,0,86,0.0,0.0,443.3521412767359,260.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129613,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1054.98890377235,260.0,14225.097970393288,0,6,0,1,90.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018277554259460167,14225.097970393288,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +29592,2,54.0,0.0,6,112,1800.0,0.0,0.0,78,63,0.0,0.0,3069.36097806971,1930.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,4,129614,2,2,2,0,1,,197.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,824.494478810758,1800.0,31874.438775235896,5,1,1,2,98.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060550085716316,21249.625850157263,5,3,5,5_1,5_0,5_0_0 +29593,2,60.0,0.0,7,111,649.0,0.0,0.0,0,52,0.0,0.0,1106.6751526484677,649.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,40.0,2,,5,129615,2,1,0,0,1,,0.0,690.0,22,2.0,0.0,2.0,2.0,1.5,2,2,352.178701245329,649.0,28437.346031609883,0,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.022822101587067795,18958.23068773992,5,3,5,5_0,5_4,5_0_0 +29594,2,58.0,0.0,2,112,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1250.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129616,2,1,3,0,1,,200.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,292.104602335727,1200.0,16437.870980485066,0,6,1,2,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07604391112960991,16437.870980485066,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +29595,2,43.0,0.0,2,111,0.0,0.0,0.0,46,38,0.0,0.0,0.0,1555.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,60.0,2,,2,129617,2,2,0,0,1,,0.0,782.0,43,2.0,0.0,3.0,3.0,2.0,3,2,1028.91043938908,0.0,75232.68775377629,1,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020669207048527215,37616.343876888146,9,5,9,9_0,9_4,9_0_1 +29596,2,22.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,417.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,129618,2,2,0,0,1,,0.0,580.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2178.31239846246,0.0,32704.0,0,1,3,4,37.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01275073385518591,32704.0,8,4,8,8_0,8_3,8_0_1 +29597,1,33.0,357.0,2,111,500.0,,,0,81,0.0,0.0,,764.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,8,,2,129619,2,2,0,0,2,,450.0,650.0,32,1.0,0.0,3.0,3.0,1.8,2,1,167.5985187525312,500.0,5956.9821046265115,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1282528613619028,3309.434502570284,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +29598,1,28.0,491.0,2,112,0.0,0.0,0.0,0,85,0.0,0.0,0.0,339.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129620,1,2,0,1,2,1220.0,210.0,525.0,31,0.0,0.0,4.0,4.0,1.9,1,1,253.161170235157,0.0,13942.043245480561,0,6,2,3,83.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024314943945528925,7337.917497621348,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +29599,2,40.0,0.0,2,112,400.0,0.0,0.0,0,64,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,129621,2,1,0,1,1,,0.0,284.0,12,1.0,1.0,3.0,1.0,1.0,1,1,863.730886285856,400.0,19085.294974461092,0,1,2,3,55.0,10,4,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020958544289478277,19085.294974461092,5,3,5,5_0,5_2,5_0_1 +29601,2,85.0,0.0,1,111,550.0,1600.0,0.0,77,74,0.0,0.0,937.8602988546337,2150.0,0.0,3037.6064767036623,12,0,0,0,0,0,0,0,0,0,,1,,1,129623,2,1,2,0,2,,150.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,592.202751064916,550.0,287336.72754560487,5,5,0,1,160.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.007482510218464018,191557.8183637366,10,5,10,10_1,10_4,10_1_0 +29602,2,49.0,0.0,5,112,1300.0,0.0,0.0,85,42,0.0,0.0,2216.7607063836795,1510.0,290.9737373332694,0.0,50,2,2,2,2,1,1,2,2,0,,1,,3,129624,1,2,3,0,1,,0.0,,42,2.0,0.0,6.0,4.0,2.5,4,4,1302.8321209982,1300.0,49073.19791130865,6,1,0,1,70.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.0307703606911672,19629.27916452346,5,3,5,5_1,5_1,5_0_0 +29603,2,58.0,0.0,6,111,1177.0,0.0,0.0,72,22,0.0,66.2163638505112,2007.021039548916,1227.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,129626,2,1,2,0,1,,440.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,355.266009228217,1177.0,57318.010365773946,7,1,0,1,88.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021406884017256,38212.006910515964,9,5,9,9_1,9_3,9_0_0 +29604,2,33.0,0.0,7,111,0.0,,,54,42,0.0,0.0,,317.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,129627,2,3,0,0,2,,133.0,500.0,43,2.0,0.0,2.0,2.0,1.5,2,2,148.9388499969032,0.0,51836.0,1,1,2,3,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006115441006250482,34557.333333333336,9,5,9,9_1,9_3,9_0_0 +29605,2,57.0,0.0,5,111,400.0,1600.0,0.0,0,77,0.0,0.0,682.0802173488245,2000.0,0.0,3037.6064767036623,60,0,0,0,0,0,0,0,0,0,,1,,3,129628,2,2,2,0,1,,250.0,590.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1144.16721776777,400.0,21638.042901810666,0,5,2,3,78.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0924298010257037,21638.042901810666,6,3,6,6_1,6_2,6_0_0 +29606,2,34.0,0.0,2,111,745.0,0.0,0.0,0,52,0.0,0.0,1270.3744048121855,745.0,0.0,0.0,31,2,2,2,1,1,2,2,2,3,30.0,2,,2,129629,2,2,0,0,1,,0.0,390.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1799.44806047238,745.0,25488.176480176284,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,0,0,0,0.029229238921012344,25488.176480176284,7,4,7,7_0,7_4,7_0_1 +29607,2,43.0,0.0,8,111,600.0,1300.0,0.0,54,37,0.0,0.0,1023.1203260232367,1900.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,2,55.0,1,2001.0,6,129630,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,984.747695965174,600.0,59802.08998352461,1,1,1,2,110.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03177146485220579,28477.18570644029,8,4,8,8_1,8_2,8_0_0 +29608,2,29.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,480.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,129631,2,1,0,1,1,,0.0,273.0,12,1.0,0.0,3.0,1.0,1.0,1,1,287.674492702971,0.0,11049.459171556677,0,4,2,3,60.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04344104019458324,11049.459171556677,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +29609,1,37.0,441.0,2,111,1000.0,900.0,0.0,67,85,0.0,0.0,1705.2005433720612,1900.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,8,,2,129632,2,2,0,1,1,,700.0,345.0,42,2.0,0.0,4.0,9.0,4.199999999999999,6,3,367.649042888038,1000.0,16741.245975759306,4,6,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.11349215003179144,3986.010946609359,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +29610,2,38.0,0.0,1,111,336.0,960.0,0.0,85,34,0.0,0.0,572.9473825730125,1296.0,0.0,1822.5638860221975,10,0,0,0,0,0,0,0,0,3,140.0,2,,1,129633,2,1,0,0,1,,0.0,770.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1535.29589483804,336.0,15216.89617889115,7,1,2,3,90.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08516848539702918,7246.141037567214,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +29611,2,50.0,0.0,1,300,1200.0,0.0,0.0,56,63,2109.365702073203,662.163638505112,2046.2406520464733,3950.0,346.39730634913025,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,129634,2,2,2,0,1,,500.0,,43,5.0,0.0,10.0,5.0,3.0,5,5,1155.91135730758,1200.0,67572.83821272534,1,1,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05845544015133783,22524.27940424178,6,3,6,6_1,6_0,6_1_0 +29612,2,37.0,0.0,9,111,794.0,1182.0,0.0,46,38,0.0,0.0,1353.9292314374165,4309.0,0.0,2244.0317846648304,31,1,2,2,1,1,2,2,2,1,5.0,1,2011.0,6,129635,2,1,1,0,1,,294.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,389.343627356061,794.0,60843.3403063724,1,1,1,2,147.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.07082122674893145,33801.85572576245,9,5,9,9_1,9_3,9_0_0 +29613,1,81.0,230.0,1,111,408.0,1380.0,0.0,0,86,0.0,0.0,695.7218216958009,1788.0,0.0,2619.935586156909,71,1,2,2,2,1,2,2,2,0,,1,,1,129636,2,1,3,0,1,,680.0,460.0,21,1.0,2.0,4.0,4.0,2.5,4,4,97.7051178527398,408.0,17725.322675896066,0,5,2,3,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.10087263474370638,7090.129070358426,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +29614,2,47.0,0.0,7,111,1014.0,,,53,53,0.0,0.0,,1118.0,144.10127944123818,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,129637,2,1,0,0,2,,258.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,45.09984161066763,1014.0,51915.05272998968,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021535179898876745,34610.035153326455,9,5,9,9_1,9_2,9_0_0 +29615,2,65.0,0.0,2,111,420.0,,,75,75,0.0,0.0,,480.0,83.13535352379125,,20,0,0,0,0,0,0,0,0,0,,1,,2,129638,2,1,0,0,2,,170.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,122.20239090465299,420.0,69166.0690952635,5,5,0,1,180.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006939818993311425,46110.71273017567,10,5,10,10_1,10_2,10_0_1 +29616,2,55.0,0.0,9,111,329.0,987.0,0.0,78,46,0.0,52.973091080408956,561.0109787694081,1356.0,0.0,1873.8234953165718,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,129639,2,1,1,0,1,,152.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1114.62101235481,329.0,49090.697374391144,5,1,1,2,163.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027622341350305946,32727.131582927428,8,4,8,8_1,8_2,8_0_0 +29617,2,55.0,0.0,5,211,600.0,,,34,37,0.0,0.0,,663.0,87.29212119998083,,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,129640,2,1,0,0,1,,180.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,108.69105708541957,600.0,126779.71148095743,1,1,0,1,215.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005229543372951941,84519.80765397161,10,5,10,10_1,10_2,10_0_0 +29618,2,54.0,0.0,7,111,600.0,,,0,54,0.0,0.0,,646.0,63.73710436823996,,50,0,0,0,0,0,0,0,0,2,35.0,1,,5,129641,2,1,0,0,2,,370.0,,32,1.0,0.0,3.0,3.0,2.0,3,1,57.51026283308168,600.0,37813.20534182645,0,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017083978841789374,18906.602670913224,5,3,5,5_1,5_2,5_0_0 +29619,2,48.0,0.0,1,111,0.0,0.0,0.0,31,37,0.0,0.0,0.0,1418.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,2,,1,129642,1,1,0,0,1,,0.0,,43,2.0,2.0,3.0,4.0,2.1,2,2,844.482399282406,0.0,70743.0,1,1,0,1,78.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02004438601699108,33687.142857142855,9,5,9,9_0,9_4,9_1_0 +29620,2,65.0,0.0,1,112,756.0,1596.0,0.0,86,77,0.0,0.0,1289.1316107892783,2352.0,0.0,3030.012460511903,70,0,0,0,0,0,0,0,0,0,,1,,1,129643,2,1,2,0,2,,150.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,306.248450512476,756.0,23255.40568293037,6,5,0,1,80.0,9,1,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10113777553777031,15503.603788620247,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +29622,2,64.0,0.0,5,111,660.0,,,74,74,0.0,0.0,,760.0,138.5589225396521,,10,0,0,0,0,0,0,0,0,0,,1,,3,129645,2,2,0,0,2,,320.0,,41,1.0,0.0,3.0,3.0,2.0,3,3,118.9429383069899,660.0,148440.81276676847,5,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005119885736506433,74220.40638338424,10,5,10,10_1,10_2,10_0_0 +29623,2,76.0,0.0,2,111,240.0,800.0,0.0,0,75,0.0,0.0,409.2481304092947,1040.0,0.0,1518.8032383518312,70,0,0,0,0,0,0,0,0,0,,1,,2,129646,2,1,2,0,1,,250.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,630.180782407082,240.0,26007.20406093896,0,5,0,1,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03998891989939083,26007.20406093896,7,4,7,7_1,7_4,7_0_1 +29624,1,41.0,291.0,6,111,0.0,0.0,203.0,0,46,0.0,0.0,127.954612954193,203.0,0.0,242.9366259556302,20,0,0,0,0,0,0,0,0,0,,2,,4,129647,2,1,0,1,1,336.0,0.0,279.0,12,1.0,0.0,2.0,1.0,1.0,1,1,926.235840819836,0.0,8843.684135607287,0,4,2,3,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022954234557367555,8843.684135607287,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +29625,2,51.0,0.0,2,111,230.0,450.0,0.0,69,90,0.0,0.0,392.1961249755741,680.0,0.0,854.326821572905,50,1,2,2,2,1,2,2,2,2,20.0,2,,2,129648,2,3,0,0,1,,200.0,184.0,43,2.0,0.0,2.0,2.0,1.5,2,2,274.201537643394,230.0,26565.6237114762,1,1,2,3,71.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.025596989831119372,17710.4158076508,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +29626,1,40.0,39.0,1,111,420.0,924.0,0.0,0,43,0.0,0.0,716.1842282162656,1344.0,0.0,1754.217740296365,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,129649,2,1,1,0,1,,216.0,730.0,32,1.0,0.0,5.0,3.0,1.6,1,1,252.276244900057,420.0,27671.729126870312,0,1,2,3,102.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0485694259956789,17294.830704293945,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +29627,2,66.0,0.0,1,111,443.0,1187.0,0.0,0,75,0.0,0.0,755.4038407138231,1630.0,0.0,2253.5243049045293,33,0,0,0,0,0,0,0,0,0,,1,,1,129650,2,1,1,0,1,,148.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1184.84489401045,443.0,24522.187495960457,0,5,0,1,100.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0664704158333554,24522.187495960457,7,4,7,7_1,7_3,7_1_0 +29628,2,89.0,0.0,1,112,700.0,800.0,0.0,0,71,0.0,0.0,1193.6403803604428,1550.0,69.27946126982604,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,1,129651,1,2,3,0,2,,200.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,235.25711775597,700.0,30404.53312333847,0,5,0,1,120.0,7,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0509792402900021,30404.53312333847,8,4,8,8_1,8_0,8_1_0 +29629,2,42.0,0.0,9,120,0.0,,,71,56,0.0,29.135200094224928,,286.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,129652,2,1,0,0,2,,420.0,,42,1.0,5.0,3.0,4.0,2.3,3,3,121.89311182825593,0.0,13566.0,5,1,0,1,42.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021082117057349255,5898.260869565218,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +29630,2,63.0,0.0,5,111,1200.0,0.0,0.0,45,77,0.0,0.0,2046.2406520464733,1275.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,129653,2,1,2,0,1,,400.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,832.255981958262,1200.0,37464.41537163501,1,5,0,1,115.0,5,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034032294040956146,24976.276914423343,7,4,7,7_1,7_2,7_0_0 +29631,2,42.0,0.0,1,400,600.0,0.0,0.0,72,42,1054.6828510366015,0.0,1023.1203260232367,1667.0,92.8344781015669,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,1,129654,1,1,4,0,1,,200.0,,42,1.0,3.0,10.0,2.0,1.5,2,2,1369.8599716639,600.0,49082.64047261875,5,1,1,2,200.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03396312798065444,32721.760315079166,8,4,8,8_1,8_0,8_1_0 +29632,0,79.0,0.0,1,111,300.0,900.0,0.0,78,75,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,1,129655,1,1,2,0,2,,600.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1244.98563018888,300.0,25793.251465689482,5,5,0,1,160.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.046523797187658006,17195.50097712632,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +29633,2,80.0,0.0,2,111,360.0,0.0,0.0,0,86,1012.4955369951375,0.0,613.872195613942,1320.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,129656,2,2,0,1,1,,312.0,315.0,11,0.0,2.0,4.0,1.0,1.0,1,1,944.977143829707,360.0,28921.337641151084,0,5,2,3,62.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,1,0,0.04564104248490297,28921.337641151084,8,4,8,8_0,8_4,8_0_1 +29634,2,71.0,0.0,2,112,300.0,0.0,0.0,86,86,1265.6194212439218,794.5963662061343,511.56016301161833,2200.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129657,2,1,2,0,2,,500.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,851.252185152634,300.0,27455.455084972942,5,5,0,1,82.0,4,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08012979545198343,18303.636723315296,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +29635,2,29.0,0.0,1,112,1100.0,0.0,0.0,37,69,0.0,66.2163638505112,1875.7205977092674,1400.0,346.39730634913025,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,129658,1,1,3,0,1,,78.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1238.4780965512,1100.0,50459.949975980584,1,1,1,2,120.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.02774477582055498,24028.547607609802,6,3,6,6_1,6_0,6_1_0 +29636,2,71.0,0.0,2,111,338.0,0.0,0.0,0,74,3164.0485531098047,0.0,576.3577836597567,3428.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129659,2,1,2,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1049.30925037832,338.0,39641.85995855806,0,5,0,1,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08647424726245591,39641.85995855806,9,5,9,9_1,9_4,9_0_1 +29637,2,63.0,0.0,6,111,2400.0,0.0,0.0,0,75,0.0,0.0,4092.4813040929466,2475.0,103.91919190473907,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,129660,2,1,2,0,1,,120.0,,21,1.0,0.0,6.0,2.0,1.5,2,2,1698.79170146449,2400.0,24153.91237451438,0,5,0,1,180.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10246787193827271,16102.608249676254,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +29638,2,89.0,0.0,9,111,1020.0,0.0,0.0,77,77,0.0,0.0,1739.3045542395023,1020.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2008.0,6,129661,2,1,0,0,1,,143.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1593.34574587475,1020.0,64476.85479390889,5,5,0,1,88.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.015819630210876217,42984.569862605924,9,5,9,9_0,9_2,9_0_0 +29639,2,67.0,0.0,5,112,550.0,0.0,0.0,77,75,0.0,0.0,937.8602988546337,1850.0,1801.2659930154773,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,129662,2,1,1,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1971.16429161655,550.0,26126.163598499217,6,5,0,1,99.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07081024326534764,17417.44239899948,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +29640,2,73.0,0.0,1,300,400.0,0.0,0.0,0,46,1476.555991451242,529.7309108040896,682.0802173488245,2270.0,96.99124577775646,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,129663,1,2,2,0,2,,150.0,,11,0.0,2.0,8.0,1.0,1.0,1,1,945.102193667862,400.0,21967.435129580597,0,5,0,1,312.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.10333477652761089,21967.435129580597,6,3,6,6_1,6_0,6_1_0 +29641,2,74.0,0.0,5,211,400.0,120.0,0.0,86,77,0.0,0.0,682.0802173488245,826.0,0.0,227.8204857527747,50,2,2,2,1,2,2,2,2,0,,8,,3,129664,2,1,0,1,1,,240.0,414.0,41,0.0,3.0,3.0,2.0,1.5,2,2,350.788192395446,400.0,22841.108034781486,5,5,2,3,60.0,1,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.036162869101717905,15227.40535652099,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +29643,1,38.0,139.0,2,120,0.0,,,0,52,0.0,0.0,,424.0,0.0,,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,129666,2,1,0,0,1,,590.0,500.0,32,1.0,0.0,3.0,2.0,1.5,2,1,80.61029249835816,0.0,20791.960266352828,0,1,2,3,75.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02039249760813317,13861.306844235218,3,2,3_1,3_1_1,3_0_1,3_0_1_1 +29645,2,60.0,0.0,2,211,800.0,2000.0,0.0,56,77,0.0,0.0,1364.160434697649,2800.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,2,129668,2,1,2,0,1,,280.0,,42,2.0,1.0,6.0,5.0,2.8,4,4,979.752441478993,800.0,50552.97508361398,4,5,1,2,180.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05538744248718964,18054.633958433566,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +29646,2,30.0,0.0,5,111,700.0,0.0,0.0,0,65,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,3,129669,2,1,0,0,1,,380.0,310.0,12,1.0,0.0,2.0,1.0,1.0,1,1,525.609493944659,700.0,22572.278737101173,0,1,2,3,38.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031011490162463632,22572.278737101173,6,3,6,6_0,6_3,6_0_0 +29647,1,43.0,413.0,9,211,800.0,,,0,85,0.0,0.0,,888.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,129670,2,3,0,0,2,,600.0,458.0,31,0.0,4.0,4.0,3.0,1.6,1,1,105.02347131998027,800.0,14411.076635877347,0,6,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06161926845835127,9006.922897423341,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29648,2,54.0,0.0,6,111,1200.0,,,0,77,0.0,0.0,,1284.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,2,,4,129671,2,1,0,0,2,,150.0,600.0,21,0.0,1.0,4.0,2.0,1.5,2,2,111.91574733912796,1200.0,14285.631720430109,0,6,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08988051947074424,9523.75448028674,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +29649,2,40.0,0.0,9,112,500.0,,,0,54,0.0,0.0,,544.0,60.965925917446924,,31,0,0,0,0,0,0,0,0,2,1.0,1,2012.0,6,129672,2,1,0,0,2,,220.0,,32,1.0,0.0,3.0,4.0,2.5,4,2,162.88673377088395,500.0,28398.84234993253,0,1,1,2,75.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01915571040878335,11359.536939973012,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +29650,2,69.0,0.0,6,111,1340.0,0.0,0.0,0,77,0.0,0.0,2284.968728118562,1415.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,129673,2,2,3,0,1,,220.0,432.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1369.29872176685,1340.0,21338.35826963486,0,5,2,3,85.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06631250549455758,21338.35826963486,6,3,6,6_1,6_3,6_0_0 +29651,2,37.0,0.0,7,111,450.0,0.0,0.0,0,42,0.0,0.0,767.3402445174275,450.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,129674,2,2,0,0,1,,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,319.317088529228,450.0,27389.23013091192,0,1,2,3,65.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01642981558258999,27389.23013091192,7,4,7,7_0,7_3,7_0_0 +29652,2,82.0,0.0,2,111,288.0,0.0,0.0,75,74,0.0,0.0,491.09775649115363,288.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129675,2,1,0,1,1,708.0,0.0,348.0,41,0.0,0.0,2.0,2.0,1.5,2,2,955.364205062484,288.0,52390.45334978256,5,5,2,3,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005497184727094852,34926.96889985504,9,5,9,9_0,9_4,9_0_1 +29653,2,81.0,0.0,7,120,582.0,0.0,0.0,71,71,2109.365702073203,0.0,992.4267162425396,2710.0,177.35542085075468,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,129676,2,1,2,0,1,,201.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,816.728979318108,582.0,26112.675903566196,5,5,0,1,80.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1037810146309018,17408.450602377463,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +29654,2,56.0,0.0,8,112,1700.0,0.0,0.0,56,31,0.0,0.0,2898.840923732504,1820.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,129677,2,1,1,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,789.268071053401,1700.0,60713.425964766066,1,1,0,1,130.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029976895078465907,26397.141723811335,7,4,7,7_1,7_0,7_0_0 +29655,2,56.0,0.0,7,112,1670.0,0.0,0.0,52,63,0.0,0.0,2847.6849074313423,1730.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,5,129678,2,1,3,0,1,,1000.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,612.23249445096,1670.0,36638.93518781742,1,1,0,1,96.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04721752941595397,24425.95679187828,7,4,7,7_1,7_0,7_0_0 +29656,2,84.0,0.0,2,111,392.0,0.0,0.0,0,75,0.0,0.0,668.438613001848,392.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,129679,2,2,0,1,1,830.0,0.0,296.0,11,0.0,0.0,3.0,1.0,1.0,1,1,293.795824634387,392.0,16851.257927008442,0,5,2,3,62.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023262358317578176,16851.257927008442,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +29657,2,54.0,0.0,9,111,400.0,800.0,0.0,0,52,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,129680,2,1,1,0,1,,320.0,475.0,32,1.0,2.0,4.0,2.0,1.5,2,2,885.201847118965,400.0,28832.237372959557,0,1,2,3,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04162007909678995,19221.491581973038,5,3,5,5_1,5_2,5_0_0 +29658,2,43.0,0.0,2,111,255.0,78.0,0.0,52,45,0.0,0.0,434.8261385598756,333.0,0.0,148.08331573930354,41,0,0,0,0,0,0,0,0,3,35.0,2,,2,129681,1,3,0,1,1,660.0,0.0,458.0,43,2.0,0.0,3.0,3.0,1.8,2,2,968.960108259764,255.0,41837.47863172456,1,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007959370662157744,23243.04368429142,6,3,6,6_0,6_4,6_0_1 +29659,2,66.0,0.0,5,112,329.0,1061.0,0.0,0,78,0.0,0.0,561.0109787694081,1390.0,0.0,2014.312794864116,71,0,0,0,0,0,0,0,0,0,,1,,3,129682,2,1,1,0,1,,308.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2136.98223078721,329.0,22028.404380441265,0,5,0,1,90.0,7,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06310034880393621,22028.404380441265,6,3,6,6_1,6_0,6_0_0 +29660,2,61.0,0.0,2,111,72.0,0.0,0.0,0,75,0.0,0.0,122.77443912278841,72.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,129683,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1678.24354912512,72.0,25393.247130420168,0,5,0,1,57.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.002835399491455611,25393.247130420168,7,4,7,7_0,7_3,7_0_1 +29661,2,76.0,0.0,1,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,295.0,96.99124577775646,0.0,50,2,1,1,1,1,2,2,2,0,,2,,1,129684,2,1,0,1,1,600.0,90.0,268.0,11,0.0,2.0,3.0,1.0,1.0,1,1,307.232424436158,0.0,16865.96018321964,0,5,2,3,80.0,8,6,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.017490851205346897,16865.96018321964,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +29662,2,39.0,0.0,2,111,0.0,0.0,1100.0,56,62,0.0,0.0,693.3501194562182,1100.0,0.0,1316.405362321149,50,0,0,0,0,0,0,0,0,0,,1,,2,129685,2,1,3,0,1,,310.0,700.0,43,2.0,0.0,4.0,2.0,1.5,2,2,274.911548934773,0.0,22348.88892462372,1,4,2,3,90.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04921944906120295,14899.25928308248,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +29663,2,29.0,0.0,1,111,1100.0,0.0,0.0,37,37,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,,1,129686,2,2,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,784.407074384391,1100.0,45322.2185037177,1,1,1,2,43.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02427065656350801,30214.8123358118,8,4,8,8_0,8_4,8_1_0 +29664,2,56.0,0.0,2,112,468.0,1217.0,0.0,0,43,0.0,0.0,798.0338542981247,1685.0,0.0,2310.4794263427234,42,0,0,0,0,0,0,0,0,2,20.0,1,,2,129687,2,2,2,0,2,,172.0,,12,1.0,2.0,7.0,1.0,1.0,1,1,1127.10227242448,468.0,30227.79943383474,0,1,0,1,135.0,8,1,8,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055743389580451455,30227.79943383474,8,4,8,8_1,8_1,8_0_1 +29665,2,56.0,0.0,2,111,0.0,0.0,633.0,78,12,0.0,0.0,398.99147783253284,633.0,0.0,757.531449408443,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,129688,2,1,0,1,1,,0.0,,42,2.0,0.0,4.0,4.0,2.5,4,4,1829.93700462622,0.0,38833.477436536945,6,1,1,2,83.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.016300368696943797,15533.390974614778,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +29667,2,58.0,0.0,8,111,657.0,1797.0,0.0,34,33,0.0,0.0,1120.3167569954442,2454.0,0.0,3411.611774147801,12,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,129690,2,2,1,0,1,,627.0,,43,2.0,1.0,8.0,3.0,2.0,3,3,3017.37598005068,657.0,107015.29639289288,1,1,0,1,242.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02293130125052829,53507.64819644644,10,5,10,10_1,10_3,10_0_0 +29668,2,67.0,0.0,1,111,406.0,731.0,0.0,77,74,0.0,0.0,692.3114206090569,1165.0,38.79649831110259,1387.8064590439858,50,0,0,0,0,0,0,0,0,0,,1,,1,129691,2,1,1,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,967.582954011876,406.0,39690.63524701206,5,5,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.029352011948150968,26460.42349800804,7,4,7,7_1,7_3,7_1_0 +29669,2,63.0,0.0,9,112,400.0,300.0,0.0,78,77,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,129692,2,1,0,0,1,,0.0,413.0,41,0.0,0.0,3.0,2.0,1.5,2,2,721.805081758087,400.0,26351.939766161584,5,5,2,3,70.0,10,3,1,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02656350941189032,17567.95984410772,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +29670,2,60.0,0.0,1,111,0.0,0.0,1200.0,85,22,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,71,0,0,0,0,0,0,0,0,0,,8,,1,129693,2,3,0,0,1,,300.0,1470.0,42,1.0,2.0,4.0,3.0,2.0,3,3,557.559243299468,0.0,11497.905928263188,6,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1043668305765366,5748.952964131594,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +29671,2,27.0,0.0,9,111,320.0,,,43,47,0.0,0.0,,364.0,60.965925917446924,,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129694,2,2,0,0,1,,150.0,600.0,43,2.0,0.0,2.0,2.0,1.5,2,2,93.48269234563917,320.0,37530.68736866687,4,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009698729906660104,25020.458245777914,7,4,7,7_1,7_3,7_0_0 +29672,2,52.0,0.0,1,111,400.0,600.0,0.0,85,38,0.0,132.4327277010224,682.0802173488245,1500.0,554.2356901586083,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,129695,2,1,3,0,1,,500.0,,42,1.0,0.0,7.0,6.0,3.0999999999999996,4,3,413.589171507832,400.0,63459.3907187615,6,1,0,1,110.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023637163594079882,20470.771199600484,5,3,5,5_1,5_2,5_1_0 +29673,2,29.0,0.0,2,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1581.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,129696,2,2,5,0,1,,0.0,620.0,32,1.0,0.0,3.0,2.0,1.3,1,1,3422.31872155931,0.0,11668.300957587282,0,4,2,3,80.0,10,1,2,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13549530525024372,8975.616121220986,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +29674,2,49.0,0.0,1,111,1310.0,2131.0,0.0,22,33,0.0,0.0,2233.8127118174,3441.0,0.0,4045.7121261596903,31,0,0,0,0,0,0,0,0,1,2.0,1,,1,129697,2,1,2,0,1,,804.0,,43,2.0,0.0,9.0,4.0,2.5,4,4,603.950872806306,1310.0,88677.1193621523,1,1,1,2,220.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03880369620428413,35470.84774486092,9,5,9,9_1,9_4,9_1_0 +29675,2,68.0,0.0,6,300,0.0,2500.0,0.0,75,64,0.0,0.0,0.0,6888.0,138.5589225396521,4746.260119849472,70,0,0,0,0,0,0,0,0,0,,1,,4,129698,2,1,2,0,1,,600.0,650.0,41,0.0,5.0,5.0,2.0,1.5,2,2,863.799818276948,0.0,58044.94129559854,5,5,2,3,110.0,0,0,2,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11866667182799454,38696.627530399026,9,5,9,9_1,9_0,9_0_0 +29676,1,39.0,175.0,2,111,156.0,244.0,0.0,0,85,0.0,0.0,266.01128476604157,400.0,0.0,463.2349876973085,60,0,0,0,0,0,0,0,0,0,,2,,2,129699,2,2,0,0,1,,120.0,160.0,11,0.0,0.0,1.0,1.0,1.0,1,1,390.181030934524,156.0,9902.114902985624,0,7,2,3,25.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.040395410871206364,9902.114902985624,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +29677,0,85.0,0.0,2,120,620.0,0.0,0.0,0,86,1054.6828510366015,0.0,1057.224336890678,1690.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129700,2,1,2,0,1,,135.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,447.767701380772,620.0,9157.810199950056,0,5,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.18454193339901462,9157.810199950056,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +29678,2,38.0,0.0,5,111,230.0,0.0,0.0,0,54,0.0,0.0,392.1961249755741,230.0,0.0,0.0,10,1,2,2,2,1,2,2,2,0,,2,,3,129701,1,2,0,1,1,427.0,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,655.18399745557,230.0,15983.456342609788,0,1,3,4,39.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.014389878826574594,15983.456342609788,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +29680,2,53.0,0.0,2,111,620.0,1481.0,0.0,52,42,0.0,0.0,1057.224336890678,2101.0,0.0,2811.6844949988276,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,129703,2,2,1,0,1,,436.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1454.34650484161,620.0,59436.99404903942,1,1,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03534835557576376,39624.662699359615,9,5,9,9_1,9_3,9_0_1 +29681,2,51.0,0.0,8,111,604.0,990.0,0.0,52,48,0.0,0.0,1029.941128196725,1594.0,0.0,1879.519007460391,50,0,0,0,0,0,0,0,0,2,60.0,1,2000.0,6,129704,2,1,2,0,1,,613.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,491.231466579568,604.0,64732.21347369267,1,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024624524861146694,23118.647669175953,6,3,6,6_1,6_4,6_0_0 +29682,2,68.0,0.0,5,111,496.0,106.0,0.0,78,78,0.0,0.0,845.7794695125424,602.0,0.0,201.24142908161764,71,2,2,2,2,1,2,2,2,0,,2,,3,129705,2,1,0,1,1,804.0,0.0,400.0,41,1.0,4.0,4.0,3.0,2.0,3,2,427.141731513299,496.0,28658.061951912445,7,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.02100630534647255,14329.030975956222,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +29683,2,67.0,0.0,2,111,2300.0,0.0,0.0,77,74,0.0,0.0,3921.9612497557405,2300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,129706,2,1,1,0,1,,450.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,608.817930600401,2300.0,46147.05716138187,5,5,0,1,119.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04984066463776055,30764.70477425458,8,4,8,8_1,8_4,8_0_1 +29684,2,63.0,0.0,9,111,800.0,0.0,0.0,0,75,0.0,0.0,1364.160434697649,850.0,69.27946126982604,0.0,33,0,0,0,0,0,0,0,0,0,,1,2006.0,6,129707,2,1,2,0,1,,200.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,292.188212729095,800.0,27481.259370587602,0,5,1,2,70.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030930169121351492,27481.259370587602,7,4,7,7_1,7_2,7_0_0 +29685,1,31.0,331.0,2,111,350.0,350.0,0.0,0,55,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,129708,2,3,0,1,1,700.0,0.0,248.0,32,1.0,0.0,4.0,3.0,1.6,1,1,411.321906774222,350.0,5160.004228071616,0,1,2,3,53.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.13565880357070992,3225.00264254476,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +29686,1,50.0,307.0,2,111,208.0,182.0,0.0,0,48,0.0,0.0,354.6817130213887,390.0,0.0,345.5277367250416,71,0,0,0,0,0,0,0,0,0,,2,,2,129709,2,2,0,1,1,594.0,0.0,576.0,12,1.0,1.0,2.0,1.0,1.0,1,1,278.643244950271,208.0,9048.845951796917,0,4,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04309941865266851,9048.845951796917,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +29687,1,54.0,199.0,9,112,356.0,0.0,0.0,0,67,0.0,0.0,607.0513934404538,356.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,2008.0,6,129710,2,1,0,0,1,,70.0,237.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1195.7688021682,356.0,15192.273998220888,0,4,2,3,30.0,8,2,3,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02343296336293631,15192.273998220888,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +29688,2,59.0,0.0,1,111,300.0,0.0,0.0,0,77,0.0,0.0,511.56016301161833,893.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,129711,2,2,0,1,2,272.0,0.0,356.0,11,0.0,0.0,1.0,1.0,1.0,1,1,996.886499924022,300.0,9318.396713487793,0,5,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09583193627155182,9318.396713487793,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +29689,1,40.0,250.0,2,111,600.0,,,0,68,0.0,0.0,,669.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,129712,1,2,0,0,2,,240.0,250.0,32,1.0,0.0,4.0,3.0,1.8,2,1,142.93832948375822,600.0,17943.86068760647,0,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03728294661037283,9968.811493114705,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +29690,1,27.0,218.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,,1,129713,2,1,1,0,1,,292.0,459.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1480.99945598438,0.0,22561.35571225006,0,2,2,3,72.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04875593532718146,17354.889009423125,4,2,4_1,4_1_1,4_3_1,4_1_0_1 +29691,2,25.0,0.0,1,111,200.0,860.0,0.0,0,52,0.0,0.0,341.04010867441224,1060.0,0.0,1632.7134812282186,50,0,0,0,0,0,0,0,0,0,,2,,1,129714,2,1,0,0,1,,0.0,427.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1803.94448822685,200.0,16168.912002454708,0,1,2,3,55.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0655579051849051,16168.912002454708,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +29692,2,36.0,0.0,1,111,726.0,0.0,0.0,38,37,0.0,0.0,1237.9755944881165,726.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,129715,1,1,2,0,1,,560.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,723.852470455413,726.0,113105.46651686732,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.006418787900863591,47127.277715361386,10,5,10,10_1,10_4,10_1_0 +29693,2,65.0,0.0,1,111,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1320.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129716,2,1,3,0,2,,230.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1111.07758767291,1200.0,22002.312946152866,0,5,0,1,90.0,5,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05999369262815634,22002.312946152866,6,3,6,6_1,6_2,6_1_0 +29694,2,26.0,0.0,5,111,960.0,0.0,0.0,56,47,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,9.0,2,,3,129717,2,2,0,1,1,,350.0,377.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1109.73012722815,960.0,34449.83904462659,1,1,2,3,72.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02786660334628584,22966.559363084394,6,3,6,6_0,6_2,6_0_0 +29695,2,48.0,0.0,7,112,4500.0,0.0,0.0,37,46,0.0,0.0,7673.402445174275,4500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,129718,2,1,2,0,2,,700.0,,43,2.0,1.0,7.0,4.0,2.3,3,2,626.258425849573,4500.0,232836.22152591118,1,1,0,1,130.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01932688982199111,101233.13979387443,10,5,10,10_1,10_1,10_0_0 +29696,2,49.0,0.0,6,111,570.0,,,68,65,0.0,0.0,,714.0,199.524848457099,,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,129719,2,2,0,0,2,,160.0,412.0,43,2.0,3.0,2.0,2.0,1.5,2,2,57.935769723540716,570.0,56915.05118268337,4,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012545011998816183,37943.36745512224,9,5,9,9_1,9_2,9_0_0 +29697,1,60.0,254.0,7,221,810.0,0.0,0.0,0,77,0.0,0.0,1381.2124401313695,870.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,129720,2,2,3,0,1,,250.0,356.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1633.15801015399,810.0,12187.095991211436,0,7,2,3,65.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07138698182301913,12187.095991211436,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +29698,2,70.0,0.0,5,111,1896.0,0.0,0.0,75,47,0.0,662.163638505112,3233.060230233428,2396.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,129721,2,1,2,0,1,,311.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1597.52897662599,1896.0,55853.44619608004,5,5,0,1,161.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04289797968040437,37235.63079738669,9,5,9,9_1,9_3,9_0_0 +29699,2,40.0,0.0,2,111,120.0,0.0,0.0,0,35,0.0,0.0,204.62406520464734,120.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,129722,2,3,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1042.21999129593,120.0,8136.374297912356,0,4,0,1,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014748584026031077,8136.374297912356,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +29700,2,61.0,0.0,2,111,600.0,128.0,0.0,47,56,0.0,0.0,1023.1203260232367,728.0,0.0,243.008518136293,70,0,0,0,0,0,0,0,0,0,,2,,2,129723,2,1,0,1,1,324.0,0.0,325.0,43,2.0,2.0,3.0,2.0,1.5,2,2,234.245972466567,600.0,25489.329222360462,4,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02856097128524526,16992.886148240308,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +29701,2,51.0,0.0,2,112,300.0,0.0,0.0,0,43,0.0,33.1081819252556,511.56016301161833,2825.0,3463.9730634913026,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,129724,2,1,2,0,1,,275.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,300.936460235492,300.0,20695.667161596964,0,1,1,2,60.0,6,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13650200198629456,10347.833580798482,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +29702,2,45.0,0.0,1,111,1500.0,1000.0,0.0,42,38,0.0,0.0,2557.8008150580918,2650.0,207.83838380947813,1898.504047939789,41,0,0,0,0,0,0,0,0,0,,1,,1,129725,2,2,1,0,1,,900.0,,43,2.0,2.0,6.0,3.0,1.8,2,2,1676.0858273802,1500.0,100646.79658706093,1,1,1,2,170.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026329700396452375,55914.886992811626,10,5,10,10_1,10_3,10_1_0 +29703,2,74.0,0.0,1,112,916.0,0.0,0.0,0,75,0.0,509.8660016489362,1561.963697728808,1361.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129726,2,1,2,0,1,,78.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1803.82037100048,916.0,19370.068867945574,0,5,1,2,90.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07026304394055312,19370.068867945574,5,3,5,5_1,5_0,5_1_0 +29704,2,29.0,0.0,2,111,600.0,600.0,0.0,52,62,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,41,0,0,0,0,0,0,0,0,0,,2,,2,129727,2,3,0,1,1,,0.0,500.0,43,2.0,0.0,2.0,2.0,1.5,2,2,856.020195155445,600.0,43815.240837987934,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027387730320532593,29210.160558658623,8,4,8,8_0,8_4,8_0_1 +29705,2,36.0,0.0,1,300,400.0,0.0,0.0,0,31,0.0,794.5963662061343,682.0802173488245,1112.0,155.18599324441035,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,129728,1,1,1,0,1,,108.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,1598.19567028972,400.0,23751.0,0,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04681908130183992,14844.375,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +29706,2,36.0,0.0,7,111,650.0,,,84,42,0.0,0.0,,750.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,0,,1,,5,129729,2,1,0,0,2,,210.0,650.0,42,1.0,0.0,3.0,2.0,1.5,2,2,121.61840972770649,650.0,55643.606582050095,3,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013478637458448645,37095.73772136673,9,5,9,9_1,9_3,9_0_0 +29707,2,43.0,0.0,8,112,600.0,900.0,0.0,52,63,0.0,0.0,1023.1203260232367,1500.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,129730,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1944.36060888244,600.0,40107.33228358656,1,1,1,2,100.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03739964526670493,19098.72965885074,5,3,5,5_1,5_1,5_0_0 +29708,2,28.0,0.0,2,111,0.0,0.0,0.0,62,63,0.0,0.0,0.0,585.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,129731,2,1,0,1,2,795.0,0.0,600.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1787.71297549774,0.0,36807.440717775775,1,1,2,3,70.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015893525564179754,24538.293811850515,7,4,7,7_0,7_3,7_0_1 +29709,2,86.0,0.0,6,111,1200.0,0.0,0.0,86,72,0.0,0.0,2046.2406520464733,1270.0,96.99124577775646,0.0,71,2,2,2,2,1,2,2,2,0,,2,,4,129732,2,1,0,0,1,,489.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1296.10732670561,1200.0,19472.905305507524,6,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.06521882482737723,12981.93687033835,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +29710,1,64.0,230.0,1,300,410.0,0.0,0.0,0,56,0.0,0.0,699.1322227825451,514.0,144.10127944123818,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,129733,2,1,0,0,2,,200.0,410.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1587.74212715184,410.0,4962.038000329187,0,4,2,3,75.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10358646990730436,4962.038000329187,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +29711,2,55.0,0.0,8,112,1000.0,1200.0,0.0,85,43,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,60,0,0,0,0,0,0,0,0,2,45.0,1,1999.0,6,129734,2,1,2,0,1,,513.0,,42,1.0,0.0,5.0,4.0,2.3,3,2,626.258425849573,1000.0,73938.51134029204,5,1,1,2,105.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02975445353335282,32147.178843605237,8,4,8,8_1,8_1,8_0_0 +29712,0,78.0,0.0,2,111,400.0,,,77,78,0.0,0.0,,676.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,129735,2,2,0,0,2,,730.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,88.065537626031,400.0,18088.988941987085,5,5,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0373708006659736,12059.325961324723,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +29713,2,49.0,0.0,2,111,690.0,1006.0,0.0,56,62,0.0,0.0,1176.5883749267223,1696.0,0.0,1909.8950722274278,71,0,0,0,0,0,0,0,0,2,8.0,1,,2,129736,2,1,2,0,1,,690.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,206.171846750426,690.0,31861.724570269245,1,1,1,2,130.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05323001258954352,11379.187346524732,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +29714,1,57.0,178.0,2,111,334.0,0.0,0.0,0,52,0.0,0.0,569.5369814862685,334.0,0.0,0.0,50,1,2,2,1,1,2,2,2,1,10.0,2,,2,129737,1,1,0,1,1,495.0,0.0,238.0,12,1.0,2.0,2.0,1.0,1.0,1,1,453.621726410973,334.0,10839.869853135784,0,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.030812178054276145,10839.869853135784,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +29715,2,67.0,0.0,6,111,407.0,970.0,0.0,86,86,0.0,0.0,694.0166211524289,1377.0,0.0,1841.5489265015954,50,2,2,2,2,1,1,2,2,0,,1,,4,129738,1,3,4,0,1,,240.0,520.0,41,0.0,4.0,5.0,2.0,1.5,2,2,207.091715960909,407.0,27450.758864789,5,5,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.05016254766516759,18300.505909859334,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +29716,2,66.0,0.0,2,111,310.0,0.0,0.0,0,75,0.0,0.0,528.612168445339,488.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,129739,2,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,812.571172124776,310.0,35112.38112647776,0,5,0,1,143.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013898231459785733,35112.38112647776,9,5,9,9_0,9_4,9_0_1 +29717,0,56.0,0.0,6,111,420.0,,,43,64,0.0,158.91927324122688,,816.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,129740,2,1,0,0,2,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,85.78752994705232,420.0,27682.35074657806,1,1,5,0,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029477265405318566,18454.900497718707,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +29718,2,78.0,0.0,1,120,240.0,0.0,0.0,0,77,632.8097106219609,0.0,409.2481304092947,890.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129741,2,1,2,0,1,,273.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1605.87870124265,240.0,21023.24303959113,0,5,0,1,80.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04233409651993012,21023.24303959113,5,3,5,5_1,5_0,5_1_0 +29719,2,51.0,0.0,1,111,1300.0,1200.0,0.0,37,35,0.0,0.0,2216.7607063836795,2500.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,129742,2,1,2,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,679.343759325256,1300.0,93007.59287489028,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026879525883041506,51670.8849304946,10,5,10,10_1,10_4,10_1_0 +29720,2,71.0,0.0,8,112,816.0,0.0,0.0,0,77,0.0,0.0,1391.4436433916019,865.0,67.89387204442953,0.0,30,0,0,0,0,0,0,0,0,0,,2,2001.0,6,129743,2,1,0,0,1,,0.0,436.0,11,0.0,6.0,2.0,1.0,1.0,1,1,2321.4982235855,816.0,20892.424009043265,0,5,2,3,45.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.041402567726252615,20892.424009043265,5,3,5,5_0,5_1,5_0_0 +29721,1,23.0,80.0,9,111,400.0,,,0,46,0.0,0.0,,400.0,0.0,,31,0,0,0,0,0,0,0,0,2,25.0,1,2009.0,6,129744,2,1,0,0,2,,172.0,670.0,12,1.0,0.0,3.0,1.0,1.0,1,1,182.33635256373537,400.0,16314.0,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024518818192963098,16314.0,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +29722,2,58.0,0.0,2,111,300.0,0.0,0.0,37,21,0.0,0.0,511.56016301161833,300.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,129745,2,1,0,1,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,393.301554254618,300.0,67853.5092376105,1,1,1,2,87.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004421289383124684,45235.67282507367,10,5,10,10_0,10_3,10_0_1 +29723,2,54.0,0.0,2,111,900.0,900.0,0.0,63,52,0.0,0.0,1534.680489034855,1800.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,129746,1,2,0,0,1,,0.0,750.0,43,2.0,3.0,3.0,3.0,2.0,3,3,2283.34532997659,900.0,37630.47683938766,1,1,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.047833568723634874,18815.23841969383,5,3,5,5_0,5_3,5_0_1 +29724,1,44.0,255.0,5,111,165.0,0.0,0.0,0,68,0.0,0.0,281.3580896563901,165.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,129747,2,3,0,1,1,481.0,0.0,245.0,12,1.0,2.0,3.0,1.0,1.0,1,1,312.820978411401,165.0,7645.394034536892,0,4,2,3,63.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02158162146445793,7645.394034536892,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29725,2,53.0,0.0,7,111,520.0,,,62,52,0.0,0.0,,592.0,99.7624242285495,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,129748,2,1,0,0,2,,100.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,50.770978524085685,520.0,77403.94532947827,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007648188958328777,51602.63021965218,10,5,10,10_1,10_2,10_0_0 +29726,2,63.0,0.0,6,111,1100.0,1200.0,0.0,62,62,0.0,264.8654554020448,1875.7205977092674,2500.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,4,129749,2,3,2,0,1,,400.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,431.364171728441,1100.0,23679.696560679007,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10557567718799828,15786.464373786004,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +29727,2,42.0,0.0,2,111,230.0,0.0,0.0,0,46,0.0,0.0,392.1961249755741,230.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,129750,2,2,0,1,1,840.0,0.0,398.0,22,2.0,0.0,5.0,4.0,2.5,4,4,299.363810513648,230.0,56162.12659577294,0,1,2,3,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004095286520316896,22464.850638309177,6,3,6,6_0,6_4,6_0_1 +29728,2,46.0,0.0,9,111,567.0,0.0,0.0,0,47,0.0,0.0,966.8487080919587,567.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2007.0,6,129751,2,1,1,0,1,,200.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1186.75772563724,567.0,25325.13151454443,0,1,1,2,130.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02238882746470111,25325.13151454443,7,4,7,7_1,7_3,7_0_0 +29729,2,42.0,0.0,2,400,919.0,1177.0,0.0,42,48,0.0,860.8127300566456,1567.0792993589241,2746.0,0.0,2234.5392644251315,20,0,0,0,0,0,0,0,0,1,4.0,1,,2,129752,2,1,2,0,1,,583.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,869.669313528494,919.0,85175.77244815996,1,1,1,2,130.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03223921452160921,40559.89164198093,9,5,9,9_1,9_0,9_0_1 +29730,2,27.0,0.0,8,111,0.0,0.0,0.0,52,52,0.0,0.0,0.0,527.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,40.0,2,1999.0,6,129753,2,1,0,0,1,,0.0,312.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1125.83387251967,0.0,39189.986358917304,1,1,2,3,31.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013447312667412711,26126.657572611537,7,4,7,7_0,7_4,7_0_0 +29731,2,35.0,0.0,2,111,2080.0,0.0,0.0,63,52,0.0,0.0,3546.817130213887,2080.0,0.0,0.0,43,2,2,2,2,1,2,2,2,1,8.0,1,,2,129754,2,2,5,0,1,,0.0,1023.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1074.34095143804,2080.0,44316.273206228325,1,1,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.04693535465675555,24620.151781237957,7,4,7,7_1,7_4,7_0_1 +29732,1,80.0,122.0,2,111,180.0,108.0,0.0,0,78,0.0,0.0,306.936097806971,679.0,0.0,205.0384371774972,41,1,2,2,1,1,2,2,2,0,,2,,2,129755,2,1,0,1,1,386.0,0.0,259.0,11,0.0,0.0,2.0,1.0,1.0,1,1,337.952572350705,180.0,11411.119466837434,0,5,2,3,49.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05950336441339382,11411.119466837434,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +29733,2,71.0,0.0,2,112,474.0,0.0,0.0,78,78,1160.1511361402618,331.081819252556,808.265057558357,1984.0,221.69427606344334,0.0,70,2,2,2,2,1,1,2,2,0,,1,,2,129756,2,1,2,0,1,,391.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,749.593700180298,474.0,30396.655810839835,5,5,0,1,80.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06527033803805747,20264.437207226558,5,3,5,5_1,5_0,5_0_1 +29734,1,29.0,292.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,464.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,129757,2,2,0,1,1,638.0,91.0,264.0,32,1.0,0.0,4.0,2.0,1.3,1,1,305.54118552545,0.0,15848.141388899217,0,1,2,3,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029277881147943784,12190.877991460937,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +29735,0,50.0,0.0,1,112,400.0,0.0,0.0,0,52,0.0,0.0,682.0802173488245,470.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129758,1,2,3,0,2,,64.0,,22,1.0,2.0,5.0,2.0,1.5,2,2,1339.12722354229,400.0,39108.536195045104,0,1,5,0,100.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.012017836659904114,26072.3574633634,7,4,7,7_1,7_0,7_1_0 +29736,1,82.0,260.0,1,112,1450.0,0.0,0.0,0,78,2109.365702073203,0.0,2472.540787889489,3450.0,0.0,0.0,71,1,2,2,1,1,2,2,2,0,,1,,1,129759,2,2,5,0,1,,350.0,510.0,21,3.0,1.0,5.0,4.0,2.5,4,4,1135.43283322465,1450.0,22562.00211423348,0,5,2,3,90.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0.15291196155963174,9024.800845693393,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +29737,2,83.0,0.0,2,111,500.0,2544.0,0.0,0,75,0.0,0.0,852.6002716860306,3044.0,0.0,4829.794297958823,50,0,0,0,0,0,0,0,0,0,,1,,2,129760,2,2,4,0,2,,400.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,1913.0621618734,500.0,29909.0,0,5,0,1,145.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10177538533551773,29909.0,8,4,8,8_1,8_3,8_0_1 +29738,1,29.0,103.0,5,111,1200.0,0.0,0.0,43,90,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,41,2,2,2,2,1,2,2,2,2,5.0,2,,3,129761,1,1,0,0,1,,0.0,721.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1089.58708956369,1200.0,17266.502011349206,1,1,2,3,43.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.06949873223952625,11511.001340899471,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +29739,2,77.0,0.0,2,111,280.0,1444.0,0.0,0,86,0.0,0.0,477.4561521441771,1724.0,0.0,2741.4398452250553,50,0,0,0,0,0,0,0,0,0,,1,,2,129762,2,1,2,0,1,,180.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,324.520848617101,280.0,19778.05689136516,0,6,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08716730917852077,19778.05689136516,5,3,5,5_1,5_3,5_0_1 +29740,2,64.0,0.0,6,112,2250.0,0.0,0.0,77,74,0.0,72.83800023556232,3836.7012225871376,2305.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,129763,2,1,2,0,1,,320.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,763.751581591896,2250.0,59331.86758162001,6,5,0,1,140.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03884927432680459,39554.578387746675,9,5,9,9_1,9_1,9_0_0 +29741,0,86.0,0.0,6,300,1200.0,0.0,0.0,0,77,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,129764,2,2,3,0,1,,370.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1214.686065822,1200.0,23242.692442874584,0,5,0,1,90.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051629130443873295,23242.692442874584,6,3,6,6_1,6_0,6_0_0 +29742,2,51.0,0.0,2,111,340.0,919.0,0.0,0,37,0.0,0.0,579.7681847465008,1259.0,0.0,1744.725220056666,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,129765,2,2,5,0,1,,174.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,542.506201412131,340.0,27906.32441840481,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.045115221235286114,27906.32441840481,7,4,7,7_1,7_3,7_0_1 +29743,2,55.0,0.0,7,111,2200.0,1800.0,0.0,35,34,0.0,0.0,3751.441195418535,4000.0,0.0,3417.30728629162,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,129766,1,1,2,0,2,,600.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,458.811695176055,2200.0,76799.41289396836,1,1,0,1,130.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05208373149313685,30719.765157587342,8,4,8,8_1,8_2,8_0_0 +29744,2,32.0,0.0,2,111,280.0,0.0,0.0,38,37,0.0,0.0,477.4561521441771,1007.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,3,60.0,2,,2,129767,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,257.229665975754,280.0,63941.263495406434,1,1,1,2,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01574882861162641,35522.92416411469,9,5,9,9_0,9_4,9_0_1 +29745,2,81.0,0.0,6,111,610.0,0.0,0.0,0,78,0.0,0.0,1040.1723314569574,676.0,91.44888887617039,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,129768,2,1,2,0,1,,200.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,1761.70807768146,610.0,23231.204883735616,0,5,0,1,62.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029098792050741798,23231.204883735616,6,3,6,6_1,6_2,6_0_0 +29746,2,45.0,0.0,7,111,660.0,1300.0,0.0,78,43,0.0,0.0,1125.4323586255605,1960.0,0.0,2468.055262321726,33,0,0,0,0,0,0,0,0,0,,2,,5,129769,2,1,0,0,1,,0.0,880.0,42,1.0,0.0,4.0,4.0,2.5,4,3,1575.4598874685,660.0,62157.69106285284,7,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031532702815779946,24863.07642514114,7,4,7,7_0,7_3,7_0_0 +29747,2,64.0,0.0,9,400,405.0,0.0,0.0,78,78,0.0,0.0,690.6062200656847,1725.0,1828.9777775234077,0.0,70,0,0,0,0,0,0,0,0,0,,1,2008.0,6,129770,2,1,1,0,1,,304.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1913.98583335568,405.0,31834.8511276315,5,5,0,1,119.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05418589812417129,21223.234085087668,5,3,5,5_1,5_0,5_0_0 +29748,2,66.0,0.0,8,111,0.0,0.0,0.0,86,31,0.0,0.0,0.0,1471.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,129771,2,1,0,0,1,,0.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1433.73467456942,0.0,201225.40475909619,6,1,0,1,118.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007310210168348562,134150.26983939746,10,5,10,10_0,10_3,10_0_0 +29749,2,68.0,0.0,2,111,660.0,0.0,0.0,0,77,1265.6194212439218,264.8654554020448,1125.4323586255605,2252.0,266.03313127613205,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129772,1,3,3,0,1,,240.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,282.129206358265,660.0,20920.751834081315,0,5,0,1,90.0,7,6,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10764431497778872,20920.751834081315,5,3,5,5_1,5_2,5_0_1 +29750,2,58.0,0.0,2,111,150.0,100.0,0.0,0,47,0.0,0.0,255.78008150580916,250.0,0.0,189.8504047939789,71,2,2,2,2,2,2,2,1,2,35.0,2,,2,129773,2,2,0,1,1,696.0,0.0,334.0,22,2.0,2.0,4.0,2.0,1.5,2,2,219.609488567493,150.0,50288.752127291766,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.004971290585361825,33525.834751527844,8,4,8,8_0,8_4,8_0_1 +29751,2,27.0,0.0,1,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,3785.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,129774,2,1,2,0,1,,882.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,444.907801166824,0.0,47355.290529081045,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07992771151252084,22550.138347181448,6,3,6,6_1,6_4,6_1_0 +29752,1,39.0,90.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,566.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,10.0,2,,1,129775,2,2,0,1,1,57.0,108.0,289.0,32,1.0,1.0,3.0,2.0,1.3,1,1,2170.3510971006,0.0,14899.998792184953,0,4,2,3,54.0,5,4,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03798658026045391,11461.537532449964,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +29754,1,23.0,400.0,6,111,300.0,,,0,81,0.0,0.0,,450.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,,4,129777,2,3,0,0,2,,200.0,400.0,32,1.0,0.0,2.0,4.0,2.1,2,1,75.39491680946604,300.0,11007.664463252728,0,4,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04088060655393801,5241.744982501299,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29755,1,29.0,204.0,2,111,250.0,973.0,0.0,85,64,0.0,0.0,426.3001358430153,1223.0,0.0,1847.2444386454147,43,2,2,1,1,1,2,2,2,2,10.0,2,,2,129778,1,2,0,0,1,,264.0,256.0,42,1.0,0.0,2.0,3.0,1.8,2,2,403.417118901917,250.0,16535.137438960788,6,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07396370332660894,9186.187466089326,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +29756,2,81.0,0.0,6,111,0.0,0.0,2200.0,72,72,0.0,132.4327277010224,1386.7002389124364,2300.0,0.0,2632.810724642298,70,0,0,0,0,0,0,0,0,0,,1,,4,129779,2,1,2,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,317.64040445224,0.0,38241.039487412934,5,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06014480858338191,25494.026324941955,7,4,7,7_1,7_3,7_0_0 +29757,2,85.0,0.0,2,111,465.0,108.0,0.0,0,77,0.0,0.0,792.9182526680084,573.0,0.0,205.0384371774972,70,0,0,0,0,0,0,0,0,0,,2,,2,129780,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1076.6601182332,465.0,23143.2869463165,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024758799444916317,23143.2869463165,6,3,6,6_0,6_4,6_0_1 +29758,2,51.0,0.0,2,111,120.0,90.0,0.0,45,35,0.0,0.0,204.62406520464734,210.0,0.0,170.865364314581,10,0,0,0,0,0,0,0,0,3,60.0,2,,2,129781,2,1,0,1,1,,0.0,,43,2.0,3.0,3.0,2.0,1.5,2,2,549.257089412432,120.0,70954.87458206154,1,1,1,2,71.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0029596275271705033,47303.24972137436,10,5,10,10_0,10_3,10_0_1 +29759,2,29.0,0.0,5,111,240.0,0.0,0.0,42,37,0.0,0.0,409.2481304092947,300.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,129782,2,1,0,1,1,,100.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1822.33207193406,240.0,55302.22694417281,1,1,0,1,83.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005424736336618917,30723.45941342934,8,4,8,8_0,8_2,8_0_0 +29760,2,38.0,0.0,9,111,540.0,,,0,34,0.0,0.0,,540.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,2,2008.0,6,129783,2,1,0,0,1,,40.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,160.32105548715063,540.0,49865.757488426236,0,1,1,2,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010829074443025019,49865.757488426236,10,5,10,10_0,10_2,10_0_0 +29761,2,76.0,0.0,2,112,1200.0,,,0,77,0.0,0.0,,1200.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,2,129784,2,2,0,0,2,,550.0,,21,0.0,5.0,4.0,2.0,1.5,2,2,81.24529308041659,1200.0,30327.097188745225,0,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03956857435222436,20218.064792496818,5,3,5,5_1,5_1,5_0_1 +29762,2,36.0,0.0,2,111,0.0,0.0,620.0,63,67,0.0,0.0,390.7973400571411,620.0,0.0,741.9739314901021,50,2,1,2,2,1,2,2,2,0,,2,,2,129785,2,2,0,1,2,720.0,200.0,307.0,43,2.0,0.0,3.0,2.0,1.5,2,2,353.598561013616,0.0,21943.68165292383,4,1,2,3,70.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028254146674488858,14629.12110194922,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +29763,2,76.0,0.0,2,111,200.0,800.0,0.0,0,78,0.0,0.0,341.04010867441224,1000.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,1,,2,129786,2,1,2,0,1,,120.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,1875.63480492935,200.0,11834.666368099115,0,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0844975235377607,11834.666368099115,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +29764,2,72.0,0.0,2,111,329.0,1165.0,0.0,0,74,0.0,0.0,561.0109787694081,1494.0,0.0,2211.757215849854,60,0,0,0,0,0,0,0,0,0,,1,,2,129787,2,2,2,0,1,,360.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,685.778991683284,329.0,49990.16842830571,0,6,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02988587650274967,49990.16842830571,10,5,10,10_1,10_4,10_0_1 +29765,2,69.0,0.0,1,111,0.0,1798.0,0.0,78,78,0.0,0.0,0.0,1798.0,0.0,3413.5102781957407,71,0,0,0,0,0,0,0,0,0,,1,,1,129788,2,1,2,0,1,,425.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1257.14030800487,0.0,29763.900834859975,5,5,0,1,120.0,10,8,1,0,1,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06040874850295673,19842.600556573318,5,3,5,5_1,5_4,5_1_0 +29766,1,38.0,497.0,6,211,700.0,,,43,62,0.0,0.0,,700.0,0.0,,43,0,0,0,0,0,0,0,0,0,,3,,4,129789,2,1,0,0,2,,600.0,620.0,43,2.0,0.0,3.0,5.0,2.4,2,2,96.1143039264057,700.0,15292.782398191559,4,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.045773226988620346,6371.99266591315,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29767,2,66.0,0.0,7,111,356.0,560.0,0.0,0,56,0.0,0.0,607.0513934404538,916.0,0.0,1063.162266846282,71,0,0,0,0,0,0,0,0,1,1.0,2,,5,129790,2,1,0,0,1,,151.0,510.0,22,2.0,1.0,3.0,2.0,1.5,2,2,1763.86738264455,356.0,39329.52382859292,0,1,2,3,70.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023290391309900876,26219.682552395283,7,4,7,7_0,7_3,7_0_0 +29768,2,66.0,0.0,1,111,430.0,1500.0,0.0,77,77,0.0,0.0,733.2362336499863,1930.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,129791,1,1,2,0,2,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,688.77673991653,430.0,31655.976941323002,5,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06096794938843354,21103.984627548667,5,3,5,5_1,5_4,5_1_0 +29769,2,70.0,0.0,5,120,900.0,0.0,0.0,75,72,0.0,0.0,1534.680489034855,960.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,129792,2,1,2,0,1,,200.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,1423.14430099529,900.0,43545.22464942969,5,5,0,1,60.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022046045409770853,29030.14976628646,8,4,8,8_1,8_1,8_0_0 +29770,2,65.0,0.0,6,111,1650.0,0.0,0.0,56,78,0.0,0.0,2813.5808965639008,1770.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129793,2,1,2,0,1,,334.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,331.998338003515,1650.0,29051.8858915344,1,5,0,1,92.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060925476804098655,19367.9239276896,5,3,5,5_1,5_3,5_0_0 +29771,2,62.0,0.0,5,111,311.0,694.0,0.0,0,45,0.0,0.0,530.317368988711,1005.0,0.0,1317.5618092702136,50,0,0,0,0,0,0,0,0,2,8.0,1,,3,129794,2,1,2,0,1,,180.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1263.77928363607,311.0,41719.36304679623,0,1,0,1,98.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02408953365066242,41719.36304679623,9,5,9,9_1,9_2,9_0_0 +29772,1,37.0,20.0,9,111,470.0,,,0,52,0.0,0.0,,596.0,174.58424239996165,,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,129795,2,1,0,0,2,,220.0,,32,1.0,0.0,4.0,3.0,1.6,1,1,94.9994770078803,470.0,18844.901892624956,0,4,1,2,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0316265907562643,11778.063682890597,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +29773,2,72.0,0.0,5,111,1092.0,,,0,78,0.0,0.0,,1332.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,3,129796,2,3,0,0,2,,492.0,,21,1.0,2.0,5.0,3.0,2.0,3,3,107.76595311516326,1092.0,16335.644429860655,0,5,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08153948292148044,8167.822214930327,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29774,2,49.0,0.0,2,111,0.0,0.0,2269.0,35,38,0.0,0.0,1430.1922009510536,2269.0,0.0,2715.385242824261,31,0,0,0,0,0,0,0,0,2,60.0,1,,2,129797,2,1,2,0,1,,900.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,549.521976349099,0.0,55058.955315123036,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04121037144663684,23938.67622396654,6,3,6,6_1,6_4,6_0_1 +29775,2,63.0,0.0,5,111,350.0,60.0,0.0,0,45,0.0,0.0,596.8201901802214,410.0,0.0,113.91024287638734,50,2,1,2,1,1,2,2,2,2,15.0,2,,3,129798,1,3,0,1,2,62.0,160.0,269.0,12,1.0,0.0,2.0,1.0,1.0,1,1,336.738866720269,350.0,42099.18279009655,0,1,2,3,61.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.00973890638315309,42099.18279009655,9,5,9,9_0,9_2,9_0_0 +29777,2,82.0,0.0,6,400,400.0,,,77,71,0.0,0.0,,670.0,374.10909085706066,,71,0,0,0,0,0,0,0,0,0,,1,,4,129800,2,2,0,0,1,,300.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,92.23926097417967,400.0,18261.525692327476,5,5,0,1,88.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03668915792076992,12174.35046155165,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +29778,2,38.0,0.0,2,111,0.0,0.0,0.0,85,33,0.0,0.0,0.0,1379.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,129801,2,1,1,0,1,,1115.0,1450.0,42,1.0,0.0,6.0,5.0,2.4,2,2,1336.17219996542,0.0,92432.11412407673,6,1,2,3,132.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014919057224514979,38513.38088503198,9,5,9,9_1,9_3,9_0_1 +29779,2,59.0,0.0,6,111,950.0,0.0,0.0,54,46,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,129802,2,1,1,0,1,,400.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,316.234121019753,950.0,60857.96764321608,1,1,0,1,90.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015610117077347026,40571.97842881072,9,5,9,9_1,9_3,9_0_0 +29781,1,44.0,268.0,7,112,350.0,654.0,0.0,0,64,0.0,0.0,596.8201901802214,1032.0,38.79649831110259,1241.621647352622,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,129804,2,3,3,0,1,,337.0,434.0,32,1.0,0.0,4.0,3.0,1.8,2,2,689.585775349267,350.0,19881.52841351816,0,1,2,3,85.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.051907478063824626,11045.293563065645,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +29782,2,77.0,0.0,6,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1370.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,129805,2,1,0,0,1,,97.0,404.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1395.35749306924,0.0,15572.164174288668,0,5,2,3,77.0,2,3,5,0,0,0,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.08797749527082553,15572.164174288668,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +29783,2,45.0,0.0,1,111,400.0,1030.0,0.0,0,65,0.0,0.0,682.0802173488245,1430.0,0.0,1955.4591693779826,71,0,0,0,0,0,0,0,0,0,,1,,1,129806,2,3,4,0,1,,320.0,331.0,22,1.0,6.0,4.0,2.0,1.5,2,2,289.086581337946,400.0,34306.58130087323,0,1,2,3,66.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04168296419449994,22871.05420058215,6,3,6,6_1,6_2,6_1_0 +29784,2,56.0,0.0,2,111,360.0,380.0,0.0,75,22,0.0,0.0,613.872195613942,740.0,0.0,721.4315382171199,31,0,0,0,0,0,0,0,0,2,50.0,2,,2,129807,2,2,0,1,1,1330.0,0.0,400.0,42,1.0,1.0,5.0,3.0,2.0,3,3,1029.5678006078,360.0,150593.19076436403,5,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004913900796204603,75296.59538218201,10,5,10,10_0,10_4,10_0_1 +29785,2,67.0,0.0,9,111,4201.6,,,77,75,0.0,0.0,,4362.0,221.69427606344334,,60,0,0,0,0,0,0,0,0,0,,1,2007.0,6,129808,2,1,0,0,1,,360.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,89.04051392768038,4201.6,57775.735640200684,5,5,1,2,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0754988223285364,38517.157093467125,9,5,9,9_1,9_2,9_0_0 +29786,2,44.0,0.0,7,111,900.0,,,85,35,0.0,0.0,,996.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,2,20.0,2,,5,129809,1,2,0,0,2,,246.0,740.0,42,1.0,1.0,6.0,5.0,2.5999999999999996,3,2,145.2188383543105,900.0,50290.043774449856,6,1,2,3,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0198051130054101,19342.324528634563,5,3,5,5_0,5_2,5_0_0 +29787,2,47.0,0.0,2,112,700.0,0.0,0.0,0,43,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,129810,2,1,2,0,2,,200.0,,32,2.0,0.0,5.0,3.0,2.0,3,3,1421.5747063723,700.0,37915.897016707204,0,1,1,2,85.0,9,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018461913209953943,18957.948508353602,5,3,5,5_1,5_1,5_0_1 +29788,1,31.0,310.0,8,112,420.0,0.0,0.0,0,85,0.0,331.081819252556,716.1842282162656,790.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,2,2003.0,6,129811,2,1,0,0,1,,300.0,600.0,31,0.0,0.0,3.0,3.0,1.6,1,1,1791.0862316927,420.0,11892.759574949536,0,6,2,3,65.0,9,1,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.06642697138719818,7432.974734343459,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +29789,1,35.0,399.0,2,120,1200.0,0.0,0.0,67,67,0.0,0.0,2046.2406520464733,1284.0,116.38949493330776,0.0,50,0,0,0,0,0,0,0,0,0,,3,,2,129812,1,3,0,0,2,,330.0,375.0,43,2.0,0.0,4.0,5.0,2.4,2,2,555.537501558653,1200.0,19654.648838746063,4,4,2,3,73.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06532805600010493,8189.437016144193,1,1,1_1,1_0_1,1_0_1,1_0_1_1 +29790,2,42.0,0.0,2,111,300.0,300.0,0.0,85,38,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,10,0,0,0,0,0,0,0,0,3,60.0,2,,2,129813,2,1,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,939.471397261511,300.0,46870.72552076071,7,1,0,1,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012801167324244613,31247.150347173807,8,4,8,8_0,8_4,8_0_1 +29791,2,53.0,0.0,2,111,600.0,,,0,52,0.0,0.0,,720.0,166.2707070475825,,60,0,0,0,0,0,0,0,0,1,5.0,1,,2,129814,2,2,0,0,2,,900.0,299.0,22,2.0,1.0,4.0,2.0,1.5,2,2,125.7407843224095,600.0,34981.995271867614,0,1,2,3,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020582016388842782,23321.330181245077,6,3,6,6_1,6_2,6_0_1 +29792,2,34.0,0.0,2,111,0.0,0.0,0.0,67,67,0.0,0.0,0.0,411.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129815,1,3,0,1,1,1620.0,0.0,603.0,43,2.0,0.0,5.0,4.0,2.1,2,2,214.947491736867,0.0,43353.17627240875,1,1,2,3,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009480274234521833,20644.369653527978,5,3,5,5_0,5_4,5_0_1 +29793,2,55.0,0.0,2,111,600.0,1000.0,0.0,62,46,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,2,129816,2,1,1,0,1,,110.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,225.514498594781,600.0,45940.95392749802,1,1,0,1,110.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.034827313392861825,30627.302618332014,8,4,8,8_1,8_2,8_0_1 +29795,2,31.0,0.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,785.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,129818,1,1,0,0,1,,0.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,689.680125244742,0.0,4825.588837168183,0,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.1626744479251291,4825.588837168183,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +29796,2,64.0,0.0,8,111,756.0,,,0,64,0.0,0.0,,1068.0,432.30383832371456,,71,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,129819,2,1,0,0,2,,454.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,70.79555340151308,756.0,32444.508043235543,0,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03291774369260842,32444.508043235543,8,4,8,8_1,8_2,8_0_0 +29797,2,88.0,0.0,1,400,480.0,0.0,0.0,11,69,2373.0364148323533,0.0,818.4962608185893,2790.0,83.13535352379125,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,129820,2,3,3,0,1,,0.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,983.634257329601,480.0,11491.022270309788,5,5,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.2427982414766292,7660.681513539858,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +29798,2,66.0,0.0,1,111,700.0,0.0,0.0,0,75,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,129821,1,2,0,1,2,,0.0,400.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1698.05827050132,700.0,21048.562757166193,0,5,2,3,16.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03325642743762531,21048.562757166193,5,3,5,5_0,5_4,5_1_0 +29799,2,41.0,0.0,2,112,560.0,0.0,0.0,0,43,0.0,264.8654554020448,954.9123042883542,820.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,129822,2,1,3,0,1,,194.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,797.07656117807,560.0,33757.95165121988,0,1,1,2,80.0,7,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024290573328384052,21098.719782012424,5,3,5,5_1,5_1,5_0_1 +29800,2,61.0,0.0,2,111,200.0,0.0,0.0,0,68,0.0,0.0,341.04010867441224,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,3.0,2,,2,129823,2,1,0,1,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,929.56927310928,200.0,27095.254004405462,0,1,0,1,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007381366491987182,27095.254004405462,7,4,7,7_0,7_4,7_0_1 +29802,2,80.0,0.0,6,111,120.0,0.0,0.0,78,75,0.0,0.0,204.62406520464734,120.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,129825,2,1,0,0,1,,0.0,450.0,41,0.0,5.0,2.0,2.0,1.5,2,2,2638.39599650987,120.0,31385.111297376694,5,5,2,3,50.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0038234689965885235,20923.407531584464,5,3,5,5_0,5_3,5_0_0 +29803,1,26.0,142.0,7,300,0.0,,,43,63,0.0,0.0,,425.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,129826,1,1,0,0,1,,321.0,700.0,43,2.0,0.0,5.0,4.0,2.1,2,2,106.91398953895978,0.0,31083.515259200765,4,1,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.013672842227012899,14801.673932952745,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +29804,2,49.0,0.0,1,300,1800.0,0.0,0.0,69,69,0.0,1324.327277010224,3069.36097806971,2900.0,138.5589225396521,0.0,50,2,2,2,1,1,2,2,2,2,10.0,1,,1,129827,2,1,1,0,1,,140.0,,43,2.0,2.0,5.0,5.0,2.8,4,3,755.387276294886,1800.0,28062.960182981933,4,1,1,2,120.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.10333906263241008,10022.485779636405,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +29805,2,41.0,0.0,1,120,419.0,0.0,0.0,22,22,1742.3360699124657,662.163638505112,714.4790276728936,2571.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,129828,1,1,1,0,2,,250.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,876.924000460115,419.0,63864.158199971855,1,1,1,2,160.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04025732229883417,24563.137769219946,7,4,7,7_1,7_0,7_1_0 +29806,2,38.0,0.0,9,120,900.0,0.0,0.0,55,45,0.0,0.0,1534.680489034855,935.0,48.49562288887823,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,129829,2,1,1,0,1,,520.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1337.39117328605,900.0,50055.152120108374,1,1,1,2,127.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018679395834347842,23835.78672386113,6,3,6,6_1,6_0,6_0_0 +29807,2,58.0,0.0,2,111,1000.0,1000.0,0.0,74,34,0.0,26.486545540204478,1705.2005433720612,2020.0,0.0,1898.504047939789,10,0,0,0,0,0,0,0,0,1,10.0,1,,2,129830,2,2,3,0,1,,400.0,,42,1.0,2.0,6.0,3.0,2.0,3,3,1390.37529593579,1000.0,92243.13152770992,5,1,0,1,120.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021898649433786735,46121.56576385496,10,5,10,10_1,10_2,10_0_1 +29808,2,97.0,0.0,2,111,250.0,,,0,77,0.0,0.0,,338.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,129831,1,3,0,0,2,,240.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,88.44637054134961,250.0,10959.0,0,5,0,1,45.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03084223013048636,10959.0,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +29809,1,24.0,105.0,9,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1196.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,2.0,2,2008.0,6,129832,2,1,0,0,1,,0.0,408.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1341.69307394813,0.0,15020.572762524844,0,1,2,3,63.0,7,5,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07962412744898295,15020.572762524844,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +29810,2,87.0,0.0,5,111,400.0,0.0,0.0,75,72,0.0,0.0,682.0802173488245,400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,129833,2,2,0,1,1,,0.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,2872.62403961312,400.0,208204.9822101686,5,5,0,1,125.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0019211836131578616,104102.4911050843,10,5,10,10_0,10_3,10_0_0 +29811,1,55.0,172.0,5,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,261.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,129834,1,2,0,1,1,396.0,179.0,259.0,11,0.0,0.0,2.0,1.0,1.0,1,1,740.74322223714,0.0,15140.883334327937,0,7,2,3,50.0,7,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017238095970811145,15140.883334327937,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +29812,2,60.0,0.0,5,111,275.0,365.0,0.0,0,52,0.0,0.0,468.93014942731685,640.0,0.0,692.9539774980229,33,2,2,2,2,1,2,1,2,2,20.0,2,,3,129835,1,2,0,0,1,,0.0,320.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1315.88527298518,275.0,11355.782528261192,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.05635895178577336,11355.782528261192,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +29813,2,49.0,0.0,8,211,630.0,,,42,34,0.0,0.0,,780.0,207.83838380947813,,10,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,129836,2,1,0,0,2,,720.0,,43,2.0,1.0,4.0,4.0,2.3,3,2,82.2269130519457,630.0,91544.47245959892,1,1,0,1,71.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008520448903610596,39801.94454765171,9,5,9,9_1,9_2,9_0_0 +29814,2,86.0,0.0,5,400,360.0,0.0,0.0,86,78,1835.1481608036868,1191.8945493092015,613.872195613942,3150.0,207.83838380947813,0.0,71,2,2,2,2,1,1,2,2,0,,1,,3,129837,2,1,2,0,1,,163.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1115.16990927257,360.0,29240.48750121148,6,5,0,1,130.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.10772734209268879,19493.658334140986,5,3,5,5_1,5_0,5_0_0 +29815,1,41.0,271.0,6,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,456.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,129838,1,2,0,1,2,720.0,0.0,277.0,11,0.0,2.0,2.0,1.0,1.0,1,1,362.069493916683,0.0,5122.840950423335,0,7,2,3,51.0,8,6,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08901310901762774,5122.840950423335,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +29816,1,42.0,202.0,7,112,1500.0,0.0,0.0,56,68,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,1,,5,129839,2,1,2,0,1,,320.0,375.0,43,2.0,0.0,4.0,4.0,2.1,2,2,201.405768723932,1500.0,33335.57460003957,1,1,2,3,90.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.044996974493375606,15874.083142875983,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +29817,2,69.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,607.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,129840,1,2,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,977.059347352577,0.0,47753.820623543514,7,5,0,1,85.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012711024836842852,31835.880415695676,8,4,8,8_0,8_4,8_0_1 +29818,2,82.0,0.0,2,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,846.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129841,2,2,0,0,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1742.01069327385,0.0,14352.13396006017,0,6,0,1,85.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05894593809912106,14352.13396006017,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +29819,2,27.0,0.0,9,111,900.0,0.0,0.0,42,34,0.0,0.0,1534.680489034855,900.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,60.0,1,2008.0,6,129842,2,2,1,0,1,,284.0,700.0,43,2.0,0.0,3.0,2.0,1.5,2,2,972.765334204096,900.0,40072.33359080685,4,1,2,3,60.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.022459385799445244,26714.8890605379,7,4,7,7_1,7_2,7_0_0 +29820,2,35.0,0.0,7,111,500.0,0.0,0.0,0,81,0.0,0.0,852.6002716860306,500.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,129843,2,1,0,0,1,,0.0,500.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1446.89408586964,500.0,18956.819504681596,0,4,2,3,19.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02637573248384411,18956.819504681596,5,3,5,5_0,5_4,5_0_0 +29821,2,66.0,0.0,8,112,1000.0,,,75,75,0.0,0.0,,1090.0,124.70303028568689,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,129844,2,1,0,0,2,,350.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,81.24529308041659,1000.0,67576.91908172726,5,5,0,1,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01612976760129828,45051.27938781818,10,5,10,10_1,10_1,10_0_0 +29822,2,57.0,0.0,6,111,240.0,0.0,0.0,0,54,0.0,0.0,409.2481304092947,1225.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,4,129845,2,1,0,1,1,620.0,0.0,467.0,12,1.0,2.0,4.0,1.0,1.0,1,1,286.582528356621,240.0,21810.58278102302,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05616539513404702,21810.58278102302,6,3,6,6_0,6_4,6_0_0 +29823,2,67.0,0.0,7,112,1524.0,0.0,0.0,0,77,0.0,529.7309108040896,2598.7256280990214,2016.0,127.47420873647992,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,129846,2,1,2,0,1,,363.0,595.0,11,0.0,4.0,4.0,1.0,1.0,1,1,988.764161307144,1524.0,24759.303510675694,0,5,2,3,80.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08142393824328471,24759.303510675694,7,4,7,7_1,7_0,7_0_0 +29824,2,63.0,0.0,2,111,380.0,1150.0,0.0,77,75,0.0,0.0,647.9762064813832,1530.0,0.0,2183.2796551307574,42,0,0,0,0,0,0,0,0,0,,1,,2,129847,2,3,1,0,1,,150.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,325.883660710475,380.0,38612.58070665904,6,5,0,1,105.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.039624391118103626,25741.72047110603,7,4,7,7_1,7_3,7_0_1 +29825,2,64.0,0.0,1,111,550.0,0.0,0.0,22,77,0.0,0.0,937.8602988546337,550.0,0.0,0.0,50,2,1,2,1,2,2,2,2,0,,2,,1,129848,2,1,0,1,2,,303.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,224.176044392675,550.0,23219.986898497147,4,5,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.02368649053956173,15479.991265664765,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +29826,2,64.0,0.0,2,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,1098.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,2,129849,2,2,5,0,1,,335.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,1393.56520259173,0.0,263342.2480247463,0,1,0,1,150.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0041694791027105564,263342.2480247463,10,5,10,10_1,10_3,10_0_1 +29827,2,49.0,0.0,1,111,320.0,0.0,0.0,0,56,316.40485531098045,0.0,545.6641738790596,620.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,10.0,2,,1,129850,2,2,0,0,1,,0.0,416.0,12,1.0,1.0,3.0,1.0,1.0,1,1,475.417156021016,320.0,19054.97283070548,0,1,2,3,60.0,7,5,3,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03253743815372554,19054.97283070548,5,3,5,5_0,5_2,5_1_0 +29828,1,41.0,178.0,6,211,1230.0,0.0,0.0,0,56,0.0,0.0,2097.396668347635,1358.0,177.35542085075468,0.0,50,2,2,2,1,1,2,2,2,2,25.0,2,,4,129851,2,2,0,0,1,,300.0,460.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1544.62064546412,1230.0,22921.096595551026,0,1,2,3,105.0,1,3,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.05924672907070193,14325.68537221939,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +29829,2,67.0,0.0,2,111,300.0,90.0,0.0,0,78,0.0,0.0,511.56016301161833,390.0,0.0,170.865364314581,71,0,0,0,0,0,0,0,0,0,,2,,2,129852,2,2,0,1,1,748.0,0.0,250.0,11,0.0,5.0,3.0,1.0,1.0,1,1,289.675442193451,300.0,17464.165237257388,0,5,2,3,70.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.022331442396570367,17464.165237257388,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +29830,2,49.0,0.0,7,111,500.0,,,0,53,0.0,0.0,,501.0,1.385589225396521,,43,0,0,0,0,0,0,0,0,2,5.0,1,,5,129853,2,1,0,0,2,,200.0,235.0,12,1.0,2.0,4.0,1.0,1.0,1,1,179.61889290173553,500.0,48529.31002221297,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010323658007309004,48529.31002221297,10,5,10,10_1,10_2,10_0_0 +29831,2,83.0,0.0,2,111,352.0,0.0,0.0,0,77,0.0,0.0,600.2305912669656,352.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,129854,2,1,0,1,1,,376.0,,21,0.0,0.0,5.0,2.0,1.5,2,2,581.502942027583,352.0,40869.78330027112,0,5,0,1,91.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00861271999936601,27246.522200180745,7,4,7,7_0,7_3,7_0_1 +29832,2,33.0,0.0,1,120,1000.0,0.0,0.0,85,47,1687.4925616585624,0.0,1705.2005433720612,2660.0,83.13535352379125,0.0,31,1,2,2,1,1,2,2,2,2,30.0,1,,1,129855,2,3,2,0,1,,800.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,1083.46481597675,1000.0,47089.2532871275,6,1,1,2,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.0564884727260508,31392.83552475167,8,4,8,8_1,8_0,8_1_0 +29833,2,76.0,0.0,9,211,900.0,0.0,0.0,0,77,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,129856,2,2,0,0,1,,130.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,3412.01467049425,900.0,32209.626364168522,0,5,0,1,86.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02794195715977636,32209.626364168522,8,4,8,8_0,8_1,8_0_0 +29834,2,35.0,0.0,2,111,528.0,0.0,0.0,37,37,832.1447694678786,0.0,900.3458869004482,1317.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,2,129857,2,3,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1325.9808536265,528.0,93938.4842886108,1,1,1,2,70.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014019813178523624,52188.046827005994,10,5,10,10_0,10_4,10_0_1 +29835,2,88.0,0.0,6,111,415.0,2145.0,0.0,0,77,0.0,0.0,707.6582254994054,2560.0,0.0,4072.2911828308474,60,0,0,0,0,0,0,0,0,0,,1,,4,129858,2,1,1,0,2,,240.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,571.015156895859,415.0,20186.55429917212,0,5,0,1,122.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12681708636649244,20186.55429917212,5,3,5,5_1,5_2,5_0_0 +29836,1,40.0,236.0,1,111,750.0,0.0,0.0,85,55,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,42,2,2,2,2,1,1,2,2,1,5.0,1,,1,129859,1,3,4,0,2,,240.0,179.0,42,1.0,0.0,3.0,8.0,3.499999999999999,3,2,264.345994320207,750.0,25622.416822581727,7,1,2,3,80.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,1,0,1,1,0.029271243426927815,7320.690520737638,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +29838,2,88.0,0.0,1,300,751.0,0.0,0.0,0,77,0.0,0.0,1280.605608072418,871.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129861,2,1,4,0,1,,150.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,1801.02583232033,751.0,16737.387149393948,0,5,0,1,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.052039185819486675,16737.387149393948,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +29839,2,46.0,0.0,9,112,1279.0,0.0,0.0,52,45,0.0,0.0,2180.9514949728664,1279.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,75.0,1,2006.0,6,129862,2,1,1,0,1,,220.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,880.909128616446,1279.0,47993.6895431638,1,1,1,2,160.0,8,2,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026649336864374918,22854.137877697045,6,3,6,6_1,6_1,6_0_0 +29840,2,47.0,0.0,7,111,2000.0,0.0,0.0,34,42,0.0,0.0,3410.4010867441225,2050.0,69.27946126982604,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,5,129863,2,1,2,0,1,,500.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,358.175857647665,2000.0,95075.47356840147,1,1,1,2,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021561817396840415,38030.18942736059,9,5,9,9_1,9_3,9_0_0 +29841,2,60.0,0.0,1,111,350.0,0.0,0.0,0,11,0.0,0.0,596.8201901802214,1074.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,129864,1,1,1,0,2,,300.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1203.35912120359,350.0,28717.010463955838,0,1,0,1,150.0,7,5,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03739943617557375,28717.010463955838,8,4,8,8_1,8_2,8_1_0 +29842,2,84.0,0.0,2,111,205.0,1428.0,0.0,0,75,0.0,0.0,349.56611139127256,1633.0,0.0,2711.0637804580188,50,0,0,0,0,0,0,0,0,0,,2,,2,129865,2,1,0,0,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,561.07538818662,205.0,13479.642271646639,0,5,0,1,72.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12114564816270283,13479.642271646639,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +29843,2,50.0,0.0,1,111,810.0,900.0,0.0,42,34,0.0,0.0,1381.2124401313695,1710.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,1,5.0,2,,1,129866,2,1,0,0,1,,0.0,739.0,43,2.0,0.0,3.0,4.0,2.3,3,3,2253.50939319404,810.0,40759.41076494561,4,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04195350148365379,17721.4829412807,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +29844,2,70.0,0.0,5,111,960.0,0.0,0.0,0,77,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,129867,2,1,0,0,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1198.11548563676,960.0,19099.967216719742,0,5,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.050261866374285424,19099.967216719742,5,3,5,5_0,5_4,5_0_0 +29845,2,63.0,0.0,8,111,1118.0,0.0,0.0,0,55,0.0,0.0,1906.4142074899644,1118.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,129868,1,3,1,0,1,,186.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,7407.78705452577,1118.0,25477.51127129822,0,4,1,2,73.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0438818371266697,25477.51127129822,7,4,7,7_1,7_2,7_0_0 +29846,2,58.0,0.0,1,111,360.0,800.0,0.0,0,37,0.0,0.0,613.872195613942,1160.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,2,,1,129869,2,2,0,0,1,,0.0,657.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1292.73418614698,360.0,60114.91009007711,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01929637752534002,60114.91009007711,10,5,10,10_0,10_4,10_1_0 +29847,2,29.0,0.0,5,111,350.0,0.0,0.0,52,62,0.0,0.0,596.8201901802214,350.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,105.0,2,,3,129870,1,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,501.168973875997,350.0,49679.42165956024,1,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007045170581864986,27599.67869975569,7,4,7,7_0,7_4,7_0_0 +29848,2,88.0,0.0,6,300,539.0,869.0,0.0,86,86,0.0,0.0,919.1030928775409,1408.0,0.0,1649.8000176596765,12,0,0,0,0,0,0,0,0,0,,1,,4,129871,2,1,4,0,1,,600.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1851.9192157979,539.0,43328.68396142968,5,5,0,1,120.0,0,0,9,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03249579426998921,28885.789307619783,8,4,8,8_1,8_0,8_0_0 +29849,2,52.0,0.0,2,111,2185.0,0.0,0.0,37,23,0.0,0.0,3725.8631872679534,2185.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,129872,2,1,2,0,1,,600.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,748.263748439641,2185.0,104009.9288857718,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021007609786943143,34669.97629525727,9,5,9,9_1,9_4,9_0_1 +29850,2,44.0,0.0,1,111,120.0,500.0,0.0,0,54,0.0,0.0,204.62406520464734,620.0,0.0,949.2520239698945,20,0,0,0,0,0,0,0,0,3,70.0,8,,1,129873,2,1,0,0,1,,75.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,812.52603908803,120.0,20031.98841449979,0,1,1,2,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030950497133436058,20031.98841449979,5,3,5,5_0,5_4,5_1_0 +29851,2,83.0,0.0,5,221,78.0,,,71,71,0.0,0.0,,330.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,129874,2,2,0,0,2,,645.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,99.71085191618519,78.0,15751.901147650266,5,5,0,1,99.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02094985214208423,10501.267431766844,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +29852,2,75.0,0.0,1,111,1420.0,1925.0,0.0,75,74,0.0,0.0,2421.3847715883267,3345.0,0.0,3654.620292284094,10,0,0,0,0,0,0,0,0,0,,1,,1,129875,2,2,3,0,1,,690.0,,41,1.0,2.0,3.0,3.0,2.0,3,3,364.688104731276,1420.0,74088.57650819891,5,5,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04514866066605869,37044.288254099454,9,5,9,9_1,9_4,9_1_0 +29853,2,57.0,0.0,5,111,850.0,1350.0,0.0,52,67,0.0,0.0,1449.420461866252,2200.0,0.0,2562.980464718715,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,129876,2,2,5,0,1,,200.0,829.0,43,2.0,5.0,5.0,2.0,1.5,2,2,381.856119458877,850.0,42376.64986671423,1,1,2,3,110.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051915382809155086,28251.09991114282,8,4,8,8_1,8_3,8_0_0 +29854,1,54.0,142.0,2,400,0.0,0.0,0.0,67,63,0.0,0.0,0.0,1034.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,129877,2,2,5,0,2,,184.0,410.0,43,3.0,4.0,5.0,3.0,2.0,3,3,1221.6150489276,0.0,13196.440962356155,4,1,2,3,180.0,0,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.07835445958115246,6598.2204811780775,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +29855,2,55.0,0.0,2,111,360.0,,,0,63,0.0,0.0,,406.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,129878,2,2,0,0,2,,320.0,400.0,12,1.0,0.0,2.0,1.0,1.0,1,1,130.07387446477273,360.0,28088.93119090903,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01445409215610887,28088.93119090903,8,4,8,8_1,8_2,8_0_1 +29856,2,68.0,0.0,2,221,0.0,0.0,0.0,0,78,0.0,0.0,0.0,985.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129879,1,2,0,0,2,,75.0,300.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1113.36992703248,0.0,18112.219714610168,0,5,2,3,22.0,1,2,8,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.054383174206166056,18112.219714610168,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +29857,0,42.0,0.0,2,112,972.0,,,0,56,0.0,0.0,,1248.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,129880,2,3,0,0,2,,744.0,,32,1.0,0.0,3.0,3.0,1.8,2,1,129.13310399311817,972.0,11076.106465909295,0,4,5,0,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.11267497327162476,6153.39248106072,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +29858,1,24.0,286.0,2,112,240.0,1760.0,0.0,85,85,0.0,0.0,409.2481304092947,2000.0,0.0,3341.3671243740287,71,0,0,0,0,0,0,0,0,0,,2,,2,129881,2,3,0,0,1,,0.0,260.0,41,0.0,0.0,3.0,3.0,1.8,2,2,3029.84396859676,240.0,8914.0,6,6,2,3,62.0,7,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2243661655822302,4952.222222222222,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +29859,2,44.0,0.0,9,111,480.0,850.0,0.0,22,37,0.0,0.0,818.4962608185893,1330.0,0.0,1613.7284407488207,10,0,0,0,0,0,0,0,0,0,,2,2005.0,6,129882,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,883.309753209829,480.0,46176.53313934331,1,1,1,2,115.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02880250875453476,21988.825304449194,6,3,6,6_0,6_4,6_0_0 +29860,1,49.0,340.0,1,111,924.0,1464.0,0.0,0,67,0.0,0.0,1575.6053020757845,2388.0,0.0,2779.409926183851,71,0,0,0,0,0,0,0,0,0,,1,,1,129883,1,1,2,0,1,,408.0,293.0,22,2.0,5.0,5.0,3.0,2.0,3,3,425.975356056565,924.0,13438.938164650455,0,1,2,3,89.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17769261014098217,6719.469082325228,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +29861,1,39.0,127.0,5,111,400.0,200.0,0.0,0,54,0.0,0.0,682.0802173488245,600.0,0.0,379.7008095879578,43,0,0,0,0,0,0,0,0,3,80.0,2,,3,129884,1,3,0,1,2,781.0,0.0,819.0,32,1.0,0.0,3.0,2.0,1.3,1,1,276.050856487136,400.0,19820.310922895744,0,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03027197718209862,15246.39301761211,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +29862,2,23.0,0.0,1,111,0.0,0.0,0.0,56,34,0.0,0.0,0.0,1430.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,25.0,2,,1,129885,2,1,0,0,1,,0.0,750.0,43,2.0,0.0,2.0,2.0,1.5,2,2,270.096894486357,0.0,15214.554964110781,1,1,2,3,50.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09398894699011505,10143.03664274052,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +29863,1,38.0,52.0,2,111,420.0,0.0,0.0,81,64,0.0,0.0,716.1842282162656,420.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,129886,2,1,0,1,1,229.0,0.0,216.0,43,2.0,0.0,1.0,2.0,1.5,2,2,832.665929441339,420.0,14209.180068197365,4,1,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029558355794225846,9472.786712131578,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +29864,2,57.0,0.0,1,112,600.0,0.0,0.0,75,38,2109.365702073203,238.3789098618403,1023.1203260232367,2780.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,129887,2,1,1,0,1,,300.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,868.627480822319,600.0,58908.31330168391,5,1,0,1,170.0,9,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.047191980964773825,39272.208867789275,9,5,9,9_1,9_0,9_1_0 +29865,2,60.0,0.0,8,112,1100.0,,,77,64,0.0,0.0,,1250.0,207.83838380947813,,70,0,0,0,0,0,0,0,0,2,45.0,2,2000.0,6,129888,2,1,0,0,2,,280.0,345.0,42,1.0,7.0,3.0,2.0,1.5,2,2,93.60042257129082,1100.0,20458.32898172324,6,1,2,3,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06109980933030779,13638.885987815493,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +29868,2,70.0,0.0,1,111,400.0,2000.0,0.0,46,74,0.0,0.0,682.0802173488245,2400.0,0.0,3797.008095879578,20,0,0,0,0,0,0,0,0,0,,1,,1,129891,2,1,2,0,1,,0.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,771.290364160382,400.0,73960.00726766004,1,5,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03244996976966808,41088.8929264778,9,5,9,9_1,9_4,9_1_0 +29869,2,63.0,0.0,1,111,1300.0,0.0,0.0,0,75,0.0,278.10872817214704,2216.7607063836795,1510.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,129892,2,1,2,0,1,,508.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,1537.91334764593,1300.0,64756.98255449521,0,5,0,1,150.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023317948743663025,64756.98255449521,10,5,10,10_1,10_3,10_1_0 +29870,1,51.0,254.0,2,111,0.0,0.0,983.0,0,67,0.0,0.0,619.6028794776931,983.0,0.0,1176.3877010560814,50,0,0,0,0,0,0,0,0,0,,8,,2,129893,2,1,0,1,1,,0.0,287.0,12,1.0,2.0,3.0,1.0,1.0,1,1,266.472808355249,0.0,6156.526418743337,0,4,2,3,60.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15966795773137427,6156.526418743337,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +29871,2,40.0,0.0,8,112,236.0,,,85,11,0.0,0.0,,302.0,91.44888887617039,,43,0,0,0,0,0,0,0,0,1,5.0,1,2000.0,6,129894,2,1,0,0,2,,204.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,129.9739502457755,236.0,17565.806669196212,6,1,0,1,120.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01719249253321192,8364.669842474386,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29872,2,53.0,0.0,8,112,600.0,,,55,54,0.0,0.0,,738.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,2,1.0,1,2001.0,6,129895,2,1,0,0,2,,900.0,,43,2.0,4.0,7.0,3.0,2.0,3,2,95.66824418651484,600.0,16962.544680851064,1,1,1,2,122.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043507623053345566,8481.272340425532,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29873,2,82.0,0.0,2,120,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1452.0,159.34276092059991,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,129896,2,1,1,0,1,,201.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,2634.13279001066,0.0,30340.583092975023,0,5,0,1,142.0,0,0,4,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.047856693971586595,30340.583092975023,8,4,8,8_1,8_0,8_0_1 +29874,2,51.0,0.0,9,211,738.0,,,0,52,0.0,0.0,,822.0,116.38949493330776,,60,2,2,2,2,1,2,2,2,2,20.0,1,2004.0,6,129897,2,1,0,0,1,,420.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,94.73868325501057,738.0,30184.082059314216,0,1,1,2,59.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.027232897074183075,20122.721372876145,5,3,5,5_1,5_2,5_0_0 +29875,1,36.0,491.0,7,111,282.0,499.0,0.0,55,47,0.0,0.0,480.8665532309212,781.0,0.0,947.3535199219547,20,2,2,2,1,1,2,2,2,2,45.0,2,,5,129898,1,3,0,0,1,,544.0,514.0,43,2.0,0.0,3.0,5.0,2.4,2,2,1012.00256045459,282.0,35433.43086575783,4,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.022041331615865148,14763.929527399096,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +29876,2,57.0,0.0,2,111,1200.0,0.0,0.0,56,62,0.0,794.5963662061343,2046.2406520464733,1940.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129899,2,3,1,0,1,,158.0,,43,2.0,3.0,4.0,3.0,2.0,3,2,2488.16065659432,1200.0,26649.867646898965,4,1,0,1,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07279585871510857,13324.933823449483,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +29877,1,53.0,25.0,2,111,301.0,1342.0,0.0,0,68,0.0,0.0,513.2653635549904,1643.0,0.0,2547.7924323351967,50,2,2,2,2,1,2,2,2,0,,2,,2,129900,2,2,0,0,1,,0.0,345.0,32,2.0,0.0,2.0,2.0,1.5,2,2,303.713467250826,301.0,18625.52440364202,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.08821228140447575,12417.01626909468,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +29879,2,55.0,0.0,1,400,561.0,0.0,0.0,69,55,0.0,529.7309108040896,956.6175048317264,1061.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,129902,2,1,1,0,1,,162.0,,43,2.0,2.0,3.0,2.0,1.5,2,2,1404.8248219228,561.0,41510.24097512883,1,1,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025559957617102395,27673.49398341922,7,4,7,7_1,7_0,7_1_0 +29880,2,49.0,0.0,2,111,1284.0,334.0,0.0,0,63,0.0,0.0,2189.4774976897265,1618.0,0.0,634.1003520118895,71,0,0,0,0,0,0,0,0,0,,2,,2,129903,2,1,0,0,1,,0.0,500.0,32,2.0,5.0,2.0,3.0,2.0,3,3,386.075096208076,1284.0,22924.711126054433,0,1,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07057886099864996,11462.355563027217,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +29881,1,25.0,270.0,1,111,350.0,0.0,0.0,0,68,0.0,0.0,596.8201901802214,350.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,129904,2,2,0,1,1,672.0,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2581.74863657632,350.0,5160.972468784765,0,4,2,3,30.0,8,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06781667643393052,5160.972468784765,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +29882,2,27.0,0.0,2,111,630.0,0.0,0.0,55,53,0.0,0.0,1074.2763423243985,630.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,129905,2,1,0,1,1,,0.0,,43,4.0,0.0,5.0,6.0,3.0999999999999996,4,4,296.536182337112,630.0,43919.57139138856,1,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014344402279925844,14167.603674641474,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +29883,0,80.0,0.0,1,112,390.0,0.0,0.0,0,77,0.0,0.0,665.0282119151038,750.0,498.81212114274757,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,129906,2,1,2,0,1,,130.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1289.52885474647,390.0,15528.142725460326,0,5,0,1,76.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04829940149701751,15528.142725460326,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +29884,0,73.0,0.0,8,400,0.0,0.0,1372.0,72,72,0.0,0.0,864.7966944490285,4516.0,4356.292524646662,1641.916506458742,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,129907,2,2,2,0,1,,472.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,1328.88356270208,0.0,60934.71590518691,5,5,0,1,127.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07411210396101292,30467.357952593455,8,4,8,8_1,8_0,8_0_0 +29885,1,48.0,340.0,9,111,900.0,,,62,43,0.0,0.0,,1005.0,145.4868686666347,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129908,2,1,0,0,2,,372.0,523.0,43,3.0,1.0,4.0,3.0,2.0,3,3,108.49118166352778,900.0,12361.342925420757,4,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08130184609094904,6180.671462710378,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +29886,1,23.0,255.0,9,211,0.0,0.0,0.0,0,47,0.0,0.0,0.0,447.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,129909,2,2,0,0,1,,239.0,404.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1313.5236763343,0.0,26734.73312091186,0,1,2,3,36.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.016719822785526795,26734.73312091186,7,4,7,7_0,7_2,7_0_0 +29887,2,27.0,0.0,8,111,660.0,0.0,0.0,0,33,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,10,2,2,2,2,1,2,2,2,3,1.0,2,2002.0,6,129910,2,1,0,0,1,,0.0,607.0,12,1.0,0.0,2.0,1.0,1.0,1,1,869.105783926676,660.0,22563.18833420467,0,1,2,3,38.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.029251185170469585,22563.18833420467,6,3,6,6_0,6_3,6_0_0 +29888,2,58.0,0.0,8,111,450.0,,,0,37,0.0,0.0,,542.0,127.47420873647992,,31,0,0,0,0,0,0,0,0,2,60.0,1,1999.0,6,129911,2,2,0,0,2,,300.0,,22,2.0,0.0,6.0,3.0,1.8,2,2,137.2130854592625,450.0,46804.36250494977,0,1,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01158011712995089,26002.423613860985,7,4,7,7_1,7_2,7_0_0 +29889,2,53.0,0.0,7,111,940.0,0.0,0.0,43,37,0.0,0.0,1602.8885107697374,940.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,129912,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,714.724893606308,940.0,343816.0177347169,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0027340203815788755,229210.67848981125,10,5,10,10_0,10_4,10_0_0 +29890,2,80.0,0.0,2,400,430.0,0.0,0.0,77,72,1792.9608467622227,132.4327277010224,733.2362336499863,2320.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129913,1,2,2,0,1,,331.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1235.34374628396,430.0,20975.88346515882,5,5,0,1,100.0,0,0,9,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11060320791033887,13983.92231010588,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +29891,2,64.0,0.0,7,112,240.0,300.0,0.0,0,56,0.0,0.0,409.2481304092947,540.0,0.0,569.5512143819367,70,0,0,0,0,0,0,0,0,2,5.0,2,,5,129914,2,1,0,0,1,,180.0,420.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1968.81690598463,240.0,16286.73135915447,0,5,2,3,56.0,9,2,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.03315582409336395,16286.73135915447,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +29892,1,20.0,358.0,2,111,0.0,0.0,0.0,67,52,0.0,0.0,0.0,499.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,129915,2,2,0,1,1,874.0,628.0,304.0,43,2.0,1.0,3.0,3.0,1.8,2,2,296.322983198495,0.0,12615.614573227112,4,4,2,3,63.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03955415704114638,7008.674762903951,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +29893,1,46.0,200.0,8,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1400.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,129916,2,1,3,0,1,,525.0,575.0,42,1.0,0.0,5.0,6.0,3.0999999999999996,4,3,1301.06508643603,0.0,37444.94597059826,6,1,2,3,110.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.037388223262473895,12079.014829225247,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +29894,2,64.0,0.0,6,111,1100.0,0.0,0.0,77,46,0.0,132.4327277010224,1875.7205977092674,1320.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,129917,2,1,2,0,1,,350.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,289.983899233259,1100.0,68646.26898237383,5,5,0,1,88.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019229013019468454,45764.17932158255,10,5,10,10_1,10_3,10_0_0 +29895,2,24.0,0.0,1,112,980.0,0.0,0.0,0,63,0.0,0.0,1671.09653250462,980.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,10.0,2,,1,129918,1,3,0,0,2,,240.0,389.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2724.0077304722,980.0,18871.343686244796,0,1,2,3,65.0,9,5,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.05193058937898078,18871.343686244796,5,3,5,5_0,5_2,5_1_0 +29896,2,43.0,0.0,9,111,0.0,0.0,0.0,56,63,0.0,0.0,0.0,1567.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,129919,2,1,1,0,1,,517.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1370.01007981203,0.0,47915.9052134098,1,1,1,2,112.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03270312838755381,22817.097720671332,6,3,6,6_1,6_3,6_0_0 +29897,2,54.0,0.0,2,111,400.0,1059.0,0.0,0,63,0.0,0.0,682.0802173488245,1459.0,0.0,2010.5157867682365,50,0,0,0,0,0,0,0,0,0,,1,,2,129920,2,2,2,0,2,,160.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,192.610904403566,400.0,23669.211689738342,0,1,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0616412586580795,23669.211689738342,6,3,6,6_1,6_2,6_0_1 +29898,1,30.0,174.0,1,112,0.0,0.0,0.0,85,67,0.0,0.0,0.0,3116.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,1,129921,1,2,3,0,1,,492.0,315.0,42,1.0,0.0,4.0,4.0,2.1,2,2,59.9387375685854,0.0,22333.62951397562,6,1,2,3,60.0,8,0,3,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.13952053776347073,10635.061673321723,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +29899,2,57.0,0.0,5,300,1000.0,0.0,0.0,78,68,0.0,794.5963662061343,1705.2005433720612,1960.0,498.81212114274757,0.0,71,2,2,2,1,1,2,2,2,2,20.0,1,,3,129922,1,1,3,0,2,,294.0,,42,3.0,1.0,4.0,4.0,2.5,4,4,1252.18973250865,1000.0,45391.26185334278,5,1,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.04318011705276394,18156.504741337114,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +29901,0,44.0,0.0,2,111,0.0,0.0,1720.0,0,46,0.0,0.0,1084.1474595133593,1720.0,0.0,2058.379293811251,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,129924,2,1,0,0,1,,420.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,513.624771533228,0.0,44308.22972373061,0,1,0,1,98.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03881897360207109,22154.114861865306,6,3,6,6_0,6_2,6_0_1 +29902,0,43.0,0.0,6,111,830.0,,,0,62,0.0,0.0,,896.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,129925,2,2,0,0,2,,508.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,97.4132660707966,830.0,45790.93187193267,0,1,5,0,75.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019567192965321566,45790.93187193267,10,5,10,10_1,10_3,10_0_0 +29903,2,64.0,0.0,7,111,348.0,946.0,0.0,0,56,0.0,0.0,593.4097890934773,1294.0,0.0,1795.9848293510404,50,0,0,0,0,0,0,0,0,0,,2,,5,129926,2,1,0,0,1,,0.0,550.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1196.93759600593,348.0,16119.020436191664,0,1,2,3,90.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0802778310954065,16119.020436191664,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +29904,2,43.0,0.0,2,111,456.0,186.0,0.0,84,63,0.0,0.0,777.5714477776598,642.0,0.0,353.12175291680074,50,2,2,2,1,2,2,2,2,2,60.0,2,,2,129927,1,3,0,1,1,,0.0,,42,1.0,2.0,4.0,3.0,1.8,2,2,244.516979787768,456.0,35982.28436066468,3,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.0178421134568606,19990.157978147043,5,3,5,5_0,5_4,5_0_1 +29905,2,22.0,0.0,2,111,650.0,60.0,0.0,0,63,0.0,397.2981831030672,1108.3803531918397,1010.0,0.0,113.91024287638734,50,1,2,2,1,1,2,2,2,0,,2,,2,129928,2,2,0,1,1,276.0,0.0,349.0,22,2.0,0.0,3.0,2.0,1.5,2,2,207.934207448233,650.0,39747.49981376454,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02541040328907021,26498.33320917636,7,4,7,7_0,7_4,7_0_1 +29906,2,56.0,0.0,2,111,2000.0,2000.0,0.0,34,34,0.0,0.0,3410.4010867441225,4000.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,129929,1,1,2,0,1,,426.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,1240.45677220009,2000.0,172253.4094894268,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023221601313183453,86126.7047447134,10,5,10,10_1,10_4,10_0_1 +29907,2,33.0,0.0,2,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,149.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,129930,1,2,0,1,1,347.0,0.0,275.0,12,1.0,0.0,2.0,1.0,1.0,1,1,356.329244338967,0.0,17708.9585191161,0,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008413820600413095,17708.9585191161,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +29909,1,31.0,70.0,2,111,1089.0,1324.0,0.0,85,21,0.0,0.0,1856.9633917321746,2413.0,0.0,2513.619359472281,71,0,0,0,0,0,0,0,0,0,,1,,2,129932,2,1,1,0,1,,221.0,,42,1.0,0.0,3.0,4.0,2.1,2,2,1351.10057999821,1089.0,24738.54962408965,6,1,1,2,85.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.09754007557703762,11780.261725756976,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +29910,2,41.0,0.0,1,211,655.0,0.0,0.0,0,54,0.0,0.0,1116.9063559087,688.0,45.72444443808519,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,129933,2,1,1,0,1,,370.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1696.10392164049,655.0,28123.022230422877,0,1,1,2,85.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024463942543690644,28123.022230422877,8,4,8,8_1,8_1,8_1_0 +29911,2,39.0,0.0,1,111,338.0,84.0,0.0,0,31,0.0,0.0,576.3577836597567,422.0,0.0,159.4743400269423,10,0,0,0,0,0,0,0,0,1,10.0,2,,1,129934,2,1,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,614.015477771694,338.0,17887.046058036885,0,1,1,2,33.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023592492501599494,17887.046058036885,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +29912,2,55.0,0.0,6,111,190.0,0.0,0.0,0,54,0.0,607.8662201476927,323.9881032406916,649.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,40.0,2,,4,129935,2,1,0,1,1,459.0,0.0,369.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1171.17259080609,190.0,29450.989838001602,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0220366107750502,29450.989838001602,8,4,8,8_0,8_4,8_0_0 +29913,2,39.0,0.0,1,111,570.0,0.0,0.0,0,37,0.0,0.0,971.9643097220749,570.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,30.0,2,,1,129936,2,1,0,0,1,,0.0,,22,2.0,0.0,2.0,2.0,1.5,2,2,1119.78842170826,570.0,58353.91236728009,0,1,1,2,27.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009767982588937902,38902.60824485339,9,5,9,9_0,9_4,9_1_0 +29914,1,48.0,44.0,8,112,1157.0,0.0,0.0,52,67,0.0,0.0,1972.9170286814747,1197.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,129937,2,2,1,0,1,,201.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,810.080650875304,1157.0,35782.57827894909,1,1,1,2,87.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.033452033295884545,15557.642729977866,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +29915,2,54.0,0.0,1,111,1122.0,1968.0,0.0,77,21,0.0,0.0,1913.2350096634527,3123.0,45.72444443808519,3736.255966345505,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,129938,1,1,1,0,2,,629.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1590.73921211524,1122.0,9657.76803504214,7,1,0,1,110.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.3233666400630602,6438.512023361426,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +29916,2,78.0,0.0,2,111,600.0,0.0,0.0,90,75,2109.365702073203,0.0,1023.1203260232367,2740.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,129939,2,1,2,0,1,,207.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,242.858365864681,600.0,34672.95561577526,5,5,0,1,96.0,9,7,2,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0790241256142979,23115.303743850174,6,3,6,6_1,6_3,6_0_1 +29917,2,73.0,0.0,1,111,238.0,1700.0,0.0,77,72,0.0,0.0,405.83772932255056,1938.0,0.0,3227.4568814976415,50,0,0,0,0,0,0,0,0,0,,1,,1,129940,2,1,2,0,1,,201.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,283.951713930635,238.0,31488.503428354394,5,5,0,1,120.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.061546272099260606,20992.33561890293,5,3,5,5_1,5_2,5_1_0 +29918,0,62.0,0.0,2,111,243.0,270.0,0.0,56,53,0.0,0.0,414.3637320394109,513.0,0.0,512.596092943743,50,2,2,2,2,1,2,2,2,1,15.0,2,,2,129941,1,2,0,1,2,197.0,0.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,253.216826838686,243.0,54495.252780823364,1,5,5,0,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.009413664013327092,36330.16852054891,9,5,9,9_0,9_4,9_0_1 +29919,2,49.0,0.0,1,111,1200.0,500.0,0.0,85,47,0.0,0.0,2046.2406520464733,1700.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,1,,1,129942,2,1,1,0,1,,1080.0,,42,3.0,0.0,4.0,5.0,2.8,4,4,417.422541500116,1200.0,97028.7694801576,6,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01752057672284147,34653.13195719915,9,5,9,9_1,9_4,9_1_0 +29920,2,67.0,0.0,2,111,218.0,550.0,0.0,0,77,0.0,0.0,371.73371845510934,768.0,0.0,1044.177226366884,71,1,2,2,2,1,2,2,2,0,,2,,2,129943,2,1,0,1,1,,71.0,275.0,11,0.0,2.0,3.0,1.0,1.0,1,1,352.648633344787,218.0,18206.07241192119,0,5,2,3,65.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.042183727638978284,18206.07241192119,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +29921,2,56.0,0.0,7,111,500.0,,,11,11,0.0,0.0,,788.0,399.049696914198,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,129944,2,1,0,0,1,,240.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,126.50560781503592,500.0,33163.12332362171,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023761332499062798,22108.74888241447,6,3,6,6_1,6_2,6_0_0 +29922,2,33.0,0.0,9,111,1112.0,0.0,0.0,54,21,0.0,0.0,1896.183004229732,1112.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,129945,2,1,1,0,1,,254.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1308.82667097347,1112.0,47701.21718250185,1,1,1,2,140.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023311774115649043,22714.86532500088,6,3,6,6_1,6_3,6_0_0 +29923,2,65.0,0.0,6,111,780.0,0.0,0.0,77,78,0.0,0.0,1330.0564238302077,816.0,49.88121211427475,0.0,71,2,1,2,1,1,2,2,2,0,,1,,4,129946,1,2,3,1,1,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,231.839772498214,780.0,46861.24501775271,7,5,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.017413109696314516,31240.830011835144,8,4,8,8_1,8_4,8_0_0 +29924,2,72.0,0.0,5,111,410.0,0.0,0.0,0,75,0.0,79.45963662061344,699.1322227825451,470.0,0.0,0.0,20,1,2,2,1,2,1,2,2,0,,2,,3,129947,2,2,0,1,1,597.0,0.0,568.0,11,0.0,2.0,4.0,1.0,1.0,1,1,390.032139800796,410.0,37436.81955149471,0,5,2,3,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012554485280286977,37436.81955149471,9,5,9,9_0,9_4,9_0_0 +29925,2,62.0,0.0,7,111,600.0,,,78,52,0.0,0.0,,900.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,129948,2,1,0,0,2,,200.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,50.80332894079817,600.0,15360.123966942148,5,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.058593277107461365,10240.082644628099,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +29926,2,52.0,0.0,2,111,600.0,2200.0,0.0,0,45,0.0,0.0,1023.1203260232367,2800.0,0.0,4176.708905467536,30,0,0,0,0,0,0,0,0,2,20.0,1,,2,129949,2,2,2,0,1,,400.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1143.51135115333,600.0,29543.997228811117,0,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09477390545073089,29543.997228811117,8,4,8,8_1,8_4,8_0_1 +29927,2,37.0,0.0,8,211,660.0,,,0,11,0.0,0.0,,792.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,129950,2,2,0,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,103.9680425026478,660.0,3882.3279070167264,0,1,0,1,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20400131543978514,3882.3279070167264,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +29928,2,39.0,0.0,6,111,500.0,400.0,0.0,63,33,0.0,0.0,852.6002716860306,900.0,0.0,759.4016191759156,10,0,0,0,0,0,0,0,0,2,30.0,1,,4,129951,2,1,2,0,1,,220.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1051.00504628642,500.0,56545.616187749,1,1,1,2,110.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015916353214928645,37697.077458499334,9,5,9,9_1,9_3,9_0_0 +29929,2,75.0,0.0,7,111,1233.0,0.0,0.0,86,74,0.0,52.973091080408956,2102.512269977751,1273.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,129952,2,1,2,0,1,,394.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1032.89294567387,1233.0,18341.13109867203,6,5,0,1,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06940684263971976,12227.420732448021,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +29930,2,63.0,0.0,1,112,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1419.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,129953,1,3,4,0,2,,203.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,847.082323695146,0.0,17526.10040965364,0,5,0,1,120.0,10,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08096495893737966,17526.10040965364,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +29931,2,63.0,0.0,6,120,680.0,,,0,77,0.0,0.0,,768.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,4,129954,2,1,0,0,2,,240.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,114.33636673788986,680.0,15463.861375040398,0,7,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.049664180334647735,15463.861375040398,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +29932,1,28.0,350.0,8,111,420.0,,,0,56,0.0,0.0,,441.0,29.09737373332694,,50,0,0,0,0,0,0,0,0,0,,8,1999.0,6,129955,1,2,0,0,2,,87.0,423.0,32,1.0,0.0,3.0,2.0,1.3,1,1,136.90280520291242,420.0,32178.630234242723,0,4,2,3,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013704747429886314,24752.792487879018,7,4,7,7_0,7_3,7_0_0 +29933,2,64.0,0.0,5,111,450.0,,,0,75,0.0,0.0,,450.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,3,129956,2,2,0,0,1,,340.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,34.12707381986511,450.0,54457.633290824095,0,5,0,1,117.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00826330438557313,54457.633290824095,10,5,10,10_1,10_2,10_0_0 +29934,1,76.0,162.0,2,111,190.0,0.0,0.0,0,77,0.0,0.0,323.9881032406916,190.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,129957,2,1,0,1,1,1036.0,60.0,336.0,11,0.0,4.0,3.0,1.0,1.0,1,1,489.33780227144,190.0,12876.531352709982,0,5,2,3,65.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.014755526530831828,12876.531352709982,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +29935,2,41.0,0.0,8,111,0.0,0.0,0.0,31,37,0.0,0.0,0.0,1255.0,0.0,0.0,10,2,2,1,2,1,2,2,2,2,45.0,1,2001.0,6,129958,2,1,2,0,1,,429.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1194.57461244561,0.0,47809.27037711056,1,1,1,2,89.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.026250139148763313,20786.639294395896,5,3,5,5_1,5_3,5_0_0 +29936,1,55.0,134.0,1,300,1259.0,0.0,0.0,85,67,0.0,701.8934568154186,2146.847484105425,1909.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,1,5.0,1,,1,129959,2,1,1,0,1,,642.0,292.0,42,1.0,2.0,4.0,3.0,2.0,3,2,277.933487557922,1259.0,24473.40459296935,6,1,2,3,145.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07800304174060083,12236.702296484675,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +29937,2,35.0,0.0,1,111,840.0,0.0,0.0,47,38,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,20.0,2,,1,129960,1,3,0,0,1,,0.0,715.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1141.3834036995,840.0,75148.6276679578,1,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011177848831937657,50099.085111971865,10,5,10,10_0,10_4,10_1_0 +29938,2,44.0,0.0,1,111,393.0,931.0,0.0,0,48,0.0,0.0,670.14381354522,1324.0,0.0,1767.5072686319436,41,0,0,0,0,0,0,0,0,2,25.0,2,,1,129961,2,1,0,0,1,,190.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,978.736474338023,393.0,33053.14435587546,0,1,1,2,62.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.040056703403004636,33053.14435587546,8,4,8,8_0,8_2,8_1_0 +29939,2,57.0,0.0,2,111,250.0,150.0,0.0,0,43,0.0,0.0,426.3001358430153,400.0,0.0,284.77560719096834,31,2,1,2,1,2,2,2,2,2,60.0,1,,2,129962,2,1,2,0,1,,500.0,,32,1.0,0.0,5.0,2.0,1.5,2,2,845.272285024066,250.0,33222.01044154847,0,1,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.012040210531622363,22148.00696103231,6,3,6,6_1,6_4,6_0_1 +29940,1,43.0,309.0,2,111,390.0,900.0,0.0,81,21,0.0,0.0,665.0282119151038,1290.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,2,,2,129963,1,3,0,0,1,,254.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,324.711674020633,390.0,29769.575721471345,4,1,1,2,55.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04333283121228986,12403.989883946395,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +29941,0,62.0,0.0,5,120,0.0,,,0,52,0.0,0.0,,934.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,1,2.0,1,,3,129964,2,1,0,0,2,,390.0,,22,5.0,0.0,5.0,7.0,3.6,5,5,127.4422475245607,0.0,48192.76539446249,0,1,0,1,120.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019380502288157127,13386.87927623958,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +29942,2,72.0,0.0,6,111,480.0,,,86,75,0.0,66.2163638505112,,610.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,4,129965,2,1,0,0,2,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,129.19002664368602,480.0,30538.864555192875,6,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019974547478592314,20359.24303679525,5,3,5,5_1,5_2,5_0_0 +29943,2,71.0,0.0,2,120,700.0,,,0,77,0.0,132.4327277010224,,1056.0,354.71084170150937,,70,0,0,0,0,0,0,0,0,0,,1,,2,129966,2,2,0,0,1,,1000.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,131.6994852204267,700.0,9411.361100823058,0,5,0,1,70.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1122048116831527,9411.361100823058,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +29944,1,26.0,254.0,2,111,165.0,0.0,0.0,0,34,0.0,0.0,281.3580896563901,165.0,0.0,0.0,20,2,2,2,2,1,1,1,2,0,,2,,2,129967,1,3,0,0,2,,100.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2105.80926874453,165.0,15008.571266808503,0,4,2,3,60.0,6,4,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.010993717993990404,15008.571266808503,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +29945,2,82.0,0.0,1,221,1200.0,0.0,0.0,71,71,0.0,0.0,2046.2406520464733,1330.0,180.1265993015477,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,129968,2,1,1,0,1,,140.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,2088.66058312619,1200.0,26905.97128007745,5,5,0,1,65.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04943140636535205,17937.3141867183,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +29946,2,38.0,0.0,2,111,345.0,50.0,0.0,0,34,0.0,0.0,588.2941874633611,1392.0,0.0,94.92520239698945,20,0,0,0,0,0,0,0,0,2,15.0,2,,2,129969,2,2,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,790.806459028329,345.0,47691.31940445136,0,1,1,2,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029187701606554317,47691.31940445136,10,5,10,10_0,10_4,10_0_1 +29947,2,64.0,0.0,2,112,700.0,0.0,0.0,0,77,1476.555991451242,178.78418239638023,1193.6403803604428,2305.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,129970,2,2,3,0,1,,300.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,2652.19247153263,700.0,16001.982958457953,0,5,0,1,78.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14404464784045262,16001.982958457953,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +29948,2,70.0,0.0,5,111,450.0,1352.0,0.0,77,75,0.0,0.0,767.3402445174275,1802.0,0.0,2566.7774728145946,42,0,0,0,0,0,0,0,0,0,,1,,3,129971,2,2,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,926.255584900516,450.0,34160.55303009174,5,5,0,1,100.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05275090243453125,22773.70202006116,6,3,6,6_1,6_2,6_0_0 +29949,2,43.0,0.0,8,120,600.0,0.0,0.0,0,48,0.0,0.0,1023.1203260232367,680.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,2003.0,6,129972,2,1,1,0,1,,163.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1581.88546519795,600.0,26489.64936159535,0,1,1,2,80.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02567040396487327,26489.64936159535,7,4,7,7_1,7_0,7_0_0 +29950,2,72.0,0.0,2,111,691.0,2960.0,0.0,0,75,0.0,0.0,1178.2935754700943,3651.0,0.0,5619.571981901776,70,0,0,0,0,0,0,0,0,0,,1,,2,129973,2,2,4,0,1,,191.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,426.573251343439,691.0,61805.7430167263,0,5,0,1,200.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.059072180379935585,61805.7430167263,10,5,10,10_1,10_3,10_0_1 +29951,2,65.0,0.0,5,111,700.0,,,0,74,0.0,0.0,,930.0,318.68552184119983,,60,0,0,0,0,0,0,0,0,0,,1,,3,129974,2,2,0,0,2,,330.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,124.98576118462728,700.0,7292.813793103448,0,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12752279523158366,7292.813793103448,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +29952,2,89.0,0.0,1,111,1000.0,,,0,86,0.0,0.0,,1240.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,1,129975,1,3,0,0,2,,916.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,81.1307404718666,1000.0,5181.239440800425,0,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23932497506975636,5181.239440800425,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +29953,2,78.0,0.0,2,111,330.0,150.0,0.0,74,72,0.0,0.0,562.7161793127802,1467.0,0.0,284.77560719096834,20,0,0,0,0,0,0,0,0,0,,2,,2,129976,2,1,0,1,2,552.0,0.0,1418.0,41,0.0,4.0,5.0,2.0,1.5,2,2,1230.95658146742,330.0,60623.07485704921,5,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02419870657269075,40415.3832380328,9,5,9,9_0,9_4,9_0_1 +29954,2,29.0,0.0,9,111,0.0,0.0,0.0,67,65,0.0,0.0,0.0,2678.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,2012.0,6,129977,2,1,1,0,1,,317.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1337.20999280816,0.0,39414.5562171625,1,1,1,2,100.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06794444126796748,21896.97567620139,6,3,6,6_1,6_3,6_0_0 +29955,2,27.0,0.0,5,112,480.0,0.0,0.0,52,47,1054.6828510366015,794.5963662061343,818.4962608185893,2120.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,3,129978,2,1,2,0,1,,260.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,797.079575336631,480.0,50239.56806583288,1,1,1,2,81.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04219781502145871,33493.04537722192,8,4,8,8_1,8_0,8_0_0 +29956,2,61.0,0.0,9,221,800.0,0.0,0.0,77,78,0.0,0.0,1364.160434697649,1000.0,277.1178450793042,0.0,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129979,2,1,2,0,2,,350.0,,41,1.0,4.0,6.0,3.0,2.0,3,3,7032.06618304213,800.0,35216.49245331472,5,5,0,1,120.0,1,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02839578647208166,17608.24622665736,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +29957,1,32.0,30.0,7,112,120.0,420.0,0.0,0,53,0.0,0.0,204.62406520464734,540.0,0.0,797.3717001347114,43,0,0,0,0,0,0,0,0,2,15.0,2,,5,129980,2,1,0,1,1,,100.0,360.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1610.24720901195,120.0,11388.846330704473,0,1,2,3,30.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0474148113267762,11388.846330704473,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +29958,2,83.0,0.0,1,221,311.0,2980.0,0.0,0,74,0.0,0.0,530.317368988711,3291.0,0.0,5657.542062860572,12,0,0,0,0,0,0,0,0,0,,1,,1,129981,1,3,4,0,1,,415.0,,11,0.0,2.0,9.0,1.0,1.0,1,1,2064.65900432321,311.0,87210.44334778698,0,5,0,1,163.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037736306268686244,87210.44334778698,10,5,10,10_1,10_1,10_1_0 +29959,2,86.0,0.0,2,111,1037.0,2000.0,0.0,78,72,0.0,0.0,1768.2929634768275,3037.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,0,,1,,2,129982,1,3,2,0,1,,360.0,,41,0.0,7.0,8.0,2.0,1.5,2,2,309.043455401385,1037.0,39511.522515242475,5,5,0,1,180.0,6,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07686365411073207,26341.01501016165,7,4,7,7_1,7_2,7_0_1 +29960,1,59.0,179.0,2,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,988.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,2,,2,129983,2,1,0,1,1,,165.0,249.0,11,0.0,0.0,1.0,1.0,1.0,1,1,338.712130908715,0.0,11126.246102377707,0,7,2,3,38.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.08879904245411774,11126.246102377707,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +29961,2,36.0,0.0,1,111,350.0,900.0,0.0,56,37,0.0,0.0,596.8201901802214,1250.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,129984,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,777.560165508569,350.0,87954.19167945196,1,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014211943468886743,48863.43982191776,10,5,10,10_0,10_4,10_1_0 +29962,2,80.0,0.0,2,111,352.0,838.0,0.0,0,77,0.0,0.0,600.2305912669656,1190.0,0.0,1590.9463921735432,70,2,2,1,1,1,2,2,2,0,,2,,2,129985,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1590.15099115968,352.0,29763.812787877676,0,5,0,1,71.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.03998143680317288,29763.812787877676,8,4,8,8_0,8_3,8_0_1 +29964,1,35.0,307.0,6,111,630.0,0.0,0.0,0,46,0.0,0.0,1074.2763423243985,630.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,4,129987,2,2,0,0,1,,0.0,601.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1280.38742747287,630.0,7477.6957488855005,0,4,2,3,31.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.0842505527312872,7477.6957488855005,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +29965,2,53.0,0.0,9,111,1200.0,,,0,52,0.0,0.0,,1338.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,3,30.0,1,2005.0,6,129988,2,1,0,0,2,,800.0,,22,5.0,0.0,4.0,5.0,3.0,5,5,78.88756553567866,1200.0,80096.61459180324,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016704825875835775,26698.87153060108,7,4,7,7_1,7_2,7_0_0 +29966,2,61.0,0.0,6,211,830.0,0.0,0.0,77,78,917.5740804018434,0.0,1415.3164509988108,1790.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,129989,2,1,2,0,1,,120.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1132.5633850308,830.0,24599.785971524252,7,5,0,1,80.0,2,3,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0727648607216353,16399.8573143495,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +29967,2,61.0,0.0,2,120,450.0,0.0,0.0,0,52,0.0,648.9203657350097,767.3402445174275,1036.0,133.01656563806603,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,2,129990,2,2,4,0,1,,90.0,,22,2.0,1.0,2.0,2.0,1.5,2,2,303.17678316437,450.0,19029.002770914296,0,1,0,1,45.0,0,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05444321031806875,12686.001847276197,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +29968,2,29.0,0.0,1,111,300.0,1200.0,0.0,53,55,0.0,0.0,511.56016301161833,1550.0,69.27946126982604,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,20.0,2,,1,129991,2,3,0,0,1,,0.0,569.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1526.34642958308,300.0,40843.095663364365,1,1,2,3,83.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03795011065702168,22690.608701869092,6,3,6,6_0,6_2,6_1_0 +29969,2,69.0,0.0,2,112,441.0,2364.0,0.0,78,75,0.0,79.45963662061344,751.9934396270789,2865.0,0.0,4488.063569329661,70,0,0,0,0,0,0,0,0,0,,1,,2,129992,2,2,2,0,1,,500.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1933.30739733568,441.0,60894.09643143506,5,5,0,1,85.0,10,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04704889583550854,40596.06428762337,9,5,9,9_1,9_0,9_0_1 +29970,2,81.0,0.0,5,111,468.0,,,86,75,0.0,0.0,,468.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,3,129993,2,1,0,0,2,,300.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,67.4750171756306,468.0,40123.304015260466,5,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011664044412244844,26748.869343506976,7,4,7,7_1,7_2,7_0_0 +29971,2,38.0,0.0,7,111,900.0,,,42,46,0.0,0.0,,996.0,133.01656563806603,,44,0,0,0,0,0,0,0,0,2,35.0,1,,5,129994,2,3,0,0,2,,120.0,1290.0,43,2.0,0.0,4.0,4.0,2.1,2,2,86.32259180154921,900.0,71652.0,1,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013900519176017418,34120.0,9,5,9,9_1,9_2,9_0_0 +29972,2,73.0,0.0,5,111,1340.0,0.0,0.0,75,78,0.0,629.0554565798564,2284.968728118562,1815.0,0.0,0.0,50,2,2,1,2,2,2,2,1,0,,1,,3,129995,2,1,2,0,1,,800.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,736.690614449186,1340.0,36077.216117690194,5,5,0,1,90.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.050308759802284976,24051.47741179346,6,3,6,6_1,6_2,6_0_0 +29973,2,73.0,0.0,9,111,597.0,1045.0,0.0,77,75,0.0,0.0,1018.0047243931206,1642.0,0.0,1983.9367300970796,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,129996,2,1,2,0,1,,277.0,860.0,41,0.0,3.0,6.0,2.0,1.5,2,2,605.069160773762,597.0,30480.67651227716,5,5,2,3,73.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05387019541179235,20320.451008184773,5,3,5,5_1,5_2,5_0_0 +29974,1,69.0,72.0,2,111,480.0,420.0,0.0,0,86,0.0,0.0,818.4962608185893,900.0,0.0,797.3717001347114,71,2,1,2,1,1,2,2,2,0,,2,,2,129997,1,3,0,1,1,1200.0,850.0,361.0,21,1.0,0.0,4.0,2.0,1.5,2,2,254.821380075437,480.0,26587.69572957897,0,5,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03385024445720374,17725.13048638598,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +29975,2,87.0,0.0,2,111,301.0,1640.0,0.0,0,78,0.0,0.0,513.2653635549904,1941.0,0.0,3113.546638621254,70,0,0,0,0,0,0,0,0,0,,1,,2,129998,2,1,1,0,1,,223.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,229.49758347911,301.0,28742.865857754405,0,5,0,1,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06752980059837514,28742.865857754405,8,4,8,8_1,8_3,8_0_1 +29976,2,46.0,0.0,2,111,0.0,0.0,210.0,0,52,0.0,0.0,132.3668409870962,210.0,0.0,251.313750988583,42,0,0,0,0,0,0,0,0,3,40.0,2,,2,129999,2,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1516.82311931449,0.0,18939.030277008056,0,1,0,1,45.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011088212908922774,18939.030277008056,5,3,5,5_0,5_3,5_0_1 +29978,2,81.0,0.0,2,111,375.0,0.0,0.0,0,78,0.0,0.0,639.4502037645229,375.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,130001,2,1,0,1,1,672.0,187.0,371.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1382.15784225189,375.0,17138.001052911437,0,5,2,3,69.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021881198328920295,17138.001052911437,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +29979,2,72.0,0.0,9,112,1480.0,0.0,0.0,78,74,0.0,0.0,2523.6968041906507,1480.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,130002,2,1,1,0,1,,590.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1315.79524821253,1480.0,42723.46654219183,5,5,0,1,130.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03464138375893296,28482.31102812789,8,4,8,8_1,8_0,8_0_0 +29980,2,46.0,0.0,5,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,892.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,35.0,2,,3,130003,2,1,0,1,1,750.0,0.0,380.0,12,1.0,1.0,2.0,1.0,1.0,1,1,660.89170479737,0.0,21888.281750059163,0,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040752399397343694,21888.281750059163,6,3,6,6_0,6_4,6_0_0 +29981,2,34.0,0.0,9,111,1116.0,1090.0,0.0,54,46,0.0,0.0,1903.0038064032203,2206.0,0.0,2069.36941225437,31,0,0,0,0,0,0,0,0,3,35.0,1,2012.0,6,130004,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,38.1658888261798,1116.0,40190.88991528252,1,1,1,2,178.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0548880605691981,16746.20413136772,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +29982,2,45.0,0.0,9,111,720.0,,,85,45,0.0,0.0,,764.0,60.965925917446924,,41,0,0,0,0,0,0,0,0,0,,1,2008.0,6,130005,2,3,0,0,2,,230.0,800.0,42,1.0,0.0,5.0,3.0,2.0,3,2,99.20611019010241,720.0,55551.12900622147,7,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013753095817628397,27775.564503110734,7,4,7,7_1,7_3,7_0_0 +29983,2,35.0,0.0,1,300,780.0,0.0,0.0,54,37,527.3414255183008,662.163638505112,1330.0564238302077,1810.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,130006,2,1,1,0,1,,270.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1229.09799422954,780.0,54156.30699693373,1,1,1,2,140.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033421776712036146,25788.71761758749,7,4,7,7_1,7_0,7_1_0 +29984,2,40.0,0.0,6,111,2130.0,0.0,0.0,55,37,0.0,0.0,3632.0771573824904,3198.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,4,130007,2,1,2,0,1,,480.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,285.551365283204,2130.0,86177.34610956153,1,1,1,2,115.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03710952059180639,35907.22754565064,9,5,9,9_1,9_3,9_0_0 +29985,2,48.0,0.0,7,111,1055.0,0.0,0.0,0,38,0.0,0.0,1798.9865732575245,1055.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,40.0,2,,5,130008,2,1,0,0,1,,0.0,,22,2.0,2.0,2.0,2.0,1.5,2,2,829.321247646695,1055.0,43746.17864205025,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.024116392168387017,29164.119094700163,8,4,8,8_0,8_4,8_0_0 +29986,2,49.0,0.0,2,111,380.0,650.0,0.0,0,42,0.0,66.2163638505112,647.9762064813832,1080.0,0.0,1234.027631160863,10,0,0,0,0,0,0,0,0,3,10.0,1,,2,130009,2,2,3,0,1,,100.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,157.696530768502,380.0,40653.248114181144,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026566142930735753,40653.248114181144,9,5,9,9_1,9_3,9_0_1 +29987,2,72.0,0.0,5,112,300.0,1040.0,0.0,77,74,0.0,0.0,511.56016301161833,1340.0,0.0,1974.4442098573807,44,0,0,0,0,0,0,0,0,0,,1,,3,130010,2,1,2,0,1,,400.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,210.999662378316,300.0,41652.399582850616,5,5,0,1,99.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03217101567785096,27768.266388567077,7,4,7,7_1,7_0,7_0_0 +29989,2,42.0,0.0,7,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,631.0,0.0,0.0,30,2,1,2,2,2,2,2,1,1,7.0,2,,5,130012,1,2,0,1,1,,359.0,650.0,32,1.0,0.0,5.0,3.0,1.8,2,1,730.658931830626,0.0,30615.55799442681,0,1,2,3,83.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.020610436044146765,17008.643330237115,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +29990,2,70.0,0.0,9,111,1572.0,0.0,0.0,72,38,0.0,397.2981831030672,2680.57525418088,1872.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,2008.0,6,130013,2,1,1,0,1,,462.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1043.90187134065,1572.0,74842.75985796549,5,5,0,1,136.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0250124394604452,49895.173238643656,10,5,10,10_1,10_2,10_0_0 +29991,1,37.0,342.0,8,111,380.0,,,0,85,0.0,0.0,,512.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,2000.0,6,130014,1,1,0,0,2,,400.0,394.0,31,0.0,0.0,3.0,2.0,1.3,1,1,138.9925121823841,380.0,13914.340449271416,0,7,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.036796569831436705,10703.338807131859,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +29992,1,33.0,396.0,2,111,380.0,86.0,0.0,0,52,0.0,0.0,647.9762064813832,466.0,0.0,163.27134812282185,50,2,1,2,2,1,1,2,1,3,45.0,2,,2,130015,1,2,0,1,1,610.0,0.0,366.0,32,1.0,0.0,3.0,3.0,1.8,2,1,619.121369807844,380.0,10247.67424190089,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.045473732770955004,5693.152356611606,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +29993,2,43.0,0.0,1,111,2560.0,60.0,0.0,52,47,0.0,0.0,4365.313391032477,2620.0,0.0,113.91024287638734,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,130016,2,2,4,0,1,,1200.0,,43,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,212.571871950483,2560.0,48002.89638322804,1,1,1,2,120.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05458003990183005,18462.65245508771,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +29994,2,56.0,0.0,2,111,506.0,300.0,0.0,54,22,0.0,0.0,862.8314749462629,806.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,2,130017,1,2,0,1,1,421.0,0.0,371.0,43,2.0,1.0,4.0,2.0,1.5,2,2,239.288646409968,506.0,23230.834517036757,4,1,2,3,70.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034695266733052794,15487.223011357839,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +29995,2,83.0,0.0,2,111,300.0,0.0,0.0,78,74,0.0,0.0,511.56016301161833,1289.0,0.0,0.0,12,2,2,2,2,1,2,2,2,0,,2,,2,130018,2,2,0,1,2,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,367.890800160052,300.0,100259.19295124538,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012856676401004168,66839.46196749691,10,5,10,10_0,10_4,10_0_1 +29996,2,43.0,0.0,1,111,332.0,50.0,0.0,0,54,0.0,0.0,566.1265803995243,382.0,0.0,94.92520239698945,20,2,2,1,1,1,2,2,2,3,30.0,2,,1,130019,1,1,0,1,2,518.0,0.0,595.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1118.75536323214,332.0,26600.734580162793,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01436050567884965,26600.734580162793,7,4,7,7_0,7_4,7_1_0 +29997,1,31.0,328.0,9,300,0.0,0.0,0.0,56,63,0.0,0.0,0.0,1272.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2006.0,6,130020,2,2,5,0,1,,465.0,590.0,43,2.0,0.0,5.0,5.0,2.4,2,2,1028.98476143656,0.0,35792.19001076522,4,1,2,3,95.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03553847919385264,14913.412504485508,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +29998,2,76.0,0.0,1,111,1200.0,0.0,0.0,75,74,1054.6828510366015,0.0,2046.2406520464733,2200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,130021,2,3,4,0,2,,271.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,538.982942741575,1200.0,47873.53471857495,5,5,0,1,100.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04595440911001709,31915.689812383298,8,4,8,8_1,8_4,8_1_0 +29999,2,31.0,0.0,7,221,700.0,0.0,0.0,0,47,0.0,0.0,1193.6403803604428,740.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,2,60.0,2,,5,130022,2,2,0,0,1,,289.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,832.872115541621,700.0,21075.466570137076,0,1,2,3,54.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.035111915436716566,21075.466570137076,5,3,5,5_0,5_1,5_0_0 +30000,1,46.0,44.0,5,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,577.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,5.0,2,,3,130023,2,1,0,1,1,430.0,0.0,307.0,32,1.0,2.0,4.0,2.0,1.5,2,1,254.891158610773,0.0,26471.604281518943,0,1,2,3,75.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.021796941124676394,17647.736187679297,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +30001,2,28.0,0.0,1,112,0.0,,,0,53,0.0,0.0,,918.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,1,130024,2,2,0,0,2,,250.0,700.0,32,1.0,0.0,4.0,2.0,1.3,1,1,139.94033316958865,0.0,18833.136101449734,0,1,2,3,70.0,7,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048743873301554615,14487.027770345949,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +30002,2,79.0,0.0,1,400,600.0,0.0,0.0,0,86,0.0,0.0,1023.1203260232367,1594.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130025,2,1,2,0,2,,132.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1421.13702377237,600.0,10317.24366190967,0,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1544986289201353,10317.24366190967,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +30003,1,24.0,327.0,8,111,0.0,0.0,0.0,33,38,0.0,0.0,0.0,1178.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,2003.0,6,130026,2,2,0,0,1,,0.0,550.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1346.58102766828,0.0,52544.874465643705,1,1,2,3,51.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02241893261673375,35029.91631042914,9,5,9,9_0,9_3,9_0_0 +30004,2,76.0,0.0,2,111,300.0,180.0,0.0,0,77,0.0,0.0,511.56016301161833,617.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,0,,2,,2,130027,2,2,0,1,1,297.0,0.0,277.0,11,0.0,3.0,4.0,1.0,1.0,1,1,198.493973553469,300.0,18156.922716717712,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03398152922862345,18156.922716717712,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +30005,2,75.0,0.0,6,111,340.0,,,0,72,0.0,0.0,,580.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,4,130028,2,1,0,0,2,,200.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,99.30578473873457,340.0,7962.659003171121,0,5,0,1,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07283998972818195,5308.439335447414,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +30006,0,58.0,0.0,5,400,390.0,,,0,78,0.0,0.0,,439.0,67.89387204442953,,50,0,0,0,0,0,0,0,0,0,,1,,3,130029,2,1,0,0,2,,380.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,116.08862902740339,390.0,10646.378039114934,0,7,0,1,56.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041234680788819277,10646.378039114934,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +30007,0,58.0,0.0,7,111,800.0,,,33,33,0.0,0.0,,823.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,130030,2,1,0,0,2,,1200.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,94.66528715806433,800.0,183716.40728281968,1,1,5,0,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004479730537801363,122477.60485521313,10,5,10,10_1,10_2,10_0_0 +30008,2,44.0,0.0,5,111,300.0,850.0,0.0,52,48,0.0,794.5963662061343,511.56016301161833,1750.0,0.0,1613.7284407488207,41,0,0,0,0,0,0,0,0,4,75.0,1,,3,130031,1,2,1,0,1,,240.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,548.582376177842,300.0,56421.159256782965,1,1,1,2,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031016732428971044,31345.088475990535,8,4,8,8_1,8_4,8_0_0 +30009,2,83.0,0.0,2,111,260.0,130.0,0.0,77,78,0.0,0.0,443.3521412767359,390.0,0.0,246.80552623217258,71,0,0,0,0,0,0,0,0,0,,2,,2,130032,2,1,0,1,1,725.0,0.0,305.0,41,0.0,0.0,3.0,3.0,2.0,3,3,289.427537337591,260.0,40488.45231999233,5,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009632376088809558,20244.226159996164,5,3,5,5_0,5_4,5_0_1 +30010,2,67.0,0.0,2,111,424.0,,,0,77,0.0,0.0,,445.0,29.09737373332694,,71,2,2,2,2,1,2,2,2,0,,1,,2,130033,1,3,0,0,2,,56.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,143.00505798728162,424.0,9046.716438095336,0,5,0,1,25.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0.049189117736256664,9046.716438095336,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30011,2,84.0,0.0,6,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1429.0,74.82181817141213,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,130034,2,1,2,0,2,,200.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1799.64835225771,0.0,22151.500280093842,0,5,0,1,80.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06451030322691742,22151.500280093842,6,3,6,6_1,6_3,6_0_0 +30012,2,84.0,0.0,8,111,220.0,300.0,0.0,0,77,0.0,0.0,375.14411954185346,520.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,1,2002.0,6,130035,2,2,2,0,1,,820.0,310.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1266.40314055252,220.0,18749.62017880035,0,5,2,3,50.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027733895142470613,18749.62017880035,5,3,5,5_1,5_3,5_0_0 +30013,1,48.0,65.0,2,111,528.0,0.0,0.0,0,54,0.0,0.0,900.3458869004482,528.0,0.0,0.0,50,2,2,1,1,1,2,2,2,4,70.0,2,,2,130036,2,2,0,1,2,,0.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,702.990047850398,528.0,33766.43903838348,0,1,1,2,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01563682801730452,16883.21951919174,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +30014,2,49.0,0.0,7,111,0.0,,,81,63,0.0,0.0,,482.0,0.0,,43,0,0,0,0,0,0,0,0,0,,1,,5,130037,1,1,0,0,1,,0.0,800.0,43,2.0,0.0,5.0,4.0,2.1,2,2,166.74145248628608,0.0,13055.94836147561,4,4,2,3,93.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03691803817348458,6217.118267369337,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30015,2,59.0,0.0,8,111,920.0,1840.0,0.0,0,77,0.0,0.0,1568.7844999022964,2760.0,0.0,3493.2474482092116,71,2,2,2,2,1,2,2,2,0,,2,2001.0,6,130038,1,3,0,0,1,,995.0,492.0,31,0.0,2.0,4.0,3.0,2.0,3,3,921.066588956399,920.0,17785.952240589817,0,7,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0,0.15517864675816048,8892.976120294908,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +30016,2,58.0,0.0,6,211,400.0,,,85,81,0.0,0.0,,532.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,4,130039,1,3,0,0,2,,200.0,,42,2.0,5.0,4.0,3.0,2.0,3,3,101.2545264025056,400.0,11792.649097981048,6,4,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.045112849163898266,5896.324548990524,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30017,1,63.0,19.0,5,111,492.0,1000.0,0.0,0,75,0.0,0.0,838.958667339054,1492.0,0.0,1898.504047939789,50,1,2,2,2,2,2,2,1,0,,2,,3,130040,1,2,0,0,1,,0.0,279.0,21,1.0,2.0,4.0,2.0,1.5,2,2,351.970194431089,492.0,10699.922824031579,0,5,2,3,84.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.13944025807822,7133.281882687719,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +30018,2,43.0,0.0,8,111,500.0,,,0,45,0.0,0.0,,542.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,2,45.0,2,2001.0,6,130041,2,1,0,0,1,,300.0,850.0,32,1.0,0.0,3.0,4.0,1.9,1,1,153.56751230573752,500.0,67925.78063082538,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00797929732962149,35750.410858329145,9,5,9,9_0,9_2,9_0_0 +30019,2,48.0,0.0,7,212,1200.0,0.0,0.0,52,12,0.0,198.6490915515336,2046.2406520464733,1410.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,1.0,1,,5,130042,2,1,2,0,1,,320.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,754.308092388218,1200.0,35729.46423105101,1,1,1,2,160.0,2,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03946322818842122,17864.732115525505,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +30020,2,80.0,0.0,5,111,1200.0,0.0,0.0,0,77,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,130043,2,1,0,0,2,,0.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1040.51104312519,1200.0,81999.4100479485,0,5,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014634251628131343,81999.4100479485,10,5,10,10_0,10_4,10_0_0 +30022,2,59.0,0.0,1,120,123.0,0.0,0.0,0,21,1265.6194212439218,264.8654554020448,209.7396668347635,1598.0,103.91919190473907,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,130045,1,1,3,0,2,,200.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,2000.27531138929,123.0,11179.150021090805,0,1,1,2,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14294467799297636,11179.150021090805,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +30023,2,42.0,0.0,1,111,600.0,1300.0,0.0,46,46,0.0,264.8654554020448,1023.1203260232367,2100.0,0.0,2468.055262321726,10,2,2,1,1,2,2,2,2,2,30.0,1,,1,130046,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,392.989198442119,600.0,65690.88893291538,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.03196790352684304,31281.375682340655,8,4,8,8_1,8_3,8_1_0 +30024,1,43.0,369.0,2,221,256.0,276.0,0.0,0,56,0.0,0.0,436.53133910324766,532.0,0.0,523.9871172313817,50,0,0,0,0,0,0,0,0,0,,2,,2,130047,2,1,0,1,1,705.0,468.0,336.0,32,2.0,0.0,4.0,3.0,2.0,3,2,2792.39442171235,256.0,21522.85224886041,0,1,2,3,69.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024717913492537602,10761.426124430205,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +30025,2,52.0,0.0,2,111,650.0,210.0,0.0,52,68,0.0,0.0,1108.3803531918397,860.0,0.0,398.6858500673557,71,2,2,2,2,1,2,2,2,3,30.0,2,,2,130048,1,3,0,1,2,1212.0,0.0,444.0,43,3.0,0.0,5.0,5.0,3.0,5,5,226.642111176387,650.0,56081.14714915549,1,1,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01533492169325125,18693.715716385163,5,3,5,5_0,5_4,5_0_1 +30026,1,39.0,377.0,2,111,520.0,600.0,0.0,0,56,0.0,0.0,886.7042825534718,1120.0,0.0,1139.1024287638734,50,2,2,2,1,1,2,2,2,2,25.0,2,,2,130049,1,2,0,1,1,1084.0,0.0,377.0,32,1.0,0.0,5.0,2.0,1.3,1,1,490.218310316195,520.0,11904.500961786016,0,1,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.0940820622044763,9157.308432143089,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30027,2,27.0,0.0,5,111,540.0,350.0,0.0,0,62,0.0,0.0,920.8082934209131,890.0,0.0,664.4764167789261,43,2,2,2,1,1,2,2,2,0,,1,,3,130050,1,3,3,0,1,,390.0,539.0,32,1.0,0.0,4.0,3.0,1.6,1,1,311.161450435174,540.0,22215.941395094636,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.04006132282094133,13884.963371934147,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +30028,1,68.0,209.0,2,111,1230.0,0.0,0.0,0,77,0.0,0.0,2097.396668347635,1230.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130051,2,1,0,0,1,,0.0,421.0,11,0.0,3.0,2.0,1.0,1.0,1,1,827.437991796368,1230.0,9819.068253741241,0,5,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12526646808177017,9819.068253741241,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +30029,2,65.0,0.0,5,111,270.0,1500.0,0.0,75,74,0.0,0.0,460.40414671045653,1770.0,0.0,2847.7560719096837,20,0,0,0,0,0,0,0,0,0,,1,,3,130052,2,1,2,0,1,,200.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1104.58726083324,270.0,56848.251368405006,5,5,0,1,95.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031135522331716375,37898.834245603335,9,5,9,9_1,9_2,9_0_0 +30030,1,45.0,504.0,2,111,450.0,0.0,0.0,0,64,0.0,0.0,767.3402445174275,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130053,2,2,0,1,1,959.0,0.0,546.0,32,1.0,0.0,4.0,4.0,2.1,2,1,628.396664091672,450.0,13972.488548507888,0,1,2,3,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03220614555794753,6653.565975479946,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +30031,2,49.0,0.0,5,111,120.0,0.0,0.0,43,38,0.0,0.0,204.62406520464734,120.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,1,,3,130054,2,1,2,0,1,,350.0,,43,2.0,0.0,5.0,4.0,2.5,4,2,927.41437466008,120.0,69102.4177784512,1,1,1,2,105.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0017365528422569989,27640.96711138048,7,4,7,7_1,7_3,7_0_0 +30032,2,71.0,0.0,2,111,250.0,0.0,0.0,0,78,0.0,0.0,426.3001358430153,250.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,2,130055,2,1,0,1,1,,0.0,290.0,11,0.0,4.0,1.0,1.0,1.0,1,1,1099.37975606284,250.0,23365.379876251805,0,5,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.010699590647533019,23365.379876251805,6,3,6,6_0,6_4,6_0_1 +30033,1,42.0,330.0,7,111,600.0,,,55,63,0.0,0.0,,726.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,130056,2,1,0,0,2,,452.0,900.0,43,2.0,0.0,4.0,4.0,2.3,3,2,100.59760057870369,600.0,14405.0,4,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05039916695591808,6263.04347826087,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +30034,2,55.0,0.0,6,111,400.0,752.0,0.0,72,47,0.0,0.0,682.0802173488245,1152.0,0.0,1427.6750440507212,31,0,0,0,0,0,0,0,0,4,70.0,2,,4,130057,2,1,0,0,2,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1094.51212043131,400.0,72210.88516086878,5,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01595327349102031,48140.59010724586,10,5,10,10_0,10_4,10_0_0 +30035,2,41.0,0.0,1,111,387.0,954.0,0.0,45,62,0.0,0.0,659.9126102849876,1341.0,0.0,1811.1728617345586,50,0,0,0,0,0,0,0,0,2,25.0,1,,1,130058,2,1,2,0,1,,320.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,408.875923645023,387.0,51231.89698545923,1,1,0,1,87.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026175099477198864,34154.59799030615,9,5,9,9_1,9_2,9_1_0 +30036,2,57.0,0.0,6,120,0.0,0.0,0.0,0,22,0.0,0.0,0.0,1036.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,130059,2,1,1,0,1,,260.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,906.361308669157,0.0,40734.26482849054,0,1,0,1,50.0,0,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025433133612746496,40734.26482849054,9,5,9,9_1,9_0,9_0_0 +30037,1,44.0,280.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1409.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,60.0,2,,2,130060,2,1,0,1,1,,0.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,206.203957306359,0.0,28513.630637596725,0,1,1,2,64.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04941496289645273,15840.905909775958,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +30038,0,89.0,0.0,1,221,1250.0,0.0,0.0,0,78,0.0,0.0,2131.5006792150766,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130061,1,2,2,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,771.506704023474,1250.0,17554.966284327733,0,5,0,1,50.0,1,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07120492171585328,17554.966284327733,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +30039,2,51.0,0.0,7,111,600.0,,,21,52,0.0,0.0,,644.0,60.965925917446924,,42,0,0,0,0,0,0,0,0,2,8.0,1,,5,130062,2,1,0,0,2,,432.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,127.40468121918364,600.0,33253.50177559829,1,1,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019366381451970054,22169.001183732194,6,3,6,6_1,6_3,6_0_0 +30040,2,52.0,0.0,6,112,2300.0,0.0,0.0,0,45,0.0,0.0,3921.9612497557405,2599.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,130063,2,1,1,0,1,,118.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,2452.21798041333,2300.0,22773.145339234907,0,1,0,1,160.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11412564936835014,22773.145339234907,6,3,6,6_1,6_0,6_0_0 +30041,2,30.0,0.0,2,111,700.0,0.0,0.0,0,55,0.0,0.0,1193.6403803604428,760.0,83.13535352379125,0.0,20,2,2,2,2,1,2,2,2,0,,1,,2,130064,2,2,5,0,1,,153.0,290.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1833.41045376129,700.0,14582.968711520685,0,4,3,4,45.0,6,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.052115588741515485,14582.968711520685,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +30042,2,39.0,0.0,5,111,0.0,0.0,0.0,85,62,0.0,0.0,0.0,1250.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,130065,1,1,0,1,1,624.0,0.0,436.0,42,1.0,1.0,4.0,4.0,2.1,2,2,196.506661985738,0.0,27242.218606205322,6,1,2,3,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04588466226151165,12972.485050573963,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +30043,2,56.0,0.0,2,111,0.0,0.0,0.0,85,34,0.0,0.0,0.0,398.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,130066,2,2,0,1,2,,0.0,,42,2.0,0.0,6.0,6.0,3.5,6,6,175.035151507865,0.0,65416.92589218124,6,1,0,1,105.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006084052323950149,18690.550254908925,5,3,5,5_0,5_4,5_0_1 +30044,2,34.0,0.0,2,400,530.0,1150.0,0.0,54,46,0.0,198.6490915515336,903.7562879871924,1830.0,0.0,2183.2796551307574,31,0,0,0,0,0,0,0,0,0,,1,,2,130067,2,1,1,0,1,,138.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1413.823129037,530.0,59908.4187447287,1,1,1,2,110.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030546624970985745,39938.94582981913,9,5,9,9_1,9_0,9_0_1 +30045,2,82.0,0.0,2,111,454.0,1599.0,0.0,86,86,0.0,158.91927324122688,774.1610466909158,2173.0,0.0,3035.7079726557226,71,0,0,0,0,0,0,0,0,0,,1,,2,130068,2,1,2,0,2,,280.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1367.44471822313,454.0,62840.01197395355,5,5,0,1,94.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03457987883421606,41893.34131596903,9,5,9,9_1,9_3,9_0_1 +30046,2,42.0,0.0,6,111,3000.0,,,0,63,0.0,0.0,,3150.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,1,45.0,2,,4,130069,2,3,0,0,2,,0.0,250.0,32,1.0,0.0,3.0,3.0,2.0,3,2,51.34646961575004,3000.0,23721.94630073001,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1327884297547315,11860.973150365005,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +30047,2,71.0,0.0,5,111,400.0,1200.0,0.0,77,75,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,44,0,0,0,0,0,0,0,0,0,,1,,3,130070,2,1,2,0,1,,350.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,355.300546153551,400.0,45810.931346475925,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03492616179092553,30540.620897650617,8,4,8,8_1,8_3,8_0_0 +30048,2,41.0,0.0,2,111,400.0,0.0,0.0,0,53,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,2,1,2,2,2,2,2,1,0,,2,,2,130071,1,3,0,1,2,408.0,0.0,550.0,12,1.0,0.0,1.0,1.0,1.0,1,1,936.81570430178,400.0,14791.199145114555,0,1,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.027043108275106798,14791.199145114555,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +30049,1,71.0,43.0,7,111,800.0,0.0,0.0,0,78,0.0,0.0,1364.160434697649,800.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,130072,1,1,0,0,1,,0.0,670.0,11,0.0,4.0,1.0,1.0,1.0,1,1,421.275570198114,800.0,18619.69380625357,0,5,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.042965260778419126,18619.69380625357,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +30050,2,32.0,0.0,1,400,1500.0,0.0,0.0,46,62,0.0,132.4327277010224,2557.8008150580918,1630.0,41.567676761895626,0.0,50,2,2,2,1,1,2,2,2,0,,1,,1,130073,1,1,2,0,2,,310.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1206.53051924827,1500.0,59812.92434939662,1,1,1,2,60.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.027251635290031478,39875.28289959775,9,5,9,9_1,9_0,9_1_0 +30051,2,61.0,0.0,7,211,1350.0,,,0,52,0.0,0.0,,1650.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,130074,1,2,0,0,2,,1200.0,,22,3.0,0.0,4.0,4.0,2.3,3,3,42.540604930609916,1350.0,23940.300360822865,0,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0689214410484233,10408.826243836029,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30052,0,52.0,0.0,2,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,572.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,8.0,1,,2,130075,2,1,2,1,1,,0.0,,43,2.0,0.0,4.0,6.0,3.0999999999999996,4,2,683.972423984275,0.0,75814.7424384591,1,1,5,0,120.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007544706762860905,24456.368528535197,7,4,7,7_1,7_4,7_0_1 +30053,2,77.0,0.0,5,111,835.0,0.0,0.0,86,77,0.0,0.0,1423.8424537156711,899.0,88.67771042537734,0.0,71,2,2,1,2,2,2,2,1,0,,1,,3,130076,1,2,3,0,1,,516.0,502.0,41,1.0,5.0,5.0,3.0,2.0,3,3,318.370349747567,835.0,46657.157892273994,6,5,2,3,90.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.019268211794547956,23328.578946136997,6,3,6,6_1,6_3,6_0_0 +30054,2,65.0,0.0,1,112,700.0,0.0,0.0,0,74,3164.0485531098047,0.0,1193.6403803604428,3700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130077,1,2,1,0,2,,200.0,600.0,11,0.0,2.0,6.0,1.0,1.0,1,1,1738.11173984639,700.0,29774.37929624541,0,5,2,3,120.0,6,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1242679138055642,29774.37929624541,8,4,8,8_1,8_0,8_1_0 +30055,2,48.0,0.0,2,111,130.0,60.0,0.0,0,67,0.0,0.0,221.67607063836795,190.0,0.0,113.91024287638734,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,130078,1,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1077.18307085734,130.0,22940.0,0,1,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008282476024411508,22940.0,6,3,6,6_0,6_4,6_0_1 +30056,2,60.0,0.0,6,111,210.0,0.0,0.0,0,43,0.0,0.0,358.0921141081328,461.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,,4,130079,2,1,0,1,2,,0.0,,32,1.0,1.0,2.0,2.0,1.5,2,2,876.550126214243,210.0,41436.89617432299,0,1,1,2,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011125350655140665,27624.59744954866,7,4,7,7_0,7_4,7_0_0 +30057,2,53.0,0.0,5,111,0.0,0.0,0.0,52,64,0.0,0.0,0.0,709.0,0.0,0.0,50,2,2,2,2,1,2,1,2,2,15.0,1,,3,130080,2,2,2,0,1,,209.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,609.557968359103,0.0,42680.567624866046,1,1,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.016611775322006982,17072.227049946418,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +30058,2,64.0,0.0,1,112,870.0,0.0,0.0,0,74,0.0,0.0,1483.5244727336933,870.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,,1,130081,1,2,0,0,2,,65.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1443.15493972828,870.0,25903.193251991088,0,5,1,2,71.0,10,1,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03358659264656979,25903.193251991088,7,4,7,7_0,7_1,7_1_0 +30059,2,43.0,0.0,1,111,1400.0,0.0,0.0,34,35,5273.414255183007,0.0,2387.2807607208856,6400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,120.0,1,,1,130082,2,1,1,0,1,,2000.0,,43,2.0,0.0,12.0,6.0,3.0999999999999996,4,4,513.607265192031,1400.0,152806.3347928511,1,1,1,2,360.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041883080362316354,49292.366062210036,10,5,10,10_1,10_4,10_1_0 +30060,2,44.0,0.0,7,111,900.0,,,0,90,0.0,0.0,,1038.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,130083,2,1,0,0,2,,320.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,112.0097706433764,900.0,17937.0,0,4,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057869208897809,17937.0,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +30061,2,67.0,0.0,1,111,260.0,1193.0,0.0,77,74,0.0,0.0,443.3521412767359,1453.0,0.0,2264.9153291921684,41,0,0,0,0,0,0,0,0,0,,1,,1,130084,2,3,1,0,1,,285.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1177.51119288577,260.0,26617.376132390593,5,5,0,1,100.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0545884009292655,17744.917421593727,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +30062,2,26.0,0.0,5,120,0.0,0.0,0.0,55,63,527.3414255183008,0.0,0.0,530.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,3.0,1,,3,130085,2,1,2,0,1,,90.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,2063.06975152426,0.0,30814.495498683955,1,1,1,2,78.0,0,0,5,1,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01719969746130147,20542.996999122635,5,3,5,5_1,5_0,5_0_0 +30063,2,69.0,0.0,1,112,596.0,0.0,0.0,72,72,3521.5860396112125,0.0,1016.2995238497484,4035.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,130086,2,2,2,0,2,,492.0,,41,1.0,2.0,6.0,3.0,2.0,3,3,795.938630810324,596.0,37006.21276798693,5,5,0,1,142.0,8,2,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10903574557325599,18503.106383993465,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +30064,1,30.0,201.0,7,112,1650.0,0.0,0.0,0,54,0.0,0.0,2813.5808965639008,1720.0,96.99124577775646,0.0,42,2,2,2,1,2,2,2,2,0,,1,,5,130087,2,3,3,0,1,,360.0,527.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1205.90721961274,1650.0,18032.636203509184,0,1,2,3,90.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.09538261519773159,13871.258618083988,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +30065,2,54.0,0.0,8,112,1190.0,0.0,0.0,0,46,0.0,0.0,2029.1886466127528,1240.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,2003.0,6,130088,2,1,1,0,2,,136.0,,32,1.0,1.0,5.0,2.0,1.3,1,1,667.930896187593,1190.0,27892.959239750373,0,1,1,2,107.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044455663142147744,21456.12249211567,6,3,6,6_1,6_0,6_0_0 +30066,1,28.0,61.0,6,111,164.0,0.0,0.0,0,52,0.0,0.0,279.65288911301803,164.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,4,130089,1,1,0,1,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,597.182297297265,164.0,19900.553247033098,0,1,1,2,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.008240976919797452,15308.117882333152,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +30067,2,52.0,0.0,6,112,1254.0,0.0,0.0,0,47,0.0,0.0,2138.3214813885647,1304.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,23.0,1,,4,130090,2,1,2,0,1,,249.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,317.252298531587,1254.0,33318.382797288155,0,1,0,1,167.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0391375538222742,22212.255198192102,6,3,6,6_1,6_0,6_0_0 +30068,2,43.0,0.0,8,211,0.0,,,42,42,0.0,0.0,,726.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,130091,2,1,0,0,2,,439.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,67.21898805312762,0.0,81910.23256388817,1,1,1,2,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008863361478478724,39004.872649470555,9,5,9,9_1,9_2,9_0_0 +30069,2,45.0,0.0,7,120,720.0,,,0,85,0.0,0.0,,1160.0,609.6592591744692,,71,0,0,0,0,0,0,0,0,0,,1,,5,130092,2,2,0,0,2,,320.0,,21,1.0,8.0,8.0,4.0,2.5,4,4,70.5200567062903,720.0,33963.82187182616,0,7,0,1,275.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034153989040975656,13585.528748730465,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +30071,2,29.0,0.0,1,300,0.0,0.0,0.0,0,63,0.0,0.0,0.0,786.0,0.0,0.0,43,0,0,0,0,0,0,0,0,1,5.0,1,,1,130094,2,2,5,0,2,,192.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2271.47775837448,0.0,20589.523162940874,0,1,3,4,33.0,0,0,9,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038174754887705366,20589.523162940874,5,3,5,5_1,5_0,5_1_0 +30072,2,61.0,0.0,5,112,1200.0,0.0,0.0,52,78,0.0,0.0,2046.2406520464733,1270.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130095,2,1,2,0,1,,240.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1054.09689341903,1200.0,23339.994527124414,1,5,0,1,91.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054413037609073914,15559.996351416276,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +30073,1,73.0,207.0,2,111,240.0,145.0,0.0,0,77,0.0,0.0,409.2481304092947,385.0,0.0,275.2830869512694,71,2,1,2,2,1,2,2,2,0,,2,,2,130096,1,2,0,1,1,456.0,0.0,231.0,11,0.0,6.0,2.0,1.0,1.0,1,1,308.651241462924,240.0,9867.919223884996,0,5,2,3,45.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.039015317339456866,9867.919223884996,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30074,2,78.0,0.0,2,111,220.0,90.0,0.0,77,77,0.0,0.0,375.14411954185346,310.0,0.0,170.865364314581,33,0,0,0,0,0,0,0,0,0,,2,,2,130097,2,3,0,1,1,,0.0,382.0,41,0.0,2.0,3.0,2.0,1.5,2,2,185.835544723828,220.0,31654.503733302314,5,5,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009793235193697339,21103.00248886821,5,3,5,5_0,5_4,5_0_1 +30075,1,58.0,120.0,9,400,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1129.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,130098,2,1,2,0,2,,203.0,428.0,12,1.0,3.0,2.0,1.0,1.0,1,1,838.455144280386,0.0,11777.745058417255,0,4,2,3,52.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09585875686731157,11777.745058417255,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +30076,2,45.0,0.0,9,112,1200.0,0.0,0.0,54,21,0.0,0.0,2046.2406520464733,3350.0,2979.0168346025202,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,130099,2,1,1,0,1,,555.0,,43,3.0,0.0,6.0,4.0,2.5,4,3,880.867692768819,1200.0,84931.26222543896,4,1,1,2,138.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03944366199465942,33972.50489017558,9,5,9,9_1,9_1,9_0_0 +30077,2,78.0,0.0,2,221,0.0,0.0,0.0,0,77,0.0,0.0,0.0,361.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,130100,2,1,0,1,1,,138.0,413.0,11,0.0,0.0,3.0,1.0,1.0,1,1,385.299321395868,0.0,18292.608035749647,0,5,2,3,75.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019734747461624375,18292.608035749647,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +30078,1,65.0,100.0,2,111,120.0,0.0,0.0,0,74,0.0,0.0,204.62406520464734,120.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130101,2,1,0,0,2,,130.0,223.0,11,0.0,0.0,1.0,1.0,1.0,1,1,417.262795176038,120.0,9978.582498542446,0,5,2,3,27.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.012025756165019249,9978.582498542446,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30079,1,50.0,247.0,7,111,450.0,,,0,42,0.0,0.0,,585.0,187.05454542853033,,71,2,2,1,2,2,2,2,1,0,,2,,5,130102,2,2,0,0,1,,200.0,261.0,12,1.0,2.0,1.0,1.0,1.0,1,1,113.58648962442047,450.0,5214.799999999999,0,4,2,3,28.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.11218071642248985,5214.799999999999,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30080,2,36.0,0.0,9,111,400.0,900.0,0.0,33,38,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,2,45.0,2,2006.0,6,130103,2,1,0,0,1,,0.0,771.0,43,2.0,0.0,3.0,3.0,1.8,2,2,753.99302609857,400.0,42514.37471036003,4,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030577892979882216,23619.097061311128,6,3,6,6_0,6_4,6_0_0 +30081,2,46.0,0.0,9,112,2073.0,0.0,0.0,43,38,0.0,0.0,3534.880726410283,2073.0,0.0,0.0,41,2,2,1,2,1,2,2,2,0,,1,2006.0,6,130104,1,1,1,0,1,,366.0,,43,2.0,2.0,8.0,4.0,2.3,3,3,1258.44569169087,2073.0,79981.465015165,1,1,1,2,157.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.025918504988711396,34774.55000659348,9,5,9,9_1,9_0,9_0_0 +30082,2,59.0,0.0,6,400,712.0,0.0,0.0,52,64,1054.6828510366015,0.0,1214.1027868809076,1712.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,130105,2,2,1,0,1,,139.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,1010.70998315003,712.0,32065.874720750333,1,1,0,1,100.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053390091956298256,16032.937360375166,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +30083,2,60.0,0.0,2,111,421.0,91.0,0.0,75,74,0.0,0.0,717.8894287596378,512.0,0.0,172.7638683625208,12,0,0,0,0,0,0,0,0,0,,2,,2,130106,2,1,0,1,1,,211.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1835.49685639845,421.0,127781.99999999999,6,5,0,1,90.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004006824122333349,85187.99999999999,10,5,10,10_0,10_2,10_0_1 +30084,1,72.0,225.0,7,112,720.0,0.0,0.0,0,86,0.0,0.0,1227.744391227884,720.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,130107,1,1,2,0,1,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2171.9538685056,720.0,16551.613795074292,0,5,2,3,45.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04350028999675365,16551.613795074292,4,2,4_1,4_1_1,4_1_1,4_0_0_1 +30085,2,67.0,0.0,2,111,820.0,1950.0,0.0,72,72,0.0,0.0,1398.2644455650902,2770.0,0.0,3702.0828934825886,50,0,0,0,0,0,0,0,0,0,,2,,2,130108,1,3,0,0,2,,450.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1498.97184570998,820.0,31427.77483624476,5,5,0,1,75.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08813859760778983,20951.84989082984,5,3,5,5_0,5_2,5_0_1 +30086,2,68.0,0.0,5,112,550.0,1920.0,0.0,77,78,0.0,0.0,937.8602988546337,2470.0,0.0,3645.127772044395,50,2,2,1,2,2,2,2,1,0,,1,,3,130109,1,3,2,0,1,,950.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,257.421679581445,550.0,26229.368383508856,5,5,0,1,160.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.09416925195777717,17486.245589005903,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +30087,2,47.0,0.0,2,111,380.0,420.0,0.0,52,64,0.0,0.0,647.9762064813832,800.0,0.0,797.3717001347114,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,130110,2,2,0,1,1,,0.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,719.772745051191,380.0,55197.65850288405,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014493368409063954,23998.981957775675,6,3,6,6_0,6_4,6_0_1 +30088,2,79.0,0.0,2,111,250.0,360.0,0.0,0,77,0.0,0.0,426.3001358430153,610.0,0.0,683.461457258324,70,2,1,2,2,1,2,2,2,0,,2,,2,130111,2,1,0,1,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,312.256770317875,250.0,20287.09300783706,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.030068378932573157,20287.09300783706,5,3,5,5_0,5_4,5_0_1 +30089,2,48.0,0.0,5,111,540.0,0.0,0.0,55,67,0.0,0.0,920.8082934209131,540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,3,130112,2,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.5,4,3,832.590077178591,540.0,39719.63164109366,1,1,1,2,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013595292244385259,15887.852656437466,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +30090,2,80.0,0.0,2,111,440.0,801.0,0.0,77,78,0.0,0.0,750.2882390837069,1241.0,0.0,1520.701742399771,71,0,0,0,0,0,0,0,0,0,,1,,2,130113,2,1,2,0,1,,173.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1080.40883607514,440.0,22337.321372844413,5,5,0,1,85.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055557243381414996,14891.547581896275,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +30091,1,50.0,380.0,9,112,750.0,0.0,0.0,0,42,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,130114,1,2,0,0,1,,0.0,624.0,32,1.0,0.0,3.0,3.0,1.8,3,2,2364.09527434946,750.0,17193.678179224462,0,1,2,3,60.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04362068384566155,9552.04343290248,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +30092,2,26.0,0.0,1,211,500.0,0.0,0.0,0,52,0.0,0.0,852.6002716860306,540.0,55.423569015860835,0.0,41,0,0,0,0,0,0,0,0,2,2.0,2,,1,130115,2,1,0,0,1,,110.0,570.0,12,1.0,0.0,3.0,1.0,1.0,1,1,3507.23636478134,500.0,19046.103626336913,0,1,2,3,80.0,1,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.028352255694612995,19046.103626336913,5,3,5,5_0,5_1,5_1_0 +30093,2,56.0,0.0,9,111,810.0,,,72,34,0.0,0.0,,898.0,121.93185183489385,,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,130116,1,1,0,0,2,,390.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,105.64984327432173,810.0,72528.55917791005,5,1,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012381329646949652,48352.372785273365,10,5,10,10_1,10_3,10_0_0 +30094,2,44.0,0.0,2,120,1050.0,0.0,0.0,0,47,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,30,0,0,0,0,0,0,0,0,0,,1,,2,130117,2,2,2,0,1,,100.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,1057.60401971251,1050.0,31320.517742092146,0,1,0,1,50.0,0,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03352435003297816,20880.345161394765,5,3,5,5_1,5_1,5_0_1 +30095,2,46.0,0.0,1,111,720.0,0.0,0.0,0,35,0.0,0.0,1227.744391227884,720.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,130118,2,1,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,281.481152703603,720.0,29607.974682076943,0,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024317772753157912,29607.974682076943,8,4,8,8_0,8_4,8_1_0 +30097,1,60.0,251.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1375.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130120,2,1,0,1,1,410.0,0.0,234.0,11,0.0,3.0,3.0,1.0,1.0,1,1,388.116307338501,0.0,11793.183486238533,0,7,2,3,55.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1165927759543882,11793.183486238533,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30098,2,75.0,0.0,1,111,1200.0,0.0,0.0,0,77,0.0,132.4327277010224,2046.2406520464733,1300.0,0.0,0.0,70,2,2,2,1,1,2,2,2,0,,1,,1,130121,2,2,1,0,1,,280.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,433.268621202239,1200.0,25767.419498798117,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,1,1,0,0,0.0504513073208839,25767.419498798117,7,4,7,7_1,7_4,7_1_0 +30099,2,75.0,0.0,2,300,420.0,0.0,0.0,86,74,2109.365702073203,0.0,716.1842282162656,2560.0,193.98249155551292,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,130122,2,2,2,0,2,,450.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,753.931151436388,420.0,36925.6329834713,6,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06932853395217112,24617.088655647534,7,4,7,7_1,7_0,7_0_1 +30100,1,39.0,280.0,9,211,0.0,0.0,0.0,0,45,0.0,0.0,0.0,1372.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,3.0,1,2005.0,6,130123,2,1,1,0,1,,312.0,740.0,32,1.0,0.0,5.0,4.0,2.3,3,2,1071.48262476906,0.0,25983.676531327445,0,1,2,3,120.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05280238146229369,11297.250665794541,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +30101,1,21.0,313.0,2,112,660.0,,,0,54,0.0,0.0,,844.0,254.94841747295985,,31,0,0,0,0,0,0,0,0,0,,1,,2,130124,2,3,0,0,2,,360.0,550.0,22,1.0,1.0,4.0,2.0,1.5,2,2,98.0572074666857,660.0,27230.56843919129,0,1,2,3,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.03099457882727422,18153.712292794193,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +30102,2,29.0,0.0,9,111,276.0,434.0,0.0,47,55,0.0,0.0,470.6353499706889,710.0,0.0,823.9507568058684,20,0,0,0,0,0,0,0,0,2,50.0,2,2008.0,6,130125,2,1,0,0,1,,256.0,676.0,43,2.0,2.0,2.0,2.0,1.5,2,2,1103.31030240477,276.0,83406.84357117696,1,1,2,3,55.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008512490937198778,55604.562380784635,10,5,10,10_0,10_2,10_0_0 +30103,2,72.0,0.0,7,111,1500.0,0.0,0.0,74,37,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,2,,5,130126,2,1,0,1,1,828.0,0.0,969.0,41,0.0,3.0,4.0,2.0,1.5,2,2,717.805261471254,1500.0,93775.69816674675,5,5,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015995615381426253,62517.1321111645,10,5,10,10_0,10_4,10_0_0 +30104,2,63.0,0.0,1,111,485.0,0.0,0.0,78,78,0.0,198.6490915515336,827.0222635354497,635.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130127,2,1,2,0,2,,300.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,270.214099916087,485.0,17127.1952968025,6,5,0,1,60.0,8,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03707553916422901,11418.130197868333,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +30105,2,72.0,0.0,1,112,500.0,0.0,0.0,86,78,1001.9487084847715,794.5963662061343,852.6002716860306,2150.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130128,2,1,4,0,1,,300.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1370.21894869358,500.0,25766.276914768463,7,5,0,1,90.0,6,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08344240058864244,17177.517943178977,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +30106,2,68.0,0.0,5,111,307.0,1452.0,0.0,77,75,0.0,317.83854648245375,523.4965668152228,1999.0,0.0,2756.6278776085737,50,0,0,0,0,0,0,0,0,0,,1,,3,130129,2,1,2,0,1,,457.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,867.26939312303,307.0,39885.380246805675,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05011861458084244,26590.25349787045,7,4,7,7_1,7_4,7_0_0 +30107,2,93.0,0.0,1,111,150.0,240.0,0.0,0,75,608.5520050481191,0.0,255.78008150580916,967.0,0.0,455.6409715055494,60,0,0,0,0,0,0,0,0,0,,2,,1,130130,2,1,0,1,2,561.0,0.0,261.0,11,0.0,6.0,2.0,1.0,1.0,1,1,1049.66303460666,150.0,21296.309009117085,0,5,2,3,48.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04540692941607962,21296.309009117085,6,3,6,6_0,6_4,6_1_0 +30108,2,61.0,0.0,1,111,561.0,1765.0,0.0,35,45,0.0,0.0,956.6175048317264,2326.0,0.0,3350.8596446137276,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,130131,2,1,0,0,1,,199.0,770.0,43,2.0,1.0,4.0,3.0,2.0,3,3,750.803673054516,561.0,42805.93234487548,1,1,2,3,73.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05433826277302094,21402.96617243774,6,3,6,6_0,6_4,6_1_0 +30109,2,45.0,0.0,7,120,458.0,930.0,0.0,64,64,0.0,0.0,780.981848864404,1388.0,0.0,1765.6087645840037,50,1,2,1,1,1,2,2,2,2,25.0,1,,5,130132,1,3,4,0,1,,0.0,545.0,43,2.0,0.0,5.0,4.0,2.1,2,2,518.843295266219,458.0,38785.66919013967,1,1,2,3,90.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0357864136156987,18469.36628101889,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +30110,2,36.0,0.0,1,120,750.0,2000.0,0.0,53,37,0.0,0.0,1278.9004075290459,2750.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,130133,2,1,1,0,1,,300.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,256.921815738543,750.0,68000.75291838276,1,1,1,2,230.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0404407286975287,32381.310913515597,8,4,8,8_1,8_0,8_1_0 +30111,1,52.0,200.0,9,111,300.0,,,0,56,0.0,0.0,,560.0,360.2531986030954,,50,2,2,2,2,1,2,2,2,0,,1,2008.0,6,130134,1,3,0,0,1,,680.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,117.58631583285529,300.0,11528.770786064864,0,4,0,1,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.04857412905432096,7685.847190709909,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +30112,1,27.0,209.0,2,111,480.0,0.0,0.0,0,54,0.0,0.0,818.4962608185893,480.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,25.0,2,,2,130135,2,1,0,0,2,,0.0,793.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1849.08046620664,480.0,10126.0,0,1,3,4,21.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.047402725656725264,10126.0,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +30113,2,55.0,0.0,8,111,1140.0,0.0,0.0,52,43,0.0,993.245457757668,1943.9286194441497,1890.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,130136,2,2,2,0,1,,800.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,474.47260899275,1140.0,60091.6461060172,1,1,1,2,114.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03145195917358548,21461.30218072043,6,3,6,6_1,6_4,6_0_0 +30114,2,90.0,0.0,2,111,0.0,300.0,0.0,0,86,0.0,0.0,0.0,2323.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,1,,2,130137,2,1,1,0,2,,600.0,,11,0.0,6.0,6.0,1.0,1.0,1,1,622.690410743409,0.0,11391.703974091368,0,6,0,1,180.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2039203270453039,11391.703974091368,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +30115,2,46.0,0.0,7,111,792.0,,,0,54,0.0,0.0,,930.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,0,,1,,5,130138,2,2,0,0,2,,500.0,,32,1.0,0.0,7.0,4.0,2.5,4,4,106.78228153707744,792.0,38498.87782015703,0,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024156548259520325,15399.551128062812,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +30116,2,51.0,0.0,7,111,420.0,,,46,56,0.0,0.0,,443.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,0,,2,,5,130139,2,1,0,0,2,,129.0,368.0,43,2.0,1.0,2.0,2.0,1.5,2,2,160.71013636510176,420.0,13702.911890879257,4,4,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03232889502083594,9135.274593919505,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +30117,2,53.0,0.0,2,400,0.0,0.0,0.0,78,31,2320.3022722805235,0.0,0.0,4283.0,102.53360267934255,0.0,10,0,0,0,0,0,0,0,0,1,1.0,1,,2,130140,2,1,2,0,1,,556.0,,42,3.0,0.0,7.0,5.0,3.0,5,5,931.78591346151,0.0,165886.4823779011,5,1,1,2,240.0,0,0,4,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.025818860817381276,55295.49412596703,10,5,10,10_1,10_0,10_0_1 +30118,1,31.0,349.0,2,211,0.0,0.0,0.0,68,63,0.0,0.0,0.0,141.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,130141,1,2,0,1,1,,302.0,230.0,43,2.0,0.0,3.0,3.0,1.8,2,2,3082.10275363111,0.0,26569.668482981142,1,1,2,3,50.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.005306803134947496,14760.926934989522,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +30119,2,63.0,0.0,5,111,1240.0,0.0,0.0,77,77,0.0,0.0,2114.448673781356,1300.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,130142,2,1,3,0,1,,320.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,2675.37174317495,1240.0,39190.39563884992,7,5,0,1,97.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03317139260291861,26126.930425899947,7,4,7,7_1,7_3,7_0_0 +30120,2,52.0,0.0,2,111,250.0,0.0,0.0,0,54,0.0,0.0,426.3001358430153,250.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,7.0,2,,2,130143,1,1,0,1,2,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,3234.02768863394,250.0,23601.185308119242,0,1,1,2,60.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01059268832205624,23601.185308119242,6,3,6,6_0,6_3,6_0_1 +30121,1,66.0,148.0,2,111,661.0,94.0,0.0,0,77,0.0,0.0,1127.1375591689325,755.0,0.0,178.45938050634015,41,2,1,2,2,1,2,2,2,0,,2,,2,130144,2,1,0,1,1,404.0,232.0,235.0,11,0.0,2.0,2.0,1.0,1.0,1,1,337.952572350705,661.0,15421.332101916883,0,5,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04895815711705949,15421.332101916883,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +30122,1,58.0,237.0,2,111,90.0,330.0,0.0,0,77,0.0,0.0,153.4680489034855,420.0,0.0,626.5063358201304,71,2,2,1,2,1,2,2,2,0,,2,,2,130145,2,2,0,1,1,417.0,0.0,295.0,31,1.0,1.0,3.0,2.0,1.5,2,2,663.082880951341,90.0,18894.733085291886,0,7,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.022228416675911557,12596.488723527924,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +30123,1,41.0,194.0,1,111,610.0,0.0,0.0,85,62,0.0,1522.9763685617575,1040.1723314569574,1888.0,177.35542085075468,0.0,42,2,2,2,1,1,2,2,2,2,15.0,1,,1,130146,1,3,4,0,2,,500.0,650.0,42,2.0,0.0,6.0,5.0,2.5999999999999996,3,2,291.583384228759,610.0,33993.006289954224,6,1,2,3,89.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.05554083636780165,13074.233188443934,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +30124,2,79.0,0.0,2,111,390.0,0.0,0.0,71,78,100.19487084847715,0.0,665.0282119151038,665.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,130147,1,2,4,0,2,,135.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1717.44393510089,390.0,27601.735716018506,5,5,0,1,120.0,6,4,4,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024092687751302216,18401.157144012337,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +30125,2,70.0,0.0,1,111,450.0,3284.0,0.0,74,74,0.0,0.0,767.3402445174275,3734.0,0.0,6234.687293434267,20,0,0,0,0,0,0,0,0,0,,1,,1,130148,2,1,2,0,2,,360.0,,41,1.0,0.0,8.0,3.0,2.0,3,3,424.085964074617,450.0,68656.51347851436,5,5,1,2,250.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05438668249835513,34328.25673925718,9,5,9,9_1,9_4,9_1_0 +30126,1,60.0,49.0,2,111,540.0,132.0,0.0,0,52,0.0,0.0,920.8082934209131,672.0,0.0,250.60253432805214,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,130149,2,1,0,1,1,876.0,0.0,655.0,32,2.0,1.0,4.0,3.0,2.0,3,3,278.437641615797,540.0,31560.413880423308,0,1,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021292496433858134,15780.206940211654,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +30127,1,45.0,409.0,2,111,1010.0,72.0,0.0,85,53,0.0,0.0,1722.2525488057818,1082.0,0.0,136.6922914516648,71,2,1,2,1,1,2,1,2,0,,2,,2,130150,1,3,0,0,1,,0.0,586.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,3,2,339.330848537807,1010.0,8139.695217416047,7,4,2,3,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.13292881012115854,3014.701932376314,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30128,2,54.0,0.0,1,300,250.0,0.0,0.0,0,78,0.0,463.51454695357836,426.3001358430153,625.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130151,1,3,4,0,2,,80.0,78.0,11,0.0,1.0,3.0,1.0,1.0,1,1,912.814424695034,250.0,21015.501935596265,0,7,2,3,115.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029739951104444898,21015.501935596265,5,3,5,5_1,5_0,5_1_0 +30129,2,40.0,0.0,1,112,2700.0,0.0,0.0,46,11,0.0,0.0,4604.0414671045655,2760.0,83.13535352379125,0.0,20,0,0,0,0,0,0,0,0,2,10.0,1,,1,130152,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1010.16101368116,2700.0,105944.24967689818,4,1,1,2,130.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026051437509985363,44143.437365374244,10,5,10,10_1,10_0,10_1_0 +30130,2,55.0,0.0,5,111,1465.0,0.0,0.0,74,33,0.0,0.0,2498.11879604007,1705.0,332.541414095165,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,130153,2,1,2,0,1,,1080.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1596.78759674514,1465.0,75708.54237683536,5,1,1,2,120.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02252057623185308,50472.36158455691,10,5,10,10_1,10_2,10_0_0 +30131,2,52.0,0.0,8,111,800.0,0.0,0.0,46,22,0.0,0.0,1364.160434697649,4100.0,4572.444443808519,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,130154,2,1,2,0,1,,250.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,380.747133745563,800.0,127071.90529109535,1,1,1,2,169.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0322651965484247,70595.50293949741,10,5,10,10_1,10_3,10_0_0 +30132,1,54.0,120.0,2,111,938.0,137.0,0.0,0,52,0.0,0.0,1599.4781096829934,1075.0,0.0,260.0950545677511,42,0,0,0,0,0,0,0,0,1,10.0,2,,2,130155,2,2,0,0,1,,0.0,343.0,32,2.0,1.0,4.0,2.0,1.5,2,2,1141.63175962216,938.0,25975.244258277256,0,1,2,3,67.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.041385558854078575,17316.82950551817,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +30133,1,22.0,398.0,5,111,420.0,,,81,85,0.0,0.0,,696.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,,3,130156,1,3,0,0,2,,500.0,392.0,42,1.0,0.0,3.0,4.0,2.1,2,2,116.66484125440479,420.0,15216.893060291199,4,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0457386404203777,7246.1395525196185,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30134,2,52.0,0.0,2,111,800.0,1440.0,0.0,0,56,0.0,0.0,1364.160434697649,2240.0,0.0,2733.845829033296,33,1,2,2,1,1,2,2,2,0,,1,,2,130157,2,2,5,0,1,,440.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,1365.99241846471,800.0,21942.935055952432,0,1,0,1,110.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.10208297086457256,10971.467527976216,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +30135,2,56.0,0.0,2,211,1200.0,0.0,0.0,0,63,0.0,0.0,2046.2406520464733,1276.0,105.3047811301356,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130158,2,3,0,0,1,,230.0,319.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1304.56413820826,1200.0,13086.79084004207,0,4,2,3,70.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.09750289552239058,13086.79084004207,2,1,2_0,2_0_0,2_1_0,2_0_1_0 +30136,2,76.0,0.0,2,111,230.0,143.0,0.0,0,78,0.0,0.0,392.1961249755741,373.0,0.0,271.48607885538985,71,0,0,0,0,0,0,0,0,0,,2,,2,130159,2,2,0,1,1,984.0,312.0,346.0,11,0.0,12.0,3.0,1.0,1.0,1,1,84.963873143508,230.0,19228.21301734874,0,5,2,3,64.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019398578519150955,19228.21301734874,5,3,5,5_0,5_3,5_0_1 +30137,2,38.0,0.0,5,111,420.0,120.0,0.0,35,52,0.0,0.0,716.1842282162656,540.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,2,35.0,2,,3,130160,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,738.149617786853,420.0,56885.71395616977,1,1,1,2,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009492717282516099,23702.380815070737,6,3,6,6_0,6_4,6_0_0 +30138,0,59.0,0.0,2,111,1050.0,,,0,54,0.0,0.0,,1188.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,130161,2,2,0,0,2,,600.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,131.2872066450784,1050.0,28056.837592876993,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.042342619551021914,18704.55839525133,5,3,5,5_0,5_2,5_0_1 +30139,2,70.0,0.0,2,111,0.0,0.0,249.0,0,77,0.0,0.0,156.9492543132712,249.0,0.0,297.9863047436055,71,2,1,2,2,1,2,2,2,0,,2,,2,130162,1,1,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1930.73736025314,0.0,12928.74308875242,0,5,0,1,56.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.019259412789834285,12928.74308875242,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +30140,2,64.0,0.0,2,211,350.0,1400.0,0.0,77,75,0.0,0.0,596.8201901802214,1810.0,83.13535352379125,2657.9056671157045,50,0,0,0,0,0,0,0,0,0,,1,,2,130163,2,3,1,0,1,,180.0,540.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1165.98419124779,350.0,28016.444168726113,5,5,2,3,80.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06460491520977693,18677.62944581741,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +30141,2,69.0,0.0,7,112,720.0,0.0,0.0,0,78,0.0,0.0,1227.744391227884,1420.0,969.9124577775647,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,130164,2,1,3,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1681.38436328652,720.0,23464.81438690973,0,5,0,1,99.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.060516140319105724,23464.81438690973,6,3,6,6_1,6_0,6_0_0 +30142,1,55.0,19.0,1,111,600.0,0.0,0.0,78,56,1054.6828510366015,0.0,1023.1203260232367,1760.0,221.69427606344334,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130165,2,2,5,0,1,,0.0,780.0,42,1.0,2.0,4.0,3.0,2.0,3,3,3013.596530997,600.0,29400.43949608342,5,1,2,3,90.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05986305069468292,14700.21974804171,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +30143,2,54.0,0.0,7,111,700.0,0.0,0.0,22,46,0.0,0.0,1193.6403803604428,3100.0,3325.41414095165,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,130166,2,1,2,0,1,,550.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1135.97924512379,700.0,65372.89959591758,1,1,1,2,135.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04742026159405035,36318.277553287546,9,5,9,9_1,9_3,9_0_0 +30144,2,89.0,0.0,7,112,240.0,,,0,78,0.0,0.0,,460.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,1,,5,130167,2,2,0,0,2,,600.0,,11,0.0,7.0,6.0,1.0,1.0,1,1,77.40319015645989,240.0,13753.93160557666,0,5,0,1,60.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033444982365150686,13753.93160557666,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +30145,2,46.0,0.0,2,111,600.0,82.0,0.0,0,43,0.0,0.0,1023.1203260232367,682.0,0.0,155.6773319310627,33,1,1,2,1,1,2,2,2,0,,2,,2,130168,1,2,0,1,1,823.0,0.0,284.0,32,1.0,0.0,3.0,2.0,1.3,1,1,304.335131822202,600.0,31231.046740869187,0,4,2,3,56.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021837244382447468,24023.88210836091,6,3,6,6_0,6_3,6_0_1 +30146,2,54.0,0.0,1,111,1550.0,0.0,0.0,0,37,0.0,0.0,2643.0608422266946,1790.0,332.541414095165,0.0,41,2,2,1,2,1,2,2,2,0,,1,,1,130169,1,2,3,0,2,,1500.0,,32,1.0,0.0,8.0,2.0,1.5,2,2,1422.09226270891,1550.0,29422.660963442064,0,4,0,1,180.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.060837461377952595,19615.107308961375,5,3,5,5_1,5_3,5_1_0 +30147,1,86.0,135.0,7,111,307.0,,,0,78,0.0,0.0,,351.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,2,,5,130170,2,2,0,0,2,,189.0,312.0,11,0.0,3.0,2.0,1.0,1.0,1,1,139.26723331329748,307.0,6042.843834285259,0,5,2,3,32.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05808523430781592,6042.843834285259,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30148,1,43.0,413.0,2,111,110.0,,,0,85,0.0,0.0,,294.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,2,130171,2,1,0,0,2,,352.0,500.0,31,0.0,0.0,4.0,3.0,1.6,1,1,90.59713755746766,110.0,17020.825531914896,0,6,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01727295773337993,10638.015957446809,2,1,2_1,2_1_1,2_3_1,2_0_1_1 +30149,2,57.0,0.0,2,400,480.0,0.0,0.0,0,75,3164.0485531098047,0.0,818.4962608185893,3530.0,69.27946126982604,0.0,33,2,2,2,2,1,2,1,2,0,,1,,2,130172,1,3,4,0,2,,113.0,550.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2072.11545801575,480.0,10034.085997631479,0,7,2,3,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.3518008517002194,10034.085997631479,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +30150,2,32.0,0.0,1,111,810.0,210.0,0.0,0,55,0.0,0.0,1381.2124401313695,1020.0,0.0,398.6858500673557,42,0,0,0,0,0,0,0,0,0,,2,,1,130173,2,1,0,1,1,,0.0,471.0,22,1.0,5.0,4.0,3.0,2.0,3,3,203.327515819001,810.0,18483.611683078918,0,1,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.055184020173599156,9241.805841539459,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +30151,2,35.0,0.0,1,111,1300.0,0.0,0.0,46,47,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,130174,2,1,2,0,2,,300.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,2112.95305335087,1300.0,53403.345516233814,1,1,1,2,120.0,4,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02434304419382901,25430.16453153991,7,4,7,7_1,7_2,7_1_0 +30152,1,47.0,145.0,6,111,500.0,700.0,0.0,55,62,0.0,0.0,852.6002716860306,1200.0,0.0,1328.9528335578523,60,2,2,2,2,1,2,2,2,3,30.0,2,,4,130175,1,3,0,0,1,,0.0,513.0,43,2.0,4.0,4.0,6.0,2.8999999999999995,3,2,1330.67647948142,500.0,40076.996489332494,1,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.029942363578054316,13819.653961838794,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +30153,1,45.0,128.0,5,112,1050.0,0.0,0.0,21,56,0.0,0.0,1790.4605705406643,1113.0,87.29212119998083,0.0,42,0,0,0,0,0,0,0,0,0,,1,,3,130176,2,1,2,0,1,,414.0,,43,2.0,0.0,6.0,7.0,3.1999999999999993,3,3,729.879853761484,1050.0,19047.21368260777,1,1,1,2,180.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05843374356724381,5952.254275814929,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +30154,2,64.0,0.0,1,111,0.0,0.0,1012.0,0,77,0.0,0.0,637.8821098997207,1012.0,0.0,1211.092933335457,70,0,0,0,0,0,0,0,0,0,,1,,1,130177,2,2,2,0,1,,120.0,358.0,11,0.0,4.0,3.0,1.0,1.0,1,1,198.657772291056,0.0,16481.05381886042,0,5,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06140384050211024,16481.05381886042,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +30155,2,45.0,0.0,1,111,0.0,0.0,0.0,43,31,0.0,0.0,0.0,2270.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,1,130178,2,2,1,0,1,,1023.0,,43,2.0,0.0,9.0,5.0,2.4,2,2,379.074049241402,0.0,147060.69223457985,1,1,1,2,200.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015435803854228235,61275.28843107494,10,5,10,10_1,10_3,10_1_0 +30156,2,31.0,0.0,8,111,0.0,0.0,0.0,38,37,0.0,0.0,0.0,1002.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,20.0,2,1999.0,6,130179,2,1,0,0,1,,0.0,1419.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1308.36449432892,0.0,101218.54901211329,1,1,2,3,66.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00989937130871226,56232.527228951825,10,5,10,10_0,10_4,10_0_0 +30157,1,55.0,245.0,1,111,500.0,0.0,0.0,0,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,2,2,1,2,1,2,2,2,0,,2,,1,130180,2,1,0,0,2,,0.0,450.0,12,1.0,2.0,2.0,1.0,1.0,1,1,2444.35764358779,500.0,4839.267902296582,0,4,2,3,32.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.10332141350610366,4839.267902296582,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +30158,2,86.0,0.0,2,111,670.0,1000.0,0.0,0,75,0.0,0.0,1142.484364059281,1670.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,2,130181,2,1,0,1,1,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2089.43793877896,670.0,30386.4111291772,0,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.054958777227773925,30386.4111291772,8,4,8,8_0,8_3,8_0_1 +30159,2,40.0,0.0,5,111,650.0,0.0,0.0,34,34,0.0,463.51454695357836,1108.3803531918397,1103.0,0.0,0.0,10,2,1,2,2,1,2,2,2,3,60.0,1,,3,130182,2,1,2,0,1,,490.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,537.066613955781,650.0,90069.32977360704,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.012246121990387137,39160.57816243784,9,5,9,9_1,9_4,9_0_0 +30160,2,21.0,0.0,5,111,680.0,1263.0,0.0,0,55,0.0,0.0,1159.5363694930015,1943.0,0.0,2397.8106125479535,44,0,0,0,0,0,0,0,0,0,,1,,3,130183,2,1,2,0,2,,500.0,,22,3.0,0.0,8.0,3.0,2.0,3,3,291.243857285829,680.0,30827.331020388705,0,1,0,1,84.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0630284859469323,15413.665510194352,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +30161,2,41.0,0.0,1,111,150.0,0.0,0.0,38,37,0.0,198.6490915515336,255.78008150580916,300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,5.0,1,,1,130184,2,2,1,0,1,,500.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,506.772149720172,150.0,134373.7408166322,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.002232579060289637,55989.05867359675,10,5,10,10_1,10_4,10_1_0 +30162,2,47.0,0.0,8,111,540.0,,,0,42,0.0,0.0,,620.0,110.84713803172167,,20,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,130185,2,1,0,0,1,,420.0,,32,1.0,1.0,6.0,3.0,2.0,3,2,123.712092198859,540.0,57680.75816281608,0,1,0,1,161.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010748818492467099,28840.37908140804,8,4,8,8_1,8_2,8_0_0 +30163,2,33.0,0.0,7,111,1200.0,0.0,0.0,0,47,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,60.0,2,,5,130186,2,1,0,0,1,,300.0,675.0,32,1.0,0.0,2.0,3.0,1.6,1,1,982.172928773205,1200.0,26710.453555501885,0,1,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04492623075480577,16694.033472188676,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +30164,2,63.0,0.0,2,111,350.0,1150.0,0.0,0,75,0.0,0.0,596.8201901802214,1500.0,0.0,2183.2796551307574,41,2,2,2,2,1,2,2,2,0,,2,,2,130187,1,2,0,0,1,,240.0,,21,1.0,2.0,3.0,2.0,1.5,2,2,1542.42673772136,350.0,27598.551601341285,0,6,0,1,75.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.054350678313390195,18399.03440089419,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +30165,2,32.0,0.0,1,111,895.0,805.0,0.0,47,62,0.0,0.0,1526.1544863179947,1700.0,0.0,1528.29575859153,50,0,0,0,0,0,0,0,0,1,30.0,1,,1,130188,2,1,2,0,1,,310.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,283.443076723053,895.0,38338.20067188399,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04434219577881039,21299.000373268882,6,3,6,6_1,6_3,6_1_0 +30166,2,73.0,0.0,2,112,1160.0,0.0,0.0,86,75,1212.8852786920918,0.0,1978.032630311591,2434.0,171.8130639491686,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,130189,2,2,2,0,1,,379.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,1537.92298176499,1160.0,49245.31624407726,5,5,0,1,150.0,9,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04942602029269611,32830.210829384836,8,4,8,8_1,8_0,8_0_1 +30167,2,37.0,0.0,6,111,850.0,0.0,0.0,0,22,0.0,0.0,1449.420461866252,940.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,4,130190,2,1,2,0,1,,120.0,,32,1.0,0.0,2.0,2.0,1.3,1,1,2001.4597553681,850.0,12828.872648198932,0,1,1,2,39.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07327222163453062,9868.36357553764,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +30168,2,78.0,0.0,2,111,240.0,188.0,0.0,0,77,0.0,0.0,409.2481304092947,428.0,0.0,356.9187610126803,71,0,0,0,0,0,0,0,0,0,,2,,2,130191,2,1,0,1,1,588.0,0.0,321.0,11,0.0,1.0,3.0,1.0,1.0,1,1,876.178071766901,240.0,21766.192169386286,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0196635220652868,21766.192169386286,6,3,6,6_0,6_4,6_0_1 +30169,1,60.0,130.0,1,400,600.0,0.0,0.0,21,21,0.0,860.8127300566456,1023.1203260232367,1378.0,177.35542085075468,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,130192,2,3,1,0,1,,76.0,,43,2.0,3.0,2.0,2.0,1.5,2,2,905.445578192079,600.0,12917.338946043341,1,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10667831863482144,8611.559297362228,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +30170,1,45.0,403.0,2,111,350.0,0.0,0.0,0,85,0.0,0.0,596.8201901802214,470.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130193,2,1,0,1,1,,427.0,374.0,31,1.0,0.0,4.0,3.0,2.0,3,2,433.098453874586,350.0,18750.522236927078,0,7,2,3,82.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0250659685133669,9375.261118463539,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30171,2,58.0,0.0,5,111,620.0,,,85,34,0.0,0.0,,689.0,95.60565655235995,,10,0,0,0,0,0,0,0,0,0,,1,,3,130194,2,1,0,0,2,,243.0,800.0,42,1.0,3.0,3.0,2.0,1.5,2,2,165.10327954494664,620.0,170318.4981143681,6,1,2,3,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0040453621164351725,113545.66540957872,10,5,10,10_1,10_2,10_0_0 +30172,2,59.0,0.0,7,112,2000.0,0.0,0.0,46,38,0.0,927.0290939071567,3410.4010867441225,2760.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,130195,2,1,2,0,1,,700.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,228.504091842824,2000.0,43125.56027625924,1,4,0,1,61.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06399916852835391,28750.37351750616,8,4,8,8_1,8_0,8_0_0 +30173,1,53.0,288.0,9,111,400.0,,,0,67,0.0,0.0,,444.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,1,30.0,1,2011.0,6,130196,2,3,0,0,1,,150.0,433.0,12,1.0,0.0,2.0,1.0,1.0,1,1,261.7014081060333,400.0,4929.211421475218,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0900752599220261,4929.211421475218,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +30174,2,80.0,0.0,2,111,180.0,348.0,0.0,0,77,0.0,0.0,306.936097806971,528.0,0.0,660.6794086830465,71,0,0,0,0,0,0,0,0,0,,2,,2,130197,2,2,0,1,1,561.0,0.0,208.0,11,0.0,4.0,3.0,1.0,1.0,1,1,270.975680550572,180.0,16811.5750594377,0,5,2,3,64.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03140693231498204,16811.5750594377,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +30175,1,29.0,200.0,1,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,470.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,1,130198,2,2,0,0,1,,0.0,426.0,12,1.0,0.0,1.0,1.0,1.0,1,1,564.511633678504,0.0,12717.755396828994,0,1,2,3,21.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03695620691975161,12717.755396828994,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +30176,2,74.0,0.0,7,111,324.0,,,0,75,0.0,0.0,,404.0,110.84713803172167,,31,0,0,0,0,0,0,0,0,0,,2,,5,130199,2,1,0,0,2,,420.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,114.53523976529617,324.0,40911.739453742106,0,5,0,1,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009874916231728374,40911.739453742106,9,5,9,9_0,9_2,9_0_0 +30177,2,32.0,0.0,1,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1832.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,,1,130200,2,1,2,0,2,,225.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1790.26971591211,0.0,76114.84205391392,0,1,1,2,150.0,6,5,4,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02406889314310541,76114.84205391392,10,5,10,10_1,10_2,10_1_0 +30178,2,42.0,0.0,9,300,550.0,0.0,0.0,46,62,0.0,0.0,937.8602988546337,1192.0,138.5589225396521,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,2004.0,6,130201,1,1,1,0,1,,120.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,261.538976082914,550.0,47900.10251535478,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024885124194001344,22809.57262635942,6,3,6,6_1,6_0,6_0_0 +30179,2,50.0,0.0,7,111,0.0,0.0,1300.0,33,62,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,130202,2,2,2,0,1,,600.0,,43,4.0,0.0,6.0,5.0,3.0,5,4,811.854291275403,0.0,76012.55306319329,1,1,0,1,90.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01710243831593501,25337.5176877311,7,4,7,7_1,7_1,7_0_0 +30180,1,44.0,24.0,9,111,822.0,0.0,0.0,0,47,0.0,0.0,1401.6748466518343,872.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2004.0,6,130203,2,1,1,0,1,,288.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,1813.09565353381,822.0,18742.323512196373,0,1,1,2,170.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04652571488441948,11713.952195122733,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +30181,2,41.0,0.0,9,111,290.0,300.0,0.0,0,38,0.0,0.0,494.50815757789775,590.0,0.0,569.5512143819367,31,0,0,0,0,0,0,0,0,0,,2,2004.0,6,130204,2,1,0,0,1,,0.0,390.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1978.60476950795,290.0,35732.12833416268,0,1,2,3,25.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016511750838975756,35732.12833416268,9,5,9,9_0,9_3,9_0_0 +30182,2,46.0,0.0,2,111,350.0,1120.0,0.0,56,62,0.0,0.0,596.8201901802214,1470.0,0.0,2126.324533692564,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,130205,2,2,2,0,1,,360.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,720.611669840773,350.0,39255.713920939255,1,1,1,2,100.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03744677788717765,26170.475947292838,7,4,7,7_1,7_2,7_0_1 +30183,2,36.0,0.0,9,111,1600.0,0.0,0.0,54,53,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,1,2011.0,6,130206,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,5.0,2.6,3,2,152.237974170708,1600.0,54367.28975798355,1,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029429460381829104,20910.496060762904,5,3,5,5_1,5_4,5_0_0 +30184,2,69.0,0.0,7,111,650.0,0.0,0.0,0,74,0.0,132.4327277010224,1108.3803531918397,750.0,0.0,0.0,10,2,2,2,1,1,2,2,2,0,,1,,5,130207,1,3,3,0,2,,150.0,940.0,21,1.0,3.0,4.0,2.0,1.5,2,2,1111.33472657327,650.0,44474.90370350346,0,5,2,3,79.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.016863442920527775,29649.935802335644,8,4,8,8_1,8_2,8_0_0 +30185,1,63.0,34.0,7,111,480.0,,,0,77,0.0,0.0,,549.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,2,,5,130208,2,2,0,0,2,,520.0,428.0,11,0.0,2.0,3.0,1.0,1.0,1,1,143.24371574156282,480.0,15953.935618443029,0,5,2,3,86.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03441157173565038,15953.935618443029,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +30186,2,63.0,0.0,2,111,288.0,0.0,0.0,0,78,0.0,0.0,491.09775649115363,288.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,130209,2,1,0,1,1,,0.0,697.0,11,0.0,4.0,3.0,1.0,1.0,1,1,246.340216068717,288.0,25586.609365094526,0,5,2,3,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01125588763601058,25586.609365094526,7,4,7,7_0,7_4,7_0_1 +30187,2,41.0,0.0,2,111,0.0,0.0,0.0,0,69,0.0,0.0,0.0,137.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130210,1,1,0,1,1,110.0,155.0,235.0,12,1.0,0.0,2.0,1.0,1.0,1,1,303.085713454358,0.0,11456.0,0,4,2,3,43.0,9,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.011958798882681565,11456.0,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +30188,2,38.0,0.0,8,120,650.0,1738.0,0.0,0,54,0.0,264.8654554020448,1108.3803531918397,2588.0,0.0,3299.600035319353,31,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,130211,2,1,1,0,1,,617.0,,32,1.0,0.0,7.0,3.0,1.6,1,1,740.955357524514,650.0,74274.94283865258,0,1,1,2,165.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03484351385664357,46421.839274157865,10,5,10,10_1,10_0,10_0_0 +30189,2,36.0,0.0,7,111,324.0,480.0,0.0,84,38,0.0,0.0,552.4849760525478,804.0,0.0,911.2819430110987,12,0,0,0,0,0,0,0,0,0,,2,,5,130212,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,3.0,1.8,2,2,826.50804896946,324.0,60868.587375912655,3,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013208783621585483,33815.88187550703,9,5,9,9_0,9_4,9_0_0 +30190,2,56.0,0.0,7,111,650.0,,,68,38,0.0,0.0,,720.0,96.99124577775646,,20,0,0,0,0,0,0,0,0,2,60.0,1,,5,130213,2,1,0,0,2,,150.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,88.82211197968888,650.0,61916.64560579806,4,1,0,1,198.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011628536929858761,41277.76373719871,9,5,9,9_1,9_2,9_0_0 +30191,2,79.0,0.0,2,211,330.0,0.0,0.0,86,78,1476.555991451242,0.0,562.7161793127802,1910.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130214,2,1,2,0,1,,106.0,220.0,41,0.0,0.0,4.0,2.0,1.5,2,2,1807.21136026371,330.0,19812.040045993486,6,5,2,3,73.0,3,3,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09640602358797735,13208.02669732899,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +30192,2,83.0,0.0,2,111,350.0,1400.0,0.0,86,75,0.0,0.0,596.8201901802214,1750.0,0.0,2657.9056671157045,70,0,0,0,0,0,0,0,0,0,,1,,2,130215,2,1,1,0,1,,280.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,700.957965902095,350.0,39451.455990654555,5,5,0,1,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04435831216000109,26300.97066043637,7,4,7,7_1,7_2,7_0_1 +30193,2,49.0,0.0,1,221,750.0,0.0,0.0,0,52,2109.365702073203,72.83800023556232,1278.9004075290459,2930.0,173.19865317456512,0.0,50,2,2,1,1,1,2,2,2,2,15.0,1,,1,130216,2,1,2,0,1,,345.0,,22,1.0,0.0,6.0,3.0,2.0,3,3,2871.19611876958,750.0,46735.0,0,1,0,1,120.0,1,2,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.0626939124852894,23367.5,6,3,6,6_1,6_1,6_1_0 +30194,2,71.0,0.0,6,111,300.0,0.0,0.0,77,78,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,1,2,2,2,1,2,2,2,0,,2,,4,130217,2,1,0,1,1,,0.0,,41,1.0,5.0,4.0,3.0,2.0,3,3,414.828504980253,300.0,16937.045823724387,6,5,0,1,85.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01771265208362241,8468.522911862194,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +30195,1,41.0,106.0,2,111,300.0,,,85,63,0.0,344.3250920226582,,760.0,277.1178450793042,,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,130218,1,3,0,0,2,,300.0,690.0,42,1.0,4.0,5.0,3.0,1.8,2,2,117.83381441728325,300.0,31817.502981299716,6,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.023886223895277992,17676.39054516651,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +30197,1,27.0,360.0,2,111,340.0,252.0,0.0,0,55,0.0,0.0,579.7681847465008,691.0,0.0,478.4230200808268,10,0,0,0,0,0,0,0,0,0,,2,,2,130220,2,1,0,1,1,,0.0,331.0,22,2.0,1.0,4.0,3.0,2.0,3,3,255.745074689884,340.0,22654.670218560434,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030501437157707117,11327.335109280217,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30198,2,59.0,0.0,2,111,400.0,1300.0,0.0,74,75,0.0,0.0,682.0802173488245,1700.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,0,,2,,2,130221,2,1,0,0,1,,400.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,896.270486805363,400.0,27958.620381671542,5,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.060804144725053966,18639.080254447694,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +30199,2,37.0,0.0,2,111,400.0,1357.0,0.0,62,43,0.0,0.0,682.0802173488245,1757.0,0.0,2576.2699930542935,33,0,0,0,0,0,0,0,0,2,10.0,1,,2,130222,2,2,1,0,1,,266.0,,43,2.0,1.0,3.0,3.0,1.8,2,2,1208.20559215093,400.0,47932.33112981065,1,1,1,2,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03665584290573478,26629.072849894805,7,4,7,7_1,7_2,7_0_1 +30200,2,70.0,0.0,7,111,94.0,0.0,0.0,0,75,0.0,0.0,160.28885107697374,94.0,0.0,0.0,44,2,2,2,2,2,2,2,1,0,,2,,5,130223,2,2,0,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1137.73504975433,94.0,22173.364574532723,0,5,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.0042393205453341055,22173.364574532723,6,3,6,6_0,6_4,6_0_0 +30201,1,43.0,413.0,8,112,350.0,,,0,56,0.0,0.0,,416.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,30.0,2,2000.0,6,130224,2,1,0,0,2,,125.0,424.0,32,1.0,0.0,3.0,3.0,1.8,2,1,80.04718168533577,350.0,12274.979831729373,0,1,2,3,60.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03389007604922406,6819.433239849652,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +30202,2,44.0,0.0,7,111,344.0,,,0,69,0.0,0.0,,695.0,0.0,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,130225,1,1,0,0,2,,230.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,110.38843462366562,344.0,18894.201983054587,0,1,0,1,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03678377105438569,18894.201983054587,5,3,5,5_1,5_2,5_0_0 +30203,2,45.0,0.0,1,111,755.0,2790.0,0.0,54,22,0.0,595.9472746546007,1287.4264102459063,3995.0,0.0,5296.826293752011,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,130226,2,3,4,0,1,,645.0,,43,2.0,0.0,7.0,5.0,2.8,4,4,736.192894761208,755.0,79525.34822879803,1,1,1,2,142.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05023555493911456,28401.910081713584,8,4,8,8_1,8_4,8_1_0 +30204,2,81.0,0.0,1,120,330.0,0.0,0.0,0,77,1858.351183526492,0.0,562.7161793127802,2184.0,127.47420873647992,0.0,71,2,2,2,1,1,2,2,2,0,,1,,1,130227,1,3,3,0,2,,0.0,300.0,11,0.0,3.0,5.0,1.0,1.0,1,1,2008.01830895492,330.0,17677.46209407936,0,5,2,3,80.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.12354714655173708,17677.46209407936,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +30205,1,66.0,108.0,1,111,140.0,150.0,0.0,0,75,0.0,0.0,238.72807607208856,290.0,0.0,284.77560719096834,60,1,2,2,2,2,2,2,1,0,,2,,1,130228,2,1,0,1,1,727.0,0.0,225.0,11,0.0,0.0,1.0,1.0,1.0,1,1,735.0174391138,140.0,10632.148406117965,0,5,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.027275766752195427,10632.148406117965,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +30206,2,69.0,0.0,2,120,1220.0,0.0,0.0,77,75,0.0,463.51454695357836,2080.344662913915,1570.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130229,2,1,1,0,1,,200.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,892.852694416655,1220.0,46215.70713723376,5,5,0,1,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03397113443137446,30810.471424822506,8,4,8,8_1,8_0,8_0_1 +30207,2,42.0,0.0,7,111,580.0,0.0,0.0,0,54,0.0,0.0,989.0163151557955,580.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,60.0,8,,5,130230,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,782.745654398385,580.0,60310.134072061206,0,1,1,2,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009616957563168247,60310.134072061206,10,5,10,10_0,10_4,10_0_0 +30208,2,35.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,665.0,0.0,,50,0,0,0,0,0,0,0,0,3,15.0,2,,3,130231,2,2,0,0,2,,447.0,319.0,32,1.0,2.0,3.0,3.0,1.6,1,1,120.75646635114597,0.0,14575.400095911737,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045624819601797845,9109.625059944834,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +30209,2,38.0,0.0,9,111,2000.0,,,42,37,0.0,0.0,,2150.0,207.83838380947813,,20,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,130232,2,1,0,0,2,,400.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,176.80378377586402,2000.0,70213.18077807759,1,1,1,2,180.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030621031210585563,33434.84798956075,8,4,8,8_1,8_3,8_0_0 +30210,1,26.0,274.0,2,111,0.0,0.0,0.0,56,54,0.0,0.0,0.0,1227.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,15.0,1,,2,130233,1,3,3,0,2,,283.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,489.900374807904,0.0,32441.308426835953,4,1,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0378221489668711,21627.538951223967,6,3,6,6_1,6_3,6_0_1 +30211,2,43.0,0.0,2,111,120.0,130.0,0.0,0,38,0.0,0.0,204.62406520464734,250.0,0.0,246.80552623217258,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,130234,2,2,0,1,1,120.0,0.0,462.0,12,1.0,0.0,2.0,1.0,1.0,1,1,747.312832241189,120.0,37997.643842557794,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006579355315710317,37997.643842557794,9,5,9,9_0,9_4,9_0_1 +30212,2,47.0,0.0,1,211,540.0,,,81,63,0.0,0.0,,816.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,1,130235,2,1,0,0,2,,400.0,,43,5.0,0.0,5.0,6.0,3.3,5,5,133.64844735910432,540.0,64864.34723948886,4,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.012580100389929249,19655.86279984511,5,3,5,5_1,5_2,5_1_0 +30213,2,59.0,0.0,5,111,640.0,,,77,11,0.0,158.91927324122688,,1044.0,393.50734001261196,,71,2,2,1,2,1,2,2,2,0,,1,,3,130236,2,1,0,0,1,,360.0,,42,3.0,3.0,5.0,5.0,2.8,4,4,125.70710051382812,640.0,60679.76597965795,6,1,0,1,97.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.017205076241559446,21671.344992734983,6,3,6,6_1,6_2,6_0_0 +30214,2,39.0,0.0,7,111,1500.0,,,52,21,0.0,0.0,,2052.0,764.8452524188796,,71,0,0,0,0,0,0,0,0,0,,1,,5,130237,1,2,0,0,2,,1200.0,,43,3.0,4.0,8.0,10.0,4.699999999999999,6,6,140.46148878559086,1500.0,72551.54944336915,4,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028283338064360838,15436.499881567906,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +30215,2,63.0,0.0,2,111,1787.0,0.0,0.0,74,74,0.0,0.0,3047.1933710058734,1867.0,110.84713803172167,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,130238,2,2,1,0,1,,248.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1150.5306425033,1787.0,74082.50958730027,5,5,0,1,140.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02520163005277097,49388.33972486685,10,5,10,10_1,10_3,10_0_1 +30216,2,83.0,0.0,1,112,1270.0,0.0,0.0,77,72,4187.0909186153085,0.0,2165.6046900825177,5240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130239,2,1,3,0,1,,190.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,675.161812462935,1270.0,86542.0757788327,5,5,0,1,470.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06054858232649014,57694.71718588847,10,5,10,10_1,10_0,10_1_0 +30217,2,47.0,0.0,8,111,936.0,0.0,0.0,0,21,0.0,0.0,1596.0677085962493,936.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,130240,2,1,2,0,1,,500.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1178.1340424908,936.0,10513.612894866146,0,1,1,2,130.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08902743608308557,10513.612894866146,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30218,2,68.0,0.0,1,111,300.0,800.0,0.0,54,74,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,12,0,0,0,0,0,0,0,0,0,,2,,1,130241,2,3,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,269.610939295571,300.0,73952.30955943288,1,5,1,2,67.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014874450934030243,49301.53970628858,10,5,10,10_0,10_4,10_1_0 +30219,2,53.0,0.0,1,112,1824.0,0.0,0.0,0,52,1265.6194212439218,0.0,3110.2857911106394,3156.0,182.89777775234077,0.0,70,0,0,0,0,0,0,0,0,4,90.0,1,,1,130242,2,2,2,0,1,,215.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,827.769948010576,1824.0,15734.652720718557,0,1,0,1,130.0,10,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20057640012889172,15734.652720718557,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30220,1,77.0,19.0,5,221,315.0,308.0,0.0,0,77,0.0,0.0,537.1381711621992,623.0,0.0,584.739246765455,70,0,0,0,0,0,0,0,0,0,,2,,3,130243,1,2,0,1,1,980.0,0.0,288.0,11,0.0,5.0,4.0,1.0,1.0,1,1,3192.23292743083,315.0,15173.16476855761,0,5,2,3,72.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04105933135920355,15173.16476855761,3,2,3_1,3_0_1,3_1_1,3_0_0_1 +30221,2,31.0,0.0,7,120,0.0,0.0,0.0,47,13,0.0,0.0,0.0,1949.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,130244,2,1,4,0,1,,206.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1386.43426347066,0.0,40828.16856177198,1,1,1,2,85.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047736650176978,27218.77904118132,7,4,7,7_1,7_0,7_0_0 +30223,2,63.0,0.0,1,111,550.0,0.0,0.0,0,75,0.0,0.0,937.8602988546337,674.0,0.0,0.0,44,2,1,2,2,1,2,2,2,0,,2,,1,130246,2,2,0,1,1,,0.0,791.0,11,0.0,0.0,3.0,1.0,1.0,1,1,679.332332854833,550.0,22471.204689686652,0,5,2,3,59.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.029993941549085613,22471.204689686652,6,3,6,6_0,6_4,6_1_0 +30224,2,73.0,0.0,5,112,0.0,0.0,0.0,0,74,0.0,0.0,0.0,2637.0,2078.3838380947814,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,130247,2,1,2,0,2,,229.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,921.022199999297,0.0,20142.133607867192,0,5,0,1,126.0,10,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13091959627206676,20142.133607867192,5,3,5,5_1,5_0,5_0_0 +30225,0,74.0,0.0,1,221,490.0,0.0,0.0,0,74,2742.175412695164,0.0,835.54826625231,3090.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,130248,1,1,1,0,2,,0.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,2815.1294912002,490.0,80602.30068259049,0,5,5,0,135.0,1,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038336374691937514,80602.30068259049,10,5,10,10_1,10_1,10_1_0 +30226,2,49.0,0.0,2,111,800.0,0.0,0.0,52,65,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,2,2,2,1,2,2,2,2,2,30.0,2,,2,130249,2,2,0,1,1,,0.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,807.409398085604,800.0,41240.15643053754,1,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019398568512887973,20620.07821526877,5,3,5,5_0,5_4,5_0_1 +30227,2,51.0,0.0,7,112,840.0,830.0,0.0,56,37,0.0,95.35156394473611,1432.3684564325313,1742.0,0.0,1575.7583597900248,31,0,0,0,0,0,0,0,0,2,40.0,1,,5,130250,2,2,2,0,1,,600.0,,43,3.0,1.0,7.0,4.0,2.5,4,4,1920.990770897,840.0,72418.30792768105,1,1,0,1,170.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024054690724610826,28967.323171072418,8,4,8,8_1,8_1,8_0_0 +30228,1,70.0,38.0,2,111,330.0,180.0,0.0,78,78,0.0,0.0,562.7161793127802,510.0,0.0,341.730728629162,71,1,1,2,2,1,2,2,2,0,,2,,2,130251,1,1,0,1,1,531.0,0.0,284.0,41,0.0,7.0,3.0,2.0,1.5,2,2,270.670587429505,330.0,17079.04476769486,5,5,2,3,70.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.029861154820828666,11386.029845129908,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30229,2,50.0,0.0,1,112,800.0,0.0,0.0,0,38,1687.4925616585624,0.0,1364.160434697649,2650.0,346.39730634913025,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130252,2,1,1,0,1,,121.0,,22,1.0,2.0,6.0,2.0,1.5,2,2,795.806563517236,800.0,40566.405150937826,0,1,1,2,280.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06532498973325312,27044.270100625217,7,4,7,7_1,7_0,7_1_0 +30230,2,53.0,0.0,7,111,450.0,1500.0,0.0,63,67,0.0,105.94618216081791,767.3402445174275,2030.0,0.0,2847.7560719096837,71,2,2,2,1,1,2,2,2,2,15.0,1,,5,130253,1,3,3,0,1,,600.0,585.0,43,3.0,2.0,4.0,3.0,2.0,3,3,241.754243733717,450.0,24077.472622478388,1,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.0843111746747381,12038.736311239194,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +30231,2,40.0,0.0,8,112,534.0,664.0,0.0,84,64,0.0,0.0,910.5770901606807,1198.0,0.0,1260.6066878320198,43,0,0,0,0,0,0,0,0,2,50.0,1,2001.0,6,130254,2,1,2,0,1,,688.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,1075.15204381131,534.0,48739.44271446685,3,1,1,2,100.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024579681942986382,23209.258435460404,6,3,6,6_1,6_1,6_0_0 +30232,2,60.0,0.0,2,111,640.0,1900.0,0.0,0,37,0.0,185.40581878143135,1091.3283477581192,2680.0,0.0,3607.1576910855993,12,0,0,0,0,0,0,0,0,2,10.0,1,,2,130255,2,3,1,0,1,,600.0,,32,1.0,0.0,6.0,2.0,1.5,2,2,714.43489825217,640.0,89093.34438900229,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0300808103947529,59395.56292600153,10,5,10,10_1,10_4,10_0_1 +30233,2,57.0,0.0,6,111,2464.0,0.0,0.0,77,62,0.0,397.2981831030672,4201.614138868758,2764.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,130256,2,1,2,0,1,,340.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,360.333538387123,2464.0,46274.56044361475,5,1,0,1,170.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05973044310961994,30849.706962409833,8,4,8,8_1,8_3,8_0_0 +30234,2,81.0,0.0,7,111,420.0,0.0,0.0,77,78,0.0,0.0,716.1842282162656,420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,130257,2,1,0,0,1,,350.0,487.0,41,0.0,1.0,2.0,2.0,1.5,2,2,1926.8399907218,420.0,24288.271008222728,5,5,2,3,55.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017292297169189612,16192.180672148485,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +30235,2,42.0,0.0,9,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,1423.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,2008.0,6,130258,2,1,0,0,1,,764.0,850.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2014.06894046931,0.0,61274.19417159892,0,1,2,3,87.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023223479626918894,38296.37135724932,9,5,9,9_0,9_3,9_0_0 +30236,2,51.0,0.0,2,111,360.0,180.0,0.0,56,64,0.0,0.0,613.872195613942,540.0,0.0,341.730728629162,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,130259,2,1,0,1,1,51.0,0.0,427.0,43,2.0,1.0,3.0,4.0,2.1,2,2,208.929442064284,360.0,25610.819527120824,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021084838750597645,12195.628346248011,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +30237,2,60.0,0.0,1,112,400.0,1300.0,0.0,43,21,0.0,0.0,682.0802173488245,1700.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,2,5.0,1,,1,130260,2,1,1,0,1,,449.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,3148.60977967626,400.0,70424.45630881499,4,1,1,2,160.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02413934148877784,46949.637539209994,10,5,10,10_1,10_1,10_1_0 +30238,1,31.0,100.0,7,111,1200.0,0.0,0.0,52,55,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,130261,2,3,0,0,1,,0.0,690.0,43,2.0,0.0,2.0,3.0,1.8,2,2,931.255437811884,1200.0,4308.286531407348,4,1,2,3,53.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.2785330063940773,2393.4925174485265,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +30239,2,67.0,0.0,1,111,730.0,3620.0,0.0,72,21,0.0,0.0,1244.7963966616046,4350.0,0.0,6872.584653542036,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,130262,2,1,4,0,1,,450.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,1270.55870578259,730.0,199821.9670514292,5,5,0,1,277.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021769378333065945,133214.6447009528,10,5,10,10_1,10_2,10_1_0 +30240,2,63.0,0.0,8,222,770.0,0.0,0.0,77,78,0.0,450.2712741834761,1313.0044183964872,1242.0,182.89777775234077,0.0,50,2,2,2,1,2,2,2,2,0,,1,2001.0,6,130263,2,1,1,0,1,,160.0,,41,0.0,3.0,2.0,2.0,1.5,2,2,1102.02450723601,770.0,15022.930924881795,6,5,0,1,66.0,1,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0.08267361450374054,10015.28728325453,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +30241,1,54.0,271.0,2,111,0.0,0.0,350.0,0,85,0.0,0.0,220.61140164516033,350.0,0.0,418.8562516476383,71,0,0,0,0,0,0,0,0,0,,2,,2,130264,2,2,0,1,1,815.0,300.0,370.0,11,0.0,3.0,4.0,1.0,1.0,1,1,198.031269023016,0.0,11314.76001495971,0,6,2,3,78.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03093304670512239,11314.76001495971,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30242,1,40.0,97.0,2,111,0.0,0.0,0.0,85,68,0.0,0.0,0.0,243.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,130265,2,1,0,1,1,512.0,0.0,451.0,42,1.0,0.0,4.0,4.0,2.1,2,2,293.969710800118,0.0,27504.215584558286,6,1,2,3,73.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.00883500928259258,13097.245516456325,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +30243,2,46.0,0.0,7,111,0.0,0.0,0.0,85,65,0.0,0.0,0.0,1564.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,130266,2,2,5,0,1,,0.0,554.0,42,1.0,0.0,4.0,6.0,2.8999999999999995,3,2,588.833068243675,0.0,42029.02890135144,6,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037212375372054095,14492.768586672913,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +30244,2,38.0,0.0,2,112,270.0,1470.0,0.0,37,43,0.0,0.0,460.40414671045653,1770.0,41.567676761895626,2790.8009504714896,33,0,0,0,0,0,0,0,0,2,2.0,1,,2,130267,2,2,3,0,1,,165.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1992.02030619049,270.0,47249.40303303293,4,1,1,2,110.0,7,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037460790748246285,31499.602022021954,8,4,8,8_1,8_0,8_0_1 +30245,2,59.0,0.0,2,111,1092.0,1241.0,0.0,34,34,0.0,915.1101484140647,1862.0789933622907,3024.0,0.0,2356.0435234932784,20,2,2,2,2,1,2,2,2,2,15.0,1,,2,130268,1,3,1,0,2,,511.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,358.926643456678,1092.0,91270.3957687589,1,1,1,2,107.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03313232044771181,35103.998372599584,9,5,9,9_1,9_2,9_0_1 +30246,1,92.0,270.0,5,111,350.0,260.0,0.0,0,77,0.0,0.0,596.8201901802214,610.0,0.0,493.61105246434516,41,2,1,2,1,2,2,2,2,0,,2,,3,130269,2,2,0,1,1,828.0,74.0,313.0,11,0.0,7.0,4.0,1.0,1.0,1,1,383.86404165403,350.0,10953.156967979885,0,5,2,3,87.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.05569170621613977,10953.156967979885,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +30247,2,40.0,0.0,2,111,330.0,1000.0,0.0,85,22,0.0,0.0,562.7161793127802,1330.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,0,,2,,2,130270,1,2,0,0,2,,400.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,324.711674020633,330.0,11819.343989242865,6,4,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11252739586989535,4924.726662184527,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +30248,1,74.0,29.0,2,111,300.0,1200.0,0.0,86,78,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,130271,2,2,2,0,2,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,242.779865461185,300.0,15356.693093980717,5,5,1,2,85.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.0976772792697112,10237.795395987145,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +30249,2,36.0,0.0,1,111,1600.0,0.0,0.0,55,67,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,130272,2,1,2,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,358.095373762567,1600.0,52039.91828490264,1,1,1,2,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030745628600730872,21683.299285376102,6,3,6,6_1,6_3,6_1_0 +30250,2,54.0,0.0,9,112,2199.0,0.0,0.0,42,43,0.0,0.0,3749.7359948751623,2199.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,130273,2,1,1,0,1,,202.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,727.500221062137,2199.0,14167.04129957377,1,1,1,2,162.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15521942468440175,5666.816519829508,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +30251,2,58.0,0.0,1,111,1776.0,732.0,0.0,75,54,0.0,0.0,3028.4361650287806,2508.0,0.0,1389.7049630919255,50,0,0,0,0,0,0,0,0,3,20.0,1,,1,130274,2,2,2,0,1,,360.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,438.085523036068,1776.0,30019.44117332258,6,1,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08354585901581632,20012.960782215054,5,3,5,5_1,5_3,5_1_0 +30252,2,23.0,0.0,9,120,1068.0,0.0,0.0,63,21,0.0,39.72981831030672,1821.1541803213613,1128.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,130275,2,1,1,0,1,,320.0,575.0,43,2.0,0.0,4.0,2.0,1.5,2,2,625.885426650435,1068.0,23435.769661904822,4,1,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0481315534447149,15623.846441269881,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +30253,1,50.0,163.0,8,111,420.0,,,55,63,0.0,0.0,,900.0,665.08282819033,,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,130276,1,2,0,0,2,,500.0,520.0,43,2.0,2.0,4.0,3.0,2.0,3,2,164.34351406689976,420.0,24382.0,4,4,3,4,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03691247641702895,12191.0,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +30254,2,28.0,0.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,404.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,15.0,2,,2,130277,2,1,0,1,1,885.0,0.0,340.0,32,1.0,0.0,4.0,4.0,1.9,1,1,240.868261538323,0.0,35117.108107406886,0,1,2,3,82.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011504364162457571,18482.68847758257,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +30255,2,59.0,0.0,1,300,1200.0,0.0,0.0,0,63,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130278,2,1,1,0,2,,204.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1719.05544903822,1200.0,10370.289284252707,0,4,0,1,64.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12150095001817461,10370.289284252707,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +30256,2,44.0,0.0,5,111,800.0,700.0,0.0,34,33,0.0,39.72981831030672,1364.160434697649,1530.0,0.0,1328.9528335578523,10,2,2,1,2,1,2,2,2,2,10.0,1,,3,130279,2,1,3,0,1,,560.0,2100.0,43,2.0,1.0,8.0,8.0,3.6999999999999993,5,2,856.955795828138,800.0,132820.5605203749,1,1,2,3,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.01151930088237578,35897.448789290516,9,5,9,9_1,9_4,9_0_0 +30257,2,91.0,0.0,2,120,220.0,0.0,0.0,0,77,1054.6828510366015,264.8654554020448,375.14411954185346,1480.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130280,2,2,2,0,1,,300.0,,21,0.0,3.0,6.0,2.0,1.5,2,2,1881.92592079785,220.0,32296.922286989517,0,5,0,1,120.0,0,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04582479986324278,21531.281524659677,6,3,6,6_1,6_1,6_0_1 +30258,2,63.0,0.0,9,112,700.0,0.0,0.0,0,75,0.0,397.2981831030672,1193.6403803604428,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,130281,2,1,1,0,1,,600.0,450.0,11,0.0,2.0,5.0,1.0,1.0,1,1,957.40663928971,700.0,23438.132601331603,0,5,2,3,138.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04266551508216941,23438.132601331603,6,3,6,6_1,6_0,6_0_0 +30259,0,46.0,0.0,6,111,1736.0,,,46,64,0.0,0.0,,1836.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,0,,2,,4,130282,2,1,0,0,2,,665.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,168.4282101536857,1736.0,56667.5556698135,1,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032399491707351465,24638.06768252761,7,4,7,7_0,7_2,7_0_0 +30260,2,65.0,0.0,5,111,540.0,0.0,0.0,0,77,0.0,0.0,920.8082934209131,720.0,249.40606057137379,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,130283,1,2,0,1,1,811.0,0.0,465.0,31,1.0,0.0,3.0,2.0,1.5,2,2,268.670118633132,540.0,36883.7007198143,0,5,2,3,72.0,9,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,1,0,0,0.019520817758213963,24589.13381320953,7,4,7,7_0,7_3,7_0_0 +30261,2,62.0,0.0,5,111,0.0,0.0,1062.0,0,78,0.0,0.0,669.3980244204579,1062.0,0.0,1270.929540713691,70,0,0,0,0,0,0,0,0,0,,1,,3,130284,2,1,2,0,1,,330.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,358.075524378254,0.0,18897.658440183186,0,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05619743860656344,18897.658440183186,5,3,5,5_1,5_2,5_0_0 +30262,2,51.0,0.0,1,120,500.0,0.0,0.0,38,46,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,130285,2,1,0,0,1,,0.0,350.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1504.63368080654,500.0,62454.58476910583,4,4,3,4,30.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.00800581737671456,41636.38984607055,9,5,9,9_0,9_1,9_1_0 +30263,1,53.0,270.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1143.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130286,2,2,5,0,1,,52.0,276.0,11,0.0,5.0,2.0,1.0,1.0,1,1,476.096709057356,0.0,6098.4906086407045,0,6,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.18742342545883886,6098.4906086407045,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +30264,2,49.0,0.0,7,112,300.0,0.0,0.0,35,47,0.0,0.0,511.56016301161833,2009.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,5,130287,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,224.748008086378,300.0,70956.3053687208,1,1,0,1,98.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028313199081608526,47304.2035791472,10,5,10,10_1,10_0,10_0_0 +30266,2,34.0,0.0,2,111,600.0,0.0,0.0,0,56,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,130289,2,1,0,0,1,,0.0,194.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1358.60386126701,600.0,16413.0,0,1,2,3,36.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03655638822884299,16413.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +30267,2,59.0,0.0,6,111,528.0,800.0,0.0,75,54,0.0,0.0,900.3458869004482,1328.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,130290,2,1,1,0,1,,167.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,1136.63525301575,528.0,45487.98844801188,5,1,0,1,136.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02919452025269854,30325.32563200792,8,4,8,8_1,8_3,8_0_0 +30268,2,44.0,0.0,1,111,1203.0,2223.0,0.0,54,85,0.0,0.0,2051.3562536765894,3426.0,0.0,4220.3744985701505,44,2,2,2,2,1,2,2,2,0,,1,,1,130291,1,2,1,0,1,,520.0,,42,1.0,2.0,7.0,3.0,1.8,2,2,813.156153627228,1203.0,29550.94890111932,1,7,0,1,210.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.11593536341129916,16417.193833955178,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +30269,1,24.0,200.0,7,111,388.0,0.0,0.0,0,21,0.0,0.0,661.6178108283598,388.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,5,130292,2,2,0,0,2,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2728.11251102061,388.0,15893.54211752941,0,1,2,3,30.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.0244124309817674,15893.54211752941,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +30270,0,78.0,0.0,2,111,600.0,,,90,71,0.0,132.4327277010224,,1330.0,872.9212119998082,,71,0,0,0,0,0,0,0,0,0,,1,,2,130293,2,1,0,0,2,,500.0,,41,0.0,5.0,3.0,3.0,2.0,3,3,103.18612007074564,600.0,31699.11764434632,5,5,0,1,49.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041957003817019854,15849.55882217316,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +30271,1,25.0,250.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,329.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,130294,2,3,0,0,1,,424.0,349.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3135.03682062591,0.0,14211.764620132988,0,1,2,3,30.0,7,6,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023149834576764988,14211.764620132988,3,2,3_1,3_0_1,3_2_1,3_1_0_1 +30272,2,51.0,0.0,1,111,500.0,500.0,0.0,0,11,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,1,,1,130295,1,1,2,0,1,,200.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,374.313577197741,500.0,12087.66724231512,0,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08272894843591613,12087.66724231512,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +30273,2,66.0,0.0,1,120,450.0,0.0,0.0,0,75,0.0,0.0,767.3402445174275,2450.0,2771.178450793042,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,130296,2,1,3,0,1,,320.0,430.0,11,0.0,0.0,5.0,1.0,1.0,1,1,1206.23228887818,450.0,22262.40199773566,0,5,3,4,72.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11005101786631978,22262.40199773566,6,3,6,6_1,6_0,6_1_0 +30274,2,58.0,0.0,1,300,658.0,0.0,0.0,11,21,1265.6194212439218,13.243272770102239,1122.0219575388162,1928.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130297,1,1,1,0,2,,263.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,994.796980087443,658.0,26774.63959829189,1,1,0,1,149.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07200843891556988,17849.759732194594,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +30275,1,41.0,344.0,2,111,480.0,600.0,0.0,0,56,0.0,0.0,818.4962608185893,1275.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,2,,2,130298,2,1,0,1,1,408.0,0.0,427.0,32,1.0,0.0,4.0,3.0,1.6,1,1,380.438063153862,480.0,8798.377756960657,0,1,2,3,78.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14491307775360177,5498.98609810041,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30276,1,42.0,142.0,2,112,644.0,0.0,0.0,0,46,0.0,0.0,1098.1491499316073,674.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130299,2,1,1,0,1,,135.0,335.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1391.95373592882,644.0,8926.637215684914,0,1,2,3,67.0,9,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07550435664795704,8926.637215684914,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +30277,0,66.0,0.0,5,112,1161.0,0.0,0.0,71,74,0.0,0.0,1979.737830854963,1261.0,138.5589225396521,0.0,31,2,2,1,2,1,2,2,1,0,,1,,3,130300,1,2,3,0,1,,265.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1175.79818396297,1161.0,42919.87464490207,5,5,0,1,113.0,8,1,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.029380328121479705,28613.249763268046,8,4,8,8_1,8_1,8_0_0 +30278,2,39.0,0.0,2,111,570.0,620.0,0.0,0,52,0.0,0.0,971.9643097220749,1190.0,0.0,1177.072509722669,50,2,2,2,2,1,1,2,2,3,20.0,2,,2,130301,1,3,0,0,1,,216.0,200.0,32,1.0,0.0,2.0,3.0,1.6,1,1,1440.92060194874,570.0,23909.57868966424,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04977084771947151,14943.486681040149,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +30279,2,44.0,0.0,2,300,600.0,0.0,0.0,43,11,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,130302,2,2,1,0,1,,0.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,1078.6362721614,600.0,30340.526147488683,1,1,0,1,150.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01977553049289037,11669.433133649494,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +30281,1,40.0,210.0,2,111,840.0,360.0,0.0,0,56,1265.6194212439218,0.0,1432.3684564325313,2400.0,0.0,683.461457258324,10,2,2,2,2,1,1,2,2,0,,2,,2,130304,1,2,0,1,1,1100.0,0.0,329.0,32,1.0,0.0,5.0,5.0,2.2,1,1,352.970025329415,840.0,22609.115808345687,0,1,2,3,150.0,7,5,4,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.10615187344540425,10276.870821975312,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30282,2,62.0,0.0,7,211,1200.0,,,0,81,0.0,0.0,,1500.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,130305,2,3,0,0,2,,1200.0,,32,1.0,2.0,3.0,2.0,1.3,1,1,7.879010250772417,1200.0,20028.527487054664,0,4,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.074893174296988,15406.559605426664,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +30283,2,50.0,0.0,7,120,1419.0,0.0,0.0,56,67,0.0,0.0,2419.6795710449546,1499.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,130306,2,1,3,0,1,,560.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,1715.46378362881,1419.0,40419.17171129112,1,1,0,1,99.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03708636116314213,16167.668684516448,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +30284,2,62.0,0.0,2,111,300.0,150.0,0.0,75,74,0.0,0.0,511.56016301161833,450.0,0.0,284.77560719096834,31,0,0,0,0,0,0,0,0,0,,2,,2,130307,2,2,0,1,1,720.0,0.0,291.0,41,0.0,2.0,3.0,2.0,1.5,2,2,983.332621653909,300.0,27217.663243638686,7,5,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016533381134590016,18145.108829092456,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +30285,2,65.0,0.0,5,112,600.0,,,52,74,0.0,0.0,,732.0,182.89777775234077,,41,0,0,0,0,0,0,0,0,0,,1,,3,130308,2,1,0,0,2,,900.0,,42,2.0,3.0,5.0,3.0,2.0,3,3,102.78416314416867,600.0,81801.38923316746,1,5,0,1,118.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008948503281692445,40900.69461658373,9,5,9,9_1,9_2,9_0_0 +30286,1,30.0,259.0,2,111,240.0,0.0,0.0,0,55,0.0,0.0,409.2481304092947,268.0,38.79649831110259,0.0,70,1,2,2,2,1,2,2,2,1,15.0,2,,2,130309,1,1,0,1,1,804.0,0.0,128.0,32,1.0,0.0,4.0,3.0,1.6,1,1,349.168487056058,240.0,16921.0,0,1,2,3,85.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.01583830742863897,10575.625,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30287,0,57.0,0.0,2,111,500.0,,,0,22,0.0,0.0,,608.0,149.64363634282427,,50,0,0,0,0,0,0,0,0,1,1.0,1,,2,130310,2,2,0,0,2,,490.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,78.77945560155895,500.0,8538.693414570018,0,1,5,0,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07120527350970793,8538.693414570018,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30289,2,62.0,0.0,8,221,1100.0,850.0,0.0,22,75,0.0,0.0,1875.7205977092674,1950.0,0.0,1613.7284407488207,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,130312,2,1,2,0,1,,343.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1851.26214693282,1100.0,23850.82426152761,1,5,1,2,126.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08175818070763419,15900.549507685073,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +30290,2,83.0,0.0,1,400,304.0,0.0,0.0,0,72,2531.2388424878436,0.0,518.3809651851066,2704.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130313,2,2,2,0,1,,190.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1561.3714310199,304.0,12260.065658452393,0,5,0,1,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.22055346809140416,12260.065658452393,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +30291,2,67.0,0.0,1,212,800.0,0.0,0.0,85,35,3374.985123317125,0.0,1364.160434697649,4072.0,99.7624242285495,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130314,2,3,4,0,2,,900.0,,41,0.0,0.0,10.0,2.0,1.5,2,2,910.758806749356,800.0,23939.829623201393,6,5,0,1,210.0,2,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17009310693061921,15959.886415467596,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30292,2,51.0,0.0,7,111,2500.0,0.0,0.0,85,22,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,130315,2,2,0,0,1,,0.0,,42,1.0,0.0,5.0,4.0,2.5,4,4,696.97656186923,2500.0,179336.66824594507,6,1,0,1,117.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013940261210671438,71734.66729837803,10,5,10,10_0,10_4,10_0_0 +30293,1,47.0,277.0,1,211,0.0,0.0,0.0,0,52,0.0,0.0,0.0,553.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,3.0,2,,1,130316,2,1,0,0,1,,150.0,485.0,32,1.0,2.0,4.0,2.0,1.3,1,1,2868.42606456979,0.0,17676.652653710524,0,1,2,3,106.0,2,3,7,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.03128420356689643,13597.425118238863,3,2,3_1,3_0_1,3_1_1,3_1_0_1 +30294,2,42.0,0.0,2,111,450.0,1200.0,0.0,37,33,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,12,0,0,0,0,0,0,0,0,4,60.0,1,,2,130317,2,1,1,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,589.990163057427,450.0,76374.50061888943,4,1,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021604069246011035,33206.30461690845,8,4,8,8_1,8_4,8_0_1 +30295,2,53.0,0.0,2,111,1200.0,90.0,0.0,0,52,0.0,0.0,2046.2406520464733,1290.0,0.0,170.865364314581,71,0,0,0,0,0,0,0,0,0,,2,,2,130318,2,1,0,1,1,408.0,0.0,447.0,22,1.0,4.0,5.0,2.0,1.5,2,2,1011.63976131837,1200.0,40940.738293436734,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031508957917517615,27293.825528957823,7,4,7,7_0,7_4,7_0_1 +30296,2,52.0,0.0,2,111,0.0,1600.0,0.0,62,56,0.0,0.0,0.0,1774.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,3,15.0,1,,2,130319,2,1,2,0,1,,800.0,,43,3.0,1.0,5.0,5.0,2.5999999999999996,3,3,528.390070850551,0.0,29731.781101986664,4,1,1,2,100.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05966679204030135,11435.300423841027,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +30297,2,65.0,0.0,1,111,1060.0,750.0,0.0,0,75,0.0,0.0,1807.5125759743848,1810.0,0.0,1423.8780359548418,31,0,0,0,0,0,0,0,0,0,,1,,1,130320,2,1,2,0,1,,220.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,755.807990854506,1060.0,33532.10741339445,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05397811648655858,33532.10741339445,8,4,8,8_1,8_4,8_1_0 +30298,2,52.0,0.0,5,400,900.0,0.0,0.0,0,48,2636.7071275915036,463.51454695357836,1534.680489034855,3870.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,130321,2,1,2,0,1,,700.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,926.155049620747,900.0,46562.86098759825,0,1,1,2,90.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08311344960162032,31041.907325065502,8,4,8,8_1,8_0,8_0_0 +30299,0,87.0,0.0,1,111,800.0,0.0,0.0,0,31,0.0,0.0,1364.160434697649,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,130322,2,1,0,1,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,918.884452134292,800.0,165159.07347458095,0,1,5,0,157.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004843815015244229,165159.07347458095,10,5,10,10_0,10_4,10_1_0 +30300,1,37.0,110.0,9,211,600.0,,,81,33,0.0,0.0,,600.0,0.0,,42,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,130323,2,1,0,0,1,,600.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,252.3050309289285,600.0,34219.20510988312,4,1,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017534013372704244,14258.002129117967,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +30301,2,34.0,0.0,1,111,550.0,0.0,0.0,46,54,1792.9608467622227,0.0,937.8602988546337,2253.0,4.156767676189563,0.0,31,1,2,2,2,1,2,2,2,2,30.0,1,,1,130324,2,2,5,0,1,,340.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,202.689531555519,550.0,50409.61805164728,1,1,1,2,90.0,9,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.044693851829856836,28005.343362026266,7,4,7,7_1,7_3,7_1_0 +30302,2,49.0,0.0,1,111,2200.0,0.0,0.0,21,21,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130325,2,2,2,0,1,,550.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,964.885486453812,2200.0,126796.17115392664,1,1,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017350681648969257,63398.08557696332,10,5,10,10_1,10_4,10_1_0 +30303,0,73.0,0.0,2,111,450.0,240.0,0.0,77,78,0.0,0.0,767.3402445174275,690.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,0,,2,,2,130326,2,1,0,1,1,,400.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,429.307436819631,450.0,61973.07005136378,5,5,5,0,64.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011133868298409655,30986.53502568189,8,4,8,8_0,8_2,8_0_1 +30304,2,30.0,0.0,9,400,1100.0,0.0,0.0,46,38,0.0,19.86490915515336,1875.7205977092674,1205.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,130327,2,1,1,0,1,,133.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1129.04640490838,1100.0,56930.92823869531,1,1,1,2,123.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021165999523980624,27109.96582795015,7,4,7,7_1,7_0,7_0_0 +30305,1,29.0,195.0,2,111,0.0,0.0,537.0,0,56,0.0,0.0,338.4809219527174,537.0,0.0,642.6451632422336,71,0,0,0,0,0,0,0,0,0,,2,,2,130328,2,2,0,1,1,,130.0,254.0,32,1.0,1.0,1.0,2.0,1.3,1,1,275.926499979562,0.0,8932.533668497064,0,4,2,3,35.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06011732168375386,6871.179744997741,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30306,0,38.0,0.0,6,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,387.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,130329,2,1,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,549.143723883404,0.0,5935.0,0,4,5,0,32.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06520640269587194,5935.0,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +30307,2,39.0,0.0,8,400,900.0,,,0,81,0.0,0.0,,1240.0,471.10033663481715,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,130330,2,2,0,0,2,,1200.0,472.0,32,4.0,0.0,5.0,6.0,3.3,5,4,49.51994767118278,900.0,16814.20933157552,0,4,2,3,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07374714894689668,5095.214948962279,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +30308,2,63.0,0.0,2,111,600.0,156.0,0.0,0,77,0.0,0.0,1023.1203260232367,756.0,0.0,296.1666314786071,70,0,0,0,0,0,0,0,0,0,,2,,2,130331,2,2,0,1,1,,295.0,488.0,11,0.0,0.0,3.0,1.0,1.0,1,1,371.23403355316,600.0,16523.910615036955,0,5,2,3,63.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04575188147725945,16523.910615036955,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +30309,1,40.0,120.0,2,111,640.0,,,0,63,0.0,0.0,,690.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,2,130332,2,2,0,0,2,,450.0,430.0,12,1.0,0.0,3.0,1.0,1.0,1,1,111.28557025761023,640.0,24596.478891920477,0,4,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.02805279580999918,24596.478891920477,7,4,7,7_1,7_2,7_0_1 +30310,1,42.0,104.0,5,111,550.0,1000.0,0.0,0,52,0.0,0.0,937.8602988546337,1550.0,0.0,1898.504047939789,43,2,2,2,2,2,2,2,1,2,5.0,1,,3,130333,1,2,3,0,1,,380.0,533.0,32,1.0,0.0,4.0,3.0,2.0,3,2,1413.53968717517,550.0,22723.370895322507,0,1,2,3,77.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.0682117106278039,11361.685447661253,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +30311,1,29.0,153.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,472.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,3.0,2,,2,130334,2,2,0,1,1,504.0,0.0,490.0,32,1.0,0.0,4.0,2.0,1.3,1,1,335.511850950723,0.0,17334.78716780199,0,1,2,3,80.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02722848543976952,13334.451667539992,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +30312,2,63.0,0.0,5,112,1177.0,0.0,0.0,0,77,0.0,0.0,2007.021039548916,1247.0,96.99124577775646,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,130335,1,1,2,0,1,,144.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,296.350761885275,1177.0,10275.08791328243,0,5,0,1,120.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.1213614920401824,10275.08791328243,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +30313,2,33.0,0.0,7,400,1600.0,0.0,0.0,69,63,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,5,130336,2,1,1,0,1,,390.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1198.65988171427,1600.0,59160.30196413923,1,1,1,2,82.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02704516283520426,28171.572363875825,8,4,8,8_1,8_0,8_0_0 +30314,2,73.0,0.0,2,111,450.0,1757.0,0.0,78,74,0.0,0.0,767.3402445174275,2207.0,0.0,3335.671612230209,44,2,2,1,2,1,2,2,2,0,,1,,2,130337,2,2,1,0,1,,240.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,187.212248992363,450.0,48782.985255732856,5,5,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04524118375352273,32521.99017048857,8,4,8,8_1,8_2,8_0_1 +30315,2,37.0,0.0,1,111,600.0,950.0,0.0,37,47,0.0,0.0,1023.1203260232367,1550.0,0.0,1803.5788455427996,12,2,2,1,1,1,2,2,2,0,,2,,1,130338,2,3,0,0,2,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,601.388423252824,600.0,155291.71902734286,1,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.00998121477248304,64704.882928059524,10,5,10,10_0,10_4,10_1_0 +30316,2,51.0,0.0,2,111,700.0,0.0,0.0,0,52,2109.365702073203,842.2721481785024,1193.6403803604428,3336.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130339,2,2,2,0,2,,320.0,,32,1.0,1.0,5.0,3.0,2.0,3,3,1367.98171321302,700.0,10294.055834232218,0,4,0,1,235.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.32407051736657067,5147.027917116109,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30317,1,50.0,250.0,2,111,280.0,720.0,0.0,0,85,0.0,0.0,477.4561521441771,1000.0,0.0,1366.922914516648,41,2,2,2,2,1,2,2,2,0,,8,,2,130340,2,2,0,0,1,,300.0,350.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1740.24755028435,280.0,6100.258610049672,0,7,2,3,52.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.16392747650937006,6100.258610049672,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30319,1,52.0,36.0,5,111,300.0,,,0,54,0.0,0.0,,420.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,130342,1,1,0,0,2,,300.0,259.0,32,1.0,1.0,1.0,2.0,1.5,2,1,182.86822582045144,300.0,27285.999451152507,0,1,2,3,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01539250928857803,18190.66630076834,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +30320,2,55.0,0.0,1,112,1000.0,2000.0,0.0,42,37,0.0,331.081819252556,1705.2005433720612,3250.0,0.0,3797.008095879578,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,130343,2,1,4,0,1,,1032.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,573.880035890381,1000.0,98288.52145119311,1,1,0,1,200.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0330659160603392,39315.40858047725,9,5,9,9_1,9_2,9_1_0 +30321,2,33.0,0.0,2,111,245.0,0.0,0.0,0,46,0.0,0.0,417.774133126155,277.0,0.0,0.0,41,2,2,2,1,2,2,2,2,2,10.0,2,,2,130344,1,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,281.682291332778,245.0,21396.23313685365,0,1,1,2,52.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012946204045743226,21396.23313685365,6,3,6,6_0,6_3,6_0_1 +30322,2,73.0,0.0,2,111,240.0,348.0,0.0,0,75,0.0,0.0,409.2481304092947,588.0,0.0,660.6794086830465,44,2,1,2,1,1,2,2,2,0,,2,,2,130345,1,2,0,1,1,,0.0,425.0,11,0.0,3.0,5.0,1.0,1.0,1,1,80.0320854699195,240.0,20486.562720589813,0,5,2,3,87.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.028701740161078196,20486.562720589813,5,3,5,5_0,5_3,5_0_1 +30323,2,37.0,0.0,2,111,869.0,0.0,0.0,46,52,0.0,0.0,1481.8192721903213,949.0,110.84713803172167,0.0,41,0,0,0,0,0,0,0,0,1,10.0,1,,2,130346,2,1,2,0,1,,220.0,667.0,43,2.0,0.0,5.0,2.0,1.5,2,2,1382.3424053644,869.0,36846.56423147822,1,1,2,3,60.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02575545426808788,24564.376154318816,7,4,7,7_1,7_3,7_0_1 +30324,2,47.0,0.0,9,111,0.0,,,0,33,0.0,0.0,,297.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,2,2012.0,6,130347,2,1,0,0,1,,287.0,825.0,12,1.0,0.0,3.0,1.0,1.0,1,1,257.39097153724634,0.0,57903.72982708388,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005129203263536251,57903.72982708388,10,5,10,10_0,10_2,10_0_0 +30325,2,46.0,0.0,7,111,410.0,900.0,0.0,34,34,0.0,0.0,699.1322227825451,1310.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,2,5.0,1,,5,130348,2,2,3,0,1,,120.0,,42,1.0,0.0,7.0,5.0,2.5999999999999996,4,2,1067.62666081348,410.0,69751.63645215268,5,1,0,1,200.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018780921375208405,26827.55248159719,7,4,7,7_1,7_2,7_0_0 +30326,2,71.0,0.0,2,112,500.0,0.0,0.0,71,78,1054.6828510366015,0.0,852.6002716860306,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130349,2,1,1,0,1,,120.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,488.655014247407,500.0,23319.034667707634,7,5,0,1,40.0,9,1,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06432513272417793,15546.023111805089,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +30327,2,50.0,0.0,9,120,1450.0,0.0,0.0,52,46,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,2012.0,6,130350,2,1,1,0,1,,600.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,481.133881098127,1450.0,43851.52219262054,1,1,1,2,95.0,0,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033066126955200885,21925.76109631027,6,3,6,6_1,6_1,6_0_0 +30328,2,75.0,0.0,5,111,458.0,0.0,0.0,0,74,1531.3994997051454,0.0,780.981848864404,1940.0,41.567676761895626,0.0,12,0,0,0,0,0,0,0,0,0,,1,,3,130351,2,1,1,0,1,,148.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,1016.20399804739,458.0,53406.006790123996,0,5,0,1,144.0,8,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03632550187891507,53406.006790123996,10,5,10,10_1,10_3,10_0_0 +30329,2,77.0,0.0,5,111,352.0,1000.0,0.0,0,72,0.0,0.0,600.2305912669656,1352.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,3,130352,2,1,2,0,1,,185.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1144.53162512473,352.0,19731.76721761447,0,5,0,1,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06851895144967426,19731.76721761447,5,3,5,5_1,5_2,5_0_0 +30330,2,39.0,0.0,9,111,1900.0,0.0,0.0,43,65,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2009.0,6,130353,2,1,1,0,1,,340.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1439.43235997321,1900.0,42662.4463666728,1,1,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04453565516777887,20315.45065079657,5,3,5,5_1,5_3,5_0_0 +30331,2,62.0,0.0,7,111,1854.0,,,0,56,0.0,0.0,,2430.0,798.099393828396,,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,130354,1,3,0,0,2,,576.0,413.0,22,2.0,3.0,4.0,3.0,2.0,3,3,73.98694417366268,1854.0,44517.0,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05458588853696341,22258.5,6,3,6,6_1,6_2,6_0_0 +30332,2,26.0,0.0,8,111,0.0,0.0,1700.0,63,43,0.0,0.0,1071.5410937050644,1700.0,0.0,2034.4446508599572,20,0,0,0,0,0,0,0,0,2,20.0,1,,6,130355,2,2,1,0,1,,190.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,279.294279750586,0.0,40043.13273818635,1,1,1,2,74.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04245422083020063,22246.184854547973,6,3,6,6_1,6_3,6_0_0 +30333,2,30.0,0.0,9,112,860.0,0.0,0.0,55,47,0.0,384.05491033296494,1466.4724672999725,1270.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,130356,2,1,1,0,1,,296.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,753.678386531042,860.0,64229.96998467705,1,1,1,2,85.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019772701128507084,30585.699992703358,8,4,8,8_1,8_0,8_0_0 +30334,2,48.0,0.0,2,111,600.0,480.0,0.0,85,62,0.0,0.0,1023.1203260232367,1080.0,0.0,911.2819430110987,71,2,1,2,2,1,2,2,2,3,45.0,2,,2,130357,2,2,0,1,1,471.0,0.0,456.0,42,1.0,0.0,3.0,5.0,2.4,2,2,187.903354940141,600.0,40029.172653883754,6,1,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026980322809525146,16678.821939118232,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +30336,2,68.0,0.0,7,111,450.0,800.0,0.0,84,74,0.0,0.0,767.3402445174275,1250.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,5,130359,2,1,0,0,1,,0.0,748.0,41,0.0,2.0,5.0,2.0,1.5,2,2,744.537079002408,450.0,21239.847326638916,3,5,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05885164713176897,14159.898217759277,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +30337,2,42.0,0.0,7,111,800.0,0.0,0.0,0,65,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,130360,1,1,0,0,1,,0.0,450.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2274.44873659801,800.0,25142.38076617363,0,1,2,3,30.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.031818784682328655,25142.38076617363,7,4,7,7_0,7_3,7_0_0 +30338,1,72.0,84.0,2,111,538.0,766.0,0.0,0,78,0.0,0.0,917.3978923341689,1304.0,0.0,1454.2541007218783,71,0,0,0,0,0,0,0,0,0,,2,,2,130361,2,2,0,0,1,,0.0,326.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1830.00578366117,538.0,11660.349041973273,0,5,2,3,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.11183198678753486,11660.349041973273,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30339,2,39.0,0.0,8,112,800.0,0.0,0.0,22,64,1054.6828510366015,0.0,1364.160434697649,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,130362,2,1,2,0,1,,800.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1150.53670741299,800.0,39716.42665011369,1,1,1,2,150.0,9,1,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045321297806001075,16548.511104214038,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +30340,2,80.0,0.0,1,112,500.0,0.0,0.0,0,71,0.0,0.0,852.6002716860306,2300.0,2494.060605713738,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,130363,2,2,3,0,1,,80.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,611.329627085761,500.0,21671.873579645184,0,5,0,1,135.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10612834149052175,21671.873579645184,6,3,6,6_1,6_0,6_1_0 +30341,2,60.0,0.0,1,300,650.0,0.0,0.0,13,13,1687.4925616585624,503.2443652638851,1108.3803531918397,2630.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130364,2,1,1,0,1,,496.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,743.589760136898,650.0,38751.21248338259,1,1,0,1,150.0,0,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06786884413301401,25834.14165558839,7,4,7,7_1,7_0,7_1_0 +30342,2,53.0,0.0,6,111,386.0,951.0,0.0,46,46,0.0,0.0,658.2074097416156,1337.0,0.0,1805.4773495907393,41,0,0,0,0,0,0,0,0,2,10.0,1,,4,130365,1,2,2,0,2,,0.0,517.0,43,3.0,1.0,4.0,3.0,2.0,3,3,227.082606379037,386.0,58896.776790074684,1,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02270073292406915,29448.388395037342,8,4,8,8_1,8_3,8_0_0 +30343,2,42.0,0.0,9,111,916.0,0.0,0.0,68,67,0.0,0.0,1561.963697728808,982.0,91.44888887617039,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,130366,2,1,1,0,1,,401.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1335.63444657162,916.0,26434.6629569222,1,1,1,2,88.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03714819445968585,11493.331720400956,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30344,2,65.0,0.0,6,112,2500.0,0.0,0.0,0,74,0.0,0.0,4263.001358430153,2602.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,130367,2,1,1,0,1,,390.0,,21,1.0,1.0,7.0,2.0,1.5,2,2,817.813585671694,2500.0,92107.86921399613,0,5,0,1,180.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028249486414181606,61405.24614266409,10,5,10,10_1,10_1,10_0_0 +30345,2,75.0,0.0,2,111,352.0,792.0,0.0,78,78,0.0,0.0,600.2305912669656,1144.0,0.0,1503.615205968313,70,0,0,0,0,0,0,0,0,0,,2,,2,130368,2,1,0,0,1,,190.0,235.0,41,0.0,1.0,3.0,3.0,2.0,3,3,1032.00118600145,352.0,37392.163349142786,5,5,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030594645977503363,18696.081674571393,5,3,5,5_0,5_4,5_0_1 +30346,2,77.0,0.0,2,111,964.0,0.0,0.0,78,77,0.0,0.0,1643.813323810667,964.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,130369,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,615.938485859939,964.0,34351.28287538402,5,5,0,1,60.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028062998505677297,22900.855250256016,6,3,6,6_0,6_3,6_0_1 +30347,2,68.0,0.0,1,111,608.0,2480.0,0.0,74,74,0.0,0.0,1036.7619303702131,3088.0,0.0,4708.290038890676,10,0,0,0,0,0,0,0,0,0,,1,,1,130370,2,1,2,0,1,,155.0,,41,2.0,2.0,7.0,4.0,2.5,4,4,1259.625465767,608.0,138929.37312651268,5,5,0,1,240.0,8,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022227121094025144,55571.74925060508,10,5,10,10_1,10_2,10_1_0 +30348,2,33.0,0.0,8,112,1102.0,0.0,0.0,64,34,0.0,0.0,1879.1309987960115,1162.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,2,40.0,1,1999.0,6,130371,1,3,3,0,1,,300.0,660.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1173.66976182433,1102.0,39631.33245954576,1,1,2,3,90.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0293202354774755,26420.88830636384,7,4,7,7_1,7_0,7_0_0 +30349,0,77.0,0.0,1,120,680.0,0.0,0.0,86,86,1160.1511361402618,0.0,1159.5363694930015,1980.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130372,2,1,1,0,1,,200.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1600.85801510347,680.0,19260.483406537307,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10280115811257143,12840.322271024872,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +30350,2,33.0,0.0,2,111,330.0,300.0,0.0,55,38,506.24776849756876,0.0,562.7161793127802,1110.0,0.0,569.5512143819367,43,0,0,0,0,0,0,0,0,2,25.0,2,,2,130373,2,1,0,1,1,,120.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,413.852464424363,330.0,54285.98532105535,1,1,1,2,62.0,9,7,5,1,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020447266332835185,25850.469200502546,7,4,7,7_0,7_3,7_0_1 +30351,2,62.0,0.0,8,211,207.0,,,52,75,0.0,0.0,,383.0,243.8637036697877,,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,130374,2,2,0,0,2,,100.0,,42,1.0,1.0,4.0,3.0,2.0,3,2,101.2545264025056,207.0,21973.870761860482,4,5,0,1,85.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01742979214498539,10986.935380930241,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30352,1,32.0,418.0,7,111,790.0,,,81,52,0.0,0.0,,1040.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,2,,5,130375,2,1,0,0,2,,472.0,469.0,43,2.0,0.0,4.0,5.0,2.4,2,2,119.33756328955812,790.0,16081.371226005616,4,4,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06467110207108384,6700.571344169007,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30353,2,36.0,0.0,1,111,1200.0,0.0,0.0,0,56,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,20.0,2,,1,130376,2,1,0,0,2,,157.0,680.0,12,1.0,1.0,2.0,1.0,1.0,1,1,671.924093432149,1200.0,47612.34296493129,0,1,2,3,60.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.025203548602593575,47612.34296493129,10,5,10,10_0,10_3,10_1_0 +30354,2,79.0,0.0,2,300,220.0,475.0,0.0,0,75,0.0,0.0,375.14411954185346,723.0,38.79649831110259,901.7894227713998,71,0,0,0,0,0,0,0,0,0,,2,,2,130377,2,2,0,0,1,,280.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1622.1510874247,220.0,26800.560845200584,0,5,1,2,78.0,0,0,8,0,1,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02697704739001662,26800.560845200584,7,4,7,7_0,7_0,7_0_1 +30355,2,80.0,0.0,7,111,2210.0,0.0,0.0,0,74,0.0,0.0,3768.493200852255,2210.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,130378,2,1,1,0,1,,227.0,,21,1.0,2.0,5.0,2.0,1.5,2,2,1106.2993591968,2210.0,108131.81597915676,0,5,0,1,120.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020438017987471833,72087.87731943784,10,5,10,10_1,10_2,10_0_0 +30356,1,64.0,138.0,5,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,287.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,130379,2,1,0,1,1,1200.0,0.0,473.0,21,0.0,1.0,3.0,2.0,1.5,2,2,347.622719043502,0.0,14997.114956154872,0,5,2,3,80.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.019137014074978077,9998.076637436581,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +30357,2,60.0,0.0,1,112,550.0,0.0,0.0,77,72,2636.7071275915036,0.0,937.8602988546337,3050.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130380,2,1,2,0,1,,120.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,715.502360433885,550.0,79346.24210866947,6,5,0,1,180.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03843912350408279,52897.494739112975,10,5,10,10_1,10_1,10_1_0 +30358,1,40.0,450.0,7,112,1267.2,0.0,0.0,11,47,0.0,1191.8945493092015,2160.830128561076,2167.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,130381,2,1,2,0,1,,300.0,780.0,43,2.0,0.0,6.0,5.0,2.4,2,2,1942.19002898247,1267.2,18536.786420758483,1,1,2,3,130.0,8,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.11690267939718385,7723.661008649368,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +30359,2,58.0,0.0,6,112,1600.0,0.0,0.0,77,77,0.0,0.0,2728.320869395298,1678.0,108.07595958092864,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130382,2,1,3,0,1,,540.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,205.404679769732,1600.0,25765.28705030095,6,5,0,1,99.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06512638484190302,17176.85803353397,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +30360,2,47.0,0.0,9,111,1994.0,0.0,0.0,55,22,0.0,0.0,3400.16988348389,1994.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2010.0,6,130383,2,1,1,0,1,,524.0,,43,2.0,2.0,5.0,4.0,2.5,4,4,2743.38086770085,1994.0,56621.30933286644,1,1,1,2,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035216423348277494,22648.523733146576,6,3,6,6_1,6_3,6_0_0 +30361,0,64.0,0.0,1,111,0.0,0.0,0.0,78,56,0.0,0.0,0.0,188.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,130384,2,2,0,1,2,1250.0,0.0,,42,1.0,1.0,2.0,2.0,1.5,2,2,753.663846075724,0.0,33564.03756361367,5,1,5,0,50.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0056012331544941524,22376.02504240911,6,3,6,6_0,6_4,6_1_0 +30362,2,54.0,0.0,7,111,564.0,1636.0,0.0,77,47,0.0,0.0,961.7331064618425,2200.0,0.0,3105.952622429495,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,130385,2,1,1,0,1,,750.0,,42,1.0,0.0,4.0,4.0,2.5,4,4,2251.25539222389,564.0,28965.572600550357,6,1,1,2,100.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07595223579174813,11586.229040220143,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30363,2,65.0,0.0,2,111,341.0,51.0,0.0,0,74,0.0,0.0,581.4733852898729,392.0,0.0,96.82370644492924,31,0,0,0,0,0,0,0,0,0,,2,,2,130386,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,189.105543239253,341.0,41621.37424123728,0,5,0,1,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009418237795993229,41621.37424123728,9,5,9,9_0,9_4,9_0_1 +30364,2,62.0,0.0,5,211,0.0,0.0,0.0,86,74,0.0,0.0,0.0,1546.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,130387,2,1,3,0,1,,297.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1051.86384729786,0.0,56243.73134335817,5,5,0,1,103.0,3,4,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027487507728851408,37495.82089557211,9,5,9,9_1,9_2,9_0_0 +30365,2,37.0,0.0,2,111,0.0,0.0,660.0,38,37,0.0,0.0,416.0100716737309,660.0,0.0,789.8432173926894,31,0,0,0,0,0,0,0,0,2,75.0,2,,2,130388,2,1,0,1,1,,800.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,190.537448453092,0.0,91034.88680724816,1,1,1,2,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00724996782164891,43349.946098689594,10,5,10,10_0,10_4,10_0_1 +30366,2,36.0,0.0,2,111,120.0,0.0,0.0,0,42,0.0,0.0,204.62406520464734,406.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,45.0,2,,2,130389,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,992.741495196589,120.0,38836.9684138641,0,1,1,2,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010453957056418061,38836.9684138641,9,5,9,9_0,9_4,9_0_1 +30367,1,32.0,213.0,2,111,0.0,0.0,0.0,67,68,0.0,0.0,0.0,1193.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,130390,2,1,0,1,1,,0.0,286.0,43,2.0,0.0,3.0,4.0,2.1,2,2,351.106884009283,0.0,25785.86349322168,4,1,2,3,60.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04626566026433838,12278.982615819848,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30368,1,71.0,145.0,7,112,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,70,2,2,2,1,2,2,2,2,0,,1,,5,130391,2,1,3,0,1,,200.0,328.0,11,0.0,4.0,3.0,1.0,1.0,1,1,1247.31001317089,1200.0,10398.43407456443,0,5,2,3,70.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.12405714079156055,10398.43407456443,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +30369,2,79.0,0.0,1,111,297.0,1466.0,0.0,0,77,0.0,0.0,506.4445613815022,1763.0,0.0,2783.206934279731,70,0,0,0,0,0,0,0,0,0,,1,,1,130392,2,2,2,0,1,,130.0,,11,0.0,4.0,6.0,1.0,1.0,1,1,1071.08765168042,297.0,12215.000803398925,0,5,0,1,100.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14433073139949615,12215.000803398925,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +30370,2,70.0,0.0,7,120,120.0,,,85,75,0.0,0.0,,218.0,135.78774408885906,,70,0,0,0,0,0,0,0,0,0,,1,,5,130393,2,1,0,0,1,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,131.6269275696856,120.0,55878.6011774394,6,5,0,1,132.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0039013145534504898,37252.4007849596,9,5,9,9_1,9_1,9_0_0 +30371,1,37.0,300.0,2,111,900.0,,,56,21,0.0,0.0,,1050.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,0,,2,,2,130394,2,2,0,0,2,,160.0,625.0,43,2.0,0.0,3.0,3.0,1.8,2,2,44.07498172878275,900.0,38622.550077844855,4,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027186190396120788,21456.972265469365,6,3,6,6_0,6_2,6_0_1 +30372,2,54.0,0.0,1,112,120.0,600.0,0.0,0,62,0.0,0.0,204.62406520464734,720.0,0.0,1139.1024287638734,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,130395,2,1,2,0,1,,120.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,551.68635075353,120.0,21883.46732140803,0,1,0,1,95.0,9,3,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.032901550262816104,21883.46732140803,6,3,6,6_1,6_1,6_1_0 +30374,2,65.0,0.0,6,111,302.0,1080.0,0.0,0,74,0.0,0.0,514.9705640983625,1382.0,0.0,2050.384371774972,31,0,0,0,0,0,0,0,0,0,,2,,4,130397,2,1,0,0,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1743.92127109801,302.0,51213.0203902647,0,5,0,1,75.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02698532501048718,51213.0203902647,10,5,10,10_0,10_3,10_0_0 +30375,0,70.0,0.0,9,111,490.0,0.0,0.0,0,78,0.0,172.1625460113291,835.54826625231,650.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,2006.0,6,130398,2,2,1,0,1,,300.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,2389.18313751837,490.0,14038.736913191868,0,5,5,0,45.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04630046164546402,14038.736913191868,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +30376,2,47.0,0.0,2,111,334.0,300.0,0.0,52,31,0.0,0.0,569.5369814862685,634.0,0.0,569.5512143819367,10,0,0,0,0,0,0,0,0,0,,2,,2,130399,2,2,0,1,1,1150.0,0.0,675.0,43,2.0,0.0,6.0,6.0,3.0999999999999996,4,2,259.520740501311,334.0,30742.114329251504,1,1,2,3,105.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020623174880224197,9916.8110739521,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +30377,2,59.0,0.0,9,111,720.0,,,0,85,0.0,0.0,,918.0,274.3466666285112,,60,0,0,0,0,0,0,0,0,0,,1,2006.0,6,130400,1,2,0,0,2,,240.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,141.1262633088703,720.0,24356.8674824779,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037689575667330805,24356.8674824779,7,4,7,7_1,7_2,7_0_0 +30378,0,44.0,0.0,7,111,1700.0,0.0,0.0,85,54,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,210.0,2,,5,130401,2,1,0,0,1,,852.0,,42,1.0,0.0,4.0,4.0,2.3,3,2,1757.37058845484,1700.0,80851.0,5,1,5,0,90.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02102633238920978,35152.608695652176,9,5,9,9_0,9_3,9_0_0 +30379,2,42.0,0.0,8,112,1277.0,0.0,0.0,0,46,0.0,397.2981831030672,2177.5410938861223,1577.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130402,2,1,1,0,1,,676.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,666.532017995228,1277.0,37553.50424873675,1,1,1,2,130.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041993417965862624,17882.621070827023,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +30380,2,80.0,0.0,5,111,350.0,0.0,0.0,0,86,0.0,0.0,596.8201901802214,500.0,207.83838380947813,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,130403,1,2,0,1,2,,0.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,374.718785162931,350.0,10227.764984633135,0,6,0,1,80.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.048886535890415236,10227.764984633135,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +30381,2,42.0,0.0,5,111,800.0,0.0,0.0,0,22,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,130404,1,2,0,0,1,,0.0,907.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1129.00674278664,800.0,9731.663329580924,0,4,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.08220588535654269,9731.663329580924,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +30382,2,59.0,0.0,2,111,650.0,150.0,0.0,0,74,0.0,0.0,1108.3803531918397,800.0,0.0,284.77560719096834,10,0,0,0,0,0,0,0,0,0,,2,,2,130405,2,2,0,1,1,700.0,0.0,470.0,31,1.0,0.0,4.0,3.0,2.0,3,3,815.930116532017,650.0,53470.351927946,0,7,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0149615622705839,26735.175963973,7,4,7,7_0,7_4,7_0_1 +30383,2,74.0,0.0,7,111,324.0,,,0,77,0.0,66.2163638505112,,537.0,225.85104373963293,,70,0,0,0,0,0,0,0,0,0,,1,,5,130406,2,2,0,0,1,,243.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,76.13350630441292,324.0,23263.092405039086,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023083775391945692,23263.092405039086,6,3,6,6_1,6_2,6_0_0 +30384,2,27.0,0.0,7,111,650.0,,,0,65,0.0,0.0,,880.0,318.68552184119983,,41,0,0,0,0,0,0,0,0,2,30.0,2,,5,130407,2,2,0,0,2,,1400.0,600.0,22,1.0,0.0,4.0,3.0,2.0,3,3,134.81066465247767,650.0,8360.181634938088,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1052608709268213,4180.090817469044,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +30385,2,64.0,0.0,1,111,400.0,1500.0,0.0,52,78,0.0,0.0,682.0802173488245,1900.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,8,,1,130408,1,1,0,0,1,,480.0,330.0,42,1.0,2.0,4.0,2.0,1.5,2,2,2007.89749615481,400.0,21465.479663912054,1,5,2,3,70.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08851421117760047,14310.319775941369,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +30386,2,48.0,0.0,7,111,1254.0,0.0,0.0,45,34,0.0,0.0,2138.3214813885647,1254.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,5,130409,2,1,0,0,1,,0.0,,43,2.0,1.0,2.0,2.0,1.5,2,2,940.002940636026,1254.0,114333.8945440679,1,1,1,2,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010967876192800104,76222.59636271193,10,5,10,10_0,10_4,10_0_0 +30387,0,76.0,0.0,1,112,973.0,0.0,0.0,0,71,0.0,662.163638505112,1659.1601287010155,1503.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130410,2,1,3,0,1,,207.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,777.039395131806,973.0,19104.913869422144,0,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07867085977318046,19104.913869422144,5,3,5,5_1,5_0,5_1_0 +30388,0,68.0,0.0,1,111,146.0,1321.0,0.0,77,78,0.0,0.0,248.95927933232093,1467.0,0.0,2507.9238473284613,50,2,2,2,2,2,2,2,1,0,,1,,1,130411,2,2,1,0,1,,180.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,1337.18262645582,146.0,33806.0,5,5,5,0,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.043394663669171156,22537.333333333332,6,3,6,6_1,6_3,6_1_0 +30389,2,29.0,0.0,2,111,0.0,0.0,0.0,54,62,0.0,0.0,0.0,636.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,130412,1,1,0,0,2,,0.0,490.0,43,2.0,0.0,2.0,2.0,1.5,2,2,372.097725748562,0.0,26301.761544170407,1,1,2,3,50.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0241808898971242,17534.507696113604,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +30390,2,82.0,0.0,1,112,1200.0,3680.0,0.0,0,90,0.0,0.0,2046.2406520464733,4880.0,0.0,6986.494896418423,50,0,0,0,0,0,0,0,0,0,,1,,1,130413,2,1,4,0,1,,165.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,284.96242484175,1200.0,61518.68704957098,0,5,0,1,185.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07932549009161652,61518.68704957098,10,5,10,10_1,10_0,10_1_0 +30391,2,26.0,0.0,1,111,0.0,0.0,650.0,0,46,0.0,0.0,409.70688876958343,650.0,0.0,777.8758959170425,43,2,1,2,1,2,2,2,2,3,45.0,2,,1,130414,1,3,0,1,1,,0.0,359.0,12,1.0,0.0,2.0,1.0,1.0,1,1,809.828689783509,0.0,16417.794461639707,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03959118878718634,16417.794461639707,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +30392,1,54.0,200.0,9,111,1128.0,0.0,0.0,0,22,0.0,0.0,1923.466212923685,1128.0,0.0,0.0,20,2,2,1,2,1,2,2,2,0,,2,2009.0,6,130415,1,3,0,0,1,,0.0,1300.0,22,1.0,0.0,3.0,2.0,1.5,2,2,1014.24893416948,1128.0,4123.590675768573,0,4,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.27354800432265464,2749.0604505123824,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +30393,2,33.0,0.0,2,111,763.0,0.0,0.0,0,35,0.0,0.0,1301.0680145928827,763.0,0.0,0.0,10,2,2,2,1,1,2,2,2,0,,2,,2,130416,1,3,0,0,2,,0.0,795.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1799.52727047164,763.0,41535.31531888138,0,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01836990989817166,41535.31531888138,9,5,9,9_0,9_4,9_0_1 +30394,2,69.0,0.0,2,111,120.0,92.0,0.0,0,77,0.0,0.0,204.62406520464734,212.0,0.0,174.6623724104606,70,2,2,2,2,2,2,2,1,0,,2,,2,130417,1,3,0,1,1,55.0,0.0,345.0,11,0.0,3.0,4.0,1.0,1.0,1,1,322.534678048612,120.0,17630.093431173034,0,5,2,3,84.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.012024893732278672,17630.093431173034,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +30395,2,59.0,0.0,1,111,2400.0,2500.0,0.0,85,31,0.0,278.10872817214704,4092.4813040929466,5110.0,0.0,4746.260119849472,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,130418,1,1,1,0,2,,500.0,,42,1.0,1.0,9.0,3.0,1.8,3,2,1612.79329059311,2400.0,215444.62481260355,6,1,0,1,250.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023718391695521493,119691.4582292242,10,5,10,10_1,10_3,10_1_0 +30396,2,70.0,0.0,5,111,141.0,0.0,0.0,0,75,0.0,542.9741835741918,240.4332766154606,551.0,0.0,0.0,71,2,2,2,2,2,2,2,1,0,,2,,3,130419,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1068.56335212649,141.0,28919.390375434934,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.019052960413302393,28919.390375434934,8,4,8,8_0,8_4,8_0_0 +30397,2,58.0,0.0,1,400,608.0,0.0,0.0,78,56,2573.4261565293077,19.86490915515336,1036.7619303702131,3203.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,1,130420,2,2,1,0,2,,414.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,801.069426106947,608.0,31050.251475063928,5,1,1,2,100.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10315536421894327,20700.16765004262,5,3,5,5_1,5_0,5_1_0 +30398,2,61.0,0.0,7,111,150.0,400.0,0.0,0,53,0.0,0.0,255.78008150580916,550.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,130421,2,1,0,0,1,,0.0,438.0,12,1.0,0.0,1.0,1.0,1.0,1,1,904.612833426347,150.0,23817.40794715316,0,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023092353341738862,23817.40794715316,6,3,6,6_0,6_4,6_0_0 +30399,2,45.0,0.0,1,111,1856.0,0.0,0.0,0,54,0.0,0.0,3164.8522084985457,1856.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,45.0,2,,1,130422,2,1,0,0,1,,0.0,622.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1505.7227952177,1856.0,18166.101099797565,0,1,2,3,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.10216831833115156,18166.101099797565,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +30400,2,42.0,0.0,9,111,1300.0,0.0,0.0,46,38,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2012.0,6,130423,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,852.345550355063,1300.0,68662.66662041699,1,1,0,1,159.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018933141749164783,32696.50791448428,8,4,8,8_1,8_3,8_0_0 +30401,1,35.0,345.0,2,111,0.0,0.0,1800.0,0,63,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,50,0,0,0,0,0,0,0,0,0,,2,,2,130424,1,2,0,0,1,,0.0,450.0,32,1.0,0.0,4.0,4.0,1.9,1,1,955.612937612767,0.0,12777.967552524786,0,4,2,3,90.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14086747306259514,6725.246080276203,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30402,2,39.0,0.0,2,120,0.0,0.0,0.0,55,47,0.0,0.0,0.0,1282.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,2,130425,2,1,1,0,1,,310.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,910.364824207034,0.0,54960.80213106309,1,1,1,2,115.0,0,0,4,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023325714878448457,26171.81053860147,7,4,7,7_1,7_0,7_0_1 +30403,2,49.0,0.0,8,111,290.0,,,0,52,0.0,0.0,,400.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,2,5.0,1,2000.0,6,130426,2,1,0,0,2,,190.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,144.30725590884995,290.0,32181.917170763623,0,1,0,1,71.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012429340299321535,21454.61144717575,6,3,6,6_1,6_2,6_0_0 +30404,2,54.0,0.0,2,111,0.0,0.0,0.0,56,38,0.0,0.0,0.0,639.0,0.0,0.0,60,2,1,2,2,1,2,2,2,2,60.0,2,,2,130427,2,3,0,0,1,,0.0,680.0,43,3.0,1.0,4.0,4.0,2.5,4,4,618.848605417534,0.0,67653.73903974865,1,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009445154237884293,27061.495615899457,7,4,7,7_0,7_4,7_0_1 +30405,2,44.0,0.0,7,111,350.0,800.0,0.0,85,67,0.0,0.0,596.8201901802214,1150.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,25.0,2,,5,130428,2,1,0,0,1,,0.0,810.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1864.31600519931,350.0,38171.15007949571,7,1,2,3,72.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030127465313594056,25447.433386330475,7,4,7,7_0,7_2,7_0_0 +30406,2,60.0,0.0,2,111,400.0,250.0,0.0,0,38,0.0,0.0,682.0802173488245,650.0,0.0,474.62601198494724,42,0,0,0,0,0,0,0,0,2,5.0,2,,2,130429,2,2,0,1,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1064.79724074225,400.0,66415.44186110739,0,1,0,1,48.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009786880607665388,66415.44186110739,10,5,10,10_0,10_4,10_0_1 +30407,2,42.0,0.0,9,111,580.0,0.0,0.0,0,55,0.0,0.0,989.0163151557955,580.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,130430,2,2,0,0,1,,0.0,633.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1958.05845114124,580.0,30690.401100608993,0,1,2,3,63.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01889841706853714,23608.0008466223,6,3,6,6_0,6_2,6_0_0 +30409,2,81.0,0.0,7,300,1200.0,0.0,0.0,0,72,527.3414255183008,0.0,2046.2406520464733,1760.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,130432,2,1,1,0,1,,112.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,1924.14914636889,1200.0,30022.825040894397,0,5,0,1,90.0,0,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05862206496566149,20015.216693929597,5,3,5,5_1,5_0,5_0_0 +30410,0,57.0,0.0,2,112,970.0,0.0,0.0,56,52,0.0,741.6232751257254,1654.0445270708994,1572.0,58.19474746665388,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130433,1,1,3,0,1,,380.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1051.10806037829,970.0,14446.19874887967,4,4,5,0,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10881755313811611,9630.79916591978,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +30411,1,34.0,333.0,2,111,280.0,1300.0,0.0,0,55,0.0,0.0,477.4561521441771,1580.0,0.0,2468.055262321726,71,2,2,1,1,2,2,2,2,0,,8,,2,130434,1,2,0,0,1,,300.0,298.0,32,1.0,0.0,4.0,3.0,1.6,1,1,427.387445928793,280.0,10021.782222222222,0,4,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.1576565889145466,6263.613888888888,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30412,2,59.0,0.0,1,111,300.0,1000.0,0.0,56,46,0.0,0.0,511.56016301161833,1300.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,1,14.0,1,,1,130435,2,2,2,0,1,,200.0,,43,2.0,5.0,5.0,3.0,2.0,3,2,437.784813868578,300.0,23558.00758249193,1,1,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05518293495100777,11779.003791245965,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +30413,2,66.0,0.0,2,111,200.0,1400.0,0.0,78,34,0.0,0.0,341.04010867441224,1600.0,0.0,2657.9056671157045,10,0,0,0,0,0,0,0,0,2,5.0,1,,2,130436,2,1,2,0,1,,300.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,526.926001222427,200.0,101851.94448636698,6,1,0,1,100.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.015709076621646258,67901.29632424466,10,5,10,10_1,10_2,10_0_1 +30414,2,43.0,0.0,2,111,600.0,200.0,0.0,0,68,0.0,0.0,1023.1203260232367,800.0,0.0,379.7008095879578,71,2,1,2,2,1,2,2,2,1,45.0,2,,2,130437,1,2,0,1,1,,769.0,549.0,32,1.0,0.0,4.0,5.0,2.8,4,3,198.565103542325,600.0,32119.57081245125,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02490693305558982,11471.275290161162,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +30415,0,78.0,0.0,1,111,400.0,0.0,0.0,0,71,2109.365702073203,0.0,682.0802173488245,2577.0,245.2492928951842,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,130438,2,2,4,0,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1607.08501148646,400.0,14890.978040763199,0,5,0,1,100.0,6,5,9,1,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1730578067434933,14890.978040763199,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +30416,2,61.0,0.0,1,300,2490.0,0.0,0.0,37,22,0.0,331.081819252556,4245.949352996432,4552.0,2510.687676418496,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,,1,130439,2,1,2,0,1,,180.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,1216.25670946406,2490.0,176361.19884539637,1,1,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025810666007041735,117574.13256359758,10,5,10,10_1,10_0,10_1_0 +30417,2,49.0,0.0,1,111,1395.0,1680.0,0.0,46,37,0.0,158.91927324122688,2378.7547580040255,3195.0,0.0,3189.4868005388457,12,0,0,0,0,0,0,0,0,0,,1,,1,130440,2,1,3,0,1,,734.0,,43,2.0,0.0,6.0,4.0,2.5,4,2,1189.91438164777,1395.0,163083.89957029934,1,1,0,1,220.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019591143015456013,65233.55982811974,10,5,10,10_1,10_3,10_1_0 +30418,2,73.0,0.0,2,111,430.0,830.0,0.0,78,78,0.0,264.8654554020448,733.2362336499863,1690.0,318.68552184119983,1575.7583597900248,71,0,0,0,0,0,0,0,0,0,,1,,2,130441,1,2,2,0,2,,120.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1066.88087495697,430.0,28285.96714421841,5,5,0,1,120.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0597469406431603,18857.31142947894,5,3,5,5_1,5_2,5_0_1 +30419,1,74.0,253.0,2,111,522.0,,,0,72,0.0,0.0,,544.0,30.482962958723462,,71,0,0,0,0,0,0,0,0,0,,2,,2,130442,2,2,0,0,2,,134.0,426.0,11,0.0,0.0,3.0,1.0,1.0,1,1,104.16988849296456,522.0,10959.0,0,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04963956565380053,10959.0,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30420,2,72.0,0.0,6,111,440.0,,,77,77,0.0,0.0,,716.0,382.4226262094398,,70,0,0,0,0,0,0,0,0,0,,2,,4,130443,2,2,0,0,2,,542.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,82.88586441541561,440.0,39776.75059260255,5,5,0,1,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01800046482764124,26517.8337284017,7,4,7,7_0,7_2,7_0_0 +30421,2,67.0,0.0,1,111,804.0,1524.0,0.0,77,75,0.0,0.0,1370.981236871137,2328.0,0.0,2893.3201690602386,60,0,0,0,0,0,0,0,0,0,,1,,1,130444,2,1,2,0,1,,576.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,922.040438071418,804.0,52639.20361979828,5,5,0,1,113.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04422559309245342,35092.80241319886,9,5,9,9_1,9_4,9_1_0 +30422,1,65.0,253.0,6,111,230.0,,,0,86,0.0,0.0,,299.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,2,,4,130445,1,2,0,0,2,,245.0,314.0,11,0.0,0.0,3.0,1.0,1.0,1,1,130.75771359339294,230.0,10612.0,0,6,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028175650207312476,10612.0,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +30423,2,70.0,0.0,2,111,400.0,1100.0,0.0,86,78,0.0,0.0,682.0802173488245,1500.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,2,130446,2,2,5,0,1,,240.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,531.270550774674,400.0,21074.093744231104,6,5,0,1,90.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0711774379579485,14049.395829487403,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +30424,0,34.0,0.0,2,111,720.0,,,63,85,0.0,0.0,,972.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,130447,2,1,0,0,1,,480.0,,42,1.0,0.0,6.0,6.0,2.8999999999999995,3,2,139.08725320874325,720.0,25780.877774576293,1,6,5,0,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037702362522292934,8889.957853302172,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30425,1,60.0,247.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,230.0,0.0,0.0,70,1,2,2,1,2,2,2,2,1,5.0,2,,1,130448,1,1,0,1,1,,0.0,457.0,22,1.0,2.0,2.0,2.0,1.5,2,2,589.921178885484,0.0,7810.45888924985,0,1,3,4,18.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0.029447693568500456,5206.972592833233,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +30426,2,65.0,0.0,5,112,570.0,743.0,0.0,77,75,0.0,357.56836479276046,971.9643097220749,1583.0,0.0,1410.5885076192633,42,0,0,0,0,0,0,0,0,0,,1,,3,130449,2,1,1,0,1,,261.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1183.59668272613,570.0,47293.88261714673,6,5,0,1,108.0,8,3,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03347155937301016,31529.25507809782,8,4,8,8_1,8_1,8_0_0 +30427,1,41.0,605.0,6,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,691.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,4,130450,1,1,0,0,2,,261.0,700.0,31,1.0,0.0,4.0,6.0,3.0999999999999996,4,2,2567.24311713109,0.0,32548.947847644944,0,6,2,3,97.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.021229564876702973,10499.660596014499,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +30428,2,39.0,0.0,2,111,540.0,600.0,0.0,0,54,0.0,0.0,920.8082934209131,1140.0,0.0,1139.1024287638734,43,0,0,0,0,0,0,0,0,4,40.0,2,,2,130451,2,2,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,485.911622172502,540.0,21179.341892286207,0,1,1,2,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05382603509579317,21179.341892286207,5,3,5,5_0,5_3,5_0_1 +30429,2,32.0,0.0,7,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,291.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,130452,2,1,0,1,1,,0.0,697.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1916.55401381509,0.0,72256.73958687189,4,1,2,3,83.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.004027305987839935,40142.633103817716,9,5,9,9_0,9_3,9_0_0 +30430,0,75.0,0.0,1,400,1134.0,,,78,78,0.0,0.0,,1398.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,1,130453,2,1,0,0,2,,528.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,112.16312800036636,1134.0,20950.581318862118,5,5,5,0,150.0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06672845868679357,13967.054212574745,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30431,2,50.0,0.0,2,111,230.0,700.0,0.0,0,46,0.0,0.0,392.1961249755741,930.0,0.0,1328.9528335578523,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,130454,2,2,2,0,1,,180.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,262.77336082829,230.0,25098.84287965403,0,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03705350101035492,25098.84287965403,7,4,7,7_1,7_3,7_0_1 +30432,1,51.0,28.0,5,111,360.0,480.0,0.0,85,53,0.0,0.0,613.872195613942,840.0,0.0,911.2819430110987,10,2,2,2,2,1,2,2,2,3,20.0,2,,3,130455,2,1,0,0,1,,450.0,,42,1.0,0.0,4.0,4.0,2.5,4,3,340.88514269464,360.0,19391.78105067114,6,1,1,2,70.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.04331732076620822,7756.712420268455,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +30433,2,33.0,0.0,9,120,0.0,0.0,0.0,52,62,0.0,0.0,0.0,557.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,130456,2,1,1,0,1,,262.0,610.0,43,2.0,0.0,5.0,2.0,1.5,2,2,217.325722685375,0.0,5736.903577191529,1,1,2,3,110.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09709070276420376,3824.6023847943525,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +30434,2,27.0,0.0,9,111,1692.0,0.0,0.0,46,38,0.0,0.0,2885.1993193855274,1692.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,130457,2,1,1,0,1,,432.0,1123.0,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,3,2097.78486672544,1692.0,34417.38622245962,1,1,2,3,112.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04916119978035572,13237.45623940755,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +30435,2,57.0,0.0,2,111,1200.0,0.0,0.0,77,45,0.0,0.0,2046.2406520464733,1265.0,90.06329965077386,0.0,71,0,0,0,0,0,0,0,0,2,8.0,1,,2,130458,2,1,2,0,1,,286.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,768.492101904803,1200.0,35700.283258459574,5,1,0,1,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03543389252241421,23800.18883897305,6,3,6,6_1,6_4,6_0_1 +30436,1,30.0,350.0,5,111,800.0,,,85,53,0.0,0.0,,920.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,2,,3,130459,1,1,0,0,2,,200.0,590.0,42,1.0,0.0,4.0,3.0,1.8,2,2,128.74995298414746,800.0,19671.92729183664,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04676715129898722,10928.8484954648,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +30438,2,27.0,0.0,1,111,480.0,1750.0,0.0,63,63,0.0,0.0,818.4962608185893,2230.0,0.0,3322.382083894631,50,2,2,2,1,2,2,2,2,2,5.0,1,,1,130461,2,2,5,0,1,,360.0,477.0,43,2.0,0.0,4.0,3.0,1.8,2,2,195.885111582799,480.0,35609.289516886216,4,1,2,3,74.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.06262410821037347,19782.938620492343,5,3,5,5_1,5_3,5_1_0 +30439,2,48.0,0.0,9,111,460.0,,,54,67,0.0,0.0,,690.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,130462,2,1,0,0,2,,561.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,170.90861602495252,460.0,38989.0,4,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017697299238246686,16951.739130434784,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +30440,1,47.0,438.0,5,111,320.0,,,0,43,0.0,0.0,,458.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,2,,3,130463,2,2,0,0,2,,538.0,419.0,32,1.0,3.0,4.0,4.0,2.3,3,1,135.2503144274154,320.0,18853.10588235294,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024293079498837456,8197.002557544756,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30441,2,56.0,0.0,2,111,1200.0,1200.0,0.0,56,63,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,2,,2,130464,2,2,0,1,1,,0.0,630.0,43,3.0,3.0,5.0,3.0,2.0,3,3,728.626760338835,1200.0,20393.09211623885,1,4,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11768691017135649,10196.546058119426,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +30442,2,61.0,0.0,5,111,535.0,900.0,0.0,77,63,0.0,0.0,912.2822907040527,1435.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,1,,3,130465,2,3,4,0,1,,942.0,441.0,42,2.0,3.0,5.0,4.0,2.5,4,4,1023.26825173302,535.0,28878.903135361023,6,1,2,3,96.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.049690252890626646,11551.56125414441,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30443,2,44.0,0.0,2,111,289.0,420.0,0.0,90,56,0.0,0.0,492.80295703452566,709.0,0.0,797.3717001347114,50,0,0,0,0,0,0,0,0,1,2.0,2,,2,130466,2,1,0,1,1,114.0,0.0,97.0,43,2.0,1.0,5.0,4.0,2.1,2,2,603.992090852039,289.0,34960.43628906816,4,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02028006727769866,16647.82680431817,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +30444,1,28.0,434.0,2,111,501.0,100.0,0.0,85,42,0.0,0.0,854.3054722294027,601.0,0.0,189.8504047939789,60,1,1,2,1,1,2,2,2,0,,2,,2,130467,2,2,0,1,1,500.0,0.0,425.0,42,2.0,0.0,6.0,7.0,3.1999999999999997,3,3,577.544349698096,501.0,24707.190151474606,6,4,2,3,96.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.02432490284469399,7720.996922335815,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30445,2,34.0,0.0,2,111,300.0,200.0,0.0,0,46,0.0,0.0,511.56016301161833,500.0,0.0,379.7008095879578,71,2,2,2,2,1,2,2,2,0,,2,,2,130468,1,3,0,1,1,360.0,400.0,216.0,12,1.0,0.0,2.0,1.0,1.0,1,1,404.242993822239,300.0,28696.176121537275,0,1,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.01742392428462746,28696.176121537275,8,4,8,8_0,8_2,8_0_1 +30447,2,75.0,0.0,2,111,266.0,0.0,0.0,0,74,0.0,0.0,453.5833445369683,266.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,130470,2,1,0,1,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,987.195877994745,266.0,29018.82403222957,0,5,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009166463799655314,29018.82403222957,8,4,8,8_0,8_4,8_0_1 +30448,2,44.0,0.0,7,111,489.6,,,46,34,0.0,0.0,,513.0,31.86855218411998,,10,0,0,0,0,0,0,0,0,2,5.0,1,,5,130471,2,1,0,0,1,,468.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,137.9070975329651,489.6,72877.72265489462,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007039188126517917,48585.14843659641,10,5,10,10_1,10_2,10_0_0 +30449,2,46.0,0.0,8,111,880.0,828.0,0.0,56,52,0.0,0.0,1500.5764781674138,1708.0,0.0,1571.9613516941454,31,2,2,1,2,1,2,2,2,2,30.0,1,2000.0,6,130472,2,1,2,0,1,,490.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1093.03929446164,880.0,29456.26053251078,1,1,1,2,101.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.05798427801502115,12807.06979674382,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +30451,2,46.0,0.0,8,111,786.0,1031.0,0.0,43,38,0.0,0.0,1340.28762709044,1817.0,0.0,1957.3576734259225,31,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,130474,2,1,1,0,1,,1308.0,,43,2.0,0.0,6.0,5.0,2.8,4,2,324.786442412056,786.0,111747.17984356172,1,1,1,2,149.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016259918170137926,39909.70708698633,9,5,9,9_1,9_3,9_0_0 +30452,2,52.0,0.0,1,111,680.0,660.0,0.0,85,85,0.0,0.0,1159.5363694930015,1340.0,0.0,1253.0126716402608,20,0,0,0,0,0,0,0,0,0,,1,,1,130475,2,1,1,0,1,,640.0,,41,0.0,0.0,9.0,4.0,2.3,3,3,553.22462022945,680.0,16176.566362744288,7,7,0,1,300.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0828358731977949,7033.2897229323,1,1,1_0,1_1_0,1_4_0,1_1_0_0 +30453,2,26.0,0.0,7,112,1300.0,0.0,0.0,43,69,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,5,130476,2,1,2,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,613.231186454184,1300.0,26621.248744263674,4,1,1,2,88.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04883317129442032,14789.582635702041,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +30454,2,39.0,0.0,5,111,1600.0,0.0,0.0,42,34,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,50.0,1,,3,130477,1,1,3,0,1,,592.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,959.433687827371,1600.0,55877.816515387414,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028633903394550114,31043.231397437452,8,4,8,8_1,8_4,8_0_0 +30457,1,42.0,460.0,2,111,0.0,0.0,480.0,85,62,0.0,0.0,302.552779399077,480.0,0.0,574.4314308310468,43,0,0,0,0,0,0,0,0,0,,2,,2,130480,1,2,0,1,2,665.0,0.0,546.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,235.346525866321,0.0,31234.328275338918,6,4,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.015367706831044107,11568.269731607008,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +30458,1,46.0,180.0,7,211,200.0,,,81,63,0.0,0.0,,200.0,0.0,,71,0,0,0,0,0,0,0,0,3,2.0,8,,5,130481,2,2,0,0,2,,200.0,100.0,43,2.0,0.0,2.0,8.0,3.8999999999999995,5,3,7.269211664376101,200.0,12055.067854987574,4,1,3,4,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016590532911621356,3091.043039740404,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30459,1,51.0,115.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,511.56016301161833,300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,130482,2,1,0,1,1,,0.0,218.0,12,1.0,0.0,1.0,1.0,1.0,1,1,220.219097845774,300.0,11511.8,0,4,2,3,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02606021647353151,11511.8,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +30460,1,54.0,305.0,5,111,206.0,710.0,0.0,21,56,0.0,0.0,351.2713119346446,916.0,0.0,1347.9378740372501,70,0,0,0,0,0,0,0,0,0,,1,,3,130483,1,1,2,0,1,,297.0,496.0,43,2.0,2.0,5.0,2.0,1.5,2,2,497.710288743482,206.0,8338.005536615057,4,4,2,3,68.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10985840630322541,5558.670357743372,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +30461,2,41.0,0.0,7,211,624.0,,,85,55,0.0,0.0,,624.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,130484,1,3,0,0,2,,640.0,135.0,42,1.0,0.0,1.0,6.0,2.6999999999999997,3,2,176.0772650437513,624.0,30529.947192745974,6,1,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02043894789795983,11307.387849165178,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30462,0,33.0,0.0,2,120,456.0,,,0,52,0.0,158.91927324122688,,1080.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,1,,2,130485,2,1,0,0,2,,312.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,115.90835904390366,456.0,13445.063399799454,0,4,0,1,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08032688042334625,8963.375599866302,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30463,1,52.0,379.0,6,111,450.0,1000.0,0.0,56,64,0.0,0.0,767.3402445174275,1450.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,130486,1,2,2,0,1,,636.0,557.0,43,2.0,0.0,4.0,6.0,3.3,5,4,254.579236171593,450.0,30476.377293965023,1,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04757783334986902,9235.265846656068,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +30464,0,82.0,0.0,1,111,1000.0,0.0,0.0,71,71,1898.4291318658827,0.0,1705.2005433720612,2920.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130487,1,2,2,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1627.07809659046,1000.0,27788.77762563624,5,5,0,1,90.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10507838953326919,18525.85175042416,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +30465,2,40.0,0.0,6,211,540.0,,,0,45,0.0,0.0,,540.0,0.0,,30,0,0,0,0,0,0,0,0,1,20.0,1,,4,130488,1,3,0,0,2,,154.0,223.0,12,1.0,0.0,4.0,1.0,1.0,1,1,75.21904210178734,540.0,36511.83161721371,0,1,3,4,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01478972640050777,36511.83161721371,9,5,9,9_1,9_2,9_0_0 +30466,2,56.0,0.0,5,111,900.0,900.0,0.0,78,64,0.0,0.0,1534.680489034855,1800.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,20.0,1,,3,130489,2,1,2,0,1,,330.0,459.0,42,2.0,3.0,3.0,3.0,2.0,3,3,426.104167884508,900.0,37990.61929117465,6,1,2,3,72.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04738011734433995,18995.309645587324,5,3,5,5_1,5_3,5_0_0 +30467,2,60.0,0.0,1,111,2000.0,0.0,0.0,77,75,0.0,0.0,3410.4010867441225,2187.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,130490,2,1,2,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1419.48428102368,2000.0,32873.143657979104,6,5,0,1,100.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06652847147063656,21915.429105319403,6,3,6,6_1,6_3,6_1_0 +30468,2,39.0,0.0,8,111,480.0,,,55,46,0.0,0.0,,555.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,0,,1,2003.0,6,130491,1,1,0,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,133.6896846962551,480.0,41618.66859799917,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013335361718579384,23121.48255444398,6,3,6,6_1,6_2,6_0_0 +30469,2,84.0,0.0,5,120,540.0,0.0,0.0,0,77,0.0,0.0,920.8082934209131,2140.0,2216.9427606344334,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,130492,2,1,2,0,2,,250.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1467.10618410525,540.0,30727.15284621729,0,5,0,1,90.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0696452421319422,30727.15284621729,8,4,8,8_1,8_1,8_0_0 +30470,1,45.0,250.0,7,120,620.0,,,0,52,0.0,0.0,,752.0,182.89777775234077,,31,0,0,0,0,0,0,0,0,0,,2,,5,130493,2,1,0,0,1,,210.0,580.0,32,1.0,0.0,2.0,3.0,1.8,2,2,156.0423606223715,620.0,22762.15013793713,0,4,2,3,58.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.033037300757746066,12645.638965520628,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +30471,1,50.0,253.0,7,111,0.0,,,0,85,0.0,0.0,,126.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,3,,5,130494,2,1,0,0,2,,0.0,400.0,11,0.0,6.0,1.0,1.0,1.0,1,1,104.91383303755853,0.0,7032.0,0,6,3,4,16.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017918088737201365,7032.0,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +30472,2,46.0,0.0,2,112,940.0,0.0,0.0,0,63,0.0,0.0,1602.8885107697374,1180.0,332.541414095165,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,130495,2,2,2,0,1,,200.0,,22,1.0,5.0,5.0,2.0,1.5,2,2,385.5909958934,940.0,27485.13613109538,0,1,0,1,90.0,9,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04293229600071014,18323.42408739692,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +30473,1,45.0,112.0,2,111,500.0,500.0,0.0,85,67,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,71,2,1,2,2,1,2,2,2,2,25.0,2,,2,130496,1,2,0,1,1,434.0,0.0,333.0,42,1.0,0.0,4.0,5.0,2.4,2,2,419.136298225957,500.0,26820.444332777744,6,1,2,3,63.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.037284990046860714,11175.185138657394,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30474,2,61.0,0.0,5,111,204.0,396.0,0.0,0,21,0.0,0.0,347.86091084790047,600.0,0.0,751.8076029841565,31,0,0,0,0,0,0,0,0,0,,2,,3,130497,2,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1221.12956808348,204.0,45170.48412109425,0,1,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013283010170789932,45170.48412109425,10,5,10,10_0,10_4,10_0_0 +30475,1,53.0,113.0,5,111,360.0,0.0,0.0,56,47,0.0,0.0,613.872195613942,811.0,0.0,0.0,10,1,2,2,2,1,2,2,2,2,2.0,2,,3,130498,2,2,0,1,1,1000.0,0.0,862.0,43,3.0,1.0,5.0,5.0,2.5999999999999996,3,3,1923.94980108465,360.0,43053.53296116469,1,1,2,3,120.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.01883701392709261,16559.051138909497,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +30476,1,37.0,220.0,9,211,0.0,,,0,52,0.0,0.0,,363.0,0.0,,60,0,0,0,0,0,0,0,0,4,15.0,1,2006.0,6,130499,2,1,0,0,2,,698.0,550.0,32,1.0,1.0,3.0,2.0,1.3,1,1,115.6152144494649,0.0,21728.588418289597,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.016706101335807536,16714.298783299688,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +30477,2,67.0,0.0,2,111,260.0,0.0,0.0,0,75,2109.365702073203,0.0,443.3521412767359,2310.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130500,2,1,2,0,1,,153.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1318.57074080916,260.0,23515.05304254567,0,5,0,1,170.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09823494745346856,23515.05304254567,6,3,6,6_1,6_2,6_0_1 +30478,2,75.0,0.0,2,112,490.0,0.0,0.0,0,78,2109.365702073203,0.0,835.54826625231,2583.0,128.85979796187644,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130501,1,3,2,0,2,,96.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1607.69783706206,490.0,25122.913342762542,0,5,0,1,84.0,9,5,8,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10281450900057001,25122.913342762542,7,4,7,7_1,7_2,7_0_1 +30479,1,29.0,350.0,5,111,350.0,0.0,0.0,0,56,0.0,0.0,596.8201901802214,425.0,103.91919190473907,0.0,43,0,0,0,0,0,0,0,0,0,,2,,3,130502,1,3,0,1,1,729.0,153.0,630.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1867.88379725262,350.0,7510.908083622497,0,1,2,3,84.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05658436972843679,5777.621602786536,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30480,1,46.0,400.0,5,111,720.0,,,56,63,0.0,0.0,,852.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,130503,1,1,0,0,2,,240.0,520.0,43,2.0,0.0,3.0,4.0,2.1,2,2,129.3428032390622,720.0,15488.883291301874,4,4,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.055007193480401485,7375.658710143749,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +30481,2,60.0,0.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,809.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,8,,1,130504,2,2,0,1,2,,0.0,241.0,12,1.0,2.0,3.0,1.0,1.0,1,1,965.779677494807,0.0,19274.376135595165,0,1,2,3,60.0,7,5,4,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0419728241427213,19274.376135595165,5,3,5,5_0,5_2,5_1_0 +30482,2,72.0,0.0,7,111,800.0,,,0,77,0.0,0.0,,870.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,0,,1,,5,130505,2,1,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,46.39424709086674,800.0,9400.62,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09254708731977251,9400.62,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30483,2,63.0,0.0,1,111,420.0,700.0,0.0,74,74,0.0,0.0,716.1842282162656,1120.0,0.0,1328.9528335578523,12,0,0,0,0,0,0,0,0,0,,1,,1,130506,1,1,2,0,2,,300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1592.88392401745,420.0,62900.77634080311,5,5,0,1,130.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01780582156779307,41933.85089386874,9,5,9,9_1,9_2,9_1_0 +30484,2,54.0,0.0,2,111,510.0,96.0,0.0,55,78,0.0,0.0,869.6522771197511,959.0,0.0,182.25638860221974,60,2,1,2,2,1,2,1,2,0,,2,,2,130507,1,1,0,1,2,,440.0,,42,1.0,7.0,5.0,2.0,1.5,2,2,338.181884472473,510.0,29253.384085961297,4,5,1,2,96.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03278253200320247,19502.25605730753,5,3,5,5_0,5_3,5_0_1 +30485,2,26.0,0.0,2,111,0.0,0.0,1157.0,0,37,0.0,0.0,729.2782620098586,1157.0,0.0,1384.6190947323357,20,0,0,0,0,0,0,0,0,0,,2,,2,130508,2,2,0,0,1,,0.0,270.0,22,1.0,3.0,4.0,3.0,2.0,3,2,562.847658531052,0.0,33167.106875154925,0,1,2,3,69.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034883959109098375,16583.553437577462,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +30486,2,40.0,0.0,7,111,498.0,,,56,90,0.0,0.0,,586.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,5,130509,1,2,0,0,2,,0.0,650.0,43,2.0,0.0,3.0,3.0,1.8,2,2,115.27583455856671,498.0,37282.10458535603,4,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015717996784714076,20712.280325197793,5,3,5,5_1,5_2,5_0_0 +30487,1,47.0,267.0,2,111,170.0,900.0,0.0,0,85,0.0,0.0,289.8840923732504,1070.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,2,,2,130510,2,2,0,0,1,,0.0,244.0,31,0.0,3.0,4.0,2.0,1.3,1,1,333.101930529169,170.0,11314.76001495971,0,7,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09456674278423131,8703.661549969007,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30488,1,37.0,249.0,9,221,475.0,0.0,0.0,85,68,0.0,0.0,809.9702581017291,1320.0,1170.8228954600602,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,130511,2,1,1,0,1,,323.0,456.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1541.63873725703,475.0,31367.930843739785,7,1,2,3,91.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0420811945351326,14937.109925590374,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +30489,0,43.0,0.0,1,111,0.0,0.0,0.0,81,48,0.0,0.0,0.0,2102.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,2.0,2,,1,130512,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,938.785056097337,0.0,17664.55206400503,4,1,5,0,48.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11899537516624806,9813.64003555835,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +30490,2,84.0,0.0,1,112,850.0,0.0,0.0,0,86,0.0,993.245457757668,1449.420461866252,1720.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130513,1,3,4,0,2,,130.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,325.660975797418,850.0,11507.906405655665,0,6,0,1,70.0,7,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.14946245992708895,11507.906405655665,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +30491,1,36.0,311.0,1,111,0.0,0.0,700.0,85,63,0.0,0.0,441.22280329032066,700.0,0.0,837.7125032952766,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,130514,2,1,0,1,1,840.0,0.0,406.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,458.323915830854,0.0,27136.332592767212,6,1,2,3,73.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.025795674400990155,10050.493552876746,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +30492,2,60.0,0.0,2,111,450.0,0.0,0.0,75,38,738.277995725621,135.08138225504283,767.3402445174275,1288.0,49.88121211427475,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130515,2,2,2,0,1,,300.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,692.907213562083,450.0,25983.662292555895,5,4,0,1,82.0,8,7,4,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04956960976086121,17322.441528370597,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +30493,2,63.0,0.0,1,111,360.0,1584.0,0.0,0,77,0.0,0.0,613.872195613942,1944.0,0.0,3007.230411936626,60,0,0,0,0,0,0,0,0,0,,2,,1,130516,2,1,0,0,1,,0.0,430.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1441.15463576883,360.0,22341.538194994217,0,5,2,3,55.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0870128091912475,22341.538194994217,6,3,6,6_0,6_2,6_1_0 +30494,2,50.0,0.0,5,112,2150.0,0.0,0.0,42,46,0.0,0.0,3666.1811682499315,2150.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,130517,2,1,2,0,1,,584.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1320.60048334155,2150.0,33639.0,1,1,0,1,120.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06391390945034038,16018.571428571428,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +30495,2,25.0,0.0,6,111,1628.0,0.0,0.0,0,64,0.0,0.0,2776.0664846097156,2002.0,518.2103702982988,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130518,2,2,2,0,1,,360.0,601.0,22,3.0,3.0,5.0,3.0,2.0,3,3,222.937021308141,1628.0,59465.04933911088,0,1,2,3,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033666834926566865,29732.52466955544,8,4,8,8_1,8_4,8_0_0 +30496,2,46.0,0.0,1,112,900.0,0.0,0.0,0,67,0.0,0.0,1534.680489034855,990.0,124.70303028568689,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,130519,2,1,2,0,2,,300.0,,22,2.0,2.0,5.0,4.0,2.5,4,4,582.231998617429,900.0,60761.18974131071,0,1,0,1,70.0,8,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.016293295180935412,24304.475896524284,7,4,7,7_1,7_0,7_1_0 +30497,2,31.0,0.0,6,211,1600.0,,,63,46,0.0,0.0,,1604.0,5.542356901586084,,71,0,0,0,0,0,0,0,0,0,,1,,4,130520,2,2,0,0,2,,1200.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,66.34032355976173,1600.0,63016.94636651623,1,1,0,1,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025453470732632613,30008.069698341063,8,4,8,8_1,8_2,8_0_0 +30498,2,59.0,0.0,1,111,350.0,480.0,0.0,63,74,0.0,0.0,596.8201901802214,830.0,0.0,911.2819430110987,31,0,0,0,0,0,0,0,0,0,,2,,1,130521,1,3,0,0,1,,0.0,477.0,42,1.0,2.0,4.0,2.0,1.5,2,2,929.510915667836,350.0,56031.694889375365,1,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014813044681919539,37354.46325958358,9,5,9,9_0,9_4,9_1_0 +30499,2,58.0,0.0,1,111,633.0,1465.0,0.0,43,47,0.0,0.0,1079.3919439545148,2098.0,0.0,2781.3084302317907,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,130522,2,1,1,0,1,,452.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1866.20133003458,633.0,61209.684058917956,1,1,0,1,90.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03427562210549152,24483.873623567182,7,4,7,7_1,7_3,7_1_0 +30500,2,39.0,0.0,7,112,0.0,0.0,0.0,0,42,0.0,0.0,0.0,283.0,0.0,0.0,31,2,2,2,2,1,1,2,2,2,5.0,8,,5,130523,1,2,0,0,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1072.20286613878,0.0,20330.62398978655,0,1,2,3,20.0,9,3,4,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.013919887561846114,20330.62398978655,5,3,5,5_0,5_1,5_0_0 +30501,2,61.0,0.0,2,111,330.0,200.0,0.0,85,65,0.0,0.0,562.7161793127802,576.0,0.0,379.7008095879578,50,2,2,1,2,1,2,2,2,3,35.0,2,,2,130524,2,3,0,1,1,620.0,0.0,319.0,42,3.0,1.0,4.0,5.0,3.0,5,5,578.060304319694,330.0,58237.82371183852,6,1,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009890479473444186,19412.607903946173,5,3,5,5_0,5_4,5_0_1 +30502,1,32.0,357.0,7,111,660.0,,,0,85,0.0,0.0,,786.0,174.58424239996165,,41,2,2,2,2,1,2,2,2,0,,2,,5,130525,1,3,0,0,2,,480.0,403.0,31,0.0,0.0,2.0,2.0,1.3,1,1,121.42569911548395,660.0,10415.273069870549,0,7,2,3,58.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.07546609625375565,8011.748515285038,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30503,2,52.0,0.0,9,112,1200.0,0.0,0.0,74,52,0.0,0.0,2046.2406520464733,1310.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,130526,2,1,1,0,1,,127.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1418.35610370437,1200.0,38298.519106988424,5,1,1,2,88.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.034204977908949,25532.346071325617,7,4,7,7_1,7_0,7_0_0 +30505,2,44.0,0.0,1,221,860.0,0.0,0.0,0,52,0.0,0.0,1466.4724672999725,940.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,130528,1,2,1,0,1,,0.0,460.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2915.19270916498,860.0,25124.642869372237,0,1,2,3,90.0,1,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03741346712417914,25124.642869372237,7,4,7,7_1,7_1,7_1_0 +30506,0,22.0,0.0,2,111,400.0,,,81,54,0.0,0.0,,520.0,166.2707070475825,,43,0,0,0,0,0,0,0,0,2,20.0,1,,2,130529,2,2,0,0,2,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,93.9703317164073,400.0,24393.673161619005,4,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021317002837365543,16262.448774412669,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +30507,2,78.0,0.0,2,111,0.0,0.0,300.0,0,72,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,71,2,2,1,1,1,2,2,2,0,,2,,2,130530,2,1,0,1,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1049.49512042614,0.0,14971.197767385122,0,5,0,1,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02003847685811435,14971.197767385122,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +30508,1,36.0,40.0,1,400,1000.0,0.0,0.0,85,69,0.0,0.0,1705.2005433720612,1100.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,130531,2,1,2,0,1,,400.0,,42,1.0,0.0,5.0,3.0,1.8,2,2,209.369008181991,1000.0,19330.37944392629,6,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.056905246127779766,10739.09969107016,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +30509,2,37.0,0.0,9,111,500.0,,,37,53,0.0,0.0,,544.0,60.965925917446924,,43,0,0,0,0,0,0,0,0,2,10.0,1,2008.0,6,130532,2,1,0,0,2,,144.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,86.74538436947861,500.0,64013.436233323744,1,1,1,2,94.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008498215874822974,35563.0201296243,9,5,9,9_1,9_2,9_0_0 +30510,2,39.0,0.0,1,111,1200.0,0.0,0.0,31,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,70.0,2,,1,130533,1,1,0,0,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,548.57852627206,1200.0,107504.81567150194,1,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01116229066116248,51192.76936738187,10,5,10,10_0,10_4,10_1_0 +30511,2,71.0,0.0,6,111,1900.0,0.0,0.0,64,74,0.0,0.0,3239.8810324069163,1990.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,130534,2,1,3,0,2,,405.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,490.168588603746,1900.0,29990.223314233623,1,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.066354957719022,19993.48220948908,5,3,5,5_1,5_4,5_0_0 +30512,2,74.0,0.0,2,112,525.0,1708.0,0.0,90,75,0.0,0.0,895.2302852703322,2233.0,0.0,3242.6449138811595,60,0,0,0,0,0,0,0,0,0,,1,,2,130535,1,1,2,0,1,,280.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1704.94403462437,525.0,59209.06248457079,5,5,0,1,113.0,9,2,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.037713821268186676,39472.7083230472,9,5,9,9_1,9_1,9_0_1 +30513,1,49.0,185.0,2,111,320.0,0.0,0.0,85,67,0.0,0.0,545.6641738790596,320.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130536,2,2,0,1,1,200.0,0.0,190.0,42,1.0,0.0,1.0,2.0,1.5,2,2,284.477544435759,320.0,16445.760596284028,7,4,2,3,35.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019457902121736165,10963.840397522685,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +30514,2,32.0,0.0,2,111,240.0,66.0,0.0,56,53,0.0,0.0,409.2481304092947,306.0,0.0,125.30126716402607,50,2,1,1,1,1,2,2,2,2,30.0,2,,2,130537,1,2,0,1,1,952.0,240.0,307.0,43,2.0,0.0,3.0,3.0,1.8,2,2,352.099534240232,240.0,31558.8495170109,1,1,2,3,95.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009696170953096987,17532.694176117166,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +30515,2,66.0,0.0,5,111,420.0,0.0,0.0,68,77,0.0,0.0,716.1842282162656,979.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,3,130538,2,1,0,1,1,865.0,0.0,319.0,41,0.0,3.0,4.0,2.0,1.5,2,2,302.843624758307,420.0,33066.9133736238,5,5,2,3,97.0,7,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029606633946696412,22044.6089157492,6,3,6,6_0,6_2,6_0_0 +30516,2,74.0,0.0,6,300,750.0,0.0,0.0,71,77,0.0,0.0,1278.9004075290459,930.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,130539,2,1,1,0,1,,0.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,1150.05108676507,750.0,23933.784577156905,5,5,0,1,115.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03885720609717608,15955.85638477127,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +30517,2,74.0,0.0,6,120,320.0,0.0,0.0,0,86,0.0,794.5963662061343,545.6641738790596,2620.0,2355.5016831740854,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,130540,2,2,2,0,1,,160.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2369.9521721855,320.0,27532.092356400957,0,6,0,1,100.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09516167409597093,27532.092356400957,7,4,7,7_1,7_0,7_0_0 +30518,1,71.0,187.0,9,111,600.0,,,86,71,0.0,0.0,,873.0,378.2658585332502,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,130541,1,3,0,0,2,,700.0,460.0,41,0.0,5.0,3.0,2.0,1.5,2,2,97.39674155358506,600.0,15227.328970502558,6,5,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05733113152616074,10151.552647001705,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +30519,2,47.0,0.0,1,111,700.0,0.0,0.0,52,53,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,90.0,2,,1,130542,1,2,0,0,1,,300.0,475.0,43,2.0,0.0,1.0,2.0,1.5,2,2,853.382201576516,700.0,29605.30628884497,1,1,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02364440999766836,19736.87085922998,5,3,5,5_0,5_4,5_1_0 +30520,2,42.0,0.0,8,111,540.0,,,56,69,0.0,0.0,,690.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,130543,2,2,0,0,2,,320.0,431.0,43,3.0,0.0,3.0,3.0,2.0,3,3,89.95117004598346,540.0,40053.41423342653,1,1,2,3,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01722699583058668,20026.707116713264,5,3,5,5_0,5_2,5_0_0 +30521,2,44.0,0.0,6,211,850.0,,,0,81,0.0,0.0,,1150.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,4,130544,1,2,0,0,2,,1000.0,,32,2.0,0.0,4.0,9.0,4.199999999999999,5,4,7.559826641115449,850.0,12263.654445836688,0,4,0,1,55.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09377302704337094,2919.917725199212,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30522,2,64.0,0.0,5,111,538.0,1304.0,0.0,75,74,0.0,0.0,917.3978923341689,1842.0,0.0,2475.6492785134847,20,0,0,0,0,0,0,0,0,0,,1,,3,130545,2,1,2,0,1,,177.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,838.55034103708,538.0,88567.20357812254,5,5,0,1,153.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020797766278972844,59044.80238541503,10,5,10,10_1,10_3,10_0_0 +30523,1,67.0,44.0,2,111,600.0,0.0,0.0,0,72,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,2,2,1,1,1,2,2,2,0,,2,,2,130546,1,3,0,1,1,600.0,125.0,288.0,11,0.0,4.0,3.0,1.0,1.0,1,1,335.940123347345,600.0,17331.909033963457,0,5,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.034618229233966395,17331.909033963457,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +30524,2,61.0,0.0,7,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1053.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,5,130547,2,2,0,0,1,,210.0,319.0,12,1.0,0.0,2.0,1.0,1.0,1,1,532.805941560873,0.0,18508.238855485328,0,1,2,3,93.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05689358172984244,18508.238855485328,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +30525,2,93.0,0.0,1,111,840.0,200.0,0.0,0,77,0.0,0.0,1432.3684564325313,1040.0,0.0,379.7008095879578,60,0,0,0,0,0,0,0,0,0,,2,,1,130548,1,2,0,0,2,,0.0,400.0,11,0.0,1.0,3.0,1.0,1.0,1,1,528.308131739098,840.0,19745.023035578473,0,5,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.052671500971461435,19745.023035578473,5,3,5,5_0,5_4,5_1_0 +30526,2,65.0,0.0,1,112,1000.0,0.0,0.0,0,75,5273.414255183007,595.9472746546007,1705.2005433720612,6700.0,346.39730634913025,0.0,60,2,2,2,1,2,2,2,2,0,,1,,1,130549,2,1,2,0,2,,350.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1621.00319721689,1000.0,32494.401521337764,0,5,0,1,320.0,9,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.2061893645156191,32494.401521337764,8,4,8,8_1,8_0,8_1_0 +30527,2,43.0,0.0,5,111,2140.0,0.0,0.0,42,38,0.0,476.7578197236806,3649.1291628162107,2500.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,3,130550,2,1,2,0,1,,500.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,1346.64478349935,2140.0,94245.77546980478,1,1,1,2,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02652638792070813,33659.20552493028,9,5,9,9_1,9_3,9_0_0 +30528,2,48.0,0.0,5,111,700.0,,,56,63,0.0,0.0,,964.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,1,15.0,2,,3,130551,2,1,0,0,2,,550.0,308.0,43,3.0,1.0,4.0,3.0,2.0,3,3,147.16710936923465,700.0,35535.124113475176,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02712808873050887,17767.562056737588,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +30529,2,56.0,0.0,7,111,500.0,0.0,0.0,52,37,0.0,0.0,852.6002716860306,564.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,1.0,2,,5,130552,2,1,0,1,1,645.0,0.0,758.0,43,3.0,2.0,4.0,3.0,2.0,3,3,859.895171716485,500.0,84762.50735970211,1,1,2,3,92.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0066538852798039986,42381.253679851055,9,5,9,9_0,9_4,9_0_0 +30530,2,34.0,0.0,6,111,0.0,,,0,46,0.0,0.0,,310.0,0.0,,30,0,0,0,0,0,0,0,0,2,10.0,1,,4,130553,1,1,0,0,2,,425.0,670.0,31,0.0,0.0,4.0,3.0,1.6,1,1,183.3846664198044,0.0,6069.212765957447,0,7,2,3,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.051077464566542684,3793.2579787234044,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30531,2,62.0,0.0,1,111,0.0,0.0,0.0,0,78,5273.414255183007,0.0,0.0,5994.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,5,,1,130554,2,1,2,0,1,,77.0,,11,0.0,0.0,10.0,1.0,1.0,1,1,450.663358292778,0.0,23485.444287461694,0,5,0,1,200.0,8,7,3,1,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.255221912203724,23485.444287461694,6,3,6,6_1,6_3,6_1_0 +30532,1,61.0,320.0,5,111,0.0,0.0,0.0,0,86,0.0,0.0,0.0,1327.0,0.0,0.0,70,2,2,2,1,2,2,2,2,0,,8,,3,130555,1,3,0,0,1,,0.0,327.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1232.49077763884,0.0,20170.68336253688,0,7,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.06578854945810335,20170.68336253688,5,3,5,5_0,5_4,5_0_0 +30533,2,28.0,0.0,1,112,0.0,0.0,0.0,0,65,0.0,0.0,0.0,38.0,52.6523905650678,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,,1,130556,2,2,5,0,1,,273.0,340.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1645.9976507432,0.0,19370.81077100014,0,1,2,3,50.0,6,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0019617144810938655,19370.81077100014,5,3,5,5_1,5_0,5_1_0 +30534,2,30.0,0.0,2,111,340.0,20.0,0.0,0,54,0.0,0.0,579.7681847465008,360.0,0.0,37.970080958795776,42,2,1,2,2,1,1,2,2,2,10.0,2,,2,130557,1,2,0,1,1,329.0,200.0,290.0,12,1.0,0.0,2.0,1.0,1.0,1,1,284.330354069801,340.0,18593.56506469914,0,1,2,3,54.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.01936153710960352,18593.56506469914,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +30535,2,89.0,0.0,8,112,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2003.0,6,130558,2,1,0,0,1,,210.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1981.13832808391,1000.0,16489.26518769246,0,5,0,1,52.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06064551625662477,16489.26518769246,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +30536,2,81.0,0.0,2,111,260.0,920.0,0.0,0,78,0.0,0.0,443.3521412767359,1180.0,0.0,1746.6237241046058,50,0,0,0,0,0,0,0,0,0,,1,,2,130559,2,3,3,0,1,,80.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,886.094888833132,260.0,15552.847099739403,0,5,0,1,60.0,4,3,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07587035302493082,15552.847099739403,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +30537,1,33.0,407.0,2,111,120.0,370.0,0.0,85,64,0.0,0.0,204.62406520464734,490.0,0.0,702.446497737722,71,1,2,2,2,1,2,2,2,0,,2,,2,130560,2,1,0,1,1,720.0,0.0,365.0,42,1.0,0.0,3.0,6.0,2.6999999999999997,2,2,238.635595497328,120.0,15978.875359060787,6,4,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.03066548733807768,5918.101984837329,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +30538,1,42.0,350.0,5,112,1500.0,0.0,0.0,0,56,0.0,0.0,2557.8008150580918,1620.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130561,2,3,3,0,1,,500.0,373.0,32,1.0,0.0,5.0,3.0,1.8,2,1,388.500060482393,1500.0,11344.090370025962,0,4,2,3,120.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14280563246220793,6302.272427792201,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +30539,2,40.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,432.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,10.0,2,2004.0,1,130562,2,1,0,0,1,,0.0,767.0,32,1.0,0.0,3.0,2.0,1.3,1,1,450.815278985534,0.0,27736.002853735867,0,1,2,3,70.0,9,7,7,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015575423837318083,21335.38681056605,6,3,6,6_0,6_3,6_1_0 +30541,2,47.0,0.0,2,120,1080.0,0.0,0.0,68,63,0.0,0.0,1841.6165868418261,1230.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,130564,1,1,3,0,2,,620.0,350.0,43,2.0,2.0,4.0,4.0,2.3,3,2,829.150997078496,1080.0,32641.215561940033,1,1,2,3,80.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.037682420180276364,14191.832853017406,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +30542,2,62.0,0.0,2,221,47.0,,,77,68,0.0,0.0,,299.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,130565,1,3,0,0,2,,102.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,78.290630917001,47.0,9725.139920598634,5,1,0,1,10.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030745058933979323,6483.426613732423,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +30543,0,38.0,0.0,2,111,20.0,,,0,42,0.0,0.0,,42.0,30.482962958723462,,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,130566,2,1,0,0,2,,170.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,114.35190669648205,20.0,27568.13076721286,0,1,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00152349828701303,27568.13076721286,7,4,7,7_0,7_3,7_0_1 +30544,2,42.0,0.0,5,111,1200.0,,,42,38,0.0,0.0,,1292.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,35.0,1,,3,130567,2,2,0,0,2,,250.0,,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,2,72.53217558220429,1200.0,101592.0,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012717536813922356,39073.846153846156,9,5,9,9_1,9_2,9_0_0 +30545,2,49.0,0.0,6,111,796.0,558.0,0.0,67,53,0.0,0.0,1357.3396325241606,1354.0,0.0,1059.3652587504023,50,0,0,0,0,0,0,0,0,2,5.0,8,,4,130568,2,1,0,0,1,,0.0,459.0,43,3.0,3.0,4.0,4.0,2.5,4,3,1897.78040788169,796.0,59171.528680606236,1,1,2,3,85.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02288262666507347,23668.611472242494,6,3,6,6_0,6_3,6_0_0 +30546,2,52.0,0.0,1,300,500.0,1200.0,0.0,0,52,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,1,5.0,1,,1,130569,2,1,4,0,2,,200.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1545.2941265216,500.0,28257.49719633416,0,1,0,1,100.0,0,0,4,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0601610251675276,28257.49719633416,8,4,8,8_1,8_0,8_1_0 +30547,2,41.0,0.0,9,120,840.0,0.0,0.0,46,55,0.0,0.0,1432.3684564325313,898.0,80.36417507299822,0.0,31,0,0,0,0,0,0,0,0,2,12.0,1,2007.0,6,130570,2,1,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,549.258346215012,840.0,42041.7808832475,1,1,1,2,105.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02135970411181674,20019.895658689285,5,3,5,5_1,5_0,5_0_0 +30548,2,94.0,0.0,1,111,1000.0,0.0,0.0,0,75,1054.6828510366015,0.0,1705.2005433720612,2060.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,130571,1,1,2,0,2,,1130.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1294.05541189574,1000.0,40888.78246236326,0,5,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050380565914286156,40888.78246236326,9,5,9,9_1,9_3,9_1_0 +30549,2,40.0,0.0,8,112,640.0,0.0,0.0,21,21,2636.7071275915036,0.0,1091.3283477581192,3215.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,130572,2,1,2,0,1,,365.0,,43,2.0,0.0,4.0,5.0,2.8,4,2,992.152582913218,640.0,41024.31021462704,1,1,0,1,153.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07836816714723714,14651.5393623668,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +30550,2,31.0,0.0,1,111,310.0,0.0,0.0,0,46,0.0,0.0,528.612168445339,310.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,1,130573,1,2,0,0,2,,0.0,,32,1.0,0.0,2.0,2.0,1.3,1,1,570.646889049538,310.0,37086.803229447556,0,1,1,2,42.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.00835876842989408,28528.31017649812,8,4,8,8_0,8_3,8_1_0 +30551,2,28.0,0.0,1,111,0.0,0.0,1300.0,42,22,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,10,0,0,0,0,0,0,0,0,0,,1,,1,130574,2,1,2,0,1,,460.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,628.447104711136,0.0,39710.88842861427,4,1,1,2,95.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03273661334313704,26473.92561907618,7,4,7,7_1,7_3,7_1_0 +30553,2,71.0,0.0,6,111,780.0,0.0,0.0,77,78,0.0,0.0,1330.0564238302077,780.0,0.0,0.0,70,2,2,1,1,2,2,2,2,0,,1,,4,130576,2,1,1,0,1,,270.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,837.317361122628,780.0,19866.299026298537,5,5,0,1,89.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.03926247153369908,13244.19935086569,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30554,2,78.0,0.0,2,111,447.0,1517.0,0.0,0,78,0.0,0.0,762.2246428873113,1964.0,0.0,2880.03064072466,50,0,0,0,0,0,0,0,0,0,,1,,2,130577,2,1,1,0,1,,170.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,264.815557660966,447.0,19243.27265424119,0,5,0,1,82.0,4,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10206164176378477,19243.27265424119,5,3,5,5_1,5_2,5_0_1 +30556,1,38.0,253.0,2,111,500.0,,,0,52,0.0,0.0,,540.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,0,,2,,2,130579,1,2,0,0,2,,600.0,359.0,12,1.0,0.0,3.0,1.0,1.0,1,1,129.65715919551994,500.0,9457.217981620985,0,4,2,3,71.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05709924430730347,9457.217981620985,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30557,2,40.0,0.0,5,111,750.0,0.0,0.0,33,37,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,3,130580,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,773.427269906162,750.0,90918.90862591437,1,1,1,2,82.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008249109138406766,50510.504792174645,10,5,10,10_0,10_4,10_0_0 +30558,2,30.0,0.0,2,111,0.0,0.0,0.0,38,38,0.0,0.0,0.0,753.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,2,130581,2,1,0,1,1,,0.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,344.268067486764,0.0,48131.86317129703,4,1,1,2,86.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015644522160302415,32087.908780864687,8,4,8,8_0,8_3,8_0_1 +30559,2,92.0,0.0,1,211,600.0,0.0,0.0,0,78,1792.9608467622227,0.0,1023.1203260232367,2420.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130582,2,2,3,0,1,,168.0,,21,0.0,3.0,4.0,2.0,1.5,2,2,1936.47661896596,600.0,21709.16630024746,0,5,0,1,70.0,2,3,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11147364972612582,14472.777533498307,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +30561,2,64.0,0.0,5,221,751.0,0.0,0.0,72,72,0.0,595.9472746546007,1280.605608072418,1321.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,130584,2,1,1,0,1,,403.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2231.62870461772,751.0,23696.77886974766,5,5,1,2,101.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05574597320847038,15797.852579831773,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +30562,1,65.0,158.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1354.0,0.0,0.0,71,2,2,1,2,2,2,2,1,0,,2,,2,130585,2,2,0,1,1,811.0,0.0,254.0,11,0.0,2.0,3.0,1.0,1.0,1,1,344.562885693302,0.0,10222.583481365315,0,5,2,3,65.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.13245184081579753,10222.583481365315,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30563,2,48.0,0.0,8,211,400.0,,,11,11,0.0,0.0,,476.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130586,2,2,0,0,1,,1200.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,103.9680425026478,400.0,68478.04193700981,1,1,1,2,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006951133334651321,29773.061711743398,8,4,8,8_1,8_2,8_0_0 +30564,2,70.0,0.0,5,120,0.0,0.0,0.0,52,78,421.8731404146406,0.0,0.0,3700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,130587,2,1,4,0,1,,127.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,1198.36525272937,0.0,42532.25764661304,1,5,0,1,106.0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08699279569737679,28354.83843107536,8,4,8,8_1,8_0,8_0_0 +30565,2,71.0,0.0,2,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,1267.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,130588,2,1,0,0,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,2062.91380761212,0.0,26141.184038741958,0,5,0,1,82.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04846758272778582,26141.184038741958,7,4,7,7_0,7_3,7_0_1 +30566,2,41.0,0.0,7,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,960.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,5,130589,2,1,1,0,1,,131.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,355.699071392928,0.0,12829.706975527402,0,4,1,2,70.0,8,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07482633873331596,12829.706975527402,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +30567,0,60.0,0.0,2,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1524.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,2,130590,1,3,1,0,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1087.74538417312,0.0,40653.38249914591,1,1,5,0,85.0,7,6,5,0,0,0,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03748765554826878,27102.254999430606,7,4,7,7_1,7_2,7_0_1 +30568,2,37.0,0.0,9,120,1078.0,0.0,0.0,46,64,0.0,0.0,1838.2061857550818,1108.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,130591,2,1,1,0,1,,330.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,635.162167178298,1078.0,43065.120528199375,1,1,1,2,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025728477858885195,23925.066960110762,6,3,6,6_1,6_0,6_0_0 +30569,2,51.0,0.0,7,120,280.0,0.0,0.0,56,47,0.0,0.0,477.4561521441771,280.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,5,130592,2,1,2,0,1,,980.0,,43,3.0,1.0,8.0,4.0,2.5,4,4,1267.72363004629,280.0,51496.63273456388,1,1,0,1,150.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0054372487118379605,20598.653093825553,5,3,5,5_1,5_0,5_0_0 +30570,2,32.0,0.0,2,111,300.0,0.0,0.0,0,54,0.0,0.0,511.56016301161833,300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,130593,1,2,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1434.22296767329,300.0,20336.28334708996,0,1,1,2,32.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014751958107572728,20336.28334708996,5,3,5,5_0,5_3,5_0_1 +30571,2,36.0,0.0,9,300,1600.0,0.0,0.0,54,47,0.0,0.0,2728.320869395298,1660.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,130594,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1336.63185258785,1600.0,46700.897047726314,1,1,1,2,98.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035545355762728735,25944.942804292397,7,4,7,7_1,7_0,7_0_0 +30572,2,38.0,0.0,5,111,360.0,100.0,0.0,0,46,0.0,0.0,613.872195613942,460.0,0.0,189.8504047939789,30,0,0,0,0,0,0,0,0,3,75.0,2,,3,130595,2,1,0,1,1,564.0,250.0,256.0,12,1.0,0.0,2.0,1.0,1.0,1,1,346.249898167556,360.0,26072.602234536436,0,1,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017643041375849787,26072.602234536436,7,4,7,7_0,7_4,7_0_0 +30573,2,60.0,0.0,5,111,1500.0,0.0,0.0,77,52,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,15.0,2,,3,130596,2,3,0,0,1,,364.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,1784.03701204457,1500.0,47084.13979987734,5,1,0,1,99.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.031857861402490945,31389.42653325156,8,4,8,8_0,8_2,8_0_0 +30574,1,36.0,300.0,2,111,546.0,,,0,85,0.0,0.0,,626.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,2,130597,2,2,0,0,2,,600.0,450.0,31,1.0,0.0,4.0,4.0,2.3,3,2,95.35121344623019,546.0,11736.192506745996,0,6,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.0533392750366163,5102.69239423739,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +30575,2,25.0,0.0,2,111,135.0,64.0,0.0,0,53,0.0,0.0,230.20207335522826,199.0,0.0,121.5042590681465,50,0,0,0,0,0,0,0,0,0,,2,,2,130598,2,1,0,1,1,300.0,0.0,241.0,12,1.0,0.0,2.0,1.0,1.0,1,1,522.341688135092,135.0,14106.05359509019,0,1,2,3,55.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014107418397252137,14106.05359509019,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +30576,2,70.0,0.0,2,211,600.0,0.0,0.0,77,78,824.7619895106224,0.0,1023.1203260232367,1592.0,290.9737373332694,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,130599,1,2,5,0,2,,282.0,347.0,41,0.0,2.0,5.0,2.0,1.5,2,2,1393.65134998846,600.0,14446.873296908914,5,5,2,3,100.0,1,3,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.11019685486828683,9631.248864605943,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +30577,2,65.0,0.0,2,111,1325.0,190.0,0.0,77,74,0.0,0.0,2259.390719967981,1515.0,0.0,360.7157691085599,50,0,0,0,0,0,0,0,0,0,,1,,2,130600,2,1,2,0,1,,264.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1526.37423825274,1325.0,54284.34379277726,5,5,0,1,100.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027908599315178174,36189.562528518174,9,5,9,9_1,9_3,9_0_1 +30578,2,47.0,0.0,1,112,663.0,0.0,0.0,53,67,0.0,463.51454695357836,1130.5479602556766,1863.0,1177.7508415870427,0.0,71,1,2,2,1,1,2,2,2,2,25.0,1,,1,130601,2,1,2,0,1,,150.0,,42,1.0,0.0,7.0,4.0,2.1,2,2,1986.95605487421,663.0,47776.99713465377,3,1,1,2,150.0,8,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.03899366037487364,22750.951016501796,6,3,6,6_1,6_1,6_1_0 +30579,2,52.0,0.0,9,111,720.0,,,0,37,0.0,0.0,,720.0,0.0,,20,0,0,0,0,0,0,0,0,2,20.0,2,2008.0,6,130602,2,2,0,0,2,,167.0,579.0,12,1.0,2.0,2.0,1.0,1.0,1,1,100.89471857752025,720.0,40541.57108017114,0,1,2,3,23.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01775954855267441,40541.57108017114,9,5,9,9_0,9_3,9_0_0 +30580,2,30.0,0.0,7,120,492.0,,,0,68,0.0,0.0,,748.0,354.71084170150937,,71,0,0,0,0,0,0,0,0,0,,1,,5,130603,2,3,0,0,2,,460.0,,22,2.0,1.0,3.0,3.0,1.8,2,2,141.80592566732275,492.0,22347.978571761007,0,1,0,1,36.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033470588742427726,12415.543650978336,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30581,2,44.0,0.0,7,111,840.0,,,11,56,0.0,0.0,,940.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,2,5.0,1,,5,130604,1,1,0,0,1,,800.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,83.42232159124227,840.0,43886.461472817544,1,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021418906160438986,17554.58458912702,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +30582,2,53.0,0.0,8,111,780.0,,,0,52,0.0,0.0,,964.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,2,30.0,2,2000.0,6,130605,2,1,0,0,2,,800.0,455.0,12,1.0,2.0,4.0,1.0,1.0,1,1,31.115887270523647,780.0,21488.243439659684,0,1,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0448617404538892,21488.243439659684,6,3,6,6_0,6_2,6_0_0 +30583,2,66.0,0.0,7,111,470.0,0.0,0.0,0,74,0.0,0.0,801.4442553848687,470.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,5,130606,2,1,0,0,1,,215.0,650.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1574.13820498119,470.0,26311.047989136216,0,5,2,3,63.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.017863218530636337,26311.047989136216,7,4,7,7_0,7_2,7_0_0 +30584,1,46.0,121.0,2,111,700.0,170.0,0.0,63,67,0.0,0.0,1193.6403803604428,870.0,0.0,322.74568814976413,71,0,0,0,0,0,0,0,0,0,,2,,2,130607,2,3,0,1,1,,600.0,495.0,43,2.0,0.0,4.0,5.0,2.4,2,2,281.077478193332,700.0,35315.67425738466,1,1,2,3,84.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024634953693913386,14714.864273910274,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +30585,1,50.0,258.0,2,111,0.0,0.0,500.0,0,85,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,31,2,2,2,2,1,2,2,2,0,,2,,2,130608,1,2,0,1,1,31.0,56.0,245.0,11,0.0,0.0,3.0,1.0,1.0,1,1,399.631664770093,0.0,14616.58793727275,0,7,2,3,60.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03420770990779487,14616.58793727275,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +30586,2,45.0,0.0,1,111,730.0,0.0,0.0,0,52,0.0,0.0,1244.7963966616046,730.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,1,130609,1,1,0,0,2,,225.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2169.65195779512,730.0,19533.43370496597,0,1,2,3,75.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03737182161753838,19533.43370496597,5,3,5,5_0,5_3,5_1_0 +30587,1,38.0,200.0,2,111,100.0,0.0,0.0,0,85,0.0,0.0,170.52005433720612,100.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,130610,2,1,0,1,1,360.0,60.0,185.0,11,0.0,0.0,1.0,1.0,1.0,1,1,264.415500297723,100.0,11018.304619866656,0,7,2,3,45.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.009075806437561553,11018.304619866656,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30588,2,42.0,0.0,1,111,360.0,550.0,0.0,0,37,0.0,0.0,613.872195613942,910.0,0.0,1044.177226366884,41,0,0,0,0,0,0,0,0,3,37.0,2,,1,130611,2,1,0,0,1,,0.0,390.0,12,1.0,0.0,3.0,1.0,1.0,1,1,993.768762822666,360.0,21451.708666434002,0,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04242086325850111,21451.708666434002,6,3,6,6_0,6_4,6_1_0 +30589,2,70.0,0.0,6,211,600.0,,,0,77,0.0,0.0,,600.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,4,130612,2,2,0,0,2,,400.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,43.66119205555409,600.0,7339.284046632265,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08175184339340545,7339.284046632265,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30590,0,48.0,0.0,2,111,600.0,600.0,0.0,52,47,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,1,5.0,2,,2,130613,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,174.064926716435,600.0,61191.15613588717,1,1,5,0,50.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019610677028803977,25496.315056619656,7,4,7,7_0,7_4,7_0_1 +30591,2,56.0,0.0,2,111,1770.0,0.0,0.0,56,47,0.0,0.0,3018.2049617685484,1770.0,0.0,0.0,42,2,2,2,2,1,2,2,2,2,20.0,1,,2,130614,1,1,3,0,2,,454.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,112.992994357987,1770.0,45046.0,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.03929316698485992,21450.47619047619,6,3,6,6_1,6_3,6_0_1 +30592,1,40.0,280.0,2,400,420.0,,,0,52,0.0,0.0,,489.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,130615,2,2,0,0,2,,645.0,332.0,12,1.0,0.0,2.0,1.0,1.0,1,1,68.7437666079308,420.0,21881.45756695687,0,1,3,4,25.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022347688608204856,21881.45756695687,6,3,6,6_0,6_1,6_0_1 +30593,1,41.0,113.0,8,112,590.0,1160.0,0.0,55,67,0.0,0.0,1006.0683205895161,1750.0,0.0,2202.2646956101553,50,0,0,0,0,0,0,0,0,2,3.0,1,2003.0,6,130616,1,1,1,0,1,,620.0,562.0,43,2.0,0.0,4.0,4.0,2.1,2,2,399.410654415927,590.0,24372.37232733919,4,1,2,3,89.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07180261225686983,11605.891584447234,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +30595,2,76.0,0.0,2,211,813.0,0.0,0.0,77,75,3892.834403176096,0.0,1386.3280417614858,4666.0,224.4654545142364,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,130618,1,1,2,0,2,,281.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,243.067338547446,813.0,36653.23476383763,5,5,0,1,95.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12730117901090443,24435.48984255842,7,4,7,7_1,7_1,7_0_1 +30596,1,31.0,438.0,1,221,0.0,0.0,0.0,85,81,0.0,0.0,0.0,785.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,130619,1,2,0,0,2,,271.0,360.0,42,1.0,3.0,3.0,2.0,1.5,2,2,3024.39702117278,0.0,11046.024960527317,7,4,2,3,60.0,1,1,5,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07106628880571764,7364.016640351544,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +30597,2,39.0,0.0,1,111,789.0,0.0,0.0,34,42,0.0,0.0,1345.4032287205562,789.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,1,130620,2,1,1,0,1,,317.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1314.17941273659,789.0,33896.128001246005,1,1,1,2,75.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023276994940867487,18831.182222914445,5,3,5,5_1,5_3,5_1_0 +30598,2,73.0,0.0,1,111,1437.0,0.0,0.0,86,75,0.0,0.0,2450.373180825652,1437.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,130621,2,1,2,0,1,,408.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,191.47081652669,1437.0,48547.75419320907,5,5,0,1,45.0,7,6,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.029599721426475576,32365.16946213938,8,4,8,8_1,8_2,8_1_0 +30599,0,68.0,0.0,1,300,1100.0,0.0,0.0,0,75,0.0,0.0,1875.7205977092674,1220.0,166.2707070475825,0.0,10,2,2,2,2,1,2,2,2,0,,1,,1,130622,1,2,3,0,2,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1420.42022436563,1100.0,23239.0,0,5,5,0,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.052497956022204056,23239.0,6,3,6,6_1,6_0,6_1_0 +30600,2,64.0,0.0,6,112,618.0,0.0,0.0,0,86,0.0,529.7309108040896,1053.8139358039339,1018.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,130623,2,1,2,0,1,,289.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1796.78170923464,618.0,19321.21947206636,0,5,0,1,80.0,9,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05268818572615319,19321.21947206636,5,3,5,5_1,5_1,5_0_0 +30601,1,47.0,240.0,1,111,0.0,0.0,1800.0,67,56,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,71,2,2,2,2,1,2,2,2,0,,2,,1,130624,1,2,0,0,1,,0.0,737.0,43,3.0,1.0,4.0,4.0,2.5,4,3,1711.19696547621,0.0,21001.77867092471,4,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0.0857070264478102,8400.711468369884,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +30602,2,49.0,0.0,1,111,250.0,,,0,52,0.0,0.0,,338.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,1,130625,2,1,0,0,2,,186.0,,32,1.0,1.0,5.0,3.0,1.8,2,2,80.36795017805649,250.0,29953.88165625409,0,4,0,1,104.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011284013333524965,16641.045364585603,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +30603,2,79.0,0.0,5,111,0.0,,,77,78,0.0,198.6490915515336,,1389.0,290.9737373332694,,71,0,0,0,0,0,0,0,0,0,,1,,3,130626,2,1,0,0,2,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,104.31808684736194,0.0,32579.285175286543,6,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0426344529208285,21719.523450191027,6,3,6,6_1,6_2,6_0_0 +30604,2,42.0,0.0,2,111,0.0,0.0,0.0,56,56,0.0,0.0,0.0,1242.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,2,130627,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.3,3,2,341.368080734818,0.0,40072.52679378371,1,1,1,2,76.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03099380297108358,17422.837736427704,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +30605,2,68.0,0.0,6,112,3000.0,0.0,0.0,77,74,0.0,132.4327277010224,5115.6016301161835,3100.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,4,130628,2,1,1,0,1,,640.0,,41,0.0,4.0,10.0,2.0,1.5,2,2,1053.64728884423,3000.0,77920.97421054837,5,7,0,1,310.0,7,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03978389684430235,51947.31614036558,10,5,10,10_1,10_2,10_0_0 +30607,2,63.0,0.0,8,111,460.0,1060.0,0.0,77,77,0.0,0.0,784.3922499511482,1520.0,0.0,2012.4142908161764,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130630,2,1,1,0,1,,130.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,362.414602296134,460.0,28098.738161311572,6,5,0,1,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0540949558401469,18732.49210754105,5,3,5,5_1,5_3,5_0_0 +30608,2,71.0,0.0,6,111,744.0,,,77,75,0.0,0.0,,744.0,0.0,,60,0,0,0,0,0,0,0,0,0,,1,,4,130631,2,2,0,0,2,,512.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,83.40809902514498,744.0,5110.0,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14559686888454013,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30609,2,68.0,0.0,2,111,517.0,,,75,74,0.0,0.0,,649.0,182.89777775234077,,31,0,0,0,0,0,0,0,0,0,,1,,2,130632,2,1,0,0,1,,260.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,136.21209811362166,517.0,58273.05345394208,6,5,0,1,85.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011137223150884952,38848.70230262805,9,5,9,9_1,9_2,9_0_1 +30610,2,73.0,0.0,2,111,420.0,240.0,0.0,56,78,0.0,0.0,716.1842282162656,660.0,0.0,455.6409715055494,71,1,2,2,1,2,2,2,2,0,,2,,2,130633,1,1,0,1,1,708.0,0.0,472.0,42,2.0,2.0,3.0,3.0,2.0,3,3,996.524196312178,420.0,31202.57986719356,1,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021152097128158465,15601.28993359678,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +30611,2,56.0,0.0,6,111,2300.0,0.0,0.0,56,45,0.0,0.0,3921.9612497557405,2376.0,105.3047811301356,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,130634,2,1,2,0,1,,405.0,,43,4.0,1.0,7.0,4.0,2.5,4,4,753.283416274487,2300.0,63731.4498913113,1,1,1,2,120.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03728143646585902,25492.579956524518,7,4,7,7_1,7_2,7_0_0 +30612,1,56.0,271.0,1,111,206.0,1064.0,0.0,0,78,0.0,0.0,351.2713119346446,1330.0,83.13535352379125,2020.0083070079354,50,0,0,0,0,0,0,0,0,0,,1,,1,130635,2,2,5,0,1,,259.0,370.0,11,0.0,3.0,4.0,1.0,1.0,1,1,320.163969338602,206.0,9368.046381248701,0,6,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1419719700216428,9368.046381248701,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +30613,2,74.0,0.0,5,112,340.0,1020.0,0.0,0,75,0.0,0.0,579.7681847465008,1360.0,0.0,1936.4741288985847,33,0,0,0,0,0,0,0,0,0,,1,,3,130636,2,1,1,0,1,,290.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1017.26485118917,340.0,20661.27481891587,0,5,0,1,98.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06582362472401214,20661.27481891587,5,3,5,5_1,5_2,5_0_0 +30614,2,41.0,0.0,2,112,250.0,900.0,0.0,43,47,0.0,0.0,426.3001358430153,1150.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,0,,2,,2,130637,1,3,0,0,1,,0.0,582.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2631.92045340185,250.0,35111.41238045006,4,1,2,3,66.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0327528835222908,19506.340211361145,5,3,5,5_0,5_1,5_0_1 +30615,2,42.0,0.0,6,112,2260.0,0.0,0.0,56,46,0.0,331.081819252556,3853.7532280208584,2510.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,130638,2,1,2,0,1,,540.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,612.652943445759,2260.0,96479.04312701333,1,1,0,1,156.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02601601258312253,37107.324279620516,9,5,9,9_1,9_0,9_0_0 +30616,1,37.0,154.0,6,111,355.0,69.0,0.0,0,67,0.0,0.0,605.3461928970817,424.0,0.0,130.99677930784543,50,0,0,0,0,0,0,0,0,0,,2,,4,130639,2,1,0,1,1,,118.0,300.0,32,1.0,0.0,4.0,3.0,1.6,1,1,408.771938259238,355.0,17423.34870125957,0,1,2,3,74.0,5,4,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.024335161240809478,10889.59293828723,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +30617,1,37.0,78.0,2,111,200.0,300.0,0.0,53,52,0.0,0.0,341.04010867441224,500.0,0.0,569.5512143819367,31,0,0,0,0,0,0,0,0,1,15.0,2,,2,130640,1,1,0,0,1,,0.0,415.0,43,2.0,0.0,2.0,3.0,1.8,2,2,1396.19022720762,200.0,21947.148938313974,4,1,2,3,47.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022782002409758608,12192.860521285542,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30618,2,44.0,0.0,9,111,600.0,,,22,46,0.0,0.0,,820.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,0,,1,2010.0,6,130641,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,212.73492984990358,600.0,38176.56332262047,4,1,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021479146592384115,21209.20184590026,5,3,5,5_1,5_2,5_0_0 +30619,1,45.0,285.0,2,111,0.0,450.0,0.0,85,68,0.0,0.0,0.0,582.0,0.0,854.326821572905,71,2,2,2,2,2,1,2,2,0,,2,,2,130642,1,3,0,1,1,,0.0,220.0,42,1.0,0.0,3.0,5.0,2.4000000000000004,2,2,329.964593988503,0.0,16411.067997330403,6,4,2,3,69.0,9,7,7,0,1,0,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.035463871095694335,6837.944998887667,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30620,2,48.0,0.0,8,111,800.0,,,63,56,0.0,0.0,,1052.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130643,1,1,0,0,2,,700.0,,43,2.0,0.0,4.0,6.0,3.5,6,4,140.72683506455792,800.0,12428.935395149552,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08464119947156115,3551.1243986141576,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30621,2,51.0,0.0,8,111,432.0,1262.0,0.0,85,38,0.0,0.0,736.6466347367304,1694.0,0.0,2395.912108500014,20,0,0,0,0,0,0,0,0,0,,1,,6,130644,2,1,2,0,1,,278.0,,42,1.0,0.0,5.0,5.0,2.4,3,2,227.063889740871,432.0,92462.8926695798,6,1,1,2,126.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018320863116986653,38526.20527899158,9,5,9,9_1,9_2,9_0_0 +30622,2,54.0,0.0,2,112,1200.0,0.0,0.0,77,38,0.0,0.0,2046.2406520464733,1323.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,60.0,2,,2,130645,2,1,0,1,1,750.0,0.0,282.0,42,1.0,0.0,3.0,2.0,1.5,2,2,217.905217718517,1200.0,49418.17242277629,5,1,2,3,65.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02677152826862217,32945.44828185086,8,4,8,8_0,8_2,8_0_1 +30623,2,72.0,0.0,5,300,1800.0,0.0,0.0,0,75,0.0,0.0,3069.36097806971,1950.0,207.83838380947813,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,130646,2,1,3,0,1,,380.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1033.89361372069,1800.0,18994.240267447578,0,5,0,1,200.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10266270051042366,18994.240267447578,5,3,5,5_1,5_0,5_0_0 +30625,1,65.0,160.0,2,211,262.0,868.0,0.0,0,72,0.0,0.0,446.76254236348,1130.0,0.0,1647.9015136117368,70,0,0,0,0,0,0,0,0,0,,2,,2,130648,1,1,0,0,2,,0.0,283.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1522.11098579753,262.0,11811.257188895295,0,5,2,3,68.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09567144139934597,11811.257188895295,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30626,2,48.0,0.0,5,221,1200.0,0.0,0.0,0,21,0.0,238.3789098618403,2046.2406520464733,1569.0,261.87636359994247,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,130649,2,1,2,0,1,,536.0,,22,1.0,3.0,5.0,2.0,1.5,2,2,525.225879878088,1200.0,72349.00534278226,0,1,0,1,95.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021686545551887506,48232.67022852151,10,5,10,10_1,10_1,10_0_0 +30627,2,65.0,0.0,1,112,1673.0,0.0,0.0,75,75,0.0,0.0,2852.8005090614583,1673.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,130650,2,1,1,0,1,,502.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,993.563890325153,1673.0,33200.85468490311,5,5,1,2,125.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05039026904210199,22133.90312326874,6,3,6,6_1,6_1,6_1_0 +30628,0,91.0,0.0,1,112,760.0,0.0,0.0,86,86,2168.4279417312528,0.0,1295.9524129627664,2906.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130651,2,2,3,0,1,,481.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1061.41472484544,760.0,26482.0,5,5,5,0,150.0,4,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10973491428139868,17654.666666666668,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +30629,2,62.0,0.0,1,111,630.0,1500.0,0.0,52,78,0.0,0.0,1074.2763423243985,2130.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,2,,1,130652,2,1,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,294.640904829443,630.0,42460.92515801209,1,5,1,2,95.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.050163768030807576,28307.283438674727,8,4,8,8_0,8_3,8_1_0 +30630,2,76.0,0.0,9,111,810.0,1363.0,0.0,0,75,0.0,0.0,1381.2124401313695,2173.0,0.0,2587.6610173419326,31,0,0,0,0,0,0,0,0,0,,2,2009.0,6,130653,2,1,0,0,1,,422.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,3247.8787204572,810.0,35477.400138571335,0,5,0,1,110.0,4,4,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06125026049012807,35477.400138571335,9,5,9,9_0,9_2,9_0_0 +30631,0,59.0,0.0,1,111,300.0,0.0,0.0,0,64,0.0,662.163638505112,511.56016301161833,950.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130654,1,2,4,0,2,,300.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,430.848884779502,300.0,18864.925236003415,0,4,5,0,50.0,7,6,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05035800503396323,18864.925236003415,5,3,5,5_1,5_2,5_1_0 +30632,2,59.0,0.0,2,111,0.0,0.0,0.0,0,31,0.0,0.0,0.0,1375.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,130655,2,1,0,1,2,,0.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,936.613974174487,0.0,260002.19510556536,0,1,1,2,80.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005288416889871743,260002.19510556536,10,5,10,10_0,10_4,10_0_1 +30633,1,28.0,286.0,7,111,444.0,704.0,0.0,52,63,0.0,0.0,757.1090412571951,1148.0,0.0,1336.5468497496115,71,0,0,0,0,0,0,0,0,2,20.0,2,,5,130656,2,1,0,0,1,,0.0,274.0,43,2.0,0.0,3.0,2.0,1.5,2,2,309.717572643521,444.0,24902.37051745369,1,1,2,3,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04610002887859147,16601.580344969127,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +30634,2,67.0,0.0,1,111,1300.0,1000.0,0.0,86,74,0.0,0.0,2216.7607063836795,2300.0,0.0,1898.504047939789,42,0,0,0,0,0,0,0,0,0,,2,,1,130657,2,2,0,0,1,,0.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,900.07607389063,1300.0,42119.96931189543,6,5,0,1,116.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05460592772441643,28079.97954126362,8,4,8,8_0,8_4,8_1_0 +30635,2,74.0,0.0,2,112,800.0,0.0,0.0,0,78,0.0,529.7309108040896,1364.160434697649,1290.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,130658,2,1,1,0,1,,300.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,830.935717204448,800.0,19968.383257596255,0,5,0,1,95.0,9,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06460212543793528,19968.383257596255,5,3,5,5_1,5_0,5_0_1 +30636,2,64.0,0.0,5,111,250.0,600.0,0.0,77,75,0.0,0.0,426.3001358430153,850.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,2,,3,130659,2,1,0,0,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,934.932555612889,250.0,45763.55434417933,5,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018573732136435588,30509.036229452886,8,4,8,8_0,8_4,8_0_0 +30637,2,73.0,0.0,7,111,1200.0,,,75,31,0.0,0.0,,1284.0,116.38949493330776,,10,0,0,0,0,0,0,0,0,2,45.0,1,,5,130660,2,2,0,0,2,,900.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,141.65577588502043,1200.0,95646.72444464905,5,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013424401174794577,63764.48296309937,10,5,10,10_1,10_3,10_0_0 +30638,2,31.0,0.0,1,111,0.0,0.0,0.0,37,38,0.0,0.0,0.0,595.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,40.0,2,,1,130661,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,900.971712167642,0.0,60781.95383135706,1,1,1,2,66.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009789089729673068,33767.7521285317,9,5,9,9_0,9_4,9_1_0 +30639,2,49.0,0.0,2,111,0.0,0.0,1300.0,56,52,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,42,0,0,0,0,0,0,0,0,3,50.0,2,,2,130662,2,1,0,1,1,530.0,0.0,1080.0,43,2.0,0.0,4.0,5.0,2.8,4,3,852.809968647156,0.0,54215.67286893916,1,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023978306109796274,19362.740310335415,5,3,5,5_0,5_4,5_0_1 +30640,0,41.0,0.0,2,112,0.0,0.0,0.0,22,22,0.0,0.0,0.0,1077.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,130663,2,2,3,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1103.16462513212,0.0,89002.26028462958,1,1,5,0,74.0,6,1,5,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.012100816277651262,42382.02870696646,9,5,9,9_1,9_1,9_0_1 +30641,2,56.0,0.0,7,112,947.0,0.0,0.0,0,75,0.0,397.2981831030672,1614.8249145733419,1269.0,30.482962958723462,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,130664,2,1,1,0,1,,316.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1077.47398557953,947.0,24687.227468689925,0,7,0,1,127.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0514030990968684,24687.227468689925,7,4,7,7_1,7_1,7_0_0 +30642,2,56.0,0.0,7,211,540.0,,,55,21,0.0,0.0,,670.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,0,,1,,5,130665,2,1,0,0,2,,387.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,79.08436685730307,540.0,51253.647336359296,1,1,0,1,108.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013072240412531628,34169.09822423953,9,5,9,9_1,9_2,9_0_0 +30643,1,45.0,428.0,2,111,250.0,163.0,0.0,0,64,0.0,0.0,426.3001358430153,413.0,0.0,309.4561598141856,50,0,0,0,0,0,0,0,0,0,,2,,2,130666,2,1,0,1,1,476.0,0.0,389.0,32,1.0,0.0,3.0,4.0,2.1,3,1,263.061359384598,250.0,13824.005652366666,0,4,2,3,87.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.029875566488161448,6582.859834460317,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30644,2,55.0,0.0,1,111,300.0,0.0,0.0,0,63,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,15.0,2,,1,130667,2,1,0,1,1,,0.0,437.0,12,1.0,3.0,3.0,1.0,1.0,1,1,288.15430474431,300.0,18897.769103152197,0,1,2,3,60.0,7,6,5,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015874889695311138,18897.769103152197,5,3,5,5_0,5_2,5_1_0 +30645,2,87.0,0.0,2,111,230.0,1210.0,0.0,86,77,0.0,0.0,392.1961249755741,1440.0,0.0,2297.1898980071446,70,0,0,0,0,0,0,0,0,0,,2,,2,130668,2,1,0,0,1,,332.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1665.41719252916,230.0,29039.09180615042,5,5,0,1,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04958832767955267,19359.394537433614,5,3,5,5_0,5_3,5_0_1 +30646,2,76.0,0.0,2,111,2.0,0.0,0.0,0,74,1582.0242765549024,0.0,3.4104010867441223,1528.0,36.025319860309544,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,130669,2,1,1,0,1,,136.0,,21,1.0,1.0,7.0,2.0,1.5,2,2,1417.53932127267,2.0,72120.91526718243,0,5,0,1,185.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02118664182698322,48080.61017812162,10,5,10,10_1,10_3,10_0_1 +30647,2,39.0,0.0,2,111,573.0,0.0,0.0,34,34,0.0,0.0,977.0799113521911,573.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,2,,2,130670,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,670.381837009123,573.0,73319.8272155033,1,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007815075699998928,34914.203435953954,9,5,9,9_0,9_4,9_0_1 +30648,2,39.0,0.0,1,111,500.0,980.0,0.0,42,34,0.0,0.0,852.6002716860306,1685.0,284.0457912062868,1860.5339669809932,20,2,2,2,1,1,2,2,2,1,10.0,2,,1,130671,1,2,0,1,2,,624.0,510.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1516.07242405542,500.0,63078.58347169896,1,1,2,3,105.0,5,4,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.026712711466578786,30037.420700809027,8,4,8,8_0,8_2,8_1_0 +30649,2,74.0,0.0,2,111,313.0,1751.0,0.0,86,78,0.0,0.0,533.7277700754552,2064.0,0.0,3324.2805879425705,71,0,0,0,0,0,0,0,0,0,,2,,2,130672,2,3,0,0,1,,417.0,382.0,41,0.0,5.0,5.0,2.0,1.5,2,2,767.767375812672,313.0,24634.955467189902,5,5,2,3,134.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.08378338669006084,16423.303644793268,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +30650,2,73.0,0.0,7,221,914.0,1794.0,0.0,74,74,0.0,132.4327277010224,1558.553296642064,2808.0,0.0,3405.9162620039815,70,0,0,0,0,0,0,0,0,0,,1,,5,130673,2,1,2,0,1,,400.0,,41,0.0,4.0,8.0,2.0,1.5,2,2,1851.45743201865,914.0,109252.48753155288,5,5,0,1,178.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02570193195087691,72834.99168770191,10,5,10,10_1,10_1,10_0_0 +30651,1,39.0,293.0,1,120,2100.0,0.0,0.0,52,85,0.0,2383.789098618403,3580.9211410813286,4050.0,207.83838380947813,0.0,50,2,2,2,2,2,2,2,1,0,,1,,1,130674,1,3,4,0,2,,252.0,359.0,42,1.0,0.0,7.0,5.0,2.5999999999999996,3,2,90.2152715615296,2100.0,34129.09177233071,1,7,2,3,100.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.11866708985451041,13126.573758588735,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +30652,2,58.0,0.0,2,400,569.0,0.0,0.0,0,75,649.6846362385465,198.6490915515336,970.2591091787028,1335.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,130675,2,1,1,0,1,,81.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1048.87780119117,569.0,23761.53797816783,0,5,0,1,95.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05618323196194631,23761.53797816783,6,3,6,6_1,6_0,6_0_1 +30653,2,42.0,0.0,6,112,1000.0,0.0,0.0,54,53,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,30,0,0,0,0,0,0,0,0,2,25.0,1,,4,130676,2,1,1,0,1,,692.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1090.0687525642,1000.0,58970.93251931442,1,1,1,2,110.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016957506983164554,28081.39643776877,8,4,8,8_1,8_1,8_0_0 +30654,2,36.0,0.0,9,120,0.0,,,85,53,0.0,0.0,,1428.0,0.0,,41,0,0,0,0,0,0,0,0,2,35.0,1,2012.0,6,130677,2,1,0,0,1,,74.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,246.7501388042551,0.0,45615.45973914372,6,1,1,2,142.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03130517609964148,16894.61471820138,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +30655,2,46.0,0.0,1,111,615.0,1245.0,0.0,85,37,0.0,0.0,1048.6983341738176,1860.0,0.0,2363.637539685037,31,0,0,0,0,0,0,0,0,0,,1,,1,130678,2,1,1,0,1,,396.0,,42,1.0,0.0,7.0,3.0,2.0,3,3,1044.69306180325,615.0,98871.5060077972,6,1,0,1,150.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.018812295625934096,49435.7530038986,10,5,10,10_1,10_3,10_1_0 +30656,2,65.0,0.0,1,111,220.0,1980.0,0.0,86,78,0.0,0.0,375.14411954185346,2200.0,0.0,3759.038014920782,71,1,2,2,1,1,2,2,2,0,,1,,1,130679,2,2,2,0,2,,480.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,493.196018895375,220.0,28123.777435707314,5,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.07822562260810574,18749.184957138208,5,3,5,5_1,5_3,5_1_0 +30657,2,54.0,0.0,1,112,850.0,0.0,0.0,34,52,0.0,0.0,1449.420461866252,1850.0,1385.589225396521,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,130680,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,838.746319803302,850.0,49767.07269454649,1,1,0,1,140.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03717317294016218,17773.954533766606,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +30658,2,82.0,0.0,9,112,250.0,,,0,78,0.0,0.0,,350.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,130681,2,1,0,0,2,,250.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,110.76353033010476,250.0,13934.511495436042,0,5,0,1,30.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025117493362765905,13934.511495436042,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +30659,2,71.0,0.0,5,111,410.0,950.0,0.0,75,78,0.0,0.0,699.1322227825451,1360.0,0.0,1803.5788455427996,71,0,0,0,0,0,0,0,0,0,,1,,3,130682,2,1,1,0,1,,612.0,,41,1.0,3.0,5.0,3.0,2.0,3,3,2325.78965645582,410.0,45934.38518262444,5,5,0,1,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02960744972623354,22967.19259131222,6,3,6,6_1,6_3,6_0_0 +30660,2,69.0,0.0,1,112,1000.0,3500.0,0.0,77,74,0.0,0.0,1705.2005433720612,4500.0,0.0,6644.764167789262,41,0,0,0,0,0,0,0,0,0,,1,,1,130683,2,1,4,0,1,,500.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,820.050399812959,1000.0,84037.48267728095,5,5,0,1,220.0,10,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053547534464838856,56024.98845152063,10,5,10,10_1,10_2,10_1_0 +30661,2,61.0,0.0,5,111,395.0,0.0,0.0,0,63,0.0,0.0,673.5542146319642,395.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,130684,2,2,0,1,1,300.0,0.0,295.0,12,1.0,3.0,1.0,1.0,1.0,1,1,226.242263062594,395.0,15896.078305759496,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024848896212148305,15896.078305759496,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +30662,2,60.0,0.0,1,111,1200.0,150.0,0.0,43,74,0.0,0.0,2046.2406520464733,1350.0,0.0,284.77560719096834,44,0,0,0,0,0,0,0,0,0,,2,,1,130685,2,1,0,0,1,,0.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,639.273190980729,1200.0,57840.579273439136,1,5,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.023340015210047024,38560.38618229276,9,5,9,9_0,9_3,9_1_0 +30663,2,47.0,0.0,7,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,1561.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,50.0,1,,5,130686,2,1,1,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,476.77119168513,0.0,72898.38009149546,1,1,1,2,136.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021413370201652956,34713.51432928355,9,5,9,9_1,9_4,9_0_0 +30664,2,26.0,0.0,7,111,0.0,,,38,38,0.0,0.0,,1294.0,0.0,,12,0,0,0,0,0,0,0,0,2,20.0,1,,5,130687,2,2,0,0,2,,643.0,950.0,43,2.0,0.0,3.0,2.0,1.5,2,2,141.23712225228473,0.0,57145.5968400855,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022643914344286056,38097.064560057,9,5,9,9_1,9_3,9_0_0 +30665,1,46.0,270.0,2,111,630.0,0.0,0.0,0,56,0.0,0.0,1074.2763423243985,630.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130688,1,2,0,0,1,,0.0,410.0,12,1.0,1.0,1.0,1.0,1.0,1,1,2617.14697812527,630.0,10383.953856390162,0,4,2,3,23.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0606705315444276,10383.953856390162,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30666,1,47.0,56.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1952.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,20.0,2,,2,130689,1,1,0,1,1,620.0,0.0,400.0,32,1.0,3.0,3.0,2.0,1.5,2,1,2015.72760787361,0.0,15676.85572218679,0,1,2,3,65.0,8,7,4,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12451476460534219,10451.237148124526,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30667,1,40.0,171.0,1,400,120.0,0.0,0.0,62,47,1746.5548013166122,0.0,204.62406520464734,1896.0,166.2707070475825,0.0,42,2,2,1,2,1,2,2,2,0,,1,,1,130690,1,3,4,0,1,,448.0,427.0,43,2.0,1.0,5.0,5.0,2.8,4,2,1252.31685003438,120.0,40526.296572530424,4,1,2,3,180.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.046784437768862125,14473.677347332296,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +30668,2,61.0,0.0,6,111,1594.0,0.0,0.0,22,22,0.0,0.0,2718.0896661350657,1594.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,4,130691,2,2,2,0,1,,430.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,652.577207338957,1594.0,422464.00225545885,1,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003773102540074237,281642.6681703059,10,5,10,10_1,10_4,10_0_0 +30669,0,66.0,0.0,5,112,2336.0,0.0,0.0,77,72,0.0,0.0,3983.348469317135,2336.0,0.0,0.0,31,2,2,1,1,1,1,2,2,0,,1,,3,130692,2,1,2,0,1,,352.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,513.647824049272,2336.0,58636.64986414593,5,5,5,0,172.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.039838565221789295,39091.099909430624,9,5,9,9_1,9_1,9_0_0 +30670,2,47.0,0.0,2,111,1400.0,,,52,45,0.0,0.0,,1488.0,121.93185183489385,,42,0,0,0,0,0,0,0,0,2,5.0,1,,2,130693,2,1,0,0,1,,204.0,,43,2.0,3.0,6.0,3.0,1.8,2,2,125.69809192701887,1400.0,76629.7442018192,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01941804733265278,42572.080112121774,9,5,9,9_1,9_2,9_0_1 +30671,2,25.0,0.0,7,111,780.0,0.0,0.0,67,62,0.0,0.0,1330.0564238302077,830.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,130694,2,1,0,0,1,,252.0,428.0,43,2.0,0.0,3.0,2.0,1.5,2,2,680.659634073039,780.0,34401.14968746555,4,1,2,3,72.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0241271006213615,22934.0997916437,6,3,6,6_0,6_3,6_0_0 +30672,1,54.0,195.0,2,111,320.0,170.0,0.0,0,77,0.0,0.0,545.6641738790596,490.0,0.0,322.74568814976413,71,2,1,1,2,1,2,2,2,0,,2,,2,130695,2,3,0,1,1,831.0,476.0,298.0,31,0.0,2.0,5.0,4.0,2.5,4,2,269.716670255451,320.0,16819.995706169237,0,7,2,3,68.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.029131993168124166,6727.9982824676945,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30673,1,47.0,425.0,6,111,700.0,0.0,0.0,0,85,0.0,927.0290939071567,1193.6403803604428,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,4,130696,2,1,1,0,1,,600.0,527.0,31,1.0,2.0,5.0,3.0,1.8,2,1,272.946512468489,700.0,16797.32127286029,0,6,2,3,90.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08334662278931364,9331.845151589048,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +30674,2,33.0,0.0,9,111,0.0,,,0,47,0.0,0.0,,23.0,31.86855218411998,,31,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,130697,2,1,0,0,2,,0.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,195.8815257513612,0.0,30884.10031074506,0,1,0,1,163.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0007447197674072423,30884.10031074506,8,4,8,8_1,8_3,8_0_0 +30675,2,33.0,0.0,8,300,1050.0,0.0,0.0,65,38,0.0,768.1098206659299,1790.4605705406643,1690.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,1999.0,6,130698,2,2,3,0,1,,437.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1122.48394326054,1050.0,54736.239338247295,1,1,1,2,95.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03087534000201402,26064.875875355854,7,4,7,7_1,7_0,7_0_0 +30676,1,28.0,300.0,7,111,350.0,,,0,52,0.0,0.0,,442.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,1,,5,130699,1,2,0,0,2,,400.0,450.0,32,1.0,0.0,3.0,3.0,1.6,1,1,109.07179789784979,350.0,14686.899761798131,0,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030094846915867116,9179.312351123832,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +30677,2,50.0,0.0,7,112,1485.0,0.0,0.0,31,43,0.0,463.51454695357836,2532.222806907511,1835.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,5,130700,2,1,2,0,1,,350.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,511.734130762009,1485.0,52624.98095211393,1,1,1,2,100.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03486937129097979,35083.320634742624,9,5,9,9_1,9_1,9_0_0 +30678,2,79.0,0.0,1,300,367.0,0.0,0.0,0,78,2003.897416969543,0.0,625.8085994175465,2360.0,128.85979796187644,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,130701,2,1,1,0,1,,141.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1344.03354668052,367.0,11441.137722411737,0,5,0,1,110.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2062731921648893,11441.137722411737,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +30679,2,65.0,0.0,1,300,264.0,0.0,0.0,11,11,0.0,0.0,450.1729434502241,334.0,96.99124577775646,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,130702,1,2,1,0,2,,97.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,1075.38860370188,264.0,20656.153976884623,1,1,0,1,91.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.016169515408036,13770.769317923083,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30680,2,56.0,0.0,7,111,480.0,,,0,11,0.0,0.0,,774.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,130703,2,1,0,0,2,,450.0,,32,2.0,1.0,4.0,3.0,2.0,3,3,144.30725590884995,480.0,11637.940112739145,0,1,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0665066147876773,5818.970056369572,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30681,2,49.0,0.0,9,112,1010.0,0.0,0.0,47,37,0.0,0.0,1722.2525488057818,1010.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,130704,2,1,1,0,1,,385.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,3488.7626737953,1010.0,52186.59409508713,1,1,0,1,213.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01935362936618778,34791.06273005809,9,5,9,9_1,9_1,9_0_0 +30682,2,57.0,0.0,5,111,302.0,718.0,0.0,67,62,0.0,264.8654554020448,514.9705640983625,1220.0,0.0,1363.1259064207684,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,130705,2,1,1,0,2,,315.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1193.99898308644,302.0,40211.42340125565,1,1,0,1,100.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030339637267401583,26807.6156008371,7,4,7,7_1,7_2,7_0_0 +30683,2,50.0,0.0,2,111,0.0,0.0,0.0,0,65,0.0,0.0,0.0,351.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130706,2,3,0,1,1,1119.0,0.0,304.0,32,2.0,1.0,3.0,2.0,1.5,2,2,981.286968160667,0.0,52520.6486733578,0,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0066830857741871745,35013.76578223853,9,5,9,9_0,9_4,9_0_1 +30685,2,72.0,0.0,2,111,240.0,,,0,77,0.0,0.0,,332.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,2,130708,2,2,0,0,2,,240.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,104.91903124477543,240.0,9361.119658119658,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035465842989415214,9361.119658119658,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30686,2,35.0,0.0,1,112,2500.0,0.0,0.0,42,38,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,130709,2,1,2,0,1,,530.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,713.126907981755,2500.0,64101.00586988502,1,1,1,2,110.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03900094805180761,26708.752445785427,7,4,7,7_1,7_0,7_1_0 +30687,1,41.0,181.0,9,112,1700.0,0.0,0.0,56,62,0.0,0.0,2898.840923732504,1820.0,166.2707070475825,0.0,50,1,2,2,1,1,2,2,2,2,25.0,1,2006.0,6,130710,1,3,1,0,1,,246.0,410.0,43,2.0,0.0,3.0,4.0,2.1,2,2,635.521780525168,1700.0,22022.186340608754,4,1,2,3,60.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.08264392880210686,10486.755400289883,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +30688,1,62.0,238.0,2,111,550.0,,,85,86,0.0,0.0,,850.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,2,,2,130711,2,2,0,0,2,,600.0,298.0,41,0.0,3.0,3.0,2.0,1.5,2,2,116.76851841900854,550.0,22113.331604986393,6,7,2,3,87.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03843835090902048,14742.221069990928,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +30689,2,29.0,0.0,2,111,0.0,0.0,0.0,54,67,0.0,0.0,0.0,1405.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,130712,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1469.60808536693,0.0,40049.85334245085,4,1,1,2,89.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03508127702706891,26699.902228300565,7,4,7,7_0,7_3,7_0_1 +30690,2,79.0,0.0,2,111,290.0,1820.0,0.0,77,78,0.0,0.0,494.50815757789775,2110.0,0.0,3455.277367250416,50,0,0,0,0,0,0,0,0,0,,1,,2,130713,2,1,2,0,1,,240.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,336.925803455855,290.0,22933.856795842305,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09200371393190715,15289.23786389487,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +30691,2,44.0,0.0,2,111,473.0,961.0,0.0,0,62,0.0,0.0,806.5598570149849,1434.0,0.0,1824.4623900701372,50,0,0,0,0,0,0,0,0,0,,2,,2,130714,2,1,0,0,1,,0.0,322.0,22,2.0,4.0,5.0,4.0,2.5,4,4,245.531138462004,473.0,53459.90398159723,0,1,2,3,83.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02682384166820863,21383.96159263889,6,3,6,6_0,6_2,6_0_1 +30692,2,36.0,0.0,1,111,360.0,0.0,0.0,48,48,0.0,0.0,613.872195613942,360.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,1,130715,2,1,0,1,1,600.0,0.0,487.0,43,2.0,0.0,2.0,4.0,2.1,2,2,506.184730422871,360.0,60327.35400566848,4,1,2,3,49.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.005967442231366117,28727.311431270704,8,4,8,8_0,8_3,8_1_0 +30693,1,42.0,120.0,5,111,667.0,109.0,0.0,0,22,0.0,0.0,1137.3687624291647,1003.0,0.0,206.936941225437,44,2,1,2,2,2,2,2,1,0,,2,,3,130716,2,2,0,1,1,1000.0,0.0,326.0,32,1.0,0.0,4.0,3.0,1.8,2,1,744.527927574572,667.0,21499.724519270563,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,1,0.046651760542373195,11944.291399594757,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +30694,2,58.0,0.0,2,111,174.0,0.0,0.0,0,90,437.69338318018964,0.0,296.7048945467387,589.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,130717,1,2,0,1,2,415.0,0.0,476.0,11,0.0,2.0,2.0,1.0,1.0,1,1,2059.12299482755,174.0,23526.22315574467,0,5,2,3,42.0,8,6,2,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02503589276106042,23526.22315574467,6,3,6,6_0,6_2,6_0_1 +30695,2,57.0,0.0,8,112,480.0,1020.0,0.0,22,22,0.0,317.83854648245375,818.4962608185893,1740.0,0.0,1936.4741288985847,50,0,0,0,0,0,0,0,0,2,20.0,1,2001.0,6,130718,2,1,1,0,1,,221.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1833.65772163618,480.0,26234.076497362305,1,1,1,2,110.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06632594824425962,17489.38433157487,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +30696,2,74.0,0.0,1,222,160.0,0.0,0.0,0,78,0.0,529.7309108040896,272.8320869395298,620.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130719,1,3,4,0,2,,130.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1652.85623601186,160.0,13695.159930530272,0,5,0,1,70.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04527146839795932,13695.159930530272,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30697,2,47.0,0.0,7,211,780.0,,,0,81,0.0,0.0,,1080.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,130720,2,3,0,0,2,,700.0,,32,2.0,0.0,4.0,6.0,2.9,3,2,7.559826641115449,780.0,4520.3347626640625,0,4,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23892035804965497,1558.7361250565734,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30698,1,56.0,93.0,5,120,540.0,0.0,0.0,0,77,1054.6828510366015,1589.1927324122687,920.8082934209131,2830.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130721,2,1,2,0,1,,250.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1105.45152037914,540.0,14583.771119820498,0,6,0,1,104.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.19405131750551174,14583.771119820498,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +30699,1,24.0,420.0,2,111,360.0,126.0,0.0,85,63,0.0,0.0,613.872195613942,486.0,0.0,239.2115100404134,71,0,0,0,0,0,0,0,0,3,30.0,2,,2,130722,2,1,0,1,1,568.0,0.0,710.0,42,1.0,0.0,3.0,4.0,2.1,2,2,881.358335711835,360.0,5018.5103322591385,6,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09684148638211963,2389.766824885304,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +30700,0,83.0,0.0,1,112,150.0,0.0,0.0,0,77,5273.414255183007,0.0,255.78008150580916,5150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130723,1,1,3,0,2,,150.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,683.930954366802,150.0,18388.820189111608,0,5,0,1,90.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2800614692534445,18388.820189111608,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +30701,2,63.0,0.0,1,112,620.0,0.0,0.0,71,71,1371.087706347582,0.0,1057.224336890678,2025.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130724,2,2,4,0,2,,118.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1103.64462343716,620.0,22769.618933967522,5,5,0,1,150.0,8,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08893429467891192,15179.745955978347,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30702,2,79.0,0.0,1,112,190.0,0.0,0.0,0,77,1444.9155059201441,0.0,323.9881032406916,1695.0,187.05454542853033,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,130725,2,1,0,0,1,,113.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,2072.96711706942,190.0,13742.093504806606,0,5,0,1,45.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.12334365207216322,13742.093504806606,3,2,3_0,3_0_0,3_0_0,3_1_0_0 +30703,2,47.0,0.0,2,112,252.0,0.0,0.0,0,47,0.0,0.0,429.7105369297594,492.0,332.541414095165,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,130726,1,3,4,0,2,,200.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,686.059187377151,252.0,39878.834948572796,0,1,0,1,120.0,7,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012337371456174097,26585.889965715196,7,4,7,7_1,7_1,7_0_1 +30704,2,62.0,0.0,1,222,300.0,0.0,0.0,75,77,1265.6194212439218,0.0,511.56016301161833,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130727,2,1,1,0,1,,340.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1000.87712674951,300.0,42139.10777344851,5,5,0,1,50.0,1,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03559638728148718,28092.73851563234,8,4,8,8_1,8_0,8_1_0 +30705,2,40.0,0.0,1,400,800.0,0.0,0.0,85,62,0.0,993.245457757668,1364.160434697649,1585.0,48.49562288887823,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,1,130728,1,1,1,0,2,,250.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,869.759818185194,800.0,47558.38754838074,6,1,1,2,96.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03332745456072481,31705.591698920496,8,4,8,8_1,8_0,8_1_0 +30706,2,81.0,0.0,1,400,480.0,0.0,0.0,0,71,1487.1028199616082,0.0,818.4962608185893,1964.0,102.53360267934255,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130729,2,1,1,0,1,,125.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1157.40996719737,480.0,14434.795513878425,0,5,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.1360601193215172,14434.795513878425,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30707,2,48.0,0.0,5,111,590.0,0.0,0.0,37,37,0.0,0.0,1006.0683205895161,690.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,130730,2,1,0,1,1,,0.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,1709.6417517771,590.0,74444.6485922853,1,1,0,1,117.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009268631299194616,37222.32429614265,9,5,9,9_0,9_2,9_0_0 +30708,2,53.0,0.0,2,111,183.0,,,0,85,0.0,0.0,,447.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,130731,1,1,0,0,2,,284.0,,21,1.0,1.0,3.0,3.0,2.0,3,3,120.30585496192515,183.0,19035.09618737514,0,7,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02348293886197795,9517.54809368757,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30709,2,41.0,0.0,2,111,551.0,0.0,0.0,38,38,0.0,0.0,939.5654993980057,551.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,,2,130732,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,903.058976779595,551.0,155268.1731959803,1,1,1,2,107.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003548698929461384,73937.22533141918,10,5,10,10_0,10_4,10_0_1 +30710,1,45.0,309.0,5,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,538.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,130733,2,1,0,1,1,1152.0,0.0,272.0,31,0.0,1.0,4.0,3.0,1.6,1,1,381.750210523998,0.0,9998.515555555556,0,7,2,3,121.0,6,4,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.053807987496810636,6249.072222222222,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30711,1,77.0,270.0,9,111,250.0,0.0,0.0,0,78,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2009.0,6,130734,2,1,0,1,1,268.0,120.0,341.0,11,0.0,2.0,3.0,1.0,1.0,1,1,282.012738937365,250.0,10835.530611173166,0,5,2,3,60.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02307224343422647,10835.530611173166,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +30712,2,54.0,0.0,2,111,600.0,2000.0,0.0,0,42,0.0,0.0,1023.1203260232367,2600.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,3,50.0,2,,2,130735,2,2,0,0,2,,964.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,1165.26394239976,600.0,39978.0,0,1,1,2,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.06503576967332032,26652.0,7,4,7,7_0,7_4,7_0_1 +30713,1,76.0,98.0,5,111,450.0,0.0,0.0,0,78,0.0,0.0,767.3402445174275,450.0,0.0,0.0,70,2,1,2,1,2,2,2,2,0,,2,,3,130736,2,1,0,1,1,49.0,0.0,377.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1401.47153105291,450.0,11509.8394866102,0,5,2,3,35.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.039096983109408324,11509.8394866102,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +30714,2,68.0,0.0,5,111,480.0,,,0,77,0.0,0.0,,595.0,159.34276092059991,,71,0,0,0,0,0,0,0,0,0,,1,,3,130737,1,3,0,0,2,,270.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,75.77483469768026,480.0,5534.96229629707,0,5,0,1,68.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10749847390976075,5534.96229629707,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +30715,2,66.0,0.0,6,111,450.0,1100.0,0.0,77,75,0.0,0.0,767.3402445174275,1550.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,4,130738,2,1,1,0,1,,250.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,303.413945698971,450.0,86127.61968564312,5,5,0,1,90.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01799654983682748,57418.41312376208,10,5,10,10_1,10_3,10_0_0 +30716,2,62.0,0.0,1,111,480.0,972.0,0.0,0,56,0.0,0.0,818.4962608185893,1452.0,0.0,1845.345934597475,50,2,2,2,2,1,1,2,2,0,,2,,1,130739,1,2,0,0,1,,120.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1680.84919492881,480.0,28794.2084671897,0,1,1,2,55.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.05042680723988363,28794.2084671897,8,4,8,8_0,8_3,8_1_0 +30717,2,74.0,0.0,2,112,397.0,1686.0,0.0,77,75,0.0,0.0,676.9646157187083,2083.0,0.0,3200.8778248264844,70,2,2,1,2,1,2,2,2,0,,1,,2,130740,2,2,2,0,1,,595.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1214.8378655301,397.0,47901.43302486495,5,5,0,1,110.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.04348512911750979,31934.2886832433,8,4,8,8_1,8_1,8_0_1 +30718,2,60.0,0.0,6,120,0.0,,,22,74,0.0,0.0,,583.0,0.0,,31,0,0,0,0,0,0,0,0,0,,1,,4,130741,2,2,0,0,2,,540.0,900.0,42,1.0,4.0,3.0,2.0,1.5,2,2,85.19291852263935,0.0,42119.51016764868,1,7,2,3,70.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01384156647785028,28079.67344509912,8,4,8,8_1,8_1,8_0_0 +30719,2,77.0,0.0,8,111,655.0,1500.0,0.0,72,72,0.0,0.0,1116.9063559087,2155.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130742,2,1,2,0,1,,340.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1167.13250989749,655.0,31086.175987088995,5,5,0,1,110.0,5,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06932341890154116,20724.117324725998,5,3,5,5_1,5_2,5_0_0 +30720,2,55.0,0.0,2,111,230.0,90.0,0.0,0,48,0.0,0.0,392.1961249755741,320.0,0.0,170.865364314581,44,0,0,0,0,0,0,0,0,2,10.0,2,,2,130743,2,2,0,1,1,512.0,0.0,315.0,12,1.0,0.0,3.0,1.0,1.0,1,1,876.92627128256,230.0,25009.490618697182,0,1,2,3,51.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012795142647198375,25009.490618697182,7,4,7,7_0,7_4,7_0_1 +30721,2,57.0,0.0,2,111,300.0,1200.0,0.0,63,48,0.0,0.0,511.56016301161833,1500.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,130744,2,1,1,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,326.811057097068,300.0,46979.18278733619,1,1,0,1,77.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03192903560690168,31319.45519155746,8,4,8,8_1,8_3,8_0_1 +30722,2,29.0,0.0,9,112,506.0,762.0,0.0,47,47,0.0,0.0,862.8314749462629,1268.0,0.0,1446.6600845301193,10,0,0,0,0,0,0,0,0,3,50.0,1,2007.0,6,130745,2,1,1,0,1,,205.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,2028.63358668764,506.0,47732.9492689022,1,1,1,2,83.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026564459548827756,31821.966179268133,8,4,8,8_1,8_1,8_0_0 +30723,2,33.0,0.0,9,111,1760.0,0.0,0.0,46,67,0.0,662.163638505112,3001.1529563348276,2260.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,130746,2,1,1,0,1,,650.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,237.055073550588,1760.0,43170.39978462634,1,1,1,2,155.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0523506849895984,17987.66657692764,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +30724,0,43.0,0.0,9,111,340.0,,,0,52,0.0,0.0,,343.0,4.156767676189563,,50,0,0,0,0,0,0,0,0,2,1.0,1,2005.0,6,130747,2,2,0,0,2,,2700.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,104.5647289965824,340.0,46594.74057501614,0,1,5,0,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007361345846486262,31063.160383344093,8,4,8,8_1,8_3,8_0_0 +30725,2,67.0,0.0,6,111,1092.0,0.0,0.0,75,75,0.0,953.5156394473612,1862.0789933622907,1962.0,207.83838380947813,0.0,31,2,2,1,2,1,2,2,2,0,,1,,4,130748,2,1,2,0,1,,270.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1054.06855479566,1092.0,47812.50716050616,5,5,0,1,120.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04103528797211122,31875.004773670775,8,4,8,8_1,8_2,8_0_0 +30726,1,54.0,350.0,9,111,300.0,,,0,55,0.0,0.0,,346.0,63.73710436823996,,41,0,0,0,0,0,0,0,0,0,,2,2006.0,6,130749,2,1,0,0,2,,400.0,508.0,32,1.0,1.0,2.0,2.0,1.3,1,1,113.43912113302224,300.0,7499.666666666667,0,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.046135383794835325,5768.974358974359,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30727,2,35.0,0.0,9,112,0.0,0.0,0.0,46,54,0.0,0.0,0.0,4654.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,130750,2,1,1,0,1,,571.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1948.21587191232,0.0,53788.8469389808,4,1,1,2,156.0,8,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08652351304871055,25613.736637609905,7,4,7,7_1,7_1,7_0_0 +30728,1,41.0,410.0,2,112,200.0,1100.0,0.0,69,63,0.0,0.0,341.04010867441224,1300.0,0.0,2088.354452733768,70,2,2,1,1,1,2,2,2,0,,2,,2,130751,1,2,0,1,1,,900.0,786.0,43,2.0,0.0,3.0,6.0,2.8999999999999995,4,2,320.864736673741,200.0,20128.652012217826,4,1,2,3,105.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06458455336258569,6940.914486971666,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30729,2,75.0,0.0,2,120,504.0,0.0,0.0,72,72,1898.4291318658827,264.8654554020448,859.4210738595189,2684.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,130752,2,1,2,0,2,,120.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,2387.31395791621,504.0,21649.0,5,5,0,1,150.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.12397801284123978,14432.666666666666,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +30730,2,47.0,0.0,1,111,1050.0,751.0,0.0,0,46,0.0,0.0,1790.4605705406643,1801.0,0.0,1425.7765400027815,20,0,0,0,0,0,0,0,0,2,30.0,1,,1,130753,2,2,4,0,1,,120.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,449.517066127867,1050.0,24388.960698391806,0,1,0,1,112.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07384488508027146,24388.960698391806,7,4,7,7_1,7_3,7_1_0 +30731,2,72.0,0.0,2,111,250.0,100.0,0.0,0,42,0.0,0.0,426.3001358430153,350.0,0.0,189.8504047939789,12,0,0,0,0,0,0,0,0,0,,2,,2,130754,2,2,0,2,1,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1177.79219965032,250.0,51517.42671066307,0,5,0,1,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006793817594300707,51517.42671066307,10,5,10,10_0,10_4,10_0_1 +30732,2,49.0,0.0,6,111,600.0,0.0,0.0,0,38,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,1,,4,130755,2,1,1,0,1,,0.0,,32,2.0,0.0,6.0,5.0,3.0,5,4,616.893205051346,600.0,124137.0,0,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004833369583605211,41379.0,9,5,9,9_1,9_4,9_0_0 +30733,2,56.0,0.0,5,111,1400.0,0.0,0.0,52,63,0.0,0.0,2387.2807607208856,1500.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,3,130756,2,2,2,0,1,,256.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,746.539799833594,1400.0,44583.44600525869,1,1,0,1,140.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03364477478531096,29722.297336839125,8,4,8,8_1,8_2,8_0_0 +30734,2,41.0,0.0,2,111,240.0,450.0,0.0,0,34,0.0,0.0,409.2481304092947,690.0,0.0,854.326821572905,10,0,0,0,0,0,0,0,0,2,20.0,2,,2,130757,2,1,0,0,1,,0.0,522.0,12,1.0,0.0,2.0,1.0,1.0,1,1,585.532231761841,240.0,28548.88300998244,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024169071685177092,28548.88300998244,8,4,8,8_0,8_3,8_0_1 +30735,0,79.0,0.0,5,112,352.0,0.0,0.0,0,78,0.0,927.0290939071567,600.2305912669656,2378.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,130758,2,1,2,0,1,,127.0,,11,0.0,8.0,5.0,1.0,1.0,1,1,1554.2564879027,352.0,8510.82072368866,0,5,0,1,80.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2794090108585151,8510.82072368866,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +30736,2,34.0,0.0,1,111,516.0,1798.0,0.0,46,21,0.0,0.0,879.8834803799836,2314.0,0.0,3413.5102781957407,20,2,2,2,2,1,2,2,2,0,,1,,1,130759,1,3,1,0,1,,300.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,535.908655082772,516.0,41953.07401346739,1,6,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,0.055156864053804044,27968.71600897826,7,4,7,7_1,7_4,7_1_0 +30737,2,37.0,0.0,1,112,0.0,0.0,0.0,0,38,0.0,0.0,0.0,299.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,130760,1,1,0,0,1,,0.0,700.0,32,1.0,0.0,2.0,3.0,1.6,1,1,767.332114210168,0.0,38906.750947703884,0,1,2,3,53.0,10,1,1,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007685041611464751,24316.719342314926,7,4,7,7_0,7_1,7_1_0 +30738,2,87.0,0.0,2,111,166.0,836.0,0.0,0,77,0.0,0.0,283.06329019976215,1002.0,0.0,1587.1493840776636,70,0,0,0,0,0,0,0,0,0,,1,,2,130761,2,2,1,0,1,,121.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1796.20542658189,166.0,26421.604896814475,0,5,0,1,104.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037923510093847715,26421.604896814475,7,4,7,7_1,7_3,7_0_1 +30739,2,67.0,0.0,7,112,1570.0,0.0,0.0,74,74,0.0,0.0,2677.164853094136,1570.0,0.0,0.0,44,2,2,2,2,1,2,2,2,0,,1,,5,130762,2,1,2,0,1,,160.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,997.51614743728,1570.0,73933.79786409756,5,5,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.021235213736563584,49289.19857606504,10,5,10,10_1,10_1,10_0_0 +30740,2,75.0,0.0,2,112,300.0,0.0,0.0,0,77,3383.4225861254176,0.0,511.56016301161833,3571.0,87.29212119998083,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,130763,2,1,2,0,1,,214.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1038.60979343153,300.0,15326.229397797695,0,5,0,1,100.0,10,0,1,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.23299925293517632,15326.229397797695,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +30741,2,71.0,0.0,5,112,600.0,0.0,0.0,0,77,0.0,0.0,1023.1203260232367,650.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,130764,2,2,2,0,1,,100.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1536.73316553087,600.0,18435.490003336625,0,5,0,1,85.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03525808101017966,18435.490003336625,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +30742,1,88.0,322.0,5,111,420.0,2050.0,0.0,0,77,0.0,0.0,716.1842282162656,2470.0,0.0,3891.9332982765673,70,0,0,0,0,0,0,0,0,0,,2,,3,130765,1,1,0,0,1,,230.0,399.0,21,0.0,4.0,3.0,2.0,1.5,2,2,1468.54325633365,420.0,34387.53475003513,0,5,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0718283534412852,22925.023166690084,6,3,6,6_0,6_3,6_0_0 +30743,2,55.0,0.0,7,111,300.0,,,0,34,0.0,0.0,,346.0,63.73710436823996,,20,0,0,0,0,0,0,0,0,2,70.0,1,,5,130766,2,1,0,0,2,,180.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,236.5725961360591,300.0,63389.438089415584,0,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005458322560170685,63389.438089415584,10,5,10,10_1,10_2,10_0_0 +30744,1,63.0,20.0,2,111,480.0,0.0,0.0,0,72,0.0,0.0,818.4962608185893,643.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130767,2,2,0,1,1,,100.0,400.0,11,0.0,3.0,3.0,1.0,1.0,1,1,280.84039170313,480.0,4578.567856865321,0,5,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.14043692702639657,4578.567856865321,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30745,2,67.0,0.0,6,112,1000.0,0.0,0.0,77,75,0.0,1191.8945493092015,1705.2005433720612,1900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130768,2,1,2,0,1,,165.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,936.999670260542,1000.0,56997.52694491753,5,5,0,1,85.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033334779627125964,37998.35129661169,9,5,9,9_1,9_0,9_0_0 +30746,2,47.0,0.0,8,111,480.0,,,0,63,0.0,0.0,,564.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130769,2,1,0,0,2,,270.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,129.66267167545044,480.0,27777.749379640616,0,1,0,1,91.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02030402075746919,27777.749379640616,7,4,7,7_1,7_2,7_0_0 +30747,2,53.0,0.0,2,111,597.0,476.0,0.0,54,67,0.0,0.0,1018.0047243931206,1073.0,0.0,903.6879268193395,10,2,2,2,2,1,2,2,2,2,45.0,2,,2,130770,1,3,0,1,2,648.0,0.0,470.0,43,2.0,0.0,3.0,4.0,2.1,2,2,208.012454761199,597.0,54354.217262581216,1,1,2,3,59.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019740878519442496,25882.960601229148,7,4,7,7_0,7_4,7_0_1 +30748,2,52.0,0.0,1,112,840.0,0.0,0.0,0,53,0.0,0.0,1432.3684564325313,960.0,166.2707070475825,0.0,42,2,2,2,2,1,2,2,2,3,120.0,2,,1,130771,2,2,0,0,1,,0.0,564.0,12,1.0,6.0,2.0,1.0,1.0,1,1,1103.0855304709,840.0,23675.81162296415,0,1,2,3,38.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.04054771237784542,23675.81162296415,6,3,6,6_0,6_2,6_1_0 +30749,2,76.0,0.0,1,221,370.0,1400.0,0.0,78,77,0.0,0.0,630.9242010476627,2130.0,498.81212114274757,2657.9056671157045,70,0,0,0,0,0,0,0,0,0,,1,,1,130772,2,1,2,0,1,,350.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,510.01666459184,370.0,30395.80615213501,5,5,0,1,40.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0700754567698935,20263.870768090008,5,3,5,5_1,5_1,5_1_0 +30750,2,80.0,0.0,2,111,200.0,1850.0,0.0,0,77,0.0,0.0,341.04010867441224,2050.0,0.0,3512.2324886886095,70,0,0,0,0,0,0,0,0,0,,1,,2,130773,1,2,3,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1184.13975970492,200.0,4878.391454812979,0,5,0,1,80.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4202204802522536,4878.391454812979,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30752,2,39.0,0.0,1,211,500.0,0.0,0.0,0,11,0.0,0.0,852.6002716860306,533.0,45.72444443808519,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130775,2,1,4,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1581.18859432171,500.0,4819.968141013514,0,1,0,1,80.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1105816437798952,4819.968141013514,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +30753,1,41.0,35.0,5,120,1200.0,0.0,0.0,46,47,0.0,542.9741835741918,2046.2406520464733,1715.0,145.4868686666347,0.0,43,0,0,0,0,0,0,0,0,2,40.0,1,,3,130776,1,2,3,0,1,,437.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1350.38119739412,1200.0,47295.61361804398,1,1,1,2,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03626129082181317,19706.50567418499,5,3,5,5_1,5_0,5_0_0 +30754,2,37.0,0.0,5,111,700.0,750.0,0.0,55,53,0.0,0.0,1193.6403803604428,1450.0,0.0,1423.8780359548418,71,0,0,0,0,0,0,0,0,0,,2,,3,130777,2,1,0,0,2,,0.0,500.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1954.84118025728,700.0,27065.185343511243,4,4,2,3,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05357436062589651,12888.183496910115,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +30755,2,34.0,0.0,2,111,0.0,0.0,1200.0,0,53,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,50,2,2,2,2,2,2,2,1,0,,1,,2,130778,2,2,2,0,1,,300.0,,22,3.0,0.0,4.0,5.0,3.0,5,5,254.929744568074,0.0,50014.27214322427,0,1,0,1,80.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.02399315132615743,16671.424047741424,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +30756,1,35.0,270.0,1,111,612.0,0.0,0.0,0,53,0.0,0.0,1043.5827325437015,612.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,1,130779,2,1,0,0,2,,0.0,375.0,12,1.0,5.0,1.0,1.0,1.0,1,1,602.557294134973,612.0,5006.2065471448295,0,1,3,4,35.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.1222482520920036,5006.2065471448295,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +30758,1,77.0,84.0,2,111,103.0,0.0,0.0,0,78,0.0,0.0,175.6356559673223,120.0,23.555016831740858,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130781,2,1,0,1,1,1036.0,0.0,259.0,11,0.0,0.0,3.0,1.0,1.0,1,1,433.468123276644,103.0,13957.164516930934,0,5,2,3,60.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.008597734866163706,13957.164516930934,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +30759,1,40.0,470.0,2,111,400.0,560.0,0.0,0,56,0.0,0.0,682.0802173488245,960.0,0.0,1063.162266846282,50,1,2,2,2,2,2,2,1,0,,2,,2,130782,2,2,0,1,1,,660.0,533.0,31,1.0,0.0,5.0,8.0,3.8999999999999995,5,3,313.430048998675,400.0,35202.533227225395,0,6,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027270764686262484,9026.290571083437,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30760,2,52.0,0.0,1,111,460.0,940.0,0.0,67,52,0.0,0.0,784.3922499511482,1400.0,0.0,1784.5938050634018,70,2,2,2,2,2,2,2,1,1,60.0,1,,1,130783,2,2,2,0,1,,350.0,414.0,43,2.0,3.0,3.0,2.0,1.5,2,2,1128.60416877295,460.0,31538.393520601305,1,1,2,3,64.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.0443903396374803,21025.59568040087,5,3,5,5_1,5_3,5_1_0 +30761,2,46.0,0.0,2,111,700.0,380.0,0.0,54,65,0.0,0.0,1193.6403803604428,1080.0,0.0,721.4315382171199,71,0,0,0,0,0,0,0,0,0,,2,,2,130784,1,3,0,1,1,836.0,0.0,314.0,43,2.0,1.0,3.0,3.0,1.8,2,2,1002.83690417074,700.0,40616.14803816806,1,1,2,3,69.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026590409287091814,22564.526687871145,6,3,6,6_0,6_4,6_0_1 +30762,2,65.0,0.0,1,111,300.0,1700.0,0.0,78,78,0.0,0.0,511.56016301161833,2000.0,0.0,3227.4568814976415,71,0,0,0,0,0,0,0,0,0,,1,,1,130785,2,1,1,0,1,,200.0,,41,0.0,0.0,7.0,2.0,1.5,2,2,244.314892202793,300.0,30215.30218693066,5,5,0,1,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06619162660120874,20143.534791287108,5,3,5,5_1,5_3,5_1_0 +30763,1,44.0,377.0,1,111,450.0,1200.0,0.0,0,22,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,1,130786,1,1,2,0,1,,280.0,438.0,32,1.0,2.0,4.0,2.0,1.5,2,1,233.338195436841,450.0,8692.173469583933,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.18982594005673709,5794.7823130559555,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +30764,2,31.0,0.0,2,211,615.0,830.0,0.0,55,63,0.0,0.0,1048.6983341738176,1445.0,0.0,1575.7583597900248,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,130787,2,1,2,0,1,,312.0,592.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1191.63154928612,615.0,17314.83164951882,4,1,2,3,75.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08345446431413364,11543.221099679213,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +30765,1,56.0,64.0,6,111,0.0,,,0,55,0.0,0.0,,128.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,2,25.0,1,,4,130788,2,1,0,0,2,,212.0,420.0,12,1.0,0.0,3.0,1.0,1.0,1,1,152.15285824132553,0.0,15371.723127047566,0,4,2,3,59.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008326977980417531,15371.723127047566,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +30766,2,59.0,0.0,7,111,756.0,2190.0,0.0,0,45,0.0,46.35145469535784,1289.1316107892783,2981.0,0.0,4157.723864988138,31,2,2,2,2,1,2,2,2,2,60.0,1,,5,130789,1,1,2,0,1,,280.0,,22,2.0,0.0,6.0,2.0,1.5,2,2,663.499089087557,756.0,22368.758485425846,0,1,0,1,245.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.1332662249423562,14912.505656950563,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +30767,1,31.0,254.0,2,111,0.0,0.0,520.0,0,55,0.0,0.0,327.7655110156668,760.0,332.541414095165,622.3007167336341,42,2,2,2,1,1,2,2,2,0,,2,,2,130790,1,2,0,0,1,,400.0,320.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1818.49582882532,0.0,12361.348433633115,0,4,2,3,60.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.06148196566744854,12361.348433633115,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +30768,1,67.0,176.0,2,211,165.0,1000.0,0.0,0,78,0.0,0.0,281.3580896563901,1165.0,0.0,1898.504047939789,71,2,2,2,2,1,2,2,2,0,,8,,2,130791,2,2,0,0,1,,0.0,166.0,11,0.0,1.0,3.0,1.0,1.0,1,1,392.773540054772,165.0,9402.46482469047,0,5,2,3,60.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,1,1,0,1,0.12390368076047036,9402.46482469047,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +30769,0,62.0,0.0,9,112,0.0,,,0,81,0.0,0.0,,711.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,130792,2,1,0,0,2,,150.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,111.4655598571438,0.0,7350.817407137984,0,4,5,0,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09672393702904197,7350.817407137984,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +30770,2,42.0,0.0,2,111,0.0,0.0,0.0,46,37,0.0,132.4327277010224,0.0,1773.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,130793,2,1,2,0,1,,563.0,,43,3.0,0.0,6.0,6.0,3.0999999999999996,4,3,650.783656570764,0.0,85627.36476886319,1,1,1,2,220.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02070599749024063,27621.730570601034,7,4,7,7_1,7_4,7_0_1 +30771,2,29.0,0.0,1,111,1268.0,0.0,0.0,0,68,0.0,0.0,2162.1942889957736,1268.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,130794,2,1,0,1,1,,0.0,589.0,32,1.0,0.0,4.0,5.0,2.2,1,1,471.04222370798,1268.0,16440.140621038434,0,1,3,4,88.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0771282940473965,7472.791191381106,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +30772,2,65.0,0.0,8,211,1200.0,0.0,0.0,77,78,0.0,158.91927324122688,2046.2406520464733,1320.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130795,2,1,1,0,1,,250.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1439.89006234104,1200.0,33036.06327940662,5,5,0,1,90.0,2,3,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03995633465270773,22024.04218627108,6,3,6,6_1,6_1,6_0_0 +30773,2,46.0,0.0,1,111,723.0,136.0,0.0,33,34,0.0,0.0,1232.8599928580002,859.0,0.0,258.1965505198113,10,2,1,2,1,1,2,2,2,1,35.0,2,,1,130796,2,2,0,1,2,597.0,0.0,1228.0,43,2.0,0.0,3.0,3.0,1.8,2,2,381.750092468208,723.0,79918.90696933663,1,1,2,3,49.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.010748395249319188,44399.39276074257,10,5,10,10_0,10_4,10_1_0 +30774,1,45.0,254.0,5,111,360.0,,,0,63,0.0,0.0,,510.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,130797,2,2,0,0,2,,416.0,493.0,12,1.0,0.0,4.0,1.0,1.0,1,1,105.34715981018266,360.0,30983.598001255727,0,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.016460322005834516,30983.598001255727,8,4,8,8_0,8_2,8_0_0 +30776,1,21.0,175.0,6,111,610.0,0.0,0.0,0,54,0.0,0.0,1040.1723314569574,610.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,17.0,2,,4,130799,2,1,0,0,1,,0.0,335.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2102.50629952893,610.0,16129.462687318057,0,2,2,3,19.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03781899073920288,16129.462687318057,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +30777,2,79.0,0.0,2,111,300.0,72.0,0.0,0,77,0.0,0.0,511.56016301161833,372.0,0.0,136.6922914516648,70,0,0,0,0,0,0,0,0,0,,2,,2,130800,2,2,0,1,1,576.0,0.0,301.0,11,0.0,3.0,3.0,1.0,1.0,1,1,399.243695686694,300.0,16058.487910312026,0,5,2,3,56.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.023165319305133245,16058.487910312026,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +30778,1,37.0,120.0,2,111,480.0,,,46,47,0.0,0.0,,616.0,188.44013465392686,,31,0,0,0,0,0,0,0,0,0,,1,,2,130801,2,1,0,0,1,,175.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,114.65759246156414,480.0,37214.777904959374,4,1,1,2,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.016552564187623693,17721.322811885417,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +30779,2,45.0,0.0,8,112,1000.0,0.0,0.0,56,38,0.0,794.5963662061343,1705.2005433720612,1600.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,130802,1,1,1,0,1,,330.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,471.759123774436,1000.0,60749.53489530946,1,1,1,2,103.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026337650201887188,23365.20572896518,6,3,6,6_1,6_0,6_0_0 +30780,1,40.0,246.0,1,111,300.0,,,68,68,0.0,0.0,,476.0,243.8637036697877,,60,0,0,0,0,0,0,0,0,2,10.0,2,,1,130803,2,2,0,0,2,,600.0,425.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,83.74335148035617,300.0,38009.0,1,1,2,3,60.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.012523349732957984,13106.551724137933,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +30781,2,51.0,0.0,2,111,690.0,0.0,0.0,0,43,0.0,0.0,1176.5883749267223,690.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,2,,2,130804,2,1,0,0,1,,0.0,343.0,12,1.0,0.0,2.0,1.0,1.0,1,1,958.811530372097,690.0,27434.314942144905,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025150983410925788,27434.314942144905,7,4,7,7_0,7_4,7_0_1 +30782,2,58.0,0.0,2,111,570.0,530.0,0.0,0,56,0.0,0.0,971.9643097220749,1100.0,0.0,1006.2071454080882,41,0,0,0,0,0,0,0,0,0,,2,,2,130805,1,3,0,1,2,531.0,0.0,847.0,32,2.0,2.0,5.0,3.0,2.0,3,3,494.270314654611,570.0,28872.88274029134,0,1,2,3,110.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03809803163384788,14436.44137014567,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +30783,2,73.0,0.0,1,111,204.0,314.0,0.0,0,77,0.0,0.0,347.86091084790047,518.0,0.0,596.1302710530938,70,0,0,0,0,0,0,0,0,0,,2,,1,130806,1,1,0,1,2,636.0,240.0,219.0,11,0.0,6.0,3.0,1.0,1.0,1,1,257.986998381197,204.0,14915.24721500666,0,5,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03472956180564176,14915.24721500666,3,2,3_0,3_0_0,3_2_0,3_1_0_0 +30784,0,75.0,0.0,1,112,1200.0,0.0,0.0,0,72,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,130807,2,1,2,0,2,,130.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,485.148461600167,1200.0,18613.405495550705,0,5,5,0,100.0,7,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06446966409703181,18613.405495550705,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +30785,1,92.0,65.0,6,111,216.0,200.0,0.0,0,72,0.0,0.0,368.3233173683652,416.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,4,130808,2,1,0,0,1,,0.0,300.0,11,0.0,2.0,4.0,1.0,1.0,1,1,537.436154504281,216.0,15185.088409110773,0,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.02739529654304862,15185.088409110773,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +30786,2,52.0,0.0,1,120,0.0,0.0,0.0,11,11,0.0,450.2712741834761,0.0,1511.0,581.9474746665388,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,130809,1,1,1,0,1,,350.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,744.254123791818,0.0,49683.26011620508,1,1,0,1,150.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030412658035440805,19873.30404648203,5,3,5,5_1,5_0,5_1_0 +30787,2,40.0,0.0,6,111,500.0,1500.0,0.0,37,38,0.0,0.0,852.6002716860306,2000.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,2,45.0,1,,4,130810,1,1,2,0,2,,700.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,606.254722651221,500.0,99418.33957878963,1,1,1,2,107.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02011701270081048,55232.41087710535,10,5,10,10_1,10_4,10_0_0 +30788,2,38.0,0.0,2,111,1000.0,1830.0,0.0,48,21,0.0,0.0,1705.2005433720612,2830.0,0.0,3474.2624077298137,50,1,2,2,2,1,2,2,2,2,40.0,2,,2,130811,1,3,0,0,1,,600.0,645.0,43,2.0,0.0,3.0,3.0,1.8,2,2,541.788269351051,1000.0,29852.42321565449,1,1,2,3,75.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.09479967437001763,16584.679564252492,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +30789,2,25.0,0.0,9,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,1025.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,2007.0,6,130812,2,1,0,0,1,,368.0,650.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1996.02031084557,0.0,42792.99470670144,0,1,2,3,70.0,6,4,4,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023952518561162622,28528.66313780096,8,4,8,8_0,8_2,8_0_0 +30790,2,64.0,0.0,2,111,250.0,105.0,0.0,0,77,0.0,0.0,426.3001358430153,355.0,0.0,199.34292503367786,71,0,0,0,0,0,0,0,0,0,,2,,2,130813,1,3,0,1,1,504.0,0.0,265.0,11,0.0,1.0,3.0,1.0,1.0,1,1,322.396001889947,250.0,14761.045297530945,0,5,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024049787318204372,14761.045297530945,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +30792,2,35.0,0.0,1,300,650.0,0.0,0.0,85,63,0.0,0.0,1108.3803531918397,838.0,260.49077437454594,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,130815,2,1,4,0,1,,250.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,3,977.787031634486,650.0,40361.83980613407,6,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020762185371754123,15523.784540820798,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30793,2,59.0,0.0,9,111,0.0,,,0,85,0.0,0.0,,1052.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,130816,2,2,0,0,2,,107.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,109.6381772248509,0.0,48674.80611594064,0,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02161282363393899,48674.80611594064,10,5,10,10_1,10_2,10_0_0 +30794,2,27.0,0.0,9,111,150.0,,,63,56,0.0,0.0,,150.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2006.0,6,130817,2,3,0,0,2,,120.0,640.0,43,2.0,0.0,2.0,2.0,1.5,2,2,144.28325759747747,150.0,30112.715814794446,4,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004981284349195254,20075.14387652963,5,3,5,5_0,5_2,5_0_0 +30795,2,49.0,0.0,2,111,1400.0,0.0,0.0,0,37,1265.6194212439218,0.0,2387.2807607208856,2600.0,0.0,0.0,10,2,1,2,1,2,2,1,2,2,30.0,2,,2,130818,2,3,0,1,1,,0.0,,32,1.0,1.0,3.0,4.0,2.5,4,4,1828.02523507174,1400.0,64544.78579114894,0,1,1,2,70.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.04028210750304387,25817.914316459577,7,4,7,7_0,7_3,7_0_1 +30796,2,85.0,0.0,2,112,400.0,0.0,0.0,0,78,0.0,0.0,682.0802173488245,1600.0,1662.707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,130819,1,1,2,0,2,,150.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1068.70449777601,400.0,19741.634683075557,0,5,0,1,100.0,8,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08104698651787307,19741.634683075557,5,3,5,5_1,5_0,5_0_1 +30797,2,86.0,0.0,8,111,452.0,860.0,0.0,74,74,0.0,0.0,770.7506456041716,1312.0,0.0,1632.7134812282186,12,0,0,0,0,0,0,0,0,0,,2,1999.0,6,130820,2,2,0,0,1,,0.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2665.3299535671,452.0,64655.91866997956,5,5,0,1,99.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02029203245408646,43103.945779986374,9,5,9,9_0,9_3,9_0_0 +30798,2,78.0,0.0,2,111,430.0,1100.0,0.0,86,78,0.0,0.0,733.2362336499863,1530.0,0.0,2088.354452733768,70,0,0,0,0,0,0,0,0,0,,1,,2,130821,2,1,2,0,1,,460.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,350.300991359631,430.0,24831.878573943453,6,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.061614347679899546,16554.5857159623,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +30799,2,29.0,0.0,9,111,0.0,,,55,52,0.0,0.0,,472.0,0.0,,41,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,130822,2,1,0,0,2,,293.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,251.20090548895374,0.0,33769.46164634508,1,1,1,2,83.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01397712539640339,22512.97443089672,6,3,6,6_1,6_2,6_0_0 +30800,2,29.0,0.0,1,211,693.0,0.0,0.0,0,65,0.0,0.0,1181.7039765568384,693.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,130823,1,2,0,0,2,,186.0,340.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1760.8957239017,693.0,15496.932951750367,0,1,2,3,37.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04471852605658504,15496.932951750367,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +30801,2,69.0,0.0,2,111,600.0,0.0,0.0,72,74,2109.365702073203,0.0,1023.1203260232367,2600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130824,2,1,2,0,1,,121.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1506.37111196017,600.0,60424.76848419171,5,5,0,1,120.0,8,6,5,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04302871264918806,40283.178989461136,9,5,9,9_1,9_2,9_0_1 +30802,2,81.0,0.0,8,111,700.0,,,0,78,0.0,0.0,,866.0,230.0078114158225,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,130825,2,2,0,0,2,,600.0,,21,1.0,5.0,7.0,2.0,1.5,2,2,91.98473499956802,700.0,14252.165145114843,0,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06076269753980751,9501.443430076562,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30803,2,36.0,0.0,5,111,1200.0,0.0,0.0,0,37,0.0,0.0,2046.2406520464733,1345.0,200.91043768249554,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,130826,2,1,2,0,1,,737.0,,22,2.0,0.0,5.0,4.0,2.5,4,4,519.018852943642,1200.0,26437.223491606765,0,1,0,1,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05087523659309412,10574.889396642706,2,1,2_0,2_1_0,2_4_0,2_0_0_0 +30804,2,32.0,0.0,9,300,1238.0,0.0,0.0,42,47,0.0,0.0,2111.038272694612,1238.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2007.0,6,130827,2,1,1,0,1,,454.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,985.941858582955,1238.0,51489.50064103061,1,1,1,2,87.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024043736773268896,24518.809829062193,7,4,7,7_1,7_0,7_0_0 +30805,2,66.0,0.0,8,120,1260.0,0.0,0.0,75,74,0.0,397.2981831030672,2148.552684648797,1614.0,74.82181817141213,0.0,44,0,0,0,0,0,0,0,0,0,,1,2002.0,6,130828,2,1,2,0,1,,350.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1928.75972193826,1260.0,65004.32052160507,5,5,0,1,144.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024829118850085746,43336.21368107005,10,5,10,10_1,10_1,10_0_0 +30806,2,73.0,0.0,7,120,240.0,,,86,72,0.0,0.0,,303.0,87.29212119998083,,70,0,0,0,0,0,0,0,0,0,,2,,5,130829,2,2,0,0,1,,97.0,600.0,41,0.0,2.0,2.0,2.0,1.5,2,2,165.39550573717352,240.0,30399.923301489413,6,5,2,3,60.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009967130410001884,20266.615534326276,5,3,5,5_0,5_2,5_0_0 +30807,2,53.0,0.0,9,111,400.0,,,52,33,0.0,0.0,,540.0,193.98249155551292,,41,0,0,0,0,0,0,0,0,2,60.0,1,2011.0,6,130830,2,1,0,0,1,,480.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,297.0989030000754,400.0,59396.816904410676,4,1,1,2,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009091396275814585,39597.877936273784,9,5,9,9_1,9_2,9_0_0 +30808,1,25.0,192.0,2,120,620.0,0.0,0.0,0,63,1687.4925616585624,0.0,1057.224336890678,2284.0,88.67771042537734,0.0,50,2,2,2,1,1,2,2,2,2,20.0,1,,2,130831,2,1,3,0,2,,350.0,552.0,12,1.0,0.0,5.0,1.0,1.0,1,1,729.968574574213,620.0,10660.658721386371,0,1,2,3,147.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,1,0.21424567277611678,10660.658721386371,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +30810,1,67.0,186.0,8,111,391.0,,,0,77,0.0,0.0,,541.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,130833,2,1,0,0,2,,672.0,335.0,11,0.0,0.0,2.0,1.0,1.0,1,1,104.60185831267769,391.0,11830.112463066784,0,5,2,3,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04573075714106556,11830.112463066784,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +30811,2,32.0,0.0,9,221,1660.0,0.0,0.0,47,63,0.0,0.0,2830.6329019976215,1724.0,88.67771042537734,0.0,31,0,0,0,0,0,0,0,0,0,,1,2009.0,6,130834,2,1,1,0,1,,263.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,2007.97784155153,1660.0,44272.72574300147,1,4,1,2,122.0,1,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03894045309086319,21082.250353810225,5,3,5,5_1,5_1,5_0_0 +30812,2,54.0,0.0,9,112,1000.0,0.0,0.0,0,21,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,130835,2,1,0,0,1,,111.0,890.0,12,1.0,2.0,3.0,1.0,1.0,1,1,2269.54464918807,1000.0,2396.185708572498,0,1,2,3,63.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.4173299241467137,2396.185708572498,1,1,1_0,1_0_0,1_1_0,1_0_0_0 +30813,2,65.0,0.0,5,111,145.0,0.0,0.0,0,74,0.0,0.0,247.25407878894887,145.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,130836,1,1,0,1,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,425.989531772774,145.0,27743.465787280686,0,5,0,1,47.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.005226455883766221,27743.465787280686,7,4,7,7_0,7_2,7_0_0 +30814,2,59.0,0.0,7,112,1000.0,0.0,0.0,0,77,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,130837,2,1,2,0,1,,430.0,550.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1640.37509097793,1000.0,11285.246800787541,0,5,2,3,90.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09392794138326048,11285.246800787541,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +30815,1,72.0,16.0,9,111,460.0,0.0,0.0,0,75,0.0,0.0,784.3922499511482,460.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,2006.0,6,130838,1,1,0,0,1,,0.0,417.0,11,0.0,1.0,2.0,1.0,1.0,1,1,3098.34917544766,460.0,12543.888472914616,0,5,2,3,45.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03667124440664908,12543.888472914616,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +30816,2,89.0,0.0,5,111,0.0,0.0,1300.0,86,74,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,71,0,0,0,0,0,0,0,0,0,,1,,3,130839,2,1,2,0,1,,240.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1329.1243174912,0.0,68213.39125433292,5,5,0,1,100.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019057841519020267,45475.59416955528,10,5,10,10_1,10_2,10_0_0 +30817,2,31.0,0.0,7,112,230.0,452.0,0.0,0,47,0.0,0.0,392.1961249755741,682.0,0.0,858.1238296687847,43,0,0,0,0,0,0,0,0,2,10.0,2,,5,130840,2,1,0,0,1,,185.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2132.78120389634,230.0,22141.740981480336,0,1,1,2,52.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030801552622733434,22141.740981480336,6,3,6,6_0,6_2,6_0_0 +30818,2,75.0,0.0,1,111,520.0,0.0,0.0,0,75,2109.365702073203,0.0,886.7042825534718,2520.0,0.0,0.0,71,2,2,1,1,1,1,2,2,0,,2,,1,130841,1,3,0,2,2,,400.0,960.0,11,0.0,4.0,5.0,1.0,1.0,1,1,397.070223669728,520.0,56900.782370615874,0,5,2,3,100.0,6,5,3,1,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04428761600475555,56900.782370615874,10,5,10,10_0,10_2,10_1_0 +30819,2,68.0,0.0,6,111,540.0,,,72,78,0.0,0.0,,584.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,4,130842,1,1,0,0,2,,160.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,115.0356162767241,540.0,13719.722007722004,5,5,0,1,220.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042566460141925735,9146.481338481337,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30820,2,52.0,0.0,1,112,800.0,0.0,0.0,52,62,1582.0242765549024,397.2981831030672,1364.160434697649,2700.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,130843,2,1,2,0,1,,400.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,1323.75953543196,800.0,40534.18719927932,1,1,0,1,100.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06661043890496478,27022.791466186212,7,4,7,7_1,7_0,7_1_0 +30821,2,78.0,0.0,2,211,282.0,,,0,77,0.0,0.0,,378.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,2,130844,1,1,0,0,2,,768.0,,11,0.0,7.0,4.0,1.0,1.0,1,1,103.10975280392017,282.0,17494.68026670822,0,5,0,1,81.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021606568067398243,17494.68026670822,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +30822,2,59.0,0.0,1,111,369.0,1888.0,0.0,52,63,0.0,0.0,629.2190005042905,2347.0,124.70303028568689,3584.3756425103215,71,0,0,0,0,0,0,0,0,2,7.0,2,,1,130845,1,1,0,0,2,,0.0,537.0,43,3.0,1.0,3.0,3.0,2.0,3,3,2029.59748918856,369.0,48677.36367957439,1,1,2,3,90.0,7,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04821542956700487,24338.681839787194,7,4,7,7_0,7_2,7_1_0 +30823,2,42.0,0.0,7,112,1300.0,0.0,0.0,47,46,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,5,130846,2,1,3,0,1,,980.0,,43,3.0,0.0,4.0,5.0,2.5999999999999996,3,3,331.306995987882,1300.0,46180.91570397577,1,1,1,2,100.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028150156405150742,17761.8906553753,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +30824,1,62.0,198.0,2,111,347.0,264.0,0.0,0,78,0.0,0.0,591.7045885501052,611.0,0.0,501.2050686561043,71,2,1,2,2,1,2,2,2,0,,2,,2,130847,1,2,0,1,1,1056.0,0.0,364.0,21,1.0,1.0,4.0,2.0,1.5,2,2,885.10136939915,347.0,11436.477969051455,0,5,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.053425539021142936,7624.318646034303,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +30825,2,48.0,0.0,5,111,600.0,1700.0,0.0,52,38,0.0,0.0,1023.1203260232367,2300.0,0.0,3227.4568814976415,50,2,2,2,2,1,2,2,2,0,,1,,3,130848,2,1,2,0,1,,500.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,257.384753711029,600.0,71396.92142120287,1,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03221427414819828,35698.46071060144,9,5,9,9_1,9_3,9_0_0 +30826,1,53.0,220.0,2,111,400.0,150.0,0.0,0,64,0.0,0.0,682.0802173488245,550.0,0.0,284.77560719096834,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,130849,2,1,0,1,1,60.0,0.0,300.0,12,1.0,0.0,3.0,1.0,1.0,1,1,236.123016034446,400.0,10768.31542151525,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05107576983685787,10768.31542151525,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +30827,0,92.0,0.0,1,300,500.0,0.0,0.0,0,71,2109.365702073203,0.0,852.6002716860306,2700.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130850,2,2,1,0,1,,300.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1080.42370921515,500.0,15161.66790504336,0,5,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.17808067139512238,15161.66790504336,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30828,2,23.0,0.0,9,111,600.0,816.0,0.0,47,63,0.0,0.0,1023.1203260232367,1416.0,0.0,1549.179303118868,50,0,0,0,0,0,0,0,0,1,5.0,2,2004.0,6,130851,2,1,0,1,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1900.29503467629,600.0,30918.808427161457,1,1,1,2,60.0,9,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.045797366458536506,20612.538951440973,5,3,5,5_0,5_3,5_0_0 +30829,2,82.0,0.0,1,300,1700.0,0.0,0.0,0,71,0.0,0.0,2898.840923732504,1760.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,130852,2,1,4,0,1,,213.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,749.593186311375,1700.0,16396.149452218302,0,5,0,1,100.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10734227600992514,16396.149452218302,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +30830,2,56.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,291.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,130853,1,2,0,1,2,958.0,368.0,450.0,11,0.0,3.0,2.0,1.0,1.0,1,1,1697.26889704983,0.0,16381.708925954648,0,7,2,3,47.0,8,6,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017763714476634915,16381.708925954648,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +30831,2,58.0,0.0,6,111,405.0,,,37,22,0.0,0.0,,530.0,173.19865317456512,,20,0,0,0,0,0,0,0,0,0,,1,,4,130854,2,2,0,0,2,,1200.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,134.38717487003203,405.0,115902.40460845134,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0045728128056573,77268.26973896756,10,5,10,10_1,10_2,10_0_0 +30832,2,44.0,0.0,2,111,720.0,0.0,0.0,85,46,1898.4291318658827,0.0,1227.744391227884,2640.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,130855,1,1,2,0,1,,420.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,1003.57365350196,720.0,56255.811737105054,7,1,1,2,110.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0469284846930529,23439.921557127105,6,3,6,6_1,6_3,6_0_1 +30833,2,58.0,0.0,2,111,1551.0,0.0,0.0,34,22,2636.7071275915036,0.0,2644.766042770067,4051.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,130856,2,1,2,0,1,,465.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,293.89555299499,1551.0,97402.9513496662,1,1,0,1,100.0,7,6,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04159011553415196,46382.35778555533,10,5,10,10_1,10_2,10_0_1 +30834,2,48.0,0.0,8,112,1275.0,0.0,0.0,63,43,0.0,158.91927324122688,2174.130692799378,1459.0,88.67771042537734,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2003.0,6,130857,2,1,1,0,1,,300.0,676.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1367.9064694572,1275.0,29416.89344489343,4,1,2,3,98.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04959735135639458,16342.71858049635,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +30835,2,62.0,0.0,5,112,850.0,0.0,0.0,0,48,0.0,0.0,1449.420461866252,925.0,103.91919190473907,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,130858,2,1,2,0,1,,196.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1792.38166150952,850.0,6091.90808836508,0,4,0,1,96.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15184076755305206,6091.90808836508,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +30836,1,57.0,288.0,8,111,580.0,0.0,0.0,0,78,0.0,529.7309108040896,989.0163151557955,1040.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,0,,1,2002.0,6,130859,2,1,1,0,1,,220.0,,31,0.0,3.0,4.0,2.0,1.5,2,2,1085.67804083889,580.0,11846.158317910773,0,7,1,2,92.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0877921746518932,7897.438878607182,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +30837,2,56.0,0.0,6,400,378.0,0.0,0.0,54,64,527.3414255183008,0.0,644.5658053946391,1028.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,130860,2,1,1,0,1,,180.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1614.47849578453,378.0,42811.57586189995,1,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024012197152379663,28541.05057459997,8,4,8,8_1,8_0,8_0_0 +30838,2,97.0,0.0,2,111,360.0,,,0,78,0.0,0.0,,430.0,96.99124577775646,,70,0,0,0,0,0,0,0,0,0,,1,,2,130861,2,1,0,0,1,,210.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,50.747299211373786,360.0,19124.51111111111,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022484234891117044,19124.51111111111,5,3,5,5_1,5_2,5_0_1 +30839,2,49.0,0.0,8,211,250.0,0.0,0.0,0,63,0.0,0.0,426.3001358430153,310.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,1,8.0,1,2000.0,6,130862,2,1,3,0,1,,260.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1385.65119478954,250.0,20640.019928915965,0,1,0,1,80.0,1,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015019365343039257,20640.019928915965,5,3,5,5_1,5_1,5_0_0 +30840,2,77.0,0.0,1,111,329.0,952.0,0.0,77,78,0.0,0.0,561.0109787694081,1281.0,0.0,1807.375853638679,50,0,0,0,0,0,0,0,0,0,,1,,1,130863,2,2,4,0,1,,298.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,226.120880290719,329.0,37300.52309607362,5,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03434268191629844,24867.015397382416,7,4,7,7_1,7_3,7_1_0 +30841,2,72.0,0.0,7,111,1680.0,,,0,75,0.0,0.0,,1764.0,116.38949493330776,,30,0,0,0,0,0,0,0,0,0,,1,,5,130864,2,1,0,0,2,,860.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,78.13667882810432,1680.0,60904.359778275764,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028963443773514695,60904.359778275764,10,5,10,10_1,10_2,10_0_0 +30842,2,35.0,0.0,1,112,0.0,0.0,2200.0,46,63,0.0,0.0,1386.7002389124364,2200.0,0.0,2632.810724642298,42,2,2,2,2,2,2,2,1,2,70.0,1,,1,130865,2,2,3,0,1,,555.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,3097.66401600787,0.0,50181.76080700264,1,1,1,2,126.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.04384062983483433,27878.756003890354,7,4,7,7_1,7_1,7_1_0 +30843,2,45.0,0.0,7,112,1106.0,0.0,0.0,62,62,0.0,1059.4618216081792,1885.9518009694996,2010.0,144.10127944123818,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,5,130866,2,1,3,0,1,,247.0,459.0,43,3.0,2.0,5.0,4.0,2.3,3,3,1127.53861959225,1106.0,47311.95834387684,1,1,2,3,99.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042483973827309056,20570.4166712508,5,3,5,5_1,5_0,5_0_0 +30844,2,55.0,0.0,7,112,1470.0,0.0,0.0,54,62,0.0,331.081819252556,2506.64479875693,2233.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,5,130867,2,1,4,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,603.307959243539,1470.0,51322.84341806902,1,1,0,1,100.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04350889099830812,34215.22894537934,9,5,9,9_1,9_1,9_0_0 +30845,2,58.0,0.0,2,112,360.0,0.0,0.0,0,48,2974.2056399232165,0.0,613.872195613942,3250.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130868,2,1,2,0,1,,111.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1946.82356672538,360.0,6976.10045641748,0,4,0,1,116.0,6,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.4658763187692127,6976.10045641748,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +30846,2,57.0,0.0,8,111,725.0,,,54,63,0.0,0.0,,932.0,286.8169696570798,,71,0,0,0,0,0,0,0,0,2,90.0,1,1999.0,6,130869,2,1,0,0,2,,390.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,59.36799866659098,725.0,56393.08640449035,1,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01652684858060524,26853.850668804927,7,4,7,7_1,7_2,7_0_0 +30847,1,25.0,368.0,7,111,1700.0,0.0,0.0,62,81,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,5,130870,2,1,0,0,1,,400.0,347.0,43,2.0,0.0,4.0,3.0,1.8,2,2,362.699944350392,1700.0,9424.20843633496,4,4,2,3,64.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.18038650264203235,5235.671353519422,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +30848,2,54.0,0.0,5,221,590.0,0.0,0.0,85,63,0.0,1191.8945493092015,1006.0683205895161,1540.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,130871,2,2,2,0,1,,480.0,,42,1.0,2.0,4.0,4.0,2.3,3,3,961.321867643554,590.0,30591.558257216897,6,1,0,1,100.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05034068506911368,13300.677503137782,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +30849,2,26.0,0.0,1,212,470.0,0.0,0.0,0,37,0.0,0.0,801.4442553848687,470.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,,1,130872,2,1,0,0,1,,210.0,285.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1068.3444201254,470.0,30960.32744844421,0,1,2,3,45.0,1,0,5,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.015180717994105647,30960.32744844421,8,4,8,8_0,8_0,8_1_0 +30850,0,54.0,0.0,7,400,0.0,,,0,33,0.0,0.0,,480.0,0.0,,10,0,0,0,0,0,0,0,0,1,8.0,2,,5,130873,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,21.33867682391219,0.0,67557.19208352815,0,1,5,0,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007105091037628161,67557.19208352815,10,5,10,10_0,10_1,10_0_0 +30851,2,48.0,0.0,7,111,150.0,,,0,85,0.0,0.0,,238.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,0,,1,,5,130874,1,1,0,0,2,,240.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,110.35085485130972,150.0,10687.137761341284,0,7,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02226976065199799,10687.137761341284,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30852,2,26.0,0.0,2,111,240.0,210.0,0.0,43,52,0.0,0.0,409.2481304092947,450.0,0.0,398.6858500673557,50,1,2,2,1,2,2,2,2,2,25.0,2,,2,130875,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,914.600009604538,240.0,47601.62977562796,1,1,1,2,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.00945345783581553,26445.349875348867,7,4,7,7_0,7_4,7_0_1 +30853,2,85.0,0.0,1,400,340.0,0.0,0.0,0,77,0.0,1059.4618216081792,579.7681847465008,1210.0,96.99124577775646,0.0,70,2,2,2,1,2,2,2,2,0,,1,,1,130876,2,3,4,0,2,,97.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1583.548079916,340.0,10993.658441245621,0,5,0,1,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.11006345216805759,10993.658441245621,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +30854,2,80.0,0.0,7,112,660.0,0.0,0.0,0,77,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,5,130877,2,1,0,0,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,2430.19681355391,660.0,33784.76774994037,0,5,0,1,43.0,9,3,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019535431022791767,33784.76774994037,9,5,9,9_0,9_1,9_0_0 +30855,2,55.0,0.0,5,120,840.0,0.0,0.0,56,62,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,43,2,1,2,1,1,2,2,2,2,25.0,2,,3,130878,2,3,0,1,1,768.0,0.0,303.0,43,2.0,1.0,3.0,2.0,1.5,2,2,655.466775070115,840.0,22862.17607305138,1,1,2,3,68.0,0,2,4,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.03674190931414196,15241.450715367588,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +30856,2,52.0,0.0,1,111,710.0,3190.0,0.0,34,34,0.0,0.0,1210.6923857941633,3900.0,0.0,6056.227912927927,10,0,0,0,0,0,0,0,0,1,5.0,1,,1,130879,2,1,1,0,1,,1400.0,,43,2.0,1.0,9.0,4.0,2.5,4,3,1225.1562582579,710.0,198434.18456174328,1,1,1,2,273.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.019653871678478388,79373.67382469731,10,5,10,10_1,10_3,10_1_0 +30857,2,60.0,0.0,5,120,650.0,0.0,0.0,52,42,1582.0242765549024,331.081819252556,1108.3803531918397,2500.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,130880,2,1,1,0,1,,420.0,,43,2.0,3.0,5.0,3.0,2.0,3,3,625.761843138139,650.0,71864.09142351625,1,1,0,1,110.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03478788850563439,35932.045711758125,9,5,9,9_1,9_0,9_0_0 +30858,2,71.0,0.0,1,400,800.0,0.0,0.0,77,78,0.0,980.0021849875657,1364.160434697649,1540.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130881,2,1,2,0,1,,130.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,996.901503068019,800.0,14583.943004387032,5,5,0,1,100.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10559558546935824,9722.628669591355,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +30859,2,46.0,0.0,9,111,630.0,,,34,33,0.0,0.0,,630.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,2,2008.0,6,130882,2,1,0,0,2,,690.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,117.78577318318705,630.0,99991.56728901861,1,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006300531305595293,47615.032042389816,10,5,10,10_0,10_2,10_0_0 +30860,2,68.0,0.0,2,300,1448.0,0.0,0.0,77,75,0.0,52.973091080408956,2469.1303868027444,1488.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,130883,2,1,4,0,1,,247.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,979.708107724436,1448.0,41103.590889921215,5,5,0,1,102.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03620121667678588,27402.393926614142,7,4,7,7_1,7_0,7_0_1 +30861,1,33.0,570.0,7,111,450.0,,,0,85,0.0,0.0,,710.0,360.2531986030954,,71,0,0,0,0,0,0,0,0,0,,2,,5,130884,2,2,0,0,2,,900.0,610.0,31,0.0,0.0,5.0,7.0,2.9999999999999996,3,1,86.22895358923766,450.0,23764.272058817973,0,6,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029876783022964398,7921.424019605992,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +30862,1,43.0,298.0,9,111,0.0,,,0,22,0.0,0.0,,775.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,130885,2,3,0,0,2,,126.0,700.0,32,1.0,0.0,4.0,3.0,1.8,2,1,115.48168074557692,0.0,4890.96768371036,0,4,2,3,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.15845535078491332,2717.2042687279777,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +30863,1,66.0,180.0,2,111,480.0,,,0,78,0.0,0.0,,568.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,2,130886,2,2,0,0,2,,200.0,384.0,11,0.0,1.0,4.0,1.0,1.0,1,1,99.44651008926839,480.0,10328.73170731707,0,5,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05499223100137435,10328.73170731707,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30864,2,44.0,0.0,2,111,0.0,0.0,1440.0,45,46,0.0,0.0,907.658338197231,1440.0,0.0,1723.2942924931403,44,0,0,0,0,0,0,0,0,3,20.0,2,,2,130887,2,1,0,0,1,,0.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,285.725049531032,0.0,62805.57631070142,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022927900428399362,22430.562968107653,6,3,6,6_0,6_4,6_0_1 +30865,2,82.0,0.0,1,112,480.0,0.0,0.0,0,86,2109.365702073203,0.0,818.4962608185893,2680.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130888,2,1,1,0,1,,480.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,346.258676227373,480.0,11927.447646054177,0,5,0,1,60.0,9,1,3,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.22469182674522944,11927.447646054177,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +30866,2,34.0,0.0,2,111,527.0,0.0,0.0,55,37,0.0,0.0,898.6406863570762,527.0,0.0,0.0,71,1,2,2,1,1,2,2,2,2,45.0,2,,2,130889,2,2,0,1,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,318.557124221792,527.0,67784.71346568238,1,1,1,2,107.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.00777461426117566,32278.434983658273,8,4,8,8_0,8_3,8_0_1 +30867,2,81.0,0.0,2,111,317.0,987.0,0.0,0,75,0.0,0.0,540.5485722489434,1304.0,0.0,1873.8234953165718,70,0,0,0,0,0,0,0,0,0,,1,,2,130890,2,1,3,0,2,,387.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,345.202403095162,317.0,27331.011821627104,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04771136935984716,27331.011821627104,7,4,7,7_1,7_3,7_0_1 +30868,1,51.0,68.0,2,111,400.0,800.0,0.0,0,56,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,71,0,0,0,0,0,0,0,0,0,,2,,2,130891,2,2,0,0,1,,400.0,345.0,22,1.0,0.0,4.0,2.0,1.5,2,2,259.604494332804,400.0,23237.448562721765,0,4,2,3,70.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05164078133453417,15491.632375147843,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +30869,2,78.0,0.0,5,111,250.0,0.0,0.0,0,75,0.0,348.2980738536889,426.3001358430153,513.0,0.0,0.0,33,2,2,2,1,1,2,2,2,0,,2,,3,130892,1,3,0,1,1,556.0,0.0,433.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1171.17259080609,250.0,24097.76358298232,0,5,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.021288282550928385,24097.76358298232,6,3,6,6_0,6_4,6_0_0 +30870,2,88.0,0.0,1,112,318.0,0.0,0.0,0,77,1882.6088891003337,79.45963662061344,542.2537727923154,2243.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130893,2,2,5,0,1,,280.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,1392.33052256578,318.0,10974.810474713895,0,5,0,1,100.0,9,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.20437710566099532,10974.810474713895,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +30871,2,46.0,0.0,7,111,480.0,,,90,52,0.0,0.0,,569.0,123.31744106029036,,71,0,0,0,0,0,0,0,0,2,5.0,2,,5,130894,2,1,0,0,2,,600.0,267.0,43,3.0,3.0,4.0,4.0,2.5,4,4,127.48716346850844,480.0,22491.097827262736,1,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025298898451736884,8996.439130905095,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +30872,2,52.0,0.0,8,300,1500.0,0.0,0.0,52,69,527.3414255183008,0.0,2557.8008150580918,2080.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,11.0,1,2001.0,6,130895,2,1,1,0,1,,570.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,1053.23710875985,1500.0,54423.08022507015,1,1,1,2,267.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03821907895323135,27211.540112535076,7,4,7,7_1,7_0,7_0_0 +30873,2,83.0,0.0,2,111,200.0,990.0,0.0,0,77,0.0,0.0,341.04010867441224,1190.0,0.0,1879.519007460391,71,0,0,0,0,0,0,0,0,0,,2,,2,130896,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,534.863020078879,200.0,20695.877998426644,0,5,0,1,80.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.057499372584746924,20695.877998426644,5,3,5,5_0,5_3,5_0_1 +30874,2,49.0,0.0,1,111,350.0,0.0,0.0,74,31,0.0,0.0,596.8201901802214,1388.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,,1,130897,2,1,0,1,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,568.498650632327,350.0,350548.73613407364,5,1,0,1,83.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003959506502026396,233699.15742271577,10,5,10,10_0,10_4,10_1_0 +30875,2,44.0,0.0,2,111,0.0,0.0,175.0,0,38,0.0,0.0,110.30570082258016,189.0,19.398249155551294,209.42812582381916,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,130898,2,2,0,1,2,,60.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1811.30378897781,0.0,54600.74940219452,0,1,1,2,62.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.003461490951485067,54600.74940219452,10,5,10,10_0,10_2,10_0_1 +30876,2,41.0,0.0,1,300,2500.0,0.0,0.0,0,55,0.0,397.2981831030672,4263.001358430153,2800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,1,130899,2,1,4,0,1,,424.0,,22,1.0,2.0,3.0,3.0,2.0,3,3,932.12968921481,2500.0,42386.480138994404,0,1,0,1,57.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06605879966485059,21193.240069497202,5,3,5,5_1,5_0,5_1_0 +30877,2,39.0,0.0,8,400,600.0,0.0,0.0,67,62,1476.555991451242,1019.7320032978724,1023.1203260232367,2835.0,90.06329965077386,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,130900,1,1,1,0,1,,450.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1278.65361040315,600.0,41653.497451404066,1,1,1,2,140.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06806151160073684,19834.998786382886,5,3,5,5_1,5_0,5_0_0 +30878,2,56.0,0.0,7,111,0.0,,,0,67,0.0,0.0,,252.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,130901,2,1,0,0,1,,100.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,135.54572878369456,0.0,8598.777360967684,0,4,0,1,63.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029306492007096292,8598.777360967684,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30879,2,67.0,0.0,8,111,731.0,931.0,0.0,0,71,0.0,0.0,1246.5015972049766,1662.0,0.0,1767.5072686319436,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,130902,2,1,2,0,1,,260.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1424.32499813107,731.0,20298.567736941422,0,5,0,1,110.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0818776980493713,20298.567736941422,5,3,5,5_1,5_3,5_0_0 +30880,2,60.0,0.0,1,111,0.0,0.0,2200.0,78,52,0.0,0.0,1386.7002389124364,2350.0,207.83838380947813,2632.810724642298,71,2,2,2,1,1,2,2,2,2,2.0,1,,1,130903,2,3,3,0,1,,220.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,162.946654390095,0.0,33638.43510200027,5,1,0,1,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06986056256404924,22425.623401333516,6,3,6,6_1,6_2,6_1_0 +30881,2,61.0,0.0,6,120,500.0,0.0,0.0,56,46,0.0,0.0,852.6002716860306,1101.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,4,130904,2,1,3,0,1,,145.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1350.89410467602,500.0,43063.41405627641,1,1,0,1,108.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025566946423736494,28708.942704184272,8,4,8,8_1,8_0,8_0_0 +30882,1,32.0,255.0,5,111,0.0,0.0,400.0,0,67,0.0,0.0,252.12731616589753,400.0,0.0,478.69285902587234,50,2,2,2,2,1,2,2,2,0,,2,,3,130905,1,3,0,1,1,1129.0,0.0,333.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1211.55649404267,0.0,5154.232367321762,0,4,2,3,77.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.07760612473275971,5154.232367321762,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30883,2,48.0,0.0,2,111,318.0,102.0,0.0,63,52,0.0,0.0,542.2537727923154,420.0,0.0,193.6474128898585,50,1,1,2,2,1,1,2,2,3,60.0,2,,2,130906,1,1,0,1,1,775.0,0.0,375.0,43,2.0,0.0,3.0,5.0,2.5999999999999996,3,3,624.266927415378,318.0,37884.72000250232,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,1,0,0,0.011086263801666177,14571.046154808586,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +30884,2,69.0,0.0,7,120,502.0,0.0,0.0,74,75,0.0,331.081819252556,856.0106727727747,2205.0,2013.261144501145,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,130907,2,1,2,0,1,,198.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,602.865473524762,502.0,39954.41869723266,5,5,0,1,200.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.055187888396252,26636.279131488438,7,4,7,7_1,7_0,7_0_0 +30885,2,49.0,0.0,1,111,1173.0,0.0,0.0,67,63,0.0,0.0,2000.2002373754278,1308.0,187.05454542853033,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130908,2,2,2,0,1,,357.0,,43,4.0,0.0,4.0,5.0,2.8,4,4,655.775108640763,1173.0,75978.32860007972,1,1,0,1,100.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017215435297146395,27135.11735717133,7,4,7,7_1,7_3,7_1_0 +30886,2,47.0,0.0,1,112,280.0,0.0,0.0,0,47,0.0,198.6490915515336,477.4561521441771,3430.0,4156.767676189563,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,1,130909,2,1,2,0,1,,322.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,705.112952926268,280.0,44294.402449729416,0,1,1,2,120.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0774364210893865,44294.402449729416,10,5,10,10_1,10_0,10_1_0 +30887,2,54.0,0.0,9,111,500.0,,,74,45,0.0,0.0,,500.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,130910,2,1,0,0,1,,200.0,,42,1.0,98.0,5.0,4.0,2.5,4,3,169.60663437575818,500.0,86605.2540268645,5,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005773321787670095,34642.1016107458,9,5,9,9_1,9_2,9_0_0 +30888,1,38.0,385.0,5,111,170.0,0.0,0.0,0,85,0.0,0.0,289.8840923732504,204.0,47.110033663481715,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,130911,2,2,0,1,1,855.0,0.0,344.0,31,0.0,0.0,3.0,3.0,1.6,1,1,409.563275602698,170.0,11443.350980990414,0,6,2,3,60.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017826946000247906,7152.094363119008,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +30889,2,50.0,0.0,7,111,2136.0,0.0,0.0,85,48,0.0,0.0,3642.3083606427226,2136.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,130912,2,1,3,0,1,,1224.0,640.0,42,2.0,2.0,6.0,5.0,3.0,5,4,1300.91451548067,2136.0,55471.23810104261,6,1,2,3,110.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03850644177274732,18490.412700347537,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +30890,2,69.0,0.0,1,400,500.0,0.0,0.0,71,71,2109.365702073203,264.8654554020448,852.6002716860306,2700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130913,2,1,3,0,1,,722.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1216.17270664776,500.0,176667.73579079806,5,5,0,1,170.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015282926381063816,117778.49052719871,10,5,10,10_1,10_0,10_1_0 +30891,2,57.0,0.0,1,112,2300.0,2.0,0.0,0,43,0.0,0.0,3921.9612497557405,2302.0,0.0,3.797008095879578,50,2,2,2,1,1,1,2,2,1,5.0,1,,1,130914,1,1,3,0,1,,333.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,756.711428240114,2300.0,21676.91585145143,0,1,0,1,130.0,6,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.10619591900320377,14451.277234300955,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30892,2,64.0,0.0,2,111,310.0,62.0,0.0,0,78,0.0,0.0,528.612168445339,372.0,0.0,117.70725097226692,71,0,0,0,0,0,0,0,0,0,,2,,2,130915,2,1,0,1,1,,0.0,412.0,11,0.0,3.0,3.0,1.0,1.0,1,1,307.203167125588,310.0,15548.18288336714,0,5,2,3,50.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02392562544385502,15548.18288336714,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +30893,2,66.0,0.0,5,111,450.0,560.0,0.0,75,74,0.0,86.08127300566456,767.3402445174275,1075.0,0.0,1063.162266846282,42,0,0,0,0,0,0,0,0,0,,1,,3,130916,2,2,1,0,1,,340.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,876.465990142723,450.0,47097.34833761306,5,5,0,1,94.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022825064211555186,31398.232225075375,8,4,8,8_1,8_3,8_0_0 +30894,2,41.0,0.0,5,111,600.0,400.0,0.0,0,52,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,3,40.0,2,,3,130917,2,1,0,1,2,,0.0,440.0,32,1.0,0.0,3.0,2.0,1.5,2,1,411.128358589294,600.0,20104.35472199813,0,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049740467367788865,13402.903147998753,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +30895,1,29.0,271.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,457.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,130918,1,1,0,1,1,656.0,0.0,262.0,12,1.0,0.0,2.0,1.0,1.0,1,1,226.639348880022,0.0,10668.71814327807,0,4,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04283551162029126,10668.71814327807,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +30896,1,50.0,64.0,8,111,220.0,,,0,68,0.0,0.0,,358.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,130919,1,2,0,0,2,,134.0,218.0,12,1.0,0.0,1.0,1.0,1.0,1,1,98.7469140272362,220.0,14764.11469338143,0,1,2,3,25.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02424798285809084,14764.11469338143,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +30897,2,51.0,0.0,1,112,632.0,0.0,0.0,52,62,2425.7705573841836,0.0,1077.6867434111427,2932.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,130920,2,1,1,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,988.462362540408,632.0,39912.85947401898,1,1,1,2,110.0,5,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07346003364926952,26608.57298267932,7,4,7,7_1,7_0,7_1_0 +30898,1,80.0,35.0,2,111,245.0,120.0,0.0,0,77,0.0,0.0,417.774133126155,365.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,130921,1,3,0,1,2,285.0,121.0,212.0,11,0.0,3.0,3.0,1.0,1.0,1,1,1434.62234904946,245.0,13545.849548382666,0,5,2,3,63.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02694552295862314,13545.849548382666,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +30899,2,44.0,0.0,6,112,660.0,0.0,0.0,0,52,0.0,0.0,1125.4323586255605,677.0,23.555016831740858,0.0,50,0,0,0,0,0,0,0,0,3,110.0,1,,4,130922,1,2,3,0,2,,600.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,3096.088566715,660.0,22557.29330182451,0,1,1,2,30.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030012466076559014,22557.29330182451,6,3,6,6_1,6_1,6_0_0 +30900,2,66.0,0.0,2,111,600.0,1200.0,0.0,74,90,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,0,,1,,2,130923,2,2,2,0,1,,550.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,819.508468934301,600.0,177549.40293617727,6,5,0,1,180.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010138023390858918,118366.26862411818,10,5,10,10_1,10_4,10_0_1 +30901,2,62.0,0.0,1,111,795.0,1504.0,0.0,37,74,0.0,0.0,1355.6344319807886,2299.0,0.0,2855.3500881014425,33,0,0,0,0,0,0,0,0,0,,1,,1,130924,2,3,2,0,1,,346.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,751.971083888481,795.0,92306.56449569944,1,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024906137635607818,61537.70966379962,10,5,10,10_1,10_4,10_1_0 +30902,1,47.0,203.0,8,111,540.0,,,0,55,0.0,0.0,,561.0,29.09737373332694,,71,0,0,0,0,0,0,0,0,2,10.0,2,2000.0,6,130925,2,2,0,0,2,,100.0,496.0,32,1.0,0.0,4.0,2.0,1.5,2,2,99.49079946489928,540.0,25255.677426616454,0,1,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022212827259536237,16837.118284410968,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +30903,2,53.0,0.0,1,111,0.0,0.0,0.0,22,56,0.0,66.2163638505112,0.0,3632.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,20.0,1,,1,130926,2,1,2,0,1,,493.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,694.661970381912,0.0,40840.23512285177,1,1,0,1,80.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08893190720069455,27226.823415234514,7,4,7,7_1,7_4,7_1_0 +30904,2,62.0,0.0,1,112,1254.0,0.0,0.0,21,21,3164.0485531098047,264.8654554020448,2138.3214813885647,6514.0,62.351515142843446,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,130927,1,1,2,0,1,,606.0,,43,2.0,3.0,9.0,2.0,1.5,2,2,615.046188484028,1254.0,112724.0,1,1,0,1,180.0,10,0,1,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05778716156275505,75149.33333333333,10,5,10,10_1,10_0,10_1_0 +30905,2,41.0,0.0,9,211,480.0,,,0,55,0.0,0.0,,580.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,130928,2,1,0,0,2,,480.0,,32,1.0,0.0,5.0,2.0,1.5,2,1,74.56633655941022,480.0,18853.632032488647,0,4,0,1,92.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030763303272310707,12569.088021659098,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +30906,2,38.0,0.0,2,111,530.0,0.0,0.0,33,34,0.0,0.0,903.7562879871924,530.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,55.0,2,,2,130929,2,2,0,1,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,901.33172512438,530.0,105414.59858069065,1,1,1,2,97.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005027766619955454,50197.42789556697,10,5,10,10_0,10_4,10_0_1 +30907,1,40.0,253.0,2,111,221.0,329.0,0.0,55,63,0.0,0.0,376.84932008522554,550.0,0.0,624.6078317721906,71,2,2,1,2,1,2,1,2,0,,2,,2,130930,1,3,0,0,2,,530.0,216.0,43,2.0,0.0,3.0,4.0,2.1,2,2,417.183438930018,221.0,10859.093431780106,4,4,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.050648795265945123,5170.9968722762405,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30908,2,65.0,0.0,5,111,492.0,0.0,0.0,75,74,1423.821848899412,0.0,838.958667339054,1842.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,130931,2,1,2,0,1,,328.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,835.749418064927,492.0,54811.076514574495,5,5,0,1,100.0,7,5,4,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03360634596385284,36540.717676383,9,5,9,9_1,9_2,9_0_0 +30909,1,65.0,28.0,2,111,190.0,140.0,0.0,0,77,0.0,0.0,323.9881032406916,330.0,0.0,265.7905667115705,70,1,2,2,1,2,2,2,2,0,,2,,2,130932,1,3,0,0,1,564.0,130.0,290.0,11,0.0,1.0,4.0,1.0,1.0,1,1,1111.75503876885,190.0,14558.733364109032,0,5,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.022666807046108396,14558.733364109032,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +30911,2,22.0,0.0,1,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,777.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,1,130934,2,2,0,0,1,,0.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,415.71309711945,0.0,22287.36451818475,0,1,2,3,32.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03486280306341419,22287.36451818475,6,3,6,6_0,6_2,6_1_0 +30912,2,70.0,0.0,2,111,315.0,940.0,0.0,72,74,0.0,0.0,537.1381711621992,1255.0,0.0,1784.5938050634018,42,0,0,0,0,0,0,0,0,0,,1,,2,130935,2,1,2,0,1,,440.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,1104.58726083324,315.0,41063.30944560158,5,5,0,1,120.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0305625634403032,27375.539630401054,7,4,7,7_1,7_2,7_0_1 +30913,2,72.0,0.0,2,111,361.0,93.0,0.0,77,75,0.0,0.0,615.5773961573141,454.0,0.0,176.56087645840037,12,0,0,0,0,0,0,0,0,0,,2,,2,130936,1,1,0,1,2,,0.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,752.681940583507,361.0,54742.96817577598,5,5,0,1,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008293302594448963,36495.31211718399,9,5,9,9_0,9_4,9_0_1 +30914,2,67.0,0.0,9,111,460.0,0.0,0.0,74,75,0.0,0.0,784.3922499511482,460.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,2007.0,6,130937,2,1,0,0,1,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1937.94032341388,460.0,50735.51699626433,5,5,1,2,71.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.009066626837248352,33823.67799750955,9,5,9,9_0,9_3,9_0_0 +30915,2,74.0,0.0,7,112,0.0,,,0,75,0.0,0.0,,494.0,0.0,,41,0,0,0,0,0,0,0,0,0,,2,,5,130938,1,2,0,0,2,,300.0,769.0,11,0.0,1.0,2.0,1.0,1.0,1,1,153.70525758140198,0.0,39898.8726935877,0,6,2,3,40.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01238130219351768,39898.8726935877,9,5,9,9_0,9_1,9_0_0 +30916,2,52.0,0.0,1,211,315.0,0.0,0.0,67,52,1423.821848899412,238.3789098618403,537.1381711621992,1909.0,88.67771042537734,0.0,31,1,2,2,1,2,2,2,2,2,5.0,1,,1,130939,1,1,1,0,2,,190.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,845.052718776492,315.0,41269.846468002695,1,1,0,1,98.0,1,3,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.046256532635276085,27513.230978668464,7,4,7,7_1,7_1,7_1_0 +30917,2,24.0,0.0,9,112,1817.0,0.0,0.0,54,62,0.0,529.7309108040896,3098.349387307035,2217.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2013.0,6,130940,2,1,1,0,1,,296.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1759.69921374187,1817.0,10063.254105825146,1,1,1,2,100.0,9,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2203064711162051,6708.836070550097,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +30918,2,31.0,0.0,1,120,2400.0,0.0,0.0,48,43,0.0,0.0,4092.4813040929466,2470.0,96.99124577775646,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,130941,2,1,1,0,1,,200.0,470.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1703.40808983861,2400.0,84756.7113922944,1,1,2,3,92.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0291422349855891,47087.061884607996,10,5,10,10_1,10_0,10_1_0 +30919,2,49.0,0.0,9,111,450.0,,,46,43,0.0,0.0,,542.0,127.47420873647992,,33,0,0,0,0,0,0,0,0,2,60.0,1,2008.0,6,130942,2,1,0,0,2,,400.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,135.56759490777068,450.0,86314.47816522277,1,1,1,2,127.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006279363688702446,35964.365902176156,9,5,9,9_1,9_2,9_0_0 +30920,1,52.0,254.0,2,400,200.0,0.0,0.0,0,56,0.0,0.0,341.04010867441224,270.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,130943,2,1,0,1,1,,200.0,255.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1491.65559127421,200.0,8765.281529141728,0,1,2,3,98.0,0,0,4,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030803346030853346,8765.281529141728,1,1,1_1,1_0_1,1_0_1,1_0_1_1 +30921,2,47.0,0.0,9,111,519.0,0.0,0.0,0,42,0.0,0.0,884.9990820100998,519.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,130944,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1816.10751830191,519.0,65953.21186223863,0,1,1,2,69.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007869214938069639,65953.21186223863,10,5,10,10_0,10_3,10_0_0 +30922,2,40.0,0.0,9,112,1700.0,0.0,0.0,33,38,2109.365702073203,0.0,2898.840923732504,3850.0,207.83838380947813,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,2006.0,6,130945,2,1,1,0,1,,1200.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1263.43075994295,1700.0,91299.66913537719,1,1,0,1,120.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.042168827515588286,38041.528806407165,9,5,9,9_1,9_0,9_0_0 +30923,2,22.0,0.0,7,211,0.0,0.0,0.0,0,63,0.0,0.0,0.0,810.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,130946,2,2,1,0,1,,211.0,650.0,22,2.0,1.0,3.0,2.0,1.5,2,2,1141.21133254858,0.0,26213.732245060746,0,1,2,3,85.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03089983495778714,17475.821496707165,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +30924,2,48.0,0.0,8,112,700.0,0.0,0.0,55,64,1582.0242765549024,66.2163638505112,1193.6403803604428,2275.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,130947,2,2,2,0,1,,250.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,1038.72195261096,700.0,24465.17619950867,4,1,1,2,130.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09298931597499341,12232.588099754335,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +30925,2,49.0,0.0,2,111,440.0,110.0,0.0,78,46,0.0,0.0,750.2882390837069,550.0,0.0,208.8354452733768,60,1,2,2,1,2,2,2,2,1,15.0,2,,2,130948,2,2,0,1,1,541.0,360.0,340.0,42,1.0,2.0,4.0,3.0,2.0,3,2,288.38865287236,440.0,28769.133974870147,5,1,2,3,60.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.01911771138055199,14384.566987435073,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +30926,2,67.0,0.0,5,111,190.0,0.0,0.0,74,74,0.0,0.0,323.9881032406916,190.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,130949,2,1,0,1,1,,74.0,,41,0.0,1.0,2.0,2.0,1.5,2,2,925.894249318764,190.0,75890.97223596057,5,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0025035915920177056,50593.98149064038,10,5,10,10_0,10_4,10_0_0 +30927,2,48.0,0.0,5,111,0.0,0.0,0.0,48,33,0.0,0.0,0.0,2644.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,80.0,1,,3,130950,2,1,2,0,1,,531.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,640.932890251651,0.0,67628.45471089908,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03909596945993636,45085.63647393272,10,5,10,10_1,10_4,10_0_0 +30928,2,51.0,0.0,7,111,1100.0,1500.0,0.0,54,38,0.0,0.0,1875.7205977092674,2600.0,0.0,2847.7560719096837,12,0,0,0,0,0,0,0,0,3,60.0,1,,5,130951,2,1,2,0,1,,800.0,,43,2.0,0.0,8.0,5.0,2.8,4,3,529.65875774415,1100.0,135555.1018796062,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019180392061592784,48412.53638557364,10,5,10,10_1,10_4,10_0_0 +30929,1,67.0,241.0,2,111,550.0,660.0,0.0,0,77,0.0,0.0,937.8602988546337,1210.0,0.0,1253.0126716402608,60,0,0,0,0,0,0,0,0,0,,2,,2,130952,2,3,0,1,1,320.0,600.0,323.0,21,2.0,4.0,5.0,3.0,2.0,3,3,327.221827201441,550.0,19436.020242547467,0,5,2,3,80.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06225554331082576,9718.010121273734,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +30930,2,71.0,0.0,2,111,439.0,1592.0,0.0,77,78,0.0,66.2163638505112,748.5830385403349,2081.0,0.0,3022.418444320144,71,0,0,0,0,0,0,0,0,0,,1,,2,130953,2,1,2,0,2,,579.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,647.322735656306,439.0,63307.10008862456,5,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03287151041647425,31653.55004431228,8,4,8,8_1,8_4,8_0_1 +30931,1,87.0,219.0,2,211,118.0,400.0,0.0,0,86,0.0,0.0,201.21366411790322,546.0,38.79649831110259,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,130954,2,2,0,1,1,420.0,100.0,226.0,11,0.0,4.0,2.0,1.0,1.0,1,1,426.455012791831,118.0,9743.349250018422,0,5,2,3,40.0,2,2,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05603822525390514,9743.349250018422,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +30932,2,73.0,0.0,2,111,451.0,1095.0,0.0,77,78,0.0,0.0,769.0454450607996,1546.0,0.0,2078.861932494069,50,0,0,0,0,0,0,0,0,0,,1,,2,130955,2,2,2,0,1,,240.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,211.996598230873,451.0,26532.171326140982,6,5,0,1,92.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.058268883499813455,17688.114217427323,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +30933,2,84.0,0.0,1,111,600.0,600.0,0.0,0,78,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,50,2,2,2,2,2,2,2,1,0,,2,,1,130956,1,2,0,0,2,,80.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,528.151152217989,600.0,12137.0929946561,0,5,0,1,59.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0.09887046268232055,12137.0929946561,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +30934,2,60.0,0.0,2,111,827.0,1069.0,0.0,46,42,0.0,1589.1927324122687,1410.2008493686947,3096.0,0.0,2029.5008272476343,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,130957,2,1,2,0,1,,480.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,1201.15224119299,827.0,74619.72008155202,1,1,0,1,140.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.041490372740830124,37309.86004077601,9,5,9,9_1,9_4,9_0_1 +30936,2,93.0,0.0,7,111,320.0,,,0,72,0.0,0.0,,420.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,5,130959,2,1,0,0,2,,240.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,100.24550880567408,320.0,9727.960784313724,0,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043174516151139035,9727.960784313724,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30937,2,56.0,0.0,6,211,1000.0,1200.0,0.0,21,33,0.0,0.0,1705.2005433720612,2200.0,0.0,2278.2048575277468,20,0,0,0,0,0,0,0,0,2,40.0,1,,4,130960,2,1,3,0,1,,1000.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,632.229537371435,1000.0,93114.02731553714,1,1,0,1,175.0,2,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023626944977310684,46557.01365776857,10,5,10,10_1,10_1,10_0_0 +30938,1,64.0,253.0,6,211,360.0,,,0,86,0.0,0.0,,448.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,2,,4,130961,2,2,0,0,2,,144.0,296.0,11,0.0,5.0,2.0,1.0,1.0,1,1,122.16304094970276,360.0,10968.923453800471,0,7,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04084265897988181,10968.923453800471,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +30939,2,61.0,0.0,1,120,300.0,0.0,0.0,0,78,0.0,927.0290939071567,511.56016301161833,1000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,130962,2,1,2,0,2,,0.0,350.0,11,0.0,3.0,3.0,1.0,1.0,1,1,257.990748709291,300.0,20468.434379899987,0,5,2,3,50.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.048855715168034566,20468.434379899987,5,3,5,5_1,5_0,5_1_0 +30940,1,43.0,450.0,7,120,320.0,0.0,0.0,85,63,1898.4291318658827,0.0,545.6641738790596,2220.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,130963,2,3,4,0,1,,700.0,408.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1753.31265157572,320.0,13699.778514229558,6,4,2,3,101.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.16204641539964687,5708.241047595649,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +30941,1,60.0,28.0,1,111,0.0,300.0,0.0,0,63,0.0,0.0,0.0,633.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,2,,1,130964,1,1,0,0,1,,0.0,420.0,12,1.0,2.0,3.0,1.0,1.0,1,1,1801.6876858836,0.0,13200.79646769529,0,4,2,3,65.0,4,4,2,0,1,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04795165212561713,13200.79646769529,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +30942,2,53.0,0.0,6,112,1550.0,0.0,0.0,85,77,556.8725453473256,0.0,2643.0608422266946,2161.0,115.00390570791124,0.0,50,2,2,2,2,1,2,2,2,0,,1,,4,130965,2,1,2,0,1,,491.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,1116.34974322496,1550.0,42231.88548927929,5,5,0,1,121.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.051169867860827035,21115.942744639644,5,3,5,5_1,5_0,5_0_0 +30943,2,81.0,0.0,2,111,300.0,0.0,0.0,0,77,685.543853173791,0.0,511.56016301161833,950.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,130966,2,2,0,1,2,156.0,0.0,320.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1820.92611518019,300.0,8773.404646870373,0,5,2,3,35.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.1082817946096766,8773.404646870373,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +30944,2,30.0,0.0,6,112,450.0,,,0,64,0.0,0.0,,580.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,0,,1,,4,130967,2,1,0,0,2,,245.0,,22,3.0,0.0,5.0,4.0,2.5,4,4,115.62818434823947,450.0,9377.727148191152,0,1,0,1,75.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0618486751463946,3751.090859276461,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +30945,2,45.0,0.0,2,111,540.0,0.0,0.0,31,46,0.0,0.0,920.8082934209131,540.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,75.0,2,,2,130968,2,1,0,3,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,905.451269175804,540.0,92664.91859079289,1,1,1,2,64.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0058274480592232876,61776.61239386193,10,5,10,10_0,10_4,10_0_1 +30946,2,40.0,0.0,9,112,600.0,600.0,0.0,37,67,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,60,0,0,0,0,0,0,0,0,2,25.0,1,2004.0,6,130969,2,1,1,0,1,,300.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,759.949323398293,600.0,52317.150028883545,1,1,1,2,113.0,7,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02293702924065048,21798.812512034812,6,3,6,6_1,6_0,6_0_0 +30947,2,72.0,0.0,6,112,1316.0,0.0,0.0,78,72,0.0,927.0290939071567,2244.0439150776324,2016.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,130970,2,1,1,0,1,,352.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1636.23110329663,1316.0,28234.75492072016,5,5,0,1,88.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07140136352026744,18823.169947146773,5,3,5,5_1,5_1,5_0_0 +30948,2,40.0,0.0,8,111,300.0,0.0,0.0,0,37,0.0,0.0,511.56016301161833,300.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,25.0,2,2001.0,6,130971,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,602.824547076767,300.0,72277.21982299785,0,1,0,1,45.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004150685385169494,72277.21982299785,10,5,10,10_0,10_4,10_0_0 +30949,2,78.0,0.0,5,111,0.0,0.0,346.0,77,78,0.0,0.0,218.09012848350136,346.0,0.0,414.06932305737956,71,0,0,0,0,0,0,0,0,0,,2,,3,130972,2,1,0,1,1,920.0,220.0,328.0,41,0.0,6.0,4.0,2.0,1.5,2,2,315.609384872001,0.0,18408.925766268592,5,5,2,3,92.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01879523033516652,12272.617177512395,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +30950,2,71.0,0.0,1,112,731.0,0.0,0.0,77,75,0.0,264.8654554020448,1246.5015972049766,2331.0,1939.8249155551293,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,130973,2,3,1,0,1,,365.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,59.2356648999764,731.0,35182.894188923055,5,5,0,1,190.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06625378763563713,23455.26279261537,6,3,6,6_1,6_0,6_1_0 +30951,1,38.0,180.0,9,120,0.0,0.0,1040.0,0,42,0.0,0.0,655.5310220313336,1040.0,0.0,1244.6014334672682,10,1,2,2,1,1,2,2,2,2,20.0,2,2005.0,6,130974,2,1,0,0,1,,0.0,500.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2251.7192052962,0.0,22480.31704410581,0,1,2,3,65.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.046262692735140096,17292.551572389086,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +30952,2,61.0,0.0,5,111,250.0,170.0,0.0,0,37,0.0,0.0,426.3001358430153,420.0,0.0,322.74568814976413,31,0,0,0,0,0,0,0,0,2,25.0,2,,3,130975,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,429.738987242964,250.0,61208.269902909764,0,1,0,1,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.006861817866543451,61208.269902909764,10,5,10,10_0,10_3,10_0_0 +30953,2,38.0,0.0,9,111,240.0,,,63,68,0.0,0.0,,290.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,2009.0,6,130976,2,1,0,0,2,,300.0,500.0,42,1.0,0.0,3.0,4.0,2.1,2,2,124.75412203183643,240.0,5121.639846080442,6,1,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056622489810941146,2438.876117181163,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +30954,2,35.0,0.0,7,211,1200.0,,,0,65,0.0,0.0,,1350.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,130977,2,2,0,0,2,,600.0,,32,1.0,4.0,3.0,2.0,1.5,2,1,40.83641427875183,1200.0,34691.415001940375,0,1,0,1,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0389145268339297,23127.610001293582,6,3,6,6_1,6_2,6_0_0 +30955,1,61.0,357.0,5,111,720.0,,,81,81,0.0,0.0,,808.0,121.93185183489385,,31,2,2,1,2,1,2,2,2,0,,1,,3,130978,2,3,0,0,2,,250.0,515.0,43,2.0,1.0,4.0,4.0,2.5,4,4,119.51100774153345,720.0,12140.204053931477,4,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.06655571820791083,4856.081621572591,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +30956,1,38.0,110.0,2,111,480.0,1000.0,0.0,46,43,0.0,0.0,818.4962608185893,1480.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,130979,1,3,0,1,2,,300.0,749.0,43,2.0,0.0,4.0,4.0,2.5,4,2,1315.51978169914,480.0,20551.62659947241,4,1,2,3,100.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07201376459603416,8220.650639788964,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +30957,2,86.0,0.0,1,111,330.0,,,0,71,0.0,0.0,,462.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,1,130980,2,2,0,0,2,,300.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,99.6542363612057,330.0,14580.831592353308,0,5,0,1,90.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03168543557160956,14580.831592353308,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +30958,2,64.0,0.0,1,300,1717.0,0.0,0.0,52,77,0.0,198.6490915515336,2927.829332969829,1867.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,130981,2,1,1,0,1,,204.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,731.907267792722,1717.0,44851.41705023147,1,5,0,1,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04162633251718777,29900.944700154312,8,4,8,8_1,8_0,8_1_0 +30959,2,67.0,0.0,9,221,620.0,0.0,0.0,77,75,0.0,0.0,1057.224336890678,620.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,2007.0,6,130982,2,1,1,0,1,,110.0,720.0,41,0.0,4.0,3.0,2.0,1.5,2,2,1094.37591029316,620.0,32738.12515716897,5,5,2,3,80.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01893816451075033,21825.41677144598,6,3,6,6_1,6_1,6_0_0 +30960,2,40.0,0.0,2,111,220.0,420.0,0.0,0,37,0.0,0.0,375.14411954185346,640.0,0.0,797.3717001347114,31,2,1,2,1,2,1,2,2,3,90.0,2,,2,130983,2,1,0,1,1,324.0,0.0,440.0,32,1.0,0.0,3.0,2.0,1.3,1,1,209.663361429173,220.0,29721.32298429877,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02153336176650347,22862.556141768284,6,3,6,6_0,6_4,6_0_1 +30961,2,50.0,0.0,7,112,1100.0,1100.0,0.0,52,21,0.0,662.163638505112,1875.7205977092674,2700.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,5,130984,2,1,3,0,1,,1000.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,590.227653520837,1100.0,38560.568739362105,4,1,1,2,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07001971413465893,18362.175590172432,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +30962,2,85.0,0.0,2,211,402.0,1450.0,0.0,77,75,0.0,0.0,685.4906184355685,1852.0,0.0,2752.830869512694,70,0,0,0,0,0,0,0,0,0,,1,,2,130985,2,1,1,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1193.67280428507,402.0,33289.0350271283,5,5,0,1,160.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.055633934672205,22192.690018085534,6,3,6,6_1,6_1,6_0_1 +30963,2,33.0,0.0,1,111,1500.0,0.0,0.0,56,47,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,130986,1,2,0,0,1,,0.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,766.671054517249,1500.0,22615.20433665892,4,1,1,2,48.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06632705933894754,12564.002409254956,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +30964,2,48.0,0.0,2,111,160.0,,,78,85,0.0,0.0,,223.0,87.29212119998083,,71,2,2,2,2,1,2,2,2,0,,1,,2,130987,1,2,0,0,2,,180.0,,41,0.0,0.0,6.0,3.0,1.8,2,2,102.6381982914667,160.0,9687.19696969697,7,6,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.02302007491925456,5381.776094276094,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30965,2,67.0,0.0,1,111,600.0,0.0,0.0,77,72,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130988,2,1,1,0,1,,200.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,278.88185832224,600.0,44037.07873371361,5,5,0,1,58.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013624881968854486,29358.05248914241,8,4,8,8_1,8_3,8_1_0 +30967,2,55.0,0.0,2,111,429.0,0.0,0.0,0,62,0.0,1113.7592399655982,731.5310331066142,1270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,130990,2,1,0,1,1,480.0,0.0,343.0,22,2.0,1.0,4.0,2.0,1.5,2,2,275.462053319742,429.0,16816.167350236043,0,1,2,3,75.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07552255954340116,11210.778233490695,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +30968,2,78.0,0.0,2,111,0.0,0.0,1066.0,0,74,0.0,66.2163638505112,671.9192975821169,1116.0,0.0,1275.71646930395,10,0,0,0,0,0,0,0,0,0,,2,,2,130991,2,1,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1845.2622401208,0.0,32432.836138052327,0,5,0,1,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.034409571683761436,32432.836138052327,8,4,8,8_0,8_3,8_0_1 +30969,1,55.0,175.0,1,111,210.0,835.0,0.0,0,78,0.0,0.0,358.0921141081328,1045.0,0.0,1585.2508800297237,71,0,0,0,0,0,0,0,0,0,,1,,1,130992,1,1,2,0,1,,260.0,456.0,11,0.0,2.0,4.0,1.0,1.0,1,1,124.782819479118,210.0,7883.513597170904,0,6,2,3,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.1325551084702906,7883.513597170904,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +30970,0,44.0,0.0,7,111,600.0,,,0,64,0.0,0.0,,700.0,138.5589225396521,,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,130993,2,2,0,0,2,,400.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,64.43441873862899,600.0,19920.0,0,1,5,0,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035140562248995984,19920.0,5,3,5,5_1,5_2,5_0_0 +30971,1,66.0,140.0,1,111,471.0,0.0,0.0,0,75,0.0,0.0,803.1494559282409,471.0,0.0,0.0,70,2,1,2,2,2,1,2,2,0,,2,,1,130994,1,2,0,1,2,,0.0,410.0,21,1.0,5.0,3.0,2.0,1.5,2,2,2032.81895767495,471.0,36509.412418874446,0,5,2,3,69.0,5,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.012900782806258062,24339.60827924963,7,4,7,7_0,7_2,7_1_0 +30972,2,64.0,0.0,1,111,1080.0,0.0,0.0,78,78,0.0,0.0,1841.6165868418261,1236.0,216.15191916185728,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,130995,1,1,2,0,2,,230.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,438.085523036068,1080.0,30721.195831936664,5,5,0,1,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.040232808864656834,20480.797221291108,5,3,5,5_1,5_3,5_1_0 +30973,2,56.0,0.0,2,111,800.0,130.0,0.0,46,48,0.0,0.0,1364.160434697649,930.0,0.0,246.80552623217258,71,2,1,2,2,1,2,2,2,0,,2,,2,130996,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,363.15462097667,800.0,65624.23139011709,1,1,1,2,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014171594551278152,36457.90632784282,9,5,9,9_0,9_4,9_0_1 +30974,2,51.0,0.0,2,111,0.0,0.0,0.0,56,54,0.0,0.0,0.0,285.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,130997,2,1,0,1,1,482.0,0.0,231.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1035.72805736494,0.0,19646.781830165775,4,1,2,3,40.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014506192538994322,13097.85455344385,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +30975,1,28.0,170.0,2,111,120.0,0.0,0.0,0,34,0.0,715.1367295855209,204.62406520464734,660.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,7.0,2,,2,130998,1,2,0,1,2,540.0,0.0,365.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1445.12694635626,120.0,16563.84928106877,0,1,2,3,23.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.039845810523905824,16563.84928106877,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +30976,2,39.0,0.0,8,111,1560.0,0.0,0.0,37,42,0.0,0.0,2660.1128476604154,1560.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,130999,2,1,3,0,1,,1166.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,579.978944480059,1560.0,90160.26064353963,1,1,1,2,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01730252318333089,42933.45744930459,9,5,9,9_1,9_4,9_0_0 +30977,2,77.0,0.0,2,112,450.0,0.0,0.0,77,78,1054.6828510366015,662.163638505112,767.3402445174275,2100.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131000,2,1,3,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,934.342837139073,450.0,24985.343966443266,5,5,0,1,100.0,6,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08404927315871333,16656.895977628843,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +30978,2,57.0,0.0,6,111,2000.0,0.0,0.0,21,37,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,4,25.0,1,,4,131001,2,1,3,0,1,,400.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1436.92281677874,2000.0,53081.95847832033,1,1,0,1,140.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037677584952274086,35387.97231888022,9,5,9,9_1,9_3,9_0_0 +30979,1,23.0,305.0,1,221,0.0,0.0,0.0,68,67,0.0,0.0,0.0,1420.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,40.0,2,,1,131002,2,1,0,0,1,,219.0,435.0,43,2.0,0.0,4.0,2.0,1.5,2,2,2665.01454713887,0.0,7801.640850420217,4,1,2,3,87.0,1,2,7,0,0,0,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.18201299280823918,5201.093900280145,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +30980,2,65.0,0.0,2,111,276.0,234.0,0.0,0,75,0.0,0.0,470.6353499706889,510.0,0.0,444.24994721791063,41,0,0,0,0,0,0,0,0,0,,2,,2,131003,2,2,0,1,1,858.0,0.0,500.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1248.06806054537,276.0,35696.52439692306,0,5,2,3,73.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014287105218679513,35696.52439692306,9,5,9,9_0,9_3,9_0_1 +30981,0,60.0,0.0,5,111,390.0,,,0,77,0.0,0.0,,510.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,3,131004,2,1,0,0,2,,202.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,96.66834252624712,390.0,20773.525964932312,0,7,5,0,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02455047837622407,13849.017309954876,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +30982,2,51.0,0.0,6,112,900.0,1700.0,0.0,52,62,0.0,794.5963662061343,1534.680489034855,3320.0,166.2707070475825,3227.4568814976415,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,131005,2,1,2,0,1,,250.0,,43,4.0,0.0,7.0,5.0,2.8,4,4,311.558829109471,900.0,79416.07865759244,1,1,0,1,120.0,6,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.041805136392019486,28362.885234854446,8,4,8,8_1,8_0,8_0_0 +30983,2,42.0,0.0,8,111,535.0,1288.0,0.0,47,47,0.0,397.2981831030672,912.2822907040527,2123.0,0.0,2445.273213746448,20,0,0,0,0,0,0,0,0,2,45.0,1,2003.0,6,131006,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,700.744724198843,535.0,130233.1666571816,1,1,1,2,138.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016301530973200282,56623.11593790505,10,5,10,10_1,10_3,10_0_0 +30984,2,42.0,0.0,8,400,450.0,0.0,0.0,56,22,0.0,0.0,767.3402445174275,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,131007,2,1,2,0,1,,180.0,350.0,43,2.0,0.0,3.0,3.0,2.0,3,2,1075.06922314993,450.0,71691.51761494938,1,1,2,3,70.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.006276893208160575,35845.75880747469,9,5,9,9_1,9_0,9_0_0 +30985,2,36.0,0.0,1,300,1218.0,0.0,0.0,11,11,0.0,466.16320150759884,2076.9342618271703,1570.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,131008,2,1,3,0,1,,1134.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,872.809478057306,1218.0,23603.49224666877,1,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06651558098236834,11239.758212699415,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +30986,1,62.0,242.0,9,120,0.0,,,0,78,0.0,0.0,,968.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2007.0,6,131009,2,1,0,0,1,,124.0,400.0,11,0.0,2.0,1.0,1.0,1.0,1,1,89.31351333143698,0.0,8732.864091081241,0,5,2,3,38.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11084565039648397,8732.864091081241,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +30987,2,74.0,0.0,1,211,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1256.0,332.541414095165,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,131010,1,2,3,0,1,,211.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,2256.17121723627,0.0,14276.63800554196,0,5,0,1,60.0,1,2,2,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.08797589457072745,14276.63800554196,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +30989,2,31.0,0.0,9,211,495.0,,,42,42,0.0,0.0,,518.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,2,9.0,2,2008.0,6,131012,2,1,0,0,2,,310.0,591.0,43,2.0,0.0,2.0,2.0,1.5,2,2,56.41559086089565,495.0,41727.49134760079,1,1,2,3,56.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012413878315495319,27818.327565067197,7,4,7,7_0,7_2,7_0_0 +30990,2,64.0,0.0,1,120,240.0,0.0,0.0,0,78,1160.1511361402618,0.0,409.2481304092947,1380.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131013,2,2,1,0,1,,165.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1531.30227332868,240.0,15262.894688871973,0,5,0,1,95.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09041535227299606,15262.894688871973,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +30991,2,35.0,0.0,2,111,600.0,,,85,34,0.0,0.0,,686.0,119.1606733841008,,10,0,0,0,0,0,0,0,0,0,,1,,2,131014,1,1,0,0,2,,80.0,950.0,42,1.0,0.0,5.0,3.0,1.8,2,2,178.3818694119297,600.0,96748.79983454358,6,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007090527233135432,53749.3332414131,10,5,10,10_1,10_2,10_0_1 +30992,2,31.0,0.0,1,300,1050.0,0.0,0.0,0,62,0.0,0.0,1790.4605705406643,1065.0,20.783838380947813,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,131015,2,1,1,0,1,,120.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1104.9372586185,1050.0,21751.559243243566,0,1,1,2,80.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0489620071871771,21751.559243243566,6,3,6,6_1,6_0,6_1_0 +30993,2,41.0,0.0,7,111,450.0,,,0,46,0.0,0.0,,519.0,95.60565655235995,,20,0,0,0,0,0,0,0,0,2,25.0,2,,5,131016,2,2,0,0,2,,308.0,883.0,32,1.0,0.0,3.0,2.0,1.5,2,1,104.30700985323749,450.0,30363.80091814116,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0170927217379402,20242.53394542744,5,3,5,5_0,5_2,5_0_0 +30994,2,51.0,0.0,9,112,600.0,600.0,0.0,34,53,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,131017,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,220.220194178384,600.0,61531.34962826025,1,1,1,2,100.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019502253847018845,29300.64268012393,8,4,8,8_1,8_0,8_0_0 +30995,2,29.0,0.0,5,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,317.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,40.0,2,,3,131018,2,2,0,0,1,,0.0,326.0,12,1.0,0.0,1.0,1.0,1.0,1,1,899.955731900854,0.0,23634.5845709749,0,1,2,3,20.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013412547999227392,23634.5845709749,6,3,6,6_0,6_4,6_0_0 +30996,2,45.0,0.0,9,112,0.0,0.0,0.0,67,62,0.0,0.0,0.0,366.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,8.0,1,2011.0,6,131019,2,1,1,0,1,,257.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1631.19569331711,0.0,31754.816048155255,1,1,1,2,100.0,9,0,8,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01152581074458034,15121.340975312025,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +30997,2,85.0,0.0,2,111,540.0,,,0,77,0.0,0.0,,678.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,131020,2,2,0,0,2,,640.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,110.48709333921502,540.0,9492.222896551724,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0714268941415503,9492.222896551724,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +30998,2,58.0,0.0,6,111,892.0,0.0,0.0,48,54,0.0,0.0,1521.0388846878786,992.0,138.5589225396521,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,4,131021,2,1,2,0,1,,195.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,1522.51527626067,892.0,35692.568739848,4,1,0,1,160.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027792900175674623,23795.045826565332,6,3,6,6_1,6_3,6_0_0 +30999,2,67.0,0.0,5,111,280.0,1000.0,0.0,0,77,0.0,0.0,477.4561521441771,1280.0,0.0,1898.504047939789,60,0,0,0,0,0,0,0,0,0,,1,,3,131022,2,2,2,0,1,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,326.05756790566,280.0,22560.97098662817,0,5,0,1,85.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056735146761132435,22560.97098662817,6,3,6,6_1,6_2,6_0_0 +31000,2,76.0,0.0,1,111,600.0,1000.0,0.0,77,75,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,33,0,0,0,0,0,0,0,0,0,,1,,1,131023,2,2,4,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,426.998703305041,600.0,27608.116548607468,6,5,0,1,95.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05795397151352227,18405.41103240498,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +31001,2,59.0,0.0,1,300,497.0,0.0,0.0,78,52,0.0,297.97363732730037,847.4846700559144,2272.0,2147.6632993646076,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,1,131024,2,1,4,0,1,,716.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1136.35863256501,497.0,33840.844422816306,5,1,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06713780458941986,22560.562948544204,6,3,6,6_1,6_0,6_1_0 +31002,0,27.0,0.0,6,112,480.0,,,0,56,0.0,0.0,,520.0,55.423569015860835,,31,0,0,0,0,0,0,0,0,2,60.0,1,,4,131025,2,3,0,0,2,,250.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,112.5707969001411,480.0,11468.36399371523,0,1,5,0,45.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0453421255451052,8821.818456704023,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +31003,2,30.0,0.0,6,211,0.0,,,0,55,0.0,0.0,,190.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,4,131026,2,2,0,0,2,,319.0,416.0,32,1.0,0.0,3.0,2.0,1.3,1,1,116.58594229424011,0.0,9152.24105633424,0,4,2,3,59.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02075994271026128,7040.1854279494155,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +31004,2,55.0,0.0,2,111,480.0,,,0,35,0.0,0.0,,546.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,20.0,2,,2,131027,1,3,0,0,2,,300.0,521.0,12,1.0,5.0,4.0,1.0,1.0,1,1,109.08604258788807,480.0,24074.506220979085,0,1,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022679592885033004,24074.506220979085,6,3,6,6_0,6_3,6_0_1 +31005,2,48.0,0.0,7,112,950.0,0.0,0.0,62,42,3691.3899786281054,132.4327277010224,1619.9405162034582,4670.0,166.2707070475825,0.0,31,1,2,1,1,1,2,2,2,2,15.0,1,,5,131028,2,2,3,0,1,,260.0,,43,3.0,0.0,6.0,4.0,2.3,3,3,937.367524744345,950.0,50140.0,1,1,1,2,120.0,8,3,3,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0.09313921021140806,21800.0,6,3,6,6_1,6_1,6_0_0 +31006,1,84.0,132.0,5,111,400.0,800.0,0.0,0,77,0.0,46.35145469535784,682.0802173488245,1235.0,0.0,1518.8032383518312,71,2,2,2,1,1,2,2,2,0,,2,,3,131029,2,1,0,1,1,,0.0,304.0,11,0.0,1.0,3.0,1.0,1.0,1,1,377.410089077794,400.0,13217.654697136913,0,5,2,3,65.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,1,0,1,0.09343563803853298,13217.654697136913,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +31007,2,86.0,0.0,2,111,570.0,64.0,0.0,0,77,0.0,0.0,971.9643097220749,634.0,0.0,121.5042590681465,70,2,2,2,1,1,2,2,2,0,,2,,2,131030,2,1,0,1,1,557.0,0.0,273.0,21,2.0,2.0,3.0,3.0,2.0,3,3,817.188479289211,570.0,32979.13595104869,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019224275643274995,16489.567975524344,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +31008,1,56.0,130.0,8,111,720.0,1300.0,0.0,68,67,0.0,0.0,1227.744391227884,2020.0,0.0,2468.055262321726,42,0,0,0,0,0,0,0,0,1,10.0,1,2001.0,6,131031,1,1,3,0,1,,990.0,,43,3.0,0.0,5.0,7.0,3.8,6,5,617.456500118097,720.0,56392.573277663854,1,1,1,2,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.035820319637729456,14840.15086254312,3,2,3_1,3_1_1,3_4_1,3_0_0_1 +31009,2,33.0,0.0,2,112,100.0,0.0,0.0,46,46,0.0,0.0,170.52005433720612,100.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,131032,2,1,2,0,1,,260.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1492.09474149524,100.0,56906.85223672628,1,1,1,2,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0017572576248640664,31614.917909292377,8,4,8,8_1,8_0,8_0_1 +31010,2,53.0,0.0,9,112,1005.0,0.0,0.0,52,52,0.0,0.0,1713.7265460889214,1005.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2006.0,6,131033,2,1,1,0,1,,268.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,1381.30605359654,1005.0,58909.498969279826,1,1,1,2,159.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017060067010994072,23563.799587711932,6,3,6,6_1,6_0,6_0_0 +31011,2,60.0,0.0,6,111,2660.0,0.0,0.0,77,21,0.0,0.0,4535.8334453696825,2910.0,346.39730634913025,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,131034,2,1,1,0,1,,772.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,709.779892116448,2660.0,59202.789159492735,6,1,0,1,156.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04915308959786403,39468.52610632849,9,5,9,9_1,9_4,9_0_0 +31012,1,37.0,420.0,2,111,600.0,420.0,0.0,85,63,0.0,0.0,1023.1203260232367,1020.0,0.0,797.3717001347114,60,2,2,2,2,1,2,2,2,0,,2,,2,131035,1,3,0,1,2,,0.0,680.0,42,1.0,1.0,3.0,5.0,2.4,2,2,233.494686348704,600.0,17277.683195612277,6,1,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05903569294863748,7199.034664838449,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +31013,2,53.0,0.0,1,111,223.0,842.0,0.0,55,62,0.0,0.0,380.25972117196966,1065.0,0.0,1598.5404083653023,71,0,0,0,0,0,0,0,0,2,25.0,2,,1,131036,2,1,0,0,1,,0.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1235.87220448137,223.0,39330.04296173383,1,1,0,1,75.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027078536401198235,26220.028641155888,7,4,7,7_0,7_2,7_1_0 +31014,2,72.0,0.0,2,111,500.0,600.0,0.0,72,74,0.0,0.0,852.6002716860306,1100.0,0.0,1139.1024287638734,42,2,1,2,1,2,2,2,2,0,,2,,2,131037,1,3,0,1,1,,0.0,635.0,41,0.0,3.0,4.0,2.0,1.5,2,2,221.435732676478,500.0,30127.183066301463,5,5,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.036511876917905306,20084.78871086764,5,3,5,5_0,5_4,5_0_1 +31015,2,77.0,0.0,1,400,500.0,0.0,0.0,0,78,949.2145659329414,0.0,852.6002716860306,1400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,131038,2,1,0,1,1,,180.0,296.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2206.23145764261,500.0,18312.79995353723,0,5,2,3,70.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07644925972827991,18312.79995353723,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +31016,1,45.0,270.0,2,111,800.0,1228.0,0.0,0,67,0.0,79.45963662061344,1364.160434697649,2088.0,0.0,2331.362970870061,71,0,0,0,0,0,0,0,0,0,,1,,2,131039,1,3,4,0,1,,613.0,326.0,22,1.0,0.0,4.0,2.0,1.5,2,2,305.762355659608,800.0,28782.074851697987,0,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.07254515217400385,19188.04990113199,5,3,5,5_1,5_3,5_0_1 +31017,2,80.0,0.0,2,112,34.0,4.0,0.0,78,75,1075.7765080573336,0.0,57.97681847465008,1424.0,0.0,7.594016191759156,60,0,0,0,0,0,0,0,0,0,,2,,2,131040,2,2,0,1,1,,0.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,828.977451723663,34.0,61435.1662451435,5,5,0,1,67.0,10,4,1,1,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023178906919822464,30717.58312257175,8,4,8,8_0,8_2,8_0_1 +31018,2,59.0,0.0,2,111,0.0,0.0,0.0,0,45,0.0,0.0,0.0,258.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,2,131041,2,1,0,0,1,,133.0,196.0,12,1.0,2.0,1.0,1.0,1.0,1,1,2453.9451206607,0.0,6393.955701018829,0,4,2,3,34.0,6,5,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04035060799043222,6393.955701018829,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +31019,2,92.0,0.0,2,111,170.0,0.0,0.0,0,77,0.0,0.0,289.8840923732504,170.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,131042,2,1,0,0,1,,0.0,504.0,11,0.0,2.0,1.0,1.0,1.0,1,1,475.95756272783,170.0,11748.817519932994,0,5,2,3,20.0,8,6,7,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014469541271841078,11748.817519932994,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +31020,2,58.0,0.0,2,111,800.0,,,62,52,0.0,0.0,,900.0,138.5589225396521,,20,0,0,0,0,0,0,0,0,2,20.0,1,,2,131043,2,2,0,0,2,,555.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,37.714514086110796,800.0,38747.64000996364,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02322722105832955,19373.82000498182,5,3,5,5_1,5_2,5_0_1 +31022,1,28.0,352.0,2,111,540.0,0.0,0.0,0,62,949.2145659329414,0.0,920.8082934209131,1580.0,193.98249155551292,0.0,71,2,1,2,2,1,2,2,2,1,15.0,2,,2,131045,1,2,0,1,1,477.0,0.0,342.0,32,1.0,0.0,3.0,2.0,1.3,1,1,342.619821800911,540.0,13993.354451135625,0,1,2,3,60.0,6,5,8,1,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.11291073955978981,10764.118808565865,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +31023,2,63.0,0.0,1,400,4000.0,0.0,0.0,43,74,0.0,0.0,6820.802173488245,4150.0,207.83838380947813,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,131046,1,1,1,0,1,,216.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,1483.52619696937,4000.0,35003.19432713814,1,5,0,1,150.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11856060796092789,23335.46288475876,6,3,6,6_1,6_0,6_1_0 +31024,2,45.0,0.0,7,112,1000.0,0.0,0.0,0,46,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,30,2,2,2,2,1,2,2,2,2,15.0,2,,5,131047,1,2,0,0,1,,0.0,746.0,12,1.0,0.0,3.0,1.0,1.0,1,1,694.390230584305,1000.0,33823.910066121316,0,1,2,3,57.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.029564884664284256,33823.910066121316,9,5,9,9_0,9_1,9_0_0 +31025,2,24.0,0.0,2,211,240.0,650.0,0.0,0,67,0.0,0.0,409.2481304092947,890.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,131048,2,2,0,0,1,,210.0,313.0,12,1.0,0.0,2.0,1.0,1.0,1,1,314.375437338921,240.0,9211.129654490283,0,1,2,3,65.0,2,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.09662224215529729,9211.129654490283,1,1,1_0,1_0_0,1_1_0,1_0_1_0 +31026,1,49.0,377.0,7,111,420.0,867.0,0.0,0,65,0.0,0.0,716.1842282162656,1287.0,0.0,1646.0030095637971,50,0,0,0,0,0,0,0,0,0,,1,,5,131049,2,1,2,0,1,,413.0,506.0,32,1.0,1.0,5.0,2.0,1.3,1,1,339.046063128906,420.0,12465.48637383931,0,4,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.10324506893697803,9588.835672184085,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +31027,2,39.0,0.0,1,111,860.0,0.0,0.0,22,63,0.0,0.0,1466.4724672999725,860.0,0.0,0.0,71,2,2,2,2,2,2,2,1,3,90.0,2,,1,131050,2,2,0,0,1,,0.0,760.0,43,2.0,1.0,3.0,5.0,2.4,2,2,288.887132975228,860.0,24797.85053356738,4,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.03468042517781406,10332.437722319743,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +31028,2,77.0,0.0,2,111,420.0,360.0,0.0,74,74,0.0,0.0,716.1842282162656,780.0,0.0,683.461457258324,12,0,0,0,0,0,0,0,0,0,,2,,2,131051,2,2,0,1,1,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,884.115864296935,420.0,86177.04349829114,6,5,0,1,110.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009051134366375276,57451.36233219409,10,5,10,10_0,10_4,10_0_1 +31029,2,87.0,0.0,5,111,0.0,0.0,0.0,86,75,0.0,0.0,0.0,1829.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,131052,2,1,2,0,1,,461.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,349.844759353588,0.0,30145.3470576162,5,5,0,1,83.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06067271332137158,20096.8980384108,5,3,5,5_1,5_3,5_0_0 +31030,1,47.0,189.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,887.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131053,2,1,0,1,1,478.0,0.0,390.0,12,1.0,2.0,2.0,1.0,1.0,1,1,655.305397773808,0.0,5325.551191496054,0,1,2,3,42.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16655552976683036,5325.551191496054,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31031,2,79.0,0.0,2,111,280.0,246.0,0.0,0,86,0.0,0.0,477.4561521441771,526.0,0.0,467.0319957931881,50,0,0,0,0,0,0,0,0,0,,2,,2,131054,2,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1771.56021214,280.0,17779.155450959122,0,6,0,1,60.0,8,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02958520732049869,17779.155450959122,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +31032,2,27.0,0.0,9,120,1400.0,0.0,0.0,42,38,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,131055,2,1,1,0,1,,283.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,136.57851037902,1400.0,48744.7997754754,1,1,1,2,130.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028721012424885808,32496.53318365027,8,4,8,8_1,8_0,8_0_0 +31033,2,51.0,0.0,2,111,450.0,0.0,0.0,21,64,0.0,0.0,767.3402445174275,450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131056,2,1,0,1,1,710.0,0.0,400.0,43,2.0,0.0,3.0,2.0,1.5,2,2,270.392238693787,450.0,21046.80926165991,1,1,2,3,45.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021380913106850172,14031.20617443994,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +31034,2,61.0,0.0,7,111,1200.0,,,77,63,0.0,0.0,,1392.0,266.03313127613205,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,131057,2,2,0,0,2,,270.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,91.7197862926788,1200.0,53656.52737704456,5,1,0,1,94.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025942789592371725,35771.018251363035,9,5,9,9_1,9_3,9_0_0 +31035,2,60.0,0.0,9,112,900.0,0.0,0.0,0,78,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,131058,2,1,1,0,1,,76.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,763.665705859811,900.0,36828.02638886686,0,7,0,1,75.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024437910152906552,24552.017592577908,7,4,7,7_1,7_0,7_0_0 +31036,1,28.0,54.0,1,111,1000.0,0.0,0.0,0,42,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,131059,2,2,0,0,1,,0.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1763.07934224486,1000.0,14154.841003187896,0,4,2,3,55.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07064720824308687,14154.841003187896,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +31037,2,77.0,0.0,2,112,600.0,1600.0,0.0,72,74,0.0,0.0,1023.1203260232367,2200.0,0.0,3037.6064767036623,70,0,0,0,0,0,0,0,0,0,,1,,2,131060,2,1,2,0,1,,450.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,898.347190267252,600.0,48496.768657576555,5,5,0,1,90.0,10,3,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04536384713657202,32331.179105051036,8,4,8,8_1,8_1,8_0_1 +31038,2,43.0,0.0,2,111,350.0,,,0,45,0.0,0.0,,400.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,0,,1,,2,131061,2,2,0,0,2,,280.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,126.1736833375359,350.0,29297.319946862186,0,1,1,2,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013653125976215479,29297.319946862186,8,4,8,8_1,8_2,8_0_1 +31039,2,78.0,0.0,1,111,360.0,,,0,78,0.0,0.0,,498.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,1,131062,2,2,0,0,2,,160.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,96.09894503889518,360.0,10839.421052631573,0,5,0,1,33.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04594341317510649,10839.421052631573,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +31040,2,32.0,0.0,5,111,300.0,0.0,0.0,0,67,0.0,0.0,511.56016301161833,300.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,2,,3,131063,2,1,0,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,802.172987324386,300.0,31735.40395274959,0,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009453164687825177,31735.40395274959,8,4,8,8_0,8_4,8_0_0 +31041,2,46.0,0.0,8,111,2700.0,0.0,0.0,46,47,0.0,0.0,4604.0414671045655,2700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,131064,2,1,2,0,1,,1200.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,546.779790245145,2700.0,54484.149062757075,1,1,1,2,93.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04955569732565759,27242.074531378537,7,4,7,7_1,7_4,7_0_0 +31042,2,52.0,0.0,9,111,0.0,,,56,53,0.0,0.0,,732.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,131065,2,1,0,0,2,,403.0,386.0,43,2.0,2.0,5.0,3.0,2.0,3,2,185.21976745729918,0.0,71392.58799801905,4,1,2,3,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0102531652168193,35696.293999009526,9,5,9,9_0,9_2,9_0_0 +31043,2,44.0,0.0,2,111,150.0,0.0,0.0,0,85,0.0,0.0,255.78008150580916,150.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131066,2,2,2,0,1,,162.0,,31,0.0,0.0,5.0,2.0,1.3,1,1,600.885970788783,150.0,14071.000271176039,0,6,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01066022294856108,10823.846362443106,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +31044,2,32.0,0.0,7,111,700.0,0.0,0.0,47,43,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,60.0,2,,5,131067,1,2,0,0,2,,0.0,400.0,43,2.0,0.0,3.0,2.0,1.5,2,2,719.887892930525,700.0,50662.86476023137,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01381682625553927,33775.24317348758,9,5,9,9_0,9_4,9_0_0 +31045,1,28.0,170.0,2,111,500.0,0.0,0.0,0,54,0.0,0.0,852.6002716860306,500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,131068,2,2,0,0,1,,0.0,420.0,22,2.0,0.0,1.0,2.0,1.5,2,2,2295.11789558315,500.0,18645.65519433595,0,4,2,3,28.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.026815898652458543,12430.436796223965,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +31046,2,33.0,0.0,1,111,1400.0,0.0,0.0,54,46,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,35.0,1,,1,131069,2,2,5,0,1,,490.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,265.796830444898,1400.0,31019.79860850583,4,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04513246580576158,20679.865739003886,5,3,5,5_1,5_3,5_1_0 +31047,2,62.0,0.0,6,111,128.1,0.0,0.0,0,22,0.0,105.94618216081791,218.43618960596103,208.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,131070,2,1,2,0,1,,225.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1138.63747569166,128.1,43605.8728147887,0,5,0,1,180.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00476999969438653,43605.8728147887,10,5,10,10_1,10_2,10_0_0 +31048,2,65.0,0.0,6,111,366.0,,,78,72,0.0,0.0,,642.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,131071,2,1,0,0,2,,129.0,,41,1.0,2.0,4.0,3.0,2.0,3,3,98.61404838339162,366.0,26799.69433007969,6,5,0,1,109.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023955497107272083,13399.847165039844,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +31049,2,26.0,0.0,1,111,0.0,0.0,0.0,43,47,0.0,0.0,0.0,2589.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,131072,2,1,4,0,1,,207.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,551.028352485895,0.0,42962.41040648002,1,1,1,2,75.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.060261981939670244,28641.606937653345,8,4,8,8_1,8_3,8_1_0 +31050,2,48.0,0.0,9,120,620.0,0.0,0.0,56,46,1160.1511361402618,0.0,1057.224336890678,1720.0,0.0,0.0,50,1,2,2,1,2,2,2,2,2,45.0,1,2006.0,6,131073,2,1,1,0,1,,256.0,,43,3.0,0.0,5.0,4.0,2.3,3,3,1401.73860928213,620.0,41863.063821085154,1,1,1,2,117.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.04108633824201104,18201.33209612398,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +31051,2,56.0,0.0,2,111,16.0,20.0,0.0,0,75,0.0,0.0,27.28320869395298,36.0,0.0,37.970080958795776,50,0,0,0,0,0,0,0,0,0,,1,,2,131074,2,1,1,0,1,,260.0,465.0,11,0.0,1.0,6.0,1.0,1.0,1,1,1041.17758136344,16.0,34350.42764534101,0,5,2,3,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0010480218869962953,34350.42764534101,9,5,9,9_1,9_3,9_0_1 +31052,1,45.0,102.0,1,111,0.0,0.0,0.0,0,62,0.0,0.0,0.0,446.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,131075,2,1,1,0,1,,0.0,350.0,12,1.0,4.0,2.0,1.0,1.0,1,1,1417.64827551312,0.0,17847.3423555738,0,1,2,3,42.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.02498971505753137,17847.3423555738,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +31053,2,78.0,0.0,2,111,503.0,125.0,0.0,77,77,0.0,0.0,857.7158733161468,628.0,0.0,237.31300599247362,71,2,1,2,1,1,2,2,2,0,,2,,2,131076,2,2,0,1,1,588.0,0.0,401.0,41,2.0,2.0,5.0,4.0,2.5,4,4,1524.0337346874,503.0,72263.0,5,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.008690477837897679,28905.2,8,4,8,8_0,8_3,8_0_1 +31054,2,65.0,0.0,6,211,668.0,,,0,64,0.0,0.0,,888.0,304.8296295872346,,60,0,0,0,0,0,0,0,0,3,3.0,1,,4,131077,2,1,0,0,2,,592.0,,12,1.0,5.0,6.0,1.0,1.0,1,1,130.2435757703979,668.0,60925.0,0,1,0,1,228.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014575297496922445,60925.0,10,5,10,10_1,10_2,10_0_0 +31055,2,57.0,0.0,2,111,1200.0,0.0,0.0,77,46,0.0,132.4327277010224,2046.2406520464733,1400.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,75.0,1,,2,131078,2,2,2,0,1,,400.0,,42,1.0,6.0,5.0,2.0,1.5,2,2,583.039229753706,1200.0,46753.568374384624,5,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02994423845447127,31169.04558292308,8,4,8,8_1,8_4,8_0_1 +31056,2,80.0,0.0,7,111,300.0,534.0,0.0,86,75,0.0,0.0,511.56016301161833,834.0,0.0,1013.8011615998473,43,0,0,0,0,0,0,0,0,0,,2,,5,131079,2,1,0,0,1,,110.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1130.08447156367,300.0,49776.39677345942,5,5,0,1,100.0,4,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016754929124252835,33184.26451563961,8,4,8,8_0,8_1,8_0_0 +31057,2,75.0,0.0,5,111,324.0,480.0,0.0,0,77,0.0,0.0,552.4849760525478,804.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,0,,2,,3,131080,2,2,0,0,2,,0.0,214.0,11,0.0,0.0,1.0,1.0,1.0,1,1,479.901425993449,324.0,14560.197523824629,0,5,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05521903110754006,14560.197523824629,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +31058,2,61.0,0.0,6,111,0.0,,,0,53,0.0,0.0,,158.0,0.0,,71,0,0,0,0,0,0,0,0,1,40.0,2,,4,131081,2,1,0,0,2,,394.0,,12,1.0,3.0,3.0,1.0,1.0,1,1,104.9478707801438,0.0,25380.704368317667,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006225201543154528,25380.704368317667,7,4,7,7_0,7_2,7_0_0 +31059,1,54.0,270.0,5,111,280.0,600.0,0.0,0,56,0.0,0.0,477.4561521441771,880.0,0.0,1139.1024287638734,50,0,0,0,0,0,0,0,0,0,,2,,3,131082,2,3,0,0,1,,0.0,328.0,12,1.0,3.0,3.0,1.0,1.0,1,1,320.682139219,280.0,5655.670345358841,0,4,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15559605603996104,5655.670345358841,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +31060,1,42.0,201.0,6,111,389.0,,,0,81,0.0,0.0,,485.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,2,,4,131083,2,2,0,0,2,,247.0,213.0,12,1.0,0.0,1.0,1.0,1.0,1,1,145.2377628774767,389.0,6573.323218900845,0,4,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07378307499096311,6573.323218900845,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31061,0,43.0,0.0,2,400,945.0,,,42,42,0.0,0.0,,1083.0,191.2113131047199,,20,0,0,0,0,0,0,0,0,2,6.0,1,,2,131084,2,2,0,0,2,,1438.0,,43,2.0,0.0,4.0,6.0,2.6999999999999997,2,2,52.36920849876668,945.0,9861.559970369824,1,1,5,0,67.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10982035329643548,3652.4296186554907,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +31062,0,59.0,0.0,9,111,420.0,,,0,63,0.0,0.0,,495.0,103.91919190473907,,70,0,0,0,0,0,0,0,0,0,,1,2005.0,6,131085,2,1,0,0,2,,300.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,98.81286394474229,420.0,6573.323218900845,0,4,5,0,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0753043755062407,6573.323218900845,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31063,2,48.0,0.0,2,111,290.0,80.0,0.0,0,62,0.0,0.0,494.50815757789775,370.0,0.0,151.8803238351831,50,0,0,0,0,0,0,0,0,3,2.0,2,,2,131086,2,3,0,1,1,681.0,168.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,329.22967432765,290.0,14471.570564775591,0,1,2,3,84.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025567370061449688,14471.570564775591,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +31064,2,23.0,0.0,9,111,0.0,0.0,0.0,46,43,0.0,0.0,0.0,1144.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,10.0,2,2009.0,6,131087,1,1,0,0,1,,0.0,790.0,43,2.0,0.0,3.0,2.0,1.5,2,2,524.520808990437,0.0,9944.702474616908,1,1,2,3,65.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1150361212836656,6629.801649744605,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +31065,2,33.0,0.0,2,111,240.0,0.0,0.0,0,67,0.0,0.0,409.2481304092947,240.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,2,131088,2,1,0,1,1,,0.0,258.0,12,1.0,0.0,1.0,1.0,1.0,1,1,684.579614829896,240.0,15038.33355622536,0,1,2,3,27.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015959215102038227,15038.33355622536,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +31066,2,61.0,0.0,1,111,906.0,452.0,0.0,77,56,0.0,0.0,1544.9116922950875,1358.0,0.0,858.1238296687847,71,0,0,0,0,0,0,0,0,0,,2,,1,131089,2,1,0,0,1,,0.0,675.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1034.54225923607,906.0,19296.6546458438,5,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0703748926911791,12864.436430562533,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +31067,2,51.0,0.0,7,112,923.0,0.0,0.0,52,47,970.3082229536734,0.0,1573.9001015324125,1933.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,131090,2,1,2,0,1,,654.0,,43,2.0,0.0,8.0,4.0,2.5,4,4,1333.66543038075,923.0,44788.2736750788,1,1,1,2,135.0,9,0,9,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04315861812453746,17915.30947003152,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +31068,1,41.0,83.56333333333333,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,136.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131091,1,2,0,1,1,1400.0,0.0,320.0,12,1.0,3.0,2.0,1.0,1.0,1,1,308.394680104166,0.0,7358.882260596546,0,1,2,3,65.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.018481067529537452,7358.882260596546,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31069,2,39.0,0.0,5,111,960.0,0.0,0.0,43,21,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,43,2,1,2,1,1,2,2,2,0,,2,,3,131092,2,3,0,1,2,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,195.205299215904,960.0,21294.410162591565,4,1,1,2,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.04508225363698763,11830.227868106425,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +31070,2,68.0,0.0,5,111,480.0,450.0,0.0,72,74,0.0,0.0,818.4962608185893,930.0,0.0,854.326821572905,44,0,0,0,0,0,0,0,0,0,,2,,3,131093,2,1,0,0,1,,440.0,,41,0.0,2.0,5.0,3.0,2.0,3,3,3153.74567394146,480.0,39592.859911668565,5,5,0,1,103.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.023489083690211427,19796.429955834283,5,3,5,5_0,5_2,5_0_0 +31071,1,46.0,92.0,5,111,420.0,136.0,0.0,68,46,0.0,0.0,716.1842282162656,556.0,0.0,258.1965505198113,50,0,0,0,0,0,0,0,0,0,,2,,3,131094,2,3,0,1,1,754.0,0.0,450.0,43,2.0,0.0,4.0,4.0,2.3,3,3,457.344003212264,420.0,28037.166099560098,1,4,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019830820205781197,12190.072217200044,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +31072,1,36.0,304.0,9,111,1300.0,0.0,0.0,85,47,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2011.0,6,131095,2,1,1,0,1,,620.0,,42,1.0,0.0,5.0,6.0,2.6999999999999997,2,2,173.375552879174,1300.0,19651.939611832033,6,1,1,2,104.0,6,5,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0661512311597628,7278.496152530383,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +31073,2,47.0,0.0,2,221,1100.0,,,0,43,0.0,331.081819252556,,1434.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,2,131096,2,2,0,0,2,,1000.0,,32,1.0,0.0,3.0,4.0,2.3,3,2,86.66682992996067,1100.0,20859.339179480703,0,1,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06874618546931839,9069.277904122046,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +31074,2,82.0,0.0,5,111,700.0,,,0,77,0.0,0.0,,861.0,223.07986528883987,,70,0,0,0,0,0,0,0,0,0,,1,,3,131097,2,1,0,0,2,,700.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,93.26696311012148,700.0,25079.34976437691,0,5,0,1,120.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03433103362284844,25079.34976437691,7,4,7,7_1,7_2,7_0_0 +31075,2,54.0,0.0,7,400,0.0,,,0,52,0.0,0.0,,90.0,124.70303028568689,,50,0,0,0,0,0,0,0,0,1,20.0,3,,5,131098,2,2,0,0,2,,0.0,260.0,32,1.0,0.0,1.0,2.0,1.5,2,1,15.420096929098232,0.0,20817.64080470098,0,1,2,3,30.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004323256455634322,13878.427203133986,3,2,3_0,3_0_0,3_1_0,3_0_0_0 +31076,2,43.0,0.0,2,111,780.0,960.0,0.0,62,43,0.0,0.0,1330.0564238302077,1740.0,0.0,1822.5638860221975,33,0,0,0,0,0,0,0,0,0,,2,,2,131099,2,1,0,0,1,,360.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,855.281125835427,780.0,59080.458565884706,1,1,1,2,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029451362468008023,23632.183426353884,6,3,6,6_0,6_3,6_0_1 +31077,2,76.0,0.0,9,111,0.0,0.0,0.0,0,77,1054.6828510366015,0.0,0.0,3248.0,48.49562288887823,0.0,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,131100,2,1,1,0,1,,401.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,883.585872921703,0.0,21440.087540252553,0,5,0,1,100.0,5,4,5,1,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.15149191876675241,21440.087540252553,6,3,6,6_1,6_2,6_0_0 +31078,2,53.0,0.0,6,111,807.5,30.0,0.0,0,22,0.0,0.0,1376.9494387729394,838.0,0.0,56.95512143819367,60,2,2,2,2,2,2,2,1,0,,1,,4,131101,2,2,3,0,1,,0.0,,32,2.0,4.0,5.0,2.0,1.5,2,2,1406.10881616823,807.5,12972.4455679178,0,1,0,1,110.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.06459845952812943,8648.297045278534,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31079,2,70.0,0.0,1,400,408.0,0.0,0.0,77,75,316.40485531098045,0.0,695.7218216958009,740.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131102,2,2,4,0,2,,164.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,781.558438657846,408.0,33206.963655161526,5,5,1,2,60.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022284482486400952,22137.975770107685,6,3,6,6_1,6_0,6_1_0 +31080,2,41.0,0.0,7,120,320.0,1560.0,0.0,0,56,0.0,0.0,545.6641738790596,1880.0,0.0,2961.666314786071,71,0,0,0,0,0,0,0,0,0,,1,,5,131103,2,1,1,0,1,,500.0,,32,2.0,0.0,5.0,4.0,2.3,3,3,1569.88729114615,320.0,25566.11446044527,0,1,1,2,110.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07353483466987722,11115.701939324032,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +31081,2,66.0,0.0,2,111,300.0,52.0,0.0,0,77,0.0,0.0,511.56016301161833,352.0,0.0,98.72221049286902,70,0,0,0,0,0,0,0,0,0,,2,,2,131104,2,1,0,1,1,,0.0,520.0,11,0.0,0.0,3.0,1.0,1.0,1,1,314.729068816318,300.0,20952.892180732797,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016799590097813854,20952.892180732797,5,3,5,5_0,5_4,5_0_1 +31082,2,71.0,0.0,5,400,700.0,0.0,0.0,77,78,0.0,1986.490915515336,1193.6403803604428,2200.0,0.0,0.0,71,2,2,1,1,1,1,2,2,0,,1,,3,131105,1,2,2,0,2,,281.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,910.19516427056,700.0,17127.645792217496,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.1284473083276653,11418.430528144998,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +31083,2,36.0,0.0,9,112,400.0,,,85,52,0.0,0.0,,442.0,58.19474746665388,,20,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,131106,2,1,0,0,1,,150.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,182.8317692770672,400.0,37092.85711209885,7,1,0,1,59.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011916040834067474,17663.26529147564,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +31084,1,42.0,221.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,731.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,2,,2,131107,2,1,0,1,1,519.0,0.0,570.0,42,1.0,0.0,3.0,4.0,2.1,2,2,302.751750273605,0.0,21189.82260223006,6,1,2,3,55.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03449769324274891,10090.391715347647,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +31085,2,81.0,0.0,2,112,390.0,1110.0,0.0,77,74,0.0,0.0,665.0282119151038,1500.0,0.0,2107.339493213166,70,2,2,2,1,1,2,2,2,0,,1,,2,131108,2,2,1,0,1,,260.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,954.446487294094,390.0,35267.33392826208,5,5,0,1,90.0,8,0,5,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.04253227655515943,23511.55595217472,6,3,6,6_1,6_0,6_0_1 +31086,2,45.0,0.0,7,112,2400.0,0.0,0.0,0,52,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,131109,2,1,2,0,1,,700.0,,22,2.0,2.0,5.0,3.0,2.0,3,3,756.214288325235,2400.0,59287.08928435002,0,1,0,1,100.0,10,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04048098884546735,29643.54464217501,8,4,8,8_1,8_1,8_0_0 +31087,2,66.0,0.0,5,111,870.0,0.0,0.0,77,74,0.0,0.0,1483.5244727336933,870.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,131110,2,2,0,0,1,,300.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,685.171493246545,870.0,60013.5894877493,5,5,0,1,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014496716617452035,40009.05965849953,9,5,9,9_0,9_4,9_0_0 +31088,2,78.0,0.0,2,111,438.0,,,78,78,0.0,0.0,,622.0,254.94841747295985,,71,0,0,0,0,0,0,0,0,0,,1,,2,131111,2,2,0,0,2,,320.0,,41,0.0,7.0,5.0,2.0,1.5,2,2,78.3658136899747,438.0,25461.90404720454,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024428652266022866,16974.60269813636,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +31089,2,42.0,0.0,1,300,1210.0,0.0,0.0,0,53,0.0,0.0,2063.292657480194,1306.0,133.01656563806603,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,131112,2,2,5,0,1,,124.0,205.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1097.69275957794,1210.0,16805.990641877816,0,1,2,3,45.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07771038481633204,16805.990641877816,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +31090,1,43.0,150.0,1,111,168.0,96.0,0.0,0,56,0.0,0.0,286.47369128650627,264.0,0.0,182.25638860221974,33,2,1,2,1,1,2,2,2,3,90.0,2,,1,131113,2,3,0,1,1,566.0,0.0,295.0,12,1.0,3.0,2.0,1.0,1.0,1,1,337.952572350705,168.0,8240.958568861697,0,1,2,3,42.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.03203510826974897,8240.958568861697,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +31091,2,40.0,0.0,5,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,264.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131114,2,2,5,0,1,,0.0,394.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1308.69933315891,0.0,9972.860832155162,0,4,3,4,35.0,6,4,7,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026471842377344085,9972.860832155162,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31092,2,47.0,0.0,9,111,900.0,0.0,0.0,52,47,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2008.0,6,131115,2,1,0,0,1,,370.0,650.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1724.13970683656,900.0,44922.313305138334,1,1,2,3,70.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02003458713015689,24956.84072507685,7,4,7,7_0,7_2,7_0_0 +31093,1,40.0,120.0,1,111,1100.0,900.0,0.0,64,62,0.0,0.0,1875.7205977092674,2000.0,0.0,1708.65364314581,50,2,2,2,2,1,2,2,1,2,15.0,1,,1,131116,1,2,4,0,1,,588.0,348.0,43,3.0,2.0,5.0,4.0,2.3,3,3,225.122442573317,1100.0,31055.965709533375,1,1,2,3,100.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.06439986502773772,13502.593786753643,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +31094,2,75.0,0.0,2,111,719.0,3600.0,0.0,74,74,0.0,0.0,1226.039190684512,4319.0,0.0,6834.61457258324,10,0,0,0,0,0,0,0,0,0,,1,,2,131117,2,1,2,0,1,,600.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,302.326015906265,719.0,83288.58182114012,5,5,0,1,150.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05185584753111694,55525.72121409341,10,5,10,10_1,10_3,10_0_1 +31095,1,26.0,130.0,7,112,480.0,,,52,38,0.0,0.0,,503.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,2,30.0,1,,5,131118,2,2,0,0,2,,260.0,900.0,43,2.0,0.0,3.0,3.0,1.8,2,2,210.49204338286276,480.0,61200.0,1,1,2,3,75.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.008218954248366012,34000.0,9,5,9,9_1,9_1,9_0_0 +31096,2,75.0,0.0,2,112,1400.0,0.0,0.0,86,33,949.2145659329414,0.0,2387.2807607208856,2300.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,3.0,1,,2,131119,2,1,2,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,242.69880669245,1400.0,63985.96533056683,5,5,0,1,90.0,7,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.035945382524396545,42657.31022037789,9,5,9,9_1,9_0,9_0_1 +31097,2,32.0,0.0,2,111,1115.0,0.0,0.0,0,43,0.0,0.0,1901.2986058598483,1115.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,45.0,2,,2,131120,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,600.873309492037,1115.0,30053.669984856566,0,1,1,2,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.037100294258964904,30053.669984856566,8,4,8,8_0,8_4,8_0_1 +31098,2,69.0,0.0,2,111,971.5,0.0,0.0,37,75,2172.646673135399,198.6490915515336,1656.6023278859575,3182.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,131121,1,1,2,0,2,,813.0,,42,3.0,0.0,8.0,4.0,2.5,4,4,1157.81928832547,971.5,87770.01084906141,1,5,0,1,350.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03625384079617016,35108.00433962456,9,5,9,9_1,9_4,9_0_1 +31099,2,70.0,0.0,7,111,1300.0,0.0,0.0,0,86,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,131122,2,1,0,0,1,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,286.936957760314,1300.0,27721.25105909523,0,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.046895430412888066,27721.25105909523,7,4,7,7_0,7_4,7_0_0 +31100,2,32.0,0.0,6,300,0.0,,,0,64,0.0,397.2981831030672,,841.0,91.44888887617039,,44,0,0,0,0,0,0,0,0,0,,1,,4,131123,1,2,0,0,2,,259.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,96.82569990665701,0.0,7707.500292987849,0,4,0,1,100.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10911449471693531,7707.500292987849,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +31101,0,47.0,0.0,2,400,0.0,,,56,52,0.0,0.0,,144.0,199.524848457099,,71,0,0,0,0,0,0,0,0,1,2.0,8,,2,131124,1,1,0,0,2,,0.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,113.86368194473147,0.0,39965.39832918942,1,1,5,0,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0036031168465754317,15371.30704968824,3,2,3_0,3_0_0,3_0_0,3_0_1_0 +31102,2,36.0,0.0,6,111,1200.0,0.0,0.0,54,54,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,10,0,0,0,0,0,0,0,0,2,40.0,2,,4,131125,2,1,0,0,1,,560.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1949.44779849813,1200.0,45228.363298523895,1,1,1,2,93.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.028521925312342693,21537.31585643995,6,3,6,6_0,6_2,6_0_0 +31103,2,40.0,0.0,2,111,774.0,1606.0,0.0,65,46,0.0,0.0,1319.8252205699753,2380.0,0.0,3048.997500991301,42,0,0,0,0,0,0,0,0,2,7.0,1,,2,131126,1,3,4,0,1,,332.0,,43,2.0,1.0,4.0,5.0,2.5999999999999996,3,2,247.658680421569,774.0,62027.57510306062,1,1,1,2,90.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03837003132954272,23856.759655023317,6,3,6,6_1,6_3,6_0_1 +31104,2,72.0,0.0,5,120,690.0,0.0,0.0,78,78,210.9365702073203,0.0,1176.5883749267223,1014.0,171.8130639491686,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131127,2,1,2,0,1,,182.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1544.27111134968,690.0,30140.46310654453,5,5,0,1,100.0,0,3,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03364248241361049,20093.642071029684,5,3,5,5_1,5_1,5_0_0 +31105,2,48.0,0.0,2,111,840.0,,,0,52,0.0,0.0,,840.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,131128,2,3,0,0,2,,120.0,,32,1.0,3.0,2.0,3.0,1.8,2,2,33.04915354217791,840.0,41581.98235708637,0,1,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02020105710176292,23101.101309492424,6,3,6,6_1,6_2,6_0_1 +31106,2,50.0,0.0,2,111,760.0,0.0,0.0,42,42,1582.0242765549024,158.91927324122688,1295.9524129627664,2380.0,0.0,0.0,10,1,2,2,1,2,2,2,2,2,20.0,1,,2,131129,2,1,2,0,2,,400.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1143.73729393178,760.0,92897.58540421304,1,1,0,1,120.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.02561961099036341,37159.03416168522,9,5,9,9_1,9_3,9_0_1 +31108,2,67.0,0.0,8,112,1089.0,0.0,0.0,74,74,0.0,728.3800023556231,1856.9633917321746,1639.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,131131,2,1,2,0,1,,150.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1327.39863817418,1089.0,73481.43212165941,5,5,0,1,141.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02230495449906845,48987.62141443961,10,5,10,10_1,10_0,10_0_0 +31109,2,39.0,0.0,7,112,0.0,0.0,0.0,38,38,0.0,0.0,0.0,2566.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,150.0,1,,5,131132,2,1,3,0,1,,469.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,763.252587540287,0.0,103463.09959777087,4,1,1,2,120.0,10,4,2,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024801112763639693,49268.14266560517,10,5,10,10_1,10_2,10_0_0 +31110,2,82.0,0.0,2,111,362.0,,,86,71,0.0,0.0,,482.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,131133,1,1,0,0,2,,240.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,95.92988415949623,362.0,30285.634966920526,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01591513602163086,15142.817483460263,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +31111,1,44.0,340.0,5,111,528.0,,,0,63,0.0,0.0,,616.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,3,131134,2,2,0,0,2,,800.0,338.0,32,1.0,2.0,4.0,2.0,1.3,1,1,120.66259508144574,528.0,19067.384442531933,0,4,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03230647611142424,14667.21880194764,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +31112,2,86.0,0.0,1,400,240.0,0.0,0.0,77,78,0.0,0.0,409.2481304092947,330.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131135,2,1,2,0,1,,88.0,,41,0.0,12.0,3.0,2.0,1.5,2,2,1401.20458435876,240.0,28202.102749985628,5,5,0,1,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01170125514843634,18801.40183332375,5,3,5,5_1,5_0,5_1_0 +31114,0,46.0,0.0,6,111,0.0,0.0,0.0,42,34,0.0,0.0,0.0,2804.0,0.0,0.0,20,1,2,2,1,1,2,2,2,2,30.0,1,,4,131137,1,1,1,0,2,,0.0,,43,2.0,2.0,4.0,3.0,1.8,2,2,474.650923461825,0.0,81252.41876738335,1,1,5,0,80.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.03450974189491565,45140.232648546305,10,5,10,10_1,10_3,10_0_0 +31115,2,52.0,0.0,1,300,960.0,2292.0,0.0,54,64,0.0,291.3520009422493,1636.9925216371787,3532.0,83.13535352379125,4351.371277877996,41,0,0,0,0,0,0,0,0,2,10.0,1,,1,131138,2,1,1,0,1,,516.0,,43,2.0,2.0,8.0,3.0,2.0,3,2,1372.75264915462,960.0,43054.0,1,1,1,2,300.0,0,0,8,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08203651228689553,21527.0,6,3,6,6_1,6_0,6_1_0 +31117,2,65.0,0.0,7,111,930.0,0.0,0.0,74,75,0.0,0.0,1585.836505336017,1110.0,249.40606057137379,0.0,41,0,0,0,0,0,0,0,0,0,,1,,5,131140,2,1,2,0,1,,660.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1561.58905071229,930.0,48864.97497494813,5,5,1,2,170.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022715656778072017,32576.64998329875,8,4,8,8_1,8_2,8_0_0 +31118,2,48.0,0.0,2,111,250.0,60.0,0.0,0,43,0.0,0.0,426.3001358430153,310.0,0.0,113.91024287638734,33,0,0,0,0,0,0,0,0,0,,2,,2,131141,2,1,0,1,1,684.0,0.0,260.0,22,1.0,1.0,3.0,2.0,1.5,2,2,979.627377278415,250.0,65149.403985389894,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004758293722372644,43432.93599025993,10,5,10,10_0,10_4,10_0_1 +31119,2,81.0,0.0,6,111,1200.0,1000.0,0.0,77,75,0.0,0.0,2046.2406520464733,2200.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,2,,4,131142,2,1,0,1,1,,0.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,189.770608214726,1200.0,23782.4130606589,5,5,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09250533132986667,11891.20653032945,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +31120,1,42.0,360.0,1,111,0.0,0.0,1350.0,0,52,0.0,0.0,850.9296920599041,1350.0,0.0,1615.5883992123192,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,131143,2,1,2,0,1,,900.0,507.0,32,1.0,0.0,4.0,2.0,1.3,1,1,242.180321739896,0.0,17872.02293128655,0,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07553705616820278,13747.709947143498,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +31121,2,32.0,0.0,7,111,400.0,,,21,52,0.0,0.0,,480.0,110.84713803172167,,43,0,0,0,0,0,0,0,0,2,50.0,1,,5,131144,2,2,0,0,1,,180.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,120.30585496192515,400.0,32370.0,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014828544949026877,21580.0,6,3,6,6_1,6_2,6_0_0 +31122,1,65.0,125.0,2,111,600.0,1500.0,0.0,85,78,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,71,2,2,2,1,1,2,1,2,0,,1,,2,131145,2,2,3,0,1,,600.0,,41,0.0,0.0,3.0,5.0,2.8,4,4,197.532110942527,600.0,12678.971360396035,6,5,1,2,46.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,1,0,0,1,0.16562857824251803,4528.204057284299,1,1,1_1,1_1_1,1_4_1,1_0_1_1 +31123,2,47.0,0.0,7,211,426.0,,,0,81,0.0,0.0,,826.0,554.2356901586083,,71,0,0,0,0,0,0,0,0,0,,1,,5,131146,1,2,0,0,2,,0.0,,32,2.0,0.0,7.0,3.0,2.0,3,2,7.559826641115449,426.0,3768.447391872127,0,4,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2191884121247216,1884.2236959360635,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31124,1,30.0,19.0,2,111,500.0,80.0,0.0,64,21,0.0,0.0,852.6002716860306,580.0,0.0,151.8803238351831,44,2,2,2,2,1,2,2,2,2,30.0,2,,2,131147,1,3,0,1,2,274.0,0.0,320.0,43,2.0,0.0,3.0,2.0,1.5,2,2,264.726350546757,500.0,23289.416590636785,4,1,2,3,55.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.024904015853844174,15526.27772709119,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +31125,1,53.0,199.0,6,112,1117.0,0.0,0.0,85,48,0.0,0.0,1904.7090069465924,1250.0,184.2833669777373,0.0,70,2,2,2,2,1,2,2,2,2,15.0,1,,4,131148,1,3,4,0,2,,942.0,471.0,42,1.0,1.0,4.0,6.0,3.0999999999999996,5,3,210.812434758,1117.0,38724.76009548888,6,1,2,3,83.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0.032279089577771584,12491.858095318994,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +31126,2,52.0,0.0,7,111,480.0,,,37,31,0.0,0.0,,522.0,58.19474746665388,,10,0,0,0,0,0,0,0,0,2,40.0,1,,5,131149,2,2,0,0,2,,400.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,151.953680304014,480.0,212533.38845562926,1,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002456084682943726,141688.92563708618,10,5,10,10_1,10_3,10_0_0 +31127,2,74.0,0.0,2,112,350.0,0.0,0.0,86,75,2531.2388424878436,0.0,596.8201901802214,2810.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131150,2,1,1,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,2037.93364689967,350.0,28941.43040813624,5,5,0,1,100.0,8,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0970926440183838,19294.286938757494,5,3,5,5_1,5_1,5_0_1 +31128,2,58.0,0.0,5,111,315.0,0.0,0.0,56,63,0.0,0.0,537.1381711621992,315.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,3,131151,2,2,0,1,1,412.0,0.0,690.0,43,2.0,0.0,2.0,3.0,2.0,3,3,962.632224789863,315.0,23412.0,1,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013454638646847771,11706.0,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +31129,1,40.0,162.0,9,111,306.0,,,85,52,0.0,0.0,,390.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,131152,1,2,0,0,2,,618.0,,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,99.49157842655259,306.0,41638.34911672258,6,1,1,2,70.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.00936636558060296,16014.749660277917,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +31130,2,43.0,0.0,9,111,0.0,,,0,46,0.0,0.0,,339.0,0.0,,31,0,0,0,0,0,0,0,0,2,5.0,2,2008.0,6,131153,2,2,0,0,2,,294.0,598.0,12,1.0,3.0,2.0,1.0,1.0,1,1,141.68209092102748,0.0,31727.82610489328,0,1,2,3,34.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010684627395499913,31727.82610489328,8,4,8,8_0,8_3,8_0_0 +31132,2,47.0,0.0,2,111,0.0,0.0,340.0,0,63,0.0,0.0,214.3082187410129,340.0,0.0,406.8889301719915,41,0,0,0,0,0,0,0,0,0,,2,,2,131155,2,2,0,1,2,660.0,0.0,431.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2728.11251102061,0.0,20611.445949075365,0,1,2,3,30.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01649568889247445,20611.445949075365,5,3,5,5_0,5_3,5_0_1 +31133,2,76.0,0.0,2,400,385.0,0.0,0.0,0,62,1265.6194212439218,0.0,656.5022091982436,1685.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,131156,2,1,1,0,1,,283.0,,22,3.0,0.0,4.0,3.0,2.0,3,3,2072.67086283138,385.0,41665.1900830609,0,4,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.040441433163772876,20832.59504153045,5,3,5,5_1,5_0,5_0_1 +31134,2,38.0,0.0,5,111,300.0,750.0,0.0,63,52,0.0,0.0,511.56016301161833,1050.0,0.0,1423.8780359548418,50,0,0,0,0,0,0,0,0,1,2.0,1,,3,131157,2,1,1,0,1,,160.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1568.68449373609,300.0,25294.448130852346,1,1,0,1,85.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04151108553814565,14052.471183806858,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +31135,1,79.0,59.0,7,111,240.0,840.0,0.0,0,75,0.0,0.0,409.2481304092947,1080.0,0.0,1594.7434002694229,70,0,0,0,0,0,0,0,0,0,,2,,5,131158,1,2,0,0,1,,0.0,330.0,11,0.0,2.0,2.0,1.0,1.0,1,1,578.352374313786,240.0,13024.125890235704,0,5,2,3,48.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08292303138820895,13024.125890235704,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +31136,2,19.0,0.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1287.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,131159,2,1,1,0,1,,0.0,1250.0,22,3.0,0.0,4.0,3.0,2.0,3,3,1479.48241334105,0.0,5116.725636894358,0,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.25152804573300436,2558.362818447179,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +31137,2,72.0,0.0,1,120,500.0,728.0,0.0,77,78,0.0,423.78472864327165,852.6002716860306,1548.0,0.0,1382.1109469001665,70,0,0,0,0,0,0,0,0,0,,1,,1,131160,2,1,2,0,1,,292.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,191.070922099233,500.0,26703.897464983846,5,5,0,1,60.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05796906620203488,17802.59830998923,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +31138,2,50.0,0.0,8,112,960.0,0.0,0.0,56,56,0.0,0.0,1636.9925216371787,1140.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,131161,2,1,2,0,1,,200.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1346.29291852909,960.0,40610.17320232658,1,1,1,2,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028071783745425856,27073.448801551054,7,4,7,7_1,7_0,7_0_0 +31139,2,53.0,0.0,2,112,436.0,2328.0,0.0,0,43,0.0,211.89236432163582,743.4674369102187,2924.0,0.0,4419.717423603829,33,0,0,0,0,0,0,0,0,2,30.0,1,,2,131162,2,2,3,0,1,,501.0,,32,1.0,0.0,8.0,4.0,2.5,4,4,1755.58731554911,436.0,35318.8197595833,0,1,1,2,220.0,8,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0827887234030976,14127.52790383332,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +31140,1,44.0,330.0,6,111,410.0,792.0,0.0,0,56,0.0,0.0,699.1322227825451,1202.0,0.0,1503.615205968313,41,0,0,0,0,0,0,0,0,3,60.0,2,,4,131163,2,1,0,0,1,,0.0,308.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1925.19138707737,410.0,18543.0,0,1,2,3,65.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06482230491290514,14263.846153846154,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +31141,2,57.0,0.0,1,400,2000.0,0.0,0.0,34,37,0.0,0.0,3410.4010867441225,2200.0,277.1178450793042,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,131164,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1158.33437013364,2000.0,211474.608985326,1,1,0,1,140.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01040314017155911,91945.48216753305,10,5,10,10_1,10_0,10_1_0 +31142,2,32.0,0.0,1,111,900.0,700.0,0.0,34,21,0.0,0.0,1534.680489034855,1600.0,0.0,1328.9528335578523,42,0,0,0,0,0,0,0,0,0,,2,,1,131165,2,1,0,0,1,,250.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,360.296837950522,900.0,45878.29034429476,1,1,0,1,68.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03487488282568423,30585.526896196505,8,4,8,8_0,8_3,8_1_0 +31143,2,32.0,0.0,9,400,1400.0,0.0,0.0,21,52,0.0,0.0,2387.2807607208856,1480.0,110.84713803172167,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,131166,1,1,1,0,1,,323.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,802.368843265064,1400.0,43414.93363330786,1,1,1,2,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03408965247996018,20673.77792062279,5,3,5,5_1,5_0,5_0_0 +31144,2,30.0,0.0,9,111,500.0,830.0,0.0,85,33,0.0,0.0,852.6002716860306,1330.0,0.0,1575.7583597900248,20,0,0,0,0,0,0,0,0,1,10.0,2,2006.0,6,131167,2,1,0,0,1,,540.0,689.0,42,1.0,0.0,4.0,4.0,2.1,2,2,1587.40437768574,500.0,39092.18400107246,6,1,2,3,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034022146216325815,18615.32571479641,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +31145,2,52.0,0.0,9,111,672.0,2427.0,0.0,38,38,0.0,66.2163638505112,1145.894765146025,3149.0,0.0,4607.669324349868,12,2,2,1,2,2,2,2,1,3,50.0,1,2013.0,6,131168,2,1,1,0,2,,707.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,369.636614405236,672.0,118781.33807230089,1,1,1,2,162.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02651089852248708,79187.55871486726,10,5,10,10_1,10_4,10_0_0 +31146,2,65.0,0.0,5,111,350.0,0.0,0.0,75,74,0.0,1218.381094849406,596.8201901802214,1330.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,0,,2,,3,131169,2,1,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1180.61641575224,350.0,48513.42200058868,5,5,0,1,98.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027415093496885486,32342.281333725787,8,4,8,8_0,8_2,8_0_0 +31147,1,28.0,293.0,9,111,0.0,,,53,63,0.0,0.0,,932.0,0.0,,20,0,0,0,0,0,0,0,0,1,10.0,2,2006.0,6,131170,2,2,0,0,2,,860.0,550.0,43,2.0,0.0,3.0,3.0,1.8,2,2,148.1688907989003,0.0,15503.231003668221,4,1,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06011650086227054,8612.90611314901,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31148,2,69.0,0.0,5,111,2500.0,0.0,0.0,0,72,0.0,0.0,4263.001358430153,2680.0,249.40606057137379,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,131171,2,1,2,0,1,,400.0,,31,1.0,1.0,6.0,2.0,1.5,2,2,1491.46982985555,2500.0,27972.767100724013,0,5,0,1,227.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09580746839774154,18648.511400482676,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +31149,2,44.0,0.0,8,111,600.0,600.0,0.0,47,56,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,41,0,0,0,0,0,0,0,0,0,,1,1999.0,6,131172,2,1,2,0,1,,720.0,,43,2.0,1.0,4.0,4.0,2.5,4,3,1336.16280930026,600.0,54746.39152995732,4,1,1,2,88.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02191925287611619,21898.556611982927,6,3,6,6_1,6_2,6_0_0 +31150,2,53.0,0.0,1,111,1753.0,85.0,0.0,0,54,0.0,0.0,2989.2165525312234,1838.0,0.0,161.37284407488207,50,0,0,0,0,0,0,0,0,4,40.0,1,,1,131173,2,1,2,0,1,,460.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,254.670126422948,1753.0,53804.84682369932,0,1,0,1,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03416049126619611,35869.89788246621,9,5,9,9_1,9_3,9_1_0 +31151,2,52.0,0.0,9,111,360.0,500.0,0.0,0,63,0.0,0.0,613.872195613942,860.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,1,2004.0,6,131174,2,1,1,0,1,,230.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1782.8626049707,360.0,8248.423510305834,0,1,0,1,80.0,8,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10426234769898629,8248.423510305834,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +31152,2,35.0,0.0,5,112,750.0,1200.0,0.0,46,56,0.0,0.0,1278.9004075290459,1950.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,2,45.0,1,,3,131175,2,2,3,0,1,,500.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,980.847486057503,750.0,53746.378340641,1,1,1,2,90.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03628151440532474,25593.51349554333,7,4,7,7_1,7_2,7_0_0 +31153,2,76.0,0.0,2,111,800.0,700.0,0.0,86,75,0.0,0.0,1364.160434697649,1500.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,2,,2,131176,2,2,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,554.129256384906,800.0,49704.11803239696,5,5,0,1,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03017858598803233,33136.07868826464,8,4,8,8_0,8_3,8_0_1 +31154,2,70.0,0.0,7,111,485.0,0.0,0.0,77,78,0.0,0.0,827.0222635354497,485.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,5,131177,2,1,0,0,1,,0.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,1648.10788865203,485.0,50731.69593609522,5,5,0,1,81.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009560098298525955,33821.13062406348,9,5,9,9_0,9_3,9_0_0 +31155,1,79.0,40.0,5,111,0.0,,,0,71,0.0,0.0,,1268.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,3,131178,2,1,0,0,2,,0.0,300.0,11,0.0,9.0,1.0,1.0,1.0,1,1,87.84608177475845,0.0,11440.588343673775,0,5,2,3,30.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11083346082469242,11440.588343673775,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +31156,2,39.0,0.0,1,120,894.0,0.0,0.0,54,63,0.0,1006.4887305277701,1524.4492857746227,1654.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,131179,2,1,1,0,1,,941.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1256.76624937853,894.0,46111.99325463911,1,1,1,2,90.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03586919331086602,25617.77403035506,7,4,7,7_1,7_0,7_1_0 +31157,1,40.0,600.0,5,111,680.0,0.0,0.0,85,85,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,50,2,2,2,2,1,1,1,2,0,,2,,3,131180,1,1,0,1,2,,0.0,,41,0.0,0.0,5.0,5.0,2.4,2,2,234.223299110435,680.0,17101.550534062255,6,7,1,2,84.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.03976247642841509,7125.6460558592735,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +31158,1,41.0,180.0,2,111,0.0,,,0,52,0.0,0.0,,44.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,2,131181,2,1,0,0,2,,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,212.33039668220053,0.0,8406.357537595064,0,4,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.005234133785438272,8406.357537595064,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +31159,0,31.0,0.0,9,112,380.0,,,45,48,0.0,0.0,,422.0,58.19474746665388,,42,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,131182,2,1,0,0,2,,360.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,108.63610050214686,380.0,42824.20643167752,1,1,5,0,210.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00985423981348647,23791.225795376402,6,3,6,6_1,6_1,6_0_0 +31160,2,89.0,0.0,6,212,900.0,0.0,0.0,77,75,0.0,0.0,1534.680489034855,900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131183,1,1,2,0,1,,150.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,883.796719644362,900.0,32833.12596781106,5,5,0,1,71.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027411340634526913,21888.750645207372,6,3,6,6_1,6_0,6_0_0 +31161,1,42.0,400.0,6,111,672.0,130.0,0.0,0,85,0.0,0.0,1145.894765146025,802.0,0.0,246.80552623217258,31,0,0,0,0,0,0,0,0,0,,2,,4,131184,1,1,0,1,1,477.0,0.0,771.0,31,0.0,0.0,3.0,3.0,1.6,1,1,353.965606616756,672.0,3125.357850454304,0,6,2,3,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.25661061496795345,1953.34865653394,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +31162,2,59.0,0.0,8,112,1800.0,,,42,77,0.0,0.0,,2075.0,381.03703698404325,,41,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,131185,2,1,0,0,2,,360.0,,42,1.0,0.0,4.0,4.0,2.3,3,2,218.25157183265634,1800.0,53691.33575439412,1,5,1,2,70.0,7,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03864683138992647,23344.059023649617,6,3,6,6_1,6_1,6_0_0 +31163,1,66.0,210.0,2,112,0.0,0.0,0.0,72,78,0.0,0.0,0.0,393.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,131186,2,1,0,0,1,,0.0,420.0,41,0.0,1.0,1.0,2.0,1.5,2,2,1043.05295058404,0.0,14043.426747231366,6,5,2,3,10.0,10,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.027984622775739487,9362.284498154244,1,1,1_1,1_0_1,1_0_1,1_0_1_1 +31164,2,69.0,0.0,2,221,705.0,0.0,0.0,71,72,1443.8608230691075,0.0,1202.1663830773032,2214.0,193.98249155551292,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,131187,2,1,1,0,1,,271.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,2626.04139072255,705.0,52499.352859853534,5,5,0,1,170.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04217194840306412,34999.56857323569,9,5,9,9_1,9_1,9_0_1 +31165,2,53.0,0.0,6,111,0.0,0.0,0.0,43,38,0.0,0.0,0.0,414.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,131188,1,2,0,0,2,,0.0,830.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1766.60585419193,0.0,127694.12553662735,1,1,2,3,72.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.003242122519420438,85129.41702441823,10,5,10,10_0,10_3,10_0_0 +31166,2,49.0,0.0,7,112,2483.0,0.0,0.0,52,37,0.0,0.0,4234.012949192828,2483.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,90.0,1,,5,131189,2,1,1,0,1,,410.0,,43,2.0,0.0,5.0,3.0,2.0,3,3,954.32270916744,2483.0,115140.41164647322,1,1,0,1,120.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021564974143255592,57570.20582323661,10,5,10,10_1,10_0,10_0_0 +31167,1,47.0,110.0,2,111,800.0,0.0,0.0,56,63,1582.0242765549024,529.7309108040896,1364.160434697649,2820.0,166.2707070475825,0.0,50,2,2,2,2,1,2,2,2,2,6.0,1,,2,131190,1,2,3,0,2,,450.0,580.0,43,2.0,5.0,6.0,4.0,2.3,3,3,857.743921060135,800.0,38423.39546127961,1,1,2,3,100.0,6,5,3,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.07339278494639542,16705.824113599832,4,2,4_1,4_1_1,4_2_1,4_0_1_1 +31168,2,49.0,0.0,2,111,177.0,60.0,0.0,0,56,632.8097106219609,0.0,301.8204961768548,837.0,0.0,113.91024287638734,70,0,0,0,0,0,0,0,0,2,5.0,2,,2,131191,2,2,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1076.87151312662,177.0,26283.008830395338,0,1,0,1,45.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.031845669017621765,26283.008830395338,7,4,7,7_0,7_4,7_0_1 +31169,2,75.0,0.0,1,112,465.0,1918.0,0.0,71,74,0.0,0.0,792.9182526680084,2383.0,0.0,3641.330763948515,12,0,0,0,0,0,0,0,0,0,,1,,1,131192,2,1,2,0,1,,150.0,,41,0.0,2.0,9.0,2.0,1.5,2,2,3729.11463650729,465.0,90853.38370406668,5,5,0,1,200.0,8,1,9,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02622907263159352,60568.92246937779,10,5,10,10_1,10_1,10_1_0 +31170,1,44.0,223.0,2,111,283.0,0.0,0.0,52,67,0.0,33.1081819252556,482.5717537742933,308.0,0.0,0.0,71,2,1,2,1,1,2,2,2,0,,2,,2,131193,1,3,0,1,1,665.0,300.0,336.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1531.46645490274,283.0,12551.740803644134,4,4,2,3,82.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.024538428957247005,5977.01943030673,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +31171,2,54.0,0.0,1,400,507.0,0.0,0.0,85,31,0.0,297.97363732730037,864.5366754896351,2232.0,2078.3838380947814,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,131194,2,3,1,0,1,,230.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,1266.68325411242,507.0,15478.279623260289,6,1,0,1,40.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14420207247359831,10318.853082173526,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +31172,2,75.0,0.0,2,111,205.0,80.0,0.0,0,77,0.0,0.0,349.56611139127256,285.0,0.0,151.8803238351831,71,0,0,0,0,0,0,0,0,0,,2,,2,131195,1,2,0,1,2,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1045.24258023917,205.0,37269.380530352944,0,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007647028095030723,37269.380530352944,9,5,9,9_0,9_4,9_0_1 +31173,2,61.0,0.0,2,111,420.0,,,0,52,0.0,0.0,,442.0,30.482962958723462,,41,2,2,2,2,1,2,2,2,2,5.0,1,,2,131196,1,2,0,0,2,,400.0,655.0,12,1.0,3.0,5.0,1.0,1.0,1,1,124.82994212497871,420.0,29140.51732461288,0,1,2,3,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.01516788446396848,29140.51732461288,8,4,8,8_1,8_2,8_0_1 +31174,2,41.0,0.0,2,111,0.0,0.0,0.0,21,46,0.0,0.0,0.0,566.0,0.0,0.0,41,2,1,2,2,1,2,2,2,3,120.0,2,,2,131197,1,3,0,1,2,,311.0,,43,2.0,0.0,4.0,4.0,2.3,4,2,303.326626870007,0.0,29402.11805204304,1,1,1,2,77.0,7,5,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019250313837872332,12783.5295878448,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +31175,1,47.0,387.0,2,111,450.0,0.0,0.0,0,81,0.0,0.0,767.3402445174275,450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,131198,2,2,0,1,1,636.0,0.0,369.0,22,1.0,1.0,3.0,2.0,1.5,2,2,218.597160269302,450.0,21932.93225616497,0,4,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.020517092504743078,14621.954837443314,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +31176,2,50.0,0.0,2,111,250.0,250.0,0.0,0,68,0.0,0.0,426.3001358430153,500.0,0.0,474.62601198494724,70,2,1,2,1,1,2,2,2,0,,2,,2,131199,2,3,0,1,1,707.0,300.0,400.0,22,2.0,1.0,4.0,2.0,1.5,2,2,254.477860263678,250.0,16483.811351402815,0,1,2,3,68.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.030332790720602895,10989.207567601878,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +31177,2,50.0,0.0,7,111,1200.0,0.0,0.0,55,63,0.0,1059.4618216081792,2046.2406520464733,2072.0,99.7624242285495,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,131200,2,1,2,0,1,,470.0,,43,2.0,2.0,4.0,3.0,2.0,3,3,925.567640513862,1200.0,47638.51382823346,1,1,1,2,99.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.043494219980725085,23819.25691411673,6,3,6,6_1,6_3,6_0_0 +31178,2,50.0,0.0,6,111,240.0,0.0,0.0,0,68,0.0,0.0,409.2481304092947,240.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,4,131201,2,1,0,1,1,300.0,0.0,193.0,12,1.0,1.0,1.0,1.0,1.0,1,1,2362.21432182263,240.0,14510.93130382615,0,1,2,3,35.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016539255474024493,14510.93130382615,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +31179,2,63.0,0.0,2,112,960.0,0.0,0.0,85,90,0.0,331.081819252556,1636.9925216371787,1210.0,0.0,0.0,50,2,2,1,1,1,2,2,2,0,,1,,2,131202,2,2,1,0,1,,250.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,75.2105442324756,960.0,30962.559176055882,6,5,0,1,25.0,7,0,3,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03907945700224041,20641.706117370588,5,3,5,5_1,5_0,5_0_1 +31180,2,84.0,0.0,2,111,600.0,,,75,75,0.0,0.0,,760.0,221.69427606344334,,41,0,0,0,0,0,0,0,0,0,,1,,2,131203,2,1,0,0,2,,400.0,,41,2.0,5.0,5.0,5.0,2.8,4,4,165.93702558668357,600.0,138800.54358430475,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00547548287905941,49571.62270868027,10,5,10,10_1,10_2,10_0_1 +31181,1,53.0,80.0,2,111,200.0,80.0,0.0,0,62,0.0,0.0,341.04010867441224,280.0,0.0,151.8803238351831,60,2,2,2,2,2,2,2,1,2,5.0,2,,2,131204,1,2,0,1,1,,0.0,,32,1.0,1.0,4.0,3.0,1.8,2,1,323.554880569187,200.0,30983.46879357761,0,1,1,2,78.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.009037077218998785,17213.038218654227,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +31182,2,48.0,0.0,7,112,1200.0,0.0,0.0,52,63,0.0,0.0,2046.2406520464733,1265.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,131205,2,1,3,0,2,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,753.285171839012,1200.0,57901.09427774107,1,1,0,1,120.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021847600909440917,27571.949656067172,7,4,7,7_1,7_0,7_0_0 +31183,2,62.0,0.0,2,111,1200.0,0.0,0.0,43,75,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131206,2,1,2,0,1,,362.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,280.332498295226,1200.0,57331.0859202991,1,5,0,1,100.0,7,5,9,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.020931053035838598,38220.72394686606,9,5,9,9_1,9_2,9_0_1 +31184,2,43.0,0.0,2,111,0.0,,,0,62,0.0,0.0,,23.0,31.86855218411998,,71,0,0,0,0,0,0,0,0,0,,2,,2,131207,2,2,0,0,2,,0.0,525.0,12,1.0,1.0,2.0,1.0,1.0,1,1,175.80244780537362,0.0,23051.67135301469,0,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.000997758455245028,23051.67135301469,6,3,6,6_0,6_2,6_0_1 +31185,2,58.0,0.0,1,112,1624.0,0.0,0.0,13,13,1054.6828510366015,0.0,2769.2456824362275,2624.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,131208,2,3,1,0,1,,350.0,,43,2.0,2.0,9.0,3.0,2.0,3,3,2201.11578965077,1624.0,63947.36584561928,1,1,0,1,180.0,7,1,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04103374650857112,31973.68292280964,8,4,8,8_1,8_1,8_1_0 +31186,2,41.0,0.0,1,111,360.0,910.0,0.0,22,22,0.0,0.0,613.872195613942,1270.0,0.0,1727.638683625208,20,0,0,0,0,0,0,0,0,1,20.0,2,,1,131209,2,1,0,0,1,,0.0,1860.0,43,2.0,0.0,2.0,2.0,1.5,2,2,934.47215876154,360.0,68033.06154618226,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01866739451579579,45355.374364121504,10,5,10,10_0,10_4,10_1_0 +31187,2,69.0,0.0,5,111,660.0,,,78,77,0.0,0.0,,912.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,131210,1,1,0,0,2,,336.0,,41,0.0,7.0,4.0,3.0,1.8,2,2,117.24452505638088,660.0,15744.841802448624,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0579237321938774,8747.13433469368,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31188,2,63.0,0.0,2,111,288.0,142.0,0.0,0,86,0.0,0.0,491.09775649115363,430.0,0.0,269.58757480745004,71,2,2,2,1,2,2,2,2,0,,2,,2,131211,2,2,0,1,1,80.0,500.0,317.0,11,0.0,7.0,5.0,1.0,1.0,1,1,280.412160299734,288.0,16202.120582594462,0,5,2,3,92.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.026539735820873867,16202.120582594462,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +31189,2,82.0,0.0,2,112,250.0,0.0,0.0,0,77,3164.0485531098047,0.0,426.3001358430153,3350.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131212,2,1,1,0,2,,216.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,2979.5552038782,250.0,12101.763138686476,0,5,0,1,135.0,10,1,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2768191677203499,12101.763138686476,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +31190,2,52.0,0.0,6,111,360.0,,,56,85,0.0,0.0,,560.0,277.1178450793042,,70,2,2,2,2,2,2,2,1,0,,1,,4,131213,1,3,0,0,2,,240.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,113.85571091064816,360.0,19850.800000000003,4,7,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.028210449956676806,9925.400000000001,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31191,2,53.0,0.0,7,111,900.0,,,21,77,0.0,0.0,,1050.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,5,131214,2,3,0,0,2,,500.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,122.59545600953729,900.0,13582.94723495207,4,7,0,1,113.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07730281078454805,9055.298156634713,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31192,2,35.0,0.0,9,120,1330.0,0.0,0.0,42,48,0.0,0.0,2267.9167226848413,1330.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,12.0,1,2008.0,6,131215,2,1,1,0,1,,280.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1471.9082773052,1330.0,64387.0,1,1,1,2,120.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020656343671859225,35770.555555555555,9,5,9,9_1,9_0,9_0_0 +31193,1,34.0,255.0,2,111,432.0,1308.0,0.0,85,63,0.0,0.0,736.6466347367304,1740.0,0.0,2483.243294705244,50,0,0,0,0,0,0,0,0,0,,2,,2,131216,1,3,0,0,1,,208.0,275.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1097.08652438834,432.0,18423.532632424685,6,1,2,3,64.0,5,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09444442793439457,8773.110777345088,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31194,2,55.0,0.0,5,112,1450.0,0.0,0.0,52,46,0.0,0.0,2472.540787889489,1510.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131217,2,1,3,0,1,,500.0,719.0,43,2.0,3.0,4.0,2.0,1.5,2,2,1073.17732435542,1450.0,36957.1253039998,1,1,2,3,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04085815624400244,24638.083535999864,7,4,7,7_1,7_1,7_0_0 +31195,2,30.0,0.0,2,111,228.0,150.0,0.0,0,21,0.0,0.0,388.7857238888299,378.0,0.0,284.77560719096834,12,0,0,0,0,0,0,0,0,0,,2,,2,131218,2,1,0,1,1,330.0,0.0,230.0,22,1.0,0.0,1.0,2.0,1.5,2,2,300.797647846729,228.0,9506.230386267216,0,1,2,3,21.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.039763395651136554,6337.486924178144,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +31196,2,26.0,0.0,5,111,0.0,0.0,0.0,84,43,0.0,0.0,0.0,991.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,13.0,2,,3,131219,2,3,0,0,1,,116.0,500.0,42,1.0,0.0,2.0,2.0,1.5,2,2,869.763875505486,0.0,24590.956061682387,3,1,2,3,34.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04029936849605354,16393.97070778826,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +31197,2,75.0,0.0,5,300,1296.0,0.0,0.0,0,77,0.0,397.2981831030672,2209.9399042101913,5596.0,5542.356901586084,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131220,2,1,3,0,2,,525.0,,21,1.0,2.0,6.0,2.0,1.5,2,2,972.640748713769,1296.0,40492.59735267897,0,5,0,1,155.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13819809955040516,26995.06490178598,7,4,7,7_1,7_0,7_0_0 +31198,2,61.0,0.0,6,111,900.0,0.0,0.0,78,56,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131221,2,1,1,0,1,,283.0,,42,1.0,4.0,5.0,2.0,1.5,2,2,1245.9219188036,900.0,34142.27347095975,5,1,0,1,102.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02636028326483616,22761.5156473065,6,3,6,6_1,6_3,6_0_0 +31199,1,31.0,377.0,2,111,0.0,0.0,0.0,0,81,0.0,0.0,0.0,1181.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131222,2,1,0,1,2,,196.0,527.0,32,1.0,0.0,5.0,2.0,1.3,1,1,1619.17778287289,0.0,4523.0,0,4,2,3,81.0,8,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.2611098828211364,3479.230769230769,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31200,2,66.0,0.0,5,111,500.0,1000.0,0.0,77,78,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,70,0,0,0,0,0,0,0,0,0,,1,,3,131223,2,1,2,0,1,,220.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1000.57015139908,500.0,47901.6125200407,5,5,0,1,100.0,3,4,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03131418591331225,31934.4083466938,8,4,8,8_1,8_2,8_0_0 +31201,2,44.0,0.0,7,112,660.0,0.0,0.0,64,43,1054.6828510366015,794.5963662061343,1125.4323586255605,2260.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,50.0,1,,5,131224,2,2,2,0,1,,648.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,1139.73712501851,660.0,55433.92971332776,1,1,0,1,120.0,9,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04076925470893753,22173.571885331105,6,3,6,6_1,6_0,6_0_0 +31202,1,55.0,48.0,1,111,300.0,1000.0,0.0,85,43,0.0,0.0,511.56016301161833,1415.0,159.34276092059991,1898.504047939789,31,2,2,2,2,1,2,2,2,1,8.0,1,,1,131225,2,3,4,0,1,,330.0,,42,1.0,1.0,3.0,4.0,2.3,3,2,224.357684653003,300.0,32160.366624079383,6,1,1,2,65.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0.04399825463869399,13982.76809742582,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +31203,2,34.0,0.0,1,111,580.0,981.0,0.0,34,38,0.0,0.0,989.0163151557955,1561.0,0.0,1862.432471028933,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,131226,2,2,2,0,1,,921.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1414.16909936503,580.0,71820.43665210741,1,1,1,2,110.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02173476064426289,29925.18193837809,8,4,8,8_1,8_2,8_1_0 +31205,2,38.0,0.0,8,120,1500.0,0.0,0.0,46,46,0.0,0.0,2557.8008150580918,1530.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,131228,2,1,2,0,1,,500.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1711.26941396517,1500.0,47950.6636536705,1,1,1,2,100.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031907796126673264,22833.64935889071,6,3,6,6_1,6_1,6_0_0 +31206,2,78.0,0.0,1,120,616.0,0.0,0.0,71,71,0.0,397.2981831030672,1050.4035347171896,916.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,5,,1,131229,2,1,4,0,1,,313.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,779.315962440242,616.0,45737.96127750246,5,5,0,1,140.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020027127891477776,30491.97418500164,8,4,8,8_1,8_0,8_1_0 +31207,2,33.0,0.0,9,111,289.0,,,47,54,0.0,0.0,,358.0,95.60565655235995,,42,0,0,0,0,0,0,0,0,2,60.0,2,2010.0,6,131230,2,1,0,0,2,,278.0,760.0,43,2.0,0.0,3.0,3.0,2.0,3,2,177.22958056191283,289.0,80745.63829276507,1,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.004433676017297362,40372.819146382535,9,5,9,9_0,9_2,9_0_0 +31208,2,27.0,0.0,1,111,0.0,0.0,0.0,0,47,0.0,0.0,0.0,1732.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,131231,2,3,3,0,1,,355.0,785.0,22,2.0,0.0,6.0,2.0,1.5,2,2,1310.69385410301,0.0,42232.67514096908,0,1,2,3,90.0,9,7,2,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04101089959891793,28155.11676064605,8,4,8,8_1,8_3,8_1_0 +31209,2,25.0,0.0,6,111,700.0,0.0,0.0,0,38,0.0,0.0,1193.6403803604428,893.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,4,131232,2,2,0,1,1,,235.0,,22,2.0,0.0,3.0,3.0,2.0,3,3,733.234313730576,700.0,75965.13633780688,0,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0117553925794189,37982.56816890344,9,5,9,9_0,9_4,9_0_0 +31210,2,41.0,0.0,1,111,367.0,1128.0,0.0,0,42,0.0,0.0,625.8085994175465,1495.0,0.0,2141.512566076082,20,0,0,0,0,0,0,0,0,2,45.0,2,,1,131233,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2465.8165861319,367.0,48285.21990149019,0,1,1,2,75.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.030961855471509633,48285.21990149019,10,5,10,10_0,10_2,10_1_0 +31211,2,58.0,0.0,7,112,800.0,0.0,0.0,56,22,0.0,0.0,1364.160434697649,812.0,16.627070704758253,0.0,42,0,0,0,0,0,0,0,0,0,,1,,5,131234,2,1,1,0,1,,120.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1751.93710284168,800.0,58015.338459616214,1,1,0,1,110.0,6,1,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013996298592056367,38676.89230641081,9,5,9,9_1,9_1,9_0_0 +31212,2,52.0,0.0,9,111,350.0,,,52,45,0.0,0.0,,432.0,113.61831648251471,,20,0,0,0,0,0,0,0,0,2,30.0,1,2012.0,6,131235,2,1,0,0,2,,400.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,214.44387090178088,350.0,37426.85107166604,1,1,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011542515269927296,18713.42553583302,5,3,5,5_1,5_2,5_0_0 +31213,1,38.0,40.0,1,112,350.0,1000.0,0.0,0,52,0.0,132.4327277010224,596.8201901802214,1450.0,0.0,1898.504047939789,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,131236,2,2,3,0,1,,320.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,688.60645587961,350.0,24462.670316590396,0,1,1,2,75.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.059273986904717475,13590.372398105776,3,2,3_1,3_1_1,3_2_1,3_1_0_1 +31214,2,59.0,0.0,2,111,276.0,50.0,0.0,48,45,0.0,0.0,470.6353499706889,326.0,0.0,94.92520239698945,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,131237,2,3,0,1,1,468.0,0.0,277.0,43,2.0,1.0,3.0,2.0,1.5,2,2,390.962749746812,276.0,38042.99028270402,4,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.008569252773702535,25361.99352180268,7,4,7,7_0,7_3,7_0_1 +31215,2,59.0,0.0,1,112,681.0,0.0,0.0,0,74,4163.8878958925025,0.0,1161.2415700363736,4689.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,131238,1,2,4,0,2,,453.0,,11,0.0,0.0,8.0,1.0,1.0,1,1,1585.61693806721,681.0,33438.82175761389,0,5,0,1,200.0,6,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1402262326701847,33438.82175761389,8,4,8,8_1,8_0,8_1_0 +31217,2,54.0,0.0,1,111,1100.0,1500.0,0.0,43,34,0.0,397.2981831030672,1875.7205977092674,2900.0,0.0,2847.7560719096837,10,0,0,0,0,0,0,0,0,3,7.0,1,,1,131240,2,1,1,0,1,,500.0,,43,4.0,1.0,8.0,5.0,3.0,5,5,414.742687690325,1100.0,192075.28555041197,1,1,1,2,180.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015098246459401294,64025.09518347066,10,5,10,10_1,10_3,10_1_0 +31218,2,53.0,0.0,1,112,1637.0,0.0,0.0,43,46,0.0,0.0,2791.4132895000644,1637.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,1,131241,2,2,2,0,1,,570.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,336.567127210564,1637.0,66772.2300024146,1,1,0,1,81.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02451617985412204,44514.82000160973,10,5,10,10_1,10_0,10_1_0 +31219,1,52.0,86.0,2,111,310.0,120.0,0.0,0,46,0.0,0.0,528.612168445339,430.0,0.0,227.8204857527747,50,0,0,0,0,0,0,0,0,0,,2,,2,131242,2,1,0,1,1,804.0,0.0,453.0,12,1.0,3.0,4.0,1.0,1.0,1,1,379.867876943334,310.0,17993.843160953315,0,4,2,3,78.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023897062798296537,17993.843160953315,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +31220,1,43.0,265.0,1,111,200.0,520.0,0.0,0,85,0.0,0.0,341.04010867441224,720.0,0.0,987.2221049286903,50,2,2,2,2,2,2,2,1,0,,2,,1,131243,2,1,0,0,1,,350.0,380.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1479.4958176828,200.0,9981.453333333333,0,7,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07213378412495709,9981.453333333333,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +31221,2,62.0,0.0,5,111,600.0,0.0,0.0,55,23,0.0,0.0,1023.1203260232367,868.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,2,,3,131244,2,1,0,1,1,,0.0,,43,3.0,2.0,3.0,3.0,2.0,3,3,2187.84231684161,600.0,124097.24322432325,1,1,1,2,75.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0069945147647717506,62048.62161216162,10,5,10,10_0,10_3,10_0_0 +31222,2,49.0,0.0,6,111,500.0,,,42,37,0.0,0.0,,588.0,121.93185183489385,,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,131245,2,2,0,0,2,,300.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,117.59774699076777,500.0,104951.27703563657,1,1,1,2,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0056025997644634905,52475.63851781828,10,5,10,10_1,10_2,10_0_0 +31224,2,57.0,0.0,7,120,700.0,,,33,42,0.0,0.0,,784.0,116.38949493330776,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,131247,2,1,0,0,2,,300.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,114.01407135836193,700.0,106322.0,1,1,1,2,130.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007373826677451515,53161.0,10,5,10,10_1,10_2,10_0_0 +31225,2,25.0,0.0,2,222,0.0,0.0,0.0,48,65,0.0,0.0,0.0,3115.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,3.0,1,,2,131248,2,1,1,0,1,,713.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1461.3884002411,0.0,23499.185748649925,4,1,1,2,110.0,1,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13255778448319058,13055.103193694402,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +31226,2,57.0,0.0,2,111,576.0,0.0,0.0,78,52,0.0,0.0,982.1955129823073,576.0,0.0,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,2,131249,2,1,0,1,1,504.0,0.0,310.0,42,1.0,4.0,3.0,2.0,1.5,2,2,253.591062408501,576.0,34505.057469446234,5,1,2,3,60.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016693205061606993,23003.371646297488,6,3,6,6_0,6_3,6_0_1 +31227,2,49.0,0.0,9,300,326.0,,,0,56,0.0,0.0,,590.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,1,60.0,2,2005.0,6,131250,2,1,0,0,2,,738.0,476.0,12,1.0,2.0,3.0,1.0,1.0,1,1,146.14213857446032,326.0,16913.84816753927,0,1,2,3,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03488265911788877,16913.84816753927,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +31228,2,63.0,0.0,6,112,580.0,1021.0,0.0,86,71,0.0,0.0,989.0163151557955,1601.0,0.0,1938.3726329465246,71,0,0,0,0,0,0,0,0,0,,1,,4,131251,2,3,2,0,1,,339.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,3707.23424697601,580.0,20890.790348108956,6,5,0,1,180.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07663664099452912,13927.19356540597,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +31229,1,40.0,24.0,9,111,1837.0,0.0,0.0,85,23,0.0,0.0,3132.453398174476,1837.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,5.0,1,2011.0,6,131252,2,1,1,0,1,,500.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,67.8981632393182,1837.0,33107.88289510452,6,1,1,2,220.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05548527538955464,13794.951206293552,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +31230,2,49.0,0.0,1,111,340.0,1740.0,0.0,0,63,0.0,0.0,579.7681847465008,2080.0,0.0,3303.397043415233,50,0,0,0,0,0,0,0,0,2,20.0,2,,1,131253,2,2,0,0,1,,280.0,,32,2.0,3.0,3.0,2.0,1.5,2,1,1031.86188568329,340.0,34842.60428782797,0,1,0,1,90.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05969703018802857,23228.40285855198,6,3,6,6_0,6_2,6_1_0 +31231,2,47.0,0.0,1,111,799.0,420.0,0.0,46,35,0.0,0.0,1362.455234154277,1219.0,0.0,797.3717001347114,41,2,2,2,2,1,2,2,2,1,10.0,2,,1,131254,1,2,0,0,2,,0.0,778.0,43,2.0,0.0,2.0,3.0,1.8,2,2,488.294540146872,799.0,42481.27369367938,1,1,2,3,43.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.028694996501043474,23600.707607599656,6,3,6,6_0,6_4,6_1_0 +31232,2,59.0,0.0,2,111,300.0,250.0,0.0,0,55,0.0,0.0,511.56016301161833,550.0,0.0,474.62601198494724,50,2,2,2,1,1,2,2,2,2,5.0,2,,2,131255,1,3,0,1,2,541.0,0.0,333.0,12,1.0,2.0,4.0,1.0,1.0,1,1,1071.21323622533,300.0,18861.336888828457,0,1,2,3,102.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029160181128293414,18861.336888828457,5,3,5,5_0,5_4,5_0_1 +31233,2,66.0,0.0,7,112,1200.0,2600.0,0.0,72,74,0.0,172.1625460113291,2046.2406520464733,3930.0,0.0,4936.110524643452,31,0,0,0,0,0,0,0,0,0,,1,,5,131256,2,1,2,0,1,,610.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,652.502174626416,1200.0,65744.35512836705,6,5,0,1,201.0,9,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05977699518577075,43829.57008557804,10,5,10,10_1,10_1,10_0_0 +31235,2,39.0,0.0,2,111,0.0,0.0,0.0,52,63,0.0,0.0,0.0,695.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,131258,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,984.370672475891,0.0,36618.1098770004,1,1,1,2,77.0,7,5,4,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018979679790532417,24412.0732513336,7,4,7,7_0,7_2,7_0_1 +31236,2,90.0,0.0,7,111,280.0,,,0,86,0.0,0.0,,544.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,131259,2,1,0,0,2,,230.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,101.82769820391853,280.0,15731.205533596836,0,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03458094796601504,10487.470355731224,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31237,1,43.0,320.0,1,111,1291.0,1331.0,0.0,55,63,0.0,0.0,2201.413901493331,2622.0,0.0,2526.908887807859,71,1,2,2,2,1,2,2,2,2,30.0,1,,1,131260,1,2,2,0,1,,670.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,536.536084813917,1291.0,35691.95918756831,1,1,1,2,82.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.0734619241891674,16996.171041699195,4,2,4_1,4_1_1,4_2_1,4_1_0_1 +31238,1,24.0,209.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,760.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,35.0,2,,1,131261,1,2,0,0,1,,0.0,530.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1244.41145312639,0.0,18524.544306264623,0,1,3,4,17.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.04102665023414279,18524.544306264623,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +31239,2,72.0,0.0,5,400,240.0,0.0,0.0,78,75,3292.71986093627,0.0,409.2481304092947,3362.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,131262,2,1,4,0,2,,217.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,968.928019481669,240.0,42127.48715559801,5,5,0,1,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0798053771301963,28084.991437065342,8,4,8,8_1,8_0,8_0_0 +31240,0,63.0,0.0,2,111,364.0,,,0,77,0.0,0.0,,522.0,218.9230976126503,,71,0,0,0,0,0,0,0,0,0,,1,,2,131263,2,1,0,0,2,,480.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,177.90864243608564,364.0,7914.164510852761,0,5,5,0,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06595768881025621,7914.164510852761,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +31241,2,31.0,0.0,2,111,188.0,1200.0,0.0,0,37,0.0,0.0,320.5777021539475,1388.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,2,5.0,2,,2,131264,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1919.19556909322,188.0,29838.916877520907,0,1,1,2,45.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04651643374648251,29838.916877520907,8,4,8,8_0,8_3,8_0_1 +31242,2,39.0,0.0,1,111,480.0,950.0,0.0,62,68,0.0,0.0,818.4962608185893,1570.0,193.98249155551292,1803.5788455427996,60,0,0,0,0,0,0,0,0,2,30.0,1,,1,131265,2,1,2,0,1,,350.0,396.0,43,2.0,0.0,3.0,3.0,1.8,2,2,302.946723208907,480.0,34644.92483373218,1,1,2,3,40.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.045316882848923455,19247.18046318454,5,3,5,5_1,5_3,5_1_0 +31243,2,42.0,0.0,1,112,1200.0,0.0,0.0,85,67,0.0,0.0,2046.2406520464733,2600.0,1939.8249155551293,0.0,44,0,0,0,0,0,0,0,0,4,90.0,1,,1,131266,2,2,1,0,1,,185.0,,42,1.0,0.0,5.0,5.0,2.4,2,2,443.185745616653,1200.0,48589.36102465418,6,1,1,2,120.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053509656129883315,20245.56709360591,5,3,5,5_1,5_0,5_1_0 +31244,2,49.0,0.0,1,111,328.0,0.0,0.0,46,37,0.0,0.0,559.3057782260361,328.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,2,,1,131267,2,3,0,0,1,,0.0,710.0,43,2.0,0.0,1.0,3.0,2.0,3,3,1034.67174941077,328.0,77504.94651908451,1,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004231987953429973,38752.473259542254,9,5,9,9_0,9_4,9_1_0 +31245,2,58.0,0.0,1,400,540.0,0.0,0.0,0,63,0.0,728.3800023556231,920.8082934209131,1150.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,131268,2,1,0,0,1,,133.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1901.56503994354,540.0,16114.743221602595,0,1,1,2,42.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07136322212434444,16114.743221602595,4,2,4_0,4_0_0,4_0_0,4_1_0_0 +31247,1,28.0,325.0,5,400,1272.0,0.0,0.0,69,52,0.0,0.0,2169.0150911692617,1404.0,182.89777775234077,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,3,131270,2,2,5,0,1,,499.0,408.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1534.96045941489,1272.0,25981.02160721532,4,1,2,3,75.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.05403944545468097,12371.915051054913,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +31248,2,44.0,0.0,1,111,500.0,0.0,0.0,31,48,0.0,0.0,852.6002716860306,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,20.0,2,,1,131271,1,1,0,1,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,646.108247060559,500.0,248322.60124346946,1,1,1,2,125.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.002013509835577841,118248.85773498545,10,5,10,10_0,10_4,10_1_0 +31249,1,38.0,250.0,7,111,960.0,0.0,0.0,85,56,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,41,2,2,2,2,1,2,2,2,3,1.0,2,,5,131272,1,3,0,0,1,,732.0,750.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1035.0140859178,960.0,8364.226878563704,6,1,2,3,32.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,1,0.11477450503648344,5576.151252375803,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +31250,2,44.0,0.0,2,111,800.0,1080.0,0.0,42,35,0.0,79.45963662061344,1364.160434697649,1940.0,0.0,2050.384371774972,20,0,0,0,0,0,0,0,0,2,7.0,1,,2,131273,2,2,3,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,1582.75656380548,800.0,55526.191025792345,1,1,1,2,115.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03493846712984247,22210.476410316936,6,3,6,6_1,6_2,6_0_1 +31251,1,40.0,275.0,8,112,1275.0,0.0,0.0,0,21,0.0,860.8127300566456,2174.130692799378,1985.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,2001.0,6,131274,2,1,1,0,1,,256.0,500.0,32,1.0,0.0,3.0,4.0,2.1,2,1,1483.36486626479,1275.0,21814.11382110401,0,1,2,3,75.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09099613288345533,10387.673248144765,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +31252,2,84.0,0.0,1,112,674.0,0.0,0.0,71,71,0.0,0.0,1149.3051662327691,770.0,133.01656563806603,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131275,2,1,3,0,1,,140.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,681.377880698699,674.0,16705.304322503816,5,5,0,1,90.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04609314413762151,11136.869548335877,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +31253,1,51.0,161.0,5,111,384.0,0.0,0.0,0,52,0.0,0.0,654.7970086548714,414.0,41.567676761895626,0.0,50,2,1,2,1,1,2,2,2,2,5.0,2,,3,131276,2,2,0,1,1,67.0,0.0,291.0,12,1.0,3.0,2.0,1.0,1.0,1,1,635.75763182292,384.0,11103.115784696767,0,1,2,3,40.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03728683083451305,11103.115784696767,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +31254,2,50.0,0.0,7,120,250.0,890.0,0.0,55,64,0.0,0.0,426.3001358430153,1140.0,0.0,1689.6686026664122,44,0,0,0,0,0,0,0,0,2,10.0,2,,5,131277,2,2,0,0,1,,0.0,617.0,43,2.0,1.0,3.0,2.0,1.5,2,2,801.206291850134,250.0,49344.273112100964,1,1,2,3,70.0,0,2,4,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023102984968694,32896.18207473397,8,4,8,8_0,8_1,8_0_0 +31255,2,43.0,0.0,2,111,150.0,150.0,0.0,0,37,0.0,0.0,255.78008150580916,300.0,0.0,284.77560719096834,31,0,0,0,0,0,0,0,0,0,,2,,2,131278,2,1,0,1,1,710.0,0.0,600.0,32,1.0,0.0,4.0,2.0,1.3,1,1,414.411497424332,150.0,49512.806822668615,0,1,2,3,66.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006059038443820357,38086.77447897586,9,5,9,9_0,9_4,9_0_1 +31256,0,44.0,0.0,1,111,840.0,0.0,0.0,0,37,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,131279,2,1,0,0,1,,169.0,,32,1.0,0.0,2.0,3.0,1.8,2,2,1855.3639472951,840.0,71893.14155212959,0,4,5,0,55.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011684007429149797,39940.63419562755,9,5,9,9_0,9_3,9_1_0 +31257,2,63.0,0.0,6,111,1950.0,0.0,0.0,75,75,0.0,0.0,3325.141059575519,1950.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,131280,2,1,3,0,1,,360.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,601.653685565636,1950.0,45652.29779570996,5,5,0,1,88.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04271416980424687,30434.86519713997,8,4,8,8_1,8_4,8_0_0 +31258,0,36.0,0.0,1,111,510.0,1225.0,0.0,67,62,0.0,0.0,869.6522771197511,1735.0,0.0,2325.6674587262414,50,0,0,0,0,0,0,0,0,0,,1,,1,131281,2,1,1,0,1,,560.0,,43,2.0,8.0,4.0,3.0,2.0,3,3,295.498995105069,510.0,45851.50193978229,4,1,5,0,70.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03783954563317491,22925.750969891145,6,3,6,6_1,6_3,6_1_0 +31259,2,53.0,0.0,6,111,1400.0,0.0,0.0,54,37,0.0,0.0,2387.2807607208856,1470.0,96.99124577775646,0.0,50,2,2,1,1,2,2,2,2,2,15.0,1,,4,131282,2,2,2,0,1,,500.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,1572.12726397291,1400.0,35310.549796091116,1,1,1,2,100.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.041630617718751275,17655.274898045558,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +31260,2,63.0,0.0,2,111,231.0,77.0,0.0,0,75,0.0,0.0,393.9013255189461,308.0,0.0,146.18481169136376,44,0,0,0,0,0,0,0,0,0,,2,,2,131283,2,2,0,1,1,,192.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,2019.11113680533,231.0,26164.890525504103,0,5,1,2,64.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011771499662869923,26164.890525504103,7,4,7,7_0,7_3,7_0_1 +31261,2,54.0,0.0,2,111,400.0,100.0,0.0,0,62,0.0,0.0,682.0802173488245,500.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,131284,2,1,0,1,1,167.0,0.0,317.0,12,1.0,1.0,1.0,1.0,1.0,1,1,320.378798319209,400.0,59184.35187931235,0,1,2,3,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008448179022380627,59184.35187931235,10,5,10,10_0,10_4,10_0_1 +31262,0,88.0,0.0,2,120,545.0,0.0,0.0,0,75,0.0,0.0,929.3342961377733,725.0,249.40606057137379,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,131285,2,2,2,0,1,,100.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1326.69475200302,545.0,23159.627581888806,0,5,0,1,52.0,0,2,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03130447574929752,23159.627581888806,6,3,6,6_1,6_1,6_0_1 +31263,1,61.0,100.0,8,111,308.0,905.0,0.0,0,77,0.0,0.0,525.2017673585948,1213.0,0.0,1718.146163385509,70,2,2,2,2,1,2,2,2,0,,1,2000.0,6,131286,1,2,3,0,1,,122.0,406.0,11,0.0,2.0,3.0,1.0,1.0,1,1,522.583755210188,308.0,14354.018139179792,0,7,2,3,70.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.08450595423793386,14354.018139179792,3,2,3_1,3_1_1,3_3_1,3_0_0_1 +31264,1,55.0,238.0,5,212,400.0,0.0,0.0,47,42,1054.6828510366015,0.0,682.0802173488245,1520.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131287,2,2,5,0,2,,200.0,710.0,43,2.0,3.0,2.0,2.0,1.5,2,2,1426.85494686298,400.0,11985.406467875031,1,1,2,3,72.0,3,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.12682089706962524,7990.270978583354,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +31265,2,38.0,0.0,2,111,742.0,1874.0,0.0,42,62,0.0,0.0,1265.2588031820694,2616.0,0.0,3557.7965858391644,43,0,0,0,0,0,0,0,0,2,30.0,1,,2,131288,2,1,2,0,1,,324.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,776.678715827732,742.0,50686.66377756501,1,1,1,2,150.0,4,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05161120904465401,28159.257654202782,8,4,8,8_1,8_2,8_0_1 +31266,2,44.0,0.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1558.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,15.0,1,,2,131289,2,1,1,0,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1249.54003387014,0.0,33042.20018301198,0,1,1,2,57.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04715182376992608,33042.20018301198,8,4,8,8_1,8_3,8_0_1 +31267,2,55.0,0.0,1,112,200.0,700.0,0.0,0,62,0.0,0.0,341.04010867441224,900.0,0.0,1328.9528335578523,50,0,0,0,0,0,0,0,0,0,,1,,1,131290,1,1,2,0,2,,226.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,1175.65023569523,200.0,42201.33340919379,0,1,0,1,66.0,10,1,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02132634036165147,28134.222272795858,8,4,8,8_1,8_1,8_1_0 +31268,2,63.0,0.0,2,111,450.0,900.0,0.0,0,77,0.0,0.0,767.3402445174275,1350.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,1,,2,131291,2,1,2,0,1,,300.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1350.9069136284,450.0,19633.59319036593,0,5,1,2,90.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06875970113623601,19633.59319036593,5,3,5,5_1,5_2,5_0_1 +31269,2,66.0,0.0,2,111,150.0,0.0,0.0,0,75,0.0,0.0,255.78008150580916,150.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,131292,2,2,0,1,1,,37.0,,21,1.0,0.0,5.0,2.0,1.5,2,2,275.899056024442,150.0,27681.95304786708,0,5,0,1,69.0,9,7,5,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.005418692811906118,18454.635365244718,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +31270,0,72.0,0.0,2,111,1000.0,1800.0,0.0,0,75,0.0,0.0,1705.2005433720612,2800.0,0.0,3417.30728629162,10,0,0,0,0,0,0,0,0,0,,1,,2,131293,2,1,2,0,1,,331.0,,11,0.0,6.0,7.0,1.0,1.0,1,1,1596.3265264065,1000.0,74234.11293399292,0,5,0,1,150.0,5,4,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037718508234747664,74234.11293399292,10,5,10,10_1,10_2,10_0_1 +31271,0,45.0,0.0,2,112,200.0,0.0,0.0,0,68,0.0,397.2981831030672,341.04010867441224,530.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,131294,2,1,2,0,1,,200.0,,12,1.0,1.0,7.0,1.0,1.0,1,1,2029.82778157737,200.0,21288.867822372384,0,1,5,0,120.0,8,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024895640501982223,21288.867822372384,6,3,6,6_1,6_0,6_0_1 +31272,2,43.0,0.0,6,111,200.0,,,21,37,0.0,52.973091080408956,,390.0,207.83838380947813,,31,0,0,0,0,0,0,0,0,0,,1,,4,131295,2,1,0,0,2,,384.0,780.0,43,2.0,0.0,3.0,4.0,2.3,3,2,82.25483851892324,200.0,56630.62317811652,4,1,2,3,82.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006886733327538336,24622.010077441966,7,4,7,7_1,7_2,7_0_0 +31273,2,52.0,0.0,8,111,0.0,,,0,54,0.0,0.0,,919.0,0.0,,60,0,0,0,0,0,0,0,0,2,10.0,1,2001.0,6,131296,2,1,0,0,2,,163.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,136.03527700298542,0.0,45800.31189147736,0,1,1,2,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020065365541124404,45800.31189147736,10,5,10,10_1,10_2,10_0_0 +31274,2,87.0,0.0,9,111,240.0,,,0,86,0.0,0.0,,282.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,2008.0,6,131297,1,2,0,0,2,,125.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,104.63513589652214,240.0,11075.249915135897,0,7,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025462179378418097,11075.249915135897,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31275,2,70.0,0.0,2,120,250.0,,,75,74,0.0,0.0,,370.0,166.2707070475825,,10,0,0,0,0,0,0,0,0,0,,1,,2,131298,2,1,0,0,2,,160.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,104.65659834738923,250.0,80753.33264164731,6,5,0,1,140.0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004581854245470212,53835.55509443154,10,5,10,10_1,10_1,10_0_1 +31276,1,48.0,362.0,2,111,110.0,137.0,0.0,85,85,0.0,0.0,187.57205977092673,247.0,0.0,260.0950545677511,71,0,0,0,0,0,0,0,0,0,,2,,2,131299,2,2,0,1,1,980.0,350.0,341.0,41,0.0,3.0,5.0,3.0,1.8,2,2,239.108797523494,110.0,9612.672904883877,7,6,2,3,80.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025695246519259755,5340.373836046599,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31277,0,70.0,0.0,1,400,306.0,0.0,0.0,0,77,0.0,331.081819252556,521.7913662718507,2437.0,2606.2933329708558,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,131300,2,3,4,0,2,,316.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1425.49544939404,306.0,12567.012181755077,0,5,0,1,180.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.1939203976851445,12567.012181755077,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +31279,2,82.0,0.0,1,111,400.0,850.0,0.0,86,72,0.0,0.0,682.0802173488245,1250.0,0.0,1613.7284407488207,71,0,0,0,0,0,0,0,0,0,,1,,1,131302,1,2,2,0,2,,120.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,358.611066267931,400.0,29685.03417801199,5,5,0,1,90.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04210876068068966,19790.022785341327,5,3,5,5_1,5_2,5_1_0 +31280,2,87.0,0.0,1,112,450.0,,,0,77,0.0,0.0,,534.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,1,131303,2,1,0,0,2,,450.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,104.82415980880772,450.0,12738.142619433891,0,5,0,1,60.0,6,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04192133939412056,12738.142619433891,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +31281,2,54.0,0.0,2,111,556.0,1506.0,0.0,85,63,0.0,0.0,948.091502114866,2062.0,0.0,2859.1470961973223,60,0,0,0,0,0,0,0,0,1,2.0,1,,2,131304,2,3,3,0,1,,0.0,290.0,42,1.0,3.0,5.0,2.0,1.5,2,2,298.539905488619,556.0,28217.553517861892,6,1,2,3,120.0,4,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07307508068319037,18811.70234524126,5,3,5,5_1,5_2,5_0_1 +31282,1,43.0,160.0,5,111,629.0,2190.0,0.0,85,63,0.0,0.0,1072.5711417810264,2819.0,0.0,4157.723864988138,71,0,0,0,0,0,0,0,0,0,,1,,3,131305,2,2,2,0,1,,680.0,,42,1.0,0.0,5.0,5.0,2.8,4,3,1205.32339106259,629.0,20990.415387712652,6,1,1,2,125.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13429939083769554,7496.57692418309,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +31283,2,78.0,0.0,5,112,370.0,0.0,0.0,0,71,949.2145659329414,0.0,630.9242010476627,1370.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131306,2,1,2,0,1,,307.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,2015.96376072451,370.0,13299.828608310761,0,5,0,1,90.0,8,2,5,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10300884623008737,13299.828608310761,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +31284,2,67.0,0.0,2,111,1700.0,,,0,31,0.0,0.0,,1775.0,103.91919190473907,,20,0,0,0,0,0,0,0,0,1,2.0,1,,2,131307,2,1,0,0,2,,500.0,1525.0,12,1.0,0.0,7.0,1.0,1.0,1,1,245.6124384998736,1700.0,121818.91946006924,0,1,2,3,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014570807292227077,121818.91946006924,10,5,10,10_1,10_2,10_0_1 +31285,2,60.0,0.0,5,120,400.0,605.0,0.0,78,54,0.0,0.0,682.0802173488245,1005.0,0.0,1148.5949490035723,50,0,0,0,0,0,0,0,0,2,25.0,1,,3,131308,2,1,1,0,1,,380.0,,42,1.0,1.0,6.0,2.0,1.5,2,2,1881.92592079785,400.0,48326.59244009716,5,1,0,1,112.0,0,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020796003799476232,32217.728293398108,8,4,8,8_1,8_1,8_0_0 +31286,2,60.0,0.0,2,111,1200.0,,,0,33,0.0,0.0,,1284.0,116.38949493330776,,10,0,0,0,0,0,0,0,0,0,,1,,2,131309,1,3,0,0,2,,300.0,,22,2.0,6.0,7.0,3.0,2.0,3,3,97.8871162940309,1200.0,67336.6892127745,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019068356567735905,33668.34460638725,9,5,9,9_1,9_3,9_0_1 +31288,2,49.0,0.0,7,111,580.0,693.0,0.0,0,63,0.0,0.0,989.0163151557955,1273.0,0.0,1315.6633052222737,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,131311,2,1,1,0,1,,680.0,,32,1.0,2.0,5.0,2.0,1.5,2,2,429.20188061552,580.0,28207.487884947965,0,1,1,2,115.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04512986073741421,18804.991923298643,5,3,5,5_1,5_3,5_0_0 +31289,2,39.0,0.0,2,111,600.0,0.0,0.0,34,38,1054.6828510366015,0.0,1023.1203260232367,1730.0,180.1265993015477,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,2,131312,2,1,1,0,1,,224.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1094.63386681768,600.0,78203.74081230066,1,1,1,2,115.0,9,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02212170392401342,32584.892005125275,8,4,8,8_1,8_3,8_0_1 +31290,2,63.0,0.0,9,112,855.0,0.0,0.0,43,75,0.0,0.0,1457.9464645831124,855.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,131313,2,1,1,0,1,,519.0,,42,1.0,0.0,4.0,3.0,1.8,2,2,1776.94516182159,855.0,60652.892263554946,1,5,1,2,95.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014096607236548086,33696.051257530526,9,5,9,9_1,9_0,9_0_0 +31291,1,47.0,50.0,2,111,240.0,400.0,0.0,78,67,0.0,0.0,409.2481304092947,640.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,131314,1,2,0,0,1,,440.0,320.0,42,1.0,0.0,4.0,3.0,2.0,3,2,228.929495899474,240.0,23735.439318640616,6,1,2,3,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.026963899484151375,11867.719659320308,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +31292,2,37.0,0.0,1,112,430.0,0.0,0.0,21,43,1582.0242765549024,860.8127300566456,733.2362336499863,2724.0,199.524848457099,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,131315,2,1,1,0,1,,320.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,716.131159692653,430.0,42565.67612324639,1,1,1,2,180.0,7,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06399522451171266,20269.36958249828,5,3,5,5_1,5_1,5_1_0 +31293,2,25.0,0.0,7,112,0.0,0.0,0.0,43,62,0.0,0.0,0.0,333.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,1,,5,131316,2,1,2,0,1,,155.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1508.25076720029,0.0,45469.49659704166,1,1,1,2,95.0,7,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007323591086813697,30312.997731361105,8,4,8,8_1,8_0,8_0_0 +31294,2,30.0,0.0,9,111,0.0,0.0,0.0,43,21,0.0,0.0,0.0,590.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,131317,2,1,0,0,1,,0.0,800.0,43,2.0,0.0,3.0,3.0,1.8,2,2,458.352844050958,0.0,58591.23800535455,1,1,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010069765038009283,32550.687780752527,8,4,8,8_0,8_4,8_0_0 +31295,2,57.0,0.0,9,111,600.0,,,22,34,0.0,0.0,,660.0,83.13535352379125,,12,0,0,0,0,0,0,0,0,2,60.0,1,2006.0,6,131318,2,1,0,0,2,,420.0,820.0,43,2.0,2.0,4.0,2.0,1.5,2,2,91.7593423864239,600.0,93505.71702536904,1,1,2,3,87.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007058391946461791,62337.14468357936,10,5,10,10_1,10_3,10_0_0 +31296,1,57.0,156.0,5,111,190.0,0.0,0.0,0,78,0.0,0.0,323.9881032406916,190.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,131319,1,1,0,1,2,430.0,0.0,265.0,11,0.0,0.0,3.0,1.0,1.0,1,1,342.006550648392,190.0,9812.471453997461,0,7,2,3,70.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01936311365498003,9812.471453997461,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +31297,1,39.0,273.0,7,111,600.0,,,0,47,0.0,0.0,,675.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,0,,2,,5,131320,1,1,0,0,2,,900.0,467.0,32,1.0,0.0,3.0,3.0,1.8,2,1,86.3972464263171,600.0,19733.498200792223,0,4,2,3,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03420579529953292,10963.054555995679,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +31299,2,22.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,241.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,131322,2,1,0,1,1,420.0,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,321.751223052071,0.0,15450.085839433656,0,1,2,3,60.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015598618836465584,15450.085839433656,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +31300,1,58.0,253.0,7,111,550.0,,,0,85,0.0,0.0,,790.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,5,131323,2,2,0,0,2,,350.0,389.0,11,0.0,2.0,4.0,1.0,1.0,1,1,92.43758876705668,550.0,5110.0,0,7,2,3,103.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15459882583170254,5110.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31301,2,83.0,0.0,1,120,1050.0,0.0,0.0,86,72,3251.5872297458427,0.0,1790.4605705406643,4133.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,131324,2,1,1,0,1,,744.0,,41,0.0,2.0,10.0,2.0,1.5,2,2,2327.9740549483,1050.0,75151.66379945957,6,5,0,1,360.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0549954557364001,50101.10919963971,10,5,10,10_1,10_0,10_1_0 +31302,1,38.0,236.0,1,120,1250.0,0.0,0.0,85,62,0.0,1059.4618216081792,2131.5006792150766,2270.0,304.8296295872346,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131325,1,3,4,0,1,,250.0,450.0,42,1.0,0.0,6.0,5.0,2.4,2,2,239.854675435378,1250.0,25417.704589577348,6,1,2,3,90.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08930782840755905,10590.710245657228,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +31303,2,45.0,0.0,9,211,500.0,0.0,0.0,0,42,1054.6828510366015,0.0,852.6002716860306,1510.0,13.855892253965209,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,131326,2,2,1,0,1,,200.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2021.93687731033,500.0,35964.0,0,1,2,3,70.0,2,3,7,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041986430875319766,35964.0,9,5,9,9_1,9_1,9_0_0 +31304,1,29.0,290.0,2,111,0.0,0.0,0.0,85,54,0.0,0.0,0.0,344.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,2,,2,131327,2,1,0,1,1,250.0,0.0,429.0,42,1.0,0.0,4.0,4.0,2.1,2,2,192.380262716655,0.0,26796.10109697886,7,1,2,3,78.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.012837688541143191,12760.048141418503,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +31305,2,54.0,0.0,6,111,900.0,0.0,0.0,78,54,0.0,1178.6512765390992,1534.680489034855,2110.0,443.3885521268867,0.0,50,0,0,0,0,0,0,0,0,3,75.0,1,,4,131328,2,1,2,0,2,,712.0,,42,1.0,2.0,4.0,3.0,2.0,3,3,483.399828400189,900.0,56463.34588000099,7,1,0,1,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03736937595735627,28231.672940000495,8,4,8,8_1,8_4,8_0_0 +31306,0,35.0,0.0,7,221,1553.0,825.0,0.0,85,37,0.0,0.0,2648.176443856811,2378.0,0.0,1566.2658395503258,50,0,0,0,0,0,0,0,0,0,,1,,5,131329,2,3,3,0,1,,1100.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,1552.34445285583,1553.0,34800.512864677854,6,4,0,1,160.0,1,1,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06833232628630724,16571.67279270374,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +31307,1,29.0,243.0,9,112,1644.0,0.0,0.0,81,53,0.0,0.0,2803.3496933036686,1734.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,2006.0,6,131330,2,2,1,0,1,,492.0,595.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1020.22609165857,1644.0,19891.143433498164,4,1,2,3,90.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.08717447570559544,11050.635240832313,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +31308,1,26.0,300.0,5,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,495.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,30.0,2,,3,131331,2,2,0,1,1,272.0,0.0,680.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1170.18670640568,0.0,16654.851735765158,0,1,3,4,39.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029721069142694394,16654.851735765158,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +31309,2,59.0,0.0,5,112,416.0,0.0,0.0,68,78,0.0,1059.4618216081792,709.3634260427774,1306.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131332,2,1,1,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1367.15002462465,416.0,17116.1541557892,1,5,0,1,122.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07630218728535296,11410.769437192801,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +31310,2,43.0,0.0,2,112,420.0,359.0,0.0,0,54,0.0,0.0,716.1842282162656,779.0,0.0,681.5629532103842,42,2,2,2,2,1,2,2,2,4,75.0,2,,2,131333,1,1,0,1,2,,0.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,1079.9376920221,420.0,34017.66746784739,0,1,1,2,67.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02289986521669337,17008.833733923693,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +31311,2,68.0,0.0,1,211,420.0,,,0,77,0.0,0.0,,552.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,1,131334,1,3,0,0,2,,150.0,,21,0.0,0.0,5.0,4.0,2.3,3,3,82.51568979988986,420.0,5580.548387096775,0,5,0,1,70.0,4,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09891501008688011,2426.32538569425,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +31312,2,31.0,0.0,9,221,0.0,0.0,0.0,11,46,0.0,0.0,0.0,721.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,131335,2,1,1,0,1,,275.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1946.29117386384,0.0,39474.0,1,1,1,2,100.0,1,2,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018265187211835638,21930.0,6,3,6,6_1,6_1,6_0_0 +31313,2,46.0,0.0,7,111,650.0,0.0,0.0,0,55,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,71,2,2,2,1,2,2,2,2,3,15.0,1,,5,131336,1,2,2,0,2,,0.0,850.0,32,1.0,1.0,4.0,3.0,1.8,2,1,1807.49843733422,650.0,7217.0,0,1,2,3,86.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.09006512401274767,4009.4444444444443,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +31314,2,79.0,0.0,1,221,530.0,0.0,0.0,77,75,791.0121382774512,1191.8945493092015,903.7562879871924,2180.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131337,2,3,2,0,1,,210.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,934.409897751969,530.0,31284.21791201207,5,5,0,1,80.0,1,3,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06968369821906126,20856.145274674713,5,3,5,5_1,5_1,5_1_0 +31315,2,53.0,0.0,7,111,647.0,853.0,0.0,38,38,0.0,198.6490915515336,1103.2647515617236,1650.0,0.0,1619.42395289264,12,0,0,0,0,0,0,0,0,2,45.0,1,,5,131338,2,1,2,0,1,,720.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,2764.52875144703,647.0,108943.44095669573,1,1,0,1,120.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.015145473518280588,72628.96063779715,10,5,10,10_1,10_3,10_0_0 +31316,2,73.0,0.0,6,112,660.0,0.0,0.0,78,78,3417.172437358589,0.0,1125.4323586255605,4020.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131339,2,1,2,0,2,,216.0,,41,0.0,3.0,4.0,3.0,2.0,3,3,1084.99598981448,660.0,66411.84042988687,5,5,0,1,70.0,10,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060531374736468024,33205.920214943435,8,4,8,8_1,8_0,8_0_0 +31317,1,85.0,283.0,2,111,276.0,115.0,0.0,0,77,0.0,0.0,470.6353499706889,391.0,0.0,218.32796551307572,71,0,0,0,0,0,0,0,0,0,,2,,2,131340,2,3,0,1,1,768.0,0.0,488.0,11,0.0,1.0,3.0,1.0,1.0,1,1,246.153491310745,276.0,11312.604745316388,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.034563215881990454,11312.604745316388,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +31318,2,61.0,0.0,7,120,450.0,,,45,42,0.0,0.0,,450.0,0.0,,20,0,0,0,0,0,0,0,0,2,40.0,2,,5,131341,2,1,0,0,1,,520.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,106.49906995994499,450.0,50543.44495164221,1,1,1,2,41.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008903231673870679,33695.62996776147,9,5,9,9_0,9_1,9_0_0 +31319,2,29.0,0.0,6,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1294.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,17.0,2,,4,131342,2,1,0,0,1,,178.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1772.77919436221,0.0,42316.11582732041,0,1,2,3,53.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.030579366151667425,42316.11582732041,9,5,9,9_0,9_3,9_0_0 +31320,2,84.0,0.0,2,111,922.0,55.0,0.0,0,77,1676.9457331481965,0.0,1572.1949009890404,2567.0,0.0,104.4177226366884,44,0,0,0,0,0,0,0,0,0,,1,,2,131343,2,1,2,0,1,,1230.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,1081.58079260038,922.0,36887.63861802445,0,5,0,1,240.0,9,7,7,1,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06958970799355217,36887.63861802445,9,5,9,9_1,9_3,9_0_1 +31321,2,46.0,0.0,7,211,450.0,,,0,42,0.0,0.0,,538.0,121.93185183489385,,30,0,0,0,0,0,0,0,0,2,15.0,1,,5,131344,2,1,0,0,1,,150.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,91.2140979231603,450.0,47567.13962387979,0,1,1,2,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011310329026593638,31711.42641591986,8,4,8,8_1,8_2,8_0_0 +31322,2,53.0,0.0,1,111,960.0,0.0,0.0,0,68,0.0,0.0,1636.9925216371787,1060.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,1,131345,2,2,0,0,1,,180.0,440.0,12,1.0,1.0,2.0,1.0,1.0,1,1,956.118889632415,960.0,9615.882002480048,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11023429777181268,9615.882002480048,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +31323,1,81.0,26.0,7,111,284.0,0.0,0.0,0,75,0.0,0.0,484.2769543176654,284.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,131346,2,1,2,1,2,813.0,214.0,384.0,11,0.0,1.0,3.0,1.0,1.0,1,1,78.8036995634054,284.0,13844.970635444386,0,5,2,3,60.0,8,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.020512864019583698,13844.970635444386,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +31324,1,43.0,61.0,1,111,1200.0,900.0,0.0,0,47,0.0,0.0,2046.2406520464733,2100.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,2,,1,131347,1,3,0,0,2,,0.0,580.0,32,1.0,0.0,5.0,3.0,1.8,2,1,2131.78288235131,1200.0,15543.946568563133,0,4,2,3,65.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.13510082466747195,8635.525871423963,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +31325,2,68.0,0.0,2,120,650.0,0.0,0.0,78,77,0.0,993.245457757668,1108.3803531918397,1400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,131348,2,1,3,0,1,,220.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,870.330569550532,650.0,28814.557973089944,5,5,0,1,120.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04858655132962535,19209.705315393297,5,3,5,5_1,5_0,5_0_1 +31326,2,63.0,0.0,1,111,424.0,1503.0,0.0,77,78,0.0,0.0,723.005030389754,1927.0,0.0,2853.4515840535028,71,2,2,2,2,1,2,2,2,0,,1,,1,131349,2,3,4,0,1,,310.0,306.0,41,0.0,3.0,4.0,2.0,1.5,2,2,263.80494003699,424.0,18667.495020720762,6,5,2,3,80.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.10322756201949143,12444.996680480508,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +31327,2,82.0,0.0,2,111,750.0,,,0,86,0.0,0.0,,1050.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,131350,2,1,0,0,2,,1000.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,45.05925157280177,750.0,19138.807407407407,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05486235258282667,19138.807407407407,5,3,5,5_1,5_2,5_0_1 +31328,2,60.0,0.0,6,112,710.0,0.0,0.0,0,46,0.0,1059.4618216081792,1210.6923857941633,1600.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,131351,2,1,2,0,1,,115.0,,12,1.0,3.0,8.0,1.0,1.0,1,1,829.928334234432,710.0,69742.14710264471,0,4,0,1,160.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022941651016926117,69742.14710264471,10,5,10,10_1,10_0,10_0_0 +31329,2,34.0,0.0,9,120,2000.0,0.0,0.0,56,62,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,131352,2,1,1,0,1,,560.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,344.21499208865,2000.0,45185.70691999644,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044261784009290824,25103.170511109132,7,4,7,7_1,7_0,7_0_0 +31330,0,71.0,0.0,7,111,300.0,,,0,86,0.0,0.0,,388.0,121.93185183489385,,71,2,2,2,2,1,2,2,2,0,,1,,5,131353,1,1,0,0,2,,120.0,,11,0.0,5.0,3.0,1.0,1.0,1,1,139.17425594222215,300.0,1828.1831168545323,0,6,0,1,48.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.21223256927761738,1828.1831168545323,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31331,1,27.0,321.0,8,111,0.0,,,0,81,0.0,0.0,,709.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2000.0,6,131354,2,1,0,0,2,,279.0,485.0,32,1.0,0.0,4.0,4.0,1.9,1,1,135.586196714376,0.0,10202.728813559323,0,4,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06949121288588463,5369.85727029438,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31332,2,32.0,0.0,2,111,500.0,400.0,0.0,46,46,0.0,0.0,852.6002716860306,900.0,0.0,759.4016191759156,31,0,0,0,0,0,0,0,0,2,3.0,2,,2,131355,1,3,0,0,1,,0.0,450.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1079.73129964204,500.0,49070.36190377567,1,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018341010032998154,23366.83900179794,6,3,6,6_0,6_4,6_0_1 +31333,2,62.0,0.0,2,111,430.0,200.0,0.0,0,77,0.0,0.0,733.2362336499863,630.0,0.0,379.7008095879578,50,2,1,2,2,1,2,2,2,0,,2,,2,131356,2,2,0,1,2,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,315.854993805718,430.0,28753.75956564604,0,5,0,1,54.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.02191017833899889,28753.75956564604,8,4,8,8_0,8_3,8_0_1 +31334,2,56.0,0.0,2,111,225.0,77.0,0.0,0,53,0.0,0.0,383.6701222587138,302.0,0.0,146.18481169136376,71,0,0,0,0,0,0,0,0,2,10.0,2,,2,131357,2,2,0,1,1,21.0,121.0,171.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1856.94952694282,225.0,25046.132888879125,0,1,2,3,31.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012057749647016076,25046.132888879125,7,4,7,7_0,7_3,7_0_1 +31335,2,53.0,0.0,6,112,1000.0,0.0,0.0,85,62,0.0,397.2981831030672,1705.2005433720612,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,131358,2,1,2,0,1,,350.0,,42,1.0,3.0,5.0,2.0,1.5,2,2,942.684462819164,1000.0,23754.39990170304,6,1,0,1,95.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0547267034898574,15836.26660113536,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +31336,2,67.0,0.0,1,112,300.0,0.0,0.0,0,71,3021.666368219863,0.0,511.56016301161833,3225.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131359,2,1,2,0,1,,78.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,235.25711775597,300.0,11138.259880670068,0,5,0,1,110.0,7,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2895425348798727,11138.259880670068,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +31337,1,53.0,270.0,5,111,300.0,156.0,0.0,0,78,0.0,99.3245457757668,511.56016301161833,531.0,0.0,296.1666314786071,71,2,2,2,1,2,2,2,2,0,,2,,3,131360,2,3,0,0,1,,100.0,278.0,31,0.0,0.0,2.0,2.0,1.5,2,2,329.486680093826,300.0,9311.750406826013,0,7,2,3,40.0,8,6,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.0570247243322532,6207.833604550676,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31338,1,34.0,450.0,5,111,400.0,1880.0,0.0,81,85,0.0,0.0,682.0802173488245,2280.0,0.0,3569.1876101268035,50,2,2,1,1,2,2,2,2,0,,2,,3,131361,1,1,0,1,1,1200.0,900.0,430.0,42,1.0,0.0,5.0,6.0,2.8999999999999995,3,2,86.3332331501348,400.0,16542.101494305578,4,6,2,3,75.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.1378301300342561,5704.17292907089,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +31340,2,56.0,0.0,6,221,1000.0,0.0,0.0,78,65,0.0,450.2712741834761,1705.2005433720612,1560.0,304.8296295872346,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,131363,2,1,2,0,1,,150.0,,42,1.0,1.0,5.0,2.0,1.5,2,2,1591.73509205067,1000.0,32754.287541065518,5,4,0,1,85.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04762735254259944,21836.19169404368,6,3,6,6_1,6_1,6_0_0 +31341,2,66.0,0.0,6,111,1080.0,0.0,0.0,0,77,0.0,0.0,1841.6165868418261,1080.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,4,131364,2,1,0,0,1,,150.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1443.20201974481,1080.0,26890.08516677974,0,5,1,2,70.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.040163502395085086,26890.08516677974,7,4,7,7_0,7_2,7_0_0 +31342,2,66.0,0.0,5,112,1900.0,0.0,0.0,74,74,0.0,463.51454695357836,3239.8810324069163,2250.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,131365,2,1,1,0,1,,270.0,,41,0.0,4.0,9.0,2.0,1.5,2,2,817.813585671694,1900.0,61815.67689735968,5,5,0,1,180.0,10,2,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036398533720434015,41210.45126490645,9,5,9,9_1,9_1,9_0_0 +31343,2,50.0,0.0,6,111,1000.0,0.0,0.0,85,21,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131366,2,1,2,0,1,,400.0,,42,2.0,0.0,5.0,6.0,3.3,5,4,162.422733110711,1000.0,18009.140497877066,6,1,1,2,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05552735846099268,5457.31530238699,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +31345,2,51.0,0.0,2,111,841.0,,,0,85,0.0,0.0,,1093.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,131368,2,1,0,0,2,,1200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,159.11115151539738,841.0,4929.211421475218,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.2217393222855282,4929.211421475218,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +31346,2,56.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,145.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,131369,2,1,0,1,1,303.0,0.0,328.0,32,3.0,3.0,3.0,5.0,2.5999999999999996,3,3,228.924429946998,0.0,18606.674836170634,0,4,2,3,55.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00779290234696453,7156.413398527168,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +31348,2,29.0,0.0,9,111,250.0,0.0,0.0,0,52,0.0,0.0,426.3001358430153,250.0,0.0,0.0,43,1,2,2,1,1,2,2,2,2,20.0,2,2007.0,6,131371,2,1,0,1,1,240.0,0.0,298.0,12,1.0,0.0,2.0,1.0,1.0,1,1,209.459352216235,250.0,18938.559538238216,0,1,2,3,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.013200581569851357,18938.559538238216,5,3,5,5_0,5_4,5_0_0 +31349,2,25.0,0.0,7,111,0.0,,,56,64,0.0,0.0,,263.0,0.0,,42,0,0,0,0,0,0,0,0,0,,2,,5,131372,2,2,0,0,2,,296.0,387.0,43,2.0,0.0,3.0,3.0,1.8,2,2,129.76466351532864,0.0,48147.7780188137,4,4,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005462349683036941,26748.76556600761,7,4,7,7_0,7_2,7_0_0 +31350,0,55.0,0.0,2,400,240.0,,,0,68,0.0,0.0,,328.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,131373,2,1,0,0,1,,140.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,123.53685546586802,240.0,6819.314649112526,0,4,5,0,30.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04809867514218402,6819.314649112526,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +31351,2,51.0,0.0,1,120,364.0,1622.0,0.0,0,62,0.0,0.0,620.6929977874303,1986.0,0.0,3079.373565758338,50,0,0,0,0,0,0,0,0,0,,1,,1,131374,2,2,3,0,1,,199.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,297.941470913636,364.0,26274.190181564667,0,1,0,1,160.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0755874866656587,26274.190181564667,7,4,7,7_1,7_0,7_1_0 +31352,1,65.0,72.0,7,111,1310.0,0.0,0.0,78,78,0.0,0.0,2233.8127118174,1310.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,5,131375,2,2,2,0,2,,340.0,750.0,41,0.0,1.0,4.0,2.0,1.5,2,2,902.086194356523,1310.0,25067.131729314453,5,5,2,3,95.0,7,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.05225966872261003,16711.4211528763,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +31353,2,77.0,0.0,5,111,314.0,128.0,0.0,77,78,0.0,0.0,535.4329706188272,442.0,0.0,243.008518136293,71,2,1,2,2,1,2,2,2,0,,2,,3,131376,1,2,0,1,1,339.0,0.0,246.0,41,0.0,3.0,2.0,2.0,1.5,2,2,378.196028744584,314.0,36902.741321246045,5,5,2,3,52.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.011977429973353415,24601.827547497363,7,4,7,7_0,7_2,7_0_0 +31354,2,60.0,0.0,5,111,420.0,120.0,0.0,0,74,0.0,0.0,716.1842282162656,540.0,0.0,227.8204857527747,31,0,0,0,0,0,0,0,0,0,,2,,3,131377,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1077.18307085734,420.0,30673.904031260696,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0176045409625612,30673.904031260696,8,4,8,8_0,8_4,8_0_0 +31356,2,71.0,0.0,2,111,1200.0,0.0,0.0,75,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,131379,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,233.203968530282,1200.0,90981.44050899819,5,5,0,1,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013189503191931967,60654.29367266546,10,5,10,10_0,10_4,10_0_1 +31357,1,62.0,74.0,1,111,1215.0,0.0,0.0,0,75,0.0,0.0,2071.818660197054,1215.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,131380,2,2,0,0,1,,0.0,367.0,11,0.0,0.0,3.0,1.0,1.0,1,1,780.547153465965,1215.0,20215.724835972058,0,5,2,3,57.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06010172822683148,20215.724835972058,5,3,5,5_0,5_4,5_1_0 +31358,2,65.0,0.0,1,112,1300.0,0.0,0.0,77,74,0.0,132.4327277010224,2216.7607063836795,1400.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,131381,2,1,2,0,1,,157.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1619.17698452536,1300.0,44905.22944339385,7,5,0,1,100.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031176769773881167,29936.819628929235,8,4,8,8_1,8_0,8_1_0 +31359,2,48.0,0.0,2,111,508.0,869.0,0.0,55,48,0.0,0.0,866.2418760330071,1377.0,0.0,1649.8000176596765,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,131382,2,1,2,0,1,,302.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,894.67294704468,508.0,66831.49690849788,1,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020604057423482747,44554.33127233192,10,5,10,10_1,10_4,10_0_1 +31361,2,63.0,0.0,9,111,526.0,,,0,86,0.0,0.0,,526.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,2010.0,6,131384,1,3,0,0,2,,238.0,495.0,11,0.0,2.0,1.0,1.0,1.0,1,1,100.2701961377371,526.0,25216.189099417454,0,5,2,3,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020859615143517134,25216.189099417454,7,4,7,7_0,7_2,7_0_0 +31362,1,26.0,250.0,5,111,0.0,0.0,0.0,84,54,0.0,0.0,0.0,474.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,10.0,2,,3,131385,1,1,0,1,1,560.0,354.0,620.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1866.03861846536,0.0,10477.749821575526,3,1,2,3,62.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04523872091543461,6985.166547717017,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +31363,1,74.0,179.0,1,112,500.0,0.0,0.0,0,90,0.0,1589.1927324122687,852.6002716860306,1880.0,249.40606057137379,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,131386,2,3,4,0,1,,330.0,360.0,21,0.0,6.0,5.0,2.0,1.5,2,2,725.826478350575,500.0,12404.789210262996,0,5,2,3,83.0,8,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.15155436889202423,8269.859473508664,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +31364,2,42.0,0.0,8,300,820.0,0.0,0.0,67,62,2214.833987176863,0.0,1398.2644455650902,2920.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,131387,2,1,2,0,1,,281.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1191.74778406187,820.0,49001.4790227407,1,1,1,2,194.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05959003806078753,19600.59160909628,5,3,5,5_1,5_0,5_0_0 +31365,2,38.0,0.0,5,111,3000.0,0.0,0.0,52,37,0.0,0.0,5115.6016301161835,3030.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,131388,2,2,1,0,1,,500.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1462.20504342133,3000.0,78653.70946841234,1,1,1,2,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03852329433002598,43696.50526022908,10,5,10,10_1,10_3,10_0_0 +31366,1,24.0,389.0,5,111,300.0,150.0,0.0,0,52,0.0,0.0,511.56016301161833,450.0,0.0,284.77560719096834,50,0,0,0,0,0,0,0,0,0,,2,,3,131389,2,1,0,1,1,380.0,0.0,375.0,22,3.0,0.0,3.0,5.0,3.0,5,5,578.333590858039,300.0,31265.760494233647,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.014392741225117285,10421.92016474455,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +31367,2,37.0,0.0,9,112,200.0,400.0,0.0,45,37,0.0,0.0,341.04010867441224,600.0,0.0,759.4016191759156,20,0,0,0,0,0,0,0,0,0,,1,2007.0,6,131390,2,1,1,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1821.05745832899,200.0,53088.70067460801,1,1,1,2,92.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.011301839984322243,25280.33365457524,7,4,7,7_1,7_1,7_0_0 +31368,2,42.0,0.0,9,111,1400.0,0.0,0.0,52,47,0.0,0.0,2387.2807607208856,1458.0,80.36417507299822,0.0,20,0,0,0,0,0,0,0,0,0,,1,2011.0,6,131391,2,1,1,0,1,,650.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,522.053363535437,1400.0,41522.620870252664,1,1,1,2,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03511339047108488,19772.67660488222,5,3,5,5_1,5_4,5_0_0 +31369,2,41.0,0.0,1,120,540.0,0.0,0.0,67,64,0.0,0.0,920.8082934209131,568.0,38.79649831110259,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131392,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1016.55340262569,540.0,38057.529020159855,4,4,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014924773484350987,16546.75174789559,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +31370,2,54.0,0.0,1,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,2821.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131393,2,1,3,0,1,,269.0,,42,2.0,0.0,6.0,4.0,2.5,4,3,245.822888609229,0.0,17067.23240934691,6,4,0,1,120.0,7,6,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16528748963745712,6826.892963738765,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +31371,0,78.0,0.0,2,211,0.0,,,0,86,0.0,0.0,,327.0,0.0,,10,0,0,0,0,0,0,0,0,0,,1,,2,131394,2,1,0,0,2,,198.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,132.0035385337122,0.0,51322.126964126604,0,5,5,0,120.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0063715208106742745,51322.126964126604,10,5,10,10_1,10_2,10_0_1 +31372,2,90.0,0.0,2,111,300.0,0.0,0.0,0,78,0.0,0.0,511.56016301161833,589.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,131395,1,2,0,1,1,,98.0,502.0,11,0.0,0.0,3.0,1.0,1.0,1,1,122.082685728616,300.0,20015.561207306717,0,5,2,3,70.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.02942710393676019,20015.561207306717,5,3,5,5_0,5_3,5_0_1 +31373,2,39.0,0.0,2,111,2001.0,0.0,0.0,54,37,0.0,794.5963662061343,3412.1062872874945,2781.0,249.40606057137379,0.0,31,2,2,1,2,2,2,2,1,2,15.0,1,,2,131396,2,2,3,0,1,,617.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,632.428383833971,2001.0,90688.85360576883,1,1,1,2,121.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.030665290048644933,43185.16838369944,9,5,9,9_1,9_4,9_0_1 +31374,2,53.0,0.0,9,111,650.0,0.0,0.0,0,52,0.0,0.0,1108.3803531918397,955.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,131397,2,1,0,0,1,,0.0,,32,2.0,0.0,4.0,3.0,2.0,3,3,582.358515685566,650.0,33233.86572202582,0,1,1,2,79.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.028735748287237968,16616.93286101291,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +31375,2,25.0,0.0,1,111,400.0,800.0,0.0,56,48,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,43,2,2,2,2,2,1,1,2,2,3.0,2,,1,131398,1,3,0,0,2,,0.0,530.0,43,2.0,0.0,4.0,2.0,1.5,2,2,298.598574354999,400.0,34239.27223226952,1,1,2,3,70.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.035047473902469074,22826.181488179678,6,3,6,6_0,6_2,6_1_0 +31376,0,73.0,0.0,2,111,800.0,0.0,0.0,75,74,0.0,397.2981831030672,1364.160434697649,1360.0,360.2531986030954,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,131399,2,2,2,0,1,,171.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1135.56355197027,800.0,58276.1253291515,5,5,0,1,100.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023337172681240123,38850.75021943433,9,5,9,9_1,9_2,9_0_1 +31377,2,56.0,0.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,726.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131400,2,1,0,0,1,,92.0,250.0,12,1.0,2.0,2.0,1.0,1.0,1,1,931.664625084156,0.0,19192.31904208714,0,4,2,3,55.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03782763294044576,19192.31904208714,5,3,5,5_0,5_2,5_0_1 +31378,1,50.0,500.0,7,111,650.0,,,71,85,0.0,0.0,,1154.0,698.3369695998466,,71,0,0,0,0,0,0,0,0,0,,2,,5,131401,2,3,0,0,2,,1135.0,514.0,41,2.0,1.0,4.0,10.0,5.1,8,6,72.04833701020443,650.0,39048.2084653672,5,6,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029553212435431207,7656.51146379749,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +31379,1,24.0,374.0,2,111,204.0,0.0,0.0,0,81,0.0,0.0,347.86091084790047,204.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,131402,2,2,0,1,1,588.0,0.0,329.0,32,1.0,0.0,4.0,3.0,1.6,1,1,346.34072439887,204.0,12624.194524680184,0,4,2,3,87.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.016159446814700287,7890.121577925115,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +31380,0,34.0,0.0,9,111,800.0,,,81,63,0.0,0.0,,800.0,0.0,,60,0,0,0,0,0,0,0,0,0,,7,2006.0,6,131403,2,2,0,0,2,,0.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,49.52637245976868,800.0,13350.884690167026,4,4,5,0,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059921122724489025,8900.589793444684,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31381,2,64.0,0.0,6,112,2000.0,0.0,0.0,0,74,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,2,2,2,1,2,2,2,2,0,,1,,4,131404,2,2,2,0,1,,300.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1540.01519010698,2000.0,40351.56304629213,0,5,0,1,100.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.0495643749340158,40351.56304629213,9,5,9,9_1,9_0,9_0_0 +31382,1,40.0,410.0,9,111,740.0,1500.0,0.0,85,67,0.0,0.0,1261.8484020953254,2702.0,640.1422221331927,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,131405,2,1,1,0,1,,730.0,443.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,3,3,610.908199167866,740.0,48437.0,6,4,2,3,102.0,7,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05578380163924273,15136.562500000004,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +31383,2,43.0,0.0,7,120,629.0,1517.0,0.0,52,48,0.0,0.0,1072.5711417810264,2146.0,0.0,2880.03064072466,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,131406,2,1,1,0,1,,280.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1519.99583836612,629.0,47795.59522119791,1,1,1,2,120.0,0,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04489953498995706,22759.807248189478,6,3,6,6_1,6_1,6_0_0 +31384,0,66.0,0.0,2,111,450.0,,,0,77,0.0,0.0,,726.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,2,131407,2,1,0,0,2,,154.0,,21,0.0,3.0,4.0,3.0,2.0,3,3,96.35416435595847,450.0,7070.108800849286,0,5,5,0,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10268583135704933,3535.054400424643,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +31385,2,39.0,0.0,6,111,290.0,0.0,0.0,0,54,0.0,0.0,494.50815757789775,290.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,20.0,2,,4,131408,1,3,0,0,1,,55.0,405.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1173.36239576539,290.0,31945.457562796415,0,1,2,3,30.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.009077972961568505,31945.457562796415,8,4,8,8_0,8_2,8_0_0 +31386,2,59.0,0.0,8,112,1100.0,1200.0,0.0,56,45,0.0,397.2981831030672,1875.7205977092674,2600.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,3,45.0,1,2000.0,6,131409,2,1,1,0,1,,400.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1967.35600832321,1100.0,47457.129029155956,1,1,1,2,135.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05478628929286163,31638.086019437305,8,4,8,8_1,8_1,8_0_0 +31387,1,50.0,319.0,2,111,467.0,257.0,0.0,0,68,0.0,0.0,796.3286537547526,724.0,0.0,487.9155403205258,71,2,1,2,2,2,2,2,1,2,25.0,2,,2,131410,2,2,0,0,1,,398.0,296.0,32,1.0,0.0,4.0,3.0,1.8,2,2,420.819392254432,467.0,14412.800729750372,0,1,2,3,75.0,8,6,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05023312356671566,8007.111516527984,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31388,2,51.0,0.0,9,112,450.0,,,0,37,0.0,0.0,,472.0,30.482962958723462,,30,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,131411,2,1,0,0,2,,110.0,800.0,12,1.0,1.0,4.0,1.0,1.0,1,1,106.50880342265775,450.0,43137.19143090113,0,1,2,3,100.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010941834281354835,43137.19143090113,9,5,9,9_1,9_1,9_0_0 +31389,2,40.0,0.0,5,111,500.0,0.0,0.0,0,52,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,131412,2,1,0,1,1,,160.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,306.064099671046,500.0,16861.764983239817,0,1,1,2,105.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02965288630798661,12970.588448646013,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +31390,1,22.0,275.0,5,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,158.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,13.0,2,,3,131413,1,3,0,1,1,1056.0,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1464.45192398402,0.0,13756.802523754439,0,2,2,3,32.0,8,6,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01148522701602897,13756.802523754439,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +31391,2,83.0,0.0,2,211,308.0,1170.0,0.0,86,72,0.0,0.0,525.2017673585948,1478.0,0.0,2221.249736089553,71,0,0,0,0,0,0,0,0,0,,1,,2,131414,2,1,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1126.84753242014,308.0,15106.987725491937,5,5,0,1,110.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.09783552001607726,10071.325150327959,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +31392,2,37.0,0.0,8,120,1870.0,0.0,0.0,64,37,0.0,397.2981831030672,3188.7250161057545,2170.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,60.0,1,1999.0,6,131415,2,1,1,0,1,,500.0,,43,2.0,0.0,4.0,3.0,2.0,3,2,217.358080024023,1870.0,65988.14075577019,1,1,1,2,100.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03288469678258436,32994.070377885095,8,4,8,8_1,8_0,8_0_0 +31393,2,38.0,0.0,2,111,650.0,1380.0,0.0,85,33,0.0,0.0,1108.3803531918397,2030.0,0.0,2619.935586156909,30,0,0,0,0,0,0,0,0,3,130.0,1,,2,131416,2,1,2,0,1,,600.0,,42,1.0,0.0,6.0,5.0,2.4,2,2,254.347810666997,650.0,37368.050117152496,6,1,1,2,100.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054324482910822244,15570.020882146873,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +31394,2,47.0,0.0,2,111,1000.0,0.0,0.0,0,55,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,1,20.0,2,,2,131417,2,2,0,0,1,,280.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,1839.78203100497,1000.0,18991.57409653459,0,1,1,2,60.0,9,7,7,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.052654929755531474,18991.57409653459,5,3,5,5_0,5_3,5_0_1 +31395,2,73.0,0.0,7,111,300.0,,,0,86,0.0,0.0,,420.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,131418,2,3,0,0,2,,400.0,,31,1.0,1.0,5.0,2.0,1.5,2,2,98.8420305767972,300.0,11313.065025662745,0,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037125217529225284,7542.04335044183,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31396,2,44.0,0.0,2,300,0.0,0.0,0.0,0,62,0.0,0.0,0.0,60.0,83.13535352379125,0.0,71,2,2,1,1,2,2,2,2,2,20.0,1,,2,131419,2,1,1,0,1,,0.0,460.0,12,1.0,0.0,4.0,1.0,1.0,1,1,898.411819650455,0.0,20114.414397960667,0,1,2,3,80.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0.0029829354617494207,20114.414397960667,5,3,5,5_1,5_0,5_0_1 +31397,2,82.0,0.0,5,111,200.0,50.0,0.0,0,78,0.0,0.0,341.04010867441224,250.0,0.0,94.92520239698945,71,0,0,0,0,0,0,0,0,0,,2,,3,131420,2,1,0,1,1,,0.0,361.0,11,0.0,5.0,3.0,1.0,1.0,1,1,369.296538131556,200.0,15505.364210506128,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016123452284378136,15505.364210506128,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +31398,2,56.0,0.0,1,111,780.0,1200.0,0.0,65,37,0.0,0.0,1330.0564238302077,1980.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,131421,2,1,1,0,1,,360.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,688.5671150742,780.0,93308.76178475832,1,1,1,2,138.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.021219872197719234,62205.84118983888,10,5,10,10_1,10_4,10_1_0 +31399,2,56.0,0.0,6,120,539.0,0.0,0.0,56,63,1476.555991451242,0.0,919.1030928775409,2029.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,131422,2,1,2,0,1,,109.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,271.747215738039,539.0,36008.844154260536,1,1,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05634726822410184,24005.896102840357,6,3,6,6_1,6_0,6_0_0 +31400,2,92.0,0.0,2,111,288.0,,,0,78,0.0,0.0,,428.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,2,131423,2,3,0,0,2,,200.0,,21,0.0,0.0,4.0,2.0,1.5,2,2,91.72557913629932,288.0,5110.0,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0837573385518591,3406.6666666666665,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +31401,2,74.0,0.0,2,112,500.0,0.0,0.0,0,78,1792.9608467622227,0.0,852.6002716860306,2300.0,138.5589225396521,0.0,70,2,2,2,2,2,2,2,1,0,,1,,2,131424,2,1,2,0,1,,120.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,508.230903472201,500.0,16891.097617034087,0,5,0,1,120.0,8,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.13616640269016797,16891.097617034087,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +31402,1,79.0,133.0,1,111,330.0,,,0,78,0.0,0.0,,396.0,91.44888887617039,,70,0,0,0,0,0,0,0,0,0,,1,,1,131425,2,2,0,0,2,,408.0,600.0,11,0.0,1.0,4.0,1.0,1.0,1,1,131.2513888908937,330.0,12483.349380069289,0,5,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03172225561773086,12483.349380069289,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +31403,2,77.0,0.0,2,111,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131426,2,1,0,0,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1878.21555290419,500.0,37405.991291920356,0,5,0,1,57.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013366842656245801,37405.991291920356,9,5,9,9_0,9_3,9_0_1 +31404,2,56.0,0.0,5,111,696.0,,,78,55,0.0,0.0,,972.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,2,60.0,1,,3,131427,1,2,0,0,2,,314.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,99.44882926642907,696.0,18247.03870380218,7,1,0,1,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05326891753660072,12164.692469201453,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +31405,2,76.0,0.0,6,111,2130.0,0.0,0.0,86,77,0.0,0.0,3632.0771573824904,2330.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,131428,2,1,2,0,1,,160.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1387.30864778045,2130.0,19407.09690454872,6,5,0,1,84.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12005917275828536,12938.06460303248,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +31406,2,82.0,0.0,2,111,192.0,0.0,0.0,0,75,0.0,0.0,327.3985043274357,192.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131429,2,1,0,1,1,,0.0,,11,0.0,3.0,2.0,1.0,1.0,1,1,710.67840981489,192.0,32805.08478228035,0,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0058527512205580005,32805.08478228035,8,4,8,8_0,8_4,8_0_1 +31407,2,58.0,0.0,6,111,500.0,,,56,68,0.0,132.4327277010224,,1128.0,731.5911110093631,,71,2,2,2,2,1,2,2,2,0,,1,,4,131430,2,3,0,0,1,,500.0,,43,2.0,6.0,6.0,2.0,1.5,2,2,116.27759040806794,500.0,31219.624794210966,4,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03613111968626748,20813.083196140644,5,3,5,5_1,5_2,5_0_0 +31408,2,52.0,0.0,5,120,0.0,0.0,0.0,0,67,0.0,0.0,0.0,861.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,8,,3,131431,2,1,0,0,1,,166.0,350.0,12,1.0,3.0,2.0,1.0,1.0,1,1,786.428616916681,0.0,16813.561936798316,0,1,2,3,55.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05120866139111234,16813.561936798316,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +31409,2,67.0,0.0,2,111,462.0,833.0,0.0,78,78,0.0,0.0,787.8026510378922,1295.0,0.0,1581.4538719338443,70,0,0,0,0,0,0,0,0,0,,1,,2,131432,2,2,1,0,1,,642.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,353.066947363962,462.0,33492.32628146498,5,5,0,1,100.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.038665573394842605,16746.16314073249,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +31410,2,57.0,0.0,6,211,1100.0,0.0,0.0,0,78,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131433,2,1,2,0,1,,120.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1895.49386068233,1100.0,9623.720341211829,0,7,0,1,80.0,2,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1143009107703858,9623.720341211829,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +31411,2,55.0,0.0,1,111,800.0,3000.0,0.0,43,38,0.0,132.4327277010224,1364.160434697649,3900.0,0.0,5695.512143819367,10,0,0,0,0,0,0,0,0,2,50.0,1,,1,131434,2,2,2,0,1,,450.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,351.142074172786,800.0,117346.37265948742,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03323494294380037,51020.1620258641,10,5,10,10_1,10_4,10_1_0 +31412,2,87.0,0.0,1,111,750.0,2200.0,0.0,77,75,0.0,0.0,1278.9004075290459,2950.0,0.0,4176.708905467536,70,0,0,0,0,0,0,0,0,0,,1,,1,131435,2,1,2,0,1,,340.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,505.606705720224,750.0,35918.426715584195,5,5,0,1,64.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0821305460664863,23945.617810389464,6,3,6,6_1,6_4,6_1_0 +31413,2,52.0,0.0,7,221,0.0,0.0,2000.0,52,48,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,31,0,0,0,0,0,0,0,0,2,45.0,1,,5,131436,2,2,3,0,1,,331.0,425.0,43,2.0,0.0,4.0,4.0,2.5,4,4,2187.76034270145,0.0,41650.337456562615,1,1,2,3,181.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04801881862507865,16660.134982625044,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +31414,2,62.0,0.0,6,112,480.0,0.0,0.0,77,74,1687.4925616585624,0.0,818.4962608185893,2140.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131437,2,1,2,0,1,,600.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,890.494326352284,480.0,40448.45147335488,5,5,0,1,110.0,10,0,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05290684617208917,26965.634315569918,7,4,7,7_1,7_0,7_0_0 +31415,2,95.0,0.0,5,111,317.0,949.0,0.0,0,78,0.0,0.0,540.5485722489434,1266.0,0.0,1801.6803414948597,70,0,0,0,0,0,0,0,0,0,,1,,3,131438,2,1,2,0,1,,149.0,272.0,11,0.0,0.0,2.0,1.0,1.0,1,1,343.180088671246,317.0,16834.65304149226,0,5,2,3,38.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07520202506577937,16834.65304149226,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +31416,2,70.0,0.0,6,120,200.0,,,0,78,0.0,0.0,,244.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,4,131439,1,2,0,0,2,,156.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,105.46822428093596,200.0,10704.319613615022,0,5,0,1,48.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022794536113220302,10704.319613615022,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31417,2,25.0,0.0,2,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,405.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,5.0,2,,2,131440,2,2,0,0,1,,0.0,337.0,43,2.0,0.0,3.0,2.0,1.5,2,2,414.624567980203,0.0,31604.26080222523,4,1,2,3,70.0,9,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01281472781579768,21069.507201483488,5,3,5,5_0,5_3,5_0_1 +31418,2,62.0,0.0,1,120,442.0,0.0,0.0,77,74,0.0,0.0,753.6986401704511,570.0,177.35542085075468,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,131441,2,1,2,0,1,,496.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,816.858161890522,442.0,37481.754617706276,5,5,0,1,80.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.015207399061588585,24987.836411804183,7,4,7,7_1,7_0,7_1_0 +31419,2,43.0,0.0,6,111,720.0,0.0,0.0,43,37,0.0,397.2981831030672,1227.744391227884,1110.0,124.70303028568689,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,4,131442,2,2,5,0,1,,600.0,858.0,43,2.0,0.0,3.0,4.0,2.1,3,2,1294.29330225118,720.0,48660.25138425992,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022811226173793473,23171.54827821901,6,3,6,6_1,6_3,6_0_0 +31420,0,88.0,0.0,2,111,1650.0,0.0,0.0,0,77,914.4100318487335,0.0,2813.5808965639008,2517.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131443,2,2,3,0,2,,760.0,,21,1.0,1.0,3.0,2.0,1.5,2,2,1095.14115830274,1650.0,46607.32213668859,0,5,0,1,100.0,6,5,9,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05400438996727201,31071.54809112573,8,4,8,8_1,8_2,8_0_1 +31421,1,35.0,127.0,1,221,0.0,0.0,0.0,0,56,0.0,0.0,0.0,1265.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,1,131444,2,2,0,0,1,,66.0,266.0,12,1.0,0.0,2.0,1.0,1.0,1,1,3625.27247672117,0.0,11674.487518671185,0,4,2,3,38.0,1,3,2,0,0,0,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.10835593408077795,11674.487518671185,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +31422,2,29.0,0.0,2,111,0.0,0.0,0.0,64,56,0.0,0.0,0.0,192.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,20.0,2,,2,131445,2,1,0,1,1,777.0,1603.0,315.0,43,2.0,0.0,3.0,3.0,1.8,2,2,196.853925086212,0.0,32143.807932269065,1,1,2,3,64.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005973156646672587,17857.671073482812,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +31423,2,61.0,0.0,8,111,650.0,0.0,0.0,85,37,0.0,0.0,1108.3803531918397,650.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,2000.0,6,131446,2,1,0,0,1,,0.0,750.0,42,1.0,2.0,2.0,2.0,1.5,2,2,949.416822443866,650.0,88674.54944890892,6,4,2,3,54.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007330175388988095,59116.36629927261,10,5,10,10_0,10_4,10_0_0 +31424,2,56.0,0.0,8,111,314.0,660.0,0.0,68,52,0.0,119.18945493092015,535.4329706188272,1064.0,0.0,1253.0126716402608,71,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,131447,2,1,1,0,1,,1200.0,,43,2.0,4.0,7.0,2.0,1.5,2,2,757.238042390064,314.0,34191.27219236566,1,1,1,2,120.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03111905266390098,22794.181461577104,6,3,6,6_1,6_2,6_0_0 +31425,0,43.0,0.0,8,111,700.0,,,54,43,0.0,0.0,,763.0,87.29212119998083,,10,0,0,0,0,0,0,0,0,0,,1,1999.0,6,131448,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,90.20868525639331,700.0,53717.57634021406,4,4,5,0,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01420391707860436,29843.097966785586,8,4,8,8_1,8_3,8_0_0 +31426,2,76.0,0.0,5,112,1330.0,0.0,0.0,78,78,0.0,0.0,2267.9167226848413,1475.0,200.91043768249554,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,131449,2,1,2,0,1,,174.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1005.06090344709,1330.0,30989.385726688917,5,5,0,1,92.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047596942159769534,20659.590484459277,5,3,5,5_1,5_0,5_0_0 +31427,2,77.0,0.0,5,112,450.0,1200.0,0.0,77,78,0.0,0.0,767.3402445174275,1650.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,3,131450,2,1,2,0,1,,400.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,112.324971052959,450.0,20094.713973038855,5,5,0,1,90.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08211114635489764,13396.475982025904,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +31428,2,58.0,0.0,6,111,660.0,,,85,62,0.0,0.0,,918.0,357.4820201523024,,50,0,0,0,0,0,0,0,0,0,,1,,4,131451,2,1,0,0,2,,400.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,123.69323052664079,660.0,86833.5121647424,6,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010571955194652852,43416.7560823712,10,5,10,10_1,10_2,10_0_0 +31429,2,36.0,0.0,9,112,1200.0,0.0,0.0,64,56,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,131452,2,1,1,0,1,,347.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1611.69482366829,1200.0,39941.43584967223,1,1,1,2,95.0,6,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0300439875150319,19019.731356986773,5,3,5,5_1,5_0,5_0_0 +31430,1,90.0,111.0,2,211,200.0,80.0,0.0,0,77,0.0,0.0,341.04010867441224,280.0,0.0,151.8803238351831,71,2,2,2,1,2,2,2,2,0,,2,,2,131453,1,1,0,1,2,915.0,160.0,327.0,11,0.0,6.0,4.0,1.0,1.0,1,1,3229.32270318755,200.0,14527.704634844862,0,5,2,3,70.0,2,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.01927351959843793,14527.704634844862,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +31431,2,68.0,0.0,5,112,1400.0,30.0,0.0,0,86,0.0,0.0,2387.2807607208856,1430.0,0.0,56.95512143819367,70,0,0,0,0,0,0,0,0,0,,1,,3,131454,1,2,1,0,1,,120.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1035.54810866161,1400.0,23724.171717233905,0,5,0,1,146.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06027607694987336,23724.171717233905,6,3,6,6_1,6_0,6_0_0 +31432,1,63.0,254.0,5,211,420.0,,,0,77,0.0,0.0,,420.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,3,131455,2,2,0,0,2,,600.0,140.0,11,0.0,2.0,3.0,1.0,1.0,1,1,100.93714871283262,420.0,6573.323218900845,0,7,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06389462164165877,6573.323218900845,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31433,1,35.0,127.0,9,111,1100.0,0.0,0.0,56,21,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,2010.0,6,131456,2,1,1,0,1,,485.0,522.0,43,2.0,0.0,4.0,3.0,2.0,3,2,1353.4515816857,1100.0,25925.372180126975,1,1,2,3,97.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,1,0.042429477669879014,12962.686090063487,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +31434,2,47.0,0.0,1,111,300.0,0.0,0.0,0,52,0.0,0.0,511.56016301161833,400.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,131457,2,1,0,0,1,,0.0,308.0,32,2.0,1.0,3.0,2.0,1.5,2,2,1794.43487340705,300.0,28551.59639484359,0,1,2,3,70.0,6,4,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014009724516568184,19034.397596562394,5,3,5,5_0,5_2,5_1_0 +31435,2,47.0,0.0,7,111,324.0,1866.0,0.0,0,34,0.0,0.0,552.4849760525478,2190.0,0.0,3542.6085534556464,20,0,0,0,0,0,0,0,0,1,15.0,1,,5,131458,2,2,2,0,1,,102.0,,32,2.0,0.0,5.0,3.0,2.0,3,2,542.762482417999,324.0,34491.762775530435,0,1,0,1,97.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0634934205668855,17245.881387765217,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +31436,2,55.0,0.0,1,111,320.0,1869.0,0.0,31,38,0.0,0.0,545.6641738790596,2189.0,0.0,3548.3040655994655,12,0,0,0,0,0,0,0,0,3,75.0,1,,1,131459,2,1,1,0,1,,272.0,,43,2.0,3.0,8.0,3.0,2.0,3,3,858.046313093475,320.0,112106.85419036838,1,1,0,1,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.019526013960599272,56053.42709518419,10,5,10,10_1,10_4,10_1_0 +31437,2,76.0,0.0,1,112,2000.0,0.0,0.0,11,74,0.0,0.0,3410.4010867441225,2090.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131460,1,1,3,0,1,,190.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,846.686958656861,2000.0,57494.804542802376,5,5,0,1,115.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03635111061981411,38329.86969520158,9,5,9,9_1,9_1,9_1_0 +31438,2,74.0,0.0,2,111,214.0,108.0,0.0,0,74,0.0,0.0,364.9129162816211,322.0,0.0,205.0384371774972,50,0,0,0,0,0,0,0,0,0,,2,,2,131461,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,758.763914738222,214.0,23301.06503792122,0,5,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01381911082072697,23301.06503792122,6,3,6,6_0,6_4,6_0_1 +31439,2,38.0,0.0,5,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,647.0,0.0,0.0,71,2,2,1,2,2,1,1,2,0,,2,,3,131462,1,3,0,0,1,,0.0,262.0,12,1.0,0.0,3.0,1.0,1.0,1,1,290.332448899981,0.0,20911.504091801507,0,1,2,3,60.0,7,5,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.030939907390672133,20911.504091801507,5,3,5,5_0,5_2,5_0_0 +31440,0,70.0,0.0,5,111,200.0,,,0,78,0.0,0.0,,275.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,0,,1,,3,131463,2,2,0,0,2,,140.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,67.76637040380425,200.0,14564.90776474899,0,5,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01888099838610542,14564.90776474899,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +31441,1,52.0,308.0,2,111,280.0,120.0,0.0,0,56,0.0,0.0,477.4561521441771,400.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,131464,2,1,0,1,1,1270.0,0.0,291.0,32,1.0,0.0,3.0,2.0,1.5,2,2,301.232409455095,280.0,6423.788279773156,0,4,2,3,68.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.062268552850581374,4282.525519848771,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31442,0,54.0,0.0,2,111,762.0,,,0,55,0.0,0.0,,834.0,99.7624242285495,,44,0,0,0,0,0,0,0,0,2,20.0,1,,2,131465,2,2,0,0,2,,360.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,128.65370689465752,762.0,19332.205390120995,0,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.043140447929763084,12888.13692674733,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +31443,2,33.0,0.0,2,111,310.0,0.0,0.0,42,43,0.0,0.0,528.612168445339,310.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,1.0,2,,2,131466,1,3,0,1,1,430.0,480.0,240.0,43,2.0,0.0,4.0,4.0,2.1,2,2,242.790197179976,310.0,30500.58627817907,1,1,2,3,71.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01016373905644503,14524.088703894795,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +31445,2,62.0,0.0,2,111,385.0,0.0,0.0,0,77,0.0,0.0,656.5022091982436,688.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131468,2,1,0,1,1,900.0,0.0,316.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1096.31234620081,385.0,23663.99917195663,0,5,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029073699462233097,23663.99917195663,6,3,6,6_0,6_4,6_0_1 +31446,0,41.0,0.0,1,300,203.0,,,0,63,0.0,0.0,,341.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,1,131469,1,2,0,0,2,,474.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,108.40386073556485,203.0,7263.0,0,4,5,0,50.0,0,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04695029602092799,7263.0,1,1,1_0,1_1_0,1_1_0,1_1_0_0 +31447,2,45.0,0.0,6,111,450.0,0.0,0.0,46,45,0.0,0.0,767.3402445174275,450.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,5.0,2,,4,131470,1,2,0,1,1,1178.0,0.0,537.0,43,2.0,0.0,6.0,2.0,1.5,2,2,2007.08588233425,450.0,27675.081076831346,1,1,2,3,90.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01626011496590429,18450.054051220897,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +31448,0,56.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,694.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,30.0,2,,2,131471,2,2,0,0,1,,168.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,565.217476200891,0.0,11913.263858113656,0,1,5,0,90.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,1,0,0,0,0.058254396802211665,11913.263858113656,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +31449,2,71.0,0.0,1,120,1000.0,0.0,0.0,75,74,0.0,437.0280014133739,1705.2005433720612,1396.0,91.44888887617039,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131472,2,1,1,0,1,,357.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1614.80119719989,1000.0,48820.34858233219,5,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02859463401097477,32546.899054888127,8,4,8,8_1,8_0,8_1_0 +31450,2,63.0,0.0,2,111,900.0,600.0,0.0,0,78,0.0,0.0,1534.680489034855,1500.0,0.0,1139.1024287638734,71,2,2,2,2,2,2,2,1,0,,2,,2,131473,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,453.738841666645,900.0,9856.833868028869,0,5,0,1,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.15217868334631515,9856.833868028869,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +31451,2,75.0,0.0,1,111,321.0,1238.0,0.0,0,78,0.0,0.0,547.3693744224316,1559.0,0.0,2350.348011349459,50,0,0,0,0,0,0,0,0,0,,1,,1,131474,2,1,1,0,1,,273.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1494.32684418765,321.0,20352.982207022535,0,5,0,1,62.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0765981114778397,20352.982207022535,5,3,5,5_1,5_2,5_1_0 +31452,2,63.0,0.0,6,120,280.0,0.0,0.0,77,56,0.0,662.163638505112,477.4561521441771,780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131475,2,2,2,0,2,,180.0,,42,1.0,0.0,5.0,2.0,1.5,2,2,973.394372442468,280.0,55531.07894717854,5,1,0,1,200.0,0,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.014046188454972039,37020.719298119024,9,5,9,9_1,9_1,9_0_0 +31453,2,78.0,0.0,2,111,480.0,540.0,0.0,78,78,0.0,0.0,818.4962608185893,1020.0,0.0,1025.192185887486,71,1,2,2,2,1,2,2,2,0,,2,,2,131476,2,1,0,1,1,730.0,179.0,364.0,41,1.0,5.0,4.0,3.0,2.0,3,3,288.38865287236,480.0,37989.789076760906,5,5,2,3,120.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.0268493199038042,18994.894538380453,5,3,5,5_0,5_3,5_0_1 +31454,2,45.0,0.0,9,111,0.0,0.0,0.0,46,53,0.0,0.0,0.0,2423.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,131477,2,1,1,0,1,,442.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,1066.17621456101,0.0,42804.529425821405,1,1,1,2,100.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05660615903274828,20383.109250391146,5,3,5,5_1,5_4,5_0_0 +31455,1,53.0,249.0,1,111,700.0,0.0,0.0,0,56,0.0,0.0,1193.6403803604428,736.0,49.88121211427475,0.0,71,2,2,2,2,2,2,2,1,0,,1,,1,131478,2,2,5,0,1,,200.0,355.0,12,1.0,2.0,2.0,1.0,1.0,1,1,248.678006966945,700.0,4051.0025360430773,0,4,2,3,52.0,5,4,5,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1,0,0,0,1,0.18168342119057454,4051.0025360430773,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +31456,1,58.0,118.0,2,111,480.0,,,0,68,0.0,0.0,,524.0,60.965925917446924,,60,0,0,0,0,0,0,0,0,3,45.0,2,,2,131479,2,1,0,0,1,,180.0,338.0,12,1.0,0.0,2.0,1.0,1.0,1,1,180.49399850863307,480.0,17398.05504587156,0,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030118309122394785,17398.05504587156,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +31457,1,37.0,280.0,2,120,230.0,900.0,0.0,85,69,0.0,0.0,392.1961249755741,1130.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,2,,2,131480,2,1,0,0,2,,200.0,420.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1197.97612598857,230.0,14986.923711960504,6,4,2,3,86.0,0,3,9,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07539906265741442,6244.55154665021,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +31458,2,53.0,0.0,7,111,1141.0,0.0,0.0,63,52,0.0,0.0,1945.6338199875217,1141.0,0.0,0.0,60,0,0,0,0,0,0,0,0,1,5.0,2,,5,131481,2,1,0,0,1,,0.0,770.0,43,3.0,2.0,4.0,3.0,2.0,3,3,1991.81841682725,1141.0,33439.51979618726,4,1,2,3,80.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.034121303384568806,16719.75989809363,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +31459,2,52.0,0.0,2,111,2000.0,0.0,0.0,55,47,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,2,131482,2,2,1,0,1,,600.0,,43,2.0,4.0,5.0,3.0,2.0,3,2,227.330142477952,2000.0,61359.51049335376,4,1,1,2,110.0,8,6,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03259478414868764,30679.75524667688,8,4,8,8_1,8_2,8_0_1 +31460,2,42.0,0.0,5,221,1109.0,0.0,0.0,46,38,0.0,71.51367295855209,1891.067402599616,1163.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,4.0,1,,3,131483,2,1,2,0,1,,356.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,498.572060221663,1109.0,92790.5617070015,1,1,1,2,123.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01253360232555038,44185.98176523881,10,5,10,10_1,10_1,10_0_0 +31461,2,59.0,0.0,6,111,800.0,0.0,0.0,75,48,0.0,821.0829117463388,1364.160434697649,1482.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,4,131484,2,1,2,0,1,,800.0,,42,2.0,1.0,8.0,3.0,2.0,3,3,1638.05066480274,800.0,118745.62732072794,6,1,0,1,150.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01248045956249966,59372.81366036397,10,5,10,10_1,10_2,10_0_0 +31462,2,80.0,0.0,5,111,510.0,,,78,78,0.0,0.0,,699.0,261.87636359994247,,71,0,0,0,0,0,0,0,0,0,,1,,3,131485,2,2,0,0,1,,398.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,88.73682266988199,510.0,38630.383679976425,5,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018094565298410897,25753.589119984284,7,4,7,7_1,7_2,7_0_0 +31463,2,36.0,0.0,1,111,680.0,2000.0,0.0,42,38,0.0,0.0,1159.5363694930015,2680.0,0.0,3797.008095879578,12,0,0,0,0,0,0,0,0,2,45.0,1,,1,131486,2,2,1,0,1,,268.0,,43,2.0,0.0,8.0,5.0,2.4,2,2,1191.82630880741,680.0,60694.37232290533,1,1,1,2,200.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04415565887627773,25289.321801210554,7,4,7,7_1,7_3,7_1_0 +31464,2,59.0,0.0,5,111,830.0,,,75,43,0.0,0.0,,1082.0,349.1684847999233,,33,0,0,0,0,0,0,0,0,0,,1,,3,131487,2,1,0,0,2,,600.0,,42,1.0,3.0,5.0,3.0,2.0,3,3,93.93505827890125,830.0,82733.59553023695,7,1,0,1,132.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013078121325025182,41366.79776511848,9,5,9,9_1,9_2,9_0_0 +31465,1,66.0,140.0,5,111,240.0,240.0,0.0,0,77,0.0,0.0,409.2481304092947,480.0,0.0,455.6409715055494,70,0,0,0,0,0,0,0,0,0,,2,,3,131488,2,1,0,3,1,842.0,0.0,534.0,31,0.0,0.0,3.0,2.0,1.5,2,2,327.913622522608,240.0,12958.392208754949,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.037041632346619544,8638.928139169966,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +31466,1,25.0,291.0,2,111,0.0,240.0,0.0,0,85,0.0,0.0,0.0,1072.0,0.0,455.6409715055494,60,2,1,2,1,1,2,2,2,0,,2,,2,131489,2,1,0,1,1,534.0,221.0,255.0,31,0.0,0.0,3.0,3.0,1.6,1,1,688.975015814706,0.0,11720.87359322745,0,6,2,3,65.0,8,7,2,0,1,0,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.09146075942832645,7325.5459957671565,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +31467,0,45.0,0.0,2,120,0.0,0.0,0.0,0,22,0.0,0.0,0.0,100.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,8,,2,131490,1,3,0,1,1,,0.0,,32,1.0,0.0,5.0,3.0,2.0,3,2,2338.7197621201,0.0,31746.0,0,1,5,0,110.0,0,1,5,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.00315000315000315,15873.0,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +31468,2,63.0,0.0,5,112,652.0,0.0,0.0,78,54,2024.991073990275,0.0,1111.7907542785838,2712.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,131491,2,1,1,0,2,,423.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1594.68202528584,652.0,44186.91629637017,5,1,0,1,81.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06137563395033256,29457.944197580113,8,4,8,8_1,8_1,8_0_0 +31469,2,50.0,0.0,5,111,720.0,930.0,0.0,0,53,0.0,0.0,1227.744391227884,1650.0,0.0,1765.6087645840037,71,0,0,0,0,0,0,0,0,3,20.0,2,,3,131492,2,1,0,1,1,,0.0,500.0,12,1.0,0.0,3.0,1.0,1.0,1,1,531.998087213729,720.0,19311.255751423752,0,1,2,3,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.08544239801072238,19311.255751423752,5,3,5,5_0,5_4,5_0_0 +31470,2,40.0,0.0,8,120,360.0,,,0,52,0.0,0.0,,383.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,131493,2,1,0,0,1,,200.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,214.56679733481457,360.0,26264.008624258542,0,1,0,1,40.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014582693962651425,26264.008624258542,7,4,7,7_0,7_1,7_0_0 +31471,2,60.0,0.0,5,112,450.0,0.0,0.0,77,77,0.0,0.0,767.3402445174275,2570.0,2937.4491578406246,0.0,50,1,2,2,1,1,2,2,2,0,,1,,3,131494,2,1,2,0,1,,260.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,857.51451643531,450.0,29609.267687600015,7,5,0,1,96.0,6,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.08679714834947719,19739.511791733345,5,3,5,5_1,5_0,5_0_0 +31472,2,47.0,0.0,9,112,486.0,741.0,0.0,47,43,0.0,145.67600047112464,828.7274640788218,1337.0,0.0,1406.7914995233837,33,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,131495,2,1,1,0,1,,238.0,,43,2.0,1.0,6.0,4.0,2.1,2,2,1920.990770897,486.0,58501.93535357379,1,1,1,2,135.0,8,1,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022853944778398257,27858.064454082756,7,4,7,7_1,7_1,7_0_0 +31473,1,29.0,83.0,2,111,420.0,240.0,0.0,0,52,0.0,0.0,716.1842282162656,660.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,2,6.0,2,,2,131496,2,1,0,2,1,,1080.0,628.0,32,1.0,0.0,4.0,3.0,1.6,1,1,196.853925086212,420.0,26978.74069386318,0,1,2,3,91.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024463706719644235,16861.712933664487,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +31474,2,36.0,0.0,7,111,1100.0,0.0,0.0,46,23,0.0,0.0,1875.7205977092674,1400.0,415.67676761895626,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,131497,1,2,0,0,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1803.05677134914,1100.0,79857.32602651262,1,1,1,2,85.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017531265691706235,44365.18112584034,10,5,10,10_0,10_3,10_0_0 +31475,2,47.0,0.0,7,111,550.0,550.0,0.0,52,62,0.0,0.0,937.8602988546337,1100.0,0.0,1044.177226366884,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,131498,2,1,2,0,1,,350.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,1515.5618554933,550.0,45044.087883613676,1,1,1,2,89.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024420518911210155,22522.043941806838,6,3,6,6_1,6_2,6_0_0 +31476,2,71.0,0.0,2,111,4012.6,126.0,0.0,77,78,0.0,0.0,6842.287700334732,4831.0,0.0,239.2115100404134,71,0,0,0,0,0,0,0,0,0,,2,,2,131499,2,2,0,1,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,742.790835580036,4012.6,22806.717002069177,5,5,0,1,74.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.21182356055725599,15204.478001379452,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +31477,2,59.0,0.0,7,111,1720.0,0.0,0.0,55,37,0.0,529.7309108040896,2932.944934599945,2190.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,2,45.0,1,,5,131500,2,1,2,0,1,,590.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,1179.60651258873,1720.0,81263.9918443018,4,1,1,2,145.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026949205303573358,54175.99456286786,10,5,10,10_1,10_3,10_0_0 +31478,2,40.0,0.0,2,111,780.0,2040.0,0.0,37,37,0.0,132.4327277010224,1330.0564238302077,2920.0,0.0,3872.9482577971694,12,0,0,0,0,0,0,0,0,2,40.0,1,,2,131501,2,1,2,0,1,,0.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,968.293085492262,780.0,136789.20544376865,1,1,1,2,105.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02134671365717052,65137.71687798507,10,5,10,10_1,10_4,10_0_1 +31479,2,65.0,0.0,2,221,1369.0,0.0,0.0,72,72,2109.365702073203,0.0,2334.419543876352,3849.0,665.08282819033,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131502,2,1,3,0,1,,570.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,2580.72680878833,1369.0,26116.405188357403,5,5,0,1,130.0,1,2,7,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14737862934198426,17410.93679223827,4,2,4_0,4_1_0,4_1_0,4_0_1_0 +31481,2,55.0,0.0,5,111,696.0,1370.0,0.0,0,77,0.0,0.0,1186.8195781869547,2066.0,0.0,2600.950545677511,50,0,0,0,0,0,0,0,0,0,,1,,3,131504,2,2,2,0,1,,230.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1416.57965828763,696.0,19957.448171625572,0,5,0,1,100.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10352024879299589,19957.448171625572,5,3,5,5_1,5_3,5_0_0 +31483,1,23.0,265.0,1,111,350.0,0.0,0.0,0,52,0.0,0.0,596.8201901802214,350.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,20.0,2,,1,131506,2,2,0,0,1,,0.0,355.0,12,1.0,0.0,1.0,1.0,1.0,1,1,625.442755635121,350.0,12654.66010783847,0,1,2,3,23.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.027657795390585417,12654.66010783847,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +31484,2,35.0,0.0,2,111,1000.0,900.0,0.0,34,31,0.0,39.72981831030672,1705.2005433720612,1930.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,2,10.0,1,,2,131507,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,332.785941259032,1000.0,211265.57554331064,4,1,1,2,93.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009135421116462672,100602.65502062411,10,5,10,10_1,10_3,10_0_1 +31485,2,25.0,0.0,1,120,1500.0,0.0,0.0,52,47,0.0,476.7578197236806,2557.8008150580918,1920.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,131508,2,2,2,0,1,,238.0,655.0,43,2.0,0.0,6.0,2.0,1.5,2,2,1425.9745697321,1500.0,39268.78929395854,4,1,2,3,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04889379159686468,26179.19286263903,7,4,7,7_1,7_0,7_1_0 +31486,2,81.0,0.0,2,111,0.0,0.0,1920.0,74,78,0.0,0.0,1210.211117596308,1920.0,0.0,2297.725723324187,71,0,0,0,0,0,0,0,0,0,,1,,2,131509,2,1,2,0,2,,300.0,,41,1.0,0.0,3.0,3.0,2.0,3,3,885.864969456856,0.0,49915.119823823734,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03846529882682187,24957.559911911867,7,4,7,7_1,7_4,7_0_1 +31487,2,29.0,0.0,5,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,287.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,131510,1,3,0,1,1,170.0,0.0,235.0,12,1.0,0.0,1.0,1.0,1.0,1,1,842.152819871557,0.0,18137.103238298383,0,1,2,3,19.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015823916103315197,18137.103238298383,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +31488,2,68.0,0.0,2,111,369.0,,,0,74,0.0,0.0,,461.0,127.47420873647992,,60,0,0,0,0,0,0,0,0,0,,1,,2,131511,2,1,0,0,2,,304.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,142.12257708112236,369.0,50306.0,0,5,0,1,108.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.009163916829006481,50306.0,10,5,10,10_1,10_2,10_0_1 +31489,2,37.0,0.0,2,111,321.0,0.0,0.0,56,68,0.0,0.0,547.3693744224316,710.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,131512,1,2,0,0,1,,0.0,278.0,43,2.0,0.0,3.0,2.0,1.5,2,2,233.060428578917,321.0,32517.809943483055,1,1,2,3,51.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021834188748688848,21678.539962322036,6,3,6,6_0,6_3,6_0_1 +31490,2,62.0,0.0,2,111,423.0,203.4,0.0,78,56,0.0,0.0,721.2998298463818,626.0,0.0,386.1557233509531,50,0,0,0,0,0,0,0,0,0,,2,,2,131513,1,2,0,1,1,,0.0,313.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1324.94789029531,423.0,26586.148380517487,5,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023546095923346954,17724.09892034499,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +31491,2,34.0,0.0,2,112,827.1,1472.4,0.0,47,46,0.0,370.8116375628627,1410.3713694230319,2612.0,44.33885521268867,2795.3573601865455,20,0,0,0,0,0,0,0,0,0,,1,,2,131514,1,1,1,0,1,,200.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,2108.15766629805,827.1,65614.18701864939,1,1,1,2,200.0,8,1,5,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03980846397224424,27339.244591103914,7,4,7,7_1,7_1,7_0_1 +31492,2,51.0,0.0,8,111,400.0,,,52,52,0.0,0.0,,532.0,182.89777775234077,,42,0,0,0,0,0,0,0,0,2,5.0,1,2002.0,6,131515,1,2,0,0,2,,240.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,110.33746767530448,400.0,53855.386814012345,1,1,0,1,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009878306172737055,25645.42229238683,7,4,7,7_1,7_2,7_0_0 +31493,1,61.0,87.0,2,111,340.0,124.0,0.0,0,56,0.0,0.0,579.7681847465008,464.0,0.0,235.41450194453384,70,2,1,2,2,1,2,2,2,0,,2,,2,131516,2,2,0,1,1,1064.0,0.0,382.0,32,1.0,0.0,3.0,2.0,1.5,2,2,209.663361429173,340.0,16792.1679925628,0,1,2,3,63.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.027631929373592747,11194.778661708535,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +31494,1,32.0,275.0,2,111,410.0,150.0,0.0,85,22,0.0,0.0,699.1322227825451,560.0,0.0,284.77560719096834,50,2,1,2,2,2,2,2,1,2,20.0,2,,2,131517,2,1,0,1,1,736.0,150.0,293.0,42,1.0,0.0,3.0,4.0,2.1,2,2,345.832158601675,410.0,20054.03373229799,6,1,2,3,60.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.027924556599208915,9549.539872522852,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +31496,2,56.0,0.0,6,112,1165.0,0.0,0.0,78,56,0.0,0.0,1986.5586330284514,1255.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,131519,2,1,1,0,1,,378.0,,42,1.0,2.0,4.0,3.0,2.0,3,3,2301.39048670909,1165.0,35020.471395801505,7,1,0,1,90.0,7,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03583618238075625,17510.235697900753,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +31497,2,32.0,0.0,2,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,183.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,2,,2,131520,2,1,0,1,1,,0.0,340.0,12,1.0,0.0,2.0,1.0,1.0,1,1,288.602615841204,0.0,21981.76462061667,0,1,2,3,32.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008325082319749913,21981.76462061667,6,3,6,6_0,6_4,6_0_1 +31498,2,66.0,0.0,6,111,400.0,1000.0,0.0,77,78,0.0,715.1367295855209,682.0802173488245,1940.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,0,,1,,4,131521,2,1,4,0,1,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1613.64045345487,400.0,34526.56148739155,5,5,0,1,80.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0561886245379069,23017.70765826103,6,3,6,6_1,6_2,6_0_0 +31499,2,50.0,0.0,2,111,357.0,346.0,0.0,85,64,0.0,0.0,608.7565939838258,1920.0,249.40606057137379,656.882400587167,50,2,1,2,2,1,2,2,2,2,10.0,2,,2,131522,1,2,0,1,1,1174.0,0.0,322.0,42,1.0,3.0,4.0,4.0,2.3,3,2,816.514507746097,357.0,39567.089237748594,7,1,2,3,76.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04852517678172401,17203.082277282,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +31500,2,66.0,0.0,2,111,234.0,72.0,0.0,0,78,0.0,0.0,399.0169271490623,306.0,0.0,136.6922914516648,71,0,0,0,0,0,0,0,0,0,,2,,2,131523,2,1,0,1,1,240.0,0.0,303.0,11,0.0,0.0,2.0,1.0,1.0,1,1,294.8766819866,234.0,17291.224740592454,0,5,2,3,44.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017696837823271243,17291.224740592454,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +31501,2,81.0,0.0,8,111,225.0,549.0,0.0,0,72,0.0,0.0,383.6701222587138,774.0,0.0,1042.2787223189441,70,0,0,0,0,0,0,0,0,0,,2,2002.0,6,131524,2,1,0,0,1,,140.0,404.0,11,0.0,1.0,3.0,1.0,1.0,1,1,1418.84534567857,225.0,14797.263764689758,0,5,2,3,72.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05230696784948658,14797.263764689758,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +31502,1,51.0,153.0,2,111,207.0,0.0,0.0,0,67,0.0,0.0,352.9765124780167,277.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,3,40.0,2,,2,131525,2,2,0,1,2,781.0,0.0,249.0,12,1.0,0.0,2.0,1.0,1.0,1,1,327.459619134309,207.0,14173.792725493417,0,1,2,3,51.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019543110680726925,14173.792725493417,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +31503,2,81.0,0.0,2,111,130.0,97.0,0.0,0,75,0.0,0.0,221.67607063836795,227.0,0.0,184.15489265015952,50,0,0,0,0,0,0,0,0,0,,2,,2,131526,2,1,0,1,1,313.0,140.0,255.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1365.17589135085,130.0,30956.030244737434,0,5,2,3,78.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007332981593742637,30956.030244737434,8,4,8,8_0,8_3,8_0_1 +31504,2,64.0,0.0,2,112,281.0,0.0,0.0,77,75,0.0,39.72981831030672,479.1613526875492,1865.0,2153.2056562661937,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,131527,2,1,0,0,1,,354.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2005.42631273304,281.0,33048.38866009049,5,5,0,1,100.0,6,0,9,0,0,1,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05643240338226201,22032.259106726993,6,3,6,6_0,6_0,6_0_1 +31505,0,61.0,0.0,2,111,300.0,0.0,0.0,0,56,0.0,0.0,511.56016301161833,364.0,88.67771042537734,0.0,50,2,2,1,1,1,2,2,2,0,,2,,2,131528,1,2,0,1,1,984.0,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,452.860811995778,300.0,34145.40206581589,0,1,5,0,62.0,8,6,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.010660293274578618,34145.40206581589,9,5,9,9_0,9_2,9_0_1 +31506,1,20.0,90.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,131529,2,1,0,0,1,,0.0,387.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3057.84079588753,0.0,12693.712750009283,0,2,2,3,24.0,6,4,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023633747344706583,12693.712750009283,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +31507,0,71.0,0.0,8,111,540.0,,,0,86,0.0,0.0,,792.0,349.1684847999233,,71,2,2,1,2,1,2,2,2,0,,1,2000.0,6,131530,2,2,0,0,2,,73.0,,11,0.0,10.0,3.0,1.0,1.0,1,1,126.9654845237863,540.0,10367.383883816641,0,6,5,0,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.07639342855204795,10367.383883816641,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31508,2,59.0,0.0,2,120,1911.0,0.0,0.0,54,45,0.0,397.2981831030672,3258.638238384009,2261.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,2,131531,1,2,1,0,1,,363.0,,43,2.0,0.0,8.0,2.0,1.5,2,2,1706.2696462087,1911.0,60794.77313912145,1,1,0,1,150.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037190697213820935,40529.8487594143,9,5,9,9_1,9_0,9_0_1 +31509,2,64.0,0.0,2,112,900.0,900.0,0.0,77,74,0.0,0.0,1534.680489034855,1800.0,0.0,1708.65364314581,44,0,0,0,0,0,0,0,0,0,,1,,2,131532,1,1,2,0,1,,600.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,3411.79279060126,900.0,47751.69389327289,5,5,1,2,120.0,8,1,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03769499787846434,31834.46259551526,8,4,8,8_1,8_1,8_0_1 +31510,2,75.0,0.0,5,111,0.0,0.0,0.0,72,74,0.0,0.0,0.0,1022.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,131533,1,2,0,0,1,,118.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,83.5034542901919,0.0,30428.768095770676,5,5,0,1,65.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03358663738155238,20285.845397180452,5,3,5,5_0,5_3,5_0_0 +31511,2,44.0,0.0,1,112,1200.0,4500.0,0.0,37,56,0.0,198.6490915515336,2046.2406520464733,5850.0,0.0,8543.268215729051,31,1,2,2,2,1,2,2,2,2,40.0,1,,1,131534,2,3,1,0,1,,480.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,1986.95605487421,1200.0,84460.79408054745,1,1,1,2,240.0,8,1,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.06926290551354572,36722.08438284672,9,5,9,9_1,9_1,9_1_0 +31512,2,68.0,0.0,1,111,1000.0,0.0,0.0,0,78,0.0,529.7309108040896,1705.2005433720612,1480.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131535,2,1,1,0,1,,160.0,,11,0.0,2.0,1.0,1.0,1.0,1,1,904.241492940383,1000.0,17345.48961064012,0,5,0,1,55.0,7,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0853247750984287,17345.48961064012,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +31513,2,77.0,0.0,2,111,269.0,1801.0,0.0,0,74,0.0,0.0,458.69894616708444,2070.0,0.0,3419.20579033956,10,0,0,0,0,0,0,0,0,0,,2,,2,131536,2,2,0,0,1,,229.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,2151.23925464748,269.0,40403.93768831072,0,5,0,1,108.0,6,4,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.051232630244325734,40403.93768831072,9,5,9,9_0,9_2,9_0_1 +31514,2,49.0,0.0,2,111,140.0,140.0,0.0,63,56,0.0,0.0,238.72807607208856,280.0,0.0,265.7905667115705,71,0,0,0,0,0,0,0,0,0,,2,,2,131537,2,1,0,1,1,,0.0,790.0,43,3.0,2.0,5.0,3.0,2.0,3,3,207.582944974679,140.0,32101.135764412124,4,1,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.008722432815302843,16050.567882206062,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +31515,2,62.0,0.0,2,111,623.0,120.0,0.0,0,77,0.0,0.0,1062.339938520794,743.0,0.0,227.8204857527747,41,0,0,0,0,0,0,0,0,0,,2,,2,131538,2,1,0,1,1,504.0,0.0,412.0,21,0.0,0.0,4.0,2.0,1.5,2,2,386.159950947988,623.0,26973.90716852236,0,7,2,3,70.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02754513817216128,17982.604779014906,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +31516,2,25.0,0.0,7,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,652.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,5,131539,2,2,0,0,1,,0.0,440.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2461.44922362506,0.0,12897.403555371275,0,4,2,3,32.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05055281066462924,12897.403555371275,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +31517,1,58.0,255.0,1,111,476.0,0.0,0.0,0,77,0.0,158.91927324122688,811.6754586451011,696.0,138.5589225396521,0.0,70,2,2,2,1,1,2,2,2,0,,8,,1,131540,1,3,0,0,2,,165.0,271.0,11,0.0,3.0,3.0,1.0,1.0,1,1,619.299913001966,476.0,6083.273780468153,0,6,2,3,75.0,6,4,3,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,1,0,0,1,0.114412078942539,6083.273780468153,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +31518,1,82.0,144.0,2,111,198.0,200.0,0.0,0,86,0.0,0.0,337.6297075876681,398.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,2,131541,2,1,0,1,1,408.0,0.0,237.0,11,0.0,5.0,3.0,1.0,1.0,1,1,394.396553698236,198.0,13376.572459429772,0,6,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0297535113129396,13376.572459429772,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +31519,2,57.0,0.0,6,300,980.0,0.0,0.0,71,68,369.1389978628105,0.0,1671.09653250462,1510.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,2,18.0,1,,4,131542,2,2,1,0,1,,275.0,,42,2.0,1.0,5.0,3.0,2.0,3,3,1283.55145705499,980.0,37908.463024448436,5,1,0,1,99.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03983279403931915,18954.231512224218,5,3,5,5_1,5_0,5_0_0 +31520,1,42.0,300.0,5,111,0.0,0.0,0.0,31,31,0.0,0.0,0.0,326.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,131543,2,3,1,1,1,,252.0,,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,288.95426322295,0.0,47199.286493503445,1,1,1,2,85.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.006906884070056248,16275.61603224257,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +31521,2,51.0,0.0,2,111,50.0,20.0,0.0,0,46,0.0,0.0,85.26002716860306,70.0,0.0,37.970080958795776,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,131544,2,1,0,1,1,912.0,0.0,302.0,32,1.0,0.0,3.0,3.0,2.0,3,2,491.195033376163,50.0,29272.440089504802,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002391327808203371,14636.220044752401,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +31522,2,78.0,0.0,2,211,1200.0,,,0,86,0.0,0.0,,1212.0,16.627070704758253,,71,0,0,0,0,0,0,0,0,0,,1,,2,131545,2,2,0,0,2,,400.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,42.987081828552306,1200.0,14255.921498290483,0,5,0,1,34.0,4,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08501730317084999,14255.921498290483,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +31523,2,43.0,0.0,7,300,0.0,0.0,0.0,63,69,0.0,158.91927324122688,0.0,1911.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,131546,2,1,2,0,1,,398.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1161.32757828676,0.0,49742.191134161294,1,1,0,1,140.0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03841809048672141,19896.876453664518,5,3,5,5_1,5_0,5_0_0 +31524,1,51.0,140.0,2,111,500.0,1000.0,0.0,85,64,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,2,131547,2,3,4,0,1,,400.0,,42,1.0,0.0,6.0,5.0,2.8,4,2,241.221663966862,500.0,24631.20148122442,6,1,1,2,110.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.06089836913328821,8796.857671865864,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +31525,2,50.0,0.0,1,111,485.0,2394.0,0.0,34,34,0.0,0.0,827.0222635354497,2929.0,69.27946126982604,4545.018690767854,10,2,2,2,1,1,2,2,2,2,20.0,1,,1,131548,2,2,2,0,1,,415.0,,43,2.0,2.0,7.0,5.0,2.8,4,3,1243.60228361709,485.0,116646.3244456941,1,1,1,2,137.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.02511009252900743,41659.401587747896,9,5,9,9_1,9_3,9_1_0 +31526,1,41.0,304.0,2,111,316.0,635.0,0.0,85,63,0.0,0.0,538.8433717055714,951.0,0.0,1205.550070441766,71,2,2,2,2,1,2,2,2,3,60.0,2,,2,131549,1,3,0,0,2,,0.0,485.0,42,1.0,0.0,2.0,3.0,1.8,2,2,631.702163866823,316.0,14755.35110922093,6,1,3,4,40.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.06445119421154946,8197.417282900517,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +31527,2,52.0,0.0,2,111,500.0,920.0,0.0,52,63,0.0,0.0,852.6002716860306,1420.0,0.0,1746.6237241046058,50,0,0,0,0,0,0,0,0,2,25.0,1,,2,131550,2,1,3,0,1,,500.0,,43,2.0,2.0,4.0,3.0,2.0,3,3,473.458401385537,500.0,43351.25533046175,1,1,0,1,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03275568352462921,21675.627665230873,6,3,6,6_1,6_3,6_0_1 +31528,2,27.0,0.0,2,111,660.0,0.0,0.0,52,62,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,42,2,2,2,1,2,2,2,2,2,40.0,2,,2,131551,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1026.3074315977,660.0,47254.503677771645,1,1,1,2,72.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.013966922698004374,26252.50204320647,7,4,7,7_0,7_3,7_0_1 +31529,1,46.0,436.0,2,111,2400.0,1200.0,0.0,52,63,0.0,0.0,4092.4813040929466,3600.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,3,20.0,1,,2,131552,2,1,1,0,1,,800.0,,43,2.0,0.0,5.0,6.0,3.0999999999999996,4,2,1008.26052213909,2400.0,43160.27071802094,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.08341004215473728,13922.667973555144,3,2,3_1,3_1_1,3_4_1,3_0_1_1 +31530,2,48.0,0.0,1,300,1600.0,0.0,0.0,56,67,0.0,0.0,2728.320869395298,1750.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,1,131553,1,2,3,0,2,,180.0,275.0,43,2.0,0.0,4.0,3.0,2.0,3,3,1897.83163610987,1600.0,31567.27281867461,1,1,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05543716145680892,15783.636409337305,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +31531,2,74.0,0.0,8,112,600.0,843.0,0.0,77,22,0.0,0.0,1023.1203260232367,1443.0,0.0,1600.4389124132422,50,0,0,0,0,0,0,0,0,0,,1,2000.0,6,131554,2,1,1,0,1,,306.0,914.0,41,0.0,1.0,5.0,2.0,1.5,2,2,2095.5379364475,600.0,52537.023118482364,5,5,2,3,91.0,8,2,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027466344957264185,35024.68207898824,9,5,9,9_1,9_1,9_0_0 +31532,2,64.0,0.0,5,112,940.0,0.0,0.0,77,77,0.0,0.0,1602.8885107697374,940.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131555,2,1,1,0,1,,369.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,847.21624883129,940.0,35655.89514625227,5,5,0,1,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026363101981995866,23770.59676416818,6,3,6,6_1,6_0,6_0_0 +31533,2,37.0,0.0,7,111,879.0,0.0,0.0,0,55,0.0,0.0,1498.8712776240418,879.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,5,131556,2,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1772.4253170064,879.0,20311.894832385613,0,1,0,1,37.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.0432751354442082,20311.894832385613,5,3,5,5_0,5_2,5_0_0 +31534,2,63.0,0.0,1,400,850.0,0.0,0.0,0,78,0.0,1032.9752760679746,1449.420461866252,1665.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131557,2,1,1,0,1,,180.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1424.61558356754,850.0,28519.821574391757,0,5,0,1,67.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05838044938875146,28519.821574391757,8,4,8,8_1,8_0,8_1_0 +31535,2,44.0,0.0,7,111,520.0,0.0,0.0,0,43,0.0,0.0,886.7042825534718,520.0,0.0,0.0,44,0,0,0,0,0,0,0,0,3,45.0,2,,5,131558,2,1,0,1,1,720.0,0.0,266.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1036.61518905561,520.0,25985.932516448258,0,1,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02001082699921801,19989.17885880635,5,3,5,5_0,5_4,5_0_0 +31536,2,40.0,0.0,1,111,475.0,299.0,0.0,85,56,0.0,0.0,809.9702581017291,774.0,0.0,567.6527103339969,71,2,2,2,2,1,2,2,2,3,45.0,2,,1,131559,1,3,0,0,2,,0.0,550.0,42,1.0,0.0,1.0,2.0,1.5,2,2,359.570167990734,475.0,13669.02403428258,6,1,2,3,20.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0.05662437918455408,9112.68268952172,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +31537,1,36.0,350.0,6,111,0.0,,,0,46,0.0,0.0,,611.0,99.7624242285495,,43,0,0,0,0,0,0,0,0,0,,1,,4,131560,2,1,0,0,2,,400.0,650.0,32,1.0,0.0,4.0,3.0,1.6,1,1,88.7487838242277,0.0,20185.47468937255,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030269290636087215,12615.921680857842,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +31538,1,26.0,50.0,9,111,1600.0,0.0,0.0,43,43,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,2,2012.0,6,131561,2,1,0,0,1,,600.0,645.0,43,2.0,0.0,3.0,3.0,1.8,2,2,34.3346444425684,1600.0,33019.32715759346,1,4,2,3,60.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.048456468914813956,18344.07064310748,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +31539,2,29.0,0.0,2,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,815.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,131562,2,2,0,0,1,,111.0,405.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2451.78661742372,0.0,36200.965913945096,0,4,2,3,23.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.022513211441301657,36200.965913945096,9,5,9,9_0,9_3,9_0_1 +31540,2,75.0,0.0,2,111,220.0,70.0,0.0,0,74,0.0,0.0,375.14411954185346,290.0,0.0,132.89528335578524,31,0,0,0,0,0,0,0,0,0,,2,,2,131563,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,621.209111806162,220.0,42932.60712087072,0,5,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006754772641306077,42932.60712087072,9,5,9,9_0,9_3,9_0_1 +31541,2,46.0,0.0,9,111,300.0,,,56,65,0.0,0.0,,484.0,254.94841747295985,,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,131564,2,1,0,0,1,,400.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,137.33370868416233,300.0,29663.56991398663,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016316309918307903,16479.761063325906,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +31542,2,45.0,0.0,7,111,1800.0,0.0,0.0,62,52,0.0,0.0,3069.36097806971,1960.0,221.69427606344334,0.0,42,0,0,0,0,0,0,0,0,1,20.0,1,,5,131565,1,2,3,0,1,,500.0,505.0,43,3.0,1.0,4.0,4.0,2.5,4,4,1291.29489806937,1800.0,48038.53016449506,1,1,2,3,98.0,5,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04080058222615275,19215.412065798024,5,3,5,5_1,5_2,5_0_0 +31544,1,36.0,180.0,1,111,660.0,0.0,0.0,85,68,0.0,0.0,1125.4323586255605,810.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,1,131567,2,2,0,0,1,,0.0,400.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1494.55619727978,660.0,12642.148495889502,6,1,3,4,30.0,7,6,4,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.06407138788658948,8428.098997259667,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +31545,2,55.0,0.0,2,112,389.0,0.0,0.0,38,33,0.0,1401.138259076817,663.3230113717318,1447.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,131568,2,2,1,0,2,,134.0,,43,2.0,1.0,6.0,2.0,1.5,2,2,945.137939331057,389.0,62273.935448429256,1,1,0,1,110.0,10,1,1,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02323604553944242,41515.9569656195,9,5,9,9_1,9_1,9_0_1 +31546,2,47.0,0.0,7,112,838.0,0.0,0.0,55,62,0.0,0.0,1428.9580553457872,838.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,1,,5,131569,2,2,3,0,1,,449.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1016.85562363257,838.0,39270.930949044094,1,1,0,1,85.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021338939000130782,21817.18386058005,6,3,6,6_1,6_1,6_0_0 +31547,2,52.0,0.0,5,211,890.0,0.0,0.0,0,54,0.0,0.0,1517.6284836011343,890.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,131570,1,2,5,0,1,,180.0,520.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1737.94946153389,890.0,19861.1186941996,0,1,2,3,40.0,3,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04481117170202113,19861.1186941996,5,3,5,5_1,5_1,5_0_0 +31548,2,90.0,0.0,1,111,300.0,800.0,0.0,0,74,0.0,0.0,511.56016301161833,1100.0,0.0,1518.8032383518312,31,0,0,0,0,0,0,0,0,0,,2,,1,131571,2,1,0,0,1,,0.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,2057.26176721384,300.0,64683.87335875862,0,5,0,1,140.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.017005784330493448,43122.582239172414,9,5,9,9_0,9_3,9_1_0 +31549,2,58.0,0.0,9,111,1600.0,0.0,0.0,69,46,0.0,397.2981831030672,2728.320869395298,1900.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,131572,2,1,1,0,1,,258.0,,43,2.0,2.0,8.0,2.0,1.5,2,2,1163.98391423046,1600.0,48413.725729621954,4,1,0,1,220.0,6,4,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0392450688594182,32275.8171530813,8,4,8,8_1,8_2,8_0_0 +31550,2,45.0,0.0,7,111,720.0,,,42,21,0.0,0.0,,816.0,133.01656563806603,,50,0,0,0,0,0,0,0,0,2,90.0,1,,5,131573,1,1,0,0,2,,360.0,784.0,43,2.0,0.0,3.0,2.0,1.5,2,2,147.49701976833214,720.0,60524.59338294026,1,1,2,3,90.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013482122793244598,40349.72892196017,9,5,9,9_1,9_3,9_0_0 +31551,2,54.0,0.0,7,300,2000.0,0.0,0.0,90,90,0.0,0.0,3410.4010867441225,2095.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,131574,2,1,1,0,2,,193.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,1563.09701303332,2000.0,100554.93604971872,1,1,0,1,200.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020834382500766958,50277.46802485936,10,5,10,10_1,10_0,10_0_0 +31552,2,67.0,0.0,2,111,280.0,1200.0,0.0,0,74,0.0,0.0,477.4561521441771,1480.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,0,,1,,2,131575,2,1,1,0,1,,160.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,384.106191888548,280.0,31803.268059147635,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046536098027646085,31803.268059147635,8,4,8,8_1,8_3,8_0_1 +31553,2,62.0,0.0,5,111,760.0,0.0,0.0,77,78,1054.6828510366015,0.0,1295.9524129627664,1900.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,131576,1,1,2,0,1,,500.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1419.48428102368,760.0,36305.548826010054,6,5,0,1,100.0,8,7,2,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05233359807079408,24203.699217340036,7,4,7,7_1,7_3,7_0_0 +31554,2,35.0,0.0,5,211,0.0,,,0,54,0.0,0.0,,901.0,0.0,,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,131577,2,1,0,0,2,,1181.0,1200.0,32,1.0,0.0,5.0,3.0,1.6,1,1,60.969690466659465,0.0,43315.98536454463,0,1,2,3,54.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020800634971529338,27072.49085284039,7,4,7,7_1,7_2,7_0_0 +31555,2,42.0,0.0,8,112,1200.0,0.0,0.0,37,47,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,131578,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1566.23093610238,1200.0,65318.23095179215,1,1,1,2,90.0,9,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01837159369618652,31103.919500853404,8,4,8,8_1,8_2,8_0_0 +31556,2,34.0,0.0,5,111,720.0,,,47,43,0.0,158.91927324122688,,906.0,91.44888887617039,,33,0,0,0,0,0,0,0,0,2,20.0,1,,3,131579,1,2,0,0,2,,120.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,154.87247411636457,720.0,77439.62767354219,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011699436415414759,36876.01317787723,9,5,9,9_1,9_2,9_0_0 +31557,2,34.0,0.0,1,111,900.0,0.0,0.0,52,52,0.0,397.2981831030672,1534.680489034855,1270.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,131580,2,1,2,0,1,,394.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,682.784790426769,900.0,42683.12468652965,1,1,1,2,60.0,7,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02975414778854742,28455.41645768643,8,4,8,8_1,8_2,8_1_0 +31558,2,78.0,0.0,1,111,706.0,0.0,0.0,77,78,0.0,927.0290939071567,1203.8715836206752,1568.0,224.4654545142364,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131581,2,1,2,0,2,,690.0,,41,0.0,5.0,7.0,2.0,1.5,2,2,332.067947415499,706.0,28614.259057333973,5,5,0,1,100.0,6,5,3,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.054797854344514785,19076.172704889315,5,3,5,5_1,5_2,5_1_0 +31559,2,56.0,0.0,2,111,274.0,0.0,0.0,0,52,0.0,0.0,467.22494888394476,274.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,131582,2,2,0,0,1,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1719.23046136936,274.0,25883.28374613425,0,1,0,1,82.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010585982933518734,25883.28374613425,7,4,7,7_0,7_3,7_0_1 +31560,2,81.0,0.0,2,111,3876.0,,,74,74,0.0,0.0,,3918.0,58.19474746665388,,12,0,0,0,0,0,0,0,0,0,,1,,2,131583,2,2,0,0,2,,252.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,119.67299577367855,3876.0,68986.40012841277,5,5,0,1,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056793802730783896,45990.93341894185,10,5,10,10_1,10_2,10_0_1 +31561,2,32.0,0.0,1,111,0.0,0.0,1300.0,54,43,0.0,46.35145469535784,819.4137775391669,1335.0,0.0,1555.751791834085,33,0,0,0,0,0,0,0,0,2,60.0,1,,1,131584,2,1,1,0,1,,300.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,429.235469358624,0.0,57887.04009804962,1,1,1,2,101.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023062156878962275,27565.257189547436,7,4,7,7_1,7_3,7_1_0 +31562,2,26.0,0.0,5,221,0.0,0.0,0.0,46,53,0.0,0.0,0.0,1255.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,20.0,1,,3,131585,2,2,2,0,1,,114.0,529.0,43,2.0,0.0,5.0,3.0,1.8,2,2,2185.12344568226,0.0,46844.155749479345,1,1,2,3,95.0,1,1,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02679096207244484,26024.530971932967,7,4,7,7_1,7_1,7_0_0 +31563,2,62.0,0.0,6,112,1450.0,0.0,0.0,45,75,0.0,0.0,2472.540787889489,1540.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,131586,2,1,2,0,1,,256.0,,42,3.0,0.0,5.0,4.0,2.5,4,4,1524.1211036457,1450.0,89916.97587526671,1,5,0,1,78.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017126910519502967,35966.79035010668,9,5,9,9_1,9_0,9_0_0 +31565,2,38.0,0.0,7,211,0.0,,,43,21,0.0,0.0,,540.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,131588,2,1,0,0,2,,601.0,850.0,43,2.0,0.0,4.0,5.0,2.4,2,2,103.95282136175932,0.0,122304.91361729856,1,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0044151946477776136,50960.3806738744,10,5,10,10_1,10_2,10_0_0 +31566,2,58.0,0.0,5,111,380.0,800.0,0.0,77,78,0.0,0.0,647.9762064813832,1180.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,1,,3,131589,2,1,2,0,1,,350.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,302.150773550382,380.0,18900.497745680485,5,5,0,1,88.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062432218234552944,12600.331830453657,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31567,2,78.0,0.0,2,111,340.0,650.0,0.0,0,78,0.0,0.0,579.7681847465008,990.0,0.0,1234.027631160863,71,2,2,2,2,1,2,2,2,0,,1,,2,131590,2,1,1,0,1,,170.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,469.438122660578,340.0,17697.720688903297,0,5,0,1,60.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.05593940696672555,17697.720688903297,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +31568,0,83.0,0.0,6,211,2283.0,0.0,0.0,0,86,0.0,0.0,3892.9728405184155,2283.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131591,2,1,2,0,1,,325.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1084.57800107615,2283.0,34966.460982016135,0,6,0,1,94.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0652911371606691,34966.460982016135,9,5,9,9_1,9_2,9_0_0 +31569,1,58.0,161.0,2,111,600.0,300.0,0.0,68,85,0.0,0.0,1023.1203260232367,900.0,0.0,569.5512143819367,70,0,0,0,0,0,0,0,0,0,,2,,2,131592,2,1,0,0,1,,462.0,369.0,42,3.0,5.0,4.0,4.0,2.5,4,4,254.749544452665,600.0,38097.55653567727,4,6,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023623562292168943,15239.022614270909,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +31571,1,29.0,406.0,2,400,2400.0,0.0,0.0,52,52,0.0,0.0,4092.4813040929466,2580.0,249.40606057137379,0.0,43,0,0,0,0,0,0,0,0,0,,1,,2,131594,2,2,5,0,1,,499.0,397.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1094.1693296991,2400.0,11099.588465667957,4,4,2,3,83.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.2324410502227336,5285.518316984741,1,1,1_1,1_1_1,1_0_1,1_0_1_1 +31572,2,59.0,0.0,5,300,0.0,0.0,0.0,75,12,0.0,0.0,0.0,1006.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131595,2,1,2,0,1,,300.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,729.297727855043,0.0,30126.455849565464,5,1,0,1,180.0,0,0,9,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03339257710974689,20084.30389971031,5,3,5,5_1,5_0,5_0_0 +31573,1,56.0,170.0,1,111,600.0,400.0,0.0,0,55,0.0,0.0,1023.1203260232367,1000.0,0.0,759.4016191759156,60,2,2,2,2,2,2,2,1,0,,2,,1,131596,1,3,0,0,1,,500.0,460.0,12,1.0,3.0,2.0,1.0,1.0,1,1,459.035753007704,600.0,13615.334405144695,0,4,2,3,55.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.07344659853687763,13615.334405144695,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +31574,2,34.0,0.0,9,111,680.0,0.0,0.0,56,64,0.0,463.51454695357836,1159.5363694930015,1030.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2012.0,6,131597,2,1,1,0,1,,720.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1374.00790062279,680.0,42649.160192438016,1,1,1,2,85.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024150534157121012,23693.977884687785,6,3,6,6_1,6_2,6_0_0 +31575,2,68.0,0.0,1,111,630.0,1570.0,0.0,78,75,0.0,0.0,1074.2763423243985,2200.0,0.0,2980.6513552654687,50,0,0,0,0,0,0,0,0,0,,1,,1,131598,2,1,3,0,1,,570.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1040.12306065569,630.0,39448.21287241248,5,5,0,1,138.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05576931981977154,26298.80858160832,7,4,7,7_1,7_2,7_1_0 +31576,2,33.0,0.0,9,112,1040.0,0.0,0.0,68,47,0.0,467.487528784609,1773.4085651069436,1393.0,0.0,0.0,50,0,0,0,0,0,0,0,0,4,60.0,1,2011.0,6,131599,2,1,1,0,1,,560.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,313.471764988267,1040.0,33072.408460867235,1,1,1,2,80.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042119702338832096,18373.56025603735,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +31577,2,56.0,0.0,7,111,1200.0,,,0,22,0.0,0.0,,1240.0,55.423569015860835,,41,0,0,0,0,0,0,0,0,2,1.0,1,,5,131600,2,1,0,0,2,,200.0,,12,1.0,0.0,7.0,1.0,1.0,1,1,132.4842966779993,1200.0,32387.120933838785,0,1,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038286824029005316,32387.120933838785,8,4,8,8_1,8_3,8_0_0 +31578,2,55.0,0.0,8,111,750.0,0.0,0.0,77,45,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,1999.0,6,131601,2,1,0,0,1,,260.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,1287.89159089963,750.0,51147.404747243396,5,1,0,1,75.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.014663500596096647,34098.2698314956,9,5,9,9_0,9_2,9_0_0 +31579,1,42.0,362.0,2,111,225.0,280.0,0.0,85,62,0.0,0.0,383.6701222587138,505.0,0.0,531.581133423141,50,0,0,0,0,0,0,0,0,0,,2,,2,131602,2,2,0,1,1,329.0,280.0,304.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,365.21882757543,225.0,16280.970123440831,6,4,2,3,61.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.031017807671848547,6029.988934607716,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +31580,2,61.0,0.0,1,111,447.0,1111.0,0.0,0,77,0.0,0.0,762.2246428873113,1558.0,0.0,2109.2379972611056,60,0,0,0,0,0,0,0,0,0,,1,,1,131603,2,2,3,0,1,,238.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1370.28091587969,447.0,33369.93186348985,0,5,0,1,90.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04668873782462267,33369.93186348985,8,4,8,8_1,8_3,8_1_0 +31581,2,35.0,0.0,1,111,392.0,0.0,0.0,0,52,0.0,0.0,668.438613001848,392.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,7.0,2,,1,131604,2,1,0,0,1,,0.0,416.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1685.62235320691,392.0,19453.59678277899,0,1,2,3,38.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020150515319974773,19453.59678277899,5,3,5,5_0,5_3,5_1_0 +31582,2,47.0,0.0,8,300,474.0,0.0,0.0,84,13,949.2145659329414,0.0,808.265057558357,1484.0,152.4148147936173,0.0,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,131605,2,1,1,0,1,,159.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,1153.21573016511,474.0,22261.442787748696,3,1,1,2,130.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06666234592920009,14840.961858499131,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +31583,1,45.0,508.0,2,111,1000.0,1000.0,0.0,55,68,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,70,2,2,1,2,1,2,2,2,0,,2,,2,131606,1,3,0,1,1,270.0,0.0,455.0,43,2.0,0.0,3.0,7.0,3.1999999999999993,3,2,1025.4814278709,1000.0,17982.547807747145,4,4,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.11121894524525444,5619.546189920984,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +31584,2,45.0,0.0,6,111,0.0,0.0,875.0,52,65,0.0,0.0,551.5285041129008,875.0,0.0,1047.1406291190956,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,131607,2,1,2,0,1,,720.0,478.0,43,2.0,0.0,4.0,5.0,2.8,4,4,859.26723283605,0.0,43911.70201185044,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01992635128931837,15682.750718518015,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +31585,2,70.0,0.0,7,111,249.0,,,0,71,0.0,0.0,,381.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,131608,2,1,0,0,2,,140.0,,21,1.0,1.0,5.0,2.0,1.5,2,1,109.94598226277407,249.0,3506.322858014729,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10866084368959715,2337.548572009819,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31586,1,62.0,304.0,5,111,480.0,600.0,0.0,85,78,0.0,0.0,818.4962608185893,1080.0,0.0,1139.1024287638734,42,2,2,2,2,1,2,2,2,0,,2,,3,131609,2,2,0,1,1,690.0,800.0,364.0,41,1.0,6.0,5.0,6.0,3.0999999999999996,4,4,331.1424874458,480.0,36229.374771095296,6,5,2,3,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.029810064535302196,11686.895087450097,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +31587,2,65.0,0.0,5,111,360.0,1430.0,0.0,0,74,0.0,0.0,613.872195613942,1790.0,0.0,2714.860788553898,31,2,2,2,1,2,2,2,2,0,,1,,3,131610,1,3,3,0,2,,280.0,373.0,11,0.0,2.0,4.0,1.0,1.0,1,1,281.93943966479,360.0,24264.57067972072,0,5,2,3,92.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0.07377010801579954,24264.57067972072,7,4,7,7_1,7_4,7_0_0 +31588,2,70.0,0.0,5,112,300.0,,,0,86,0.0,0.0,,344.0,60.965925917446924,,41,0,0,0,0,0,0,0,0,0,,1,,3,131611,2,1,0,0,2,,200.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,86.93560954055549,300.0,31064.038013659054,0,5,0,1,90.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011073898372411888,31064.038013659054,8,4,8,8_1,8_1,8_0_0 +31589,1,58.0,252.0,2,111,300.0,0.0,0.0,0,63,0.0,0.0,511.56016301161833,300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131612,2,1,0,1,1,,0.0,103.0,12,1.0,2.0,2.0,1.0,1.0,1,1,377.147754122657,300.0,6966.550603538637,0,1,2,3,44.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04306291837564719,6966.550603538637,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31590,1,53.0,203.0,2,111,447.0,0.0,0.0,0,56,0.0,0.0,762.2246428873113,569.0,169.04188549837556,0.0,71,2,2,2,1,2,2,2,2,0,,2,,2,131613,2,1,0,2,1,1140.0,366.0,263.0,22,1.0,1.0,3.0,2.0,1.5,2,1,331.481198386246,447.0,14258.386760490343,0,4,2,3,54.0,5,4,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.039906337901892644,9505.591173660228,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31591,2,75.0,0.0,2,111,360.0,,,0,86,0.0,0.0,,450.0,124.70303028568689,,71,0,0,0,0,0,0,0,0,0,,1,,2,131614,2,3,0,0,2,,120.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,104.60206043996341,360.0,5093.311823520789,0,6,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08835115845880691,5093.311823520789,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +31592,2,29.0,0.0,1,111,480.0,0.0,0.0,0,54,0.0,0.0,818.4962608185893,480.0,0.0,0.0,41,2,2,2,2,1,2,2,2,1,7.0,2,,1,131615,2,3,0,0,1,,0.0,590.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1168.16097783476,480.0,29535.8746651339,0,1,2,3,19.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.01625142324180512,29535.8746651339,8,4,8,8_0,8_4,8_1_0 +31593,2,74.0,0.0,2,112,500.0,0.0,0.0,75,77,2636.7071275915036,1191.8945493092015,852.6002716860306,3930.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131616,2,2,4,0,2,,350.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1067.43345087066,500.0,31870.449763023968,5,5,0,1,100.0,9,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12331172070748679,21246.966508682646,5,3,5,5_1,5_0,5_0_1 +31594,1,40.0,395.0,6,111,1330.0,0.0,0.0,85,42,0.0,0.0,2267.9167226848413,1510.0,249.40606057137379,0.0,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,131617,2,1,2,0,1,,600.0,,42,1.0,0.0,4.0,5.0,2.4,2,2,541.119795404993,1330.0,19148.8137199735,6,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0788560598103771,7978.672383322291,1,1,1_1,1_1_1,1_4_1,1_0_0_1 +31595,2,54.0,0.0,6,111,570.0,,,85,78,0.0,0.0,,846.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,4,131618,1,2,0,0,2,,220.0,,41,0.0,0.0,3.0,4.0,2.3,3,3,100.68502728452945,570.0,15370.0,6,7,0,1,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055042290175666884,6682.608695652174,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +31596,2,30.0,0.0,2,111,0.0,0.0,0.0,84,47,0.0,0.0,0.0,426.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,40.0,2,,2,131619,2,1,0,1,1,650.0,0.0,380.0,42,1.0,0.0,3.0,2.0,1.5,2,2,612.072471509126,0.0,25503.483369097146,3,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016703600595838173,17002.322246064763,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +31597,2,37.0,0.0,8,111,366.0,,,0,43,0.0,0.0,,401.0,48.49562288887823,,20,0,0,0,0,0,0,0,0,2,20.0,2,2003.0,6,131620,1,2,0,0,2,,141.0,351.0,32,1.0,0.0,3.0,2.0,1.3,1,1,89.11862958959463,366.0,35698.118911157224,0,1,2,3,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011233084886012578,27460.09147012094,7,4,7,7_0,7_3,7_0_0 +31598,0,54.0,0.0,2,112,300.0,,,0,47,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,131621,2,2,0,0,2,,300.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,122.98079060100862,300.0,10581.170731707316,0,4,0,1,100.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02835225020054031,10581.170731707316,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +31599,1,45.0,230.0,1,120,970.0,0.0,0.0,21,68,0.0,0.0,1654.0445270708994,1120.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131622,2,1,4,0,1,,300.0,,43,3.0,1.0,5.0,5.0,2.8,4,3,760.142664174631,970.0,19239.915107141635,1,1,1,2,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.05821231506288034,6871.398252550584,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +31600,2,38.0,0.0,2,111,330.0,150.0,0.0,0,53,0.0,0.0,562.7161793127802,480.0,0.0,284.77560719096834,50,2,1,2,2,1,1,2,2,0,,2,,2,131623,1,3,0,1,2,,0.0,422.0,12,1.0,0.0,2.0,1.0,1.0,1,1,908.950134618569,330.0,12268.53092301206,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.03912448874377167,12268.53092301206,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +31601,2,45.0,0.0,7,300,0.0,0.0,0.0,0,23,0.0,0.0,0.0,2001.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,5,131624,2,2,1,0,1,,107.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1233.12210406199,0.0,62199.49083813964,0,1,1,2,100.0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03217068135183226,62199.49083813964,10,5,10,10_1,10_0,10_0_0 +31602,2,63.0,0.0,2,111,180.0,0.0,0.0,0,71,3164.0485531098047,0.0,306.936097806971,3425.0,339.46936022214766,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131625,2,2,2,0,2,,89.0,,21,0.0,0.0,4.0,3.0,2.0,3,3,1270.79235064098,180.0,24995.519616977377,0,5,0,1,134.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13702455689993667,12497.759808488689,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +31603,2,30.0,0.0,2,111,246.0,162.0,0.0,46,38,0.0,0.0,419.479333669527,408.0,0.0,307.55765576624583,20,2,1,2,1,1,2,2,2,0,,2,,2,131626,1,3,0,1,1,509.0,0.0,252.0,43,2.0,1.0,4.0,2.0,1.5,2,2,284.625186734817,246.0,36803.15236673281,4,4,2,3,65.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.011086006870672316,24535.434911155204,7,4,7,7_0,7_3,7_0_1 +31604,2,55.0,0.0,6,111,1600.0,0.0,0.0,63,54,0.0,264.8654554020448,2728.320869395298,1800.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,,4,131627,2,1,2,0,1,,152.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,389.379489968133,1600.0,56321.87095773433,1,2,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03195916558508462,37547.91397182289,9,5,9,9_1,9_3,9_0_0 +31605,2,67.0,0.0,7,111,500.0,0.0,0.0,0,38,0.0,0.0,852.6002716860306,500.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,5,131628,2,1,1,0,1,,220.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1626.80073256458,500.0,50072.13819878014,0,1,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00998559314593402,50072.13819878014,10,5,10,10_1,10_3,10_0_0 +31606,2,78.0,0.0,7,111,0.0,,,0,86,0.0,0.0,,2060.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,131629,2,2,0,0,2,,352.0,461.0,21,0.0,0.0,3.0,2.0,1.5,2,2,123.57403080351303,0.0,9424.258348547475,0,6,2,3,51.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.2185848396566399,6282.83889903165,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +31607,2,62.0,0.0,2,111,600.0,1450.0,0.0,72,54,0.0,0.0,1023.1203260232367,2050.0,0.0,2752.830869512694,60,0,0,0,0,0,0,0,0,2,5.0,1,,2,131630,2,1,2,0,1,,400.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,406.899752071372,600.0,42860.17689052774,5,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04782994725467542,28573.451260351827,8,4,8,8_1,8_4,8_0_1 +31608,0,71.0,0.0,7,111,600.0,,,86,86,0.0,0.0,,726.0,174.58424239996165,,44,0,0,0,0,0,0,0,0,0,,1,,5,131631,2,1,0,0,2,,550.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,127.3871828671562,600.0,15239.101708302009,5,5,5,0,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.047640603356855826,10159.401138868006,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31609,1,41.0,413.0,7,111,922.0,,,0,54,0.0,0.0,,1048.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,2,,5,131632,2,2,0,0,2,,1151.0,491.0,32,1.0,2.0,4.0,3.0,1.6,1,1,71.09851596996029,922.0,12714.265829276574,0,4,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08242709520724485,7946.416143297858,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31610,1,42.0,413.0,8,111,250.0,,,0,81,0.0,0.0,,330.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,131633,1,1,0,0,2,,218.0,497.0,32,1.0,0.0,4.0,4.0,2.3,3,2,181.0045546300983,250.0,6561.764010553754,0,4,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.050291354499984675,2852.9408741538064,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31611,1,33.0,328.0,5,111,256.0,274.0,0.0,0,55,0.0,0.0,436.53133910324766,530.0,0.0,520.1901091355022,50,2,1,2,1,1,2,2,2,0,,2,,3,131634,2,3,0,1,1,787.0,0.0,291.0,32,1.0,0.0,4.0,3.0,1.6,1,1,410.223956832522,256.0,9267.40949570738,0,4,2,3,66.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.0571896602006735,5792.130934817112,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31612,2,73.0,0.0,5,111,1388.0,0.0,0.0,75,74,0.0,0.0,2366.818354200421,1388.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131635,2,1,3,0,1,,283.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,944.443502068435,1388.0,47293.295991190564,5,5,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029348768592033555,31528.86399412704,8,4,8,8_1,8_4,8_0_0 +31613,2,52.0,0.0,2,111,700.0,1650.0,0.0,52,33,0.0,0.0,1193.6403803604428,2350.0,0.0,3132.5316791006517,10,2,2,2,2,1,2,2,2,2,1.0,1,,2,131636,2,1,2,0,2,,350.0,,43,3.0,0.0,4.0,4.0,2.5,4,4,279.400324370078,700.0,84449.05555433629,1,1,1,2,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.027827427844802372,33779.62222173451,9,5,9,9_1,9_3,9_0_1 +31614,2,71.0,0.0,1,112,877.0,0.0,0.0,71,71,1499.7590141740475,0.0,1495.4608765372977,2374.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131637,1,2,3,0,2,,244.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,191.107545264742,877.0,19033.47575428351,5,5,0,1,115.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1247276131090102,12688.983836189007,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +31615,2,59.0,0.0,2,111,140.0,800.0,0.0,0,75,0.0,0.0,238.72807607208856,940.0,0.0,1518.8032383518312,41,0,0,0,0,0,0,0,0,0,,2,,2,131638,2,2,0,0,1,,136.0,306.0,11,0.0,1.0,2.0,1.0,1.0,1,1,421.124588695554,140.0,21857.460257635907,0,5,2,3,46.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.043005911433448035,21857.460257635907,6,3,6,6_0,6_3,6_0_1 +31616,2,68.0,0.0,1,112,1250.0,0.0,0.0,74,74,0.0,662.163638505112,2131.5006792150766,1810.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,131639,2,1,1,0,1,,265.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1662.21692129929,1250.0,77097.38840269267,5,5,1,2,70.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023476800414380637,51398.25893512845,10,5,10,10_1,10_0,10_1_0 +31617,2,78.0,0.0,1,221,0.0,0.0,1220.0,78,78,0.0,0.0,768.9883143059874,1220.0,0.0,1460.0132200289106,50,0,0,0,0,0,0,0,0,0,,1,,1,131640,1,3,1,0,1,,402.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,510.01666459184,0.0,18461.061169434135,5,5,0,1,70.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06608504185122069,12307.37411295609,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +31618,2,34.0,0.0,7,111,800.0,0.0,0.0,42,46,0.0,662.163638505112,1364.160434697649,1600.0,415.67676761895626,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,5,131641,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,656.632008656912,800.0,52588.59708680346,1,1,1,2,115.0,7,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030424846613782416,29215.887270446365,8,4,8,8_1,8_2,8_0_0 +31619,2,42.0,0.0,8,400,600.0,0.0,0.0,52,52,1265.6194212439218,0.0,1023.1203260232367,1950.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,131642,2,1,1,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1474.81813254929,600.0,43093.57147066739,1,1,1,2,120.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04525036875459049,17237.428588266957,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +31620,2,64.0,0.0,1,221,470.0,2000.0,0.0,0,77,0.0,0.0,801.4442553848687,2470.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,1,131643,1,2,5,0,2,,160.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2176.17881473239,470.0,12550.768015741884,0,5,0,1,100.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.19680070549483397,12550.768015741884,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +31621,2,28.0,0.0,5,111,600.0,0.0,0.0,46,38,0.0,397.2981831030672,1023.1203260232367,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,131644,1,2,3,0,1,,390.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1010.43205134209,600.0,69231.54155051413,1,1,1,2,110.0,6,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012999854977132404,38461.967528063404,9,5,9,9_1,9_2,9_0_0 +31622,1,58.0,420.0,2,111,690.0,130.0,0.0,0,85,0.0,0.0,1176.5883749267223,820.0,0.0,246.80552623217258,70,2,1,2,2,2,2,2,1,0,,2,,2,131645,1,2,0,1,1,1044.0,0.0,560.0,31,2.0,4.0,5.0,3.0,2.0,3,3,212.571493015775,690.0,7812.905235407226,0,6,2,3,95.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.1049545559933135,3906.452617703613,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +31623,2,72.0,0.0,1,111,0.0,796.0,0.0,0,77,0.0,0.0,0.0,796.0,0.0,1511.209222160072,70,0,0,0,0,0,0,0,0,0,,1,,1,131646,2,2,3,0,1,,150.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1045.31416879625,0.0,13194.0,0,5,0,1,70.0,8,7,5,0,1,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06033045323631954,13194.0,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +31624,2,54.0,0.0,2,111,800.0,150.0,0.0,22,56,0.0,0.0,1364.160434697649,950.0,0.0,284.77560719096834,42,0,0,0,0,0,0,0,0,2,1.0,1,,2,131647,2,1,2,0,1,,0.0,1200.0,43,2.0,1.0,5.0,3.0,1.8,2,2,1482.15423616143,800.0,26934.796314453975,1,1,2,3,100.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03527036139086016,14963.775730252208,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +31625,1,78.0,90.0,2,111,200.0,200.0,0.0,0,77,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,70,0,0,0,0,0,0,0,0,0,,2,,2,131648,2,1,0,1,1,720.0,0.0,240.0,11,0.0,2.0,3.0,1.0,1.0,1,1,478.8698810775,200.0,14240.534309109693,0,5,2,3,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.028088833699457427,14240.534309109693,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +31626,2,39.0,0.0,8,111,1200.0,0.0,0.0,0,46,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,2001.0,6,131649,2,2,1,0,1,,200.0,,32,1.0,0.0,6.0,2.0,1.3,1,1,1021.90134996392,1200.0,35535.49808737971,0,1,1,2,115.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03376904967109987,27334.998528753622,7,4,7,7_1,7_2,7_0_0 +31627,2,59.0,0.0,2,111,330.0,0.0,0.0,0,62,0.0,0.0,562.7161793127802,356.0,36.025319860309544,0.0,71,1,2,2,1,1,2,2,2,0,,2,,2,131650,1,1,0,1,2,,0.0,555.0,12,1.0,2.0,4.0,1.0,1.0,1,1,430.088596386001,330.0,36069.73338122282,0,4,2,3,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.009869770764242091,36069.73338122282,9,5,9,9_0,9_2,9_0_1 +31628,2,57.0,0.0,2,111,310.0,84.0,0.0,0,37,0.0,1986.490915515336,528.612168445339,1894.0,0.0,159.4743400269423,31,0,0,0,0,0,0,0,0,0,,2,,2,131651,2,3,0,1,1,,400.0,597.0,22,2.0,2.0,4.0,2.0,1.5,2,2,545.672228537292,310.0,39910.77362594509,0,4,2,3,83.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04745585785309743,26607.182417296728,7,4,7,7_0,7_4,7_0_1 +31629,2,64.0,0.0,1,111,1199.0,2079.0,0.0,85,74,0.0,0.0,2044.5354515031013,3278.0,0.0,3946.989915666821,20,0,0,0,0,0,0,0,0,0,,1,,1,131652,2,2,3,0,1,,510.0,,41,0.0,1.0,7.0,5.0,3.0,5,5,800.176588513734,1199.0,56455.41580028289,5,5,0,1,75.0,6,5,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058063517087470894,18818.47193342763,5,3,5,5_1,5_2,5_1_0 +31630,2,25.0,0.0,2,111,900.0,1000.0,0.0,43,46,0.0,0.0,1534.680489034855,1900.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,131653,2,1,2,0,2,,384.0,830.0,43,2.0,0.0,4.0,2.0,1.5,2,2,329.786630688836,900.0,42026.435919964475,1,1,2,3,75.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04520963908570256,28017.623946642983,7,4,7,7_1,7_3,7_0_1 +31631,1,38.0,253.0,6,111,310.0,0.0,0.0,0,22,0.0,0.0,528.612168445339,370.0,83.13535352379125,0.0,31,2,1,2,2,1,2,2,2,0,,2,,4,131654,1,2,0,1,1,709.0,0.0,241.0,12,1.0,0.0,1.0,1.0,1.0,1,1,287.169282503827,310.0,8624.81821435656,0,1,2,3,49.0,7,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.042899454899131835,8624.81821435656,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31633,2,29.0,0.0,2,111,250.0,1242.0,0.0,0,35,0.0,0.0,426.3001358430153,1492.0,0.0,2357.942027541218,12,2,2,2,1,2,2,2,2,0,,1,,2,131656,1,1,2,0,2,,126.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1073.70209848972,250.0,16264.781027456713,0,1,1,2,95.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09173194508314267,16264.781027456713,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +31634,2,82.0,0.0,2,111,0.0,1200.0,0.0,0,78,0.0,0.0,0.0,2778.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,1,,2,131657,2,2,1,0,1,,800.0,,21,0.0,0.0,4.0,3.0,2.0,3,3,241.055856090511,0.0,21498.913222666517,0,5,0,1,80.0,9,7,3,0,1,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1292158338995074,10749.456611333258,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +31635,2,61.0,0.0,1,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,2474.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,131658,1,1,2,0,2,,406.0,,21,0.0,0.0,5.0,3.0,2.0,3,3,627.486757377867,0.0,22181.456387197395,0,5,0,1,80.0,9,3,3,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.11153460606076045,11090.728193598698,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +31636,2,34.0,0.0,1,111,720.0,0.0,0.0,0,22,0.0,0.0,1227.744391227884,720.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,10.0,2,,1,131659,2,1,0,0,1,,0.0,1100.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1199.74713554353,720.0,55955.09887833343,0,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012867460060530671,55955.09887833343,10,5,10,10_0,10_4,10_1_0 +31637,2,90.0,0.0,1,111,216.0,1700.0,0.0,78,78,0.0,0.0,368.3233173683652,1916.0,0.0,3227.4568814976415,71,2,2,2,1,2,2,2,2,0,,1,,1,131660,2,1,3,0,2,,137.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1219.11447535163,216.0,19300.98769301516,5,5,0,1,70.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.09926953120090232,12867.325128676772,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +31638,2,30.0,0.0,9,111,1372.0,0.0,0.0,54,46,0.0,0.0,2339.535145506468,1372.0,0.0,0.0,31,0,0,0,0,0,0,0,0,4,40.0,1,2011.0,6,131661,2,1,1,0,1,,240.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1232.13679391834,1372.0,49498.91813398882,1,1,1,2,120.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027717777513563586,27499.39896332712,7,4,7,7_1,7_3,7_0_0 +31639,1,39.0,40.0,1,112,1300.0,0.0,0.0,54,22,0.0,3310.81819252556,2216.7607063836795,3875.0,103.91919190473907,0.0,43,1,2,1,1,1,2,2,2,0,,1,,1,131662,2,2,1,0,1,,500.0,,43,2.0,0.0,7.0,6.0,2.8999999999999995,3,2,1551.3989503422,1300.0,47218.83376750373,1,1,1,2,200.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.08206471212482162,16282.356471553014,4,2,4_1,4_1_1,4_0_1,4_1_0_1 +31640,2,47.0,0.0,2,111,0.0,0.0,0.0,64,64,0.0,0.0,0.0,1810.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,131663,2,3,0,0,1,,89.0,500.0,43,4.0,0.0,4.0,4.0,2.5,4,4,1802.42609696997,0.0,61225.18139487144,4,1,2,3,75.0,7,5,8,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029562999386256054,24490.072557948577,7,4,7,7_0,7_2,7_0_1 +31641,1,36.0,409.0,2,111,1000.0,0.0,0.0,54,22,0.0,0.0,1705.2005433720612,1167.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,131664,2,2,5,0,1,,300.0,728.0,43,2.0,0.0,5.0,5.0,2.4,2,2,1117.92051101004,1000.0,12508.916677673315,1,1,2,3,83.0,3,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.09329345058976478,5212.048615697215,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +31642,2,55.0,0.0,2,112,850.0,0.0,0.0,21,35,0.0,0.0,1449.420461866252,950.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131665,2,1,2,0,1,,500.0,,43,2.0,2.0,4.0,4.0,2.1,2,2,723.380090150396,850.0,25533.318264534504,1,1,0,1,65.0,7,2,8,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.037206288276269185,12158.722983111667,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +31643,2,43.0,0.0,7,111,440.0,1200.0,0.0,52,52,0.0,0.0,750.2882390837069,1640.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,3,15.0,2,,5,131666,2,2,0,0,1,,0.0,579.0,43,2.0,0.0,4.0,4.0,2.1,2,2,695.831862288537,440.0,40130.55878411169,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04086661261864367,19109.789897196042,5,3,5,5_0,5_4,5_0_0 +31644,2,36.0,0.0,1,111,1087.0,0.0,0.0,55,64,0.0,0.0,1853.5529906454306,1087.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,15.0,1,,1,131667,2,1,1,0,1,,350.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,269.71104560918,1087.0,47556.9149380634,1,1,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022856823269879343,26420.50829892411,7,4,7,7_1,7_3,7_1_0 +31645,2,50.0,0.0,5,111,450.0,685.0,0.0,55,68,0.0,0.0,767.3402445174275,1135.0,0.0,1300.4752728387555,50,0,0,0,0,0,0,0,0,2,40.0,1,,3,131668,1,2,2,0,1,,320.0,,43,3.0,0.0,5.0,4.0,2.5,4,4,655.910875766995,450.0,45944.29821071014,1,1,1,2,71.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024703827116798107,18377.719284284056,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +31646,2,72.0,0.0,1,400,450.0,0.0,0.0,77,78,0.0,794.5963662061343,767.3402445174275,1170.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131669,2,1,2,0,1,,420.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1546.39110618232,450.0,22140.7897817606,5,5,0,1,92.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05284364340805207,14760.526521173733,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +31647,2,41.0,0.0,2,111,1133.0,1553.0,0.0,65,65,0.0,0.0,1931.9922156405453,2686.0,0.0,2948.376786450492,42,0,0,0,0,0,0,0,0,2,40.0,1,,2,131670,2,2,2,0,1,,500.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,429.438658097171,1133.0,48013.82350754964,1,1,1,2,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055942222547172404,22863.725479785542,6,3,6,6_1,6_3,6_0_1 +31648,2,82.0,0.0,1,120,400.0,0.0,0.0,0,72,2636.7071275915036,0.0,682.0802173488245,2960.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131671,2,1,2,0,1,,350.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1989.57553686472,400.0,35442.82821291853,0,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08351477997800164,35442.82821291853,9,5,9,9_1,9_0,9_1_0 +31649,2,80.0,0.0,5,221,302.0,955.0,0.0,77,78,0.0,0.0,514.9705640983625,1257.0,0.0,1813.0713657824986,71,0,0,0,0,0,0,0,0,0,,1,,3,131672,2,1,1,0,1,,350.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2474.84555611949,302.0,22770.89695975711,5,5,0,1,58.0,1,1,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05520204154546436,15180.597973171405,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +31650,2,46.0,0.0,9,111,700.0,0.0,0.0,0,54,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2009.0,6,131673,2,1,0,0,1,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2042.16154765403,700.0,26452.302922261515,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026462724325257127,26452.302922261515,7,4,7,7_0,7_4,7_0_0 +31651,2,73.0,0.0,1,400,1280.0,0.0,0.0,0,71,5442.163511348864,0.0,2182.6566955162384,6550.0,152.4148147936173,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131674,2,2,3,0,1,,149.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1526.48614260083,1280.0,16945.153887191398,0,5,0,1,250.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.38654119305172274,16945.153887191398,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +31653,2,59.0,0.0,9,111,600.0,0.0,0.0,0,43,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,33,0,0,0,0,0,0,0,0,1,10.0,2,2006.0,6,131676,2,1,0,0,1,,100.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1785.30730517749,600.0,35345.019230859274,0,1,0,1,64.0,8,6,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.016975517712440453,35345.019230859274,9,5,9,9_0,9_2,9_0_0 +31654,2,49.0,0.0,7,112,860.0,0.0,0.0,46,47,2109.365702073203,0.0,1466.4724672999725,2895.0,48.49562288887823,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,131677,2,1,2,0,1,,400.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,1501.37766856929,860.0,41826.61854873515,1,1,0,1,140.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06921429703017544,20913.309274367573,5,3,5,5_1,5_0,5_0_0 +31655,2,40.0,0.0,2,111,0.0,0.0,0.0,53,56,0.0,0.0,0.0,496.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,131678,1,2,0,1,2,840.0,0.0,741.0,43,2.0,3.0,5.0,4.0,2.3,3,2,254.919301236078,0.0,40752.19965666761,1,1,2,3,94.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012171122152392766,17718.347676812005,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +31656,1,33.0,245.0,7,111,490.0,,,0,46,0.0,0.0,,510.0,27.711784507930417,,20,0,0,0,0,0,0,0,0,2,15.0,2,,5,131679,2,1,0,0,2,,160.0,427.0,22,2.0,1.0,3.0,2.0,1.5,2,2,134.86744676516412,490.0,46672.89927183364,0,1,2,3,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.010927112049106772,31115.266181222425,8,4,8,8_0,8_2,8_0_0 +31657,2,58.0,0.0,2,111,620.0,,,47,52,0.0,0.0,,758.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,131680,2,3,0,0,2,,450.0,190.0,43,2.0,1.0,3.0,2.0,1.5,2,2,155.1897171658427,620.0,15731.205533596836,4,1,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04818448264382242,10487.470355731224,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +31658,2,72.0,0.0,2,111,672.0,206.0,0.0,86,78,0.0,0.0,1145.894765146025,878.0,0.0,391.09183387559654,71,2,1,2,2,1,2,2,2,0,,2,,2,131681,2,1,0,1,1,889.0,0.0,736.0,41,1.0,5.0,4.0,3.0,2.0,3,3,212.571493015775,672.0,35361.8447581448,6,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024829021393115318,17680.9223790724,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +31659,2,42.0,0.0,5,111,2120.0,0.0,0.0,52,38,0.0,0.0,3615.0251519487697,2120.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,,3,131682,2,1,2,0,1,,550.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,743.61945798522,2120.0,81858.52910013801,1,1,1,2,120.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025898339773569493,38980.25195244667,9,5,9,9_1,9_2,9_0_0 +31660,2,71.0,0.0,7,112,700.0,0.0,0.0,75,74,0.0,0.0,1193.6403803604428,2028.0,1840.06249132658,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,131683,2,1,2,0,1,,180.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1035.00395512403,700.0,63344.0599015351,5,5,0,1,225.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0320156302446104,42229.37326769007,9,5,9,9_1,9_1,9_0_0 +31661,2,52.0,0.0,2,111,410.0,1159.0,0.0,0,38,0.0,0.0,699.1322227825451,1569.0,0.0,2200.3661915622156,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,131684,2,1,1,0,1,,283.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,1887.01153293681,410.0,45785.85341665425,0,1,1,2,79.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03426822660095462,30523.902277769503,8,4,8,8_1,8_2,8_0_1 +31662,1,47.0,121.0,2,111,1090.0,198.0,0.0,56,67,0.0,0.0,1858.6685922755466,1288.0,0.0,375.90380149207823,71,2,1,2,2,1,2,2,2,2,35.0,2,,2,131685,2,2,0,1,1,436.0,0.0,264.0,43,2.0,4.0,4.0,4.0,2.1,2,2,346.768707680003,1090.0,24638.628417238277,4,1,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05227563719004984,11732.680198684893,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +31664,2,47.0,0.0,7,111,2000.0,0.0,0.0,56,90,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,131687,2,1,2,0,1,,850.0,564.0,43,2.0,0.0,5.0,4.0,2.5,4,3,1365.75592511221,2000.0,41795.38537000598,1,1,2,3,80.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04785217272898455,16718.15414800239,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +31665,2,56.0,0.0,1,111,790.0,1160.0,0.0,21,54,0.0,0.0,1347.1084292639284,1950.0,0.0,2202.2646956101553,60,0,0,0,0,0,0,0,0,2,10.0,1,,1,131688,2,2,2,0,1,,98.0,,43,4.0,1.0,4.0,4.0,2.5,4,4,1744.20745658639,790.0,96397.79484875445,1,1,0,1,110.0,7,6,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020228678498916887,38559.11793950178,9,5,9,9_1,9_2,9_1_0 +31666,2,66.0,0.0,5,111,1965.0,0.0,0.0,78,74,0.0,0.0,3350.7190677261,1965.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,131689,2,2,3,0,1,,351.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,575.961476938637,1965.0,49478.670734727086,5,5,0,1,140.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03971408226658049,32985.780489818055,8,4,8,8_1,8_4,8_0_0 +31667,2,77.0,0.0,2,112,200.0,0.0,0.0,0,77,1265.6194212439218,0.0,341.04010867441224,1540.0,193.98249155551292,0.0,71,2,2,1,2,1,2,2,2,0,,1,,2,131690,2,2,2,0,1,,300.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,1485.91876926817,200.0,17204.643771259784,0,5,0,1,90.0,8,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.08951071701772503,17204.643771259784,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +31668,2,68.0,0.0,8,111,540.0,,,75,75,0.0,0.0,,582.0,58.19474746665388,,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,131691,2,1,0,0,1,,508.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,105.64984327432173,540.0,73106.57930320865,5,5,1,2,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00796097978522784,48737.71953547243,10,5,10,10_1,10_3,10_0_0 +31669,2,47.0,0.0,2,111,200.0,500.0,0.0,0,63,0.0,0.0,341.04010867441224,700.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,0,,2,,2,131692,2,2,0,0,1,,0.0,289.0,12,1.0,2.0,2.0,1.0,1.0,1,1,922.97851993949,200.0,20681.980570355798,0,1,2,3,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.033845888096584634,20681.980570355798,5,3,5,5_0,5_4,5_0_1 +31670,2,63.0,0.0,1,111,1300.0,0.0,0.0,0,74,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,131693,2,1,3,0,1,,1300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,493.900187072786,1300.0,46352.837056076365,0,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02804574827701045,46352.837056076365,10,5,10,10_1,10_4,10_1_0 +31671,2,64.0,0.0,2,111,380.0,1100.0,0.0,72,72,0.0,0.0,647.9762064813832,1480.0,0.0,2088.354452733768,50,2,2,2,2,1,2,2,2,0,,1,,2,131694,2,1,2,0,2,,320.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,336.925803455855,380.0,22565.584937242405,6,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.06558660030821524,15043.723291494936,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +31672,2,55.0,0.0,5,111,485.0,700.0,0.0,35,34,0.0,0.0,827.0222635354497,1185.0,0.0,1328.9528335578523,10,0,0,0,0,0,0,0,0,2,25.0,2,,3,131695,2,1,0,1,2,,0.0,,43,2.0,0.0,5.0,3.0,2.0,3,2,2123.75765587566,485.0,75011.62352666745,1,1,0,1,98.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01579755168982204,37505.811763333724,9,5,9,9_0,9_2,9_0_0 +31673,2,52.0,0.0,9,111,0.0,0.0,0.0,46,37,0.0,0.0,0.0,1946.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,131696,2,1,1,0,1,,689.0,,43,3.0,0.0,7.0,6.0,3.5,6,5,275.799146984077,0.0,89609.94607562183,1,1,1,2,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02171633937105342,25602.84173589195,7,4,7,7_1,7_4,7_0_0 +31674,2,66.0,0.0,5,211,300.0,,,0,90,0.0,0.0,,564.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,3,131697,1,2,0,0,2,,60.0,,11,0.0,6.0,4.0,1.0,1.0,1,1,95.73680537237341,300.0,9367.152225229143,0,5,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06021040188510475,9367.152225229143,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31675,2,31.0,0.0,6,300,0.0,,,0,34,0.0,0.0,,599.0,0.0,,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,131698,2,1,0,0,2,,857.0,800.0,12,1.0,0.0,4.0,1.0,1.0,1,1,89.65804545182175,0.0,47553.838955012965,0,1,2,3,85.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012596249076056044,47553.838955012965,10,5,10,10_1,10_0,10_0_0 +31676,2,69.0,0.0,8,111,4800.0,,,0,75,0.0,0.0,,5112.0,432.30383832371456,,60,0,0,0,0,0,0,0,0,0,,1,1999.0,6,131699,2,2,0,0,2,,480.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,101.21658591438154,4800.0,28679.863996458123,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1782435230735863,28679.863996458123,8,4,8,8_1,8_2,8_0_0 +31677,2,61.0,0.0,2,111,1200.0,0.0,0.0,77,68,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131700,2,1,2,0,1,,480.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,543.498575332034,1200.0,49792.92516544465,6,1,0,1,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02409980928039105,33195.28344362976,8,4,8,8_1,8_4,8_0_1 +31678,2,59.0,0.0,5,111,420.0,1860.0,0.0,86,52,0.0,0.0,716.1842282162656,2280.0,0.0,3531.2175291680073,41,0,0,0,0,0,0,0,0,2,10.0,2,,3,131701,2,1,0,1,2,584.0,0.0,480.0,42,1.0,2.0,2.0,2.0,1.5,2,2,1956.04194451721,420.0,44776.40252471061,5,1,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.050919678032234586,29850.93501647374,8,4,8,8_0,8_3,8_0_0 +31679,2,61.0,0.0,5,111,770.0,0.0,0.0,0,77,0.0,529.7309108040896,1313.0044183964872,1190.0,27.711784507930417,0.0,33,0,0,0,0,0,0,0,0,0,,1,,3,131702,1,2,2,0,1,,164.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1462.2018385107,770.0,15236.646867117075,0,7,0,1,83.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07810117346541613,15236.646867117075,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +31680,2,31.0,0.0,5,111,700.0,,,0,54,0.0,0.0,,720.0,27.711784507930417,,31,0,0,0,0,0,0,0,0,2,5.0,2,,3,131703,2,3,0,0,2,,320.0,250.0,32,1.0,0.0,3.0,3.0,1.8,2,1,149.28613144792024,700.0,30441.963441830445,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023651562468229123,16912.201912128025,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +31681,2,44.0,0.0,8,111,500.0,0.0,0.0,63,43,2109.365702073203,463.51454695357836,852.6002716860306,2940.0,124.70303028568689,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2000.0,6,131704,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,813.042020566193,500.0,51498.430950448565,1,1,0,1,138.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0570891179738825,20599.372380179426,5,3,5,5_1,5_2,5_0_0 +31682,2,58.0,0.0,2,112,700.0,0.0,0.0,0,67,2109.365702073203,0.0,1193.6403803604428,2850.0,207.83838380947813,0.0,60,0,0,0,0,0,0,0,0,2,10.0,1,,2,131705,1,1,3,0,1,,230.0,,22,2.0,2.0,5.0,2.0,1.5,2,2,1179.23039130348,700.0,42063.22823573334,0,1,0,1,100.0,6,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0677551419503005,28042.15215715556,8,4,8,8_1,8_0,8_0_1 +31683,2,51.0,0.0,9,111,700.0,0.0,0.0,52,52,0.0,1324.327277010224,1193.6403803604428,1800.0,138.5589225396521,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,2011.0,6,131706,2,1,1,0,1,,200.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,358.346307996324,700.0,37071.7969431228,1,1,1,2,166.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048554430818706744,18535.8984715614,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +31684,2,62.0,0.0,5,112,796.0,0.0,0.0,78,78,0.0,0.0,1357.3396325241606,796.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,131707,2,3,0,0,1,,0.0,,41,0.0,6.0,2.0,2.0,1.5,2,2,1938.09310319334,796.0,30908.623723493776,5,5,0,1,20.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02575333043363419,20605.749148995852,5,3,5,5_0,5_1,5_0_0 +31685,2,43.0,0.0,2,111,794.0,396.0,0.0,52,52,0.0,0.0,1353.9292314374165,1190.0,0.0,751.8076029841565,71,1,2,2,1,1,2,2,2,3,30.0,2,,2,131708,1,3,0,1,1,1050.0,0.0,434.0,43,2.0,0.0,4.0,5.0,2.4,2,2,168.184104109589,794.0,24584.258329185304,1,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04840495833007444,10243.440970493877,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +31686,2,89.0,0.0,1,111,1122.0,90.0,0.0,86,74,0.0,0.0,1913.2350096634527,1212.0,0.0,170.865364314581,12,0,0,0,0,0,0,0,0,0,,2,,1,131709,2,3,0,0,2,,0.0,2800.0,41,0.0,0.0,5.0,2.0,1.5,2,2,1037.31185865155,1122.0,70891.16336959605,6,5,2,3,99.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017096630135425384,47260.775579730696,10,5,10,10_0,10_4,10_1_0 +31687,2,43.0,0.0,7,111,495.0,,,63,56,0.0,0.0,,575.0,110.84713803172167,,71,0,0,0,0,0,0,0,0,0,,1,,5,131710,1,1,0,0,2,,245.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,122.06747146244699,495.0,23569.77286891565,4,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024395652991562045,9427.90914756626,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31689,2,68.0,0.0,2,111,450.0,0.0,0.0,77,74,0.0,0.0,767.3402445174275,450.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,131712,2,1,0,1,1,879.0,0.0,335.0,41,0.0,2.0,5.0,3.0,2.0,3,3,996.870248662398,450.0,48339.330195816874,5,5,2,3,95.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009309189808321785,24169.665097908437,7,4,7,7_0,7_4,7_0_1 +31690,2,58.0,0.0,5,400,800.0,0.0,0.0,0,45,0.0,0.0,1364.160434697649,1150.0,484.95622888878233,0.0,42,0,0,0,0,0,0,0,0,4,105.0,1,,3,131713,2,2,1,0,2,,181.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,925.054069680946,800.0,28367.18362646965,0,1,1,2,180.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04053980173509102,28367.18362646965,8,4,8,8_1,8_0,8_0_0 +31691,2,46.0,0.0,7,111,480.0,,,55,64,0.0,0.0,,700.0,304.8296295872346,,60,0,0,0,0,0,0,0,0,2,10.0,1,,5,131714,2,1,0,0,1,,280.0,,43,4.0,0.0,5.0,5.0,2.8,4,4,125.70710051382812,480.0,73585.0314571201,1,1,0,1,105.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00951280425024902,26280.368377542894,7,4,7,7_1,7_2,7_0_0 +31692,2,65.0,0.0,5,111,1828.0,0.0,0.0,75,72,0.0,264.8654554020448,3117.106593284128,2028.0,0.0,0.0,71,1,2,2,1,2,2,2,2,0,,1,,3,131715,2,1,1,0,1,,382.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1411.02356809379,1828.0,36389.23945406794,5,5,0,1,178.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.05573076080800833,24259.492969378625,7,4,7,7_1,7_3,7_0_0 +31693,2,48.0,0.0,7,111,600.0,,,0,56,0.0,0.0,,738.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,131716,2,3,0,0,2,,200.0,,32,1.0,1.0,3.0,2.0,1.3,1,1,107.37008457244231,600.0,5831.541706731292,0,4,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12655315474261872,4485.801312870224,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31694,1,73.0,270.0,2,111,150.0,0.0,0.0,0,77,0.0,0.0,255.78008150580916,188.0,52.6523905650678,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,131717,2,2,0,1,1,37.0,0.0,256.0,11,0.0,3.0,3.0,1.0,1.0,1,1,401.781762140196,150.0,10482.990057507297,0,5,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.017933814586170053,10482.990057507297,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +31695,1,36.0,264.0,9,111,0.0,0.0,0.0,0,35,0.0,0.0,0.0,530.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,2013.0,6,131718,2,1,0,0,1,,164.0,115.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2302.02408675821,0.0,5826.765561406882,0,4,2,3,18.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0909595545615243,5826.765561406882,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +31696,2,44.0,0.0,8,111,450.0,1380.0,0.0,43,34,0.0,794.5963662061343,767.3402445174275,2430.0,0.0,2619.935586156909,10,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,131719,2,2,1,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1695.27929162743,450.0,72291.57022274923,1,1,1,2,110.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033613877697116476,34424.557248928206,9,5,9,9_1,9_3,9_0_0 +31697,2,68.0,0.0,1,111,2000.0,360.0,0.0,77,78,0.0,0.0,3410.4010867441225,2360.0,0.0,683.461457258324,71,0,0,0,0,0,0,0,0,0,,1,,1,131720,2,1,1,0,1,,0.0,,41,0.0,1.0,4.0,4.0,2.5,4,4,550.110473311757,2000.0,33789.06087862525,5,5,1,2,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06984509005673258,13515.6243514501,3,2,3_0,3_1_0,3_4_0,3_1_0_0 +31698,2,26.0,0.0,1,111,324.0,0.0,0.0,0,38,0.0,0.0,552.4849760525478,324.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,70.0,2,,1,131721,2,2,0,0,1,,0.0,665.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.10309028357,324.0,28143.086332612736,0,1,2,3,15.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011512596599063932,28143.086332612736,8,4,8,8_0,8_4,8_1_0 +31699,1,33.0,467.0,6,111,588.0,,,0,85,0.0,0.0,,735.0,203.68161613328857,,50,0,0,0,0,0,0,0,0,0,,1,,4,131722,1,2,0,0,2,,420.0,550.0,31,0.0,0.0,6.0,4.0,1.9,1,1,122.96341018622067,588.0,16568.994884296688,0,6,2,3,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.044359962999119415,8720.523623314046,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +31700,2,47.0,0.0,1,221,700.0,0.0,0.0,54,63,0.0,973.3805486025145,1193.6403803604428,1435.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,131723,1,3,3,0,2,,445.0,,42,1.0,0.0,6.0,4.0,2.3,3,3,558.122024213099,700.0,30092.74083313238,6,1,0,1,200.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0476859189382993,13083.80036223147,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +31701,2,60.0,0.0,1,112,1056.0,0.0,0.0,52,77,0.0,0.0,1800.6917738008965,1256.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131724,2,1,2,0,1,,103.0,,42,1.0,3.0,2.0,2.0,1.5,2,2,1845.44230311393,1056.0,13380.813918674346,1,7,0,1,40.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0938657399791741,8920.542612449564,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +31702,2,46.0,0.0,1,111,410.0,1200.0,0.0,54,63,0.0,0.0,699.1322227825451,1610.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,131725,2,1,2,0,1,,120.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1169.22024018005,410.0,40246.24614629008,1,1,1,2,115.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04000373088580363,17498.36788969134,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +31703,1,56.0,66.0,2,112,880.0,460.0,0.0,0,45,0.0,0.0,1500.5764781674138,1340.0,0.0,873.3118620523029,71,2,2,2,1,1,2,2,2,2,5.0,2,,2,131726,2,3,0,1,1,,340.0,530.0,32,2.0,2.0,4.0,5.0,2.8,4,4,750.618923825338,880.0,29680.097227274127,0,1,2,3,65.0,10,4,1,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.045148100079962845,10600.034724026475,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +31704,2,77.0,0.0,7,111,290.0,,,0,77,0.0,0.0,,359.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,5,131727,1,2,0,0,2,,220.0,,21,1.0,0.0,3.0,2.0,1.5,2,2,74.42134519953629,290.0,5174.95,0,5,0,1,75.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06937265094348738,3449.9666666666667,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31705,2,77.0,0.0,7,111,800.0,,,74,75,0.0,0.0,,850.0,69.27946126982604,,12,0,0,0,0,0,0,0,0,0,,2,,5,131728,2,1,0,0,1,,600.0,942.0,41,0.0,2.0,5.0,2.0,1.5,2,2,136.2502823028458,800.0,70581.25294270455,5,5,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012042857905767144,47054.1686284697,10,5,10,10_0,10_2,10_0_0 +31706,1,54.0,342.0,1,112,360.0,0.0,0.0,0,54,0.0,317.83854648245375,613.872195613942,750.0,207.83838380947813,0.0,31,2,2,2,2,1,1,1,2,0,,1,,1,131729,1,1,3,0,2,,320.0,327.0,32,2.0,2.0,5.0,3.0,2.0,3,3,999.742275818467,360.0,22576.494722624786,0,4,2,3,150.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0.03322039179308007,11288.247361312393,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +31707,2,67.0,0.0,8,400,270.0,0.0,0.0,0,77,0.0,0.0,460.40414671045653,538.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,2,2001.0,6,131730,2,1,0,1,1,50.0,0.0,400.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1435.16547035138,270.0,16448.773918402636,0,5,2,3,42.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.032707604996509425,16448.773918402636,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +31708,2,46.0,0.0,9,112,600.0,1320.0,0.0,54,37,0.0,0.0,1023.1203260232367,1920.0,0.0,2506.0253432805216,12,0,0,0,0,0,0,0,0,2,40.0,1,2012.0,6,131731,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,3,2,242.865684645599,600.0,56903.63103079681,1,1,1,2,157.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033741256317384685,27096.96715752229,7,4,7,7_1,7_0,7_0_0 +31709,2,62.0,0.0,5,112,712.0,0.0,0.0,71,71,1054.6828510366015,0.0,1214.1027868809076,1712.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131732,2,1,2,0,1,,0.0,,41,2.0,1.0,5.0,4.0,2.5,4,4,774.661913206656,712.0,59792.396499288036,5,5,0,1,100.0,7,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.028632403118687262,23916.958599715213,6,3,6,6_1,6_0,6_0_0 +31710,0,31.0,0.0,7,111,420.0,,,47,42,0.0,0.0,,420.0,0.0,,20,0,0,0,0,0,0,0,0,2,10.0,1,,5,131733,2,1,0,0,2,,80.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,182.4500342002805,420.0,60918.47260188893,1,1,5,0,78.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006894460449538206,33843.59588993829,9,5,9,9_1,9_2,9_0_0 +31711,2,57.0,0.0,2,111,480.0,80.0,0.0,67,48,0.0,0.0,818.4962608185893,560.0,0.0,151.8803238351831,70,2,2,1,1,1,1,1,2,2,25.0,2,,2,131734,1,2,0,1,2,624.0,520.0,290.0,43,3.0,0.0,4.0,3.0,2.0,3,3,391.653143610331,480.0,57810.02339265119,1,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.00968690145991512,28905.011696325593,8,4,8,8_0,8_3,8_0_1 +31712,2,84.0,0.0,2,111,300.0,2450.0,0.0,0,72,0.0,0.0,511.56016301161833,2750.0,0.0,4651.334917452483,70,1,2,2,1,1,2,2,2,0,,1,,2,131735,1,3,3,0,1,,240.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,782.407848177498,300.0,17547.98403675431,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,0,0,0,0.1567131582887308,17547.98403675431,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +31713,2,76.0,0.0,1,111,346.0,0.0,0.0,77,75,0.0,0.0,589.9993880067332,3026.0,3713.379124062676,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131736,2,1,2,0,1,,160.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,381.686934082759,346.0,45078.32742843833,5,5,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06712760150215784,30052.218285625553,8,4,8,8_1,8_4,8_1_0 +31714,2,34.0,0.0,6,112,600.0,0.0,0.0,54,38,0.0,0.0,1023.1203260232367,640.0,55.423569015860835,0.0,12,2,2,2,2,1,2,2,2,2,15.0,1,,4,131737,1,3,3,0,2,,180.0,680.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1255.34888113348,600.0,31247.284919280617,4,1,2,3,45.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.020481779509908673,20831.52327952041,5,3,5,5_1,5_1,5_0_0 +31715,2,72.0,0.0,6,112,180.0,,,0,77,0.0,0.0,,314.0,185.6689562031338,,71,0,0,0,0,0,0,0,0,0,,1,,4,131738,2,2,0,0,2,,160.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,100.92306884857064,180.0,10353.975609756104,0,5,0,1,68.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030326515324619014,10353.975609756104,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31716,2,48.0,0.0,2,111,0.0,0.0,580.0,0,62,0.0,0.0,365.5846084405514,580.0,0.0,694.1046455875148,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,131739,2,2,0,1,1,,180.0,419.0,32,2.0,0.0,3.0,3.0,2.0,3,2,553.68162054903,0.0,29635.855857655668,0,1,2,3,62.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01957088746772845,14817.927928827834,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +31717,2,40.0,0.0,9,120,0.0,,,75,22,0.0,0.0,,356.0,0.0,,41,0,0,0,0,0,0,0,0,2,8.0,1,2013.0,6,131740,1,1,0,0,2,,651.0,,42,1.0,1.0,4.0,3.0,1.8,2,2,258.18881265587896,0.0,23613.084848372186,6,1,0,1,65.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015076386769708388,13118.38047131788,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31718,1,44.0,467.0,9,221,348.0,,,0,81,0.0,0.0,,486.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,8,2006.0,6,131741,1,2,0,0,2,,628.0,604.0,32,1.0,1.0,3.0,5.0,2.4,2,1,103.18657984364816,348.0,10342.84,0,4,2,3,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04698902815861021,4309.516666666667,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +31719,2,38.0,0.0,6,211,330.0,,,63,52,0.0,0.0,,594.0,365.79555550468154,,50,0,0,0,0,0,0,0,0,0,,1,,4,131742,2,3,0,0,2,,540.0,,43,2.0,1.0,4.0,4.0,2.3,3,3,104.06805143208251,330.0,19587.61268145503,4,4,0,1,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030325288214544978,8516.353339763056,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31720,2,59.0,0.0,9,111,492.0,750.0,0.0,75,43,0.0,264.8654554020448,838.958667339054,1442.0,0.0,1423.8780359548418,60,0,0,0,0,0,0,0,0,2,45.0,1,2006.0,6,131743,2,1,1,0,1,,403.0,,42,1.0,3.0,7.0,3.0,2.0,3,3,1224.07222799167,492.0,52647.560002874125,5,1,1,2,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.027389683395038226,26323.780001437062,7,4,7,7_1,7_3,7_0_0 +31721,2,56.0,0.0,2,111,450.0,310.0,0.0,54,64,0.0,0.0,767.3402445174275,760.0,0.0,588.5362548613346,42,2,1,2,1,1,2,2,2,2,30.0,2,,2,131744,2,3,0,1,1,600.0,0.0,487.0,42,3.0,0.0,3.0,4.0,2.5,4,4,197.421110507697,450.0,77944.904295466,4,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009750477043618729,31177.961718186398,8,4,8,8_0,8_4,8_0_1 +31722,2,73.0,0.0,7,111,750.0,0.0,0.0,86,77,0.0,529.7309108040896,1278.9004075290459,1255.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,131745,2,2,2,0,1,,520.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,745.765776368709,750.0,32935.2974967758,6,5,0,1,96.0,7,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03810501484381182,21956.86499785053,6,3,6,6_1,6_2,6_0_0 +31723,1,37.0,224.0,2,111,200.0,100.0,0.0,0,22,0.0,0.0,341.04010867441224,300.0,0.0,189.8504047939789,71,2,1,2,2,1,2,2,2,0,,2,,2,131746,2,2,0,1,1,200.0,0.0,210.0,12,1.0,0.0,1.0,1.0,1.0,1,1,946.607764840063,200.0,10198.608888888888,0,4,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.029415776530742538,10198.608888888888,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +31724,2,75.0,0.0,2,111,401.0,0.0,0.0,0,75,1265.6194212439218,0.0,683.7854178921965,1601.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,2,131747,2,2,1,0,1,,40.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1442.28203518719,401.0,25767.528395330384,0,5,0,1,132.0,8,7,7,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06213246282053714,25767.528395330384,7,4,7,7_1,7_3,7_0_1 +31725,2,69.0,0.0,1,111,400.0,700.0,0.0,0,90,0.0,0.0,682.0802173488245,1100.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,1,,1,131748,2,2,2,0,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,800.983492205788,400.0,16361.090756365149,0,5,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06723268126680698,16361.090756365149,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +31726,1,37.0,473.0,6,111,696.0,,,55,63,0.0,0.0,,766.0,96.99124577775646,,50,0,0,0,0,0,0,0,0,2,30.0,1,,4,131749,1,3,0,0,2,,170.0,590.0,43,2.0,5.0,4.0,5.0,2.4,2,2,168.54567099912128,696.0,38259.84303942472,1,1,2,3,92.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.02002099170168257,15941.601266426967,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +31727,1,57.0,270.0,2,111,210.0,102.0,0.0,0,78,0.0,0.0,358.0921141081328,312.0,0.0,193.6474128898585,71,0,0,0,0,0,0,0,0,0,,2,,2,131750,2,1,0,1,1,864.0,84.0,306.0,11,0.0,2.0,4.0,1.0,1.0,1,1,327.839182431314,210.0,17586.806760797655,0,7,2,3,71.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017740571340982263,17586.806760797655,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +31728,2,61.0,0.0,1,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1112.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,3,,1,131751,2,2,0,0,1,,215.0,380.0,21,0.0,1.0,1.0,2.0,1.5,2,2,1013.52215779003,0.0,18601.57487995404,0,5,2,3,13.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05977988461602491,12401.04991996936,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +31729,2,83.0,0.0,1,111,1078.0,100.0,0.0,0,78,0.0,0.0,1838.2061857550818,1178.0,0.0,189.8504047939789,70,0,0,0,0,0,0,0,0,0,,1,,1,131752,2,1,2,0,1,,113.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,237.29743860118,1078.0,17309.286982345297,0,5,0,1,70.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06805595176748226,17309.286982345297,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +31730,2,69.0,0.0,2,111,600.0,1227.0,0.0,0,45,0.0,66.2163638505112,1023.1203260232367,1877.0,0.0,2329.4644668221213,50,0,0,0,0,0,0,0,0,0,,1,,2,131753,1,2,3,0,2,,400.0,,21,1.0,1.0,6.0,2.0,1.5,2,2,259.779221396245,600.0,45761.4799346413,0,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04101703010219118,30507.653289760867,8,4,8,8_1,8_4,8_0_1 +31731,2,39.0,0.0,2,111,280.0,0.0,0.0,0,52,0.0,0.0,477.4561521441771,280.0,0.0,0.0,44,2,1,2,2,1,2,2,2,2,25.0,2,,2,131754,2,3,0,1,1,518.0,0.0,385.0,12,1.0,0.0,2.0,1.0,1.0,1,1,867.790626256065,280.0,19794.47684772203,0,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.01414535994833441,19794.47684772203,5,3,5,5_0,5_4,5_0_1 +31732,2,55.0,0.0,7,112,600.0,0.0,0.0,46,34,0.0,900.5425483669522,1023.1203260232367,1340.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,131755,2,1,1,0,1,,292.0,,43,2.0,0.0,5.0,4.0,2.3,3,2,1226.70875260004,600.0,54953.64335034027,1,1,0,1,160.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024384188532455196,23892.888413191424,6,3,6,6_1,6_0,6_0_0 +31733,2,83.0,0.0,2,221,850.0,0.0,0.0,0,78,0.0,0.0,1449.420461866252,985.0,187.05454542853033,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131756,2,1,0,0,1,,96.0,229.0,11,0.0,3.0,3.0,1.0,1.0,1,1,2487.13496532423,850.0,24738.582426706405,0,5,2,3,63.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03981634771993437,24738.582426706405,7,4,7,7_0,7_1,7_0_1 +31734,2,67.0,0.0,2,111,535.0,1636.0,0.0,75,74,0.0,0.0,912.2822907040527,2171.0,0.0,3105.952622429495,10,2,2,2,1,1,2,2,2,0,,1,,2,131757,1,3,3,0,1,,488.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,776.015810759564,535.0,60886.39841354141,6,5,0,1,203.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,0,0.03565656791282895,40590.93227569427,9,5,9,9_1,9_4,9_0_1 +31735,2,61.0,0.0,5,112,632.0,0.0,0.0,77,75,210.9365702073203,0.0,1077.6867434111427,2825.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131758,2,2,1,0,1,,275.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1577.89686355677,632.0,45413.76956748104,5,5,0,1,98.0,7,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062205802929490094,30275.846378320693,8,4,8,8_1,8_0,8_0_0 +31736,2,70.0,0.0,1,212,700.0,0.0,0.0,74,74,2636.7071275915036,0.0,1193.6403803604428,3200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,5,,1,131759,1,1,3,0,2,,0.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1430.56273697076,700.0,61080.78505357501,5,5,0,1,220.0,3,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05238963443566131,40720.52336905001,9,5,9,9_1,9_0,9_1_0 +31737,2,33.0,0.0,1,112,1152.0,0.0,0.0,53,46,0.0,1715.00382372824,1964.3910259646145,2447.0,0.0,0.0,31,2,2,2,1,2,2,2,2,2,25.0,1,,1,131760,2,1,2,0,1,,261.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1944.44712709432,1152.0,46187.177893132895,1,1,1,2,140.0,8,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.052980071777968915,25659.543273962718,7,4,7,7_1,7_0,7_1_0 +31738,2,69.0,0.0,8,300,1100.0,0.0,0.0,77,78,0.0,0.0,1875.7205977092674,1160.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,131761,2,1,1,0,1,,412.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,252.632663371291,1100.0,29711.075816356944,5,5,1,2,60.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03904267913992468,19807.383877571297,5,3,5,5_1,5_0,5_0_0 +31739,2,49.0,0.0,6,111,1045.0,0.0,0.0,46,33,0.0,264.8654554020448,1781.934567823804,1305.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,4,131762,2,1,3,0,1,,298.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,547.446922174986,1045.0,156984.9979590109,1,1,0,1,125.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008312896244650958,104656.66530600727,10,5,10,10_1,10_4,10_0_0 +31740,2,52.0,0.0,1,111,400.0,900.0,0.0,0,34,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,3,50.0,1,,1,131763,2,1,2,0,1,,356.0,,32,1.0,0.0,4.0,3.0,2.0,3,3,1087.82000006605,400.0,38326.42339901929,0,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.033919157717003795,19163.211699509644,5,3,5,5_1,5_4,5_1_0 +31741,2,65.0,0.0,5,111,458.0,0.0,0.0,31,31,0.0,0.0,780.981848864404,2318.0,2577.1959592375288,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,3,131764,2,1,1,0,1,,630.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1294.89743907252,458.0,235751.25724444108,1,1,0,1,183.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.009832397193099836,157167.50482962737,10,5,10,10_1,10_2,10_0_0 +31742,2,32.0,0.0,9,120,1300.0,0.0,0.0,52,21,0.0,132.4327277010224,2216.7607063836795,1470.0,96.99124577775646,0.0,44,0,0,0,0,0,0,0,0,0,,1,2012.0,6,131765,2,1,1,0,1,,180.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2441.31486457613,1300.0,5773.470250376464,1,1,1,2,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.2546128993916869,3207.4834724313687,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +31743,2,48.0,0.0,9,112,1200.0,0.0,0.0,47,38,0.0,66.2163638505112,2046.2406520464733,1250.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,27.0,1,2010.0,6,131766,1,1,1,0,1,,251.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1718.62781606264,1200.0,69351.91880353034,1,1,1,2,211.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01802401464249565,33024.72323977635,8,4,8,8_1,8_0,8_0_0 +31744,2,42.0,0.0,5,111,650.0,650.0,0.0,85,38,0.0,0.0,1108.3803531918397,1300.0,0.0,1234.027631160863,12,2,2,2,1,2,1,2,2,3,60.0,2,,3,131767,2,3,0,0,1,,0.0,640.0,42,1.0,2.0,4.0,4.0,2.3,3,2,954.076191529999,650.0,55815.853903009425,6,1,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,1,1,0,0,0.02329087363348405,24267.76256652584,7,4,7,7_0,7_4,7_0_0 +31745,2,48.0,0.0,9,111,1000.0,,,0,22,0.0,0.0,,1150.0,207.83838380947813,,60,0,0,0,0,0,0,0,0,0,,1,2007.0,6,131768,2,1,0,0,2,,800.0,,32,1.0,0.0,5.0,3.0,1.8,2,1,88.02517275368662,1000.0,29766.004829943293,0,1,1,2,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038634677598491506,16536.669349968495,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +31746,2,89.0,0.0,1,111,1036.0,0.0,0.0,77,78,0.0,0.0,1766.5877629334555,1216.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131769,1,2,2,0,2,,282.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2675.70810004126,1036.0,16652.180048145696,5,5,0,1,78.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07302347179073455,11101.453365430463,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +31747,2,65.0,0.0,2,111,420.0,76.0,0.0,0,74,0.0,0.0,716.1842282162656,496.0,0.0,144.28630764342395,41,2,1,2,1,2,2,2,2,0,,2,,2,131770,2,1,0,1,1,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,987.17133072866,420.0,25779.29227927478,0,5,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0.019240248903138368,25779.29227927478,7,4,7,7_0,7_4,7_0_1 +31748,2,60.0,0.0,9,112,1300.0,0.0,0.0,55,62,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,33,0,0,0,0,0,0,0,0,3,40.0,1,2009.0,6,131771,2,1,1,0,1,,386.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,1034.12287695246,1300.0,46157.75423158236,1,1,1,2,96.0,8,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02816428185560435,30771.83615438824,8,4,8,8_1,8_0,8_0_0 +31749,1,65.0,45.0,2,111,400.0,100.0,0.0,78,77,0.0,0.0,682.0802173488245,500.0,0.0,189.8504047939789,60,0,0,0,0,0,0,0,0,0,,2,,2,131772,1,1,0,1,1,945.0,0.0,350.0,41,1.0,1.0,4.0,3.0,2.0,3,3,285.838266020085,400.0,23372.776126364595,6,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021392409583558102,11686.388063182298,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +31750,2,80.0,0.0,7,111,1100.0,,,78,78,0.0,0.0,,1220.0,166.2707070475825,,60,0,0,0,0,0,0,0,0,0,,1,,5,131773,2,1,0,0,2,,480.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,137.20184549462962,1100.0,50258.59180877119,5,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024274456487797656,33505.72787251413,8,4,8,8_1,8_2,8_0_0 +31751,1,47.0,577.0,7,211,60.0,,,0,85,0.0,0.0,,60.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,5,131774,1,2,0,0,2,,130.0,130.0,31,0.0,0.0,4.0,5.0,2.8,4,2,99.96953098418861,60.0,16185.698579691605,0,6,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.003706976236125065,5780.606635604145,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31752,2,79.0,0.0,2,111,520.0,1985.0,0.0,77,74,0.0,0.0,886.7042825534718,3646.0,0.0,3768.530535160481,71,0,0,0,0,0,0,0,0,0,,1,,2,131775,2,2,2,0,1,,220.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,837.816333044672,520.0,50657.382084248624,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07197371537945474,33771.58805616575,9,5,9,9_1,9_4,9_0_1 +31753,2,63.0,0.0,5,111,650.0,850.0,0.0,72,74,0.0,0.0,1108.3803531918397,1500.0,0.0,1613.7284407488207,31,2,2,1,2,1,2,2,2,0,,2,,3,131776,2,1,0,0,1,,0.0,,41,1.0,1.0,3.0,3.0,2.0,3,3,972.11608852287,650.0,46759.724268724094,5,5,0,1,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.03207888890404122,23379.862134362047,6,3,6,6_0,6_4,6_0_0 +31754,1,26.0,297.0,9,111,300.0,0.0,0.0,0,68,0.0,0.0,511.56016301161833,360.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,131777,2,1,1,0,1,,300.0,500.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1132.61542990282,300.0,9790.076226449884,0,4,2,3,75.0,7,6,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.0367719302355774,6526.717484299923,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +31755,0,34.0,0.0,6,111,844.0,0.0,0.0,56,55,0.0,0.0,1439.1892586060196,844.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,131778,2,1,0,0,1,,89.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,483.223723098726,844.0,7786.995491116123,1,4,5,0,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10838583391538963,3708.0930910076777,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +31756,2,35.0,0.0,1,111,860.0,360.0,0.0,55,21,0.0,0.0,1466.4724672999725,1220.0,0.0,683.461457258324,44,0,0,0,0,0,0,0,0,0,,2,,1,131779,2,2,0,0,1,,105.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,667.90258867091,860.0,88417.07642014352,1,1,0,1,50.0,8,6,3,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013798239541451913,42103.36972387787,9,5,9,9_0,9_2,9_1_0 +31757,2,34.0,0.0,1,221,1642.0,0.0,0.0,54,47,0.0,264.8654554020448,2799.9392922169245,1902.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,131780,2,1,1,0,1,,508.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,527.413852776916,1642.0,38290.927322944364,1,1,1,2,109.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04967234102111441,21272.737401635757,6,3,6,6_1,6_1,6_1_0 +31758,2,58.0,0.0,1,400,960.0,100.0,0.0,0,72,0.0,860.8127300566456,1636.9925216371787,1710.0,0.0,189.8504047939789,71,0,0,0,0,0,0,0,0,0,,1,,1,131781,1,2,2,0,2,,120.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1552.43684149406,960.0,15188.88169410171,0,6,0,1,100.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11258235032958637,15188.88169410171,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +31760,2,71.0,0.0,2,300,0.0,0.0,0.0,0,71,1054.6828510366015,0.0,0.0,1050.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,131783,2,2,4,0,1,,0.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1122.46741271909,0.0,15088.529312591305,0,5,0,1,150.0,0,0,5,1,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.06958928721593695,15088.529312591305,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +31761,0,79.0,0.0,7,112,330.0,1029.0,0.0,0,74,0.0,0.0,562.7161793127802,1359.0,0.0,1953.5606653300429,41,0,0,0,0,0,0,0,0,0,,1,,5,131784,2,1,2,0,1,,380.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,2209.05502590339,330.0,34998.49141626729,0,5,0,1,100.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038830245105031504,34998.49141626729,9,5,9,9_1,9_0,9_0_0 +31762,2,35.0,0.0,9,112,1400.0,0.0,0.0,45,38,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,35.0,1,2008.0,6,131785,2,1,1,0,1,,231.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1932.87266369347,1400.0,65917.94579729102,1,1,1,2,119.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021238525913796526,31389.497998710005,8,4,8,8_1,8_1,8_0_0 +31763,1,44.0,367.0,5,111,480.0,0.0,0.0,0,85,0.0,0.0,818.4962608185893,650.0,235.55016831740858,0.0,71,2,1,2,2,1,2,2,1,0,,2,,3,131786,2,2,0,1,1,696.0,0.0,316.0,31,0.0,0.0,4.0,4.0,2.5,4,1,364.56438408283,480.0,14461.055095144131,0,6,2,3,81.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.04494831087520461,5784.422038057653,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +31764,2,68.0,0.0,7,111,1000.0,1000.0,0.0,56,78,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,50,2,2,2,1,1,2,2,2,0,,1,,5,131787,1,1,2,0,2,,600.0,875.0,41,0.0,2.0,3.0,2.0,1.5,2,2,1474.48559386437,1000.0,27139.589213179457,5,5,2,3,87.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.07369308298258122,18093.05947545297,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +31765,2,44.0,0.0,1,111,459.0,0.0,0.0,0,46,0.0,0.0,782.687049407776,459.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,131788,2,1,0,0,1,,0.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,294.737537541626,459.0,32756.40635519106,0,4,0,1,37.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014012526130701763,25197.235657839276,7,4,7,7_0,7_4,7_1_0 +31766,2,65.0,0.0,6,221,600.0,0.0,0.0,0,75,0.0,198.6490915515336,1023.1203260232367,1850.0,1524.148147936173,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131789,2,1,1,0,2,,220.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1040.66414648066,600.0,22245.319924436808,0,5,1,2,80.0,1,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08316356007843916,22245.319924436808,6,3,6,6_1,6_1,6_0_0 +31767,2,76.0,0.0,6,112,985.0,939.0,0.0,74,74,0.0,0.0,1679.6225352214803,1924.0,0.0,1782.6953010154618,10,0,0,0,0,0,0,0,0,0,,1,,4,131790,2,2,3,0,1,,428.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,1749.85601127502,985.0,124806.26432983266,5,5,0,1,240.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015415892866686043,83204.17621988844,10,5,10,10_1,10_2,10_0_0 +31768,1,42.0,200.0,8,120,550.0,0.0,0.0,68,67,0.0,198.6490915515336,937.8602988546337,800.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2003.0,6,131791,2,1,1,0,1,,110.0,,43,2.0,0.0,5.0,6.0,2.8999999999999995,4,2,1604.08612300541,550.0,49838.06877162601,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.016051986357373843,17185.540955733108,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +31769,2,48.0,0.0,1,111,870.0,0.0,0.0,0,63,0.0,0.0,1483.5244727336933,910.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131792,1,3,1,0,2,,110.0,391.0,12,1.0,1.0,4.0,1.0,1.0,1,1,2018.81729006787,870.0,19048.13418979352,0,4,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04777370796178039,19048.13418979352,5,3,5,5_1,5_3,5_1_0 +31770,2,60.0,0.0,7,221,100.0,150.0,0.0,0,56,0.0,0.0,170.52005433720612,250.0,0.0,284.77560719096834,70,0,0,0,0,0,0,0,0,2,10.0,8,,5,131793,2,1,0,0,1,,92.0,255.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3268.67999059916,100.0,20489.978011682775,0,1,2,3,35.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012201086787768023,20489.978011682775,5,3,5,5_0,5_1,5_0_0 +31771,2,63.0,0.0,7,111,600.0,,,77,78,0.0,0.0,,850.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,5,131794,2,1,0,0,2,,1000.0,,41,1.0,7.0,6.0,3.0,2.0,3,3,126.59396626699667,600.0,21273.6071835542,6,5,0,1,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03995561226011083,10636.8035917771,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +31772,2,49.0,0.0,2,111,300.0,,,0,42,0.0,0.0,,344.0,60.965925917446924,,41,0,0,0,0,0,0,0,0,0,,8,,2,131795,2,3,0,0,2,,250.0,276.0,12,1.0,0.0,2.0,1.0,1.0,1,1,119.69581721804846,300.0,17720.740778509673,0,1,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019412281027053693,17720.740778509673,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +31773,2,46.0,0.0,1,221,600.0,1000.0,0.0,56,63,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,50,2,2,2,2,2,2,2,1,2,7.0,1,,1,131796,1,2,1,0,2,,455.0,431.0,43,2.0,2.0,4.0,2.0,1.5,2,2,2661.43905751601,600.0,23441.146271325753,1,1,2,3,100.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.0682560477836867,15627.430847550502,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +31774,1,40.0,300.0,6,111,0.0,,,0,56,0.0,0.0,,795.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,131797,2,2,0,0,1,,173.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,122.35303684589913,0.0,8070.19739088441,0,4,2,3,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09851060159916067,6207.844146834162,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +31775,2,56.0,0.0,9,120,580.0,,,0,42,0.0,0.0,,626.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,2,90.0,2,2006.0,6,131798,2,1,0,0,1,,360.0,656.0,12,1.0,2.0,2.0,1.0,1.0,1,1,151.45324598034207,580.0,83723.80125375974,0,1,2,3,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007476965816478484,83723.80125375974,10,5,10,10_0,10_1,10_0_0 +31777,2,56.0,0.0,1,112,1300.0,0.0,0.0,0,42,2109.365702073203,0.0,2216.7607063836795,3300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,131800,2,1,3,0,2,,160.0,,12,1.0,3.0,7.0,1.0,1.0,1,1,1029.16695429978,1300.0,40396.858733598514,0,1,1,2,210.0,9,1,7,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0816895200134795,40396.858733598514,9,5,9,9_1,9_1,9_1_0 +31778,2,65.0,0.0,5,112,681.0,0.0,0.0,75,74,0.0,966.7589122174635,1161.2415700363736,1511.0,138.5589225396521,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,131801,2,1,2,0,1,,357.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,960.798598985944,681.0,50755.92850643188,7,5,0,1,130.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.029769921356251484,33837.28567095459,9,5,9,9_1,9_1,9_0_0 +31779,2,58.0,0.0,7,221,387.0,1123.0,0.0,0,48,0.0,0.0,659.9126102849876,1510.0,0.0,2132.020045836383,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,131802,2,1,2,0,1,,269.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,2268.73699272793,387.0,31401.665177780233,0,1,0,1,108.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048086621886169065,31401.665177780233,8,4,8,8_1,8_1,8_0_0 +31780,2,61.0,0.0,5,120,660.0,0.0,0.0,0,78,1898.4291318658827,0.0,1125.4323586255605,2540.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131803,2,1,3,0,1,,600.0,,21,1.0,3.0,5.0,2.0,1.5,2,2,764.212194296017,660.0,40948.874439158,0,5,0,1,101.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06202856695790118,27299.24962610533,7,4,7,7_1,7_0,7_0_0 +31781,0,68.0,0.0,1,111,300.0,1300.0,0.0,0,44,0.0,0.0,511.56016301161833,1600.0,0.0,2468.055262321726,41,0,0,0,0,0,0,0,0,0,,2,,1,131804,2,3,0,1,1,,210.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,1217.10428720619,300.0,34910.67464385151,0,1,5,0,90.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.045831254088405105,34910.67464385151,9,5,9,9_0,9_2,9_1_0 +31782,2,59.0,0.0,9,111,720.0,,,45,42,0.0,0.0,,850.0,180.1265993015477,,10,0,0,0,0,0,0,0,0,2,15.0,1,2009.0,6,131805,2,2,0,0,2,,500.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,152.43976251900332,720.0,120792.24932964472,1,1,0,1,150.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007036875335273633,80528.16621976315,10,5,10,10_1,10_3,10_0_0 +31783,2,56.0,0.0,6,111,636.0,934.0,0.0,54,48,0.0,0.0,1084.5075455846309,1570.0,0.0,1773.202780775763,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,131806,2,1,2,0,1,,568.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,1192.91594028212,636.0,68002.23565704747,1,1,0,1,107.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.023087476240015233,34001.11782852373,9,5,9,9_1,9_2,9_0_0 +31784,2,35.0,0.0,5,111,750.0,2000.0,0.0,21,22,0.0,480.73080155471126,1278.9004075290459,3113.0,0.0,3797.008095879578,12,0,0,0,0,0,0,0,0,0,,1,,3,131807,2,1,1,0,1,,600.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,631.97800228737,750.0,30412.919487566316,1,1,1,2,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10235781544329162,14482.342613126817,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +31785,1,49.0,197.0,2,111,0.0,0.0,500.0,0,45,0.0,0.0,315.15914520737186,500.0,0.0,598.3660737823404,50,0,0,0,0,0,0,0,0,0,,2,,2,131808,2,1,0,1,1,,280.0,461.0,32,1.0,2.0,3.0,2.0,1.5,2,2,251.870624831604,0.0,20727.159843855374,0,1,2,3,55.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.02412293839419714,13818.106562570249,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +31786,1,49.0,70.0,5,111,682.0,1200.0,0.0,56,55,0.0,0.0,1162.9467705797458,1882.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,8.0,1,,3,131809,2,2,3,0,1,,400.0,505.0,43,2.0,1.0,4.0,4.0,2.5,4,3,317.237168934335,682.0,23084.560380315455,1,1,2,3,140.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.08152635220226283,9233.824152126183,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +31787,2,49.0,0.0,7,111,900.0,,,54,37,0.0,0.0,,900.0,0.0,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,131810,2,1,0,0,1,,280.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,162.7311355834914,900.0,91824.05736788175,1,1,1,2,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009801352998313516,61216.038245254495,10,5,10,10_1,10_3,10_0_0 +31788,2,72.0,0.0,1,111,650.0,1062.0,0.0,75,72,0.0,0.0,1108.3803531918397,1792.0,110.84713803172167,2016.211298912056,50,0,0,0,0,0,0,0,0,0,,1,,1,131811,2,1,4,0,1,,600.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,700.001197905664,650.0,67485.21455914841,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026553964623308342,33742.60727957421,9,5,9,9_1,9_4,9_1_0 +31789,2,35.0,0.0,7,111,936.0,0.0,0.0,85,52,0.0,0.0,1596.0677085962493,936.0,0.0,0.0,20,2,2,1,2,1,2,2,2,2,15.0,2,,5,131812,2,1,0,0,1,,0.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,2340.41689718636,936.0,10802.302923142093,7,1,0,1,29.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.08664819035900016,7201.535282094729,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +31790,2,61.0,0.0,9,111,1500.0,,,71,11,0.0,0.0,,2100.0,831.3535352379125,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,131813,2,2,0,0,2,,240.0,,42,1.0,0.0,4.0,4.0,2.5,4,4,173.54995866094117,1500.0,5807.0,5,1,0,1,111.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.361632512484932,2322.8,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31791,2,45.0,0.0,2,111,350.0,1200.0,0.0,0,46,0.0,132.4327277010224,596.8201901802214,1650.0,0.0,2278.2048575277468,31,2,2,2,1,2,2,2,2,2,50.0,1,,2,131814,2,3,3,0,1,,360.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,594.168793303045,350.0,39163.545088343926,0,1,1,2,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,1,0,0,0.042131017411165934,26109.03005889595,7,4,7,7_1,7_4,7_0_1 +31792,0,54.0,0.0,5,211,406.0,920.0,0.0,85,78,0.0,0.0,692.3114206090569,1326.0,0.0,1746.6237241046058,50,2,2,1,2,1,2,2,2,0,,1,,3,131815,2,3,3,0,1,,596.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,243.468541113239,406.0,28298.999951475183,6,5,5,0,75.0,2,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.046856779471844114,18865.99996765012,5,3,5,5_1,5_1,5_0_0 +31793,1,25.0,150.0,6,111,0.0,0.0,0.0,54,38,0.0,0.0,0.0,962.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,6.0,1,,4,131816,2,2,5,0,1,,0.0,747.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1247.76898792273,0.0,29638.39462877155,1,1,2,3,72.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03245789834602364,16465.77479376197,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +31795,1,41.0,170.0,6,111,400.0,0.0,0.0,0,52,0.0,0.0,682.0802173488245,400.0,0.0,0.0,20,2,2,2,2,1,2,2,2,0,,2,,4,131818,1,3,0,0,2,,145.0,350.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2728.11251102061,400.0,4839.267902296582,0,4,2,3,26.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,1,0,0,1,0.08265713080488292,4839.267902296582,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +31796,2,68.0,0.0,1,400,450.0,0.0,0.0,0,78,0.0,0.0,767.3402445174275,450.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131819,2,1,1,0,1,,240.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1081.98814053529,450.0,20590.675981880755,0,5,0,1,70.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021854552050451767,20590.675981880755,5,3,5,5_1,5_0,5_1_0 +31797,2,62.0,0.0,2,111,780.0,2334.0,0.0,0,56,0.0,0.0,1330.0564238302077,3114.0,0.0,4431.108447891467,70,2,2,1,2,1,2,2,2,1,7.0,1,,2,131820,2,1,1,0,1,,760.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1566.30600234002,780.0,29457.900561600207,0,1,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.10571018099162331,29457.900561600207,8,4,8,8_1,8_3,8_0_1 +31798,0,51.0,0.0,2,111,400.0,,,85,53,0.0,0.0,,538.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,131821,2,1,0,0,2,,450.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,102.33940652184108,400.0,46364.33432698249,6,1,5,0,74.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.011603746884529344,23182.167163491245,6,3,6,6_1,6_3,6_0_1 +31799,2,91.0,0.0,5,111,275.0,0.0,0.0,0,75,0.0,0.0,468.93014942731685,436.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,131822,2,2,0,1,1,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,519.769108660435,275.0,37542.81585940176,0,5,0,1,70.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011613406986647581,37542.81585940176,9,5,9,9_0,9_2,9_0_0 +31800,2,58.0,0.0,6,111,420.0,,,0,48,0.0,0.0,,696.0,382.4226262094398,,50,0,0,0,0,0,0,0,0,0,,1,,4,131823,2,1,0,0,2,,350.0,,12,1.0,4.0,4.0,1.0,1.0,1,1,103.91712136487618,420.0,8463.947479582872,0,4,0,1,58.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08223113407531457,8463.947479582872,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +31801,2,37.0,0.0,1,120,1790.0,0.0,0.0,43,47,0.0,0.0,3052.3089726359894,1820.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,1,131824,2,1,0,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,5397.74662136105,1790.0,49097.0,1,1,1,2,107.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03706947471332261,23379.52380952381,6,3,6,6_0,6_0,6_1_0 +31802,1,30.0,295.0,5,111,600.0,480.0,0.0,0,46,0.0,0.0,1023.1203260232367,1080.0,0.0,911.2819430110987,31,0,0,0,0,0,0,0,0,0,,2,,3,131825,2,1,0,0,1,,124.0,539.0,32,1.0,3.0,4.0,5.0,2.4,2,2,1047.8993872458,600.0,7469.1821148690715,0,1,2,3,96.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.14459414476586657,3112.15921452878,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +31803,2,55.0,0.0,1,112,400.0,0.0,0.0,0,56,0.0,662.163638505112,682.0802173488245,1000.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131826,2,2,2,0,1,,170.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,72.2966033850972,400.0,13461.730449555083,0,1,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07428465484042213,13461.730449555083,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +31804,2,68.0,0.0,1,120,544.0,0.0,0.0,0,68,527.3414255183008,0.0,927.6290955944013,1134.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,1,10.0,1,,1,131827,2,2,5,0,1,,101.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,664.749406033307,544.0,14153.58248608539,0,1,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08012105776857932,14153.58248608539,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +31805,2,77.0,0.0,1,111,0.0,0.0,2196.0,77,75,0.0,0.0,1384.1789657507773,2196.0,0.0,2628.023796052039,70,0,0,0,0,0,0,0,0,0,,1,,1,131828,1,3,4,0,2,,0.0,389.0,41,0.0,4.0,6.0,2.0,1.5,2,2,1084.58969360642,0.0,31020.60079591662,5,5,2,3,114.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07079166565623285,20680.40053061108,5,3,5,5_1,5_3,5_1_0 +31806,2,33.0,0.0,9,111,1700.0,0.0,0.0,46,47,0.0,728.3800023556231,2898.840923732504,2250.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,131829,2,1,1,0,1,,600.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,389.165500494688,1700.0,47321.22786018804,1,1,1,2,130.0,7,5,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04754737148088573,22533.91802866097,6,3,6,6_1,6_2,6_0_0 +31807,2,49.0,0.0,5,111,2100.0,0.0,0.0,52,22,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,10,2,2,1,2,1,2,2,2,2,30.0,1,,3,131830,1,1,3,0,1,,590.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1022.0651909533,2100.0,51245.90979840262,1,1,1,2,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.04097888023183186,22280.830347131578,6,3,6,6_1,6_3,6_0_0 +31808,2,29.0,0.0,2,111,543.0,722.0,0.0,54,48,0.0,0.0,925.9238950510293,1265.0,0.0,1370.7199226125276,44,0,0,0,0,0,0,0,0,2,8.0,1,,2,131831,2,1,1,0,1,,454.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,914.340431831049,543.0,45471.09074695109,1,1,1,2,88.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.027819873665221463,18946.287811229624,5,3,5,5_1,5_3,5_0_1 +31809,2,57.0,0.0,1,211,1500.0,0.0,0.0,52,64,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,131832,2,1,2,0,1,,297.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1540.87611215258,1500.0,64727.06474270872,1,1,0,1,115.0,2,3,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024101201038561365,43151.37649513914,9,5,9,9_1,9_1,9_1_0 +31810,2,42.0,0.0,8,120,1546.0,0.0,0.0,63,45,0.0,0.0,2636.2400400532065,1646.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2001.0,6,131833,2,1,1,0,1,,185.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,352.73364371354,1546.0,42779.752051034906,1,1,1,2,89.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03847614633288135,18599.892196102133,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +31811,2,68.0,0.0,2,111,1000.0,0.0,0.0,0,78,0.0,397.2981831030672,1705.2005433720612,1300.0,0.0,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,131834,2,2,5,0,1,,104.0,392.0,11,0.0,7.0,2.0,1.0,1.0,1,1,345.638204696623,1000.0,18601.695163290005,0,5,2,3,42.0,5,4,5,0,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,0,0,0,0.0698861038517349,18601.695163290005,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +31812,2,54.0,0.0,1,221,420.0,,,0,69,0.0,0.0,,687.0,369.9523231808711,,50,0,0,0,0,0,0,0,0,0,,1,,1,131835,1,1,0,0,1,,188.0,,22,1.0,4.0,4.0,2.0,1.5,2,2,109.77728611840861,420.0,17909.963161536667,0,1,0,1,80.0,1,2,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03835853785983196,11939.975441024444,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +31813,2,71.0,0.0,5,112,1064.0,0.0,0.0,77,77,0.0,10.594618216081791,1814.3333781478732,1112.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131836,2,1,2,0,1,,348.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1391.48355784144,1064.0,38228.914262276645,5,5,0,1,103.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029087930469877205,25485.942841517764,7,4,7,7_1,7_0,7_0_0 +31814,2,65.0,0.0,5,111,250.0,0.0,0.0,0,77,0.0,0.0,426.3001358430153,250.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,131837,1,1,0,1,2,,0.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,534.863020078879,250.0,12341.411710432107,0,5,0,1,57.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.020257001862167584,12341.411710432107,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +31815,2,36.0,0.0,7,111,0.0,,,46,46,0.0,0.0,,83.0,0.0,,31,0,0,0,0,0,0,0,0,0,,2,,5,131838,2,1,0,0,1,,239.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,129.01645801912485,0.0,56050.670641335186,4,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0014808029779181755,37367.113760890126,9,5,9,9_0,9_2,9_0_0 +31816,2,55.0,0.0,1,111,1120.0,1800.0,0.0,31,90,0.0,0.0,1909.8246085767084,2920.0,0.0,3417.30728629162,10,1,2,2,1,1,2,2,2,3,30.0,2,,1,131839,1,3,0,0,2,,0.0,6000.0,43,2.0,3.0,7.0,3.0,2.0,3,2,1162.13040625421,1120.0,84881.74160816248,1,1,2,3,200.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.034400802159309185,42440.87080408124,9,5,9,9_0,9_4,9_1_0 +31817,1,46.0,110.0,9,112,1500.0,0.0,0.0,85,67,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2007.0,6,131840,2,1,1,0,1,,626.0,,42,2.0,0.0,4.0,5.0,2.8,4,3,1040.61057974574,1500.0,51364.345925495785,5,1,1,2,107.0,5,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.029203136396903733,18344.40925910564,4,2,4_1,4_1_1,4_0_1,4_0_0_1 +31818,2,52.0,0.0,1,111,1080.0,1440.0,0.0,34,34,0.0,0.0,1841.6165868418261,2520.0,0.0,2733.845829033296,10,0,0,0,0,0,0,0,0,3,10.0,1,,1,131841,2,1,2,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1283.66017991994,1080.0,75880.31945306472,1,1,0,1,90.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03321019228917097,50586.87963537648,10,5,10,10_1,10_3,10_1_0 +31819,1,45.0,300.0,1,111,300.0,2200.0,0.0,0,85,0.0,0.0,511.56016301161833,2500.0,0.0,4176.708905467536,41,2,2,2,2,1,2,2,1,0,,1,,1,131842,1,3,4,0,2,,250.0,,31,0.0,0.0,4.0,2.0,1.3,1,1,1040.75008549043,300.0,8938.059644087183,0,7,1,2,85.0,9,7,4,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.27970276542670325,6875.430495451679,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +31820,2,88.0,0.0,2,111,453.0,0.0,0.0,0,77,2531.2388424878436,0.0,772.4558461475438,2923.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,131843,2,2,3,0,1,,233.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,408.272675643468,453.0,32152.899885612933,0,5,0,1,120.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09090937397245215,32152.899885612933,8,4,8,8_1,8_3,8_0_1 +31821,2,61.0,0.0,1,111,433.0,0.0,0.0,0,75,0.0,860.8127300566456,738.3518352801025,1083.0,0.0,0.0,70,2,2,1,1,2,2,2,2,0,,1,,1,131844,2,3,3,0,1,,150.0,317.0,11,0.0,2.0,3.0,1.0,1.0,1,1,292.562071144642,433.0,20388.670466996307,0,5,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.053117735251696836,20388.670466996307,5,3,5,5_1,5_3,5_1_0 +31822,2,62.0,0.0,5,120,1047.0,0.0,0.0,54,75,1371.087706347582,0.0,1785.344968910548,2347.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131845,2,1,2,0,1,,150.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,113.010453602717,1047.0,47347.70142604253,1,5,0,1,135.0,0,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04956946017043788,31565.13428402835,8,4,8,8_1,8_0,8_0_0 +31823,2,34.0,0.0,5,111,255.0,0.0,0.0,0,34,0.0,0.0,434.8261385598756,255.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,25.0,2,,3,131846,2,2,0,1,1,717.0,0.0,410.0,12,1.0,0.0,2.0,1.0,1.0,1,1,399.5552207486,255.0,30579.107946974633,0,1,2,3,42.0,8,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008339026777438372,30579.107946974633,8,4,8,8_0,8_3,8_0_0 +31824,2,48.0,0.0,2,111,145.0,65.0,0.0,0,67,0.0,0.0,247.25407878894887,393.0,0.0,123.40276311608629,50,0,0,0,0,0,0,0,0,3,10.0,2,,2,131847,1,1,0,1,2,480.0,180.0,209.0,12,1.0,0.0,2.0,1.0,1.0,1,1,329.22967432765,145.0,19187.852651760008,0,1,2,3,44.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02048170825222342,19187.852651760008,5,3,5,5_0,5_2,5_0_1 +31825,2,64.0,0.0,5,111,700.0,,,75,75,0.0,0.0,,828.0,177.35542085075468,,41,0,0,0,0,0,0,0,0,0,,1,,3,131848,2,1,0,0,2,,700.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,98.5552339083418,700.0,61757.542419748585,5,5,0,1,105.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013407269259069892,41171.694946499054,9,5,9,9_1,9_2,9_0_0 +31826,2,65.0,0.0,2,111,236.0,72.0,0.0,74,77,0.0,0.0,402.42732823580644,308.0,0.0,136.6922914516648,44,0,0,0,0,0,0,0,0,0,,2,,2,131849,1,2,0,1,2,,0.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1524.56647972633,236.0,58910.016231456975,5,5,1,2,68.0,8,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005228312937308835,39273.34415430465,9,5,9,9_0,9_3,9_0_1 +31827,2,25.0,0.0,5,111,700.0,0.0,0.0,0,47,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,43,2,2,2,2,1,2,2,1,2,15.0,1,,3,131850,2,2,1,0,1,,165.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1135.40926052905,700.0,23901.335195989566,0,1,2,3,42.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,1,0,0,0.029287066779325945,23901.335195989566,6,3,6,6_1,6_3,6_0_0 +31828,1,66.0,109.0,2,111,265.0,403.0,0.0,0,78,0.0,0.0,451.8781439935962,668.0,0.0,765.097131319735,50,0,0,0,0,0,0,0,0,0,,2,,2,131851,2,1,0,1,1,328.0,280.0,370.0,11,0.0,0.0,2.0,1.0,1.0,1,1,290.961783716471,265.0,11408.617798444971,0,5,2,3,49.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.058552228832755744,11408.617798444971,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +31829,2,33.0,0.0,7,112,0.0,,,0,85,0.0,0.0,,296.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,131852,2,1,0,0,2,,547.0,464.0,31,0.0,0.0,3.0,3.0,1.6,1,1,87.48872926709241,0.0,18383.0,0,6,2,3,71.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016101833215470814,11489.375,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +31830,1,87.0,276.0,2,111,400.0,0.0,0.0,0,86,0.0,0.0,682.0802173488245,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,131853,2,1,0,1,1,1068.0,0.0,436.0,21,1.0,1.0,4.0,2.0,1.5,2,2,247.398630767306,400.0,15598.120873182255,0,5,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.025644114650227985,10398.74724878817,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +31831,2,68.0,0.0,2,111,330.0,,,86,86,0.0,0.0,,570.0,332.541414095165,,50,0,0,0,0,0,0,0,0,0,,1,,2,131854,2,1,0,0,2,,220.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,31.95664138289675,330.0,85900.30540504373,5,5,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00663559922531465,57266.870270029154,10,5,10,10_1,10_2,10_0_1 +31832,2,56.0,0.0,7,111,680.0,1720.0,0.0,52,38,0.0,92.70290939071567,1159.5363694930015,2470.0,0.0,3265.426962456437,12,0,0,0,0,0,0,0,0,2,15.0,1,,5,131855,2,1,2,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.5,4,3,1057.71150307142,680.0,79378.17900700688,1,1,0,1,150.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031116863990820046,31751.271602802753,8,4,8,8_1,8_2,8_0_0 +31833,2,50.0,0.0,2,112,770.0,0.0,0.0,85,64,896.4804233811113,158.91927324122688,1313.0044183964872,1740.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,131856,2,2,2,0,1,,509.0,,42,2.0,2.0,3.0,3.0,2.0,3,3,1067.26951274044,770.0,30554.69221422472,6,1,0,1,90.0,8,1,9,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05694706357375592,15277.34610711236,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +31834,1,68.0,220.0,6,111,500.0,,,78,77,0.0,0.0,,800.0,415.67676761895626,,70,0,0,0,0,0,0,0,0,0,,8,,4,131857,2,1,0,0,2,,700.0,180.0,41,0.0,1.0,4.0,3.0,2.0,3,3,128.07459509529136,500.0,27429.763950045555,5,5,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.029165398632556273,13714.881975022778,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +31835,2,44.0,0.0,8,111,900.0,,,0,56,0.0,0.0,,1152.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,2,6.0,1,2000.0,6,131858,1,3,0,0,2,,3000.0,,32,1.0,0.0,4.0,3.0,1.8,2,1,83.72706791316253,900.0,15633.19593033821,0,1,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07368934702368804,8685.108850187895,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31836,2,65.0,0.0,1,111,192.0,363.0,0.0,0,72,0.0,0.0,327.3985043274357,555.0,0.0,689.1569694021434,71,0,0,0,0,0,0,0,0,0,,2,,1,131859,2,1,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1088.91144464861,192.0,16875.76032672629,0,7,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.032887407100765806,16875.76032672629,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +31837,2,72.0,0.0,2,111,293.0,0.0,0.0,77,77,0.0,0.0,499.62375920801395,293.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,131860,2,1,0,1,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1402.8221431219,293.0,26464.32848461127,5,5,0,1,80.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011071507073016285,17642.885656407514,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +31838,2,71.0,0.0,2,111,960.0,,,77,78,0.0,0.0,,1212.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,131861,1,2,0,0,2,,720.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,102.73562832070859,960.0,9376.631363069595,5,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12925750763472818,6251.08757537973,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +31839,2,35.0,0.0,6,112,1300.0,0.0,0.0,54,21,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,131862,2,1,2,0,1,,470.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,2961.36806073988,1300.0,49200.18698699875,1,1,1,2,95.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026422663807020238,20500.07791124948,5,3,5,5_1,5_1,5_0_0 +31840,1,39.0,149.0,6,111,960.0,900.0,0.0,64,64,0.0,0.0,1636.9925216371787,1860.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,131863,2,2,1,0,1,,600.0,680.0,43,2.0,0.0,5.0,4.0,2.3,3,2,330.940815899339,960.0,15439.508917836674,1,1,2,3,98.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.12047015289788221,6712.829964276815,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +31841,0,64.0,0.0,6,400,390.0,,,0,86,0.0,0.0,,570.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,0,,1,,4,131864,2,2,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,21.025919764600218,390.0,12649.951219512195,0,7,5,0,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0450594622942728,12649.951219512195,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +31842,2,75.0,0.0,2,111,330.0,83.0,0.0,0,74,0.0,0.0,562.7161793127802,413.0,0.0,157.57583597900248,44,2,2,2,2,1,2,2,2,0,,2,,2,131865,1,1,0,1,1,,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1064.71032886722,330.0,31864.980475539855,0,5,0,1,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.012960936860357607,31864.980475539855,8,4,8,8_0,8_4,8_0_1 +31843,2,24.0,0.0,1,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,756.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,5.0,2,,1,131866,2,1,0,0,1,,164.0,385.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1845.42699166078,0.0,18244.0,0,1,2,3,35.0,7,5,5,0,0,0,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.04143828107871081,18244.0,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +31844,1,33.0,222.0,6,120,0.0,0.0,0.0,64,55,0.0,0.0,0.0,1368.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,131867,2,2,2,0,1,,203.0,550.0,43,2.0,0.0,5.0,4.0,2.1,2,2,835.313412277524,0.0,33147.34445758893,1,1,2,3,90.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04127027435788458,15784.449741709013,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +31845,2,65.0,0.0,2,111,150.0,71.0,0.0,0,78,0.0,0.0,255.78008150580916,221.0,0.0,134.79378740372502,70,0,0,0,0,0,0,0,0,0,,2,,2,131868,2,1,0,1,1,756.0,0.0,327.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1406.46679592077,150.0,15800.57576088141,0,5,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013986832084128552,15800.57576088141,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +31846,2,33.0,0.0,9,120,2220.0,0.0,0.0,65,46,0.0,1132.2998218437415,3785.545206285976,3187.0,155.18599324441035,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,131869,2,1,1,0,1,,600.0,600.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1050.75940240727,2220.0,56281.10097090875,1,1,2,3,110.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05662646865503457,31267.278317171527,8,4,8,8_1,8_0,8_0_0 +31847,2,67.0,0.0,1,111,438.0,0.0,0.0,0,77,0.0,0.0,746.8778379969627,1247.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,131870,2,1,1,0,1,,139.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,970.828561842512,438.0,27997.569691662567,0,5,0,1,108.0,6,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.044539580175465936,27997.569691662567,7,4,7,7_1,7_2,7_1_0 +31848,1,68.0,29.0,2,111,360.0,0.0,0.0,0,77,0.0,0.0,613.872195613942,797.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,131871,2,2,0,1,1,648.0,0.0,360.0,11,0.0,5.0,4.0,1.0,1.0,1,1,397.781454580319,360.0,15896.488899828166,0,5,2,3,70.0,8,6,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05013685758045698,15896.488899828166,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +31849,2,64.0,0.0,7,111,900.0,,,46,38,0.0,0.0,,1200.0,415.67676761895626,,41,0,0,0,0,0,0,0,0,3,24.0,1,,5,131872,2,1,0,0,2,,300.0,,42,3.0,0.0,5.0,5.0,2.8,4,4,117.74745670694624,900.0,163112.9063493568,7,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007356867257516878,58254.609410484576,10,5,10,10_1,10_2,10_0_0 +31850,2,62.0,0.0,6,111,1500.0,0.0,0.0,77,78,0.0,132.4327277010224,2557.8008150580918,1700.0,138.5589225396521,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,131873,2,1,2,0,1,,500.0,,41,0.0,1.0,5.0,3.0,2.0,3,3,856.803784206006,1500.0,41072.73451118031,5,5,0,1,100.0,7,6,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04138998827889697,20536.367255590154,5,3,5,5_1,5_2,5_0_0 +31851,1,35.0,397.0,7,111,0.0,0.0,1224.0,0,81,0.0,0.0,771.5095874676464,1224.0,0.0,1464.8001486191692,71,0,0,0,0,0,0,0,0,0,,2,,5,131874,1,2,0,0,1,,0.0,341.0,32,1.0,1.0,3.0,5.0,2.2,1,1,205.284837435735,0.0,13491.147909967845,0,4,2,3,64.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.09072615674872675,6132.339959076293,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31852,1,58.0,360.0,9,111,600.0,,,85,52,0.0,0.0,,738.0,191.2113131047199,,60,0,0,0,0,0,0,0,0,0,,2,2008.0,6,131875,2,3,0,0,2,,560.0,450.0,42,1.0,3.0,4.0,4.0,2.3,3,3,90.41480709707534,600.0,36899.71453973699,6,1,2,3,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0200001547222067,16043.354147711736,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +31853,2,75.0,0.0,2,400,517.0,0.0,0.0,0,75,1054.6828510366015,662.163638505112,881.5886809233556,2017.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,131876,2,3,3,0,1,,186.0,,11,0.0,3.0,7.0,1.0,1.0,1,1,1473.53722792585,517.0,14708.858860855165,0,5,0,1,155.0,0,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.137128244895181,14708.858860855165,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +31854,1,59.0,207.0,1,112,0.0,0.0,0.0,0,77,0.0,0.0,0.0,787.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,131877,2,1,0,0,1,,319.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1724.11946794402,0.0,9526.434322463765,0,7,2,3,40.0,6,0,4,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.08261223175015422,9526.434322463765,1,1,1_1,1_0_1,1_0_1,1_1_0_1 +31855,2,38.0,0.0,2,111,0.0,0.0,0.0,52,55,0.0,0.0,0.0,935.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,,2,131878,2,1,1,0,1,,305.0,1200.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1132.23665873776,0.0,29007.668437907734,1,1,2,3,90.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.032232856011899444,19338.445625271823,5,3,5,5_1,5_3,5_0_1 +31856,2,82.0,0.0,1,112,1800.0,0.0,0.0,0,74,0.0,0.0,3069.36097806971,1870.0,96.99124577775646,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,131879,1,1,3,0,2,,30.0,,11,0.0,6.0,3.0,1.0,1.0,1,1,1915.59484329304,1800.0,29596.170013232237,0,5,0,1,60.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06318385112546442,29596.170013232237,8,4,8,8_1,8_0,8_1_0 +31857,0,33.0,0.0,7,211,328.0,,,0,52,0.0,0.0,,350.0,30.482962958723462,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,131880,2,1,0,0,2,,192.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,120.0193238083737,328.0,30971.943720806,0,1,5,0,120.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011300550044745198,23824.57209292769,6,3,6,6_1,6_2,6_0_0 +31858,2,46.0,0.0,9,111,740.0,1620.0,0.0,34,34,0.0,0.0,1261.8484020953254,2360.0,0.0,3075.576557662458,10,0,0,0,0,0,0,0,0,2,45.0,1,2005.0,6,131881,2,1,1,0,1,,580.0,,43,2.0,1.0,8.0,5.0,2.5999999999999996,3,2,384.300312269451,740.0,154180.54414476475,1,1,1,2,150.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015306730256342363,59300.209286447986,10,5,10,10_1,10_3,10_0_0 +31859,2,88.0,0.0,1,112,180.0,0.0,0.0,0,86,1001.9487084847715,0.0,306.936097806971,1160.0,41.567676761895626,0.0,71,2,2,2,2,1,1,2,2,0,,1,,1,131882,1,3,4,0,2,,150.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1781.58445070661,180.0,9517.140178430836,0,5,0,1,60.0,9,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.12188535402987603,9517.140178430836,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +31860,2,84.0,0.0,2,111,100.0,60.0,0.0,0,77,0.0,0.0,170.52005433720612,160.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,1,,2,131883,1,1,1,0,2,,300.0,,21,0.0,2.0,5.0,2.0,1.5,2,2,275.084135922416,100.0,34398.132812319665,0,5,0,1,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00465141526352547,22932.088541546444,6,3,6,6_1,6_2,6_0_1 +31863,1,24.0,42.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1268.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,2,131886,2,2,0,0,2,,69.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1182.38007252195,0.0,18350.51051120418,0,1,1,2,48.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06909889505394434,18350.51051120418,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +31864,2,53.0,0.0,7,111,390.0,552.0,0.0,46,37,0.0,0.0,665.0282119151038,942.0,0.0,1047.9742344627634,20,2,2,2,2,1,2,2,2,4,20.0,2,,5,131887,2,2,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1546.79882831965,390.0,70901.92009391921,1,1,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.013285958952200354,47267.94672927947,10,5,10,10_0,10_3,10_0_0 +31865,2,57.0,0.0,2,111,390.0,143.0,0.0,67,22,0.0,0.0,665.0282119151038,533.0,0.0,271.48607885538985,71,2,1,1,1,2,2,2,2,2,5.0,2,,2,131888,2,2,0,1,1,823.0,400.0,255.0,43,2.0,1.0,3.0,2.0,1.5,2,2,384.799650509561,390.0,43028.491664297064,1,1,2,3,72.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.012387141156571317,28685.661109531375,8,4,8,8_0,8_2,8_0_1 +31866,2,48.0,0.0,9,111,612.0,0.0,0.0,85,37,0.0,0.0,1043.5827325437015,612.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2007.0,6,131889,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,535.955332762344,612.0,71966.7500441837,6,1,1,2,75.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008503927155585948,47977.83336278913,10,5,10,10_0,10_3,10_0_0 +31867,0,76.0,0.0,1,120,1176.0,0.0,0.0,0,78,0.0,0.0,2005.315839005544,1326.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,131890,2,1,0,0,1,,92.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1095.36576421303,1176.0,15650.172676355734,0,5,0,1,40.0,0,2,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.08472749965266003,15650.172676355734,3,2,3_0,3_0_0,3_1_0,3_1_0_0 +31868,2,64.0,0.0,5,111,247.0,673.0,0.0,0,77,0.0,0.0,421.1845342128991,920.0,0.0,1277.693224263478,70,1,2,2,2,1,2,2,2,0,,2,,3,131891,1,2,0,0,1,,168.0,306.0,11,0.0,1.0,2.0,1.0,1.0,1,1,894.091975096848,247.0,16998.537791177438,0,5,2,3,55.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.05412230224163736,16998.537791177438,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +31869,2,41.0,0.0,7,120,360.0,,,46,21,0.0,0.0,,498.0,191.2113131047199,,50,0,0,0,0,0,0,0,0,0,,1,,5,131892,2,1,0,0,1,,500.0,,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,3,80.35311707851864,360.0,33904.93909942919,1,1,0,1,125.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014688125483416194,13040.361192088152,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +31870,2,41.0,0.0,9,111,2030.0,0.0,0.0,47,37,0.0,0.0,3461.5571030452843,2030.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,70.0,1,2011.0,6,131893,2,1,1,0,1,,216.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,152.503312417637,2030.0,84797.64067935855,1,1,1,2,181.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023939345289993932,35332.350283066065,9,5,9,9_1,9_4,9_0_0 +31871,2,55.0,0.0,2,111,400.0,0.0,0.0,0,52,0.0,66.2163638505112,682.0802173488245,450.0,0.0,0.0,71,2,2,2,1,2,2,2,2,2,15.0,2,,2,131894,1,2,0,1,1,,0.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,360.303255682416,400.0,32359.223721257084,0,1,1,2,88.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,0,0.013906390458445723,21572.81581417139,6,3,6,6_0,6_3,6_0_1 +31872,0,39.0,0.0,6,111,1150.0,0.0,0.0,0,37,0.0,0.0,1960.9806248778702,1150.0,0.0,0.0,20,2,2,1,2,1,2,2,2,0,,2,,4,131895,2,2,0,0,2,,0.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,902.890445823164,1150.0,24239.383368963834,0,4,5,0,91.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.047443451118169236,16159.588912642555,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +31873,1,24.0,120.0,1,400,1200.0,0.0,0.0,55,52,0.0,79.45963662061344,2046.2406520464733,1310.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,1,1.0,1,,1,131896,2,2,5,0,1,,160.0,400.0,43,2.0,0.0,2.0,2.0,1.5,2,2,2306.41532883079,1200.0,20032.124454904177,4,1,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06539496112601734,13354.749636602784,3,2,3_1,3_1_1,3_0_1,3_1_0_1 +31874,2,69.0,0.0,1,111,1335.0,0.0,0.0,0,77,0.0,0.0,2276.442725401702,1395.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131897,2,1,2,0,1,,85.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,337.716292151035,1335.0,19731.86057399095,0,5,0,1,80.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0706978439650432,19731.86057399095,5,3,5,5_1,5_3,5_1_0 +31875,2,66.0,0.0,2,111,253.0,353.0,0.0,0,78,0.0,0.0,431.41573747313146,606.0,0.0,670.1719289227456,70,0,0,0,0,0,0,0,0,0,,2,,2,131898,2,3,0,0,1,,81.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1785.58679779502,253.0,22801.499388673194,0,5,0,1,65.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.026577199581051883,22801.499388673194,6,3,6,6_0,6_3,6_0_1 +31876,2,53.0,0.0,8,111,700.0,900.0,0.0,47,33,0.0,0.0,1193.6403803604428,1600.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,2,10.0,1,1999.0,6,131899,2,1,2,0,1,,500.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,938.455484958718,700.0,66089.30352226553,1,1,0,1,180.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024209666537958884,44059.53568151035,10,5,10,10_1,10_2,10_0_0 +31877,2,60.0,0.0,6,111,1035.0,0.0,0.0,85,38,0.0,218.51400070668694,1764.8825623900834,1200.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,4,131900,2,1,2,0,1,,280.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,422.62216182268,1035.0,32670.378704795927,6,4,0,1,130.0,7,6,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03673052004823694,21780.25246986395,6,3,6,6_1,6_2,6_0_0 +31878,2,41.0,0.0,5,111,4645.0,0.0,0.0,63,33,0.0,158.91927324122688,7920.656523963225,5765.0,1385.589225396521,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,131901,1,2,2,0,2,,742.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,469.115225125368,4645.0,49250.76539675568,1,1,1,2,160.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11705401842099616,18942.602075675266,5,3,5,5_1,5_4,5_0_0 +31879,1,50.0,370.0,9,300,1572.0,0.0,0.0,45,43,0.0,0.0,2680.57525418088,1662.0,124.70303028568689,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,2005.0,6,131902,2,1,1,0,1,,929.0,,43,2.0,2.0,6.0,4.0,2.1,2,2,695.336639000872,1572.0,47172.46956865328,1,1,1,2,160.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.035232414482374706,22463.08074697775,6,3,6,6_1,6_0,6_0_0 +31880,1,29.0,236.0,1,111,1000.0,0.0,0.0,0,56,0.0,463.51454695357836,1705.2005433720612,1410.0,83.13535352379125,0.0,50,2,2,1,2,1,2,2,2,0,,1,,1,131903,2,1,1,0,2,,300.0,224.0,12,1.0,0.0,5.0,1.0,1.0,1,1,358.898133265013,1000.0,4799.806647588663,0,4,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.29376183324142,4799.806647588663,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +31881,2,37.0,0.0,7,111,0.0,0.0,0.0,37,37,0.0,0.0,0.0,167.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,5,131904,2,1,0,1,1,600.0,0.0,925.0,43,2.0,0.0,2.0,2.0,1.5,2,2,804.874347590053,0.0,75778.46842299766,4,4,2,3,48.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.002203792231162565,50518.978948665106,10,5,10,10_0,10_4,10_0_0 +31882,2,80.0,0.0,2,111,467.0,0.0,0.0,0,78,1313.080149540569,0.0,796.3286537547526,2178.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131905,2,2,2,0,1,,178.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1109.9741444981,467.0,16557.05579908166,0,5,0,1,119.0,6,4,2,1,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13154512652671033,16557.05579908166,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +31883,0,92.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,322.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,131906,2,1,0,1,1,,0.0,,11,0.0,1.0,1.0,1.0,1.0,1,1,3579.52815681841,0.0,6611.06210409909,0,5,5,0,20.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04870624340381687,6611.06210409909,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +31884,2,39.0,0.0,9,111,400.0,450.0,0.0,37,54,0.0,0.0,682.0802173488245,850.0,0.0,854.326821572905,31,0,0,0,0,0,0,0,0,3,60.0,2,2006.0,6,131907,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,666.895375183939,400.0,72180.65318946987,1,1,1,2,84.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011776008700957599,34371.73961403327,9,5,9,9_0,9_4,9_0_0 +31885,1,45.0,189.0,7,111,660.0,,,0,54,0.0,0.0,,756.0,133.01656563806603,,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,131908,2,2,0,0,2,,640.0,410.0,32,1.0,0.0,3.0,2.0,1.3,1,1,99.49079946489928,660.0,21848.58590579541,0,1,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03460178170155481,16806.604542919547,4,2,4_1,4_1_1,4_3_1,4_0_0_1 +31886,1,39.0,150.0,1,111,1100.0,0.0,0.0,62,56,2109.365702073203,0.0,1875.7205977092674,3100.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131909,2,2,2,0,1,,1200.0,,43,2.0,0.0,5.0,5.0,3.0,5,4,394.51215281938,1100.0,17535.91619605319,4,1,1,2,96.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0.17678004190609198,5845.305398684396,1,1,1_1,1_1_1,1_4_1,1_1_0_1 +31887,2,62.0,0.0,1,221,797.0,1981.0,0.0,74,31,0.0,0.0,1359.0448330675329,2869.0,0.0,3760.936518968722,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,131910,2,1,2,0,1,,440.0,,42,1.0,3.0,9.0,2.0,1.5,2,2,1917.81720372757,797.0,84109.68301467822,6,1,0,1,170.0,1,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034110222475803684,56073.122009785475,10,5,10,10_1,10_1,10_1_0 +31888,2,53.0,0.0,6,111,700.0,0.0,0.0,0,38,3164.0485531098047,529.7309108040896,1193.6403803604428,4170.0,96.99124577775646,0.0,12,0,0,0,0,0,0,0,0,2,120.0,1,,4,131911,2,1,3,0,1,,400.0,,32,1.0,1.0,5.0,3.0,2.0,3,3,1684.95102070358,700.0,51254.08487946069,0,1,1,2,125.0,6,5,2,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08135936891287791,25627.042439730347,7,4,7,7_1,7_2,7_0_0 +31889,2,34.0,0.0,2,111,315.0,1260.0,0.0,42,42,0.0,238.3789098618403,537.1381711621992,1755.0,0.0,2392.115100404134,10,0,0,0,0,0,0,0,0,2,25.0,1,,2,131912,2,3,3,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,1090.15184410341,315.0,65340.23471575123,1,1,1,2,130.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026859407647290428,43560.15647716748,10,5,10,10_1,10_2,10_0_1 +31890,2,40.0,0.0,1,120,750.0,0.0,0.0,43,34,1582.0242765549024,662.163638505112,1278.9004075290459,2840.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,131913,2,1,2,0,1,,360.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,148.82099643605,750.0,56150.39521276495,1,1,1,2,120.0,0,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05057845077026935,23395.998005318732,6,3,6,6_1,6_0,6_1_0 +31891,2,71.0,0.0,2,111,600.0,,,77,74,0.0,0.0,,934.0,462.786801282438,,41,0,0,0,0,0,0,0,0,0,,1,,2,131914,2,1,0,0,2,,612.0,,41,0.0,0.0,7.0,4.0,2.5,4,4,114.01774462081133,600.0,63939.14034535775,6,5,0,1,124.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014607640874668286,25575.656138143102,7,4,7,7_1,7_2,7_0_1 +31892,2,26.0,0.0,7,111,400.0,,,0,42,0.0,0.0,,600.0,277.1178450793042,,20,0,0,0,0,0,0,0,0,0,,1,,5,131915,1,1,0,0,2,,330.0,,22,3.0,0.0,4.0,4.0,2.5,4,4,111.56480827725406,400.0,52003.0,0,1,0,1,63.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011537795896390594,20801.2,5,3,5,5_1,5_2,5_0_0 +31893,2,43.0,0.0,7,112,710.0,1685.0,0.0,46,37,0.0,0.0,1210.6923857941633,2395.0,0.0,3198.9793207785447,12,0,0,0,0,0,0,0,0,2,25.0,1,,5,131916,2,1,1,0,1,,450.0,,43,2.0,0.0,6.0,5.0,2.8,4,3,889.481425956061,710.0,88066.15932050037,4,1,1,2,180.0,10,1,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027195463257161514,31452.199757321563,8,4,8,8_1,8_1,8_0_0 +31894,2,90.0,0.0,1,300,430.0,0.0,0.0,0,86,0.0,662.163638505112,733.2362336499863,1050.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,131917,2,2,4,0,1,,170.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1200.45778498099,430.0,12230.794856379769,0,6,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0858488767352928,12230.794856379769,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +31896,2,52.0,0.0,1,112,360.0,0.0,0.0,0,48,0.0,0.0,613.872195613942,450.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,1,10.0,1,,1,131919,2,2,3,1,1,,260.0,500.0,12,1.0,3.0,5.0,1.0,1.0,1,1,2267.03428277495,360.0,33545.10922052526,0,1,2,3,80.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.013414772241214179,33545.10922052526,8,4,8,8_1,8_0,8_1_0 +31897,2,37.0,0.0,5,111,1008.0,0.0,0.0,64,43,0.0,1013.1103669128213,1718.8421477190377,1878.0,145.4868686666347,0.0,33,0,0,0,0,0,0,0,0,2,5.0,1,,3,131920,2,1,1,0,1,,463.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,1435.2186814186,1008.0,76709.62332742332,1,1,1,2,140.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02448193484126553,31962.343053093053,8,4,8,8_1,8_2,8_0_0 +31898,2,42.0,0.0,9,400,984.0,0.0,0.0,52,54,0.0,476.7578197236806,1677.917334678108,1484.0,193.98249155551292,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,131921,2,1,1,0,1,,229.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1213.74972795804,984.0,46056.832809436964,1,1,1,2,120.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03222106057835421,21931.825147350934,6,3,6,6_1,6_0,6_0_0 +31899,2,61.0,0.0,5,111,301.0,103.0,0.0,68,74,0.0,0.0,513.2653635549904,404.0,0.0,195.54591693779827,71,0,0,0,0,0,0,0,0,0,,2,,3,131922,2,1,0,1,1,,0.0,642.0,42,1.0,1.0,4.0,2.0,1.5,2,2,2111.26978150024,301.0,35314.82388341677,1,5,2,3,77.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01143995511159016,23543.215922277846,6,3,6,6_0,6_2,6_0_0 +31900,2,28.0,0.0,9,112,1000.0,0.0,0.0,54,67,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,131923,2,1,1,0,1,,275.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,3145.39878530316,1000.0,26134.30717628242,1,1,1,2,100.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038263880241965115,17422.871450854946,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +31901,0,76.0,0.0,8,111,400.0,500.0,0.0,77,72,0.0,0.0,682.0802173488245,900.0,0.0,949.2520239698945,70,0,0,0,0,0,0,0,0,0,,1,2001.0,6,131924,2,1,1,0,1,,150.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1115.33636125461,400.0,19634.0,5,5,5,0,72.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.045838850972802284,13089.333333333334,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +31902,1,79.0,17.0,2,111,264.0,0.0,0.0,0,78,0.0,0.0,450.1729434502241,649.0,0.0,0.0,71,2,1,1,1,2,2,2,2,0,,2,,2,131925,2,1,0,1,1,350.0,168.0,357.0,11,0.0,0.0,3.0,1.0,1.0,1,1,150.895817249741,264.0,13843.39833764289,0,5,2,3,40.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.04688155207058103,13843.39833764289,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +31903,2,46.0,0.0,1,111,595.4,1547.0,0.0,31,37,0.0,0.0,1015.2764035237252,2142.0,0.0,2936.9857621628535,12,0,0,0,0,0,0,0,0,2,60.0,2,,1,131926,1,3,0,0,1,,0.0,2208.0,43,2.0,0.0,5.0,4.0,2.3,3,3,797.050055545219,595.4,94713.16268652346,1,1,2,3,143.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02261565276929329,41179.63595066238,9,5,9,9_0,9_4,9_1_0 +31904,2,64.0,0.0,6,111,3200.0,0.0,0.0,42,74,0.0,66.2163638505112,5456.641738790596,3370.0,166.2707070475825,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,131927,2,1,2,0,1,,250.0,,42,1.0,2.0,10.0,3.0,2.0,3,3,699.476991007124,3200.0,87054.33226630106,1,5,0,1,205.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.038711456538327096,43527.16613315053,10,5,10,10_1,10_4,10_0_0 +31905,2,61.0,0.0,2,111,2100.0,0.0,0.0,54,22,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,2,131928,2,2,1,0,1,,665.0,,43,2.0,0.0,3.0,4.0,2.5,4,3,1037.38457303893,2100.0,65696.59255867088,4,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031965128147621626,26278.63702346835,7,4,7,7_1,7_4,7_0_1 +31906,2,35.0,0.0,9,211,1550.0,0.0,0.0,54,52,0.0,629.0554565798564,2643.0608422266946,2025.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,2011.0,6,131929,2,1,1,0,1,,340.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,736.537566127438,1550.0,17581.43454492239,1,1,1,2,112.0,2,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11517831464923495,7325.597727050997,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +31907,2,28.0,0.0,2,111,226.0,346.0,0.0,43,68,0.0,0.0,385.3753228020858,572.0,0.0,656.882400587167,41,2,1,2,2,1,2,2,2,3,30.0,2,,2,131930,2,1,0,1,1,436.0,200.0,305.0,43,2.0,0.0,4.0,3.0,1.8,2,2,336.995770630194,226.0,34591.64938779183,4,1,2,3,50.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.016535782771950492,19217.582993217686,5,3,5,5_0,5_3,5_0_1 +31908,0,26.0,0.0,6,120,580.0,0.0,0.0,0,43,0.0,0.0,989.0163151557955,610.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,4,131931,2,2,0,0,1,,250.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2545.65339269749,580.0,16856.800101671513,0,1,5,0,75.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03618717647007706,16856.800101671513,4,2,4_0,4_0_0,4_0_0,4_0_0_0 +31909,2,66.0,0.0,6,111,700.0,900.0,0.0,75,78,0.0,0.0,1193.6403803604428,1600.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,1,,4,131932,2,1,2,0,1,,325.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,245.800343695321,700.0,28833.859314872883,5,5,0,1,120.0,8,6,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055490317217948656,19222.572876581922,5,3,5,5_1,5_2,5_0_0 +31910,2,79.0,0.0,8,300,620.0,0.0,0.0,0,86,0.0,0.0,1057.224336890678,750.0,180.1265993015477,0.0,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,131933,2,1,1,0,1,,210.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1415.73381761825,620.0,38864.128207127236,0,5,0,1,70.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019298001385824437,38864.128207127236,9,5,9,9_1,9_0,9_0_0 +31911,2,69.0,0.0,2,111,500.0,2300.0,0.0,77,78,0.0,0.0,852.6002716860306,2800.0,0.0,4366.559310261515,50,0,0,0,0,0,0,0,0,0,,1,,2,131934,2,1,1,0,1,,400.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,624.87863180451,500.0,59798.75976758647,5,5,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.046823713583399804,39865.83984505764,9,5,9,9_1,9_4,9_0_1 +31912,2,58.0,0.0,1,300,900.0,0.0,0.0,75,75,1054.6828510366015,397.2981831030672,1534.680489034855,2360.0,221.69427606344334,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,131935,2,2,2,0,1,,1200.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1249.800868637,900.0,54348.20524285869,5,5,0,1,100.0,0,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.043423697055941,36232.13682857246,9,5,9,9_1,9_0,9_1_0 +31913,2,44.0,0.0,5,111,800.0,0.0,0.0,46,38,0.0,0.0,1364.160434697649,800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,45.0,2,,3,131936,1,3,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,554.964380721911,800.0,56611.28140807401,1,1,1,2,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01413145896192172,31450.71189337445,8,4,8,8_0,8_4,8_0_0 +31914,2,25.0,0.0,9,111,0.0,0.0,0.0,47,47,0.0,0.0,0.0,791.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,2009.0,6,131937,2,1,0,0,1,,0.0,531.0,43,2.0,0.0,2.0,2.0,1.5,2,2,349.489940121326,0.0,7516.275261425475,1,1,2,3,42.0,9,7,3,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.10523829589630881,5010.85017428365,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +31915,1,28.0,350.0,9,120,2000.0,0.0,0.0,85,68,0.0,0.0,3410.4010867441225,2060.0,83.13535352379125,0.0,60,2,2,2,1,2,2,2,2,0,,1,2009.0,6,131938,2,2,1,0,1,,200.0,600.0,42,1.0,0.0,4.0,5.0,2.4,2,2,2211.84353263164,2000.0,11799.152946658292,6,4,2,3,110.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,1,0.17458880390082787,4916.313727774289,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +31916,2,48.0,0.0,7,111,240.0,,,85,62,0.0,0.0,,384.0,199.524848457099,,50,0,0,0,0,0,0,0,0,0,,2,,5,131939,1,2,0,0,2,,357.0,512.0,42,1.0,0.0,4.0,3.0,2.0,3,2,90.2381117217326,240.0,46106.14262615626,6,1,2,3,114.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008328608253212551,23053.07131307813,6,3,6,6_0,6_2,6_0_0 +31917,2,37.0,0.0,5,111,150.0,0.0,0.0,0,34,0.0,0.0,255.78008150580916,150.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,8.0,2,,3,131940,1,1,0,0,1,,0.0,505.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1613.32186695977,150.0,12154.653487339343,0,1,2,3,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,0,0,0.012340952389654264,9349.733451799495,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +31918,1,63.0,190.0,2,111,400.0,,,85,68,0.0,0.0,,650.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,2,25.0,8,,2,131941,2,1,0,0,2,,390.0,390.0,42,1.0,0.0,3.0,4.0,2.1,2,2,50.44898156525769,400.0,30571.060582647682,6,1,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021261938173284832,14557.647896498896,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +31919,2,48.0,0.0,2,111,210.0,200.0,0.0,0,54,0.0,0.0,358.0921141081328,410.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,2,131942,2,2,0,1,1,864.0,0.0,259.0,32,1.0,0.0,3.0,2.0,1.5,2,1,777.571966973244,210.0,11201.04891178921,0,4,2,3,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.036603714815357256,7467.3659411928065,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +31920,2,83.0,0.0,5,400,600.0,0.0,0.0,71,78,0.0,0.0,1023.1203260232367,660.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131943,2,1,4,0,1,,197.0,,41,0.0,5.0,3.0,2.0,1.5,2,2,1304.89749667914,600.0,34343.60620820136,5,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019217550888479207,22895.73747213424,6,3,6,6_1,6_0,6_0_0 +31921,2,39.0,0.0,1,111,480.0,0.0,0.0,37,37,0.0,0.0,818.4962608185893,480.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,131944,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,652.425399263683,480.0,157726.82632918685,1,1,1,2,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.003043236278641698,87626.01462732603,10,5,10,10_0,10_4,10_1_0 +31923,1,44.0,475.0,5,111,1200.0,0.0,0.0,35,33,0.0,0.0,2046.2406520464733,1293.0,128.85979796187644,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,3,131946,2,1,2,0,1,,500.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,1086.55489195335,1200.0,53821.771377276375,1,1,1,2,102.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.024023735505403793,26910.885688638187,7,4,7,7_1,7_3,7_0_0 +31924,2,33.0,0.0,7,111,600.0,1045.0,0.0,43,53,0.0,0.0,1023.1203260232367,1645.0,0.0,1983.9367300970796,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,131947,2,1,1,0,1,,441.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,693.144503399975,600.0,56534.52104203468,1,1,1,2,123.0,4,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029097266054078814,26921.200496206988,7,4,7,7_1,7_2,7_0_0 +31925,2,67.0,0.0,9,111,560.0,,,56,74,0.0,0.0,,686.0,174.58424239996165,,41,2,2,2,2,1,2,2,2,0,,1,2011.0,6,131948,2,2,0,0,2,,160.0,850.0,42,1.0,1.0,5.0,3.0,1.8,3,2,257.08042692524094,560.0,47811.85721383528,4,5,2,3,98.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.014347905310013615,26562.142896575155,7,4,7,7_1,7_2,7_0_0 +31926,2,50.0,0.0,1,112,490.0,0.0,0.0,47,64,0.0,0.0,835.54826625231,490.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,131949,2,2,2,0,1,,650.0,,43,2.0,0.0,6.0,4.0,2.5,4,4,298.960927085268,490.0,41837.00578670275,1,1,0,1,90.0,9,3,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011712119229998505,16734.8023146811,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +31927,2,54.0,0.0,1,112,1000.0,0.0,0.0,52,62,1582.0242765549024,0.0,1705.2005433720612,2620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,131950,2,1,2,0,1,,400.0,,43,3.0,0.0,7.0,5.0,3.0,5,5,945.667851341583,1000.0,59530.64872007424,1,1,0,1,180.0,4,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04401094320876288,19843.54957335808,5,3,5,5_1,5_0,5_1_0 +31928,2,38.0,0.0,6,111,200.0,,,0,81,0.0,0.0,,440.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,,4,131951,2,3,0,0,1,,0.0,700.0,32,1.0,0.0,4.0,3.0,1.6,1,1,101.15034934059437,200.0,13019.790474751671,0,4,2,3,55.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03379470667006968,8137.369046719794,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +31929,2,33.0,0.0,5,111,0.0,0.0,0.0,46,33,0.0,0.0,0.0,873.0,0.0,0.0,12,0,0,0,0,0,0,0,0,1,15.0,2,,3,131952,2,3,0,1,2,625.0,0.0,600.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1456.33856877497,0.0,74903.03282622295,1,1,2,3,73.0,8,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.011655068787740325,49935.35521748196,10,5,10,10_0,10_3,10_0_0 +31931,2,80.0,0.0,1,111,1100.0,0.0,0.0,0,86,0.0,927.0290939071567,1875.7205977092674,1868.0,94.22006732696343,0.0,70,2,2,2,1,2,2,2,2,0,,2,,1,131954,2,3,0,0,1,,180.0,206.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1130.03867326547,1100.0,16547.03664099445,0,5,2,3,35.0,8,6,8,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,1,0,1,0,0,0.1128903041993709,16547.03664099445,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +31932,2,43.0,0.0,5,111,320.0,0.0,0.0,43,62,0.0,0.0,545.6641738790596,320.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,40.0,2,,3,131955,1,1,0,1,1,,0.0,800.0,43,2.0,0.0,3.0,2.0,1.5,2,2,748.889260486572,320.0,45570.387847767386,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.007022103938833991,30380.258565178257,8,4,8,8_0,8_4,8_0_0 +31933,1,37.0,491.0,2,111,470.0,2500.0,0.0,0,85,0.0,0.0,801.4442553848687,2970.0,0.0,4746.260119849472,50,1,2,2,1,1,2,2,2,0,,1,,2,131956,1,2,2,0,1,,810.0,620.0,31,0.0,0.0,7.0,4.0,1.9,1,1,662.100597281146,470.0,12850.368344691975,0,6,2,3,110.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.23112177957348592,6763.351760364198,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +31934,2,52.0,0.0,6,111,1500.0,800.0,0.0,31,56,0.0,0.0,2557.8008150580918,2300.0,0.0,1518.8032383518312,71,2,2,2,1,2,2,2,2,3,30.0,2,,4,131957,2,3,0,0,1,,0.0,507.0,43,2.0,4.0,4.0,2.0,1.5,2,2,257.173713014275,1500.0,15869.061972224139,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.1449361029672532,10579.374648149425,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +31935,2,60.0,0.0,6,111,600.0,1400.0,0.0,75,22,0.0,0.0,1023.1203260232367,2000.0,0.0,2657.9056671157045,31,0,0,0,0,0,0,0,0,2,20.0,2,,4,131958,2,2,0,0,1,,0.0,,42,2.0,0.0,3.0,3.0,2.0,3,3,856.82519624682,600.0,116154.24485462223,5,1,0,1,73.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017218483943511362,58077.122427311115,10,5,10,10_0,10_4,10_0_0 +31936,2,86.0,0.0,2,111,521.0,1725.0,0.0,0,74,0.0,0.0,888.4094830968438,2246.0,0.0,3274.919482696136,50,0,0,0,0,0,0,0,0,0,,1,,2,131959,2,2,1,0,2,,285.0,,21,0.0,0.0,6.0,2.0,1.5,2,2,1775.35660393939,521.0,60995.92385859837,0,5,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0368221326593349,40663.94923906558,9,5,9,9_1,9_2,9_0_1 +31937,1,90.0,200.0,9,111,270.0,,,0,86,0.0,0.0,,270.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,2005.0,6,131960,2,1,0,0,1,,210.0,375.0,11,0.0,4.0,1.0,1.0,1.0,1,1,151.44314450212406,270.0,10559.434199475661,0,5,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02556955182441566,10559.434199475661,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +31938,2,58.0,0.0,5,111,300.0,10000.0,0.0,77,63,0.0,0.0,511.56016301161833,10300.0,0.0,18985.04047939789,70,0,0,0,0,0,0,0,0,0,,2,,3,131961,2,2,0,0,1,,400.0,405.0,42,1.0,6.0,3.0,2.0,1.5,2,2,379.16756765754,300.0,31574.885229417843,5,1,2,3,64.0,6,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.32620862831842207,21049.923486278563,5,3,5,5_0,5_2,5_0_0 +31939,2,36.0,0.0,5,111,700.0,,,35,38,0.0,0.0,,820.0,166.2707070475825,,20,0,0,0,0,0,0,0,0,2,20.0,1,,3,131962,2,1,0,0,2,,800.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,63.03606087996033,700.0,70634.00181574609,1,1,1,2,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011609139775756007,39241.11211985894,9,5,9,9_1,9_2,9_0_0 +31940,2,75.0,0.0,2,111,290.0,,,0,78,0.0,0.0,,359.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,2,131963,2,1,0,0,2,,243.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,101.21658591438154,290.0,21456.123361822567,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016731820280208583,21456.123361822567,6,3,6,6_1,6_2,6_0_1 +31941,2,40.0,0.0,2,111,450.0,342.0,0.0,56,47,0.0,0.0,767.3402445174275,792.0,0.0,649.2883843954079,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,131964,2,1,0,1,2,650.0,0.0,355.0,43,3.0,0.0,3.0,5.0,2.6,3,3,168.184104109589,450.0,24309.046706642013,1,1,2,3,68.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03258046313200756,9349.633348708467,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +31942,2,50.0,0.0,7,111,636.0,,,56,21,0.0,0.0,,936.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,131965,2,1,0,0,1,,696.0,,43,2.0,3.0,5.0,3.0,1.8,2,2,109.76718070971508,636.0,42444.836427811766,4,4,0,1,107.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02205215236467941,23580.464682117647,6,3,6,6_1,6_2,6_0_0 +31944,2,66.0,0.0,2,111,500.0,500.0,0.0,85,78,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,131967,2,1,0,1,1,,500.0,,41,1.0,0.0,4.0,5.0,2.8,4,3,184.605240549706,500.0,17774.54276627942,6,5,0,1,62.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05626023764150647,6348.050987956936,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +31945,1,40.0,73.0,2,111,150.0,120.0,0.0,85,63,0.0,0.0,255.78008150580916,270.0,0.0,227.8204857527747,44,0,0,0,0,0,0,0,0,0,,2,,2,131968,2,1,0,1,1,760.0,0.0,309.0,42,2.0,0.0,3.0,3.0,2.0,3,3,631.572279772223,150.0,19243.326270090463,6,1,2,3,68.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014030838338985909,9621.663135045232,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +31946,1,40.0,269.0,2,221,900.0,0.0,0.0,0,67,0.0,0.0,1534.680489034855,1028.0,177.35542085075468,0.0,71,1,1,2,2,1,2,2,1,2,20.0,2,,2,131969,1,3,0,1,1,1270.0,450.0,268.0,32,1.0,1.0,5.0,5.0,2.8,4,2,2209.02321470969,900.0,30043.69394840116,0,1,2,3,89.0,1,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.034216831051652595,10729.890695857557,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +31947,2,70.0,0.0,2,400,960.0,0.0,0.0,71,71,0.0,662.163638505112,1636.9925216371787,1550.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,131970,2,2,2,0,2,,400.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1147.11098290735,960.0,24601.75861073858,5,5,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0630036260628714,16401.172407159054,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +31948,1,26.0,178.0,5,111,516.0,0.0,0.0,0,56,0.0,0.0,879.8834803799836,516.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,20.0,2,,3,131971,2,2,0,0,1,,0.0,320.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2802.55508964592,516.0,18162.214507676654,0,1,2,3,30.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.028410632402887954,18162.214507676654,4,2,4_1,4_0_1,4_3_1,4_0_0_1 +31949,2,68.0,0.0,5,111,312.0,0.0,0.0,0,75,0.0,0.0,532.0225695320831,312.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,131972,1,3,0,1,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,189.105543239253,312.0,18769.100671925986,0,5,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016623066041021144,18769.100671925986,5,3,5,5_0,5_4,5_0_0 +31950,2,56.0,0.0,1,300,671.0,0.0,0.0,56,63,0.0,2264.599643687483,1144.189564602653,3316.0,1295.5259257457471,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,131973,2,1,1,0,1,,361.0,,43,2.0,2.0,8.0,3.0,2.0,3,3,1477.75329308418,671.0,59515.71001870728,1,1,0,1,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05571638142194218,29757.85500935364,8,4,8,8_1,8_0,8_1_0 +31951,1,31.0,137.0,2,111,220.0,110.0,0.0,85,63,0.0,0.0,375.14411954185346,330.0,0.0,208.8354452733768,50,0,0,0,0,0,0,0,0,0,,2,,2,131974,1,1,0,1,1,504.0,0.0,298.0,42,1.0,0.0,3.0,3.0,1.8,2,2,383.595498640338,220.0,19882.18811573877,6,1,2,3,68.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.016597770732224966,11045.660064299316,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +31952,2,44.0,0.0,9,111,300.0,,,0,52,0.0,0.0,,324.0,33.25414140951651,,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,131975,2,1,0,0,2,,510.0,622.0,32,1.0,0.0,4.0,2.0,1.3,1,1,87.2353225234471,300.0,38551.92241528837,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008404250156705874,29655.324934837205,8,4,8,8_1,8_2,8_0_0 +31953,2,57.0,0.0,5,112,430.0,677.0,0.0,77,85,0.0,397.2981831030672,733.2362336499863,1407.0,0.0,1285.2872404552372,70,0,0,0,0,0,0,0,0,0,,1,,3,131976,2,1,2,0,1,,450.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,3217.30188205867,430.0,32113.12907836995,5,5,0,1,110.0,8,1,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04381385559053776,21408.7527189133,6,3,6,6_1,6_1,6_0_0 +31954,2,38.0,0.0,7,112,600.0,0.0,0.0,0,64,0.0,397.2981831030672,1023.1203260232367,930.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,131977,2,1,2,0,1,,273.0,612.0,32,1.0,0.0,5.0,2.0,1.3,1,1,1293.98406814514,600.0,23709.35616469523,0,1,2,3,98.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03922502127598177,18237.96628053479,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +31955,1,96.0,247.0,8,111,361.0,,,0,78,0.0,0.0,,453.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,131978,2,2,0,0,2,,493.0,455.0,11,0.0,11.0,3.0,1.0,1.0,1,1,98.25982202264659,361.0,13254.288122860118,0,5,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03417761827726497,13254.288122860118,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +31956,2,32.0,0.0,7,211,720.0,,,0,38,0.0,0.0,,795.0,103.91919190473907,,12,0,0,0,0,0,0,0,0,2,30.0,1,,5,131979,2,2,0,0,2,,160.0,400.0,12,1.0,0.0,3.0,1.0,1.0,1,1,138.01685113303566,720.0,67187.56842789291,0,1,2,3,90.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011832546088540329,67187.56842789291,10,5,10,10_1,10_2,10_0_0 +31957,1,50.0,16.0,7,111,300.0,600.0,0.0,62,85,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,50,2,2,2,2,2,1,2,2,0,,2,,5,131980,1,3,0,0,1,,160.0,370.0,42,1.0,1.0,3.0,2.0,1.5,2,2,395.934428664679,300.0,47426.13060030128,4,7,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.01897688022632575,31617.420400200852,8,4,8,8_0,8_3,8_0_0 +31958,2,31.0,0.0,8,111,1800.0,,,54,54,0.0,0.0,,1860.0,83.13535352379125,,71,0,0,0,0,0,0,0,0,2,30.0,1,2000.0,6,131981,2,1,0,0,2,,378.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,111.43596380664428,1800.0,33583.09331982612,1,1,1,2,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05538501121044529,18657.274066570066,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +31959,2,42.0,0.0,6,211,300.0,,,42,43,0.0,0.0,,400.0,138.5589225396521,,43,0,0,0,0,0,0,0,0,2,5.0,1,,4,131982,1,3,0,0,2,,400.0,624.0,43,2.0,0.0,3.0,4.0,2.1,2,2,72.35308688138448,300.0,94304.39413834733,1,1,2,3,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004241583901309924,44906.85435159397,10,5,10,10_1,10_2,10_0_0 +31960,2,63.0,0.0,2,111,361.0,143.0,0.0,0,75,0.0,0.0,615.5773961573141,504.0,0.0,271.48607885538985,33,0,0,0,0,0,0,0,0,0,,2,,2,131983,2,1,0,1,1,794.0,0.0,405.0,31,0.0,2.0,4.0,4.0,2.5,4,4,210.240002294762,361.0,42925.85869263687,0,5,2,3,127.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011741174558878463,17170.34347705475,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +31961,0,94.0,0.0,8,111,0.0,,,0,86,0.0,0.0,,857.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,131984,2,1,0,0,2,,185.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,98.39919748201812,0.0,5911.585142985492,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.14496957740968855,5911.585142985492,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +31962,2,63.0,0.0,2,111,330.0,881.0,0.0,75,77,0.0,0.0,562.7161793127802,1211.0,0.0,1672.582066234954,50,0,0,0,0,0,0,0,0,0,,1,,2,131985,2,1,2,0,2,,250.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,534.311620843297,330.0,56482.175833251626,5,5,0,1,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021440392161505083,37654.78388883442,9,5,9,9_1,9_4,9_0_1 +31963,2,59.0,0.0,9,111,0.0,0.0,0.0,77,52,0.0,0.0,0.0,221.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,2006.0,6,131986,1,3,0,1,1,1079.0,0.0,548.0,42,2.0,1.0,4.0,4.0,2.5,4,4,540.921969150468,0.0,38420.00967510627,7,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005752210940831543,15368.003870042507,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +31964,2,47.0,0.0,6,111,286.0,0.0,0.0,0,56,0.0,0.0,487.6873554044095,286.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,100.0,2,,4,131987,2,1,0,0,1,,0.0,337.0,12,1.0,1.0,2.0,1.0,1.0,1,1,2756.42813683336,286.0,52635.43073517391,0,1,2,3,50.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005433602347418028,52635.43073517391,10,5,10,10_0,10_3,10_0_0 +31965,1,36.0,444.0,5,111,400.0,0.0,0.0,0,43,0.0,0.0,682.0802173488245,520.0,166.2707070475825,0.0,71,1,2,2,2,1,2,2,2,0,,2,,3,131988,1,3,0,1,1,500.0,0.0,406.0,32,1.0,0.0,6.0,4.0,2.1,2,1,299.367947977751,400.0,17064.166289298762,0,4,2,3,85.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.030473214523589184,8125.793471094648,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31966,2,65.0,0.0,5,112,1600.0,0.0,0.0,86,86,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,131989,2,1,1,0,1,,270.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,404.763161266338,1600.0,45211.59706232343,5,5,0,1,120.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03538915021724242,30141.06470821562,8,4,8,8_1,8_1,8_0_0 +31967,1,32.0,208.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,863.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,2,,2,131990,2,2,0,1,1,350.0,163.0,246.0,12,1.0,0.0,2.0,1.0,1.0,1,1,348.438424644688,0.0,11551.892998541527,0,1,2,3,65.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.07470637064496331,11551.892998541527,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +31968,1,27.0,271.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,313.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,1,131991,1,2,0,1,1,432.0,77.0,259.0,12,1.0,1.0,3.0,1.0,1.0,1,1,404.243036306305,0.0,7069.846153846153,0,4,2,3,55.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.04427253340296819,7069.846153846153,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +31969,1,38.0,258.0,9,120,0.0,0.0,0.0,22,22,0.0,0.0,0.0,974.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,131992,2,1,1,0,1,,181.0,650.0,43,2.0,0.0,4.0,4.0,2.3,3,2,2001.02119849776,0.0,29923.358156211827,1,1,2,3,98.0,0,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03254982261400384,13010.1557200921,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +31970,1,57.0,253.0,7,211,660.0,,,0,52,0.0,0.0,,760.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,2,10.0,2,,5,131993,2,2,0,0,2,,400.0,446.0,22,1.0,0.0,3.0,4.0,1.9,1,1,98.21118898162572,660.0,11102.67277797386,0,1,2,3,38.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06845198585945296,5843.511988407295,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31971,1,34.0,280.0,2,111,240.0,200.0,0.0,85,68,0.0,0.0,409.2481304092947,440.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,131994,2,1,0,1,1,,0.0,,42,1.0,0.0,3.0,5.0,2.4,2,2,188.106583187413,240.0,14523.788077628726,6,4,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030295126701672313,6051.578365678636,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +31972,2,37.0,0.0,1,112,1200.0,0.0,0.0,52,38,0.0,476.7578197236806,2046.2406520464733,1560.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,131995,2,1,1,0,1,,211.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1990.92684123349,1200.0,61928.6483538978,1,1,1,2,180.0,8,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02519028012827303,25803.60348079075,7,4,7,7_1,7_1,7_1_0 +31973,2,55.0,0.0,9,120,3023.0,0.0,0.0,43,46,0.0,0.0,5154.821242613741,3183.0,221.69427606344334,0.0,31,0,0,0,0,0,0,0,0,0,,1,2009.0,6,131996,2,1,1,0,1,,300.0,,43,3.0,1.0,9.0,3.0,2.0,3,3,110.000603681286,3023.0,43086.12974438266,1,1,1,2,251.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07387528234454575,21543.06487219133,6,3,6,6_1,6_0,6_0_0 +31974,1,34.0,98.0,2,111,710.0,1145.0,0.0,85,63,0.0,0.0,1210.6923857941633,1855.0,0.0,2173.7871348910585,43,2,2,2,2,1,2,2,2,0,,1,,2,131997,1,2,2,0,1,,410.0,700.0,42,1.0,0.0,5.0,4.0,2.1,2,2,414.182440920495,710.0,41776.07638283136,6,1,2,3,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.044403404067940334,19893.36970611017,5,3,5,5_1,5_2,5_0_1 +31975,0,55.0,0.0,1,300,0.0,0.0,0.0,0,72,0.0,0.0,0.0,2046.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,131998,2,1,2,0,1,,90.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1796.32373944239,0.0,9462.967516289134,0,7,5,0,70.0,0,0,2,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.21621124625843913,9462.967516289134,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +31976,1,20.0,417.0,2,111,360.0,240.0,0.0,0,43,0.0,0.0,613.872195613942,600.0,0.0,455.6409715055494,50,0,0,0,0,0,0,0,0,0,,2,,2,131999,2,1,0,1,1,1079.0,0.0,401.0,22,3.0,2.0,4.0,9.0,3.999999999999999,4,4,328.05251648345,360.0,31078.455734441224,0,1,2,3,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019305978557199625,7769.613933610308,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +31977,2,55.0,0.0,5,111,330.0,0.0,0.0,67,65,0.0,0.0,562.7161793127802,420.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,2,7.0,2,,3,132000,2,2,0,1,1,1055.0,0.0,358.0,43,3.0,0.0,4.0,3.0,2.0,3,3,523.069869845818,330.0,27189.42457668706,4,1,2,3,75.0,8,6,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015447182371050222,13594.71228834353,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +31978,2,39.0,0.0,2,111,425.0,0.0,0.0,0,46,1054.6828510366015,0.0,724.710230933126,1425.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,15.0,2,,2,132001,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,884.493874043445,425.0,32142.872373225662,0,1,1,2,54.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04433331232671649,32142.872373225662,8,4,8,8_0,8_4,8_0_1 +31979,1,44.0,99.0,1,111,780.0,0.0,0.0,0,38,0.0,0.0,1330.0564238302077,2576.0,0.0,0.0,10,1,2,2,2,1,2,2,2,0,,2,,1,132002,1,2,0,1,2,,0.0,1128.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1029.07137253581,780.0,30554.940067965013,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.08430715276384321,30554.940067965013,8,4,8,8_0,8_4,8_1_0 +31980,2,63.0,0.0,1,111,0.0,0.0,2000.0,75,77,0.0,0.0,1260.6365808294875,2100.0,138.5589225396521,2393.4642951293617,50,0,0,0,0,0,0,0,0,0,,1,,1,132003,2,1,2,0,1,,140.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,404.957945634552,0.0,18830.656291850843,5,5,0,1,82.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11152027669416899,12553.770861233896,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +31981,1,48.0,413.0,6,111,0.0,,,0,85,0.0,0.0,,728.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,4,132004,2,2,0,0,2,,603.0,500.0,31,2.0,1.0,2.0,3.0,2.0,3,3,165.57403611016036,0.0,3675.0,0,7,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1980952380952381,1837.5,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +31982,2,58.0,0.0,6,111,500.0,,,71,52,0.0,0.0,,629.0,178.7410100761512,,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,132005,1,1,0,0,1,,350.0,,42,2.0,3.0,5.0,3.0,2.0,3,3,137.43662997212112,500.0,4735.01755630332,6,1,0,1,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.13284005656170517,2367.50877815166,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +31984,2,63.0,0.0,1,111,1000.0,480.0,0.0,0,86,2109.365702073203,0.0,1705.2005433720612,3480.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,0,,1,,1,132007,2,2,2,0,1,,500.0,,31,0.0,6.0,8.0,4.0,2.5,4,4,241.538194311379,1000.0,20087.937484088696,0,6,0,1,250.0,9,7,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17323829301820792,8035.174993635478,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +31985,2,40.0,0.0,2,400,720.0,0.0,0.0,52,68,1344.720635071667,0.0,1227.744391227884,2055.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,17.0,1,,2,132008,2,1,1,0,1,,276.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1443.999660932,720.0,31323.240937128554,1,1,1,2,81.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0656062380047058,17401.800520626974,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +31986,2,80.0,0.0,2,111,180.0,2000.0,0.0,0,77,0.0,0.0,306.936097806971,2180.0,0.0,3797.008095879578,70,0,0,0,0,0,0,0,0,0,,1,,2,132009,2,1,2,0,1,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1110.23547074475,180.0,22441.022010462177,0,5,0,1,110.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09714352577095942,22441.022010462177,6,3,6,6_1,6_2,6_0_1 +31987,0,66.0,0.0,2,111,260.0,,,0,86,0.0,0.0,,306.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,2,132010,1,3,0,0,2,,160.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,125.38511781592871,260.0,11124.342105263146,0,5,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027507244662605745,11124.342105263146,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +31988,2,38.0,0.0,7,111,600.0,,,43,43,0.0,0.0,,747.0,203.68161613328857,,33,0,0,0,0,0,0,0,0,2,40.0,1,,5,132011,2,2,0,0,1,,200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,134.1576252608355,600.0,77074.49288440558,1,1,1,2,92.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009691922347388417,36702.13946876456,9,5,9,9_1,9_2,9_0_0 +31989,2,65.0,0.0,7,111,165.0,0.0,0.0,78,72,0.0,0.0,281.3580896563901,445.0,387.96498311102584,0.0,71,2,2,2,2,1,2,2,2,0,,7,,5,132012,1,2,0,0,2,,110.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1115.47200767771,165.0,39610.76249150945,7,5,0,1,45.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.011234320472760037,26407.17499433963,7,4,7,7_1,7_3,7_0_0 +31990,1,28.0,112.0,1,111,0.0,0.0,900.0,0,63,0.0,0.0,567.2864613732694,900.0,0.0,1077.0589328082126,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,132013,2,2,0,0,1,,0.0,282.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1274.0432624931,0.0,16452.270378667563,0,1,2,3,38.0,8,7,4,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.054703696163841506,16452.270378667563,4,2,4_1,4_0_1,4_3_1,4_1_0_1 +31991,2,75.0,0.0,2,111,970.0,1350.0,0.0,72,75,0.0,0.0,1654.0445270708994,2320.0,0.0,2562.980464718715,33,0,0,0,0,0,0,0,0,0,,1,,2,132014,2,1,2,0,1,,350.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1526.57271019365,970.0,78770.89996770723,5,5,0,1,200.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.029452500872163487,52513.933311804816,10,5,10,10_1,10_2,10_0_1 +31992,2,51.0,0.0,9,211,640.0,,,85,67,0.0,0.0,,860.0,304.8296295872346,,42,0,0,0,0,0,0,0,0,1,20.0,1,2005.0,6,132015,2,1,0,0,1,,420.0,,42,3.0,0.0,4.0,4.0,2.5,4,4,101.2545264025056,640.0,71409.21459073559,6,1,0,1,108.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012043263673027063,28563.685836294237,8,4,8,8_1,8_2,8_0_0 +31993,2,80.0,0.0,2,111,0.0,,,71,71,0.0,0.0,,92.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,2,132016,2,1,0,0,1,,329.0,,41,0.0,8.0,4.0,2.0,1.5,2,2,79.30827234127823,0.0,22680.260067521358,5,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.004056390875858874,15120.173378347572,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +31994,0,67.0,0.0,1,112,400.0,,,0,77,0.0,0.0,,550.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,1,132017,2,3,0,0,2,,400.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,127.2642614321198,400.0,12724.993730318749,0,5,5,0,45.0,8,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04322202522501542,12724.993730318749,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +31995,2,72.0,0.0,1,111,120.0,,,0,78,0.0,0.0,,206.0,119.1606733841008,,71,2,2,2,2,1,2,2,2,0,,1,,1,132018,1,2,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,163.82993481077742,120.0,10568.408513291502,0,5,0,1,48.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.019492054999664454,10568.408513291502,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +31997,0,84.0,0.0,1,111,920.0,0.0,0.0,0,71,0.0,1986.490915515336,1568.7844999022964,3920.0,2078.3838380947814,0.0,71,2,2,2,2,1,2,2,1,0,,1,,1,132020,1,3,4,0,1,,210.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,950.755886795117,920.0,14537.05194379938,0,5,0,1,55.0,5,4,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.26965577444139444,14537.05194379938,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +31998,2,46.0,0.0,1,111,60.0,80.0,0.0,38,38,0.0,0.0,102.31203260232367,140.0,0.0,151.8803238351831,31,0,0,0,0,0,0,0,0,2,40.0,1,,1,132021,2,1,2,0,1,,1200.0,,43,2.0,0.0,5.0,5.0,2.8,4,3,486.63277731173,60.0,102465.7093833038,4,1,1,2,140.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0013663107476891406,36594.89620832279,9,5,9,9_1,9_4,9_1_0 +31999,2,67.0,0.0,2,111,372.0,173.0,0.0,77,78,0.0,0.0,634.3346021344067,545.0,0.0,328.4412002935835,50,0,0,0,0,0,0,0,0,0,,2,,2,132022,2,3,0,1,1,625.0,308.0,349.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1907.41626446434,372.0,22190.55207747156,5,5,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02456000184661014,14793.70138498104,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +32000,2,38.0,0.0,2,111,290.0,56.0,0.0,0,38,0.0,0.0,494.50815757789775,346.0,0.0,106.31622668462819,12,0,0,0,0,0,0,0,0,2,50.0,2,,2,132023,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1927.56388052209,290.0,44441.50496023291,0,1,1,2,60.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007785514921459282,44441.50496023291,10,5,10,10_0,10_2,10_0_1 +32001,2,64.0,0.0,1,120,800.0,0.0,0.0,78,78,0.0,0.0,1364.160434697649,890.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132024,1,2,4,0,2,,350.0,,41,1.0,4.0,5.0,3.0,2.0,3,3,2638.71548798197,800.0,29057.078339617263,5,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.030629369876686748,14528.539169808631,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +32002,2,85.0,0.0,5,111,0.0,0.0,0.0,0,90,0.0,0.0,0.0,405.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,132025,2,1,0,1,1,,0.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,836.575524355202,0.0,65955.6523898176,0,5,0,1,75.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00614048963698106,65955.6523898176,10,5,10,10_0,10_4,10_0_0 +32003,2,69.0,0.0,2,111,403.0,185.0,0.0,75,75,0.0,0.0,687.1958189789407,588.0,0.0,351.223248868861,33,0,0,0,0,0,0,0,0,0,,2,,2,132026,2,3,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,1944.92012452107,403.0,48386.767261930276,5,5,0,1,73.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0121520827547127,32257.84484128685,8,4,8,8_0,8_3,8_0_1 +32004,2,62.0,0.0,5,112,250.0,0.0,0.0,0,52,0.0,0.0,426.3001358430153,250.0,0.0,0.0,50,2,2,2,2,1,2,2,2,2,15.0,2,,3,132027,1,1,0,1,1,973.0,0.0,340.0,12,1.0,0.0,2.0,1.0,1.0,1,1,428.728755998182,250.0,22693.774523814714,0,1,2,3,59.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.011016237062620476,22693.774523814714,6,3,6,6_0,6_2,6_0_0 +32005,2,57.0,0.0,2,111,0.0,0.0,0.0,54,65,0.0,0.0,0.0,1110.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,132028,2,1,0,1,1,,0.0,259.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1644.72857149582,0.0,29739.750112481124,4,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03732378368351378,19826.500074987416,5,3,5,5_0,5_3,5_0_1 +32006,2,44.0,0.0,6,111,700.0,,,0,42,0.0,0.0,,820.0,166.2707070475825,,10,0,0,0,0,0,0,0,0,0,,1,,4,132029,2,2,0,0,2,,500.0,,22,2.0,3.0,6.0,4.0,2.5,4,4,74.27489586814069,700.0,27701.232682609152,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029601570781895074,11080.49307304366,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +32007,2,44.0,0.0,1,111,460.0,1100.0,0.0,54,37,0.0,0.0,784.3922499511482,1560.0,0.0,2088.354452733768,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,132030,1,1,0,0,1,,330.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1644.50611491781,460.0,71517.41975813864,1,1,0,1,120.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021812867484253345,34055.91417054221,9,5,9,9_0,9_3,9_1_0 +32008,1,43.0,366.0,2,111,0.0,0.0,744.0,0,69,0.0,0.0,468.9568080685694,744.0,0.0,890.3687177881226,71,0,0,0,0,0,0,0,0,0,,2,,2,132031,2,1,0,1,1,1140.0,240.0,343.0,32,1.0,2.0,4.0,2.0,1.5,2,1,267.673827409269,0.0,8251.944407912151,0,4,2,3,84.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.09016056861539638,5501.2962719414345,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32009,1,25.0,463.0,1,111,700.0,450.0,0.0,85,53,0.0,0.0,1193.6403803604428,1150.0,0.0,854.326821572905,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,132032,2,1,2,0,1,,250.0,700.0,42,1.0,0.0,8.0,5.0,2.4,2,2,484.124997880711,700.0,34052.624407173294,6,1,2,3,148.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.03377125904450844,14188.593502988873,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +32010,1,33.0,250.0,2,111,360.0,300.0,0.0,85,65,0.0,0.0,613.872195613942,660.0,0.0,569.5512143819367,71,2,1,2,2,1,2,2,2,2,15.0,2,,2,132033,1,2,0,1,1,47.0,0.0,200.0,42,1.0,0.0,3.0,3.0,1.8,2,2,614.488064291844,360.0,25639.24489744201,6,1,2,3,64.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.025741787741410716,14244.02494302334,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +32011,2,61.0,0.0,2,111,250.0,250.0,0.0,0,77,0.0,0.0,426.3001358430153,1490.0,0.0,474.62601198494724,50,0,0,0,0,0,0,0,0,0,,2,,2,132034,2,2,0,1,1,900.0,0.0,446.0,11,0.0,2.0,3.0,1.0,1.0,1,1,746.014040688473,250.0,27106.140158833714,0,5,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0549690952407482,27106.140158833714,7,4,7,7_0,7_4,7_0_1 +32013,0,90.0,0.0,1,400,600.0,0.0,0.0,0,71,0.0,397.2981831030672,1023.1203260232367,980.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132036,2,2,4,0,1,,36.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1881.73811551819,600.0,13697.022420599107,0,5,0,1,50.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07154839715573269,13697.022420599107,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +32014,0,33.0,0.0,1,112,450.0,0.0,0.0,0,38,0.0,0.0,767.3402445174275,450.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,30.0,2,,1,132037,1,3,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1210.43843953893,450.0,19944.0,0,1,5,0,53.0,10,4,1,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02256317689530686,19944.0,5,3,5,5_0,5_2,5_1_0 +32016,2,42.0,0.0,1,112,0.0,0.0,0.0,0,90,0.0,0.0,0.0,1305.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132039,2,1,1,0,1,,198.0,600.0,32,1.0,0.0,4.0,2.0,1.3,1,1,2614.28994798262,0.0,35706.812171450096,0,1,2,3,90.0,8,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03654764793154601,27466.77859342315,7,4,7,7_1,7_1,7_1_0 +32017,0,66.0,0.0,7,111,0.0,,,0,72,0.0,0.0,,457.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,8,,5,132040,2,1,0,0,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,99.55968883413907,0.0,13692.241828277254,0,5,5,0,18.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033376565045484544,13692.241828277254,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +32018,2,59.0,0.0,5,221,1544.0,0.0,0.0,68,64,0.0,0.0,2632.8296389664624,1574.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,2,25.0,1,,3,132041,2,1,2,0,1,,202.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,921.715630131245,1544.0,30168.85638681138,1,1,0,1,93.0,1,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05217300847665177,20112.57092454092,5,3,5,5_1,5_1,5_0_0 +32019,2,46.0,0.0,2,111,121.0,0.0,0.0,0,35,0.0,0.0,206.3292657480194,322.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,132042,2,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1042.21999129593,121.0,37936.679616227164,0,1,0,1,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.00848782769755808,37936.679616227164,9,5,9,9_0,9_4,9_0_1 +32020,1,41.0,369.0,9,111,299.0,550.0,0.0,0,63,0.0,0.0,509.8549624682463,849.0,0.0,1044.177226366884,71,0,0,0,0,0,0,0,0,0,,2,2012.0,6,132043,2,1,0,0,1,,280.0,409.0,32,1.0,0.0,2.0,2.0,1.5,2,1,32.3566501735343,299.0,5608.2723665785925,0,4,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.15138351786540366,3738.8482443857283,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32021,2,45.0,0.0,1,221,1000.0,0.0,0.0,0,62,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,7.0,8,,1,132044,2,3,0,0,1,,280.0,404.0,12,1.0,5.0,2.0,1.0,1.0,1,1,636.894136865433,1000.0,27254.77351243559,0,1,2,3,60.0,1,2,3,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03669082040046042,27254.77351243559,7,4,7,7_0,7_1,7_1_0 +32022,2,74.0,0.0,7,111,280.0,,,72,77,0.0,0.0,,560.0,387.96498311102584,,71,0,0,0,0,0,0,0,0,0,,1,,5,132045,2,2,0,0,2,,310.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,84.20795418504652,280.0,13838.212964967655,5,5,0,1,106.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040467652970631166,9225.475309978438,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +32023,2,46.0,0.0,6,111,390.0,,,0,62,0.0,0.0,,410.0,27.711784507930417,,71,0,0,0,0,0,0,0,0,0,,1,,4,132046,2,1,0,0,2,,270.0,,32,1.0,1.0,3.0,2.0,1.3,1,1,104.8412861741285,390.0,16046.522549194577,0,4,0,1,67.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025550707247819195,12343.478883995827,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +32024,2,60.0,0.0,7,111,400.0,2000.0,0.0,46,31,0.0,0.0,682.0802173488245,2400.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,2,10.0,1,,5,132047,2,2,5,0,1,,560.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,629.860567060517,400.0,56219.573422403875,1,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04268975827987311,22487.82936896155,6,3,6,6_1,6_4,6_0_0 +32025,2,51.0,0.0,9,112,1368.0,0.0,0.0,54,64,0.0,595.9472746546007,2332.7143433329798,1874.0,77.59299662220518,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,132048,2,1,1,0,1,,365.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,1048.35531627357,1368.0,51467.89310075997,1,1,1,2,113.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.036411049434862695,25733.946550379984,7,4,7,7_1,7_0,7_0_0 +32026,2,64.0,0.0,1,111,504.0,544.0,0.0,31,74,0.0,0.0,859.4210738595189,1048.0,0.0,1032.7862020792452,31,0,0,0,0,0,0,0,0,0,,1,,1,132049,2,1,1,0,1,,270.0,,42,1.0,0.0,2.0,2.0,1.5,2,2,871.784472971237,504.0,79397.68360070842,1,5,0,1,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.013199377519253588,52931.78906713895,10,5,10,10_1,10_4,10_1_0 +32027,0,64.0,0.0,5,111,390.0,,,0,78,0.0,0.0,,620.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,3,132050,2,1,0,0,2,,245.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,75.08088142889555,390.0,7618.0,0,7,5,0,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08138619060120766,7618.0,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +32028,1,73.0,251.0,2,111,240.0,378.0,0.0,81,78,0.0,423.78472864327165,409.2481304092947,938.0,0.0,717.6345301212402,50,2,2,2,1,2,2,2,2,0,,2,,2,132051,2,2,0,3,1,,400.0,254.0,42,1.0,1.0,3.0,3.0,2.0,3,3,497.669556067067,240.0,9142.46438673558,4,5,2,3,55.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.10259815738094698,4571.23219336779,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32029,2,54.0,0.0,7,111,1080.0,,,0,63,0.0,0.0,,1103.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,2,10.0,2,,5,132052,2,1,0,0,2,,600.0,482.0,12,1.0,1.0,3.0,1.0,1.0,1,1,129.969322576374,1080.0,60200.90962769197,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01832198228932787,60200.90962769197,10,5,10,10_0,10_2,10_0_0 +32030,1,36.0,397.0,8,300,1140.0,,,0,52,0.0,0.0,,1228.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,2002.0,6,132053,2,1,0,0,1,,280.0,407.0,32,1.0,1.0,4.0,3.0,1.8,2,1,103.41148591349278,1140.0,8254.220777093085,0,4,2,3,70.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14877237151299805,4585.678209496158,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +32031,1,31.0,235.0,2,112,340.0,0.0,0.0,55,47,1582.0242765549024,174.81120056534957,579.7681847465008,1972.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,45.0,1,,2,132054,1,2,1,0,2,,124.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,807.144809158455,340.0,29692.966082033243,1,1,1,2,76.0,10,2,1,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.06641303514616638,14139.507658111068,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +32032,2,63.0,0.0,2,111,821.0,844.0,0.0,0,77,0.0,0.0,1399.9696461084623,1665.0,0.0,1602.3374164611819,50,2,2,2,2,1,2,2,2,0,,1,,2,132055,2,1,1,0,1,,314.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,786.113590186389,821.0,20610.355617369707,0,5,0,1,90.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,1,0,1,0,0,0.08078463229410728,20610.355617369707,5,3,5,5_1,5_2,5_0_1 +32033,2,61.0,0.0,2,111,390.0,2000.0,0.0,0,37,0.0,0.0,665.0282119151038,2390.0,0.0,3797.008095879578,31,0,0,0,0,0,0,0,0,2,120.0,1,,2,132056,2,2,2,0,1,,500.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,715.72044980101,390.0,47095.57530691157,0,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.050747867170639546,47095.57530691157,10,5,10,10_1,10_4,10_0_1 +32034,2,56.0,0.0,7,112,1500.0,0.0,0.0,90,90,0.0,0.0,2557.8008150580918,1700.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,132057,2,1,1,0,1,,1000.0,,42,2.0,1.0,7.0,4.0,2.5,4,3,772.911845917503,1500.0,57314.668979299255,7,1,1,2,250.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02966081860498926,22925.867591719703,6,3,6,6_1,6_0,6_0_0 +32035,2,83.0,0.0,7,120,900.0,600.0,0.0,78,75,0.0,0.0,1534.680489034855,1500.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,1,,5,132058,2,1,2,0,1,,250.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,1068.67535942901,900.0,59885.64454106885,5,5,0,1,100.0,0,3,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02504773909498992,39923.76302737923,9,5,9,9_1,9_1,9_0_0 +32036,2,54.0,0.0,6,111,1500.0,0.0,0.0,37,37,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,4,132059,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,902.965962641217,1500.0,56307.75306179588,1,1,0,1,73.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02663931551937084,37538.50204119725,9,5,9,9_0,9_4,9_0_0 +32037,2,46.0,0.0,8,112,750.0,0.0,0.0,56,64,0.0,0.0,1278.9004075290459,750.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,2001.0,6,132060,2,1,2,0,1,,700.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,717.829157600651,750.0,46841.78105712256,1,1,1,2,100.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0160113467736291,18736.71242284902,5,3,5,5_1,5_0,5_0_0 +32038,1,43.0,250.0,7,112,1812.0,0.0,0.0,0,90,0.0,860.8127300566456,3089.823384590175,2530.0,94.22006732696343,0.0,50,2,2,2,2,1,2,2,2,0,,1,,5,132061,2,1,2,0,1,,708.0,505.0,32,2.0,0.0,4.0,3.0,2.0,3,2,931.922066581222,1812.0,19565.001805202788,0,1,2,3,80.0,9,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,1,1,0.12931253598592637,9782.500902601394,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +32039,2,33.0,0.0,2,111,360.0,0.0,0.0,0,53,0.0,0.0,613.872195613942,360.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,2,,2,132062,2,1,0,1,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,787.973211597283,360.0,31253.463080226633,0,1,1,2,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011518723511563874,31253.463080226633,8,4,8,8_0,8_4,8_0_1 +32040,2,58.0,0.0,1,111,1090.0,0.0,0.0,0,64,0.0,0.0,1858.6685922755466,1160.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,4,45.0,1,,1,132063,2,1,1,0,1,,160.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1088.56141943032,1090.0,20303.77303005209,0,1,0,1,70.0,9,7,5,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05713223834225574,20303.77303005209,5,3,5,5_1,5_3,5_1_0 +32041,2,47.0,0.0,9,211,300.0,,,0,52,0.0,0.0,,300.0,0.0,,41,0,0,0,0,0,0,0,0,2,30.0,1,2008.0,6,132064,2,1,0,0,2,,200.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,81.37431713243606,300.0,30219.1434353096,0,1,0,1,100.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009927481916958128,20146.095623539735,5,3,5,5_1,5_2,5_0_0 +32042,0,55.0,0.0,2,211,0.0,,,0,78,0.0,0.0,,135.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,132065,2,3,0,0,2,,150.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,102.49275754099689,0.0,9378.92132867133,0,7,5,0,40.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.014393979357445453,9378.92132867133,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +32043,1,23.0,400.0,6,111,480.0,600.0,0.0,0,55,0.0,0.0,818.4962608185893,1080.0,0.0,1139.1024287638734,31,0,0,0,0,0,0,0,0,0,,2,,4,132066,2,1,0,1,1,,0.0,388.0,22,2.0,0.0,4.0,5.0,3.0,5,4,425.872251889845,480.0,9504.271449039676,0,1,2,3,70.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.11363311809756071,3168.0904830132254,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +32044,2,65.0,0.0,1,111,269.0,1260.0,0.0,78,77,0.0,0.0,458.69894616708444,1529.0,0.0,2392.115100404134,60,0,0,0,0,0,0,0,0,0,,1,,1,132067,2,2,1,0,1,,212.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1724.72690927638,269.0,36456.92088812464,5,5,0,1,100.0,9,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.041939910523218424,24304.613925416426,7,4,7,7_1,7_3,7_1_0 +32045,2,48.0,0.0,7,112,384.0,0.0,0.0,0,52,0.0,741.6232751257254,654.7970086548714,2192.0,48.49562288887823,0.0,50,2,2,2,1,1,2,2,2,2,25.0,1,,5,132068,2,3,4,0,1,,65.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,1751.80607515171,384.0,15238.172088175274,0,1,0,1,85.0,6,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.14384927452689542,15238.172088175274,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +32046,1,61.0,198.0,5,111,390.0,0.0,0.0,0,77,0.0,0.0,665.0282119151038,390.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,132069,1,1,0,1,1,468.0,0.0,256.0,11,0.0,0.0,2.0,1.0,1.0,1,1,139.11348870213,390.0,12299.510247191933,0,5,2,3,94.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03170857962324474,12299.510247191933,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +32047,2,80.0,0.0,2,111,186.0,452.0,0.0,0,77,0.0,0.0,317.16730106720337,638.0,0.0,858.1238296687847,50,2,2,2,2,1,2,2,1,0,,2,,2,132070,1,2,0,0,1,,245.0,810.0,11,0.0,4.0,3.0,1.0,1.0,1,1,596.023783463689,186.0,18482.44450949256,0,5,2,3,65.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,1,0,0,0.03451924336482244,18482.44450949256,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +32049,2,45.0,0.0,7,211,300.0,,,0,81,0.0,0.0,,600.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,5,132072,1,3,0,0,2,,800.0,300.0,32,1.0,5.0,3.0,3.0,1.6,1,1,57.89176861250884,300.0,12356.512195121952,0,4,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048557391481138606,7722.820121951219,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +32050,2,57.0,0.0,2,111,480.0,2300.0,0.0,77,47,0.0,0.0,818.4962608185893,2780.0,0.0,4366.559310261515,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,132073,2,1,0,0,1,,0.0,800.0,42,1.0,2.0,4.0,2.0,1.5,2,2,1441.4194681598,480.0,22599.716422224796,5,1,2,3,75.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.12301039305369864,15066.477614816531,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +32051,2,65.0,0.0,2,111,0.0,0.0,600.0,68,45,0.0,0.0,378.19097424884626,1523.0,0.0,718.0392885388085,50,0,0,0,0,0,0,0,0,3,15.0,2,,2,132074,2,1,0,1,1,900.0,0.0,307.0,43,2.0,4.0,3.0,2.0,1.5,2,2,176.338570985658,0.0,43992.2681499996,1,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03461971987457104,29328.178766666402,8,4,8,8_0,8_4,8_0_1 +32052,2,37.0,0.0,2,111,0.0,0.0,0.0,0,21,0.0,0.0,0.0,797.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,25.0,1,,2,132075,2,2,5,0,1,,585.0,780.0,32,1.0,0.0,6.0,4.0,2.1,2,1,1568.20995355853,0.0,16223.961536351751,0,1,2,3,150.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04912486991627938,7725.69596969131,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +32053,2,64.0,0.0,5,120,600.0,0.0,0.0,72,72,2109.365702073203,0.0,1023.1203260232367,2670.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,132076,2,1,2,0,1,,160.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1082.13629251502,600.0,13758.65474374366,6,5,0,1,90.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.1940596700570674,9172.436495829106,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +32054,2,41.0,0.0,9,111,970.0,0.0,0.0,54,21,1265.6194212439218,0.0,1654.0445270708994,2170.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,132077,2,1,1,0,1,,320.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1318.71455063291,970.0,40554.41749967092,1,1,1,2,192.0,6,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0535083508477864,19311.627380795675,5,3,5,5_1,5_2,5_0_0 +32055,2,76.0,0.0,7,111,1000.0,0.0,0.0,78,74,0.0,582.7040018844986,1705.2005433720612,1560.0,166.2707070475825,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,132078,2,1,1,0,1,,200.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,692.666461127861,1000.0,38634.90436440256,5,5,0,1,80.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040377995640578146,25756.602909601705,7,4,7,7_1,7_2,7_0_0 +32056,2,40.0,0.0,9,112,200.0,0.0,0.0,37,48,0.0,198.6490915515336,341.04010867441224,350.0,0.0,0.0,43,2,2,1,2,1,2,2,1,2,25.0,1,2008.0,6,132079,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1621.22017560624,200.0,86380.15066111418,1,1,1,2,130.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.004051856790260957,35991.72944213091,9,5,9,9_1,9_0,9_0_0 +32057,2,52.0,0.0,2,111,483.0,0.0,0.0,38,38,2671.511661675712,0.0,823.6118624487056,3016.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,60.0,1,,2,132080,2,2,1,0,1,,502.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,605.815220143561,483.0,126656.82286311459,1,1,1,2,120.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02381237687652695,50662.72914524584,10,5,10,10_1,10_4,10_0_1 +32058,2,56.0,0.0,1,111,456.0,1524.0,0.0,56,62,0.0,0.0,777.5714477776598,1980.0,0.0,2893.3201690602386,50,2,2,2,1,1,1,2,2,2,20.0,1,,1,132081,2,3,4,0,1,,228.0,606.0,43,2.0,0.0,4.0,2.0,1.5,2,2,952.149640535205,456.0,40881.874564075726,1,1,2,3,80.0,8,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.04843222139671385,27254.58304271715,7,4,7,7_1,7_3,7_1_0 +32059,2,60.0,0.0,1,111,1269.0,4331.0,0.0,75,22,0.0,0.0,2163.8994895391456,6015.0,0.0,8222.421031627226,20,0,0,0,0,0,0,0,0,0,,1,,1,132082,1,1,1,0,2,,476.0,,42,1.0,3.0,7.0,2.0,1.5,2,2,1453.51986236744,1269.0,51246.860827230965,6,1,0,1,270.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11737304300995972,34164.573884820646,9,5,9,9_1,9_3,9_1_0 +32060,1,27.0,60.0,8,111,256.0,0.0,0.0,0,56,0.0,0.0,436.53133910324766,256.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,1999.0,6,132083,2,1,0,1,1,412.0,0.0,408.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1084.59225016296,256.0,18992.78503478271,0,1,2,3,55.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.013478802583779615,18992.78503478271,5,3,5,5_0,5_4,5_0_0 +32061,1,58.0,71.0,2,111,0.0,0.0,1300.0,0,63,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,60,0,0,0,0,0,0,0,0,2,10.0,2,,2,132084,1,2,0,0,2,,0.0,291.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1824.52293125433,0.0,7861.249250892835,0,1,2,3,60.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.16536811879515886,7861.249250892835,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32063,2,42.0,0.0,1,120,310.0,0.0,0.0,0,47,2180.0294530926553,0.0,528.612168445339,2409.0,44.33885521268867,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,1,132086,2,1,1,0,1,,110.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1581.71433739069,310.0,24935.492882377126,0,1,0,1,117.0,0,3,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09660927944610764,24935.492882377126,7,4,7,7_1,7_1,7_1_0 +32064,2,57.0,0.0,7,111,600.0,0.0,0.0,72,52,3164.0485531098047,0.0,1023.1203260232367,3600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,132087,2,1,1,0,1,,300.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,537.717757730415,600.0,36860.49290370454,5,1,0,1,120.0,6,4,3,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09766554151635326,24573.661935803026,7,4,7,7_1,7_2,7_0_0 +32065,2,51.0,0.0,1,111,854.0,0.0,0.0,46,22,0.0,0.0,1456.2412640397401,854.0,0.0,0.0,10,2,2,2,2,1,1,1,2,2,35.0,2,,1,132088,1,3,0,0,1,,0.0,563.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1503.94439438432,854.0,56364.80002695386,4,1,2,3,45.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0.01515130009494603,37576.533351302576,9,5,9,9_0,9_3,9_1_0 +32066,2,64.0,0.0,1,111,739.0,805.0,0.0,77,75,0.0,0.0,1260.143201551953,1544.0,0.0,1528.29575859153,50,0,0,0,0,0,0,0,0,0,,1,,1,132089,1,2,3,0,1,,244.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1310.60800313189,739.0,14882.849844413473,6,5,0,1,75.0,6,4,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10374357170441831,9921.899896275649,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +32067,2,58.0,0.0,7,111,800.0,,,52,52,0.0,0.0,,800.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,132090,2,3,0,0,1,,720.0,,43,2.0,0.0,4.0,5.0,2.8,4,3,129.67811823807202,800.0,67863.75243762654,1,1,1,2,61.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011788325450103554,24237.054442009477,7,4,7,7_1,7_2,7_0_0 +32068,1,35.0,336.0,2,112,700.0,1500.0,0.0,0,52,0.0,0.0,1193.6403803604428,2200.0,0.0,2847.7560719096837,43,2,2,2,2,1,2,2,2,1,10.0,1,,2,132091,1,2,2,0,1,,720.0,520.0,32,1.0,0.0,3.0,2.0,1.3,1,1,403.929144362291,700.0,16114.912607462142,0,1,2,3,75.0,7,1,3,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,1,0.1365195116839338,12396.086621124725,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +32069,2,54.0,0.0,7,400,1100.0,0.0,0.0,22,22,632.8097106219609,132.4327277010224,1875.7205977092674,1832.0,44.33885521268867,0.0,60,0,0,0,0,0,0,0,0,2,60.0,1,,5,132092,2,1,2,0,1,,300.0,,43,2.0,2.0,9.0,3.0,2.0,3,3,951.13747262599,1100.0,290237.01414307515,1,1,1,2,260.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006312082576403911,145118.50707153758,10,5,10,10_1,10_0,10_0_0 +32070,2,41.0,0.0,7,112,480.0,,,64,67,0.0,0.0,,612.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,5.0,1,,5,132093,2,1,0,0,1,,260.0,,43,3.0,1.0,5.0,4.0,2.5,4,3,103.1272798094505,480.0,38630.632517063525,4,1,0,1,77.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015842349972646025,15452.25300682541,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +32071,1,57.0,270.0,5,111,0.0,0.0,336.0,0,56,0.0,0.0,211.7869455793539,336.0,0.0,402.1020015817328,71,2,1,2,2,1,2,2,2,0,,2,,3,132094,2,1,0,1,1,481.0,0.0,311.0,12,1.0,3.0,3.0,1.0,1.0,1,1,385.84357907881,0.0,5978.050638452842,0,4,2,3,65.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,1,0.05620561288637043,5978.050638452842,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32072,2,32.0,0.0,1,111,0.0,0.0,480.0,0,21,0.0,0.0,302.552779399077,480.0,0.0,574.4314308310468,43,0,0,0,0,0,0,0,0,2,35.0,2,,1,132095,2,3,0,0,1,,0.0,440.0,32,1.0,0.0,2.0,2.0,1.3,1,1,398.442408491516,0.0,13311.16694638887,0,1,2,3,50.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03605994890855284,10239.3591895299,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +32073,0,70.0,0.0,5,111,600.0,,,52,74,0.0,0.0,,840.0,332.541414095165,,41,0,0,0,0,0,0,0,0,0,,1,,3,132096,2,1,0,0,1,,900.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,87.57201927583829,600.0,44238.26811819109,5,5,0,1,72.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018988085106672294,29492.178745460726,8,4,8,8_1,8_2,8_0_0 +32074,2,57.0,0.0,2,111,360.0,900.0,0.0,0,75,0.0,0.0,613.872195613942,1260.0,0.0,1708.65364314581,60,0,0,0,0,0,0,0,0,0,,2,,2,132097,2,1,0,0,1,,300.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,675.695812226007,360.0,42044.159272770485,0,5,1,2,94.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.029968490791443356,42044.159272770485,9,5,9,9_0,9_4,9_0_1 +32075,2,55.0,0.0,1,111,700.0,0.0,0.0,56,21,0.0,397.2981831030672,1193.6403803604428,1040.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132098,2,1,2,0,1,,370.0,,43,3.0,2.0,7.0,4.0,2.5,4,3,731.603675803036,700.0,24065.133079271236,1,1,0,1,180.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.043216050232267995,9626.053231708494,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +32077,2,56.0,0.0,6,120,1500.0,0.0,0.0,56,62,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,132100,2,1,1,0,1,,324.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,589.356080303712,1500.0,25181.353147133443,1,1,0,1,112.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06195060253057072,16787.56876475563,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +32078,1,21.0,344.0,9,111,660.0,,,0,56,0.0,0.0,,900.0,332.541414095165,,71,0,0,0,0,0,0,0,0,1,25.0,1,2007.0,6,132101,2,1,0,0,2,,824.0,,22,3.0,0.0,5.0,4.0,2.3,3,3,117.9247518218415,660.0,9438.588623796826,0,1,1,2,82.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09535323933187378,4103.73418425949,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32079,2,70.0,0.0,2,211,500.0,1000.0,0.0,86,72,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,2,132102,2,1,3,0,2,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1103.89180498075,500.0,21098.92242495715,6,5,0,1,100.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07109367814091323,14065.948283304766,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +32080,2,60.0,0.0,5,111,1936.0,0.0,0.0,37,38,0.0,0.0,3301.2682519683103,1936.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,60.0,1,,3,132103,2,1,1,0,1,,436.0,,43,2.0,1.0,7.0,2.0,1.5,2,2,2121.77751589344,1936.0,80861.98529791497,1,1,0,1,160.0,8,7,2,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02394202903709711,53907.99019860998,10,5,10,10_1,10_3,10_0_0 +32081,1,53.0,150.0,7,111,800.0,0.0,0.0,63,56,0.0,0.0,1364.160434697649,1220.0,581.9474746665388,0.0,71,0,0,0,0,0,0,0,0,3,120.0,1,,5,132104,2,1,1,0,1,,400.0,,43,2.0,2.0,5.0,5.0,3.0,5,4,629.841770084231,800.0,32014.02633604488,1,1,1,2,100.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03810829625720621,10671.34211201496,2,1,2_1,2_1_1,2_4_1,2_0_0_1 +32082,2,46.0,0.0,9,112,700.0,0.0,0.0,0,11,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,31,2,2,2,2,1,2,2,2,0,,1,2006.0,6,132105,2,1,1,0,1,,75.0,,32,1.0,0.0,3.0,2.0,1.3,1,1,652.472113912191,700.0,28323.152148303932,0,1,1,2,70.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.024714763255682257,21787.040114079948,6,3,6,6_1,6_0,6_0_0 +32083,2,77.0,0.0,2,300,0.0,0.0,0.0,0,86,2636.7071275915036,0.0,0.0,5741.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132106,1,2,4,0,2,,266.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,786.272893746511,0.0,11499.463456076617,0,5,0,1,90.0,0,0,2,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.49924068387436854,11499.463456076617,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +32084,2,47.0,0.0,6,112,1000.0,0.0,0.0,45,62,0.0,0.0,1705.2005433720612,1120.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,2,15.0,1,,4,132107,2,1,2,0,1,,250.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,803.883740269156,1000.0,53465.82087684628,1,1,0,1,82.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020947962298751937,26732.91043842314,7,4,7,7_1,7_0,7_0_0 +32085,2,81.0,0.0,5,211,1330.0,0.0,0.0,77,78,0.0,0.0,2267.9167226848413,1392.0,85.9065319745843,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,132108,2,1,2,0,1,,418.0,,41,0.0,6.0,6.0,2.0,1.5,2,2,1444.29074732729,1330.0,29429.420470376048,5,5,0,1,107.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04729960623591624,19619.613646917365,5,3,5,5_1,5_1,5_0_0 +32086,2,63.0,0.0,6,111,285.0,672.0,0.0,0,75,0.0,0.0,485.98215486103743,957.0,0.0,1275.7947202155383,50,0,0,0,0,0,0,0,0,0,,1,,4,132109,2,1,1,0,1,,227.0,475.0,11,0.0,3.0,5.0,1.0,1.0,1,1,203.352559746055,285.0,16835.991958423765,0,5,2,3,80.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.056842507549498565,16835.991958423765,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +32087,2,74.0,0.0,1,111,0.0,0.0,0.0,74,74,0.0,0.0,0.0,4469.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,132110,1,2,4,0,2,,335.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,729.403672346702,0.0,275389.0772604483,5,5,0,1,120.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.016227949359710656,183592.7181736322,10,5,10,10_1,10_4,10_1_0 +32088,2,56.0,0.0,2,111,556.0,513.0,0.0,42,54,0.0,463.51454695357836,948.091502114866,1419.0,0.0,973.9325765931118,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,132111,1,3,3,0,1,,336.0,,43,2.0,2.0,7.0,2.0,1.5,2,2,483.969125022936,556.0,80585.46062659794,1,1,0,1,114.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0176086354655848,53723.64041773196,10,5,10,10_1,10_3,10_0_1 +32089,2,64.0,0.0,6,111,135.0,0.0,0.0,75,75,0.0,0.0,230.20207335522826,180.0,62.351515142843446,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132112,2,1,2,0,2,,440.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2600.25085143191,135.0,55654.36691423057,5,5,0,1,167.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0032342475528901364,37102.91127615372,9,5,9,9_1,9_3,9_0_0 +32090,2,76.0,0.0,2,111,312.0,,,0,77,0.0,0.0,,404.0,127.47420873647992,,71,0,0,0,0,0,0,0,0,0,,1,,2,132113,2,2,0,0,2,,292.0,611.0,11,0.0,3.0,3.0,1.0,1.0,1,1,105.69248090171534,312.0,9439.421910828027,0,5,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04279923111992365,9439.421910828027,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +32091,2,42.0,0.0,9,112,0.0,0.0,520.0,65,56,0.0,0.0,327.7655110156668,520.0,0.0,622.3007167336341,33,0,0,0,0,0,0,0,0,0,,2,2006.0,6,132114,1,1,0,0,1,940.0,0.0,1100.0,43,4.0,0.0,4.0,4.0,2.5,4,4,2206.18135490039,0.0,76247.0,1,1,2,3,85.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006819940456673705,30498.8,8,4,8,8_0,8_0,8_0_0 +32092,2,55.0,0.0,8,111,500.0,1300.0,0.0,77,46,0.0,0.0,852.6002716860306,1800.0,0.0,2468.055262321726,42,0,0,0,0,0,0,0,0,2,20.0,2,2000.0,6,132115,2,1,0,0,1,,164.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1357.23479652773,500.0,64413.758218569914,5,1,1,2,103.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0279443406157456,42942.50547904661,9,5,9,9_0,9_2,9_0_0 +32093,2,36.0,0.0,9,112,2000.0,0.0,0.0,55,62,0.0,0.0,3410.4010867441225,2060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,132116,2,1,1,0,1,,300.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,1930.20456023535,2000.0,28454.17515861229,1,1,1,2,245.0,7,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07239710828083853,13549.607218386804,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +32094,2,49.0,0.0,1,222,180.0,0.0,0.0,0,52,0.0,0.0,306.936097806971,195.0,20.783838380947813,0.0,71,0,0,0,0,0,0,0,0,1,1.0,8,,1,132117,1,3,0,1,2,,200.0,380.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1638.62320329623,180.0,15991.302110105331,0,1,2,3,65.0,1,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.012194128949435223,15991.302110105331,3,2,3_0,3_0_0,3_0_0,3_1_0_0 +32095,2,81.0,0.0,1,300,1300.0,0.0,0.0,0,72,0.0,397.2981831030672,2216.7607063836795,1630.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132118,2,1,2,0,1,,165.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1435.75960999829,1300.0,10040.106401680854,0,5,0,1,100.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.16234887707237,10040.106401680854,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +32096,2,76.0,0.0,2,112,2038.0,0.0,0.0,77,75,0.0,476.7578197236806,3475.1987073922605,2485.0,120.54626260949732,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,132119,2,1,2,0,1,,188.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,847.925316846527,2038.0,28594.53635294392,5,5,0,1,50.0,9,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08690471387007327,19063.024235295947,5,3,5,5_1,5_0,5_0_1 +32098,1,40.0,376.0,8,111,374.0,,,0,85,0.0,0.0,,638.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,132121,2,1,0,0,2,,326.0,368.0,21,0.0,0.0,3.0,3.0,1.8,2,1,132.5300047547479,374.0,11024.74484600157,0,6,2,3,67.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05786982001958879,6124.8582477786495,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32099,2,51.0,0.0,9,120,138.0,1000.0,0.0,85,62,0.0,0.0,235.31767498534444,2554.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,132122,2,1,1,0,1,,480.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,608.355805465529,138.0,33596.94395146283,7,1,1,2,110.0,0,2,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07601881896430039,22397.962634308555,6,3,6,6_1,6_1,6_0_0 +32100,2,40.0,0.0,8,112,570.0,900.0,0.0,52,38,0.0,0.0,971.9643097220749,1470.0,0.0,1708.65364314581,31,0,0,0,0,0,0,0,0,2,90.0,1,2002.0,6,132123,2,1,1,0,1,,200.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,645.935299751515,570.0,73080.4461198287,1,1,1,2,90.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02011481973700143,34800.21243801367,9,5,9,9_1,9_1,9_0_0 +32101,2,26.0,0.0,1,111,120.0,0.0,0.0,43,65,0.0,0.0,204.62406520464734,120.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,2,,1,132124,2,1,0,1,1,305.0,0.0,500.0,43,2.0,0.0,1.0,2.0,1.5,2,2,1141.98487560366,120.0,25981.03153289862,1,1,2,3,24.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.004618754257237606,17320.687688599082,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +32102,2,23.0,0.0,8,120,0.0,0.0,0.0,42,47,0.0,0.0,0.0,1056.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,1,2003.0,6,132125,2,1,1,0,1,,391.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,770.171656992941,0.0,37149.59340024252,1,1,1,2,110.0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028425613939373727,24766.39560016168,7,4,7,7_1,7_0,7_0_0 +32103,2,58.0,0.0,5,111,1500.0,,,77,54,0.0,0.0,,1660.0,221.69427606344334,,50,0,0,0,0,0,0,0,0,0,,1,,3,132126,2,2,0,0,2,,500.0,,42,1.0,4.0,5.0,3.0,1.8,2,2,89.65961058390245,1500.0,60145.671057042244,6,1,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027599658808788643,33414.2616983568,8,4,8,8_1,8_3,8_0_0 +32104,2,38.0,0.0,9,120,1747.0,0.0,0.0,54,48,0.0,1101.8402944725062,2978.985349270991,2579.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2011.0,6,132127,2,1,1,0,1,,176.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1185.59111559532,1747.0,52716.55982808319,1,1,1,2,173.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04892200872762782,25103.12372765866,7,4,7,7_1,7_0,7_0_0 +32105,2,57.0,0.0,2,111,450.0,290.0,0.0,68,64,0.0,0.0,767.3402445174275,740.0,0.0,550.5661739025388,71,1,2,2,2,1,2,2,2,0,,2,,2,132128,2,3,0,1,1,700.0,170.0,250.0,43,2.0,2.0,3.0,2.0,1.5,2,2,1169.64641306858,450.0,26382.528494489394,1,4,2,3,55.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.028048865754264844,17588.352329659596,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +32106,2,26.0,0.0,7,111,600.0,0.0,0.0,0,46,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,35.0,1,,5,132129,2,2,3,0,1,,400.0,730.0,12,1.0,0.0,2.0,1.0,1.0,1,1,764.303234021039,600.0,33519.28804677294,0,1,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017900141529341485,33519.28804677294,8,4,8,8_1,8_4,8_0_0 +32107,2,58.0,0.0,2,111,280.0,0.0,0.0,0,37,0.0,0.0,477.4561521441771,384.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,2,,2,132130,1,2,0,1,2,192.0,0.0,720.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1521.57523896086,280.0,55707.12474364192,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006893193676161279,55707.12474364192,10,5,10,10_0,10_4,10_0_1 +32108,1,34.0,324.0,2,111,0.0,0.0,670.0,85,63,0.0,0.0,422.31325457787835,670.0,0.0,801.8105388683362,70,2,2,2,2,2,1,2,2,0,,2,,2,132131,2,3,0,1,1,522.0,0.0,278.0,42,1.0,0.0,3.0,4.0,2.1,2,2,494.695132243915,0.0,18526.430263752576,6,1,2,3,70.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.03616454926618388,8822.109649405988,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32109,1,32.0,340.0,1,221,920.0,0.0,0.0,0,55,0.0,794.5963662061343,1568.7844999022964,1580.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132132,2,2,5,0,1,,100.0,400.0,32,1.0,0.0,4.0,2.0,1.3,1,1,2144.05278505547,920.0,11840.0,0,4,2,3,90.0,1,2,7,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.13344594594594594,9107.692307692307,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +32110,2,67.0,0.0,2,111,440.0,1033.0,0.0,0,77,0.0,0.0,750.2882390837069,1473.0,0.0,1961.154681521802,70,0,0,0,0,0,0,0,0,0,,1,,2,132133,2,1,2,0,1,,333.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,483.941299767832,440.0,16854.509230225143,0,5,0,1,87.0,6,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08739500983858214,16854.509230225143,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +32111,2,64.0,0.0,1,111,540.0,,,0,77,0.0,0.0,,792.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,1,132134,1,2,0,0,2,,789.0,,31,1.0,2.0,4.0,4.0,2.3,3,3,72.20591099166415,540.0,9410.279395625137,0,5,0,1,80.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0841632821622919,4091.4258241848424,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +32112,0,78.0,0.0,2,111,270.0,1530.0,0.0,0,74,0.0,0.0,460.40414671045653,1800.0,0.0,2904.7111933478773,10,0,0,0,0,0,0,0,0,0,,1,,2,132135,2,2,1,0,2,,178.0,,11,0.0,3.0,9.0,1.0,1.0,1,1,1268.63356509287,270.0,74979.9562899722,0,5,0,1,150.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.024006415701801787,74979.9562899722,10,5,10,10_1,10_3,10_0_1 +32113,2,57.0,0.0,5,111,1121.0,0.0,0.0,78,46,0.0,0.0,1911.5298091200805,1121.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,1,,3,132136,2,1,2,0,1,,280.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,656.326765687432,1121.0,50768.68799464685,5,1,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02208053909366735,33845.79199643123,9,5,9,9_1,9_4,9_0_0 +32114,2,46.0,0.0,8,111,1200.0,1200.0,0.0,52,65,0.0,0.0,2046.2406520464733,2400.0,0.0,2278.2048575277468,50,2,2,2,1,1,2,2,2,3,75.0,1,2000.0,6,132137,1,2,5,0,1,,600.0,,43,3.0,0.0,5.0,5.0,3.0,5,4,443.176812785901,1200.0,63202.99103037633,1,1,1,2,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0.03797288642315239,21067.66367679211,5,3,5,5_1,5_4,5_0_0 +32115,2,58.0,0.0,5,111,650.0,,,54,77,0.0,0.0,,830.0,249.40606057137379,,60,0,0,0,0,0,0,0,0,0,,1,,3,132138,2,2,0,0,2,,250.0,650.0,42,1.0,1.0,4.0,3.0,2.0,3,2,87.59264484329276,650.0,71619.0,1,5,2,3,94.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011589103450201763,35809.5,9,5,9,9_1,9_2,9_0_0 +32116,2,65.0,0.0,2,111,330.0,330.0,0.0,0,77,0.0,0.0,562.7161793127802,660.0,0.0,626.5063358201304,50,0,0,0,0,0,0,0,0,0,,2,,2,132139,2,1,0,1,1,,0.0,607.0,21,1.0,1.0,3.0,2.0,1.5,2,2,291.153604943976,330.0,14712.402581090892,0,5,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04486011012560686,9808.268387393928,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +32117,2,76.0,0.0,1,120,480.0,0.0,0.0,0,71,1898.4291318658827,0.0,818.4962608185893,2370.0,124.70303028568689,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132140,1,3,4,0,1,,500.0,,11,0.0,5.0,7.0,1.0,1.0,1,1,929.596212769967,480.0,19869.0,0,5,0,1,160.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.11928129246565,19869.0,5,3,5,5_1,5_0,5_1_0 +32118,2,80.0,0.0,2,111,440.0,,,77,75,0.0,0.0,,503.0,87.29212119998083,,60,0,0,0,0,0,0,0,0,0,,1,,2,132141,2,1,0,0,1,,492.0,,41,0.0,8.0,5.0,2.0,1.5,2,2,120.59284211038856,440.0,40880.398743539365,5,5,0,1,68.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0123041852687284,27253.599162359576,7,4,7,7_1,7_2,7_0_1 +32119,2,53.0,0.0,9,111,600.0,,,90,67,0.0,0.0,,876.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,132142,2,1,0,0,2,,485.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,100.03462810496016,600.0,56795.81859781076,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015423670643841484,24693.8341729612,7,4,7,7_1,7_2,7_0_0 +32120,2,89.0,0.0,2,111,0.0,0.0,2450.0,78,78,0.0,0.0,1544.2798115161224,2450.0,0.0,2931.993761533468,71,0,0,0,0,0,0,0,0,0,,2,,2,132143,2,1,0,1,1,1545.0,0.0,220.0,41,0.0,5.0,3.0,2.0,1.5,2,2,459.875189704975,0.0,24198.633309398323,5,5,2,3,55.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.10124538723633054,16132.422206265548,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +32121,2,38.0,0.0,2,111,992.0,1550.0,0.0,37,31,0.0,0.0,1691.5589390250848,2542.0,0.0,2942.681274306673,10,0,0,0,0,0,0,0,0,0,,1,,2,132144,2,1,1,0,1,,460.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,1317.85063099825,992.0,162881.2518515585,1,1,1,2,200.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.01560646158538029,90489.58436197694,10,5,10,10_1,10_3,10_0_1 +32122,1,31.0,351.0,7,111,350.0,0.0,0.0,63,63,0.0,1032.9752760679746,596.8201901802214,1130.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,3.0,8,,5,132145,2,1,0,1,1,,200.0,495.0,43,2.0,0.0,3.0,3.0,1.8,2,2,281.035651165709,350.0,28016.640376610347,1,1,2,3,80.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0403331728861887,15564.80020922797,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +32123,2,61.0,0.0,1,112,876.0,0.0,0.0,52,46,0.0,198.6490915515336,1493.7556759939255,1086.0,83.13535352379125,0.0,44,0,0,0,0,0,0,0,0,2,40.0,1,,1,132146,1,1,2,0,1,,240.0,,43,2.0,4.0,4.0,2.0,1.5,2,2,791.447132693359,876.0,19447.73800318583,1,1,0,1,95.0,9,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05584196988987084,12965.158668790553,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +32124,2,64.0,0.0,1,300,1500.0,0.0,0.0,52,74,0.0,0.0,2557.8008150580918,1731.0,138.5589225396521,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,132147,2,1,2,0,1,,230.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1767.22347383166,1500.0,83082.39354838227,1,5,0,1,180.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.020834739179630978,55388.26236558818,10,5,10,10_1,10_0,10_1_0 +32125,2,63.0,0.0,2,111,270.0,0.0,0.0,72,77,0.0,0.0,460.40414671045653,630.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,132148,2,2,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,704.680468539905,270.0,51988.537765811205,5,5,0,1,78.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012118055769098813,34659.02517720747,9,5,9,9_0,9_4,9_0_1 +32126,2,69.0,0.0,2,221,290.0,0.0,0.0,77,75,1117.9638220987977,132.4327277010224,494.50815757789775,1540.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132149,2,2,2,0,1,,492.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1643.25046206968,290.0,80516.15484898437,5,5,0,1,115.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.019126596431342444,53677.43656598958,10,5,10,10_1,10_1,10_0_1 +32127,2,55.0,0.0,7,112,1666.8,0.0,0.0,34,34,0.0,0.0,2842.2282656925513,1667.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,1,,5,132150,2,1,2,0,1,,250.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,1682.49278098315,1666.8,64587.45605171953,1,1,0,1,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0258099653075842,32293.728025859764,8,4,8,8_1,8_0,8_0_0 +32128,1,25.0,329.0,2,111,0.0,0.0,0.0,85,42,0.0,0.0,0.0,400.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132151,2,2,0,1,1,1416.0,277.0,301.0,42,1.0,0.0,4.0,4.0,2.3,3,2,319.365255032588,0.0,16629.971354773064,6,1,2,3,120.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024052957847410465,7230.422328162203,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32129,2,44.0,0.0,1,400,980.0,0.0,0.0,11,11,474.6072829664707,0.0,1671.09653250462,1530.0,138.5589225396521,0.0,44,0,0,0,0,0,0,0,0,2,10.0,1,,1,132152,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1435.26389384427,980.0,15005.66308764446,1,1,0,1,100.0,0,0,9,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10196150553718546,8336.47949313581,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +32130,1,41.0,260.0,9,221,1186.0,0.0,0.0,85,63,0.0,0.0,2022.3678444392644,1296.0,152.4148147936173,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,132153,2,1,1,0,1,,362.0,680.0,42,1.0,0.0,5.0,8.0,3.8999999999999995,5,3,2633.48806692964,1186.0,35439.35619582937,6,1,2,3,124.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03656951308140631,9087.01440918702,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +32131,2,56.0,0.0,8,111,450.0,,,0,69,0.0,0.0,,703.0,350.5540740253198,,71,0,0,0,0,0,0,0,0,2,25.0,2,1999.0,6,132154,2,1,0,0,2,,360.0,479.0,32,2.0,2.0,4.0,2.0,1.5,2,2,114.37261557686082,450.0,17640.0,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03985260770975057,11760.0,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +32132,2,49.0,0.0,2,111,480.0,81.0,0.0,0,52,0.0,0.0,818.4962608185893,561.0,0.0,153.77882788312291,60,0,0,0,0,0,0,0,0,2,30.0,2,,2,132155,2,1,0,1,1,729.0,0.0,406.0,12,1.0,0.0,4.0,1.0,1.0,1,1,249.381068303773,480.0,28188.712030504983,0,1,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019901583278899106,28188.712030504983,8,4,8,8_0,8_4,8_0_1 +32133,2,60.0,0.0,5,400,0.0,0.0,0.0,0,52,0.0,0.0,0.0,2362.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,1,,3,132156,1,2,3,0,1,,375.0,,32,1.0,1.0,5.0,2.0,1.5,2,2,237.714927544917,0.0,39421.61747968152,0,1,0,1,126.0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.059916364446928376,26281.078319787677,7,4,7,7_1,7_0,7_0_0 +32134,2,71.0,0.0,9,111,700.0,,,0,63,0.0,0.0,,700.0,0.0,,70,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,132157,2,1,0,0,2,,500.0,,22,2.0,1.0,3.0,2.0,1.5,2,2,100.93295698849764,700.0,79710.13944424514,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008781818785922825,53140.092962830095,10,5,10,10_1,10_3,10_0_0 +32135,2,46.0,0.0,8,111,2050.0,0.0,0.0,46,31,0.0,0.0,3495.6611139127253,2050.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,2,1999.0,6,132158,2,1,0,0,1,,0.0,1941.0,43,2.0,0.0,3.0,4.0,2.1,2,2,831.309577928536,2050.0,100782.41354614646,1,1,2,3,74.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02034085043082781,47991.625498164976,10,5,10,10_0,10_4,10_0_0 +32136,2,98.0,0.0,2,221,500.0,0.0,0.0,0,78,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,132159,1,3,4,0,2,,190.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,923.588639012833,500.0,9627.17680718174,0,5,0,1,45.0,1,1,2,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.051936305940388144,9627.17680718174,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +32137,2,52.0,0.0,7,112,680.0,0.0,0.0,52,67,0.0,0.0,1159.5363694930015,770.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,5,132160,2,1,2,0,1,,140.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,2549.75289936567,680.0,49494.69440912874,1,1,0,1,112.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015557223035566054,24747.34720456437,7,4,7,7_1,7_0,7_0_0 +32138,2,49.0,0.0,1,111,400.0,2000.0,0.0,34,33,0.0,158.91927324122688,682.0802173488245,2520.0,0.0,3797.008095879578,12,0,0,0,0,0,0,0,0,2,40.0,1,,1,132161,2,2,1,0,1,,500.0,,43,2.0,0.0,8.0,5.0,2.5999999999999996,3,2,470.244793742866,400.0,187225.59012273676,1,1,0,1,170.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01345969852918076,72009.84235489876,10,5,10,10_1,10_4,10_1_0 +32139,2,49.0,0.0,8,112,960.0,,,34,42,0.0,0.0,,1030.0,96.99124577775646,,30,0,0,0,0,0,0,0,0,2,5.0,1,1999.0,6,132162,2,2,0,0,2,,450.0,,43,2.0,2.0,8.0,4.0,2.3,3,2,10.71185255717699,960.0,102645.93967272494,1,1,1,2,120.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010034493359250638,44628.66942292389,10,5,10,10_1,10_0,10_0_0 +32140,2,62.0,0.0,5,111,300.0,840.0,0.0,78,78,0.0,0.0,511.56016301161833,1140.0,0.0,1594.7434002694229,50,2,2,2,2,1,2,2,2,0,,1,,3,132163,2,1,2,0,1,,320.0,522.0,41,0.0,2.0,4.0,2.0,1.5,2,2,1474.05850023105,300.0,21034.964133906607,6,5,2,3,75.0,5,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.0541954810449339,14023.309422604405,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +32141,2,79.0,0.0,2,111,240.0,0.0,0.0,0,86,0.0,0.0,409.2481304092947,240.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,132164,2,1,0,1,1,,400.0,,21,1.0,2.0,3.0,3.0,2.0,3,3,920.568986928837,240.0,27122.625072121085,0,5,0,1,98.0,6,5,9,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,0,0.008848701014810405,13561.312536060543,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +32142,2,50.0,0.0,5,120,800.0,0.0,0.0,43,23,0.0,927.0290939071567,1364.160434697649,1600.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,,3,132165,2,1,1,0,1,,300.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,347.511016092415,800.0,157233.48758448818,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010175949313216453,104822.32505632546,10,5,10,10_1,10_0,10_0_0 +32143,2,72.0,0.0,6,112,300.0,1330.0,0.0,86,86,0.0,0.0,511.56016301161833,1630.0,0.0,2525.0103837599195,70,0,0,0,0,0,0,0,0,0,,1,,4,132166,2,1,1,0,1,,200.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,824.494478810758,300.0,45773.23800225233,5,5,0,1,89.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03561032758748232,30515.492001501552,8,4,8,8_1,8_1,8_0_0 +32144,2,58.0,0.0,7,211,1080.0,,,54,52,0.0,0.0,,1080.0,0.0,,70,0,0,0,0,0,0,0,0,2,60.0,1,,5,132167,2,1,0,0,2,,1000.0,,43,2.0,2.0,5.0,3.0,2.0,3,2,79.91536132210038,1080.0,77800.28324987815,1,1,0,1,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013881697532273335,38900.141624939075,9,5,9,9_1,9_2,9_0_0 +32145,2,65.0,0.0,5,111,1005.0,0.0,0.0,77,77,0.0,993.245457757668,1713.7265460889214,1807.0,72.05063972061909,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,132168,1,1,1,0,1,,350.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,330.422752050545,1005.0,56063.07131532573,6,5,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03223155559631332,28031.535657662866,7,4,7,7_1,7_3,7_0_0 +32146,2,75.0,0.0,7,111,800.0,,,0,78,0.0,0.0,,850.0,69.27946126982604,,70,0,0,0,0,0,0,0,0,0,,2,,5,132169,2,1,0,0,2,,350.0,340.0,11,0.0,4.0,2.0,1.0,1.0,1,1,117.3075233617168,800.0,27565.37110073502,0,5,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.030835790198280155,27565.37110073502,7,4,7,7_0,7_3,7_0_0 +32147,2,63.0,0.0,1,300,580.0,0.0,0.0,68,77,0.0,1986.490915515336,989.0163151557955,2180.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132170,2,3,4,0,1,,220.0,480.0,42,1.0,2.0,5.0,2.0,1.5,2,2,1617.87340105081,580.0,32750.84255598142,1,5,2,3,110.0,0,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06656317303207387,21833.895037320948,6,3,6,6_1,6_0,6_1_0 +32148,2,40.0,0.0,1,111,0.0,0.0,0.0,43,21,0.0,0.0,0.0,1590.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,132171,2,1,0,0,1,,429.0,786.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1377.26856570145,0.0,34388.34980395045,1,1,2,3,75.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.046236589108365554,22925.566535966966,6,3,6,6_0,6_3,6_1_0 +32149,2,32.0,0.0,1,300,900.0,0.0,0.0,42,35,0.0,105.94618216081791,1534.680489034855,4280.0,4572.444443808519,0.0,20,2,2,2,2,1,2,2,2,2,30.0,1,,1,132172,2,2,1,0,1,,129.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1585.20904191898,900.0,51156.61764373648,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.0836646400238315,28420.34313540915,8,4,8,8_1,8_0,8_1_0 +32150,2,34.0,0.0,5,111,641.0,0.0,0.0,0,62,0.0,0.0,1093.0335483014912,641.0,0.0,0.0,71,2,2,2,2,1,2,2,2,3,90.0,2,,3,132173,1,1,0,0,1,,0.0,396.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1191.76611690633,641.0,27353.035486619192,0,1,2,3,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.023434327802980777,27353.035486619192,7,4,7,7_0,7_4,7_0_0 +32151,2,90.0,0.0,2,111,1500.0,,,0,86,0.0,0.0,,1650.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,1,,2,132174,2,3,0,0,2,,560.0,,21,1.0,0.0,4.0,2.0,1.5,2,2,79.21992593555535,1500.0,11893.749335295623,0,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13872833145251323,7929.166223530415,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +32153,2,72.0,0.0,7,400,1440.0,0.0,0.0,78,75,0.0,180.10850967339044,2455.488782455768,1671.0,131.6309764126695,0.0,20,0,0,0,0,0,0,0,0,0,,1,,5,132176,1,2,3,0,1,,504.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1354.6518114332,1440.0,23080.691813011435,5,5,0,1,110.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07239817651644202,15387.127875340957,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +32154,2,50.0,0.0,2,111,250.0,1300.0,0.0,0,34,0.0,0.0,426.3001358430153,1550.0,0.0,2468.055262321726,20,2,2,1,2,1,2,2,2,1,20.0,1,,2,132177,2,1,3,0,2,,140.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1396.09812595653,250.0,41610.89549078003,0,1,1,2,90.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03724985924283804,41610.89549078003,9,5,9,9_1,9_3,9_0_1 +32155,2,78.0,0.0,1,300,270.0,0.0,0.0,0,71,0.0,635.6770929649075,460.40414671045653,800.0,69.27946126982604,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,132178,2,2,3,0,1,,103.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1650.25103348793,270.0,18822.72817744041,0,5,0,1,100.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.04250180911387879,18822.72817744041,5,3,5,5_1,5_0,5_1_0 +32156,1,75.0,150.0,2,111,350.0,,,0,71,0.0,0.0,,350.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,2,132179,2,2,0,0,2,,102.0,320.0,11,0.0,5.0,2.0,1.0,1.0,1,1,90.29447291898086,350.0,5611.911464245176,0,5,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06236734172125368,5611.911464245176,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32157,2,61.0,0.0,8,111,0.0,0.0,3000.0,33,43,0.0,185.40581878143135,1890.9548712442313,3140.0,0.0,3590.196442694042,33,2,2,2,2,1,2,2,2,2,30.0,1,1999.0,6,132180,1,3,3,0,1,,500.0,,43,3.0,1.0,6.0,4.0,2.5,4,3,1526.36525061586,0.0,96254.53378095939,1,1,0,1,220.0,8,6,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.03262183999712167,38501.81351238376,9,5,9,9_1,9_2,9_0_0 +32158,2,63.0,0.0,8,111,0.0,,,0,71,0.0,0.0,,599.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,132181,2,2,0,0,2,,478.0,390.0,11,0.0,4.0,2.0,1.0,1.0,1,1,116.01442126539936,0.0,5129.085218284169,0,5,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.11678495764989127,5129.085218284169,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +32160,2,67.0,0.0,5,112,2282.0,0.0,0.0,75,74,0.0,0.0,3891.2676399750435,2282.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,3,132183,2,2,2,0,1,,568.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1144.97574584045,2282.0,53461.704211049306,5,5,0,1,100.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.042684759748612036,35641.136140699535,9,5,9,9_1,9_1,9_0_0 +32161,2,81.0,0.0,2,120,700.0,0.0,0.0,77,78,2109.365702073203,0.0,1193.6403803604428,2900.0,277.1178450793042,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132184,2,1,4,0,1,,350.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,286.340727036612,700.0,23378.794371834716,5,5,0,1,100.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12404403554247158,15585.862914556477,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +32162,2,32.0,0.0,9,111,0.0,0.0,0.0,46,48,0.0,0.0,0.0,422.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,2005.0,6,132185,2,1,0,1,1,800.0,0.0,795.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1970.24727751676,0.0,46542.598210267635,1,1,2,3,93.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00906696265845562,22163.14200488935,6,3,6,6_0,6_3,6_0_0 +32163,1,82.0,253.0,2,111,300.0,,,0,78,0.0,0.0,,420.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,2,,2,132186,2,2,0,0,2,,0.0,382.0,11,0.0,3.0,2.0,1.0,1.0,1,1,110.78410118106012,300.0,10851.222777616757,0,5,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03870531539232155,10851.222777616757,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32164,2,40.0,0.0,2,111,1300.0,0.0,0.0,0,63,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,132187,2,1,1,0,1,,240.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,660.188330077076,1300.0,22802.506612817408,0,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05701127608792198,22802.506612817408,6,3,6,6_1,6_4,6_0_1 +32165,2,27.0,0.0,9,112,0.0,0.0,0.0,42,42,0.0,0.0,0.0,980.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,132188,2,2,1,0,1,,449.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,229.021174688335,0.0,23266.871793393493,1,1,1,2,105.0,6,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04211997249575535,15511.24786226233,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +32166,2,78.0,0.0,2,112,462.0,,,86,86,0.0,0.0,,616.0,213.38074071106422,,71,0,0,0,0,0,0,0,0,0,,1,,2,132189,2,3,0,0,2,,160.0,,41,0.0,7.0,4.0,3.0,2.0,3,3,94.73573173727101,462.0,31539.158876987698,5,5,0,1,250.0,8,3,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019531275466241418,15769.579438493849,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +32167,2,56.0,0.0,5,111,0.0,,,0,52,0.0,0.0,,300.0,0.0,,50,0,0,0,0,0,0,0,0,2,45.0,1,,3,132190,2,1,0,0,2,,0.0,600.0,32,1.0,0.0,3.0,2.0,1.3,1,1,85.09154667760133,0.0,38922.00479453119,0,1,2,3,46.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007707722189124032,29940.003688100915,8,4,8,8_1,8_2,8_0_0 +32168,2,49.0,0.0,7,300,0.0,,,85,52,0.0,0.0,,66.0,91.44888887617039,,41,0,0,0,0,0,0,0,0,3,70.0,1,,5,132191,2,1,0,0,2,,800.0,,42,1.0,1.0,4.0,4.0,2.1,2,2,74.50775387490093,0.0,48137.62408337098,6,1,0,1,100.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0013710689145291558,22922.67813493856,6,3,6,6_1,6_1,6_0_0 +32169,2,57.0,0.0,2,111,750.0,,,85,62,0.0,0.0,,876.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,132192,1,1,0,0,2,,625.0,484.0,42,1.0,4.0,6.0,3.0,2.0,3,2,153.30050348180177,750.0,68880.00404475754,6,1,2,3,81.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.012717769288032909,34440.00202237877,9,5,9,9_1,9_2,9_0_1 +32170,2,39.0,0.0,5,112,1500.0,0.0,0.0,54,11,0.0,397.2981831030672,2557.8008150580918,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,3,132193,2,2,1,0,1,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,837.380056940533,1500.0,30499.0,1,1,1,2,115.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05901832846978589,14523.333333333332,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +32171,2,25.0,0.0,9,112,0.0,0.0,0.0,52,63,0.0,0.0,0.0,1352.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,132194,2,1,1,0,1,,110.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,809.630860336786,0.0,47403.703354819336,1,1,1,2,96.0,7,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02852097841133224,31602.46890321289,8,4,8,8_1,8_0,8_0_0 +32172,2,74.0,0.0,5,111,170.0,850.0,0.0,0,74,0.0,0.0,289.8840923732504,1020.0,0.0,1613.7284407488207,12,0,0,0,0,0,0,0,0,0,,2,,3,132195,2,2,0,0,1,,350.0,235.0,11,0.0,0.0,3.0,1.0,1.0,1,1,466.320365136122,170.0,14424.20630702526,0,5,2,3,48.0,6,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07071446277797708,14424.20630702526,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +32173,1,74.0,358.0,5,211,600.0,,,22,86,0.0,0.0,,950.0,484.95622888878233,,71,0,0,0,0,0,0,0,0,1,2.0,2,,3,132196,2,2,0,0,2,,700.0,436.0,42,2.0,0.0,4.0,7.0,3.6,5,4,86.98299600443805,600.0,5239.875776397515,1,5,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.18130200801308646,1455.5210489993099,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32174,0,79.0,0.0,1,400,352.0,0.0,0.0,0,78,0.0,0.0,600.2305912669656,492.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,132197,2,1,2,0,1,,208.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,883.325591696969,352.0,17954.49953112457,0,5,0,1,70.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027402601734852358,17954.49953112457,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +32175,2,42.0,0.0,9,111,540.0,,,0,37,0.0,0.0,,612.0,99.7624242285495,,41,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,132198,2,1,0,0,2,,400.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,110.02895821129914,540.0,63420.32622906862,0,1,1,2,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009649903057728055,63420.32622906862,10,5,10,10_0,10_2,10_0_0 +32176,1,27.0,377.0,5,111,222.0,1070.0,0.0,0,55,0.0,0.0,378.5545206285976,1292.0,0.0,2031.3993312955743,31,0,0,0,0,0,0,0,0,3,15.0,2,,3,132199,1,3,0,0,1,,0.0,449.0,32,1.0,0.0,3.0,2.0,1.3,1,1,477.165188242339,222.0,11684.335282993854,0,1,2,3,73.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11057539592179123,8987.95021768758,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +32177,2,46.0,0.0,9,400,480.0,,,85,52,0.0,0.0,,615.0,187.05454542853033,,50,0,0,0,0,0,0,0,0,2,10.0,1,2006.0,6,132200,2,1,0,0,1,,320.0,,42,1.0,1.0,4.0,4.0,2.1,2,2,98.41336017128374,480.0,42093.77947065815,6,1,1,2,124.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014610234759952866,20044.656890789593,5,3,5,5_1,5_0,5_0_0 +32178,2,92.0,0.0,2,111,2292.0,0.0,0.0,0,77,0.0,0.0,3908.3196454087642,2292.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132201,2,1,2,0,1,,218.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,799.338429641512,2292.0,12624.34989425094,0,5,0,1,100.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1815539033058458,12624.34989425094,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +32179,2,40.0,0.0,2,111,180.0,,,0,69,0.0,0.0,,480.0,415.67676761895626,,71,0,0,0,0,0,0,0,0,0,,1,,2,132202,2,1,0,0,2,,50.0,,22,1.0,5.0,5.0,2.0,1.5,2,2,104.54415980926319,180.0,15459.678432079101,0,1,0,1,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.031048511268125193,10306.452288052735,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +32180,2,51.0,0.0,8,112,520.0,0.0,0.0,54,43,1582.0242765549024,529.7309108040896,886.7042825534718,2420.0,0.0,0.0,44,0,0,0,0,0,0,0,0,1,20.0,1,2000.0,6,132203,2,2,2,0,1,,250.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,297.629481914717,520.0,57092.9068326351,1,1,0,1,120.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04238705181177944,24823.002970710913,7,4,7,7_1,7_0,7_0_0 +32181,2,56.0,0.0,1,112,513.0,0.0,0.0,47,43,2373.0364148323533,198.6490915515336,874.7678787498674,3063.0,207.83838380947813,0.0,33,2,2,2,1,2,2,2,2,0,,1,,1,132204,1,3,3,0,1,,170.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,303.498037643307,513.0,200935.4409488317,1,1,0,1,156.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.015243702084292807,133956.96063255446,10,5,10,10_1,10_0,10_1_0 +32182,2,43.0,0.0,1,111,332.0,338.0,0.0,65,37,0.0,830.3532026854103,566.1265803995243,1297.0,0.0,641.6943682036487,31,0,0,0,0,0,0,0,0,1,15.0,2,,1,132205,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,756.443633272543,332.0,72794.37453577953,1,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01781731086050482,40441.319186544184,9,5,9,9_0,9_4,9_1_0 +32183,2,41.0,0.0,2,111,350.0,0.0,0.0,42,37,2636.7071275915036,0.0,596.8201901802214,2850.0,0.0,0.0,20,0,0,0,0,0,0,0,0,1,5.0,1,,2,132206,2,3,1,0,1,,350.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,485.780624151764,350.0,92554.84332863009,1,1,1,2,98.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030792553879440326,38564.51805359587,9,5,9,9_1,9_4,9_0_1 +32184,1,31.0,166.0,9,111,360.0,,,63,53,0.0,0.0,,492.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,2,30.0,2,2011.0,6,132207,1,1,0,0,2,,480.0,473.0,43,2.0,0.0,3.0,3.0,1.8,2,2,226.46430475299834,360.0,25586.89178404127,4,1,2,3,66.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019228595804155625,14214.939880022926,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +32185,2,44.0,0.0,9,112,700.0,1400.0,0.0,45,34,0.0,0.0,1193.6403803604428,3092.0,0.0,2657.9056671157045,10,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,132208,2,1,1,0,1,,420.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,664.472433032754,700.0,117726.02591711542,1,1,1,2,156.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02626437082125673,56060.01234148353,10,5,10,10_1,10_0,10_0_0 +32186,2,85.0,0.0,1,300,0.0,0.0,0.0,86,75,0.0,927.0290939071567,0.0,1173.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132209,2,1,2,0,1,,131.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,647.948773765761,0.0,19015.02953630613,7,5,0,1,80.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.061688045120326836,12676.686357537421,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +32187,0,83.0,0.0,1,400,400.0,900.0,0.0,0,78,0.0,52.973091080408956,682.0802173488245,1340.0,0.0,1708.65364314581,70,0,0,0,0,0,0,0,0,0,,1,,1,132210,2,2,1,0,1,,51.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1013.41692703977,400.0,15929.97805687879,0,5,0,1,120.0,0,0,2,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08411813219173701,15929.97805687879,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +32188,1,27.0,63.0,1,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,922.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,45.0,2,,1,132211,2,2,0,0,1,,120.0,238.0,12,1.0,0.0,3.0,1.0,1.0,1,1,315.386762917581,0.0,12468.074006733455,0,1,2,3,40.0,9,7,2,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.07394887129335842,12468.074006733455,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +32189,2,86.0,0.0,7,400,178.0,,,0,86,0.0,0.0,,610.0,598.5745453712971,,71,0,0,0,0,0,0,0,0,0,,1,,5,132212,2,1,0,0,1,,215.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,108.963690638133,178.0,11984.273156620318,0,7,0,1,55.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.050900041414946015,11984.273156620318,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +32190,2,68.0,0.0,2,111,732.0,750.0,0.0,0,78,0.0,0.0,1248.206797748349,1482.0,0.0,1423.8780359548418,71,0,0,0,0,0,0,0,0,0,,2,,2,132213,2,1,0,1,1,773.0,0.0,313.0,31,2.0,1.0,4.0,4.0,2.5,4,4,286.873541026214,732.0,36152.697310815,0,5,2,3,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04099279196954035,14461.078924325999,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +32191,2,51.0,0.0,6,111,1800.0,,,31,42,0.0,0.0,,2100.0,415.67676761895626,,31,0,0,0,0,0,0,0,0,2,20.0,1,,4,132214,2,1,0,0,2,,1200.0,,43,2.0,1.0,7.0,3.0,2.0,3,3,107.6835621395406,1800.0,56768.178465674726,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03699255563166924,28384.089232837363,8,4,8,8_1,8_2,8_0_0 +32192,2,73.0,0.0,2,112,2400.0,0.0,0.0,0,86,0.0,0.0,4092.4813040929466,2400.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,132215,1,1,2,0,1,,250.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1344.09808770909,2400.0,70326.7631312863,0,5,0,1,170.0,9,0,8,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03412641067412231,70326.7631312863,10,5,10,10_1,10_0,10_0_1 +32193,2,84.0,0.0,1,111,565.0,3300.0,0.0,78,75,0.0,0.0,963.4383070052146,3865.0,0.0,6265.063358201303,50,0,0,0,0,0,0,0,0,0,,1,,1,132216,2,1,2,0,1,,319.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,373.591346331691,565.0,45590.05531469417,5,5,0,1,104.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08477726059600259,30393.37020979611,8,4,8,8_1,8_2,8_1_0 +32194,2,66.0,0.0,1,211,720.0,0.0,0.0,0,86,0.0,238.3789098618403,1227.744391227884,966.0,91.44888887617039,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132217,2,1,1,0,1,,260.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1431.38778273933,720.0,9783.059157743366,0,5,0,1,45.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.09874211986497124,9783.059157743366,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +32195,2,47.0,0.0,7,111,600.0,,,0,52,0.0,0.0,,730.0,180.1265993015477,,71,0,0,0,0,0,0,0,0,1,5.0,1,,5,132218,2,1,0,0,2,,300.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,115.67915111719363,600.0,20560.958067287145,0,1,0,1,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0355041821305712,20560.958067287145,5,3,5,5_1,5_3,5_0_0 +32196,2,51.0,0.0,2,111,517.0,1215.0,0.0,77,43,0.0,595.9472746546007,881.5886809233556,2182.0,0.0,2306.6824182468436,33,0,0,0,0,0,0,0,0,2,15.0,1,,2,132219,2,1,2,0,1,,400.0,,42,2.0,3.0,4.0,3.0,2.0,3,3,1728.87055811335,517.0,62044.07856983055,5,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03516854549695925,31022.039284915274,8,4,8,8_1,8_2,8_0_1 +32197,1,57.0,327.0,9,111,350.0,,,0,77,0.0,0.0,,434.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,132220,2,2,0,0,2,,288.0,,31,0.0,2.0,4.0,2.0,1.5,2,1,255.05989559860842,350.0,5795.0,0,6,1,2,83.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07489214840379638,3863.3333333333335,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32198,2,50.0,0.0,1,111,900.0,900.0,0.0,56,37,0.0,0.0,1534.680489034855,1800.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,132221,2,1,2,0,1,,800.0,,43,4.0,1.0,5.0,4.0,2.5,4,4,275.458250386511,900.0,46249.368480804864,1,2,0,1,145.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.0389194503433504,18499.747392321944,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +32199,2,85.0,0.0,5,111,56.0,45.0,0.0,0,78,0.0,0.0,95.49123042883542,101.0,0.0,85.4326821572905,70,2,2,1,2,1,2,2,1,0,,2,,3,132222,2,1,0,1,1,512.0,0.0,264.0,11,0.0,0.0,3.0,1.0,1.0,1,1,418.637814191869,56.0,31749.778717949157,0,5,2,3,68.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0.0031811245330948244,31749.778717949157,8,4,8,8_0,8_2,8_0_0 +32200,1,51.0,129.0,2,111,1080.0,,,0,43,0.0,0.0,,1300.0,304.8296295872346,,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,132223,2,2,0,0,2,,900.0,416.0,32,2.0,1.0,4.0,2.0,1.5,2,2,124.54931771558982,1080.0,23957.166699518,0,1,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.054263511887912654,15971.444466345332,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +32201,1,50.0,270.0,2,111,360.0,0.0,0.0,0,62,0.0,0.0,613.872195613942,480.0,166.2707070475825,0.0,71,2,2,2,2,2,2,2,1,0,,2,,2,132224,1,2,0,0,2,,0.0,276.0,12,1.0,0.0,2.0,1.0,1.0,1,1,358.094558930852,360.0,12124.311761649651,0,1,2,3,54.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.039589876063587014,12124.311761649651,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32202,2,92.0,0.0,1,400,700.0,0.0,0.0,71,71,0.0,0.0,1193.6403803604428,902.0,279.88902353009723,0.0,70,0,0,0,0,0,0,0,0,0,,5,,1,132225,2,3,4,0,2,,277.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1420.58031192195,700.0,13893.73305063369,5,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06492135675219843,9262.48870042246,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +32203,2,39.0,0.0,1,112,1600.0,0.0,0.0,0,42,0.0,52.973091080408956,2728.320869395298,1640.0,0.0,0.0,20,2,2,2,1,1,2,2,2,2,25.0,2,,1,132226,1,3,0,0,1,,150.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2064.86644164941,1600.0,25138.980502256814,0,1,1,2,37.0,9,2,9,0,0,1,1,0,1,0,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.06523733131710617,25138.980502256814,7,4,7,7_0,7_1,7_1_0 +32204,2,37.0,0.0,1,111,450.0,0.0,0.0,63,31,2636.7071275915036,0.0,767.3402445174275,3070.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,132227,2,1,1,0,1,,262.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,857.547680421185,450.0,46735.68746197819,1,1,1,2,195.0,5,4,2,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06568855978630031,19473.20310915758,5,3,5,5_1,5_2,5_1_0 +32205,2,55.0,0.0,1,300,1200.0,0.0,0.0,21,52,1858.8785249520101,0.0,2046.2406520464733,2963.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132228,2,1,3,0,2,,836.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,1399.97986969909,1200.0,66647.18344425221,1,4,0,1,100.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04445799277441986,26658.873377700882,7,4,7,7_1,7_0,7_1_0 +32206,2,50.0,0.0,2,111,431.0,0.0,0.0,0,43,2003.897416969543,0.0,734.9414341933584,2376.0,62.351515142843446,0.0,33,0,0,0,0,0,0,0,0,2,5.0,2,,2,132229,2,2,0,1,1,,360.0,,32,1.0,1.0,4.0,2.0,1.5,2,2,1808.31338485388,431.0,59768.62473492886,0,1,1,2,85.0,9,7,8,1,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0397532988342538,39845.74982328591,9,5,9,9_0,9_3,9_0_1 +32207,1,38.0,150.0,1,300,1200.0,0.0,0.0,55,55,0.0,529.7309108040896,2046.2406520464733,1900.0,415.67676761895626,0.0,31,2,2,2,2,1,2,2,1,2,15.0,1,,1,132230,1,3,4,0,1,,170.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,254.031751824973,1200.0,20470.648873404163,1,1,1,2,110.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.09281581701440418,11372.582707446758,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +32208,1,69.0,53.0,1,111,400.0,600.0,0.0,0,78,0.0,0.0,682.0802173488245,1000.0,0.0,1139.1024287638734,71,0,0,0,0,0,0,0,0,0,,1,,1,132231,2,2,2,0,1,,150.0,307.0,11,0.0,0.0,3.0,1.0,1.0,1,1,382.075691899002,400.0,12766.078171592575,0,5,2,3,70.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07833259255964978,12766.078171592575,2,1,2_1,2_1_1,2_2_1,2_1_0_1 +32209,2,66.0,0.0,5,112,1520.0,0.0,0.0,77,75,2020.7723425861286,0.0,2591.904825925533,3436.0,0.0,0.0,42,2,2,2,2,1,1,2,2,0,,1,,3,132232,2,2,3,0,2,,459.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,803.943655831609,1520.0,26585.93602908566,5,5,0,1,96.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.1292412648642851,17723.957352723774,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +32210,2,39.0,0.0,1,111,3000.0,0.0,0.0,62,53,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,,1,132233,2,1,2,0,1,,494.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1122.43591188635,3000.0,51190.65530395311,1,1,1,2,83.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05860444610812259,28439.25294664062,8,4,8,8_1,8_3,8_1_0 +32211,2,59.0,0.0,6,211,540.0,,,78,46,0.0,0.0,,816.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,132234,2,1,0,0,2,,400.0,,42,3.0,1.0,5.0,5.0,2.8,4,4,93.86813475563595,540.0,37490.0,5,1,0,1,78.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021765804214457188,13389.285714285716,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +32212,2,43.0,0.0,7,111,1300.0,0.0,0.0,47,42,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,5,132235,2,1,2,0,1,,480.0,,43,2.0,0.0,4.0,4.0,2.5,4,2,512.579405586125,1300.0,65579.32560761571,1,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019823320657158926,26231.730243046284,7,4,7,7_1,7_4,7_0_0 +32213,2,83.0,0.0,6,111,360.0,0.0,0.0,0,74,0.0,0.0,613.872195613942,360.0,0.0,0.0,41,2,2,1,2,1,2,2,2,0,,2,,4,132236,2,1,0,1,1,,0.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,885.271009867505,360.0,43999.34471060189,0,5,0,1,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.008181940034967293,43999.34471060189,10,5,10,10_0,10_4,10_0_0 +32214,2,54.0,0.0,1,111,500.0,1000.0,0.0,56,78,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,1,132237,2,2,3,0,1,,450.0,,42,2.0,1.0,7.0,3.0,2.0,3,3,353.804647322184,500.0,48943.26702350693,1,7,0,1,80.0,7,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030647729324639605,24471.633511753465,7,4,7,7_1,7_2,7_1_0 +32215,1,24.0,70.0,9,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,390.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,40.0,2,2006.0,6,132238,2,1,0,0,1,,0.0,435.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2424.21034625414,0.0,11622.144933810268,0,1,2,3,36.0,6,5,9,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.03355662850713911,11622.144933810268,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +32216,2,25.0,0.0,2,111,280.0,49.0,0.0,62,62,0.0,0.0,477.4561521441771,329.0,0.0,93.02669834904967,42,1,1,2,2,1,1,2,2,2,30.0,2,,2,132239,2,1,0,1,1,576.0,173.0,600.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1416.50560838142,280.0,50915.67607920798,4,1,2,3,50.0,8,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.006461664173685618,33943.78405280532,9,5,9,9_0,9_2,9_0_1 +32217,1,45.0,255.0,5,111,537.0,83.0,0.0,0,68,0.0,0.0,915.6926917907969,620.0,0.0,157.57583597900248,71,0,0,0,0,0,0,0,0,2,15.0,2,,3,132240,2,1,0,1,1,274.0,0.0,262.0,12,1.0,3.0,3.0,1.0,1.0,1,1,384.821791400749,537.0,10584.359469606547,0,1,2,3,50.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05857699767098399,10584.359469606547,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +32218,2,33.0,0.0,5,111,400.0,,,0,37,0.0,0.0,,423.0,31.86855218411998,,20,0,0,0,0,0,0,0,0,2,20.0,2,,3,132241,2,1,0,0,2,,500.0,186.0,12,1.0,0.0,2.0,1.0,1.0,1,1,204.86563260774298,400.0,40639.0826412625,0,1,2,3,77.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010408699520458933,40639.0826412625,9,5,9,9_0,9_2,9_0_0 +32219,1,51.0,183.0,2,111,0.0,0.0,1196.0,0,68,0.0,0.0,753.8606753360335,1196.0,0.0,1431.2916484873583,71,0,0,0,0,0,0,0,0,0,,2,,2,132242,2,1,0,0,1,,600.0,223.0,12,1.0,3.0,1.0,1.0,1.0,1,1,291.89347358701,0.0,7451.0204081632655,0,4,2,3,60.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.16051492741714599,7451.0204081632655,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32220,2,67.0,0.0,6,120,550.0,0.0,0.0,86,74,1318.3535637957518,119.18945493092015,937.8602988546337,1950.0,83.13535352379125,0.0,10,0,0,0,0,0,0,0,0,0,,1,,4,132243,2,1,3,0,1,,304.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,893.784729944542,550.0,52447.35692534545,5,5,0,1,130.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.037180138605948564,34964.904616896965,9,5,9,9_1,9_0,9_0_0 +32221,2,41.0,0.0,8,111,570.0,760.0,0.0,56,48,0.0,0.0,971.9643097220749,1330.0,0.0,1442.8630764342397,43,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,132244,1,2,2,0,1,,600.0,421.0,43,2.0,0.0,3.0,4.0,2.3,3,2,308.865298176656,570.0,32516.592715670147,1,1,2,3,65.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04090219450819202,14137.649006813108,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +32222,2,49.0,0.0,2,111,457.0,932.0,0.0,0,64,0.0,0.0,779.276648321032,1389.0,0.0,1769.4057726798833,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,132245,2,1,2,0,1,,0.0,745.0,12,1.0,2.0,4.0,1.0,1.0,1,1,207.252562941541,457.0,22641.077958834627,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0613486691104302,22641.077958834627,6,3,6,6_1,6_4,6_0_1 +32223,1,26.0,252.0,1,400,0.0,0.0,0.0,0,67,0.0,0.0,0.0,873.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132246,2,2,1,0,1,,0.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2823.14396775245,0.0,9660.739709361364,0,4,2,3,37.0,0,1,5,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.09036575109813313,9660.739709361364,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +32224,1,51.0,339.0,2,111,250.0,250.0,0.0,0,68,0.0,0.0,426.3001358430153,500.0,0.0,474.62601198494724,60,0,0,0,0,0,0,0,0,0,,2,,2,132247,1,1,0,1,1,456.0,0.0,317.0,32,1.0,1.0,4.0,2.0,1.3,1,1,292.140560244094,250.0,9953.533333333333,0,1,2,3,70.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.05023341794873513,7656.564102564102,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32225,0,63.0,0.0,5,111,300.0,,,0,68,0.0,0.0,,375.0,103.91919190473907,,71,0,0,0,0,0,0,0,0,3,60.0,1,,3,132248,2,2,0,0,2,,200.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,105.86056164352019,300.0,3723.0413120199823,0,1,5,0,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10072410391721898,3723.0413120199823,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +32226,2,64.0,0.0,2,111,192.0,120.0,0.0,0,77,0.0,0.0,327.3985043274357,312.0,0.0,227.8204857527747,70,2,1,2,2,1,2,2,2,0,,2,,2,132249,2,2,0,1,1,,0.0,284.0,11,0.0,0.0,1.0,1.0,1.0,1,1,368.4815542875,192.0,15128.097457416014,0,5,2,3,23.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.020623875598253304,15128.097457416014,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +32228,2,71.0,0.0,8,111,250.0,600.0,0.0,0,74,0.0,0.0,426.3001358430153,850.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,0,,1,2001.0,6,132251,2,1,1,0,1,,400.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,1583.5841814958,250.0,46444.8163024548,0,5,0,1,105.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.018301288877206175,46444.8163024548,10,5,10,10_1,10_2,10_0_0 +32229,2,41.0,0.0,1,111,312.0,,,0,52,0.0,0.0,,496.0,254.94841747295985,,41,0,0,0,0,0,0,0,0,0,,1,,1,132252,2,2,0,0,2,,300.0,,32,1.0,0.0,3.0,4.0,2.3,3,3,97.77388065568415,312.0,15730.48127439219,0,1,0,1,50.0,8,7,0,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03153113953401054,6839.339684518344,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +32230,2,66.0,0.0,6,111,600.0,1500.0,0.0,77,75,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,4,132253,2,1,2,0,1,,380.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,239.583057151248,600.0,24692.795814388868,5,5,0,1,130.0,6,4,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08504504778581201,16461.863876259245,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +32231,2,68.0,0.0,9,111,735.0,0.0,0.0,0,74,0.0,0.0,1253.322399378465,735.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,132254,2,2,1,0,1,,285.0,400.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1759.20352953912,735.0,24178.412623189324,0,5,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030399017977510538,24178.412623189324,7,4,7,7_1,7_4,7_0_0 +32232,2,43.0,0.0,9,300,720.0,,,85,63,0.0,0.0,,878.0,218.9230976126503,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,132255,1,2,0,0,2,,1400.0,,42,2.0,0.0,5.0,5.0,2.8,4,3,85.8341199189916,720.0,21591.38060455148,7,4,1,2,248.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04066437510785748,7711.207358768386,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +32233,2,49.0,0.0,2,111,1700.0,0.0,0.0,55,62,0.0,0.0,2898.840923732504,1850.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,132256,2,1,3,0,1,,900.0,,43,2.0,1.0,4.0,4.0,2.5,4,4,310.647870397474,1700.0,54094.26534420083,1,1,1,2,90.0,8,7,3,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034199558645051996,21637.706137680332,6,3,6,6_1,6_3,6_0_1 +32234,1,34.0,313.0,2,111,349.0,0.0,0.0,0,56,0.0,0.0,595.1149896368494,349.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,2,132257,1,2,0,1,2,1243.0,0.0,343.0,32,1.0,0.0,4.0,3.0,1.6,1,1,352.099534240232,349.0,19601.901154283172,0,1,2,3,70.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017804395464148165,12251.188221426983,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32235,2,60.0,0.0,2,111,500.0,1500.0,0.0,77,31,0.0,264.8654554020448,852.6002716860306,2200.0,0.0,2847.7560719096837,44,0,0,0,0,0,0,0,0,0,,1,,2,132258,2,3,2,0,1,,300.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,502.467124795587,500.0,66913.92245978628,5,5,0,1,102.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03287806063561958,44609.281639857516,10,5,10,10_1,10_3,10_0_1 +32236,2,59.0,0.0,1,400,1242.0,0.0,0.0,72,56,3178.814113024317,0.0,2117.8590748681,4376.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132259,2,3,3,0,1,,339.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1911.3969650716,1242.0,35259.507759528984,5,1,0,1,100.0,0,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.12410836900629656,23506.338506352655,6,3,6,6_1,6_0,6_1_0 +32237,2,63.0,0.0,7,221,1068.0,0.0,0.0,77,78,0.0,0.0,1821.1541803213613,1524.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,132260,2,1,2,0,1,,179.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1862.25304077045,1068.0,27115.13991234516,6,5,0,1,108.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05620476253954874,18076.75994156344,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +32238,2,62.0,0.0,5,211,500.0,1060.0,0.0,77,74,0.0,0.0,852.6002716860306,1560.0,0.0,2012.4142908161764,50,0,0,0,0,0,0,0,0,0,,1,,3,132261,2,1,3,0,1,,310.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,256.229497016073,500.0,32272.485119911536,5,5,0,1,85.0,2,3,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.048338390867752185,21514.990079941024,6,3,6,6_1,6_1,6_0_0 +32239,2,44.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,825.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,90.0,2,,2,132262,2,1,0,1,1,696.0,0.0,348.0,32,3.0,0.0,4.0,4.0,2.5,4,3,780.370302813115,0.0,18469.104346381064,0,1,2,3,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.044669193726313804,7387.6417385524255,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +32240,2,40.0,0.0,5,111,954.0,0.0,0.0,0,33,0.0,0.0,1626.7613183769463,954.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,120.0,1,,3,132263,2,1,2,0,1,,164.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,238.610940327275,954.0,24707.95238844272,0,1,1,2,85.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03861105060434869,24707.95238844272,7,4,7,7_1,7_2,7_0_0 +32241,2,67.0,0.0,5,111,484.0,825.0,0.0,0,75,0.0,0.0,825.3170629920776,2034.0,0.0,1566.2658395503258,41,0,0,0,0,0,0,0,0,0,,1,,3,132264,2,2,3,0,1,,250.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,380.811013397638,484.0,41883.63432788331,0,5,0,1,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04856312095738787,41883.63432788331,9,5,9,9_1,9_3,9_0_0 +32242,2,46.0,0.0,1,111,0.0,100.0,0.0,0,43,0.0,0.0,0.0,2055.0,0.0,189.8504047939789,33,0,0,0,0,0,0,0,0,2,20.0,2,,1,132265,2,1,0,0,1,,0.0,,32,1.0,0.0,4.0,2.0,1.5,2,2,1864.03979418862,0.0,31856.63281203263,0,1,1,2,75.0,9,7,9,0,1,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06450775925143608,21237.755208021754,5,3,5,5_0,5_3,5_1_0 +32243,2,66.0,0.0,9,112,600.0,3000.0,0.0,85,72,0.0,158.91927324122688,1023.1203260232367,3720.0,0.0,5695.512143819367,44,2,2,2,2,2,2,2,1,0,,1,2009.0,6,132266,2,3,1,0,1,,1000.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,423.28479500507,600.0,97960.75334011365,6,5,0,1,140.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.037974391510489834,65307.1688934091,10,5,10,10_1,10_0,10_0_0 +32244,2,29.0,0.0,5,111,350.0,641.0,0.0,0,34,0.0,0.0,596.8201901802214,991.0,0.0,1216.9410947294048,71,0,0,0,0,0,0,0,0,2,40.0,2,,3,132267,1,1,0,0,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,1768.3112439774,350.0,36232.440224302096,0,1,0,1,74.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02735118015416773,36232.440224302096,9,5,9,9_0,9_3,9_0_0 +32245,2,32.0,0.0,5,112,390.0,963.0,0.0,46,63,0.0,0.0,665.0282119151038,1353.0,0.0,1828.2593981660168,60,0,0,0,0,0,0,0,0,0,,1,,3,132268,2,1,2,0,1,,619.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,743.707033234324,390.0,48399.14924807812,1,1,1,2,75.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02795503683473788,26888.41624893229,7,4,7,7_1,7_2,7_0_0 +32246,0,58.0,0.0,5,112,40.0,0.0,0.0,0,77,0.0,0.0,68.20802173488245,160.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132269,2,1,3,0,1,,0.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1846.29859531766,40.0,12008.996881964029,0,7,5,0,84.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.013323344287006973,12008.996881964029,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +32247,1,31.0,182.0,2,211,1430.0,0.0,0.0,0,56,0.0,0.0,2438.4367770220474,1430.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,132270,2,1,0,0,1,,250.0,436.0,32,1.0,0.0,3.0,2.0,1.3,1,1,2738.99724311108,1430.0,13580.535190871678,0,4,2,3,80.0,2,3,7,0,0,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.105297764771538,10446.565531439752,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +32248,2,85.0,0.0,2,111,736.0,,,0,86,0.0,0.0,,824.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,2,132271,1,2,0,0,2,,360.0,,21,0.0,0.0,5.0,3.0,1.8,2,2,98.0852867812595,736.0,29052.7085317338,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028362243716449305,16140.393628741,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +32249,2,66.0,0.0,7,120,1265.0,0.0,0.0,77,75,0.0,794.5963662061343,2157.0786873656575,1865.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,5,132272,2,1,1,0,1,,300.0,,41,0.0,1.0,4.0,3.0,2.0,3,3,1508.37618736882,1265.0,74664.19318715333,5,5,0,1,130.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.024978506033343045,37332.096593576665,9,5,9,9_1,9_1,9_0_0 +32250,2,38.0,0.0,2,111,96.0,688.0,0.0,56,52,0.0,0.0,163.69925216371786,784.0,0.0,1306.1707849825748,50,0,0,0,0,0,0,0,0,2,20.0,8,,2,132273,2,3,0,0,1,,0.0,623.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1937.03797006967,96.0,28775.61183216263,1,1,2,3,65.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.027245293847191796,19183.741221441753,5,3,5,5_0,5_2,5_0_1 +32251,1,63.0,270.0,8,112,1000.0,0.0,0.0,0,62,0.0,0.0,1705.2005433720612,1070.0,96.99124577775646,0.0,60,2,2,2,2,1,2,2,1,0,,2,1999.0,6,132274,2,2,0,0,1,,0.0,314.0,12,1.0,2.0,2.0,1.0,1.0,1,1,840.980502351255,1000.0,7204.897959183673,0,4,2,3,58.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.1485100838431906,7204.897959183673,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +32252,1,25.0,113.0,9,112,1800.0,0.0,0.0,55,67,0.0,595.9472746546007,3069.36097806971,2340.0,124.70303028568689,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2008.0,6,132275,2,1,1,0,1,,120.0,485.0,43,2.0,0.0,4.0,3.0,1.8,2,2,235.502136318391,1800.0,38088.037301628916,1,1,2,3,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.06143661279968146,21160.020723127174,5,3,5,5_1,5_0,5_0_0 +32253,2,49.0,0.0,1,111,0.0,0.0,0.0,85,85,0.0,0.0,0.0,672.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132276,1,3,4,0,2,,639.0,,41,0.0,2.0,3.0,3.0,1.8,2,2,411.315320936538,0.0,28576.261552915825,5,5,0,1,50.0,6,5,3,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023516022162508216,15875.700862731013,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +32254,2,51.0,0.0,6,112,1000.0,0.0,0.0,54,38,0.0,0.0,1705.2005433720612,1000.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,132277,2,1,1,0,1,,1100.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,1062.30847535762,1000.0,55418.00174411183,1,1,1,2,110.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01804467805637272,27709.000872055916,7,4,7,7_1,7_1,7_0_0 +32255,2,67.0,0.0,5,111,1900.0,0.0,0.0,72,72,0.0,0.0,3239.8810324069163,1900.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,3,132278,2,1,1,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1126.13308972104,1900.0,41765.200692315935,5,5,1,2,120.0,7,5,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04549241877220445,27843.467128210625,7,4,7,7_1,7_2,7_0_0 +32256,2,45.0,0.0,2,111,246.0,517.0,0.0,0,54,0.0,0.0,419.479333669527,763.0,0.0,981.5265927848709,43,0,0,0,0,0,0,0,0,3,20.0,2,,2,132279,2,2,0,0,1,1341.0,0.0,186.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1321.07658057727,246.0,10610.10556280885,0,1,2,3,46.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.07191257386491151,10610.10556280885,2,1,2_0,2_0_0,2_2_0,2_0_1_0 +32257,2,72.0,0.0,2,111,844.0,921.0,0.0,86,75,0.0,0.0,1439.1892586060196,1765.0,0.0,1748.5222281525457,50,0,0,0,0,0,0,0,0,0,,1,,2,132280,2,1,2,0,1,,256.0,,41,1.0,3.0,3.0,3.0,2.0,3,3,225.809303922338,844.0,62860.9187523761,5,5,0,1,100.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02807785878779069,31430.45937618805,8,4,8,8_1,8_2,8_0_1 +32258,1,70.0,247.0,5,111,270.0,432.0,0.0,0,77,0.0,0.0,460.40414671045653,702.0,0.0,820.1537487099888,20,0,0,0,0,0,0,0,0,0,,2,,3,132281,2,2,0,0,1,,230.0,417.0,11,0.0,2.0,4.0,1.0,1.0,1,1,530.159940180124,270.0,12801.191275102721,0,5,2,3,86.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.054838646256722454,12801.191275102721,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +32259,2,43.0,0.0,8,211,410.0,,,43,69,0.0,0.0,,520.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,2,10.0,1,2002.0,6,132282,2,2,0,0,2,,360.0,,43,2.0,0.0,4.0,4.0,2.3,3,3,103.9680425026478,410.0,42048.00404556197,1,1,0,1,76.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012366817683820223,18281.74088937477,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +32260,2,42.0,0.0,1,111,1250.0,0.0,0.0,0,37,2636.7071275915036,291.3520009422493,2131.5006792150766,4228.0,357.4820201523024,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132283,2,2,2,0,1,,685.0,997.0,22,3.0,0.0,9.0,3.0,2.0,3,3,1586.5864282573,1250.0,78945.27463998437,0,1,2,3,240.0,9,7,8,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053556087039801026,39472.63731999219,9,5,9,9_1,9_3,9_1_0 +32261,2,58.0,0.0,6,112,700.0,0.0,0.0,56,68,0.0,1258.1109131597127,1193.6403803604428,1830.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,132284,2,1,3,0,1,,500.0,540.0,43,2.0,4.0,4.0,2.0,1.5,2,2,451.277214880453,700.0,29119.092645668483,1,1,2,3,100.0,7,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06284536480130386,19412.728430445655,5,3,5,5_1,5_1,5_0_0 +32262,2,67.0,0.0,2,120,487.0,0.0,0.0,0,72,2816.003212267726,0.0,830.4326646221938,3247.0,124.70303028568689,0.0,70,2,2,2,1,1,1,2,2,0,,1,,2,132285,1,1,2,0,2,,367.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1555.04382616577,487.0,18122.756234518944,0,5,0,1,120.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,0,0.1791670073791173,18122.756234518944,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +32263,2,29.0,0.0,2,111,312.0,0.0,0.0,42,42,0.0,0.0,532.0225695320831,312.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,132286,1,2,0,1,1,620.0,0.0,605.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1474.90527406144,312.0,40691.2523564868,1,1,2,3,65.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007667495639274972,27127.5015709912,7,4,7,7_0,7_3,7_0_1 +32264,2,49.0,0.0,1,112,750.0,0.0,0.0,56,48,0.0,0.0,1278.9004075290459,900.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,132287,2,1,1,0,1,,600.0,,43,3.0,0.0,8.0,4.0,2.5,4,3,565.279932053324,750.0,78628.37424075289,1,1,0,1,115.0,8,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.011446249635586795,31451.349696301157,8,4,8,8_1,8_0,8_1_0 +32265,2,36.0,0.0,9,112,1800.0,0.0,0.0,62,52,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2007.0,6,132288,2,2,1,0,1,,300.0,,43,2.0,0.0,7.0,6.0,2.6999999999999997,2,2,771.79398577797,1800.0,51202.220392010604,1,1,1,2,100.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035154725443915805,18963.7853303743,5,3,5,5_1,5_0,5_0_0 +32266,1,59.0,100.0,7,221,848.0,,,0,77,0.0,0.0,,1112.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,132289,2,2,0,0,2,,696.0,,31,1.0,1.0,4.0,5.0,2.5999999999999996,3,3,117.01309725070021,848.0,17440.933609958505,0,7,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0637580547502953,6708.0513884455795,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +32267,2,78.0,0.0,2,112,420.0,1200.0,0.0,86,75,0.0,0.0,716.1842282162656,1620.0,0.0,2278.2048575277468,60,2,2,2,2,2,2,2,1,0,,1,,2,132290,2,1,2,0,1,,500.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1325.25930913272,420.0,54353.84541585317,6,5,0,1,78.0,9,2,9,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,1,0,1,0,0,0,0.02980469896114289,36235.89694390211,9,5,9,9_1,9_1,9_0_1 +32268,2,44.0,0.0,7,111,251.0,560.0,0.0,52,62,0.0,0.0,428.00533638638734,811.0,0.0,1063.162266846282,43,2,2,2,2,1,2,2,2,3,90.0,2,,5,132291,1,1,0,0,1,,0.0,444.0,43,2.0,0.0,3.0,3.0,2.0,3,3,770.010503939667,251.0,38563.82576079708,1,1,2,3,67.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.021030071161260152,19281.91288039854,5,3,5,5_0,5_4,5_0_0 +32269,2,43.0,0.0,7,112,439.0,0.0,0.0,68,67,1371.087706347582,0.0,748.5830385403349,1799.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,132292,2,1,2,0,1,,224.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,896.10662643484,439.0,36027.51909833182,1,1,0,1,115.0,8,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04993405166450385,15664.13873840514,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +32270,2,51.0,0.0,1,111,388.0,2300.0,0.0,0,46,0.0,0.0,661.6178108283598,2688.0,0.0,4366.559310261515,50,0,0,0,0,0,0,0,0,0,,1,,1,132293,2,1,2,0,1,,200.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,801.166756298841,388.0,44106.26502080384,0,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06094372304551602,44106.26502080384,10,5,10,10_1,10_4,10_1_0 +32271,2,65.0,0.0,1,111,161.0,232.0,0.0,0,46,0.0,0.0,274.53728748290183,393.0,0.0,440.45293912203107,30,0,0,0,0,0,0,0,0,0,,2,,1,132294,2,1,0,0,1,,0.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,593.650814342303,161.0,17458.77909002707,0,1,0,1,57.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02251016511369299,17458.77909002707,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +32272,1,54.0,98.0,2,111,520.0,240.0,0.0,85,56,0.0,0.0,886.7042825534718,760.0,0.0,455.6409715055494,50,2,2,2,2,1,2,2,2,0,,2,,2,132295,1,3,0,1,1,1056.0,0.0,583.0,42,1.0,1.0,3.0,3.0,1.8,2,2,348.478821418593,520.0,12868.94932901502,7,1,2,3,50.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.059056880291420796,7149.416293897233,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32273,2,49.0,0.0,2,211,73.0,0.0,0.0,0,62,0.0,0.0,124.47963966616047,73.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132296,2,1,0,0,1,,150.0,64.0,12,1.0,2.0,4.0,1.0,1.0,1,1,4284.89620196483,73.0,23205.179566524577,0,1,2,3,100.0,2,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0031458493906812357,23205.179566524577,6,3,6,6_0,6_1,6_0_1 +32274,2,64.0,0.0,7,112,590.0,0.0,0.0,77,74,1898.4291318658827,847.5694572865433,1006.0683205895161,3065.0,48.49562288887823,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,132297,2,1,1,0,1,,590.0,,41,0.0,4.0,7.0,2.0,1.5,2,2,1754.12351849761,590.0,45675.468966804714,6,5,0,1,260.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06710385397963908,30450.312644536476,8,4,8,8_1,8_0,8_0_0 +32275,2,66.0,0.0,5,112,1200.0,0.0,0.0,78,77,0.0,238.3789098618403,2046.2406520464733,1440.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,132298,2,1,2,0,1,,550.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,362.057719309447,1200.0,36280.80700143353,5,5,0,1,80.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039690407105418095,24187.204667622354,7,4,7,7_1,7_0,7_0_0 +32276,2,82.0,0.0,2,111,307.0,1044.0,0.0,86,78,0.0,0.0,523.4965668152228,1351.0,0.0,1982.0382260491397,71,0,0,0,0,0,0,0,0,0,,1,,2,132299,2,1,1,0,1,,234.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1717.13443108079,307.0,25377.368486596923,5,5,0,1,60.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05323641025717587,16918.24565773128,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +32277,2,67.0,0.0,2,111,543.0,1766.0,0.0,78,78,0.0,0.0,925.9238950510293,2309.0,0.0,3352.7581486616673,50,0,0,0,0,0,0,0,0,0,,1,,2,132300,1,1,1,0,2,,456.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,354.19074045776,543.0,25439.81212278082,5,5,0,1,120.0,6,4,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09076324891300352,16959.874748520546,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +32278,0,77.0,0.0,1,212,210.0,0.0,0.0,0,77,1687.4925616585624,0.0,358.0921141081328,1910.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132301,1,2,4,0,2,,170.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,729.91868894263,210.0,12747.461328569887,0,5,0,1,80.0,1,0,5,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14983375519008374,12747.461328569887,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +32279,2,33.0,0.0,1,111,0.0,0.0,1400.0,31,37,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,10,0,0,0,0,0,0,0,0,2,15.0,1,,1,132302,2,1,1,0,1,,382.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,405.341178527515,0.0,95761.37579774452,1,1,1,2,110.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.014619672997983122,53200.76433208029,10,5,10,10_1,10_3,10_1_0 +32280,2,61.0,0.0,1,112,2510.0,0.0,0.0,65,75,0.0,72.83800023556232,4280.0533638638735,2565.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,1,132303,2,1,1,0,1,,400.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,474.310995086556,2510.0,35884.02296767493,4,5,0,1,110.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0714802797420625,23922.681978449953,6,3,6,6_1,6_1,6_1_0 +32281,2,73.0,0.0,2,111,0.0,0.0,2200.0,78,78,0.0,0.0,1386.7002389124364,2200.0,0.0,2632.810724642298,50,0,0,0,0,0,0,0,0,0,,1,,2,132304,2,1,1,0,1,,230.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,250.409755630728,0.0,50809.60780746895,5,5,0,1,96.0,6,5,8,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04329889749073408,33873.07187164597,9,5,9,9_1,9_2,9_0_1 +32282,0,33.0,0.0,7,111,921.0,,,52,63,0.0,0.0,,993.0,99.7624242285495,,43,0,0,0,0,0,0,0,0,0,,1,,5,132305,2,2,0,0,2,,307.0,,43,2.0,0.0,3.0,5.0,2.4,2,2,111.50027323622255,921.0,30117.997580470037,4,1,5,0,45.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03297031940277162,12549.165658529182,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +32283,2,88.0,0.0,6,111,845.0,0.0,0.0,0,71,0.0,0.0,1440.8944591493917,845.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,132306,2,1,0,0,1,,192.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,2467.65518888232,845.0,39643.6313471375,0,5,0,1,80.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02131489904647733,39643.6313471375,9,5,9,9_0,9_2,9_0_0 +32284,2,86.0,0.0,2,111,115.0,1100.0,0.0,0,78,0.0,0.0,196.09806248778705,1215.0,0.0,2088.354452733768,12,0,0,0,0,0,0,0,0,0,,1,,2,132307,2,1,2,0,1,,158.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,219.787837539967,115.0,24485.99594971162,0,5,0,1,90.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.049620199337422066,24485.99594971162,7,4,7,7_1,7_2,7_0_1 +32285,1,40.0,270.0,7,111,0.0,,,0,85,0.0,0.0,,115.0,0.0,,30,0,0,0,0,0,0,0,0,0,,8,,5,132308,2,1,0,0,2,,0.0,450.0,11,0.0,0.0,1.0,1.0,1.0,1,1,163.37723860081482,0.0,11746.678436571015,0,7,2,3,27.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.00979000154136932,11746.678436571015,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +32286,2,75.0,0.0,1,111,900.0,0.0,0.0,86,78,0.0,662.163638505112,1534.680489034855,1400.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,132309,1,2,2,0,1,,200.0,,41,0.0,6.0,2.0,2.0,1.5,2,2,314.75843747691,900.0,17128.49668493398,5,5,0,1,60.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.08173513564861902,11418.997789955987,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +32287,2,68.0,0.0,2,111,324.0,412.0,0.0,77,78,0.0,0.0,552.4849760525478,736.0,0.0,782.1836677511931,71,0,0,0,0,0,0,0,0,0,,2,,2,132310,1,3,0,1,2,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,260.987367196458,324.0,20424.609412220256,5,5,0,1,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03603496082327252,13616.406274813504,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +32288,2,44.0,0.0,1,111,600.0,1200.0,0.0,90,63,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,38.0,1,,1,132311,1,1,2,0,2,,500.0,,43,3.0,0.0,3.0,4.0,2.5,4,3,249.490520480815,600.0,26207.44804428088,1,1,1,2,100.0,4,4,9,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06868276518029022,10482.979217712353,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +32289,2,49.0,0.0,7,111,500.0,,,56,46,0.0,0.0,,815.0,436.4606059999041,,50,0,0,0,0,0,0,0,0,0,,1,,5,132312,2,1,0,0,1,,350.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,146.58118871240475,500.0,39964.58080464406,4,1,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02039305764231345,19982.29040232203,5,3,5,5_1,5_2,5_0_0 +32290,2,30.0,0.0,2,111,750.0,0.0,0.0,52,53,0.0,0.0,1278.9004075290459,870.0,166.2707070475825,0.0,42,0,0,0,0,0,0,0,0,2,20.0,2,,2,132313,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1467.31685469184,750.0,44607.408208156456,1,1,1,2,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01950348686344258,29738.27213877097,8,4,8,8_0,8_3,8_0_1 +32291,2,82.0,0.0,2,112,960.0,0.0,0.0,0,86,2847.643697798824,0.0,1636.9925216371787,3810.0,207.83838380947813,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132314,2,1,1,0,2,,392.0,,21,1.0,16.0,7.0,2.0,1.5,2,2,2215.98374025048,960.0,44523.0,0,5,0,1,100.0,7,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08557374839970353,29682.0,8,4,8,8_1,8_1,8_0_1 +32292,2,56.0,0.0,5,300,600.0,0.0,0.0,78,62,1434.368677409778,0.0,1023.1203260232367,2050.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,3,132315,2,1,1,0,1,,330.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1152.8698944587,600.0,30081.006236945923,5,1,0,1,95.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06814931601198103,20054.004157963947,5,3,5,5_1,5_0,5_0_0 +32293,2,76.0,0.0,7,111,1200.0,,,0,86,0.0,0.0,,1320.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,5,132316,2,1,0,0,2,,2400.0,457.0,11,0.0,0.0,3.0,1.0,1.0,1,1,125.38220350278671,1200.0,19009.10647790696,0,5,2,3,84.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06944040223743023,19009.10647790696,5,3,5,5_1,5_2,5_0_0 +32294,1,70.0,250.0,5,111,696.0,,,0,77,0.0,0.0,,696.0,0.0,,71,0,0,0,0,0,0,0,0,0,,8,,3,132317,2,1,0,0,2,,120.0,500.0,11,0.0,6.0,4.0,1.0,1.0,1,1,72.13444500582017,696.0,21311.41288659031,0,5,2,3,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03265855735158419,21311.41288659031,6,3,6,6_0,6_2,6_0_0 +32295,2,74.0,0.0,6,111,0.0,0.0,0.0,0,78,0.0,0.0,0.0,337.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,132318,2,2,0,1,2,,271.0,575.0,11,0.0,0.0,1.0,1.0,1.0,1,1,949.987062388571,0.0,25217.997806700096,0,5,2,3,25.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013363471699187135,25217.997806700096,7,4,7,7_0,7_4,7_0_0 +32296,2,51.0,0.0,5,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,1161.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,132319,2,2,0,0,2,,0.0,750.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1358.00898632588,0.0,24143.85029104989,0,1,2,3,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04808677928351726,24143.85029104989,6,3,6,6_0,6_4,6_0_0 +32297,2,28.0,0.0,6,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,281.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,15.0,2,,4,132320,2,1,0,0,1,,0.0,600.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2440.04253657162,0.0,22932.832794854792,0,1,2,3,72.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01225317441214873,22932.832794854792,6,3,6,6_0,6_3,6_0_0 +32298,2,64.0,0.0,5,400,516.0,0.0,0.0,75,74,1001.9487084847715,264.8654554020448,879.8834803799836,1794.0,177.35542085075468,0.0,20,0,0,0,0,0,0,0,0,0,,1,,3,132321,2,3,3,0,2,,108.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,905.5531365761,516.0,58684.26117159233,5,5,0,1,200.0,0,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030570377204790188,39122.84078106155,9,5,9,9_1,9_0,9_0_0 +32299,2,76.0,0.0,2,111,262.0,0.0,0.0,77,78,3094.439484941389,0.0,446.76254236348,3336.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132322,2,1,2,0,2,,123.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,688.828038262431,262.0,33221.61190579292,5,5,0,1,66.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.10041656044444656,22147.74127052861,6,3,6,6_1,6_4,6_0_1 +32300,2,49.0,0.0,2,120,672.0,0.0,0.0,85,64,506.24776849756876,1695.1389145730866,1145.894765146025,2562.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132323,2,1,1,0,1,,576.0,,42,1.0,1.0,5.0,5.0,2.6,3,3,575.07143817875,672.0,52397.657809114105,6,1,1,2,120.0,0,2,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.048895315308432795,20152.94531119773,5,3,5,5_1,5_1,5_0_1 +32301,1,44.0,125.0,2,111,0.0,0.0,0.0,68,64,0.0,0.0,0.0,990.0,0.0,0.0,71,2,2,2,2,2,2,2,1,2,45.0,2,,2,132324,1,3,0,1,1,840.0,0.0,480.0,43,2.0,0.0,5.0,5.0,2.4,2,2,809.245459118678,0.0,27986.825445160317,1,1,2,3,90.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03537378692484745,11661.177268816798,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +32302,2,42.0,0.0,2,111,500.0,100.0,0.0,0,52,0.0,0.0,852.6002716860306,600.0,0.0,189.8504047939789,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,132325,2,1,0,1,1,720.0,900.0,200.0,32,2.0,0.0,4.0,3.0,1.8,2,2,446.839070250792,500.0,43259.183734062724,0,1,2,3,56.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013869887228767884,24032.87985225707,6,3,6,6_0,6_4,6_0_1 +32303,2,68.0,0.0,5,400,1800.0,0.0,0.0,86,74,0.0,52.973091080408956,3069.36097806971,1840.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,132326,2,2,1,0,1,,780.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,829.967712071925,1800.0,62734.12284584009,5,5,0,1,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029330130342645106,41822.748563893394,9,5,9,9_1,9_0,9_0_0 +32304,2,35.0,0.0,9,300,982.0,0.0,0.0,67,47,0.0,0.0,1674.506933591364,1042.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2008.0,6,132327,2,1,1,0,1,,403.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1248.48869805332,982.0,46074.19592155456,1,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02261569581754825,25596.775511974753,7,4,7,7_1,7_0,7_0_0 +32305,2,53.0,0.0,7,300,540.0,60.0,0.0,11,52,0.0,0.0,920.8082934209131,600.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,132328,2,1,2,0,1,,240.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,996.072006807368,540.0,28458.35210926988,1,1,0,1,100.0,0,0,5,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021083441433861486,18972.234739513253,5,3,5,5_1,5_0,5_0_0 +32306,2,55.0,0.0,8,111,270.0,0.0,0.0,0,46,0.0,0.0,460.40414671045653,270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,2002.0,6,132329,2,1,0,1,1,516.0,0.0,432.0,12,1.0,1.0,2.0,1.0,1.0,1,1,783.481649103538,270.0,34190.5006977209,0,1,2,3,56.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00789693027274087,34190.5006977209,9,5,9,9_0,9_4,9_0_0 +32307,2,29.0,0.0,2,111,0.0,0.0,1500.0,22,48,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,71,2,2,1,1,1,2,2,2,3,30.0,1,,2,132330,2,3,2,0,1,,520.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1065.88764434033,0.0,30503.270067224577,1,1,1,2,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.049175055549592804,16946.2611484581,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +32308,2,33.0,0.0,1,111,0.0,0.0,1455.0,45,46,0.0,0.0,917.1131125534523,1455.0,0.0,1741.2452747066106,20,2,2,2,1,2,2,2,2,0,,2,,1,132331,2,1,0,0,1,,350.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,1863.76240960252,0.0,62966.03193094724,1,1,1,2,90.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,1,1,0,0,0.023107697204036142,41977.35462063149,9,5,9,9_0,9_3,9_1_0 +32309,2,63.0,0.0,7,111,0.0,,,0,77,0.0,0.0,,2048.0,0.0,,71,0,0,0,0,0,0,0,0,0,,2,,5,132333,2,2,0,0,2,,237.0,474.0,11,0.0,3.0,2.0,1.0,1.0,1,1,148.30862431417623,0.0,25936.91389969099,0,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.07896082039368607,25936.91389969099,7,4,7,7_0,7_2,7_0_0 +32310,1,51.0,406.0,7,111,500.0,,,0,85,0.0,0.0,,575.0,103.91919190473907,,50,0,0,0,0,0,0,0,0,0,,2,,5,132334,2,2,0,0,2,,100.0,469.0,31,0.0,0.0,3.0,3.0,1.6,1,1,127.58866096835801,500.0,11727.039155575087,0,6,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04903198432032543,7329.399472234429,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32311,2,71.0,0.0,7,120,1158.0,0.0,0.0,77,74,0.0,529.7309108040896,1974.622229224847,1558.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,5,132335,2,1,2,0,1,,600.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,1404.34395276423,1158.0,83534.84246009184,5,5,0,1,100.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01865090008093716,55689.894973394556,10,5,10,10_1,10_1,10_0_0 +32312,1,43.0,369.0,1,111,390.0,800.0,0.0,0,85,0.0,165.540909626278,665.0282119151038,1315.0,0.0,1518.8032383518312,71,1,2,2,2,1,2,2,2,0,,2,,1,132336,1,1,0,0,2,,500.0,550.0,31,0.0,0.0,3.0,2.0,1.5,2,1,1555.1377313554,390.0,10132.33529865358,0,7,2,3,64.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,0,0,1,0.1297825191567379,6754.890199102386,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +32313,1,30.0,210.0,2,111,360.0,0.0,0.0,85,63,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,132337,2,1,0,1,1,828.0,0.0,367.0,42,1.0,0.0,3.0,4.0,2.1,2,2,320.949208054871,360.0,25132.143338560567,6,1,2,3,84.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014324285642906049,11967.68730407646,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32314,2,29.0,0.0,1,111,350.0,0.0,0.0,0,46,0.0,0.0,596.8201901802214,350.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,45.0,2,,1,132338,2,1,0,0,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.04373740346,350.0,25717.002000330154,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01360967347576155,25717.002000330154,7,4,7,7_0,7_4,7_1_0 +32315,2,39.0,0.0,7,111,577.0,1200.0,0.0,37,42,0.0,0.0,983.9007135256793,1777.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,2,5.0,1,,5,132339,2,1,1,0,2,,1200.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,700.111855140219,577.0,101917.46666332663,1,1,1,2,125.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017435676711530988,56620.81481295924,10,5,10,10_1,10_4,10_0_0 +32316,2,45.0,0.0,9,111,1200.0,0.0,0.0,21,38,0.0,264.8654554020448,2046.2406520464733,1400.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2009.0,6,132340,2,1,1,0,1,,356.0,,43,2.0,0.0,6.0,4.0,2.3,3,3,1022.44078178348,1200.0,81962.12556158658,1,1,1,2,150.0,5,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01708106018978285,35635.70676590721,9,5,9,9_1,9_2,9_0_0 +32317,2,58.0,0.0,2,111,0.0,2000.0,0.0,52,37,0.0,0.0,0.0,3208.0,0.0,3797.008095879578,20,0,0,0,0,0,0,0,0,2,60.0,1,,2,132341,2,1,1,0,1,,784.0,,43,2.0,3.0,6.0,4.0,2.1,2,2,676.073364732498,0.0,156644.3040960481,1,1,0,1,150.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02047951898738036,74592.5257600229,10,5,10,10_1,10_4,10_0_1 +32318,1,74.0,180.0,2,111,720.0,,,86,86,0.0,0.0,,984.0,365.79555550468154,,70,0,0,0,0,0,0,0,0,0,,2,,2,132342,2,3,0,0,2,,600.0,630.0,41,1.0,1.0,3.0,3.0,2.0,3,3,145.66457449911653,720.0,17033.846182743593,6,5,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05776734094246176,8516.923091371797,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32319,2,32.0,0.0,2,112,550.0,0.0,0.0,53,54,0.0,0.0,937.8602988546337,550.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,75.0,1,,2,132343,2,1,2,0,1,,250.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,834.122651705954,550.0,51376.48111534381,1,1,1,2,80.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010705287479016154,28542.48950852434,8,4,8,8_1,8_2,8_0_1 +32320,1,37.0,320.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,2546.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,,1,132344,2,1,2,0,1,,0.0,730.0,32,1.0,0.0,6.0,3.0,1.6,1,1,341.055333828772,0.0,18005.042443680068,0,1,2,3,88.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.1414048318943935,11253.151527300042,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +32321,2,85.0,0.0,5,111,1714.0,0.0,0.0,86,77,0.0,0.0,2922.713731339713,1714.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,,3,132345,2,2,1,0,1,,469.0,,41,1.0,6.0,5.0,3.0,2.0,3,3,1165.38811728453,1714.0,61113.37660638814,5,5,0,1,88.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02804623300458965,30556.68830319407,8,4,8,8_1,8_3,8_0_0 +32322,2,43.0,0.0,7,111,399.0,,,0,52,0.0,0.0,,494.0,131.6309764126695,,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,132346,2,1,0,0,2,,197.0,,32,1.0,0.0,4.0,3.0,1.8,1,1,106.84947224486552,399.0,50204.73374365069,0,1,0,1,89.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009839709588390663,27891.518746472608,7,4,7,7_1,7_2,7_0_0 +32323,2,78.0,0.0,1,111,431.0,900.0,0.0,0,75,0.0,0.0,734.9414341933584,1331.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,0,,2,,1,132347,2,1,0,0,2,,330.0,,11,0.0,5.0,6.0,1.0,1.0,1,1,1147.7116581764,431.0,44481.96526924299,0,5,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.029922239090463897,44481.96526924299,10,5,10,10_0,10_4,10_1_0 +32324,2,47.0,0.0,8,112,310.0,2100.0,0.0,54,43,0.0,0.0,528.612168445339,2410.0,0.0,3986.858500673557,33,0,0,0,0,0,0,0,0,0,,1,2001.0,6,132348,2,2,2,0,1,,473.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1279.1890600723,310.0,54343.0,1,1,1,2,105.0,4,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.044347938096903,25877.619047619046,7,4,7,7_1,7_0,7_0_0 +32325,2,71.0,0.0,5,111,300.0,632.0,0.0,0,75,0.0,0.0,511.56016301161833,932.0,0.0,1199.8545582979466,44,0,0,0,0,0,0,0,0,0,,2,,3,132349,2,2,0,0,1,,266.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1603.53370356152,300.0,43279.6654234625,0,5,0,1,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02153436240509267,43279.6654234625,9,5,9,9_0,9_3,9_0_0 +32326,2,33.0,0.0,5,111,0.0,0.0,1200.0,0,54,0.0,0.0,756.3819484976925,1200.0,0.0,1436.078577077617,60,0,0,0,0,0,0,0,0,2,15.0,2,,3,132350,2,1,0,0,2,,180.0,366.0,12,1.0,0.0,2.0,1.0,1.0,1,1,644.524877365202,0.0,21047.15931684187,0,1,2,3,50.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05701482000185003,21047.15931684187,5,3,5,5_0,5_2,5_0_0 +32327,2,69.0,0.0,6,111,0.0,0.0,0.0,0,72,0.0,0.0,0.0,641.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,4,132351,2,1,0,0,1,,360.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,495.49566071891,0.0,28460.86886451279,0,5,0,1,110.0,8,6,3,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02252215148636057,28460.86886451279,8,4,8,8_0,8_2,8_0_0 +32328,2,43.0,0.0,5,111,1500.0,0.0,0.0,0,47,0.0,0.0,2557.8008150580918,1602.0,141.33010099044515,0.0,31,0,0,0,0,0,0,0,0,0,,1,,3,132352,2,2,1,0,1,,368.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,260.449029253674,1500.0,36127.22892809251,0,1,1,2,100.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044343284761436154,24084.819285395006,6,3,6,6_1,6_2,6_0_0 +32329,2,69.0,0.0,2,111,350.0,569.0,0.0,78,78,0.0,0.0,596.8201901802214,919.0,0.0,1080.2488032777399,70,0,0,0,0,0,0,0,0,0,,2,,2,132353,2,1,0,0,1,,0.0,217.0,41,0.0,2.0,3.0,2.0,1.5,2,2,357.313144208423,350.0,14981.226217565032,5,5,2,3,71.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.06134344323046804,9987.484145043354,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +32330,2,73.0,0.0,5,111,530.0,0.0,0.0,0,77,0.0,2489.735280779221,903.7562879871924,2410.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,3,132354,2,1,0,1,1,,0.0,,11,0.0,3.0,6.0,1.0,1.0,1,1,1042.74271473965,530.0,51738.851940333705,0,5,0,1,117.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.046580082657791885,51738.851940333705,10,5,10,10_0,10_4,10_0_0 +32332,1,46.0,82.0,8,111,600.0,,,85,62,0.0,0.0,,732.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,132356,2,1,0,0,2,,280.0,392.0,42,1.0,0.0,3.0,4.0,2.1,2,2,124.33666942895438,600.0,26771.820906705736,6,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.027342182011110442,12748.48614605035,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +32333,2,71.0,0.0,6,111,213.0,0.0,0.0,75,74,0.0,0.0,363.207715738249,213.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,132357,2,1,2,0,1,,426.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1839.26822217194,213.0,38374.18684795344,5,5,0,1,150.0,8,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.00555060621463982,25582.79123196896,7,4,7,7_1,7_3,7_0_0 +32334,2,49.0,0.0,9,112,1500.0,0.0,0.0,52,62,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2008.0,6,132358,1,2,1,0,1,,500.0,,43,2.0,1.0,3.0,3.0,2.0,3,3,3115.43597909656,1500.0,46299.34203181544,1,1,1,2,77.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032397868612673755,23149.67101590772,6,3,6,6_1,6_1,6_0_0 +32335,1,64.0,180.0,2,111,960.0,1200.0,0.0,85,67,0.0,0.0,1636.9925216371787,2160.0,0.0,2278.2048575277468,71,2,2,2,1,2,2,2,2,0,,2,,2,132359,1,2,0,0,2,,0.0,570.0,42,1.0,2.0,5.0,2.0,1.5,2,2,408.183383947468,960.0,27252.090844985258,6,1,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,1,0.07925997356630228,18168.060563323506,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +32336,1,53.0,253.0,2,111,300.0,,,0,52,0.0,0.0,,550.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,2,132360,2,1,0,0,2,,268.0,600.0,32,3.0,0.0,4.0,4.0,2.3,3,3,46.41647806328071,300.0,9836.378794501867,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.055914886107012014,4276.686432392116,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +32337,2,51.0,0.0,6,111,1920.0,0.0,0.0,38,43,0.0,384.05491033296494,3273.9850432743574,2210.0,0.0,0.0,20,2,2,2,2,1,2,2,2,3,90.0,1,,4,132361,2,2,1,0,1,,508.0,,43,2.0,0.0,9.0,4.0,2.5,4,4,553.664737108195,1920.0,70264.38879664546,1,1,0,1,170.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.03145263251909919,28105.755518658185,8,4,8,8_1,8_4,8_0_0 +32338,2,45.0,0.0,2,111,500.0,0.0,0.0,0,53,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132362,1,1,0,1,2,170.0,0.0,260.0,12,1.0,2.0,1.0,1.0,1.0,1,1,1095.07772403162,500.0,21019.79998408285,0,1,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.023787095994187518,21019.79998408285,5,3,5,5_0,5_4,5_0_1 +32339,1,33.0,400.0,9,112,1169.0,0.0,0.0,85,64,0.0,331.081819252556,1993.3794352019395,1419.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,1,2011.0,6,132363,2,1,1,0,1,,500.0,,42,1.0,0.0,5.0,7.0,2.9999999999999996,2,2,272.85171342158,1169.0,14628.160675500727,6,4,1,2,130.0,7,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09700467690217159,4876.053558500243,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +32340,2,44.0,0.0,1,300,326.0,0.0,0.0,0,43,0.0,158.91927324122688,555.8953771392919,486.0,55.423569015860835,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,132364,2,1,4,0,1,,78.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,1384.36920295583,326.0,20717.001864594888,0,1,0,1,60.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02345899291685484,20717.001864594888,5,3,5,5_1,5_0,5_1_0 +32341,2,61.0,0.0,2,111,870.0,0.0,0.0,52,74,0.0,0.0,1483.5244727336933,870.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,132365,2,1,0,1,2,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,399.155421171233,870.0,17802.743575795917,1,5,0,1,71.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04886887216545804,11868.495717197278,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +32342,0,77.0,0.0,2,221,800.0,0.0,0.0,74,74,3164.0485531098047,264.8654554020448,1364.160434697649,4120.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,132366,2,2,1,0,1,,420.0,,41,0.0,3.0,7.0,2.0,1.5,2,2,1667.26880021226,800.0,79141.73766142223,5,5,0,1,210.0,1,1,5,1,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05205849810407057,52761.15844094815,10,5,10,10_1,10_1,10_0_1 +32343,2,63.0,0.0,2,111,3500.0,0.0,0.0,85,74,0.0,0.0,5968.201901802214,3500.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,132367,2,2,2,0,1,,1190.0,,41,0.0,0.0,6.0,5.0,2.6,3,3,835.582374047191,3500.0,85214.97991848388,6,5,0,1,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04107259079739359,32774.99227633995,8,4,8,8_1,8_3,8_0_1 +32344,2,36.0,0.0,2,112,558.0,1249.0,0.0,47,37,0.0,0.0,951.5019032016102,1807.0,0.0,2371.2315558767964,31,0,0,0,0,0,0,0,0,3,120.0,1,,2,132368,2,3,3,0,1,,519.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1280.30097854449,558.0,78178.86606191238,1,1,1,2,100.0,10,1,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.023113663462053517,43432.703367729104,10,5,10,10_1,10_1,10_0_1 +32345,2,62.0,0.0,2,111,340.0,280.0,0.0,77,75,0.0,0.0,579.7681847465008,620.0,0.0,531.581133423141,20,0,0,0,0,0,0,0,0,0,,2,,2,132369,2,2,0,1,1,,0.0,601.0,41,0.0,2.0,3.0,2.0,1.5,2,2,904.601010787826,340.0,34494.75190498477,5,5,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01797374863596004,22996.501269989847,6,3,6,6_0,6_4,6_0_1 +32346,2,52.0,0.0,1,221,360.0,1700.0,0.0,0,52,0.0,331.081819252556,613.872195613942,2310.0,0.0,3227.4568814976415,10,2,2,2,1,1,1,2,2,2,25.0,1,,1,132370,2,3,3,0,1,,500.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,2198.14789790656,360.0,22171.0,0,1,1,2,85.0,1,2,7,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.10419015831491588,22171.0,6,3,6,6_1,6_1,6_1_0 +32347,2,56.0,0.0,9,111,1474.0,0.0,0.0,56,21,0.0,0.0,2513.465600930418,1474.0,0.0,0.0,50,2,2,2,1,2,2,2,2,0,,2,2006.0,6,132371,2,1,0,1,1,744.0,0.0,500.0,43,3.0,1.0,3.0,6.0,3.1,4,4,739.870665974659,1474.0,15322.301280175168,1,1,2,3,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,0,0.09619964867204,4942.67783231457,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +32348,2,59.0,0.0,1,111,1200.0,0.0,0.0,0,11,0.0,0.0,2046.2406520464733,1340.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132372,2,3,4,0,1,,400.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,382.198428938211,1200.0,11273.167004367519,0,1,0,1,100.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11886633095037527,7515.444669578345,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +32349,2,83.0,0.0,1,111,260.0,1124.0,0.0,78,78,0.0,0.0,443.3521412767359,1384.0,0.0,2133.918549884323,70,0,0,0,0,0,0,0,0,0,,1,,1,132373,2,1,2,0,1,,340.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,187.263355984716,260.0,22558.45419376411,5,5,0,1,60.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06135172153695631,15038.969462509407,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +32350,2,63.0,0.0,1,111,420.0,350.0,0.0,77,45,0.0,0.0,716.1842282162656,770.0,0.0,664.4764167789261,42,0,0,0,0,0,0,0,0,3,30.0,2,,1,132374,2,1,0,1,1,,360.0,549.0,42,1.0,0.0,4.0,2.0,1.5,2,2,310.181053785251,420.0,58400.14494745131,5,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01318489878223503,38933.42996496754,9,5,9,9_0,9_4,9_1_0 +32351,2,67.0,0.0,1,111,1200.0,0.0,0.0,35,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,132375,2,1,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,745.8321749242,1200.0,53499.55638341677,1,5,0,1,65.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02243009253011233,35666.37092227785,9,5,9,9_0,9_4,9_1_0 +32352,2,56.0,0.0,6,111,880.0,0.0,0.0,0,52,0.0,0.0,1500.5764781674138,910.0,41.567676761895626,0.0,60,2,2,2,2,2,2,2,1,2,15.0,1,,4,132376,2,1,2,0,1,,194.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1526.14802121978,880.0,34778.48675871323,0,1,0,1,140.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.02616560077249517,34778.48675871323,9,5,9,9_1,9_3,9_0_0 +32353,2,67.0,0.0,2,111,0.0,0.0,0.0,74,31,0.0,0.0,0.0,3101.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,132377,2,2,5,0,1,,203.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,518.035095327939,0.0,101913.53142213543,5,1,0,1,160.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03042775534050887,67942.35428142363,10,5,10,10_1,10_4,10_0_1 +32354,2,35.0,0.0,1,111,300.0,530.0,0.0,0,48,0.0,0.0,511.56016301161833,830.0,0.0,1006.2071454080882,50,0,0,0,0,0,0,0,0,0,,1,,1,132378,2,1,1,0,1,,450.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,240.156633202865,300.0,47360.42664467473,0,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.017525179961471616,47360.42664467473,10,5,10,10_1,10_3,10_1_0 +32355,2,24.0,0.0,1,111,0.0,0.0,0.0,0,38,0.0,0.0,0.0,1140.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,15.0,1,,1,132379,2,2,1,0,1,,544.0,650.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1723.80402305195,0.0,24346.2207335232,0,1,2,3,44.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04682451590649929,24346.2207335232,7,4,7,7_1,7_3,7_1_0 +32356,2,55.0,0.0,6,111,1630.0,0.0,0.0,74,33,0.0,0.0,2779.4768856964597,1630.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,30.0,2,,4,132380,2,1,0,0,1,,0.0,,42,1.0,0.0,4.0,3.0,2.0,3,3,939.823457138788,1630.0,63594.62407912185,5,1,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025631097338857135,31797.312039560926,8,4,8,8_0,8_4,8_0_0 +32357,2,46.0,0.0,2,111,0.0,797.0,0.0,68,46,0.0,0.0,0.0,1918.0,0.0,1513.1077262080119,20,0,0,0,0,0,0,0,0,2,45.0,1,,2,132381,2,1,1,0,1,,390.0,,43,2.0,0.0,1.0,4.0,2.3,3,2,603.386095151696,0.0,26519.545590466794,4,1,0,1,100.0,10,8,1,0,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07232401450685036,11530.237213246433,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +32358,2,85.0,0.0,1,400,0.0,816.0,0.0,78,78,0.0,105.94618216081791,0.0,1494.0,0.0,1549.179303118868,71,0,0,0,0,0,0,0,0,0,,1,,1,132382,2,1,2,0,1,,100.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,178.723997787337,0.0,18763.318073936516,5,5,0,1,95.0,0,0,3,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07962344368479604,12508.878715957677,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +32359,2,72.0,0.0,1,112,300.0,0.0,0.0,78,78,1265.6194212439218,0.0,511.56016301161833,1872.0,515.4391918475058,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132383,2,2,1,0,1,,250.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,916.317287592097,300.0,26406.729967214153,5,5,0,1,75.0,8,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07089101915777615,17604.486644809436,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +32360,2,48.0,0.0,2,111,420.0,0.0,0.0,37,38,0.0,0.0,716.1842282162656,420.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,132384,2,1,0,1,1,,0.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,878.317516452255,420.0,93632.43089290292,4,1,1,2,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004485625290241555,44586.871853763296,10,5,10,10_0,10_4,10_0_1 +32361,2,48.0,0.0,2,112,400.0,,,0,11,0.0,0.0,,900.0,692.7946126982605,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,132385,2,2,0,0,2,,390.0,,22,5.0,0.0,4.0,5.0,3.0,5,5,118.62739206396417,400.0,30657.712356560132,0,1,0,1,90.0,7,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02935639781379246,10219.237452186711,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +32362,1,27.0,270.0,5,111,700.0,800.0,0.0,0,67,0.0,0.0,1193.6403803604428,1500.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,0,,2,,3,132386,2,2,0,0,1,,210.0,269.0,12,1.0,0.0,3.0,1.0,1.0,1,1,141.911680410959,700.0,4714.382744270859,0,4,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.31817526946085806,4714.382744270859,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +32363,2,28.0,0.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1810.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,1,,1,132387,1,3,3,0,1,,227.0,450.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1179.52632669153,0.0,18023.773210758787,0,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10042292359291179,18023.773210758787,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +32364,0,53.0,0.0,1,112,1400.0,,,0,72,0.0,0.0,,1400.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,1,132388,1,2,0,0,2,,270.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,110.42358429910371,1400.0,5141.357756075723,0,7,5,0,54.0,8,4,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.27230161105703465,5141.357756075723,1,1,1_0,1_1_0,1_2_0,1_1_0_0 +32365,2,63.0,0.0,5,400,934.0,0.0,0.0,78,48,912.3006661466603,0.0,1592.6573075095052,1859.0,83.13535352379125,0.0,42,0,0,0,0,0,0,0,0,2,40.0,1,,3,132389,2,1,2,0,1,,308.0,320.0,42,2.0,1.0,4.0,3.0,2.0,3,3,1222.61155579019,934.0,41065.07986348614,6,1,2,3,95.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04526960634631489,20532.53993174307,5,3,5,5_1,5_0,5_0_0 +32366,2,63.0,0.0,1,111,4591.0,0.0,0.0,74,31,0.0,0.0,7828.575694621133,4611.0,27.711784507930417,0.0,10,0,0,0,0,0,0,0,0,1,7.0,1,,1,132390,2,2,2,0,1,,395.0,,42,1.0,4.0,6.0,2.0,1.5,2,2,371.004805241688,4591.0,139843.0398571078,5,1,0,1,190.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03297268140560688,93228.69323807186,10,5,10,10_1,10_4,10_1_0 +32367,2,23.0,0.0,1,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,436.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,35.0,2,,1,132391,2,3,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1151.83141891131,0.0,31000.560764487695,0,1,1,2,23.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014064261718112349,31000.560764487695,8,4,8,8_0,8_4,8_1_0 +32368,1,27.0,94.0,7,112,0.0,0.0,1150.0,46,46,0.0,0.0,724.8660339769554,1150.0,0.0,1376.241969699383,50,0,0,0,0,0,0,0,0,0,,2,,5,132392,2,1,0,0,1,,0.0,323.0,43,2.0,0.0,2.0,2.0,1.5,2,2,695.987267008638,0.0,37950.75841412976,1,1,2,3,52.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0303024247223432,25300.50560941984,7,4,7,7_0,7_2,7_0_0 +32369,1,27.0,406.0,9,211,548.0,,,52,63,0.0,0.0,,680.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,2007.0,6,132393,1,1,0,0,1,,400.0,493.0,43,2.0,0.0,4.0,4.0,2.1,2,2,93.88785905833714,548.0,17905.852411977292,4,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03797641041345485,8526.596386655852,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32370,2,50.0,0.0,2,400,0.0,0.0,0.0,0,44,0.0,0.0,0.0,2280.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,132394,2,2,2,0,2,,0.0,360.0,12,1.0,0.0,6.0,1.0,1.0,1,1,1908.56566034451,0.0,12104.858554405137,0,1,2,3,80.0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.18835412159114195,12104.858554405137,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +32371,2,42.0,0.0,5,111,310.0,240.0,0.0,63,64,0.0,0.0,528.612168445339,550.0,0.0,455.6409715055494,71,0,0,0,0,0,0,0,0,2,1.0,2,,3,132395,2,1,0,1,1,,353.0,,43,3.0,0.0,3.0,4.0,2.3,3,3,880.690270148002,310.0,57950.66572895261,1,1,0,1,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.009490831435353394,25195.941621283746,7,4,7,7_0,7_4,7_0_0 +32372,2,72.0,0.0,1,111,0.0,0.0,1800.0,86,74,0.0,0.0,1134.5729227465388,1800.0,0.0,2154.117865616425,12,0,0,0,0,0,0,0,0,0,,2,,1,132396,2,2,0,0,2,,0.0,,41,0.0,5.0,8.0,2.0,1.5,2,2,731.137693102196,0.0,109219.55187290077,6,5,0,1,186.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.016480565696649872,72813.03458193385,10,5,10,10_0,10_4,10_1_0 +32373,2,72.0,0.0,2,111,228.0,130.0,0.0,0,75,0.0,0.0,388.7857238888299,358.0,0.0,246.80552623217258,42,1,2,2,2,1,2,2,2,0,,2,,2,132397,1,1,0,1,1,693.0,0.0,203.0,11,0.0,1.0,2.0,1.0,1.0,1,1,336.320373670436,228.0,16381.691434439428,0,5,2,3,59.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021853665198904446,16381.691434439428,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +32374,2,53.0,0.0,8,111,496.0,597.0,0.0,56,64,0.0,0.0,845.7794695125424,1093.0,0.0,1133.406916620054,71,0,0,0,0,0,0,0,0,2,10.0,2,2001.0,6,132398,2,1,0,0,1,,0.0,593.0,43,3.0,0.0,4.0,5.0,3.0,5,4,658.311037025426,496.0,41230.14096179971,1,1,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026509732309978745,13743.380320599905,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +32375,1,37.0,535.0,2,111,1800.0,0.0,0.0,0,55,1265.6194212439218,595.9472746546007,3069.36097806971,3450.0,0.0,0.0,71,2,2,1,1,1,2,2,2,0,,1,,2,132399,1,3,3,0,1,,190.0,810.0,32,1.0,0.0,5.0,5.0,2.5999999999999996,3,1,246.389195824773,1800.0,21188.075691505597,0,4,2,3,110.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.1628274341771925,8149.259881348307,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +32376,2,68.0,0.0,6,112,2500.0,0.0,0.0,75,74,0.0,0.0,4263.001358430153,2500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,,4,132400,2,1,2,0,1,,240.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,864.466799918602,2500.0,56741.490211666125,5,5,0,1,230.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04405947025138224,37827.66014111075,9,5,9,9_1,9_0,9_0_0 +32377,1,30.0,208.0,2,111,160.0,480.0,0.0,0,85,0.0,0.0,272.8320869395298,640.0,0.0,911.2819430110987,71,0,0,0,0,0,0,0,0,0,,2,,2,132401,1,3,0,0,1,,0.0,247.0,31,0.0,0.0,3.0,2.0,1.3,1,1,333.658970567267,160.0,11314.76001495971,0,7,2,3,47.0,8,6,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05656328540365237,8703.661549969007,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32378,2,68.0,0.0,9,112,2000.0,0.0,0.0,71,13,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,3.0,1,2005.0,6,132402,2,1,1,0,1,,120.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,731.72664114454,2000.0,27064.99531241399,5,1,0,1,180.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0738961886715219,18043.330208275995,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +32379,2,23.0,0.0,1,111,1300.0,0.0,0.0,0,42,0.0,0.0,2216.7607063836795,1300.0,0.0,0.0,10,2,2,2,2,1,2,2,2,2,15.0,2,,1,132403,1,2,0,0,1,,250.0,430.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2992.17986393368,1300.0,26151.315216464696,0,1,2,3,50.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,0,0.04971069291312463,26151.315216464696,7,4,7,7_0,7_2,7_1_0 +32380,2,78.0,0.0,1,112,880.0,0.0,0.0,78,78,0.0,662.163638505112,1500.5764781674138,1470.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132404,2,1,2,0,1,,233.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1914.00188245264,880.0,45919.54197681153,5,5,0,1,200.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03201251442669705,30613.027984541022,8,4,8,8_1,8_0,8_1_0 +32381,2,42.0,0.0,7,111,0.0,,,0,46,0.0,0.0,,258.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,5,132405,2,1,0,0,1,,275.0,400.0,12,1.0,1.0,1.0,1.0,1.0,1,1,173.9325543670062,0.0,23988.336318072208,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010755226897733183,23988.336318072208,6,3,6,6_0,6_2,6_0_0 +32382,2,38.0,0.0,9,112,1400.0,0.0,0.0,47,43,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,2010.0,6,132406,2,1,1,0,1,,342.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1129.30770626438,1400.0,56505.5358883234,1,1,1,2,88.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02477633346875847,26907.39804205876,7,4,7,7_1,7_1,7_0_0 +32383,2,32.0,0.0,1,300,0.0,0.0,0.0,43,37,0.0,0.0,0.0,4119.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,50.0,1,,1,132407,2,2,1,0,1,,0.0,600.0,43,2.0,0.0,9.0,3.0,1.8,2,2,1707.17874699854,0.0,45193.26337216691,1,1,2,3,220.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09114190241319817,25107.368540092728,7,4,7,7_1,7_0,7_1_0 +32384,2,69.0,0.0,6,111,1378.0,0.0,0.0,75,11,0.0,0.0,2349.7663487667005,1478.0,138.5589225396521,0.0,31,0,0,0,0,0,0,0,0,0,,1,,4,132408,2,1,2,0,1,,0.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,894.496766195825,1378.0,66135.28989803894,5,1,0,1,139.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022348129149787337,44090.193265359296,10,5,10,10_1,10_3,10_0_0 +32385,2,29.0,0.0,2,111,0.0,0.0,0.0,43,63,0.0,0.0,0.0,2011.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,132409,2,1,0,0,1,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1536.65832246114,0.0,34260.88718409449,1,1,2,3,60.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.05869667032246615,22840.591456062994,6,3,6,6_0,6_3,6_0_1 +32386,1,33.0,362.0,2,111,528.0,756.0,0.0,0,85,0.0,0.0,900.3458869004482,1284.0,0.0,1435.2690602424805,71,0,0,0,0,0,0,0,0,0,,1,,2,132410,2,1,2,0,1,,252.0,303.0,31,0.0,0.0,5.0,5.0,2.2,1,1,187.537353226204,528.0,20601.29284710621,0,6,2,3,80.0,7,6,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06232618552288376,9364.224021411914,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +32387,2,60.0,0.0,1,112,1127.0,0.0,0.0,21,75,0.0,476.7578197236806,1921.7610123803129,1547.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132411,2,1,2,0,1,,344.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,1151.08770050377,1127.0,26170.112933221586,1,5,0,1,110.0,4,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05911323363210117,17446.74195548106,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +32388,2,38.0,0.0,5,112,1350.0,1350.0,0.0,46,47,0.0,0.0,2302.0207335522828,2700.0,0.0,2562.980464718715,31,0,0,0,0,0,0,0,0,2,10.0,1,,3,132412,2,1,2,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,980.847486057503,1350.0,72504.92293011461,1,1,1,2,116.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03723885069986836,34526.15377624505,9,5,9,9_1,9_1,9_0_0 +32389,2,52.0,0.0,9,112,400.0,0.0,0.0,0,38,2109.365702073203,0.0,682.0802173488245,2430.0,41.567676761895626,0.0,50,2,2,2,2,1,2,2,2,2,5.0,1,2006.0,6,132413,2,2,1,0,1,,176.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,867.591094241781,400.0,25692.47660632176,0,1,1,2,150.0,9,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.09458021650595126,25692.47660632176,7,4,7,7_1,7_0,7_0_0 +32390,1,80.0,397.0,2,111,230.0,,,85,78,0.0,0.0,,380.0,207.83838380947813,,71,0,0,0,0,0,0,0,0,0,,8,,2,132414,2,1,0,0,2,,350.0,466.0,41,0.0,0.0,3.0,4.0,2.1,2,2,43.660894228597364,230.0,17192.35030647174,6,5,2,3,52.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.022102853491587828,8186.833479272257,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32391,2,31.0,0.0,2,111,540.0,,,0,47,0.0,0.0,,584.0,60.965925917446924,,50,0,0,0,0,0,0,0,0,0,,1,,2,132415,2,3,0,0,2,,463.0,,22,1.0,1.0,3.0,2.0,1.5,2,2,117.23531937151758,540.0,29728.04194552252,0,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.019644751614324163,19818.694630348346,5,3,5,5_1,5_3,5_0_1 +32392,2,48.0,0.0,2,111,1255.0,40.0,0.0,22,22,0.0,0.0,2140.0266819319368,1295.0,0.0,75.94016191759155,50,0,0,0,0,0,0,0,0,0,,2,,2,132416,2,2,0,0,1,,337.0,1052.0,43,2.0,2.0,4.0,2.0,1.5,2,2,1743.23701426265,1255.0,87046.0,1,1,2,3,60.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014877191370080187,58030.666666666664,10,5,10,10_0,10_2,10_0_1 +32393,0,71.0,0.0,7,111,1190.0,0.0,0.0,0,77,0.0,0.0,2029.1886466127528,1190.0,0.0,0.0,41,2,2,2,2,1,2,2,2,0,,2,,5,132417,2,2,0,0,1,,0.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,802.463692462319,1190.0,63983.22311624589,0,5,0,1,150.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.01859862542151067,63983.22311624589,10,5,10,10_0,10_3,10_0_0 +32394,2,65.0,0.0,7,111,0.0,,,47,75,0.0,0.0,,916.0,0.0,,20,0,0,0,0,0,0,0,0,0,,1,,5,132418,2,1,0,0,1,,423.0,,42,1.0,2.0,5.0,3.0,2.0,3,2,128.8117421933129,0.0,100706.67690337179,4,5,0,1,169.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009095722628986194,50353.33845168589,10,5,10,10_1,10_2,10_0_0 +32395,2,71.0,0.0,2,120,250.0,0.0,0.0,77,78,632.8097106219609,132.4327277010224,426.3001358430153,1070.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132419,2,1,2,0,1,,200.0,,41,0.0,6.0,5.0,2.0,1.5,2,2,1621.63272259357,250.0,21921.09273224869,5,5,0,1,120.0,0,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04881143531799832,14614.061821499126,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +32396,2,41.0,0.0,5,111,2000.0,0.0,0.0,48,46,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,15.0,2,,3,132420,1,1,0,0,1,,852.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,903.676898130754,2000.0,176219.15234178436,1,1,1,2,115.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011349504145388902,117479.4348945229,10,5,10,10_0,10_4,10_0_0 +32397,1,47.0,150.0,1,120,0.0,0.0,0.0,56,63,0.0,0.0,0.0,970.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,132421,2,2,2,0,1,,570.0,560.0,43,2.0,4.0,4.0,3.0,1.8,3,2,2592.5870792946,0.0,21857.603278693503,4,1,2,3,80.0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.04437815013988944,12143.1129326075,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +32398,2,74.0,0.0,1,221,0.0,0.0,0.0,72,90,0.0,0.0,0.0,4724.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132422,1,2,5,0,2,,335.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,2194.29631005337,0.0,19919.060726114207,5,5,0,1,116.0,1,2,7,0,0,0,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.23715977700729435,13279.37381740947,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +32400,2,31.0,0.0,2,112,888.0,0.0,0.0,0,46,0.0,0.0,1514.2180825143903,888.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,132424,1,2,0,0,2,,240.0,600.0,12,1.0,0.0,2.0,1.0,1.0,1,1,940.847146919866,888.0,29197.61411620509,0,1,2,3,48.0,10,0,1,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030413443936405316,29197.61411620509,8,4,8,8_0,8_0,8_0_1 +32401,2,23.0,0.0,9,112,0.0,0.0,0.0,69,42,0.0,0.0,0.0,1085.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,1,2005.0,6,132425,2,1,2,0,1,,265.0,670.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1068.98596275057,0.0,27162.000000000004,1,4,2,3,90.0,6,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03994551211251012,18108.000000000004,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +32402,1,27.0,30.0,1,120,2594.0,0.0,0.0,85,21,0.0,211.89236432163582,4423.290209507127,2808.0,74.82181817141213,0.0,71,2,2,2,2,1,2,2,1,0,,2,,1,132426,1,2,0,0,1,,543.0,550.0,42,1.0,0.0,4.0,2.0,1.5,2,2,225.488828070721,2594.0,21026.484179912783,7,1,2,3,59.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0.13354586415747835,14017.656119941856,3,2,3_1,3_0_1,3_0_1,3_1_0_1 +32403,2,54.0,0.0,1,112,2580.0,0.0,0.0,72,52,0.0,0.0,4399.417401899917,2580.0,0.0,0.0,31,0,0,0,0,0,0,0,0,4,50.0,1,,1,132427,2,2,1,0,1,,655.0,,42,2.0,1.0,6.0,3.0,2.0,3,3,544.824126234948,2580.0,89352.16364125586,5,1,0,1,100.0,10,1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028874510642613666,44676.08182062793,10,5,10,10_1,10_1,10_1_0 +32404,2,63.0,0.0,1,112,3034.0,0.0,0.0,74,75,0.0,0.0,5173.578448590833,3168.0,185.6689562031338,0.0,20,0,0,0,0,0,0,0,0,0,,1,,1,132428,2,1,1,0,2,,244.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,346.068034039829,3034.0,88121.35342351966,5,5,0,1,150.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0359504237840548,58747.568949013104,10,5,10,10_1,10_0,10_1_0 +32405,2,63.0,0.0,7,111,1008.0,,,0,74,0.0,0.0,,1146.0,191.2113131047199,,41,0,0,0,0,0,0,0,0,0,,1,,5,132429,2,2,0,0,2,,300.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,57.67233401594117,1008.0,40063.59745635416,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028604520631190653,40063.59745635416,9,5,9,9_1,9_2,9_0_0 +32406,1,23.0,263.0,6,111,440.0,,,0,85,0.0,0.0,,572.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,2,,4,132430,1,3,0,0,2,,360.0,268.0,31,0.0,0.0,2.0,4.0,1.9,1,1,162.9735200782467,440.0,14835.616732266382,0,6,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03855586257873202,7808.2193327717805,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32407,2,68.0,0.0,2,111,800.0,3500.0,0.0,74,74,0.0,0.0,1364.160434697649,4300.0,0.0,6644.764167789262,12,0,0,0,0,0,0,0,0,0,,1,,2,132431,2,1,1,0,2,,43.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,754.32267682196,800.0,128503.090655563,5,5,0,1,145.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03346223019277902,85668.72710370868,10,5,10,10_1,10_4,10_0_1 +32408,1,55.0,186.0,9,221,660.0,,,0,52,0.0,0.0,,936.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,132432,1,1,0,0,2,,718.0,513.0,22,2.0,1.0,4.0,3.0,1.8,2,2,124.66809833357617,660.0,35289.50067746096,0,1,2,3,60.0,1,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.026523469644834437,19605.278154144977,5,3,5,5_0,5_1,5_0_0 +32409,1,44.0,400.0,7,211,462.0,,,0,85,0.0,0.0,,506.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,2,,5,132433,1,2,0,0,2,,120.0,550.0,31,0.0,2.0,3.0,3.0,1.6,1,1,122.16313256034915,462.0,9710.636363636364,0,6,2,3,65.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05210781055449975,6069.147727272727,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32410,0,33.0,0.0,9,111,240.0,,,0,85,0.0,0.0,,240.0,0.0,,41,0,0,0,0,0,0,0,0,0,,1,2007.0,6,132434,1,1,0,0,1,,120.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,114.77741184666526,240.0,10646.378039114934,0,7,5,0,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022542877879992314,10646.378039114934,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +32411,2,73.0,0.0,2,111,441.0,1100.0,0.0,90,75,0.0,0.0,751.9934396270789,1541.0,0.0,2088.354452733768,31,0,0,0,0,0,0,0,0,0,,1,,2,132435,2,1,1,0,2,,400.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1085.28448893662,441.0,58921.808627112405,5,5,0,1,90.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02615330445391184,39281.20575140827,9,5,9,9_1,9_3,9_0_1 +32412,2,36.0,0.0,2,111,860.0,1151.0,0.0,37,38,0.0,0.0,1466.4724672999725,2011.0,0.0,2185.178159178697,10,0,0,0,0,0,0,0,0,2,4.0,1,,2,132436,2,1,3,0,1,,450.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,299.395044145758,860.0,77577.22145831783,1,1,1,2,145.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0259225577069747,32323.842274299095,8,4,8,8_1,8_3,8_0_1 +32413,2,79.0,0.0,5,111,550.0,2070.0,0.0,77,75,0.0,0.0,937.8602988546337,2620.0,0.0,3929.9033792353634,70,0,0,0,0,0,0,0,0,0,,1,,3,132437,2,1,2,0,2,,624.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,958.402403786955,550.0,38585.09026266247,5,5,0,1,95.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06790187562513722,25723.393508441644,7,4,7,7_1,7_3,7_0_0 +32414,2,67.0,0.0,1,111,430.0,700.0,0.0,86,86,0.0,0.0,733.2362336499863,1130.0,0.0,1328.9528335578523,70,0,0,0,0,0,0,0,0,0,,1,,1,132438,2,2,2,0,1,,549.0,416.0,41,0.0,1.0,4.0,2.0,1.5,2,2,197.715346002562,430.0,22728.194880029776,6,5,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.049717982706707575,15152.12992001985,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +32415,2,39.0,0.0,5,111,1400.0,0.0,0.0,46,42,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,3,132439,2,2,5,0,1,,200.0,700.0,43,2.0,0.0,6.0,4.0,2.1,2,2,696.611876578474,1400.0,54066.99176269024,1,1,2,3,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025893802380292437,25746.186553662017,7,4,7,7_1,7_4,7_0_0 +32416,1,51.0,577.0,7,111,1020.0,,,85,63,0.0,26.486545540204478,,1316.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,5,132440,2,1,0,0,2,,300.0,750.0,42,1.0,0.0,5.0,8.0,3.6999999999999993,4,2,107.94822977054872,1020.0,39687.89341602002,6,1,2,3,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.033158726420808124,10726.457680005413,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +32417,1,54.0,67.0,2,111,450.0,280.0,0.0,54,53,0.0,0.0,767.3402445174275,730.0,0.0,531.581133423141,50,0,0,0,0,0,0,0,0,0,,2,,2,132441,2,1,0,1,1,754.0,600.0,375.0,43,2.0,0.0,4.0,5.0,2.4,2,2,250.188041294186,450.0,29699.564945869097,4,4,2,3,76.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.024579484626475495,12374.818727445458,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +32418,2,31.0,0.0,1,112,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2107.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,1,,1,132442,2,1,2,0,1,,118.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1813.89173474103,0.0,20840.39905450003,0,1,1,2,75.0,9,5,8,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10110171088806666,20840.39905450003,5,3,5,5_1,5_2,5_1_0 +32419,2,65.0,0.0,1,111,283.0,1000.0,0.0,56,75,0.0,0.0,482.5717537742933,1283.0,0.0,1898.504047939789,70,1,2,2,2,1,2,2,2,0,,2,,1,132443,2,2,0,0,1,,540.0,296.0,42,1.0,4.0,3.0,2.0,1.5,2,2,314.087095465104,283.0,33390.896301123605,1,5,2,3,47.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0.038423646626006475,22260.597534082404,6,3,6,6_0,6_3,6_1_0 +32420,2,77.0,0.0,2,300,21.0,,,0,77,0.0,0.0,,228.0,286.8169696570798,,70,0,0,0,0,0,0,0,0,0,,1,,2,132444,2,1,0,0,2,,225.0,,21,1.0,5.0,5.0,2.0,1.5,2,2,64.08206515815695,21.0,30037.0,0,5,0,1,76.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007590638212870792,20024.666666666668,5,3,5,5_1,5_0,5_0_1 +32421,2,49.0,0.0,2,111,900.0,0.0,0.0,43,43,0.0,0.0,1534.680489034855,900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,132445,2,1,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,1269.42031899469,900.0,93540.72077068825,1,1,0,1,130.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009621478138984176,37416.288308275296,9,5,9,9_0,9_4,9_0_1 +32422,1,84.0,67.0,2,112,289.0,0.0,0.0,0,77,0.0,0.0,492.80295703452566,613.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,1,,2,132446,2,2,5,0,1,,180.0,210.0,11,0.0,4.0,3.0,1.0,1.0,1,1,749.880369753876,289.0,15457.989530075767,0,5,2,3,40.0,10,4,2,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,1,0.0396558684948854,15457.989530075767,3,2,3_1,3_1_1,3_2_1,3_0_1_1 +32423,2,57.0,0.0,5,111,532.0,,,81,71,0.0,0.0,,658.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,3,132447,1,2,0,0,2,,328.0,,42,1.0,4.0,4.0,2.0,1.5,2,2,99.6971601541575,532.0,10598.0,4,7,0,1,77.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.062087186261558784,7065.333333333333,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +32424,2,56.0,0.0,2,111,678.0,900.0,0.0,67,62,0.0,264.8654554020448,1156.1259684062575,1778.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,2,20.0,1,,2,132448,2,2,2,0,1,,200.0,,43,2.0,3.0,3.0,2.0,1.5,2,2,1121.91964958717,678.0,27830.797494878585,1,1,1,2,78.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0638860600501005,18553.864996585722,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +32425,2,68.0,0.0,2,111,800.0,,,0,75,0.0,0.0,,884.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,1,,2,132449,2,1,0,0,2,,300.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,124.36951732511449,800.0,23244.22356995677,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03803095411380283,23244.22356995677,6,3,6,6_1,6_2,6_0_1 +32426,1,25.0,260.0,1,400,0.0,0.0,0.0,68,68,0.0,0.0,0.0,1105.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,20.0,8,,1,132450,1,1,0,1,2,,450.0,415.0,43,2.0,0.0,6.0,2.0,1.5,2,2,1992.86056177725,0.0,19990.192340684145,1,1,2,3,80.0,0,0,8,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05527710695164739,13326.79489378943,3,2,3_1,3_0_1,3_0_1,3_1_0_1 +32427,1,38.0,511.0,2,111,360.0,345.0,0.0,0,56,0.0,0.0,613.872195613942,705.0,0.0,654.9838965392272,71,2,2,1,2,1,2,2,2,3,15.0,2,,2,132451,1,2,0,1,2,853.0,0.0,700.0,32,1.0,0.0,4.0,6.0,2.8999999999999995,3,1,235.543189168278,360.0,15514.709814194941,0,1,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.045440746777936594,5349.899935929291,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +32428,1,41.0,196.0,5,111,500.0,0.0,0.0,85,63,0.0,0.0,852.6002716860306,500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,45.0,2,,3,132452,2,1,0,1,1,600.0,0.0,332.0,42,1.0,0.0,3.0,4.0,2.1,2,2,663.315194283623,500.0,22071.820597329446,6,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.022653319321583147,10510.390760633069,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +32429,2,58.0,0.0,1,111,700.0,2500.0,0.0,75,48,0.0,0.0,1193.6403803604428,3200.0,0.0,4746.260119849472,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,132453,2,1,2,0,1,,600.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,712.013028059035,700.0,62087.53199420059,7,1,0,1,185.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05154013853053303,41391.687996133725,9,5,9,9_1,9_4,9_1_0 +32430,1,36.0,418.0,9,111,600.0,,,0,67,0.0,0.0,,852.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,2007.0,6,132454,2,1,0,0,2,,275.0,404.0,32,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,154.58640831016882,600.0,20864.775850019498,0,4,2,3,68.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.04083437110105373,7194.750293110173,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32431,2,59.0,0.0,6,211,400.0,,,78,65,0.0,0.0,,488.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,4,132455,2,1,0,0,1,,160.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,86.04982698941411,400.0,12349.72805223628,7,4,0,1,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03951504016411384,8233.152034824187,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +32432,2,33.0,0.0,9,111,0.0,,,0,46,0.0,0.0,,197.0,0.0,,20,0,0,0,0,0,0,0,0,2,5.0,2,2006.0,6,132456,2,3,0,0,2,,572.0,485.0,12,1.0,1.0,2.0,1.0,1.0,1,1,191.1006024623521,0.0,35118.97744325168,0,1,2,3,36.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005609502734478242,35118.97744325168,9,5,9,9_0,9_2,9_0_0 +32433,2,60.0,0.0,9,112,7.0,7.0,0.0,0,54,0.0,0.0,11.936403803604428,14.0,0.0,13.289528335578524,50,0,0,0,0,0,0,0,0,4,25.0,2,2007.0,6,132457,2,1,0,0,1,,120.0,393.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1372.13077378232,7.0,32277.248109210825,0,1,2,3,50.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00043374205733495843,32277.248109210825,8,4,8,8_0,8_1,8_0_0 +32434,0,32.0,0.0,9,111,310.0,690.0,0.0,0,90,0.0,0.0,528.612168445339,1000.0,0.0,1309.9677930784544,20,0,0,0,0,0,0,0,0,2,18.0,2,2006.0,6,132458,2,1,0,0,1,,245.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1364.11833155565,310.0,23072.956975682107,0,1,5,0,64.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.04334078207028065,23072.956975682107,6,3,6,6_0,6_3,6_0_0 +32435,2,49.0,0.0,2,111,650.0,,,0,52,0.0,165.540909626278,,1060.0,394.8929292380085,,71,0,0,0,0,0,0,0,0,0,,1,,2,132459,2,3,0,0,2,,980.0,,22,2.0,2.0,4.0,4.0,2.5,4,4,79.33552879834102,650.0,48457.92062067961,0,1,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021874648899970355,19383.168248271842,5,3,5,5_1,5_2,5_0_1 +32436,2,56.0,0.0,6,111,1470.0,0.0,0.0,54,77,0.0,0.0,2506.64479875693,1581.0,153.80040401901383,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132460,2,1,2,0,1,,202.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,2405.24880739321,1470.0,35958.28961882528,1,7,0,1,100.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04396760849193165,23972.193079216853,6,3,6,6_1,6_3,6_0_0 +32437,1,38.0,254.0,7,111,320.0,,,0,56,0.0,0.0,,386.0,91.44888887617039,,43,0,0,0,0,0,0,0,0,0,,2,,5,132461,1,1,0,0,2,,400.0,303.0,12,1.0,0.0,2.0,1.0,1.0,1,1,137.0785898057142,320.0,4881.928254784121,0,4,2,3,57.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.0790671185349218,4881.928254784121,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32438,2,76.0,0.0,2,112,548.0,0.0,0.0,0,78,2019.717659735092,0.0,934.4498977678895,2591.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132462,2,1,2,0,1,,234.0,,21,1.0,2.0,6.0,2.0,1.5,2,2,1190.43635709522,548.0,62582.351144907734,0,5,0,1,85.0,4,0,7,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04140144869278896,41721.56742993849,9,5,9,9_1,9_0,9_0_1 +32439,2,50.0,0.0,8,112,714.0,,,0,68,0.0,0.0,,1092.0,523.7527271998849,,71,0,0,0,0,0,0,0,0,2,20.0,1,2000.0,6,132463,1,2,0,0,1,,600.0,,32,1.0,0.0,3.0,2.0,1.5,2,1,98.85291139547901,714.0,23423.434262948205,0,1,0,1,41.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04661997842593705,15615.62284196547,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +32440,1,45.0,346.0,2,111,127.0,310.0,0.0,0,85,0.0,0.0,216.56046900825177,437.0,0.0,588.5362548613346,70,1,2,2,2,1,2,2,2,0,,2,,2,132464,1,1,0,1,1,1312.0,258.0,324.0,31,0.0,1.0,3.0,2.0,1.5,2,2,465.446908563877,127.0,8334.7562895236,0,7,2,3,75.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.05243104715002748,5556.504193015734,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32441,2,27.0,0.0,1,111,200.0,0.0,0.0,0,64,0.0,0.0,341.04010867441224,200.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,40.0,2,,1,132465,2,1,0,1,1,,0.0,420.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1039.02512893035,200.0,9271.2263351394,0,1,3,4,18.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.021572119239713593,9271.2263351394,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +32442,1,42.0,186.0,8,120,336.0,,,0,68,0.0,0.0,,612.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,2,1999.0,6,132466,2,1,0,0,2,,600.0,402.0,32,1.0,0.0,3.0,3.0,1.8,2,1,73.94546130093956,336.0,24516.48987882093,0,1,2,3,78.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024962790473879736,13620.272154900515,3,2,3_1,3_0_1,3_0_1,3_0_0_1 +32443,2,42.0,0.0,1,111,440.0,1000.0,0.0,63,54,0.0,0.0,750.2882390837069,1440.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,10.0,1,,1,132467,2,1,3,0,1,,522.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,224.188493690759,440.0,54600.525813180124,1,1,1,2,108.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.026373372390717815,22750.21908882505,6,3,6,6_1,6_3,6_1_0 +32444,1,73.0,149.0,6,111,324.0,,,0,77,0.0,0.0,,408.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,0,,2,,4,132468,2,1,0,0,2,,187.0,468.0,11,0.0,7.0,4.0,1.0,1.0,1,1,154.7561180377142,324.0,11436.756639296544,0,5,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.035674449747240176,11436.756639296544,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +32445,2,44.0,0.0,7,111,278.0,,,0,43,0.0,0.0,,324.0,63.73710436823996,,44,0,0,0,0,0,0,0,0,2,10.0,2,,5,132469,1,1,0,0,2,,300.0,277.0,12,1.0,0.0,2.0,1.0,1.0,1,1,119.06218814803664,278.0,29918.77760438992,0,1,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01082931944226425,29918.77760438992,8,4,8,8_0,8_2,8_0_0 +32446,2,68.0,0.0,7,111,2054.0,0.0,0.0,74,74,0.0,105.94618216081791,3502.4819160862135,2134.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,132470,2,1,2,0,1,,414.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,591.173667160479,2054.0,104402.97616484159,5,5,0,1,110.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020440030336210273,69601.98410989439,10,5,10,10_1,10_4,10_0_0 +32447,1,52.0,89.0,2,111,660.0,360.0,0.0,78,67,0.0,0.0,1125.4323586255605,1020.0,0.0,683.461457258324,50,2,1,2,2,1,2,2,2,2,25.0,2,,2,132471,1,2,0,1,2,659.0,0.0,545.0,42,1.0,0.0,4.0,4.0,2.3,3,2,234.890223323764,660.0,25055.404237558356,7,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04070978022661505,10893.654016329721,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +32448,2,79.0,0.0,6,111,793.0,,,77,78,0.0,33.1081819252556,,1091.0,378.2658585332502,,70,0,0,0,0,0,0,0,0,0,,1,,4,132472,2,2,0,0,2,,440.0,,41,0.0,7.0,4.0,2.0,1.5,2,2,90.51646990623132,793.0,26937.02924721733,5,5,0,1,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040501867892974996,17958.019498144888,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +32449,1,54.0,300.0,2,111,1400.0,2000.0,0.0,85,21,0.0,0.0,2387.2807607208856,3400.0,0.0,3797.008095879578,71,0,0,0,0,0,0,0,0,0,,2,,2,132473,2,1,0,1,1,852.0,0.0,250.0,42,4.0,0.0,4.0,7.0,4.0,7,6,324.765287038984,1400.0,41631.6062011413,6,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08166872024041175,10407.901550285325,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +32450,2,69.0,0.0,9,400,270.0,,,0,77,0.0,0.0,,338.0,94.22006732696343,,71,0,0,0,0,0,0,0,0,0,,1,2004.0,6,132474,2,1,0,0,1,,180.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,87.88178120351859,270.0,10431.94696143382,0,5,0,1,100.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.032400471479539,10431.94696143382,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +32451,2,34.0,0.0,1,112,770.0,0.0,0.0,63,63,1582.0242765549024,0.0,1313.0044183964872,2270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,1,132475,2,1,1,0,1,,330.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,879.992699346214,770.0,47612.81939610442,1,1,1,2,160.0,5,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04767623570272603,19838.674748376845,5,3,5,5_1,5_0,5_1_0 +32452,2,41.0,0.0,9,112,1503.0,0.0,0.0,46,62,0.0,331.081819252556,2562.916416688208,2112.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,132476,2,1,1,0,1,,764.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,558.374472835645,1503.0,64110.05073169675,1,1,1,2,140.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03294335249926425,30528.59558652226,8,4,8,8_1,8_2,8_0_0 +32453,1,48.0,410.0,1,112,200.0,0.0,0.0,85,62,2109.365702073203,0.0,341.04010867441224,2280.0,110.84713803172167,0.0,50,2,2,1,2,2,2,1,2,0,,1,,1,132477,2,1,1,0,1,,180.0,,42,1.0,0.0,5.0,8.0,3.6999999999999993,4,2,580.340034337408,200.0,21757.65966458289,6,4,1,2,120.0,10,1,1,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.10479068223092868,5880.448557995377,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +32454,2,75.0,0.0,6,112,30.0,30.0,0.0,77,75,0.0,0.0,51.156016301161834,60.0,0.0,56.95512143819367,71,0,0,0,0,0,0,0,0,0,,1,,4,132478,2,1,1,0,1,,280.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,2994.45275224194,30.0,32944.49718595488,5,5,0,1,90.0,10,1,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0018212449764016918,21962.998123969923,6,3,6,6_1,6_1,6_0_0 +32455,1,32.0,89.0,2,111,350.0,675.0,0.0,53,55,0.0,0.0,596.8201901802214,1025.0,0.0,1281.4902323593576,31,0,0,0,0,0,0,0,0,0,,2,,2,132479,2,1,0,0,1,,619.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1873.75282598605,350.0,37481.29478162786,1,4,1,2,104.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.027346974163294444,17848.23561029898,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +32456,2,33.0,0.0,5,111,700.0,0.0,0.0,42,46,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,132480,1,2,0,1,1,870.0,0.0,675.0,43,2.0,0.0,3.0,2.0,1.5,2,2,474.582027395026,700.0,33218.659552810306,1,1,2,3,72.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021072493876134742,22145.773035206872,6,3,6,6_0,6_3,6_0_0 +32457,1,64.0,232.0,9,112,510.0,0.0,0.0,0,56,0.0,0.0,869.6522771197511,580.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,1,7.0,2,2006.0,6,132481,2,2,0,0,1,,122.0,265.0,12,1.0,1.0,2.0,1.0,1.0,1,1,854.736501297624,510.0,7956.837665156263,0,1,2,3,47.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07289328052272252,7956.837665156263,1,1,1_1,1_0_1,1_0_1,1_0_0_1 +32458,1,50.0,258.0,2,111,298.0,380.0,0.0,0,56,0.0,0.0,508.1497619248742,678.0,0.0,721.4315382171199,50,0,0,0,0,0,0,0,0,0,,2,,2,132482,2,1,0,0,1,,0.0,319.0,32,1.0,2.0,3.0,2.0,1.5,2,1,117.877051359758,298.0,15581.792355521047,0,1,2,3,62.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04351232416210234,10387.861570347364,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32459,2,73.0,0.0,1,111,340.0,1300.0,0.0,77,74,0.0,0.0,579.7681847465008,1640.0,0.0,2468.055262321726,41,0,0,0,0,0,0,0,0,0,,1,,1,132483,2,2,4,0,1,,350.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,275.336537713939,340.0,39279.92504734362,5,5,0,1,120.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04175160716379494,26186.616698229078,7,4,7,7_1,7_2,7_1_0 +32460,2,68.0,0.0,2,111,660.0,0.0,0.0,77,75,2636.7071275915036,662.163638505112,1125.4323586255605,3810.0,207.83838380947813,0.0,70,2,2,2,2,1,2,2,2,0,,1,,2,132484,2,2,2,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,403.646760329635,660.0,20222.96231182507,5,5,0,1,80.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.1883996983850462,13481.974874550047,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +32461,1,36.0,319.0,2,111,229.0,74.0,0.0,52,67,0.0,0.0,390.490924432202,303.0,0.0,140.4892995475444,50,2,2,1,2,1,1,2,2,0,,2,,2,132485,1,1,0,1,1,636.0,0.0,284.0,43,2.0,0.0,4.0,4.0,2.1,2,2,1272.91409496892,229.0,31207.117310830272,1,4,2,3,63.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.009709323580965467,14860.53205277632,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +32462,2,43.0,0.0,2,111,264.0,912.0,0.0,43,35,0.0,0.0,450.1729434502241,1176.0,0.0,1731.4356917210876,71,2,2,2,2,1,2,2,2,2,10.0,2,,2,132486,1,1,0,1,2,,0.0,587.0,43,2.0,0.0,3.0,2.0,1.5,2,2,687.767727002424,264.0,35577.51445628374,1,1,2,3,70.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.03305458568346653,23718.342970855825,6,3,6,6_0,6_2,6_0_1 +32463,2,24.0,0.0,2,111,50.0,42.0,0.0,0,53,0.0,0.0,85.26002716860306,92.0,0.0,79.73717001347114,41,0,0,0,0,0,0,0,0,0,,2,,2,132487,1,1,0,1,2,439.0,374.0,202.0,12,1.0,0.0,2.0,1.0,1.0,1,1,464.226757998687,50.0,17569.294862240524,0,1,2,3,44.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005236408217937308,17569.294862240524,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +32464,1,71.0,232.0,1,111,300.0,300.0,0.0,0,78,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,2,2,2,2,1,2,2,2,0,,2,,1,132488,2,2,0,0,1,,0.0,304.0,11,0.0,2.0,2.0,1.0,1.0,1,1,185.988456815757,300.0,9497.073888097164,0,5,2,3,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,0.06317735410608837,9497.073888097164,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +32465,1,52.0,347.0,1,111,360.0,740.0,0.0,0,67,0.0,0.0,613.872195613942,1100.0,0.0,1404.892995475444,50,2,2,2,1,2,2,2,2,0,,8,,1,132489,1,3,0,0,1,,0.0,324.0,32,2.0,1.0,4.0,3.0,2.0,3,3,289.32815999918,360.0,14900.362171161532,0,4,2,3,40.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.07382370893836142,7450.181085580766,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +32466,2,67.0,0.0,5,112,495.0,1542.0,0.0,77,75,0.0,0.0,844.0742689691702,2037.0,0.0,2927.4932419231545,44,0,0,0,0,0,0,0,0,0,,1,,3,132490,2,2,1,0,1,,432.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,824.494478810758,495.0,37399.165808227874,5,5,0,1,100.0,10,0,1,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.054466455493824326,24932.77720548525,7,4,7,7_1,7_0,7_0_0 +32468,2,42.0,0.0,2,111,410.0,0.0,0.0,46,38,0.0,0.0,699.1322227825451,410.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,75.0,2,,2,132492,2,2,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,879.805628032568,410.0,85259.34000859069,1,1,0,1,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004808857304767883,40599.68571837652,9,5,9,9_0,9_4,9_0_1 +32469,2,65.0,0.0,2,111,360.0,,,0,52,0.0,0.0,,360.0,0.0,,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,132493,2,2,0,0,2,,433.0,515.0,22,2.0,0.0,1.0,2.0,1.5,2,2,29.72920421866855,360.0,35850.17210299283,0,1,2,3,20.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.010041792797138249,23900.114735328552,6,3,6,6_0,6_2,6_0_1 +32470,2,88.0,0.0,2,211,210.0,1072.0,0.0,78,75,0.0,0.0,358.0921141081328,1342.0,83.13535352379125,2035.1963393914539,70,0,0,0,0,0,0,0,0,0,,1,,2,132494,2,1,2,0,1,,145.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,692.80721482962,210.0,40493.77552298447,5,5,0,1,80.0,4,3,2,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0331408959196278,26995.850348656313,7,4,7,7_1,7_1,7_0_1 +32471,2,57.0,0.0,7,112,900.0,0.0,0.0,52,47,0.0,0.0,1534.680489034855,1050.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,1,5.0,1,,5,132495,2,1,1,0,1,,250.0,,43,3.0,0.0,5.0,3.0,2.0,3,3,1388.23894671576,900.0,73288.97047155815,1,1,0,1,145.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014326848818370045,36644.48523577907,9,5,9,9_1,9_0,9_0_0 +32472,1,64.0,125.0,2,111,454.0,474.0,0.0,0,56,0.0,0.0,774.1610466909158,928.0,0.0,899.89091872346,70,0,0,0,0,0,0,0,0,2,7.0,2,,2,132496,2,2,0,0,1,,0.0,274.0,12,1.0,1.0,4.0,1.0,1.0,1,1,329.288626706419,454.0,13176.363185230768,0,1,2,3,68.0,7,6,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.07042914550504986,13176.363185230768,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +32473,2,23.0,0.0,1,400,561.0,0.0,0.0,0,11,0.0,529.7309108040896,956.6175048317264,1027.0,91.44888887617039,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,132497,1,3,2,0,2,,374.0,110.0,12,1.0,0.0,3.0,1.0,1.0,1,1,996.004049612896,561.0,14336.355647647877,0,1,2,3,44.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07163605767331091,14336.355647647877,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +32474,1,33.0,353.0,2,112,180.0,,,0,85,0.0,0.0,,220.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,0,,1,,2,132498,2,3,0,0,2,,340.0,400.0,11,0.0,1.0,3.0,1.0,1.0,1,1,120.96331298547577,180.0,9402.2372528062,0,7,2,3,50.0,8,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.023398686300363097,9402.2372528062,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +32475,2,44.0,0.0,6,111,3052.0,0.0,0.0,37,31,0.0,0.0,5204.272058371531,3052.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,12.0,1,,4,132499,2,1,2,0,2,,1023.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,2561.98445947078,3052.0,398451.1052866622,1,1,0,1,179.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.007659660017266774,173239.61099420095,10,5,10,10_1,10_3,10_0_0 +32476,2,52.0,0.0,9,111,450.0,,,56,63,0.0,476.7578197236806,,936.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,132500,2,1,0,0,2,,162.0,,43,3.0,1.0,6.0,4.0,2.5,4,3,131.5296296312734,450.0,28087.27699459323,4,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033324697163779136,11234.910797837292,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +32477,2,60.0,0.0,8,400,372.0,,,85,75,0.0,0.0,,612.0,332.541414095165,,41,0,0,0,0,0,0,0,0,0,,1,2000.0,6,132501,2,1,0,0,2,,456.0,486.0,41,0.0,0.0,3.0,2.0,1.5,2,2,29.439856664399922,372.0,33597.17816390411,6,5,2,3,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01821581553707734,22398.118775936073,6,3,6,6_1,6_1,6_0_0 +32478,2,67.0,0.0,2,111,220.0,403.0,0.0,0,75,0.0,0.0,375.14411954185346,623.0,0.0,765.097131319735,33,0,0,0,0,0,0,0,0,0,,2,,2,132502,2,1,0,0,1,,150.0,340.0,11,0.0,4.0,3.0,1.0,1.0,1,1,425.965622210387,220.0,28951.370417222548,0,5,2,3,65.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.021518843185032468,28951.370417222548,8,4,8,8_0,8_3,8_0_1 +32479,2,45.0,0.0,7,111,600.0,,,42,37,0.0,0.0,,842.0,335.31259254595807,,31,0,0,0,0,0,0,0,0,2,70.0,1,,5,132503,2,2,0,0,2,,480.0,750.0,43,2.0,0.0,4.0,4.0,2.1,2,2,151.20307734663513,600.0,77599.53873615892,1,1,2,3,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010850579961084933,36952.16130293282,9,5,9,9_1,9_3,9_0_0 +32480,2,64.0,0.0,6,112,1026.0,0.0,0.0,0,77,0.0,0.0,1749.5357574997347,1026.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,132504,1,2,3,0,2,,240.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1009.81685799269,1026.0,14850.701672555462,0,5,0,1,102.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06908764465291754,14850.701672555462,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +32481,2,46.0,0.0,5,221,300.0,1200.0,0.0,45,53,0.0,178.78418239638023,511.56016301161833,1635.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,1,4.0,1,,3,132505,2,2,3,0,1,,770.0,,43,2.0,1.0,4.0,3.0,2.0,3,2,2777.3998236591,300.0,41916.45445444429,4,1,1,2,95.0,1,2,7,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03900616169187099,20958.227227222145,5,3,5,5_1,5_1,5_0_0 +32482,1,27.0,322.0,2,111,0.0,0.0,1680.0,0,56,0.0,0.0,1058.9347278967696,1680.0,0.0,2010.510007908664,71,2,1,2,2,1,2,2,2,0,,2,,2,132506,2,3,0,1,1,,0.0,407.0,22,3.0,2.0,5.0,6.0,3.5,6,6,221.835488600001,0.0,72310.01339108573,0,1,2,3,80.0,7,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.023233296762286425,20660.003826024495,5,3,5,5_0,5_2,5_0_1 +32483,2,45.0,0.0,7,211,0.0,,,34,31,0.0,0.0,,1735.0,0.0,,10,0,0,0,0,0,0,0,0,2,20.0,1,,5,132507,1,2,0,0,2,,286.0,1000.0,43,2.0,0.0,3.0,4.0,2.1,2,2,49.5881505260628,0.0,34099.82880079204,1,1,2,3,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05088002083927474,16238.013714662877,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +32484,1,47.0,436.0,2,111,660.0,0.0,0.0,85,85,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,71,2,2,2,1,1,2,2,2,0,,2,,2,132508,1,2,0,1,1,1044.0,355.0,386.0,41,1.0,5.0,5.0,6.0,3.0999999999999996,4,3,1853.36893734611,660.0,20832.35064271442,6,7,2,3,92.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,0,0,1,0.03168149438915181,6720.113110553039,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32485,1,43.0,200.0,5,111,0.0,900.0,0.0,85,54,0.0,0.0,0.0,2219.0,0.0,1708.65364314581,71,2,2,2,1,2,2,2,2,2,30.0,2,,3,132509,1,2,0,0,1,,570.0,500.0,42,1.0,0.0,4.0,5.0,2.4,2,2,1462.37106187823,0.0,38056.308417817105,7,1,2,3,80.0,10,8,1,0,1,0,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,0,0,1,0.058308335523187906,15856.795174090461,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +32486,1,30.0,190.0,2,300,2040.0,0.0,0.0,55,63,0.0,0.0,3478.6091084790046,2199.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,132510,2,1,2,0,1,,1152.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,783.499112583996,2040.0,23750.753953672167,1,1,1,2,120.0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.09258653448599288,11309.882835081984,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +32487,2,56.0,0.0,1,111,360.0,0.0,0.0,0,63,0.0,0.0,613.872195613942,360.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,30.0,2,,1,132511,1,2,0,0,2,,0.0,360.0,12,1.0,0.0,2.0,1.0,1.0,1,1,386.143522558265,360.0,17982.547807747145,0,1,2,3,60.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020019410144145797,17982.547807747145,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +32488,1,42.0,286.0,2,111,400.0,0.0,0.0,0,63,0.0,0.0,682.0802173488245,520.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,132512,1,1,0,1,1,780.0,500.0,458.0,32,1.0,0.0,4.0,3.0,1.6,1,1,116.308299918187,400.0,4875.874078051573,0,4,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10664754496855157,3047.421298782233,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32489,2,78.0,0.0,6,300,408.0,0.0,0.0,0,77,0.0,0.0,695.7218216958009,498.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132513,2,1,2,0,1,,80.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1593.63086547223,408.0,15604.177371193313,0,5,0,1,80.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.031914530843474766,15604.177371193313,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +32490,2,72.0,0.0,2,111,700.0,400.0,0.0,38,75,0.0,0.0,1193.6403803604428,1100.0,0.0,759.4016191759156,71,0,0,0,0,0,0,0,0,0,,2,,2,132514,2,1,0,0,1,,0.0,,42,2.0,1.0,3.0,3.0,2.0,3,3,1085.21117205601,700.0,22735.15204772333,1,5,0,1,79.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04838322601454308,11367.576023861666,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +32491,2,73.0,0.0,5,111,270.0,1200.0,0.0,77,78,0.0,0.0,460.40414671045653,1470.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,3,132515,2,1,3,0,1,,300.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,428.899417394155,270.0,25725.077518584363,5,5,0,1,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05714268495160178,17150.051679056243,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +32492,2,35.0,0.0,9,111,1300.0,0.0,0.0,46,65,0.0,1324.327277010224,2216.7607063836795,2300.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,2011.0,6,132516,2,1,1,0,1,,500.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,239.574649546005,1300.0,59800.54400136076,1,1,1,2,250.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03846118857961666,33222.52444520042,8,4,8,8_1,8_2,8_0_0 +32493,2,61.0,0.0,2,111,296.0,1372.0,0.0,0,33,0.0,0.0,504.7393608381301,1668.0,0.0,2604.7475537733903,12,0,0,0,0,0,0,0,0,3,15.0,1,,2,132517,2,1,2,0,1,,189.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1062.76082823882,296.0,79606.56461944754,0,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02095304586969345,79606.56461944754,10,5,10,10_1,10_4,10_0_1 +32494,1,63.0,196.0,6,211,150.0,,,0,52,0.0,0.0,,238.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,2,,4,132518,2,3,0,0,2,,160.0,240.0,12,1.0,3.0,1.0,1.0,1.0,1,1,87.33284455852322,150.0,5241.0,0,4,2,3,50.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04541118107231444,5241.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32495,2,30.0,0.0,9,112,374.0,0.0,0.0,43,21,1054.6828510366015,562.8390927293451,637.7450032211509,1865.0,91.44888887617039,0.0,42,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,132519,2,1,2,0,1,,494.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1326.3285040782,374.0,41780.126783734864,1,1,1,2,140.0,6,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.044638447596239715,19895.298468445173,5,3,5,5_1,5_0,5_0_0 +32496,2,45.0,0.0,1,111,1200.0,0.0,0.0,85,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,2,2,2,2,2,2,2,1,0,,2,,1,132520,2,2,0,0,1,,0.0,,42,1.0,4.0,2.0,3.0,1.8,2,2,1484.34927213521,1200.0,92475.23073664524,6,1,1,2,43.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,0,0,0,0.012976447751911094,51375.12818702513,10,5,10,10_0,10_4,10_1_0 +32497,2,56.0,0.0,2,111,350.0,300.0,0.0,72,68,0.0,0.0,596.8201901802214,650.0,0.0,569.5512143819367,71,1,2,2,2,1,2,2,2,2,15.0,2,,2,132521,2,3,0,1,1,648.0,0.0,284.0,42,2.0,4.0,4.0,3.0,2.0,3,3,317.495069240351,350.0,22292.662785570843,5,1,2,3,80.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.029157575577768987,11146.331392785421,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +32498,2,75.0,0.0,2,111,0.0,300.0,0.0,77,78,2531.2388424878436,0.0,0.0,5633.0,0.0,569.5512143819367,50,0,0,0,0,0,0,0,0,0,,1,,2,132522,2,1,2,0,1,,250.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1288.06828059169,0.0,28288.87481003999,5,5,0,1,100.0,10,8,1,1,1,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.19912421536118485,18859.249873359993,5,3,5,5_1,5_4,5_0_1 +32499,2,59.0,0.0,2,111,478.0,0.0,0.0,0,75,0.0,0.0,815.0858597318453,478.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,132523,2,1,0,1,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,907.208132751665,478.0,12206.112509409815,0,5,0,1,67.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03916070736129173,12206.112509409815,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +32500,2,69.0,0.0,7,111,1400.0,0.0,0.0,0,77,0.0,1059.4618216081792,2387.2807607208856,2600.0,554.2356901586083,0.0,50,0,0,0,0,0,0,0,0,0,,7,,5,132524,2,1,0,0,2,,0.0,,11,0.0,8.0,1.0,1.0,1.0,1,1,605.320473361318,1400.0,15700.465524642437,0,5,0,1,25.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1656001852887233,15700.465524642437,3,2,3_0,3_1_0,3_4_0,3_0_0_0 +32501,2,61.0,0.0,6,111,500.0,,,0,42,0.0,0.0,,2224.0,0.0,,30,0,0,0,0,0,0,0,0,2,45.0,1,,4,132525,2,2,0,0,2,,200.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,118.40788743824407,500.0,5218.042609142084,0,1,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.42621346098315116,5218.042609142084,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +32502,2,45.0,0.0,2,111,485.0,0.0,0.0,0,34,0.0,0.0,827.0222635354497,719.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,132526,2,2,0,1,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,1940.56225486025,485.0,35448.93950042716,0,1,1,2,78.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.020282694211242513,22155.58718776697,6,3,6,6_0,6_3,6_0_1 +32504,1,56.0,123.0,1,111,594.0,,,81,69,0.0,0.0,,1034.0,609.6592591744692,,71,0,0,0,0,0,0,0,0,0,,1,,1,132528,1,2,0,0,2,,450.0,290.0,43,2.0,1.0,4.0,4.0,2.3,3,2,83.0668897463397,594.0,15048.548355390387,4,1,2,3,85.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.06871094643687817,6542.847111039299,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +32505,2,52.0,0.0,1,120,680.0,0.0,0.0,0,12,0.0,132.4327277010224,1159.5363694930015,2180.0,1939.8249155551293,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132529,2,2,2,0,1,,210.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1247.28405819502,680.0,52091.29022026519,0,1,1,2,60.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04184960654232192,52091.29022026519,10,5,10,10_1,10_1,10_1_0 +32506,2,59.0,0.0,1,111,470.0,490.0,0.0,35,54,0.0,0.0,801.4442553848687,960.0,0.0,930.2669834904966,20,0,0,0,0,0,0,0,0,3,10.0,2,,1,132530,1,2,0,0,1,,0.0,,43,3.0,1.0,3.0,3.0,2.0,3,3,681.125918141452,470.0,40440.58132462053,1,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023738531162398123,20220.290662310264,5,3,5,5_0,5_4,5_1_0 +32507,2,46.0,0.0,2,111,0.0,0.0,0.0,35,35,0.0,0.0,0.0,202.0,0.0,0.0,20,2,2,2,2,1,2,2,2,2,15.0,2,,2,132531,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,840.414719633661,0.0,108361.75748480795,1,1,0,1,58.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0018641262811589217,72241.17165653863,10,5,10,10_0,10_4,10_0_1 +32508,0,53.0,0.0,6,111,400.0,,,0,35,0.0,0.0,,400.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,4,132532,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,129.25942249015466,400.0,1124.2696091107,0,4,5,0,104.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.3557865451120759,1124.2696091107,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +32509,1,64.0,131.0,2,111,407.0,101.0,0.0,0,77,0.0,0.0,694.0166211524289,508.0,0.0,191.74890884191868,44,2,2,2,2,1,2,2,2,0,,2,,2,132533,1,3,0,1,1,619.0,156.0,288.0,11,0.0,2.0,3.0,1.0,1.0,1,1,375.472572454205,407.0,12780.483065414704,0,5,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03974810634307713,12780.483065414704,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32510,2,39.0,0.0,7,111,600.0,0.0,0.0,68,62,0.0,79.45963662061344,1023.1203260232367,660.0,0.0,0.0,50,2,2,2,1,1,2,2,2,2,20.0,2,,5,132534,2,2,0,0,1,,0.0,387.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1363.46313219608,600.0,31911.83203322886,1,1,2,3,55.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.020681984014981065,21274.55468881924,6,3,6,6_0,6_3,6_0_0 +32511,2,35.0,0.0,2,111,0.0,0.0,300.0,68,56,0.0,0.0,189.09548712442313,300.0,0.0,359.01964426940424,43,0,0,0,0,0,0,0,0,3,20.0,2,,2,132535,1,1,0,1,2,,0.0,300.0,43,2.0,0.0,1.0,4.0,2.1,2,2,755.441241635723,0.0,95801.21780057476,1,1,3,4,14.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0031314842012185795,45619.62752408322,10,5,10,10_0,10_4,10_0_1 +32512,2,25.0,0.0,1,120,430.0,0.0,0.0,55,62,1054.6828510366015,198.6490915515336,733.2362336499863,1580.0,0.0,0.0,43,2,2,2,2,2,2,2,1,2,35.0,1,,1,132536,2,1,2,0,1,,460.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1376.03933964815,430.0,42722.21127751982,1,1,1,2,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.036983104402917154,23734.561820844345,6,3,6,6_1,6_0,6_1_0 +32513,2,67.0,0.0,5,111,0.0,0.0,0.0,77,77,0.0,0.0,0.0,748.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,132537,2,1,2,0,1,,249.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,632.678869090973,0.0,38333.151976333276,5,5,0,1,110.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019513135795924424,25555.434650888852,7,4,7,7_1,7_4,7_0_0 +32514,1,52.0,209.0,2,111,300.0,400.0,0.0,0,52,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,60,0,0,0,0,0,0,0,0,3,10.0,2,,2,132538,2,2,0,1,1,938.0,0.0,380.0,32,1.0,7.0,5.0,2.0,1.5,2,2,233.569767412121,300.0,18557.2499198531,0,1,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03772110646907434,12371.499946568734,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32515,1,30.0,343.0,9,111,360.0,720.0,0.0,0,67,0.0,0.0,613.872195613942,1080.0,0.0,1366.922914516648,50,0,0,0,0,0,0,0,0,3,45.0,2,2004.0,6,132539,1,2,0,0,1,,0.0,440.0,32,1.0,0.0,3.0,3.0,1.6,1,1,1106.43639214794,360.0,20460.04170182175,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05278581616497084,12787.526063638592,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +32516,2,37.0,0.0,5,111,550.0,0.0,0.0,75,37,0.0,0.0,937.8602988546337,570.0,27.711784507930417,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,,3,132540,2,1,0,1,1,1500.0,0.0,1117.0,42,1.0,3.0,3.0,4.0,2.1,2,2,2057.47138422645,550.0,46677.58916498617,7,1,2,3,95.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.012211427586486596,22227.423411898177,6,3,6,6_0,6_3,6_0_0 +32517,2,46.0,0.0,7,112,1600.0,0.0,0.0,46,23,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,90.0,1,,5,132541,2,2,1,0,1,,400.0,,43,2.0,0.0,8.0,4.0,2.3,3,2,626.258425849573,1600.0,135643.348494151,1,1,0,1,176.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011795639209459597,58975.36891050044,10,5,10,10_1,10_1,10_0_0 +32518,1,39.0,236.0,7,211,500.0,800.0,0.0,55,67,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,132542,2,1,2,0,1,,500.0,351.0,43,2.0,0.0,4.0,5.0,2.4,3,2,1011.20323952654,500.0,27973.82081005963,4,1,2,3,81.0,2,3,5,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.046472021424134834,11655.75867085818,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +32519,2,57.0,0.0,6,111,340.0,320.0,0.0,74,54,0.0,0.0,579.7681847465008,660.0,0.0,607.5212953407324,60,0,0,0,0,0,0,0,0,3,45.0,2,,4,132543,2,2,0,0,1,,0.0,478.0,42,1.0,1.0,4.0,2.0,1.5,2,2,451.206202487678,340.0,42570.85039327158,5,1,2,3,85.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015503566264307336,28380.566928847722,8,4,8,8_0,8_4,8_0_0 +32520,1,59.0,200.0,8,211,252.0,,,0,68,0.0,0.0,,322.0,96.99124577775646,,71,0,0,0,0,0,0,0,0,2,5.0,8,1999.0,6,132544,1,1,0,0,2,,400.0,42.0,22,2.0,0.0,3.0,3.0,1.8,2,2,30.035515030531684,252.0,6912.536514233899,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04658203241848431,3840.298063463277,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32521,2,42.0,0.0,7,112,1224.0,0.0,0.0,54,43,0.0,728.3800023556231,2087.165465087403,1774.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,25.0,1,,5,132545,2,2,2,0,1,,948.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,458.563332721759,1224.0,61491.39107744721,1,1,1,2,106.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028849566889220014,29281.614798784383,8,4,8,8_1,8_0,8_0_0 +32522,2,60.0,0.0,7,112,1200.0,0.0,0.0,0,75,0.0,1324.327277010224,2046.2406520464733,2200.0,0.0,0.0,20,2,2,1,1,2,2,2,2,0,,1,,5,132546,2,1,2,0,1,,100.0,,31,0.0,2.0,5.0,2.0,1.5,2,1,1633.85120408466,1200.0,33367.326748032174,0,5,0,1,150.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.0659327616087718,22244.884498688116,6,3,6,6_1,6_0,6_0_0 +32523,2,52.0,0.0,9,111,0.0,0.0,0.0,85,46,0.0,0.0,0.0,943.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,132547,2,2,5,0,1,,0.0,920.0,42,1.0,0.0,4.0,5.0,2.6,3,2,1899.01856787236,0.0,35712.84382630729,6,1,2,3,95.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02640506604812452,13735.709163964342,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +32524,1,50.0,357.0,6,211,225.0,,,56,63,0.0,0.0,,414.0,261.87636359994247,,71,0,0,0,0,0,0,0,0,0,,2,,4,132548,2,3,0,0,1,,240.0,381.0,43,2.0,0.0,3.0,3.0,2.0,3,2,93.85251751870277,225.0,10323.602243552185,4,4,2,3,72.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.040102281183738174,5161.801121776092,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32525,2,44.0,0.0,9,112,1673.0,0.0,0.0,52,47,0.0,211.89236432163582,2852.8005090614583,1833.0,0.0,0.0,31,0,0,0,0,0,0,0,0,4,60.0,1,2006.0,6,132549,1,2,1,0,1,,275.0,,43,2.0,0.0,7.0,4.0,2.5,4,2,971.845827304667,1673.0,83469.87263096447,1,1,1,2,160.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021960019132939466,33387.94905238579,8,4,8,8_1,8_2,8_0_0 +32526,1,55.0,276.0,2,211,840.0,2400.0,0.0,52,52,0.0,105.94618216081791,1432.3684564325313,3320.0,0.0,4556.4097150554935,71,2,2,2,1,2,2,2,2,2,15.0,2,,2,132550,1,3,0,1,2,72.0,1000.0,324.0,43,2.0,0.0,4.0,6.0,2.8999999999999995,3,2,377.013020609911,840.0,33339.22936600958,1,1,2,3,80.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.09958238576998564,11496.285988279169,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +32527,2,36.0,0.0,2,111,12.0,,,0,48,0.0,0.0,,33.0,29.09737373332694,,43,0,0,0,0,0,0,0,0,2,10.0,2,,2,132551,2,1,0,0,2,,0.0,308.0,12,1.0,1.0,2.0,1.0,1.0,1,1,130.02770374400671,12.0,25185.98815112534,0,1,2,3,52.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0013102523435645117,25185.98815112534,7,4,7,7_0,7_3,7_0_1 +32529,2,66.0,0.0,5,112,360.0,2000.0,0.0,0,31,0.0,0.0,613.872195613942,2360.0,0.0,3797.008095879578,31,0,0,0,0,0,0,0,0,2,45.0,1,,3,132553,2,2,2,0,1,,360.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,1006.97103031309,360.0,66974.13001121371,0,5,0,1,140.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035237486468355124,66974.13001121371,10,5,10,10_1,10_1,10_0_0 +32530,2,79.0,0.0,2,111,550.0,,,0,78,0.0,0.0,,814.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,132554,2,2,0,0,2,,300.0,,11,0.0,8.0,5.0,1.0,1.0,1,1,90.59713755746766,550.0,19550.719053393586,0,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04163529728891005,19550.719053393586,5,3,5,5_1,5_3,5_0_1 +32531,2,50.0,0.0,2,111,750.0,750.0,0.0,34,64,0.0,0.0,1278.9004075290459,1500.0,0.0,1423.8780359548418,71,0,0,0,0,0,0,0,0,3,15.0,2,,2,132555,1,2,0,0,1,,0.0,320.0,43,2.0,0.0,3.0,3.0,2.0,3,3,2028.74736710204,750.0,47575.61011622071,1,1,2,3,86.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.031528760142764435,23787.805058110356,6,3,6,6_0,6_3,6_0_1 +32532,0,76.0,0.0,5,221,11130.0,0.0,0.0,0,77,0.0,0.0,18978.88204773104,11130.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,132556,2,2,3,0,1,,260.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,1913.52764721977,11130.0,45116.38566114873,0,5,0,1,80.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.24669529344821667,45116.38566114873,10,5,10,10_1,10_1,10_0_0 +32533,2,42.0,0.0,8,111,294.0,1160.0,0.0,0,65,0.0,0.0,501.328959751386,1454.0,0.0,2202.2646956101553,42,0,0,0,0,0,0,0,0,2,10.0,1,2003.0,6,132557,2,1,1,0,1,,754.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,2025.44736607493,294.0,48135.540065846326,0,1,1,2,115.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030206371384033946,48135.540065846326,10,5,10,10_1,10_3,10_0_0 +32534,2,38.0,0.0,5,111,403.2,0.0,0.0,52,34,0.0,0.0,687.5368590876151,548.0,0.0,0.0,12,2,1,2,2,1,2,2,2,2,15.0,2,,3,132558,2,3,0,1,1,744.0,0.0,448.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1039.87491377055,403.2,44404.23068063944,1,1,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.012341166406896717,29602.82045375963,8,4,8,8_0,8_4,8_0_0 +32535,1,56.0,270.0,1,111,210.0,350.0,0.0,0,69,0.0,0.0,358.0921141081328,610.0,69.27946126982604,664.4764167789261,50,0,0,0,0,0,0,0,0,0,,1,,1,132559,2,2,1,0,1,,150.0,392.0,12,1.0,3.0,3.0,1.0,1.0,1,1,1140.56445685275,210.0,6026.1598096696325,0,4,2,3,80.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10122532745002684,6026.1598096696325,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +32536,2,31.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,616.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,2,132560,2,1,0,0,1,,119.0,380.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2384.60446675031,0.0,15084.0,0,1,2,3,53.0,8,6,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04083797401219835,15084.0,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +32537,2,32.0,0.0,7,111,386.0,,,54,21,0.0,0.0,,428.0,58.19474746665388,,31,0,0,0,0,0,0,0,0,2,60.0,1,,5,132561,2,2,0,0,2,,199.0,738.0,43,2.0,0.0,4.0,2.0,1.5,2,2,103.73580863114834,386.0,45224.71739423051,1,1,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009463851288866242,30149.81159615367,8,4,8,8_1,8_3,8_0_0 +32538,2,28.0,0.0,1,111,720.0,1.0,0.0,43,63,0.0,0.0,1227.744391227884,721.0,0.0,1.898504047939789,50,1,2,2,1,2,2,2,2,2,10.0,1,,1,132562,2,3,2,0,1,,250.0,450.0,43,2.0,0.0,5.0,2.0,1.5,2,2,252.307330907963,720.0,37869.89530393638,1,1,2,3,90.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.019038869640736922,25246.59686929092,7,4,7,7_1,7_2,7_1_0 +32539,1,63.0,247.0,5,211,3000.0,0.0,0.0,85,78,0.0,0.0,5115.6016301161835,3360.0,498.81212114274757,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132563,2,1,2,0,1,,760.0,,41,2.0,1.0,5.0,6.0,3.5,6,6,2258.45928923165,3000.0,36232.77517028168,6,5,1,2,120.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09273371924201627,10352.221477223338,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +32540,1,44.0,70.0,1,112,1200.0,0.0,0.0,52,62,0.0,0.0,2046.2406520464733,1330.0,180.1265993015477,0.0,50,0,0,0,0,0,0,0,0,2,50.0,1,,1,132564,2,2,3,0,1,,260.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1254.72389365752,1200.0,37392.38745287272,1,1,1,2,100.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.035568737130686236,17805.898787082246,4,2,4_1,4_1_1,4_1_1,4_1_0_1 +32541,2,40.0,0.0,2,111,350.0,650.0,0.0,85,68,0.0,0.0,596.8201901802214,1000.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,0,,2,,2,132565,1,3,0,0,1,,325.0,297.0,42,1.0,0.0,3.0,4.0,2.1,2,2,245.291283498788,350.0,26968.13449079206,7,4,2,3,58.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.037080799947116765,12841.968805139077,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +32542,2,74.0,0.0,2,111,700.0,200.0,0.0,77,77,0.0,0.0,1193.6403803604428,900.0,0.0,379.7008095879578,71,2,2,2,1,2,2,2,2,0,,2,,2,132566,2,2,0,1,1,,463.0,495.0,41,0.0,2.0,5.0,2.0,1.5,2,2,545.672228537292,700.0,37417.207480607685,5,5,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.02405310445645751,24944.80498707179,7,4,7,7_0,7_4,7_0_1 +32543,2,36.0,0.0,1,111,500.0,1000.0,0.0,43,68,0.0,0.0,852.6002716860306,1500.0,0.0,1898.504047939789,71,0,0,0,0,0,0,0,0,2,5.0,2,,1,132567,2,1,0,0,1,,500.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,2674.29014385111,500.0,50176.08798185684,1,1,1,2,90.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02989471798882337,27875.604434364912,7,4,7,7_0,7_2,7_1_0 +32544,2,77.0,0.0,7,112,697.0,1666.0,0.0,78,75,0.0,0.0,1188.5247787303267,2363.0,0.0,3162.9077438676886,41,0,0,0,0,0,0,0,0,0,,1,,5,132568,2,1,1,0,1,,270.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1692.96990211391,697.0,56513.428154892565,5,5,0,1,120.0,6,0,7,0,1,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0418130712849956,37675.61876992838,9,5,9,9_1,9_0,9_0_0 +32545,1,59.0,270.0,9,111,0.0,0.0,250.0,0,90,0.0,0.0,157.57957260368593,250.0,0.0,299.1830368911702,50,2,1,2,1,1,2,2,2,0,,2,2011.0,6,132569,2,1,0,1,1,468.0,0.0,318.0,11,0.0,3.0,2.0,1.0,1.0,1,1,339.862797170248,0.0,11274.5822482632,0,7,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,1,0.022173770565957016,11274.5822482632,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +32546,0,38.0,0.0,1,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,211.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,132570,1,3,0,1,2,,0.0,,31,0.0,0.0,1.0,2.0,1.3,1,1,401.736254137782,0.0,52290.178761413095,0,7,5,0,12.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0040351745776724115,40223.21443185623,9,5,9,9_0,9_4,9_1_0 +32547,1,36.0,111.0,2,111,520.0,1050.0,0.0,85,67,0.0,0.0,886.7042825534718,1570.0,0.0,1993.4292503367785,50,0,0,0,0,0,0,0,0,0,,2,,2,132571,2,2,0,0,1,,0.0,295.0,42,1.0,0.0,3.0,4.0,2.1,2,2,249.01529533354,520.0,24555.310089811155,6,4,2,3,61.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.06393729072276905,11693.004804671978,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32548,2,22.0,0.0,9,300,0.0,0.0,0.0,54,63,0.0,0.0,0.0,791.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,15.0,1,2008.0,6,132572,2,1,1,0,1,,993.0,430.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1147.3821169861,0.0,29456.271187685732,1,1,2,3,75.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026853364940864596,19637.51412512382,5,3,5,5_1,5_0,5_0_0 +32549,2,45.0,0.0,6,111,1800.0,0.0,0.0,62,56,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,71,2,2,1,2,1,2,2,1,3,25.0,2,,4,132573,2,1,0,0,1,,0.0,491.0,43,2.0,1.0,4.0,5.0,2.4,2,2,690.870782188499,1800.0,40961.59577924579,1,1,2,3,89.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,1,0,0,0.04394360048130778,17067.331574685748,4,2,4_0,4_0_0,4_4_0,4_0_0_0 +32550,1,40.0,189.0,2,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,2043.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,35.0,1,,2,132574,2,2,2,0,1,,366.0,444.0,32,1.0,0.0,4.0,3.0,2.0,3,3,1424.38149886416,0.0,10055.885198404527,0,1,2,3,98.0,6,4,4,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.20316461054310203,5027.942599202263,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +32551,2,74.0,0.0,7,111,900.0,,,72,45,0.0,0.0,,1038.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,5,132575,2,1,0,0,2,,700.0,,41,0.0,0.0,3.0,2.0,1.5,2,2,99.44882926642907,900.0,26377.029024115953,5,5,0,1,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03935242286199021,17584.686016077303,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +32552,2,70.0,0.0,2,112,528.0,,,0,86,0.0,0.0,,660.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,2,132576,2,2,0,0,2,,548.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,96.40689464802085,528.0,5133.055164571316,0,7,0,1,71.0,8,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.128578396070115,5133.055164571316,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +32553,2,37.0,0.0,9,111,1440.0,0.0,0.0,56,62,0.0,0.0,2455.488782455768,1440.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,35.0,1,2011.0,6,132577,2,1,1,0,1,,160.0,,43,2.0,2.0,5.0,3.0,1.8,2,2,1408.17084823282,1440.0,40334.48584286141,1,1,1,2,100.0,4,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035701459183341944,22408.04769047856,6,3,6,6_1,6_1,6_0_0 +32554,0,72.0,0.0,2,111,350.0,,,0,77,0.0,0.0,,580.0,318.68552184119983,,71,0,0,0,0,0,0,0,0,0,,1,,2,132578,2,2,0,0,1,,372.0,,21,0.0,4.0,4.0,3.0,1.8,2,1,133.114933548679,350.0,17132.0,0,5,5,0,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.033854774690637406,9517.777777777777,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +32555,2,79.0,0.0,2,111,1570.0,0.0,0.0,78,78,0.0,0.0,2677.164853094136,1690.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132579,1,3,0,0,1,,0.0,320.0,41,0.0,0.0,3.0,2.0,1.5,2,2,311.117437261772,1570.0,20684.388280461935,5,5,2,3,70.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08170413246382252,13789.592186974623,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +32556,2,66.0,0.0,5,112,1030.0,0.0,0.0,0,77,0.0,0.0,1756.356559673223,1030.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132580,2,1,2,0,1,,140.0,,11,0.0,3.0,9.0,1.0,1.0,1,1,2188.18975556112,1030.0,20083.856188462778,0,5,0,1,140.0,8,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05128497188660842,20083.856188462778,5,3,5,5_1,5_1,5_0_0 +32557,2,59.0,0.0,7,112,600.0,,,0,68,0.0,0.0,,742.0,196.75367000630598,,50,0,0,0,0,0,0,0,0,0,,1,,5,132581,2,1,0,0,2,,240.0,,12,1.0,4.0,5.0,1.0,1.0,1,1,108.40686331428323,600.0,14129.446756821246,0,4,0,1,80.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05251444113633013,14129.446756821246,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +32558,1,48.0,423.0,2,111,520.0,,,0,56,0.0,0.0,,616.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,132582,2,2,0,0,2,,1200.0,668.0,32,2.0,0.0,4.0,4.0,2.1,2,2,121.37288824749191,520.0,16332.174222916368,0,1,2,3,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.037716962334118635,7777.225820436365,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +32559,2,62.0,0.0,2,111,420.0,,,85,45,0.0,0.0,,870.0,623.5151514284345,,70,0,0,0,0,0,0,0,0,0,,1,,2,132583,2,2,0,0,2,,320.0,318.0,42,2.0,2.0,5.0,4.0,2.3,3,3,122.41840826005445,420.0,28729.207418351518,6,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030282770677629803,12490.959747109357,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +32560,2,64.0,0.0,6,111,240.0,0.0,0.0,0,75,0.0,582.7040018844986,409.2481304092947,800.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132584,2,1,2,0,1,,127.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,485.201239095844,240.0,34592.97386130754,0,5,0,1,100.0,6,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023126083441320004,34592.97386130754,9,5,9,9_1,9_2,9_0_0 +32562,1,49.0,150.0,9,300,978.0,0.0,0.0,56,55,0.0,132.4327277010224,1667.686131417876,1228.0,207.83838380947813,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2007.0,6,132586,2,1,1,0,1,,295.0,,43,2.0,0.0,5.0,5.0,3.0,5,2,843.876810481294,978.0,30933.226199747805,1,1,1,2,100.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.03969841335237162,10311.075399915935,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +32563,2,47.0,0.0,2,111,0.0,0.0,0.0,55,54,0.0,0.0,0.0,2293.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,132587,2,1,2,0,1,,225.0,700.0,43,2.0,0.0,4.0,2.0,1.5,2,2,354.238127497574,0.0,67334.06667162616,1,1,2,3,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03405408455696684,44889.377781084106,10,5,10,10_1,10_3,10_0_1 +32564,2,75.0,0.0,2,111,383.0,941.0,0.0,0,78,0.0,0.0,653.0918081114994,1324.0,0.0,1786.4923091113415,70,0,0,0,0,0,0,0,0,0,,1,,2,132588,2,1,2,0,1,,210.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,325.593317600193,383.0,15624.843331924389,0,5,0,1,96.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0847368496357866,15624.843331924389,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +32565,1,40.0,120.0,1,111,240.0,960.0,0.0,0,46,0.0,0.0,409.2481304092947,1200.0,0.0,1822.5638860221975,12,0,0,0,0,0,0,0,0,0,,2,,1,132589,1,3,0,0,2,,0.0,720.0,32,1.0,0.0,3.0,3.0,1.8,2,1,1481.23333054644,240.0,30028.436902162794,0,1,2,3,48.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.039962120036743244,16682.464945645996,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +32566,2,31.0,0.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,290.0,0.0,0.0,50,1,2,2,2,1,2,2,2,2,30.0,2,,2,132590,1,2,0,1,1,272.0,0.0,447.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1429.83678358872,0.0,30098.157031429655,0,1,3,4,30.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009635141437303648,30098.157031429655,8,4,8,8_0,8_4,8_0_1 +32567,2,32.0,0.0,1,112,0.0,0.0,1800.0,12,52,0.0,397.2981831030672,1134.5729227465388,2100.0,0.0,2154.117865616425,42,0,0,0,0,0,0,0,0,2,2.0,1,,1,132591,2,1,1,0,1,,390.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,216.525547432794,0.0,21010.215159751613,1,1,1,2,200.0,6,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0999513800326463,11672.341755417563,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +32568,2,43.0,0.0,5,111,166.0,0.0,0.0,0,55,0.0,0.0,283.06329019976215,166.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,132592,2,1,0,1,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,710.67840981489,166.0,24695.724896623495,0,1,1,2,63.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0067218111918106215,24695.724896623495,7,4,7,7_0,7_4,7_0_0 +32569,1,58.0,55.0,2,111,350.0,,,0,55,0.0,0.0,,405.0,76.20740739680865,,50,0,0,0,0,0,0,0,0,0,,8,,2,132593,2,1,0,0,2,,200.0,243.0,32,1.0,4.0,4.0,2.0,1.5,2,1,87.84270580709622,350.0,9370.488201246984,0,4,2,3,80.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0432208003790138,6246.992134164656,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32570,1,26.0,434.0,9,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,2191.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,2011.0,6,132594,1,1,0,0,1,,0.0,600.0,32,1.0,0.0,4.0,3.0,1.6,1,1,2008.1180962947,0.0,12525.460935441464,0,4,2,3,83.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.17492370231265883,7828.413084650915,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +32571,2,50.0,0.0,7,112,361.0,0.0,0.0,52,46,0.0,794.5963662061343,615.5773961573141,1021.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,132595,2,1,2,0,1,,154.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1505.88235020124,361.0,46694.8419277414,1,1,1,2,89.0,8,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021865370089055255,31129.894618494265,8,4,8,8_1,8_0,8_0_0 +32572,2,52.0,0.0,8,111,480.0,,,42,52,0.0,0.0,,768.0,399.049696914198,,50,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,132596,2,1,0,0,2,,320.0,,43,2.0,2.0,4.0,4.0,2.3,3,2,136.99151854196398,480.0,39736.5407971127,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019327298868848788,17276.75686830987,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +32573,2,53.0,0.0,1,111,413.0,1120.0,0.0,0,54,0.0,0.0,704.2478244126613,1533.0,0.0,2126.324533692564,50,0,0,0,0,0,0,0,0,2,6.0,2,,1,132597,1,2,0,0,1,,0.0,553.0,32,1.0,2.0,3.0,2.0,1.5,2,2,329.573879075158,413.0,29035.71926406778,0,1,2,3,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05279703891809957,19357.146176045186,5,3,5,5_0,5_3,5_1_0 +32574,2,45.0,0.0,7,111,1100.0,0.0,0.0,0,52,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,1,,5,132598,2,1,3,0,1,,120.0,609.0,22,1.0,2.0,4.0,2.0,1.5,2,2,1060.53912507371,1100.0,34759.56885086495,0,1,2,3,88.0,5,4,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,1,0,0,0.03164596214410835,23173.04590057663,6,3,6,6_1,6_2,6_0_0 +32575,2,68.0,0.0,9,112,276.0,0.0,0.0,0,75,0.0,0.0,470.6353499706889,276.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,132599,2,1,1,0,1,,63.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2945.60042600322,276.0,17191.764865922418,0,5,0,1,25.0,6,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01605419816711711,17191.764865922418,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +32576,2,43.0,0.0,1,221,1399.0,0.0,0.0,43,62,0.0,0.0,2385.5755601775136,1399.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,132600,2,1,2,0,1,,472.0,480.0,43,3.0,0.0,3.0,3.0,2.0,3,3,590.283580976706,1399.0,39112.60176419586,1,1,2,3,75.0,1,2,8,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03576852310757453,19556.30088209793,5,3,5,5_1,5_1,5_1_0 +32577,2,64.0,0.0,5,112,200.0,0.0,0.0,0,68,940.7771031246485,0.0,341.04010867441224,1188.0,133.01656563806603,0.0,71,2,2,1,1,1,2,2,2,1,20.0,2,,3,132601,2,1,0,1,1,892.0,0.0,296.0,12,1.0,4.0,3.0,1.0,1.0,1,1,954.462033373226,200.0,22579.01764522507,0,1,2,3,60.0,8,0,7,1,0,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.05261522085090509,22579.01764522507,6,3,6,6_0,6_0,6_0_0 +32578,2,31.0,0.0,2,111,200.0,160.0,0.0,0,31,0.0,0.0,341.04010867441224,360.0,0.0,303.7606476703662,31,0,0,0,0,0,0,0,0,1,15.0,2,,2,132602,2,1,0,0,2,,0.0,494.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2238.00697547376,200.0,4166.038237965044,0,1,2,3,35.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0864130330632411,4166.038237965044,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +32579,2,56.0,0.0,7,111,450.0,,,56,34,0.0,0.0,,570.0,166.2707070475825,,42,0,0,0,0,0,0,0,0,0,,1,,5,132603,2,2,0,0,2,,350.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,108.56956329955024,450.0,66477.69577035439,1,1,0,1,128.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008574304409843737,44318.46384690292,10,5,10,10_1,10_2,10_0_0 +32580,2,34.0,0.0,6,111,2000.0,0.0,0.0,37,37,1160.1511361402618,307.24392826637194,3410.4010867441225,3402.0,96.99124577775646,0.0,10,0,0,0,0,0,0,0,0,2,10.0,1,,4,132604,2,1,2,0,1,,294.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1134.2982154053,2000.0,87745.09997274434,1,1,1,2,90.0,9,7,8,1,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03877139579368808,48747.27776263574,10,5,10,10_1,10_3,10_0_0 +32581,2,77.0,0.0,2,111,360.0,,,86,78,0.0,0.0,,486.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,0,,1,,2,132605,1,2,0,0,2,,316.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,130.63446578750373,360.0,16872.574939829225,6,5,0,1,105.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028804139364214852,11248.383293219484,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +32582,2,38.0,0.0,1,111,1800.0,0.0,0.0,52,62,1054.6828510366015,0.0,3069.36097806971,2850.0,69.27946126982604,0.0,43,0,0,0,0,0,0,0,0,2,20.0,1,,1,132606,2,1,3,0,2,,600.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,215.628131344774,1800.0,40981.93269698119,4,1,1,2,100.0,8,7,3,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0695428402821504,17818.231607383128,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +32583,1,57.0,253.0,6,211,306.0,,,0,56,0.0,0.0,,394.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,1,20.0,1,,4,132607,2,2,0,0,2,,306.0,334.0,32,3.0,0.0,3.0,3.0,2.0,3,3,118.70244804077788,306.0,13869.899613899612,0,1,2,3,80.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.028406838619448694,6934.949806949806,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32584,2,57.0,0.0,6,111,1170.0,,,0,77,0.0,132.4327277010224,,1320.0,69.27946126982604,,41,0,0,0,0,0,0,0,0,0,,1,,4,132608,2,1,0,0,1,,260.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,87.42750313876273,1170.0,23833.104395012855,0,5,1,2,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.055385147403466825,23833.104395012855,6,3,6,6_1,6_2,6_0_0 +32585,2,36.0,0.0,9,111,420.0,,,65,43,0.0,0.0,,508.0,121.93185183489385,,44,0,0,0,0,0,0,0,0,2,60.0,1,2012.0,6,132609,2,1,0,0,2,,120.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,246.7117112563919,420.0,33103.29319091642,1,1,1,2,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015345905226716108,15763.472948055436,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +32586,2,45.0,0.0,9,111,330.0,480.0,0.0,0,56,0.0,0.0,562.7161793127802,810.0,0.0,911.2819430110987,41,0,0,0,0,0,0,0,0,3,45.0,2,2006.0,6,132610,2,2,0,1,2,,430.0,,32,1.0,0.0,3.0,3.0,1.8,2,2,335.921754301917,330.0,13457.293089153545,0,1,1,2,55.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06019041085259951,7476.273938418636,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +32587,2,81.0,0.0,6,111,1000.0,900.0,0.0,0,78,0.0,0.0,1705.2005433720612,1900.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,2,,4,132611,2,1,0,0,1,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,511.190300147152,1000.0,21000.32605937229,0,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.09047478570705543,21000.32605937229,5,3,5,5_0,5_3,5_0_0 +32588,2,40.0,0.0,8,111,900.0,,,55,42,0.0,0.0,,1026.0,174.58424239996165,,20,0,0,0,0,0,0,0,0,2,20.0,2,2001.0,6,132612,1,2,0,0,2,,440.0,497.0,43,2.0,0.0,3.0,4.0,2.1,2,2,92.6713709107117,900.0,33204.634449880155,1,1,2,3,60.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03089930116678948,15811.730690419121,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +32589,1,60.0,180.0,9,211,400.0,,,52,52,0.0,0.0,,928.0,731.5911110093631,,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,132613,1,1,0,0,2,,760.0,,43,2.0,5.0,6.0,6.0,3.3,5,3,173.8389180339911,400.0,20746.82494004796,4,4,1,2,100.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0447297358840034,6286.916648499383,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32590,1,56.0,254.0,2,211,250.0,42.0,0.0,0,75,0.0,0.0,426.3001358430153,292.0,0.0,79.73717001347114,71,2,2,1,2,1,2,2,2,0,,2,,2,132614,1,1,0,1,1,691.0,0.0,292.0,11,0.0,2.0,4.0,1.0,1.0,1,1,414.208745030574,250.0,11222.77004717442,0,7,2,3,80.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.026018531857339218,11222.77004717442,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +32591,2,55.0,0.0,7,111,720.0,,,0,46,0.0,0.0,,870.0,207.83838380947813,,41,0,0,0,0,0,0,0,0,2,20.0,2,,5,132616,2,1,0,0,2,,300.0,380.0,12,1.0,2.0,2.0,1.0,1.0,1,1,43.04926135952181,720.0,47470.88727757796,0,1,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018327022094885705,47470.88727757796,10,5,10,10_0,10_2,10_0_0 +32592,2,58.0,0.0,2,111,0.0,0.0,0.0,78,63,0.0,0.0,0.0,1140.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,60.0,2,,2,132617,2,1,0,0,1,,0.0,402.0,42,1.0,3.0,3.0,2.0,1.5,2,2,686.940461358224,0.0,24069.562934973263,7,1,2,3,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04736272125421817,16046.375289982176,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +32593,2,26.0,0.0,6,112,97.0,254.0,0.0,0,63,0.0,0.0,165.40445270708994,351.0,0.0,482.2200281767064,41,0,0,0,0,0,0,0,0,2,15.0,2,,4,132618,1,3,0,1,2,500.0,0.0,690.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1051.94590592605,97.0,24259.402903704064,0,1,2,3,58.0,10,4,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014468616618194149,16172.935269136042,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +32594,1,39.0,385.0,1,400,821.0,,,85,63,0.0,0.0,,934.0,156.57158246980686,,71,0,0,0,0,0,0,0,0,2,90.0,1,,1,132619,2,3,0,0,2,,821.0,490.0,42,1.0,0.0,3.0,5.0,2.5999999999999996,3,2,160.76476493398545,821.0,29989.163709018623,6,1,3,4,69.0,0,1,0,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.0311445830588173,11534.293734237934,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +32595,2,62.0,0.0,2,111,830.0,0.0,0.0,86,22,1898.4291318658827,0.0,1415.3164509988108,2720.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,132620,1,1,4,0,2,,190.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,1167.00306098363,830.0,9360.887186977916,6,1,0,1,100.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.29057074886917095,6240.591457985277,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +32596,2,63.0,0.0,2,111,390.0,900.0,0.0,0,52,0.0,0.0,665.0282119151038,1290.0,0.0,1708.65364314581,60,0,0,0,0,0,0,0,0,3,60.0,2,,2,132621,1,2,0,0,2,,0.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,279.935512391702,390.0,27408.67019391874,0,1,1,2,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.047065399046109756,27408.67019391874,7,4,7,7_0,7_4,7_0_1 +32597,1,42.0,456.0,2,111,240.0,0.0,0.0,85,55,0.0,0.0,409.2481304092947,240.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,132622,2,2,0,1,1,280.0,0.0,231.0,42,1.0,0.0,3.0,5.0,2.4,2,2,176.924036898572,240.0,12343.312295921103,6,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019443727440916242,5143.046789967127,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +32598,0,25.0,0.0,2,112,0.0,0.0,0.0,0,56,0.0,0.0,0.0,337.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,80.0,2,,2,132623,2,1,0,1,1,,0.0,,32,1.0,0.0,3.0,3.0,1.6,1,1,256.537043234406,0.0,22460.67189853903,0,1,5,0,55.0,10,5,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015004003509882553,14037.919936586892,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +32599,2,40.0,0.0,8,112,1050.0,0.0,0.0,63,43,0.0,0.0,1790.4605705406643,1050.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,30.0,1,2001.0,6,132624,2,1,1,0,1,,588.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1474.4938884208,1050.0,53955.66921742704,1,1,1,2,130.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019460420290012128,22481.5288405946,6,3,6,6_1,6_0,6_0_0 +32600,1,18.0,330.0,7,111,0.0,,,84,81,0.0,0.0,,239.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,132625,2,1,0,0,2,,0.0,470.0,42,1.0,0.0,2.0,3.0,1.8,2,1,147.74503982733532,0.0,5214.799999999999,6,4,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.0458310961110685,2897.111111111111,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32601,2,43.0,0.0,5,120,325.0,0.0,0.0,48,48,708.7468758965962,556.2174563442941,554.1901765959199,1417.0,0.0,0.0,33,2,2,2,2,1,2,2,2,1,1.0,1,,3,132626,1,3,3,0,2,,252.0,440.0,43,2.0,0.0,5.0,4.0,2.3,4,3,579.826721806353,325.0,18056.662223688385,1,1,2,3,145.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.07847519006813172,7850.722705951473,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +32602,2,60.0,0.0,6,111,1000.0,0.0,0.0,33,47,0.0,0.0,1705.2005433720612,1130.0,180.1265993015477,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,132627,2,1,2,0,1,,400.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1350.93998060806,1000.0,11578.692164309778,1,4,0,1,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.09759306007660502,7719.128109539852,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +32603,2,52.0,0.0,9,112,600.0,,,0,45,0.0,0.0,,650.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,2,35.0,1,2004.0,6,132628,2,1,0,0,2,,200.0,489.0,32,1.0,0.0,3.0,2.0,1.5,2,1,97.53720651032994,600.0,36704.594343044824,0,1,2,3,96.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01770895474078898,24469.729562029883,7,4,7,7_1,7_2,7_0_0 +32604,2,60.0,0.0,1,111,223.0,480.0,0.0,0,77,0.0,0.0,380.25972117196966,703.0,0.0,911.2819430110987,50,0,0,0,0,0,0,0,0,0,,1,,1,132629,2,1,2,0,1,,93.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,284.472620281418,223.0,19912.946790155547,0,5,0,1,83.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03530366486729856,19912.946790155547,5,3,5,5_1,5_3,5_1_0 +32605,1,45.0,357.0,7,111,390.0,,,0,68,0.0,0.0,,516.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,3,30.0,1,,5,132630,2,1,0,0,2,,564.0,428.0,32,1.0,1.0,4.0,2.0,1.5,2,1,126.58750255200196,390.0,10070.401461342959,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05123926806500798,6713.60097422864,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32606,2,68.0,0.0,1,111,250.0,0.0,0.0,0,86,0.0,1191.8945493092015,426.3001358430153,1210.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132631,2,2,2,0,2,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,132.608631447418,250.0,12179.189235589354,0,6,0,1,80.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09934979879154886,12179.189235589354,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +32607,1,29.0,400.0,5,211,180.0,,,0,63,0.0,0.0,,220.0,55.423569015860835,,50,0,0,0,0,0,0,0,0,2,10.0,2,,3,132632,2,1,0,0,2,,480.0,650.0,32,1.0,0.0,2.0,3.0,1.6,1,1,115.2458367081629,180.0,31421.7560253536,0,1,2,3,30.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.007001518305421451,19638.597515846,5,3,5,5_0,5_2,5_0_0 +32608,2,34.0,0.0,2,111,0.0,0.0,0.0,54,47,0.0,0.0,0.0,1087.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,45.0,2,,2,132633,1,1,0,1,1,792.0,0.0,465.0,43,2.0,0.0,4.0,4.0,2.1,2,2,987.353730792034,0.0,43671.95834420441,1,1,2,3,71.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024890113501041405,20796.170640097338,5,3,5,5_0,5_4,5_0_1 +32610,2,31.0,0.0,7,112,290.0,560.0,0.0,43,54,0.0,0.0,494.50815757789775,850.0,0.0,1063.162266846282,31,0,0,0,0,0,0,0,0,2,20.0,2,,5,132635,1,1,0,0,1,,180.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,2258.68663110247,290.0,38835.22969338264,1,1,1,2,69.0,9,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.021887343185840267,25890.153128921756,7,4,7,7_0,7_2,7_0_0 +32611,2,44.0,0.0,6,111,250.0,1200.0,0.0,0,37,0.0,0.0,426.3001358430153,1450.0,0.0,2278.2048575277468,10,0,0,0,0,0,0,0,0,0,,1,,4,132636,2,3,3,0,1,,250.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,348.760214976272,250.0,51317.48759376214,0,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02825547523835235,34211.65839584143,9,5,9,9_1,9_3,9_0_0 +32612,2,84.0,0.0,1,112,600.0,0.0,0.0,77,77,0.0,463.51454695357836,1023.1203260232367,1286.0,465.55797973323104,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132637,2,1,1,0,1,,200.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,3810.86766104358,600.0,20984.539777484933,5,5,0,1,70.0,8,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.061283212004477484,13989.693184989956,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +32613,0,70.0,0.0,2,112,610.0,1200.0,0.0,0,75,0.0,0.0,1040.1723314569574,1810.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,0,,1,,2,132638,1,3,3,0,2,,500.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1346.06143868668,610.0,17183.00850837796,0,5,0,1,70.0,9,0,9,0,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.10533661780575236,17183.00850837796,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +32614,2,61.0,0.0,2,111,25.0,23.0,0.0,54,67,0.0,0.0,42.63001358430153,48.0,0.0,43.66559310261515,50,2,1,2,1,1,2,2,2,2,30.0,2,,2,132639,1,3,0,1,1,841.0,0.0,375.0,43,2.0,2.0,4.0,2.0,1.5,2,2,70.814722268213,25.0,28241.992440852515,4,1,2,3,84.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.001699596800775543,18827.994960568343,5,3,5,5_0,5_3,5_0_1 +32615,2,86.0,0.0,5,111,1400.0,0.0,0.0,0,78,0.0,0.0,2387.2807607208856,1400.0,0.0,0.0,71,2,2,2,2,1,2,2,2,0,,2,,3,132640,1,3,0,0,1,,300.0,,21,0.0,2.0,3.0,2.0,1.5,2,2,2065.67668649791,1400.0,64036.90491157639,0,5,0,1,69.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,1,0,0,0,0,0.021862393286077017,42691.26994105093,9,5,9,9_0,9_2,9_0_0 +32616,1,33.0,100.0,5,111,0.0,0.0,0.0,55,65,0.0,0.0,0.0,1084.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,132641,2,2,1,0,1,,338.0,610.0,43,2.0,0.0,4.0,4.0,2.1,2,2,237.337597837774,0.0,33915.9608340421,1,4,2,3,75.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.031961353101692715,16150.457540020045,4,2,4_1,4_1_1,4_2_1,4_0_0_1 +32617,2,42.0,0.0,9,112,1580.0,0.0,0.0,23,23,0.0,0.0,2694.216858527857,2103.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,132642,2,1,1,0,1,,215.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,290.351891320193,1580.0,157371.17538138927,1,1,1,2,180.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013363311260168048,74938.6549435187,10,5,10,10_1,10_0,10_0_0 +32618,1,83.0,270.0,2,111,250.0,1520.0,0.0,0,78,0.0,0.0,426.3001358430153,1770.0,0.0,2885.7261528684794,71,0,0,0,0,0,0,0,0,0,,2,,2,132643,2,2,0,0,1,,230.0,462.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2608.70279987161,250.0,18449.024311019966,0,5,2,3,60.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09594003293403132,18449.024311019966,4,2,4_1,4_0_1,4_2_1,4_0_1_1 +32619,2,68.0,0.0,1,111,290.0,900.0,0.0,0,78,0.0,397.2981831030672,494.50815757789775,1490.0,0.0,1708.65364314581,71,2,2,1,2,2,2,2,1,0,,1,,1,132644,2,1,1,0,1,,180.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,615.968839399841,290.0,18221.901898695327,0,5,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0.08176973009094526,18221.901898695327,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +32620,1,33.0,490.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,398.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132645,2,1,0,1,1,,440.0,1150.0,32,1.0,0.0,4.0,3.0,1.6,1,1,212.571493015775,0.0,10678.333992653977,0,4,2,3,65.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03727173173959524,6673.958745408736,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +32621,2,38.0,0.0,8,111,600.0,0.0,0.0,0,34,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,20,2,2,2,2,1,2,2,2,1,10.0,2,2003.0,6,132646,2,3,0,0,1,,0.0,680.0,12,1.0,0.0,4.0,1.0,1.0,1,1,2352.16112597112,600.0,29492.64680231962,0,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0.02034405402884388,29492.64680231962,8,4,8,8_0,8_3,8_0_0 +32622,2,37.0,0.0,6,111,0.0,0.0,0.0,56,37,0.0,0.0,0.0,3215.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,4,132647,2,1,0,0,1,,0.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,756.704333392678,0.0,57093.53301545337,1,1,0,1,60.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05631110618307337,38062.35534363558,9,5,9,9_0,9_4,9_0_0 +32623,2,50.0,0.0,1,111,500.0,500.0,0.0,85,48,0.0,0.0,852.6002716860306,1000.0,0.0,949.2520239698945,50,2,2,1,2,1,2,2,2,3,60.0,2,,1,132648,2,3,0,1,1,1167.0,0.0,367.0,42,2.0,2.0,4.0,4.0,2.3,3,3,780.276624701654,500.0,27676.50470992451,6,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03613173016177185,12033.262917358483,2,1,2_0,2_0_0,2_4_0,2_1_0_0 +32624,1,44.0,459.0,7,111,0.0,,,0,85,0.0,0.0,,611.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,132649,2,1,0,0,2,,0.0,,31,0.0,0.0,4.0,4.0,1.9,1,1,134.2241366246862,0.0,4452.20167001216,0,6,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13723547253382418,2343.2640368485054,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32626,1,70.0,112.0,2,111,150.0,144.0,0.0,0,78,474.6072829664707,0.0,255.78008150580916,744.0,0.0,273.3845829033296,71,2,1,2,1,2,2,2,2,0,,2,,2,132651,2,2,0,1,1,44.0,180.0,269.0,11,0.0,3.0,2.0,1.0,1.0,1,1,198.024958482269,150.0,12081.093134708042,0,5,2,3,60.0,9,7,3,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.06158383117356705,12081.093134708042,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32627,2,63.0,0.0,5,111,490.0,953.0,0.0,77,74,0.0,0.0,835.54826625231,1443.0,0.0,1809.274357686619,41,0,0,0,0,0,0,0,0,0,,1,,3,132652,1,2,3,0,2,,648.0,,41,1.0,0.0,6.0,3.0,2.0,3,3,1885.5370056405,490.0,83451.24857666451,5,5,0,1,110.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017291532776461133,41725.624288332256,9,5,9,9_1,9_2,9_0_0 +32628,2,58.0,0.0,5,112,1400.0,0.0,0.0,11,67,0.0,456.89291056852727,2387.2807607208856,1795.0,69.27946126982604,0.0,60,2,2,2,2,2,2,2,1,2,30.0,1,,3,132653,1,2,3,0,1,,163.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1164.01803868096,1400.0,26137.400227855964,1,1,0,1,92.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.06867553713651202,17424.93348523731,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +32629,2,57.0,0.0,2,111,312.0,0.0,0.0,0,52,0.0,0.0,532.0225695320831,655.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,1,10.0,2,,2,132654,2,1,0,1,1,,204.0,435.0,12,1.0,2.0,3.0,1.0,1.0,1,1,226.639348880022,312.0,16314.88627959802,0,1,2,3,55.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.040147383731328,16314.88627959802,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +32630,1,59.0,300.0,7,111,480.0,,,0,63,0.0,0.0,,630.0,207.83838380947813,,10,0,0,0,0,0,0,0,0,0,,2,,5,132655,2,3,0,0,2,,190.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,53.39571135190053,480.0,12267.110206439222,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.051356838684737824,12267.110206439222,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +32631,1,54.0,90.0,6,111,1500.0,0.0,0.0,0,78,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,60,2,2,2,2,1,2,2,2,0,,1,,4,132656,1,2,3,0,2,,239.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,525.034402658883,1500.0,11609.076936120277,0,7,1,2,90.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,1,0,0,1,0.12920923930936545,11609.076936120277,2,1,2_1,2_1_1,2_3_1,2_0_0_1 +32632,2,31.0,0.0,9,111,700.0,0.0,0.0,54,55,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,2007.0,6,132657,2,2,0,0,1,,275.0,510.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1822.42843715651,700.0,39871.2635584638,1,1,2,3,49.0,4,4,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.017556504046418796,26580.8423723092,7,4,7,7_0,7_2,7_0_0 +32633,2,59.0,0.0,2,400,1700.0,0.0,0.0,52,77,0.0,542.9741835741918,2898.840923732504,2110.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,132658,2,2,2,0,1,,450.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1172.75321539632,1700.0,46790.14882455814,1,5,0,1,120.0,0,0,5,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.045094962358669645,31193.432549705427,8,4,8,8_1,8_0,8_0_1 +32635,2,49.0,0.0,2,111,319.0,308.0,0.0,52,64,0.0,0.0,543.9589733356875,627.0,0.0,584.739246765455,71,0,0,0,0,0,0,0,0,2,25.0,2,,2,132660,2,2,0,1,1,1243.0,560.0,358.0,43,2.0,2.0,4.0,3.0,1.8,2,2,1919.35218184323,319.0,33701.420142238254,1,1,2,3,70.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018604557236867773,18723.01119013236,5,3,5,5_0,5_3,5_0_1 +32636,2,74.0,0.0,5,112,500.0,0.0,0.0,86,77,1582.0242765549024,397.2981831030672,852.6002716860306,2340.0,55.423569015860835,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132661,1,2,2,0,2,,300.0,,41,1.0,0.0,5.0,3.0,2.0,3,3,1621.16882861625,500.0,11579.485876820649,6,5,0,1,80.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.20208151077623562,5789.742938410324,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +32637,1,38.0,220.0,9,111,400.0,,,63,55,0.0,0.0,,620.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,1,5.0,1,2009.0,6,132662,2,1,0,0,1,,280.0,,43,2.0,0.0,5.0,5.0,2.8,4,2,193.5481189232246,400.0,11365.016796053444,1,1,1,2,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05455337296248414,4058.9345700190875,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32638,2,68.0,0.0,1,120,1000.0,0.0,0.0,0,74,4218.731404146406,662.163638505112,1705.2005433720612,5600.0,138.5589225396521,0.0,10,0,0,0,0,0,0,0,0,0,,1,,1,132663,2,2,1,0,1,,200.0,,11,0.0,4.0,12.0,1.0,1.0,1,1,2554.4191792802,1000.0,54131.6679521005,0,5,0,1,220.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10345145848739176,54131.6679521005,10,5,10,10_1,10_0,10_1_0 +32639,2,66.0,0.0,5,111,2000.0,0.0,0.0,86,78,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,132664,2,1,3,0,1,,450.0,,41,0.0,3.0,4.0,3.0,2.0,3,3,379.435184775176,2000.0,40542.84016254674,6,5,0,1,100.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04933053510759193,20271.42008127337,5,3,5,5_1,5_3,5_0_0 +32640,2,30.0,0.0,7,112,330.0,250.0,0.0,0,67,0.0,0.0,562.7161793127802,580.0,0.0,474.62601198494724,42,0,0,0,0,0,0,0,0,2,5.0,2,,5,132665,2,1,0,0,1,,230.0,331.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2287.25094728842,330.0,19892.80553119096,0,1,2,3,50.0,9,3,5,0,1,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.029156269541296624,19892.80553119096,5,3,5,5_0,5_1,5_0_0 +32641,2,61.0,0.0,1,120,918.0,0.0,0.0,52,78,0.0,13.243272770102239,1565.374098815552,1128.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132666,1,1,2,0,1,,270.0,,42,1.0,0.0,6.0,5.0,2.4,3,2,985.353084156949,918.0,33431.57194773926,1,5,0,1,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03374056122049261,13929.82164489136,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +32642,2,48.0,0.0,1,112,480.0,0.0,0.0,35,63,0.0,397.2981831030672,818.4962608185893,2280.0,2078.3838380947814,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132667,1,1,3,0,2,,450.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,915.715989057075,480.0,15256.93519459103,1,1,0,1,180.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.14944023625454722,6633.450084604796,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +32643,1,40.0,434.0,2,111,780.0,144.0,0.0,43,63,63.280971062196095,0.0,1330.0564238302077,984.0,0.0,273.3845829033296,71,2,1,2,1,1,2,2,2,0,,2,,2,132668,1,3,0,1,1,1010.0,0.0,383.0,43,3.0,0.0,5.0,6.0,2.8999999999999995,3,3,404.97421138487,780.0,20197.395653624993,4,4,2,3,110.0,8,7,2,1,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.04871915255189811,6964.619190905171,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32644,2,42.0,0.0,8,111,1200.0,0.0,0.0,0,37,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,2,1999.0,6,132669,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,880.021160550916,1200.0,61020.95974973422,0,1,1,2,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019665374076736422,61020.95974973422,10,5,10,10_0,10_4,10_0_0 +32645,2,46.0,0.0,5,111,800.0,0.0,0.0,54,37,0.0,0.0,1364.160434697649,800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,2,,3,132670,1,1,0,1,2,494.0,0.0,980.0,43,2.0,0.0,3.0,4.0,2.5,4,2,265.474620816234,800.0,65542.27849114739,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01220586190191807,26216.911396458956,7,4,7,7_0,7_4,7_0_0 +32646,2,57.0,0.0,6,120,1465.0,0.0,0.0,78,55,0.0,307.24392826637194,2498.11879604007,1877.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,4,132671,2,2,2,0,1,,187.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,2391.70235862666,1465.0,34225.945285172325,5,1,0,1,268.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.054841436353641665,22817.29685678155,6,3,6,6_1,6_0,6_0_0 +32647,2,57.0,0.0,2,111,675.0,,,0,22,0.0,0.0,,759.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,2,30.0,1,,2,132672,2,3,0,0,2,,150.0,,32,2.0,2.0,6.0,2.0,1.5,2,2,70.31146647197285,675.0,6220.739477966616,0,1,0,1,140.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.12201121790879044,4147.159651977744,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +32648,1,68.0,45.0,2,111,300.0,780.0,0.0,0,77,0.0,0.0,511.56016301161833,1080.0,0.0,1480.8331573930354,70,2,2,1,2,1,2,2,2,0,,2,,2,132673,1,3,0,0,1,,0.0,302.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2659.22337597976,300.0,13047.933321373705,0,5,2,3,46.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.08277172893203413,13047.933321373705,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32649,1,22.0,254.0,7,221,300.0,0.0,0.0,0,43,0.0,0.0,511.56016301161833,300.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,7.0,2,,5,132674,2,2,0,0,1,,150.0,255.0,12,1.0,0.0,1.0,1.0,1.0,1,1,2330.56584756076,300.0,17254.0,0,1,2,3,35.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.01738727251651791,17254.0,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +32650,1,37.0,219.0,2,111,120.0,,,0,68,0.0,0.0,,204.0,116.38949493330776,,71,0,0,0,0,0,0,0,0,1,35.0,1,,2,132675,2,2,0,0,2,,160.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,118.51594679427383,120.0,11801.727025934977,0,1,1,2,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.01728560570429211,11801.727025934977,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +32652,1,63.0,250.0,2,300,600.0,0.0,0.0,0,67,632.8097106219609,0.0,1023.1203260232367,1276.0,105.3047811301356,0.0,71,2,2,2,1,1,1,2,2,0,,1,,2,132677,1,3,3,0,1,,160.0,300.0,12,1.0,4.0,4.0,1.0,1.0,1,1,1303.64845727678,600.0,10418.90086919671,0,4,2,3,65.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,1,0,1,0.12246973227017359,10418.90086919671,2,1,2_1,2_1_1,2_0_1,2_0_1_1 +32653,2,43.0,0.0,9,111,1200.0,0.0,0.0,52,38,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,2012.0,6,132678,2,1,1,0,1,,400.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,3674.94662217433,1200.0,54366.13100343308,1,1,1,2,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022072565728913522,22652.554584763784,6,3,6,6_1,6_4,6_0_0 +32654,2,55.0,0.0,1,112,10000.0,0.0,0.0,62,38,0.0,0.0,17052.005433720613,10090.0,124.70303028568689,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,,1,132679,2,1,1,0,1,,230.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,1979.07639001687,10000.0,102477.94529197185,1,1,1,2,115.0,7,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09846020986518017,68318.63019464789,10,5,10,10_1,10_0,10_1_0 +32655,2,58.0,0.0,8,112,300.0,0.0,0.0,84,78,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,1,2001.0,6,132680,2,2,1,0,1,,400.0,,41,1.0,3.0,3.0,3.0,2.0,3,3,1714.44871562599,300.0,33214.16610493989,3,7,1,2,88.0,8,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.009032290591073472,16607.083052469945,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +32656,0,33.0,0.0,2,111,900.0,,,0,21,0.0,0.0,,942.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,0,,1,,2,132681,2,2,0,0,2,,150.0,,32,1.0,0.0,5.0,2.0,1.3,1,1,124.02173784455175,900.0,35570.51764223327,0,1,5,0,74.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026482605889365886,27361.93664787175,7,4,7,7_1,7_2,7_0_1 +32657,0,88.0,0.0,2,112,331.0,0.0,0.0,0,78,0.0,0.0,564.4213798561523,331.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,132682,2,2,2,0,1,,87.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1752.12820399641,331.0,25121.868921894515,0,5,0,1,96.0,9,4,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.013175771318173024,25121.868921894515,7,4,7,7_1,7_2,7_0_1 +32658,2,82.0,0.0,1,400,720.0,0.0,0.0,86,74,0.0,132.4327277010224,1227.744391227884,4020.0,4433.885521268867,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132683,2,3,1,0,1,,119.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,824.946782146066,720.0,58633.956669295556,5,5,0,1,120.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06856095389696132,39089.304446197035,9,5,9,9_1,9_0,9_1_0 +32659,1,30.0,281.0,2,111,600.0,,,0,54,0.0,0.0,,666.0,91.44888887617039,,43,0,0,0,0,0,0,0,0,0,,8,,2,132684,2,2,0,0,2,,260.0,337.0,32,1.0,0.0,3.0,2.0,1.3,1,1,128.45884346708505,600.0,18813.0,0,4,2,3,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.035401052463721897,14471.538461538461,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +32660,2,34.0,0.0,2,111,350.0,0.0,0.0,54,45,0.0,0.0,596.8201901802214,350.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,30.0,2,,2,132685,2,1,0,1,1,1032.0,0.0,517.0,43,2.0,0.0,4.0,4.0,2.3,3,2,232.917555601679,350.0,51269.617541428204,1,1,2,3,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006826655176765927,22291.138061490525,6,3,6,6_0,6_4,6_0_1 +32661,2,52.0,0.0,2,111,720.0,0.0,0.0,54,47,0.0,0.0,1227.744391227884,720.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,30.0,2,,2,132686,2,1,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,2.0,3,3,823.978464779219,720.0,57427.86620654601,1,1,0,1,58.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012537467392753828,28713.933103273004,8,4,8,8_0,8_4,8_0_1 +32662,2,24.0,0.0,9,111,0.0,,,0,46,0.0,0.0,,422.0,0.0,,41,0,0,0,0,0,0,0,0,2,15.0,2,2007.0,6,132687,2,1,0,0,1,,392.0,515.0,12,1.0,0.0,2.0,1.0,1.0,1,1,174.7079676438596,0.0,9676.351927058544,0,1,2,3,53.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.043611477050554244,9676.351927058544,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +32663,2,77.0,0.0,5,211,300.0,300.0,0.0,78,78,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,71,0,0,0,0,0,0,0,0,0,,2,,3,132688,1,3,0,1,2,802.0,300.0,288.0,41,0.0,3.0,3.0,2.0,1.5,2,2,262.790106460624,300.0,25109.768332858534,5,5,2,3,80.0,4,3,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02389508306274744,16739.845555239022,4,2,4_0,4_0_0,4_1_0,4_0_0_0 +32664,2,38.0,0.0,9,111,900.0,,,46,38,0.0,0.0,,965.0,90.06329965077386,,12,0,0,0,0,0,0,0,0,2,10.0,1,2010.0,6,132689,2,1,0,0,2,,200.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,116.34085606177645,900.0,94932.69816483473,1,1,1,2,190.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010165096101286821,45206.046745159394,10,5,10,10_1,10_3,10_0_0 +32665,2,54.0,0.0,6,112,1108.2,0.0,0.0,48,11,0.0,397.2981831030672,1889.7032421649183,1408.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132690,2,1,2,0,1,,492.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1444.72350319516,1108.2,7124.311028585964,4,1,0,1,160.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.19763314576672272,4749.540685723976,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +32666,2,59.0,0.0,5,111,2200.0,0.0,0.0,45,46,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,44,0,0,0,0,0,0,0,0,2,45.0,1,,3,132691,2,1,2,0,1,,300.0,,43,2.0,4.0,5.0,2.0,1.5,2,2,347.965312822645,2200.0,70011.2130572083,1,1,0,1,100.0,4,4,3,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031423537801042144,46674.14203813887,10,5,10,10_1,10_2,10_0_0 +32667,1,67.0,206.0,5,112,360.0,0.0,0.0,0,77,0.0,0.0,613.872195613942,360.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,3,132692,2,1,0,1,1,670.0,0.0,367.0,11,0.0,4.0,4.0,1.0,1.0,1,1,259.18422567105,360.0,10156.728888888889,0,5,2,3,75.0,10,5,1,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03544448256306493,10156.728888888889,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +32668,2,70.0,0.0,7,111,1200.0,0.0,0.0,54,75,0.0,185.40581878143135,2046.2406520464733,1340.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,132693,1,1,2,0,1,,600.0,,42,2.0,2.0,4.0,3.0,2.0,3,3,1672.84082952759,1200.0,75265.05732800234,4,5,0,1,110.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017803746487036202,37632.52866400117,9,5,9,9_1,9_3,9_0_0 +32669,1,66.0,150.0,5,111,155.0,55.0,0.0,0,77,0.0,0.0,264.3060842226695,210.0,0.0,104.4177226366884,70,0,0,0,0,0,0,0,0,0,,2,,3,132694,2,2,0,1,1,504.0,118.0,291.0,11,0.0,3.0,2.0,1.0,1.0,1,1,339.53016591034,155.0,12196.692108451522,0,5,2,3,50.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.017217783160606598,12196.692108451522,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +32670,1,34.0,94.0,9,300,650.0,0.0,0.0,67,63,0.0,397.2981831030672,1108.3803531918397,1010.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,132695,2,1,1,0,1,,600.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1950.19166416172,650.0,23778.340057035828,1,1,1,2,94.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042475631081789866,11323.019074778966,2,1,2_1,2_1_1,2_0_1,2_0_0_1 +32671,2,23.0,0.0,2,111,0.0,0.0,57.0,0,43,0.0,0.0,35.92814255364039,57.0,0.0,68.21373241118681,31,0,0,0,0,0,0,0,0,2,25.0,2,,2,132696,1,2,0,0,1,,170.0,304.0,12,1.0,0.0,3.0,1.0,1.0,1,1,890.594737592517,0.0,25304.177928356356,0,1,2,3,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002252592443879581,25304.177928356356,7,4,7,7_0,7_4,7_0_1 +32672,2,71.0,0.0,2,111,350.0,,,75,74,0.0,0.0,,438.0,121.93185183489385,,41,0,0,0,0,0,0,0,0,0,,1,,2,132697,2,1,0,0,2,,560.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,117.47680126261416,350.0,62111.69886572855,5,5,0,1,99.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0070518116232315105,41407.799243819034,9,5,9,9_1,9_2,9_0_1 +32673,2,47.0,0.0,9,111,1500.0,0.0,0.0,68,21,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2012.0,6,132698,2,1,1,0,1,,260.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,584.486212650847,1500.0,14545.505641728272,1,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10312463773667566,9697.003761152182,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +32674,2,67.0,0.0,7,111,557.0,2000.0,0.0,0,75,0.0,0.0,949.796702658238,2557.0,0.0,3797.008095879578,50,0,0,0,0,0,0,0,0,0,,1,,5,132699,2,1,2,0,1,,550.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,1302.41293428184,557.0,34142.04222335297,0,5,0,1,210.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07489300093041963,34142.04222335297,9,5,9,9_1,9_3,9_0_0 +32675,2,35.0,0.0,9,111,1800.0,0.0,0.0,65,68,0.0,304.5952737123515,3069.36097806971,2120.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,132700,2,1,1,0,1,,550.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1430.00660028456,1800.0,48086.41469339684,1,1,1,2,120.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04408729603812853,22898.29271114135,6,3,6,6_1,6_2,6_0_0 +32676,0,31.0,0.0,2,211,1000.0,0.0,0.0,68,46,0.0,0.0,1705.2005433720612,1080.0,110.84713803172167,0.0,42,0,0,0,0,0,0,0,0,2,10.0,1,,2,132701,2,1,2,0,1,,200.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,704.493883013839,1000.0,41155.847892778605,4,1,5,0,90.0,1,3,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.026241714247114363,27437.23192851907,7,4,7,7_1,7_1,7_0_1 +32677,2,54.0,0.0,2,111,640.0,1200.0,0.0,67,65,0.0,0.0,1091.3283477581192,1840.0,0.0,2278.2048575277468,71,2,2,2,2,2,1,2,2,2,5.0,1,,2,132702,1,2,3,0,2,,780.0,,43,3.0,0.0,4.0,6.0,3.3,5,4,1184.78809738636,640.0,54910.169376773505,1,1,0,1,80.0,6,4,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.03350927562023334,16639.44526568894,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +32678,2,52.0,0.0,8,111,300.0,0.0,0.0,0,37,843.7462808292812,0.0,511.56016301161833,1100.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,90.0,8,2003.0,6,132703,2,1,0,1,1,,272.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,895.01363455231,300.0,34179.55385563119,0,1,0,1,72.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03218298298000667,34179.55385563119,9,5,9,9_0,9_4,9_0_0 +32679,2,35.0,0.0,9,112,1905.0,0.0,0.0,54,37,0.0,132.4327277010224,3248.4070351237765,2090.0,117.77508415870429,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,2008.0,6,132704,2,1,1,0,1,,200.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1499.35712153097,1905.0,77422.63829058214,1,1,1,2,129.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026994688454762102,36867.9229955153,9,5,9,9_1,9_0,9_0_0 +32680,1,33.0,271.0,2,111,250.0,500.0,0.0,0,67,0.0,0.0,426.3001358430153,750.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,132705,2,1,0,0,1,,150.0,336.0,22,2.0,1.0,4.0,2.0,1.5,2,2,1587.0303625991,250.0,8531.335738556783,0,4,2,3,65.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.08791120440969481,5687.557159037856,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32681,2,54.0,0.0,7,111,1000.0,1500.0,0.0,46,23,0.0,0.0,1705.2005433720612,2500.0,0.0,2847.7560719096837,41,0,0,0,0,0,0,0,0,2,60.0,1,,5,132706,2,1,1,0,1,,500.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,855.799761740759,1000.0,155327.6262591664,1,1,0,1,165.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016095011944808283,62131.050503666556,10,5,10,10_1,10_4,10_0_0 +32682,2,47.0,0.0,1,112,1600.0,0.0,0.0,54,63,0.0,0.0,2728.320869395298,1690.0,124.70303028568689,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132707,2,1,1,0,1,,800.0,,43,2.0,0.0,11.0,4.0,2.5,4,2,733.271529572386,1600.0,42842.90949137523,4,1,1,2,400.0,6,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03944643396219896,17137.163796550092,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +32683,2,75.0,0.0,6,111,960.0,,,21,86,0.0,0.0,,1030.0,97.54548146791508,,71,0,0,0,0,0,0,0,0,0,,1,,4,132708,2,2,0,0,2,,674.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,113.50222619189918,960.0,29658.765195495424,1,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034728350732431586,19772.510130330284,5,3,5,5_1,5_3,5_0_0 +32684,0,56.0,0.0,9,400,0.0,0.0,0.0,0,48,0.0,0.0,0.0,872.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2011.0,6,132709,2,1,1,0,1,,100.0,,12,1.0,2.0,1.0,1.0,1.0,1,1,1253.78104131861,0.0,42713.287578034724,0,4,5,0,35.0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020415192775946035,42713.287578034724,9,5,9,9_1,9_0,9_0_0 +32685,2,80.0,0.0,1,111,725.0,1970.0,0.0,0,74,0.0,0.0,1236.2703939447445,2695.0,0.0,3740.0529744413843,41,0,0,0,0,0,0,0,0,0,,1,,1,132710,2,1,2,0,2,,200.0,,11,0.0,3.0,8.0,1.0,1.0,1,1,774.229969978989,725.0,54150.20835289042,0,5,0,1,145.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04976896824545915,54150.20835289042,10,5,10,10_1,10_4,10_1_0 +32686,2,31.0,0.0,2,111,0.0,0.0,0.0,46,22,0.0,0.0,0.0,832.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,2,132711,2,1,0,0,2,,0.0,1250.0,43,2.0,0.0,3.0,3.0,1.8,2,2,2241.51332640195,0.0,46155.271148196065,1,1,3,4,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.01802611011272367,25641.81730455337,7,4,7,7_0,7_3,7_0_1 +32687,2,54.0,0.0,2,111,290.0,180.0,0.0,0,56,0.0,0.0,494.50815757789775,470.0,0.0,341.730728629162,60,0,0,0,0,0,0,0,0,0,,2,,2,132712,2,1,0,1,1,1092.0,0.0,400.0,12,1.0,1.0,3.0,1.0,1.0,1,1,271.303365260063,290.0,19347.22988268983,0,1,2,3,58.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.024292883417926094,19347.22988268983,5,3,5,5_0,5_4,5_0_1 +32688,1,76.0,130.0,2,111,500.0,120.0,0.0,0,86,0.0,0.0,852.6002716860306,620.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,2,132713,2,1,0,1,2,,500.0,640.0,21,1.0,0.0,5.0,3.0,2.0,3,3,158.252962759247,500.0,34808.75524461561,0,5,2,3,75.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.017811610775593723,17404.377622307806,4,2,4_1,4_0_1,4_4_1,4_0_1_1 +32689,2,60.0,0.0,1,111,518.0,0.0,0.0,0,46,0.0,0.0,883.2938814667277,518.0,0.0,0.0,31,2,2,2,2,1,2,2,2,3,60.0,2,,1,132714,1,3,0,0,2,,0.0,617.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1181.72626311842,518.0,32286.710232822363,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.016043752871217152,32286.710232822363,8,4,8,8_0,8_4,8_1_0 +32690,2,80.0,0.0,6,111,537.0,840.0,0.0,86,78,0.0,0.0,915.6926917907969,1377.0,0.0,1594.7434002694229,71,0,0,0,0,0,0,0,0,0,,1,,4,132715,2,1,2,0,1,,345.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1444.69913314237,537.0,14106.078343295667,7,5,0,1,87.0,6,4,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09761749272110488,9404.052228863779,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +32691,2,52.0,0.0,1,111,1210.0,1175.0,0.0,34,38,0.0,0.0,2063.292657480194,2385.0,0.0,2230.742256329252,10,2,2,2,2,1,2,2,2,3,35.0,1,,1,132716,1,2,1,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,853.67966471405,1210.0,86683.70755365634,1,1,1,2,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,1,1,0,0,0,0,0.02751382084717257,34673.48302146253,9,5,9,9_1,9_4,9_1_0 +32692,2,87.0,0.0,2,111,412.0,590.0,0.0,0,78,0.0,0.0,702.5426238692892,1002.0,0.0,1120.1173882844755,71,0,0,0,0,0,0,0,0,0,,2,,2,132717,2,1,0,1,1,,0.0,,11,0.0,4.0,2.0,1.0,1.0,1,1,1105.15708691795,412.0,17890.737952068608,0,5,0,1,52.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05600663330291215,17890.737952068608,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +32693,2,51.0,0.0,5,112,1000.0,0.0,0.0,85,54,3164.0485531098047,0.0,1705.2005433720612,4080.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,132718,1,2,2,0,2,,800.0,,42,1.0,0.0,4.0,2.0,1.5,2,2,2054.03323251137,1000.0,47646.218820002076,7,1,1,2,140.0,7,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08563113928123924,31764.145880001382,8,4,8,8_1,8_0,8_0_0 +32694,2,88.0,0.0,2,111,1500.0,105.0,0.0,0,78,0.0,0.0,2557.8008150580918,1605.0,0.0,199.34292503367786,71,0,0,0,0,0,0,0,0,0,,2,,2,132719,2,2,0,0,1,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1823.84596229677,1500.0,19840.10006798445,0,5,0,1,75.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0808967693963376,19840.10006798445,5,3,5,5_0,5_3,5_0_1 +32695,2,46.0,0.0,1,400,400.0,0.0,0.0,0,11,809.9964295961099,0.0,682.0802173488245,1268.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132720,2,1,2,0,2,,350.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,789.07603896068,400.0,15772.973335289444,0,1,0,1,130.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.08039067670031862,10515.315556859628,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +32696,2,35.0,0.0,9,111,2000.0,0.0,0.0,43,37,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,12,2,2,1,1,1,2,2,2,2,15.0,1,2011.0,6,132721,2,1,1,0,1,,2300.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,2397.95453152069,2000.0,65211.80925685604,1,1,1,2,170.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.030669291694122566,36228.782920475576,9,5,9,9_1,9_3,9_0_0 +32697,1,42.0,600.0,1,111,500.0,0.0,0.0,85,21,1476.555991451242,0.0,852.6002716860306,2284.0,532.0662625522641,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,132722,2,3,0,2,1,,0.0,780.0,42,1.0,0.0,4.0,6.0,2.6999999999999997,2,2,577.84624389706,500.0,11770.560009319095,6,1,2,3,55.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.19404344382864458,4359.466670118184,1,1,1_1,1_0_1,1_4_1,1_1_0_1 +32698,2,60.0,0.0,2,112,1070.0,811.0,0.0,46,62,0.0,0.0,1824.5645814081054,1881.0,0.0,1539.686782879169,50,0,0,0,0,0,0,0,0,2,30.0,1,,2,132723,2,1,2,0,1,,496.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,861.260317493722,1070.0,47144.24843736838,4,1,0,1,112.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03989882249366915,31429.498958245586,8,4,8,8_1,8_1,8_0_1 +32699,2,53.0,0.0,1,111,2500.0,0.0,0.0,35,38,3442.4848257834674,0.0,4263.001358430153,5834.0,96.99124577775646,0.0,12,0,0,0,0,0,0,0,0,3,70.0,1,,1,132724,2,1,1,0,2,,690.0,,43,2.0,1.0,7.0,4.0,2.5,4,4,480.04053833111,2500.0,176316.88424227855,1,1,0,1,200.0,10,8,1,1,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03308815276013754,70526.75369691142,10,5,10,10_1,10_4,10_1_0 +32700,2,61.0,0.0,5,111,600.0,1086.0,0.0,43,77,0.0,0.0,1023.1203260232367,1686.0,0.0,2061.775396062611,50,0,0,0,0,0,0,0,0,0,,2,,3,132725,2,2,0,1,1,,0.0,,42,1.0,0.0,4.0,4.0,2.3,3,2,652.256909946789,600.0,72899.90904935522,1,5,0,1,93.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023127600870647618,31695.612630154446,8,4,8,8_0,8_4,8_0_0 +32701,2,64.0,0.0,2,111,600.0,,,0,86,0.0,0.0,,720.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,0,,1,,2,132726,1,2,0,0,2,,600.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,123.15086385507271,600.0,3676.741153946433,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.1958255884364303,3676.741153946433,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +32702,2,37.0,0.0,9,221,1380.0,0.0,0.0,43,63,0.0,0.0,2353.1767498534446,1380.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,132727,2,1,1,0,1,,260.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,1613.75533860164,1380.0,55069.65466644359,1,1,1,2,140.0,1,2,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.025059172939410058,22945.689444351498,6,3,6,6_1,6_1,6_0_0 +32703,2,75.0,0.0,1,111,804.0,1378.0,0.0,77,77,0.0,0.0,1370.981236871137,2182.0,0.0,2616.1385780610294,70,0,0,0,0,0,0,0,0,0,,1,,1,132728,2,1,2,0,1,,357.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1583.44976747591,804.0,50428.417652600314,5,5,0,1,80.0,8,7,2,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04326925375750881,33618.945101733545,9,5,9,9_1,9_3,9_1_0 +32704,2,34.0,0.0,9,211,800.0,0.0,0.0,0,64,0.0,0.0,1364.160434697649,800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,2005.0,6,132729,2,1,1,0,1,,580.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1696.23508460213,800.0,33354.9734044864,0,1,3,4,27.0,2,3,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02398442925732917,33354.9734044864,8,4,8,8_1,8_1,8_0_0 +32705,1,54.0,200.0,5,111,100.0,,,0,68,0.0,0.0,,200.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,2,,3,132730,1,1,0,0,2,,120.0,270.0,12,1.0,3.0,1.0,1.0,1.0,1,1,128.9219421314448,100.0,6332.0,0,4,2,3,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03158559696778269,6332.0,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32706,2,56.0,0.0,2,111,1600.0,0.0,0.0,77,63,0.0,0.0,2728.320869395298,1600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,10.0,2,,2,132731,1,1,0,0,1,,0.0,511.0,42,1.0,0.0,3.0,2.0,1.5,2,2,442.248104238247,1600.0,30824.31285183086,5,1,2,3,50.0,9,7,3,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0519070776270351,20549.54190122057,5,3,5,5_0,5_3,5_0_1 +32707,2,51.0,0.0,7,111,480.0,,,0,52,0.0,0.0,,564.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,132732,2,1,0,0,2,,300.0,,12,1.0,1.0,5.0,1.0,1.0,1,1,84.5019418281039,480.0,37145.0979509909,0,1,1,2,102.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015183699360387727,37145.0979509909,9,5,9,9_1,9_2,9_0_0 +32708,2,29.0,0.0,1,111,240.0,120.0,0.0,0,62,0.0,0.0,409.2481304092947,360.0,0.0,227.8204857527747,71,0,0,0,0,0,0,0,0,0,,2,,1,132733,2,1,0,1,2,,0.0,612.0,22,2.0,3.0,3.0,2.0,1.5,2,2,620.085066713525,240.0,42618.33766691422,0,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.008447068086362218,28412.225111276148,8,4,8,8_0,8_4,8_1_0 +32709,2,48.0,0.0,6,300,1800.0,0.0,0.0,52,52,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,50,2,2,1,1,2,2,2,2,2,5.0,1,,4,132734,1,1,3,0,1,,200.0,,43,3.0,2.0,7.0,3.0,2.0,3,3,1273.82033112339,1800.0,55953.12481909305,1,1,0,1,130.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.032169785080274564,27976.562409546525,7,4,7,7_1,7_0,7_0_0 +32710,2,45.0,0.0,5,111,300.0,1700.0,0.0,55,33,0.0,0.0,511.56016301161833,2000.0,0.0,3227.4568814976415,42,2,2,2,2,1,2,2,2,1,20.0,1,,3,132735,1,3,2,0,2,,300.0,700.0,43,2.0,1.0,6.0,2.0,1.5,2,2,1288.7530409308,300.0,71532.98582293431,1,1,2,3,143.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0.027959129302257878,47688.65721528954,10,5,10,10_1,10_2,10_0_0 +32711,2,41.0,0.0,9,112,386.0,0.0,0.0,42,37,0.0,529.7309108040896,658.2074097416156,1986.0,1662.707070475825,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,2007.0,6,132736,2,1,4,0,1,,143.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,1251.48129157261,386.0,71883.71078474645,1,1,1,2,145.0,5,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027627956018394982,27647.58107105633,7,4,7,7_1,7_0,7_0_0 +32712,2,66.0,0.0,1,111,424.0,1164.0,0.0,0,74,0.0,0.0,723.005030389754,1588.0,0.0,2209.8587118019145,41,0,0,0,0,0,0,0,0,0,,1,,1,132737,2,1,2,0,1,,167.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,313.72144123124,424.0,42153.32288082842,0,5,0,1,115.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03767200048474072,42153.32288082842,9,5,9,9_1,9_3,9_1_0 +32713,2,75.0,0.0,7,112,0.0,1100.0,0.0,77,78,0.0,0.0,0.0,1941.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,5,132738,2,1,2,0,1,,202.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1616.13982525269,0.0,46580.62940418822,5,5,0,1,100.0,9,2,5,0,1,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04166968168587001,31053.752936125482,8,4,8,8_1,8_1,8_0_0 +32714,2,60.0,0.0,1,111,600.0,0.0,0.0,0,37,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,25.0,2,,1,132739,2,1,0,0,1,,500.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,640.27965243132,600.0,5428.578719626103,0,1,0,1,98.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.11052616734299202,5428.578719626103,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +32715,2,32.0,0.0,1,111,0.0,0.0,0.0,85,38,0.0,0.0,0.0,2314.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,30.0,1,,1,132740,1,3,3,0,1,,774.0,1200.0,42,1.0,0.0,6.0,4.0,2.1,2,2,1465.85936538509,0.0,84329.33200396199,6,1,2,3,135.0,4,4,2,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027440037114147695,40156.82476379142,9,5,9,9_1,9_2,9_1_0 +32716,0,45.0,0.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,327.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,132741,2,1,0,1,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1321.85977475221,0.0,18365.853386233608,0,1,5,0,12.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.017804781140478208,18365.853386233608,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +32717,1,27.0,66.0,6,111,1430.0,0.0,0.0,0,56,0.0,927.0290939071567,2438.4367770220474,2295.0,228.62222219042596,0.0,50,2,2,2,2,1,2,1,2,0,,1,,4,132742,1,2,2,0,1,,970.0,,32,1.0,3.0,4.0,4.0,2.1,2,2,387.841831792822,1430.0,11654.976571522788,0,4,1,2,90.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,1,0,1,0.19691159273605863,5549.9888435822795,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32718,2,44.0,0.0,1,112,1500.0,0.0,0.0,46,46,0.0,423.78472864327165,2557.8008150580918,2120.0,415.67676761895626,0.0,31,0,0,0,0,0,0,0,0,2,3.0,1,,1,132743,2,2,1,0,1,,0.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1069.23151292539,1500.0,67960.3190536703,1,1,0,1,105.0,8,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.031194674032147676,32362.056692223952,8,4,8,8_1,8_0,8_1_0 +32719,2,40.0,0.0,2,111,500.0,340.0,0.0,52,63,0.0,0.0,852.6002716860306,840.0,0.0,645.4913762995283,41,0,0,0,0,0,0,0,0,2,15.0,2,,2,132744,2,2,0,1,1,476.0,0.0,324.0,43,2.0,0.0,4.0,5.0,2.4,2,2,185.196202370839,500.0,33103.063127137764,1,1,2,3,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02537529523397402,13792.942969640735,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +32720,2,37.0,0.0,2,120,1200.0,0.0,0.0,37,46,1898.4291318658827,0.0,2046.2406520464733,3030.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,132745,2,1,1,0,1,,400.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,970.854263400688,1200.0,94056.599757079,1,1,1,2,170.0,0,0,4,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0322146453074597,52253.66653171056,10,5,10,10_1,10_0,10_0_1 +32721,2,43.0,0.0,9,112,1000.0,500.0,0.0,45,38,0.0,0.0,1705.2005433720612,1500.0,0.0,949.2520239698945,12,0,0,0,0,0,0,0,0,4,90.0,1,2007.0,6,132746,2,2,3,0,1,,1200.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,618.355428598578,1000.0,79407.35716426678,1,1,1,2,120.0,10,4,1,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01888993732529104,34524.9378975073,9,5,9,9_1,9_2,9_0_0 +32722,2,83.0,0.0,1,111,350.0,900.0,0.0,0,78,0.0,0.0,596.8201901802214,1250.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,1,132747,2,2,2,0,2,,300.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,1448.56001936274,350.0,22823.405604574953,0,5,0,1,80.0,5,4,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05476833833025504,22823.405604574953,6,3,6,6_1,6_2,6_1_0 +32723,2,37.0,0.0,2,111,0.0,0.0,3500.0,55,62,0.0,0.0,2206.114016451603,3500.0,0.0,4188.562516476382,71,2,2,2,2,1,1,2,2,0,,1,,2,132748,2,3,4,0,1,,300.0,650.0,43,2.0,0.0,7.0,4.0,2.1,2,2,340.629394918312,0.0,36918.600544932626,4,1,2,3,140.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,1,0,0,0.09480316015067378,17580.28597377744,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +32724,2,55.0,0.0,7,221,1498.0,0.0,0.0,62,69,0.0,0.0,2554.3904139713477,1558.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,5.0,1,,5,132749,2,2,1,0,1,,434.0,,43,3.0,4.0,4.0,3.0,2.0,3,3,1552.45974126937,1498.0,45403.27491394266,1,1,1,2,70.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03431470533685141,22701.63745697133,6,3,6,6_1,6_1,6_0_0 +32725,2,61.0,0.0,5,112,1000.0,0.0,0.0,0,75,0.0,423.78472864327165,1705.2005433720612,1400.0,110.84713803172167,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,132750,2,1,2,0,1,,200.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1286.96819645139,1000.0,69774.35777829784,0,5,0,1,150.0,6,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020064677692174286,69774.35777829784,10,5,10,10_1,10_0,10_0_0 +32726,2,65.0,0.0,1,111,0.0,0.0,1270.0,0,75,0.0,0.0,800.5042288267247,1270.0,0.0,1519.8498274071446,10,0,0,0,0,0,0,0,0,0,,2,,1,132751,2,2,0,0,2,,0.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,505.901194651471,0.0,36756.37708853181,0,5,0,1,56.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03455182748128479,36756.37708853181,9,5,9,9_0,9_4,9_1_0 +32727,2,50.0,0.0,6,111,864.0,,,0,42,0.0,0.0,,952.0,121.93185183489385,,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,132752,2,1,0,0,1,,128.0,770.0,12,1.0,0.0,4.0,1.0,1.0,1,1,130.5947344965228,864.0,53601.0,0,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017760862670472565,53601.0,10,5,10,10_1,10_2,10_0_0 +32728,2,51.0,0.0,2,111,3000.0,,,47,34,0.0,0.0,,3189.0,261.87636359994247,,10,0,0,0,0,0,0,0,0,0,,1,,2,132753,2,3,0,0,2,,3000.0,,43,2.0,2.0,9.0,2.0,1.5,2,2,92.90359818548373,3000.0,104083.99512755805,1,1,0,1,200.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03063871631840981,69389.3300850387,10,5,10,10_1,10_3,10_0_1 +32729,2,62.0,0.0,7,111,450.0,,,0,52,0.0,0.0,,516.0,91.44888887617039,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,132754,2,1,0,0,2,,380.0,,12,1.0,2.0,2.0,1.0,1.0,1,1,150.14661326352274,450.0,24162.278035865373,0,1,0,1,59.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021355602283612222,24162.278035865373,6,3,6,6_1,6_2,6_0_0 +32730,2,33.0,0.0,5,120,1980.0,0.0,0.0,85,48,0.0,397.2981831030672,3376.297075876681,2280.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,1,,3,132755,2,1,1,0,1,,600.0,,42,1.0,0.0,6.0,4.0,2.1,2,2,2476.78865771379,1980.0,53492.36859068473,6,1,1,2,200.0,0,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04262290229558172,25472.556471754633,7,4,7,7_1,7_1,7_0_0 +32731,2,70.0,0.0,2,300,750.0,0.0,0.0,77,74,1582.0242765549024,0.0,1278.9004075290459,2274.0,33.25414140951651,0.0,60,0,0,0,0,0,0,0,0,0,,1,,2,132756,2,2,2,0,1,,270.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,267.890922207451,750.0,44881.664582620084,5,5,0,1,80.0,0,0,3,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05066656999349754,29921.10972174672,8,4,8,8_1,8_0,8_0_1 +32732,2,75.0,0.0,7,111,500.0,0.0,0.0,0,77,0.0,0.0,852.6002716860306,640.0,193.98249155551292,0.0,70,0,0,0,0,0,0,0,0,0,,2,,5,132757,2,1,0,0,1,,200.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2175.09234240347,500.0,23679.748617819663,0,5,0,1,108.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.027027313943627864,23679.748617819663,6,3,6,6_0,6_2,6_0_0 +32733,2,78.0,0.0,1,112,0.0,0.0,0.0,0,86,0.0,0.0,0.0,765.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,132758,2,1,0,0,1,,244.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,697.72458254786,0.0,32613.581875761956,0,6,0,1,75.0,10,4,1,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.023456485181976877,32613.581875761956,8,4,8,8_0,8_2,8_1_0 +32734,2,32.0,0.0,2,112,0.0,0.0,0.0,11,47,0.0,0.0,0.0,1696.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,40.0,1,,2,132759,2,1,1,0,1,,509.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,949.742276971533,0.0,60138.56290156412,1,1,0,1,167.0,8,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.028201538549832716,33410.31272309118,8,4,8,8_1,8_0,8_0_1 +32735,1,71.0,31.0,1,112,866.0,0.0,0.0,0,78,0.0,0.0,1476.703670560205,936.0,96.99124577775646,0.0,70,2,2,2,2,1,2,2,2,0,,2,,1,132760,2,2,0,0,1,,0.0,331.0,11,0.0,0.0,2.0,1.0,1.0,1,1,4282.6977070183,866.0,13154.206720247654,0,5,2,3,40.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,0,1,1,0,1,0.07115594424704146,13154.206720247654,2,1,2_1,2_0_1,2_1_1,2_1_0_1 +32736,2,53.0,0.0,2,111,1110.0,,,0,22,0.0,0.0,,1362.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,2,132761,1,1,0,0,1,,260.0,,32,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,120.50088187147271,1110.0,19928.87589925484,0,4,0,1,100.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06834304186975877,7664.95226894417,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +32737,1,32.0,40.0,2,111,400.0,300.0,0.0,85,63,0.0,0.0,682.0802173488245,700.0,0.0,569.5512143819367,41,1,2,2,1,1,1,2,2,2,45.0,2,,2,132762,1,3,0,1,1,914.0,350.0,310.0,42,1.0,0.0,3.0,2.0,1.5,2,2,913.517312342531,400.0,15469.864510148507,6,1,2,3,45.0,7,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.045249265081849135,10313.243006765671,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +32738,2,39.0,0.0,1,111,900.0,0.0,0.0,85,63,0.0,198.6490915515336,1534.680489034855,1250.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,2,70.0,1,,1,132763,2,1,2,0,1,,500.0,,42,1.0,0.0,6.0,6.0,2.8999999999999995,3,2,1734.44500624244,900.0,39981.735894413134,6,1,1,2,100.0,7,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03126427535065253,13786.805480832118,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +32739,2,66.0,0.0,5,111,249.0,79.0,0.0,0,77,0.0,0.0,424.5949352996432,328.0,0.0,149.98181978724332,44,0,0,0,0,0,0,0,0,0,,2,,3,132764,1,1,0,1,2,411.0,0.0,702.0,11,0.0,0.0,1.0,1.0,1.0,1,1,687.770214838564,249.0,21411.2477427962,0,5,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015319051180020807,21411.2477427962,6,3,6,6_0,6_4,6_0_0 +32740,1,38.0,460.0,9,111,840.0,1200.0,0.0,85,67,0.0,0.0,1432.3684564325313,2040.0,0.0,2278.2048575277468,50,2,2,1,1,2,2,2,2,2,10.0,1,2010.0,6,132765,2,2,1,0,1,,600.0,531.0,42,1.0,0.0,5.0,7.0,3.1999999999999993,3,2,431.517088373875,840.0,28511.887111313656,7,1,2,3,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,1,0.0715491048360148,8909.96472228552,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +32741,1,72.0,54.0,5,111,180.0,490.0,0.0,0,77,0.0,0.0,306.936097806971,670.0,0.0,930.2669834904966,70,0,0,0,0,0,0,0,0,0,,2,,3,132766,2,2,0,0,1,,0.0,381.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1242.21681639062,180.0,13216.929033662253,0,5,2,3,55.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05069256241700127,13216.929033662253,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +32742,2,76.0,0.0,2,112,500.0,0.0,0.0,72,78,0.0,556.2174563442941,852.6002716860306,985.0,90.06329965077386,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132767,2,2,2,0,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1287.23653881457,500.0,21639.148568030105,5,5,0,1,100.0,9,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.045519351045782315,14426.099045353403,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +32743,2,53.0,0.0,2,111,180.0,1445.0,0.0,48,48,0.0,0.0,306.936097806971,1625.0,0.0,2743.338349272995,50,2,2,2,2,1,2,2,2,2,15.0,2,,2,132768,2,1,0,0,1,,0.0,700.0,43,2.0,2.0,3.0,2.0,1.5,2,2,325.726497709651,180.0,38879.62564390196,1,1,2,3,83.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.04179566991933914,25919.750429267977,7,4,7,7_0,7_3,7_0_1 +32744,1,30.0,350.0,7,112,420.0,,,0,81,0.0,0.0,,590.0,235.55016831740858,,71,0,0,0,0,0,0,0,0,0,,2,,5,132769,2,2,0,0,2,,150.0,412.0,32,1.0,0.0,3.0,2.0,1.3,1,1,87.40585037127347,420.0,9391.060610609375,0,4,2,3,70.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.06282570462099442,7223.892777391827,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +32745,2,57.0,0.0,2,111,544.5,950.0,0.0,56,62,0.0,786.650402544073,928.4816958660873,2089.0,0.0,1803.5788455427996,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,132770,2,1,1,0,1,,300.0,,43,2.0,6.0,5.0,3.0,2.0,3,3,382.980265291112,544.5,38042.171288813435,1,1,1,2,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.054912743653364626,19021.085644406718,5,3,5,5_1,5_3,5_0_1 +32746,2,82.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,653.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,132771,1,2,0,0,2,,192.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,670.476331884527,0.0,20516.286315954014,0,5,0,1,70.0,8,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03182837234496039,20516.286315954014,5,3,5,5_0,5_3,5_0_1 +32747,1,62.0,157.0,6,111,350.0,700.0,0.0,85,63,0.0,0.0,596.8201901802214,1050.0,0.0,1328.9528335578523,71,0,0,0,0,0,0,0,0,0,,3,,4,132772,2,2,0,0,2,,0.0,466.0,42,1.0,3.0,3.0,2.0,1.5,2,2,372.83308040713,350.0,12807.214864033724,6,4,2,3,50.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.08198503821066487,8538.14324268915,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +32748,2,67.0,0.0,5,112,740.0,0.0,0.0,75,74,3164.0485531098047,79.45963662061344,1261.8484020953254,3800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,1,,3,132773,2,2,1,0,1,,339.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,69.3710531843566,740.0,78670.10188390252,5,5,0,1,140.0,7,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.048302975450671894,52446.734589268344,10,5,10,10_1,10_0,10_0_0 +32750,2,61.0,0.0,9,111,240.0,,,85,78,0.0,0.0,,460.0,304.8296295872346,,71,2,2,1,2,2,2,2,1,0,,1,2004.0,6,132775,1,1,0,0,2,,190.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,112.20749131961445,240.0,8327.993579620676,7,7,0,1,72.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.05523539320751399,5551.995719747117,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +32751,2,64.0,0.0,2,111,272.0,493.0,0.0,0,78,0.0,0.0,463.81454779720065,765.0,0.0,935.9624956343159,50,0,0,0,0,0,0,0,0,0,,1,,2,132776,1,1,1,0,1,,289.0,,11,0.0,2.0,2.0,1.0,1.0,1,1,1195.24442943205,272.0,18599.42322023994,0,5,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04113030769510772,18599.42322023994,4,2,4_0,4_1_0,4_4_0,4_0_1_0 +32752,2,52.0,0.0,1,112,720.0,0.0,0.0,0,22,0.0,529.7309108040896,1227.744391227884,1270.0,207.83838380947813,0.0,41,0,0,0,0,0,0,0,0,0,,8,,1,132777,2,1,0,0,1,,400.0,,32,1.0,2.0,4.0,2.0,1.5,2,1,1109.0593862252,720.0,37149.6528386694,0,1,0,1,100.0,8,0,7,0,0,1,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.03418605297646405,24766.435225779598,7,4,7,7_0,7_0,7_1_0 +32753,2,69.0,0.0,2,111,465.0,1231.0,0.0,34,74,0.0,0.0,792.9182526680084,1696.0,0.0,2337.05848301388,44,0,0,0,0,0,0,0,0,0,,1,,2,132778,2,2,3,0,1,,258.0,,42,1.0,3.0,8.0,2.0,1.5,2,2,1148.23595850693,465.0,31088.869295715915,1,5,0,1,175.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.054553286704245335,20725.91286381061,5,3,5,5_1,5_3,5_0_1 +32754,2,56.0,0.0,5,111,240.0,0.0,0.0,0,37,0.0,0.0,409.2481304092947,240.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,3,132779,1,1,0,1,2,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,2481.75681462551,240.0,41654.02479841637,0,1,0,1,45.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00576174814226174,41654.02479841637,9,5,9,9_0,9_3,9_0_0 +32755,2,55.0,0.0,9,111,1000.0,,,38,37,0.0,165.540909626278,,1235.0,152.4148147936173,,42,0,0,0,0,0,0,0,0,0,,1,2009.0,6,132780,2,1,0,0,1,,410.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,297.0989030000754,1000.0,93169.3212315694,4,1,1,2,103.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013255436271027956,62112.88082104627,10,5,10,10_1,10_2,10_0_0 +32756,2,85.0,0.0,1,111,650.0,1500.0,0.0,0,86,0.0,0.0,1108.3803531918397,2150.0,0.0,2847.7560719096837,70,2,2,2,1,2,2,2,2,0,,1,,1,132781,2,2,2,0,2,,350.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,403.73681787307,650.0,13901.408855198808,0,5,0,1,100.0,4,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.1546605831390931,13901.408855198808,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +32757,0,59.0,0.0,2,111,340.0,,,0,71,0.0,0.0,,436.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,2,132782,2,2,0,0,2,,240.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,104.17365885741695,340.0,6523.275411699327,0,5,0,1,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0668375888618845,6523.275411699327,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +32758,1,28.0,237.0,1,111,162.0,540.0,0.0,0,85,0.0,0.0,276.2424880262739,702.0,0.0,1025.192185887486,50,0,0,0,0,0,0,0,0,0,,2,,1,132783,1,2,0,1,1,,0.0,225.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1636.04404528918,162.0,6060.0,0,7,2,3,35.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.11584158415841585,6060.0,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +32759,1,47.0,589.0,5,111,1500.0,0.0,0.0,56,67,0.0,0.0,2557.8008150580918,1500.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,60.0,2,,3,132784,1,1,0,0,2,,0.0,589.0,43,2.0,2.0,3.0,6.0,2.6999999999999997,2,2,669.730437199325,1500.0,33849.58563771765,4,1,2,3,71.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04431368868304821,12536.883569525058,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +32760,2,62.0,0.0,1,112,658.0,2025.0,0.0,71,11,0.0,0.0,1122.0219575388162,2683.0,0.0,3844.4706970780726,50,2,2,2,1,1,2,2,2,0,,5,,1,132785,1,3,4,0,2,,658.0,,42,1.0,2.0,7.0,2.0,1.5,2,2,210.28097817498,658.0,22907.995543990848,5,1,0,1,154.0,8,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.11712067932123359,15271.997029327233,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +32761,2,49.0,0.0,1,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,1118.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,132786,2,2,0,1,1,1900.0,0.0,214.0,32,1.0,2.0,3.0,2.0,1.3,1,1,344.095323280577,0.0,11465.6,0,1,2,3,40.0,7,5,2,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.09750907061121965,8819.692307692309,1,1,1_0,1_0_0,1_2_0,1_1_0_0 +32762,2,61.0,0.0,5,112,652.0,1020.0,0.0,77,75,0.0,0.0,1111.7907542785838,1672.0,0.0,1936.4741288985847,50,0,0,0,0,0,0,0,0,0,,1,,3,132787,2,1,2,0,1,,360.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,78.0378187807101,652.0,46014.12811370668,7,5,0,1,80.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036336665901139716,30676.085409137788,8,4,8,8_1,8_0,8_0_0 +32763,2,67.0,0.0,8,111,0.0,0.0,970.0,0,74,0.0,0.0,611.4087417023015,970.0,0.0,1160.8301831377405,10,0,0,0,0,0,0,0,0,0,,2,2001.0,6,132788,2,1,0,0,1,,0.0,,11,0.0,3.0,5.0,1.0,1.0,1,1,1694.2459444786,0.0,72575.1998671574,0,5,0,1,100.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013365447174454922,72575.1998671574,10,5,10,10_0,10_3,10_0_0 +32764,2,39.0,0.0,9,112,1200.0,0.0,0.0,52,48,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,31,1,2,2,1,2,2,2,2,0,,1,2009.0,6,132789,2,1,1,0,1,,360.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,671.110678687168,1200.0,52982.683369242106,1,1,1,2,150.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.022648909486842502,22076.118070517547,6,3,6,6_1,6_0,6_0_0 +32765,0,26.0,0.0,7,111,0.0,,,0,54,0.0,0.0,,233.0,0.0,,43,0,0,0,0,0,0,0,0,2,15.0,1,,5,132790,2,1,0,0,1,,323.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,72.78201792262433,0.0,10299.829919343058,0,1,5,0,55.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022621732768851505,10299.829919343058,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +32766,2,51.0,0.0,2,300,323.0,0.0,0.0,0,52,0.0,0.0,550.7797755091758,363.0,55.423569015860835,0.0,31,0,0,0,0,0,0,0,0,2,45.0,2,,2,132791,2,2,0,1,1,674.0,135.0,256.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1693.52622455604,323.0,17567.735201700216,0,1,2,3,50.0,0,0,8,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020662879752699634,17567.735201700216,4,2,4_0,4_0_0,4_0_0,4_0_1_0 +32767,1,44.0,253.0,7,120,360.0,,,0,52,0.0,0.0,,448.0,121.93185183489385,,60,0,0,0,0,0,0,0,0,0,,2,,5,132792,2,1,0,0,2,,180.0,401.0,12,1.0,1.0,2.0,1.0,1.0,1,1,129.60890237783912,360.0,3286.967593472249,0,4,2,3,59.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.1362958371995225,3286.967593472249,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32768,2,46.0,0.0,7,111,1200.0,,,22,48,0.0,0.0,,2400.0,1662.707070475825,,71,0,0,0,0,0,0,0,0,2,20.0,1,,5,132793,2,2,0,0,2,,0.0,,43,3.0,0.0,5.0,6.0,3.3,5,4,100.0196452932877,1200.0,35901.33147669837,1,1,0,1,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06684988832678007,10879.191356575264,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +32769,2,46.0,0.0,9,111,0.0,0.0,1500.0,45,45,0.0,0.0,945.4774356221156,1500.0,0.0,1795.098221347021,60,0,0,0,0,0,0,0,0,3,60.0,2,2005.0,6,132794,2,1,0,0,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1241.55400405241,0.0,55835.1006516234,1,1,1,2,72.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.026864821277193984,37223.4004344156,9,5,9,9_0,9_3,9_0_0 +32770,2,29.0,0.0,1,111,0.0,0.0,0.0,55,62,0.0,0.0,0.0,865.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,20.0,1,,1,132795,2,1,2,0,1,,150.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,444.116863409955,0.0,45796.46074222229,1,1,1,2,78.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01888792247219464,30530.973828148195,8,4,8,8_1,8_4,8_1_0 +32771,2,57.0,0.0,1,111,600.0,1200.0,0.0,78,52,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,70,2,2,2,2,1,2,2,2,2,5.0,1,,1,132796,2,1,3,0,1,,440.0,,42,2.0,1.0,4.0,3.0,2.0,3,3,1377.09676599103,600.0,47355.61451730748,7,1,0,1,80.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.03801027646557385,23677.80725865374,6,3,6,6_1,6_2,6_1_0 +32772,2,55.0,0.0,6,111,2272.0,0.0,0.0,55,47,0.0,132.4327277010224,3874.215634541323,2472.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,60.0,1,,4,132797,1,2,2,0,1,,423.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1147.42893026831,2272.0,53142.91768417158,1,1,0,1,100.0,6,5,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04651607604029381,35428.61178944772,9,5,9,9_1,9_2,9_0_0 +32773,2,53.0,0.0,9,120,960.0,0.0,0.0,0,52,0.0,0.0,1636.9925216371787,960.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,2009.0,6,132798,2,1,1,0,1,,266.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,1876.43819652851,960.0,18988.569610986116,0,1,1,2,78.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0505567306894237,18988.569610986116,5,3,5,5_1,5_0,5_0_0 +32774,2,48.0,0.0,2,112,1550.0,0.0,0.0,46,48,0.0,397.2981831030672,2643.0608422266946,1850.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,1,,2,132799,2,1,2,0,1,,260.0,,43,2.0,1.0,6.0,5.0,3.0,5,3,1282.50911541354,1550.0,69906.90358444095,1,1,1,2,180.0,8,3,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.026463766883414803,23302.30119481365,6,3,6,6_1,6_1,6_0_1 +32775,2,49.0,0.0,6,111,470.0,816.0,0.0,54,64,0.0,0.0,801.4442553848687,1286.0,0.0,1549.179303118868,41,0,0,0,0,0,0,0,0,3,30.0,1,,4,132800,2,2,2,0,1,,368.0,,43,2.0,1.0,6.0,4.0,2.5,4,4,1055.18807718349,470.0,42491.79205887522,1,1,0,1,90.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030264668485107928,16996.716823550087,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +32776,2,64.0,0.0,5,111,727.0,0.0,0.0,75,74,1291.986492519837,0.0,1239.6807950314885,2042.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,132801,2,1,2,0,1,,258.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1036.92861708688,727.0,46076.54013853087,5,5,0,1,120.0,5,4,8,1,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04431756364216257,30717.69342568725,8,4,8,8_1,8_2,8_0_0 +32777,2,35.0,0.0,7,111,500.0,,,68,21,0.0,0.0,,620.0,166.2707070475825,,50,0,0,0,0,0,0,0,0,0,,1,,5,132802,2,1,0,0,2,,400.0,600.0,43,2.0,0.0,2.0,2.0,1.5,2,2,48.92748756214494,500.0,27440.546539566712,4,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02259430216180344,18293.697693044476,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +32778,2,40.0,0.0,1,112,0.0,1072.0,0.0,47,38,0.0,132.4327277010224,0.0,2418.0,0.0,2035.1963393914539,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,132803,2,2,1,0,1,,588.0,,43,2.0,0.0,6.0,5.0,2.4,2,2,500.093611232417,0.0,99590.26116370647,1,1,1,2,125.0,10,0,1,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02427948246892627,41495.94215154436,9,5,9,9_1,9_0,9_1_0 +32779,2,41.0,0.0,7,111,0.0,,,42,37,0.0,0.0,,629.0,0.0,,10,0,0,0,0,0,0,0,0,2,60.0,1,,5,132804,2,1,0,0,2,,626.0,1220.0,43,2.0,0.0,5.0,5.0,2.4000000000000004,2,2,115.5579903135613,0.0,81070.67571398229,1,1,2,3,110.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007758662358003711,33779.44821415928,9,5,9,9_1,9_3,9_0_0 +32780,2,60.0,0.0,9,111,0.0,,,0,75,0.0,0.0,,65.0,90.06329965077386,,60,0,0,0,0,0,0,0,0,0,,1,2005.0,6,132805,2,2,0,0,2,,0.0,450.0,11,0.0,1.0,2.0,1.0,1.0,1,1,121.61840972770649,0.0,28107.954805908164,0,7,3,4,35.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0023125126124913685,28107.954805908164,8,4,8,8_1,8_3,8_0_0 +32781,2,42.0,0.0,1,111,140.0,400.0,0.0,0,34,0.0,0.0,238.72807607208856,540.0,0.0,759.4016191759156,20,0,0,0,0,0,0,0,0,3,1.0,2,,1,132806,1,1,0,0,1,,160.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,2454.6407056484,140.0,32045.74542912395,0,1,1,2,80.0,6,4,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01685091087034708,32045.74542912395,8,4,8,8_0,8_2,8_1_0 +32782,1,30.0,180.0,6,300,1440.0,0.0,0.0,0,52,0.0,264.8654554020448,2455.488782455768,1640.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,5.0,1,,4,132807,2,2,3,0,1,,600.0,680.0,32,1.0,0.0,5.0,3.0,1.6,1,1,1141.99213040725,1440.0,14577.91841730131,0,1,2,3,87.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.11249891466353808,9111.199010813318,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +32783,2,25.0,0.0,9,111,390.0,0.0,0.0,85,46,0.0,0.0,665.0282119151038,390.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,5.0,2,2012.0,6,132808,2,1,0,0,1,,255.0,660.0,42,1.0,0.0,2.0,2.0,1.5,2,2,511.70541602641,390.0,30554.85010835524,7,1,2,3,43.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.012763931049144774,20369.900072236826,5,3,5,5_0,5_3,5_0_0 +32784,2,85.0,0.0,1,120,772.0,0.0,0.0,71,71,3164.0485531098047,0.0,1316.4148194832312,3892.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132809,2,1,2,0,1,,362.0,,41,0.0,4.0,9.0,2.0,1.5,2,2,553.63292600228,772.0,21959.92860088124,5,5,0,1,200.0,0,2,4,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17723190592904822,14639.952400587494,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +32785,2,44.0,0.0,1,111,0.0,0.0,1440.0,0,42,0.0,0.0,907.658338197231,1440.0,0.0,1723.2942924931403,31,0,0,0,0,0,0,0,0,2,5.0,8,,1,132810,2,2,0,0,1,,390.0,442.0,32,1.0,0.0,5.0,3.0,1.8,2,1,2825.33121191868,0.0,33711.73031346768,0,1,2,3,100.0,7,6,4,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04271510203155389,18728.7390630376,5,3,5,5_0,5_2,5_1_0 +32786,2,53.0,0.0,5,111,1200.0,,,52,68,0.0,132.4327277010224,,1363.0,87.29212119998083,,70,2,2,2,1,1,2,2,2,3,15.0,1,,3,132811,1,2,0,0,2,,252.0,600.0,43,2.0,2.0,3.0,2.0,1.5,2,2,124.90303119713704,1200.0,10036.720951305353,1,1,2,3,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,0,0.1358013246171531,6691.147300870235,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +32787,2,52.0,0.0,2,111,550.0,2200.0,0.0,55,43,0.0,0.0,937.8602988546337,2750.0,0.0,4176.708905467536,33,0,0,0,0,0,0,0,0,0,,1,,2,132812,2,3,2,0,1,,550.0,,43,2.0,1.0,8.0,4.0,2.5,4,3,299.058238350442,550.0,53514.08720378624,1,1,0,1,120.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05138833798150688,21405.634881514496,6,3,6,6_1,6_2,6_0_1 +32788,2,25.0,0.0,7,300,1000.0,0.0,0.0,54,47,0.0,357.56836479276046,1705.2005433720612,1270.0,0.0,0.0,31,2,1,2,1,1,2,2,2,2,40.0,1,,5,132813,1,2,3,0,1,,200.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1348.81611410074,1000.0,41739.42848231494,1,1,1,2,90.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,0,0,0.030426866063537523,23188.57137906386,6,3,6,6_1,6_0,6_0_0 +32789,1,63.0,118.0,5,111,390.0,576.0,0.0,86,67,0.0,0.0,665.0282119151038,1128.0,224.4654545142364,1093.5383316133184,71,0,0,0,0,0,0,0,0,0,,2,,3,132814,2,1,0,1,1,,384.0,268.0,42,1.0,5.0,3.0,2.0,1.5,2,2,1130.1482051745,390.0,14345.244618199109,6,4,2,3,66.0,7,5,4,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07863232939011452,9563.49641213274,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32790,1,75.0,255.0,1,112,120.0,0.0,0.0,0,77,0.0,0.0,204.62406520464734,340.0,96.99124577775646,0.0,70,0,0,0,0,0,0,0,0,0,,2,,1,132815,1,3,0,1,2,576.0,340.0,473.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2456.0594387608,120.0,9308.683662559415,0,5,2,3,50.0,8,2,8,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.03652503536751589,9308.683662559415,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +32791,2,54.0,0.0,2,211,450.0,0.0,0.0,0,42,2109.365702073203,0.0,767.3402445174275,2450.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,5.0,1,,2,132816,1,2,2,0,1,,150.0,414.0,12,1.0,1.0,4.0,1.0,1.0,1,1,342.50688830676,450.0,36255.780221737514,0,1,2,3,90.0,2,3,4,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06757543169712503,36255.780221737514,9,5,9,9_1,9_1,9_0_1 +32792,2,68.0,0.0,2,111,250.0,420.0,0.0,0,74,0.0,0.0,426.3001358430153,670.0,0.0,797.3717001347114,12,0,0,0,0,0,0,0,0,0,,2,,2,132817,2,2,0,0,1,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1750.18281255767,250.0,48978.3463969148,0,5,1,2,68.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.013679514505663345,48978.3463969148,10,5,10,10_0,10_2,10_0_1 +32793,1,65.0,138.0,2,111,180.0,200.0,0.0,0,77,0.0,0.0,306.936097806971,380.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,2,132818,2,1,0,0,1,,150.0,484.0,21,1.0,2.0,4.0,2.0,1.5,2,2,1729.87414381,180.0,16360.530339543577,0,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.02322663092904366,10907.020226362385,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32794,2,28.0,0.0,6,111,420.0,0.0,0.0,52,46,0.0,0.0,716.1842282162656,480.0,83.13535352379125,0.0,42,2,2,1,2,1,2,2,2,3,30.0,2,,4,132819,2,3,0,1,1,573.0,0.0,279.0,43,2.0,0.0,2.0,2.0,1.5,2,2,387.324511746829,420.0,47141.94060024733,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.010182016138671255,31427.960400164888,8,4,8,8_0,8_4,8_0_0 +32795,2,38.0,0.0,8,112,655.0,0.0,0.0,43,38,2109.365702073203,927.0290939071567,1116.9063559087,3355.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,25.0,1,2000.0,6,132820,2,1,2,0,1,,200.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1676.32538776336,655.0,86806.94849755873,1,1,1,2,136.0,8,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03864897981172962,57871.298998372484,10,5,10,10_1,10_0,10_0_0 +32796,1,43.0,236.0,2,111,200.0,200.0,0.0,0,63,0.0,0.0,341.04010867441224,400.0,0.0,379.7008095879578,60,2,2,2,2,1,2,2,2,0,,2,,2,132821,2,2,0,1,1,,0.0,350.0,12,1.0,0.0,3.0,1.0,1.0,1,1,300.557636550908,200.0,9477.884565334745,0,4,2,3,80.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.04220351041866404,9477.884565334745,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32797,1,48.0,357.0,6,111,480.0,,,0,68,0.0,0.0,,610.0,180.1265993015477,,50,0,0,0,0,0,0,0,0,1,10.0,2,,4,132822,2,1,0,0,1,,180.0,447.0,32,1.0,2.0,3.0,2.0,1.5,2,1,110.03392108172554,480.0,10521.742081449123,0,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05797519035136687,7014.494720966082,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32798,1,54.0,301.0,5,111,352.0,0.0,0.0,0,68,0.0,0.0,600.2305912669656,352.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,132823,2,2,0,1,1,554.0,0.0,344.0,32,2.0,2.0,4.0,3.0,2.0,3,2,287.079818382105,352.0,21816.73599520042,0,1,2,3,79.0,8,6,5,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.016134402509955584,10908.36799760021,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +32799,2,27.0,0.0,2,111,0.0,0.0,0.0,84,65,0.0,0.0,0.0,382.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,132824,1,3,0,1,1,564.0,0.0,314.0,42,1.0,0.0,2.0,2.0,1.5,2,2,833.76361223276,0.0,23354.517171346422,3,1,2,3,50.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.016356578780771135,15569.678114230948,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +32800,2,61.0,0.0,1,111,663.0,14008.0,0.0,77,74,0.0,0.0,1130.5479602556766,14671.0,0.0,26594.244703540564,20,0,0,0,0,0,0,0,0,0,,1,,1,132825,2,1,2,0,1,,570.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,915.34580904296,663.0,62172.89647762234,6,5,0,1,100.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.23597099107776778,41448.59765174823,9,5,9,9_1,9_3,9_1_0 +32801,2,60.0,0.0,6,111,600.0,0.0,0.0,52,65,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,4,132826,2,2,0,0,1,,0.0,580.0,43,2.0,1.0,3.0,2.0,1.5,2,2,836.454363801726,600.0,41513.67937672946,1,1,2,3,72.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014453067254171904,27675.78625115297,7,4,7,7_0,7_4,7_0_0 +32802,2,30.0,0.0,1,111,820.0,0.0,0.0,0,54,0.0,0.0,1398.2644455650902,820.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,1.0,2,,1,132827,1,2,0,0,2,,0.0,681.0,12,1.0,0.0,1.0,1.0,1.0,1,1,371.233618413462,820.0,30712.993488636304,0,1,3,4,20.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.026698797702783255,30712.993488636304,8,4,8,8_0,8_4,8_1_0 +32803,1,33.0,293.0,6,111,450.0,,,85,42,0.0,0.0,,690.0,332.541414095165,,60,0,0,0,0,0,0,0,0,0,,2,,4,132828,2,2,0,0,2,,360.0,426.0,42,1.0,0.0,3.0,4.0,2.1,2,2,108.06037156017379,450.0,21981.421400924723,6,1,2,3,79.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03139014476884433,10467.343524249867,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +32804,2,34.0,0.0,2,111,900.0,0.0,0.0,68,67,0.0,0.0,1534.680489034855,900.0,0.0,0.0,50,2,1,2,1,1,2,2,2,2,15.0,2,,2,132829,2,2,0,1,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,340.209890627103,900.0,36530.87814930734,1,1,1,2,67.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.024636692179190466,20294.932305170743,5,3,5,5_0,5_2,5_0_1 +32805,2,27.0,0.0,7,111,1800.0,,,0,46,0.0,0.0,,1892.0,127.47420873647992,,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,132830,2,3,0,0,2,,1200.0,1800.0,22,4.0,0.0,6.0,4.0,2.5,4,4,282.5207723327958,1800.0,111705.06582743625,0,1,2,3,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016937459245785606,44682.0263309745,10,5,10,10_1,10_2,10_0_0 +32806,2,29.0,0.0,6,211,120.0,0.0,0.0,56,38,0.0,0.0,204.62406520464734,120.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,20.0,1,,4,132831,2,1,3,0,1,,600.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,762.927091859437,120.0,50120.07005928934,1,1,1,2,78.0,1,3,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.002394250444144361,27844.483366271856,7,4,7,7_1,7_1,7_0_0 +32807,1,61.0,115.0,2,111,327.0,0.0,0.0,0,86,0.0,0.0,557.600577682664,327.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132832,2,1,0,1,1,,0.0,276.0,11,0.0,0.0,3.0,1.0,1.0,1,1,2037.48901348493,327.0,11684.068046693064,0,7,2,3,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.027986827763516034,11684.068046693064,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32808,2,83.0,0.0,2,111,500.0,,,0,86,0.0,0.0,,500.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,132833,2,2,0,0,2,,300.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,26.809089413170355,500.0,19957.74869114945,0,5,0,1,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02505292594558685,19957.74869114945,5,3,5,5_1,5_2,5_0_1 +32809,2,54.0,0.0,1,112,1000.0,0.0,0.0,45,47,2109.365702073203,39.72981831030672,1705.2005433720612,3150.0,166.2707070475825,0.0,42,2,2,2,2,2,2,1,2,0,,1,,1,132834,2,1,2,0,1,,410.0,,43,4.0,0.0,6.0,5.0,3.0,5,5,335.625216280261,1000.0,108137.3236282402,1,1,0,1,120.0,9,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.029129627905617718,36045.77454274674,9,5,9,9_1,9_0,9_1_0 +32810,2,40.0,0.0,5,120,500.0,0.0,0.0,0,52,1265.6194212439218,0.0,852.6002716860306,1766.0,91.44888887617039,0.0,60,0,0,0,0,0,0,0,0,1,5.0,1,,3,132835,2,1,2,0,1,,520.0,,32,1.0,0.0,7.0,4.0,2.1,2,1,1700.61223814507,500.0,24370.390600661456,0,1,1,2,148.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07246498543819267,11604.947905076884,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +32811,2,69.0,0.0,1,112,911.0,0.0,0.0,0,77,0.0,0.0,1553.4376950119477,911.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,132836,2,1,1,0,1,,185.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1424.61558356754,911.0,21846.609830775997,0,5,0,1,40.0,6,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.041699833844088985,21846.609830775997,6,3,6,6_1,6_0,6_1_0 +32812,2,76.0,0.0,1,111,600.0,1200.0,0.0,0,77,0.0,0.0,1023.1203260232367,1800.0,0.0,2278.2048575277468,44,0,0,0,0,0,0,0,0,0,,2,,1,132837,2,1,0,0,2,,0.0,,11,0.0,1.0,2.0,1.0,1.0,1,1,1212.41403536008,600.0,23007.889223126753,0,5,0,1,36.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.07823403453241164,23007.889223126753,6,3,6,6_0,6_4,6_1_0 +32813,1,25.0,110.0,9,400,1110.0,0.0,0.0,56,11,0.0,0.0,1892.772603142988,1170.0,83.13535352379125,0.0,50,2,2,2,2,1,1,2,2,2,10.0,1,2006.0,6,132838,1,2,5,0,1,,173.0,370.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1959.45940514458,1110.0,21365.52688438231,1,1,2,3,57.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,1,0,1,0.05476111150131486,14243.684589588207,3,2,3_1,3_1_1,3_0_1,3_0_0_1 +32814,1,84.0,66.0,2,111,250.0,60.0,0.0,72,78,0.0,0.0,426.3001358430153,310.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,2,,2,132839,2,1,0,1,1,696.0,0.0,352.0,41,0.0,3.0,4.0,2.0,1.5,2,2,274.628413534487,250.0,19790.121228878535,5,5,2,3,82.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01566438105228156,13193.41415258569,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +32815,1,40.0,340.0,2,111,600.0,600.0,0.0,0,64,0.0,0.0,1023.1203260232367,1200.0,0.0,1139.1024287638734,42,0,0,0,0,0,0,0,0,0,,2,,2,132840,2,1,0,0,1,,0.0,460.0,32,1.0,3.0,4.0,2.0,1.5,2,1,323.416143500845,600.0,7890.822514445774,0,4,2,3,78.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.15207540124025767,5260.548342963849,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32816,2,57.0,0.0,7,400,900.0,0.0,0.0,0,75,0.0,0.0,1534.680489034855,966.0,91.44888887617039,0.0,31,2,2,2,2,1,2,2,2,0,,1,,5,132841,1,3,3,1,1,958.0,234.0,219.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1244.54224428038,900.0,11269.560027426136,0,7,2,3,53.0,0,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.08571763206807512,11269.560027426136,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +32817,1,71.0,241.0,2,111,600.0,200.0,0.0,85,78,0.0,0.0,1023.1203260232367,800.0,0.0,379.7008095879578,71,2,1,2,2,1,2,2,2,0,,2,,2,132842,2,1,0,1,1,1302.0,400.0,530.0,41,1.0,4.0,4.0,4.0,2.5,4,4,342.166990832604,600.0,18598.80405883918,6,5,2,3,110.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.043013518367585345,7439.521623535673,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32818,2,26.0,0.0,2,111,240.0,0.0,0.0,0,47,0.0,0.0,409.2481304092947,240.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,35.0,2,,2,132843,2,1,0,1,1,,0.0,470.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1381.78248849865,240.0,21545.47927371633,0,1,3,4,13.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01113922772155641,21545.47927371633,6,3,6,6_0,6_4,6_0_1 +32819,2,57.0,0.0,1,111,1200.0,0.0,0.0,0,64,0.0,0.0,2046.2406520464733,1400.0,277.1178450793042,0.0,44,2,2,2,1,1,1,1,2,2,40.0,1,,1,132844,1,3,4,0,2,,240.0,623.0,12,1.0,1.0,3.0,1.0,1.0,1,1,337.277848985229,1200.0,24498.47670784631,0,1,2,3,70.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,0,0.05714641023176807,24498.47670784631,7,4,7,7_1,7_3,7_1_0 +32820,2,47.0,0.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,685.0,0.0,0.0,42,0,0,0,0,0,0,0,0,1,15.0,2,,2,132845,2,2,0,0,1,,0.0,630.0,32,2.0,0.0,5.0,4.0,2.3,3,2,1376.02608960183,0.0,40277.826478664865,0,1,2,3,95.0,8,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017006875988277173,17512.098468984725,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +32821,1,47.0,82.0,2,111,0.0,0.0,2165.0,0,46,0.0,0.0,1364.6390987479201,2165.0,0.0,2590.925099477534,20,0,0,0,0,0,0,0,0,0,,2,,2,132846,2,1,0,0,1,,0.0,613.0,32,1.0,0.0,3.0,3.0,2.0,3,3,354.165986606566,0.0,25561.603106870556,0,1,2,3,64.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08469734824331429,12780.801553435278,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32822,2,32.0,0.0,2,120,720.0,0.0,0.0,0,63,0.0,198.6490915515336,1227.744391227884,1006.0,188.44013465392686,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,132847,1,2,2,0,1,,250.0,,22,2.0,2.0,4.0,3.0,2.0,3,3,1474.8086604122,720.0,39019.60610616978,0,1,1,2,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.025781910695426815,19509.80305308489,5,3,5,5_1,5_0,5_0_1 +32823,2,85.0,0.0,2,400,627.0,0.0,0.0,0,86,3207.2905500023053,0.0,1069.1607406942824,3788.0,166.2707070475825,0.0,70,2,2,2,1,2,2,2,2,0,,1,,2,132848,1,2,4,0,2,,157.0,,11,0.0,5.0,9.0,1.0,1.0,1,1,1686.708233814,627.0,47299.26945538449,0,5,0,1,132.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.08008580351485278,47299.26945538449,10,5,10,10_1,10_0,10_0_1 +32824,2,29.0,0.0,1,300,0.0,0.0,0.0,55,62,0.0,0.0,0.0,814.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,132849,2,1,1,0,1,,565.0,390.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1082.95570968802,0.0,34758.417994076226,1,1,2,3,60.0,0,0,5,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.023418787360769053,16551.627616226775,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +32825,0,79.0,0.0,1,111,1080.0,0.0,0.0,0,77,0.0,0.0,1841.6165868418261,5130.0,5611.63636285591,0.0,71,2,2,1,1,1,2,2,2,0,,1,,1,132850,1,1,1,0,1,,1352.0,,11,0.0,1.0,7.0,1.0,1.0,1,1,734.473843087298,1080.0,27656.567959361695,0,5,0,1,200.0,7,5,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.185489392882659,27656.567959361695,7,4,7,7_1,7_2,7_1_0 +32827,2,29.0,0.0,1,111,2000.0,1000.0,0.0,0,46,0.0,0.0,3410.4010867441225,3000.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,0,,1,,1,132852,2,2,3,0,1,,180.0,,22,2.0,2.0,11.0,3.0,2.0,3,2,742.938909540133,2000.0,33501.91714888098,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.08954711417463478,16750.95857444049,4,2,4_0,4_1_0,4_4_0,4_1_0_0 +32828,1,70.0,196.0,2,111,180.0,772.0,0.0,0,78,0.0,0.0,306.936097806971,952.0,0.0,1465.6451250095172,71,2,2,2,2,2,2,2,1,0,,2,,2,132853,1,3,0,1,2,,0.0,206.0,11,0.0,0.0,2.0,1.0,1.0,1,1,324.549308382978,180.0,9866.697949631402,0,5,2,3,30.0,3,4,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,1,0,0,1,0.09648618057022458,9866.697949631402,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +32829,2,50.0,0.0,5,120,432.0,,,78,56,0.0,0.0,,511.0,109.73866665140446,,50,0,0,0,0,0,0,0,0,0,,1,,3,132854,2,1,0,0,1,,128.0,,42,1.0,4.0,5.0,4.0,2.5,4,4,71.6258318909671,432.0,49700.43882697809,5,1,0,1,150.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010281599359292218,19880.175530791235,5,3,5,5_1,5_1,5_0_0 +32830,1,48.0,400.0,1,221,800.0,1200.0,0.0,0,22,0.0,0.0,1364.160434697649,2000.0,0.0,2278.2048575277468,50,1,2,2,2,1,2,2,2,0,,1,,1,132855,2,1,2,0,1,,720.0,450.0,32,2.0,0.0,6.0,4.0,2.3,3,3,549.382967297697,800.0,10734.637362420654,0,1,2,3,140.0,1,3,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,1,0.18631276795632726,4667.233635835067,1,1,1_1,1_1_1,1_1_1,1_1_0_1 +32831,0,65.0,0.0,2,111,435.0,69.0,0.0,0,77,0.0,0.0,741.7622363668467,504.0,0.0,130.99677930784543,70,2,2,2,2,1,2,2,2,0,,2,,2,132856,2,3,0,1,1,829.0,0.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,409.917219191144,435.0,24798.60961439449,0,5,5,0,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.020323720072896765,24798.60961439449,7,4,7,7_0,7_3,7_0_1 +32832,2,36.0,0.0,2,111,1450.0,0.0,0.0,37,67,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,2,,2,132857,1,2,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,2009.49575217102,1450.0,58072.214435493224,1,1,1,2,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.024968911795341713,32262.34135305179,8,4,8,8_0,8_3,8_0_1 +32833,2,78.0,0.0,2,111,315.0,0.0,0.0,77,75,0.0,0.0,537.1381711621992,395.0,110.84713803172167,0.0,70,0,0,0,0,0,0,0,0,0,,2,,2,132858,1,2,0,1,1,804.0,0.0,363.0,41,0.0,1.0,4.0,2.0,1.5,2,2,719.774195663374,315.0,28367.649288763125,5,5,2,3,86.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013924312021033966,18911.76619250875,5,3,5,5_0,5_4,5_0_1 +32834,2,31.0,0.0,1,120,815.0,1377.0,0.0,43,62,0.0,0.0,1389.7384428482299,2192.0,0.0,2614.2400740130893,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,132859,2,1,2,0,1,,484.0,,43,2.0,0.0,8.0,3.0,1.8,2,2,224.371079519313,815.0,39458.48346047986,1,1,1,2,167.0,0,0,3,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055552058968394595,21921.37970026659,6,3,6,6_1,6_0,6_1_0 +32835,2,39.0,0.0,1,111,900.0,0.0,0.0,0,46,0.0,0.0,1534.680489034855,995.0,131.6309764126695,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,132860,2,2,2,0,1,,220.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,116.039452166996,900.0,6517.415174459714,0,4,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.15266788648039203,5013.396288045934,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +32836,2,29.0,0.0,6,111,444.0,720.0,0.0,46,53,0.0,0.0,757.1090412571951,1164.0,0.0,1366.922914516648,43,1,2,2,1,1,2,2,2,2,30.0,1,,4,132861,1,1,2,0,1,,240.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,569.829511909089,444.0,43122.875804356605,1,1,1,2,67.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.02699263391618246,28748.58386957107,8,4,8,8_1,8_2,8_0_0 +32837,1,49.0,270.0,2,111,390.0,0.0,0.0,0,56,0.0,0.0,665.0282119151038,390.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132862,2,2,0,0,1,,0.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,580.60074966413,390.0,14964.045909170036,0,4,3,4,35.0,7,6,5,0,0,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.026062470161295495,14964.045909170036,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +32838,1,49.0,170.0,2,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,354.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,2,132863,1,3,0,1,2,,0.0,230.0,12,1.0,1.0,1.0,1.0,1.0,1,1,476.962242431477,0.0,5631.841614444656,0,4,3,4,16.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.06285688132493888,5631.841614444656,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32839,2,27.0,0.0,1,112,1000.0,0.0,0.0,0,63,0.0,927.0290939071567,1705.2005433720612,2300.0,831.3535352379125,0.0,43,2,2,2,1,1,2,2,2,2,30.0,5,,1,132864,1,3,4,0,2,,490.0,,12,1.0,0.0,6.0,1.0,1.0,1,1,832.289694760097,1000.0,19663.111779600247,0,1,1,2,80.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.11697029573854964,19663.111779600247,5,3,5,5_1,5_0,5_1_0 +32840,2,55.0,0.0,1,111,549.0,1800.0,0.0,0,37,0.0,0.0,936.1550983112616,2349.0,0.0,3417.30728629162,12,0,0,0,0,0,0,0,0,2,20.0,1,,1,132865,2,1,2,0,2,,693.0,,32,1.0,0.0,5.0,3.0,2.0,3,3,407.455168540725,549.0,127257.1934864223,0,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.01845868147524899,63628.59674321115,10,5,10,10_1,10_4,10_1_0 +32841,2,34.0,0.0,1,111,260.0,0.0,0.0,0,37,0.0,0.0,443.3521412767359,260.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,20.0,2,,1,132866,2,1,0,1,1,518.0,0.0,461.0,12,1.0,0.0,2.0,1.0,1.0,1,1,536.985917148076,260.0,26500.64910360379,0,1,2,3,37.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009811080437446452,26500.64910360379,7,4,7,7_0,7_3,7_1_0 +32842,0,60.0,0.0,7,111,511.0,,,21,45,0.0,0.0,,711.0,277.1178450793042,,60,2,2,1,2,1,1,2,2,2,25.0,1,,5,132867,1,2,0,0,2,,500.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,106.38896011888745,511.0,66816.48502458568,1,1,0,1,176.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.010641086548302887,33408.24251229284,8,4,8,8_1,8_2,8_0_0 +32843,0,83.0,0.0,2,120,0.0,,,0,77,0.0,0.0,,622.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,132868,2,2,0,0,2,,286.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,99.23011616020956,0.0,10597.574144486693,0,5,0,1,98.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05869267735424062,10597.574144486693,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +32844,2,59.0,0.0,6,112,474.0,0.0,0.0,0,45,0.0,476.7578197236806,808.265057558357,920.0,119.1606733841008,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,132869,1,1,2,0,1,,108.0,,12,1.0,2.0,5.0,1.0,1.0,1,1,1217.38328959222,474.0,21849.96037974477,0,1,0,1,70.0,4,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04210533950683285,21849.96037974477,6,3,6,6_1,6_0,6_0_0 +32845,2,31.0,0.0,2,111,610.0,260.0,0.0,0,81,0.0,0.0,1040.1723314569574,870.0,0.0,493.61105246434516,50,0,0,0,0,0,0,0,0,0,,2,,2,132870,2,1,0,0,1,,0.0,323.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1351.9894310306,610.0,36008.83545951193,0,4,2,3,72.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02416073691075685,36008.83545951193,9,5,9,9_0,9_4,9_0_1 +32846,2,39.0,0.0,7,111,350.0,0.0,0.0,0,65,0.0,0.0,596.8201901802214,350.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,5,132871,2,1,0,1,1,594.0,0.0,602.0,12,1.0,1.0,2.0,1.0,1.0,1,1,523.230919856211,350.0,12656.94777032443,0,4,2,3,46.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.027652796420683072,12656.94777032443,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +32847,0,42.0,0.0,1,111,0.0,0.0,0.0,0,54,0.0,0.0,0.0,620.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,25.0,2,,1,132872,2,1,0,0,1,,0.0,,32,1.0,0.0,2.0,2.0,1.5,1,1,1141.51143318317,0.0,30707.671840390714,0,1,5,0,27.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020190394218831516,20471.78122692714,5,3,5,5_0,5_4,5_1_0 +32848,1,25.0,70.0,2,111,0.0,0.0,0.0,0,42,0.0,0.0,0.0,499.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,132873,1,2,0,0,1,,88.0,450.0,12,1.0,0.0,2.0,1.0,1.0,1,1,599.424914311808,0.0,17186.358520219364,0,1,2,3,45.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.029034655562022504,17186.358520219364,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +32849,2,64.0,0.0,5,111,780.0,600.0,0.0,74,56,0.0,0.0,1330.0564238302077,1380.0,0.0,1139.1024287638734,70,0,0,0,0,0,0,0,0,0,,2,,3,132874,2,2,0,0,1,,0.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,945.458359801478,780.0,75125.21342317351,5,4,0,1,101.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018369332173828048,50083.47561544901,10,5,10,10_0,10_4,10_0_0 +32850,2,59.0,0.0,6,111,3500.0,0.0,0.0,21,37,0.0,463.51454695357836,5968.201901802214,3920.0,96.99124577775646,0.0,41,0,0,0,0,0,0,0,0,0,,1,,4,132875,2,1,2,0,1,,1150.0,,43,3.0,2.0,6.0,3.0,2.0,3,3,1512.44707196186,3500.0,76101.54140583162,1,1,0,1,160.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05151012617596747,38050.77070291581,9,5,9,9_1,9_3,9_0_0 +32851,1,40.0,410.0,2,111,670.0,1400.0,0.0,54,43,0.0,0.0,1142.484364059281,2070.0,0.0,2657.9056671157045,71,1,2,2,2,1,2,2,2,0,,2,,2,132876,2,3,0,0,1,,0.0,350.0,43,2.0,0.0,3.0,6.0,3.0999999999999996,4,3,1064.1181487316,670.0,29189.2745218239,4,4,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07091645934715939,9415.895007039968,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +32852,2,47.0,0.0,6,111,173.0,619.0,0.0,0,52,0.0,0.0,294.9996940033666,792.0,0.0,1175.1740056747294,70,0,0,0,0,0,0,0,0,3,20.0,2,,4,132877,2,2,0,0,1,,0.0,519.0,12,1.0,0.0,3.0,1.0,1.0,1,1,387.592950251108,173.0,19569.170489576376,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.04047182277970664,19569.170489576376,5,3,5,5_0,5_3,5_0_0 +32853,2,89.0,0.0,1,222,1200.0,0.0,0.0,0,77,0.0,1456.7600047112462,2046.2406520464733,2468.0,232.77898986661552,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,132878,2,3,2,0,2,,0.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1229.34268899721,1200.0,20743.199028144085,0,5,0,1,104.0,1,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.11897875523690689,20743.199028144085,5,3,5,5_1,5_0,5_1_0 +32854,1,44.0,130.0,9,221,630.0,350.0,0.0,0,21,0.0,0.0,1074.2763423243985,980.0,0.0,664.4764167789261,44,0,0,0,0,0,0,0,0,0,,1,2012.0,6,132879,2,1,1,0,1,,500.0,,32,1.0,0.0,4.0,3.0,2.0,3,2,1177.86304910408,630.0,10390.632115017765,0,1,1,2,100.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.09431572489065305,5195.316057508882,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +32855,2,34.0,0.0,8,112,590.0,0.0,0.0,22,48,2320.3022722805235,609.190547424703,1006.0683205895161,3370.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,0,,1,1999.0,6,132880,2,2,3,0,1,,288.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,841.83598826487,590.0,47080.57589168365,1,1,1,2,193.0,9,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07157941329675366,22419.32185318269,6,3,6,6_1,6_0,6_0_0 +32856,2,36.0,0.0,5,400,450.0,,,85,69,0.0,0.0,,582.0,182.89777775234077,,43,0,0,0,0,0,0,0,0,0,,1,,3,132881,1,3,0,0,2,,164.0,,42,1.0,1.0,3.0,4.0,2.1,2,2,114.54170300922651,450.0,9636.181818181818,6,4,0,1,80.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060397365988037514,4588.658008658009,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +32857,2,38.0,0.0,1,111,450.0,0.0,0.0,0,67,0.0,0.0,767.3402445174275,450.0,0.0,0.0,43,0,0,0,0,0,0,0,0,3,75.0,2,,1,132882,1,2,0,0,2,,15.0,390.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1014.90493583481,450.0,16479.716158352658,0,1,2,3,12.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.027306295549994645,16479.716158352658,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +32858,2,35.0,0.0,5,111,384.0,0.0,0.0,22,46,0.0,0.0,654.7970086548714,945.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,25.0,2,,3,132883,1,1,0,1,2,,0.0,,43,2.0,1.0,3.0,4.0,2.1,2,2,599.26209210759,384.0,59457.90655118447,4,1,1,2,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.015893596912741868,28313.288833897364,8,4,8,8_0,8_4,8_0_0 +32859,2,57.0,0.0,1,111,392.0,1218.0,0.0,0,34,0.0,0.0,668.438613001848,1610.0,0.0,2312.377930390663,10,0,0,0,0,0,0,0,0,2,12.0,1,,1,132884,2,1,2,0,1,,307.0,,32,1.0,1.0,6.0,2.0,1.5,2,2,287.022022819298,392.0,68929.96212494804,0,1,0,1,142.0,7,5,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02335704170389044,45953.308083298696,10,5,10,10_1,10_2,10_1_0 +32860,2,68.0,0.0,5,112,300.0,0.0,0.0,0,78,0.0,0.0,511.56016301161833,330.0,41.567676761895626,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132885,2,1,1,0,2,,200.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1854.57696158207,300.0,12624.978275720192,0,5,0,1,110.0,9,0,9,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.026138658839092152,12624.978275720192,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +32861,2,66.0,0.0,2,111,382.0,0.0,0.0,0,77,0.0,0.0,651.3866075681274,502.0,166.2707070475825,0.0,70,2,2,2,2,1,2,2,2,0,,2,,2,132886,1,3,0,1,2,417.0,0.0,252.0,11,0.0,1.0,3.0,1.0,1.0,1,1,341.693596354159,382.0,18311.639400220738,0,5,2,3,65.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.02741425762206461,18311.639400220738,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +32862,2,55.0,0.0,6,111,540.0,,,0,54,0.0,0.0,,690.0,207.83838380947813,,31,0,0,0,0,0,0,0,0,2,15.0,2,,4,132887,2,1,0,0,2,,400.0,536.0,32,1.0,0.0,3.0,2.0,1.5,2,1,105.30093867989119,540.0,41064.0,0,1,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.016803039158386907,27376.0,7,4,7,7_0,7_2,7_0_0 +32864,2,80.0,0.0,5,111,500.0,,,71,75,0.0,0.0,,698.0,274.3466666285112,,71,0,0,0,0,0,0,0,0,0,,1,,3,132889,1,2,0,0,2,,900.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,87.52851394772053,500.0,30535.832478270902,5,5,0,1,60.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022858391055711098,20357.2216521806,5,3,5,5_1,5_2,5_0_0 +32865,2,24.0,0.0,7,211,160.0,,,0,63,0.0,0.0,,160.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,5,132890,2,2,0,0,2,,60.0,400.0,12,1.0,0.0,1.0,1.0,1.0,1,1,125.9936441189047,160.0,14583.09556883817,0,2,3,4,40.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010971607450882746,14583.09556883817,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +32866,1,46.0,105.0,5,120,900.0,,,85,48,0.0,0.0,,1098.0,274.3466666285112,,50,2,2,2,2,1,2,2,2,0,,1,,3,132891,1,2,0,0,2,,400.0,600.0,42,1.0,1.0,4.0,5.0,2.5999999999999996,3,3,144.48225663853898,900.0,35550.008796745766,6,1,2,3,80.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,1,0,1,0,1,0.030886068306697875,13673.080306440681,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +32867,1,47.0,183.0,6,111,900.0,,,0,54,0.0,0.0,,1150.0,346.39730634913025,,60,2,2,2,2,1,2,2,2,2,10.0,2,,4,132892,1,1,0,0,2,,380.0,413.0,32,1.0,0.0,4.0,3.0,2.0,3,2,124.3101522118026,900.0,27341.87921109453,0,1,2,3,62.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,1,0.04206002049534927,13670.939605547264,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +32868,1,33.0,295.0,1,111,600.0,1600.0,0.0,85,63,0.0,0.0,1023.1203260232367,2200.0,0.0,3037.6064767036623,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,132893,2,1,1,0,1,,500.0,681.0,42,1.0,0.0,5.0,5.0,2.5999999999999996,3,2,463.449926566776,600.0,25528.075056167298,6,1,2,3,85.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.08617962753398066,9818.490406218192,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +32869,2,33.0,0.0,2,111,430.0,430.0,0.0,45,21,0.0,0.0,733.2362336499863,860.0,0.0,816.3567406141093,50,0,0,0,0,0,0,0,0,0,,2,,2,132894,1,1,0,1,1,,0.0,586.0,43,2.0,0.0,3.0,3.0,1.8,2,2,775.287552483241,430.0,57754.99844112379,1,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014890486074148118,32086.110245068772,8,4,8,8_0,8_4,8_0_1 +32870,2,55.0,0.0,6,111,758.0,562.0,0.0,45,65,0.0,0.0,1292.5420118760223,1320.0,0.0,1066.9592749421615,71,0,0,0,0,0,0,0,0,2,15.0,1,,4,132895,2,1,2,0,1,,650.0,,43,5.0,0.0,5.0,5.0,3.0,5,5,1488.62479904743,758.0,42155.0,4,1,0,1,88.0,8,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03131301150515953,14051.666666666666,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +32871,2,56.0,0.0,5,111,300.0,0.0,0.0,0,62,0.0,0.0,511.56016301161833,486.0,0.0,0.0,70,2,2,1,2,1,2,1,2,1,3.0,2,,3,132896,1,2,0,1,1,,220.0,234.0,12,1.0,1.0,4.0,1.0,1.0,1,1,279.485343647641,300.0,19710.082993718584,0,1,2,3,50.0,6,4,4,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,0,0.02465743042050526,19710.082993718584,5,3,5,5_0,5_2,5_0_0 +32872,2,53.0,0.0,7,111,720.0,,,85,90,0.0,0.0,,1512.0,1097.3866665140447,,71,0,0,0,0,0,0,0,0,2,60.0,1,,5,132897,2,1,0,0,2,,264.0,,42,2.0,0.0,5.0,4.0,2.5,4,3,93.65446986550147,720.0,53211.626647295074,6,1,1,2,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028414842681319535,21284.650658918028,6,3,6,6_1,6_2,6_0_0 +32874,2,47.0,0.0,5,212,2800.0,0.0,0.0,37,11,0.0,0.0,4774.561521441771,2873.0,101.14801345394604,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,3,132899,2,2,3,0,1,,200.0,,43,2.0,0.0,7.0,5.0,2.8,4,3,876.830640090532,2800.0,80761.23516011015,1,1,0,1,160.0,2,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03557399777633714,28843.298271467913,8,4,8,8_1,8_0,8_0_0 +32875,1,54.0,137.0,2,111,400.0,900.0,0.0,0,56,0.0,0.0,682.0802173488245,1300.0,0.0,1708.65364314581,50,1,2,2,1,2,2,2,2,1,5.0,1,,2,132900,2,2,2,0,1,,550.0,568.0,12,1.0,5.0,5.0,1.0,1.0,1,1,154.50902927739,400.0,9549.166643696997,0,1,2,3,120.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,1,0.13613753414368104,9549.166643696997,1,1,1_1,1_1_1,1_3_1,1_0_1_1 +32876,2,63.0,0.0,1,112,2200.0,0.0,0.0,54,75,0.0,0.0,3751.441195418535,2410.0,290.9737373332694,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132901,2,1,2,0,1,,900.0,,42,3.0,2.0,6.0,5.0,3.0,5,5,508.868502592648,2200.0,99660.70839864739,1,5,0,1,150.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.024182047656734387,33220.23613288246,8,4,8,8_1,8_0,8_1_0 +32877,2,63.0,0.0,7,111,270.0,350.0,0.0,0,75,0.0,0.0,460.40414671045653,620.0,0.0,664.4764167789261,42,2,2,2,2,1,2,2,2,0,,2,,5,132902,1,1,0,0,1,,0.0,491.0,11,0.0,1.0,3.0,1.0,1.0,1,1,650.812852600995,270.0,32432.793769129603,0,5,2,3,81.0,7,5,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.019116453686149372,32432.793769129603,8,4,8,8_0,8_2,8_0_0 +32878,1,40.0,98.0,8,111,13804.0,,,43,38,0.0,0.0,,13852.0,66.50828281903301,,20,0,0,0,0,0,0,0,0,2,90.0,1,2000.0,6,132903,1,3,0,0,2,,250.0,716.0,43,2.0,0.0,4.0,4.0,2.1,2,2,102.39124504205289,13804.0,77065.36468946663,1,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.17974352104627495,36697.79270926982,9,5,9,9_1,9_2,9_0_0 +32879,2,65.0,0.0,5,112,780.0,648.0,0.0,75,75,0.0,0.0,1330.0564238302077,1428.0,0.0,1230.2306230649833,50,0,0,0,0,0,0,0,0,0,,1,,3,132904,2,1,2,0,1,,150.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,243.579562323002,780.0,38299.902881892434,5,5,0,1,110.0,7,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.037284689843825554,25533.26858792829,7,4,7,7_1,7_0,7_0_0 +32880,2,57.0,0.0,2,111,600.0,,,42,46,0.0,0.0,,720.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,1,10.0,1,,2,132905,2,3,0,0,2,,628.0,,43,3.0,1.0,6.0,5.0,3.0,5,4,163.2652026422209,600.0,89524.43176320865,1,1,0,1,140.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.008042497291738124,29841.477254402882,8,4,8,8_1,8_2,8_0_1 +32881,2,65.0,0.0,2,111,230.0,0.0,0.0,74,74,0.0,0.0,392.1961249755741,230.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,2,132906,1,2,0,1,2,,0.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,616.811136498359,230.0,102561.58414477612,5,5,0,1,135.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0022425550650166594,68374.38942985075,10,5,10,10_0,10_4,10_0_1 +32882,2,34.0,0.0,6,112,750.0,0.0,0.0,55,63,0.0,0.0,1278.9004075290459,870.0,166.2707070475825,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,132907,2,1,1,0,1,,250.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,3598.45483958853,750.0,28778.844555777385,1,1,1,2,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030230539600497843,19185.896370518258,5,3,5,5_1,5_1,5_0_0 +32883,2,42.0,0.0,1,400,700.0,0.0,0.0,52,48,1054.6828510366015,0.0,1193.6403803604428,1764.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,132908,2,2,1,0,1,,140.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,864.679617775035,700.0,40098.96189813904,1,1,1,2,80.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04399116377329124,22277.201054521687,6,3,6,6_1,6_0,6_1_0 +32884,2,42.0,0.0,9,112,720.0,,,37,65,0.0,0.0,,820.0,138.5589225396521,,43,0,0,0,0,0,0,0,0,0,,1,2005.0,6,132909,2,2,0,0,2,,0.0,,43,3.0,0.0,3.0,3.0,2.0,3,3,138.50091322315942,720.0,47623.24538900693,1,1,0,1,27.0,7,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017218482136231814,23811.622694503465,6,3,6,6_1,6_0,6_0_0 +32885,2,72.0,0.0,5,111,1450.0,0.0,0.0,75,75,0.0,0.0,2472.540787889489,1450.0,0.0,0.0,71,2,2,2,1,2,2,2,2,0,,2,,3,132910,1,3,0,1,2,,0.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,926.165801445187,1450.0,16547.485116727716,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.08762660850102273,11031.656744485144,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +32886,2,66.0,0.0,7,111,2100.0,0.0,0.0,0,43,0.0,0.0,3580.9211410813286,2100.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,2,,5,132911,2,1,0,0,1,,450.0,1385.0,12,1.0,4.0,5.0,1.0,1.0,1,1,720.581847816712,2100.0,37353.19314903437,0,1,2,3,118.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.05622009319581525,37353.19314903437,9,5,9,9_0,9_4,9_0_0 +32887,2,52.0,0.0,5,111,300.0,1146.0,0.0,0,54,0.0,0.0,511.56016301161833,1446.0,0.0,2175.685638938998,50,0,0,0,0,0,0,0,0,2,15.0,2,,3,132912,2,1,0,0,1,,177.0,292.0,12,1.0,0.0,4.0,1.0,1.0,1,1,303.793882830817,300.0,22124.575474947807,0,1,2,3,70.0,7,6,5,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.06535718624917078,22124.575474947807,6,3,6,6_0,6_2,6_0_0 +32888,2,54.0,0.0,5,111,900.0,,,85,55,0.0,0.0,,988.0,121.93185183489385,,71,0,0,0,0,0,0,0,0,0,,1,,3,132913,2,2,0,0,2,,630.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,158.44700737924902,900.0,21067.78124940054,6,1,0,1,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0468962530180112,14045.18749960036,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +32889,1,44.0,139.0,7,111,949.0,,,56,69,0.0,0.0,,1087.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,3,30.0,1,,5,132914,1,1,0,0,2,,300.0,415.0,43,3.0,0.0,4.0,4.0,2.3,3,3,110.1462641611034,949.0,44916.0905858371,1,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.024200681444496684,19528.73503732048,5,3,5,5_1,5_2,5_0_0 +32890,1,60.0,78.0,1,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,1609.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132915,2,2,5,0,1,,0.0,334.0,12,1.0,2.0,2.0,1.0,1.0,1,1,1114.48081117853,0.0,15966.9334763731,0,1,2,3,45.0,8,7,8,0,0,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.10077075866702273,15966.9334763731,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +32891,2,55.0,0.0,2,112,1998.0,0.0,0.0,65,42,0.0,397.2981831030672,3406.9906856573784,2298.0,0.0,0.0,60,1,2,2,2,1,2,2,2,1,5.0,1,,2,132916,2,1,1,0,1,,900.0,,43,3.0,0.0,6.0,4.0,2.5,4,4,1179.27558751928,1998.0,93170.57685364567,1,1,1,2,120.0,4,0,4,0,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0.02466443889909308,37268.23074145827,9,5,9,9_1,9_0,9_0_1 +32892,2,57.0,0.0,6,111,625.0,946.0,0.0,77,75,0.0,0.0,1065.7503396075383,2279.0,0.0,1795.9848293510404,50,0,0,0,0,0,0,0,0,0,,1,,4,132917,2,1,2,0,1,,542.0,,41,1.0,1.0,4.0,3.0,2.0,3,3,317.996376619178,625.0,50379.32091456053,6,5,0,1,88.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04523681460226527,25189.660457280264,7,4,7,7_1,7_2,7_0_0 +32893,2,38.0,0.0,8,211,124.0,,,0,48,0.0,0.0,,212.0,121.93185183489385,,42,0,0,0,0,0,0,0,0,0,,1,1999.0,6,132918,2,1,0,0,2,,450.0,1050.0,12,1.0,3.0,4.0,1.0,1.0,1,1,83.63467035783613,124.0,33979.14132536946,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006239121759139829,33979.14132536946,9,5,9,9_1,9_2,9_0_0 +32894,1,37.0,380.0,8,111,600.0,,,0,85,0.0,0.0,,744.0,199.524848457099,,71,0,0,0,0,0,0,0,0,0,,2,2003.0,6,132919,1,2,0,0,2,,700.0,368.0,31,0.0,0.0,4.0,4.0,2.3,3,1,96.00920688749434,600.0,14587.944480586593,0,6,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.051001016694991096,6342.58455677678,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +32895,2,79.0,0.0,5,111,249.0,198.0,0.0,0,72,0.0,0.0,424.5949352996432,447.0,0.0,375.90380149207823,70,0,0,0,0,0,0,0,0,0,,2,,3,132920,1,1,0,1,1,1170.0,0.0,321.0,11,0.0,0.0,3.0,1.0,1.0,1,1,820.389516389268,249.0,15421.829079048002,0,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.02898488873847599,15421.829079048002,3,2,3_0,3_0_0,3_4_0,3_0_0_0 +32896,1,57.0,97.0,2,111,390.0,240.0,0.0,0,68,0.0,0.0,665.0282119151038,630.0,0.0,455.6409715055494,50,2,2,2,1,1,2,2,2,3,30.0,2,,2,132921,1,2,0,0,1,,0.0,410.0,12,1.0,3.0,2.0,1.0,1.0,1,1,2383.87318582535,390.0,2041.16388186739,0,1,2,3,37.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,1,0,0,1,0.30864743668873607,2041.16388186739,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32897,2,76.0,0.0,9,111,1215.0,0.0,0.0,0,77,0.0,0.0,2071.818660197054,1455.0,332.541414095165,0.0,70,0,0,0,0,0,0,0,0,0,,1,2004.0,6,132922,2,2,5,0,1,,183.0,644.0,21,0.0,3.0,4.0,2.0,1.5,2,2,1575.72662365907,1215.0,23153.626874270256,0,5,2,3,82.0,6,5,7,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06284112670127227,15435.751249513503,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +32898,1,33.0,24.0,9,111,1350.0,0.0,0.0,85,48,0.0,344.3250920226582,2302.0207335522828,1675.0,90.06329965077386,0.0,43,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,132923,2,1,1,0,1,,635.0,,42,1.0,0.0,4.0,4.0,2.1,2,2,969.233551223075,1350.0,41347.85105272437,6,1,1,2,115.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04050996502488455,19689.452882249698,5,3,5,5_1,5_3,5_0_0 +32899,2,76.0,0.0,1,111,383.0,0.0,0.0,0,74,0.0,0.0,653.0918081114994,383.0,0.0,0.0,31,2,2,2,1,1,2,1,2,0,,2,,1,132924,2,2,0,1,1,,0.0,400.0,11,0.0,0.0,4.0,1.0,1.0,1,1,827.562597727939,383.0,27982.55231189794,0,5,2,3,100.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.013687100294891674,27982.55231189794,7,4,7,7_0,7_4,7_1_0 +32900,2,68.0,0.0,6,300,477.0,0.0,0.0,0,69,0.0,0.0,813.3806591884731,827.0,484.95622888878233,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,132925,2,1,2,0,1,,300.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,988.868916666027,477.0,11524.053056855133,0,5,0,1,89.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07176294624121463,11524.053056855133,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +32901,2,36.0,0.0,1,111,650.0,1600.0,0.0,47,62,0.0,0.0,1108.3803531918397,2250.0,0.0,3037.6064767036623,44,0,0,0,0,0,0,0,0,0,,1,,1,132926,2,1,2,0,1,,700.0,550.0,43,2.0,0.0,5.0,5.0,2.8,4,2,352.161887533062,650.0,55457.64502195143,1,1,2,3,84.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04057150279477965,19806.301793554085,5,3,5,5_1,5_3,5_1_0 +32902,2,51.0,0.0,7,111,559.0,0.0,0.0,0,31,0.0,0.0,953.2071037449822,559.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,5,132927,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,619.382893952985,559.0,8988.345298929888,0,1,0,1,49.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.06219164722861193,8988.345298929888,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +32903,0,31.0,0.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,238.0,0.0,0.0,43,0,0,0,0,0,0,0,0,0,,2,,2,132928,2,3,0,1,1,1662.0,528.0,,31,0.0,0.0,4.0,2.0,1.3,1,1,745.172292663161,0.0,9375.745125983178,0,6,5,0,70.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02538464909209468,7212.111635371675,1,1,1_0,1_0_0,1_4_0,1_0_1_0 +32904,2,40.0,0.0,6,111,360.0,320.0,0.0,47,52,0.0,0.0,613.872195613942,680.0,0.0,607.5212953407324,50,0,0,0,0,0,0,0,0,2,25.0,2,,4,132929,2,1,0,0,2,,600.0,520.0,43,2.0,0.0,4.0,5.0,2.6,3,2,261.02927167231,360.0,43192.104467850884,1,1,2,3,100.0,4,4,9,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01574361815377955,16612.34787225034,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +32905,2,67.0,0.0,2,111,300.0,100.0,0.0,0,33,0.0,0.0,511.56016301161833,400.0,0.0,189.8504047939789,33,0,0,0,0,0,0,0,0,0,,2,,2,132930,2,1,0,1,2,,0.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,996.25816967265,300.0,42894.73917609803,0,5,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009325152866831965,42894.73917609803,9,5,9,9_0,9_4,9_0_1 +32907,2,55.0,0.0,2,111,50.0,120.0,0.0,85,47,0.0,0.0,85.26002716860306,170.0,0.0,227.8204857527747,31,0,0,0,0,0,0,0,0,2,30.0,1,,2,132932,2,1,1,0,1,,1200.0,,42,2.0,4.0,8.0,7.0,3.8,6,3,758.496735166293,50.0,66941.14245965707,6,1,1,2,100.0,7,6,4,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0025395443482676243,17616.090120962388,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +32908,2,83.0,0.0,2,211,500.0,1800.0,0.0,72,72,0.0,0.0,852.6002716860306,2300.0,0.0,3417.30728629162,20,0,0,0,0,0,0,0,0,0,,1,,2,132933,2,1,2,0,1,,310.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1258.26930761982,500.0,52477.991685447785,5,5,0,1,120.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04382789672642509,34985.32779029852,9,5,9,9_1,9_1,9_0_1 +32909,2,49.0,0.0,1,111,500.0,2000.0,0.0,34,34,0.0,0.0,852.6002716860306,2500.0,0.0,3797.008095879578,10,0,0,0,0,0,0,0,0,1,15.0,1,,1,132934,1,1,3,0,1,,560.0,,43,2.0,2.0,7.0,3.0,2.0,3,2,1206.34369863545,500.0,91013.41794470695,1,1,1,2,180.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.027468477247155097,45506.708972353474,10,5,10,10_1,10_3,10_1_0 +32910,1,29.0,235.0,7,111,700.0,0.0,0.0,42,53,0.0,0.0,1193.6403803604428,835.0,0.0,0.0,42,2,2,2,1,1,2,2,2,0,,2,,5,132935,1,3,0,1,1,1236.0,0.0,565.0,43,2.0,0.0,3.0,4.0,2.1,2,2,516.310805069091,700.0,28348.53219685253,4,4,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.029454787789425937,13499.301046120252,3,2,3_1,3_0_1,3_4_1,3_0_0_1 +32911,1,53.0,377.0,2,111,387.0,720.0,0.0,0,46,0.0,0.0,659.9126102849876,1107.0,0.0,1366.922914516648,30,2,2,2,1,1,2,2,2,2,30.0,2,,2,132936,1,1,0,0,2,,0.0,738.0,32,2.0,1.0,5.0,2.0,1.5,2,2,1970.6986632672,387.0,28882.33213609545,0,1,2,3,86.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.03832792984942293,19254.8880907303,5,3,5,5_0,5_3,5_0_1 +32912,2,52.0,0.0,6,112,790.0,660.0,0.0,52,47,0.0,0.0,1347.1084292639284,1450.0,0.0,1253.0126716402608,33,0,0,0,0,0,0,0,0,2,30.0,1,,4,132937,2,1,1,0,1,,350.0,,43,2.0,1.0,6.0,3.0,2.0,3,2,1399.79296655932,790.0,50480.93171553737,1,1,1,2,120.0,9,2,9,0,1,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02872371706946346,25240.465857768686,7,4,7,7_1,7_1,7_0_0 +32913,1,51.0,255.0,6,111,300.0,0.0,0.0,52,63,0.0,0.0,511.56016301161833,300.0,0.0,0.0,71,2,2,1,2,1,2,2,2,3,30.0,2,,4,132938,1,3,0,1,1,300.0,0.0,257.0,43,2.0,0.0,1.0,3.0,1.8,2,2,347.983152027051,300.0,14395.253687789005,1,1,2,3,36.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0.020840202368540374,7997.363159882781,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +32914,2,84.0,0.0,7,112,592.0,0.0,0.0,77,78,0.0,0.0,1009.4787216762602,592.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,5,132939,2,1,2,0,1,,540.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,906.982357178365,592.0,34776.39680738768,5,5,0,1,75.0,8,1,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017023040175175343,23184.264538258456,6,3,6,6_1,6_1,6_0_0 +32915,2,42.0,0.0,1,111,440.0,600.0,0.0,0,43,0.0,0.0,750.2882390837069,1040.0,0.0,1139.1024287638734,20,0,0,0,0,0,0,0,0,3,45.0,2,,1,132940,2,2,0,0,1,,216.0,500.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1866.03861846536,440.0,36521.488231183524,0,1,2,3,62.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02847638610498917,28093.452485525788,8,4,8,8_0,8_3,8_1_0 +32916,2,77.0,0.0,2,111,510.0,0.0,0.0,0,86,4218.731404146406,132.4327277010224,869.6522771197511,4785.0,242.47811444439117,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,132941,2,1,2,0,1,,276.0,,11,0.0,7.0,7.0,1.0,1.0,1,1,543.420597639825,510.0,33005.820588430055,0,6,0,1,136.0,8,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.14497442919741696,33005.820588430055,8,4,8,8_1,8_3,8_0_1 +32918,2,53.0,0.0,1,112,340.0,950.0,0.0,46,65,0.0,0.0,579.7681847465008,1290.0,0.0,1803.5788455427996,41,0,0,0,0,0,0,0,0,3,75.0,5,,1,132943,2,1,2,0,1,,430.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,625.162486437432,340.0,50685.92155273241,1,1,0,1,98.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.025450854211221455,25342.960776366206,7,4,7,7_1,7_0,7_1_0 +32919,2,52.0,0.0,1,111,360.0,,,0,54,0.0,0.0,,498.0,191.2113131047199,,31,0,0,0,0,0,0,0,0,0,,2,,1,132944,2,3,0,0,2,,700.0,80.0,22,3.0,0.0,4.0,3.0,2.0,3,3,137.55963925121577,360.0,24409.669485757408,0,1,2,3,75.0,7,6,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020401751047492627,12204.834742878704,2,1,2_0,2_0_0,2_2_0,2_1_0_0 +32920,1,37.0,220.0,2,112,700.0,1200.0,0.0,85,62,0.0,0.0,1193.6403803604428,1900.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,8,,2,132945,2,2,0,1,2,,0.0,480.0,42,1.0,0.0,4.0,5.0,2.8,4,2,757.898382868066,700.0,19413.350363434878,6,1,2,3,57.0,9,3,4,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0978707932649615,6933.339415512457,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +32921,2,44.0,0.0,2,120,900.0,0.0,0.0,64,62,0.0,529.7309108040896,1534.680489034855,1550.0,346.39730634913025,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,,2,132946,1,1,0,0,1,,230.0,,43,3.0,0.0,4.0,4.0,2.3,3,3,2355.49681251774,900.0,32769.945392123875,4,1,0,1,82.0,0,1,4,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04729943798968113,14247.802344401685,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +32922,0,87.0,0.0,1,111,850.0,0.0,0.0,0,71,0.0,794.5963662061343,1449.420461866252,1450.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132947,1,1,2,0,2,,254.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1152.86944187165,850.0,15015.150126807837,0,5,0,1,95.0,6,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09656913102794693,15015.150126807837,3,2,3_0,3_1_0,3_2_0,3_1_0_0 +32923,1,50.0,327.0,1,111,240.0,790.0,0.0,81,63,0.0,52.973091080408956,409.2481304092947,1240.0,235.55016831740858,1499.8181978724333,50,2,2,1,1,1,2,2,2,0,,1,,1,132948,1,1,2,0,1,,180.0,420.0,43,2.0,6.0,4.0,2.0,1.5,2,2,364.666411158104,240.0,7211.52818829906,4,4,2,3,90.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,1,0,1,0.17194691161464784,4807.68545886604,1,1,1_1,1_1_1,1_3_1,1_1_0_1 +32924,2,49.0,0.0,2,111,441.0,658.0,0.0,0,54,0.0,0.0,751.9934396270789,1265.0,0.0,1249.2156635443812,42,2,1,2,1,2,2,2,2,2,25.0,2,,2,132949,1,3,0,1,2,,0.0,,32,3.0,0.0,5.0,4.0,2.5,4,4,776.689435245317,441.0,54592.689574885975,0,1,0,1,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.023171600627310586,21837.07582995439,6,3,6,6_0,6_4,6_0_1 +32925,2,30.0,0.0,6,111,2200.0,0.0,0.0,43,37,0.0,529.7309108040896,3751.441195418535,2600.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,45.0,1,,4,132950,2,1,2,0,1,,500.0,,43,2.0,2.0,7.0,4.0,2.1,2,2,410.316234391356,2200.0,72158.0,1,1,1,2,130.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036032040799356964,34360.95238095238,9,5,9,9_1,9_3,9_0_0 +32926,1,35.0,193.0,7,112,340.0,0.0,0.0,0,67,0.0,0.0,579.7681847465008,390.0,69.27946126982604,0.0,71,2,2,2,2,1,2,2,2,2,30.0,2,,5,132951,2,1,0,0,1,,0.0,248.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1672.13520831818,340.0,12648.345765025533,0,1,2,3,51.0,9,2,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,1,0.03083407168377743,12648.345765025533,2,1,2_1,2_0_1,2_1_1,2_0_0_1 +32927,2,57.0,0.0,2,111,560.0,,,21,47,0.0,0.0,,728.0,232.77898986661552,,42,0,0,0,0,0,0,0,0,0,,1,,2,132952,2,2,0,0,2,,180.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,82.46593908786451,560.0,32322.715305543803,1,1,0,1,116.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02252286025843682,16161.357652771901,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +32928,2,73.0,0.0,2,111,600.0,0.0,0.0,0,78,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132953,2,2,0,0,1,,0.0,,11,0.0,5.0,2.0,1.0,1.0,1,1,1231.67000173587,600.0,13713.261944060765,0,5,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04375326617748018,13713.261944060765,3,2,3_0,3_0_0,3_4_0,3_0_1_0 +32929,1,54.0,148.0,2,221,850.0,0.0,0.0,0,56,0.0,0.0,1449.420461866252,940.0,124.70303028568689,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,132954,1,3,1,0,2,,230.0,366.0,32,1.0,2.0,4.0,2.0,1.3,2,1,2188.31396451935,850.0,19221.181835985382,0,1,2,3,80.0,1,2,7,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0.04890438101158573,14785.524489219524,3,2,3_1,3_1_1,3_1_1,3_0_1_1 +32930,2,56.0,0.0,2,111,500.0,66.0,0.0,56,77,0.0,0.0,852.6002716860306,850.0,0.0,125.30126716402607,70,2,1,2,1,2,2,2,2,0,,2,,2,132955,2,1,0,1,1,800.0,0.0,316.0,42,2.0,3.0,5.0,3.0,2.0,3,3,376.451044634182,500.0,38821.076872551006,1,7,2,3,79.0,7,5,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.021895322553532888,19410.538436275503,5,3,5,5_0,5_2,5_0_1 +32931,0,66.0,0.0,5,111,480.0,,,77,78,0.0,0.0,,884.0,559.7780470601945,,71,0,0,0,0,0,0,0,0,0,,1,,3,132956,2,1,0,0,2,,240.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,112.4854206774043,480.0,17279.660550458713,5,5,0,1,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05115841236687563,11519.773700305808,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +32932,2,76.0,0.0,5,112,673.0,0.0,0.0,77,78,0.0,595.9472746546007,1147.599965689397,1267.0,199.524848457099,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,132957,2,1,2,0,1,,368.0,,41,0.0,5.0,5.0,2.0,1.5,2,2,735.122516455276,673.0,27311.390285869176,5,5,0,1,99.0,10,4,1,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0463909008929341,18207.593523912783,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +32933,2,34.0,0.0,1,111,378.0,504.0,0.0,0,47,0.0,0.0,644.5658053946391,882.0,0.0,956.8460401616536,43,0,0,0,0,0,0,0,0,2,40.0,2,,1,132958,2,2,0,1,1,167.0,0.0,950.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1146.35346046772,378.0,43962.294719667494,0,1,2,3,28.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.02006264699384352,43962.294719667494,10,5,10,10_0,10_4,10_1_0 +32934,2,42.0,0.0,5,111,1600.0,0.0,0.0,46,64,0.0,0.0,2728.320869395298,1664.0,88.67771042537734,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,132959,2,2,5,0,1,,190.0,807.0,43,2.0,1.0,3.0,4.0,2.1,2,2,1088.31021027905,1600.0,51577.96683749,1,1,2,3,80.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.032261837796803264,24560.93658928095,7,4,7,7_1,7_3,7_0_0 +32935,2,81.0,0.0,1,120,500.0,0.0,0.0,0,86,0.0,0.0,852.6002716860306,600.0,138.5589225396521,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,132960,2,2,4,0,2,,250.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1118.44635146503,500.0,24756.958852000484,0,5,0,1,80.0,0,3,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.024235610019262,24756.958852000484,7,4,7,7_1,7_1,7_1_0 +32936,2,67.0,0.0,1,120,2200.0,0.0,0.0,71,71,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,,1,132961,2,2,2,0,1,,220.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1860.95600336883,2200.0,31615.350729346956,5,5,0,1,220.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.06958644928009132,21076.900486231305,5,3,5,5_1,5_0,5_1_0 +32937,1,53.0,200.0,5,111,0.0,,,0,78,0.0,0.0,,387.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,3,132962,2,1,0,0,1,,235.0,400.0,11,0.0,0.0,3.0,1.0,1.0,1,1,148.5820814508783,0.0,5241.0,0,6,2,3,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07384087006296508,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +32938,2,65.0,0.0,1,111,100.0,30.0,0.0,78,75,0.0,0.0,170.52005433720612,130.0,0.0,56.95512143819367,50,0,0,0,0,0,0,0,0,0,,2,,1,132963,2,1,0,0,1,,200.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1818.20838660154,100.0,31621.450158397776,5,5,0,1,46.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.0041111334030794165,21080.966772265183,5,3,5,5_0,5_3,5_1_0 +32939,2,56.0,0.0,8,111,480.0,,,77,46,0.0,0.0,,840.0,498.81212114274757,,60,0,0,0,0,0,0,0,0,2,45.0,1,2000.0,6,132964,2,1,0,0,2,,160.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,113.72457914004546,480.0,61868.56939083741,5,1,0,1,56.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013577168637818899,41245.71292722494,9,5,9,9_1,9_2,9_0_0 +32940,2,88.0,0.0,2,111,330.0,0.0,0.0,0,75,2636.7071275915036,0.0,562.7161793127802,2860.0,41.567676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,132965,1,1,2,0,2,,180.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,269.138421880911,330.0,20498.005004409988,0,5,0,1,196.0,8,7,8,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.13952577333182878,20498.005004409988,5,3,5,5_1,5_3,5_0_1 +32941,2,67.0,0.0,7,111,392.0,632.0,0.0,78,78,0.0,324.46018286750484,668.438613001848,1269.0,0.0,1199.8545582979466,71,0,0,0,0,0,0,0,0,0,,1,,5,132966,2,1,2,0,1,,360.0,,41,0.0,2.0,3.0,2.0,1.5,2,2,1777.1803831106,392.0,30762.29722089354,5,5,1,2,140.0,6,4,4,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04125179569288161,20508.19814726236,5,3,5,5_1,5_2,5_0_0 +32942,2,38.0,0.0,9,111,660.0,979.0,0.0,31,38,0.0,0.0,1125.4323586255605,1639.0,0.0,1858.6354629330535,10,0,0,0,0,0,0,0,0,1,7.0,1,2006.0,6,132967,2,1,1,0,1,,580.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,1794.26332646562,660.0,53457.69783307938,1,1,1,2,170.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03065975652594965,25456.046587180655,7,4,7,7_1,7_2,7_0_0 +32943,2,36.0,0.0,1,120,0.0,0.0,0.0,0,63,0.0,0.0,0.0,389.0,0.0,0.0,42,0,0,0,0,0,0,0,0,2,15.0,8,,1,132968,2,1,0,0,1,,102.0,312.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1506.26363759028,0.0,14586.865795288653,0,1,2,3,70.0,0,0,7,0,0,0,0,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.026667826074443037,14586.865795288653,3,2,3_0,3_0_0,3_0_0,3_1_0_0 +32944,2,77.0,0.0,1,400,250.0,0.0,0.0,78,78,0.0,1721.6254601132912,426.3001358430153,1850.0,415.67676761895626,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132969,2,1,4,0,2,,50.0,110.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1263.18353483411,250.0,15730.42020204735,5,5,2,3,60.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11760652139217606,10486.9468013649,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +32945,2,34.0,0.0,2,111,220.0,220.0,0.0,0,55,0.0,0.0,375.14411954185346,440.0,0.0,417.6708905467536,50,0,0,0,0,0,0,0,0,3,10.0,2,,2,132970,2,1,0,0,1,1600.0,194.0,300.0,12,1.0,0.0,2.0,1.0,1.0,1,1,338.024749577572,220.0,14657.437264473969,0,1,2,3,52.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.030018890209849443,14657.437264473969,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +32946,2,66.0,0.0,1,112,1376.0,0.0,0.0,52,77,0.0,662.163638505112,2346.355947679956,1876.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,132971,2,1,2,0,1,,400.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,803.412730827628,1376.0,55457.8478871236,1,5,0,1,100.0,7,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03382749369968928,36971.89859141573,9,5,9,9_1,9_0,9_1_0 +32947,2,50.0,0.0,1,112,2500.0,0.0,0.0,47,37,0.0,397.2981831030672,4263.001358430153,2800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,13.0,1,,1,132972,2,1,3,0,1,,350.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,2234.95076151552,2500.0,99785.20642430973,1,1,1,2,170.0,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02806027166084874,49892.60321215486,10,5,10,10_1,10_0,10_1_0 +32948,1,41.0,459.0,6,221,1200.0,0.0,0.0,0,85,0.0,0.0,2046.2406520464733,1260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132973,1,3,3,0,1,,215.0,582.0,31,0.0,0.0,4.0,4.0,2.1,2,1,2609.73275086661,1200.0,13171.805776179146,0,6,2,3,85.0,1,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.09565886571746114,6272.288464847212,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +32950,2,55.0,0.0,7,111,720.0,,,0,52,0.0,0.0,,846.0,174.58424239996165,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,132975,2,1,0,0,2,,640.0,455.0,32,2.0,2.0,4.0,2.0,1.5,2,2,95.3693353641592,720.0,27157.046807228522,0,1,2,3,90.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03115213542935074,18104.69787148568,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +32951,1,34.0,194.0,2,111,400.0,0.0,0.0,54,63,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,2,132976,1,2,0,1,1,1200.0,530.0,335.0,43,2.0,0.0,3.0,4.0,2.1,2,2,331.748874898404,400.0,28269.0809781996,1,1,2,3,63.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014149734839575078,13461.467132475998,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +32952,2,80.0,0.0,7,211,563.0,1073.0,0.0,71,67,0.0,0.0,960.0279059184704,1636.0,0.0,2037.0948434393936,70,0,0,0,0,0,0,0,0,0,,1,,5,132977,2,1,2,0,1,,0.0,,41,1.0,4.0,5.0,3.0,2.0,3,3,1501.44070939401,563.0,35379.419301510534,5,5,0,1,97.0,2,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04624157299071753,17689.709650755267,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +32953,2,60.0,0.0,2,111,258.0,0.0,0.0,0,68,0.0,0.0,439.9417401899918,258.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,2,132978,2,2,0,1,1,1084.0,0.0,270.0,12,1.0,0.0,5.0,1.0,1.0,1,1,341.305434290838,258.0,21765.4222773667,0,1,2,3,77.0,7,6,8,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01185366388541368,21765.4222773667,6,3,6,6_0,6_2,6_0_1 +32954,2,51.0,0.0,9,111,0.0,,,52,42,0.0,0.0,,1479.0,0.0,,10,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,132979,2,1,0,0,2,,769.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,183.50997228159542,0.0,5339.6632543948035,4,1,1,2,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2769837590006656,3559.775502929869,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +32955,2,36.0,0.0,2,111,600.0,,,85,46,0.0,0.0,,740.0,193.98249155551292,,50,0,0,0,0,0,0,0,0,2,10.0,1,,2,132980,2,2,0,0,2,,550.0,700.0,42,1.0,0.0,4.0,3.0,1.8,2,2,34.533108368023335,600.0,35430.83833614734,6,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.020885760392664356,19683.79907563741,5,3,5,5_1,5_2,5_0_1 +32956,2,78.0,0.0,1,111,727.0,1083.0,0.0,86,54,0.0,0.0,1239.6807950314885,1810.0,0.0,2056.0798839187914,70,2,2,1,1,2,2,2,2,0,,1,,1,132981,2,1,1,0,1,,1300.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,932.131869947068,727.0,26839.910110029763,5,5,0,1,90.0,7,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.06743688755215406,17893.27340668651,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +32957,2,86.0,0.0,2,111,270.0,890.0,0.0,77,75,0.0,105.94618216081791,460.40414671045653,1240.0,0.0,1689.6686026664122,50,0,0,0,0,0,0,0,0,0,,1,,2,132982,2,2,3,0,1,,180.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,279.58269941107,270.0,35026.46977668614,5,5,0,1,70.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03540179778052747,23350.979851124095,6,3,6,6_1,6_2,6_0_1 +32958,2,43.0,0.0,1,111,458.0,1500.0,0.0,63,37,0.0,331.081819252556,780.981848864404,2208.0,0.0,2847.7560719096837,20,2,2,2,1,1,2,2,2,2,15.0,1,,1,132983,2,2,1,0,1,,440.0,,43,2.0,0.0,7.0,3.0,1.8,2,2,1191.65397264016,458.0,136846.63414620975,4,1,0,1,134.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0.016134850621469635,76025.90785900541,10,5,10,10_1,10_2,10_1_0 +32959,2,32.0,0.0,1,112,1200.0,0.0,0.0,63,43,0.0,397.2981831030672,2046.2406520464733,1560.0,83.13535352379125,0.0,33,0,0,0,0,0,0,0,0,2,40.0,1,,1,132984,2,3,1,0,1,,120.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,780.941247058226,1200.0,44235.83252907729,4,1,1,2,85.0,8,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.035265528211197876,18431.59688711554,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +32960,2,56.0,0.0,5,111,620.0,1068.0,0.0,42,38,0.0,0.0,1057.224336890678,1688.0,0.0,2027.6023231996946,10,0,0,0,0,0,0,0,0,2,30.0,1,,3,132985,2,1,2,0,2,,160.0,,43,2.0,1.0,5.0,2.0,1.5,2,2,2708.92696225996,620.0,96851.17069854322,1,1,0,1,230.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017428803264072364,64567.44713236215,10,5,10,10_1,10_3,10_0_0 +32961,2,42.0,0.0,8,400,1800.0,0.0,0.0,54,37,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2003.0,6,132986,2,1,1,0,1,,380.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,1226.12688382969,1800.0,57863.515470041224,1,1,1,2,161.0,0,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.031107684788559867,25158.05020436575,7,4,7,7_1,7_0,7_0_0 +32963,2,81.0,0.0,2,111,300.0,1150.0,0.0,0,78,0.0,0.0,511.56016301161833,1450.0,0.0,2183.2796551307574,70,0,0,0,0,0,0,0,0,0,,1,,2,132988,2,1,2,0,2,,120.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1421.21469127218,300.0,18667.99742600928,0,5,0,1,92.0,8,6,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.0776730340652276,18667.99742600928,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +32964,1,43.0,150.0,1,111,0.0,0.0,2500.0,42,64,0.0,0.0,1575.7957260368596,2500.0,0.0,2991.830368911702,50,2,2,2,1,1,2,2,2,2,25.0,1,,1,132989,2,3,4,0,1,,840.0,360.0,43,2.0,0.0,4.0,5.0,2.5999999999999996,3,2,198.960315563406,0.0,34886.29991334986,4,1,2,3,75.0,8,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,1,0.0716613686808136,13417.807658980717,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +32965,1,26.0,377.0,2,112,450.0,0.0,0.0,85,63,0.0,132.4327277010224,767.3402445174275,655.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,132990,2,2,5,0,1,,440.0,490.0,42,1.0,0.0,3.0,3.0,1.8,2,2,875.920708100085,450.0,9943.263120371437,6,1,2,3,60.0,8,2,3,0,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06587374708590957,5524.035066873021,1,1,1_1,1_1_1,1_1_1,1_0_1_1 +32966,1,59.0,316.0,2,111,600.0,156.0,0.0,22,22,0.0,0.0,1023.1203260232367,756.0,0.0,296.1666314786071,71,2,2,2,1,2,2,2,2,0,,2,,2,132991,2,3,0,1,1,444.0,0.0,347.0,43,3.0,0.0,4.0,5.0,3.0,5,4,373.834192777919,600.0,13374.028938906753,4,4,2,3,80.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,1,0.05652746853273958,4458.009646302251,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +32967,2,88.0,0.0,2,120,0.0,0.0,0.0,0,86,0.0,3972.981831030672,0.0,4099.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,132992,2,1,3,0,2,,80.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,271.716811296568,0.0,13915.372658215883,0,6,0,1,40.0,0,0,3,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.29456631170994024,13915.372658215883,3,2,3_0,3_1_0,3_0_0,3_0_1_0 +32968,2,75.0,0.0,1,112,250.0,900.0,0.0,78,78,0.0,0.0,426.3001358430153,1150.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,1,132993,2,1,2,0,1,,250.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1922.09809868566,250.0,29491.47120503966,5,5,0,1,90.0,9,3,5,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.038994324562671594,19660.980803359773,5,3,5,5_1,5_1,5_1_0 +32969,2,31.0,0.0,6,111,0.0,,,43,43,0.0,0.0,,854.0,0.0,,10,0,0,0,0,0,0,0,0,2,45.0,1,,4,132994,2,3,0,0,2,,335.0,,43,2.0,0.0,4.0,5.0,2.4,2,2,62.56063114330151,0.0,73786.09482187836,1,1,1,2,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011573996456399803,30744.206175782652,8,4,8,8_1,8_2,8_0_0 +32970,2,57.0,0.0,7,111,380.0,,,0,42,0.0,0.0,,402.0,30.482962958723462,,30,0,0,0,0,0,0,0,0,2,30.0,1,,5,132995,2,1,0,0,2,,140.0,,12,1.0,3.0,6.0,1.0,1.0,1,1,103.5791028026827,380.0,56878.81033308242,0,1,0,1,130.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.007067658371296573,56878.81033308242,10,5,10,10_1,10_2,10_0_0 +32971,2,42.0,0.0,8,111,1444.0,0.0,0.0,46,37,0.0,0.0,2462.3095846292563,1444.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,70.0,2,2002.0,6,132996,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,877.562562059361,1444.0,78390.13574241717,1,1,1,2,69.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01842068503038255,43550.07541245398,10,5,10,10_0,10_4,10_0_0 +32972,2,57.0,0.0,6,400,1760.0,0.0,0.0,85,78,0.0,198.6490915515336,3001.1529563348276,2030.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,132997,2,1,2,0,1,,242.0,,41,1.0,3.0,4.0,3.0,2.0,3,3,1081.06041283129,1760.0,32169.759990261788,7,5,0,1,88.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06310273998359042,16084.879995130894,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +32973,2,72.0,0.0,5,111,1252.0,,,78,75,0.0,0.0,,1804.0,764.8452524188796,,71,0,0,0,0,0,0,0,0,0,,1,,3,132998,2,1,0,0,2,,1252.0,,41,0.0,12.0,9.0,2.0,1.5,2,2,147.20221893520687,1252.0,41890.25437947974,5,5,0,1,186.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04306490917094319,27926.836252986493,7,4,7,7_1,7_2,7_0_0 +32974,2,61.0,0.0,7,400,3400.0,0.0,0.0,75,78,0.0,0.0,5797.681847465008,3520.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,132999,2,1,1,0,1,,600.0,,41,0.0,1.0,7.0,2.0,1.5,2,2,1359.03969063015,3400.0,41421.97806423319,5,5,1,2,250.0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08497904167062048,27614.652042822127,7,4,7,7_1,7_0,7_0_0 +32975,1,35.0,171.0,5,111,408.0,360.0,0.0,85,64,0.0,0.0,695.7218216958009,768.0,0.0,683.461457258324,50,1,2,2,2,2,1,2,2,2,15.0,2,,3,133000,2,1,0,1,1,900.0,0.0,327.0,42,1.0,0.0,4.0,4.0,2.1,2,2,309.816825205137,408.0,32550.365669694016,6,1,2,3,85.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.023594204986613885,15500.17412842572,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +32976,2,33.0,0.0,1,112,1500.0,0.0,0.0,56,38,0.0,0.0,2557.8008150580918,1560.0,83.13535352379125,0.0,31,2,2,2,2,1,2,2,2,2,40.0,1,,1,133001,1,3,4,0,1,,1200.0,550.0,43,2.0,0.0,5.0,3.0,1.8,2,2,1683.18456657273,1500.0,28696.9531129617,1,1,2,3,95.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.05436117185888236,15942.751729423166,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +32977,2,75.0,0.0,7,111,254.0,1079.0,0.0,75,72,0.0,0.0,433.12093801650354,1333.0,0.0,2048.485867727032,31,0,0,0,0,0,0,0,0,0,,1,,5,133002,2,1,2,0,1,,250.0,,41,0.0,5.0,6.0,2.0,1.5,2,2,628.356934590942,254.0,64255.549017809004,5,5,0,1,138.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02074529002359854,42837.03267853933,9,5,9,9_1,9_4,9_0_0 +32978,1,57.0,320.0,5,111,650.0,0.0,0.0,85,63,0.0,0.0,1108.3803531918397,1010.0,498.81212114274757,0.0,71,0,0,0,0,0,0,0,0,1,15.0,2,,3,133003,1,3,0,0,2,,120.0,520.0,42,1.0,0.0,2.0,2.0,1.5,2,2,2177.88397779087,650.0,18102.6917807256,6,1,2,3,40.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.05579280762407792,12068.4611871504,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +32979,2,39.0,0.0,2,111,286.0,491.0,0.0,0,38,0.0,0.0,487.6873554044095,777.0,0.0,932.1654875384364,20,2,2,2,2,1,2,2,2,0,,2,,2,133004,1,3,0,0,1,,0.0,1150.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1147.87198407818,286.0,57519.24614252559,0,4,2,3,57.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.013508521966276991,44245.57395578891,10,5,10,10_0,10_4,10_0_1 +32980,2,78.0,0.0,7,111,500.0,,,75,74,0.0,0.0,,632.0,182.89777775234077,,20,0,0,0,0,0,0,0,0,0,,1,,5,133005,2,2,0,0,2,,350.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,110.84491930440463,500.0,11194.793481194705,5,5,0,1,100.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.056454815451633784,7463.195654129803,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +32981,2,51.0,0.0,2,111,738.0,,,0,33,0.0,0.0,,738.0,0.0,,41,0,0,0,0,0,0,0,0,2,10.0,2,,2,133006,2,2,0,0,2,,240.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,36.87260903297679,738.0,100088.69349627025,0,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.0073734602203344895,100088.69349627025,10,5,10,10_0,10_2,10_0_1 +32982,1,62.0,137.0,2,111,420.0,120.0,0.0,0,86,0.0,0.0,716.1842282162656,540.0,0.0,227.8204857527747,50,2,2,2,2,1,1,2,2,0,,2,,2,133007,1,2,0,1,1,959.0,0.0,267.0,31,3.0,5.0,3.0,4.0,2.5,4,4,308.120925369775,420.0,28475.587435150894,0,5,2,3,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,1,0.01896361229526075,11390.234974060357,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +32983,2,57.0,0.0,9,111,496.0,569.0,0.0,0,78,0.0,0.0,845.7794695125424,1065.0,0.0,1080.2488032777399,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,133008,1,3,1,0,1,,212.0,352.0,11,0.0,2.0,3.0,1.0,1.0,1,1,555.702871204835,496.0,15616.654585960965,0,5,2,3,80.0,6,4,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06819642415331463,15616.654585960965,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +32984,2,56.0,0.0,1,112,240.0,0.0,0.0,52,52,0.0,927.0290939071567,409.2481304092947,1120.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,1,5.0,1,,1,133009,2,1,2,0,1,,200.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,767.436630562308,240.0,14991.383982624002,4,1,0,1,80.0,8,2,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07470957993592543,9994.255988416002,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +32985,2,74.0,0.0,5,111,480.0,,,86,77,0.0,0.0,,730.0,346.39730634913025,,70,0,0,0,0,0,0,0,0,0,,2,,3,133010,2,1,0,0,2,,420.0,395.0,41,0.0,3.0,6.0,2.0,1.5,2,2,164.18643393349575,480.0,36527.83290879347,5,5,2,3,125.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019984760711721953,24351.888605862314,7,4,7,7_0,7_2,7_0_0 +32986,0,28.0,0.0,7,400,160.0,,,45,63,0.0,0.0,,400.0,332.541414095165,,50,0,0,0,0,0,0,0,0,0,,1,,5,133011,2,2,0,0,2,,160.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,114.38182526875455,160.0,39235.2796445944,4,4,5,0,80.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010194906309406402,21797.37758033022,6,3,6,6_1,6_1,6_0_0 +32987,2,51.0,0.0,7,111,430.0,400.0,0.0,0,53,0.0,0.0,733.2362336499863,830.0,0.0,759.4016191759156,41,2,2,2,2,1,2,2,2,1,40.0,2,,5,133012,1,1,0,0,1,,150.0,459.0,12,1.0,0.0,4.0,1.0,1.0,1,1,1937.03981664781,430.0,32955.17777185338,0,1,2,3,70.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.025185723643976,32955.17777185338,8,4,8,8_0,8_3,8_0_0 +32988,2,41.0,0.0,9,120,250.0,0.0,0.0,0,85,0.0,794.5963662061343,426.3001358430153,955.0,145.4868686666347,0.0,71,2,2,2,2,1,2,2,2,0,,1,2010.0,6,133013,1,3,3,0,2,,238.0,,31,3.0,0.0,3.0,7.0,3.3999999999999995,4,3,715.972448237879,250.0,20932.60190352824,0,7,0,1,56.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0.04562261320409636,6156.647618684778,1,1,1_0,1_1_0,1_0_0,1_0_0_0 +32989,2,63.0,0.0,2,111,476.0,395.0,0.0,0,75,0.0,0.0,811.6754586451011,871.0,0.0,749.9090989362167,50,0,0,0,0,0,0,0,0,0,,1,,2,133015,2,1,1,0,1,,160.0,263.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1277.96437794819,476.0,18580.301711129297,0,5,2,3,35.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04687760261063389,18580.301711129297,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +32990,1,45.0,116.0,2,111,420.0,0.0,0.0,0,68,0.0,0.0,716.1842282162656,420.0,0.0,0.0,71,2,1,2,2,1,2,2,1,2,25.0,2,,2,133016,2,3,0,1,1,859.0,0.0,312.0,32,1.0,0.0,3.0,2.0,1.5,2,1,599.732700394405,420.0,20011.39927149299,0,1,2,3,70.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.020988037583074274,13340.932847661992,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +32991,2,38.0,0.0,2,111,495.0,0.0,0.0,55,21,0.0,0.0,844.0742689691702,495.0,0.0,0.0,50,2,2,1,2,1,2,2,2,0,,1,,2,133017,2,2,1,0,2,,430.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,566.482414910442,495.0,23144.929509646063,1,1,1,2,120.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,1,0,1,0,0,0.02138697375568588,11021.395004593363,2,1,2_0,2_1_0,2_4_0,2_0_1_0 +32992,2,56.0,0.0,7,111,360.0,0.0,0.0,0,45,0.0,185.40581878143135,613.872195613942,526.0,36.025319860309544,0.0,31,2,2,2,1,1,2,2,2,2,10.0,1,,5,133018,2,2,2,0,1,,0.0,250.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1719.28049904868,360.0,20654.675933232716,0,1,2,3,70.0,6,5,9,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,1,0,1,0,0,0,0.025466388419761298,20654.675933232716,5,3,5,5_1,5_2,5_0_0 +32993,2,50.0,0.0,2,112,440.0,0.0,0.0,56,69,0.0,0.0,750.2882390837069,630.0,263.261952825339,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,133019,2,2,4,0,1,,360.0,,43,3.0,0.0,3.0,4.0,2.5,4,4,752.069637187874,440.0,60733.52713746851,1,1,0,1,70.0,8,1,9,0,0,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.010373183144361333,24293.410854987404,7,4,7,7_1,7_1,7_0_1 +32994,2,33.0,0.0,9,111,850.0,0.0,0.0,43,38,0.0,0.0,1449.420461866252,910.0,83.13535352379125,0.0,12,0,0,0,0,0,0,0,0,3,50.0,2,2009.0,6,133020,2,3,0,0,1,,312.0,570.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1615.31166034135,850.0,35073.33077691418,1,1,2,3,47.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.025945639602583063,23382.220517942787,6,3,6,6_0,6_3,6_0_0 +32995,2,42.0,0.0,1,111,0.0,0.0,756.0,0,54,0.0,0.0,476.5206275535463,756.0,0.0,904.7295035588987,43,0,0,0,0,0,0,0,0,1,15.0,2,,1,133021,1,1,0,0,2,,0.0,1345.0,32,1.0,0.0,3.0,2.0,1.5,2,2,1018.89488691601,0.0,53886.552907107085,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.014029474130647005,35924.368604738054,9,5,9,9_0,9_4,9_1_0 +32996,0,38.0,0.0,1,111,1400.0,,,46,37,0.0,0.0,,1450.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,1,5.0,1,,1,133022,2,1,0,0,2,,150.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,100.81351053654318,1400.0,60784.0300692972,4,1,5,0,100.0,6,5,0,0,0,0,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.023854950031232197,33768.905594054,9,5,9,9_1,9_2,9_1_0 +32998,1,29.0,243.0,2,111,0.0,0.0,0.0,0,64,0.0,0.0,0.0,396.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,133024,2,2,0,0,1,,174.0,261.0,12,1.0,0.0,1.0,1.0,1.0,1,1,619.658159338322,0.0,7800.381427218193,0,4,2,3,33.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.05076674822826239,7800.381427218193,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +32999,2,67.0,0.0,2,111,850.0,0.0,0.0,77,78,0.0,0.0,1449.420461866252,850.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,133025,1,3,0,1,1,2000.0,0.0,600.0,41,4.0,6.0,6.0,6.0,3.5,6,6,336.981215382989,850.0,19959.033025991037,6,5,2,3,90.0,9,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,1,0,1,0,0,0.04258723350440443,5702.580864568868,1,1,1_0,1_0_0,1_3_0,1_0_1_0 +33000,1,43.0,377.0,2,111,580.0,580.0,0.0,0,52,0.0,0.0,989.0163151557955,1160.0,0.0,1101.1323478050776,71,0,0,0,0,0,0,0,0,3,10.0,2,,2,133026,1,3,0,0,1,,156.0,400.0,32,1.0,0.0,2.0,2.0,1.5,2,2,1508.20533517475,580.0,8741.640393858,0,1,2,3,45.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.1326982062560057,5827.760262572,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +33001,1,53.0,340.0,2,400,632.0,,,0,52,0.0,0.0,,770.0,191.2113131047199,,71,0,0,0,0,0,0,0,0,0,,1,,2,133027,2,2,0,0,1,,867.0,590.0,12,1.0,2.0,3.0,1.0,1.0,1,1,26.30087391337807,632.0,12000.667692846517,0,4,2,3,54.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06416309656328453,12000.667692846517,2,1,2_1,2_1_1,2_1_1,2_0_1_1 +33002,2,64.0,0.0,8,111,787.0,1032.0,0.0,77,46,0.0,0.0,1341.992827633812,1819.0,0.0,1959.2561774738622,44,0,0,0,0,0,0,0,0,2,35.0,1,2001.0,6,133028,2,1,2,0,1,,685.0,,42,1.0,2.0,5.0,2.0,1.5,2,2,2900.00157235458,787.0,66505.8516401315,5,1,1,2,105.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02735097672070655,44337.23442675433,10,5,10,10_1,10_3,10_0_0 +33003,2,46.0,0.0,9,112,0.0,0.0,0.0,46,43,0.0,0.0,0.0,942.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,133029,2,1,1,0,1,,429.0,800.0,43,2.0,0.0,6.0,4.0,2.1,2,2,2005.27928079892,0.0,58696.58225083009,1,1,2,3,140.0,6,0,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01604863458615903,27950.753452776233,7,4,7,7_1,7_0,7_0_0 +33004,2,61.0,0.0,2,111,276.0,,,0,81,0.0,0.0,,436.0,221.69427606344334,,71,2,2,2,2,1,2,2,2,0,,1,,2,133030,2,3,0,0,2,,150.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,92.26699789170326,276.0,7267.873976352653,0,4,0,1,35.0,6,5,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0.0599900330438592,7267.873976352653,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +33005,2,46.0,0.0,6,111,320.0,,,56,63,0.0,317.83854648245375,,956.0,548.6933332570223,,71,0,0,0,0,0,0,0,0,2,20.0,1,,4,133031,1,3,0,0,2,,360.0,,43,4.0,0.0,4.0,4.0,2.5,4,4,120.10267272587804,320.0,58231.398152597314,1,1,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016417259937581617,23292.559261038925,6,3,6,6_1,6_2,6_0_0 +33006,2,72.0,0.0,2,111,336.0,138.0,0.0,77,78,0.0,0.0,572.9473825730125,474.0,0.0,261.99355861569086,71,1,2,2,2,1,2,2,2,0,,2,,2,133032,1,2,0,1,1,408.0,260.0,245.0,41,1.0,0.0,3.0,3.0,2.0,3,3,369.654723308972,336.0,50341.60203709737,5,5,2,3,90.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.009415671747011613,25170.801018548686,7,4,7,7_0,7_3,7_0_1 +33007,2,49.0,0.0,1,400,456.0,0.0,0.0,46,62,1434.368677409778,190.70312788947223,777.5714477776598,2008.0,66.50828281903301,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,133033,2,1,2,0,1,,100.0,,43,2.0,1.0,3.0,2.0,1.5,2,2,2521.62055989399,456.0,18976.70736021269,1,1,0,1,140.0,0,0,8,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.10581393083027942,12651.138240141794,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +33008,1,34.0,305.0,2,111,600.0,120.0,0.0,0,43,0.0,0.0,1023.1203260232367,720.0,0.0,227.8204857527747,20,2,2,2,2,1,2,2,2,0,,2,,2,133034,2,3,0,1,1,,0.0,300.0,12,1.0,0.0,1.0,1.0,1.0,1,1,279.960941723126,600.0,13377.742203869171,0,4,2,3,54.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,1,0.05382074112564064,13377.742203869171,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +33009,2,55.0,0.0,6,112,1000.0,0.0,0.0,55,38,0.0,397.2981831030672,1705.2005433720612,1450.0,207.83838380947813,0.0,44,0,0,0,0,0,0,0,0,0,,1,,4,133035,2,1,2,0,1,,250.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1036.48514002569,1000.0,61527.20480812745,1,1,0,1,80.0,10,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023566810885068224,41018.136538751634,9,5,9,9_1,9_0,9_0_0 +33010,2,48.0,0.0,6,112,1200.0,0.0,0.0,0,64,3902.3265488354255,993.245457757668,2046.2406520464733,5650.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,4,133036,1,2,3,0,1,,1500.0,,32,2.0,0.0,7.0,5.0,2.5999999999999996,3,3,1535.97526433663,1200.0,72899.00632847642,0,1,1,2,160.0,8,2,8,1,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07750448578875828,28038.07935710632,8,4,8,8_1,8_1,8_0_0 +33011,2,56.0,0.0,2,111,228.0,,,69,62,0.0,0.0,,274.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,2,45.0,1,,2,133037,2,2,0,0,2,,248.0,,43,2.0,0.0,4.0,4.0,2.5,4,4,106.82062173118638,228.0,42503.70103814681,1,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.006446497441577774,17001.480415258724,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +33012,2,67.0,0.0,2,111,510.0,1525.0,0.0,77,75,0.0,0.0,869.6522771197511,2035.0,0.0,2895.2186731081783,44,0,0,0,0,0,0,0,0,0,,1,,2,133038,2,1,1,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1516.14137317196,510.0,41270.22607104575,5,5,0,1,130.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04930915562460923,27513.484047363832,7,4,7,7_1,7_2,7_0_1 +33013,1,43.0,246.0,2,111,900.0,650.0,0.0,54,64,0.0,0.0,1534.680489034855,1550.0,0.0,1234.027631160863,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,133039,1,1,0,1,1,640.0,360.0,321.0,43,2.0,3.0,3.0,5.0,2.6,3,2,348.515460593048,900.0,33627.74291010521,4,1,2,3,60.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04609289431477786,12933.74727311739,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +33014,1,46.0,110.0,1,300,140.0,0.0,0.0,0,11,0.0,0.0,238.72807607208856,240.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133040,2,1,2,0,1,,70.0,,12,1.0,1.0,3.0,1.0,1.0,1,1,810.346916926516,140.0,5552.6653651716915,0,1,1,2,70.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.04322248581831818,5552.6653651716915,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +33015,1,46.0,207.0,9,221,490.0,684.0,0.0,0,62,0.0,0.0,835.54826625231,1174.0,0.0,1298.5767687908158,50,0,0,0,0,0,0,0,0,2,10.0,1,2005.0,6,133041,2,2,2,0,1,,330.0,433.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1813.15542273227,490.0,15231.134704399596,0,1,2,3,82.0,1,3,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.07707895851389744,11716.257464922766,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +33016,2,52.0,0.0,2,112,586.0,0.0,0.0,33,56,0.0,0.0,999.2475184160279,586.0,0.0,0.0,50,2,1,2,2,1,2,2,2,3,60.0,2,,2,133042,2,1,0,1,1,590.0,0.0,506.0,43,3.0,1.0,3.0,3.0,2.0,3,3,267.974704935035,586.0,52230.99229132418,1,1,2,3,77.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.011219392439100518,26115.49614566209,7,4,7,7_0,7_2,7_0_1 +33017,2,43.0,0.0,7,111,700.0,,,0,64,0.0,0.0,,760.0,83.13535352379125,,50,2,2,2,2,1,2,2,2,2,15.0,1,,5,133043,1,3,0,0,2,,280.0,300.0,12,1.0,3.0,5.0,1.0,1.0,1,1,157.4115984801818,700.0,23976.359070527753,0,1,2,3,84.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.03169789031622437,23976.359070527753,6,3,6,6_1,6_2,6_0_0 +33018,2,44.0,0.0,5,111,4440.0,0.0,0.0,37,37,0.0,349.62240113069913,7571.090412571952,4704.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,90.0,1,,3,133044,2,1,1,0,1,,750.0,,43,2.0,0.0,7.0,2.0,1.5,2,2,729.264297686466,4440.0,148869.5108093005,4,1,1,2,230.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03159814238944971,99246.34053953366,10,5,10,10_1,10_4,10_0_0 +33019,1,44.0,406.0,9,120,800.0,0.0,0.0,0,56,210.9365702073203,0.0,1364.160434697649,1070.0,96.99124577775646,0.0,50,0,0,0,0,0,0,0,0,0,,1,2005.0,6,133045,2,3,2,0,1,,190.0,624.0,32,1.0,0.0,3.0,3.0,1.8,2,2,684.236889427063,800.0,10178.097915478951,0,1,2,3,61.0,0,0,7,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.10512769761948679,5654.49884193275,1,1,1_1,1_1_1,1_0_1,1_0_0_1 +33020,1,34.0,180.0,2,111,600.0,0.0,0.0,0,63,0.0,0.0,1023.1203260232367,978.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,2,133046,1,2,0,1,1,31.0,0.0,334.0,32,1.0,0.0,2.0,2.0,1.3,1,1,290.072178818841,600.0,25487.857997092342,0,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.038371211896722365,19606.044613147955,5,3,5,5_0,5_4,5_0_1 +33021,2,91.0,0.0,5,111,465.0,0.0,0.0,86,75,0.0,0.0,792.9182526680084,819.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,133047,2,1,0,1,1,,0.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,1644.89241624274,465.0,39146.98345628519,5,5,0,1,60.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02092115222401655,26097.988970856793,7,4,7,7_0,7_3,7_0_0 +33022,2,62.0,0.0,1,111,449.0,1475.0,0.0,75,38,0.0,0.0,765.6350439740555,1924.0,0.0,2800.2934707111885,12,0,0,0,0,0,0,0,0,2,30.0,2,,1,133048,2,1,0,0,1,,0.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,831.719613994557,449.0,32056.868095826147,5,1,0,1,65.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06001833972828143,21371.24539721743,6,3,6,6_0,6_4,6_1_0 +33024,2,86.0,0.0,5,221,2630.0,0.0,0.0,77,74,0.0,0.0,4484.677429068521,2708.0,108.07595958092864,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,133050,2,1,3,0,1,,439.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1929.62164980175,2630.0,96054.0,5,5,0,1,160.0,1,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.028192475066108648,64036.0,10,5,10,10_1,10_1,10_0_0 +33025,2,51.0,0.0,5,112,2200.0,0.0,0.0,85,48,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,3,133051,2,1,2,0,1,,550.0,,42,1.0,1.0,7.0,2.0,1.5,2,2,425.453936964461,2200.0,47348.19313908426,6,1,0,1,120.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04646428626193927,31565.46209272284,8,4,8,8_1,8_1,8_0_0 +33026,1,23.0,210.0,2,111,0.0,0.0,0.0,46,65,0.0,0.0,0.0,724.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133052,2,1,0,1,2,570.0,0.0,354.0,43,2.0,0.0,3.0,3.0,1.8,2,2,196.853925086212,0.0,23678.924059555786,4,4,2,3,69.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030575713583059744,13154.957810864325,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +33028,2,27.0,0.0,9,111,700.0,0.0,0.0,63,56,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,2,2006.0,6,133054,2,1,0,0,1,,0.0,617.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1853.42525061043,700.0,36077.27737905696,1,1,2,3,57.0,8,6,7,0,0,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.01940279452479841,24051.51825270464,6,3,6,6_0,6_2,6_0_0 +33029,1,46.0,437.0,2,111,1008.0,0.0,0.0,85,63,0.0,0.0,1718.8421477190377,1008.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133055,1,3,0,0,1,,0.0,751.0,42,1.0,3.0,3.0,4.0,2.1,2,2,1245.09533754967,1008.0,20966.66699128331,6,1,2,3,60.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.048076310861381366,9984.127138706337,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +33030,2,49.0,0.0,2,111,349.0,0.0,0.0,77,38,0.0,0.0,595.1149896368494,710.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,45.0,2,,2,133056,1,1,0,1,2,,0.0,780.0,42,1.0,0.0,3.0,2.0,1.5,2,2,2266.27504119633,349.0,48194.09649733754,7,1,2,3,70.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.014732094833217252,32129.39766489169,8,4,8,8_0,8_3,8_0_1 +33031,2,62.0,0.0,2,111,400.0,70.0,0.0,0,75,0.0,31.783854648245374,682.0802173488245,494.0,0.0,132.89528335578524,20,0,0,0,0,0,0,0,0,0,,2,,2,133057,2,2,0,1,1,,0.0,,21,0.0,2.0,2.0,2.0,1.5,2,2,1746.41016075185,400.0,38504.315006514684,0,5,0,1,49.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012829730899417854,25669.543337676456,7,4,7,7_0,7_3,7_0_1 +33032,2,49.0,0.0,1,111,430.0,0.0,0.0,85,85,0.0,105.94618216081791,733.2362336499863,615.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133058,2,1,2,0,1,,430.0,,41,0.0,0.0,2.0,2.0,1.5,2,2,429.82010204814,430.0,21993.73054806101,7,5,0,1,120.0,9,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027962514074458326,14662.487032040672,3,2,3_0,3_1_0,3_3_0,3_1_0_0 +33033,2,47.0,0.0,1,111,460.0,675.0,0.0,45,48,0.0,0.0,784.3922499511482,1135.0,0.0,1281.4902323593576,50,0,0,0,0,0,0,0,0,3,100.0,1,,1,133059,2,3,3,0,1,,428.0,,43,2.0,0.0,4.0,4.0,2.5,4,3,189.161624779252,460.0,48739.272708204386,1,1,1,2,92.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02328717555543136,19495.709083281756,5,3,5,5_1,5_4,5_1_0 +33034,2,56.0,0.0,2,111,150.0,1200.0,0.0,78,34,0.0,0.0,255.78008150580916,1350.0,0.0,2278.2048575277468,50,0,0,0,0,0,0,0,0,2,5.0,1,,2,133060,2,2,2,0,1,,120.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,1474.95655869928,150.0,22979.299132227203,6,1,0,1,80.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0587485280657102,15319.532754818136,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +33035,1,55.0,120.0,7,111,260.0,,,0,52,0.0,0.0,,380.0,166.2707070475825,,71,0,0,0,0,0,0,0,0,1,20.0,1,,5,133061,2,3,0,0,2,,1200.0,434.0,32,2.0,2.0,4.0,3.0,2.0,3,3,99.54768132505045,260.0,22108.91954730256,0,1,2,3,73.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.017187633216855347,11054.45977365128,2,1,2_1,2_1_1,2_2_1,2_0_0_1 +33036,2,49.0,0.0,6,112,708.0,999.0,0.0,0,63,0.0,0.0,1207.2819847074193,1707.0,0.0,1896.6055438918493,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,133062,2,2,4,0,1,,204.0,,32,1.0,0.0,6.0,2.0,1.5,2,2,659.760774939768,708.0,20767.434559233403,0,1,1,2,120.0,9,3,4,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08219599754275143,13844.95637282227,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +33037,2,28.0,0.0,9,111,240.0,,,0,42,0.0,0.0,,240.0,0.0,,20,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,133063,2,1,0,0,2,,70.0,510.0,12,1.0,0.0,2.0,1.0,1.0,1,1,191.1006024623521,240.0,40256.57432312981,0,1,2,3,35.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.005961759142086406,40256.57432312981,9,5,9,9_0,9_2,9_0_0 +33038,2,63.0,0.0,5,111,350.0,0.0,0.0,77,75,0.0,0.0,596.8201901802214,350.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,133064,2,1,0,1,1,,0.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,527.142311008045,350.0,49974.09175875085,5,5,0,1,72.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.007003629034212758,33316.061172500566,8,4,8,8_0,8_3,8_0_0 +33039,0,51.0,0.0,7,111,380.0,,,0,52,0.0,0.0,,443.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,1,,5,133065,2,2,0,0,2,,100.0,,12,1.0,3.0,2.0,1.0,1.0,1,1,144.84163626870026,380.0,7657.144578313253,0,4,5,0,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.057854464607430184,7657.144578313253,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +33040,2,75.0,0.0,2,120,300.0,950.0,0.0,78,78,0.0,0.0,511.56016301161833,1250.0,0.0,1803.5788455427996,50,0,0,0,0,0,0,0,0,0,,1,,2,133066,1,2,2,0,2,,350.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,986.443379324209,300.0,24103.828651216325,5,5,0,1,80.0,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05185898132979479,16069.219100810884,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +33041,2,33.0,0.0,1,300,2000.0,0.0,0.0,43,43,0.0,410.5414558731694,3410.4010867441225,2310.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,1,133067,2,2,1,0,1,,852.0,,43,2.0,0.0,5.0,5.0,2.4,2,2,192.121450112495,2000.0,74119.32300874885,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.031165961941224608,30883.051253645353,8,4,8,8_1,8_0,8_1_0 +33042,2,62.0,0.0,2,111,400.0,72.0,0.0,0,46,0.0,0.0,682.0802173488245,472.0,0.0,136.6922914516648,70,0,0,0,0,0,0,0,0,2,30.0,2,,2,133068,1,2,0,1,1,699.0,200.0,410.0,12,1.0,0.0,3.0,1.0,1.0,1,1,381.013080651726,400.0,24989.056813569336,0,1,2,3,80.0,7,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.018888267913485184,24989.056813569336,7,4,7,7_0,7_2,7_0_1 +33043,0,91.0,0.0,6,300,2000.0,0.0,0.0,86,78,0.0,0.0,3410.4010867441225,2180.0,249.40606057137379,0.0,71,2,2,2,1,2,2,2,2,0,,1,,4,133069,2,1,2,0,2,,339.0,,41,0.0,0.0,6.0,3.0,2.0,3,3,2724.52295733733,2000.0,38914.58100976063,5,5,0,1,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,1,0,0.056020132902194375,19457.290504880315,5,3,5,5_1,5_0,5_0_0 +33044,2,55.0,0.0,6,111,1700.0,0.0,0.0,78,75,0.0,0.0,2898.840923732504,1700.0,0.0,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,133070,2,1,2,0,1,,432.0,,41,1.0,2.0,5.0,3.0,2.0,3,3,1312.29593521332,1700.0,43958.9224207641,5,5,0,1,94.0,9,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.038672467530664514,21979.46121038205,6,3,6,6_1,6_3,6_0_0 +33045,2,81.0,0.0,1,120,1000.0,0.0,0.0,86,78,0.0,0.0,1705.2005433720612,1090.0,124.70303028568689,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133071,2,1,4,0,2,,230.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,1884.43592698715,1000.0,19781.239135426225,5,5,0,1,90.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.05510271588840553,13187.492756950816,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +33046,1,40.0,467.0,2,111,990.0,,,0,55,0.0,0.0,,1254.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,2,133072,2,1,0,0,2,,400.0,665.0,32,1.0,0.0,5.0,4.0,2.3,3,2,133.44387369759,990.0,19765.169331552777,0,4,2,3,88.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0.06344494089398647,8593.551883283817,1,1,1_1,1_1_1,1_2_1,1_0_1_1 +33047,1,42.0,266.0,1,111,400.0,0.0,0.0,0,85,0.0,0.0,682.0802173488245,400.0,0.0,0.0,42,2,2,2,2,1,1,1,1,0,,2,,1,133073,2,3,0,0,1,,0.0,476.0,11,0.0,0.0,1.0,1.0,1.0,1,1,2001.11012884173,400.0,11707.784891323781,0,7,2,3,22.0,9,7,4,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,1,0,1,0.03416530143942306,11707.784891323781,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +33048,2,55.0,0.0,2,111,400.0,0.0,0.0,0,56,0.0,0.0,682.0802173488245,525.0,173.19865317456512,0.0,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,133074,2,2,0,1,1,648.0,280.0,336.0,22,2.0,2.0,4.0,2.0,1.5,2,2,381.915268597357,400.0,27541.303571919107,0,1,2,3,82.0,7,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.019062278538452545,18360.86904794607,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +33049,2,80.0,0.0,5,300,520.0,0.0,0.0,77,78,1265.6194212439218,0.0,886.7042825534718,1859.0,192.59690233011642,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,133075,2,1,1,0,1,,250.0,,41,0.0,5.0,4.0,2.0,1.5,2,2,1884.94410888791,520.0,19252.484445368005,5,5,0,1,96.0,0,0,2,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09655896646872818,12834.989630245336,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +33050,1,47.0,348.0,2,112,220.0,0.0,0.0,0,47,0.0,0.0,375.14411954185346,220.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,60.0,2,,2,133076,2,1,0,1,1,530.0,0.0,314.0,32,1.0,0.0,3.0,3.0,1.6,1,1,212.390911262603,220.0,23382.198723904075,0,1,2,3,65.0,10,5,1,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.009408867087212364,14613.874202440047,3,2,3_1,3_0_1,3_2_1,3_0_1_1 +33051,2,56.0,0.0,6,112,325.0,1000.0,0.0,78,52,0.0,0.0,554.1901765959199,1325.0,0.0,1898.504047939789,50,2,2,1,2,1,2,2,2,2,7.0,1,,4,133077,2,2,3,0,1,,266.0,513.0,42,1.0,2.0,4.0,2.0,1.5,2,2,406.289993297234,325.0,22690.69952632422,6,1,2,3,81.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.058393968791611045,15127.13301754948,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +33052,2,45.0,0.0,2,300,800.0,0.0,0.0,0,62,0.0,0.0,1364.160434697649,800.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133078,1,2,3,0,2,,0.0,500.0,32,2.0,0.0,4.0,3.0,2.0,3,2,2180.7629415805,800.0,18596.15345919031,0,1,2,3,90.0,0,0,9,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04301964929229147,9298.076729595155,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +33053,2,62.0,0.0,8,111,340.0,777.0,0.0,0,65,0.0,0.0,579.7681847465008,1117.0,0.0,1475.1376452492161,71,0,0,0,0,0,0,0,0,2,10.0,2,2003.0,6,133079,2,1,0,0,1,,0.0,589.0,32,2.0,1.0,5.0,4.0,2.5,4,4,1047.96287775324,340.0,37906.59632312389,0,1,2,3,99.0,8,7,4,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029467166887748357,15162.638529249558,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +33054,2,68.0,0.0,6,111,150.0,,,77,75,0.0,0.0,,150.0,0.0,,70,0,0,0,0,0,0,0,0,0,,1,,4,133080,2,1,0,0,2,,560.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,78.88756553567866,150.0,44420.939442317285,5,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.003376785855571159,29613.959628211524,8,4,8,8_1,8_2,8_0_0 +33055,2,46.0,0.0,1,111,1000.0,0.0,0.0,54,37,0.0,397.2981831030672,1705.2005433720612,1400.0,138.5589225396521,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,133081,2,1,1,0,1,,440.0,,43,2.0,0.0,5.0,4.0,2.3,3,3,1718.55299820434,1000.0,65820.86411299474,1,1,1,2,85.0,6,5,9,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.021269851419705138,28617.767005649886,8,4,8,8_1,8_2,8_1_0 +33056,2,59.0,0.0,2,111,1000.0,0.0,0.0,62,52,0.0,0.0,1705.2005433720612,1100.0,138.5589225396521,0.0,50,2,2,2,1,2,2,2,2,0,,2,,2,133082,1,3,0,0,2,,0.0,450.0,42,1.0,0.0,3.0,2.0,1.5,2,2,2061.26120507191,1000.0,28448.101942829915,1,5,2,3,65.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,1,0,0,0.03866690305773616,18965.401295219945,5,3,5,5_0,5_3,5_0_1 +33057,1,33.0,95.0,9,111,650.0,1200.0,0.0,85,33,0.0,0.0,1108.3803531918397,1850.0,0.0,2278.2048575277468,30,2,2,2,2,1,2,2,2,1,25.0,1,2005.0,6,133083,2,3,1,0,1,,370.0,1116.0,42,1.0,0.0,6.0,5.0,2.4,2,2,1378.32153640088,650.0,59749.7752084303,6,1,2,3,140.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0,1,0.030962459583261784,24895.739670179293,7,4,7,7_1,7_3,7_0_0 +33058,2,33.0,0.0,2,221,0.0,0.0,0.0,0,63,0.0,0.0,0.0,316.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,30.0,2,,2,133084,1,2,0,0,2,,0.0,420.0,12,1.0,0.0,4.0,1.0,1.0,1,1,3299.7766725507,0.0,31586.51599689627,0,1,2,3,80.0,1,2,7,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.010004268911172431,31586.51599689627,8,4,8,8_0,8_1,8_0_1 +33060,2,60.0,0.0,7,111,476.0,975.0,0.0,56,75,0.0,0.0,811.6754586451011,1451.0,0.0,1851.0414467412943,50,0,0,0,0,0,0,0,0,0,,1,,5,133086,2,2,2,0,1,,240.0,,42,1.0,1.0,3.0,2.0,1.5,2,2,1133.1924432949,476.0,36361.373226250726,4,5,0,1,82.0,7,5,5,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.039904983537653226,24240.91548416715,7,4,7,7_1,7_2,7_0_0 +33061,2,34.0,0.0,9,111,0.0,0.0,360.0,0,43,0.0,0.0,226.91458454930776,360.0,0.0,430.8235731232851,44,0,0,0,0,0,0,0,0,2,15.0,2,2005.0,6,133087,2,2,0,0,1,,100.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1860.5341778446,0.0,19299.47102202644,0,1,1,2,72.0,6,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018653360995704645,19299.47102202644,5,3,5,5_0,5_2,5_0_0 +33062,2,41.0,0.0,1,111,697.0,129.0,0.0,0,38,0.0,0.0,1188.5247787303267,826.0,0.0,244.90702218423277,12,0,0,0,0,0,0,0,0,2,15.0,2,,1,133088,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,942.037493099354,697.0,52524.578930677126,0,1,1,2,40.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.015725970903834745,52524.578930677126,10,5,10,10_0,10_4,10_1_0 +33063,1,49.0,247.0,9,112,300.0,,,0,85,0.0,0.0,,344.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,133089,2,2,0,0,2,,160.0,298.0,11,0.0,0.0,2.0,1.0,1.0,1,1,97.39209304303458,300.0,11431.653783871581,0,7,3,4,40.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.030091884035653223,11431.653783871581,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +33064,2,35.0,0.0,9,111,0.0,,,37,46,0.0,0.0,,22.0,30.482962958723462,,31,0,0,0,0,0,0,0,0,0,,1,2011.0,6,133090,2,1,0,0,2,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,187.05964902125154,0.0,74286.0,1,1,3,4,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.00029615270710497266,49524.0,10,5,10,10_1,10_2,10_0_0 +33065,2,65.0,0.0,1,111,319.5,100.0,0.0,0,31,0.0,0.0,544.8115736073736,420.0,0.0,189.8504047939789,20,0,0,0,0,0,0,0,0,0,,2,,1,133091,2,1,0,1,2,,0.0,,32,2.0,2.0,6.0,3.0,2.0,3,3,840.239445091662,319.5,54034.256746384126,0,1,1,2,103.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.00777284680663449,27017.128373192063,7,4,7,7_0,7_4,7_1_0 +33066,2,51.0,0.0,2,112,640.0,1300.0,0.0,56,47,0.0,0.0,1091.3283477581192,1940.0,0.0,2468.055262321726,71,0,0,0,0,0,0,0,0,2,40.0,1,,2,133092,2,2,2,0,2,,545.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,820.624987566784,640.0,30898.06986705619,1,1,0,1,110.0,10,2,1,0,1,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0627870934445794,20598.713244704126,5,3,5,5_1,5_1,5_0_1 +33068,2,36.0,0.0,2,111,1200.0,0.0,0.0,62,43,0.0,0.0,2046.2406520464733,1290.0,124.70303028568689,0.0,33,2,2,2,2,1,2,2,2,0,,2,,2,133094,2,3,0,0,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,2095.29826418364,1200.0,52900.05829707425,1,1,1,2,63.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,1,0,0,0.024385606396795715,25190.503950987735,7,4,7,7_0,7_3,7_0_1 +33069,2,44.0,0.0,9,111,1128.0,,,85,63,0.0,0.0,,1191.0,87.29212119998083,,50,0,0,0,0,0,0,0,0,2,4.0,1,2010.0,6,133095,2,2,0,0,2,,272.0,,42,1.0,1.0,3.0,3.0,1.8,2,2,111.2573712014558,1128.0,25734.354008650193,6,1,1,2,72.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.046280547768934255,14296.863338138995,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +33070,2,69.0,0.0,5,111,345.0,0.0,0.0,0,74,0.0,0.0,588.2941874633611,345.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,3,133096,1,1,0,1,2,,480.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,889.739691440195,345.0,52498.586307042315,0,5,0,1,68.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006571605528237256,52498.586307042315,10,5,10,10_0,10_4,10_0_0 +33071,2,39.0,0.0,2,111,1100.0,1020.0,0.0,37,37,0.0,0.0,1875.7205977092674,2120.0,0.0,1936.4741288985847,20,0,0,0,0,0,0,0,0,3,60.0,2,,2,133097,2,1,0,0,1,,0.0,1300.0,43,2.0,0.0,3.0,4.0,2.1,2,2,1117.73569139954,1100.0,83164.18429542538,1,1,2,3,78.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.025491742845322598,39601.99252163113,9,5,9,9_0,9_4,9_0_1 +33072,2,51.0,0.0,8,112,412.0,1074.0,0.0,47,34,0.0,0.0,702.5426238692892,1486.0,0.0,2038.9933474873335,20,0,0,0,0,0,0,0,0,2,25.0,1,2001.0,6,133098,2,1,2,0,1,,432.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,117.285087293759,412.0,54187.6520599398,1,1,1,2,96.0,8,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027423221776729827,27093.8260299699,7,4,7,7_1,7_0,7_0_0 +33073,2,54.0,0.0,7,112,540.0,,,11,52,0.0,0.0,,606.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,2,15.0,1,,5,133099,2,1,0,0,1,,140.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,115.49721806890106,540.0,51475.89083792694,1,1,0,1,105.0,7,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01177250145913949,34317.26055861796,9,5,9,9_1,9_1,9_0_0 +33074,2,42.0,0.0,9,111,1200.0,0.0,0.0,54,21,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,2,2,2,1,1,2,2,2,1,5.0,1,2006.0,6,133100,1,2,1,0,1,,450.0,869.0,43,2.0,0.0,4.0,4.0,2.3,3,2,1346.3834467148,1200.0,49428.45291792361,1,1,2,3,90.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.02427751485551471,21490.63170344505,6,3,6,6_1,6_3,6_0_0 +33075,2,44.0,0.0,1,111,369.0,1145.0,0.0,46,37,0.0,0.0,629.2190005042905,1514.0,0.0,2173.7871348910585,10,0,0,0,0,0,0,0,0,3,60.0,2,,1,133101,2,1,0,0,1,,0.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1003.61112783376,369.0,129903.40499419757,4,1,1,2,82.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.011654813821605572,72168.55833010976,10,5,10,10_0,10_4,10_1_0 +33076,2,57.0,0.0,2,111,3600.0,85.0,0.0,0,46,0.0,0.0,6138.72195613942,3685.0,0.0,161.37284407488207,42,0,0,0,0,0,0,0,0,2,60.0,1,,2,133102,2,1,1,0,1,,360.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,627.245130812805,3600.0,50200.223245786096,0,1,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07340604805595811,50200.223245786096,10,5,10,10_1,10_4,10_0_1 +33078,2,58.0,0.0,2,111,900.0,0.0,0.0,52,53,738.277995725621,397.2981831030672,1534.680489034855,1900.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,50.0,1,,2,133104,2,1,2,0,1,,300.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,2358.32457022555,900.0,78369.6797804379,1,1,1,2,158.0,9,7,9,1,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02424406996842502,39184.83989021895,9,5,9,9_1,9_3,9_0_1 +33079,2,53.0,0.0,7,111,998.0,0.0,0.0,21,56,1001.9487084847715,0.0,1701.790142285317,2048.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,133105,2,1,2,0,1,,323.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,804.812237471386,998.0,16280.815441125294,1,1,0,1,96.0,7,5,7,1,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.12579222505199325,10853.876960750196,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +33080,2,33.0,0.0,9,111,800.0,,,53,42,0.0,0.0,,892.0,127.47420873647992,,20,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,133106,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,217.80540307334368,800.0,67531.50029123707,1,1,1,2,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013208650720821414,32157.85728154146,8,4,8,8_1,8_2,8_0_0 +33081,1,32.0,16.0,7,111,0.0,0.0,1480.0,85,63,0.0,0.0,932.8710698138208,1480.0,0.0,1771.1635783957277,50,2,2,2,2,1,2,2,2,2,10.0,1,,5,133107,1,2,2,0,1,,320.0,403.0,42,2.0,0.0,3.0,4.0,2.5,4,2,372.263326070426,0.0,23300.139866826226,6,1,2,3,72.0,7,5,3,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,1,0.0635189320089517,9320.05594673049,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +33082,2,27.0,0.0,9,112,340.0,900.0,0.0,43,53,0.0,0.0,579.7681847465008,1240.0,0.0,1708.65364314581,20,0,0,0,0,0,0,0,0,2,110.0,1,2007.0,6,133108,1,1,1,0,1,,350.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,530.867947834324,340.0,48495.116371331016,1,1,1,2,110.0,7,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025569584997079293,32330.077580887344,8,4,8,8_1,8_1,8_0_0 +33083,2,55.0,0.0,2,120,400.0,,,43,52,0.0,145.67600047112464,,636.0,174.58424239996165,,60,0,0,0,0,0,0,0,0,0,,1,,2,133109,2,1,0,0,1,,300.0,,43,2.0,1.0,5.0,4.0,2.5,4,4,111.19434638494353,400.0,74286.3165896039,1,1,0,1,76.0,0,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.00856146904568702,29714.52663584156,8,4,8,8_1,8_2,8_0_1 +33084,2,34.0,0.0,2,111,1800.0,0.0,0.0,46,46,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,10.0,1,,2,133110,2,1,1,0,1,,280.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1589.89221202889,1800.0,57145.3689362959,1,1,1,2,68.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03149861543472737,31747.427186831053,8,4,8,8_1,8_3,8_0_1 +33085,2,56.0,0.0,2,111,360.0,0.0,0.0,0,46,0.0,0.0,613.872195613942,683.0,83.13535352379125,0.0,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,133111,1,1,1,0,2,,500.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,569.142016950105,360.0,38895.524969017635,0,1,0,1,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.017559860692047374,38895.524969017635,9,5,9,9_1,9_4,9_0_1 +33086,2,45.0,0.0,2,111,1084.0,1800.0,0.0,43,33,0.0,0.0,1848.4373890153142,2884.0,0.0,3417.30728629162,10,0,0,0,0,0,0,0,0,2,45.0,1,,2,133112,1,2,3,0,1,,672.0,,43,2.0,2.0,7.0,4.0,2.1,2,2,655.374902275631,1084.0,179758.75143997834,1,1,1,2,127.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.016043725142155157,85599.40544760873,10,5,10,10_1,10_4,10_0_1 +33087,2,52.0,0.0,8,111,540.0,,,11,11,0.0,132.4327277010224,,1144.0,698.3369695998466,,71,2,2,2,2,1,2,2,2,0,,1,2002.0,6,133113,2,2,0,0,2,,600.0,,43,3.0,1.0,5.0,3.0,2.0,3,3,108.67677192271537,540.0,50475.0,1,1,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.02266468548786528,25237.5,7,4,7,7_1,7_2,7_0_0 +33088,2,39.0,0.0,1,111,200.0,0.0,0.0,0,65,0.0,0.0,341.04010867441224,200.0,0.0,0.0,50,2,2,2,2,1,2,2,2,0,,2,,1,133114,1,2,0,0,1,,144.0,355.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1924.94004161242,200.0,20033.971347744002,0,4,2,3,55.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,0,0,1,0,0,0.009983043128516889,20033.971347744002,5,3,5,5_0,5_2,5_1_0 +33089,2,88.0,0.0,1,111,605.0,151.0,0.0,0,86,2033.4285367985678,0.0,1031.646328740097,2684.0,0.0,286.67411123890815,60,0,0,0,0,0,0,0,0,0,,1,,1,133115,2,1,4,0,2,,307.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,370.59872078217,605.0,54445.46463850242,0,6,0,1,120.0,9,7,3,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04929703544309447,54445.46463850242,10,5,10,10_1,10_3,10_1_0 +33090,2,41.0,0.0,2,112,0.0,0.0,0.0,56,64,0.0,0.0,0.0,1270.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,2,133116,2,3,2,0,1,,247.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,1674.90048645701,0.0,17122.07122025972,1,1,1,2,100.0,6,0,8,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07417326932370602,9512.261789033179,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +33091,2,27.0,0.0,1,111,480.0,0.0,0.0,0,47,0.0,0.0,818.4962608185893,480.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,35.0,2,,1,133117,2,2,0,0,2,,0.0,420.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2140.75178282548,480.0,21753.248855322767,0,1,2,3,35.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.022065669509524762,21753.248855322767,6,3,6,6_0,6_3,6_1_0 +33092,2,69.0,0.0,1,300,625.0,0.0,0.0,71,71,0.0,0.0,1065.7503396075383,745.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133118,2,1,1,0,2,,599.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,855.135080367147,625.0,20904.272154097314,5,5,0,1,80.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.03563864814369905,13936.181436064877,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +33093,2,59.0,0.0,2,111,220.0,115.0,0.0,0,54,0.0,0.0,375.14411954185346,335.0,0.0,218.32796551307572,10,0,0,0,0,0,0,0,0,0,,2,,2,133119,1,1,0,1,2,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1290.25926738554,220.0,21081.890813584385,0,1,0,1,35.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015890415284009463,21081.890813584385,5,3,5,5_0,5_4,5_0_1 +33094,2,51.0,0.0,7,112,2400.0,0.0,0.0,21,47,0.0,529.7309108040896,4092.4813040929466,2920.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,6.0,1,,5,133120,1,1,2,0,2,,300.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,670.999365964147,2400.0,70436.79247779443,1,1,1,2,100.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041455607180303465,28174.71699111777,8,4,8,8_1,8_0,8_0_0 +33095,1,37.0,412.0,2,111,660.0,249.0,0.0,56,63,0.0,0.0,1125.4323586255605,909.0,0.0,472.7275079370075,50,1,2,2,1,1,2,2,2,2,15.0,2,,2,133121,1,1,0,1,1,,0.0,627.0,43,2.0,1.0,5.0,7.0,2.9999999999999996,2,2,301.176811005057,660.0,18611.337907287816,4,1,2,3,90.0,7,5,8,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.0488411958628753,6203.779302429273,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33096,2,45.0,0.0,1,112,600.0,0.0,0.0,37,65,2636.7071275915036,0.0,1023.1203260232367,3200.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,45.0,1,,1,133122,2,1,2,0,1,,397.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1486.37776197026,600.0,75276.5804824126,1,1,0,1,115.0,8,2,8,1,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.042509901213533985,32728.948035831567,8,4,8,8_1,8_1,8_1_0 +33097,2,61.0,0.0,1,112,1200.0,0.0,0.0,0,78,0.0,0.0,2046.2406520464733,1328.0,177.35542085075468,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133123,2,1,3,0,1,,350.0,,31,1.0,1.0,5.0,2.0,1.5,2,2,651.681222054407,1200.0,46230.97537755483,0,5,0,1,110.0,10,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028725329482119144,30820.65025170322,8,4,8,8_1,8_0,8_1_0 +33098,1,39.0,78.0,2,111,220.0,260.0,0.0,0,42,0.0,0.0,375.14411954185346,480.0,0.0,493.61105246434516,71,2,1,2,2,1,2,2,2,2,10.0,2,,2,133124,1,1,0,1,2,456.0,250.0,444.0,32,1.0,0.0,4.0,3.0,1.6,1,1,299.174437630464,220.0,22832.21630583275,0,1,2,3,78.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.021022926270954194,14270.135191145468,3,2,3_1,3_0_1,3_3_1,3_0_1_1 +33099,2,56.0,0.0,2,111,600.0,120.0,0.0,46,31,0.0,0.0,1023.1203260232367,720.0,0.0,227.8204857527747,20,0,0,0,0,0,0,0,0,3,45.0,2,,2,133125,1,1,0,1,2,,0.0,,43,2.0,0.0,5.0,4.0,2.5,4,4,1133.07404676444,600.0,49273.49667198799,1,1,0,1,120.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014612317952448469,19709.398668795195,5,3,5,5_0,5_4,5_0_1 +33100,2,60.0,0.0,2,111,900.0,0.0,0.0,0,37,2531.2388424878436,0.0,1534.680489034855,3300.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,30.0,1,,2,133126,1,2,2,0,2,,280.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,852.225274169585,900.0,88368.30848280509,0,1,1,2,125.0,10,8,1,1,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03734370450965599,88368.30848280509,10,5,10,10_1,10_4,10_0_1 +33101,2,40.0,0.0,6,111,855.0,,,54,53,0.0,0.0,,947.0,127.47420873647992,,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,133127,2,1,0,0,1,,0.0,147.0,43,2.0,0.0,4.0,4.0,2.1,2,2,159.7476791110959,855.0,58679.0,4,1,2,3,110.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01613865266960923,27942.38095238095,7,4,7,7_1,7_2,7_0_0 +33102,0,36.0,0.0,7,400,0.0,,,0,22,0.0,0.0,,60.0,83.13535352379125,,50,0,0,0,0,0,0,0,0,0,,1,,5,133128,2,3,0,0,2,,0.0,,31,0.0,0.0,2.0,7.0,2.9999999999999996,2,2,81.50543814894277,0.0,9450.99490909091,0,6,5,0,50.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.006348537966334741,3150.3316363636372,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +33103,2,30.0,0.0,2,111,0.0,0.0,1293.6,84,38,0.0,0.0,815.3797404805125,1294.0,0.0,1548.092706089671,60,0,0,0,0,0,0,0,0,0,,2,,2,133129,2,1,0,0,2,,0.0,750.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1989.36184466013,0.0,29904.616565691635,3,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.04327091093635871,19936.411043794422,5,3,5,5_0,5_3,5_0_1 +33104,2,81.0,0.0,2,111,335.0,0.0,0.0,75,74,0.0,0.0,571.2421820296405,335.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,133130,2,2,0,1,1,,0.0,,41,0.0,0.0,5.0,2.0,1.5,2,2,1003.03486402724,335.0,80351.64137513415,5,5,0,1,124.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.004169174322600336,53567.760916756095,10,5,10,10_0,10_4,10_0_1 +33105,2,35.0,0.0,2,111,440.0,1075.0,0.0,43,34,0.0,0.0,750.2882390837069,1515.0,0.0,2040.8918515352732,10,0,0,0,0,0,0,0,0,2,15.0,1,,2,133131,2,2,1,0,1,,430.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,359.762895406598,440.0,50626.95142725578,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.029924772424364803,24108.072108217035,6,3,6,6_1,6_3,6_0_1 +33106,2,56.0,0.0,7,400,120.0,,,0,56,0.0,0.0,,414.0,407.36323226657714,,71,2,2,2,2,1,2,2,2,0,,1,,5,133132,2,3,0,0,2,,130.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,110.0341904839636,120.0,5133.58,0,4,0,1,65.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.0806454754771524,5133.58,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +33107,2,53.0,0.0,1,112,190.0,620.0,0.0,0,56,0.0,0.0,323.9881032406916,810.0,0.0,1177.072509722669,50,0,0,0,0,0,0,0,0,3,45.0,2,,1,133133,1,1,0,0,1,,0.0,517.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1598.39010858377,190.0,22248.28858423602,0,1,2,3,59.0,10,4,1,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.03640729474238859,22248.28858423602,6,3,6,6_0,6_2,6_1_0 +33108,2,70.0,0.0,2,111,444.0,252.0,0.0,78,78,0.0,0.0,757.1090412571951,696.0,0.0,478.4230200808268,71,0,0,0,0,0,0,0,0,0,,2,,2,133134,2,1,0,1,1,,732.0,720.0,41,1.0,0.0,3.0,3.0,2.0,3,3,222.1165076929,444.0,52621.54700862956,7,5,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013226521065332057,26310.77350431478,7,4,7,7_0,7_4,7_0_1 +33109,2,26.0,0.0,5,111,360.0,0.0,0.0,42,42,0.0,0.0,613.872195613942,435.0,103.91919190473907,0.0,10,2,1,2,1,1,2,2,2,2,35.0,2,,3,133135,2,1,0,1,1,432.0,200.0,402.0,43,2.0,0.0,3.0,2.0,1.5,2,2,887.609065148618,360.0,44322.081077450144,1,1,2,3,50.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.009814521101567048,29548.05405163343,8,4,8,8_0,8_4,8_0_0 +33110,2,37.0,0.0,1,111,629.0,0.0,0.0,85,34,0.0,0.0,1072.5711417810264,629.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,1,133136,2,1,0,0,1,,0.0,,42,1.0,0.0,2.0,4.0,2.1,2,2,971.014562902265,629.0,39109.79637663883,6,4,1,2,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.01608292699717854,18623.712560304204,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +33111,2,26.0,0.0,1,111,2268.0,0.0,0.0,47,35,0.0,0.0,3867.3948323678346,2268.0,0.0,0.0,71,2,2,2,2,1,2,2,2,2,10.0,2,,1,133137,1,3,0,0,2,,0.0,700.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1034.62670850373,2268.0,58206.741171083486,1,1,2,3,44.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,1,0,0,0.03896455899040641,38804.494114055655,9,5,9,9_0,9_4,9_1_0 +33112,1,46.0,330.0,2,111,840.0,560.0,0.0,0,54,0.0,0.0,1432.3684564325313,1400.0,0.0,1063.162266846282,71,2,1,2,2,2,2,2,1,0,,2,,2,133138,1,2,0,0,1,,0.0,430.0,32,3.0,0.0,4.0,3.0,2.0,3,3,220.428711510995,840.0,8049.171676693381,0,4,2,3,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,1,0.17393094050332436,4024.5858383466907,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +33113,2,58.0,0.0,7,111,450.0,0.0,0.0,0,54,0.0,0.0,767.3402445174275,450.0,0.0,0.0,60,0,0,0,0,0,0,0,0,3,75.0,2,,5,133139,2,1,0,1,1,516.0,0.0,607.0,22,3.0,1.0,4.0,4.0,2.3,3,3,641.693072251061,450.0,68849.08183166655,0,1,2,3,83.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.006536034875530124,29934.383405072418,8,4,8,8_0,8_4,8_0_0 +33114,1,60.0,237.0,2,111,200.0,,,0,54,0.0,0.0,,222.0,30.482962958723462,,71,0,0,0,0,0,0,0,0,0,,2,,2,133140,2,2,0,0,2,,124.0,535.0,22,2.0,0.0,2.0,2.0,1.5,2,2,123.23671175719183,200.0,7371.866666666667,0,4,2,3,47.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.030114489319756188,4914.577777777778,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33115,0,71.0,0.0,2,111,420.0,,,77,71,0.0,0.0,,530.0,152.4148147936173,,71,0,0,0,0,0,0,0,0,0,,1,,2,133141,2,2,0,0,2,,300.0,,41,0.0,3.0,4.0,2.0,1.5,2,2,98.0852867812595,420.0,7966.44117425571,6,5,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.06652907972417393,5310.96078283714,1,1,1_0,1_1_0,1_3_0,1_0_1_0 +33116,2,59.0,0.0,1,111,780.0,325.0,0.0,85,63,0.0,0.0,1330.0564238302077,1105.0,0.0,617.0138155804315,71,2,2,2,2,1,2,2,2,0,,2,,1,133142,1,3,0,0,1,,560.0,700.0,42,1.0,0.0,3.0,3.0,2.0,3,3,228.706451294553,780.0,18951.077393707987,6,1,2,3,50.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0.058308030569643225,9475.538696853993,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +33117,2,55.0,0.0,5,111,1200.0,0.0,0.0,0,54,0.0,0.0,2046.2406520464733,1300.0,138.5589225396521,0.0,50,0,0,0,0,0,0,0,0,2,10.0,1,,3,133143,2,2,2,0,1,,340.0,,22,1.0,0.0,4.0,2.0,1.5,2,2,956.399173099607,1200.0,31427.060424879543,0,1,0,1,100.0,8,7,5,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04136562511493573,20951.373616586363,5,3,5,5_1,5_3,5_0_0 +33118,2,58.0,0.0,2,111,218.0,,,0,52,0.0,0.0,,218.0,0.0,,41,0,0,0,0,0,0,0,0,2,30.0,1,,2,133144,2,1,0,0,2,,180.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,97.69468627672954,218.0,48236.468058472106,0,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0045194022028259,48236.468058472106,10,5,10,10_1,10_2,10_0_1 +33119,2,51.0,0.0,1,111,0.0,0.0,0.0,0,48,0.0,0.0,0.0,941.0,0.0,0.0,60,0,0,0,0,0,0,0,0,2,40.0,2,,1,133145,2,1,0,0,1,,248.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,552.749971078746,0.0,4975.796501842842,0,1,0,1,58.0,10,8,1,0,0,0,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.18911545109441072,3827.53577064834,1,1,1_0,1_0_0,1_4_0,1_1_0_0 +33120,1,61.0,60.0,2,111,1200.0,0.0,0.0,85,78,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,60,2,2,2,2,1,1,2,2,0,,2,,2,133146,1,2,0,0,2,,0.0,577.0,41,1.0,2.0,4.0,6.0,3.5,6,4,1217.23210539503,1200.0,2789.0332523739194,6,7,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,1,1,1,0,1,0.430256612745153,796.8666435354055,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +33121,1,45.0,225.0,5,111,300.0,90.0,0.0,0,55,0.0,0.0,511.56016301161833,390.0,0.0,170.865364314581,50,2,1,2,2,1,1,2,2,0,,2,,3,133147,2,1,0,1,1,,153.0,297.0,12,1.0,1.0,3.0,1.0,1.0,1,1,1458.60158337368,300.0,12504.442064899193,0,4,2,3,64.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.03118891654468584,12504.442064899193,2,1,2_1,2_0_1,2_3_1,2_0_0_1 +33122,1,62.0,254.0,2,211,171.0,1300.0,0.0,0,78,0.0,0.0,291.58929291662247,1471.0,0.0,2468.055262321726,70,0,0,0,0,0,0,0,0,0,,2,,2,133148,2,3,0,0,1,,154.0,337.0,11,0.0,3.0,4.0,1.0,1.0,1,1,1289.03248825205,171.0,13148.610120528601,0,5,2,3,76.0,4,4,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.11187494240956798,13148.610120528601,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +33123,2,70.0,0.0,6,111,700.0,,,86,55,0.0,0.0,,840.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,4,133149,2,1,0,0,2,,600.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,113.33251371651382,700.0,17122.77290723061,6,5,0,1,85.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04905747477648813,11415.18193815374,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +33124,2,56.0,0.0,6,111,1000.0,2000.0,0.0,37,31,0.0,0.0,1705.2005433720612,3000.0,0.0,3797.008095879578,20,1,2,2,2,1,2,2,2,2,35.0,1,,4,133150,2,3,3,0,1,,300.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,1601.07815787596,1000.0,71661.3442247928,1,1,0,1,120.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0.0418635741828868,35830.6721123964,9,5,9,9_1,9_3,9_0_0 +33125,2,58.0,0.0,5,111,912.0,1644.0,0.0,78,43,0.0,0.0,1555.1428955553197,2556.0,0.0,3121.140654813013,33,0,0,0,0,0,0,0,0,2,18.0,1,,3,133151,2,2,1,0,1,,420.0,,42,1.0,1.0,4.0,2.0,1.5,2,2,943.997912556852,912.0,72813.05302920841,5,1,0,1,99.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0351035960403237,48542.03535280561,10,5,10,10_1,10_3,10_0_0 +33126,2,41.0,0.0,9,112,3000.0,0.0,0.0,52,37,0.0,0.0,5115.6016301161835,3000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,133152,2,1,1,0,1,,600.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1265.54111295737,3000.0,57048.660739818646,1,1,1,2,164.0,7,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.052586685841444644,27166.028923723163,7,4,7,7_1,7_0,7_0_0 +33127,1,22.0,120.0,5,111,560.0,0.0,0.0,52,56,0.0,0.0,954.9123042883542,585.0,34.63973063491302,0.0,41,2,2,2,2,1,2,2,2,0,,2,,3,133153,1,2,0,0,2,,240.0,280.0,43,3.0,0.0,2.0,3.0,2.0,3,3,1932.62708014033,560.0,17259.67769001913,4,1,2,3,62.0,8,6,2,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,1,0,1,0.03389402806393609,8629.838845009564,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +33128,2,71.0,0.0,1,111,500.0,1260.0,0.0,86,74,0.0,0.0,852.6002716860306,1760.0,0.0,2392.115100404134,70,0,0,0,0,0,0,0,0,0,,1,,1,133154,2,2,3,0,1,,500.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,432.968362778208,500.0,43479.98814121687,5,5,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04047839190488664,28986.658760811246,8,4,8,8_1,8_4,8_1_0 +33129,2,30.0,0.0,2,111,450.0,0.0,0.0,84,52,0.0,0.0,767.3402445174275,512.0,85.9065319745843,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133155,2,2,0,1,1,,0.0,,42,2.0,1.0,3.0,6.0,2.8999999999999995,3,3,1260.60768721462,450.0,41909.20698025527,3,1,0,1,58.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012216885903883104,14451.450682846647,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +33130,2,34.0,0.0,9,211,0.0,,,0,52,0.0,0.0,,44.0,60.965925917446924,,42,0,0,0,0,0,0,0,0,2,5.0,1,2006.0,6,133156,2,1,0,0,1,,0.0,381.0,12,1.0,0.0,3.0,1.0,1.0,1,1,118.14071062494097,0.0,19531.072295669717,0,1,2,3,60.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0022528204972010342,19531.072295669717,5,3,5,5_1,5_2,5_0_0 +33131,2,80.0,0.0,2,111,1525.0,0.0,0.0,0,77,0.0,0.0,2600.4308286423934,1688.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,133157,2,1,2,0,1,,333.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1725.91377132924,1525.0,32105.51456909212,0,5,0,1,120.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05257663746106198,32105.51456909212,8,4,8,8_1,8_3,8_0_1 +33132,2,53.0,0.0,1,112,1200.0,0.0,0.0,42,47,0.0,662.163638505112,2046.2406520464733,1725.0,34.63973063491302,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,,1,133158,2,1,2,0,1,,137.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,539.904400754079,1200.0,77894.13661347894,1,1,0,1,90.0,10,0,1,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022145440915016225,51929.424408985964,10,5,10,10_1,10_0,10_1_0 +33133,2,68.0,0.0,7,112,600.0,0.0,0.0,56,71,1054.6828510366015,198.6490915515336,1023.1203260232367,1750.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,5,133159,2,2,3,0,1,,120.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,1214.94389671725,600.0,32574.474062199595,5,5,0,1,180.0,5,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053723046967955594,21716.316041466398,6,3,6,6_1,6_0,6_0_0 +33134,2,92.0,0.0,2,211,0.0,0.0,0.0,0,74,0.0,0.0,0.0,2705.0,66.50828281903301,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,133160,2,1,3,0,1,,220.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1817.0328682016,0.0,38167.01972694767,0,5,0,1,101.0,2,3,7,0,0,0,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.07087270683831114,38167.01972694767,9,5,9,9_1,9_1,9_0_1 +33135,2,49.0,0.0,7,111,600.0,,,85,22,0.0,0.0,,732.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,5,133161,1,2,0,0,2,,345.0,,42,1.0,0.0,5.0,5.0,2.8,4,4,77.4404005452826,600.0,23883.87190843099,6,1,0,1,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030648297010067473,8529.954253011068,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +33137,2,42.0,0.0,5,111,444.0,468.0,0.0,68,63,0.0,0.0,757.1090412571951,912.0,0.0,888.4998944358213,71,0,0,0,0,0,0,0,0,3,40.0,2,,3,133163,2,1,0,1,1,,0.0,,43,2.0,0.0,4.0,5.0,2.8,4,4,258.423111944652,444.0,31435.64004077095,1,1,1,2,64.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.029011656795190653,11227.014300275341,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +33138,1,32.0,160.0,6,111,840.0,0.0,0.0,52,38,0.0,0.0,1432.3684564325313,840.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,60.0,2,,4,133164,2,1,0,0,1,,0.0,1024.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1144.02458567553,840.0,51561.37542693322,1,1,2,3,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01629126440178754,34374.25028462215,9,5,9,9_0,9_4,9_0_0 +33139,1,59.0,230.0,5,111,0.0,0.0,0.0,0,71,0.0,0.0,0.0,656.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,1,,3,133165,1,2,3,0,1,,175.0,212.0,11,0.0,1.0,1.0,1.0,1.0,1,1,1735.23360164586,0.0,4878.784039721006,0,7,2,3,40.0,6,4,4,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.13445973313414247,4878.784039721006,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +33140,2,36.0,0.0,2,111,310.0,475.0,0.0,54,64,0.0,0.0,528.612168445339,785.0,0.0,901.7894227713998,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,133166,2,2,0,1,1,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,300.584973383389,310.0,43490.62979803096,1,1,1,2,76.0,9,7,5,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.018049865077730855,20709.823713348076,5,3,5,5_0,5_3,5_0_1 +33141,2,63.0,0.0,9,112,806.0,106.0,0.0,52,75,0.0,0.0,1374.3916379578814,912.0,0.0,201.24142908161764,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,133167,2,2,1,0,1,,360.0,931.0,42,2.0,1.0,5.0,4.0,2.5,4,4,985.926042146082,806.0,53170.18989058851,1,5,2,3,107.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017152468363883542,21268.075956235403,5,3,5,5_1,5_1,5_0_0 +33142,2,69.0,0.0,6,111,13400.0,0.0,0.0,86,78,949.2145659329414,92.70290939071567,22849.68728118562,18336.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,133168,2,2,2,0,1,,720.0,,41,1.0,1.0,6.0,3.0,2.0,3,3,862.370567205774,13400.0,36741.94987125017,5,5,0,1,90.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.4990480925550319,18370.974935625087,4,2,4_0,4_1_0,4_4_0,4_0_0_0 +33143,2,78.0,0.0,5,112,1022.0,0.0,0.0,0,75,0.0,0.0,1742.7149553262466,1687.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,133169,2,1,2,0,1,,95.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,254.935930343111,1022.0,22026.7424904232,0,5,0,1,98.0,9,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.07658871940476332,22026.7424904232,6,3,6,6_1,6_0,6_0_0 +33144,2,50.0,0.0,7,120,1200.0,,,85,42,0.0,0.0,,1376.0,243.8637036697877,,20,0,0,0,0,0,0,0,0,0,,1,,5,133170,2,1,0,0,1,,850.0,,42,1.0,0.0,5.0,5.0,2.8,4,4,115.03255644685328,1200.0,129812.01446196952,7,1,0,1,136.0,0,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.010599943354265725,46361.43373641769,10,5,10,10_1,10_2,10_0_0 +33145,2,54.0,0.0,6,111,1400.0,0.0,0.0,56,64,0.0,0.0,2387.2807607208856,1602.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,20.0,1,,4,133171,2,1,2,0,1,,400.0,,43,3.0,1.0,6.0,3.0,2.0,3,3,1024.48673776754,1400.0,48228.954499728636,1,1,0,1,120.0,5,4,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033216560811182703,24114.477249864318,6,3,6,6_1,6_2,6_0_0 +33146,2,53.0,0.0,7,111,1000.0,1000.0,0.0,53,77,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,41,0,0,0,0,0,0,0,0,0,,1,,5,133172,2,1,2,0,1,,500.0,,42,1.0,3.0,8.0,3.0,1.8,2,2,534.642750015259,1000.0,56422.860956195036,1,5,1,2,127.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.035446625110923356,31346.033864552795,8,4,8,8_1,8_4,8_0_0 +33147,2,77.0,0.0,5,111,444.0,,,78,78,0.0,0.0,,720.0,382.4226262094398,,71,0,0,0,0,0,0,0,0,0,,1,,3,133173,2,3,0,0,2,,800.0,,41,1.0,6.0,4.0,3.0,2.0,3,3,94.12027693569574,444.0,42925.54516671701,5,5,0,1,106.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0167732290225696,21462.772583358506,6,3,6,6_1,6_2,6_0_0 +33148,2,65.0,0.0,1,111,220.0,379.0,0.0,0,55,0.0,0.0,375.14411954185346,599.0,0.0,719.53303416918,41,2,2,2,1,1,2,2,2,2,30.0,2,,1,133174,2,3,0,0,1,,0.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,906.570195015407,220.0,40672.17497070816,0,1,0,1,58.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,1,1,0,0,0.014727513353573935,40672.17497070816,9,5,9,9_0,9_4,9_1_0 +33149,0,83.0,0.0,1,120,200.0,0.0,0.0,71,78,527.3414255183008,0.0,341.04010867441224,700.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133175,2,1,1,1,1,,0.0,,41,0.0,4.0,2.0,2.0,1.5,2,2,929.875192944265,200.0,31924.295543578544,5,5,0,1,50.0,0,0,4,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02192687381447333,21282.86369571903,6,3,6,6_1,6_0,6_1_0 +33150,2,54.0,0.0,7,112,994.0,0.0,0.0,62,62,0.0,0.0,1694.9693401118288,1090.0,133.01656563806603,0.0,70,0,0,0,0,0,0,0,0,2,15.0,1,,5,133176,2,1,2,0,1,,300.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,566.742752663414,994.0,51429.68593134347,1,1,1,2,95.0,9,3,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021193985151982175,34286.45728756231,9,5,9,9_1,9_1,9_0_0 +33151,1,64.0,142.0,2,211,400.0,93.0,0.0,0,77,0.0,801.2180025911855,682.0802173488245,1098.0,0.0,176.56087645840037,70,0,0,0,0,0,0,0,0,0,,2,,2,133177,2,3,0,1,1,,236.0,282.0,11,0.0,3.0,4.0,1.0,1.0,1,1,628.88380507549,400.0,10690.606935018463,0,5,2,3,80.0,3,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.10270698442792423,10690.606935018463,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +33152,2,89.0,0.0,6,111,408.0,,,0,77,0.0,0.0,,496.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,0,,1,,4,133178,2,2,0,0,2,,356.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,101.22090672440463,408.0,15758.75508624741,0,5,0,1,95.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03147456745697234,15758.75508624741,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +33153,1,49.0,400.0,7,111,300.0,,,0,55,0.0,0.0,,350.0,69.27946126982604,,50,0,0,0,0,0,0,0,0,0,,1,,5,133179,2,1,0,0,2,,400.0,450.0,32,1.0,0.0,3.0,2.0,1.3,1,1,97.41194221503022,300.0,9073.043081822307,0,4,2,3,70.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03857581153794136,6979.263909094082,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +33154,1,61.0,36.0,1,111,710.0,0.0,0.0,77,77,474.6072829664707,0.0,1210.6923857941633,1230.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133180,1,2,5,0,2,,170.0,600.0,41,0.0,4.0,4.0,2.0,1.5,2,2,1101.2537911509,710.0,21147.463928988916,5,5,2,3,80.0,9,7,9,1,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.05816300262434389,14098.309285992611,3,2,3_1,3_1_1,3_3_1,3_1_0_1 +33155,2,37.0,0.0,6,112,1500.0,0.0,0.0,54,47,0.0,198.6490915515336,2557.8008150580918,1740.0,124.70303028568689,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,4,133181,2,2,1,0,1,,140.0,,43,2.0,0.0,5.0,3.0,1.8,2,2,797.830381341282,1500.0,39985.09239680451,1,1,1,2,120.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04351621806278621,22213.940220446948,6,3,6,6_1,6_0,6_0_0 +33156,2,62.0,0.0,2,111,0.0,0.0,0.0,31,31,0.0,0.0,0.0,3402.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,45.0,1,,2,133182,2,1,2,0,1,,481.0,,43,2.0,3.0,7.0,2.0,1.5,2,2,776.015810759564,0.0,70644.61841353566,1,1,0,1,170.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.04815653444520793,47096.41227569044,10,5,10,10_1,10_4,10_0_1 +33157,2,35.0,0.0,9,111,0.0,0.0,0.0,85,53,0.0,0.0,0.0,977.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2013.0,6,133183,2,1,1,0,1,,866.0,680.0,42,1.0,0.0,5.0,4.0,2.1,2,2,552.823218159024,0.0,30779.39302042086,7,1,2,3,100.0,5,4,5,0,0,0,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03174201646380098,14656.853819248028,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +33158,2,60.0,0.0,1,111,2500.0,0.0,0.0,0,75,0.0,0.0,4263.001358430153,2600.0,138.5589225396521,0.0,33,1,2,2,2,2,2,2,1,0,,1,,1,133184,2,1,1,0,1,,300.0,,11,0.0,2.0,7.0,1.0,1.0,1,1,1070.30227285365,2500.0,35983.81864701996,0,5,0,1,125.0,6,5,2,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07225469941098989,35983.81864701996,9,5,9,9_1,9_2,9_1_0 +33159,2,29.0,0.0,2,111,600.0,1448.0,0.0,43,63,0.0,0.0,1023.1203260232367,2048.0,0.0,2749.0338614168145,43,0,0,0,0,0,0,0,0,2,15.0,1,,2,133185,2,1,1,0,1,,264.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,371.420320861263,600.0,46058.85755777895,1,1,1,2,87.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.044464845821042515,25588.254198766084,7,4,7,7_1,7_3,7_0_1 +33161,2,49.0,0.0,7,300,418.0,,,0,63,0.0,0.0,,682.0,365.79555550468154,,71,0,0,0,0,0,0,0,0,0,,1,,5,133187,1,2,0,0,2,,720.0,,22,2.0,0.0,4.0,3.0,1.8,2,2,106.37916305375356,418.0,28776.0,0,4,0,1,45.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.023700305810397553,15986.666666666666,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +33162,1,94.0,40.0,1,400,4000.0,0.0,0.0,0,86,0.0,0.0,6820.802173488245,4140.0,193.98249155551292,0.0,60,2,2,2,1,2,2,2,2,0,,1,,1,133188,1,2,4,0,2,,130.0,475.0,11,0.0,1.0,2.0,1.0,1.0,1,1,2676.90935050229,4000.0,14965.872315919452,0,5,2,3,60.0,0,1,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,1,0.2766293813422564,14965.872315919452,3,2,3_1,3_1_1,3_1_1,3_1_0_1 +33163,2,55.0,0.0,1,111,1400.0,1550.0,0.0,0,62,0.0,0.0,2387.2807607208856,2950.0,0.0,2942.681274306673,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,133189,2,1,2,0,1,,450.0,,32,2.0,1.0,6.0,5.0,2.8,4,3,279.485731387613,1400.0,54247.50969405323,0,1,0,1,114.0,6,4,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.0543803764751138,19374.110605019014,5,3,5,5_1,5_2,5_1_0 +33164,0,60.0,0.0,2,111,0.0,0.0,0.0,56,90,0.0,0.0,0.0,315.0,0.0,0.0,60,2,2,2,2,2,1,2,2,1,20.0,2,,2,133190,1,3,0,1,2,,0.0,,43,2.0,4.0,1.0,2.0,1.5,2,2,1235.92885322071,0.0,55853.73959351941,1,1,5,0,20.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.005639729806677954,37235.82639567961,9,5,9,9_0,9_4,9_0_1 +33165,2,61.0,0.0,2,111,190.0,59.0,0.0,0,52,0.0,0.0,323.9881032406916,249.0,0.0,112.01173882844755,60,0,0,0,0,0,0,0,0,1,15.0,2,,2,133191,1,2,0,1,1,816.0,0.0,434.0,12,1.0,3.0,4.0,1.0,1.0,1,1,232.341474375223,190.0,20587.986381148345,0,1,2,3,65.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.012094431936675462,20587.986381148345,5,3,5,5_0,5_4,5_0_1 +33166,2,30.0,0.0,1,111,515.0,1880.0,0.0,42,46,0.0,0.0,878.1782798366115,2395.0,0.0,3569.1876101268035,20,2,2,2,2,1,2,2,2,2,120.0,1,,1,133192,2,2,3,0,1,,383.0,,43,2.0,0.0,6.0,3.0,1.8,2,2,1154.51160032536,515.0,59529.0,1,1,1,2,100.0,6,4,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.04023249172672143,33071.666666666664,8,4,8,8_1,8_2,8_1_0 +33167,2,60.0,0.0,7,111,400.0,,,78,56,0.0,0.0,,560.0,221.69427606344334,,71,0,0,0,0,0,0,0,0,0,,1,,5,133193,2,1,0,0,2,,300.0,,42,2.0,3.0,5.0,3.0,2.0,3,3,113.72964648244168,400.0,42083.23077169434,5,1,0,1,109.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.013306963123578963,21041.61538584717,5,3,5,5_1,5_2,5_0_0 +33168,2,52.0,0.0,5,111,470.0,0.0,0.0,77,43,0.0,0.0,801.4442553848687,470.0,0.0,0.0,41,0,0,0,0,0,0,0,0,3,20.0,2,,3,133194,1,2,0,0,1,,0.0,,42,1.0,0.0,3.0,2.0,1.5,2,2,618.926462149752,470.0,46920.52298172234,5,1,1,2,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01001693864714778,31280.348654481557,8,4,8,8_0,8_3,8_0_0 +33169,2,49.0,0.0,1,112,192.0,0.0,0.0,11,11,0.0,0.0,327.3985043274357,372.0,249.40606057137379,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133195,2,3,2,0,2,,250.0,,43,2.0,1.0,7.0,4.0,2.5,4,3,793.212323021972,192.0,33204.66573812398,1,1,1,2,180.0,7,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.01120324483715214,13281.86629524959,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +33170,2,85.0,0.0,2,111,600.0,0.0,0.0,0,86,2320.3022722805235,0.0,1023.1203260232367,3000.0,277.1178450793042,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,133196,1,2,3,0,2,,150.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1389.23706397781,600.0,14188.136296810988,0,5,0,1,90.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.21144426140551653,14188.136296810988,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +33171,2,52.0,0.0,2,111,1200.0,,,54,22,0.0,99.3245457757668,,1321.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,,2,133197,2,1,0,0,2,,1200.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,150.7798670729379,1200.0,59728.262704207315,1,1,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.022116832805635037,28442.02985914634,8,4,8,8_1,8_2,8_0_1 +33172,2,79.0,0.0,1,111,0.0,1800.0,0.0,0,86,0.0,0.0,0.0,2121.0,0.0,3417.30728629162,71,0,0,0,0,0,0,0,0,0,,1,,1,133198,2,2,2,0,1,,583.0,,11,0.0,8.0,7.0,1.0,1.0,1,1,1061.4932607358,0.0,8186.327985201465,0,5,0,1,80.0,9,7,8,0,1,0,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.2590905231056171,8186.327985201465,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +33173,2,42.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,2735.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,10.0,1,,2,133199,2,1,3,0,1,,143.0,,32,1.0,0.0,6.0,3.0,1.6,1,1,502.141609351819,0.0,73446.37994992512,0,1,1,2,110.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03723805042351565,45903.9874687032,10,5,10,10_1,10_3,10_0_1 +33174,1,47.0,406.0,5,211,460.0,0.0,0.0,0,85,0.0,0.0,784.3922499511482,460.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,133200,2,2,0,0,2,,220.0,660.0,31,0.0,0.0,2.0,3.0,1.8,2,1,972.524436408955,460.0,9394.70978237539,0,7,2,3,60.0,1,3,9,0,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.04896372646475643,5219.283212430772,1,1,1_1,1_0_1,1_1_1,1_0_0_1 +33175,1,43.0,332.0,9,111,300.0,,,0,43,0.0,0.0,,356.0,77.59299662220518,,71,0,0,0,0,0,0,0,0,2,15.0,2,2004.0,6,133201,2,1,0,0,2,,800.0,342.0,32,1.0,0.0,3.0,3.0,2.0,3,1,98.21185806247662,300.0,23018.463290022948,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.015465845635069113,11509.231645011474,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +33176,1,38.0,210.0,1,111,800.0,1600.0,0.0,85,53,0.0,0.0,1364.160434697649,2400.0,0.0,3037.6064767036623,71,2,2,2,2,2,2,2,1,2,20.0,1,,1,133202,2,2,2,0,1,,300.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,254.289655352857,800.0,14324.060026212981,6,1,1,2,43.0,6,5,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.1675502612812295,6820.980964863324,1,1,1_1,1_1_1,1_2_1,1_1_0_1 +33177,2,53.0,0.0,1,112,1000.0,0.0,0.0,63,69,0.0,529.7309108040896,1705.2005433720612,1400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133203,2,2,2,0,1,,400.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,1100.66210810338,1000.0,51607.040967414665,1,1,1,2,150.0,9,0,4,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027128081241549532,34404.693978276446,9,5,9,9_1,9_0,9_1_0 +33178,2,65.0,0.0,9,300,1419.0,0.0,0.0,75,78,0.0,264.8654554020448,2419.6795710449546,1619.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,2006.0,6,133204,2,1,1,0,1,,240.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1186.65493119837,1419.0,39090.651961337106,5,5,0,1,135.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.041416551496794775,26060.434640891403,7,4,7,7_1,7_0,7_0_0 +33179,2,41.0,0.0,5,111,540.0,,,47,34,0.0,0.0,,586.0,63.73710436823996,,10,0,0,0,0,0,0,0,0,1,15.0,1,,3,133205,2,1,0,0,2,,600.0,,43,2.0,0.0,6.0,6.0,2.6999999999999997,2,2,129.07645464223046,540.0,116858.05734543069,1,1,1,2,96.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.005014630683683134,43280.761979789146,9,5,9,9_1,9_2,9_0_0 +33180,2,53.0,0.0,2,111,300.0,0.0,0.0,68,37,0.0,0.0,511.56016301161833,751.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,20.0,2,,2,133206,2,2,0,1,1,,0.0,,43,2.0,2.0,4.0,2.0,1.5,2,2,1235.09616794535,300.0,42328.74357238161,1,1,0,1,90.0,7,5,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.017742081068761222,28219.16238158774,8,4,8,8_0,8_2,8_0_1 +33181,1,26.0,400.0,2,111,0.0,0.0,0.0,42,85,0.0,0.0,0.0,1916.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133207,2,2,2,0,1,,0.0,1300.0,42,1.0,0.0,5.0,5.0,2.4,2,2,709.361341869618,0.0,18107.798968314386,1,6,2,3,130.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0.10581076161452195,7544.916236797661,1,1,1_1,1_1_1,1_4_1,1_0_1_1 +33183,2,89.0,0.0,1,111,350.0,60.0,0.0,0,72,2003.897416969543,0.0,596.8201901802214,2310.0,0.0,113.91024287638734,50,0,0,0,0,0,0,0,0,0,,1,,1,133209,2,1,2,0,1,,167.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,261.819053454057,350.0,36283.20727512844,0,5,0,1,120.0,9,7,8,1,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06366581604773038,36283.20727512844,9,5,9,9_1,9_3,9_1_0 +33184,2,25.0,0.0,7,111,500.0,650.0,0.0,55,62,0.0,0.0,852.6002716860306,1150.0,0.0,1234.027631160863,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,133210,2,1,0,0,1,,0.0,430.0,43,2.0,0.0,4.0,3.0,1.8,2,2,1138.24979579913,500.0,34133.85625751067,4,1,2,3,85.0,9,7,2,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.033690890104072516,18963.253476394817,5,3,5,5_0,5_3,5_0_0 +33185,1,59.0,262.0,1,111,544.0,0.0,0.0,0,78,0.0,19.86490915515336,927.6290955944013,601.0,58.19474746665388,0.0,70,2,2,2,1,1,2,2,2,0,,2,,1,133211,1,3,0,0,2,,0.0,312.0,11,0.0,0.0,2.0,1.0,1.0,1,1,2622.43424960369,544.0,3827.777761737245,0,7,2,3,27.0,8,6,9,0,0,1,2,0,0,1,0,0,1,0,0,0,1,1,0,1,1,1,1,1,1,0.1570101603096296,3827.777761737245,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +33186,1,71.0,209.0,2,111,210.0,0.0,0.0,0,78,0.0,0.0,358.0921141081328,270.0,83.13535352379125,0.0,71,1,1,2,1,1,2,2,2,0,,2,,2,133212,2,1,0,1,1,336.0,145.0,214.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1233.87823609666,210.0,8181.233091981586,0,5,2,3,50.0,6,5,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.033002360031109075,8181.233091981586,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33187,2,62.0,0.0,1,300,205.0,0.0,0.0,0,78,0.0,0.0,349.56611139127256,311.0,146.87245789203124,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,133213,2,3,3,0,1,,118.0,184.0,11,0.0,0.0,4.0,1.0,1.0,1,1,1263.70575990635,205.0,10300.46287562934,0,5,2,3,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.030192817910719226,10300.46287562934,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +33188,2,81.0,0.0,2,221,330.0,1200.0,0.0,75,75,0.0,0.0,562.7161793127802,1530.0,0.0,2278.2048575277468,70,0,0,0,0,0,0,0,0,0,,1,,2,133214,2,1,2,0,1,,389.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,2438.22972380701,330.0,31068.85760501949,5,5,0,1,100.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.04924545406371211,20712.57173667966,5,3,5,5_1,5_1,5_0_1 +33189,1,63.0,114.0,2,111,0.0,0.0,153.0,0,77,0.0,0.0,96.4386984334558,153.0,0.0,183.10001857739616,70,2,1,2,2,2,2,2,1,0,,2,,2,133215,1,2,0,1,2,328.0,50.0,224.0,11,0.0,0.0,2.0,1.0,1.0,1,1,288.163894195098,0.0,10608.733348289159,0,5,2,3,65.0,8,6,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.014422079901242299,10608.733348289159,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +33190,2,40.0,0.0,9,120,780.0,0.0,0.0,47,48,0.0,79.45963662061344,1330.0564238302077,840.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,15.0,1,2011.0,6,133216,2,1,1,0,2,,240.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,1766.01727666995,780.0,74318.88869109399,1,1,1,2,154.0,0,3,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011302644789152525,35389.94699575904,9,5,9,9_1,9_1,9_0_0 +33191,2,57.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,602.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,133217,2,1,0,0,1,,170.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,319.059442066587,0.0,16006.98105366488,0,1,1,2,50.0,7,5,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03760859077559594,16006.98105366488,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +33192,1,68.0,91.0,7,111,336.0,1316.0,0.0,0,77,0.0,0.0,572.9473825730125,1652.0,0.0,2498.4313270887624,44,0,0,0,0,0,0,0,0,0,,2,,5,133218,2,1,0,0,1,,0.0,437.0,11,0.0,1.0,3.0,1.0,1.0,1,1,635.303905232573,336.0,13035.055968093102,0,5,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.12673516738583449,13035.055968093102,2,1,2_1,2_0_1,2_4_1,2_0_0_1 +33193,2,48.0,0.0,6,221,1200.0,0.0,0.0,69,67,0.0,0.0,2046.2406520464733,1373.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,,4,133219,2,1,1,0,1,,200.0,,43,2.0,2.0,6.0,4.0,2.3,3,2,1452.83512302024,1200.0,63654.73587043523,1,1,0,1,120.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.021569487033842157,27675.972117580535,7,4,7,7_1,7_1,7_0_0 +33194,1,61.0,370.0,2,111,426.0,400.0,0.0,85,78,0.0,0.0,726.415431476498,826.0,0.0,759.4016191759156,71,2,1,2,2,1,2,2,2,0,,2,,2,133220,1,2,0,1,2,866.0,0.0,336.0,41,0.0,6.0,5.0,4.0,2.3,3,3,301.237012790721,426.0,10745.353924801198,6,7,2,3,75.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07687043216822492,4671.89301078313,1,1,1_1,1_0_1,1_3_1,1_0_1_1 +33195,2,47.0,0.0,9,111,1510.0,0.0,0.0,54,46,0.0,0.0,2574.8528204918125,1650.0,193.98249155551292,0.0,30,0,0,0,0,0,0,0,0,2,20.0,1,2011.0,6,133221,2,1,1,0,1,,250.0,,43,2.0,1.0,5.0,3.0,1.8,2,2,967.785428321342,1510.0,76421.75565300863,1,1,1,2,85.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.021590710471135866,42456.530918338125,9,5,9,9_1,9_3,9_0_0 +33196,2,68.0,0.0,2,111,395.0,80.0,0.0,0,86,0.0,0.0,673.5542146319642,475.0,0.0,151.8803238351831,31,0,0,0,0,0,0,0,0,0,,2,,2,133222,1,3,0,1,1,1350.0,230.0,319.0,11,0.0,2.0,3.0,1.0,1.0,1,1,2602.08575530975,395.0,15440.913568213056,0,5,2,3,57.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03076242852481498,15440.913568213056,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +33197,2,42.0,0.0,1,112,600.0,0.0,0.0,55,62,2109.365702073203,0.0,1023.1203260232367,2722.0,169.04188549837556,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,,1,133223,2,1,1,0,1,,600.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,504.210711424824,600.0,23643.89693648103,1,1,1,2,110.0,8,0,3,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.11512484626847308,10279.95518977436,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +33198,2,29.0,0.0,7,111,360.0,540.0,0.0,46,38,0.0,0.0,613.872195613942,900.0,0.0,1025.192185887486,12,0,0,0,0,0,0,0,0,0,,2,,5,133224,2,1,0,0,1,,240.0,680.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1471.26890681837,360.0,45062.759889834204,1,1,2,3,67.0,9,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.019972145563215554,30041.839926556135,8,4,8,8_0,8_3,8_0_0 +33199,2,44.0,0.0,5,111,490.0,0.0,0.0,37,37,2109.365702073203,0.0,835.54826625231,2490.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,30.0,1,,3,133225,2,2,4,0,1,,480.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,539.014469402483,490.0,125243.54909934834,1,1,1,2,130.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019881263489465867,59639.78528540397,10,5,10,10_1,10_4,10_0_0 +33200,2,71.0,0.0,2,111,0.0,0.0,1280.0,0,78,0.0,0.0,806.807411730872,1280.0,0.0,1531.8171488827913,60,0,0,0,0,0,0,0,0,0,,2,,2,133226,2,2,0,1,1,,0.0,,21,1.0,3.0,5.0,2.0,1.5,2,2,1558.20984220788,0.0,16626.563203224276,0,5,0,1,76.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.07698524249147162,11084.375468816184,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +33201,1,57.0,252.0,1,211,1300.0,0.0,0.0,0,72,0.0,0.0,2216.7607063836795,1340.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133227,2,1,1,0,1,,100.0,515.0,11,0.0,2.0,4.0,1.0,1.0,1,1,1307.14436466461,1300.0,11946.41524022134,0,7,2,3,90.0,2,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.11216753922034044,11946.41524022134,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +33202,1,37.0,175.0,5,111,468.0,,,55,65,0.0,0.0,,528.0,83.13535352379125,,43,0,0,0,0,0,0,0,0,3,30.0,2,,3,133228,2,1,0,0,2,,150.0,345.0,43,2.0,0.0,2.0,4.0,2.1,2,2,161.61619235116083,468.0,27321.29193111589,1,4,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.019325586847475068,13010.13901481709,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +33203,2,64.0,0.0,5,111,360.0,0.0,0.0,0,52,0.0,0.0,613.872195613942,360.0,0.0,0.0,70,0,0,0,0,0,0,0,0,3,15.0,2,,3,133229,2,2,0,0,2,,0.0,725.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2188.52147446261,360.0,17977.83093289216,0,1,2,3,50.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.02002466267169893,17977.83093289216,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +33204,1,54.0,183.0,1,112,432.0,1560.0,0.0,0,52,0.0,0.0,736.6466347367304,1992.0,0.0,2961.666314786071,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,133230,1,1,1,0,1,,175.0,417.0,32,1.0,0.0,6.0,3.0,2.0,3,2,2508.71386690847,432.0,21512.10309589663,0,1,2,3,80.0,7,2,2,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.09259903558104313,10756.051547948315,2,1,2_1,2_1_1,2_1_1,2_1_0_1 +33205,0,72.0,0.0,1,112,850.0,0.0,0.0,77,75,0.0,0.0,1449.420461866252,945.0,131.6309764126695,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,133231,2,2,3,0,1,,150.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1139.41624915794,850.0,46097.41757993186,5,5,0,1,49.0,9,2,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0.02050006376954613,30731.611719954573,8,4,8,8_1,8_1,8_1_0 +33206,2,82.0,0.0,2,111,375.0,260.0,0.0,0,75,0.0,0.0,639.4502037645229,635.0,0.0,493.61105246434516,42,0,0,0,0,0,0,0,0,0,,2,,2,133232,2,1,0,0,1,,90.0,,11,0.0,1.0,3.0,1.0,1.0,1,1,292.146674021035,375.0,23101.823033977573,0,5,0,1,53.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.027487008235932645,23101.823033977573,6,3,6,6_0,6_4,6_0_1 +33207,2,33.0,0.0,2,111,720.0,,,0,21,0.0,0.0,,745.0,34.63973063491302,,44,0,0,0,0,0,0,0,0,1,10.0,8,,2,133233,2,1,0,0,2,,192.0,460.0,12,1.0,0.0,1.0,1.0,1.0,1,1,31.827992445917324,720.0,17704.649178396237,0,1,2,3,15.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04207934269090585,17704.649178396237,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +33208,2,31.0,0.0,9,111,300.0,300.0,0.0,34,31,0.0,0.0,511.56016301161833,600.0,0.0,569.5512143819367,10,0,0,0,0,0,0,0,0,2,40.0,2,2007.0,6,133234,2,1,0,0,1,,382.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,1723.02716017116,300.0,70460.69858037449,1,1,0,1,49.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.008515385343725769,46973.799053582996,10,5,10,10_0,10_3,10_0_0 +33209,2,39.0,0.0,7,400,480.0,0.0,0.0,0,64,1265.6194212439218,0.0,818.4962608185893,1750.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,,5,133235,2,1,2,0,1,,118.0,380.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1101.96668550311,480.0,19612.496738385762,0,1,2,3,70.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.08922882299706818,19612.496738385762,5,3,5,5_1,5_0,5_0_0 +33210,0,77.0,0.0,1,120,300.0,0.0,0.0,0,75,0.0,331.081819252556,511.56016301161833,697.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,133236,2,1,2,0,1,,110.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,1571.69838813128,300.0,30971.20397257647,0,5,0,1,125.0,0,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.022504775746437253,30971.20397257647,8,4,8,8_1,8_0,8_1_0 +33211,2,53.0,0.0,1,112,1800.0,0.0,0.0,22,45,0.0,0.0,3069.36097806971,1920.0,166.2707070475825,0.0,20,0,0,0,0,0,0,0,0,1,5.0,2,,1,133237,2,1,0,0,1,,230.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1536.10951613593,1800.0,28596.44255952505,1,1,0,1,80.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.06714121856253327,19064.295039683366,5,3,5,5_0,5_0,5_1_0 +33212,2,71.0,0.0,2,111,500.0,0.0,0.0,0,74,0.0,0.0,852.6002716860306,500.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,2,133238,2,1,0,1,2,,450.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,2760.45468958162,500.0,34632.07216621481,0,5,1,2,84.0,6,4,2,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01443748435266236,34632.07216621481,9,5,9,9_0,9_2,9_0_1 +33213,2,29.0,0.0,9,111,0.0,0.0,0.0,84,47,0.0,0.0,0.0,1530.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,2,2006.0,6,133239,2,1,0,0,1,,0.0,745.0,42,1.0,0.0,3.0,2.0,1.5,2,2,1968.77488720373,0.0,29792.787245390668,3,1,2,3,71.0,9,7,7,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.05135471170918092,19861.858163593777,5,3,5,5_0,5_3,5_0_0 +33214,2,61.0,0.0,1,400,240.0,0.0,0.0,0,52,0.0,52.973091080408956,409.2481304092947,2280.0,2771.178450793042,0.0,60,2,2,2,2,1,2,2,2,2,25.0,1,,1,133240,1,2,3,0,2,,170.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,770.544554331498,240.0,20827.727085741768,0,1,0,1,97.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,1,0,0,0.1094694582185514,20827.727085741768,5,3,5,5_1,5_0,5_1_0 +33215,2,57.0,0.0,9,112,1000.0,,,56,64,0.0,0.0,,1176.0,243.8637036697877,,71,0,0,0,0,0,0,0,0,0,,1,2005.0,6,133241,1,1,0,0,2,,420.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,110.73313876128293,1000.0,10262.99303341002,4,4,0,1,155.0,8,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11458645603399166,6841.99535560668,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +33216,2,51.0,0.0,2,111,40.0,,,0,62,0.0,0.0,,90.0,69.27946126982604,,31,0,0,0,0,0,0,0,0,2,15.0,1,,2,133242,2,1,0,0,2,,581.0,700.0,32,1.0,1.0,2.0,2.0,1.5,2,1,46.661536581509566,40.0,92982.44309789005,0,1,3,4,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0009679246640707193,61988.295398593364,10,5,10,10_1,10_2,10_0_1 +33218,2,76.0,0.0,1,112,740.0,0.0,0.0,77,78,0.0,927.0290939071567,1261.8484020953254,1560.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133244,2,2,1,0,2,,280.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,387.036494955668,740.0,22851.728019660022,5,5,0,1,90.0,9,1,3,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.06826617219747608,15234.485346440015,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +33219,2,23.0,0.0,9,400,0.0,,,0,85,0.0,0.0,,258.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,2013.0,6,133245,2,2,0,0,2,,0.0,,31,0.0,0.0,2.0,5.0,2.2,1,1,142.690519780717,0.0,21651.283884520675,0,6,0,1,40.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011916152472808044,9841.492674782125,2,1,2_0,2_1_0,2_0_0,2_0_0_0 +33220,2,56.0,0.0,9,221,1200.0,0.0,0.0,54,64,0.0,662.163638505112,2046.2406520464733,1700.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,133246,2,1,1,0,1,,400.0,,43,2.0,2.0,3.0,3.0,2.0,3,2,1733.23505962978,1200.0,43571.11040040874,1,1,1,2,110.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03901667835355539,21785.55520020437,6,3,6,6_1,6_1,6_0_0 +33221,1,22.0,28.0,6,111,0.0,,,0,46,0.0,0.0,,345.0,0.0,,43,0,0,0,0,0,0,0,0,0,,2,,4,133247,2,1,0,0,2,,0.0,640.0,12,1.0,0.0,1.0,1.0,1.0,1,1,181.66628555321861,0.0,16673.27835013774,0,1,3,4,30.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02069179154543113,16673.27835013774,4,2,4_1,4_0_1,4_2_1,4_0_0_1 +33222,2,36.0,0.0,7,111,611.0,,,52,67,0.0,0.0,,732.0,167.65629627297903,,50,0,0,0,0,0,0,0,0,1,30.0,1,,5,133248,1,3,0,0,2,,240.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,106.55239866598608,611.0,24284.146591737874,1,1,1,2,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030143122272579523,13491.192550965485,3,2,3_0,3_1_0,3_2_0,3_0_0_0 +33223,2,67.0,0.0,5,120,431.0,0.0,0.0,0,78,1058.901582440748,0.0,734.9414341933584,1510.0,103.91919190473907,0.0,71,0,0,0,0,0,0,0,0,0,,1,,3,133249,2,1,2,0,1,,128.0,400.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1838.09102317042,431.0,14815.18664249218,0,5,2,3,80.0,0,0,5,1,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.10192244191302276,14815.18664249218,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +33224,2,27.0,0.0,1,111,400.0,1200.0,0.0,42,46,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,31,0,0,0,0,0,0,0,0,2,20.0,1,,1,133250,1,3,1,0,2,,350.0,,43,2.0,0.0,5.0,2.0,1.5,2,2,275.788800062296,400.0,53564.00683938321,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02987080493805762,35709.33789292214,9,5,9,9_1,9_3,9_1_0 +33225,0,54.0,0.0,8,111,200.0,,,0,54,0.0,0.0,,368.0,232.77898986661552,,71,0,0,0,0,0,0,0,0,3,60.0,1,2000.0,6,133251,2,1,0,0,2,,248.0,,22,2.0,0.0,4.0,2.0,1.5,2,2,89.09003298623608,200.0,42044.86280655012,0,1,0,1,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008752555614063504,28029.908537700077,7,4,7,7_1,7_3,7_0_0 +33226,2,56.0,0.0,1,112,900.0,0.0,0.0,47,46,0.0,0.0,1534.680489034855,900.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,1,,1,133252,2,1,3,0,1,,400.0,525.0,43,2.0,2.0,5.0,3.0,2.0,3,2,2612.67150038814,900.0,62198.12818679027,1,4,2,3,120.0,8,2,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.014469888825225825,31099.064093395136,8,4,8,8_1,8_1,8_1_0 +33227,2,54.0,0.0,2,211,120.0,0.0,0.0,0,56,0.0,0.0,204.62406520464734,145.0,34.63973063491302,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133253,2,2,0,1,1,468.0,40.0,250.0,12,1.0,2.0,3.0,1.0,1.0,1,1,3482.4369029765,120.0,15432.8033694138,0,1,2,3,35.0,2,2,8,0,0,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009395571013842814,15432.8033694138,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +33228,2,41.0,0.0,5,111,516.0,960.0,0.0,55,52,0.0,0.0,879.8834803799836,1476.0,0.0,1822.5638860221975,50,2,2,1,2,1,2,2,2,2,5.0,1,,3,133254,2,3,3,0,1,,316.0,376.0,43,2.0,0.0,2.0,2.0,1.5,2,2,229.437579750359,516.0,28047.34179635569,4,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.052625307978090924,18698.227864237128,5,3,5,5_1,5_3,5_0_0 +33229,2,57.0,0.0,1,112,492.0,0.0,0.0,0,62,0.0,397.2981831030672,838.958667339054,1040.0,343.6261278983372,0.0,71,0,0,0,0,0,0,0,0,2,25.0,1,,1,133255,2,2,2,0,1,,184.0,,22,1.0,0.0,6.0,2.0,1.5,2,2,2073.73426336958,492.0,22185.33925391675,0,1,0,1,60.0,7,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04687780466626812,14790.226169277834,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +33230,2,64.0,0.0,6,221,1750.0,0.0,0.0,77,72,0.0,529.7309108040896,2984.100950901107,2350.0,277.1178450793042,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,133256,2,1,1,0,1,,800.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,1839.72457806636,1750.0,14333.018259911956,7,5,0,1,90.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.16395709245502876,9555.345506607971,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +33231,1,53.0,250.0,2,111,1200.0,960.0,0.0,0,56,0.0,0.0,2046.2406520464733,2160.0,0.0,1822.5638860221975,50,0,0,0,0,0,0,0,0,0,,2,,2,133257,1,2,0,1,1,593.0,0.0,500.0,32,2.0,0.0,3.0,3.0,2.0,3,2,285.838266020085,1200.0,12258.284789564479,0,4,2,3,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1762073599267995,6129.1423947822395,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +33232,2,38.0,0.0,2,112,0.0,0.0,0.0,0,64,0.0,0.0,0.0,540.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,12.0,1,,2,133258,2,1,1,0,1,,138.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1618.25376056781,0.0,25711.64762207249,0,1,0,1,58.0,8,2,8,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021002154663026344,25711.64762207249,7,4,7,7_1,7_1,7_0_1 +33233,2,46.0,0.0,2,111,757.0,0.0,0.0,0,67,0.0,0.0,1290.8368113326503,757.0,0.0,0.0,60,0,0,0,0,0,0,0,0,0,,2,,2,133259,2,2,0,0,1,,0.0,436.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1081.58450211767,757.0,24587.2991048041,0,4,2,3,18.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.030788253592770185,24587.2991048041,7,4,7,7_0,7_4,7_0_1 +33235,2,49.0,0.0,1,112,900.0,0.0,0.0,0,53,0.0,0.0,1534.680489034855,930.0,41.567676761895626,0.0,50,2,2,2,1,2,2,2,2,2,30.0,1,,1,133261,2,1,1,0,1,,150.0,415.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1383.72898046424,900.0,17730.34075118182,0,1,2,3,55.0,9,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.052452460618277214,17730.34075118182,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +33236,1,30.0,330.0,5,111,0.0,0.0,0.0,52,67,0.0,0.0,0.0,748.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,133262,2,1,0,1,1,640.0,0.0,560.0,43,2.0,0.0,4.0,3.0,1.8,2,2,880.32369753155,0.0,34995.975043328624,1,4,2,3,100.0,8,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02137388654192086,19442.20835740479,5,3,5,5_0,5_3,5_0_0 +33238,2,74.0,0.0,5,112,200.0,,,0,75,0.0,0.0,,244.0,60.965925917446924,,60,0,0,0,0,0,0,0,0,0,,1,,3,133264,1,3,0,0,2,,0.0,350.0,11,0.0,0.0,3.0,1.0,1.0,1,1,142.93958256665306,200.0,19378.31406039009,0,5,2,3,33.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012591394650721654,19378.31406039009,5,3,5,5_1,5_2,5_0_0 +33239,2,46.0,0.0,8,211,1554.0,0.0,0.0,55,48,0.0,52.973091080408956,2649.881644400183,1594.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2002.0,6,133265,2,1,1,0,1,,447.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,1134.34762638789,1554.0,52199.0,4,1,1,2,135.0,3,3,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.030536983467116228,22695.217391304348,6,3,6,6_1,6_1,6_0_0 +33240,2,67.0,0.0,5,112,900.0,0.0,0.0,75,74,0.0,258.24381901699365,1534.680489034855,1191.0,133.01656563806603,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,133266,2,1,1,0,1,,264.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,700.52678058339,900.0,72351.60849172533,5,5,0,1,100.0,7,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016461278813672976,48234.405661150224,10,5,10,10_1,10_1,10_0_0 +33241,2,29.0,0.0,1,111,217.0,0.0,0.0,0,31,0.0,0.0,370.02851791173725,217.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,133267,2,2,0,1,1,408.0,0.0,653.0,12,1.0,1.0,1.0,1.0,1.0,1,1,1295.00246239519,217.0,28091.076716191164,0,1,2,3,25.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.0077248729976564165,28091.076716191164,8,4,8,8_0,8_4,8_1_0 +33242,2,23.0,0.0,7,112,0.0,0.0,0.0,0,54,0.0,0.0,0.0,391.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,2.0,2,,5,133268,2,1,0,0,1,,404.0,540.0,32,1.0,0.0,2.0,3.0,1.6,1,1,1024.99910634796,0.0,10021.967775287834,0,1,2,3,54.0,10,4,1,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.039014294275035256,6263.729859554896,1,1,1_0,1_0_0,1_2_0,1_0_0_0 +33243,1,59.0,236.0,2,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,323.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,2,133269,2,1,0,1,1,450.0,0.0,220.0,12,1.0,1.0,2.0,1.0,1.0,1,1,263.783575626167,0.0,9387.70724555237,0,4,2,3,49.0,5,4,5,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0344066971360902,9387.70724555237,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33244,2,76.0,0.0,5,400,240.0,,,77,77,0.0,0.0,,372.0,182.89777775234077,,71,0,0,0,0,0,0,0,0,0,,1,,3,133270,2,2,0,0,2,,274.0,,41,0.0,9.0,7.0,2.0,1.5,2,2,110.56453784503786,240.0,22747.884035914365,5,5,0,1,140.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0163531693502871,15165.25602394291,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +33245,1,36.0,119.0,1,111,61.0,0.0,0.0,0,54,0.0,0.0,104.01723314569573,121.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,3,90.0,2,,1,133271,2,1,0,0,1,,60.0,438.0,12,1.0,0.0,2.0,1.0,1.0,1,1,803.244279068108,61.0,14185.155034346444,0,1,2,3,34.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.008530044240406489,14185.155034346444,3,2,3_1,3_0_1,3_4_1,3_1_0_1 +33246,1,25.0,172.0,2,111,0.0,0.0,0.0,0,34,0.0,0.0,0.0,359.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,2,,2,133272,2,1,0,1,2,609.0,0.0,432.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2227.04410579732,0.0,18596.09550489541,0,1,2,3,50.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.019305127783705644,18596.09550489541,4,2,4_1,4_0_1,4_3_1,4_0_1_1 +33247,2,79.0,0.0,2,111,290.0,60.0,0.0,0,77,0.0,0.0,494.50815757789775,350.0,0.0,113.91024287638734,60,0,0,0,0,0,0,0,0,0,,2,,2,133273,2,1,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1103.88135222761,290.0,16198.070453052173,0,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.021607511895594338,16198.070453052173,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +33248,2,53.0,0.0,6,111,700.0,0.0,0.0,0,54,0.0,0.0,1193.6403803604428,700.0,0.0,0.0,31,2,2,1,1,2,2,2,2,2,20.0,2,,4,133274,2,1,0,1,1,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,389.262784940876,700.0,45749.86485762474,0,1,1,2,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.015300591644990114,45749.86485762474,10,5,10,10_0,10_4,10_0_0 +33249,2,51.0,0.0,5,111,400.0,800.0,0.0,0,62,0.0,0.0,682.0802173488245,1200.0,0.0,1518.8032383518312,50,0,0,0,0,0,0,0,0,2,25.0,2,,3,133275,1,2,0,0,1,,0.0,470.0,12,1.0,1.0,2.0,1.0,1.0,1,1,819.514098547518,400.0,32741.405010542658,0,1,2,3,55.0,8,6,3,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0366508401094456,32741.405010542658,8,4,8,8_0,8_2,8_0_0 +33250,2,82.0,0.0,1,120,559.0,0.0,0.0,71,78,158.20242765549023,595.9472746546007,953.2071037449822,1339.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133276,2,1,2,0,2,,190.0,,41,0.0,4.0,6.0,2.0,1.5,2,2,1926.07023717914,559.0,23359.543662633998,5,5,0,1,90.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05732132525096664,15573.029108422665,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +33251,1,86.0,50.0,2,221,180.0,1000.0,0.0,0,86,0.0,0.0,306.936097806971,1180.0,0.0,1898.504047939789,71,2,2,2,1,1,2,2,2,0,,2,,2,133277,2,3,0,0,2,,200.0,231.0,11,0.0,2.0,3.0,1.0,1.0,1,1,716.063974931698,180.0,16481.319409449028,0,5,2,3,55.0,1,3,2,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,0,1,0,1,0.07159620966531875,16481.319409449028,4,2,4_1,4_0_1,4_1_1,4_0_1_1 +33252,2,55.0,0.0,6,120,826.0,0.0,0.0,68,64,0.0,317.83854648245375,1408.4956488253226,1066.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,4,133278,2,1,1,0,1,,307.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1881.92592079785,826.0,29866.23363841346,1,1,0,1,99.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.035692481780793685,19910.822425608974,5,3,5,5_1,5_1,5_0_0 +33253,2,54.0,0.0,1,112,600.0,0.0,0.0,77,62,0.0,662.163638505112,1023.1203260232367,1150.0,69.27946126982604,0.0,70,0,0,0,0,0,0,0,0,2,90.0,1,,1,133279,2,1,3,0,1,,70.0,,42,1.0,2.0,3.0,2.0,1.5,2,2,209.919115822603,600.0,32926.376270499284,6,1,0,1,80.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.034926406433323606,21950.91751366619,6,3,6,6_1,6_0,6_1_0 +33254,2,39.0,0.0,8,111,324.0,652.0,0.0,0,55,0.0,0.0,552.4849760525478,976.0,0.0,1237.8246392567423,41,0,0,0,0,0,0,0,0,2,20.0,2,2003.0,6,133280,2,2,0,0,1,,199.0,242.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1430.77516115523,324.0,26183.44151259209,0,1,2,3,46.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03727546661620566,26183.44151259209,7,4,7,7_0,7_3,7_0_0 +33255,2,29.0,0.0,2,111,0.0,0.0,0.0,0,53,0.0,0.0,0.0,763.0,0.0,0.0,42,0,0,0,0,0,0,0,0,3,90.0,2,,2,133281,2,1,0,1,1,448.0,0.0,1000.0,22,2.0,0.0,3.0,2.0,1.5,2,2,995.262011309107,0.0,36420.03592143137,0,1,2,3,59.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.020950006794227587,24280.023947620914,7,4,7,7_0,7_4,7_0_1 +33257,1,35.0,146.0,2,111,0.0,0.0,0.0,85,67,0.0,0.0,0.0,608.0,0.0,0.0,50,0,0,0,0,0,0,0,0,1,10.0,2,,2,133283,1,1,0,0,1,,240.0,440.0,42,1.0,0.0,2.0,2.0,1.5,2,2,363.90612730017,0.0,18149.41443688389,6,1,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03349970337138815,12099.60962458926,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +33258,1,54.0,87.0,7,111,560.0,,,68,53,0.0,0.0,,682.0,169.04188549837556,,71,0,0,0,0,0,0,0,0,2,15.0,2,,5,133284,1,3,0,0,2,,400.0,554.0,43,2.0,0.0,4.0,5.0,2.8,4,2,76.24669465604333,560.0,43443.53687673323,1,1,2,3,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.01569853766591583,15515.548884547585,3,2,3_1,3_0_1,3_3_1,3_0_0_1 +33259,2,52.0,0.0,7,112,1195.0,0.0,0.0,85,34,0.0,529.7309108040896,2037.7146493296132,1735.0,193.98249155551292,0.0,10,0,0,0,0,0,0,0,0,1,20.0,1,,5,133285,2,1,1,0,1,,680.0,,42,1.0,0.0,8.0,2.0,1.5,2,2,810.351294746548,1195.0,77370.576483265,7,1,1,2,220.0,6,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.022424545335723002,51580.384322176666,10,5,10,10_1,10_0,10_0_0 +33260,2,70.0,0.0,5,112,1000.0,0.0,0.0,77,75,0.0,1324.327277010224,1705.2005433720612,2000.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,3,133286,2,1,2,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,393.069244656674,1000.0,37064.80084854342,5,5,0,1,160.0,9,1,3,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.053959550684557274,24709.867232362278,7,4,7,7_1,7_1,7_0_0 +33261,1,44.0,200.0,7,111,270.0,,,0,46,0.0,0.0,,345.0,103.91919190473907,,10,0,0,0,0,0,0,0,0,0,,2,,5,133287,2,1,0,0,2,,200.0,9.0,12,1.0,1.0,3.0,1.0,1.0,1,1,103.83245202878796,270.0,9583.657931034482,0,1,2,3,80.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03599878068297873,9583.657931034482,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +33262,2,55.0,0.0,7,111,1000.0,0.0,0.0,21,54,0.0,0.0,1705.2005433720612,1060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,90.0,1,,5,133288,2,1,2,0,1,,590.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1336.57067353185,1000.0,22151.093996222175,1,1,1,2,100.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04785316698943993,14767.39599748145,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +33263,2,77.0,0.0,5,112,900.0,0.0,0.0,0,77,0.0,0.0,1534.680489034855,975.0,103.91919190473907,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,133289,2,1,4,0,1,,170.0,,21,0.0,1.0,4.0,2.0,1.5,2,2,743.5475073479,900.0,24187.898968936057,0,5,0,1,76.0,8,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.040309412622078884,16125.265979290705,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +33264,2,67.0,0.0,9,112,0.0,0.0,0.0,0,74,0.0,0.0,0.0,1051.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,133290,2,1,1,0,1,,122.0,,11,0.0,1.0,6.0,1.0,1.0,1,1,1024.70098255093,0.0,14562.516371622702,0,5,0,1,105.0,6,1,5,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.07217159268215724,14562.516371622702,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +33265,1,34.0,240.0,5,112,650.0,20.0,0.0,0,54,0.0,0.0,1108.3803531918397,670.0,0.0,37.970080958795776,20,0,0,0,0,0,0,0,0,4,100.0,2,,3,133291,2,1,0,1,1,40.0,240.0,311.0,32,1.0,0.0,3.0,2.0,1.3,1,1,932.986185891047,650.0,21095.0,0,1,2,3,68.0,10,2,2,0,1,1,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03176108082484001,16226.923076923076,4,2,4_1,4_0_1,4_1_1,4_0_0_1 +33266,2,82.0,0.0,2,111,220.0,363.0,0.0,0,77,0.0,715.1367295855209,375.14411954185346,1123.0,0.0,689.1569694021434,71,2,1,2,1,2,2,2,2,0,,2,,2,133292,2,2,0,1,1,540.0,0.0,289.0,11,0.0,4.0,4.0,1.0,1.0,1,1,366.415573092872,220.0,22725.220174794144,0,5,2,3,114.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.049416462914871305,22725.220174794144,6,3,6,6_0,6_2,6_0_1 +33267,2,81.0,0.0,2,111,268.0,0.0,0.0,90,72,0.0,0.0,456.9937456237124,268.0,0.0,0.0,50,2,1,2,1,1,2,2,2,0,,2,,2,133293,2,1,0,1,1,429.0,0.0,255.0,41,0.0,2.0,3.0,2.0,1.5,2,2,288.76331176905,268.0,18768.80317202324,5,5,2,3,52.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.014279013826490576,12512.535448015493,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +33268,2,36.0,0.0,2,111,800.0,0.0,0.0,0,34,0.0,0.0,1364.160434697649,800.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,2,133294,2,1,0,0,1,,0.0,693.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1525.84269854508,800.0,17658.835435241384,0,4,2,3,33.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04530310070184221,17658.835435241384,4,2,4_0,4_0_0,4_4_0,4_0_1_0 +33269,2,53.0,0.0,1,111,315.0,0.0,0.0,0,37,0.0,0.0,537.1381711621992,365.0,69.27946126982604,0.0,31,0,0,0,0,0,0,0,0,2,15.0,2,,1,133295,2,2,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,994.174225681717,315.0,49734.93812190639,0,1,1,2,35.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.007338905280335135,49734.93812190639,10,5,10,10_0,10_4,10_1_0 +33270,2,82.0,0.0,1,112,430.0,0.0,0.0,78,78,0.0,993.245457757668,733.2362336499863,1580.0,554.2356901586083,0.0,71,2,2,1,2,1,2,2,2,0,,1,,1,133296,2,1,2,0,1,,204.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,322.051327247421,430.0,21217.05735122821,5,5,0,1,50.0,9,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.07446838521688481,14144.704900818806,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +33271,2,75.0,0.0,2,111,300.0,62.0,0.0,0,77,0.0,0.0,511.56016301161833,362.0,0.0,117.70725097226692,71,0,0,0,0,0,0,0,0,0,,2,,2,133297,2,1,0,1,1,,127.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,331.201462812347,300.0,17741.25642981565,0,5,0,1,80.0,7,5,5,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02040441732140397,17741.25642981565,4,2,4_0,4_0_0,4_2_0,4_0_1_0 +33272,2,30.0,0.0,7,111,1000.0,0.0,0.0,42,42,0.0,662.163638505112,1705.2005433720612,1500.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,10.0,1,,5,133298,2,1,1,0,1,,1000.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,533.467717504462,1000.0,46773.108930954935,1,1,1,2,104.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0320697091616094,22272.909014740446,6,3,6,6_1,6_4,6_0_0 +33273,2,48.0,0.0,2,111,420.0,1300.0,0.0,22,55,0.0,0.0,716.1842282162656,1720.0,0.0,2468.055262321726,41,0,0,0,0,0,0,0,0,3,40.0,1,,2,133299,2,2,3,0,2,,450.0,,43,2.0,0.0,2.0,2.0,1.5,2,2,327.342693958962,420.0,47331.07082997322,1,1,1,2,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.036339765186778325,31554.04721998215,8,4,8,8_1,8_4,8_0_1 +33274,2,55.0,0.0,2,111,250.0,1450.0,0.0,52,45,0.0,0.0,426.3001358430153,1700.0,0.0,2752.830869512694,20,0,0,0,0,0,0,0,0,2,10.0,1,,2,133300,2,2,3,0,1,,570.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,945.766768626365,250.0,55914.630815784985,1,1,0,1,87.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030403491451115535,37276.42054385666,9,5,9,9_1,9_4,9_0_1 +33275,2,39.0,0.0,9,111,2600.0,0.0,0.0,52,37,0.0,0.0,4433.521412767359,2600.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2010.0,6,133301,2,1,1,0,1,,700.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,1171.75395241668,2600.0,63652.194308387705,1,4,1,2,208.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04084698144738409,30310.568718279857,8,4,8,8_1,8_3,8_0_0 +33276,2,42.0,0.0,9,111,525.0,2158.0,0.0,0,31,0.0,0.0,895.2302852703322,2683.0,0.0,4096.971735454064,10,0,0,0,0,0,0,0,0,0,,2,2004.0,6,133302,2,1,0,0,1,,0.0,,32,1.0,0.0,5.0,3.0,1.6,1,1,2080.10166525695,525.0,23599.63899158908,0,1,1,2,130.0,9,7,8,0,1,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.1136881797622507,14749.774369743174,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +33277,1,44.0,251.0,1,111,200.0,450.0,0.0,0,56,0.0,0.0,341.04010867441224,650.0,0.0,854.326821572905,41,2,2,2,2,1,2,2,2,4,20.0,2,,1,133303,2,3,0,0,1,,200.0,238.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1427.4735999106,200.0,9414.257243879943,0,1,2,3,50.0,9,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,0,1,1,0,1,0.0690442148712852,9414.257243879943,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +33278,2,53.0,0.0,1,111,300.0,400.0,0.0,0,46,0.0,0.0,511.56016301161833,700.0,0.0,759.4016191759156,31,2,2,1,2,2,2,2,1,1,30.0,2,,1,133304,2,2,0,0,1,,400.0,,32,1.0,0.0,3.0,2.0,1.5,2,2,788.674145401195,300.0,35752.102948763575,0,1,0,1,51.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,0,0.01957926785462583,23834.735299175718,6,3,6,6_0,6_4,6_1_0 +33279,2,44.0,0.0,8,111,1070.0,0.0,0.0,54,53,0.0,39.72981831030672,1824.5645814081054,1220.0,166.2707070475825,0.0,31,0,0,0,0,0,0,0,0,2,15.0,1,2003.0,6,133305,2,1,1,0,1,,510.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,1700.14735822953,1070.0,35218.06503286804,1,1,1,2,70.0,4,4,5,0,0,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.03464131260083164,16770.50715850859,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +33280,2,35.0,0.0,1,112,0.0,0.0,0.0,0,47,0.0,0.0,0.0,2162.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,,1,133306,2,2,5,0,1,,472.0,420.0,12,1.0,1.0,4.0,1.0,1.0,1,1,1103.17542656116,0.0,19882.29620093417,0,1,2,3,60.0,7,0,7,0,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.10873995529240824,19882.29620093417,5,3,5,5_1,5_0,5_1_0 +33281,1,29.0,296.0,2,111,600.0,450.0,0.0,85,63,0.0,0.0,1023.1203260232367,1050.0,0.0,854.326821572905,50,2,1,2,1,1,2,2,2,0,,2,,2,133307,1,1,0,1,1,617.0,480.0,260.0,42,1.0,0.0,3.0,4.0,2.1,2,2,279.058234330673,600.0,13176.480078892944,6,4,2,3,55.0,7,5,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.07968744260327668,6274.514323282354,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33282,2,82.0,0.0,1,111,311.0,1343.0,0.0,74,75,0.0,0.0,530.317368988711,1654.0,0.0,2549.6909363831364,43,0,0,0,0,0,0,0,0,0,,1,,1,133308,2,1,1,0,1,,201.0,,41,0.0,0.0,4.0,2.0,1.5,2,2,603.06648666268,311.0,57140.70064346715,5,5,0,1,70.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028946092389035144,38093.8004289781,9,5,9,9_1,9_4,9_1_0 +33283,1,36.0,23.0,2,111,360.0,1200.0,0.0,56,46,0.0,0.0,613.872195613942,1560.0,0.0,2278.2048575277468,31,1,2,2,2,1,2,2,2,3,30.0,2,,2,133309,2,2,0,1,1,1500.0,0.0,496.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1791.99003355001,360.0,35654.000769348546,1,1,2,3,87.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1,0.04375385556565981,19807.778205193637,5,3,5,5_0,5_3,5_0_1 +33284,2,46.0,0.0,7,120,955.0,788.0,0.0,67,67,0.0,331.081819252556,1628.4665189203183,1993.0,0.0,1496.0211897765537,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,133310,2,1,2,0,1,,345.0,,43,3.0,0.0,5.0,5.0,2.8,4,4,1191.03286655752,955.0,64554.47678071734,1,1,0,1,110.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030873149305662352,23055.170278827623,6,3,6,6_1,6_0,6_0_0 +33285,2,50.0,0.0,1,211,630.0,0.0,0.0,75,43,1961.7101029280789,0.0,1074.2763423243985,2565.0,103.91919190473907,0.0,33,0,0,0,0,0,0,0,0,2,10.0,1,,1,133311,2,1,2,0,1,,427.0,,42,2.0,0.0,5.0,3.0,2.0,3,3,674.065589710172,630.0,60208.706576766286,7,1,0,1,130.0,2,3,9,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.04260181202746179,30104.353288383143,8,4,8,8_1,8_1,8_1_0 +33286,1,35.0,85.0,2,111,276.0,0.0,0.0,0,56,0.0,0.0,470.6353499706889,276.0,0.0,0.0,10,0,0,0,0,0,0,0,0,1,10.0,2,,2,133312,1,2,0,1,2,192.0,0.0,138.0,12,1.0,0.0,1.0,1.0,1.0,1,1,1704.07575623797,276.0,13079.86237895247,0,1,2,3,34.0,8,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.021101139446553112,13079.86237895247,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +33287,2,64.0,0.0,7,111,206.0,0.0,0.0,0,77,0.0,0.0,351.2713119346446,206.0,0.0,0.0,70,2,2,1,2,1,2,2,2,0,,2,,5,133313,1,2,0,1,1,529.0,0.0,432.0,11,0.0,0.0,3.0,1.0,1.0,1,1,1297.48676200789,206.0,15161.481719385301,0,5,2,3,95.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,1,0,0,1,0,0,0.01358706251887048,15161.481719385301,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +33288,2,24.0,0.0,5,400,537.0,,,85,63,0.0,0.0,,650.0,156.57158246980686,,60,0,0,0,0,0,0,0,0,0,,1,,3,133314,2,2,0,0,1,,0.0,350.0,42,1.0,0.0,4.0,4.0,2.3,3,3,6.1918988573027525,537.0,26097.934280497837,6,1,3,4,82.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024906185792862714,11346.92794804254,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +33289,2,74.0,0.0,6,111,400.0,500.0,0.0,77,75,0.0,0.0,682.0802173488245,900.0,0.0,949.2520239698945,70,2,2,2,2,1,2,2,2,0,,8,,4,133315,2,2,0,1,1,700.0,0.0,358.0,41,0.0,5.0,4.0,2.0,1.5,2,2,335.1009372928,400.0,22544.04271658736,5,5,2,3,70.0,7,6,2,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,1,0,0,0,0,0.03992185480281236,15029.36181105824,3,2,3_0,3_0_0,3_2_0,3_0_0_0 +33290,2,52.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,368.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,2,,1,133316,2,3,0,0,1,,0.0,700.0,32,1.0,0.0,3.0,2.0,1.3,1,1,1627.22106970699,0.0,28157.06540808604,0,1,2,3,75.0,9,7,5,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.013069543813124756,21659.28108314311,6,3,6,6_0,6_3,6_1_0 +33291,2,43.0,0.0,9,120,624.0,1250.0,0.0,56,46,0.0,0.0,1064.0451390641663,1874.0,0.0,2373.130059924736,42,0,0,0,0,0,0,0,0,2,25.0,1,2007.0,6,133317,2,1,1,0,1,,677.0,,43,2.0,0.0,8.0,4.0,2.1,2,2,679.270957061791,624.0,30931.922197954733,1,1,1,2,150.0,0,0,4,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.060584660339146716,14729.486760930824,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +33292,1,36.0,389.0,2,111,0.0,0.0,0.0,0,52,0.0,0.0,0.0,1462.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133318,2,1,0,0,2,50.0,295.0,352.0,32,1.0,0.0,3.0,3.0,1.6,1,1,604.887811610895,0.0,15033.292829068141,0,4,2,3,72.0,7,6,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09725081634630968,9395.808018167587,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33293,2,60.0,0.0,6,112,863.0,0.0,0.0,0,90,0.0,99.3245457757668,1471.5880689300889,1002.0,88.67771042537734,0.0,71,2,2,1,1,2,2,2,2,0,,1,,4,133319,2,1,4,0,1,,124.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,1144.19728474719,863.0,3226.1492120991848,0,4,0,1,87.0,10,1,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.3105869983453185,3226.1492120991848,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +33294,2,70.0,0.0,2,111,0.0,0.0,216.0,0,77,0.0,0.0,136.14875072958463,285.0,95.60565655235995,258.4941438739711,50,0,0,0,0,0,0,0,0,0,,1,,2,133320,1,1,4,0,2,,73.0,,11,0.0,4.0,5.0,1.0,1.0,1,1,842.829346298007,0.0,19563.601926880903,0,5,0,1,120.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.014567869509162447,19563.601926880903,5,3,5,5_1,5_2,5_0_1 +33295,2,60.0,0.0,7,111,200.0,,,0,71,0.0,0.0,,596.0,548.6933332570223,,71,2,2,2,2,1,2,2,2,0,,1,,5,133321,2,3,0,0,1,,180.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,143.9212301542954,200.0,7675.712564543889,0,5,0,1,56.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.07764751415433127,7675.712564543889,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +33296,1,45.0,366.0,2,111,380.0,320.0,0.0,0,56,0.0,0.0,647.9762064813832,700.0,0.0,607.5212953407324,71,0,0,0,0,0,0,0,0,3,90.0,2,,2,133322,2,2,0,1,1,650.0,0.0,330.0,32,1.0,0.0,3.0,3.0,2.0,3,2,1338.43654269737,380.0,30173.075205441037,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.023199491441753033,15086.537602720518,3,2,3_1,3_0_1,3_4_1,3_0_1_1 +33297,2,36.0,0.0,7,112,900.0,0.0,0.0,37,31,0.0,0.0,1534.680489034855,3000.0,2909.737373332694,0.0,10,0,0,0,0,0,0,0,0,0,,1,,5,133323,2,1,2,0,1,,450.0,,43,2.0,0.0,7.0,4.0,2.1,2,2,1489.65806500231,900.0,143195.3463348955,1,1,1,2,150.0,9,3,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02095040150944434,68188.26015947404,10,5,10,10_1,10_1,10_0_0 +33298,1,81.0,22.0,1,111,0.0,0.0,1504.0,77,77,0.0,0.0,947.9987087837746,1504.0,0.0,1799.88514993728,70,0,0,0,0,0,0,0,0,0,,2,,1,133324,2,3,0,0,1,,326.0,509.0,41,0.0,2.0,3.0,2.0,1.5,2,2,2073.30257512136,0.0,17104.844828710222,5,5,2,3,65.0,6,5,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.0879283042355087,11403.229885806815,2,1,2_1,2_0_1,2_2_1,2_1_0_1 +33299,2,29.0,0.0,9,111,2270.0,0.0,0.0,31,47,0.0,0.0,3870.8052334545787,2270.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,30.0,1,2011.0,6,133325,1,1,1,0,1,,242.0,870.0,43,2.0,0.0,4.0,2.0,1.5,2,2,210.814348816672,2270.0,45400.616545967256,1,1,2,3,110.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04999932099383867,30267.077697311503,8,4,8,8_1,8_3,8_0_0 +33300,2,78.0,0.0,2,111,285.0,2267.0,0.0,77,74,0.0,0.0,485.98215486103743,2552.0,0.0,4303.908676679502,60,0,0,0,0,0,0,0,0,0,,1,,2,133326,2,1,2,0,2,,367.0,,41,0.0,2.0,6.0,2.0,1.5,2,2,1405.59201429734,285.0,49335.36473888597,5,5,0,1,130.0,4,4,2,0,1,1,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05172759973513528,32890.24315925731,8,4,8,8_1,8_2,8_0_1 +33301,1,47.0,240.0,2,211,0.0,0.0,0.0,0,54,0.0,0.0,0.0,441.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133327,1,2,0,1,1,,0.0,150.0,12,1.0,2.0,1.0,1.0,1.0,1,1,2896.18297570097,0.0,6764.279773156899,0,4,2,3,37.0,1,2,2,0,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.06519541101035575,6764.279773156899,1,1,1_1,1_0_1,1_1_1,1_0_1_1 +33302,2,73.0,0.0,2,111,220.0,494.0,0.0,0,77,0.0,0.0,375.14411954185346,714.0,0.0,937.8609996822557,70,0,0,0,0,0,0,0,0,0,,2,,2,133328,2,1,0,1,1,336.0,0.0,318.0,11,0.0,2.0,2.0,1.0,1.0,1,1,527.710469555727,220.0,16654.059924025387,0,5,2,3,45.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.042872428900653424,16654.059924025387,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +33303,1,59.0,254.0,2,111,82.0,96.0,0.0,0,85,0.0,0.0,139.82644455650902,178.0,0.0,182.25638860221974,71,0,0,0,0,0,0,0,0,0,,2,,2,133329,2,1,0,1,1,365.0,0.0,245.0,11,0.0,0.0,2.0,1.0,1.0,1,1,383.803437771131,82.0,5295.143419519913,0,6,2,3,50.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.03361570894261793,5295.143419519913,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33304,2,51.0,0.0,8,400,996.0,,,81,68,0.0,0.0,,1356.0,498.81212114274757,,71,0,0,0,0,0,0,0,0,2,10.0,1,2000.0,6,133330,2,2,0,0,2,,600.0,,43,4.0,0.0,2.0,5.0,3.0,5,4,39.067019409676746,996.0,38193.43279314731,4,1,0,1,50.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03550348583077074,12731.144264382436,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +33305,1,30.0,184.0,2,111,390.0,0.0,0.0,0,65,0.0,0.0,665.0282119151038,510.0,166.2707070475825,0.0,41,2,1,2,2,1,2,2,2,0,,2,,2,133331,1,3,0,1,1,57.0,0.0,680.0,22,2.0,1.0,5.0,2.0,1.5,2,2,288.440171544005,390.0,32587.571232868388,0,1,2,3,85.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.015650138402631405,21725.047488578926,6,3,6,6_0,6_3,6_0_1 +33306,1,25.0,134.0,2,111,390.0,0.0,0.0,22,64,0.0,0.0,665.0282119151038,390.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,8.0,2,,2,133332,2,1,0,1,1,423.0,300.0,384.0,43,2.0,0.0,3.0,3.0,1.8,2,2,400.809816936459,390.0,35831.75923119893,1,1,2,3,66.0,8,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.01088419905602694,19906.532906221626,5,3,5,5_0,5_3,5_0_1 +33307,2,69.0,0.0,2,111,0.0,0.0,0.0,75,74,0.0,0.0,0.0,901.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,133333,2,1,2,0,1,,1246.0,,41,0.0,1.0,7.0,3.0,2.0,3,3,844.92744992452,0.0,121545.04964456832,5,5,0,1,150.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007412889316634249,60772.52482228416,10,5,10,10_1,10_4,10_0_1 +33308,0,81.0,0.0,2,400,120.0,,,0,78,0.0,0.0,,846.0,95.60565655235995,,71,0,0,0,0,0,0,0,0,0,,1,,2,133334,1,1,0,0,2,,224.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,110.27402420870726,120.0,10382.0,0,5,5,0,60.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08148718936621074,10382.0,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +33309,2,30.0,0.0,9,111,0.0,,,63,52,0.0,0.0,,84.0,116.38949493330776,,50,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,133335,2,2,0,0,2,,800.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,250.01346798315893,0.0,61828.60202960117,1,1,1,2,164.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0013585945216711194,29442.191442667223,8,4,8,8_1,8_2,8_0_0 +33310,2,62.0,0.0,8,111,600.0,,,0,22,0.0,0.0,,738.0,191.2113131047199,,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,133336,2,3,0,0,2,,192.0,,12,1.0,6.0,4.0,1.0,1.0,1,1,104.67610165110239,600.0,8857.38206928953,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0833203303444261,8857.38206928953,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +33311,2,69.0,0.0,1,111,804.0,0.0,0.0,0,77,0.0,0.0,1370.981236871137,804.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,133337,2,2,0,0,1,,0.0,540.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1285.49711417577,804.0,18647.08358611664,0,5,2,3,28.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.043116661985609595,18647.08358611664,4,2,4_0,4_0_0,4_4_0,4_1_0_0 +33313,2,24.0,0.0,9,111,0.0,0.0,0.0,55,47,0.0,0.0,0.0,640.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,25.0,2,2006.0,6,133339,2,1,0,0,1,,553.0,698.0,43,2.0,0.0,2.0,2.0,1.5,2,2,962.265698023308,0.0,32477.11109927691,1,1,2,3,45.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.01970618624432545,21651.40739951794,6,3,6,6_0,6_4,6_0_0 +33314,1,24.0,322.0,2,111,0.0,0.0,0.0,54,52,0.0,0.0,0.0,268.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,30.0,2,,2,133340,2,2,0,1,1,609.0,0.0,311.0,43,2.0,0.0,2.0,2.0,1.5,2,2,118.675031189728,0.0,13737.824156916771,4,1,2,3,55.0,7,5,3,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0195081838971615,9158.549437944514,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33315,2,90.0,0.0,2,111,420.0,,,0,71,0.0,0.0,,516.0,133.01656563806603,,71,0,0,0,0,0,0,0,0,0,,1,,2,133341,2,1,0,0,2,,450.0,,11,0.0,5.0,5.0,1.0,1.0,1,1,90.65567485323704,420.0,17139.240837696336,0,5,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.030106350968888942,17139.240837696336,4,2,4_0,4_1_0,4_2_0,4_0_1_0 +33316,2,52.0,0.0,9,111,0.0,0.0,470.0,56,21,0.0,0.0,296.24959649492956,470.0,0.0,562.4641093554,50,0,0,0,0,0,0,0,0,0,,2,2008.0,6,133342,2,1,0,0,1,,300.0,411.0,43,2.0,1.0,3.0,2.0,1.5,2,2,1239.13510769723,0.0,19416.295670476604,1,1,2,3,65.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.024206471099152926,12944.19711365107,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +33317,2,38.0,0.0,5,111,0.0,0.0,0.0,43,34,0.0,0.0,0.0,446.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,2,,3,133343,2,2,0,0,1,,550.0,620.0,43,2.0,0.0,2.0,2.0,1.5,2,2,1742.71033120389,0.0,51388.30962059153,1,1,2,3,60.0,9,7,8,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008679016750947685,34258.873080394354,9,5,9,9_0,9_3,9_0_0 +33318,1,24.0,327.0,1,111,0.0,0.0,0.0,53,53,0.0,0.0,0.0,298.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,10.0,2,,1,133344,2,1,0,0,1,,204.0,530.0,43,2.0,0.0,4.0,2.0,1.5,2,2,1464.30220356683,0.0,12465.508016005628,1,1,2,3,54.0,8,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.023905965133339934,8310.338677337086,1,1,1_1,1_0_1,1_3_1,1_1_0_1 +33319,2,45.0,0.0,2,111,210.0,210.0,0.0,0,85,0.0,0.0,358.0921141081328,420.0,0.0,398.6858500673557,50,0,0,0,0,0,0,0,0,0,,2,,2,133345,2,2,0,1,1,,0.0,362.0,11,0.0,2.0,2.0,1.0,1.0,1,1,704.968604052429,210.0,12770.844564202318,0,7,2,3,45.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03288740990375007,12770.844564202318,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +33320,2,35.0,0.0,6,111,426.0,800.0,0.0,45,33,0.0,0.0,726.415431476498,1226.0,0.0,1518.8032383518312,20,0,0,0,0,0,0,0,0,2,25.0,1,,4,133346,2,1,3,0,1,,336.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,836.434581128433,426.0,53347.28221268539,1,1,1,2,105.0,9,7,7,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02298148938707267,25403.46772032638,7,4,7,7_1,7_3,7_0_0 +33321,2,41.0,0.0,9,211,1200.0,,,48,11,0.0,0.0,,1344.0,199.524848457099,,50,0,0,0,0,0,0,0,0,2,5.0,1,2010.0,6,133347,2,2,0,0,1,,640.0,,43,2.0,0.0,5.0,5.0,2.5999999999999996,3,2,253.34303527162342,1200.0,72197.35899117094,1,1,1,2,110.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.018615639391523428,27768.214996604213,7,4,7,7_1,7_2,7_0_0 +33322,2,25.0,0.0,5,111,0.0,0.0,0.0,53,53,0.0,0.0,0.0,268.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,2.0,2,,3,133348,2,1,0,1,1,,0.0,398.0,43,2.0,0.0,3.0,2.0,1.5,2,2,356.527784975409,0.0,32797.66084453823,1,1,2,3,63.0,6,5,2,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00817131445045203,21865.107229692152,6,3,6,6_0,6_2,6_0_0 +33323,2,39.0,0.0,9,111,900.0,,,0,43,0.0,0.0,,1100.0,277.1178450793042,,44,0,0,0,0,0,0,0,0,2,45.0,1,2009.0,6,133349,2,2,0,0,2,,600.0,,12,1.0,2.0,4.0,1.0,1.0,1,1,113.85311954983776,900.0,26692.407564952402,0,1,1,2,95.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04121022044651825,26692.407564952402,7,4,7,7_1,7_3,7_0_0 +33324,2,66.0,0.0,6,111,450.0,0.0,0.0,0,75,0.0,0.0,767.3402445174275,450.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,2,,4,133350,2,1,0,0,1,,0.0,445.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1319.1180590787,450.0,22383.102551856726,0,5,2,3,50.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0201044515145945,22383.102551856726,6,3,6,6_0,6_3,6_0_0 +33325,1,55.0,357.0,7,112,429.0,,,0,63,0.0,0.0,,649.0,304.8296295872346,,71,0,0,0,0,0,0,0,0,0,,2,,5,133351,2,2,0,0,2,,326.0,425.0,32,1.0,4.0,3.0,2.0,1.3,1,1,139.86169630150505,429.0,8246.041959928256,0,4,2,3,35.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07870442609361238,6343.109199944812,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +33326,1,76.0,156.0,2,111,270.0,0.0,0.0,77,77,0.0,0.0,460.40414671045653,270.0,0.0,0.0,70,2,1,2,2,1,2,2,2,0,,2,,2,133352,2,1,0,1,1,606.0,0.0,292.0,41,0.0,6.0,2.0,2.0,1.5,2,2,344.60134060232,270.0,29561.357625642995,5,5,2,3,70.0,8,7,4,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0.00913354533371595,19707.571750428662,5,3,5,5_0,5_3,5_0_1 +33327,2,25.0,0.0,5,111,216.0,60.0,0.0,0,43,0.0,0.0,368.3233173683652,276.0,0.0,113.91024287638734,41,0,0,0,0,0,0,0,0,3,45.0,2,,3,133353,2,2,0,1,1,360.0,0.0,291.0,12,1.0,0.0,1.0,1.0,1.0,1,1,219.552407545747,216.0,20693.20847822125,0,1,2,3,41.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013337709340263914,20693.20847822125,5,3,5,5_0,5_4,5_0_0 +33328,2,30.0,0.0,9,112,600.0,1000.0,0.0,62,46,0.0,0.0,1023.1203260232367,1600.0,0.0,1898.504047939789,31,0,0,0,0,0,0,0,0,2,8.0,1,2007.0,6,133354,2,1,1,0,1,,120.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,1488.90069540822,600.0,43355.937253033706,4,1,0,1,75.0,9,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.036903826819890614,24086.63180724095,6,3,6,6_1,6_1,6_0_0 +33329,1,84.0,117.0,2,221,250.0,897.0,0.0,0,77,0.0,0.0,426.3001358430153,1147.0,0.0,1702.9581310019908,71,2,2,2,2,1,2,2,2,0,,2,,2,133355,1,3,0,0,1,,50.0,268.0,11,0.0,4.0,4.0,1.0,1.0,1,1,2872.79694981354,250.0,14815.797117751716,0,5,2,3,85.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,1,0,1,0,0,1,0.07741736680679226,14815.797117751716,3,2,3_1,3_0_1,3_1_1,3_0_1_1 +33330,2,48.0,0.0,2,211,570.0,,,0,62,0.0,0.0,,636.0,91.44888887617039,,50,0,0,0,0,0,0,0,0,0,,1,,2,133356,1,1,0,0,2,,642.0,,22,1.0,1.0,4.0,2.0,1.5,2,2,103.68884957413042,570.0,29912.856262148664,0,1,0,1,50.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.021261760977496023,19941.904174765776,5,3,5,5_1,5_2,5_0_1 +33331,2,54.0,0.0,6,300,1644.0,40.0,0.0,77,62,0.0,0.0,2803.3496933036686,1684.0,0.0,75.94016191759155,50,0,0,0,0,0,0,0,0,2,10.0,1,,4,133357,2,1,2,0,1,,900.0,,42,1.0,3.0,6.0,2.0,1.5,2,2,778.522827405021,1644.0,21860.698603613608,7,1,0,1,93.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0770332197765003,14573.799069075738,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +33332,1,21.0,179.0,2,111,120.0,300.0,0.0,0,38,0.0,0.0,204.62406520464734,420.0,0.0,569.5512143819367,31,1,2,2,2,1,1,2,2,2,10.0,2,,2,133358,2,3,0,0,1,,0.0,508.0,22,2.0,0.0,3.0,2.0,1.5,2,2,1858.66830198607,120.0,18566.37766316082,0,2,2,3,74.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,1,0,0,1,0,1,0.02262153703968647,12377.58510877388,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +33333,2,58.0,0.0,1,211,1200.0,0.0,0.0,0,63,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,1,133359,2,1,2,0,1,,0.0,,12,1.0,0.0,5.0,1.0,1.0,1,1,1107.15072746051,1200.0,21212.956049591623,0,1,0,1,110.0,3,4,8,0,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.05656920219863,21212.956049591623,5,3,5,5_1,5_2,5_1_0 +33334,2,68.0,0.0,7,112,1480.0,0.0,0.0,78,78,0.0,397.2981831030672,2523.6968041906507,1780.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,5,133360,2,1,0,0,1,,400.0,,41,0.0,4.0,4.0,2.0,1.5,2,2,785.156528151665,1480.0,35738.041617929965,5,5,0,1,90.0,10,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.049806870198141034,23825.361078619975,6,3,6,6_0,6_0,6_0_0 +33335,2,47.0,0.0,7,111,0.0,0.0,2200.0,52,52,0.0,0.0,1386.7002389124364,2200.0,0.0,2632.810724642298,50,2,2,2,2,2,2,1,2,2,5.0,1,,5,133361,1,1,2,0,1,,800.0,600.0,43,3.0,0.0,5.0,4.0,2.5,4,3,1162.2416998199,0.0,41230.43010974211,1,1,2,3,75.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,1,0,1,0,1,0,0,1,0,0,0.053358647827449514,16492.172043896844,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +33336,2,47.0,0.0,2,221,532.0,695.0,0.0,55,46,0.0,0.0,907.1666890739366,1227.0,0.0,1319.4603133181533,31,0,0,0,0,0,0,0,0,2,30.0,2,,2,133362,2,2,0,0,1,,200.0,274.0,43,2.0,0.0,3.0,4.0,2.5,4,2,2023.10138374098,532.0,33206.920177628475,1,1,2,3,56.0,1,2,8,0,1,1,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03695012947411578,13282.76807105139,3,2,3_0,3_0_0,3_1_0,3_0_1_0 +33337,2,58.0,0.0,1,112,1500.0,0.0,0.0,0,56,0.0,993.245457757668,2557.8008150580918,2315.0,90.06329965077386,0.0,60,1,2,2,1,2,2,2,2,2,7.0,1,,1,133363,1,2,2,0,1,,270.0,,12,1.0,3.0,4.0,1.0,1.0,1,1,1692.97160213399,1500.0,10399.346077421937,0,1,0,1,105.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0.2226101509426738,10399.346077421937,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +33338,2,48.0,0.0,9,111,600.0,900.0,0.0,55,64,0.0,0.0,1023.1203260232367,1500.0,0.0,1708.65364314581,50,2,2,1,2,1,2,2,1,0,,2,2006.0,6,133364,1,1,0,0,1,,600.0,452.0,43,2.0,0.0,3.0,3.0,2.0,3,3,1769.83847644022,600.0,25442.98468675695,4,1,2,3,70.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.05895534735674107,12721.492343378475,2,1,2_0,2_0_0,2_2_0,2_0_0_0 +33339,2,80.0,0.0,1,400,430.0,0.0,0.0,0,86,0.0,0.0,733.2362336499863,490.0,83.13535352379125,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,133365,1,1,2,0,2,,200.0,,11,0.0,2.0,5.0,1.0,1.0,1,1,1906.7436897172,430.0,16659.50815397448,0,5,0,1,90.0,0,0,9,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02941263304241669,16659.50815397448,4,2,4_0,4_1_0,4_0_0,4_1_0_0 +33340,2,37.0,0.0,1,111,1220.0,0.0,0.0,21,55,0.0,0.0,2080.344662913915,1295.0,103.91919190473907,0.0,31,2,1,2,2,1,2,2,2,2,2.0,1,,1,133366,2,2,4,1,1,612.0,0.0,611.0,43,2.0,0.0,4.0,5.0,2.4,2,2,895.644248318208,1220.0,25644.874833754075,1,1,2,3,114.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.05049741940231685,10685.364514064198,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +33341,1,27.0,180.0,1,111,200.0,200.0,0.0,0,55,0.0,0.0,341.04010867441224,470.0,96.99124577775646,379.7008095879578,60,2,2,2,2,1,2,2,2,1,10.0,2,,1,133367,2,2,0,0,1,,0.0,600.0,22,1.0,0.0,3.0,2.0,1.5,2,2,492.619984296942,200.0,15415.82934232505,0,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,1,0.03048814238683791,10277.219561550033,2,1,2_1,2_0_1,2_3_1,2_1_0_1 +33342,2,35.0,0.0,2,111,400.0,2400.0,0.0,31,37,0.0,0.0,682.0802173488245,2800.0,0.0,4556.4097150554935,20,0,0,0,0,0,0,0,0,2,15.0,1,,2,133368,2,1,1,0,1,,290.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,426.733612688737,400.0,50848.106071289505,1,1,1,2,90.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.055065964424995,24213.38384347119,7,4,7,7_1,7_3,7_0_1 +33343,2,57.0,0.0,1,111,3700.0,0.0,0.0,0,54,0.0,0.0,6309.242010476626,4062.0,0.0,0.0,30,0,0,0,0,0,0,0,0,1,6.0,1,,1,133369,2,1,2,0,1,,1024.0,,22,2.0,2.0,6.0,3.0,2.0,3,3,787.621098651265,3700.0,22738.95235483211,0,1,0,1,120.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.17863619821239524,11369.476177416054,2,1,2_0,2_1_0,2_4_0,2_1_0_0 +33344,2,57.0,0.0,2,111,650.0,0.0,0.0,0,63,0.0,0.0,1108.3803531918397,690.0,55.423569015860835,0.0,71,2,2,2,1,1,2,2,2,2,20.0,1,,2,133370,2,2,2,0,1,,170.0,,12,1.0,1.0,4.0,1.0,1.0,1,1,1561.44521228494,650.0,19258.310359114017,0,1,0,1,100.0,6,5,8,0,0,1,2,0,0,1,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.035828688349778134,19258.310359114017,5,3,5,5_1,5_2,5_0_1 +33345,2,27.0,0.0,1,112,600.0,0.0,0.0,55,67,0.0,794.5963662061343,1023.1203260232367,1260.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,35.0,1,,1,133371,2,2,2,0,1,,150.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,189.093822215928,600.0,41249.060956118265,1,1,1,2,86.0,7,0,3,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.030546149919398604,22916.144975621257,6,3,6,6_1,6_0,6_1_0 +33346,2,80.0,0.0,2,111,900.0,0.0,0.0,68,63,0.0,0.0,1534.680489034855,900.0,0.0,0.0,71,2,2,2,2,2,2,1,2,0,,2,,2,133372,2,1,0,0,1,,0.0,,41,0.0,2.0,2.0,2.0,1.5,2,2,2300.49151330119,900.0,19796.73239658803,5,5,0,1,48.0,9,7,9,0,0,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,0,0,0.045462048077950235,13197.821597725355,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +33347,2,87.0,0.0,2,111,800.0,,,86,72,0.0,0.0,,976.0,243.8637036697877,,41,0,0,0,0,0,0,0,0,0,,1,,2,133373,2,2,0,0,2,,550.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,71.17522230439882,800.0,22847.35723673433,6,5,0,1,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.042718288591853955,15231.571491156219,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +33348,2,73.0,0.0,1,111,270.0,1270.0,0.0,0,78,0.0,0.0,460.40414671045653,1540.0,0.0,2411.100140883532,70,0,0,0,0,0,0,0,0,0,,1,,1,133374,1,2,2,0,1,,220.0,376.0,11,0.0,1.0,4.0,1.0,1.0,1,1,271.129215611121,270.0,16737.2227368134,0,5,2,3,86.0,6,5,4,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.09201048610130408,16737.2227368134,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +33349,2,23.0,0.0,2,111,0.0,0.0,0.0,0,68,0.0,0.0,0.0,854.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,133375,2,2,0,0,1,,0.0,222.0,12,1.0,0.0,2.0,1.0,1.0,1,1,2617.25751262741,0.0,7395.62800207153,0,1,2,3,40.0,7,6,2,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.11547362844112669,7395.62800207153,1,1,1_0,1_0_0,1_2_0,1_0_1_0 +33350,2,61.0,0.0,2,111,300.0,900.0,0.0,56,78,0.0,0.0,511.56016301161833,1200.0,0.0,1708.65364314581,70,0,0,0,0,0,0,0,0,0,,1,,2,133376,2,2,1,0,1,,0.0,350.0,42,1.0,3.0,4.0,2.0,1.5,2,2,282.176549128274,300.0,19678.43241194218,4,5,2,3,88.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.060980467085973794,13118.954941294787,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +33351,2,71.0,0.0,5,111,700.0,,,86,72,0.0,0.0,,848.0,205.0672053586851,,71,0,0,0,0,0,0,0,0,0,,1,,3,133377,2,1,0,0,1,,600.0,,41,0.0,3.0,3.0,3.0,2.0,3,3,83.87160564859256,700.0,24242.582733599287,6,5,0,1,115.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.034979771310616366,12121.291366799644,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +33352,2,61.0,0.0,2,211,320.0,360.0,0.0,0,72,0.0,0.0,545.6641738790596,680.0,0.0,683.461457258324,50,0,0,0,0,0,0,0,0,0,,2,,2,133378,1,2,0,0,2,,0.0,309.0,11,0.0,0.0,1.0,1.0,1.0,1,1,1680.61228777612,320.0,18629.415859430224,0,5,3,4,29.0,3,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.036501412880092184,18629.415859430224,4,2,4_0,4_0_0,4_1_0,4_0_1_0 +33353,1,74.0,66.0,1,111,1040.0,300.0,0.0,0,77,0.0,0.0,1773.4085651069436,1340.0,0.0,569.5512143819367,71,2,2,2,2,1,2,1,2,0,,2,,1,133379,1,3,0,0,2,,0.0,177.0,11,0.0,2.0,2.0,1.0,1.0,1,1,978.144062303652,1040.0,10478.39357805673,0,5,2,3,39.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0.12788219778327028,10478.39357805673,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +33354,2,40.0,0.0,8,111,268.0,200.0,0.0,0,55,0.0,0.0,456.9937456237124,574.0,0.0,379.7008095879578,20,0,0,0,0,0,0,0,0,2,30.0,2,,6,133380,2,2,0,1,1,432.0,0.0,299.0,12,1.0,0.0,3.0,1.0,1.0,1,1,680.427082429119,268.0,23075.60152003649,0,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024874757847659884,23075.60152003649,6,3,6,6_0,6_4,6_0_0 +33355,2,49.0,0.0,7,111,1462.0,,,0,85,0.0,0.0,,1714.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,5,133381,2,2,0,0,2,,400.0,,31,2.0,2.0,4.0,4.0,2.3,3,3,93.52311005660736,1462.0,7124.426233979281,0,6,0,1,40.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2405807771333554,3097.576623469253,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +33356,1,58.0,265.0,1,111,210.0,240.0,0.0,0,77,0.0,0.0,358.0921141081328,570.0,166.2707070475825,455.6409715055494,71,0,0,0,0,0,0,0,0,0,,2,,1,133382,1,1,0,0,2,,0.0,400.0,11,0.0,1.0,3.0,1.0,1.0,1,1,461.85315813068,210.0,7233.032114473626,0,7,2,3,40.0,8,6,9,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.07880512501242792,7233.032114473626,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +33357,2,55.0,0.0,1,112,1500.0,0.0,0.0,0,42,0.0,635.6770929649075,2557.8008150580918,2100.0,166.2707070475825,0.0,20,2,2,2,1,1,2,2,2,2,5.0,1,,1,133383,2,3,4,0,1,,300.0,,12,1.0,2.0,6.0,1.0,1.0,1,1,1577.52251498565,1500.0,45699.62863886024,0,1,1,2,120.0,10,2,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.04595223336704065,45699.62863886024,10,5,10,10_1,10_1,10_1_0 +33358,2,75.0,0.0,5,111,240.0,900.0,0.0,75,74,0.0,0.0,409.2481304092947,1140.0,0.0,1708.65364314581,10,0,0,0,0,0,0,0,0,0,,2,,3,133384,2,2,0,0,1,,0.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1060.0368768166,240.0,121092.21330206233,5,5,0,1,106.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.00941431301743813,80728.14220137488,10,5,10,10_0,10_4,10_0_0 +33359,2,40.0,0.0,6,111,600.0,0.0,0.0,0,43,0.0,603.8932383166621,1023.1203260232367,1056.0,0.0,0.0,33,0,0,0,0,0,0,0,0,2,15.0,1,,4,133385,2,2,3,0,1,,236.0,,32,1.0,0.0,4.0,2.0,1.3,1,1,1788.44222178996,600.0,40640.03406182088,0,1,1,2,90.0,7,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02598423019020191,31261.564662939138,8,4,8,8_1,8_2,8_0_0 +33360,1,51.0,45.0,1,300,2256.0,0.0,0.0,0,54,0.0,0.0,3846.93242584737,2256.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133386,2,3,1,0,1,,270.0,,32,1.0,0.0,5.0,3.0,2.0,3,2,1151.22078987532,2256.0,22807.76070612631,0,1,1,2,100.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,1,0.09891369999309156,11403.880353063156,2,1,2_1,2_1_1,2_0_1,2_1_0_1 +33361,2,70.0,0.0,2,111,400.0,1144.0,0.0,77,74,0.0,0.0,682.0802173488245,1544.0,0.0,2171.888630843119,50,0,0,0,0,0,0,0,0,0,,1,,2,133387,2,1,1,0,1,,180.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,492.559613560189,400.0,41449.19898225587,5,5,0,1,92.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03725041829302844,27632.799321503913,7,4,7,7_1,7_3,7_0_1 +33362,2,54.0,0.0,1,111,1673.0,0.0,0.0,42,37,0.0,0.0,2852.8005090614583,1673.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,20.0,1,,1,133388,2,1,1,0,1,,328.0,,43,3.0,2.0,4.0,4.0,2.5,4,4,1467.95811494302,1673.0,68618.3454326221,1,1,1,2,98.0,9,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.02438123492270382,27447.33817304884,7,4,7,7_1,7_3,7_1_0 +33363,2,59.0,0.0,1,111,204.0,408.0,0.0,0,56,0.0,0.0,347.86091084790047,612.0,0.0,774.589651559434,42,0,0,0,0,0,0,0,0,0,,2,,1,133389,2,1,0,0,1,,0.0,,12,1.0,1.0,2.0,1.0,1.0,1,1,1469.58255070429,204.0,10246.883086541216,0,1,0,1,67.0,8,7,5,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.059725478941379966,10246.883086541216,2,1,2_0,2_0_0,2_3_0,2_1_0_0 +33364,2,55.0,0.0,6,112,2300.0,0.0,0.0,78,75,0.0,397.2981831030672,3921.9612497557405,2720.0,166.2707070475825,0.0,33,0,0,0,0,0,0,0,0,0,,1,,4,133390,1,2,2,0,1,,350.0,,41,0.0,3.0,9.0,2.0,1.5,2,2,275.94718421794,2300.0,32435.262466927714,7,5,0,1,110.0,6,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0838593491504322,21623.508311285143,6,3,6,6_1,6_0,6_0_0 +33365,2,65.0,0.0,6,112,790.0,0.0,0.0,0,77,0.0,662.163638505112,1347.1084292639284,1470.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,4,133391,2,1,2,0,2,,330.0,,11,0.0,0.0,5.0,1.0,1.0,1,1,758.825280366119,790.0,23939.09931652024,0,5,0,1,99.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06140581901448402,23939.09931652024,6,3,6,6_1,6_0,6_0_0 +33366,2,34.0,0.0,2,111,1424.0,0.0,0.0,56,45,0.0,0.0,2428.2055737618152,1499.0,103.91919190473907,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,133392,2,1,0,0,1,,123.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,2248.49475268487,1424.0,42791.91517271426,1,1,1,2,123.0,6,4,4,0,0,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.035029981573617884,20377.102463197265,5,3,5,5_0,5_2,5_0_1 +33367,2,43.0,0.0,9,221,600.0,,,0,54,0.0,0.0,,688.0,121.93185183489385,,50,0,0,0,0,0,0,0,0,2,20.0,1,2006.0,6,133393,2,1,0,0,2,,600.0,,22,2.0,1.0,4.0,2.0,1.5,2,2,118.78702872288379,600.0,19846.17008142369,0,1,0,1,70.0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03466663830740714,13230.78005428246,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +33368,2,61.0,0.0,2,112,800.0,2200.0,0.0,75,74,0.0,0.0,1364.160434697649,3000.0,0.0,4176.708905467536,31,0,0,0,0,0,0,0,0,0,,1,,2,133394,2,2,1,0,1,,300.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,239.455659716571,800.0,51819.143476455116,5,5,0,1,170.0,6,0,3,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05789366243313342,34546.09565097008,9,5,9,9_1,9_0,9_0_1 +33369,2,52.0,0.0,2,300,1264.0,,,0,63,0.0,0.0,,1586.0,446.15973057767974,,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,133395,2,2,0,0,2,,1364.0,,22,6.0,0.0,7.0,9.0,4.6,7,7,90.62560918026547,1264.0,46092.20882852292,0,1,0,1,90.0,0,1,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.034409286087815925,10020.045397504982,2,1,2_0,2_1_0,2_1_0,2_0_1_0 +33370,1,46.0,254.0,5,211,0.0,0.0,0.0,0,85,0.0,0.0,0.0,1798.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,3,133396,2,1,0,0,1,,309.0,300.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1205.22822965394,0.0,9963.833954798534,0,7,2,3,50.0,4,4,5,0,0,0,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.18045262578207577,9963.833954798534,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +33371,2,32.0,0.0,7,111,629.0,0.0,0.0,0,47,0.0,0.0,1072.5711417810264,629.0,0.0,0.0,31,2,1,2,2,1,2,2,2,0,,2,,5,133397,1,2,0,0,1,,0.0,,12,1.0,0.0,1.0,1.0,1.0,1,1,1187.01181815436,629.0,32265.851983457163,0,1,1,2,29.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.01949429385352945,32265.851983457163,8,4,8,8_0,8_4,8_0_0 +33372,2,73.0,0.0,2,111,1200.0,0.0,0.0,72,72,1054.6828510366015,0.0,2046.2406520464733,2350.0,207.83838380947813,0.0,12,0,0,0,0,0,0,0,0,0,,1,,2,133398,1,2,2,0,2,,0.0,,41,0.0,2.0,8.0,2.0,1.5,2,2,1207.30522345022,1200.0,16763.60210530207,5,5,0,1,120.0,6,4,7,1,0,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.14018466826152662,11175.734736868048,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +33373,2,67.0,0.0,2,111,620.0,0.0,0.0,0,77,0.0,0.0,1057.224336890678,620.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133399,2,2,0,1,1,,0.0,,11,0.0,3.0,4.0,1.0,1.0,1,1,1894.23678983714,620.0,20919.315864535143,0,5,0,1,83.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02963768050613434,20919.315864535143,5,3,5,5_0,5_3,5_0_1 +33374,1,41.0,62.0,5,111,250.0,320.0,0.0,0,53,0.0,0.0,426.3001358430153,570.0,0.0,607.5212953407324,41,0,0,0,0,0,0,0,0,2,20.0,2,,3,133400,1,1,0,0,1,,0.0,450.0,32,1.0,0.0,4.0,2.0,1.3,1,1,1107.66521150197,250.0,22965.46008656277,0,1,2,3,71.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.024819881589636016,17665.738528125206,4,2,4_1,4_0_1,4_4_1,4_0_0_1 +33375,1,61.0,270.0,7,112,624.0,,,0,75,0.0,0.0,,690.0,91.44888887617039,,60,0,0,0,0,0,0,0,0,0,,2,,5,133401,2,2,0,0,2,,288.0,425.0,11,0.0,4.0,4.0,1.0,1.0,1,1,82.300911089169,624.0,14346.989247311829,0,5,2,3,83.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04809371416579852,14346.989247311829,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +33376,2,51.0,0.0,8,111,770.0,0.0,0.0,0,33,0.0,0.0,1313.0044183964872,770.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,133402,2,1,0,0,1,,247.0,489.0,12,1.0,1.0,2.0,1.0,1.0,1,1,1614.90212034071,770.0,42170.96547396151,0,1,2,3,57.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.018259008095876703,42170.96547396151,9,5,9,9_0,9_2,9_0_0 +33377,2,49.0,0.0,8,111,800.0,,,0,85,0.0,0.0,,1040.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,1,2000.0,6,133403,1,3,0,0,2,,600.0,,31,1.0,3.0,4.0,4.0,2.1,2,2,124.06589004560149,800.0,11295.877322406912,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09206898856249247,5378.989201146148,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +33378,0,65.0,0.0,1,300,615.0,0.0,0.0,71,71,0.0,66.2163638505112,1048.6983341738176,804.0,192.59690233011642,0.0,50,0,0,0,0,0,0,0,0,0,,1,,1,133404,2,2,4,0,2,,73.0,,41,0.0,1.0,8.0,2.0,1.5,2,2,1031.5943591803,615.0,40045.128353837026,5,5,0,1,250.0,0,0,5,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.02007734855775441,26696.752235891352,7,4,7,7_1,7_0,7_1_0 +33379,2,47.0,0.0,7,112,720.0,,,68,67,0.0,0.0,,870.0,207.83838380947813,,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,133405,2,1,0,0,2,,400.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,98.12766660238684,720.0,15777.211682510308,1,1,1,2,120.0,8,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05514282355509187,7888.605841255154,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +33380,1,51.0,358.0,7,111,620.0,,,0,52,0.0,0.0,,860.0,332.541414095165,,71,0,0,0,0,0,0,0,0,0,,2,,5,133406,2,1,0,0,2,,260.0,449.0,32,2.0,0.0,3.0,3.0,1.8,3,2,128.29378420100886,620.0,10200.26844085045,0,4,2,3,54.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.08431150660269263,5666.815800472472,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +33381,2,84.0,0.0,1,111,148.0,611.0,0.0,0,78,0.0,0.0,252.36968041906505,759.0,0.0,1159.9859732912112,70,2,2,1,2,1,2,2,2,0,,1,,1,133407,2,2,2,0,1,,126.0,,11,0.0,0.0,6.0,1.0,1.0,1,1,324.108531043742,148.0,9255.992515448163,0,5,0,1,100.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0.08200093061151857,9255.992515448163,1,1,1_0,1_1_0,1_3_0,1_1_0_0 +33382,2,50.0,0.0,7,111,240.0,,,0,63,0.0,0.0,,284.0,60.965925917446924,,71,0,0,0,0,0,0,0,0,0,,1,,5,133408,2,1,0,0,2,,109.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,134.04321901454819,240.0,10309.91,0,4,0,1,76.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027546312237449213,10309.91,2,1,2_0,2_1_0,2_2_0,2_0_0_0 +33383,2,48.0,0.0,9,111,1560.0,,,55,38,0.0,0.0,,1620.0,83.13535352379125,,31,0,0,0,0,0,0,0,0,2,40.0,1,2009.0,6,133409,2,1,0,0,2,,220.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,3,2,174.42745658901907,1560.0,7360.912316435862,1,1,1,2,139.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.2200814152320185,2831.120121706101,1,1,1_0,1_1_0,1_3_0,1_0_0_0 +33384,1,33.0,364.0,2,111,0.0,0.0,0.0,0,85,0.0,0.0,0.0,871.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,8,,2,133410,2,1,0,1,1,,0.0,464.0,31,1.0,0.0,4.0,5.0,2.6,3,3,412.323582089575,0.0,4602.062983725958,0,6,2,3,80.0,8,6,9,0,0,0,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.18926294643947145,1770.0242245099837,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33385,2,41.0,0.0,9,112,0.0,0.0,3000.0,85,46,0.0,1072.7050943782813,1890.9548712442313,3810.0,0.0,3590.196442694042,71,0,0,0,0,0,0,0,0,0,,1,2010.0,6,133411,2,1,1,0,1,,600.0,,42,1.0,0.0,7.0,4.0,2.3,3,2,382.873841146194,0.0,429206.9591775227,6,1,1,2,188.0,9,1,3,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008876836497015326,186611.72138153162,10,5,10,10_1,10_1,10_0_0 +33386,2,77.0,0.0,2,111,1630.0,0.0,0.0,77,75,0.0,980.0021849875657,2779.4768856964597,2370.0,0.0,0.0,44,0,0,0,0,0,0,0,0,0,,1,,2,133412,2,2,3,0,1,,319.0,,41,1.0,0.0,4.0,3.0,2.0,3,3,611.704862837311,1630.0,47125.426287438706,5,5,0,1,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.05029132225869592,23562.713143719353,6,3,6,6_1,6_4,6_0_1 +33387,1,22.0,350.0,7,111,700.0,,,0,56,0.0,0.0,,770.0,96.99124577775646,,50,0,0,0,0,0,0,0,0,2,60.0,2,,5,133413,2,1,0,0,2,,400.0,567.0,32,1.0,0.0,2.0,2.0,1.3,1,1,149.7938034180444,700.0,14398.693641618498,0,1,2,3,50.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.05347707362662155,11075.918185860382,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +33388,2,59.0,0.0,8,111,402.0,,,0,63,0.0,0.0,,444.0,58.19474746665388,,50,0,0,0,0,0,0,0,0,2,15.0,2,2000.0,6,133414,2,1,0,0,1,,390.0,327.0,12,1.0,2.0,2.0,1.0,1.0,1,1,92.68435573452592,402.0,18236.16979786109,0,1,2,3,31.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024347217914809968,18236.16979786109,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +33389,2,50.0,0.0,2,111,350.0,0.0,0.0,0,47,0.0,0.0,596.8201901802214,350.0,0.0,0.0,42,0,0,0,0,0,0,0,0,0,,2,,2,133415,1,1,0,1,1,,166.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,2305.14107579271,350.0,36757.303767634985,0,4,0,1,110.0,9,7,2,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.009521917119181548,36757.303767634985,9,5,9,9_0,9_3,9_0_1 +33390,2,46.0,0.0,1,111,0.0,0.0,0.0,0,46,0.0,0.0,0.0,1060.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,5.0,2,,1,133416,2,1,0,0,1,,169.0,407.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1932.60178201893,0.0,18122.497315556295,0,1,2,3,60.0,7,6,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05849083498498297,18122.497315556295,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +33391,2,53.0,0.0,2,111,550.0,816.0,0.0,64,56,0.0,27.8108728172147,937.8602988546337,1447.0,83.13535352379125,1549.179303118868,70,0,0,0,0,0,0,0,0,0,,1,,2,133417,2,1,2,0,1,,350.0,313.0,43,2.0,4.0,4.0,3.0,2.0,3,3,200.966093952158,550.0,37124.26274520183,4,1,2,3,108.0,8,7,5,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.038977205013640825,18562.131372600914,4,2,4_0,4_1_0,4_3_0,4_0_1_0 +33392,1,49.0,96.0,1,221,360.0,0.0,0.0,0,22,0.0,0.0,613.872195613942,400.0,55.423569015860835,0.0,50,0,0,0,0,0,0,0,0,0,,2,,1,133418,2,1,0,1,1,,168.0,223.0,12,1.0,1.0,3.0,1.0,1.0,1,1,3030.2111165545,360.0,7899.588593398569,0,4,2,3,58.0,1,1,4,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.050635548328968306,7899.588593398569,1,1,1_1,1_0_1,1_1_1,1_1_0_1 +33393,2,54.0,0.0,6,111,400.0,0.0,0.0,0,52,0.0,0.0,682.0802173488245,400.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,4,133419,2,1,0,1,1,1080.0,0.0,609.0,32,3.0,0.0,4.0,3.0,2.0,3,3,653.28283895785,400.0,48016.5592896751,0,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.008330459448101506,24008.27964483755,6,3,6,6_0,6_4,6_0_0 +33394,2,42.0,0.0,7,211,360.0,0.0,0.0,85,68,170.85862186792946,0.0,613.872195613942,702.0,249.40606057137379,0.0,71,0,0,0,0,0,0,0,0,0,,1,,5,133420,2,1,2,0,1,,0.0,,42,1.0,2.0,3.0,3.0,1.8,2,2,955.923940769231,360.0,10886.604512897451,6,4,0,1,70.0,1,3,9,1,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.06448291560222792,6048.113618276361,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +33395,2,32.0,0.0,2,111,660.0,0.0,0.0,34,37,0.0,0.0,1125.4323586255605,673.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,133421,2,1,0,1,1,,649.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,883.322780560488,660.0,56328.001095758285,1,1,1,2,65.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.011947876489632426,31293.333942087935,8,4,8,8_0,8_4,8_0_1 +33396,2,66.0,0.0,6,111,1300.0,0.0,0.0,0,78,0.0,0.0,2216.7607063836795,1390.0,124.70303028568689,0.0,60,0,0,0,0,0,0,0,0,0,,1,,4,133422,2,1,2,0,1,,258.0,,21,0.0,3.0,7.0,2.0,1.5,2,2,1556.0172663113,1300.0,47544.9542146148,0,5,0,1,160.0,6,5,2,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.029235489295575536,31696.636143076536,8,4,8,8_1,8_2,8_0_0 +33397,2,61.0,0.0,2,111,440.0,90.0,0.0,52,43,0.0,0.0,750.2882390837069,677.0,0.0,170.865364314581,33,0,0,0,0,0,0,0,0,3,35.0,2,,2,133423,2,1,0,1,2,,0.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1134.7772923698,440.0,99808.32561394411,4,1,0,1,90.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.006783001276052036,66538.8837426294,10,5,10,10_0,10_4,10_0_1 +33398,2,57.0,0.0,5,111,400.0,1200.0,0.0,78,56,0.0,0.0,682.0802173488245,1600.0,0.0,2278.2048575277468,71,0,0,0,0,0,0,0,0,0,,2,,3,133424,2,1,0,0,1,,0.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,719.756164893238,400.0,19419.411072258492,5,1,1,2,98.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0823917879922565,12946.274048172329,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +33399,2,40.0,0.0,6,111,500.0,1100.0,0.0,42,42,0.0,0.0,852.6002716860306,1600.0,0.0,2088.354452733768,20,0,0,0,0,0,0,0,0,2,5.0,1,,4,133425,2,1,3,0,1,,450.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,356.060484579071,500.0,53934.11789978726,1,1,1,2,120.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02966582308758425,25682.91328561298,7,4,7,7_1,7_3,7_0_0 +33400,2,54.0,0.0,6,111,750.0,0.0,0.0,52,62,0.0,993.245457757668,1278.9004075290459,1650.0,207.83838380947813,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,4,133426,2,1,2,0,1,,680.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1139.17432020744,750.0,32237.331252861746,1,1,0,1,86.0,4,4,8,0,0,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0511828968427257,21491.554168574497,6,3,6,6_1,6_2,6_0_0 +33401,1,48.0,370.0,2,111,335.0,198.0,0.0,0,56,0.0,0.0,571.2421820296405,533.0,0.0,375.90380149207823,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,133427,2,2,0,1,1,750.0,258.0,349.0,32,1.0,2.0,4.0,2.0,1.5,2,1,2162.89228359711,335.0,11555.532729637358,0,1,2,3,71.0,5,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04612509111180778,7703.688486424905,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33402,2,29.0,0.0,9,111,720.0,0.0,0.0,37,38,0.0,0.0,1227.744391227884,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,20.0,1,2005.0,6,133428,2,2,1,0,1,,0.0,655.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1373.5836109038,720.0,57045.92871331761,1,1,2,3,65.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.012621409033733778,38030.61914221174,9,5,9,9_1,9_3,9_0_0 +33403,1,54.0,86.0,1,111,580.0,0.0,0.0,0,67,0.0,0.0,989.0163151557955,580.0,0.0,0.0,12,0,0,0,0,0,0,0,0,0,,2,,1,133429,2,2,0,0,1,,0.0,273.0,12,1.0,0.0,1.0,1.0,1.0,1,1,989.157527325572,580.0,11513.289130123452,0,4,2,3,26.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.05037656862820233,11513.289130123452,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +33404,2,70.0,0.0,2,111,500.0,1200.0,0.0,75,74,0.0,0.0,852.6002716860306,1700.0,0.0,2278.2048575277468,41,0,0,0,0,0,0,0,0,0,,2,,2,133430,2,1,0,1,1,,0.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1631.54990566898,500.0,43393.81193343645,5,5,0,1,76.0,8,6,9,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.039176092725103286,28929.2079556243,8,4,8,8_0,8_2,8_0_1 +33405,2,34.0,0.0,1,400,0.0,0.0,0.0,46,11,4746.072829664707,0.0,0.0,6339.0,83.13535352379125,0.0,31,0,0,0,0,0,0,0,0,2,5.0,1,,1,133431,2,3,1,0,1,,287.0,,43,2.0,0.0,11.0,3.0,2.0,3,3,1159.20978791965,0.0,80154.4712238305,1,1,0,1,350.0,0,0,2,1,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.07908479593481954,40077.23561191525,9,5,9,9_1,9_0,9_1_0 +33406,2,60.0,0.0,1,111,690.0,825.0,0.0,0,21,0.0,0.0,1176.5883749267223,1515.0,0.0,1566.2658395503258,30,2,2,2,1,1,2,2,2,0,,1,,1,133432,2,3,3,0,1,,300.0,,32,2.0,3.0,4.0,2.0,1.5,2,2,203.707891527071,690.0,16302.02936372389,0,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.09293321501255884,10868.019575815926,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +33407,2,58.0,0.0,2,111,360.0,80.0,0.0,0,55,0.0,0.0,613.872195613942,440.0,0.0,151.8803238351831,50,0,0,0,0,0,0,0,0,3,20.0,2,,2,133433,2,2,0,1,1,50.0,0.0,396.0,12,1.0,0.0,2.0,1.0,1.0,1,1,322.334912876681,360.0,29392.50806755537,0,1,2,3,40.0,9,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.014969801113559604,29392.50806755537,8,4,8,8_0,8_3,8_0_1 +33408,2,74.0,0.0,6,221,983.0,0.0,0.0,56,78,0.0,0.0,1676.212134134736,1091.0,149.64363634282427,0.0,70,0,0,0,0,0,0,0,0,0,,1,,4,133434,2,1,1,0,1,,2362.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,556.254230329609,983.0,52464.811540981,4,5,0,1,100.0,1,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020794890288470865,34976.541027320665,9,5,9,9_1,9_1,9_0_0 +33409,0,71.0,0.0,2,211,300.0,0.0,0.0,72,77,2531.2388424878436,0.0,511.56016301161833,2760.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133435,2,2,2,0,1,,400.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,2088.17281846575,300.0,29618.602516828178,5,5,0,1,70.0,1,2,2,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09318468008177873,19745.735011218785,5,3,5,5_1,5_1,5_0_1 +33410,2,76.0,0.0,2,111,282.0,,,0,77,0.0,0.0,,424.0,196.75367000630598,,71,0,0,0,0,0,0,0,0,0,,1,,2,133436,2,2,0,0,2,,55.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,85.52545077886504,282.0,15334.643865373693,0,5,0,1,70.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.027649810698076323,15334.643865373693,3,2,3_0,3_1_0,3_2_0,3_0_1_0 +33411,2,66.0,0.0,1,111,220.0,794.0,0.0,0,75,0.0,0.0,375.14411954185346,1014.0,0.0,1507.4122140641925,41,0,0,0,0,0,0,0,0,0,,1,,1,133437,2,1,2,0,1,,220.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,1227.86839398021,220.0,30510.85609827722,0,5,0,1,60.0,5,4,7,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.033234072381772825,30510.85609827722,8,4,8,8_1,8_2,8_1_0 +33413,2,37.0,0.0,6,111,0.0,0.0,0.0,46,33,0.0,0.0,0.0,1666.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,70.0,1,,4,133439,2,1,2,0,1,,495.0,,43,2.0,0.0,7.0,5.0,2.4,2,2,1184.1788552385,0.0,121345.03630871874,4,1,1,2,158.0,8,6,8,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01372944498332394,50560.431795299475,10,5,10,10_1,10_2,10_0_0 +33414,2,60.0,0.0,7,111,1250.0,1220.0,0.0,22,56,0.0,0.0,2131.5006792150766,2470.0,0.0,2316.1749384865425,70,0,0,0,0,0,0,0,0,2,5.0,1,,5,133440,2,1,1,0,1,,500.0,,43,2.0,3.0,5.0,2.0,1.5,2,2,509.592609951504,1250.0,21578.40889825094,1,1,0,1,105.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.11446627096774538,14385.605932167293,3,2,3_0,3_1_0,3_3_0,3_0_0_0 +33415,1,33.0,170.0,7,111,0.0,,,0,68,0.0,0.0,,698.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,133441,2,1,0,0,2,,212.0,167.0,32,1.0,0.0,4.0,3.0,1.6,1,1,118.86838326492999,0.0,13312.633569937778,0,4,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.05243139881624958,8320.39598121111,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +33416,1,48.0,123.0,1,111,190.0,0.0,0.0,0,62,0.0,0.0,323.9881032406916,190.0,0.0,0.0,60,2,1,2,2,1,2,2,2,3,60.0,2,,1,133442,1,2,0,1,2,550.0,0.0,470.0,12,1.0,2.0,2.0,1.0,1.0,1,1,239.093770489541,190.0,13192.193516463567,0,1,2,3,30.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,1,0,0,0,0,1,0.01440245701087421,13192.193516463567,2,1,2_1,2_0_1,2_4_1,2_1_0_1 +33417,2,57.0,0.0,5,111,1086.0,1032.0,0.0,78,54,0.0,158.91927324122688,1851.8477901020585,2238.0,0.0,1959.2561774738622,50,0,0,0,0,0,0,0,0,0,,1,,3,133443,2,1,2,0,2,,377.0,,42,1.0,2.0,4.0,2.0,1.5,2,2,1522.6483692851,1086.0,44742.77843980114,5,4,0,1,136.0,6,5,9,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05001924507238864,29828.51895986743,8,4,8,8_1,8_2,8_0_0 +33418,1,29.0,60.0,5,111,480.0,0.0,0.0,46,47,1.0546828510366015,0.0,818.4962608185893,481.0,0.0,0.0,12,2,1,2,2,2,2,2,1,2,10.0,2,,3,133444,2,1,0,1,1,,143.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,774.28444111231,480.0,54368.84707970851,1,1,1,2,53.0,10,8,1,1,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,1,0.008846978110365677,30204.915044282505,8,4,8,8_0,8_4,8_0_0 +33419,1,36.0,265.0,7,111,530.0,0.0,0.0,55,21,0.0,0.0,903.7562879871924,530.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,5,133445,2,2,0,1,1,550.0,0.0,375.0,43,2.0,3.0,3.0,2.0,1.5,2,2,253.073880927577,530.0,7570.913520013072,4,4,2,3,76.0,8,7,4,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.07000476212005191,5047.2756800087145,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +33420,1,29.0,160.0,1,111,0.0,0.0,0.0,56,34,0.0,0.0,0.0,585.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,25.0,2,,1,133446,1,3,0,0,2,,0.0,650.0,43,2.0,0.0,3.0,2.0,1.5,2,2,1965.10654432119,0.0,38982.0,4,1,3,4,55.0,9,7,9,0,0,0,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.015006926273664768,25988.0,7,4,7,7_0,7_3,7_1_0 +33421,2,88.0,0.0,2,400,594.0,,,77,78,0.0,0.0,,594.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,2,133447,1,1,0,0,1,,81.0,,41,0.0,9.0,7.0,3.0,2.0,3,3,101.8229604339089,594.0,19940.29489910045,5,5,0,1,110.0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02978892754624189,9970.147449550224,2,1,2_0,2_1_0,2_0_0,2_0_1_0 +33422,2,58.0,0.0,2,221,410.0,1400.0,0.0,0,56,0.0,0.0,699.1322227825451,1810.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,2,10.0,1,,2,133448,2,1,1,0,1,,140.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,3142.79256152038,410.0,13330.505676021447,0,1,0,1,120.0,1,2,7,0,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.13577879519272695,13330.505676021447,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +33423,2,56.0,0.0,1,111,610.0,1143.0,0.0,0,37,0.0,0.0,1040.1723314569574,1753.0,0.0,2169.9901267951786,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,133449,1,1,1,0,2,,250.0,,22,2.0,0.0,5.0,2.0,1.5,2,2,402.611677217471,610.0,55628.49519033158,0,1,1,2,80.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03151262664938449,37085.663460221054,9,5,9,9_1,9_3,9_1_0 +33424,2,52.0,0.0,6,111,680.0,1475.0,0.0,52,56,0.0,0.0,1159.5363694930015,2155.0,0.0,2800.2934707111885,70,0,0,0,0,0,0,0,0,0,,1,,4,133450,1,2,2,0,1,,400.0,,43,2.0,1.0,4.0,3.0,2.0,3,3,356.381738229628,680.0,20371.864447228625,1,1,0,1,80.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.10578315036320422,10185.932223614313,2,1,2_0,2_1_0,2_3_0,2_0_0_0 +33425,1,29.0,305.0,2,111,199.0,200.0,0.0,0,85,0.0,0.0,339.33490813104015,399.0,0.0,379.7008095879578,50,0,0,0,0,0,0,0,0,0,,2,,2,133451,2,2,0,1,1,,574.0,306.0,31,0.0,0.0,3.0,4.0,1.9,1,1,354.848088819317,199.0,12213.406896630018,0,6,2,3,65.0,7,5,7,0,1,1,2,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03266901720191554,6428.108892963168,1,1,1_1,1_0_1,1_2_1,1_0_1_1 +33426,2,65.0,0.0,8,300,0.0,0.0,0.0,74,75,0.0,0.0,0.0,2627.0,0.0,0.0,31,0,0,0,0,0,0,0,0,0,,1,2003.0,6,133452,2,1,1,0,1,,444.0,,41,0.0,1.0,6.0,2.0,1.5,2,2,1892.96579145743,0.0,190710.15394620673,6,5,0,1,144.0,0,1,9,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.01377483026279237,127140.10263080448,10,5,10,10_1,10_1,10_0_0 +33428,2,56.0,0.0,2,111,248.0,0.0,0.0,0,46,0.0,0.0,422.8897347562712,248.0,0.0,0.0,30,0,0,0,0,0,0,0,0,3,20.0,2,,2,133454,2,2,0,1,1,,0.0,,32,2.0,1.0,3.0,2.0,1.5,2,2,1505.06860855685,248.0,43685.650592360376,0,1,1,2,70.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005676921291939499,29123.767061573584,8,4,8,8_0,8_3,8_0_1 +33429,2,88.0,0.0,1,111,398.0,53.0,0.0,0,78,2109.365702073203,0.0,678.6698162620803,2451.0,0.0,100.62071454080882,50,0,0,0,0,0,0,0,0,0,,1,,1,133455,2,1,3,0,1,,180.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,1102.52372145517,398.0,34506.82654736658,0,5,0,1,100.0,8,7,5,1,1,1,3,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.07102942360218431,34506.82654736658,9,5,9,9_1,9_3,9_1_0 +33430,2,60.0,0.0,7,111,300.0,,,0,75,0.0,0.0,,380.0,110.84713803172167,,41,0,0,0,0,0,0,0,0,0,,1,,5,133456,2,1,0,0,2,,229.0,,31,0.0,0.0,4.0,2.0,1.5,2,2,108.19511663960547,300.0,45153.74332274398,0,5,0,1,100.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.008415692078592156,30102.49554849599,8,4,8,8_1,8_2,8_0_0 +33431,0,25.0,0.0,2,111,0.0,,,0,53,0.0,0.0,,654.0,0.0,,50,0,0,0,0,0,0,0,0,2,15.0,1,,2,133457,2,3,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,134.91729537181268,0.0,22307.334366109626,0,1,5,0,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.02931771180126247,22307.334366109626,6,3,6,6_1,6_3,6_0_1 +33432,2,56.0,0.0,7,111,700.0,,,63,64,0.0,0.0,,994.0,407.36323226657714,,71,0,0,0,0,0,0,0,0,0,,1,,5,133458,1,2,0,0,2,,350.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,117.03146048210002,700.0,46394.14653017317,4,4,0,1,120.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02142511662227769,23197.073265086587,6,3,6,6_1,6_2,6_0_0 +33433,2,48.0,0.0,8,111,480.0,,,0,85,0.0,0.0,,526.0,63.73710436823996,,71,0,0,0,0,0,0,0,0,0,,1,1999.0,6,133459,2,1,0,0,2,,385.0,,31,0.0,0.0,4.0,2.0,1.5,2,1,106.80587694970559,480.0,5822.169495002925,0,6,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.09034432962686115,3881.44633000195,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +33434,2,74.0,0.0,2,111,1180.0,0.0,0.0,75,75,0.0,66.2163638505112,2012.1366411790323,1240.0,13.855892253965209,0.0,41,0,0,0,0,0,0,0,0,0,,1,,2,133460,2,1,2,0,1,,224.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1431.76828101535,1180.0,66700.35945326279,5,5,0,1,98.0,8,7,5,0,0,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.018590604460968056,44466.90630217519,10,5,10,10_1,10_3,10_0_1 +33435,2,81.0,0.0,6,111,270.0,1400.0,0.0,0,78,0.0,0.0,460.40414671045653,1670.0,0.0,2657.9056671157045,71,0,0,0,0,0,0,0,0,0,,2,,4,133461,2,1,0,1,2,,0.0,,11,0.0,4.0,3.0,1.0,1.0,1,1,2037.49015739325,270.0,15792.592165052898,0,5,0,1,63.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.10574578147439966,15792.592165052898,3,2,3_0,3_0_0,3_3_0,3_0_0_0 +33436,2,53.0,0.0,1,111,0.0,0.0,0.0,0,55,0.0,0.0,0.0,304.0,0.0,0.0,71,0,0,0,0,0,0,0,0,3,20.0,2,,1,133462,1,3,0,0,1,,88.0,470.0,12,1.0,1.0,1.0,1.0,1.0,1,1,437.90377713895,0.0,16258.25437221269,0,1,2,3,30.0,9,7,8,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018698194347332425,16258.25437221269,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +33437,2,55.0,0.0,9,111,812.0,,,56,63,0.0,0.0,,858.0,63.73710436823996,,31,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,133463,2,1,0,0,1,,420.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,144.5131357967152,812.0,42026.0,1,1,1,2,104.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020415932993860943,28017.333333333332,7,4,7,7_1,7_2,7_0_0 +33438,1,24.0,207.0,7,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,189.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,90.0,2,,5,133464,1,1,0,1,1,,0.0,632.0,12,1.0,0.0,1.0,1.0,1.0,1,1,228.05554055686,0.0,5345.145771963342,0,1,3,4,19.0,10,8,1,0,0,0,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03535918533622664,5345.145771963342,1,1,1_1,1_0_1,1_4_1,1_0_0_1 +33439,2,58.0,0.0,1,221,227.0,0.0,0.0,31,11,0.0,264.8654554020448,387.0805233454579,1765.0,1853.918383580545,0.0,44,0,0,0,0,0,0,0,0,0,,1,,1,133465,2,3,3,0,2,,96.0,,43,2.0,4.0,7.0,2.0,1.5,2,2,968.936491914121,227.0,163870.70359789417,1,1,0,1,168.0,1,3,5,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.010770686652636556,109247.13573192945,10,5,10,10_1,10_1,10_1_0 +33440,2,64.0,0.0,2,111,290.0,,,0,75,0.0,0.0,,379.0,123.31744106029036,,41,0,0,0,0,0,0,0,0,0,,1,,2,133466,2,2,0,0,2,,200.0,,11,0.0,2.0,3.0,1.0,1.0,1,1,139.20949376660874,290.0,34782.63086545475,0,5,0,1,38.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.010896243054932727,34782.63086545475,9,5,9,9_1,9_2,9_0_1 +33441,2,54.0,0.0,8,111,1800.0,0.0,0.0,85,38,0.0,0.0,3069.36097806971,1800.0,0.0,0.0,12,0,0,0,0,0,0,0,0,2,1.0,2,2003.0,6,133467,2,1,0,0,1,,0.0,,42,2.0,0.0,4.0,6.0,3.3,5,4,1822.44503865125,1800.0,134648.0475555014,6,1,0,1,122.0,9,7,9,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.013368184928623246,40802.438653182246,9,5,9,9_0,9_3,9_0_0 +33442,1,66.0,209.0,9,211,0.0,0.0,1400.0,0,78,0.0,0.0,882.4456065806413,1400.0,0.0,1675.4250065905533,70,0,0,0,0,0,0,0,0,0,,1,2006.0,6,133468,2,1,1,0,1,,800.0,430.0,11,0.0,8.0,3.0,1.0,1.0,1,1,2147.68691619758,0.0,9460.394590716838,0,5,2,3,70.0,1,2,2,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.14798537064973719,9460.394590716838,1,1,1_1,1_1_1,1_1_1,1_0_0_1 +33443,2,70.0,0.0,2,111,348.0,,,72,75,0.0,0.0,,609.0,361.63878782849196,,71,0,0,0,0,0,0,0,0,0,,1,,2,133469,2,1,0,0,2,,780.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,161.95914736874684,348.0,84449.0,5,5,0,1,150.0,5,4,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.007211453066347737,56299.333333333336,10,5,10,10_1,10_2,10_0_1 +33444,2,61.0,0.0,1,112,800.0,2500.0,0.0,74,75,0.0,0.0,1364.160434697649,3360.0,83.13535352379125,4746.260119849472,60,0,0,0,0,0,0,0,0,0,,1,,1,133470,2,1,3,0,1,,280.0,,41,0.0,3.0,6.0,2.0,1.5,2,2,519.009497558041,800.0,69694.84202732024,5,5,0,1,170.0,10,0,1,0,1,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04821016738488175,46463.22801821349,10,5,10,10_1,10_0,10_1_0 +33445,2,53.0,0.0,9,400,1125.0,0.0,0.0,72,38,0.0,0.0,1918.3506112935688,1165.0,55.423569015860835,0.0,41,0,0,0,0,0,0,0,0,0,,1,2006.0,6,133471,2,2,1,0,1,,275.0,,42,1.0,3.0,4.0,2.0,1.5,2,2,1381.50527758596,1125.0,40993.15417838546,5,1,0,1,107.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02841937936589109,27328.769452256976,7,4,7,7_1,7_0,7_0_0 +33446,1,29.0,459.0,1,400,700.0,0.0,0.0,85,63,0.0,264.8654554020448,1193.6403803604428,1020.0,166.2707070475825,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133472,2,1,2,0,1,,220.0,459.0,42,1.0,0.0,3.0,5.0,2.4,2,2,1318.93311846967,700.0,13684.867251224963,6,4,2,3,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0.07453488450234674,5702.0280213437345,1,1,1_1,1_1_1,1_0_1,1_1_0_1 +33447,2,33.0,0.0,2,221,864.0,,,0,42,0.0,0.0,,1128.0,365.79555550468154,,20,0,0,0,0,0,0,0,0,0,,1,,2,133473,2,2,0,0,2,,1800.0,,32,1.0,3.0,3.0,4.0,2.3,3,3,66.4413384119763,864.0,33763.13581654732,0,1,0,1,50.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03340921904082046,14679.624268064053,3,2,3_0,3_1_0,3_1_0,3_0_1_0 +33448,2,71.0,0.0,1,111,200.0,650.0,0.0,0,75,0.0,0.0,341.04010867441224,850.0,0.0,1234.027631160863,31,0,0,0,0,0,0,0,0,0,,2,,1,133474,2,1,0,0,2,,0.0,,11,0.0,0.0,3.0,1.0,1.0,1,1,744.402919243164,200.0,34515.101199772835,0,5,0,1,57.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024626901572161533,34515.101199772835,9,5,9,9_0,9_4,9_1_0 +33449,1,27.0,347.0,8,111,1000.0,,,54,81,0.0,0.0,,1063.0,87.29212119998083,,71,0,0,0,0,0,0,0,0,0,,8,1999.0,6,133475,2,1,0,0,2,,800.0,384.0,43,2.0,0.0,2.0,3.0,1.8,2,2,97.5175712164025,1000.0,9339.867980412619,4,4,2,3,64.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.11381317190235472,5188.815544673677,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +33450,2,44.0,0.0,1,111,145.0,638.0,0.0,38,47,0.0,0.0,247.25407878894887,783.0,0.0,1211.2455825855855,31,0,0,0,0,0,0,0,0,2,10.0,2,,1,133476,2,2,0,0,2,,80.0,,43,2.0,1.0,4.0,2.0,1.5,2,2,1533.8788618654,145.0,58669.43799043636,1,1,1,2,72.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.013345960466293131,39112.958660290904,9,5,9,9_0,9_2,9_1_0 +33451,2,71.0,0.0,2,111,300.0,600.0,0.0,77,75,0.0,0.0,511.56016301161833,900.0,0.0,1139.1024287638734,44,0,0,0,0,0,0,0,0,0,,2,,2,133477,2,1,0,1,1,,0.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,978.60482330335,300.0,31048.086500832076,5,5,0,1,85.0,8,7,4,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02898729362841347,20698.72433388805,5,3,5,5_0,5_3,5_0_1 +33452,2,54.0,0.0,5,111,564.0,,,63,52,0.0,264.8654554020448,,1016.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,1,,3,133478,2,2,0,0,2,,320.0,,43,3.0,2.0,5.0,3.0,2.0,3,3,86.22031642348182,564.0,71726.44256454194,4,1,0,1,130.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014164929469153136,35863.22128227097,9,5,9,9_1,9_2,9_0_0 +33453,2,35.0,0.0,2,111,158.0,180.0,0.0,85,46,0.0,0.0,269.4216858527857,338.0,0.0,341.730728629162,20,0,0,0,0,0,0,0,0,2,10.0,2,,2,133479,2,1,0,1,1,398.0,94.0,248.0,42,1.0,0.0,2.0,2.0,1.5,2,2,329.406161836837,158.0,24919.27166191476,6,1,2,3,45.0,9,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.013563799319086061,16612.84777460984,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +33454,2,59.0,0.0,6,112,1400.0,0.0,0.0,55,47,0.0,0.0,2387.2807607208856,1428.0,38.79649831110259,0.0,50,0,0,0,0,0,0,0,0,2,40.0,1,,4,133480,2,1,2,0,1,,216.0,,43,3.0,0.0,4.0,3.0,2.0,3,3,946.794365744705,1400.0,68278.88050537407,1,1,0,1,110.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.020914226909265237,34139.44025268703,9,5,9,9_1,9_0,9_0_0 +33455,2,63.0,0.0,8,111,950.0,0.0,0.0,0,43,0.0,0.0,1619.9405162034582,950.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,2000.0,6,133481,2,1,0,1,1,,700.0,536.0,32,2.0,4.0,2.0,3.0,2.0,3,3,338.51101432364,950.0,12440.333337868215,0,4,2,3,47.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0763645132488703,6220.166668934107,1,1,1_0,1_0_0,1_4_0,1_0_0_0 +33456,1,29.0,327.0,5,111,0.0,0.0,0.0,84,21,0.0,0.0,0.0,803.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,133482,2,1,0,1,2,485.0,0.0,480.0,42,1.0,0.0,3.0,2.0,1.5,2,2,334.078873206577,0.0,11297.267754449027,3,1,2,3,63.0,9,7,5,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.07107913324297081,7531.511836299352,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +33457,2,60.0,0.0,7,111,500.0,1100.0,0.0,46,77,0.0,0.0,852.6002716860306,1600.0,0.0,2088.354452733768,50,0,0,0,0,0,0,0,0,0,,1,,5,133483,1,3,3,0,1,,400.0,572.0,42,1.0,2.0,5.0,2.0,1.5,2,2,827.238681807721,500.0,26971.403622889437,1,5,2,3,90.0,8,6,2,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05932208877116617,17980.935748592958,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +33458,2,59.0,0.0,1,300,2100.0,0.0,0.0,11,63,0.0,529.7309108040896,3580.9211410813286,2620.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,133484,2,2,3,0,1,,345.0,,43,3.0,4.0,5.0,3.0,2.0,3,3,912.597922907326,2100.0,47084.05485070943,1,1,0,1,70.0,0,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055645164977980305,23542.027425354714,6,3,6,6_1,6_0,6_1_0 +33459,2,50.0,0.0,7,112,1600.0,0.0,0.0,65,63,0.0,0.0,2728.320869395298,1680.0,110.84713803172167,0.0,71,0,0,0,0,0,0,0,0,2,15.0,1,,5,133485,2,1,1,0,1,,250.0,,43,2.0,2.0,8.0,5.0,2.5999999999999996,4,2,467.211491143134,1600.0,43525.387377601146,1,1,0,1,150.0,4,0,2,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03859816307722409,16740.533606769673,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +33460,2,67.0,0.0,2,300,0.0,0.0,0.0,74,33,0.0,0.0,0.0,3098.0,0.0,0.0,70,0,0,0,0,0,0,0,0,2,5.0,1,,2,133486,1,2,2,0,2,,299.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,1794.71979696285,0.0,321043.4466450771,5,5,0,1,120.0,0,0,5,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.009649784265569917,214028.9644300514,10,5,10,10_1,10_0,10_0_1 +33461,1,41.0,394.0,7,111,336.0,,,0,52,0.0,0.0,,462.0,174.58424239996165,,43,0,0,0,0,0,0,0,0,2,45.0,2,,5,133487,1,1,0,0,1,,390.0,388.0,32,1.0,0.0,3.0,3.0,1.8,2,1,145.4207304925513,336.0,22715.987795330308,0,1,2,3,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.020338098618584953,12619.993219627948,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +33462,2,61.0,0.0,6,111,1008.0,1060.0,0.0,75,72,0.0,370.8116375628627,1718.8421477190377,2348.0,0.0,2012.4142908161764,41,0,0,0,0,0,0,0,0,0,,1,,4,133488,2,1,2,0,1,,748.0,,41,0.0,3.0,8.0,2.0,1.5,2,2,657.669894245353,1008.0,37334.199680831174,5,5,0,1,150.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.06289139770165086,24889.46645388745,7,4,7,7_1,7_2,7_0_0 +33463,2,53.0,0.0,6,111,630.0,,,54,46,0.0,0.0,,716.0,119.1606733841008,,71,0,0,0,0,0,0,0,0,2,10.0,1,,4,133489,2,2,0,0,2,,510.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,153.27821850934802,630.0,76340.4067082841,1,1,0,1,74.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009379043561242948,38170.20335414205,9,5,9,9_1,9_2,9_0_0 +33464,2,64.0,0.0,1,400,377.0,0.0,0.0,77,75,155.03837910238042,264.8654554020448,642.8606048512671,725.0,1.385589225396521,0.0,12,0,0,0,0,0,0,0,0,0,,1,,1,133490,2,2,1,0,1,,223.0,,41,0.0,0.0,6.0,2.0,1.5,2,2,1412.4925775599,377.0,14456.75214374042,5,5,0,1,150.0,0,0,7,1,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.050149576667807456,9637.834762493612,1,1,1_0,1_1_0,1_0_0,1_1_0_0 +33465,2,59.0,0.0,7,111,600.0,0.0,0.0,0,37,0.0,0.0,1023.1203260232367,600.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,5,133491,2,1,0,0,1,,0.0,810.0,12,1.0,2.0,3.0,1.0,1.0,1,1,659.202323349713,600.0,52472.0,0,1,2,3,80.0,9,7,3,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.011434669919195,52472.0,10,5,10,10_0,10_3,10_0_0 +33466,1,36.0,31.0,2,111,0.0,0.0,0.0,0,63,0.0,0.0,0.0,1449.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133492,2,1,0,0,1,,177.0,353.0,12,1.0,1.0,3.0,1.0,1.0,1,1,325.409763928784,0.0,11212.602935247633,0,4,2,3,55.0,9,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.1292295828513612,11212.602935247633,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +33467,2,35.0,0.0,5,111,575.0,0.0,0.0,47,37,0.0,529.7309108040896,980.4903124389351,975.0,0.0,0.0,12,0,0,0,0,0,0,0,0,3,45.0,1,,3,133493,2,1,2,0,1,,256.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,760.127799443106,575.0,77472.65142515903,4,1,1,2,90.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.012585086247395058,43040.36190286613,9,5,9,9_1,9_4,9_0_0 +33468,2,60.0,0.0,2,111,1200.0,400.0,0.0,63,52,0.0,0.0,2046.2406520464733,1600.0,0.0,759.4016191759156,60,0,0,0,0,0,0,0,0,1,15.0,2,,2,133494,2,2,0,0,1,,0.0,373.0,43,2.0,3.0,3.0,2.0,1.5,2,2,1136.57188816045,1200.0,42941.54458313877,1,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03725995456223642,28627.69638875918,8,4,8,8_0,8_4,8_0_1 +33469,0,47.0,0.0,7,120,0.0,,,0,63,0.0,0.0,,142.0,0.0,,71,0,0,0,0,0,0,0,0,0,,1,,5,133495,1,2,0,0,2,,343.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,126.40446821182822,0.0,8361.917454887756,0,4,5,0,32.0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.016981750987866705,8361.917454887756,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +33470,2,35.0,0.0,2,221,600.0,,,0,67,0.0,0.0,,642.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,2,133496,2,1,0,0,2,,400.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,66.4413384119763,600.0,9394.325583114869,0,4,0,1,90.0,1,2,0,0,0,0,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0683391260309218,9394.325583114869,1,1,1_0,1_1_0,1_1_0,1_0_1_0 +33471,2,41.0,0.0,9,112,1800.0,0.0,0.0,56,37,0.0,437.0280014133739,3069.36097806971,2130.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,42.0,1,2011.0,6,133497,2,1,1,0,1,,520.0,,43,2.0,0.0,5.0,4.0,2.5,4,3,1154.41359056103,1800.0,64367.62813529436,4,1,1,2,98.0,10,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.033091168056137654,25747.051254117745,7,4,7,7_1,7_1,7_0_0 +33472,2,58.0,0.0,2,111,800.0,1000.0,0.0,0,56,0.0,0.0,1364.160434697649,1800.0,0.0,1898.504047939789,50,0,0,0,0,0,0,0,0,0,,1,,2,133498,2,1,2,0,1,,350.0,,22,3.0,2.0,6.0,3.0,2.0,3,3,312.017206960332,800.0,63130.6690117522,0,4,0,1,120.0,7,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02851229090673691,31565.3345058761,8,4,8,8_1,8_2,8_0_1 +33473,2,86.0,0.0,2,111,0.0,,,0,77,0.0,0.0,,233.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,,2,133499,2,1,0,0,2,,0.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,27.01024882418155,0.0,12649.951219512195,0,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.01841904335888695,12649.951219512195,2,1,2_0,2_1_0,2_2_0,2_0_1_0 +33474,2,56.0,0.0,5,112,2484.0,0.0,0.0,0,56,0.0,0.0,4235.7181497362,2534.0,69.27946126982604,0.0,41,0,0,0,0,0,0,0,0,2,3.0,1,,3,133500,1,1,2,0,1,,648.0,,22,2.0,1.0,5.0,2.0,1.5,2,2,820.100261180413,2484.0,19958.580959798313,0,1,0,1,102.0,8,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.12696293414367105,13305.720639865542,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +33475,2,25.0,0.0,5,111,1100.0,0.0,0.0,63,52,0.0,0.0,1875.7205977092674,1100.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,10.0,1,,3,133501,2,1,2,0,1,,360.0,600.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1511.94322439275,1100.0,32762.718797710306,1,1,2,3,80.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.033574747162829356,18201.510443172392,4,2,4_0,4_1_0,4_3_0,4_0_0_0 +33476,2,50.0,0.0,2,111,0.0,0.0,1300.0,0,63,0.0,0.0,819.4137775391669,1300.0,0.0,1555.751791834085,50,0,0,0,0,0,0,0,0,0,,2,,2,133502,1,2,0,0,1,,0.0,325.0,12,1.0,2.0,3.0,1.0,1.0,1,1,631.378002169456,0.0,14553.136372277648,0,1,2,3,72.0,6,5,4,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.08932782369004508,14553.136372277648,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +33477,2,76.0,0.0,2,111,250.0,920.0,0.0,77,78,0.0,0.0,426.3001358430153,1170.0,0.0,1746.6237241046058,70,0,0,0,0,0,0,0,0,0,,2,,2,133503,2,2,0,0,1,,0.0,390.0,41,1.0,3.0,4.0,3.0,2.0,3,3,1662.35128753376,250.0,21181.75657770326,5,5,2,3,68.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.055236212148315755,10590.87828885163,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +33478,2,53.0,0.0,6,112,2000.0,0.0,0.0,52,67,0.0,0.0,3410.4010867441225,2132.0,182.89777775234077,0.0,70,0,0,0,0,0,0,0,0,2,10.0,1,,4,133504,2,1,2,0,1,,330.0,,43,2.0,2.0,5.0,2.0,1.5,2,2,1294.80070627311,2000.0,45677.36059795301,1,1,0,1,108.0,9,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0466752012833146,30451.573731968674,8,4,8,8_1,8_0,8_0_0 +33479,2,51.0,0.0,1,111,0.0,0.0,0.0,34,34,0.0,0.0,0.0,4306.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,1,133505,2,2,0,0,1,,521.0,750.0,43,2.0,1.0,4.0,5.0,2.8,4,2,2233.43622141771,0.0,234837.69521273606,1,1,2,3,150.0,6,4,8,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018336068219794343,83870.60543312003,10,5,10,10_0,10_2,10_1_0 +33480,2,46.0,0.0,9,120,570.0,0.0,0.0,54,53,1054.6828510366015,370.8116375628627,971.9643097220749,1946.0,133.01656563806603,0.0,42,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,133506,2,1,1,0,1,,223.0,,43,2.0,0.0,4.0,3.0,1.8,2,2,1295.06448565384,570.0,46420.60173581357,1,1,1,2,140.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04192104210701469,25789.223186563097,7,4,7,7_1,7_0,7_0_0 +33481,2,83.0,0.0,5,112,340.0,0.0,0.0,77,75,2528.074793934734,0.0,579.7681847465008,3137.0,554.2356901586083,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,133507,2,1,4,0,2,,319.0,,41,0.0,1.0,4.0,2.0,1.5,2,2,1357.25741136049,340.0,20506.573860215314,5,5,0,1,90.0,6,0,8,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.15297533470893818,13671.049240143542,3,2,3_0,3_1_0,3_0_0,3_0_0_0 +33482,2,61.0,0.0,8,111,1500.0,,,74,75,0.0,0.0,,1615.0,159.34276092059991,,33,0,0,0,0,0,0,0,0,0,,1,2000.0,6,133508,2,1,0,0,2,,700.0,,41,0.0,4.0,5.0,2.0,1.5,2,2,118.02169210843613,1500.0,58367.25035985314,5,5,0,1,120.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.027669626203787195,38911.500239902096,9,5,9,9_1,9_3,9_0_0 +33483,2,38.0,0.0,6,111,244.0,,,67,52,0.0,0.0,,695.0,0.0,,41,0,0,0,0,0,0,0,0,2,30.0,1,,4,133509,2,3,0,0,2,,194.0,400.0,43,2.0,0.0,3.0,4.0,2.1,2,2,122.44689800558227,244.0,41567.088560847835,1,1,2,3,40.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01671995860337023,19793.851695641824,5,3,5,5_1,5_2,5_0_0 +33484,2,41.0,0.0,1,111,385.0,360.0,0.0,0,46,1375.3064377517285,0.0,656.5022091982436,2049.0,0.0,683.461457258324,42,0,0,0,0,0,0,0,0,3,35.0,2,,1,133510,2,1,0,1,1,1304.0,0.0,271.0,32,1.0,0.0,3.0,3.0,1.8,2,1,692.200316016373,385.0,35209.270487014735,0,1,2,3,68.0,10,8,1,1,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05819490070820059,19560.705826119298,5,3,5,5_0,5_4,5_1_0 +33486,2,76.0,0.0,8,112,1016.0,0.0,0.0,77,78,0.0,0.0,1732.4837520660142,1064.0,66.50828281903301,0.0,71,2,2,2,2,1,2,2,2,0,,1,2003.0,6,133512,2,2,1,0,1,,207.0,538.0,41,0.0,1.0,3.0,2.0,1.5,2,2,2589.76119819484,1016.0,26322.0,5,5,2,3,60.0,7,2,2,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0.04042246029936935,17548.0,4,2,4_0,4_1_0,4_1_0,4_0_0_0 +33487,2,56.0,0.0,2,111,334.0,1743.0,0.0,52,67,0.0,0.0,569.5369814862685,2077.0,0.0,3309.092555559052,60,0,0,0,0,0,0,0,0,2,25.0,1,,2,133513,2,1,2,0,1,,271.0,,43,2.0,2.0,6.0,2.0,1.5,2,2,289.368007304536,334.0,52914.228099088345,1,1,0,1,125.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.039252202566586895,35276.152066058894,9,5,9,9_1,9_3,9_0_1 +33488,2,42.0,0.0,9,112,2106.0,0.0,0.0,85,38,0.0,0.0,3591.152344341561,2176.0,96.99124577775646,0.0,12,0,0,0,0,0,0,0,0,2,45.0,1,2007.0,6,133514,2,1,1,0,1,,441.0,,42,1.0,0.0,7.0,5.0,2.4,2,2,1576.74282540486,2106.0,123086.29743122788,6,1,1,2,120.0,8,2,8,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.017678653476564266,51285.957263011616,10,5,10,10_1,10_1,10_0_0 +33489,0,43.0,0.0,2,111,120.0,,,52,63,0.0,0.0,,498.0,523.7527271998849,,71,0,0,0,0,0,0,0,0,0,,1,,2,133515,2,1,0,0,2,,200.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,128.65996350619938,120.0,8792.533801406244,4,4,5,0,75.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.056638963380539045,5861.689200937496,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +33490,1,42.0,303.0,2,111,850.0,1400.0,0.0,0,62,0.0,0.0,1449.420461866252,2250.0,0.0,2657.9056671157045,50,2,2,2,1,1,1,2,2,0,,1,,2,133516,2,2,5,0,2,,410.0,643.0,32,1.0,1.0,6.0,4.0,2.1,2,2,1096.42176637937,850.0,20588.69350648037,0,4,2,3,110.0,6,4,5,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,1,1,1,0,0,1,0.10928328207381416,9804.139764990652,2,1,2_1,2_1_1,2_2_1,2_0_1_1 +33491,2,56.0,0.0,5,300,2400.0,0.0,0.0,55,63,0.0,423.78472864327165,4092.4813040929466,2860.0,193.98249155551292,0.0,50,0,0,0,0,0,0,0,0,2,5.0,1,,3,133517,1,3,3,0,1,,440.0,650.0,43,4.0,2.0,4.0,4.0,2.5,4,4,1501.62524708347,2400.0,51815.67450255105,1,1,2,3,110.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05519565319677915,20726.269801020422,5,3,5,5_1,5_0,5_0_0 +33492,2,57.0,0.0,6,112,400.0,,,0,68,0.0,0.0,,450.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,1,,4,133518,1,3,0,0,2,,300.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,137.48896988431528,400.0,7872.607817054656,0,1,0,1,70.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05716022066095457,7872.607817054656,1,1,1_0,1_1_0,1_1_0,1_0_0_0 +33493,2,86.0,0.0,1,111,296.0,737.0,0.0,75,75,0.0,0.0,504.7393608381301,1033.0,0.0,1399.1974833316244,33,0,0,0,0,0,0,0,0,0,,2,,1,133519,2,2,0,0,1,,0.0,,41,0.0,4.0,3.0,2.0,1.5,2,2,1081.18667454371,296.0,54972.12953618134,5,5,0,1,59.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.018791340424971242,36648.08635745422,9,5,9,9_0,9_4,9_1_0 +33494,2,40.0,0.0,8,120,2200.0,0.0,0.0,55,46,0.0,0.0,3751.441195418535,2260.0,83.13535352379125,0.0,31,2,2,1,2,1,2,2,2,2,35.0,1,2001.0,6,133520,2,1,2,0,1,,120.0,,43,2.0,0.0,6.0,4.0,2.1,2,2,266.096275721101,2200.0,51037.59517711306,1,1,1,2,120.0,0,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0.04428108323202224,24303.616751006215,7,4,7,7_1,7_0,7_0_0 +33495,1,27.0,193.0,1,111,0.0,0.0,0.0,0,56,0.0,0.0,0.0,944.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,8.0,3,,1,133521,1,3,0,0,1,,0.0,395.0,12,1.0,0.0,1.0,1.0,1.0,1,1,435.120676230773,0.0,15205.928065732787,0,1,2,3,25.0,9,7,3,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0.062081051279424676,15205.928065732787,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +33496,0,79.0,0.0,2,111,391.0,1374.0,0.0,0,78,0.0,0.0,666.7334124584759,1765.0,0.0,2608.54456186927,70,0,0,0,0,0,0,0,0,0,,1,,2,133522,1,1,2,0,2,,290.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,499.934054305253,391.0,20958.692344222163,0,5,0,1,85.0,6,5,9,0,1,1,2,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08421326917786312,20958.692344222163,5,3,5,5_1,5_2,5_0_1 +33497,2,35.0,0.0,9,112,489.0,0.0,0.0,54,22,0.0,0.0,833.843065708938,2339.0,2563.3400669835637,0.0,30,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,133523,2,1,1,0,1,,210.0,,43,2.0,0.0,5.0,4.0,2.1,2,2,709.004956923025,489.0,44359.80303646413,1,1,1,2,105.0,8,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.052727916714989075,21123.715731649587,5,3,5,5_1,5_0,5_0_0 +33498,1,47.0,248.0,5,111,160.0,,,0,81,0.0,0.0,,202.0,58.19474746665388,,71,0,0,0,0,0,0,0,0,0,,1,,3,133524,2,3,0,0,2,,160.0,254.0,12,1.0,0.0,2.0,1.0,1.0,1,1,158.16844046787142,160.0,5241.0,0,4,2,3,45.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.038542262926922345,5241.0,1,1,1_1,1_1_1,1_2_1,1_0_0_1 +33499,2,40.0,0.0,9,112,704.0,1545.0,0.0,43,38,0.0,0.0,1200.4611825339312,2249.0,0.0,2933.188754066974,12,0,0,0,0,0,0,0,0,2,20.0,1,2010.0,6,133525,2,1,1,0,1,,479.0,,43,2.0,0.0,8.0,6.0,2.6999999999999997,2,2,264.789540349929,704.0,78399.81137705498,1,1,1,2,160.0,9,0,3,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02868629350629034,29036.967176687034,8,4,8,8_1,8_0,8_0_0 +33500,2,50.0,0.0,1,112,660.0,0.0,0.0,0,55,0.0,0.0,1125.4323586255605,800.0,193.98249155551292,0.0,70,2,2,2,2,1,2,2,2,0,,1,,1,133526,1,2,2,0,1,,140.0,,22,1.0,3.0,2.0,2.0,1.5,2,2,1244.17019301418,660.0,27589.204146085256,0,1,0,1,50.0,9,1,9,0,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.0289968494837324,18392.802764056836,4,2,4_0,4_1_0,4_1_0,4_1_0_0 +33501,2,76.0,0.0,1,111,800.0,0.0,0.0,0,77,0.0,0.0,1364.160434697649,800.0,0.0,0.0,41,0,0,0,0,0,0,0,0,0,,2,,1,133527,2,1,0,0,1,,0.0,850.0,11,0.0,2.0,2.0,1.0,1.0,1,1,1252.29631999744,800.0,38134.75935572829,0,5,2,3,38.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.020978236483347065,38134.75935572829,9,5,9,9_0,9_4,9_1_0 +33502,2,64.0,0.0,5,112,800.0,0.0,0.0,74,74,2109.365702073203,264.8654554020448,1364.160434697649,3030.0,41.567676761895626,0.0,30,0,0,0,0,0,0,0,0,0,,1,,3,133528,2,1,2,0,1,,600.0,,41,0.0,2.0,7.0,2.0,1.5,2,2,186.256538154025,800.0,85276.80963458345,5,5,0,1,150.0,6,0,3,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03553134800637762,56851.206423055635,10,5,10,10_1,10_0,10_0_0 +33503,1,47.0,333.0,9,111,500.0,800.0,0.0,0,68,0.0,0.0,852.6002716860306,1300.0,0.0,1518.8032383518312,71,2,2,2,2,1,2,2,2,0,,2,2006.0,6,133529,1,3,0,0,1,,440.0,292.0,32,2.0,0.0,4.0,3.0,1.8,2,2,2046.80564158175,500.0,19073.0109052431,0,1,2,3,104.0,8,6,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1,0.06815913892455411,10596.1171695795,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +33504,2,52.0,0.0,5,111,2200.0,0.0,0.0,46,46,0.0,0.0,3751.441195418535,2200.0,0.0,0.0,41,0,0,0,0,0,0,0,0,2,25.0,1,,3,133530,2,1,2,0,1,,450.0,,43,2.0,0.0,4.0,3.0,2.0,3,3,533.034577865919,2200.0,114063.61923049117,1,1,0,1,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.019287481975777093,57031.809615245584,10,5,10,10_1,10_4,10_0_0 +33505,2,55.0,0.0,1,111,0.0,0.0,3000.0,31,35,0.0,331.081819252556,1890.9548712442313,3250.0,0.0,3590.196442694042,10,2,2,2,2,1,2,2,2,2,5.0,1,,1,133531,2,3,2,0,1,,1000.0,,43,2.0,1.0,10.0,7.0,3.8,6,5,1165.66298882823,0.0,46329.24719775652,1,1,0,1,220.0,8,6,5,0,1,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,0,1,0,0,0,0.07015007142523524,12191.90715730435,2,1,2_0,2_1_0,2_2_0,2_1_0_0 +33506,2,30.0,0.0,9,111,500.0,,,46,37,0.0,0.0,,719.0,0.0,,10,0,0,0,0,0,0,0,0,2,60.0,2,2006.0,6,133532,2,1,0,0,2,,220.0,,43,2.0,0.0,3.0,3.0,1.8,2,2,120.43042584294439,500.0,95407.30399817036,1,1,1,2,73.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007536110652637123,53004.057776761314,10,5,10,10_0,10_2,10_0_0 +33507,2,53.0,0.0,1,221,0.0,0.0,3190.0,0,85,0.0,0.0,2010.7153464230328,3190.0,0.0,3817.575550731332,50,0,0,0,0,0,0,0,0,0,,1,,1,133533,2,1,3,0,1,,305.0,,11,0.0,2.0,9.0,1.0,1.0,1,1,587.787836647997,0.0,11403.077610210163,0,7,0,1,200.0,1,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.27974903872825674,11403.077610210163,2,1,2_0,2_1_0,2_1_0,2_1_0_0 +33508,2,34.0,0.0,9,112,1600.0,0.0,0.0,85,38,0.0,635.6770929649075,2728.320869395298,2200.0,166.2707070475825,0.0,43,0,0,0,0,0,0,0,0,2,45.0,1,2011.0,6,133534,2,1,1,0,1,,285.0,,42,1.0,0.0,5.0,4.0,2.1,2,2,4146.7626340903,1600.0,39467.09224616871,6,1,1,2,169.0,6,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.05574264215559398,18793.853450556526,5,3,5,5_1,5_1,5_0_0 +33509,1,25.0,420.0,2,111,500.0,130.0,0.0,0,46,1898.4291318658827,0.0,852.6002716860306,2430.0,0.0,246.80552623217258,43,0,0,0,0,0,0,0,0,0,,2,,2,133535,1,2,0,1,1,,0.0,409.0,22,2.0,1.0,4.0,4.0,2.3,3,3,234.890223323764,500.0,20130.03839750965,0,1,2,3,117.0,10,8,1,1,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.12071511996224622,8752.19060761289,1,1,1_1,1_0_1,1_4_1,1_0_1_1 +33510,1,86.0,27.0,5,111,266.0,1314.0,0.0,0,78,0.0,0.0,453.5833445369683,1580.0,0.0,2494.6343189928825,70,0,0,0,0,0,0,0,0,0,,2,2004.0,3,133536,2,1,0,0,1,,0.0,470.0,11,0.0,3.0,2.0,1.0,1.0,1,1,423.559010105999,266.0,15919.12370604678,0,5,2,3,60.0,7,5,7,0,1,1,2,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09925169432535076,15919.12370604678,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +33511,2,79.0,0.0,1,400,0.0,0.0,0.0,0,72,2109.365702073203,0.0,0.0,2593.0,37.410909085706066,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133537,2,2,2,0,1,,151.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,1046.59695711237,0.0,12276.652528099554,0,5,0,1,76.0,0,0,5,1,0,0,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.21121392774333092,12276.652528099554,2,1,2_0,2_1_0,2_0_0,2_1_0_0 +33512,2,71.0,0.0,2,300,1800.0,0.0,0.0,56,72,1265.6194212439218,0.0,3069.36097806971,3070.0,96.99124577775646,0.0,31,0,0,0,0,0,0,0,0,0,,1,,2,133538,2,3,4,0,1,,265.0,,42,1.0,0.0,6.0,2.0,1.5,2,2,1479.57089098437,1800.0,32909.70267093028,1,5,0,1,200.0,0,0,8,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.09328555869062241,21939.801780620186,6,3,6,6_1,6_0,6_0_1 +33513,2,58.0,0.0,8,111,300.0,,,77,77,0.0,0.0,,432.0,182.89777775234077,,50,0,0,0,0,0,0,0,0,0,,1,1999.0,6,133539,2,1,0,0,2,,120.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,120.36222283848763,300.0,27530.602462745792,5,5,0,1,135.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.01569162900029446,18353.73497516386,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +33514,1,42.0,275.0,7,111,1854.0,,,85,63,0.0,0.0,,2106.0,349.1684847999233,,71,0,0,0,0,0,0,0,0,0,,2,,5,133540,2,3,0,0,2,,1800.0,370.0,42,1.0,1.0,3.0,6.0,2.8999999999999995,3,2,118.44045779436705,1854.0,45229.21292957441,6,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.04656282662444767,15596.280320542903,3,2,3_1,3_0_1,3_2_1,3_0_0_1 +33515,2,55.0,0.0,9,120,1200.0,0.0,0.0,0,62,0.0,0.0,2046.2406520464733,1230.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,130.0,1,2011.0,6,133541,2,3,1,0,1,,378.0,,22,2.0,1.0,7.0,3.0,1.8,2,2,973.685852401719,1200.0,32076.40167185218,0,1,1,2,180.0,0,0,4,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03834594704802424,17820.22315102899,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +33516,2,55.0,0.0,5,111,356.0,888.0,0.0,0,54,0.0,0.0,607.0513934404538,1244.0,0.0,1685.8715945705326,42,1,2,2,2,1,2,2,2,2,5.0,2,,3,133542,2,2,0,0,1,,0.0,,32,1.0,2.0,4.0,2.0,1.5,2,2,1390.76036109981,356.0,33933.37513826302,0,1,1,2,98.0,8,7,5,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0.03666007271399522,22622.25009217535,6,3,6,6_0,6_3,6_0_0 +33517,2,55.0,0.0,5,400,480.0,,,85,62,0.0,0.0,,580.0,138.5589225396521,,60,0,0,0,0,0,0,0,0,2,25.0,1,,3,133543,2,1,0,0,2,,300.0,350.0,42,1.0,3.0,3.0,2.0,1.5,2,2,66.27848409117118,480.0,23431.97206703911,6,1,2,3,60.0,0,2,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02475250475464097,15621.314711359408,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +33518,1,25.0,367.0,5,111,0.0,0.0,0.0,67,85,0.0,0.0,0.0,555.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,3,133544,1,2,0,1,1,,0.0,321.0,42,1.0,0.0,4.0,5.0,2.4,2,2,344.460257783516,0.0,17296.41103692795,4,6,2,3,65.0,9,7,9,0,0,0,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.032087581569093804,7206.837932053313,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +33519,2,45.0,0.0,1,111,200.0,340.0,0.0,0,81,0.0,0.0,341.04010867441224,540.0,0.0,645.4913762995283,30,0,0,0,0,0,0,0,0,0,,2,,1,133545,2,2,0,1,2,,250.0,700.0,12,1.0,0.0,3.0,1.0,1.0,1,1,2016.75449477206,200.0,27436.576593401405,0,4,2,3,70.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.019681755781800852,27436.576593401405,7,4,7,7_0,7_3,7_1_0 +33520,2,79.0,0.0,2,211,1121.0,0.0,0.0,75,74,3164.0485531098047,0.0,1911.5298091200805,4241.0,166.2707070475825,0.0,10,0,0,0,0,0,0,0,0,0,,1,,2,133546,2,1,2,0,2,,178.0,,41,0.0,6.0,7.0,2.0,1.5,2,2,616.515535676092,1121.0,49792.282463852265,5,5,0,1,240.0,1,2,3,1,0,1,1,0,1,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08517384201213997,33194.85497590151,8,4,8,8_1,8_1,8_0_1 +33521,2,49.0,0.0,7,112,1400.0,0.0,0.0,35,34,0.0,476.7578197236806,2387.2807607208856,1865.0,145.4868686666347,0.0,10,2,2,2,2,1,2,2,2,2,15.0,1,,5,133547,2,2,1,0,1,,360.0,,43,2.0,0.0,6.0,3.0,2.0,3,3,655.754676535381,1400.0,60106.15820836164,1,1,0,1,140.0,8,0,3,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,0,0.031028434616214608,30053.07910418082,8,4,8,8_1,8_0,8_0_0 +33522,2,86.0,0.0,2,111,1284.0,,,0,77,0.0,0.0,,1424.0,193.98249155551292,,71,0,0,0,0,0,0,0,0,0,,1,,2,133548,1,1,0,0,2,,1000.0,,21,1.0,1.0,4.0,2.0,1.5,2,2,87.91435662885756,1284.0,22220.98932934627,0,5,0,1,159.0,8,7,0,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.0640835553671495,14813.992886230846,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +33523,1,43.0,320.0,5,111,365.0,,,0,63,0.0,0.0,,415.0,69.27946126982604,,71,0,0,0,0,0,0,0,0,0,,2,,3,133549,2,2,0,0,2,,0.0,600.0,32,1.0,0.0,4.0,2.0,1.5,2,2,108.8281745966775,365.0,12918.641006378115,0,4,2,3,85.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.03212412201833836,8612.42733758541,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +33524,2,77.0,0.0,2,212,600.0,0.0,0.0,77,78,1459.6810658346565,0.0,1023.1203260232367,2104.0,166.2707070475825,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,133550,2,1,4,0,1,,110.0,,41,0.0,1.0,3.0,2.0,1.5,2,2,829.476681894298,600.0,25036.239946205977,5,5,0,1,80.0,2,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.08403817843736726,16690.826630803986,4,2,4_0,4_1_0,4_0_0,4_0_1_0 +33525,2,80.0,0.0,5,111,600.0,,,0,72,0.0,0.0,,700.0,138.5589225396521,,71,0,0,0,0,0,0,0,0,0,,1,,3,133551,2,1,0,0,2,,0.0,500.0,21,1.0,4.0,4.0,2.0,1.5,2,2,155.30166192416274,600.0,27047.906835531146,0,5,2,3,70.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02588000632568187,18031.937890354096,4,2,4_0,4_1_0,4_2_0,4_0_0_0 +33526,0,58.0,0.0,1,112,0.0,0.0,0.0,53,53,0.0,0.0,0.0,505.0,83.13535352379125,0.0,20,1,2,2,1,2,2,2,2,0,,5,,1,133552,1,2,3,1,2,,0.0,,43,2.0,3.0,4.0,2.0,1.5,2,2,1828.39553207713,0.0,52691.62106491232,1,1,5,0,70.0,8,0,4,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0.00958406649470655,35127.74737660821,9,5,9,9_1,9_0,9_1_0 +33527,2,45.0,0.0,9,112,1520.0,0.0,0.0,56,48,0.0,0.0,2591.904825925533,1520.0,0.0,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2005.0,6,133553,2,1,1,0,1,,300.0,,43,2.0,1.0,5.0,3.0,2.0,3,2,1429.0475191995,1520.0,42552.924345812,1,1,1,2,170.0,9,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03572022424704628,21276.462172906,6,3,6,6_1,6_0,6_0_0 +33528,2,62.0,0.0,2,111,4000.0,0.0,0.0,22,75,0.0,0.0,6820.802173488245,4120.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133554,1,1,3,0,1,,760.0,,42,1.0,3.0,9.0,3.0,2.0,3,3,567.601034207604,4000.0,55336.71000796469,1,5,0,1,200.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0.07445328786996919,27668.355003982346,7,4,7,7_1,7_4,7_0_1 +33529,2,45.0,0.0,2,111,700.0,900.0,0.0,56,64,0.0,0.0,1193.6403803604428,1600.0,0.0,1708.65364314581,60,0,0,0,0,0,0,0,0,2,6.0,2,,2,133555,2,1,0,0,1,,0.0,480.0,43,2.0,1.0,4.0,4.0,2.5,4,4,467.199118234774,700.0,41923.32097352864,1,1,2,3,100.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.038164915441939284,16769.328389411454,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +33530,0,51.0,0.0,6,111,660.0,0.0,0.0,85,56,0.0,0.0,1125.4323586255605,660.0,0.0,0.0,71,0,0,0,0,0,0,0,0,1,5.0,2,,4,133556,1,1,0,1,1,789.0,590.0,,42,2.0,1.0,4.0,4.0,2.3,3,3,309.891781185577,660.0,26554.108308542505,6,1,5,0,75.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.024854911049213307,11545.264481975004,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +33531,2,53.0,0.0,1,112,160.0,0.0,0.0,0,47,0.0,0.0,272.8320869395298,190.0,41.567676761895626,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,1,133557,2,2,1,0,1,,230.0,,12,1.0,1.0,7.0,1.0,1.0,1,1,2072.27564653086,160.0,36632.54327676804,0,1,0,1,160.0,6,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.005186645070327288,36632.54327676804,9,5,9,9_1,9_0,9_1_0 +33532,2,51.0,0.0,1,111,0.0,0.0,0.0,77,22,0.0,0.0,0.0,781.0,0.0,0.0,41,0,0,0,0,0,0,0,0,1,15.0,2,,1,133558,2,1,0,0,1,,0.0,720.0,42,2.0,2.0,4.0,3.0,2.0,3,3,1525.49995526828,0.0,17442.96376023977,5,1,2,3,98.0,8,7,4,0,0,0,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04477450109598029,8721.481880119885,1,1,1_0,1_0_0,1_3_0,1_1_0_0 +33533,2,60.0,0.0,1,111,1400.0,0.0,0.0,78,78,0.0,0.0,2387.2807607208856,1470.0,96.99124577775646,0.0,71,0,0,0,0,0,0,0,0,0,,1,,1,133559,2,1,1,0,1,,277.0,,41,0.0,3.0,3.0,2.0,1.5,2,2,1581.02916230568,1400.0,53320.0,6,5,1,2,55.0,8,7,2,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.027569392348087023,35546.666666666664,9,5,9,9_1,9_3,9_1_0 +33534,2,78.0,0.0,2,112,385.0,0.0,0.0,0,74,1160.1511361402618,0.0,656.5022091982436,1535.0,69.27946126982604,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133560,2,1,2,0,1,,425.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,854.914365418461,385.0,26386.324722932914,0,5,0,1,80.0,8,0,5,1,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05817407373395579,26386.324722932914,7,4,7,7_1,7_0,7_0_1 +33535,0,24.0,0.0,1,111,720.0,0.0,0.0,0,85,0.0,0.0,1227.744391227884,720.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,2,,1,133561,1,1,0,0,1,,0.0,,11,0.0,0.0,1.0,1.0,1.0,1,1,1319.60112040367,720.0,14117.486641313712,0,7,5,0,23.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.05100057951483919,14117.486641313712,3,2,3_0,3_0_0,3_4_0,3_1_0_0 +33536,1,63.0,108.0,2,211,285.0,154.0,0.0,0,75,0.0,0.0,485.98215486103743,439.0,0.0,292.3696233827275,71,0,0,0,0,0,0,0,0,0,,2,,2,133562,2,1,0,1,1,848.0,200.0,270.0,11,0.0,0.0,3.0,1.0,1.0,1,1,347.442424813247,285.0,11412.508088220311,0,5,2,3,63.0,2,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.03846656638544898,11412.508088220311,2,1,2_1,2_0_1,2_1_1,2_0_1_1 +33537,2,27.0,0.0,7,111,0.0,,,0,55,0.0,0.0,,632.0,2.771178450793042,,31,0,0,0,0,0,0,0,0,2,15.0,1,,5,133563,2,2,0,0,2,,0.0,682.0,12,1.0,0.0,2.0,1.0,1.0,1,1,131.25246068627163,0.0,24104.742093110515,0,1,2,3,50.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026218907365145996,24104.742093110515,6,3,6,6_1,6_3,6_0_0 +33538,1,39.0,201.0,1,111,0.0,0.0,2000.0,55,55,0.0,0.0,1260.6365808294875,2000.0,0.0,2393.4642951293617,71,2,2,2,1,1,2,2,2,2,20.0,1,,1,133564,1,3,3,0,1,,520.0,386.0,43,2.0,0.0,3.0,4.0,2.3,3,2,252.367837162056,0.0,24032.132146765325,4,1,2,3,65.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,0,1,0,1,0.08322191255382207,10448.753107289273,2,1,2_1,2_1_1,2_3_1,2_1_0_1 +33539,2,43.0,0.0,1,111,475.0,0.0,0.0,0,37,0.0,0.0,809.9702581017291,475.0,0.0,0.0,10,0,0,0,0,0,0,0,0,3,20.0,2,,1,133565,2,1,0,1,1,,0.0,700.0,12,1.0,0.0,2.0,1.0,1.0,1,1,1118.83645472576,475.0,48284.76153017691,0,1,2,3,40.0,10,8,1,0,0,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.009837472215807372,48284.76153017691,10,5,10,10_0,10_4,10_1_0 +33540,2,66.0,0.0,5,120,714.0,839.0,0.0,77,78,0.0,0.0,1217.5131879676517,1553.0,0.0,1592.844896221483,50,0,0,0,0,0,0,0,0,0,,1,,3,133566,2,1,2,0,1,,300.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1253.05378309796,714.0,26019.982061150044,5,5,0,1,100.0,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05968489894997874,17346.65470743336,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +33541,1,51.0,140.0,7,111,900.0,,,0,55,0.0,0.0,,1080.0,249.40606057137379,,71,0,0,0,0,0,0,0,0,2,10.0,1,,5,133567,2,2,0,0,2,,160.0,400.0,31,0.0,0.0,4.0,3.0,1.8,2,1,30.193781663825128,900.0,25210.29806517327,0,7,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.042839636294977584,14005.721147318482,3,2,3_1,3_1_1,3_2_1,3_0_0_1 +33542,0,33.0,0.0,5,211,0.0,,,56,53,0.0,0.0,,890.0,0.0,,50,0,0,0,0,0,0,0,0,0,,2,,3,133568,2,2,0,0,2,,0.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,46.61523926037524,0.0,38645.947931518735,1,1,5,0,70.0,4,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.023029581305059325,18402.832348342254,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +33543,2,50.0,0.0,2,111,700.0,200.0,0.0,0,33,0.0,0.0,1193.6403803604428,900.0,0.0,379.7008095879578,20,0,0,0,0,0,0,0,0,3,15.0,2,,2,133569,2,1,0,1,1,492.0,0.0,300.0,12,1.0,1.0,2.0,1.0,1.0,1,1,401.087393721421,700.0,12239.100558996879,0,1,2,3,45.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.0735348153781134,12239.100558996879,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +33544,2,55.0,0.0,2,111,307.0,1265.0,0.0,0,68,0.0,0.0,523.4965668152228,1572.0,0.0,2401.607620643833,33,1,2,2,2,1,1,2,2,2,8.0,2,,2,133570,1,3,0,0,2,,444.0,626.0,12,1.0,3.0,3.0,1.0,1.0,1,1,392.557871492671,307.0,30816.648251203624,0,1,2,3,63.0,8,6,3,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,1,0,0,0.05101138797398583,30816.648251203624,8,4,8,8_0,8_2,8_0_1 +33545,2,38.0,0.0,2,111,432.0,500.0,0.0,67,68,0.0,0.0,736.6466347367304,932.0,0.0,949.2520239698945,71,0,0,0,0,0,0,0,0,0,,2,,2,133571,2,2,0,1,1,,0.0,350.0,43,2.0,0.0,3.0,3.0,2.0,3,3,416.744541190908,432.0,26130.70230148567,4,1,2,3,60.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03566685614672556,13065.351150742836,2,1,2_0,2_0_0,2_3_0,2_0_1_0 +33546,2,55.0,0.0,5,111,0.0,0.0,880.0,0,54,0.0,0.0,554.6800955649745,880.0,0.0,1053.1242898569192,70,2,2,2,2,1,2,2,2,1,20.0,1,,3,133572,1,3,2,0,1,,440.0,571.0,32,2.0,1.0,4.0,2.0,1.5,2,2,96.1879084784331,0.0,32207.160723796816,0,1,2,3,83.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,1,0,0,1,0,0,0.027323116357468816,21471.440482531212,6,3,6,6_1,6_3,6_0_0 +33547,2,60.0,0.0,2,111,350.0,350.0,0.0,85,68,0.0,0.0,596.8201901802214,700.0,0.0,664.4764167789261,71,0,0,0,0,0,0,0,0,2,15.0,2,,2,133573,2,2,0,1,1,303.0,0.0,322.0,42,1.0,2.0,3.0,3.0,2.0,3,3,230.845744992689,350.0,23380.311949517956,6,1,2,3,60.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.02993972028736906,11690.155974758978,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +33548,2,74.0,0.0,2,111,600.0,,,86,72,0.0,0.0,,783.0,253.56282824756335,,71,0,0,0,0,0,0,0,0,0,,1,,2,133574,2,1,0,0,2,,400.0,,41,1.0,1.0,4.0,4.0,2.3,3,3,114.65032365260424,600.0,21629.763488597295,5,5,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03620011843461808,9404.244995042303,1,1,1_0,1_1_0,1_2_0,1_0_1_0 +33549,2,69.0,0.0,2,111,250.0,66.0,0.0,0,77,0.0,0.0,426.3001358430153,316.0,0.0,125.30126716402607,60,0,0,0,0,0,0,0,0,0,,2,,2,133575,2,2,0,1,2,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1278.23192509195,250.0,25233.803304947425,0,5,0,1,39.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01252288433024458,25233.803304947425,7,4,7,7_0,7_4,7_0_1 +33550,2,60.0,0.0,9,111,903.0,769.0,0.0,75,75,0.0,476.7578197236806,1539.7960906649712,2032.0,0.0,1459.9496128656976,31,0,0,0,0,0,0,0,0,0,,1,2005.0,6,133576,2,1,1,0,1,,317.0,,41,0.0,3.0,5.0,2.0,1.5,2,2,1165.42150179275,903.0,49897.981306352194,5,5,1,2,125.0,6,4,7,0,1,1,2,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04072309032953442,33265.320870901465,8,4,8,8_1,8_2,8_0_0 +33551,2,83.0,0.0,2,112,0.0,0.0,0.0,0,78,0.0,0.0,0.0,288.0,0.0,0.0,71,2,1,2,2,1,2,2,2,0,,2,,2,133577,2,1,0,1,1,416.0,0.0,400.0,11,0.0,1.0,3.0,1.0,1.0,1,1,289.957721500466,0.0,14906.150799323526,0,5,2,3,60.0,10,4,1,0,0,0,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.019320883296918615,14906.150799323526,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +33552,2,52.0,0.0,7,400,425.0,0.0,0.0,43,46,2375.1457805344266,0.0,724.710230933126,2677.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,25.0,1,,5,133578,2,1,2,0,1,,112.0,,43,2.0,1.0,6.0,3.0,2.0,3,3,1164.15314679322,425.0,67205.04558914398,1,1,0,1,143.0,0,0,4,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.039833318711897894,33602.52279457199,9,5,9,9_1,9_0,9_0_0 +33553,2,53.0,0.0,2,111,0.0,0.0,0.0,68,65,0.0,0.0,0.0,270.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,133579,2,1,0,1,1,864.0,0.0,410.0,43,3.0,4.0,4.0,3.0,2.0,3,3,1708.24111337024,0.0,37101.752204783,1,1,2,3,80.0,8,7,2,0,0,0,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.007277284331740881,18550.8761023915,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +33554,0,59.0,0.0,7,112,400.0,,,81,21,0.0,0.0,,450.0,69.27946126982604,,20,0,0,0,0,0,0,0,0,0,,1,,5,133580,1,2,0,0,2,,300.0,,43,2.0,0.0,3.0,2.0,1.5,2,2,119.81717712883582,400.0,17356.194664922616,4,4,5,0,70.0,8,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.025927342294072293,11570.796443281744,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +33555,2,60.0,0.0,1,111,1200.0,0.0,0.0,68,63,0.0,0.0,2046.2406520464733,1421.0,306.2152188126311,0.0,71,2,2,2,2,1,2,2,2,0,,1,,1,133581,1,2,3,0,2,,446.0,237.0,43,2.0,3.0,2.0,2.0,1.5,2,2,1437.12470585021,1200.0,32916.63684645553,1,1,2,3,40.0,6,4,7,0,0,1,2,0,0,1,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.043169659361874134,21944.424564303685,6,3,6,6_1,6_2,6_1_0 +33556,2,32.0,0.0,7,111,300.0,,,56,53,0.0,0.0,,426.0,174.58424239996165,,50,0,0,0,0,0,0,0,0,2,15.0,2,,5,133582,1,1,0,0,2,,400.0,280.0,43,2.0,0.0,2.0,2.0,1.5,2,2,182.86822582045144,300.0,28850.0,1,1,2,3,34.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014766031195840554,19233.333333333332,5,3,5,5_0,5_2,5_0_0 +33557,2,52.0,0.0,2,112,290.0,185.0,0.0,56,62,0.0,0.0,494.50815757789775,475.0,0.0,351.223248868861,50,2,2,1,2,1,2,2,2,3,70.0,8,,2,133583,2,1,0,1,1,720.0,180.0,386.0,43,2.0,1.0,4.0,2.0,1.5,2,2,911.497708711057,290.0,29764.47321605077,1,1,2,3,66.0,10,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.015958622769908518,19842.982144033846,5,3,5,5_0,5_2,5_0_1 +33558,2,33.0,0.0,1,111,680.0,0.0,0.0,0,37,0.0,0.0,1159.5363694930015,680.0,0.0,0.0,20,2,2,2,2,1,2,2,1,2,25.0,2,,1,133584,2,1,0,0,1,,0.0,,12,1.0,0.0,2.0,1.0,1.0,1,1,362.253038617738,680.0,30503.132837691115,0,1,1,2,47.0,9,7,8,0,0,1,3,0,0,0,1,0,1,0,0,0,1,0,1,1,1,1,0,0,0,0.022292792141001327,30503.132837691115,8,4,8,8_0,8_3,8_1_0 +33559,2,64.0,0.0,2,400,0.0,2300.0,0.0,0,78,0.0,0.0,0.0,3997.0,41.567676761895626,4366.559310261515,50,0,0,0,0,0,0,0,0,0,,2,,2,133585,2,3,0,0,1,,70.0,309.0,11,0.0,4.0,3.0,1.0,1.0,1,1,2081.11877080135,0.0,23710.52174837922,0,5,2,3,60.0,0,0,2,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.1685749492321156,23710.52174837922,6,3,6,6_0,6_0,6_0_1 +33561,2,77.0,0.0,2,111,265.0,125.0,0.0,0,77,0.0,0.0,451.8781439935962,390.0,0.0,237.31300599247362,70,0,0,0,0,0,0,0,0,0,,2,,2,133587,2,1,0,1,1,,151.0,,11,0.0,3.0,3.0,1.0,1.0,1,1,357.316241404372,265.0,13774.440260979114,0,5,0,1,70.0,9,7,8,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.028313310204321727,13774.440260979114,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +33562,2,71.0,0.0,1,111,249.0,501.0,0.0,0,78,0.0,0.0,424.5949352996432,750.0,0.0,951.1505280178343,44,0,0,0,0,0,0,0,0,0,,2,,1,133588,2,2,0,0,1,,144.0,310.0,11,0.0,0.0,2.0,1.0,1.0,1,1,1847.02765836555,249.0,18106.886118647544,0,5,2,3,60.0,9,7,8,0,1,1,3,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.041420705641242506,18106.886118647544,4,2,4_0,4_0_0,4_3_0,4_1_0_0 +33563,0,24.0,0.0,5,111,0.0,0.0,0.0,38,31,0.0,0.0,0.0,820.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,3,133589,2,1,0,1,1,703.0,0.0,,43,2.0,0.0,4.0,2.0,1.5,2,2,338.782732365169,0.0,11593.211478354624,4,1,5,0,87.0,9,7,4,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0707310482113606,7728.807652236416,1,1,1_0,1_0_0,1_3_0,1_0_0_0 +33564,1,45.0,490.0,9,111,480.0,0.0,0.0,54,47,0.0,0.0,818.4962608185893,792.0,432.30383832371456,0.0,42,2,1,2,2,1,2,2,2,0,,2,2006.0,6,133590,2,2,0,1,1,588.0,200.0,800.0,43,3.0,0.0,4.0,5.0,2.5999999999999996,3,3,1163.50013792099,480.0,25454.27960219301,4,4,2,3,80.0,8,6,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,0,1,0.03111461068148891,9790.107539305005,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +33565,2,40.0,0.0,7,111,800.0,0.0,0.0,22,56,0.0,0.0,1364.160434697649,800.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,45.0,2,,5,133591,2,1,0,1,1,,0.0,700.0,43,2.0,0.0,3.0,5.0,2.4,2,2,279.442608073615,800.0,24158.54538907306,4,1,2,3,61.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0.0331145765242075,10066.060578780442,2,1,2_0,2_0_0,2_4_0,2_0_0_0 +33566,2,81.0,0.0,2,111,480.0,0.0,0.0,86,75,1687.4925616585624,0.0,818.4962608185893,2102.0,30.482962958723462,0.0,60,2,2,1,1,2,2,2,2,0,,1,,2,133592,1,2,2,0,1,,200.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,525.1378162246,480.0,21800.482732804474,6,5,0,1,80.0,9,7,3,1,0,1,3,0,0,0,1,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.09641988325501602,14533.655155202983,3,2,3_0,3_1_0,3_3_0,3_0_1_0 +33567,2,49.0,0.0,5,111,434.0,0.0,0.0,0,47,0.0,0.0,740.0570358234745,434.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,3,133593,1,2,0,1,1,,292.0,,12,1.0,2.0,3.0,1.0,1.0,1,1,349.59812932668,434.0,31476.122241142817,0,1,1,2,49.0,9,7,2,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.013788229587973622,31476.122241142817,8,4,8,8_0,8_3,8_0_0 +33568,2,33.0,0.0,9,111,1195.0,0.0,0.0,46,38,0.0,0.0,2037.7146493296132,1195.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,45.0,1,2010.0,6,133595,2,1,1,0,1,,465.0,917.0,43,2.0,0.0,5.0,4.0,2.1,2,2,1323.91221276122,1195.0,62667.481053052834,1,1,2,3,115.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019068901125742405,29841.65764431087,8,4,8,8_1,8_3,8_0_0 +33569,1,47.0,377.0,6,111,220.0,900.0,0.0,0,85,0.0,0.0,375.14411954185346,1120.0,0.0,1708.65364314581,71,0,0,0,0,0,0,0,0,0,,1,,4,133596,1,1,1,0,1,,280.0,476.0,31,0.0,0.0,3.0,2.0,1.5,2,1,341.867370000083,220.0,8946.950955081842,0,7,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.1251823113396909,5964.633970054561,1,1,1_1,1_1_1,1_3_1,1_0_0_1 +33570,2,74.0,0.0,1,112,450.0,0.0,0.0,0,75,0.0,1271.354185929815,767.3402445174275,1470.0,83.13535352379125,0.0,33,2,2,2,1,1,2,1,2,0,,1,,1,133597,1,2,2,0,2,,75.0,,11,0.0,2.0,6.0,1.0,1.0,1,1,879.104773931069,450.0,26116.529914771585,0,5,1,2,120.0,9,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.056286191343075935,26116.529914771585,7,4,7,7_1,7_0,7_1_0 +33571,2,53.0,0.0,1,111,247.0,431.0,0.0,0,33,0.0,0.0,421.1845342128991,678.0,0.0,818.2552446620491,20,0,0,0,0,0,0,0,0,1,15.0,2,,1,133598,1,1,0,0,2,,0.0,,12,1.0,0.0,3.0,1.0,1.0,1,1,1963.77118927161,247.0,64931.7520206804,0,1,0,1,87.0,9,7,7,0,1,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.010441732725524807,64931.7520206804,10,5,10,10_0,10_3,10_1_0 +33572,2,83.0,0.0,2,111,135.0,117.0,0.0,0,77,0.0,0.0,230.20207335522826,252.0,0.0,222.12497360895532,71,2,2,2,1,1,1,2,2,0,,2,,2,133599,2,2,0,1,1,530.0,0.0,329.0,11,0.0,2.0,3.0,1.0,1.0,1,1,383.273608706866,135.0,14828.966700199388,0,5,2,3,50.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0.016993766665927685,14828.966700199388,3,2,3_0,3_0_0,3_3_0,3_0_1_0 +33573,2,49.0,0.0,1,112,1000.0,450.0,0.0,65,62,0.0,0.0,1705.2005433720612,1450.0,0.0,854.326821572905,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,133600,2,1,2,0,1,,240.0,,43,2.0,3.0,6.0,2.0,1.5,2,2,726.079872153146,1000.0,38506.145111515056,4,1,0,1,99.0,8,2,3,0,1,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.037656327212208664,25670.763407676703,7,4,7,7_1,7_1,7_1_0 +33574,2,32.0,0.0,2,111,0.0,0.0,0.0,56,46,0.0,0.0,0.0,673.0,0.0,0.0,20,0,0,0,0,0,0,0,0,2,30.0,2,,2,133601,2,2,0,0,1,,0.0,550.0,43,2.0,0.0,3.0,2.0,1.5,2,2,435.560814404057,0.0,25635.0735497251,1,1,2,3,60.0,9,7,9,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.02625309417172384,17090.049033150066,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +33575,1,29.0,354.0,1,111,940.0,515.0,0.0,0,85,0.0,0.0,1602.8885107697374,1515.0,83.13535352379125,977.7295846889913,71,2,1,2,1,2,2,2,2,0,,2,,1,133602,1,2,0,1,1,515.0,420.0,293.0,31,0.0,0.0,4.0,5.0,2.2,1,1,1208.28619100272,940.0,11382.007438037537,0,6,2,3,62.0,6,5,2,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0.13310481549476244,5173.639744562516,1,1,1_1,1_0_1,1_2_1,1_1_0_1 +33576,1,32.0,47.0,1,111,564.0,0.0,0.0,0,42,0.0,0.0,961.7331064618425,564.0,0.0,0.0,20,0,0,0,0,0,0,0,0,0,,2,,1,133603,2,2,0,0,1,,0.0,386.0,12,1.0,0.0,1.0,1.0,1.0,1,1,485.755337079607,564.0,14832.215407539177,0,1,2,3,33.0,9,7,7,0,0,1,3,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0.038025337719496725,14832.215407539177,3,2,3_1,3_0_1,3_3_1,3_1_0_1 +33577,2,35.0,0.0,2,111,180.0,200.0,0.0,0,67,0.0,0.0,306.936097806971,380.0,0.0,379.7008095879578,71,0,0,0,0,0,0,0,0,3,40.0,2,,2,133604,2,1,0,1,1,229.0,100.0,340.0,12,1.0,0.0,1.0,1.0,1.0,1,1,320.378798319209,180.0,22809.801091695776,0,1,2,3,30.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.01665950520446863,22809.801091695776,6,3,6,6_0,6_4,6_0_1 +33578,2,38.0,0.0,8,111,2000.0,0.0,0.0,46,33,0.0,0.0,3410.4010867441225,2000.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,25.0,1,2002.0,6,133605,1,2,1,0,1,,0.0,1520.0,43,2.0,0.0,3.0,3.0,1.8,2,2,1035.81985998659,2000.0,89892.58417045673,1,1,2,3,85.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.022248776341856482,49940.324539142624,10,5,10,10_1,10_4,10_0_0 +33580,2,40.0,0.0,2,111,320.0,400.0,0.0,0,56,0.0,0.0,545.6641738790596,720.0,0.0,759.4016191759156,50,0,0,0,0,0,0,0,0,3,45.0,2,,2,133607,1,2,0,1,2,,0.0,389.0,32,2.0,0.0,2.0,2.0,1.5,2,2,235.58911826782,320.0,17063.51556631663,0,1,2,3,38.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.04219529071847771,11375.677044211086,2,1,2_0,2_0_0,2_4_0,2_0_1_0 +33581,1,40.0,369.0,9,300,524.0,,,43,55,0.0,198.6490915515336,,850.0,243.8637036697877,,50,0,0,0,0,0,0,0,0,2,10.0,1,2012.0,6,133608,2,1,0,0,1,,160.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,195.26957909985768,524.0,22479.71276648435,1,1,1,2,80.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0.03781187103365882,10704.625126897308,2,1,2_1,2_1_1,2_1_1,2_0_0_1 +33582,2,55.0,0.0,8,111,1440.0,,,21,34,0.0,0.0,,1464.0,33.25414140951651,,20,0,0,0,0,0,0,0,0,0,,1,2002.0,6,133609,2,3,0,0,1,,350.0,,43,2.0,3.0,6.0,3.0,1.8,2,2,160.468536908104,1440.0,91877.2029622673,1,1,0,1,95.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.015934311807481172,51042.890534592945,10,5,10,10_1,10_2,10_0_0 +33583,2,61.0,0.0,1,111,807.0,1642.0,0.0,77,45,0.0,0.0,1376.0968385012534,2449.0,0.0,3117.3436467171337,60,0,0,0,0,0,0,0,0,1,17.0,1,,1,133610,1,1,2,0,2,,350.0,,42,1.0,2.0,6.0,2.0,1.5,2,2,236.263284753615,807.0,46029.41676243338,6,1,0,1,210.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.053205106044244645,30686.277841622254,8,4,8,8_1,8_3,8_1_0 +33584,2,80.0,0.0,2,111,136.0,86.0,0.0,0,86,0.0,0.0,231.90727389860032,222.0,0.0,163.27134812282185,60,0,0,0,0,0,0,0,0,0,,2,,2,133611,2,2,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,2056.20574042508,136.0,17297.0,0,7,0,1,74.0,9,7,9,0,1,1,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.012834595594611782,17297.0,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +33585,2,57.0,0.0,1,111,600.0,1500.0,0.0,62,56,0.0,0.0,1023.1203260232367,2100.0,0.0,2847.7560719096837,71,0,0,0,0,0,0,0,0,0,,1,,1,133612,2,2,2,0,1,,300.0,,43,3.0,3.0,4.0,3.0,2.0,3,3,254.393486507568,600.0,37846.63111725232,1,1,1,2,110.0,7,5,2,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.055487105140058786,18923.31555862616,5,3,5,5_1,5_2,5_1_0 +33586,1,47.0,58.0,2,111,391.0,0.0,0.0,78,68,0.0,0.0,666.7334124584759,396.0,0.0,0.0,50,0,0,0,0,0,0,0,0,3,60.0,2,,2,133613,2,1,0,1,1,1200.0,0.0,308.0,42,1.0,0.0,4.0,5.0,2.5999999999999996,3,2,282.108137168407,391.0,27459.533564920035,7,1,2,3,87.0,9,7,8,0,0,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.014421220923646566,10561.359063430784,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +33587,1,45.0,217.0,2,111,1200.0,0.0,0.0,56,62,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,,2,133614,1,2,0,1,1,1056.0,0.0,389.0,43,2.0,0.0,4.0,5.0,2.4,2,2,706.384348451028,1200.0,29298.553396616408,1,1,2,3,80.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,1,0.04095765356587824,12207.730581923504,2,1,2_1,2_0_1,2_4_1,2_0_1_1 +33589,2,68.0,0.0,6,120,8000.0,900.0,0.0,77,75,0.0,145.67600047112464,13641.60434697649,9010.0,0.0,1708.65364314581,50,0,0,0,0,0,0,0,0,0,,1,,4,133616,2,2,5,0,1,,400.0,,41,0.0,2.0,4.0,2.0,1.5,2,2,1685.27716682377,8000.0,37753.65970794497,5,5,2,3,90.0,0,3,8,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.23865236031949277,25169.106471963314,7,4,7,7_1,7_1,7_0_0 +33590,2,48.0,0.0,8,112,950.0,0.0,0.0,46,37,0.0,0.0,1619.9405162034582,980.0,41.567676761895626,0.0,31,0,0,0,0,0,0,0,0,0,,1,2000.0,6,133617,2,1,2,0,1,,240.0,,43,2.0,0.0,6.0,4.0,2.5,4,3,647.285507017482,950.0,89004.38666983618,4,1,1,2,160.0,7,0,8,0,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.011010693255326083,35601.754667934474,9,5,9,9_1,9_0,9_0_0 +33592,1,56.0,72.0,2,111,326.0,106.0,0.0,0,52,0.0,0.0,555.8953771392919,1146.0,0.0,201.24142908161764,50,0,0,0,0,0,0,0,0,2,10.0,2,,2,133619,1,3,0,1,1,577.0,0.0,373.0,32,1.0,2.0,4.0,2.0,1.5,2,1,218.57736589066,326.0,29887.255742269757,0,1,2,3,60.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.0383441025794551,19924.837161513173,5,3,5,5_0,5_3,5_0_1 +33593,2,90.0,0.0,2,111,0.0,0.0,0.0,0,75,0.0,0.0,0.0,1272.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,2,133620,2,2,2,0,1,,304.0,,11,0.0,1.0,5.0,1.0,1.0,1,1,365.695359428904,0.0,34365.87667615784,0,5,0,1,80.0,8,6,3,0,0,0,2,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03701345995001143,34365.87667615784,9,5,9,9_1,9_2,9_0_1 +33594,0,69.0,0.0,1,111,173.0,812.0,0.0,0,78,0.0,0.0,294.9996940033666,985.0,0.0,1541.5852869271087,71,0,0,0,0,0,0,0,0,0,,1,,1,133621,2,1,1,0,1,,200.0,,11,0.0,5.0,4.0,1.0,1.0,1,1,852.009389967581,173.0,21138.579807839953,0,5,5,0,90.0,9,7,3,0,1,1,3,0,0,0,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04659726476206692,21138.579807839953,5,3,5,5_1,5_3,5_1_0 +33595,2,42.0,0.0,9,211,0.0,0.0,0.0,43,62,0.0,0.0,0.0,1862.0,0.0,0.0,43,0,0,0,0,0,0,0,0,2,25.0,1,2013.0,6,133622,2,1,1,0,1,,532.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,5243.04912292033,0.0,63286.419948648516,1,1,1,2,165.0,1,3,7,0,0,0,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.02942179383050665,27515.834760281967,7,4,7,7_1,7_1,7_0_0 +33596,2,60.0,0.0,2,111,200.0,500.0,0.0,0,38,0.0,0.0,341.04010867441224,700.0,0.0,949.2520239698945,12,0,0,0,0,0,0,0,0,2,25.0,1,,2,133623,2,3,3,0,1,,150.0,980.0,32,1.0,0.0,5.0,2.0,1.5,2,1,2961.49879300365,200.0,60585.36774581297,0,1,2,3,130.0,9,7,7,0,1,1,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.011553944888753716,40390.24516387531,9,5,9,9_1,9_3,9_0_1 +33597,2,48.0,0.0,7,120,740.0,0.0,0.0,21,52,0.0,0.0,1261.8484020953254,815.0,103.91919190473907,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,5,133624,2,2,3,0,1,,200.0,,43,3.0,1.0,4.0,3.0,2.0,3,3,664.072830829668,740.0,41108.164810007576,1,1,0,1,90.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.019825745171713243,20554.082405003788,5,3,5,5_1,5_0,5_0_0 +33598,2,29.0,0.0,9,300,850.0,0.0,0.0,52,52,0.0,0.0,1449.420461866252,910.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,30.0,1,2010.0,6,133625,2,1,1,0,1,,253.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,2077.68929630491,850.0,28207.097427483903,1,1,1,2,67.0,0,1,5,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.0322613839420901,13431.951155944715,3,2,3_0,3_1_0,3_1_0,3_0_0_0 +33599,2,47.0,0.0,5,111,226.0,0.0,0.0,0,31,0.0,0.0,385.3753228020858,226.0,0.0,0.0,20,2,1,2,2,1,2,2,2,0,,2,,3,133626,1,1,0,1,1,,0.0,,11,0.0,0.0,2.0,1.0,1.0,1,1,1063.50280067819,226.0,30034.167912381265,0,7,0,1,52.0,10,8,1,0,0,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0.007524763151731396,30034.167912381265,8,4,8,8_0,8_4,8_0_0 +33600,2,45.0,0.0,7,111,500.0,,,48,56,0.0,0.0,,569.0,95.60565655235995,,50,0,0,0,0,0,0,0,0,0,,2,,5,133627,2,1,0,0,2,,594.0,306.0,43,2.0,0.0,2.0,3.0,1.8,2,2,147.63625887472256,500.0,29932.314767318247,4,4,2,3,60.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.019009555539662625,16629.063759621247,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +33601,2,70.0,0.0,2,112,1350.0,50.0,0.0,86,75,2636.7071275915036,185.40581878143135,2302.0207335522828,4040.0,0.0,94.92520239698945,44,0,0,0,0,0,0,0,0,0,,1,,2,133628,2,1,2,0,2,,1040.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,1518.11212646886,1350.0,78804.13877040784,6,5,0,1,180.0,9,2,9,1,1,1,1,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.05126634289818648,52536.092513605225,10,5,10,10_1,10_1,10_0_1 +33602,2,65.0,0.0,1,111,616.0,1500.0,0.0,77,78,0.0,0.0,1050.4035347171896,2116.0,0.0,2847.7560719096837,50,0,0,0,0,0,0,0,0,0,,1,,1,133629,2,1,2,0,1,,450.0,,41,1.0,1.0,5.0,3.0,2.0,3,3,75.8398252024299,616.0,36211.28940364396,5,5,0,1,90.0,7,6,3,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.058434815076954034,18105.64470182198,4,2,4_0,4_1_0,4_2_0,4_1_0_0 +33603,2,38.0,0.0,1,111,420.0,840.0,0.0,0,43,0.0,0.0,716.1842282162656,1260.0,0.0,1594.7434002694229,20,0,0,0,0,0,0,0,0,2,10.0,2,,1,133630,2,1,0,0,1,,110.0,368.0,12,1.0,0.0,3.0,1.0,1.0,1,1,1452.3636204655,420.0,18227.28771709272,0,1,2,3,60.0,7,6,5,0,1,1,2,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0.06912712519583643,18227.28771709272,4,2,4_0,4_0_0,4_2_0,4_1_0_0 +33604,1,32.0,414.0,9,112,380.0,,,0,55,0.0,0.0,,425.0,62.351515142843446,,50,0,0,0,0,0,0,0,0,0,,2,2005.0,6,133631,2,2,0,0,2,,260.0,471.0,32,1.0,0.0,3.0,3.0,1.6,1,1,124.94408713017455,380.0,18247.96144561299,0,4,2,3,32.0,7,4,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0.02329027279385088,11404.975903508117,2,1,2_1,2_0_1,2_2_1,2_0_0_1 +33605,2,43.0,0.0,8,111,350.0,,,42,42,0.0,0.0,,470.0,166.2707070475825,,20,0,0,0,0,0,0,0,0,2,20.0,1,2002.0,6,133632,2,2,0,0,1,,385.0,,43,2.0,0.0,7.0,4.0,2.3,3,2,117.4681067557828,350.0,101389.46783150281,1,1,1,2,160.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.004635589968586124,44082.3773180447,10,5,10,10_1,10_2,10_0_0 +33606,2,59.0,0.0,2,111,380.0,600.0,0.0,75,38,0.0,0.0,647.9762064813832,980.0,0.0,1139.1024287638734,12,0,0,0,0,0,0,0,0,2,15.0,2,,2,133633,1,3,0,0,1,,400.0,374.0,42,1.0,0.0,3.0,3.0,2.0,3,2,434.426526125429,380.0,30738.40347385183,6,1,2,3,71.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.03188194210651358,15369.201736925916,3,2,3_0,3_0_0,3_2_0,3_0_1_0 +33607,2,66.0,0.0,7,111,700.0,,,77,75,0.0,0.0,,950.0,346.39730634913025,,71,0,0,0,0,0,0,0,0,0,,1,,5,133634,2,1,0,0,2,,550.0,,41,1.0,1.0,6.0,4.0,2.5,4,4,102.26019406753441,700.0,46905.99662814312,5,5,0,1,92.0,8,7,0,0,0,0,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.020253273958366545,18762.39865125725,5,3,5,5_1,5_3,5_0_0 +33608,2,51.0,0.0,1,111,394.0,1124.0,0.0,75,52,0.0,0.0,671.8490140885921,1518.0,0.0,2133.918549884323,50,0,0,0,0,0,0,0,0,2,10.0,1,,1,133635,2,1,2,0,1,,360.0,,42,2.0,0.0,4.0,3.0,2.0,3,2,1403.72870877753,394.0,52943.01181465096,5,1,0,1,80.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.028672339331853473,26471.50590732548,7,4,7,7_1,7_2,7_1_0 +33609,2,34.0,0.0,2,111,120.0,0.0,0.0,38,31,0.0,0.0,204.62406520464734,120.0,0.0,0.0,12,2,2,2,1,2,2,2,2,0,,2,,2,133636,1,1,0,1,2,,0.0,,43,2.0,0.0,3.0,4.0,2.1,2,2,899.735934042174,120.0,93246.3642144315,1,1,1,2,59.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,1,0,0,0.0012869134470921057,44403.03057830071,10,5,10,10_0,10_4,10_0_1 +33610,2,42.0,0.0,6,112,670.0,1300.0,0.0,0,22,0.0,0.0,1142.484364059281,3167.0,0.0,2468.055262321726,31,0,0,0,0,0,0,0,0,0,,1,,4,133637,2,1,2,0,1,,500.0,800.0,32,1.0,0.0,4.0,3.0,2.0,3,3,755.033891112279,670.0,22746.405441156254,0,4,2,3,100.0,10,2,1,0,1,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.1392307900337423,11373.202720578127,2,1,2_0,2_1_0,2_1_0,2_0_0_0 +33611,2,43.0,0.0,7,112,440.0,0.0,0.0,63,42,2214.833987176863,132.4327277010224,750.2882390837069,2710.0,96.99124577775646,0.0,20,0,0,0,0,0,0,0,0,2,15.0,1,,5,133638,2,1,1,0,1,,335.0,,43,2.0,0.0,4.0,4.0,2.3,3,2,686.395311547651,440.0,62693.58489696639,1,1,0,1,125.0,10,0,1,1,0,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.04322611323716362,27258.08038998539,7,4,7,7_1,7_0,7_0_0 +33612,0,47.0,0.0,9,300,300.0,,,0,47,0.0,0.0,,323.0,31.86855218411998,,50,0,0,0,0,0,0,0,0,2,60.0,1,2004.0,6,133639,1,2,0,0,2,,598.0,,12,1.0,4.0,3.0,1.0,1.0,1,1,81.007461774289,300.0,22382.340163934423,0,1,5,0,45.0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.014431020064669692,22382.340163934423,6,3,6,6_1,6_1,6_0_0 +33613,2,70.0,0.0,8,111,370.0,,,74,74,0.0,0.0,,420.0,69.27946126982604,,41,0,0,0,0,0,0,0,0,0,,1,2003.0,6,133640,2,3,0,0,1,,180.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,111.76486981288666,370.0,122319.4909364343,5,5,0,1,150.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.0034336310328356512,81546.32729095621,10,5,10,10_1,10_2,10_0_0 +33614,2,45.0,0.0,2,111,350.0,1100.0,0.0,54,55,0.0,52.973091080408956,596.8201901802214,1490.0,0.0,2088.354452733768,60,0,0,0,0,0,0,0,0,2,3.0,1,,2,133641,2,1,2,0,1,,340.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,455.397546420939,350.0,41062.38662963451,1,1,0,1,104.0,8,7,3,0,1,1,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.03628624934637079,20531.193314817254,5,3,5,5_1,5_3,5_0_1 +33615,2,36.0,0.0,9,112,372.0,1007.0,0.0,34,47,0.0,0.0,634.3346021344067,1379.0,0.0,1911.7935762753675,43,0,0,0,0,0,0,0,0,0,,1,2006.0,6,133642,2,1,1,0,1,,201.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,932.138893244248,372.0,51542.13428749226,1,1,1,2,130.0,8,0,8,0,1,1,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.026754809808771193,24543.873470234408,7,4,7,7_1,7_0,7_0_0 +33616,2,67.0,0.0,7,111,1200.0,0.0,0.0,75,74,0.0,0.0,2046.2406520464733,1200.0,0.0,0.0,10,0,0,0,0,0,0,0,0,0,,2,,5,133643,2,1,0,0,1,,0.0,517.0,41,0.0,1.0,3.0,2.0,1.5,2,2,1953.04927378013,1200.0,15989.273945060646,6,5,2,3,65.0,9,7,7,0,0,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0.07505031211068218,10659.515963373764,2,1,2_0,2_0_0,2_3_0,2_0_0_0 +33617,2,46.0,0.0,2,120,580.0,0.0,0.0,0,54,1265.6194212439218,132.4327277010224,989.0163151557955,2010.0,180.1265993015477,0.0,50,2,2,2,1,1,2,2,2,2,20.0,1,,2,133644,2,2,2,0,1,,250.0,,32,2.0,0.0,4.0,3.0,2.0,3,2,1186.44433568094,580.0,19160.76242923431,0,1,1,2,90.0,0,0,2,1,0,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,1,0,0,0,0.1049018799446762,9580.381214617155,1,1,1_0,1_1_0,1_0_0,1_0_1_0 +33619,2,35.0,0.0,1,111,600.0,0.0,0.0,85,54,0.0,794.5963662061343,1023.1203260232367,1380.0,249.40606057137379,0.0,42,2,2,2,2,2,2,1,2,2,30.0,1,,1,133646,1,3,1,0,1,,350.0,462.0,42,1.0,0.0,2.0,2.0,1.5,2,2,1463.98935527924,600.0,26777.670517316423,7,1,2,3,55.0,9,7,9,0,0,1,3,0,0,0,1,0,1,0,0,1,0,1,0,1,1,0,1,0,0,0.05153547613888183,17851.780344877614,4,2,4_0,4_1_0,4_3_0,4_1_0_0 +33620,2,26.0,0.0,8,111,0.0,0.0,0.0,0,43,0.0,0.0,0.0,690.0,0.0,0.0,20,0,0,0,0,0,0,0,0,3,50.0,2,2002.0,6,133647,2,1,0,0,1,,129.0,355.0,12,1.0,0.0,1.0,1.0,1.0,1,1,3147.26419292747,0.0,17345.0739851003,0,1,2,3,25.0,8,7,2,0,0,0,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03978074700590618,17345.0739851003,4,2,4_0,4_0_0,4_3_0,4_0_0_0 +33621,2,81.0,0.0,1,111,503.0,0.0,0.0,0,75,3691.3899786281054,0.0,857.7158733161468,4003.0,0.0,0.0,33,2,2,2,1,1,2,2,2,0,,1,,1,133648,2,1,2,0,1,,522.0,,21,1.0,2.0,7.0,2.0,1.5,2,2,2108.81834424551,503.0,71472.28743758323,0,5,0,1,180.0,8,7,4,1,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,0,1,0,0,0,0.05600772192293161,47648.191625055486,10,5,10,10_1,10_3,10_1_0 +33622,1,36.0,177.0,6,111,0.0,0.0,1250.0,85,48,0.0,0.0,787.8978630184298,1250.0,0.0,1495.915184455851,20,2,2,2,2,1,2,2,2,0,,2,,4,133649,2,1,0,0,1,,0.0,340.0,42,1.0,0.0,3.0,4.0,2.1,2,2,1268.79735661363,0.0,14102.354732778918,6,4,2,3,66.0,7,5,8,0,1,1,2,0,0,1,0,0,0,0,1,0,1,0,1,1,0,1,0,0,1,0.08863767957095511,6715.407015609008,1,1,1_1,1_0_1,1_2_1,1_0_0_1 +33623,1,72.0,215.0,2,111,144.0,133.0,0.0,0,75,0.0,839.623493624482,245.54887824557682,942.0,42.95326598729215,252.50103837599193,50,0,0,0,0,0,0,0,0,0,,2,,2,133650,2,1,0,1,1,634.0,0.0,253.0,11,0.0,0.0,3.0,1.0,1.0,1,1,332.006084334245,144.0,9876.075455137907,0,5,2,3,70.0,6,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.09538201730829589,9876.075455137907,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +33624,1,72.0,123.0,2,211,219.0,753.0,0.0,0,78,0.0,0.0,373.43891899848137,972.0,0.0,1429.5735480986611,50,0,0,0,0,0,0,0,0,0,,2,,2,133651,2,1,0,0,1,,0.0,282.0,11,0.0,2.0,3.0,1.0,1.0,1,1,1546.63031572707,219.0,11283.09713977278,0,5,2,3,50.0,3,4,2,0,1,1,2,0,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,1,0.08614655958014504,11283.09713977278,2,1,2_1,2_0_1,2_2_1,2_0_1_1 +33625,2,60.0,0.0,2,111,0.0,0.0,0.0,0,67,0.0,0.0,0.0,1414.0,0.0,0.0,71,0,0,0,0,0,0,0,0,0,,1,,2,133652,1,2,5,0,1,,239.0,450.0,22,1.0,3.0,5.0,2.0,1.5,2,2,129.624288970577,0.0,16274.093963587595,0,4,2,3,90.0,9,7,3,0,0,0,3,0,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0.08688655744299796,10849.395975725063,2,1,2_0,2_1_0,2_3_0,2_0_1_0 +33626,2,38.0,0.0,9,111,0.0,,,67,55,0.0,0.0,,1028.0,0.0,,50,0,0,0,0,0,0,0,0,0,,1,2007.0,6,133653,2,1,0,0,2,,1369.0,880.0,43,2.0,0.0,4.0,4.0,2.5,4,3,211.33518108915362,0.0,23981.719139138906,4,1,2,3,80.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.042865984462401294,9592.687655655562,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +33627,0,34.0,0.0,1,111,1000.0,1000.0,0.0,63,37,0.0,0.0,1705.2005433720612,2000.0,0.0,1898.504047939789,20,0,0,0,0,0,0,0,0,2,15.0,2,,1,133654,2,1,0,0,1,,574.0,,43,2.0,0.0,2.0,3.0,1.8,2,2,985.678974862905,1000.0,81276.18244467009,4,1,5,0,60.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0.024607454974420438,45153.43469148338,10,5,10,10_0,10_4,10_1_0 +33628,2,66.0,0.0,5,111,312.0,32.0,0.0,0,46,0.0,0.0,532.0225695320831,344.0,0.0,60.75212953407325,31,2,2,2,1,1,2,2,2,2,1.0,2,,3,133655,1,3,0,1,1,756.0,0.0,389.0,12,1.0,2.0,4.0,1.0,1.0,1,1,986.073750388706,312.0,23348.518244256742,0,1,2,3,80.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,0,1,0,1,1,0,0,1,0,0,0.014733268998113702,23348.518244256742,6,3,6,6_0,6_4,6_0_0 +33629,0,88.0,0.0,1,111,363.0,1809.0,0.0,0,77,0.0,0.0,618.9877972440582,2172.0,0.0,3434.3938227230783,41,0,0,0,0,0,0,0,0,0,,2,,1,133656,2,1,0,0,1,,107.0,,11,0.0,0.0,7.0,1.0,1.0,1,1,1874.82578615478,363.0,45972.91262519042,0,5,0,1,70.0,8,6,8,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0.04724521192964122,45972.91262519042,10,5,10,10_0,10_2,10_1_0 +33630,2,60.0,0.0,6,111,1360.0,0.0,0.0,78,78,0.0,397.2981831030672,2319.072738986003,1780.0,166.2707070475825,0.0,50,0,0,0,0,0,0,0,0,0,,1,,4,133657,2,1,1,0,1,,320.0,,41,0.0,2.0,5.0,2.0,1.5,2,2,147.492919280604,1360.0,74118.51558477894,6,5,0,1,100.0,8,7,3,0,0,1,3,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.024015591596191422,49412.343723185964,10,5,10,10_1,10_3,10_0_0 +33631,2,80.0,0.0,2,111,192.0,77.0,0.0,0,78,0.0,0.0,327.3985043274357,816.0,0.0,146.18481169136376,70,1,1,2,2,1,2,2,2,0,,2,,2,133658,2,1,0,1,1,619.0,0.0,322.0,11,0.0,3.0,2.0,1.0,1.0,1,1,667.854531925991,192.0,17444.16624777421,0,5,2,3,56.0,9,7,3,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0.04677781605664975,17444.16624777421,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +33632,2,38.0,0.0,7,300,1492.0,0.0,0.0,55,62,0.0,0.0,2544.159210711115,1597.0,145.4868686666347,0.0,50,0,0,0,0,0,0,0,0,2,20.0,1,,5,133659,2,1,2,0,1,,509.0,421.0,43,2.0,0.0,4.0,4.0,2.1,2,2,824.664043061846,1492.0,36025.446401789086,1,1,2,3,85.0,0,0,5,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.04432977685241647,17154.974477042422,4,2,4_0,4_1_0,4_0_0,4_0_0_0 +33633,2,36.0,0.0,2,111,168.0,0.0,0.0,0,47,0.0,0.0,286.47369128650627,168.0,0.0,0.0,31,0,0,0,0,0,0,0,0,3,30.0,2,,2,133660,1,3,0,1,2,,0.0,,22,1.0,0.0,2.0,2.0,1.5,2,2,1198.47117249865,168.0,33512.839295787046,0,1,1,2,42.0,10,8,1,0,0,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.005013004076354687,22341.89286385803,6,3,6,6_0,6_4,6_0_1 +33634,2,52.0,0.0,9,112,0.0,0.0,0.0,0,37,0.0,0.0,0.0,938.0,0.0,0.0,50,0,0,0,0,0,0,0,0,2,20.0,2,2009.0,6,133661,2,2,0,0,1,700.0,0.0,558.0,32,1.0,3.0,3.0,2.0,1.5,2,1,1916.56713604369,0.0,29714.452024794664,0,1,2,3,74.0,8,2,8,0,0,0,1,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.03156713101144533,19809.634683196444,5,3,5,5_0,5_1,5_0_0 +33635,2,51.0,0.0,6,111,564.0,,,85,47,0.0,0.0,,816.0,349.1684847999233,,50,0,0,0,0,0,0,0,0,0,,1,,4,133662,2,1,0,0,2,,330.0,,42,1.0,1.0,4.0,4.0,2.5,4,3,102.78940670993386,564.0,9600.333333333332,6,4,0,1,64.0,6,5,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.08499704871358635,3840.1333333333328,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +33636,2,55.0,0.0,8,111,704.0,1200.0,0.0,0,37,0.0,0.0,1200.4611825339312,1904.0,0.0,2278.2048575277468,42,0,0,0,0,0,0,0,0,2,90.0,1,1999.0,6,133663,2,1,2,0,1,,361.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,865.597052785643,704.0,19502.92287974916,0,1,0,1,150.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0.097626392297178,19502.92287974916,5,3,5,5_1,5_4,5_0_0 +33637,2,82.0,0.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,1366.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,1,,2,133664,2,1,2,0,1,,162.0,,11,0.0,2.0,4.0,1.0,1.0,1,1,1148.12531790291,0.0,46009.3859438472,0,5,0,1,150.0,8,7,5,0,0,0,3,0,0,0,1,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.02968959424207821,46009.3859438472,10,5,10,10_1,10_3,10_0_1 +33638,2,58.0,0.0,2,111,417.0,153.0,0.0,0,33,0.0,0.0,711.0686265861495,570.0,0.0,290.4711193347877,31,0,0,0,0,0,0,0,0,3,20.0,2,,2,133665,2,1,0,1,2,,0.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,1102.32430120495,417.0,36877.55441726482,0,1,0,1,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.015456556406927714,36877.55441726482,9,5,9,9_0,9_4,9_0_1 +33639,2,42.0,0.0,9,120,3000.0,0.0,0.0,43,64,0.0,0.0,5115.6016301161835,3060.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,0,,1,2009.0,6,133666,2,1,1,0,1,,420.0,,43,2.0,0.0,4.0,4.0,2.1,2,2,574.431097895574,3000.0,51780.93798701356,1,1,1,2,150.0,0,0,7,0,0,1,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.059095105630713664,24657.589517625504,7,4,7,7_1,7_0,7_0_0 +33640,2,75.0,0.0,1,300,470.0,0.0,0.0,0,78,2953.111982902484,0.0,801.4442553848687,3270.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,1,133667,1,1,1,0,1,,288.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,1264.14094016345,470.0,26084.62068837203,0,5,0,1,130.0,0,0,2,1,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.1253612248790605,26084.62068837203,7,4,7,7_1,7_0,7_1_0 +33641,2,65.0,0.0,5,111,700.0,,,0,64,0.0,0.0,,772.0,99.7624242285495,,71,0,0,0,0,0,0,0,0,0,,1,,3,133668,2,1,0,0,2,,240.0,,12,1.0,3.0,5.0,1.0,1.0,1,1,10.605407626561515,700.0,20576.653185342584,0,4,0,1,90.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03751824910719303,20576.653185342584,5,3,5,5_1,5_2,5_0_0 +33642,2,25.0,0.0,9,111,0.0,,,38,38,0.0,0.0,,767.0,0.0,,10,0,0,0,0,0,0,0,0,2,5.0,2,2009.0,6,133669,2,1,0,0,1,,107.0,710.0,43,2.0,0.0,3.0,2.0,1.5,2,2,226.86808789498934,0.0,70239.76279407277,1,1,2,3,65.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.010919740749248712,46826.50852938185,10,5,10,10_0,10_2,10_0_0 +33643,2,60.0,0.0,8,111,300.0,,,77,54,0.0,0.0,,400.0,138.5589225396521,,31,0,0,0,0,0,0,0,0,0,,1,2002.0,6,133670,2,2,0,0,1,,0.0,600.0,42,1.0,0.0,3.0,2.0,1.5,2,2,76.45300270928311,300.0,44100.77146228789,5,1,2,3,69.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.009070136116372793,29400.514308191927,8,4,8,8_1,8_2,8_0_0 +33644,2,50.0,0.0,2,111,420.0,120.0,0.0,0,42,0.0,0.0,716.1842282162656,540.0,0.0,227.8204857527747,33,1,2,2,2,1,2,2,2,2,10.0,2,,2,133671,1,1,0,1,2,,0.0,,32,1.0,1.0,5.0,3.0,2.0,3,3,930.544511541616,420.0,38991.35767156967,0,1,1,2,88.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,0,1,0,1,1,0,0,0,0,0,0.013849222808513232,19495.678835784835,5,3,5,5_0,5_4,5_0_1 +33645,2,41.0,0.0,1,111,1500.0,0.0,0.0,56,62,1898.4291318658827,349.62240113069913,2557.8008150580918,3660.0,133.01656563806603,0.0,50,2,2,2,2,1,2,2,2,0,,1,,1,133672,2,3,4,0,1,,470.0,,43,2.0,1.0,5.0,4.0,2.1,2,2,347.112419343115,1500.0,46804.83043677484,1,1,1,2,210.0,7,5,3,1,0,1,2,0,0,1,0,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.07819705713802384,22288.014493702303,6,3,6,6_1,6_2,6_1_0 +33646,2,31.0,0.0,2,112,0.0,0.0,0.0,46,63,0.0,0.0,0.0,1503.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,,2,133673,1,1,2,0,1,,198.0,711.0,43,2.0,0.0,6.0,2.0,1.5,2,2,754.041174500536,0.0,38867.08687399946,1,1,2,3,125.0,6,0,7,0,0,0,0,1,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0.03867025086990626,25911.391249332974,7,4,7,7_1,7_0,7_0_1 +33647,2,79.0,0.0,5,120,1257.0,0.0,0.0,77,72,0.0,119.18945493092015,2143.437083018681,1347.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,1,,3,133674,2,1,2,0,1,,480.0,,41,0.0,1.0,5.0,2.0,1.5,2,2,1475.62519640878,1257.0,75044.9152977029,5,5,0,1,120.0,0,2,9,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0.017949250720804413,50029.94353180193,10,5,10,10_1,10_1,10_0_0 +33648,2,46.0,0.0,2,111,450.0,500.0,0.0,0,52,0.0,0.0,767.3402445174275,950.0,0.0,949.2520239698945,50,0,0,0,0,0,0,0,0,2,2.0,2,,2,133675,2,1,0,1,1,,150.0,399.0,12,1.0,0.0,2.0,1.0,1.0,1,1,551.112289941133,450.0,16762.096451036457,0,1,2,3,60.0,8,7,2,0,1,1,3,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0.05667548822279079,16762.096451036457,4,2,4_0,4_0_0,4_3_0,4_0_1_0 +33649,2,75.0,0.0,2,211,251.0,629.0,0.0,77,75,0.0,0.0,428.00533638638734,880.0,0.0,1194.1590461541273,41,0,0,0,0,0,0,0,0,0,,2,,2,133676,1,1,0,0,2,,140.0,301.0,41,0.0,0.0,3.0,2.0,1.5,2,2,1951.96535360851,251.0,28165.872370289493,5,5,2,3,65.0,1,3,7,0,1,1,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0.03124348461254336,18777.24824685966,5,3,5,5_0,5_1,5_0_1 +33650,2,62.0,0.0,1,111,254.0,1713.0,0.0,0,42,0.0,0.0,433.12093801650354,2047.0,110.84713803172167,3252.1374341208584,42,0,0,0,0,0,0,0,0,2,30.0,1,,1,133677,2,1,2,0,1,,229.0,,12,1.0,0.0,4.0,1.0,1.0,1,1,681.169849460701,254.0,41408.68605398628,0,1,0,1,95.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04943407277717622,41408.68605398628,9,5,9,9_1,9_4,9_1_0 +33651,1,50.0,200.0,1,111,160.0,46.0,0.0,0,35,0.0,0.0,272.8320869395298,206.0,0.0,87.3311862052303,41,0,0,0,0,0,0,0,0,0,,2,,1,133678,1,1,0,1,1,,239.0,350.0,12,1.0,0.0,2.0,1.0,1.0,1,1,387.16240515295,160.0,17174.128713523856,0,1,2,3,47.0,10,8,1,0,1,1,4,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0.011994786078305343,17174.128713523856,4,2,4_1,4_0_1,4_4_1,4_1_0_1 +33652,2,50.0,0.0,9,221,1200.0,0.0,0.0,65,47,0.0,264.8654554020448,2046.2406520464733,1460.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,2,15.0,1,2006.0,6,133679,2,2,1,0,1,,150.0,,43,2.0,0.0,6.0,2.0,1.5,2,2,1405.19909970103,1200.0,72731.86930360302,1,1,1,2,110.0,1,1,4,0,0,1,1,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.02007373128147655,48487.91286906868,10,5,10,10_1,10_1,10_0_0 +33653,2,81.0,0.0,5,111,278.0,,,0,72,0.0,0.0,,438.0,221.69427606344334,,70,0,0,0,0,0,0,0,0,0,,1,,3,133680,2,2,0,0,2,,700.0,,11,0.0,1.0,4.0,1.0,1.0,1,1,198.5825018593454,278.0,8460.042035509554,0,5,0,1,90.0,5,4,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.05177279240003433,8460.042035509554,1,1,1_0,1_1_0,1_2_0,1_0_0_0 +33654,2,59.0,0.0,6,111,2000.0,,,0,52,0.0,0.0,,2138.0,191.2113131047199,,44,0,0,0,0,0,0,0,0,2,30.0,1,,4,133681,2,1,0,0,2,,2000.0,,22,2.0,0.0,5.0,3.0,1.8,2,2,28.15525860562481,2000.0,69142.43760924411,0,1,0,1,80.0,7,6,0,0,0,0,2,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.030921675224741523,38412.46533846895,9,5,9,9_1,9_2,9_0_0 +33655,0,36.0,0.0,1,300,1440.0,0.0,0.0,62,67,0.0,264.8654554020448,2455.488782455768,1700.0,83.13535352379125,0.0,71,0,0,0,0,0,0,0,0,2,10.0,1,,1,133682,1,1,1,0,1,,350.0,,43,2.0,0.0,6.0,4.0,2.3,3,2,2770.61090154508,1440.0,46980.751936042274,1,1,5,0,140.0,0,0,7,0,0,1,0,1,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.036185031740537325,20426.413885235772,5,3,5,5_1,5_0,5_1_0 +33656,2,44.0,0.0,9,112,0.0,0.0,0.0,54,47,0.0,0.0,0.0,2025.0,0.0,0.0,31,0,0,0,0,0,0,0,0,2,20.0,1,2012.0,6,133683,2,1,1,0,1,,769.0,,43,2.0,0.0,7.0,5.0,2.5999999999999996,4,3,65.5305933809859,0.0,56099.96758638672,1,1,1,2,136.0,8,0,3,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0.03609627754029913,21576.91061014874,6,3,6,6_1,6_0,6_0_0 +33657,2,47.0,0.0,6,111,530.0,900.0,0.0,67,56,0.0,0.0,903.7562879871924,1430.0,0.0,1708.65364314581,71,2,2,2,2,1,2,2,2,3,40.0,1,,4,133684,1,2,5,0,2,,530.0,,43,3.0,1.0,5.0,4.0,2.5,4,4,296.472724624304,530.0,12621.974189651784,4,1,0,1,100.0,10,8,1,0,1,1,4,0,0,0,0,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0.11329447981064608,5048.789675860714,1,1,1_0,1_1_0,1_4_0,1_0_0_0 +33658,2,53.0,0.0,1,222,800.0,0.0,0.0,85,64,0.0,99.3245457757668,1364.160434697649,1085.0,290.9737373332694,0.0,50,0,0,0,0,0,0,0,0,2,7.0,1,,1,133685,1,1,2,0,1,,210.0,,42,1.0,1.0,4.0,3.0,2.0,3,3,1343.28256587196,800.0,28701.95699760554,7,1,0,1,81.0,1,0,8,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.03780230038288038,14350.97849880277,3,2,3_0,3_1_0,3_0_0,3_1_0_0 +33659,2,68.0,0.0,1,112,800.0,0.0,0.0,0,75,0.0,0.0,1364.160434697649,860.0,83.13535352379125,0.0,43,0,0,0,0,0,0,0,0,0,,1,,1,133686,2,1,2,0,1,,160.0,,11,0.0,4.0,4.0,1.0,1.0,1,1,1468.33641095904,800.0,18925.82486506302,0,5,0,1,120.0,5,0,2,0,0,1,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.04544055575551456,18925.82486506302,5,3,5,5_1,5_0,5_1_0 +33660,2,50.0,0.0,1,120,1250.0,0.0,0.0,46,54,2109.365702073203,264.8654554020448,2131.5006792150766,3510.0,83.13535352379125,0.0,50,0,0,0,0,0,0,0,0,4,3.0,1,,1,133687,2,1,1,0,1,,500.0,,43,2.0,0.0,6.0,3.0,2.0,3,2,1143.22957348671,1250.0,60334.64760187463,4,1,0,1,190.0,0,1,5,1,0,1,1,0,1,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0.058175528316020894,30167.323800937316,8,4,8,8_1,8_1,8_1_0 +33661,1,78.0,253.0,6,111,370.0,525.0,0.0,0,78,0.0,0.0,630.9242010476627,895.0,0.0,996.7146251683893,44,0,0,0,0,0,0,0,0,0,,2,,4,133688,2,1,0,0,2,,0.0,309.0,11,0.0,0.0,3.0,1.0,1.0,1,1,386.986891643179,370.0,9500.479457914013,0,5,2,3,90.0,9,7,9,0,1,1,3,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,0,0,1,0.09420577182075314,9500.479457914013,1,1,1_1,1_0_1,1_3_1,1_0_0_1 +33662,2,82.0,0.0,5,111,265.0,0.0,0.0,0,75,0.0,0.0,451.8781439935962,265.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,3,133689,2,1,0,1,1,,120.0,,11,0.0,0.0,4.0,1.0,1.0,1,1,1522.86092759024,265.0,33389.84821969535,0,5,0,1,82.0,9,7,8,0,0,1,3,0,0,0,1,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.007936544013509083,33389.84821969535,8,4,8,8_0,8_3,8_0_0 +33663,2,55.0,0.0,1,120,900.0,0.0,0.0,0,52,0.0,331.081819252556,1534.680489034855,1200.0,69.27946126982604,0.0,50,0,0,0,0,0,0,0,0,2,30.0,1,,1,133690,2,1,3,0,1,,400.0,,32,2.0,0.0,3.0,2.0,1.5,2,1,2491.40285698402,900.0,23260.664026399114,0,1,0,1,50.0,0,1,2,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0.051589240902069254,15507.109350932742,3,2,3_0,3_1_0,3_1_0,3_1_0_0 +33664,1,40.0,40.0,8,221,580.0,0.0,0.0,0,45,0.0,662.163638505112,989.0163151557955,1140.0,83.13535352379125,0.0,60,0,0,0,0,0,0,0,0,2,30.0,1,1999.0,6,133691,2,1,2,0,1,,274.0,,32,1.0,0.0,4.0,2.0,1.5,2,1,2636.62411027182,580.0,23089.533052935403,0,1,1,2,101.0,1,2,7,0,0,1,1,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0.04937302098688697,15393.022035290269,3,2,3_1,3_1_1,3_1_1,3_0_0_1 +33665,2,62.0,0.0,2,111,510.0,1290.0,0.0,78,68,0.0,0.0,869.6522771197511,1800.0,0.0,2449.070221842328,60,1,2,2,2,1,2,2,2,0,,1,,2,133692,2,2,3,0,1,,500.0,,42,2.0,1.0,3.0,3.0,2.0,3,3,813.167599937609,510.0,56083.75237065533,5,1,1,2,86.0,10,8,1,0,1,1,4,0,0,0,0,1,0,1,0,1,0,0,1,1,0,0,0,0,0,0.03209485677962256,28041.876185327666,8,4,8,8_1,8_4,8_0_1 +33666,0,58.0,0.0,1,111,720.0,0.0,0.0,0,77,0.0,595.9472746546007,1227.744391227884,1302.0,182.89777775234077,0.0,71,2,2,2,1,2,2,2,2,0,,1,,1,133693,1,3,3,0,1,,630.0,,31,3.0,1.0,6.0,5.0,3.0,5,5,1420.71833660107,720.0,29899.4990337727,0,6,5,0,100.0,8,7,3,0,0,1,3,0,0,0,1,0,1,0,0,1,0,0,1,1,1,0,0,0,0,0.043545880100845105,9966.499677924234,2,1,2_0,2_1_0,2_3_0,2_1_0_0 +33667,1,84.0,135.0,2,111,0.0,0.0,0.0,0,77,0.0,0.0,0.0,775.0,0.0,0.0,50,0,0,0,0,0,0,0,0,0,,2,,2,133694,2,1,0,0,1,,180.0,250.0,11,0.0,1.0,2.0,1.0,1.0,1,1,1656.81036441742,0.0,12146.950090047638,0,5,2,3,40.0,8,7,7,0,0,0,3,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0.0638020239035131,12146.950090047638,2,1,2_1,2_0_1,2_3_1,2_0_1_1 +33668,2,67.0,0.0,5,111,240.0,0.0,0.0,0,77,0.0,0.0,409.2481304092947,240.0,0.0,0.0,70,0,0,0,0,0,0,0,0,0,,2,,3,133695,1,2,0,1,2,720.0,0.0,340.0,11,0.0,1.0,4.0,1.0,1.0,1,1,310.226310724391,240.0,16787.58145866519,0,5,2,3,50.0,6,4,8,0,0,1,2,0,0,1,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0.014296282081545462,16787.58145866519,4,2,4_0,4_0_0,4_2_0,4_0_0_0 +33669,2,38.0,0.0,2,111,0.0,0.0,0.0,0,37,0.0,0.0,0.0,985.0,0.0,0.0,10,0,0,0,0,0,0,0,0,2,10.0,2,,2,133696,2,1,0,1,2,,0.0,,32,1.0,0.0,7.0,3.0,1.6,1,1,1213.12510381944,0.0,432593.4698027308,0,1,1,2,135.0,10,8,1,0,0,0,4,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0.002276964560859356,270370.9186267067,10,5,10,10_0,10_4,10_0_1 diff --git a/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matched_final.csv b/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matched_final.csv index 8ec16eb3..f4913da7 100644 --- a/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matched_final.csv +++ b/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matched_final.csv @@ -1,8 +1,8 @@ ,Unnamed: 0,X,age_carte_grise,age_vehicule,agepr,cataeu,cs42pr,dip14pr,etat_veh_achat,ident_men,km_autre_carbu,km_diesel,km_essence,mloy_d,nactifs,nbphab,nenfants,npers,ocde10,pondmen,poste_07_2_2_1_1,prix_achat,revtot,situapr,stalog,tau,tuu,typmen,veh_tot,vp_deplacements_pro,vp_domicile_travail,rural,petite_ville,moyenne_ville,grande_ville,paris,aides_logement,nb_essence,nb_diesel,niveau_vie,niveau_vie_decile,niveau_vie_quintile,donation_class_1,donation_class_3,distance,distance_autre_carbu,distance_diesel,distance_essence,age_carte_grise.1,age_vehicule.1,distance_routiere_hebdomadaire_teg,duree_moyenne_trajet_aller_retour_teg,mode_principal_deplacement_teg,vp_deplacements_pro.1,vp_domicile_travail.1,depenses_carburants_corrigees_entd,depenses_diesel_corrigees_entd,depenses_essence_corrigees_entd 0,14,13,5,21,54,111,56,20,0,10014,0,0,0,296,1,3,1,2,1.5,3134.07119406,1561,0,4603.0,4,3,7,6,2,1,0,0,0,0,1,0,0,1,0,1,3068.66666667,1,1,1_1,1_0,3000.0,0,3000.0,0,3,20,0.0,0.0,0.0,0,0,288.48424942098006,288.48424942098006,0.0 -1,73,72,0,19,57,111,77,71,0,10093,0,0,0,0,0,3,0,1,1.0,3436.9292638000006,1560,0,7740.0,7,4,9,7,1,1,0,0,0,0,0,1,0,0,0,1,7740.0,1,1,1_0,1_0,12000.0,0,12000.0,0,3,20,0.0,0.0,0.0,0,0,1153.9369976839203,1153.9369976839203,0.0 +1,73,72,0,19,57,111,77,71,0,10093,0,0,0,0,0,3,0,1,1.0,3436.9292638,1560,0,7740.0,7,4,9,7,1,1,0,0,0,0,0,1,0,0,0,1,7740.0,1,1,1_0,1_0,12000.0,0,12000.0,0,3,20,0.0,0.0,0.0,0,0,1153.9369976839203,1153.9369976839203,0.0 2,93,92,0,12,20,111,84,31,0,10121,0,0,0,0,0,1,0,1,1.0,3751.89473267,0,0,3123.0,3,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,3123.0,1,1,1_1,1_0,8892.0,0,0.0,8892,2,12,0.0,0.0,0.0,0,0,855.0673152837848,0.0,855.0673152837848 -3,117,116,2,2,42,300,11,71,0,10153,0,0,0,0,2,5,2,4,2.5,3033.1386605000002,0,0,13180.0,1,1,0,0,4,1,0,0,1,0,0,0,0,0,0,1,5272.0,1,1,1_0,1_1,13500.0,0,13500.0,0,3,3,42.0,22.6666666667,3.3,0,1,1441.0989126585023,1441.0989126585023,0.0 +3,117,116,2,2,42,300,11,71,0,10153,0,0,0,0,2,5,2,4,2.5,3033.1386605,0,0,13180.0,1,1,0,0,4,1,0,0,1,0,0,0,0,0,0,1,5272.0,1,1,1_0,1_1,13500.0,0,13500.0,0,3,3,42.0,22.6666666667,3.3,0,1,1441.0989126585023,1441.0989126585023,0.0 4,128,127,3,10,19,111,84,41,0,10170,0,0,0,235,0,2,0,1,1.0,3606.74135619,1768,0,3770.0,3,4,8,7,1,1,0,0,0,0,0,1,0,0,0,1,3770.0,1,1,1_0,1_0,5500.0,0,5500.0,0,9,9,0.0,0.0,0.0,0,0,528.88779060513,528.88779060513,0.0 5,138,137,2,8,29,112,21,50,0,10182,0,400,0,0,2,6,3,5,2.4,1641.66912322,2601,0,18317.0,1,2,7,1,4,2,0,1,0,1,0,0,0,1,0,2,7632.08333333,1,1,1_1,1_0,18000.0,0,18000.0,0,4,8,89.0,11.6,3.3,0,1,1730.9054965258802,1730.9054965258802,0.0 6,150,149,1,3,40,111,22,31,2,10198,0,0,0,0,2,4,1,3,1.8,2728.51000428,0,7500,12592.0,1,3,3,4,4,2,0,0,0,0,1,0,0,0,0,2,6995.55555556,1,1,1_0,1_0,14572.0,0,14572.0,0,1,5,0.0,0.0,0.0,0,1,1401.2641608541737,1401.2641608541737,0.0 @@ -26,7 +26,7 @@ 24,388,387,1,20,28,120,85,60,2,10533,0,0,0,317,0,2,0,1,1.0,3040.71879196,1040,1800,9124.0,7,3,0,0,1,1,0,0,1,0,0,0,0,0,1,0,9124.0,1,1,1_0,1_1,6500.0,0,0.0,6500,2,21,0.0,0.0,0.0,0,1,693.8624394281677,0.0,693.8624394281677 25,390,389,6,8,57,112,56,71,0,10535,0,0,0,0,1,5,1,3,2.0,2989.9080365,0,0,15723.0,1,2,9,3,4,2,0,0,0,1,0,0,0,1,0,2,7861.5,1,1,1_1,1_0,25000.0,0,25000.0,0,3,5,0.0,0.0,0.0,0,1,2404.0354118415003,2404.0354118415003,0.0 26,395,394,0,0,36,111,22,50,0,1054,0,0,0,0,1,3,2,4,2.1,3434.43850873,0,0,14780.0,4,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,7038.0952381,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -27,400,399,0,0,62,112,78,41,0,10545,0,0,0,0,0,5,0,1,1.0,2979.6988828000003,0,0,8695.0,5,4,9,2,1,0,0,0,0,1,0,0,0,0,0,0,8695.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +27,400,399,0,0,62,112,78,41,0,10545,0,0,0,0,0,5,0,1,1.0,2979.6988828,0,0,8695.0,5,4,9,2,1,0,0,0,0,1,0,0,0,0,0,0,8695.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 28,410,409,1,10,22,111,84,31,2,10557,0,0,30,0,0,2,0,1,1.0,3942.61191571,1040,5000,6298.0,3,4,9,7,1,1,0,1,0,0,0,1,0,0,1,0,6298.0,1,1,1_0,1_0,20000.0,0,0.0,20000,9,10,0.0,0.0,0.0,0,0,1923.2283294732001,0.0,1923.2283294732001 29,421,420,0,0,18,111,84,41,0,10573,0,0,0,330,0,1,0,1,1.0,4133.45888804,0,0,4823.0,3,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,4823.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 30,427,426,8,8,58,111,85,31,0,10583,0,150,0,0,0,6,0,1,1.0,1308.6859895,0,0,1230.0,6,1,4,4,1,1,0,1,0,0,1,0,0,0,0,1,1230.0,1,1,1_0,1_0,15000.0,0,15000.0,0,5,8,0.0,0.0,0.0,0,0,1442.4212471049002,1442.4212471049002,0.0 @@ -41,7 +41,7 @@ 39,527,526,0,5,34,111,62,71,2,10728,0,300,0,306,1,4,3,5,2.4,5243.24460839,1040,6000,20463.0,1,3,6,5,4,1,0,1,0,0,1,0,0,0,0,1,8526.25,1,1,1_0,1_0,11836.0,0,11836.0,0,2,4,0.0,0.0,0.0,0,1,1138.1665253822398,1138.1665253822398,0.0 40,546,545,0,0,22,111,84,31,0,10752,0,0,0,135,0,1,0,1,1.0,4129.34117931,0,0,6440.0,3,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,6440.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 41,594,593,8,11,45,300,85,33,0,10816,0,0,0,0,2,6,5,6,3.1,582.678598015,5724,0,28511.0,4,2,0,0,2,1,1,0,1,0,0,0,0,1,0,1,9197.09677419,1,1,1_1,1_1,35000.0,0,35000.0,0,3,10,334.7,45.0,3.3,0,1,3736.1823661516723,3736.1823661516723,0.0 -42,603,602,0,13,29,111,64,71,2,10828,0,0,0,425,1,1,0,1,1.0,3673.8992346999994,0,1000,0.0,4,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,0.0,1,1,1_0,1_0,6000.0,0,6000.0,0,6,13,39.3,67.5,3.3,1,1,576.9684988419601,576.9684988419601,0.0 +42,603,602,0,13,29,111,64,71,2,10828,0,0,0,425,1,1,0,1,1.0,3673.8992347,0,1000,0.0,4,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,0.0,1,1,1_0,1_0,6000.0,0,6000.0,0,6,13,39.3,67.5,3.3,1,1,576.9684988419601,576.9684988419601,0.0 43,623,622,3,6,21,111,84,41,0,10857,0,0,0,300,0,1,0,1,1.0,3703.30740645,0,0,8951.0,3,3,9,7,1,1,0,1,0,0,0,1,0,1,1,0,8951.0,1,1,1_1,1_0,20000.0,0,0.0,20000,4,6,0.0,0.0,0.0,0,1,1923.2283294732001,0.0,1923.2283294732001 44,625,624,0,3,54,111,63,60,0,1086,0,0,0,0,1,2,0,1,1.0,3274.96863816,1565,0,8406.0,4,3,7,5,1,1,0,0,0,0,1,0,0,1,0,1,8406.0,1,1,1_1,1_0,18000.0,0,18000.0,0,6,4,0.0,0.0,0.0,0,0,1730.9054965258802,1730.9054965258802,0.0 45,629,628,1,15,37,111,85,41,2,10867,0,0,0,0,0,3,2,4,2.1,2828.21274665,0,1400,18617.0,4,3,7,5,4,1,0,0,0,0,1,0,0,1,0,1,8865.23809524,1,1,1_1,1_0,5000.0,0,5000.0,0,10,16,0.0,0.0,0.0,0,0,480.80708236830003,480.80708236830003,0.0 @@ -69,7 +69,7 @@ 67,865,864,4,9,57,221,68,71,0,11189,0,0,0,125,1,2,0,1,1.0,4061.83575809,1820,0,7540.0,4,3,1,2,1,1,0,0,0,1,0,0,0,1,1,0,7540.0,1,1,1_1,1_0,7000.0,0,0.0,7000,1,10,0.0,0.0,0.0,0,0,673.12991531562,0.0,673.12991531562 68,886,885,2,11,29,111,54,20,0,11217,0,0,0,60,1,3,0,1,1.0,2082.62058185,0,0,5670.0,4,3,8,6,1,1,0,0,0,0,1,0,0,1,0,1,5670.0,1,1,1_1,1_0,8000.0,0,8000.0,0,7,11,0.0,0.0,0.0,1,0,769.2913317892801,769.2913317892801,0.0 69,893,892,0,0,71,111,78,50,0,11225,0,0,0,50,0,1,0,1,1.0,3088.16811859,0,0,9593.0,5,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,9593.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -70,907,906,8,12,47,112,13,50,0,11246,0,80,0,0,2,5,2,4,2.1,1882.65582887,0,0,2600.0,1,1,6,0,4,1,0,1,1,0,0,0,0,0,0,1,1238.0952381,1,1,1_0,1_1,10000.0,0,10000.0,0,8,13,20.0,6.666666666669999,0.0,0,1,1067.4806760433348,1067.4806760433348,0.0 +70,907,906,8,12,47,112,13,50,0,11246,0,80,0,0,2,5,2,4,2.1,1882.65582887,0,0,2600.0,1,1,6,0,4,1,0,1,1,0,0,0,0,0,0,1,1238.0952381,1,1,1_0,1_1,10000.0,0,10000.0,0,8,13,20.0,6.66666666667,0.0,0,1,1067.4806760433348,1067.4806760433348,0.0 71,908,907,0,4,67,400,86,50,2,11247,0,0,0,0,0,5,0,2,1.5,1236.55453419,1966,7000,14110.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,9406.66666667,1,1,1_0,1_1,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,1067.4806760433348,1067.4806760433348,0.0 72,913,912,12,12,63,111,74,10,0,11254,0,0,0,0,0,8,0,1,1.0,1736.23368696,0,0,2081.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,2081.0,1,1,1_0,1_0,4000.0,0,0.0,4000,7,13,0.0,0.0,0.0,0,0,384.64566589464005,0.0,384.64566589464005 73,919,918,0,21,18,111,84,41,0,11264,0,0,0,0,0,1,0,1,1.0,3576.19380707,0,0,3134.0,3,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,3134.0,1,1,1_1,1_0,15352.0,0,0.0,15352,1,18,0.0,0.0,0.0,0,0,1476.2700657036285,0.0,1476.2700657036285 @@ -124,7 +124,7 @@ 122,1388,1387,0,0,55,111,75,31,0,1190,0,0,0,0,0,1,0,1,1.0,3461.15837021,0,0,8684.0,4,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,8684.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 123,1392,1391,21,21,62,300,77,50,0,11904,0,0,0,0,0,6,0,1,1.0,2395.98211831,3269,0,5723.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,5723.0,1,1,1_0,1_1,9833.0,0,9833.0,0,10,21,0.0,0.0,0.0,0,0,1049.6537487534113,1049.6537487534113,0.0 124,1428,1427,10,15,37,400,22,43,0,11956,0,0,0,0,1,4,1,2,1.3,2963.54146845,0,0,4010.0,1,1,0,0,2,1,0,0,1,0,0,0,0,0,1,0,3084.61538462,1,1,1_0,1_1,2000.0,0,0.0,2000,12,12,0.0,0.0,0.0,0,0,213.49613520866697,0.0,213.49613520866697 -125,1431,1430,0,0,49,111,85,70,0,11961,0,0,0,0,0,2,0,1,1.0,6790.5184696999995,0,0,8656.0,7,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,8656.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +125,1431,1430,0,0,49,111,85,70,0,11961,0,0,0,0,0,2,0,1,1.0,6790.5184697,0,0,8656.0,7,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,8656.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 126,1433,1432,4,4,50,111,21,44,0,11963,0,255,0,100,1,4,0,1,1.0,3146.54581694,0,0,9340.0,1,3,10,8,1,1,1,1,0,0,0,0,1,1,0,1,9340.0,1,1,1_1,1_0,20000.0,0,20000.0,0,3,7,0.0,0.0,0.0,0,0,1923.2283294732001,1923.2283294732001,0.0 127,1444,1443,0,0,51,111,85,71,0,11982,0,0,0,0,0,3,3,5,2.4,1632.01866751,0,0,20476.0,7,3,7,6,4,0,0,0,0,0,1,0,0,1,0,0,8531.66666667,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 128,1467,1466,5,7,53,221,21,50,0,12014,0,0,0,0,1,4,3,5,2.4,2437.9919615,0,0,14042.0,1,2,1,2,4,2,0,0,0,1,0,0,0,1,2,0,5850.83333333,1,1,1_1,1_0,12000.0,0,0.0,12000,10,10,0.0,0.0,0.0,0,0,1153.9369976839203,0.0,1153.9369976839203 @@ -149,7 +149,7 @@ 147,1681,1680,16,16,85,112,72,70,0,12319,0,0,0,0,0,4,0,2,1.5,3338.98365371,0,0,11645.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,1,0,7763.33333333,1,1,1_0,1_1,1000.0,0,0.0,1000,3,15,0.0,0.0,0.0,0,0,106.74806760433349,0.0,106.74806760433349 148,1717,1716,0,0,55,111,85,71,0,12367,0,0,0,105,0,2,0,1,1.0,4752.75774088,0,0,6740.0,6,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,6740.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 149,1731,1730,9,9,49,400,85,41,0,12389,0,0,0,0,1,3,3,5,2.6,1687.18772145,0,0,20480.0,7,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,7876.92307692,1,1,1_0,1_1,22650.0,0,17650.0,5000,10,10,177.5,42.5,3.3,0,1,2417.843731238154,1884.1033932164862,533.7403380216674 -150,1735,1734,10,17,38,120,56,71,0,12392,0,0,50,0,1,3,1,2,1.5,5149.690643999999,0,0,13225.0,1,2,0,2,2,1,0,1,0,1,0,0,0,1,1,0,8816.66666667,1,1,1_1,1_0,4543.0,0,0.0,4543,1,17,0.0,5.0,0.0,0,1,436.86131503983745,0.0,436.86131503983745 +150,1735,1734,10,17,38,120,56,71,0,12392,0,0,50,0,1,3,1,2,1.5,5149.690644,0,0,13225.0,1,2,0,2,2,1,0,1,0,1,0,0,0,1,1,0,8816.66666667,1,1,1_1,1_0,4543.0,0,0.0,4543,1,17,0.0,5.0,0.0,0,1,436.86131503983745,0.0,436.86131503983745 151,1749,1748,5,22,61,112,78,70,0,12412,0,0,0,178,0,1,0,1,1.0,5619.33610485,2080,0,5716.0,5,3,9,3,1,1,0,0,0,1,0,0,0,1,1,0,5716.0,1,1,1_1,1_0,7681.0,0,0.0,7681,11,18,0.0,0.0,0.0,0,0,738.6158399341825,0.0,738.6158399341825 152,1756,1755,0,0,44,111,85,50,0,12419,0,0,0,0,0,2,0,1,1.0,2671.63778179,0,0,8455.0,4,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,8455.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 153,1758,1757,8,28,59,112,78,50,0,12421,0,0,0,0,0,3,0,2,1.5,3838.33622486,1560,0,11397.0,7,3,7,0,3,2,0,0,1,0,0,0,0,1,0,2,7598.0,1,1,1_1,1_1,10000.0,0,10000.0,0,1,25,0.0,0.0,0.0,1,1,1067.4806760433348,1067.4806760433348,0.0 @@ -178,11 +178,11 @@ 176,2060,2059,0,0,52,111,48,71,0,12827,0,0,0,126,1,4,2,3,2.0,2601.55180359,0,0,18596.0,1,3,7,5,2,0,0,0,0,0,1,0,0,1,0,0,9298.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 177,2079,2078,0,16,21,111,55,20,0,12852,0,0,0,107,2,2,0,2,1.5,2330.76923414,1040,0,3809.0,3,3,8,7,3,1,0,0,0,0,0,1,0,1,1,0,2539.33333333,1,1,1_1,1_0,12067.0,0,0.0,12067,6,15,0.0,0.0,0.0,0,1,1160.3798125876554,0.0,1160.3798125876554 178,2096,2095,0,10,25,300,12,43,0,12871,0,250,0,0,1,1,0,1,1.0,1169.26067805,0,0,271.0,1,4,0,0,1,1,0,1,1,0,0,0,0,0,0,1,271.0,1,1,1_0,1_1,21500.0,0,21500.0,0,3,13,0.0,0.0,0.0,0,0,2295.0834534931705,2295.0834534931705,0.0 -179,2100,2099,1,13,51,111,68,71,0,12876,0,0,0,0,2,5,3,5,2.8,3420.5818869000004,1041,0,25100.0,4,3,6,5,4,1,0,0,0,0,1,0,0,1,0,1,8964.28571429,1,1,1_1,1_0,12000.0,0,12000.0,0,3,15,0.0,0.0,0.0,0,1,1153.9369976839203,1153.9369976839203,0.0 +179,2100,2099,1,13,51,111,68,71,0,12876,0,0,0,0,2,5,3,5,2.8,3420.5818869,1041,0,25100.0,4,3,6,5,4,1,0,0,0,0,1,0,0,1,0,1,8964.28571429,1,1,1_1,1_0,12000.0,0,12000.0,0,3,15,0.0,0.0,0.0,0,1,1153.9369976839203,1153.9369976839203,0.0 180,2114,2113,1,1,21,111,65,20,1,1290,0,0,20,306,1,2,0,2,1.5,3427.64388441,0,11000,5787.0,1,3,8,7,3,1,0,1,0,0,0,1,0,1,1,0,3858.0,1,1,1_1,1_0,0.0,0,0.0,0,2,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -181,2119,2118,0,0,50,112,68,71,0,12908,0,0,0,0,2,5,2,4,2.3,2127.44620395,12740,0,20435.0,4,3,8,0,4,0,0,0,1,0,0,0,0,1,0,0,8884.782608700001,1,1,1_1,1_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -182,2122,2121,8,8,30,112,63,50,0,12910,0,0,0,0,1,4,2,4,2.1,1506.67056133,3957,0,20135.0,1,2,8,0,4,1,0,0,1,0,0,0,0,0,0,1,9588.095238099999,1,1,1_0,1_1,30000.0,0,30000.0,0,7,7,0.0,30.0,3.3,1,0,3202.442028130005,3202.442028130005,0.0 -183,2124,2123,2,15,46,111,47,20,0,12912,0,0,0,62,2,4,3,5,2.4,1875.45690491,520,0,21589.0,1,3,8,6,4,1,0,0,0,0,1,0,0,1,0,1,8995.41666667,1,1,1_1,1_0,8333.0,0,8333.0,0,4,15,88.5,12.333333333299999,3.3,0,1,801.3130834750089,801.3130834750089,0.0 +181,2119,2118,0,0,50,112,68,71,0,12908,0,0,0,0,2,5,2,4,2.3,2127.44620395,12740,0,20435.0,4,3,8,0,4,0,0,0,1,0,0,0,0,1,0,0,8884.7826087,1,1,1_1,1_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +182,2122,2121,8,8,30,112,63,50,0,12910,0,0,0,0,1,4,2,4,2.1,1506.67056133,3957,0,20135.0,1,2,8,0,4,1,0,0,1,0,0,0,0,0,0,1,9588.0952381,1,1,1_0,1_1,30000.0,0,30000.0,0,7,7,0.0,30.0,3.3,1,0,3202.442028130005,3202.442028130005,0.0 +183,2124,2123,2,15,46,111,47,20,0,12912,0,0,0,62,2,4,3,5,2.4,1875.45690491,520,0,21589.0,1,3,8,6,4,1,0,0,0,0,1,0,0,1,0,1,8995.41666667,1,1,1_1,1_0,8333.0,0,8333.0,0,4,15,88.5,12.3333333333,3.3,0,1,801.3130834750089,801.3130834750089,0.0 184,2138,2137,0,0,72,111,78,71,0,12928,0,0,0,0,0,4,0,2,1.5,7224.36159657,0,0,11240.0,5,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,7493.33333333,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 185,2140,2139,3,26,85,111,77,30,0,1293,0,0,0,0,0,3,0,2,1.5,3481.83528081,0,0,13555.0,5,4,8,7,5,2,0,0,0,0,0,1,0,0,2,0,9036.66666667,1,1,1_0,1_0,5482.0,0,0.0,5482,20,25,0.0,0.0,0.0,0,0,527.1568851086042,0.0,527.1568851086042 186,2162,2161,0,0,43,111,55,71,0,12959,0,0,0,540,1,4,3,4,1.9,4430.40576042,2631,0,17573.0,1,3,6,5,2,0,0,0,0,0,1,0,0,1,0,0,9248.94736842,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -229,7 +229,7 @@ 227,2671,2670,0,5,51,111,54,10,0,13676,0,0,0,0,1,7,2,3,2.0,1166.009473,0,0,8956.0,1,1,8,7,2,1,1,0,0,0,0,1,0,0,1,0,4478.0,1,1,1_0,1_0,20000.0,0,0.0,20000,5,5,0.0,0.0,0.0,1,0,1923.2283294732001,0.0,1923.2283294732001 228,2718,2717,5,6,24,111,47,20,0,1374,0,0,200,245,1,1,0,1,1.0,5829.32854745,2915,0,6757.0,1,3,6,5,1,1,0,1,0,0,1,0,0,1,1,0,6757.0,1,1,1_1,1_0,0.0,0,0.0,0,2,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 229,2719,2718,0,0,48,111,54,50,0,13740,0,0,0,24,2,3,1,2,1.5,1549.42445496,0,0,10842.0,4,3,5,4,2,0,0,0,0,0,1,0,0,1,0,0,7228.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,80.0,5.5,0,0,0.0,0.0,0.0 -230,2727,2726,0,0,54,221,69,50,0,1375,0,0,0,0,1,3,0,1,1.0,2981.0984430999997,0,0,7936.0,4,3,1,1,1,0,0,0,0,1,0,0,0,1,0,0,7936.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +230,2727,2726,0,0,54,221,69,50,0,1375,0,0,0,0,1,3,0,1,1.0,2981.0984431,0,0,7936.0,4,3,1,1,1,0,0,0,0,1,0,0,0,1,0,0,7936.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 231,2730,2729,2,19,33,300,85,50,0,13753,0,0,0,0,1,3,2,4,2.1,1626.33290097,520,0,16756.0,6,3,0,0,4,1,0,0,1,0,0,0,0,1,1,0,7979.04761905,1,1,1_1,1_1,20000.0,0,0.0,20000,5,21,60.0,7.5,3.3,1,0,2134.9613520866696,0.0,2134.9613520866696 232,2734,2733,3,12,39,111,68,71,0,13757,0,0,0,140,1,3,2,4,2.1,3548.58038396,0,0,19100.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,0,1,9095.23809524,1,1,1_1,1_0,27500.0,0,27500.0,0,5,12,60.5,40.0,0.0,0,1,2644.43895302565,2644.43895302565,0.0 233,2736,2735,2,2,70,112,77,70,0,13760,0,0,0,0,0,6,0,1,1.0,1834.91227466,4212,0,7390.0,5,1,7,0,1,1,0,0,1,0,0,0,0,0,0,1,7390.0,1,1,1_0,1_1,5000.0,0,5000.0,0,3,3,0.0,0.0,0.0,0,0,533.7403380216674,533.7403380216674,0.0 @@ -291,7 +291,7 @@ 289,3391,3390,0,0,41,111,22,50,0,14630,0,0,0,0,1,3,5,7,3.4,1672.97033737,0,0,21860.0,1,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,6429.41176471,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 290,3403,3402,0,0,83,111,77,70,0,1465,0,0,0,413,0,1,0,1,1.0,3410.01712379,0,0,9254.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,9254.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 291,3447,3446,12,12,39,120,11,44,0,1471,0,0,0,460,2,4,1,3,1.8,3751.57679357,2133,0,4849.0,1,3,0,2,4,2,0,0,0,1,0,0,0,0,1,1,2693.88888889,1,1,1_0,1_0,28000.0,0,3000.0,25000,2,16,48.5,20.0,3.3,0,1,2692.51966126248,288.48424942098006,2404.0354118415003 -292,3457,3456,0,0,19,111,84,41,0,14723,0,0,0,400,0,1,0,1,1.0,3723.5340699000003,0,0,6172.0,3,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,6172.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +292,3457,3456,0,0,19,111,84,41,0,14723,0,0,0,400,0,1,0,1,1.0,3723.5340699,0,0,6172.0,3,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,6172.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 293,3458,3457,0,0,85,111,86,70,0,14726,0,0,0,285,0,2,0,1,1.0,2936.79074947,0,0,8429.0,6,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,8429.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 294,3475,3474,11,15,41,400,69,31,0,14749,0,440,0,141,2,6,2,4,2.1,2624.30683527,2602,0,18840.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,8971.42857143,1,1,1_1,1_1,10000.0,0,10000.0,0,6,13,25.8,20.0,0.0,0,0,1067.4806760433348,1067.4806760433348,0.0 295,3479,3478,4,17,22,111,47,31,0,14753,0,0,0,300,1,2,0,1,1.0,3436.28426602,0,0,3321.0,2,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,3321.0,1,1,1_1,1_0,15000.0,0,0.0,15000,16,16,0.0,20.0,1.1,1,1,1442.4212471049002,0.0,1442.4212471049002 @@ -321,10 +321,10 @@ 319,3704,3703,8,8,29,111,56,43,0,15055,0,0,0,166,1,4,1,2,1.3,4574.68842873,0,0,11961.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,9200.76923077,1,1,1_1,1_0,9336.0,0,9336.0,0,5,8,6.5,15.0,3.3,0,1,897.7629841980898,897.7629841980898,0.0 320,3715,3714,0,0,42,111,21,71,0,1507,0,0,0,333,1,3,2,4,2.1,3222.04790651,0,0,18485.0,1,3,10,8,4,0,0,0,0,0,0,0,1,1,0,0,8802.38095238,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 321,3726,3725,3,3,76,112,78,70,0,15086,0,0,0,0,0,3,0,2,1.5,2531.54162047,0,0,14110.0,5,1,5,0,3,1,0,0,1,0,0,0,0,0,1,0,9406.66666667,1,1,1_0,1_1,600.0,0,0.0,600,3,3,0.0,0.0,0.0,0,0,64.0488405626001,0.0,64.0488405626001 -322,3733,3732,0,0,52,111,85,42,0,15093,0,0,0,0,0,1,0,1,1.0,2267.2405188000002,0,0,2412.0,7,3,5,4,1,0,0,0,0,0,1,0,0,1,0,0,2412.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +322,3733,3732,0,0,52,111,85,42,0,15093,0,0,0,0,0,1,0,1,1.0,2267.2405188,0,0,2412.0,7,3,5,4,1,0,0,0,0,0,1,0,0,1,0,0,2412.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 323,3746,3745,1,11,48,112,45,42,2,15109,0,150,0,0,1,5,1,2,1.5,1966.47149022,0,2000,5750.0,1,2,9,0,2,2,0,1,1,0,0,0,0,0,0,2,3833.33333333,1,1,1_0,1_1,10000.0,0,10000.0,0,7,10,0.0,0.0,0.0,0,0,1067.4806760433348,1067.4806760433348,0.0 324,3747,3746,0,0,60,221,78,71,0,15110,0,0,0,0,0,1,0,1,1.0,3073.49557669,0,0,9249.0,5,3,1,3,1,0,0,0,0,1,0,0,0,1,0,0,9249.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -325,3765,3764,0,0,81,111,78,71,0,15136,0,0,0,0,0,1,0,1,1.0,3943.8037479000004,0,0,2872.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,2872.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +325,3765,3764,0,0,81,111,78,71,0,15136,0,0,0,0,0,1,0,1,1.0,3943.8037479,0,0,2872.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,2872.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 326,3781,3780,0,0,50,111,85,71,0,1516,0,0,0,38,0,2,0,1,1.0,3374.8557658,0,0,6746.0,7,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,6746.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 327,3796,3795,0,0,44,111,63,71,0,15186,0,0,0,0,1,4,2,4,2.1,2769.74581006,0,0,15602.0,4,3,7,5,4,0,0,0,0,0,1,0,0,1,0,0,7429.52380952,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 328,3807,3806,1,14,52,111,52,60,0,1520,0,0,0,80,1,1,0,1,1.0,3300.15432334,0,0,9510.0,1,3,8,6,1,1,0,1,0,0,1,0,0,1,0,1,9510.0,1,1,1_1,1_0,24336.0,0,24336.0,0,1,14,0.0,30.0,3.3,1,0,2340.18423130299,2340.18423130299,0.0 @@ -332,7 +332,7 @@ 330,3832,3831,8,12,28,111,63,50,0,1524,0,0,99999,33,1,4,3,5,2.4,2255.60055724,1821,0,21431.0,4,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,8929.58333333,1,1,1_1,1_0,4784.0,0,0.0,4784,1,14,0.0,16.0,1.1,0,0,460.0362164099895,0.0,460.0362164099895 331,3835,3834,0,0,22,111,84,20,0,15242,0,0,0,397,0,1,0,1,1.0,3057.72769522,0,0,5062.0,3,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,5062.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 332,3837,3836,0,0,41,111,85,71,0,15244,0,0,0,0,0,5,7,8,3.9,1610.45273286,0,0,32254.0,6,3,8,6,2,0,0,0,0,0,1,0,0,1,0,0,8270.25641026,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -333,3843,3842,7,15,43,111,67,50,0,15252,0,0,0,0,2,5,4,6,2.9,954.2275188980001,2602,0,22254.0,4,3,6,4,4,1,0,0,0,0,1,0,0,1,0,1,7673.79310345,1,1,1_1,1_0,12000.0,0,12000.0,0,3,15,0.0,0.0,0.0,0,1,1153.9369976839203,1153.9369976839203,0.0 +333,3843,3842,7,15,43,111,67,50,0,15252,0,0,0,0,2,5,4,6,2.9,954.227518898,2602,0,22254.0,4,3,6,4,4,1,0,0,0,0,1,0,0,1,0,1,7673.79310345,1,1,1_1,1_0,12000.0,0,12000.0,0,3,15,0.0,0.0,0.0,0,1,1153.9369976839203,1153.9369976839203,0.0 334,3845,3844,5,5,31,111,52,30,0,15255,0,0,80,595,1,3,1,2,1.3,2835.92031309,1300,0,12417.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,1,0,9551.53846154,1,1,1_0,1_0,7784.0,0,0.0,7784,1,9,0.0,2.0,0.0,0,0,748.5204658309696,0.0,748.5204658309696 335,3851,3850,12,12,51,111,67,70,0,15262,0,0,0,0,1,4,0,1,1.0,1918.22224813,0,0,5670.0,4,2,8,7,1,1,0,0,0,0,0,1,0,0,1,0,5670.0,1,1,1_0,1_0,500.0,0,0.0,500,12,12,0.0,0.0,0.0,0,0,48.080708236830006,0.0,48.080708236830006 336,3857,3856,0,0,33,111,21,71,0,15273,0,0,0,0,2,3,1,3,1.8,3200.58046524,0,0,15310.0,1,4,6,4,4,0,0,0,0,0,1,0,0,0,0,0,8505.55555556,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -349,7 +349,7 @@ 347,3960,3959,0,0,89,111,86,71,0,15416,0,0,0,0,0,3,0,1,1.0,3854.89845149,0,0,7800.0,5,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,7800.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 348,3963,3962,0,0,60,300,78,71,0,1542,0,0,0,0,0,6,0,1,1.0,4004.06604608,0,0,5090.0,7,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,5090.0,1,1,1_0,1_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 349,3965,3964,0,13,20,111,84,31,0,15422,0,0,0,450,0,3,0,2,1.5,3691.46874966,0,0,12317.0,3,3,9,7,5,1,0,1,0,0,0,1,0,1,1,0,8211.33333333,1,1,1_1,1_0,10000.0,0,0.0,10000,6,15,0.0,0.0,0.0,1,0,961.6141647366001,0.0,961.6141647366001 -350,3983,3982,2,2,47,400,11,50,0,15447,0,300,0,0,2,5,0,2,1.5,2319.1742376999996,1817,0,9548.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,6365.33333333,1,1,1_0,1_1,12250.0,0,12250.0,0,3,6,0.0,0.0,0.0,1,0,1307.6638281530854,1307.6638281530854,0.0 +350,3983,3982,2,2,47,400,11,50,0,15447,0,300,0,0,2,5,0,2,1.5,2319.1742377,1817,0,9548.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,6365.33333333,1,1,1_0,1_1,12250.0,0,12250.0,0,3,6,0.0,0.0,0.0,1,0,1307.6638281530854,1307.6638281530854,0.0 351,3998,3997,7,11,55,111,63,70,0,15471,0,0,0,0,1,2,0,1,1.0,1451.45440632,0,0,8036.0,4,3,6,4,1,1,0,0,0,0,1,0,0,1,1,0,8036.0,1,1,1_1,1_0,5000.0,0,0.0,5000,4,11,0.0,0.0,0.0,0,1,480.80708236830003,0.0,480.80708236830003 352,4005,4004,0,0,18,111,84,41,0,15480,0,0,0,167,0,3,0,1,1.0,2210.63849542,0,0,1504.0,3,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,1504.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 353,4008,4007,0,4,25,111,46,41,0,15486,0,300,0,440,1,3,0,1,1.0,3165.14177962,0,0,9261.0,2,3,10,8,1,2,1,1,0,0,0,0,1,1,0,2,9261.0,1,1,1_1,1_0,60400.0,0,60400.0,0,6,7,0.0,0.0,0.0,0,0,5808.149555009064,5808.149555009064,0.0 @@ -362,7 +362,7 @@ 360,4102,4101,0,13,21,111,84,41,0,15616,0,0,0,55,0,3,0,2,1.5,3088.08720547,0,0,2894.0,3,3,8,7,3,1,0,0,0,0,0,1,0,1,1,0,1929.33333333,1,1,1_1,1_0,10000.0,0,0.0,10000,6,15,0.0,0.0,0.0,1,0,961.6141647366001,0.0,961.6141647366001 361,4123,4122,2,12,49,111,44,10,0,15647,0,50,0,0,1,4,0,1,1.0,2948.21053556,0,0,7541.0,1,3,8,7,1,1,1,1,0,0,0,1,0,0,0,1,7541.0,1,1,1_0,1_0,1000.0,0,1000.0,0,7,11,0.0,0.0,0.0,0,1,96.16141647366001,96.16141647366001,0.0 362,4137,4136,0,7,20,111,84,41,0,1567,0,60,0,165,0,1,0,1,1.0,3688.42034302,0,0,7847.0,3,4,9,7,1,1,0,1,0,0,0,1,0,1,0,1,7847.0,1,1,1_1,1_0,12144.0,0,12144.0,0,1,7,0.0,0.0,0.0,1,1,1167.784241656127,1167.784241656127,0.0 -363,4140,4139,2,14,28,120,12,43,0,15679,0,0,0,0,1,3,0,1,1.0,2156.1140671999997,0,0,8990.0,1,3,0,0,1,1,1,0,1,0,0,0,0,0,0,1,8990.0,1,1,1_0,1_1,15000.0,0,15000.0,0,5,15,0.0,2.0,1.1,1,0,1601.2210140650025,1601.2210140650025,0.0 +363,4140,4139,2,14,28,120,12,43,0,15679,0,0,0,0,1,3,0,1,1.0,2156.1140672,0,0,8990.0,1,3,0,0,1,1,1,0,1,0,0,0,0,0,0,1,8990.0,1,1,1_0,1_1,15000.0,0,15000.0,0,5,15,0.0,2.0,1.1,1,0,1601.2210140650025,1601.2210140650025,0.0 364,4152,4151,0,0,19,111,84,41,0,157,0,0,0,0,0,1,0,1,1.0,3329.98398493,0,0,2400.0,3,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,2400.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 365,4153,4152,0,4,20,111,84,30,0,1570,0,0,0,400,0,2,0,1,1.0,3146.30042001,0,0,2416.0,3,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,2416.0,1,1,1_0,1_0,6000.0,0,0.0,6000,2,4,0.0,0.0,0.0,0,0,576.9684988419601,0.0,576.9684988419601 366,4154,4153,3,3,73,111,72,70,0,15702,0,0,0,0,0,4,0,1,1.0,1765.76111168,0,0,9359.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,9359.0,1,1,1_0,1_0,10000.0,0,0.0,10000,2,3,0.0,0.0,0.0,0,0,961.6141647366001,0.0,961.6141647366001 @@ -402,10 +402,10 @@ 400,4435,4434,16,19,44,400,56,50,0,1856,0,180,0,0,1,3,0,1,1.0,3112.33681489,1373,0,9082.0,4,3,0,1,1,1,0,1,0,1,0,0,0,1,0,1,9082.0,1,1,1_1,1_0,2000.0,0,2000.0,0,8,19,0.0,0.0,0.0,0,0,192.32283294732002,192.32283294732002,0.0 401,4454,4453,0,0,67,111,77,41,0,1882,0,0,0,63,1,4,1,4,2.5,2990.08635808,1040,0,20474.0,5,3,10,8,5,0,0,0,0,0,0,0,1,1,0,0,8189.6,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 402,4466,4465,0,13,36,111,67,10,2,19,0,0,0,468,1,4,3,5,2.4,1957.33868444,2080,4000,15737.0,4,3,9,7,4,1,0,0,0,0,0,1,0,0,0,1,6557.08333333,1,1,1_0,1_0,21336.0,0,21336.0,0,1,13,0.0,0.0,0.0,0,0,2051.69998188201,2051.69998188201,0.0 -403,4484,4483,1,3,64,111,22,43,0,1927,0,0,0,0,1,5,1,3,1.8,5800.63038367,4498,0,16499.0,5,1,9,7,4,3,0,0,0,0,0,1,0,0,0,3,9166.11111111,1,1,1_0,1_0,10000.0,0,10000.0,0,2,3,0.0,6.666666666669999,0.0,1,0,961.6141647366001,961.6141647366001,0.0 +403,4484,4483,1,3,64,111,22,43,0,1927,0,0,0,0,1,5,1,3,1.8,5800.63038367,4498,0,16499.0,5,1,9,7,4,3,0,0,0,0,0,1,0,0,0,3,9166.11111111,1,1,1_0,1_0,10000.0,0,10000.0,0,2,3,0.0,6.66666666667,0.0,1,0,961.6141647366001,961.6141647366001,0.0 404,4508,4507,8,13,46,111,64,50,0,1957,0,99999,0,0,2,4,5,7,3.4,1376.94517094,3120,0,31870.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,0,1,9373.52941176,1,1,1_1,1_0,30000.0,0,30000.0,0,2,16,0.0,2.5,1.1,0,0,2884.8424942098004,2884.8424942098004,0.0 405,4529,4528,4,10,62,111,78,71,0,1987,0,0,0,580,0,3,1,3,2.0,3145.16521936,1560,0,13846.0,5,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,6923.0,1,1,1_1,1_0,12000.0,0,12000.0,0,7,8,0.0,0.0,0.0,0,0,1153.9369976839203,1153.9369976839203,0.0 -406,4539,4538,4,8,57,112,22,50,0,1999,0,0,0,0,1,7,0,2,1.5,1634.4614167000002,1560,0,-2518.0,1,4,8,0,3,1,0,0,1,0,0,0,0,0,0,1,-1678.66666667,1,1,1_0,1_1,15000.0,0,15000.0,0,4,6,0.0,0.0,0.0,0,1,1601.2210140650025,1601.2210140650025,0.0 +406,4539,4538,4,8,57,112,22,50,0,1999,0,0,0,0,1,7,0,2,1.5,1634.4614167,1560,0,-2518.0,1,4,8,0,3,1,0,0,1,0,0,0,0,0,0,1,-1678.66666667,1,1,1_0,1_1,15000.0,0,15000.0,0,4,6,0.0,0.0,0.0,0,1,1601.2210140650025,1601.2210140650025,0.0 407,4570,4569,0,0,65,111,86,71,0,2050,0,0,0,0,0,3,0,1,1.0,5154.73030191,0,0,7090.0,6,3,6,5,1,0,0,0,0,0,1,0,0,1,0,0,7090.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 408,4593,4592,7,7,38,111,37,10,0,2076,0,0,0,0,1,4,2,3,1.6,1446.27587286,0,0,14265.0,4,3,9,7,2,1,0,0,0,0,0,1,0,0,0,1,8915.625,1,1,1_0,1_0,18625.0,0,18625.0,0,3,7,0.0,0.0,0.0,0,1,1791.0063818219176,1791.0063818219176,0.0 409,4604,4603,0,9,23,111,84,31,0,2087,0,350,0,420,0,2,0,1,1.0,3655.02866916,0,0,6084.0,3,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,6084.0,1,1,1_0,1_0,5500.0,0,5500.0,0,9,9,0.0,0.0,0.0,0,0,528.88779060513,528.88779060513,0.0 @@ -415,7 +415,7 @@ 413,4636,4635,6,8,85,111,72,71,0,2129,0,0,0,0,0,3,0,2,1.5,2880.96635535,0,0,12623.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,8415.33333333,1,1,1_0,1_0,3000.0,0,3000.0,0,7,7,0.0,0.0,0.0,0,0,288.48424942098006,288.48424942098006,0.0 414,4663,4662,0,0,49,111,67,71,0,2166,0,0,0,0,1,2,0,1,1.0,2534.66572955,0,0,8263.0,4,3,7,6,1,0,0,0,0,0,1,0,0,1,0,0,8263.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 415,4674,4673,0,0,19,111,84,41,0,2178,0,0,0,0,0,1,0,1,1.0,8893.30685974,0,0,2484.0,3,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,2484.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -416,4681,4680,0,13,59,111,78,60,0,2188,0,0,0,0,0,5,1,2,1.5,3184.7281393000003,1040,0,7310.0,4,1,9,7,2,1,0,0,0,0,0,1,0,0,1,0,4873.33333333,1,1,1_0,1_0,5000.0,0,0.0,5000,12,12,0.0,0.0,0.0,0,0,480.80708236830003,0.0,480.80708236830003 +416,4681,4680,0,13,59,111,78,60,0,2188,0,0,0,0,0,5,1,2,1.5,3184.7281393,1040,0,7310.0,4,1,9,7,2,1,0,0,0,0,0,1,0,0,1,0,4873.33333333,1,1,1_0,1_0,5000.0,0,0.0,5000,12,12,0.0,0.0,0.0,0,0,480.80708236830003,0.0,480.80708236830003 417,4689,4688,2,17,43,300,85,50,0,2199,0,0,0,0,0,6,3,5,2.6,1484.2366172,5462,0,22990.0,7,1,0,0,4,1,0,0,1,0,0,0,0,0,0,1,8842.30769231,1,1,1_0,1_1,7859.0,0,7859.0,0,17,19,0.0,0.0,0.0,0,0,838.9330633024568,838.9330633024568,0.0 418,4692,4691,4,4,68,111,77,70,0,2201,0,0,0,0,0,4,0,1,1.0,2968.58231019,2600,0,5730.0,5,4,5,4,1,1,0,0,0,0,1,0,0,0,1,0,5730.0,1,1,1_0,1_0,3000.0,0,0.0,3000,19,3,0.0,0.0,0.0,0,0,288.48424942098006,0.0,288.48424942098006 419,4698,4697,0,0,22,111,85,71,0,2209,0,0,0,0,0,4,3,8,3.7,2397.10998896,0,0,14653.0,6,3,6,4,5,0,0,0,0,0,1,0,0,1,0,0,3960.27027027,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -428,13 +428,13 @@ 426,4763,4762,3,4,85,112,72,70,0,2303,0,0,0,0,0,2,0,2,1.5,1505.73001286,2080,0,10470.0,5,1,6,1,3,1,0,0,0,1,0,0,0,0,1,0,6980.0,1,1,1_0,1_0,2000.0,0,0.0,2000,6,6,0.0,0.0,0.0,0,0,192.32283294732002,0.0,192.32283294732002 427,4764,4763,9,14,34,400,21,50,0,2304,0,0,0,0,1,5,0,1,1.0,3074.49231915,0,0,-4251.0,1,4,0,0,1,2,0,0,1,0,0,0,0,0,2,0,-4251.0,1,1,1_0,1_1,10000.0,0,0.0,10000,12,12,0.0,0.0,0.0,0,0,1067.4806760433348,0.0,1067.4806760433348 428,4772,4771,0,0,47,111,56,50,0,2315,0,0,0,231,2,3,2,4,2.1,1821.20644905,0,0,17310.0,4,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,8242.85714286,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -429,4783,4782,1,6,48,111,46,41,2,2334,0,0,0,151,1,4,3,4,2.3,934.4828374289999,1570,7800,22102.0,4,3,7,6,2,1,0,0,0,0,1,0,0,1,0,1,9609.56521739,1,1,1_1,1_0,23500.0,0,23500.0,0,4,7,0.0,20.0,0.0,0,1,2259.79328713101,2259.79328713101,0.0 +429,4783,4782,1,6,48,111,46,41,2,2334,0,0,0,151,1,4,3,4,2.3,934.482837429,1570,7800,22102.0,4,3,7,6,2,1,0,0,0,0,1,0,0,1,0,1,9609.56521739,1,1,1_1,1_0,23500.0,0,23500.0,0,4,7,0.0,20.0,0.0,0,1,2259.79328713101,2259.79328713101,0.0 430,4785,4784,0,9,51,112,22,50,0,2336,0,0,220,900,2,6,4,6,2.9,1032.10965901,0,0,-3123.0,1,3,8,0,4,2,0,0,1,0,0,0,0,0,1,1,-1076.89655172,1,1,1_0,1_1,22000.0,0,5000.0,17000,5,5,34.0,7.5,0.0,0,0,2348.457487295337,533.7403380216674,1814.7171492736693 431,4796,4795,2,22,42,112,47,50,0,2351,0,90,0,0,2,3,1,3,1.8,4180.98651937,3078,0,16220.0,1,2,9,1,4,3,0,0,0,1,0,0,0,0,1,2,9011.11111111,1,1,1_0,1_0,2000.0,0,2000.0,0,11,20,146.0,17.5,3.3,1,1,192.32283294732002,192.32283294732002,0.0 432,4797,4796,0,0,59,111,78,70,0,2352,0,0,0,218,1,3,1,2,1.5,3119.25864185,0,0,13154.0,5,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,8769.33333333,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 433,4798,4797,0,0,28,111,46,31,0,2353,0,0,0,0,1,2,0,1,1.0,3093.78097513,0,0,3458.0,4,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,3458.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,22.5,120.0,1.1,0,0,0.0,0.0,0.0 434,4802,4801,3,20,37,111,56,50,0,2358,0,0,0,0,1,4,2,3,1.8,3132.33916464,0,0,16091.0,4,3,9,7,2,1,0,0,0,0,0,1,0,1,1,0,8939.44444444,1,1,1_1,1_0,11000.0,0,0.0,11000,4,20,0.0,0.0,0.0,1,0,1057.77558121026,0.0,1057.77558121026 -435,4815,4814,0,0,30,111,52,20,0,2378,0,0,0,75,1,2,0,1,1.0,3472.9455285999998,0,0,8010.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,8010.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +435,4815,4814,0,0,30,111,52,20,0,2378,0,0,0,75,1,2,0,1,1.0,3472.9455286,0,0,8010.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,8010.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 436,4819,4818,0,0,37,111,84,20,0,2384,0,0,0,0,0,3,0,1,1.0,3794.71163165,0,0,1800.0,3,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,1800.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 437,4832,4831,5,5,44,111,63,50,0,2400,0,10,0,0,1,2,0,1,1.0,3197.07255455,0,0,51.0,4,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,51.0,1,1,1_0,1_0,41226.0,0,41226.0,0,8,8,0.0,0.0,0.0,0,0,3964.3505555431075,3964.3505555431075,0.0 438,4866,4865,0,22,73,400,72,70,0,2453,0,0,0,0,0,3,0,1,1.0,3855.77997865,0,0,6055.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,6055.0,1,1,1_0,1_1,8000.0,0,0.0,8000,3,21,0.0,0.0,0.0,0,0,853.9845408346679,0.0,853.9845408346679 @@ -457,10 +457,10 @@ 455,5020,5019,0,0,21,111,46,42,0,2670,0,0,0,233,1,2,0,1,1.0,3386.40171167,0,0,5495.0,2,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,5495.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,40.0,1.1,0,0,0.0,0.0,0.0 456,5075,5074,0,0,69,111,86,71,0,275,0,0,0,5,0,3,0,2,1.5,3360.85287749,0,0,12750.0,6,3,9,7,5,0,0,0,0,0,0,1,0,1,0,0,8500.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 457,5090,5089,0,0,21,111,54,43,0,2774,0,0,0,282,1,2,0,1,1.0,4989.16660657,0,0,3558.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,3558.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,134.5,180.0,5.5,0,0,0.0,0.0,0.0 -458,5110,5109,0,0,19,111,84,41,0,280,0,0,0,0,0,4,0,1,1.0,3564.6237280999994,0,0,2192.0,3,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,2192.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +458,5110,5109,0,0,19,111,84,41,0,280,0,0,0,0,0,4,0,1,1.0,3564.6237281,0,0,2192.0,3,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,2192.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 459,5117,5116,21,25,74,120,72,50,0,2809,0,0,0,0,0,4,0,2,1.5,3423.46154513,1757,0,13041.0,5,1,0,0,3,3,0,0,1,0,0,0,0,0,3,0,8694.0,1,1,1_0,1_1,2000.0,0,0.0,2000,24,24,0.0,0.0,0.0,1,0,213.49613520866697,0.0,213.49613520866697 460,5125,5124,0,0,19,111,84,41,0,2820,0,0,0,357,0,1,0,1,1.0,4048.08936556,0,0,4683.0,3,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,4683.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -461,5133,5132,2,4,46,111,43,44,0,2833,0,0,0,0,1,3,1,2,1.3,3611.4381325000004,0,0,12412.0,1,1,8,6,2,1,0,0,0,0,1,0,0,0,1,0,9547.69230769,1,1,1_0,1_0,25000.0,0,0.0,25000,3,8,0.0,0.0,0.0,0,0,2404.0354118415003,0.0,2404.0354118415003 +461,5133,5132,2,4,46,111,43,44,0,2833,0,0,0,0,1,3,1,2,1.3,3611.4381325,0,0,12412.0,1,1,8,6,2,1,0,0,0,0,1,0,0,0,1,0,9547.69230769,1,1,1_0,1_0,25000.0,0,0.0,25000,3,8,0.0,0.0,0.0,0,0,2404.0354118415003,0.0,2404.0354118415003 462,5138,5137,0,0,32,111,85,50,0,284,0,0,0,0,0,3,1,3,1.8,2264.5039001,0,0,15520.0,7,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,8622.22222222,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 463,5172,5171,0,0,28,400,85,71,0,2893,0,0,0,405,0,4,3,4,1.9,3359.88256794,0,0,17446.0,6,3,0,0,2,0,0,0,1,0,0,0,0,1,0,0,9182.10526316,1,1,1_1,1_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 464,5186,5185,0,0,87,111,72,70,0,2910,0,0,0,0,0,3,0,1,1.0,3304.90696625,0,0,8042.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,8042.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -502,7 +502,7 @@ 500,5510,5509,0,3,44,111,85,41,0,3355,0,0,0,754,2,4,2,4,2.5,4027.85978128,0,0,16972.0,6,3,10,8,4,1,1,0,0,0,0,0,1,1,1,0,6788.8,1,1,1_1,1_0,18000.0,0,0.0,18000,12,0,0.0,1.5,0.0,0,1,1730.9054965258802,0.0,1730.9054965258802 501,5517,5516,2,26,42,300,21,41,0,3365,0,0,0,0,1,4,3,4,2.1,2201.1140281,0,0,18030.0,1,1,0,0,2,1,0,0,1,0,0,0,0,0,0,1,8585.71428571,1,1,1_0,1_1,19572.0,0,19572.0,0,11,22,0.0,0.0,0.0,1,0,2089.273179152015,2089.273179152015,0.0 502,5561,5560,0,0,21,111,42,42,0,3424,0,0,0,269,1,2,0,1,1.0,4113.73634245,0,0,7800.0,3,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,7800.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,40.0,1.1,0,0,0.0,0.0,0.0 -503,5565,5564,6,8,52,112,22,42,0,3430,0,0,0,181,2,5,1,2,1.5,2871.3641118,0,0,12052.0,1,3,9,2,2,1,0,0,0,1,0,0,0,1,0,1,8034.66666667,1,1,1_1,1_0,10000.0,0,10000.0,0,4,7,0.0,7.333333333330001,1.1,0,1,961.6141647366001,961.6141647366001,0.0 +503,5565,5564,6,8,52,112,22,42,0,3430,0,0,0,181,2,5,1,2,1.5,2871.3641118,0,0,12052.0,1,3,9,2,2,1,0,0,0,1,0,0,0,1,0,1,8034.66666667,1,1,1_1,1_0,10000.0,0,10000.0,0,4,7,0.0,7.33333333333,1.1,0,1,961.6141647366001,961.6141647366001,0.0 504,5583,5582,12,12,84,300,72,70,0,346,0,0,0,0,0,4,0,2,1.5,1699.97805677,1758,0,10285.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,6856.66666667,1,1,1_0,1_1,5000.0,0,5000.0,0,12,12,0.0,0.0,0.0,0,0,533.7403380216674,533.7403380216674,0.0 505,5585,5584,0,0,76,111,75,60,0,3463,0,0,0,0,0,2,0,1,1.0,3536.10862374,0,0,8500.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,8500.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 506,5639,5638,5,12,24,111,34,41,0,3527,0,0,0,0,1,2,0,1,1.0,3630.97031943,0,0,6771.0,3,2,8,7,1,1,0,1,0,0,0,1,0,1,1,0,6771.0,1,1,1_1,1_0,2500.0,0,0.0,2500,2,12,38.8,30.0,3.3,0,1,240.40354118415001,0.0,240.40354118415001 @@ -518,7 +518,7 @@ 516,5757,5756,0,10,69,400,13,50,0,3682,0,0,0,0,1,4,0,1,1.0,1546.29423344,3640,0,9450.0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,9450.0,1,1,1_0,1_1,22500.0,0,22500.0,0,4,10,0.0,0.0,0.0,0,0,2401.831521097504,2401.831521097504,0.0 517,5814,5813,2,2,23,111,46,31,0,3759,0,99999,0,219,1,1,0,1,1.0,3898.98256284,1337,0,1948.0,3,3,9,7,1,1,1,1,0,0,0,1,0,1,0,1,1948.0,1,1,1_1,1_0,17572.0,0,17572.0,0,1,2,0.0,0.0,0.0,0,0,1689.7484102751537,1689.7484102751537,0.0 518,5824,5823,0,20,36,111,68,20,0,3770,0,250,0,432,1,4,2,3,1.8,2203.48262558,0,0,12062.0,1,3,7,6,2,1,0,1,0,0,1,0,0,1,0,1,6701.11111111,1,1,1_1,1_0,10716.0,0,10716.0,0,0,20,0.0,23.3333333333,3.3,0,1,1030.4657389317406,1030.4657389317406,0.0 -519,5826,5825,4,23,38,112,62,50,0,3772,0,0,0,0,2,5,5,7,3.0,881.7587424889999,1144,0,17854.0,4,3,4,0,4,1,0,0,1,0,0,0,0,1,0,1,5951.33333333,1,1,1_1,1_1,8716.0,0,8716.0,0,1,23,0.0,0.0,0.0,0,0,930.4161572393708,930.4161572393708,0.0 +519,5826,5825,4,23,38,112,62,50,0,3772,0,0,0,0,2,5,5,7,3.0,881.758742489,1144,0,17854.0,4,3,4,0,4,1,0,0,1,0,0,0,0,1,0,1,5951.33333333,1,1,1_1,1_1,8716.0,0,8716.0,0,1,23,0.0,0.0,0.0,0,0,930.4161572393708,930.4161572393708,0.0 520,5834,5833,0,0,71,111,78,70,0,3784,0,0,0,0,0,5,0,1,1.0,2776.4086314,0,0,8800.0,5,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,8800.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 521,5861,5860,8,18,26,400,13,42,0,3815,0,100,0,0,2,6,2,4,2.1,5407.29098551,2600,0,17921.0,1,2,0,0,4,2,0,0,1,0,0,0,0,1,0,2,8533.80952381,1,1,1_1,1_1,5294.0,0,5294.0,0,2,16,0.0,0.0,0.0,0,1,565.1242698973415,565.1242698973415,0.0 522,5866,5865,0,0,20,111,84,42,0,3820,0,0,0,38,0,1,0,1,1.0,3517.9389648,0,0,4102.0,3,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,4102.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -539,7 +539,7 @@ 537,5998,5997,4,16,72,400,11,70,0,4006,0,0,0,0,1,4,0,1,1.0,2303.25070913,1300,0,4311.0,1,1,0,0,1,1,1,0,1,0,0,0,0,0,1,0,4311.0,1,1,1_0,1_1,13200.0,0,0.0,13200,11,11,47.0,40.0,3.3,1,0,1409.074492377202,0.0,1409.074492377202 538,6009,6008,1,11,35,112,11,43,2,402,0,0,0,0,1,3,3,5,2.6,2504.90236121,0,2500,19552.0,1,3,7,0,4,2,0,0,1,0,0,0,0,0,1,1,7520.0,1,1,1_0,1_1,22650.0,0,17650.0,5000,10,10,177.5,42.5,3.3,0,1,2417.843731238154,1884.1033932164862,533.7403380216674 539,6021,6020,5,18,64,111,78,71,0,4037,0,0,0,120,0,3,0,2,1.5,3098.58403256,1820,0,13300.0,5,3,4,4,3,1,0,0,0,0,1,0,0,1,0,1,8866.66666667,1,1,1_1,1_0,3500.0,0,3500.0,0,2,18,0.0,0.0,0.0,0,0,336.56495765781,336.56495765781,0.0 -540,6053,6052,0,12,25,111,56,10,0,4081,0,0,200,260,1,4,0,2,1.5,2512.0806380999998,2600,0,12370.0,3,3,8,6,5,1,1,1,0,0,1,0,0,1,1,0,8246.66666667,1,1,1_1,1_0,2500.0,0,0.0,2500,2,12,38.8,30.0,3.3,0,1,240.40354118415001,0.0,240.40354118415001 +540,6053,6052,0,12,25,111,56,10,0,4081,0,0,200,260,1,4,0,2,1.5,2512.0806381,2600,0,12370.0,3,3,8,6,5,1,1,1,0,0,1,0,0,1,1,0,8246.66666667,1,1,1_1,1_0,2500.0,0,0.0,2500,2,12,38.8,30.0,3.3,0,1,240.40354118415001,0.0,240.40354118415001 541,6058,6057,0,13,28,111,56,50,0,4087,0,0,0,353,1,4,2,3,1.6,2212.17374192,2654,0,7042.0,1,3,8,7,2,1,0,0,0,0,0,1,0,1,1,0,4401.25,1,1,1_1,1_0,6657.0,0,0.0,6657,1,13,0.0,2.5,0.0,0,1,640.1465494651546,0.0,640.1465494651546 542,6068,6067,1,10,22,211,63,60,2,4100,0,0,0,237,1,4,0,2,1.5,3424.17841245,0,1000,11931.0,1,3,1,2,3,1,0,0,0,1,0,0,0,1,0,1,7954.0,1,1,1_1,1_0,15000.0,0,15000.0,0,10,10,0.0,0.0,0.0,0,0,1442.4212471049002,1442.4212471049002,0.0 543,6071,6070,0,0,29,111,85,71,0,4104,0,0,0,8,0,4,2,4,2.1,3802.72900283,0,0,16577.0,7,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,7893.80952381,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -560,7 +560,7 @@ 558,6291,6290,0,0,25,111,84,43,0,440,0,0,0,149,0,1,0,1,1.0,4495.27203615,0,0,6598.0,3,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,6598.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 559,6298,6297,2,2,55,112,85,71,0,4411,0,0,0,0,1,5,3,5,3.0,3117.98565578,0,0,22010.0,7,3,5,0,4,1,0,0,1,0,0,0,0,1,0,1,7336.66666667,1,1,1_1,1_1,15000.0,0,15000.0,0,3,3,0.0,0.0,0.0,0,1,1601.2210140650025,1601.2210140650025,0.0 560,6301,6300,0,0,49,111,85,50,0,4417,0,0,0,0,1,4,2,3,2.0,1892.11441907,0,0,17980.0,7,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,8990.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -561,6302,6301,0,0,19,111,84,41,0,4419,0,0,0,0,0,2,0,1,1.0,4028.3078524999996,0,0,2400.0,3,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,2400.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +561,6302,6301,0,0,19,111,84,41,0,4419,0,0,0,0,0,2,0,1,1.0,4028.3078525,0,0,2400.0,3,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,2400.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 562,6308,6307,9,9,59,120,11,50,0,4426,0,0,0,0,1,4,0,2,1.5,1032.98446421,0,0,1790.0,1,1,0,1,3,1,0,0,0,1,0,0,0,0,0,1,1193.33333333,1,1,1_0,1_0,5000.0,0,5000.0,0,4,8,0.0,0.0,0.0,0,0,480.80708236830003,480.80708236830003,0.0 563,6329,6328,1,9,22,111,84,10,2,4455,0,100,0,70,0,2,0,1,1.0,3075.72593653,0,6000,4093.0,3,3,8,7,1,1,1,1,0,0,0,1,0,1,0,1,4093.0,1,1,1_1,1_0,5500.0,0,5500.0,0,9,9,0.0,0.0,0.0,0,0,528.88779060513,528.88779060513,0.0 564,6344,6343,0,20,41,111,85,20,0,4478,0,0,0,148,0,3,1,2,1.5,2836.77426858,3303,0,11582.0,5,3,6,4,2,1,0,0,0,0,1,0,0,1,1,0,7721.33333333,1,1,1_1,1_0,10000.0,0,0.0,10000,3,14,0.0,0.0,0.0,0,0,961.6141647366001,0.0,961.6141647366001 @@ -603,7 +603,7 @@ 601,6714,6713,0,0,20,111,67,71,0,5006,0,0,0,700,1,3,2,4,2.1,3068.78943997,0,0,10447.0,1,3,9,7,4,0,0,0,0,0,0,1,0,0,0,0,4974.76190476,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 602,6715,6714,0,0,56,111,72,20,0,5007,0,0,0,0,0,3,0,1,1.0,3831.10924931,0,0,5259.0,7,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,5259.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 603,6722,6721,5,14,47,120,54,42,0,5016,0,99999,250,0,2,6,1,3,2.0,2560.47756323,5032,0,18090.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,9045.0,1,1,1_0,1_1,30311.0,0,15311.0,15000,2,14,0.0,0.0,0.0,0,1,3235.6406771549523,1634.4196630899503,1601.2210140650025 -604,6725,6724,0,11,31,120,21,50,2,502,0,110,0,0,2,4,3,5,2.6,2314.73942422,4416,2800,24270.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,0,1,9334.61538462,1,1,1_0,1_1,15000.0,0,15000.0,0,2,7,27.0,15.333333333299999,9.9,1,0,1601.2210140650025,1601.2210140650025,0.0 +604,6725,6724,0,11,31,120,21,50,2,502,0,110,0,0,2,4,3,5,2.6,2314.73942422,4416,2800,24270.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,0,1,9334.61538462,1,1,1_0,1_1,15000.0,0,15000.0,0,2,7,27.0,15.3333333333,9.9,1,0,1601.2210140650025,1601.2210140650025,0.0 605,6738,6737,0,0,75,300,77,50,0,5037,0,0,0,0,0,3,0,2,1.5,2692.34272059,1560,0,14330.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,9553.33333333,1,1,1_0,1_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 606,6743,6742,0,5,34,120,56,50,2,5045,0,100,0,189,2,5,1,3,1.8,1255.53806444,0,12000,14145.0,1,3,0,0,4,2,1,1,1,0,0,0,0,1,1,1,7858.33333333,1,1,1_1,1_1,28000.0,0,25000.0,3000,2,5,13.0,25.0,3.3,0,1,2988.945892921338,2668.7016901083375,320.24420281300047 607,6762,6761,0,0,18,111,84,41,0,5071,0,0,0,0,0,1,0,1,1.0,4194.86598928,0,0,8040.0,3,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,8040.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -626,13 +626,13 @@ 624,7008,7007,0,6,22,112,67,43,0,5395,0,100,0,0,2,6,3,4,2.5,1626.02632315,2236,0,15181.0,1,2,10,0,2,2,0,0,1,0,0,0,0,0,0,2,6072.4,1,1,1_0,1_1,46318.0,0,46318.0,0,4,8,259.0,38.0,3.3,0,1,4944.3569952975195,4944.3569952975195,0.0 625,7015,7014,1,4,59,212,75,20,0,5406,0,0,0,0,1,6,1,4,2.5,2703.40619781,3180,0,20529.0,5,1,3,0,5,2,0,0,1,0,0,0,0,0,1,1,8211.6,1,1,1_0,1_1,17336.0,0,17336.0,0,2,6,167.3,33.3333333333,3.3,0,1,1850.5844999887254,1850.5844999887254,0.0 626,7024,7023,0,0,36,400,47,50,0,5419,0,0,0,0,1,3,0,1,1.0,4840.44152793,0,0,7675.0,4,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,7675.0,1,1,1_1,1_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -627,7029,7028,0,0,24,111,84,41,0,5425,0,0,0,439,0,3,0,1,1.0,3104.4589871999997,0,0,7835.0,3,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,7835.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +627,7029,7028,0,0,24,111,84,41,0,5425,0,0,0,439,0,3,0,1,1.0,3104.4589872,0,0,7835.0,3,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,7835.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 628,7033,7032,0,0,60,211,86,71,0,5430,0,0,0,0,2,3,2,3,2.0,3085.24605342,0,0,13584.0,5,3,4,3,2,0,0,0,0,1,0,0,0,1,0,0,6792.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 629,7038,7037,0,14,36,111,64,71,2,5436,0,0,0,0,2,3,4,7,3.6,1656.15714496,6240,1500,32180.0,4,3,5,4,5,1,0,0,0,0,1,0,0,1,0,1,8938.88888889,1,1,1_1,1_0,15445.0,0,15445.0,0,1,10,0.0,0.0,0.0,0,0,1485.213077435679,1485.213077435679,0.0 630,7043,7042,3,13,50,400,53,50,0,5441,0,120,0,0,1,4,0,2,1.5,2477.43299656,780,0,10929.0,1,1,0,0,3,1,0,1,1,0,0,0,0,0,0,1,7286.0,1,1,1_0,1_1,25000.0,0,25000.0,0,2,13,0.0,0.0,0.0,0,1,2668.7016901083375,2668.7016901083375,0.0 631,7061,7060,1,16,21,111,84,41,0,5466,0,300,0,86,0,1,0,1,1.0,2928.33275475,3316,0,2432.0,3,3,7,5,1,1,0,1,0,0,1,0,0,1,0,1,2432.0,1,1,1_1,1_0,6881.0,0,6881.0,0,1,17,0.0,0.0,0.0,0,0,661.6867067552545,661.6867067552545,0.0 632,7070,7069,9,13,31,111,55,42,0,5479,0,0,0,132,1,1,0,1,1.0,3348.18963426,0,0,8076.0,4,3,9,7,1,1,0,0,0,0,0,1,0,1,0,1,8076.0,1,1,1_1,1_0,8000.0,0,8000.0,0,7,11,0.0,0.0,0.0,1,0,769.2913317892801,769.2913317892801,0.0 -633,7071,7070,4,11,44,300,56,50,0,548,0,0,0,0,2,4,2,4,2.3,857.8819811510001,1830,0,16230.0,1,3,0,0,4,1,0,0,1,0,0,0,0,1,0,1,7056.52173913,1,1,1_1,1_1,5000.0,0,5000.0,0,3,10,0.0,5.0,0.0,1,0,533.7403380216674,533.7403380216674,0.0 +633,7071,7070,4,11,44,300,56,50,0,548,0,0,0,0,2,4,2,4,2.3,857.881981151,1830,0,16230.0,1,3,0,0,4,1,0,0,1,0,0,0,0,1,0,1,7056.52173913,1,1,1_1,1_1,5000.0,0,5000.0,0,3,10,0.0,5.0,0.0,1,0,533.7403380216674,533.7403380216674,0.0 634,7072,7071,0,0,20,111,81,60,0,5480,0,0,0,250,2,1,0,2,1.5,4085.97827807,0,0,1440.0,4,3,9,7,5,0,0,0,0,0,0,1,0,1,0,0,960.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 635,7084,7083,0,0,20,111,84,41,0,5498,0,0,0,530,0,2,0,1,1.0,3754.61876229,0,0,6015.0,3,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,6015.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 636,7122,7121,11,11,39,111,63,41,0,5545,0,0,0,356,1,3,0,1,1.0,3769.06289096,0,0,8008.0,4,3,7,5,1,1,0,0,0,0,1,0,0,1,0,1,8008.0,1,1,1_1,1_0,8000.0,0,8000.0,0,7,11,0.0,0.0,0.0,1,0,769.2913317892801,769.2913317892801,0.0 @@ -650,7 +650,7 @@ 648,7266,7265,1,17,53,112,47,50,0,5732,0,0,0,0,1,6,3,5,3.0,871.359976563,3184,0,22091.0,1,2,10,0,4,2,0,0,1,0,0,0,0,1,0,2,7363.66666667,1,1,1_1,1_1,25781.0,0,25781.0,0,2,18,0.0,0.0,0.0,0,0,2752.071930907322,2752.071930907322,0.0 649,7288,7287,0,0,81,120,71,71,0,5769,0,0,0,0,0,2,0,1,1.0,4103.00544155,0,0,8250.0,5,4,0,2,1,0,0,0,0,1,0,0,0,0,0,0,8250.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 650,7331,7330,3,3,41,111,56,50,0,5828,0,0,0,0,1,4,2,3,1.8,1436.88395475,2886,0,11820.0,1,2,9,7,2,1,0,0,0,0,0,1,0,1,0,1,6566.66666667,1,1,1_1,1_0,24000.0,0,24000.0,0,3,3,21.0,81.6666666667,3.3,0,1,2307.8739953678405,2307.8739953678405,0.0 -651,7343,7342,12,15,48,111,21,50,0,5845,0,0,0,0,1,4,4,6,3.1,1859.10911157,0,0,23478.0,4,3,10,8,4,2,0,0,0,0,0,0,1,1,1,1,7573.548387100001,1,1,1_1,1_0,20500.0,0,20000.0,500,8,13,225.0,83.3333333333,3.3,0,0,1971.3090377100302,1923.2283294732001,48.080708236830006 +651,7343,7342,12,15,48,111,21,50,0,5845,0,0,0,0,1,4,4,6,3.1,1859.10911157,0,0,23478.0,4,3,10,8,4,2,0,0,0,0,0,0,1,1,1,1,7573.5483871,1,1,1_1,1_0,20500.0,0,20000.0,500,8,13,225.0,83.3333333333,3.3,0,0,1971.3090377100302,1923.2283294732001,48.080708236830006 652,7344,7343,0,0,21,111,84,31,0,5846,0,0,0,0,0,1,0,1,1.0,3414.02330611,0,0,9528.0,3,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,9528.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 653,7349,7348,0,0,52,111,35,71,0,5852,0,0,0,0,1,3,1,2,1.5,3237.65237645,0,0,13616.0,4,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,9077.33333333,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 654,7354,7353,8,11,44,111,43,10,0,586,0,0,150,0,1,5,1,2,1.3,3030.39858564,0,0,7589.0,1,2,9,7,2,1,1,1,0,0,0,1,0,0,1,0,5837.69230769,1,1,1_0,1_0,25000.0,0,0.0,25000,3,8,0.0,0.0,0.0,0,0,2404.0354118415003,0.0,2404.0354118415003 @@ -717,7 +717,7 @@ 715,8056,8055,2,10,49,400,13,43,0,6827,0,0,0,0,1,5,0,1,1.0,3102.15876338,2080,0,7143.0,1,2,0,0,1,1,0,0,1,0,0,0,0,0,1,0,7143.0,1,1,1_0,1_1,6000.0,0,0.0,6000,11,11,0.0,6.0,1.1,1,0,640.4884056260009,0.0,640.4884056260009 716,8072,8071,0,0,42,111,85,71,0,6845,0,0,0,230,0,3,3,4,1.9,3090.14922348,0,0,17017.0,6,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,8956.31578947,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 717,8101,8100,6,19,58,221,72,60,0,6884,0,0,0,0,0,2,0,1,1.0,3108.49038543,1040,0,7694.0,7,3,1,2,1,2,0,0,0,1,0,0,0,1,1,1,7694.0,1,1,1_1,1_0,12000.0,0,12000.0,0,3,20,0.0,0.0,0.0,0,0,1153.9369976839203,1153.9369976839203,0.0 -718,8112,8111,5,8,62,111,21,60,0,69,0,0,0,0,1,4,2,4,2.5,4490.61516802,520,0,10741.0,1,1,5,4,4,2,0,0,0,0,1,0,0,0,0,2,4296.4,1,1,1_0,1_0,10000.0,0,10000.0,0,2,3,0.0,6.666666666669999,0.0,1,0,961.6141647366001,961.6141647366001,0.0 +718,8112,8111,5,8,62,111,21,60,0,69,0,0,0,0,1,4,2,4,2.5,4490.61516802,520,0,10741.0,1,1,5,4,4,2,0,0,0,0,1,0,0,0,0,2,4296.4,1,1,1_0,1_0,10000.0,0,10000.0,0,2,3,0.0,6.66666666667,0.0,1,0,961.6141647366001,961.6141647366001,0.0 719,8135,8134,0,1,61,111,72,60,0,6934,0,0,0,104,0,2,0,1,1.0,4162.96377085,0,0,8471.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,0,1,8471.0,1,1,1_1,1_0,12381.0,0,12381.0,0,1,2,0.0,0.0,0.0,0,0,1190.5744973603846,1190.5744973603846,0.0 720,8174,8173,0,0,29,111,56,50,0,6982,0,0,0,0,1,2,0,1,1.0,2871.85420556,0,0,9136.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,9136.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 721,8175,8174,0,0,20,111,47,31,0,6983,0,0,0,0,1,1,0,1,1.0,3699.66680434,0,0,3513.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,3513.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,134.5,180.0,5.5,0,0,0.0,0.0,0.0 @@ -728,7 +728,7 @@ 726,8206,8205,1,4,39,211,56,60,0,7023,0,0,0,203,2,5,3,5,2.6,2287.09943473,0,0,18202.0,1,3,4,3,4,1,0,0,0,1,0,0,0,1,0,1,7000.76923077,1,1,1_1,1_0,15000.0,0,15000.0,0,3,3,153.9,32.3333333333,3.3,1,1,1442.4212471049002,1442.4212471049002,0.0 727,8209,8208,3,3,28,111,84,10,0,7027,0,800,0,750,0,3,0,1,1.0,3626.07620892,2600,0,264.0,3,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,264.0,1,1,1_0,1_0,12144.0,0,12144.0,0,1,7,0.0,0.0,0.0,1,1,1167.784241656127,1167.784241656127,0.0 728,8215,8214,0,0,80,112,71,71,0,7034,0,0,0,0,0,5,0,1,1.0,3297.38920546,0,0,8041.0,5,4,6,0,1,0,0,0,1,0,0,0,0,0,0,0,8041.0,1,1,1_0,1_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -729,8218,8217,0,27,58,111,47,70,0,704,0,0,0,0,2,3,1,3,2.0,1835.1724258000002,0,0,17790.0,4,4,9,7,4,2,0,0,0,0,0,1,0,0,1,1,8895.0,1,1,1_0,1_0,3000.0,0,0.0,3000,26,26,278.0,56.6666666667,3.3,1,1,288.48424942098006,0.0,288.48424942098006 +729,8218,8217,0,27,58,111,47,70,0,704,0,0,0,0,2,3,1,3,2.0,1835.1724258,0,0,17790.0,4,4,9,7,4,2,0,0,0,0,0,1,0,0,1,1,8895.0,1,1,1_0,1_0,3000.0,0,0.0,3000,26,26,278.0,56.6666666667,3.3,1,1,288.48424942098006,0.0,288.48424942098006 730,8246,8245,5,5,23,111,54,31,0,7083,0,100,0,0,1,3,0,1,1.0,3629.71147144,0,0,6461.0,4,4,9,7,1,1,0,1,0,0,0,1,0,0,0,1,6461.0,1,1,1_0,1_0,30000.0,0,30000.0,0,6,10,59.6,180.0,3.3,0,1,2884.8424942098004,2884.8424942098004,0.0 731,8268,8267,0,0,23,111,56,50,0,7113,0,0,0,140,1,3,1,2,1.3,2991.5177308,0,0,12412.0,4,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,9547.69230769,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 732,8271,8270,8,11,49,112,46,10,0,7117,0,280,0,0,2,6,1,3,2.0,2017.70612156,0,0,16556.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,2,8278.0,1,1,1_0,1_1,15000.0,0,15000.0,0,8,13,108.5,20.0,0.0,0,0,1601.2210140650025,1601.2210140650025,0.0 @@ -736,7 +736,7 @@ 734,8284,8283,0,0,54,111,56,60,0,7130,0,0,0,14,2,3,3,4,2.5,3371.32294985,0,0,18855.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,7542.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,13.5,17.5,1.1,0,0,0.0,0.0,0.0 735,8296,8295,0,0,44,111,85,41,0,7149,0,0,0,700,0,2,0,1,1.0,3833.15235465,0,0,8340.0,4,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,8340.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 736,8307,8306,0,0,20,111,84,41,0,7164,0,0,0,0,0,1,0,1,1.0,3799.82594799,0,0,4800.0,3,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,4800.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -737,8313,8312,0,10,24,111,52,42,0,7178,0,250,0,314,1,1,0,1,1.0,4352.481866800001,2080,0,5142.0,3,3,10,8,1,1,0,1,0,0,0,0,1,1,0,1,5142.0,1,1,1_1,1_0,9000.0,0,9000.0,0,6,7,0.0,0.0,0.0,1,0,865.4527482629401,865.4527482629401,0.0 +737,8313,8312,0,10,24,111,52,42,0,7178,0,250,0,314,1,1,0,1,1.0,4352.4818668,2080,0,5142.0,3,3,10,8,1,1,0,1,0,0,0,0,1,1,0,1,5142.0,1,1,1_1,1_0,9000.0,0,9000.0,0,6,7,0.0,0.0,0.0,1,0,865.4527482629401,865.4527482629401,0.0 738,8337,8336,9,9,53,112,22,50,0,7219,0,0,0,0,2,2,0,2,1.5,5872.68384939,0,0,11873.0,1,4,8,0,3,1,1,0,1,0,0,0,0,0,0,1,7915.33333333,1,1,1_0,1_1,8000.0,0,8000.0,0,8,9,20.7,20.0,3.3,0,1,853.9845408346679,853.9845408346679,0.0 739,8356,8355,1,9,31,111,54,50,2,7240,0,0,0,200,1,3,3,5,2.4,2796.25322656,3380,2000,18250.0,1,3,8,6,4,1,0,0,0,0,1,0,0,1,0,1,7604.16666667,1,1,1_1,1_0,17818.0,0,17818.0,0,8,10,37.0,6.0,3.3,0,1,1713.4041187276741,1713.4041187276741,0.0 740,8369,8368,4,11,45,112,85,43,0,7257,0,0,0,0,0,3,0,1,1.0,2566.43637732,0,0,1085.0,7,2,8,2,1,1,0,0,0,1,0,0,0,0,0,1,1085.0,1,1,1_0,1_0,5500.0,0,5500.0,0,3,13,0.0,14.0,2.22,0,0,528.88779060513,528.88779060513,0.0 @@ -791,13 +791,13 @@ 789,8776,8775,5,7,23,111,84,41,0,7808,0,0,70,101,0,1,0,1,1.0,3382.90170939,0,0,8224.0,3,3,8,6,1,1,0,1,0,0,1,0,0,1,1,0,8224.0,1,1,1_1,1_0,14859.0,0,0.0,14859,2,8,0.0,0.0,0.0,0,0,1428.862487382114,0.0,1428.862487382114 790,8779,8778,0,0,96,111,72,71,0,7811,0,0,0,359,0,3,0,1,1.0,3903.78609512,0,0,8279.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,8279.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 791,8813,8812,0,0,22,111,52,41,0,7853,0,0,0,391,1,1,0,1,1.0,3911.17828059,0,0,6728.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,6728.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -792,8838,8837,11,19,63,221,64,70,0,7887,0,0,0,0,1,4,0,3,1.8,1201.72674315,0,0,10360.0,5,1,1,3,5,1,0,0,0,1,0,0,0,0,1,0,5755.55555556,1,1,1_0,1_0,10000.0,0,0.0,10000,11,18,0.0,13.333333333299999,0.0,0,0,961.6141647366001,0.0,961.6141647366001 +792,8838,8837,11,19,63,221,64,70,0,7887,0,0,0,0,1,4,0,3,1.8,1201.72674315,0,0,10360.0,5,1,1,3,5,1,0,0,0,1,0,0,0,0,1,0,5755.55555556,1,1,1_0,1_0,10000.0,0,0.0,10000,11,18,0.0,13.3333333333,0.0,0,0,961.6141647366001,0.0,961.6141647366001 793,8845,8844,2,5,42,221,22,41,0,7895,0,146,0,0,1,3,0,1,1.0,3416.28996793,2226,0,7729.0,1,1,1,2,1,1,0,1,0,1,0,0,0,0,0,1,7729.0,1,1,1_0,1_0,41226.0,0,41226.0,0,8,8,0.0,0.0,0.0,0,0,3964.3505555431075,3964.3505555431075,0.0 794,8847,8846,11,19,38,400,13,43,0,7899,0,0,115,0,2,4,3,5,2.4,2568.67586644,2080,0,-1916.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,2,0,-798.333333333,1,1,1_1,1_1,5000.0,0,0.0,5000,14,18,0.0,12.0,0.0,1,0,533.7403380216674,0.0,533.7403380216674 795,8854,8853,0,6,19,211,81,50,0,7909,0,0,0,0,1,3,1,2,1.3,2815.39979785,0,0,10862.0,4,3,1,3,2,1,0,0,0,1,0,0,0,1,1,0,8355.38461538,1,1,1_1,1_0,7784.0,0,0.0,7784,1,9,0.0,2.0,0.0,0,0,748.5204658309696,0.0,748.5204658309696 796,8861,8860,0,0,37,111,54,41,0,792,0,0,0,0,1,2,2,3,1.8,2345.39169877,0,0,11350.0,4,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,6305.55555556,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 797,8871,8870,0,8,24,111,35,20,2,7931,0,0,0,86,1,1,0,1,1.0,3458.89994942,0,4500,8091.0,1,3,6,4,1,1,0,0,0,0,1,0,0,1,0,1,8091.0,1,1,1_1,1_0,30000.0,0,30000.0,0,6,10,59.6,180.0,3.3,0,1,2884.8424942098004,2884.8424942098004,0.0 -798,8887,8886,16,16,69,111,72,71,0,7952,0,0,0,0,0,5,0,2,1.5,3428.0683259999996,2080,0,12248.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,0,2,8165.33333333,1,1,1_0,1_0,9636.0,0,9636.0,0,1,20,0.0,0.0,0.0,0,0,926.6114091401879,926.6114091401879,0.0 +798,8887,8886,16,16,69,111,72,71,0,7952,0,0,0,0,0,5,0,2,1.5,3428.068326,2080,0,12248.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,0,2,8165.33333333,1,1,1_0,1_0,9636.0,0,9636.0,0,1,20,0.0,0.0,0.0,0,0,926.6114091401879,926.6114091401879,0.0 799,8904,8903,0,1,20,111,84,60,0,7972,0,0,0,542,0,3,0,3,2.0,3442.89541922,0,0,2096.0,3,3,9,7,5,1,0,0,0,0,0,1,0,1,0,1,1048.0,1,1,1_1,1_0,10000.0,0,10000.0,0,2,4,0.0,0.0,0.0,0,1,961.6141647366001,961.6141647366001,0.0 800,8973,8972,0,0,59,400,11,71,0,8063,0,0,0,0,2,6,1,3,2.0,2451.22392848,0,0,2005.0,1,1,0,0,4,0,0,0,1,0,0,0,0,0,0,0,1002.5,1,1,1_0,1_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 801,8987,8986,0,0,21,111,84,42,0,8082,0,0,0,101,0,1,0,1,1.0,3120.16033593,0,0,2591.0,3,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,2591.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -848,14 +848,14 @@ 846,9599,9598,1,1,43,300,55,50,1,8950,0,220,0,0,2,5,2,4,2.5,1046.49875907,1040,11600,18211.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,7284.4,1,1,1_0,1_1,14473.0,0,14473.0,0,1,1,12.0,5.0,0.0,1,0,1544.9647824375188,1544.9647824375188,0.0 847,9630,9629,2,2,35,112,47,43,0,8998,0,200,0,0,2,4,1,3,1.8,2658.69415207,0,0,17036.0,1,3,6,0,4,2,0,1,1,0,0,0,0,0,0,2,9464.44444444,1,1,1_0,1_1,14473.0,0,14473.0,0,1,1,12.0,5.0,0.0,1,0,1544.9647824375188,1544.9647824375188,0.0 848,9633,9632,0,0,65,112,77,70,0,90,0,0,0,387,0,3,0,1,1.0,4976.19928331,0,0,2486.0,5,3,9,3,1,0,0,0,0,1,0,0,0,0,0,0,2486.0,1,1,1_0,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -849,9645,9644,2,14,47,112,68,50,0,9015,0,0,180,0,1,7,3,4,2.3,986.7187052319999,0,0,17197.0,1,1,7,0,2,1,0,1,1,0,0,0,0,0,1,0,7476.95652174,1,1,1_0,1_1,12676.0,0,0.0,12676,1,10,149.5,20.0,3.3,0,1,1353.1385049525313,0.0,1353.1385049525313 +849,9645,9644,2,14,47,112,68,50,0,9015,0,0,180,0,1,7,3,4,2.3,986.718705232,0,0,17197.0,1,1,7,0,2,1,0,1,1,0,0,0,0,0,1,0,7476.95652174,1,1,1_0,1_1,12676.0,0,0.0,12676,1,10,149.5,20.0,3.3,0,1,1353.1385049525313,0.0,1353.1385049525313 850,9649,9648,2,2,56,221,63,50,0,9019,0,0,20,0,1,2,0,1,1.0,3247.88285551,2288,0,4678.0,1,3,1,2,1,1,0,1,0,1,0,0,0,0,1,0,4678.0,1,1,1_0,1_0,4000.0,0,0.0,4000,1,1,0.0,0.0,0.0,0,0,384.64566589464005,0.0,384.64566589464005 851,9655,9654,0,0,39,221,68,50,0,9024,0,0,0,0,1,3,0,1,1.0,2982.65652799,0,0,8788.0,4,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,8788.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,70.0,5.5,0,0,0.0,0.0,0.0 852,9672,9671,4,13,32,120,11,50,0,9056,0,0,200,0,1,4,2,4,2.5,2706.8874001,3120,0,22940.0,1,1,0,0,4,3,0,1,1,0,0,0,0,0,2,1,9176.0,1,1,1_0,1_1,35287.0,0,10287.0,25000,3,13,0.0,0.0,0.0,0,1,3766.819061554116,1098.1173714457786,2668.7016901083375 853,9695,9694,8,8,47,111,64,41,0,9081,0,0,0,0,1,2,0,1,1.0,2893.19062537,0,0,6060.0,4,4,10,8,1,1,0,0,0,0,0,0,1,0,0,1,6060.0,1,1,1_0,1_0,20000.0,0,20000.0,0,3,7,0.0,0.0,0.0,0,0,1923.2283294732001,1923.2283294732001,0.0 854,9718,9717,11,11,50,111,56,71,0,9109,0,0,0,0,2,4,1,2,1.5,3302.75183367,0,0,13558.0,4,3,7,5,2,1,0,0,0,0,1,0,0,1,0,1,9038.66666667,1,1,1_1,1_0,7200.0,0,7200.0,0,2,11,0.0,5.33333333333,0.0,0,1,692.3621986103522,692.3621986103522,0.0 855,9755,9754,0,0,26,111,85,60,0,9162,0,0,0,0,0,4,3,4,1.9,2316.26235267,0,0,17352.0,6,3,6,5,2,0,0,0,0,0,1,0,0,1,0,0,9132.63157895,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -856,9774,9773,10,14,47,111,54,10,0,9190,0,0,0,0,1,4,2,4,2.1,2543.97920991,0,0,19954.0,1,2,8,7,4,1,0,0,0,0,0,1,0,1,1,0,9501.904761900001,1,1,1_1,1_0,12000.0,0,0.0,12000,6,10,0.0,0.0,0.0,0,0,1153.9369976839203,0.0,1153.9369976839203 +856,9774,9773,10,14,47,111,54,10,0,9190,0,0,0,0,1,4,2,4,2.1,2543.97920991,0,0,19954.0,1,2,8,7,4,1,0,0,0,0,0,1,0,1,1,0,9501.9047619,1,1,1_1,1_0,12000.0,0,0.0,12000,6,10,0.0,0.0,0.0,0,0,1153.9369976839203,0.0,1153.9369976839203 857,9776,9775,0,9,50,300,12,71,0,9192,0,1468,0,0,2,4,2,4,2.3,2441.60140855,2860,0,19900.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,8652.17391304,1,1,1_0,1_1,20000.0,0,20000.0,0,5,9,61.5,12.5,3.3,1,0,2134.9613520866696,2134.9613520866696,0.0 858,9779,9778,0,0,20,111,84,71,0,9195,0,0,0,192,0,2,0,1,1.0,4986.15154972,0,0,1896.0,3,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,1896.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 859,9786,9785,6,6,55,111,56,50,0,9203,0,0,0,0,1,5,1,3,2.0,2271.13853336,0,0,16510.0,1,1,4,3,4,1,0,0,0,1,0,0,0,0,0,1,8255.0,1,1,1_0,1_0,15000.0,0,15000.0,0,4,6,0.0,0.0,0.0,0,0,1442.4212471049002,1442.4212471049002,0.0 @@ -868,11 +868,11 @@ 866,9918,9917,8,10,72,300,71,70,0,9395,0,0,0,0,0,3,0,1,1.0,1810.99539498,0,0,7964.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,7964.0,1,1,1_0,1_1,7292.0,0,0.0,7292,12,12,0.0,0.0,0.0,0,0,778.4069089707998,0.0,778.4069089707998 867,9923,9922,0,0,71,112,86,70,0,9405,0,0,0,0,0,5,0,1,1.0,1214.20804912,0,0,6300.0,5,1,8,0,1,0,0,0,1,0,0,0,0,0,0,0,6300.0,1,1,1_0,1_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 868,9934,9933,1,14,29,111,85,71,2,9424,0,0,200,162,1,4,3,5,2.4,3086.46970817,2080,1200,22872.0,6,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,9530.0,1,1,1_1,1_0,3000.0,0,0.0,3000,2,14,0.0,0.0,0.0,0,0,288.48424942098006,0.0,288.48424942098006 -869,9937,9936,0,0,50,111,54,50,0,9431,0,0,0,260,1,2,0,1,1.0,2813.7322121999996,0,0,8550.0,4,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,8550.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +869,9937,9936,0,0,50,111,54,50,0,9431,0,0,0,260,1,2,0,1,1.0,2813.7322122,0,0,8550.0,4,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,8550.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 870,9941,9940,0,0,20,111,55,41,0,9437,0,0,0,479,1,3,0,1,1.0,4584.8989407,0,0,7904.0,1,4,9,7,1,0,0,0,0,0,0,1,0,1,0,0,7904.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,76.0,100.0,5.56,0,0,0.0,0.0,0.0 871,9952,9951,7,11,65,111,86,41,0,9451,0,0,0,0,0,5,0,1,1.0,3303.38946829,1562,0,9114.0,6,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,9114.0,1,1,1_0,1_0,1000.0,0,0.0,1000,3,10,0.0,0.0,0.0,0,0,96.16141647366001,0.0,96.16141647366001 872,9965,9964,0,21,56,112,56,50,0,9476,0,0,0,0,1,6,1,2,1.5,1293.07348714,0,0,8208.0,5,2,9,0,2,2,0,0,1,0,0,0,0,0,1,0,5472.0,1,1,1_0,1_1,7000.0,0,0.0,7000,10,22,0.0,0.0,0.0,0,1,747.2364732303345,0.0,747.2364732303345 -873,9983,9982,2,11,59,111,78,71,0,9495,0,0,0,0,0,2,0,1,1.0,3454.5625178000005,1560,0,4888.0,7,3,6,5,1,1,0,0,0,0,1,0,0,1,0,1,4888.0,1,1,1_1,1_0,15000.0,0,15000.0,0,5,8,0.0,0.0,0.0,0,0,1442.4212471049002,1442.4212471049002,0.0 +873,9983,9982,2,11,59,111,78,71,0,9495,0,0,0,0,0,2,0,1,1.0,3454.5625178,1560,0,4888.0,7,3,6,5,1,1,0,0,0,0,1,0,0,1,0,1,4888.0,1,1,1_1,1_0,15000.0,0,15000.0,0,5,8,0.0,0.0,0.0,0,0,1442.4212471049002,1442.4212471049002,0.0 874,10012,10011,0,0,23,111,84,20,0,9535,0,0,0,485,0,2,0,2,1.5,4087.90114823,0,0,11640.0,3,3,10,8,3,0,0,0,0,0,0,0,1,1,0,0,7760.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 875,10013,10012,5,11,26,111,56,41,0,9537,0,0,300,0,2,2,1,3,1.8,4821.71875596,0,0,12540.0,1,3,5,4,4,1,0,1,0,0,1,0,0,1,1,0,6966.66666667,1,1,1_1,1_0,5000.0,0,0.0,5000,6,11,0.0,0.0,0.0,0,0,480.80708236830003,0.0,480.80708236830003 876,10024,10023,2,16,53,400,64,71,0,9552,0,0,0,0,2,5,0,2,1.5,2139.56107132,1560,0,8550.0,4,2,0,0,3,1,0,0,1,0,0,0,0,0,1,0,5700.0,1,1,1_0,1_1,5362.0,0,0.0,5362,1,18,0.0,10.0,3.3,0,1,572.3831384944363,0.0,572.3831384944363 @@ -898,7 +898,7 @@ 896,10204,10203,0,0,40,221,63,50,0,9804,0,0,0,0,1,3,1,3,1.8,2186.43549656,0,0,11600.0,4,3,1,3,4,0,0,0,0,1,0,0,0,1,0,0,6444.44444444,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 897,10208,10207,6,11,50,221,12,50,0,9810,0,200,240,0,4,4,2,4,2.5,1215.15787626,4056,0,21480.0,1,2,1,3,4,2,0,1,0,1,0,0,0,0,1,1,8592.0,1,1,1_0,1_0,19951.0,0,16337.0,3614,6,15,59.0,30.0,0.0,0,1,1918.5164200659908,1570.9890609301838,347.5273591358073 898,10212,10211,11,18,44,111,52,60,0,9815,0,0,0,115,1,5,1,3,2.0,3159.72279336,0,0,19102.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,1,0,9551.0,1,1,1_1,1_0,10899.0,0,0.0,10899,5,16,0.0,0.0,0.0,0,0,1048.0632781464205,0.0,1048.0632781464205 -899,10245,10244,14,14,86,111,86,41,0,9865,0,0,0,0,0,4,0,1,1.0,1569.7101917000002,0,0,6140.0,6,4,10,8,1,1,0,0,0,0,0,0,1,0,1,0,6140.0,1,1,1_0,1_0,8908.0,0,0.0,8908,9,9,0.0,0.0,0.0,0,0,856.6058979473634,0.0,856.6058979473634 +899,10245,10244,14,14,86,111,86,41,0,9865,0,0,0,0,0,4,0,1,1.0,1569.7101917,0,0,6140.0,6,4,10,8,1,1,0,0,0,0,0,0,1,0,1,0,6140.0,1,1,1_0,1_0,8908.0,0,0.0,8908,9,9,0.0,0.0,0.0,0,0,856.6058979473634,0.0,856.6058979473634 900,10267,10266,4,11,46,211,56,71,0,9896,0,0,0,105,1,4,1,2,1.3,3199.76914592,1576,0,10869.0,4,3,4,3,2,1,0,0,0,1,0,0,0,1,0,1,8360.76923077,1,1,1_1,1_0,9000.0,0,9000.0,0,4,10,0.0,0.0,0.0,0,0,865.4527482629401,865.4527482629401,0.0 901,10274,10273,0,0,20,111,84,41,0,9903,0,0,0,0,0,1,0,1,1.0,3742.41424205,0,0,2054.0,3,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,2054.0,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 902,10279,10278,0,0,26,111,69,60,0,9909,0,0,0,85,1,3,1,2,1.3,3101.41575401,0,0,12080.0,4,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,9292.30769231,1,1,1_1,1_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -923,9 +923,9 @@ 921,200,199,6,26,64,112,74,71,0,10269,0,0,0,523,0,4,0,1,1.0,3508.40487925,7811,0,11030.0,5,3,8,0,1,2,0,0,1,0,0,0,0,0,2,0,11030.0,2,1,2_0,2_1,12000.0,0,0.0,12000,20,22,0.0,0.0,0.0,0,0,1195.7603160064934,0.0,1195.7603160064934 922,201,200,2,4,61,112,75,60,0,10270,0,0,0,0,0,5,0,2,1.5,3104.82439918,1300,0,18272.0,5,1,9,3,3,2,0,0,0,1,0,0,0,0,1,1,12181.3333333,2,1,2_0,2_0,18150.0,0,18000.0,150,2,2,0.0,0.0,0.0,0,0,1769.422503910901,1754.7991774322984,14.623326478602488 923,209,208,3,3,64,112,78,50,0,10285,0,0,0,0,0,6,0,2,1.5,3328.64410988,1300,0,16550.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,0,1,11033.3333333,2,1,2_0,2_1,42000.0,0,42000.0,0,1,3,0.0,0.0,0.0,0,0,4185.161106022727,4185.161106022727,0.0 -924,213,212,7,18,47,111,52,60,0,10289,0,0,0,3,1,5,2,3,1.8,3147.04744888,1560,0,19505.0,1,3,4,3,2,1,0,0,0,1,0,0,0,1,1,0,10836.111111100001,2,1,2_1,2_0,5000.0,0,0.0,5000,5,21,34.0,9.0,3.3,0,1,487.44421595341623,0.0,487.44421595341623 +924,213,212,7,18,47,111,52,60,0,10289,0,0,0,3,1,5,2,3,1.8,3147.04744888,1560,0,19505.0,1,3,4,3,2,1,0,0,0,1,0,0,0,1,1,0,10836.1111111,2,1,2_1,2_0,5000.0,0,0.0,5000,5,21,34.0,9.0,3.3,0,1,487.44421595341623,0.0,487.44421595341623 925,227,226,4,16,58,112,77,70,0,10306,0,0,0,0,0,5,1,3,2.0,1941.83038314,1820,0,21343.0,5,1,6,0,4,2,0,0,1,0,0,0,0,0,0,2,10671.5,2,1,2_0,2_1,10000.0,0,10000.0,0,6,18,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 -926,228,227,8,13,51,111,67,71,0,1031,0,400,0,0,1,5,2,4,2.1,3718.5668437,0,0,22930.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,10919.047618999999,2,1,2_0,2_0,5072.0,0,5072.0,0,1,12,0.0,0.0,0.0,0,0,494.4634126631454,494.4634126631454,0.0 +926,228,227,8,13,51,111,67,71,0,1031,0,400,0,0,1,5,2,4,2.1,3718.5668437,0,0,22930.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,10919.047619,2,1,2_0,2_0,5072.0,0,5072.0,0,1,12,0.0,0.0,0.0,0,0,494.4634126631454,494.4634126631454,0.0 927,232,231,8,21,56,111,64,50,0,10314,0,0,0,280,2,3,1,3,2.0,3404.74998909,0,0,19510.0,4,3,9,7,4,1,0,0,0,0,0,1,0,1,0,1,9755.0,2,1,2_1,2_0,10000.0,0,10000.0,0,8,16,0.0,0.0,0.0,0,1,974.8884319068325,974.8884319068325,0.0 928,235,234,0,0,53,400,52,60,0,10317,0,0,0,49,1,3,0,1,1.0,3635.57733158,0,0,10446.0,4,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,10446.0,2,1,2_1,2_1,0.0,0,0.0,0,0,0,0.0,10.0,2.22,0,0,0.0,0.0,0.0 929,237,236,0,0,26,111,37,12,0,1032,0,0,0,800,1,1,0,1,1.0,4273.39105368,0,0,12160.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,12160.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,23.8,70.0,3.32,0,0,0.0,0.0,0.0 @@ -939,14 +939,14 @@ 937,326,325,5,12,43,300,69,71,0,10445,0,0,0,87,2,5,0,2,1.5,4241.95938003,2600,0,15380.0,4,3,0,0,3,2,0,0,1,0,0,0,0,1,0,2,10253.3333333,2,1,2_1,2_1,15000.0,0,15000.0,0,7,12,0.0,0.0,0.0,1,0,1494.7003950081166,1494.7003950081166,0.0 938,337,336,0,0,74,111,77,70,0,1046,0,0,0,266,0,4,0,1,1.0,1992.1929026,0,0,12368.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,12368.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 939,342,341,1,13,25,221,52,71,1,10469,0,380,0,0,1,3,0,1,1.0,3904.47929894,1742,4200,11874.0,1,3,1,2,1,1,0,1,0,1,0,0,0,0,0,1,11874.0,2,1,2_0,2_0,15000.0,0,15000.0,0,5,15,45.2,65.0,3.3,0,1,1462.3326478602487,1462.3326478602487,0.0 -940,353,352,5,11,45,400,64,50,0,10486,0,0,0,0,2,6,7,9,4.4,753.1163249130001,2080,0,44067.0,1,3,0,0,4,3,0,0,1,0,0,0,0,1,1,2,10015.227272700002,2,1,2_1,2_1,21000.0,0,18000.0,3000,6,6,199.0,42.5,3.3,0,1,2092.5805530113635,1793.6404740097398,298.94007900162336 +940,353,352,5,11,45,400,64,50,0,10486,0,0,0,0,2,6,7,9,4.4,753.116324913,2080,0,44067.0,1,3,0,0,4,3,0,0,1,0,0,0,0,1,1,2,10015.2272727,2,1,2_1,2_1,21000.0,0,18000.0,3000,6,6,199.0,42.5,3.3,0,1,2092.5805530113635,1793.6404740097398,298.94007900162336 941,371,370,1,4,49,112,35,10,0,1051,0,0,0,0,1,3,0,1,1.0,2739.91521342,3210,0,10639.0,1,2,9,0,1,1,1,0,1,0,0,0,0,0,0,0,10639.0,2,1,2_0,2_1,8000.0,0,0.0,8000,2,3,0.0,0.0,0.0,1,0,797.173544004329,0.0,797.173544004329 942,376,375,18,21,83,300,72,70,0,10517,0,0,0,0,0,5,0,1,1.0,2932.71990663,0,0,12419.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,12419.0,2,1,2_0,2_1,4000.0,0,0.0,4000,18,20,0.0,0.0,0.0,0,0,398.5867720021645,0.0,398.5867720021645 943,392,391,11,11,38,221,21,50,0,10537,0,20,0,0,1,2,0,1,1.0,3878.87952736,5200,0,10710.0,1,2,1,2,1,1,0,1,0,1,0,0,0,0,0,1,10710.0,2,1,2_0,2_0,6487.0,0,6487.0,0,0,10,0.0,0.0,0.0,0,0,632.4101257779622,632.4101257779622,0.0 944,397,396,9,9,80,111,78,70,0,10541,0,0,0,0,0,5,0,2,1.5,1200.8517459,2236,0,18635.0,5,4,8,7,3,1,0,0,0,0,0,1,0,0,1,0,12423.3333333,2,1,2_0,2_0,4000.0,0,0.0,4000,7,10,0.0,0.0,0.0,0,0,389.955372762733,0.0,389.955372762733 -945,405,404,18,24,72,111,72,50,0,1055,0,0,36,0,1,4,0,2,1.5,3154.8170864999997,1953,0,15440.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,10293.3333333,2,1,2_0,2_0,1500.0,0,0.0,1500,19,20,0.0,0.0,0.0,0,0,146.23326478602488,0.0,146.23326478602488 +945,405,404,18,24,72,111,72,50,0,1055,0,0,36,0,1,4,0,2,1.5,3154.8170865,1953,0,15440.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,10293.3333333,2,1,2_0,2_0,1500.0,0,0.0,1500,19,20,0.0,0.0,0.0,0,0,146.23326478602488,0.0,146.23326478602488 946,411,410,0,0,78,111,86,71,0,10558,0,0,0,0,0,4,0,1,1.0,2810.70766533,0,0,11385.0,6,4,7,6,1,0,0,0,0,0,1,0,0,0,0,0,11385.0,2,1,2_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 -947,414,413,0,0,37,111,85,30,0,10560,0,0,0,0,0,3,1,2,1.3,2958.5524523000004,0,0,14575.0,7,3,8,6,2,0,0,0,0,0,1,0,0,1,0,0,11211.5384615,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +947,414,413,0,0,37,111,85,30,0,10560,0,0,0,0,0,3,1,2,1.3,2958.5524523,0,0,14575.0,7,3,8,6,2,0,0,0,0,0,1,0,0,1,0,0,11211.5384615,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 948,444,443,25,30,79,400,71,71,0,10607,0,0,0,0,0,4,0,1,1.0,2853.38447547,0,0,11846.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,11846.0,2,1,2_0,2_1,1844.0,0,0.0,1844,28,28,0.0,0.0,0.0,0,0,183.7485018929978,0.0,183.7485018929978 949,448,447,3,5,77,112,72,70,0,10612,0,0,0,0,0,4,0,2,1.5,2265.28599381,0,0,17500.0,5,3,6,0,3,1,0,0,1,0,0,0,0,0,0,1,11666.6666667,2,1,2_0,2_1,10000.0,0,10000.0,0,3,4,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 950,458,457,0,0,34,111,56,71,0,1063,0,0,0,0,1,1,0,1,1.0,3518.44183047,0,0,10510.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,10510.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 @@ -961,8 +961,8 @@ 959,524,523,0,0,46,112,85,71,0,10724,0,0,0,0,0,1,0,1,1.0,2847.32333153,0,0,11450.0,7,3,8,1,1,0,0,0,0,1,0,0,0,1,0,0,11450.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 960,528,527,4,12,49,111,45,50,0,10729,0,10,25,800,2,6,2,4,2.5,2804.50529395,4191,0,29828.0,1,3,6,5,4,3,0,1,0,0,1,0,0,0,1,2,11931.2,2,1,2_0,2_0,17000.0,0,17000.0,0,14,14,55.4,20.0,3.3,0,1,1657.3103342416152,1657.3103342416152,0.0 961,550,549,2,9,28,111,65,71,0,10757,0,0,0,0,1,3,3,5,2.4,3697.45835596,780,0,28695.0,1,3,8,7,4,1,1,0,0,0,0,1,0,1,0,1,11956.25,2,1,2_1,2_0,3000.0,0,3000.0,0,2,10,0.0,0.0,0.0,0,0,292.46652957204975,292.46652957204975,0.0 -962,579,578,2,13,41,111,68,50,0,10793,0,99999,0,0,1,5,5,6,2.7,1027.97355121,2600,0,27500.0,1,3,7,5,2,1,0,1,0,0,1,0,0,1,0,1,10185.185185200002,2,1,2_1,2_0,20000.0,0,20000.0,0,2,9,0.0,0.0,0.0,0,1,1949.776863813665,1949.776863813665,0.0 -963,588,587,0,0,48,111,85,71,0,10808,0,0,0,0,1,4,2,4,2.3,3041.8792948000005,0,0,26058.0,5,3,4,4,4,0,0,0,0,0,1,0,0,1,0,0,11329.565217399999,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,3.5,0.0,0,0,0.0,0.0,0.0 +962,579,578,2,13,41,111,68,50,0,10793,0,99999,0,0,1,5,5,6,2.7,1027.97355121,2600,0,27500.0,1,3,7,5,2,1,0,1,0,0,1,0,0,1,0,1,10185.1851852,2,1,2_1,2_0,20000.0,0,20000.0,0,2,9,0.0,0.0,0.0,0,1,1949.776863813665,1949.776863813665,0.0 +963,588,587,0,0,48,111,85,71,0,10808,0,0,0,0,1,4,2,4,2.3,3041.8792948,0,0,26058.0,5,3,4,4,4,0,0,0,0,0,1,0,0,1,0,0,11329.5652174,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,3.5,0.0,0,0,0.0,0.0,0.0 964,599,598,11,12,49,111,38,12,0,10824,0,0,0,1250,1,4,3,5,3.0,2246.98143933,0,0,35605.0,1,3,10,8,4,3,0,0,0,0,0,0,1,0,1,2,11868.3333333,2,1,2_0,2_0,10000.0,0,10000.0,0,23,23,0.0,0.0,0.0,0,1,974.8884319068325,974.8884319068325,0.0 965,605,604,0,0,80,112,86,71,0,10831,0,0,0,0,0,2,0,1,1.0,2989.68148538,0,0,11560.0,6,3,9,0,1,0,0,0,1,0,0,0,0,1,0,0,11560.0,2,1,2_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 966,610,609,3,5,50,112,56,50,0,10836,0,130,0,0,1,4,1,2,1.5,2510.28255615,2976,0,16195.0,1,2,9,3,2,1,1,1,0,1,0,0,0,0,0,1,10796.6666667,2,1,2_0,2_0,17750.0,0,17750.0,0,2,2,0.0,23.5,0.0,0,1,1730.4269666346274,1730.4269666346274,0.0 @@ -970,29 +970,29 @@ 968,634,633,6,12,63,112,78,50,0,10873,0,0,0,0,0,4,0,2,1.5,1988.20330196,2653,0,15469.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,1,0,10312.6666667,2,1,2_0,2_1,10000.0,0,0.0,10000,6,15,0.0,0.0,0.0,0,0,996.4669300054111,0.0,996.4669300054111 969,669,668,0,0,80,300,86,70,0,10918,0,0,0,0,0,2,0,1,1.0,989.711520297,0,0,10792.0,6,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,10792.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 970,684,683,4,9,73,112,78,71,0,10943,0,0,0,0,0,5,0,1,1.0,2516.00051975,0,0,10782.0,5,1,9,1,1,1,0,0,0,1,0,0,0,0,0,1,10782.0,2,1,2_0,2_0,14125.0,0,14125.0,0,4,8,0.0,0.0,0.0,0,0,1377.0299100684008,1377.0299100684008,0.0 -971,686,685,4,15,47,112,52,50,0,10945,0,150,0,0,1,5,1,3,1.8,4811.73135476,1560,0,21449.0,1,1,4,0,5,2,0,1,1,0,0,0,0,0,0,2,11916.111111100001,2,1,2_0,2_1,29636.0,0,29636.0,0,7,14,0.0,0.0,0.0,0,1,2953.1293937640366,2953.1293937640366,0.0 +971,686,685,4,15,47,112,52,50,0,10945,0,150,0,0,1,5,1,3,1.8,4811.73135476,1560,0,21449.0,1,1,4,0,5,2,0,1,1,0,0,0,0,0,0,2,11916.1111111,2,1,2_0,2_1,29636.0,0,29636.0,0,7,14,0.0,0.0,0.0,0,1,2953.1293937640366,2953.1293937640366,0.0 972,687,686,5,15,46,111,68,71,0,10946,0,50,0,0,1,4,2,3,2.0,3445.87876823,6199,0,22118.0,1,1,9,7,2,2,0,0,0,0,0,1,0,0,0,2,11059.0,2,1,2_0,2_0,10000.0,0,10000.0,0,10,14,33.5,65.0,3.3,0,1,974.8884319068325,974.8884319068325,0.0 973,693,692,6,25,62,111,75,41,0,10952,0,0,0,0,0,5,0,1,1.0,1777.7717191,0,0,10138.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,1,0,10138.0,2,1,2_0,2_0,2200.0,0,0.0,2200,12,16,0.0,0.0,0.0,0,0,214.47545501950316,0.0,214.47545501950316 974,724,723,0,0,67,111,77,60,0,10998,0,0,0,240,0,4,0,2,1.5,2395.24395615,0,0,16390.0,5,3,10,8,3,0,0,0,0,0,0,0,1,1,0,0,10926.6666667,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 975,753,752,6,25,61,111,78,70,0,1104,0,0,5000,0,0,3,0,1,1.0,2902.50193222,0,0,10142.0,4,3,10,8,1,1,0,1,0,0,0,0,1,1,1,0,10142.0,2,1,2_1,2_0,9544.0,0,0.0,9544,7,16,0.0,0.0,0.0,0,0,930.4335194118809,0.0,930.4335194118809 976,773,772,2,2,62,111,56,70,0,11061,0,0,0,165,1,2,0,1,1.0,2516.74902123,1208,0,9692.0,1,3,7,5,1,1,1,0,0,0,1,0,0,1,0,0,9692.0,2,1,2_1,2_0,800.0,0,0.0,800,8,8,0.0,0.0,0.0,0,0,77.99107455254659,0.0,77.99107455254659 977,777,776,6,12,84,300,71,71,0,11067,0,0,0,0,0,3,0,1,1.0,2139.17907514,1592,0,10210.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,10210.0,2,1,2_0,2_1,400.0,0,0.0,400,9,12,0.0,0.0,0.0,0,0,39.85867720021644,0.0,39.85867720021644 -978,778,777,0,7,23,111,68,43,0,11068,0,200,0,189,2,2,0,2,1.5,3188.10361882,0,0,18088.0,1,3,7,5,3,2,0,1,0,0,1,0,0,1,0,2,12058.6666667,2,1,2_1,2_0,18625.0,0,18625.0,0,3,4,0.0,8.666666666669999,3.3,0,1,1815.7297044264753,1815.7297044264753,0.0 +978,778,777,0,7,23,111,68,43,0,11068,0,200,0,189,2,2,0,2,1.5,3188.10361882,0,0,18088.0,1,3,7,5,3,2,0,1,0,0,1,0,0,1,0,2,12058.6666667,2,1,2_1,2_0,18625.0,0,18625.0,0,3,4,0.0,8.66666666667,3.3,0,1,1815.7297044264753,1815.7297044264753,0.0 979,779,778,0,0,45,111,55,50,0,11069,0,0,0,195,1,1,1,2,1.3,3444.33558088,0,0,12617.0,4,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,9705.38461538,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 980,782,781,16,16,59,111,77,70,0,11073,0,0,0,0,0,4,0,2,1.5,1340.05253503,2080,0,17492.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,2,0,11661.3333333,2,1,2_0,2_0,6000.0,0,0.0,6000,11,17,0.0,0.0,0.0,0,0,584.9330591440995,0.0,584.9330591440995 981,790,789,6,17,76,221,77,71,0,11081,0,0,0,0,0,5,0,1,1.0,2889.58883474,1274,0,9760.0,5,4,1,3,1,1,0,0,0,1,0,0,0,0,1,0,9760.0,2,1,2_0,2_0,5891.0,0,0.0,5891,16,16,0.0,0.0,0.0,0,0,574.3067752363149,0.0,574.3067752363149 982,798,797,0,0,48,111,68,71,0,11095,0,0,0,0,2,5,3,5,2.8,2007.75292868,0,0,27730.0,4,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,9903.57142857,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 983,801,800,0,0,29,221,68,71,0,11099,0,0,0,0,1,2,0,1,1.0,8707.71603741,0,0,11474.0,1,3,1,1,1,0,0,0,0,1,0,0,0,1,0,0,11474.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,9.0,20.0,1.1,0,0,0.0,0.0,0.0 984,833,832,0,8,34,120,68,71,0,11142,0,110,0,0,2,5,3,5,2.4,3460.52416302,0,0,28362.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,11817.5,2,1,2_1,2_1,20000.0,0,20000.0,0,4,9,0.0,5.2,3.3,0,1,1992.9338600108222,1992.9338600108222,0.0 -985,835,834,0,21,78,400,71,70,0,11144,0,0,0,0,0,3,0,1,1.0,2607.8088556999996,0,0,11820.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,11820.0,2,1,2_0,2_1,3000.0,0,0.0,3000,21,21,0.0,0.0,0.0,0,0,298.94007900162336,0.0,298.94007900162336 +985,835,834,0,21,78,400,71,70,0,11144,0,0,0,0,0,3,0,1,1.0,2607.8088557,0,0,11820.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,11820.0,2,1,2_0,2_1,3000.0,0,0.0,3000,21,21,0.0,0.0,0.0,0,0,298.94007900162336,0.0,298.94007900162336 986,858,857,18,20,78,120,71,71,0,1118,0,0,0,0,0,4,0,2,1.5,2528.58672287,0,0,16200.0,5,3,0,0,3,1,0,0,1,0,0,0,0,1,0,1,10800.0,2,1,2_1,2_1,1000.0,0,1000.0,0,19,20,0.0,0.0,0.0,0,0,99.64669300054112,99.64669300054112,0.0 -987,866,865,4,17,44,300,63,50,0,1119,0,0,0,0,2,4,2,4,2.3,2882.3073246999998,2081,0,26390.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,11473.9130435,2,1,2_0,2_1,14362.0,0,14362.0,0,13,13,0.0,0.0,0.0,0,1,1431.1258048737714,1431.1258048737714,0.0 -988,871,870,8,18,29,111,85,71,0,11196,0,0,0,0,0,2,0,1,1.0,3756.0911355999997,0,0,11870.0,7,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,11870.0,2,1,2_1,2_0,4000.0,0,0.0,4000,2,18,129.0,60.0,3.3,0,1,389.955372762733,0.0,389.955372762733 -989,873,872,3,11,37,300,54,31,0,11201,0,250,0,0,2,5,1,3,1.8,2374.00073104,1560,0,18560.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,10311.111111100001,2,1,2_0,2_1,500.0,0,500.0,0,1,13,0.0,3.33333333333,1.1,0,0,49.82334650027056,49.82334650027056,0.0 +987,866,865,4,17,44,300,63,50,0,1119,0,0,0,0,2,4,2,4,2.3,2882.3073247,2081,0,26390.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,11473.9130435,2,1,2_0,2_1,14362.0,0,14362.0,0,13,13,0.0,0.0,0.0,0,1,1431.1258048737714,1431.1258048737714,0.0 +988,871,870,8,18,29,111,85,71,0,11196,0,0,0,0,0,2,0,1,1.0,3756.0911356,0,0,11870.0,7,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,11870.0,2,1,2_1,2_0,4000.0,0,0.0,4000,2,18,129.0,60.0,3.3,0,1,389.955372762733,0.0,389.955372762733 +989,873,872,3,11,37,300,54,31,0,11201,0,250,0,0,2,5,1,3,1.8,2374.00073104,1560,0,18560.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,10311.1111111,2,1,2_0,2_1,500.0,0,500.0,0,1,13,0.0,3.33333333333,1.1,0,0,49.82334650027056,49.82334650027056,0.0 990,888,887,6,13,41,400,67,50,0,1122,0,0,0,0,1,3,0,2,1.5,1915.90427706,1794,0,16190.0,1,3,0,0,3,1,0,0,1,0,0,0,0,0,1,0,10793.3333333,2,1,2_0,2_1,30000.0,0,0.0,30000,3,11,0.0,0.0,0.0,0,0,2989.4007900162333,0.0,2989.4007900162333 991,897,896,0,11,25,300,42,31,0,11230,0,250,0,0,1,1,0,1,1.0,3086.4368825,0,0,10557.0,4,4,0,0,1,1,0,1,1,0,0,0,0,0,0,1,10557.0,2,1,2_0,2_1,37781.0,0,37781.0,0,1,11,0.0,6.0,3.3,0,1,3764.751708253444,3764.751708253444,0.0 -992,915,914,4,8,44,111,63,60,0,11258,0,300,0,0,1,5,3,4,2.3,1938.25372289,0,0,23641.0,1,3,6,4,2,1,0,1,0,0,1,0,0,1,0,1,10278.695652200002,2,1,2_1,2_0,9000.0,0,9000.0,0,4,6,0.0,0.0,0.0,0,0,877.3995887161492,877.3995887161492,0.0 -993,917,916,2,7,47,400,31,10,0,11261,0,0,0,0,1,7,2,4,2.1,1292.76743994,4267,0,22371.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,1,0,10652.857142899999,2,1,2_0,2_1,18000.0,0,0.0,18000,6,7,96.0,66.6666666667,3.3,0,1,1793.6404740097398,0.0,1793.6404740097398 +992,915,914,4,8,44,111,63,60,0,11258,0,300,0,0,1,5,3,4,2.3,1938.25372289,0,0,23641.0,1,3,6,4,2,1,0,1,0,0,1,0,0,1,0,1,10278.6956522,2,1,2_1,2_0,9000.0,0,9000.0,0,4,6,0.0,0.0,0.0,0,0,877.3995887161492,877.3995887161492,0.0 +993,917,916,2,7,47,400,31,10,0,11261,0,0,0,0,1,7,2,4,2.1,1292.76743994,4267,0,22371.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,1,0,10652.8571429,2,1,2_0,2_1,18000.0,0,0.0,18000,6,7,96.0,66.6666666667,3.3,0,1,1793.6404740097398,0.0,1793.6404740097398 994,921,920,2,7,21,111,55,50,0,11266,0,150,70,237,2,3,2,3,1.8,3190.52341913,1560,0,22260.0,1,3,9,7,2,2,0,1,0,0,0,1,0,0,1,1,12366.6666667,2,1,2_0,2_0,31258.0,0,21000.0,10258,2,7,218.8,21.3333333333,3.31,0,1,3047.306260454377,2047.265707004348,1000.0405534500287 995,941,940,0,0,44,111,85,70,0,11295,0,0,0,0,0,3,5,7,3.2,1720.84880255,0,0,31526.0,6,3,9,7,5,0,0,0,0,0,0,1,0,1,0,0,9851.875,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 996,942,941,0,16,56,111,67,31,0,11296,0,120,0,0,1,2,0,1,1.0,2793.47459332,1560,0,11501.0,4,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,11501.0,2,1,2_0,2_0,22672.0,0,22672.0,0,3,16,0.0,0.0,0.0,0,0,2210.2670528191707,2210.2670528191707,0.0 @@ -1003,17 +1003,17 @@ 1001,985,984,0,23,19,111,84,42,0,11352,0,0,0,0,0,1,0,1,1.0,3128.21475239,0,0,12362.0,3,3,6,4,1,1,0,0,0,0,1,0,0,1,1,0,12362.0,2,1,2_1,2_0,12000.0,0,0.0,12000,1,20,0.0,0.0,0.0,0,0,1169.866118288199,0.0,1169.866118288199 1002,988,987,0,0,77,111,77,50,0,11357,0,0,0,189,0,2,0,1,1.0,3579.26398975,0,0,11580.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,11580.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1003,1004,1003,0,0,83,400,78,71,0,11375,0,0,0,0,0,4,0,1,1.0,3802.37931498,0,0,11380.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,11380.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1004,1024,1023,7,8,48,111,35,71,0,11398,0,0,0,950,2,4,2,4,2.1,3652.21201743,0,0,24450.0,1,3,10,8,4,1,1,0,0,0,0,0,1,0,1,0,11642.857142899999,2,1,2_0,2_0,8000.0,0,0.0,8000,2,12,77.5,120.0,5.5,0,0,779.910745525466,0.0,779.910745525466 -1005,1059,1058,11,11,43,120,64,50,0,1145,0,0,280,259,1,5,3,5,2.6,4164.27537818,2080,0,31166.0,1,3,0,0,4,1,0,1,1,0,0,0,0,1,1,0,11986.923076899999,2,1,2_1,2_1,20000.0,0,0.0,20000,3,9,161.0,17.5,3.3,0,1,1992.9338600108222,0.0,1992.9338600108222 +1004,1024,1023,7,8,48,111,35,71,0,11398,0,0,0,950,2,4,2,4,2.1,3652.21201743,0,0,24450.0,1,3,10,8,4,1,1,0,0,0,0,0,1,0,1,0,11642.8571429,2,1,2_0,2_0,8000.0,0,0.0,8000,2,12,77.5,120.0,5.5,0,0,779.910745525466,0.0,779.910745525466 +1005,1059,1058,11,11,43,120,64,50,0,1145,0,0,280,259,1,5,3,5,2.6,4164.27537818,2080,0,31166.0,1,3,0,0,4,1,0,1,1,0,0,0,0,1,1,0,11986.9230769,2,1,2_1,2_1,20000.0,0,0.0,20000,3,9,161.0,17.5,3.3,0,1,1992.9338600108222,0.0,1992.9338600108222 1006,1111,1110,2,9,47,300,56,60,0,11516,0,0,0,0,1,4,2,3,1.8,1543.00136306,2046,0,22225.0,1,3,0,0,2,1,1,0,1,0,0,0,0,1,0,1,12347.2222222,2,1,2_1,2_1,10000.0,0,10000.0,0,4,9,123.5,43.3333333333,1.1,0,0,996.4669300054111,996.4669300054111,0.0 1007,1129,1128,14,14,40,400,62,31,0,11541,0,200,0,0,1,3,2,3,1.6,3465.19616918,1749,0,19638.0,1,2,0,0,2,1,0,1,1,0,0,0,0,1,0,1,12273.75,2,1,2_1,2_1,26400.0,0,26400.0,0,6,15,40.0,75.0,3.31,0,1,2630.6726952142853,2630.6726952142853,0.0 -1008,1143,1142,2,6,29,111,64,71,0,11561,0,130,0,270,2,3,1,3,1.8,3678.86632725,0,0,22526.0,1,3,8,6,4,2,0,0,0,0,1,0,0,1,0,2,12514.444444399998,2,1,2_1,2_0,18625.0,0,18625.0,0,3,4,0.0,8.666666666669999,3.3,0,1,1815.7297044264753,1815.7297044264753,0.0 +1008,1143,1142,2,6,29,111,64,71,0,11561,0,130,0,270,2,3,1,3,1.8,3678.86632725,0,0,22526.0,1,3,8,6,4,2,0,0,0,0,1,0,0,1,0,2,12514.4444444,2,1,2_1,2_0,18625.0,0,18625.0,0,3,4,0.0,8.66666666667,3.3,0,1,1815.7297044264753,1815.7297044264753,0.0 1009,1154,1153,16,20,84,400,71,50,0,11576,0,0,0,0,0,5,0,2,1.5,1783.00727391,0,0,16787.0,5,4,0,0,3,1,0,0,1,0,0,0,0,0,1,0,11191.3333333,2,1,2_0,2_1,1000.0,0,0.0,1000,19,20,0.0,0.0,0.0,0,0,99.64669300054112,0.0,99.64669300054112 1010,1173,1172,1,5,40,221,56,71,2,11603,0,0,0,0,1,4,1,2,1.3,3210.48404152,0,5200,15471.0,1,3,1,2,2,1,1,0,0,1,0,0,0,1,1,0,11900.7692308,2,1,2_1,2_0,16568.0,0,0.0,16568,1,2,0.0,9.0,3.31,0,1,1615.1951539832398,0.0,1615.1951539832398 1011,1177,1176,0,0,90,111,86,70,0,11611,0,0,0,0,0,2,0,1,1.0,2826.54403809,0,0,9640.0,6,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,9640.0,2,1,2_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 1012,1181,1180,16,16,75,120,71,71,0,11616,0,0,0,0,0,6,0,1,1.0,3119.23194543,1768,0,9774.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,9774.0,2,1,2_0,2_1,500.0,0,0.0,500,15,15,0.0,0.0,0.0,0,0,49.82334650027056,0.0,49.82334650027056 1013,1185,1184,0,0,56,111,68,70,0,11622,0,0,0,348,3,4,2,3,2.0,1689.85920364,0,0,22808.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,11404.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1014,1223,1222,1,18,45,221,63,71,2,11677,0,325,0,0,1,5,4,6,3.1,1162.68172106,3380,1500,32125.0,1,3,1,2,4,2,0,0,0,1,0,0,0,1,0,2,10362.903225799999,2,1,2_1,2_0,26000.0,0,26000.0,0,2,14,0.0,0.0,0.0,0,1,2534.709922957765,2534.709922957765,0.0 +1014,1223,1222,1,18,45,221,63,71,2,11677,0,325,0,0,1,5,4,6,3.1,1162.68172106,3380,1500,32125.0,1,3,1,2,4,2,0,0,0,1,0,0,0,1,0,2,10362.9032258,2,1,2_1,2_0,26000.0,0,26000.0,0,2,14,0.0,0.0,0.0,0,1,2534.709922957765,2534.709922957765,0.0 1015,1229,1228,5,9,64,111,78,71,0,11687,0,0,0,292,0,3,0,1,1.0,2722.62984707,0,0,11420.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,0,1,11420.0,2,1,2_0,2_0,7000.0,0,7000.0,0,6,9,0.0,0.0,0.0,0,0,682.4219023347827,682.4219023347827,0.0 1016,1234,1233,7,15,67,221,78,50,0,11694,0,0,0,111,0,4,0,2,1.5,4046.93882325,3900,0,15825.0,5,3,1,2,3,2,0,0,0,1,0,0,0,1,2,0,10550.0,2,1,2_1,2_0,3000.0,0,0.0,3000,5,13,0.0,0.0,0.0,0,0,292.46652957204975,0.0,292.46652957204975 1017,1236,1235,8,8,44,111,34,10,0,11697,0,300,0,0,2,5,2,4,2.3,1825.34666098,8164,0,23320.0,1,2,9,7,4,2,1,0,0,0,0,1,0,1,0,2,10139.1304348,2,1,2_1,2_0,9816.0,0,9816.0,0,7,9,0.0,0.0,0.0,0,1,956.9504847597468,956.9504847597468,0.0 @@ -1030,9 +1030,9 @@ 1028,1416,1415,1,23,42,112,62,42,0,11942,0,0,0,0,2,4,2,4,2.3,1749.96312412,2081,0,28740.0,1,1,7,1,4,1,0,0,0,1,0,0,0,0,1,0,12495.6521739,2,1,2_0,2_0,20000.0,0,0.0,20000,2,16,0.0,0.0,0.0,0,0,1949.776863813665,0.0,1949.776863813665 1029,1425,1424,1,1,72,111,75,50,1,11951,0,0,0,0,0,3,0,2,1.5,3246.42279503,1456,16000,16009.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,10672.6666667,2,1,2_0,2_0,4703.0,0,4703.0,0,2,2,0.0,0.0,0.0,0,0,458.4900295257833,458.4900295257833,0.0 1030,1442,1441,0,0,36,111,55,41,0,11980,0,0,0,568,1,3,0,1,1.0,2617.08847434,0,0,11280.0,1,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,11280.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,20.0,2.2,0,0,0.0,0.0,0.0 -1031,1449,1448,11,17,46,111,64,41,0,11990,0,250,0,0,1,3,4,6,2.7,1195.75414287,3640,0,26620.0,1,2,10,8,4,1,0,1,0,0,0,0,1,1,0,1,9859.25925926,2,1,2_1,2_0,4101.0,0,4101.0,0,1,17,20.5,12.333333333299999,3.3,0,1,399.80174592499196,399.80174592499196,0.0 +1031,1449,1448,11,17,46,111,64,41,0,11990,0,250,0,0,1,3,4,6,2.7,1195.75414287,3640,0,26620.0,1,2,10,8,4,1,0,1,0,0,0,0,1,1,0,1,9859.25925926,2,1,2_1,2_0,4101.0,0,4101.0,0,1,17,20.5,12.3333333333,3.3,0,1,399.80174592499196,399.80174592499196,0.0 1032,1461,1460,0,0,49,111,67,70,0,12006,0,0,0,366,1,5,4,5,2.6,870.702039408,0,0,30420.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,11700.0,2,1,2_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 -1033,1463,1462,1,13,43,111,52,71,2,12008,0,0,100,0,2,4,4,6,3.1,3010.52369605,3147,2000,35690.0,1,2,9,7,4,1,0,1,0,0,0,1,0,1,1,0,11512.903225799999,2,1,2_1,2_0,8000.0,0,0.0,8000,2,11,68.8,26.0,3.3,1,1,779.910745525466,0.0,779.910745525466 +1033,1463,1462,1,13,43,111,52,71,2,12008,0,0,100,0,2,4,4,6,3.1,3010.52369605,3147,2000,35690.0,1,2,9,7,4,1,0,1,0,0,0,1,0,1,1,0,11512.9032258,2,1,2_1,2_0,8000.0,0,0.0,8000,2,11,68.8,26.0,3.3,1,1,779.910745525466,0.0,779.910745525466 1034,1465,1464,0,0,80,112,77,50,0,12010,0,0,0,0,0,4,0,1,1.0,5028.17851681,0,0,12125.0,5,1,8,3,1,0,0,0,0,1,0,0,0,0,0,0,12125.0,2,1,2_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 1035,1468,1467,14,19,77,112,71,71,0,12015,0,0,0,0,0,4,0,2,1.5,3416.74981491,0,0,18270.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,1,0,12180.0,2,1,2_0,2_1,5500.0,0,0.0,5500,12,19,0.0,0.0,0.0,0,0,548.0568115029762,0.0,548.0568115029762 1036,1486,1485,0,0,51,111,56,71,0,12039,0,0,0,0,1,4,2,3,1.8,2903.37856359,0,0,19872.0,1,3,8,6,2,0,0,0,0,0,1,0,0,1,0,0,11040.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,31.5,38.0,5.5,0,0,0.0,0.0,0.0 @@ -1046,23 +1046,23 @@ 1044,1563,1562,17,17,83,112,78,70,0,12140,0,0,0,0,0,3,0,2,1.5,1602.72724045,0,0,16410.0,5,1,7,1,3,1,0,0,0,1,0,0,0,0,1,0,10940.0,2,1,2_0,2_0,1000.0,0,0.0,1000,17,17,0.0,0.0,0.0,0,0,97.48884319068326,0.0,97.48884319068326 1045,1571,1570,0,0,77,211,77,70,0,1215,0,0,0,276,0,2,0,1,1.0,2820.39523024,0,0,11175.0,5,3,3,3,1,0,0,0,0,1,0,0,0,1,0,0,11175.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1046,1582,1581,0,4,43,221,47,43,0,12169,0,1500,0,417,1,3,2,3,1.6,5714.51436126,0,0,19505.0,1,3,1,2,2,2,1,1,0,1,0,0,0,0,1,1,12190.625,2,1,2_0,2_0,18000.0,0,18000.0,0,3,6,68.0,30.0,0.0,0,1,1754.7991774322984,1754.7991774322984,0.0 -1047,1585,1584,2,14,48,111,63,50,0,12171,0,80,0,254,2,4,1,3,1.8,3276.67305778,520,0,20222.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,11234.444444399998,2,1,2_1,2_0,13891.0,0,13891.0,0,1,14,297.0,55.0,3.3,0,1,1354.217520761781,1354.217520761781,0.0 +1047,1585,1584,2,14,48,111,63,50,0,12171,0,80,0,254,2,4,1,3,1.8,3276.67305778,520,0,20222.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,11234.4444444,2,1,2_1,2_0,13891.0,0,13891.0,0,1,14,297.0,55.0,3.3,0,1,1354.217520761781,1354.217520761781,0.0 1048,1588,1587,0,0,68,300,71,71,0,1218,0,0,0,0,0,2,0,2,1.5,3208.64713007,0,0,16130.0,5,1,0,0,5,0,0,0,1,0,0,0,0,0,0,0,10753.3333333,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1049,1593,1592,0,0,22,111,56,60,0,12189,0,0,0,34,1,3,1,2,1.3,7807.71234732,0,0,15461.0,4,3,8,6,2,0,0,0,0,0,1,0,0,1,0,0,11893.076923100001,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,15.0,0.0,0,1,0.0,0.0,0.0 +1049,1593,1592,0,0,22,111,56,60,0,12189,0,0,0,34,1,3,1,2,1.3,7807.71234732,0,0,15461.0,4,3,8,6,2,0,0,0,0,0,1,0,0,1,0,0,11893.0769231,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,15.0,0.0,0,1,0.0,0.0,0.0 1050,1595,1594,3,13,42,111,46,50,0,12190,0,0,150,0,1,5,2,3,2.0,1267.71081537,1561,0,23200.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,1,0,11600.0,2,1,2_0,2_0,8000.0,0,0.0,8000,11,11,0.0,16.6666666667,3.3,0,1,779.910745525466,0.0,779.910745525466 -1051,1621,1620,0,0,35,111,56,71,0,12230,0,0,0,0,2,3,3,4,2.1,2365.21836708,0,0,25874.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,12320.952381000001,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1051,1621,1620,0,0,35,111,56,71,0,12230,0,0,0,0,2,3,3,4,2.1,2365.21836708,0,0,25874.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,12320.952381,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1052,1630,1629,0,0,101,111,77,71,0,12245,0,0,0,0,0,3,0,1,1.0,2715.48647883,0,0,11640.0,5,1,6,4,1,0,0,0,0,0,1,0,0,0,0,0,11640.0,2,1,2_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 1053,1642,1641,9,9,81,400,72,70,0,12266,0,0,0,0,0,4,0,2,1.5,1859.47543033,0,0,17728.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,11818.6666667,2,1,2_0,2_0,10000.0,0,0.0,10000,8,8,0.0,0.0,0.0,0,0,974.8884319068325,0.0,974.8884319068325 1054,1643,1642,6,6,71,120,71,71,0,12267,0,0,0,0,0,3,0,2,1.5,3637.15466701,2183,0,18160.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,12106.6666667,2,1,2_0,2_1,6000.0,0,0.0,6000,7,7,0.0,0.0,0.0,0,0,597.8801580032467,0.0,597.8801580032467 1055,1660,1659,4,8,42,221,62,60,0,12292,0,340,0,0,2,5,2,4,2.3,3108.19081528,1041,0,27777.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,12076.9565217,2,1,2_0,2_0,9816.0,0,9816.0,0,7,9,0.0,0.0,0.0,0,1,956.9504847597468,956.9504847597468,0.0 -1056,1663,1662,0,22,35,111,63,71,0,12297,0,0,99999,0,1,3,1,3,1.8,4647.89611938,1040,0,22570.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,12538.888888899999,2,1,2_1,2_0,6000.0,0,0.0,6000,17,19,0.0,0.0,0.0,0,0,584.9330591440995,0.0,584.9330591440995 -1057,1664,1663,10,13,41,111,62,60,0,12298,0,99999,0,329,1,5,4,6,3.3,3545.85853069,0,0,40500.0,1,3,10,8,4,2,0,1,0,0,0,0,1,1,0,2,12272.727272700002,2,1,2_1,2_0,8000.0,0,8000.0,0,3,20,118.5,22.5,3.3,0,1,779.910745525466,779.910745525466,0.0 -1058,1675,1674,0,18,54,400,42,31,0,12313,0,0,370,0,1,3,0,1,1.0,2419.0506133000004,1820,0,10863.0,1,4,0,0,1,1,1,1,1,0,0,0,0,0,1,0,10863.0,2,1,2_0,2_1,9000.0,0,0.0,9000,5,16,0.0,0.0,0.0,0,1,896.8202370048699,0.0,896.8202370048699 -1059,1683,1682,6,27,67,111,72,71,0,12322,0,0,0,50,0,2,0,1,1.0,2736.6611174000004,0,0,11188.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,11188.0,2,1,2_1,2_0,2200.0,0,0.0,2200,12,16,0.0,0.0,0.0,0,0,214.47545501950316,0.0,214.47545501950316 -1060,1688,1687,3,16,38,111,47,12,0,12332,0,230,0,149,2,3,2,4,2.1,2457.32503726,2652,0,22475.0,4,3,9,7,4,2,0,0,0,0,0,1,0,1,0,2,10702.380952399999,2,1,2_1,2_0,24353.0,0,24353.0,0,12,14,0.0,0.0,0.0,0,1,2374.1457982227093,2374.1457982227093,0.0 +1056,1663,1662,0,22,35,111,63,71,0,12297,0,0,99999,0,1,3,1,3,1.8,4647.89611938,1040,0,22570.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,12538.8888889,2,1,2_1,2_0,6000.0,0,0.0,6000,17,19,0.0,0.0,0.0,0,0,584.9330591440995,0.0,584.9330591440995 +1057,1664,1663,10,13,41,111,62,60,0,12298,0,99999,0,329,1,5,4,6,3.3,3545.85853069,0,0,40500.0,1,3,10,8,4,2,0,1,0,0,0,0,1,1,0,2,12272.7272727,2,1,2_1,2_0,8000.0,0,8000.0,0,3,20,118.5,22.5,3.3,0,1,779.910745525466,779.910745525466,0.0 +1058,1675,1674,0,18,54,400,42,31,0,12313,0,0,370,0,1,3,0,1,1.0,2419.0506133,1820,0,10863.0,1,4,0,0,1,1,1,1,1,0,0,0,0,0,1,0,10863.0,2,1,2_0,2_1,9000.0,0,0.0,9000,5,16,0.0,0.0,0.0,0,1,896.8202370048699,0.0,896.8202370048699 +1059,1683,1682,6,27,67,111,72,71,0,12322,0,0,0,50,0,2,0,1,1.0,2736.6611174,0,0,11188.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,11188.0,2,1,2_1,2_0,2200.0,0,0.0,2200,12,16,0.0,0.0,0.0,0,0,214.47545501950316,0.0,214.47545501950316 +1060,1688,1687,3,16,38,111,47,12,0,12332,0,230,0,149,2,3,2,4,2.1,2457.32503726,2652,0,22475.0,4,3,9,7,4,2,0,0,0,0,0,1,0,1,0,2,10702.3809524,2,1,2_1,2_0,24353.0,0,24353.0,0,12,14,0.0,0.0,0.0,0,1,2374.1457982227093,2374.1457982227093,0.0 1061,1690,1689,1,14,27,112,52,42,0,12334,0,300,0,445,1,2,0,2,1.5,3170.75613123,1145,0,18588.0,1,3,8,0,3,2,0,0,1,0,0,0,0,0,1,1,12392.0,2,1,2_0,2_1,27000.0,0,25000.0,2000,2,21,162.0,24.0,3.31,0,1,2690.4607110146103,2491.1673250135277,199.29338600108224 1062,1693,1692,13,13,45,111,67,41,0,12338,0,199998,0,0,2,4,1,3,2.0,3292.67101674,0,0,24340.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,12170.0,2,1,2_0,2_0,14000.0,0,14000.0,0,9,14,51.7,30.0,9.9,0,1,1364.8438046695653,1364.8438046695653,0.0 -1063,1707,1706,1,13,26,221,67,43,2,12355,0,100,0,0,1,4,1,3,1.8,1895.3160622,2080,1700,20750.0,4,3,1,2,4,1,0,1,0,1,0,0,0,1,0,1,11527.7777778,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.333333333299999,3.3,0,1,651.9078944160989,651.9078944160989,0.0 +1063,1707,1706,1,13,26,221,67,43,2,12355,0,100,0,0,1,4,1,3,1.8,1895.3160622,2080,1700,20750.0,4,3,1,2,4,1,0,1,0,1,0,0,0,1,0,1,11527.7777778,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.3333333333,3.3,0,1,651.9078944160989,651.9078944160989,0.0 1064,1711,1710,0,9,22,111,84,10,0,12361,0,0,0,318,0,1,0,1,1.0,4197.02726698,0,0,11645.0,3,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,11645.0,2,1,2_1,2_0,10704.0,0,0.0,10704,10,10,0.0,0.0,0.0,0,0,1043.5205775130735,0.0,1043.5205775130735 1065,1714,1713,0,0,76,111,86,71,0,12364,0,0,0,0,1,4,1,2,1.5,2901.94378446,0,0,15564.0,5,4,8,7,2,0,0,0,0,0,0,1,0,0,0,0,10376.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,27.6,8.0,3.3,0,0,0.0,0.0,0.0 1066,1732,1731,0,0,87,211,86,70,0,1239,0,0,0,0,0,4,0,1,1.0,4395.74772493,0,0,12170.0,6,1,3,3,1,0,0,0,0,1,0,0,0,0,0,0,12170.0,2,1,2_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 @@ -1080,7 +1080,7 @@ 1078,1841,1840,0,0,84,221,78,71,0,12534,0,0,0,0,0,5,0,2,1.5,7382.72751186,0,0,15395.0,5,1,1,2,3,0,0,0,0,1,0,0,0,0,0,0,10263.3333333,2,1,2_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 1079,1851,1850,0,0,47,111,52,43,0,12545,0,0,0,0,1,2,0,1,1.0,2586.0992137,0,0,9668.0,4,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,9668.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,18.0,1.1,0,0,0.0,0.0,0.0 1080,1864,1863,0,10,24,111,85,60,0,12566,0,0,0,0,0,4,2,4,2.1,4365.06285941,1100,0,20650.0,6,3,8,6,4,1,0,0,0,0,1,0,0,1,0,1,9833.33333333,2,1,2_1,2_0,23781.0,0,23781.0,0,1,10,0.0,0.0,0.0,0,0,2318.382179917638,2318.382179917638,0.0 -1081,1880,1879,2,12,61,400,72,71,0,12593,0,0,350,0,3,5,2,4,2.5,4531.750625899999,0,0,27000.0,5,1,0,0,4,4,1,0,1,0,0,0,0,0,4,0,10800.0,2,1,2_0,2_1,17000.0,0,0.0,17000,12,20,92.4,25.0,3.3,0,1,1693.993781009199,0.0,1693.993781009199 +1081,1880,1879,2,12,61,400,72,71,0,12593,0,0,350,0,3,5,2,4,2.5,4531.7506259,0,0,27000.0,5,1,0,0,4,4,1,0,1,0,0,0,0,0,4,0,10800.0,2,1,2_0,2_1,17000.0,0,0.0,17000,12,20,92.4,25.0,3.3,0,1,1693.993781009199,0.0,1693.993781009199 1082,1885,1884,3,3,62,112,78,71,0,12599,0,0,0,0,0,5,2,4,2.5,3795.56022911,2542,0,26640.0,5,1,7,0,4,1,0,0,1,0,0,0,0,0,0,1,10656.0,2,1,2_0,2_1,42000.0,0,42000.0,0,1,3,0.0,0.0,0.0,0,0,4185.161106022727,4185.161106022727,0.0 1083,1911,1910,0,0,46,111,53,50,0,12631,0,0,0,0,1,4,5,7,3.2,2273.28748057,1560,0,32554.0,1,3,10,8,4,0,0,0,0,0,0,0,1,1,0,0,10173.125,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1084,1920,1919,0,0,67,111,86,71,0,12645,0,0,0,300,0,1,0,1,1.0,2973.42571877,0,0,10780.0,6,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,10780.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -1090,7 +1090,7 @@ 1088,1947,1946,0,0,82,111,71,70,0,12677,0,0,0,0,0,3,0,1,1.0,1447.8927432,0,0,9663.0,5,4,5,4,1,0,0,0,0,0,1,0,0,0,0,0,9663.0,2,1,2_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 1089,1954,1953,16,19,64,221,77,70,0,12688,0,0,0,0,0,4,0,2,1.5,2757.7571675,0,0,15675.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,1,1,10450.0,2,1,2_0,2_0,27661.0,0,18625.0,9036,3,18,0.0,0.0,0.0,0,0,2696.6388914974896,1815.7297044264753,880.9091870710138 1090,1958,1957,2,4,42,400,47,42,0,12692,0,150,0,0,2,4,2,4,2.3,3257.32037175,2132,0,27506.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,0,1,11959.1304348,2,1,2_0,2_1,30000.0,0,30000.0,0,3,4,136.5,30.0,3.3,0,0,2989.4007900162333,2989.4007900162333,0.0 -1091,1961,1960,1,11,35,111,68,43,2,12696,0,400,0,197,2,3,2,4,2.1,2424.8429812,0,3900,26258.0,1,3,6,5,4,2,0,1,0,0,1,0,0,1,0,2,12503.809523799999,2,1,2_1,2_0,17500.0,0,17500.0,0,9,13,0.0,7.5,1.1,0,0,1706.0547558369567,1706.0547558369567,0.0 +1091,1961,1960,1,11,35,111,68,43,2,12696,0,400,0,197,2,3,2,4,2.1,2424.8429812,0,3900,26258.0,1,3,6,5,4,2,0,1,0,0,1,0,0,1,0,2,12503.8095238,2,1,2_1,2_0,17500.0,0,17500.0,0,9,13,0.0,7.5,1.1,0,0,1706.0547558369567,1706.0547558369567,0.0 1092,1963,1962,4,11,65,211,77,70,0,12698,0,0,0,0,0,2,0,1,1.0,2188.92790613,0,0,10908.0,5,3,4,3,1,1,0,0,0,1,0,0,0,1,1,0,10908.0,2,1,2_1,2_0,7362.0,0,0.0,7362,1,11,0.0,0.0,0.0,0,0,717.7128635698101,0.0,717.7128635698101 1093,1982,1981,2,16,56,221,53,50,0,12720,0,15,0,222,2,3,0,2,1.5,4750.64097231,0,0,17528.0,1,3,1,2,3,1,0,1,0,1,0,0,0,0,0,1,11685.3333333,2,1,2_0,2_0,50000.0,0,50000.0,0,2,17,0.0,0.0,0.0,0,1,4874.442159534163,4874.442159534163,0.0 1094,1994,1993,5,5,53,111,52,70,0,12735,0,0,100,60,2,4,1,2,1.5,2596.66124983,4681,0,16854.0,1,3,7,6,2,1,0,1,0,0,1,0,0,1,1,0,11236.0,2,1,2_1,2_0,12000.0,0,0.0,12000,6,9,53.0,10.0,0.0,0,1,1169.866118288199,0.0,1169.866118288199 @@ -1098,10 +1098,10 @@ 1096,2029,2028,0,0,50,111,43,50,0,1279,0,0,0,11,1,3,0,1,1.0,2915.13578541,0,0,10268.0,4,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,10268.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 1097,2068,2067,19,19,64,300,78,50,0,12836,0,0,0,0,0,5,0,2,1.5,1624.15674408,3026,0,16949.0,5,1,0,0,3,2,0,1,1,0,0,0,0,0,1,1,11299.3333333,2,1,2_0,2_1,6500.0,0,3500.0,3000,16,19,0.0,0.0,0.0,0,0,647.7035045035173,348.7634255018939,298.94007900162336 1098,2071,2070,0,0,20,111,52,41,0,1284,0,0,0,317,1,2,0,1,1.0,3433.97688165,0,0,10116.0,3,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,10116.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,30.0,2.2,0,0,0.0,0.0,0.0 -1099,2075,2074,2,7,25,111,52,71,2,12848,0,0,0,0,1,3,1,3,1.8,3804.26439377,0,1200,20240.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,0,1,11244.444444399998,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.333333333299999,3.3,0,1,651.9078944160989,651.9078944160989,0.0 +1099,2075,2074,2,7,25,111,52,71,2,12848,0,0,0,0,1,3,1,3,1.8,3804.26439377,0,1200,20240.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,0,1,11244.4444444,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.3333333333,3.3,0,1,651.9078944160989,651.9078944160989,0.0 1100,2086,2085,0,0,45,111,54,50,0,1286,0,0,0,398,1,4,3,4,2.3,3355.61098893,0,0,26410.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,11482.6086957,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,3.5,0.0,0,0,0.0,0.0,0.0 1101,2099,2098,0,9,56,111,56,50,0,12875,0,250,0,200,1,3,0,1,1.0,1585.01787791,1040,0,12130.0,1,3,7,5,1,1,0,1,0,0,1,0,0,1,0,1,12130.0,2,1,2_1,2_0,10000.0,0,10000.0,0,3,6,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 -1102,2101,2100,0,14,30,111,67,41,2,12879,0,0,0,103,1,5,2,4,2.1,2818.58064598,0,2000,22769.0,4,3,9,7,4,2,0,0,0,0,0,1,0,1,0,2,10842.380952399999,2,1,2_1,2_0,2000.0,0,2000.0,0,2,12,0.0,0.0,0.0,0,1,194.9776863813665,194.9776863813665,0.0 +1102,2101,2100,0,14,30,111,67,41,2,12879,0,0,0,103,1,5,2,4,2.1,2818.58064598,0,2000,22769.0,4,3,9,7,4,2,0,0,0,0,0,1,0,1,0,2,10842.3809524,2,1,2_1,2_0,2000.0,0,2000.0,0,2,12,0.0,0.0,0.0,0,1,194.9776863813665,194.9776863813665,0.0 1103,2103,2102,13,13,82,120,72,71,0,12883,0,0,0,0,0,5,0,2,1.5,7096.19108045,250,0,18393.0,5,1,0,3,3,2,0,0,0,1,0,0,0,0,0,2,12262.0,2,1,2_0,2_0,10000.0,0,10000.0,0,4,14,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 1104,2105,2104,0,0,63,111,77,50,0,12885,0,0,0,461,0,1,0,1,1.0,2261.4331185,0,0,9895.0,5,3,7,6,1,0,0,0,0,0,1,0,0,1,0,0,9895.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1105,2106,2105,3,12,85,221,71,71,0,12886,0,0,0,0,0,3,0,1,1.0,2872.78661533,2777,0,12402.0,5,3,1,3,1,1,0,0,0,1,0,0,0,1,0,1,12402.0,2,1,2_1,2_0,8000.0,0,8000.0,0,10,11,0.0,0.0,0.0,0,0,779.910745525466,779.910745525466,0.0 @@ -1123,16 +1123,16 @@ 1121,2271,2270,3,8,56,111,62,50,0,13110,0,300,0,0,2,6,1,3,2.0,1229.46897402,2667,0,24222.0,1,1,3,4,4,3,0,1,0,0,1,0,0,0,0,3,12111.0,2,1,2_0,2_0,12481.0,0,12481.0,0,7,16,35.0,7.5,3.3,1,1,1216.7582518629174,1216.7582518629174,0.0 1122,2276,2275,5,9,45,112,64,50,0,13119,0,400,0,0,1,5,3,5,2.8,2002.5712596,0,0,31048.0,1,2,9,3,4,1,0,1,0,1,0,0,0,1,0,1,11088.5714286,2,1,2_1,2_0,40000.0,0,40000.0,0,2,8,302.5,44.0,3.33,0,1,3899.55372762733,3899.55372762733,0.0 1123,2313,2312,0,0,48,111,22,71,0,13177,0,0,0,0,2,4,2,4,2.3,3666.52163155,0,0,22410.0,1,1,10,8,4,0,0,0,0,0,0,0,1,0,0,0,9743.47826087,2,1,2_0,2_0,0.0,0,0.0,0,0,0,69.3,57.5,5.57,0,0,0.0,0.0,0.0 -1124,2318,2317,2,19,27,111,52,71,0,13184,0,0,0,209,2,3,1,3,1.8,3242.53940868,792,0,19604.0,4,3,8,7,4,2,0,0,0,0,0,1,0,1,0,2,10891.111111100001,2,1,2_1,2_0,18000.0,0,18000.0,0,15,18,0.0,0.0,0.0,0,1,1754.7991774322984,1754.7991774322984,0.0 +1124,2318,2317,2,19,27,111,52,71,0,13184,0,0,0,209,2,3,1,3,1.8,3242.53940868,792,0,19604.0,4,3,8,7,4,2,0,0,0,0,0,1,0,1,0,2,10891.1111111,2,1,2_1,2_0,18000.0,0,18000.0,0,15,18,0.0,0.0,0.0,0,1,1754.7991774322984,1754.7991774322984,0.0 1125,2327,2326,0,0,81,111,78,71,0,1320,0,0,0,0,0,3,0,1,1.0,3836.77698172,0,0,10936.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,10936.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1126,2363,2362,3,18,36,111,55,50,0,13248,0,99999,0,0,2,5,4,6,2.7,977.633471953,781,0,28850.0,1,2,9,7,4,1,0,1,0,0,0,1,0,1,0,1,10685.185185200002,2,1,2_1,2_0,30000.0,0,30000.0,0,8,11,139.0,11.666666666700001,0.0,1,0,2924.6652957204974,2924.6652957204974,0.0 +1126,2363,2362,3,18,36,111,55,50,0,13248,0,99999,0,0,2,5,4,6,2.7,977.633471953,781,0,28850.0,1,2,9,7,4,1,0,1,0,0,0,1,0,1,0,1,10685.1851852,2,1,2_1,2_0,30000.0,0,30000.0,0,8,11,139.0,11.6666666667,0.0,1,0,2924.6652957204974,2924.6652957204974,0.0 1127,2381,2380,0,20,52,221,56,71,0,13276,0,0,0,0,2,4,1,2,1.5,3522.18617726,1725,0,14500.0,1,1,1,2,2,1,0,0,0,1,0,0,0,0,1,0,9666.66666667,2,1,2_0,2_0,300.0,0,0.0,300,19,21,0.0,0.0,1.1,0,0,29.246652957204976,0.0,29.246652957204976 1128,2382,2381,0,0,55,111,68,50,0,13277,0,0,0,0,1,1,0,1,1.0,2975.06908615,0,0,12190.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,12190.0,2,1,2_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 1129,2390,2389,4,9,45,112,53,31,0,13285,0,0,150,0,2,4,2,4,2.5,1867.02241199,1820,0,28766.0,1,2,9,1,4,2,0,0,0,1,0,0,0,0,2,0,11506.4,2,1,2_0,2_0,5657.0,0,0.0,5657,1,7,50.0,20.0,3.3,0,1,551.4943859296951,0.0,551.4943859296951 1130,2392,2391,0,0,75,111,78,70,0,13288,0,0,0,0,0,3,0,1,1.0,3897.14715627,0,0,11291.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,11291.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1131,2404,2403,0,0,82,300,71,71,0,133,0,0,0,0,0,4,1,2,1.5,3403.26956606,0,0,14970.0,5,1,0,0,2,0,0,0,1,0,0,0,0,0,0,0,9980.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1132,2440,2439,12,21,53,111,68,50,0,13353,0,0,0,385,1,3,0,1,1.0,2379.68305815,978,0,10981.0,4,3,9,7,1,1,0,0,0,0,0,1,0,1,0,1,10981.0,2,1,2_1,2_0,22672.0,0,22672.0,0,3,16,0.0,0.0,0.0,0,0,2210.2670528191707,2210.2670528191707,0.0 -1133,2442,2441,0,15,26,112,63,50,2,13355,0,300,0,0,1,4,1,3,1.8,2080.21975907,2600,500,19783.0,1,3,7,0,4,1,0,1,1,0,0,0,0,1,0,1,10990.555555600002,2,1,2_1,2_1,10000.0,0,10000.0,0,1,12,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 +1133,2442,2441,0,15,26,112,63,50,2,13355,0,300,0,0,1,4,1,3,1.8,2080.21975907,2600,500,19783.0,1,3,7,0,4,1,0,1,1,0,0,0,0,1,0,1,10990.5555556,2,1,2_1,2_1,10000.0,0,10000.0,0,1,12,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1134,2452,2451,5,10,50,120,55,41,0,13369,0,0,0,0,1,4,1,2,1.5,2784.72659436,2600,0,15791.0,4,2,0,2,2,1,0,0,0,1,0,0,0,1,0,1,10527.3333333,2,1,2_1,2_0,7000.0,0,7000.0,0,9,10,0.0,0.0,0.0,0,0,682.4219023347827,682.4219023347827,0.0 1135,2464,2463,0,0,85,111,86,70,0,13385,0,0,0,0,0,3,0,1,1.0,4239.92421314,0,0,11310.0,6,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,11310.0,2,1,2_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 1136,2474,2473,7,7,41,112,21,42,0,1340,0,0,0,0,1,4,1,2,1.3,2991.11054726,0,0,13779.0,1,1,8,0,2,1,0,0,1,0,0,0,0,0,0,1,10599.2307692,2,1,2_0,2_1,11290.0,0,11290.0,0,1,4,0.0,0.0,0.0,1,0,1125.0111639761092,1125.0111639761092,0.0 @@ -1140,14 +1140,14 @@ 1138,2492,2491,0,0,57,111,68,50,0,1343,0,0,0,0,2,3,1,2,1.5,2785.47202283,0,0,16650.0,1,3,4,4,2,0,0,0,0,0,1,0,0,1,0,0,11100.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,25.0,1.1,0,0,0.0,0.0,0.0 1139,2493,2492,0,0,87,111,72,70,0,13433,0,0,0,0,0,5,0,1,1.0,3280.15642215,0,0,11900.0,6,1,8,6,1,0,0,0,0,0,1,0,0,0,0,0,11900.0,2,1,2_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 1140,2494,2493,0,0,63,111,77,70,0,13434,0,0,0,509,0,2,0,1,1.0,3133.71593183,0,0,12420.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,12420.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1141,2495,2494,2,11,27,112,63,71,0,13436,0,0,0,0,1,4,1,3,1.8,4540.55411946,0,0,21530.0,1,3,7,0,4,1,0,0,1,0,0,0,0,1,0,1,11961.111111100001,2,1,2_1,2_1,10000.0,0,10000.0,0,1,12,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 +1141,2495,2494,2,11,27,112,63,71,0,13436,0,0,0,0,1,4,1,3,1.8,4540.55411946,0,0,21530.0,1,3,7,0,4,1,0,0,1,0,0,0,0,1,0,1,11961.1111111,2,1,2_1,2_1,10000.0,0,10000.0,0,1,12,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1142,2496,2495,2,7,29,111,65,50,0,13437,0,600,0,0,1,4,3,5,2.4,1553.69886419,3276,0,25739.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,10724.5833333,2,1,2_0,2_0,25000.0,0,25000.0,0,3,7,0.0,1.2,0.0,0,0,2437.2210797670814,2437.2210797670814,0.0 1143,2497,2496,0,0,31,111,63,50,0,13441,0,0,0,0,1,5,3,5,2.4,2651.89274939,0,0,27996.0,4,3,4,4,4,0,0,0,0,0,1,0,0,1,0,0,11665.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,27.5,14.0,2.22,0,0,0.0,0.0,0.0 1144,2511,2510,0,3,75,400,78,71,0,13463,0,0,0,0,0,3,0,1,1.0,3324.57912823,0,0,9737.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,9737.0,2,1,2_0,2_1,12000.0,0,0.0,12000,3,3,0.0,0.0,0.0,0,0,1195.7603160064934,0.0,1195.7603160064934 1145,2519,2518,0,0,32,111,85,41,0,13479,0,0,0,0,0,1,2,3,1.6,2973.41464933,0,0,15698.0,6,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,9811.25,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1146,2534,2533,1,13,40,111,67,50,2,13499,0,200,0,69,1,2,2,3,1.6,2669.51352401,266,2000,18702.0,4,3,10,8,2,1,0,1,0,0,0,0,1,1,0,1,11688.75,2,1,2_1,2_0,79001.0,0,79001.0,0,1,14,92.0,30.0,3.3,0,1,7701.716100907167,7701.716100907167,0.0 1147,2546,2545,1,13,32,111,21,41,2,13516,0,0,130,160,1,3,2,3,1.6,2245.00347883,1564,1500,16288.0,1,3,7,5,2,1,0,1,0,0,1,0,0,1,1,0,10180.0,2,1,2_1,2_0,7000.0,0,0.0,7000,4,10,0.0,0.0,0.0,0,0,682.4219023347827,0.0,682.4219023347827 -1148,2548,2547,0,0,33,300,69,50,0,13518,0,0,0,0,1,4,4,6,2.7,879.9264008289999,0,0,27784.0,1,3,0,0,4,0,0,0,1,0,0,0,0,1,0,0,10290.3703704,2,1,2_1,2_1,0.0,0,0.0,0,0,0,0.0,2.0,0.0,0,0,0.0,0.0,0.0 +1148,2548,2547,0,0,33,300,69,50,0,13518,0,0,0,0,1,4,4,6,2.7,879.926400829,0,0,27784.0,1,3,0,0,4,0,0,0,1,0,0,0,0,1,0,0,10290.3703704,2,1,2_1,2_1,0.0,0,0.0,0,0,0,0.0,2.0,0.0,0,0,0.0,0.0,0.0 1149,2553,2552,0,0,61,111,52,41,0,13525,0,0,0,0,1,3,0,1,1.0,3023.74949427,0,0,10919.0,1,2,9,7,1,0,0,0,0,0,0,1,0,1,0,0,10919.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1150,2577,2576,2,3,33,300,63,50,0,13556,0,0,580,0,1,4,0,1,1.0,1334.44300629,2834,0,11827.0,1,4,0,1,1,1,0,1,0,1,0,0,0,0,1,0,11827.0,2,1,2_0,2_0,8352.0,0,0.0,8352,1,4,0.0,30.0,3.3,0,1,814.2268183285864,0.0,814.2268183285864 1151,2586,2585,6,12,81,300,71,50,0,13568,0,0,0,0,0,5,0,2,1.5,2584.87669533,0,0,16736.0,5,4,0,0,3,1,0,0,1,0,0,0,0,0,1,0,11157.3333333,2,1,2_0,2_1,6500.0,0,0.0,6500,11,12,0.0,0.0,0.0,0,0,647.7035045035173,0.0,647.7035045035173 @@ -1156,7 +1156,7 @@ 1154,2630,2629,2,4,45,111,22,42,0,13621,0,0,0,0,2,6,2,4,2.1,3102.04697508,0,0,25431.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,12110.0,2,1,2_0,2_0,10237.0,0,0.0,10237,13,0,11.0,22.0,5.5,0,0,997.9932877430243,0.0,997.9932877430243 1155,2644,2643,1,6,34,120,52,31,2,13638,0,100449,0,0,2,5,3,5,2.4,2196.37078408,1040,14000,25173.0,1,1,0,1,4,2,1,1,0,1,0,0,0,0,0,2,10488.75,2,1,2_0,2_0,30000.0,0,30000.0,0,3,6,168.0,5.6,3.3,1,1,2924.6652957204974,2924.6652957204974,0.0 1156,2646,2645,0,0,73,111,77,71,0,13642,0,0,0,0,0,5,0,1,1.0,3082.74861713,0,0,10580.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,10580.0,2,1,2_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 -1157,2648,2647,1,12,28,211,62,60,2,13646,0,160,0,0,2,5,2,4,2.1,2182.69477864,2080,1890,23570.0,1,3,4,3,4,1,0,1,0,1,0,0,0,0,0,1,11223.809523799999,2,1,2_0,2_0,10000.0,0,10000.0,0,5,13,0.0,4.0,0.0,1,1,974.8884319068325,974.8884319068325,0.0 +1157,2648,2647,1,12,28,211,62,60,2,13646,0,160,0,0,2,5,2,4,2.1,2182.69477864,2080,1890,23570.0,1,3,4,3,4,1,0,1,0,1,0,0,0,0,0,1,11223.8095238,2,1,2_0,2_0,10000.0,0,10000.0,0,5,13,0.0,4.0,0.0,1,1,974.8884319068325,974.8884319068325,0.0 1158,2649,2648,3,22,64,221,78,71,0,13649,0,600,0,106,2,4,2,4,2.5,3099.84660822,634,0,29199.0,5,3,1,3,4,3,0,0,0,1,0,0,0,1,0,3,11679.6,2,1,2_1,2_0,7000.0,0,7000.0,0,5,16,0.0,0.0,0.0,0,1,682.4219023347827,682.4219023347827,0.0 1159,2650,2649,1,15,51,112,52,70,2,1365,0,0,350,536,2,4,2,3,2.0,1799.74400301,2913,1800,22922.0,1,3,9,3,2,1,0,1,0,1,0,0,0,0,1,0,11461.0,2,1,2_0,2_0,8500.0,0,0.0,8500,12,14,0.0,0.0,0.0,0,1,828.6551671208076,0.0,828.6551671208076 1160,2657,2656,7,16,40,111,53,71,0,13658,0,0,0,85,1,3,1,3,1.8,3651.52998324,1560,0,17748.0,4,3,8,7,4,1,0,0,0,0,0,1,0,1,0,1,9860.0,2,1,2_1,2_0,10000.0,0,10000.0,0,10,15,327.5,26.6666666667,3.3,0,1,974.8884319068325,974.8884319068325,0.0 @@ -1166,18 +1166,18 @@ 1164,2679,2678,0,0,46,111,56,71,0,13689,0,0,0,0,1,4,5,7,3.4,2288.34480062,0,0,34017.0,4,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,10005.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1165,2680,2679,5,22,54,112,56,50,0,1369,0,0,0,0,1,1,0,1,1.0,2030.39225391,0,0,10784.0,4,3,8,0,1,1,0,0,1,0,0,0,0,1,0,1,10784.0,2,1,2_1,2_1,30000.0,0,30000.0,0,8,20,0.0,0.0,0.0,0,1,2989.4007900162333,2989.4007900162333,0.0 1166,2681,2680,2,2,45,112,54,71,0,13691,0,350,0,0,1,3,2,3,1.8,2384.53254085,2028,0,22306.0,1,2,10,0,2,1,0,1,1,0,0,0,0,1,0,1,12392.2222222,2,1,2_1,2_1,25000.0,0,25000.0,0,3,3,0.0,0.0,0.0,0,1,2491.1673250135277,2491.1673250135277,0.0 -1167,2689,2688,5,9,51,112,13,50,0,13705,0,99999,0,0,2,5,1,3,1.8,1400.12827525,0,0,22048.0,1,2,6,0,4,1,0,1,1,0,0,0,0,1,0,1,12248.888888899999,2,1,2_1,2_1,10000.0,0,10000.0,0,7,11,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 -1168,2690,2689,0,6,75,111,86,70,0,13706,0,0,0,0,0,3,0,1,1.0,3133.7841866999997,0,0,11829.0,5,3,6,4,1,1,0,0,0,0,1,0,0,1,1,0,11829.0,2,1,2_1,2_0,1500.0,0,0.0,1500,4,4,0.0,0.0,0.0,0,0,146.23326478602488,0.0,146.23326478602488 +1167,2689,2688,5,9,51,112,13,50,0,13705,0,99999,0,0,2,5,1,3,1.8,1400.12827525,0,0,22048.0,1,2,6,0,4,1,0,1,1,0,0,0,0,1,0,1,12248.8888889,2,1,2_1,2_1,10000.0,0,10000.0,0,7,11,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 +1168,2690,2689,0,6,75,111,86,70,0,13706,0,0,0,0,0,3,0,1,1.0,3133.7841867,0,0,11829.0,5,3,6,4,1,1,0,0,0,0,1,0,0,1,1,0,11829.0,2,1,2_1,2_0,1500.0,0,0.0,1500,4,4,0.0,0.0,0.0,0,0,146.23326478602488,0.0,146.23326478602488 1169,2701,2700,0,0,37,111,85,71,0,13722,0,0,0,0,0,3,3,5,2.4,2725.23776254,0,0,26076.0,7,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,10865.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1170,2723,2722,4,15,22,111,47,43,0,13745,0,0,0,295,2,1,0,2,1.5,3503.11099227,1040,0,18669.0,1,3,8,6,3,2,0,1,0,0,1,0,0,1,0,2,12446.0,2,1,2_1,2_0,18000.0,0,18000.0,0,15,18,0.0,0.0,0.0,0,1,1754.7991774322984,1754.7991774322984,0.0 1171,2725,2724,0,0,26,111,81,10,0,13748,0,0,0,153,1,2,0,1,1.0,3447.15628192,0,0,9934.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,9934.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1172,2729,2728,0,0,20,111,68,41,0,13752,0,0,0,150,1,1,0,1,1.0,6189.07262749,0,0,10245.0,2,3,6,5,1,0,0,0,0,0,1,0,0,1,0,0,10245.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,30.0,2.2,0,0,0.0,0.0,0.0 1173,2740,2739,0,0,75,112,77,70,0,13767,0,0,0,0,0,2,0,1,1.0,4180.03850713,0,0,11791.0,5,1,7,0,1,0,0,0,1,0,0,0,0,0,0,0,11791.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1174,2757,2756,0,0,24,111,63,50,0,13793,0,0,0,0,1,3,1,2,1.3,3626.82487663,0,0,15414.0,1,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,11856.923076899999,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,15.0,0.0,0,1,0.0,0.0,0.0 +1174,2757,2756,0,0,24,111,63,50,0,13793,0,0,0,0,1,3,1,2,1.3,3626.82487663,0,0,15414.0,1,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,11856.9230769,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,15.0,0.0,0,1,0.0,0.0,0.0 1175,2758,2757,3,3,73,111,78,70,0,13795,0,0,0,158,1,4,1,3,2.0,2045.74888593,0,0,21204.0,5,3,6,5,4,1,0,0,0,0,1,0,0,1,1,0,10602.0,2,1,2_1,2_0,18000.0,0,0.0,18000,2,2,0.0,0.0,0.0,1,0,1754.7991774322984,0.0,1754.7991774322984 1176,2759,2758,0,0,39,111,85,41,0,13796,0,0,0,52,0,2,0,1,1.0,3655.29279882,0,0,11971.0,7,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,11971.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1177,2781,2780,1,2,20,120,67,41,2,13820,0,0,0,0,1,5,0,2,1.5,4023.7254799,0,17000,17217.0,4,1,0,2,3,2,1,0,0,1,0,0,0,0,0,2,11478.0,2,1,2_0,2_0,15672.0,0,15672.0,0,1,10,0.0,0.0,0.0,0,1,1527.845150484388,1527.845150484388,0.0 -1178,2784,2783,4,6,59,111,75,10,0,13823,0,0,0,0,0,5,1,3,2.0,837.7441102380001,0,0,24740.0,7,1,7,5,4,1,0,0,0,0,1,0,0,0,1,0,12370.0,2,1,2_0,2_0,12000.0,0,0.0,12000,4,6,0.0,0.0,0.0,0,0,1169.866118288199,0.0,1169.866118288199 +1178,2784,2783,4,6,59,111,75,10,0,13823,0,0,0,0,0,5,1,3,2.0,837.744110238,0,0,24740.0,7,1,7,5,4,1,0,0,0,0,1,0,0,0,1,0,12370.0,2,1,2_0,2_0,12000.0,0,0.0,12000,4,6,0.0,0.0,0.0,0,0,1169.866118288199,0.0,1169.866118288199 1179,2793,2792,0,0,60,111,77,20,0,13834,0,0,0,0,0,4,0,1,1.0,2298.43629708,0,0,12180.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,12180.0,2,1,2_0,2_0,17102.0,0,17102.0,0,4,0,0.0,0.0,0.0,0,0,1667.2541962470648,1667.2541962470648,0.0 1180,2803,2802,1,1,60,111,31,10,1,13849,0,0,0,0,1,4,0,2,1.5,2412.01521254,0,23000,18817.0,1,1,8,7,3,2,0,0,0,0,0,1,0,0,2,0,12544.6666667,2,1,2_0,2_0,8000.0,0,0.0,8000,6,6,85.5,20.0,0.0,1,0,779.910745525466,0.0,779.910745525466 1181,2808,2807,0,0,26,111,35,20,0,13856,0,0,0,100,1,1,0,1,1.0,2768.7019797,0,0,10391.0,4,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,10391.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -1188,7 +1188,7 @@ 1186,2851,2850,11,15,80,400,71,71,0,13909,0,0,0,0,0,5,0,2,1.5,2760.98531071,0,0,16632.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,11088.0,2,1,2_0,2_1,5000.0,0,0.0,5000,15,15,0.0,0.0,0.0,0,0,498.23346500270554,0.0,498.23346500270554 1187,2852,2851,1,15,51,221,56,71,2,1391,0,60,0,0,1,4,0,1,1.0,3197.78665008,1040,1000,12220.0,1,3,1,2,1,1,0,1,0,1,0,0,0,0,0,1,12220.0,2,1,2_0,2_0,14500.0,0,14500.0,0,15,15,0.0,10.0,3.3,0,1,1413.588226264907,1413.588226264907,0.0 1188,2864,2863,0,0,75,221,71,70,0,13925,0,0,0,0,0,2,0,1,1.0,3775.82504293,0,0,12555.0,5,3,1,2,1,0,0,0,0,1,0,0,0,0,0,0,12555.0,2,1,2_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 -1189,2877,2876,7,9,41,112,62,71,0,1394,0,0,0,0,2,4,2,4,2.1,2048.27137016,0,0,21540.0,1,2,8,0,4,1,0,0,1,0,0,0,0,0,0,1,10257.142857100001,2,1,2_0,2_1,15000.0,0,15000.0,0,5,8,0.0,5.0,0.0,0,0,1494.7003950081166,1494.7003950081166,0.0 +1189,2877,2876,7,9,41,112,62,71,0,1394,0,0,0,0,2,4,2,4,2.1,2048.27137016,0,0,21540.0,1,2,8,0,4,1,0,0,1,0,0,0,0,0,0,1,10257.1428571,2,1,2_0,2_1,15000.0,0,15000.0,0,5,8,0.0,5.0,0.0,0,0,1494.7003950081166,1494.7003950081166,0.0 1190,2885,2884,6,6,46,400,11,50,0,13954,0,0,0,0,2,5,2,4,2.5,1603.44929228,0,0,30807.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,12322.8,2,1,2_0,2_1,6800.0,0,800.0,6000,5,5,126.0,2.8,5.53,0,1,677.5975124036795,79.71735440043288,597.8801580032467 1191,2889,2888,0,0,19,111,84,41,0,13959,0,0,0,0,0,1,0,1,1.0,3328.46140492,0,0,11069.0,3,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,11069.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1192,2903,2902,0,0,79,111,77,71,0,13974,0,0,0,0,0,3,0,1,1.0,3073.24031424,0,0,9740.0,5,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,9740.0,2,1,2_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 @@ -1199,14 +1199,14 @@ 1197,2973,2972,12,18,65,300,22,71,0,14067,0,0,0,0,1,7,0,1,1.0,3948.54585626,1300,0,9993.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,9993.0,2,1,2_0,2_1,11747.0,0,11747.0,0,11,15,16.8,20.0,3.31,1,0,1170.5497026773564,1170.5497026773564,0.0 1198,2991,2990,0,0,28,111,67,71,0,1409,0,0,0,450,1,1,0,1,1.0,3855.24192591,0,0,11160.0,4,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,11160.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,53.0,160.0,5.56,0,0,0.0,0.0,0.0 1199,2998,2997,2,2,70,400,71,50,0,14097,0,0,0,0,0,6,0,2,1.5,1277.83204458,0,0,18487.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,12324.6666667,2,1,2_0,2_1,17343.0,0,17343.0,0,2,2,0.0,0.0,0.0,0,0,1728.1725967083844,1728.1725967083844,0.0 -1200,3001,3000,2,13,32,111,35,12,0,1410,0,65,52,1200,2,3,2,4,2.1,6998.19637542,0,0,21750.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,1,1,10357.142857100001,2,1,2_0,2_0,5000.0,0,5000.0,0,11,14,0.0,0.0,0.0,0,0,487.44421595341623,487.44421595341623,0.0 +1200,3001,3000,2,13,32,111,35,12,0,1410,0,65,52,1200,2,3,2,4,2.1,6998.19637542,0,0,21750.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,1,1,10357.1428571,2,1,2_0,2_0,5000.0,0,5000.0,0,11,14,0.0,0.0,0.0,0,0,487.44421595341623,487.44421595341623,0.0 1201,3006,3005,9,22,56,111,78,71,0,14109,0,0,0,0,0,2,0,1,1.0,3024.06506009,0,0,10270.0,7,3,5,4,1,1,0,0,0,0,1,0,0,1,1,0,10270.0,2,1,2_1,2_0,8500.0,0,0.0,8500,11,22,0.0,0.0,0.0,0,0,828.6551671208076,0.0,828.6551671208076 1202,3020,3019,4,20,56,111,31,10,0,14127,0,0,0,0,1,6,1,2,1.5,3800.02774481,12868,0,17762.0,1,1,5,4,2,2,1,0,0,0,1,0,0,0,2,0,11841.3333333,2,1,2_0,2_0,16000.0,0,0.0,16000,14,14,43.0,25.6666666667,3.3,0,1,1559.821491050932,0.0,1559.821491050932 -1203,3032,3031,12,12,53,300,63,70,0,14141,0,132,0,0,2,5,3,5,2.8,862.9182291019999,2107,0,31532.0,1,2,0,0,4,2,0,0,1,0,0,0,0,1,1,1,11261.4285714,2,1,2_1,2_1,23000.0,0,8000.0,15000,2,13,0.0,20.0,0.0,0,1,2291.8739390124456,797.173544004329,1494.7003950081166 +1203,3032,3031,12,12,53,300,63,70,0,14141,0,132,0,0,2,5,3,5,2.8,862.918229102,2107,0,31532.0,1,2,0,0,4,2,0,0,1,0,0,0,0,1,1,1,11261.4285714,2,1,2_1,2_1,23000.0,0,8000.0,15000,2,13,0.0,20.0,0.0,0,1,2291.8739390124456,797.173544004329,1494.7003950081166 1204,3039,3038,0,0,25,111,63,50,0,1415,0,0,0,0,2,5,0,3,2.0,4137.52799196,0,0,21296.0,1,3,8,7,5,0,0,0,0,0,0,1,0,1,0,0,10648.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1205,3056,3055,8,9,49,111,43,60,0,14171,0,0,0,434,1,3,0,2,1.5,2619.73241586,0,0,18544.0,1,3,6,4,3,1,0,0,0,0,1,0,0,0,0,1,12362.6666667,2,1,2_0,2_0,7000.0,0,7000.0,0,9,10,0.0,0.0,0.0,0,0,682.4219023347827,682.4219023347827,0.0 1206,3066,3065,8,8,46,111,52,50,0,14184,0,100,0,0,1,5,2,4,2.3,1936.94288453,0,0,22800.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,9913.04347826,2,1,2_0,2_0,15000.0,0,15000.0,0,7,10,0.0,0.0,0.0,0,1,1462.3326478602487,1462.3326478602487,0.0 -1207,3071,3070,7,10,34,112,64,50,0,14193,0,75,0,9,2,6,4,7,3.4,903.64995147,780,0,41283.0,1,3,10,4,5,1,0,1,0,0,1,0,0,1,0,1,12142.0588235,2,1,2_1,2_0,30000.0,0,30000.0,0,8,11,139.0,11.666666666700001,0.0,1,0,2924.6652957204974,2924.6652957204974,0.0 +1207,3071,3070,7,10,34,112,64,50,0,14193,0,75,0,9,2,6,4,7,3.4,903.64995147,780,0,41283.0,1,3,10,4,5,1,0,1,0,0,1,0,0,1,0,1,12142.0588235,2,1,2_1,2_0,30000.0,0,30000.0,0,8,11,139.0,11.6666666667,0.0,1,0,2924.6652957204974,2924.6652957204974,0.0 1208,3093,3092,1,8,24,221,56,50,2,14217,0,0,0,248,1,3,1,2,1.3,5603.57359974,1560,6500,16024.0,1,3,1,1,2,1,0,0,0,1,0,0,0,1,0,1,12326.1538462,2,1,2_1,2_0,15144.0,0,15144.0,0,1,5,0.0,0.0,0.0,0,1,1476.371041279707,1476.371041279707,0.0 1209,3096,3095,22,22,46,120,47,71,0,14221,0,0,500,0,1,6,0,1,1.0,3738.03204306,0,0,12280.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,1,0,12280.0,2,1,2_0,2_1,15000.0,0,0.0,15000,3,16,0.0,0.0,0.0,0,1,1494.7003950081166,0.0,1494.7003950081166 1210,3097,3096,4,10,63,400,22,71,0,14222,0,0,0,0,2,9,0,2,1.5,3370.11607607,0,0,16800.0,1,2,0,1,3,1,0,0,0,1,0,0,0,0,1,0,11200.0,2,1,2_0,2_0,12000.0,0,0.0,12000,6,9,53.0,10.0,0.0,0,1,1169.866118288199,0.0,1169.866118288199 @@ -1222,13 +1222,13 @@ 1220,3243,3242,3,3,75,111,21,50,0,14432,0,0,0,0,1,2,0,1,1.0,3654.32120226,0,0,12283.0,1,1,10,8,1,2,1,0,0,0,0,0,1,0,1,1,12283.0,2,1,2_0,2_0,7000.0,0,7000.0,0,4,4,0.0,0.0,0.0,0,0,682.4219023347827,682.4219023347827,0.0 1221,3265,3264,0,0,36,111,55,10,0,14463,0,0,0,0,1,2,0,1,1.0,2862.53365159,0,0,11820.0,4,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,11820.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,0.0,30.0,1.1,0,0,0.0,0.0,0.0 1222,3276,3275,4,4,65,111,78,50,0,1448,0,0,0,0,0,5,0,1,1.0,4033.58236997,0,0,11999.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,0,1,11999.0,2,1,2_0,2_0,15000.0,0,15000.0,0,2,3,0.0,0.0,0.0,0,0,1462.3326478602487,1462.3326478602487,0.0 -1223,3284,3283,4,10,40,111,54,50,0,1449,0,300,0,322,1,5,0,1,1.0,1357.1564574000001,1144,0,11813.0,1,3,6,4,1,1,0,1,0,0,1,0,0,1,0,1,11813.0,2,1,2_1,2_0,6487.0,0,6487.0,0,0,10,0.0,0.0,0.0,0,0,632.4101257779622,632.4101257779622,0.0 +1223,3284,3283,4,10,40,111,54,50,0,1449,0,300,0,322,1,5,0,1,1.0,1357.1564574,1144,0,11813.0,1,3,6,4,1,1,0,1,0,0,1,0,0,1,0,1,11813.0,2,1,2_1,2_0,6487.0,0,6487.0,0,0,10,0.0,0.0,0.0,0,0,632.4101257779622,632.4101257779622,0.0 1224,3289,3288,12,16,89,112,71,71,0,145,0,0,0,0,0,6,0,2,1.5,3543.68071096,0,0,16580.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,0,1,11053.3333333,2,1,2_0,2_1,7500.0,0,7500.0,0,14,14,0.0,0.0,0.0,0,0,747.3501975040583,747.3501975040583,0.0 1225,3304,3303,0,0,76,120,71,71,0,14521,0,0,0,0,0,4,0,1,1.0,3445.47335292,0,0,11204.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,11204.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1226,3313,3312,5,5,67,300,74,20,0,14532,0,0,0,0,0,3,0,2,1.5,621.6086014919999,0,0,16629.0,5,4,0,0,3,2,0,0,1,0,0,0,0,0,0,2,11086.0,2,1,2_0,2_1,6307.0,0,6307.0,0,0,6,0.0,0.0,0.0,0,0,628.4716927544129,628.4716927544129,0.0 +1226,3313,3312,5,5,67,300,74,20,0,14532,0,0,0,0,0,3,0,2,1.5,621.608601492,0,0,16629.0,5,4,0,0,3,2,0,0,1,0,0,0,0,0,0,2,11086.0,2,1,2_0,2_1,6307.0,0,6307.0,0,0,6,0.0,0.0,0.0,0,0,628.4716927544129,628.4716927544129,0.0 1227,3324,3323,0,0,30,111,63,71,0,14546,0,0,0,0,3,3,0,3,2.0,4482.55537326,0,0,19380.0,1,3,10,8,5,0,0,0,0,0,0,0,1,0,0,0,9690.0,2,1,2_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 1228,3326,3325,2,3,56,300,62,50,0,14550,0,120,0,0,2,4,1,3,2.0,2592.18476093,2341,0,23714.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,0,1,11857.0,2,1,2_0,2_1,38001.0,0,38001.0,0,2,2,0.0,2.0,0.0,0,0,3786.6739807135627,3786.6739807135627,0.0 -1229,3340,3339,6,11,53,111,67,50,0,14566,0,0,0,0,1,4,5,7,3.2,935.8705245110001,4160,0,36935.0,4,3,7,5,4,2,0,0,0,0,1,0,0,1,0,2,11542.1875,2,1,2_1,2_0,15000.0,0,15000.0,0,7,10,0.0,0.0,0.0,0,1,1462.3326478602487,1462.3326478602487,0.0 +1229,3340,3339,6,11,53,111,67,50,0,14566,0,0,0,0,1,4,5,7,3.2,935.870524511,4160,0,36935.0,4,3,7,5,4,2,0,0,0,0,1,0,0,1,0,2,11542.1875,2,1,2_1,2_0,15000.0,0,15000.0,0,7,10,0.0,0.0,0.0,0,1,1462.3326478602487,1462.3326478602487,0.0 1230,3343,3342,1,1,55,112,68,50,0,14570,0,200,0,0,1,4,0,1,1.0,2362.58692509,1122,0,11834.0,1,1,6,0,1,1,0,1,1,0,0,0,0,0,0,1,11834.0,2,1,2_0,2_1,12000.0,0,12000.0,0,1,1,0.0,0.0,0.0,0,0,1195.7603160064934,1195.7603160064934,0.0 1231,3349,3348,15,15,62,112,78,71,0,14578,0,200,0,0,1,4,0,2,1.5,2945.29914796,1820,0,18468.0,5,4,6,0,3,1,0,1,1,0,0,0,0,0,0,1,12312.0,2,1,2_0,2_1,10000.0,0,10000.0,0,9,15,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1232,3352,3351,7,7,63,111,21,70,0,14582,0,0,0,0,1,2,0,1,1.0,6443.47193252,0,0,11740.0,5,3,9,7,1,1,0,0,0,0,0,1,0,1,0,1,11740.0,2,1,2_1,2_0,10000.0,0,10000.0,0,3,6,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 @@ -1242,11 +1242,11 @@ 1240,3401,3400,7,15,73,112,72,50,0,14647,0,0,0,0,0,3,0,2,1.5,2390.86190574,0,0,18492.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,0,2,12328.0,2,1,2_0,2_1,15000.0,0,15000.0,0,6,13,0.0,0.0,0.0,0,0,1494.7003950081166,1494.7003950081166,0.0 1241,3420,3419,14,14,42,111,13,50,0,14674,0,0,0,0,2,7,2,4,2.3,1613.67026969,0,0,27609.0,1,1,8,7,4,2,0,0,0,0,0,1,0,0,0,2,12003.9130435,2,1,2_0,2_0,14000.0,0,14000.0,0,9,14,51.7,30.0,9.9,0,1,1364.8438046695653,1364.8438046695653,0.0 1242,3421,3420,4,16,25,111,55,31,0,14675,0,0,0,89,1,3,1,3,2.0,4245.45195145,0,0,20830.0,1,3,9,7,4,1,1,0,0,0,0,1,0,1,0,1,10415.0,2,1,2_1,2_0,20000.0,0,20000.0,0,15,16,0.0,80.0,5.55,0,0,1949.776863813665,1949.776863813665,0.0 -1243,3426,3425,0,0,27,111,81,10,0,14682,0,0,0,0,1,3,0,1,1.0,2996.6650250999996,0,0,10023.0,4,4,7,6,1,0,0,0,0,0,1,0,0,0,0,0,10023.0,2,1,2_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 +1243,3426,3425,0,0,27,111,81,10,0,14682,0,0,0,0,1,3,0,1,1.0,2996.6650251,0,0,10023.0,4,4,7,6,1,0,0,0,0,0,1,0,0,0,0,0,10023.0,2,1,2_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 1244,3446,3445,20,23,83,212,71,70,0,14708,0,0,0,0,0,4,0,2,1.5,1031.54310873,0,0,14980.0,5,4,2,0,3,1,0,0,1,0,0,0,0,0,1,0,9986.66666667,2,1,2_0,2_1,1000.0,0,0.0,1000,19,20,0.0,0.0,0.0,0,0,99.64669300054112,0.0,99.64669300054112 1245,3448,3447,3,3,62,300,78,70,0,14711,0,0,0,0,0,6,0,1,1.0,2283.57186378,1565,0,12488.0,4,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,12488.0,2,1,2_0,2_1,10000.0,0,10000.0,0,2,3,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1246,3459,3458,20,20,93,120,71,70,0,14727,0,0,0,0,0,5,0,2,1.5,2054.96975087,0,0,16340.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,10893.3333333,2,1,2_0,2_1,3915.0,0,0.0,3915,2,21,0.0,0.0,0.0,0,0,390.11680309711846,0.0,390.11680309711846 -1247,3493,3492,4,9,27,221,68,50,0,14773,0,0,0,615,2,3,1,3,1.8,2938.53064968,4680,0,21566.0,1,3,1,2,4,1,0,0,0,1,0,0,0,0,0,1,11981.111111100001,2,1,2_0,2_0,13672.0,0,13672.0,0,1,10,0.0,10.0,3.3,0,1,1332.8674641030211,1332.8674641030211,0.0 +1247,3493,3492,4,9,27,221,68,50,0,14773,0,0,0,615,2,3,1,3,1.8,2938.53064968,4680,0,21566.0,1,3,1,2,4,1,0,0,0,1,0,0,0,0,0,1,11981.1111111,2,1,2_0,2_0,13672.0,0,13672.0,0,1,10,0.0,10.0,3.3,0,1,1332.8674641030211,1332.8674641030211,0.0 1248,3521,3520,2,2,41,111,37,20,0,14814,0,0,0,0,2,7,2,4,2.1,2346.0655695,0,0,25770.0,1,1,8,7,4,1,0,0,0,0,0,1,0,0,1,0,12271.4285714,2,1,2_0,2_0,9099.0,0,0.0,9099,3,0,0.0,8.5,0.0,0,1,887.0509841920269,0.0,887.0509841920269 1249,3523,3522,0,0,43,111,56,50,0,14816,0,0,0,99,2,3,1,3,2.0,2417.13769412,0,0,24835.0,1,3,7,6,4,0,0,0,0,0,1,0,0,1,0,0,12417.5,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1250,3533,3532,0,0,25,111,63,50,0,14832,0,0,0,90,1,5,3,5,2.4,2760.43043102,0,0,25870.0,4,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,10779.1666667,2,1,2_1,2_0,0.0,0,0.0,0,0,0,98.4,12.5,2.22,0,0,0.0,0.0,0.0 @@ -1256,41 +1256,41 @@ 1254,3598,3597,4,4,68,112,77,50,0,14926,0,0,0,0,0,3,0,1,1.0,2920.23234803,0,0,12449.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,0,1,12449.0,2,1,2_0,2_1,25000.0,0,25000.0,0,3,3,0.0,0.0,0.0,0,0,2491.1673250135277,2491.1673250135277,0.0 1255,3619,3618,0,0,36,112,56,70,0,14953,0,0,0,0,1,3,1,2,1.3,5412.16959577,0,0,14107.0,4,3,9,3,2,0,0,0,0,1,0,0,0,1,0,0,10851.5384615,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1256,3670,3669,6,15,55,112,75,60,0,15017,0,0,0,0,1,6,1,3,2.0,1570.71419686,0,0,24672.0,5,2,9,1,4,2,0,0,0,1,0,0,0,0,1,1,12336.0,2,1,2_0,2_0,3000.0,0,3000.0,0,14,14,249.0,50.0,1.1,0,0,292.46652957204975,292.46652957204975,0.0 -1257,3674,3673,2,7,47,120,64,71,0,15022,0,0,0,0,1,5,3,5,2.6,1736.34656992,3328,0,31832.0,1,3,0,1,4,2,0,0,0,1,0,0,0,1,0,2,12243.076923100001,2,1,2_1,2_0,15000.0,0,15000.0,0,7,10,0.0,0.0,0.0,0,1,1462.3326478602487,1462.3326478602487,0.0 +1257,3674,3673,2,7,47,120,64,71,0,15022,0,0,0,0,1,5,3,5,2.6,1736.34656992,3328,0,31832.0,1,3,0,1,4,2,0,0,0,1,0,0,0,1,0,2,12243.0769231,2,1,2_1,2_0,15000.0,0,15000.0,0,7,10,0.0,0.0,0.0,0,1,1462.3326478602487,1462.3326478602487,0.0 1258,3687,3686,0,0,32,111,56,50,0,15036,0,0,0,1,1,5,3,4,1.9,2433.44261162,0,0,21060.0,4,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,11084.2105263,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,11.0,5.55,0,0,0.0,0.0,0.0 1259,3691,3690,0,0,89,111,86,71,0,1504,0,0,0,500,0,3,0,1,1.0,3159.37662588,0,0,12170.0,7,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,12170.0,2,1,2_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 1260,3718,3717,0,0,53,111,22,31,0,15072,0,0,0,0,1,2,0,1,1.0,3792.52296109,0,0,10090.0,1,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,10090.0,2,1,2_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 1261,3740,3739,0,0,23,111,56,41,0,15103,0,0,0,0,1,4,0,1,1.0,1742.61367257,0,0,9650.0,1,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,9650.0,2,1,2_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 1262,3745,3744,27,29,86,112,71,71,0,15108,0,0,0,0,0,4,0,1,1.0,3004.58961331,0,0,11282.0,5,4,8,0,1,1,0,0,1,0,0,0,0,0,1,0,11282.0,2,1,2_0,2_1,1844.0,0,0.0,1844,28,28,0.0,0.0,0.0,0,0,183.7485018929978,0.0,183.7485018929978 1263,3749,3748,2,7,44,111,54,42,0,15114,0,100,0,255,1,4,2,3,1.8,1794.81385784,0,0,19197.0,1,3,7,6,2,1,0,1,0,0,1,0,0,1,0,1,10665.0,2,1,2_1,2_0,5000.0,0,5000.0,0,7,8,0.0,10.0,1.1,0,0,487.44421595341623,487.44421595341623,0.0 -1264,3751,3750,0,0,76,111,77,70,0,15118,0,0,0,0,0,5,0,1,1.0,1451.2469087000002,0,0,10790.0,5,1,6,4,1,0,0,0,0,0,1,0,0,0,0,0,10790.0,2,1,2_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 +1264,3751,3750,0,0,76,111,77,70,0,15118,0,0,0,0,0,5,0,1,1.0,1451.2469087,0,0,10790.0,5,1,6,4,1,0,0,0,0,0,1,0,0,0,0,0,10790.0,2,1,2_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 1265,3752,3751,13,13,58,112,75,30,0,15119,0,1000,0,0,1,4,0,2,1.5,2230.98104622,1498,0,17430.0,5,1,8,0,3,1,1,1,1,0,0,0,0,0,0,1,11620.0,2,1,2_0,2_1,10000.0,0,10000.0,0,9,15,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1266,3772,3771,0,0,64,120,78,70,0,15146,0,0,0,0,0,2,0,1,1.0,3305.33437088,0,0,10626.0,5,3,0,2,1,0,0,0,0,1,0,0,0,1,0,0,10626.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1267,3801,3800,0,0,54,111,56,71,0,15192,0,0,0,161,2,2,0,2,1.5,2848.65954136,0,0,16308.0,1,3,10,8,3,0,0,0,0,0,0,0,1,1,0,0,10872.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,4.0,1.1,0,0,0.0,0.0,0.0 -1268,3804,3803,0,11,31,400,67,43,0,15197,0,400,0,0,1,6,2,4,2.1,2958.41116365,3588,0,25209.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,0,1,12004.285714299998,2,1,2_0,2_1,10000.0,0,10000.0,0,4,11,0.0,4.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 -1269,3809,3808,4,22,31,111,46,50,0,15201,0,0,0,336,2,4,1,3,1.8,1474.67094593,0,0,20896.0,1,3,5,4,4,2,0,0,0,0,1,0,0,1,0,2,11608.888888899999,2,1,2_1,2_0,35000.0,0,35000.0,0,4,22,108.5,48.6666666667,3.3,0,1,3412.1095116739134,3412.1095116739134,0.0 +1268,3804,3803,0,11,31,400,67,43,0,15197,0,400,0,0,1,6,2,4,2.1,2958.41116365,3588,0,25209.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,0,1,12004.2857143,2,1,2_0,2_1,10000.0,0,10000.0,0,4,11,0.0,4.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 +1269,3809,3808,4,22,31,111,46,50,0,15201,0,0,0,336,2,4,1,3,1.8,1474.67094593,0,0,20896.0,1,3,5,4,4,2,0,0,0,0,1,0,0,1,0,2,11608.8888889,2,1,2_1,2_0,35000.0,0,35000.0,0,4,22,108.5,48.6666666667,3.3,0,1,3412.1095116739134,3412.1095116739134,0.0 1270,3829,3828,17,17,58,221,77,71,0,15232,0,0,0,0,0,5,1,3,2.0,2795.14981748,0,0,23960.0,5,1,1,3,4,1,0,0,0,1,0,0,0,0,1,0,11980.0,2,1,2_0,2_0,10000.0,0,0.0,10000,4,17,0.0,0.0,0.0,0,0,974.8884319068325,0.0,974.8884319068325 1271,3836,3835,5,5,49,111,56,70,0,15243,0,0,0,0,1,5,0,1,1.0,1663.74917362,0,0,9718.0,1,2,9,7,1,1,0,0,0,0,0,1,0,0,1,0,9718.0,2,1,2_0,2_0,6000.0,0,0.0,6000,8,8,0.0,12.0,3.3,0,1,584.9330591440995,0.0,584.9330591440995 -1272,3847,3846,5,13,39,111,68,71,0,15257,0,0,0,76,1,3,2,4,2.1,3918.07778336,1040,0,23050.0,4,3,8,6,4,1,0,0,0,0,1,0,0,1,0,1,10976.190476200001,2,1,2_1,2_0,15000.0,0,15000.0,0,15,15,78.0,15.0,3.3,0,1,1462.3326478602487,1462.3326478602487,0.0 +1272,3847,3846,5,13,39,111,68,71,0,15257,0,0,0,76,1,3,2,4,2.1,3918.07778336,1040,0,23050.0,4,3,8,6,4,1,0,0,0,0,1,0,0,1,0,1,10976.1904762,2,1,2_1,2_0,15000.0,0,15000.0,0,15,15,78.0,15.0,3.3,0,1,1462.3326478602487,1462.3326478602487,0.0 1273,3855,3854,0,0,29,111,85,50,0,15268,0,0,0,418,0,2,0,1,1.0,3546.00015207,0,0,9883.0,4,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,9883.0,2,1,2_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 -1274,3864,3863,8,9,62,112,11,50,0,15288,0,0,0,0,2,6,1,3,2.0,1463.97896423,3275,0,20246.0,1,1,8,0,4,2,0,0,1,0,0,0,0,0,2,0,10123.0,2,1,2_0,2_1,3614.0,0,0.0,3614,1,14,40.0,6.666666666669999,0.0,0,0,360.1231485039556,0.0,360.1231485039556 +1274,3864,3863,8,9,62,112,11,50,0,15288,0,0,0,0,2,6,1,3,2.0,1463.97896423,3275,0,20246.0,1,1,8,0,4,2,0,0,1,0,0,0,0,0,2,0,10123.0,2,1,2_0,2_1,3614.0,0,0.0,3614,1,14,40.0,6.66666666667,0.0,0,0,360.1231485039556,0.0,360.1231485039556 1275,3882,3881,0,4,55,111,56,50,0,15314,0,0,0,450,1,3,1,2,1.5,2973.25331421,0,0,18650.0,1,3,10,8,2,1,0,0,0,0,0,0,1,0,0,1,12433.3333333,2,1,2_0,2_0,11000.0,0,11000.0,0,2,2,0.0,5.0,0.0,1,0,1072.3772750975156,1072.3772750975156,0.0 1276,3909,3908,2,3,73,400,75,60,0,15353,0,0,0,0,0,6,0,1,1.0,3377.19803602,0,0,11380.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,11380.0,2,1,2_0,2_1,6000.0,0,6000.0,0,4,4,0.0,0.0,0.0,0,0,597.8801580032467,597.8801580032467,0.0 1277,3919,3918,0,0,61,111,77,50,1,15364,0,0,0,1,0,4,0,1,1.0,2708.44929542,0,9134,11989.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,11989.0,2,1,2_1,2_0,6248.0,0,0.0,6248,1,1,0.0,0.0,0.0,1,0,609.1102922553889,0.0,609.1102922553889 1278,3930,3929,13,13,67,111,72,70,0,15379,0,0,0,282,0,3,0,1,1.0,2555.21907445,0,0,12090.0,5,3,6,4,1,1,0,0,0,0,1,0,0,1,0,1,12090.0,2,1,2_1,2_0,13000.0,0,13000.0,0,7,14,0.0,0.0,0.0,0,0,1267.3549614788824,1267.3549614788824,0.0 1279,3950,3949,3,3,46,120,65,71,0,15401,0,0,100,0,3,6,4,6,3.1,2909.38723761,1560,0,37875.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,1,0,12217.7419355,2,1,2_0,2_1,23000.0,0,0.0,23000,2,2,116.4,10.0,3.3,0,1,2291.8739390124456,0.0,2291.8739390124456 1280,3952,3951,1,4,31,111,63,71,2,15404,0,0,0,0,2,4,2,4,2.1,1880.64876993,0,16200,23156.0,1,2,7,6,4,2,0,0,0,0,1,0,0,1,1,1,11026.6666667,2,1,2_1,2_0,31258.0,0,21000.0,10258,2,7,218.8,21.3333333333,3.31,0,1,3047.306260454377,2047.265707004348,1000.0405534500287 -1281,3962,3961,2,20,25,112,64,50,0,15418,0,0,0,300,2,2,1,3,1.8,3116.64463724,0,0,20207.0,4,3,10,3,4,1,0,0,0,1,0,0,0,1,0,1,11226.111111100001,2,1,2_1,2_0,40000.0,0,40000.0,0,6,15,0.0,0.0,0.0,0,1,3899.55372762733,3899.55372762733,0.0 +1281,3962,3961,2,20,25,112,64,50,0,15418,0,0,0,300,2,2,1,3,1.8,3116.64463724,0,0,20207.0,4,3,10,3,4,1,0,0,0,1,0,0,0,1,0,1,11226.1111111,2,1,2_1,2_0,40000.0,0,40000.0,0,6,15,0.0,0.0,0.0,0,1,3899.55372762733,3899.55372762733,0.0 1282,3976,3975,4,5,74,300,72,50,0,15437,0,0,0,0,0,6,0,2,1.5,1632.81570524,0,0,17810.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,11873.3333333,2,1,2_0,2_1,10500.0,0,10000.0,500,4,4,0.0,0.0,0.0,0,0,1046.2902765056817,996.4669300054111,49.82334650027056 1283,4018,4017,0,0,41,221,85,71,0,155,0,0,0,0,1,3,1,3,1.8,5229.95620448,0,0,22614.0,7,3,1,2,4,0,0,0,0,1,0,0,0,1,0,0,12563.3333333,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,4.66666666667,1.1,0,0,0.0,0.0,0.0 -1284,4021,4020,4,4,60,400,56,71,0,15503,0,0,0,0,1,5,0,1,1.0,4914.393214600001,0,0,10583.0,1,1,0,0,1,1,0,0,1,0,0,0,0,1,1,0,10583.0,2,1,2_1,2_1,11000.0,0,0.0,11000,6,7,103.8,40.0,3.3,0,1,1096.1136230059524,0.0,1096.1136230059524 +1284,4021,4020,4,4,60,400,56,71,0,15503,0,0,0,0,1,5,0,1,1.0,4914.3932146,0,0,10583.0,1,1,0,0,1,1,0,0,1,0,0,0,0,1,1,0,10583.0,2,1,2_1,2_1,11000.0,0,0.0,11000,6,7,103.8,40.0,3.3,0,1,1096.1136230059524,0.0,1096.1136230059524 1285,4067,4066,0,5,40,221,56,71,2,15563,0,0,0,133,1,5,4,5,2.4,2253.41749324,2600,6300,25162.0,4,3,1,2,2,1,1,0,0,1,0,0,0,1,0,1,10484.1666667,2,1,2_1,2_0,25000.0,0,25000.0,0,3,7,0.0,1.2,0.0,0,0,2437.2210797670814,2437.2210797670814,0.0 1286,4069,4068,12,12,53,300,63,31,0,15567,0,150,0,0,2,10,4,7,3.4,891.348927065,0,0,37186.0,1,1,0,0,5,2,0,0,1,0,0,0,0,0,0,2,10937.0588235,2,1,2_0,2_1,15000.0,0,15000.0,0,2,7,136.5,25.3333333333,3.31,0,0,1494.7003950081166,1494.7003950081166,0.0 -1287,4104,4103,13,13,35,111,46,31,0,1562,0,150,60,0,2,5,2,4,2.1,1563.11850441,5426,0,23161.0,1,2,6,4,4,2,1,1,0,0,1,0,0,0,1,1,11029.047618999999,2,1,2_0,2_0,14500.0,0,12000.0,2500,8,11,0.0,0.0,0.0,0,1,1413.588226264907,1169.866118288199,243.72210797670812 +1287,4104,4103,13,13,35,111,46,31,0,1562,0,150,60,0,2,5,2,4,2.1,1563.11850441,5426,0,23161.0,1,2,6,4,4,2,1,1,0,0,1,0,0,0,1,1,11029.047619,2,1,2_0,2_0,14500.0,0,12000.0,2500,8,11,0.0,0.0,0.0,0,1,1413.588226264907,1169.866118288199,243.72210797670812 1288,4108,4107,2,12,26,111,63,20,0,15625,0,100,0,235,1,2,0,1,1.0,4784.3765251,2600,0,11791.0,1,3,8,7,1,1,0,1,0,0,0,1,0,1,0,1,11791.0,2,1,2_1,2_0,15000.0,0,15000.0,0,5,15,45.2,65.0,3.3,0,1,1462.3326478602487,1462.3326478602487,0.0 1289,4114,4113,0,0,27,111,52,71,0,15633,0,0,0,40,1,2,0,1,1.0,2972.51387948,0,0,12328.0,1,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,12328.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1290,4121,4120,0,0,71,112,78,70,0,15644,0,0,0,0,0,3,0,1,1.0,1566.14396498,2080,0,11960.0,5,1,9,0,1,0,0,0,1,0,0,0,0,0,0,0,11960.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1291,4127,4126,5,12,39,111,43,41,0,15653,0,10,0,294,1,4,2,3,1.8,2794.4602586,0,0,20500.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,11388.888888899999,2,1,2_1,2_0,15000.0,0,15000.0,0,10,12,0.0,11.666666666700001,3.31,0,1,1462.3326478602487,1462.3326478602487,0.0 +1291,4127,4126,5,12,39,111,43,41,0,15653,0,10,0,294,1,4,2,3,1.8,2794.4602586,0,0,20500.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,11388.8888889,2,1,2_1,2_0,15000.0,0,15000.0,0,10,12,0.0,11.6666666667,3.31,0,1,1462.3326478602487,1462.3326478602487,0.0 1292,4141,4140,9,11,45,212,43,33,0,1568,0,410,0,0,2,5,2,3,2.0,2244.97928024,0,0,20965.0,1,2,2,0,2,1,0,1,1,0,0,0,0,1,0,1,10482.5,2,1,2_1,2_1,10000.0,0,10000.0,0,7,11,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1293,4164,4163,2,3,69,111,78,43,0,15718,0,0,0,0,0,4,0,3,1.8,2719.12864983,0,0,20353.0,5,1,10,8,5,1,0,0,0,0,0,0,1,0,0,1,11307.2222222,2,1,2_0,2_0,35000.0,0,35000.0,0,2,5,0.0,0.0,0.0,0,0,3412.1095116739134,3412.1095116739134,0.0 1294,4169,4168,3,10,39,111,21,50,0,15724,0,0,0,0,2,6,2,4,2.3,2437.39516724,0,0,28001.0,1,2,8,7,4,1,0,0,0,0,0,1,0,1,0,1,12174.3478261,2,1,2_1,2_0,16337.0,0,16337.0,0,6,8,123.5,37.5,2.2,1,0,1592.6752312061922,1592.6752312061922,0.0 @@ -1313,20 +1313,20 @@ 1311,4359,4358,14,14,64,112,74,20,0,1763,0,0,0,0,0,7,0,2,1.5,1686.50569936,4908,0,15264.0,5,1,9,1,3,3,0,0,0,1,0,0,0,0,2,1,10176.0,2,1,2_0,2_0,9000.0,0,9000.0,0,14,14,0.0,0.0,0.0,0,0,877.3995887161492,877.3995887161492,0.0 1312,4366,4365,11,11,81,300,71,71,0,1773,0,0,0,0,0,5,0,2,1.5,2073.03513329,0,0,18221.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,12147.3333333,2,1,2_0,2_1,10362.0,0,10362.0,0,12,12,0.0,0.0,0.0,0,0,1032.539032871607,1032.539032871607,0.0 1313,4378,4377,6,7,44,111,55,50,0,1787,0,0,50,151,1,2,0,1,1.0,2033.56100909,0,0,10043.0,4,3,6,4,1,1,0,1,0,0,1,0,0,1,1,0,10043.0,2,1,2_1,2_0,5000.0,0,0.0,5000,8,12,0.0,0.0,0.0,0,0,487.44421595341623,0.0,487.44421595341623 -1314,4380,4379,0,0,25,111,85,60,0,1789,0,0,0,7,1,6,5,8,3.5,798.9582451160001,0,0,40126.0,6,3,6,5,5,0,0,0,0,0,1,0,0,1,0,0,11464.5714286,2,1,2_1,2_0,0.0,0,0.0,0,0,0,98.4,12.5,2.22,0,0,0.0,0.0,0.0 -1315,4406,4405,0,0,78,111,77,71,0,1821,0,0,0,0,0,3,0,1,1.0,3546.4380034999995,0,0,11520.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,11520.0,2,1,2_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 -1316,4416,4415,6,22,42,120,63,71,0,1832,0,550,300,0,2,6,4,6,3.3,1815.1057822,3120,0,41069.0,1,2,0,0,4,4,0,1,1,0,0,0,0,0,1,3,12445.151515200001,2,1,2_0,2_1,35000.0,0,35000.0,0,4,14,0.0,25.0,3.3,0,1,3487.634255018939,3487.634255018939,0.0 +1314,4380,4379,0,0,25,111,85,60,0,1789,0,0,0,7,1,6,5,8,3.5,798.958245116,0,0,40126.0,6,3,6,5,5,0,0,0,0,0,1,0,0,1,0,0,11464.5714286,2,1,2_1,2_0,0.0,0,0.0,0,0,0,98.4,12.5,2.22,0,0,0.0,0.0,0.0 +1315,4406,4405,0,0,78,111,77,71,0,1821,0,0,0,0,0,3,0,1,1.0,3546.4380035,0,0,11520.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,11520.0,2,1,2_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 +1316,4416,4415,6,22,42,120,63,71,0,1832,0,550,300,0,2,6,4,6,3.3,1815.1057822,3120,0,41069.0,1,2,0,0,4,4,0,1,1,0,0,0,0,0,1,3,12445.1515152,2,1,2_0,2_1,35000.0,0,35000.0,0,4,14,0.0,25.0,3.3,0,1,3487.634255018939,3487.634255018939,0.0 1317,4438,4437,0,0,26,221,85,71,0,1860,0,0,0,0,0,2,0,1,1.0,5091.60383624,0,0,10900.0,7,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,10900.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1318,4447,4446,0,0,54,112,69,70,0,1873,0,0,0,0,2,2,0,3,2.0,2304.38134025,0,0,23330.0,1,1,7,0,5,0,0,0,1,0,0,0,0,0,0,0,11665.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,1,0.0,0.0,0.0 1319,4461,4460,3,3,44,111,46,10,0,1892,0,0,0,0,1,5,0,1,1.0,3319.14543997,0,0,12154.0,1,4,10,8,1,1,0,0,0,0,0,0,1,0,1,0,12154.0,2,1,2_0,2_0,4000.0,0,0.0,4000,2,2,35.0,30.0,3.31,0,1,389.955372762733,0.0,389.955372762733 -1320,4465,4464,0,0,27,111,46,31,0,1899,0,0,0,865,1,1,0,1,1.0,4447.466109800001,0,0,11359.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,11359.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,23.8,70.0,3.32,0,0,0.0,0.0,0.0 +1320,4465,4464,0,0,27,111,46,31,0,1899,0,0,0,865,1,1,0,1,1.0,4447.4661098,0,0,11359.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,11359.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,23.8,70.0,3.32,0,0,0.0,0.0,0.0 1321,4487,4486,0,0,86,112,77,70,0,1931,0,0,0,0,0,6,0,1,1.0,2243.10647229,0,0,9937.0,5,4,9,0,1,0,0,0,1,0,0,0,0,0,0,0,9937.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1322,4495,4494,7,11,66,112,74,31,0,1943,0,0,0,0,0,3,0,1,1.0,1523.10803119,0,0,9960.0,5,4,6,0,1,1,0,0,1,0,0,0,0,0,0,1,9960.0,2,1,2_0,2_1,10000.0,0,10000.0,0,7,10,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1323,4522,4521,0,0,69,112,77,20,0,1976,0,0,0,0,0,4,0,1,1.0,2883.40301328,2185,0,11996.0,5,3,10,4,1,0,0,0,0,0,1,0,0,1,0,0,11996.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1324,4532,4531,6,12,47,111,56,60,0,1991,0,500,0,0,2,5,0,5,3.0,1510.82528959,2431,0,29542.0,1,3,9,7,5,2,0,1,0,0,0,1,0,1,0,2,9847.33333333,2,1,2_1,2_0,3000.0,0,3000.0,0,10,11,0.0,10.0,1.1,1,0,292.46652957204975,292.46652957204975,0.0 1325,4545,4544,0,0,54,111,68,71,0,2004,0,0,0,268,1,3,1,2,1.3,2401.0733686,0,0,13760.0,4,3,5,4,2,0,0,0,0,0,1,0,0,0,0,0,10584.6153846,2,1,2_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 1326,4554,4553,3,8,50,112,62,50,0,2023,0,0,300,214,1,5,1,3,2.0,1784.45271247,1586,0,22966.0,1,3,8,1,4,1,0,1,0,1,0,0,0,1,1,0,11483.0,2,1,2_1,2_0,8500.0,0,0.0,8500,8,10,0.0,0.0,0.0,0,0,828.6551671208076,0.0,828.6551671208076 -1327,4567,4566,0,0,42,211,68,50,0,2046,0,0,0,0,1,4,2,3,1.8,1886.58081721,0,0,21814.0,4,3,3,3,2,0,0,0,0,1,0,0,0,1,0,0,12118.888888899999,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,4.66666666667,1.1,0,0,0.0,0.0,0.0 +1327,4567,4566,0,0,42,211,68,50,0,2046,0,0,0,0,1,4,2,3,1.8,1886.58081721,0,0,21814.0,4,3,3,3,2,0,0,0,0,1,0,0,0,1,0,0,12118.8888889,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,4.66666666667,1.1,0,0,0.0,0.0,0.0 1328,4583,4582,5,8,45,111,63,71,0,2064,0,99999,0,0,3,4,4,6,3.3,2661.93405475,0,0,39351.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,0,1,11924.5454545,2,1,2_1,2_0,10000.0,0,10000.0,0,13,15,95.4,46.0,9.9,0,0,974.8884319068325,974.8884319068325,0.0 1329,4620,4619,4,4,77,120,71,71,0,2111,0,0,0,0,0,4,0,2,1.5,3416.25738638,2915,0,14792.0,5,1,0,2,3,1,0,0,0,1,0,0,0,0,0,1,9861.33333333,2,1,2_0,2_0,1000.0,0,1000.0,0,3,4,0.0,0.0,0.0,0,0,97.48884319068326,97.48884319068326,0.0 1330,4625,4624,11,14,38,300,62,60,0,2117,0,87,0,0,2,5,3,5,2.4,1188.95087421,4605,0,29872.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,12446.6666667,2,1,2_0,2_1,17343.0,0,17343.0,0,1,17,155.0,20.0,3.3,0,1,1728.1725967083844,1728.1725967083844,0.0 @@ -1334,23 +1334,23 @@ 1332,4642,4641,3,13,48,221,52,60,0,2137,0,0,220,0,1,5,0,1,1.0,1690.1786033,1352,0,9873.0,4,4,1,2,1,1,0,1,0,1,0,0,0,1,1,0,9873.0,2,1,2_1,2_0,14000.0,0,0.0,14000,4,13,0.0,0.0,0.0,0,0,1364.8438046695653,0.0,1364.8438046695653 1333,4660,4659,1,1,78,300,78,71,0,2161,0,0,0,0,0,4,0,2,1.5,2854.23874262,0,0,17730.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,11820.0,2,1,2_0,2_1,7001.0,0,7001.0,0,1,2,0.0,0.0,0.0,0,0,697.6264976967883,697.6264976967883,0.0 1334,4662,4661,0,0,56,111,74,50,0,2165,0,0,0,0,0,4,0,1,1.0,4207.8187379,0,0,10015.0,7,1,4,4,1,0,0,0,0,0,1,0,0,0,0,0,10015.0,2,1,2_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 -1335,4664,4663,6,10,42,221,63,71,0,2167,0,0,0,0,2,5,2,4,2.3,2346.53145186,2080,0,26278.0,1,1,1,3,4,2,1,0,0,1,0,0,0,0,1,1,11425.217391299999,2,1,2_0,2_0,23264.0,0,11747.0,11517,11,11,0.0,2.0,0.0,0,1,2267.980447988055,1145.2014409609562,1122.779007027099 +1335,4664,4663,6,10,42,221,63,71,0,2167,0,0,0,0,2,5,2,4,2.3,2346.53145186,2080,0,26278.0,1,1,1,3,4,2,1,0,0,1,0,0,0,0,1,1,11425.2173913,2,1,2_0,2_0,23264.0,0,11747.0,11517,11,11,0.0,2.0,0.0,0,1,2267.980447988055,1145.2014409609562,1122.779007027099 1336,4670,4669,0,18,23,111,42,20,0,2173,0,0,10,470,2,2,0,2,1.5,3299.8194642,1353,0,18635.0,3,3,9,7,3,2,0,1,0,0,0,1,0,0,2,0,12423.3333333,2,1,2_0,2_0,16352.0,0,0.0,16352,5,13,0.0,0.0,0.0,0,0,1594.1375638540524,0.0,1594.1375638540524 1337,4680,4679,13,13,84,400,78,70,0,2187,0,0,0,0,0,3,0,2,1.5,2980.83141649,0,0,17105.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,11403.3333333,2,1,2_0,2_1,100.0,0,0.0,100,14,14,0.0,0.0,0.0,0,0,9.96466930005411,0.0,9.96466930005411 1338,4682,4681,9,10,82,111,72,70,0,2189,0,0,0,0,0,4,0,2,1.5,4526.88902829,0,0,17691.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,11794.0,2,1,2_0,2_0,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 1339,4684,4683,0,0,46,111,22,71,0,2192,0,0,0,1,1,2,0,1,1.0,3942.43481701,0,0,11510.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,11510.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,150.0,3.32,0,0,0.0,0.0,0.0 1340,4686,4685,22,22,63,112,77,70,0,2195,0,0,0,0,0,5,0,1,1.0,2131.66705649,1092,0,12015.0,5,4,9,0,1,1,0,0,1,0,0,0,0,0,1,0,12015.0,2,1,2_0,2_1,12000.0,0,0.0,12000,8,22,0.0,0.0,0.0,0,0,1195.7603160064934,0.0,1195.7603160064934 1341,4699,4698,0,0,63,111,77,70,0,221,0,0,0,0,0,2,0,1,1.0,2493.39018896,0,0,11894.0,5,1,5,4,1,0,0,0,0,0,1,0,0,0,0,0,11894.0,2,1,2_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 -1342,4706,4705,0,11,48,120,46,50,0,2216,0,0,100,261,2,3,1,3,2.0,3076.3055248000005,2635,0,21085.0,1,3,0,0,4,1,1,1,1,0,0,0,0,1,1,0,10542.5,2,1,2_1,2_1,15000.0,0,0.0,15000,6,11,90.3,26.6666666667,0.0,0,1,1494.7003950081166,0.0,1494.7003950081166 -1343,4722,4721,4,16,36,112,48,42,0,2233,0,0,50,0,2,4,4,6,2.7,1294.17772677,4856,0,33720.0,1,2,7,0,4,2,1,0,1,0,0,0,0,1,1,1,12488.888888899999,2,1,2_1,2_1,33500.0,0,25000.0,8500,4,11,322.5,41.25,3.3,0,1,3338.164215518127,2491.1673250135277,846.9968905045995 +1342,4706,4705,0,11,48,120,46,50,0,2216,0,0,100,261,2,3,1,3,2.0,3076.3055248,2635,0,21085.0,1,3,0,0,4,1,1,1,1,0,0,0,0,1,1,0,10542.5,2,1,2_1,2_1,15000.0,0,0.0,15000,6,11,90.3,26.6666666667,0.0,0,1,1494.7003950081166,0.0,1494.7003950081166 +1343,4722,4721,4,16,36,112,48,42,0,2233,0,0,50,0,2,4,4,6,2.7,1294.17772677,4856,0,33720.0,1,2,7,0,4,2,1,0,1,0,0,0,0,1,1,1,12488.8888889,2,1,2_1,2_1,33500.0,0,25000.0,8500,4,11,322.5,41.25,3.3,0,1,3338.164215518127,2491.1673250135277,846.9968905045995 1344,4733,4732,0,5,22,111,84,41,0,2249,0,350,0,0,0,2,0,1,1.0,3436.59264926,2392,0,10276.0,3,4,9,7,1,1,0,1,0,0,0,1,0,0,0,1,10276.0,2,1,2_0,2_0,18672.0,0,18672.0,0,1,4,0.0,0.0,0.0,0,1,1820.3116800564376,1820.3116800564376,0.0 -1345,4755,4754,6,10,40,112,53,50,0,2290,0,0,0,0,3,4,4,6,3.1,976.005793565,0,0,38010.0,4,3,5,0,4,2,0,0,1,0,0,0,0,1,0,2,12261.290322600002,2,1,2_1,2_1,25000.0,0,25000.0,0,2,9,217.5,36.0,3.3,0,1,2491.1673250135277,2491.1673250135277,0.0 +1345,4755,4754,6,10,40,112,53,50,0,2290,0,0,0,0,3,4,4,6,3.1,976.005793565,0,0,38010.0,4,3,5,0,4,2,0,0,1,0,0,0,0,1,0,2,12261.2903226,2,1,2_1,2_1,25000.0,0,25000.0,0,2,9,217.5,36.0,3.3,0,1,2491.1673250135277,2491.1673250135277,0.0 1346,4762,4761,2,4,46,111,47,43,0,2300,0,150,0,500,1,2,0,1,1.0,3865.26956885,0,0,12320.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,0,1,12320.0,2,1,2_0,2_0,8144.0,0,8144.0,0,1,7,0.0,10.0,1.1,0,0,793.9491389449242,793.9491389449242,0.0 1347,4768,4767,3,10,37,400,52,50,0,2310,0,0,0,0,1,4,4,5,2.4,1885.98733484,780,0,28204.0,1,3,0,0,2,1,0,0,1,0,0,0,0,1,0,1,11751.6666667,2,1,2_1,2_1,10000.0,0,10000.0,0,4,11,0.0,4.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1348,4773,4772,0,0,51,111,48,60,0,2316,0,0,0,131,2,5,2,4,2.3,1517.92571666,1560,0,28750.0,1,3,7,5,4,0,0,0,0,0,1,0,0,1,0,0,12500.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1349,4794,4793,22,22,82,111,86,70,0,2349,0,0,0,0,1,4,1,3,2.0,2890.97576704,2600,0,20500.0,5,1,8,7,5,1,0,0,0,0,0,1,0,0,1,0,10250.0,2,1,2_0,2_0,41339.0,0,0.0,41339,10,10,0.0,0.0,0.0,0,0,4030.0912886596543,0.0,4030.0912886596543 1350,4811,4810,12,12,80,111,86,70,0,2372,0,0,0,0,0,4,0,1,1.0,2783.11955814,1584,0,12250.0,6,4,8,7,1,1,0,0,0,0,0,1,0,0,1,0,12250.0,2,1,2_0,2_0,2000.0,0,0.0,2000,6,13,0.0,0.0,0.0,0,0,194.9776863813665,0.0,194.9776863813665 -1351,4849,4848,2,5,62,111,78,70,0,243,0,0,0,177,0,5,5,7,3.2,2177.8902838000004,1560,0,36563.0,5,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,11425.9375,2,1,2_1,2_0,35000.0,0,35000.0,0,2,5,0.0,0.0,0.0,0,0,3412.1095116739134,3412.1095116739134,0.0 +1351,4849,4848,2,5,62,111,78,70,0,243,0,0,0,177,0,5,5,7,3.2,2177.8902838,1560,0,36563.0,5,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,11425.9375,2,1,2_1,2_0,35000.0,0,35000.0,0,2,5,0.0,0.0,0.0,0,0,3412.1095116739134,3412.1095116739134,0.0 1352,4854,4853,5,15,29,300,64,50,0,2436,0,0,0,0,1,4,3,5,2.4,1593.43358093,0,0,27161.0,1,2,0,0,4,2,0,0,1,0,0,0,0,1,0,2,11317.0833333,2,1,2_1,2_1,36452.0,0,36452.0,0,1,17,0.0,0.0,0.0,0,1,3632.3212532557245,3632.3212532557245,0.0 1353,4860,4859,0,0,25,111,56,41,0,2443,0,0,0,0,1,1,0,1,1.0,5922.80918402,0,0,11928.0,4,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,11928.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,23.8,70.0,3.32,0,0,0.0,0.0,0.0 1354,4863,4862,15,15,79,212,71,71,0,2448,0,0,0,0,0,3,0,2,1.5,2728.34553392,2860,0,18575.0,5,1,3,0,3,1,0,0,1,0,0,0,0,0,1,0,12383.3333333,2,1,2_0,2_1,5000.0,0,0.0,5000,15,15,0.0,0.0,0.0,0,0,498.23346500270554,0.0,498.23346500270554 @@ -1362,7 +1362,7 @@ 1360,4908,4907,22,22,83,112,11,71,0,2504,0,0,0,0,2,3,1,2,1.5,3591.10810046,0,0,16255.0,5,1,8,1,2,1,1,0,0,1,0,0,0,0,1,0,10836.6666667,2,1,2_0,2_0,300.0,0,0.0,300,19,21,0.0,0.0,1.1,0,0,29.246652957204976,0.0,29.246652957204976 1361,4915,4914,3,3,26,111,11,31,0,2515,0,200,0,0,2,3,0,2,1.5,2925.60492632,0,0,17045.0,1,3,9,7,3,1,0,1,0,0,0,1,0,1,0,1,11363.3333333,2,1,2_1,2_0,14001.0,0,14001.0,0,1,2,0.0,26.6666666667,3.31,0,1,1364.9412935127561,1364.9412935127561,0.0 1362,4923,4922,0,19,22,112,42,41,0,2524,0,0,280,0,1,2,0,1,1.0,4404.78531375,0,0,10530.0,1,3,10,2,1,1,0,1,0,1,0,0,0,0,1,0,10530.0,2,1,2_0,2_0,10000.0,0,0.0,10000,11,18,108.1,160.0,5.52,0,0,974.8884319068325,0.0,974.8884319068325 -1363,4924,4923,1,12,38,111,64,60,2,2525,0,1000,0,0,2,4,4,6,2.7,1235.60114416,5460,1700,33713.0,1,2,7,5,4,2,0,0,0,0,1,0,0,1,0,2,12486.296296299999,2,1,2_1,2_0,3000.0,0,3000.0,0,10,11,0.0,10.0,1.1,1,0,292.46652957204975,292.46652957204975,0.0 +1363,4924,4923,1,12,38,111,64,60,2,2525,0,1000,0,0,2,4,4,6,2.7,1235.60114416,5460,1700,33713.0,1,2,7,5,4,2,0,0,0,0,1,0,0,1,0,2,12486.2962963,2,1,2_1,2_0,3000.0,0,3000.0,0,10,11,0.0,10.0,1.1,1,0,292.46652957204975,292.46652957204975,0.0 1364,4932,4931,11,16,67,111,86,71,0,2541,0,0,0,0,0,4,0,1,1.0,2563.68391174,2600,0,11974.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,11974.0,2,1,2_0,2_0,2200.0,0,0.0,2200,12,16,0.0,0.0,0.0,0,0,214.47545501950316,0.0,214.47545501950316 1365,4944,4943,31,37,92,111,72,50,0,2558,0,0,0,0,0,5,0,1,1.0,2303.75290963,0,0,12408.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,1,0,12408.0,2,1,2_0,2_0,100.0,0,0.0,100,19,19,0.0,0.0,0.0,0,0,9.748884319068324,0.0,9.748884319068324 1366,4951,4950,0,0,72,111,78,71,0,2569,0,0,0,134,0,3,0,1,1.0,2788.03110176,0,0,10716.0,5,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,10716.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -1370,9 +1370,9 @@ 1368,5008,5007,16,16,76,112,78,71,0,2653,0,0,0,0,0,4,0,2,1.5,2643.36995205,0,0,16074.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,1,0,10716.0,2,1,2_0,2_1,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,498.23346500270554,0.0,498.23346500270554 1369,5021,5020,3,3,67,211,78,70,0,2671,0,0,0,0,0,6,0,2,1.5,2484.75455883,0,0,17060.0,5,1,4,3,3,2,0,0,0,1,0,0,0,0,1,1,11373.3333333,2,1,2_0,2_0,14000.0,0,6000.0,8000,4,4,0.0,0.0,0.0,0,0,1364.8438046695653,584.9330591440995,779.910745525466 1370,5040,5039,6,7,64,112,77,60,0,27,0,0,0,0,0,4,0,1,1.0,1834.42587482,0,0,11929.0,5,1,8,2,1,1,0,0,0,1,0,0,0,0,1,0,11929.0,2,1,2_0,2_0,9000.0,0,0.0,9000,2,7,0.0,0.0,0.0,0,0,877.3995887161492,0.0,877.3995887161492 -1371,5044,5043,2,2,53,111,65,70,0,2704,0,55,0,0,1,5,1,3,2.0,2808.4549994000004,1040,0,21310.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,10655.0,2,1,2_0,2_0,16000.0,0,16000.0,0,1,1,0.0,0.0,0.0,0,0,1559.821491050932,1559.821491050932,0.0 +1371,5044,5043,2,2,53,111,65,70,0,2704,0,55,0,0,1,5,1,3,2.0,2808.4549994,1040,0,21310.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,10655.0,2,1,2_0,2_0,16000.0,0,16000.0,0,1,1,0.0,0.0,0.0,0,0,1559.821491050932,1559.821491050932,0.0 1372,5050,5049,19,19,88,400,71,70,0,2713,0,0,0,0,0,6,0,2,1.5,1817.26344159,0,0,15810.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,10540.0,2,1,2_0,2_1,1000.0,0,1000.0,0,19,20,0.0,0.0,0.0,0,0,99.64669300054112,99.64669300054112,0.0 -1373,5078,5077,11,11,50,400,69,71,0,2754,0,0,0,0,3,7,5,7,3.6,1881.48098484,3640,0,36470.0,1,2,0,0,4,3,1,0,1,0,0,0,0,1,0,3,10130.555555600002,2,1,2_1,2_1,20000.0,0,20000.0,0,4,9,0.0,0.0,0.0,0,1,1992.9338600108222,1992.9338600108222,0.0 +1373,5078,5077,11,11,50,400,69,71,0,2754,0,0,0,0,3,7,5,7,3.6,1881.48098484,3640,0,36470.0,1,2,0,0,4,3,1,0,1,0,0,0,0,1,0,3,10130.5555556,2,1,2_1,2_1,20000.0,0,20000.0,0,4,9,0.0,0.0,0.0,0,1,1992.9338600108222,1992.9338600108222,0.0 1374,5079,5078,8,10,58,221,62,70,0,2757,0,0,200,0,2,5,0,2,1.5,5680.77777882,2618,0,16930.0,1,1,1,1,3,1,0,1,0,1,0,0,0,0,1,0,11286.6666667,2,1,2_0,2_0,12000.0,0,0.0,12000,6,9,53.0,10.0,0.0,0,1,1169.866118288199,0.0,1169.866118288199 1375,5085,5084,0,0,47,111,55,50,0,2769,0,0,0,539,1,4,1,2,1.5,3217.2478662,0,0,16201.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,10800.6666667,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,25.0,1.1,0,0,0.0,0.0,0.0 1376,5095,5094,4,20,66,300,71,50,0,2779,0,0,0,0,0,4,0,2,1.5,2018.38207451,0,0,17871.0,5,1,0,0,3,1,1,0,1,0,0,0,0,0,0,1,11914.0,2,1,2_0,2_1,900.0,0,900.0,0,12,17,0.0,0.0,0.0,0,0,89.682023700487,89.682023700487,0.0 @@ -1387,7 +1387,7 @@ 1385,5198,5197,17,17,85,111,77,41,0,2924,0,0,0,0,0,5,0,1,1.0,2752.17541394,0,0,10597.0,5,4,9,7,1,1,0,0,0,0,0,1,0,0,1,0,10597.0,2,1,2_0,2_0,100.0,0,0.0,100,19,19,0.0,0.0,0.0,0,0,9.748884319068324,0.0,9.748884319068324 1386,5205,5204,2,2,66,111,72,50,0,2938,0,0,0,0,0,5,0,2,1.5,1693.76704917,0,0,17724.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,11816.0,2,1,2_0,2_0,35000.0,0,35000.0,0,2,2,0.0,0.0,0.0,0,0,3412.1095116739134,3412.1095116739134,0.0 1387,5218,5217,0,0,21,111,46,60,0,2957,0,0,0,0,1,2,0,1,1.0,4217.00725737,0,0,10092.0,1,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,10092.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,0.0,30.0,2.2,0,0,0.0,0.0,0.0 -1388,5233,5232,2,20,44,112,62,50,0,2977,0,130,0,0,2,5,3,5,2.8,1616.68476968,0,0,28313.0,1,3,8,1,4,3,0,1,0,1,0,0,0,1,0,3,10111.785714299998,2,1,2_1,2_0,12481.0,0,12481.0,0,7,16,35.0,7.5,3.3,1,1,1216.7582518629174,1216.7582518629174,0.0 +1388,5233,5232,2,20,44,112,62,50,0,2977,0,130,0,0,2,5,3,5,2.8,1616.68476968,0,0,28313.0,1,3,8,1,4,3,0,1,0,1,0,0,0,1,0,3,10111.7857143,2,1,2_1,2_0,12481.0,0,12481.0,0,7,16,35.0,7.5,3.3,1,1,1216.7582518629174,1216.7582518629174,0.0 1389,5241,5240,0,0,46,111,85,71,0,2987,0,0,0,0,0,3,1,2,1.3,5258.28265329,520,0,13020.0,6,3,5,4,2,0,0,0,0,0,1,0,0,1,0,0,10015.3846154,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1390,5250,5249,3,14,45,111,37,50,0,30,0,0,0,0,1,3,3,5,2.6,2213.52609793,0,0,26196.0,4,3,10,8,4,1,0,0,0,0,0,0,1,1,1,0,10075.3846154,2,1,2_1,2_0,22000.0,0,0.0,22000,2,12,0.0,0.0,0.0,1,0,2144.7545501950312,0.0,2144.7545501950312 1391,5260,5259,0,0,90,112,72,71,0,3013,0,0,0,0,0,2,0,1,1.0,2987.18621326,0,0,11160.0,5,1,7,1,1,0,0,0,0,1,0,0,0,0,0,0,11160.0,2,1,2_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 @@ -1402,9 +1402,9 @@ 1400,5344,5343,2,6,20,111,84,60,0,3125,0,99999,0,0,0,2,0,1,1.0,3463.72695101,905,0,9628.0,3,3,8,6,1,1,0,1,0,0,1,0,0,1,0,1,9628.0,2,1,2_1,2_0,10000.0,0,10000.0,0,4,8,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 1401,5351,5350,4,7,47,111,63,10,0,3131,0,0,0,500,1,3,3,5,2.4,4340.19667253,0,0,27146.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,11310.8333333,2,1,2_1,2_0,9000.0,0,9000.0,0,4,7,91.0,25.2,5.57,0,0,877.3995887161492,877.3995887161492,0.0 1402,5381,5380,7,11,80,400,71,70,0,3181,0,0,0,0,0,5,0,2,1.5,1806.65853795,0,0,14671.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,9780.66666667,2,1,2_0,2_1,10362.0,0,10362.0,0,12,12,0.0,0.0,0.0,0,0,1032.539032871607,1032.539032871607,0.0 -1403,5382,5381,5,8,26,111,63,50,0,3184,0,150,0,0,2,5,2,4,2.1,2229.18307607,0,0,23330.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,11109.5238095,2,1,2_0,2_0,7572.0,0,7572.0,0,1,8,0.0,13.333333333299999,3.3,0,1,738.1855206398535,738.1855206398535,0.0 +1403,5382,5381,5,8,26,111,63,50,0,3184,0,150,0,0,2,5,2,4,2.1,2229.18307607,0,0,23330.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,11109.5238095,2,1,2_0,2_0,7572.0,0,7572.0,0,1,8,0.0,13.3333333333,3.3,0,1,738.1855206398535,738.1855206398535,0.0 1404,5392,5391,11,11,38,300,11,50,0,3197,0,0,0,0,2,6,3,5,2.6,1549.03216872,842,0,31095.0,1,4,0,0,4,2,1,0,1,0,0,0,0,0,1,1,11959.6153846,2,1,2_0,2_1,33500.0,0,25000.0,8500,4,11,322.5,41.25,3.3,0,1,3338.164215518127,2491.1673250135277,846.9968905045995 -1405,5396,5395,16,16,52,112,68,71,0,3203,0,0,200,0,1,4,2,4,2.3,2583.99938056,6240,0,28264.0,1,2,9,0,4,2,0,1,1,0,0,0,0,1,2,0,12288.695652200002,2,1,2_1,2_1,1000.0,0,0.0,1000,7,18,159.0,33.3333333333,3.3,1,0,99.64669300054112,0.0,99.64669300054112 +1405,5396,5395,16,16,52,112,68,71,0,3203,0,0,200,0,1,4,2,4,2.3,2583.99938056,6240,0,28264.0,1,2,9,0,4,2,0,1,1,0,0,0,0,1,2,0,12288.6956522,2,1,2_1,2_1,1000.0,0,0.0,1000,7,18,159.0,33.3333333333,3.3,1,0,99.64669300054112,0.0,99.64669300054112 1406,5397,5396,14,14,45,111,55,50,0,3204,0,0,8,17,1,4,2,3,1.8,1220.40544497,1043,0,17959.0,2,3,6,4,2,1,1,1,0,0,1,0,0,1,1,0,9977.22222222,2,1,2_1,2_0,8000.0,0,0.0,8000,11,11,0.0,16.6666666667,3.3,0,1,779.910745525466,0.0,779.910745525466 1407,5403,5402,0,0,70,111,75,12,0,3212,0,0,0,0,0,1,0,1,1.0,2556.17393655,0,0,12138.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,12138.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1408,5406,5405,1,1,77,120,77,71,1,3217,0,0,0,0,0,5,0,1,1.0,3536.37115594,0,11600,10157.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,10157.0,2,1,2_0,2_1,0.0,0,0.0,0,8,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -1424,26 +1424,26 @@ 1422,5571,5570,0,0,54,211,56,50,0,3439,0,0,0,0,1,3,0,1,1.0,2107.98130958,0,0,11108.0,4,3,3,3,1,0,0,0,0,1,0,0,0,1,0,0,11108.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1423,5597,5596,0,10,37,111,47,50,0,3478,0,0,0,0,1,4,1,3,2.0,3337.79849063,0,0,22255.0,1,4,9,7,4,1,0,1,0,0,0,1,0,0,1,0,11127.5,2,1,2_0,2_0,2000.0,0,0.0,2000,2,7,33.0,20.0,3.3,0,1,194.9776863813665,0.0,194.9776863813665 1424,5604,5603,0,26,42,400,54,20,0,3487,0,99999,0,0,2,9,5,7,3.4,1132.70600401,0,0,35939.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,10570.2941176,2,1,2_0,2_1,20716.0,0,20716.0,0,3,21,90.6,30.0,3.3,1,0,2064.2808921992096,2064.2808921992096,0.0 -1425,5609,5608,1,9,32,221,53,50,2,3492,0,0,0,0,2,4,2,4,2.1,1707.68107125,3380,3700,26101.0,1,3,1,3,4,2,1,0,0,1,0,0,0,1,2,0,12429.047618999999,2,1,2_1,2_0,5657.0,0,0.0,5657,1,7,50.0,20.0,3.3,0,1,551.4943859296951,0.0,551.4943859296951 +1425,5609,5608,1,9,32,221,53,50,2,3492,0,0,0,0,2,4,2,4,2.1,1707.68107125,3380,3700,26101.0,1,3,1,3,4,2,1,0,0,1,0,0,0,1,2,0,12429.047619,2,1,2_1,2_0,5657.0,0,0.0,5657,1,7,50.0,20.0,3.3,0,1,551.4943859296951,0.0,551.4943859296951 1426,5628,5627,0,0,21,111,84,41,0,3516,0,0,0,260,0,2,0,1,1.0,3605.48962626,0,0,10934.0,3,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,10934.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1427,5642,5641,15,21,82,400,72,70,0,3530,0,0,0,0,0,4,0,1,1.0,4669.10370938,0,0,12420.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,12420.0,2,1,2_0,2_1,4000.0,0,0.0,4000,18,20,0.0,0.0,0.0,0,0,398.5867720021645,0.0,398.5867720021645 1428,5655,5654,1,4,63,400,71,50,0,3547,0,0,0,0,0,5,0,2,1.5,2128.49147649,2516,0,17694.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,11796.0,2,1,2_0,2_1,6307.0,0,6307.0,0,0,6,0.0,0.0,0.0,0,0,628.4716927544129,628.4716927544129,0.0 1429,5656,5655,4,4,36,111,52,31,0,3548,0,200,0,0,2,7,3,5,2.4,2291.39149252,0,0,26688.0,1,2,4,4,4,1,0,1,0,0,1,0,0,0,0,1,11120.0,2,1,2_0,2_0,13144.0,0,13144.0,0,1,5,0.0,18.0,0.0,0,1,1281.3933548983407,1281.3933548983407,0.0 1430,5664,5663,0,0,62,111,78,70,0,3558,0,0,0,251,1,4,1,3,2.0,2379.96438445,0,0,22842.0,5,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,11421.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,59.0,33.3333333333,5.57,0,0,0.0,0.0,0.0 1431,5669,5668,6,20,43,111,64,60,0,3567,0,0,0,0,1,5,3,5,2.6,2617.22214779,0,0,30730.0,1,2,8,6,4,1,0,0,0,0,1,0,0,1,0,1,11819.2307692,2,1,2_1,2_0,13682.0,0,13682.0,0,9,17,0.0,0.0,0.0,0,1,1333.8423525349283,1333.8423525349283,0.0 -1432,5690,5689,6,10,40,111,67,71,0,3595,0,99999,0,16,2,4,5,7,3.2,2037.83426883,0,0,39124.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,12226.25,2,1,2_1,2_0,12000.0,0,12000.0,0,2,10,0.0,6.666666666669999,1.1,0,0,1169.866118288199,1169.866118288199,0.0 +1432,5690,5689,6,10,40,111,67,71,0,3595,0,99999,0,16,2,4,5,7,3.2,2037.83426883,0,0,39124.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,12226.25,2,1,2_1,2_0,12000.0,0,12000.0,0,2,10,0.0,6.66666666667,1.1,0,0,1169.866118288199,1169.866118288199,0.0 1433,5704,5703,0,0,38,111,67,50,0,3614,0,0,0,0,1,1,0,1,1.0,1751.69659504,0,0,10460.0,4,3,6,5,1,0,0,0,0,0,1,0,0,1,0,0,10460.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1434,5712,5711,5,5,57,112,21,50,0,3627,0,0,0,0,1,6,0,2,1.5,7230.89319683,3120,0,15570.0,1,1,9,1,3,2,0,0,0,1,0,0,0,0,0,2,10380.0,2,1,2_0,2_0,12480.0,0,12480.0,0,10,10,0.0,0.0,0.0,0,0,1216.660763019727,1216.660763019727,0.0 1435,5721,5720,0,0,62,111,78,70,0,3637,0,0,0,209,0,3,0,2,1.5,1990.82609105,0,0,15750.0,5,3,8,7,3,0,0,0,0,0,0,1,0,0,0,0,10500.0,2,1,2_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 1436,5728,5727,2,2,71,111,71,71,0,3648,0,0,0,0,0,4,0,2,1.5,2858.46958963,1924,0,18190.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,12126.6666667,2,1,2_0,2_0,4703.0,0,4703.0,0,2,2,0.0,0.0,0.0,0,0,458.4900295257833,458.4900295257833,0.0 1437,5735,5734,0,0,74,111,78,71,0,3655,0,0,0,163,0,2,0,1,1.0,7228.80496964,0,0,12016.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,12016.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1438,5752,5751,4,4,44,300,63,50,0,3677,0,0,0,0,4,6,3,5,2.8,1121.79432308,3120,0,33074.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,11812.142857100001,2,1,2_0,2_1,25000.0,0,25000.0,0,2,3,196.0,32.5,0.0,0,0,2491.1673250135277,2491.1673250135277,0.0 +1438,5752,5751,4,4,44,300,63,50,0,3677,0,0,0,0,4,6,3,5,2.8,1121.79432308,3120,0,33074.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,11812.1428571,2,1,2_0,2_1,25000.0,0,25000.0,0,2,3,196.0,32.5,0.0,0,0,2491.1673250135277,2491.1673250135277,0.0 1439,5755,5754,0,0,32,111,85,50,0,368,0,0,0,80,0,3,3,4,1.9,2351.46060804,0,0,23415.0,6,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,12323.6842105,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1440,5768,5767,0,0,41,111,85,71,0,3699,0,0,0,0,0,4,0,1,1.0,2867.1711443000004,0,0,11148.0,4,3,3,4,1,0,0,0,0,0,1,0,0,1,0,0,11148.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1440,5768,5767,0,0,41,111,85,71,0,3699,0,0,0,0,0,4,0,1,1.0,2867.1711443,0,0,11148.0,4,3,3,4,1,0,0,0,0,0,1,0,0,1,0,0,11148.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1441,5786,5785,0,0,58,111,77,12,0,3722,0,0,0,0,0,2,0,1,1.0,3811.40681306,0,0,12300.0,4,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,12300.0,2,1,2_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 1442,5791,5790,0,0,49,111,68,50,0,3729,0,0,0,67,1,3,1,2,1.3,3047.78741309,0,0,14014.0,4,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,10780.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,25.0,1.1,0,0,0.0,0.0,0.0 1443,5801,5800,0,0,63,111,78,71,0,374,0,0,0,80,1,2,1,2,1.5,3915.56665134,0,0,15068.0,5,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,10045.3333333,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1444,5836,5835,0,0,67,211,72,71,0,3787,0,0,0,290,0,3,0,1,1.0,2020.0514815000001,0,0,12244.0,5,3,3,4,1,0,0,0,0,0,1,0,0,1,0,0,12244.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1444,5836,5835,0,0,67,211,72,71,0,3787,0,0,0,290,0,3,0,1,1.0,2020.0514815,0,0,12244.0,5,3,3,4,1,0,0,0,0,0,1,0,0,1,0,0,12244.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1445,5857,5856,0,0,81,112,78,70,0,3811,0,0,0,0,0,3,0,1,1.0,2304.32715895,0,0,12035.0,5,1,10,0,1,0,0,0,1,0,0,0,0,0,0,0,12035.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1446,5875,5874,0,0,75,112,78,71,0,3835,0,0,0,0,0,3,0,1,1.0,2924.92642216,0,0,10830.0,5,1,9,0,1,0,0,0,1,0,0,0,0,0,0,0,10830.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1447,5891,5890,6,6,42,111,62,71,0,3858,0,0,0,0,2,4,2,4,2.3,1575.05730372,6370,0,25235.0,1,3,7,5,4,1,0,0,0,0,1,0,0,0,0,1,10971.7391304,2,1,2_0,2_0,16337.0,0,16337.0,0,6,8,123.5,37.5,2.2,1,0,1592.6752312061922,1592.6752312061922,0.0 @@ -1457,15 +1457,15 @@ 1455,5984,5983,3,7,43,111,43,33,0,3982,0,1016,0,0,2,5,2,4,2.1,2585.54722089,2600,0,26037.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,12398.5714286,2,1,2_0,2_0,9816.0,0,9816.0,0,7,9,0.0,0.0,0.0,0,1,956.9504847597468,956.9504847597468,0.0 1456,5995,5994,1,13,47,300,62,71,2,4,0,600,30,0,3,6,4,6,3.1,2346.49729055,6242,2800,36244.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,1,1,11691.6129032,2,1,2_1,2_1,64572.0,0,54572.0,10000,1,9,43.0,17.5,3.32,0,1,6434.386260430942,5437.91933042553,996.4669300054111 1457,6000,5999,8,20,67,300,77,70,0,401,0,0,0,0,0,5,0,2,1.5,1812.12052806,2081,0,18209.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,12139.3333333,2,1,2_0,2_1,6500.0,0,3500.0,3000,16,19,0.0,0.0,0.0,0,0,647.7035045035173,348.7634255018939,298.94007900162336 -1458,6023,6022,5,19,77,112,71,71,0,404,0,0,0,0,0,4,0,2,1.5,2019.3787862999998,0,0,17807.0,5,1,4,0,3,1,0,0,1,0,0,0,0,0,1,0,11871.3333333,2,1,2_0,2_1,5500.0,0,0.0,5500,12,19,0.0,0.0,0.0,0,0,548.0568115029762,0.0,548.0568115029762 -1459,6024,6023,17,17,75,112,78,50,0,4040,0,0,0,0,0,3,0,1,1.0,2639.3185221999997,1664,0,11070.0,5,1,7,2,1,1,0,0,0,1,0,0,0,0,0,1,11070.0,2,1,2_0,2_0,25000.0,0,25000.0,0,6,17,0.0,0.0,0.0,0,0,2437.2210797670814,2437.2210797670814,0.0 +1458,6023,6022,5,19,77,112,71,71,0,404,0,0,0,0,0,4,0,2,1.5,2019.3787863,0,0,17807.0,5,1,4,0,3,1,0,0,1,0,0,0,0,0,1,0,11871.3333333,2,1,2_0,2_1,5500.0,0,0.0,5500,12,19,0.0,0.0,0.0,0,0,548.0568115029762,0.0,548.0568115029762 +1459,6024,6023,17,17,75,112,78,50,0,4040,0,0,0,0,0,3,0,1,1.0,2639.3185222,1664,0,11070.0,5,1,7,2,1,1,0,0,0,1,0,0,0,0,0,1,11070.0,2,1,2_0,2_0,25000.0,0,25000.0,0,6,17,0.0,0.0,0.0,0,0,2437.2210797670814,2437.2210797670814,0.0 1460,6052,6051,8,8,83,300,71,71,0,4080,0,0,0,0,0,4,0,2,1.5,3411.47268766,0,0,14548.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,9698.66666667,2,1,2_0,2_1,14000.0,0,14000.0,0,9,9,0.0,0.0,0.0,0,0,1395.0537020075756,1395.0537020075756,0.0 1461,6056,6055,8,22,44,112,52,10,0,4084,0,64,0,50,1,2,1,2,1.3,3149.07874184,0,0,14664.0,1,3,10,4,2,1,0,1,0,0,1,0,0,1,0,1,11280.0,2,1,2_1,2_0,6000.0,0,6000.0,0,9,21,0.0,18.0,3.31,0,1,584.9330591440995,584.9330591440995,0.0 1462,6078,6077,0,7,82,112,78,71,0,4114,0,0,0,0,0,4,0,1,1.0,2809.99146631,0,0,11805.0,5,1,10,0,1,1,0,0,1,0,0,0,0,0,0,1,11805.0,2,1,2_0,2_1,3000.0,0,3000.0,0,6,6,0.0,0.0,0.0,0,0,298.94007900162336,298.94007900162336,0.0 1463,6084,6083,1,1,40,221,63,43,1,4121,0,200,0,0,2,5,2,4,2.3,3677.2742838,3016,19300,23261.0,1,3,1,1,4,1,0,1,0,1,0,0,0,1,0,1,10113.4782609,2,1,2_1,2_0,10300.0,0,10300.0,0,1,1,0.0,10.0,3.3,0,1,1004.1350848640375,1004.1350848640375,0.0 -1464,6094,6093,15,18,61,111,78,70,0,4132,0,0,0,0,0,5,2,4,2.3,2014.69634649,1040,0,24576.0,5,2,6,4,4,1,0,0,0,0,1,0,0,0,0,1,10685.217391299999,2,1,2_0,2_0,1050.0,0,1050.0,0,18,18,0.0,0.0,0.0,0,0,102.36328535021741,102.36328535021741,0.0 +1464,6094,6093,15,18,61,111,78,70,0,4132,0,0,0,0,0,5,2,4,2.3,2014.69634649,1040,0,24576.0,5,2,6,4,4,1,0,0,0,0,1,0,0,0,0,1,10685.2173913,2,1,2_0,2_0,1050.0,0,1050.0,0,18,18,0.0,0.0,0.0,0,0,102.36328535021741,102.36328535021741,0.0 1465,6099,6098,3,15,44,112,53,71,0,414,0,660,0,0,2,5,8,10,4.3,918.077488301,1040,0,51800.0,1,2,10,0,4,1,0,1,1,0,0,0,0,1,0,1,12046.5116279,2,1,2_1,2_1,8000.0,0,8000.0,0,8,13,80.5,19.0,2.2,0,0,797.173544004329,797.173544004329,0.0 -1466,6108,6107,0,0,42,111,56,71,0,4152,0,0,0,79,2,4,2,3,1.8,1167.76212996,0,0,21089.0,1,3,7,5,2,0,0,0,0,0,1,0,0,1,0,0,11716.111111100001,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1466,6108,6107,0,0,42,111,56,71,0,4152,0,0,0,79,2,4,2,3,1.8,1167.76212996,0,0,21089.0,1,3,7,5,2,0,0,0,0,0,1,0,0,1,0,0,11716.1111111,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1467,6138,6137,2,10,68,120,71,71,0,4196,0,0,0,0,0,3,0,2,1.5,3127.7427944,1560,0,16350.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,10900.0,2,1,2_0,2_1,34000.0,0,0.0,34000,4,12,0.0,0.0,0.0,0,0,3387.987562018398,0.0,3387.987562018398 1468,6139,6138,3,26,42,112,43,30,0,42,0,490,150,709,2,4,4,6,2.9,1123.56919057,4594,0,28110.0,4,3,9,1,4,2,1,1,0,1,0,0,0,0,1,1,9693.10344828,2,1,2_0,2_0,20000.0,0,15000.0,5000,19,19,0.0,0.0,0.0,0,0,1949.776863813665,1462.3326478602487,487.44421595341623 1469,6140,6139,10,10,50,112,85,50,0,4200,0,0,0,0,0,8,4,6,3.1,1542.80728245,0,0,30069.0,7,1,8,0,4,1,0,0,1,0,0,0,0,0,0,1,9699.67741935,2,1,2_0,2_1,23716.0,0,13716.0,10000,11,11,0.0,0.0,0.0,0,0,2363.220971200833,1366.754041195422,996.4669300054111 @@ -1474,7 +1474,7 @@ 1472,6181,6180,2,19,47,300,67,50,0,4258,0,290,0,0,2,7,1,3,2.0,1590.03746234,4246,0,19635.0,1,2,0,0,4,4,0,1,1,0,0,0,0,0,0,4,9817.5,2,1,2_0,2_1,12000.0,0,12000.0,0,2,3,53.5,72.5,0.0,0,1,1195.7603160064934,1195.7603160064934,0.0 1473,6182,6181,13,13,78,400,71,70,0,4259,0,0,0,0,0,5,0,1,1.0,2582.27839143,0,0,10957.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,10957.0,2,1,2_0,2_1,1000.0,0,0.0,1000,4,12,0.0,0.0,0.0,0,0,99.64669300054112,0.0,99.64669300054112 1474,6190,6189,3,9,42,112,67,50,0,4269,0,350,0,0,1,5,3,5,3.0,1910.08119764,2496,0,34840.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,0,2,11613.3333333,2,1,2_1,2_1,30000.0,0,30000.0,0,11,11,160.6,62.5,3.3,1,1,2989.4007900162333,2989.4007900162333,0.0 -1475,6196,6195,0,6,38,111,21,31,2,4276,0,0,0,0,2,4,2,4,2.1,3651.07670398,5732,7500,24268.0,1,2,9,7,4,1,0,0,0,0,0,1,0,1,0,1,11556.190476200001,2,1,2_1,2_0,16337.0,0,16337.0,0,6,8,123.5,37.5,2.2,1,0,1592.6752312061922,1592.6752312061922,0.0 +1475,6196,6195,0,6,38,111,21,31,2,4276,0,0,0,0,2,4,2,4,2.1,3651.07670398,5732,7500,24268.0,1,2,9,7,4,1,0,0,0,0,0,1,0,1,0,1,11556.1904762,2,1,2_1,2_0,16337.0,0,16337.0,0,6,8,123.5,37.5,2.2,1,0,1592.6752312061922,1592.6752312061922,0.0 1476,6202,6201,4,19,54,111,68,50,0,4288,0,0,0,301,1,3,0,2,1.5,3071.23402635,0,0,16988.0,1,3,10,8,3,1,0,0,0,0,0,0,1,1,1,0,11325.3333333,2,1,2_1,2_0,3813.0,0,0.0,3813,3,12,0.0,0.0,0.0,0,1,371.7249590860752,0.0,371.7249590860752 1477,6224,6223,1,1,35,111,46,20,2,4313,0,300,0,0,1,4,2,3,1.8,2288.16067301,1300,27000,17402.0,1,1,6,5,2,1,0,1,0,0,1,0,0,0,0,1,9667.77777778,2,1,2_0,2_0,20000.0,0,20000.0,0,5,5,0.0,0.0,0.0,0,1,1949.776863813665,1949.776863813665,0.0 1478,6236,6235,4,22,73,111,86,71,0,4326,0,0,0,130,1,4,1,2,1.5,3675.38675285,0,0,16170.0,5,3,9,7,2,1,0,0,0,0,0,1,0,1,0,1,10780.0,2,1,2_1,2_0,8000.0,0,4000.0,4000,13,13,0.0,0.0,0.0,1,0,779.910745525466,389.955372762733,389.955372762733 @@ -1487,15 +1487,15 @@ 1485,6288,6287,0,16,24,111,55,41,0,4397,0,0,40,0,2,3,0,2,1.5,2936.39484378,1040,0,17762.0,1,3,7,5,3,1,0,1,0,0,1,0,0,1,1,0,11841.3333333,2,1,2_1,2_0,10892.0,0,0.0,10892,2,5,0.0,30.0,3.3,0,1,1061.848480032922,0.0,1061.848480032922 1486,6303,6302,1,8,46,300,85,60,2,442,0,0,0,0,0,4,1,2,1.3,2281.40467464,0,3000,13241.0,6,1,0,0,2,1,0,0,1,0,0,0,0,0,0,1,10185.3846154,2,1,2_0,2_1,20000.0,0,20000.0,0,4,6,0.0,0.0,0.0,0,0,1992.9338600108222,1992.9338600108222,0.0 1487,6313,6312,4,4,75,112,71,71,0,4431,0,0,0,0,0,8,0,2,1.5,1643.67881698,3078,0,17955.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,0,2,11970.0,2,1,2_0,2_1,7000.0,0,7000.0,0,2,4,0.0,0.0,0.0,0,0,697.5268510037878,697.5268510037878,0.0 -1488,6327,6326,1,17,61,112,78,70,0,4452,0,0,0,0,1,5,3,5,2.8,1045.77298444,6003,0,29314.0,5,3,9,0,4,1,0,0,1,0,0,0,0,1,0,1,10469.285714299998,2,1,2_1,2_1,14818.0,0,14818.0,0,7,17,121.5,33.3333333333,3.3,1,0,1476.5646968820183,1476.5646968820183,0.0 -1489,6330,6329,3,8,39,111,67,41,0,4459,0,0,0,0,1,5,5,8,3.5,1290.06866413,0,0,38837.0,1,3,10,8,5,1,0,1,0,0,0,0,1,1,0,1,11096.285714299998,2,1,2_1,2_0,12000.0,0,12000.0,0,4,9,80.5,16.428571428599998,3.3,0,1,1169.866118288199,1169.866118288199,0.0 +1488,6327,6326,1,17,61,112,78,70,0,4452,0,0,0,0,1,5,3,5,2.8,1045.77298444,6003,0,29314.0,5,3,9,0,4,1,0,0,1,0,0,0,0,1,0,1,10469.2857143,2,1,2_1,2_1,14818.0,0,14818.0,0,7,17,121.5,33.3333333333,3.3,1,0,1476.5646968820183,1476.5646968820183,0.0 +1489,6330,6329,3,8,39,111,67,41,0,4459,0,0,0,0,1,5,5,8,3.5,1290.06866413,0,0,38837.0,1,3,10,8,5,1,0,1,0,0,0,0,1,1,0,1,11096.2857143,2,1,2_1,2_0,12000.0,0,12000.0,0,4,9,80.5,16.4285714286,3.3,0,1,1169.866118288199,1169.866118288199,0.0 1490,6342,6341,11,12,80,111,71,70,0,4472,0,0,0,0,0,6,0,1,1.0,1757.89705668,0,0,12275.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,0,1,12275.0,2,1,2_0,2_0,8000.0,0,8000.0,0,10,11,0.0,0.0,0.0,0,0,779.910745525466,779.910745525466,0.0 1491,6350,6349,6,11,53,111,52,60,0,4495,0,0,0,0,1,4,2,4,2.3,3414.89540253,0,0,24740.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,10756.5217391,2,1,2_1,2_0,5072.0,0,5072.0,0,1,12,0.0,0.0,0.0,0,0,494.4634126631454,494.4634126631454,0.0 1492,6352,6351,2,3,24,111,84,41,0,450,0,0,100,0,0,1,0,1,1.0,4167.31651172,0,0,11696.0,3,3,9,7,1,1,0,1,0,0,0,1,0,1,1,0,11696.0,2,1,2_1,2_0,8000.0,0,0.0,8000,3,8,0.0,0.0,0.0,0,0,779.910745525466,0.0,779.910745525466 1493,6370,6369,3,6,82,400,71,70,0,453,0,0,0,0,0,5,0,2,1.5,2066.44124804,0,0,16855.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,11236.6666667,2,1,2_0,2_1,1900.0,0,0.0,1900,5,5,0.0,0.0,0.0,0,0,189.32871670102813,0.0,189.32871670102813 1494,6379,6378,2,12,39,400,21,50,0,4546,0,0,0,0,1,5,3,5,2.4,1511.9313697,0,0,24355.0,1,2,0,0,4,1,0,0,1,0,0,0,0,1,0,1,10147.9166667,2,1,2_1,2_1,10000.0,0,10000.0,0,4,11,0.0,4.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 -1495,6418,6417,1,12,31,111,54,31,2,4597,0,0,30,312,2,4,2,4,2.1,3416.7934475,1560,400,22587.0,1,3,8,6,4,1,0,1,0,0,1,0,0,0,1,0,10755.714285700002,2,1,2_0,2_0,10568.0,0,0.0,10568,0,12,0.0,0.0,0.0,1,1,1030.2620948391404,0.0,1030.2620948391404 -1496,6516,6515,11,14,40,112,56,71,0,4729,0,200,0,0,2,4,4,6,2.9,3306.95293919,0,0,30423.0,1,3,9,3,4,1,0,1,0,1,0,0,0,1,0,1,10490.6896552,2,1,2_1,2_0,30000.0,0,30000.0,0,8,11,139.0,11.666666666700001,0.0,1,0,2924.6652957204974,2924.6652957204974,0.0 +1495,6418,6417,1,12,31,111,54,31,2,4597,0,0,30,312,2,4,2,4,2.1,3416.7934475,1560,400,22587.0,1,3,8,6,4,1,0,1,0,0,1,0,0,0,1,0,10755.7142857,2,1,2_0,2_0,10568.0,0,0.0,10568,0,12,0.0,0.0,0.0,1,1,1030.2620948391404,0.0,1030.2620948391404 +1496,6516,6515,11,14,40,112,56,71,0,4729,0,200,0,0,2,4,4,6,2.9,3306.95293919,0,0,30423.0,1,3,9,3,4,1,0,1,0,1,0,0,0,1,0,1,10490.6896552,2,1,2_1,2_0,30000.0,0,30000.0,0,8,11,139.0,11.6666666667,0.0,1,0,2924.6652957204974,2924.6652957204974,0.0 1497,6528,6527,7,12,72,111,78,71,0,4748,0,0,0,0,0,4,0,2,1.5,2092.63239028,2471,0,16478.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,10985.3333333,2,1,2_0,2_0,8000.0,0,8000.0,0,5,10,0.0,0.0,0.0,0,0,779.910745525466,779.910745525466,0.0 1498,6540,6539,0,0,29,111,45,42,0,4764,0,0,0,64,1,4,1,2,1.3,2876.90124742,0,0,12696.0,4,3,7,6,2,0,0,0,0,0,1,0,0,1,0,0,9766.15384615,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,20.5,2.2,0,0,0.0,0.0,0.0 1499,6545,6544,4,4,84,300,71,70,0,4771,0,0,0,0,0,4,0,2,1.5,1914.3232699,0,0,16513.0,5,1,0,0,5,1,0,0,1,0,0,0,0,0,0,1,11008.6666667,2,1,2_0,2_1,8000.0,0,8000.0,0,4,5,0.0,0.0,0.0,0,0,797.173544004329,797.173544004329,0.0 @@ -1503,10 +1503,10 @@ 1501,6574,6573,0,17,53,300,56,60,2,4806,0,0,0,0,2,6,0,2,1.5,4741.154219,3225,700,17365.0,1,1,0,1,3,2,0,0,0,1,0,0,0,0,0,2,11576.6666667,2,1,2_0,2_0,20000.0,0,20000.0,0,12,16,151.0,22.5,3.3,0,1,1949.776863813665,1949.776863813665,0.0 1502,6592,6591,12,18,78,300,78,71,0,4836,0,0,0,0,0,4,0,1,1.0,2921.31473528,1690,0,10630.0,5,3,0,0,1,1,0,0,1,0,0,0,0,0,0,1,10630.0,2,1,2_0,2_1,1500.0,0,1500.0,0,18,18,0.0,0.0,0.0,0,0,149.47003950081168,149.47003950081168,0.0 1503,6598,6597,0,0,74,112,78,70,0,4843,0,0,0,0,0,4,0,1,1.0,5029.72982582,0,0,11940.0,5,1,9,3,1,0,0,0,0,1,0,0,0,0,0,0,11940.0,2,1,2_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 -1504,6613,6612,0,0,54,221,78,50,0,4862,0,0,0,0,0,4,0,1,1.0,2316.8634319000003,0,0,11800.0,7,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,11800.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1505,6634,6633,0,0,26,111,69,71,0,4891,0,0,0,0,3,5,2,3,2.0,2742.37046362,0,0,24060.0,1,3,6,4,2,0,0,0,0,0,1,0,0,1,0,0,12030.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,139.33333333299998,1.1,0,0,0.0,0.0,0.0 +1504,6613,6612,0,0,54,221,78,50,0,4862,0,0,0,0,0,4,0,1,1.0,2316.8634319,0,0,11800.0,7,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,11800.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1505,6634,6633,0,0,26,111,69,71,0,4891,0,0,0,0,3,5,2,3,2.0,2742.37046362,0,0,24060.0,1,3,6,4,2,0,0,0,0,0,1,0,0,1,0,0,12030.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,139.333333333,1.1,0,0,0.0,0.0,0.0 1506,6638,6637,5,15,75,400,74,10,0,4900,0,0,0,0,0,5,0,2,1.5,1186.94864592,6582,0,16678.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,11118.6666667,2,1,2_0,2_1,16000.0,0,0.0,16000,8,13,0.0,0.0,0.0,0,1,1594.347088008658,0.0,1594.347088008658 -1507,6641,6640,1,13,27,111,47,50,2,4904,0,150,0,106,1,3,1,3,1.8,2451.28511028,0,1200,18134.0,4,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,10074.444444399998,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.333333333299999,3.3,0,1,651.9078944160989,651.9078944160989,0.0 +1507,6641,6640,1,13,27,111,47,50,2,4904,0,150,0,106,1,3,1,3,1.8,2451.28511028,0,1200,18134.0,4,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,10074.4444444,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.3333333333,3.3,0,1,651.9078944160989,651.9078944160989,0.0 1508,6645,6644,5,5,57,211,67,71,0,4911,0,0,0,19,2,4,1,3,2.0,1795.58293867,2132,0,20120.0,1,3,4,3,4,1,1,0,0,1,0,0,0,1,0,1,10060.0,2,1,2_1,2_0,17102.0,0,17102.0,0,4,10,0.0,3.33333333333,0.0,0,1,1667.2541962470648,1667.2541962470648,0.0 1509,6673,6672,0,0,58,222,78,71,0,4954,0,0,0,0,0,2,0,1,1.0,2622.86501343,0,0,9980.0,7,2,1,0,1,0,0,0,1,0,0,0,0,1,0,0,9980.0,2,1,2_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 1510,6679,6678,11,11,41,300,62,50,0,4962,0,400,0,0,1,7,3,5,2.4,1892.22929183,1560,0,25483.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,10617.9166667,2,1,2_0,2_1,30000.0,0,30000.0,0,11,11,160.6,62.5,3.3,1,1,2989.4007900162333,2989.4007900162333,0.0 @@ -1514,16 +1514,16 @@ 1512,6703,6702,0,0,30,111,56,71,0,4994,0,0,0,0,1,3,1,2,1.3,1970.83781192,0,0,14110.0,4,3,5,4,2,0,0,0,0,0,1,0,0,1,0,0,10853.8461538,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,20.5,2.2,0,0,0.0,0.0,0.0 1513,6704,6703,2,3,75,111,77,71,0,4996,0,0,0,0,0,5,0,2,1.5,1910.09403222,1560,0,17762.0,5,1,3,4,3,1,0,0,0,0,1,0,0,0,0,1,11841.3333333,2,1,2_0,2_0,1000.0,0,1000.0,0,3,4,0.0,0.0,0.0,0,0,97.48884319068326,97.48884319068326,0.0 1514,6717,6716,6,10,29,300,62,71,0,5011,0,200,0,0,1,4,3,5,2.4,2978.31710665,2341,0,25110.0,4,2,0,0,4,2,0,1,1,0,0,0,0,1,0,2,10462.5,2,1,2_1,2_1,20000.0,0,20000.0,0,3,7,0.0,3.33333333333,0.0,0,0,1992.9338600108222,1992.9338600108222,0.0 -1515,6720,6719,8,15,28,111,63,71,0,5014,0,20,0,0,1,3,1,3,1.8,4255.41407141,1768,0,17881.0,4,3,8,6,4,1,0,1,0,0,1,0,0,1,0,1,9933.88888889,2,1,2_1,2_0,16353.0,0,16353.0,0,5,21,0.0,6.666666666669999,3.3,0,1,1594.235052697243,1594.235052697243,0.0 -1516,6748,6747,0,0,49,111,56,43,0,5051,0,0,0,0,2,6,4,6,2.9,1282.2090238,0,0,31158.0,1,3,4,4,4,0,0,0,0,0,1,0,0,1,0,0,10744.137931000001,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1515,6720,6719,8,15,28,111,63,71,0,5014,0,20,0,0,1,3,1,3,1.8,4255.41407141,1768,0,17881.0,4,3,8,6,4,1,0,1,0,0,1,0,0,1,0,1,9933.88888889,2,1,2_1,2_0,16353.0,0,16353.0,0,5,21,0.0,6.66666666667,3.3,0,1,1594.235052697243,1594.235052697243,0.0 +1516,6748,6747,0,0,49,111,56,43,0,5051,0,0,0,0,2,6,4,6,2.9,1282.2090238,0,0,31158.0,1,3,4,4,4,0,0,0,0,0,1,0,0,1,0,0,10744.137931,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1517,6752,6751,3,9,33,120,67,60,0,5057,0,70,0,331,1,3,1,3,1.8,5424.23625276,900,0,17583.0,1,3,0,2,4,2,0,0,0,1,0,0,0,0,0,2,9768.33333333,2,1,2_0,2_0,35716.0,0,35716.0,0,1,8,0.0,0.0,0.0,0,1,3481.9115233984426,3481.9115233984426,0.0 1518,6767,6766,3,23,38,300,55,41,0,5076,0,0,0,0,1,11,0,1,1.0,2164.7060976,534,0,11294.0,4,4,0,0,1,2,0,0,1,0,0,0,0,0,0,2,11294.0,2,1,2_0,2_1,5000.0,0,5000.0,0,2,18,162.4,35.0,3.3,0,1,498.23346500270554,498.23346500270554,0.0 1519,6776,6775,1,8,33,112,67,50,2,5090,0,0,0,347,2,4,2,4,2.1,2145.6142657,0,4200,25949.0,4,3,9,2,4,1,0,0,0,1,0,0,0,1,0,1,12356.6666667,2,1,2_1,2_0,9500.0,0,9500.0,0,6,9,12.5,10.0,0.0,0,0,926.1440103114909,926.1440103114909,0.0 -1520,6780,6779,6,10,42,221,63,50,0,5096,0,0,100,0,2,4,2,4,2.1,900.4445326169999,0,0,23243.0,4,2,1,2,4,2,0,0,0,1,0,0,0,1,1,1,11068.095238099999,2,1,2_1,2_0,23264.0,0,11747.0,11517,11,11,0.0,2.0,0.0,0,1,2267.980447988055,1145.2014409609562,1122.779007027099 +1520,6780,6779,6,10,42,221,63,50,0,5096,0,0,100,0,2,4,2,4,2.1,900.444532617,0,0,23243.0,4,2,1,2,4,2,0,0,0,1,0,0,0,1,1,1,11068.0952381,2,1,2_1,2_0,23264.0,0,11747.0,11517,11,11,0.0,2.0,0.0,0,1,2267.980447988055,1145.2014409609562,1122.779007027099 1521,6787,6786,0,0,34,111,67,71,0,5105,0,0,0,126,2,5,2,4,2.1,4692.1745912,226,0,22544.0,1,3,8,6,4,0,0,0,0,0,1,0,0,1,0,0,10735.2380952,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1522,6801,6800,10,10,75,111,78,71,0,5127,0,0,0,272,0,4,0,2,1.5,5106.65828352,0,0,18640.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,1,0,12426.6666667,2,1,2_0,2_0,2000.0,0,0.0,2000,8,8,0.0,0.0,0.0,0,0,194.9776863813665,0.0,194.9776863813665 -1523,6808,6807,0,0,32,112,56,31,2,5136,0,0,90,0,1,3,1,2,1.3,7889.66784044,1040,800,13719.0,1,3,9,1,2,1,0,1,0,1,0,0,0,1,1,0,10553.076923100001,2,1,2_1,2_0,11517.0,0,0.0,11517,3,0,0.0,20.0,3.3,0,1,1122.779007027099,0.0,1122.779007027099 -1524,6822,6821,0,4,36,111,37,20,0,5153,0,600,0,827,1,3,2,4,2.1,3569.16270863,0,0,23661.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,1,11267.142857100001,2,1,2_0,2_0,22000.0,0,18000.0,4000,3,9,39.0,12.5,3.3,0,1,2144.7545501950312,1754.7991774322984,389.955372762733 +1523,6808,6807,0,0,32,112,56,31,2,5136,0,0,90,0,1,3,1,2,1.3,7889.66784044,1040,800,13719.0,1,3,9,1,2,1,0,1,0,1,0,0,0,1,1,0,10553.0769231,2,1,2_1,2_0,11517.0,0,0.0,11517,3,0,0.0,20.0,3.3,0,1,1122.779007027099,0.0,1122.779007027099 +1524,6822,6821,0,4,36,111,37,20,0,5153,0,600,0,827,1,3,2,4,2.1,3569.16270863,0,0,23661.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,1,11267.1428571,2,1,2_0,2_0,22000.0,0,18000.0,4000,3,9,39.0,12.5,3.3,0,1,2144.7545501950312,1754.7991774322984,389.955372762733 1525,6832,6831,8,8,64,112,75,50,0,5162,0,0,0,0,1,5,1,3,2.0,1402.17335663,2600,0,23749.0,5,1,10,0,4,1,0,0,1,0,0,0,0,0,0,1,11874.5,2,1,2_0,2_1,14000.0,0,14000.0,0,8,8,0.0,0.0,0.0,0,0,1395.0537020075756,1395.0537020075756,0.0 1526,6852,6851,2,13,26,111,62,71,0,5191,0,20,0,315,2,3,1,3,1.8,3455.18330387,0,0,20889.0,4,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,11605.0,2,1,2_1,2_0,40000.0,0,40000.0,0,6,15,0.0,0.0,0.0,0,1,3899.55372762733,3899.55372762733,0.0 1527,6856,6855,7,11,60,111,78,71,0,5196,0,0,0,0,2,5,0,3,2.0,3095.44283431,312,0,24630.0,5,1,6,4,5,1,0,0,0,0,1,0,0,0,0,1,12315.0,2,1,2_0,2_0,17102.0,0,17102.0,0,4,10,0.0,3.33333333333,0.0,0,1,1667.2541962470648,1667.2541962470648,0.0 @@ -1536,27 +1536,27 @@ 1534,6931,6930,1,11,41,111,56,50,2,5290,0,150,0,0,2,4,2,3,1.8,2264.69677803,0,4700,17495.0,4,3,7,5,2,1,0,1,0,0,1,0,0,1,0,1,9719.44444444,2,1,2_1,2_0,20000.0,0,20000.0,0,10,14,140.0,10.0,0.0,0,1,1949.776863813665,1949.776863813665,0.0 1535,6936,6935,7,12,50,111,47,41,0,5296,0,0,0,301,1,4,1,2,1.3,2959.78420484,1560,0,14715.0,1,3,7,5,2,1,0,0,0,0,1,0,0,0,0,1,11319.2307692,2,1,2_0,2_0,10000.0,0,10000.0,0,3,12,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 1536,6940,6939,11,11,74,300,71,70,0,5301,0,0,0,0,0,6,0,2,1.5,1452.42702546,2860,0,17707.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,11804.6666667,2,1,2_0,2_1,10704.0,0,0.0,10704,2,12,0.0,0.0,0.0,0,0,1066.618201877792,0.0,1066.618201877792 -1537,6947,6946,7,7,77,112,71,70,0,5309,0,0,0,0,0,4,0,2,1.5,2980.2902203000003,0,0,17028.0,5,1,9,3,3,1,0,0,0,1,0,0,0,0,0,1,11352.0,2,1,2_0,2_0,10000.0,0,10000.0,0,4,6,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 +1537,6947,6946,7,7,77,112,71,70,0,5309,0,0,0,0,0,4,0,2,1.5,2980.2902203,0,0,17028.0,5,1,9,3,3,1,0,0,0,1,0,0,0,0,0,1,11352.0,2,1,2_0,2_0,10000.0,0,10000.0,0,4,6,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 1538,7000,6999,1,10,43,111,68,50,2,5382,0,48,0,0,1,3,2,4,2.1,2400.32697337,1560,3200,23160.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,11028.5714286,2,1,2_1,2_0,15000.0,0,15000.0,0,4,9,44.0,20.0,3.31,0,1,1462.3326478602487,1462.3326478602487,0.0 1539,7003,7002,9,14,56,211,21,50,0,5387,0,0,0,0,1,4,0,1,1.0,1531.86980626,2081,0,12048.0,1,1,3,4,1,1,1,0,0,0,1,0,0,0,1,0,12048.0,2,1,2_0,2_0,3000.0,0,0.0,3000,3,16,0.0,10.0,3.3,1,0,292.46652957204975,0.0,292.46652957204975 1540,7030,7029,2,2,78,400,71,71,0,5426,0,0,0,0,0,4,0,2,1.5,2984.79359865,0,0,18069.0,5,1,0,0,5,2,0,0,1,0,0,0,0,0,2,0,12046.0,2,1,2_0,2_1,5000.0,0,0.0,5000,2,3,0.0,0.0,0.0,0,0,498.23346500270554,0.0,498.23346500270554 1541,7036,7035,0,0,23,111,84,10,0,5434,0,0,0,0,0,1,0,1,1.0,5935.75100882,0,0,9700.0,3,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,9700.0,2,1,2_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 1542,7088,7087,0,0,95,400,71,70,0,5501,0,0,0,0,0,3,0,1,1.0,1829.56114829,0,0,11445.0,5,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,11445.0,2,1,2_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 1543,7091,7090,2,2,71,112,78,50,0,5505,0,0,0,0,0,4,0,2,1.5,1504.78884207,0,0,18325.0,5,1,8,2,3,1,0,0,0,1,0,0,0,0,1,0,12216.6666667,2,1,2_0,2_0,14000.0,0,0.0,14000,2,2,0.0,0.0,0.0,0,0,1364.8438046695653,0.0,1364.8438046695653 -1544,7094,7093,8,12,39,111,22,31,0,551,0,0,0,0,1,4,1,2,1.3,3501.3177649000004,2080,0,15694.0,1,2,8,7,2,1,1,0,0,0,0,1,0,1,1,0,12072.307692299999,2,1,2_1,2_0,1000.0,0,0.0,1000,12,12,0.0,5.0,0.0,0,1,97.48884319068326,0.0,97.48884319068326 -1545,7098,7097,2,2,44,111,21,71,0,5516,0,99999,0,3,1,3,4,6,2.7,3081.52343379,4837,0,30532.0,1,3,10,8,4,1,1,1,0,0,0,0,1,1,0,1,11308.148148100001,2,1,2_1,2_0,6244.0,0,6244.0,0,1,4,34.0,25.0,3.3,0,1,608.7203368826262,608.7203368826262,0.0 +1544,7094,7093,8,12,39,111,22,31,0,551,0,0,0,0,1,4,1,2,1.3,3501.3177649,2080,0,15694.0,1,2,8,7,2,1,1,0,0,0,0,1,0,1,1,0,12072.3076923,2,1,2_1,2_0,1000.0,0,0.0,1000,12,12,0.0,5.0,0.0,0,1,97.48884319068326,0.0,97.48884319068326 +1545,7098,7097,2,2,44,111,21,71,0,5516,0,99999,0,3,1,3,4,6,2.7,3081.52343379,4837,0,30532.0,1,3,10,8,4,1,1,1,0,0,0,0,1,1,0,1,11308.1481481,2,1,2_1,2_0,6244.0,0,6244.0,0,1,4,34.0,25.0,3.3,0,1,608.7203368826262,608.7203368826262,0.0 1546,7110,7109,1,1,67,112,71,50,0,5528,0,0,0,0,0,6,0,2,1.5,1929.89264044,3120,0,18815.0,5,1,5,0,3,2,0,0,1,0,0,0,0,0,0,2,12543.3333333,2,1,2_0,2_1,17343.0,0,17343.0,0,2,2,0.0,0.0,0.0,0,0,1728.1725967083844,1728.1725967083844,0.0 1547,7111,7110,1,1,73,111,78,41,1,5529,0,0,0,0,0,4,0,2,1.5,2051.53328901,0,11000,17095.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,1,1,11396.6666667,2,1,2_0,2_0,14000.0,0,6000.0,8000,4,4,0.0,0.0,0.0,0,0,1364.8438046695653,584.9330591440995,779.910745525466 1548,7121,7120,0,0,63,111,78,50,0,5544,0,0,0,100,0,3,0,1,1.0,4980.46083557,0,0,11980.0,5,3,6,5,1,0,0,0,0,0,1,0,0,1,0,0,11980.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1549,7127,7126,9,9,45,111,22,42,0,5550,0,0,99999,0,2,4,2,4,2.3,2811.87317949,0,0,28640.0,1,1,10,8,4,1,1,1,0,0,0,0,1,0,1,0,12452.173912999999,2,1,2_0,2_0,8000.0,0,0.0,8000,2,12,77.5,120.0,5.5,0,0,779.910745525466,0.0,779.910745525466 +1549,7127,7126,9,9,45,111,22,42,0,5550,0,0,99999,0,2,4,2,4,2.3,2811.87317949,0,0,28640.0,1,1,10,8,4,1,1,1,0,0,0,0,1,0,1,0,12452.173913,2,1,2_0,2_0,8000.0,0,0.0,8000,2,12,77.5,120.0,5.5,0,0,779.910745525466,0.0,779.910745525466 1550,7128,7127,3,19,48,111,68,42,0,5551,0,90,0,51,2,4,1,2,1.5,2339.66993625,677,0,17527.0,1,3,7,5,2,1,0,1,0,0,1,0,0,1,0,1,11684.6666667,2,1,2_1,2_0,50000.0,0,50000.0,0,2,17,0.0,0.0,0.0,0,1,4874.442159534163,4874.442159534163,0.0 1551,7129,7128,8,13,60,111,78,71,0,5552,0,0,0,0,0,5,0,2,1.5,3204.81662398,1352,0,16330.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,10886.6666667,2,1,2_0,2_0,2000.0,0,2000.0,0,14,14,0.0,0.0,0.0,0,0,194.9776863813665,194.9776863813665,0.0 -1552,7143,7142,0,0,40,111,63,50,0,5567,0,0,0,116,1,4,3,5,2.4,1874.5971135000002,0,0,26160.0,1,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,10900.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1552,7143,7142,0,0,40,111,63,50,0,5567,0,0,0,116,1,4,3,5,2.4,1874.5971135,0,0,26160.0,1,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,10900.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1553,7159,7158,0,0,48,111,85,70,0,5591,0,0,0,40,0,4,3,4,2.3,2099.95954806,0,0,23130.0,7,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,10056.5217391,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1554,7161,7160,1,2,36,111,52,50,0,5593,0,50,40,348,1,4,3,4,2.3,1422.96124772,1561,0,22485.0,1,3,7,5,2,2,0,1,0,0,1,0,0,1,1,1,9776.08695652,2,1,2_1,2_0,22000.0,0,18000.0,4000,3,9,39.0,12.5,3.3,0,1,2144.7545501950312,1754.7991774322984,389.955372762733 1555,7212,7211,6,22,54,112,45,71,0,566,0,0,0,0,1,4,0,1,1.0,2691.62645998,0,0,11318.0,1,1,6,0,1,1,1,0,1,0,0,0,0,0,1,0,11318.0,2,1,2_0,2_1,5000.0,0,0.0,5000,4,20,0.0,0.0,0.0,0,1,498.23346500270554,0.0,498.23346500270554 1556,7215,7214,0,0,48,111,52,71,0,5663,0,0,0,428,1,3,2,3,2.0,2771.59099558,0,0,20372.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,10186.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,45.0,52.5,1.1,0,0,0.0,0.0,0.0 -1557,7223,7222,1,15,46,120,62,43,2,5673,0,0,100,163,1,4,2,4,2.1,6933.70453053,520,100,21751.0,1,3,0,3,4,2,0,1,0,1,0,0,0,1,1,1,10357.619047600001,2,1,2_1,2_0,37000.0,0,30000.0,7000,3,15,0.0,0.0,0.0,1,0,3607.08719805528,2924.6652957204974,682.4219023347827 +1557,7223,7222,1,15,46,120,62,43,2,5673,0,0,100,163,1,4,2,4,2.1,6933.70453053,520,100,21751.0,1,3,0,3,4,2,0,1,0,1,0,0,0,1,1,1,10357.6190476,2,1,2_1,2_0,37000.0,0,30000.0,7000,3,15,0.0,0.0,0.0,1,0,3607.08719805528,2924.6652957204974,682.4219023347827 1558,7232,7231,8,13,78,300,77,71,0,5686,0,0,0,0,0,4,0,1,1.0,2691.78776578,0,0,12490.0,5,3,0,1,1,1,0,0,0,1,0,0,0,1,1,0,12490.0,2,1,2_1,2_0,2000.0,0,0.0,2000,6,13,0.0,0.0,0.0,0,0,194.9776863813665,0.0,194.9776863813665 1559,7245,7244,0,0,66,111,78,71,0,5704,0,0,0,290,0,3,0,2,1.5,4547.34858491,0,0,16154.0,5,3,4,3,3,0,0,0,0,1,0,0,0,1,0,0,10769.3333333,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1560,7253,7252,0,20,32,111,85,50,0,5713,0,0,0,271,0,3,0,2,1.5,4000.92833633,0,0,14860.0,4,3,8,7,3,1,0,0,0,0,0,1,0,1,0,1,9906.66666667,2,1,2_1,2_0,50000.0,0,50000.0,0,3,12,0.0,0.0,0.0,0,0,4874.442159534163,4874.442159534163,0.0 @@ -1564,15 +1564,15 @@ 1562,7308,7307,17,22,62,111,63,71,0,5795,0,0,0,480,2,5,4,6,3.3,2740.89113611,0,0,34154.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,10349.6969697,2,1,2_1,2_0,16353.0,0,16353.0,0,4,23,141.5,50.0,3.3,0,1,1594.235052697243,1594.235052697243,0.0 1563,7314,7313,0,0,81,112,71,70,0,5802,0,0,0,0,0,2,0,1,1.0,2953.45942668,0,0,11270.0,5,4,6,0,1,0,0,0,1,0,0,0,0,0,0,0,11270.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1564,7318,7317,12,13,71,112,86,70,0,5807,0,0,0,0,0,5,0,2,1.5,1910.75496482,0,0,15524.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,0,2,10349.3333333,2,1,2_0,2_1,10000.0,0,10000.0,0,13,13,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 -1565,7319,7318,1,14,36,120,67,71,2,581,0,0,0,147,2,3,2,4,2.1,5319.08232662,0,100,21100.0,1,3,0,2,4,1,0,0,0,1,0,0,0,1,1,0,10047.619047600001,2,1,2_1,2_0,20000.0,0,0.0,20000,2,16,0.0,0.0,0.0,0,0,1949.776863813665,0.0,1949.776863813665 -1566,7332,7331,0,15,35,111,22,50,0,5831,0,0,0,0,1,3,1,2,1.3,3006.5453913,2080,0,15200.0,4,3,9,7,2,1,0,0,0,0,0,1,0,1,1,0,11692.307692299999,2,1,2_1,2_0,11198.0,0,0.0,11198,2,15,0.0,0.0,0.0,0,0,1091.6800660492709,0.0,1091.6800660492709 +1565,7319,7318,1,14,36,120,67,71,2,581,0,0,0,147,2,3,2,4,2.1,5319.08232662,0,100,21100.0,1,3,0,2,4,1,0,0,0,1,0,0,0,1,1,0,10047.6190476,2,1,2_1,2_0,20000.0,0,0.0,20000,2,16,0.0,0.0,0.0,0,0,1949.776863813665,0.0,1949.776863813665 +1566,7332,7331,0,15,35,111,22,50,0,5831,0,0,0,0,1,3,1,2,1.3,3006.5453913,2080,0,15200.0,4,3,9,7,2,1,0,0,0,0,0,1,0,1,1,0,11692.3076923,2,1,2_1,2_0,11198.0,0,0.0,11198,2,15,0.0,0.0,0.0,0,0,1091.6800660492709,0.0,1091.6800660492709 1567,7334,7333,1,2,79,111,75,50,0,5833,0,0,0,0,0,4,0,2,1.5,3534.59632893,4212,0,15402.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,10268.0,2,1,2_0,2_0,1000.0,0,1000.0,0,3,4,0.0,0.0,0.0,0,0,97.48884319068326,97.48884319068326,0.0 -1568,7366,7365,3,7,40,221,64,20,0,5877,0,100,0,79,1,4,2,4,2.1,4416.24155676,1040,0,22268.0,1,3,1,2,4,1,0,1,0,1,0,0,0,1,0,1,10603.809523799999,2,1,2_1,2_0,9000.0,0,9000.0,0,4,6,0.0,0.0,0.0,0,0,877.3995887161492,877.3995887161492,0.0 +1568,7366,7365,3,7,40,221,64,20,0,5877,0,100,0,79,1,4,2,4,2.1,4416.24155676,1040,0,22268.0,1,3,1,2,4,1,0,1,0,1,0,0,0,1,0,1,10603.8095238,2,1,2_1,2_0,9000.0,0,9000.0,0,4,6,0.0,0.0,0.0,0,0,877.3995887161492,877.3995887161492,0.0 1569,7378,7377,3,22,22,111,84,41,0,5891,0,315,0,341,0,2,0,2,1.5,3719.32259786,0,0,15986.0,3,3,9,7,3,2,0,0,0,0,0,1,0,1,0,2,10657.3333333,2,1,2_1,2_0,15672.0,0,15672.0,0,1,10,0.0,0.0,0.0,0,1,1527.845150484388,1527.845150484388,0.0 1570,7398,7397,0,0,63,111,77,70,0,5916,0,0,0,218,0,2,0,1,1.0,2795.58573408,0,0,11674.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,11674.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1571,7408,7407,6,8,50,111,56,60,0,5931,0,0,0,373,1,4,2,3,2.0,3099.37189548,0,0,22995.0,1,3,10,8,2,1,0,0,0,0,0,0,1,1,1,0,11497.5,2,1,2_1,2_0,7500.0,0,0.0,7500,10,11,24.0,16.6666666667,5.5,0,0,731.1663239301243,0.0,731.1663239301243 1572,7411,7410,3,15,25,111,84,20,0,5936,0,320,0,90,0,2,0,2,1.5,3559.55002707,1820,0,16569.0,3,3,8,6,3,2,0,0,0,0,1,0,0,1,0,2,11046.0,2,1,2_1,2_0,15672.0,0,15672.0,0,1,10,0.0,0.0,0.0,0,1,1527.845150484388,1527.845150484388,0.0 -1573,7437,7436,6,12,44,111,68,71,0,5975,0,80,0,0,1,5,2,3,1.8,1577.1758214000001,520,0,17496.0,1,3,7,5,2,1,0,1,0,0,1,0,0,1,0,1,9720.0,2,1,2_1,2_0,20000.0,0,20000.0,0,12,12,107.0,70.0,3.3,0,1,1949.776863813665,1949.776863813665,0.0 +1573,7437,7436,6,12,44,111,68,71,0,5975,0,80,0,0,1,5,2,3,1.8,1577.1758214,520,0,17496.0,1,3,7,5,2,1,0,1,0,0,1,0,0,1,0,1,9720.0,2,1,2_1,2_0,20000.0,0,20000.0,0,12,12,107.0,70.0,3.3,0,1,1949.776863813665,1949.776863813665,0.0 1574,7440,7439,0,0,76,111,77,60,0,5979,0,0,0,199,0,2,0,1,1.0,3165.44879192,0,0,10280.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,10280.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1575,7454,7453,5,5,75,211,72,70,0,5997,0,0,0,0,0,8,0,1,1.0,1927.5670794,0,0,9921.0,5,4,3,4,1,1,0,0,0,0,1,0,0,0,1,0,9921.0,2,1,2_0,2_0,1500.0,0,0.0,1500,4,4,0.0,0.0,0.0,0,0,146.23326478602488,0.0,146.23326478602488 1576,7465,7464,9,10,66,111,77,71,0,6014,0,0,0,0,0,2,0,1,1.0,4609.49380501,884,0,12001.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,12001.0,2,1,2_1,2_0,8000.0,0,0.0,8000,10,10,0.0,0.0,0.0,0,0,779.910745525466,0.0,779.910745525466 @@ -1584,8 +1584,8 @@ 1582,7499,7498,4,17,55,400,52,60,0,6057,0,0,0,0,1,3,0,1,1.0,2853.71373197,2737,0,9875.0,1,4,0,0,1,1,0,0,1,0,0,0,0,0,0,1,9875.0,2,1,2_0,2_1,11747.0,0,11747.0,0,11,15,16.8,20.0,3.31,1,0,1170.5497026773564,1170.5497026773564,0.0 1583,7503,7502,2,3,62,400,77,50,0,6061,0,0,0,0,0,3,0,1,1.0,1983.46496348,2080,0,11050.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,11050.0,2,1,2_0,2_1,10000.0,0,10000.0,0,2,3,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1584,7509,7508,5,13,36,300,62,50,0,6070,0,400,0,0,1,5,4,6,2.9,1248.95827579,0,0,33836.0,1,2,0,0,4,2,0,0,1,0,0,0,0,1,0,2,11667.5862069,2,1,2_1,2_1,28891.0,0,28891.0,0,12,12,0.0,0.0,0.0,0,1,2878.892607478633,2878.892607478633,0.0 -1585,7517,7516,6,6,30,111,43,20,0,6079,0,99999,0,285,1,3,1,3,1.8,1892.13346475,0,0,19870.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,11038.888888899999,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.333333333299999,3.3,0,1,651.9078944160989,651.9078944160989,0.0 -1586,7528,7527,1,22,47,111,46,60,0,6095,0,0,0,0,2,3,2,4,2.3,2065.84285077,0,0,24726.0,1,4,7,5,4,2,0,0,0,0,1,0,0,0,1,1,10750.434782600001,2,1,2_0,2_0,20000.0,0,15000.0,5000,19,19,0.0,0.0,0.0,0,0,1949.776863813665,1462.3326478602487,487.44421595341623 +1585,7517,7516,6,6,30,111,43,20,0,6079,0,99999,0,285,1,3,1,3,1.8,1892.13346475,0,0,19870.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,11038.8888889,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.3333333333,3.3,0,1,651.9078944160989,651.9078944160989,0.0 +1586,7528,7527,1,22,47,111,46,60,0,6095,0,0,0,0,2,3,2,4,2.3,2065.84285077,0,0,24726.0,1,4,7,5,4,2,0,0,0,0,1,0,0,0,1,1,10750.4347826,2,1,2_0,2_0,20000.0,0,15000.0,5000,19,19,0.0,0.0,0.0,0,0,1949.776863813665,1462.3326478602487,487.44421595341623 1587,7530,7529,1,11,25,111,53,60,2,61,0,99999,0,113,1,4,1,3,1.8,3064.42217764,1040,3500,21240.0,1,3,8,7,4,2,0,1,0,0,0,1,0,1,0,2,11800.0,2,1,2_1,2_0,35716.0,0,35716.0,0,1,8,0.0,0.0,0.0,0,1,3481.9115233984426,3481.9115233984426,0.0 1588,7544,7543,3,19,62,400,71,70,0,6119,0,0,0,0,0,4,0,1,1.0,2239.97328858,0,0,12438.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,12438.0,2,1,2_0,2_1,9500.0,0,0.0,9500,5,17,0.0,0.0,0.0,0,0,946.6435835051406,0.0,946.6435835051406 1589,7564,7563,1,13,45,112,69,71,2,6142,0,0,0,344,2,5,6,8,3.3,823.180895825,0,900,38661.0,1,3,8,1,4,2,0,0,0,1,0,0,0,1,0,2,11715.4545455,2,1,2_1,2_0,3000.0,0,3000.0,0,10,11,0.0,10.0,1.1,1,0,292.46652957204975,292.46652957204975,0.0 @@ -1607,13 +1607,13 @@ 1605,7761,7760,4,11,38,111,62,70,0,6416,0,250,0,0,1,4,3,5,2.4,1392.28596649,3380,0,26570.0,1,2,7,5,4,1,0,1,0,0,1,0,0,1,0,1,11070.8333333,2,1,2_1,2_0,7716.0,0,7716.0,0,1,9,27.0,7.6,5.56,0,0,752.2239140593119,752.2239140593119,0.0 1606,7771,7770,5,5,65,300,75,50,0,6433,0,0,0,0,0,7,0,1,1.0,1693.96488361,0,0,10790.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,10790.0,2,1,2_0,2_1,5000.0,0,5000.0,0,4,5,0.0,0.0,0.0,0,0,498.23346500270554,498.23346500270554,0.0 1607,7788,7787,17,17,66,111,72,50,0,6458,0,0,0,0,0,3,0,2,1.5,1883.76607167,0,0,17255.0,5,1,4,4,3,2,0,0,0,0,1,0,0,0,0,2,11503.3333333,2,1,2_0,2_0,18000.0,0,18000.0,0,5,14,0.0,0.0,0.0,0,0,1754.7991774322984,1754.7991774322984,0.0 -1608,7794,7793,0,0,44,111,63,71,0,6466,0,0,0,104,1,2,1,3,1.8,3720.6144756,0,0,18412.0,1,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,10228.888888899999,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,4.66666666667,1.1,0,0,0.0,0.0,0.0 -1609,7809,7808,2,15,46,211,63,50,0,6489,0,0,200,0,2,6,3,5,2.8,875.6040264060001,2340,0,28290.0,1,3,3,3,4,2,0,1,0,1,0,0,0,0,1,1,10103.5714286,2,1,2_0,2_0,20000.0,0,15000.0,5000,19,19,0.0,0.0,0.0,0,0,1949.776863813665,1462.3326478602487,487.44421595341623 +1608,7794,7793,0,0,44,111,63,71,0,6466,0,0,0,104,1,2,1,3,1.8,3720.6144756,0,0,18412.0,1,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,10228.8888889,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,4.66666666667,1.1,0,0,0.0,0.0,0.0 +1609,7809,7808,2,15,46,211,63,50,0,6489,0,0,200,0,2,6,3,5,2.8,875.604026406,2340,0,28290.0,1,3,3,3,4,2,0,1,0,1,0,0,0,0,1,1,10103.5714286,2,1,2_0,2_0,20000.0,0,15000.0,5000,19,19,0.0,0.0,0.0,0,0,1949.776863813665,1462.3326478602487,487.44421595341623 1610,7833,7832,0,0,36,111,85,31,0,6522,0,0,0,0,0,3,2,3,1.6,5381.20070857,0,0,18736.0,6,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,11710.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,39.0,15.0,1.1,0,0,0.0,0.0,0.0 1611,7837,7836,0,0,56,211,53,70,0,6530,0,0,0,0,1,2,0,1,1.0,2388.42998969,0,0,11350.0,4,3,3,3,1,0,0,0,0,1,0,0,0,1,0,0,11350.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1612,7853,7852,8,8,40,112,69,71,0,6554,0,50,0,0,1,2,0,1,1.0,3185.17337557,1501,0,11535.0,1,1,7,0,1,1,0,1,1,0,0,0,0,0,0,1,11535.0,2,1,2_0,2_1,19833.0,0,19833.0,0,7,12,0.0,0.0,0.0,0,0,1976.292862279732,1976.292862279732,0.0 -1613,7864,7863,0,14,71,111,77,50,0,6570,0,0,0,58,0,4,0,1,1.0,2163.5615123000002,0,0,11547.0,6,3,8,6,1,1,0,0,0,0,1,0,0,1,0,1,11547.0,2,1,2_1,2_0,20000.0,0,20000.0,0,7,14,0.0,0.0,0.0,0,0,1949.776863813665,1949.776863813665,0.0 -1614,7873,7872,5,23,58,111,68,50,0,658,0,0,0,0,2,3,2,4,2.3,1886.54515835,0,0,23304.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,1,0,10132.173912999999,2,1,2_1,2_0,15000.0,0,0.0,15000,3,12,0.0,7.0,0.0,0,1,1462.3326478602487,0.0,1462.3326478602487 +1613,7864,7863,0,14,71,111,77,50,0,6570,0,0,0,58,0,4,0,1,1.0,2163.5615123,0,0,11547.0,6,3,8,6,1,1,0,0,0,0,1,0,0,1,0,1,11547.0,2,1,2_1,2_0,20000.0,0,20000.0,0,7,14,0.0,0.0,0.0,0,0,1949.776863813665,1949.776863813665,0.0 +1614,7873,7872,5,23,58,111,68,50,0,658,0,0,0,0,2,3,2,4,2.3,1886.54515835,0,0,23304.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,1,0,10132.173913,2,1,2_1,2_0,15000.0,0,0.0,15000,3,12,0.0,7.0,0.0,0,1,1462.3326478602487,0.0,1462.3326478602487 1615,7878,7877,21,21,60,111,75,50,0,6589,0,0,0,0,0,4,0,2,1.5,1276.15752281,1560,0,18718.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,1,1,12478.6666667,2,1,2_0,2_0,27661.0,0,18625.0,9036,3,18,0.0,0.0,0.0,0,0,2696.6388914974896,1815.7297044264753,880.9091870710138 1616,7880,7879,5,5,58,300,38,71,0,6590,0,0,0,0,1,4,0,1,1.0,2446.62473577,0,0,11500.0,4,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,11500.0,2,1,2_0,2_1,15000.0,0,15000.0,0,4,5,0.0,0.0,0.0,1,1,1494.7003950081166,1494.7003950081166,0.0 1617,7883,7882,0,0,60,300,78,70,0,6595,0,0,0,0,0,6,0,1,1.0,1931.95419938,0,0,10850.0,6,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,10850.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -1625,7 +1625,7 @@ 1623,7945,7944,2,6,63,111,63,71,0,6667,0,0,0,320,1,6,4,6,3.5,3264.36944986,0,0,33760.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,9645.71428571,2,1,2_1,2_0,6244.0,0,6244.0,0,1,4,34.0,25.0,3.3,0,1,608.7203368826262,608.7203368826262,0.0 1624,7963,7962,0,0,58,221,68,71,0,6696,0,0,0,0,1,2,0,1,1.0,4768.08078333,0,0,11960.0,1,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,11960.0,2,1,2_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 1625,7984,7983,11,11,64,111,77,50,0,6723,0,0,0,243,0,3,0,1,1.0,1631.65973372,0,0,10844.0,5,3,7,5,1,1,0,0,0,0,1,0,0,1,1,0,10844.0,2,1,2_1,2_0,16000.0,0,0.0,16000,4,11,0.0,0.0,0.0,0,0,1559.821491050932,0.0,1559.821491050932 -1626,7988,7987,0,24,43,111,43,71,0,6728,0,0,0,15,1,3,1,2,1.3,3159.35774683,0,0,13100.0,4,3,8,6,2,1,0,0,0,0,1,0,0,1,1,0,10076.923076899999,2,1,2_1,2_0,10000.0,0,0.0,10000,9,26,0.0,15.0,3.3,0,1,974.8884319068325,0.0,974.8884319068325 +1626,7988,7987,0,24,43,111,43,71,0,6728,0,0,0,15,1,3,1,2,1.3,3159.35774683,0,0,13100.0,4,3,8,6,2,1,0,0,0,0,1,0,0,1,1,0,10076.9230769,2,1,2_1,2_0,10000.0,0,0.0,10000,9,26,0.0,15.0,3.3,0,1,974.8884319068325,0.0,974.8884319068325 1627,7993,7992,8,8,61,112,78,70,0,6733,0,0,0,0,0,4,0,1,1.0,1901.49359131,0,0,11752.0,5,3,8,0,1,1,0,0,1,0,0,0,0,1,1,0,11752.0,2,1,2_1,2_1,2500.0,0,0.0,2500,12,12,0.0,0.0,0.0,0,0,249.11673250135277,0.0,249.11673250135277 1628,7994,7993,5,16,51,112,64,71,0,6737,0,500,0,299,2,4,1,3,2.0,4206.34178099,1041,0,23972.0,1,3,6,0,4,2,0,1,1,0,0,0,0,1,0,2,11986.0,2,1,2_1,2_1,12480.0,0,12480.0,0,10,11,0.0,0.0,0.0,0,1,1243.590728646753,1243.590728646753,0.0 1629,8003,8002,3,4,34,112,46,31,0,6753,0,120,0,0,2,7,2,4,2.1,2459.65681087,780,0,25957.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,1,1,12360.4761905,2,1,2_0,2_1,6800.0,0,800.0,6000,5,5,126.0,2.8,5.53,0,1,677.5975124036795,79.71735440043288,597.8801580032467 @@ -1637,12 +1637,12 @@ 1635,8040,8039,13,15,49,111,65,50,0,6804,0,0,100,0,2,5,1,2,1.5,2733.60019781,3320,0,16020.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,1,0,10680.0,2,1,2_0,2_0,5000.0,0,0.0,5000,2,12,108.0,23.0,0.0,0,0,487.44421595341623,0.0,487.44421595341623 1636,8046,8045,0,0,29,221,52,50,0,6813,0,0,0,203,1,4,0,1,1.0,2175.26336584,0,0,11867.0,4,3,1,3,1,0,0,0,0,1,0,0,0,1,0,0,11867.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,9.0,20.0,1.1,0,0,0.0,0.0,0.0 1637,8058,8057,10,10,65,111,21,70,0,6829,0,0,0,528,1,3,0,1,1.0,4002.51939686,2080,0,12174.0,1,3,9,7,1,1,1,0,0,0,0,1,0,1,1,0,12174.0,2,1,2_1,2_0,800.0,0,0.0,800,8,8,0.0,0.0,0.0,0,0,77.99107455254659,0.0,77.99107455254659 -1638,8070,8069,2,5,23,112,63,50,0,6842,0,390,0,590,2,4,1,3,1.8,2132.70505124,3120,0,19136.0,1,3,8,1,4,2,0,1,0,1,0,0,0,0,0,2,10631.111111100001,2,1,2_0,2_0,18625.0,0,18625.0,0,3,4,0.0,8.666666666669999,3.3,0,1,1815.7297044264753,1815.7297044264753,0.0 -1639,8077,8076,3,9,35,112,46,30,0,6852,0,0,0,0,2,3,2,4,2.1,2385.24547264,2080,0,23210.0,1,3,7,0,4,1,0,0,1,0,0,0,0,1,0,1,11052.380952399999,2,1,2_1,2_1,14400.0,0,14400.0,0,5,12,0.0,13.75,0.0,0,1,1434.912379207792,1434.912379207792,0.0 +1638,8070,8069,2,5,23,112,63,50,0,6842,0,390,0,590,2,4,1,3,1.8,2132.70505124,3120,0,19136.0,1,3,8,1,4,2,0,1,0,1,0,0,0,0,0,2,10631.1111111,2,1,2_0,2_0,18625.0,0,18625.0,0,3,4,0.0,8.66666666667,3.3,0,1,1815.7297044264753,1815.7297044264753,0.0 +1639,8077,8076,3,9,35,112,46,30,0,6852,0,0,0,0,2,3,2,4,2.1,2385.24547264,2080,0,23210.0,1,3,7,0,4,1,0,0,1,0,0,0,0,1,0,1,11052.3809524,2,1,2_1,2_1,14400.0,0,14400.0,0,5,12,0.0,13.75,0.0,0,1,1434.912379207792,1434.912379207792,0.0 1640,8087,8086,0,5,57,300,13,50,2,6867,0,250,0,0,3,5,1,3,2.0,1437.94734788,3224,16000,24080.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,12040.0,2,1,2_0,2_1,3500.0,0,3500.0,0,5,8,238.2,80.0,0.0,0,1,348.7634255018939,348.7634255018939,0.0 1641,8092,8091,0,0,18,111,63,50,0,6873,0,0,0,330,1,2,0,1,1.0,4260.0400602,0,0,11930.0,1,3,4,3,1,0,0,0,0,1,0,0,0,0,0,0,11930.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,0.0,30.0,2.2,0,0,0.0,0.0,0.0 1642,8102,8101,2,4,63,111,78,50,0,6885,0,0,0,0,0,4,0,2,1.5,2563.56116157,1560,0,17744.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,11829.3333333,2,1,2_0,2_0,28000.0,0,28000.0,0,1,4,0.0,0.0,0.0,0,0,2729.6876093391306,2729.6876093391306,0.0 -1643,8103,8102,5,8,26,111,52,41,0,6886,0,600,0,120,1,4,2,4,2.1,4536.47977006,4364,0,22430.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,10680.952381000001,2,1,2_1,2_0,23781.0,0,23781.0,0,1,10,0.0,0.0,0.0,0,0,2318.382179917638,2318.382179917638,0.0 +1643,8103,8102,5,8,26,111,52,41,0,6886,0,600,0,120,1,4,2,4,2.1,4536.47977006,4364,0,22430.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,10680.952381,2,1,2_1,2_0,23781.0,0,23781.0,0,1,10,0.0,0.0,0.0,0,0,2318.382179917638,2318.382179917638,0.0 1644,8109,8108,0,0,37,111,67,71,0,6895,0,0,0,309,1,4,2,4,2.5,2441.77894303,286,0,24500.0,1,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,9800.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1645,8116,8115,5,15,37,111,67,71,0,6903,0,0,0,0,1,1,0,1,1.0,2960.60571566,1560,0,10726.0,4,3,7,6,1,1,0,0,0,0,1,0,0,1,1,0,10726.0,2,1,2_1,2_0,35000.0,0,0.0,35000,8,15,152.4,115.0,3.3,0,1,3412.1095116739134,0.0,3412.1095116739134 1646,8123,8122,17,20,68,111,75,50,0,6914,0,0,0,250,0,3,0,2,1.5,1103.45868715,1041,0,18788.0,5,3,7,5,3,1,0,0,0,0,1,0,0,1,1,0,12525.3333333,2,1,2_1,2_0,2500.0,0,0.0,2500,18,20,0.0,0.0,0.0,0,0,243.72210797670812,0.0,243.72210797670812 @@ -1654,11 +1654,11 @@ 1652,8180,8179,0,0,52,112,22,70,0,6991,0,0,0,0,3,6,2,4,2.5,1499.52913658,0,0,25253.0,1,2,3,0,4,0,0,0,1,0,0,0,0,0,0,0,10101.2,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,65.0,2.22,0,0,0.0,0.0,0.0 1653,8184,8183,5,6,73,112,71,70,0,6995,0,0,0,0,0,4,0,2,1.5,4469.79991718,2455,0,17074.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,1,0,11382.6666667,2,1,2_0,2_1,10000.0,0,0.0,10000,6,6,0.0,0.0,0.0,0,0,996.4669300054111,0.0,996.4669300054111 1654,8203,8202,13,22,58,112,77,70,0,7019,0,0,0,0,0,5,0,2,1.5,2098.29960245,1560,0,14480.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,1,0,9653.33333333,2,1,2_0,2_1,10000.0,0,0.0,10000,13,18,0.0,0.0,0.0,0,0,996.4669300054111,0.0,996.4669300054111 -1655,8214,8213,7,7,49,120,56,50,0,7033,0,0,0,0,2,5,1,3,1.8,2674.77222296,0,0,19897.0,1,2,0,2,4,1,0,1,0,1,0,0,0,1,1,0,11053.888888899999,2,1,2_1,2_0,15000.0,0,0.0,15000,6,10,53.4,68.0,3.3,0,1,1462.3326478602487,0.0,1462.3326478602487 +1655,8214,8213,7,7,49,120,56,50,0,7033,0,0,0,0,2,5,1,3,1.8,2674.77222296,0,0,19897.0,1,2,0,2,4,1,0,1,0,1,0,0,0,1,1,0,11053.8888889,2,1,2_1,2_0,15000.0,0,0.0,15000,6,10,53.4,68.0,3.3,0,1,1462.3326478602487,0.0,1462.3326478602487 1656,8216,8215,5,11,62,221,35,20,0,7036,0,0,0,0,1,4,0,2,1.5,3095.91500154,0,0,15092.0,1,1,1,1,3,1,1,0,0,1,0,0,0,0,1,0,10061.3333333,2,1,2_0,2_0,6000.0,0,0.0,6000,10,12,0.0,0.0,0.0,0,0,584.9330591440995,0.0,584.9330591440995 1657,8219,8218,5,25,76,112,78,71,0,7042,0,0,0,0,0,5,0,1,1.0,2846.50625926,0,0,11632.0,5,1,9,1,1,1,0,0,0,1,0,0,0,0,0,1,11632.0,2,1,2_0,2_0,25000.0,0,25000.0,0,6,17,0.0,0.0,0.0,0,0,2437.2210797670814,2437.2210797670814,0.0 1658,8224,8223,8,10,29,120,52,50,0,7053,0,80,0,0,1,1,0,1,1.0,2870.99970092,0,0,10720.0,4,3,0,2,1,1,0,1,0,1,0,0,0,1,0,1,10720.0,2,1,2_1,2_0,6487.0,0,6487.0,0,0,10,0.0,0.0,0.0,0,0,632.4101257779622,632.4101257779622,0.0 -1659,8232,8231,6,12,48,111,64,71,0,7064,0,0,200,0,1,4,1,3,1.8,3737.27861672,3942,0,19478.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,10821.111111100001,2,1,2_1,2_0,7500.0,0,0.0,7500,10,11,24.0,16.6666666667,5.5,0,0,731.1663239301243,0.0,731.1663239301243 +1659,8232,8231,6,12,48,111,64,71,0,7064,0,0,200,0,1,4,1,3,1.8,3737.27861672,3942,0,19478.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,10821.1111111,2,1,2_1,2_0,7500.0,0,0.0,7500,10,11,24.0,16.6666666667,5.5,0,0,731.1663239301243,0.0,731.1663239301243 1660,8234,8233,3,4,39,120,43,33,0,7066,0,250,0,306,1,2,0,1,1.0,2609.02601273,0,0,11585.0,4,4,0,3,1,1,0,1,0,1,0,0,0,0,0,1,11585.0,2,1,2_0,2_0,6487.0,0,6487.0,0,0,10,0.0,0.0,0.0,0,0,632.4101257779622,632.4101257779622,0.0 1661,8248,8247,0,0,86,111,77,70,0,7085,0,0,0,225,0,4,0,1,1.0,2683.35140356,0,0,9720.0,5,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,9720.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1662,8256,8255,11,27,78,400,77,71,0,7095,0,0,0,0,0,4,0,2,1.5,3423.64123109,0,0,17953.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,11968.6666667,2,1,2_0,2_1,17000.0,0,17000.0,0,18,22,0.0,0.0,0.0,0,0,1693.993781009199,1693.993781009199,0.0 @@ -1673,7 +1673,7 @@ 1671,8335,8334,2,15,62,111,72,50,0,7215,0,0,0,0,0,1,0,1,1.0,3892.75840299,0,0,11564.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,11564.0,2,1,2_1,2_0,2200.0,0,0.0,2200,12,16,0.0,0.0,0.0,0,0,214.47545501950316,0.0,214.47545501950316 1672,8348,8347,0,0,61,111,63,71,0,7232,0,0,0,230,1,1,0,1,1.0,3145.35483652,0,0,12410.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,12410.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,0.0,80.0,5.5,0,0,0.0,0.0,0.0 1673,8353,8352,11,12,55,111,43,70,0,7238,0,0,0,0,3,3,1,3,2.0,3016.38832752,2081,0,20541.0,4,3,8,6,4,1,1,0,0,0,1,0,0,1,1,0,10270.5,2,1,2_1,2_0,10258.0,0,0.0,10258,4,9,12.6,50.0,1.1,0,1,1000.0405534500287,0.0,1000.0405534500287 -1674,8365,8364,3,8,41,111,63,71,0,7250,0,99999,0,520,2,5,4,6,3.3,3098.15959648,2887,0,33900.0,4,3,9,7,4,2,0,1,0,0,0,1,0,1,0,2,10272.727272700002,2,1,2_1,2_0,18625.0,0,18625.0,0,3,8,41.0,18.0,3.3,0,1,1815.7297044264753,1815.7297044264753,0.0 +1674,8365,8364,3,8,41,111,63,71,0,7250,0,99999,0,520,2,5,4,6,3.3,3098.15959648,2887,0,33900.0,4,3,9,7,4,2,0,1,0,0,0,1,0,1,0,2,10272.7272727,2,1,2_1,2_0,18625.0,0,18625.0,0,3,8,41.0,18.0,3.3,0,1,1815.7297044264753,1815.7297044264753,0.0 1675,8370,8369,0,0,45,111,65,44,0,726,0,12,0,0,1,5,3,5,2.4,2816.51244865,0,0,26481.0,1,4,8,6,4,2,1,1,0,0,1,0,0,0,1,1,11033.75,2,1,2_0,2_0,26379.0,0,17343.0,9036,2,10,0.0,4.0,0.0,1,1,2571.658194527033,1690.7490074560196,880.9091870710138 1676,8395,8394,1,1,22,211,63,43,1,7302,0,440,0,0,2,3,0,2,1.5,1969.88763142,3744,14000,18841.0,1,3,3,4,3,1,0,1,0,0,1,0,0,1,0,1,12560.6666667,2,1,2_1,2_0,16353.0,0,16353.0,0,5,0,0.0,0.0,0.0,0,1,1594.235052697243,1594.235052697243,0.0 1677,8398,8397,1,1,53,111,62,50,1,7306,0,0,0,279,2,3,0,2,1.5,1505.60020591,1872,27800,18152.0,4,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,12101.3333333,2,1,2_0,2_0,6859.0,0,6859.0,0,1,2,0.0,0.0,0.0,0,0,668.6759754448964,668.6759754448964,0.0 @@ -1681,32 +1681,32 @@ 1679,8423,8422,0,0,40,111,52,50,0,7339,0,0,0,0,1,2,1,2,1.3,2340.90403346,0,0,14331.0,4,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,11023.8461538,2,1,2_1,2_0,0.0,0,0.0,0,0,0,75.5,75.0,3.32,0,0,0.0,0.0,0.0 1680,8433,8432,0,0,64,111,78,71,0,736,0,0,0,0,1,4,0,2,1.5,1931.59686674,0,0,16210.0,5,3,8,7,3,0,0,0,0,0,0,1,0,0,0,0,10806.6666667,2,1,2_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 1681,8447,8446,11,18,65,111,77,60,0,738,0,0,0,107,0,2,0,1,1.0,2318.82936134,0,0,10917.0,5,3,7,5,1,1,0,0,0,0,1,0,0,1,1,0,10917.0,2,1,2_1,2_0,2200.0,0,0.0,2200,12,16,0.0,0.0,0.0,0,0,214.47545501950316,0.0,214.47545501950316 -1682,8449,8448,1,12,21,400,63,50,0,7383,0,0,0,0,2,5,3,4,2.5,845.7487849319999,0,0,25240.0,1,1,0,0,2,3,0,0,1,0,0,0,0,0,0,3,10096.0,2,1,2_0,2_1,35000.0,0,35000.0,0,4,14,0.0,25.0,3.3,0,1,3487.634255018939,3487.634255018939,0.0 +1682,8449,8448,1,12,21,400,63,50,0,7383,0,0,0,0,2,5,3,4,2.5,845.748784932,0,0,25240.0,1,1,0,0,2,3,0,0,1,0,0,0,0,0,0,3,10096.0,2,1,2_0,2_1,35000.0,0,35000.0,0,4,14,0.0,25.0,3.3,0,1,3487.634255018939,3487.634255018939,0.0 1683,8473,8472,0,0,79,111,86,50,0,7418,0,0,0,0,0,5,0,1,1.0,3006.0237942,0,0,12138.0,7,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,12138.0,2,1,2_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 1684,8479,8478,1,11,27,111,56,50,2,7424,0,0,0,0,2,5,1,3,1.8,1553.65656315,1040,1600,18256.0,4,3,9,7,4,1,0,0,0,0,0,1,0,1,1,0,10142.2222222,2,1,2_1,2_0,10000.0,0,0.0,10000,2,12,0.0,0.0,0.0,0,1,974.8884319068325,0.0,974.8884319068325 1685,8483,8482,8,21,37,112,21,50,0,7429,0,400,0,0,2,4,2,4,2.1,3137.87987785,3078,0,25180.0,1,3,6,0,4,2,1,0,1,0,0,0,0,1,0,2,11990.4761905,2,1,2_1,2_1,17343.0,0,17343.0,0,1,17,155.0,20.0,3.3,0,1,1728.1725967083844,1728.1725967083844,0.0 1686,8484,8483,5,13,76,112,72,71,0,7430,0,0,0,0,0,4,0,2,1.5,2692.87574009,1560,0,18521.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,0,1,12347.3333333,2,1,2_0,2_1,5000.0,0,5000.0,0,11,14,0.0,0.0,0.0,0,0,498.23346500270554,498.23346500270554,0.0 1687,8493,8492,0,15,38,111,52,50,0,7443,0,0,120,0,1,3,2,3,1.8,3406.96881761,2080,0,17483.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,1,0,9712.77777778,2,1,2_1,2_0,6000.0,0,0.0,6000,17,19,0.0,0.0,0.0,0,0,584.9330591440995,0.0,584.9330591440995 -1688,8521,8520,2,13,38,111,67,50,0,7489,0,9,0,168,2,4,2,4,2.1,1715.1644777,1118,0,25036.0,1,3,4,4,4,2,0,0,0,0,1,0,0,1,0,2,11921.904761900001,2,1,2_1,2_0,24353.0,0,24353.0,0,12,14,0.0,0.0,0.0,0,1,2374.1457982227093,2374.1457982227093,0.0 +1688,8521,8520,2,13,38,111,67,50,0,7489,0,9,0,168,2,4,2,4,2.1,1715.1644777,1118,0,25036.0,1,3,4,4,4,2,0,0,0,0,1,0,0,1,0,2,11921.9047619,2,1,2_1,2_0,24353.0,0,24353.0,0,12,14,0.0,0.0,0.0,0,1,2374.1457982227093,2374.1457982227093,0.0 1689,8522,8521,0,0,22,111,84,20,0,749,0,0,0,420,0,2,0,2,1.5,3677.51126071,0,0,17857.0,3,3,10,8,3,0,0,0,0,0,0,0,1,1,0,0,11904.6666667,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1690,8530,8529,0,0,69,111,77,60,0,7500,0,0,0,158,0,3,0,1,1.0,3179.58513975,0,0,11096.0,5,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,11096.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1691,8537,8536,0,0,81,120,86,71,0,751,0,0,0,0,0,1,0,1,1.0,3567.28493026,0,0,11691.0,5,3,0,3,1,0,0,0,0,1,0,0,0,1,0,0,11691.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1692,8542,8541,0,0,74,111,77,70,0,7517,0,0,0,0,0,1,0,1,1.0,3247.9896231,0,0,11308.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,11308.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1693,8545,8544,0,3,33,111,52,33,2,7521,0,250,0,0,1,4,2,4,2.1,4548.03320398,0,9500,24754.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,11787.619047600001,2,1,2_1,2_0,18625.0,0,18625.0,0,3,0,0.0,0.0,0.0,0,0,1815.7297044264753,1815.7297044264753,0.0 +1693,8545,8544,0,3,33,111,52,33,2,7521,0,250,0,0,1,4,2,4,2.1,4548.03320398,0,9500,24754.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,11787.6190476,2,1,2_1,2_0,18625.0,0,18625.0,0,3,0,0.0,0.0,0.0,0,0,1815.7297044264753,1815.7297044264753,0.0 1694,8548,8547,4,4,75,112,71,70,0,7524,0,0,0,0,0,4,0,2,1.5,1583.80761023,1769,0,18465.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,1,0,12310.0,2,1,2_0,2_1,10000.0,0,0.0,10000,6,6,0.0,0.0,0.0,0,0,996.4669300054111,0.0,996.4669300054111 -1695,8558,8557,1,12,35,111,42,31,2,7538,0,0,400,927,1,3,1,2,1.3,3396.56579504,2432,2500,14706.0,4,3,9,7,2,1,1,1,0,0,0,1,0,0,1,0,11312.307692299999,2,1,2_0,2_0,1000.0,0,0.0,1000,12,12,0.0,5.0,0.0,0,1,97.48884319068326,0.0,97.48884319068326 +1695,8558,8557,1,12,35,111,42,31,2,7538,0,0,400,927,1,3,1,2,1.3,3396.56579504,2432,2500,14706.0,4,3,9,7,2,1,1,1,0,0,0,1,0,0,1,0,11312.3076923,2,1,2_0,2_0,1000.0,0,0.0,1000,12,12,0.0,5.0,0.0,0,1,97.48884319068326,0.0,97.48884319068326 1696,8575,8574,11,13,37,120,21,50,0,756,0,0,0,0,1,4,2,4,2.1,2340.64217372,0,0,25025.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,0,2,11916.6666667,2,1,2_0,2_1,17000.0,0,17000.0,0,2,13,0.0,0.0,0.0,0,1,1693.993781009199,1693.993781009199,0.0 -1697,8589,8588,4,12,57,111,67,71,0,7580,0,110,0,42,2,3,3,5,2.8,3246.49443894,2600,0,29846.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,10659.285714299998,2,1,2_1,2_0,15000.0,0,15000.0,0,11,12,72.6,20.0,3.3,0,1,1462.3326478602487,1462.3326478602487,0.0 +1697,8589,8588,4,12,57,111,67,71,0,7580,0,110,0,42,2,3,3,5,2.8,3246.49443894,2600,0,29846.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,10659.2857143,2,1,2_1,2_0,15000.0,0,15000.0,0,11,12,72.6,20.0,3.3,0,1,1462.3326478602487,1462.3326478602487,0.0 1698,8600,8599,0,0,44,111,63,71,0,7595,0,0,0,0,2,2,1,3,1.8,3247.04104667,0,0,18255.0,1,2,10,8,4,0,0,0,0,0,0,0,1,0,0,0,10141.6666667,2,1,2_0,2_0,0.0,0,0.0,0,0,0,78.0,61.6666666667,5.5,0,0,0.0,0.0,0.0 1699,8602,8601,3,3,23,111,21,50,0,7598,0,0,0,0,1,3,0,1,1.0,2968.40273808,3120,0,12250.0,1,3,9,7,1,1,1,0,0,0,0,1,0,1,0,1,12250.0,2,1,2_1,2_0,20000.0,0,20000.0,0,3,3,0.0,0.0,0.0,1,1,1949.776863813665,1949.776863813665,0.0 1700,8605,8604,0,12,72,111,78,71,0,760,0,0,0,0,0,3,0,1,1.0,5351.90110763,0,0,11161.0,5,4,7,5,1,1,0,0,0,0,1,0,0,0,1,0,11161.0,2,1,2_0,2_0,10000.0,0,0.0,10000,4,11,0.0,0.0,0.0,0,0,974.8884319068325,0.0,974.8884319068325 -1701,8606,8605,8,11,36,111,52,31,0,7600,0,200,0,713,1,3,2,3,1.6,2514.6532989,0,0,17687.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,11054.375,2,1,2_1,2_0,15000.0,0,15000.0,0,10,12,0.0,11.666666666700001,3.31,0,1,1462.3326478602487,1462.3326478602487,0.0 +1701,8606,8605,8,11,36,111,52,31,0,7600,0,200,0,713,1,3,2,3,1.6,2514.6532989,0,0,17687.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,11054.375,2,1,2_1,2_0,15000.0,0,15000.0,0,10,12,0.0,11.6666666667,3.31,0,1,1462.3326478602487,1462.3326478602487,0.0 1702,8608,8607,0,12,40,111,67,71,0,7602,0,300,0,0,2,2,0,2,1.5,2998.75850598,0,0,17865.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,0,1,11910.0,2,1,2_0,2_0,20000.0,0,20000.0,0,10,14,140.0,10.0,0.0,0,1,1949.776863813665,1949.776863813665,0.0 1703,8610,8609,1,16,30,300,21,50,0,7605,0,0,300,0,1,4,1,3,1.8,3259.07820383,0,0,19391.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,1,1,10772.7777778,2,1,2_1,2_1,35000.0,0,25000.0,10000,11,11,0.0,0.0,0.0,0,1,3487.634255018939,2491.1673250135277,996.4669300054111 1704,8611,8610,0,11,42,111,63,50,0,7606,0,0,275,0,2,5,2,4,2.1,1554.44046856,3647,0,20917.0,1,1,6,5,4,2,0,0,0,0,1,0,0,0,2,0,9960.47619048,2,1,2_0,2_0,8000.0,0,0.0,8000,14,15,58.0,30.0,0.0,1,0,779.910745525466,0.0,779.910745525466 1705,8615,8614,4,4,56,111,75,44,0,7611,0,0,0,0,0,5,0,1,1.0,3175.96071274,0,0,11737.0,7,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,11737.0,2,1,2_0,2_0,14818.0,0,14818.0,0,8,0,0.0,0.0,0.0,0,0,1444.5896783995443,1444.5896783995443,0.0 1706,8626,8625,2,4,32,111,62,50,0,7623,0,150,0,19,1,5,3,5,2.4,2563.35166957,0,0,29444.0,1,3,6,5,4,1,0,1,0,0,1,0,0,1,0,1,12268.3333333,2,1,2_1,2_0,25000.0,0,25000.0,0,3,7,0.0,1.2,0.0,0,0,2437.2210797670814,2437.2210797670814,0.0 -1707,8646,8645,4,12,70,400,72,50,0,7646,0,0,0,0,0,7,0,2,1.5,1289.5895125999998,3853,0,15811.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,10540.6666667,2,1,2_0,2_1,35000.0,0,25000.0,10000,7,15,0.0,0.0,0.0,0,0,3487.634255018939,2491.1673250135277,996.4669300054111 +1707,8646,8645,4,12,70,400,72,50,0,7646,0,0,0,0,0,7,0,2,1.5,1289.5895126,3853,0,15811.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,10540.6666667,2,1,2_0,2_1,35000.0,0,25000.0,10000,7,15,0.0,0.0,0.0,0,0,3487.634255018939,2491.1673250135277,996.4669300054111 1708,8650,8649,2,8,42,221,52,50,0,765,0,50,0,0,3,5,4,6,2.9,1183.34293989,3020,0,28849.0,1,2,1,3,4,3,0,1,0,1,0,0,0,1,1,2,9947.93103448,2,1,2_1,2_0,21000.0,0,20000.0,1000,4,6,100.0,25.2,3.3,0,1,2047.265707004348,1949.776863813665,97.48884319068326 1709,8658,8657,8,14,77,112,78,71,0,7657,0,0,0,0,0,2,0,2,1.5,2475.60709257,1394,0,18099.0,5,4,4,0,3,1,0,0,1,0,0,0,0,0,1,0,12066.0,2,1,2_0,2_1,12000.0,0,0.0,12000,11,14,0.0,0.0,0.0,0,0,1195.7603160064934,0.0,1195.7603160064934 1710,8684,8683,3,3,55,111,62,41,0,7689,0,0,0,0,2,5,1,3,2.0,846.478647148,0,0,22289.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,11144.5,2,1,2_0,2_0,12000.0,0,12000.0,0,5,5,0.0,0.0,0.0,0,0,1169.866118288199,1169.866118288199,0.0 @@ -1716,17 +1716,17 @@ 1714,8731,8730,3,3,41,111,47,20,0,7755,0,150,0,0,1,5,2,3,1.6,4498.11090913,2392,0,20090.0,1,3,6,5,2,1,0,1,0,0,1,0,0,0,0,1,12556.25,2,1,2_0,2_0,18000.0,0,18000.0,0,3,6,68.0,30.0,0.0,0,1,1754.7991774322984,1754.7991774322984,0.0 1715,8739,8738,0,12,52,111,22,20,2,7767,0,0,200,217,2,4,2,4,2.5,3461.75034655,3562,2000,30744.0,1,3,10,8,4,2,0,0,0,0,0,0,1,1,2,0,12297.6,2,1,2_1,2_0,5000.0,0,0.0,5000,3,12,0.0,30.0,0.0,0,1,487.44421595341623,0.0,487.44421595341623 1716,8772,8771,5,15,35,111,54,71,0,7804,0,0,0,0,3,7,3,5,3.0,2846.30623804,1040,0,36891.0,4,1,10,8,4,2,0,0,0,0,0,0,1,0,0,2,12297.0,2,1,2_0,2_0,11759.0,0,11759.0,0,12,16,0.0,21.6666666667,0.0,1,1,1146.3713070792442,1146.3713070792442,0.0 -1717,8796,8795,0,14,44,120,62,50,0,7831,0,400,0,0,2,4,4,6,3.1,1132.1156810999998,0,0,33316.0,1,2,0,0,4,3,0,0,1,0,0,0,0,1,1,2,10747.096774200001,2,1,2_1,2_1,30000.0,0,30000.0,0,8,14,30.5,10.0,0.0,0,1,2989.4007900162333,2989.4007900162333,0.0 +1717,8796,8795,0,14,44,120,62,50,0,7831,0,400,0,0,2,4,4,6,3.1,1132.1156811,0,0,33316.0,1,2,0,0,4,3,0,0,1,0,0,0,0,1,1,2,10747.0967742,2,1,2_1,2_1,30000.0,0,30000.0,0,8,14,30.5,10.0,0.0,0,1,2989.4007900162333,2989.4007900162333,0.0 1718,8817,8816,0,0,89,111,71,70,0,786,0,0,0,0,0,2,0,1,1.0,3046.53579962,0,0,10980.0,5,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,10980.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1719,8820,8819,0,0,67,111,78,70,0,7863,0,0,0,0,0,4,0,1,1.0,1400.76285261,0,0,10466.0,5,1,6,4,1,0,0,0,0,0,1,0,0,0,0,0,10466.0,2,1,2_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 1720,8839,8838,10,10,87,111,71,71,0,7888,0,0,0,0,0,5,0,2,1.5,2522.20583391,79,0,17662.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,11774.6666667,2,1,2_0,2_0,500.0,0,0.0,500,11,11,0.0,0.0,0.0,0,0,48.74442159534163,0.0,48.74442159534163 1721,8848,8847,0,0,91,111,72,71,0,790,0,0,0,110,0,3,0,1,1.0,3656.70663397,0,0,12099.0,5,3,6,5,1,0,0,0,0,0,1,0,0,1,0,0,12099.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1722,8856,8855,1,1,46,111,85,50,1,7913,0,0,0,0,0,5,2,4,2.1,1458.20277692,0,26000,22829.0,7,1,6,5,4,2,0,0,0,0,1,0,0,0,2,0,10870.952381000001,2,1,2_0,2_0,19500.0,0,0.0,19500,10,10,0.0,0.0,0.0,0,0,1901.0324422183232,0.0,1901.0324422183232 -1723,8860,8859,12,12,46,111,63,41,0,7919,0,300,0,0,2,7,6,8,3.7,815.9326977110001,0,0,38906.0,1,2,9,7,4,2,0,1,0,0,0,1,0,1,0,2,10515.135135100001,2,1,2_1,2_0,3000.0,0,3000.0,0,10,11,0.0,10.0,1.1,1,0,292.46652957204975,292.46652957204975,0.0 +1722,8856,8855,1,1,46,111,85,50,1,7913,0,0,0,0,0,5,2,4,2.1,1458.20277692,0,26000,22829.0,7,1,6,5,4,2,0,0,0,0,1,0,0,0,2,0,10870.952381,2,1,2_0,2_0,19500.0,0,0.0,19500,10,10,0.0,0.0,0.0,0,0,1901.0324422183232,0.0,1901.0324422183232 +1723,8860,8859,12,12,46,111,63,41,0,7919,0,300,0,0,2,7,6,8,3.7,815.932697711,0,0,38906.0,1,2,9,7,4,2,0,1,0,0,0,1,0,1,0,2,10515.1351351,2,1,2_1,2_0,3000.0,0,3000.0,0,10,11,0.0,10.0,1.1,1,0,292.46652957204975,292.46652957204975,0.0 1724,8862,8861,15,20,66,112,78,50,0,7920,0,0,0,0,1,6,0,2,1.5,1347.83229176,1705,0,17313.0,5,1,8,0,3,2,1,0,1,0,0,0,0,0,2,0,11542.0,2,1,2_0,2_1,850.0,0,0.0,850,3,18,0.0,0.0,0.0,0,1,84.69968905045994,0.0,84.69968905045994 1725,8865,8864,0,0,60,111,77,41,0,7923,0,0,0,563,1,5,1,2,1.5,7931.77511229,0,0,15900.0,5,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,10600.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,20.0,55.0,5.5,0,0,0.0,0.0,0.0 1726,8868,8867,0,0,83,400,71,71,0,7926,0,0,0,0,0,3,0,1,1.0,2853.38447547,0,0,11409.0,5,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,11409.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1727,8880,8879,0,0,25,111,63,50,0,7945,0,0,0,44,2,3,2,4,2.1,3556.64738034,0,0,25416.0,1,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,12102.857142899999,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1727,8880,8879,0,0,25,111,63,50,0,7945,0,0,0,44,2,3,2,4,2.1,3556.64738034,0,0,25416.0,1,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,12102.8571429,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1728,8891,8890,0,21,58,400,78,50,0,7957,0,0,0,204,1,5,1,3,2.0,991.105321696,1560,0,22580.0,7,3,0,0,4,2,0,0,1,0,0,0,0,1,1,1,11290.0,2,1,2_1,2_1,17000.0,0,15000.0,2000,14,16,0.0,0.0,0.0,0,0,1693.993781009199,1494.7003950081166,199.29338600108224 1729,8892,8891,1,7,28,400,42,41,2,7959,0,90,0,149,2,4,2,4,2.3,1784.43353716,0,800,22991.0,2,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,9996.08695652,2,1,2_1,2_1,17000.0,0,17000.0,0,7,7,128.5,36.6666666667,3.3,0,1,1693.993781009199,1693.993781009199,0.0 1730,8895,8894,4,6,45,111,85,71,0,7962,0,0,0,111,0,5,3,4,2.3,3057.87404795,1560,0,27724.0,7,3,10,8,2,1,0,0,0,0,0,0,1,1,0,1,12053.9130435,2,1,2_1,2_0,35000.0,0,35000.0,0,2,5,0.0,0.0,0.0,0,0,3412.1095116739134,3412.1095116739134,0.0 @@ -1734,36 +1734,36 @@ 1732,8911,8910,0,19,27,400,85,50,2,7979,0,99999,0,0,1,6,5,7,3.0,2127.37317781,0,600,35203.0,6,3,0,0,4,1,0,1,1,0,0,0,0,1,0,1,11734.3333333,2,1,2_1,2_1,10000.0,0,10000.0,0,2,13,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1733,8915,8914,0,0,75,112,86,70,0,7986,0,0,0,0,0,3,0,1,1.0,2792.36865734,0,0,10780.0,5,1,9,2,1,0,0,0,0,1,0,0,0,0,0,0,10780.0,2,1,2_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 1734,8923,8922,0,0,33,111,42,20,0,7999,0,0,0,309,1,1,0,1,1.0,2836.11406527,0,0,11605.0,1,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,11605.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 -1735,8948,8947,8,11,30,111,52,50,0,8032,0,70,0,0,1,3,2,3,1.6,3335.04608761,0,0,18380.0,1,3,5,4,2,1,0,1,0,0,1,0,0,1,0,1,11487.5,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.333333333299999,3.3,0,1,651.9078944160989,651.9078944160989,0.0 -1736,8960,8959,6,9,32,112,12,50,0,8045,0,199998,0,0,2,6,2,4,2.1,4476.97252032,0,0,24974.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,11892.380952399999,2,1,2_0,2_1,20000.0,0,20000.0,0,4,9,0.0,5.2,3.3,0,1,1992.9338600108222,1992.9338600108222,0.0 +1735,8948,8947,8,11,30,111,52,50,0,8032,0,70,0,0,1,3,2,3,1.6,3335.04608761,0,0,18380.0,1,3,5,4,2,1,0,1,0,0,1,0,0,1,0,1,11487.5,2,1,2_1,2_0,6687.0,0,6687.0,0,1,7,18.4,11.3333333333,3.3,0,1,651.9078944160989,651.9078944160989,0.0 +1736,8960,8959,6,9,32,112,12,50,0,8045,0,199998,0,0,2,6,2,4,2.1,4476.97252032,0,0,24974.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,11892.3809524,2,1,2_0,2_1,20000.0,0,20000.0,0,4,9,0.0,5.2,3.3,0,1,1992.9338600108222,1992.9338600108222,0.0 1737,8976,8975,1,13,20,111,67,50,2,8067,0,80,0,0,1,4,2,4,2.5,3086.71083452,1927,2400,26120.0,1,3,7,5,4,1,0,1,0,0,1,0,0,1,0,1,10448.0,2,1,2_1,2_0,23781.0,0,23781.0,0,1,10,0.0,0.0,0.0,0,0,2318.382179917638,2318.382179917638,0.0 1738,8984,8983,0,0,85,111,86,71,0,8079,0,0,0,0,0,3,0,1,1.0,3311.12695559,0,0,9710.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,9710.0,2,1,2_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 1739,9014,9013,6,6,61,111,74,10,0,8112,0,0,0,0,0,5,0,1,1.0,2452.60174019,0,0,9825.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,9825.0,2,1,2_0,2_0,7000.0,0,7000.0,0,6,9,0.0,0.0,0.0,0,0,682.4219023347827,682.4219023347827,0.0 1740,9015,9014,1,16,80,112,71,71,0,8113,0,0,0,0,0,4,0,2,1.5,1974.49588101,3993,0,17776.0,5,1,8,1,3,2,0,0,0,1,0,0,0,0,0,2,11850.6666667,2,1,2_0,2_0,10000.0,0,10000.0,0,4,14,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 1741,9022,9021,6,17,82,400,78,70,0,8124,0,0,0,0,0,8,0,2,1.5,2278.55213565,2080,0,18020.0,5,3,0,0,3,2,0,0,1,0,0,0,0,0,1,1,12013.3333333,2,1,2_0,2_1,35000.0,0,25000.0,10000,7,15,0.0,0.0,0.0,0,0,3487.634255018939,2491.1673250135277,996.4669300054111 -1742,9061,9060,4,14,28,111,52,41,0,8191,0,0,0,703,2,4,2,4,2.1,3722.27389999,1948,0,26140.0,4,3,9,7,4,2,0,0,0,0,0,1,0,0,2,0,12447.619047600001,2,1,2_0,2_0,16352.0,0,0.0,16352,5,13,0.0,0.0,0.0,0,0,1594.1375638540524,0.0,1594.1375638540524 +1742,9061,9060,4,14,28,111,52,41,0,8191,0,0,0,703,2,4,2,4,2.1,3722.27389999,1948,0,26140.0,4,3,9,7,4,2,0,0,0,0,0,1,0,0,2,0,12447.6190476,2,1,2_0,2_0,16352.0,0,0.0,16352,5,13,0.0,0.0,0.0,0,0,1594.1375638540524,0.0,1594.1375638540524 1743,9063,9062,0,0,93,111,75,33,0,8193,0,0,0,0,0,1,0,1,1.0,3076.31340535,0,0,10436.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,10436.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1744,9081,9080,0,0,36,111,85,71,0,822,0,0,0,81,0,5,3,4,1.9,3248.8084696999995,0,0,18724.0,6,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,9854.73684211,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1744,9081,9080,0,0,36,111,85,71,0,822,0,0,0,81,0,5,3,4,1.9,3248.8084697,0,0,18724.0,6,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,9854.73684211,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1745,9082,9081,5,10,54,112,62,50,0,8220,0,500,150,0,2,4,2,4,2.5,2262.94441867,7021,0,31346.0,1,1,6,0,4,2,0,1,1,0,0,0,0,0,1,1,12538.4,2,1,2_0,2_1,23000.0,0,8000.0,15000,2,13,0.0,20.0,0.0,0,1,2291.8739390124456,797.173544004329,1494.7003950081166 1746,9103,9102,0,0,45,111,85,60,0,8248,0,0,0,0,0,5,2,3,1.6,1775.27066963,0,0,18060.0,7,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,11287.5,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1747,9108,9107,2,9,53,111,63,71,0,8252,0,0,99999,0,2,3,1,2,1.5,3346.48995657,1560,0,16543.0,4,3,9,7,2,1,0,1,0,0,0,1,0,1,1,0,11028.6666667,2,1,2_1,2_0,12000.0,0,0.0,12000,6,9,53.0,10.0,0.0,0,1,1169.866118288199,0.0,1169.866118288199 -1748,9110,9109,2,20,46,120,56,71,0,8254,0,100,0,0,1,5,2,3,1.8,2539.40145304,1040,0,18691.0,1,1,0,0,2,1,0,1,1,0,0,0,0,1,0,1,10383.888888899999,2,1,2_1,2_1,6859.0,0,6859.0,0,1,19,141.0,66.6666666667,3.3,0,1,683.4766672907115,683.4766672907115,0.0 +1748,9110,9109,2,20,46,120,56,71,0,8254,0,100,0,0,1,5,2,3,1.8,2539.40145304,1040,0,18691.0,1,1,0,0,2,1,0,1,1,0,0,0,0,1,0,1,10383.8888889,2,1,2_1,2_1,6859.0,0,6859.0,0,1,19,141.0,66.6666666667,3.3,0,1,683.4766672907115,683.4766672907115,0.0 1749,9116,9115,0,0,37,111,63,41,0,8262,0,0,0,0,1,2,2,4,2.1,2962.15053546,0,0,22572.0,1,4,10,8,4,0,0,0,0,0,0,0,1,0,0,0,10748.5714286,2,1,2_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 1750,9123,9122,14,14,80,111,78,71,0,8270,0,0,0,400,0,3,0,2,1.5,3621.79478181,0,0,18669.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,0,1,12446.0,2,1,2_0,2_0,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 -1751,9147,9146,0,0,46,111,63,71,2,8305,0,150,0,0,2,5,3,5,2.6,3691.70649256,0,14800,32300.0,1,3,8,6,4,1,0,1,0,0,1,0,0,1,0,1,12423.076923100001,2,1,2_1,2_0,4000.0,0,4000.0,0,1,1,0.0,9.2,1.1,0,0,389.955372762733,389.955372762733,0.0 +1751,9147,9146,0,0,46,111,63,71,2,8305,0,150,0,0,2,5,3,5,2.6,3691.70649256,0,14800,32300.0,1,3,8,6,4,1,0,1,0,0,1,0,0,1,0,1,12423.0769231,2,1,2_1,2_0,4000.0,0,4000.0,0,1,1,0.0,9.2,1.1,0,0,389.955372762733,389.955372762733,0.0 1752,9155,9154,0,16,18,111,84,41,0,8315,0,0,140,161,0,2,0,1,1.0,3559.86891462,2093,0,12353.0,3,3,8,7,1,1,0,1,0,0,0,1,0,1,1,0,12353.0,2,1,2_1,2_0,11517.0,0,0.0,11517,3,16,0.0,0.0,0.0,0,0,1122.779007027099,0.0,1122.779007027099 1753,9166,9165,6,12,37,112,47,50,0,8331,0,0,150,0,2,5,4,6,2.9,1619.398116,5541,0,31397.0,1,2,6,0,4,2,0,1,1,0,0,0,0,1,1,1,10826.5517241,2,1,2_1,2_1,33500.0,0,25000.0,8500,4,11,322.5,41.25,3.3,0,1,3338.164215518127,2491.1673250135277,846.9968905045995 1754,9174,9173,0,0,47,111,52,50,0,8343,0,0,0,0,1,4,3,4,2.3,929.38172444,0,0,23090.0,1,3,6,4,2,0,0,0,0,0,1,0,0,1,0,0,10039.1304348,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,3.5,0.0,0,0,0.0,0.0,0.0 1755,9185,9184,0,0,43,111,52,43,0,836,0,0,0,184,2,4,2,4,2.3,3076.35552779,0,0,24380.0,1,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,10600.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1756,9198,9197,0,0,71,111,78,71,0,838,0,0,0,0,0,3,0,1,1.0,2903.1533709000005,0,0,10014.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,10014.0,2,1,2_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 +1756,9198,9197,0,0,71,111,78,71,0,838,0,0,0,0,0,3,0,1,1.0,2903.1533709,0,0,10014.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,10014.0,2,1,2_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 1757,9202,9201,3,6,59,300,13,71,0,8386,0,0,0,0,1,4,0,1,1.0,3466.22848616,0,0,10647.0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,10647.0,2,1,2_0,2_1,15000.0,0,15000.0,0,4,5,0.0,0.0,0.0,1,1,1494.7003950081166,1494.7003950081166,0.0 1758,9218,9217,11,21,23,111,62,50,0,841,0,0,99999,0,1,2,1,2,1.5,1573.68988601,0,0,15194.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,1,0,10129.3333333,2,1,2_1,2_0,20000.0,0,0.0,20000,3,21,18.2,55.0,3.3,0,1,1949.776863813665,0.0,1949.776863813665 -1759,9220,9219,10,10,65,221,78,71,0,8413,0,0,0,22,0,3,2,4,2.1,7815.079298600001,1300,0,22644.0,5,3,1,3,4,1,0,0,0,1,0,0,0,1,0,1,10782.857142899999,2,1,2_1,2_0,8000.0,0,8000.0,0,12,12,0.0,0.0,0.0,0,0,779.910745525466,779.910745525466,0.0 +1759,9220,9219,10,10,65,221,78,71,0,8413,0,0,0,22,0,3,2,4,2.1,7815.0792986,1300,0,22644.0,5,3,1,3,4,1,0,0,0,1,0,0,0,1,0,1,10782.8571429,2,1,2_1,2_0,8000.0,0,8000.0,0,12,12,0.0,0.0,0.0,0,0,779.910745525466,779.910745525466,0.0 1760,9227,9226,29,30,77,112,77,50,0,8420,0,0,0,0,0,4,0,1,1.0,1627.72014816,0,0,10840.0,5,1,9,1,1,1,0,0,0,1,0,0,0,0,1,0,10840.0,2,1,2_0,2_0,1000.0,0,0.0,1000,18,23,0.0,0.0,0.0,0,0,97.48884319068326,0.0,97.48884319068326 1761,9228,9227,4,4,48,111,62,50,0,8421,0,0,0,295,2,3,3,5,2.6,2641.15268523,0,0,26179.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,1,0,10068.8461538,2,1,2_1,2_0,10237.0,0,0.0,10237,13,0,11.0,22.0,5.5,0,0,997.9932877430243,0.0,997.9932877430243 1762,9239,9238,7,12,52,300,55,70,0,8434,0,120,0,0,1,5,0,1,1.0,1555.75008423,1092,0,11342.0,4,3,0,0,1,1,0,1,1,0,0,0,0,1,0,1,11342.0,2,1,2_1,2_1,11747.0,0,11747.0,0,11,15,16.8,20.0,3.31,1,0,1170.5497026773564,1170.5497026773564,0.0 -1763,9243,9242,2,12,24,112,62,50,0,8439,0,0,0,0,1,3,0,1,1.0,3621.4605751999998,0,0,11255.0,1,3,6,0,1,1,0,1,1,0,0,0,0,0,0,1,11255.0,2,1,2_0,2_1,37781.0,0,37781.0,0,1,11,0.0,6.0,3.3,0,1,3764.751708253444,3764.751708253444,0.0 -1764,9287,9286,3,13,34,111,52,33,0,8501,0,40,0,0,1,5,4,6,2.9,1370.33463784,1040,0,30030.0,1,3,8,7,4,1,1,1,0,0,0,1,0,1,0,1,10355.172413799999,2,1,2_1,2_0,11000.0,0,11000.0,0,3,13,75.0,10.0,3.3,0,1,1072.3772750975156,1072.3772750975156,0.0 +1763,9243,9242,2,12,24,112,62,50,0,8439,0,0,0,0,1,3,0,1,1.0,3621.4605752,0,0,11255.0,1,3,6,0,1,1,0,1,1,0,0,0,0,0,0,1,11255.0,2,1,2_0,2_1,37781.0,0,37781.0,0,1,11,0.0,6.0,3.3,0,1,3764.751708253444,3764.751708253444,0.0 +1764,9287,9286,3,13,34,111,52,33,0,8501,0,40,0,0,1,5,4,6,2.9,1370.33463784,1040,0,30030.0,1,3,8,7,4,1,1,1,0,0,0,1,0,1,0,1,10355.1724138,2,1,2_1,2_0,11000.0,0,11000.0,0,3,13,75.0,10.0,3.3,0,1,1072.3772750975156,1072.3772750975156,0.0 1765,9291,9290,1,4,27,111,54,31,0,8505,0,500,0,0,1,2,0,1,1.0,3794.7284699,3162,0,10214.0,2,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,10214.0,2,1,2_0,2_0,20000.0,0,20000.0,0,3,3,0.0,0.0,0.0,1,1,1949.776863813665,1949.776863813665,0.0 1766,9303,9302,0,0,80,221,86,71,0,8520,0,0,0,197,0,2,0,1,1.0,3375.10439563,0,0,11257.0,5,3,1,3,1,0,0,0,0,1,0,0,0,1,0,0,11257.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1767,9309,9308,0,0,87,221,77,70,0,853,0,0,0,0,0,2,0,1,1.0,3999.64953991,0,0,12546.0,5,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,12546.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -1775,10 +1775,10 @@ 1773,9347,9346,13,13,37,112,52,20,0,8588,0,99999,99999,0,2,4,2,4,2.1,1995.02054645,0,0,20760.0,1,3,7,1,4,2,0,1,0,1,0,0,0,1,1,1,9885.71428571,2,1,2_1,2_0,14500.0,0,12000.0,2500,8,11,0.0,0.0,0.0,0,1,1413.588226264907,1169.866118288199,243.72210797670812 1774,9348,9347,5,15,63,111,72,43,0,8590,0,0,0,385,0,2,0,1,1.0,3066.32506303,0,0,11720.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,11720.0,2,1,2_1,2_0,2200.0,0,0.0,2200,12,16,0.0,0.0,0.0,0,0,214.47545501950316,0.0,214.47545501950316 1775,9362,9361,2,19,57,112,77,60,0,861,0,0,0,0,0,5,0,2,1.5,2941.81679257,3122,0,18236.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,0,1,12157.3333333,2,1,2_0,2_0,1050.0,0,1050.0,0,18,18,0.0,0.0,0.0,0,0,102.36328535021741,102.36328535021741,0.0 -1776,9375,9374,5,7,48,112,52,50,0,8626,0,210,100,0,2,7,3,5,2.8,1637.98827773,6032,0,31424.0,1,1,6,0,4,2,0,1,1,0,0,0,0,0,1,1,11222.857142899999,2,1,2_0,2_1,6800.0,0,800.0,6000,5,5,126.0,2.8,5.53,0,1,677.5975124036795,79.71735440043288,597.8801580032467 +1776,9375,9374,5,7,48,112,52,50,0,8626,0,210,100,0,2,7,3,5,2.8,1637.98827773,6032,0,31424.0,1,1,6,0,4,2,0,1,1,0,0,0,0,0,1,1,11222.8571429,2,1,2_0,2_1,6800.0,0,800.0,6000,5,5,126.0,2.8,5.53,0,1,677.5975124036795,79.71735440043288,597.8801580032467 1777,9383,9382,9,12,39,111,64,50,0,8634,0,85,0,0,2,4,1,3,1.8,2125.77428492,1561,0,20598.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,11443.3333333,2,1,2_1,2_0,20000.0,0,20000.0,0,10,14,140.0,10.0,0.0,0,1,1949.776863813665,1949.776863813665,0.0 1778,9393,9392,2,2,41,111,21,50,0,865,0,0,0,0,2,5,1,3,2.0,1943.26435759,0,0,22756.0,1,3,5,4,4,2,0,0,0,0,1,0,0,0,1,1,11378.0,2,1,2_0,2_0,19200.0,0,18000.0,1200,6,6,0.0,10.0,3.3,0,1,1871.7857892611185,1754.7991774322984,116.9866118288199 -1779,9401,9400,0,13,48,112,63,50,0,8660,0,0,250,0,2,4,2,4,2.3,2680.21734616,0,0,28876.0,4,2,7,0,4,3,0,1,1,0,0,0,0,0,1,2,12554.782608700001,2,1,2_0,2_1,14362.0,0,14362.0,0,13,13,0.0,0.0,0.0,0,1,1431.1258048737714,1431.1258048737714,0.0 +1779,9401,9400,0,13,48,112,63,50,0,8660,0,0,250,0,2,4,2,4,2.3,2680.21734616,0,0,28876.0,4,2,7,0,4,3,0,1,1,0,0,0,0,0,1,2,12554.7826087,2,1,2_0,2_1,14362.0,0,14362.0,0,13,13,0.0,0.0,0.0,0,1,1431.1258048737714,1431.1258048737714,0.0 1780,9408,9407,9,21,62,111,78,70,0,8672,0,0,0,0,0,5,0,1,1.0,2140.64282438,0,0,11268.0,5,1,8,7,1,2,0,0,0,0,0,1,0,0,1,1,11268.0,2,1,2_0,2_0,27661.0,0,18625.0,9036,3,18,0.0,0.0,0.0,0,0,2696.6388914974896,1815.7297044264753,880.9091870710138 1781,9416,9415,0,0,28,111,21,60,0,8684,0,0,0,487,1,4,2,4,2.1,3233.29627208,0,0,21686.0,1,3,10,8,4,0,0,0,0,0,0,0,1,1,0,0,10326.6666667,2,1,2_1,2_0,0.0,0,0.0,0,0,0,11.5,22.5,5.5,0,0,0.0,0.0,0.0 1782,9418,9417,2,2,37,112,53,42,0,8687,0,0,0,0,1,7,2,4,2.1,2215.64786179,2352,0,23937.0,1,2,5,0,4,2,0,0,1,0,0,0,0,0,2,0,11398.5714286,2,1,2_0,2_1,11052.0,0,0.0,11052,1,7,87.0,65.0,3.32,0,1,1101.2952510419805,0.0,1101.2952510419805 @@ -1787,26 +1787,26 @@ 1785,9440,9439,21,21,86,111,78,71,0,8723,0,0,0,0,0,3,0,1,1.0,4660.61792408,0,0,10040.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,10040.0,2,1,2_0,2_0,100.0,0,0.0,100,19,19,0.0,0.0,0.0,0,0,9.748884319068324,0.0,9.748884319068324 1786,9441,9440,7,11,47,111,64,50,0,8724,0,250,0,209,1,4,3,5,2.4,1409.47479593,2080,0,28179.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,11741.25,2,1,2_1,2_0,40000.0,0,40000.0,0,2,8,302.5,44.0,3.33,0,1,3899.55372762733,3899.55372762733,0.0 1787,9446,9445,0,0,91,111,72,70,0,8732,0,0,0,190,0,2,0,1,1.0,2356.75553677,0,0,12559.0,5,3,5,4,1,0,0,0,0,0,1,0,0,1,0,0,12559.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1788,9448,9447,6,13,42,221,48,50,0,8734,0,15,0,0,2,4,2,4,2.3,2123.88625649,5200,0,23618.0,1,3,1,1,4,2,0,1,0,1,0,0,0,1,0,2,10268.695652200002,2,1,2_1,2_0,14000.0,0,14000.0,0,9,14,51.7,30.0,9.9,0,1,1364.8438046695653,1364.8438046695653,0.0 +1788,9448,9447,6,13,42,221,48,50,0,8734,0,15,0,0,2,4,2,4,2.3,2123.88625649,5200,0,23618.0,1,3,1,1,4,2,0,1,0,1,0,0,0,1,0,2,10268.6956522,2,1,2_1,2_0,14000.0,0,14000.0,0,9,14,51.7,30.0,9.9,0,1,1364.8438046695653,1364.8438046695653,0.0 1789,9459,9458,4,4,54,111,62,50,0,8753,0,0,0,490,1,4,1,3,1.8,2133.36503858,0,0,21471.0,1,3,7,6,4,1,0,0,0,0,1,0,0,0,0,1,11928.3333333,2,1,2_0,2_0,7287.0,0,7287.0,0,1,2,0.0,10.0,3.3,0,1,710.4012003305088,710.4012003305088,0.0 -1790,9478,9477,0,0,51,111,85,70,0,8786,0,0,0,0,0,6,0,1,1.0,1700.5783137000003,0,0,10132.0,7,1,5,4,1,0,0,0,0,0,1,0,0,0,0,0,10132.0,2,1,2_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 +1790,9478,9477,0,0,51,111,85,70,0,8786,0,0,0,0,0,6,0,1,1.0,1700.5783137,0,0,10132.0,7,1,5,4,1,0,0,0,0,0,1,0,0,0,0,0,10132.0,2,1,2_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 1791,9499,9498,11,13,58,111,77,50,0,8813,0,0,0,0,0,7,0,2,1.5,2825.35292521,0,0,18066.0,5,1,4,3,3,1,0,0,0,1,0,0,0,0,0,1,12044.0,2,1,2_0,2_0,2000.0,0,2000.0,0,14,14,0.0,0.0,0.0,0,0,194.9776863813665,194.9776863813665,0.0 1792,9511,9510,16,16,83,112,72,71,0,8831,0,0,0,0,0,3,0,2,1.5,3105.03777649,0,0,15520.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,0,1,10346.6666667,2,1,2_0,2_1,7500.0,0,7500.0,0,14,14,0.0,0.0,0.0,0,0,747.3501975040583,747.3501975040583,0.0 1793,9516,9515,0,0,75,111,77,70,0,8837,0,0,0,250,0,3,0,1,1.0,3077.45219152,0,0,10069.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,10069.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1794,9541,9540,0,0,86,400,71,70,0,8871,0,0,0,0,0,4,0,2,1.5,1744.58424225,0,0,17677.0,5,1,0,0,5,0,0,0,1,0,0,0,0,0,0,0,11784.6666667,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1795,9549,9548,0,0,21,212,68,60,0,8881,0,0,0,110,1,4,1,3,1.8,2769.68243228,0,0,17840.0,1,3,1,0,4,0,0,0,1,0,0,0,0,1,0,0,9911.11111111,2,1,2_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 -1796,9552,9551,1,1,34,111,68,71,1,8886,0,350,0,202,1,4,4,6,2.7,3620.74822741,5836,14900,31776.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,0,1,11768.888888899999,2,1,2_1,2_0,6244.0,0,6244.0,0,1,4,34.0,25.0,3.3,0,1,608.7203368826262,608.7203368826262,0.0 -1797,9553,9552,2,16,55,221,75,44,0,8887,0,0,0,0,1,3,2,4,2.1,4771.30985762,1560,0,24365.0,4,3,1,2,4,2,1,0,0,1,0,0,0,1,1,1,11602.380952399999,2,1,2_1,2_0,30000.0,0,20000.0,10000,12,18,184.6,42.5,3.3,0,1,2924.6652957204974,1949.776863813665,974.8884319068325 +1796,9552,9551,1,1,34,111,68,71,1,8886,0,350,0,202,1,4,4,6,2.7,3620.74822741,5836,14900,31776.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,0,1,11768.8888889,2,1,2_1,2_0,6244.0,0,6244.0,0,1,4,34.0,25.0,3.3,0,1,608.7203368826262,608.7203368826262,0.0 +1797,9553,9552,2,16,55,221,75,44,0,8887,0,0,0,0,1,3,2,4,2.1,4771.30985762,1560,0,24365.0,4,3,1,2,4,2,1,0,0,1,0,0,0,1,1,1,11602.3809524,2,1,2_1,2_0,30000.0,0,20000.0,10000,12,18,184.6,42.5,3.3,0,1,2924.6652957204974,1949.776863813665,974.8884319068325 1798,9554,9553,0,0,84,111,78,70,0,8888,0,0,0,0,0,3,0,1,1.0,3258.84210825,0,0,10890.0,5,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,10890.0,2,1,2_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 1799,9562,9561,2,18,56,111,52,71,0,89,0,200,0,244,1,4,1,3,2.0,4320.82180945,1040,0,21430.0,1,3,7,5,4,1,1,1,0,0,1,0,0,1,0,1,10715.0,2,1,2_1,2_0,3000.0,0,3000.0,0,14,14,249.0,50.0,1.1,0,0,292.46652957204975,292.46652957204975,0.0 1800,9573,9572,0,15,58,120,22,50,2,8912,0,0,0,262,1,3,0,1,1.0,2930.22574376,3130,3850,12076.0,1,3,0,0,1,1,1,0,1,0,0,0,0,1,0,1,12076.0,2,1,2_1,2_1,11747.0,0,11747.0,0,11,15,16.8,20.0,3.31,1,0,1170.5497026773564,1170.5497026773564,0.0 -1801,9579,9578,4,5,47,111,65,50,0,8923,0,190,0,0,1,5,2,4,2.3,1588.05708138,3380,0,22759.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,9895.217391299999,2,1,2_0,2_0,10000.0,0,10000.0,0,3,6,180.0,98.0,3.3,0,1,974.8884319068325,974.8884319068325,0.0 +1801,9579,9578,4,5,47,111,65,50,0,8923,0,190,0,0,1,5,2,4,2.3,1588.05708138,3380,0,22759.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,9895.2173913,2,1,2_0,2_0,10000.0,0,10000.0,0,3,6,180.0,98.0,3.3,0,1,974.8884319068325,974.8884319068325,0.0 1802,9587,9586,0,17,40,211,85,71,0,8934,0,0,0,0,0,1,0,1,1.0,4028.1155611,1300,0,11487.0,7,3,1,2,1,1,0,0,0,1,0,0,0,1,0,1,11487.0,2,1,2_1,2_0,11445.0,0,11445.0,0,1,14,0.0,0.0,0.0,0,0,1115.7598103173698,1115.7598103173698,0.0 1803,9590,9589,0,0,55,112,22,71,0,894,0,0,0,0,2,5,0,2,1.5,2727.27614638,5044,0,16361.0,1,1,7,0,3,0,0,0,1,0,0,0,0,0,0,0,10907.3333333,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1804,9593,9592,5,12,53,111,54,71,0,8944,0,0,0,0,1,3,0,1,1.0,2832.7722923,2080,0,10506.0,4,3,6,5,1,1,0,0,0,0,1,0,0,1,1,0,10506.0,2,1,2_1,2_0,6500.0,0,0.0,6500,12,12,0.0,0.0,0.0,0,0,633.6774807394412,0.0,633.6774807394412 1805,9610,9609,5,8,55,111,35,12,0,8970,0,350,0,0,1,4,3,4,2.5,2372.57549328,4160,0,27293.0,1,3,9,7,2,1,1,1,0,0,0,1,0,0,0,1,10917.2,2,1,2_0,2_0,40000.0,0,40000.0,0,2,8,302.5,44.0,3.33,0,1,3899.55372762733,3899.55372762733,0.0 1806,9618,9617,0,0,38,221,85,71,0,8982,0,0,0,0,0,4,2,3,1.8,3988.83701956,0,0,17509.0,6,3,1,1,2,0,0,0,0,1,0,0,0,1,0,0,9727.22222222,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1807,9632,9631,15,16,37,111,22,12,0,9,0,0,0,0,2,5,2,4,2.1,2321.91111497,710,0,21807.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,10384.285714299998,2,1,2_0,2_0,24353.0,0,24353.0,0,12,14,0.0,0.0,0.0,0,1,2374.1457982227093,2374.1457982227093,0.0 +1807,9632,9631,15,16,37,111,22,12,0,9,0,0,0,0,2,5,2,4,2.1,2321.91111497,710,0,21807.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,10384.2857143,2,1,2_0,2_0,24353.0,0,24353.0,0,12,14,0.0,0.0,0.0,0,1,2374.1457982227093,2374.1457982227093,0.0 1808,9661,9660,2,2,63,400,22,50,0,9032,0,0,0,0,1,6,0,2,1.5,1337.45222101,4237,0,16022.0,1,2,0,0,3,1,0,0,1,0,0,0,0,0,0,1,10681.3333333,2,1,2_0,2_1,20000.0,0,20000.0,0,3,3,39.5,70.0,3.3,0,1,1992.9338600108222,1992.9338600108222,0.0 1809,9691,9690,8,11,84,111,77,70,0,9077,0,0,0,0,0,2,0,1,1.0,2729.12422622,0,0,10490.0,5,3,6,5,1,1,0,0,0,0,1,0,0,1,1,0,10490.0,2,1,2_1,2_0,2000.0,0,0.0,2000,6,13,0.0,0.0,0.0,0,0,194.9776863813665,0.0,194.9776863813665 1810,9703,9702,1,3,63,111,22,50,0,9090,0,0,0,0,1,6,1,3,2.0,3906.03160077,0,0,22314.0,1,1,7,5,4,1,0,0,0,0,1,0,0,0,1,0,11157.0,2,1,2_0,2_0,10000.0,0,0.0,10000,4,4,0.0,0.0,0.0,0,0,974.8884319068325,0.0,974.8884319068325 @@ -1815,11 +1815,11 @@ 1813,9721,9720,0,4,49,111,85,50,0,9114,0,0,0,0,0,4,0,1,1.0,3350.92405698,3276,0,10764.0,7,4,8,7,1,1,0,0,0,0,0,1,0,1,0,1,10764.0,2,1,2_1,2_0,14818.0,0,14818.0,0,8,0,0.0,0.0,0.0,0,0,1444.5896783995443,1444.5896783995443,0.0 1814,9735,9734,0,0,46,111,85,20,0,9137,0,0,0,354,0,1,0,1,1.0,3073.56416532,0,0,11527.0,7,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,11527.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1815,9749,9748,4,21,36,211,68,60,0,9153,0,0,0,0,1,2,0,1,1.0,3155.35539581,1560,0,11192.0,1,3,2,3,1,1,0,0,0,1,0,0,0,1,0,1,11192.0,2,1,2_1,2_0,6000.0,0,6000.0,0,9,21,0.0,18.0,3.31,0,1,584.9330591440995,584.9330591440995,0.0 -1816,9762,9761,6,19,44,111,85,70,0,9170,0,0,0,0,0,4,5,6,2.5,1581.9618679999999,791,0,26010.0,6,3,10,8,2,1,0,0,0,0,0,0,1,1,0,1,10404.0,2,1,2_1,2_0,4101.0,0,4101.0,0,1,17,20.5,12.333333333299999,3.3,0,1,399.80174592499196,399.80174592499196,0.0 -1817,9794,9793,6,10,29,111,85,60,0,9213,0,30,0,202,1,3,2,4,2.1,2902.28140172,2600,0,22940.0,4,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,10923.809523799999,2,1,2_1,2_0,12336.0,0,12336.0,0,2,9,73.0,20.0,3.3,0,1,1202.6223696002685,1202.6223696002685,0.0 +1816,9762,9761,6,19,44,111,85,70,0,9170,0,0,0,0,0,4,5,6,2.5,1581.961868,791,0,26010.0,6,3,10,8,2,1,0,0,0,0,0,0,1,1,0,1,10404.0,2,1,2_1,2_0,4101.0,0,4101.0,0,1,17,20.5,12.3333333333,3.3,0,1,399.80174592499196,399.80174592499196,0.0 +1817,9794,9793,6,10,29,111,85,60,0,9213,0,30,0,202,1,3,2,4,2.1,2902.28140172,2600,0,22940.0,4,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,10923.8095238,2,1,2_1,2_0,12336.0,0,12336.0,0,2,9,73.0,20.0,3.3,0,1,1202.6223696002685,1202.6223696002685,0.0 1818,9799,9798,0,0,61,111,78,71,0,9222,0,0,0,220,0,2,0,1,1.0,2799.3441084,0,0,12083.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,12083.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1819,9801,9800,14,14,88,112,78,71,0,9225,0,0,0,0,0,5,0,1,1.0,3133.16179904,0,0,11165.0,5,4,8,0,1,1,0,0,1,0,0,0,0,0,1,0,11165.0,2,1,2_0,2_1,6000.0,0,0.0,6000,11,16,0.0,0.0,0.0,0,0,597.8801580032467,0.0,597.8801580032467 -1820,9808,9807,10,10,39,111,64,42,0,9246,0,250,0,0,1,4,4,7,3.2,903.7587243139999,4940,0,38926.0,1,2,9,7,5,2,0,1,0,0,0,1,0,1,0,2,12164.375,2,1,2_1,2_0,15000.0,0,15000.0,0,7,10,0.0,0.0,0.0,0,1,1462.3326478602487,1462.3326478602487,0.0 +1820,9808,9807,10,10,39,111,64,42,0,9246,0,250,0,0,1,4,4,7,3.2,903.758724314,4940,0,38926.0,1,2,9,7,5,2,0,1,0,0,0,1,0,1,0,2,12164.375,2,1,2_1,2_0,15000.0,0,15000.0,0,7,10,0.0,0.0,0.0,0,1,1462.3326478602487,1462.3326478602487,0.0 1821,9809,9808,0,12,42,111,46,50,2,9247,0,0,0,371,1,3,1,2,1.5,3297.35786671,0,600,16715.0,1,3,9,7,2,1,0,0,0,0,0,1,0,1,1,0,11143.3333333,2,1,2_1,2_0,1000.0,0,0.0,1000,12,12,0.0,5.0,0.0,0,1,97.48884319068326,0.0,97.48884319068326 1822,9813,9812,0,7,56,120,63,71,0,9252,0,200,0,210,2,4,1,3,2.0,3622.05820863,3536,0,23536.0,1,3,0,3,5,1,0,1,0,1,0,0,0,1,0,1,11768.0,2,1,2_1,2_0,17102.0,0,17102.0,0,4,10,0.0,3.33333333333,0.0,0,1,1667.2541962470648,1667.2541962470648,0.0 1823,9830,9829,5,5,66,400,78,60,0,9276,0,0,0,0,0,4,0,2,1.5,2814.27234092,1717,0,18438.0,5,2,0,0,3,2,0,0,1,0,0,0,0,0,2,0,12292.0,2,1,2_0,2_1,6000.0,0,0.0,6000,7,7,0.0,0.0,0.0,0,0,597.8801580032467,0.0,597.8801580032467 @@ -1827,17 +1827,17 @@ 1825,9844,9843,0,0,85,400,71,70,0,9292,0,0,0,0,0,5,0,1,1.0,2287.70288214,0,0,12376.0,5,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,12376.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1826,9859,9858,1,14,50,400,63,50,2,9320,0,300,0,0,2,6,0,2,1.5,2691.45259761,3692,1500,17729.0,1,2,0,0,3,2,0,1,1,0,0,0,0,0,0,2,11819.3333333,2,1,2_0,2_1,15000.0,0,15000.0,0,7,12,0.0,0.0,0.0,1,0,1494.7003950081166,1494.7003950081166,0.0 1827,9876,9875,3,3,67,111,71,70,0,9343,0,0,0,0,0,2,0,1,1.0,1923.81555269,0,0,9838.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,0,1,9838.0,2,1,2_0,2_0,15000.0,0,15000.0,0,2,3,0.0,0.0,0.0,0,0,1462.3326478602487,1462.3326478602487,0.0 -1828,9877,9876,2,22,32,212,42,20,0,9344,0,300,80,0,2,6,2,4,2.1,1680.26879978,1560,0,26216.0,1,2,1,0,4,3,0,1,1,0,0,0,0,0,1,2,12483.809523799999,2,1,2_0,2_1,17343.0,0,17343.0,0,1,17,155.0,20.0,3.3,0,1,1728.1725967083844,1728.1725967083844,0.0 +1828,9877,9876,2,22,32,212,42,20,0,9344,0,300,80,0,2,6,2,4,2.1,1680.26879978,1560,0,26216.0,1,2,1,0,4,3,0,1,1,0,0,0,0,0,1,2,12483.8095238,2,1,2_0,2_1,17343.0,0,17343.0,0,1,17,155.0,20.0,3.3,0,1,1728.1725967083844,1728.1725967083844,0.0 1829,9883,9882,5,12,33,300,85,42,0,9356,0,0,80,0,1,3,2,4,2.1,2124.97005121,1041,0,24815.0,6,3,0,0,4,1,0,1,1,0,0,0,0,1,1,0,11816.6666667,2,1,2_1,2_1,10000.0,0,0.0,10000,5,11,81.6,12.25,3.3,0,1,996.4669300054111,0.0,996.4669300054111 1830,9898,9897,0,0,50,211,85,50,0,9374,0,0,0,0,0,3,0,1,1.0,1675.04115686,0,0,9930.0,7,4,4,4,1,0,0,0,0,0,1,0,0,0,0,0,9930.0,2,1,2_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 1831,9910,9909,2,8,63,111,78,70,0,9387,0,700,0,0,1,4,2,4,2.5,2243.84260891,2485,0,27959.0,5,2,6,4,4,3,0,0,0,0,1,0,0,1,1,2,11183.6,2,1,2_1,2_0,10000.0,0,10000.0,0,4,10,0.0,0.0,0.0,0,0,974.8884319068325,974.8884319068325,0.0 1832,9920,9919,5,5,74,212,71,71,0,9399,0,0,0,0,0,4,0,2,1.5,1730.56183127,0,0,18390.0,5,1,3,0,3,1,0,0,1,0,0,0,0,0,1,0,12260.0,2,1,2_0,2_1,10000.0,0,0.0,10000,6,6,0.0,0.0,0.0,0,0,996.4669300054111,0.0,996.4669300054111 -1833,9926,9925,0,0,44,111,85,50,0,9410,0,0,0,64,0,1,0,1,1.0,3851.9223067000003,0,0,12062.0,7,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,12062.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1833,9926,9925,0,0,44,111,85,50,0,9410,0,0,0,64,0,1,0,1,1.0,3851.9223067,0,0,12062.0,7,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,12062.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1834,9932,9931,1,10,34,300,64,60,2,942,0,0,60,0,1,7,3,5,2.4,4138.52870487,0,3700,26331.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,1,1,10971.25,2,1,2_0,2_1,10402.0,0,6859.0,3543,1,5,0.0,0.0,0.0,0,1,1036.5249005916287,683.4766672907115,353.04823330091716 1835,9933,9932,0,0,35,400,68,41,0,9423,0,0,0,0,1,1,1,2,1.3,2432.6609969,4152,0,14734.0,1,1,0,0,2,0,0,0,1,0,0,0,0,0,0,0,11333.8461538,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1836,9946,9945,0,9,68,112,78,50,0,9443,0,0,0,238,0,1,0,1,1.0,4706.15262806,0,0,12198.0,5,3,7,0,1,1,0,0,1,0,0,0,0,1,0,1,12198.0,2,1,2_1,2_1,10000.0,0,10000.0,0,8,8,0.0,0.0,0.0,0,0,996.4669300054111,996.4669300054111,0.0 1837,9974,9973,0,0,64,111,75,70,0,9485,0,0,0,286,0,2,0,1,1.0,2515.06205316,0,0,12370.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,12370.0,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1838,9999,9998,9,9,49,111,47,50,0,9515,0,0,0,0,2,3,1,3,1.8,3443.25873478,1560,0,20528.0,1,4,8,6,4,1,0,0,0,0,1,0,0,0,0,1,11404.444444399998,2,1,2_0,2_0,50000.0,0,50000.0,0,2,8,0.0,6.666666666669999,0.0,0,1,4874.442159534163,4874.442159534163,0.0 +1838,9999,9998,9,9,49,111,47,50,0,9515,0,0,0,0,2,3,1,3,1.8,3443.25873478,1560,0,20528.0,1,4,8,6,4,1,0,0,0,0,1,0,0,0,0,1,11404.4444444,2,1,2_0,2_0,50000.0,0,50000.0,0,2,8,0.0,6.66666666667,0.0,0,1,4874.442159534163,4874.442159534163,0.0 1839,10002,10001,1,19,68,111,22,71,0,9519,0,400,0,0,1,5,0,2,1.5,3361.68143108,3640,0,14473.0,1,1,8,7,3,1,0,1,0,0,0,1,0,0,0,1,9648.66666667,2,1,2_0,2_0,4000.0,0,4000.0,0,8,18,0.0,0.0,0.0,0,0,389.955372762733,389.955372762733,0.0 1840,10007,10006,12,12,68,111,72,71,0,9526,0,0,0,0,0,4,0,1,1.0,3212.75450693,1820,0,9840.0,5,4,9,7,1,1,0,0,0,0,0,1,0,0,1,0,9840.0,2,1,2_0,2_0,10000.0,0,0.0,10000,4,11,0.0,0.0,0.0,0,0,974.8884319068325,0.0,974.8884319068325 1841,10009,10008,0,0,43,211,68,50,0,9529,0,0,0,0,2,4,0,2,1.5,3243.27758238,0,0,18124.0,1,3,2,3,3,0,0,0,0,1,0,0,0,1,0,0,12082.6666667,2,1,2_1,2_0,0.0,0,0.0,0,0,0,78.5,45.0,2.22,0,0,0.0,0.0,0.0 @@ -1862,23 +1862,23 @@ 1860,10182,10181,0,0,79,111,78,71,0,9770,0,0,0,341,0,4,0,2,1.5,3640.29583211,0,0,17214.0,5,3,8,7,3,0,0,0,0,0,0,1,0,0,0,0,11476.0,2,1,2_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 1861,10195,10194,0,0,28,111,54,50,0,9790,0,0,0,260,2,2,0,2,1.5,3462.56618284,0,0,16499.0,1,3,9,7,3,0,0,0,0,0,0,1,0,1,0,0,10999.3333333,2,1,2_1,2_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1862,10196,10195,0,0,44,111,63,50,0,9791,0,0,0,190,1,1,0,1,1.0,3251.13679868,0,0,11210.0,4,3,6,5,1,0,0,0,0,0,1,0,0,0,0,0,11210.0,2,1,2_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 -1863,10207,10206,2,5,45,111,52,50,0,9808,0,50,0,660,1,5,3,4,2.1,1516.6800537000001,2860,0,25950.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,12357.142857100001,2,1,2_1,2_0,9000.0,0,9000.0,0,4,6,0.0,0.0,0.0,0,0,877.3995887161492,877.3995887161492,0.0 +1863,10207,10206,2,5,45,111,52,50,0,9808,0,50,0,660,1,5,3,4,2.1,1516.6800537,2860,0,25950.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,12357.1428571,2,1,2_1,2_0,9000.0,0,9000.0,0,4,6,0.0,0.0,0.0,0,0,877.3995887161492,877.3995887161492,0.0 1864,10222,10221,15,20,50,111,85,50,0,983,0,0,0,240,0,2,0,1,1.0,2988.36912308,5541,0,12354.0,7,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,12354.0,2,1,2_1,2_0,3000.0,0,0.0,3000,11,16,0.0,0.0,0.0,0,0,292.46652957204975,0.0,292.46652957204975 1865,10226,10225,0,0,29,111,63,50,0,9835,0,0,0,0,2,1,0,2,1.5,3793.63679196,0,0,17984.0,1,3,10,8,3,0,0,0,0,0,0,0,1,1,0,0,11989.3333333,2,1,2_1,2_0,0.0,0,0.0,0,0,0,42.0,40.0,5.52,0,0,0.0,0.0,0.0 1866,10228,10227,1,16,61,300,78,50,2,9838,0,0,0,0,0,5,0,2,1.5,2294.22080901,2012,900,17184.0,5,1,0,0,5,2,0,0,1,0,0,0,0,0,1,1,11456.0,2,1,2_0,2_1,800.0,0,400.0,400,14,15,0.0,0.0,0.0,0,0,79.71735440043288,39.85867720021644,39.85867720021644 1867,10232,10231,6,11,61,111,77,70,0,9846,0,0,0,185,0,2,0,1,1.0,2742.57243358,1040,0,10055.0,5,3,6,4,1,1,0,0,0,0,1,0,0,0,1,0,10055.0,2,1,2_0,2_0,16000.0,0,0.0,16000,4,11,0.0,0.0,0.0,0,0,1559.821491050932,0.0,1559.821491050932 1868,10262,10261,0,0,81,300,86,71,0,989,0,0,0,0,0,5,0,1,1.0,4354.74032147,0,0,11870.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,11870.0,2,1,2_0,2_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1869,10285,10284,8,8,76,400,71,71,0,9918,0,0,0,0,0,5,0,2,1.5,1699.33903312,0,0,16987.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,11324.6666667,2,1,2_0,2_1,10000.0,0,0.0,10000,7,10,0.0,0.0,0.0,0,0,996.4669300054111,0.0,996.4669300054111 -1870,10289,10288,21,21,74,221,78,71,0,9921,0,0,0,0,0,5,0,1,1.0,4114.9820119999995,1300,0,10488.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,1,0,10488.0,2,1,2_0,2_0,5891.0,0,0.0,5891,16,16,0.0,0.0,0.0,0,0,574.3067752363149,0.0,574.3067752363149 -1871,10292,10291,15,15,78,111,75,70,0,9925,0,0,0,0,0,4,0,2,1.5,989.0551717469999,0,0,17171.0,5,4,9,7,3,1,0,0,0,0,0,1,0,0,1,0,11447.3333333,2,1,2_0,2_0,1000.0,0,0.0,1000,15,15,0.0,0.0,0.0,0,0,97.48884319068326,0.0,97.48884319068326 -1872,10301,10300,2,2,43,400,22,12,0,9937,0,0,0,0,1,6,2,4,2.1,2267.5100285,2689,0,23430.0,1,1,0,0,4,1,0,0,1,0,0,0,0,0,0,1,11157.142857100001,2,1,2_0,2_1,32343.0,0,32343.0,0,2,2,235.0,25.0,0.0,0,1,3222.8729917165015,3222.8729917165015,0.0 +1870,10289,10288,21,21,74,221,78,71,0,9921,0,0,0,0,0,5,0,1,1.0,4114.982012,1300,0,10488.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,1,0,10488.0,2,1,2_0,2_0,5891.0,0,0.0,5891,16,16,0.0,0.0,0.0,0,0,574.3067752363149,0.0,574.3067752363149 +1871,10292,10291,15,15,78,111,75,70,0,9925,0,0,0,0,0,4,0,2,1.5,989.055171747,0,0,17171.0,5,4,9,7,3,1,0,0,0,0,0,1,0,0,1,0,11447.3333333,2,1,2_0,2_0,1000.0,0,0.0,1000,15,15,0.0,0.0,0.0,0,0,97.48884319068326,0.0,97.48884319068326 +1872,10301,10300,2,2,43,400,22,12,0,9937,0,0,0,0,1,6,2,4,2.1,2267.5100285,2689,0,23430.0,1,1,0,0,4,1,0,0,1,0,0,0,0,0,0,1,11157.1428571,2,1,2_0,2_1,32343.0,0,32343.0,0,2,2,235.0,25.0,0.0,0,1,3222.8729917165015,3222.8729917165015,0.0 1873,10303,10302,2,11,31,111,56,50,0,9939,0,99999,0,516,1,4,3,5,2.4,3296.72223469,2600,0,26936.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,0,1,11223.3333333,2,1,2_1,2_0,17226.0,0,17226.0,0,2,13,0.0,6.0,1.1,0,0,1679.3428128027097,1679.3428128027097,0.0 1874,10318,10317,0,0,59,111,52,50,0,9961,0,0,0,0,1,1,0,1,1.0,2435.3268735,0,0,9877.0,1,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,9877.0,2,1,2_0,2_0,0.0,0,0.0,0,0,0,0.0,80.0,5.5,0,0,0.0,0.0,0.0 1875,10335,10334,13,13,38,112,11,42,0,9989,0,0,0,0,2,5,2,4,2.1,3076.02510412,2549,0,23859.0,1,4,8,0,4,1,1,0,1,0,0,0,0,0,0,1,11361.4285714,2,1,2_0,2_1,14400.0,0,14400.0,0,5,12,0.0,13.75,0.0,0,1,1434.912379207792,1434.912379207792,0.0 1876,10336,10335,0,0,39,111,56,31,0,999,0,0,0,0,1,1,0,1,1.0,4184.95025134,0,0,11370.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,11370.0,2,1,2_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 -1877,11,10,0,0,77,111,78,70,0,1001,0,0,0,0,0,4,0,2,1.5,2693.91186601,0,0,21626.0,5,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,14417.333333300001,3,2,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 +1877,11,10,0,0,77,111,78,70,0,1001,0,0,0,0,0,4,0,2,1.5,2693.91186601,0,0,21626.0,5,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,14417.3333333,3,2,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 1878,18,17,17,17,73,221,77,70,0,10019,0,0,0,201,0,2,0,1,1.0,2292.47768159,0,0,14226.0,5,3,1,3,1,1,0,0,0,1,0,0,0,0,1,0,14226.0,3,2,3_0,3_0,15000.0,0,0.0,15000,6,17,0.0,0.0,0.0,0,0,1456.673048072077,0.0,1456.673048072077 -1879,28,27,2,19,54,112,62,60,0,10030,0,0,288,0,2,4,1,2,1.5,1846.93849003,3640,0,20569.0,1,1,7,1,2,2,0,1,0,1,0,0,0,0,2,0,13712.666666699999,3,2,3_0,3_0,8000.0,0,0.0,8000,4,18,348.1,58.3333333333,3.3,0,1,776.8922923051077,0.0,776.8922923051077 +1879,28,27,2,19,54,112,62,60,0,10030,0,0,288,0,2,4,1,2,1.5,1846.93849003,3640,0,20569.0,1,1,7,1,2,2,0,1,0,1,0,0,0,0,2,0,13712.6666667,3,2,3_0,3_0,8000.0,0,0.0,8000,4,18,348.1,58.3333333333,3.3,0,1,776.8922923051077,0.0,776.8922923051077 1880,38,37,0,0,86,111,77,71,0,10041,0,0,0,0,0,3,0,1,1.0,2729.04488745,0,0,14326.0,5,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,14326.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1881,39,38,6,23,46,112,52,50,0,10043,0,180,0,0,1,4,1,2,1.3,2196.35156307,0,0,16354.0,1,3,6,0,2,1,0,1,1,0,0,0,0,1,0,1,12580.0,3,2,3_1,3_1,15000.0,0,15000.0,0,3,15,96.0,40.0,3.3,0,1,1760.0813208711575,1760.0813208711575,0.0 1882,56,55,0,0,91,111,75,50,0,10067,0,0,0,0,0,3,0,1,1.0,3766.71401774,0,0,14360.0,5,4,8,6,1,0,0,0,0,0,1,0,0,0,0,0,14360.0,3,2,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 @@ -1888,58 +1888,58 @@ 1886,83,82,0,0,64,221,78,71,0,10108,0,0,0,176,0,4,0,2,1.5,5067.62731283,0,0,19040.0,5,3,1,2,3,0,0,0,0,1,0,0,0,1,0,0,12693.3333333,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1887,115,114,0,0,94,111,77,71,0,1015,0,0,0,128,0,3,0,1,1.0,3213.33945028,0,0,14004.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,14004.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1888,140,139,5,5,27,120,54,50,0,10185,0,500,0,0,1,4,1,3,2.0,4921.79604832,0,0,29563.0,1,1,0,3,4,2,0,1,0,1,0,0,0,0,0,2,14781.5,3,2,3_0,3_0,19001.0,0,19001.0,0,1,10,0.0,30.0,0.0,0,1,1845.216305761169,1845.216305761169,0.0 -1889,151,150,11,12,74,111,72,42,0,1020,0,0,0,0,0,4,0,1,1.0,5584.1145265000005,1040,0,12767.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,0,1,12767.0,3,2,3_0,3_0,4500.0,0,4500.0,0,4,5,0.0,0.0,0.0,0,0,437.00191442162316,437.00191442162316,0.0 +1889,151,150,11,12,74,111,72,42,0,1020,0,0,0,0,0,4,0,1,1.0,5584.1145265,1040,0,12767.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,0,1,12767.0,3,2,3_0,3_0,4500.0,0,4500.0,0,4,5,0.0,0.0,0.0,0,0,437.00191442162316,437.00191442162316,0.0 1890,155,154,10,14,52,111,52,71,0,10203,0,70,0,0,1,4,0,2,1.5,2637.29532858,1716,0,21846.0,1,1,7,5,3,2,0,1,0,0,1,0,0,0,0,2,14564.0,3,2,3_0,3_0,4500.0,0,4500.0,0,15,15,0.0,10.0,3.3,0,1,437.00191442162316,437.00191442162316,0.0 1891,173,172,5,6,73,112,71,70,0,10233,0,0,0,0,1,4,1,3,2.0,879.703949523,1040,0,26821.0,5,1,6,0,4,3,0,0,1,0,0,0,0,0,1,2,13410.5,3,2,3_0,3_1,5000.0,0,5000.0,0,8,8,0.0,0.0,0.0,0,0,586.6937736237192,586.6937736237192,0.0 1892,177,176,2,21,45,111,56,71,0,1024,0,0,99999,0,3,4,4,5,2.8,2526.87594398,0,0,40269.0,4,3,6,5,2,1,0,1,0,0,1,0,0,1,1,0,14381.7857143,3,2,3_1,3_0,2000.0,0,0.0,2000,9,13,41.2,54.8,3.3,0,1,194.22307307627693,0.0,194.22307307627693 1893,183,182,0,0,94,211,86,71,0,10245,0,0,0,0,0,2,0,1,1.0,3836.73593246,0,0,14298.0,6,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,14298.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1894,192,191,0,13,29,111,42,10,0,1026,0,200,0,450,1,1,0,1,1.0,3367.48059926,2288,0,14710.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,14710.0,3,2,3_0,3_0,8000.0,0,8000.0,0,4,14,0.0,20.0,1.1,0,0,776.8922923051077,776.8922923051077,0.0 -1895,206,205,1,3,59,111,56,20,0,10278,0,0,0,0,1,5,1,2,1.5,1779.2412092999998,0,0,19992.0,1,1,7,5,2,1,0,0,0,0,1,0,0,0,0,1,13328.0,3,2,3_0,3_0,11236.0,0,11236.0,0,2,3,0.0,0.0,0.0,0,1,1091.145224542524,1091.145224542524,0.0 +1895,206,205,1,3,59,111,56,20,0,10278,0,0,0,0,1,5,1,2,1.5,1779.2412093,0,0,19992.0,1,1,7,5,2,1,0,0,0,0,1,0,0,0,0,1,13328.0,3,2,3_0,3_0,11236.0,0,11236.0,0,2,3,0.0,0.0,0.0,0,1,1091.145224542524,1091.145224542524,0.0 1896,212,211,0,0,56,111,48,71,0,10288,0,0,0,125,1,2,0,1,1.0,2601.07695488,0,0,13688.0,1,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13688.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1897,221,220,3,8,73,400,77,50,0,103,0,0,0,153,0,3,0,1,1.0,3213.44354688,0,0,12636.0,5,3,0,0,1,1,0,0,1,0,0,0,0,0,1,0,12636.0,3,2,3_0,3_1,10000.0,0,0.0,10000,7,7,0.0,0.0,0.0,0,0,1173.3875472474383,0.0,1173.3875472474383 1898,224,223,0,23,57,300,55,70,0,10303,0,99999,0,0,1,4,0,1,1.0,1340.78508221,3380,0,13880.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,1,13880.0,3,2,3_0,3_1,5000.0,0,5000.0,0,4,13,0.0,0.0,0.0,0,1,586.6937736237192,586.6937736237192,0.0 1899,225,224,11,13,72,112,78,70,0,10304,0,0,0,0,0,6,0,2,1.5,1871.23169652,2237,0,19733.0,5,1,7,2,3,2,0,0,0,1,0,0,0,0,1,1,13155.3333333,3,2,3_0,3_0,17000.0,0,15000.0,2000,8,14,0.0,0.0,0.0,0,0,1650.896121148354,1456.673048072077,194.22307307627693 -1900,242,241,0,11,65,112,71,50,2,10327,0,0,0,0,0,7,0,2,1.5,1556.83161084,0,1400,20534.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,2,0,13689.333333300001,3,2,3_0,3_1,6000.0,0,0.0,6000,11,11,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 +1900,242,241,0,11,65,112,71,50,2,10327,0,0,0,0,0,7,0,2,1.5,1556.83161084,0,1400,20534.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,2,0,13689.3333333,3,2,3_0,3_1,6000.0,0,0.0,6000,11,11,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 1901,249,248,0,0,82,112,78,71,0,10336,0,0,0,0,0,2,0,1,1.0,3078.26523275,0,0,12870.0,5,3,9,1,1,0,0,0,0,1,0,0,0,1,0,0,12870.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1902,254,253,19,19,73,300,78,71,0,10344,0,0,0,0,0,5,0,2,1.5,2393.48278357,0,0,21107.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,14071.333333300001,3,2,3_0,3_1,7000.0,0,5000.0,2000,26,26,0.0,0.0,0.0,0,0,821.3712830732069,586.6937736237192,234.67750944948767 +1902,254,253,19,19,73,300,78,71,0,10344,0,0,0,0,0,5,0,2,1.5,2393.48278357,0,0,21107.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,14071.3333333,3,2,3_0,3_1,7000.0,0,5000.0,2000,26,26,0.0,0.0,0.0,0,0,821.3712830732069,586.6937736237192,234.67750944948767 1903,264,263,3,5,49,211,47,50,0,10363,0,0,0,460,2,4,1,3,2.0,925.478154343,2886,0,26752.0,1,3,3,4,4,1,0,0,0,0,1,0,0,0,1,0,13376.0,3,2,3_0,3_0,9000.0,0,0.0,9000,4,4,0.0,47.3333333333,5.55,0,0,874.0038288432463,0.0,874.0038288432463 1904,265,264,8,21,76,300,71,71,0,10364,0,0,0,0,0,4,0,2,1.5,3232.25519484,0,0,19503.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,13002.0,3,2,3_0,3_1,5117.0,0,0.0,5117,18,21,0.0,0.0,0.0,0,0,600.4224079265142,0.0,600.4224079265142 -1905,274,273,0,6,26,400,62,50,2,10374,0,250,0,0,2,4,2,4,2.1,2561.0814284000003,0,4800,28767.0,1,2,0,0,4,1,0,1,1,0,0,0,0,1,0,1,13698.571428600002,3,2,3_1,3_1,17343.0,0,17343.0,0,1,10,113.0,25.0,2.22,0,1,2035.0060231912323,2035.0060231912323,0.0 +1905,274,273,0,6,26,400,62,50,2,10374,0,250,0,0,2,4,2,4,2.1,2561.0814284,0,4800,28767.0,1,2,0,0,4,1,0,1,1,0,0,0,0,1,0,1,13698.5714286,3,2,3_1,3_1,17343.0,0,17343.0,0,1,10,113.0,25.0,2.22,0,1,2035.0060231912323,2035.0060231912323,0.0 1906,306,305,0,0,54,111,46,60,0,10422,0,0,0,0,2,4,3,4,2.1,1074.62368697,0,0,28875.0,1,3,7,5,2,0,0,0,0,0,1,0,0,0,0,0,13750.0,3,2,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 -1907,311,310,0,0,62,111,77,50,0,10428,0,0,0,297,0,3,0,2,1.5,3144.24541238,0,0,21292.0,5,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,14194.666666699999,3,2,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 +1907,311,310,0,0,62,111,77,50,0,10428,0,0,0,297,0,3,0,2,1.5,3144.24541238,0,0,21292.0,5,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,14194.6666667,3,2,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 1908,315,314,3,14,51,111,52,60,0,10431,0,3000,0,0,2,3,1,2,1.5,2800.97176632,1562,0,20901.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,0,1,13934.0,3,2,3_0,3_0,3000.0,0,3000.0,0,3,15,0.0,0.0,0.0,0,0,291.33460961441546,291.33460961441546,0.0 1909,322,321,0,0,53,111,53,50,0,10441,0,0,0,238,1,2,0,1,1.0,3700.54168945,0,0,13960.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,13960.0,3,2,3_0,3_0,0.0,0,0.0,0,0,0,217.5,100.0,5.56,0,0,0.0,0.0,0.0 1910,385,384,1,4,38,111,55,41,2,1053,0,200,0,455,1,5,2,3,1.6,2720.54192044,0,5000,23269.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,14543.125,3,2,3_1,3_0,15000.0,0,15000.0,0,5,5,100.2,20.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 1911,387,386,9,12,37,111,63,41,0,10532,0,0,0,0,1,4,3,5,2.4,1683.87052944,0,0,32946.0,1,4,8,6,4,2,0,0,0,0,1,0,0,0,1,1,13727.5,3,2,3_0,3_0,26741.0,0,18625.0,8116,2,6,80.0,12.5,3.3,0,1,2596.859598566361,1808.702368022829,788.1572305435318 -1912,394,393,0,0,66,111,55,70,0,10539,0,0,0,0,1,2,0,1,1.0,2600.9520591999994,0,0,13030.0,1,2,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13030.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1912,394,393,0,0,66,111,55,70,0,10539,0,0,0,0,1,2,0,1,1.0,2600.9520592,0,0,13030.0,1,2,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13030.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1913,399,398,1,6,37,400,67,50,0,10543,0,200,0,0,2,4,2,4,2.1,1747.22256049,2860,0,28004.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,13335.2380952,3,2,3_0,3_1,30000.0,0,30000.0,0,5,5,222.3,23.5,3.32,1,0,3520.162641742315,3520.162641742315,0.0 -1914,407,406,0,11,50,112,69,50,0,10552,0,0,0,0,2,6,4,6,3.1,745.4084868369999,4671,0,40890.0,1,2,5,0,4,1,0,0,1,0,0,0,0,0,0,1,13190.322580600001,3,2,3_0,3_1,30000.0,0,30000.0,0,5,6,77.2,22.5,5.57,0,0,3520.162641742315,3520.162641742315,0.0 +1914,407,406,0,11,50,112,69,50,0,10552,0,0,0,0,2,6,4,6,3.1,745.408486837,4671,0,40890.0,1,2,5,0,4,1,0,0,1,0,0,0,0,0,0,1,13190.3225806,3,2,3_0,3_1,30000.0,0,30000.0,0,5,6,77.2,22.5,5.57,0,0,3520.162641742315,3520.162641742315,0.0 1915,418,417,1,1,82,111,75,70,1,1057,0,0,0,0,1,4,0,3,2.0,1830.25724429,0,7000,25535.0,5,1,6,5,5,1,0,0,0,0,1,0,0,0,0,0,12767.5,3,2,3_0,3_0,5000.0,0,0.0,5000,9,0,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 1916,429,428,0,0,91,111,86,71,0,10585,0,0,0,0,0,4,0,1,1.0,3796.09874201,0,0,13243.0,6,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,13243.0,3,2,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 1917,430,429,5,21,50,111,52,31,0,10586,0,0,0,124,1,4,0,1,1.0,2381.5260476,0,0,12740.0,4,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,12740.0,3,2,3_1,3_0,8000.0,0,0.0,8000,13,15,0.0,20.0,3.31,0,1,776.8922923051077,0.0,776.8922923051077 -1918,435,434,3,13,38,111,56,43,0,10596,0,0,100,146,1,3,1,2,1.3,2826.51302854,1664,0,18934.0,1,3,7,5,2,1,0,1,0,0,1,0,0,1,1,0,14564.615384600002,3,2,3_1,3_0,3543.0,0,0.0,3543,1,12,100.0,30.0,3.3,0,1,344.0661739546246,0.0,344.0661739546246 +1918,435,434,3,13,38,111,56,43,0,10596,0,0,100,146,1,3,1,2,1.3,2826.51302854,1664,0,18934.0,1,3,7,5,2,1,0,1,0,0,1,0,0,1,1,0,14564.6153846,3,2,3_1,3_0,3543.0,0,0.0,3543,1,12,100.0,30.0,3.3,0,1,344.0661739546246,0.0,344.0661739546246 1919,442,441,0,0,80,112,71,70,2,10604,0,0,0,0,0,7,0,1,1.0,2512.55320456,1820,1300,12670.0,5,1,9,0,1,1,0,0,1,0,0,0,0,0,1,0,12670.0,3,2,3_0,3_1,1546.0,0,0.0,1546,1,1,0.0,0.0,0.0,0,0,181.40571480445396,0.0,181.40571480445396 -1920,443,442,1,16,81,400,71,70,2,10605,0,0,0,0,0,5,0,2,1.5,3289.74055096,0,1500,20363.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,13575.333333300001,3,2,3_0,3_1,2000.0,0,2000.0,0,2,16,0.0,0.0,0.0,0,0,234.67750944948767,234.67750944948767,0.0 +1920,443,442,1,16,81,400,71,70,2,10605,0,0,0,0,0,5,0,2,1.5,3289.74055096,0,1500,20363.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,13575.3333333,3,2,3_0,3_1,2000.0,0,2000.0,0,2,16,0.0,0.0,0.0,0,0,234.67750944948767,234.67750944948767,0.0 1921,457,456,0,0,38,111,56,41,0,10628,0,0,0,0,1,1,0,1,1.0,3116.92500717,0,0,13075.0,1,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,13075.0,3,2,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 1922,466,465,1,1,33,221,22,60,1,10642,0,70,0,316,1,5,2,3,1.6,3330.32471444,2080,30000,22867.0,1,3,1,2,2,1,0,1,0,1,0,0,0,1,0,1,14291.875,3,2,3_1,3_0,13000.0,0,13000.0,0,1,1,17.1,20.0,3.3,0,1,1262.4499749958002,1262.4499749958002,0.0 -1923,487,486,4,13,39,111,56,50,0,10667,0,150,0,24,1,3,2,3,1.6,1785.50575101,1685,0,22193.0,1,3,7,6,2,1,0,1,0,0,1,0,0,1,0,1,13870.625,3,2,3_1,3_0,10000.0,0,10000.0,0,4,12,67.0,15.333333333299999,3.31,0,1,971.1153653813847,971.1153653813847,0.0 +1923,487,486,4,13,39,111,56,50,0,10667,0,150,0,24,1,3,2,3,1.6,1785.50575101,1685,0,22193.0,1,3,7,6,2,1,0,1,0,0,1,0,0,1,0,1,13870.625,3,2,3_1,3_0,10000.0,0,10000.0,0,4,12,67.0,15.3333333333,3.31,0,1,971.1153653813847,971.1153653813847,0.0 1924,492,491,11,15,43,111,48,60,0,10677,0,0,220,456,1,4,2,3,2.0,2124.13932192,0,0,27298.0,1,3,5,4,2,2,0,1,0,0,1,0,0,1,2,0,13649.0,3,2,3_1,3_0,10000.0,0,0.0,10000,2,21,0.0,46.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 1925,493,492,2,14,26,111,84,41,0,10678,0,0,100,195,0,1,0,1,1.0,3253.64133785,0,0,12987.0,3,3,8,6,1,1,0,1,0,0,1,0,0,1,1,0,12987.0,3,2,3_1,3_0,15000.0,0,0.0,15000,3,13,0.0,0.0,0.0,0,1,1456.673048072077,0.0,1456.673048072077 -1926,497,496,3,10,65,111,68,70,0,10682,0,0,70,520,1,3,1,2,1.5,2926.60809103,0,0,21445.0,5,3,9,7,2,2,0,0,0,0,0,1,0,0,1,1,14296.666666699999,3,2,3_0,3_0,1000.0,0,1000.0,0,10,15,0.0,0.0,0.0,0,0,97.11153653813847,97.11153653813847,0.0 +1926,497,496,3,10,65,111,68,70,0,10682,0,0,70,520,1,3,1,2,1.5,2926.60809103,0,0,21445.0,5,3,9,7,2,2,0,0,0,0,0,1,0,0,1,1,14296.6666667,3,2,3_0,3_0,1000.0,0,1000.0,0,10,15,0.0,0.0,0.0,0,0,97.11153653813847,97.11153653813847,0.0 1927,498,497,0,0,66,111,22,50,0,10683,0,0,0,0,1,4,0,2,1.5,1347.83757509,0,0,20490.0,5,3,6,4,3,0,0,0,0,0,1,0,0,0,0,0,13660.0,3,2,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 1928,509,508,1,19,25,111,52,50,2,10701,0,600,0,0,2,3,2,4,2.1,2398.41237394,2600,500,27385.0,1,3,8,7,4,2,0,0,0,0,0,1,0,1,0,2,13040.4761905,3,2,3_1,3_0,16353.0,0,16353.0,0,5,8,62.0,18.75,3.3,0,1,1588.0649570081785,1588.0649570081785,0.0 -1929,510,509,3,9,46,111,63,50,0,10706,0,20,0,368,2,4,2,4,2.3,1817.1158248,0,0,28922.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,12574.782608700001,3,2,3_0,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 +1929,510,509,3,9,46,111,63,50,0,10706,0,20,0,368,2,4,2,4,2.3,1817.1158248,0,0,28922.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,12574.7826087,3,2,3_0,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 1930,538,537,3,19,66,112,78,50,0,1074,0,0,0,0,0,5,0,2,1.5,1305.59966981,1567,0,20856.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,0,2,13904.0,3,2,3_0,3_1,7391.0,0,7391.0,0,2,19,0.0,0.0,0.0,0,0,867.2507361705817,867.2507361705817,0.0 1931,541,540,13,13,76,111,78,71,0,10745,0,0,0,0,0,2,0,1,1.0,3204.49777172,0,0,13068.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,13068.0,3,2,3_0,3_0,800.0,0,800.0,0,6,14,0.0,0.0,0.0,0,0,77.68922923051078,77.68922923051078,0.0 1932,549,548,9,11,53,112,43,33,0,10756,0,0,180,0,2,8,2,4,2.3,3836.28701264,0,0,32083.0,1,1,7,0,4,3,0,0,1,0,0,0,0,0,3,0,13949.1304348,3,2,3_0,3_1,27352.0,0,0.0,27352,1,12,12.0,58.75,3.3,0,1,3209.449619231193,0.0,3209.449619231193 -1933,562,561,0,0,87,111,78,71,0,10770,0,0,0,0,0,1,0,1,1.0,3546.4380034999995,0,0,13486.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13486.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1934,563,562,2,3,50,112,64,50,0,10771,0,170,0,0,2,6,3,5,2.8,1718.20035531,0,0,41394.0,1,2,6,0,4,4,0,1,1,0,0,0,0,0,0,4,14783.571428600002,3,2,3_0,3_1,17343.0,0,17343.0,0,1,0,0.0,0.0,0.0,0,1,2035.0060231912323,2035.0060231912323,0.0 -1935,571,570,2,3,52,111,56,44,0,10780,0,0,0,0,1,6,1,5,2.8,1296.86900364,6718,0,40197.0,1,1,9,7,5,2,0,0,0,0,0,1,0,0,1,1,14356.071428600002,3,2,3_0,3_0,26741.0,0,18625.0,8116,2,6,80.0,12.5,3.3,0,1,2596.859598566361,1808.702368022829,788.1572305435318 +1933,562,561,0,0,87,111,78,71,0,10770,0,0,0,0,0,1,0,1,1.0,3546.4380035,0,0,13486.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13486.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1934,563,562,2,3,50,112,64,50,0,10771,0,170,0,0,2,6,3,5,2.8,1718.20035531,0,0,41394.0,1,2,6,0,4,4,0,1,1,0,0,0,0,0,0,4,14783.5714286,3,2,3_0,3_1,17343.0,0,17343.0,0,1,0,0.0,0.0,0.0,0,1,2035.0060231912323,2035.0060231912323,0.0 +1935,571,570,2,3,52,111,56,44,0,10780,0,0,0,0,1,6,1,5,2.8,1296.86900364,6718,0,40197.0,1,1,9,7,5,2,0,0,0,0,0,1,0,0,1,1,14356.0714286,3,2,3_0,3_0,26741.0,0,18625.0,8116,2,6,80.0,12.5,3.3,0,1,2596.859598566361,1808.702368022829,788.1572305435318 1936,572,571,1,1,35,111,63,41,0,10781,0,100,0,270,1,1,0,1,1.0,3079.45417364,0,0,13681.0,1,3,8,7,1,1,0,1,0,0,0,1,0,1,0,1,13681.0,3,2,3_1,3_0,0.0,0,0.0,0,7,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1937,573,572,13,24,37,400,69,50,0,10783,0,176,0,0,1,5,1,2,1.5,1870.51582112,0,0,20274.0,1,3,0,0,2,2,0,1,1,0,0,0,0,1,0,2,13516.0,3,2,3_1,3_1,17102.0,0,17102.0,0,4,8,111.5,30.0,0.0,0,0,2006.727383302569,2006.727383302569,0.0 1938,587,586,3,28,21,300,52,50,0,10807,0,0,0,0,1,3,0,1,1.0,2128.37913598,0,0,13843.0,1,3,0,0,1,1,0,0,1,0,0,0,0,1,0,1,13843.0,3,2,3_1,3_1,6821.0,0,6821.0,0,1,18,0.0,0.0,0.0,0,1,800.3676459774778,800.3676459774778,0.0 1939,640,639,6,8,33,111,55,43,0,1088,0,300,0,0,1,4,3,4,1.9,2438.03462397,0,0,24232.0,1,3,5,4,2,2,0,0,0,0,1,0,0,1,0,2,12753.6842105,3,2,3_1,3_0,5000.0,0,5000.0,0,7,13,37.5,17.5,3.3,0,1,485.55768269069233,485.55768269069233,0.0 -1940,649,648,2,7,46,120,62,50,0,1089,0,180,0,0,1,5,2,4,2.1,981.4554835839999,1542,0,28598.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,13618.0952381,3,2,3_0,3_1,20000.0,0,20000.0,0,4,7,57.5,22.5,0.0,0,1,2346.7750944948766,2346.7750944948766,0.0 +1940,649,648,2,7,46,120,62,50,0,1089,0,180,0,0,1,5,2,4,2.1,981.455483584,1542,0,28598.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,13618.0952381,3,2,3_0,3_1,20000.0,0,20000.0,0,4,7,57.5,22.5,0.0,0,1,2346.7750944948766,2346.7750944948766,0.0 1941,658,657,1,1,65,111,75,71,1,10903,0,0,0,0,0,5,0,2,1.5,3141.43920751,1040,16000,19422.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,12948.0,3,2,3_0,3_0,20000.0,0,20000.0,0,3,3,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 1942,671,670,0,0,85,221,77,71,0,10920,0,0,0,0,0,5,0,1,1.0,7610.84158429,0,0,14522.0,5,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,14522.0,3,2,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 1943,680,679,2,2,52,111,62,60,0,1094,0,350,0,0,3,5,1,3,2.0,1456.80554195,5289,0,29481.0,1,2,9,7,4,3,0,1,0,0,0,1,0,0,1,2,14740.5,3,2,3_0,3_0,18625.0,0,18625.0,0,3,4,212.4,72.5,3.3,0,1,1808.702368022829,1808.702368022829,0.0 @@ -1951,7 +1951,7 @@ 1949,759,758,2,17,31,111,67,43,0,11047,0,0,0,380,1,2,0,1,1.0,3633.69834294,0,0,14401.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,14401.0,3,2,3_0,3_0,10200.0,0,10200.0,0,16,16,102.5,40.0,3.3,0,1,990.5376726890125,990.5376726890125,0.0 1950,768,767,8,8,79,112,75,41,0,11056,0,0,0,0,0,6,0,2,1.5,5585.5847728,0,0,18860.0,5,1,8,3,3,1,0,0,0,1,0,0,0,0,0,1,12573.3333333,3,2,3_0,3_0,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 1951,774,773,1,10,57,112,67,70,2,11062,0,0,0,0,1,5,0,2,1.5,2129.86918047,2361,2200,20130.0,1,1,5,0,3,1,1,0,1,0,0,0,0,0,1,0,13420.0,3,2,3_0,3_1,3000.0,0,0.0,3000,9,11,0.0,0.0,0.0,0,0,352.01626417423154,0.0,352.01626417423154 -1952,794,793,0,0,50,111,52,71,0,1109,0,0,0,7,2,5,4,5,2.8,3011.33926049,0,0,37808.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,13502.857142899999,3,2,3_1,3_0,0.0,0,0.0,0,0,0,36.0,16.6666666667,5.5,0,0,0.0,0.0,0.0 +1952,794,793,0,0,50,111,52,71,0,1109,0,0,0,7,2,5,4,5,2.8,3011.33926049,0,0,37808.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,13502.8571429,3,2,3_1,3_0,0.0,0,0.0,0,0,0,36.0,16.6666666667,5.5,0,0,0.0,0.0,0.0 1953,813,812,0,0,34,111,85,41,0,11117,0,0,0,0,0,1,0,1,1.0,3026.834785,0,0,12886.0,7,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,12886.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,22.1,80.0,5.56,0,0,0.0,0.0,0.0 1954,820,819,7,20,65,111,77,50,0,11126,0,0,0,274,0,3,0,1,1.0,1682.63398684,2864,0,14543.0,5,3,8,6,1,1,0,0,0,0,1,0,0,0,0,1,14543.0,3,2,3_0,3_0,800.0,0,800.0,0,6,14,0.0,0.0,0.0,0,0,77.68922923051078,77.68922923051078,0.0 1955,821,820,16,16,79,111,78,50,0,11127,0,0,0,0,0,5,0,2,1.5,3162.57930181,771,0,19999.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,13332.6666667,3,2,3_0,3_0,1700.0,0,0.0,1700,16,16,0.0,0.0,0.0,0,0,165.0896121148354,0.0,165.0896121148354 @@ -1959,20 +1959,20 @@ 1957,849,848,0,0,79,111,86,71,0,11167,0,0,0,722,0,3,0,1,1.0,4652.95867522,0,0,14664.0,5,3,7,5,1,0,0,0,0,0,1,0,0,0,0,0,14664.0,3,2,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 1958,854,853,0,0,81,111,77,71,0,11176,0,0,0,0,0,3,0,1,1.0,3533.92100875,0,0,14800.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14800.0,3,2,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 1959,863,862,8,11,48,112,56,60,0,11186,0,500,500,0,2,6,2,4,2.3,1798.65507472,5741,0,30829.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,1,1,13403.9130435,3,2,3_0,3_1,25000.0,0,20000.0,5000,3,14,32.4,7.5,3.3,0,1,2933.4688681185958,2346.7750944948766,586.6937736237192 -1960,872,871,0,0,76,111,78,71,0,112,0,0,0,0,0,2,0,2,1.5,3115.85596265,0,0,21280.0,5,3,9,7,3,0,0,0,0,0,0,1,0,0,0,0,14186.666666699999,3,2,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 +1960,872,871,0,0,76,111,78,71,0,112,0,0,0,0,0,2,0,2,1.5,3115.85596265,0,0,21280.0,5,3,9,7,3,0,0,0,0,0,0,1,0,0,0,0,14186.6666667,3,2,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 1961,876,875,6,18,53,120,69,71,0,11205,0,0,0,0,1,2,0,1,1.0,3762.96072948,0,0,14108.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,0,1,14108.0,3,2,3_0,3_1,5000.0,0,5000.0,0,4,13,0.0,0.0,0.0,0,1,586.6937736237192,586.6937736237192,0.0 -1962,889,888,1,1,44,111,38,31,1,11220,0,99999,0,0,1,6,2,4,2.3,2667.0466731999995,0,50600,31661.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,13765.6521739,3,2,3_0,3_0,40781.0,0,40781.0,0,2,0,36.5,10.0,0.0,0,1,3960.305571561825,3960.305571561825,0.0 -1963,890,889,3,9,36,111,47,50,0,11221,0,270,0,276,2,3,2,4,2.1,3669.19314399,1040,0,30663.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,14601.428571399998,3,2,3_1,3_0,15000.0,0,15000.0,0,5,10,0.0,7.5,0.0,1,1,1456.673048072077,1456.673048072077,0.0 +1962,889,888,1,1,44,111,38,31,1,11220,0,99999,0,0,1,6,2,4,2.3,2667.0466732,0,50600,31661.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,13765.6521739,3,2,3_0,3_0,40781.0,0,40781.0,0,2,0,36.5,10.0,0.0,0,1,3960.305571561825,3960.305571561825,0.0 +1963,890,889,3,9,36,111,47,50,0,11221,0,270,0,276,2,3,2,4,2.1,3669.19314399,1040,0,30663.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,14601.4285714,3,2,3_1,3_0,15000.0,0,15000.0,0,5,10,0.0,7.5,0.0,1,1,1456.673048072077,1456.673048072077,0.0 1964,894,893,0,0,45,111,68,50,0,11226,0,0,0,0,1,2,0,1,1.0,2154.99703936,0,0,13115.0,1,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,13115.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1965,912,911,0,0,59,111,56,71,0,11253,0,0,0,0,1,1,0,1,1.0,2987.76716617,0,0,13050.0,1,2,10,8,1,0,0,0,0,0,0,0,1,0,0,0,13050.0,3,2,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 1966,914,913,3,6,50,120,56,60,0,11256,0,0,0,0,1,6,0,5,2.6,1803.79029394,3191,0,33385.0,1,1,0,0,5,2,0,0,1,0,0,0,0,0,0,2,12840.3846154,3,2,3_0,3_1,25000.0,0,25000.0,0,8,9,1911.6,62.5,3.3,0,0,2933.4688681185958,2933.4688681185958,0.0 1967,916,915,0,0,77,211,77,70,0,11259,0,0,0,333,0,2,0,1,1.0,3158.18848192,0,0,14669.0,5,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,14669.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -1968,925,924,2,18,27,120,55,50,0,11274,0,330,0,0,2,4,3,5,2.4,3505.44517599,1561,0,33583.0,1,3,0,0,4,2,0,0,1,0,0,0,0,1,0,2,13992.916666699999,3,2,3_1,3_1,15000.0,0,15000.0,0,13,16,136.0,14.8,3.3,0,1,1760.0813208711575,1760.0813208711575,0.0 -1969,932,931,6,8,34,111,62,50,0,11283,0,400,0,87,1,4,3,5,2.4,906.6816205660001,0,0,31913.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,13297.0833333,3,2,3_1,3_0,15000.0,0,15000.0,0,6,16,120.6,30.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 +1968,925,924,2,18,27,120,55,50,0,11274,0,330,0,0,2,4,3,5,2.4,3505.44517599,1561,0,33583.0,1,3,0,0,4,2,0,0,1,0,0,0,0,1,0,2,13992.9166667,3,2,3_1,3_1,15000.0,0,15000.0,0,13,16,136.0,14.8,3.3,0,1,1760.0813208711575,1760.0813208711575,0.0 +1969,932,931,6,8,34,111,62,50,0,11283,0,400,0,87,1,4,3,5,2.4,906.681620566,0,0,31913.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,13297.0833333,3,2,3_1,3_0,15000.0,0,15000.0,0,6,16,120.6,30.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 1970,934,933,0,19,45,111,56,60,0,11286,0,0,80,135,2,4,3,4,2.3,2405.2815321,0,0,33826.0,1,3,9,7,2,2,0,1,0,0,0,1,0,1,2,0,14706.9565217,3,2,3_1,3_0,30000.0,0,0.0,30000,12,20,30.5,15.0,3.3,0,1,2913.346096144154,0.0,2913.346096144154 -1971,939,938,0,0,33,111,85,71,0,11293,0,0,0,768,0,3,1,3,1.8,3730.38244024,0,0,23471.0,4,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,13039.444444399998,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1971,939,938,0,0,33,111,85,71,0,11293,0,0,0,768,0,3,1,3,1.8,3730.38244024,0,0,23471.0,4,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,13039.4444444,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1972,940,939,2,2,32,111,85,71,0,11294,0,0,0,266,0,1,0,1,1.0,3605.34422864,1040,0,12831.0,4,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,12831.0,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 -1973,943,942,5,5,24,120,43,33,0,11298,0,0,0,461,1,4,1,2,1.5,6130.58012341,0,0,20653.0,1,3,0,3,2,2,0,0,0,1,0,0,0,0,1,1,13768.666666699999,3,2,3_0,3_0,35000.0,0,35000.0,0,2,8,63.5,22.0,3.31,0,1,3398.903778834847,3398.903778834847,0.0 +1973,943,942,5,5,24,120,43,33,0,11298,0,0,0,461,1,4,1,2,1.5,6130.58012341,0,0,20653.0,1,3,0,3,2,2,0,0,0,1,0,0,0,0,1,1,13768.6666667,3,2,3_0,3_0,35000.0,0,35000.0,0,2,8,63.5,22.0,3.31,0,1,3398.903778834847,3398.903778834847,0.0 1974,947,946,6,24,28,111,67,50,0,11302,0,0,99999,360,1,2,0,1,1.0,2835.42073023,2912,0,13622.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,1,0,13622.0,3,2,3_0,3_0,7000.0,0,0.0,7000,11,20,0.0,60.0,5.56,0,0,679.7807557669694,0.0,679.7807557669694 1975,948,947,0,0,79,300,78,71,0,11303,0,0,0,0,0,4,0,2,1.5,1655.25945186,6781,0,19690.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,13126.6666667,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1976,967,966,1,11,21,111,52,50,2,1133,0,0,0,0,1,3,1,2,1.3,2904.20322744,0,1400,18302.0,1,3,8,7,2,1,0,0,0,0,0,1,0,1,1,0,14078.4615385,3,2,3_1,3_0,8000.0,0,0.0,8000,3,7,0.0,80.0,0.0,0,1,776.8922923051077,0.0,776.8922923051077 @@ -1984,19 +1984,19 @@ 1982,1009,1008,12,12,59,112,67,70,0,11380,0,0,0,0,1,3,0,1,1.0,2883.39942784,0,0,14042.0,4,2,8,0,1,1,0,0,1,0,0,0,0,1,0,1,14042.0,3,2,3_1,3_1,14818.0,0,14818.0,0,7,12,133.5,75.0,3.3,0,1,1738.7256675112542,1738.7256675112542,0.0 1983,1013,1012,7,8,48,111,63,50,0,11384,0,0,40,326,1,4,2,3,2.0,3379.78362524,1040,0,28490.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,1,0,14245.0,3,2,3_0,3_0,15000.0,0,0.0,15000,10,10,498.0,75.0,3.3,0,1,1456.673048072077,0.0,1456.673048072077 1984,1027,1026,0,0,65,111,72,71,1,1140,0,0,0,0,0,6,1,3,2.0,3131.05759174,2600,83388,28584.0,5,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,14292.0,3,2,3_0,3_0,21000.0,0,21000.0,0,4,5,0.0,0.0,0.0,0,0,2039.342267300908,2039.342267300908,0.0 -1985,1031,1030,11,11,63,111,78,70,0,11405,0,0,0,0,0,3,0,2,1.5,2194.88339482,1612,0,22001.0,5,3,5,4,3,1,0,0,0,0,1,0,0,0,0,1,14667.333333300001,3,2,3_0,3_0,10000.0,0,10000.0,0,6,10,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 +1985,1031,1030,11,11,63,111,78,70,0,11405,0,0,0,0,0,3,0,2,1.5,2194.88339482,1612,0,22001.0,5,3,5,4,3,1,0,0,0,0,1,0,0,0,0,1,14667.3333333,3,2,3_0,3_0,10000.0,0,10000.0,0,6,10,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 1986,1064,1063,5,6,52,111,68,50,0,11455,0,0,150,306,1,2,0,1,1.0,1611.79651337,2080,0,12890.0,1,3,7,6,1,1,0,1,0,0,1,0,0,0,1,0,12890.0,3,2,3_0,3_0,9000.0,0,0.0,9000,9,9,0.0,0.0,0.0,1,1,874.0038288432463,0.0,874.0038288432463 1987,1091,1090,20,20,65,112,78,70,0,11492,0,0,0,0,0,4,0,1,1.0,1783.50467673,0,0,14555.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,14555.0,3,2,3_0,3_1,3543.0,0,0.0,3543,10,19,0.0,0.0,0.0,0,0,415.7312079897674,0.0,415.7312079897674 1988,1103,1102,0,0,87,111,78,70,0,11509,0,0,0,0,0,4,0,2,1.5,3006.81509024,0,0,19300.0,5,1,8,6,3,0,0,0,0,0,1,0,0,0,0,0,12866.6666667,3,2,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 -1989,1109,1108,0,0,21,111,52,31,0,11514,0,0,0,500,1,4,0,2,1.5,3168.43965538,0,0,20140.0,1,3,9,7,5,0,0,0,0,0,0,1,0,1,0,0,13426.666666699999,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +1989,1109,1108,0,0,21,111,52,31,0,11514,0,0,0,500,1,4,0,2,1.5,3168.43965538,0,0,20140.0,1,3,9,7,5,0,0,0,0,0,0,1,0,1,0,0,13426.6666667,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1990,1128,1127,8,17,36,111,55,50,0,11540,0,0,180,327,1,3,1,2,1.3,1476.37695573,2288,0,18030.0,1,3,5,4,2,1,0,1,0,0,1,0,0,1,1,0,13869.2307692,3,2,3_1,3_0,3543.0,0,0.0,3543,1,12,100.0,30.0,3.3,0,1,344.0661739546246,0.0,344.0661739546246 1991,1132,1131,0,0,64,111,78,60,0,11547,0,0,0,149,0,2,0,1,1.0,2318.82936134,0,0,12736.0,5,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,12736.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 1992,1134,1133,2,12,63,112,54,12,0,11549,0,0,0,0,1,4,0,1,1.0,2133.08688424,2935,0,13756.0,4,1,9,0,1,1,0,0,1,0,0,0,0,0,0,1,13756.0,3,2,3_0,3_1,14818.0,0,14818.0,0,7,12,133.5,75.0,3.3,0,1,1738.7256675112542,1738.7256675112542,0.0 1993,1139,1138,4,7,69,300,71,71,0,11554,0,0,0,0,0,3,0,2,1.5,2796.35364595,1560,0,19540.0,5,2,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13026.6666667,3,2,3_0,3_1,28000.0,0,28000.0,0,8,8,0.0,0.0,0.0,0,0,3285.4851322928275,3285.4851322928275,0.0 -1994,1142,1141,2,9,39,221,55,43,0,1156,0,0,50,0,1,5,2,3,1.8,1810.07966827,2080,0,24663.0,1,3,1,2,2,1,0,1,0,1,0,0,0,1,1,0,13701.666666699999,3,2,3_1,3_0,15000.0,0,0.0,15000,2,7,0.0,35.0,3.3,0,1,1456.673048072077,0.0,1456.673048072077 +1994,1142,1141,2,9,39,221,55,43,0,1156,0,0,50,0,1,5,2,3,1.8,1810.07966827,2080,0,24663.0,1,3,1,2,2,1,0,1,0,1,0,0,0,1,1,0,13701.6666667,3,2,3_1,3_0,15000.0,0,0.0,15000,2,7,0.0,35.0,3.3,0,1,1456.673048072077,0.0,1456.673048072077 1995,1144,1143,0,11,77,111,77,70,2,11562,0,0,0,0,0,3,0,1,1.0,2618.46109249,0,5500,12618.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,1,0,12618.0,3,2,3_0,3_0,7000.0,0,0.0,7000,10,10,0.0,0.0,0.0,0,0,679.7807557669694,0.0,679.7807557669694 1996,1147,1146,1,2,50,112,85,71,0,11567,0,99999,0,0,1,5,1,3,2.0,3236.31436369,2600,0,27570.0,5,1,6,0,4,3,0,1,1,0,0,0,0,0,0,3,13785.0,3,2,3_0,3_1,6001.0,0,6001.0,0,1,12,0.0,0.0,0.0,0,1,704.1498671031878,704.1498671031878,0.0 -1997,1159,1158,4,7,78,112,78,71,0,11582,0,0,0,0,0,4,0,2,1.5,2971.94435793,2353,0,20180.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,1,0,13453.333333300001,3,2,3_0,3_1,5000.0,0,0.0,5000,7,7,0.0,0.0,0.0,0,0,586.6937736237192,0.0,586.6937736237192 +1997,1159,1158,4,7,78,112,78,71,0,11582,0,0,0,0,0,4,0,2,1.5,2971.94435793,2353,0,20180.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,1,0,13453.3333333,3,2,3_0,3_1,5000.0,0,0.0,5000,7,7,0.0,0.0,0.0,0,0,586.6937736237192,0.0,586.6937736237192 1998,1164,1163,6,7,63,300,72,50,0,11591,0,250,0,0,1,5,1,3,2.0,1632.42961208,0,0,25971.0,5,1,0,0,4,2,0,0,1,0,0,0,0,0,0,2,12985.5,3,2,3_0,3_1,5000.0,0,5000.0,0,8,8,0.0,0.0,0.0,0,0,586.6937736237192,586.6937736237192,0.0 1999,1172,1171,0,0,29,111,46,71,0,11602,0,0,0,500,1,1,0,1,1.0,3687.83022075,0,0,14725.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,14725.0,3,2,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 2000,1186,1185,0,0,69,400,75,50,0,11624,0,0,0,0,0,2,0,1,1.0,1304.50070298,0,0,12853.0,5,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,12853.0,3,2,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 @@ -2004,36 +2004,36 @@ 2002,1197,1196,19,19,70,111,72,50,0,1164,0,0,0,0,0,6,0,1,1.0,1360.58760279,0,0,12646.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,12646.0,3,2,3_0,3_0,12454.0,0,0.0,12454,11,20,0.0,0.0,0.0,0,0,1209.4270760459765,0.0,1209.4270760459765 2003,1199,1198,0,0,38,111,81,31,0,11641,0,0,0,71,1,1,0,1,1.0,3354.90784919,0,0,13918.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13918.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,45.0,5.5,0,0,0.0,0.0,0.0 2004,1208,1207,14,14,87,111,72,70,0,11654,0,0,0,0,0,4,0,2,1.5,1688.12224986,1385,0,19319.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,12879.3333333,3,2,3_0,3_0,14700.0,0,14700.0,0,7,13,0.0,0.0,0.0,0,0,1427.5395871106357,1427.5395871106357,0.0 -2005,1209,1208,6,11,37,112,63,50,0,11656,0,0,0,0,2,4,2,4,2.1,2105.23834777,3301,0,30928.0,1,2,8,0,4,2,1,0,1,0,0,0,0,0,1,1,14727.619047600001,3,2,3_0,3_1,41000.0,0,21000.0,20000,4,4,0.0,36.6666666667,3.3,0,1,4810.888943714497,2464.1138492196205,2346.7750944948766 -2006,1210,1209,2,2,33,111,55,31,0,11657,0,40,0,0,2,4,2,4,2.1,3579.3214147,0,0,28722.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,0,1,13677.142857100001,3,2,3_0,3_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 +2005,1209,1208,6,11,37,112,63,50,0,11656,0,0,0,0,2,4,2,4,2.1,2105.23834777,3301,0,30928.0,1,2,8,0,4,2,1,0,1,0,0,0,0,0,1,1,14727.6190476,3,2,3_0,3_1,41000.0,0,21000.0,20000,4,4,0.0,36.6666666667,3.3,0,1,4810.888943714497,2464.1138492196205,2346.7750944948766 +2006,1210,1209,2,2,33,111,55,31,0,11657,0,40,0,0,2,4,2,4,2.1,3579.3214147,0,0,28722.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,0,1,13677.1428571,3,2,3_0,3_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 2007,1213,1212,11,19,38,212,48,71,0,1166,0,0,0,0,1,5,4,6,2.9,2262.45516752,1560,0,41499.0,1,2,3,0,4,2,0,0,1,0,0,0,0,1,0,2,14310.0,3,2,3_1,3_1,21000.0,0,21000.0,0,5,16,0.0,0.0,0.0,0,1,2464.1138492196205,2464.1138492196205,0.0 2008,1225,1224,12,12,52,111,54,41,0,11680,0,0,90,0,3,5,1,3,2.0,1282.23179694,0,0,26533.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,13266.5,3,2,3_0,3_0,12000.0,0,12000.0,0,14,14,0.0,60.0,3.31,0,1,1165.3384384576618,1165.3384384576618,0.0 2009,1231,1230,0,0,92,111,78,71,0,11691,0,0,0,180,0,1,0,1,1.0,3867.88260316,0,0,13042.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13042.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2010,1240,1239,0,21,57,111,85,41,0,11700,0,0,0,0,0,6,1,3,2.0,1816.77527453,4160,0,28828.0,5,1,8,7,4,2,0,0,0,0,0,1,0,0,1,1,14414.0,3,2,3_0,3_0,27000.0,0,15000.0,12000,6,13,0.0,0.0,0.0,0,0,2622.0114865297387,1456.673048072077,1165.3384384576618 2011,1253,1252,3,8,58,400,77,70,0,11715,0,0,0,0,0,5,0,1,1.0,2453.02343643,2808,0,13834.0,5,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,13834.0,3,2,3_0,3_0,2000.0,0,2000.0,0,6,8,0.0,0.0,0.0,0,0,194.22307307627693,194.22307307627693,0.0 -2012,1268,1267,6,16,47,111,67,50,0,1174,0,0,0,365,1,4,1,2,1.5,2795.69308659,2080,0,21350.0,1,3,10,8,2,1,0,0,0,0,0,0,1,1,1,0,14233.333333300001,3,2,3_1,3_0,600.0,0,0.0,600,16,16,62.5,60.0,3.3,0,1,58.266921922883085,0.0,58.266921922883085 +2012,1268,1267,6,16,47,111,67,50,0,1174,0,0,0,365,1,4,1,2,1.5,2795.69308659,2080,0,21350.0,1,3,10,8,2,1,0,0,0,0,0,0,1,1,1,0,14233.3333333,3,2,3_1,3_0,600.0,0,0.0,600,16,16,62.5,60.0,3.3,0,1,58.266921922883085,0.0,58.266921922883085 2013,1273,1272,3,6,35,400,47,42,0,11746,0,120,0,0,2,4,2,4,2.1,3133.55699455,0,0,30535.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,14540.4761905,3,2,3_0,3_1,41000.0,0,21000.0,20000,4,4,0.0,36.6666666667,3.3,0,1,4810.888943714497,2464.1138492196205,2346.7750944948766 -2014,1274,1273,1,12,26,111,43,41,2,11748,0,0,5,92,1,3,3,5,2.4,3931.79821882,0,3000,34126.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,14219.166666699999,3,2,3_1,3_0,5000.0,0,0.0,5000,4,9,0.0,12.0,2.22,0,0,485.55768269069233,0.0,485.55768269069233 +2014,1274,1273,1,12,26,111,43,41,2,11748,0,0,5,92,1,3,3,5,2.4,3931.79821882,0,3000,34126.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,14219.1666667,3,2,3_1,3_0,5000.0,0,0.0,5000,4,9,0.0,12.0,2.22,0,0,485.55768269069233,0.0,485.55768269069233 2015,1282,1281,4,10,59,111,38,50,0,11760,0,0,0,0,2,6,1,3,2.0,1907.19787865,3142,0,28540.0,4,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,14270.0,3,2,3_0,3_0,10000.0,0,0.0,10000,2,7,0.0,40.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 -2016,1319,1318,0,0,43,111,54,60,0,11805,0,0,0,113,2,4,1,4,2.3,2352.09566152,0,0,33494.0,1,3,7,5,5,0,0,0,0,0,1,0,0,1,0,0,14562.608695700002,3,2,3_1,3_0,22000.0,0,0.0,22000,2,0,26.0,25.3333333333,0.0,0,1,2136.4538038390465,0.0,2136.4538038390465 +2016,1319,1318,0,0,43,111,54,60,0,11805,0,0,0,113,2,4,1,4,2.3,2352.09566152,0,0,33494.0,1,3,7,5,5,0,0,0,0,0,1,0,0,1,0,0,14562.6086957,3,2,3_1,3_0,22000.0,0,0.0,22000,2,0,26.0,25.3333333333,0.0,0,1,2136.4538038390465,0.0,2136.4538038390465 2017,1322,1321,0,0,49,111,67,71,0,11808,0,0,0,139,1,2,0,1,1.0,2405.23558964,0,0,14398.0,1,3,5,4,1,0,0,0,0,0,1,0,0,1,0,0,14398.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2018,1330,1329,3,12,27,111,56,71,0,11821,0,100,0,310,2,3,3,5,2.4,8341.56333966,0,0,32487.0,1,3,6,4,4,1,0,1,0,0,1,0,0,1,0,1,13536.25,3,2,3_1,3_0,7500.0,0,7500.0,0,4,15,0.0,0.0,0.0,0,1,728.3365240360386,728.3365240360386,0.0 -2019,1333,1332,2,5,63,112,74,60,0,11824,0,0,0,0,0,6,0,2,1.5,1931.84590427,1976,0,20350.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,13566.666666699999,3,2,3_0,3_1,1600.0,0,600.0,1000,6,6,0.0,0.0,0.0,0,0,187.74200755959015,70.4032528348463,117.33875472474384 +2019,1333,1332,2,5,63,112,74,60,0,11824,0,0,0,0,0,6,0,2,1.5,1931.84590427,1976,0,20350.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,13566.6666667,3,2,3_0,3_1,1600.0,0,600.0,1000,6,6,0.0,0.0,0.0,0,0,187.74200755959015,70.4032528348463,117.33875472474384 2020,1338,1337,6,10,49,300,11,44,0,11832,0,500,0,0,2,6,1,3,1.8,2333.81340691,3666,0,23224.0,1,2,0,0,4,2,1,0,1,0,0,0,0,0,1,1,12902.2222222,3,2,3_0,3_1,34000.0,0,30000.0,4000,11,14,165.5,48.3333333333,3.3,0,1,3989.51766064129,3520.162641742315,469.35501889897535 2021,1344,1343,6,19,53,111,42,71,0,11842,0,0,25,0,1,4,1,2,1.5,2910.95726889,1040,0,21930.0,1,3,5,4,2,1,0,1,0,0,1,0,0,0,1,0,14620.0,3,2,3_0,3_0,3067.0,0,0.0,3067,1,16,24.0,45.0,0.0,0,1,297.8410825624707,0.0,297.8410825624707 -2022,1346,1345,2,11,43,112,43,50,0,11844,0,0,0,252,2,3,1,2,1.5,3163.11862191,0,0,20978.0,1,3,10,2,2,1,0,0,0,1,0,0,0,1,1,0,13985.333333300001,3,2,3_1,3_0,0.0,0,0.0,0,4,15,31.5,25.0,3.3,0,1,0.0,0.0,0.0 +2022,1346,1345,2,11,43,112,43,50,0,11844,0,0,0,252,2,3,1,2,1.5,3163.11862191,0,0,20978.0,1,3,10,2,2,1,0,0,0,1,0,0,0,1,1,0,13985.3333333,3,2,3_1,3_0,0.0,0,0.0,0,4,15,31.5,25.0,3.3,0,1,0.0,0.0,0.0 2023,1360,1359,0,0,46,111,45,60,1,11859,290,0,0,0,1,5,2,3,2.0,3414.53058866,708,9947,28729.0,1,2,9,7,2,1,1,1,0,0,0,1,0,0,0,0,14364.5,3,2,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 2024,1384,1383,0,4,22,111,47,20,2,11896,0,30,0,0,1,1,0,1,1.0,2598.99564534,2860,8400,14359.0,1,3,5,4,1,1,0,1,0,0,1,0,0,1,0,1,14359.0,3,2,3_1,3_0,9716.0,0,9716.0,0,1,4,0.0,0.0,0.0,0,1,943.5356890045534,943.5356890045534,0.0 2025,1389,1388,2,2,57,111,77,71,0,11900,0,0,0,9,0,4,1,3,2.0,3789.75635124,0,0,26028.0,5,3,8,7,4,1,0,0,0,0,0,1,0,1,0,1,13014.0,3,2,3_1,3_0,15000.0,0,15000.0,0,1,3,0.0,0.0,0.0,0,0,1456.673048072077,1456.673048072077,0.0 -2026,1395,1394,3,11,38,111,63,50,0,1191,0,880,0,0,2,4,2,4,2.1,1463.19578867,0,0,27113.0,1,3,5,4,4,1,0,1,0,0,1,0,0,1,0,1,12910.952381000001,3,2,3_1,3_0,15000.0,0,15000.0,0,5,10,0.0,7.5,0.0,1,1,1456.673048072077,1456.673048072077,0.0 +2026,1395,1394,3,11,38,111,63,50,0,1191,0,880,0,0,2,4,2,4,2.1,1463.19578867,0,0,27113.0,1,3,5,4,4,1,0,1,0,0,1,0,0,1,0,1,12910.952381,3,2,3_1,3_0,15000.0,0,15000.0,0,5,10,0.0,7.5,0.0,1,1,1456.673048072077,1456.673048072077,0.0 2027,1405,1404,2,16,48,221,52,50,0,11928,0,0,0,227,1,2,1,3,1.8,3062.28098478,1300,0,24985.0,1,3,1,2,5,1,0,0,0,1,0,0,0,1,1,0,13880.5555556,3,2,3_1,3_0,10000.0,0,0.0,10000,12,13,0.0,8.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 2028,1450,1449,5,6,73,111,75,71,0,11992,0,0,0,0,0,4,0,2,1.5,4418.091695,2956,0,19900.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,13266.6666667,3,2,3_0,3_0,15781.0,0,15781.0,0,1,6,0.0,0.0,0.0,0,0,1532.5171581083632,1532.5171581083632,0.0 2029,1459,1458,0,0,76,112,78,70,0,12001,0,0,0,0,0,6,0,1,1.0,4175.17461273,0,0,12956.0,5,1,8,0,1,0,0,0,1,0,0,0,0,0,0,0,12956.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2030,1460,1459,0,0,62,111,77,71,0,12002,0,0,0,0,0,3,0,1,1.0,2915.83312609,0,0,12892.0,5,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,12892.0,3,2,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 -2031,1471,1470,8,8,35,112,21,50,0,12018,0,0,50,0,3,4,2,4,2.3,2792.26234485,0,0,29274.0,1,2,9,1,4,1,0,1,0,1,0,0,0,0,1,0,12727.826087000001,3,2,3_0,3_0,9862.0,0,0.0,9862,8,8,0.0,22.5,3.3,0,1,957.7139733391217,0.0,957.7139733391217 -2032,1477,1476,0,16,41,112,22,50,0,12029,0,80,0,0,3,8,2,4,2.5,2689.6600931999997,2080,0,34886.0,1,2,4,0,4,2,1,1,1,0,0,0,0,0,0,2,13954.4,3,2,3_0,3_1,15000.0,0,15000.0,0,5,8,36.0,42.5,0.0,0,1,1760.0813208711575,1760.0813208711575,0.0 +2031,1471,1470,8,8,35,112,21,50,0,12018,0,0,50,0,3,4,2,4,2.3,2792.26234485,0,0,29274.0,1,2,9,1,4,1,0,1,0,1,0,0,0,0,1,0,12727.826087,3,2,3_0,3_0,9862.0,0,0.0,9862,8,8,0.0,22.5,3.3,0,1,957.7139733391217,0.0,957.7139733391217 +2032,1477,1476,0,16,41,112,22,50,0,12029,0,80,0,0,3,8,2,4,2.5,2689.6600932,2080,0,34886.0,1,2,4,0,4,2,1,1,1,0,0,0,0,0,0,2,13954.4,3,2,3_0,3_1,15000.0,0,15000.0,0,5,8,36.0,42.5,0.0,0,1,1760.0813208711575,1760.0813208711575,0.0 2033,1480,1479,2,9,47,300,56,71,0,12032,0,560,0,514,2,4,1,5,2.6,2537.20376362,3614,0,33189.0,1,3,0,0,5,2,1,1,1,0,0,0,0,0,0,2,12765.0,3,2,3_0,3_1,10000.0,0,10000.0,0,9,11,98.3,18.0,0.0,0,1,1173.3875472474383,1173.3875472474383,0.0 -2034,1506,1505,0,0,59,111,78,41,0,12065,0,0,0,38,1,2,0,2,1.5,3825.12302294,0,0,20204.0,7,3,9,7,3,0,0,0,0,0,0,1,0,1,0,0,13469.333333300001,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2034,1506,1505,0,0,59,111,78,41,0,12065,0,0,0,38,1,2,0,2,1.5,3825.12302294,0,0,20204.0,7,3,9,7,3,0,0,0,0,0,0,1,0,1,0,0,13469.3333333,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2035,1527,1526,9,16,45,300,56,50,0,12094,0,0,0,0,1,3,0,2,1.5,2015.30297505,0,0,20697.0,1,3,0,0,3,2,0,0,1,0,0,0,0,1,0,2,13798.0,3,2,3_1,3_1,15000.0,0,15000.0,0,9,14,118.0,26.6666666667,3.3,0,1,1760.0813208711575,1760.0813208711575,0.0 2036,1536,1535,0,0,74,112,77,70,0,12104,0,0,0,0,0,5,0,1,1.0,1303.61742553,0,0,13306.0,5,1,8,0,1,0,0,0,1,0,0,0,0,0,0,0,13306.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2037,1540,1539,0,0,83,221,77,71,0,12108,0,0,0,0,0,2,0,1,1.0,5436.79863235,0,0,13826.0,5,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,13826.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -2041,23 +2041,23 @@ 2039,1545,1544,0,0,71,221,72,71,0,12117,0,0,0,254,0,4,0,1,1.0,5470.22484849,0,0,13520.0,5,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,13520.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2040,1589,1588,9,10,45,120,22,50,0,12180,0,270,0,0,2,4,0,2,1.5,3324.87455253,1981,0,20625.0,1,1,0,0,3,2,1,1,1,0,0,0,0,0,0,2,13750.0,3,2,3_0,3_1,3000.0,0,3000.0,0,4,16,106.0,95.0,3.3,0,1,352.01626417423154,352.01626417423154,0.0 2041,1592,1591,0,0,84,111,77,70,0,12188,0,0,0,456,0,2,0,2,1.5,4580.70935167,0,0,19730.0,5,3,6,5,3,0,0,0,0,0,1,0,0,0,0,0,13153.3333333,3,2,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 -2042,1596,1595,2,7,44,112,54,50,0,12194,0,100,0,0,2,5,2,4,2.1,1345.15629279,0,0,26486.0,1,3,7,1,4,1,0,1,0,1,0,0,0,1,0,1,12612.380952399999,3,2,3_1,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 +2042,1596,1595,2,7,44,112,54,50,0,12194,0,100,0,0,2,5,2,4,2.1,1345.15629279,0,0,26486.0,1,3,7,1,4,1,0,1,0,1,0,0,0,1,0,1,12612.3809524,3,2,3_1,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 2043,1610,1609,0,0,56,111,77,41,0,12215,0,0,0,0,0,2,0,1,1.0,3662.07789069,0,0,13234.0,7,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,13234.0,3,2,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 2044,1629,1628,1,13,32,111,55,30,0,12243,0,0,200,73,1,3,1,3,1.8,2633.21039433,0,0,24965.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,13869.4444444,3,2,3_1,3_0,3301.0,0,0.0,3301,3,14,0.0,0.0,0.0,1,0,320.5651821123951,0.0,320.5651821123951 2045,1632,1631,11,11,75,111,77,71,0,12248,0,0,0,0,0,5,0,1,1.0,7981.24124639,0,0,12616.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,1,0,12616.0,3,2,3_0,3_0,7000.0,0,0.0,7000,10,10,0.0,0.0,0.0,0,0,679.7807557669694,0.0,679.7807557669694 2046,1637,1636,6,6,77,111,78,71,0,12257,0,0,0,0,0,3,0,1,1.0,6112.57188416,1040,0,13898.0,5,4,7,5,1,1,0,0,0,0,1,0,0,0,1,0,13898.0,3,2,3_0,3_0,1500.0,0,0.0,1500,7,7,0.0,0.0,0.0,0,0,145.66730480720773,0.0,145.66730480720773 2047,1641,1640,6,6,78,112,78,70,0,12264,0,0,0,0,0,5,0,2,1.5,1565.15838625,2600,0,21441.0,5,4,9,0,3,1,0,0,1,0,0,0,0,0,0,1,14294.0,3,2,3_0,3_1,2500.0,0,2500.0,0,2,4,0.0,0.0,0.0,0,0,293.3468868118596,293.3468868118596,0.0 2048,1658,1657,3,4,81,111,77,41,0,12290,0,0,0,0,0,4,0,1,1.0,3072.39947616,0,0,14187.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,14187.0,3,2,3_0,3_0,17000.0,0,0.0,17000,4,4,0.0,0.0,0.0,0,0,1650.896121148354,0.0,1650.896121148354 -2049,1659,1658,2,13,55,111,54,60,0,12291,0,0,420,534,2,4,1,2,1.5,2287.88051861,1560,0,21830.0,4,3,9,7,2,2,0,1,0,0,0,1,0,0,2,0,14553.333333300001,3,2,3_0,3_0,13000.0,0,0.0,13000,11,14,0.0,0.0,0.0,1,0,1262.4499749958002,0.0,1262.4499749958002 +2049,1659,1658,2,13,55,111,54,60,0,12291,0,0,420,534,2,4,1,2,1.5,2287.88051861,1560,0,21830.0,4,3,9,7,2,2,0,1,0,0,0,1,0,0,2,0,14553.3333333,3,2,3_0,3_0,13000.0,0,0.0,13000,11,14,0.0,0.0,0.0,1,0,1262.4499749958002,0.0,1262.4499749958002 2050,1670,1669,9,12,65,300,77,50,0,12305,0,0,0,0,0,5,0,2,1.5,1554.54008462,0,0,19644.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,13096.0,3,2,3_0,3_1,15000.0,0,15000.0,0,8,14,0.0,0.0,0.0,0,0,1760.0813208711575,1760.0813208711575,0.0 2051,1691,1690,0,6,23,111,84,20,2,12335,0,120,0,254,0,2,0,1,1.0,2809.09123671,1047,4800,13146.0,3,3,9,7,1,1,0,1,0,0,0,1,0,1,0,1,13146.0,3,2,3_1,3_0,11000.0,0,11000.0,0,3,9,0.0,0.0,0.0,0,1,1068.2269019195232,1068.2269019195232,0.0 2052,1692,1691,2,9,45,111,46,41,0,12337,0,0,0,148,1,2,1,2,1.3,3017.18217916,0,0,18823.0,1,3,10,8,2,1,0,0,0,0,0,0,1,1,1,0,14479.2307692,3,2,3_1,3_0,6562.0,0,0.0,6562,12,12,68.0,90.0,3.3,0,1,637.2459027632647,0.0,637.2459027632647 2053,1699,1698,0,0,53,111,78,71,0,12344,0,0,0,0,2,4,2,3,2.0,3661.09502904,0,0,27614.0,7,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,13807.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 -2054,1745,1744,11,11,80,111,78,71,0,12408,0,0,0,284,0,1,0,1,1.0,3649.0765011999993,0,0,14608.0,5,3,8,6,1,1,0,0,0,0,1,0,0,1,0,1,14608.0,3,2,3_1,3_0,11231.0,0,11231.0,0,5,14,0.0,0.0,0.0,0,0,1090.6596668598331,1090.6596668598331,0.0 -2055,1762,1761,6,9,36,300,35,10,0,12426,0,800,0,0,1,5,1,3,1.8,1472.49952245,6318,0,23300.0,1,1,0,0,4,1,1,1,1,0,0,0,0,0,0,1,12944.444444399998,3,2,3_0,3_1,13750.0,0,13750.0,0,4,8,109.2,20.0,3.3,0,1,1613.4078774652278,1613.4078774652278,0.0 +2054,1745,1744,11,11,80,111,78,71,0,12408,0,0,0,284,0,1,0,1,1.0,3649.0765012,0,0,14608.0,5,3,8,6,1,1,0,0,0,0,1,0,0,1,0,1,14608.0,3,2,3_1,3_0,11231.0,0,11231.0,0,5,14,0.0,0.0,0.0,0,0,1090.6596668598331,1090.6596668598331,0.0 +2055,1762,1761,6,9,36,300,35,10,0,12426,0,800,0,0,1,5,1,3,1.8,1472.49952245,6318,0,23300.0,1,1,0,0,4,1,1,1,1,0,0,0,0,0,0,1,12944.4444444,3,2,3_0,3_1,13750.0,0,13750.0,0,4,8,109.2,20.0,3.3,0,1,1613.4078774652278,1613.4078774652278,0.0 2056,1803,1802,0,0,79,112,77,70,0,12480,0,0,0,0,0,4,0,1,1.0,2730.73672087,0,0,13568.0,5,1,5,0,1,0,0,0,1,0,0,0,0,0,0,0,13568.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2057,1818,1817,1,12,45,111,54,60,2,125,0,70,0,246,1,3,1,2,1.5,2726.47924047,3120,1900,19499.0,1,3,9,7,2,2,0,0,0,0,0,1,0,1,1,1,12999.3333333,3,2,3_1,3_0,38665.0,0,38665.0,0,2,9,142.7,30.0,3.3,0,1,3754.817560247124,3754.817560247124,0.0 -2058,1828,1827,3,18,35,112,63,43,0,1252,0,220,0,0,2,5,2,4,2.1,2549.04447027,2854,0,29356.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,13979.047618999999,3,2,3_0,3_1,25000.0,0,25000.0,0,7,17,0.0,35.0,3.3,0,1,2933.4688681185958,2933.4688681185958,0.0 +2058,1828,1827,3,18,35,112,63,43,0,1252,0,220,0,0,2,5,2,4,2.1,2549.04447027,2854,0,29356.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,13979.047619,3,2,3_0,3_1,25000.0,0,25000.0,0,7,17,0.0,35.0,3.3,0,1,2933.4688681185958,2933.4688681185958,0.0 2059,1859,1858,2,13,27,111,55,71,0,12558,0,0,0,412,1,4,3,5,2.4,4075.67939517,0,0,30498.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,0,1,12707.5,3,2,3_0,3_0,15000.0,0,15000.0,0,6,16,120.6,30.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 2060,1870,1869,11,11,81,300,71,70,0,1258,0,0,0,0,0,6,0,1,1.0,1822.20097856,0,0,13007.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,13007.0,3,2,3_0,3_1,5000.0,0,0.0,5000,11,11,0.0,0.0,0.0,0,0,586.6937736237192,0.0,586.6937736237192 2061,1878,1877,2,15,46,111,52,41,0,12590,0,0,0,0,1,4,2,3,2.0,3161.9893027,0,0,28380.0,1,2,10,8,2,1,0,0,0,0,0,0,1,0,0,1,14190.0,3,2,3_0,3_0,20000.0,0,20000.0,0,3,4,33.5,25.0,3.31,0,1,1942.2307307627693,1942.2307307627693,0.0 @@ -2068,10 +2068,10 @@ 2066,1928,1927,5,5,56,111,63,60,0,12655,0,0,570,0,1,6,1,2,1.5,1759.08120688,2605,0,20970.0,1,1,6,4,2,2,0,1,0,0,1,0,0,0,2,0,13980.0,3,2,3_0,3_0,6000.0,0,0.0,6000,5,5,0.0,0.0,0.0,0,1,582.6692192288309,0.0,582.6692192288309 2067,1938,1937,6,8,29,300,63,43,0,12664,0,54,0,0,1,5,3,5,2.4,1638.61222767,0,0,31781.0,1,2,0,0,4,2,0,0,1,0,0,0,0,1,0,2,13242.0833333,3,2,3_1,3_1,6716.0,0,6716.0,0,1,5,83.5,12.0,3.3,0,1,788.0470767313795,788.0470767313795,0.0 2068,1945,1944,16,16,81,112,78,70,0,12673,0,0,0,0,0,5,0,1,1.0,3054.85891383,0,0,14022.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,14022.0,3,2,3_0,3_1,5000.0,0,0.0,5000,15,16,0.0,0.0,0.0,0,0,586.6937736237192,0.0,586.6937736237192 -2069,1968,1967,8,8,44,111,68,50,0,12703,0,0,0,0,2,4,3,5,2.8,4793.45604944,3510,0,36493.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,0,2,13033.214285700002,3,2,3_0,3_0,25000.0,0,25000.0,0,2,7,75.5,50.0,1.1,1,0,2427.788413453462,2427.788413453462,0.0 +2069,1968,1967,8,8,44,111,68,50,0,12703,0,0,0,0,2,4,3,5,2.8,4793.45604944,3510,0,36493.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,0,2,13033.2142857,3,2,3_0,3_0,25000.0,0,25000.0,0,2,7,75.5,50.0,1.1,1,0,2427.788413453462,2427.788413453462,0.0 2070,1986,1985,12,14,55,212,52,50,0,12724,0,120,0,0,3,4,1,3,2.0,891.313271371,1613,0,27655.0,1,1,2,0,4,2,0,0,1,0,0,0,0,0,1,1,13827.5,3,2,3_0,3_1,30000.0,0,20000.0,10000,8,13,0.0,0.0,0.0,0,1,3520.162641742315,2346.7750944948766,1173.3875472474383 2071,1999,1998,0,0,74,111,78,50,0,12743,0,0,0,0,0,4,0,1,1.0,2362.97968838,0,0,13160.0,6,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,13160.0,3,2,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 -2072,2017,2016,8,8,32,111,67,41,0,12776,0,99999,0,227,1,4,3,5,2.4,1691.76639043,208,0,33416.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,13923.333333300001,3,2,3_1,3_0,15000.0,0,15000.0,0,6,16,120.6,30.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 +2072,2017,2016,8,8,32,111,67,41,0,12776,0,99999,0,227,1,4,3,5,2.4,1691.76639043,208,0,33416.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,13923.3333333,3,2,3_1,3_0,15000.0,0,15000.0,0,6,16,120.6,30.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 2073,2025,2024,3,4,31,111,63,50,0,12783,0,0,0,560,2,4,0,2,1.5,4032.96319974,0,0,21192.0,4,3,9,7,5,2,0,0,0,0,0,1,0,1,1,1,14128.0,3,2,3_1,3_0,26759.0,0,17343.0,9416,9,9,55.6,32.0,3.3,0,1,2598.6076062240472,1684.2053781809354,914.4022280431119 2074,2031,2030,11,13,66,111,78,70,0,12793,0,0,0,0,1,5,1,2,1.5,1784.05356163,0,0,19825.0,5,1,9,7,2,2,0,0,0,0,0,1,0,0,2,0,13216.6666667,3,2,3_0,3_0,12000.0,0,0.0,12000,7,14,0.0,0.0,0.0,0,0,1165.3384384576618,0.0,1165.3384384576618 2075,2037,2036,0,0,70,111,77,50,0,12800,0,0,0,468,0,4,0,1,1.0,2203.4491673,0,0,13398.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13398.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -2082,8 +2082,8 @@ 2080,2117,2116,0,11,69,111,75,50,2,12902,0,0,0,0,0,3,0,1,1.0,2092.6052376,2080,1250,14500.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,14500.0,3,2,3_0,3_0,6506.0,0,0.0,6506,1,12,0.0,0.0,0.0,0,0,631.8076567171289,0.0,631.8076567171289 2081,2127,2126,2,21,48,111,64,71,0,12916,0,0,0,0,1,1,0,1,1.0,2678.54687372,0,0,14584.0,4,3,9,7,1,1,0,0,0,0,0,1,0,1,0,0,14584.0,3,2,3_1,3_0,10000.0,0,0.0,10000,12,15,0.0,0.0,0.0,0,0,971.1153653813847,0.0,971.1153653813847 2082,2137,2136,21,27,89,111,72,70,0,12927,0,0,0,0,0,4,0,1,1.0,2365.63028492,0,0,13987.0,5,4,7,5,1,1,0,0,0,0,1,0,0,0,1,0,13987.0,3,2,3_0,3_0,1000.0,0,0.0,1000,21,21,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 -2083,2144,2143,1,1,35,111,47,43,1,12936,0,70,0,0,2,4,2,4,2.1,2461.71693637,0,14100,28240.0,1,2,7,5,4,1,0,1,0,0,1,0,0,1,0,1,13447.619047600001,3,2,3_1,3_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 -2084,2149,2148,1,14,37,111,67,50,2,12942,0,100,0,0,1,4,3,4,1.9,2647.22203536,2236,1700,27015.0,1,3,4,4,2,1,0,1,0,0,1,0,0,1,0,1,14218.421052599999,3,2,3_1,3_0,15000.0,0,15000.0,0,3,14,0.0,3.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 +2083,2144,2143,1,1,35,111,47,43,1,12936,0,70,0,0,2,4,2,4,2.1,2461.71693637,0,14100,28240.0,1,2,7,5,4,1,0,1,0,0,1,0,0,1,0,1,13447.6190476,3,2,3_1,3_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 +2084,2149,2148,1,14,37,111,67,50,2,12942,0,100,0,0,1,4,3,4,1.9,2647.22203536,2236,1700,27015.0,1,3,4,4,2,1,0,1,0,0,1,0,0,1,0,1,14218.4210526,3,2,3_1,3_0,15000.0,0,15000.0,0,3,14,0.0,3.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 2085,2154,2153,3,3,56,111,54,70,0,1295,0,0,0,0,1,4,0,1,1.0,1676.73202109,1586,0,13610.0,4,1,6,5,1,1,0,0,0,0,1,0,0,0,1,0,13610.0,3,2,3_0,3_0,10000.0,0,0.0,10000,3,3,59.4,30.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 2086,2156,2155,0,0,51,111,54,50,0,12951,0,0,0,155,1,1,0,2,1.5,2977.8378339,0,0,19474.0,1,3,10,8,3,0,0,0,0,0,0,0,1,1,0,0,12982.6666667,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2087,2158,2157,0,26,81,300,78,50,0,12953,0,0,0,0,0,5,0,2,1.5,1957.54209393,0,0,19400.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,12933.3333333,3,2,3_0,3_1,11000.0,0,10000.0,1000,23,23,0.0,0.0,0.0,0,0,1290.7263019721822,1173.3875472474383,117.33875472474384 @@ -2097,16 +2097,16 @@ 2095,2240,2239,4,8,38,112,56,41,0,13066,0,280,0,0,2,4,2,4,2.1,1649.64416592,5202,0,27822.0,1,2,10,0,4,2,0,1,1,0,0,0,0,1,0,2,13248.5714286,3,2,3_1,3_1,25000.0,0,25000.0,0,7,10,163.5,115.0,3.3,0,1,2933.4688681185958,2933.4688681185958,0.0 2096,2248,2247,0,0,81,300,71,70,0,13080,0,0,0,0,0,4,0,1,1.0,2287.70288214,0,0,12747.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,12747.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2097,2257,2256,0,0,46,221,68,71,0,13091,0,0,0,0,1,1,0,1,1.0,5911.56449355,0,0,14594.0,4,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,14594.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2098,2268,2267,0,0,78,300,75,60,0,13105,0,0,0,0,0,3,0,2,1.5,1840.75198842,0,0,22100.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,14733.333333300001,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2098,2268,2267,0,0,78,300,75,60,0,13105,0,0,0,0,0,3,0,2,1.5,1840.75198842,0,0,22100.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,14733.3333333,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2099,2307,2306,0,0,66,111,78,71,0,13169,0,0,0,205,0,3,0,2,1.5,2870.96993123,0,0,19990.0,5,3,7,6,3,0,0,0,0,0,1,0,0,0,0,0,13326.6666667,3,2,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 2100,2309,2308,0,0,50,300,69,50,2,13171,0,200,0,0,2,5,3,5,2.8,1009.38858697,3952,9500,40714.0,1,2,0,0,4,3,1,0,1,0,0,0,0,0,0,3,14540.7142857,3,2,3_0,3_1,17343.0,0,17343.0,0,1,0,0.0,0.0,0.0,0,1,2035.0060231912323,2035.0060231912323,0.0 2101,2320,2319,0,17,57,111,62,71,0,13187,0,0,0,0,1,4,1,3,2.0,2718.23070106,1040,0,26185.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,13092.5,3,2,3_0,3_0,54562.0,0,54562.0,0,1,9,0.0,10.0,0.0,0,0,5298.599656593911,5298.599656593911,0.0 2102,2325,2324,0,0,31,111,84,10,0,13196,0,0,0,533,0,1,0,1,1.0,3420.87271866,0,0,14190.0,3,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,14190.0,3,2,3_0,3_0,0.0,0,0.0,0,0,0,22.1,80.0,5.56,0,0,0.0,0.0,0.0 2103,2338,2337,0,0,78,111,77,70,0,13215,0,0,0,0,0,5,0,1,1.0,4127.52361698,0,0,13470.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,13470.0,3,2,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 -2104,2358,2357,0,0,64,111,63,71,0,13241,0,0,0,0,2,3,4,6,3.3,3107.94097675,0,0,41830.0,1,1,10,8,4,0,0,0,0,0,0,0,1,0,0,0,12675.757575799998,3,2,3_0,3_0,0.0,0,0.0,0,0,0,36.0,16.6666666667,5.5,0,0,0.0,0.0,0.0 +2104,2358,2357,0,0,64,111,63,71,0,13241,0,0,0,0,2,3,4,6,3.3,3107.94097675,0,0,41830.0,1,1,10,8,4,0,0,0,0,0,0,0,1,0,0,0,12675.7575758,3,2,3_0,3_0,0.0,0,0.0,0,0,0,36.0,16.6666666667,5.5,0,0,0.0,0.0,0.0 2105,2361,2360,5,7,54,111,55,41,0,13245,0,0,0,305,1,3,0,1,1.0,2725.34745752,0,0,12836.0,1,3,7,5,1,1,0,0,0,0,1,0,0,1,0,1,12836.0,3,2,3_1,3_0,12000.0,0,12000.0,0,7,7,0.0,0.0,0.0,0,1,1165.3384384576618,1165.3384384576618,0.0 -2106,2369,2368,24,24,81,112,78,71,0,13257,0,0,0,0,0,3,0,1,1.0,3451.2667409999995,0,0,13890.0,5,1,9,1,1,1,0,0,0,1,0,0,0,0,1,0,13890.0,3,2,3_0,3_0,1000.0,0,0.0,1000,21,21,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 -2107,2380,2379,6,8,41,400,13,31,0,13275,0,0,0,0,2,5,3,5,2.8,2236.80904383,3484,0,35610.0,1,2,0,0,4,1,1,0,1,0,0,0,0,0,0,1,12717.857142899999,3,2,3_0,3_1,33891.0,0,33891.0,0,1,8,41.0,18.0,3.3,1,1,3976.7277363762937,3976.7277363762937,0.0 +2106,2369,2368,24,24,81,112,78,71,0,13257,0,0,0,0,0,3,0,1,1.0,3451.266741,0,0,13890.0,5,1,9,1,1,1,0,0,0,1,0,0,0,0,1,0,13890.0,3,2,3_0,3_0,1000.0,0,0.0,1000,21,21,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 +2107,2380,2379,6,8,41,400,13,31,0,13275,0,0,0,0,2,5,3,5,2.8,2236.80904383,3484,0,35610.0,1,2,0,0,4,1,1,0,1,0,0,0,0,0,0,1,12717.8571429,3,2,3_0,3_1,33891.0,0,33891.0,0,1,8,41.0,18.0,3.3,1,1,3976.7277363762937,3976.7277363762937,0.0 2108,2396,2395,0,0,61,111,52,71,0,13291,0,0,0,245,1,1,0,1,1.0,3879.81090692,0,0,13610.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,13610.0,3,2,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 2109,2449,2448,15,25,48,112,62,50,0,13363,0,400,0,0,2,5,2,4,2.5,842.672413301,1560,0,31980.0,1,3,8,0,4,3,0,0,1,0,0,0,0,0,1,2,12792.0,3,2,3_0,3_1,6687.0,0,6687.0,0,11,20,539.0,73.75,3.3,0,1,784.6442528443621,784.6442528443621,0.0 2110,2514,2513,15,15,34,221,52,50,0,13469,0,0,90,261,1,2,0,1,1.0,4336.81129552,0,0,12850.0,1,3,1,2,1,1,0,1,0,1,0,0,0,1,1,0,12850.0,3,2,3_1,3_0,3546.0,0,0.0,3546,6,16,0.0,6.0,1.1,0,0,344.357508564239,0.0,344.357508564239 @@ -2117,39 +2117,39 @@ 2115,2633,2632,10,10,55,111,46,31,0,13625,0,0,0,0,2,5,2,4,2.3,1593.93530653,0,0,33779.0,1,1,7,6,4,1,0,0,0,0,1,0,0,0,0,1,14686.5217391,3,2,3_0,3_0,18000.0,0,18000.0,0,4,8,0.0,0.0,0.0,0,0,1748.0076576864926,1748.0076576864926,0.0 2116,2651,2650,18,18,78,111,78,50,0,13650,0,0,0,355,0,5,0,2,1.5,1959.48267646,0,0,20070.0,5,3,7,5,3,1,0,0,0,0,1,0,0,0,1,0,13380.0,3,2,3_0,3_0,6000.0,0,0.0,6000,14,18,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 2117,2655,2654,12,21,84,112,86,70,0,13656,0,0,0,0,0,5,0,1,1.0,1912.99897365,1166,0,13503.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,0,1,13503.0,3,2,3_0,3_1,300.0,0,300.0,0,7,16,0.0,0.0,0.0,0,0,35.20162641742315,35.20162641742315,0.0 -2118,2656,2655,0,0,33,111,65,50,0,13657,0,0,0,0,1,4,4,6,2.7,1977.83365886,0,0,34070.0,1,3,5,4,4,0,0,0,0,0,1,0,0,1,0,0,12618.518518500001,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,28.8,2.22,0,0,0.0,0.0,0.0 +2118,2656,2655,0,0,33,111,65,50,0,13657,0,0,0,0,1,4,4,6,2.7,1977.83365886,0,0,34070.0,1,3,5,4,4,0,0,0,0,0,1,0,0,1,0,0,12618.5185185,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,28.8,2.22,0,0,0.0,0.0,0.0 2119,2678,2677,1,12,67,400,71,70,2,13687,0,0,0,72,0,2,0,1,1.0,2508.79461683,1300,3450,12836.0,5,3,0,0,1,2,0,0,1,0,0,0,0,1,0,2,12836.0,3,2,3_1,3_1,12000.0,0,12000.0,0,3,15,0.0,0.0,0.0,0,0,1408.0650566969261,1408.0650566969261,0.0 -2120,2684,2683,1,1,60,212,72,50,1,13696,0,0,0,0,2,8,3,5,3.0,1721.47114145,3536,17468,43858.0,5,2,2,0,4,2,0,0,1,0,0,0,0,0,0,2,14619.333333300001,3,2,3_0,3_1,25672.0,0,25672.0,0,2,3,190.2,41.6666666667,0.0,1,1,3012.3205112936234,3012.3205112936234,0.0 +2120,2684,2683,1,1,60,212,72,50,1,13696,0,0,0,0,2,8,3,5,3.0,1721.47114145,3536,17468,43858.0,5,2,2,0,4,2,0,0,1,0,0,0,0,0,0,2,14619.3333333,3,2,3_0,3_1,25672.0,0,25672.0,0,2,3,190.2,41.6666666667,0.0,1,1,3012.3205112936234,3012.3205112936234,0.0 2121,2687,2686,4,9,24,111,62,50,0,13701,0,0,0,433,2,3,0,2,1.5,3343.3003467,0,0,20826.0,1,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,13884.0,3,2,3_0,3_0,17343.0,0,17343.0,0,5,10,145.6,60.0,3.3,0,1,1684.2053781809354,1684.2053781809354,0.0 2122,2716,2715,3,12,37,111,47,30,0,13738,0,600,0,0,1,2,0,1,1.0,3575.16783005,0,0,14467.0,1,2,8,7,1,1,1,1,0,0,0,1,0,0,0,1,14467.0,3,2,3_0,3_0,10000.0,0,10000.0,0,5,12,0.0,20.0,2.2,0,0,971.1153653813847,971.1153653813847,0.0 2123,2720,2719,4,4,43,111,65,41,0,13741,0,600,0,0,2,5,2,4,2.5,3470.50448393,0,0,31506.0,1,1,9,7,4,3,0,1,0,0,0,1,0,0,0,3,12602.4,3,2,3_0,3_0,15716.0,0,15716.0,0,0,4,0.0,12.5,3.3,0,1,1526.2049082333845,1526.2049082333845,0.0 -2124,2726,2725,0,1,39,112,47,42,0,13749,0,99999,0,0,2,5,2,4,2.1,2090.22941298,1040,0,29759.0,1,2,9,1,4,3,1,1,0,1,0,0,0,1,1,2,14170.952381000001,3,2,3_1,3_0,10000.0,0,10000.0,0,2,5,39.0,57.5,3.31,0,1,971.1153653813847,971.1153653813847,0.0 -2125,2744,2743,14,16,62,400,75,50,0,13770,0,0,50,0,1,5,0,2,1.5,1787.64100023,0,0,22033.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,14688.666666699999,3,2,3_0,3_1,3362.0,0,0.0,3362,1,19,342.5,120.0,3.3,0,0,394.49289338458874,0.0,394.49289338458874 +2124,2726,2725,0,1,39,112,47,42,0,13749,0,99999,0,0,2,5,2,4,2.1,2090.22941298,1040,0,29759.0,1,2,9,1,4,3,1,1,0,1,0,0,0,1,1,2,14170.952381,3,2,3_1,3_0,10000.0,0,10000.0,0,2,5,39.0,57.5,3.31,0,1,971.1153653813847,971.1153653813847,0.0 +2125,2744,2743,14,16,62,400,75,50,0,13770,0,0,50,0,1,5,0,2,1.5,1787.64100023,0,0,22033.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,14688.6666667,3,2,3_0,3_1,3362.0,0,0.0,3362,1,19,342.5,120.0,3.3,0,0,394.49289338458874,0.0,394.49289338458874 2126,2750,2749,0,11,45,111,68,71,0,13778,0,0,150,253,1,2,0,1,1.0,3219.49973288,520,0,14101.0,1,3,8,7,1,1,0,1,0,0,0,1,0,1,1,0,14101.0,3,2,3_1,3_0,37000.0,0,0.0,37000,3,11,33.5,35.0,3.3,0,1,3593.1268519111236,0.0,3593.1268519111236 -2127,2753,2752,1,11,36,221,21,50,2,13788,0,1800,0,0,2,6,3,5,2.4,2098.00351347,8191,5000,32731.0,1,3,1,3,4,1,0,1,0,1,0,0,0,0,0,1,13637.916666699999,3,2,3_0,3_0,7500.0,0,7500.0,0,4,15,0.0,0.0,0.0,0,1,728.3365240360386,728.3365240360386,0.0 +2127,2753,2752,1,11,36,221,21,50,2,13788,0,1800,0,0,2,6,3,5,2.4,2098.00351347,8191,5000,32731.0,1,3,1,3,4,1,0,1,0,1,0,0,0,0,0,1,13637.9166667,3,2,3_0,3_0,7500.0,0,7500.0,0,4,15,0.0,0.0,0.0,0,1,728.3365240360386,728.3365240360386,0.0 2128,2773,2772,20,28,76,120,77,70,0,13812,0,0,0,0,0,3,0,2,1.5,2007.9360935,3216,0,19628.0,5,3,0,0,3,2,0,0,1,0,0,0,0,1,2,0,13085.3333333,3,2,3_1,3_1,5500.0,0,0.0,5500,5,22,0.0,0.0,0.0,0,0,645.3631509860911,0.0,645.3631509860911 2129,2792,2791,1,12,20,111,62,50,2,13833,0,15,0,0,2,3,1,3,1.8,1880.04078031,0,2500,24259.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,13477.2222222,3,2,3_1,3_0,50000.0,0,50000.0,0,4,12,141.0,26.6666666667,3.3,0,1,4855.576826906924,4855.576826906924,0.0 -2130,2812,2811,4,20,36,111,52,50,0,13860,0,400,0,0,1,5,4,5,2.6,1568.05193969,3462,0,35340.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,13592.307692299997,3,2,3_1,3_0,15000.0,0,15000.0,0,6,16,120.6,30.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 +2130,2812,2811,4,20,36,111,52,50,0,13860,0,400,0,0,1,5,4,5,2.6,1568.05193969,3462,0,35340.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,13592.3076923,3,2,3_1,3_0,15000.0,0,15000.0,0,6,16,120.6,30.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 2131,2844,2843,0,0,40,111,85,71,0,13901,0,0,0,30,0,2,0,1,1.0,3083.05990783,0,0,13908.0,7,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,13908.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2132,2847,2846,0,0,92,111,72,71,0,13904,0,0,0,0,0,2,0,2,1.5,3519.03924477,0,0,19890.0,5,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,13260.0,3,2,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 -2133,2862,2861,4,4,70,300,78,50,0,13923,0,0,0,0,0,4,0,2,1.5,1117.34551458,1872,0,20876.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13917.333333300001,3,2,3_0,3_1,4833.0,0,4833.0,0,4,5,0.0,0.0,0.0,0,0,567.098201584687,567.098201584687,0.0 +2133,2862,2861,4,4,70,300,78,50,0,13923,0,0,0,0,0,4,0,2,1.5,1117.34551458,1872,0,20876.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13917.3333333,3,2,3_0,3_1,4833.0,0,4833.0,0,4,5,0.0,0.0,0.0,0,0,567.098201584687,567.098201584687,0.0 2134,2868,2867,0,0,49,111,52,71,0,13929,0,0,0,398,2,3,2,3,2.0,6026.02169076,0,0,28437.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,14218.5,3,2,3_0,3_0,0.0,0,0.0,0,0,0,47.5,113.333333333,5.56,0,0,0.0,0.0,0.0 2135,2888,2887,0,0,77,300,71,70,0,13957,0,0,0,0,0,3,0,1,1.0,1778.09872613,0,0,13774.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,13774.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2136,2894,2893,0,0,45,111,68,71,0,13964,0,0,0,101,1,2,0,1,1.0,3683.40321709,0,0,14517.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,14517.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2137,2919,2918,7,25,52,120,63,70,0,13992,0,0,300,0,1,3,0,1,1.0,1780.68403304,0,0,14290.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,1,0,14290.0,3,2,3_0,3_1,5000.0,0,0.0,5000,19,23,0.0,0.0,0.0,1,0,586.6937736237192,0.0,586.6937736237192 2138,2930,2929,5,5,85,111,77,71,0,14011,0,0,0,0,0,4,0,1,1.0,3450.19166747,0,0,12867.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,12867.0,3,2,3_0,3_0,17000.0,0,0.0,17000,4,4,0.0,0.0,0.0,0,0,1650.896121148354,0.0,1650.896121148354 -2139,2935,2934,15,15,75,112,71,71,0,14020,0,0,0,0,0,4,0,2,1.5,3212.81495341,0,0,21722.0,5,1,9,2,3,2,0,0,0,1,0,0,0,0,0,2,14481.333333300001,3,2,3_0,3_0,4800.0,0,4800.0,0,11,12,0.0,0.0,0.0,0,0,466.1353753830647,466.1353753830647,0.0 +2139,2935,2934,15,15,75,112,71,71,0,14020,0,0,0,0,0,4,0,2,1.5,3212.81495341,0,0,21722.0,5,1,9,2,3,2,0,0,0,1,0,0,0,0,0,2,14481.3333333,3,2,3_0,3_0,4800.0,0,4800.0,0,11,12,0.0,0.0,0.0,0,0,466.1353753830647,466.1353753830647,0.0 2140,2939,2938,4,12,28,111,56,50,0,14026,0,300,100,0,2,4,2,4,2.1,3093.45301856,0,0,27175.0,1,3,8,6,4,2,0,1,0,0,1,0,0,1,1,1,12940.4761905,3,2,3_1,3_0,21000.0,0,15000.0,6000,3,16,45.0,27.5,3.31,0,1,2039.342267300908,1456.673048072077,582.6692192288309 -2141,2957,2956,3,4,75,111,78,71,0,1405,0,0,0,271,0,4,0,2,1.5,3185.39264542,0,0,22090.0,5,3,7,5,3,1,0,0,0,0,1,0,0,1,1,0,14726.666666699999,3,2,3_1,3_0,20000.0,0,0.0,20000,4,4,0.0,0.0,0.0,0,0,1942.2307307627693,0.0,1942.2307307627693 +2141,2957,2956,3,4,75,111,78,71,0,1405,0,0,0,271,0,4,0,2,1.5,3185.39264542,0,0,22090.0,5,3,7,5,3,1,0,0,0,0,1,0,0,1,1,0,14726.6666667,3,2,3_1,3_0,20000.0,0,0.0,20000,4,4,0.0,0.0,0.0,0,0,1942.2307307627693,0.0,1942.2307307627693 2142,2961,2960,0,0,87,111,77,70,0,14054,0,0,0,219,0,2,0,1,1.0,3459.18066306,0,0,13158.0,5,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,13158.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2143,2964,2963,0,0,75,111,71,70,0,14058,0,0,0,0,0,4,0,1,1.0,2658.68931464,0,0,12758.0,5,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,12758.0,3,2,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 -2144,2976,2975,0,5,46,111,55,60,2,1407,0,200,0,340,1,3,2,3,1.8,2605.65394906,2444,4000,24347.0,1,3,9,7,2,2,0,1,0,0,0,1,0,1,0,2,13526.111111100001,3,2,3_1,3_0,19001.0,0,19001.0,0,1,10,0.0,30.0,0.0,0,1,1845.216305761169,1845.216305761169,0.0 -2145,2977,2976,14,15,48,111,52,50,0,14070,0,0,30,0,2,5,1,2,1.5,2639.46322531,0,0,21985.0,1,2,4,3,2,1,0,1,0,1,0,0,0,0,1,0,14656.666666699999,3,2,3_0,3_0,0.0,0,0.0,0,4,15,31.5,25.0,3.3,0,1,0.0,0.0,0.0 +2144,2976,2975,0,5,46,111,55,60,2,1407,0,200,0,340,1,3,2,3,1.8,2605.65394906,2444,4000,24347.0,1,3,9,7,2,2,0,1,0,0,0,1,0,1,0,2,13526.1111111,3,2,3_1,3_0,19001.0,0,19001.0,0,1,10,0.0,30.0,0.0,0,1,1845.216305761169,1845.216305761169,0.0 +2145,2977,2976,14,15,48,111,52,50,0,14070,0,0,30,0,2,5,1,2,1.5,2639.46322531,0,0,21985.0,1,2,4,3,2,1,0,1,0,1,0,0,0,0,1,0,14656.6666667,3,2,3_0,3_0,0.0,0,0.0,0,4,15,31.5,25.0,3.3,0,1,0.0,0.0,0.0 2146,2993,2992,0,24,71,111,72,71,0,14092,0,0,0,0,0,1,0,1,1.0,3090.17330937,0,0,12740.0,5,2,7,5,1,1,0,0,0,0,1,0,0,1,0,1,12740.0,3,2,3_1,3_0,800.0,0,800.0,0,6,14,0.0,0.0,0.0,0,0,77.68922923051078,77.68922923051078,0.0 2147,2994,2993,14,14,78,111,78,71,0,14093,0,0,0,0,0,3,0,1,1.0,4041.55014568,1560,0,13568.0,5,4,8,7,1,1,0,0,0,0,0,1,0,0,0,0,13568.0,3,2,3_0,3_0,5658.0,0,0.0,5658,13,14,0.0,0.0,0.0,0,0,549.4570737327874,0.0,549.4570737327874 2148,2996,2995,5,8,44,400,62,50,0,14095,0,380,0,0,1,5,2,3,1.6,1922.86799859,4212,0,23628.0,1,2,0,0,2,1,0,1,1,0,0,0,0,1,0,1,14767.5,3,2,3_1,3_1,10000.0,0,10000.0,0,3,9,0.0,8.0,0.0,0,0,1173.3875472474383,1173.3875472474383,0.0 -2149,3002,3001,3,16,66,112,78,50,0,14101,0,0,0,0,0,3,0,2,1.5,3491.04944347,3640,0,21139.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,1,0,14092.666666699999,3,2,3_0,3_1,10000.0,0,0.0,10000,4,16,0.0,0.0,0.0,0,0,1173.3875472474383,0.0,1173.3875472474383 -2150,3019,3018,2,3,48,111,46,50,0,14124,0,110,0,0,2,5,2,4,2.3,2883.13685128,0,0,33890.0,1,2,6,4,4,1,0,1,0,0,1,0,0,0,0,1,14734.782608700001,3,2,3_0,3_0,17102.0,0,17102.0,0,4,5,338.6,156.66666666700002,3.3,0,1,1660.8014978752442,1660.8014978752442,0.0 +2149,3002,3001,3,16,66,112,78,50,0,14101,0,0,0,0,0,3,0,2,1.5,3491.04944347,3640,0,21139.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,1,0,14092.6666667,3,2,3_0,3_1,10000.0,0,0.0,10000,4,16,0.0,0.0,0.0,0,0,1173.3875472474383,0.0,1173.3875472474383 +2150,3019,3018,2,3,48,111,46,50,0,14124,0,110,0,0,2,5,2,4,2.3,2883.13685128,0,0,33890.0,1,2,6,4,4,1,0,1,0,0,1,0,0,0,0,1,14734.7826087,3,2,3_0,3_0,17102.0,0,17102.0,0,4,5,338.6,156.666666667,3.3,0,1,1660.8014978752442,1660.8014978752442,0.0 2151,3026,3025,19,23,77,400,75,70,0,14133,0,0,0,0,0,5,0,1,1.0,2550.84997944,0,0,14025.0,5,3,0,0,1,1,0,0,1,0,0,0,0,0,1,0,14025.0,3,2,3_0,3_1,2200.0,0,0.0,2200,4,23,0.0,0.0,0.0,0,0,258.14526039443643,0.0,258.14526039443643 2152,3036,3035,11,11,74,112,78,50,0,14146,0,0,0,0,0,5,0,2,1.5,2372.68609265,2288,0,22125.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,1,0,14750.0,3,2,3_0,3_1,9862.0,0,0.0,9862,7,11,0.0,0.0,0.0,0,0,1157.1947990954236,0.0,1157.1947990954236 2153,3046,3045,0,0,79,111,77,71,0,14158,0,0,0,189,0,2,0,2,1.5,3526.28633219,0,0,20020.0,5,3,9,7,3,0,0,0,0,0,0,1,0,0,0,0,13346.6666667,3,2,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 @@ -2159,20 +2159,20 @@ 2157,3062,3061,1,1,64,111,78,71,0,14179,0,0,0,0,0,4,0,2,1.5,2146.12232459,3640,0,22164.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,2,0,14776.0,3,2,3_0,3_0,9036.0,0,0.0,9036,1,7,0.0,0.0,0.0,0,0,877.4998441586192,0.0,877.4998441586192 2158,3087,3086,8,8,53,120,63,50,0,14208,0,250,0,0,2,5,1,3,2.0,1457.86268835,0,0,29563.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,14781.5,3,2,3_0,3_1,8000.0,0,8000.0,0,13,13,50.4,10.0,0.0,0,1,938.7100377979507,938.7100377979507,0.0 2159,3094,3093,3,8,75,111,86,70,0,14219,0,0,0,0,0,6,0,1,1.0,2045.64838107,0,0,12585.0,6,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,12585.0,3,2,3_0,3_0,9000.0,0,0.0,9000,4,8,0.0,0.0,0.0,0,0,874.0038288432463,0.0,874.0038288432463 -2160,3100,3099,15,15,79,111,75,70,0,14227,0,0,0,0,0,4,0,2,1.5,1942.03324856,2080,0,20159.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,13439.333333300001,3,2,3_0,3_0,14700.0,0,14700.0,0,7,13,0.0,0.0,0.0,0,0,1427.5395871106357,1427.5395871106357,0.0 +2160,3100,3099,15,15,79,111,75,70,0,14227,0,0,0,0,0,4,0,2,1.5,1942.03324856,2080,0,20159.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,13439.3333333,3,2,3_0,3_0,14700.0,0,14700.0,0,7,13,0.0,0.0,0.0,0,0,1427.5395871106357,1427.5395871106357,0.0 2161,3116,3115,0,0,62,111,78,60,0,14249,0,0,0,268,0,2,0,1,1.0,2454.92414568,0,0,13310.0,5,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,13310.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2162,3118,3117,1,1,47,111,65,60,0,14252,0,300,390,0,3,6,4,6,3.1,998.601408201,4160,0,45750.0,1,2,6,4,4,3,0,1,0,0,1,0,0,0,2,1,14758.064516100001,3,2,3_0,3_0,25000.0,0,25000.0,0,3,3,207.2,105.0,2.2,0,1,2427.788413453462,2427.788413453462,0.0 -2163,3141,3140,0,0,31,111,52,50,0,14284,0,0,0,405,1,3,1,3,2.0,3408.3263700999996,0,0,26061.0,1,3,9,7,5,0,0,0,0,0,0,1,0,0,0,0,13030.5,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,1,0.0,0.0,0.0 -2164,3144,3143,0,0,28,111,35,30,0,14288,0,0,0,0,2,3,0,2,1.5,2794.78138854,0,0,20485.0,1,4,10,8,3,0,0,0,0,0,0,0,1,0,0,0,13656.666666699999,3,2,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 +2162,3118,3117,1,1,47,111,65,60,0,14252,0,300,390,0,3,6,4,6,3.1,998.601408201,4160,0,45750.0,1,2,6,4,4,3,0,1,0,0,1,0,0,0,2,1,14758.0645161,3,2,3_0,3_0,25000.0,0,25000.0,0,3,3,207.2,105.0,2.2,0,1,2427.788413453462,2427.788413453462,0.0 +2163,3141,3140,0,0,31,111,52,50,0,14284,0,0,0,405,1,3,1,3,2.0,3408.3263701,0,0,26061.0,1,3,9,7,5,0,0,0,0,0,0,1,0,0,0,0,13030.5,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,1,0.0,0.0,0.0 +2164,3144,3143,0,0,28,111,35,30,0,14288,0,0,0,0,2,3,0,2,1.5,2794.78138854,0,0,20485.0,1,4,10,8,3,0,0,0,0,0,0,0,1,0,0,0,13656.6666667,3,2,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 2165,3148,3147,6,15,41,111,52,41,0,14293,0,0,300,0,1,2,0,1,1.0,3199.07600914,1144,0,12970.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,12970.0,3,2,3_0,3_0,31000.0,0,0.0,31000,7,11,0.0,0.0,0.0,0,0,3010.4576326822926,0.0,3010.4576326822926 -2166,3149,3148,28,28,79,111,74,60,0,14294,0,0,0,0,0,5,0,2,1.5,2319.27359005,0,0,20536.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,13690.666666699999,3,2,3_0,3_0,2000.0,0,0.0,2000,16,24,0.0,0.0,0.0,0,0,194.22307307627693,0.0,194.22307307627693 -2167,3161,3160,0,0,79,112,78,70,0,14311,0,0,0,0,0,4,0,1,1.0,1948.1842877000001,0,0,14089.0,5,4,5,0,1,0,0,0,1,0,0,0,0,0,0,0,14089.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2166,3149,3148,28,28,79,111,74,60,0,14294,0,0,0,0,0,5,0,2,1.5,2319.27359005,0,0,20536.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,13690.6666667,3,2,3_0,3_0,2000.0,0,0.0,2000,16,24,0.0,0.0,0.0,0,0,194.22307307627693,0.0,194.22307307627693 +2167,3161,3160,0,0,79,112,78,70,0,14311,0,0,0,0,0,4,0,1,1.0,1948.1842877,0,0,14089.0,5,4,5,0,1,0,0,0,1,0,0,0,0,0,0,0,14089.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2168,3181,3180,7,9,55,111,64,60,0,14335,0,0,100,0,2,5,1,3,2.0,1608.97272013,0,0,26596.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,2,0,13298.0,3,2,3_0,3_0,4000.0,0,0.0,4000,7,9,0.0,0.0,0.0,0,0,388.44614615255387,0.0,388.44614615255387 2169,3186,3185,0,13,26,221,62,41,0,14342,0,0,0,0,1,5,0,1,1.0,1732.19949199,0,0,13312.0,4,4,1,2,1,1,0,0,0,1,0,0,0,1,1,0,13312.0,3,2,3_1,3_0,6500.0,0,0.0,6500,6,14,0.0,0.0,0.0,0,1,631.2249874979001,0.0,631.2249874979001 -2170,3192,3191,7,7,45,111,64,71,0,14357,0,700,50,479,2,4,2,4,2.5,2108.69986618,1768,0,34355.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,1,1,13742.0,3,2,3_0,3_0,27311.0,0,15311.0,12000,7,9,0.0,11.666666666700001,3.31,0,1,2652.2131743930995,1486.8747359354381,1165.3384384576618 +2170,3192,3191,7,7,45,111,64,71,0,14357,0,700,50,479,2,4,2,4,2.5,2108.69986618,1768,0,34355.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,1,1,13742.0,3,2,3_0,3_0,27311.0,0,15311.0,12000,7,9,0.0,11.6666666667,3.31,0,1,2652.2131743930995,1486.8747359354381,1165.3384384576618 2171,3247,3246,2,14,65,111,78,70,0,14438,0,0,0,251,0,2,0,1,1.0,3586.93706866,0,0,13563.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,1,0,13563.0,3,2,3_0,3_0,6476.0,0,0.0,6476,1,15,0.0,0.0,0.0,0,0,628.8943106209848,0.0,628.8943106209848 2172,3274,3273,11,16,82,400,71,70,0,14475,0,0,0,0,0,4,0,1,1.0,2075.61835172,0,0,13526.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,0,1,13526.0,3,2,3_0,3_1,300.0,0,300.0,0,7,16,0.0,0.0,0.0,0,0,35.20162641742315,35.20162641742315,0.0 -2173,3288,3287,7,8,74,300,78,60,0,14496,0,0,0,0,0,4,0,2,1.5,2647.789752,2404,0,22156.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,14770.666666699999,3,2,3_0,3_1,12000.0,0,12000.0,0,6,9,0.0,0.0,0.0,0,0,1408.0650566969261,1408.0650566969261,0.0 +2173,3288,3287,7,8,74,300,78,60,0,14496,0,0,0,0,0,4,0,2,1.5,2647.789752,2404,0,22156.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,14770.6666667,3,2,3_0,3_1,12000.0,0,12000.0,0,6,9,0.0,0.0,0.0,0,0,1408.0650566969261,1408.0650566969261,0.0 2174,3290,3289,1,1,25,111,47,42,2,1450,0,0,0,0,1,1,0,2,1.5,3538.2289596,0,9100,19373.0,1,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,12915.3333333,3,2,3_0,3_0,35000.0,0,35000.0,0,2,8,63.5,22.0,3.31,0,1,3398.903778834847,3398.903778834847,0.0 2175,3291,3290,0,0,63,111,75,41,0,14500,0,0,0,0,0,4,0,1,1.0,4583.74571653,0,0,13969.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,13969.0,3,2,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 2176,3301,3300,2,2,43,111,52,50,0,14514,0,850,0,0,2,5,2,4,2.5,3029.62312894,5662,0,32398.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,12959.2,3,2,3_0,3_0,17102.0,0,17102.0,0,3,3,0.0,7.5,3.3,0,1,1660.8014978752442,1660.8014978752442,0.0 @@ -2181,86 +2181,86 @@ 2179,3312,3311,12,12,69,300,77,70,0,14531,0,0,0,0,0,4,0,1,1.0,1379.84960237,4472,0,13832.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,13832.0,3,2,3_0,3_1,9000.0,0,9000.0,0,11,12,0.0,0.0,0.0,0,0,1056.0487925226946,1056.0487925226946,0.0 2180,3351,3350,9,9,71,111,77,70,0,14581,0,0,0,477,0,4,0,1,1.0,3696.52368932,2728,0,13612.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,13612.0,3,2,3_1,3_0,8986.0,0,0.0,8986,10,10,0.0,0.0,0.0,0,0,872.6442673317123,0.0,872.6442673317123 2181,3358,3357,4,7,55,111,56,71,0,14590,0,0,70,0,2,3,0,2,1.5,4530.68211047,2080,0,18980.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,2,0,12653.3333333,3,2,3_0,3_0,10000.0,0,0.0,10000,5,8,36.9,30.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 -2182,3402,3401,0,0,25,111,85,43,0,14649,0,0,0,0,0,2,0,1,1.0,3475.8952108000003,0,0,13486.0,7,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13486.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2182,3402,3401,0,0,25,111,85,43,0,14649,0,0,0,0,0,2,0,1,1.0,3475.8952108,0,0,13486.0,7,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13486.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2183,3437,3436,2,8,34,111,67,50,0,14697,0,200,0,325,2,3,1,3,1.8,2170.13998072,1560,0,24962.0,1,3,7,5,4,2,0,1,0,0,1,0,0,1,1,1,13867.7777778,3,2,3_1,3_0,26759.0,0,17343.0,9416,9,9,55.6,32.0,3.3,0,1,2598.6076062240472,1684.2053781809354,914.4022280431119 2184,3441,3440,2,2,48,112,52,60,0,14703,0,350,0,0,2,7,1,3,1.8,3567.90154924,0,0,25057.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,13920.5555556,3,2,3_0,3_1,8287.0,0,8287.0,0,1,2,41.2,40.0,0.0,0,0,972.3862604039522,972.3862604039522,0.0 2185,3444,3443,2,19,69,111,78,50,0,14706,0,250,0,0,1,3,1,3,2.0,863.538479928,0,0,25673.0,5,1,6,5,4,2,0,0,0,0,1,0,0,0,0,2,12836.5,3,2,3_0,3_0,5000.0,0,5000.0,0,7,19,0.0,0.0,0.0,0,1,485.55768269069233,485.55768269069233,0.0 2186,3469,3468,3,6,63,111,77,50,0,14740,0,0,0,440,0,2,0,1,1.0,3734.11837463,1522,0,12940.0,5,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,12940.0,3,2,3_1,3_0,6000.0,0,0.0,6000,5,7,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 -2187,3471,3470,0,0,24,111,52,50,0,14742,0,0,0,263,2,3,1,3,1.8,5023.66339016,2080,0,24721.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,13733.888888899999,3,2,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 +2187,3471,3470,0,0,24,111,52,50,0,14742,0,0,0,263,2,3,1,3,1.8,5023.66339016,2080,0,24721.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,13733.8888889,3,2,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 2188,3486,3485,8,10,67,400,71,50,0,14765,0,0,0,0,0,5,0,2,1.5,1591.98590144,1487,0,18944.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,12629.3333333,3,2,3_0,3_1,1600.0,0,600.0,1000,6,6,0.0,0.0,0.0,0,0,187.74200755959015,70.4032528348463,117.33875472474384 2189,3505,3504,14,14,59,111,78,50,0,14794,0,0,0,243,0,2,0,1,1.0,2619.70903164,780,0,14129.0,7,3,8,6,1,1,0,0,0,0,1,0,0,0,1,0,14129.0,3,2,3_0,3_0,8000.0,0,0.0,8000,13,13,0.0,0.0,0.0,0,0,776.8922923051077,0.0,776.8922923051077 2190,3512,3511,1,1,43,111,43,10,0,14804,200,0,0,0,1,4,2,3,2.0,3915.17541137,1557,0,25786.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,0,0,12893.0,3,2,3_0,3_0,10000.0,0,0.0,10000,3,5,0.0,15.0,0.0,0,1,971.1153653813847,0.0,971.1153653813847 -2191,3520,3519,1,1,67,111,75,50,0,14813,0,0,0,0,0,4,0,2,1.5,2822.80040392,0,0,21896.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,14597.333333300001,3,2,3_0,3_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 -2192,3524,3523,3,19,33,112,53,60,0,14818,0,0,0,0,1,5,2,4,2.1,3858.40942265,2080,0,26603.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,1,1,12668.095238099999,3,2,3_1,3_1,18500.0,0,18500.0,0,1,11,0.0,0.0,0.0,1,0,2170.7669624077607,2170.7669624077607,0.0 +2191,3520,3519,1,1,67,111,75,50,0,14813,0,0,0,0,0,4,0,2,1.5,2822.80040392,0,0,21896.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,14597.3333333,3,2,3_0,3_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 +2192,3524,3523,3,19,33,112,53,60,0,14818,0,0,0,0,1,5,2,4,2.1,3858.40942265,2080,0,26603.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,1,1,12668.0952381,3,2,3_1,3_1,18500.0,0,18500.0,0,1,11,0.0,0.0,0.0,1,0,2170.7669624077607,2170.7669624077607,0.0 2193,3529,3528,16,16,87,111,72,70,0,14828,0,0,0,0,0,3,0,2,1.5,1679.82359279,0,0,19530.0,5,3,5,4,3,1,0,0,0,0,1,0,0,0,1,0,13020.0,3,2,3_0,3_0,1700.0,0,0.0,1700,16,16,0.0,0.0,0.0,0,0,165.0896121148354,0.0,165.0896121148354 2194,3535,3534,0,0,42,120,69,50,0,14834,0,0,0,0,1,3,0,1,1.0,2507.97537342,0,0,14756.0,4,3,0,2,1,0,0,0,0,1,0,0,0,1,0,0,14756.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2195,3581,3580,1,3,72,400,77,50,0,14901,0,0,0,0,1,5,1,3,2.0,3499.36931899,2340,0,27980.0,5,3,0,1,4,2,0,0,0,1,0,0,0,1,2,0,13990.0,3,2,3_1,3_0,38600.0,0,0.0,38600,3,3,0.0,0.0,0.0,0,1,3748.5053103721452,0.0,3748.5053103721452 -2196,3587,3586,0,5,43,111,38,31,2,14909,0,0,0,0,1,7,3,5,2.8,1512.90529027,2086,13850,38718.0,1,2,8,7,4,1,0,0,0,0,0,1,0,0,0,1,13827.857142899999,3,2,3_0,3_0,25000.0,0,25000.0,0,2,3,0.0,0.0,0.0,0,0,2427.788413453462,2427.788413453462,0.0 -2197,3601,3600,14,14,82,111,77,71,0,14929,0,0,0,0,0,6,0,2,1.5,2098.33477874,0,0,21487.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,14324.666666699999,3,2,3_0,3_0,3000.0,0,0.0,3000,12,13,0.0,0.0,0.0,0,0,291.33460961441546,0.0,291.33460961441546 +2196,3587,3586,0,5,43,111,38,31,2,14909,0,0,0,0,1,7,3,5,2.8,1512.90529027,2086,13850,38718.0,1,2,8,7,4,1,0,0,0,0,0,1,0,0,0,1,13827.8571429,3,2,3_0,3_0,25000.0,0,25000.0,0,2,3,0.0,0.0,0.0,0,0,2427.788413453462,2427.788413453462,0.0 +2197,3601,3600,14,14,82,111,77,71,0,14929,0,0,0,0,0,6,0,2,1.5,2098.33477874,0,0,21487.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,14324.6666667,3,2,3_0,3_0,3000.0,0,0.0,3000,12,13,0.0,0.0,0.0,0,0,291.33460961441546,0.0,291.33460961441546 2198,3603,3602,9,9,35,111,68,50,0,14933,0,0,0,0,1,4,3,5,2.4,1315.06807737,0,0,32036.0,1,4,6,5,4,1,0,0,0,0,1,0,0,0,0,1,13348.3333333,3,2,3_0,3_0,15000.0,0,15000.0,0,6,16,120.6,30.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 2199,3607,3606,2,2,49,111,22,60,0,14938,0,0,0,0,2,5,1,3,2.0,1971.21334389,0,0,27420.0,1,3,4,4,4,1,0,0,0,0,1,0,0,0,0,1,13710.0,3,2,3_0,3_0,75000.0,0,75000.0,0,2,2,77.0,16.6666666667,3.3,1,0,7283.3652403603855,7283.3652403603855,0.0 2200,3615,3614,1,1,63,111,78,70,1,14948,0,0,0,0,0,3,0,1,1.0,1858.62490161,0,11500,13068.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,13068.0,3,2,3_1,3_0,0.0,0,0.0,0,14,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2201,3624,3623,0,0,49,111,68,50,0,14959,0,0,0,40,2,3,0,2,1.5,2285.6002633000003,0,0,22160.0,1,3,6,5,3,0,0,0,0,0,1,0,0,1,0,0,14773.333333300001,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 -2202,3634,3633,9,11,71,300,71,70,0,14978,0,0,0,0,0,5,0,2,1.5,1475.48482636,1768,0,20510.0,5,1,0,0,5,1,0,0,1,0,0,0,0,0,1,0,13673.333333300001,3,2,3_0,3_1,10000.0,0,0.0,10000,10,10,0.0,0.0,0.0,0,0,1173.3875472474383,0.0,1173.3875472474383 +2201,3624,3623,0,0,49,111,68,50,0,14959,0,0,0,40,2,3,0,2,1.5,2285.6002633,0,0,22160.0,1,3,6,5,3,0,0,0,0,0,1,0,0,1,0,0,14773.3333333,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 +2202,3634,3633,9,11,71,300,71,70,0,14978,0,0,0,0,0,5,0,2,1.5,1475.48482636,1768,0,20510.0,5,1,0,0,5,1,0,0,1,0,0,0,0,0,1,0,13673.3333333,3,2,3_0,3_1,10000.0,0,0.0,10000,10,10,0.0,0.0,0.0,0,0,1173.3875472474383,0.0,1173.3875472474383 2203,3643,3642,0,0,76,111,86,70,0,14987,0,0,0,431,0,2,0,1,1.0,2873.15717629,0,0,13727.0,5,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,13727.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2204,3647,3646,8,21,39,111,62,50,0,14990,0,0,0,0,2,4,5,7,3.0,1389.49398844,0,0,42724.0,1,2,9,7,4,1,1,1,0,0,0,1,0,1,0,1,14241.333333300001,3,2,3_1,3_0,55000.0,0,55000.0,0,4,19,650.5,53.3333333333,3.3,0,1,5341.134509597616,5341.134509597616,0.0 -2205,3652,3651,5,5,58,111,62,71,0,14995,0,0,0,450,1,3,0,2,1.5,3171.88478521,1066,0,21589.0,1,3,7,6,3,1,0,0,0,0,1,0,0,0,0,1,14392.666666699999,3,2,3_0,3_0,13500.0,0,13500.0,0,3,3,0.0,0.0,0.0,0,0,1311.0057432648694,1311.0057432648694,0.0 +2204,3647,3646,8,21,39,111,62,50,0,14990,0,0,0,0,2,4,5,7,3.0,1389.49398844,0,0,42724.0,1,2,9,7,4,1,1,1,0,0,0,1,0,1,0,1,14241.3333333,3,2,3_1,3_0,55000.0,0,55000.0,0,4,19,650.5,53.3333333333,3.3,0,1,5341.134509597616,5341.134509597616,0.0 +2205,3652,3651,5,5,58,111,62,71,0,14995,0,0,0,450,1,3,0,2,1.5,3171.88478521,1066,0,21589.0,1,3,7,6,3,1,0,0,0,0,1,0,0,0,0,1,14392.6666667,3,2,3_0,3_0,13500.0,0,13500.0,0,3,3,0.0,0.0,0.0,0,0,1311.0057432648694,1311.0057432648694,0.0 2206,3660,3659,0,0,26,111,42,10,0,15007,0,0,0,163,1,1,0,1,1.0,3444.76223901,0,0,13723.0,3,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13723.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,50.0,5.5,0,0,0.0,0.0,0.0 2207,3665,3664,8,17,74,300,78,71,0,15011,0,0,0,0,0,6,0,2,1.5,2007.66829906,0,0,22212.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,14808.0,3,2,3_0,3_1,9000.0,0,9000.0,0,11,17,0.0,0.0,0.0,0,0,1056.0487925226946,1056.0487925226946,0.0 -2208,3668,3667,11,13,74,221,71,70,0,15015,0,0,0,0,0,4,0,2,1.5,2228.95076885,0,0,20228.0,5,1,1,1,3,2,0,0,0,1,0,0,0,0,0,2,13485.333333300001,3,2,3_0,3_0,4800.0,0,4800.0,0,11,12,0.0,0.0,0.0,0,0,466.1353753830647,466.1353753830647,0.0 -2209,3673,3672,0,11,62,111,52,71,0,15020,0,0,0,0,1,3,0,2,1.5,4340.9510725,2496,0,22160.0,1,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,14773.333333300001,3,2,3_0,3_0,3500.0,0,0.0,3500,10,10,0.0,0.0,0.0,0,1,339.8903778834847,0.0,339.8903778834847 -2210,3701,3700,0,0,72,400,78,71,0,15051,0,0,0,0,0,2,0,2,1.5,2968.7121786,0,0,21521.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,14347.333333300001,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2211,3703,3702,5,9,38,111,55,43,0,15054,0,0,0,0,2,3,2,4,2.1,1467.8397701,7540,0,31040.0,1,2,4,4,4,1,0,0,0,0,1,0,0,0,0,1,14780.952381000001,3,2,3_0,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 -2212,3720,3719,0,0,34,111,45,20,0,15077,0,0,0,354,1,4,3,4,2.1,2461.05429208,0,0,28948.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,13784.761904799998,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2213,3725,3724,0,21,40,111,67,50,0,15084,0,750,0,567,2,3,2,4,2.1,2953.8256274,913,0,30174.0,1,3,9,7,4,3,1,1,0,0,0,1,0,1,0,3,14368.571428600002,3,2,3_1,3_0,20000.0,0,20000.0,0,4,14,0.0,0.0,0.0,0,1,1942.2307307627693,1942.2307307627693,0.0 +2208,3668,3667,11,13,74,221,71,70,0,15015,0,0,0,0,0,4,0,2,1.5,2228.95076885,0,0,20228.0,5,1,1,1,3,2,0,0,0,1,0,0,0,0,0,2,13485.3333333,3,2,3_0,3_0,4800.0,0,4800.0,0,11,12,0.0,0.0,0.0,0,0,466.1353753830647,466.1353753830647,0.0 +2209,3673,3672,0,11,62,111,52,71,0,15020,0,0,0,0,1,3,0,2,1.5,4340.9510725,2496,0,22160.0,1,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,14773.3333333,3,2,3_0,3_0,3500.0,0,0.0,3500,10,10,0.0,0.0,0.0,0,1,339.8903778834847,0.0,339.8903778834847 +2210,3701,3700,0,0,72,400,78,71,0,15051,0,0,0,0,0,2,0,2,1.5,2968.7121786,0,0,21521.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,14347.3333333,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2211,3703,3702,5,9,38,111,55,43,0,15054,0,0,0,0,2,3,2,4,2.1,1467.8397701,7540,0,31040.0,1,2,4,4,4,1,0,0,0,0,1,0,0,0,0,1,14780.952381,3,2,3_0,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 +2212,3720,3719,0,0,34,111,45,20,0,15077,0,0,0,354,1,4,3,4,2.1,2461.05429208,0,0,28948.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,13784.7619048,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2213,3725,3724,0,21,40,111,67,50,0,15084,0,750,0,567,2,3,2,4,2.1,2953.8256274,913,0,30174.0,1,3,9,7,4,3,1,1,0,0,0,1,0,1,0,3,14368.5714286,3,2,3_1,3_0,20000.0,0,20000.0,0,4,14,0.0,0.0,0.0,0,1,1942.2307307627693,1942.2307307627693,0.0 2214,3754,3753,10,10,80,111,75,70,0,15122,0,0,0,0,0,4,0,2,1.5,3633.16580789,0,0,20790.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,13860.0,3,2,3_0,3_0,6000.0,0,0.0,6000,10,10,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 2215,3766,3765,7,9,42,111,85,20,0,15138,0,0,0,195,0,4,0,1,1.0,2900.00067339,0,0,14285.0,7,3,10,8,1,1,0,0,0,0,0,0,1,1,1,0,14285.0,3,2,3_1,3_0,3000.0,0,0.0,3000,7,7,0.0,0.0,0.0,0,0,291.33460961441546,0.0,291.33460961441546 2216,3778,3777,3,3,41,112,47,50,0,15155,0,250,200,0,2,5,2,4,2.5,1124.16997654,1560,0,35850.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,1,1,14340.0,3,2,3_0,3_1,41000.0,0,21000.0,20000,4,4,0.0,36.6666666667,3.3,0,1,4810.888943714497,2464.1138492196205,2346.7750944948766 2217,3795,3794,8,8,30,111,56,71,0,15184,0,200,0,233,1,2,0,1,1.0,2743.88834339,1561,0,14530.0,1,3,7,6,1,1,0,1,0,0,1,0,0,0,0,1,14530.0,3,2,3_0,3_0,20000.0,0,20000.0,0,6,8,68.0,30.0,3.3,0,1,1942.2307307627693,1942.2307307627693,0.0 2218,3799,3798,4,9,76,400,71,70,0,1519,0,0,0,0,0,4,0,1,1.0,3059.18724638,2600,0,14009.0,5,2,0,0,1,2,0,0,1,0,0,0,0,0,1,1,14009.0,3,2,3_0,3_1,9600.0,0,2600.0,7000,5,8,0.0,0.0,0.0,0,0,1126.4520453575408,305.08076228433396,821.3712830732069 -2219,3805,3804,0,0,42,111,46,50,0,15198,0,0,0,0,1,2,1,2,1.3,3365.24167087,0,0,18658.0,1,2,10,8,2,0,0,0,0,0,0,0,1,0,0,0,14352.307692299997,3,2,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 +2219,3805,3804,0,0,42,111,46,50,0,15198,0,0,0,0,1,2,1,2,1.3,3365.24167087,0,0,18658.0,1,2,10,8,2,0,0,0,0,0,0,0,1,0,0,0,14352.3076923,3,2,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 2220,3820,3819,3,3,59,111,62,70,0,1522,0,0,0,0,1,4,1,3,2.0,1028.22246497,0,0,29061.0,1,1,5,4,4,2,0,0,0,0,1,0,0,0,0,2,14530.5,3,2,3_0,3_0,54562.0,0,54562.0,0,1,9,0.0,10.0,0.0,0,0,5298.599656593911,5298.599656593911,0.0 2221,3822,3821,4,8,37,400,21,50,0,15222,0,400,0,0,2,5,2,4,2.1,2395.7626376,4680,0,29358.0,1,2,0,0,4,2,0,1,1,0,0,0,0,1,0,2,13980.0,3,2,3_1,3_1,25000.0,0,25000.0,0,7,10,163.5,115.0,3.3,0,1,2933.4688681185958,2933.4688681185958,0.0 -2222,3859,3858,0,8,55,111,63,31,2,15277,0,0,20,211,2,6,6,8,3.7,1229.78853431,1040,1500,48301.0,1,3,10,8,4,3,0,0,0,0,0,0,1,1,2,1,13054.324324299998,3,2,3_1,3_0,21716.0,0,16716.0,5000,7,13,148.6,50.0,0.0,0,1,2108.8741274622153,1623.3164447715228,485.55768269069233 +2222,3859,3858,0,8,55,111,63,31,2,15277,0,0,20,211,2,6,6,8,3.7,1229.78853431,1040,1500,48301.0,1,3,10,8,4,3,0,0,0,0,0,0,1,1,2,1,13054.3243243,3,2,3_1,3_0,21716.0,0,16716.0,5000,7,13,148.6,50.0,0.0,0,1,2108.8741274622153,1623.3164447715228,485.55768269069233 2223,3863,3862,0,18,27,111,52,20,0,15287,0,0,800,280,1,1,0,1,1.0,2444.53173574,0,0,14194.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,14194.0,3,2,3_0,3_0,7000.0,0,0.0,7000,11,20,0.0,60.0,5.56,0,0,679.7807557669694,0.0,679.7807557669694 -2224,3871,3870,2,2,78,300,71,70,0,153,0,0,0,0,0,7,0,2,1.5,1797.40264358,2241,0,22066.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,14710.666666699999,3,2,3_0,3_1,8000.0,0,0.0,8000,2,2,0.0,0.0,0.0,0,0,938.7100377979507,0.0,938.7100377979507 +2224,3871,3870,2,2,78,300,71,70,0,153,0,0,0,0,0,7,0,2,1.5,1797.40264358,2241,0,22066.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,14710.6666667,3,2,3_0,3_1,8000.0,0,0.0,8000,2,2,0.0,0.0,0.0,0,0,938.7100377979507,0.0,938.7100377979507 2225,3878,3877,13,13,52,111,85,50,0,1531,0,0,0,132,1,5,0,2,1.5,2914.96621577,0,0,19774.0,7,3,9,7,3,2,0,0,0,0,0,1,0,1,1,1,13182.6666667,3,2,3_1,3_0,4000.0,0,4000.0,0,10,10,0.0,50.0,5.5,0,1,388.44614615255387,388.44614615255387,0.0 2226,3881,3880,0,6,61,111,75,30,0,15313,0,0,0,0,0,4,0,1,1.0,3363.09306577,3225,0,13391.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,13391.0,3,2,3_0,3_0,2500.0,0,0.0,2500,2,6,0.0,0.0,0.0,0,0,242.77884134534617,0.0,242.77884134534617 2227,3883,3882,0,0,70,111,75,20,0,15315,0,0,0,46,0,1,0,1,1.0,3390.43204652,0,0,13500.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,13500.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2228,3893,3892,1,13,24,300,65,50,0,15328,0,0,452,278,1,4,2,4,2.1,2270.64784678,2080,0,27458.0,1,3,0,1,4,1,0,1,0,1,0,0,0,1,1,0,13075.2380952,3,2,3_1,3_0,15000.0,0,0.0,15000,4,9,0.0,0.0,0.0,0,1,1456.673048072077,0.0,1456.673048072077 2229,3907,3906,7,9,67,300,74,50,0,15349,0,0,0,0,0,5,0,2,1.5,873.331085475,2874,0,20022.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,13348.0,3,2,3_0,3_0,3000.0,0,0.0,3000,7,10,0.0,0.0,0.0,0,0,291.33460961441546,0.0,291.33460961441546 2230,3913,3912,21,21,78,112,78,71,0,15359,0,0,0,0,0,4,0,1,1.0,2244.19156355,1560,0,14642.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,14642.0,3,2,3_0,3_1,2200.0,0,0.0,2200,4,23,0.0,0.0,0.0,0,0,258.14526039443643,0.0,258.14526039443643 -2231,3927,3926,0,0,41,111,48,30,0,15376,0,0,0,165,1,4,3,7,3.4,2570.11702211,0,0,48334.0,1,3,10,8,5,0,0,0,0,0,0,0,1,1,0,0,14215.882352899998,3,2,3_1,3_0,0.0,0,0.0,0,0,0,23.1,23.3333333333,5.5,0,0,0.0,0.0,0.0 +2231,3927,3926,0,0,41,111,48,30,0,15376,0,0,0,165,1,4,3,7,3.4,2570.11702211,0,0,48334.0,1,3,10,8,5,0,0,0,0,0,0,0,1,1,0,0,14215.8823529,3,2,3_1,3_0,0.0,0,0.0,0,0,0,23.1,23.3333333333,5.5,0,0,0.0,0.0,0.0 2232,3929,3928,0,25,63,112,71,71,2,15378,0,0,0,0,0,5,0,2,1.5,4846.16858897,1820,760,21798.0,5,3,5,0,3,2,0,0,1,0,0,0,0,0,2,0,14532.0,3,2,3_0,3_1,1000.0,0,0.0,1000,10,20,0.0,0.0,0.0,0,0,117.33875472474384,0.0,117.33875472474384 2233,3931,3930,6,6,63,112,72,50,0,1538,0,0,0,0,0,5,0,2,1.5,2260.17074134,2080,0,20108.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,13405.3333333,3,2,3_0,3_1,1600.0,0,600.0,1000,6,6,0.0,0.0,0.0,0,0,187.74200755959015,70.4032528348463,117.33875472474384 2234,3932,3931,1,13,26,111,55,20,2,15380,0,0,500,0,1,1,0,1,1.0,5860.80960205,338,1000,13079.0,1,3,10,8,1,1,0,1,0,0,0,0,1,1,1,0,13079.0,3,2,3_1,3_0,5000.0,0,0.0,5000,7,11,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 2235,3935,3934,5,16,49,112,46,60,0,15383,0,350,0,0,2,5,0,2,1.5,1315.82064556,3851,0,21828.0,1,2,8,1,3,2,0,1,0,1,0,0,0,0,1,1,14552.0,3,2,3_0,3_0,27057.0,0,16353.0,10704,5,15,67.2,84.5,3.3,0,0,2627.5468441124126,1588.0649570081785,1039.4818871042344 2236,3951,3950,15,45,53,112,62,50,0,15402,0,650,0,0,1,5,1,3,2.0,1843.32356945,0,0,28415.0,1,1,8,0,4,9,0,0,1,0,0,0,0,0,7,2,14207.5,3,2,3_0,3_1,6000.0,0,6000.0,0,7,15,0.0,0.0,0.0,0,1,704.0325283484631,704.0325283484631,0.0 -2237,3956,3955,6,19,53,111,47,50,0,15410,0,0,80,0,1,6,3,5,3.0,1405.5420310999998,2080,0,38230.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,1,12743.3333333,3,2,3_0,3_0,10673.0,0,7059.0,3614,1,21,0.0,0.0,0.0,0,0,1036.471429471552,685.5103364227194,350.9610930488325 +2237,3956,3955,6,19,53,111,47,50,0,15410,0,0,80,0,1,6,3,5,3.0,1405.5420311,2080,0,38230.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,1,12743.3333333,3,2,3_0,3_0,10673.0,0,7059.0,3614,1,21,0.0,0.0,0.0,0,0,1036.471429471552,685.5103364227194,350.9610930488325 2238,3958,3957,0,0,73,111,77,71,0,15413,0,0,0,0,0,3,0,1,1.0,2895.51455044,0,0,13970.0,5,3,6,4,1,0,0,0,0,0,1,0,0,0,0,0,13970.0,3,2,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 2239,3966,3965,5,21,42,112,65,71,0,15423,0,40,0,0,1,2,1,3,1.8,2773.89942811,982,0,24970.0,1,3,10,1,4,1,0,1,0,1,0,0,0,0,0,1,13872.2222222,3,2,3_0,3_0,13682.0,0,13682.0,0,3,14,0.0,0.0,0.0,0,1,1328.6800429148107,1328.6800429148107,0.0 2240,3971,3970,7,12,36,111,84,50,0,15430,0,500,0,233,0,2,1,2,1.3,4735.8866526,2600,0,18590.0,3,3,6,5,2,1,0,1,0,0,1,0,0,1,0,1,14300.0,3,2,3_1,3_0,25000.0,0,25000.0,0,5,14,24.3,37.0,3.3,0,1,2427.788413453462,2427.788413453462,0.0 2241,3977,3976,0,0,64,111,75,70,0,15438,0,0,0,0,0,3,0,1,1.0,3043.61911151,0,0,13339.0,5,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,13339.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2242,3979,3978,10,10,83,120,77,71,0,15442,0,0,0,0,0,8,0,2,1.5,3443.60064361,0,0,19906.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13270.6666667,3,2,3_0,3_1,10000.0,0,10000.0,0,13,13,0.0,0.0,0.0,0,0,1173.3875472474383,1173.3875472474383,0.0 -2243,3981,3980,20,20,79,112,78,50,0,15444,0,0,0,0,0,4,0,2,1.5,1772.71739883,0,0,21100.0,5,1,6,1,3,1,0,0,0,1,0,0,0,0,1,0,14066.666666699999,3,2,3_0,3_0,6000.0,0,0.0,6000,14,18,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 +2243,3981,3980,20,20,79,112,78,50,0,15444,0,0,0,0,0,4,0,2,1.5,1772.71739883,0,0,21100.0,5,1,6,1,3,1,0,0,0,1,0,0,0,0,1,0,14066.6666667,3,2,3_0,3_0,6000.0,0,0.0,6000,14,18,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 2244,3990,3989,1,18,77,111,86,71,2,15459,0,0,0,0,1,5,1,3,2.0,2725.34482471,1040,750,27807.0,6,3,9,7,5,1,0,0,0,0,0,1,0,1,1,0,13903.5,3,2,3_1,3_0,5200.0,0,0.0,5200,7,15,0.0,0.0,0.0,0,0,504.97998999832004,0.0,504.97998999832004 2245,4000,3999,3,14,26,111,63,50,0,15473,0,70,0,161,2,3,0,2,1.5,6398.25758558,0,0,19580.0,1,3,8,6,3,1,0,1,0,0,1,0,0,1,0,1,13053.3333333,3,2,3_1,3_0,26332.0,0,26332.0,0,3,12,81.0,10.0,2.22,0,1,2557.140980122262,2557.140980122262,0.0 2246,4010,4009,2,20,36,112,53,60,0,15488,0,0,70,0,2,4,2,4,2.3,1784.45127545,0,0,30507.0,1,2,6,1,4,2,0,0,0,1,0,0,0,1,1,1,13263.9130435,3,2,3_1,3_0,21000.0,0,15000.0,6000,3,16,45.0,27.5,3.31,0,1,2039.342267300908,1456.673048072077,582.6692192288309 -2247,4024,4023,2,5,29,111,85,44,0,15508,0,0,0,7,0,4,1,2,1.3,3532.0913085999996,0,0,18041.0,4,3,7,6,2,1,0,0,0,0,1,0,0,1,0,1,13877.692307700003,3,2,3_1,3_0,25781.0,0,25781.0,0,1,5,102.7,51.5,3.3,0,1,2503.6325234897477,2503.6325234897477,0.0 +2247,4024,4023,2,5,29,111,85,44,0,15508,0,0,0,7,0,4,1,2,1.3,3532.0913086,0,0,18041.0,4,3,7,6,2,1,0,0,0,0,1,0,0,1,0,1,13877.6923077,3,2,3_1,3_0,25781.0,0,25781.0,0,1,5,102.7,51.5,3.3,0,1,2503.6325234897477,2503.6325234897477,0.0 2248,4038,4037,0,0,58,111,56,71,0,15521,0,0,0,479,2,4,1,3,2.0,3486.91902307,0,0,25151.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,12575.5,3,2,3_0,3_0,0.0,0,0.0,0,0,0,47.5,113.333333333,5.56,0,0,0.0,0.0,0.0 -2249,4044,4043,3,12,56,112,67,70,0,1553,0,60,180,0,3,7,3,5,2.6,1891.39922004,5773,0,33779.0,1,2,10,0,4,3,0,1,1,0,0,0,0,0,1,2,12991.923076899999,3,2,3_0,3_1,67343.0,0,67343.0,0,9,14,0.0,0.0,0.0,0,1,7901.9437594284245,7901.9437594284245,0.0 -2250,4066,4065,0,19,30,300,48,31,0,15562,0,0,200,0,2,6,3,5,2.4,1609.85318613,0,0,32567.0,1,2,0,0,4,2,0,1,1,0,0,0,0,1,1,1,13569.583333300001,3,2,3_1,3_1,36000.0,0,25000.0,11000,2,12,155.8,20.0,3.3,0,1,4224.195170090778,2933.4688681185958,1290.7263019721822 -2251,4075,4074,1,4,58,111,78,50,0,15574,0,0,0,0,0,4,0,2,1.5,1172.08998637,4472,0,22195.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,0,2,14796.666666699999,3,2,3_0,3_0,7000.0,0,7000.0,0,8,8,0.0,0.0,0.0,0,0,679.7807557669694,679.7807557669694,0.0 +2249,4044,4043,3,12,56,112,67,70,0,1553,0,60,180,0,3,7,3,5,2.6,1891.39922004,5773,0,33779.0,1,2,10,0,4,3,0,1,1,0,0,0,0,0,1,2,12991.9230769,3,2,3_0,3_1,67343.0,0,67343.0,0,9,14,0.0,0.0,0.0,0,1,7901.9437594284245,7901.9437594284245,0.0 +2250,4066,4065,0,19,30,300,48,31,0,15562,0,0,200,0,2,6,3,5,2.4,1609.85318613,0,0,32567.0,1,2,0,0,4,2,0,1,1,0,0,0,0,1,1,1,13569.5833333,3,2,3_1,3_1,36000.0,0,25000.0,11000,2,12,155.8,20.0,3.3,0,1,4224.195170090778,2933.4688681185958,1290.7263019721822 +2251,4075,4074,1,4,58,111,78,50,0,15574,0,0,0,0,0,4,0,2,1.5,1172.08998637,4472,0,22195.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,0,2,14796.6666667,3,2,3_0,3_0,7000.0,0,7000.0,0,8,8,0.0,0.0,0.0,0,0,679.7807557669694,679.7807557669694,0.0 2252,4082,4081,0,0,63,400,71,70,0,15586,0,0,0,0,0,3,0,1,1.0,1244.43133927,1560,0,13614.0,5,1,0,1,1,0,0,0,0,1,0,0,0,0,0,0,13614.0,3,2,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 2253,4084,4083,2,15,50,112,47,50,0,15590,0,0,0,0,2,5,1,3,2.0,1974.82962133,1560,0,27820.0,1,1,8,0,4,3,0,0,1,0,0,0,0,0,1,2,13910.0,3,2,3_0,3_1,3000.0,0,3000.0,0,1,13,0.0,2.0,1.1,0,0,352.01626417423154,352.01626417423154,0.0 2254,4107,4106,16,16,64,112,77,70,0,15623,0,0,0,0,0,4,0,1,1.0,1938.06884453,2080,0,14498.0,5,1,10,0,1,1,0,0,1,0,0,0,0,0,0,1,14498.0,3,2,3_0,3_1,22226.0,0,22226.0,0,1,15,0.0,0.0,0.0,0,0,2607.9711625121563,2607.9711625121563,0.0 2255,4115,4114,0,0,55,112,77,50,0,15634,0,0,0,410,0,2,0,1,1.0,4258.17512944,0,0,13890.0,7,3,9,3,1,0,0,0,0,1,0,0,0,0,0,0,13890.0,3,2,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 2256,4118,4117,11,14,64,111,78,50,0,15639,0,0,0,0,0,4,1,3,2.0,1316.84495568,1821,0,25189.0,5,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,12594.5,3,2,3_0,3_0,15000.0,0,0.0,15000,6,15,0.0,0.0,0.0,0,1,1456.673048072077,0.0,1456.673048072077 2257,4124,4123,2,2,44,222,43,33,0,15648,0,0,0,0,2,7,3,5,2.4,2866.10112842,9105,0,35262.0,1,1,1,0,4,2,1,0,1,0,0,0,0,0,0,2,14692.5,3,2,3_0,3_1,40000.0,0,40000.0,0,2,2,40.4,14.0,3.3,0,1,4693.550188989753,4693.550188989753,0.0 -2258,4125,4124,2,16,47,112,54,50,0,15650,0,500,0,512,3,7,3,5,2.8,794.877580642,2741,0,38307.0,1,3,8,0,4,2,0,0,1,0,0,0,0,1,0,2,13681.071428600002,3,2,3_1,3_1,67343.0,0,67343.0,0,9,14,0.0,0.0,0.0,0,1,7901.9437594284245,7901.9437594284245,0.0 -2259,4134,4133,4,8,65,111,78,70,0,15667,0,0,0,0,1,3,0,2,1.5,2202.91178952,1821,0,20360.0,5,3,6,4,3,2,0,0,0,0,1,0,0,0,2,0,13573.333333300001,3,2,3_0,3_0,15000.0,0,0.0,15000,4,8,0.0,0.0,0.0,0,0,1456.673048072077,0.0,1456.673048072077 +2258,4125,4124,2,16,47,112,54,50,0,15650,0,500,0,512,3,7,3,5,2.8,794.877580642,2741,0,38307.0,1,3,8,0,4,2,0,0,1,0,0,0,0,1,0,2,13681.0714286,3,2,3_1,3_1,67343.0,0,67343.0,0,9,14,0.0,0.0,0.0,0,1,7901.9437594284245,7901.9437594284245,0.0 +2259,4134,4133,4,8,65,111,78,70,0,15667,0,0,0,0,1,3,0,2,1.5,2202.91178952,1821,0,20360.0,5,3,6,4,3,2,0,0,0,0,1,0,0,0,2,0,13573.3333333,3,2,3_0,3_0,15000.0,0,0.0,15000,4,8,0.0,0.0,0.0,0,0,1456.673048072077,0.0,1456.673048072077 2260,4146,4145,0,11,64,111,68,71,2,15691,0,0,99999,469,2,3,1,3,2.0,3746.59331383,1571,4600,25823.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,12911.5,3,2,3_1,3_0,18000.0,0,0.0,18000,8,9,204.0,40.0,3.3,0,0,1748.0076576864926,0.0,1748.0076576864926 -2261,4147,4146,2,14,48,221,42,20,0,15692,0,100,50,0,2,5,3,5,2.8,1601.46375941,1969,0,41308.0,1,1,1,2,4,4,0,1,0,1,0,0,0,0,1,3,14752.857142899999,3,2,3_0,3_0,37343.0,0,37343.0,0,1,10,0.0,60.0,3.3,0,1,3626.4361089437048,3626.4361089437048,0.0 +2261,4147,4146,2,14,48,221,42,20,0,15692,0,100,50,0,2,5,3,5,2.8,1601.46375941,1969,0,41308.0,1,1,1,2,4,4,0,1,0,1,0,0,0,0,1,3,14752.8571429,3,2,3_0,3_0,37343.0,0,37343.0,0,1,10,0.0,60.0,3.3,0,1,3626.4361089437048,3626.4361089437048,0.0 2262,4156,4155,9,9,61,400,75,50,0,15704,0,0,0,0,0,5,0,1,1.0,5407.06932018,2419,0,12743.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,12743.0,3,2,3_0,3_1,7000.0,0,7000.0,0,9,9,0.0,0.0,0.0,0,0,821.3712830732069,821.3712830732069,0.0 2263,4179,4178,6,7,75,112,78,71,0,15740,0,0,0,0,0,6,0,2,1.5,5279.01282874,4680,0,20032.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,1,0,13354.6666667,3,2,3_0,3_1,7000.0,0,0.0,7000,6,6,0.0,0.0,0.0,0,0,821.3712830732069,0.0,821.3712830732069 2264,4185,4184,0,6,77,111,75,70,2,15747,0,0,0,343,0,2,0,1,1.0,2358.59855887,0,5000,14204.0,5,3,6,4,1,1,0,0,0,0,1,0,0,1,1,0,14204.0,3,2,3_1,3_0,1500.0,0,0.0,1500,7,7,0.0,0.0,0.0,0,0,145.66730480720773,0.0,145.66730480720773 @@ -2268,18 +2268,18 @@ 2266,4254,4253,1,7,20,111,55,41,2,162,0,20,0,57,1,1,0,1,1.0,3246.15608649,0,4500,13816.0,1,3,8,6,1,1,0,1,0,0,1,0,0,1,0,1,13816.0,3,2,3_1,3_0,7716.0,0,7716.0,0,1,5,56.5,30.0,3.3,0,1,749.3126159282765,749.3126159282765,0.0 2267,4257,4256,3,10,67,111,77,70,0,1626,0,0,0,276,0,4,0,1,1.0,3915.33872884,0,0,14060.0,5,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,14060.0,3,2,3_1,3_0,9862.0,0,0.0,9862,6,10,0.0,0.0,0.0,0,0,957.7139733391217,0.0,957.7139733391217 2268,4259,4258,4,6,67,221,78,50,0,1628,0,0,0,0,0,3,0,2,1.5,2966.93827169,0,0,19580.0,5,1,1,1,3,1,0,0,0,1,0,0,0,0,1,0,13053.3333333,3,2,3_0,3_0,7500.0,0,0.0,7500,5,7,0.0,0.0,0.0,0,0,728.3365240360386,0.0,728.3365240360386 -2269,4275,4274,0,0,41,111,48,20,0,1651,0,0,0,410,2,3,2,4,2.1,3256.07333712,0,0,29797.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,14189.047618999999,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,37.5,5.57,0,0,0.0,0.0,0.0 +2269,4275,4274,0,0,41,111,48,20,0,1651,0,0,0,410,2,3,2,4,2.1,3256.07333712,0,0,29797.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,14189.047619,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,37.5,5.57,0,0,0.0,0.0,0.0 2270,4303,4302,2,2,55,111,47,41,1,1687,0,100059,99999,0,2,4,2,4,2.3,2054.93027397,926,13400,33320.0,1,1,7,5,4,3,0,1,0,0,1,0,0,0,1,2,14486.9565217,3,2,3_0,3_0,15000.0,0,15000.0,0,2,3,206.8,43.3333333333,3.3,0,1,1456.673048072077,1456.673048072077,0.0 2271,4337,4336,8,8,39,112,46,71,0,1732,0,0,100,0,2,5,1,3,1.8,3270.19929237,5305,0,23106.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,2,0,12836.6666667,3,2,3_0,3_1,30200.0,0,0.0,30200,8,8,1414.0,110.0,3.3,0,1,3543.6303926872642,0.0,3543.6303926872642 2272,4339,4338,14,17,76,112,78,71,0,1734,0,0,0,0,0,3,0,2,1.5,4876.48320055,0,0,22071.0,5,1,5,0,3,1,0,0,1,0,0,0,0,0,1,0,14714.0,3,2,3_0,3_1,3000.0,0,0.0,3000,14,16,0.0,0.0,0.0,0,0,352.01626417423154,0.0,352.01626417423154 2273,4340,4339,0,0,88,111,77,71,0,1735,0,0,0,310,0,3,0,1,1.0,3483.78552863,0,0,14228.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14228.0,3,2,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 2274,4355,4354,0,0,58,300,78,70,0,1758,0,0,0,0,0,2,0,1,1.0,3403.07596519,158,0,14518.0,4,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,14518.0,3,2,3_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 2275,4370,4369,0,0,64,112,75,31,0,1777,0,0,0,0,0,6,0,1,1.0,2309.29623874,0,0,13541.0,5,1,7,1,1,0,0,0,0,1,0,0,0,0,0,0,13541.0,3,2,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 -2276,4392,4391,2,5,43,300,62,71,0,1802,0,0,0,0,2,4,3,5,3.0,2053.84658534,7267,0,42032.0,1,2,0,0,4,3,1,0,1,0,0,0,0,0,0,3,14010.666666699999,3,2,3_0,3_1,16916.0,0,16916.0,0,0,4,0.0,10.0,3.3,1,0,1984.9023749237667,1984.9023749237667,0.0 -2277,4402,4401,0,6,43,111,63,50,2,1818,0,0,0,0,2,5,3,5,2.6,1022.15461533,1561,8700,33597.0,1,3,7,6,4,1,0,0,0,0,1,0,0,0,0,1,12921.923076899999,3,2,3_0,3_0,20000.0,0,20000.0,0,2,4,98.2,21.3333333333,3.33,0,1,1942.2307307627693,1942.2307307627693,0.0 -2278,4408,4407,10,10,64,300,78,71,0,1823,0,0,0,0,0,5,0,2,1.5,3129.48006215,3166,0,20710.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13806.666666699999,3,2,3_0,3_1,25000.0,0,25000.0,0,2,10,0.0,0.0,0.0,0,0,2933.4688681185958,2933.4688681185958,0.0 +2276,4392,4391,2,5,43,300,62,71,0,1802,0,0,0,0,2,4,3,5,3.0,2053.84658534,7267,0,42032.0,1,2,0,0,4,3,1,0,1,0,0,0,0,0,0,3,14010.6666667,3,2,3_0,3_1,16916.0,0,16916.0,0,0,4,0.0,10.0,3.3,1,0,1984.9023749237667,1984.9023749237667,0.0 +2277,4402,4401,0,6,43,111,63,50,2,1818,0,0,0,0,2,5,3,5,2.6,1022.15461533,1561,8700,33597.0,1,3,7,6,4,1,0,0,0,0,1,0,0,0,0,1,12921.9230769,3,2,3_0,3_0,20000.0,0,20000.0,0,2,4,98.2,21.3333333333,3.33,0,1,1942.2307307627693,1942.2307307627693,0.0 +2278,4408,4407,10,10,64,300,78,71,0,1823,0,0,0,0,0,5,0,2,1.5,3129.48006215,3166,0,20710.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13806.6666667,3,2,3_0,3_1,25000.0,0,25000.0,0,2,10,0.0,0.0,0.0,0,0,2933.4688681185958,2933.4688681185958,0.0 2279,4412,4411,1,21,52,112,54,71,2,1828,0,400,0,0,1,5,0,1,1.0,2547.14474487,1823,250,12648.0,1,3,6,0,1,1,0,1,1,0,0,0,0,1,0,1,12648.0,3,2,3_1,3_1,10000.0,0,10000.0,0,8,11,28.0,10.0,2.2,0,1,1173.3875472474383,1173.3875472474383,0.0 -2280,4418,4417,4,11,65,111,74,20,0,1835,0,310,0,0,1,4,0,2,1.5,1437.62259101,4508,0,21914.0,5,2,8,7,3,2,0,0,0,0,0,1,0,0,0,2,14609.333333300001,3,2,3_0,3_0,35000.0,0,35000.0,0,2,4,0.0,0.0,0.0,0,0,3398.903778834847,3398.903778834847,0.0 +2280,4418,4417,4,11,65,111,74,20,0,1835,0,310,0,0,1,4,0,2,1.5,1437.62259101,4508,0,21914.0,5,2,8,7,3,2,0,0,0,0,0,1,0,0,0,2,14609.3333333,3,2,3_0,3_0,35000.0,0,35000.0,0,2,4,0.0,0.0,0.0,0,0,3398.903778834847,3398.903778834847,0.0 2281,4421,4420,0,0,82,111,78,70,0,1838,0,0,0,0,0,4,0,1,1.0,1795.83483811,0,0,13885.0,5,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,13885.0,3,2,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 2282,4423,4422,27,32,57,400,13,10,0,1840,0,0,0,0,2,7,0,4,2.5,1342.21427572,3139,0,31740.0,1,1,0,0,5,3,0,0,1,0,0,0,0,0,1,2,12696.0,3,2,3_0,3_1,6687.0,0,6687.0,0,11,20,539.0,73.75,3.3,0,1,784.6442528443621,784.6442528443621,0.0 2283,4424,4423,6,7,70,112,71,71,0,1842,0,0,0,0,0,8,0,2,1.5,2185.45824439,0,0,20880.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,1,1,13920.0,3,2,3_0,3_1,1600.0,0,600.0,1000,6,6,0.0,0.0,0.0,0,0,187.74200755959015,70.4032528348463,117.33875472474384 @@ -2288,11 +2288,11 @@ 2286,4449,4448,4,4,75,111,72,70,0,1875,0,0,0,0,0,5,0,2,1.5,2862.85786901,2740,0,20065.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,13376.6666667,3,2,3_0,3_0,7000.0,0,7000.0,0,3,7,0.0,0.0,0.0,0,0,679.7807557669694,679.7807557669694,0.0 2287,4453,4452,2,7,21,111,63,50,0,1880,0,500,0,228,2,2,0,2,1.5,3634.64427273,2080,0,19706.0,1,3,8,6,3,1,0,1,0,0,1,0,0,1,0,1,13137.3333333,3,2,3_1,3_0,17343.0,0,17343.0,0,5,10,145.6,60.0,3.3,0,1,1684.2053781809354,1684.2053781809354,0.0 2288,4455,4454,0,0,79,120,71,71,0,1883,0,0,0,0,0,4,0,1,1.0,3383.15611221,0,0,13232.0,5,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,13232.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2289,4463,4462,1,10,45,111,56,50,2,1894,0,99999,0,0,1,3,1,2,1.3,1597.93504168,2080,4700,16871.0,1,3,7,6,2,1,0,1,0,0,1,0,0,1,0,1,12977.692307700001,3,2,3_1,3_0,38665.0,0,38665.0,0,2,9,142.7,30.0,3.3,0,1,3754.817560247124,3754.817560247124,0.0 +2289,4463,4462,1,10,45,111,56,50,2,1894,0,99999,0,0,1,3,1,2,1.3,1597.93504168,2080,4700,16871.0,1,3,7,6,2,1,0,1,0,0,1,0,0,1,0,1,12977.6923077,3,2,3_1,3_0,38665.0,0,38665.0,0,2,9,142.7,30.0,3.3,0,1,3754.817560247124,3754.817560247124,0.0 2290,4483,4482,12,15,63,300,78,50,0,1926,0,0,0,0,0,5,0,1,1.0,2484.39002394,0,0,13950.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,0,1,13950.0,3,2,3_0,3_1,22226.0,0,22226.0,0,1,15,0.0,0.0,0.0,0,0,2607.9711625121563,2607.9711625121563,0.0 2291,4499,4498,0,0,75,111,77,71,0,1947,0,0,0,0,0,3,0,1,1.0,4041.55014568,0,0,13034.0,5,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,13034.0,3,2,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 2292,4501,4500,0,0,67,111,77,50,0,1949,0,0,0,0,0,3,0,1,1.0,3315.95992808,0,0,14253.0,5,1,7,5,1,0,0,0,0,0,1,0,0,0,0,0,14253.0,3,2,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 -2293,4514,4513,9,9,80,120,71,71,0,1965,0,0,0,0,0,3,0,2,1.5,3825.78059618,0,0,20597.0,5,4,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13731.333333300001,3,2,3_0,3_1,4000.0,0,4000.0,0,7,11,0.0,0.0,0.0,0,0,469.35501889897535,469.35501889897535,0.0 +2293,4514,4513,9,9,80,120,71,71,0,1965,0,0,0,0,0,3,0,2,1.5,3825.78059618,0,0,20597.0,5,4,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13731.3333333,3,2,3_0,3_1,4000.0,0,4000.0,0,7,11,0.0,0.0,0.0,0,0,469.35501889897535,469.35501889897535,0.0 2294,4517,4516,2,10,36,111,63,50,0,1968,0,0,400,0,1,3,0,1,1.0,2442.66018934,2600,0,13815.0,1,1,6,5,1,1,0,1,0,0,1,0,0,0,1,0,13815.0,3,2,3_0,3_0,3452.0,0,0.0,3452,1,12,0.0,0.0,0.0,0,1,335.229024129654,0.0,335.229024129654 2295,4518,4517,15,19,83,112,71,70,0,1969,0,0,0,0,0,5,0,1,1.0,2042.68447557,0,0,14320.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,14320.0,3,2,3_0,3_1,1800.0,0,0.0,1800,16,18,0.0,0.0,0.0,0,0,211.2097585045389,0.0,211.2097585045389 2296,4552,4551,3,11,47,112,42,43,0,2021,0,400,200,0,3,6,3,5,2.8,2231.15950516,2080,0,35760.0,1,1,7,0,4,4,0,1,1,0,0,0,0,0,2,2,12771.4285714,3,2,3_0,3_1,67343.0,0,67343.0,0,9,14,0.0,0.0,0.0,0,1,7901.9437594284245,7901.9437594284245,0.0 @@ -2301,16 +2301,16 @@ 2299,4601,4600,4,14,38,112,52,41,0,2083,0,0,350,403,2,4,2,4,2.5,2333.08637221,2860,0,34550.0,1,3,8,0,4,1,1,1,1,0,0,0,0,0,1,0,13820.0,3,2,3_0,3_1,3767.0,0,0.0,3767,1,13,0.0,24.0,3.3,0,1,442.01508904811004,0.0,442.01508904811004 2300,4609,4608,2,2,80,112,78,70,0,2094,0,0,0,0,0,3,0,2,1.5,1440.02656616,3650,0,19555.0,5,2,7,1,3,1,0,0,0,1,0,0,0,0,0,1,13036.6666667,3,2,3_0,3_0,8000.0,0,8000.0,0,3,3,0.0,0.0,0.0,0,0,776.8922923051077,776.8922923051077,0.0 2301,4627,4626,0,0,60,111,77,71,0,212,0,0,0,144,0,5,0,1,1.0,4096.8746892,0,0,13990.0,4,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,13990.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2302,4639,4638,5,6,47,111,52,41,0,2133,0,40,0,0,1,4,1,2,1.5,4168.8237924000005,2080,0,20434.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,13622.666666699999,3,2,3_1,3_0,15311.0,0,15311.0,0,5,6,0.0,7.5,0.0,1,0,1486.8747359354381,1486.8747359354381,0.0 +2302,4639,4638,5,6,47,111,52,41,0,2133,0,40,0,0,1,4,1,2,1.5,4168.8237924,2080,0,20434.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,13622.6666667,3,2,3_1,3_0,15311.0,0,15311.0,0,5,6,0.0,7.5,0.0,1,0,1486.8747359354381,1486.8747359354381,0.0 2303,4640,4639,2,12,47,111,64,71,0,2134,0,0,0,0,1,4,0,1,1.0,5950.28600167,0,0,14780.0,4,3,6,5,1,1,0,0,0,0,1,0,0,1,1,0,14780.0,3,2,3_1,3_0,10000.0,0,0.0,10000,12,15,0.0,0.0,0.0,0,0,971.1153653813847,0.0,971.1153653813847 2304,4653,4652,1,14,58,400,52,70,0,2150,0,150,0,0,1,4,0,1,1.0,1915.04095081,1560,0,12914.0,1,3,0,0,1,1,0,1,1,0,0,0,0,1,0,1,12914.0,3,2,3_1,3_1,5000.0,0,5000.0,0,4,13,0.0,0.0,0.0,0,1,586.6937736237192,586.6937736237192,0.0 2305,4655,4654,3,3,43,111,47,50,0,2153,0,0,0,367,1,3,0,1,1.0,3834.80147957,1747,0,14630.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,14630.0,3,2,3_0,3_0,22500.0,0,22500.0,0,2,5,0.0,0.0,1.1,1,0,2185.0095721081157,2185.0095721081157,0.0 -2306,4656,4655,1,13,33,111,67,42,2,2154,0,0,20,108,1,4,3,5,2.4,2649.9830933000003,1820,1000,30536.0,1,3,7,5,4,2,0,0,0,0,1,0,0,1,2,0,12723.3333333,3,2,3_1,3_0,19000.0,0,0.0,19000,11,12,31.5,16.0,3.3,0,1,1845.119194224631,0.0,1845.119194224631 +2306,4656,4655,1,13,33,111,67,42,2,2154,0,0,20,108,1,4,3,5,2.4,2649.9830933,1820,1000,30536.0,1,3,7,5,4,2,0,0,0,0,1,0,0,1,2,0,12723.3333333,3,2,3_1,3_0,19000.0,0,0.0,19000,11,12,31.5,16.0,3.3,0,1,1845.119194224631,0.0,1845.119194224631 2307,4687,4686,0,0,61,111,78,70,0,2197,0,0,0,48,0,2,0,1,1.0,3194.01430748,0,0,13864.0,5,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,13864.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2308,4705,4704,0,0,54,211,78,70,0,2215,0,0,0,170,0,1,0,1,1.0,2963.34848478,0,0,14710.0,5,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,14710.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2309,4714,4713,5,7,60,112,75,50,0,2224,0,0,0,0,1,5,0,2,1.5,1059.36602541,2964,0,21256.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,0,1,14170.666666699999,3,2,3_0,3_0,2000.0,0,2000.0,0,7,8,0.0,0.0,0.0,0,0,194.22307307627693,194.22307307627693,0.0 -2310,4716,4715,1,19,62,112,78,70,0,2226,0,0,0,219,0,3,0,2,1.5,2949.24661032,0,0,21994.0,5,3,10,0,3,1,0,0,1,0,0,0,0,0,1,0,14662.666666699999,3,2,3_0,3_1,3000.0,0,0.0,3000,2,22,0.0,10.0,3.3,0,0,352.01626417423154,0.0,352.01626417423154 -2311,4726,4725,5,10,66,211,75,50,0,2238,0,0,0,0,0,4,0,2,1.5,1394.64890297,2919,0,21694.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,14462.666666699999,3,2,3_0,3_0,6000.0,0,0.0,6000,10,10,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 +2309,4714,4713,5,7,60,112,75,50,0,2224,0,0,0,0,1,5,0,2,1.5,1059.36602541,2964,0,21256.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,0,1,14170.6666667,3,2,3_0,3_0,2000.0,0,2000.0,0,7,8,0.0,0.0,0.0,0,0,194.22307307627693,194.22307307627693,0.0 +2310,4716,4715,1,19,62,112,78,70,0,2226,0,0,0,219,0,3,0,2,1.5,2949.24661032,0,0,21994.0,5,3,10,0,3,1,0,0,1,0,0,0,0,0,1,0,14662.6666667,3,2,3_0,3_1,3000.0,0,0.0,3000,2,22,0.0,10.0,3.3,0,0,352.01626417423154,0.0,352.01626417423154 +2311,4726,4725,5,10,66,211,75,50,0,2238,0,0,0,0,0,4,0,2,1.5,1394.64890297,2919,0,21694.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,14462.6666667,3,2,3_0,3_0,6000.0,0,0.0,6000,10,10,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 2312,4730,4729,0,0,37,111,85,71,0,2244,0,0,0,0,0,3,0,2,1.5,3160.64490232,0,0,19230.0,7,3,4,4,3,0,0,0,0,0,1,0,0,1,0,0,12820.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2313,4740,4739,6,17,34,112,64,71,0,2259,0,0,170,63,1,5,3,5,2.4,2432.93989255,0,0,30227.0,1,3,8,2,4,2,0,0,0,1,0,0,0,1,1,1,12594.5833333,3,2,3_1,3_0,15000.0,0,15000.0,0,6,16,120.6,30.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 2314,4745,4744,0,0,49,111,52,31,0,2269,0,0,0,355,2,3,2,4,2.5,5211.79579164,0,0,34460.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,13784.0,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,37.5,5.57,0,0,0.0,0.0,0.0 @@ -2325,46 +2325,46 @@ 2323,4881,4880,0,0,55,400,63,70,0,247,0,0,0,0,1,5,0,1,1.0,2190.26584052,0,0,12620.0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,12620.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,21.9,30.0,3.32,0,0,0.0,0.0,0.0 2324,4904,4903,10,10,66,300,86,71,0,2499,0,0,0,0,0,3,0,1,1.0,2464.74811998,0,0,13326.0,5,3,0,0,1,1,0,0,1,0,0,0,0,1,0,1,13326.0,3,2,3_1,3_1,1200.0,0,1200.0,0,3,11,0.0,0.0,0.0,0,0,140.8065056696926,140.8065056696926,0.0 2325,4909,4908,11,11,75,112,78,70,0,2508,0,0,0,0,0,3,0,2,1.5,2141.45867743,1835,0,19821.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,0,2,13214.0,3,2,3_0,3_0,4800.0,0,4800.0,0,11,12,0.0,0.0,0.0,0,0,466.1353753830647,466.1353753830647,0.0 -2326,4931,4930,4,6,36,111,31,10,0,2539,0,180,0,0,2,3,2,4,2.1,2973.63140625,4624,0,29897.0,1,3,9,7,4,1,1,1,0,0,0,1,0,0,0,1,14236.666666699999,3,2,3_0,3_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 +2326,4931,4930,4,6,36,111,31,10,0,2539,0,180,0,0,2,3,2,4,2.1,2973.63140625,4624,0,29897.0,1,3,9,7,4,1,1,1,0,0,0,1,0,0,0,1,14236.6666667,3,2,3_0,3_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 2327,4934,4933,0,0,38,111,85,50,0,2544,0,0,0,46,0,2,0,1,1.0,2434.67633086,0,0,14044.0,7,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,14044.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2328,4941,4940,1,1,68,111,78,71,1,2554,0,0,0,0,0,4,0,2,1.5,3664.65470991,0,11000,20290.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,13526.666666699999,3,2,3_0,3_0,9036.0,0,0.0,9036,1,7,0.0,0.0,0.0,0,0,877.4998441586192,0.0,877.4998441586192 +2328,4941,4940,1,1,68,111,78,71,1,2554,0,0,0,0,0,4,0,2,1.5,3664.65470991,0,11000,20290.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,13526.6666667,3,2,3_0,3_0,9036.0,0,0.0,9036,1,7,0.0,0.0,0.0,0,0,877.4998441586192,0.0,877.4998441586192 2329,4956,4955,0,0,78,111,78,71,0,2577,0,0,0,151,0,5,0,2,1.5,3440.05174708,0,0,19304.0,5,3,9,7,3,0,0,0,0,0,0,1,0,1,0,0,12869.3333333,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2330,4958,4957,12,12,27,400,55,50,0,258,0,0,0,0,1,4,2,3,1.6,1397.2011287999999,1562,0,21450.0,4,3,0,0,2,1,0,0,1,0,0,0,0,1,1,0,13406.25,3,2,3_1,3_1,11859.0,0,11859.0,0,0,5,0.0,2.66666666667,0.0,1,1,1391.5202922807373,1391.5202922807373,0.0 -2331,4959,4958,11,11,51,111,69,71,0,2581,0,0,0,0,2,4,2,4,2.1,3645.32264165,0,0,30377.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,14465.238095200002,3,2,3_0,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 +2330,4958,4957,12,12,27,400,55,50,0,258,0,0,0,0,1,4,2,3,1.6,1397.2011288,1562,0,21450.0,4,3,0,0,2,1,0,0,1,0,0,0,0,1,1,0,13406.25,3,2,3_1,3_1,11859.0,0,11859.0,0,0,5,0.0,2.66666666667,0.0,1,1,1391.5202922807373,1391.5202922807373,0.0 +2331,4959,4958,11,11,51,111,69,71,0,2581,0,0,0,0,2,4,2,4,2.1,3645.32264165,0,0,30377.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,14465.2380952,3,2,3_0,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 2332,4968,4967,0,21,39,111,55,71,0,2598,0,0,0,230,1,4,2,3,1.8,3151.74289928,0,0,23475.0,1,3,9,7,2,1,0,0,0,0,0,1,0,1,1,0,13041.6666667,3,2,3_1,3_0,9666.0,0,0.0,9666,7,18,69.0,19.3333333333,3.31,0,1,938.6801121776465,0.0,938.6801121776465 -2333,4970,4969,6,23,75,221,72,70,0,26,0,0,0,0,0,4,0,2,1.5,1979.13039416,2860,0,20455.0,5,4,1,2,3,2,0,0,0,1,0,0,0,0,0,2,13636.666666699999,3,2,3_0,3_0,10000.0,0,10000.0,0,6,18,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 +2333,4970,4969,6,23,75,221,72,70,0,26,0,0,0,0,0,4,0,2,1.5,1979.13039416,2860,0,20455.0,5,4,1,2,3,2,0,0,0,1,0,0,0,0,0,2,13636.6666667,3,2,3_0,3_0,10000.0,0,10000.0,0,6,18,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 2334,4993,4992,0,0,39,111,68,71,0,2636,0,0,0,0,1,6,0,1,1.0,1049.72031128,0,0,14118.0,1,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14118.0,3,2,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 2335,4995,4994,6,10,58,111,68,70,0,2639,0,0,0,0,2,3,1,3,1.8,1769.20016561,0,0,22713.0,4,3,7,5,4,1,0,0,0,0,1,0,0,1,0,1,12618.3333333,3,2,3_1,3_0,18000.0,0,18000.0,0,4,8,0.0,0.0,0.0,0,0,1748.0076576864926,1748.0076576864926,0.0 -2336,4998,4997,0,0,46,111,56,71,0,2642,0,0,0,0,1,1,1,2,1.3,4459.36549652,0,0,16480.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,12676.923076899999,3,2,3_0,3_0,0.0,0,0.0,0,0,0,25.2,65.0,1.1,0,0,0.0,0.0,0.0 +2336,4998,4997,0,0,46,111,56,71,0,2642,0,0,0,0,1,1,1,2,1.3,4459.36549652,0,0,16480.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,12676.9230769,3,2,3_0,3_0,0.0,0,0.0,0,0,0,25.2,65.0,1.1,0,0,0.0,0.0,0.0 2337,5010,5009,0,0,47,111,56,20,0,2657,0,0,0,0,2,2,0,2,1.5,2978.92746709,0,0,21180.0,1,2,10,8,5,0,0,0,0,0,0,0,1,0,0,0,14120.0,3,2,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 2338,5026,5025,11,14,42,112,69,50,0,2678,0,0,170,0,1,5,0,1,1.0,2399.89097582,0,0,14675.0,1,1,9,0,1,1,0,1,1,0,0,0,0,0,1,0,14675.0,3,2,3_0,3_1,10000.0,0,0.0,10000,8,16,32.0,30.0,3.3,0,1,1173.3875472474383,0.0,1173.3875472474383 -2339,5030,5029,3,10,26,400,63,50,0,2682,0,120,0,0,2,4,2,4,2.1,2943.3195548,0,0,27249.0,1,3,0,0,4,2,0,0,1,0,0,0,0,1,0,2,12975.714285700002,3,2,3_1,3_1,8000.0,0,8000.0,0,3,12,104.0,10.5,3.3,0,1,938.7100377979507,938.7100377979507,0.0 +2339,5030,5029,3,10,26,400,63,50,0,2682,0,120,0,0,2,4,2,4,2.1,2943.3195548,0,0,27249.0,1,3,0,0,4,2,0,0,1,0,0,0,0,1,0,2,12975.7142857,3,2,3_1,3_1,8000.0,0,8000.0,0,3,12,104.0,10.5,3.3,0,1,938.7100377979507,938.7100377979507,0.0 2340,5033,5032,8,12,65,111,75,50,0,2690,0,0,0,0,0,3,0,2,1.5,1311.30184573,0,0,21003.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,14002.0,3,2,3_0,3_0,7000.0,0,0.0,7000,10,10,0.0,0.0,0.0,0,0,679.7807557669694,0.0,679.7807557669694 -2341,5038,5037,13,13,77,112,78,71,0,2698,0,0,0,0,0,4,0,2,1.5,3984.12634898,3616,0,21239.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,14159.333333300001,3,2,3_0,3_1,17000.0,0,17000.0,0,14,14,0.0,0.0,0.0,0,0,1994.758830320645,1994.758830320645,0.0 +2341,5038,5037,13,13,77,112,78,71,0,2698,0,0,0,0,0,4,0,2,1.5,3984.12634898,3616,0,21239.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,14159.3333333,3,2,3_0,3_1,17000.0,0,17000.0,0,14,14,0.0,0.0,0.0,0,0,1994.758830320645,1994.758830320645,0.0 2342,5059,5058,0,0,87,111,86,70,0,2723,0,0,0,0,0,4,0,1,1.0,2216.30485675,0,0,13172.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,13172.0,3,2,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 -2343,5064,5063,5,5,45,112,52,41,0,2732,0,0,0,524,1,4,1,2,1.3,2444.06305263,0,0,17391.0,4,3,10,1,2,1,0,0,0,1,0,0,0,0,0,1,13377.692307700001,3,2,3_0,3_0,15311.0,0,15311.0,0,5,6,0.0,7.5,0.0,1,0,1486.8747359354381,1486.8747359354381,0.0 -2344,5067,5066,4,9,41,221,54,43,0,2737,0,500,0,356,2,3,1,2,1.5,4191.46965634,2600,0,20564.0,1,3,1,1,2,1,0,1,0,1,0,0,0,1,0,1,13709.333333300001,3,2,3_1,3_0,17000.0,0,17000.0,0,7,7,0.0,40.0,3.3,0,1,1650.896121148354,1650.896121148354,0.0 +2343,5064,5063,5,5,45,112,52,41,0,2732,0,0,0,524,1,4,1,2,1.3,2444.06305263,0,0,17391.0,4,3,10,1,2,1,0,0,0,1,0,0,0,0,0,1,13377.6923077,3,2,3_0,3_0,15311.0,0,15311.0,0,5,6,0.0,7.5,0.0,1,0,1486.8747359354381,1486.8747359354381,0.0 +2344,5067,5066,4,9,41,221,54,43,0,2737,0,500,0,356,2,3,1,2,1.5,4191.46965634,2600,0,20564.0,1,3,1,1,2,1,0,1,0,1,0,0,0,1,0,1,13709.3333333,3,2,3_1,3_0,17000.0,0,17000.0,0,7,7,0.0,40.0,3.3,0,1,1650.896121148354,1650.896121148354,0.0 2345,5071,5070,0,0,76,111,78,71,0,2744,0,0,0,0,0,4,0,1,1.0,5762.06773014,0,0,13768.0,5,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,13768.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2346,5084,5083,0,0,47,112,62,50,0,2767,0,0,0,272,1,3,1,3,2.0,2687.67014491,0,0,27423.0,1,3,10,5,4,0,0,0,0,0,1,0,0,0,0,0,13711.5,3,2,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 2347,5103,5102,0,0,64,111,78,71,0,2790,0,0,0,204,0,2,0,1,1.0,3683.27154623,0,0,13306.0,5,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,13306.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2348,5106,5105,0,0,41,111,43,71,0,2796,0,0,0,0,1,4,4,5,2.6,2663.12665204,0,0,37610.0,4,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,14465.384615399998,3,2,3_1,3_0,0.0,0,0.0,0,0,0,16.0,22.5,2.2,0,0,0.0,0.0,0.0 +2348,5106,5105,0,0,41,111,43,71,0,2796,0,0,0,0,1,4,4,5,2.6,2663.12665204,0,0,37610.0,4,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,14465.3846154,3,2,3_1,3_0,0.0,0,0.0,0,0,0,16.0,22.5,2.2,0,0,0.0,0.0,0.0 2349,5111,5110,4,4,73,112,78,71,0,2800,0,0,0,0,0,4,0,1,1.0,2234.04197664,0,0,13876.0,5,1,9,2,1,1,0,0,0,1,0,0,0,0,0,1,13876.0,3,2,3_0,3_0,4500.0,0,4500.0,0,4,5,0.0,0.0,0.0,0,0,437.00191442162316,437.00191442162316,0.0 2350,5120,5119,0,0,47,111,52,30,0,2811,0,0,0,7,1,1,0,1,1.0,2896.12463746,0,0,13970.0,4,3,7,6,1,0,0,0,0,0,1,0,0,1,0,0,13970.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2351,5132,5131,3,11,52,111,54,71,0,2832,0,70,0,0,2,5,3,4,2.5,4346.46968822,1560,0,35980.0,1,3,4,3,2,1,0,1,0,1,0,0,0,1,0,1,14392.0,3,2,3_1,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 2352,5142,5141,0,0,66,300,78,70,0,2847,0,0,0,0,0,4,0,1,1.0,1784.93061405,0,0,14070.0,5,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,14070.0,3,2,3_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 -2353,5147,5146,0,10,30,111,52,71,2,2853,0,0,400,21,1,2,1,3,1.8,3151.32169685,3120,3000,23671.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,13150.555555600002,3,2,3_1,3_0,9676.0,0,0.0,9676,2,9,0.0,0.0,0.0,0,0,939.6512275430279,0.0,939.6512275430279 +2353,5147,5146,0,10,30,111,52,71,2,2853,0,0,400,21,1,2,1,3,1.8,3151.32169685,3120,3000,23671.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,13150.5555556,3,2,3_1,3_0,9676.0,0,0.0,9676,2,9,0.0,0.0,0.0,0,0,939.6512275430279,0.0,939.6512275430279 2354,5148,5147,2,10,32,120,52,71,0,2855,0,0,0,0,1,3,2,4,2.1,3534.54627619,2600,0,26400.0,1,3,0,3,4,1,0,0,0,1,0,0,0,0,0,1,12571.4285714,3,2,3_0,3_0,30000.0,0,30000.0,0,2,14,0.0,0.0,0.0,0,0,2913.346096144154,2913.346096144154,0.0 2355,5159,5158,0,0,32,111,54,10,0,2870,0,0,0,0,1,3,0,1,1.0,2837.68302675,0,0,14138.0,1,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,14138.0,3,2,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 2356,5161,5160,0,0,79,111,86,71,0,2873,0,0,0,200,0,3,0,1,1.0,3775.34464221,0,0,14440.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,14440.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2357,5166,5165,0,0,85,120,71,70,0,2880,0,0,0,0,0,8,0,1,1.0,2969.36723439,0,0,12668.0,5,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,12668.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2358,5177,5176,0,0,36,111,55,43,0,290,0,0,0,0,1,2,0,1,1.0,2616.45826254,0,0,14388.0,1,2,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14388.0,3,2,3_0,3_0,0.0,0,0.0,0,0,0,32.4,140.0,5.5,0,0,0.0,0.0,0.0 -2359,5188,5187,10,12,56,400,52,70,0,2913,0,0,100,0,2,5,0,2,1.5,3171.19151549,0,0,21380.0,1,3,0,0,3,1,0,1,1,0,0,0,0,0,1,0,14253.333333300001,3,2,3_0,3_1,10000.0,0,0.0,10000,1,10,250.8,30.0,3.31,1,1,1173.3875472474383,0.0,1173.3875472474383 +2359,5188,5187,10,12,56,400,52,70,0,2913,0,0,100,0,2,5,0,2,1.5,3171.19151549,0,0,21380.0,1,3,0,0,3,1,0,1,1,0,0,0,0,0,1,0,14253.3333333,3,2,3_0,3_1,10000.0,0,0.0,10000,1,10,250.8,30.0,3.31,1,1,1173.3875472474383,0.0,1173.3875472474383 2360,5197,5196,16,21,74,120,71,71,0,2923,0,0,0,0,0,5,0,2,1.5,2465.36349136,2203,0,19550.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,13033.3333333,3,2,3_0,3_1,11000.0,0,10000.0,1000,23,23,0.0,0.0,0.0,0,0,1290.7263019721822,1173.3875472474383,117.33875472474384 2361,5222,5221,8,9,54,111,46,41,0,2964,0,0,0,0,1,4,1,2,1.5,2739.94615714,140,0,19216.0,1,1,9,7,2,1,0,0,0,0,0,1,0,0,1,0,12810.6666667,3,2,3_0,3_0,7681.0,0,0.0,7681,7,7,0.0,0.0,0.0,0,0,745.9137121494417,0.0,745.9137121494417 2362,5243,5242,1,6,46,111,62,71,2,2990,0,300,0,46,1,4,3,5,2.4,3312.19238009,2080,9500,30596.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,12748.3333333,3,2,3_1,3_0,25000.0,0,25000.0,0,2,3,0.0,0.0,0.0,0,0,2427.788413453462,2427.788413453462,0.0 -2363,5248,5247,2,5,45,211,52,50,0,2999,0,0,42,0,1,5,1,2,1.5,1890.9947670000001,1642,0,21334.0,1,4,3,3,2,1,0,1,0,1,0,0,0,0,1,0,14222.666666699999,3,2,3_0,3_0,4000.0,0,0.0,4000,2,4,48.0,15.0,3.3,0,1,388.44614615255387,0.0,388.44614615255387 +2363,5248,5247,2,5,45,211,52,50,0,2999,0,0,42,0,1,5,1,2,1.5,1890.994767,1642,0,21334.0,1,4,3,3,2,1,0,1,0,1,0,0,0,0,1,0,14222.6666667,3,2,3_0,3_0,4000.0,0,0.0,4000,2,4,48.0,15.0,3.3,0,1,388.44614615255387,0.0,388.44614615255387 2364,5253,5252,0,0,30,400,65,41,1,3007,0,100,100,0,1,4,1,3,1.8,2452.54264028,0,8250,24884.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,13824.4444444,3,2,3_0,3_1,7210.0,0,7210.0,0,3,0,52.0,60.0,3.3,0,1,846.012421565403,846.012421565403,0.0 -2365,5267,5266,9,16,43,120,67,50,0,3022,0,0,0,0,2,5,2,4,2.1,2929.6501569,520,0,30615.0,1,2,0,3,4,2,0,0,0,1,0,0,0,0,1,1,14578.571428600002,3,2,3_0,3_0,5800.0,0,5000.0,800,20,22,0.0,24.0,1.1,0,1,563.2469119212032,485.55768269069233,77.68922923051078 +2365,5267,5266,9,16,43,120,67,50,0,3022,0,0,0,0,2,5,2,4,2.1,2929.6501569,520,0,30615.0,1,2,0,3,4,2,0,0,0,1,0,0,0,0,1,1,14578.5714286,3,2,3_0,3_0,5800.0,0,5000.0,800,20,22,0.0,24.0,1.1,0,1,563.2469119212032,485.55768269069233,77.68922923051078 2366,5304,5303,11,11,75,111,77,70,0,3072,0,0,0,0,0,5,0,1,1.0,1860.85481702,1448,0,14714.0,5,4,7,6,1,1,0,0,0,0,1,0,0,0,1,0,14714.0,3,2,3_0,3_0,7000.0,0,0.0,7000,10,10,0.0,0.0,0.0,0,0,679.7807557669694,0.0,679.7807557669694 2367,5311,5310,0,13,21,111,84,41,0,3081,0,0,40,0,0,1,0,1,1.0,3699.37668077,2262,0,12724.0,3,3,9,7,1,1,1,1,0,0,0,1,0,1,1,0,12724.0,3,2,3_1,3_0,15000.0,0,0.0,15000,3,13,0.0,0.0,0.0,0,1,1456.673048072077,0.0,1456.673048072077 2368,5312,5311,3,3,65,221,77,70,0,3082,0,0,0,0,0,5,0,1,1.0,3873.90473964,1482,0,13936.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,13936.0,3,2,3_0,3_0,2000.0,0,0.0,2000,3,3,0.0,0.0,0.0,0,0,194.22307307627693,0.0,194.22307307627693 @@ -2372,24 +2372,24 @@ 2370,5335,5334,11,12,36,400,21,44,0,3112,0,0,0,0,1,4,0,1,1.0,4754.21415417,1976,0,14273.0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,14273.0,3,2,3_0,3_1,10000.0,0,10000.0,0,13,14,138.0,40.0,3.3,0,1,1173.3875472474383,1173.3875472474383,0.0 2371,5338,5337,1,4,25,111,67,50,2,3118,0,300,0,110,1,2,1,2,1.3,2739.12409835,0,5000,16621.0,4,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,12785.3846154,3,2,3_1,3_0,35000.0,0,35000.0,0,2,8,63.5,22.0,3.31,0,1,3398.903778834847,3398.903778834847,0.0 2372,5349,5348,3,6,25,111,48,43,0,313,0,170,0,375,1,2,0,1,1.0,6124.85843265,3407,0,14091.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,0,1,14091.0,3,2,3_0,3_0,8000.0,0,8000.0,0,3,8,0.0,20.0,3.3,0,1,776.8922923051077,776.8922923051077,0.0 -2373,5356,5355,1,9,23,112,53,71,2,3138,0,450,0,180,2,4,2,4,2.1,2348.6698028,0,3800,26993.0,1,3,8,0,4,1,0,1,1,0,0,0,0,1,0,1,12853.809523799999,3,2,3_1,3_1,17343.0,0,17343.0,0,1,10,113.0,25.0,2.22,0,1,2035.0060231912323,2035.0060231912323,0.0 -2374,5362,5361,7,11,35,112,13,31,0,3145,0,450,0,0,2,6,3,5,2.4,2361.39856107,0,0,34331.0,1,2,9,0,4,2,1,0,1,0,0,0,0,0,0,2,14304.583333300001,3,2,3_0,3_1,66000.0,0,66000.0,0,3,11,204.5,60.0,3.3,0,1,7744.357811833093,7744.357811833093,0.0 -2375,5375,5374,1,15,29,120,62,44,2,3170,0,400,0,0,2,4,2,4,2.1,3060.48650842,5487,500,29075.0,1,3,0,0,4,2,1,1,1,0,0,0,0,1,0,2,13845.238095200002,3,2,3_1,3_1,16672.0,0,16672.0,0,1,14,74.5,20.5,3.31,0,1,1956.2717187709293,1956.2717187709293,0.0 +2373,5356,5355,1,9,23,112,53,71,2,3138,0,450,0,180,2,4,2,4,2.1,2348.6698028,0,3800,26993.0,1,3,8,0,4,1,0,1,1,0,0,0,0,1,0,1,12853.8095238,3,2,3_1,3_1,17343.0,0,17343.0,0,1,10,113.0,25.0,2.22,0,1,2035.0060231912323,2035.0060231912323,0.0 +2374,5362,5361,7,11,35,112,13,31,0,3145,0,450,0,0,2,6,3,5,2.4,2361.39856107,0,0,34331.0,1,2,9,0,4,2,1,0,1,0,0,0,0,0,0,2,14304.5833333,3,2,3_0,3_1,66000.0,0,66000.0,0,3,11,204.5,60.0,3.3,0,1,7744.357811833093,7744.357811833093,0.0 +2375,5375,5374,1,15,29,120,62,44,2,3170,0,400,0,0,2,4,2,4,2.1,3060.48650842,5487,500,29075.0,1,3,0,0,4,2,1,1,1,0,0,0,0,1,0,2,13845.2380952,3,2,3_1,3_1,16672.0,0,16672.0,0,1,14,74.5,20.5,3.31,0,1,1956.2717187709293,1956.2717187709293,0.0 2376,5387,5386,0,0,59,111,54,31,0,3190,0,0,0,423,3,3,1,3,2.0,3006.90452266,0,0,29010.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,14505.0,3,2,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 -2377,5428,5427,1,7,44,111,65,60,0,3240,0,200,0,226,1,3,1,3,1.8,4287.65075104,780,0,24792.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,13773.333333300001,3,2,3_1,3_0,12000.0,0,12000.0,0,4,5,0.0,0.0,0.0,0,1,1165.3384384576618,1165.3384384576618,0.0 -2378,5433,5432,3,15,58,111,63,50,0,3248,0,99999,0,250,1,4,3,5,2.4,1813.97945661,0,0,35062.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,14609.166666699999,3,2,3_1,3_0,15000.0,0,15000.0,0,9,9,0.0,4.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 -2379,5438,5437,5,18,73,111,78,71,0,3255,0,0,0,265,2,4,3,5,3.0,3093.61328234,0,0,43372.0,5,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,14457.333333300001,3,2,3_1,3_0,20000.0,0,20000.0,0,4,17,40.5,26.6666666667,3.3,0,1,1942.2307307627693,1942.2307307627693,0.0 +2377,5428,5427,1,7,44,111,65,60,0,3240,0,200,0,226,1,3,1,3,1.8,4287.65075104,780,0,24792.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,13773.3333333,3,2,3_1,3_0,12000.0,0,12000.0,0,4,5,0.0,0.0,0.0,0,1,1165.3384384576618,1165.3384384576618,0.0 +2378,5433,5432,3,15,58,111,63,50,0,3248,0,99999,0,250,1,4,3,5,2.4,1813.97945661,0,0,35062.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,14609.1666667,3,2,3_1,3_0,15000.0,0,15000.0,0,9,9,0.0,4.0,3.3,0,1,1456.673048072077,1456.673048072077,0.0 +2379,5438,5437,5,18,73,111,78,71,0,3255,0,0,0,265,2,4,3,5,3.0,3093.61328234,0,0,43372.0,5,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,14457.3333333,3,2,3_1,3_0,20000.0,0,20000.0,0,4,17,40.5,26.6666666667,3.3,0,1,1942.2307307627693,1942.2307307627693,0.0 2380,5440,5439,4,11,46,111,52,50,0,3257,0,0,0,484,2,4,1,3,2.0,3876.6559294,0,0,28898.0,1,3,9,7,4,2,0,0,0,0,0,1,0,0,0,2,14449.0,3,2,3_0,3_0,11000.0,0,11000.0,0,9,16,391.0,106.666666667,3.3,0,1,1068.2269019195232,1068.2269019195232,0.0 2381,5442,5441,3,6,74,112,78,50,0,3259,0,0,0,0,0,4,0,2,1.5,1944.87725169,0,0,19320.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,0,2,12880.0,3,2,3_0,3_1,15000.0,0,15000.0,0,6,6,0.0,0.0,0.0,0,0,1760.0813208711575,1760.0813208711575,0.0 -2382,5460,5459,15,15,40,111,55,43,0,3282,0,0,200,0,1,3,0,1,1.0,3433.3566498000005,2600,0,14389.0,1,2,8,6,1,1,0,1,0,0,1,0,0,1,1,0,14389.0,3,2,3_1,3_0,6000.0,0,0.0,6000,5,12,71.5,40.0,3.3,0,1,582.6692192288309,0.0,582.6692192288309 +2382,5460,5459,15,15,40,111,55,43,0,3282,0,0,200,0,1,3,0,1,1.0,3433.3566498,2600,0,14389.0,1,2,8,6,1,1,0,1,0,0,1,0,0,1,1,0,14389.0,3,2,3_1,3_0,6000.0,0,0.0,6000,5,12,71.5,40.0,3.3,0,1,582.6692192288309,0.0,582.6692192288309 2383,5461,5460,11,13,41,111,64,50,0,3284,0,0,16,162,1,3,1,2,1.5,2469.76834834,0,0,20778.0,1,3,6,5,2,1,0,1,0,0,1,0,0,1,1,0,13852.0,3,2,3_1,3_0,3543.0,0,0.0,3543,1,12,100.0,30.0,3.3,0,1,344.0661739546246,0.0,344.0661739546246 2384,5509,5508,0,22,24,111,62,50,0,3354,0,150,0,20,1,2,0,1,1.0,2540.54283563,1822,0,13726.0,4,3,4,4,1,1,0,1,0,0,1,0,0,1,0,1,13726.0,3,2,3_1,3_0,9336.0,0,9336.0,0,6,17,100.5,50.0,3.3,0,1,906.6333051200609,906.6333051200609,0.0 2385,5511,5510,3,12,30,111,85,71,0,3358,0,210,0,0,1,4,5,8,3.5,2493.00925263,0,0,44294.0,6,3,9,7,5,1,0,1,0,0,0,1,0,1,0,1,12655.4285714,3,2,3_1,3_0,2000.0,0,2000.0,0,3,3,0.0,0.0,0.0,0,1,194.22307307627693,194.22307307627693,0.0 -2386,5513,5512,0,0,42,300,11,50,0,3361,0,0,0,0,3,6,3,5,2.6,1183.96387505,0,0,35847.0,1,1,0,0,4,0,0,0,1,0,0,0,0,0,0,0,13787.307692299997,3,2,3_0,3_1,0.0,0,0.0,0,1,7,370.7,57.5,3.3,0,1,0.0,0.0,0.0 +2386,5513,5512,0,0,42,300,11,50,0,3361,0,0,0,0,3,6,3,5,2.6,1183.96387505,0,0,35847.0,1,1,0,0,4,0,0,0,1,0,0,0,0,0,0,0,13787.3076923,3,2,3_0,3_1,0.0,0,0.0,0,1,7,370.7,57.5,3.3,0,1,0.0,0.0,0.0 2387,5519,5518,0,0,77,111,78,71,0,3367,0,0,0,0,0,4,0,2,1.5,3133.34462821,0,0,20451.0,5,3,6,4,3,0,0,0,0,0,1,0,0,0,0,0,13634.0,3,2,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 2388,5520,5519,1,2,23,221,34,10,1,3368,0,0,0,0,1,4,0,1,1.0,2489.11947277,4302,9100,14066.0,1,3,1,3,1,1,0,1,0,1,0,0,0,1,1,0,14066.0,3,2,3_1,3_0,5000.0,0,0.0,5000,2,5,0.0,10.0,2.22,0,0,485.55768269069233,0.0,485.55768269069233 2389,5522,5521,9,9,54,111,52,71,0,3370,0,0,50,297,2,3,1,2,1.5,3205.34336026,1040,0,19258.0,1,3,8,6,2,1,0,1,0,0,1,0,0,0,1,0,12838.6666667,3,2,3_0,3_0,10000.0,0,0.0,10000,5,8,36.9,30.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 -2390,5528,5527,5,14,37,120,64,50,0,3378,0,90,0,360,2,5,2,4,2.1,2087.09691413,5582,0,30368.0,1,3,0,2,4,3,0,1,0,1,0,0,0,1,1,2,14460.952381000001,3,2,3_1,3_0,1500.0,0,1500.0,0,1,11,162.0,20.0,3.3,0,1,145.66730480720773,145.66730480720773,0.0 +2390,5528,5527,5,14,37,120,64,50,0,3378,0,90,0,360,2,5,2,4,2.1,2087.09691413,5582,0,30368.0,1,3,0,2,4,3,0,1,0,1,0,0,0,1,1,2,14460.952381,3,2,3_1,3_0,1500.0,0,1500.0,0,1,11,162.0,20.0,3.3,0,1,145.66730480720773,145.66730480720773,0.0 2391,5551,5550,0,12,65,112,78,50,0,3410,0,0,0,0,0,6,0,2,1.5,2231.57256749,3120,0,21483.0,5,1,4,0,3,2,0,0,1,0,0,0,0,0,1,1,14322.0,3,2,3_0,3_1,1600.0,0,600.0,1000,6,6,0.0,0.0,0.0,0,0,187.74200755959015,70.4032528348463,117.33875472474384 2392,5554,5553,8,12,70,112,78,71,0,3415,0,0,0,0,1,6,0,3,2.0,3657.42865555,0,0,26830.0,5,1,5,0,5,1,0,0,1,0,0,0,0,0,0,1,13415.0,3,2,3_0,3_1,15000.0,0,15000.0,0,13,13,0.0,14.0,2.2,0,0,1760.0813208711575,1760.0813208711575,0.0 2393,5562,5561,1,21,26,112,53,50,0,3425,0,0,0,0,1,4,0,1,1.0,3769.18841317,0,0,13870.0,1,4,7,1,1,2,0,0,0,1,0,0,0,0,1,1,13870.0,3,2,3_0,3_0,9336.0,0,9336.0,0,6,17,100.5,50.0,3.3,0,1,906.6333051200609,906.6333051200609,0.0 @@ -2400,18 +2400,18 @@ 2398,5606,5605,0,0,72,300,78,71,0,3489,0,0,0,0,0,5,0,1,1.0,1588.8946189,0,0,13888.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,13888.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2399,5612,5611,5,15,50,300,54,71,0,3496,0,0,0,0,2,3,1,2,1.5,2893.63888791,1404,0,18920.0,4,3,0,0,2,1,0,0,1,0,0,0,0,1,1,0,12613.3333333,3,2,3_1,3_1,5000.0,0,0.0,5000,9,13,29.5,97.0,3.31,0,1,586.6937736237192,0.0,586.6937736237192 2400,5616,5615,3,3,58,111,43,41,0,3500,0,0,0,275,1,4,0,1,1.0,2746.47776323,1560,0,14649.0,4,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,14649.0,3,2,3_1,3_0,10000.0,0,0.0,10000,3,3,59.4,30.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 -2401,5618,5617,11,16,68,400,78,71,0,3503,0,0,0,0,0,4,0,2,1.5,2065.81451549,1541,0,22027.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,14684.666666699999,3,2,3_0,3_1,15000.0,0,15000.0,0,8,14,0.0,0.0,0.0,0,0,1760.0813208711575,1760.0813208711575,0.0 +2401,5618,5617,11,16,68,400,78,71,0,3503,0,0,0,0,0,4,0,2,1.5,2065.81451549,1541,0,22027.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,14684.6666667,3,2,3_0,3_1,15000.0,0,15000.0,0,8,14,0.0,0.0,0.0,0,0,1760.0813208711575,1760.0813208711575,0.0 2402,5621,5620,2,8,25,111,21,50,0,3507,0,150,0,264,1,3,0,2,1.5,4214.05294666,3120,0,19090.0,4,3,8,6,3,1,0,1,0,0,1,0,0,0,0,1,12726.6666667,3,2,3_0,3_0,35000.0,0,35000.0,0,2,8,63.5,22.0,3.31,0,1,3398.903778834847,3398.903778834847,0.0 2403,5634,5633,2,5,57,111,38,20,0,3522,0,650,0,0,1,6,2,3,2.0,3906.30105728,2340,0,29475.0,4,1,9,7,2,1,0,1,0,0,0,1,0,0,0,1,14737.5,3,2,3_0,3_0,12000.0,0,12000.0,0,3,3,24.6,43.3333333333,3.3,0,1,1165.3384384576618,1165.3384384576618,0.0 -2404,5641,5640,4,5,58,111,77,60,0,3529,0,0,0,0,0,5,0,2,1.5,2492.0166627,0,0,21881.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,14587.333333300001,3,2,3_0,3_0,8000.0,0,8000.0,0,3,5,0.0,0.0,0.0,0,0,776.8922923051077,776.8922923051077,0.0 -2405,5650,5649,1,1,69,221,78,70,1,3539,0,0,0,553,0,4,0,2,1.5,5180.68928925,2549,19000,21701.0,5,3,1,1,3,1,0,0,0,1,0,0,0,0,0,1,14467.333333300001,3,2,3_0,3_0,14000.0,0,14000.0,0,3,3,0.0,0.0,0.0,0,0,1359.5615115339388,1359.5615115339388,0.0 +2404,5641,5640,4,5,58,111,77,60,0,3529,0,0,0,0,0,5,0,2,1.5,2492.0166627,0,0,21881.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,14587.3333333,3,2,3_0,3_0,8000.0,0,8000.0,0,3,5,0.0,0.0,0.0,0,0,776.8922923051077,776.8922923051077,0.0 +2405,5650,5649,1,1,69,221,78,70,1,3539,0,0,0,553,0,4,0,2,1.5,5180.68928925,2549,19000,21701.0,5,3,1,1,3,1,0,0,0,1,0,0,0,0,0,1,14467.3333333,3,2,3_0,3_0,14000.0,0,14000.0,0,3,3,0.0,0.0,0.0,0,0,1359.5615115339388,1359.5615115339388,0.0 2406,5658,5657,0,0,65,112,78,71,0,355,0,0,0,0,0,2,0,1,1.0,2430.29481552,670,0,12814.0,5,3,6,1,1,0,0,0,0,1,0,0,0,0,0,0,12814.0,3,2,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 2407,5663,5662,1,6,42,111,47,20,1,3557,400,0,0,0,1,1,0,1,1.0,2975.08422666,1015,4000,13187.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,0,0,13187.0,3,2,3_0,3_0,31000.0,0,0.0,31000,7,11,0.0,0.0,0.0,0,0,3010.4576326822926,0.0,3010.4576326822926 2408,5677,5676,3,15,52,111,42,50,0,3579,0,100,0,125,1,2,0,1,1.0,2714.12300875,0,0,12761.0,1,3,7,5,1,2,0,1,0,0,1,0,0,1,0,2,12761.0,3,2,3_1,3_0,4500.0,0,4500.0,0,15,15,0.0,10.0,3.3,0,1,437.00191442162316,437.00191442162316,0.0 2409,5681,5680,0,0,79,111,77,50,0,3582,0,0,0,659,0,2,0,1,1.0,3854.82832716,0,0,13558.0,5,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,13558.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2410,5687,5686,0,0,83,111,86,70,0,3590,0,0,0,0,0,3,0,1,1.0,2441.38828656,0,0,14495.0,5,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,14495.0,3,2,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 2411,5693,5692,3,5,41,221,62,50,0,360,0,200,0,0,2,6,4,6,2.9,2175.84867892,3952,0,42653.0,4,2,1,2,4,2,0,0,0,1,0,0,0,0,0,2,14707.9310345,3,2,3_0,3_0,13333.0,0,13333.0,0,3,8,93.0,10.0,3.3,0,1,1294.7881166630002,1294.7881166630002,0.0 -2412,5700,5699,5,8,45,221,63,50,0,3607,0,100,0,0,2,8,3,5,2.8,1153.77598162,3640,0,38840.0,1,1,1,3,4,2,0,1,0,1,0,0,0,0,0,2,13871.428571399998,3,2,3_0,3_0,22716.0,0,22716.0,0,9,13,333.1,30.0,3.3,0,1,2205.9856640003536,2205.9856640003536,0.0 +2412,5700,5699,5,8,45,221,63,50,0,3607,0,100,0,0,2,8,3,5,2.8,1153.77598162,3640,0,38840.0,1,1,1,3,4,2,0,1,0,1,0,0,0,0,0,2,13871.4285714,3,2,3_0,3_0,22716.0,0,22716.0,0,9,13,333.1,30.0,3.3,0,1,2205.9856640003536,2205.9856640003536,0.0 2413,5707,5706,11,15,49,111,56,50,0,3622,0,0,0,0,3,4,4,6,3.3,1129.86490979,3640,0,47100.0,1,4,7,6,4,3,0,0,0,0,1,0,0,0,0,3,14272.7272727,3,2,3_0,3_0,37343.0,0,37343.0,0,1,10,0.0,60.0,3.3,0,1,3626.4361089437048,3626.4361089437048,0.0 2414,5719,5718,0,0,90,112,77,71,0,3635,0,0,0,0,0,5,0,1,1.0,2983.32752604,0,0,12655.0,5,4,6,0,1,0,0,0,1,0,0,0,0,0,0,0,12655.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2415,5723,5722,0,30,28,221,56,42,0,3640,0,0,0,0,1,3,0,1,1.0,2678.63281472,0,0,14390.0,1,3,1,2,1,1,0,0,0,1,0,0,0,0,1,0,14390.0,3,2,3_0,3_0,7000.0,0,0.0,7000,11,20,0.0,60.0,5.56,0,0,679.7807557669694,0.0,679.7807557669694 @@ -2420,22 +2420,22 @@ 2418,5750,5749,11,11,78,221,72,71,0,3674,0,0,0,0,0,4,0,2,1.5,3364.88045519,0,0,20499.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,0,1,13666.0,3,2,3_0,3_0,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 2419,5754,5753,0,0,77,400,78,70,0,3679,0,0,0,0,0,4,0,1,1.0,3167.85327887,0,0,13388.0,5,4,0,1,1,0,0,0,0,1,0,0,0,0,0,0,13388.0,3,2,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 2420,5763,5762,0,0,42,111,85,60,0,3693,0,0,0,4,0,1,0,1,1.0,3014.83212932,0,0,14170.0,7,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,14170.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2421,5769,5768,0,0,37,111,67,71,0,37,0,0,0,644,1,1,1,3,1.8,3247.04104667,0,0,25364.0,1,3,10,8,4,0,0,0,0,0,0,0,1,1,0,0,14091.111111100001,3,2,3_1,3_0,0.0,0,0.0,0,0,0,77.0,46.6666666667,5.56,0,0,0.0,0.0,0.0 -2422,5800,5799,7,18,54,111,55,50,0,3738,0,0,0,0,2,3,1,3,2.0,1622.38920036,2340,0,25523.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,0,1,12761.5,3,2,3_0,3_0,20000.0,0,20000.0,0,4,12,0.0,13.333333333299999,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 +2421,5769,5768,0,0,37,111,67,71,0,37,0,0,0,644,1,1,1,3,1.8,3247.04104667,0,0,25364.0,1,3,10,8,4,0,0,0,0,0,0,0,1,1,0,0,14091.1111111,3,2,3_1,3_0,0.0,0,0.0,0,0,0,77.0,46.6666666667,5.56,0,0,0.0,0.0,0.0 +2422,5800,5799,7,18,54,111,55,50,0,3738,0,0,0,0,2,3,1,3,2.0,1622.38920036,2340,0,25523.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,0,1,12761.5,3,2,3_0,3_0,20000.0,0,20000.0,0,4,12,0.0,13.3333333333,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 2423,5817,5816,0,0,77,111,72,71,0,3761,0,0,0,0,0,5,0,1,1.0,3096.10262274,0,0,12590.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,12590.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2424,5818,5817,5,5,64,400,78,70,0,3762,0,0,0,0,0,4,1,2,1.5,1064.101656,2444,0,21110.0,5,1,0,0,2,1,0,0,1,0,0,0,0,0,0,1,14073.333333300001,3,2,3_0,3_1,14000.0,0,14000.0,0,4,4,0.0,0.0,0.0,0,0,1642.7425661464138,1642.7425661464138,0.0 +2424,5818,5817,5,5,64,400,78,70,0,3762,0,0,0,0,0,4,1,2,1.5,1064.101656,2444,0,21110.0,5,1,0,0,2,1,0,0,1,0,0,0,0,0,0,1,14073.3333333,3,2,3_0,3_1,14000.0,0,14000.0,0,4,4,0.0,0.0,0.0,0,0,1642.7425661464138,1642.7425661464138,0.0 2425,5830,5829,7,8,72,111,77,70,0,3778,0,0,0,0,0,5,0,2,1.5,2913.03785138,2600,0,21243.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,14162.0,3,2,3_0,3_0,17000.0,0,15000.0,2000,8,14,0.0,0.0,0.0,0,0,1650.896121148354,1456.673048072077,194.22307307627693 -2426,5835,5834,0,0,81,111,78,71,0,3786,0,0,0,155,0,3,0,1,1.0,3454.4824401999995,0,0,14316.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,14316.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2426,5835,5834,0,0,81,111,78,71,0,3786,0,0,0,155,0,3,0,1,1.0,3454.4824402,0,0,14316.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,14316.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2427,5842,5841,11,11,64,111,77,50,0,3793,0,0,0,0,0,4,0,1,1.0,3423.14058006,0,0,13313.0,5,2,9,7,1,1,0,0,0,0,0,1,0,0,1,0,13313.0,3,2,3_0,3_0,9862.0,0,0.0,9862,6,10,0.0,0.0,0.0,0,0,957.7139733391217,0.0,957.7139733391217 2428,5848,5847,1,1,47,112,67,50,1,3801,0,114,0,291,1,3,1,2,1.5,2286.13573765,1856,12321,20076.0,1,3,9,1,2,1,0,1,0,1,0,0,0,1,0,1,13384.0,3,2,3_1,3_0,13682.0,0,13682.0,0,3,3,0.0,5.0,0.0,1,0,1328.6800429148107,1328.6800429148107,0.0 2429,5853,5852,0,0,71,111,78,70,0,3807,0,0,0,313,0,3,0,1,1.0,2322.03761887,0,0,14050.0,5,3,8,6,1,0,0,0,0,0,1,0,0,0,0,0,14050.0,3,2,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 2430,5870,5869,0,11,53,111,77,41,0,3827,0,0,0,0,0,2,0,1,1.0,2835.05501259,2600,0,13660.0,7,3,9,7,1,1,0,0,0,0,0,1,0,1,0,1,13660.0,3,2,3_1,3_0,15309.0,0,15309.0,0,7,11,0.0,0.0,0.0,0,0,1486.6805128623619,1486.6805128623619,0.0 2431,5873,5872,11,11,62,221,72,50,0,383,0,0,0,0,0,6,0,2,1.5,3351.21913325,2912,0,19416.0,5,2,1,2,3,1,0,0,0,1,0,0,0,0,1,0,12944.0,3,2,3_0,3_0,7000.0,0,0.0,7000,10,10,0.0,0.0,0.0,0,0,679.7807557669694,0.0,679.7807557669694 -2432,5902,5901,9,16,55,112,52,50,0,3874,0,0,0,0,2,7,0,2,1.5,2251.71186373,2446,0,21823.0,4,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,14548.666666699999,3,2,3_0,3_1,6000.0,0,6000.0,0,6,14,57.9,20.0,0.0,1,0,704.0325283484631,704.0325283484631,0.0 +2432,5902,5901,9,16,55,112,52,50,0,3874,0,0,0,0,2,7,0,2,1.5,2251.71186373,2446,0,21823.0,4,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,14548.6666667,3,2,3_0,3_1,6000.0,0,6000.0,0,6,14,57.9,20.0,0.0,1,0,704.0325283484631,704.0325283484631,0.0 2433,5903,5902,5,6,73,112,78,60,0,3875,0,0,0,0,0,5,0,2,1.5,5587.81841398,760,0,19093.0,5,1,8,3,3,2,0,0,0,1,0,0,0,0,0,1,12728.6666667,3,2,3_0,3_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 -2434,5915,5914,2,12,57,111,78,50,0,3889,0,0,0,0,0,4,0,2,1.5,1354.4247611,0,0,21550.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,14366.666666699999,3,2,3_0,3_0,4500.0,0,1500.0,3000,7,7,0.0,0.0,0.0,0,0,437.00191442162316,145.66730480720773,291.33460961441546 -2435,5923,5922,0,5,27,111,46,60,0,390,0,0,950,550,2,2,0,2,1.5,3509.16168879,1040,0,21784.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,2,0,14522.666666699999,3,2,3_0,3_0,12000.0,0,0.0,12000,5,9,44.5,65.0,2.24,0,1,1165.3384384576618,0.0,1165.3384384576618 -2436,5926,5925,4,6,33,120,48,50,0,3906,0,48,0,257,2,3,2,4,2.1,5133.06542987,0,0,30195.0,1,3,0,2,4,2,0,0,0,1,0,0,0,0,0,2,14378.571428600002,3,2,3_0,3_0,20000.0,0,20000.0,0,1,8,0.0,22.5,3.31,0,1,1942.2307307627693,1942.2307307627693,0.0 +2434,5915,5914,2,12,57,111,78,50,0,3889,0,0,0,0,0,4,0,2,1.5,1354.4247611,0,0,21550.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,14366.6666667,3,2,3_0,3_0,4500.0,0,1500.0,3000,7,7,0.0,0.0,0.0,0,0,437.00191442162316,145.66730480720773,291.33460961441546 +2435,5923,5922,0,5,27,111,46,60,0,390,0,0,950,550,2,2,0,2,1.5,3509.16168879,1040,0,21784.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,2,0,14522.6666667,3,2,3_0,3_0,12000.0,0,0.0,12000,5,9,44.5,65.0,2.24,0,1,1165.3384384576618,0.0,1165.3384384576618 +2436,5926,5925,4,6,33,120,48,50,0,3906,0,48,0,257,2,3,2,4,2.1,5133.06542987,0,0,30195.0,1,3,0,2,4,2,0,0,0,1,0,0,0,0,0,2,14378.5714286,3,2,3_0,3_0,20000.0,0,20000.0,0,1,8,0.0,22.5,3.31,0,1,1942.2307307627693,1942.2307307627693,0.0 2437,5932,5931,0,0,69,111,74,20,0,3914,0,0,0,0,0,3,0,2,1.5,3175.68096575,0,0,19948.0,5,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,13298.6666667,3,2,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 2438,5935,5934,0,0,64,221,78,70,0,3917,0,0,0,0,0,5,0,1,1.0,2077.90077031,0,0,13353.0,5,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,13353.0,3,2,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 2439,5937,5936,0,0,25,112,56,50,0,3919,0,0,0,694,1,2,1,2,1.3,3402.86639188,0,0,17743.0,4,3,10,3,2,0,0,0,0,1,0,0,0,0,0,0,13648.4615385,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,20.0,5.5,0,0,0.0,0.0,0.0 @@ -2443,24 +2443,24 @@ 2441,5945,5944,10,17,50,111,64,71,0,393,0,0,0,300,1,1,0,1,1.0,5090.11542999,0,0,12820.0,4,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,12820.0,3,2,3_0,3_0,13716.0,0,13716.0,0,1,6,1144.0,30.0,3.3,0,1,1331.9818351571073,1331.9818351571073,0.0 2442,5950,5949,9,9,58,221,22,42,0,3935,0,0,0,0,1,7,0,2,1.5,6808.68668246,0,0,19706.0,4,1,1,3,3,1,0,0,0,1,0,0,0,0,1,0,13137.3333333,3,2,3_0,3_0,7681.0,0,0.0,7681,7,7,0.0,0.0,0.0,0,0,745.9137121494417,0.0,745.9137121494417 2443,5962,5961,0,0,62,111,77,70,0,3951,0,0,0,155,0,2,0,1,1.0,3484.06939889,0,0,13387.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,13387.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2444,5968,5967,8,12,71,400,78,71,0,3960,0,0,0,0,0,4,0,2,1.5,5212.97451651,0,0,20861.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,13907.333333300001,3,2,3_0,3_1,16000.0,0,16000.0,0,7,13,0.0,0.0,0.0,0,0,1877.4200755959014,1877.4200755959014,0.0 +2444,5968,5967,8,12,71,400,78,71,0,3960,0,0,0,0,0,4,0,2,1.5,5212.97451651,0,0,20861.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,13907.3333333,3,2,3_0,3_1,16000.0,0,16000.0,0,7,13,0.0,0.0,0.0,0,0,1877.4200755959014,1877.4200755959014,0.0 2445,5971,5970,0,0,71,111,86,70,0,3965,0,0,0,0,0,2,0,1,1.0,1827.81306668,0,0,12950.0,6,3,6,5,1,0,0,0,0,0,1,0,0,0,0,0,12950.0,3,2,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 2446,5985,5984,0,0,29,111,85,50,0,3985,0,0,0,0,0,1,0,1,1.0,2359.75694331,0,0,13179.0,7,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,13179.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 2447,5986,5985,12,21,49,112,65,71,0,3986,0,250,0,0,1,4,1,3,1.8,3117.19876919,0,0,24713.0,1,3,6,0,4,2,0,0,1,0,0,0,0,1,0,2,13729.4444444,3,2,3_1,3_1,10000.0,0,10000.0,0,7,11,0.0,0.0,0.0,0,1,1173.3875472474383,1173.3875472474383,0.0 2448,5988,5987,1,13,30,111,56,31,2,3988,0,0,0,183,1,1,0,1,1.0,3255.20412093,1451,1200,13240.0,3,3,9,7,1,1,0,0,0,0,0,1,0,0,0,0,13240.0,3,2,3_0,3_0,6500.0,0,0.0,6500,6,14,0.0,0.0,0.0,0,1,631.2249874979001,0.0,631.2249874979001 -2449,5992,5991,7,7,62,111,77,50,0,3996,0,0,0,0,0,4,0,2,1.5,1242.37540778,2395,0,22154.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,14769.333333300001,3,2,3_0,3_0,8000.0,0,8000.0,0,3,5,0.0,0.0,0.0,0,0,776.8922923051077,776.8922923051077,0.0 +2449,5992,5991,7,7,62,111,77,50,0,3996,0,0,0,0,0,4,0,2,1.5,1242.37540778,2395,0,22154.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,14769.3333333,3,2,3_0,3_0,8000.0,0,8000.0,0,3,5,0.0,0.0,0.0,0,0,776.8922923051077,776.8922923051077,0.0 2450,6001,6000,0,0,37,111,67,71,0,4010,0,0,0,0,1,3,3,5,2.4,3235.56774308,0,0,31115.0,1,3,10,8,4,0,0,0,0,0,0,0,1,1,0,0,12964.5833333,3,2,3_1,3_0,0.0,0,0.0,0,0,0,40.5,26.8,5.5,0,0,0.0,0.0,0.0 2451,6004,6003,7,7,57,112,56,50,0,4013,0,0,200,0,1,6,1,3,2.0,2568.54997736,1040,0,26696.0,1,1,7,1,4,1,1,1,0,1,0,0,0,0,1,0,13348.0,3,2,3_0,3_0,15000.0,0,0.0,15000,10,10,498.0,75.0,3.3,0,1,1456.673048072077,0.0,1456.673048072077 2452,6019,6018,11,11,58,112,63,50,0,4035,0,0,0,0,1,6,1,3,2.0,1342.93009184,2600,0,29535.0,1,1,8,1,4,2,0,0,0,1,0,0,0,0,1,1,14767.5,3,2,3_0,3_0,7459.0,0,7459.0,0,12,12,38.0,40.0,5.56,0,0,724.3549510379748,724.3549510379748,0.0 -2453,6028,6027,8,8,55,112,52,50,0,4048,0,275,99999,0,2,4,1,2,1.5,5033.06426384,2080,0,21740.0,1,3,7,0,2,2,0,1,1,0,0,0,0,0,1,1,14493.333333300001,3,2,3_0,3_1,18787.0,0,11287.0,7500,0,1,145.6,54.0,3.3,0,1,2204.4431850137626,1324.4025245781838,880.0406604355787 +2453,6028,6027,8,8,55,112,52,50,0,4048,0,275,99999,0,2,4,1,2,1.5,5033.06426384,2080,0,21740.0,1,3,7,0,2,2,0,1,1,0,0,0,0,0,1,1,14493.3333333,3,2,3_0,3_1,18787.0,0,11287.0,7500,0,1,145.6,54.0,3.3,0,1,2204.4431850137626,1324.4025245781838,880.0406604355787 2454,6037,6036,1,7,65,112,77,71,0,4060,0,0,0,0,0,5,0,1,1.0,2390.74660253,1040,0,12902.0,5,4,9,3,1,1,0,0,0,1,0,0,0,0,1,0,12902.0,3,2,3_0,3_0,8000.0,0,0.0,8000,8,8,0.0,0.0,0.0,0,0,776.8922923051077,0.0,776.8922923051077 2455,6040,6039,0,0,90,111,78,70,0,4064,0,0,0,0,0,3,0,1,1.0,2293.03279243,0,0,13601.0,5,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,13601.0,3,2,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 2456,6063,6062,16,16,45,111,56,50,0,4094,0,0,0,402,2,3,1,3,1.8,2849.02227612,0,0,24813.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,1,0,13785.0,3,2,3_0,3_0,5000.0,0,0.0,5000,13,16,84.0,14.5,1.1,0,0,485.55768269069233,0.0,485.55768269069233 2457,6074,6073,1,20,43,112,65,50,0,4109,0,0,0,0,1,3,0,1,1.0,2380.52315379,2396,0,14690.0,4,3,7,0,1,1,0,0,1,0,0,0,0,0,0,1,14690.0,3,2,3_0,3_1,20000.0,0,20000.0,0,5,18,0.0,0.0,0.0,0,1,2346.7750944948766,2346.7750944948766,0.0 2458,6079,6078,1,15,24,112,64,20,2,4115,0,400,0,350,1,2,0,1,1.0,5138.38052912,2601,1800,14718.0,1,3,9,3,1,1,0,1,0,1,0,0,0,1,0,1,14718.0,3,2,3_1,3_0,9336.0,0,9336.0,0,6,17,100.5,50.0,3.3,0,1,906.6333051200609,906.6333051200609,0.0 -2459,6088,6087,5,5,73,400,78,50,0,4126,0,0,0,0,0,5,0,2,1.5,1529.45563837,0,0,21740.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,14493.333333300001,3,2,3_0,3_1,7000.0,0,7000.0,0,3,5,0.0,0.0,0.0,0,0,821.3712830732069,821.3712830732069,0.0 +2459,6088,6087,5,5,73,400,78,50,0,4126,0,0,0,0,0,5,0,2,1.5,1529.45563837,0,0,21740.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,14493.3333333,3,2,3_0,3_1,7000.0,0,7000.0,0,3,5,0.0,0.0,0.0,0,0,821.3712830732069,821.3712830732069,0.0 2460,6116,6115,0,0,74,111,78,71,0,4164,0,0,0,313,0,4,0,1,1.0,3333.36711818,0,0,13990.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,13990.0,3,2,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 -2461,6144,6143,10,12,41,211,62,71,0,421,0,600,0,0,1,5,3,5,2.8,3954.54527353,0,0,36930.0,1,3,1,2,4,1,0,1,0,1,0,0,0,1,0,1,13189.285714299998,3,2,3_1,3_0,15000.0,0,15000.0,0,11,14,0.0,15.0,0.0,0,0,1456.673048072077,1456.673048072077,0.0 +2461,6144,6143,10,12,41,211,62,71,0,421,0,600,0,0,1,5,3,5,2.8,3954.54527353,0,0,36930.0,1,3,1,2,4,1,0,1,0,1,0,0,0,1,0,1,13189.2857143,3,2,3_1,3_0,15000.0,0,15000.0,0,11,14,0.0,15.0,0.0,0,0,1456.673048072077,1456.673048072077,0.0 2462,6151,6150,0,0,75,111,78,71,0,4220,0,0,0,272,0,1,0,1,1.0,3736.70411221,0,0,12900.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,12900.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2463,6162,6161,0,0,51,400,85,50,0,4235,0,0,0,101,0,3,0,1,1.0,3771.24246671,0,0,12642.0,7,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,12642.0,3,2,3_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 2464,6207,6206,4,6,65,111,78,71,0,4294,0,0,0,497,0,4,1,3,2.0,2831.05739934,0,0,27472.0,5,3,8,7,4,1,0,0,0,0,0,1,0,0,0,1,13736.0,3,2,3_0,3_0,4000.0,0,4000.0,0,7,7,0.0,0.0,0.0,0,0,388.44614615255387,388.44614615255387,0.0 @@ -2468,85 +2468,85 @@ 2466,6219,6218,1,5,29,112,63,50,2,4308,0,0,99999,187,1,6,3,5,2.4,1580.18836929,3203,8000,31624.0,1,3,8,0,4,2,0,0,1,0,0,0,0,1,1,1,13176.6666667,3,2,3_1,3_1,25664.0,0,16353.0,9311,5,8,0.0,0.0,0.0,0,1,3011.381801255826,1918.840656013736,1092.54114524209 2467,6238,6237,4,13,48,400,56,71,0,4328,0,0,200,0,1,3,1,3,2.0,2924.92126933,780,0,29477.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,2,0,14738.5,3,2,3_0,3_1,6500.0,0,0.0,6500,8,12,154.0,50.0,3.31,0,1,762.7019057108349,0.0,762.7019057108349 2468,6260,6259,0,0,33,111,85,50,0,4360,0,0,0,335,0,1,0,1,1.0,3260.88352955,0,0,13185.0,7,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,13185.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,22.1,80.0,5.56,0,0,0.0,0.0,0.0 -2469,6275,6274,3,3,47,300,63,71,0,4379,0,300,156,0,2,6,3,5,2.8,1252.19217258,8096,0,38476.0,1,2,0,0,4,3,0,1,1,0,0,0,0,1,1,2,13741.428571399998,3,2,3_1,3_1,20000.0,0,20000.0,0,4,4,331.3,45.75,3.3,0,1,2346.7750944948766,2346.7750944948766,0.0 -2470,6279,6278,15,26,35,212,63,71,0,4385,0,0,80,0,2,6,4,6,2.7,1571.34141848,2600,0,36493.0,1,2,1,0,4,2,0,1,1,0,0,0,0,1,1,1,13515.925925900001,3,2,3_1,3_1,8000.0,0,0.0,8000,2,21,0.0,15.5,3.31,0,1,938.7100377979507,0.0,938.7100377979507 +2469,6275,6274,3,3,47,300,63,71,0,4379,0,300,156,0,2,6,3,5,2.8,1252.19217258,8096,0,38476.0,1,2,0,0,4,3,0,1,1,0,0,0,0,1,1,2,13741.4285714,3,2,3_1,3_1,20000.0,0,20000.0,0,4,4,331.3,45.75,3.3,0,1,2346.7750944948766,2346.7750944948766,0.0 +2470,6279,6278,15,26,35,212,63,71,0,4385,0,0,80,0,2,6,4,6,2.7,1571.34141848,2600,0,36493.0,1,2,1,0,4,2,0,1,1,0,0,0,0,1,1,1,13515.9259259,3,2,3_1,3_1,8000.0,0,0.0,8000,2,21,0.0,15.5,3.31,0,1,938.7100377979507,0.0,938.7100377979507 2471,6300,6299,11,12,51,221,47,50,0,4414,0,0,50,0,1,4,0,2,1.5,1762.74141443,1560,0,21390.0,1,1,1,2,3,1,0,1,0,1,0,0,0,0,1,0,14260.0,3,2,3_0,3_0,3067.0,0,0.0,3067,1,16,24.0,45.0,0.0,0,1,297.8410825624707,0.0,297.8410825624707 2472,6315,6314,18,20,81,211,78,71,0,4434,0,0,0,0,0,4,0,1,1.0,3063.60907274,0,0,12602.0,5,3,3,3,1,1,0,0,0,1,0,0,0,1,1,0,12602.0,3,2,3_1,3_0,1000.0,0,0.0,1000,21,21,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 -2473,6320,6319,1,7,75,300,75,70,2,4441,0,0,0,0,0,5,0,2,1.5,1024.24832397,0,5900,20668.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13778.666666699999,3,2,3_0,3_1,12000.0,0,12000.0,0,6,9,0.0,0.0,0.0,0,0,1408.0650566969261,1408.0650566969261,0.0 +2473,6320,6319,1,7,75,300,75,70,2,4441,0,0,0,0,0,5,0,2,1.5,1024.24832397,0,5900,20668.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13778.6666667,3,2,3_0,3_1,12000.0,0,12000.0,0,6,9,0.0,0.0,0.0,0,0,1408.0650566969261,1408.0650566969261,0.0 2474,6323,6322,0,0,48,111,65,70,0,4446,0,0,0,0,2,2,0,2,1.5,3390.87064405,0,0,20250.0,1,3,9,7,3,0,0,0,0,0,0,1,0,0,0,0,13500.0,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 -2475,6325,6324,0,2,36,111,46,41,2,445,0,0,0,176,1,4,4,6,2.7,4494.51728858,0,12000,38723.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,14341.851851899999,3,2,3_1,3_0,17000.0,0,17000.0,0,2,3,0.0,0.0,0.0,0,0,1650.896121148354,1650.896121148354,0.0 +2475,6325,6324,0,2,36,111,46,41,2,445,0,0,0,176,1,4,4,6,2.7,4494.51728858,0,12000,38723.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,14341.8518519,3,2,3_1,3_0,17000.0,0,17000.0,0,2,3,0.0,0.0,0.0,0,0,1650.896121148354,1650.896121148354,0.0 2476,6333,6332,17,17,85,400,71,70,0,4462,0,0,0,0,0,5,0,1,1.0,2412.18624945,0,0,14743.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,14743.0,3,2,3_0,3_1,5000.0,0,0.0,5000,15,16,0.0,0.0,0.0,0,0,586.6937736237192,0.0,586.6937736237192 2477,6345,6344,8,8,52,111,85,50,0,4480,0,0,0,0,0,3,0,1,1.0,3332.83672004,0,0,13610.0,7,3,10,8,1,1,0,0,0,0,0,0,1,1,0,1,13610.0,3,2,3_1,3_0,16971.0,0,16971.0,0,8,8,0.0,0.0,0.0,0,0,1648.079886588748,1648.079886588748,0.0 2478,6353,6352,12,12,53,111,34,10,0,4501,0,0,30,0,1,5,3,4,2.3,2756.80911854,0,0,32087.0,1,1,9,7,2,1,0,1,0,0,0,1,0,0,1,0,13950.8695652,3,2,3_0,3_0,20000.0,0,0.0,20000,10,10,68.4,10.0,0.0,0,1,1942.2307307627693,0.0,1942.2307307627693 2479,6375,6374,0,0,58,111,68,71,0,4536,0,0,0,0,2,3,1,3,2.0,6342.20581261,0,0,25340.0,1,3,6,5,4,0,0,0,0,0,1,0,0,0,0,0,12670.0,3,2,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 2480,6378,6377,8,11,54,112,56,70,0,4544,0,99999,0,0,1,2,0,1,1.0,1456.42463881,520,0,12859.0,1,3,9,1,1,1,0,1,0,1,0,0,0,1,0,1,12859.0,3,2,3_1,3_0,7500.0,0,7500.0,0,4,9,0.0,24.0,1.1,0,0,728.3365240360386,728.3365240360386,0.0 -2481,6392,6391,2,2,32,120,47,31,0,4564,0,0,200,0,1,6,3,5,2.4,1812.62975786,1560,0,33464.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,1,1,13943.333333300001,3,2,3_0,3_1,25664.0,0,16353.0,9311,5,8,0.0,0.0,0.0,0,1,3011.381801255826,1918.840656013736,1092.54114524209 +2481,6392,6391,2,2,32,120,47,31,0,4564,0,0,200,0,1,6,3,5,2.4,1812.62975786,1560,0,33464.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,1,1,13943.3333333,3,2,3_0,3_1,25664.0,0,16353.0,9311,5,8,0.0,0.0,0.0,0,1,3011.381801255826,1918.840656013736,1092.54114524209 2482,6396,6395,2,11,41,111,65,71,0,4569,0,400,0,360,2,5,1,3,2.0,2596.38273832,3276,0,28135.0,1,3,7,5,4,1,0,1,0,0,1,0,0,1,0,1,14067.5,3,2,3_1,3_0,15000.0,0,15000.0,0,2,11,216.7,23.3333333333,3.31,0,1,1456.673048072077,1456.673048072077,0.0 -2483,6398,6397,5,9,71,112,78,70,0,4572,0,0,0,405,0,3,0,2,1.5,2640.976072,1560,0,22010.0,5,3,10,0,3,1,0,0,1,0,0,0,0,0,1,0,14673.333333300001,3,2,3_0,3_1,6000.0,0,0.0,6000,9,9,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 +2483,6398,6397,5,9,71,112,78,70,0,4572,0,0,0,405,0,3,0,2,1.5,2640.976072,1560,0,22010.0,5,3,10,0,3,1,0,0,1,0,0,0,0,0,1,0,14673.3333333,3,2,3_0,3_1,6000.0,0,0.0,6000,9,9,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 2484,6404,6403,0,0,63,111,77,50,0,4581,0,0,0,171,0,3,0,1,1.0,2801.5110244,0,0,14114.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,14114.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2485,6408,6407,2,22,36,111,85,50,0,4587,0,0,0,0,1,6,5,7,3.2,961.054851109,1040,0,40384.0,6,3,8,6,5,1,0,0,0,0,1,0,0,1,0,1,12620.0,3,2,3_1,3_0,17102.0,0,17102.0,0,4,5,0.0,0.0,0.0,0,1,1660.8014978752442,1660.8014978752442,0.0 2486,6421,6420,2,5,44,112,64,71,0,46,0,550,0,0,2,5,2,4,2.3,4393.04044545,0,0,33360.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,14504.3478261,3,2,3_0,3_1,30000.0,0,30000.0,0,3,5,147.0,17.5,0.0,1,1,3520.162641742315,3520.162641742315,0.0 2487,6429,6428,11,11,87,300,71,70,0,4611,0,0,0,0,0,4,0,1,1.0,2380.19070915,0,0,13375.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,13375.0,3,2,3_0,3_1,300.0,0,300.0,0,7,16,0.0,0.0,0.0,0,0,35.20162641742315,35.20162641742315,0.0 -2488,6432,6431,1,8,45,111,52,60,0,4617,0,200,0,0,1,4,2,4,2.1,5781.01474399,2080,0,28852.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,13739.047618999999,3,2,3_0,3_0,105781.0,0,105781.0,0,1,2,164.5,75.0,5.5,0,0,10272.555446540826,10272.555446540826,0.0 +2488,6432,6431,1,8,45,111,52,60,0,4617,0,200,0,0,1,4,2,4,2.1,5781.01474399,2080,0,28852.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,13739.047619,3,2,3_0,3_0,105781.0,0,105781.0,0,1,2,164.5,75.0,5.5,0,0,10272.555446540826,10272.555446540826,0.0 2489,6440,6439,14,14,76,111,86,41,0,4628,0,0,0,0,0,7,0,1,1.0,2012.97552715,0,0,13819.0,6,1,7,6,1,1,0,0,0,0,1,0,0,0,1,0,13819.0,3,2,3_0,3_0,5658.0,0,0.0,5658,13,14,0.0,0.0,0.0,0,0,549.4570737327874,0.0,549.4570737327874 2490,6441,6440,0,0,73,111,72,50,0,4629,0,0,0,0,0,2,0,1,1.0,2920.48967796,0,0,13699.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,13699.0,3,2,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 -2491,6445,6444,0,12,29,111,56,31,2,4632,0,99999,480,423,2,2,0,2,1.5,3194.81683448,2601,1500,21739.0,1,3,10,8,3,2,0,1,0,0,0,0,1,1,1,1,14492.666666699999,3,2,3_1,3_0,11352.0,0,5000.0,6352,1,18,52.5,20.0,0.0,0,0,1102.410162780948,485.55768269069233,616.8524800902555 +2491,6445,6444,0,12,29,111,56,31,2,4632,0,99999,480,423,2,2,0,2,1.5,3194.81683448,2601,1500,21739.0,1,3,10,8,3,2,0,1,0,0,0,0,1,1,1,1,14492.6666667,3,2,3_1,3_0,11352.0,0,5000.0,6352,1,18,52.5,20.0,0.0,0,0,1102.410162780948,485.55768269069233,616.8524800902555 2492,6464,6463,4,4,85,111,78,71,0,4658,0,0,0,0,0,4,0,2,1.5,6324.18781075,0,0,20988.0,6,4,7,5,3,1,0,0,0,0,1,0,0,0,1,0,13992.0,3,2,3_0,3_0,3000.0,0,0.0,3000,5,5,0.0,0.0,0.0,0,0,291.33460961441546,0.0,291.33460961441546 2493,6487,6486,16,16,77,111,72,71,0,4689,0,0,0,0,0,5,0,1,1.0,3077.49967686,0,0,13403.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,0,1,13403.0,3,2,3_0,3_0,5000.0,0,5000.0,0,17,17,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 2494,6491,6490,4,13,76,400,71,70,0,4693,0,0,0,0,0,6,0,2,1.5,1413.88170065,3120,0,21546.0,5,4,0,0,3,2,0,0,1,0,0,0,0,0,0,2,14364.0,3,2,3_0,3_1,15000.0,0,15000.0,0,8,14,0.0,0.0,0.0,0,0,1760.0813208711575,1760.0813208711575,0.0 -2495,6495,6494,9,22,58,112,78,71,0,4701,0,0,0,0,0,5,0,2,1.5,4456.6214988,0,0,21424.0,5,1,5,0,3,2,0,0,1,0,0,0,0,0,0,2,14282.666666699999,3,2,3_0,3_1,7391.0,0,7391.0,0,2,19,0.0,0.0,0.0,0,0,867.2507361705817,867.2507361705817,0.0 +2495,6495,6494,9,22,58,112,78,71,0,4701,0,0,0,0,0,5,0,2,1.5,4456.6214988,0,0,21424.0,5,1,5,0,3,2,0,0,1,0,0,0,0,0,0,2,14282.6666667,3,2,3_0,3_1,7391.0,0,7391.0,0,2,19,0.0,0.0,0.0,0,0,867.2507361705817,867.2507361705817,0.0 2496,6511,6510,2,2,37,120,21,43,1,4722,0,50,0,0,2,7,3,5,2.6,2998.10176168,2860,20000,34797.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,13383.4615385,3,2,3_0,3_1,7001.0,0,7001.0,0,1,6,0.0,0.0,0.0,0,0,821.4886218279316,821.4886218279316,0.0 2497,6526,6525,9,9,62,111,72,70,0,4745,0,0,0,0,0,2,0,1,1.0,1437.4509156,0,0,14748.0,5,3,6,4,1,1,0,0,0,0,1,0,0,1,1,0,14748.0,3,2,3_1,3_0,6000.0,0,0.0,6000,5,7,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 2498,6532,6531,16,16,73,111,78,50,0,4754,0,0,0,0,0,2,0,1,1.0,2743.08362997,1026,0,13954.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,13954.0,3,2,3_0,3_0,15000.0,0,0.0,15000,6,17,0.0,0.0,0.0,0,0,1456.673048072077,0.0,1456.673048072077 2499,6537,6536,13,13,85,120,78,70,0,476,0,0,0,0,0,4,0,2,1.5,3311.73527887,2548,0,18860.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,12573.3333333,3,2,3_0,3_1,10000.0,0,10000.0,0,13,13,0.0,0.0,0.0,0,0,1173.3875472474383,1173.3875472474383,0.0 -2500,6564,6563,1,17,39,112,62,71,0,4794,0,320,0,0,3,7,3,5,2.8,3000.48862791,2288,0,36016.0,1,2,9,2,4,2,0,1,0,1,0,0,0,0,0,2,12862.857142899999,3,2,3_0,3_0,5744.0,0,5744.0,0,0,15,16.0,38.0,3.33,0,1,557.8086658750674,557.8086658750674,0.0 +2500,6564,6563,1,17,39,112,62,71,0,4794,0,320,0,0,3,7,3,5,2.8,3000.48862791,2288,0,36016.0,1,2,9,2,4,2,0,1,0,1,0,0,0,0,0,2,12862.8571429,3,2,3_0,3_0,5744.0,0,5744.0,0,0,15,16.0,38.0,3.33,0,1,557.8086658750674,557.8086658750674,0.0 2501,6580,6579,13,21,49,111,85,31,0,4816,0,0,99999,325,1,4,3,4,2.5,4981.61228706,0,0,36280.0,6,3,6,5,2,2,0,1,0,0,1,0,0,0,1,1,14512.0,3,2,3_0,3_0,10673.0,0,7059.0,3614,1,21,0.0,0.0,0.0,0,0,1036.471429471552,685.5103364227194,350.9610930488325 2502,6603,6602,21,21,82,112,71,71,0,4851,0,0,0,0,0,5,0,1,1.0,3638.90380389,0,0,14007.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,14007.0,3,2,3_0,3_1,3915.0,0,0.0,3915,21,21,0.0,0.0,0.0,0,0,459.38122474737213,0.0,459.38122474737213 2503,6604,6603,0,0,90,112,77,70,0,4852,0,0,0,730,0,3,0,1,1.0,3463.45500129,0,0,13220.0,5,3,10,3,1,0,0,0,0,1,0,0,0,0,0,0,13220.0,3,2,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 2504,6606,6605,18,18,63,111,72,71,0,4854,0,0,0,0,0,3,0,2,1.5,3197.28683429,0,0,21624.0,5,3,6,4,3,3,0,0,0,0,1,0,0,0,0,3,14416.0,3,2,3_0,3_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 -2505,6643,6642,3,8,33,112,65,43,0,4908,0,200,0,0,2,4,2,4,2.1,2166.55758928,3744,0,29342.0,1,3,9,0,4,2,0,1,1,0,0,0,0,1,0,2,13972.380952399999,3,2,3_1,3_1,35000.0,0,35000.0,0,2,6,274.6,45.0,3.3,0,1,4106.8564153660345,4106.8564153660345,0.0 +2505,6643,6642,3,8,33,112,65,43,0,4908,0,200,0,0,2,4,2,4,2.1,2166.55758928,3744,0,29342.0,1,3,9,0,4,2,0,1,1,0,0,0,0,1,0,2,13972.3809524,3,2,3_1,3_1,35000.0,0,35000.0,0,2,6,274.6,45.0,3.3,0,1,4106.8564153660345,4106.8564153660345,0.0 2506,6652,6651,18,22,62,111,72,60,0,4919,0,0,0,332,0,4,0,2,1.5,3648.74798597,2080,0,21669.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,14446.0,3,2,3_0,3_0,5000.0,0,0.0,5000,17,19,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 -2507,6663,6662,1,13,49,221,55,60,2,4939,0,0,120,0,2,4,1,2,1.5,3295.84811098,2147,2800,21680.0,1,3,1,1,2,2,0,0,0,1,0,0,0,1,1,1,14453.333333300001,3,2,3_1,3_0,27057.0,0,16353.0,10704,5,15,67.2,84.5,3.3,0,0,2627.5468441124126,1588.0649570081785,1039.4818871042344 +2507,6663,6662,1,13,49,221,55,60,2,4939,0,0,120,0,2,4,1,2,1.5,3295.84811098,2147,2800,21680.0,1,3,1,1,2,2,0,0,0,1,0,0,0,1,1,1,14453.3333333,3,2,3_1,3_0,27057.0,0,16353.0,10704,5,15,67.2,84.5,3.3,0,0,2627.5468441124126,1588.0649570081785,1039.4818871042344 2508,6665,6664,3,13,34,111,56,30,0,4941,0,0,0,399,1,4,2,3,1.6,2287.62470222,3640,0,21637.0,1,3,8,7,2,1,1,0,0,0,0,1,0,1,1,0,13523.125,3,2,3_1,3_0,3301.0,0,0.0,3301,3,14,0.0,0.0,0.0,1,0,320.5651821123951,0.0,320.5651821123951 2509,6669,6668,2,10,58,300,65,71,0,4947,0,600,0,0,2,5,1,3,2.0,1487.57821611,0,0,26319.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,13159.5,3,2,3_0,3_1,40000.0,0,40000.0,0,8,9,267.6,34.6666666667,3.3,1,1,4693.550188989753,4693.550188989753,0.0 -2510,6701,6700,21,22,70,120,71,50,0,4991,0,0,0,0,0,6,0,2,1.5,1853.5234192000003,0,0,19436.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,12957.3333333,3,2,3_0,3_1,6000.0,0,0.0,6000,14,20,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 +2510,6701,6700,21,22,70,120,71,50,0,4991,0,0,0,0,0,6,0,2,1.5,1853.5234192,0,0,19436.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,12957.3333333,3,2,3_0,3_1,6000.0,0,0.0,6000,14,20,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 2511,6707,6706,3,3,45,112,13,50,0,5,0,0,0,0,3,8,2,4,2.5,1055.03750325,4307,0,36599.0,1,2,6,0,4,2,0,0,1,0,0,0,0,0,0,2,14639.6,3,2,3_0,3_1,13000.0,0,13000.0,0,3,5,217.0,32.5,3.3,0,1,1525.4038114216698,1525.4038114216698,0.0 2512,6724,6723,0,5,65,111,74,71,0,5018,0,0,0,393,0,3,0,1,1.0,3271.45743224,0,0,12900.0,5,3,9,7,1,1,0,0,0,0,0,1,0,1,0,1,12900.0,3,2,3_1,3_0,3000.0,0,3000.0,0,6,6,0.0,0.0,0.0,0,0,291.33460961441546,291.33460961441546,0.0 -2513,6746,6745,2,9,39,112,47,43,0,505,0,100,0,0,2,4,2,4,2.1,2314.47406849,0,0,28691.0,4,2,7,4,4,2,0,1,0,0,1,0,0,0,0,2,13662.380952399999,3,2,3_0,3_0,20000.0,0,20000.0,0,7,9,160.0,11.0,3.3,1,0,1942.2307307627693,1942.2307307627693,0.0 +2513,6746,6745,2,9,39,112,47,43,0,505,0,100,0,0,2,4,2,4,2.1,2314.47406849,0,0,28691.0,4,2,7,4,4,2,0,1,0,0,1,0,0,0,0,2,13662.3809524,3,2,3_0,3_0,20000.0,0,20000.0,0,7,9,160.0,11.0,3.3,1,0,1942.2307307627693,1942.2307307627693,0.0 2514,6749,6748,7,7,62,120,78,50,0,5054,0,0,0,0,0,3,0,1,1.0,3519.93378268,2600,0,14197.0,5,1,0,2,1,1,0,0,0,1,0,0,0,0,1,0,14197.0,3,2,3_0,3_0,6000.0,0,0.0,6000,5,7,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 2515,6755,6754,9,9,51,112,63,41,0,5061,0,461,150,0,2,3,1,3,2.0,1711.28821572,2340,0,29341.0,1,2,9,0,4,2,1,1,1,0,0,0,0,0,1,1,14670.5,3,2,3_0,3_1,34000.0,0,30000.0,4000,11,14,165.5,48.3333333333,3.3,0,1,3989.51766064129,3520.162641742315,469.35501889897535 2516,6774,6773,0,0,61,111,68,71,0,5089,0,0,0,0,3,4,2,3,2.0,2588.30521587,0,0,29316.0,1,1,8,6,2,0,0,0,0,0,1,0,0,0,0,0,14658.0,3,2,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 2517,6777,6776,2,20,62,111,78,50,0,5091,0,0,0,222,0,1,0,1,1.0,3034.26419405,2080,0,13816.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,0,1,13816.0,3,2,3_1,3_0,800.0,0,800.0,0,6,14,0.0,0.0,0.0,0,0,77.68922923051078,77.68922923051078,0.0 2518,6779,6778,0,1,67,120,77,60,2,5095,0,0,0,0,0,3,0,2,1.5,2961.79781355,2080,17000,19010.0,5,1,0,0,5,1,0,0,1,0,0,0,0,0,1,0,12673.3333333,3,2,3_0,3_1,9000.0,0,0.0,9000,7,0,0.0,0.0,0.0,0,0,1056.0487925226946,0.0,1056.0487925226946 2519,6793,6792,0,0,48,111,63,33,0,5115,0,0,0,188,1,4,1,2,1.5,2925.06955423,0,0,20826.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,13884.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,10.5,60.0,1.1,0,0,0.0,0.0,0.0 -2520,6798,6797,1,1,63,120,75,20,0,5124,0,0,0,0,0,5,0,2,1.5,3128.49596592,0,0,21535.0,5,1,0,2,3,1,0,0,0,1,0,0,0,0,0,1,14356.666666699999,3,2,3_0,3_0,20000.0,0,20000.0,0,3,3,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 +2520,6798,6797,1,1,63,120,75,20,0,5124,0,0,0,0,0,5,0,2,1.5,3128.49596592,0,0,21535.0,5,1,0,2,3,1,0,0,0,1,0,0,0,0,0,1,14356.6666667,3,2,3_0,3_0,20000.0,0,20000.0,0,3,3,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 2521,6799,6798,0,0,79,111,77,50,0,5125,0,0,0,427,0,2,0,1,1.0,3191.13229266,0,0,13364.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13364.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2522,6803,6802,6,11,78,221,78,71,0,513,0,0,0,0,0,3,0,2,1.5,3795.87134236,1533,0,21950.0,5,3,1,1,3,1,0,0,0,1,0,0,0,0,1,0,14633.333333300001,3,2,3_0,3_0,1000.0,0,0.0,1000,11,11,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 +2522,6803,6802,6,11,78,221,78,71,0,513,0,0,0,0,0,3,0,2,1.5,3795.87134236,1533,0,21950.0,5,3,1,1,3,1,0,0,0,1,0,0,0,0,1,0,14633.3333333,3,2,3_0,3_0,1000.0,0,0.0,1000,11,11,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 2523,6819,6818,0,0,32,111,47,20,0,5150,0,0,0,0,1,2,0,1,1.0,4721.70996086,0,0,14066.0,1,2,10,8,1,0,0,0,0,0,0,0,1,0,0,0,14066.0,3,2,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 2524,6821,6820,6,6,63,112,75,60,0,5152,0,0,0,0,0,3,0,1,1.0,3016.48381244,1225,0,13198.0,5,1,10,3,1,1,0,0,0,1,0,0,0,0,1,0,13198.0,3,2,3_0,3_0,6000.0,0,0.0,6000,5,7,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 2525,6829,6828,0,15,41,111,54,50,0,516,0,100,0,435,1,2,0,1,1.0,1500.1877547,1301,0,13019.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,0,1,13019.0,3,2,3_0,3_0,40000.0,0,40000.0,0,3,17,0.0,0.0,0.0,1,0,3884.4614615255387,3884.4614615255387,0.0 2526,6830,6829,0,0,47,111,56,60,0,5160,0,0,0,971,2,5,3,4,2.3,2560.50441007,0,0,33398.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,14520.8695652,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,37.5,5.57,0,0,0.0,0.0,0.0 2527,6843,6842,0,0,36,111,56,50,0,518,0,0,0,219,1,2,1,2,1.3,3841.56953196,0,0,17568.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,13513.8461538,3,2,3_1,3_0,0.0,0,0.0,0,0,0,107.5,35.0,2.22,0,0,0.0,0.0,0.0 -2528,6845,6844,9,11,77,111,75,70,0,5183,0,0,0,0,0,5,0,2,1.5,2239.07057148,0,0,22178.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,14785.333333300001,3,2,3_0,3_0,1000.0,0,0.0,1000,11,11,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 +2528,6845,6844,9,11,77,111,75,70,0,5183,0,0,0,0,0,5,0,2,1.5,2239.07057148,0,0,22178.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,14785.3333333,3,2,3_0,3_0,1000.0,0,0.0,1000,11,11,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 2529,6882,6881,10,10,74,221,78,70,0,5231,0,0,0,0,0,6,0,1,1.0,2297.00690832,0,0,14500.0,5,1,1,3,1,1,0,0,0,1,0,0,0,0,0,1,14500.0,3,2,3_0,3_0,4500.0,0,4500.0,0,4,5,0.0,0.0,0.0,0,0,437.00191442162316,437.00191442162316,0.0 2530,6889,6888,1,5,39,112,21,50,0,5240,0,120,0,0,2,5,1,3,2.0,2530.45684067,205,0,27580.0,1,2,3,0,4,1,0,1,1,0,0,0,0,0,0,1,13790.0,3,2,3_0,3_1,20000.0,0,20000.0,0,5,7,34.0,20.0,0.0,1,1,2346.7750944948766,2346.7750944948766,0.0 2531,6900,6899,0,0,52,221,85,50,0,5252,0,0,0,0,0,2,0,1,1.0,4700.02196181,0,0,13458.0,7,3,1,1,1,0,0,0,0,1,0,0,0,1,0,0,13458.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2532,6919,6918,0,0,60,111,55,41,0,5273,0,0,0,96,1,4,0,1,1.0,2872.31780206,1009,0,12800.0,4,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,12800.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2533,6937,6936,0,0,32,111,34,10,0,5298,0,0,0,193,1,2,0,2,1.5,2060.69351298,0,0,20230.0,1,3,7,6,3,0,0,0,0,0,1,0,0,0,0,0,13486.666666699999,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,17.5,5.55,0,0,0.0,0.0,0.0 +2533,6937,6936,0,0,32,111,34,10,0,5298,0,0,0,193,1,2,0,2,1.5,2060.69351298,0,0,20230.0,1,3,7,6,3,0,0,0,0,0,1,0,0,0,0,0,13486.6666667,3,2,3_0,3_0,0.0,0,0.0,0,0,0,0.0,17.5,5.55,0,0,0.0,0.0,0.0 2534,6961,6960,3,3,66,111,78,50,0,533,0,0,0,0,0,5,0,2,1.5,1146.48928145,1573,0,19854.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,13236.0,3,2,3_0,3_0,5000.0,0,0.0,5000,3,3,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 -2535,6963,6962,6,16,48,120,43,10,0,5331,0,60,0,0,3,6,1,3,2.0,855.4458095069999,4195,0,27497.0,1,1,0,3,4,2,0,1,0,1,0,0,0,0,1,1,13748.5,3,2,3_0,3_0,12000.0,0,12000.0,0,14,14,0.0,60.0,3.31,0,1,1165.3384384576618,1165.3384384576618,0.0 +2535,6963,6962,6,16,48,120,43,10,0,5331,0,60,0,0,3,6,1,3,2.0,855.445809507,4195,0,27497.0,1,1,0,3,4,2,0,1,0,1,0,0,0,0,1,1,13748.5,3,2,3_0,3_0,12000.0,0,12000.0,0,14,14,0.0,60.0,3.31,0,1,1165.3384384576618,1165.3384384576618,0.0 2536,6967,6966,0,0,74,400,77,71,0,5336,0,0,0,0,0,3,0,1,1.0,3270.05404477,0,0,14563.0,5,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,14563.0,3,2,3_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 2537,6974,6973,3,10,35,111,64,60,0,5346,0,99999,0,0,2,7,4,6,2.9,1239.72090208,2600,0,37063.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,12780.3448276,3,2,3_0,3_0,30000.0,0,30000.0,0,5,5,0.0,0.0,0.0,0,1,2913.346096144154,2913.346096144154,0.0 2538,6990,6989,4,4,52,111,67,71,0,537,0,60,0,0,1,4,1,3,2.0,1983.46004445,523,0,27024.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,13512.0,3,2,3_0,3_0,54562.0,0,54562.0,0,1,9,0.0,10.0,0.0,0,0,5298.599656593911,5298.599656593911,0.0 2539,6991,6990,4,8,57,300,21,50,0,5370,0,0,0,0,2,7,0,3,2.0,2097.18017602,0,0,25835.0,1,1,0,0,5,2,0,0,1,0,0,0,0,0,0,2,12917.5,3,2,3_0,3_1,17343.0,0,17343.0,0,2,2,0.0,0.0,0.0,0,0,2035.0060231912323,2035.0060231912323,0.0 -2540,7010,7009,3,3,65,111,78,71,0,5399,0,0,0,0,1,5,0,2,1.5,2896.29743645,2878,0,21509.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,14339.333333300001,3,2,3_0,3_0,11236.0,0,11236.0,0,2,3,0.0,0.0,0.0,0,1,1091.145224542524,1091.145224542524,0.0 +2540,7010,7009,3,3,65,111,78,71,0,5399,0,0,0,0,1,5,0,2,1.5,2896.29743645,2878,0,21509.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,14339.3333333,3,2,3_0,3_0,11236.0,0,11236.0,0,2,3,0.0,0.0,0.0,0,1,1091.145224542524,1091.145224542524,0.0 2541,7059,7058,0,0,40,111,53,43,0,5462,0,0,0,149,1,1,0,1,1.0,3452.30601573,0,0,14295.0,1,3,7,6,1,0,0,0,0,0,1,0,0,0,0,0,14295.0,3,2,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 -2542,7068,7067,7,7,41,111,55,42,0,5477,0,900,0,0,2,6,1,3,1.8,1817.11679646,2070,0,25194.0,1,3,8,7,4,2,0,1,0,0,0,1,0,1,0,2,13996.666666699999,3,2,3_1,3_0,40272.0,0,40272.0,0,1,9,0.0,0.0,0.0,0,1,3910.8757994639127,3910.8757994639127,0.0 -2543,7073,7072,3,5,44,221,56,50,0,5481,0,0,0,0,1,7,1,2,1.5,3418.59083746,5219,0,20506.0,1,1,1,1,2,2,0,0,0,1,0,0,0,0,1,1,13670.666666699999,3,2,3_0,3_0,15311.0,0,15311.0,0,5,6,0.0,7.5,0.0,1,0,1486.8747359354381,1486.8747359354381,0.0 +2542,7068,7067,7,7,41,111,55,42,0,5477,0,900,0,0,2,6,1,3,1.8,1817.11679646,2070,0,25194.0,1,3,8,7,4,2,0,1,0,0,0,1,0,1,0,2,13996.6666667,3,2,3_1,3_0,40272.0,0,40272.0,0,1,9,0.0,0.0,0.0,0,1,3910.8757994639127,3910.8757994639127,0.0 +2543,7073,7072,3,5,44,221,56,50,0,5481,0,0,0,0,1,7,1,2,1.5,3418.59083746,5219,0,20506.0,1,1,1,1,2,2,0,0,0,1,0,0,0,0,1,1,13670.6666667,3,2,3_0,3_0,15311.0,0,15311.0,0,5,6,0.0,7.5,0.0,1,0,1486.8747359354381,1486.8747359354381,0.0 2544,7080,7079,0,0,59,111,85,70,0,5491,0,0,0,0,0,3,0,1,1.0,2776.64807493,0,0,13626.0,7,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,13626.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2545,7112,7111,0,0,85,111,78,71,0,553,0,0,0,0,0,3,0,1,1.0,4011.81651106,0,0,12720.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,12720.0,3,2,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 -2546,7113,7112,0,0,75,300,71,71,1,5531,0,0,0,0,0,4,0,2,1.5,3582.86912195,0,9450,21559.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,14372.666666699999,3,2,3_0,3_1,15000.0,0,0.0,15000,5,0,0.0,0.0,0.0,0,0,1760.0813208711575,0.0,1760.0813208711575 -2547,7146,7145,0,0,50,112,68,71,0,5572,0,0,0,0,2,4,4,6,3.5,4271.31995043,0,0,45420.0,1,3,10,2,4,0,0,0,0,1,0,0,0,1,0,0,12977.142857100001,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2546,7113,7112,0,0,75,300,71,71,1,5531,0,0,0,0,0,4,0,2,1.5,3582.86912195,0,9450,21559.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,14372.6666667,3,2,3_0,3_1,15000.0,0,0.0,15000,5,0,0.0,0.0,0.0,0,0,1760.0813208711575,0.0,1760.0813208711575 +2547,7146,7145,0,0,50,112,68,71,0,5572,0,0,0,0,2,4,4,6,3.5,4271.31995043,0,0,45420.0,1,3,10,2,4,0,0,0,0,1,0,0,0,1,0,0,12977.1428571,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2548,7152,7151,5,7,46,300,64,71,0,5581,0,150,0,0,2,5,2,4,2.3,1200.54807985,0,0,31501.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,13696.0869565,3,2,3_0,3_1,30000.0,0,30000.0,0,3,5,147.0,17.5,0.0,1,1,3520.162641742315,3520.162641742315,0.0 2549,7155,7154,0,1,42,111,54,71,1,5584,0,500,0,292,1,3,1,2,1.3,2772.01680359,3484,16197,19240.0,1,3,7,6,2,1,0,1,0,0,1,0,0,1,0,1,14800.0,3,2,3_1,3_0,13682.0,0,13682.0,0,3,3,0.0,5.0,0.0,1,0,1328.6800429148107,1328.6800429148107,0.0 2550,7157,7156,10,10,62,300,75,70,0,5586,0,0,0,203,0,4,0,1,1.0,1612.86347976,2600,0,13293.0,5,3,0,0,1,1,0,0,1,0,0,0,0,0,1,0,13293.0,3,2,3_0,3_1,5072.0,0,0.0,5072,10,10,0.0,0.0,0.0,0,0,595.1421639639008,0.0,595.1421639639008 @@ -2556,38 +2556,38 @@ 2554,7200,7199,0,0,66,111,78,70,0,5644,0,0,0,0,0,4,0,1,1.0,1375.68991278,0,0,13864.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,13864.0,3,2,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 2555,7205,7204,17,17,77,111,78,70,0,5650,0,0,0,0,0,4,0,1,1.0,2640.54799537,0,0,12640.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,12640.0,3,2,3_0,3_0,5000.0,0,5000.0,0,17,17,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 2556,7216,7215,0,0,82,112,77,41,0,5664,0,0,0,0,0,2,0,1,1.0,5882.84047903,0,0,14680.0,5,4,8,3,1,0,0,0,0,1,0,0,0,0,0,0,14680.0,3,2,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 -2557,7218,7217,6,10,51,111,62,60,0,5669,0,350,0,299,1,3,1,2,1.5,2328.83122557,1638,0,20347.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,13564.666666699999,3,2,3_0,3_0,4000.0,0,4000.0,0,10,10,0.0,50.0,5.5,0,1,388.44614615255387,388.44614615255387,0.0 +2557,7218,7217,6,10,51,111,62,60,0,5669,0,350,0,299,1,3,1,2,1.5,2328.83122557,1638,0,20347.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,13564.6666667,3,2,3_0,3_0,4000.0,0,4000.0,0,10,10,0.0,50.0,5.5,0,1,388.44614615255387,388.44614615255387,0.0 2558,7221,7220,0,25,32,112,68,50,2,5671,0,0,0,0,1,2,0,1,1.0,2857.40048752,1040,150,13169.0,4,3,7,0,1,1,0,0,1,0,0,0,0,0,0,1,13169.0,3,2,3_0,3_1,6821.0,0,6821.0,0,1,18,0.0,0.0,0.0,0,1,800.3676459774778,800.3676459774778,0.0 2559,7231,7230,13,19,75,111,78,50,0,5684,0,0,0,374,0,4,0,2,1.5,2122.45673792,0,0,18924.0,5,3,8,6,3,1,0,0,0,0,1,0,0,0,1,0,12616.0,3,2,3_0,3_0,1000.0,0,0.0,1000,18,21,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 -2560,7240,7239,19,19,68,111,78,50,0,5699,0,0,0,0,0,2,0,2,1.5,1811.77167796,1717,0,20986.0,5,1,4,4,3,1,0,0,0,0,1,0,0,0,0,1,13990.666666699999,3,2,3_0,3_0,5000.0,0,5000.0,0,11,17,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 -2561,7243,7242,1,13,21,111,62,43,0,5702,0,99999,0,0,1,1,2,4,2.1,3659.99998718,1040,0,30536.0,1,3,7,6,4,1,0,1,0,0,1,0,0,1,0,1,14540.952381000001,3,2,3_1,3_0,17226.0,0,17226.0,0,1,5,0.0,0.0,0.0,0,1,1672.8433284059734,1672.8433284059734,0.0 +2560,7240,7239,19,19,68,111,78,50,0,5699,0,0,0,0,0,2,0,2,1.5,1811.77167796,1717,0,20986.0,5,1,4,4,3,1,0,0,0,0,1,0,0,0,0,1,13990.6666667,3,2,3_0,3_0,5000.0,0,5000.0,0,11,17,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 +2561,7243,7242,1,13,21,111,62,43,0,5702,0,99999,0,0,1,1,2,4,2.1,3659.99998718,1040,0,30536.0,1,3,7,6,4,1,0,1,0,0,1,0,0,1,0,1,14540.952381,3,2,3_1,3_0,17226.0,0,17226.0,0,1,5,0.0,0.0,0.0,0,1,1672.8433284059734,1672.8433284059734,0.0 2562,7248,7247,0,0,55,111,78,71,0,5708,0,0,0,20,0,2,0,1,1.0,2853.52846477,0,0,12938.0,7,3,6,5,1,0,0,0,0,0,1,0,0,1,0,0,12938.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2563,7281,7280,1,16,55,111,55,44,2,5754,0,0,0,268,1,1,0,1,1.0,3184.60603644,0,2000,14435.0,1,3,9,7,1,1,0,0,0,0,0,1,0,1,0,1,14435.0,3,2,3_1,3_0,10000.0,0,10000.0,0,2,13,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 2564,7296,7295,0,0,83,211,75,50,0,5780,0,0,0,0,0,4,0,2,1.5,989.499055939,0,0,21681.0,5,1,3,4,3,0,0,0,0,0,1,0,0,0,0,0,14454.0,3,2,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 2565,7300,7299,22,22,66,111,74,50,0,5786,0,0,0,0,0,5,0,2,1.5,2571.44075288,0,0,19518.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,2,0,13012.0,3,2,3_0,3_0,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 -2566,7306,7305,1,5,37,112,37,20,2,5792,0,500,0,0,1,7,4,6,2.7,1101.85685687,0,6500,38613.0,1,2,9,2,4,2,0,1,0,1,0,0,0,1,0,2,14301.111111100001,3,2,3_1,3_0,17343.0,0,17343.0,0,2,0,0.0,0.0,0.0,0,1,1684.2053781809354,1684.2053781809354,0.0 +2566,7306,7305,1,5,37,112,37,20,2,5792,0,500,0,0,1,7,4,6,2.7,1101.85685687,0,6500,38613.0,1,2,9,2,4,2,0,1,0,1,0,0,0,1,0,2,14301.1111111,3,2,3_1,3_0,17343.0,0,17343.0,0,2,0,0.0,0.0,0.0,0,1,1684.2053781809354,1684.2053781809354,0.0 2567,7313,7312,13,15,44,112,52,50,0,5801,0,450,0,0,3,4,1,3,2.0,1594.10874856,0,0,26428.0,1,4,6,0,4,1,0,1,1,0,0,0,0,0,0,1,13214.0,3,2,3_0,3_1,10000.0,0,10000.0,0,5,8,0.0,0.0,0.0,0,0,1173.3875472474383,1173.3875472474383,0.0 2568,7336,7335,0,0,81,111,77,60,0,5836,0,0,0,0,0,5,0,1,1.0,2091.77665147,0,0,14271.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14271.0,3,2,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 2569,7346,7345,2,7,21,111,43,33,0,585,0,0,180,480,1,2,0,1,1.0,3593.15662993,0,0,14535.0,1,3,7,5,1,1,1,1,0,0,1,0,0,0,1,0,14535.0,3,2,3_0,3_0,6997.0,0,0.0,6997,2,6,0.0,10.0,3.3,0,1,679.4894211573549,0.0,679.4894211573549 -2570,7350,7349,0,0,25,111,54,43,0,5853,0,0,0,550,1,2,0,3,2.0,3652.1468696999996,0,0,26766.0,1,3,10,8,5,0,0,0,0,0,0,0,1,0,0,0,13383.0,3,2,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 -2571,7374,7373,8,14,41,221,67,71,0,5886,0,99999,0,0,2,4,1,3,1.8,5449.56615599,3910,0,25207.0,1,3,1,2,4,2,0,1,0,1,0,0,0,0,0,2,14003.888888899999,3,2,3_0,3_0,10000.0,0,10000.0,0,3,16,54.0,16.6666666667,3.3,0,1,971.1153653813847,971.1153653813847,0.0 +2570,7350,7349,0,0,25,111,54,43,0,5853,0,0,0,550,1,2,0,3,2.0,3652.1468697,0,0,26766.0,1,3,10,8,5,0,0,0,0,0,0,0,1,0,0,0,13383.0,3,2,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 +2571,7374,7373,8,14,41,221,67,71,0,5886,0,99999,0,0,2,4,1,3,1.8,5449.56615599,3910,0,25207.0,1,3,1,2,4,2,0,1,0,1,0,0,0,0,0,2,14003.8888889,3,2,3_0,3_0,10000.0,0,10000.0,0,3,16,54.0,16.6666666667,3.3,0,1,971.1153653813847,971.1153653813847,0.0 2572,7375,7374,4,26,50,111,54,31,0,5888,0,300,0,0,1,5,0,1,1.0,3151.39677918,2729,0,14175.0,1,1,9,7,1,2,0,0,0,0,0,1,0,0,1,1,14175.0,3,2,3_0,3_0,6000.0,0,3000.0,3000,9,17,0.0,0.0,0.0,0,0,582.6692192288309,291.33460961441546,291.33460961441546 2573,7399,7398,2,3,68,300,71,71,0,5918,0,0,0,0,0,3,0,2,1.5,2155.04368421,0,0,21429.0,5,3,0,0,3,2,0,0,1,0,0,0,0,0,0,2,14286.0,3,2,3_0,3_1,15000.0,0,15000.0,0,6,6,0.0,0.0,0.0,0,0,1760.0813208711575,1760.0813208711575,0.0 2574,7405,7404,0,0,87,111,78,71,0,5927,0,0,0,0,0,3,0,1,1.0,3875.14492693,0,0,13192.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,13192.0,3,2,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 2575,7428,7427,0,0,64,211,78,70,0,5965,0,0,0,0,0,3,0,2,1.5,1760.39295128,0,0,22050.0,5,3,3,4,3,0,0,0,0,0,1,0,0,0,0,0,14700.0,3,2,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 2576,7441,7440,4,14,86,111,77,60,0,598,0,0,0,221,0,3,0,1,1.0,3704.85269956,0,0,14422.0,5,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,14422.0,3,2,3_1,3_0,619.0,0,0.0,619,17,17,0.0,0.0,0.0,0,0,60.112041117107715,0.0,60.112041117107715 2577,7464,7463,0,0,63,300,77,70,0,6012,0,0,0,0,0,3,0,1,1.0,2342.43439283,3018,0,13657.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,13657.0,3,2,3_0,3_1,6000.0,0,0.0,6000,2,5,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 -2578,7469,7468,7,7,32,112,46,31,0,6018,0,250,300,0,2,5,2,4,2.1,3136.61264603,2364,0,26550.0,1,3,6,0,4,2,0,1,1,0,0,0,0,0,1,1,12642.857142899999,3,2,3_0,3_1,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,1,0,1760.0813208711575,1760.0813208711575,0.0 +2578,7469,7468,7,7,32,112,46,31,0,6018,0,250,300,0,2,5,2,4,2.1,3136.61264603,2364,0,26550.0,1,3,6,0,4,2,0,1,1,0,0,0,0,0,1,1,12642.8571429,3,2,3_0,3_1,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,1,0,1760.0813208711575,1760.0813208711575,0.0 2579,7470,7469,21,21,84,211,77,70,0,6019,0,0,0,0,0,3,0,1,1.0,2227.70370304,0,0,13620.0,5,1,4,3,1,1,0,0,0,1,0,0,0,0,1,0,13620.0,3,2,3_0,3_0,1000.0,0,0.0,1000,21,21,0.0,0.0,0.0,0,0,97.11153653813847,0.0,97.11153653813847 2580,7480,7479,2,14,25,111,54,43,0,6030,0,0,0,202,2,4,2,4,2.1,2800.67326524,0,0,28598.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,13618.0952381,3,2,3_1,3_0,6000.0,0,0.0,6000,7,15,104.0,40.0,2.24,0,0,582.6692192288309,0.0,582.6692192288309 2581,7502,7501,1,6,23,111,47,43,0,6060,0,50,0,0,1,2,0,2,1.5,5511.93570437,2392,0,19660.0,1,3,8,7,5,2,0,1,0,0,0,1,0,0,1,1,13106.6666667,3,2,3_0,3_0,35000.0,0,35000.0,0,2,8,63.5,22.0,3.31,0,1,3398.903778834847,3398.903778834847,0.0 -2582,7507,7506,3,8,56,111,78,50,0,6066,0,0,200,0,1,2,0,2,1.5,1735.18572071,3136,0,21961.0,7,3,8,7,3,1,0,1,0,0,0,1,0,0,1,0,14640.666666699999,3,2,3_0,3_0,7681.0,0,0.0,7681,7,7,0.0,0.0,0.0,0,0,745.9137121494417,0.0,745.9137121494417 +2582,7507,7506,3,8,56,111,78,50,0,6066,0,0,200,0,1,2,0,2,1.5,1735.18572071,3136,0,21961.0,7,3,8,7,3,1,0,1,0,0,0,1,0,0,1,0,14640.6666667,3,2,3_0,3_0,7681.0,0,0.0,7681,7,7,0.0,0.0,0.0,0,0,745.9137121494417,0.0,745.9137121494417 2583,7514,7513,6,19,62,111,78,70,0,6076,0,0,0,290,0,3,0,1,1.0,2565.92225228,1300,0,14560.0,5,3,6,5,1,1,0,0,0,0,1,0,0,1,1,0,14560.0,3,2,3_1,3_0,300.0,0,0.0,300,4,16,0.0,0.0,0.0,0,0,29.133460961441543,0.0,29.133460961441543 -2584,7538,7537,1,7,40,111,64,50,2,6109,0,400,0,116,1,4,4,6,2.7,1346.28171666,2392,5900,36528.0,4,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,13528.888888899999,3,2,3_1,3_0,17102.0,0,17102.0,0,4,5,0.0,0.0,0.0,0,1,1660.8014978752442,1660.8014978752442,0.0 +2584,7538,7537,1,7,40,111,64,50,2,6109,0,400,0,116,1,4,4,6,2.7,1346.28171666,2392,5900,36528.0,4,3,8,7,4,1,0,1,0,0,0,1,0,1,0,1,13528.8888889,3,2,3_1,3_0,17102.0,0,17102.0,0,4,5,0.0,0.0,0.0,0,1,1660.8014978752442,1660.8014978752442,0.0 2585,7540,7539,6,14,69,112,77,60,0,6111,0,0,0,0,0,5,0,2,1.5,2634.46788818,1560,0,19591.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,1,0,13060.6666667,3,2,3_0,3_1,10000.0,0,0.0,10000,4,16,0.0,0.0,0.0,0,0,1173.3875472474383,0.0,1173.3875472474383 2586,7554,7553,0,0,68,112,78,71,0,6130,0,0,0,0,0,3,0,1,1.0,3024.23119886,0,0,12670.0,5,1,10,1,1,0,0,0,0,1,0,0,0,0,0,0,12670.0,3,2,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 -2587,7555,7554,1,14,23,111,85,50,2,6131,0,0,0,24,1,4,2,4,2.1,3074.32362276,2080,200,29952.0,4,3,8,6,4,1,0,0,0,0,1,0,0,1,1,0,14262.857142899999,3,2,3_1,3_0,15000.0,0,0.0,15000,4,9,0.0,0.0,0.0,0,1,1456.673048072077,0.0,1456.673048072077 -2588,7557,7556,5,14,29,120,47,31,0,6134,0,600,0,0,1,5,1,4,2.3,5925.85618927,2477,0,29740.0,1,1,0,3,5,1,0,1,0,1,0,0,0,0,0,1,12930.434782600001,3,2,3_0,3_0,30000.0,0,30000.0,0,2,14,0.0,0.0,0.0,0,0,2913.346096144154,2913.346096144154,0.0 +2587,7555,7554,1,14,23,111,85,50,2,6131,0,0,0,24,1,4,2,4,2.1,3074.32362276,2080,200,29952.0,4,3,8,6,4,1,0,0,0,0,1,0,0,1,1,0,14262.8571429,3,2,3_1,3_0,15000.0,0,0.0,15000,4,9,0.0,0.0,0.0,0,1,1456.673048072077,0.0,1456.673048072077 +2588,7557,7556,5,14,29,120,47,31,0,6134,0,600,0,0,1,5,1,4,2.3,5925.85618927,2477,0,29740.0,1,1,0,3,5,1,0,1,0,1,0,0,0,0,0,1,12930.4347826,3,2,3_0,3_0,30000.0,0,30000.0,0,2,14,0.0,0.0,0.0,0,0,2913.346096144154,2913.346096144154,0.0 2589,7559,7558,9,14,54,111,63,50,0,6136,0,15,0,0,3,4,1,3,2.0,805.930411465,0,0,26830.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,1,1,13415.0,3,2,3_1,3_0,12000.0,0,12000.0,0,14,14,0.0,60.0,3.31,0,1,1165.3384384576618,1165.3384384576618,0.0 2590,7563,7562,8,8,76,112,78,50,0,6141,0,0,0,0,0,3,0,2,1.5,991.011698555,0,0,22155.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,0,1,14770.0,3,2,3_0,3_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 2591,7573,7572,10,20,64,111,75,50,0,6156,0,0,0,294,0,5,1,3,2.0,3243.70469164,3986,0,27730.0,5,3,9,7,4,1,0,0,0,0,0,1,0,1,1,0,13865.0,3,2,3_1,3_0,0.0,0,0.0,0,13,19,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -2595,7 +2595,7 @@ 2593,7579,7578,1,1,57,112,56,50,1,6165,0,0,0,0,1,5,0,2,1.5,1369.67546151,2606,18200,19653.0,1,1,9,1,3,1,0,0,0,1,0,0,0,0,0,1,13102.0,3,2,3_0,3_0,13500.0,0,13500.0,0,3,3,0.0,0.0,0.0,0,0,1311.0057432648694,1311.0057432648694,0.0 2594,7582,7581,11,11,75,111,75,60,0,6171,0,0,0,0,0,2,0,1,1.0,3016.39637656,0,0,13509.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,13509.0,3,2,3_0,3_0,7000.0,0,0.0,7000,10,10,0.0,0.0,0.0,0,0,679.7807557669694,0.0,679.7807557669694 2595,7583,7582,22,22,88,300,71,71,0,6173,0,0,0,0,0,4,0,1,1.0,2859.99738479,1712,0,13072.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,13072.0,3,2,3_0,3_1,300.0,0,300.0,0,7,16,0.0,0.0,0.0,0,0,35.20162641742315,35.20162641742315,0.0 -2596,7588,7587,0,0,65,111,78,71,0,618,0,0,0,0,0,3,0,1,1.0,2808.1681393000003,0,0,14814.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14814.0,3,2,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 +2596,7588,7587,0,0,65,111,78,71,0,618,0,0,0,0,0,3,0,1,1.0,2808.1681393,0,0,14814.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14814.0,3,2,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 2597,7608,7607,8,20,63,300,72,70,0,620,0,0,0,0,1,6,0,2,1.5,2623.76634046,0,0,19130.0,5,1,0,0,3,2,1,0,1,0,0,0,0,0,0,2,12753.3333333,3,2,3_0,3_1,15000.0,0,15000.0,0,8,21,0.0,0.0,0.0,1,0,1760.0813208711575,1760.0813208711575,0.0 2598,7614,7613,5,5,36,300,85,60,0,6209,0,0,300,120,1,4,3,5,2.4,1648.31026204,3276,0,31985.0,6,3,0,0,4,2,0,0,1,0,0,0,0,1,2,0,13327.0833333,3,2,3_1,3_1,6000.0,0,0.0,6000,3,14,71.0,9.0,3.3,0,1,704.0325283484631,0.0,704.0325283484631 2599,7621,7620,0,0,85,120,71,70,0,6216,0,0,0,0,0,5,0,1,1.0,4193.21932947,0,0,14716.0,5,1,0,2,1,0,0,0,0,1,0,0,0,0,0,0,14716.0,3,2,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 @@ -2607,21 +2607,21 @@ 2605,7645,7644,11,15,63,212,77,70,0,625,0,0,0,0,0,4,0,1,1.0,1301.21254894,2080,0,13326.0,5,3,2,0,1,1,0,0,1,0,0,0,0,1,0,1,13326.0,3,2,3_1,3_1,22226.0,0,22226.0,0,1,15,0.0,0.0,0.0,0,0,2607.9711625121563,2607.9711625121563,0.0 2606,7650,7649,2,4,67,400,78,71,0,6257,0,0,0,0,0,4,0,2,1.5,4059.18532253,1404,0,21750.0,5,3,0,0,3,2,0,0,1,0,0,0,0,0,0,2,14500.0,3,2,3_0,3_1,15000.0,0,15000.0,0,6,6,0.0,0.0,0.0,0,0,1760.0813208711575,1760.0813208711575,0.0 2607,7652,7651,6,9,65,111,77,60,0,6259,0,0,0,0,0,3,0,1,1.0,2206.30100214,1680,0,13566.0,5,4,9,7,1,1,0,0,0,0,0,1,0,0,0,1,13566.0,3,2,3_0,3_0,3000.0,0,3000.0,0,6,6,0.0,0.0,0.0,0,0,291.33460961441546,291.33460961441546,0.0 -2608,7656,7655,3,19,22,400,62,50,0,6264,0,250,0,0,1,6,1,3,1.8,2613.18484282,0,0,22921.0,1,3,0,0,4,4,0,0,1,0,0,0,0,1,0,4,12733.888888899999,3,2,3_1,3_1,500.0,0,500.0,0,7,14,75.0,14.0,3.3,0,1,58.66937736237192,58.66937736237192,0.0 +2608,7656,7655,3,19,22,400,62,50,0,6264,0,250,0,0,1,6,1,3,1.8,2613.18484282,0,0,22921.0,1,3,0,0,4,4,0,0,1,0,0,0,0,1,0,4,12733.8888889,3,2,3_1,3_1,500.0,0,500.0,0,7,14,75.0,14.0,3.3,0,1,58.66937736237192,58.66937736237192,0.0 2609,7660,7659,0,0,47,111,43,20,0,627,0,0,0,1050,1,3,0,1,1.0,3863.21468593,0,0,13822.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,13822.0,3,2,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 2610,7665,7664,4,4,57,120,77,42,0,6281,0,0,0,0,0,5,0,1,1.0,2551.30209267,0,0,13536.0,6,4,0,0,1,1,1,0,1,0,0,0,0,0,1,0,13536.0,3,2,3_0,3_1,30000.0,0,0.0,30000,3,3,0.0,0.0,0.0,0,0,3520.162641742315,0.0,3520.162641742315 2611,7683,7682,0,0,19,111,55,60,0,6302,0,0,0,0,1,1,0,1,1.0,3451.95670747,0,0,13683.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13683.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2612,7686,7685,0,12,23,111,68,43,0,6306,0,0,0,0,1,2,0,2,1.5,3024.1572165,6084,0,18926.0,1,3,6,4,3,2,0,0,0,0,1,0,0,1,0,2,12617.3333333,3,2,3_1,3_0,12000.0,0,12000.0,0,2,14,176.5,50.0,3.3,0,1,1165.3384384576618,1165.3384384576618,0.0 2613,7688,7687,12,12,83,120,78,70,0,6310,0,0,0,0,0,3,0,2,1.5,2774.80519237,0,0,19520.0,5,3,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13013.3333333,3,2,3_0,3_1,10000.0,0,10000.0,0,13,13,0.0,0.0,0.0,0,0,1173.3875472474383,1173.3875472474383,0.0 -2614,7696,7695,15,15,80,400,77,70,0,6320,0,0,0,0,0,6,0,2,1.5,1968.36255302,0,0,20650.0,5,4,0,1,3,1,0,0,0,1,0,0,0,0,0,1,13766.666666699999,3,2,3_0,3_0,14700.0,0,14700.0,0,7,13,0.0,0.0,0.0,0,0,1427.5395871106357,1427.5395871106357,0.0 +2614,7696,7695,15,15,80,400,77,70,0,6320,0,0,0,0,0,6,0,2,1.5,1968.36255302,0,0,20650.0,5,4,0,1,3,1,0,0,0,1,0,0,0,0,0,1,13766.6666667,3,2,3_0,3_0,14700.0,0,14700.0,0,7,13,0.0,0.0,0.0,0,0,1427.5395871106357,1427.5395871106357,0.0 2615,7709,7708,3,6,74,400,75,70,0,6347,0,0,0,259,0,4,0,2,1.5,5946.56749892,1820,0,19838.0,5,3,0,1,3,1,0,0,0,1,0,0,0,0,0,1,13225.3333333,3,2,3_0,3_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 2616,7726,7725,17,23,84,112,78,71,0,637,0,0,0,0,0,6,0,3,2.0,1144.13754932,3146,0,25863.0,5,4,7,0,5,1,0,0,1,0,0,0,0,0,1,0,12931.5,3,2,3_0,3_1,4500.0,0,0.0,4500,22,22,0.0,0.0,0.0,0,0,528.0243962613473,0.0,528.0243962613473 -2617,7736,7735,0,0,33,111,63,50,0,6386,0,0,0,252,1,3,0,2,1.5,3533.53362376,0,0,21970.0,1,3,8,7,3,0,0,0,0,0,0,1,0,0,0,0,14646.666666699999,3,2,3_0,3_0,0.0,0,0.0,0,0,0,107.5,35.0,2.22,0,0,0.0,0.0,0.0 +2617,7736,7735,0,0,33,111,63,50,0,6386,0,0,0,252,1,3,0,2,1.5,3533.53362376,0,0,21970.0,1,3,8,7,3,0,0,0,0,0,0,1,0,0,0,0,14646.6666667,3,2,3_0,3_0,0.0,0,0.0,0,0,0,107.5,35.0,2.22,0,0,0.0,0.0,0.0 2618,7750,7749,1,1,73,111,77,60,0,6403,0,0,0,283,0,3,0,1,1.0,4671.47619766,2080,0,14754.0,5,3,10,8,1,1,0,0,0,0,0,0,1,1,1,0,14754.0,3,2,3_1,3_0,5000.0,0,0.0,5000,5,5,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 2619,7767,7766,0,0,42,111,56,41,0,643,0,0,0,0,1,1,0,1,1.0,3767.01866805,0,0,13360.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13360.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2620,7780,7779,5,15,35,111,42,43,0,6446,0,50,0,0,1,4,3,4,1.9,2041.98428065,2978,0,24720.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,13010.5263158,3,2,3_1,3_0,30000.0,0,30000.0,0,2,14,0.0,0.0,0.0,0,0,2913.346096144154,2913.346096144154,0.0 -2621,7782,7781,0,0,45,111,62,42,1,6449,0,400,0,0,1,5,2,3,1.8,2738.99378159,0,25994,26646.0,1,2,9,7,2,1,0,1,0,0,0,1,0,1,0,1,14803.333333300001,3,2,3_1,3_0,22000.0,0,22000.0,0,2,2,0.0,0.0,0.0,0,1,2136.4538038390465,2136.4538038390465,0.0 -2622,7796,7795,1,15,42,400,64,71,2,6468,0,300,0,0,2,4,2,4,2.3,7094.784437199999,0,2000,32762.0,1,2,0,1,4,2,0,1,0,1,0,0,0,1,0,2,14244.3478261,3,2,3_1,3_0,12000.0,0,12000.0,0,15,15,42.0,13.0,3.3,0,1,1165.3384384576618,1165.3384384576618,0.0 +2621,7782,7781,0,0,45,111,62,42,1,6449,0,400,0,0,1,5,2,3,1.8,2738.99378159,0,25994,26646.0,1,2,9,7,2,1,0,1,0,0,0,1,0,1,0,1,14803.3333333,3,2,3_1,3_0,22000.0,0,22000.0,0,2,2,0.0,0.0,0.0,0,1,2136.4538038390465,2136.4538038390465,0.0 +2622,7796,7795,1,15,42,400,64,71,2,6468,0,300,0,0,2,4,2,4,2.3,7094.7844372,0,2000,32762.0,1,2,0,1,4,2,0,1,0,1,0,0,0,1,0,2,14244.3478261,3,2,3_1,3_0,12000.0,0,12000.0,0,15,15,42.0,13.0,3.3,0,1,1165.3384384576618,1165.3384384576618,0.0 2623,7811,7810,11,12,53,300,69,50,0,6494,0,0,0,0,2,3,0,2,1.5,1137.23745148,2600,0,20030.0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13353.3333333,3,2,3_0,3_1,21000.0,0,21000.0,0,7,13,67.5,40.0,3.3,0,1,2464.1138492196205,2464.1138492196205,0.0 2624,7826,7825,0,16,50,112,54,50,0,6515,0,300,0,0,1,4,2,3,2.0,3159.73183191,0,0,25652.0,1,2,8,0,2,1,0,1,1,0,0,0,0,1,0,1,12826.0,3,2,3_1,3_1,31353.0,0,31353.0,0,2,15,53.6,45.0,0.0,1,1,3678.9219768848934,3678.9219768848934,0.0 2625,7830,7829,0,0,62,300,78,50,0,6519,0,0,0,0,0,3,0,2,1.5,2558.56302351,0,0,19250.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,12833.3333333,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -2632,24 +2632,24 @@ 2630,7918,7917,0,0,43,120,63,50,1,6636,0,0,250,0,1,2,0,1,1.0,2137.87092115,2600,6800,13200.0,1,2,0,2,1,1,0,1,0,1,0,0,0,0,1,0,13200.0,3,2,3_0,3_0,8116.0,0,0.0,8116,0,0,0.0,4.0,1.1,0,0,788.1572305435318,0.0,788.1572305435318 2631,7924,7923,17,17,78,400,71,70,0,6641,0,0,0,0,0,6,0,2,1.5,3098.54620682,0,0,19993.0,5,4,0,0,3,2,0,0,1,0,0,0,0,0,2,0,13328.6666667,3,2,3_0,3_1,5658.0,0,0.0,5658,14,17,0.0,0.0,0.0,0,0,663.9026742326006,0.0,663.9026742326006 2632,7934,7933,2,7,39,400,47,50,0,6655,0,600,0,0,2,4,2,4,2.1,2253.20267409,8320,0,28540.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,13590.4761905,3,2,3_0,3_1,41000.0,0,21000.0,20000,4,4,0.0,36.6666666667,3.3,0,1,4810.888943714497,2464.1138492196205,2346.7750944948766 -2633,7935,7934,0,0,39,221,12,50,1,6656,0,250,0,0,2,5,1,3,1.8,1440.91137429,0,31200,25616.0,1,2,1,3,4,1,0,1,0,1,0,0,0,0,0,1,14231.111111100001,3,2,3_0,3_0,75000.0,0,75000.0,0,2,2,77.0,16.6666666667,3.3,1,0,7283.3652403603855,7283.3652403603855,0.0 +2633,7935,7934,0,0,39,221,12,50,1,6656,0,250,0,0,2,5,1,3,1.8,1440.91137429,0,31200,25616.0,1,2,1,3,4,1,0,1,0,1,0,0,0,0,0,1,14231.1111111,3,2,3_0,3_0,75000.0,0,75000.0,0,2,2,77.0,16.6666666667,3.3,1,0,7283.3652403603855,7283.3652403603855,0.0 2634,7943,7942,13,26,79,400,75,70,0,6664,0,0,0,0,0,6,0,1,1.0,2466.37008549,1321,0,13460.0,5,2,0,0,1,1,0,0,1,0,0,0,0,0,1,0,13460.0,3,2,3_0,3_1,2200.0,0,0.0,2200,4,23,0.0,0.0,0.0,0,0,258.14526039443643,0.0,258.14526039443643 -2635,7951,7950,3,3,41,111,22,71,0,6675,0,0,0,0,1,3,2,4,2.1,3533.23418027,0,0,26867.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,0,0,12793.809523799999,3,2,3_1,3_0,6000.0,0,0.0,6000,3,3,7.0,20.0,0.0,0,1,582.6692192288309,0.0,582.6692192288309 -2636,7983,7982,2,2,44,112,62,50,0,6721,0,400,0,0,2,8,3,5,2.8,904.4740314999999,520,0,37761.0,1,2,8,1,4,2,0,0,0,1,0,0,0,0,0,2,13486.071428600002,3,2,3_0,3_0,15445.0,0,15445.0,0,1,5,90.1,28.0,3.3,0,1,1499.8876818315487,1499.8876818315487,0.0 +2635,7951,7950,3,3,41,111,22,71,0,6675,0,0,0,0,1,3,2,4,2.1,3533.23418027,0,0,26867.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,0,0,12793.8095238,3,2,3_1,3_0,6000.0,0,0.0,6000,3,3,7.0,20.0,0.0,0,1,582.6692192288309,0.0,582.6692192288309 +2636,7983,7982,2,2,44,112,62,50,0,6721,0,400,0,0,2,8,3,5,2.8,904.4740315,520,0,37761.0,1,2,8,1,4,2,0,0,0,1,0,0,0,0,0,2,13486.0714286,3,2,3_0,3_0,15445.0,0,15445.0,0,1,5,90.1,28.0,3.3,0,1,1499.8876818315487,1499.8876818315487,0.0 2637,7986,7985,26,26,89,111,78,71,0,6726,0,0,0,0,0,4,0,2,1.5,5440.62173746,0,0,21630.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,14420.0,3,2,3_0,3_0,2000.0,0,0.0,2000,16,24,0.0,0.0,0.0,0,0,194.22307307627693,0.0,194.22307307627693 2638,7999,7998,0,0,78,112,71,70,0,6745,0,0,0,0,0,3,0,1,1.0,2945.35887349,0,0,14268.0,5,3,9,0,1,0,0,0,1,0,0,0,0,1,0,0,14268.0,3,2,3_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 -2639,8005,8004,9,9,74,120,78,71,0,6755,0,0,0,0,0,5,0,2,1.5,3531.66930083,3380,0,21380.0,5,1,0,3,3,1,0,0,0,1,0,0,0,0,0,1,14253.333333300001,3,2,3_0,3_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 +2639,8005,8004,9,9,74,120,78,71,0,6755,0,0,0,0,0,5,0,2,1.5,3531.66930083,3380,0,21380.0,5,1,0,3,3,1,0,0,0,1,0,0,0,0,0,1,14253.3333333,3,2,3_0,3_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 2640,8013,8012,2,15,41,111,55,41,0,6770,0,0,0,130,1,4,2,3,2.0,2617.39333173,0,0,28010.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,14005.0,3,2,3_1,3_0,13682.0,0,13682.0,0,3,14,0.0,0.0,0.0,0,1,1328.6800429148107,1328.6800429148107,0.0 2641,8014,8013,3,16,49,111,68,60,0,6771,0,180,0,600,2,3,2,4,2.3,2808.26933276,3022,0,31450.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,13673.9130435,3,2,3_0,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 2642,8020,8019,0,0,60,300,78,71,0,6779,0,0,0,0,0,2,0,1,1.0,2924.95924095,0,0,12808.0,5,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,12808.0,3,2,3_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 -2643,8025,8024,0,5,26,400,54,20,0,6788,0,400,0,0,2,3,2,4,2.1,1748.69242685,0,0,30213.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,14387.142857100001,3,2,3_1,3_1,13000.0,0,13000.0,0,2,3,92.7,21.5,3.31,0,1,1525.4038114216698,1525.4038114216698,0.0 +2643,8025,8024,0,5,26,400,54,20,0,6788,0,400,0,0,2,3,2,4,2.1,1748.69242685,0,0,30213.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,14387.1428571,3,2,3_1,3_1,13000.0,0,13000.0,0,2,3,92.7,21.5,3.31,0,1,1525.4038114216698,1525.4038114216698,0.0 2644,8044,8043,2,2,50,111,56,50,0,6809,0,0,0,0,1,2,0,1,1.0,2820.49503367,2766,0,13725.0,1,1,10,8,1,1,1,0,0,0,0,0,1,0,0,1,13725.0,3,2,3_0,3_0,0.0,0,0.0,0,3,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2645,8069,8068,4,4,74,111,71,60,0,6840,0,0,0,0,0,4,0,1,1.0,2970.00842535,0,0,13737.0,5,4,6,4,1,1,0,0,0,0,1,0,0,0,1,0,13737.0,3,2,3_0,3_0,4000.0,0,0.0,4000,4,4,0.0,0.0,0.0,0,0,388.44614615255387,0.0,388.44614615255387 -2646,8075,8074,9,9,73,112,77,71,0,6849,0,0,0,0,0,3,0,2,1.5,2241.44700134,0,0,20900.0,5,1,10,4,3,1,0,0,0,0,1,0,0,0,0,1,13933.333333300001,3,2,3_0,3_0,5000.0,0,5000.0,0,1,9,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 -2647,8091,8090,0,21,34,112,63,50,0,6872,0,0,0,0,1,4,2,4,2.1,1506.67056133,5564,0,29327.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,0,2,13965.238095200002,3,2,3_1,3_1,10000.0,0,10000.0,0,3,17,0.0,0.0,0.0,0,1,1173.3875472474383,1173.3875472474383,0.0 +2646,8075,8074,9,9,73,112,77,71,0,6849,0,0,0,0,0,3,0,2,1.5,2241.44700134,0,0,20900.0,5,1,10,4,3,1,0,0,0,0,1,0,0,0,0,1,13933.3333333,3,2,3_0,3_0,5000.0,0,5000.0,0,1,9,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 +2647,8091,8090,0,21,34,112,63,50,0,6872,0,0,0,0,1,4,2,4,2.1,1506.67056133,5564,0,29327.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,0,2,13965.2380952,3,2,3_1,3_1,10000.0,0,10000.0,0,3,17,0.0,0.0,0.0,0,1,1173.3875472474383,1173.3875472474383,0.0 2648,8093,8092,0,0,67,211,78,70,0,6874,0,0,0,352,0,3,0,1,1.0,1538.808792,0,0,13390.0,5,3,3,3,1,0,0,0,0,1,0,0,0,1,0,0,13390.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2649,8099,8098,11,29,35,300,67,50,0,6881,0,400,0,0,1,4,3,5,2.4,1158.26105838,8165,0,32196.0,1,2,0,0,4,2,0,0,1,0,0,0,0,1,1,1,13415.0,3,2,3_1,3_1,25664.0,0,16353.0,9311,5,8,0.0,0.0,0.0,0,1,3011.381801255826,1918.840656013736,1092.54114524209 -2650,8110,8109,19,19,62,111,78,71,0,6897,0,0,0,0,0,7,0,2,1.5,4502.20350344,0,0,22094.0,5,4,7,5,3,1,0,0,0,0,1,0,0,0,1,0,14729.333333300001,3,2,3_0,3_0,5000.0,0,0.0,5000,17,19,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 +2650,8110,8109,19,19,62,111,78,71,0,6897,0,0,0,0,0,7,0,2,1.5,4502.20350344,0,0,22094.0,5,4,7,5,3,1,0,0,0,0,1,0,0,0,1,0,14729.3333333,3,2,3_0,3_0,5000.0,0,0.0,5000,17,19,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 2651,8126,8125,0,0,79,111,77,71,0,6919,0,0,0,0,0,6,0,1,1.0,4041.55014568,0,0,12714.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,12714.0,3,2,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 2652,8132,8131,0,1,32,111,43,20,0,6929,0,0,0,37,1,1,0,1,1.0,3253.54889552,0,0,14225.0,1,3,10,8,1,1,1,0,0,0,0,0,1,1,1,0,14225.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2653,8152,8151,0,0,83,112,86,44,0,6955,0,0,0,0,0,3,0,1,1.0,3104.7329156,0,0,12979.0,5,1,7,2,1,0,0,0,0,1,0,0,0,0,0,0,12979.0,3,2,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 @@ -2657,82 +2657,82 @@ 2655,8157,8156,0,0,42,111,56,70,0,6960,0,0,0,343,1,2,0,1,1.0,2604.2490383,0,0,12620.0,1,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,12620.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2656,8158,8157,0,0,70,111,78,71,0,6961,0,0,0,236,0,2,0,1,1.0,3801.78943733,0,0,14310.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14310.0,3,2,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 2657,8176,8175,31,66,66,300,75,50,0,6985,0,0,0,0,1,5,0,3,2.0,2715.08542619,8066,0,28061.0,5,1,0,0,5,3,0,0,1,0,0,0,0,0,1,2,14030.5,3,2,3_0,3_1,15000.0,0,15000.0,0,8,21,0.0,0.0,0.0,1,0,1760.0813208711575,1760.0813208711575,0.0 -2658,8193,8192,1,14,36,111,62,50,0,7007,0,0,0,0,1,5,4,6,2.7,1093.7407494000001,2600,0,37624.0,1,3,8,7,4,1,0,0,0,0,0,1,0,1,0,1,13934.8148148,3,2,3_1,3_0,17102.0,0,17102.0,0,4,5,0.0,0.0,0.0,0,1,1660.8014978752442,1660.8014978752442,0.0 -2659,8201,8200,1,13,52,112,62,50,2,7017,0,80,40,0,3,5,3,5,3.0,960.7297003689999,1304,1000,39546.0,1,1,7,1,4,4,0,0,0,1,0,0,0,0,2,2,13182.0,3,2,3_0,3_0,5000.0,0,5000.0,0,9,14,0.0,4.0,3.3,1,0,485.55768269069233,485.55768269069233,0.0 +2658,8193,8192,1,14,36,111,62,50,0,7007,0,0,0,0,1,5,4,6,2.7,1093.7407494,2600,0,37624.0,1,3,8,7,4,1,0,0,0,0,0,1,0,1,0,1,13934.8148148,3,2,3_1,3_0,17102.0,0,17102.0,0,4,5,0.0,0.0,0.0,0,1,1660.8014978752442,1660.8014978752442,0.0 +2659,8201,8200,1,13,52,112,62,50,2,7017,0,80,40,0,3,5,3,5,3.0,960.729700369,1304,1000,39546.0,1,1,7,1,4,4,0,0,0,1,0,0,0,0,2,2,13182.0,3,2,3_0,3_0,5000.0,0,5000.0,0,9,14,0.0,4.0,3.3,1,0,485.55768269069233,485.55768269069233,0.0 2660,8211,8210,11,11,53,111,54,50,0,7029,0,0,0,673,1,5,2,3,2.0,2175.14458038,2600,0,28192.0,1,3,10,8,2,2,0,0,0,0,0,0,1,1,1,1,14096.0,3,2,3_1,3_0,25000.0,0,25000.0,0,4,4,70.0,10.0,0.0,1,0,2427.788413453462,2427.788413453462,0.0 -2661,8223,8222,9,9,74,221,72,71,0,7052,0,0,0,0,0,4,0,2,1.5,4801.74370272,0,0,20876.0,5,1,1,1,3,1,0,0,0,1,0,0,0,0,0,1,13917.333333300001,3,2,3_0,3_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 +2661,8223,8222,9,9,74,221,72,71,0,7052,0,0,0,0,0,4,0,2,1.5,4801.74370272,0,0,20876.0,5,1,1,1,3,1,0,0,0,1,0,0,0,0,0,1,13917.3333333,3,2,3_0,3_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 2662,8233,8232,2,15,21,111,56,41,0,7065,0,200,0,700,1,3,0,1,1.0,3567.55641922,0,0,13706.0,3,4,9,7,1,1,0,1,0,0,0,1,0,0,0,1,13706.0,3,2,3_0,3_0,25000.0,0,25000.0,0,4,12,140.0,40.0,3.3,0,1,2427.788413453462,2427.788413453462,0.0 2663,8245,8244,11,11,48,112,48,50,0,708,0,0,0,0,2,4,1,3,2.0,1215.09421152,3354,0,26158.0,1,4,5,0,4,2,0,0,1,0,0,0,0,0,2,0,13079.0,3,2,3_0,3_1,15000.0,0,0.0,15000,12,12,78.5,40.0,0.0,1,0,1760.0813208711575,0.0,1760.0813208711575 2664,8250,8249,1,8,51,112,47,50,0,7087,0,200,0,0,3,7,1,3,2.0,2102.67156527,3640,0,29390.0,1,1,8,0,4,3,0,1,1,0,0,0,0,0,0,3,14695.0,3,2,3_0,3_1,10000.0,0,10000.0,0,5,6,0.0,0.0,0.0,0,0,1173.3875472474383,1173.3875472474383,0.0 -2665,8255,8254,0,18,24,400,67,50,0,7092,0,1276,0,0,2,3,1,3,1.8,3604.15847636,3120,0,26652.0,1,3,0,0,4,3,0,0,1,0,0,0,0,1,0,3,14806.666666699999,3,2,3_1,3_1,5000.0,0,5000.0,0,4,15,96.0,90.6666666667,3.3,0,1,586.6937736237192,586.6937736237192,0.0 +2665,8255,8254,0,18,24,400,67,50,0,7092,0,1276,0,0,2,3,1,3,1.8,3604.15847636,3120,0,26652.0,1,3,0,0,4,3,0,0,1,0,0,0,0,1,0,3,14806.6666667,3,2,3_1,3_1,5000.0,0,5000.0,0,4,15,96.0,90.6666666667,3.3,0,1,586.6937736237192,586.6937736237192,0.0 2666,8261,8260,0,0,57,111,77,60,0,7101,0,0,0,0,0,5,0,1,1.0,2086.98050424,0,0,14380.0,5,1,5,4,1,0,0,0,0,0,1,0,0,0,0,0,14380.0,3,2,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 -2667,8264,8263,6,8,54,112,52,60,0,7105,0,500,0,0,1,6,1,2,1.5,1864.48964832,1326,0,21317.0,1,2,6,0,2,1,0,1,1,0,0,0,0,0,0,1,14211.333333300001,3,2,3_0,3_1,7000.0,0,7000.0,0,9,9,0.0,0.0,0.0,0,0,821.3712830732069,821.3712830732069,0.0 +2667,8264,8263,6,8,54,112,52,60,0,7105,0,500,0,0,1,6,1,2,1.5,1864.48964832,1326,0,21317.0,1,2,6,0,2,1,0,1,1,0,0,0,0,0,0,1,14211.3333333,3,2,3_0,3_1,7000.0,0,7000.0,0,9,9,0.0,0.0,0.0,0,0,821.3712830732069,821.3712830732069,0.0 2668,8302,8301,0,0,43,111,35,20,0,7158,0,0,0,90,1,3,1,2,1.3,2572.89914367,0,0,17951.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,13808.4615385,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2669,8319,8318,15,25,81,112,71,70,0,7191,0,0,0,0,0,5,0,2,1.5,1403.121027,0,0,19457.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,1,0,12971.3333333,3,2,3_0,3_1,5117.0,0,0.0,5117,18,21,0.0,0.0,0.0,0,0,600.4224079265142,0.0,600.4224079265142 2670,8323,8322,1,1,52,221,56,70,1,7195,0,0,0,0,1,5,0,1,1.0,3049.9395243,0,14500,13382.0,1,2,1,2,1,1,1,0,0,1,0,0,0,0,0,1,13382.0,3,2,3_0,3_0,10000.0,0,10000.0,0,1,1,0.0,20.0,3.3,0,1,971.1153653813847,971.1153653813847,0.0 2671,8334,8333,20,28,53,400,69,71,0,7214,0,100,0,0,1,5,0,2,1.5,3362.35394693,1087,0,19142.0,1,1,0,0,5,1,0,1,1,0,0,0,0,0,0,1,12761.3333333,3,2,3_0,3_1,10000.0,0,10000.0,0,6,15,0.0,0.0,0.0,0,0,1173.3875472474383,1173.3875472474383,0.0 2672,8354,8353,6,13,54,111,63,71,0,7239,0,120,0,388,3,4,3,5,3.0,3620.09831838,3640,0,38788.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,12929.3333333,3,2,3_0,3_0,6000.0,0,6000.0,0,4,12,25.5,28.3333333333,3.3,0,1,582.6692192288309,582.6692192288309,0.0 -2673,8364,8363,3,9,38,221,48,60,0,725,0,0,400,0,1,5,4,6,2.9,1728.61362341,2134,0,39002.0,1,3,1,3,4,2,0,0,0,1,0,0,0,1,2,0,13448.965517200002,3,2,3_1,3_0,25000.0,0,0.0,25000,4,9,0.0,0.0,0.0,0,1,2427.788413453462,0.0,2427.788413453462 +2673,8364,8363,3,9,38,221,48,60,0,725,0,0,400,0,1,5,4,6,2.9,1728.61362341,2134,0,39002.0,1,3,1,3,4,2,0,0,0,1,0,0,0,1,2,0,13448.9655172,3,2,3_1,3_0,25000.0,0,0.0,25000,4,9,0.0,0.0,0.0,0,1,2427.788413453462,0.0,2427.788413453462 2674,8396,8395,0,20,45,111,63,60,2,7303,0,0,200,164,2,6,4,6,3.1,1254.28998584,1560,600,40111.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,2,0,12939.0322581,3,2,3_1,3_0,1200.0,0,0.0,1200,2,17,0.0,12.0,2.2,0,1,116.53384384576617,0.0,116.53384384576617 2675,8401,8400,8,10,76,111,72,60,0,7309,0,0,0,0,0,3,0,2,1.5,2945.25285755,0,0,19680.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,13120.0,3,2,3_0,3_0,6000.0,0,0.0,6000,10,10,0.0,0.0,0.0,0,0,582.6692192288309,0.0,582.6692192288309 -2676,8403,8402,5,16,62,111,56,50,0,7311,0,0,0,0,2,4,0,2,1.5,1513.30844391,0,0,21898.0,1,3,8,6,3,2,0,0,0,0,1,0,0,0,0,2,14598.666666699999,3,2,3_0,3_0,60000.0,0,60000.0,0,11,17,0.0,0.0,0.0,0,0,5826.692192288308,5826.692192288308,0.0 +2676,8403,8402,5,16,62,111,56,50,0,7311,0,0,0,0,2,4,0,2,1.5,1513.30844391,0,0,21898.0,1,3,8,6,3,2,0,0,0,0,1,0,0,0,0,2,14598.6666667,3,2,3_0,3_0,60000.0,0,60000.0,0,11,17,0.0,0.0,0.0,0,0,5826.692192288308,5826.692192288308,0.0 2677,8407,8406,3,19,57,120,62,50,0,7317,0,0,0,81,1,3,0,1,1.0,1762.3289067,0,0,12730.0,4,3,0,0,1,1,0,0,1,0,0,0,0,1,0,1,12730.0,3,2,3_1,3_1,5000.0,0,5000.0,0,4,13,0.0,0.0,0.0,0,1,586.6937736237192,586.6937736237192,0.0 2678,8412,8411,12,12,50,300,85,70,0,7323,0,0,0,0,1,4,0,2,1.5,2274.91185286,0,0,19900.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,13266.6666667,3,2,3_0,3_1,10000.0,0,0.0,10000,5,17,193.8,50.0,3.3,0,1,1173.3875472474383,0.0,1173.3875472474383 2679,8415,8414,2,10,30,111,45,20,0,7326,0,600,0,588,2,5,3,5,2.4,1419.77997228,0,0,30884.0,1,3,8,7,4,3,0,0,0,0,0,1,0,0,2,1,12868.3333333,3,2,3_0,3_0,11512.0,0,2500.0,9012,4,15,0.0,8.0,3.3,0,1,1117.94800862705,242.77884134534617,875.169167281704 2680,8421,8420,16,16,82,111,72,70,0,7337,0,0,0,0,0,3,0,1,1.0,2189.99041412,468,0,12606.0,5,1,7,6,1,1,0,0,0,0,1,0,0,0,0,1,12606.0,3,2,3_0,3_0,11231.0,0,11231.0,0,5,14,0.0,0.0,0.0,0,0,1090.6596668598331,1090.6596668598331,0.0 -2681,8425,8424,13,18,81,221,72,70,0,7342,0,0,0,0,0,4,0,2,1.5,1740.94103266,0,0,20771.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,13847.333333300001,3,2,3_0,3_0,1700.0,0,0.0,1700,16,16,0.0,0.0,0.0,0,0,165.0896121148354,0.0,165.0896121148354 -2682,8430,8429,2,19,37,400,62,50,0,7354,0,20,0,0,2,5,4,6,2.7,1528.05417171,2468,0,37481.0,1,2,0,0,4,2,0,1,1,0,0,0,0,1,0,2,13881.851851899999,3,2,3_1,3_1,18625.0,0,18625.0,0,5,17,98.5,20.0,3.3,0,1,2185.434306748354,2185.434306748354,0.0 -2683,8437,8436,0,0,81,111,78,71,0,7365,0,0,0,152,0,3,0,1,1.0,3546.4380034999995,0,0,14223.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,14223.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2681,8425,8424,13,18,81,221,72,70,0,7342,0,0,0,0,0,4,0,2,1.5,1740.94103266,0,0,20771.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,13847.3333333,3,2,3_0,3_0,1700.0,0,0.0,1700,16,16,0.0,0.0,0.0,0,0,165.0896121148354,0.0,165.0896121148354 +2682,8430,8429,2,19,37,400,62,50,0,7354,0,20,0,0,2,5,4,6,2.7,1528.05417171,2468,0,37481.0,1,2,0,0,4,2,0,1,1,0,0,0,0,1,0,2,13881.8518519,3,2,3_1,3_1,18625.0,0,18625.0,0,5,17,98.5,20.0,3.3,0,1,2185.434306748354,2185.434306748354,0.0 +2683,8437,8436,0,0,81,111,78,71,0,7365,0,0,0,152,0,3,0,1,1.0,3546.4380035,0,0,14223.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,14223.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2684,8441,8440,10,10,71,112,78,70,0,7369,0,0,0,0,0,4,0,2,1.5,1895.03662385,1560,0,19620.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,2,0,13080.0,3,2,3_0,3_1,10000.0,0,0.0,10000,4,8,0.0,0.0,0.0,0,0,1173.3875472474383,0.0,1173.3875472474383 2685,8442,8441,3,7,53,111,47,50,0,737,0,350,0,236,1,2,1,2,1.5,2549.65020767,2080,0,19660.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,13106.6666667,3,2,3_0,3_0,14060.0,0,14060.0,0,6,10,0.0,30.0,2.2,0,1,1365.388203726227,1365.388203726227,0.0 2686,8445,8444,4,4,62,111,56,70,0,7376,0,0,0,0,1,3,0,1,1.0,2802.22957462,0,0,14476.0,1,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,14476.0,3,2,3_1,3_0,10000.0,0,0.0,10000,3,3,59.4,30.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 -2687,8456,8455,19,26,63,112,74,20,0,7396,0,0,0,0,0,3,0,2,1.5,1322.38281656,4056,0,21386.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,0,2,14257.333333300001,3,2,3_0,3_1,7391.0,0,7391.0,0,2,19,0.0,0.0,0.0,0,0,867.2507361705817,867.2507361705817,0.0 -2688,8458,8457,2,6,42,112,55,50,0,7398,0,35,0,0,2,5,1,3,1.8,1588.58252677,1195,0,23359.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,12977.2222222,3,2,3_0,3_1,14672.0,0,14672.0,0,1,12,123.2,11.333333333299999,0.0,0,1,1721.5942093214414,1721.5942093214414,0.0 +2687,8456,8455,19,26,63,112,74,20,0,7396,0,0,0,0,0,3,0,2,1.5,1322.38281656,4056,0,21386.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,0,2,14257.3333333,3,2,3_0,3_1,7391.0,0,7391.0,0,2,19,0.0,0.0,0.0,0,0,867.2507361705817,867.2507361705817,0.0 +2688,8458,8457,2,6,42,112,55,50,0,7398,0,35,0,0,2,5,1,3,1.8,1588.58252677,1195,0,23359.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,12977.2222222,3,2,3_0,3_1,14672.0,0,14672.0,0,1,12,123.2,11.3333333333,0.0,0,1,1721.5942093214414,1721.5942093214414,0.0 2689,8464,8463,8,18,40,111,85,71,0,7406,0,0,0,92,0,2,0,1,1.0,3740.7322495,0,0,13000.0,7,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,13000.0,3,2,3_1,3_0,5000.0,0,0.0,5000,12,20,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 -2690,8468,8467,0,0,89,400,71,71,0,7411,0,0,0,387,0,3,0,2,1.5,3807.08570904,0,0,21913.0,5,3,0,0,3,0,0,0,1,0,0,0,0,0,0,0,14608.666666699999,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2690,8468,8467,0,0,89,400,71,71,0,7411,0,0,0,387,0,3,0,2,1.5,3807.08570904,0,0,21913.0,5,3,0,0,3,0,0,0,1,0,0,0,0,0,0,0,14608.6666667,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2691,8474,8473,2,2,61,300,11,42,0,7419,0,0,0,0,1,2,0,1,1.0,2627.63819029,3362,0,14462.0,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0,1,14462.0,3,2,3_0,3_1,15000.0,0,15000.0,0,4,4,7.6,50.0,3.3,0,1,1760.0813208711575,1760.0813208711575,0.0 2692,8478,8477,0,0,53,111,54,50,0,7422,0,0,0,0,1,3,0,1,1.0,1850.86403924,0,0,12887.0,1,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,12887.0,3,2,3_0,3_0,0.0,0,0.0,0,0,0,217.5,100.0,5.56,0,0,0.0,0.0,0.0 2693,8486,8485,0,0,78,112,78,50,0,7432,0,0,0,0,0,2,0,1,1.0,2323.25069371,0,0,12640.0,5,3,6,0,1,0,0,0,1,0,0,0,0,0,0,0,12640.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2694,8496,8495,0,0,29,111,54,30,0,7447,0,0,0,400,1,1,0,1,1.0,3685.20841678,0,0,14530.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,14530.0,3,2,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 2695,8497,8496,0,0,72,111,86,70,0,7449,0,0,0,275,0,3,0,1,1.0,3126.37665108,0,0,12886.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,12886.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2696,8498,8497,1,2,39,300,56,50,0,745,0,100,0,156,1,5,3,4,2.1,1316.71965804,0,0,26916.0,1,3,0,0,2,1,1,1,1,0,0,0,0,1,0,1,12817.142857100001,3,2,3_1,3_1,15781.0,0,15781.0,0,1,3,0.0,3.5,1.1,0,0,1851.7228883111825,1851.7228883111825,0.0 -2697,8504,8503,3,5,28,111,67,50,0,7461,0,200,0,280,2,3,2,4,2.1,5075.0253125,1040,0,28047.0,1,3,5,4,4,2,0,1,0,0,1,0,0,1,0,2,13355.714285700002,3,2,3_1,3_0,20000.0,0,20000.0,0,1,8,0.0,22.5,3.31,0,1,1942.2307307627693,1942.2307307627693,0.0 +2696,8498,8497,1,2,39,300,56,50,0,745,0,100,0,156,1,5,3,4,2.1,1316.71965804,0,0,26916.0,1,3,0,0,2,1,1,1,1,0,0,0,0,1,0,1,12817.1428571,3,2,3_1,3_1,15781.0,0,15781.0,0,1,3,0.0,3.5,1.1,0,0,1851.7228883111825,1851.7228883111825,0.0 +2697,8504,8503,3,5,28,111,67,50,0,7461,0,200,0,280,2,3,2,4,2.1,5075.0253125,1040,0,28047.0,1,3,5,4,4,2,0,1,0,0,1,0,0,1,0,2,13355.7142857,3,2,3_1,3_0,20000.0,0,20000.0,0,1,8,0.0,22.5,3.31,0,1,1942.2307307627693,1942.2307307627693,0.0 2698,8505,8504,12,19,53,112,78,71,0,7463,0,0,0,0,0,4,1,3,2.0,3282.99511272,3900,0,25397.0,7,3,9,3,4,2,0,0,0,1,0,0,0,1,1,1,12698.5,3,2,3_1,3_0,27000.0,0,15000.0,12000,6,13,0.0,0.0,0.0,0,0,2622.0114865297387,1456.673048072077,1165.3384384576618 -2699,8511,8510,5,6,59,300,75,50,0,7471,0,0,0,0,1,5,0,2,1.5,1667.57305553,0,0,20942.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13961.333333300001,3,2,3_0,3_1,120000.0,0,120000.0,0,9,10,0.0,0.0,0.0,1,0,14080.65056696926,14080.65056696926,0.0 +2699,8511,8510,5,6,59,300,75,50,0,7471,0,0,0,0,1,5,0,2,1.5,1667.57305553,0,0,20942.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,13961.3333333,3,2,3_0,3_1,120000.0,0,120000.0,0,9,10,0.0,0.0,0.0,1,0,14080.65056696926,14080.65056696926,0.0 2700,8513,8512,11,17,71,112,71,70,0,7473,0,0,0,0,0,7,0,2,1.5,1569.11612872,2302,0,19127.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,0,2,12751.3333333,3,2,3_0,3_1,16000.0,0,16000.0,0,7,13,0.0,0.0,0.0,0,0,1877.4200755959014,1877.4200755959014,0.0 2701,8515,8514,7,7,81,120,71,70,0,7482,0,0,0,0,0,4,0,1,1.0,2282.61376779,1300,0,13383.0,5,1,0,1,1,1,0,0,0,1,0,0,0,0,1,0,13383.0,3,2,3_0,3_0,2600.0,0,0.0,2600,8,9,0.0,0.0,0.0,0,0,252.48999499916002,0.0,252.48999499916002 2702,8526,8525,0,0,88,111,86,71,0,7496,0,0,0,0,0,3,0,1,1.0,2936.29149067,0,0,12670.0,6,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,12670.0,3,2,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 2703,8527,8526,0,0,65,111,78,70,0,7497,0,0,0,0,0,5,0,1,1.0,2035.34819123,0,0,14670.0,5,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,14670.0,3,2,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 2704,8535,8534,0,0,64,111,78,70,0,7507,0,0,0,0,0,4,0,1,1.0,2916.08820355,0,0,13063.0,5,1,8,6,1,0,0,0,0,0,1,0,0,0,0,0,13063.0,3,2,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 2705,8540,8539,1,7,32,111,63,50,2,7514,0,750,0,0,2,5,2,4,2.1,1492.998215,2627,9480,30966.0,1,2,5,4,4,1,0,1,0,0,1,0,0,0,0,1,14745.7142857,3,2,3_0,3_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 -2706,8547,8546,4,4,78,221,71,70,0,7523,0,0,0,0,0,5,0,2,1.5,1938.31041696,2080,0,20516.0,5,1,1,1,3,2,0,0,0,1,0,0,0,0,0,2,13677.333333300001,3,2,3_0,3_0,10000.0,0,10000.0,0,7,7,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 +2706,8547,8546,4,4,78,221,71,70,0,7523,0,0,0,0,0,5,0,2,1.5,1938.31041696,2080,0,20516.0,5,1,1,1,3,2,0,0,0,1,0,0,0,0,0,2,13677.3333333,3,2,3_0,3_0,10000.0,0,10000.0,0,7,7,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 2707,8552,8551,1,0,56,400,13,71,1,7529,0,120,0,0,2,6,0,2,1.5,2395.41343273,0,25000,19334.0,1,1,0,0,3,1,1,1,1,0,0,0,0,0,0,1,12889.3333333,3,2,3_0,3_1,19000.0,0,19000.0,0,3,4,0.0,0.0,0.0,0,0,2229.4363397701327,2229.4363397701327,0.0 2708,8557,8556,0,17,22,111,84,41,0,7536,0,700,320,0,0,1,0,2,1.5,2903.70668465,1560,0,19997.0,3,3,6,5,3,2,0,1,0,0,1,0,0,1,1,1,13331.3333333,3,2,3_1,3_0,57343.0,0,57343.0,0,11,16,0.0,0.0,0.0,0,0,5568.666839706474,5568.666839706474,0.0 2709,8560,8559,4,6,51,211,55,20,0,754,0,0,20,0,1,2,0,1,1.0,2035.37257595,0,0,14698.0,1,4,3,3,1,1,0,1,0,1,0,0,0,0,1,0,14698.0,3,2,3_0,3_0,9000.0,0,0.0,9000,9,9,0.0,0.0,0.0,1,1,874.0038288432463,0.0,874.0038288432463 -2710,8609,8608,16,16,84,111,77,70,0,7604,0,0,0,212,0,5,0,2,1.5,3964.99877367,0,0,21518.0,5,3,6,5,3,1,0,0,0,0,1,0,0,0,1,0,14345.333333300001,3,2,3_0,3_0,1700.0,0,0.0,1700,16,16,0.0,0.0,0.0,0,0,165.0896121148354,0.0,165.0896121148354 +2710,8609,8608,16,16,84,111,77,70,0,7604,0,0,0,212,0,5,0,2,1.5,3964.99877367,0,0,21518.0,5,3,6,5,3,1,0,0,0,0,1,0,0,0,1,0,14345.3333333,3,2,3_0,3_0,1700.0,0,0.0,1700,16,16,0.0,0.0,0.0,0,0,165.0896121148354,0.0,165.0896121148354 2711,8633,8632,2,5,70,300,75,50,0,7632,0,0,0,443,0,3,0,1,1.0,1682.74785593,2080,0,14784.0,5,3,0,1,1,1,0,0,0,1,0,0,0,1,0,1,14784.0,3,2,3_1,3_0,5000.0,0,5000.0,0,4,4,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 -2712,8637,8636,10,19,63,112,78,71,0,7637,0,0,0,0,1,5,0,2,1.5,4250.279074499999,6618,0,21712.0,5,1,10,2,3,2,0,0,0,1,0,0,0,0,2,0,14474.666666699999,3,2,3_0,3_0,20000.0,0,0.0,20000,2,21,0.0,0.0,0.0,0,0,1942.2307307627693,0.0,1942.2307307627693 +2712,8637,8636,10,19,63,112,78,71,0,7637,0,0,0,0,1,5,0,2,1.5,4250.2790745,6618,0,21712.0,5,1,10,2,3,2,0,0,0,1,0,0,0,0,2,0,14474.6666667,3,2,3_0,3_0,20000.0,0,0.0,20000,2,21,0.0,0.0,0.0,0,0,1942.2307307627693,0.0,1942.2307307627693 2713,8638,8637,2,7,43,111,62,70,0,7639,0,0,0,0,2,4,2,4,2.5,976.754324051,1560,0,36022.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,0,1,14408.8,3,2,3_1,3_0,7259.0,0,7259.0,0,1,8,63.4,36.6666666667,0.0,0,1,704.9326437303472,704.9326437303472,0.0 2714,8641,8640,1,1,58,112,63,50,1,7641,0,0,0,0,1,3,0,1,1.0,1954.22596376,1864,10500,14222.0,4,3,7,0,1,1,0,0,1,0,0,0,0,0,1,0,14222.0,3,2,3_0,3_1,4000.0,0,0.0,4000,6,6,0.0,40.0,1.1,0,1,469.35501889897535,0.0,469.35501889897535 -2715,8662,8661,0,0,38,111,52,71,0,7662,0,0,0,0,1,2,1,2,1.3,3123.13455278,0,0,18464.0,4,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,14203.076923100001,3,2,3_1,3_0,0.0,0,0.0,0,0,0,28.0,65.0,5.5,0,0,0.0,0.0,0.0 +2715,8662,8661,0,0,38,111,52,71,0,7662,0,0,0,0,1,2,1,2,1.3,3123.13455278,0,0,18464.0,4,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,14203.0769231,3,2,3_1,3_0,0.0,0,0.0,0,0,0,28.0,65.0,5.5,0,0,0.0,0.0,0.0 2716,8666,8665,0,0,58,120,69,71,0,7666,0,0,0,0,1,2,0,1,1.0,4430.28087912,780,0,13494.0,1,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,13494.0,3,2,3_0,3_1,0.0,0,0.0,0,0,0,141.6,120.0,3.3,0,0,0.0,0.0,0.0 2717,8685,8684,0,0,63,111,56,70,0,769,0,0,0,168,1,3,0,1,1.0,2886.40188666,0,0,14062.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14062.0,3,2,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 -2718,8689,8688,0,23,26,111,34,10,0,7694,0,0,0,201,2,2,0,2,1.5,2895.92216081,0,0,20552.0,1,3,9,7,3,1,0,0,0,0,0,1,0,1,1,0,13701.333333300001,3,2,3_1,3_0,10000.0,0,0.0,10000,2,14,67.5,24.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 -2719,8696,8695,7,7,40,111,63,50,0,7704,0,200,0,0,3,5,3,5,2.8,1900.60683603,1196,0,36339.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,12978.214285700002,3,2,3_0,3_0,25000.0,0,25000.0,0,2,7,75.5,50.0,1.1,1,0,2427.788413453462,2427.788413453462,0.0 +2718,8689,8688,0,23,26,111,34,10,0,7694,0,0,0,201,2,2,0,2,1.5,2895.92216081,0,0,20552.0,1,3,9,7,3,1,0,0,0,0,0,1,0,1,1,0,13701.3333333,3,2,3_1,3_0,10000.0,0,0.0,10000,2,14,67.5,24.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 +2719,8696,8695,7,7,40,111,63,50,0,7704,0,200,0,0,3,5,3,5,2.8,1900.60683603,1196,0,36339.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,12978.2142857,3,2,3_0,3_0,25000.0,0,25000.0,0,2,7,75.5,50.0,1.1,1,0,2427.788413453462,2427.788413453462,0.0 2720,8699,8698,4,4,45,111,56,44,0,7709,0,20,0,0,1,6,0,1,1.0,2622.37290935,2079,0,14584.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,0,1,14584.0,3,2,3_0,3_0,25000.0,0,25000.0,0,2,2,78.8,125.0,3.3,1,1,2427.788413453462,2427.788413453462,0.0 2721,8700,8699,0,0,77,111,86,71,0,771,0,0,0,146,0,5,0,1,1.0,3343.31881217,0,0,13702.0,5,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,13702.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2722,8726,8725,4,8,49,300,21,50,0,775,0,0,0,0,2,3,0,2,1.5,2597.86421398,3120,0,19210.0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,12806.6666667,3,2,3_0,3_1,6000.0,0,0.0,6000,2,7,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 2723,8733,8732,8,9,78,111,72,70,0,7757,0,0,0,0,0,3,0,2,1.5,2107.50301213,0,0,19960.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,13306.6666667,3,2,3_0,3_0,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 2724,8763,8762,0,0,62,300,77,71,0,7793,0,0,0,0,0,4,0,1,1.0,2895.22986423,0,0,13460.0,5,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,13460.0,3,2,3_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 -2725,8800,8799,5,8,39,112,64,42,0,7836,0,0,0,0,2,5,2,4,2.1,2132.67970633,0,0,29591.0,1,2,7,4,4,2,0,0,0,0,1,0,0,0,0,2,14090.952381000001,3,2,3_0,3_0,15000.0,0,15000.0,0,7,8,0.0,13.333333333299999,0.0,1,1,1456.673048072077,1456.673048072077,0.0 +2725,8800,8799,5,8,39,112,64,42,0,7836,0,0,0,0,2,5,2,4,2.1,2132.67970633,0,0,29591.0,1,2,7,4,4,2,0,0,0,0,1,0,0,0,0,2,14090.952381,3,2,3_0,3_0,15000.0,0,15000.0,0,7,8,0.0,13.3333333333,0.0,1,1,1456.673048072077,1456.673048072077,0.0 2726,8808,8807,8,8,49,111,43,50,0,7847,0,0,200,0,2,5,3,5,2.8,888.510885745,0,0,39496.0,1,2,7,5,4,2,0,1,0,0,1,0,0,1,2,0,14105.7142857,3,2,3_1,3_0,25000.0,0,0.0,25000,5,8,167.7,25.0,3.3,0,1,2427.788413453462,0.0,2427.788413453462 2727,8824,8823,0,0,49,111,85,71,0,7868,0,0,0,56,0,4,1,3,2.0,3061.05378695,0,0,25932.0,7,3,6,4,4,0,0,0,0,0,1,0,0,1,0,0,12966.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2728,8830,8829,3,4,29,111,52,42,0,788,0,0,60,301,1,2,0,1,1.0,2830.86657334,2289,0,14053.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,1,0,14053.0,3,2,3_0,3_0,4067.0,0,0.0,4067,1,7,0.0,12.0,1.1,0,0,394.9526191006091,0.0,394.9526191006091 2729,8831,8830,21,23,65,400,77,70,0,7880,0,0,0,0,0,2,0,1,1.0,2427.45112857,0,0,12572.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,12572.0,3,2,3_0,3_1,3543.0,0,0.0,3543,10,19,0.0,0.0,0.0,0,0,415.7312079897674,0.0,415.7312079897674 2730,8843,8842,0,0,64,221,78,71,0,7893,0,0,0,0,0,5,0,1,1.0,5906.14951911,0,0,12620.0,5,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,12620.0,3,2,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 -2731,8866,8865,2,13,41,111,54,50,0,7924,0,0,0,0,1,4,3,4,2.1,2600.72540578,2860,0,26424.0,1,3,5,4,2,1,0,0,0,0,1,0,0,1,0,1,12582.857142899999,3,2,3_1,3_0,15000.0,0,15000.0,0,11,14,0.0,15.0,0.0,0,0,1456.673048072077,1456.673048072077,0.0 +2731,8866,8865,2,13,41,111,54,50,0,7924,0,0,0,0,1,4,3,4,2.1,2600.72540578,2860,0,26424.0,1,3,5,4,2,1,0,0,0,0,1,0,0,1,0,1,12582.8571429,3,2,3_1,3_0,15000.0,0,15000.0,0,11,14,0.0,15.0,0.0,0,0,1456.673048072077,1456.673048072077,0.0 2732,8903,8902,27,29,72,300,71,71,0,7970,0,0,0,0,0,5,0,2,1.5,1918.27100397,0,0,19599.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,13066.0,3,2,3_0,3_1,6000.0,0,0.0,6000,14,20,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 -2733,8932,8931,3,3,34,111,63,71,0,8009,0,0,0,0,2,5,1,3,1.8,3461.82926149,3411,0,24433.0,1,3,8,7,4,1,1,0,0,0,0,1,0,0,0,1,13573.888888899999,3,2,3_0,3_0,15164.0,0,15164.0,0,0,0,276.0,40.0,3.3,1,0,1472.599340064332,1472.599340064332,0.0 +2733,8932,8931,3,3,34,111,63,71,0,8009,0,0,0,0,2,5,1,3,1.8,3461.82926149,3411,0,24433.0,1,3,8,7,4,1,1,0,0,0,0,1,0,0,0,1,13573.8888889,3,2,3_0,3_0,15164.0,0,15164.0,0,0,0,276.0,40.0,3.3,1,0,1472.599340064332,1472.599340064332,0.0 2734,8935,8934,4,15,33,111,54,71,0,8012,0,0,100,149,1,3,1,2,1.3,3194.73592738,1041,0,16625.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,1,0,12788.4615385,3,2,3_1,3_0,17000.0,17000,0.0,0,2,10,31.0,10.0,3.3,0,1,1650.896121148354,0.0,0.0 2735,8937,8936,10,10,76,111,78,50,0,8015,0,0,0,0,0,4,0,2,1.5,1445.34478442,0,0,21948.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,14632.0,3,2,3_0,3_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 2736,8939,8938,4,7,42,111,68,71,0,8017,0,600,0,0,1,4,2,4,2.3,2903.9349952,1664,0,30856.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,13415.6521739,3,2,3_1,3_0,3000.0,0,3000.0,0,3,7,0.0,16.6666666667,1.1,0,0,291.33460961441546,291.33460961441546,0.0 @@ -2748,13 +2748,13 @@ 2746,9058,9057,6,17,52,120,85,50,0,8186,0,0,280,0,1,4,1,3,2.0,2697.9750702,3120,0,28611.0,5,3,0,2,4,2,0,1,0,1,0,0,0,0,1,1,14305.5,3,2,3_0,3_0,20000.0,0,20000.0,0,4,13,0.0,0.0,0.0,0,0,1942.2307307627693,1942.2307307627693,0.0 2747,9064,9063,6,11,32,111,47,20,0,8194,0,0,0,350,1,3,1,3,1.8,2431.55217743,1560,0,25280.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,14044.4444444,3,2,3_0,3_0,15000.0,0,15000.0,0,3,11,91.0,12.5,3.3,0,1,1456.673048072077,1456.673048072077,0.0 2748,9066,9065,0,0,41,111,85,50,0,8197,0,0,0,134,0,2,0,1,1.0,2561.53217306,0,0,13164.0,7,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,13164.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2749,9076,9075,6,11,35,120,67,71,0,8210,0,390,0,0,2,5,1,3,1.8,2357.12470664,4056,0,24122.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,0,2,13401.111111100001,3,2,3_0,3_0,10000.0,0,10000.0,0,3,16,54.0,16.6666666667,3.3,0,1,971.1153653813847,971.1153653813847,0.0 -2750,9080,9079,0,0,22,111,53,60,0,8219,0,0,0,520,1,2,0,2,1.5,3669.56841372,1716,0,21305.0,1,3,8,7,3,0,0,0,0,0,0,1,0,0,0,0,14203.333333300001,3,2,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 +2749,9076,9075,6,11,35,120,67,71,0,8210,0,390,0,0,2,5,1,3,1.8,2357.12470664,4056,0,24122.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,0,2,13401.1111111,3,2,3_0,3_0,10000.0,0,10000.0,0,3,16,54.0,16.6666666667,3.3,0,1,971.1153653813847,971.1153653813847,0.0 +2750,9080,9079,0,0,22,111,53,60,0,8219,0,0,0,520,1,2,0,2,1.5,3669.56841372,1716,0,21305.0,1,3,8,7,3,0,0,0,0,0,0,1,0,0,0,0,14203.3333333,3,2,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 2751,9084,9083,1,10,43,111,67,71,0,8223,0,0,0,175,1,4,0,1,1.0,3360.21759538,0,0,12598.0,4,3,3,4,1,1,0,0,0,0,1,0,0,1,0,1,12598.0,3,2,3_1,3_0,8000.0,0,8000.0,0,7,12,0.0,0.0,0.0,1,0,776.8922923051077,776.8922923051077,0.0 -2752,9086,9085,9,11,65,111,78,70,0,8225,0,0,0,0,0,4,0,2,1.5,4010.74747971,1308,0,20258.0,5,3,6,5,3,1,0,0,0,0,1,0,0,0,1,0,13505.333333300001,3,2,3_0,3_0,7000.0,0,0.0,7000,10,10,0.0,0.0,0.0,0,0,679.7807557669694,0.0,679.7807557669694 +2752,9086,9085,9,11,65,111,78,70,0,8225,0,0,0,0,0,4,0,2,1.5,4010.74747971,1308,0,20258.0,5,3,6,5,3,1,0,0,0,0,1,0,0,0,1,0,13505.3333333,3,2,3_0,3_0,7000.0,0,0.0,7000,10,10,0.0,0.0,0.0,0,0,679.7807557669694,0.0,679.7807557669694 2753,9088,9087,0,11,55,111,21,71,0,8228,0,0,0,0,1,3,0,1,1.0,3242.56906322,2653,0,14296.0,4,3,10,8,1,1,0,0,0,0,0,0,1,1,0,1,14296.0,3,2,3_1,3_0,13716.0,0,13716.0,0,1,6,1144.0,30.0,3.3,0,1,1331.9818351571073,1331.9818351571073,0.0 2754,9089,9088,11,21,71,221,77,71,0,823,0,0,0,0,0,6,0,2,1.5,3776.9791617,1791,0,21396.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,2,0,14264.0,3,2,3_0,3_0,8394.0,0,0.0,8394,17,17,0.0,0.0,0.0,0,0,815.1542377011343,0.0,815.1542377011343 -2755,9093,9092,9,13,51,111,67,50,0,8233,0,0,0,0,2,6,4,6,3.3,1829.7126928,3120,0,48050.0,1,2,10,8,4,2,0,0,0,0,0,0,1,1,0,2,14560.606060600001,3,2,3_1,3_0,6000.0,0,6000.0,0,7,12,0.0,17.5,3.3,0,0,582.6692192288309,582.6692192288309,0.0 +2755,9093,9092,9,13,51,111,67,50,0,8233,0,0,0,0,2,6,4,6,3.3,1829.7126928,3120,0,48050.0,1,2,10,8,4,2,0,0,0,0,0,0,1,1,0,2,14560.6060606,3,2,3_1,3_0,6000.0,0,6000.0,0,7,12,0.0,17.5,3.3,0,0,582.6692192288309,582.6692192288309,0.0 2756,9098,9097,3,24,45,111,47,50,0,8241,0,0,120,175,1,2,1,2,1.5,3093.85889297,1040,0,19630.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,1,0,13086.6666667,3,2,3_1,3_0,500.0,0,0.0,500,4,22,0.0,12.0,0.0,0,0,48.55576826906923,0.0,48.55576826906923 2757,9128,9127,0,0,21,111,84,41,0,8277,0,0,0,273,1,3,0,2,1.5,3581.86540938,0,0,22161.0,3,3,9,7,3,0,0,0,0,0,0,1,0,1,0,0,14774.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2758,9132,9131,1,13,38,111,42,41,0,8284,0,200,0,0,1,4,3,4,1.9,1340.86708118,0,0,25346.0,1,3,7,5,2,1,0,1,0,0,1,0,0,0,0,1,13340.0,3,2,3_0,3_0,15000.0,0,15000.0,0,3,14,0.0,3.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 @@ -2763,13 +2763,13 @@ 2761,9157,9156,11,16,86,300,71,71,0,832,0,0,0,0,0,3,0,2,1.5,1042.40825067,0,0,19721.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,13147.3333333,3,2,3_0,3_1,5658.0,0,0.0,5658,14,17,0.0,0.0,0.0,0,0,663.9026742326006,0.0,663.9026742326006 2762,9170,9169,3,13,57,120,67,50,0,8338,0,0,0,400,1,3,0,1,1.0,2160.92435586,1561,0,13860.0,1,3,0,0,1,1,1,0,1,0,0,0,0,0,0,1,13860.0,3,2,3_0,3_1,5000.0,0,5000.0,0,4,13,0.0,0.0,0.0,0,1,586.6937736237192,586.6937736237192,0.0 2763,9171,9170,2,2,67,111,75,41,0,8339,0,0,0,0,0,3,0,2,1.5,1844.43727379,1040,0,21750.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,14500.0,3,2,3_0,3_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 -2764,9195,9194,2,10,20,111,52,33,0,8375,0,0,0,407,2,3,0,2,1.5,3543.26091917,0,0,21664.0,1,3,8,7,3,2,0,0,0,0,0,1,0,1,0,2,14442.666666699999,3,2,3_1,3_0,12000.0,0,12000.0,0,2,14,176.5,50.0,3.3,0,1,1165.3384384576618,1165.3384384576618,0.0 +2764,9195,9194,2,10,20,111,52,33,0,8375,0,0,0,407,2,3,0,2,1.5,3543.26091917,0,0,21664.0,1,3,8,7,3,2,0,0,0,0,0,1,0,1,0,2,14442.6666667,3,2,3_1,3_0,12000.0,0,12000.0,0,2,14,176.5,50.0,3.3,0,1,1165.3384384576618,1165.3384384576618,0.0 2765,9255,9254,1,5,49,112,46,50,2,8453,0,0,0,0,1,5,0,1,1.0,4556.89369383,2883,7500,13597.0,4,3,8,1,1,1,0,0,0,1,0,0,0,0,1,0,13597.0,3,2,3_0,3_0,9000.0,0,0.0,9000,9,9,0.0,0.0,0.0,1,1,874.0038288432463,0.0,874.0038288432463 2766,9258,9257,0,18,36,111,35,10,0,8463,0,0,0,254,1,4,2,3,1.6,1354.01865087,1304,0,23383.0,1,3,9,7,2,1,1,0,0,0,0,1,0,1,1,0,14614.375,3,2,3_1,3_0,9666.0,0,0.0,9666,7,18,69.0,19.3333333333,3.31,0,1,938.6801121776465,0.0,938.6801121776465 -2767,9260,9259,1,11,71,111,35,42,2,8465,0,0,0,0,1,4,0,2,1.5,2340.54914727,2677,3500,21100.0,5,4,7,5,3,2,0,0,0,0,1,0,0,0,2,0,14066.666666699999,3,2,3_0,3_0,15000.0,0,0.0,15000,4,8,0.0,0.0,0.0,0,0,1456.673048072077,0.0,1456.673048072077 +2767,9260,9259,1,11,71,111,35,42,2,8465,0,0,0,0,1,4,0,2,1.5,2340.54914727,2677,3500,21100.0,5,4,7,5,3,2,0,0,0,0,1,0,0,0,2,0,14066.6666667,3,2,3_0,3_0,15000.0,0,0.0,15000,4,8,0.0,0.0,0.0,0,0,1456.673048072077,0.0,1456.673048072077 2768,9269,9268,9,13,43,111,42,60,0,8475,0,0,0,361,1,3,1,2,1.3,3029.68867041,0,0,17678.0,1,3,9,7,2,1,0,0,0,0,0,1,0,1,1,0,13598.4615385,3,2,3_1,3_0,3543.0,0,0.0,3543,1,12,100.0,30.0,3.3,0,1,344.0661739546246,0.0,344.0661739546246 2769,9288,9287,4,6,31,111,54,10,0,8502,0,200,0,315,2,3,0,2,1.5,2126.70814116,5902,0,21765.0,1,3,9,7,3,2,0,1,0,0,0,1,0,1,0,2,14510.0,3,2,3_1,3_0,20000.0,0,20000.0,0,1,8,0.0,22.5,3.31,0,1,1942.2307307627693,1942.2307307627693,0.0 -2770,9289,9288,0,5,26,111,48,43,0,8503,0,0,0,400,2,3,1,3,1.8,3544.86686806,0,0,25018.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,1,13898.888888899999,3,2,3_0,3_0,26759.0,0,17343.0,9416,9,9,55.6,32.0,3.3,0,1,2598.6076062240472,1684.2053781809354,914.4022280431119 +2770,9289,9288,0,5,26,111,48,43,0,8503,0,0,0,400,2,3,1,3,1.8,3544.86686806,0,0,25018.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,1,13898.8888889,3,2,3_0,3_0,26759.0,0,17343.0,9416,9,9,55.6,32.0,3.3,0,1,2598.6076062240472,1684.2053781809354,914.4022280431119 2771,9294,9293,9,12,69,120,77,71,0,851,0,0,0,0,0,3,0,1,1.0,3485.73076437,0,0,13240.0,5,3,0,3,1,1,0,0,0,1,0,0,0,0,1,0,13240.0,3,2,3_0,3_0,6506.0,0,0.0,6506,1,12,0.0,0.0,0.0,0,0,631.8076567171289,0.0,631.8076567171289 2772,9300,9299,1,7,53,221,65,71,0,8518,0,100,0,0,2,5,1,3,2.0,4066.56082962,0,0,26379.0,1,2,1,1,4,2,0,1,0,1,0,0,0,0,0,2,13189.5,3,2,3_0,3_0,17102.0,0,17102.0,0,5,9,0.0,26.6666666667,1.1,0,1,1660.8014978752442,1660.8014978752442,0.0 2773,9311,9310,12,12,91,111,72,70,0,8533,0,0,0,0,0,3,0,1,1.0,2797.61571125,0,0,13985.0,5,1,4,4,1,1,0,0,0,0,1,0,0,0,1,0,13985.0,3,2,3_0,3_0,619.0,0,0.0,619,17,17,0.0,0.0,0.0,0,0,60.112041117107715,0.0,60.112041117107715 @@ -2785,28 +2785,28 @@ 2783,9384,9383,1,13,48,111,56,71,2,8635,0,0,0,33,1,3,0,1,1.0,3350.10145136,1560,3500,13006.0,1,3,8,7,1,1,1,0,0,0,0,1,0,1,0,1,13006.0,3,2,3_1,3_0,8000.0,0,8000.0,0,7,12,0.0,0.0,0.0,1,0,776.8922923051077,776.8922923051077,0.0 2784,9392,9391,12,13,86,300,72,71,0,8649,0,0,0,0,0,5,0,1,1.0,2071.04139117,0,0,13054.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,13054.0,3,2,3_0,3_1,6000.0,0,0.0,6000,16,16,0.0,0.0,0.0,0,0,704.0325283484631,0.0,704.0325283484631 2785,9404,9403,0,0,81,111,78,71,0,8667,0,0,0,154,0,2,0,1,1.0,2959.70664077,0,0,14739.0,5,3,5,4,1,0,0,0,0,0,1,0,0,1,0,0,14739.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2786,9417,9416,0,22,29,211,62,31,0,8686,0,0,0,0,1,3,1,3,1.8,3297.60162518,0,0,23300.0,1,3,2,3,4,1,0,0,0,1,0,0,0,1,1,0,12944.444444399998,3,2,3_1,3_0,9666.0,0,0.0,9666,7,18,69.0,19.3333333333,3.31,0,1,938.6801121776465,0.0,938.6801121776465 -2787,9430,9429,3,11,25,300,69,43,0,8702,0,100,0,0,2,5,1,3,1.8,2587.24963799,0,0,23104.0,4,3,0,0,4,1,0,1,1,0,0,0,0,0,0,1,12835.555555600002,3,2,3_0,3_1,6000.0,0,6000.0,0,4,17,48.0,9.333333333330001,3.3,0,1,704.0325283484631,704.0325283484631,0.0 -2788,9431,9430,2,8,64,111,77,50,0,8704,0,0,0,0,0,4,0,2,1.5,1763.37944525,0,0,20587.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,13724.666666699999,3,2,3_0,3_0,7500.0,0,0.0,7500,5,7,0.0,0.0,0.0,0,0,728.3365240360386,0.0,728.3365240360386 -2789,9436,9435,9,9,70,120,78,70,0,8715,0,0,0,0,0,4,0,1,1.0,4033.2981723000007,0,0,14485.0,5,1,0,2,1,1,0,0,0,1,0,0,0,0,0,1,14485.0,3,2,3_0,3_0,5000.0,0,5000.0,0,4,4,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 +2786,9417,9416,0,22,29,211,62,31,0,8686,0,0,0,0,1,3,1,3,1.8,3297.60162518,0,0,23300.0,1,3,2,3,4,1,0,0,0,1,0,0,0,1,1,0,12944.4444444,3,2,3_1,3_0,9666.0,0,0.0,9666,7,18,69.0,19.3333333333,3.31,0,1,938.6801121776465,0.0,938.6801121776465 +2787,9430,9429,3,11,25,300,69,43,0,8702,0,100,0,0,2,5,1,3,1.8,2587.24963799,0,0,23104.0,4,3,0,0,4,1,0,1,1,0,0,0,0,0,0,1,12835.5555556,3,2,3_0,3_1,6000.0,0,6000.0,0,4,17,48.0,9.33333333333,3.3,0,1,704.0325283484631,704.0325283484631,0.0 +2788,9431,9430,2,8,64,111,77,50,0,8704,0,0,0,0,0,4,0,2,1.5,1763.37944525,0,0,20587.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,13724.6666667,3,2,3_0,3_0,7500.0,0,0.0,7500,5,7,0.0,0.0,0.0,0,0,728.3365240360386,0.0,728.3365240360386 +2789,9436,9435,9,9,70,120,78,70,0,8715,0,0,0,0,0,4,0,1,1.0,4033.2981723,0,0,14485.0,5,1,0,2,1,1,0,0,0,1,0,0,0,0,0,1,14485.0,3,2,3_0,3_0,5000.0,0,5000.0,0,4,4,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 2790,9437,9436,0,0,65,221,65,50,0,8716,0,0,0,300,1,3,0,1,1.0,3352.81039982,0,0,14320.0,6,3,1,2,1,0,0,0,0,1,0,0,0,0,0,0,14320.0,3,2,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 2791,9438,9437,0,0,59,111,78,71,0,8719,0,0,0,237,0,3,0,1,1.0,3779.25504559,0,0,14798.0,5,3,7,6,1,0,0,0,0,0,1,0,0,0,0,0,14798.0,3,2,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 2792,9439,9438,4,7,41,300,63,50,0,8720,0,600,150,0,3,5,2,4,2.5,1710.11030142,4395,0,34308.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,13723.2,3,2,3_0,3_1,17343.0,0,17343.0,0,2,12,260.3,75.0,3.3,0,1,2035.0060231912323,2035.0060231912323,0.0 2793,9462,9461,7,11,41,112,56,50,0,876,0,0,0,600,2,3,2,4,2.5,6151.01583277,2549,0,33370.0,1,3,8,3,4,1,1,0,0,1,0,0,0,0,1,0,13348.0,3,2,3_0,3_0,3743.0,0,0.0,3743,13,13,0.0,5.5,1.1,0,0,363.48848126225226,0.0,363.48848126225226 2794,9479,9478,7,11,40,400,64,50,0,8787,0,300,0,0,2,4,2,4,2.3,1146.88637874,0,0,33682.0,1,3,0,0,4,2,0,0,1,0,0,0,0,0,0,2,14644.3478261,3,2,3_0,3_1,30000.0,0,30000.0,0,9,12,0.0,27.5,3.3,0,1,3520.162641742315,3520.162641742315,0.0 -2795,9480,9479,0,16,51,112,55,50,0,8788,0,350,0,0,1,4,1,2,1.5,1201.57465678,3640,0,21353.0,1,2,10,0,2,2,0,0,1,0,0,0,0,0,1,1,14235.333333300001,3,2,3_0,3_1,31000.0,0,20000.0,11000,6,17,35.0,20.0,3.3,0,1,3637.5013964670593,2346.7750944948766,1290.7263019721822 +2795,9480,9479,0,16,51,112,55,50,0,8788,0,350,0,0,1,4,1,2,1.5,1201.57465678,3640,0,21353.0,1,2,10,0,2,2,0,0,1,0,0,0,0,0,1,1,14235.3333333,3,2,3_0,3_1,31000.0,0,20000.0,11000,6,17,35.0,20.0,3.3,0,1,3637.5013964670593,2346.7750944948766,1290.7263019721822 2796,9482,9481,10,10,63,111,78,70,0,879,0,0,0,220,0,2,0,1,1.0,4922.24071287,0,0,13256.0,5,3,6,5,1,1,0,0,0,0,1,0,0,1,1,0,13256.0,3,2,3_1,3_0,9862.0,0,0.0,9862,6,10,0.0,0.0,0.0,0,0,957.7139733391217,0.0,957.7139733391217 2797,9507,9506,0,0,30,111,52,60,0,8827,0,0,0,100,1,5,4,5,2.2,2388.56367634,0,0,29556.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,13434.5454545,3,2,3_1,3_0,0.0,0,0.0,0,0,0,40.5,26.8,5.5,0,0,0.0,0.0,0.0 2798,9519,9518,4,4,58,120,46,70,0,8841,0,500,0,0,1,5,0,1,1.0,5480.30402508,3224,0,14734.0,1,1,0,2,1,1,0,1,0,1,0,0,0,0,0,1,14734.0,3,2,3_0,3_0,30336.0,0,30336.0,0,1,3,0.0,0.0,0.0,0,1,2945.9755724209685,2945.9755724209685,0.0 2799,9539,9538,4,4,85,120,71,70,0,887,0,0,0,0,0,6,0,2,1.5,5150.16077919,780,0,19342.0,5,1,0,0,5,1,0,0,1,0,0,0,0,0,1,0,12894.6666667,3,2,3_0,3_1,8000.0,0,0.0,8000,2,2,0.0,0.0,0.0,0,0,938.7100377979507,0.0,938.7100377979507 -2800,9550,9549,0,0,62,111,78,71,0,8882,0,0,0,57,0,4,0,2,1.5,3680.56321307,0,0,21224.0,5,3,8,7,3,0,0,0,0,0,0,1,0,1,0,0,14149.333333300001,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2800,9550,9549,0,0,62,111,78,71,0,8882,0,0,0,57,0,4,0,2,1.5,3680.56321307,0,0,21224.0,5,3,8,7,3,0,0,0,0,0,0,1,0,1,0,0,14149.3333333,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2801,9560,9559,7,10,53,111,35,10,0,8897,0,0,0,1100,1,7,1,2,1.3,3115.22356908,2132,0,16537.0,4,3,8,6,2,1,0,0,0,0,1,0,0,0,1,0,12720.7692308,3,2,3_0,3_0,3067.0,0,0.0,3067,1,16,24.0,45.0,0.0,0,1,297.8410825624707,0.0,297.8410825624707 2802,9572,9571,1,2,50,112,56,50,2,891,0,0,0,0,1,5,1,2,1.5,1588.67282496,1850,10350,19558.0,1,1,7,1,2,1,1,0,0,1,0,0,0,0,0,1,13038.6666667,3,2,3_0,3_0,7000.0,0,7000.0,0,3,3,0.0,0.0,0.0,0,1,679.7807557669694,679.7807557669694,0.0 2803,9589,9588,22,22,87,221,72,70,0,8939,0,0,0,0,0,5,0,1,1.0,4641.02603151,0,0,12866.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,12866.0,3,2,3_0,3_0,11231.0,0,11231.0,0,5,14,0.0,0.0,0.0,0,0,1090.6596668598331,1090.6596668598331,0.0 -2804,9600,9599,9,9,64,111,78,71,0,8952,0,0,0,555,0,4,0,2,1.5,3504.98364529,1248,0,21910.0,5,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,14606.666666699999,3,2,3_0,3_0,11000.0,0,11000.0,0,9,9,0.0,0.0,0.0,0,0,1068.2269019195232,1068.2269019195232,0.0 -2805,9601,9600,1,5,44,112,22,41,0,8953,0,0,0,0,2,6,2,4,2.1,3400.51612846,4236,0,29629.0,1,1,7,0,4,3,1,0,1,0,0,0,0,0,2,1,14109.047618999999,3,2,3_0,3_1,41000.0,0,21000.0,20000,4,4,0.0,36.6666666667,3.3,0,1,4810.888943714497,2464.1138492196205,2346.7750944948766 +2804,9600,9599,9,9,64,111,78,71,0,8952,0,0,0,555,0,4,0,2,1.5,3504.98364529,1248,0,21910.0,5,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,14606.6666667,3,2,3_0,3_0,11000.0,0,11000.0,0,9,9,0.0,0.0,0.0,0,0,1068.2269019195232,1068.2269019195232,0.0 +2805,9601,9600,1,5,44,112,22,41,0,8953,0,0,0,0,2,6,2,4,2.1,3400.51612846,4236,0,29629.0,1,1,7,0,4,3,1,0,1,0,0,0,0,0,2,1,14109.047619,3,2,3_0,3_1,41000.0,0,21000.0,20000,4,4,0.0,36.6666666667,3.3,0,1,4810.888943714497,2464.1138492196205,2346.7750944948766 2806,9621,9620,1,16,37,111,52,42,2,8987,0,50,0,320,2,3,3,5,2.4,3303.12161722,465,1000,31388.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,13078.3333333,3,2,3_1,3_0,7500.0,0,7500.0,0,4,15,0.0,0.0,0.0,0,1,728.3365240360386,728.3365240360386,0.0 -2807,9640,9639,2,5,42,112,54,31,0,9008,0,350,0,0,1,3,0,1,1.0,5533.033401199999,2392,0,13681.0,1,2,9,1,1,1,0,1,0,1,0,0,0,0,0,1,13681.0,3,2,3_0,3_0,22500.0,0,22500.0,0,2,5,0.0,0.0,1.1,1,0,2185.0095721081157,2185.0095721081157,0.0 +2807,9640,9639,2,5,42,112,54,31,0,9008,0,350,0,0,1,3,0,1,1.0,5533.0334012,2392,0,13681.0,1,2,9,1,1,1,0,1,0,1,0,0,0,0,0,1,13681.0,3,2,3_0,3_0,22500.0,0,22500.0,0,2,5,0.0,0.0,1.1,1,0,2185.0095721081157,2185.0095721081157,0.0 2808,9644,9643,0,0,34,111,67,20,0,9012,0,0,0,323,1,3,0,1,1.0,2503.05514047,0,0,14057.0,1,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,14057.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,43.0,60.0,1.1,0,0,0.0,0.0,0.0 2809,9656,9655,4,14,42,112,63,44,0,9026,0,400,0,0,2,4,2,4,2.5,2824.37001939,1820,0,31860.0,1,2,7,2,4,2,0,0,0,1,0,0,0,0,0,2,12744.0,3,2,3_0,3_0,12000.0,0,12000.0,0,15,15,42.0,13.0,3.3,0,1,1165.3384384576618,1165.3384384576618,0.0 2810,9662,9661,0,0,60,111,75,70,0,9037,0,0,0,317,0,3,0,1,1.0,3167.26208911,0,0,14352.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14352.0,3,2,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 @@ -2815,9 +2815,9 @@ 2813,9688,9687,5,8,50,112,52,43,0,9074,0,3541,0,0,2,6,0,2,1.5,1269.64344132,0,0,19519.0,1,1,8,1,3,1,0,1,0,1,0,0,0,0,0,1,13012.6666667,3,2,3_0,3_0,17000.0,0,17000.0,0,7,7,0.0,40.0,3.3,0,1,1650.896121148354,1650.896121148354,0.0 2814,9712,9711,1,18,34,300,52,20,2,910,0,700,0,0,1,5,1,2,1.3,2693.74643494,3756,800,17578.0,1,3,0,0,2,1,0,1,1,0,0,0,0,0,0,1,13521.5384615,3,2,3_0,3_1,50000.0,0,50000.0,0,5,12,134.0,40.0,3.3,0,1,5866.9377362371915,5866.9377362371915,0.0 2815,9716,9715,0,0,68,111,75,50,0,9107,0,0,0,275,0,2,0,1,1.0,3013.09964842,0,0,14097.0,5,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,14097.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2816,9723,9722,2,17,60,221,78,60,0,9116,0,0,0,0,0,2,0,1,1.0,2428.7803290999996,2080,0,14283.0,5,1,1,3,1,1,0,0,0,1,0,0,0,0,0,1,14283.0,3,2,3_0,3_0,15309.0,0,15309.0,0,7,11,0.0,0.0,0.0,0,0,1486.6805128623619,1486.6805128623619,0.0 +2816,9723,9722,2,17,60,221,78,60,0,9116,0,0,0,0,0,2,0,1,1.0,2428.7803291,2080,0,14283.0,5,1,1,3,1,1,0,0,0,1,0,0,0,0,0,1,14283.0,3,2,3_0,3_0,15309.0,0,15309.0,0,7,11,0.0,0.0,0.0,0,0,1486.6805128623619,1486.6805128623619,0.0 2817,9743,9742,15,17,73,111,72,70,0,9148,0,0,0,0,0,6,0,1,1.0,1927.18412879,0,0,12953.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,12953.0,3,2,3_0,3_0,15000.0,0,0.0,15000,6,17,0.0,0.0,0.0,0,0,1456.673048072077,0.0,1456.673048072077 -2818,9759,9758,13,21,62,112,75,60,0,9166,0,0,0,0,0,3,0,2,1.5,3360.77400627,1559,0,20885.0,5,1,9,2,3,2,0,0,0,1,0,0,0,0,0,2,13923.333333300001,3,2,3_0,3_0,10000.0,0,10000.0,0,6,18,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 +2818,9759,9758,13,21,62,112,75,60,0,9166,0,0,0,0,0,3,0,2,1.5,3360.77400627,1559,0,20885.0,5,1,9,2,3,2,0,0,0,1,0,0,0,0,0,2,13923.3333333,3,2,3_0,3_0,10000.0,0,10000.0,0,6,18,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 2819,9764,9763,1,11,52,111,56,70,0,9174,0,0,220,0,1,5,3,5,2.4,1965.56316922,2600,0,34980.0,1,3,8,7,4,2,0,0,0,0,0,1,0,0,1,1,14575.0,3,2,3_0,3_0,19000.0,0,13000.0,6000,9,9,0.0,0.0,0.0,0,0,1845.119194224631,1262.4499749958002,582.6692192288309 2820,9769,9768,0,0,84,211,78,50,0,9184,0,0,0,183,0,3,0,1,1.0,2564.69548597,0,0,12884.0,5,3,4,4,1,0,0,0,0,0,1,0,0,1,0,0,12884.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2821,9783,9782,1,3,42,300,43,43,0,92,0,100,0,0,1,4,2,3,1.8,1857.77448558,0,0,25264.0,1,2,0,0,2,1,0,1,1,0,0,0,0,1,0,1,14035.5555556,3,2,3_1,3_1,7000.0,0,7000.0,0,3,4,64.0,20.0,3.31,0,1,821.3712830732069,821.3712830732069,0.0 @@ -2825,24 +2825,24 @@ 2823,9796,9795,3,8,64,300,78,50,0,9218,0,0,0,0,0,1,0,1,1.0,2541.28112234,3122,0,13560.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,13560.0,3,2,3_0,3_1,7000.0,0,7000.0,0,9,9,0.0,0.0,0.0,0,0,821.3712830732069,821.3712830732069,0.0 2824,9816,9815,2,2,50,111,64,50,0,9258,0,450,0,0,1,4,1,3,2.0,1742.77496515,2461,0,25893.0,1,1,8,7,4,1,0,1,0,0,0,1,0,0,0,1,12946.5,3,2,3_0,3_0,12000.0,0,12000.0,0,3,3,24.6,43.3333333333,3.3,0,1,1165.3384384576618,1165.3384384576618,0.0 2825,9823,9822,7,11,39,120,12,50,0,9265,0,0,30,0,1,5,0,3,2.0,2698.35785342,0,0,27535.0,1,1,0,2,5,2,0,1,0,1,0,0,0,0,1,1,13767.5,3,2,3_0,3_0,40000.0,0,40000.0,0,3,11,140.0,37.0,3.3,0,1,3884.4614615255387,3884.4614615255387,0.0 -2826,9850,9849,3,11,41,111,55,50,0,9307,0,0,0,251,1,3,2,3,1.6,1049.68710908,2350,0,20418.0,1,3,8,7,2,1,0,0,0,0,0,1,0,1,0,1,12761.25,3,2,3_1,3_0,5000.0,0,5000.0,0,5,11,0.0,6.666666666669999,0.0,1,0,485.55768269069233,485.55768269069233,0.0 +2826,9850,9849,3,11,41,111,55,50,0,9307,0,0,0,251,1,3,2,3,1.6,1049.68710908,2350,0,20418.0,1,3,8,7,2,1,0,0,0,0,0,1,0,1,0,1,12761.25,3,2,3_1,3_0,5000.0,0,5000.0,0,5,11,0.0,6.66666666667,0.0,1,0,485.55768269069233,485.55768269069233,0.0 2827,9857,9856,5,15,79,221,86,71,0,9319,0,0,0,0,0,4,0,1,1.0,2831.90254865,1343,0,13751.0,6,4,1,2,1,1,0,0,0,1,0,0,0,0,0,1,13751.0,3,2,3_0,3_0,11231.0,0,11231.0,0,5,14,0.0,0.0,0.0,0,0,1090.6596668598331,1090.6596668598331,0.0 2828,9861,9860,11,11,78,112,78,71,0,9322,0,0,0,0,0,4,0,2,1.5,3114.96007007,1300,0,19401.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,1,0,12934.0,3,2,3_0,3_1,5000.0,0,0.0,5000,11,11,0.0,0.0,0.0,0,0,586.6937736237192,0.0,586.6937736237192 -2829,9862,9861,6,14,44,221,52,71,0,9323,0,50,25,0,2,5,2,4,2.3,3017.36633617,1560,0,32780.0,1,1,1,3,4,2,0,1,0,1,0,0,0,0,1,1,14252.173912999999,3,2,3_0,3_0,27311.0,0,15311.0,12000,7,9,0.0,11.666666666700001,3.31,0,1,2652.2131743930995,1486.8747359354381,1165.3384384576618 +2829,9862,9861,6,14,44,221,52,71,0,9323,0,50,25,0,2,5,2,4,2.3,3017.36633617,1560,0,32780.0,1,1,1,3,4,2,0,1,0,1,0,0,0,0,1,1,14252.173913,3,2,3_0,3_0,27311.0,0,15311.0,12000,7,9,0.0,11.6666666667,3.31,0,1,2652.2131743930995,1486.8747359354381,1165.3384384576618 2830,9865,9864,11,14,72,111,77,71,0,9327,0,0,0,0,0,4,0,2,1.5,3119.41854196,1898,0,19130.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,1,0,12753.3333333,3,2,3_0,3_0,5000.0,0,0.0,5000,14,14,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 -2831,9884,9883,0,0,35,111,31,12,1,9357,0,0,0,2350,2,4,2,4,2.1,3696.06621951,3478,27000,28907.0,1,3,9,7,4,1,1,0,0,0,0,1,0,0,0,1,13765.238095200002,3,2,3_0,3_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 -2832,9897,9896,7,11,48,111,56,50,0,9373,0,0,45,389,2,5,1,2,1.5,1816.02096813,260,0,22160.0,1,3,8,6,2,1,0,1,0,0,1,0,0,0,1,0,14773.333333300001,3,2,3_0,3_0,10000.0,0,0.0,10000,5,8,36.9,30.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 -2833,9902,9901,3,9,55,112,22,50,0,9378,0,350,0,0,2,8,2,4,2.5,1425.0455329000001,2913,0,35715.0,1,1,9,1,4,2,0,1,0,1,0,0,0,0,0,2,14286.0,3,2,3_0,3_0,7000.0,0,7000.0,0,4,13,0.0,0.0,0.0,0,1,679.7807557669694,679.7807557669694,0.0 -2834,9927,9926,0,0,76,111,77,70,0,9411,0,0,0,256,1,3,0,2,1.5,3431.31111557,0,0,21610.0,5,3,10,8,5,0,0,0,0,0,0,0,1,0,0,0,14406.666666699999,3,2,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 +2831,9884,9883,0,0,35,111,31,12,1,9357,0,0,0,2350,2,4,2,4,2.1,3696.06621951,3478,27000,28907.0,1,3,9,7,4,1,1,0,0,0,0,1,0,0,0,1,13765.2380952,3,2,3_0,3_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1456.673048072077,1456.673048072077,0.0 +2832,9897,9896,7,11,48,111,56,50,0,9373,0,0,45,389,2,5,1,2,1.5,1816.02096813,260,0,22160.0,1,3,8,6,2,1,0,1,0,0,1,0,0,0,1,0,14773.3333333,3,2,3_0,3_0,10000.0,0,0.0,10000,5,8,36.9,30.0,3.3,0,1,971.1153653813847,0.0,971.1153653813847 +2833,9902,9901,3,9,55,112,22,50,0,9378,0,350,0,0,2,8,2,4,2.5,1425.0455329,2913,0,35715.0,1,1,9,1,4,2,0,1,0,1,0,0,0,0,0,2,14286.0,3,2,3_0,3_0,7000.0,0,7000.0,0,4,13,0.0,0.0,0.0,0,1,679.7807557669694,679.7807557669694,0.0 +2834,9927,9926,0,0,76,111,77,70,0,9411,0,0,0,256,1,3,0,2,1.5,3431.31111557,0,0,21610.0,5,3,10,8,5,0,0,0,0,0,0,0,1,0,0,0,14406.6666667,3,2,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 2835,9929,9928,2,11,27,300,64,50,0,9414,0,210,0,0,2,5,2,4,2.1,1964.52392119,0,0,30643.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,14591.9047619,3,2,3_1,3_1,8000.0,0,8000.0,0,3,12,104.0,10.5,3.3,0,1,938.7100377979507,938.7100377979507,0.0 2836,9966,9965,0,0,63,111,75,41,0,9477,0,0,0,259,0,2,0,1,1.0,3350.64960458,0,0,13382.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,13382.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2837,9994,9993,1,13,35,111,67,71,2,9509,0,0,0,0,1,3,2,3,1.6,2861.54465221,0,2000,23696.0,4,3,8,6,2,1,0,0,0,0,1,0,0,1,1,0,14810.0,3,2,3_1,3_0,3301.0,0,0.0,3301,3,14,0.0,0.0,0.0,1,0,320.5651821123951,0.0,320.5651821123951 2838,10006,10005,3,8,60,111,78,60,0,9525,0,0,0,117,1,5,2,4,2.5,2721.18136765,5200,0,34598.0,5,3,7,6,4,2,0,0,0,0,1,0,0,1,0,2,13839.2,3,2,3_1,3_0,13682.0,0,13682.0,0,9,9,0.0,0.0,0.0,1,1,1328.6800429148107,1328.6800429148107,0.0 -2839,10017,10016,3,3,49,400,48,60,0,9542,0,336,0,0,2,6,2,4,2.1,2695.67873918,3120,0,31015.0,1,2,0,1,4,1,0,1,0,1,0,0,0,0,0,1,14769.047618999999,3,2,3_0,3_0,17102.0,0,17102.0,0,4,5,338.6,156.66666666700002,3.3,0,1,1660.8014978752442,1660.8014978752442,0.0 +2839,10017,10016,3,3,49,400,48,60,0,9542,0,336,0,0,2,6,2,4,2.1,2695.67873918,3120,0,31015.0,1,2,0,1,4,1,0,1,0,1,0,0,0,0,0,1,14769.047619,3,2,3_0,3_0,17102.0,0,17102.0,0,4,5,338.6,156.666666667,3.3,0,1,1660.8014978752442,1660.8014978752442,0.0 2840,10046,10045,0,0,81,221,72,50,0,9580,0,0,0,0,0,3,0,2,1.5,2522.9897209,2933,0,19827.0,5,1,1,2,3,0,0,0,0,1,0,0,0,0,0,0,13218.0,3,2,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 -2841,10054,10053,1,9,68,221,78,70,2,959,0,0,0,0,0,4,0,2,1.5,2873.04867612,1560,2000,20792.0,5,3,1,2,3,2,0,0,0,1,0,0,0,1,0,2,13861.333333300001,3,2,3_1,3_0,18891.0,0,18891.0,0,9,9,0.0,0.0,0.0,0,0,1834.5340367419738,1834.5340367419738,0.0 +2841,10054,10053,1,9,68,221,78,70,2,959,0,0,0,0,0,4,0,2,1.5,2873.04867612,1560,2000,20792.0,5,3,1,2,3,2,0,0,0,1,0,0,0,1,0,2,13861.3333333,3,2,3_1,3_0,18891.0,0,18891.0,0,9,9,0.0,0.0,0.0,0,0,1834.5340367419738,1834.5340367419738,0.0 2842,10072,10071,0,0,35,111,62,43,0,9617,0,0,0,0,1,1,1,2,1.5,8689.65000225,0,0,22020.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,14680.0,3,2,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 -2843,10073,10072,13,13,48,111,67,71,0,9618,0,0,0,270,1,3,1,2,1.5,2972.32986925,0,0,22208.0,1,3,10,8,2,1,0,0,0,0,0,0,1,1,1,0,14805.333333300001,3,2,3_1,3_0,6562.0,0,0.0,6562,12,12,68.0,90.0,3.3,0,1,637.2459027632647,0.0,637.2459027632647 +2843,10073,10072,13,13,48,111,67,71,0,9618,0,0,0,270,1,3,1,2,1.5,2972.32986925,0,0,22208.0,1,3,10,8,2,1,0,0,0,0,0,0,1,1,1,0,14805.3333333,3,2,3_1,3_0,6562.0,0,0.0,6562,12,12,68.0,90.0,3.3,0,1,637.2459027632647,0.0,637.2459027632647 2844,10075,10074,2,2,49,112,53,71,0,9620,0,0,150,0,1,5,3,5,2.8,1898.51289087,2480,0,37205.0,1,1,8,1,4,1,0,1,0,1,0,0,0,0,1,0,13287.5,3,2,3_0,3_0,12000.0,0,0.0,12000,6,6,0.0,0.0,0.0,0,0,1165.3384384576618,0.0,1165.3384384576618 2845,10079,10078,6,7,80,111,78,70,0,9627,0,0,0,0,0,4,0,2,1.5,5829.12514559,0,0,20073.0,5,1,4,4,3,1,0,0,0,0,1,0,0,0,1,0,13382.0,3,2,3_0,3_0,8000.0,0,0.0,8000,6,7,0.0,0.0,0.0,0,0,776.8922923051077,0.0,776.8922923051077 2846,10093,10092,3,6,45,111,56,42,0,9643,0,0,0,0,1,5,3,4,2.3,2216.86710803,0,0,31520.0,1,3,9,7,2,1,1,0,0,0,0,1,0,1,0,1,13704.3478261,3,2,3_1,3_0,3000.0,0,3000.0,0,3,7,0.0,16.6666666667,1.1,0,0,291.33460961441546,291.33460961441546,0.0 @@ -2852,9 +2852,9 @@ 2850,10158,10157,0,0,38,111,56,43,0,9739,0,0,0,0,1,3,1,2,1.3,3228.45895893,0,0,18286.0,1,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,14066.1538462,3,2,3_1,3_0,0.0,0,0.0,0,0,0,107.5,35.0,2.22,0,0,0.0,0.0,0.0 2851,10165,10164,2,2,65,111,75,50,0,9750,0,0,0,0,0,4,0,2,1.5,1079.01570229,0,0,19636.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,13090.6666667,3,2,3_0,3_0,5000.0,0,0.0,5000,3,3,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 2852,10177,10176,2,2,79,111,77,71,0,9765,0,0,0,0,0,5,0,1,1.0,2914.81489494,0,0,13788.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,13788.0,3,2,3_0,3_0,17000.0,0,0.0,17000,4,4,0.0,0.0,0.0,0,0,1650.896121148354,0.0,1650.896121148354 -2853,10180,10179,11,17,63,111,11,70,0,9769,0,100,100,0,2,4,2,4,2.3,2222.16020221,4012,0,30800.0,5,1,6,5,4,2,0,1,0,0,1,0,0,0,1,1,13391.304347799998,3,2,3_0,3_0,4000.0,0,3000.0,1000,19,25,49.0,13.333333333299999,3.3,0,1,388.44614615255387,291.33460961441546,97.11153653813847 +2853,10180,10179,11,17,63,111,11,70,0,9769,0,100,100,0,2,4,2,4,2.3,2222.16020221,4012,0,30800.0,5,1,6,5,4,2,0,1,0,0,1,0,0,0,1,1,13391.3043478,3,2,3_0,3_0,4000.0,0,3000.0,1000,19,25,49.0,13.3333333333,3.3,0,1,388.44614615255387,291.33460961441546,97.11153653813847 2854,10184,10183,5,5,49,111,46,41,0,9775,0,0,0,0,1,5,2,4,2.3,1866.78391239,0,0,29674.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,0,12901.7391304,3,2,3_0,3_0,6000.0,0,0.0,6000,3,3,7.0,20.0,0.0,0,1,582.6692192288309,0.0,582.6692192288309 -2855,10193,10192,2,8,45,300,64,71,0,9787,0,950,0,0,3,5,3,5,2.8,1439.74716023,3120,0,40449.0,1,2,0,0,4,4,0,1,1,0,0,0,0,0,0,4,14446.071428600002,3,2,3_0,3_1,8000.0,0,8000.0,0,5,5,0.0,1.0,3.3,1,0,938.7100377979507,938.7100377979507,0.0 +2855,10193,10192,2,8,45,300,64,71,0,9787,0,950,0,0,3,5,3,5,2.8,1439.74716023,3120,0,40449.0,1,2,0,0,4,4,0,1,1,0,0,0,0,0,0,4,14446.0714286,3,2,3_0,3_1,8000.0,0,8000.0,0,5,5,0.0,1.0,3.3,1,0,938.7100377979507,938.7100377979507,0.0 2856,10203,10202,2,10,41,221,67,50,0,9803,0,0,0,24,1,5,3,4,2.1,2678.46387313,0,0,26713.0,1,3,1,2,2,1,0,0,0,1,0,0,0,1,0,1,12720.4761905,3,2,3_1,3_0,15000.0,0,15000.0,0,11,14,0.0,15.0,0.0,0,0,1456.673048072077,1456.673048072077,0.0 2857,10205,10204,0,0,87,112,86,71,0,9805,0,0,0,332,0,2,0,1,1.0,6640.41691486,0,0,13927.0,5,3,9,3,1,0,0,0,0,1,0,0,0,1,0,0,13927.0,3,2,3_1,3_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2858,10209,10208,6,11,58,221,56,50,0,9811,0,0,100,85,1,3,0,1,1.0,1965.0847141,0,0,14419.0,1,3,1,2,1,1,0,1,0,1,0,0,0,1,1,0,14419.0,3,2,3_1,3_0,12000.0,0,0.0,12000,11,11,0.0,0.0,0.0,0,0,1165.3384384576618,0.0,1165.3384384576618 @@ -2862,31 +2862,31 @@ 2860,10231,10230,3,6,46,111,63,50,0,9845,0,0,200,0,2,6,3,5,2.8,1871.15433901,1561,0,36130.0,1,2,9,7,4,2,0,0,0,0,0,1,0,1,1,1,12903.5714286,3,2,3_1,3_0,14000.0,0,2000.0,12000,5,5,28.5,12.5,3.3,0,1,1359.5615115339388,194.22307307627693,1165.3384384576618 2861,10251,10250,10,23,64,111,78,70,0,9876,0,0,0,0,0,5,0,1,1.0,4921.57578868,0,0,13783.0,5,1,4,4,1,1,0,0,0,0,1,0,0,0,1,0,13783.0,3,2,3_0,3_0,5000.0,0,0.0,5000,18,22,0.0,0.0,0.0,0,0,485.55768269069233,0.0,485.55768269069233 2862,10259,10258,0,0,63,400,86,70,0,9886,0,0,0,0,0,2,0,1,1.0,2612.00383008,0,0,13604.0,5,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,13604.0,3,2,3_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 -2863,10263,10262,0,0,45,111,56,71,0,9892,0,0,0,200,1,1,2,3,1.8,2993.32949804,0,0,23932.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,13295.555555600002,3,2,3_1,3_0,0.0,0,0.0,0,0,0,84.0,80.0,5.5,0,0,0.0,0.0,0.0 -2864,10271,10270,6,8,60,112,78,70,0,9900,0,0,0,0,0,2,0,2,1.5,1822.01373813,2080,0,20740.0,5,3,8,0,3,1,0,0,1,0,0,0,0,0,0,1,13826.666666699999,3,2,3_0,3_1,15144.0,0,15144.0,0,1,9,0.0,0.0,0.0,0,0,1776.9781015515207,1776.9781015515207,0.0 -2865,10286,10285,5,16,75,400,78,71,0,9919,0,0,0,0,0,6,0,2,1.5,3062.89113502,4316,0,21550.0,5,1,0,1,3,2,0,0,0,1,0,0,0,0,0,2,14366.666666699999,3,2,3_0,3_0,4800.0,0,4800.0,0,11,12,0.0,0.0,0.0,0,0,466.1353753830647,466.1353753830647,0.0 +2863,10263,10262,0,0,45,111,56,71,0,9892,0,0,0,200,1,1,2,3,1.8,2993.32949804,0,0,23932.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,13295.5555556,3,2,3_1,3_0,0.0,0,0.0,0,0,0,84.0,80.0,5.5,0,0,0.0,0.0,0.0 +2864,10271,10270,6,8,60,112,78,70,0,9900,0,0,0,0,0,2,0,2,1.5,1822.01373813,2080,0,20740.0,5,3,8,0,3,1,0,0,1,0,0,0,0,0,0,1,13826.6666667,3,2,3_0,3_1,15144.0,0,15144.0,0,1,9,0.0,0.0,0.0,0,0,1776.9781015515207,1776.9781015515207,0.0 +2865,10286,10285,5,16,75,400,78,71,0,9919,0,0,0,0,0,6,0,2,1.5,3062.89113502,4316,0,21550.0,5,1,0,1,3,2,0,0,0,1,0,0,0,0,0,2,14366.6666667,3,2,3_0,3_0,4800.0,0,4800.0,0,11,12,0.0,0.0,0.0,0,0,466.1353753830647,466.1353753830647,0.0 2866,10291,10290,5,14,47,111,68,31,0,9924,0,0,0,76,1,3,0,1,1.0,6506.84575814,0,0,13555.0,1,3,4,4,1,1,0,0,0,0,1,0,0,1,1,0,13555.0,3,2,3_1,3_0,10000.0,0,0.0,10000,12,15,0.0,0.0,0.0,0,0,971.1153653813847,0.0,971.1153653813847 2867,10296,10295,5,7,70,111,77,71,0,993,0,0,0,0,0,2,0,1,1.0,3082.35783901,2494,0,14652.0,5,3,5,4,1,1,0,0,0,0,1,0,0,1,0,1,14652.0,3,2,3_1,3_0,5000.0,0,5000.0,0,4,4,0.0,0.0,0.0,0,0,485.55768269069233,485.55768269069233,0.0 2868,10320,10319,5,5,69,111,71,50,0,9964,0,0,0,0,0,5,0,2,1.5,1435.63845621,2080,0,18872.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,12581.3333333,3,2,3_0,3_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,971.1153653813847,971.1153653813847,0.0 2869,10322,10321,13,13,84,111,77,70,0,997,0,0,0,0,0,3,0,1,1.0,2543.82740387,0,0,14605.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,14605.0,3,2,3_0,3_0,10000.0,0,0.0,10000,3,13,0.0,0.0,0.0,0,0,971.1153653813847,0.0,971.1153653813847 -2870,10323,10322,0,0,84,111,78,70,0,9971,0,0,0,0,0,5,0,2,1.5,2903.28831068,0,0,20485.0,5,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,13656.666666699999,3,2,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 +2870,10323,10322,0,0,84,111,78,70,0,9971,0,0,0,0,0,5,0,2,1.5,2903.28831068,0,0,20485.0,5,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,13656.6666667,3,2,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 2871,4,3,0,0,77,111,77,71,0,10000,0,0,0,237,0,3,0,1,1.0,2311.85347947,0,0,16410.0,5,3,7,5,1,0,0,0,0,0,1,0,0,0,0,0,16410.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2872,7,6,10,21,63,111,78,50,0,10005,0,0,0,0,1,6,0,2,1.5,2257.88772569,2080,0,23460.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,15640.0,4,2,4_0,4_0,7000.0,0,4000.0,3000,5,21,0.0,0.0,0.0,0,1,623.8982561730121,356.5132892417212,267.38496693129093 2873,15,14,0,0,77,111,77,71,0,10016,0,0,0,237,0,4,0,1,1.0,3884.4666185,0,0,16106.0,5,3,7,6,1,0,0,0,0,0,1,0,0,0,0,0,16106.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2874,23,22,17,21,62,111,77,60,0,10025,0,0,0,0,0,4,0,2,1.5,3507.89518891,1676,0,22532.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,15021.333333300001,4,2,4_0,4_0,8500.0,0,3500.0,5000,2,14,0.0,0.0,0.0,0,0,757.5907396386575,311.94912808650605,445.6416115521515 +2874,23,22,17,21,62,111,77,60,0,10025,0,0,0,0,0,4,0,2,1.5,3507.89518891,1676,0,22532.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,15021.3333333,4,2,4_0,4_0,8500.0,0,3500.0,5000,2,14,0.0,0.0,0.0,0,0,757.5907396386575,311.94912808650605,445.6416115521515 2875,25,24,2,5,49,112,62,71,0,10028,0,180,0,0,3,5,2,4,2.5,3152.52422762,1584,0,39812.0,1,2,7,0,4,1,0,1,1,0,0,0,0,0,0,1,15924.8,4,2,4_0,4_1,30000.0,0,30000.0,0,2,5,0.0,12.0,2.2,0,0,2644.052099865855,2644.052099865855,0.0 2876,27,26,0,0,68,120,78,71,0,1003,0,0,0,0,0,3,0,1,1.0,5430.65449159,0,0,15936.0,5,3,0,2,1,0,0,0,0,1,0,0,0,1,0,0,15936.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2877,50,49,1,2,69,112,78,70,2,10056,0,0,0,0,0,2,0,2,1.5,2359.70949658,3380,9000,22644.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,15096.0,4,2,4_0,4_1,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 2878,60,59,8,15,46,120,63,50,0,10072,0,70,60,0,2,5,2,4,2.5,1627.47020622,1560,0,42009.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,1,2,16803.6,4,2,4_0,4_1,25000.0,0,25000.0,0,5,14,108.0,44.0,3.3,0,1,2203.376749888212,2203.376749888212,0.0 2879,63,62,3,12,47,111,62,50,0,10079,0,199998,0,0,4,6,4,6,3.3,1789.98668596,0,0,55714.0,1,3,8,6,4,2,0,1,0,0,1,0,0,1,0,2,16883.030303,4,2,4_1,4_0,20000.0,0,20000.0,0,2,11,50.5,16.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 -2880,70,69,5,17,78,111,74,20,0,1009,0,0,0,0,0,4,0,2,1.5,3614.56815914,1519,0,22709.0,5,1,9,7,5,1,0,0,0,0,0,1,0,0,1,0,15139.333333300001,4,2,4_0,4_0,4500.0,0,0.0,4500,15,16,0.0,0.0,0.0,0,0,401.0774503969364,0.0,401.0774503969364 +2880,70,69,5,17,78,111,74,20,0,1009,0,0,0,0,0,4,0,2,1.5,3614.56815914,1519,0,22709.0,5,1,9,7,5,1,0,0,0,0,0,1,0,0,1,0,15139.3333333,4,2,4_0,4_0,4500.0,0,0.0,4500,15,16,0.0,0.0,0.0,0,0,401.0774503969364,0.0,401.0774503969364 2881,80,79,0,0,91,111,72,70,0,10103,0,0,0,0,0,4,0,1,1.0,3507.69281111,0,0,15024.0,5,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15024.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2882,82,81,5,10,42,112,64,50,0,10107,0,0,230,368,1,3,1,3,1.8,1954.61060294,2080,0,27793.0,1,3,8,0,4,1,0,1,1,0,0,0,0,0,1,0,15440.5555556,4,2,4_0,4_1,9862.0,0,0.0,9862,7,7,58.0,15.0,3.3,0,1,869.188060295902,0.0,869.188060295902 2883,94,93,10,10,47,111,42,31,0,10122,0,0,50,0,1,4,1,2,1.5,3507.01008789,0,0,23544.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,1,0,15696.0,4,2,4_0,4_0,2000.0,0,0.0,2000,1,10,61.5,30.0,2.24,0,1,178.2566446208606,0.0,178.2566446208606 2884,102,101,6,13,79,111,72,41,0,10130,0,0,0,318,0,3,0,2,1.5,3545.48105492,3068,0,22785.0,5,3,6,5,3,2,0,0,0,0,1,0,0,0,1,1,15190.0,4,2,4_0,4_0,10787.0,0,7287.0,3500,8,13,0.0,0.0,0.0,0,0,961.4272127626116,649.4780846761056,311.94912808650605 -2885,116,115,1,10,34,300,63,60,0,10151,0,450,0,257,1,3,2,4,2.1,3414.91006308,3152,0,32044.0,1,3,0,0,4,1,0,1,1,0,0,0,0,1,0,1,15259.047618999999,4,2,4_1,4_1,15500.0,0,15500.0,0,3,13,0.0,0.0,0.0,0,1,1366.0935849306916,1366.0935849306916,0.0 +2885,116,115,1,10,34,300,63,60,0,10151,0,450,0,257,1,3,2,4,2.1,3414.91006308,3152,0,32044.0,1,3,0,0,4,1,0,1,1,0,0,0,0,1,0,1,15259.047619,4,2,4_1,4_1,15500.0,0,15500.0,0,3,13,0.0,0.0,0.0,0,1,1366.0935849306916,1366.0935849306916,0.0 2886,120,119,1,5,44,112,22,12,2,10156,0,30,0,0,2,2,1,3,1.8,3338.11567697,0,17000,28189.0,1,4,10,4,4,1,1,1,0,0,1,0,0,0,0,1,15660.5555556,4,2,4_0,4_0,20000.0,0,20000.0,0,4,4,62.0,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 -2887,135,134,6,7,38,111,52,50,0,10178,0,0,70,0,1,4,1,2,1.5,2280.12116038,2471,0,22721.0,1,3,8,7,2,1,0,1,0,0,0,1,0,0,1,0,15147.333333300001,4,2,4_0,4_0,15000.0,0,0.0,15000,4,6,0.0,12.0,3.3,0,1,1336.9248346564543,0.0,1336.9248346564543 +2887,135,134,6,7,38,111,52,50,0,10178,0,0,70,0,1,4,1,2,1.5,2280.12116038,2471,0,22721.0,1,3,8,7,2,1,0,1,0,0,0,1,0,0,1,0,15147.3333333,4,2,4_0,4_0,15000.0,0,0.0,15000,4,6,0.0,12.0,3.3,0,1,1336.9248346564543,0.0,1336.9248346564543 2888,142,141,12,12,86,111,75,70,0,10187,0,0,0,0,0,4,0,2,1.5,2641.92192465,0,0,24420.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,16280.0,4,2,4_0,4_0,6444.0,0,6444.0,0,10,11,0.0,0.0,0.0,0,0,574.3429089684129,574.3429089684129,0.0 2889,147,146,4,9,26,111,67,50,0,10194,0,100,0,283,1,2,0,1,1.0,3043.12898584,1040,0,15264.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,15264.0,4,2,4_0,4_0,14800.0,0,14800.0,0,6,10,85.5,40.0,3.3,0,1,1319.0991701943685,1319.0991701943685,0.0 2890,160,159,8,8,56,111,22,60,0,10209,0,0,0,0,3,4,1,5,2.8,1044.3631212,780,0,42455.0,1,1,4,4,5,2,0,1,0,0,1,0,0,0,1,1,15162.5,4,2,4_0,4_0,32000.0,0,20000.0,12000,3,9,107.0,33.75,3.3,0,1,2852.10631393377,1782.566446208606,1069.5398677251637 @@ -2895,38 +2895,38 @@ 2893,174,173,0,0,81,111,77,60,0,10234,0,0,0,0,0,4,0,1,1.0,3533.66221821,0,0,15901.0,5,1,6,5,1,0,0,0,0,0,1,0,0,1,0,0,15901.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2894,187,186,0,0,89,111,78,60,0,10253,0,0,0,0,0,2,0,1,1.0,3489.38571329,0,0,16399.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16399.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2895,205,204,4,4,44,111,55,60,0,10277,0,0,75,0,1,1,0,1,1.0,3607.84012888,671,0,15110.0,1,4,9,7,1,1,0,1,0,0,0,1,0,0,1,0,15110.0,4,2,4_0,4_0,12000.0,0,0.0,12000,4,4,63.0,35.0,3.3,0,1,1069.5398677251637,0.0,1069.5398677251637 -2896,234,233,0,2,37,111,52,50,0,10316,0,352,0,903,1,5,3,4,2.1,1783.3962585000002,1092,0,31110.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,14814.2857143,4,2,4_0,4_0,25000.0,0,25000.0,0,5,7,96.5,70.0,3.3,0,1,2228.2080577607576,2228.2080577607576,0.0 +2896,234,233,0,2,37,111,52,50,0,10316,0,352,0,903,1,5,3,4,2.1,1783.3962585,1092,0,31110.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,14814.2857143,4,2,4_0,4_0,25000.0,0,25000.0,0,5,7,96.5,70.0,3.3,0,1,2228.2080577607576,2228.2080577607576,0.0 2897,236,235,5,8,43,221,52,50,0,10319,0,325,0,0,2,6,3,5,2.6,2670.66744134,5355,0,42964.0,1,2,1,2,4,3,1,0,0,1,0,0,0,0,0,3,16524.6153846,4,2,4_0,4_0,53625.0,0,53625.0,0,2,11,318.4,38.0,3.3,0,1,4779.506283896824,4779.506283896824,0.0 2898,253,252,4,17,47,300,67,50,0,10343,0,230,0,0,1,5,0,1,1.0,2136.46155303,4724,0,15227.0,1,4,0,0,1,1,0,1,1,0,0,0,0,0,0,1,15227.0,4,2,4_0,4_1,15000.0,0,15000.0,0,6,16,0.0,0.0,0.0,0,1,1322.0260499329274,1322.0260499329274,0.0 -2899,258,257,0,6,30,111,64,71,0,10351,0,90,0,310,2,3,0,2,1.5,3461.88644907,0,0,24517.0,1,3,8,7,3,1,0,1,0,0,0,1,0,0,0,1,16344.666666699999,4,2,4_0,4_0,17343.0,0,17343.0,0,1,2,59.6,67.0,5.55,1,0,1545.7524938297927,1545.7524938297927,0.0 +2899,258,257,0,6,30,111,64,71,0,10351,0,90,0,310,2,3,0,2,1.5,3461.88644907,0,0,24517.0,1,3,8,7,3,1,0,1,0,0,0,1,0,0,0,1,16344.6666667,4,2,4_0,4_0,17343.0,0,17343.0,0,1,2,59.6,67.0,5.55,1,0,1545.7524938297927,1545.7524938297927,0.0 2900,269,268,2,2,70,400,78,70,0,10368,0,0,0,560,0,5,0,2,1.5,1857.64857241,0,0,25173.0,5,3,0,0,3,1,0,0,1,0,0,0,0,0,0,1,16782.0,4,2,4_0,4_1,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 2901,281,280,11,11,50,111,46,50,0,10386,0,0,100,0,1,3,2,3,2.0,2848.43744746,0,0,31325.0,1,2,9,7,2,1,1,1,0,0,0,1,0,0,1,0,15662.5,4,2,4_0,4_0,10000.0,0,0.0,10000,3,11,0.0,10.0,3.31,0,1,891.283223104303,0.0,891.283223104303 2902,283,282,22,23,56,112,42,50,0,10389,0,80,0,0,2,7,0,2,1.5,2607.01821769,0,0,23394.0,1,2,9,3,3,2,0,1,0,1,0,0,0,0,1,1,15596.0,4,2,4_0,4_0,21343.0,0,17343.0,4000,19,19,81.0,23.0,3.3,0,1,1902.2657830715139,1545.7524938297927,356.5132892417212 -2903,289,288,17,20,56,400,11,50,0,10398,0,0,0,0,1,3,1,2,1.5,2540.91293381,2849,0,24430.0,1,1,0,0,2,2,0,0,1,0,0,0,0,0,2,0,16286.666666699999,4,2,4_0,4_1,11000.0,0,0.0,11000,19,19,0.0,0.0,0.0,1,0,969.4857699508134,0.0,969.4857699508134 +2903,289,288,17,20,56,400,11,50,0,10398,0,0,0,0,1,3,1,2,1.5,2540.91293381,2849,0,24430.0,1,1,0,0,2,2,0,0,1,0,0,0,0,0,2,0,16286.6666667,4,2,4_0,4_1,11000.0,0,0.0,11000,19,19,0.0,0.0,0.0,1,0,969.4857699508134,0.0,969.4857699508134 2904,290,289,1,10,60,111,78,71,2,10401,0,1250,0,0,1,8,4,6,3.5,2629.80906148,6760,1800,56944.0,4,1,8,7,4,3,1,0,0,0,0,1,0,0,1,2,16269.7142857,4,2,4_0,4_0,25484.0,0,25484.0,0,1,10,0.0,5.0,0.0,0,1,2271.3461657590055,2271.3461657590055,0.0 2905,309,308,4,4,77,111,72,70,0,10425,0,0,0,0,0,4,0,2,1.5,1841.89294107,1043,0,25020.0,5,4,5,4,3,2,0,0,0,0,1,0,0,0,0,2,16680.0,4,2,4_0,4_0,15000.0,0,15000.0,0,6,6,0.0,0.0,0.0,0,0,1336.9248346564543,1336.9248346564543,0.0 -2906,314,313,2,2,43,111,62,31,0,10430,0,400,0,0,2,5,2,4,2.3,1824.78036081,2600,0,36611.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,0,2,15917.826087000001,4,2,4_0,4_0,20000.0,0,20000.0,0,2,4,351.9,95.0,3.3,0,0,1782.566446208606,1782.566446208606,0.0 +2906,314,313,2,2,43,111,62,31,0,10430,0,400,0,0,2,5,2,4,2.3,1824.78036081,2600,0,36611.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,0,2,15917.826087,4,2,4_0,4_0,20000.0,0,20000.0,0,2,4,351.9,95.0,3.3,0,0,1782.566446208606,1782.566446208606,0.0 2907,318,317,6,11,55,111,62,50,0,10436,0,0,30,0,1,4,0,2,1.5,2069.07449898,0,0,24621.0,1,2,4,4,3,1,0,1,0,0,1,0,0,0,1,0,16414.0,4,2,4_0,4_0,5452.0,0,0.0,5452,1,12,0.0,215.0,3.3,0,1,485.92761323646596,0.0,485.92761323646596 2908,332,331,2,16,35,111,47,43,0,10454,0,150,0,0,2,5,2,4,2.1,2393.69049705,4162,0,34610.0,1,2,5,4,4,2,0,0,0,0,1,0,0,0,0,2,16480.952381,4,2,4_0,4_0,2000.0,0,2000.0,0,5,15,0.0,16.75,3.3,0,1,178.2566446208606,178.2566446208606,0.0 -2909,339,338,1,12,49,111,56,60,2,10462,0,0,99999,0,3,5,2,4,2.3,2322.81644824,0,1500,38559.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,16764.782608700003,4,2,4_0,4_0,28849.0,0,28849.0,0,12,15,257.4,52.5,3.3,0,1,2571.262970333604,2571.262970333604,0.0 +2909,339,338,1,12,49,111,56,60,2,10462,0,0,99999,0,3,5,2,4,2.3,2322.81644824,0,1500,38559.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,16764.7826087,4,2,4_0,4_0,28849.0,0,28849.0,0,12,15,257.4,52.5,3.3,0,1,2571.262970333604,2571.262970333604,0.0 2910,366,365,0,0,49,111,65,70,0,105,0,0,0,0,1,1,0,1,1.0,1770.26677302,0,0,15580.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,15580.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,6.0,1.1,0,0,0.0,0.0,0.0 -2911,380,379,3,11,23,111,53,41,0,10522,0,0,0,0,1,5,0,2,1.5,4097.28698344,2706,0,23977.0,1,4,6,5,3,1,0,0,0,0,1,0,0,0,0,1,15984.666666699999,4,2,4_0,4_0,20000.0,0,20000.0,0,3,10,56.1,42.0,3.31,0,1,1782.566446208606,1782.566446208606,0.0 +2911,380,379,3,11,23,111,53,41,0,10522,0,0,0,0,1,5,0,2,1.5,4097.28698344,2706,0,23977.0,1,4,6,5,3,1,0,0,0,0,1,0,0,0,0,1,15984.6666667,4,2,4_0,4_0,20000.0,0,20000.0,0,3,10,56.1,42.0,3.31,0,1,1782.566446208606,1782.566446208606,0.0 2912,381,380,3,17,26,211,64,50,0,10524,0,140,0,53,1,4,2,4,2.1,2406.72999851,2080,0,32404.0,1,3,3,3,4,2,0,1,0,1,0,0,0,1,0,2,15430.4761905,4,2,4_1,4_0,15000.0,0,15000.0,0,3,12,0.0,5.33333333333,3.3,0,1,1336.9248346564543,1336.9248346564543,0.0 2913,384,383,0,1,32,111,34,20,2,10528,0,100,0,0,2,4,1,3,1.8,1877.79749237,2263,18000,29227.0,1,2,8,6,4,1,0,1,0,0,1,0,0,0,0,1,16237.2222222,4,2,4_0,4_0,19000.0,0,19000.0,0,3,5,0.0,0.0,0.0,0,1,1693.4381238981757,1693.4381238981757,0.0 -2914,396,395,2,3,38,111,45,10,0,10540,0,0,0,259,1,3,1,2,1.5,3718.0051431,2232,0,23497.0,1,3,8,7,2,1,0,0,0,0,0,1,0,0,1,0,15664.666666699999,4,2,4_0,4_0,17000.0,0,0.0,17000,2,2,60.0,16.0,3.31,0,1,1515.181479277315,0.0,1515.181479277315 -2915,416,415,5,11,77,120,72,50,0,10562,0,0,0,0,0,6,0,2,1.5,2232.91971286,0,0,22237.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,14824.666666699999,4,2,4_0,4_1,5000.0,0,5000.0,0,4,11,0.0,0.0,0.0,0,0,440.67534997764244,440.67534997764244,0.0 +2914,396,395,2,3,38,111,45,10,0,10540,0,0,0,259,1,3,1,2,1.5,3718.0051431,2232,0,23497.0,1,3,8,7,2,1,0,0,0,0,0,1,0,0,1,0,15664.6666667,4,2,4_0,4_0,17000.0,0,0.0,17000,2,2,60.0,16.0,3.31,0,1,1515.181479277315,0.0,1515.181479277315 +2915,416,415,5,11,77,120,72,50,0,10562,0,0,0,0,0,6,0,2,1.5,2232.91971286,0,0,22237.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,14824.6666667,4,2,4_0,4_1,5000.0,0,5000.0,0,4,11,0.0,0.0,0.0,0,0,440.67534997764244,440.67534997764244,0.0 2916,426,425,4,11,25,111,67,50,0,10581,0,0,0,220,2,1,0,2,1.5,2982.74077155,3276,0,24540.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,0,1,16360.0,4,2,4_0,4_0,37226.0,0,37226.0,0,2,12,120.0,40.0,3.3,0,1,3317.8909263280784,3317.8909263280784,0.0 2917,445,444,1,1,38,112,54,60,1,10608,0,250,0,0,2,4,2,4,2.1,2685.38224758,0,10000,32394.0,1,2,6,0,4,1,0,1,1,0,0,0,0,0,0,1,15425.7142857,4,2,4_0,4_1,40000.0,0,40000.0,0,2,1,272.8,30.0,3.3,0,1,3525.4027998211395,3525.4027998211395,0.0 2918,449,448,0,0,77,221,77,50,0,10613,0,0,0,0,0,4,0,1,1.0,3917.80800962,0,0,15572.0,5,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,15572.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2919,461,460,0,0,75,111,78,70,0,10633,0,0,0,0,0,3,0,1,1.0,2708.79124722,0,0,16863.0,5,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,16863.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2920,473,472,0,0,32,111,52,60,0,10650,0,0,0,81,2,4,3,5,2.4,3416.36210189,0,0,38418.0,1,3,8,7,4,0,0,0,0,0,0,1,0,1,0,0,16007.5,4,2,4_1,4_0,0.0,0,0.0,0,0,0,49.0,24.0,5.5,0,0,0.0,0.0,0.0 -2921,474,473,4,13,22,111,68,41,0,10651,0,150,250,350,2,4,1,3,1.8,3223.18596155,1040,0,28887.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,1,1,16048.333333300001,4,2,4_1,4_0,17913.0,0,13699.0,4214,1,12,279.0,41.6666666667,3.31,0,1,1596.5556375467377,1220.9688873305847,375.5867502161533 +2921,474,473,4,13,22,111,68,41,0,10651,0,150,250,350,2,4,1,3,1.8,3223.18596155,1040,0,28887.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,1,1,16048.3333333,4,2,4_1,4_0,17913.0,0,13699.0,4214,1,12,279.0,41.6666666667,3.31,0,1,1596.5556375467377,1220.9688873305847,375.5867502161533 2922,480,479,4,9,45,112,52,71,0,10660,0,480,0,0,3,6,2,4,2.5,2452.58234152,0,0,42022.0,1,2,8,1,4,2,0,1,0,1,0,0,0,0,0,2,16808.8,4,2,4_0,4_0,10000.0,0,10000.0,0,4,4,148.0,35.0,3.3,1,1,891.283223104303,891.283223104303,0.0 2923,481,480,4,7,54,221,54,43,0,10661,0,0,80,0,2,4,0,2,1.5,2751.30171718,4509,0,24596.0,1,1,1,2,3,3,0,1,0,1,0,0,0,0,1,2,16397.3333333,4,2,4_0,4_0,20000.0,0,20000.0,0,5,9,69.2,40.0,0.0,0,1,1782.566446208606,1782.566446208606,0.0 2924,508,507,6,13,64,111,78,70,0,10700,0,0,0,0,0,3,0,2,1.5,2087.83034099,0,0,24798.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,16532.0,4,2,4_0,4_0,11517.0,0,0.0,11517,2,13,0.0,0.0,0.0,0,0,1026.4908880492258,0.0,1026.4908880492258 2925,531,530,0,0,32,111,67,71,0,10732,0,0,0,66,1,2,0,1,1.0,2327.44610018,0,0,15378.0,1,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,15378.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2926,534,533,7,7,64,111,75,71,0,10735,0,0,0,0,0,5,0,1,1.0,2997.47496005,0,0,15919.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,15919.0,4,2,4_0,4_0,5000.0,0,5000.0,0,3,6,0.0,0.0,0.0,0,0,445.6416115521515,445.6416115521515,0.0 -2927,535,534,0,14,48,221,63,71,0,10736,0,200,0,0,2,4,0,2,1.5,2882.59076597,2600,0,23780.0,4,3,1,3,3,2,0,1,0,1,0,0,0,1,0,2,15853.333333300001,4,2,4_1,4_0,20000.0,0,20000.0,0,5,9,69.2,40.0,0.0,0,1,1782.566446208606,1782.566446208606,0.0 +2927,535,534,0,14,48,221,63,71,0,10736,0,200,0,0,2,4,0,2,1.5,2882.59076597,2600,0,23780.0,4,3,1,3,3,2,0,1,0,1,0,0,0,1,0,2,15853.3333333,4,2,4_1,4_0,20000.0,0,20000.0,0,5,9,69.2,40.0,0.0,0,1,1782.566446208606,1782.566446208606,0.0 2928,536,535,0,4,24,112,54,31,2,10737,0,0,0,464,1,3,0,1,1.0,3309.12187909,0,6500,16639.0,1,3,7,0,1,1,0,0,1,0,0,0,0,1,1,0,16639.0,4,2,4_1,4_1,10000.0,0,0.0,10000,4,8,59.0,40.0,3.3,0,1,881.3506999552849,0.0,881.3506999552849 2929,542,541,15,15,71,112,78,50,0,10749,0,0,0,0,0,4,0,2,1.5,1938.04315632,1562,0,24647.0,5,1,4,0,3,1,0,0,1,0,0,0,0,0,1,0,16431.3333333,4,2,4_0,4_1,25000.0,0,0.0,25000,12,15,0.0,0.0,0.0,0,0,2203.376749888212,0.0,2203.376749888212 2930,543,542,19,19,87,111,74,70,0,1075,0,0,0,0,0,3,0,2,1.5,4306.8825712,0,0,25286.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,16857.3333333,4,2,4_0,4_0,4500.0,0,0.0,4500,15,16,0.0,0.0,0.0,0,0,401.0774503969364,0.0,401.0774503969364 @@ -2939,58 +2939,58 @@ 2937,606,605,0,0,86,111,86,70,0,10832,0,0,0,320,0,4,0,1,1.0,2723.96546697,0,0,16640.0,5,3,6,4,1,0,0,0,0,0,1,0,0,0,0,0,16640.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2938,616,615,0,0,55,111,56,50,0,10847,0,0,0,435,1,1,0,1,1.0,3076.58233548,0,0,15492.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,15492.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2939,627,626,6,6,64,112,77,70,0,10862,0,0,0,0,0,5,0,1,1.0,1427.41580331,0,0,16611.0,5,2,7,0,1,1,0,0,1,0,0,0,0,0,0,1,16611.0,4,2,4_0,4_1,15311.0,0,15311.0,0,6,6,0.0,0.0,0.0,0,0,1349.4360567015367,1349.4360567015367,0.0 -2940,636,635,3,6,33,111,38,20,0,10875,0,50,0,0,2,5,2,4,2.1,4584.80473152,2912,0,34048.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,16213.333333300001,4,2,4_0,4_0,46336.0,0,46336.0,0,1,5,218.0,27.0,3.3,0,1,4129.849942576098,4129.849942576098,0.0 +2940,636,635,3,6,33,111,38,20,0,10875,0,50,0,0,2,5,2,4,2.1,4584.80473152,2912,0,34048.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,16213.3333333,4,2,4_0,4_0,46336.0,0,46336.0,0,1,5,218.0,27.0,3.3,0,1,4129.849942576098,4129.849942576098,0.0 2941,637,636,5,13,36,112,54,43,0,10876,0,0,0,542,1,2,0,1,1.0,3294.29204261,0,0,16761.0,1,3,10,4,1,1,0,0,0,0,1,0,0,0,1,0,16761.0,4,2,4_0,4_0,7000.0,0,0.0,7000,10,12,0.0,14.0,3.3,0,1,623.8982561730121,0.0,623.8982561730121 2942,643,642,6,6,74,111,77,60,0,10883,0,0,0,361,0,4,0,1,1.0,2786.8173815,0,0,15093.0,5,3,6,5,1,1,0,0,0,0,1,0,0,0,0,1,15093.0,4,2,4_0,4_0,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,0,1782.566446208606,1782.566446208606,0.0 2943,655,654,0,4,34,111,63,71,2,1090,0,0,200,450,2,2,0,2,1.5,6325.01625377,0,5000,23916.0,1,3,10,8,3,2,0,1,0,0,0,0,1,0,2,0,15944.0,4,2,4_0,4_0,10000.0,0,0.0,10000,2,2,56.8,60.0,3.3,0,1,891.283223104303,0.0,891.283223104303 2944,668,667,0,0,79,400,77,71,0,10917,0,0,0,240,0,2,0,1,1.0,5214.12616552,0,0,15540.0,5,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,15540.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2945,676,675,2,6,50,221,63,71,0,10934,0,0,0,300,2,3,0,2,1.5,5164.833105799999,3359,0,24002.0,1,3,1,1,3,2,0,0,0,1,0,0,0,0,1,1,16001.333333300001,4,2,4_0,4_0,32000.0,0,25000.0,7000,5,7,0.0,30.0,0.0,0,1,2852.10631393377,2228.2080577607576,623.8982561730121 +2945,676,675,2,6,50,221,63,71,0,10934,0,0,0,300,2,3,0,2,1.5,5164.8331058,3359,0,24002.0,1,3,1,1,3,2,0,0,0,1,0,0,0,0,1,1,16001.3333333,4,2,4_0,4_0,32000.0,0,25000.0,7000,5,7,0.0,30.0,0.0,0,1,2852.10631393377,2228.2080577607576,623.8982561730121 2946,677,676,4,4,68,300,75,70,0,10935,0,0,0,0,0,4,0,1,1.0,1997.75651813,1404,0,16879.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,16879.0,4,2,4_0,4_1,12000.0,0,12000.0,0,3,4,0.0,0.0,0.0,0,0,1057.6208399463417,1057.6208399463417,0.0 2947,689,688,4,4,28,221,52,31,0,10948,0,265,0,395,1,2,0,1,1.0,5246.43596113,0,0,16184.0,1,3,1,1,1,1,0,1,0,1,0,0,0,0,0,1,16184.0,4,2,4_0,4_0,35000.0,0,35000.0,0,2,4,0.0,0.0,0.0,0,1,3119.4912808650606,3119.4912808650606,0.0 2948,698,697,4,19,73,111,77,70,0,10958,0,0,0,0,0,5,1,2,1.5,1740.26144476,1829,0,25215.0,5,1,7,6,2,1,0,0,0,0,1,0,0,0,1,0,16810.0,4,2,4_0,4_0,5000.0,0,0.0,5000,14,18,0.0,0.0,0.0,0,0,445.6416115521515,0.0,445.6416115521515 2949,699,698,4,13,40,112,47,71,0,1096,0,0,0,0,2,5,3,5,2.8,2027.32399282,1561,0,44814.0,4,2,6,2,4,2,0,0,0,1,0,0,0,1,1,1,16005.0,4,2,4_1,4_0,41250.0,0,20000.0,21250,4,14,387.5,38.0,3.31,0,1,3676.54329530525,1782.566446208606,1893.976849096644 2950,717,716,22,25,63,400,78,71,0,10985,0,26,0,0,1,7,0,2,1.5,2711.51149464,6916,0,22584.0,5,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,15056.0,4,2,4_0,4_1,4000.0,0,4000.0,0,9,25,0.0,0.0,0.0,1,0,352.54027998211393,352.54027998211393,0.0 -2951,733,732,13,13,79,111,78,71,0,11009,0,0,0,424,0,3,0,2,1.5,7393.86798192,0,0,23117.0,5,3,7,5,3,1,0,0,0,0,1,0,0,0,1,0,15411.333333300001,4,2,4_0,4_0,10000.0,0,0.0,10000,12,12,0.0,0.0,0.0,0,0,891.283223104303,0.0,891.283223104303 +2951,733,732,13,13,79,111,78,71,0,11009,0,0,0,424,0,3,0,2,1.5,7393.86798192,0,0,23117.0,5,3,7,5,3,1,0,0,0,0,1,0,0,0,1,0,15411.3333333,4,2,4_0,4_0,10000.0,0,0.0,10000,12,12,0.0,0.0,0.0,0,0,891.283223104303,0.0,891.283223104303 2952,735,734,1,15,30,111,62,50,2,11010,0,450,0,480,2,3,0,2,1.5,2595.81155369,3121,2000,22587.0,1,3,8,7,3,1,0,1,0,0,0,1,0,0,0,1,15058.0,4,2,4_0,4_0,37226.0,0,37226.0,0,2,12,120.0,40.0,3.3,0,1,3317.8909263280784,3317.8909263280784,0.0 2953,740,739,0,0,40,111,54,50,0,11019,0,0,0,164,1,3,0,1,1.0,2878.83672271,0,0,15120.0,4,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,15120.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,14.0,1.1,0,0,0.0,0.0,0.0 2954,743,742,2,2,52,111,43,20,0,11027,0,0,0,0,1,2,0,2,1.5,2716.80251036,2080,0,25010.0,7,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,16673.3333333,4,2,4_0,4_0,28000.0,0,0.0,28000,3,4,209.7,32.0,3.3,0,1,2495.5930246920484,0.0,2495.5930246920484 2955,751,750,0,0,82,112,86,70,0,11037,0,0,0,0,0,7,0,1,1.0,2128.79390446,0,0,16168.0,6,1,8,0,1,0,0,0,1,0,0,0,0,0,0,0,16168.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2956,758,757,4,10,30,111,43,10,0,11046,0,420,0,0,1,2,0,1,1.0,2812.86827977,3026,0,16501.0,1,3,8,6,1,1,0,1,0,0,1,0,0,1,0,1,16501.0,4,2,4_1,4_0,14800.0,0,14800.0,0,6,10,85.5,40.0,3.3,0,1,1319.0991701943685,1319.0991701943685,0.0 -2957,769,768,3,7,39,112,55,71,0,11057,0,450,0,0,2,6,3,5,2.4,2854.9288319,0,0,37994.0,1,2,9,0,4,2,0,1,1,0,0,0,0,1,1,1,15830.833333300001,4,2,4_1,4_1,17000.0,0,17000.0,0,2,7,128.0,15.0,0.0,0,1,1498.2961899239842,1498.2961899239842,0.0 +2957,769,768,3,7,39,112,55,71,0,11057,0,450,0,0,2,6,3,5,2.4,2854.9288319,0,0,37994.0,1,2,9,0,4,2,0,1,1,0,0,0,0,1,1,1,15830.8333333,4,2,4_1,4_1,17000.0,0,17000.0,0,2,7,128.0,15.0,0.0,0,1,1498.2961899239842,1498.2961899239842,0.0 2958,781,780,0,1,72,111,75,71,0,11070,0,0,0,0,0,3,0,2,1.5,3184.96154503,2849,0,24641.0,5,4,8,6,3,1,0,0,0,0,1,0,0,0,1,0,16427.3333333,4,2,4_0,4_0,8800.0,0,0.0,8800,1,1,0.0,0.0,0.0,0,0,784.3292363317865,0.0,784.3292363317865 -2959,792,791,0,3,27,221,63,50,2,11087,0,0,0,0,2,4,2,4,2.1,1646.6187055,1561,17000,31300.0,1,2,1,3,4,1,0,0,0,1,0,0,0,1,0,1,14904.761904799998,4,2,4_1,4_0,20000.0,0,20000.0,0,4,6,0.0,15.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 -2960,795,794,9,16,49,400,54,60,0,11090,0,105,0,0,2,6,1,2,1.5,2290.74075963,0,0,22399.0,1,1,0,0,2,1,0,1,1,0,0,0,0,0,0,1,14932.666666699999,4,2,4_0,4_1,2000.0,0,2000.0,0,4,18,0.0,15.0,3.3,0,0,176.27013999105696,176.27013999105696,0.0 -2961,808,807,0,15,32,221,63,43,0,11108,0,224,8,0,2,3,1,3,1.8,2390.18266711,1841,0,28083.0,1,3,1,2,4,2,0,1,0,1,0,0,0,0,1,1,15601.666666699999,4,2,4_0,4_0,17913.0,0,13699.0,4214,1,12,279.0,41.6666666667,3.31,0,1,1596.5556375467377,1220.9688873305847,375.5867502161533 -2962,809,808,4,13,29,120,62,50,0,1111,0,200,0,465,1,4,2,4,2.1,1935.16505618,4992,0,34009.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,16194.761904799998,4,2,4_0,4_1,20000.0,0,20000.0,0,3,13,0.0,0.0,0.0,0,1,1762.7013999105698,1762.7013999105698,0.0 +2959,792,791,0,3,27,221,63,50,2,11087,0,0,0,0,2,4,2,4,2.1,1646.6187055,1561,17000,31300.0,1,2,1,3,4,1,0,0,0,1,0,0,0,1,0,1,14904.7619048,4,2,4_1,4_0,20000.0,0,20000.0,0,4,6,0.0,15.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 +2960,795,794,9,16,49,400,54,60,0,11090,0,105,0,0,2,6,1,2,1.5,2290.74075963,0,0,22399.0,1,1,0,0,2,1,0,1,1,0,0,0,0,0,0,1,14932.6666667,4,2,4_0,4_1,2000.0,0,2000.0,0,4,18,0.0,15.0,3.3,0,0,176.27013999105696,176.27013999105696,0.0 +2961,808,807,0,15,32,221,63,43,0,11108,0,224,8,0,2,3,1,3,1.8,2390.18266711,1841,0,28083.0,1,3,1,2,4,2,0,1,0,1,0,0,0,0,1,1,15601.6666667,4,2,4_0,4_0,17913.0,0,13699.0,4214,1,12,279.0,41.6666666667,3.31,0,1,1596.5556375467377,1220.9688873305847,375.5867502161533 +2962,809,808,4,13,29,120,62,50,0,1111,0,200,0,465,1,4,2,4,2.1,1935.16505618,4992,0,34009.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,16194.7619048,4,2,4_0,4_1,20000.0,0,20000.0,0,3,13,0.0,0.0,0.0,0,1,1762.7013999105698,1762.7013999105698,0.0 2963,816,815,4,16,44,111,64,71,0,11121,0,0,340,0,1,2,0,1,1.0,4308.47841296,4576,0,15310.0,1,4,10,8,1,1,0,1,0,0,0,0,1,0,1,0,15310.0,4,2,4_0,4_0,6000.0,0,0.0,6000,10,13,0.0,30.0,1.1,0,0,534.7699338625819,0.0,534.7699338625819 2964,817,816,2,7,49,111,67,71,0,11122,0,400,0,364,2,3,2,4,2.1,3086.75718614,3120,0,31660.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,15076.1904762,4,2,4_0,4_0,8000.0,0,8000.0,0,7,7,116.6,67.5,3.3,1,1,713.0265784834424,713.0265784834424,0.0 2965,828,827,0,0,60,111,78,70,0,11137,0,0,0,0,0,3,0,1,1.0,2878.07331722,0,0,14971.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,14971.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2966,831,830,12,12,69,300,78,70,0,11140,0,0,0,0,0,4,0,1,1.0,1957.2547871,2080,0,16520.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,0,1,16520.0,4,2,4_0,4_1,4000.0,0,4000.0,0,8,10,0.0,0.0,0.0,0,0,352.54027998211393,352.54027998211393,0.0 2967,837,836,17,17,80,112,75,71,0,11148,0,0,0,0,0,6,0,2,1.5,3011.32452425,0,0,23841.0,5,1,9,3,3,1,0,0,0,1,0,0,0,0,1,0,15894.0,4,2,4_0,4_0,4500.0,0,0.0,4500,15,16,0.0,0.0,0.0,0,0,401.0774503969364,0.0,401.0774503969364 -2968,843,842,1,13,49,111,43,71,2,11157,0,0,80,0,1,6,3,6,3.3,1775.88918602,0,300,50622.0,1,3,8,7,5,2,0,1,0,0,0,1,0,1,2,0,15340.0,4,2,4_1,4_0,18000.0,0,15000.0,3000,10,13,74.9,13.333333333299999,3.3,0,1,1604.3098015877456,1336.9248346564543,267.38496693129093 +2968,843,842,1,13,49,111,43,71,2,11157,0,0,80,0,1,6,3,6,3.3,1775.88918602,0,300,50622.0,1,3,8,7,5,2,0,1,0,0,0,1,0,1,2,0,15340.0,4,2,4_1,4_0,18000.0,0,15000.0,3000,10,13,74.9,13.3333333333,3.3,0,1,1604.3098015877456,1336.9248346564543,267.38496693129093 2969,853,852,5,9,54,400,62,71,0,11175,0,75,0,0,2,4,2,4,2.3,4872.95934259,1040,0,36710.0,1,2,0,0,4,2,1,1,1,0,0,0,0,1,0,2,15960.8695652,4,2,4_1,4_1,12000.0,0,12000.0,0,7,9,136.5,21.25,3.31,0,1,1057.6208399463417,1057.6208399463417,0.0 2970,855,854,0,0,74,111,77,60,0,11177,0,0,0,0,0,3,0,1,1.0,3272.24294754,0,0,16545.0,5,4,6,5,1,0,0,0,0,0,1,0,0,0,0,0,16545.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2971,874,873,11,13,63,300,75,50,0,11202,0,0,0,0,0,5,0,1,1.0,1944.01599088,0,0,15324.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,15324.0,4,2,4_0,4_1,6000.0,0,6000.0,0,5,13,0.0,0.0,0.0,0,0,528.8104199731708,528.8104199731708,0.0 -2972,875,874,6,6,69,111,78,70,0,11203,0,0,0,0,0,5,0,2,1.5,1749.02876569,915,0,22757.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,15171.333333300001,4,2,4_0,4_0,6000.0,0,0.0,6000,5,5,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 +2972,875,874,6,6,69,111,78,70,0,11203,0,0,0,0,0,5,0,2,1.5,1749.02876569,915,0,22757.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,15171.3333333,4,2,4_0,4_0,6000.0,0,0.0,6000,5,5,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 2973,881,880,1,8,48,111,34,20,2,11210,0,550,0,0,2,4,2,4,2.3,8602.25444726,2985,7250,36763.0,1,1,10,8,4,1,1,1,0,0,0,0,1,0,0,1,15983.9130435,4,2,4_0,4_0,13682.0,0,13682.0,0,4,9,91.0,30.0,1.1,0,0,1219.4537058513074,1219.4537058513074,0.0 -2974,885,884,0,16,45,120,64,50,0,11216,0,120,320,0,3,5,3,5,3.0,1823.76398057,5200,0,46580.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,15526.666666699999,4,2,4_0,4_1,30000.0,0,15000.0,15000,9,15,301.0,105.0,3.3,0,1,2644.052099865855,1322.0260499329274,1322.0260499329274 -2975,895,894,2,3,72,400,74,10,0,11228,0,0,0,0,0,6,0,2,1.5,1535.00697709,2097,0,23158.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,15438.666666699999,4,2,4_0,4_1,30000.0,0,10000.0,20000,3,4,0.0,0.0,0.0,0,0,2644.052099865855,881.3506999552849,1762.7013999105698 -2976,899,898,3,3,38,111,62,50,0,11234,0,305,0,0,2,5,2,4,2.1,4819.64828178,0,0,34006.0,1,2,4,4,4,2,0,1,0,0,1,0,0,0,0,2,16193.333333300001,4,2,4_0,4_0,18000.0,0,18000.0,0,2,5,286.2,42.5,3.3,1,1,1604.3098015877456,1604.3098015877456,0.0 +2974,885,884,0,16,45,120,64,50,0,11216,0,120,320,0,3,5,3,5,3.0,1823.76398057,5200,0,46580.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,15526.6666667,4,2,4_0,4_1,30000.0,0,15000.0,15000,9,15,301.0,105.0,3.3,0,1,2644.052099865855,1322.0260499329274,1322.0260499329274 +2975,895,894,2,3,72,400,74,10,0,11228,0,0,0,0,0,6,0,2,1.5,1535.00697709,2097,0,23158.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,15438.6666667,4,2,4_0,4_1,30000.0,0,10000.0,20000,3,4,0.0,0.0,0.0,0,0,2644.052099865855,881.3506999552849,1762.7013999105698 +2976,899,898,3,3,38,111,62,50,0,11234,0,305,0,0,2,5,2,4,2.1,4819.64828178,0,0,34006.0,1,2,4,4,4,2,0,1,0,0,1,0,0,0,0,2,16193.3333333,4,2,4_0,4_0,18000.0,0,18000.0,0,2,5,286.2,42.5,3.3,1,1,1604.3098015877456,1604.3098015877456,0.0 2977,902,901,9,9,52,111,34,20,0,11238,0,0,0,552,2,3,1,3,2.0,2417.08327883,0,0,31430.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,15715.0,4,2,4_0,4_0,18000.0,0,18000.0,0,8,8,0.0,49.3333333333,0.0,0,1,1604.3098015877456,1604.3098015877456,0.0 -2978,951,950,0,0,39,111,62,71,0,11306,0,0,0,447,1,5,4,6,2.7,3006.51504763,0,0,41260.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,15281.481481499999,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2979,959,958,7,7,70,300,75,50,0,11315,0,0,0,0,0,6,0,2,1.5,1143.46666577,0,0,24454.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,16302.666666699999,4,2,4_0,4_1,8000.0,0,8000.0,0,7,7,0.0,0.0,0.0,0,0,705.0805599642279,705.0805599642279,0.0 +2978,951,950,0,0,39,111,62,71,0,11306,0,0,0,447,1,5,4,6,2.7,3006.51504763,0,0,41260.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,15281.4814815,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +2979,959,958,7,7,70,300,75,50,0,11315,0,0,0,0,0,6,0,2,1.5,1143.46666577,0,0,24454.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,16302.6666667,4,2,4_0,4_1,8000.0,0,8000.0,0,7,7,0.0,0.0,0.0,0,0,705.0805599642279,705.0805599642279,0.0 2980,994,993,0,0,67,111,78,50,0,11365,0,0,0,246,0,3,0,1,1.0,2373.77107926,0,0,15346.0,5,3,7,5,1,0,0,0,0,0,1,0,0,0,0,0,15346.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2981,1047,1046,0,0,77,111,78,71,0,11429,0,0,0,0,0,3,0,1,1.0,4525.94235411,0,0,15790.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15790.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2982,1051,1050,0,0,69,112,75,71,0,11432,0,0,0,0,0,5,0,1,1.0,2623.95889411,0,0,16240.0,5,1,9,0,1,0,0,0,1,0,0,0,0,0,0,0,16240.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2983,1065,1064,0,0,64,112,78,71,0,11456,0,0,0,0,0,3,0,1,1.0,2516.21836441,0,0,15020.0,5,1,5,0,1,0,0,0,1,0,0,0,0,0,0,0,15020.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -2984,1076,1075,4,10,35,300,64,60,0,11469,0,750,0,0,2,4,2,4,2.1,1545.81786277,3120,0,34516.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,16436.190476199998,4,2,4_1,4_1,34488.0,0,34488.0,0,2,10,339.5,45.0,3.3,1,1,3039.6022940057865,3039.6022940057865,0.0 +2984,1076,1075,4,10,35,300,64,60,0,11469,0,750,0,0,2,4,2,4,2.1,1545.81786277,3120,0,34516.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,16436.1904762,4,2,4_1,4_1,34488.0,0,34488.0,0,2,10,339.5,45.0,3.3,1,1,3039.6022940057865,3039.6022940057865,0.0 2985,1077,1076,2,32,37,400,52,71,0,11472,0,0,0,0,2,6,2,4,2.3,4740.63143225,499,0,38358.0,1,2,0,0,4,3,0,0,1,0,0,0,0,0,2,1,16677.3913043,4,2,4_0,4_1,20300.0,0,20000.0,300,21,27,0.0,0.0,0.0,0,1,1789.1419209092282,1762.7013999105698,26.440520998658545 -2986,1080,1079,1,3,33,111,64,50,2,11477,0,0,0,0,2,6,2,4,2.1,1571.51406056,2913,17400,33089.0,1,2,8,7,4,1,0,0,0,0,0,1,0,0,0,1,15756.666666699999,4,2,4_0,4_0,46336.0,0,46336.0,0,1,5,218.0,27.0,3.3,0,1,4129.849942576098,4129.849942576098,0.0 -2987,1088,1087,14,14,59,120,77,50,0,11488,0,0,0,0,0,4,0,2,1.5,5004.47422093,0,0,24365.0,5,1,0,3,3,2,0,0,0,1,0,0,0,0,1,1,16243.333333300001,4,2,4_0,4_0,8500.0,0,3500.0,5000,2,14,0.0,0.0,0.0,0,0,757.5907396386575,311.94912808650605,445.6416115521515 -2988,1098,1097,2,17,34,111,65,71,0,11502,0,100,0,173,1,3,2,4,2.1,3147.06533459,2600,0,31464.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,14982.857142899999,4,2,4_1,4_0,10000.0,0,0.0,10000,6,17,0.0,12.0,3.3,0,1,891.283223104303,0.0,891.283223104303 -2989,1104,1103,8,13,44,300,54,60,0,1151,0,300,0,0,2,5,3,5,2.4,1566.02796525,3640,0,35596.0,1,2,0,0,4,1,0,1,1,0,0,0,0,1,0,1,14831.666666699999,4,2,4_1,4_1,18000.0,0,18000.0,0,9,13,1088.5,157.5,3.3,0,1,1586.431259919513,1586.431259919513,0.0 -2990,1127,1126,2,7,41,111,56,50,0,1154,0,150,0,0,1,4,3,4,2.1,3118.95440684,2340,0,31368.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,14937.142857100001,4,2,4_1,4_0,25000.0,0,25000.0,0,5,7,96.5,70.0,3.3,0,1,2228.2080577607576,2228.2080577607576,0.0 -2991,1137,1136,0,0,35,111,52,71,0,11551,0,0,0,224,1,3,1,2,1.3,3134.30787866,0,0,20680.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,15907.692307700003,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,107.5,5.5,0,0,0.0,0.0,0.0 +2986,1080,1079,1,3,33,111,64,50,2,11477,0,0,0,0,2,6,2,4,2.1,1571.51406056,2913,17400,33089.0,1,2,8,7,4,1,0,0,0,0,0,1,0,0,0,1,15756.6666667,4,2,4_0,4_0,46336.0,0,46336.0,0,1,5,218.0,27.0,3.3,0,1,4129.849942576098,4129.849942576098,0.0 +2987,1088,1087,14,14,59,120,77,50,0,11488,0,0,0,0,0,4,0,2,1.5,5004.47422093,0,0,24365.0,5,1,0,3,3,2,0,0,0,1,0,0,0,0,1,1,16243.3333333,4,2,4_0,4_0,8500.0,0,3500.0,5000,2,14,0.0,0.0,0.0,0,0,757.5907396386575,311.94912808650605,445.6416115521515 +2988,1098,1097,2,17,34,111,65,71,0,11502,0,100,0,173,1,3,2,4,2.1,3147.06533459,2600,0,31464.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,14982.8571429,4,2,4_1,4_0,10000.0,0,0.0,10000,6,17,0.0,12.0,3.3,0,1,891.283223104303,0.0,891.283223104303 +2989,1104,1103,8,13,44,300,54,60,0,1151,0,300,0,0,2,5,3,5,2.4,1566.02796525,3640,0,35596.0,1,2,0,0,4,1,0,1,1,0,0,0,0,1,0,1,14831.6666667,4,2,4_1,4_1,18000.0,0,18000.0,0,9,13,1088.5,157.5,3.3,0,1,1586.431259919513,1586.431259919513,0.0 +2990,1127,1126,2,7,41,111,56,50,0,1154,0,150,0,0,1,4,3,4,2.1,3118.95440684,2340,0,31368.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,14937.1428571,4,2,4_1,4_0,25000.0,0,25000.0,0,5,7,96.5,70.0,3.3,0,1,2228.2080577607576,2228.2080577607576,0.0 +2991,1137,1136,0,0,35,111,52,71,0,11551,0,0,0,224,1,3,1,2,1.3,3134.30787866,0,0,20680.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,15907.6923077,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,107.5,5.5,0,0,0.0,0.0,0.0 2992,1141,1140,0,0,78,111,77,50,0,11558,0,0,0,0,0,2,0,1,1.0,4484.70523596,0,0,15240.0,5,1,8,6,1,0,0,0,0,0,1,0,0,0,0,0,15240.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 2993,1148,1147,13,19,77,400,78,70,0,11568,0,0,0,0,0,4,0,1,1.0,2936.18527426,0,0,14844.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,14844.0,4,2,4_0,4_1,8000.0,0,0.0,8000,16,19,0.0,0.0,0.0,0,0,705.0805599642279,0.0,705.0805599642279 2994,1158,1157,12,15,74,111,78,71,0,11581,0,0,0,391,1,5,1,3,2.0,4508.94464693,0,0,32970.0,5,3,9,7,4,1,0,0,0,0,0,1,0,0,1,0,16485.0,4,2,4_0,4_0,10000.0,0,0.0,10000,16,16,0.0,0.0,0.0,0,0,891.283223104303,0.0,891.283223104303 @@ -3002,92 +3002,92 @@ 3000,1204,1203,4,4,59,111,74,50,0,1165,0,0,0,0,1,8,0,2,1.5,1137.38893189,0,0,25157.0,4,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,16771.3333333,4,2,4_0,4_0,6859.0,0,6859.0,0,1,4,0.0,0.0,0.0,0,0,611.3311627272415,611.3311627272415,0.0 3001,1207,1206,0,7,68,112,78,50,2,11653,0,0,0,0,0,4,0,1,1.0,3015.06527149,2632,11000,15478.0,5,1,7,0,1,1,0,0,1,0,0,0,0,0,0,1,15478.0,4,2,4_0,4_1,2000.0,0,2000.0,0,3,7,0.0,0.0,0.0,0,0,176.27013999105696,176.27013999105696,0.0 3002,1215,1214,0,0,87,111,75,60,0,11667,0,0,0,0,0,8,0,2,1.5,3118.25810644,0,0,24420.0,5,4,9,7,5,0,0,0,0,0,0,1,0,0,0,0,16280.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3003,1222,1221,0,11,80,111,78,50,2,11676,0,0,0,0,0,4,0,2,1.5,1393.16246098,1319,3500,23705.0,5,4,8,6,3,3,0,0,0,0,1,0,0,0,1,2,15803.333333300001,4,2,4_0,4_0,13000.0,0,13000.0,0,10,10,0.0,0.0,0.0,0,0,1158.6681900355939,1158.6681900355939,0.0 +3003,1222,1221,0,11,80,111,78,50,2,11676,0,0,0,0,0,4,0,2,1.5,1393.16246098,1319,3500,23705.0,5,4,8,6,3,3,0,0,0,0,1,0,0,0,1,2,15803.3333333,4,2,4_0,4_0,13000.0,0,13000.0,0,10,10,0.0,0.0,0.0,0,0,1158.6681900355939,1158.6681900355939,0.0 3004,1226,1225,4,8,54,111,38,12,0,11681,0,0,0,1950,2,4,2,4,2.5,1580.92050522,2392,0,38150.0,1,3,10,8,4,2,0,0,0,0,0,0,1,0,2,0,15260.0,4,2,4_0,4_0,5000.0,0,0.0,5000,7,9,0.0,12.5,0.0,1,1,445.6416115521515,0.0,445.6416115521515 -3005,1237,1236,3,10,79,111,78,71,0,11699,0,600,0,0,1,3,1,3,2.0,4377.52605458,2080,0,31450.0,5,1,5,4,5,1,0,1,0,0,1,0,0,0,0,1,15725.0,4,2,4_0,4_0,13582.0,0,13582.0,0,4,10,0.0,13.333333333299999,1.1,0,0,1210.5408736202644,1210.5408736202644,0.0 +3005,1237,1236,3,10,79,111,78,71,0,11699,0,600,0,0,1,3,1,3,2.0,4377.52605458,2080,0,31450.0,5,1,5,4,5,1,0,1,0,0,1,0,0,0,0,1,15725.0,4,2,4_0,4_0,13582.0,0,13582.0,0,4,10,0.0,13.3333333333,1.1,0,0,1210.5408736202644,1210.5408736202644,0.0 3006,1241,1240,6,19,25,111,47,31,0,11701,0,0,0,584,1,3,0,2,1.5,3773.79840427,2558,0,23091.0,1,3,9,7,5,1,0,0,0,0,0,1,0,1,1,0,15394.0,4,2,4_1,4_0,14409.0,0,0.0,14409,18,18,0.0,0.0,0.0,0,0,1284.2499961709902,0.0,1284.2499961709902 3007,1264,1263,1,14,22,212,62,42,2,11735,0,450,0,0,1,4,0,1,1.0,2456.14360491,0,2500,15796.0,1,3,3,0,1,1,0,1,1,0,0,0,0,1,0,1,15796.0,4,2,4_1,4_1,35000.0,0,35000.0,0,2,14,26.0,10.0,3.3,0,1,3084.727449843497,3084.727449843497,0.0 3008,1271,1270,5,10,54,400,64,71,0,11743,0,10,0,0,2,5,1,3,2.0,7467.85804376,0,0,30769.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,1,1,15384.5,4,2,4_0,4_0,18000.0,0,15000.0,3000,4,10,23.4,23.3333333333,3.3,0,1,1604.3098015877456,1336.9248346564543,267.38496693129093 3009,1272,1271,0,0,83,111,77,70,0,11745,0,0,0,0,0,2,0,1,1.0,3333.36240748,0,0,15410.0,5,1,6,4,1,0,0,0,0,0,1,0,0,0,0,0,15410.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3010,1296,1295,5,7,77,211,78,71,0,11777,0,0,0,0,0,4,0,2,1.5,2512.23946347,0,0,22273.0,5,1,3,4,3,1,0,0,0,0,1,0,0,0,1,0,14848.666666699999,4,2,4_0,4_0,7000.0,0,0.0,7000,6,6,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 +3010,1296,1295,5,7,77,211,78,71,0,11777,0,0,0,0,0,4,0,2,1.5,2512.23946347,0,0,22273.0,5,1,3,4,3,1,0,0,0,0,1,0,0,0,1,0,14848.6666667,4,2,4_0,4_0,7000.0,0,0.0,7000,6,6,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 3011,1299,1298,17,17,81,300,77,70,0,11781,0,0,0,0,0,3,0,1,1.0,2504.21379292,0,0,15934.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,15934.0,4,2,4_0,4_1,8000.0,0,0.0,8000,11,15,0.0,0.0,0.0,0,0,705.0805599642279,0.0,705.0805599642279 3012,1327,1326,0,0,77,111,78,71,0,11817,0,0,0,0,0,4,0,2,1.5,3383.20465356,0,0,24150.0,5,1,8,7,3,0,0,0,0,0,0,1,0,0,0,0,16100.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3013,1334,1333,0,0,40,300,21,50,1,11825,0,300,0,0,1,5,3,5,2.4,1675.08725726,2600,7990,37200.0,1,2,0,0,4,2,1,0,1,0,0,0,0,1,0,2,15500.0,4,2,4_1,4_1,41445.0,0,41445.0,0,2,7,0.0,0.0,0.0,0,1,3652.757975964678,3652.757975964678,0.0 -3014,1337,1336,2,10,29,300,62,31,0,11831,0,0,200,275,1,3,0,1,1.0,2241.8689928000003,3542,0,15540.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,1,0,15540.0,4,2,4_0,4_1,6500.0,0,0.0,6500,2,9,73.7,50.0,3.3,0,1,572.8779549709352,0.0,572.8779549709352 -3015,1348,1347,14,14,77,111,78,50,0,11846,0,0,0,0,0,4,0,2,1.5,3215.38920667,1604,0,23411.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,1,0,15607.333333300001,4,2,4_0,4_0,1500.0,0,0.0,1500,7,14,0.0,0.0,0.0,0,0,133.69248346564547,0.0,133.69248346564547 -3016,1349,1348,11,14,64,400,74,41,0,11847,0,0,0,0,0,6,0,2,1.5,2561.0884020999997,2161,0,23919.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,15946.0,4,2,4_0,4_1,12500.0,0,2500.0,10000,4,7,0.0,0.0,0.0,0,0,1101.688374944106,220.33767498882122,881.3506999552849 -3017,1382,1381,8,8,56,111,56,71,0,11892,0,0,0,0,2,5,1,2,1.5,2724.3699244000004,0,0,23540.0,1,1,10,8,2,1,0,0,0,0,0,0,1,0,1,0,15693.333333300001,4,2,4_0,4_0,9416.0,0,0.0,9416,7,9,0.0,0.0,0.0,0,1,839.2322828750116,0.0,839.2322828750116 -3018,1387,1386,0,0,77,112,77,70,1,119,0,0,0,0,0,5,0,2,1.5,4168.75399278,0,30500,23423.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,0,1,15615.333333300001,4,2,4_0,4_1,3200.0,0,3200.0,0,1,1,0.0,0.0,0.0,0,0,282.03222398569113,282.03222398569113,0.0 -3019,1397,1396,3,3,38,111,47,41,0,11911,0,0,200,0,1,5,2,4,2.3,2795.2467106,0,0,37668.0,1,4,9,7,4,2,0,1,0,0,0,1,0,0,2,0,16377.391304299998,4,2,4_0,4_0,10000.0,0,0.0,10000,3,9,0.0,0.0,0.0,0,1,891.283223104303,0.0,891.283223104303 +3014,1337,1336,2,10,29,300,62,31,0,11831,0,0,200,275,1,3,0,1,1.0,2241.8689928,3542,0,15540.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,1,0,15540.0,4,2,4_0,4_1,6500.0,0,0.0,6500,2,9,73.7,50.0,3.3,0,1,572.8779549709352,0.0,572.8779549709352 +3015,1348,1347,14,14,77,111,78,50,0,11846,0,0,0,0,0,4,0,2,1.5,3215.38920667,1604,0,23411.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,1,0,15607.3333333,4,2,4_0,4_0,1500.0,0,0.0,1500,7,14,0.0,0.0,0.0,0,0,133.69248346564547,0.0,133.69248346564547 +3016,1349,1348,11,14,64,400,74,41,0,11847,0,0,0,0,0,6,0,2,1.5,2561.0884021,2161,0,23919.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,15946.0,4,2,4_0,4_1,12500.0,0,2500.0,10000,4,7,0.0,0.0,0.0,0,0,1101.688374944106,220.33767498882122,881.3506999552849 +3017,1382,1381,8,8,56,111,56,71,0,11892,0,0,0,0,2,5,1,2,1.5,2724.3699244,0,0,23540.0,1,1,10,8,2,1,0,0,0,0,0,0,1,0,1,0,15693.3333333,4,2,4_0,4_0,9416.0,0,0.0,9416,7,9,0.0,0.0,0.0,0,1,839.2322828750116,0.0,839.2322828750116 +3018,1387,1386,0,0,77,112,77,70,1,119,0,0,0,0,0,5,0,2,1.5,4168.75399278,0,30500,23423.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,0,1,15615.3333333,4,2,4_0,4_1,3200.0,0,3200.0,0,1,1,0.0,0.0,0.0,0,0,282.03222398569113,282.03222398569113,0.0 +3019,1397,1396,3,3,38,111,47,41,0,11911,0,0,200,0,1,5,2,4,2.3,2795.2467106,0,0,37668.0,1,4,9,7,4,2,0,1,0,0,0,1,0,0,2,0,16377.3913043,4,2,4_0,4_0,10000.0,0,0.0,10000,3,9,0.0,0.0,0.0,0,1,891.283223104303,0.0,891.283223104303 3020,1402,1401,0,0,29,111,52,71,0,11923,0,0,0,286,1,2,0,1,1.0,3199.14674256,0,0,15290.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,15290.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3021,1407,1406,5,5,76,112,78,70,0,11930,0,0,0,0,0,5,0,2,1.5,1156.11986508,2600,0,24264.0,5,1,5,0,3,1,0,0,1,0,0,0,0,0,1,0,16176.0,4,2,4_0,4_1,6000.0,0,0.0,6000,4,5,0.0,0.0,0.0,0,0,528.8104199731708,0.0,528.8104199731708 3022,1417,1416,9,9,32,112,38,31,0,11943,0,750,0,0,2,7,2,4,2.1,3815.52936172,5307,0,35089.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,0,2,16709.047619,4,2,4_0,4_1,34488.0,0,34488.0,0,2,10,339.5,45.0,3.3,1,1,3039.6022940057865,3039.6022940057865,0.0 3023,1423,1422,5,5,74,400,75,50,0,11949,0,0,0,0,0,5,0,2,1.5,1802.36310074,2238,0,22650.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15100.0,4,2,4_0,4_1,11000.0,0,11000.0,0,4,5,0.0,0.0,0.0,0,0,969.4857699508134,969.4857699508134,0.0 -3024,1434,1433,0,0,81,111,86,71,0,11964,0,0,0,190,0,3,0,1,1.0,4006.1660825999998,0,0,16468.0,5,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,16468.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3024,1434,1433,0,0,81,111,86,71,0,11964,0,0,0,190,0,3,0,1,1.0,4006.1660826,0,0,16468.0,5,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,16468.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3025,1492,1491,3,4,69,111,78,50,0,12048,0,0,0,0,0,1,0,1,1.0,3262.43129657,0,0,15357.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,15357.0,4,2,4_0,4_0,14000.0,0,14000.0,0,2,2,0.0,0.0,0.0,0,0,1247.7965123460242,1247.7965123460242,0.0 -3026,1500,1499,3,11,39,111,63,71,0,12058,0,500,0,157,2,4,2,4,2.1,3636.2650401999995,405,0,33138.0,1,3,9,7,4,2,0,0,0,0,0,1,0,1,0,2,15780.0,4,2,4_1,4_0,10000.0,0,10000.0,0,3,11,64.0,50.0,3.31,0,1,891.283223104303,891.283223104303,0.0 +3026,1500,1499,3,11,39,111,63,71,0,12058,0,500,0,157,2,4,2,4,2.1,3636.2650402,405,0,33138.0,1,3,9,7,4,2,0,0,0,0,0,1,0,1,0,2,15780.0,4,2,4_1,4_0,10000.0,0,10000.0,0,3,11,64.0,50.0,3.31,0,1,891.283223104303,891.283223104303,0.0 3027,1509,1508,3,10,67,111,77,50,0,12068,0,0,0,368,0,2,0,1,1.0,3413.60417656,0,0,16040.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,16040.0,4,2,4_0,4_0,10000.0,0,0.0,10000,3,10,0.0,0.0,0.0,0,0,891.283223104303,0.0,891.283223104303 -3028,1511,1510,0,21,24,112,85,43,0,12070,0,0,0,0,0,2,1,2,1.3,3480.89996503,0,0,21223.0,6,3,6,0,2,1,0,0,1,0,0,0,0,1,0,1,16325.384615399998,4,2,4_1,4_1,8287.0,0,8287.0,0,6,22,53.0,20.0,3.3,0,1,730.3753250529445,730.3753250529445,0.0 +3028,1511,1510,0,21,24,112,85,43,0,12070,0,0,0,0,0,2,1,2,1.3,3480.89996503,0,0,21223.0,6,3,6,0,2,1,0,0,1,0,0,0,0,1,0,1,16325.3846154,4,2,4_1,4_1,8287.0,0,8287.0,0,6,22,53.0,20.0,3.3,0,1,730.3753250529445,730.3753250529445,0.0 3029,1523,1522,6,6,60,300,75,70,0,12090,0,0,0,0,0,4,0,2,1.5,1031.87124441,0,0,24726.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,0,1,16484.0,4,2,4_0,4_0,17000.0,0,17000.0,0,3,4,0.0,0.0,0.0,0,0,1515.181479277315,1515.181479277315,0.0 3030,1544,1543,7,9,60,112,77,50,0,12115,0,0,0,0,0,5,0,1,1.0,2604.96503623,1482,0,16789.0,5,1,7,0,1,1,0,0,1,0,0,0,0,0,0,1,16789.0,4,2,4_0,4_1,30000.0,0,30000.0,0,5,8,0.0,0.0,0.0,0,0,2644.052099865855,2644.052099865855,0.0 3031,1555,1554,4,12,64,111,78,71,0,12126,0,0,0,0,0,1,0,1,1.0,2858.35058189,1404,0,16058.0,5,3,7,6,1,1,0,0,0,0,1,0,0,0,0,1,16058.0,4,2,4_0,4_0,11747.0,0,11747.0,0,9,12,0.0,0.0,0.0,0,0,1046.9904021806249,1046.9904021806249,0.0 3032,1566,1565,0,0,80,111,77,71,0,12144,0,0,0,265,0,3,0,1,1.0,3236.42740897,0,0,15635.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,15635.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3033,1581,1580,15,15,77,112,77,71,0,12168,0,0,0,500,0,5,0,2,1.5,2638.11665851,2577,0,23450.0,5,3,8,1,3,1,0,0,0,1,0,0,0,0,1,0,15633.333333300001,4,2,4_0,4_0,12000.0,0,0.0,12000,11,16,0.0,0.0,0.0,0,0,1069.5398677251637,0.0,1069.5398677251637 -3034,1586,1585,5,6,49,221,56,50,0,12172,0,0,0,0,1,6,1,2,1.5,6085.228105300001,0,0,24578.0,1,1,1,1,2,2,0,0,0,1,0,0,0,0,1,1,16385.3333333,4,2,4_0,4_0,34800.0,0,20000.0,14800,6,7,0.0,0.0,0.0,0,1,3101.6656164029746,1782.566446208606,1319.0991701943685 +3033,1581,1580,15,15,77,112,77,71,0,12168,0,0,0,500,0,5,0,2,1.5,2638.11665851,2577,0,23450.0,5,3,8,1,3,1,0,0,0,1,0,0,0,0,1,0,15633.3333333,4,2,4_0,4_0,12000.0,0,0.0,12000,11,16,0.0,0.0,0.0,0,0,1069.5398677251637,0.0,1069.5398677251637 +3034,1586,1585,5,6,49,221,56,50,0,12172,0,0,0,0,1,6,1,2,1.5,6085.2281053,0,0,24578.0,1,1,1,1,2,2,0,0,0,1,0,0,0,0,1,1,16385.3333333,4,2,4_0,4_0,34800.0,0,20000.0,14800,6,7,0.0,0.0,0.0,0,1,3101.6656164029746,1782.566446208606,1319.0991701943685 3035,1600,1599,0,0,73,112,77,71,0,12198,0,0,0,0,0,2,0,1,1.0,2998.66604631,2652,0,16606.0,5,3,9,3,1,0,0,0,0,1,0,0,0,1,0,0,16606.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3036,1627,1626,0,0,71,111,77,71,0,12241,0,0,0,0,0,3,0,1,1.0,2403.83022852,0,0,16740.0,5,3,6,5,1,0,0,0,0,0,1,0,0,0,0,0,16740.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3037,1653,1652,3,3,32,112,53,50,0,12284,0,300,0,0,2,3,1,3,1.8,1633.81728191,1560,0,28305.0,1,3,8,1,4,2,1,1,0,1,0,0,0,0,1,1,15725.0,4,2,4_0,4_0,12000.0,0,10000.0,2000,5,5,60.0,36.6666666667,3.3,0,1,1069.5398677251637,891.283223104303,178.2566446208606 3038,1667,1666,11,11,46,221,55,41,0,12302,0,0,0,0,1,3,2,3,1.8,4437.20793654,1820,0,27180.0,1,3,1,2,2,1,0,0,0,1,0,0,0,0,0,0,15100.0,4,2,4_0,4_0,10000.0,0,0.0,10000,3,11,0.0,10.0,3.31,0,1,891.283223104303,0.0,891.283223104303 -3039,1682,1681,9,11,53,111,65,41,0,1232,0,0,0,229,2,2,0,2,1.5,2798.38200087,0,0,23372.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,0,1,15581.333333300001,4,2,4_0,4_0,10000.0,0,10000.0,0,10,12,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 +3039,1682,1681,9,11,53,111,65,41,0,1232,0,0,0,229,2,2,0,2,1.5,2798.38200087,0,0,23372.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,0,1,15581.3333333,4,2,4_0,4_0,10000.0,0,10000.0,0,10,12,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3040,1687,1686,4,10,47,111,52,60,0,1233,0,0,0,0,2,5,3,4,2.5,2278.98495132,0,0,41942.0,1,2,9,7,2,1,0,0,0,0,0,1,0,1,0,1,16776.8,4,2,4_1,4_0,32000.0,0,32000.0,0,7,10,0.0,25.0,3.3,0,1,2852.10631393377,2852.10631393377,0.0 -3041,1689,1688,5,5,64,111,78,71,0,12333,0,0,0,0,0,3,0,2,1.5,2790.55011001,2473,0,22259.0,5,3,6,4,3,1,0,0,0,0,1,0,0,0,0,1,14839.333333300001,4,2,4_0,4_0,10000.0,0,10000.0,0,6,6,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 +3041,1689,1688,5,5,64,111,78,71,0,12333,0,0,0,0,0,3,0,2,1.5,2790.55011001,2473,0,22259.0,5,3,6,4,3,1,0,0,0,0,1,0,0,0,0,1,14839.3333333,4,2,4_0,4_0,10000.0,0,10000.0,0,6,6,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3042,1698,1697,2,2,69,111,77,50,0,12343,0,0,0,0,0,4,0,1,1.0,2883.93926791,0,0,16798.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,16798.0,4,2,4_0,4_0,7000.0,0,0.0,7000,2,2,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 3043,1702,1701,4,13,58,112,21,71,0,12350,0,0,0,0,1,5,0,2,1.5,3744.68486164,4160,0,25082.0,1,1,6,0,3,1,0,0,1,0,0,0,0,0,1,0,16721.3333333,4,2,4_0,4_1,4000.0,0,0.0,4000,8,12,0.0,0.0,0.0,0,0,352.54027998211393,0.0,352.54027998211393 -3044,1705,1704,4,16,49,112,53,71,0,12353,0,0,0,0,1,1,0,1,1.0,6166.132948899999,0,0,15170.0,4,2,8,0,1,1,0,0,1,0,0,0,0,1,0,1,15170.0,4,2,4_1,4_1,15000.0,0,15000.0,0,6,16,0.0,0.0,0.0,0,1,1322.0260499329274,1322.0260499329274,0.0 +3044,1705,1704,4,16,49,112,53,71,0,12353,0,0,0,0,1,1,0,1,1.0,6166.1329489,0,0,15170.0,4,2,8,0,1,1,0,0,1,0,0,0,0,1,0,1,15170.0,4,2,4_1,4_1,15000.0,0,15000.0,0,6,16,0.0,0.0,0.0,0,1,1322.0260499329274,1322.0260499329274,0.0 3045,1715,1714,3,3,74,212,72,31,0,12365,0,0,0,0,0,6,1,3,2.0,2341.16509318,1581,0,32905.0,5,1,2,0,4,2,0,0,1,0,0,0,0,0,0,2,16452.5,4,2,4_0,4_1,8000.0,0,8000.0,0,4,4,0.0,0.0,0.0,0,0,705.0805599642279,705.0805599642279,0.0 3046,1725,1724,1,7,29,111,47,43,2,12379,0,0,0,613,2,3,1,3,1.8,3023.18382355,0,7000,30143.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,1,0,16746.1111111,4,2,4_0,4_0,0.0,0,0.0,0,6,0,78.5,51.6666666667,5.56,0,0,0.0,0.0,0.0 -3047,1737,1736,11,11,77,112,72,50,0,12399,0,0,0,0,0,5,0,2,1.5,2589.50574043,0,0,23210.0,5,1,10,4,3,2,0,0,0,0,1,0,0,0,1,1,15473.333333300001,4,2,4_0,4_0,7759.0,0,3000.0,4759,8,8,0.0,0.0,0.0,0,0,691.5466528066287,267.38496693129093,424.1616858753378 +3047,1737,1736,11,11,77,112,72,50,0,12399,0,0,0,0,0,5,0,2,1.5,2589.50574043,0,0,23210.0,5,1,10,4,3,2,0,0,0,0,1,0,0,0,1,1,15473.3333333,4,2,4_0,4_0,7759.0,0,3000.0,4759,8,8,0.0,0.0,0.0,0,0,691.5466528066287,267.38496693129093,424.1616858753378 3048,1741,1740,3,6,53,111,52,60,0,12403,0,0,99999,0,1,4,0,1,1.0,2832.71591685,2600,0,15440.0,1,3,7,6,1,1,0,1,0,0,1,0,0,0,1,0,15440.0,4,2,4_0,4_0,2000.0,0,0.0,2000,2,4,0.0,0.0,0.0,0,1,178.2566446208606,0.0,178.2566446208606 -3049,1746,1745,22,22,61,211,75,50,0,12409,0,0,0,0,0,5,0,2,1.5,3408.41738356,0,0,23798.0,5,1,2,3,3,1,0,0,0,1,0,0,0,0,0,1,15865.333333300001,4,2,4_0,4_0,11300.0,0,11300.0,0,15,21,0.0,0.0,0.0,0,0,1007.1500421078624,1007.1500421078624,0.0 +3049,1746,1745,22,22,61,211,75,50,0,12409,0,0,0,0,0,5,0,2,1.5,3408.41738356,0,0,23798.0,5,1,2,3,3,1,0,0,0,1,0,0,0,0,0,1,15865.3333333,4,2,4_0,4_0,11300.0,0,11300.0,0,15,21,0.0,0.0,0.0,0,0,1007.1500421078624,1007.1500421078624,0.0 3050,1761,1760,0,0,87,112,71,71,0,12424,0,0,0,0,0,4,0,1,1.0,3426.73992048,0,0,16131.0,5,1,4,0,1,0,0,0,1,0,0,0,0,0,0,0,16131.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3051,1775,1774,4,4,49,221,63,41,0,12445,0,0,0,0,2,3,0,2,1.5,1365.22573543,2600,0,22745.0,1,2,1,2,3,1,0,0,0,1,0,0,0,0,1,0,15163.333333300001,4,2,4_0,4_0,11517.0,0,0.0,11517,3,0,20.1,50.0,2.22,0,1,1026.4908880492258,0.0,1026.4908880492258 -3052,1778,1777,14,26,71,112,71,50,0,12450,0,0,0,0,0,4,0,2,1.5,1204.46323474,2914,0,24331.0,5,1,4,0,3,3,0,0,1,0,0,0,0,0,1,2,16220.666666699999,4,2,4_0,4_1,20000.0,0,10000.0,10000,24,26,0.0,0.0,0.0,0,0,1762.7013999105698,881.3506999552849,881.3506999552849 +3051,1775,1774,4,4,49,221,63,41,0,12445,0,0,0,0,2,3,0,2,1.5,1365.22573543,2600,0,22745.0,1,2,1,2,3,1,0,0,0,1,0,0,0,0,1,0,15163.3333333,4,2,4_0,4_0,11517.0,0,0.0,11517,3,0,20.1,50.0,2.22,0,1,1026.4908880492258,0.0,1026.4908880492258 +3052,1778,1777,14,26,71,112,71,50,0,12450,0,0,0,0,0,4,0,2,1.5,1204.46323474,2914,0,24331.0,5,1,4,0,3,3,0,0,1,0,0,0,0,0,1,2,16220.6666667,4,2,4_0,4_1,20000.0,0,10000.0,10000,24,26,0.0,0.0,0.0,0,0,1762.7013999105698,881.3506999552849,881.3506999552849 3053,1783,1782,2,8,76,111,75,71,0,12458,0,0,0,0,0,4,0,2,1.5,3503.67292012,0,0,23904.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,15936.0,4,2,4_0,4_0,10000.0,0,0.0,10000,6,8,0.0,0.0,0.0,0,0,891.283223104303,0.0,891.283223104303 3054,1786,1785,0,0,76,111,77,50,0,12460,0,0,0,0,0,3,0,1,1.0,4228.66649548,0,0,15732.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15732.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3055,1795,1794,2,2,71,111,72,71,0,12470,0,0,0,0,0,5,0,2,1.5,1920.68247875,0,0,23094.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,0,1,15396.0,4,2,4_0,4_0,9000.0,0,9000.0,0,2,2,0.0,0.0,0.0,0,0,802.1549007938728,802.1549007938728,0.0 3056,1796,1795,16,16,79,211,78,50,0,12471,0,0,0,0,0,4,0,2,1.5,1358.35585247,0,0,23886.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,1,0,15924.0,4,2,4_0,4_0,4500.0,0,0.0,4500,15,16,0.0,0.0,0.0,0,0,401.0774503969364,0.0,401.0774503969364 3057,1817,1816,6,11,37,111,56,31,0,12499,0,150,0,322,1,3,1,2,1.3,2866.84457927,0,0,20594.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,15841.5384615,4,2,4_1,4_0,10000.0,0,10000.0,0,5,8,0.0,33.0,1.1,0,0,891.283223104303,891.283223104303,0.0 -3058,1824,1823,24,34,38,120,67,31,0,12513,0,600,0,0,2,4,2,4,2.1,3241.62922016,5356,0,31410.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,0,3,14957.142857100001,4,2,4_0,4_1,6859.0,0,6859.0,0,1,19,78.1,46.25,3.3,0,1,604.5184450993299,604.5184450993299,0.0 -3059,1827,1826,15,19,43,111,63,50,0,12519,0,100149,0,0,2,7,2,4,2.1,2892.9929255999996,1235,0,31807.0,1,2,4,3,4,2,0,1,0,1,0,0,0,0,0,2,15146.1904762,4,2,4_0,4_0,30328.0,0,30328.0,0,6,20,163.0,33.3333333333,3.3,0,1,2703.08375903073,2703.08375903073,0.0 +3058,1824,1823,24,34,38,120,67,31,0,12513,0,600,0,0,2,4,2,4,2.1,3241.62922016,5356,0,31410.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,0,3,14957.1428571,4,2,4_0,4_1,6859.0,0,6859.0,0,1,19,78.1,46.25,3.3,0,1,604.5184450993299,604.5184450993299,0.0 +3059,1827,1826,15,19,43,111,63,50,0,12519,0,100149,0,0,2,7,2,4,2.1,2892.9929256,1235,0,31807.0,1,2,4,3,4,2,0,1,0,1,0,0,0,0,0,2,15146.1904762,4,2,4_0,4_0,30328.0,0,30328.0,0,6,20,163.0,33.3333333333,3.3,0,1,2703.08375903073,2703.08375903073,0.0 3060,1839,1838,5,5,71,111,78,71,0,12532,0,0,0,0,0,4,0,2,1.5,4638.88428348,2861,0,24935.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,16623.3333333,4,2,4_0,4_0,42000.0,0,42000.0,0,5,5,0.0,0.0,0.0,0,0,3743.3895370380724,3743.3895370380724,0.0 3061,1843,1842,2,2,43,111,62,44,1,12536,0,0,0,0,2,4,2,4,2.3,3731.57746044,1560,29000,37881.0,1,4,5,4,4,1,0,0,0,0,1,0,0,0,0,1,16470.0,4,2,4_0,4_0,6859.0,0,6859.0,0,1,1,167.8,88.3333333333,3.3,1,1,611.3311627272415,611.3311627272415,0.0 -3062,1844,1843,1,13,49,212,67,71,0,12537,0,200,0,0,1,3,1,3,1.8,1682.42963122,1560,0,26750.0,1,3,2,0,4,1,0,1,1,0,0,0,0,1,0,1,14861.111111100001,4,2,4_1,4_1,15000.0,0,15000.0,0,2,13,0.0,0.0,0.0,0,1,1322.0260499329274,1322.0260499329274,0.0 +3062,1844,1843,1,13,49,212,67,71,0,12537,0,200,0,0,1,3,1,3,1.8,1682.42963122,1560,0,26750.0,1,3,2,0,4,1,0,1,1,0,0,0,0,1,0,1,14861.1111111,4,2,4_1,4_1,15000.0,0,15000.0,0,2,13,0.0,0.0,0.0,0,1,1322.0260499329274,1322.0260499329274,0.0 3063,1845,1844,2,9,30,111,62,50,0,12538,0,0,0,400,1,2,0,1,1.0,4088.94920876,1040,0,15586.0,4,3,7,5,1,1,0,0,0,0,1,0,0,0,0,1,15586.0,4,2,4_0,4_0,10000.0,0,10000.0,0,5,7,0.0,40.0,3.3,0,1,891.283223104303,891.283223104303,0.0 -3064,1850,1849,2,9,38,111,52,60,0,12544,0,170,0,211,2,5,3,5,2.4,2703.33552398,2600,0,37069.0,1,3,6,5,4,2,0,0,0,0,1,0,0,1,1,1,15445.416666699999,4,2,4_1,4_0,32000.0,0,20000.0,12000,3,9,107.0,33.75,3.3,0,1,2852.10631393377,1782.566446208606,1069.5398677251637 +3064,1850,1849,2,9,38,111,52,60,0,12544,0,170,0,211,2,5,3,5,2.4,2703.33552398,2600,0,37069.0,1,3,6,5,4,2,0,0,0,0,1,0,0,1,1,1,15445.4166667,4,2,4_1,4_0,32000.0,0,20000.0,12000,3,9,107.0,33.75,3.3,0,1,2852.10631393377,1782.566446208606,1069.5398677251637 3065,1858,1857,11,16,55,112,62,50,0,12557,0,0,0,0,1,3,0,2,1.5,1815.82683098,3120,0,23541.0,1,1,7,0,3,2,0,1,1,0,0,0,0,0,0,2,15694.0,4,2,4_0,4_1,5000.0,0,5000.0,0,15,15,0.0,0.0,0.0,1,0,440.67534997764244,440.67534997764244,0.0 3066,1874,1873,0,0,63,111,31,31,0,12585,0,0,0,0,1,2,0,1,1.0,4057.38076535,0,0,15250.0,1,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15250.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,22.8,60.0,1.1,0,0,0.0,0.0,0.0 -3067,1881,1880,1,1,86,112,74,70,1,12594,0,0,0,0,0,4,0,2,1.5,2157.20506331,1560,11781,24134.0,5,1,10,2,3,1,0,0,0,1,0,0,0,0,1,0,16089.333333300001,4,2,4_0,4_0,7024.0,0,0.0,7024,12,0,0.0,0.0,0.0,0,0,626.0373359084624,0.0,626.0373359084624 +3067,1881,1880,1,1,86,112,74,70,1,12594,0,0,0,0,0,4,0,2,1.5,2157.20506331,1560,11781,24134.0,5,1,10,2,3,1,0,0,0,1,0,0,0,0,1,0,16089.3333333,4,2,4_0,4_0,7024.0,0,0.0,7024,12,0,0.0,0.0,0.0,0,0,626.0373359084624,0.0,626.0373359084624 3068,1886,1885,0,0,49,112,46,41,0,126,0,0,0,0,1,4,0,1,1.0,2067.58471038,0,0,14854.0,4,3,8,1,1,0,0,0,0,1,0,0,0,1,0,0,14854.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,6.0,1.1,0,0,0.0,0.0,0.0 -3069,1893,1892,0,0,87,300,78,70,0,12606,0,0,0,0,0,2,0,2,1.5,1424.65202276,4420,0,23993.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,15995.333333300001,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3069,1893,1892,0,0,87,300,78,70,0,12606,0,0,0,0,0,2,0,2,1.5,1424.65202276,4420,0,23993.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,15995.3333333,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3070,1899,1898,26,26,44,111,46,50,0,12613,0,500,0,0,1,5,1,3,2.0,982.578759015,1768,0,33092.0,1,3,6,4,4,2,0,0,0,0,1,0,0,0,0,2,16546.0,4,2,4_0,4_0,43000.0,0,43000.0,0,7,11,0.0,0.0,0.0,0,1,3832.5178593485025,3832.5178593485025,0.0 3071,1909,1908,2,7,20,111,46,31,0,12629,0,340,0,0,1,3,0,1,1.0,3511.89933979,0,0,15535.0,2,3,9,7,1,1,0,1,0,0,0,1,0,1,0,1,15535.0,4,2,4_1,4_0,18445.0,0,18445.0,0,1,7,1405.0,50.0,3.3,0,1,1643.9719050158867,1643.9719050158867,0.0 -3072,1914,1913,1,1,72,112,78,50,1,12634,0,0,0,0,0,4,0,2,1.5,2040.10523417,1347,19000,23410.0,5,1,9,3,3,1,0,0,0,1,0,0,0,0,0,1,15606.666666699999,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 +3072,1914,1913,1,1,72,112,78,50,1,12634,0,0,0,0,0,4,0,2,1.5,2040.10523417,1347,19000,23410.0,5,1,9,3,3,1,0,0,0,1,0,0,0,0,0,1,15606.6666667,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3073,1931,1930,9,11,51,111,48,42,0,12658,0,100029,0,0,2,4,1,3,2.0,1059.86221704,0,0,31902.0,1,1,5,4,4,2,0,1,0,0,1,0,0,0,0,2,15951.0,4,2,4_0,4_0,20000.0,0,20000.0,0,5,5,88.8,48.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 -3074,1933,1932,5,13,35,111,65,41,0,1266,0,100,0,165,2,4,3,5,2.4,2771.96641086,1040,0,37670.0,1,3,10,8,4,2,0,1,0,0,0,0,1,1,0,2,15695.833333300001,4,2,4_1,4_0,6000.0,0,6000.0,0,5,9,50.0,28.0,3.31,0,1,534.7699338625819,534.7699338625819,0.0 -3075,1937,1936,1,1,55,112,64,50,1,12663,0,150,30,0,2,4,3,5,2.8,1149.41004553,1820,13000,41730.0,1,3,10,0,4,2,1,1,1,0,0,0,0,1,1,1,14903.571428600002,4,2,4_1,4_1,40000.0,0,25000.0,15000,1,4,127.5,58.6666666667,3.3,0,1,3525.4027998211395,2203.376749888212,1322.0260499329274 +3074,1933,1932,5,13,35,111,65,41,0,1266,0,100,0,165,2,4,3,5,2.4,2771.96641086,1040,0,37670.0,1,3,10,8,4,2,0,1,0,0,0,0,1,1,0,2,15695.8333333,4,2,4_1,4_0,6000.0,0,6000.0,0,5,9,50.0,28.0,3.31,0,1,534.7699338625819,534.7699338625819,0.0 +3075,1937,1936,1,1,55,112,64,50,1,12663,0,150,30,0,2,4,3,5,2.8,1149.41004553,1820,13000,41730.0,1,3,10,0,4,2,1,1,1,0,0,0,0,1,1,1,14903.5714286,4,2,4_1,4_1,40000.0,0,25000.0,15000,1,4,127.5,58.6666666667,3.3,0,1,3525.4027998211395,2203.376749888212,1322.0260499329274 3076,1957,1956,0,0,76,111,78,71,0,12691,0,0,0,346,0,2,0,1,1.0,4015.44203648,0,0,15084.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,15084.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3077,1960,1959,6,10,46,111,55,50,0,12695,0,150,0,0,2,5,3,5,2.8,1447.86691462,0,0,45644.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,16301.428571399998,4,2,4_0,4_0,20000.0,0,20000.0,0,7,7,185.5,36.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 +3077,1960,1959,6,10,46,111,55,50,0,12695,0,150,0,0,2,5,3,5,2.8,1447.86691462,0,0,45644.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,16301.4285714,4,2,4_0,4_0,20000.0,0,20000.0,0,7,7,185.5,36.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 3078,1966,1965,21,21,79,111,78,50,0,12701,0,0,0,0,0,3,0,1,1.0,3532.40428368,0,0,16750.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,16750.0,4,2,4_0,4_0,900.0,0,0.0,900,8,24,0.0,0.0,0.0,0,0,80.21549007938727,0.0,80.21549007938727 -3079,1979,1978,3,10,30,300,55,43,0,12717,0,0,0,0,1,3,1,2,1.3,1719.0414245000002,0,0,20173.0,1,3,0,0,2,1,0,0,1,0,0,0,0,1,0,1,15517.692307700003,4,2,4_1,4_1,44572.0,0,44572.0,0,1,12,32.0,85.0,3.3,0,1,3928.356339840696,3928.356339840696,0.0 +3079,1979,1978,3,10,30,300,55,43,0,12717,0,0,0,0,1,3,1,2,1.3,1719.0414245,0,0,20173.0,1,3,0,0,2,1,0,0,1,0,0,0,0,1,0,1,15517.6923077,4,2,4_1,4_1,44572.0,0,44572.0,0,1,12,32.0,85.0,3.3,0,1,3928.356339840696,3928.356339840696,0.0 3080,1988,1987,2,13,40,212,62,50,0,12726,0,0,550,0,2,6,3,5,2.6,1339.36788795,0,0,40296.0,1,2,3,0,4,3,0,1,1,0,0,0,0,0,3,0,15498.4615385,4,2,4_0,4_1,7753.0,0,0.0,7753,12,12,252.0,46.6666666667,3.3,0,1,683.3111976753324,0.0,683.3111976753324 3081,2002,2001,1,11,46,111,35,20,0,12746,0,0,0,0,1,5,2,3,2.0,1290.77496035,3717,0,31747.0,1,2,8,6,2,1,1,0,0,0,1,0,0,0,0,1,15873.5,4,2,4_0,4_0,13000.0,0,13000.0,0,5,11,51.7,40.0,3.3,0,1,1158.6681900355939,1158.6681900355939,0.0 -3082,2005,2004,0,16,42,112,42,42,0,1275,0,0,200,269,1,5,1,2,1.3,3202.65930601,2081,0,21874.0,1,3,7,4,2,1,0,1,0,0,1,0,0,1,1,0,16826.153846200003,4,2,4_1,4_0,15000.0,0,0.0,15000,2,16,36.0,27.5,3.3,0,1,1336.9248346564543,0.0,1336.9248346564543 -3083,2008,2007,5,10,27,120,68,20,0,12753,0,200,0,0,2,6,1,3,1.8,2631.30322168,3744,0,29193.0,1,3,0,1,4,1,0,1,0,1,0,0,0,1,0,1,16218.333333300001,4,2,4_1,4_0,10572.0,0,10572.0,0,1,10,0.0,10.3333333333,3.3,0,1,942.2646234658691,942.2646234658691,0.0 +3082,2005,2004,0,16,42,112,42,42,0,1275,0,0,200,269,1,5,1,2,1.3,3202.65930601,2081,0,21874.0,1,3,7,4,2,1,0,1,0,0,1,0,0,1,1,0,16826.1538462,4,2,4_1,4_0,15000.0,0,0.0,15000,2,16,36.0,27.5,3.3,0,1,1336.9248346564543,0.0,1336.9248346564543 +3083,2008,2007,5,10,27,120,68,20,0,12753,0,200,0,0,2,6,1,3,1.8,2631.30322168,3744,0,29193.0,1,3,0,1,4,1,0,1,0,1,0,0,0,1,0,1,16218.3333333,4,2,4_1,4_0,10572.0,0,10572.0,0,1,10,0.0,10.3333333333,3.3,0,1,942.2646234658691,942.2646234658691,0.0 3084,2015,2014,11,16,54,111,78,71,0,12773,0,0,0,0,0,3,0,2,1.5,5146.44717643,0,0,24810.0,7,2,10,8,3,1,0,0,0,0,0,0,1,0,0,1,16540.0,4,2,4_0,4_0,6000.0,0,6000.0,0,16,17,0.0,0.0,0.0,0,0,534.7699338625819,534.7699338625819,0.0 3085,2030,2029,22,22,83,400,78,70,0,12792,0,0,0,0,0,4,0,2,1.5,2876.31077399,0,0,24955.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,16636.6666667,4,2,4_0,4_1,2500.0,0,0.0,2500,14,20,0.0,0.0,0.0,0,0,220.33767498882122,0.0,220.33767498882122 3086,2040,2039,0,0,64,111,78,50,0,12803,0,0,0,157,0,1,0,2,1.5,3024.70606652,0,0,23109.0,5,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,15406.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3087,2041,2040,0,17,65,111,78,50,0,12804,0,0,0,600,0,3,0,1,1.0,4408.53134025,1040,0,15300.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,1,0,15300.0,4,2,4_0,4_0,3600.0,0,0.0,3600,7,17,0.0,0.0,0.0,0,0,320.86196031754906,0.0,320.86196031754906 -3088,2048,2047,3,3,51,111,47,41,0,12814,0,0,0,0,1,7,2,3,2.0,1565.06808172,0,0,32504.0,1,1,9,7,2,1,0,0,0,0,0,1,0,0,0,0,16252.0,4,2,4_0,4_0,4000.0,0,0.0,4000,3,6,0.0,13.333333333299999,3.3,1,0,356.5132892417212,0.0,356.5132892417212 +3088,2048,2047,3,3,51,111,47,41,0,12814,0,0,0,0,1,7,2,3,2.0,1565.06808172,0,0,32504.0,1,1,9,7,2,1,0,0,0,0,0,1,0,0,0,0,16252.0,4,2,4_0,4_0,4000.0,0,0.0,4000,3,6,0.0,13.3333333333,3.3,1,0,356.5132892417212,0.0,356.5132892417212 3089,2054,2053,3,3,65,111,74,20,0,12820,0,0,0,0,0,3,0,1,1.0,2591.69358671,0,0,14880.0,5,2,9,7,1,1,0,0,0,0,0,1,0,0,0,1,14880.0,4,2,4_0,4_0,14000.0,0,14000.0,0,2,2,0.0,0.0,0.0,0,0,1247.7965123460242,1247.7965123460242,0.0 3090,2057,2056,0,0,66,111,77,70,0,12824,0,0,0,444,0,3,0,1,1.0,1818.78121527,0,0,16679.0,5,3,8,6,1,0,0,0,0,0,1,0,0,0,0,0,16679.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3091,2058,2057,11,16,71,111,78,71,0,12825,0,0,0,0,0,3,0,2,1.5,3498.4680046,0,0,25090.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,16726.6666667,4,2,4_0,4_0,7000.0,0,0.0,7000,17,17,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 @@ -3100,10 +3100,10 @@ 3098,2110,2109,16,16,59,120,21,12,0,12893,0,3000,0,0,1,7,1,3,2.0,2007.84136861,2106,0,33450.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,16725.0,4,2,4_0,4_1,39000.0,0,35000.0,4000,4,14,0.0,0.0,0.0,0,0,3437.267729825611,3084.727449843497,352.54027998211393 3099,2115,2114,2,2,45,112,56,60,1,12900,0,300,0,0,2,4,1,3,2.0,3680.32048375,0,14000,32385.0,1,1,6,0,4,1,1,1,1,0,0,0,0,0,0,1,16192.5,4,2,4_0,4_1,25000.0,0,25000.0,0,4,4,56.8,66.6666666667,0.0,0,1,2203.376749888212,2203.376749888212,0.0 3100,2123,2122,14,16,47,111,43,10,0,12911,0,40,0,0,1,5,2,4,2.3,1276.84929511,1430,0,37460.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,16286.9565217,4,2,4_0,4_0,16000.0,0,10000.0,6000,11,13,0.0,0.0,0.0,0,1,1426.053156966885,891.283223104303,534.7699338625819 -3101,2166,2165,3,9,41,111,52,60,0,12962,0,100,0,0,2,3,2,4,2.1,2135.16745821,0,0,32699.0,1,2,6,5,4,1,0,1,0,0,1,0,0,1,0,1,15570.952381000001,4,2,4_1,4_0,32000.0,0,32000.0,0,7,10,0.0,25.0,3.3,0,1,2852.10631393377,2852.10631393377,0.0 -3102,2185,2184,2,20,40,112,48,43,0,12991,0,80,0,0,1,5,2,4,2.1,2824.95869448,0,0,32569.0,1,2,7,1,4,2,0,0,0,1,0,0,0,0,1,1,15509.047618999999,4,2,4_0,4_0,16000.0,0,10000.0,6000,11,13,0.0,0.0,0.0,0,1,1426.053156966885,891.283223104303,534.7699338625819 -3103,2210,2209,5,5,62,400,68,70,0,13029,0,0,0,0,2,5,0,2,1.5,1367.18845496,6491,0,23120.0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15413.333333300001,4,2,4_0,4_1,12000.0,0,12000.0,0,5,5,0.0,13.0,2.2,0,0,1057.6208399463417,1057.6208399463417,0.0 -3104,2218,2217,7,7,57,111,67,71,0,13039,0,0,0,35,1,4,1,2,1.5,3826.30854181,0,0,23338.0,1,3,8,7,2,1,0,0,0,0,0,1,0,1,0,1,15558.666666699999,4,2,4_1,4_0,20000.0,0,20000.0,0,2,6,0.0,0.0,0.0,0,1,1782.566446208606,1782.566446208606,0.0 +3101,2166,2165,3,9,41,111,52,60,0,12962,0,100,0,0,2,3,2,4,2.1,2135.16745821,0,0,32699.0,1,2,6,5,4,1,0,1,0,0,1,0,0,1,0,1,15570.952381,4,2,4_1,4_0,32000.0,0,32000.0,0,7,10,0.0,25.0,3.3,0,1,2852.10631393377,2852.10631393377,0.0 +3102,2185,2184,2,20,40,112,48,43,0,12991,0,80,0,0,1,5,2,4,2.1,2824.95869448,0,0,32569.0,1,2,7,1,4,2,0,0,0,1,0,0,0,0,1,1,15509.047619,4,2,4_0,4_0,16000.0,0,10000.0,6000,11,13,0.0,0.0,0.0,0,1,1426.053156966885,891.283223104303,534.7699338625819 +3103,2210,2209,5,5,62,400,68,70,0,13029,0,0,0,0,2,5,0,2,1.5,1367.18845496,6491,0,23120.0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15413.3333333,4,2,4_0,4_1,12000.0,0,12000.0,0,5,5,0.0,13.0,2.2,0,0,1057.6208399463417,1057.6208399463417,0.0 +3104,2218,2217,7,7,57,111,67,71,0,13039,0,0,0,35,1,4,1,2,1.5,3826.30854181,0,0,23338.0,1,3,8,7,2,1,0,0,0,0,0,1,0,1,0,1,15558.6666667,4,2,4_1,4_0,20000.0,0,20000.0,0,2,6,0.0,0.0,0.0,0,1,1782.566446208606,1782.566446208606,0.0 3105,2235,2234,1,14,65,111,77,50,2,13059,0,0,0,330,0,5,0,1,1.0,2978.72704673,2340,3400,16770.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,16770.0,4,2,4_0,4_0,11517.0,0,0.0,11517,2,13,0.0,0.0,0.0,0,0,1026.4908880492258,0.0,1026.4908880492258 3106,2246,2245,3,6,65,111,77,71,0,13075,0,0,0,0,0,4,0,1,1.0,4409.07524806,0,0,16420.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,16420.0,4,2,4_0,4_0,5000.0,0,5000.0,0,3,6,0.0,0.0,0.0,0,0,445.6416115521515,445.6416115521515,0.0 3107,2252,2251,7,7,74,300,75,41,0,13085,0,0,0,0,0,7,0,2,1.5,2485.48834342,1560,0,24899.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,16599.3333333,4,2,4_0,4_1,9500.0,0,9500.0,0,3,7,0.0,0.0,0.0,0,0,837.2831649575206,837.2831649575206,0.0 @@ -3115,41 +3115,41 @@ 3113,2287,2286,12,16,36,111,68,71,0,13137,0,0,60,233,1,2,0,1,1.0,2901.88292945,2080,0,15341.0,1,3,4,4,1,1,0,1,0,0,1,0,0,0,1,0,15341.0,4,2,4_0,4_0,5000.0,0,0.0,5000,14,16,51.0,25.0,3.3,0,1,445.6416115521515,0.0,445.6416115521515 3114,2295,2294,3,11,79,111,77,70,0,13155,0,0,0,0,0,3,0,2,1.5,2940.13042014,0,0,25243.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,16828.6666667,4,2,4_0,4_0,7759.0,0,3000.0,4759,8,8,0.0,0.0,0.0,0,0,691.5466528066287,267.38496693129093,424.1616858753378 3115,2305,2304,0,11,38,300,63,50,2,13167,0,732,100,0,3,7,2,4,2.5,1177.4526293,3656,1000,40854.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,1,2,16341.6,4,2,4_0,4_1,30375.0,0,20375.0,10000,2,16,133.0,60.0,3.3,0,1,2677.102751114178,1795.752051158893,881.3506999552849 -3116,2310,2309,7,8,80,111,78,71,0,13172,0,0,0,399,0,4,0,2,1.5,3132.84761435,0,0,22720.0,5,3,7,5,3,1,0,0,0,0,1,0,0,0,1,0,15146.666666699999,4,2,4_0,4_0,2000.0,0,0.0,2000,8,8,0.0,0.0,0.0,0,0,178.2566446208606,0.0,178.2566446208606 +3116,2310,2309,7,8,80,111,78,71,0,13172,0,0,0,399,0,4,0,2,1.5,3132.84761435,0,0,22720.0,5,3,7,5,3,1,0,0,0,0,1,0,0,0,1,0,15146.6666667,4,2,4_0,4_0,2000.0,0,0.0,2000,8,8,0.0,0.0,0.0,0,0,178.2566446208606,0.0,178.2566446208606 3117,2311,2310,0,0,73,111,77,50,0,13174,0,0,0,0,0,3,0,1,1.0,1496.48478178,0,0,16590.0,5,3,4,4,1,0,0,0,0,0,1,0,0,0,0,0,16590.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3118,2340,2339,0,0,70,111,78,71,0,13217,0,0,0,332,0,2,0,1,1.0,3905.99705807,0,0,14918.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,14918.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3119,2342,2341,2,4,63,111,74,20,0,1322,0,99999,0,226,1,3,1,2,1.5,1666.98490115,0,0,24972.0,5,3,7,5,2,2,0,1,0,0,1,0,0,1,0,2,16648.0,4,2,4_1,4_0,33000.0,0,33000.0,0,4,4,171.5,90.0,3.3,0,1,2941.2346362442,2941.2346362442,0.0 -3120,2347,2346,0,0,91,300,71,50,0,13225,0,0,0,0,0,7,0,2,1.5,1448.92539407,0,0,23402.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,15601.333333300001,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3121,2383,2382,6,10,38,111,63,41,0,13278,0,0,0,0,1,4,1,2,1.3,3460.45135531,0,0,19679.0,1,3,8,6,2,1,0,0,0,0,1,0,0,1,1,0,15137.692307700003,4,2,4_1,4_0,2000.0,0,0.0,2000,1,10,61.5,30.0,2.24,0,1,178.2566446208606,0.0,178.2566446208606 +3120,2347,2346,0,0,91,300,71,50,0,13225,0,0,0,0,0,7,0,2,1.5,1448.92539407,0,0,23402.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,15601.3333333,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3121,2383,2382,6,10,38,111,63,41,0,13278,0,0,0,0,1,4,1,2,1.3,3460.45135531,0,0,19679.0,1,3,8,6,2,1,0,0,0,0,1,0,0,1,1,0,15137.6923077,4,2,4_1,4_0,2000.0,0,0.0,2000,1,10,61.5,30.0,2.24,0,1,178.2566446208606,0.0,178.2566446208606 3122,2384,2383,6,8,69,300,78,50,0,13279,0,0,0,0,0,5,0,2,1.5,4719.94268033,0,0,24601.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,0,1,16400.6666667,4,2,4_0,4_0,0.0,0,0.0,0,9,9,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3123,2389,2388,0,0,21,111,53,71,0,13284,0,0,0,679,2,4,0,3,2.0,3849.62690541,0,0,31542.0,1,3,9,7,5,0,0,0,0,0,0,1,0,1,0,0,15771.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,3.33333333333,1.1,0,0,0.0,0.0,0.0 -3124,2424,2423,10,11,56,111,65,71,0,13331,0,150,0,0,1,4,0,2,1.5,3334.92489435,0,0,23002.0,1,1,8,7,3,1,0,1,0,0,0,1,0,0,0,1,15334.666666699999,4,2,4_0,4_0,25000.0,0,25000.0,0,7,9,0.0,0.0,0.0,1,0,2228.2080577607576,2228.2080577607576,0.0 +3124,2424,2423,10,11,56,111,65,71,0,13331,0,150,0,0,1,4,0,2,1.5,3334.92489435,0,0,23002.0,1,1,8,7,3,1,0,1,0,0,0,1,0,0,0,1,15334.6666667,4,2,4_0,4_0,25000.0,0,25000.0,0,7,9,0.0,0.0,0.0,1,0,2228.2080577607576,2228.2080577607576,0.0 3125,2431,2430,0,0,88,221,77,60,0,13340,0,0,0,0,0,4,0,1,1.0,2457.06795485,3250,0,15540.0,5,3,1,2,1,0,0,0,0,1,0,0,0,0,0,0,15540.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3126,2460,2459,6,6,68,112,78,50,0,13380,0,0,0,0,0,6,0,2,1.5,3627.47895815,1934,0,22258.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,1,1,14838.666666699999,4,2,4_0,4_1,12500.0,0,2500.0,10000,4,7,0.0,0.0,0.0,0,0,1101.688374944106,220.33767498882122,881.3506999552849 -3127,2462,2461,1,5,22,111,43,33,2,13382,0,140,0,32,1,1,0,2,1.5,3101.93983972,1560,6200,24184.0,1,3,9,7,3,1,0,1,0,0,0,1,0,1,0,1,16122.666666699999,4,2,4_1,4_0,40000.0,0,40000.0,0,2,5,185.0,40.0,3.31,0,1,3565.132892417212,3565.132892417212,0.0 -3128,2463,2462,2,21,38,112,62,50,0,13383,0,250,0,0,2,6,3,5,2.4,1245.89383556,2808,0,38470.0,1,2,7,0,4,2,0,1,1,0,0,0,0,1,0,2,16029.166666699999,4,2,4_1,4_1,25200.0,0,25200.0,0,2,21,179.2,68.3333333333,3.31,0,1,2221.003763887318,2221.003763887318,0.0 +3126,2460,2459,6,6,68,112,78,50,0,13380,0,0,0,0,0,6,0,2,1.5,3627.47895815,1934,0,22258.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,1,1,14838.6666667,4,2,4_0,4_1,12500.0,0,2500.0,10000,4,7,0.0,0.0,0.0,0,0,1101.688374944106,220.33767498882122,881.3506999552849 +3127,2462,2461,1,5,22,111,43,33,2,13382,0,140,0,32,1,1,0,2,1.5,3101.93983972,1560,6200,24184.0,1,3,9,7,3,1,0,1,0,0,0,1,0,1,0,1,16122.6666667,4,2,4_1,4_0,40000.0,0,40000.0,0,2,5,185.0,40.0,3.31,0,1,3565.132892417212,3565.132892417212,0.0 +3128,2463,2462,2,21,38,112,62,50,0,13383,0,250,0,0,2,6,3,5,2.4,1245.89383556,2808,0,38470.0,1,2,7,0,4,2,0,1,1,0,0,0,0,1,0,2,16029.1666667,4,2,4_1,4_1,25200.0,0,25200.0,0,2,21,179.2,68.3333333333,3.31,0,1,2221.003763887318,2221.003763887318,0.0 3129,2466,2465,0,18,70,111,78,71,0,13387,0,0,0,0,0,4,0,1,1.0,4172.12031989,0,0,14923.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,14923.0,4,2,4_0,4_0,3600.0,0,0.0,3600,7,17,0.0,0.0,0.0,0,0,320.86196031754906,0.0,320.86196031754906 3130,2478,2477,0,0,77,211,77,50,0,13405,0,0,0,195,0,2,0,1,1.0,3030.79279129,0,0,15590.0,5,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,15590.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3131,2485,2484,0,0,84,111,74,10,0,13416,0,0,0,500,0,1,0,1,1.0,3745.29397422,0,0,15660.0,7,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15660.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3132,2486,2485,2,2,60,112,78,50,0,13419,0,0,0,0,1,5,0,2,1.5,1893.69465587,0,0,23455.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,0,1,15636.666666699999,4,2,4_0,4_1,18000.0,0,18000.0,0,2,2,0.0,0.0,0.0,0,0,1586.431259919513,1586.431259919513,0.0 -3133,2502,2501,9,9,73,111,78,70,0,13451,0,0,0,0,0,4,0,2,1.5,1673.89648939,3120,0,24382.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,16254.666666699999,4,2,4_0,4_0,6000.0,0,0.0,6000,6,10,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 +3132,2486,2485,2,2,60,112,78,50,0,13419,0,0,0,0,1,5,0,2,1.5,1893.69465587,0,0,23455.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,0,1,15636.6666667,4,2,4_0,4_1,18000.0,0,18000.0,0,2,2,0.0,0.0,0.0,0,0,1586.431259919513,1586.431259919513,0.0 +3133,2502,2501,9,9,73,111,78,70,0,13451,0,0,0,0,0,4,0,2,1.5,1673.89648939,3120,0,24382.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,16254.6666667,4,2,4_0,4_0,6000.0,0,0.0,6000,6,10,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 3134,2504,2503,9,11,59,112,78,71,0,13454,0,0,0,0,0,4,0,2,1.5,3666.33799694,0,0,24150.0,5,3,5,0,5,2,0,0,1,0,0,0,0,0,2,0,16100.0,4,2,4_0,4_1,24000.0,0,0.0,24000,5,10,0.0,0.0,0.0,0,0,2115.2416798926834,0.0,2115.2416798926834 -3135,2506,2505,2,3,38,300,12,43,0,13456,0,0,0,0,2,6,2,4,2.1,2839.80964304,0,0,35101.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,16714.761904799998,4,2,4_0,4_1,21000.0,0,21000.0,0,2,3,170.0,24.0,3.3,0,1,1850.8364699060983,1850.8364699060983,0.0 -3136,2513,2512,2,7,29,111,62,71,0,13468,0,350,0,460,1,3,2,4,2.1,4691.58537374,3900,0,31602.0,1,3,7,5,4,2,0,0,0,0,1,0,0,0,0,2,15048.571428600002,4,2,4_0,4_0,15000.0,0,15000.0,0,3,12,0.0,5.33333333333,3.3,0,1,1336.9248346564543,1336.9248346564543,0.0 +3135,2506,2505,2,3,38,300,12,43,0,13456,0,0,0,0,2,6,2,4,2.1,2839.80964304,0,0,35101.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,16714.7619048,4,2,4_0,4_1,21000.0,0,21000.0,0,2,3,170.0,24.0,3.3,0,1,1850.8364699060983,1850.8364699060983,0.0 +3136,2513,2512,2,7,29,111,62,71,0,13468,0,350,0,460,1,3,2,4,2.1,4691.58537374,3900,0,31602.0,1,3,7,5,4,2,0,0,0,0,1,0,0,0,0,2,15048.5714286,4,2,4_0,4_0,15000.0,0,15000.0,0,3,12,0.0,5.33333333333,3.3,0,1,1336.9248346564543,1336.9248346564543,0.0 3137,2515,2514,1,2,24,111,37,31,2,13471,0,450,0,429,1,2,0,1,1.0,3329.44820301,4420,7500,14935.0,1,3,9,7,1,1,0,1,0,0,0,1,0,1,0,1,14935.0,4,2,4_1,4_0,9891.0,0,9891.0,0,1,2,0.0,10.0,3.3,0,1,881.568235972466,881.568235972466,0.0 3138,2526,2525,0,11,21,111,55,42,2,13488,0,0,240,236,1,1,0,1,1.0,3282.99015593,2496,2000,15560.0,4,3,9,7,1,1,0,1,0,0,0,1,0,1,1,0,15560.0,4,2,4_1,4_0,13892.0,0,0.0,13892,2,12,0.0,20.0,0.0,0,1,1238.1706535364979,0.0,1238.1706535364979 -3139,2536,2535,3,4,74,300,77,70,0,13500,0,0,0,0,0,7,0,2,1.5,2448.89729119,1977,0,24007.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,16004.666666699999,4,2,4_0,4_1,18000.0,0,18000.0,0,2,3,0.0,0.0,0.0,0,0,1586.431259919513,1586.431259919513,0.0 +3139,2536,2535,3,4,74,300,77,70,0,13500,0,0,0,0,0,7,0,2,1.5,2448.89729119,1977,0,24007.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,16004.6666667,4,2,4_0,4_1,18000.0,0,18000.0,0,2,3,0.0,0.0,0.0,0,0,1586.431259919513,1586.431259919513,0.0 3140,2539,2538,9,13,53,111,62,50,0,13509,0,200,0,540,2,4,1,3,2.0,1762.46440738,2413,0,32021.0,4,3,8,6,4,2,0,1,0,0,1,0,0,0,0,2,16010.5,4,2,4_0,4_0,20000.0,0,20000.0,0,6,12,103.6,31.3333333333,3.3,0,1,1782.566446208606,1782.566446208606,0.0 3141,2549,2548,0,0,53,111,54,50,0,13519,0,500,0,0,1,3,0,1,1.0,1334.31405371,2236,0,16864.0,1,1,6,5,1,1,0,1,0,0,1,0,0,0,0,1,16864.0,4,2,4_0,4_0,15000.0,0,15000.0,0,1,0,0.0,0.0,0.0,1,0,1336.9248346564543,1336.9248346564543,0.0 3142,2552,2551,2,2,62,111,77,50,0,13524,0,0,0,273,0,2,0,1,1.0,2382.49927924,0,0,16244.0,5,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,16244.0,4,2,4_0,4_0,800.0,0,0.0,800,1,1,0.0,0.0,0.0,0,0,71.30265784834424,0.0,71.30265784834424 3143,2570,2569,3,9,34,111,63,50,0,13546,0,0,90,380,2,4,1,3,1.8,2593.11453917,10182,0,29987.0,4,3,7,5,4,2,0,1,0,0,1,0,0,0,2,0,16659.4444444,4,2,4_0,4_0,3500.0,0,0.0,3500,7,7,96.9,33.3333333333,3.3,0,1,311.94912808650605,0.0,311.94912808650605 3144,2573,2572,0,0,48,111,52,50,0,1355,0,0,0,281,1,2,0,1,1.0,2608.52941773,0,0,16675.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16675.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,51.5,150.0,5.56,0,0,0.0,0.0,0.0 3145,2584,2583,0,0,80,111,78,71,0,13565,0,0,0,282,0,4,0,2,1.5,6747.28057295,0,0,24990.0,5,3,6,5,3,0,0,0,0,0,1,0,0,0,0,0,16660.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3146,2599,2598,3,9,31,112,47,31,0,13587,0,102,0,0,2,5,3,5,2.4,1861.80469858,0,0,36518.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,15215.833333300001,4,2,4_0,4_1,26141.0,0,26141.0,0,2,8,32.0,4.0,0.0,0,0,2303.93886475311,2303.93886475311,0.0 -3147,2613,2612,8,10,55,112,75,50,0,13602,0,0,0,0,0,4,0,1,1.0,3107.1886799000004,2062,0,15033.0,4,2,7,0,1,1,0,0,1,0,0,0,0,0,1,0,15033.0,4,2,4_0,4_1,6000.0,0,0.0,6000,5,12,0.0,0.0,0.0,0,0,528.8104199731708,0.0,528.8104199731708 +3146,2599,2598,3,9,31,112,47,31,0,13587,0,102,0,0,2,5,3,5,2.4,1861.80469858,0,0,36518.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,15215.8333333,4,2,4_0,4_1,26141.0,0,26141.0,0,2,8,32.0,4.0,0.0,0,0,2303.93886475311,2303.93886475311,0.0 +3147,2613,2612,8,10,55,112,75,50,0,13602,0,0,0,0,0,4,0,1,1.0,3107.1886799,2062,0,15033.0,4,2,7,0,1,1,0,0,1,0,0,0,0,0,1,0,15033.0,4,2,4_0,4_1,6000.0,0,0.0,6000,5,12,0.0,0.0,0.0,0,0,528.8104199731708,0.0,528.8104199731708 3148,2615,2614,0,0,59,400,78,70,0,13604,0,0,0,0,0,3,0,1,1.0,2550.52368907,0,0,16180.0,7,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,16180.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3149,2627,2626,5,10,25,112,22,60,0,13618,0,400,0,0,1,3,0,1,1.0,3163.11927384,1040,0,15081.0,1,4,8,1,1,1,0,1,0,1,0,0,0,0,0,1,15081.0,4,2,4_0,4_0,14800.0,0,14800.0,0,6,10,85.5,40.0,3.3,0,1,1319.0991701943685,1319.0991701943685,0.0 -3150,2628,2627,5,5,44,111,33,10,0,13619,0,0,0,0,1,5,3,5,2.6,3375.03651369,0,0,41944.0,1,4,10,8,4,1,0,0,0,0,0,0,1,0,1,0,16132.307692299997,4,2,4_0,4_0,16666.0,0,0.0,16666,3,6,0.0,0.0,0.0,0,0,1485.4126196256314,0.0,1485.4126196256314 +3150,2628,2627,5,5,44,111,33,10,0,13619,0,0,0,0,1,5,3,5,2.6,3375.03651369,0,0,41944.0,1,4,10,8,4,1,0,0,0,0,0,0,1,0,1,0,16132.3076923,4,2,4_0,4_0,16666.0,0,0.0,16666,3,6,0.0,0.0,0.0,0,0,1485.4126196256314,0.0,1485.4126196256314 3151,2634,2633,14,14,74,112,77,70,0,13626,0,0,0,0,0,4,0,1,1.0,1256.95633944,1040,0,15933.0,5,1,8,1,1,1,0,0,0,1,0,0,0,0,1,0,15933.0,4,2,4_0,4_0,5000.0,0,0.0,5000,12,12,0.0,0.0,0.0,0,0,445.6416115521515,0.0,445.6416115521515 3152,2635,2634,5,14,49,300,64,71,0,13627,0,200,240,0,2,4,1,3,2.0,2086.0322366,3796,0,32376.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,16188.0,4,2,4_0,4_1,23645.0,0,16353.0,7292,12,12,0.0,0.0,0.0,0,1,2083.9537300442707,1441.2727996368774,642.6809304073937 3153,2637,2636,0,0,65,111,75,50,0,13630,0,0,0,216,0,2,0,1,1.0,1990.29750591,0,0,16745.0,5,3,7,6,1,0,0,0,0,0,1,0,0,0,0,0,16745.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -3160,32 +3160,32 @@ 3158,2731,2730,0,0,55,111,55,60,0,13754,0,0,0,200,1,4,0,1,1.0,2402.58290621,0,0,15140.0,1,3,6,4,1,0,0,0,0,0,1,0,0,0,0,0,15140.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 3159,2739,2738,2,2,61,112,77,70,0,13766,0,0,0,0,0,4,0,1,1.0,2206.08473634,0,0,15675.0,5,1,7,0,1,1,0,0,1,0,0,0,0,0,0,1,15675.0,4,2,4_0,4_1,12000.0,0,12000.0,0,3,4,0.0,0.0,0.0,0,0,1057.6208399463417,1057.6208399463417,0.0 3160,2748,2747,8,9,52,112,62,71,0,13776,0,170,0,0,1,3,0,1,1.0,4502.04503273,158,0,16068.0,1,3,5,0,1,2,0,1,1,0,0,0,0,0,0,2,16068.0,4,2,4_0,4_1,8559.0,0,8559.0,0,1,5,0.0,40.0,3.3,0,1,754.3480640917284,754.3480640917284,0.0 -3161,2765,2764,2,4,44,111,62,71,0,13803,0,0,0,0,3,6,3,5,2.8,1027.54073484,0,0,45121.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,16114.642857100001,4,2,4_0,4_0,29119.0,0,16353.0,12766,4,5,0.0,18.0,5.5,0,1,2595.32761735742,1457.5154547424668,1137.8121626149532 +3161,2765,2764,2,4,44,111,62,71,0,13803,0,0,0,0,3,6,3,5,2.8,1027.54073484,0,0,45121.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,16114.6428571,4,2,4_0,4_0,29119.0,0,16353.0,12766,4,5,0.0,18.0,5.5,0,1,2595.32761735742,1457.5154547424668,1137.8121626149532 3162,2795,2794,2,9,29,111,42,20,0,13836,0,100,0,0,1,2,1,2,1.3,3396.50026689,0,0,21794.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,16764.6153846,4,2,4_1,4_0,27000.0,0,27000.0,0,4,9,0.0,2.0,0.0,0,0,2406.4647023816183,2406.4647023816183,0.0 -3163,2796,2795,3,8,40,111,48,44,0,13838,0,200,0,0,2,6,3,5,2.8,967.450653848,0,0,44113.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,15754.642857100001,4,2,4_0,4_0,1500.0,0,1500.0,0,7,7,0.0,18.0,3.31,0,1,133.69248346564547,133.69248346564547,0.0 -3164,2798,2797,0,13,28,112,52,71,0,13840,0,0,2200,81,2,5,2,4,2.1,2318.29156384,2287,0,33594.0,1,3,7,0,4,3,0,0,1,0,0,0,0,1,3,0,15997.142857100001,4,2,4_1,4_1,7753.0,0,0.0,7753,12,12,252.0,46.6666666667,3.3,0,1,683.3111976753324,0.0,683.3111976753324 +3163,2796,2795,3,8,40,111,48,44,0,13838,0,200,0,0,2,6,3,5,2.8,967.450653848,0,0,44113.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,15754.6428571,4,2,4_0,4_0,1500.0,0,1500.0,0,7,7,0.0,18.0,3.31,0,1,133.69248346564547,133.69248346564547,0.0 +3164,2798,2797,0,13,28,112,52,71,0,13840,0,0,2200,81,2,5,2,4,2.1,2318.29156384,2287,0,33594.0,1,3,7,0,4,3,0,0,1,0,0,0,0,1,3,0,15997.1428571,4,2,4_1,4_1,7753.0,0,0.0,7753,12,12,252.0,46.6666666667,3.3,0,1,683.3111976753324,0.0,683.3111976753324 3165,2813,2812,18,22,82,111,78,70,0,13862,0,0,0,0,0,3,0,2,1.5,3435.90633355,2288,0,25250.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,16833.3333333,4,2,4_0,4_0,11300.0,0,11300.0,0,15,21,0.0,0.0,0.0,0,0,1007.1500421078624,1007.1500421078624,0.0 -3166,2836,2835,6,6,50,111,65,50,0,13893,0,100,0,0,1,4,0,1,1.0,1645.1175732000002,876,0,16436.0,1,1,8,6,1,1,0,1,0,0,1,0,0,0,0,1,16436.0,4,2,4_0,4_0,3000.0,0,3000.0,0,5,5,0.0,4.0,1.1,0,0,267.38496693129093,267.38496693129093,0.0 -3167,2840,2839,5,5,38,111,21,50,0,13897,0,0,0,0,1,5,3,5,2.6,2318.26333097,0,0,43774.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,1,0,16836.153846200003,4,2,4_0,4_0,9672.0,0,9672.0,0,2,4,0.0,0.0,0.0,0,0,862.0491333864818,862.0491333864818,0.0 -3168,2841,2840,0,0,89,400,71,70,0,13898,0,0,0,0,0,5,0,1,1.0,2753.3399965999997,0,0,16380.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,16380.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3169,2843,2842,7,10,65,111,77,71,0,13900,0,0,0,0,0,4,1,2,1.5,2945.89192259,0,0,23330.0,5,1,6,5,2,1,0,0,0,0,1,0,0,0,1,0,15553.333333300001,4,2,4_0,4_0,12000.0,0,0.0,12000,8,8,0.0,0.0,0.0,0,0,1069.5398677251637,0.0,1069.5398677251637 -3170,2865,2864,1,1,80,300,71,71,1,13926,0,0,0,0,0,4,0,2,1.5,2451.16700482,0,10998,23729.0,5,4,0,0,3,1,0,0,1,0,0,0,0,0,1,0,15819.333333300001,4,2,4_0,4_1,5974.0,0,0.0,5974,1,1,0.0,0.0,0.0,0,0,526.5189081532872,0.0,526.5189081532872 -3171,2869,2868,0,0,74,111,78,71,0,1393,0,0,0,333,0,4,0,2,1.5,5592.81846443,0,0,23047.0,5,3,7,5,3,0,0,0,0,0,1,0,0,0,0,0,15364.666666699999,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3166,2836,2835,6,6,50,111,65,50,0,13893,0,100,0,0,1,4,0,1,1.0,1645.1175732,876,0,16436.0,1,1,8,6,1,1,0,1,0,0,1,0,0,0,0,1,16436.0,4,2,4_0,4_0,3000.0,0,3000.0,0,5,5,0.0,4.0,1.1,0,0,267.38496693129093,267.38496693129093,0.0 +3167,2840,2839,5,5,38,111,21,50,0,13897,0,0,0,0,1,5,3,5,2.6,2318.26333097,0,0,43774.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,1,0,16836.1538462,4,2,4_0,4_0,9672.0,0,9672.0,0,2,4,0.0,0.0,0.0,0,0,862.0491333864818,862.0491333864818,0.0 +3168,2841,2840,0,0,89,400,71,70,0,13898,0,0,0,0,0,5,0,1,1.0,2753.3399966,0,0,16380.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,16380.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3169,2843,2842,7,10,65,111,77,71,0,13900,0,0,0,0,0,4,1,2,1.5,2945.89192259,0,0,23330.0,5,1,6,5,2,1,0,0,0,0,1,0,0,0,1,0,15553.3333333,4,2,4_0,4_0,12000.0,0,0.0,12000,8,8,0.0,0.0,0.0,0,0,1069.5398677251637,0.0,1069.5398677251637 +3170,2865,2864,1,1,80,300,71,71,1,13926,0,0,0,0,0,4,0,2,1.5,2451.16700482,0,10998,23729.0,5,4,0,0,3,1,0,0,1,0,0,0,0,0,1,0,15819.3333333,4,2,4_0,4_1,5974.0,0,0.0,5974,1,1,0.0,0.0,0.0,0,0,526.5189081532872,0.0,526.5189081532872 +3171,2869,2868,0,0,74,111,78,71,0,1393,0,0,0,333,0,4,0,2,1.5,5592.81846443,0,0,23047.0,5,3,7,5,3,0,0,0,0,0,1,0,0,0,0,0,15364.6666667,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3172,2896,2895,5,6,41,111,48,43,0,13967,0,0,0,0,1,6,2,4,2.3,4842.94349698,0,0,37832.0,1,2,7,5,4,1,0,0,0,0,1,0,0,0,0,1,16448.6956522,4,2,4_0,4_0,25000.0,0,25000.0,0,5,7,96.5,70.0,3.3,0,1,2228.2080577607576,2228.2080577607576,0.0 3173,2897,2896,3,8,27,111,63,31,0,13968,0,0,0,364,1,2,0,2,1.5,3766.37326363,0,0,23604.0,1,3,9,7,3,1,0,0,0,0,0,1,0,1,1,0,15736.0,4,2,4_1,4_0,3913.0,0,0.0,3913,1,8,80.1,30.0,3.3,0,1,348.75912520071375,0.0,348.75912520071375 3174,2898,2897,3,9,26,112,46,33,0,13969,0,630,0,415,2,4,1,3,1.8,2287.74412269,4680,0,28998.0,1,3,7,0,4,2,0,1,1,0,0,0,0,1,0,2,16110.0,4,2,4_1,4_1,20000.0,0,20000.0,0,5,11,26.5,6.0,3.3,0,1,1762.7013999105698,1762.7013999105698,0.0 3175,2906,2905,3,28,26,111,63,50,0,13977,0,0,0,335,1,1,0,1,1.0,3082.82675819,0,0,15813.0,1,3,8,7,1,1,0,0,0,0,0,1,0,0,0,1,15813.0,4,2,4_0,4_0,20000.0,0,20000.0,0,7,18,0.0,25.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 3176,2909,2908,0,0,79,111,77,70,0,13980,0,0,0,429,0,3,0,1,1.0,3458.78655428,0,0,15019.0,5,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,15019.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3177,2910,2909,8,9,72,111,78,71,0,13981,0,0,0,0,0,5,0,2,1.5,2429.50212065,2600,0,24410.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,16273.333333300001,4,2,4_0,4_0,20000.0,0,20000.0,0,8,9,0.0,0.0,0.0,0,0,1782.566446208606,1782.566446208606,0.0 +3177,2910,2909,8,9,72,111,78,71,0,13981,0,0,0,0,0,5,0,2,1.5,2429.50212065,2600,0,24410.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,16273.3333333,4,2,4_0,4_0,20000.0,0,20000.0,0,8,9,0.0,0.0,0.0,0,0,1782.566446208606,1782.566446208606,0.0 3178,2916,2915,0,0,75,112,77,71,0,13989,0,0,0,0,0,3,0,1,1.0,4438.83999142,0,0,14990.0,5,1,9,2,1,0,0,0,0,1,0,0,0,0,0,0,14990.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3179,2924,2923,21,22,75,111,77,50,0,1400,0,0,0,0,0,3,0,2,1.5,2302.35394765,0,0,23301.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,15534.0,4,2,4_0,4_0,11300.0,0,11300.0,0,15,21,0.0,0.0,0.0,0,0,1007.1500421078624,1007.1500421078624,0.0 3180,2941,2940,9,12,63,300,78,70,0,1403,0,0,0,0,0,4,0,2,1.5,2703.94228688,1560,0,24576.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,16384.0,4,2,4_0,4_1,2000.0,0,0.0,2000,11,12,0.0,0.0,0.0,0,0,176.27013999105696,0.0,176.27013999105696 3181,2945,2944,0,0,85,111,77,70,0,14036,0,0,0,0,0,4,0,1,1.0,2236.470995,0,0,16640.0,5,1,5,4,1,0,0,0,0,0,1,0,0,0,0,0,16640.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3182,2956,2955,2,2,40,111,22,31,0,14049,0,199998,0,0,2,3,2,4,2.3,3342.42845455,0,0,37640.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,16365.217391299999,4,2,4_0,4_0,18000.0,0,18000.0,0,2,5,286.2,42.5,3.3,1,1,1604.3098015877456,1604.3098015877456,0.0 -3183,2963,2962,9,12,40,111,52,50,0,14056,0,120,0,0,1,3,1,2,1.5,3566.79719077,1560,0,23491.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,0,1,15660.666666699999,4,2,4_0,4_0,10000.0,0,10000.0,0,10,11,28.0,25.0,3.3,0,1,891.283223104303,891.283223104303,0.0 +3182,2956,2955,2,2,40,111,22,31,0,14049,0,199998,0,0,2,3,2,4,2.3,3342.42845455,0,0,37640.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,16365.2173913,4,2,4_0,4_0,18000.0,0,18000.0,0,2,5,286.2,42.5,3.3,1,1,1604.3098015877456,1604.3098015877456,0.0 +3183,2963,2962,9,12,40,111,52,50,0,14056,0,120,0,0,1,3,1,2,1.5,3566.79719077,1560,0,23491.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,0,1,15660.6666667,4,2,4_0,4_0,10000.0,0,10000.0,0,10,11,28.0,25.0,3.3,0,1,891.283223104303,891.283223104303,0.0 3184,2985,2984,9,10,62,120,78,70,0,14080,0,0,0,0,0,4,0,2,1.5,1654.41260428,832,0,25230.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,16820.0,4,2,4_0,4_0,7500.0,0,0.0,7500,8,11,0.0,0.0,0.0,0,0,668.4624173282272,0.0,668.4624173282272 3185,2986,2985,2,4,74,300,78,50,0,14081,0,0,0,0,0,6,0,1,1.0,1850.97400858,0,0,15475.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,15475.0,4,2,4_0,4_1,9000.0,0,9000.0,0,5,5,0.0,0.0,0.0,0,0,793.2156299597565,793.2156299597565,0.0 -3186,2988,2987,4,7,43,111,38,12,0,14086,0,0,0,0,1,4,3,5,2.8,2742.15336332,1560,0,44521.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,15900.357142899999,4,2,4_0,4_0,9672.0,0,9672.0,0,2,4,0.0,0.0,0.0,0,0,862.0491333864818,862.0491333864818,0.0 +3186,2988,2987,4,7,43,111,38,12,0,14086,0,0,0,0,1,4,3,5,2.8,2742.15336332,1560,0,44521.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,15900.3571429,4,2,4_0,4_0,9672.0,0,9672.0,0,2,4,0.0,0.0,0.0,0,0,862.0491333864818,862.0491333864818,0.0 3187,3023,3022,2,14,53,111,48,50,0,1413,0,400,100,0,2,4,1,2,1.5,5516.12438213,1302,0,23703.0,1,3,7,5,2,2,0,1,0,0,1,0,0,1,1,1,15802.0,4,2,4_1,4_0,14867.0,0,8000.0,6867,12,12,25.0,30.0,3.3,0,1,1325.0707677891673,713.0265784834424,612.0441893057248 3188,3040,3039,13,13,45,111,38,12,0,14150,0,100,0,0,1,5,3,5,2.6,998.9133945,0,0,40380.0,1,1,7,6,4,3,0,1,0,0,1,0,0,0,0,3,15530.7692308,4,2,4_0,4_0,53625.0,0,53625.0,0,2,11,318.4,38.0,3.3,0,1,4779.506283896824,4779.506283896824,0.0 3189,3043,3042,4,10,40,111,56,50,0,14153,0,0,150,0,1,1,0,1,1.0,2681.91595397,2913,0,15662.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,1,0,15662.0,4,2,4_0,4_0,10000.0,0,0.0,10000,9,11,0.0,30.0,3.3,0,0,891.283223104303,0.0,891.283223104303 @@ -3195,10 +3195,10 @@ 3193,3070,3069,1,11,34,111,64,60,0,14190,0,200,0,486,1,2,1,3,1.8,6140.25283041,2059,0,27640.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,15355.5555556,4,2,4_0,4_0,12000.0,0,12000.0,0,7,7,0.0,0.0,0.0,0,0,1069.5398677251637,1069.5398677251637,0.0 3194,3075,3074,0,0,37,111,54,42,0,14197,0,0,0,540,1,2,0,1,1.0,3029.42118593,0,0,16600.0,4,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16600.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,120.0,5.56,0,0,0.0,0.0,0.0 3195,3123,3122,3,4,75,111,78,50,0,14260,0,0,0,335,0,4,0,2,1.5,1813.303416,0,0,23370.0,5,3,7,5,3,1,0,0,0,0,1,0,0,0,0,1,15580.0,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 -3196,3142,3141,12,12,73,112,75,60,0,14285,0,0,0,0,0,4,0,2,1.5,1609.28865181,3448,0,22462.0,5,1,7,1,3,1,0,0,0,1,0,0,0,0,1,0,14974.666666699999,4,2,4_0,4_0,600.0,0,0.0,600,10,11,0.0,0.0,0.0,0,0,53.47699338625818,0.0,53.47699338625818 -3197,3150,3149,12,12,81,111,86,71,0,14295,0,0,0,0,1,6,0,2,1.5,6076.68885506,1560,0,22330.0,5,4,8,7,5,1,0,0,0,0,0,1,0,0,0,1,14886.666666699999,4,2,4_0,4_0,6444.0,0,6444.0,0,10,11,0.0,0.0,0.0,0,0,574.3429089684129,574.3429089684129,0.0 +3196,3142,3141,12,12,73,112,75,60,0,14285,0,0,0,0,0,4,0,2,1.5,1609.28865181,3448,0,22462.0,5,1,7,1,3,1,0,0,0,1,0,0,0,0,1,0,14974.6666667,4,2,4_0,4_0,600.0,0,0.0,600,10,11,0.0,0.0,0.0,0,0,53.47699338625818,0.0,53.47699338625818 +3197,3150,3149,12,12,81,111,86,71,0,14295,0,0,0,0,1,6,0,2,1.5,6076.68885506,1560,0,22330.0,5,4,8,7,5,1,0,0,0,0,0,1,0,0,0,1,14886.6666667,4,2,4_0,4_0,6444.0,0,6444.0,0,10,11,0.0,0.0,0.0,0,0,574.3429089684129,574.3429089684129,0.0 3198,3151,3150,5,5,72,111,75,50,0,14299,0,0,0,0,0,3,0,1,1.0,2582.65097615,0,0,16723.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,16723.0,4,2,4_0,4_0,9500.0,0,0.0,9500,6,7,0.0,0.0,0.0,0,0,846.7190619490879,0.0,846.7190619490879 -3199,3158,3157,0,0,66,400,74,42,0,14309,0,0,0,0,0,6,0,2,1.5,2122.58679566,0,0,22790.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,15193.333333300001,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3199,3158,3157,0,0,66,400,74,42,0,14309,0,0,0,0,0,6,0,2,1.5,2122.58679566,0,0,22790.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,15193.3333333,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3200,3169,3168,0,0,78,111,77,71,0,14320,0,0,0,313,0,3,0,1,1.0,4413.2616774,0,0,16186.0,5,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,16186.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3201,3170,3169,13,13,81,111,77,70,0,14321,0,0,0,0,0,3,0,2,1.5,3446.78609409,1560,0,25240.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,16826.6666667,4,2,4_0,4_0,1500.0,0,0.0,1500,7,14,0.0,0.0,0.0,0,0,133.69248346564547,0.0,133.69248346564547 3202,3187,3186,0,0,71,111,78,60,0,14344,0,0,0,194,0,4,0,1,1.0,2778.88551215,0,0,15585.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,15585.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -3209,81 +3209,81 @@ 3207,3251,3250,3,8,42,112,46,50,0,14442,0,1050,0,0,2,5,2,4,2.5,3654.56401798,2392,0,40359.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,16143.6,4,2,4_0,4_0,31920.0,0,31920.0,0,1,8,227.2,26.6666666667,3.3,0,1,2844.976048148935,2844.976048148935,0.0 3208,3252,3251,0,0,27,111,35,30,0,14443,0,0,0,238,1,1,0,1,1.0,3098.93283407,0,0,15757.0,1,3,7,6,1,0,0,0,0,0,1,0,0,1,0,0,15757.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,100.0,5.55,0,0,0.0,0.0,0.0 3209,3256,3255,11,11,67,111,77,60,0,14448,0,0,0,0,0,5,0,1,1.0,1844.90863383,0,0,16667.0,5,1,6,5,1,1,0,0,0,0,1,0,0,0,1,0,16667.0,4,2,4_0,4_0,5000.0,0,0.0,5000,9,11,0.0,0.0,0.0,0,0,445.6416115521515,0.0,445.6416115521515 -3210,3257,3256,0,6,61,211,78,70,2,14450,0,0,0,0,0,4,0,2,1.5,1546.30243364,1040,8990,24374.0,5,3,3,3,3,1,0,0,0,1,0,0,0,0,0,1,16249.333333300001,4,2,4_0,4_0,10000.0,0,10000.0,0,6,6,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 +3210,3257,3256,0,6,61,211,78,70,2,14450,0,0,0,0,0,4,0,2,1.5,1546.30243364,1040,8990,24374.0,5,3,3,3,3,1,0,0,0,1,0,0,0,0,0,1,16249.3333333,4,2,4_0,4_0,10000.0,0,10000.0,0,6,6,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3211,3260,3259,1,4,43,112,67,41,2,14455,0,280,0,0,1,4,2,3,1.6,2129.75240374,0,11300,25575.0,1,1,8,0,2,1,0,1,1,0,0,0,0,0,0,1,15984.375,4,2,4_0,4_1,22226.0,0,22226.0,0,2,5,176.5,60.0,3.3,0,1,1958.8900657206161,1958.8900657206161,0.0 3212,3261,3260,3,3,80,400,72,50,0,14457,0,0,0,0,0,4,0,2,1.5,1780.14963525,0,0,24850.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,0,1,16566.6666667,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3213,3268,3267,14,17,76,112,78,71,0,14467,0,0,0,0,0,4,0,1,1.0,2864.79617617,0,0,16310.0,5,1,9,1,1,1,0,0,0,1,0,0,0,0,0,1,16310.0,4,2,4_0,4_0,6281.0,0,6281.0,0,1,16,0.0,0.0,0.0,0,0,559.8149924318127,559.8149924318127,0.0 3214,3271,3270,0,0,71,111,77,50,0,14470,0,0,0,0,0,4,0,1,1.0,3124.71159474,0,0,15773.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15773.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3215,3280,3279,9,11,77,111,56,71,0,14485,0,0,0,0,1,5,0,2,1.5,1491.7748264,0,0,25067.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,2,0,16711.3333333,4,2,4_0,4_0,14400.0,0,0.0,14400,5,12,0.0,0.0,0.0,0,0,1283.4478412701962,0.0,1283.4478412701962 3216,3293,3292,9,9,72,111,77,43,0,14502,0,0,0,0,0,3,0,2,1.5,2766.29555786,0,0,22731.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,15154.0,4,2,4_0,4_0,20000.0,0,20000.0,0,8,9,0.0,0.0,0.0,0,0,1782.566446208606,1782.566446208606,0.0 -3217,3294,3293,11,12,43,111,63,50,0,14503,0,0,0,0,2,3,2,4,2.1,3280.8652096,0,0,35020.0,1,2,10,8,4,1,0,0,0,0,0,0,1,1,1,0,16676.190476199998,4,2,4_1,4_0,7500.0,0,0.0,7500,6,8,0.0,3.33333333333,0.0,0,0,668.4624173282272,0.0,668.4624173282272 +3217,3294,3293,11,12,43,111,63,50,0,14503,0,0,0,0,2,3,2,4,2.1,3280.8652096,0,0,35020.0,1,2,10,8,4,1,0,0,0,0,0,0,1,1,1,0,16676.1904762,4,2,4_1,4_0,7500.0,0,0.0,7500,6,8,0.0,3.33333333333,0.0,0,0,668.4624173282272,0.0,668.4624173282272 3218,3295,3294,0,12,37,211,52,71,0,14504,0,0,90,287,1,3,0,1,1.0,2969.88640447,0,0,15222.0,1,3,3,3,1,1,0,1,0,1,0,0,0,0,1,0,15222.0,4,2,4_0,4_0,7000.0,0,0.0,7000,10,12,0.0,14.0,3.3,0,1,623.8982561730121,0.0,623.8982561730121 -3219,3297,3296,3,31,70,400,77,70,0,14506,0,0,0,0,1,4,0,2,1.5,1929.57687682,0,0,22960.0,5,1,0,0,3,3,0,0,1,0,0,0,0,0,2,1,15306.666666699999,4,2,4_0,4_1,23400.0,0,14800.0,8600,14,23,0.0,0.0,0.0,0,1,2062.3606378953664,1304.3990359338218,757.961601961545 +3219,3297,3296,3,31,70,400,77,70,0,14506,0,0,0,0,1,4,0,2,1.5,1929.57687682,0,0,22960.0,5,1,0,0,3,3,0,0,1,0,0,0,0,0,2,1,15306.6666667,4,2,4_0,4_1,23400.0,0,14800.0,8600,14,23,0.0,0.0,0.0,0,1,2062.3606378953664,1304.3990359338218,757.961601961545 3220,3335,3334,0,0,88,111,72,70,0,14560,0,0,0,0,0,5,0,1,1.0,2998.22366108,0,0,15420.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15420.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3221,3341,3340,11,22,49,400,63,71,0,14567,0,99999,0,0,2,4,1,3,1.8,2095.54205456,1300,0,29374.0,1,3,0,0,4,3,0,0,1,0,0,0,0,1,1,2,16318.888888899999,4,2,4_1,4_1,7000.0,0,7000.0,0,8,22,0.0,0.0,0.0,0,1,616.9454899686995,616.9454899686995,0.0 -3222,3378,3377,10,18,34,400,67,31,0,14615,0,0,220,0,2,4,2,4,2.1,1921.75824636,0,0,31329.0,1,2,0,0,4,2,0,1,1,0,0,0,0,1,2,0,14918.571428600002,4,2,4_1,4_1,10000.0,0,0.0,10000,5,18,38.0,6.5,3.3,0,1,881.3506999552849,0.0,881.3506999552849 +3221,3341,3340,11,22,49,400,63,71,0,14567,0,99999,0,0,2,4,1,3,1.8,2095.54205456,1300,0,29374.0,1,3,0,0,4,3,0,0,1,0,0,0,0,1,1,2,16318.8888889,4,2,4_1,4_1,7000.0,0,7000.0,0,8,22,0.0,0.0,0.0,0,1,616.9454899686995,616.9454899686995,0.0 +3222,3378,3377,10,18,34,400,67,31,0,14615,0,0,220,0,2,4,2,4,2.1,1921.75824636,0,0,31329.0,1,2,0,0,4,2,0,1,1,0,0,0,0,1,2,0,14918.5714286,4,2,4_1,4_1,10000.0,0,0.0,10000,5,18,38.0,6.5,3.3,0,1,881.3506999552849,0.0,881.3506999552849 3223,3382,3381,1,1,33,111,56,50,1,14621,0,0,500,406,1,3,0,1,1.0,2939.0296617,3380,19480,15078.0,1,3,8,7,1,1,0,1,0,0,0,1,0,1,1,0,15078.0,4,2,4_1,4_0,12000.0,0,0.0,12000,3,3,6.6,20.0,3.3,1,1,1069.5398677251637,0.0,1069.5398677251637 -3224,3399,3398,1,22,60,112,75,31,2,14644,0,0,0,0,1,6,0,2,1.5,3969.90564309,0,1500,23065.0,5,1,9,3,3,2,0,0,0,1,0,0,0,0,1,1,15376.666666699999,4,2,4_0,4_0,7000.0,0,4000.0,3000,5,21,0.0,0.0,0.0,0,1,623.8982561730121,356.5132892417212,267.38496693129093 +3224,3399,3398,1,22,60,112,75,31,2,14644,0,0,0,0,1,6,0,2,1.5,3969.90564309,0,1500,23065.0,5,1,9,3,3,2,0,0,0,1,0,0,0,0,1,1,15376.6666667,4,2,4_0,4_0,7000.0,0,4000.0,3000,5,21,0.0,0.0,0.0,0,1,623.8982561730121,356.5132892417212,267.38496693129093 3225,3417,3416,0,0,83,112,78,71,0,14671,0,0,0,276,0,3,0,1,1.0,4828.29623117,0,0,14836.0,5,3,5,0,1,0,0,0,1,0,0,0,0,1,0,0,14836.0,4,2,4_1,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3226,3427,3426,2,2,40,111,63,43,0,14684,0,0,100,380,1,3,0,1,1.0,2446.79928648,0,0,14967.0,1,4,9,7,1,1,0,1,0,0,0,1,0,1,1,0,14967.0,4,2,4_1,4_0,12000.0,0,0.0,12000,4,4,63.0,35.0,3.3,0,1,1069.5398677251637,0.0,1069.5398677251637 3227,3462,3461,2,3,36,111,46,20,0,14731,0,350,0,0,1,3,1,2,1.3,2605.39510727,0,0,21188.0,1,2,9,7,2,1,1,1,0,0,0,1,0,0,0,1,16298.4615385,4,2,4_0,4_0,4000.0,0,4000.0,0,2,2,0.0,10.0,0.0,0,0,356.5132892417212,356.5132892417212,0.0 -3228,3465,3464,11,11,91,112,78,71,0,14734,0,0,0,0,0,5,0,2,1.5,3433.40417627,0,0,22600.0,5,4,6,0,3,1,0,0,1,0,0,0,0,0,1,0,15066.666666699999,4,2,4_0,4_1,10000.0,0,0.0,10000,10,11,0.0,0.0,0.0,0,0,881.3506999552849,0.0,881.3506999552849 +3228,3465,3464,11,11,91,112,78,71,0,14734,0,0,0,0,0,5,0,2,1.5,3433.40417627,0,0,22600.0,5,4,6,0,3,1,0,0,1,0,0,0,0,0,1,0,15066.6666667,4,2,4_0,4_1,10000.0,0,0.0,10000,10,11,0.0,0.0,0.0,0,0,881.3506999552849,0.0,881.3506999552849 3229,3470,3469,2,16,62,111,78,70,0,14741,0,0,0,237,0,2,0,2,1.5,3468.06657034,0,0,23490.0,5,3,7,6,3,1,0,0,0,0,1,0,0,0,0,1,15660.0,4,2,4_0,4_0,12000.0,0,12000.0,0,5,15,0.0,0.0,0.0,0,0,1069.5398677251637,1069.5398677251637,0.0 3230,3481,3480,0,0,23,112,63,50,0,14758,0,0,0,300,1,3,0,1,1.0,2319.78785925,0,0,15560.0,1,3,7,1,1,0,0,0,0,1,0,0,0,0,0,0,15560.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3231,3496,3495,1,11,31,111,67,31,2,14776,0,0,120,151,1,1,0,1,1.0,3407.63445662,1352,3500,15945.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,1,0,15945.0,4,2,4_0,4_0,20000.0,0,0.0,20000,3,11,0.0,0.0,0.0,0,1,1782.566446208606,0.0,1782.566446208606 3232,3503,3502,1,16,55,112,56,50,2,14791,0,40,0,0,2,4,1,2,1.5,3532.64617992,0,1200,25164.0,1,1,8,0,2,2,0,1,1,0,0,0,0,0,0,2,16776.0,4,2,4_0,4_1,30000.0,0,30000.0,0,18,11,83.0,30.0,3.3,1,0,2644.052099865855,2644.052099865855,0.0 3233,3525,3524,2,3,43,111,52,71,0,14819,0,99999,0,0,2,3,1,3,2.0,2481.21670309,0,0,33208.0,1,2,7,5,4,1,1,1,0,0,1,0,0,0,0,1,16604.0,4,2,4_0,4_0,20000.0,0,20000.0,0,4,4,62.0,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 -3234,3530,3529,2,11,37,111,56,50,0,14829,0,0,10,292,2,3,1,3,1.8,2373.9340813999997,1563,0,28928.0,1,3,6,4,4,1,1,1,0,0,1,0,0,0,1,0,16071.111111100001,4,2,4_0,4_0,18000.0,0,0.0,18000,4,10,0.0,10.0,3.3,0,1,1604.3098015877456,0.0,1604.3098015877456 +3234,3530,3529,2,11,37,111,56,50,0,14829,0,0,10,292,2,3,1,3,1.8,2373.9340814,1563,0,28928.0,1,3,6,4,4,1,1,1,0,0,1,0,0,0,1,0,16071.1111111,4,2,4_0,4_0,18000.0,0,0.0,18000,4,10,0.0,10.0,3.3,0,1,1604.3098015877456,0.0,1604.3098015877456 3235,3532,3531,3,5,51,111,67,71,0,14831,0,299997,99999,0,3,6,2,4,2.5,1998.65118693,7281,0,40693.0,1,1,6,5,4,5,0,1,0,0,1,0,0,0,1,4,16277.2,4,2,4_0,4_0,35727.0,0,35727.0,0,2,5,394.6,55.0,3.3,1,1,3184.2875711847432,3184.2875711847432,0.0 -3236,3558,3557,0,0,62,111,86,70,0,14871,0,0,0,50,0,3,0,2,1.5,2619.99676573,0,0,23000.0,5,3,7,5,3,0,0,0,0,0,1,0,0,1,0,0,15333.333333300001,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3237,3574,3573,6,9,49,300,63,50,0,14892,0,250,0,0,3,4,2,4,2.3,1423.38647428,0,0,34710.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,15091.304347799998,4,2,4_0,4_1,23000.0,0,23000.0,0,3,9,0.0,0.0,0.0,0,1,2027.1066098971553,2027.1066098971553,0.0 +3236,3558,3557,0,0,62,111,86,70,0,14871,0,0,0,50,0,3,0,2,1.5,2619.99676573,0,0,23000.0,5,3,7,5,3,0,0,0,0,0,1,0,0,1,0,0,15333.3333333,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3237,3574,3573,6,9,49,300,63,50,0,14892,0,250,0,0,3,4,2,4,2.3,1423.38647428,0,0,34710.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,15091.3043478,4,2,4_0,4_1,23000.0,0,23000.0,0,3,9,0.0,0.0,0.0,0,1,2027.1066098971553,2027.1066098971553,0.0 3238,3614,3613,0,0,74,112,75,33,0,14947,0,0,0,0,0,5,0,1,1.0,2312.53358658,0,0,16572.0,5,1,8,0,1,0,0,0,1,0,0,0,0,0,0,0,16572.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3239,3622,3621,1,1,77,221,86,71,1,14956,0,0,0,0,0,3,0,1,1.0,3957.49905096,2779,18800,16307.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,16307.0,4,2,4_0,4_0,1000.0,0,0.0,1000,16,0,0.0,0.0,0.0,0,0,89.1283223104303,0.0,89.1283223104303 3240,3631,3630,5,10,45,300,47,50,0,1497,0,0,90,0,2,5,1,3,2.0,1848.70541596,7125,0,33388.0,1,3,0,0,4,4,0,0,1,0,0,0,0,0,2,2,16694.0,4,2,4_0,4_1,38000.0,0,18000.0,20000,10,11,0.0,0.0,0.0,0,1,3349.1326598300825,1586.431259919513,1762.7013999105698 -3241,3635,3634,2,3,34,111,45,12,0,14979,0,400,0,0,1,3,3,5,2.4,2153.25942849,0,0,36830.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,0,1,15345.833333300001,4,2,4_1,4_0,12000.0,0,12000.0,0,3,4,0.0,0.0,0.0,0,0,1069.5398677251637,1069.5398677251637,0.0 +3241,3635,3634,2,3,34,111,45,12,0,14979,0,400,0,0,1,3,3,5,2.4,2153.25942849,0,0,36830.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,0,1,15345.8333333,4,2,4_1,4_0,12000.0,0,12000.0,0,3,4,0.0,0.0,0.0,0,0,1069.5398677251637,1069.5398677251637,0.0 3242,3649,3648,7,9,32,111,54,43,0,14992,0,200,0,0,1,4,2,3,1.6,2747.50885923,1040,0,25099.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,0,1,15686.875,4,2,4_0,4_0,16337.0,0,16337.0,0,6,6,60.0,90.0,3.3,0,1,1456.0894015854997,1456.0894015854997,0.0 3243,3653,3652,0,0,81,111,77,70,0,14996,0,0,0,0,0,2,0,1,1.0,2907.97786833,0,0,16793.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,16793.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3244,3654,3653,11,11,73,111,78,70,0,14999,0,0,0,0,0,3,0,1,1.0,1902.56935925,0,0,16638.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,0,1,16638.0,4,2,4_0,4_0,15000.0,0,15000.0,0,10,11,0.0,0.0,0.0,0,0,1336.9248346564543,1336.9248346564543,0.0 3245,3671,3670,5,21,80,112,72,70,0,15018,0,0,100,0,1,6,1,2,1.5,1538.64467902,3018,0,23358.0,5,1,8,1,2,1,0,1,0,1,0,0,0,0,1,0,15572.0,4,2,4_0,4_0,4500.0,0,0.0,4500,15,16,0.0,0.0,0.0,0,0,401.0774503969364,0.0,401.0774503969364 3246,3675,3674,1,1,75,221,78,71,1,15023,0,0,0,0,0,4,0,2,1.5,4755.33870326,0,10787,24947.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,16631.3333333,4,2,4_0,4_0,8800.0,0,0.0,8800,1,1,0.0,0.0,0.0,0,0,784.3292363317865,0.0,784.3292363317865 -3247,3678,3677,0,12,34,112,64,50,0,15026,0,0,200,0,2,3,2,4,2.1,3362.15539074,3120,0,32030.0,1,3,6,0,4,2,0,1,1,0,0,0,0,0,1,1,15252.380952399999,4,2,4_0,4_1,20000.0,0,10000.0,10000,7,12,81.0,7.5,0.0,0,1,1762.7013999105698,881.3506999552849,881.3506999552849 +3247,3678,3677,0,12,34,112,64,50,0,15026,0,0,200,0,2,3,2,4,2.1,3362.15539074,3120,0,32030.0,1,3,6,0,4,2,0,1,1,0,0,0,0,0,1,1,15252.3809524,4,2,4_0,4_1,20000.0,0,10000.0,10000,7,12,81.0,7.5,0.0,0,1,1762.7013999105698,881.3506999552849,881.3506999552849 3248,3683,3682,2,13,32,400,46,50,0,15032,0,0,0,0,1,4,3,5,2.4,2347.31028929,0,0,39497.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,16457.0833333,4,2,4_0,4_1,30672.0,0,30672.0,0,5,8,3.6,11.0,3.3,0,1,2703.2788669028496,2703.2788669028496,0.0 3249,3713,3712,3,5,80,221,78,71,0,15066,0,0,440,250,1,3,1,3,2.0,7688.56744923,0,0,31591.0,5,3,1,1,4,1,0,1,0,1,0,0,0,0,1,0,15795.5,4,2,4_0,4_0,10884.0,0,0.0,10884,4,0,0.0,0.0,0.0,0,1,970.0726600267233,0.0,970.0726600267233 3250,3719,3718,3,23,70,300,75,10,0,15073,0,0,0,0,0,4,0,2,1.5,1069.15636429,0,0,23397.0,5,1,0,1,3,2,0,0,0,1,0,0,0,0,1,1,15598.0,4,2,4_0,4_0,10787.0,0,7287.0,3500,8,13,0.0,0.0,0.0,0,0,961.4272127626116,649.4780846761056,311.94912808650605 3251,3757,3756,0,0,58,111,56,71,0,15128,0,0,0,17,2,4,1,2,1.5,3737.56043374,0,0,23913.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,15942.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3252,3788,3787,3,3,38,211,67,60,0,15167,0,0,0,0,1,5,3,5,2.6,1783.29513647,0,0,41168.0,1,2,2,3,4,1,0,0,0,1,0,0,0,1,0,1,15833.8461538,4,2,4_1,4_0,9672.0,0,9672.0,0,2,4,0.0,0.0,0.0,0,0,862.0491333864818,862.0491333864818,0.0 -3253,3798,3797,6,17,52,300,62,50,0,15189,0,0,50,0,3,5,2,4,2.3,1046.61248527,2657,0,34920.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,1,0,15182.608695700002,4,2,4_0,4_1,10000.0,0,0.0,10000,6,18,0.0,0.0,0.0,1,1,881.3506999552849,0.0,881.3506999552849 -3254,3826,3825,0,11,49,111,46,50,2,15229,0,30,0,0,2,4,3,5,2.8,1642.44839371,0,9990,45314.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,16183.571428600002,4,2,4_0,4_0,4000.0,0,4000.0,0,2,13,0.0,23.3333333333,1.1,0,1,356.5132892417212,356.5132892417212,0.0 +3253,3798,3797,6,17,52,300,62,50,0,15189,0,0,50,0,3,5,2,4,2.3,1046.61248527,2657,0,34920.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,1,0,15182.6086957,4,2,4_0,4_1,10000.0,0,0.0,10000,6,18,0.0,0.0,0.0,1,1,881.3506999552849,0.0,881.3506999552849 +3254,3826,3825,0,11,49,111,46,50,2,15229,0,30,0,0,2,4,3,5,2.8,1642.44839371,0,9990,45314.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,16183.5714286,4,2,4_0,4_0,4000.0,0,4000.0,0,2,13,0.0,23.3333333333,1.1,0,1,356.5132892417212,356.5132892417212,0.0 3255,3834,3833,13,13,76,111,86,70,0,15241,0,0,0,0,0,4,0,1,1.0,2195.69813868,0,0,15032.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,15032.0,4,2,4_0,4_0,7000.0,0,0.0,7000,9,12,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 3256,3850,3849,3,3,50,112,48,60,0,15261,0,500,0,0,3,4,2,4,2.5,2169.26711092,3684,0,37274.0,1,1,10,0,4,3,0,0,1,0,0,0,0,0,0,3,14909.6,4,2,4_0,4_1,10572.0,0,10572.0,0,1,2,130.9,40.0,3.3,1,1,931.7639599927271,931.7639599927271,0.0 3257,3862,3861,2,2,81,111,78,70,0,15282,0,0,0,0,0,3,0,2,1.5,2874.61208019,1695,0,24890.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,16593.3333333,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3258,3868,3867,11,11,54,111,67,71,0,15295,0,0,0,0,4,5,6,8,4.3,2188.94236715,0,0,69095.0,1,3,10,8,4,1,1,0,0,0,0,0,1,1,0,1,16068.6046512,4,2,4_1,4_0,16250.0,0,16250.0,0,4,4,149.0,95.0,3.3,0,1,1448.3352375444924,1448.3352375444924,0.0 3259,3885,3884,6,18,39,111,67,10,0,15317,0,200,0,92,1,3,2,4,2.1,2658.49024309,0,0,31479.0,1,3,7,5,4,3,0,0,0,0,1,0,0,1,0,3,14990.0,4,2,4_1,4_0,18000.0,0,18000.0,0,3,4,0.0,0.0,0.0,0,1,1604.3098015877456,1604.3098015877456,0.0 -3260,3897,3896,10,15,66,111,78,50,0,15332,0,0,0,0,0,5,0,2,1.5,1535.3411497000002,3052,0,22536.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,15024.0,4,2,4_0,4_0,12000.0,0,12000.0,0,5,15,0.0,0.0,0.0,0,0,1069.5398677251637,1069.5398677251637,0.0 +3260,3897,3896,10,15,66,111,78,50,0,15332,0,0,0,0,0,5,0,2,1.5,1535.3411497,3052,0,22536.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,15024.0,4,2,4_0,4_0,12000.0,0,12000.0,0,5,15,0.0,0.0,0.0,0,0,1069.5398677251637,1069.5398677251637,0.0 3261,3898,3897,0,12,56,400,21,50,0,15338,0,1000,80,0,2,6,0,2,1.5,4120.89587082,3869,0,25040.0,1,1,0,0,3,2,1,1,1,0,0,0,0,0,1,1,16693.3333333,4,2,4_0,4_1,19000.0,0,12000.0,7000,5,11,126.0,10.0,3.33,0,1,1674.5663299150413,1057.6208399463417,616.9454899686995 -3262,3915,3914,0,0,67,112,75,50,0,15360,0,0,0,230,0,4,0,2,1.5,1145.89121768,1040,0,24112.0,5,3,9,0,3,0,0,0,1,0,0,0,0,0,0,0,16074.666666699999,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3262,3915,3914,0,0,67,112,75,50,0,15360,0,0,0,230,0,4,0,2,1.5,1145.89121768,1040,0,24112.0,5,3,9,0,3,0,0,0,1,0,0,0,0,0,0,0,16074.6666667,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3263,3918,3917,4,5,30,111,54,31,0,15363,0,150,0,0,2,5,2,4,2.1,2202.78580375,3329,0,34960.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,0,2,16647.6190476,4,2,4_0,4_0,41353.0,0,41353.0,0,4,6,0.0,2.5,0.0,1,1,3685.7235125032244,3685.7235125032244,0.0 3264,3933,3932,12,12,87,400,71,70,0,15381,0,0,0,0,0,4,0,1,1.0,2520.18515677,0,0,15866.0,5,3,0,0,1,1,0,0,1,0,0,0,0,1,1,0,15866.0,4,2,4_1,4_1,7500.0,0,0.0,7500,11,11,0.0,0.0,0.0,0,0,661.0130249664637,0.0,661.0130249664637 3265,3941,3940,13,13,72,111,77,70,0,15390,0,0,0,303,0,4,0,1,1.0,3152.28075577,2081,0,16210.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,16210.0,4,2,4_0,4_0,8000.0,0,8000.0,0,13,13,0.0,0.0,0.0,0,0,713.0265784834424,713.0265784834424,0.0 3266,3972,3971,2,2,80,221,78,71,0,15431,0,0,0,0,0,4,0,1,1.0,2753.61794921,3402,0,16178.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,1,0,16178.0,4,2,4_0,4_0,7000.0,0,0.0,7000,2,2,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 -3267,3978,3977,15,19,41,111,52,50,0,15440,0,50,200,0,2,5,3,5,2.8,1853.81318221,3120,0,45868.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,1,1,16381.428571399998,4,2,4_0,4_0,38000.0,0,23000.0,15000,6,22,223.5,40.0,3.3,0,1,3386.8762477963514,2049.951413139897,1336.9248346564543 +3267,3978,3977,15,19,41,111,52,50,0,15440,0,50,200,0,2,5,3,5,2.8,1853.81318221,3120,0,45868.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,1,1,16381.4285714,4,2,4_0,4_0,38000.0,0,23000.0,15000,6,22,223.5,40.0,3.3,0,1,3386.8762477963514,2049.951413139897,1336.9248346564543 3268,3980,3979,3,4,50,111,85,30,0,15443,0,0,0,382,0,5,2,3,2.0,1659.30388578,1404,0,30114.0,7,3,7,6,2,1,0,0,0,0,1,0,0,1,0,1,15057.0,4,2,4_1,4_0,12000.0,0,12000.0,0,4,4,0.0,0.0,0.0,0,0,1069.5398677251637,1069.5398677251637,0.0 -3269,3996,3995,3,13,50,111,46,50,0,15469,0,150,50,0,1,7,3,5,2.6,1006.54596426,1560,0,39044.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,1,1,15016.923076899999,4,2,4_0,4_0,17000.0,0,10000.0,7000,4,4,191.0,33.3333333333,0.0,0,1,1515.181479277315,891.283223104303,623.8982561730121 +3269,3996,3995,3,13,50,111,46,50,0,15469,0,150,50,0,1,7,3,5,2.6,1006.54596426,1560,0,39044.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,1,1,15016.9230769,4,2,4_0,4_0,17000.0,0,10000.0,7000,4,4,191.0,33.3333333333,0.0,0,1,1515.181479277315,891.283223104303,623.8982561730121 3270,4006,4005,13,20,46,112,63,50,0,15483,0,60,50,0,3,4,2,4,2.5,1603.38996577,0,0,42059.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,1,1,16823.6,4,2,4_0,4_1,30000.0,0,15000.0,15000,9,15,301.0,105.0,3.3,0,1,2644.052099865855,1322.0260499329274,1322.0260499329274 3271,4016,4015,22,22,61,111,77,42,0,15497,0,0,0,0,0,4,0,2,1.5,1408.46139161,0,0,24030.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,2,0,16020.0,4,2,4_0,4_0,6000.0,0,0.0,6000,8,22,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 3272,4020,4019,12,13,56,111,63,50,0,15500,0,0,99999,461,3,4,1,3,2.0,1734.70973,2080,0,31834.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,1,0,15917.0,4,2,4_0,4_0,20000.0,0,0.0,20000,4,13,48.0,50.0,0.0,0,0,1782.566446208606,0.0,1782.566446208606 3273,4028,4027,4,4,57,300,52,71,0,15511,0,140,0,0,2,4,0,2,1.5,4215.796133,1045,0,24920.0,1,1,0,0,3,2,1,1,1,0,0,0,0,0,0,2,16613.3333333,4,2,4_0,4_1,650.0,0,650.0,0,2,3,0.0,0.0,0.0,0,0,57.28779549709352,57.28779549709352,0.0 -3274,4032,4031,2,9,39,400,67,50,0,15516,0,0,280,0,1,4,1,2,1.3,2253.48336616,2340,0,19832.0,1,3,0,0,2,1,0,1,1,0,0,0,0,1,1,0,15255.384615399998,4,2,4_1,4_1,5517.0,5517,0.0,0,0,7,339.0,60.0,3.31,0,1,486.24118116533066,0.0,0.0 +3274,4032,4031,2,9,39,400,67,50,0,15516,0,0,280,0,1,4,1,2,1.3,2253.48336616,2340,0,19832.0,1,3,0,0,2,1,0,1,1,0,0,0,0,1,1,0,15255.3846154,4,2,4_1,4_1,5517.0,5517,0.0,0,0,7,339.0,60.0,3.31,0,1,486.24118116533066,0.0,0.0 3275,4039,4038,0,0,73,111,72,50,0,15522,0,0,0,0,0,3,0,1,1.0,2215.31827799,0,0,16152.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,16152.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3276,4046,4045,0,5,50,211,62,50,2,15533,0,60,260,0,1,5,1,3,2.0,3392.23366835,1924,7900,33724.0,1,1,3,3,4,2,0,1,0,1,0,0,0,0,1,1,16862.0,4,2,4_0,4_0,50454.0,0,39750.0,10704,1,3,0.0,10.0,1.1,1,0,4496.88037385045,3542.8508118396044,954.029562010846 3277,4080,4079,8,11,54,211,53,50,0,15583,0,99999,0,0,2,6,1,3,2.0,1149.1708601,1832,0,33515.0,1,3,1,3,4,2,0,1,0,1,0,0,0,0,1,1,16757.5,4,2,4_0,4_0,18000.0,0,15000.0,3000,4,10,23.4,23.3333333333,3.3,0,1,1604.3098015877456,1336.9248346564543,267.38496693129093 -3278,4083,4082,2,2,25,112,46,71,0,15589,0,260,0,0,2,3,3,5,2.4,3117.97119072,1560,0,35969.0,1,3,10,5,4,1,0,1,0,0,1,0,0,1,0,1,14987.083333300001,4,2,4_1,4_0,13672.0,0,13672.0,0,1,2,0.0,20.0,3.3,0,1,1218.562422628203,1218.562422628203,0.0 +3278,4083,4082,2,2,25,112,46,71,0,15589,0,260,0,0,2,3,3,5,2.4,3117.97119072,1560,0,35969.0,1,3,10,5,4,1,0,1,0,0,1,0,0,1,0,1,14987.0833333,4,2,4_1,4_0,13672.0,0,13672.0,0,1,2,0.0,20.0,3.3,0,1,1218.562422628203,1218.562422628203,0.0 3279,4085,4084,16,16,69,112,77,50,0,15591,0,0,0,0,0,2,0,1,1.0,1295.04865995,0,0,15930.0,5,3,6,0,1,1,0,0,1,0,0,0,0,0,0,1,15930.0,4,2,4_0,4_1,3500.0,0,3500.0,0,8,14,0.0,0.0,0.0,0,0,308.47274498434973,308.47274498434973,0.0 -3280,4099,4098,23,23,60,400,77,42,0,15611,0,0,0,0,0,3,0,2,1.5,1953.51537841,1040,0,23368.0,5,4,0,0,3,3,0,0,1,0,0,0,0,0,0,3,15578.666666699999,4,2,4_0,4_1,23400.0,0,14800.0,8600,14,23,0.0,0.0,0.0,0,1,2062.3606378953664,1304.3990359338218,757.961601961545 +3280,4099,4098,23,23,60,400,77,42,0,15611,0,0,0,0,0,3,0,2,1.5,1953.51537841,1040,0,23368.0,5,4,0,0,3,3,0,0,1,0,0,0,0,0,0,3,15578.6666667,4,2,4_0,4_1,23400.0,0,14800.0,8600,14,23,0.0,0.0,0.0,0,1,2062.3606378953664,1304.3990359338218,757.961601961545 3281,4103,4102,7,27,52,112,52,71,0,15619,0,300,0,0,2,6,1,3,2.0,2110.39883057,2144,0,31874.0,1,3,4,0,4,3,0,1,1,0,0,0,0,0,0,3,15937.0,4,2,4_0,4_1,7000.0,0,7000.0,0,8,22,0.0,0.0,0.0,0,1,616.9454899686995,616.9454899686995,0.0 3282,4105,4104,4,18,45,112,52,50,0,15620,0,388,0,0,2,5,3,5,2.8,898.914352128,4539,0,45862.0,1,2,8,0,4,4,0,0,1,0,0,0,0,0,1,3,16379.2857143,4,2,4_0,4_1,10144.0,0,10144.0,0,1,20,0.0,65.0,3.3,0,1,894.0421500346409,894.0421500346409,0.0 3283,4109,4108,12,15,42,221,62,71,0,15626,0,180,0,0,2,5,4,6,3.3,989.06799127,0,0,54036.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,1,1,16374.5454545,4,2,4_0,4_0,41250.0,0,20000.0,21250,4,14,387.5,38.0,3.31,0,1,3676.54329530525,1782.566446208606,1893.976849096644 -3284,4122,4121,7,7,66,212,77,71,0,15645,0,0,0,0,0,6,0,2,1.5,1707.98984932,4161,0,22577.0,5,1,3,0,3,2,0,0,1,0,0,0,0,0,0,2,15051.333333300001,4,2,4_0,4_1,20000.0,0,20000.0,0,3,6,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 +3284,4122,4121,7,7,66,212,77,71,0,15645,0,0,0,0,0,6,0,2,1.5,1707.98984932,4161,0,22577.0,5,1,3,0,3,2,0,0,1,0,0,0,0,0,0,2,15051.3333333,4,2,4_0,4_1,20000.0,0,20000.0,0,3,6,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 3285,4128,4127,0,0,61,111,78,71,0,15654,0,0,0,0,0,5,1,3,2.0,2504.52055801,0,0,31458.0,5,2,10,8,4,0,0,0,0,0,0,0,1,0,0,0,15729.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3286,4132,4131,3,15,43,400,63,50,0,15661,0,700,0,0,2,7,4,6,2.9,1363.00367524,2861,0,46981.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,0,2,16200.3448276,4,2,4_0,4_1,2000.0,0,2000.0,0,15,15,112.2,52.5,2.24,0,1,176.27013999105696,176.27013999105696,0.0 3287,4161,4160,0,7,37,111,35,12,0,15711,0,300,0,688,1,3,1,2,1.3,2742.70931487,2377,0,19630.0,1,3,9,7,2,1,1,1,0,0,0,1,0,0,0,1,15100.0,4,2,4_0,4_0,30000.0,0,30000.0,0,3,6,114.0,45.0,3.31,0,1,2673.8496693129086,2673.8496693129086,0.0 @@ -3292,21 +3292,21 @@ 3290,4173,4172,13,21,50,112,54,50,0,1573,0,300,0,0,2,4,1,3,2.0,1299.55483735,2081,0,29849.0,1,1,6,0,4,3,1,0,1,0,0,0,0,0,0,3,14924.5,4,2,4_0,4_1,7000.0,0,7000.0,0,8,22,0.0,0.0,0.0,0,1,616.9454899686995,616.9454899686995,0.0 3291,4180,4179,0,0,78,111,78,71,0,15741,0,0,0,0,0,5,0,1,1.0,3797.63908323,0,0,15608.0,5,1,8,6,1,0,0,0,0,0,1,0,0,0,0,0,15608.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3292,4192,4191,0,0,76,111,77,71,0,15755,0,0,0,363,0,3,0,1,1.0,3682.40020076,0,0,14850.0,5,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,14850.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3293,4198,4197,7,8,77,111,75,50,0,15763,0,0,0,0,0,6,0,2,1.5,1103.07878882,2080,0,23627.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,15751.333333300001,4,2,4_0,4_0,2000.0,0,0.0,2000,8,8,0.0,0.0,0.0,0,0,178.2566446208606,0.0,178.2566446208606 +3293,4198,4197,7,8,77,111,75,50,0,15763,0,0,0,0,0,6,0,2,1.5,1103.07878882,2080,0,23627.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,15751.3333333,4,2,4_0,4_0,2000.0,0,0.0,2000,8,8,0.0,0.0,0.0,0,0,178.2566446208606,0.0,178.2566446208606 3294,4203,4202,0,0,58,111,56,71,0,15771,0,0,0,0,1,1,0,1,1.0,3378.67642732,0,0,16672.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,16672.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 3295,4204,4203,1,10,51,211,68,50,2,15772,0,99999,600,517,3,5,2,3,2.0,1144.00772468,1831,3400,33003.0,1,3,1,2,2,3,0,0,0,1,0,0,0,0,2,1,16501.5,4,2,4_0,4_0,20000.0,0,10000.0,10000,5,6,23.0,16.6666666667,3.3,0,1,1782.566446208606,891.283223104303,891.283223104303 3296,4213,4212,3,16,52,111,55,50,0,15782,0,0,0,261,1,3,1,2,1.5,1425.53577609,2617,0,23310.0,1,3,4,4,2,1,0,0,0,0,1,0,0,0,1,0,15540.0,4,2,4_0,4_0,12000.0,0,0.0,12000,5,18,0.0,0.0,0.0,1,0,1069.5398677251637,0.0,1069.5398677251637 3297,4231,4230,0,0,77,111,77,70,0,1588,0,0,0,336,0,3,0,1,1.0,3336.97558684,0,0,15080.0,5,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,15080.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3298,4249,4248,3,15,42,111,47,31,0,1612,0,0,20,0,1,3,0,1,1.0,4882.93183667,0,0,16472.0,1,1,9,7,1,1,1,1,0,0,0,1,0,0,1,0,16472.0,4,2,4_0,4_0,1500.0,0,0.0,1500,7,14,0.0,2.0,1.1,0,0,133.69248346564547,0.0,133.69248346564547 -3299,4251,4250,3,3,61,400,56,70,0,1615,0,0,0,0,2,5,0,2,1.5,1059.37049465,4550,0,23935.0,1,2,0,0,3,2,0,0,1,0,0,0,0,0,1,1,15956.666666699999,4,2,4_0,4_1,650.0,0,650.0,0,2,3,0.0,0.0,0.0,0,0,57.28779549709352,57.28779549709352,0.0 +3299,4251,4250,3,3,61,400,56,70,0,1615,0,0,0,0,2,5,0,2,1.5,1059.37049465,4550,0,23935.0,1,2,0,0,3,2,0,0,1,0,0,0,0,0,1,1,15956.6666667,4,2,4_0,4_1,650.0,0,650.0,0,2,3,0.0,0.0,0.0,0,0,57.28779549709352,57.28779549709352,0.0 3300,4261,4260,0,0,72,111,77,70,0,1630,0,0,0,0,0,5,0,1,1.0,1915.20213423,0,0,16410.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,16410.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3301,4262,4261,17,17,53,111,63,50,0,1634,0,0,0,289,2,4,0,2,1.5,2339.80055859,0,0,25158.0,1,3,4,4,3,1,0,0,0,0,1,0,0,0,1,0,16772.0,4,2,4_0,4_0,8000.0,0,0.0,8000,15,15,102.5,40.0,3.32,0,0,713.0265784834424,0.0,713.0265784834424 -3302,4272,4271,0,0,70,111,78,71,0,1647,0,0,0,269,1,5,3,5,3.0,3130.96616782,1040,0,45770.0,5,3,7,5,4,0,0,0,0,0,1,0,0,1,0,0,15256.666666699999,4,2,4_1,4_0,0.0,0,0.0,0,0,0,30.5,20.0,5.55,0,0,0.0,0.0,0.0 +3302,4272,4271,0,0,70,111,78,71,0,1647,0,0,0,269,1,5,3,5,3.0,3130.96616782,1040,0,45770.0,5,3,7,5,4,0,0,0,0,0,1,0,0,1,0,0,15256.6666667,4,2,4_1,4_0,0.0,0,0.0,0,0,0,30.5,20.0,5.55,0,0,0.0,0.0,0.0 3303,4285,4284,9,24,41,112,62,50,0,1662,0,300,0,0,2,4,2,4,2.1,1669.73676548,2851,0,33087.0,1,2,7,0,4,2,0,0,1,0,0,0,0,0,1,1,15755.7142857,4,2,4_0,4_1,20300.0,0,20000.0,300,21,27,0.0,0.0,0.0,0,1,1789.1419209092282,1762.7013999105698,26.440520998658545 3304,4287,4286,11,16,52,120,43,20,0,1664,0,200,0,0,1,4,1,2,1.5,3551.47099677,1567,0,23478.0,1,2,0,0,2,3,0,1,1,0,0,0,0,0,1,2,15652.0,4,2,4_0,4_1,5000.0,0,5000.0,0,15,15,0.0,0.0,0.0,1,0,440.67534997764244,440.67534997764244,0.0 3305,4292,4291,0,22,27,111,54,20,0,1671,0,0,350,455,1,2,0,1,1.0,2876.96664081,1664,0,16766.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,16766.0,4,2,4_0,4_0,12000.0,0,0.0,12000,5,18,41.0,14.0,3.3,0,1,1069.5398677251637,0.0,1069.5398677251637 -3306,4300,4299,1,1,36,111,55,30,1,1682,0,200,0,167,1,3,1,2,1.3,2952.00241991,0,11500,19932.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,15332.307692299997,4,2,4_1,4_0,10000.0,0,10000.0,0,3,1,44.5,48.0,2.2,0,0,891.283223104303,891.283223104303,0.0 -3307,4304,4303,2,3,43,111,62,50,0,1688,0,350,0,0,2,7,2,4,2.3,1300.10551548,0,0,35486.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,15428.695652200002,4,2,4_0,4_0,6859.0,0,6859.0,0,1,1,167.8,88.3333333333,3.3,1,1,611.3311627272415,611.3311627272415,0.0 +3306,4300,4299,1,1,36,111,55,30,1,1682,0,200,0,167,1,3,1,2,1.3,2952.00241991,0,11500,19932.0,1,3,8,6,2,1,0,1,0,0,1,0,0,1,0,1,15332.3076923,4,2,4_1,4_0,10000.0,0,10000.0,0,3,1,44.5,48.0,2.2,0,0,891.283223104303,891.283223104303,0.0 +3307,4304,4303,2,3,43,111,62,50,0,1688,0,350,0,0,2,7,2,4,2.3,1300.10551548,0,0,35486.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,15428.6956522,4,2,4_0,4_0,6859.0,0,6859.0,0,1,1,167.8,88.3333333333,3.3,1,1,611.3311627272415,611.3311627272415,0.0 3308,4307,4306,5,10,43,211,63,50,0,1691,0,140,0,481,2,4,2,4,2.1,1174.72937476,0,0,35035.0,1,3,3,4,4,2,0,1,0,0,1,0,0,1,1,1,16683.3333333,4,2,4_1,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 3309,4315,4314,8,8,75,111,77,41,0,1702,0,0,0,0,0,3,0,1,1.0,2936.26137894,2080,0,15408.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,15408.0,4,2,4_0,4_0,4285.0,0,0.0,4285,7,10,0.0,0.0,0.0,0,0,381.91486110019383,0.0,381.91486110019383 3310,4317,4316,3,9,24,111,55,50,0,1704,0,0,0,200,2,2,1,3,1.8,3461.14712565,0,0,30295.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,1,0,16830.5555556,4,2,4_1,4_0,9862.0,0,0.0,9862,7,8,56.5,73.3333333333,3.3,0,1,878.9835146254636,0.0,878.9835146254636 @@ -3314,14 +3314,14 @@ 3312,4350,4349,2,2,43,112,62,42,0,1749,0,300,0,0,2,5,2,4,2.3,2392.17072465,2309,0,35272.0,1,2,8,0,4,1,0,1,1,0,0,0,0,0,0,1,15335.6521739,4,2,4_0,4_1,22891.0,0,22891.0,0,1,2,55.0,16.6666666667,3.3,0,1,2017.4998872676426,2017.4998872676426,0.0 3313,4368,4367,11,18,75,120,72,50,0,1775,0,0,0,0,0,8,0,2,1.5,1158.26076382,0,0,24961.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,16640.6666667,4,2,4_0,4_0,5000.0,0,0.0,5000,14,18,0.0,0.0,0.0,0,0,445.6416115521515,0.0,445.6416115521515 3314,4369,4368,0,0,40,111,65,71,0,1776,0,0,0,0,2,3,2,4,2.3,3844.81984822,0,0,35673.0,1,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,15510.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,49.0,24.0,5.5,0,0,0.0,0.0,0.0 -3315,4371,4370,12,12,45,300,62,71,0,1778,0,520,0,0,2,3,2,4,2.3,1880.59339721,3641,0,35805.0,1,1,0,1,4,2,0,1,0,1,0,0,0,0,0,2,15567.391304299998,4,2,4_0,4_0,10000.0,0,10000.0,0,5,12,0.0,14.666666666700001,3.31,0,1,891.283223104303,891.283223104303,0.0 +3315,4371,4370,12,12,45,300,62,71,0,1778,0,520,0,0,2,3,2,4,2.3,1880.59339721,3641,0,35805.0,1,1,0,1,4,2,0,1,0,1,0,0,0,0,0,2,15567.3913043,4,2,4_0,4_0,10000.0,0,10000.0,0,5,12,0.0,14.6666666667,3.31,0,1,891.283223104303,891.283223104303,0.0 3316,4390,4389,0,0,72,111,77,50,0,1800,0,0,0,500,0,2,0,1,1.0,2643.44236734,0,0,16130.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,16130.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3317,4391,4390,0,0,31,400,68,50,0,1801,0,0,0,0,1,4,0,1,1.0,2811.59923243,2340,0,16390.0,1,4,0,0,1,0,0,0,1,0,0,0,0,0,0,0,16390.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,4.0,1.1,0,0,0.0,0.0,0.0 3318,4401,4400,8,18,26,112,46,10,0,1815,0,0,200,503,2,3,0,2,1.5,4176.31763259,3107,0,24114.0,1,3,9,0,3,2,0,0,1,0,0,0,0,1,2,0,16076.0,4,2,4_1,4_1,3000.0,0,0.0,3000,1,18,109.2,27.6666666667,3.31,0,1,264.4052099865854,0.0,264.4052099865854 3319,4417,4416,0,0,41,111,53,41,0,1833,0,0,0,385,2,3,2,4,2.1,2969.71915964,0,0,32831.0,1,3,10,8,4,0,0,0,0,0,0,0,1,1,0,0,15633.8095238,4,2,4_1,4_0,0.0,0,0.0,0,0,0,20.5,40.0,0.0,0,0,0.0,0.0,0.0 3320,4420,4419,0,7,58,111,75,60,0,1837,0,0,0,500,1,4,2,4,2.5,3742.11029275,4077,0,37953.0,5,3,8,6,4,1,0,0,0,0,1,0,0,0,0,1,15181.2,4,2,4_0,4_0,25000.0,0,25000.0,0,3,3,0.0,0.0,0.0,0,1,2228.2080577607576,2228.2080577607576,0.0 3321,4457,4456,9,11,35,111,46,60,0,1885,0,0,650,0,2,3,0,2,1.5,1888.08523814,3276,0,22746.0,1,3,8,7,3,1,0,1,0,0,0,1,0,1,1,0,15164.0,4,2,4_1,4_0,10237.0,0,0.0,10237,6,13,51.2,57.5,5.5,0,1,912.4066354918749,0.0,912.4066354918749 -3322,4459,4458,16,21,59,112,78,50,0,189,0,0,0,0,0,5,0,2,1.5,1069.5772437,0,0,23090.0,5,1,9,2,3,2,0,0,0,1,0,0,0,0,2,0,15393.333333300001,4,2,4_0,4_0,6000.0,0,0.0,6000,8,22,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 +3322,4459,4458,16,21,59,112,78,50,0,189,0,0,0,0,0,5,0,2,1.5,1069.5772437,0,0,23090.0,5,1,9,2,3,2,0,0,0,1,0,0,0,0,2,0,15393.3333333,4,2,4_0,4_0,6000.0,0,0.0,6000,8,22,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 3323,4467,4466,0,7,28,111,43,33,0,190,0,0,0,0,1,2,0,1,1.0,7492.11915076,0,0,15153.0,4,4,8,7,1,1,0,0,0,0,0,1,0,0,1,0,15153.0,4,2,4_0,4_0,3543.0,0,0.0,3543,0,6,0.0,0.0,0.0,1,0,315.7816459458545,0.0,315.7816459458545 3324,4468,4467,14,14,88,120,78,70,0,1900,0,0,0,0,0,3,0,1,1.0,2459.55822881,0,0,16842.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,16842.0,4,2,4_0,4_1,1000.0,0,1000.0,0,4,16,0.0,0.0,0.0,0,0,88.13506999552848,88.13506999552848,0.0 3325,4489,4488,0,0,73,120,75,20,0,1933,0,0,0,0,0,6,0,2,1.5,1501.67591537,0,0,24153.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,16102.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -3332,39 +3332,39 @@ 3330,4531,4530,10,12,66,400,77,41,0,1990,0,0,0,0,0,3,0,1,1.0,6663.33870915,2875,0,15389.0,5,1,0,1,1,1,0,0,0,1,0,0,0,0,1,0,15389.0,4,2,4_0,4_0,12000.0,0,0.0,12000,12,12,0.0,0.0,0.0,0,0,1069.5398677251637,0.0,1069.5398677251637 3331,4534,4533,0,0,55,111,68,71,0,1993,0,0,0,391,1,5,0,1,1.0,2978.45349281,0,0,16360.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,16360.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 3332,4536,4535,8,8,67,112,78,70,0,1996,0,0,0,0,0,4,0,2,1.5,2567.61935495,0,0,25103.0,5,1,10,4,3,1,0,0,0,0,1,0,0,0,0,1,16735.3333333,4,2,4_0,4_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1336.9248346564543,1336.9248346564543,0.0 -3333,4558,4557,7,8,65,300,78,70,0,2030,0,0,0,0,0,4,0,2,1.5,1219.1313537,3120,0,23089.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15392.666666699999,4,2,4_0,4_1,10000.0,0,10000.0,0,8,9,0.0,0.0,0.0,0,0,881.3506999552849,881.3506999552849,0.0 +3333,4558,4557,7,8,65,300,78,70,0,2030,0,0,0,0,0,4,0,2,1.5,1219.1313537,3120,0,23089.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15392.6666667,4,2,4_0,4_1,10000.0,0,10000.0,0,8,9,0.0,0.0,0.0,0,0,881.3506999552849,881.3506999552849,0.0 3334,4562,4561,0,0,71,112,77,70,0,2039,0,0,0,78,0,3,0,1,1.0,2120.77708494,0,0,14878.0,5,3,9,3,1,0,0,0,0,1,0,0,0,1,0,0,14878.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3335,4589,4588,1,5,61,112,75,42,2,2070,0,0,0,0,1,4,0,2,1.5,2300.11397997,0,6400,23748.0,5,1,7,2,3,2,0,0,0,1,0,0,0,0,1,1,15832.0,4,2,4_0,4_0,13064.0,0,5772.0,7292,1,2,104.5,40.0,3.3,0,1,1164.3724026634616,514.4486763758036,649.9237262876577 3336,4590,4589,11,11,57,111,46,41,0,2073,0,1100,80,520,2,3,0,2,1.5,3227.69954388,3250,0,25247.0,1,3,8,7,3,2,0,1,0,0,0,1,0,0,1,1,16831.3333333,4,2,4_0,4_0,14867.0,0,8000.0,6867,12,12,25.0,30.0,3.3,0,1,1325.0707677891673,713.0265784834424,612.0441893057248 -3337,4591,4590,9,9,86,400,75,70,0,2074,0,0,0,0,0,5,0,2,1.5,2407.90105081,0,0,24350.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,16233.333333300001,4,2,4_0,4_1,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 +3337,4591,4590,9,9,86,400,75,70,0,2074,0,0,0,0,0,5,0,2,1.5,2407.90105081,0,0,24350.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,16233.3333333,4,2,4_0,4_1,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 3338,4597,4596,0,0,78,112,78,71,0,208,0,0,0,0,0,3,0,1,1.0,3138.32164308,0,0,16775.0,5,1,8,1,1,0,0,0,0,1,0,0,0,0,0,0,16775.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3339,4598,4597,0,13,30,111,54,50,0,2080,0,0,0,269,1,2,0,1,1.0,2337.31173718,0,0,15474.0,1,3,8,6,1,1,0,0,0,0,1,0,0,1,1,0,15474.0,4,2,4_1,4_0,5000.0,0,0.0,5000,5,13,0.0,25.0,3.3,0,1,445.6416115521515,0.0,445.6416115521515 3340,4617,4616,0,0,60,111,78,50,0,2105,0,0,0,0,0,2,0,1,1.0,3862.97125402,0,0,15025.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,15025.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3341,4630,4629,11,11,22,111,47,42,0,2123,0,0,0,0,1,1,0,1,1.0,3535.14447712,0,0,15530.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,15530.0,4,2,4_0,4_0,31445.0,0,31445.0,0,2,11,0.0,30.0,3.3,0,1,2802.640095051481,2802.640095051481,0.0 -3342,4661,4660,0,0,40,111,63,50,0,2163,0,0,0,0,1,2,0,1,1.0,3158.8430566999996,0,0,15868.0,1,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,15868.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,14.0,1.1,0,0,0.0,0.0,0.0 +3342,4661,4660,0,0,40,111,63,50,0,2163,0,0,0,0,1,2,0,1,1.0,3158.8430567,0,0,15868.0,1,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,15868.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,14.0,1.1,0,0,0.0,0.0,0.0 3343,4679,4678,0,0,26,111,46,60,0,2186,0,0,0,330,1,2,0,1,1.0,3834.5923192,0,0,16655.0,1,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,16655.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,30.0,5.5,0,0,0.0,0.0,0.0 -3344,4695,4694,6,6,46,111,46,41,0,2206,0,99999,0,0,2,6,2,4,2.1,2060.73055818,5200,0,31514.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,1,1,15006.666666699999,4,2,4_0,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 +3344,4695,4694,6,6,46,111,46,41,0,2206,0,99999,0,0,2,6,2,4,2.1,2060.73055818,5200,0,31514.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,1,1,15006.6666667,4,2,4_0,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 3345,4725,4724,0,0,80,111,86,70,0,2236,0,0,0,0,0,4,0,1,1.0,2864.88159085,0,0,16769.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,16769.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3346,4728,4727,3,11,42,111,46,41,0,224,0,200,0,200,1,1,0,1,1.0,3533.76643446,1040,0,16050.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,16050.0,4,2,4_0,4_0,12481.0,0,12481.0,0,10,10,53.2,40.0,2.22,0,1,1112.4105907564806,1112.4105907564806,0.0 3347,4737,4736,6,6,47,111,21,71,0,2255,0,12,0,0,2,5,2,4,2.3,4335.37408971,3640,0,36770.0,1,2,5,4,4,2,1,0,0,0,1,0,0,0,0,2,15986.9565217,4,2,4_0,4_0,21287.0,0,21287.0,0,5,5,98.0,25.0,3.3,0,1,1897.27459702213,1897.27459702213,0.0 3348,4739,4738,6,11,40,111,63,50,0,2257,0,70,0,371,1,3,0,1,1.0,2797.80897379,0,0,15602.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,0,1,15602.0,4,2,4_0,4_0,6000.0,0,6000.0,0,9,11,0.0,30.0,3.3,0,1,534.7699338625819,534.7699338625819,0.0 -3349,4746,4745,2,13,24,111,63,44,0,2273,0,400,0,472,1,3,0,2,1.5,3059.29366032,2080,0,24088.0,1,3,8,7,3,2,0,0,0,0,0,1,0,1,0,2,16058.666666699999,4,2,4_1,4_0,23656.0,0,23656.0,0,6,14,0.0,0.0,0.0,1,1,2108.419592575539,2108.419592575539,0.0 -3350,4747,4746,4,7,30,112,68,50,0,2274,0,125,0,0,2,3,1,3,1.8,1519.13856794,4160,0,29311.0,1,3,7,1,4,2,0,0,0,1,0,0,0,0,0,2,16283.888888899999,4,2,4_0,4_0,16000.0,0,16000.0,0,2,6,233.5,32.6666666667,3.3,1,1,1426.053156966885,1426.053156966885,0.0 +3349,4746,4745,2,13,24,111,63,44,0,2273,0,400,0,472,1,3,0,2,1.5,3059.29366032,2080,0,24088.0,1,3,8,7,3,2,0,0,0,0,0,1,0,1,0,2,16058.6666667,4,2,4_1,4_0,23656.0,0,23656.0,0,6,14,0.0,0.0,0.0,1,1,2108.419592575539,2108.419592575539,0.0 +3350,4747,4746,4,7,30,112,68,50,0,2274,0,125,0,0,2,3,1,3,1.8,1519.13856794,4160,0,29311.0,1,3,7,1,4,2,0,0,0,1,0,0,0,0,0,2,16283.8888889,4,2,4_0,4_0,16000.0,0,16000.0,0,2,6,233.5,32.6666666667,3.3,1,1,1426.053156966885,1426.053156966885,0.0 3351,4765,4764,7,9,88,112,71,71,0,2306,0,0,0,0,0,4,0,2,1.5,2507.19581965,0,0,25065.0,5,1,9,1,3,1,0,0,0,1,0,0,0,0,1,0,16710.0,4,2,4_0,4_0,2000.0,0,0.0,2000,11,11,0.0,0.0,0.0,0,0,178.2566446208606,0.0,178.2566446208606 3352,4771,4770,4,15,59,111,78,50,0,2313,0,720,0,0,1,4,2,4,2.5,1312.62790939,5668,0,41989.0,5,1,8,7,4,3,0,1,0,0,0,1,0,0,1,2,16795.6,4,2,4_0,4_0,20000.0,0,20000.0,0,1,11,0.0,0.0,0.0,0,1,1782.566446208606,1782.566446208606,0.0 3353,4805,4804,0,0,91,111,71,71,0,2360,0,0,0,0,0,6,0,2,1.5,3655.05812945,0,0,24477.0,5,1,6,4,3,0,0,0,0,0,1,0,0,0,0,0,16318.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3354,4821,4820,8,13,73,111,77,70,0,2387,0,0,0,0,0,4,0,2,1.5,1922.59251662,0,0,24230.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,0,2,16153.333333300001,4,2,4_0,4_0,13000.0,0,13000.0,0,10,10,0.0,0.0,0.0,0,0,1158.6681900355939,1158.6681900355939,0.0 -3355,4827,4826,4,4,41,111,65,71,0,2394,0,0,0,0,2,4,3,5,3.0,4390.68306526,0,0,48760.0,1,2,7,5,4,1,0,0,0,0,1,0,0,0,0,1,16253.333333300001,4,2,4_0,4_0,10781.0,0,10781.0,0,2,5,0.0,0.0,0.0,0,0,960.892442828749,960.892442828749,0.0 -3356,4838,4837,7,7,56,111,74,60,0,2411,0,0,0,0,0,5,0,2,1.5,4585.47617892,0,0,24490.0,4,2,6,4,3,2,0,0,0,0,1,0,0,0,1,1,16326.666666699999,4,2,4_0,4_0,11258.0,0,1000.0,10258,5,5,0.0,0.0,0.0,0,0,1003.4066525708243,89.1283223104303,914.2783302603939 +3354,4821,4820,8,13,73,111,77,70,0,2387,0,0,0,0,0,4,0,2,1.5,1922.59251662,0,0,24230.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,0,2,16153.3333333,4,2,4_0,4_0,13000.0,0,13000.0,0,10,10,0.0,0.0,0.0,0,0,1158.6681900355939,1158.6681900355939,0.0 +3355,4827,4826,4,4,41,111,65,71,0,2394,0,0,0,0,2,4,3,5,3.0,4390.68306526,0,0,48760.0,1,2,7,5,4,1,0,0,0,0,1,0,0,0,0,1,16253.3333333,4,2,4_0,4_0,10781.0,0,10781.0,0,2,5,0.0,0.0,0.0,0,0,960.892442828749,960.892442828749,0.0 +3356,4838,4837,7,7,56,111,74,60,0,2411,0,0,0,0,0,5,0,2,1.5,4585.47617892,0,0,24490.0,4,2,6,4,3,2,0,0,0,0,1,0,0,0,1,1,16326.6666667,4,2,4_0,4_0,11258.0,0,1000.0,10258,5,5,0.0,0.0,0.0,0,0,1003.4066525708243,89.1283223104303,914.2783302603939 3357,4868,4867,6,10,67,300,71,70,0,2456,0,0,0,0,0,5,0,3,2.0,1676.68236559,0,0,31173.0,5,1,0,0,5,2,0,0,1,0,0,0,0,0,1,1,15586.5,4,2,4_0,4_1,55000.0,0,35000.0,20000,3,18,0.0,0.0,0.0,0,1,4847.4288497540665,3084.727449843497,1762.7013999105698 -3358,4869,4868,0,0,43,111,68,10,0,2457,0,0,0,0,1,3,2,3,1.8,3305.87245804,0,0,27510.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,15283.333333300001,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3358,4869,4868,0,0,43,111,68,10,0,2457,0,0,0,0,1,3,2,3,1.8,3305.87245804,0,0,27510.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,15283.3333333,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3359,4878,4877,0,4,42,112,46,41,2,2467,0,200,250,0,2,5,3,5,2.6,2377.19711336,3478,9300,40961.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,1,1,15754.2307692,4,2,4_0,4_1,16334.0,0,12001.0,4333,1,3,210.2,17.5,3.3,0,1,1439.5982333069624,1057.7089750163375,381.889258290625 3360,4886,4885,4,7,26,120,45,20,0,2476,0,99999,0,0,2,2,0,2,1.5,3481.45855143,3121,0,22398.0,1,3,0,3,3,2,0,1,0,1,0,0,0,1,0,2,14932.0,4,2,4_1,4_0,12000.0,0,12000.0,0,4,8,0.0,0.0,0.0,0,1,1069.5398677251637,1069.5398677251637,0.0 3361,4899,4898,6,6,38,112,63,50,0,2493,0,300,0,0,1,4,3,4,1.9,1808.38082686,3224,0,31182.0,1,2,10,0,2,1,0,1,1,0,0,0,0,1,0,1,16411.5789474,4,2,4_1,4_1,45000.0,0,45000.0,0,4,5,218.0,75.0,3.3,1,1,3966.078149798782,3966.078149798782,0.0 -3362,4912,4911,21,21,87,211,75,50,0,2511,0,0,0,424,0,4,0,2,1.5,933.590195193,62,0,23153.0,5,3,3,4,3,1,0,0,0,0,1,0,0,0,0,1,15435.333333300001,4,2,4_0,4_0,11300.0,0,11300.0,0,15,21,0.0,0.0,0.0,0,0,1007.1500421078624,1007.1500421078624,0.0 +3362,4912,4911,21,21,87,211,75,50,0,2511,0,0,0,424,0,4,0,2,1.5,933.590195193,62,0,23153.0,5,3,3,4,3,1,0,0,0,0,1,0,0,0,0,1,15435.3333333,4,2,4_0,4_0,11300.0,0,11300.0,0,15,21,0.0,0.0,0.0,0,0,1007.1500421078624,1007.1500421078624,0.0 3363,4937,4936,4,5,61,111,75,50,0,2549,0,0,0,0,0,6,0,2,1.5,943.050583635,0,0,23616.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,15744.0,4,2,4_0,4_0,17000.0,0,17000.0,0,3,4,0.0,0.0,0.0,0,0,1515.181479277315,1515.181479277315,0.0 3364,4954,4953,19,25,74,111,77,70,0,2575,0,0,0,171,0,4,0,1,1.0,3011.52830254,0,0,15511.0,5,3,10,8,1,1,0,0,0,0,0,0,1,1,1,0,15511.0,4,2,4_1,4_0,900.0,0,0.0,900,8,24,0.0,0.0,0.0,0,0,80.21549007938727,0.0,80.21549007938727 -3365,4962,4961,2,14,44,212,62,50,0,2584,0,0,230,0,3,5,2,4,2.5,993.4869734660001,3120,0,38722.0,1,1,2,0,4,3,0,1,1,0,0,0,0,0,2,1,15488.8,4,2,4_0,4_1,30000.0,0,15000.0,15000,9,15,301.0,105.0,3.3,0,1,2644.052099865855,1322.0260499329274,1322.0260499329274 +3365,4962,4961,2,14,44,212,62,50,0,2584,0,0,230,0,3,5,2,4,2.5,993.486973466,3120,0,38722.0,1,1,2,0,4,3,0,1,1,0,0,0,0,0,2,1,15488.8,4,2,4_0,4_1,30000.0,0,15000.0,15000,9,15,301.0,105.0,3.3,0,1,2644.052099865855,1322.0260499329274,1322.0260499329274 3366,4973,4972,0,11,29,111,52,50,0,2602,0,200,0,126,2,4,3,5,2.4,2614.21333806,1092,0,39144.0,1,3,10,8,4,2,1,1,0,0,0,0,1,1,0,2,16310.0,4,2,4_1,4_0,6000.0,0,6000.0,0,5,9,50.0,28.0,3.31,0,1,534.7699338625819,534.7699338625819,0.0 3367,4978,4977,0,0,29,111,62,60,0,2610,0,100,0,285,2,3,1,3,1.8,3498.31849572,2080,0,29977.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,16653.8888889,4,2,4_0,4_0,15311.0,0,15311.0,0,7,0,228.5,47.5,3.3,0,1,1364.6437428949982,1364.6437428949982,0.0 3368,4980,4979,0,0,79,111,77,70,0,2613,0,0,0,424,0,4,0,1,1.0,3397.69397726,0,0,15810.0,5,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,15810.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -3373,7 +3373,7 @@ 3371,5002,5001,0,0,38,221,53,50,0,2646,0,0,0,0,1,2,0,1,1.0,4332.16151632,0,0,15276.0,1,3,1,1,1,0,0,0,0,1,0,0,0,1,0,0,15276.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 3372,5007,5006,11,17,90,111,78,70,0,2651,0,0,0,0,0,5,0,2,1.5,2638.10856776,0,0,24886.0,5,4,9,7,3,1,0,0,0,0,0,1,0,0,1,0,16590.6666667,4,2,4_0,4_0,4500.0,0,0.0,4500,15,16,0.0,0.0,0.0,0,0,401.0774503969364,0.0,401.0774503969364 3373,5011,5010,2,2,54,111,54,50,0,2658,0,150,0,0,1,3,0,1,1.0,2413.03602077,1047,0,15713.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,15713.0,4,2,4_0,4_0,5000.0,0,0.0,5000,2,2,28.4,120.0,5.56,0,0,445.6416115521515,0.0,445.6416115521515 -3374,5017,5016,4,4,64,111,78,50,0,2667,0,0,0,0,0,5,0,2,1.5,1751.11029621,2288,0,24442.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,16294.666666699999,4,2,4_0,4_0,17000.0,0,17000.0,0,3,4,0.0,0.0,0.0,0,0,1515.181479277315,1515.181479277315,0.0 +3374,5017,5016,4,4,64,111,78,50,0,2667,0,0,0,0,0,5,0,2,1.5,1751.11029621,2288,0,24442.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,16294.6666667,4,2,4_0,4_0,17000.0,0,17000.0,0,3,4,0.0,0.0,0.0,0,0,1515.181479277315,1515.181479277315,0.0 3375,5018,5017,5,14,68,112,77,71,0,2668,0,0,0,0,0,5,0,1,1.0,2191.79415904,1300,0,16077.0,5,1,4,0,1,1,0,0,1,0,0,0,0,0,1,0,16077.0,4,2,4_0,4_1,8000.0,0,0.0,8000,11,12,0.0,0.0,0.0,0,0,705.0805599642279,0.0,705.0805599642279 3376,5023,5022,0,22,63,112,78,71,0,2673,0,0,0,0,0,4,0,2,1.5,2952.4459367,0,0,24054.0,5,3,7,0,3,1,0,0,1,0,0,0,0,1,1,0,16036.0,4,2,4_1,4_1,8000.0,0,0.0,8000,22,22,0.0,0.0,0.0,0,0,705.0805599642279,0.0,705.0805599642279 3377,5024,5023,0,0,87,111,78,70,0,2675,0,0,0,289,0,3,0,1,1.0,2965.63514942,0,0,16690.0,5,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,16690.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -3381,54 +3381,54 @@ 3379,5037,5036,1,1,36,111,67,50,2,2697,0,0,0,0,2,5,2,4,2.1,3381.58914511,0,14200,34580.0,1,3,5,4,4,2,0,0,0,0,1,0,0,1,1,1,16466.6666667,4,2,4_1,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 3380,5055,5054,3,6,59,111,56,60,0,2719,0,0,50,0,1,4,0,1,1.0,3091.65627995,0,0,16838.0,1,1,8,6,1,1,0,1,0,0,1,0,0,0,1,0,16838.0,4,2,4_0,4_0,10258.0,0,0.0,10258,4,9,8.4,40.0,3.3,0,1,914.2783302603939,0.0,914.2783302603939 3381,5062,5061,11,24,45,112,63,50,0,2728,0,700,0,0,2,4,2,4,2.3,1757.13576136,8941,0,35525.0,1,2,7,0,4,3,0,1,1,0,0,0,0,0,0,3,15445.6521739,4,2,4_0,4_1,6859.0,0,6859.0,0,1,19,78.1,46.25,3.3,0,1,604.5184450993299,604.5184450993299,0.0 -3382,5065,5064,10,10,70,120,72,50,0,2733,0,0,0,0,0,6,0,2,1.5,2382.48312846,0,0,23311.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15540.666666699999,4,2,4_0,4_1,6000.0,0,6000.0,0,10,10,0.0,0.0,0.0,0,0,528.8104199731708,528.8104199731708,0.0 +3382,5065,5064,10,10,70,120,72,50,0,2733,0,0,0,0,0,6,0,2,1.5,2382.48312846,0,0,23311.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15540.6666667,4,2,4_0,4_1,6000.0,0,6000.0,0,10,10,0.0,0.0,0.0,0,0,528.8104199731708,528.8104199731708,0.0 3383,5072,5071,5,8,29,111,35,20,0,2746,0,0,500,0,1,2,0,1,1.0,2850.26927177,3952,0,16264.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,16264.0,4,2,4_0,4_0,10000.0,0,0.0,10000,8,8,0.0,40.0,3.3,0,1,891.283223104303,0.0,891.283223104303 -3384,5089,5088,11,13,77,120,75,50,0,2773,0,0,0,0,0,4,0,2,1.5,2325.68282988,3128,0,24413.0,5,1,0,2,3,1,0,0,0,1,0,0,0,0,0,1,16275.333333300001,4,2,4_0,4_0,6444.0,0,6444.0,0,10,11,0.0,0.0,0.0,0,0,574.3429089684129,574.3429089684129,0.0 +3384,5089,5088,11,13,77,120,75,50,0,2773,0,0,0,0,0,4,0,2,1.5,2325.68282988,3128,0,24413.0,5,1,0,2,3,1,0,0,0,1,0,0,0,0,0,1,16275.3333333,4,2,4_0,4_0,6444.0,0,6444.0,0,10,11,0.0,0.0,0.0,0,0,574.3429089684129,574.3429089684129,0.0 3385,5091,5090,0,0,80,111,77,60,0,2775,0,0,0,288,0,2,0,1,1.0,3647.04191742,0,0,16138.0,5,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,16138.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3386,5092,5091,20,20,82,111,77,50,0,2776,0,0,0,0,0,5,0,1,1.0,3412.8018880000004,2080,0,15943.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,15943.0,4,2,4_0,4_0,5000.0,0,0.0,5000,19,19,0.0,0.0,0.0,0,0,445.6416115521515,0.0,445.6416115521515 +3386,5092,5091,20,20,82,111,77,50,0,2776,0,0,0,0,0,5,0,1,1.0,3412.801888,2080,0,15943.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,15943.0,4,2,4_0,4_0,5000.0,0,0.0,5000,19,19,0.0,0.0,0.0,0,0,445.6416115521515,0.0,445.6416115521515 3387,5114,5113,2,2,63,300,56,70,0,2803,0,65,0,0,1,2,0,1,1.0,1607.55652409,1040,0,15748.0,5,3,0,0,1,1,0,1,1,0,0,0,0,1,0,1,15748.0,4,2,4_1,4_1,15101.0,0,15101.0,0,1,2,0.0,0.0,0.0,0,0,1330.9276920024756,1330.9276920024756,0.0 3388,5144,5143,4,4,55,112,52,60,0,285,0,0,80,0,1,5,0,1,1.0,1678.95022372,0,0,15540.0,1,4,8,0,1,1,0,1,1,0,0,0,0,0,1,0,15540.0,4,2,4_0,4_1,10704.0,0,0.0,10704,2,0,80.0,40.0,3.3,0,1,943.3977892321369,0.0,943.3977892321369 3389,5145,5144,0,0,71,111,77,70,0,2850,0,0,0,0,0,5,0,1,1.0,1373.37737353,0,0,16370.0,5,1,7,5,1,0,0,0,0,0,1,0,0,0,0,0,16370.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3390,5163,5162,0,0,63,111,74,10,1,2876,0,2000,0,639,1,3,1,3,2.0,3943.20670479,3432,20500,32006.0,5,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,16003.0,4,2,4_0,4_0,4300.0,0,4300.0,0,1,1,0.0,0.0,0.0,0,1,383.2517859348503,383.2517859348503,0.0 -3391,5169,5168,5,5,86,400,75,70,0,2888,0,0,0,0,0,4,0,2,1.5,1642.0093714000002,0,0,24673.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,16448.6666667,4,2,4_0,4_1,4000.0,0,0.0,4000,5,5,0.0,0.0,0.0,0,0,352.54027998211393,0.0,352.54027998211393 +3391,5169,5168,5,5,86,400,75,70,0,2888,0,0,0,0,0,4,0,2,1.5,1642.0093714,0,0,24673.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,16448.6666667,4,2,4_0,4_1,4000.0,0,0.0,4000,5,5,0.0,0.0,0.0,0,0,352.54027998211393,0.0,352.54027998211393 3392,5174,5173,1,3,60,400,11,71,2,2895,0,0,0,0,2,6,0,3,2.0,1829.00665778,0,9600,31741.0,4,1,0,0,5,1,0,0,1,0,0,0,0,0,0,1,15870.5,4,2,4_0,4_1,25000.0,0,25000.0,0,4,4,56.8,66.6666666667,0.0,0,1,2203.376749888212,2203.376749888212,0.0 3393,5203,5202,6,10,63,111,77,70,0,293,0,0,0,240,0,2,0,1,1.0,2389.3666101,0,0,16044.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,0,1,16044.0,4,2,4_0,4_0,10000.0,0,10000.0,0,7,9,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 -3394,5204,5203,0,0,75,111,78,50,0,2936,0,0,0,0,0,2,0,2,1.5,2271.1748838000003,0,0,24213.0,5,4,8,7,3,0,0,0,0,0,0,1,0,0,0,0,16142.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3394,5204,5203,0,0,75,111,78,50,0,2936,0,0,0,0,0,2,0,2,1.5,2271.1748838,0,0,24213.0,5,4,8,7,3,0,0,0,0,0,0,1,0,0,0,0,16142.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3395,5207,5206,13,18,44,400,68,71,0,294,0,30,200,0,2,4,3,5,3.0,2139.80916303,1300,0,47985.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,15995.0,4,2,4_0,4_1,20709.0,0,9591.0,11118,16,19,47.0,23.75,3.3,1,1,1825.1891645373996,845.3034563271137,979.8857082102858 3396,5210,5209,10,10,42,112,47,50,0,2944,0,0,0,0,2,5,2,4,2.5,1320.40926219,9205,0,38591.0,1,1,8,1,4,2,1,0,0,1,0,0,0,0,1,1,15436.4,4,2,4_0,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 3397,5235,5234,2,3,52,111,33,71,0,298,0,0,0,607,2,4,1,3,2.0,3789.85561772,0,0,33011.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,16505.5,4,2,4_0,4_0,18000.0,0,18000.0,0,8,8,0.0,49.3333333333,0.0,0,1,1604.3098015877456,1604.3098015877456,0.0 3398,5245,5244,5,12,47,221,52,50,0,2992,0,0,120,0,1,4,1,2,1.3,2473.26433707,0,0,21768.0,1,3,1,2,2,1,0,1,0,1,0,0,0,1,1,0,16744.6153846,4,2,4_1,4_0,7300.0,0,0.0,7300,4,12,0.0,9.0,3.3,0,1,650.6367528661413,0.0,650.6367528661413 3399,5256,5255,0,0,75,111,75,50,0,301,0,0,0,0,0,3,0,2,1.5,2228.18007664,0,0,23910.0,5,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,15940.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3400,5264,5263,7,13,46,111,67,50,0,302,0,0,0,211,2,2,0,2,1.5,2267.890452,2600,0,23680.0,1,3,7,5,3,2,0,0,0,0,1,0,0,0,0,2,15786.666666699999,4,2,4_0,4_0,20000.0,0,20000.0,0,5,9,69.2,40.0,0.0,0,1,1782.566446208606,1782.566446208606,0.0 +3400,5264,5263,7,13,46,111,67,50,0,302,0,0,0,211,2,2,0,2,1.5,2267.890452,2600,0,23680.0,1,3,7,5,3,2,0,0,0,0,1,0,0,0,0,2,15786.6666667,4,2,4_0,4_0,20000.0,0,20000.0,0,5,9,69.2,40.0,0.0,0,1,1782.566446208606,1782.566446208606,0.0 3401,5272,5271,6,7,45,120,45,43,0,3028,0,0,0,0,1,7,2,3,2.0,2649.1528219,2080,0,32750.0,1,2,0,0,2,1,1,0,1,0,0,0,0,0,0,1,16375.0,4,2,4_0,4_1,22226.0,0,22226.0,0,2,5,176.5,60.0,3.3,0,1,1958.8900657206161,1958.8900657206161,0.0 -3402,5294,5293,4,8,73,111,77,71,0,3060,0,0,0,0,0,4,0,1,1.0,2691.5115508999997,0,0,15582.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,15582.0,4,2,4_0,4_0,15000.0,0,15000.0,0,10,11,0.0,0.0,0.0,0,0,1336.9248346564543,1336.9248346564543,0.0 +3402,5294,5293,4,8,73,111,77,71,0,3060,0,0,0,0,0,4,0,1,1.0,2691.5115509,0,0,15582.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,15582.0,4,2,4_0,4_0,15000.0,0,15000.0,0,10,11,0.0,0.0,0.0,0,0,1336.9248346564543,1336.9248346564543,0.0 3403,5300,5299,1,1,56,111,47,50,0,3069,0,0,0,0,2,6,1,3,2.0,1524.92853593,0,0,32960.0,1,2,7,5,4,1,1,0,0,0,1,0,0,0,1,0,16480.0,4,2,4_0,4_0,11517.0,0,0.0,11517,3,0,20.1,50.0,2.22,0,1,1026.4908880492258,0.0,1026.4908880492258 3404,5316,5315,4,6,74,111,77,70,0,3090,0,0,0,0,0,5,0,1,1.0,1875.97386092,0,0,15308.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,15308.0,4,2,4_0,4_0,9500.0,0,0.0,9500,6,7,0.0,0.0,0.0,0,0,846.7190619490879,0.0,846.7190619490879 3405,5326,5325,10,19,75,300,78,70,0,3102,0,0,0,0,1,5,1,3,2.0,1135.76004966,0,0,31659.0,5,1,0,0,4,3,0,0,1,0,0,0,0,0,1,2,15829.5,4,2,4_0,4_1,32144.0,0,25144.0,7000,3,10,0.0,0.0,0.0,0,1,2833.013689936268,2216.0681999675685,616.9454899686995 -3406,5340,5339,0,0,66,111,78,50,0,312,0,0,0,13,0,3,0,2,1.5,1961.06543761,0,0,24538.0,5,3,7,5,3,0,0,0,0,0,1,0,0,1,0,0,16358.666666699999,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3406,5340,5339,0,0,66,111,78,50,0,312,0,0,0,13,0,3,0,2,1.5,1961.06543761,0,0,24538.0,5,3,7,5,3,0,0,0,0,0,1,0,0,1,0,0,16358.6666667,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3407,5352,5351,15,17,34,300,53,44,0,3133,0,360,0,0,2,5,2,4,2.1,2566.9256456,4274,0,33675.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,1,1,16035.7142857,4,2,4_1,4_1,30000.0,0,20000.0,10000,8,17,252.8,31.25,3.3,1,1,2644.052099865855,1762.7013999105698,881.3506999552849 3408,5365,5364,8,11,60,112,74,20,0,3150,0,0,0,0,0,7,0,2,1.5,1720.58702419,0,0,25221.0,5,1,10,5,5,1,0,0,0,0,1,0,0,0,1,0,16814.0,4,2,4_0,4_0,7500.0,0,0.0,7500,8,11,0.0,0.0,0.0,0,0,668.4624173282272,0.0,668.4624173282272 -3409,5379,5378,12,12,77,112,74,50,0,3176,0,0,0,0,0,4,0,2,1.5,1524.39811741,0,0,22792.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,1,0,15194.666666699999,4,2,4_0,4_1,10000.0,0,0.0,10000,12,12,0.0,0.0,0.0,0,0,881.3506999552849,0.0,881.3506999552849 -3410,5425,5424,0,0,60,111,78,50,0,3237,0,0,0,0,0,4,0,2,1.5,1033.38386005,0,0,22444.0,5,1,7,5,3,0,0,0,0,0,1,0,0,0,0,0,14962.666666699999,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3409,5379,5378,12,12,77,112,74,50,0,3176,0,0,0,0,0,4,0,2,1.5,1524.39811741,0,0,22792.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,1,0,15194.6666667,4,2,4_0,4_1,10000.0,0,0.0,10000,12,12,0.0,0.0,0.0,0,0,881.3506999552849,0.0,881.3506999552849 +3410,5425,5424,0,0,60,111,78,50,0,3237,0,0,0,0,0,4,0,2,1.5,1033.38386005,0,0,22444.0,5,1,7,5,3,0,0,0,0,0,1,0,0,0,0,0,14962.6666667,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3411,5437,5436,14,15,67,111,77,71,0,3254,0,0,0,315,1,3,1,3,2.0,2498.03231749,1040,0,31864.0,5,3,10,8,4,1,0,0,0,0,0,0,1,1,0,1,15932.0,4,2,4_1,4_0,7666.0,0,7666.0,0,3,15,21.5,15.0,3.3,0,1,683.2577188317587,683.2577188317587,0.0 -3412,5482,5481,5,19,39,400,63,43,0,3307,0,0,100,0,2,4,4,6,3.1,4628.65356862,250,0,46708.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,15067.096774200001,4,2,4_0,4_1,20500.0,0,18000.0,2500,5,18,0.0,10.0,3.3,0,1,1806.7689349083341,1586.431259919513,220.33767498882122 +3412,5482,5481,5,19,39,400,63,43,0,3307,0,0,100,0,2,4,4,6,3.1,4628.65356862,250,0,46708.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,15067.0967742,4,2,4_0,4_1,20500.0,0,18000.0,2500,5,18,0.0,10.0,3.3,0,1,1806.7689349083341,1586.431259919513,220.33767498882122 3413,5487,5486,2,10,39,111,62,44,0,3315,0,500,0,137,2,3,0,2,1.5,2063.95878304,1040,0,25036.0,4,3,8,6,3,1,0,1,0,0,1,0,0,1,0,1,16690.6666667,4,2,4_1,4_0,37226.0,0,37226.0,0,2,12,120.0,40.0,3.3,0,1,3317.8909263280784,3317.8909263280784,0.0 -3414,5495,5494,6,20,39,300,62,31,0,3329,0,500,150,0,2,6,2,4,2.3,1311.62798857,4161,0,38168.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,16594.782608700003,4,2,4_0,4_1,20500.0,0,18000.0,2500,5,18,0.0,10.0,3.3,0,1,1806.7689349083341,1586.431259919513,220.33767498882122 +3414,5495,5494,6,20,39,300,62,31,0,3329,0,500,150,0,2,6,2,4,2.3,1311.62798857,4161,0,38168.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,16594.7826087,4,2,4_0,4_1,20500.0,0,18000.0,2500,5,18,0.0,10.0,3.3,0,1,1806.7689349083341,1586.431259919513,220.33767498882122 3415,5498,5497,1,1,22,112,52,41,0,3338,0,250,0,0,2,4,1,3,1.8,2622.1869449,0,0,29087.0,1,2,9,0,4,1,1,1,1,0,0,0,0,1,0,1,16159.4444444,4,2,4_1,4_1,9000.0,0,9000.0,0,2,0,0.0,16.6666666667,0.0,0,1,793.2156299597565,793.2156299597565,0.0 3416,5499,5498,2,2,47,112,42,12,0,3339,0,350,0,0,2,8,3,5,2.8,928.600555663,3668,0,43365.0,1,1,8,0,4,2,1,0,1,0,0,0,0,0,1,1,15487.5,4,2,4_0,4_1,30000.0,0,30000.0,0,2,3,369.2,60.0,3.31,0,1,2644.052099865855,2644.052099865855,0.0 -3417,5501,5500,1,7,75,400,78,71,2,3342,0,0,0,0,0,5,0,2,1.5,2503.10939777,0,7000,23407.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,15604.666666699999,4,2,4_0,4_1,20000.0,0,20000.0,0,3,6,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 +3417,5501,5500,1,7,75,400,78,71,2,3342,0,0,0,0,0,5,0,2,1.5,2503.10939777,0,7000,23407.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,15604.6666667,4,2,4_0,4_1,20000.0,0,20000.0,0,3,6,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 3418,5512,5511,20,32,49,112,52,60,0,336,0,208,0,0,1,8,0,1,1.0,1682.42213324,2416,0,15630.0,1,2,7,0,1,1,0,1,1,0,0,0,0,0,0,1,15630.0,4,2,4_0,4_1,15000.0,0,15000.0,0,6,16,0.0,0.0,0.0,0,1,1322.0260499329274,1322.0260499329274,0.0 3419,5539,5538,11,12,60,112,78,60,0,3393,0,180,0,0,1,5,1,3,2.0,3122.52577279,2809,0,33247.0,5,2,7,0,4,3,0,0,1,0,0,0,0,0,1,2,16623.5,4,2,4_0,4_1,32144.0,0,25144.0,7000,3,10,0.0,0.0,0.0,0,1,2833.013689936268,2216.0681999675685,616.9454899686995 3420,5544,5543,2,4,31,111,38,20,0,3400,0,100,0,0,2,4,2,4,2.1,1882.81913477,0,0,35166.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,16745.7142857,4,2,4_0,4_0,41353.0,0,41353.0,0,4,6,0.0,2.5,0.0,1,1,3685.7235125032244,3685.7235125032244,0.0 -3421,5578,5577,3,3,64,211,77,71,0,3449,0,0,0,0,1,5,0,2,1.5,3014.63777977,0,0,24374.0,5,1,3,3,3,2,0,0,0,1,0,0,0,0,0,2,16249.333333300001,4,2,4_0,4_0,33000.0,0,33000.0,0,4,4,171.5,90.0,3.3,0,1,2941.2346362442,2941.2346362442,0.0 -3422,5590,5589,1,11,33,111,45,20,2,3469,0,0,0,500,2,2,0,2,1.5,3547.55227589,0,3500,22996.0,1,3,9,7,5,1,0,1,0,0,0,1,0,0,0,1,15330.666666699999,4,2,4_0,4_0,37226.0,0,37226.0,0,2,12,120.0,40.0,3.3,0,1,3317.8909263280784,3317.8909263280784,0.0 +3421,5578,5577,3,3,64,211,77,71,0,3449,0,0,0,0,1,5,0,2,1.5,3014.63777977,0,0,24374.0,5,1,3,3,3,2,0,0,0,1,0,0,0,0,0,2,16249.3333333,4,2,4_0,4_0,33000.0,0,33000.0,0,4,4,171.5,90.0,3.3,0,1,2941.2346362442,2941.2346362442,0.0 +3422,5590,5589,1,11,33,111,45,20,2,3469,0,0,0,500,2,2,0,2,1.5,3547.55227589,0,3500,22996.0,1,3,9,7,5,1,0,1,0,0,0,1,0,0,0,1,15330.6666667,4,2,4_0,4_0,37226.0,0,37226.0,0,2,12,120.0,40.0,3.3,0,1,3317.8909263280784,3317.8909263280784,0.0 3423,5591,5590,0,0,42,111,62,31,0,347,0,0,0,278,1,2,0,1,1.0,3020.16474157,0,0,15640.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15640.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3424,5613,5612,0,0,86,112,77,70,0,3498,0,0,0,0,0,5,0,1,1.0,5565.0419153,0,0,14931.0,5,4,8,3,1,0,0,0,0,1,0,0,0,0,0,0,14931.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3425,5620,5619,7,7,31,111,52,50,0,3506,0,0,200,0,2,5,2,4,2.1,1878.23612855,0,0,34619.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,2,0,16485.238095200002,4,2,4_0,4_0,4657.0,0,0.0,4657,1,6,61.5,15.0,3.3,0,1,415.07059699967385,0.0,415.07059699967385 +3425,5620,5619,7,7,31,111,52,50,0,3506,0,0,200,0,2,5,2,4,2.1,1878.23612855,0,0,34619.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,2,0,16485.2380952,4,2,4_0,4_0,4657.0,0,0.0,4657,1,6,61.5,15.0,3.3,0,1,415.07059699967385,0.0,415.07059699967385 3426,5632,5631,1,16,76,111,78,50,2,352,0,0,0,502,0,3,0,2,1.5,5611.58001699,4802,3300,23880.0,5,3,4,4,3,1,0,0,0,0,1,0,0,0,0,1,15920.0,4,2,4_0,4_0,25882.0,0,25882.0,0,8,14,0.0,0.0,0.0,0,0,2306.819238038557,2306.819238038557,0.0 3427,5633,5632,0,0,64,111,77,50,0,3521,0,0,0,0,0,3,0,1,1.0,2949.09122825,0,0,15195.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15195.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3428,5644,5643,0,0,35,111,43,33,1,3533,0,0,0,0,2,4,3,5,2.4,3777.43981118,0,16100,38550.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,0,1,16062.5,4,2,4_0,4_0,18625.0,0,18625.0,0,3,0,83.0,46.0,5.56,0,0,1660.0150030317645,1660.0150030317645,0.0 -3429,5646,5645,6,6,65,300,72,50,0,3535,0,0,0,0,0,4,0,2,1.5,1981.84741292,0,0,23254.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15502.666666699999,4,2,4_0,4_1,10226.0,0,10226.0,0,1,5,0.0,0.0,0.0,0,0,901.2692257742743,901.2692257742743,0.0 +3429,5646,5645,6,6,65,300,72,50,0,3535,0,0,0,0,0,4,0,2,1.5,1981.84741292,0,0,23254.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15502.6666667,4,2,4_0,4_1,10226.0,0,10226.0,0,1,5,0.0,0.0,0.0,0,0,901.2692257742743,901.2692257742743,0.0 3430,5661,5660,3,5,55,111,33,11,0,3553,0,300,0,0,2,7,1,3,2.0,2159.97629756,4302,0,32007.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,1,1,16003.5,4,2,4_0,4_0,18000.0,0,18000.0,0,8,8,0.0,49.3333333333,0.0,0,1,1604.3098015877456,1604.3098015877456,0.0 3431,5662,5661,8,11,30,112,52,50,0,3554,0,400,0,0,2,5,2,4,2.1,2549.22197095,0,0,35216.0,1,2,6,0,4,3,0,1,1,0,0,0,0,0,0,3,16769.5238095,4,2,4_0,4_1,35000.0,0,35000.0,0,11,15,0.0,0.0,0.0,0,1,3084.727449843497,3084.727449843497,0.0 3432,5727,5726,18,18,44,111,62,31,0,3647,0,360,0,0,2,7,3,5,2.6,1372.13278213,0,0,42761.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,16446.5384615,4,2,4_0,4_0,9000.0,0,9000.0,0,6,16,135.0,50.0,3.31,0,0,802.1549007938728,802.1549007938728,0.0 @@ -3439,40 +3439,40 @@ 3437,5785,5784,0,0,82,111,77,50,0,3721,0,0,0,0,0,3,0,1,1.0,3047.85435695,0,0,16268.0,6,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16268.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3438,5793,5792,0,10,44,111,21,71,2,3730,0,99999,0,0,2,5,3,5,2.8,3153.95272628,0,2900,44261.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,15807.5,4,2,4_0,4_0,15311.0,0,15311.0,0,7,13,48.2,18.0,1.1,0,1,1364.6437428949982,1364.6437428949982,0.0 3439,5804,5803,11,15,62,111,63,71,0,3743,0,0,0,0,2,4,0,3,2.0,6326.95749755,2600,0,33413.0,1,1,10,8,5,1,0,0,0,0,0,0,1,0,1,0,16706.5,4,2,4_0,4_0,5000.0,0,0.0,5000,1,17,58.8,36.6666666667,2.2,0,0,445.6416115521515,0.0,445.6416115521515 -3440,5805,5804,5,9,81,111,75,70,0,3746,0,0,0,0,0,5,0,2,1.5,3484.56747127,0,0,24245.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,16163.333333300001,4,2,4_0,4_0,1200.0,0,0.0,1200,8,9,0.0,0.0,0.0,0,0,106.95398677251636,0.0,106.95398677251636 +3440,5805,5804,5,9,81,111,75,70,0,3746,0,0,0,0,0,5,0,2,1.5,3484.56747127,0,0,24245.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,16163.3333333,4,2,4_0,4_0,1200.0,0,0.0,1200,8,9,0.0,0.0,0.0,0,0,106.95398677251636,0.0,106.95398677251636 3441,5816,5815,5,7,32,111,52,70,0,3760,0,0,0,45,1,4,2,3,1.6,2440.83314025,2080,0,24224.0,1,3,10,8,2,1,0,0,0,0,0,0,1,1,0,1,15140.0,4,2,4_1,4_0,16337.0,0,16337.0,0,6,6,60.0,90.0,3.3,0,1,1456.0894015854997,1456.0894015854997,0.0 3442,5823,5822,1,14,32,211,63,50,2,377,0,150,0,378,2,2,0,2,1.5,2072.71832011,2293,850,24096.0,1,3,3,3,3,1,0,1,0,1,0,0,0,0,0,1,16064.0,4,2,4_0,4_0,37226.0,0,37226.0,0,2,12,120.0,40.0,3.3,0,1,3317.8909263280784,3317.8909263280784,0.0 -3443,5832,5831,2,2,81,112,71,70,0,3782,0,0,0,0,0,5,0,2,1.5,2465.21666278,3090,0,23698.0,5,1,4,0,3,1,0,0,1,0,0,0,0,0,0,1,15798.666666699999,4,2,4_0,4_1,3200.0,0,3200.0,0,1,1,0.0,0.0,0.0,0,0,282.03222398569113,282.03222398569113,0.0 +3443,5832,5831,2,2,81,112,71,70,0,3782,0,0,0,0,0,5,0,2,1.5,2465.21666278,3090,0,23698.0,5,1,4,0,3,1,0,0,1,0,0,0,0,0,0,1,15798.6666667,4,2,4_0,4_1,3200.0,0,3200.0,0,1,1,0.0,0.0,0.0,0,0,282.03222398569113,282.03222398569113,0.0 3444,5845,5844,4,4,70,111,77,60,0,3796,0,0,0,0,0,5,0,1,1.0,1883.55350398,0,0,15855.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,15855.0,4,2,4_0,4_0,8000.0,0,0.0,8000,3,4,0.0,0.0,0.0,0,0,713.0265784834424,0.0,713.0265784834424 3445,5862,5861,3,3,42,112,48,43,0,3816,0,0,0,0,2,9,4,6,3.3,1509.38204814,2339,0,52219.0,1,4,6,0,4,2,0,0,1,0,0,0,0,0,0,2,15823.9393939,4,2,4_0,4_1,32044.0,0,32044.0,0,2,2,0.0,0.0,0.0,0,1,2824.2001829367146,2824.2001829367146,0.0 3446,5884,5883,11,11,68,120,72,50,0,3848,0,0,0,0,0,4,0,2,1.5,1203.07175635,4004,0,24601.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,16400.6666667,4,2,4_0,4_1,5300.0,0,5000.0,300,6,12,0.0,0.0,0.0,0,0,467.11587097630104,440.67534997764244,26.440520998658545 -3447,5889,5888,7,12,40,112,64,71,0,3856,0,220,250,0,2,5,6,8,3.7,955.781665203,0,0,59977.0,1,3,6,0,4,2,0,1,1,0,0,0,0,1,1,1,16210.0,4,2,4_1,4_1,8000.0,0,0.0,8000,9,9,50.4,12.857142857100001,3.31,0,1,705.0805599642279,0.0,705.0805599642279 +3447,5889,5888,7,12,40,112,64,71,0,3856,0,220,250,0,2,5,6,8,3.7,955.781665203,0,0,59977.0,1,3,6,0,4,2,0,1,1,0,0,0,0,1,1,1,16210.0,4,2,4_1,4_1,8000.0,0,0.0,8000,9,9,50.4,12.8571428571,3.31,0,1,705.0805599642279,0.0,705.0805599642279 3448,5896,5895,2,11,27,111,46,42,0,3867,0,0,220,385,1,2,0,1,1.0,4067.77887617,2715,0,15804.0,1,3,8,6,1,1,0,1,0,0,1,0,0,1,1,0,15804.0,4,2,4_1,4_0,10000.0,0,0.0,10000,1,12,0.0,10.0,3.3,0,0,891.283223104303,0.0,891.283223104303 3449,5918,5917,0,8,26,400,67,71,2,3893,0,300,100,0,2,3,1,3,1.8,4038.30635637,2184,1700,29699.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,16499.4444444,4,2,4_0,4_1,32572.0,0,22572.0,10000,1,9,127.0,16.6666666667,0.0,0,1,2870.735499894354,1989.384799939069,881.3506999552849 3450,5922,5921,5,7,38,111,56,50,0,3898,0,0,0,0,1,3,2,3,1.6,2769.35703534,2083,0,25556.0,1,4,10,8,2,1,0,0,0,0,0,0,1,0,0,1,15972.5,4,2,4_0,4_0,12000.0,0,12000.0,0,7,7,0.0,0.0,0.0,0,0,1069.5398677251637,1069.5398677251637,0.0 -3451,5925,5924,35,35,63,112,71,71,0,3905,0,0,0,0,0,5,0,2,1.5,3509.65006999,3120,0,23236.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,1,1,15490.666666699999,4,2,4_0,4_1,10100.0,0,10000.0,100,10,23,0.0,0.0,0.0,0,0,890.1642069548377,881.3506999552849,8.813506999552848 +3451,5925,5924,35,35,63,112,71,71,0,3905,0,0,0,0,0,5,0,2,1.5,3509.65006999,3120,0,23236.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,1,1,15490.6666667,4,2,4_0,4_1,10100.0,0,10000.0,100,10,23,0.0,0.0,0.0,0,0,890.1642069548377,881.3506999552849,8.813506999552848 3452,5941,5940,17,17,47,111,47,31,0,3925,0,100,0,0,2,5,2,4,2.5,5003.36230807,0,0,39426.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,15770.4,4,2,4_0,4_0,1500.0,0,1500.0,0,6,17,87.0,45.0,2.2,0,1,133.69248346564547,133.69248346564547,0.0 -3453,5953,5952,19,21,62,300,78,70,0,3939,0,0,0,0,0,4,0,2,1.5,2288.81975746,0,0,22547.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,15031.333333300001,4,2,4_0,4_1,12000.0,0,9000.0,3000,8,21,0.0,0.0,0.0,0,0,1057.6208399463417,793.2156299597565,264.4052099865854 +3453,5953,5952,19,21,62,300,78,70,0,3939,0,0,0,0,0,4,0,2,1.5,2288.81975746,0,0,22547.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,15031.3333333,4,2,4_0,4_1,12000.0,0,9000.0,3000,8,21,0.0,0.0,0.0,0,0,1057.6208399463417,793.2156299597565,264.4052099865854 3454,5976,5975,0,29,41,111,64,50,2,3971,0,10,0,0,1,4,3,5,3.0,2010.80074209,2678,2000,45678.0,1,3,7,6,4,3,0,0,0,0,1,0,0,1,1,2,15226.0,4,2,4_1,4_0,1500.0,0,1500.0,0,17,28,0.0,0.0,0.0,0,0,133.69248346564547,133.69248346564547,0.0 3455,5993,5992,0,3,51,111,56,60,0,3997,0,0,0,967,1,3,4,6,3.1,2368.25830895,0,0,50416.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,1,0,16263.2258065,4,2,4_1,4_0,16666.0,0,0.0,16666,3,6,0.0,0.0,0.0,0,0,1485.4126196256314,0.0,1485.4126196256314 3456,6008,6007,5,9,80,300,86,41,0,4018,0,0,0,0,0,5,0,1,1.0,2903.55632282,0,0,15688.0,6,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,15688.0,4,2,4_0,4_1,9000.0,0,9000.0,0,5,5,0.0,0.0,0.0,0,0,793.2156299597565,793.2156299597565,0.0 -3457,6029,6028,11,11,63,111,75,50,0,4049,0,0,0,0,0,4,0,2,1.5,2078.54494768,1664,0,24425.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,16283.333333300001,4,2,4_0,4_0,20000.0,0,20000.0,0,8,9,0.0,0.0,0.0,0,0,1782.566446208606,1782.566446208606,0.0 +3457,6029,6028,11,11,63,111,75,50,0,4049,0,0,0,0,0,4,0,2,1.5,2078.54494768,1664,0,24425.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,16283.3333333,4,2,4_0,4_0,20000.0,0,20000.0,0,8,9,0.0,0.0,0.0,0,0,1782.566446208606,1782.566446208606,0.0 3458,6033,6032,16,16,48,120,11,50,0,4056,0,500,0,0,2,6,2,4,2.5,1130.19277206,6718,0,39352.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,15740.8,4,2,4_0,4_1,20000.0,0,20000.0,0,2,16,166.0,61.3333333333,1.1,0,1,1762.7013999105698,1762.7013999105698,0.0 3459,6064,6063,19,19,77,112,78,50,0,4095,0,0,0,0,0,5,0,2,1.5,2360.99344774,0,0,22734.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,1,0,15156.0,4,2,4_0,4_1,10884.0,0,0.0,10884,4,19,0.0,0.0,0.0,0,0,959.2621018313321,0.0,959.2621018313321 -3460,6080,6079,1,8,42,111,52,33,2,4117,0,4,0,616,1,3,1,2,1.5,4681.1400656999995,0,4000,22330.0,1,3,10,8,2,1,0,1,0,0,0,0,1,1,0,1,14886.666666699999,4,2,4_1,4_0,2000.0,0,2000.0,0,8,8,0.0,40.0,3.3,0,1,178.2566446208606,178.2566446208606,0.0 -3461,6083,6082,6,11,53,112,64,50,0,412,0,99999,0,0,3,6,2,4,2.3,1036.94200237,1820,0,36184.0,1,2,7,0,4,3,0,0,1,0,0,0,0,0,0,3,15732.173912999999,4,2,4_0,4_1,20000.0,0,20000.0,0,2,8,0.0,0.0,0.0,0,1,1762.7013999105698,1762.7013999105698,0.0 -3462,6095,6094,4,17,33,120,46,50,0,4133,0,0,0,0,2,5,3,5,2.4,1413.69646814,3120,0,37649.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,0,2,15687.083333300001,4,2,4_0,4_1,30000.0,0,30000.0,0,3,17,413.5,44.0,3.3,0,1,2644.052099865855,2644.052099865855,0.0 +3460,6080,6079,1,8,42,111,52,33,2,4117,0,4,0,616,1,3,1,2,1.5,4681.1400657,0,4000,22330.0,1,3,10,8,2,1,0,1,0,0,0,0,1,1,0,1,14886.6666667,4,2,4_1,4_0,2000.0,0,2000.0,0,8,8,0.0,40.0,3.3,0,1,178.2566446208606,178.2566446208606,0.0 +3461,6083,6082,6,11,53,112,64,50,0,412,0,99999,0,0,3,6,2,4,2.3,1036.94200237,1820,0,36184.0,1,2,7,0,4,3,0,0,1,0,0,0,0,0,0,3,15732.173913,4,2,4_0,4_1,20000.0,0,20000.0,0,2,8,0.0,0.0,0.0,0,1,1762.7013999105698,1762.7013999105698,0.0 +3462,6095,6094,4,17,33,120,46,50,0,4133,0,0,0,0,2,5,3,5,2.4,1413.69646814,3120,0,37649.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,0,2,15687.0833333,4,2,4_0,4_1,30000.0,0,30000.0,0,3,17,413.5,44.0,3.3,0,1,2644.052099865855,2644.052099865855,0.0 3463,6097,6096,0,12,47,111,55,71,2,4138,0,0,80,317,2,3,2,4,2.3,3387.39433182,1040,2300,35282.0,1,3,10,8,5,1,0,1,0,0,0,0,1,1,1,0,15340.0,4,2,4_1,4_0,7500.0,0,0.0,7500,6,8,0.0,3.33333333333,0.0,0,0,668.4624173282272,0.0,668.4624173282272 -3464,6107,6106,1,6,49,111,63,50,2,4150,0,350,0,0,3,5,2,4,2.5,1511.0525155999999,390,8250,41810.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,16724.0,4,2,4_0,4_0,10000.0,0,10000.0,0,4,4,148.0,35.0,3.3,1,1,891.283223104303,891.283223104303,0.0 +3464,6107,6106,1,6,49,111,63,50,2,4150,0,350,0,0,3,5,2,4,2.5,1511.0525156,390,8250,41810.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,16724.0,4,2,4_0,4_0,10000.0,0,10000.0,0,4,4,148.0,35.0,3.3,1,1,891.283223104303,891.283223104303,0.0 3465,6110,6109,7,7,31,111,46,31,0,4154,0,35,0,0,2,4,1,3,1.8,1821.70283239,5565,0,28021.0,1,3,4,4,4,2,0,1,0,0,1,0,0,0,0,2,15567.2222222,4,2,4_0,4_0,16000.0,0,16000.0,0,2,6,233.5,32.6666666667,3.3,1,1,1426.053156966885,1426.053156966885,0.0 3466,6150,6149,8,16,51,111,56,50,0,4218,0,0,180,264,1,4,0,1,1.0,1711.84620832,0,0,16020.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,16020.0,4,2,4_0,4_0,2000.0,0,0.0,2000,14,19,0.0,20.0,1.1,0,0,178.2566446208606,0.0,178.2566446208606 3467,6155,6154,0,15,32,211,54,20,0,4226,0,0,0,331,1,2,0,1,1.0,2368.01491767,0,0,16210.0,1,3,1,3,1,1,0,0,0,1,0,0,0,0,1,0,16210.0,4,2,4_0,4_0,12000.0,0,0.0,12000,6,16,27.0,30.0,3.3,0,1,1069.5398677251637,0.0,1069.5398677251637 3468,6175,6174,13,14,74,111,72,50,0,4251,0,0,0,0,0,4,0,2,1.5,1099.41995817,0,0,25162.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,16774.6666667,4,2,4_0,4_0,25882.0,0,25882.0,0,8,14,0.0,0.0,0.0,0,0,2306.819238038557,2306.819238038557,0.0 3469,6184,6183,2,14,28,112,63,71,0,4260,0,0,200,0,1,5,2,4,2.1,1174.13614498,2300,0,35403.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,1,1,16858.5714286,4,2,4_0,4_1,55000.0,40000,15000.0,0,10,11,0.0,2.5,0.0,0,1,4847.4288497540665,1322.0260499329274,0.0 3470,6201,6200,6,13,76,111,77,70,0,4283,0,0,0,0,0,3,0,2,1.5,1169.42769727,0,0,23010.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,1,0,15340.0,4,2,4_0,4_0,10000.0,0,0.0,10000,12,12,0.0,0.0,0.0,0,0,891.283223104303,0.0,891.283223104303 -3471,6206,6205,0,0,45,111,52,10,0,4293,0,0,0,40,1,3,1,2,1.5,2797.44640359,0,0,23206.0,1,3,6,5,2,0,0,0,0,0,1,0,0,1,0,0,15470.666666699999,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,60.0,5.58,0,0,0.0,0.0,0.0 +3471,6206,6205,0,0,45,111,52,10,0,4293,0,0,0,40,1,3,1,2,1.5,2797.44640359,0,0,23206.0,1,3,6,5,2,0,0,0,0,0,1,0,0,1,0,0,15470.6666667,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,60.0,5.58,0,0,0.0,0.0,0.0 3472,6211,6210,0,0,72,111,71,50,0,4298,0,0,0,0,0,3,0,1,1.0,2541.05343863,0,0,14901.0,5,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,14901.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3473,6217,6216,3,17,33,112,52,42,0,4304,0,120,0,0,1,3,1,3,1.8,2445.66221064,2029,0,28374.0,1,1,6,0,4,2,0,0,1,0,0,0,0,0,1,1,15763.333333300001,4,2,4_0,4_1,5000.0,0,0.0,5000,11,16,0.0,0.0,0.0,0,0,440.67534997764244,0.0,440.67534997764244 +3473,6217,6216,3,17,33,112,52,42,0,4304,0,120,0,0,1,3,1,3,1.8,2445.66221064,2029,0,28374.0,1,1,6,0,4,2,0,0,1,0,0,0,0,0,1,1,15763.3333333,4,2,4_0,4_1,5000.0,0,0.0,5000,11,16,0.0,0.0,0.0,0,0,440.67534997764244,0.0,440.67534997764244 3474,6218,6217,0,0,37,111,47,12,0,4306,0,0,0,450,1,1,0,1,1.0,3011.2058779,0,0,16660.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16660.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,120.0,5.56,0,0,0.0,0.0,0.0 3475,6223,6222,11,21,65,112,77,50,0,4311,0,0,0,416,0,3,0,1,1.0,2035.55333092,0,0,15354.0,5,3,8,1,1,1,0,0,0,1,0,0,0,1,1,0,15354.0,4,2,4_1,4_0,3600.0,0,0.0,3600,7,17,0.0,0.0,0.0,0,0,320.86196031754906,0.0,320.86196031754906 3476,6242,6241,0,14,30,400,21,43,2,4331,0,400,0,0,1,11,0,1,1.0,3109.83726404,1309,1850,16342.0,1,4,0,0,1,1,0,1,1,0,0,0,0,0,0,1,16342.0,4,2,4_0,4_1,44572.0,0,44572.0,0,1,15,70.0,8.0,3.3,0,1,3928.356339840696,3928.356339840696,0.0 @@ -3482,23 +3482,23 @@ 3480,6263,6262,0,0,70,111,78,71,0,4363,0,0,0,0,1,3,1,3,2.0,7291.15348178,0,0,31393.0,5,1,10,8,4,0,0,0,0,0,0,0,1,0,0,0,15696.5,4,2,4_0,4_0,0.0,0,0.0,0,0,0,16.5,15.0,0.0,0,0,0.0,0.0,0.0 3481,6264,6263,8,10,73,112,78,71,0,4364,0,0,0,0,0,7,0,2,1.5,2545.20694243,0,0,25304.0,5,1,5,0,3,1,0,0,1,0,0,0,0,0,0,1,16869.3333333,4,2,4_0,4_1,6000.0,0,6000.0,0,10,10,0.0,0.0,0.0,0,0,528.8104199731708,528.8104199731708,0.0 3482,6284,6283,1,6,47,112,67,71,2,4393,0,110,50,0,3,5,3,5,2.8,3036.21561257,1040,3500,46710.0,1,2,5,0,4,2,0,1,1,0,0,0,0,1,1,1,16682.1428571,4,2,4_1,4_1,13500.0,0,3500.0,10000,0,0,104.6,18.0,3.3,0,1,1189.8234449396346,308.47274498434973,881.3506999552849 -3483,6290,6289,1,14,57,111,67,50,2,44,0,0,120,452,2,3,0,2,1.5,1096.24232562,0,1500,23296.0,4,3,6,4,3,1,0,1,0,0,1,0,0,0,1,0,15530.666666699999,4,2,4_0,4_0,8000.0,0,0.0,8000,15,15,102.5,40.0,3.32,0,0,713.0265784834424,0.0,713.0265784834424 +3483,6290,6289,1,14,57,111,67,50,2,44,0,0,120,452,2,3,0,2,1.5,1096.24232562,0,1500,23296.0,4,3,6,4,3,1,0,1,0,0,1,0,0,0,1,0,15530.6666667,4,2,4_0,4_0,8000.0,0,0.0,8000,15,15,102.5,40.0,3.32,0,0,713.0265784834424,0.0,713.0265784834424 3484,6299,6298,0,0,53,111,52,42,0,4412,0,0,0,335,2,3,2,4,2.5,2084.34456944,0,0,41142.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,16456.8,4,2,4_0,4_0,0.0,0,0.0,0,0,0,38.0,27.5,5.5,0,0,0.0,0.0,0.0 3485,6318,6317,16,16,51,112,56,50,0,444,0,1000,200,0,3,4,2,4,2.5,1409.93683077,1976,0,38865.0,1,2,6,0,4,3,0,1,1,0,0,0,0,0,1,2,15546.0,4,2,4_0,4_1,30375.0,0,20375.0,10000,2,16,133.0,60.0,3.3,0,1,2677.102751114178,1795.752051158893,881.3506999552849 3486,6331,6330,19,19,77,111,78,50,0,446,0,0,0,0,1,3,0,2,1.5,4754.70006948,0,0,23589.0,5,4,7,5,3,1,0,0,0,0,1,0,0,0,1,0,15726.0,4,2,4_0,4_0,12000.0,0,0.0,12000,5,18,0.0,0.0,0.0,1,0,1069.5398677251637,0.0,1069.5398677251637 3487,6334,6333,14,16,68,300,71,70,0,4463,0,0,0,0,0,5,0,1,1.0,3344.80566088,0,0,15062.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,0,1,15062.0,4,2,4_0,4_1,3500.0,0,3500.0,0,8,14,0.0,0.0,0.0,0,0,308.47274498434973,308.47274498434973,0.0 -3488,6337,6336,2,6,43,300,52,50,0,4467,0,250,5,0,3,6,3,5,2.6,1125.74416781,0,0,43495.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,1,2,16728.846153799997,4,2,4_0,4_1,77226.0,0,77226.0,0,2,6,308.2,35.0,0.0,0,1,6806.318915474683,6806.318915474683,0.0 +3488,6337,6336,2,6,43,300,52,50,0,4467,0,250,5,0,3,6,3,5,2.6,1125.74416781,0,0,43495.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,1,2,16728.8461538,4,2,4_0,4_1,77226.0,0,77226.0,0,2,6,308.2,35.0,0.0,0,1,6806.318915474683,6806.318915474683,0.0 3489,6343,6342,2,7,45,111,43,50,0,4475,0,0,0,0,1,4,1,2,1.3,4131.5155805,0,0,21595.0,1,3,9,7,2,1,0,0,0,0,0,1,0,0,0,1,16611.5384615,4,2,4_0,4_0,115000.0,0,115000.0,0,6,6,0.0,15.0,3.31,0,1,10249.757065699485,10249.757065699485,0.0 3490,6361,6360,1,35,27,111,63,43,2,4513,0,150,0,493,1,3,0,1,1.0,3086.37331284,2878,14000,16808.0,1,3,9,7,1,2,0,0,0,0,0,1,0,0,1,1,16808.0,4,2,4_0,4_0,20000.0,0,20000.0,0,7,18,0.0,25.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 -3491,6369,6368,5,8,38,400,52,50,0,4529,0,300,0,0,2,6,3,5,2.8,1230.3275597000002,5460,0,42415.0,1,3,0,0,4,3,0,0,1,0,0,0,0,0,0,3,15148.2142857,4,2,4_0,4_1,14818.0,0,14818.0,0,4,12,298.1,50.0,3.3,0,1,1305.9854671937412,1305.9854671937412,0.0 +3491,6369,6368,5,8,38,400,52,50,0,4529,0,300,0,0,2,6,3,5,2.8,1230.3275597,5460,0,42415.0,1,3,0,0,4,3,0,0,1,0,0,0,0,0,0,3,15148.2142857,4,2,4_0,4_1,14818.0,0,14818.0,0,4,12,298.1,50.0,3.3,0,1,1305.9854671937412,1305.9854671937412,0.0 3492,6385,6384,3,19,54,120,37,70,0,4555,0,0,0,590,3,5,2,4,2.5,2830.6105085,0,0,40759.0,1,3,0,2,4,2,0,0,0,1,0,0,0,0,1,1,16303.6,4,2,4_0,4_0,2500.0,0,0.0,2500,15,15,0.0,0.0,0.0,0,1,222.82080577607576,0.0,222.82080577607576 3493,6395,6394,0,0,40,221,68,71,0,4568,0,0,0,0,1,2,0,1,1.0,5242.33226431,1560,0,15404.0,1,3,1,1,1,0,0,0,0,1,0,0,0,1,0,0,15404.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,14.0,1.1,0,0,0.0,0.0,0.0 3494,6416,6415,9,10,62,111,72,50,0,4595,0,30,0,298,1,4,1,3,1.8,1692.05011828,1820,0,28160.0,5,3,4,4,5,2,0,0,0,0,1,0,0,1,1,1,15644.4444444,4,2,4_1,4_0,20000.0,0,20000.0,0,1,11,0.0,0.0,0.0,0,1,1782.566446208606,1782.566446208606,0.0 -3495,6419,6418,3,10,46,112,65,70,0,4598,0,500,0,0,4,7,4,7,3.6,963.1241663889999,5926,0,57710.0,1,2,10,0,5,3,0,1,1,0,0,0,0,0,0,3,16030.5555556,4,2,4_0,4_1,14844.0,0,14844.0,0,7,12,268.4,88.0,3.3,0,1,1308.276979013625,1308.276979013625,0.0 +3495,6419,6418,3,10,46,112,65,70,0,4598,0,500,0,0,4,7,4,7,3.6,963.124166389,5926,0,57710.0,1,2,10,0,5,3,0,1,1,0,0,0,0,0,0,3,16030.5555556,4,2,4_0,4_1,14844.0,0,14844.0,0,7,12,268.4,88.0,3.3,0,1,1308.276979013625,1308.276979013625,0.0 3496,6425,6424,3,3,60,111,78,50,0,4605,0,0,0,0,0,5,0,2,1.5,1568.73490371,0,0,23556.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,2,0,15704.0,4,2,4_0,4_0,9000.0,0,0.0,9000,4,4,0.0,0.0,0.0,0,0,802.1549007938728,0.0,802.1549007938728 3497,6431,6430,6,10,73,111,78,70,0,4613,0,0,0,0,0,6,0,2,1.5,2327.57920311,0,0,24858.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,16572.0,4,2,4_0,4_0,20000.0,0,20000.0,0,8,9,0.0,0.0,0.0,0,0,1782.566446208606,1782.566446208606,0.0 3498,6449,6448,3,13,41,400,68,71,0,4638,0,550,500,0,2,4,1,3,1.8,1877.04705032,8893,0,30228.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,16793.3333333,4,2,4_0,4_1,23645.0,0,16353.0,7292,12,12,0.0,0.0,0.0,0,1,2083.9537300442707,1441.2727996368774,642.6809304073937 -3499,6482,6481,0,0,52,111,63,50,1,4683,0,0,156,0,2,4,0,2,1.5,2601.85414141,0,22262,23582.0,1,3,6,4,3,2,0,1,0,0,1,0,0,0,2,0,15721.333333300001,4,2,4_0,4_0,11000.0,0,0.0,11000,3,3,0.0,5.0,0.0,0,1,980.4115454147333,0.0,980.4115454147333 +3499,6482,6481,0,0,52,111,63,50,1,4683,0,0,156,0,2,4,0,2,1.5,2601.85414141,0,22262,23582.0,1,3,6,4,3,2,0,1,0,0,1,0,0,0,2,0,15721.3333333,4,2,4_0,4_0,11000.0,0,0.0,11000,3,3,0.0,5.0,0.0,0,1,980.4115454147333,0.0,980.4115454147333 3500,6483,6482,8,10,50,111,56,60,0,4684,0,0,150,271,1,3,0,2,1.5,2246.40477156,1040,0,23127.0,1,3,6,4,3,1,0,1,0,0,1,0,0,0,1,0,15418.0,4,2,4_0,4_0,8000.0,0,0.0,8000,10,10,0.0,0.0,0.0,0,0,713.0265784834424,0.0,713.0265784834424 3501,6499,6498,13,13,37,111,52,33,0,4705,0,500,0,267,2,4,2,4,2.1,2785.56918996,2865,0,32066.0,1,3,4,4,4,2,0,1,0,0,1,0,0,1,0,2,15269.5238095,4,2,4_1,4_0,2000.0,0,2000.0,0,5,15,0.0,16.75,3.3,0,1,178.2566446208606,178.2566446208606,0.0 3502,6505,6504,14,14,54,112,64,50,0,4715,0,0,0,0,2,4,0,2,1.5,1275.80696164,6729,0,24881.0,1,2,6,0,3,2,0,0,1,0,0,0,0,0,1,1,16587.3333333,4,2,4_0,4_1,19000.0,0,12000.0,7000,5,11,126.0,10.0,3.33,0,1,1674.5663299150413,1057.6208399463417,616.9454899686995 @@ -3508,7 +3508,7 @@ 3506,6556,6555,9,21,61,111,75,50,0,4785,0,0,0,0,0,4,0,2,1.5,1158.11651572,0,0,24810.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,1,1,16540.0,4,2,4_0,4_0,8500.0,0,3500.0,5000,2,14,0.0,0.0,0.0,0,0,757.5907396386575,311.94912808650605,445.6416115521515 3507,6567,6566,0,18,63,112,75,50,2,4797,0,0,0,0,0,4,0,2,1.5,1595.45217761,0,2000,24525.0,5,1,10,4,3,2,0,0,0,0,1,0,0,0,1,1,16350.0,4,2,4_0,4_0,8500.0,0,3500.0,5000,2,14,0.0,0.0,0.0,0,0,757.5907396386575,311.94912808650605,445.6416115521515 3508,6570,6569,3,7,40,111,37,31,0,480,0,0,400,539,1,3,2,4,2.1,6134.40020493,3120,0,34398.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,16380.0,4,2,4_0,4_0,35000.0,0,0.0,35000,11,11,46.0,23.75,3.3,0,1,3119.4912808650606,0.0,3119.4912808650606 -3509,6573,6572,1,5,71,112,75,71,2,4805,0,0,0,281,0,3,0,2,1.5,2125.58103604,0,11500,23852.0,5,3,9,2,3,1,0,0,0,1,0,0,0,0,0,1,15901.333333300001,4,2,4_0,4_0,42000.0,0,42000.0,0,5,5,0.0,0.0,0.0,0,0,3743.3895370380724,3743.3895370380724,0.0 +3509,6573,6572,1,5,71,112,75,71,2,4805,0,0,0,281,0,3,0,2,1.5,2125.58103604,0,11500,23852.0,5,3,9,2,3,1,0,0,0,1,0,0,0,0,0,1,15901.3333333,4,2,4_0,4_0,42000.0,0,42000.0,0,5,5,0.0,0.0,0.0,0,0,3743.3895370380724,3743.3895370380724,0.0 3510,6578,6577,0,0,75,222,78,71,0,4812,0,0,0,0,0,4,0,1,1.0,2764.46693227,0,0,16727.0,5,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,16727.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3511,6588,6587,0,3,36,112,37,50,2,483,0,200,0,0,1,5,2,4,2.1,2182.03441278,0,16500,31177.0,1,2,9,0,4,2,0,1,1,0,0,0,0,1,0,2,14846.1904762,4,2,4_1,4_1,33144.0,0,33144.0,0,1,5,0.0,0.0,0.0,1,1,2921.148759931796,2921.148759931796,0.0 3512,6594,6593,6,6,53,111,42,20,0,484,0,120,0,0,1,4,0,1,1.0,1562.38668,0,0,15848.0,1,1,6,4,1,1,0,1,0,0,1,0,0,0,0,1,15848.0,4,2,4_0,4_0,3000.0,0,3000.0,0,5,5,0.0,4.0,1.1,0,0,267.38496693129093,267.38496693129093,0.0 @@ -3522,80 +3522,80 @@ 3520,6684,6683,8,8,71,111,78,70,0,497,0,0,0,0,0,4,0,2,1.5,2523.2736645,1560,0,24000.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,16000.0,4,2,4_0,4_0,5000.0,0,0.0,5000,5,8,0.0,0.0,0.0,0,0,445.6416115521515,0.0,445.6416115521515 3521,6709,6708,0,13,45,300,48,50,0,500,0,380,100,0,1,6,3,4,2.5,1519.36249133,0,0,37278.0,1,2,0,0,2,2,0,1,1,0,0,0,0,0,1,1,14911.2,4,2,4_0,4_1,55000.0,40000,15000.0,0,10,11,0.0,2.5,0.0,0,1,4847.4288497540665,1322.0260499329274,0.0 3522,6712,6711,2,5,40,111,48,31,0,5004,250,0,0,0,2,4,1,4,2.5,1589.73314177,2080,0,38752.0,1,2,8,7,5,1,0,1,0,0,0,1,0,1,0,0,15500.8,4,2,4_1,4_0,3952.0,0,0.0,3952,1,3,60.0,16.0,3.3,1,1,352.23512977082055,0.0,352.23512977082055 -3523,6716,6715,6,9,35,111,22,43,0,5008,0,42,0,236,1,3,2,4,2.1,3132.98500511,2080,0,33194.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,0,2,15806.666666699999,4,2,4_1,4_0,12480.0,0,12480.0,0,18,10,0.0,0.0,0.0,1,1,1112.3214624341701,1112.3214624341701,0.0 +3523,6716,6715,6,9,35,111,22,43,0,5008,0,42,0,236,1,3,2,4,2.1,3132.98500511,2080,0,33194.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,0,2,15806.6666667,4,2,4_1,4_0,12480.0,0,12480.0,0,18,10,0.0,0.0,0.0,1,1,1112.3214624341701,1112.3214624341701,0.0 3524,6753,6752,15,17,48,120,52,71,0,5059,0,99999,0,0,1,3,0,1,1.0,3889.02209722,1560,0,15560.0,1,3,0,2,1,2,0,1,0,1,0,0,0,0,0,2,15560.0,4,2,4_0,4_0,35000.0,0,35000.0,0,3,18,56.0,50.0,3.3,0,1,3119.4912808650606,3119.4912808650606,0.0 3525,6754,6753,0,0,60,111,75,42,0,506,0,0,0,379,0,1,0,1,1.0,3758.86752524,0,0,15714.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,15714.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3526,6765,6764,0,0,45,111,68,50,0,5074,0,0,0,354,1,4,2,3,1.6,3037.98174831,0,0,25588.0,1,3,8,7,2,0,0,0,0,0,0,1,0,0,0,0,15992.5,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3527,6771,6770,2,7,37,111,56,42,0,5082,0,0,0,0,2,4,1,3,1.8,2279.85062234,0,0,27741.0,1,2,8,6,4,1,0,0,0,0,1,0,0,0,1,0,15411.666666699999,4,2,4_0,4_0,7000.0,0,0.0,7000,3,9,0.0,10.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 +3527,6771,6770,2,7,37,111,56,42,0,5082,0,0,0,0,2,4,1,3,1.8,2279.85062234,0,0,27741.0,1,2,8,6,4,1,0,0,0,0,1,0,0,0,1,0,15411.6666667,4,2,4_0,4_0,7000.0,0,0.0,7000,3,9,0.0,10.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 3528,6790,6789,10,11,87,111,77,71,0,5110,0,0,0,0,0,5,0,2,1.5,3130.91459395,0,0,24090.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,16060.0,4,2,4_0,4_0,2000.0,0,0.0,2000,11,11,0.0,0.0,0.0,0,0,178.2566446208606,0.0,178.2566446208606 3529,6794,6793,4,4,80,111,77,70,0,5116,0,0,0,0,0,4,0,1,1.0,4765.84132711,0,0,14902.0,5,4,6,5,1,1,0,0,0,0,1,0,0,0,1,0,14902.0,4,2,4_0,4_0,7000.0,0,0.0,7000,5,5,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 -3530,6805,6804,20,24,40,400,11,50,0,5132,0,400,0,0,2,9,2,4,2.1,1921.9634542999997,0,0,33645.0,1,2,0,0,4,2,1,0,1,0,0,0,0,1,0,2,16021.428571399998,4,2,4_1,4_1,34000.0,0,34000.0,0,7,20,62.5,10.0,3.31,0,1,2996.5923798479685,2996.5923798479685,0.0 +3530,6805,6804,20,24,40,400,11,50,0,5132,0,400,0,0,2,9,2,4,2.1,1921.9634543,0,0,33645.0,1,2,0,0,4,2,1,0,1,0,0,0,0,1,0,2,16021.4285714,4,2,4_1,4_1,34000.0,0,34000.0,0,7,20,62.5,10.0,3.31,0,1,2996.5923798479685,2996.5923798479685,0.0 3531,6813,6812,5,13,27,120,63,60,0,5143,0,300,0,0,1,5,0,1,1.0,2484.27312226,0,0,15164.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,0,1,15164.0,4,2,4_0,4_1,35000.0,0,35000.0,0,2,14,26.0,10.0,3.3,0,1,3084.727449843497,3084.727449843497,0.0 -3532,6827,6826,1,1,48,120,21,50,0,5158,0,200,0,0,2,5,1,3,2.0,2579.6042860999996,0,0,31763.0,1,2,0,2,4,1,0,1,0,1,0,0,0,0,0,1,15881.5,4,2,4_0,4_0,20000.0,0,20000.0,0,4,4,62.0,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 +3532,6827,6826,1,1,48,120,21,50,0,5158,0,200,0,0,2,5,1,3,2.0,2579.6042861,0,0,31763.0,1,2,0,2,4,1,0,1,0,1,0,0,0,0,0,1,15881.5,4,2,4_0,4_0,20000.0,0,20000.0,0,4,4,62.0,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 3533,6837,6836,3,3,76,300,77,50,0,5167,0,0,0,0,0,4,0,1,1.0,2247.72942735,0,0,14981.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,14981.0,4,2,4_0,4_1,5000.0,0,0.0,5000,3,3,0.0,0.0,0.0,0,0,440.67534997764244,0.0,440.67534997764244 -3534,6853,6852,7,20,43,112,62,71,0,5193,0,484,0,0,1,5,0,2,1.5,5647.88470312,0,0,23117.0,1,2,8,0,3,1,0,1,1,0,0,0,0,0,0,1,15411.333333300001,4,2,4_0,4_1,44572.0,0,44572.0,0,1,12,32.0,85.0,3.3,0,1,3928.356339840696,3928.356339840696,0.0 +3534,6853,6852,7,20,43,112,62,71,0,5193,0,484,0,0,1,5,0,2,1.5,5647.88470312,0,0,23117.0,1,2,8,0,3,1,0,1,1,0,0,0,0,0,0,1,15411.3333333,4,2,4_0,4_1,44572.0,0,44572.0,0,1,12,32.0,85.0,3.3,0,1,3928.356339840696,3928.356339840696,0.0 3535,6873,6872,2,2,69,112,78,71,0,5220,0,0,0,0,0,6,0,2,1.5,1797.02415665,2080,0,25310.0,5,1,5,0,3,1,0,0,1,0,0,0,0,0,0,1,16873.3333333,4,2,4_0,4_1,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 3536,6874,6873,0,0,92,111,78,70,0,5221,0,0,0,224,0,2,0,1,1.0,2886.16868197,0,0,15484.0,5,3,7,5,1,0,0,0,0,0,1,0,0,0,0,0,15484.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3537,6886,6885,0,0,45,111,85,60,0,5238,0,0,0,0,0,2,0,1,1.0,3468.01082797,0,0,15904.0,4,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,15904.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3538,6888,6887,1,1,76,221,78,71,1,524,0,0,0,0,0,5,0,2,1.5,2873.4037535999996,0,15000,22730.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,15153.333333300001,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 +3538,6888,6887,1,1,76,221,78,71,1,524,0,0,0,0,0,5,0,2,1.5,2873.4037536,0,15000,22730.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,15153.3333333,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3539,6907,6906,7,7,66,300,78,50,0,5259,0,0,0,0,0,4,0,2,1.5,1459.48448319,0,0,24177.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,16118.0,4,2,4_0,4_1,12000.0,0,0.0,12000,6,7,0.0,0.0,0.0,0,0,1057.6208399463417,0.0,1057.6208399463417 -3540,6911,6910,2,2,79,112,78,70,0,5263,0,0,0,0,0,4,0,2,1.5,932.71071194,1242,0,22591.0,5,1,6,2,3,1,0,0,0,1,0,0,0,0,0,1,15060.666666699999,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 -3541,6918,6917,8,10,36,112,52,41,0,5271,0,0,0,0,1,5,3,5,2.4,1088.74873642,0,0,36112.0,1,2,6,1,4,1,0,0,0,1,0,0,0,0,1,0,15046.666666699999,4,2,4_0,4_0,4248.0,0,0.0,4248,0,17,0.0,11.6,3.3,0,1,378.6171131747079,0.0,378.6171131747079 -3542,6920,6919,7,15,38,111,42,12,0,5276,0,0,100,304,1,6,5,7,3.2,903.394677536,3349,0,48530.0,1,3,7,5,4,3,0,0,0,0,1,0,0,1,2,1,15165.625,4,2,4_1,4_0,18000.0,0,15000.0,3000,10,13,74.9,13.333333333299999,3.3,0,1,1604.3098015877456,1336.9248346564543,267.38496693129093 +3540,6911,6910,2,2,79,112,78,70,0,5263,0,0,0,0,0,4,0,2,1.5,932.71071194,1242,0,22591.0,5,1,6,2,3,1,0,0,0,1,0,0,0,0,0,1,15060.6666667,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 +3541,6918,6917,8,10,36,112,52,41,0,5271,0,0,0,0,1,5,3,5,2.4,1088.74873642,0,0,36112.0,1,2,6,1,4,1,0,0,0,1,0,0,0,0,1,0,15046.6666667,4,2,4_0,4_0,4248.0,0,0.0,4248,0,17,0.0,11.6,3.3,0,1,378.6171131747079,0.0,378.6171131747079 +3542,6920,6919,7,15,38,111,42,12,0,5276,0,0,100,304,1,6,5,7,3.2,903.394677536,3349,0,48530.0,1,3,7,5,4,3,0,0,0,0,1,0,0,1,2,1,15165.625,4,2,4_1,4_0,18000.0,0,15000.0,3000,10,13,74.9,13.3333333333,3.3,0,1,1604.3098015877456,1336.9248346564543,267.38496693129093 3543,6921,6920,2,23,47,221,62,50,0,5277,0,0,260,468,2,5,2,4,2.5,5421.50131382,0,0,38501.0,1,3,1,2,4,2,0,1,0,1,0,0,0,0,1,1,15400.4,4,2,4_0,4_0,38000.0,0,23000.0,15000,6,22,223.5,40.0,3.3,0,1,3386.8762477963514,2049.951413139897,1336.9248346564543 3544,6927,6926,2,5,46,400,65,50,0,5284,0,450,0,0,2,5,2,3,2.0,1354.60160699,2340,0,32438.0,1,2,0,0,2,2,0,1,1,0,0,0,0,1,0,2,16219.0,4,2,4_1,4_1,17000.0,0,17000.0,0,2,5,206.0,70.0,3.3,0,1,1498.2961899239842,1498.2961899239842,0.0 3545,6929,6928,3,7,56,400,67,60,0,5286,0,120,0,0,1,2,0,1,1.0,2334.52057874,0,0,14839.0,1,4,0,0,1,1,0,1,1,0,0,0,0,0,0,1,14839.0,4,2,4_0,4_1,11144.0,0,11144.0,0,1,7,114.0,40.0,3.3,0,1,982.1772200301695,982.1772200301695,0.0 3546,6939,6938,2,2,45,112,54,42,0,5300,0,150,0,0,1,3,2,3,1.8,5884.92699046,0,0,27647.0,1,2,4,0,2,1,0,1,1,0,0,0,0,0,0,1,15359.4444444,4,2,4_0,4_1,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,1,1762.7013999105698,1762.7013999105698,0.0 3547,6944,6943,0,0,25,111,67,50,0,5306,0,0,0,470,2,3,0,2,1.5,2319.97561435,0,0,24360.0,4,3,8,7,3,0,0,0,0,0,0,1,0,0,0,0,16240.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3548,6949,6948,1,1,47,111,47,71,1,5313,0,0,0,0,1,4,1,3,2.0,3732.22977254,2218,7000,30282.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,15141.0,4,2,4_0,4_0,4000.0,0,0.0,4000,3,6,0.0,13.333333333299999,3.3,1,0,356.5132892417212,0.0,356.5132892417212 +3548,6949,6948,1,1,47,111,47,71,1,5313,0,0,0,0,1,4,1,3,2.0,3732.22977254,2218,7000,30282.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,15141.0,4,2,4_0,4_0,4000.0,0,0.0,4000,3,6,0.0,13.3333333333,3.3,1,0,356.5132892417212,0.0,356.5132892417212 3549,6950,6949,0,0,54,221,75,33,0,5317,0,0,0,0,0,2,0,1,1.0,3776.57490633,0,0,14921.0,7,4,1,2,1,0,0,0,0,1,0,0,0,0,0,0,14921.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3550,6972,6971,3,10,47,111,64,50,0,5342,0,99999,0,0,1,1,0,1,1.0,3400.39393068,4160,0,16560.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,16560.0,4,2,4_0,4_0,20000.0,0,20000.0,0,4,9,56.7,42.5,3.31,0,1,1782.566446208606,1782.566446208606,0.0 3551,6982,6981,0,15,67,111,56,71,0,5356,0,0,135,0,2,4,1,3,1.8,2714.45205264,1953,0,27539.0,5,2,10,8,5,1,1,1,0,0,0,0,1,0,1,0,15299.4444444,4,2,4_0,4_0,5000.0,0,0.0,5000,1,17,58.8,36.6666666667,2.2,0,0,445.6416115521515,0.0,445.6416115521515 3552,6985,6984,0,0,73,111,78,50,0,5361,0,0,0,360,2,3,1,3,2.0,2836.82446134,0,0,32054.0,5,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,16027.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3553,6989,6988,0,0,68,111,77,70,0,5367,0,0,0,492,1,6,1,3,2.0,2424.30277121,0,0,31383.0,5,3,10,8,5,0,0,0,0,0,0,0,1,0,0,0,15691.5,4,2,4_0,4_0,0.0,0,0.0,0,0,0,16.5,15.0,0.0,0,0,0.0,0.0,0.0 -3554,7013,7012,0,5,22,221,52,33,0,5401,0,200,0,0,2,3,0,2,1.5,4745.9775691,0,0,22420.0,1,3,1,2,3,1,0,1,0,1,0,0,0,1,0,1,14946.666666699999,4,2,4_1,4_0,15164.0,0,15164.0,0,0,0,0.0,20.0,0.0,0,1,1351.541879515365,1351.541879515365,0.0 +3554,7013,7012,0,5,22,221,52,33,0,5401,0,200,0,0,2,3,0,2,1.5,4745.9775691,0,0,22420.0,1,3,1,2,3,1,0,1,0,1,0,0,0,1,0,1,14946.6666667,4,2,4_1,4_0,15164.0,0,15164.0,0,0,0,0.0,20.0,0.0,0,1,1351.541879515365,1351.541879515365,0.0 3555,7019,7018,2,17,36,111,56,43,0,5412,0,0,99999,177,1,2,0,1,1.0,2661.30463115,1303,0,16187.0,1,3,8,7,1,1,0,1,0,0,0,1,0,1,1,0,16187.0,4,2,4_1,4_0,5000.0,0,0.0,5000,14,16,51.0,25.0,3.3,0,1,445.6416115521515,0.0,445.6416115521515 3556,7028,7027,0,0,78,111,77,50,0,5423,0,0,0,0,0,8,0,1,1.0,1212.99010833,0,0,15917.0,5,1,6,4,1,0,0,0,0,0,1,0,0,0,0,0,15917.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3557,7044,7043,0,0,72,300,77,70,0,5442,0,0,0,0,0,5,0,1,1.0,1262.58175904,0,0,15542.0,5,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,15542.0,4,2,4_1,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3558,7049,7048,2,11,47,112,63,50,0,545,0,720,0,0,2,6,0,3,1.8,1045.0254444,0,0,27618.0,1,2,7,0,5,2,0,1,1,0,0,0,0,0,0,2,15343.333333300001,4,2,4_0,4_1,70000.0,0,70000.0,0,0,10,124.4,36.6666666667,3.3,0,1,6169.454899686994,6169.454899686994,0.0 +3558,7049,7048,2,11,47,112,63,50,0,545,0,720,0,0,2,6,0,3,1.8,1045.0254444,0,0,27618.0,1,2,7,0,5,2,0,1,1,0,0,0,0,0,0,2,15343.3333333,4,2,4_0,4_1,70000.0,0,70000.0,0,0,10,124.4,36.6666666667,3.3,0,1,6169.454899686994,6169.454899686994,0.0 3559,7063,7062,4,4,48,111,63,50,0,5469,0,0,0,0,1,3,0,2,1.5,2012.08203125,0,0,24825.0,1,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,16550.0,4,2,4_0,4_0,8000.0,0,0.0,8000,4,4,0.0,40.0,3.3,0,1,713.0265784834424,0.0,713.0265784834424 -3560,7064,7063,5,6,53,112,47,50,0,5472,0,99999,0,0,2,4,0,2,1.5,1993.39992164,2158,0,22930.0,1,2,6,0,3,1,0,1,1,0,0,0,0,0,0,1,15286.666666699999,4,2,4_0,4_1,20000.0,0,20000.0,0,1,6,59.0,20.0,3.3,0,1,1762.7013999105698,1762.7013999105698,0.0 +3560,7064,7063,5,6,53,112,47,50,0,5472,0,99999,0,0,2,4,0,2,1.5,1993.39992164,2158,0,22930.0,1,2,6,0,3,1,0,1,1,0,0,0,0,0,0,1,15286.6666667,4,2,4_0,4_1,20000.0,0,20000.0,0,1,6,59.0,20.0,3.3,0,1,1762.7013999105698,1762.7013999105698,0.0 3561,7085,7084,4,4,80,400,72,70,0,5499,0,0,0,0,0,3,0,2,1.5,3051.30532098,2651,0,24635.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,16423.3333333,4,2,4_0,4_1,17430.0,0,0.0,17430,7,7,0.0,0.0,0.0,0,0,1536.1942700220616,0.0,1536.1942700220616 -3562,7102,7101,2,13,47,112,62,50,0,5520,0,320,0,0,3,5,2,4,2.5,2429.0428730999997,1560,0,38264.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,15305.6,4,2,4_0,4_1,22480.0,0,22480.0,0,10,13,39.0,60.0,3.3,0,1,1981.2763734994805,1981.2763734994805,0.0 +3562,7102,7101,2,13,47,112,62,50,0,5520,0,320,0,0,3,5,2,4,2.5,2429.0428731,1560,0,38264.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,15305.6,4,2,4_0,4_1,22480.0,0,22480.0,0,10,13,39.0,60.0,3.3,0,1,1981.2763734994805,1981.2763734994805,0.0 3563,7104,7103,2,5,45,111,48,44,0,5522,0,80,0,0,2,4,2,4,2.3,3396.92395965,1563,0,38640.0,1,2,8,6,4,1,1,1,0,0,1,0,0,0,0,1,16800.0,4,2,4_0,4_0,14000.0,0,14000.0,0,3,5,145.3,45.0,3.3,0,1,1247.7965123460242,1247.7965123460242,0.0 3564,7116,7115,3,16,76,112,72,50,0,5538,0,0,0,0,0,4,0,2,1.5,1262.55593815,0,0,22920.0,5,3,6,1,3,1,0,0,0,1,0,0,0,0,1,0,15280.0,4,2,4_0,4_0,12000.0,0,0.0,12000,11,16,0.0,0.0,0.0,0,0,1069.5398677251637,0.0,1069.5398677251637 3565,7117,7116,22,22,79,112,72,70,0,5539,0,0,0,0,0,3,0,2,1.5,3846.58199394,0,0,24981.0,5,1,10,2,3,1,0,0,0,1,0,0,0,0,1,0,16654.0,4,2,4_0,4_0,8000.0,0,0.0,8000,23,23,0.0,0.0,0.0,0,0,713.0265784834424,0.0,713.0265784834424 -3566,7145,7144,6,6,39,221,65,50,0,5570,0,700,0,0,2,4,2,4,2.1,1993.87451674,1372,0,35276.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,16798.095238100002,4,2,4_0,4_0,35000.0,0,35000.0,0,5,6,158.0,17.5,3.3,0,1,3119.4912808650606,3119.4912808650606,0.0 -3567,7147,7146,4,7,25,111,67,71,0,5573,0,3,0,0,2,3,2,4,2.1,3557.18936414,0,0,34311.0,1,2,10,8,4,1,0,1,0,0,0,0,1,1,0,1,16338.571428600002,4,2,4_1,4_0,10716.0,0,10716.0,0,0,9,0.0,0.0,0.0,0,1,955.099101878571,955.099101878571,0.0 +3566,7145,7144,6,6,39,221,65,50,0,5570,0,700,0,0,2,4,2,4,2.1,1993.87451674,1372,0,35276.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,16798.0952381,4,2,4_0,4_0,35000.0,0,35000.0,0,5,6,158.0,17.5,3.3,0,1,3119.4912808650606,3119.4912808650606,0.0 +3567,7147,7146,4,7,25,111,67,71,0,5573,0,3,0,0,2,3,2,4,2.1,3557.18936414,0,0,34311.0,1,2,10,8,4,1,0,1,0,0,0,0,1,1,0,1,16338.5714286,4,2,4_1,4_0,10716.0,0,10716.0,0,0,9,0.0,0.0,0.0,0,1,955.099101878571,955.099101878571,0.0 3568,7153,7152,0,4,29,111,63,43,0,5582,0,0,0,16,1,3,0,1,1.0,3067.09212575,0,0,15411.0,4,3,9,7,1,2,0,0,0,0,0,1,0,1,0,2,15411.0,4,2,4_1,4_0,21144.0,0,21144.0,0,4,9,0.0,0.0,0.0,0,1,1884.5292469317383,1884.5292469317383,0.0 -3569,7178,7177,4,4,32,111,22,50,0,5619,0,0,0,0,2,4,2,4,2.1,3090.54147296,0,0,32028.0,1,1,10,8,4,1,1,0,0,0,0,0,1,0,0,1,15251.428571399998,4,2,4_0,4_0,30000.0,0,30000.0,0,6,6,0.0,0.0,0.0,1,0,2673.8496693129086,2673.8496693129086,0.0 +3569,7178,7177,4,4,32,111,22,50,0,5619,0,0,0,0,2,4,2,4,2.1,3090.54147296,0,0,32028.0,1,1,10,8,4,1,1,0,0,0,0,0,1,0,0,1,15251.4285714,4,2,4_0,4_0,30000.0,0,30000.0,0,6,6,0.0,0.0,0.0,1,0,2673.8496693129086,2673.8496693129086,0.0 3570,7179,7178,0,0,99,111,77,71,0,562,0,0,0,0,0,2,0,1,1.0,3177.21787299,0,0,15306.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,15306.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3571,7181,7180,0,0,70,400,78,71,0,5621,0,0,0,0,0,3,0,1,1.0,3164.25095849,0,0,16088.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,16088.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3572,7183,7182,9,9,65,112,72,50,0,5624,0,0,0,0,1,3,0,2,1.5,2844.63254418,0,0,23901.0,5,1,9,3,3,2,0,0,0,1,0,0,0,0,2,0,15934.0,4,2,4_0,4_0,6000.0,0,0.0,6000,2,4,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 -3573,7190,7189,2,15,27,111,52,50,0,5634,0,60,0,215,2,3,1,3,1.8,2712.38751231,0,0,29199.0,1,3,8,7,4,3,0,0,0,0,0,1,0,1,1,2,16221.666666699999,4,2,4_1,4_0,7000.0,0,7000.0,0,13,15,0.0,0.0,0.0,0,1,623.8982561730121,623.8982561730121,0.0 +3573,7190,7189,2,15,27,111,52,50,0,5634,0,60,0,215,2,3,1,3,1.8,2712.38751231,0,0,29199.0,1,3,8,7,4,3,0,0,0,0,0,1,0,1,1,2,16221.6666667,4,2,4_1,4_0,7000.0,0,7000.0,0,13,15,0.0,0.0,0.0,0,1,623.8982561730121,623.8982561730121,0.0 3574,7193,7192,0,9,31,111,37,31,0,5637,0,220,0,0,2,6,1,3,1.8,2531.72710748,0,0,29205.0,1,3,7,5,4,2,1,1,0,0,1,0,0,1,0,2,16225.0,4,2,4_1,4_0,10000.0,0,10000.0,0,5,11,0.0,43.3333333333,3.31,0,1,891.283223104303,891.283223104303,0.0 -3575,7196,7195,13,13,71,221,77,71,0,564,0,0,0,0,0,5,0,1,1.0,3124.8148678000002,1043,0,16089.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,16089.0,4,2,4_0,4_0,2500.0,0,0.0,2500,8,13,0.0,0.0,0.0,0,0,222.82080577607576,0.0,222.82080577607576 +3575,7196,7195,13,13,71,221,77,71,0,564,0,0,0,0,0,5,0,1,1.0,3124.8148678,1043,0,16089.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,16089.0,4,2,4_0,4_0,2500.0,0,0.0,2500,8,13,0.0,0.0,0.0,0,0,222.82080577607576,0.0,222.82080577607576 3576,7217,7216,7,9,30,400,63,50,0,5667,0,1300,0,0,2,4,2,4,2.1,2208.18025263,2883,0,34722.0,1,2,0,0,4,2,1,1,1,0,0,0,0,0,1,1,16534.2857143,4,2,4_0,4_1,45000.0,0,25000.0,20000,6,6,510.9,51.0,3.31,0,1,3966.078149798782,2203.376749888212,1762.7013999105698 3577,7233,7232,0,5,38,120,54,60,0,5687,0,0,900,0,2,6,3,5,2.6,1910.57148183,0,0,41752.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,2,0,16058.4615385,4,2,4_0,4_1,9784.0,0,0.0,9784,2,8,135.0,26.6666666667,3.3,0,1,862.3135248362507,0.0,862.3135248362507 3578,7238,7237,5,14,35,111,56,50,0,5694,0,50,0,389,2,4,3,5,2.4,2251.63726877,3120,0,37839.0,1,3,4,3,4,2,0,1,0,1,0,0,0,1,1,1,15766.25,4,2,4_1,4_0,41250.0,0,20000.0,21250,4,14,387.5,38.0,3.31,0,1,3676.54329530525,1782.566446208606,1893.976849096644 3579,7262,7261,0,0,71,111,77,60,0,5728,0,0,0,458,1,3,0,2,1.5,3971.69698994,0,0,22392.0,5,3,9,7,5,0,0,0,0,0,0,1,0,1,0,0,14928.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3580,7273,7272,2,15,24,111,47,20,0,5744,0,465,0,613,2,3,0,3,2.0,2248.76042371,2080,0,30031.0,1,3,8,7,5,3,1,1,0,0,0,1,0,0,1,2,15015.5,4,2,4_0,4_0,7000.0,0,7000.0,0,13,15,0.0,0.0,0.0,0,1,623.8982561730121,623.8982561730121,0.0 -3581,7295,7294,1,4,32,300,48,44,2,578,0,550,0,0,2,7,2,4,2.1,2557.96886279,11204,10000,31467.0,1,2,0,0,4,1,0,1,1,0,0,0,0,1,0,1,14984.2857143,4,2,4_1,4_1,25000.0,0,25000.0,0,4,5,34.0,8.666666666669999,1.1,0,0,2203.376749888212,2203.376749888212,0.0 -3582,7321,7320,10,10,48,112,68,50,0,5812,0,0,60,0,2,6,2,4,2.3,953.350673125,1567,0,37900.0,1,1,9,1,4,2,0,1,0,1,0,0,0,0,1,1,16478.260869600002,4,2,4_0,4_0,18000.0,0,15000.0,3000,4,10,23.4,23.3333333333,3.3,0,1,1604.3098015877456,1336.9248346564543,267.38496693129093 +3581,7295,7294,1,4,32,300,48,44,2,578,0,550,0,0,2,7,2,4,2.1,2557.96886279,11204,10000,31467.0,1,2,0,0,4,1,0,1,1,0,0,0,0,1,0,1,14984.2857143,4,2,4_1,4_1,25000.0,0,25000.0,0,4,5,34.0,8.66666666667,1.1,0,0,2203.376749888212,2203.376749888212,0.0 +3582,7321,7320,10,10,48,112,68,50,0,5812,0,0,60,0,2,6,2,4,2.3,953.350673125,1567,0,37900.0,1,1,9,1,4,2,0,1,0,1,0,0,0,0,1,1,16478.2608696,4,2,4_0,4_0,18000.0,0,15000.0,3000,4,10,23.4,23.3333333333,3.3,0,1,1604.3098015877456,1336.9248346564543,267.38496693129093 3583,7333,7332,9,9,77,112,75,71,0,5832,0,0,0,330,0,3,0,1,1.0,3566.74121003,0,0,15391.0,5,3,3,0,1,1,0,0,1,0,0,0,0,0,1,0,15391.0,4,2,4_0,4_1,2000.0,0,0.0,2000,2,9,0.0,0.0,0.0,0,0,176.27013999105696,0.0,176.27013999105696 -3584,7337,7336,4,7,89,222,86,71,0,5838,0,0,0,0,0,4,0,2,1.5,2314.44045016,1196,0,23998.0,5,2,1,0,5,1,0,0,1,0,0,0,0,0,1,0,15998.666666699999,4,2,4_0,4_1,2000.0,0,0.0,2000,7,7,0.0,0.0,0.0,0,0,176.27013999105696,0.0,176.27013999105696 +3584,7337,7336,4,7,89,222,86,71,0,5838,0,0,0,0,0,4,0,2,1.5,2314.44045016,1196,0,23998.0,5,2,1,0,5,1,0,0,1,0,0,0,0,0,1,0,15998.6666667,4,2,4_0,4_1,2000.0,0,0.0,2000,7,7,0.0,0.0,0.0,0,0,176.27013999105696,0.0,176.27013999105696 3585,7339,7338,0,11,42,400,52,60,0,584,0,10,100,189,1,4,1,2,1.5,7009.39167111,0,0,23226.0,1,3,0,1,2,2,0,1,0,1,0,0,0,1,1,1,15484.0,4,2,4_1,4_0,21125.0,0,18625.0,2500,4,9,39.5,25.0,0.0,0,1,1882.83580880784,1660.0150030317645,222.82080577607576 3586,7345,7344,0,0,41,111,45,60,0,5849,0,0,0,351,1,3,1,2,1.3,4017.64277998,0,0,20109.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,15468.4615385,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,40.0,5.55,0,0,0.0,0.0,0.0 3587,7347,7346,1,1,41,111,54,50,2,5850,0,0,240,0,2,5,2,4,2.3,1798.15078647,4942,11175,35213.0,1,2,8,7,4,2,1,0,0,0,0,1,0,1,1,1,15310.0,4,2,4_1,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 3588,7355,7354,10,10,75,120,72,70,0,5860,0,99999,0,0,2,5,1,3,2.0,3116.72218369,571,0,33196.0,5,1,0,0,5,2,0,0,1,0,0,0,0,0,0,2,16598.0,4,2,4_0,4_1,25000.0,0,25000.0,0,2,7,118.4,26.6666666667,0.0,0,1,2203.376749888212,2203.376749888212,0.0 -3589,7362,7361,1,8,65,112,77,50,2,5871,0,0,0,0,0,7,0,2,1.5,2439.76876104,5764,1000,23200.0,5,1,6,0,3,3,0,0,1,0,0,0,0,0,2,1,15466.666666699999,4,2,4_0,4_1,12500.0,0,2500.0,10000,4,7,0.0,0.0,0.0,0,0,1101.688374944106,220.33767498882122,881.3506999552849 -3590,7369,7368,1,22,26,400,69,44,2,5881,0,1000,200,0,2,8,0,2,1.5,2358.06825512,3900,950,24208.0,4,3,0,0,3,2,0,1,1,0,0,0,0,0,1,1,16138.666666699999,4,2,4_0,4_1,36000.0,0,30000.0,6000,5,15,57.0,82.5,3.3,0,1,3172.862519839026,2644.052099865855,528.8104199731708 +3589,7362,7361,1,8,65,112,77,50,2,5871,0,0,0,0,0,7,0,2,1.5,2439.76876104,5764,1000,23200.0,5,1,6,0,3,3,0,0,1,0,0,0,0,0,2,1,15466.6666667,4,2,4_0,4_1,12500.0,0,2500.0,10000,4,7,0.0,0.0,0.0,0,0,1101.688374944106,220.33767498882122,881.3506999552849 +3590,7369,7368,1,22,26,400,69,44,2,5881,0,1000,200,0,2,8,0,2,1.5,2358.06825512,3900,950,24208.0,4,3,0,0,3,2,0,1,1,0,0,0,0,0,1,1,16138.6666667,4,2,4_0,4_1,36000.0,0,30000.0,6000,5,15,57.0,82.5,3.3,0,1,3172.862519839026,2644.052099865855,528.8104199731708 3591,7370,7369,2,12,23,111,63,50,0,5882,0,0,0,0,2,2,0,2,1.5,5058.95189235,2353,0,25160.0,4,2,10,8,3,1,0,0,0,0,0,0,1,0,1,0,16773.3333333,4,2,4_0,4_0,6572.0,0,6572.0,0,1,10,0.0,15.0,0.0,0,0,585.751334224148,585.751334224148,0.0 3592,7376,7375,6,6,69,111,75,50,0,5889,0,0,0,0,0,2,0,1,1.0,3199.67291802,0,0,16350.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,16350.0,4,2,4_0,4_0,2500.0,0,0.0,2500,7,7,0.0,0.0,0.0,0,0,222.82080577607576,0.0,222.82080577607576 3593,7377,7376,2,5,77,120,78,71,0,589,0,0,0,0,0,4,0,2,1.5,2180.99295424,0,0,25017.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,16678.0,4,2,4_0,4_1,13000.0,0,4000.0,9000,3,5,0.0,0.0,0.0,0,0,1145.7559099418704,352.54027998211393,793.2156299597565 3594,7388,7387,2,13,44,111,52,50,0,5905,0,650,0,405,2,2,1,2,1.5,3152.60958391,1040,0,25089.0,1,3,9,7,2,2,0,1,0,0,0,1,0,1,0,2,16726.0,4,2,4_1,4_0,24572.0,0,24572.0,0,1,13,55.5,40.0,3.3,0,1,2190.061135811893,2190.061135811893,0.0 -3595,7416,7415,18,18,63,112,13,44,0,5947,0,150,0,0,2,6,0,2,1.5,1951.3314130999997,0,0,24879.0,1,1,10,0,3,2,0,1,1,0,0,0,0,0,0,2,16586.0,4,2,4_0,4_1,15000.0,0,15000.0,0,13,19,145.8,13.333333333299999,0.0,0,1,1322.0260499329274,1322.0260499329274,0.0 -3596,7426,7425,11,21,64,112,77,41,0,5962,0,0,0,0,0,3,0,2,1.5,1837.42548285,0,0,22445.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,14963.333333300001,4,2,4_0,4_1,12000.0,0,9000.0,3000,8,21,0.0,0.0,0.0,0,0,1057.6208399463417,793.2156299597565,264.4052099865854 +3595,7416,7415,18,18,63,112,13,44,0,5947,0,150,0,0,2,6,0,2,1.5,1951.3314131,0,0,24879.0,1,1,10,0,3,2,0,1,1,0,0,0,0,0,0,2,16586.0,4,2,4_0,4_1,15000.0,0,15000.0,0,13,19,145.8,13.3333333333,0.0,0,1,1322.0260499329274,1322.0260499329274,0.0 +3596,7426,7425,11,21,64,112,77,41,0,5962,0,0,0,0,0,3,0,2,1.5,1837.42548285,0,0,22445.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,14963.3333333,4,2,4_0,4_1,12000.0,0,9000.0,3000,8,21,0.0,0.0,0.0,0,0,1057.6208399463417,793.2156299597565,264.4052099865854 3597,7427,7426,4,5,28,112,47,31,0,5963,0,0,580,500,2,4,0,2,1.5,6319.85880468,2341,0,24327.0,1,3,9,3,3,1,1,1,0,1,0,0,0,0,1,0,16218.0,4,2,4_0,4_0,7352.0,0,0.0,7352,1,7,0.0,40.0,3.3,0,1,655.2714256262835,0.0,655.2714256262835 3598,7431,7430,6,8,41,112,67,50,0,5969,0,240,50,0,2,5,2,4,2.3,2433.30709967,0,0,34675.0,1,2,4,0,4,2,0,1,1,0,0,0,0,0,1,1,15076.0869565,4,2,4_0,4_1,8600.0,0,1100.0,7500,8,8,66.4,22.5,3.31,0,1,757.961601961545,96.94857699508134,661.0130249664637 3599,7432,7431,3,7,59,400,78,50,0,597,0,0,0,0,1,6,0,2,1.5,1430.46433398,3234,0,24712.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,16474.6666667,4,2,4_0,4_1,28500.0,0,25000.0,3500,8,9,0.0,0.0,0.0,0,0,2511.849494872562,2203.376749888212,308.47274498434973 @@ -3603,34 +3603,34 @@ 3601,7449,7448,2,17,57,400,63,70,0,5989,0,0,0,0,1,5,0,2,1.5,1449.15462998,2600,0,24009.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,16006.0,4,2,4_0,4_1,31226.0,0,31226.0,0,14,16,0.0,0.0,0.0,0,0,2752.1056956803727,2752.1056956803727,0.0 3602,7459,7458,9,13,44,111,37,12,0,6004,0,0,90,900,1,2,0,1,1.0,4102.03132154,3900,0,15900.0,1,3,10,8,1,2,0,1,0,0,0,0,1,0,2,0,15900.0,4,2,4_0,4_0,6000.0,0,0.0,6000,10,13,0.0,30.0,1.1,0,0,534.7699338625819,0.0,534.7699338625819 3603,7475,7474,13,13,84,111,86,70,0,6024,0,0,0,0,0,7,0,1,1.0,5676.99729935,0,0,14990.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,1,0,14990.0,4,2,4_0,4_0,8986.0,0,0.0,8986,11,11,0.0,0.0,0.0,0,0,800.9071042815267,0.0,800.9071042815267 -3604,7483,7482,0,0,29,111,55,31,0,6034,0,0,0,125,1,3,1,2,1.3,1958.55750377,0,0,19672.0,1,3,7,5,2,0,0,0,0,0,1,0,0,1,0,0,15132.307692299997,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,47.5,5.5,0,0,0.0,0.0,0.0 +3604,7483,7482,0,0,29,111,55,31,0,6034,0,0,0,125,1,3,1,2,1.3,1958.55750377,0,0,19672.0,1,3,7,5,2,0,0,0,0,0,1,0,0,1,0,0,15132.3076923,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,47.5,5.5,0,0,0.0,0.0,0.0 3605,7532,7531,0,0,31,111,56,71,0,6100,0,0,0,450,1,3,0,1,1.0,2931.86906231,142,0,14866.0,1,3,7,5,1,0,0,0,0,0,1,0,0,0,0,0,14866.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3606,7537,7536,2,11,41,112,85,42,0,6108,0,0,0,0,0,2,0,1,1.0,6105.27035272,1040,0,15848.0,7,3,9,3,1,1,0,0,0,1,0,0,0,0,1,0,15848.0,4,2,4_0,4_0,9416.0,0,0.0,9416,12,12,0.0,0.0,0.0,0,0,839.2322828750116,0.0,839.2322828750116 -3607,7539,7538,3,10,31,111,64,50,0,611,0,120,0,0,2,4,1,3,1.8,2230.53722524,0,0,26673.0,1,4,10,8,4,2,0,1,0,0,0,0,1,0,1,1,14818.333333300001,4,2,4_0,4_0,52000.0,0,30000.0,22000,8,8,0.0,32.5,3.31,0,0,4634.672760142375,2673.8496693129086,1960.8230908294665 +3607,7539,7538,3,10,31,111,64,50,0,611,0,120,0,0,2,4,1,3,1.8,2230.53722524,0,0,26673.0,1,4,10,8,4,2,0,1,0,0,0,0,1,0,1,1,14818.3333333,4,2,4_0,4_0,52000.0,0,30000.0,22000,8,8,0.0,32.5,3.31,0,0,4634.672760142375,2673.8496693129086,1960.8230908294665 3608,7548,7547,5,16,28,111,46,31,0,6122,0,300,0,323,1,2,0,1,1.0,3328.36467634,2613,0,16801.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,16801.0,4,2,4_0,4_0,12000.0,0,12000.0,0,2,17,0.0,20.0,1.1,0,0,1069.5398677251637,1069.5398677251637,0.0 -3609,7549,7548,11,11,58,111,72,71,0,6125,0,0,0,0,0,3,0,2,1.5,3619.20199148,0,0,23881.0,4,1,9,7,3,1,1,0,0,0,0,1,0,0,0,1,15920.666666699999,4,2,4_0,4_0,22000.0,0,22000.0,0,6,9,0.0,0.0,0.0,0,0,1960.8230908294665,1960.8230908294665,0.0 +3609,7549,7548,11,11,58,111,72,71,0,6125,0,0,0,0,0,3,0,2,1.5,3619.20199148,0,0,23881.0,4,1,9,7,3,1,1,0,0,0,0,1,0,0,0,1,15920.6666667,4,2,4_0,4_0,22000.0,0,22000.0,0,6,9,0.0,0.0,0.0,0,0,1960.8230908294665,1960.8230908294665,0.0 3610,7553,7552,5,14,66,221,74,41,0,613,0,0,0,0,0,5,0,1,1.0,1724.07824711,0,0,16600.0,5,1,1,3,1,1,0,0,0,1,0,0,0,0,1,0,16600.0,4,2,4_0,4_0,7000.0,0,0.0,7000,9,15,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 -3611,7570,7569,5,7,36,112,43,60,0,6152,0,2000,0,0,2,5,0,2,1.5,2884.10019314,5720,0,22264.0,1,2,7,1,3,2,1,1,0,1,0,0,0,0,0,2,14842.666666699999,4,2,4_0,4_0,12000.0,0,12000.0,0,4,8,0.0,0.0,0.0,0,1,1069.5398677251637,1069.5398677251637,0.0 +3611,7570,7569,5,7,36,112,43,60,0,6152,0,2000,0,0,2,5,0,2,1.5,2884.10019314,5720,0,22264.0,1,2,7,1,3,2,1,1,0,1,0,0,0,0,0,2,14842.6666667,4,2,4_0,4_0,12000.0,0,12000.0,0,4,8,0.0,0.0,0.0,0,1,1069.5398677251637,1069.5398677251637,0.0 3612,7574,7573,0,0,76,112,77,71,0,6158,0,0,0,0,0,3,0,1,1.0,4606.33446099,0,0,16004.0,5,3,7,0,1,0,0,0,1,0,0,0,0,0,0,0,16004.0,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3613,7617,7616,1,1,27,111,47,31,1,6211,0,50,0,670,2,3,0,2,1.5,3081.6296045000004,2392,25000,22234.0,1,3,8,7,3,2,0,0,0,0,0,1,0,0,1,1,14822.666666699999,4,2,4_0,4_0,26088.0,0,17102.0,8986,11,0,55.0,3.33333333333,0.0,1,1,2325.179672434506,1524.272568152979,800.9071042815267 +3613,7617,7616,1,1,27,111,47,31,1,6211,0,50,0,670,2,3,0,2,1.5,3081.6296045,2392,25000,22234.0,1,3,8,7,3,2,0,0,0,0,0,1,0,0,1,1,14822.6666667,4,2,4_0,4_0,26088.0,0,17102.0,8986,11,0,55.0,3.33333333333,0.0,1,1,2325.179672434506,1524.272568152979,800.9071042815267 3614,7628,7627,0,0,87,111,75,71,0,6223,0,0,0,0,0,4,0,2,1.5,4178.90572482,0,0,24921.0,5,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,16614.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3615,7647,7646,16,18,81,111,78,71,0,6253,0,0,0,0,0,5,0,1,1.0,2933.22582419,0,0,15590.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,0,1,15590.0,4,2,4_0,4_0,9000.0,0,9000.0,0,14,18,0.0,0.0,0.0,0,0,802.1549007938728,802.1549007938728,0.0 3616,7655,7654,20,20,79,111,78,71,0,6262,0,0,0,276,0,3,0,2,1.5,3246.06484589,0,0,25220.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,1,0,16813.3333333,4,2,4_0,4_0,7000.0,0,0.0,7000,17,17,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 3617,7672,7671,0,0,90,111,77,70,0,6290,0,0,0,689,0,3,0,1,1.0,3452.33071165,0,0,15643.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,15643.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3618,7675,7674,0,0,75,111,77,71,0,6294,0,0,0,0,0,4,0,1,1.0,3201.70254542,0,0,16727.0,5,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,16727.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3619,7677,7676,4,4,36,111,46,31,0,6296,0,500,0,0,2,4,3,5,2.4,2350.02219329,0,0,38941.0,1,1,9,7,4,2,0,1,0,0,0,1,0,1,1,1,16225.416666699999,4,2,4_1,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 +3619,7677,7676,4,4,36,111,46,31,0,6296,0,500,0,0,2,4,3,5,2.4,2350.02219329,0,0,38941.0,1,1,9,7,4,2,0,1,0,0,0,1,0,1,1,1,16225.4166667,4,2,4_1,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 3620,7682,7681,6,12,35,111,47,31,0,6301,0,80,30,0,2,3,0,2,1.5,2242.16592481,0,0,25271.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,1,1,16847.3333333,4,2,4_0,4_0,14867.0,0,8000.0,6867,12,12,25.0,30.0,3.3,0,1,1325.0707677891673,713.0265784834424,612.0441893057248 -3621,7703,7702,2,10,23,120,52,33,0,6334,0,0,100,0,2,7,0,2,1.5,3075.0895210999997,0,0,23563.0,1,4,0,0,3,2,0,0,1,0,0,0,0,0,2,0,15708.666666699999,4,2,4_0,4_1,15000.0,0,0.0,15000,4,5,104.0,45.0,3.3,0,1,1322.0260499329274,0.0,1322.0260499329274 +3621,7703,7702,2,10,23,120,52,33,0,6334,0,0,100,0,2,7,0,2,1.5,3075.0895211,0,0,23563.0,1,4,0,0,3,2,0,0,1,0,0,0,0,0,2,0,15708.6666667,4,2,4_0,4_1,15000.0,0,0.0,15000,4,5,104.0,45.0,3.3,0,1,1322.0260499329274,0.0,1322.0260499329274 3622,7710,7709,4,4,78,111,75,71,0,6348,0,0,0,510,0,4,0,2,1.5,2433.16279177,0,0,23571.0,5,3,5,4,3,1,0,0,0,0,1,0,0,0,0,1,15714.0,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3623,7730,7729,3,3,60,112,78,70,0,6377,0,0,0,0,0,5,0,1,1.0,1697.04805451,3042,0,16350.0,5,1,10,1,1,1,0,0,0,1,0,0,0,0,1,0,16350.0,4,2,4_0,4_0,8000.0,0,0.0,8000,3,4,0.0,0.0,0.0,0,0,713.0265784834424,0.0,713.0265784834424 3624,7735,7734,2,6,42,300,38,31,0,6385,0,0,0,0,2,7,2,5,3.0,1723.23354739,0,0,48399.0,1,1,0,0,5,1,1,0,1,0,0,0,0,0,0,1,16133.0,4,2,4_0,4_1,13000.0,0,13000.0,0,4,6,102.5,34.6666666667,2.24,1,1,1145.7559099418704,1145.7559099418704,0.0 3625,7739,7738,2,10,39,111,64,41,0,6389,0,60,0,539,2,5,2,4,2.1,2737.22485895,0,0,32016.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,0,2,15245.7142857,4,2,4_0,4_0,31920.0,0,31920.0,0,1,8,227.2,26.6666666667,3.3,0,1,2844.976048148935,2844.976048148935,0.0 -3626,7745,7744,8,9,35,111,54,41,0,6399,0,0,0,335,1,3,1,2,1.3,3443.37285583,0,0,20075.0,1,3,9,7,2,1,0,0,0,0,0,1,0,1,1,0,15442.307692299997,4,2,4_1,4_0,30000.0,0,0.0,30000,2,9,0.0,10.0,0.0,1,0,2673.8496693129086,0.0,2673.8496693129086 +3626,7745,7744,8,9,35,111,54,41,0,6399,0,0,0,335,1,3,1,2,1.3,3443.37285583,0,0,20075.0,1,3,9,7,2,1,0,0,0,0,0,1,0,1,1,0,15442.3076923,4,2,4_1,4_0,30000.0,0,0.0,30000,2,9,0.0,10.0,0.0,1,0,2673.8496693129086,0.0,2673.8496693129086 3627,7746,7745,0,16,48,111,85,31,0,64,0,0,170,0,1,9,1,3,2.0,2398.18576857,7020,0,31114.0,4,1,5,4,4,2,0,1,0,0,1,0,0,0,1,1,15557.0,4,2,4_0,4_0,7781.0,0,7781.0,0,1,17,145.0,180.0,3.3,1,0,693.5074758974582,693.5074758974582,0.0 3628,7752,7751,8,8,56,111,46,10,0,6406,0,0,0,271,1,3,0,1,1.0,2594.51426989,1040,0,16314.0,1,3,9,7,1,1,1,0,0,0,0,1,0,1,1,0,16314.0,4,2,4_1,4_0,3000.0,0,0.0,3000,3,10,0.0,0.0,0.0,0,0,267.38496693129093,0.0,267.38496693129093 3629,7755,7754,4,4,80,111,77,50,0,6409,0,0,0,0,0,4,0,1,1.0,2658.37872673,1560,0,16237.0,5,4,6,4,1,1,0,0,0,0,1,0,0,0,1,0,16237.0,4,2,4_0,4_0,7000.0,0,0.0,7000,5,5,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 -3630,7776,7775,2,21,36,212,47,43,0,644,0,180,40,0,2,4,2,4,2.1,1319.32771671,2653,0,32314.0,1,2,2,0,4,2,0,1,1,0,0,0,0,0,1,1,15387.619047600001,4,2,4_0,4_1,20500.0,0,18000.0,2500,5,18,0.0,10.0,3.3,0,1,1806.7689349083341,1586.431259919513,220.33767498882122 -3631,7777,7776,1,1,48,112,54,42,0,6440,0,325,0,0,2,6,2,4,2.1,2464.2442011999997,1581,0,33912.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,16148.571428600002,4,2,4_0,4_1,30000.0,0,30000.0,0,2,2,274.5,24.0,3.3,0,1,2644.052099865855,2644.052099865855,0.0 +3630,7776,7775,2,21,36,212,47,43,0,644,0,180,40,0,2,4,2,4,2.1,1319.32771671,2653,0,32314.0,1,2,2,0,4,2,0,1,1,0,0,0,0,0,1,1,15387.6190476,4,2,4_0,4_1,20500.0,0,18000.0,2500,5,18,0.0,10.0,3.3,0,1,1806.7689349083341,1586.431259919513,220.33767498882122 +3631,7777,7776,1,1,48,112,54,42,0,6440,0,325,0,0,2,6,2,4,2.1,2464.2442012,1581,0,33912.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,16148.5714286,4,2,4_0,4_1,30000.0,0,30000.0,0,2,2,274.5,24.0,3.3,0,1,2644.052099865855,2644.052099865855,0.0 3632,7779,7778,0,0,89,111,77,70,0,6445,0,0,0,185,0,3,0,1,1.0,2425.69859145,0,0,14992.0,5,3,7,6,1,0,0,0,0,0,1,0,0,1,0,0,14992.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3633,7783,7782,9,10,47,111,52,71,0,6450,0,60,0,317,2,4,2,4,2.3,3247.00513902,0,0,34619.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,15051.7391304,4,2,4_0,4_0,13682.0,0,13682.0,0,4,9,91.0,30.0,1.1,0,0,1219.4537058513074,1219.4537058513074,0.0 3634,7789,7788,2,2,44,111,63,71,0,6459,0,0,0,330,1,1,0,1,1.0,4624.69859406,0,0,15360.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,15360.0,4,2,4_0,4_0,11000.0,0,0.0,11000,1,1,92.5,50.0,3.3,0,1,980.4115454147333,0.0,980.4115454147333 @@ -3639,108 +3639,108 @@ 3637,7804,7803,1,1,21,111,56,50,1,6484,0,0,540,171,1,2,0,1,1.0,2755.06808,1040,8500,16046.0,1,3,8,7,1,1,1,1,0,0,0,1,0,1,1,0,16046.0,4,2,4_1,4_0,4023.0,0,0.0,4023,1,1,40.0,10.0,3.3,0,1,358.5632406548611,0.0,358.5632406548611 3638,7806,7805,6,16,42,120,62,50,0,6486,0,0,60,0,2,4,3,5,2.4,998.282631542,4261,0,40258.0,1,4,0,3,4,2,0,1,0,1,0,0,0,0,1,1,16774.1666667,4,2,4_0,4_0,18650.0,0,10000.0,8650,10,16,103.5,18.0,0.0,0,0,1662.2432110895252,891.283223104303,770.9599879852221 3639,7816,7815,10,13,42,112,34,31,0,65,0,0,0,0,2,5,2,4,2.3,1399.21852174,0,0,35634.0,1,2,9,0,4,1,0,0,1,0,0,0,0,0,0,1,15493.0434783,4,2,4_0,4_1,10000.0,0,10000.0,0,9,12,45.0,20.0,0.0,0,1,881.3506999552849,881.3506999552849,0.0 -3640,7825,7824,3,7,62,111,78,70,0,6514,0,0,0,0,0,7,0,2,1.5,1266.61536435,1612,0,22870.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,15246.666666699999,4,2,4_0,4_0,11258.0,0,1000.0,10258,5,5,0.0,0.0,0.0,0,0,1003.4066525708243,89.1283223104303,914.2783302603939 +3640,7825,7824,3,7,62,111,78,70,0,6514,0,0,0,0,0,7,0,2,1.5,1266.61536435,1612,0,22870.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,15246.6666667,4,2,4_0,4_0,11258.0,0,1000.0,10258,5,5,0.0,0.0,0.0,0,0,1003.4066525708243,89.1283223104303,914.2783302603939 3641,7827,7826,2,12,49,111,54,71,0,6516,0,0,120,231,1,3,1,2,1.3,3520.6224155,1560,0,19708.0,1,3,10,8,2,1,0,1,0,0,0,0,1,1,1,0,15160.0,4,2,4_1,4_0,10000.0,0,0.0,10000,8,12,11.0,15.0,3.3,0,1,891.283223104303,0.0,891.283223104303 3642,7832,7831,0,10,30,300,85,33,0,6521,0,0,0,0,0,3,1,3,1.8,2605.91964064,3438,0,29294.0,7,3,0,0,4,1,0,0,1,0,0,0,0,1,1,0,16274.4444444,4,2,4_1,4_1,8000.0,0,0.0,8000,7,11,0.0,0.0,0.0,0,0,705.0805599642279,0.0,705.0805599642279 3643,7845,7844,5,15,44,111,47,43,0,6542,0,250,0,0,1,3,0,2,1.5,2495.89470194,1040,0,23382.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,0,1,15588.0,4,2,4_0,4_0,10000.0,0,10000.0,0,4,13,140.5,97.5,3.3,0,1,891.283223104303,891.283223104303,0.0 -3644,7849,7848,12,13,88,120,78,71,0,6548,0,0,0,0,0,3,0,2,1.5,1742.11689761,0,0,23920.0,5,4,0,1,3,1,0,0,0,1,0,0,0,0,1,0,15946.666666699999,4,2,4_0,4_0,2000.0,0,0.0,2000,11,11,0.0,0.0,0.0,0,0,178.2566446208606,0.0,178.2566446208606 +3644,7849,7848,12,13,88,120,78,71,0,6548,0,0,0,0,0,3,0,2,1.5,1742.11689761,0,0,23920.0,5,4,0,1,3,1,0,0,0,1,0,0,0,0,1,0,15946.6666667,4,2,4_0,4_0,2000.0,0,0.0,2000,11,11,0.0,0.0,0.0,0,0,178.2566446208606,0.0,178.2566446208606 3645,7859,7858,1,4,33,112,46,41,2,6564,0,0,0,0,2,4,3,5,2.4,2342.42600633,1560,16400,36414.0,1,2,8,1,4,1,0,0,0,1,0,0,0,0,0,1,15172.5,4,2,4_0,4_0,13672.0,0,13672.0,0,1,2,0.0,20.0,3.3,0,1,1218.562422628203,1218.562422628203,0.0 3646,7866,7865,3,5,52,112,46,71,0,6572,0,130,0,0,2,6,2,4,2.5,2319.26702611,1568,0,38480.0,1,2,7,2,4,2,0,1,0,1,0,0,0,0,1,1,15392.0,4,2,4_0,4_0,32000.0,0,25000.0,7000,5,7,0.0,30.0,0.0,0,1,2852.10631393377,2228.2080577607576,623.8982561730121 3647,7868,7867,11,11,42,111,54,50,0,6574,0,0,99999,231,1,3,1,2,1.3,3129.24729782,832,0,19567.0,4,3,10,8,2,1,0,1,0,0,0,0,1,1,1,0,15051.5384615,4,2,4_1,4_0,8000.0,0,0.0,8000,7,10,0.0,60.0,0.0,0,0,713.0265784834424,0.0,713.0265784834424 3648,7870,7869,2,5,34,111,68,43,0,6576,0,5,0,322,1,2,1,2,1.3,6256.28890539,1560,0,21853.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,16810.0,4,2,4_1,4_0,40000.0,0,40000.0,0,2,5,185.0,40.0,3.31,0,1,3565.132892417212,3565.132892417212,0.0 -3649,7876,7875,9,9,74,112,78,71,0,6583,0,0,0,0,0,4,0,2,1.5,2826.01722713,0,0,23095.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,2,0,15396.666666699999,4,2,4_0,4_1,17430.0,0,0.0,17430,7,7,0.0,0.0,0.0,0,0,1536.1942700220616,0.0,1536.1942700220616 +3649,7876,7875,9,9,74,112,78,71,0,6583,0,0,0,0,0,4,0,2,1.5,2826.01722713,0,0,23095.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,2,0,15396.6666667,4,2,4_0,4_1,17430.0,0,0.0,17430,7,7,0.0,0.0,0.0,0,0,1536.1942700220616,0.0,1536.1942700220616 3650,7888,7887,20,20,75,112,77,71,0,660,0,0,0,0,0,4,0,1,1.0,3220.37343067,0,0,14960.0,5,1,7,0,1,1,0,0,1,0,0,0,0,0,1,0,14960.0,4,2,4_0,4_1,8000.0,0,0.0,8000,16,19,0.0,0.0,0.0,0,0,705.0805599642279,0.0,705.0805599642279 3651,7898,7897,0,0,73,111,77,71,0,6617,0,0,0,0,0,2,0,1,1.0,2855.97513065,0,0,15307.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15307.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3652,7899,7898,4,5,31,111,52,31,0,6618,0,20,0,0,2,3,2,4,2.1,2833.41200483,597,0,31788.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,15137.142857100001,4,2,4_0,4_0,46336.0,0,46336.0,0,1,5,218.0,27.0,3.3,0,1,4129.849942576098,4129.849942576098,0.0 -3653,7903,7902,2,7,29,111,63,71,0,6621,0,28,0,300,1,4,2,4,2.1,3886.33818475,1040,0,32543.0,1,3,7,6,4,1,0,1,0,0,1,0,0,0,0,1,15496.666666699999,4,2,4_0,4_0,25000.0,0,25000.0,0,5,7,96.5,70.0,3.3,0,1,2228.2080577607576,2228.2080577607576,0.0 +3652,7899,7898,4,5,31,111,52,31,0,6618,0,20,0,0,2,3,2,4,2.1,2833.41200483,597,0,31788.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,15137.1428571,4,2,4_0,4_0,46336.0,0,46336.0,0,1,5,218.0,27.0,3.3,0,1,4129.849942576098,4129.849942576098,0.0 +3653,7903,7902,2,7,29,111,63,71,0,6621,0,28,0,300,1,4,2,4,2.1,3886.33818475,1040,0,32543.0,1,3,7,6,4,1,0,1,0,0,1,0,0,0,0,1,15496.6666667,4,2,4_0,4_0,25000.0,0,25000.0,0,5,7,96.5,70.0,3.3,0,1,2228.2080577607576,2228.2080577607576,0.0 3654,7922,7921,5,10,50,300,13,44,0,664,0,1030,0,0,3,5,2,4,2.5,2702.30555651,4576,0,37851.0,1,1,0,0,4,5,0,1,1,0,0,0,0,0,1,4,15140.4,4,2,4_0,4_1,15000.0,0,15000.0,0,5,8,0.0,0.0,0.0,0,1,1322.0260499329274,1322.0260499329274,0.0 -3655,7929,7928,9,11,52,111,64,50,0,6649,0,250,0,0,1,4,1,3,2.0,1734.03366302,2080,0,30037.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,15018.5,4,2,4_0,4_0,13582.0,0,13582.0,0,4,10,0.0,13.333333333299999,1.1,0,0,1210.5408736202644,1210.5408736202644,0.0 +3655,7929,7928,9,11,52,111,64,50,0,6649,0,250,0,0,1,4,1,3,2.0,1734.03366302,2080,0,30037.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,15018.5,4,2,4_0,4_0,13582.0,0,13582.0,0,4,10,0.0,13.3333333333,1.1,0,0,1210.5408736202644,1210.5408736202644,0.0 3656,7938,7937,3,3,61,111,78,50,0,666,0,40,0,0,1,3,0,2,1.5,2120.86599991,1061,0,23271.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,0,2,15514.0,4,2,4_0,4_0,33000.0,0,33000.0,0,4,4,171.5,90.0,3.3,0,1,2941.2346362442,2941.2346362442,0.0 -3657,7958,7957,0,10,26,111,33,10,0,6686,0,0,0,0,1,1,0,1,1.0,3865.4704002999997,0,0,15249.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,15249.0,4,2,4_0,4_0,14572.0,0,14572.0,0,1,10,93.2,120.0,3.3,0,1,1298.7779127075903,1298.7779127075903,0.0 +3657,7958,7957,0,10,26,111,33,10,0,6686,0,0,0,0,1,1,0,1,1.0,3865.4704003,0,0,15249.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,15249.0,4,2,4_0,4_0,14572.0,0,14572.0,0,1,10,93.2,120.0,3.3,0,1,1298.7779127075903,1298.7779127075903,0.0 3658,7959,7958,7,7,70,111,86,70,0,6687,0,0,0,0,0,4,0,1,1.0,2170.15292402,1524,0,16012.0,5,4,9,7,1,1,0,0,0,0,0,1,0,0,1,0,16012.0,4,2,4_0,4_0,2500.0,0,0.0,2500,7,7,0.0,0.0,0.0,0,0,222.82080577607576,0.0,222.82080577607576 3659,7960,7959,2,19,51,300,65,71,0,669,0,600,800,45,1,4,1,3,2.0,3868.11303297,2862,0,30275.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,1,1,15137.5,4,2,4_1,4_1,39892.0,0,32226.0,7666,9,19,180.8,55.0,3.3,0,1,3515.8842122616225,2840.2407656759015,675.6434465857213 3660,7964,7963,0,0,78,111,86,71,0,6697,0,0,0,259,1,5,0,2,1.5,3180.47625867,0,0,23535.0,6,3,10,8,5,0,0,0,0,0,0,0,1,1,0,0,15690.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3661,7972,7971,1,2,71,111,78,71,2,6707,0,0,0,0,0,4,1,3,2.0,3605.21898278,0,10700,32066.0,5,3,9,7,4,1,0,0,0,0,0,1,0,1,0,1,16033.0,4,2,4_1,4_0,20000.0,0,20000.0,0,1,6,0.0,0.0,0.0,0,0,1782.566446208606,1782.566446208606,0.0 3662,7973,7972,3,5,39,221,62,41,0,6708,0,100,150,0,2,5,2,4,2.1,2240.04346716,0,0,34284.0,1,2,1,3,4,2,0,1,0,1,0,0,0,1,1,1,16325.7142857,4,2,4_1,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 -3663,8019,8018,2,6,58,111,45,50,0,6778,0,0,0,251,1,4,0,2,1.3,3251.90609939,2723,0,21624.0,1,3,9,7,5,1,0,0,0,0,0,1,0,0,1,0,16633.846153799997,4,2,4_0,4_0,6000.0,0,0.0,6000,5,5,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 +3663,8019,8018,2,6,58,111,45,50,0,6778,0,0,0,251,1,4,0,2,1.3,3251.90609939,2723,0,21624.0,1,3,9,7,5,1,0,0,0,0,0,1,0,0,1,0,16633.8461538,4,2,4_0,4_0,6000.0,0,0.0,6000,5,5,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 3664,8024,8023,3,8,26,111,46,20,0,6787,0,350,0,0,1,7,0,1,1.0,3025.88181108,0,0,16745.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,16745.0,4,2,4_0,4_0,11000.0,0,11000.0,0,6,8,0.0,10.0,3.3,0,1,980.4115454147333,980.4115454147333,0.0 -3665,8037,8036,0,0,31,111,38,12,0,680,0,0,0,700,1,1,0,2,1.5,3822.84178056,0,0,22585.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,15056.666666699999,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3665,8037,8036,0,0,31,111,38,12,0,680,0,0,0,700,1,1,0,2,1.5,3822.84178056,0,0,22585.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,15056.6666667,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3666,8038,8037,0,0,42,111,63,71,0,6800,0,0,0,537,1,2,0,1,1.0,3221.72059302,5200,0,15810.0,4,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,15810.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,167.5,160.0,5.57,0,0,0.0,0.0,0.0 -3667,8054,8053,17,17,76,212,74,50,0,6823,0,0,0,0,0,4,0,2,1.5,954.0077448789999,2766,0,24790.0,5,1,2,0,3,1,0,0,1,0,0,0,0,0,0,1,16526.6666667,4,2,4_0,4_1,12000.0,0,12000.0,0,3,18,0.0,0.0,0.0,0,0,1057.6208399463417,1057.6208399463417,0.0 +3667,8054,8053,17,17,76,212,74,50,0,6823,0,0,0,0,0,4,0,2,1.5,954.007744879,2766,0,24790.0,5,1,2,0,3,1,0,0,1,0,0,0,0,0,0,1,16526.6666667,4,2,4_0,4_1,12000.0,0,12000.0,0,3,18,0.0,0.0,0.0,0,0,1057.6208399463417,1057.6208399463417,0.0 3668,8055,8054,0,0,74,112,77,70,0,6824,0,0,0,0,0,3,0,1,1.0,2555.36655567,0,0,15530.0,5,3,9,3,1,0,0,0,0,1,0,0,0,0,0,0,15530.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3669,8065,8064,10,10,50,120,64,50,0,6837,0,550,0,0,2,4,2,4,2.1,2548.19765137,2600,0,34220.0,1,2,0,2,4,2,0,1,0,1,0,0,0,0,0,2,16295.238095200002,4,2,4_0,4_0,20000.0,0,20000.0,0,6,7,207.5,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 -3670,8076,8075,5,5,44,300,42,20,0,6851,0,0,0,0,1,3,2,3,1.8,1889.4327627,3122,0,27051.0,1,3,0,0,2,1,0,0,1,0,0,0,0,0,0,1,15028.333333300001,4,2,4_0,4_1,22226.0,0,22226.0,0,2,5,176.5,60.0,3.3,0,1,1958.8900657206161,1958.8900657206161,0.0 +3669,8065,8064,10,10,50,120,64,50,0,6837,0,550,0,0,2,4,2,4,2.1,2548.19765137,2600,0,34220.0,1,2,0,2,4,2,0,1,0,1,0,0,0,0,0,2,16295.2380952,4,2,4_0,4_0,20000.0,0,20000.0,0,6,7,207.5,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 +3670,8076,8075,5,5,44,300,42,20,0,6851,0,0,0,0,1,3,2,3,1.8,1889.4327627,3122,0,27051.0,1,3,0,0,2,1,0,0,1,0,0,0,0,0,0,1,15028.3333333,4,2,4_0,4_1,22226.0,0,22226.0,0,2,5,176.5,60.0,3.3,0,1,1958.8900657206161,1958.8900657206161,0.0 3671,8079,8078,13,13,75,120,78,71,0,6854,0,0,0,0,0,3,0,1,1.0,3455.5523091,0,0,15250.0,5,1,0,3,1,1,0,0,0,1,0,0,0,0,0,1,15250.0,4,2,4_0,4_0,10362.0,0,10362.0,0,2,13,0.0,0.0,0.0,0,0,923.5476757806788,923.5476757806788,0.0 3672,8085,8084,0,0,54,111,63,71,0,6865,0,0,0,640,2,3,1,3,1.8,3090.05784248,0,0,29703.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,16501.6666667,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3673,8086,8085,2,3,36,111,63,60,0,6866,0,150,0,0,2,4,2,4,2.1,2786.71076684,0,0,32435.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,15445.238095200002,4,2,4_0,4_0,80000.0,0,80000.0,0,1,1,0.0,23.3333333333,0.0,0,1,7130.265784834424,7130.265784834424,0.0 -3674,8108,8107,1,17,47,111,42,71,0,6893,0,100,0,241,1,2,3,5,2.4,3820.01466074,1040,0,35828.0,1,3,10,8,4,2,0,0,0,0,0,0,1,1,0,2,14928.333333300001,4,2,4_1,4_0,23843.0,0,23843.0,0,2,9,41.0,34.0,3.3,0,1,2125.0865888475896,2125.0865888475896,0.0 +3673,8086,8085,2,3,36,111,63,60,0,6866,0,150,0,0,2,4,2,4,2.1,2786.71076684,0,0,32435.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,15445.2380952,4,2,4_0,4_0,80000.0,0,80000.0,0,1,1,0.0,23.3333333333,0.0,0,1,7130.265784834424,7130.265784834424,0.0 +3674,8108,8107,1,17,47,111,42,71,0,6893,0,100,0,241,1,2,3,5,2.4,3820.01466074,1040,0,35828.0,1,3,10,8,4,2,0,0,0,0,0,0,1,1,0,2,14928.3333333,4,2,4_1,4_0,23843.0,0,23843.0,0,2,9,41.0,34.0,3.3,0,1,2125.0865888475896,2125.0865888475896,0.0 3675,8148,8147,14,14,77,111,77,70,0,6950,0,0,0,0,0,3,0,2,1.5,2414.37306074,0,0,24930.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,16620.0,4,2,4_0,4_0,1500.0,0,0.0,1500,7,14,0.0,0.0,0.0,0,0,133.69248346564547,0.0,133.69248346564547 3676,8162,8161,19,19,65,400,77,60,0,6967,0,0,0,0,0,5,0,1,1.0,6875.20794899,2080,0,15658.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,15658.0,4,2,4_0,4_1,3888.0,0,0.0,3888,7,17,0.0,0.0,0.0,0,0,342.6691521426148,0.0,342.6691521426148 3677,8178,8177,0,10,23,111,84,41,0,6988,0,400,0,400,0,2,0,1,1.0,4179.84756576,2600,0,16259.0,3,3,7,5,1,1,0,1,0,0,1,0,0,0,0,1,16259.0,4,2,4_0,4_0,15000.0,0,15000.0,0,4,13,0.0,0.0,0.0,0,0,1336.9248346564543,1336.9248346564543,0.0 -3678,8204,8203,7,31,53,400,43,44,0,702,0,60,0,0,2,6,0,2,1.5,2377.31173133,1300,0,24347.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,16231.333333300001,4,2,4_0,4_1,18000.0,0,0.0,18000,7,21,109.8,60.0,3.3,0,0,1586.431259919513,0.0,1586.431259919513 -3679,8207,8206,1,1,44,111,63,71,2,7024,0,0,0,0,2,2,2,4,2.1,4368.90632542,0,25000,33040.0,1,4,10,8,4,1,0,0,0,0,0,0,1,0,0,1,15733.333333300001,4,2,4_0,4_0,12000.0,0,12000.0,0,1,3,104.0,113.333333333,3.32,0,1,1069.5398677251637,1069.5398677251637,0.0 -3680,8210,8209,1,2,25,112,64,50,2,7028,0,400,0,418,2,7,4,6,2.9,1781.82358342,0,5000,45136.0,1,3,9,0,4,2,0,1,1,0,0,0,0,1,0,2,15564.137931000001,4,2,4_1,4_1,34726.0,0,34726.0,0,2,2,124.4,16.0,3.3,0,1,3060.5784406647226,3060.5784406647226,0.0 +3678,8204,8203,7,31,53,400,43,44,0,702,0,60,0,0,2,6,0,2,1.5,2377.31173133,1300,0,24347.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,16231.3333333,4,2,4_0,4_1,18000.0,0,0.0,18000,7,21,109.8,60.0,3.3,0,0,1586.431259919513,0.0,1586.431259919513 +3679,8207,8206,1,1,44,111,63,71,2,7024,0,0,0,0,2,2,2,4,2.1,4368.90632542,0,25000,33040.0,1,4,10,8,4,1,0,0,0,0,0,0,1,0,0,1,15733.3333333,4,2,4_0,4_0,12000.0,0,12000.0,0,1,3,104.0,113.333333333,3.32,0,1,1069.5398677251637,1069.5398677251637,0.0 +3680,8210,8209,1,2,25,112,64,50,2,7028,0,400,0,418,2,7,4,6,2.9,1781.82358342,0,5000,45136.0,1,3,9,0,4,2,0,1,1,0,0,0,0,1,0,2,15564.137931,4,2,4_1,4_1,34726.0,0,34726.0,0,2,2,124.4,16.0,3.3,0,1,3060.5784406647226,3060.5784406647226,0.0 3681,8226,8225,0,1,46,112,53,50,1,7055,0,20,99999,0,2,5,2,4,2.3,2611.0744042,0,23000,34077.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,1,1,14816.0869565,4,2,4_0,4_1,22082.0,0,13000.0,9082,2,2,0.0,0.0,0.0,0,1,1946.1986156412602,1145.7559099418704,800.4427056993898 3682,8238,8237,3,15,30,111,65,50,0,7071,0,0,330,320,1,3,0,1,1.0,2461.48299607,2340,0,16156.0,1,3,6,5,1,1,1,1,0,0,1,0,0,0,1,0,16156.0,4,2,4_0,4_0,15000.0,0,0.0,15000,3,14,0.0,0.0,0.0,0,1,1336.9248346564543,0.0,1336.9248346564543 -3683,8240,8239,2,7,72,112,72,70,0,7074,0,0,0,0,0,5,0,2,1.5,1830.69814302,4160,0,23440.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,15626.666666699999,4,2,4_0,4_1,9500.0,0,9500.0,0,3,7,0.0,0.0,0.0,0,0,837.2831649575206,837.2831649575206,0.0 +3683,8240,8239,2,7,72,112,72,70,0,7074,0,0,0,0,0,5,0,2,1.5,1830.69814302,4160,0,23440.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,15626.6666667,4,2,4_0,4_1,9500.0,0,9500.0,0,3,7,0.0,0.0,0.0,0,0,837.2831649575206,837.2831649575206,0.0 3684,8249,8248,0,0,81,111,78,71,0,7086,0,0,0,274,0,2,0,1,1.0,3167.42807246,0,0,15440.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,15440.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3685,8263,8262,0,0,74,111,77,50,0,7104,0,0,0,0,0,3,0,1,1.0,2485.58920254,0,0,16359.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16359.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3686,8274,8273,0,0,37,111,46,41,0,712,0,0,0,789,1,3,2,3,1.6,3320.50636509,0,0,25048.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,15655.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3687,8276,8275,6,13,38,111,62,50,0,7123,0,10,0,0,2,4,2,4,2.1,1292.36555959,1043,0,32641.0,1,3,8,7,4,1,0,1,0,0,0,1,0,0,0,1,15543.333333300001,4,2,4_0,4_0,10000.0,0,10000.0,0,8,13,162.0,22.5,2.24,0,1,891.283223104303,891.283223104303,0.0 +3687,8276,8275,6,13,38,111,62,50,0,7123,0,10,0,0,2,4,2,4,2.1,1292.36555959,1043,0,32641.0,1,3,8,7,4,1,0,1,0,0,0,1,0,0,0,1,15543.3333333,4,2,4_0,4_0,10000.0,0,10000.0,0,8,13,162.0,22.5,2.24,0,1,891.283223104303,891.283223104303,0.0 3688,8278,8277,0,0,26,112,69,71,1,7125,0,12,0,0,2,3,0,2,1.5,3578.99987973,0,11890,24706.0,1,3,8,0,3,3,0,1,1,0,0,0,0,1,1,2,16470.6666667,4,2,4_1,4_1,22891.0,0,22891.0,0,5,7,0.0,22.5,0.0,0,1,2017.4998872676426,2017.4998872676426,0.0 3689,8295,8294,1,19,29,112,55,31,2,7147,0,200,0,365,1,3,0,1,1.0,3223.50966141,1560,4500,15223.0,1,3,8,1,1,1,0,1,0,1,0,0,0,0,0,1,15223.0,4,2,4_0,4_0,20000.0,0,20000.0,0,7,18,0.0,25.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 3690,8301,8300,1,16,45,111,55,50,2,7157,0,0,250,0,3,6,2,4,2.5,1404.73479068,5200,1000,37325.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,2,0,14930.0,4,2,4_1,4_0,2500.0,0,0.0,2500,15,15,0.0,0.0,0.0,0,1,222.82080577607576,0.0,222.82080577607576 3691,8330,8329,3,7,71,111,78,70,0,7204,0,0,0,0,0,2,0,1,1.0,1895.90041543,0,0,16814.0,5,1,7,6,1,1,0,0,0,0,1,0,0,0,1,0,16814.0,4,2,4_0,4_0,2500.0,0,0.0,2500,7,7,0.0,0.0,0.0,0,0,222.82080577607576,0.0,222.82080577607576 -3692,8333,8332,0,0,84,111,77,50,0,7209,0,0,0,0,0,4,0,2,1.5,3241.92290593,0,0,23557.0,5,1,8,6,5,0,0,0,0,0,1,0,0,0,0,0,15704.666666699999,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3693,8338,8337,8,8,71,221,78,71,0,722,0,0,0,0,0,3,0,2,1.5,5995.36700529,0,0,23399.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,0,1,15599.333333300001,4,2,4_0,4_0,15000.0,0,15000.0,0,2,7,0.0,0.0,0.0,0,0,1336.9248346564543,1336.9248346564543,0.0 +3692,8333,8332,0,0,84,111,77,50,0,7209,0,0,0,0,0,4,0,2,1.5,3241.92290593,0,0,23557.0,5,1,8,6,5,0,0,0,0,0,1,0,0,0,0,0,15704.6666667,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +3693,8338,8337,8,8,71,221,78,71,0,722,0,0,0,0,0,3,0,2,1.5,5995.36700529,0,0,23399.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,0,1,15599.3333333,4,2,4_0,4_0,15000.0,0,15000.0,0,2,7,0.0,0.0,0.0,0,0,1336.9248346564543,1336.9248346564543,0.0 3694,8340,8339,1,16,64,221,78,50,0,7221,0,0,0,0,0,5,0,2,1.5,2296.74837482,0,0,23700.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,15800.0,4,2,4_0,4_0,12000.0,0,12000.0,0,5,15,0.0,0.0,0.0,0,0,1069.5398677251637,1069.5398677251637,0.0 3695,8345,8344,5,5,32,300,64,50,0,7229,0,199998,0,0,2,5,1,3,1.8,1442.15838262,0,0,26810.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,14894.4444444,4,2,4_0,4_1,31343.0,0,31343.0,0,5,5,871.4,34.0,3.3,0,1,2762.4174988698496,2762.4174988698496,0.0 3696,8352,8351,7,7,81,221,75,71,0,7237,0,0,0,221,0,4,0,1,1.0,3086.80216307,0,0,15024.0,5,3,1,3,1,1,0,0,0,1,0,0,0,1,1,0,15024.0,4,2,4_1,4_0,7000.0,0,0.0,7000,5,5,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 3697,8362,8361,7,7,81,400,75,70,0,7247,0,0,0,0,0,3,0,2,1.5,2153.06868164,0,0,23814.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,15876.0,4,2,4_0,4_1,2000.0,0,0.0,2000,7,7,0.0,0.0,0.0,0,0,176.27013999105696,0.0,176.27013999105696 3698,8371,8370,2,7,27,400,64,60,0,7260,0,600,0,0,2,3,1,3,1.8,6788.15752663,3187,0,27667.0,1,3,0,1,4,1,0,1,0,1,0,0,0,1,0,1,15370.5555556,4,2,4_1,4_0,15000.0,0,15000.0,0,1,9,23.0,60.0,2.2,0,1,1336.9248346564543,1336.9248346564543,0.0 3699,8373,8372,5,5,43,111,22,50,0,7264,0,0,0,0,1,3,0,1,1.0,4222.19847535,2132,0,16595.0,1,4,9,7,1,1,0,0,0,0,0,1,0,0,0,1,16595.0,4,2,4_0,4_0,15000.0,0,15000.0,0,5,7,0.0,30.0,2.2,0,1,1336.9248346564543,1336.9248346564543,0.0 -3700,8380,8379,2,4,46,111,52,42,0,7275,0,100,150,0,2,8,3,5,2.8,1652.98615066,3277,0,43872.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,15668.571428600002,4,2,4_0,4_0,32000.0,0,20000.0,12000,3,9,107.0,33.75,3.3,0,1,2852.10631393377,1782.566446208606,1069.5398677251637 +3700,8380,8379,2,4,46,111,52,42,0,7275,0,100,150,0,2,8,3,5,2.8,1652.98615066,3277,0,43872.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,15668.5714286,4,2,4_0,4_0,32000.0,0,20000.0,12000,3,9,107.0,33.75,3.3,0,1,2852.10631393377,1782.566446208606,1069.5398677251637 3701,8382,8381,4,4,91,111,75,70,0,7278,0,0,0,0,0,6,0,1,1.0,1858.48442123,0,0,16296.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,0,1,16296.0,4,2,4_0,4_0,10000.0,0,10000.0,0,5,5,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3702,8418,8417,8,11,40,111,54,50,0,7331,0,340,0,0,2,6,2,4,2.5,1065.59944694,1820,0,39394.0,1,1,6,4,4,2,0,1,0,0,1,0,0,0,0,2,15757.6,4,2,4_0,4_0,10000.0,0,10000.0,0,3,11,64.0,50.0,3.31,0,1,891.283223104303,891.283223104303,0.0 -3703,8431,8430,7,20,32,400,63,50,0,7355,0,300,0,0,2,5,3,5,2.4,1674.24668136,3614,0,35759.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,14899.583333300001,4,2,4_0,4_1,25200.0,0,25200.0,0,2,21,179.2,68.3333333333,3.31,0,1,2221.003763887318,2221.003763887318,0.0 -3704,8432,8431,6,9,41,111,47,71,0,7357,0,500,0,500,2,3,2,4,2.1,3691.1939203,0,0,33762.0,3,3,9,7,4,1,1,1,0,0,0,1,0,0,0,1,16077.142857100001,4,2,4_0,4_0,32000.0,0,32000.0,0,7,10,0.0,25.0,3.3,0,1,2852.10631393377,2852.10631393377,0.0 -3705,8454,8453,3,4,73,112,78,71,0,7394,0,0,0,0,0,5,0,2,1.5,3317.3081542,308,0,24460.0,5,1,9,1,3,1,0,0,0,1,0,0,0,0,0,1,16306.666666699999,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 -3706,8455,8454,6,10,51,111,55,50,0,7395,0,700,0,0,2,5,2,4,2.3,3151.35421787,0,0,35563.0,1,4,4,4,4,2,0,1,0,0,1,0,0,0,0,2,15462.173912999999,4,2,4_0,4_0,20000.0,0,20000.0,0,6,7,207.5,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 -3707,8488,8487,3,3,53,112,43,41,0,7434,0,0,0,0,2,5,1,5,2.6,837.5913909880001,156,0,41359.0,1,1,9,0,5,2,1,0,1,0,0,0,0,0,1,1,15907.307692299997,4,2,4_0,4_1,40000.0,0,25000.0,15000,1,4,127.5,58.6666666667,3.3,0,1,3525.4027998211395,2203.376749888212,1322.0260499329274 +3703,8431,8430,7,20,32,400,63,50,0,7355,0,300,0,0,2,5,3,5,2.4,1674.24668136,3614,0,35759.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,14899.5833333,4,2,4_0,4_1,25200.0,0,25200.0,0,2,21,179.2,68.3333333333,3.31,0,1,2221.003763887318,2221.003763887318,0.0 +3704,8432,8431,6,9,41,111,47,71,0,7357,0,500,0,500,2,3,2,4,2.1,3691.1939203,0,0,33762.0,3,3,9,7,4,1,1,1,0,0,0,1,0,0,0,1,16077.1428571,4,2,4_0,4_0,32000.0,0,32000.0,0,7,10,0.0,25.0,3.3,0,1,2852.10631393377,2852.10631393377,0.0 +3705,8454,8453,3,4,73,112,78,71,0,7394,0,0,0,0,0,5,0,2,1.5,3317.3081542,308,0,24460.0,5,1,9,1,3,1,0,0,0,1,0,0,0,0,0,1,16306.6666667,4,2,4_0,4_0,10000.0,0,10000.0,0,1,4,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 +3706,8455,8454,6,10,51,111,55,50,0,7395,0,700,0,0,2,5,2,4,2.3,3151.35421787,0,0,35563.0,1,4,4,4,4,2,0,1,0,0,1,0,0,0,0,2,15462.173913,4,2,4_0,4_0,20000.0,0,20000.0,0,6,7,207.5,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 +3707,8488,8487,3,3,53,112,43,41,0,7434,0,0,0,0,2,5,1,5,2.6,837.591390988,156,0,41359.0,1,1,9,0,5,2,1,0,1,0,0,0,0,0,1,1,15907.3076923,4,2,4_0,4_1,40000.0,0,25000.0,15000,1,4,127.5,58.6666666667,3.3,0,1,3525.4027998211395,2203.376749888212,1322.0260499329274 3708,8491,8490,16,16,53,221,62,60,0,7439,0,20,0,0,2,3,2,4,2.3,2553.4777944,0,0,38623.0,1,3,1,1,4,1,0,1,0,1,0,0,0,0,0,1,16792.6086957,4,2,4_0,4_0,7000.0,0,7000.0,0,3,17,0.0,0.0,0.0,0,1,623.8982561730121,623.8982561730121,0.0 3709,8501,8500,3,3,27,112,52,20,0,7459,0,800,0,0,2,6,1,3,1.8,4069.31544122,5200,0,27944.0,1,4,9,1,4,1,1,1,0,1,0,0,0,0,0,1,15524.4444444,4,2,4_0,4_0,19000.0,0,19000.0,0,3,5,0.0,0.0,0.0,0,1,1693.4381238981757,1693.4381238981757,0.0 3710,8510,8509,2,2,61,221,75,50,0,747,0,0,0,0,0,5,0,2,1.5,2097.34111416,0,0,23838.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,0,0,15892.0,4,2,4_0,4_0,7362.0,0,0.0,7362,1,2,0.0,0.0,0.0,0,0,656.1627088493879,0.0,656.1627088493879 3711,8514,8513,1,14,47,111,54,71,2,7479,0,99999,0,86,3,5,3,4,2.5,1750.12912682,0,1000,38362.0,4,3,9,7,2,2,0,0,0,0,0,1,0,1,1,1,15344.8,4,2,4_1,4_0,28849.0,0,28849.0,0,12,15,257.4,52.5,3.3,0,1,2571.262970333604,2571.262970333604,0.0 3712,8516,8515,2,2,80,112,78,70,0,7483,0,0,0,0,0,4,0,2,1.5,1354.99824922,2601,0,23568.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,1,0,15712.0,4,2,4_0,4_1,6000.0,0,0.0,6000,2,2,0.0,0.0,0.0,0,0,528.8104199731708,0.0,528.8104199731708 -3713,8519,8518,10,12,33,112,64,41,0,7487,0,400,0,0,2,5,2,4,2.1,1859.74993193,203,0,32711.0,1,2,7,0,4,2,1,0,1,0,0,0,0,0,0,2,15576.666666699999,4,2,4_0,4_1,3000.0,0,3000.0,0,7,13,48.5,9.0,3.3,1,1,264.4052099865854,264.4052099865854,0.0 +3713,8519,8518,10,12,33,112,64,41,0,7487,0,400,0,0,2,5,2,4,2.1,1859.74993193,203,0,32711.0,1,2,7,0,4,2,1,0,1,0,0,0,0,0,0,2,15576.6666667,4,2,4_0,4_1,3000.0,0,3000.0,0,7,13,48.5,9.0,3.3,1,1,264.4052099865854,264.4052099865854,0.0 3714,8551,8550,8,22,54,111,52,50,0,7528,0,0,0,358,1,4,0,1,1.0,1652.06846789,0,0,15050.0,1,3,7,6,1,1,0,0,0,0,1,0,0,0,0,1,15050.0,4,2,4_0,4_0,10226.0,0,10226.0,0,1,21,0.0,10.0,2.2,0,1,911.4262239464603,911.4262239464603,0.0 3715,8559,8558,0,0,71,120,78,50,1,7539,0,0,0,0,0,5,0,2,1.5,1983.09573219,3484,27000,22290.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,14860.0,4,2,4_0,4_1,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 3716,8562,8561,1,11,47,400,52,50,2,7542,0,0,200,0,2,4,2,4,2.1,1120.11469628,3640,3000,35159.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,2,0,16742.3809524,4,2,4_0,4_1,2400.0,0,0.0,2400,6,11,64.5,26.6666666667,3.31,0,1,211.52416798926836,0.0,211.52416798926836 -3717,8566,8565,2,9,24,112,47,20,0,7548,0,0,700,0,2,6,1,2,1.5,3233.07548173,6760,0,22561.0,1,1,10,0,2,2,0,1,1,0,0,0,0,0,1,1,15040.666666699999,4,2,4_0,4_1,36000.0,0,30000.0,6000,5,15,57.0,82.5,3.3,0,1,3172.862519839026,2644.052099865855,528.8104199731708 +3717,8566,8565,2,9,24,112,47,20,0,7548,0,0,700,0,2,6,1,2,1.5,3233.07548173,6760,0,22561.0,1,1,10,0,2,2,0,1,1,0,0,0,0,0,1,1,15040.6666667,4,2,4_0,4_1,36000.0,0,30000.0,6000,5,15,57.0,82.5,3.3,0,1,3172.862519839026,2644.052099865855,528.8104199731708 3718,8571,8570,0,0,47,111,52,50,0,7555,0,0,0,0,2,2,1,3,2.0,3187.57673317,2203,0,32479.0,1,1,10,8,4,0,0,0,0,0,0,0,1,0,0,0,16239.5,4,2,4_0,4_0,0.0,0,0.0,0,0,0,17.4,20.0,5.5,0,0,0.0,0.0,0.0 3719,8573,8572,4,14,51,112,67,50,0,7558,0,100,0,0,1,4,0,2,1.5,2183.47766711,909,0,24901.0,1,3,6,0,3,1,0,1,1,0,0,0,0,0,0,1,16600.6666667,4,2,4_0,4_1,20000.0,0,20000.0,0,14,14,0.0,0.0,0.0,0,1,1762.7013999105698,1762.7013999105698,0.0 -3720,8576,8575,0,21,35,111,53,41,0,7560,0,0,150,400,2,3,1,3,1.8,3512.1561154,0,0,29373.0,1,3,8,6,4,1,0,1,0,0,1,0,0,0,1,0,16318.333333300001,4,2,4_0,4_0,7000.0,0,0.0,7000,4,19,0.0,10.6666666667,0.0,0,1,623.8982561730121,0.0,623.8982561730121 +3720,8576,8575,0,21,35,111,53,41,0,7560,0,0,150,400,2,3,1,3,1.8,3512.1561154,0,0,29373.0,1,3,8,6,4,1,0,1,0,0,1,0,0,0,1,0,16318.3333333,4,2,4_0,4_0,7000.0,0,0.0,7000,4,19,0.0,10.6666666667,0.0,0,1,623.8982561730121,0.0,623.8982561730121 3721,8584,8583,0,0,53,111,62,71,0,7575,0,0,0,0,1,1,0,1,1.0,3508.01763777,0,0,15010.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,15010.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,1.1,0,0,0.0,0.0,0.0 3722,8596,8595,11,11,73,120,77,70,0,7590,0,0,0,0,0,3,0,1,1.0,3147.03869521,0,0,15345.0,5,3,0,2,1,1,0,0,0,1,0,0,0,1,1,0,15345.0,4,2,4_1,4_0,7000.0,0,0.0,7000,5,11,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 3723,8618,8617,0,0,70,111,78,70,0,7615,0,0,0,0,0,4,0,1,1.0,2795.52304687,0,0,15562.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,15562.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3724,8639,8638,17,18,87,300,77,70,0,764,0,0,0,0,0,5,1,2,1.5,2418.24297745,0,0,24118.0,5,1,0,0,2,1,0,0,1,0,0,0,0,0,0,1,16078.666666699999,4,2,4_0,4_1,12000.0,0,12000.0,0,3,18,0.0,0.0,0.0,0,0,1057.6208399463417,1057.6208399463417,0.0 +3724,8639,8638,17,18,87,300,77,70,0,764,0,0,0,0,0,5,1,2,1.5,2418.24297745,0,0,24118.0,5,1,0,0,2,1,0,0,1,0,0,0,0,0,0,1,16078.6666667,4,2,4_0,4_1,12000.0,0,12000.0,0,3,18,0.0,0.0,0.0,0,0,1057.6208399463417,1057.6208399463417,0.0 3725,8643,8642,0,0,20,111,56,50,0,7643,0,0,0,161,1,2,0,1,1.0,4034.86300171,0,0,15602.0,3,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,15602.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,20.0,5.5,0,0,0.0,0.0,0.0 3726,8667,8666,6,7,45,111,37,43,0,7667,0,0,0,0,1,4,2,4,2.5,2651.35659011,0,0,39455.0,1,2,8,6,4,2,0,0,0,0,1,0,0,0,1,1,15782.0,4,2,4_0,4_0,20500.0,0,20000.0,500,1,10,0.0,0.0,0.0,0,1,1827.1306073638211,1782.566446208606,44.56416115521515 3727,8717,8716,0,8,58,111,52,50,2,7738,0,0,0,0,2,3,1,3,2.0,2253.32024533,5980,8000,32084.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,16042.0,4,2,4_0,4_0,18000.0,0,18000.0,0,8,8,0.0,49.3333333333,0.0,0,1,1604.3098015877456,1604.3098015877456,0.0 -3728,8718,8717,0,7,26,111,56,50,0,774,0,50,0,12,1,3,1,2,1.3,2321.64573144,0,0,19585.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,15065.384615399998,4,2,4_1,4_0,10000.0,0,10000.0,0,1,8,0.0,6.0,3.31,1,1,891.283223104303,891.283223104303,0.0 +3728,8718,8717,0,7,26,111,56,50,0,774,0,50,0,12,1,3,1,2,1.3,2321.64573144,0,0,19585.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,15065.3846154,4,2,4_1,4_0,10000.0,0,10000.0,0,1,8,0.0,6.0,3.31,1,1,891.283223104303,891.283223104303,0.0 3729,8725,8724,3,10,43,300,22,42,0,7747,0,2600,0,0,2,7,2,4,2.3,2161.62232741,0,0,35056.0,1,2,0,0,4,3,1,1,1,0,0,0,0,0,0,3,15241.7391304,4,2,4_0,4_1,33255.0,0,33255.0,0,3,8,92.0,40.0,3.3,0,1,2930.9317527013,2930.9317527013,0.0 3730,8750,8749,3,3,68,400,72,70,0,7778,0,0,0,0,0,5,0,1,1.0,2631.56013824,1560,0,16477.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,16477.0,4,2,4_0,4_1,600.0,0,0.0,600,3,3,0.0,0.0,0.0,0,0,52.88104199731709,0.0,52.88104199731709 -3731,8751,8750,9,12,54,400,63,43,0,7779,0,100,0,0,1,5,1,3,1.8,1540.37619013,1560,0,27831.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,0,3,15461.666666699999,4,2,4_0,4_1,35000.0,0,35000.0,0,7,12,0.0,0.0,0.0,0,1,3084.727449843497,3084.727449843497,0.0 +3731,8751,8750,9,12,54,400,63,43,0,7779,0,100,0,0,1,5,1,3,1.8,1540.37619013,1560,0,27831.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,0,3,15461.6666667,4,2,4_0,4_1,35000.0,0,35000.0,0,7,12,0.0,0.0,0.0,0,1,3084.727449843497,3084.727449843497,0.0 3732,8754,8753,1,1,24,111,34,20,1,7781,0,0,0,395,1,2,0,1,1.0,2963.72737228,0,13000,15822.0,1,3,6,4,1,1,0,0,0,0,1,0,0,0,0,1,15822.0,4,2,4_0,4_0,27700.0,0,27700.0,0,1,1,254.4,30.0,3.39,0,1,2468.8545279989194,2468.8545279989194,0.0 3733,8755,8754,1,1,50,400,56,60,0,7782,0,0,300,0,1,2,0,1,1.0,2537.21143655,4425,0,15692.0,1,3,0,1,1,1,0,1,0,1,0,0,0,0,1,0,15692.0,4,2,4_0,4_0,11000.0,0,0.0,11000,1,1,92.5,50.0,3.3,0,1,980.4115454147333,0.0,980.4115454147333 3734,8756,8755,5,16,33,400,52,30,0,7784,0,0,0,0,1,4,0,1,1.0,2689.51508593,1301,0,15372.0,1,2,0,0,1,1,1,0,1,0,0,0,0,0,0,1,15372.0,4,2,4_0,4_1,18000.0,0,18000.0,0,13,15,0.0,110.0,3.3,1,0,1586.431259919513,1586.431259919513,0.0 3735,8764,8763,2,2,61,400,75,50,1,7794,0,0,0,0,0,5,2,4,2.5,2105.00491654,5325,9400,40697.0,5,2,0,0,4,1,0,0,1,0,0,0,0,0,1,0,16278.8,4,2,4_0,4_1,15000.0,0,0.0,15000,4,4,0.0,0.0,0.0,0,0,1322.0260499329274,0.0,1322.0260499329274 -3736,8768,8767,1,1,38,111,67,50,0,78,0,100,0,0,1,2,0,2,1.5,4200.36018912,0,0,23330.0,1,2,10,8,3,1,0,1,0,0,0,0,1,0,0,1,15553.333333300001,4,2,4_0,4_0,17343.0,0,17343.0,0,1,2,39.5,25.0,3.31,0,1,1545.7524938297927,1545.7524938297927,0.0 +3736,8768,8767,1,1,38,111,67,50,0,78,0,100,0,0,1,2,0,2,1.5,4200.36018912,0,0,23330.0,1,2,10,8,3,1,0,1,0,0,0,0,1,0,0,1,15553.3333333,4,2,4_0,4_0,17343.0,0,17343.0,0,1,2,39.5,25.0,3.31,0,1,1545.7524938297927,1545.7524938297927,0.0 3737,8781,8780,7,17,38,111,68,50,0,7815,0,0,0,0,2,1,1,3,1.8,2713.99361355,3120,0,29635.0,1,3,10,8,4,1,1,0,0,0,0,0,1,1,1,0,16463.8888889,4,2,4_1,4_0,900.0,0,0.0,900,1,19,112.5,63.3333333333,5.55,0,0,80.21549007938727,0.0,80.21549007938727 3738,8785,8784,0,0,34,111,56,41,0,7820,0,0,0,503,1,2,2,3,2.0,3575.43939662,0,0,29831.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,14915.5,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,56.6666666667,3.3,0,0,0.0,0.0,0.0 3739,8797,8796,2,6,45,111,46,31,0,7833,0,99999,0,0,2,6,3,5,2.8,1094.7799713,0,0,46533.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,16618.9285714,4,2,4_0,4_0,10781.0,0,10781.0,0,2,5,0.0,0.0,0.0,0,0,960.892442828749,960.892442828749,0.0 3740,8819,8818,2,9,23,111,47,31,0,7861,0,0,250,132,1,4,0,1,1.0,3392.72624399,2860,0,16020.0,1,3,8,6,1,1,0,1,0,0,1,0,0,1,1,0,16020.0,4,2,4_1,4_0,20000.0,0,0.0,20000,2,9,15.0,20.0,3.3,0,1,1782.566446208606,0.0,1782.566446208606 -3741,8823,8822,0,0,51,111,33,30,0,7867,0,0,0,0,1,6,1,2,1.5,1517.6767819,0,0,23440.0,1,3,7,5,2,0,0,0,0,0,1,0,0,0,0,0,15626.666666699999,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,60.0,5.58,0,0,0.0,0.0,0.0 +3741,8823,8822,0,0,51,111,33,30,0,7867,0,0,0,0,1,6,1,2,1.5,1517.6767819,0,0,23440.0,1,3,7,5,2,0,0,0,0,0,1,0,0,0,0,0,15626.6666667,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,60.0,5.58,0,0,0.0,0.0,0.0 3742,8836,8835,6,7,37,120,47,31,0,7885,0,30,25,0,2,4,2,4,2.1,3683.81938042,0,0,34569.0,1,2,0,2,4,2,0,1,0,1,0,0,0,0,1,1,16461.4285714,4,2,4_0,4_0,18000.0,0,10000.0,8000,4,7,57.0,18.75,3.31,0,1,1604.3098015877456,891.283223104303,713.0265784834424 3743,8869,8868,2,11,87,111,78,70,0,7927,0,0,0,266,0,2,0,1,1.0,1958.49097432,0,0,15890.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,1,0,15890.0,4,2,4_0,4_0,8986.0,0,0.0,8986,11,11,0.0,0.0,0.0,0,0,800.9071042815267,0.0,800.9071042815267 3744,8879,8878,3,3,57,211,54,60,0,7943,0,0,310,0,1,5,0,1,1.0,2003.50225531,0,0,16090.0,1,3,4,3,1,1,0,1,0,1,0,0,0,0,1,0,16090.0,4,2,4_0,4_0,2000.0,0,0.0,2000,2,4,0.0,0.0,0.0,0,1,178.2566446208606,0.0,178.2566446208606 @@ -3750,88 +3750,88 @@ 3748,8944,8943,13,19,73,111,78,71,0,8025,0,0,0,0,0,3,0,2,1.5,2971.01874097,1612,0,24999.0,5,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,16666.0,4,2,4_0,4_0,4000.0,0,4000.0,0,16,18,0.0,0.0,0.0,0,0,356.5132892417212,356.5132892417212,0.0 3749,8950,8949,8,9,80,112,72,60,0,8034,0,0,0,0,0,5,0,1,1.0,2334.36173915,2080,0,14836.0,5,1,9,2,1,1,0,0,0,1,0,0,0,0,0,1,14836.0,4,2,4_0,4_0,10000.0,0,10000.0,0,5,5,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3750,8959,8958,5,13,47,400,55,50,0,8044,0,0,0,403,2,3,0,2,1.5,1177.23052481,0,0,23910.0,1,3,0,1,3,1,0,1,0,1,0,0,0,0,0,1,15940.0,4,2,4_0,4_0,15000.0,0,15000.0,0,6,13,0.0,0.0,0.0,0,0,1336.9248346564543,1336.9248346564543,0.0 -3751,8962,8961,16,18,71,400,71,70,0,805,0,0,0,0,0,5,0,2,1.5,1647.85304123,0,0,23836.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,15890.666666699999,4,2,4_0,4_1,10000.0,0,0.0,10000,18,18,0.0,0.0,0.0,0,0,881.3506999552849,0.0,881.3506999552849 +3751,8962,8961,16,18,71,400,71,70,0,805,0,0,0,0,0,5,0,2,1.5,1647.85304123,0,0,23836.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,15890.6666667,4,2,4_0,4_1,10000.0,0,0.0,10000,18,18,0.0,0.0,0.0,0,0,881.3506999552849,0.0,881.3506999552849 3752,8979,8978,0,0,85,120,75,41,0,8073,0,0,0,620,0,3,0,1,1.0,3423.97782158,785,0,16450.0,5,3,0,3,1,0,0,0,0,1,0,0,0,0,0,0,16450.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3753,8991,8990,7,19,56,111,63,71,0,8087,0,20,0,0,2,4,0,2,1.5,1850.66438755,1171,0,22630.0,1,3,8,6,3,2,0,1,0,0,1,0,0,0,1,1,15086.666666699999,4,2,4_0,4_0,21343.0,0,17343.0,4000,19,19,81.0,23.0,3.3,0,1,1902.2657830715139,1545.7524938297927,356.5132892417212 +3753,8991,8990,7,19,56,111,63,71,0,8087,0,20,0,0,2,4,0,2,1.5,1850.66438755,1171,0,22630.0,1,3,8,6,3,2,0,1,0,0,1,0,0,0,1,1,15086.6666667,4,2,4_0,4_0,21343.0,0,17343.0,4000,19,19,81.0,23.0,3.3,0,1,1902.2657830715139,1545.7524938297927,356.5132892417212 3754,8994,8993,0,0,84,300,78,71,0,809,0,0,0,160,0,2,0,1,1.0,3112.71029923,0,0,16328.0,5,3,0,0,1,0,0,0,1,0,0,0,0,1,0,0,16328.0,4,2,4_1,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3755,8996,8995,10,12,59,112,78,50,0,8091,0,0,0,0,1,6,0,2,1.5,1660.5232032,0,0,23586.0,5,1,4,0,3,1,0,0,1,0,0,0,0,0,1,0,15724.0,4,2,4_0,4_1,4000.0,0,0.0,4000,8,12,0.0,0.0,0.0,0,0,352.54027998211393,0.0,352.54027998211393 3756,8998,8997,8,9,62,221,72,41,0,8094,0,0,0,0,1,5,1,4,2.5,1399.41354243,2288,0,40863.0,5,1,1,2,5,1,0,0,0,1,0,0,0,0,0,1,16345.2,4,2,4_0,4_0,25000.0,0,25000.0,0,3,3,0.0,0.0,0.0,0,1,2228.2080577607576,2228.2080577607576,0.0 -3757,9013,9012,1,1,59,221,77,60,1,8111,0,0,0,0,0,6,0,2,1.5,2449.6779794,0,37000,22940.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,15293.333333300001,4,2,4_0,4_0,3000.0,0,3000.0,0,1,1,0.0,0.0,0.0,0,0,267.38496693129093,267.38496693129093,0.0 -3758,9023,9022,13,13,61,111,78,71,0,8126,0,0,0,0,0,5,0,2,1.5,2547.16819886,780,0,23690.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,15793.333333300001,4,2,4_0,4_0,7500.0,0,0.0,7500,8,11,0.0,0.0,0.0,0,0,668.4624173282272,0.0,668.4624173282272 -3759,9032,9031,6,7,44,120,45,50,0,8141,0,150,50,0,2,7,3,5,2.4,1567.83599237,2340,0,39134.0,1,1,0,3,4,5,0,1,0,1,0,0,0,0,2,2,16305.833333300001,4,2,4_0,4_0,30000.0,0,30000.0,0,4,6,0.0,23.3333333333,0.0,1,1,2673.8496693129086,2673.8496693129086,0.0 +3757,9013,9012,1,1,59,221,77,60,1,8111,0,0,0,0,0,6,0,2,1.5,2449.6779794,0,37000,22940.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,15293.3333333,4,2,4_0,4_0,3000.0,0,3000.0,0,1,1,0.0,0.0,0.0,0,0,267.38496693129093,267.38496693129093,0.0 +3758,9023,9022,13,13,61,111,78,71,0,8126,0,0,0,0,0,5,0,2,1.5,2547.16819886,780,0,23690.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,15793.3333333,4,2,4_0,4_0,7500.0,0,0.0,7500,8,11,0.0,0.0,0.0,0,0,668.4624173282272,0.0,668.4624173282272 +3759,9032,9031,6,7,44,120,45,50,0,8141,0,150,50,0,2,7,3,5,2.4,1567.83599237,2340,0,39134.0,1,1,0,3,4,5,0,1,0,1,0,0,0,0,2,2,16305.8333333,4,2,4_0,4_0,30000.0,0,30000.0,0,4,6,0.0,23.3333333333,0.0,1,1,2673.8496693129086,2673.8496693129086,0.0 3760,9071,9070,2,7,36,300,47,50,0,8203,0,280,0,443,2,4,2,4,2.5,825.73852133,1560,0,37773.0,1,3,0,1,4,2,0,0,0,1,0,0,0,0,0,2,15109.2,4,2,4_0,4_0,41353.0,0,41353.0,0,4,6,0.0,2.5,0.0,1,1,3685.7235125032244,3685.7235125032244,0.0 3761,9083,9082,4,5,47,111,48,50,0,8222,0,99999,180,1403,3,4,2,4,2.5,3532.99631941,0,0,38203.0,1,3,9,7,4,3,0,0,0,0,0,1,0,0,1,2,15281.2,4,2,4_0,4_0,10000.0,0,10000.0,0,4,4,148.0,35.0,3.3,1,1,891.283223104303,891.283223104303,0.0 3762,9115,9114,4,7,64,111,62,71,0,8260,0,300,0,0,3,6,2,4,2.5,2559.34761576,12065,0,37354.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,14941.6,4,2,4_0,4_0,21714.0,0,21714.0,0,6,8,76.0,57.5,3.31,0,1,1935.3323906486833,1935.3323906486833,0.0 3763,9138,9137,0,0,36,111,54,42,0,8293,0,0,0,604,1,3,0,1,1.0,2925.03322107,0,0,15884.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,15884.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,59.0,210.0,5.57,0,0,0.0,0.0,0.0 -3764,9142,9141,8,8,70,300,71,50,0,83,0,0,0,0,0,6,0,2,1.5,1403.78041865,3826,0,23102.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,15401.333333300001,4,2,4_0,4_1,20000.0,0,20000.0,0,3,6,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 -3765,9149,9148,1,8,48,111,63,33,0,8309,0,99999,0,0,1,3,2,4,2.1,2889.34614229,2080,0,31150.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,14833.333333300001,4,2,4_0,4_0,20000.0,0,20000.0,0,9,9,64.0,30.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 +3764,9142,9141,8,8,70,300,71,50,0,83,0,0,0,0,0,6,0,2,1.5,1403.78041865,3826,0,23102.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,15401.3333333,4,2,4_0,4_1,20000.0,0,20000.0,0,3,6,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 +3765,9149,9148,1,8,48,111,63,33,0,8309,0,99999,0,0,1,3,2,4,2.1,2889.34614229,2080,0,31150.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,14833.3333333,4,2,4_0,4_0,20000.0,0,20000.0,0,9,9,64.0,30.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 3766,9151,9150,5,5,58,111,46,60,0,8310,0,0,0,0,1,4,1,3,2.0,1044.71005838,0,0,29723.0,1,1,6,5,4,1,0,0,0,0,1,0,0,0,1,0,14861.5,4,2,4_0,4_0,6000.0,0,0.0,6000,5,5,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 3767,9153,9152,2,2,48,300,62,50,0,8313,0,0,202,0,2,3,1,3,2.0,1897.62857416,2600,0,33215.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,2,0,16607.5,4,2,4_0,4_1,5000.0,0,0.0,5000,5,5,100.8,37.0,2.24,0,0,440.67534997764244,0.0,440.67534997764244 3768,9154,9153,4,8,49,221,63,60,0,8314,0,0,0,418,2,4,1,3,1.8,2824.54752884,0,0,28777.0,4,3,1,1,4,1,0,0,0,1,0,0,0,0,1,0,15987.2222222,4,2,4_0,4_0,15000.0,0,0.0,15000,4,6,0.0,35.0,0.0,1,0,1336.9248346564543,0.0,1336.9248346564543 -3769,9164,9163,3,3,55,400,13,50,0,8329,0,1300,0,0,2,8,1,4,2.5,1394.1321576999999,3068,0,40206.0,1,1,0,0,5,1,0,1,1,0,0,0,0,0,0,1,16082.4,4,2,4_0,4_1,20000.0,0,20000.0,0,3,3,256.5,53.3333333333,3.3,0,1,1762.7013999105698,1762.7013999105698,0.0 +3769,9164,9163,3,3,55,400,13,50,0,8329,0,1300,0,0,2,8,1,4,2.5,1394.1321577,3068,0,40206.0,1,1,0,0,5,1,0,1,1,0,0,0,0,0,0,1,16082.4,4,2,4_0,4_1,20000.0,0,20000.0,0,3,3,256.5,53.3333333333,3.3,0,1,1762.7013999105698,1762.7013999105698,0.0 3770,9178,9177,2,15,65,400,75,70,0,8351,0,0,0,0,0,5,0,1,1.0,2727.42590971,0,0,15820.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,15820.0,4,2,4_0,4_1,3500.0,0,3500.0,0,8,14,0.0,0.0,0.0,0,0,308.47274498434973,308.47274498434973,0.0 -3771,9191,9190,13,21,33,112,46,12,0,837,0,300,0,0,2,8,2,4,2.1,2483.51961644,2971,0,34371.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,16367.142857100001,4,2,4_0,4_1,3000.0,0,3000.0,0,1,21,308.4,47.5,3.3,0,1,264.4052099865854,264.4052099865854,0.0 +3771,9191,9190,13,21,33,112,46,12,0,837,0,300,0,0,2,8,2,4,2.1,2483.51961644,2971,0,34371.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,16367.1428571,4,2,4_0,4_1,3000.0,0,3000.0,0,1,21,308.4,47.5,3.3,0,1,264.4052099865854,264.4052099865854,0.0 3772,9196,9195,17,17,63,111,72,50,0,8376,0,0,0,0,0,3,0,1,1.0,5945.55266388,0,0,16373.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,16373.0,4,2,4_0,4_0,7000.0,0,0.0,7000,9,15,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 3773,9226,9225,0,0,87,112,86,71,0,842,0,0,0,0,0,2,0,1,1.0,3085.59574416,0,0,14929.0,6,3,6,0,1,0,0,0,1,0,0,0,0,1,0,0,14929.0,4,2,4_1,4_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3774,9237,9236,0,0,35,111,68,43,0,8431,0,0,0,314,1,3,0,1,1.0,2684.60015074,0,0,16558.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,16558.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,10.0,2.24,0,0,0.0,0.0,0.0 3775,9240,9239,11,13,50,221,62,50,0,8436,0,99999,0,450,2,5,3,5,2.6,2453.98785184,0,0,41661.0,1,3,1,3,4,1,0,1,0,1,0,0,0,0,0,1,16023.4615385,4,2,4_0,4_0,4000.0,0,4000.0,0,2,13,0.0,23.3333333333,1.1,0,1,356.5132892417212,356.5132892417212,0.0 -3776,9244,9243,1,5,46,111,22,43,2,844,0,200,0,0,2,4,2,4,2.1,4596.90759407,0,8500,31356.0,1,4,5,4,4,1,1,1,0,0,1,0,0,0,0,1,14931.428571399998,4,2,4_0,4_0,14000.0,0,14000.0,0,3,5,145.3,45.0,3.3,0,1,1247.7965123460242,1247.7965123460242,0.0 +3776,9244,9243,1,5,46,111,22,43,2,844,0,200,0,0,2,4,2,4,2.1,4596.90759407,0,8500,31356.0,1,4,5,4,4,1,1,1,0,0,1,0,0,0,0,1,14931.4285714,4,2,4_0,4_0,14000.0,0,14000.0,0,3,5,145.3,45.0,3.3,0,1,1247.7965123460242,1247.7965123460242,0.0 3777,9247,9246,5,6,45,111,52,60,0,8443,0,100,0,0,2,5,2,4,2.3,1430.72554167,1040,0,38608.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,0,1,16786.0869565,4,2,4_0,4_0,14000.0,0,14000.0,0,3,5,145.3,45.0,3.3,0,1,1247.7965123460242,1247.7965123460242,0.0 3778,9249,9248,6,8,72,221,77,70,0,8445,0,0,0,0,0,5,0,1,1.0,1068.05425007,2049,0,14830.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,1,0,14830.0,4,2,4_0,4_0,9500.0,0,0.0,9500,6,7,0.0,0.0,0.0,0,0,846.7190619490879,0.0,846.7190619490879 3779,9251,9250,0,0,58,111,67,70,0,8447,0,0,0,26,1,1,0,1,1.0,2609.84849461,0,0,15770.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,15770.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,14.8,20.0,5.5,0,0,0.0,0.0,0.0 3780,9252,9251,10,10,50,300,63,50,0,8448,0,250,0,0,1,4,0,1,1.0,1892.95467202,3849,0,16590.0,1,4,0,0,1,1,0,1,1,0,0,0,0,0,0,1,16590.0,4,2,4_0,4_1,15000.0,0,15000.0,0,4,9,0.0,10.0,1.1,0,1,1322.0260499329274,1322.0260499329274,0.0 -3781,9273,9272,0,0,54,300,56,71,0,8481,0,0,0,0,1,4,0,2,1.5,3052.4378971,0,0,22784.0,1,1,0,0,5,0,0,0,1,0,0,0,0,0,0,0,15189.333333300001,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,15.0,1.1,1,0,0.0,0.0,0.0 +3781,9273,9272,0,0,54,300,56,71,0,8481,0,0,0,0,1,4,0,2,1.5,3052.4378971,0,0,22784.0,1,1,0,0,5,0,0,0,1,0,0,0,0,0,0,0,15189.3333333,4,2,4_0,4_1,0.0,0,0.0,0,0,0,0.0,15.0,1.1,1,0,0.0,0.0,0.0 3782,9292,9291,0,0,73,111,78,71,0,8506,0,0,0,355,0,3,0,1,1.0,2993.94844607,0,0,15638.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,15638.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3783,9304,9303,0,16,23,111,46,42,0,8521,0,0,0,195,1,3,0,1,1.0,3480.13939674,2600,0,16669.0,1,3,9,7,1,1,0,0,0,0,0,1,0,1,0,1,16669.0,4,2,4_1,4_0,30000.0,0,30000.0,0,2,17,0.0,55.0,3.3,0,1,2673.8496693129086,2673.8496693129086,0.0 -3784,9320,9319,8,8,43,112,54,60,0,8544,0,250,0,0,1,4,1,2,1.5,2588.4437956,2085,0,22562.0,1,2,7,4,2,2,0,1,0,0,1,0,0,0,0,2,15041.333333300001,4,2,4_0,4_0,28000.0,0,28000.0,0,3,7,0.0,0.0,0.0,1,1,2495.5930246920484,2495.5930246920484,0.0 +3784,9320,9319,8,8,43,112,54,60,0,8544,0,250,0,0,1,4,1,2,1.5,2588.4437956,2085,0,22562.0,1,2,7,4,2,2,0,1,0,0,1,0,0,0,0,2,15041.3333333,4,2,4_0,4_0,28000.0,0,28000.0,0,3,7,0.0,0.0,0.0,1,1,2495.5930246920484,2495.5930246920484,0.0 3785,9334,9333,8,8,77,112,77,70,0,8570,0,0,0,0,0,7,0,2,1.5,1223.72475792,3779,0,23691.0,5,1,8,2,3,2,0,0,0,1,0,0,0,0,1,1,15794.0,4,2,4_0,4_0,7759.0,0,3000.0,4759,8,8,0.0,0.0,0.0,0,0,691.5466528066287,267.38496693129093,424.1616858753378 3786,9337,9336,1,1,79,111,78,71,1,8573,0,0,0,176,0,3,0,1,1.0,3596.76270636,0,12610,15054.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,15054.0,4,2,4_1,4_0,7000.0,0,0.0,7000,2,2,0.0,0.0,0.0,0,0,623.8982561730121,0.0,623.8982561730121 3787,9351,9350,11,17,45,111,68,60,0,8596,0,0,300,0,1,5,2,3,2.0,2615.74816193,0,0,29646.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,1,0,14823.0,4,2,4_1,4_0,10000.0,0,0.0,10000,3,11,0.0,10.0,3.31,0,1,891.283223104303,0.0,891.283223104303 3788,9360,9359,10,20,22,111,62,60,0,8606,0,0,10,188,1,4,0,1,1.0,3522.33923072,0,0,15171.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,1,0,15171.0,4,2,4_0,4_0,12000.0,0,0.0,12000,5,18,41.0,14.0,3.3,0,1,1069.5398677251637,0.0,1069.5398677251637 3789,9385,9384,0,7,42,111,67,50,0,8636,0,80,0,388,1,4,0,1,1.0,1357.92102459,0,0,16850.0,4,3,6,5,1,1,0,1,0,0,1,0,0,0,0,1,16850.0,4,2,4_0,4_0,15000.0,0,15000.0,0,5,7,0.0,30.0,2.2,0,1,1336.9248346564543,1336.9248346564543,0.0 3790,9390,9389,4,10,80,112,77,50,0,8645,0,0,0,0,0,5,0,3,2.0,1121.06174019,0,0,32814.0,5,1,8,0,5,1,0,0,1,0,0,0,0,0,1,0,16407.0,4,2,4_0,4_1,5000.0,0,0.0,5000,2,6,0.0,0.0,0.0,0,0,440.67534997764244,0.0,440.67534997764244 -3791,9391,9390,6,6,53,112,52,41,0,8647,0,0,200,0,1,7,3,5,3.0,2320.84476771,3692,0,48671.0,1,1,9,1,4,3,0,0,0,1,0,0,0,0,1,2,16223.666666699999,4,2,4_0,4_0,25484.0,0,25484.0,0,1,10,0.0,5.0,0.0,0,1,2271.3461657590055,2271.3461657590055,0.0 +3791,9391,9390,6,6,53,112,52,41,0,8647,0,0,200,0,1,7,3,5,3.0,2320.84476771,3692,0,48671.0,1,1,9,1,4,3,0,0,0,1,0,0,0,0,1,2,16223.6666667,4,2,4_0,4_0,25484.0,0,25484.0,0,1,10,0.0,5.0,0.0,0,1,2271.3461657590055,2271.3461657590055,0.0 3792,9402,9401,21,21,85,112,71,70,0,8662,0,0,0,0,0,5,0,2,1.5,2541.92847349,0,0,24999.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,1,1,16666.0,4,2,4_0,4_1,14500.0,0,10000.0,4500,10,20,0.0,0.0,0.0,0,0,1277.958514935163,881.3506999552849,396.60781497987824 3793,9411,9410,12,12,46,111,56,70,0,8676,0,0,0,323,1,4,1,2,1.5,2885.3017502,2080,0,25113.0,1,3,9,7,2,1,0,0,0,0,0,1,0,1,1,0,16742.0,4,2,4_1,4_0,7300.0,0,0.0,7300,4,12,0.0,9.0,3.3,0,1,650.6367528661413,0.0,650.6367528661413 3794,9425,9424,6,10,60,120,78,71,0,8693,0,0,0,0,0,4,0,1,1.0,2849.38660761,0,0,16750.0,5,3,0,1,1,1,0,0,0,1,0,0,0,1,0,1,16750.0,4,2,4_1,4_0,10000.0,0,10000.0,0,7,9,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3795,9442,9441,11,11,59,111,78,71,0,8726,0,0,0,0,0,3,0,2,1.5,3618.42792385,0,0,22350.0,4,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,14900.0,4,2,4_0,4_0,7500.0,0,0.0,7500,8,11,0.0,0.0,0.0,0,0,668.4624173282272,0.0,668.4624173282272 3796,9460,9459,3,6,79,111,72,70,0,8757,0,0,30,426,0,4,0,2,1.5,3181.5951566,1560,0,25230.0,5,3,10,8,3,1,0,1,0,0,0,0,1,0,1,0,16820.0,4,2,4_0,4_0,2000.0,0,0.0,2000,4,6,0.0,0.0,0.0,0,0,178.2566446208606,0.0,178.2566446208606 -3797,9465,9464,4,15,30,112,62,71,0,8764,0,0,300,0,2,4,2,4,2.1,2818.9772430999997,0,0,31223.0,1,3,6,0,4,1,0,1,1,0,0,0,0,1,1,0,14868.0952381,4,2,4_1,4_1,13012.0,0,0.0,13012,2,11,117.0,27.5,5.5,0,1,1146.8135307818168,0.0,1146.8135307818168 +3797,9465,9464,4,15,30,112,62,71,0,8764,0,0,300,0,2,4,2,4,2.1,2818.9772431,0,0,31223.0,1,3,6,0,4,1,0,1,1,0,0,0,0,1,1,0,14868.0952381,4,2,4_1,4_1,13012.0,0,0.0,13012,2,11,117.0,27.5,5.5,0,1,1146.8135307818168,0.0,1146.8135307818168 3798,9469,9468,0,0,51,111,54,71,0,8772,0,0,0,250,1,3,0,1,1.0,3015.69275604,0,0,15973.0,1,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,15973.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,12.0,2.22,0,0,0.0,0.0,0.0 3799,9515,9514,11,16,87,400,71,70,0,8836,0,0,0,0,0,5,0,2,1.5,2608.41548893,0,0,23178.0,5,4,0,0,5,1,0,0,1,0,0,0,0,0,0,1,15452.0,4,2,4_0,4_1,12000.0,0,12000.0,0,3,18,0.0,0.0,0.0,0,0,1057.6208399463417,1057.6208399463417,0.0 -3800,9526,9525,11,12,31,112,62,50,0,8854,0,50,50,0,2,5,2,4,2.1,1352.00016481,4212,0,34060.0,1,2,3,0,4,2,0,1,1,0,0,0,0,0,1,1,16219.047618999999,4,2,4_0,4_1,20000.0,0,10000.0,10000,7,12,81.0,7.5,0.0,0,1,1762.7013999105698,881.3506999552849,881.3506999552849 +3800,9526,9525,11,12,31,112,62,50,0,8854,0,50,50,0,2,5,2,4,2.1,1352.00016481,4212,0,34060.0,1,2,3,0,4,2,0,1,1,0,0,0,0,0,1,1,16219.047619,4,2,4_0,4_1,20000.0,0,10000.0,10000,7,12,81.0,7.5,0.0,0,1,1762.7013999105698,881.3506999552849,881.3506999552849 3801,9530,9529,1,6,36,112,64,50,0,8860,0,0,0,0,1,3,0,1,1.0,1728.04623909,0,0,15535.0,1,3,8,0,1,1,0,0,1,0,0,0,0,0,0,1,15535.0,4,2,4_0,4_1,5177.0,0,5177.0,0,2,8,0.0,0.0,1.1,0,0,456.275257366851,456.275257366851,0.0 3802,9538,9537,18,18,86,300,71,71,0,8869,0,0,0,0,0,4,0,1,1.0,2791.93911514,0,0,15406.0,5,1,0,0,1,2,0,0,1,0,0,0,0,0,2,0,15406.0,4,2,4_0,4_1,6294.0,0,0.0,6294,15,16,0.0,0.0,0.0,0,0,554.7221305518564,0.0,554.7221305518564 3803,9559,9558,6,20,40,111,47,50,0,8895,0,10,0,605,2,3,2,4,2.1,2547.74662318,5200,0,31690.0,1,3,10,8,4,2,0,0,0,0,0,0,1,1,0,2,15090.4761905,4,2,4_1,4_0,15000.0,0,15000.0,0,7,21,312.9,62.5,3.3,0,1,1336.9248346564543,1336.9248346564543,0.0 3804,9569,9568,0,0,22,111,55,50,0,8907,0,0,0,200,1,2,0,1,1.0,4039.23215352,0,0,15921.0,4,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,15921.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,50.0,2.2,0,0,0.0,0.0,0.0 -3805,9586,9585,4,4,71,111,77,70,0,8932,0,0,0,0,0,5,0,2,1.5,1388.18238576,0,0,23653.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,15768.666666699999,4,2,4_0,4_0,13000.0,0,0.0,13000,4,4,0.0,0.0,0.0,0,0,1158.6681900355939,0.0,1158.6681900355939 +3805,9586,9585,4,4,71,111,77,70,0,8932,0,0,0,0,0,5,0,2,1.5,1388.18238576,0,0,23653.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,15768.6666667,4,2,4_0,4_0,13000.0,0,0.0,13000,4,4,0.0,0.0,0.0,0,0,1158.6681900355939,0.0,1158.6681900355939 3806,9603,9602,2,14,29,120,62,50,2,8957,0,0,100,263,2,4,2,4,2.1,1531.61509339,1040,1200,31911.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,1,1,15195.7142857,4,2,4_1,4_1,20000.0,0,10000.0,10000,7,12,81.0,7.5,0.0,0,1,1762.7013999105698,881.3506999552849,881.3506999552849 3807,9607,9606,0,15,54,221,52,60,0,8965,0,0,0,0,1,4,0,1,1.0,3678.49556512,0,0,16720.0,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,16720.0,4,2,4_0,4_0,6620.0,0,0.0,6620,13,13,48.0,36.0,3.3,0,1,590.0294936950486,0.0,590.0294936950486 3808,9611,9610,16,16,58,111,22,41,0,8971,0,0,0,0,1,4,0,1,1.0,2494.38150825,3403,0,14824.0,1,1,7,6,1,1,0,0,0,0,1,0,0,0,1,0,14824.0,4,2,4_0,4_0,3000.0,0,0.0,3000,7,17,0.0,0.0,0.0,0,0,267.38496693129093,0.0,267.38496693129093 3809,9635,9634,0,0,52,111,21,50,1,9001,0,100,0,0,2,5,2,4,2.5,1988.30984211,4941,11800,38784.0,1,2,8,6,4,4,0,1,0,0,1,0,0,0,0,4,15513.6,4,2,4_0,4_0,35727.0,0,35727.0,0,2,5,394.6,55.0,3.3,1,1,3184.2875711847432,3184.2875711847432,0.0 3810,9638,9637,1,16,20,112,21,50,2,9006,0,0,0,250,2,4,1,3,1.8,6382.83580047,0,1000,28598.0,1,3,9,3,4,2,1,0,0,1,0,0,0,1,0,2,15887.7777778,4,2,4_1,4_0,7000.0,0,7000.0,0,13,15,0.0,0.0,0.0,0,1,623.8982561730121,623.8982561730121,0.0 -3811,9641,9640,1,8,47,111,62,50,2,901,0,240,180,0,2,5,2,4,2.5,790.0267573360001,2704,3200,37486.0,1,1,6,5,4,3,0,0,0,0,1,0,0,0,2,1,14994.4,4,2,4_0,4_0,20566.0,0,0.0,20566,6,7,761.0,33.3333333333,3.3,0,1,1833.0130766363097,0.0,1833.0130766363097 +3811,9641,9640,1,8,47,111,62,50,2,901,0,240,180,0,2,5,2,4,2.5,790.026757336,2704,3200,37486.0,1,1,6,5,4,3,0,0,0,0,1,0,0,0,2,1,14994.4,4,2,4_0,4_0,20566.0,0,0.0,20566,6,7,761.0,33.3333333333,3.3,0,1,1833.0130766363097,0.0,1833.0130766363097 3812,9681,9680,2,17,23,111,46,42,0,9065,0,0,0,427,1,2,0,1,1.0,2830.23841093,4680,0,16724.0,1,3,9,7,1,2,0,0,0,0,0,1,0,0,1,1,16724.0,4,2,4_0,4_0,30000.0,0,30000.0,0,2,17,0.0,55.0,3.3,0,1,2673.8496693129086,2673.8496693129086,0.0 -3813,9699,9698,10,38,69,112,72,50,0,9085,0,0,0,0,0,3,0,2,1.5,740.0851935239999,0,0,22888.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,15258.666666699999,4,2,4_0,4_1,20000.0,0,10000.0,10000,24,26,0.0,0.0,0.0,0,0,1762.7013999105698,881.3506999552849,881.3506999552849 +3813,9699,9698,10,38,69,112,72,50,0,9085,0,0,0,0,0,3,0,2,1.5,740.085193524,0,0,22888.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,15258.6666667,4,2,4_0,4_1,20000.0,0,10000.0,10000,24,26,0.0,0.0,0.0,0,0,1762.7013999105698,881.3506999552849,881.3506999552849 3814,9700,9699,5,5,67,400,78,70,0,9086,0,0,0,0,0,5,0,2,1.5,3077.04434259,1560,0,24531.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,16354.0,4,2,4_0,4_1,30000.0,0,10000.0,20000,3,4,0.0,0.0,0.0,0,0,2644.052099865855,881.3506999552849,1762.7013999105698 -3815,9704,9703,10,10,70,112,75,71,0,9091,0,0,0,0,0,4,0,2,1.5,2469.11320088,0,0,23126.0,5,1,10,1,3,1,0,0,0,1,0,0,0,0,1,0,15417.333333300001,4,2,4_0,4_0,6000.0,0,0.0,6000,6,10,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 +3815,9704,9703,10,10,70,112,75,71,0,9091,0,0,0,0,0,4,0,2,1.5,2469.11320088,0,0,23126.0,5,1,10,1,3,1,0,0,0,1,0,0,0,0,1,0,15417.3333333,4,2,4_0,4_0,6000.0,0,0.0,6000,6,10,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 3816,9710,9709,0,0,67,111,77,70,0,9099,0,0,0,374,0,1,0,1,1.0,3629.78599359,0,0,15022.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,15022.0,4,2,4_1,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3817,9711,9710,0,0,66,111,77,70,0,91,0,0,0,0,0,4,0,1,1.0,2776.4086314,0,0,15365.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,15365.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3818,9731,9730,12,16,47,400,63,50,0,913,0,168,0,0,3,5,3,5,2.8,2013.35695024,0,0,42453.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,15161.7857143,4,2,4_0,4_1,30000.0,0,15000.0,15000,9,15,301.0,105.0,3.3,0,1,2644.052099865855,1322.0260499329274,1322.0260499329274 -3819,9742,9741,5,5,40,120,67,50,0,9147,0,300,0,0,2,4,2,4,2.3,3267.4597136,0,0,38445.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,16715.217391299997,4,2,4_0,4_1,200000.0,0,200000.0,0,5,5,117.5,40.0,3.3,0,1,17627.013999105697,17627.013999105697,0.0 +3819,9742,9741,5,5,40,120,67,50,0,9147,0,300,0,0,2,4,2,4,2.3,3267.4597136,0,0,38445.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,16715.2173913,4,2,4_0,4_1,200000.0,0,200000.0,0,5,5,117.5,40.0,3.3,0,1,17627.013999105697,17627.013999105697,0.0 3820,9745,9744,1,3,28,111,46,43,2,915,0,150,0,0,1,7,0,1,1.0,1672.48429789,2878,11000,16014.0,1,4,8,7,1,1,0,1,0,0,0,1,0,0,0,1,16014.0,4,2,4_0,4_0,18000.0,0,18000.0,0,2,3,0.0,20.0,3.3,0,1,1604.3098015877456,1604.3098015877456,0.0 3821,9748,9747,8,11,49,111,55,50,0,9152,0,0,120,0,2,4,2,4,2.5,2228.99971801,1591,0,41681.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,16672.4,4,2,4_0,4_0,3948.0,0,0.0,3948,6,6,0.0,0.0,0.0,0,0,351.87861648157883,0.0,351.87861648157883 3822,9751,9750,12,12,64,111,78,71,0,9158,0,0,0,0,0,4,0,2,1.5,2663.5000149,855,0,25037.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,0,1,16691.3333333,4,2,4_0,4_0,20000.0,0,20000.0,0,8,9,0.0,0.0,0.0,0,0,1782.566446208606,1782.566446208606,0.0 3823,9760,9759,6,8,48,112,67,50,0,9167,0,0,0,570,2,4,1,3,2.0,3161.65967676,3058,0,29973.0,1,3,8,0,4,2,0,0,1,0,0,0,0,0,1,1,14986.5,4,2,4_0,4_1,23645.0,0,16353.0,7292,12,12,0.0,0.0,0.0,0,1,2083.9537300442707,1441.2727996368774,642.6809304073937 -3824,9797,9796,7,15,49,112,42,20,0,922,0,0,0,0,1,4,1,2,1.5,1579.7918965,6627,0,23210.0,1,4,4,0,2,2,0,0,1,0,0,0,0,0,1,1,15473.333333300001,4,2,4_0,4_1,39892.0,0,32226.0,7666,9,19,180.8,55.0,3.3,0,1,3515.8842122616225,2840.2407656759015,675.6434465857213 +3824,9797,9796,7,15,49,112,42,20,0,922,0,0,0,0,1,4,1,2,1.5,1579.7918965,6627,0,23210.0,1,4,4,0,2,2,0,0,1,0,0,0,0,0,1,1,15473.3333333,4,2,4_0,4_1,39892.0,0,32226.0,7666,9,19,180.8,55.0,3.3,0,1,3515.8842122616225,2840.2407656759015,675.6434465857213 3825,9814,9813,0,0,49,111,42,41,0,9253,0,0,0,420,2,2,2,3,2.0,2991.62335731,0,0,31960.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,15980.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,17.4,20.0,5.5,0,0,0.0,0.0,0.0 3826,9818,9817,2,4,77,300,75,41,0,926,0,0,0,0,0,8,0,2,1.5,2126.79092143,1888,0,25092.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,16728.0,4,2,4_0,4_1,20000.0,0,20000.0,0,5,5,0.0,0.0,0.0,0,0,1762.7013999105698,1762.7013999105698,0.0 3827,9824,9823,1,6,42,111,52,50,0,9267,0,99999,0,0,1,5,3,4,2.5,1458.73973912,1040,0,40304.0,1,2,8,7,2,1,0,1,0,0,0,1,0,1,0,1,16121.6,4,2,4_1,4_0,25000.0,0,25000.0,0,5,7,96.5,70.0,3.3,0,1,2228.2080577607576,2228.2080577607576,0.0 -3828,9832,9831,0,16,57,112,52,50,0,9278,0,0,20,347,2,3,1,2,1.5,3288.26514445,0,0,23480.0,1,3,9,1,2,1,0,1,0,1,0,0,0,0,1,0,15653.333333300001,4,2,4_0,4_0,8000.0,0,0.0,8000,15,15,102.5,40.0,3.32,0,0,713.0265784834424,0.0,713.0265784834424 +3828,9832,9831,0,16,57,112,52,50,0,9278,0,0,20,347,2,3,1,2,1.5,3288.26514445,0,0,23480.0,1,3,9,1,2,1,0,1,0,1,0,0,0,0,1,0,15653.3333333,4,2,4_0,4_0,8000.0,0,0.0,8000,15,15,102.5,40.0,3.32,0,0,713.0265784834424,0.0,713.0265784834424 3829,9842,9841,10,11,50,112,56,60,0,9290,0,0,200,0,1,3,0,1,1.0,1925.38856029,1560,0,15630.0,1,3,8,1,1,1,0,1,0,1,0,0,0,0,1,0,15630.0,4,2,4_0,4_0,9000.0,0,0.0,9000,7,13,25.0,50.0,3.3,1,1,802.1549007938728,0.0,802.1549007938728 3830,9854,9853,0,0,28,111,43,41,0,9314,0,0,0,0,1,4,0,1,1.0,4187.52531232,0,0,16060.0,1,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16060.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,11.0,40.0,5.5,0,0,0.0,0.0,0.0 -3831,9855,9854,2,7,29,111,54,31,0,9315,0,300,0,401,1,3,1,2,1.3,2730.00514499,4337,0,20108.0,1,3,8,6,2,1,1,1,0,0,1,0,0,1,0,1,15467.692307700003,4,2,4_1,4_0,10000.0,0,10000.0,0,1,8,0.0,6.0,3.31,1,1,891.283223104303,891.283223104303,0.0 -3832,9863,9862,5,7,34,111,55,50,0,9324,0,280,0,0,2,5,3,5,2.4,1228.29114814,4517,0,38210.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,0,2,15920.833333300001,4,2,4_0,4_0,15000.0,0,15000.0,0,4,7,22.0,18.0,3.3,0,1,1336.9248346564543,1336.9248346564543,0.0 +3831,9855,9854,2,7,29,111,54,31,0,9315,0,300,0,401,1,3,1,2,1.3,2730.00514499,4337,0,20108.0,1,3,8,6,2,1,1,1,0,0,1,0,0,1,0,1,15467.6923077,4,2,4_1,4_0,10000.0,0,10000.0,0,1,8,0.0,6.0,3.31,1,1,891.283223104303,891.283223104303,0.0 +3832,9863,9862,5,7,34,111,55,50,0,9324,0,280,0,0,2,5,3,5,2.4,1228.29114814,4517,0,38210.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,0,2,15920.8333333,4,2,4_0,4_0,15000.0,0,15000.0,0,4,7,22.0,18.0,3.3,0,1,1336.9248346564543,1336.9248346564543,0.0 3833,9871,9870,1,22,48,111,54,71,2,9336,0,60,0,0,1,4,1,2,1.3,2565.22168272,1300,300,20590.0,1,1,9,7,2,1,0,1,0,0,0,1,0,0,0,1,15838.4615385,4,2,4_0,4_0,10226.0,0,10226.0,0,1,21,0.0,10.0,2.2,0,1,911.4262239464603,911.4262239464603,0.0 3834,9875,9874,7,9,33,111,63,50,0,9340,0,0,314,0,2,3,1,3,1.8,2316.71689879,5312,0,28471.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,2,0,15817.2222222,4,2,4_0,4_0,3500.0,0,0.0,3500,7,7,96.9,33.3333333333,3.3,0,1,311.94912808650605,0.0,311.94912808650605 3835,9880,9879,21,21,46,111,46,50,0,9351,0,90,0,358,1,4,1,2,1.3,3803.30241055,2824,0,21578.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,16598.4615385,4,2,4_0,4_0,10226.0,0,10226.0,0,1,21,0.0,10.0,2.2,0,1,911.4262239464603,911.4262239464603,0.0 @@ -3850,1104 +3850,1104 @@ 3848,9969,9968,3,5,77,111,86,70,0,9480,0,0,0,0,0,3,0,2,1.5,2413.25314212,0,0,24975.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,16650.0,4,2,4_0,4_0,6000.0,0,0.0,6000,4,4,0.0,0.0,0.0,0,0,534.7699338625819,0.0,534.7699338625819 3849,9980,9979,4,4,62,112,75,41,0,9491,0,0,0,710,0,3,0,1,1.0,3231.94289842,0,0,16679.0,5,3,8,0,1,1,0,0,1,0,0,0,0,0,1,0,16679.0,4,2,4_0,4_1,7300.0,0,0.0,7300,4,4,0.0,0.0,0.0,0,0,643.386010967358,0.0,643.386010967358 3850,9991,9990,7,10,48,112,62,43,0,9506,0,99999,0,0,2,10,3,5,2.8,1235.80912271,0,0,43127.0,1,2,10,0,4,2,0,0,1,0,0,0,0,0,1,1,15402.5,4,2,4_0,4_1,27102.0,0,17102.0,10000,5,10,37.0,23.3333333333,3.31,0,0,2388.636667018813,1507.2859670635282,881.3506999552849 -3851,10047,10046,2,10,33,300,47,50,0,9581,0,0,0,0,2,5,5,7,3.0,1122.4132012,2478,0,45911.0,1,3,0,0,4,1,0,0,1,0,0,0,0,1,0,1,15303.666666699999,4,2,4_1,4_1,29337.0,0,29337.0,0,9,11,143.0,40.0,3.3,1,0,2585.6185484588195,2585.6185484588195,0.0 +3851,10047,10046,2,10,33,300,47,50,0,9581,0,0,0,0,2,5,5,7,3.0,1122.4132012,2478,0,45911.0,1,3,0,0,4,1,0,0,1,0,0,0,0,1,0,1,15303.6666667,4,2,4_1,4_1,29337.0,0,29337.0,0,9,11,143.0,40.0,3.3,1,0,2585.6185484588195,2585.6185484588195,0.0 3852,10050,10049,11,11,65,300,78,50,0,9584,0,0,0,0,0,3,0,2,1.5,1214.76429792,1040,0,23649.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,15766.0,4,2,4_0,4_1,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,881.3506999552849,881.3506999552849,0.0 3853,10056,10055,6,6,54,111,21,41,0,9593,0,300,0,0,2,5,0,2,1.5,3406.46563654,0,0,23217.0,1,1,8,6,3,1,0,1,0,0,1,0,0,0,0,1,15478.0,4,2,4_0,4_0,5000.0,0,5000.0,0,4,10,0.0,15.0,1.1,0,0,445.6416115521515,445.6416115521515,0.0 3854,10069,10068,8,21,57,120,63,71,0,9614,0,0,0,539,1,2,0,2,1.5,3074.64567689,3994,0,24552.0,1,3,0,2,3,2,0,1,0,1,0,0,0,0,1,1,16368.0,4,2,4_0,4_0,7000.0,0,4000.0,3000,5,21,0.0,0.0,0.0,0,1,623.8982561730121,356.5132892417212,267.38496693129093 -3855,10084,10083,4,15,40,111,56,50,0,9632,0,0,270,290,1,4,1,2,1.3,2359.83870059,1560,0,20754.0,1,3,9,7,2,1,1,1,0,0,0,1,0,0,1,0,15964.615384600002,4,2,4_0,4_0,12000.0,0,0.0,12000,15,15,0.0,0.0,0.0,0,1,1069.5398677251637,0.0,1069.5398677251637 +3855,10084,10083,4,15,40,111,56,50,0,9632,0,0,270,290,1,4,1,2,1.3,2359.83870059,1560,0,20754.0,1,3,9,7,2,1,1,1,0,0,0,1,0,0,1,0,15964.6153846,4,2,4_0,4_0,12000.0,0,0.0,12000,15,15,0.0,0.0,0.0,0,1,1069.5398677251637,0.0,1069.5398677251637 3856,10089,10088,0,0,81,111,77,70,0,9638,0,0,0,0,0,2,0,1,1.0,3160.91409079,0,0,15968.0,5,4,7,5,1,0,0,0,0,0,1,0,0,0,0,0,15968.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3857,10095,10094,1,5,76,111,75,33,2,9645,0,0,0,0,0,4,0,1,1.0,3528.40711871,0,7000,15514.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,15514.0,4,2,4_0,4_0,10000.0,0,10000.0,0,5,5,0.0,0.0,0.0,0,0,891.283223104303,891.283223104303,0.0 3858,10098,10097,14,26,55,111,63,50,0,9651,0,100059,0,0,2,3,0,2,1.5,1325.68458116,0,0,24768.0,1,1,5,4,3,2,0,1,0,0,1,0,0,0,0,2,16512.0,4,2,4_0,4_0,12000.0,0,12000.0,0,16,17,0.0,0.0,0.0,0,1,1069.5398677251637,1069.5398677251637,0.0 3859,10104,10103,1,3,31,111,55,41,0,9658,0,0,10,0,1,5,2,3,1.6,1665.48126229,0,0,24607.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,1,0,15379.375,4,2,4_1,4_0,15000.0,0,0.0,15000,3,4,107.0,23.3333333333,3.31,0,1,1336.9248346564543,0.0,1336.9248346564543 -3860,10108,10107,6,7,63,212,78,50,0,9662,0,0,0,0,0,6,0,2,1.5,3315.45827818,0,0,22762.0,5,1,3,0,3,2,0,0,1,0,0,0,0,0,0,2,15174.666666699999,4,2,4_0,4_1,1000.0,0,1000.0,0,9,9,0.0,0.0,0.0,0,0,88.13506999552848,88.13506999552848,0.0 +3860,10108,10107,6,7,63,212,78,50,0,9662,0,0,0,0,0,6,0,2,1.5,3315.45827818,0,0,22762.0,5,1,3,0,3,2,0,0,1,0,0,0,0,0,0,2,15174.6666667,4,2,4_0,4_1,1000.0,0,1000.0,0,9,9,0.0,0.0,0.0,0,0,88.13506999552848,88.13506999552848,0.0 3861,10130,10129,3,3,63,111,56,70,0,9692,0,50,0,290,1,3,0,1,1.0,2246.79785859,0,0,15880.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,0,1,15880.0,4,2,4_0,4_0,17891.0,0,17891.0,0,1,4,0.0,25.0,3.3,0,1,1594.5948144559084,1594.5948144559084,0.0 -3862,10159,10158,3,4,27,111,53,50,0,9740,0,99999,0,822,2,5,2,4,2.1,1257.78412561,0,0,33702.0,1,3,9,7,4,2,0,0,0,0,0,1,0,0,0,2,16048.571428600002,4,2,4_0,4_0,1500.0,0,1500.0,0,1,1,17.5,56.6666666667,3.33,0,1,133.69248346564547,133.69248346564547,0.0 +3862,10159,10158,3,4,27,111,53,50,0,9740,0,99999,0,822,2,5,2,4,2.1,1257.78412561,0,0,33702.0,1,3,9,7,4,2,0,0,0,0,0,1,0,0,0,2,16048.5714286,4,2,4_0,4_0,1500.0,0,1500.0,0,1,1,17.5,56.6666666667,3.33,0,1,133.69248346564547,133.69248346564547,0.0 3863,10164,10163,8,8,74,400,78,71,0,9749,0,0,0,346,0,2,0,2,1.5,3138.09708096,0,0,23397.0,5,3,0,1,3,1,0,0,0,1,0,0,0,0,1,0,15598.0,4,2,4_0,4_0,5000.0,0,0.0,5000,5,8,0.0,0.0,0.0,0,0,445.6416115521515,0.0,445.6416115521515 3864,10171,10170,6,6,38,112,46,50,0,9759,0,0,0,0,1,5,1,4,2.5,1064.95778602,1560,0,39810.0,1,1,6,0,5,2,0,1,1,0,0,0,0,0,0,2,15924.0,4,2,4_0,4_1,33144.0,0,33144.0,0,1,5,0.0,0.0,0.0,1,1,2921.148759931796,2921.148759931796,0.0 -3865,10181,10180,2,10,40,111,63,71,0,977,0,0,0,0,1,3,1,2,1.3,5331.43457944,0,0,20130.0,1,3,6,5,2,1,0,0,0,0,1,0,0,0,0,1,15484.615384600002,4,2,4_0,4_0,10000.0,0,10000.0,0,5,8,0.0,33.0,1.1,0,0,891.283223104303,891.283223104303,0.0 -3866,10183,10182,1,9,41,112,54,50,0,9774,0,100849,99999,0,1,3,1,2,1.3,2520.70864053,2964,0,21291.0,1,3,10,0,2,3,0,1,1,0,0,0,0,0,1,2,16377.692307700003,4,2,4_0,4_1,35000.0,0,35000.0,0,3,4,46.5,10.0,0.0,0,1,3084.727449843497,3084.727449843497,0.0 +3865,10181,10180,2,10,40,111,63,71,0,977,0,0,0,0,1,3,1,2,1.3,5331.43457944,0,0,20130.0,1,3,6,5,2,1,0,0,0,0,1,0,0,0,0,1,15484.6153846,4,2,4_0,4_0,10000.0,0,10000.0,0,5,8,0.0,33.0,1.1,0,0,891.283223104303,891.283223104303,0.0 +3866,10183,10182,1,9,41,112,54,50,0,9774,0,100849,99999,0,1,3,1,2,1.3,2520.70864053,2964,0,21291.0,1,3,10,0,2,3,0,1,1,0,0,0,0,0,1,2,16377.6923077,4,2,4_0,4_1,35000.0,0,35000.0,0,3,4,46.5,10.0,0.0,0,1,3084.727449843497,3084.727449843497,0.0 3867,10188,10187,1,6,38,111,48,43,2,978,0,0,330,476,2,4,2,4,2.1,6149.03926214,3858,7000,34454.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,2,0,16406.6666667,4,2,4_0,4_0,5500.0,0,0.0,5500,4,4,96.5,73.3333333333,3.3,0,1,490.20577270736663,0.0,490.20577270736663 3868,10190,10189,10,16,37,300,42,20,0,9781,0,0,0,0,1,5,2,4,2.1,1279.90594093,2943,0,33575.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,2,0,15988.0952381,4,2,4_0,4_1,5000.0,0,0.0,5000,11,16,0.0,0.0,0.0,0,0,440.67534997764244,0.0,440.67534997764244 3869,10249,10248,1,3,71,400,74,20,2,9873,0,0,0,0,0,3,0,2,1.5,2073.70717099,1594,15000,24824.0,5,4,0,0,3,2,0,0,1,0,0,0,0,0,0,2,16549.3333333,4,2,4_0,4_1,8000.0,0,8000.0,0,4,4,0.0,0.0,0.0,0,0,705.0805599642279,705.0805599642279,0.0 3870,10252,10251,4,11,50,112,48,50,0,9878,0,700,0,0,2,5,2,4,2.5,2577.14713278,2236,0,42092.0,1,1,8,0,4,3,0,0,1,0,0,0,0,0,0,3,16836.8,4,2,4_0,4_1,33680.0,0,33680.0,0,6,13,232.0,38.0,3.3,0,0,2968.3891574493996,2968.3891574493996,0.0 -3871,10258,10257,9,12,32,111,62,41,0,9884,0,0,40,399,2,3,1,3,1.8,2882.80050102,2341,0,29356.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,0,16308.888888899999,4,2,4_0,4_0,6500.0,0,0.0,6500,11,12,100.5,15.5,3.3,0,1,579.3340950177969,0.0,579.3340950177969 -3872,10280,10279,1,11,31,111,64,50,0,9910,0,0,50,650,2,4,2,4,2.1,3471.33795927,0,0,33224.0,1,3,10,8,4,2,1,0,0,0,0,0,1,0,1,1,15820.952381000001,4,2,4_0,4_0,52000.0,0,30000.0,22000,8,8,0.0,32.5,3.31,0,0,4634.672760142375,2673.8496693129086,1960.8230908294665 +3871,10258,10257,9,12,32,111,62,41,0,9884,0,0,40,399,2,3,1,3,1.8,2882.80050102,2341,0,29356.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,0,16308.8888889,4,2,4_0,4_0,6500.0,0,0.0,6500,11,12,100.5,15.5,3.3,0,1,579.3340950177969,0.0,579.3340950177969 +3872,10280,10279,1,11,31,111,64,50,0,9910,0,0,50,650,2,4,2,4,2.1,3471.33795927,0,0,33224.0,1,3,10,8,4,2,1,0,0,0,0,0,1,0,1,1,15820.952381,4,2,4_0,4_0,52000.0,0,30000.0,22000,8,8,0.0,32.5,3.31,0,0,4634.672760142375,2673.8496693129086,1960.8230908294665 3873,10293,10292,13,18,53,400,63,50,0,9926,0,850,800,0,3,4,1,4,2.5,1332.93063673,4373,0,38237.0,1,4,0,0,5,3,0,1,1,0,0,0,0,0,1,2,15294.8,4,2,4_0,4_1,30375.0,0,20375.0,10000,2,16,133.0,60.0,3.3,0,1,2677.102751114178,1795.752051158893,881.3506999552849 3874,10295,10294,4,10,48,111,64,50,0,9929,0,40,0,520,2,3,1,3,2.0,2749.60196614,0,0,32464.0,1,3,6,5,4,2,0,0,0,0,1,0,0,0,0,2,16232.0,4,2,4_0,4_0,20000.0,0,20000.0,0,5,5,88.8,48.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 3875,10304,10303,0,0,77,111,77,70,0,994,0,0,0,0,0,2,0,1,1.0,3307.60917486,0,0,16196.0,5,1,8,6,1,0,0,0,0,0,1,0,0,0,0,0,16196.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3876,10316,10315,20,22,52,221,47,50,0,9959,0,0,0,0,1,3,0,1,1.0,1543.93495798,0,0,16770.0,1,2,1,1,1,1,0,0,0,1,0,0,0,0,1,0,16770.0,4,2,4_0,4_0,2000.0,0,0.0,2000,14,19,0.0,20.0,1.1,0,0,178.2566446208606,0.0,178.2566446208606 3877,10321,10320,0,0,90,111,77,71,0,9967,0,0,0,0,0,3,0,1,1.0,3475.37959606,0,0,14892.0,5,1,6,5,1,0,0,0,0,0,1,0,0,0,0,0,14892.0,4,2,4_0,4_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3878,10326,10325,2,7,48,211,47,42,0,9975,0,40,0,0,2,5,2,4,2.3,3819.07634084,0,0,35610.0,1,1,2,3,4,2,0,1,0,1,0,0,0,0,0,2,15482.608695700002,4,2,4_0,4_0,20000.0,0,20000.0,0,6,7,207.5,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 +3878,10326,10325,2,7,48,211,47,42,0,9975,0,40,0,0,2,5,2,4,2.3,3819.07634084,0,0,35610.0,1,1,2,3,4,2,0,1,0,1,0,0,0,0,0,2,15482.6086957,4,2,4_0,4_0,20000.0,0,20000.0,0,6,7,207.5,20.0,3.3,0,1,1782.566446208606,1782.566446208606,0.0 3879,10341,10340,13,13,57,300,78,71,0,9997,0,0,0,0,1,4,0,2,1.5,1179.32177698,0,0,23220.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,15480.0,4,2,4_0,4_1,20000.0,0,20000.0,0,14,14,0.0,0.0,0.0,0,1,1762.7013999105698,1762.7013999105698,0.0 3880,6,5,8,8,65,212,72,50,0,10004,0,0,0,0,0,6,0,2,1.5,2182.48737742,2184,0,27444.0,5,1,2,0,3,2,0,0,1,0,0,0,0,0,2,0,18296.0,5,3,5,5_1,20000.0,0,0.0,20000,5,5,0.0,0.0,0.0,0,0,2313.192389569348,0.0,2313.192389569348 -3881,30,29,1,6,48,111,64,71,2,10032,0,40,150,0,2,5,3,5,2.8,2162.69517879,2015,4000,48691.0,1,2,6,4,4,3,0,1,0,0,1,0,0,0,2,1,17389.6428571,5,3,5,5_0,35818.0,0,35000.0,818,3,7,163.3,14.4,3.31,0,0,3652.160846565045,3568.7539681103513,83.40687845469336 -3882,34,33,2,13,41,111,68,50,0,10037,0,0,35,0,3,3,1,3,2.0,2612.19679645,0,0,33882.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,1,0,16941.0,5,3,5,5_0,8703.0,0,0.0,8703,7,13,25.2,6.666666666669999,3.3,0,1,887.3961652704111,0.0,887.3961652704111 +3881,30,29,1,6,48,111,64,71,2,10032,0,40,150,0,2,5,3,5,2.8,2162.69517879,2015,4000,48691.0,1,2,6,4,4,3,0,1,0,0,1,0,0,0,2,1,17389.6428571,5,3,5,5_0,35818.0,0,35000.0,818,3,7,163.3,14.4,3.31,0,0,3652.1608465650434,3568.7539681103503,83.40687845469334 +3882,34,33,2,13,41,111,68,50,0,10037,0,0,35,0,3,3,1,3,2.0,2612.19679645,0,0,33882.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,1,0,16941.0,5,3,5,5_0,8703.0,0,0.0,8703,7,13,25.2,6.66666666667,3.3,0,1,887.3961652704108,0.0,887.3961652704108 3883,42,41,0,0,88,111,77,70,0,10047,0,0,0,450,0,1,0,1,1.0,3410.01712379,0,0,18800.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18800.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3884,48,47,7,16,82,120,78,71,0,10054,0,0,0,381,0,2,0,1,1.0,6171.46341048,2990,0,18269.0,5,3,0,2,1,1,0,0,0,1,0,0,0,1,0,1,18269.0,5,3,5,5_0,15000.0,0,15000.0,0,12,14,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 -3885,57,56,4,5,37,111,47,31,0,10069,0,0,100,0,2,4,3,5,2.4,2817.81540607,0,0,42337.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,1,0,17640.4166667,5,3,5,5_0,6500.0,0,0.0,6500,4,9,42.4,7.6,9.9,0,1,662.7685940776367,0.0,662.7685940776367 +3884,48,47,7,16,82,120,78,71,0,10054,0,0,0,381,0,2,0,1,1.0,6171.46341048,2990,0,18269.0,5,3,0,2,1,1,0,0,0,1,0,0,0,1,0,1,18269.0,5,3,5,5_0,15000.0,0,15000.0,0,12,14,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 +3885,57,56,4,5,37,111,47,31,0,10069,0,0,100,0,2,4,3,5,2.4,2817.81540607,0,0,42337.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,1,0,17640.4166667,5,3,5,5_0,6500.0,0,0.0,6500,4,9,42.4,7.6,9.9,0,1,662.7685940776365,0.0,662.7685940776365 3886,68,67,1,1,65,111,77,71,1,10087,0,0,0,559,0,3,0,2,1.5,2290.88977235,2935,24500,26384.0,5,3,7,5,3,1,0,0,0,0,1,0,0,0,0,1,17589.3333333,5,3,5,5_0,0.0,0,0.0,0,19,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3887,71,70,16,21,61,221,78,71,0,10091,0,50,150,0,2,6,1,3,2.0,2450.00263857,3240,0,34960.0,5,1,1,2,4,3,0,1,0,1,0,0,0,0,2,1,17480.0,5,3,5,5_0,27666.0,0,12000.0,15666,5,5,0.0,13.333333333299999,3.3,0,1,2820.9470651925994,1223.5727890664061,1597.3742761261933 -3888,87,86,2,4,56,111,78,50,0,10112,0,0,0,0,0,4,0,2,1.5,1689.35500403,0,0,26766.0,7,3,8,7,3,1,0,0,0,0,0,1,0,1,0,1,17844.0,5,3,5,5_0,7716.0,0,7716.0,0,1,3,0.0,0.0,0.0,0,0,786.7573033696991,786.7573033696991,0.0 +3887,71,70,16,21,61,221,78,71,0,10091,0,50,150,0,2,6,1,3,2.0,2450.00263857,3240,0,34960.0,5,1,1,2,4,3,0,1,0,1,0,0,0,0,2,1,17480.0,5,3,5,5_0,27666.0,0,12000.0,15666,5,5,0.0,13.3333333333,3.3,0,1,2820.947065192599,1223.572789066406,1597.3742761261929 +3888,87,86,2,4,56,111,78,50,0,10112,0,0,0,0,0,4,0,2,1.5,1689.35500403,0,0,26766.0,7,3,8,7,3,1,0,0,0,0,0,1,0,1,0,1,17844.0,5,3,5,5_0,7716.0,0,7716.0,0,1,3,0.0,0.0,0.0,0,0,786.757303369699,786.757303369699,0.0 3889,98,97,12,33,36,120,63,50,0,10126,0,120,500,0,2,7,2,4,2.1,2164.11147689,2788,0,36408.0,1,2,0,0,4,3,0,0,1,0,0,0,0,0,2,1,17337.1428571,5,3,5,5_1,22757.0,0,20000.0,2757,1,23,45.5,12.5,0.0,0,1,2632.0659604714824,2313.192389569348,318.8735709021346 3890,99,98,2,2,51,400,56,50,0,10127,0,30,0,0,3,3,2,4,2.5,2358.65517102,3484,0,43919.0,1,1,0,0,4,3,0,1,1,0,0,0,0,0,0,3,17567.6,5,3,5,5_1,28625.0,0,28625.0,0,3,3,333.0,39.5,3.3,0,1,3310.756607571129,3310.756607571129,0.0 -3891,109,108,3,10,39,111,62,50,0,10138,0,200,0,0,2,6,2,4,2.1,2247.59656996,2865,0,37969.0,1,2,8,6,4,2,0,0,0,0,1,0,0,0,0,2,18080.4761905,5,3,5,5_0,15000.0,0,15000.0,0,6,10,191.0,22.5,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -3892,111,110,4,8,32,111,21,50,0,10143,0,0,250,0,2,5,4,6,2.7,1359.0091785,0,0,46445.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,1,0,17201.851851900003,5,3,5,5_0,6500.0,0,0.0,6500,4,9,42.4,7.6,9.9,0,1,662.7685940776367,0.0,662.7685940776367 -3893,113,112,14,14,83,111,78,70,0,10146,0,0,0,0,0,3,0,2,1.5,3858.72489259,2538,0,28330.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,18886.6666667,5,3,5,5_0,5000.0,0,0.0,5000,13,13,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 +3891,109,108,3,10,39,111,62,50,0,10138,0,200,0,0,2,6,2,4,2.1,2247.59656996,2865,0,37969.0,1,2,8,6,4,2,0,0,0,0,1,0,0,0,0,2,18080.4761905,5,3,5,5_0,15000.0,0,15000.0,0,6,10,191.0,22.5,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +3892,111,110,4,8,32,111,21,50,0,10143,0,0,250,0,2,5,4,6,2.7,1359.0091785,0,0,46445.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,1,0,17201.8518519,5,3,5,5_0,6500.0,0,0.0,6500,4,9,42.4,7.6,9.9,0,1,662.7685940776365,0.0,662.7685940776365 +3893,113,112,14,14,83,111,78,70,0,10146,0,0,0,0,0,3,0,2,1.5,3858.72489259,2538,0,28330.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,18886.6666667,5,3,5,5_0,5000.0,0,0.0,5000,13,13,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 3894,133,132,0,0,58,300,22,41,0,10176,0,0,0,0,1,3,0,2,1.5,2741.93093863,0,0,27336.0,1,2,0,0,3,0,0,0,1,0,0,0,0,1,0,0,18224.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3895,148,147,8,8,83,112,75,60,0,10195,0,0,0,0,0,3,0,2,1.5,2428.4158698,0,0,26700.0,5,3,10,0,3,1,0,0,1,0,0,0,0,0,1,0,17800.0,5,3,5,5_1,8500.0,0,0.0,8500,7,7,0.0,0.0,0.0,0,0,983.1067655669727,0.0,983.1067655669727 -3896,149,148,4,5,50,111,42,50,0,10196,0,1000,0,0,1,4,1,3,2.0,1263.25417561,4228,0,38146.0,4,2,7,5,4,1,0,1,0,0,1,0,0,0,0,1,19073.0,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 +3896,149,148,4,5,50,111,42,50,0,10196,0,1000,0,0,1,4,1,3,2.0,1263.25417561,4228,0,38146.0,4,2,7,5,4,1,0,1,0,0,1,0,0,0,0,1,19073.0,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 3897,153,152,0,0,90,111,77,41,0,10201,0,0,0,0,0,3,0,1,1.0,3802.34356394,0,0,18159.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18159.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3898,158,157,3,4,54,111,46,71,0,10207,0,0,800,0,1,2,0,1,1.0,8134.89633142,3120,0,17418.0,1,3,6,4,1,1,0,1,0,0,1,0,0,0,1,0,17418.0,5,3,5,5_0,10000.0,0,0.0,10000,5,7,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 -3899,175,174,7,7,42,111,67,50,0,10235,0,99999,145,0,2,5,3,5,2.8,1385.49239183,3559,0,47677.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,17027.5,5,3,5,5_0,25000.0,0,25000.0,0,5,9,0.0,5.0,0.0,0,1,2549.10997722168,2549.10997722168,0.0 -3900,180,179,7,9,78,111,78,70,0,10242,0,0,0,0,0,3,0,1,1.0,2003.90089022,2600,0,17360.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,0,1,17360.0,5,3,5,5_0,10000.0,0,10000.0,0,4,8,0.0,0.0,0.0,0,0,1019.6439908886717,1019.6439908886717,0.0 -3901,196,195,4,8,49,111,62,50,0,10264,0,0,100149,0,3,5,2,4,2.3,832.463637445,4424,0,42814.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,2,0,18614.782608700003,5,3,5,5_0,10000.0,0,0.0,10000,7,10,260.0,55.0,3.31,0,1,1019.6439908886717,0.0,1019.6439908886717 -3902,214,213,7,13,50,111,63,71,0,1029,0,0,0,0,1,3,0,1,1.0,1854.66527806,0,0,18491.0,1,3,7,5,1,1,0,0,0,0,1,0,0,1,1,0,18491.0,5,3,5,5_0,7000.0,0,0.0,7000,5,11,0.0,20.0,1.1,0,0,713.7507936220703,0.0,713.7507936220703 +3898,158,157,3,4,54,111,46,71,0,10207,0,0,800,0,1,2,0,1,1.0,8134.89633142,3120,0,17418.0,1,3,6,4,1,1,0,1,0,0,1,0,0,0,1,0,17418.0,5,3,5,5_0,10000.0,0,0.0,10000,5,7,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 +3899,175,174,7,7,42,111,67,50,0,10235,0,99999,145,0,2,5,3,5,2.8,1385.49239183,3559,0,47677.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,17027.5,5,3,5,5_0,25000.0,0,25000.0,0,5,9,0.0,5.0,0.0,0,1,2549.109977221679,2549.109977221679,0.0 +3900,180,179,7,9,78,111,78,70,0,10242,0,0,0,0,0,3,0,1,1.0,2003.90089022,2600,0,17360.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,0,1,17360.0,5,3,5,5_0,10000.0,0,10000.0,0,4,8,0.0,0.0,0.0,0,0,1019.6439908886716,1019.6439908886716,0.0 +3901,196,195,4,8,49,111,62,50,0,10264,0,0,100149,0,3,5,2,4,2.3,832.463637445,4424,0,42814.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,2,0,18614.7826087,5,3,5,5_0,10000.0,0,0.0,10000,7,10,260.0,55.0,3.31,0,1,1019.6439908886716,0.0,1019.6439908886716 +3902,214,213,7,13,50,111,63,71,0,1029,0,0,0,0,1,3,0,1,1.0,1854.66527806,0,0,18491.0,1,3,7,5,1,1,0,0,0,0,1,0,0,1,1,0,18491.0,5,3,5,5_0,7000.0,0,0.0,7000,5,11,0.0,20.0,1.1,0,0,713.7507936220701,0.0,713.7507936220701 3903,240,239,13,22,46,400,62,50,0,10325,0,640,0,0,3,5,1,3,2.0,1255.98664142,0,0,36896.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,0,3,18448.0,5,3,5,5_1,6859.0,0,6859.0,0,1,11,304.0,38.6666666667,3.3,0,1,793.3093300028078,793.3093300028078,0.0 -3904,272,271,2,39,42,111,46,20,0,10372,0,700,0,0,2,6,3,5,2.8,1143.08230407,2601,0,49970.0,1,3,9,7,4,4,0,0,0,0,0,1,0,1,2,2,17846.428571400003,5,3,5,5_0,35818.0,0,35000.0,818,3,7,163.3,14.4,3.31,0,0,3652.160846565045,3568.7539681103513,83.40687845469336 +3904,272,271,2,39,42,111,46,20,0,10372,0,700,0,0,2,6,3,5,2.8,1143.08230407,2601,0,49970.0,1,3,9,7,4,4,0,0,0,0,0,1,0,1,2,2,17846.4285714,5,3,5,5_0,35818.0,0,35000.0,818,3,7,163.3,14.4,3.31,0,0,3652.1608465650434,3568.7539681103503,83.40687845469334 3905,282,281,0,0,72,112,78,71,0,10388,0,0,0,0,0,3,0,1,1.0,2485.70672297,0,0,18687.0,5,1,9,0,1,0,0,0,1,0,0,0,0,0,0,0,18687.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3906,287,286,25,25,65,111,78,50,0,10395,0,0,0,186,0,1,0,1,1.0,3790.30456182,2080,0,18893.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18893.0,5,3,5,5_0,2000.0,0,0.0,2000,17,17,0.0,0.0,0.0,0,0,203.92879817773436,0.0,203.92879817773436 +3906,287,286,25,25,65,111,78,50,0,10395,0,0,0,186,0,1,0,1,1.0,3790.30456182,2080,0,18893.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18893.0,5,3,5,5_0,2000.0,0,0.0,2000,17,17,0.0,0.0,0.0,0,0,203.92879817773434,0.0,203.92879817773434 3907,293,292,3,11,38,120,42,10,0,10405,0,240,0,0,2,4,3,5,2.4,1889.31531828,0,0,45272.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,0,3,18863.3333333,5,3,5,5_1,9000.0,0,9000.0,0,5,6,2512.5,12.5,3.3,0,0,1040.9365753062064,1040.9365753062064,0.0 -3908,307,306,2,2,25,111,54,31,0,10423,0,200,0,570,2,4,0,2,1.5,3636.04479156,2860,0,28040.0,1,3,8,6,3,1,0,1,0,0,1,0,0,0,0,1,18693.3333333,5,3,5,5_0,17102.0,0,17102.0,0,4,0,0.0,10.0,1.1,0,0,1743.7951532178065,1743.7951532178065,0.0 -3909,320,319,13,13,54,211,67,50,0,10438,0,0,0,0,1,3,1,3,2.0,2626.59407375,0,0,33830.0,1,4,3,3,4,1,0,0,0,1,0,0,0,0,1,0,16915.0,5,3,5,5_0,3000.0,0,0.0,3000,3,8,0.0,10.0,3.3,0,1,305.89319726660153,0.0,305.89319726660153 +3908,307,306,2,2,25,111,54,31,0,10423,0,200,0,570,2,4,0,2,1.5,3636.04479156,2860,0,28040.0,1,3,8,6,3,1,0,1,0,0,1,0,0,0,0,1,18693.3333333,5,3,5,5_0,17102.0,0,17102.0,0,4,0,0.0,10.0,1.1,0,0,1743.7951532178063,1743.7951532178063,0.0 +3909,320,319,13,13,54,211,67,50,0,10438,0,0,0,0,1,3,1,3,2.0,2626.59407375,0,0,33830.0,1,4,3,3,4,1,0,0,0,1,0,0,0,0,1,0,16915.0,5,3,5,5_0,3000.0,0,0.0,3000,3,8,0.0,10.0,3.3,0,1,305.8931972666015,0.0,305.8931972666015 3910,331,330,4,4,81,111,75,50,0,10450,0,0,0,0,0,3,0,1,1.0,2395.44048542,0,0,19042.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,19042.0,5,3,5,5_0,10279.0,0,0.0,10279,6,6,0.0,0.0,0.0,0,0,1048.0920582344656,0.0,1048.0920582344656 3911,334,333,3,3,45,300,46,42,0,10457,0,400,130,0,2,4,2,4,2.1,2240.44235801,1300,0,36748.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,17499.047619,5,3,5,5_1,15000.0,0,13000.0,2000,3,4,82.6,20.0,3.3,0,1,1734.8942921770108,1503.575053220076,231.31923895693478 -3912,335,334,4,5,57,111,77,71,0,10458,0,0,0,0,0,3,0,1,1.0,3191.0501710999997,1051,0,17330.0,7,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,17330.0,5,3,5,5_0,12500.0,0,12500.0,0,1,7,0.0,0.0,0.0,0,0,1274.55498861084,1274.55498861084,0.0 +3912,335,334,4,5,57,111,77,71,0,10458,0,0,0,0,0,3,0,1,1.0,3191.0501711,1051,0,17330.0,7,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,17330.0,5,3,5,5_0,12500.0,0,12500.0,0,1,7,0.0,0.0,0.0,0,0,1274.5549886108395,1274.5549886108395,0.0 3913,338,337,0,0,41,111,34,20,0,10460,0,0,0,239,1,2,1,3,1.8,3567.36239869,0,0,31545.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,17525.0,5,3,5,5_0,0.0,0,0.0,0,0,0,9.2,30.0,1.1,0,0,0.0,0.0,0.0 -3914,341,340,7,29,53,111,46,60,0,10465,0,0,0,0,1,5,0,2,1.5,2695.60537064,0,0,27050.0,1,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,18033.3333333,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954102,530.2148752621093,152.94659863330077 -3915,358,357,0,7,29,111,38,10,0,10491,0,0,0,579,1,3,0,2,1.5,3672.82691997,4243,0,27550.0,1,3,9,7,5,1,0,0,0,0,0,1,0,0,0,1,18366.6666667,5,3,5,5_0,40000.0,0,40000.0,0,3,7,0.0,27.0,3.3,0,1,4078.575963554687,4078.575963554687,0.0 +3914,341,340,7,29,53,111,46,60,0,10465,0,0,0,0,1,5,0,2,1.5,2695.60537064,0,0,27050.0,1,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,18033.3333333,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954099,530.2148752621092,152.94659863330074 +3915,358,357,0,7,29,111,38,10,0,10491,0,0,0,579,1,3,0,2,1.5,3672.82691997,4243,0,27550.0,1,3,9,7,5,1,0,0,0,0,0,1,0,0,0,1,18366.6666667,5,3,5,5_0,40000.0,0,40000.0,0,3,7,0.0,27.0,3.3,0,1,4078.5759635546865,4078.5759635546865,0.0 3916,360,359,0,0,71,111,78,70,0,10493,0,0,0,0,0,2,0,1,1.0,1565.83420141,0,0,18770.0,5,1,6,4,1,0,0,0,0,0,1,0,0,0,0,0,18770.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3917,363,362,2,2,76,111,78,70,0,10496,0,0,0,0,0,5,0,2,1.5,2468.41773318,0,0,28364.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,0,2,18909.3333333,5,3,5,5_0,6000.0,0,6000.0,0,7,7,0.0,0.0,0.0,0,0,611.7863945332031,611.7863945332031,0.0 -3918,378,377,2,7,31,111,46,31,0,10520,0,200,250,0,2,4,3,5,2.4,1054.97256439,2080,0,44472.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,1,1,18530.0,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882813,2039.2879817773435,815.7151927109375 -3919,398,397,4,7,61,112,55,50,0,10542,0,130,0,0,1,3,0,2,1.5,3207.11281088,2133,0,28117.0,1,1,10,4,3,2,0,0,0,0,1,0,0,0,1,1,18744.6666667,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954102,530.2148752621093,152.94659863330077 -3920,434,433,0,17,29,112,46,12,0,10591,0,0,1200,429,1,3,1,3,1.8,2452.17230977,4268,0,30532.0,1,3,9,0,4,2,0,1,1,0,0,0,0,1,1,0,16962.222222200002,5,3,5,5_1,3000.0,0,0.0,3000,5,8,0.0,0.0,0.0,0,0,346.9788584354022,0.0,346.9788584354022 -3921,455,454,0,23,25,111,46,20,0,10626,0,0,0,700,2,3,0,2,1.5,3126.17280238,1820,0,26604.0,1,3,8,6,3,1,0,0,0,0,1,0,0,0,1,0,17736.0,5,3,5,5_0,20000.0,0,20000.0,0,5,23,58.5,15.0,3.31,0,1,2039.2879817773435,2039.2879817773435,0.0 -3922,460,459,15,18,58,221,78,70,0,10632,0,0,150,0,1,3,0,2,1.5,2439.52507267,2106,0,27870.0,5,3,1,2,3,2,0,0,0,1,0,0,0,0,2,0,18580.0,5,3,5,5_0,7000.0,0,0.0,7000,4,15,0.0,0.0,0.0,0,1,713.7507936220703,0.0,713.7507936220703 -3923,464,463,1,1,77,111,75,70,1,10637,0,0,0,0,0,3,0,1,1.0,2092.73949327,0,8776,17934.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,17934.0,5,3,5,5_0,8116.0,0,0.0,8116,0,0,0.0,0.0,0.0,0,0,827.543063005246,0.0,827.543063005246 +3917,363,362,2,2,76,111,78,70,0,10496,0,0,0,0,0,5,0,2,1.5,2468.41773318,0,0,28364.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,0,2,18909.3333333,5,3,5,5_0,6000.0,0,6000.0,0,7,7,0.0,0.0,0.0,0,0,611.786394533203,611.786394533203,0.0 +3918,378,377,2,7,31,111,46,31,0,10520,0,200,250,0,2,4,3,5,2.4,1054.97256439,2080,0,44472.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,1,1,18530.0,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882804,2039.2879817773432,815.7151927109373 +3919,398,397,4,7,61,112,55,50,0,10542,0,130,0,0,1,3,0,2,1.5,3207.11281088,2133,0,28117.0,1,1,10,4,3,2,0,0,0,0,1,0,0,0,1,1,18744.6666667,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954099,530.2148752621092,152.94659863330074 +3920,434,433,0,17,29,112,46,12,0,10591,0,0,1200,429,1,3,1,3,1.8,2452.17230977,4268,0,30532.0,1,3,9,0,4,2,0,1,1,0,0,0,0,1,1,0,16962.2222222,5,3,5,5_1,3000.0,0,0.0,3000,5,8,0.0,0.0,0.0,0,0,346.9788584354022,0.0,346.9788584354022 +3921,455,454,0,23,25,111,46,20,0,10626,0,0,0,700,2,3,0,2,1.5,3126.17280238,1820,0,26604.0,1,3,8,6,3,1,0,0,0,0,1,0,0,0,1,0,17736.0,5,3,5,5_0,20000.0,0,20000.0,0,5,23,58.5,15.0,3.31,0,1,2039.2879817773432,2039.2879817773432,0.0 +3922,460,459,15,18,58,221,78,70,0,10632,0,0,150,0,1,3,0,2,1.5,2439.52507267,2106,0,27870.0,5,3,1,2,3,2,0,0,0,1,0,0,0,0,2,0,18580.0,5,3,5,5_0,7000.0,0,0.0,7000,4,15,0.0,0.0,0.0,0,1,713.7507936220701,0.0,713.7507936220701 +3923,464,463,1,1,77,111,75,70,1,10637,0,0,0,0,0,3,0,1,1.0,2092.73949327,0,8776,17934.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,17934.0,5,3,5,5_0,8116.0,0,0.0,8116,0,0,0.0,0.0,0.0,0,0,827.5430630052458,0.0,827.5430630052458 3924,477,476,7,17,59,300,78,50,0,10658,0,0,0,0,0,6,0,2,1.5,1544.449287,0,0,25936.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,17290.6666667,5,3,5,5_1,20000.0,0,20000.0,0,2,14,0.0,0.0,0.0,0,0,2313.192389569348,2313.192389569348,0.0 -3925,486,485,2,5,78,112,64,70,0,10666,0,0,0,0,1,3,0,2,1.5,3265.79588412,0,0,26160.0,5,3,9,1,3,1,0,0,0,1,0,0,0,0,0,1,17440.0,5,3,5,5_0,12000.0,0,12000.0,0,1,5,0.0,0.0,0.0,0,0,1223.5727890664061,1223.5727890664061,0.0 +3925,486,485,2,5,78,112,64,70,0,10666,0,0,0,0,1,3,0,2,1.5,3265.79588412,0,0,26160.0,5,3,9,1,3,1,0,0,0,1,0,0,0,0,0,1,17440.0,5,3,5,5_0,12000.0,0,12000.0,0,1,5,0.0,0.0,0.0,0,0,1223.572789066406,1223.572789066406,0.0 3926,496,495,0,0,59,111,52,71,0,10680,0,0,0,395,2,4,1,2,1.5,2592.71059228,0,0,27938.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,18625.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,114.0,120.0,5.5,0,0,0.0,0.0,0.0 3927,503,502,5,12,34,300,21,60,0,10693,0,1120,0,0,2,5,2,4,2.1,2687.79228,6500,0,36216.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17245.7142857,5,3,5,5_1,2000.0,0,2000.0,0,8,12,186.5,45.0,3.3,0,1,231.31923895693478,231.31923895693478,0.0 3928,521,520,2,9,23,300,62,50,0,10721,0,550,0,0,1,3,0,1,1.0,1056.07229049,2340,0,17199.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,0,1,17199.0,5,3,5,5_1,10000.0,0,10000.0,0,3,7,0.0,0.0,0.0,0,1,1156.596194784674,1156.596194784674,0.0 -3929,532,531,11,11,55,111,52,60,0,10733,0,0,0,0,1,4,1,2,1.5,4661.92404232,0,0,25954.0,1,2,10,8,2,1,0,0,0,0,0,0,1,0,0,1,17302.6666667,5,3,5,5_0,10000.0,0,10000.0,0,4,12,34.0,70.0,5.5,0,0,1019.6439908886717,1019.6439908886717,0.0 -3930,537,536,9,11,70,111,78,71,0,10738,0,0,0,328,0,3,0,1,1.0,4147.70045015,0,0,18083.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18083.0,5,3,5,5_0,10000.0,0,0.0,10000,11,11,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 -3931,551,550,2,2,42,111,48,43,0,10758,0,400,0,0,2,6,3,5,2.4,1739.17429447,0,0,45190.0,1,2,7,5,4,2,0,0,0,0,1,0,0,0,1,1,18829.1666667,5,3,5,5_0,16000.0,0,6000.0,10000,3,0,56.5,18.0,3.3,0,1,1631.430385421875,611.7863945332031,1019.6439908886717 -3932,554,553,3,16,52,111,43,33,0,10760,0,500,0,571,2,3,2,4,2.5,2316.04355198,4958,0,44180.0,1,3,9,7,4,2,0,0,0,0,0,1,0,1,0,2,17672.0,5,3,5,5_0,10500.0,0,10500.0,0,3,18,202.2,15.0,3.3,0,1,1070.6261904331054,1070.6261904331054,0.0 -3933,556,555,6,8,37,111,54,41,0,10763,0,0,200,338,1,2,0,1,1.0,2720.65226312,3099,0,18725.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,18725.0,5,3,5,5_0,15000.0,0,0.0,15000,4,10,0.0,20.0,3.3,0,1,1529.4659863330078,0.0,1529.4659863330078 +3929,532,531,11,11,55,111,52,60,0,10733,0,0,0,0,1,4,1,2,1.5,4661.92404232,0,0,25954.0,1,2,10,8,2,1,0,0,0,0,0,0,1,0,0,1,17302.6666667,5,3,5,5_0,10000.0,0,10000.0,0,4,12,34.0,70.0,5.5,0,0,1019.6439908886716,1019.6439908886716,0.0 +3930,537,536,9,11,70,111,78,71,0,10738,0,0,0,328,0,3,0,1,1.0,4147.70045015,0,0,18083.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18083.0,5,3,5,5_0,10000.0,0,0.0,10000,11,11,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 +3931,551,550,2,2,42,111,48,43,0,10758,0,400,0,0,2,6,3,5,2.4,1739.17429447,0,0,45190.0,1,2,7,5,4,2,0,0,0,0,1,0,0,0,1,1,18829.1666667,5,3,5,5_0,16000.0,0,6000.0,10000,3,0,56.5,18.0,3.3,0,1,1631.4303854218747,611.786394533203,1019.6439908886716 +3932,554,553,3,16,52,111,43,33,0,10760,0,500,0,571,2,3,2,4,2.5,2316.04355198,4958,0,44180.0,1,3,9,7,4,2,0,0,0,0,0,1,0,1,0,2,17672.0,5,3,5,5_0,10500.0,0,10500.0,0,3,18,202.2,15.0,3.3,0,1,1070.6261904331052,1070.6261904331052,0.0 +3933,556,555,6,8,37,111,54,41,0,10763,0,0,200,338,1,2,0,1,1.0,2720.65226312,3099,0,18725.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,18725.0,5,3,5,5_0,15000.0,0,0.0,15000,4,10,0.0,20.0,3.3,0,1,1529.4659863330073,0.0,1529.4659863330073 3934,558,557,6,11,58,400,69,70,0,10765,0,100,0,0,1,5,0,2,1.5,1986.81411825,2080,0,27440.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,18293.3333333,5,3,5,5_1,59572.0,0,59572.0,0,9,9,0.0,0.0,0.0,0,1,6890.074851571259,6890.074851571259,0.0 3935,559,558,1,20,33,112,63,50,2,10766,0,1020,0,0,2,4,2,4,2.1,2602.63341186,2934,1000,35483.0,1,2,7,0,4,2,0,1,1,0,0,0,0,1,0,2,16896.6666667,5,3,5,5_1,15000.0,0,15000.0,0,7,18,154.0,27.5,3.3,0,1,1734.8942921770108,1734.8942921770108,0.0 3936,581,580,0,19,38,300,56,50,2,10795,0,180,0,406,2,4,1,3,1.8,3088.04021635,3120,1200,33416.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,18564.4444444,5,3,5,5_1,70000.0,0,70000.0,0,2,20,75.6,53.3333333333,3.3,0,1,8096.173363492717,8096.173363492717,0.0 -3937,590,589,0,1,56,112,43,20,2,10811,0,200,0,0,1,5,1,2,1.5,5998.47286384,3443,14000,26757.0,1,1,9,2,2,1,1,1,0,1,0,0,0,0,0,1,17838.0,5,3,5,5_0,9445.0,0,9445.0,0,2,3,0.0,0.0,0.0,0,0,963.0537493943506,963.0537493943506,0.0 -3938,591,590,4,5,31,300,46,50,0,10813,0,150,0,495,2,2,1,3,1.8,2426.0070972,3017,0,32844.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,18246.6666667,5,3,5,5_1,10000.0,0,10000.0,0,5,5,118.4,7.333333333330001,3.31,0,1,1156.596194784674,1156.596194784674,0.0 +3937,590,589,0,1,56,112,43,20,2,10811,0,200,0,0,1,5,1,2,1.5,5998.47286384,3443,14000,26757.0,1,1,9,2,2,1,1,1,0,1,0,0,0,0,0,1,17838.0,5,3,5,5_0,9445.0,0,9445.0,0,2,3,0.0,0.0,0.0,0,0,963.0537493943503,963.0537493943503,0.0 +3938,591,590,4,5,31,300,46,50,0,10813,0,150,0,495,2,2,1,3,1.8,2426.0070972,3017,0,32844.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,18246.6666667,5,3,5,5_1,10000.0,0,10000.0,0,5,5,118.4,7.33333333333,3.31,0,1,1156.596194784674,1156.596194784674,0.0 3939,592,591,0,0,90,300,78,71,0,10814,0,0,0,0,1,4,1,3,2.0,2374.28780952,0,0,34258.0,5,1,0,0,4,0,0,0,1,0,0,0,0,0,0,0,17129.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3940,604,603,0,0,77,111,86,71,0,10829,0,0,0,0,0,4,0,1,1.0,3452.73478264,0,0,17260.0,6,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,17260.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3941,607,606,0,0,80,111,77,71,0,10833,0,0,0,0,0,3,0,1,1.0,4319.13141058,0,0,17830.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,17830.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3942,620,619,0,0,46,111,68,71,0,10851,0,0,0,204,1,2,0,1,1.0,2549.54991541,0,0,18017.0,1,3,5,4,1,0,0,0,0,0,1,0,0,0,0,0,18017.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 -3943,626,625,6,6,68,111,72,50,0,10861,0,0,0,0,0,5,0,2,1.5,2286.39695468,2236,0,28483.0,5,1,4,3,3,2,0,0,0,1,0,0,0,0,1,1,18988.6666667,5,3,5,5_0,21000.0,0,15000.0,6000,5,5,0.0,0.0,0.0,0,0,2141.252380866211,1529.4659863330078,611.7863945332031 -3944,630,629,8,21,55,221,48,50,0,10868,0,410,0,0,4,8,2,4,2.5,1401.01291045,4838,0,45548.0,1,1,1,2,4,3,0,1,0,1,0,0,0,0,0,3,18219.2,5,3,5,5_0,7644.0,0,7644.0,0,4,22,85.4,22.5,1.1,0,1,779.4158666353007,779.4158666353007,0.0 -3945,632,631,3,3,63,112,75,50,0,1087,0,0,0,0,0,4,0,2,1.5,1043.96597632,0,0,28002.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,0,1,18668.0,5,3,5,5_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1223.5727890664061,1223.5727890664061,0.0 -3946,641,640,5,5,64,111,77,70,0,10880,0,0,0,0,0,4,0,2,1.5,1629.61350171,3380,0,28080.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,18720.0,5,3,5,5_0,22702.0,0,22702.0,0,2,5,0.0,0.0,0.0,0,0,2314.795788115463,2314.795788115463,0.0 +3943,626,625,6,6,68,111,72,50,0,10861,0,0,0,0,0,5,0,2,1.5,2286.39695468,2236,0,28483.0,5,1,4,3,3,2,0,0,0,1,0,0,0,0,1,1,18988.6666667,5,3,5,5_0,21000.0,0,15000.0,6000,5,5,0.0,0.0,0.0,0,0,2141.2523808662104,1529.4659863330073,611.786394533203 +3944,630,629,8,21,55,221,48,50,0,10868,0,410,0,0,4,8,2,4,2.5,1401.01291045,4838,0,45548.0,1,1,1,2,4,3,0,1,0,1,0,0,0,0,0,3,18219.2,5,3,5,5_0,7644.0,0,7644.0,0,4,22,85.4,22.5,1.1,0,1,779.4158666353006,779.4158666353006,0.0 +3945,632,631,3,3,63,112,75,50,0,1087,0,0,0,0,0,4,0,2,1.5,1043.96597632,0,0,28002.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,0,1,18668.0,5,3,5,5_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1223.572789066406,1223.572789066406,0.0 +3946,641,640,5,5,64,111,77,70,0,10880,0,0,0,0,0,4,0,2,1.5,1629.61350171,3380,0,28080.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,18720.0,5,3,5,5_0,22702.0,0,22702.0,0,2,5,0.0,0.0,0.0,0,0,2314.795788115462,2314.795788115462,0.0 3947,665,664,0,0,86,400,77,70,0,10910,0,0,0,0,0,2,0,2,1.5,3711.59440858,0,0,26132.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,17421.3333333,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3948,696,695,2,5,71,111,77,70,0,10956,0,0,0,0,0,3,0,1,1.0,1716.83690511,0,0,17560.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17560.0,5,3,5,5_0,9000.0,0,0.0,9000,4,4,0.0,0.0,0.0,0,0,917.6795917998046,0.0,917.6795917998046 +3948,696,695,2,5,71,111,77,70,0,10956,0,0,0,0,0,3,0,1,1.0,1716.83690511,0,0,17560.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17560.0,5,3,5,5_0,9000.0,0,0.0,9000,4,4,0.0,0.0,0.0,0,0,917.6795917998045,0.0,917.6795917998045 3949,715,714,2,10,31,112,47,43,0,10983,0,450,0,0,2,4,1,3,1.8,2479.00027953,3016,0,32140.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,17855.5555556,5,3,5,5_1,22000.0,0,22000.0,0,7,9,44.0,16.6666666667,3.3,0,1,2544.5116285262825,2544.5116285262825,0.0 -3950,716,715,17,17,51,111,47,31,0,10984,0,0,0,0,2,3,1,3,2.0,1730.58956631,2077,0,35599.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,2,0,17799.5,5,3,5,5_0,5000.0,0,0.0,5000,4,17,260.4,62.0,3.3,0,1,509.82199544433587,0.0,509.82199544433587 -3951,727,726,1,4,50,300,13,41,0,11000,0,0,0,0,3,8,1,3,2.0,2290.4014143000004,1790,0,37982.0,1,1,0,0,4,1,0,0,1,0,0,0,0,0,0,1,18991.0,5,3,5,5_1,27287.0,0,27287.0,0,2,14,560.0,25.0,3.3,0,1,3156.0040367089396,3156.0040367089396,0.0 -3952,728,727,2,6,64,111,72,50,0,11001,0,0,0,0,0,5,0,2,1.5,3231.40765706,0,0,28677.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,19118.0,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 -3953,730,729,7,7,69,111,74,71,0,11003,0,0,0,0,0,5,0,2,1.5,3767.13145377,0,0,26450.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,17633.3333333,5,3,5,5_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,2039.2879817773435,2039.2879817773435,0.0 +3950,716,715,17,17,51,111,47,31,0,10984,0,0,0,0,2,3,1,3,2.0,1730.58956631,2077,0,35599.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,2,0,17799.5,5,3,5,5_0,5000.0,0,0.0,5000,4,17,260.4,62.0,3.3,0,1,509.8219954443358,0.0,509.8219954443358 +3951,727,726,1,4,50,300,13,41,0,11000,0,0,0,0,3,8,1,3,2.0,2290.4014143,1790,0,37982.0,1,1,0,0,4,1,0,0,1,0,0,0,0,0,0,1,18991.0,5,3,5,5_1,27287.0,0,27287.0,0,2,14,560.0,25.0,3.3,0,1,3156.0040367089396,3156.0040367089396,0.0 +3952,728,727,2,6,64,111,72,50,0,11001,0,0,0,0,0,5,0,2,1.5,3231.40765706,0,0,28677.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,19118.0,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 +3953,730,729,7,7,69,111,74,71,0,11003,0,0,0,0,0,5,0,2,1.5,3767.13145377,0,0,26450.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,17633.3333333,5,3,5,5_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,2039.2879817773432,2039.2879817773432,0.0 3954,731,730,0,18,36,112,53,42,0,11005,0,99999,0,0,1,5,2,4,2.1,1523.81490237,2340,0,37527.0,1,2,8,0,4,2,0,1,1,0,0,0,0,1,1,1,17870.0,5,3,5,5_1,23506.0,0,20000.0,3506,2,17,190.0,36.6666666667,3.31,0,1,2718.6950154608544,2313.192389569348,405.5026258915067 -3955,732,731,6,9,71,111,77,70,0,11008,0,0,0,326,0,4,0,2,1.5,2353.24002714,2084,0,25853.0,5,3,8,6,3,1,0,0,0,0,1,0,0,0,0,1,17235.3333333,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029023,1398.5436979029023,0.0 +3955,732,731,6,9,71,111,77,70,0,11008,0,0,0,326,0,4,0,2,1.5,2353.24002714,2084,0,25853.0,5,3,8,6,3,1,0,0,0,0,1,0,0,0,0,1,17235.3333333,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029018,1398.5436979029018,0.0 3956,734,733,6,10,71,112,78,70,0,1101,0,0,330,0,1,5,0,2,1.5,1443.98125751,2080,0,26857.0,5,1,7,0,3,1,0,1,1,0,0,0,0,0,1,0,17904.6666667,5,3,5,5_1,1200.0,0,0.0,1200,4,4,0.0,0.0,0.0,0,0,138.79154337416085,0.0,138.79154337416085 -3957,746,745,5,5,72,112,78,50,0,11031,0,0,0,0,0,5,0,2,1.5,1300.64790981,0,0,26547.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,1,0,17698.0,5,3,5,5_0,4500.0,0,0.0,4500,7,7,0.0,0.0,0.0,0,0,458.8397958999023,0.0,458.8397958999023 +3957,746,745,5,5,72,112,78,50,0,11031,0,0,0,0,0,5,0,2,1.5,1300.64790981,0,0,26547.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,1,0,17698.0,5,3,5,5_0,4500.0,0,0.0,4500,7,7,0.0,0.0,0.0,0,0,458.83979589990224,0.0,458.83979589990224 3958,748,747,0,0,67,111,86,71,0,11034,0,0,0,0,0,3,0,1,1.0,3878.1924669,0,0,17652.0,7,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,17652.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3959,752,751,1,1,77,111,77,50,1,11039,0,0,0,0,0,4,0,2,1.5,1424.66705981,0,12000,25638.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,17092.0,5,3,5,5_0,5567.0,0,0.0,5567,1,1,0.0,0.0,0.0,0,0,567.6358097277235,0.0,567.6358097277235 -3960,757,756,4,17,53,112,62,71,0,11045,0,120,0,0,2,5,0,2,1.5,2251.77191366,976,0,27610.0,1,3,9,2,3,2,0,1,0,1,0,0,0,0,0,2,18406.6666667,5,3,5,5_0,4500.0,0,4500.0,0,3,17,20.1,29.5,3.3,0,1,458.8397958999023,458.8397958999023,0.0 +3959,752,751,1,1,77,111,77,50,1,11039,0,0,0,0,0,4,0,2,1.5,1424.66705981,0,12000,25638.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,17092.0,5,3,5,5_0,5567.0,0,0.0,5567,1,1,0.0,0.0,0.0,0,0,567.6358097277234,0.0,567.6358097277234 +3960,757,756,4,17,53,112,62,71,0,11045,0,120,0,0,2,5,0,2,1.5,2251.77191366,976,0,27610.0,1,3,9,2,3,2,0,1,0,1,0,0,0,0,0,2,18406.6666667,5,3,5,5_0,4500.0,0,4500.0,0,3,17,20.1,29.5,3.3,0,1,458.83979589990224,458.83979589990224,0.0 3961,760,759,0,0,80,111,71,70,0,11048,0,0,0,0,0,6,0,1,1.0,2617.20699763,0,0,16969.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,16969.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3962,764,763,0,0,61,111,77,70,0,11051,0,0,0,249,0,2,0,1,1.0,2834.59131809,0,0,18748.0,5,3,5,4,1,0,0,0,0,0,1,0,0,0,0,0,18748.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3963,765,764,6,9,56,111,46,50,0,11053,0,0,150,0,2,4,0,2,1.5,1041.40158357,0,0,26350.0,1,3,7,5,3,2,0,0,0,0,1,0,0,0,1,1,17566.6666667,5,3,5,5_0,31517.0,0,20000.0,11517,3,15,0.0,0.0,0.0,1,0,3213.611966083827,2039.2879817773435,1174.3239843064832 -3964,775,774,19,24,74,111,77,50,0,11065,0,0,0,0,0,4,0,1,1.0,2687.35263752,0,0,16939.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,16939.0,5,3,5,5_0,330.0,0,0.0,330,16,23,0.0,0.0,0.0,0,0,33.648251699326174,0.0,33.648251699326174 +3963,765,764,6,9,56,111,46,50,0,11053,0,0,150,0,2,4,0,2,1.5,1041.40158357,0,0,26350.0,1,3,7,5,3,2,0,0,0,0,1,0,0,0,1,1,17566.6666667,5,3,5,5_0,31517.0,0,20000.0,11517,3,15,0.0,0.0,0.0,1,0,3213.6119660838262,2039.2879817773432,1174.323984306483 +3964,775,774,19,24,74,111,77,50,0,11065,0,0,0,0,0,4,0,1,1.0,2687.35263752,0,0,16939.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,16939.0,5,3,5,5_0,330.0,0,0.0,330,16,23,0.0,0.0,0.0,0,0,33.64825169932616,0.0,33.64825169932616 3965,780,779,2,2,53,112,62,71,0,1107,0,120,0,0,1,3,1,3,2.0,2953.19559111,3849,0,36334.0,1,1,7,0,4,2,0,1,1,0,0,0,0,0,1,1,18167.0,5,3,5,5_1,32891.0,0,22891.0,10000,2,7,0.0,0.0,0.0,0,0,3804.160544266271,2647.564349481597,1156.596194784674 -3966,783,782,6,6,65,111,78,71,0,11074,0,0,0,0,0,4,0,2,1.5,2440.73620344,2184,0,27136.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18090.6666667,5,3,5,5_0,10000.0,0,10000.0,0,6,6,0.0,0.0,0.0,0,0,1019.6439908886717,1019.6439908886717,0.0 +3966,783,782,6,6,65,111,78,71,0,11074,0,0,0,0,0,4,0,2,1.5,2440.73620344,2184,0,27136.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18090.6666667,5,3,5,5_0,10000.0,0,10000.0,0,6,6,0.0,0.0,0.0,0,0,1019.6439908886716,1019.6439908886716,0.0 3967,791,790,0,0,26,111,34,10,0,11082,0,0,0,500,1,3,0,1,1.0,4157.90861913,0,0,18925.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18925.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 -3968,824,823,2,25,47,112,62,50,0,11131,0,140,0,0,2,5,2,4,2.3,2694.08531683,4420,0,42194.0,1,1,7,0,4,1,0,1,1,0,0,0,0,0,0,1,18345.217391299997,5,3,5,5_1,20000.0,0,20000.0,0,4,20,174.5,32.5,3.31,0,1,2313.192389569348,2313.192389569348,0.0 -3969,844,843,4,4,84,221,74,20,0,11159,0,0,0,0,0,5,0,2,1.5,2353.34842939,0,0,28060.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,18706.6666667,5,3,5,5_0,9000.0,0,0.0,9000,4,4,0.0,0.0,0.0,0,0,917.6795917998046,0.0,917.6795917998046 -3970,861,860,10,16,50,211,63,50,0,11184,0,99999,80,0,2,3,2,4,2.5,851.6934498019999,6149,0,47700.0,1,2,3,4,4,2,0,1,0,0,1,0,0,0,1,1,19080.0,5,3,5,5_0,38000.0,0,28000.0,10000,12,14,0.0,0.0,0.0,0,1,3874.6471653769527,2855.0031744882813,1019.6439908886717 -3971,869,868,9,9,52,112,21,50,0,11193,0,0,0,0,3,5,2,4,2.5,1516.31131545,5382,0,43743.0,1,1,8,1,4,2,0,0,0,1,0,0,0,0,2,0,17497.2,5,3,5,5_0,10000.0,0,0.0,10000,7,10,260.0,55.0,3.31,0,1,1019.6439908886717,0.0,1019.6439908886717 +3968,824,823,2,25,47,112,62,50,0,11131,0,140,0,0,2,5,2,4,2.3,2694.08531683,4420,0,42194.0,1,1,7,0,4,1,0,1,1,0,0,0,0,0,0,1,18345.2173913,5,3,5,5_1,20000.0,0,20000.0,0,4,20,174.5,32.5,3.31,0,1,2313.192389569348,2313.192389569348,0.0 +3969,844,843,4,4,84,221,74,20,0,11159,0,0,0,0,0,5,0,2,1.5,2353.34842939,0,0,28060.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,18706.6666667,5,3,5,5_0,9000.0,0,0.0,9000,4,4,0.0,0.0,0.0,0,0,917.6795917998045,0.0,917.6795917998045 +3970,861,860,10,16,50,211,63,50,0,11184,0,99999,80,0,2,3,2,4,2.5,851.693449802,6149,0,47700.0,1,2,3,4,4,2,0,1,0,0,1,0,0,0,1,1,19080.0,5,3,5,5_0,38000.0,0,28000.0,10000,12,14,0.0,0.0,0.0,0,1,3874.647165376952,2855.0031744882804,1019.6439908886716 +3971,869,868,9,9,52,112,21,50,0,11193,0,0,0,0,3,5,2,4,2.5,1516.31131545,5382,0,43743.0,1,1,8,1,4,2,0,0,0,1,0,0,0,0,2,0,17497.2,5,3,5,5_0,10000.0,0,0.0,10000,7,10,260.0,55.0,3.31,0,1,1019.6439908886716,0.0,1019.6439908886716 3972,877,876,3,3,64,300,75,71,0,11206,0,0,0,0,0,4,0,1,1.0,3064.50049803,2207,0,18034.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,18034.0,5,3,5,5_1,3448.0,0,0.0,3448,1,4,0.0,0.0,0.0,0,0,398.79436796175554,0.0,398.79436796175554 -3973,878,877,4,10,37,111,48,42,0,11207,0,0,100,205,2,3,2,4,2.1,2878.8032346,2080,0,37170.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,17700.0,5,3,5,5_0,5362.0,0,0.0,5362,1,10,150.0,56.25,5.56,0,1,546.7331079145058,0.0,546.7331079145058 -3974,884,883,14,15,80,112,72,50,0,11214,0,0,0,0,0,4,0,2,1.5,1262.34628258,4160,0,27399.0,5,1,10,1,3,2,0,0,0,1,0,0,0,0,1,1,18266.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.85759635546873,305.89319726660153,101.96439908886718 -3975,892,891,8,11,61,111,75,20,0,11224,0,0,0,628,0,3,0,2,1.5,2211.80209963,0,0,27346.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,18230.6666667,5,3,5,5_0,10000.0,0,0.0,10000,3,13,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 -3976,931,930,7,13,60,111,75,50,0,1128,0,0,0,380,0,3,0,1,1.0,2002.43676508,0,0,17940.0,5,3,6,5,1,1,0,0,0,0,1,0,0,0,0,1,17940.0,5,3,5,5_0,2000.0,0,2000.0,0,7,13,0.0,0.0,0.0,0,0,203.92879817773436,203.92879817773436,0.0 -3977,957,956,2,3,67,111,74,31,0,11313,0,0,0,0,0,6,0,2,1.5,1571.15412098,1689,0,27533.0,5,2,7,6,3,1,0,0,0,0,1,0,0,0,0,1,18355.3333333,5,3,5,5_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1223.5727890664061,1223.5727890664061,0.0 -3978,958,957,8,12,34,111,53,41,0,11314,0,99999,0,0,1,4,2,4,2.1,2866.86371016,0,0,39917.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,19008.0952381,5,3,5,5_0,9216.0,0,6716.0,2500,2,7,0.0,0.0,0.0,0,0,939.7039020029998,684.792904280832,254.91099772216793 -3979,962,961,10,10,67,120,72,71,0,11320,0,0,0,0,0,7,0,2,1.5,2818.58146643,0,0,26492.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,0,1,17661.3333333,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029023,1398.5436979029023,0.0 +3973,878,877,4,10,37,111,48,42,0,11207,0,0,100,205,2,3,2,4,2.1,2878.8032346,2080,0,37170.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,17700.0,5,3,5,5_0,5362.0,0,0.0,5362,1,10,150.0,56.25,5.56,0,1,546.7331079145057,0.0,546.7331079145057 +3974,884,883,14,15,80,112,72,50,0,11214,0,0,0,0,0,4,0,2,1.5,1262.34628258,4160,0,27399.0,5,1,10,1,3,2,0,0,0,1,0,0,0,0,1,1,18266.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.8575963554687,305.8931972666015,101.96439908886717 +3975,892,891,8,11,61,111,75,20,0,11224,0,0,0,628,0,3,0,2,1.5,2211.80209963,0,0,27346.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,18230.6666667,5,3,5,5_0,10000.0,0,0.0,10000,3,13,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 +3976,931,930,7,13,60,111,75,50,0,1128,0,0,0,380,0,3,0,1,1.0,2002.43676508,0,0,17940.0,5,3,6,5,1,1,0,0,0,0,1,0,0,0,0,1,17940.0,5,3,5,5_0,2000.0,0,2000.0,0,7,13,0.0,0.0,0.0,0,0,203.92879817773434,203.92879817773434,0.0 +3977,957,956,2,3,67,111,74,31,0,11313,0,0,0,0,0,6,0,2,1.5,1571.15412098,1689,0,27533.0,5,2,7,6,3,1,0,0,0,0,1,0,0,0,0,1,18355.3333333,5,3,5,5_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1223.572789066406,1223.572789066406,0.0 +3978,958,957,8,12,34,111,53,41,0,11314,0,99999,0,0,1,4,2,4,2.1,2866.86371016,0,0,39917.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,19008.0952381,5,3,5,5_0,9216.0,0,6716.0,2500,2,7,0.0,0.0,0.0,0,0,939.7039020029997,684.7929042808319,254.9109977221679 +3979,962,961,10,10,67,120,72,71,0,11320,0,0,0,0,0,7,0,2,1.5,2818.58146643,0,0,26492.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,0,1,17661.3333333,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029018,1398.5436979029018,0.0 3980,963,962,0,0,74,221,72,70,0,11321,0,0,0,0,0,1,0,1,1.0,4325.37554593,0,0,17480.0,5,3,1,2,1,0,0,0,0,1,0,0,0,1,0,0,17480.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 3981,974,973,15,16,47,112,52,71,0,11336,0,50,0,333,1,5,2,3,2.0,1401.04212904,0,0,34202.0,1,3,3,0,2,1,0,1,1,0,0,0,0,1,0,1,17101.0,5,3,5,5_1,25000.0,0,25000.0,0,3,19,121.0,23.3333333333,3.31,0,1,2891.4904869616844,2891.4904869616844,0.0 3982,987,986,2,21,53,300,77,60,0,11356,0,0,0,0,1,5,1,3,2.0,2441.23447774,1040,0,35412.0,5,1,0,0,4,1,0,0,1,0,0,0,0,0,1,0,17706.0,5,3,5,5_1,3500.0,0,0.0,3500,18,18,0.0,20.0,2.2,0,1,404.8086681746359,0.0,404.8086681746359 -3983,1018,1017,1,1,57,111,37,12,2,11390,0,0,484,0,1,3,1,2,1.5,2892.25008712,3126,11400,26164.0,1,1,9,7,2,2,0,1,0,0,0,1,0,0,2,0,17442.6666667,5,3,5,5_0,16232.0,0,0.0,16232,0,0,0.0,0.0,0.0,0,0,1655.086126010492,0.0,1655.086126010492 -3984,1040,1039,0,0,72,111,77,50,1,11416,0,0,0,0,0,5,0,2,1.5,1475.64937337,0,22500,26625.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17750.0,5,3,5,5_0,4000.0,0,0.0,4000,1,1,0.0,0.0,0.0,0,0,407.85759635546873,0.0,407.85759635546873 -3985,1046,1045,1,8,58,111,62,42,0,11427,0,100,0,0,1,3,0,1,1.0,3336.63318689,0,0,18609.0,1,1,9,7,1,1,1,1,0,0,0,1,0,0,0,1,18609.0,5,3,5,5_0,30000.0,0,30000.0,0,5,6,0.0,0.0,0.0,0,0,3058.9319726660156,3058.9319726660156,0.0 -3986,1048,1047,11,11,71,111,74,43,0,1143,0,0,0,0,0,4,0,1,1.0,2755.09638263,0,0,18031.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18031.0,5,3,5,5_0,10000.0,0,0.0,10000,11,11,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 +3983,1018,1017,1,1,57,111,37,12,2,11390,0,0,484,0,1,3,1,2,1.5,2892.25008712,3126,11400,26164.0,1,1,9,7,2,2,0,1,0,0,0,1,0,0,2,0,17442.6666667,5,3,5,5_0,16232.0,0,0.0,16232,0,0,0.0,0.0,0.0,0,0,1655.0861260104916,0.0,1655.0861260104916 +3984,1040,1039,0,0,72,111,77,50,1,11416,0,0,0,0,0,5,0,2,1.5,1475.64937337,0,22500,26625.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17750.0,5,3,5,5_0,4000.0,0,0.0,4000,1,1,0.0,0.0,0.0,0,0,407.8575963554687,0.0,407.8575963554687 +3985,1046,1045,1,8,58,111,62,42,0,11427,0,100,0,0,1,3,0,1,1.0,3336.63318689,0,0,18609.0,1,1,9,7,1,1,1,1,0,0,0,1,0,0,0,1,18609.0,5,3,5,5_0,30000.0,0,30000.0,0,5,6,0.0,0.0,0.0,0,0,3058.9319726660146,3058.9319726660146,0.0 +3986,1048,1047,11,11,71,111,74,43,0,1143,0,0,0,0,0,4,0,1,1.0,2755.09638263,0,0,18031.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18031.0,5,3,5,5_0,10000.0,0,0.0,10000,11,11,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 3987,1052,1051,0,0,79,400,71,70,0,11440,0,0,0,0,0,6,0,1,1.0,2412.18624945,0,0,17748.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,17748.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -3988,1061,1060,4,16,21,111,46,42,0,11451,0,0,300,243,2,3,0,2,1.5,3553.63301777,0,0,26432.0,4,3,7,5,3,1,0,1,0,0,1,0,0,1,1,0,17621.3333333,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.3099856695635,0.0,1111.3099856695635 -3989,1079,1078,11,11,71,111,77,70,0,11475,0,0,0,0,0,4,0,2,1.5,2929.40816508,0,0,26217.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,17478.0,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029023,1398.5436979029023,0.0 -3990,1084,1083,2,8,37,111,65,71,0,11483,0,380,0,293,1,3,2,4,2.1,3680.98183628,5720,0,35563.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,16934.761904799998,5,3,5,5_0,28226.0,0,28226.0,0,2,5,0.0,0.0,0.0,0,0,2878.047128682365,2878.047128682365,0.0 -3991,1100,1099,1,9,28,111,54,44,2,11505,0,300,0,550,2,5,1,3,1.8,2039.05775314,2340,6500,31776.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,0,2,17653.3333333,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886717,1019.6439908886717,0.0 +3988,1061,1060,4,16,21,111,46,42,0,11451,0,0,300,243,2,3,0,2,1.5,3553.63301777,0,0,26432.0,4,3,7,5,3,1,0,1,0,0,1,0,0,1,1,0,17621.3333333,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.309985669563,0.0,1111.309985669563 +3989,1079,1078,11,11,71,111,77,70,0,11475,0,0,0,0,0,4,0,2,1.5,2929.40816508,0,0,26217.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,17478.0,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029018,1398.5436979029018,0.0 +3990,1084,1083,2,8,37,111,65,71,0,11483,0,380,0,293,1,3,2,4,2.1,3680.98183628,5720,0,35563.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,16934.7619048,5,3,5,5_0,28226.0,0,28226.0,0,2,5,0.0,0.0,0.0,0,0,2878.0471286823645,2878.0471286823645,0.0 +3991,1100,1099,1,9,28,111,54,44,2,11505,0,300,0,550,2,5,1,3,1.8,2039.05775314,2340,6500,31776.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,0,2,17653.3333333,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886716,1019.6439908886716,0.0 3992,1114,1113,0,0,34,111,62,50,0,11520,0,0,0,63,1,1,0,1,1.0,4456.26882522,1040,0,18044.0,1,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,18044.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,70.0,5.56,0,0,0.0,0.0,0.0 -3993,1120,1119,4,6,82,111,72,70,0,1153,0,0,0,0,1,4,0,3,2.0,2161.20293672,0,0,37113.0,5,1,9,7,5,2,0,0,0,0,0,1,0,0,0,2,18556.5,5,3,5,5_0,8000.0,0,8000.0,0,16,16,0.0,0.0,0.0,0,0,815.7151927109375,815.7151927109375,0.0 -3994,1123,1122,6,13,64,111,77,50,0,11533,0,0,0,0,0,3,0,1,1.0,2677.24169125,0,0,18560.0,5,2,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18560.0,5,3,5,5_0,9500.0,0,0.0,9500,12,12,0.0,0.0,0.0,0,0,968.6617913442382,0.0,968.6617913442382 -3995,1124,1123,0,13,22,111,68,71,0,11536,0,0,120,245,2,2,1,2,1.5,3630.15296917,0,0,25930.0,1,3,8,7,2,1,0,1,0,0,0,1,0,0,1,0,17286.6666667,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.3099856695635,0.0,1111.3099856695635 -3996,1125,1124,12,14,71,112,75,70,0,11538,0,0,0,0,0,5,0,2,1.5,2077.32757956,0,0,28370.0,5,1,9,2,3,1,0,0,0,1,0,0,0,0,0,1,18913.3333333,5,3,5,5_0,5000.0,0,5000.0,0,9,15,0.0,0.0,0.0,0,0,509.82199544433587,509.82199544433587,0.0 -3997,1150,1149,10,10,73,111,75,50,0,1157,0,0,0,0,0,3,0,1,1.0,1644.79067892,1555,0,18877.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18877.0,5,3,5,5_0,3000.0,0,0.0,3000,4,10,0.0,0.0,0.0,0,0,305.89319726660153,0.0,305.89319726660153 -3998,1153,1152,18,18,83,111,77,60,0,11575,0,0,0,347,0,4,0,1,1.0,2869.92656303,0,0,18190.0,5,3,6,5,1,1,0,0,0,0,1,0,0,0,1,0,18190.0,5,3,5,5_0,8000.0,0,0.0,8000,19,19,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 +3993,1120,1119,4,6,82,111,72,70,0,1153,0,0,0,0,1,4,0,3,2.0,2161.20293672,0,0,37113.0,5,1,9,7,5,2,0,0,0,0,0,1,0,0,0,2,18556.5,5,3,5,5_0,8000.0,0,8000.0,0,16,16,0.0,0.0,0.0,0,0,815.7151927109373,815.7151927109373,0.0 +3994,1123,1122,6,13,64,111,77,50,0,11533,0,0,0,0,0,3,0,1,1.0,2677.24169125,0,0,18560.0,5,2,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18560.0,5,3,5,5_0,9500.0,0,0.0,9500,12,12,0.0,0.0,0.0,0,0,968.661791344238,0.0,968.661791344238 +3995,1124,1123,0,13,22,111,68,71,0,11536,0,0,120,245,2,2,1,2,1.5,3630.15296917,0,0,25930.0,1,3,8,7,2,1,0,1,0,0,0,1,0,0,1,0,17286.6666667,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.309985669563,0.0,1111.309985669563 +3996,1125,1124,12,14,71,112,75,70,0,11538,0,0,0,0,0,5,0,2,1.5,2077.32757956,0,0,28370.0,5,1,9,2,3,1,0,0,0,1,0,0,0,0,0,1,18913.3333333,5,3,5,5_0,5000.0,0,5000.0,0,9,15,0.0,0.0,0.0,0,0,509.8219954443358,509.8219954443358,0.0 +3997,1150,1149,10,10,73,111,75,50,0,1157,0,0,0,0,0,3,0,1,1.0,1644.79067892,1555,0,18877.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18877.0,5,3,5,5_0,3000.0,0,0.0,3000,4,10,0.0,0.0,0.0,0,0,305.8931972666015,0.0,305.8931972666015 +3998,1153,1152,18,18,83,111,77,60,0,11575,0,0,0,347,0,4,0,1,1.0,2869.92656303,0,0,18190.0,5,3,6,5,1,1,0,0,0,0,1,0,0,0,1,0,18190.0,5,3,5,5_0,8000.0,0,0.0,8000,19,19,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 3999,1171,1170,13,22,52,111,54,50,0,1160,0,220,150,0,2,6,1,3,2.0,1275.27599464,2681,0,37428.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,18714.0,5,3,5,5_0,681.0,0,681.0,0,8,11,183.0,40.0,3.3,0,1,69.43775577951854,69.43775577951854,0.0 -4000,1203,1202,4,4,46,221,55,50,0,11649,0,99999,0,0,1,5,1,2,1.5,1143.5479977,0,0,28432.0,1,1,1,3,2,2,0,1,0,1,0,0,0,0,0,2,18954.6666667,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.1769144496454,1561.1769144496454,0.0 -4001,1235,1234,21,21,82,112,78,71,0,11696,0,0,0,0,0,7,0,1,1.0,2845.30902112,2288,0,18855.0,5,1,7,1,1,1,0,0,0,1,0,0,0,0,1,0,18855.0,5,3,5,5_0,8000.0,0,0.0,8000,19,19,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 -4002,1246,1245,13,13,60,111,75,42,0,11706,0,0,0,0,0,3,0,1,1.0,2844.90251806,0,0,18020.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18020.0,5,3,5,5_0,9500.0,0,0.0,9500,12,12,0.0,0.0,0.0,0,0,968.6617913442382,0.0,968.6617913442382 +4000,1203,1202,4,4,46,221,55,50,0,11649,0,99999,0,0,1,5,1,2,1.5,1143.5479977,0,0,28432.0,1,1,1,3,2,2,0,1,0,1,0,0,0,0,0,2,18954.6666667,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.176914449645,1561.176914449645,0.0 +4001,1235,1234,21,21,82,112,78,71,0,11696,0,0,0,0,0,7,0,1,1.0,2845.30902112,2288,0,18855.0,5,1,7,1,1,1,0,0,0,1,0,0,0,0,1,0,18855.0,5,3,5,5_0,8000.0,0,0.0,8000,19,19,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 +4002,1246,1245,13,13,60,111,75,42,0,11706,0,0,0,0,0,3,0,1,1.0,2844.90251806,0,0,18020.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18020.0,5,3,5,5_0,9500.0,0,0.0,9500,12,12,0.0,0.0,0.0,0,0,968.661791344238,0.0,968.661791344238 4003,1249,1248,0,0,84,111,77,70,0,1171,0,0,0,0,0,2,0,1,1.0,3578.82404843,0,0,18710.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18710.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4004,1255,1254,0,0,34,111,64,31,1,11717,0,0,100,311,1,1,0,1,1.0,3090.94292319,0,15000,17667.0,1,4,9,7,1,1,0,1,0,0,0,1,0,0,1,0,17667.0,5,3,5,5_0,1000.0,0,0.0,1000,2,7,0.0,20.0,1.1,0,0,101.96439908886718,0.0,101.96439908886718 -4005,1263,1262,0,5,37,112,52,31,2,11734,0,400,0,0,2,7,4,6,2.7,1328.7060363,0,14000,46376.0,1,2,7,1,4,1,0,1,0,1,0,0,0,1,0,1,17176.2962963,5,3,5,5_0,15000.0,0,15000.0,0,4,5,0.0,31.3333333333,0.0,1,0,1529.4659863330078,1529.4659863330078,0.0 -4006,1276,1275,4,6,57,111,21,20,0,11752,0,0,0,0,2,3,1,3,2.0,3530.90011994,0,0,36364.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,1,0,18182.0,5,3,5,5_0,5000.0,0,0.0,5000,9,16,81.0,18.3333333333,3.3,0,1,509.82199544433587,0.0,509.82199544433587 -4007,1281,1280,0,6,26,112,64,50,0,1176,0,200,0,560,1,3,0,2,1.5,5547.13448025,0,0,28630.0,1,3,9,3,3,1,0,1,0,1,0,0,0,0,0,1,19086.6666667,5,3,5,5_0,32891.0,0,32891.0,0,3,3,0.0,37.0,3.31,1,1,3353.7110504319303,3353.7110504319303,0.0 -4008,1288,1287,5,6,54,111,43,20,0,11766,0,0,0,527,2,3,2,4,2.3,2476.4375386,0,0,42472.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,18466.0869565,5,3,5,5_0,17102.0,0,17102.0,0,4,6,14.8,15.0,0.0,0,0,1743.7951532178065,1743.7951532178065,0.0 -4009,1291,1290,4,4,37,111,38,31,0,11769,0,99999,0,0,3,5,2,4,2.3,2099.74805508,1560,0,42700.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,0,2,18565.217391299997,5,3,5,5_0,22000.0,0,22000.0,0,3,4,143.8,16.0,0.0,0,1,2243.216779955078,2243.216779955078,0.0 -4010,1295,1294,2,3,50,111,52,50,0,11776,0,0,100,258,3,4,2,3,2.0,2354.45495366,1560,0,38218.0,1,3,9,7,2,2,0,1,0,0,0,1,0,1,2,0,19109.0,5,3,5,5_0,18000.0,0,0.0,18000,2,5,159.6,40.0,3.3,0,1,1835.3591835996092,0.0,1835.3591835996092 -4011,1303,1302,15,15,63,111,75,41,0,11786,0,0,0,0,0,4,0,2,1.5,1606.82756795,0,0,28522.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,19014.6666667,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.85759635546873,305.89319726660153,101.96439908886718 -4012,1304,1303,0,10,24,111,55,44,0,11787,0,0,0,0,1,2,0,1,1.0,4387.17245288,0,0,17981.0,1,3,4,3,1,1,0,0,0,1,0,0,0,0,0,1,17981.0,5,3,5,5_0,20000.0,0,20000.0,0,1,10,0.0,20.0,2.2,0,1,2039.2879817773435,2039.2879817773435,0.0 -4013,1305,1304,1,2,38,112,56,50,2,1179,0,500,0,0,2,5,1,3,1.8,4972.89792924,2238,15000,32684.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,18157.777777799998,5,3,5,5_0,23000.0,0,23000.0,0,5,5,0.0,0.0,0.0,0,1,2345.181179043945,2345.181179043945,0.0 +4004,1255,1254,0,0,34,111,64,31,1,11717,0,0,100,311,1,1,0,1,1.0,3090.94292319,0,15000,17667.0,1,4,9,7,1,1,0,1,0,0,0,1,0,0,1,0,17667.0,5,3,5,5_0,1000.0,0,0.0,1000,2,7,0.0,20.0,1.1,0,0,101.96439908886717,0.0,101.96439908886717 +4005,1263,1262,0,5,37,112,52,31,2,11734,0,400,0,0,2,7,4,6,2.7,1328.7060363,0,14000,46376.0,1,2,7,1,4,1,0,1,0,1,0,0,0,1,0,1,17176.2962963,5,3,5,5_0,15000.0,0,15000.0,0,4,5,0.0,31.3333333333,0.0,1,0,1529.4659863330073,1529.4659863330073,0.0 +4006,1276,1275,4,6,57,111,21,20,0,11752,0,0,0,0,2,3,1,3,2.0,3530.90011994,0,0,36364.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,1,0,18182.0,5,3,5,5_0,5000.0,0,0.0,5000,9,16,81.0,18.3333333333,3.3,0,1,509.8219954443358,0.0,509.8219954443358 +4007,1281,1280,0,6,26,112,64,50,0,1176,0,200,0,560,1,3,0,2,1.5,5547.13448025,0,0,28630.0,1,3,9,3,3,1,0,1,0,1,0,0,0,0,0,1,19086.6666667,5,3,5,5_0,32891.0,0,32891.0,0,3,3,0.0,37.0,3.31,1,1,3353.71105043193,3353.71105043193,0.0 +4008,1288,1287,5,6,54,111,43,20,0,11766,0,0,0,527,2,3,2,4,2.3,2476.4375386,0,0,42472.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,18466.0869565,5,3,5,5_0,17102.0,0,17102.0,0,4,6,14.8,15.0,0.0,0,0,1743.7951532178063,1743.7951532178063,0.0 +4009,1291,1290,4,4,37,111,38,31,0,11769,0,99999,0,0,3,5,2,4,2.3,2099.74805508,1560,0,42700.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,0,2,18565.2173913,5,3,5,5_0,22000.0,0,22000.0,0,3,4,143.8,16.0,0.0,0,1,2243.2167799550775,2243.2167799550775,0.0 +4010,1295,1294,2,3,50,111,52,50,0,11776,0,0,100,258,3,4,2,3,2.0,2354.45495366,1560,0,38218.0,1,3,9,7,2,2,0,1,0,0,0,1,0,1,2,0,19109.0,5,3,5,5_0,18000.0,0,0.0,18000,2,5,159.6,40.0,3.3,0,1,1835.359183599609,0.0,1835.359183599609 +4011,1303,1302,15,15,63,111,75,41,0,11786,0,0,0,0,0,4,0,2,1.5,1606.82756795,0,0,28522.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,19014.6666667,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.8575963554687,305.8931972666015,101.96439908886717 +4012,1304,1303,0,10,24,111,55,44,0,11787,0,0,0,0,1,2,0,1,1.0,4387.17245288,0,0,17981.0,1,3,4,3,1,1,0,0,0,1,0,0,0,0,0,1,17981.0,5,3,5,5_0,20000.0,0,20000.0,0,1,10,0.0,20.0,2.2,0,1,2039.2879817773432,2039.2879817773432,0.0 +4013,1305,1304,1,2,38,112,56,50,2,1179,0,500,0,0,2,5,1,3,1.8,4972.89792924,2238,15000,32684.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,18157.7777778,5,3,5,5_0,23000.0,0,23000.0,0,5,5,0.0,0.0,0.0,0,1,2345.1811790439447,2345.1811790439447,0.0 4014,1308,1307,0,0,79,120,78,50,0,11793,0,0,0,0,0,4,0,1,1.0,2648.64041561,0,0,18292.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,18292.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4015,1323,1322,16,16,87,211,77,70,0,11811,0,0,0,0,0,4,0,2,1.5,1434.44704643,0,0,27468.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,18312.0,5,3,5,5_0,11231.0,0,11231.0,0,15,15,0.0,0.0,0.0,0,0,1145.1621661670672,1145.1621661670672,0.0 -4016,1336,1335,5,5,52,211,33,20,0,11830,0,0,0,0,1,1,0,1,1.0,1979.79321885,4145,0,18740.0,1,1,4,4,1,1,1,0,0,0,1,0,0,0,1,0,18740.0,5,3,5,5_0,10000.0,0,0.0,10000,5,7,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 -4017,1365,1364,4,14,36,111,43,31,0,11865,0,130,0,229,1,2,0,1,1.0,3279.29936957,0,0,17146.0,4,3,7,6,1,1,0,1,0,0,1,0,0,1,0,1,17146.0,5,3,5,5_0,7000.0,0,7000.0,0,6,14,0.0,10.0,3.3,0,1,713.7507936220703,713.7507936220703,0.0 +4015,1323,1322,16,16,87,211,77,70,0,11811,0,0,0,0,0,4,0,2,1.5,1434.44704643,0,0,27468.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,18312.0,5,3,5,5_0,11231.0,0,11231.0,0,15,15,0.0,0.0,0.0,0,0,1145.162166167067,1145.162166167067,0.0 +4016,1336,1335,5,5,52,211,33,20,0,11830,0,0,0,0,1,1,0,1,1.0,1979.79321885,4145,0,18740.0,1,1,4,4,1,1,1,0,0,0,1,0,0,0,1,0,18740.0,5,3,5,5_0,10000.0,0,0.0,10000,5,7,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 +4017,1365,1364,4,14,36,111,43,31,0,11865,0,130,0,229,1,2,0,1,1.0,3279.29936957,0,0,17146.0,4,3,7,6,1,1,0,1,0,0,1,0,0,1,0,1,17146.0,5,3,5,5_0,7000.0,0,7000.0,0,6,14,0.0,10.0,3.3,0,1,713.7507936220701,713.7507936220701,0.0 4018,1371,1370,0,0,76,111,78,70,0,11874,0,0,0,258,0,3,0,1,1.0,3587.81243628,0,0,17570.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,17570.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4019,1374,1373,0,13,25,112,63,70,0,11878,0,0,0,680,1,2,0,2,1.5,2030.1242805,0,0,25578.0,1,3,10,4,3,1,0,0,0,0,1,0,0,0,0,1,17052.0,5,3,5,5_0,5000.0,0,5000.0,0,10,10,0.0,12.0,3.31,0,1,509.82199544433587,509.82199544433587,0.0 -4020,1380,1379,6,7,55,111,45,50,0,11888,0,400,0,630,2,4,0,2,1.5,2745.95323723,2974,0,27542.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,0,1,18361.3333333,5,3,5,5_0,12000.0,0,12000.0,0,2,4,152.0,60.0,3.31,0,1,1223.5727890664061,1223.5727890664061,0.0 -4021,1403,1402,1,2,28,112,43,31,2,11924,0,50,0,0,2,3,1,3,1.8,3157.16711191,0,16500,33046.0,1,3,7,4,4,1,0,1,0,0,1,0,0,1,0,1,18358.888888900005,5,3,5,5_0,6516.0,0,6516.0,0,1,4,46.0,13.333333333299999,3.3,0,1,664.4000244630585,664.4000244630585,0.0 -4022,1406,1405,14,17,56,111,54,60,0,1193,0,0,0,0,1,3,0,1,1.0,2957.39203296,780,0,17939.0,1,4,9,7,1,1,0,0,0,0,0,1,0,0,0,1,17939.0,5,3,5,5_0,6000.0,0,6000.0,0,4,14,46.0,30.0,3.3,0,1,611.7863945332031,611.7863945332031,0.0 +4019,1374,1373,0,13,25,112,63,70,0,11878,0,0,0,680,1,2,0,2,1.5,2030.1242805,0,0,25578.0,1,3,10,4,3,1,0,0,0,0,1,0,0,0,0,1,17052.0,5,3,5,5_0,5000.0,0,5000.0,0,10,10,0.0,12.0,3.31,0,1,509.8219954443358,509.8219954443358,0.0 +4020,1380,1379,6,7,55,111,45,50,0,11888,0,400,0,630,2,4,0,2,1.5,2745.95323723,2974,0,27542.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,0,1,18361.3333333,5,3,5,5_0,12000.0,0,12000.0,0,2,4,152.0,60.0,3.31,0,1,1223.572789066406,1223.572789066406,0.0 +4021,1403,1402,1,2,28,112,43,31,2,11924,0,50,0,0,2,3,1,3,1.8,3157.16711191,0,16500,33046.0,1,3,7,4,4,1,0,1,0,0,1,0,0,1,0,1,18358.8888889,5,3,5,5_0,6516.0,0,6516.0,0,1,4,46.0,13.3333333333,3.3,0,1,664.4000244630585,664.4000244630585,0.0 +4022,1406,1405,14,17,56,111,54,60,0,1193,0,0,0,0,1,3,0,1,1.0,2957.39203296,780,0,17939.0,1,4,9,7,1,1,0,0,0,0,0,1,0,0,0,1,17939.0,5,3,5,5_0,6000.0,0,6000.0,0,4,14,46.0,30.0,3.3,0,1,611.786394533203,611.786394533203,0.0 4023,1411,1410,8,11,52,400,13,50,0,11935,0,0,0,0,2,5,0,2,1.5,2292.41415571,0,0,25367.0,1,1,0,0,5,1,0,0,1,0,0,0,0,0,0,1,16911.3333333,5,3,5,5_1,5000.0,0,5000.0,0,2,12,51.0,10.0,3.3,0,1,578.298097392337,578.298097392337,0.0 -4024,1419,1418,2,2,43,111,64,50,0,11945,0,60,0,0,2,5,2,4,2.1,2997.5129596,3536,0,36758.0,1,2,8,7,4,2,0,0,0,0,0,1,0,0,0,2,17503.809523800002,5,3,5,5_0,17681.0,0,17681.0,0,2,2,0.0,0.0,0.0,0,1,1802.8325402902608,1802.8325402902608,0.0 -4025,1421,1420,0,35,59,120,78,70,0,11947,0,0,0,0,0,5,0,2,1.5,3162.3164245000003,1560,0,28466.0,5,1,0,2,3,2,0,0,0,1,0,0,0,0,0,2,18977.3333333,5,3,5,5_0,3000.0,0,3000.0,0,18,18,0.0,0.0,0.0,0,0,305.89319726660153,305.89319726660153,0.0 -4026,1438,1437,3,3,37,111,62,31,0,11973,0,0,100,0,1,4,0,1,1.0,2181.65610673,0,0,18586.0,1,2,6,5,1,2,0,0,0,0,1,0,0,0,1,1,18586.0,5,3,5,5_0,33100.0,0,2100.0,31000,2,5,0.0,20.0,3.3,1,0,3375.0216098415035,214.1252380866211,3160.8963717548827 +4024,1419,1418,2,2,43,111,64,50,0,11945,0,60,0,0,2,5,2,4,2.1,2997.5129596,3536,0,36758.0,1,2,8,7,4,2,0,0,0,0,0,1,0,0,0,2,17503.8095238,5,3,5,5_0,17681.0,0,17681.0,0,2,2,0.0,0.0,0.0,0,1,1802.83254029026,1802.83254029026,0.0 +4025,1421,1420,0,35,59,120,78,70,0,11947,0,0,0,0,0,5,0,2,1.5,3162.3164245,1560,0,28466.0,5,1,0,2,3,2,0,0,0,1,0,0,0,0,0,2,18977.3333333,5,3,5,5_0,3000.0,0,3000.0,0,18,18,0.0,0.0,0.0,0,0,305.8931972666015,305.8931972666015,0.0 +4026,1438,1437,3,3,37,111,62,31,0,11973,0,0,100,0,1,4,0,1,1.0,2181.65610673,0,0,18586.0,1,2,6,5,1,2,0,0,0,0,1,0,0,0,1,1,18586.0,5,3,5,5_0,33100.0,0,2100.0,31000,2,5,0.0,20.0,3.3,1,0,3375.021609841503,214.12523808662104,3160.896371754882 4027,1453,1452,9,9,53,112,52,50,0,11997,0,280,0,710,1,5,3,4,2.5,899.949697144,3309,0,45830.0,1,3,6,0,2,1,0,1,1,0,0,0,0,1,0,1,18332.0,5,3,5,5_1,26000.0,0,26000.0,0,4,12,337.7,32.5,3.3,0,1,3007.150106440152,3007.150106440152,0.0 4028,1473,1472,9,23,63,400,77,70,0,1202,0,0,0,0,0,5,0,2,1.5,1577.93023404,1404,0,27248.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,18165.3333333,5,3,5,5_1,37000.0,0,22000.0,15000,4,17,0.0,0.0,0.0,0,0,4279.405920703293,2544.5116285262825,1734.8942921770108 -4029,1493,1492,4,5,58,111,56,50,0,12049,0,200,0,250,3,4,1,3,2.0,1371.64462999,78,0,36200.0,1,3,8,7,4,1,0,1,0,0,0,1,0,0,0,1,18100.0,5,3,5,5_0,7000.0,0,7000.0,0,3,6,397.8,86.6666666667,3.3,0,0,713.7507936220703,713.7507936220703,0.0 -4030,1494,1493,2,14,28,111,52,43,0,12051,0,25,70,125,2,3,2,4,2.1,2427.61739225,0,0,37760.0,1,3,6,4,4,2,0,1,0,0,1,0,0,1,1,1,17980.952381,5,3,5,5_0,20000.0,0,10000.0,10000,4,16,49.0,15.0,3.3,0,1,2039.2879817773435,1019.6439908886717,1019.6439908886717 +4029,1493,1492,4,5,58,111,56,50,0,12049,0,200,0,250,3,4,1,3,2.0,1371.64462999,78,0,36200.0,1,3,8,7,4,1,0,1,0,0,0,1,0,0,0,1,18100.0,5,3,5,5_0,7000.0,0,7000.0,0,3,6,397.8,86.6666666667,3.3,0,0,713.7507936220701,713.7507936220701,0.0 +4030,1494,1493,2,14,28,111,52,43,0,12051,0,25,70,125,2,3,2,4,2.1,2427.61739225,0,0,37760.0,1,3,6,4,4,2,0,1,0,0,1,0,0,1,1,1,17980.952381,5,3,5,5_0,20000.0,0,10000.0,10000,4,16,49.0,15.0,3.3,0,1,2039.2879817773432,1019.6439908886716,1019.6439908886716 4031,1502,1501,5,10,34,112,47,50,0,12060,0,100249,0,0,2,6,2,4,2.1,2243.92722369,1144,0,39419.0,1,1,6,0,4,3,0,1,1,0,0,0,0,0,0,3,18770.952381,5,3,5,5_1,20000.0,0,20000.0,0,3,5,37.0,27.5,3.31,0,1,2313.192389569348,2313.192389569348,0.0 -4032,1505,1504,6,6,67,111,77,70,0,12064,0,0,0,0,0,6,0,1,1.0,1545.80279811,0,0,18943.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18943.0,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,0.0,0.0,0,0,1835.3591835996092,0.0,1835.3591835996092 -4033,1513,1512,1,1,38,111,52,50,1,12073,0,40,0,0,1,4,1,2,1.5,2006.62632975,0,13152,25455.0,1,3,6,4,2,1,0,1,0,0,1,0,0,0,0,1,16970.0,5,3,5,5_0,12901.0,0,12901.0,0,1,1,0.0,3.0,0.0,1,0,1315.4427126454755,1315.4427126454755,0.0 +4032,1505,1504,6,6,67,111,77,70,0,12064,0,0,0,0,0,6,0,1,1.0,1545.80279811,0,0,18943.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18943.0,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,0.0,0.0,0,0,1835.359183599609,0.0,1835.359183599609 +4033,1513,1512,1,1,38,111,52,50,1,12073,0,40,0,0,1,4,1,2,1.5,2006.62632975,0,13152,25455.0,1,3,6,4,2,1,0,1,0,0,1,0,0,0,0,1,16970.0,5,3,5,5_0,12901.0,0,12901.0,0,1,1,0.0,3.0,0.0,1,0,1315.4427126454752,1315.4427126454752,0.0 4034,1524,1523,0,0,48,111,52,50,0,12091,0,0,0,0,1,3,1,2,1.5,2632.82674714,0,0,28309.0,1,1,10,8,2,0,0,0,0,0,0,0,1,0,0,0,18872.6666667,5,3,5,5_0,0.0,0,0.0,0,0,0,57.0,50.0,5.57,0,0,0.0,0.0,0.0 4035,1542,1541,4,4,90,300,78,71,0,1211,0,0,0,0,0,5,1,2,1.5,2844.08094228,0,0,27851.0,5,1,0,0,2,1,0,0,1,0,0,0,0,0,0,1,18567.3333333,5,3,5,5_1,1000.0,0,1000.0,0,5,5,0.0,0.0,0.0,0,0,115.65961947846739,115.65961947846739,0.0 -4036,1552,1551,18,20,53,112,62,50,0,12123,0,400,0,0,1,7,0,1,1.0,2593.24049687,2392,0,18878.0,1,1,9,2,1,1,0,1,0,1,0,0,0,0,0,1,18878.0,5,3,5,5_0,25000.0,0,25000.0,0,12,16,79.0,45.0,3.3,1,0,2549.10997722168,2549.10997722168,0.0 -4037,1553,1552,21,26,61,111,77,50,0,12124,0,0,0,0,0,5,0,1,1.0,4493.860906600001,3709,0,18905.0,5,1,10,8,1,2,0,0,0,0,0,0,1,0,2,0,18905.0,5,3,5,5_0,5000.0,0,0.0,5000,17,21,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 -4038,1556,1555,1,5,37,111,54,41,0,12128,0,320,0,273,1,3,1,2,1.3,3537.2252038,2080,0,22471.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,17285.384615400002,5,3,5,5_0,22000.0,0,22000.0,0,7,7,80.0,40.0,3.3,0,1,2243.216779955078,2243.216779955078,0.0 +4036,1552,1551,18,20,53,112,62,50,0,12123,0,400,0,0,1,7,0,1,1.0,2593.24049687,2392,0,18878.0,1,1,9,2,1,1,0,1,0,1,0,0,0,0,0,1,18878.0,5,3,5,5_0,25000.0,0,25000.0,0,12,16,79.0,45.0,3.3,1,0,2549.109977221679,2549.109977221679,0.0 +4037,1553,1552,21,26,61,111,77,50,0,12124,0,0,0,0,0,5,0,1,1.0,4493.8609066,3709,0,18905.0,5,1,10,8,1,2,0,0,0,0,0,0,1,0,2,0,18905.0,5,3,5,5_0,5000.0,0,0.0,5000,17,21,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 +4038,1556,1555,1,5,37,111,54,41,0,12128,0,320,0,273,1,3,1,2,1.3,3537.2252038,2080,0,22471.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,17285.3846154,5,3,5,5_0,22000.0,0,22000.0,0,7,7,80.0,40.0,3.3,0,1,2243.2167799550775,2243.2167799550775,0.0 4039,1561,1560,2,12,49,111,46,41,0,12138,0,0,150,740,2,4,1,3,2.0,3308.24244454,2340,0,36124.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,1,1,18062.0,5,3,5,5_0,681.0,0,681.0,0,8,11,183.0,40.0,3.3,0,1,69.43775577951854,69.43775577951854,0.0 -4040,1565,1564,1,1,27,111,64,50,2,12143,0,200,0,380,2,3,1,3,1.8,2973.2257197,2028,5000,32795.0,1,3,10,8,4,1,1,1,0,0,0,0,1,0,0,1,18219.4444444,5,3,5,5_0,6787.0,0,6787.0,0,1,1,0.0,0.0,0.0,0,1,692.0323766161415,692.0323766161415,0.0 -4041,1570,1569,2,9,29,112,63,31,0,12149,0,400,0,700,2,3,1,3,1.8,8231.57735585,3228,0,32080.0,1,3,9,2,4,1,0,1,0,1,0,0,0,0,0,1,17822.222222200002,5,3,5,5_0,17343.0,0,17343.0,0,1,11,371.4,135.0,3.31,0,1,1768.3685733982236,1768.3685733982236,0.0 -4042,1583,1582,2,2,61,400,54,31,0,1217,0,300,0,0,2,5,1,3,2.0,1489.1371871,4148,0,35213.0,1,1,0,0,4,3,1,0,1,0,0,0,0,0,0,3,17606.5,5,3,5,5_1,23880.0,0,23880.0,0,0,2,467.0,13.333333333299999,3.3,0,1,2761.951713145801,2761.951713145801,0.0 +4040,1565,1564,1,1,27,111,64,50,2,12143,0,200,0,380,2,3,1,3,1.8,2973.2257197,2028,5000,32795.0,1,3,10,8,4,1,1,1,0,0,0,0,1,0,0,1,18219.4444444,5,3,5,5_0,6787.0,0,6787.0,0,1,1,0.0,0.0,0.0,0,1,692.0323766161414,692.0323766161414,0.0 +4041,1570,1569,2,9,29,112,63,31,0,12149,0,400,0,700,2,3,1,3,1.8,8231.57735585,3228,0,32080.0,1,3,9,2,4,1,0,1,0,1,0,0,0,0,0,1,17822.2222222,5,3,5,5_0,17343.0,0,17343.0,0,1,11,371.4,135.0,3.31,0,1,1768.368573398223,1768.368573398223,0.0 +4042,1583,1582,2,2,61,400,54,31,0,1217,0,300,0,0,2,5,1,3,2.0,1489.1371871,4148,0,35213.0,1,1,0,0,4,3,1,0,1,0,0,0,0,0,0,3,17606.5,5,3,5,5_1,23880.0,0,23880.0,0,0,2,467.0,13.3333333333,3.3,0,1,2761.951713145801,2761.951713145801,0.0 4043,1597,1596,8,8,64,112,78,50,0,12195,0,0,0,0,1,4,0,2,1.5,2479.47525431,0,0,28614.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,0,1,19076.0,5,3,5,5_1,14818.0,0,14818.0,0,8,8,0.0,0.0,0.0,1,0,1713.8442414319297,1713.8442414319297,0.0 -4044,1606,1605,2,11,32,111,52,50,0,12209,0,0,40,497,2,4,1,3,1.8,2621.26321369,2600,0,33120.0,1,3,9,7,4,2,1,0,0,0,0,1,0,0,1,1,18400.0,5,3,5,5_0,20164.0,0,15164.0,5000,6,11,283.0,60.0,3.31,0,1,2056.0101432279175,1546.188147783582,509.82199544433587 +4044,1606,1605,2,11,32,111,52,50,0,12209,0,0,40,497,2,4,1,3,1.8,2621.26321369,2600,0,33120.0,1,3,9,7,4,2,1,0,0,0,0,1,0,0,1,1,18400.0,5,3,5,5_0,20164.0,0,15164.0,5000,6,11,283.0,60.0,3.31,0,1,2056.0101432279175,1546.1881477835816,509.8219954443358 4045,1615,1614,5,14,67,112,77,71,0,12224,0,0,0,0,1,6,1,2,1.5,3089.56759766,780,0,27819.0,5,1,7,0,2,2,0,0,1,0,0,0,0,0,1,1,18546.0,5,3,5,5_1,3300.0,0,300.0,3000,8,12,0.0,10.0,1.1,0,0,381.6767442789424,34.69788584354021,346.9788584354022 4046,1628,1627,2,2,57,111,38,31,0,12242,0,99999,0,0,2,3,0,2,1.5,3849.65244477,4783,0,28425.0,1,1,9,7,3,2,1,1,0,0,0,1,0,0,0,2,18950.0,5,3,5,5_0,0.0,0,0.0,0,1,0,0.0,20.0,2.22,0,1,0.0,0.0,0.0 -4047,1652,1651,3,7,36,112,11,42,0,12283,0,300,0,0,2,6,2,4,2.1,3417.77567147,231,0,38462.0,1,4,8,0,4,1,0,1,1,0,0,0,0,0,0,1,18315.238095200002,5,3,5,5_1,40000.0,0,40000.0,0,7,9,324.0,25.0,3.3,0,1,4626.384779138696,4626.384779138696,0.0 -4048,1655,1654,11,11,79,111,78,50,0,12287,0,0,0,0,0,6,0,1,1.0,1764.62526534,2496,0,18679.0,5,1,3,4,1,1,0,0,0,0,1,0,0,0,1,0,18679.0,5,3,5,5_0,2600.0,0,0.0,2600,10,11,0.0,0.0,0.0,0,0,265.10743763105467,0.0,265.10743763105467 -4049,1657,1656,9,10,62,111,56,50,0,12289,0,0,0,0,1,3,0,1,1.0,1266.58065544,1561,0,18665.0,1,1,7,5,1,1,1,0,0,0,1,0,0,0,1,0,18665.0,5,3,5,5_0,12000.0,0,0.0,12000,9,11,47.6,32.0,3.3,1,1,1223.5727890664061,0.0,1223.5727890664061 +4047,1652,1651,3,7,36,112,11,42,0,12283,0,300,0,0,2,6,2,4,2.1,3417.77567147,231,0,38462.0,1,4,8,0,4,1,0,1,1,0,0,0,0,0,0,1,18315.2380952,5,3,5,5_1,40000.0,0,40000.0,0,7,9,324.0,25.0,3.3,0,1,4626.384779138696,4626.384779138696,0.0 +4048,1655,1654,11,11,79,111,78,50,0,12287,0,0,0,0,0,6,0,1,1.0,1764.62526534,2496,0,18679.0,5,1,3,4,1,1,0,0,0,0,1,0,0,0,1,0,18679.0,5,3,5,5_0,2600.0,0,0.0,2600,10,11,0.0,0.0,0.0,0,0,265.1074376310546,0.0,265.1074376310546 +4049,1657,1656,9,10,62,111,56,50,0,12289,0,0,0,0,1,3,0,1,1.0,1266.58065544,1561,0,18665.0,1,1,7,5,1,1,1,0,0,0,1,0,0,0,1,0,18665.0,5,3,5,5_0,12000.0,0,0.0,12000,9,11,47.6,32.0,3.3,1,1,1223.572789066406,0.0,1223.572789066406 4050,1679,1678,0,0,50,111,56,50,0,12317,0,0,0,420,1,2,0,1,1.0,2551.19127801,0,0,17691.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,17691.0,5,3,5,5_0,0.0,0,0.0,0,0,0,22.5,40.0,5.5,0,0,0.0,0.0,0.0 4051,1718,1717,2,8,36,112,69,71,0,12368,0,950,0,0,2,6,3,5,2.4,4169.17642558,3692,0,45319.0,1,2,8,0,4,2,0,1,1,0,0,0,0,1,0,2,18882.9166667,5,3,5,5_1,15000.0,0,15000.0,0,5,9,190.0,30.0,0.0,0,1,1734.8942921770108,1734.8942921770108,0.0 4052,1719,1718,6,17,36,400,48,60,0,12371,0,600,500,0,2,7,3,5,2.4,2468.45534755,0,0,42298.0,2,2,0,0,4,3,0,0,1,0,0,0,0,1,2,1,17624.1666667,5,3,5,5_1,32108.0,0,20000.0,12108,8,12,143.0,16.0,3.3,0,1,3713.599062214631,2313.192389569348,1400.4066726452832 -4053,1757,1756,3,3,54,211,42,10,0,1242,0,0,180,0,1,3,0,1,1.0,2060.84373902,1678,0,18498.0,1,1,4,4,1,1,0,1,0,0,1,0,0,0,1,0,18498.0,5,3,5,5_0,10000.0,0,0.0,10000,5,7,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 +4053,1757,1756,3,3,54,211,42,10,0,1242,0,0,180,0,1,3,0,1,1.0,2060.84373902,1678,0,18498.0,1,1,4,4,1,1,0,1,0,0,1,0,0,0,1,0,18498.0,5,3,5,5_0,10000.0,0,0.0,10000,5,7,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 4054,1763,1762,2,2,69,400,11,70,0,12428,0,0,0,0,1,4,0,2,1.5,1821.19053097,7111,0,27009.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,18006.0,5,3,5,5_1,50000.0,0,40000.0,10000,7,8,0.0,0.0,0.0,1,0,5782.980973923369,4626.384779138696,1156.596194784674 -4055,1774,1773,1,6,37,111,37,31,2,12444,0,0,0,0,1,9,4,6,2.7,2681.17334785,10954,11000,50321.0,1,2,8,7,4,2,1,0,0,0,0,1,0,0,0,2,18637.407407400002,5,3,5,5_0,12000.0,0,12000.0,0,3,8,120.0,20.0,3.33,0,1,1223.5727890664061,1223.5727890664061,0.0 -4056,1781,1780,5,5,73,111,78,50,0,12455,0,0,0,0,0,4,0,2,1.5,1262.14978971,1856,0,26358.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17572.0,5,3,5,5_0,8500.0,0,0.0,8500,3,3,0.0,0.0,0.0,0,0,866.697392255371,0.0,866.697392255371 +4055,1774,1773,1,6,37,111,37,31,2,12444,0,0,0,0,1,9,4,6,2.7,2681.17334785,10954,11000,50321.0,1,2,8,7,4,2,1,0,0,0,0,1,0,0,0,2,18637.4074074,5,3,5,5_0,12000.0,0,12000.0,0,3,8,120.0,20.0,3.33,0,1,1223.572789066406,1223.572789066406,0.0 +4056,1781,1780,5,5,73,111,78,50,0,12455,0,0,0,0,0,4,0,2,1.5,1262.14978971,1856,0,26358.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17572.0,5,3,5,5_0,8500.0,0,0.0,8500,3,3,0.0,0.0,0.0,0,0,866.6973922553709,0.0,866.6973922553709 4057,1789,1788,0,0,29,111,21,50,0,12464,0,0,0,0,1,4,0,1,1.0,3464.00225966,0,0,18588.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18588.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4058,1791,1790,12,12,82,111,75,70,0,12466,0,0,0,0,0,4,0,1,1.0,4174.46913718,1945,0,19016.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,19016.0,5,3,5,5_0,2600.0,0,0.0,2600,10,11,0.0,0.0,0.0,0,0,265.10743763105467,0.0,265.10743763105467 +4058,1791,1790,12,12,82,111,75,70,0,12466,0,0,0,0,0,4,0,1,1.0,4174.46913718,1945,0,19016.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,19016.0,5,3,5,5_0,2600.0,0,0.0,2600,10,11,0.0,0.0,0.0,0,0,265.1074376310546,0.0,265.1074376310546 4059,1808,1807,0,0,84,111,74,70,0,12488,0,0,0,0,0,4,0,2,1.5,1861.87469214,0,0,27415.0,5,1,8,7,3,0,0,0,0,0,0,1,0,0,0,0,18276.6666667,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4060,1813,1812,7,11,75,221,71,71,0,12495,0,0,0,0,0,5,0,1,1.0,7390.39566089,3050,0,17143.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,17143.0,5,3,5,5_0,8986.0,0,0.0,8986,6,11,0.0,0.0,0.0,0,0,916.2520902125605,0.0,916.2520902125605 -4061,1815,1814,1,2,43,111,62,71,0,12497,0,0,0,0,2,5,3,5,2.4,2910.66943159,1300,0,40681.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,0,1,16950.4166667,5,3,5,5_0,23700.0,0,23700.0,0,2,2,0.0,8.0,3.3,0,0,2416.556258406152,2416.556258406152,0.0 -4062,1849,1848,2,5,43,112,52,42,0,12543,0,300,0,442,1,3,0,1,1.0,4848.07554493,3484,0,17346.0,1,3,8,3,1,1,0,1,0,1,0,0,0,1,0,1,17346.0,5,3,5,5_0,17000.0,0,17000.0,0,2,5,0.0,0.0,0.0,0,1,1733.394784510742,1733.394784510742,0.0 -4063,1854,1853,11,18,61,111,78,50,0,1255,0,0,0,0,0,3,0,2,1.5,1168.16230749,2080,0,27751.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,18500.6666667,5,3,5,5_0,3000.0,0,3000.0,0,18,18,0.0,0.0,0.0,0,0,305.89319726660153,305.89319726660153,0.0 +4060,1813,1812,7,11,75,221,71,71,0,12495,0,0,0,0,0,5,0,1,1.0,7390.39566089,3050,0,17143.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,17143.0,5,3,5,5_0,8986.0,0,0.0,8986,6,11,0.0,0.0,0.0,0,0,916.2520902125603,0.0,916.2520902125603 +4061,1815,1814,1,2,43,111,62,71,0,12497,0,0,0,0,2,5,3,5,2.4,2910.66943159,1300,0,40681.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,0,1,16950.4166667,5,3,5,5_0,23700.0,0,23700.0,0,2,2,0.0,8.0,3.3,0,0,2416.5562584061513,2416.5562584061513,0.0 +4062,1849,1848,2,5,43,112,52,42,0,12543,0,300,0,442,1,3,0,1,1.0,4848.07554493,3484,0,17346.0,1,3,8,3,1,1,0,1,0,1,0,0,0,1,0,1,17346.0,5,3,5,5_0,17000.0,0,17000.0,0,2,5,0.0,0.0,0.0,0,1,1733.3947845107418,1733.3947845107418,0.0 +4063,1854,1853,11,18,61,111,78,50,0,1255,0,0,0,0,0,3,0,2,1.5,1168.16230749,2080,0,27751.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,18500.6666667,5,3,5,5_0,3000.0,0,3000.0,0,18,18,0.0,0.0,0.0,0,0,305.8931972666015,305.8931972666015,0.0 4064,1890,1889,3,4,46,400,11,43,0,12603,0,150,28,0,2,4,2,4,2.1,4021.54051987,1820,0,36090.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,17185.7142857,5,3,5,5_1,15000.0,0,13000.0,2000,3,4,82.6,20.0,3.3,0,1,1734.8942921770108,1503.575053220076,231.31923895693478 -4065,1896,1895,5,10,50,111,46,60,0,1261,0,200,0,299,3,4,1,3,2.0,888.309701023,1040,0,37110.0,1,3,6,4,4,3,0,1,0,0,1,0,0,0,1,2,18555.0,5,3,5,5_0,30000.0,0,20000.0,10000,8,9,87.2,23.5,3.3,0,1,3058.9319726660156,2039.2879817773435,1019.6439908886717 +4065,1896,1895,5,10,50,111,46,60,0,1261,0,200,0,299,3,4,1,3,2.0,888.309701023,1040,0,37110.0,1,3,6,4,4,3,0,1,0,0,1,0,0,0,1,2,18555.0,5,3,5,5_0,30000.0,0,20000.0,10000,8,9,87.2,23.5,3.3,0,1,3058.9319726660146,2039.2879817773432,1019.6439908886716 4066,1900,1899,2,3,44,120,64,50,0,12616,0,650,0,0,3,3,1,3,2.0,1204.32148943,2704,0,36872.0,1,1,0,0,4,3,0,1,1,0,0,0,0,0,0,3,18436.0,5,3,5,5_1,6859.0,0,6859.0,0,1,11,304.0,38.6666666667,3.3,0,1,793.3093300028078,793.3093300028078,0.0 -4067,1901,1900,10,10,70,111,75,60,0,12617,0,0,0,794,0,3,0,2,1.5,4043.63111976,1560,0,26600.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17733.3333333,5,3,5,5_0,12000.0,0,0.0,12000,4,10,0.0,0.0,0.0,0,0,1223.5727890664061,0.0,1223.5727890664061 -4068,1902,1901,0,0,28,111,55,10,0,12618,0,0,0,610,1,3,0,1,1.0,4624.4992962999995,0,0,16888.0,3,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16888.0,5,3,5,5_0,0.0,0,0.0,0,0,0,21.0,20.0,2.23,0,0,0.0,0.0,0.0 -4069,1908,1907,1,14,44,111,47,71,2,12628,0,0,0,91,2,3,0,2,1.5,3236.35618855,0,2300,26005.0,1,3,10,8,3,1,0,0,0,0,0,0,1,1,1,0,17336.6666667,5,3,5,5_0,10000.0,0,0.0,10000,5,5,0.0,80.0,5.56,0,0,1019.6439908886717,0.0,1019.6439908886717 +4067,1901,1900,10,10,70,111,75,60,0,12617,0,0,0,794,0,3,0,2,1.5,4043.63111976,1560,0,26600.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17733.3333333,5,3,5,5_0,12000.0,0,0.0,12000,4,10,0.0,0.0,0.0,0,0,1223.572789066406,0.0,1223.572789066406 +4068,1902,1901,0,0,28,111,55,10,0,12618,0,0,0,610,1,3,0,1,1.0,4624.4992963,0,0,16888.0,3,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16888.0,5,3,5,5_0,0.0,0,0.0,0,0,0,21.0,20.0,2.23,0,0,0.0,0.0,0.0 +4069,1908,1907,1,14,44,111,47,71,2,12628,0,0,0,91,2,3,0,2,1.5,3236.35618855,0,2300,26005.0,1,3,10,8,3,1,0,0,0,0,0,0,1,1,1,0,17336.6666667,5,3,5,5_0,10000.0,0,0.0,10000,5,5,0.0,80.0,5.56,0,0,1019.6439908886716,0.0,1019.6439908886716 4070,1917,1916,0,5,22,300,67,42,2,12639,0,400,0,165,2,3,1,3,1.8,3264.73415891,0,10900,30927.0,1,3,0,0,4,1,0,1,1,0,0,0,0,1,0,1,17181.6666667,5,3,5,5_1,12000.0,0,12000.0,0,2,11,37.0,10.0,3.3,0,1,1387.9154337416087,1387.9154337416087,0.0 4071,1950,1949,1,32,54,400,62,50,2,12681,0,300,0,0,3,5,1,3,2.0,1401.12349003,7422,4500,33961.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,1,2,16980.5,5,3,5,5_1,13153.0,0,6859.0,6294,16,34,534.1,73.3333333333,0.0,0,1,1521.2709750002816,793.3093300028078,727.9616449974737 -4072,1964,1963,1,5,30,111,46,50,2,1270,0,0,0,249,1,4,0,1,1.0,3420.65944455,0,11000,18311.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18311.0,5,3,5,5_0,10716.0,0,10716.0,0,1,5,0.0,0.0,0.0,1,0,1092.6505006363009,1092.6505006363009,0.0 +4072,1964,1963,1,5,30,111,46,50,2,1270,0,0,0,249,1,4,0,1,1.0,3420.65944455,0,11000,18311.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18311.0,5,3,5,5_0,10716.0,0,10716.0,0,1,5,0.0,0.0,0.0,1,0,1092.6505006363004,1092.6505006363004,0.0 4073,1967,1966,1,1,56,300,65,60,1,12702,0,200,0,0,2,5,1,3,2.0,1106.73190405,6475,12000,34855.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17427.5,5,3,5,5_1,32144.0,0,32144.0,0,1,2,304.4,40.0,3.3,0,1,3717.762808515856,3717.762808515856,0.0 -4074,1983,1982,6,6,52,111,85,41,0,12721,0,0,0,0,0,5,1,3,2.0,2215.64367151,2600,0,34199.0,5,4,8,7,4,2,0,0,0,0,0,1,0,0,1,1,17099.5,5,3,5,5_0,16000.0,0,6000.0,10000,0,0,0.0,0.0,0.0,0,0,1631.430385421875,611.7863945332031,1019.6439908886717 -4075,1985,1984,2,23,38,111,62,50,0,12723,0,0,200,0,1,4,1,2,1.5,1510.43836621,0,0,28391.0,1,3,7,5,2,1,0,1,0,0,1,0,0,0,1,0,18927.3333333,5,3,5,5_0,9500.0,0,0.0,9500,8,15,7.5,30.0,3.33,0,1,968.6617913442382,0.0,968.6617913442382 -4076,2000,1999,0,0,76,112,78,71,0,12744,0,0,0,0,0,4,0,1,1.0,2513.7795078999998,0,0,18245.0,5,1,8,1,1,0,0,0,0,1,0,0,0,0,0,0,18245.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4077,2006,2005,6,6,68,111,77,71,0,12751,0,0,0,0,0,4,0,1,1.0,1753.62528275,1875,0,17230.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,17230.0,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,0.0,0.0,0,0,1835.3591835996092,0.0,1835.3591835996092 -4078,2011,2010,9,9,67,221,72,70,0,12757,0,0,0,0,0,5,0,2,1.5,2556.53901631,3120,0,26917.0,5,1,1,3,3,2,0,0,0,1,0,0,0,0,0,2,17944.6666667,5,3,5,5_0,10000.0,0,10000.0,0,5,10,0.0,0.0,0.0,0,0,1019.6439908886717,1019.6439908886717,0.0 +4074,1983,1982,6,6,52,111,85,41,0,12721,0,0,0,0,0,5,1,3,2.0,2215.64367151,2600,0,34199.0,5,4,8,7,4,2,0,0,0,0,0,1,0,0,1,1,17099.5,5,3,5,5_0,16000.0,0,6000.0,10000,0,0,0.0,0.0,0.0,0,0,1631.4303854218747,611.786394533203,1019.6439908886716 +4075,1985,1984,2,23,38,111,62,50,0,12723,0,0,200,0,1,4,1,2,1.5,1510.43836621,0,0,28391.0,1,3,7,5,2,1,0,1,0,0,1,0,0,0,1,0,18927.3333333,5,3,5,5_0,9500.0,0,0.0,9500,8,15,7.5,30.0,3.33,0,1,968.661791344238,0.0,968.661791344238 +4076,2000,1999,0,0,76,112,78,71,0,12744,0,0,0,0,0,4,0,1,1.0,2513.7795079,0,0,18245.0,5,1,8,1,1,0,0,0,0,1,0,0,0,0,0,0,18245.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +4077,2006,2005,6,6,68,111,77,71,0,12751,0,0,0,0,0,4,0,1,1.0,1753.62528275,1875,0,17230.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,17230.0,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,0.0,0.0,0,0,1835.359183599609,0.0,1835.359183599609 +4078,2011,2010,9,9,67,221,72,70,0,12757,0,0,0,0,0,5,0,2,1.5,2556.53901631,3120,0,26917.0,5,1,1,3,3,2,0,0,0,1,0,0,0,0,0,2,17944.6666667,5,3,5,5_0,10000.0,0,10000.0,0,5,10,0.0,0.0,0.0,0,0,1019.6439908886716,1019.6439908886716,0.0 4079,2013,2012,0,0,68,111,77,70,0,12764,0,0,0,347,0,3,0,1,1.0,3153.75929533,0,0,17215.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,17215.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4080,2014,2013,10,16,66,111,78,70,0,12767,0,180,0,0,1,4,1,3,2.0,1512.10581394,0,0,35831.0,5,1,7,6,4,3,0,0,0,0,1,0,0,0,0,3,17915.5,5,3,5,5_0,14818.0,0,14818.0,0,8,10,0.0,0.0,0.0,0,1,1510.9084656988339,1510.9084656988339,0.0 +4080,2014,2013,10,16,66,111,78,70,0,12767,0,180,0,0,1,4,1,3,2.0,1512.10581394,0,0,35831.0,5,1,7,6,4,3,0,0,0,0,1,0,0,0,0,3,17915.5,5,3,5,5_0,14818.0,0,14818.0,0,8,10,0.0,0.0,0.0,0,1,1510.9084656988337,1510.9084656988337,0.0 4081,2020,2019,3,15,25,400,52,31,0,12779,0,300,0,0,1,3,0,1,1.0,2701.62842178,2340,0,17622.0,1,4,0,0,1,1,0,1,1,0,0,0,0,0,0,1,17622.0,5,3,5,5_1,7000.0,0,7000.0,0,6,13,0.0,30.0,3.3,0,1,809.6173363492718,809.6173363492718,0.0 -4082,2033,2032,3,5,46,111,68,50,0,12796,0,200,0,0,2,4,2,4,2.1,1159.65589481,780,0,35529.0,1,1,6,5,4,2,0,0,0,0,1,0,0,0,0,2,16918.5714286,5,3,5,5_0,15000.0,0,15000.0,0,5,5,99.0,30.25,3.33,0,1,1529.4659863330078,1529.4659863330078,0.0 -4083,2035,2034,18,20,43,111,21,41,0,12798,0,0,350,0,2,5,2,4,2.3,2725.34035688,1348,0,42674.0,1,3,7,6,4,2,0,1,0,0,1,0,0,0,2,0,18553.9130435,5,3,5,5_0,10000.0,0,0.0,10000,2,19,35.2,22.5,3.3,0,1,1019.6439908886717,0.0,1019.6439908886717 -4084,2042,2041,5,15,30,111,54,43,0,12805,0,0,220,335,1,2,0,1,1.0,2309.9389376999998,2080,0,18541.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,18541.0,5,3,5,5_0,3000.0,0,0.0,3000,14,14,37.2,30.0,1.1,1,0,305.89319726660153,0.0,305.89319726660153 -4085,2043,2042,2,2,59,111,78,71,0,12806,0,0,0,0,0,4,0,2,1.5,2907.25480059,0,0,26203.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17468.6666667,5,3,5,5_0,17000.0,0,0.0,17000,4,6,0.0,0.0,0.0,0,0,1733.394784510742,0.0,1733.394784510742 -4086,2044,2043,6,6,69,111,74,60,0,12807,0,0,0,0,0,2,0,1,1.0,2365.31617735,0,0,18446.0,5,1,6,5,1,1,0,0,0,0,1,0,0,0,1,0,18446.0,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,0.0,0.0,0,0,1835.3591835996092,0.0,1835.3591835996092 +4082,2033,2032,3,5,46,111,68,50,0,12796,0,200,0,0,2,4,2,4,2.1,1159.65589481,780,0,35529.0,1,1,6,5,4,2,0,0,0,0,1,0,0,0,0,2,16918.5714286,5,3,5,5_0,15000.0,0,15000.0,0,5,5,99.0,30.25,3.33,0,1,1529.4659863330073,1529.4659863330073,0.0 +4083,2035,2034,18,20,43,111,21,41,0,12798,0,0,350,0,2,5,2,4,2.3,2725.34035688,1348,0,42674.0,1,3,7,6,4,2,0,1,0,0,1,0,0,0,2,0,18553.9130435,5,3,5,5_0,10000.0,0,0.0,10000,2,19,35.2,22.5,3.3,0,1,1019.6439908886716,0.0,1019.6439908886716 +4084,2042,2041,5,15,30,111,54,43,0,12805,0,0,220,335,1,2,0,1,1.0,2309.9389377,2080,0,18541.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,18541.0,5,3,5,5_0,3000.0,0,0.0,3000,14,14,37.2,30.0,1.1,1,0,305.8931972666015,0.0,305.8931972666015 +4085,2043,2042,2,2,59,111,78,71,0,12806,0,0,0,0,0,4,0,2,1.5,2907.25480059,0,0,26203.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17468.6666667,5,3,5,5_0,17000.0,0,0.0,17000,4,6,0.0,0.0,0.0,0,0,1733.3947845107418,0.0,1733.3947845107418 +4086,2044,2043,6,6,69,111,74,60,0,12807,0,0,0,0,0,2,0,1,1.0,2365.31617735,0,0,18446.0,5,1,6,5,1,1,0,0,0,0,1,0,0,0,1,0,18446.0,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,0.0,0.0,0,0,1835.359183599609,0.0,1835.359183599609 4087,2046,2045,0,0,87,111,78,71,0,12812,0,0,0,0,0,4,0,1,1.0,3589.23945665,0,0,17550.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,17550.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4088,2047,2046,0,6,23,111,52,41,2,12813,0,350,0,482,1,2,0,1,1.0,3974.47298849,0,6950,18762.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18762.0,5,3,5,5_0,25000.0,0,25000.0,0,3,6,0.0,30.0,3.3,0,1,2549.10997722168,2549.10997722168,0.0 -4089,2078,2077,3,20,49,111,21,50,0,12851,0,99999,99999,0,3,4,2,4,2.5,1977.56860274,0,0,43860.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,1,1,17544.0,5,3,5,5_0,38000.0,0,28000.0,10000,12,14,0.0,0.0,0.0,0,1,3874.6471653769527,2855.0031744882813,1019.6439908886717 -4090,2084,2083,6,12,40,111,37,20,0,12858,0,0,80,0,1,7,2,3,1.6,1197.94794011,0,0,28950.0,1,2,8,7,2,1,1,1,0,0,0,1,0,0,1,0,18093.75,5,3,5,5_0,5000.0,0,0.0,5000,9,9,0.0,3.33333333333,3.31,0,1,509.82199544433587,0.0,509.82199544433587 -4091,2085,2084,5,20,49,111,46,60,0,12859,0,400,400,540,4,4,2,4,2.5,1989.83019561,3746,0,42661.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,1,17064.4,5,3,5,5_0,38000.0,0,28000.0,10000,12,14,0.0,0.0,0.0,0,1,3874.6471653769527,2855.0031744882813,1019.6439908886717 +4088,2047,2046,0,6,23,111,52,41,2,12813,0,350,0,482,1,2,0,1,1.0,3974.47298849,0,6950,18762.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18762.0,5,3,5,5_0,25000.0,0,25000.0,0,3,6,0.0,30.0,3.3,0,1,2549.109977221679,2549.109977221679,0.0 +4089,2078,2077,3,20,49,111,21,50,0,12851,0,99999,99999,0,3,4,2,4,2.5,1977.56860274,0,0,43860.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,1,1,17544.0,5,3,5,5_0,38000.0,0,28000.0,10000,12,14,0.0,0.0,0.0,0,1,3874.647165376952,2855.0031744882804,1019.6439908886716 +4090,2084,2083,6,12,40,111,37,20,0,12858,0,0,80,0,1,7,2,3,1.6,1197.94794011,0,0,28950.0,1,2,8,7,2,1,1,1,0,0,0,1,0,0,1,0,18093.75,5,3,5,5_0,5000.0,0,0.0,5000,9,9,0.0,3.33333333333,3.31,0,1,509.8219954443358,0.0,509.8219954443358 +4091,2085,2084,5,20,49,111,46,60,0,12859,0,400,400,540,4,4,2,4,2.5,1989.83019561,3746,0,42661.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,1,17064.4,5,3,5,5_0,38000.0,0,28000.0,10000,12,14,0.0,0.0,0.0,0,1,3874.647165376952,2855.0031744882804,1019.6439908886716 4092,2089,2088,0,0,55,111,52,50,0,12862,0,0,0,299,4,4,3,4,2.5,1667.69697335,0,0,44876.0,1,3,7,5,2,0,0,0,0,0,1,0,0,1,0,0,17950.4,5,3,5,5_0,0.0,0,0.0,0,0,0,16.0,26.6666666667,0.0,0,0,0.0,0.0,0.0 4093,2090,2089,0,0,34,111,55,31,0,12864,0,0,0,450,1,1,0,1,1.0,3655.08548794,0,0,18976.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18976.0,5,3,5,5_0,0.0,0,0.0,0,0,0,119.2,90.0,5.52,0,0,0.0,0.0,0.0 4094,2091,2090,6,6,43,112,48,50,0,12866,0,700,0,0,1,5,2,3,2.0,1761.56876865,4636,0,35184.0,1,3,7,0,2,1,0,1,1,0,0,0,0,0,0,1,17592.0,5,3,5,5_1,17178.0,0,17178.0,0,4,4,0.0,30.6666666667,3.31,1,0,1986.8009434011126,1986.8009434011126,0.0 4095,2092,2091,15,19,65,300,21,70,0,12867,0,0,0,0,1,4,0,2,1.5,1902.16566327,0,0,25630.0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,17086.6666667,5,3,5,5_1,10000.0,0,10000.0,0,10,13,0.0,0.0,0.0,0,1,1156.596194784674,1156.596194784674,0.0 -4096,2102,2101,4,14,52,111,52,70,0,12880,0,0,120,0,2,5,0,2,1.5,2720.34144481,1561,0,27924.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,18616.0,5,3,5,5_0,15600.0,0,10000.0,5600,2,15,85.0,15.0,0.0,0,1,1590.644625786328,1019.6439908886717,571.0006348976561 +4096,2102,2101,4,14,52,111,52,70,0,12880,0,0,120,0,2,5,0,2,1.5,2720.34144481,1561,0,27924.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,18616.0,5,3,5,5_0,15600.0,0,10000.0,5600,2,15,85.0,15.0,0.0,0,1,1590.6446257863279,1019.6439908886716,571.0006348976561 4097,2132,2131,0,0,71,111,78,70,0,12920,0,0,0,0,0,5,0,1,1.0,1440.89287956,0,0,17636.0,5,1,3,4,1,0,0,0,0,0,1,0,0,0,0,0,17636.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4098,2141,2140,9,9,78,300,78,50,0,12933,0,0,0,0,0,4,0,2,1.5,1364.70364467,0,0,26140.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,17426.6666667,5,3,5,5_1,8000.0,0,8000.0,0,4,8,0.0,0.0,0.0,0,0,925.2769558277391,925.2769558277391,0.0 -4099,2160,2159,6,8,40,111,55,50,0,12956,0,20,200,0,2,6,1,3,1.8,1579.2711249000001,5305,0,33865.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,18813.888888900005,5,3,5,5_0,28500.0,0,25000.0,3500,7,8,0.0,4.0,3.3,0,1,2905.9853740327144,2549.10997722168,356.87539681103516 -4100,2195,2194,21,21,83,112,71,71,0,13007,0,0,0,0,0,5,0,2,1.5,3615.55102147,0,0,27097.0,5,1,9,2,3,1,0,0,0,1,0,0,0,0,1,0,18064.6666667,5,3,5,5_0,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 -4101,2205,2204,0,6,29,111,64,71,2,13022,0,400,0,382,2,3,1,3,1.8,3067.78806903,0,4800,34270.0,1,3,8,7,4,2,0,0,0,0,0,1,0,0,0,2,19038.888888900005,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886717,1019.6439908886717,0.0 -4102,2211,2210,10,10,63,111,75,41,0,1303,0,0,0,436,0,3,0,1,1.0,3432.89617609,0,0,19086.0,5,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,19086.0,5,3,5,5_0,5000.0,0,0.0,5000,10,10,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 +4099,2160,2159,6,8,40,111,55,50,0,12956,0,20,200,0,2,6,1,3,1.8,1579.2711249,5305,0,33865.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,18813.8888889,5,3,5,5_0,28500.0,0,25000.0,3500,7,8,0.0,4.0,3.3,0,1,2905.985374032714,2549.109977221679,356.87539681103505 +4100,2195,2194,21,21,83,112,71,71,0,13007,0,0,0,0,0,5,0,2,1.5,3615.55102147,0,0,27097.0,5,1,9,2,3,1,0,0,0,1,0,0,0,0,1,0,18064.6666667,5,3,5,5_0,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 +4101,2205,2204,0,6,29,111,64,71,2,13022,0,400,0,382,2,3,1,3,1.8,3067.78806903,0,4800,34270.0,1,3,8,7,4,2,0,0,0,0,0,1,0,0,0,2,19038.8888889,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886716,1019.6439908886716,0.0 +4102,2211,2210,10,10,63,111,75,41,0,1303,0,0,0,436,0,3,0,1,1.0,3432.89617609,0,0,19086.0,5,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,19086.0,5,3,5,5_0,5000.0,0,0.0,5000,10,10,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 4103,2214,2213,2,6,25,400,47,20,0,13033,0,0,0,0,1,4,0,1,1.0,3070.34134662,0,0,17644.0,1,3,0,0,1,1,1,0,1,0,0,0,0,0,0,1,17644.0,5,3,5,5_1,25000.0,0,25000.0,0,2,7,75.5,30.0,3.3,0,1,2891.4904869616844,2891.4904869616844,0.0 -4104,2222,2221,11,11,49,111,67,50,0,13043,0,30,0,277,1,2,0,1,1.0,2138.38301841,0,0,17432.0,4,3,6,4,1,1,0,1,0,0,1,0,0,1,0,1,17432.0,5,3,5,5_0,15000.0,0,15000.0,0,2,12,0.0,38.0,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 +4104,2222,2221,11,11,49,111,67,50,0,13043,0,30,0,277,1,2,0,1,1.0,2138.38301841,0,0,17432.0,4,3,6,4,1,1,0,1,0,0,1,0,0,1,0,1,17432.0,5,3,5,5_0,15000.0,0,15000.0,0,2,12,0.0,38.0,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 4105,2230,2229,0,0,60,111,77,50,0,13054,0,0,0,0,0,2,0,1,1.0,2773.01217741,0,0,17310.0,5,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,17310.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4106,2233,2232,3,3,62,111,75,50,0,13057,0,0,0,0,0,4,0,2,1.5,2633.49058297,0,0,25720.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,17146.6666667,5,3,5,5_0,17343.0,0,17343.0,0,2,3,0.0,0.0,0.0,0,0,1768.3685733982236,1768.3685733982236,0.0 -4107,2234,2233,8,8,77,112,75,50,0,13058,0,0,0,0,0,3,0,1,1.0,1640.26170209,2184,0,17842.0,5,1,7,1,1,1,0,0,0,1,0,0,0,0,1,0,17842.0,5,3,5,5_0,5000.0,0,0.0,5000,7,8,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 -4108,2255,2254,6,6,68,111,72,43,0,1309,0,0,0,0,0,4,0,1,1.0,3824.11652449,9534,0,18472.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18472.0,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,0.0,0.0,0,0,1835.3591835996092,0.0,1835.3591835996092 +4106,2233,2232,3,3,62,111,75,50,0,13057,0,0,0,0,0,4,0,2,1.5,2633.49058297,0,0,25720.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,17146.6666667,5,3,5,5_0,17343.0,0,17343.0,0,2,3,0.0,0.0,0.0,0,0,1768.368573398223,1768.368573398223,0.0 +4107,2234,2233,8,8,77,112,75,50,0,13058,0,0,0,0,0,3,0,1,1.0,1640.26170209,2184,0,17842.0,5,1,7,1,1,1,0,0,0,1,0,0,0,0,1,0,17842.0,5,3,5,5_0,5000.0,0,0.0,5000,7,8,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 +4108,2255,2254,6,6,68,111,72,43,0,1309,0,0,0,0,0,4,0,1,1.0,3824.11652449,9534,0,18472.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18472.0,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,0.0,0.0,0,0,1835.359183599609,0.0,1835.359183599609 4109,2263,2262,0,0,85,111,75,70,0,13098,0,0,0,0,0,1,0,2,1.5,4155.47871445,0,0,28672.0,5,1,10,8,5,0,0,0,0,0,0,0,1,0,0,0,19114.6666667,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4110,2266,2265,16,16,56,111,54,41,0,13100,0,0,0,0,1,3,0,2,1.5,3314.9724091,0,0,26054.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,17369.3333333,5,3,5,5_0,10000.0,0,10000.0,0,4,12,34.0,70.0,5.5,0,0,1019.6439908886717,1019.6439908886717,0.0 -4111,2283,2282,1,1,48,112,45,41,1,13128,0,500,0,0,1,5,2,3,2.0,2270.83546264,0,14000,37628.0,1,2,7,4,2,1,0,1,0,0,1,0,0,0,0,1,18814.0,5,3,5,5_0,17343.0,0,17343.0,0,1,0,0.0,0.0,0.0,0,1,1768.3685733982236,1768.3685733982236,0.0 +4110,2266,2265,16,16,56,111,54,41,0,13100,0,0,0,0,1,3,0,2,1.5,3314.9724091,0,0,26054.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,17369.3333333,5,3,5,5_0,10000.0,0,10000.0,0,4,12,34.0,70.0,5.5,0,0,1019.6439908886716,1019.6439908886716,0.0 +4111,2283,2282,1,1,48,112,45,41,1,13128,0,500,0,0,1,5,2,3,2.0,2270.83546264,0,14000,37628.0,1,2,7,4,2,1,0,1,0,0,1,0,0,0,0,1,18814.0,5,3,5,5_0,17343.0,0,17343.0,0,1,0,0.0,0.0,0.0,0,1,1768.368573398223,1768.368573398223,0.0 4112,2331,2330,1,13,53,112,42,44,2,13207,0,1500,100,0,2,5,1,3,2.0,2136.98082615,9289,3000,35335.0,1,1,9,0,4,4,0,0,1,0,0,0,0,0,3,1,17667.5,5,3,5,5_1,7500.0,0,0.0,7500,15,16,152.4,30.0,3.3,0,1,867.4471460885054,0.0,867.4471460885054 -4113,2334,2333,7,9,70,221,72,70,0,13210,0,0,0,0,0,4,0,1,1.0,1965.69643343,2983,0,18591.0,5,2,1,3,1,1,0,0,0,1,0,0,0,0,0,1,18591.0,5,3,5,5_0,10000.0,0,10000.0,0,10,10,0.0,0.0,0.0,0,0,1019.6439908886717,1019.6439908886717,0.0 -4114,2346,2345,9,10,34,111,45,31,0,13224,0,100,0,496,1,5,3,4,1.9,2566.22072202,0,0,32547.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,17130.0,5,3,5,5_0,42343.0,0,42343.0,0,4,5,0.0,0.0,0.0,0,1,4317.478550619903,4317.478550619903,0.0 +4113,2334,2333,7,9,70,221,72,70,0,13210,0,0,0,0,0,4,0,1,1.0,1965.69643343,2983,0,18591.0,5,2,1,3,1,1,0,0,0,1,0,0,0,0,0,1,18591.0,5,3,5,5_0,10000.0,0,10000.0,0,10,10,0.0,0.0,0.0,0,0,1019.6439908886716,1019.6439908886716,0.0 +4114,2346,2345,9,10,34,111,45,31,0,13224,0,100,0,496,1,5,3,4,1.9,2566.22072202,0,0,32547.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,17130.0,5,3,5,5_0,42343.0,0,42343.0,0,4,5,0.0,0.0,0.0,0,1,4317.478550619902,4317.478550619902,0.0 4115,2356,2355,0,0,83,111,74,60,0,13239,0,0,0,0,0,1,0,1,1.0,2797.28630404,0,0,17882.0,5,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,17882.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4116,2377,2376,7,14,37,111,43,33,0,13270,0,0,0,520,1,3,2,3,1.6,3065.34594674,0,0,30118.0,1,3,9,7,2,1,0,0,0,0,0,1,0,0,1,0,18823.75,5,3,5,5_0,10000.0,0,0.0,10000,10,16,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 +4116,2377,2376,7,14,37,111,43,33,0,13270,0,0,0,520,1,3,2,3,1.6,3065.34594674,0,0,30118.0,1,3,9,7,2,1,0,0,0,0,0,1,0,0,1,0,18823.75,5,3,5,5_0,10000.0,0,0.0,10000,10,16,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 4117,2401,2400,2,8,65,120,78,70,0,13297,0,0,0,0,0,4,0,2,1.5,1554.90873878,0,0,28181.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,18787.3333333,5,3,5,5_1,28000.0,0,28000.0,0,7,7,0.0,0.0,0.0,0,0,3238.469345397087,3238.469345397087,0.0 -4118,2405,2404,7,10,74,111,78,50,0,1330,0,0,0,0,0,6,0,2,1.5,1220.16895881,0,0,28460.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18973.3333333,5,3,5,5_0,9000.0,0,9000.0,0,3,12,0.0,0.0,0.0,0,0,917.6795917998046,917.6795917998046,0.0 -4119,2407,2406,0,13,68,111,77,60,0,13301,0,0,0,0,0,5,0,1,1.0,2333.925034,0,0,18017.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,18017.0,5,3,5,5_0,8000.0,0,0.0,8000,8,12,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 -4120,2408,2407,0,20,63,120,78,71,0,13305,0,0,0,0,0,6,0,2,1.5,1681.47299451,1820,0,25380.0,5,1,0,3,3,3,0,0,0,1,0,0,0,0,0,3,16920.0,5,3,5,5_0,28000.0,0,28000.0,0,7,7,0.0,0.0,0.0,0,0,2855.0031744882813,2855.0031744882813,0.0 +4118,2405,2404,7,10,74,111,78,50,0,1330,0,0,0,0,0,6,0,2,1.5,1220.16895881,0,0,28460.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18973.3333333,5,3,5,5_0,9000.0,0,9000.0,0,3,12,0.0,0.0,0.0,0,0,917.6795917998045,917.6795917998045,0.0 +4119,2407,2406,0,13,68,111,77,60,0,13301,0,0,0,0,0,5,0,1,1.0,2333.925034,0,0,18017.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,18017.0,5,3,5,5_0,8000.0,0,0.0,8000,8,12,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 +4120,2408,2407,0,20,63,120,78,71,0,13305,0,0,0,0,0,6,0,2,1.5,1681.47299451,1820,0,25380.0,5,1,0,3,3,3,0,0,0,1,0,0,0,0,0,3,16920.0,5,3,5,5_0,28000.0,0,28000.0,0,7,7,0.0,0.0,0.0,0,0,2855.0031744882804,2855.0031744882804,0.0 4121,2411,2410,27,27,69,300,71,50,0,13314,0,0,300,0,1,6,1,3,2.0,2373.51690523,4375,0,36654.0,5,1,0,0,4,3,0,0,1,0,0,0,0,0,3,0,18327.0,5,3,5,5_1,13568.0,0,0.0,13568,1,15,0.0,0.0,0.0,0,0,1569.2697170838455,0.0,1569.2697170838455 4122,2430,2429,10,10,46,112,38,12,0,1334,0,300,0,0,2,6,3,5,2.4,1089.10364433,0,0,44469.0,1,2,9,0,4,2,1,1,1,0,0,0,0,0,0,2,18528.75,5,3,5,5_1,20000.0,0,20000.0,0,7,10,106.4,7.6,3.31,0,1,2313.192389569348,2313.192389569348,0.0 -4123,2443,2442,10,10,34,211,52,42,0,13356,0,450,0,441,1,2,0,1,1.0,2662.97831679,1305,0,17190.0,1,3,3,3,1,1,0,1,0,1,0,0,0,0,0,1,17190.0,5,3,5,5_0,12000.0,0,12000.0,0,7,12,26.0,16.0,3.3,0,1,1223.5727890664061,1223.5727890664061,0.0 -4124,2471,2470,6,17,50,111,52,71,0,13397,0,99999,0,252,1,4,0,1,1.0,3140.71342998,0,0,18493.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,18493.0,5,3,5,5_0,25000.0,0,25000.0,0,12,16,79.0,45.0,3.3,1,0,2549.10997722168,2549.10997722168,0.0 +4123,2443,2442,10,10,34,211,52,42,0,13356,0,450,0,441,1,2,0,1,1.0,2662.97831679,1305,0,17190.0,1,3,3,3,1,1,0,1,0,1,0,0,0,0,0,1,17190.0,5,3,5,5_0,12000.0,0,12000.0,0,7,12,26.0,16.0,3.3,0,1,1223.572789066406,1223.572789066406,0.0 +4124,2471,2470,6,17,50,111,52,71,0,13397,0,99999,0,252,1,4,0,1,1.0,3140.71342998,0,0,18493.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,18493.0,5,3,5,5_0,25000.0,0,25000.0,0,12,16,79.0,45.0,3.3,1,0,2549.109977221679,2549.109977221679,0.0 4125,2481,2480,0,0,64,111,77,70,0,13410,0,0,0,342,0,2,0,1,1.0,3114.72316538,0,0,18670.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18670.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4126,2483,2482,2,2,76,221,78,50,0,13413,0,0,0,0,0,4,0,2,1.5,1618.64881709,0,0,27370.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,18246.6666667,5,3,5,5_0,6859.0,0,6859.0,0,1,1,0.0,0.0,0.0,0,0,699.37381335054,699.37381335054,0.0 +4126,2483,2482,2,2,76,221,78,50,0,13413,0,0,0,0,0,4,0,2,1.5,1618.64881709,0,0,27370.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,18246.6666667,5,3,5,5_0,6859.0,0,6859.0,0,1,1,0.0,0.0,0.0,0,0,699.3738133505399,699.3738133505399,0.0 4127,2517,2516,6,6,56,300,78,50,0,13474,0,80,0,0,2,5,1,3,2.0,1384.66821324,3795,0,37051.0,5,1,0,0,4,3,0,1,1,0,0,0,0,0,1,2,18525.5,5,3,5,5_1,25769.0,0,16353.0,9416,5,5,268.5,83.3333333333,3.3,0,1,2980.432734340626,1891.3817573313772,1089.050977009249 -4128,2530,2529,16,18,46,111,43,33,0,13495,0,20,0,0,1,4,1,2,1.5,4131.60368925,0,0,25711.0,1,2,8,6,2,1,0,1,0,0,1,0,0,0,0,1,17140.6666667,5,3,5,5_0,18625.0,0,18625.0,0,2,18,0.0,10.0,3.3,0,1,1899.0869330301514,1899.0869330301514,0.0 +4128,2530,2529,16,18,46,111,43,33,0,13495,0,20,0,0,1,4,1,2,1.5,4131.60368925,0,0,25711.0,1,2,8,6,2,1,0,1,0,0,1,0,0,0,0,1,17140.6666667,5,3,5,5_0,18625.0,0,18625.0,0,2,18,0.0,10.0,3.3,0,1,1899.086933030151,1899.086933030151,0.0 4129,2537,2536,5,16,45,300,52,60,0,13503,0,200,0,0,2,5,1,3,2.0,1897.62857416,3017,0,35614.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,0,2,17807.0,5,3,5,5_1,14336.0,0,14336.0,0,2,17,477.1,56.6666666667,3.3,0,1,1658.0963048433086,1658.0963048433086,0.0 -4130,2540,2539,3,6,48,111,62,50,0,13510,0,440,0,0,1,4,0,2,1.5,1234.92845544,1567,0,27501.0,1,1,8,7,3,1,0,1,0,0,0,1,0,0,0,1,18334.0,5,3,5,5_0,10000.0,0,10000.0,0,2,9,0.0,0.0,0.0,0,0,1019.6439908886717,1019.6439908886717,0.0 +4130,2540,2539,3,6,48,111,62,50,0,13510,0,440,0,0,1,4,0,2,1.5,1234.92845544,1567,0,27501.0,1,1,8,7,3,1,0,1,0,0,0,1,0,0,0,1,18334.0,5,3,5,5_0,10000.0,0,10000.0,0,2,9,0.0,0.0,0.0,0,0,1019.6439908886716,1019.6439908886716,0.0 4131,2543,2542,4,4,45,300,52,50,0,13513,0,250,80,0,2,5,2,4,2.3,1224.56690435,3120,0,40591.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,1,1,17648.2608696,5,3,5,5_1,15000.0,0,13000.0,2000,3,4,82.6,20.0,3.3,0,1,1734.8942921770108,1503.575053220076,231.31923895693478 4132,2544,2543,0,0,65,400,77,70,0,13514,0,0,0,0,0,6,0,1,1.0,2486.71540739,0,0,17131.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,17131.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4133,2566,2565,0,0,73,111,77,71,0,13541,0,0,0,0,0,1,0,1,1.0,3070.8360556,0,0,16951.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16951.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4134,2571,2570,4,4,73,112,75,50,0,13547,0,0,0,0,0,6,0,2,1.5,2205.14806804,0,0,26179.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,0,1,17452.6666667,5,3,5,5_1,16626.0,0,16626.0,0,2,3,0.0,0.0,0.0,0,0,1922.9568334489989,1922.9568334489989,0.0 4135,2639,2638,1,9,53,400,63,50,0,13632,0,20,0,0,3,4,1,3,2.0,1546.03403039,0,0,34820.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17410.0,5,3,5,5_1,27359.0,0,27359.0,0,5,6,0.0,20.0,0.0,0,0,3164.331529311389,3164.331529311389,0.0 -4136,2641,2640,2,2,43,111,63,43,0,13634,0,40,0,0,2,4,2,4,2.5,2834.22620842,1508,0,46310.0,1,1,6,4,4,1,0,1,0,0,1,0,0,0,0,1,18524.0,5,3,5,5_0,1600.0,0,1600.0,0,1,1,130.8,11.5,3.3,0,1,163.1430385421875,163.1430385421875,0.0 -4137,2647,2646,6,13,53,111,64,50,0,13645,0,0,350,0,2,4,1,3,2.0,2842.09898328,3323,0,37090.0,1,2,6,5,4,1,0,1,0,0,1,0,0,0,1,0,18545.0,5,3,5,5_0,8703.0,0,0.0,8703,7,13,25.2,6.666666666669999,3.3,0,1,887.3961652704111,0.0,887.3961652704111 +4136,2641,2640,2,2,43,111,63,43,0,13634,0,40,0,0,2,4,2,4,2.5,2834.22620842,1508,0,46310.0,1,1,6,4,4,1,0,1,0,0,1,0,0,0,0,1,18524.0,5,3,5,5_0,1600.0,0,1600.0,0,1,1,130.8,11.5,3.3,0,1,163.14303854218744,163.14303854218744,0.0 +4137,2647,2646,6,13,53,111,64,50,0,13645,0,0,350,0,2,4,1,3,2.0,2842.09898328,3323,0,37090.0,1,2,6,5,4,1,0,1,0,0,1,0,0,0,1,0,18545.0,5,3,5,5_0,8703.0,0,0.0,8703,7,13,25.2,6.66666666667,3.3,0,1,887.3961652704108,0.0,887.3961652704108 4138,2669,2668,0,0,72,111,86,71,0,13672,0,0,0,369,0,3,0,1,1.0,6065.87070769,0,0,18500.0,5,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,18500.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4139,2688,2687,6,19,55,112,45,20,0,13703,0,0,99999,0,2,6,0,2,1.5,1292.56753355,5200,0,27400.0,1,2,10,0,3,1,0,1,1,0,0,0,0,0,1,0,18266.6666667,5,3,5,5_1,7024.0,0,0.0,7024,9,19,12.5,5.0,0.0,0,1,812.3931672167549,0.0,812.3931672167549 4140,2691,2690,4,6,58,112,67,70,0,13708,0,0,150,0,1,4,0,1,1.0,2065.81082621,1300,0,18210.0,1,1,8,0,1,1,0,1,1,0,0,0,0,0,1,0,18210.0,5,3,5,5_1,11000.0,0,0.0,11000,8,8,23.0,20.0,3.3,0,1,1272.2558142631412,0.0,1272.2558142631412 -4141,2694,2693,4,17,40,111,62,41,0,13712,0,0,0,0,1,2,0,1,1.0,3636.76879323,0,0,17360.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,17360.0,5,3,5,5_0,15000.0,0,0.0,15000,3,16,58.2,25.0,3.3,0,1,1529.4659863330078,0.0,1529.4659863330078 +4141,2694,2693,4,17,40,111,62,41,0,13712,0,0,0,0,1,2,0,1,1.0,3636.76879323,0,0,17360.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,17360.0,5,3,5,5_0,15000.0,0,0.0,15000,3,16,58.2,25.0,3.3,0,1,1529.4659863330073,0.0,1529.4659863330073 4142,2695,2694,0,0,51,112,63,50,1,13714,0,450,0,0,2,5,2,4,2.5,2075.50911142,0,20000,42366.0,1,2,5,0,4,3,0,1,1,0,0,0,0,0,0,3,16946.4,5,3,5,5_1,8141.0,0,8141.0,0,18,0,163.5,37.5,3.3,0,1,941.584962174203,941.584962174203,0.0 4143,2696,2695,1,2,47,112,63,50,0,13715,0,250,0,0,2,5,2,4,2.1,1922.29352783,0,0,37722.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,17962.8571429,5,3,5,5_1,16445.0,0,16445.0,0,1,4,0.0,1.0,0.0,0,0,1902.022442323396,1902.022442323396,0.0 -4144,2697,2696,1,1,72,221,78,71,2,13716,0,0,0,0,0,5,0,2,1.5,2514.61581912,2596,24500,26360.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,1,1,17573.3333333,5,3,5,5_0,14915.0,0,11000.0,3915,2,2,0.0,0.0,0.0,0,0,1520.799012410454,1121.608389977539,399.190622432915 +4144,2697,2696,1,1,72,221,78,71,2,13716,0,0,0,0,0,5,0,2,1.5,2514.61581912,2596,24500,26360.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,1,1,17573.3333333,5,3,5,5_0,14915.0,0,11000.0,3915,2,2,0.0,0.0,0.0,0,0,1520.7990124104538,1121.6083899775388,399.19062243291495 4145,2703,2702,0,0,31,120,63,71,0,13724,0,0,0,354,2,3,0,2,1.5,6349.62200566,0,0,27954.0,1,3,0,2,3,0,0,0,0,1,0,0,0,0,0,0,18636.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,15.0,2.2,0,0,0.0,0.0,0.0 -4146,2704,2703,0,15,80,111,77,41,0,13725,0,0,99999,0,1,5,1,2,1.5,2966.80175743,0,0,28487.0,5,1,8,7,2,1,0,1,0,0,0,1,0,0,1,0,18991.3333333,5,3,5,5_0,9036.0,0,0.0,9036,1,11,0.0,0.0,0.0,0,0,921.3503101670037,0.0,921.3503101670037 +4146,2704,2703,0,15,80,111,77,41,0,13725,0,0,99999,0,1,5,1,2,1.5,2966.80175743,0,0,28487.0,5,1,8,7,2,1,0,1,0,0,0,1,0,0,1,0,18991.3333333,5,3,5,5_0,9036.0,0,0.0,9036,1,11,0.0,0.0,0.0,0,0,921.3503101670036,0.0,921.3503101670036 4147,2707,2706,2,2,40,112,56,71,0,13729,0,300,0,0,1,4,0,1,1.0,2238.71684076,0,0,17187.0,1,2,9,0,1,1,0,1,1,0,0,0,0,0,0,1,17187.0,5,3,5,5_1,46726.0,0,46726.0,0,2,2,283.2,80.0,3.3,0,1,5404.311379750867,5404.311379750867,0.0 4148,2715,2714,16,16,74,300,78,71,0,13737,0,0,0,0,0,5,0,1,1.0,2921.31473528,0,0,16970.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,0,1,16970.0,5,3,5,5_1,6000.0,0,6000.0,0,11,16,0.0,0.0,0.0,0,0,693.9577168708043,693.9577168708043,0.0 4149,2738,2737,3,3,51,111,46,41,0,13763,0,0,80,325,1,3,1,2,1.5,2955.91852533,0,0,27048.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,1,0,18032.0,5,3,5,5_0,0.0,0,0.0,0,4,0,0.0,0.0,0.0,0,1,0.0,0.0,0.0 -4150,2742,2741,1,8,32,111,48,71,2,13769,0,100,0,325,1,2,1,2,1.3,3142.44019792,0,8300,22688.0,1,3,4,4,2,1,0,1,0,0,1,0,0,0,0,1,17452.307692299997,5,3,5,5_0,40000.0,0,40000.0,0,3,7,0.0,27.0,3.3,0,1,4078.575963554687,4078.575963554687,0.0 -4151,2752,2751,9,11,45,111,46,71,0,13784,0,0,0,568,2,4,2,4,2.5,3509.45968413,1040,0,47574.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,19029.6,5,3,5,5_0,15000.0,0,15000.0,0,5,10,78.0,50.0,5.5,0,1,1529.4659863330078,1529.4659863330078,0.0 +4150,2742,2741,1,8,32,111,48,71,2,13769,0,100,0,325,1,2,1,2,1.3,3142.44019792,0,8300,22688.0,1,3,4,4,2,1,0,1,0,0,1,0,0,0,0,1,17452.3076923,5,3,5,5_0,40000.0,0,40000.0,0,3,7,0.0,27.0,3.3,0,1,4078.5759635546865,4078.5759635546865,0.0 +4151,2752,2751,9,11,45,111,46,71,0,13784,0,0,0,568,2,4,2,4,2.5,3509.45968413,1040,0,47574.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,19029.6,5,3,5,5_0,15000.0,0,15000.0,0,5,10,78.0,50.0,5.5,0,1,1529.4659863330073,1529.4659863330073,0.0 4152,2756,2755,0,0,28,111,62,71,0,13792,0,0,0,324,1,2,0,1,1.0,3160.0866361,0,0,18740.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18740.0,5,3,5,5_0,0.0,0,0.0,0,0,0,24.5,30.0,2.24,0,0,0.0,0.0,0.0 4153,2762,2761,0,15,41,111,47,31,0,138,0,300,250,0,2,4,1,3,1.8,1806.87770894,0,0,33301.0,1,2,8,7,4,2,1,1,0,0,0,1,0,0,1,1,18500.5555556,5,3,5,5_0,681.0,0,681.0,0,8,11,183.0,40.0,3.3,0,1,69.43775577951854,69.43775577951854,0.0 -4154,2769,2768,2,3,41,211,67,71,0,13809,0,200,0,279,1,2,0,1,1.0,2682.66769306,2324,0,17957.0,1,3,3,4,1,1,0,1,0,0,1,0,0,0,0,1,17957.0,5,3,5,5_0,8656.0,0,8656.0,0,1,3,28.8,20.0,3.3,0,1,882.6038385132343,882.6038385132343,0.0 +4154,2769,2768,2,3,41,211,67,71,0,13809,0,200,0,279,1,2,0,1,1.0,2682.66769306,2324,0,17957.0,1,3,3,4,1,1,0,1,0,0,1,0,0,0,0,1,17957.0,5,3,5,5_0,8656.0,0,8656.0,0,1,3,28.8,20.0,3.3,0,1,882.603838513234,882.603838513234,0.0 4155,2776,2775,0,0,60,111,52,70,0,13815,0,0,0,232,1,2,0,1,1.0,3117.56118206,0,0,17998.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17998.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4156,2779,2778,1,1,72,111,77,60,1,13818,0,0,0,0,0,6,0,1,1.0,2019.10852918,0,14000,17899.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17899.0,5,3,5,5_0,300.0,0,0.0,300,25,0,0.0,0.0,0.0,0,0,30.589319726660154,0.0,30.589319726660154 +4156,2779,2778,1,1,72,111,77,60,1,13818,0,0,0,0,0,6,0,1,1.0,2019.10852918,0,14000,17899.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17899.0,5,3,5,5_0,300.0,0,0.0,300,25,0,0.0,0.0,0.0,0,0,30.589319726660147,0.0,30.589319726660147 4157,2788,2787,0,0,67,112,78,71,0,13827,0,0,0,0,1,4,1,2,1.5,3910.72859598,0,0,27749.0,5,1,10,2,2,0,0,0,0,1,0,0,0,0,0,0,18499.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,242.5,110.0,5.57,0,0,0.0,0.0,0.0 4158,2794,2793,0,0,50,111,22,50,0,13835,0,0,0,729,2,4,3,5,2.4,2842.20753739,0,0,45125.0,1,3,7,5,4,0,0,0,0,0,1,0,0,0,0,0,18802.0833333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,33.6666666667,3.32,0,0,0.0,0.0,0.0 4159,2825,2824,0,0,34,112,34,20,0,13878,0,0,0,0,1,6,2,3,1.6,1638.87816548,6162,0,29312.0,1,3,7,0,2,0,0,0,1,0,0,0,0,0,0,0,18320.0,5,3,5,5_1,0.0,0,0.0,0,0,0,115.0,105.0,3.31,0,0,0.0,0.0,0.0 4160,2860,2859,0,0,45,111,52,50,0,1392,0,0,0,206,1,2,0,1,1.0,3170.88298336,0,0,18880.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18880.0,5,3,5,5_0,0.0,0,0.0,0,0,0,172.8,120.0,5.56,0,0,0.0,0.0,0.0 -4161,2867,2866,10,12,52,111,62,50,0,13928,0,20,0,0,1,3,0,2,1.5,1801.77006198,2080,0,25510.0,1,4,6,4,3,2,0,1,0,0,1,0,0,0,0,2,17006.6666667,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.1769144496454,1561.1769144496454,0.0 -4162,2886,2885,1,1,61,221,75,70,1,13955,0,0,0,0,0,5,0,2,1.5,2030.87164346,1560,23000,26222.0,5,1,1,3,3,2,0,0,0,1,0,0,0,0,0,2,17481.3333333,5,3,5,5_0,17343.0,0,17343.0,0,2,3,0.0,0.0,0.0,0,0,1768.3685733982236,1768.3685733982236,0.0 -4163,2893,2892,9,24,76,111,75,50,0,13963,0,0,0,0,0,4,0,2,1.5,3438.24237374,2080,0,27212.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,18141.3333333,5,3,5,5_0,3000.0,0,3000.0,0,13,14,0.0,0.0,0.0,0,0,305.89319726660153,305.89319726660153,0.0 +4161,2867,2866,10,12,52,111,62,50,0,13928,0,20,0,0,1,3,0,2,1.5,1801.77006198,2080,0,25510.0,1,4,6,4,3,2,0,1,0,0,1,0,0,0,0,2,17006.6666667,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.176914449645,1561.176914449645,0.0 +4162,2886,2885,1,1,61,221,75,70,1,13955,0,0,0,0,0,5,0,2,1.5,2030.87164346,1560,23000,26222.0,5,1,1,3,3,2,0,0,0,1,0,0,0,0,0,2,17481.3333333,5,3,5,5_0,17343.0,0,17343.0,0,2,3,0.0,0.0,0.0,0,0,1768.368573398223,1768.368573398223,0.0 +4163,2893,2892,9,24,76,111,75,50,0,13963,0,0,0,0,0,4,0,2,1.5,3438.24237374,2080,0,27212.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,18141.3333333,5,3,5,5_0,3000.0,0,3000.0,0,13,14,0.0,0.0,0.0,0,0,305.8931972666015,305.8931972666015,0.0 4164,2895,2894,0,7,26,112,63,50,2,13965,0,260,0,0,2,5,1,3,1.8,2738.73510397,4763,12900,34098.0,1,3,9,0,4,2,0,1,1,0,0,0,0,0,0,2,18943.3333333,5,3,5,5_1,22000.0,0,22000.0,0,7,9,44.0,16.6666666667,3.3,0,1,2544.5116285262825,2544.5116285262825,0.0 -4165,2923,2922,5,19,51,120,52,50,0,14,0,500,200,0,3,5,3,5,3.0,778.164616788,2966,0,55894.0,1,2,0,1,4,3,0,1,0,1,0,0,0,0,1,2,18631.3333333,5,3,5,5_0,17445.0,0,17445.0,0,2,13,107.3,37.5,0.0,1,1,1778.768942105288,1778.768942105288,0.0 -4166,2932,2931,6,8,32,111,68,50,0,14017,0,450,0,0,2,6,2,4,2.1,2993.56111771,3120,0,40060.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,19076.190476199998,5,3,5,5_0,10000.0,0,10000.0,0,4,7,99.0,12.5,0.0,1,1,1019.6439908886717,1019.6439908886717,0.0 -4167,2934,2933,8,8,66,112,78,50,0,1402,0,0,0,0,0,4,0,2,1.5,1857.44589314,1768,0,27807.0,5,1,8,1,3,2,0,0,0,1,0,0,0,0,1,1,18538.0,5,3,5,5_0,40000.0,0,25000.0,15000,6,9,0.0,0.0,0.0,0,0,4078.575963554687,2549.10997722168,1529.4659863330078 +4165,2923,2922,5,19,51,120,52,50,0,14,0,500,200,0,3,5,3,5,3.0,778.164616788,2966,0,55894.0,1,2,0,1,4,3,0,1,0,1,0,0,0,0,1,2,18631.3333333,5,3,5,5_0,17445.0,0,17445.0,0,2,13,107.3,37.5,0.0,1,1,1778.7689421052876,1778.7689421052876,0.0 +4166,2932,2931,6,8,32,111,68,50,0,14017,0,450,0,0,2,6,2,4,2.1,2993.56111771,3120,0,40060.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,19076.1904762,5,3,5,5_0,10000.0,0,10000.0,0,4,7,99.0,12.5,0.0,1,1,1019.6439908886716,1019.6439908886716,0.0 +4167,2934,2933,8,8,66,112,78,50,0,1402,0,0,0,0,0,4,0,2,1.5,1857.44589314,1768,0,27807.0,5,1,8,1,3,2,0,0,0,1,0,0,0,0,1,1,18538.0,5,3,5,5_0,40000.0,0,25000.0,15000,6,9,0.0,0.0,0.0,0,0,4078.5759635546865,2549.109977221679,1529.4659863330073 4168,2948,2947,0,0,96,111,77,60,0,14039,0,0,0,0,0,3,0,1,1.0,2269.64075719,0,0,17540.0,5,1,5,4,1,0,0,0,0,0,1,0,0,0,0,0,17540.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4169,2951,2950,2,12,43,400,62,71,0,14042,0,140,0,0,3,4,2,4,2.5,1621.38438007,2860,0,42366.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,16946.4,5,3,5,5_1,16000.0,0,16000.0,0,6,6,146.0,38.0,3.32,0,0,1850.5539116554783,1850.5539116554783,0.0 -4170,2979,2978,5,5,74,111,75,70,0,14073,0,0,0,0,0,4,0,2,1.5,1270.80652376,0,0,26725.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,17816.6666667,5,3,5,5_0,14000.0,0,14000.0,0,6,5,0.0,0.0,0.0,0,0,1427.5015872441406,1427.5015872441406,0.0 +4170,2979,2978,5,5,74,111,75,70,0,14073,0,0,0,0,0,4,0,2,1.5,1270.80652376,0,0,26725.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,17816.6666667,5,3,5,5_0,14000.0,0,14000.0,0,6,5,0.0,0.0,0.0,0,0,1427.5015872441402,1427.5015872441402,0.0 4171,3000,2999,0,0,36,111,67,10,0,14099,0,0,0,0,2,3,2,4,2.1,3845.30517114,0,0,39394.0,1,3,10,8,4,0,0,0,0,0,0,0,1,1,0,0,18759.047619,5,3,5,5_0,0.0,0,0.0,0,0,0,67.0,63.3333333333,5.56,0,0,0.0,0.0,0.0 -4172,3005,3004,11,13,84,111,77,70,0,14108,0,0,0,0,0,4,0,1,1.0,2465.61769124,0,0,17789.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,1,0,17789.0,5,3,5,5_0,3000.0,0,0.0,3000,15,15,0.0,0.0,0.0,0,0,305.89319726660153,0.0,305.89319726660153 +4172,3005,3004,11,13,84,111,77,70,0,14108,0,0,0,0,0,4,0,1,1.0,2465.61769124,0,0,17789.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,1,0,17789.0,5,3,5,5_0,3000.0,0,0.0,3000,15,15,0.0,0.0,0.0,0,0,305.8931972666015,0.0,305.8931972666015 4173,3013,3012,0,0,79,111,77,60,0,14116,0,0,0,407,0,2,0,1,1.0,3471.07030095,0,0,17313.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,17313.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4174,3030,3029,3,3,58,111,52,71,0,1414,0,160,0,0,1,4,0,1,1.0,2063.45993238,0,0,17780.0,1,1,6,4,1,1,0,1,0,0,1,0,0,0,0,1,17780.0,5,3,5,5_0,15000.0,0,15000.0,0,3,4,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 +4174,3030,3029,3,3,58,111,52,71,0,1414,0,160,0,0,1,4,0,1,1.0,2063.45993238,0,0,17780.0,1,1,6,4,1,1,0,1,0,0,1,0,0,0,0,1,17780.0,5,3,5,5_0,15000.0,0,15000.0,0,3,4,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 4175,3045,3044,4,16,59,212,78,71,0,14157,0,0,0,0,0,5,0,1,1.0,2543.96231441,4271,0,17706.0,5,1,1,0,1,1,0,0,1,0,0,0,0,0,0,1,17706.0,5,3,5,5_1,8000.0,0,8000.0,0,17,17,0.0,0.0,0.0,0,0,925.2769558277391,925.2769558277391,0.0 4176,3051,3050,14,14,43,112,54,50,0,14162,0,60,50,0,2,4,1,3,1.8,2213.42527099,2600,0,33103.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,1,1,18390.5555556,5,3,5,5_1,32259.0,0,20000.0,12259,9,13,54.0,16.6666666667,3.3,0,1,3731.0636647558795,2313.192389569348,1417.8712751865316 -4177,3055,3054,6,9,72,111,75,70,0,14170,0,0,0,0,0,4,0,2,1.5,1730.92279534,2340,0,25724.0,5,3,5,4,3,1,0,0,0,0,1,0,0,0,1,0,17149.3333333,5,3,5,5_0,2500.0,0,0.0,2500,8,8,0.0,0.0,0.0,0,0,254.91099772216793,0.0,254.91099772216793 -4178,3065,3064,5,10,43,111,23,41,0,14183,0,0,99999,0,2,3,3,5,2.6,3099.60669879,1560,0,47380.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,18223.076923099998,5,3,5,5_0,10000.0,0,0.0,10000,7,7,71.5,20.4,5.5,0,1,1019.6439908886717,0.0,1019.6439908886717 -4179,3068,3067,3,12,48,112,21,50,0,14188,0,0,630,0,2,5,2,4,2.5,2169.02659862,0,0,45076.0,1,1,7,4,4,2,0,1,0,0,1,0,0,0,2,0,18030.4,5,3,5,5_0,20000.0,0,0.0,20000,5,9,148.0,45.0,3.3,0,1,2039.2879817773435,0.0,2039.2879817773435 -4180,3078,3077,1,7,48,111,52,20,0,142,0,0,0,0,1,3,0,1,1.0,2112.45207466,1042,0,18780.0,1,3,6,4,1,1,0,0,0,0,1,0,0,0,1,0,18780.0,5,3,5,5_0,10000.0,0,0.0,10000,6,6,0.0,70.0,5.55,0,1,1019.6439908886717,0.0,1019.6439908886717 +4177,3055,3054,6,9,72,111,75,70,0,14170,0,0,0,0,0,4,0,2,1.5,1730.92279534,2340,0,25724.0,5,3,5,4,3,1,0,0,0,0,1,0,0,0,1,0,17149.3333333,5,3,5,5_0,2500.0,0,0.0,2500,8,8,0.0,0.0,0.0,0,0,254.9109977221679,0.0,254.9109977221679 +4178,3065,3064,5,10,43,111,23,41,0,14183,0,0,99999,0,2,3,3,5,2.6,3099.60669879,1560,0,47380.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,18223.0769231,5,3,5,5_0,10000.0,0,0.0,10000,7,7,71.5,20.4,5.5,0,1,1019.6439908886716,0.0,1019.6439908886716 +4179,3068,3067,3,12,48,112,21,50,0,14188,0,0,630,0,2,5,2,4,2.5,2169.02659862,0,0,45076.0,1,1,7,4,4,2,0,1,0,0,1,0,0,0,2,0,18030.4,5,3,5,5_0,20000.0,0,0.0,20000,5,9,148.0,45.0,3.3,0,1,2039.2879817773432,0.0,2039.2879817773432 +4180,3078,3077,1,7,48,111,52,20,0,142,0,0,0,0,1,3,0,1,1.0,2112.45207466,1042,0,18780.0,1,3,6,4,1,1,0,0,0,0,1,0,0,0,1,0,18780.0,5,3,5,5_0,10000.0,0,0.0,10000,6,6,0.0,70.0,5.55,0,1,1019.6439908886716,0.0,1019.6439908886716 4181,3083,3082,0,0,80,111,77,71,0,14203,0,0,0,291,0,3,0,1,1.0,3062.48536204,0,0,17504.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,17504.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4182,3104,3103,1,11,43,111,68,71,2,14231,0,0,0,0,3,4,2,4,2.5,1264.74300179,3641,3000,44855.0,1,3,7,6,4,1,0,0,0,0,1,0,0,0,1,0,17942.0,5,3,5,5_0,15000.0,0,0.0,15000,4,5,61.6,63.75,0.0,0,1,1529.4659863330078,0.0,1529.4659863330078 -4183,3114,3113,1,14,49,111,47,50,2,14245,0,204,0,0,1,4,2,4,2.1,1988.76617359,2080,1800,38847.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,18498.571428599997,5,3,5,5_0,10000.0,0,10000.0,0,7,17,113.0,20.0,3.3,0,1,1019.6439908886717,1019.6439908886717,0.0 -4184,3120,3119,11,14,41,112,64,50,0,14257,0,120,50,0,2,5,3,5,2.6,2958.15482131,1560,0,49329.0,1,2,9,2,4,3,0,1,0,1,0,0,0,0,1,2,18972.692307700003,5,3,5,5_0,35818.0,0,35000.0,818,3,7,163.3,14.4,3.31,0,0,3652.160846565045,3568.7539681103513,83.40687845469336 +4182,3104,3103,1,11,43,111,68,71,2,14231,0,0,0,0,3,4,2,4,2.5,1264.74300179,3641,3000,44855.0,1,3,7,6,4,1,0,0,0,0,1,0,0,0,1,0,17942.0,5,3,5,5_0,15000.0,0,0.0,15000,4,5,61.6,63.75,0.0,0,1,1529.4659863330073,0.0,1529.4659863330073 +4183,3114,3113,1,14,49,111,47,50,2,14245,0,204,0,0,1,4,2,4,2.1,1988.76617359,2080,1800,38847.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,18498.5714286,5,3,5,5_0,10000.0,0,10000.0,0,7,17,113.0,20.0,3.3,0,1,1019.6439908886716,1019.6439908886716,0.0 +4184,3120,3119,11,14,41,112,64,50,0,14257,0,120,50,0,2,5,3,5,2.6,2958.15482131,1560,0,49329.0,1,2,9,2,4,3,0,1,0,1,0,0,0,0,1,2,18972.6923077,5,3,5,5_0,35818.0,0,35000.0,818,3,7,163.3,14.4,3.31,0,0,3652.1608465650434,3568.7539681103503,83.40687845469334 4185,3122,3121,0,0,50,111,56,60,0,14259,0,0,0,0,1,2,0,1,1.0,4145.40902032,0,0,18020.0,1,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18020.0,5,3,5,5_0,0.0,0,0.0,0,0,0,22.5,40.0,5.5,0,0,0.0,0.0,0.0 4186,3177,3176,9,9,55,400,56,70,0,1433,0,140,0,0,2,5,0,2,1.5,1390.8096861,1664,0,26732.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,17821.3333333,5,3,5,5_1,8500.0,0,8500.0,0,3,8,85.9,35.0,3.3,0,1,983.1067655669727,983.1067655669727,0.0 -4187,3185,3184,28,28,76,112,72,50,0,14341,0,0,0,0,0,3,0,2,1.5,2075.83660762,0,0,25610.0,5,1,10,2,3,2,0,0,0,1,0,0,0,0,2,0,17073.3333333,5,3,5,5_0,3000.0,0,0.0,3000,23,23,0.0,0.0,0.0,0,0,305.89319726660153,0.0,305.89319726660153 +4187,3185,3184,28,28,76,112,72,50,0,14341,0,0,0,0,0,3,0,2,1.5,2075.83660762,0,0,25610.0,5,1,10,2,3,2,0,0,0,1,0,0,0,0,2,0,17073.3333333,5,3,5,5_0,3000.0,0,0.0,3000,23,23,0.0,0.0,0.0,0,0,305.8931972666015,0.0,305.8931972666015 4188,3204,3203,1,2,39,300,62,50,0,14375,0,150,700,0,2,4,2,4,2.1,1715.53842115,2543,0,37506.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,17860.0,5,3,5,5_1,27716.0,0,21716.0,6000,1,3,107.6,16.5,3.3,0,1,3205.622013465202,2511.664296594398,693.9577168708043 -4189,3206,3205,14,16,75,400,78,50,0,14377,0,0,0,0,0,5,0,2,1.5,4555.74459918,2704,0,26848.0,5,1,0,1,3,2,0,0,0,1,0,0,0,0,1,1,17898.6666667,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.85759635546873,305.89319726660153,101.96439908886718 -4190,3208,3207,7,9,48,112,38,42,0,1438,0,350,0,0,1,6,3,5,2.8,1130.11273813,3557,0,48430.0,1,1,8,0,4,2,0,0,1,0,0,0,0,0,0,2,17296.428571400003,5,3,5,5_1,8000.0,0,8000.0,0,9,10,186.2,26.0,3.3,0,1,925.2769558277391,925.2769558277391,0.0 -4191,3211,3210,1,5,33,111,47,44,2,14383,0,0,0,0,1,4,0,1,1.0,4610.77530715,2600,9000,16910.0,1,3,8,6,1,1,0,0,0,0,1,0,0,0,0,1,16910.0,5,3,5,5_0,35000.0,0,35000.0,0,3,4,0.0,0.0,0.0,1,1,3568.7539681103513,3568.7539681103513,0.0 +4189,3206,3205,14,16,75,400,78,50,0,14377,0,0,0,0,0,5,0,2,1.5,4555.74459918,2704,0,26848.0,5,1,0,1,3,2,0,0,0,1,0,0,0,0,1,1,17898.6666667,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.8575963554687,305.8931972666015,101.96439908886717 +4190,3208,3207,7,9,48,112,38,42,0,1438,0,350,0,0,1,6,3,5,2.8,1130.11273813,3557,0,48430.0,1,1,8,0,4,2,0,0,1,0,0,0,0,0,0,2,17296.4285714,5,3,5,5_1,8000.0,0,8000.0,0,9,10,186.2,26.0,3.3,0,1,925.2769558277391,925.2769558277391,0.0 +4191,3211,3210,1,5,33,111,47,44,2,14383,0,0,0,0,1,4,0,1,1.0,4610.77530715,2600,9000,16910.0,1,3,8,6,1,1,0,0,0,0,1,0,0,0,0,1,16910.0,5,3,5,5_0,35000.0,0,35000.0,0,3,4,0.0,0.0,0.0,1,1,3568.7539681103503,3568.7539681103503,0.0 4192,3212,3211,2,17,57,112,69,70,0,14385,0,170,0,123,2,4,1,2,1.5,1457.32116283,0,0,25501.0,1,3,8,0,2,2,0,1,1,0,0,0,0,1,0,2,17000.6666667,5,3,5,5_1,30000.0,0,30000.0,0,3,17,122.5,50.0,3.3,0,1,3469.7885843540216,3469.7885843540216,0.0 -4193,3213,3212,2,2,75,111,78,70,0,14386,0,0,0,0,0,3,0,1,1.0,3696.14632717,0,0,18499.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,18499.0,5,3,5,5_0,8116.0,0,0.0,8116,0,0,0.0,0.0,0.0,0,0,827.543063005246,0.0,827.543063005246 -4194,3221,3220,6,7,54,111,46,41,0,14396,0,0,150,359,1,3,1,2,1.5,3037.50718555,2608,0,27170.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,1,0,18113.3333333,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,15.0,0.0,0,1,1835.3591835996092,0.0,1835.3591835996092 -4195,3229,3228,7,14,57,111,63,50,0,14411,0,0,0,288,2,5,0,2,1.5,2700.68265844,1342,0,26052.0,1,3,8,7,3,1,0,0,0,0,0,1,0,0,1,0,17368.0,5,3,5,5_0,20000.0,0,0.0,20000,11,14,57.0,80.0,2.22,0,1,2039.2879817773435,0.0,2039.2879817773435 -4196,3236,3235,7,7,55,111,77,60,0,14420,0,0,0,0,0,5,0,1,1.0,2116.5760026000003,0,0,18980.0,5,4,8,7,1,1,0,0,0,0,0,1,0,0,1,0,18980.0,5,3,5,5_0,7142.0,0,0.0,7142,8,7,0.0,0.0,0.0,0,0,728.2297382926894,0.0,728.2297382926894 -4197,3245,3244,3,3,79,111,78,50,0,14435,0,0,0,0,0,5,0,2,1.5,2131.54658989,0,0,28109.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,0,1,18739.3333333,5,3,5,5_0,9000.0,0,9000.0,0,3,3,0.0,0.0,0.0,0,0,917.6795917998046,917.6795917998046,0.0 +4193,3213,3212,2,2,75,111,78,70,0,14386,0,0,0,0,0,3,0,1,1.0,3696.14632717,0,0,18499.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,1,0,18499.0,5,3,5,5_0,8116.0,0,0.0,8116,0,0,0.0,0.0,0.0,0,0,827.5430630052458,0.0,827.5430630052458 +4194,3221,3220,6,7,54,111,46,41,0,14396,0,0,150,359,1,3,1,2,1.5,3037.50718555,2608,0,27170.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,1,0,18113.3333333,5,3,5,5_0,18000.0,0,0.0,18000,7,7,0.0,15.0,0.0,0,1,1835.359183599609,0.0,1835.359183599609 +4195,3229,3228,7,14,57,111,63,50,0,14411,0,0,0,288,2,5,0,2,1.5,2700.68265844,1342,0,26052.0,1,3,8,7,3,1,0,0,0,0,0,1,0,0,1,0,17368.0,5,3,5,5_0,20000.0,0,0.0,20000,11,14,57.0,80.0,2.22,0,1,2039.2879817773432,0.0,2039.2879817773432 +4196,3236,3235,7,7,55,111,77,60,0,14420,0,0,0,0,0,5,0,1,1.0,2116.5760026,0,0,18980.0,5,4,8,7,1,1,0,0,0,0,0,1,0,0,1,0,18980.0,5,3,5,5_0,7142.0,0,0.0,7142,8,7,0.0,0.0,0.0,0,0,728.2297382926893,0.0,728.2297382926893 +4197,3245,3244,3,3,79,111,78,50,0,14435,0,0,0,0,0,5,0,2,1.5,2131.54658989,0,0,28109.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,0,1,18739.3333333,5,3,5,5_0,9000.0,0,9000.0,0,3,3,0.0,0.0,0.0,0,0,917.6795917998045,917.6795917998045,0.0 4198,3246,3245,6,11,85,400,75,71,0,14437,0,0,0,0,0,5,0,2,1.5,2244.68702579,0,0,25400.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,16933.3333333,5,3,5,5_1,3000.0,0,0.0,3000,10,10,0.0,0.0,0.0,0,0,346.9788584354022,0.0,346.9788584354022 -4199,3254,3253,3,13,29,111,67,50,0,14446,0,0,150,226,1,2,0,1,1.0,2626.27484838,3354,0,17140.0,1,3,7,6,1,1,0,1,0,0,1,0,0,0,1,0,17140.0,5,3,5,5_0,1825.0,0,0.0,1825,8,13,40.0,14.0,3.3,0,1,186.0850283371826,0.0,186.0850283371826 -4200,3286,3285,3,7,44,111,34,31,0,14494,0,100,0,0,1,4,4,5,2.6,2144.40493624,4090,0,47264.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,0,1,18178.4615385,5,3,5,5_0,15000.0,0,15000.0,0,3,8,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 -4201,3287,3286,11,11,80,211,78,71,0,14495,0,0,0,0,0,3,0,1,1.0,2234.28092621,0,0,18940.0,5,4,3,4,1,1,0,0,0,0,1,0,0,0,0,1,18940.0,5,3,5,5_0,15000.0,0,15000.0,0,12,14,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 +4199,3254,3253,3,13,29,111,67,50,0,14446,0,0,150,226,1,2,0,1,1.0,2626.27484838,3354,0,17140.0,1,3,7,6,1,1,0,1,0,0,1,0,0,0,1,0,17140.0,5,3,5,5_0,1825.0,0,0.0,1825,8,13,40.0,14.0,3.3,0,1,186.08502833718256,0.0,186.08502833718256 +4200,3286,3285,3,7,44,111,34,31,0,14494,0,100,0,0,1,4,4,5,2.6,2144.40493624,4090,0,47264.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,0,1,18178.4615385,5,3,5,5_0,15000.0,0,15000.0,0,3,8,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 +4201,3287,3286,11,11,80,211,78,71,0,14495,0,0,0,0,0,3,0,1,1.0,2234.28092621,0,0,18940.0,5,4,3,4,1,1,0,0,0,0,1,0,0,0,0,1,18940.0,5,3,5,5_0,15000.0,0,15000.0,0,12,14,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 4202,3298,3297,11,11,53,300,21,50,0,14509,0,450,0,0,2,2,0,2,1.5,2226.53721354,0,0,28330.0,1,1,0,0,3,1,0,1,1,0,0,0,0,0,0,1,18886.6666667,5,3,5,5_1,5000.0,0,5000.0,0,2,12,51.0,10.0,3.3,0,1,578.298097392337,578.298097392337,0.0 -4203,3300,3299,3,7,47,111,47,50,0,14510,0,200,0,0,2,4,3,5,2.4,1196.9764534,5586,0,45029.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,18762.0833333,5,3,5,5_0,8000.0,0,8000.0,0,5,7,0.0,15.0,3.3,0,1,815.7151927109375,815.7151927109375,0.0 +4203,3300,3299,3,7,47,111,47,50,0,14510,0,200,0,0,2,4,3,5,2.4,1196.9764534,5586,0,45029.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,18762.0833333,5,3,5,5_0,8000.0,0,8000.0,0,5,7,0.0,15.0,3.3,0,1,815.7151927109373,815.7151927109373,0.0 4204,3305,3304,10,10,74,300,78,70,0,14524,0,0,0,0,0,2,0,1,1.0,2312.97128299,0,0,18929.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,18929.0,5,3,5,5_1,7000.0,0,7000.0,0,8,9,0.0,0.0,0.0,0,0,809.6173363492718,809.6173363492718,0.0 -4205,3308,3307,5,6,50,111,54,60,0,14528,0,400,0,0,2,6,2,4,2.5,2178.6936899,3120,0,44172.0,1,1,7,5,4,1,0,1,0,0,1,0,0,0,0,1,17668.8,5,3,5,5_0,15000.0,0,15000.0,0,8,8,0.0,30.0,0.0,1,0,1529.4659863330078,1529.4659863330078,0.0 +4205,3308,3307,5,6,50,111,54,60,0,14528,0,400,0,0,2,6,2,4,2.5,2178.6936899,3120,0,44172.0,1,1,7,5,4,1,0,1,0,0,1,0,0,0,0,1,17668.8,5,3,5,5_0,15000.0,0,15000.0,0,8,8,0.0,30.0,0.0,1,0,1529.4659863330073,1529.4659863330073,0.0 4206,3348,3347,0,0,72,111,77,70,0,14577,0,0,0,0,0,2,0,1,1.0,1546.07484249,0,0,18604.0,5,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,18604.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4207,3354,3353,8,12,50,111,46,60,0,14584,0,0,50,474,1,4,2,3,2.0,3295.03380033,1560,0,35100.0,1,3,8,7,2,1,0,1,0,0,0,1,0,0,1,0,17550.0,5,3,5,5_0,3000.0,0,0.0,3000,3,8,0.0,10.0,3.3,0,1,305.89319726660153,0.0,305.89319726660153 -4208,3359,3358,5,5,73,111,74,60,0,14592,0,0,0,0,0,5,0,2,1.5,1656.1431587000002,0,0,26696.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,17797.3333333,5,3,5,5_0,14000.0,0,14000.0,0,6,5,0.0,0.0,0.0,0,0,1427.5015872441406,1427.5015872441406,0.0 +4207,3354,3353,8,12,50,111,46,60,0,14584,0,0,50,474,1,4,2,3,2.0,3295.03380033,1560,0,35100.0,1,3,8,7,2,1,0,1,0,0,0,1,0,0,1,0,17550.0,5,3,5,5_0,3000.0,0,0.0,3000,3,8,0.0,10.0,3.3,0,1,305.8931972666015,0.0,305.8931972666015 +4208,3359,3358,5,5,73,111,74,60,0,14592,0,0,0,0,0,5,0,2,1.5,1656.1431587,0,0,26696.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,17797.3333333,5,3,5,5_0,14000.0,0,14000.0,0,6,5,0.0,0.0,0.0,0,0,1427.5015872441402,1427.5015872441402,0.0 4209,3362,3361,6,11,48,300,62,50,0,14596,0,0,150,0,1,4,0,1,1.0,3004.24957659,1071,0,16988.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,1,0,16988.0,5,3,5,5_1,6620.0,0,0.0,6620,12,12,0.0,0.0,0.0,0,1,765.6666809474541,0.0,765.6666809474541 -4210,3381,3380,6,6,56,112,62,60,0,14620,0,200,10,0,2,7,1,3,2.0,1083.97731075,0,0,33782.0,1,1,9,2,4,2,0,1,0,1,0,0,0,0,1,1,16891.0,5,3,5,5_0,24501.0,0,12501.0,12000,1,2,133.9,46.6666666667,0.0,0,1,2498.229742076335,1274.6569530099287,1223.5727890664061 -4211,3385,3384,6,9,58,111,62,50,0,14624,0,0,0,0,1,4,0,1,1.0,1138.8507691,0,0,18820.0,1,3,7,5,1,1,0,0,0,0,1,0,0,0,0,1,18820.0,5,3,5,5_0,30000.0,0,30000.0,0,5,6,0.0,0.0,0.0,0,0,3058.9319726660156,3058.9319726660156,0.0 -4212,3406,3405,14,14,75,111,78,70,0,14655,0,0,0,0,0,5,0,2,1.5,2202.33724,0,0,26223.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,1,0,17482.0,5,3,5,5_0,8000.0,0,0.0,8000,10,13,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 +4210,3381,3380,6,6,56,112,62,60,0,14620,0,200,10,0,2,7,1,3,2.0,1083.97731075,0,0,33782.0,1,1,9,2,4,2,0,1,0,1,0,0,0,0,1,1,16891.0,5,3,5,5_0,24501.0,0,12501.0,12000,1,2,133.9,46.6666666667,0.0,0,1,2498.2297420763343,1274.6569530099284,1223.572789066406 +4211,3385,3384,6,9,58,111,62,50,0,14624,0,0,0,0,1,4,0,1,1.0,1138.8507691,0,0,18820.0,1,3,7,5,1,1,0,0,0,0,1,0,0,0,0,1,18820.0,5,3,5,5_0,30000.0,0,30000.0,0,5,6,0.0,0.0,0.0,0,0,3058.9319726660146,3058.9319726660146,0.0 +4212,3406,3405,14,14,75,111,78,70,0,14655,0,0,0,0,0,5,0,2,1.5,2202.33724,0,0,26223.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,1,0,17482.0,5,3,5,5_0,8000.0,0,0.0,8000,10,13,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 4213,3411,3410,3,5,44,400,52,50,0,14664,0,0,0,0,1,4,0,1,1.0,1753.51386393,0,0,17633.0,1,3,0,0,1,1,1,0,1,0,0,0,0,0,0,1,17633.0,5,3,5,5_1,12030.0,0,12030.0,0,2,2,0.0,20.0,3.31,0,1,1391.3852223259628,1391.3852223259628,0.0 -4214,3414,3413,7,14,44,111,52,50,0,14667,0,200,0,0,1,5,1,2,1.3,1901.69936269,0,0,23693.0,1,2,8,7,2,1,0,1,0,0,0,1,0,0,0,1,18225.384615400002,5,3,5,5_0,10000.0,0,10000.0,0,2,9,0.0,0.0,0.0,0,0,1019.6439908886717,1019.6439908886717,0.0 +4214,3414,3413,7,14,44,111,52,50,0,14667,0,200,0,0,1,5,1,2,1.3,1901.69936269,0,0,23693.0,1,2,8,7,2,1,0,1,0,0,0,1,0,0,0,1,18225.3846154,5,3,5,5_0,10000.0,0,10000.0,0,2,9,0.0,0.0,0.0,0,0,1019.6439908886716,1019.6439908886716,0.0 4215,3432,3431,9,9,52,400,63,50,0,1469,0,200,0,0,2,5,0,4,2.3,1045.77180887,957,0,42031.0,1,1,0,0,5,2,0,0,1,0,0,0,0,0,0,2,18274.3478261,5,3,5,5_1,10000.0,0,10000.0,0,5,7,44.5,12.5,3.3,0,1,1156.596194784674,1156.596194784674,0.0 -4216,3433,3432,2,2,45,112,21,50,0,14691,0,80,0,0,3,6,2,4,2.3,2430.58672953,0,0,40663.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,2,17679.565217400002,5,3,5,5_1,16000.0,0,16000.0,0,6,6,146.0,38.0,3.32,0,0,1850.5539116554783,1850.5539116554783,0.0 -4217,3435,3434,5,7,42,112,37,31,0,14694,0,280,0,0,2,6,2,4,2.3,4254.56498265,3017,0,43699.0,1,2,7,0,4,3,1,0,1,0,0,0,0,0,0,3,18999.565217400002,5,3,5,5_1,37000.0,0,37000.0,0,8,8,597.0,80.0,3.31,0,1,4279.405920703293,4279.405920703293,0.0 -4218,3454,3453,4,12,48,111,56,31,0,14719,0,0,0,50,1,5,2,3,1.8,2386.75863856,0,0,33665.0,4,3,6,4,2,1,0,0,0,0,1,0,0,1,0,1,18702.777777799998,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 +4216,3433,3432,2,2,45,112,21,50,0,14691,0,80,0,0,3,6,2,4,2.3,2430.58672953,0,0,40663.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,2,17679.5652174,5,3,5,5_1,16000.0,0,16000.0,0,6,6,146.0,38.0,3.32,0,0,1850.5539116554783,1850.5539116554783,0.0 +4217,3435,3434,5,7,42,112,37,31,0,14694,0,280,0,0,2,6,2,4,2.3,4254.56498265,3017,0,43699.0,1,2,7,0,4,3,1,0,1,0,0,0,0,0,0,3,18999.5652174,5,3,5,5_1,37000.0,0,37000.0,0,8,8,597.0,80.0,3.31,0,1,4279.405920703293,4279.405920703293,0.0 +4218,3454,3453,4,12,48,111,56,31,0,14719,0,0,0,50,1,5,2,3,1.8,2386.75863856,0,0,33665.0,4,3,6,4,2,1,0,0,0,0,1,0,0,1,0,1,18702.7777778,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 4219,3456,3455,0,0,73,111,78,71,0,14721,0,0,0,380,1,4,0,2,1.5,3167.57577819,281,0,27173.0,5,3,8,6,5,0,0,0,0,0,1,0,0,0,0,0,18115.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4220,3473,3472,0,0,76,111,78,71,0,14744,0,0,0,0,1,3,0,2,1.5,2925.1401681999996,260,0,27878.0,5,3,9,7,5,0,0,0,0,0,0,1,0,0,0,0,18585.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4221,3477,3476,1,7,47,111,62,60,2,14750,0,150,50,0,2,5,2,4,2.5,1345.77055596,0,5000,44785.0,1,1,6,5,4,2,0,1,0,0,1,0,0,0,1,1,17914.0,5,3,5,5_0,12487.0,0,11287.0,1200,0,8,161.3,40.0,3.3,0,1,1273.2294514226844,1150.8721725160437,122.35727890664062 +4220,3473,3472,0,0,76,111,78,71,0,14744,0,0,0,0,1,3,0,2,1.5,2925.1401682,260,0,27878.0,5,3,9,7,5,0,0,0,0,0,0,1,0,0,0,0,18585.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +4221,3477,3476,1,7,47,111,62,60,2,14750,0,150,50,0,2,5,2,4,2.5,1345.77055596,0,5000,44785.0,1,1,6,5,4,2,0,1,0,0,1,0,0,0,1,1,17914.0,5,3,5,5_0,12487.0,0,11287.0,1200,0,8,161.3,40.0,3.3,0,1,1273.2294514226842,1150.8721725160437,122.35727890664059 4222,3488,3487,0,0,46,112,55,71,0,14767,0,0,0,0,2,3,3,5,2.8,3099.33326806,0,0,49275.0,1,1,10,4,4,0,0,0,0,0,1,0,0,0,0,0,17598.2142857,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4223,3498,3497,0,0,86,111,77,70,0,14781,0,0,0,0,0,5,0,1,1.0,2047.13026183,0,0,17806.0,5,3,7,6,1,0,0,0,0,0,1,0,0,0,0,0,17806.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4224,3509,3508,11,11,87,111,78,71,0,14799,0,0,0,230,0,1,0,1,1.0,3241.70498792,0,0,18090.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,18090.0,5,3,5,5_0,10704.0,0,0.0,10704,8,8,0.0,0.0,0.0,0,0,1091.4269278472343,0.0,1091.4269278472343 -4225,3511,3510,1,8,57,111,63,60,0,14803,0,0,0,0,1,3,0,1,1.0,2719.52727622,0,0,18196.0,1,4,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18196.0,5,3,5,5_0,10000.0,0,0.0,10000,9,8,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 -4226,3517,3516,6,6,58,112,78,50,0,14809,0,0,0,338,0,2,0,1,1.0,2769.47292405,1924,0,18957.0,5,3,9,3,1,1,0,0,0,1,0,0,0,0,1,0,18957.0,5,3,5,5_0,7142.0,0,0.0,7142,8,7,0.0,0.0,0.0,0,0,728.2297382926894,0.0,728.2297382926894 -4227,3522,3521,0,10,24,111,46,31,0,14815,0,400,0,560,2,3,0,2,1.5,3121.42112931,6390,0,25480.0,1,3,8,7,3,2,0,1,0,0,0,1,0,0,0,2,16986.6666667,5,3,5,5_0,69572.0,0,69572.0,0,4,7,90.0,45.0,3.3,0,1,7093.867173410667,7093.867173410667,0.0 -4228,3528,3527,0,16,52,111,52,50,2,14827,0,0,0,413,1,4,0,1,1.0,1295.99306856,0,200,17150.0,1,3,7,5,1,1,0,0,0,0,1,0,0,0,1,0,17150.0,5,3,5,5_0,1500.0,0,0.0,1500,13,16,0.0,0.0,0.0,0,1,152.94659863330077,0.0,152.94659863330077 -4229,3531,3530,2,3,72,112,78,70,0,1483,0,0,0,0,0,4,0,2,1.5,2213.97694798,0,0,26665.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,1,1,17776.6666667,5,3,5,5_0,14915.0,0,11000.0,3915,2,2,0.0,0.0,0.0,0,0,1520.799012410454,1121.608389977539,399.190622432915 -4230,3538,3537,5,15,31,111,56,50,0,14839,0,0,99999,0,2,4,2,4,2.1,2259.86571507,0,0,36497.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,17379.5238095,5,3,5,5_0,5362.0,0,0.0,5362,1,10,150.0,56.25,5.56,0,1,546.7331079145058,0.0,546.7331079145058 -4231,3556,3555,0,8,22,111,55,20,0,1487,0,0,0,259,1,2,0,2,1.5,2533.3871664999997,0,0,26026.0,4,3,9,7,3,2,0,0,0,0,0,1,0,1,0,2,17350.6666667,5,3,5,5_0,16666.0,0,16666.0,0,3,8,0.0,0.0,0.0,0,1,1699.3386752150604,1699.3386752150604,0.0 -4232,3562,3561,2,24,41,111,42,50,0,14878,0,0,16,18,4,5,3,5,2.8,2499.21569172,1560,0,52327.0,1,3,6,4,4,2,0,1,0,0,1,0,0,1,1,1,18688.2142857,5,3,5,5_0,20000.0,0,20000.0,0,5,25,32.4,36.0,2.25,0,0,2039.2879817773435,2039.2879817773435,0.0 -4233,3569,3568,0,6,43,111,42,20,0,14885,0,0,0,0,1,5,2,3,1.8,1396.67170116,0,0,33406.0,1,1,7,6,2,1,0,0,0,0,1,0,0,0,0,1,18558.888888900005,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 +4224,3509,3508,11,11,87,111,78,71,0,14799,0,0,0,230,0,1,0,1,1.0,3241.70498792,0,0,18090.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,18090.0,5,3,5,5_0,10704.0,0,0.0,10704,8,8,0.0,0.0,0.0,0,0,1091.426927847234,0.0,1091.426927847234 +4225,3511,3510,1,8,57,111,63,60,0,14803,0,0,0,0,1,3,0,1,1.0,2719.52727622,0,0,18196.0,1,4,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18196.0,5,3,5,5_0,10000.0,0,0.0,10000,9,8,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 +4226,3517,3516,6,6,58,112,78,50,0,14809,0,0,0,338,0,2,0,1,1.0,2769.47292405,1924,0,18957.0,5,3,9,3,1,1,0,0,0,1,0,0,0,0,1,0,18957.0,5,3,5,5_0,7142.0,0,0.0,7142,8,7,0.0,0.0,0.0,0,0,728.2297382926893,0.0,728.2297382926893 +4227,3522,3521,0,10,24,111,46,31,0,14815,0,400,0,560,2,3,0,2,1.5,3121.42112931,6390,0,25480.0,1,3,8,7,3,2,0,1,0,0,0,1,0,0,0,2,16986.6666667,5,3,5,5_0,69572.0,0,69572.0,0,4,7,90.0,45.0,3.3,0,1,7093.867173410666,7093.867173410666,0.0 +4228,3528,3527,0,16,52,111,52,50,2,14827,0,0,0,413,1,4,0,1,1.0,1295.99306856,0,200,17150.0,1,3,7,5,1,1,0,0,0,0,1,0,0,0,1,0,17150.0,5,3,5,5_0,1500.0,0,0.0,1500,13,16,0.0,0.0,0.0,0,1,152.94659863330074,0.0,152.94659863330074 +4229,3531,3530,2,3,72,112,78,70,0,1483,0,0,0,0,0,4,0,2,1.5,2213.97694798,0,0,26665.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,1,1,17776.6666667,5,3,5,5_0,14915.0,0,11000.0,3915,2,2,0.0,0.0,0.0,0,0,1520.7990124104538,1121.6083899775388,399.19062243291495 +4230,3538,3537,5,15,31,111,56,50,0,14839,0,0,99999,0,2,4,2,4,2.1,2259.86571507,0,0,36497.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,17379.5238095,5,3,5,5_0,5362.0,0,0.0,5362,1,10,150.0,56.25,5.56,0,1,546.7331079145057,0.0,546.7331079145057 +4231,3556,3555,0,8,22,111,55,20,0,1487,0,0,0,259,1,2,0,2,1.5,2533.3871665,0,0,26026.0,4,3,9,7,3,2,0,0,0,0,0,1,0,1,0,2,17350.6666667,5,3,5,5_0,16666.0,0,16666.0,0,3,8,0.0,0.0,0.0,0,1,1699.33867521506,1699.33867521506,0.0 +4232,3562,3561,2,24,41,111,42,50,0,14878,0,0,16,18,4,5,3,5,2.8,2499.21569172,1560,0,52327.0,1,3,6,4,4,2,0,1,0,0,1,0,0,1,1,1,18688.2142857,5,3,5,5_0,20000.0,0,20000.0,0,5,25,32.4,36.0,2.25,0,0,2039.2879817773432,2039.2879817773432,0.0 +4233,3569,3568,0,6,43,111,42,20,0,14885,0,0,0,0,1,5,2,3,1.8,1396.67170116,0,0,33406.0,1,1,7,6,2,1,0,0,0,0,1,0,0,0,0,1,18558.8888889,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 4234,3571,3570,6,6,74,112,75,33,0,14887,0,0,0,0,0,4,0,1,1.0,3435.41892481,2600,0,17566.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,17566.0,5,3,5,5_1,8000.0,0,0.0,8000,5,5,0.0,0.0,0.0,0,0,925.2769558277391,0.0,925.2769558277391 -4235,3576,3575,4,7,27,111,56,43,0,14894,0,265,0,249,2,2,0,2,1.5,2710.85215297,2363,0,26047.0,1,3,8,6,3,1,0,1,0,0,1,0,0,1,0,1,17364.6666667,5,3,5,5_0,20000.0,0,20000.0,0,4,9,0.0,0.0,0.0,0,0,2039.2879817773435,2039.2879817773435,0.0 -4236,3586,3585,6,10,43,111,54,10,0,14908,0,0,40,0,1,3,0,1,1.0,2549.98483112,0,0,17110.0,1,1,8,7,1,1,0,1,0,0,0,1,0,0,1,0,17110.0,5,3,5,5_0,10000.0,0,0.0,10000,7,10,0.0,40.0,3.3,0,0,1019.6439908886717,0.0,1019.6439908886717 -4237,3596,3595,5,5,41,111,63,31,0,14922,0,0,0,0,2,5,2,4,2.1,2838.28415436,0,0,38428.0,1,2,8,7,4,1,1,0,0,0,0,1,0,0,0,1,18299.047619,5,3,5,5_0,18000.0,0,18000.0,0,2,3,75.0,15.0,3.3,0,1,1835.3591835996092,1835.3591835996092,0.0 -4238,3605,3604,4,15,42,221,63,50,0,14935,0,0,445,268,2,3,1,3,1.8,3687.86639658,945,0,30595.0,1,3,1,2,4,2,0,1,0,1,0,0,0,0,2,0,16997.222222200002,5,3,5,5_0,20000.0,0,0.0,20000,10,15,86.4,36.6666666667,3.3,0,1,2039.2879817773435,0.0,2039.2879817773435 -4239,3611,3610,10,10,49,111,54,44,0,14943,0,350,0,0,2,6,1,3,2.0,1787.7593075,0,0,37630.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,18815.0,5,3,5,5_0,17343.0,0,17343.0,0,2,9,0.0,15.0,2.22,0,1,1768.3685733982236,1768.3685733982236,0.0 -4240,3648,3647,2,2,46,111,52,42,0,14991,0,0,30,286,1,2,0,1,1.0,1773.591502,0,0,18324.0,1,3,6,4,1,1,0,1,0,0,1,0,0,0,1,0,18324.0,5,3,5,5_0,11517.0,0,0.0,11517,3,3,134.0,45.0,3.3,0,1,1174.3239843064832,0.0,1174.3239843064832 +4235,3576,3575,4,7,27,111,56,43,0,14894,0,265,0,249,2,2,0,2,1.5,2710.85215297,2363,0,26047.0,1,3,8,6,3,1,0,1,0,0,1,0,0,1,0,1,17364.6666667,5,3,5,5_0,20000.0,0,20000.0,0,4,9,0.0,0.0,0.0,0,0,2039.2879817773432,2039.2879817773432,0.0 +4236,3586,3585,6,10,43,111,54,10,0,14908,0,0,40,0,1,3,0,1,1.0,2549.98483112,0,0,17110.0,1,1,8,7,1,1,0,1,0,0,0,1,0,0,1,0,17110.0,5,3,5,5_0,10000.0,0,0.0,10000,7,10,0.0,40.0,3.3,0,0,1019.6439908886716,0.0,1019.6439908886716 +4237,3596,3595,5,5,41,111,63,31,0,14922,0,0,0,0,2,5,2,4,2.1,2838.28415436,0,0,38428.0,1,2,8,7,4,1,1,0,0,0,0,1,0,0,0,1,18299.047619,5,3,5,5_0,18000.0,0,18000.0,0,2,3,75.0,15.0,3.3,0,1,1835.359183599609,1835.359183599609,0.0 +4238,3605,3604,4,15,42,221,63,50,0,14935,0,0,445,268,2,3,1,3,1.8,3687.86639658,945,0,30595.0,1,3,1,2,4,2,0,1,0,1,0,0,0,0,2,0,16997.2222222,5,3,5,5_0,20000.0,0,0.0,20000,10,15,86.4,36.6666666667,3.3,0,1,2039.2879817773432,0.0,2039.2879817773432 +4239,3611,3610,10,10,49,111,54,44,0,14943,0,350,0,0,2,6,1,3,2.0,1787.7593075,0,0,37630.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,18815.0,5,3,5,5_0,17343.0,0,17343.0,0,2,9,0.0,15.0,2.22,0,1,1768.368573398223,1768.368573398223,0.0 +4240,3648,3647,2,2,46,111,52,42,0,14991,0,0,30,286,1,2,0,1,1.0,1773.591502,0,0,18324.0,1,3,6,4,1,1,0,1,0,0,1,0,0,0,1,0,18324.0,5,3,5,5_0,11517.0,0,0.0,11517,3,3,134.0,45.0,3.3,0,1,1174.323984306483,0.0,1174.323984306483 4241,3650,3649,3,3,63,112,75,31,0,14993,0,0,0,0,0,4,0,2,1.5,2613.47988375,541,0,25840.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,0,2,17226.6666667,5,3,5,5_1,23726.0,0,23726.0,0,2,2,0.0,0.0,0.0,0,0,2744.1401317461173,2744.1401317461173,0.0 -4242,3655,3654,6,9,66,111,75,50,0,150,0,0,0,0,0,4,0,1,1.0,2732.18621205,0,0,17810.0,5,3,8,6,1,1,0,0,0,0,1,0,0,0,0,1,17810.0,5,3,5,5_0,10000.0,0,10000.0,0,10,10,0.0,0.0,0.0,0,0,1019.6439908886717,1019.6439908886717,0.0 +4242,3655,3654,6,9,66,111,75,50,0,150,0,0,0,0,0,4,0,1,1.0,2732.18621205,0,0,17810.0,5,3,8,6,1,1,0,0,0,0,1,0,0,0,0,1,17810.0,5,3,5,5_0,10000.0,0,10000.0,0,10,10,0.0,0.0,0.0,0,0,1019.6439908886716,1019.6439908886716,0.0 4243,3663,3662,12,12,76,112,78,70,0,1501,0,0,0,0,0,4,0,2,1.5,1604.49118222,0,0,27290.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,1,0,18193.3333333,5,3,5,5_1,9600.0,9600,0.0,0,4,13,0.0,0.0,0.0,0,0,1110.3323469932868,0.0,0.0 4244,3679,3678,7,12,59,400,78,50,0,15028,0,350,0,0,1,5,0,2,1.5,1959.29255762,3590,0,26256.0,5,1,0,0,3,1,0,1,1,0,0,0,0,0,0,1,17504.0,5,3,5,5_1,28000.0,0,28000.0,0,3,14,0.0,0.0,0.0,0,0,3238.469345397087,3238.469345397087,0.0 4245,3692,3691,3,17,42,400,63,71,0,15043,0,500,0,271,1,3,0,1,1.0,4415.55690425,4153,0,17218.0,1,3,0,0,1,1,0,1,1,0,0,0,0,1,0,1,17218.0,5,3,5,5_1,30000.0,0,30000.0,0,7,16,140.0,85.0,3.3,0,1,3469.7885843540216,3469.7885843540216,0.0 -4246,3722,3721,1,1,77,111,75,71,1,15080,0,0,0,0,1,4,1,3,2.0,5165.80196908,3120,18500,37863.0,5,1,6,4,4,1,0,0,0,0,1,0,0,0,1,0,18931.5,5,3,5,5_0,5567.0,0,0.0,5567,1,1,0.0,0.0,0.0,0,0,567.6358097277235,0.0,567.6358097277235 -4247,3728,3727,6,6,55,111,21,31,0,15089,0,350,0,0,3,5,1,3,2.0,3596.48235932,4160,0,35637.0,4,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,17818.5,5,3,5,5_0,4000.0,0,4000.0,0,3,4,184.8,36.6666666667,3.3,0,1,407.85759635546873,407.85759635546873,0.0 -4248,3732,3731,5,7,41,111,47,31,0,15092,0,1000,0,0,1,4,2,3,1.6,2454.97173193,3617,0,30524.0,1,2,8,7,2,1,0,1,0,0,0,1,0,0,0,1,19077.5,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 -4249,3734,3733,1,3,42,300,64,50,0,15096,0,320,0,0,2,6,1,3,1.8,2959.49132075,5141,0,31781.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17656.111111099995,5,3,5,5_1,14072.0,0,14072.0,0,1,3,63.6,34.6666666667,3.3,0,1,1627.5621653009932,1627.5621653009932,0.0 -4250,3758,3757,7,10,42,211,21,50,0,15129,0,96,0,0,2,6,2,4,2.5,2622.15336161,0,0,43010.0,1,2,3,3,4,1,0,1,0,1,0,0,0,0,0,1,17204.0,5,3,5,5_0,15000.0,0,15000.0,0,2,10,91.0,22.5,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4251,3763,3762,0,10,24,111,46,10,2,15134,0,0,210,320,1,1,0,2,1.5,3943.10206554,0,3000,25953.0,1,3,9,7,5,1,0,1,0,0,0,1,0,0,1,0,17302.0,5,3,5,5_0,30000.0,0,0.0,30000,5,11,0.0,0.0,0.0,0,1,3058.9319726660156,0.0,3058.9319726660156 -4252,3764,3763,0,1,39,112,21,50,0,15135,0,90,0,0,1,5,2,4,2.1,1411.78010108,0,0,35648.0,1,1,9,2,4,1,1,1,0,1,0,0,0,0,0,1,16975.238095200002,5,3,5,5_0,12000.0,0,12000.0,0,1,3,50.0,10.0,3.31,0,1,1223.5727890664061,1223.5727890664061,0.0 -4253,3775,3774,11,14,34,111,62,43,0,15149,0,200,0,0,1,5,2,4,2.1,2284.30186706,0,0,37421.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,17819.5238095,5,3,5,5_0,28226.0,0,28226.0,0,2,5,0.0,0.0,0.0,0,0,2878.047128682365,2878.047128682365,0.0 -4254,3780,3779,0,7,30,111,84,31,0,15159,0,400,0,513,0,2,0,1,1.0,2747.02846856,3276,0,18673.0,3,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18673.0,5,3,5,5_0,7000.0,0,7000.0,0,2,2,0.0,0.0,0.0,0,1,713.7507936220703,713.7507936220703,0.0 +4246,3722,3721,1,1,77,111,75,71,1,15080,0,0,0,0,1,4,1,3,2.0,5165.80196908,3120,18500,37863.0,5,1,6,4,4,1,0,0,0,0,1,0,0,0,1,0,18931.5,5,3,5,5_0,5567.0,0,0.0,5567,1,1,0.0,0.0,0.0,0,0,567.6358097277234,0.0,567.6358097277234 +4247,3728,3727,6,6,55,111,21,31,0,15089,0,350,0,0,3,5,1,3,2.0,3596.48235932,4160,0,35637.0,4,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,17818.5,5,3,5,5_0,4000.0,0,4000.0,0,3,4,184.8,36.6666666667,3.3,0,1,407.8575963554687,407.8575963554687,0.0 +4248,3732,3731,5,7,41,111,47,31,0,15092,0,1000,0,0,1,4,2,3,1.6,2454.97173193,3617,0,30524.0,1,2,8,7,2,1,0,1,0,0,0,1,0,0,0,1,19077.5,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 +4249,3734,3733,1,3,42,300,64,50,0,15096,0,320,0,0,2,6,1,3,1.8,2959.49132075,5141,0,31781.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17656.1111111,5,3,5,5_1,14072.0,0,14072.0,0,1,3,63.6,34.6666666667,3.3,0,1,1627.5621653009932,1627.5621653009932,0.0 +4250,3758,3757,7,10,42,211,21,50,0,15129,0,96,0,0,2,6,2,4,2.5,2622.15336161,0,0,43010.0,1,2,3,3,4,1,0,1,0,1,0,0,0,0,0,1,17204.0,5,3,5,5_0,15000.0,0,15000.0,0,2,10,91.0,22.5,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4251,3763,3762,0,10,24,111,46,10,2,15134,0,0,210,320,1,1,0,2,1.5,3943.10206554,0,3000,25953.0,1,3,9,7,5,1,0,1,0,0,0,1,0,0,1,0,17302.0,5,3,5,5_0,30000.0,0,0.0,30000,5,11,0.0,0.0,0.0,0,1,3058.9319726660146,0.0,3058.9319726660146 +4252,3764,3763,0,1,39,112,21,50,0,15135,0,90,0,0,1,5,2,4,2.1,1411.78010108,0,0,35648.0,1,1,9,2,4,1,1,1,0,1,0,0,0,0,0,1,16975.2380952,5,3,5,5_0,12000.0,0,12000.0,0,1,3,50.0,10.0,3.31,0,1,1223.572789066406,1223.572789066406,0.0 +4253,3775,3774,11,14,34,111,62,43,0,15149,0,200,0,0,1,5,2,4,2.1,2284.30186706,0,0,37421.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,17819.5238095,5,3,5,5_0,28226.0,0,28226.0,0,2,5,0.0,0.0,0.0,0,0,2878.0471286823645,2878.0471286823645,0.0 +4254,3780,3779,0,7,30,111,84,31,0,15159,0,400,0,513,0,2,0,1,1.0,2747.02846856,3276,0,18673.0,3,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18673.0,5,3,5,5_0,7000.0,0,7000.0,0,2,2,0.0,0.0,0.0,0,1,713.7507936220701,713.7507936220701,0.0 4255,3789,3788,0,24,63,112,11,50,0,15169,0,0,0,0,1,5,0,2,1.5,1909.47972006,0,0,28460.0,1,1,6,0,3,1,0,0,1,0,0,0,0,0,1,0,18973.3333333,5,3,5,5_1,3500.0,0,0.0,3500,18,18,0.0,20.0,2.2,0,1,404.8086681746359,0.0,404.8086681746359 -4256,3791,3790,8,10,63,112,78,71,0,15175,0,0,0,0,0,3,0,2,1.5,4271.80541307,0,0,28424.0,5,1,10,2,3,1,0,0,0,1,0,0,0,0,0,1,18949.3333333,5,3,5,5_0,20000.0,0,20000.0,0,8,8,0.0,0.0,0.0,0,0,2039.2879817773435,2039.2879817773435,0.0 +4256,3791,3790,8,10,63,112,78,71,0,15175,0,0,0,0,0,3,0,2,1.5,4271.80541307,0,0,28424.0,5,1,10,2,3,1,0,0,0,1,0,0,0,0,0,1,18949.3333333,5,3,5,5_0,20000.0,0,20000.0,0,8,8,0.0,0.0,0.0,0,0,2039.2879817773432,2039.2879817773432,0.0 4257,3797,3796,4,11,56,300,65,50,0,15187,0,0,300,0,1,3,0,1,1.0,1591.81884237,1301,0,18231.0,1,2,0,0,1,1,0,1,1,0,0,0,0,0,1,0,18231.0,5,3,5,5_1,35000.0,0,0.0,35000,3,12,0.0,0.0,0.0,0,0,4048.0866817463584,0.0,4048.0866817463584 4258,3810,3809,2,2,83,300,78,71,0,15204,0,0,0,0,0,6,0,2,1.5,2631.37072155,0,0,27306.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,18204.0,5,3,5,5_1,17781.0,0,17781.0,0,1,2,0.0,0.0,0.0,0,0,2056.5436939466285,2056.5436939466285,0.0 4259,3812,3811,0,0,66,111,77,60,0,15206,0,0,0,330,0,3,0,1,1.0,3366.44715181,0,0,17192.0,5,3,8,6,1,0,0,0,0,0,1,0,0,0,0,0,17192.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4260,3813,3812,2,2,24,111,63,42,0,15209,0,0,200,670,2,6,0,2,1.5,2768.28838674,0,0,27685.0,1,3,8,6,3,2,0,1,0,0,1,0,0,0,1,1,18456.6666667,5,3,5,5_0,17666.0,0,15000.0,2666,3,4,115.5,16.0,3.3,1,0,1801.3030743039276,1529.4659863330078,271.8370879709199 +4260,3813,3812,2,2,24,111,63,42,0,15209,0,0,200,670,2,6,0,2,1.5,2768.28838674,0,0,27685.0,1,3,8,6,3,2,0,1,0,0,1,0,0,0,1,1,18456.6666667,5,3,5,5_0,17666.0,0,15000.0,2666,3,4,115.5,16.0,3.3,1,0,1801.3030743039271,1529.4659863330073,271.8370879709198 4261,3823,3822,2,2,57,120,46,50,0,15223,0,199998,0,0,2,5,0,2,1.5,1852.74425466,0,0,27778.0,1,2,0,0,3,2,0,1,1,0,0,0,0,0,0,2,18518.6666667,5,3,5,5_1,25000.0,0,25000.0,0,2,4,232.4,60.0,3.3,0,1,2891.4904869616844,2891.4904869616844,0.0 4262,3844,3843,0,0,76,111,78,71,0,15253,0,0,0,0,0,2,0,1,1.0,3296.79487082,0,0,18283.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18283.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4263,3856,3855,1,1,65,112,77,50,1,15271,0,0,0,0,0,6,0,1,1.0,1509.01465669,0,16000,17532.0,5,4,7,1,1,1,0,0,0,1,0,0,0,0,0,1,17532.0,5,3,5,5_0,22300.0,0,22300.0,0,2,2,0.0,0.0,0.0,0,0,2273.806099681738,2273.806099681738,0.0 -4264,3858,3857,4,6,60,111,77,50,0,15276,0,0,0,0,0,5,0,2,1.5,1950.50930346,0,0,27730.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,18486.6666667,5,3,5,5_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 -4265,3866,3865,0,17,22,111,56,50,0,15292,0,0,0,328,2,3,0,2,1.5,6781.69778732,0,0,27621.0,1,3,8,6,3,1,0,1,0,0,1,0,0,1,1,0,18414.0,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.3099856695635,0.0,1111.3099856695635 -4266,3870,3869,4,5,32,221,21,31,0,15299,0,0,0,0,1,6,2,4,2.1,4060.14490285,3537,0,39734.0,1,2,1,2,4,1,0,0,0,1,0,0,0,0,0,1,18920.952381,5,3,5,5_0,42343.0,0,42343.0,0,4,5,0.0,0.0,0.0,0,1,4317.478550619903,4317.478550619903,0.0 +4263,3856,3855,1,1,65,112,77,50,1,15271,0,0,0,0,0,6,0,1,1.0,1509.01465669,0,16000,17532.0,5,4,7,1,1,1,0,0,0,1,0,0,0,0,0,1,17532.0,5,3,5,5_0,22300.0,0,22300.0,0,2,2,0.0,0.0,0.0,0,0,2273.8060996817376,2273.8060996817376,0.0 +4264,3858,3857,4,6,60,111,77,50,0,15276,0,0,0,0,0,5,0,2,1.5,1950.50930346,0,0,27730.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,18486.6666667,5,3,5,5_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 +4265,3866,3865,0,17,22,111,56,50,0,15292,0,0,0,328,2,3,0,2,1.5,6781.69778732,0,0,27621.0,1,3,8,6,3,1,0,1,0,0,1,0,0,1,1,0,18414.0,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.309985669563,0.0,1111.309985669563 +4266,3870,3869,4,5,32,221,21,31,0,15299,0,0,0,0,1,6,2,4,2.1,4060.14490285,3537,0,39734.0,1,2,1,2,4,1,0,0,0,1,0,0,0,0,0,1,18920.952381,5,3,5,5_0,42343.0,0,42343.0,0,4,5,0.0,0.0,0.0,0,1,4317.478550619902,4317.478550619902,0.0 4267,3873,3872,1,3,51,112,63,50,0,15301,0,190,0,0,2,5,1,3,2.0,1502.38468143,4473,0,35880.0,1,1,5,0,4,2,0,1,1,0,0,0,0,0,1,1,17940.0,5,3,5,5_1,14100.0,0,6100.0,8000,2,9,176.5,44.0,3.3,0,1,1630.80063464639,705.523678818651,925.2769558277391 -4268,3880,3879,4,5,34,112,64,50,0,15312,0,316,0,0,2,5,1,3,1.8,1517.88623697,2081,0,32617.0,1,2,4,0,4,2,0,1,1,0,0,0,0,0,0,2,18120.5555556,5,3,5,5_1,10000.0,0,10000.0,0,5,5,118.4,7.333333333330001,3.31,0,1,1156.596194784674,1156.596194784674,0.0 +4268,3880,3879,4,5,34,112,64,50,0,15312,0,316,0,0,2,5,1,3,1.8,1517.88623697,2081,0,32617.0,1,2,4,0,4,2,0,1,1,0,0,0,0,0,0,2,18120.5555556,5,3,5,5_1,10000.0,0,10000.0,0,5,5,118.4,7.33333333333,3.31,0,1,1156.596194784674,1156.596194784674,0.0 4269,3892,3891,4,9,36,300,69,43,0,15327,0,0,0,0,1,3,0,1,1.0,2847.76741875,2724,0,18690.0,1,4,0,0,1,1,0,0,1,0,0,0,0,0,0,1,18690.0,5,3,5,5_1,14000.0,0,14000.0,0,7,9,62.4,60.0,3.3,0,1,1619.2346726985436,1619.2346726985436,0.0 -4270,3894,3893,4,6,48,111,65,30,0,15329,0,0,80,260,1,1,0,1,1.0,4758.02173479,2271,0,18753.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,1,0,18753.0,5,3,5,5_0,10000.0,0,0.0,10000,6,6,0.0,70.0,5.55,0,1,1019.6439908886717,0.0,1019.6439908886717 +4270,3894,3893,4,6,48,111,65,30,0,15329,0,0,80,260,1,1,0,1,1.0,4758.02173479,2271,0,18753.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,1,0,18753.0,5,3,5,5_0,10000.0,0,0.0,10000,6,6,0.0,70.0,5.55,0,1,1019.6439908886716,0.0,1019.6439908886716 4271,3903,3902,2,2,76,120,86,71,0,15344,0,200,0,0,1,5,1,3,2.0,3109.73399515,0,0,34060.0,5,1,0,0,5,2,0,1,1,0,0,0,0,0,0,2,17030.0,5,3,5,5_1,27311.0,0,27311.0,0,5,5,0.0,0.0,0.0,0,1,3158.779867576423,3158.779867576423,0.0 4272,3904,3903,10,10,60,300,75,31,0,15345,0,190,0,0,1,6,1,3,2.0,1393.04564939,6656,0,35651.0,5,1,0,0,4,3,0,0,1,0,0,0,0,0,0,3,17825.5,5,3,5,5_1,10000.0,0,10000.0,0,7,13,0.0,0.0,0.0,1,0,1156.596194784674,1156.596194784674,0.0 -4273,3973,3972,1,6,71,111,74,42,2,15434,0,0,0,0,0,4,0,2,1.5,1412.75494116,0,11000,26358.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,17572.0,5,3,5,5_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,2039.2879817773435,2039.2879817773435,0.0 +4273,3973,3972,1,6,71,111,74,42,2,15434,0,0,0,0,0,4,0,2,1.5,1412.75494116,0,11000,26358.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,17572.0,5,3,5,5_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,2039.2879817773432,2039.2879817773432,0.0 4274,3982,3981,10,11,77,400,78,50,0,15446,0,0,0,0,0,2,0,2,1.5,3264.19244836,0,0,26455.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,17636.6666667,5,3,5,5_1,12000.0,0,12000.0,0,6,8,0.0,0.0,0.0,0,0,1387.9154337416087,1387.9154337416087,0.0 4275,3985,3984,2,2,72,112,75,50,0,15451,0,0,0,0,0,5,0,2,1.5,1626.70751862,0,0,27600.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,18400.0,5,3,5,5_1,15000.0,0,15000.0,0,3,3,0.0,0.0,0.0,0,0,1734.8942921770108,1734.8942921770108,0.0 -4276,3992,3991,11,11,47,111,22,50,0,15462,0,99999,0,813,2,6,2,4,2.3,2255.42946041,0,0,39497.0,1,3,9,7,4,2,1,1,0,0,0,1,0,1,0,2,17172.6086957,5,3,5,5_0,15000.0,0,15000.0,0,10,11,74.0,32.5,3.31,0,1,1529.4659863330078,1529.4659863330078,0.0 +4276,3992,3991,11,11,47,111,22,50,0,15462,0,99999,0,813,2,6,2,4,2.3,2255.42946041,0,0,39497.0,1,3,9,7,4,2,1,1,0,0,0,1,0,1,0,2,17172.6086957,5,3,5,5_0,15000.0,0,15000.0,0,10,11,74.0,32.5,3.31,0,1,1529.4659863330073,1529.4659863330073,0.0 4277,4015,4014,0,0,80,111,77,50,0,15496,0,0,0,0,0,1,0,1,1.0,3411.01858011,0,0,17369.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17369.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4278,4023,4022,0,0,64,111,77,60,1,15506,0,0,0,0,0,5,0,1,1.0,4192.86159088,0,18000,18256.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,0,1,18256.0,5,3,5,5_0,22300.0,0,22300.0,0,2,2,0.0,0.0,0.0,0,0,2273.806099681738,2273.806099681738,0.0 -4279,4029,4028,8,10,33,112,65,50,0,15512,0,0,400,0,2,5,2,4,2.1,1435.14440191,0,0,39709.0,1,3,7,1,4,2,0,0,0,1,0,0,0,0,1,1,18909.047619,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882813,2039.2879817773435,815.7151927109375 -4280,4031,4030,0,3,62,111,78,70,0,15514,0,0,99999,0,2,4,1,3,2.0,1465.62955348,2600,0,36917.0,5,1,9,7,4,3,1,1,0,0,0,1,0,0,1,2,18458.5,5,3,5,5_0,17915.0,0,10898.0,7017,1,1,0.0,0.0,0.0,1,0,1826.6922096770556,1111.2080212704745,715.484188406581 -4281,4035,4034,6,19,37,111,53,70,0,15519,0,50,0,300,1,3,0,1,1.0,2523.9041065,1300,0,17090.0,1,3,6,4,1,1,0,1,0,0,1,0,0,0,0,1,17090.0,5,3,5,5_0,5500.0,0,5500.0,0,15,20,44.5,40.0,3.3,0,1,560.8041949887695,560.8041949887695,0.0 -4282,4047,4046,3,8,44,111,52,50,0,15535,0,5,0,107,1,3,0,1,1.0,2294.45237771,0,0,18558.0,1,3,6,5,1,1,1,1,0,0,1,0,0,1,0,1,18558.0,5,3,5,5_0,6000.0,0,6000.0,0,1,8,0.0,0.0,0.0,0,0,611.7863945332031,611.7863945332031,0.0 -4283,4055,4054,4,13,48,112,55,50,0,15548,0,180,0,0,4,6,3,5,2.8,1725.6528302000002,7124,0,47363.0,1,2,8,0,4,3,0,1,1,0,0,0,0,0,0,3,16915.3571429,5,3,5,5_1,30000.0,0,30000.0,0,12,12,409.8,55.0,3.31,0,1,3469.7885843540216,3469.7885843540216,0.0 -4284,4062,4061,1,3,46,112,47,50,2,15558,0,300,0,0,1,4,0,1,1.0,1918.38625064,0,9500,18911.0,1,2,9,2,1,1,0,1,0,1,0,0,0,0,0,1,18911.0,5,3,5,5_0,8656.0,0,8656.0,0,1,3,28.8,20.0,3.3,0,1,882.6038385132343,882.6038385132343,0.0 -4285,4065,4064,16,16,91,111,86,70,0,15561,0,0,0,0,0,4,0,2,1.5,4104.04739057,0,0,25640.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,17093.3333333,5,3,5,5_0,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 +4278,4023,4022,0,0,64,111,77,60,1,15506,0,0,0,0,0,5,0,1,1.0,4192.86159088,0,18000,18256.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,0,1,18256.0,5,3,5,5_0,22300.0,0,22300.0,0,2,2,0.0,0.0,0.0,0,0,2273.8060996817376,2273.8060996817376,0.0 +4279,4029,4028,8,10,33,112,65,50,0,15512,0,0,400,0,2,5,2,4,2.1,1435.14440191,0,0,39709.0,1,3,7,1,4,2,0,0,0,1,0,0,0,0,1,1,18909.047619,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882804,2039.2879817773432,815.7151927109373 +4280,4031,4030,0,3,62,111,78,70,0,15514,0,0,99999,0,2,4,1,3,2.0,1465.62955348,2600,0,36917.0,5,1,9,7,4,3,1,1,0,0,0,1,0,0,1,2,18458.5,5,3,5,5_0,17915.0,0,10898.0,7017,1,1,0.0,0.0,0.0,1,0,1826.6922096770552,1111.2080212704743,715.4841884065809 +4281,4035,4034,6,19,37,111,53,70,0,15519,0,50,0,300,1,3,0,1,1.0,2523.9041065,1300,0,17090.0,1,3,6,4,1,1,0,1,0,0,1,0,0,0,0,1,17090.0,5,3,5,5_0,5500.0,0,5500.0,0,15,20,44.5,40.0,3.3,0,1,560.8041949887694,560.8041949887694,0.0 +4282,4047,4046,3,8,44,111,52,50,0,15535,0,5,0,107,1,3,0,1,1.0,2294.45237771,0,0,18558.0,1,3,6,5,1,1,1,1,0,0,1,0,0,1,0,1,18558.0,5,3,5,5_0,6000.0,0,6000.0,0,1,8,0.0,0.0,0.0,0,0,611.786394533203,611.786394533203,0.0 +4283,4055,4054,4,13,48,112,55,50,0,15548,0,180,0,0,4,6,3,5,2.8,1725.6528302,7124,0,47363.0,1,2,8,0,4,3,0,1,1,0,0,0,0,0,0,3,16915.3571429,5,3,5,5_1,30000.0,0,30000.0,0,12,12,409.8,55.0,3.31,0,1,3469.7885843540216,3469.7885843540216,0.0 +4284,4062,4061,1,3,46,112,47,50,2,15558,0,300,0,0,1,4,0,1,1.0,1918.38625064,0,9500,18911.0,1,2,9,2,1,1,0,1,0,1,0,0,0,0,0,1,18911.0,5,3,5,5_0,8656.0,0,8656.0,0,1,3,28.8,20.0,3.3,0,1,882.603838513234,882.603838513234,0.0 +4285,4065,4064,16,16,91,111,86,70,0,15561,0,0,0,0,0,4,0,2,1.5,4104.04739057,0,0,25640.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,17093.3333333,5,3,5,5_0,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 4286,4070,4069,6,19,68,112,74,70,0,15568,0,0,0,0,0,5,0,2,1.5,1011.56251224,0,0,27801.0,5,1,5,0,3,1,0,0,1,0,0,0,0,0,1,0,18534.0,5,3,5,5_1,3500.0,0,0.0,3500,15,20,0.0,0.0,0.0,0,0,404.8086681746359,0.0,404.8086681746359 -4287,4079,4078,15,15,47,111,63,50,0,15581,0,0,30,0,1,3,0,1,1.0,1852.67398891,1040,0,19023.0,4,1,9,7,1,1,0,1,0,0,0,1,0,0,1,0,19023.0,5,3,5,5_0,10704.0,0,0.0,10704,1,16,120.5,75.0,3.3,0,1,1091.4269278472343,0.0,1091.4269278472343 -4288,4090,4089,0,6,39,111,67,50,2,15600,0,1000,0,45,1,3,0,1,1.0,2332.67378891,0,8000,18707.0,2,3,7,5,1,1,0,1,0,0,1,0,0,1,0,1,18707.0,5,3,5,5_0,15000.0,0,15000.0,0,2,6,0.0,20.0,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4289,4094,4093,1,5,52,111,68,71,0,15607,0,99999,0,199,1,5,3,4,2.3,1875.99039197,0,0,38862.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,16896.5217391,5,3,5,5_0,15000.0,0,15000.0,0,7,8,102.5,27.5,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 +4287,4079,4078,15,15,47,111,63,50,0,15581,0,0,30,0,1,3,0,1,1.0,1852.67398891,1040,0,19023.0,4,1,9,7,1,1,0,1,0,0,0,1,0,0,1,0,19023.0,5,3,5,5_0,10704.0,0,0.0,10704,1,16,120.5,75.0,3.3,0,1,1091.426927847234,0.0,1091.426927847234 +4288,4090,4089,0,6,39,111,67,50,2,15600,0,1000,0,45,1,3,0,1,1.0,2332.67378891,0,8000,18707.0,2,3,7,5,1,1,0,1,0,0,1,0,0,1,0,1,18707.0,5,3,5,5_0,15000.0,0,15000.0,0,2,6,0.0,20.0,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4289,4094,4093,1,5,52,111,68,71,0,15607,0,99999,0,199,1,5,3,4,2.3,1875.99039197,0,0,38862.0,1,3,8,7,2,1,0,1,0,0,0,1,0,1,0,1,16896.5217391,5,3,5,5_0,15000.0,0,15000.0,0,7,8,102.5,27.5,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 4290,4126,4125,3,6,42,112,63,50,0,15651,0,280,0,0,2,4,2,4,2.3,3056.2245598,8164,0,41505.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,18045.6521739,5,3,5,5_1,6000.0,0,6000.0,0,6,6,0.0,80.0,3.3,1,1,693.9577168708043,693.9577168708043,0.0 4291,4136,4135,0,0,71,300,78,70,1,15669,0,0,0,0,0,5,1,3,2.0,2646.15024907,2601,17000,34113.0,5,2,0,0,4,1,0,0,1,0,0,0,0,0,1,0,17056.5,5,3,5,5_1,3000.0,0,0.0,3000,3,3,0.0,0.0,0.0,0,0,346.9788584354022,0.0,346.9788584354022 -4292,4138,4137,1,1,38,111,52,71,1,15671,0,200,0,0,2,4,4,6,2.9,1837.10081307,2652,12200,52565.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,18125.862069,5,3,5,5_0,20000.0,0,20000.0,0,3,4,0.0,0.0,0.0,0,1,2039.2879817773435,2039.2879817773435,0.0 +4292,4138,4137,1,1,38,111,52,71,1,15671,0,200,0,0,2,4,4,6,2.9,1837.10081307,2652,12200,52565.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,18125.862069,5,3,5,5_0,20000.0,0,20000.0,0,3,4,0.0,0.0,0.0,0,1,2039.2879817773432,2039.2879817773432,0.0 4293,4144,4143,4,11,45,112,64,71,0,1569,0,200,0,0,2,5,2,4,2.1,2375.83063801,1040,0,35760.0,1,2,5,0,4,2,0,1,1,0,0,0,0,1,0,2,17028.5714286,5,3,5,5_1,34962.0,0,34962.0,0,1,11,26.6,10.0,0.0,0,1,4043.691616206177,4043.691616206177,0.0 4294,4157,4156,12,12,53,111,52,60,0,15707,0,0,200,385,1,3,0,1,1.0,3214.13466273,1354,0,18273.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,1,0,18273.0,5,3,5,5_0,11198.0,0,0.0,11198,3,11,0.0,0.0,0.0,0,0,1141.7973409971346,0.0,1141.7973409971346 -4295,4158,4157,11,11,58,111,42,20,0,15709,0,0,0,0,1,7,1,3,2.0,2448.6812895,0,0,34736.0,1,1,10,8,4,3,0,0,0,0,0,0,1,0,2,1,17368.0,5,3,5,5_0,13000.0,0,8000.0,5000,5,5,111.5,40.0,3.3,0,1,1325.5371881552735,815.7151927109375,509.82199544433587 -4296,4160,4159,5,20,29,111,47,20,0,15710,0,0,100,0,1,3,0,1,1.0,1938.72735862,0,0,17798.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,1,0,17798.0,5,3,5,5_0,3313.0,0,0.0,3313,7,20,81.0,30.0,3.32,0,1,337.808054181417,0.0,337.808054181417 -4297,4175,4174,2,15,37,111,85,41,0,15731,0,0,0,0,0,3,0,1,1.0,3620.95527501,1040,0,18487.0,7,3,8,6,1,1,0,0,0,0,1,0,0,1,1,0,18487.0,5,3,5,5_0,3000.0,0,0.0,3000,11,16,0.0,0.0,0.0,0,0,305.89319726660153,0.0,305.89319726660153 +4295,4158,4157,11,11,58,111,42,20,0,15709,0,0,0,0,1,7,1,3,2.0,2448.6812895,0,0,34736.0,1,1,10,8,4,3,0,0,0,0,0,0,1,0,2,1,17368.0,5,3,5,5_0,13000.0,0,8000.0,5000,5,5,111.5,40.0,3.3,0,1,1325.537188155273,815.7151927109373,509.8219954443358 +4296,4160,4159,5,20,29,111,47,20,0,15710,0,0,100,0,1,3,0,1,1.0,1938.72735862,0,0,17798.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,1,0,17798.0,5,3,5,5_0,3313.0,0,0.0,3313,7,20,81.0,30.0,3.32,0,1,337.8080541814169,0.0,337.8080541814169 +4297,4175,4174,2,15,37,111,85,41,0,15731,0,0,0,0,0,3,0,1,1.0,3620.95527501,1040,0,18487.0,7,3,8,6,1,1,0,0,0,0,1,0,0,1,1,0,18487.0,5,3,5,5_0,3000.0,0,0.0,3000,11,16,0.0,0.0,0.0,0,0,305.8931972666015,0.0,305.8931972666015 4298,4190,4189,15,15,41,300,63,50,0,15752,0,160,0,0,1,2,0,1,1.0,1876.14010854,1924,0,17441.0,1,2,0,0,1,1,0,1,1,0,0,0,0,1,0,1,17441.0,5,3,5,5_1,30000.0,0,30000.0,0,7,16,140.0,85.0,3.3,0,1,3469.7885843540216,3469.7885843540216,0.0 -4299,4208,4207,11,26,51,111,63,50,0,15778,0,125,0,0,2,2,6,8,4.5,960.710441775,1042,0,79750.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,17722.222222200002,5,3,5,5_0,4500.0,0,4500.0,0,8,10,43.0,29.3333333333,3.33,0,1,458.8397958999023,458.8397958999023,0.0 +4299,4208,4207,11,26,51,111,63,50,0,15778,0,125,0,0,2,2,6,8,4.5,960.710441775,1042,0,79750.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,17722.2222222,5,3,5,5_0,4500.0,0,4500.0,0,8,10,43.0,29.3333333333,3.33,0,1,458.83979589990224,458.83979589990224,0.0 4300,4209,4208,3,3,54,300,11,50,0,15779,0,200,0,0,2,7,0,2,1.5,1942.57933689,3432,0,26135.0,1,1,0,0,3,3,0,1,1,0,0,0,0,0,2,1,17423.3333333,5,3,5,5_1,25769.0,0,16353.0,9416,5,5,268.5,83.3333333333,3.3,0,1,2980.432734340626,1891.3817573313772,1089.050977009249 4301,4211,4210,0,0,89,111,77,70,0,15780,0,0,0,0,0,3,0,1,1.0,2182.81111079,0,0,17217.0,5,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,17217.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4302,4216,4215,1,1,73,111,75,71,2,15786,0,0,0,0,0,6,0,2,1.5,2179.33514675,826,18000,26873.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,17915.3333333,5,3,5,5_0,8700.0,0,8700.0,0,1,1,0.0,0.0,0.0,0,0,887.0902720731445,887.0902720731445,0.0 -4303,4224,4223,0,14,42,111,37,20,0,15796,0,0,0,0,1,4,0,1,1.0,3342.06800484,2604,0,18439.0,4,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,18439.0,5,3,5,5_0,10000.0,0,0.0,10000,9,10,15.5,20.0,3.3,0,1,1019.6439908886717,0.0,1019.6439908886717 -4304,4225,4224,9,15,39,300,62,50,0,15797,0,200,140,0,2,6,2,4,2.1,3488.97375571,5253,0,38627.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,1,1,18393.809523800002,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.10997722168,2039.2879817773435,509.82199544433587 -4305,4227,4226,2,2,39,112,38,12,0,1580,0,0,0,0,1,6,2,4,2.1,5288.65879944,0,0,39815.0,1,3,9,1,4,2,0,0,0,1,0,0,0,0,0,2,18959.5238095,5,3,5,5_0,25000.0,0,25000.0,0,1,2,0.0,0.0,0.0,0,1,2549.10997722168,2549.10997722168,0.0 -4306,4233,4232,4,7,23,111,43,33,0,1591,0,280,0,450,1,3,0,2,1.5,3388.66855074,0,0,26668.0,1,3,8,7,3,2,0,1,0,0,0,1,0,1,1,1,17778.6666667,5,3,5,5_0,17666.0,0,15000.0,2666,3,4,115.5,16.0,3.3,1,0,1801.3030743039276,1529.4659863330078,271.8370879709199 -4307,4240,4239,0,21,68,111,75,41,0,1600,0,0,0,0,0,6,0,2,1.5,2142.81593393,2652,0,26612.6363636,5,1,7,5,3,3,0,0,0,0,1,0,0,0,3,0,17741.7575758,5,3,5,5_0,3000.0,0,0.0,3000,23,23,0.0,0.0,0.0,0,0,305.89319726660153,0.0,305.89319726660153 -4308,4260,4259,5,7,44,400,47,50,0,163,0,80,400,0,2,6,2,4,2.1,1916.36539479,2080,0,37804.0,1,3,0,1,4,2,0,1,0,1,0,0,0,1,1,1,18001.9047619,5,3,5,5_0,12487.0,0,11287.0,1200,0,8,161.3,40.0,3.3,0,1,1273.2294514226844,1150.8721725160437,122.35727890664062 -4309,4268,4267,0,8,24,111,63,50,2,1642,0,0,0,363,2,2,1,3,1.8,2766.19198854,0,6200,34152.0,1,3,7,5,4,1,0,0,0,0,1,0,0,1,0,1,18973.3333333,5,3,5,5_0,24000.0,0,24000.0,0,3,12,142.5,27.0,3.3,0,1,2447.1455781328123,2447.1455781328123,0.0 -4310,4277,4276,1,1,73,221,72,71,1,1653,0,0,0,0,0,3,0,2,1.5,2325.99009092,0,14095,25940.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,0,1,17293.3333333,5,3,5,5_0,8700.0,0,8700.0,0,1,1,0.0,0.0,0.0,0,0,887.0902720731445,887.0902720731445,0.0 -4311,4280,4279,1,18,46,112,45,42,2,1657,0,210,0,0,2,5,2,4,2.5,2127.3129921,520,1400,47377.0,1,2,7,4,4,3,0,0,0,0,1,0,0,0,0,3,18950.8,5,3,5,5_0,13672.0,0,13672.0,0,3,11,192.0,50.0,3.3,0,1,1394.057264342992,1394.057264342992,0.0 +4302,4216,4215,1,1,73,111,75,71,2,15786,0,0,0,0,0,6,0,2,1.5,2179.33514675,826,18000,26873.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,17915.3333333,5,3,5,5_0,8700.0,0,8700.0,0,1,1,0.0,0.0,0.0,0,0,887.0902720731443,887.0902720731443,0.0 +4303,4224,4223,0,14,42,111,37,20,0,15796,0,0,0,0,1,4,0,1,1.0,3342.06800484,2604,0,18439.0,4,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,18439.0,5,3,5,5_0,10000.0,0,0.0,10000,9,10,15.5,20.0,3.3,0,1,1019.6439908886716,0.0,1019.6439908886716 +4304,4225,4224,9,15,39,300,62,50,0,15797,0,200,140,0,2,6,2,4,2.1,3488.97375571,5253,0,38627.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,1,1,18393.8095238,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.109977221679,2039.2879817773432,509.8219954443358 +4305,4227,4226,2,2,39,112,38,12,0,1580,0,0,0,0,1,6,2,4,2.1,5288.65879944,0,0,39815.0,1,3,9,1,4,2,0,0,0,1,0,0,0,0,0,2,18959.5238095,5,3,5,5_0,25000.0,0,25000.0,0,1,2,0.0,0.0,0.0,0,1,2549.109977221679,2549.109977221679,0.0 +4306,4233,4232,4,7,23,111,43,33,0,1591,0,280,0,450,1,3,0,2,1.5,3388.66855074,0,0,26668.0,1,3,8,7,3,2,0,1,0,0,0,1,0,1,1,1,17778.6666667,5,3,5,5_0,17666.0,0,15000.0,2666,3,4,115.5,16.0,3.3,1,0,1801.3030743039271,1529.4659863330073,271.8370879709198 +4307,4240,4239,0,21,68,111,75,41,0,1600,0,0,0,0,0,6,0,2,1.5,2142.81593393,2652,0,26612.6363636,5,1,7,5,3,3,0,0,0,0,1,0,0,0,3,0,17741.7575758,5,3,5,5_0,3000.0,0,0.0,3000,23,23,0.0,0.0,0.0,0,0,305.8931972666015,0.0,305.8931972666015 +4308,4260,4259,5,7,44,400,47,50,0,163,0,80,400,0,2,6,2,4,2.1,1916.36539479,2080,0,37804.0,1,3,0,1,4,2,0,1,0,1,0,0,0,1,1,1,18001.9047619,5,3,5,5_0,12487.0,0,11287.0,1200,0,8,161.3,40.0,3.3,0,1,1273.2294514226842,1150.8721725160437,122.35727890664059 +4309,4268,4267,0,8,24,111,63,50,2,1642,0,0,0,363,2,2,1,3,1.8,2766.19198854,0,6200,34152.0,1,3,7,5,4,1,0,0,0,0,1,0,0,1,0,1,18973.3333333,5,3,5,5_0,24000.0,0,24000.0,0,3,12,142.5,27.0,3.3,0,1,2447.145578132812,2447.145578132812,0.0 +4310,4277,4276,1,1,73,221,72,71,1,1653,0,0,0,0,0,3,0,2,1.5,2325.99009092,0,14095,25940.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,0,1,17293.3333333,5,3,5,5_0,8700.0,0,8700.0,0,1,1,0.0,0.0,0.0,0,0,887.0902720731443,887.0902720731443,0.0 +4311,4280,4279,1,18,46,112,45,42,2,1657,0,210,0,0,2,5,2,4,2.5,2127.3129921,520,1400,47377.0,1,2,7,4,4,3,0,0,0,0,1,0,0,0,0,3,18950.8,5,3,5,5_0,13672.0,0,13672.0,0,3,11,192.0,50.0,3.3,0,1,1394.0572643429919,1394.0572643429919,0.0 4312,4283,4282,8,15,51,300,68,50,0,1660,0,50,0,0,2,4,2,4,2.5,960.233767121,3380,0,43331.0,4,1,0,0,4,2,0,0,1,0,0,0,0,0,0,2,17332.4,5,3,5,5_1,9000.0,0,9000.0,0,8,17,67.5,25.0,0.0,0,1,1040.9365753062064,1040.9365753062064,0.0 4313,4305,4304,10,19,41,300,43,41,0,1689,0,100,0,0,2,5,2,4,2.3,2303.91154754,0,0,42478.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,18468.6956522,5,3,5,5_1,7000.0,0,7000.0,0,11,16,166.5,17.5,3.3,0,1,809.6173363492718,809.6173363492718,0.0 -4314,4311,4310,7,19,56,111,62,50,0,1697,0,600,0,0,2,4,0,2,1.5,3153.40074679,2496,0,26841.0,1,1,8,7,3,2,0,1,0,0,0,1,0,0,1,1,17894.0,5,3,5,5_0,31517.0,0,20000.0,11517,3,15,0.0,0.0,0.0,1,0,3213.611966083827,2039.2879817773435,1174.3239843064832 +4314,4311,4310,7,19,56,111,62,50,0,1697,0,600,0,0,2,4,0,2,1.5,3153.40074679,2496,0,26841.0,1,1,8,7,3,2,0,1,0,0,0,1,0,0,1,1,17894.0,5,3,5,5_0,31517.0,0,20000.0,11517,3,15,0.0,0.0,0.0,1,0,3213.6119660838262,2039.2879817773432,1174.323984306483 4315,4312,4311,0,13,47,112,62,71,0,17,0,0,0,0,1,4,1,2,1.5,5744.89158701,0,0,26178.0,4,1,7,0,2,1,0,0,1,0,0,0,0,0,1,0,17452.0,5,3,5,5_1,5915.0,0,0.0,5915,15,18,0.0,0.0,0.0,1,0,684.1266492151345,0.0,684.1266492151345 -4316,4314,4313,7,7,40,300,43,20,0,1700,0,400,400,0,2,4,2,4,2.1,1636.38001012,2490,0,39052.0,1,3,0,0,4,2,1,1,1,0,0,0,0,0,1,1,18596.190476199998,5,3,5,5_1,5043.0,0,1500.0,3543,2,7,91.6,23.3333333333,3.31,0,1,583.271461029911,173.4894292177011,409.78203181220994 +4316,4314,4313,7,7,40,300,43,20,0,1700,0,400,400,0,2,4,2,4,2.1,1636.38001012,2490,0,39052.0,1,3,0,0,4,2,1,1,1,0,0,0,0,0,1,1,18596.1904762,5,3,5,5_1,5043.0,0,1500.0,3543,2,7,91.6,23.3333333333,3.31,0,1,583.271461029911,173.4894292177011,409.78203181220994 4317,4326,4325,0,0,81,111,78,70,0,1716,0,0,0,0,0,5,0,1,1.0,3095.09871,0,0,17392.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17392.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4318,4327,4326,4,5,53,300,46,50,0,1719,0,700,0,0,1,4,0,1,1.0,1810.36082248,3640,0,18330.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,1,18330.0,5,3,5,5_1,19336.0,0,19336.0,0,1,5,53.5,24.0,3.3,0,1,2236.3944022356454,2236.3944022356454,0.0 4319,4328,4327,4,10,40,112,67,50,0,172,0,220,180,0,2,4,3,5,2.4,1145.31910708,3016,0,45812.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,1,1,19088.3333333,5,3,5,5_1,25000.0,0,16000.0,9000,3,5,61.6,20.4,1.1,0,1,2891.4904869616844,1850.5539116554783,1040.9365753062064 4320,4333,4332,0,0,60,111,35,20,0,1727,0,0,0,0,2,2,0,2,1.5,1123.43242116,0,0,26590.0,1,4,4,4,3,0,0,0,0,0,1,0,0,0,0,0,17726.6666667,5,3,5,5_0,0.0,0,0.0,0,0,0,114.0,120.0,5.5,0,0,0.0,0.0,0.0 4321,4343,4342,0,0,78,111,86,71,0,1742,0,0,0,30,0,3,0,1,1.0,2771.00883936,8944,0,17172.0,5,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,17172.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4322,4352,4351,6,6,71,111,78,50,0,1754,0,0,0,0,0,5,0,2,1.5,1141.32516269,2080,0,26870.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17913.3333333,5,3,5,5_0,6000.0,0,0.0,6000,3,7,0.0,0.0,0.0,0,0,611.7863945332031,0.0,611.7863945332031 -4323,4373,4372,0,26,45,111,65,31,2,178,0,0,0,740,2,4,2,4,2.3,2216.97351119,0,1200,43624.0,1,3,7,5,4,1,0,0,0,0,1,0,0,0,1,0,18966.9565217,5,3,5,5_0,16000.0,0,0.0,16000,4,14,58.0,38.0,0.0,0,1,1631.430385421875,0.0,1631.430385421875 +4322,4352,4351,6,6,71,111,78,50,0,1754,0,0,0,0,0,5,0,2,1.5,1141.32516269,2080,0,26870.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17913.3333333,5,3,5,5_0,6000.0,0,0.0,6000,3,7,0.0,0.0,0.0,0,0,611.786394533203,0.0,611.786394533203 +4323,4373,4372,0,26,45,111,65,31,2,178,0,0,0,740,2,4,2,4,2.3,2216.97351119,0,1200,43624.0,1,3,7,5,4,1,0,0,0,0,1,0,0,0,1,0,18966.9565217,5,3,5,5_0,16000.0,0,0.0,16000,4,14,58.0,38.0,0.0,0,1,1631.4303854218747,0.0,1631.4303854218747 4324,4388,4387,9,10,55,120,62,50,0,18,0,0,30,0,1,3,0,2,1.5,1144.00452916,1924,0,28130.0,1,2,0,0,3,1,0,1,1,0,0,0,0,0,1,0,18753.3333333,5,3,5,5_1,20000.0,0,0.0,20000,9,9,145.0,42.5,3.33,0,1,2313.192389569348,0.0,2313.192389569348 -4325,4397,4396,0,10,43,111,52,50,0,181,0,225,255,0,2,5,2,4,2.3,2073.46488485,3692,0,39374.0,1,2,5,4,4,3,0,1,0,0,1,0,0,0,2,1,17119.130434799998,5,3,5,5_0,40000.0,0,20000.0,20000,2,11,114.0,70.0,3.3,0,1,4078.575963554687,2039.2879817773435,2039.2879817773435 +4325,4397,4396,0,10,43,111,52,50,0,181,0,225,255,0,2,5,2,4,2.3,2073.46488485,3692,0,39374.0,1,2,5,4,4,3,0,1,0,0,1,0,0,0,2,1,17119.1304348,5,3,5,5_0,40000.0,0,20000.0,20000,2,11,114.0,70.0,3.3,0,1,4078.5759635546865,2039.2879817773432,2039.2879817773432 4326,4404,4403,3,11,66,112,78,70,0,182,0,534,0,0,1,4,0,2,1.5,1556.2076459,2152,0,25368.0,5,1,8,0,3,1,0,1,1,0,0,0,0,0,0,1,16912.0,5,3,5,5_1,10000.0,0,10000.0,0,10,13,0.0,0.0,0.0,0,1,1156.596194784674,1156.596194784674,0.0 4327,4413,4412,1,1,42,112,47,60,1,1829,0,1300,0,0,2,5,3,5,2.4,1772.88001329,3208,21700,45177.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,18823.75,5,3,5,5_1,11000.0,0,11000.0,0,2,2,38.0,8.0,3.3,0,1,1272.2558142631412,1272.2558142631412,0.0 -4328,4415,4414,10,12,35,111,52,33,0,1830,0,70,70,0,2,4,2,4,2.1,1573.21244933,0,0,36967.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,1,1,17603.3333333,5,3,5,5_0,26000.0,0,25000.0,1000,2,9,13.0,26.6666666667,3.3,0,1,2651.074376310547,2549.10997722168,101.96439908886718 +4328,4415,4414,10,12,35,111,52,33,0,1830,0,70,70,0,2,4,2,4,2.1,1573.21244933,0,0,36967.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,1,1,17603.3333333,5,3,5,5_0,26000.0,0,25000.0,1000,2,9,13.0,26.6666666667,3.3,0,1,2651.074376310546,2549.109977221679,101.96439908886717 4329,4448,4447,4,11,55,112,45,41,0,1874,0,192,0,0,2,7,0,2,1.5,2027.34103902,2394,0,27300.0,1,3,7,0,3,2,0,0,1,0,0,0,0,0,0,2,18200.0,5,3,5,5_1,31000.0,0,31000.0,0,2,13,121.5,30.0,3.3,0,1,3585.448203832489,3585.448203832489,0.0 -4330,4471,4470,6,16,63,111,77,42,0,1905,0,0,0,340,0,4,0,1,1.0,2576.32945068,3380,0,18697.0,5,3,6,4,1,1,0,0,0,0,1,0,0,0,1,0,18697.0,5,3,5,5_0,4000.0,0,0.0,4000,16,16,0.0,0.0,0.0,0,0,407.85759635546873,0.0,407.85759635546873 -4331,4486,4485,23,23,86,221,78,71,0,193,0,0,0,0,0,3,0,2,1.5,5162.07821372,1560,0,27667.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,18444.6666667,5,3,5,5_0,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 +4330,4471,4470,6,16,63,111,77,42,0,1905,0,0,0,340,0,4,0,1,1.0,2576.32945068,3380,0,18697.0,5,3,6,4,1,1,0,0,0,0,1,0,0,0,1,0,18697.0,5,3,5,5_0,4000.0,0,0.0,4000,16,16,0.0,0.0,0.0,0,0,407.8575963554687,0.0,407.8575963554687 +4331,4486,4485,23,23,86,221,78,71,0,193,0,0,0,0,0,3,0,2,1.5,5162.07821372,1560,0,27667.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,18444.6666667,5,3,5,5_0,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 4332,4504,4503,1,1,66,300,78,71,1,1953,0,0,0,370,0,3,0,1,1.0,3438.22042729,1040,55000,18096.0,5,3,0,0,1,1,0,0,1,0,0,0,0,0,0,1,18096.0,5,3,5,5_1,5500.0,0,5500.0,0,3,3,0.0,0.0,0.0,0,0,636.1279071315706,636.1279071315706,0.0 4333,4511,4510,1,10,47,112,43,33,2,1961,0,530,99999,0,2,7,3,5,3.0,2333.76724898,2341,3300,56861.0,1,1,5,0,4,5,0,1,1,0,0,0,0,0,2,3,18953.6666667,5,3,5,5_1,53445.0,0,53445.0,0,8,9,111.5,28.0,0.0,0,1,6181.428363026689,6181.428363026689,0.0 -4334,4525,4524,0,11,48,111,56,71,0,1981,0,0,0,82,2,5,3,4,2.1,2445.56343203,520,0,36907.0,4,3,8,7,2,1,0,0,0,0,0,1,0,1,1,0,17574.761904799998,5,3,5,5_0,16000.0,0,0.0,16000,7,7,138.0,26.6666666667,0.0,0,1,1631.430385421875,0.0,1631.430385421875 -4335,4533,4532,15,17,68,111,74,41,0,1992,0,0,0,760,0,5,0,2,1.5,1925.09699448,2080,0,27027.0,5,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,18018.0,5,3,5,5_0,28891.0,0,28891.0,0,1,17,0.0,0.0,0.0,0,0,2945.8534540764617,2945.8534540764617,0.0 +4334,4525,4524,0,11,48,111,56,71,0,1981,0,0,0,82,2,5,3,4,2.1,2445.56343203,520,0,36907.0,4,3,8,7,2,1,0,0,0,0,0,1,0,1,1,0,17574.7619048,5,3,5,5_0,16000.0,0,0.0,16000,7,7,138.0,26.6666666667,0.0,0,1,1631.4303854218747,0.0,1631.4303854218747 +4335,4533,4532,15,17,68,111,74,41,0,1992,0,0,0,760,0,5,0,2,1.5,1925.09699448,2080,0,27027.0,5,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,18018.0,5,3,5,5_0,28891.0,0,28891.0,0,1,17,0.0,0.0,0.0,0,0,2945.8534540764613,2945.8534540764613,0.0 4336,4535,4534,3,10,28,112,52,50,0,1995,0,560,0,0,2,5,0,2,1.5,2232.30820878,5201,0,26373.0,1,2,7,0,3,3,1,1,1,0,0,0,0,0,0,3,17582.0,5,3,5,5_1,32000.0,0,32000.0,0,2,8,112.8,15.0,3.3,0,1,3701.1078233109565,3701.1078233109565,0.0 -4337,4540,4539,9,13,77,300,71,70,0,2,0,0,0,0,0,6,0,2,1.5,656.7065594430001,0,0,26566.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,17710.6666667,5,3,5,5_1,3000.0,0,3000.0,0,7,13,0.0,0.0,0.0,0,0,346.9788584354022,346.9788584354022,0.0 -4338,4550,4549,17,17,73,111,75,60,0,2019,0,0,0,0,0,2,0,1,1.0,3122.05916413,1457,0,17777.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17777.0,5,3,5,5_0,145.0,0,0.0,145,12,16,0.0,0.0,0.0,0,0,14.784837867885742,0.0,14.784837867885742 -4339,4555,4554,3,3,78,211,77,70,0,2025,0,0,0,0,0,4,0,2,1.5,1508.8689436,0,0,26146.0,5,1,3,3,3,1,0,0,0,1,0,0,0,0,1,0,17430.6666667,5,3,5,5_0,9000.0,0,0.0,9000,3,3,0.0,0.0,0.0,0,0,917.6795917998046,0.0,917.6795917998046 +4337,4540,4539,9,13,77,300,71,70,0,2,0,0,0,0,0,6,0,2,1.5,656.706559443,0,0,26566.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,17710.6666667,5,3,5,5_1,3000.0,0,3000.0,0,7,13,0.0,0.0,0.0,0,0,346.9788584354022,346.9788584354022,0.0 +4338,4550,4549,17,17,73,111,75,60,0,2019,0,0,0,0,0,2,0,1,1.0,3122.05916413,1457,0,17777.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17777.0,5,3,5,5_0,145.0,0,0.0,145,12,16,0.0,0.0,0.0,0,0,14.78483786788574,0.0,14.78483786788574 +4339,4555,4554,3,3,78,211,77,70,0,2025,0,0,0,0,0,4,0,2,1.5,1508.8689436,0,0,26146.0,5,1,3,3,3,1,0,0,0,1,0,0,0,0,1,0,17430.6666667,5,3,5,5_0,9000.0,0,0.0,9000,3,3,0.0,0.0,0.0,0,0,917.6795917998045,0.0,917.6795917998045 4340,4559,4558,0,0,38,111,52,50,0,2031,0,0,0,307,1,2,0,1,1.0,2910.68105254,0,0,16932.0,1,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,16932.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,24.0,2.2,0,0,0.0,0.0,0.0 4341,4568,4567,0,18,36,120,67,71,0,2047,0,250,0,590,2,3,2,4,2.1,3881.28022171,0,0,37641.0,1,3,0,0,4,1,0,1,1,0,0,0,0,0,0,1,17924.2857143,5,3,5,5_1,20000.0,0,20000.0,0,3,18,32.0,30.0,0.0,0,1,2313.192389569348,2313.192389569348,0.0 -4342,4581,4580,6,7,80,111,71,71,0,2061,0,0,0,0,0,4,0,2,1.5,2180.31846466,2116,0,28281.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,0,2,18854.0,5,3,5,5_0,6000.0,0,6000.0,0,7,7,0.0,0.0,0.0,0,0,611.7863945332031,611.7863945332031,0.0 -4343,4586,4585,9,9,68,111,77,70,0,2067,0,0,0,0,0,5,0,1,1.0,1796.11494247,1555,0,17790.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,17790.0,5,3,5,5_0,7000.0,0,0.0,7000,5,10,0.0,0.0,0.0,0,0,713.7507936220703,0.0,713.7507936220703 +4342,4581,4580,6,7,80,111,71,71,0,2061,0,0,0,0,0,4,0,2,1.5,2180.31846466,2116,0,28281.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,0,2,18854.0,5,3,5,5_0,6000.0,0,6000.0,0,7,7,0.0,0.0,0.0,0,0,611.786394533203,611.786394533203,0.0 +4343,4586,4585,9,9,68,111,77,70,0,2067,0,0,0,0,0,5,0,1,1.0,1796.11494247,1555,0,17790.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,17790.0,5,3,5,5_0,7000.0,0,0.0,7000,5,10,0.0,0.0,0.0,0,0,713.7507936220701,0.0,713.7507936220701 4344,4596,4595,9,12,42,300,53,50,0,2079,0,0,0,0,2,5,2,4,2.1,2010.88420102,0,0,38634.0,1,2,0,0,4,1,0,0,1,0,0,0,0,0,0,1,18397.1428571,5,3,5,5_1,17343.0,0,17343.0,0,6,12,181.5,37.5,3.3,0,1,2005.88478061506,2005.88478061506,0.0 -4345,4607,4606,10,23,68,111,75,70,0,2091,0,0,0,0,0,5,0,2,1.5,891.8202781660001,0,0,27823.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,1,0,18548.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,17,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 -4346,4626,4625,10,11,54,111,52,60,0,2119,0,50,0,289,1,4,0,1,1.0,1453.42018332,0,0,17910.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,17910.0,5,3,5,5_0,15311.0,0,15311.0,0,8,8,0.0,0.0,0.0,0,0,1561.1769144496454,1561.1769144496454,0.0 +4345,4607,4606,10,23,68,111,75,70,0,2091,0,0,0,0,0,5,0,2,1.5,891.820278166,0,0,27823.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,1,0,18548.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,17,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 +4346,4626,4625,10,11,54,111,52,60,0,2119,0,50,0,289,1,4,0,1,1.0,1453.42018332,0,0,17910.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,17910.0,5,3,5,5_0,15311.0,0,15311.0,0,8,8,0.0,0.0,0.0,0,0,1561.176914449645,1561.176914449645,0.0 4347,4647,4646,5,12,63,400,78,70,0,2143,0,0,0,0,0,4,0,2,1.5,2201.29140056,5084,0,25749.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,17166.0,5,3,5,5_1,14000.0,0,7000.0,7000,7,8,0.0,0.0,0.0,0,0,1619.2346726985436,809.6173363492718,809.6173363492718 -4348,4667,4666,3,3,52,111,21,50,0,217,0,36,180,0,3,6,1,3,2.0,2234.49085636,0,0,37256.0,1,1,5,4,4,2,0,1,0,0,1,0,0,0,1,1,18628.0,5,3,5,5_0,4000.0,0,4000.0,0,3,4,184.8,36.6666666667,3.3,0,1,407.85759635546873,407.85759635546873,0.0 -4349,4685,4684,5,6,82,112,72,70,0,2194,0,0,0,0,0,5,0,2,1.5,1643.4952534000001,0,0,28680.0,5,1,9,1,3,1,0,0,0,1,0,0,0,0,1,0,19120.0,5,3,5,5_0,7000.0,0,0.0,7000,8,8,0.0,0.0,0.0,0,0,713.7507936220703,0.0,713.7507936220703 -4350,4691,4690,4,4,48,300,52,50,0,220,0,20,80,0,2,4,2,4,2.3,1692.99226348,0,0,41707.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,18133.478260900003,5,3,5,5_1,15000.0,0,13000.0,2000,3,4,82.6,20.0,3.3,0,1,1734.8942921770108,1503.575053220076,231.31923895693478 -4351,4693,4692,2,2,35,111,47,42,0,2202,0,250,150,0,2,4,1,3,1.8,2192.17702715,0,0,34110.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,1,1,18950.0,5,3,5,5_0,28500.0,0,25000.0,3500,7,8,0.0,4.0,3.3,0,1,2905.9853740327144,2549.10997722168,356.87539681103516 +4348,4667,4666,3,3,52,111,21,50,0,217,0,36,180,0,3,6,1,3,2.0,2234.49085636,0,0,37256.0,1,1,5,4,4,2,0,1,0,0,1,0,0,0,1,1,18628.0,5,3,5,5_0,4000.0,0,4000.0,0,3,4,184.8,36.6666666667,3.3,0,1,407.8575963554687,407.8575963554687,0.0 +4349,4685,4684,5,6,82,112,72,70,0,2194,0,0,0,0,0,5,0,2,1.5,1643.4952534,0,0,28680.0,5,1,9,1,3,1,0,0,0,1,0,0,0,0,1,0,19120.0,5,3,5,5_0,7000.0,0,0.0,7000,8,8,0.0,0.0,0.0,0,0,713.7507936220701,0.0,713.7507936220701 +4350,4691,4690,4,4,48,300,52,50,0,220,0,20,80,0,2,4,2,4,2.3,1692.99226348,0,0,41707.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,18133.4782609,5,3,5,5_1,15000.0,0,13000.0,2000,3,4,82.6,20.0,3.3,0,1,1734.8942921770108,1503.575053220076,231.31923895693478 +4351,4693,4692,2,2,35,111,47,42,0,2202,0,250,150,0,2,4,1,3,1.8,2192.17702715,0,0,34110.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,1,1,18950.0,5,3,5,5_0,28500.0,0,25000.0,3500,7,8,0.0,4.0,3.3,0,1,2905.985374032714,2549.109977221679,356.87539681103505 4352,4701,4700,0,0,80,111,75,41,0,2211,0,0,0,410,0,2,0,1,1.0,5744.41064563,0,0,18476.0,5,3,4,4,1,0,0,0,0,0,1,0,0,0,0,0,18476.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4353,4703,4702,6,15,50,111,63,50,0,2213,0,199998,0,0,5,4,4,6,3.5,4373.06078643,0,0,59960.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,17131.4285714,5,3,5,5_0,40000.0,0,40000.0,0,10,11,308.7,122.5,3.3,0,1,4078.575963554687,4078.575963554687,0.0 -4354,4704,4703,7,7,60,111,78,70,0,2214,0,0,0,0,0,4,0,2,1.5,1406.92811295,0,0,28030.0,4,1,6,4,3,2,0,0,0,0,1,0,0,0,1,1,18686.6666667,5,3,5,5_0,40000.0,0,25000.0,15000,6,9,0.0,0.0,0.0,0,0,4078.575963554687,2549.10997722168,1529.4659863330078 +4353,4703,4702,6,15,50,111,63,50,0,2213,0,199998,0,0,5,4,4,6,3.5,4373.06078643,0,0,59960.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,17131.4285714,5,3,5,5_0,40000.0,0,40000.0,0,10,11,308.7,122.5,3.3,0,1,4078.5759635546865,4078.5759635546865,0.0 +4354,4704,4703,7,7,60,111,78,70,0,2214,0,0,0,0,0,4,0,2,1.5,1406.92811295,0,0,28030.0,4,1,6,4,3,2,0,0,0,0,1,0,0,0,1,1,18686.6666667,5,3,5,5_0,40000.0,0,25000.0,15000,6,9,0.0,0.0,0.0,0,0,4078.5759635546865,2549.109977221679,1529.4659863330073 4355,4709,4708,0,27,55,112,63,50,0,2219,0,1070,0,0,3,5,1,3,2.0,1118.84750415,1300,0,37524.0,1,1,6,0,4,3,0,1,1,0,0,0,0,0,0,3,18762.0,5,3,5,5_1,6859.0,0,6859.0,0,1,11,304.0,38.6666666667,3.3,0,1,793.3093300028078,793.3093300028078,0.0 -4356,4719,4718,13,20,37,221,56,41,0,223,0,0,500,585,2,3,0,2,1.5,1847.3977669,0,0,27993.0,1,3,1,3,3,2,0,1,0,1,0,0,0,0,2,0,18662.0,5,3,5,5_0,16000.0,0,0.0,16000,3,14,332.8,33.3333333333,3.3,0,1,1631.430385421875,0.0,1631.430385421875 -4357,4758,4757,1,10,39,221,52,50,2,2298,0,0,0,0,2,5,2,4,2.1,1300.0879195999999,1560,6000,36363.0,1,2,1,2,4,2,0,0,0,1,0,0,0,0,0,2,17315.7142857,5,3,5,5_0,15000.0,0,15000.0,0,6,10,191.0,22.5,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4358,4759,4758,12,12,37,111,54,71,0,2299,0,199998,0,0,2,4,2,4,2.1,2672.50873323,0,0,36948.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,17594.2857143,5,3,5,5_0,16666.0,0,16666.0,0,8,12,76.8,32.25,3.31,0,1,1699.3386752150604,1699.3386752150604,0.0 -4359,4784,4783,1,7,35,111,56,41,2,2335,0,150,0,0,1,2,0,1,1.0,2724.63607354,0,5600,18806.0,1,2,9,7,1,1,0,1,0,0,0,1,0,1,0,1,18806.0,5,3,5,5_0,2500.0,0,2500.0,0,4,7,0.0,20.0,3.3,0,1,254.91099772216793,254.91099772216793,0.0 +4356,4719,4718,13,20,37,221,56,41,0,223,0,0,500,585,2,3,0,2,1.5,1847.3977669,0,0,27993.0,1,3,1,3,3,2,0,1,0,1,0,0,0,0,2,0,18662.0,5,3,5,5_0,16000.0,0,0.0,16000,3,14,332.8,33.3333333333,3.3,0,1,1631.4303854218747,0.0,1631.4303854218747 +4357,4758,4757,1,10,39,221,52,50,2,2298,0,0,0,0,2,5,2,4,2.1,1300.0879196,1560,6000,36363.0,1,2,1,2,4,2,0,0,0,1,0,0,0,0,0,2,17315.7142857,5,3,5,5_0,15000.0,0,15000.0,0,6,10,191.0,22.5,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4358,4759,4758,12,12,37,111,54,71,0,2299,0,199998,0,0,2,4,2,4,2.1,2672.50873323,0,0,36948.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,17594.2857143,5,3,5,5_0,16666.0,0,16666.0,0,8,12,76.8,32.25,3.31,0,1,1699.33867521506,1699.33867521506,0.0 +4359,4784,4783,1,7,35,111,56,41,2,2335,0,150,0,0,1,2,0,1,1.0,2724.63607354,0,5600,18806.0,1,2,9,7,1,1,0,1,0,0,0,1,0,1,0,1,18806.0,5,3,5,5_0,2500.0,0,2500.0,0,4,7,0.0,20.0,3.3,0,1,254.9109977221679,254.9109977221679,0.0 4360,4788,4787,0,0,74,111,77,71,0,2341,0,0,0,0,0,3,1,2,1.5,3695.88671429,0,0,27798.0,5,3,8,7,2,0,0,0,0,0,0,1,0,1,0,0,18532.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4361,4810,4809,7,24,26,111,42,41,0,2371,0,0,0,415,1,5,1,3,2.0,2167.38744914,1040,0,35059.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,0,1,17529.5,5,3,5,5_0,15000.0,0,15000.0,0,4,16,97.5,20.0,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 +4361,4810,4809,7,24,26,111,42,41,0,2371,0,0,0,415,1,5,1,3,2.0,2167.38744914,1040,0,35059.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,0,1,17529.5,5,3,5,5_0,15000.0,0,15000.0,0,4,16,97.5,20.0,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 4362,4824,4823,0,0,31,111,56,42,0,2390,0,0,0,462,1,1,0,1,1.0,3415.12652925,0,0,18164.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18164.0,5,3,5,5_0,0.0,0,0.0,0,0,0,41.5,20.0,3.32,0,0,0.0,0.0,0.0 4363,4841,4840,2,4,59,300,77,50,0,2419,0,50,0,0,1,5,0,2,1.5,2146.76610429,0,0,27050.0,5,3,0,0,3,2,0,1,1,0,0,0,0,0,0,2,18033.3333333,5,3,5,5_1,18625.0,0,18625.0,0,2,4,0.0,0.0,0.0,0,0,2154.1604127864553,2154.1604127864553,0.0 -4364,4851,4850,10,22,42,221,47,50,0,2432,0,0,120,0,2,4,0,2,1.5,2666.96629416,2860,0,26841.0,1,3,1,2,5,2,0,1,0,1,0,0,0,1,2,0,17894.0,5,3,5,5_0,4500.0,0,0.0,4500,16,16,130.6,40.0,3.3,0,1,458.8397958999023,0.0,458.8397958999023 +4364,4851,4850,10,22,42,221,47,50,0,2432,0,0,120,0,2,4,0,2,1.5,2666.96629416,2860,0,26841.0,1,3,1,2,5,2,0,1,0,1,0,0,0,1,2,0,17894.0,5,3,5,5_0,4500.0,0,0.0,4500,16,16,130.6,40.0,3.3,0,1,458.83979589990224,0.0,458.83979589990224 4365,4852,4851,3,31,29,212,64,50,0,2433,0,560,0,0,2,5,2,4,2.1,2717.38198248,521,0,35936.0,1,4,2,0,4,3,0,0,1,0,0,0,0,0,0,3,17112.3809524,5,3,5,5_1,20000.0,0,20000.0,0,3,5,37.0,27.5,3.31,0,1,2313.192389569348,2313.192389569348,0.0 -4366,4858,4857,2,7,42,111,37,31,0,2441,0,1000,0,0,2,5,2,4,2.1,1717.70547625,0,0,36706.0,1,2,5,4,4,2,1,1,0,0,1,0,0,0,0,2,17479.047619,5,3,5,5_0,30000.0,0,30000.0,0,3,8,133.5,21.25,0.0,0,0,3058.9319726660156,3058.9319726660156,0.0 -4367,4859,4858,6,11,46,112,63,50,0,2442,0,99999,199998,0,2,5,1,3,2.0,1092.64656534,6448,0,34252.0,1,2,9,0,4,3,0,1,1,0,0,0,0,1,2,1,17126.0,5,3,5,5_1,31388.0,0,19166.0,12222,9,9,265.0,133.33333333299998,3.31,0,1,3630.3241361901346,2216.732266924306,1413.5918692658286 -4368,4865,4864,11,12,69,111,75,50,0,2451,0,0,0,0,0,4,0,2,1.5,2523.54134741,0,0,27158.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,18105.3333333,5,3,5,5_0,15000.0,0,0.0,15000,10,10,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 +4366,4858,4857,2,7,42,111,37,31,0,2441,0,1000,0,0,2,5,2,4,2.1,1717.70547625,0,0,36706.0,1,2,5,4,4,2,1,1,0,0,1,0,0,0,0,2,17479.047619,5,3,5,5_0,30000.0,0,30000.0,0,3,8,133.5,21.25,0.0,0,0,3058.9319726660146,3058.9319726660146,0.0 +4367,4859,4858,6,11,46,112,63,50,0,2442,0,99999,199998,0,2,5,1,3,2.0,1092.64656534,6448,0,34252.0,1,2,9,0,4,3,0,1,1,0,0,0,0,1,2,1,17126.0,5,3,5,5_1,31388.0,0,19166.0,12222,9,9,265.0,133.333333333,3.31,0,1,3630.3241361901346,2216.732266924306,1413.5918692658286 +4368,4865,4864,11,12,69,111,75,50,0,2451,0,0,0,0,0,4,0,2,1.5,2523.54134741,0,0,27158.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,18105.3333333,5,3,5,5_0,15000.0,0,0.0,15000,10,10,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 4369,4867,4866,7,7,79,400,74,71,0,2454,0,0,0,0,0,5,0,2,1.5,3328.69412523,0,0,26040.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,17360.0,5,3,5,5_1,8000.0,0,8000.0,0,4,8,0.0,0.0,0.0,0,0,925.2769558277391,925.2769558277391,0.0 -4370,4874,4873,1,7,40,112,52,41,0,2463,0,0,400,0,2,7,3,6,2.7,1738.5298017999999,1561,0,51398.0,1,2,6,0,5,2,0,1,1,0,0,0,0,1,2,0,19036.2962963,5,3,5,5_1,6000.0,0,0.0,6000,5,6,142.2,28.6,3.3,0,1,693.9577168708043,0.0,693.9577168708043 +4370,4874,4873,1,7,40,112,52,41,0,2463,0,0,400,0,2,7,3,6,2.7,1738.5298018,1561,0,51398.0,1,2,6,0,5,2,0,1,1,0,0,0,0,1,2,0,19036.2962963,5,3,5,5_1,6000.0,0,0.0,6000,5,6,142.2,28.6,3.3,0,1,693.9577168708043,0.0,693.9577168708043 4371,4898,4897,8,9,51,112,47,50,0,2491,0,100,0,0,2,4,0,2,1.5,1493.81614549,2600,0,25332.0,1,1,6,0,3,1,0,1,1,0,0,0,0,0,0,1,16888.0,5,3,5,5_1,5000.0,0,5000.0,0,2,12,51.0,10.0,3.3,0,1,578.298097392337,578.298097392337,0.0 -4372,4905,4904,1,1,72,111,74,70,1,250,0,0,0,0,1,4,0,2,1.5,1316.92656428,4160,27238,27563.0,5,3,7,6,3,1,1,0,0,0,1,0,0,0,0,1,18375.3333333,5,3,5,5_0,6959.0,0,6959.0,0,0,3,0.0,0.0,0.0,0,0,709.5702532594267,709.5702532594267,0.0 -4373,4921,4920,2,9,24,111,53,43,0,2522,0,80,0,400,1,4,0,2,1.5,2848.85053362,2808,0,25739.0,1,3,5,4,3,2,0,0,0,0,1,0,0,0,0,2,17159.3333333,5,3,5,5_0,16666.0,0,16666.0,0,3,8,0.0,0.0,0.0,0,1,1699.3386752150604,1699.3386752150604,0.0 -4374,4929,4928,5,17,89,221,77,70,0,2537,0,0,0,0,0,3,0,1,1.0,4478.81767892,1560,0,18604.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,1,0,18604.0,5,3,5,5_0,6000.0,6000,0.0,0,20,21,0.0,0.0,0.0,0,0,611.7863945332031,0.0,0.0 +4372,4905,4904,1,1,72,111,74,70,1,250,0,0,0,0,1,4,0,2,1.5,1316.92656428,4160,27238,27563.0,5,3,7,6,3,1,1,0,0,0,1,0,0,0,0,1,18375.3333333,5,3,5,5_0,6959.0,0,6959.0,0,0,3,0.0,0.0,0.0,0,0,709.5702532594265,709.5702532594265,0.0 +4373,4921,4920,2,9,24,111,53,43,0,2522,0,80,0,400,1,4,0,2,1.5,2848.85053362,2808,0,25739.0,1,3,5,4,3,2,0,0,0,0,1,0,0,0,0,2,17159.3333333,5,3,5,5_0,16666.0,0,16666.0,0,3,8,0.0,0.0,0.0,0,1,1699.33867521506,1699.33867521506,0.0 +4374,4929,4928,5,17,89,221,77,70,0,2537,0,0,0,0,0,3,0,1,1.0,4478.81767892,1560,0,18604.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,1,0,18604.0,5,3,5,5_0,6000.0,6000,0.0,0,20,21,0.0,0.0,0.0,0,0,611.786394533203,0.0,0.0 4375,4945,4944,15,15,67,300,78,71,0,256,0,0,0,0,0,5,0,2,1.5,3330.05823225,164,0,28129.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,18752.6666667,5,3,5,5_1,15000.0,0,15000.0,0,12,14,0.0,0.0,0.0,0,0,1734.8942921770108,1734.8942921770108,0.0 4376,4955,4954,5,5,67,400,77,60,0,2576,0,0,0,0,0,3,0,2,1.5,2198.14079052,3588,0,27160.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,18106.6666667,5,3,5,5_1,34000.0,0,34000.0,0,4,6,0.0,0.0,0.0,0,0,3932.427062267891,3932.427062267891,0.0 -4377,4957,4956,3,10,59,111,54,70,0,2579,0,0,180,0,1,2,0,1,1.0,4623.76187279,2159,0,18770.0,1,2,7,5,1,1,0,1,0,0,1,0,0,0,1,0,18770.0,5,3,5,5_0,12000.0,0,0.0,12000,9,11,47.6,32.0,3.3,1,1,1223.5727890664061,0.0,1223.5727890664061 +4377,4957,4956,3,10,59,111,54,70,0,2579,0,0,180,0,1,2,0,1,1.0,4623.76187279,2159,0,18770.0,1,2,7,5,1,1,0,1,0,0,1,0,0,0,1,0,18770.0,5,3,5,5_0,12000.0,0,0.0,12000,9,11,47.6,32.0,3.3,1,1,1223.572789066406,0.0,1223.572789066406 4378,4974,4973,0,0,92,111,75,70,0,2603,0,0,0,0,0,5,0,2,1.5,1343.12784377,0,0,28566.0,5,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,19044.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4379,4976,4975,2,8,48,300,63,50,0,2608,0,760,0,0,2,4,2,4,2.3,1410.55047782,3120,0,40620.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17660.869565200002,5,3,5,5_1,62891.0,0,62891.0,0,1,6,74.5,27.5,3.3,0,1,7273.949128620292,7273.949128620292,0.0 +4379,4976,4975,2,8,48,300,63,50,0,2608,0,760,0,0,2,4,2,4,2.3,1410.55047782,3120,0,40620.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17660.8695652,5,3,5,5_1,62891.0,0,62891.0,0,1,6,74.5,27.5,3.3,0,1,7273.949128620292,7273.949128620292,0.0 4380,4984,4983,0,10,24,111,38,12,0,2619,0,0,0,0,1,4,0,1,1.0,4072.11199181,0,0,18066.0,1,3,8,6,1,1,0,0,0,0,1,0,0,0,1,0,18066.0,5,3,5,5_0,10884.0,0,0.0,10884,3,11,0.0,60.0,5.56,0,1,1109.7805196832303,0.0,1109.7805196832303 -4381,4986,4985,0,15,43,111,43,20,0,2622,0,0,150,0,1,6,2,3,1.8,1499.86979275,0,0,34279.0,1,2,9,7,2,1,0,1,0,0,0,1,0,1,1,0,19043.888888900005,5,3,5,5_0,3000.0,0,0.0,3000,4,17,0.0,0.0,0.0,0,0,305.89319726660153,0.0,305.89319726660153 -4382,4990,4989,6,6,48,111,63,50,0,2633,0,40,0,0,1,3,0,1,1.0,2989.36871157,0,0,18739.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18739.0,5,3,5,5_0,15000.0,0,15000.0,0,4,5,0.0,20.0,1.1,0,1,1529.4659863330078,1529.4659863330078,0.0 -4383,5009,5008,9,9,60,221,52,41,0,2654,0,0,0,0,1,2,0,1,1.0,3979.4469368,6500,0,17340.0,1,2,1,2,1,1,0,0,0,1,0,0,0,0,1,0,17340.0,5,3,5,5_0,10000.0,0,0.0,10000,2,7,31.0,20.0,3.3,0,1,1019.6439908886717,0.0,1019.6439908886717 -4384,5022,5021,4,11,23,112,63,31,0,2672,0,99999,0,0,1,2,0,1,1.0,2913.26103758,2083,0,18374.0,1,3,8,1,1,1,1,1,0,1,0,0,0,0,0,1,18374.0,5,3,5,5_0,10000.0,0,10000.0,0,2,11,0.0,16.0,3.3,0,1,1019.6439908886717,1019.6439908886717,0.0 -4385,5031,5030,3,12,45,300,67,50,0,2687,0,374,0,0,2,5,1,3,1.8,1091.13587783,0,0,31660.0,4,2,0,1,4,2,1,1,0,1,0,0,0,0,0,2,17588.888888900005,5,3,5,5_0,12000.0,0,12000.0,0,5,13,117.0,16.6666666667,3.3,0,1,1223.5727890664061,1223.5727890664061,0.0 +4381,4986,4985,0,15,43,111,43,20,0,2622,0,0,150,0,1,6,2,3,1.8,1499.86979275,0,0,34279.0,1,2,9,7,2,1,0,1,0,0,0,1,0,1,1,0,19043.8888889,5,3,5,5_0,3000.0,0,0.0,3000,4,17,0.0,0.0,0.0,0,0,305.8931972666015,0.0,305.8931972666015 +4382,4990,4989,6,6,48,111,63,50,0,2633,0,40,0,0,1,3,0,1,1.0,2989.36871157,0,0,18739.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18739.0,5,3,5,5_0,15000.0,0,15000.0,0,4,5,0.0,20.0,1.1,0,1,1529.4659863330073,1529.4659863330073,0.0 +4383,5009,5008,9,9,60,221,52,41,0,2654,0,0,0,0,1,2,0,1,1.0,3979.4469368,6500,0,17340.0,1,2,1,2,1,1,0,0,0,1,0,0,0,0,1,0,17340.0,5,3,5,5_0,10000.0,0,0.0,10000,2,7,31.0,20.0,3.3,0,1,1019.6439908886716,0.0,1019.6439908886716 +4384,5022,5021,4,11,23,112,63,31,0,2672,0,99999,0,0,1,2,0,1,1.0,2913.26103758,2083,0,18374.0,1,3,8,1,1,1,1,1,0,1,0,0,0,0,0,1,18374.0,5,3,5,5_0,10000.0,0,10000.0,0,2,11,0.0,16.0,3.3,0,1,1019.6439908886716,1019.6439908886716,0.0 +4385,5031,5030,3,12,45,300,67,50,0,2687,0,374,0,0,2,5,1,3,1.8,1091.13587783,0,0,31660.0,4,2,0,1,4,2,1,1,0,1,0,0,0,0,0,2,17588.8888889,5,3,5,5_0,12000.0,0,12000.0,0,5,13,117.0,16.6666666667,3.3,0,1,1223.572789066406,1223.572789066406,0.0 4386,5034,5033,1,19,29,120,55,50,2,2693,0,250,0,0,2,3,0,2,1.5,3316.89353347,0,450,28033.0,1,4,0,0,3,2,0,1,1,0,0,0,0,0,1,1,18688.6666667,5,3,5,5_1,19000.0,0,15000.0,4000,2,18,226.0,36.6666666667,3.3,0,1,2197.53277009088,1734.8942921770108,462.63847791386956 -4387,5047,5046,5,18,38,111,64,12,0,2708,0,0,550,377,2,1,0,2,1.5,3143.59017545,3221,0,26133.0,4,3,9,7,5,1,0,1,0,0,0,1,0,0,1,0,17422.0,5,3,5,5_0,27500.0,0,0.0,27500,4,9,0.0,0.0,0.0,0,0,2804.0209749438472,0.0,2804.0209749438472 -4388,5049,5048,5,15,74,211,77,70,0,2712,0,0,0,0,0,5,1,2,1.5,6248.91592412,520,0,25570.0,5,1,2,3,2,1,0,0,0,1,0,0,0,0,1,0,17046.6666667,5,3,5,5_0,8000.0,0,0.0,8000,10,13,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 +4387,5047,5046,5,18,38,111,64,12,0,2708,0,0,550,377,2,1,0,2,1.5,3143.59017545,3221,0,26133.0,4,3,9,7,5,1,0,1,0,0,0,1,0,0,1,0,17422.0,5,3,5,5_0,27500.0,0,0.0,27500,4,9,0.0,0.0,0.0,0,0,2804.020974943847,0.0,2804.020974943847 +4388,5049,5048,5,15,74,211,77,70,0,2712,0,0,0,0,0,5,1,2,1.5,6248.91592412,520,0,25570.0,5,1,2,3,2,1,0,0,0,1,0,0,0,0,1,0,17046.6666667,5,3,5,5_0,8000.0,0,0.0,8000,10,13,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 4389,5068,5067,10,10,57,111,46,71,0,2741,0,0,400,0,1,5,0,2,1.5,3441.78253774,0,0,28296.0,1,1,9,7,3,1,0,1,0,0,0,1,0,0,1,0,18864.0,5,3,5,5_0,5600.0,0,0.0,5600,8,8,0.0,20.0,3.3,0,1,571.0006348976561,0.0,571.0006348976561 4390,5082,5081,8,10,37,400,63,50,0,2765,0,550,0,0,2,5,3,5,2.4,1237.90447784,4966,0,45483.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,18951.25,5,3,5,5_1,15000.0,0,15000.0,0,5,9,190.0,30.0,0.0,0,1,1734.8942921770108,1734.8942921770108,0.0 -4391,5087,5086,1,4,60,111,62,60,2,2771,0,120,0,395,3,4,4,6,3.3,2360.05161888,2236,8000,60220.0,1,3,6,5,4,1,0,1,0,0,1,0,0,0,0,1,18248.4848485,5,3,5,5_0,7000.0,0,7000.0,0,3,6,397.8,86.6666666667,3.3,0,0,713.7507936220703,713.7507936220703,0.0 -4392,5096,5095,9,14,40,112,52,42,0,2780,0,115,60,0,2,4,2,4,2.1,1308.73662101,0,0,36584.0,1,3,6,1,4,2,0,1,0,1,0,0,0,0,1,1,17420.952381,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.10997722168,2039.2879817773435,509.82199544433587 -4393,5109,5108,11,14,31,112,65,71,0,2799,0,0,180,0,2,5,2,6,3.1,3714.9539600999997,0,0,54480.0,1,2,7,0,5,3,0,1,1,0,0,0,0,0,3,0,17574.193548400002,5,3,5,5_1,10000.0,0,0.0,10000,3,25,101.6,38.3333333333,3.3,0,1,1156.596194784674,0.0,1156.596194784674 +4391,5087,5086,1,4,60,111,62,60,2,2771,0,120,0,395,3,4,4,6,3.3,2360.05161888,2236,8000,60220.0,1,3,6,5,4,1,0,1,0,0,1,0,0,0,0,1,18248.4848485,5,3,5,5_0,7000.0,0,7000.0,0,3,6,397.8,86.6666666667,3.3,0,0,713.7507936220701,713.7507936220701,0.0 +4392,5096,5095,9,14,40,112,52,42,0,2780,0,115,60,0,2,4,2,4,2.1,1308.73662101,0,0,36584.0,1,3,6,1,4,2,0,1,0,1,0,0,0,0,1,1,17420.952381,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.109977221679,2039.2879817773432,509.8219954443358 +4393,5109,5108,11,14,31,112,65,71,0,2799,0,0,180,0,2,5,2,6,3.1,3714.9539601,0,0,54480.0,1,2,7,0,5,3,0,1,1,0,0,0,0,0,3,0,17574.1935484,5,3,5,5_1,10000.0,0,0.0,10000,3,25,101.6,38.3333333333,3.3,0,1,1156.596194784674,0.0,1156.596194784674 4394,5127,5126,11,11,57,300,78,70,0,2822,0,0,0,0,0,5,0,2,1.5,2703.00450499,0,0,27246.0,7,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,18164.0,5,3,5,5_1,10000.0,0,0.0,10000,7,11,0.0,0.0,0.0,0,0,1156.596194784674,0.0,1156.596194784674 -4395,5143,5142,1,12,25,221,62,50,2,2849,0,300,100,384,2,3,0,2,1.5,2462.52115649,4508,6000,25772.0,1,3,1,3,3,2,0,1,0,1,0,0,0,0,1,1,17181.3333333,5,3,5,5_0,25000.0,0,20000.0,5000,4,13,0.0,0.0,0.0,0,1,2549.10997722168,2039.2879817773435,509.82199544433587 -4396,5154,5153,0,3,60,221,71,50,2,2862,0,0,0,0,0,6,0,2,1.5,1471.22037308,0,15447,28631.0,5,1,1,1,3,2,0,0,0,1,0,0,0,0,0,2,19087.3333333,5,3,5,5_0,17343.0,0,17343.0,0,2,3,0.0,0.0,0.0,0,0,1768.3685733982236,1768.3685733982236,0.0 -4397,5155,5154,3,3,63,111,77,50,0,2863,0,0,0,0,0,5,0,2,1.5,2467.08443912,0,0,25639.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,17092.6666667,5,3,5,5_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1223.5727890664061,1223.5727890664061,0.0 +4395,5143,5142,1,12,25,221,62,50,2,2849,0,300,100,384,2,3,0,2,1.5,2462.52115649,4508,6000,25772.0,1,3,1,3,3,2,0,1,0,1,0,0,0,0,1,1,17181.3333333,5,3,5,5_0,25000.0,0,20000.0,5000,4,13,0.0,0.0,0.0,0,1,2549.109977221679,2039.2879817773432,509.8219954443358 +4396,5154,5153,0,3,60,221,71,50,2,2862,0,0,0,0,0,6,0,2,1.5,1471.22037308,0,15447,28631.0,5,1,1,1,3,2,0,0,0,1,0,0,0,0,0,2,19087.3333333,5,3,5,5_0,17343.0,0,17343.0,0,2,3,0.0,0.0,0.0,0,0,1768.368573398223,1768.368573398223,0.0 +4397,5155,5154,3,3,63,111,77,50,0,2863,0,0,0,0,0,5,0,2,1.5,2467.08443912,0,0,25639.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,17092.6666667,5,3,5,5_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1223.572789066406,1223.572789066406,0.0 4398,5184,5183,1,1,51,112,46,50,1,2909,0,0,0,270,1,4,0,1,1.0,3753.55412155,0,9990,17207.0,1,3,7,0,1,1,0,1,1,0,0,0,0,0,1,0,17207.0,5,3,5,5_1,19000.0,0,0.0,19000,2,2,45.5,40.0,3.3,0,1,2197.53277009088,0.0,2197.53277009088 -4399,5201,5200,1,1,39,111,62,50,0,2928,0,0,100029,288,2,4,1,3,1.8,1819.35467198,0,0,34021.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,2,0,18900.5555556,5,3,5,5_0,10000.0,0,0.0,10000,2,3,46.0,23.3333333333,3.3,0,1,1019.6439908886717,0.0,1019.6439908886717 -4400,5209,5208,19,25,73,111,78,71,0,2941,0,0,0,0,0,4,0,1,1.0,2425.20327473,0,0,18470.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,18470.0,5,3,5,5_0,330.0,0,0.0,330,16,23,0.0,0.0,0.0,0,0,33.648251699326174,0.0,33.648251699326174 -4401,5214,5213,2,5,22,221,65,43,0,2951,0,350,0,442,1,3,0,1,1.0,5320.16709601,0,0,18439.0,1,3,1,2,1,1,0,1,0,1,0,0,0,1,0,1,18439.0,5,3,5,5_0,25000.0,0,25000.0,0,3,6,0.0,30.0,3.3,0,1,2549.10997722168,2549.10997722168,0.0 -4402,5215,5214,4,8,31,111,54,41,0,2953,0,0,120,0,2,5,2,4,2.1,2026.17561925,0,0,37146.0,1,3,7,5,4,2,0,1,0,0,1,0,0,1,2,0,17688.571428599997,5,3,5,5_0,6000.0,0,0.0,6000,4,9,84.0,10.0,3.3,0,1,611.7863945332031,0.0,611.7863945332031 -4403,5217,5216,1,10,68,111,77,71,2,2955,0,0,0,0,0,3,0,2,1.5,2696.76257614,0,2900,28386.0,5,4,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18924.0,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029023,1398.5436979029023,0.0 +4399,5201,5200,1,1,39,111,62,50,0,2928,0,0,100029,288,2,4,1,3,1.8,1819.35467198,0,0,34021.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,2,0,18900.5555556,5,3,5,5_0,10000.0,0,0.0,10000,2,3,46.0,23.3333333333,3.3,0,1,1019.6439908886716,0.0,1019.6439908886716 +4400,5209,5208,19,25,73,111,78,71,0,2941,0,0,0,0,0,4,0,1,1.0,2425.20327473,0,0,18470.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,18470.0,5,3,5,5_0,330.0,0,0.0,330,16,23,0.0,0.0,0.0,0,0,33.64825169932616,0.0,33.64825169932616 +4401,5214,5213,2,5,22,221,65,43,0,2951,0,350,0,442,1,3,0,1,1.0,5320.16709601,0,0,18439.0,1,3,1,2,1,1,0,1,0,1,0,0,0,1,0,1,18439.0,5,3,5,5_0,25000.0,0,25000.0,0,3,6,0.0,30.0,3.3,0,1,2549.109977221679,2549.109977221679,0.0 +4402,5215,5214,4,8,31,111,54,41,0,2953,0,0,120,0,2,5,2,4,2.1,2026.17561925,0,0,37146.0,1,3,7,5,4,2,0,1,0,0,1,0,0,1,2,0,17688.5714286,5,3,5,5_0,6000.0,0,0.0,6000,4,9,84.0,10.0,3.3,0,1,611.786394533203,0.0,611.786394533203 +4403,5217,5216,1,10,68,111,77,71,2,2955,0,0,0,0,0,3,0,2,1.5,2696.76257614,0,2900,28386.0,5,4,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18924.0,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029018,1398.5436979029018,0.0 4404,5229,5228,3,16,40,112,55,42,0,2972,0,300,50,0,2,4,2,4,2.1,2030.59801125,0,0,36817.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,1,1,17531.9047619,5,3,5,5_1,23506.0,0,20000.0,3506,2,17,190.0,36.6666666667,3.31,0,1,2718.6950154608544,2313.192389569348,405.5026258915067 -4405,5230,5229,9,10,32,111,42,20,0,2974,0,300,0,465,1,2,0,1,1.0,2384.85284003,0,0,17653.0,1,3,8,7,1,1,1,1,0,0,0,1,0,0,0,1,17653.0,5,3,5,5_0,15000.0,0,15000.0,0,6,7,0.0,10.0,1.1,0,0,1529.4659863330078,1529.4659863330078,0.0 -4406,5244,5243,4,14,42,111,43,20,0,2991,0,0,0,0,1,4,3,4,2.3,1970.97506466,1040,0,43370.0,1,2,10,8,2,1,0,0,0,0,0,0,1,0,1,0,18856.521739099997,5,3,5,5_0,15000.0,0,0.0,15000,10,12,190.5,49.0,1.1,0,0,1529.4659863330078,0.0,1529.4659863330078 +4405,5230,5229,9,10,32,111,42,20,0,2974,0,300,0,465,1,2,0,1,1.0,2384.85284003,0,0,17653.0,1,3,8,7,1,1,1,1,0,0,0,1,0,0,0,1,17653.0,5,3,5,5_0,15000.0,0,15000.0,0,6,7,0.0,10.0,1.1,0,0,1529.4659863330073,1529.4659863330073,0.0 +4406,5244,5243,4,14,42,111,43,20,0,2991,0,0,0,0,1,4,3,4,2.3,1970.97506466,1040,0,43370.0,1,2,10,8,2,1,0,0,0,0,0,0,1,0,1,0,18856.5217391,5,3,5,5_0,15000.0,0,0.0,15000,10,12,190.5,49.0,1.1,0,0,1529.4659863330073,0.0,1529.4659863330073 4407,5257,5256,0,0,49,112,43,60,0,3010,0,0,0,643,1,3,0,1,1.0,2995.24696967,0,0,18433.0,1,3,8,0,1,0,0,0,1,0,0,0,0,0,0,0,18433.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4408,5261,5260,4,4,64,300,75,71,0,3015,0,0,0,0,0,4,0,2,1.5,3532.05293336,2418,0,28474.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,18982.6666667,5,3,5,5_1,12000.0,0,0.0,12000,7,7,0.0,0.0,0.0,0,0,1387.9154337416087,0.0,1387.9154337416087 -4409,5265,5264,7,10,46,112,46,50,0,3020,0,400,0,0,2,4,3,5,2.8,941.417740379,3640,0,51490.0,1,2,10,1,4,1,0,1,0,1,0,0,0,0,0,1,18389.2857143,5,3,5,5_0,15000.0,0,15000.0,0,2,10,91.0,22.5,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4410,5268,5267,7,7,69,120,71,71,0,3023,0,0,0,0,0,4,0,2,1.5,2132.93789699,1040,0,27146.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,18097.3333333,5,3,5,5_0,6000.0,0,0.0,6000,3,7,0.0,0.0,0.0,0,0,611.7863945332031,0.0,611.7863945332031 -4411,5286,5285,9,11,48,112,62,50,0,3049,0,0,0,360,1,5,2,4,2.3,1788.44901701,2600,0,40060.0,1,3,9,3,4,2,0,0,0,1,0,0,0,0,2,0,17417.3913043,5,3,5,5_0,1500.0,0,0.0,1500,8,8,40.5,30.0,0.0,0,1,152.94659863330077,0.0,152.94659863330077 -4412,5293,5292,0,15,43,111,46,20,2,3058,0,99999,0,0,2,7,3,5,2.6,1188.72221039,4623,2600,47906.0,1,2,6,4,4,2,0,0,0,0,1,0,0,0,0,2,18425.384615400002,5,3,5,5_0,12000.0,0,12000.0,0,4,11,114.3,18.0,3.3,0,1,1223.5727890664061,1223.5727890664061,0.0 -4413,5298,5297,4,4,55,111,11,71,0,3067,0,0,0,0,2,5,0,2,1.5,3908.31533084,2956,0,25847.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,17231.3333333,5,3,5,5_0,12716.0,0,12716.0,0,0,8,0.0,0.0,0.0,0,0,1296.5792988140352,1296.5792988140352,0.0 -4414,5320,5319,2,2,37,221,63,50,0,3096,0,0,0,242,1,4,0,1,1.0,5072.03834904,1633,0,16892.0,1,3,1,2,1,1,0,0,0,1,0,0,0,0,1,0,16892.0,5,3,5,5_0,1000.0,0,0.0,1000,2,7,0.0,20.0,1.1,0,0,101.96439908886718,0.0,101.96439908886718 +4409,5265,5264,7,10,46,112,46,50,0,3020,0,400,0,0,2,4,3,5,2.8,941.417740379,3640,0,51490.0,1,2,10,1,4,1,0,1,0,1,0,0,0,0,0,1,18389.2857143,5,3,5,5_0,15000.0,0,15000.0,0,2,10,91.0,22.5,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4410,5268,5267,7,7,69,120,71,71,0,3023,0,0,0,0,0,4,0,2,1.5,2132.93789699,1040,0,27146.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,18097.3333333,5,3,5,5_0,6000.0,0,0.0,6000,3,7,0.0,0.0,0.0,0,0,611.786394533203,0.0,611.786394533203 +4411,5286,5285,9,11,48,112,62,50,0,3049,0,0,0,360,1,5,2,4,2.3,1788.44901701,2600,0,40060.0,1,3,9,3,4,2,0,0,0,1,0,0,0,0,2,0,17417.3913043,5,3,5,5_0,1500.0,0,0.0,1500,8,8,40.5,30.0,0.0,0,1,152.94659863330074,0.0,152.94659863330074 +4412,5293,5292,0,15,43,111,46,20,2,3058,0,99999,0,0,2,7,3,5,2.6,1188.72221039,4623,2600,47906.0,1,2,6,4,4,2,0,0,0,0,1,0,0,0,0,2,18425.3846154,5,3,5,5_0,12000.0,0,12000.0,0,4,11,114.3,18.0,3.3,0,1,1223.572789066406,1223.572789066406,0.0 +4413,5298,5297,4,4,55,111,11,71,0,3067,0,0,0,0,2,5,0,2,1.5,3908.31533084,2956,0,25847.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,17231.3333333,5,3,5,5_0,12716.0,0,12716.0,0,0,8,0.0,0.0,0.0,0,0,1296.5792988140347,1296.5792988140347,0.0 +4414,5320,5319,2,2,37,221,63,50,0,3096,0,0,0,242,1,4,0,1,1.0,5072.03834904,1633,0,16892.0,1,3,1,2,1,1,0,0,0,1,0,0,0,0,1,0,16892.0,5,3,5,5_0,1000.0,0,0.0,1000,2,7,0.0,20.0,1.1,0,0,101.96439908886717,0.0,101.96439908886717 4415,5330,5329,5,7,59,112,34,10,0,3107,0,300,0,0,1,5,0,2,1.5,1573.22045418,2184,0,25599.0,1,1,7,0,3,2,0,1,1,0,0,0,0,0,0,2,17066.0,5,3,5,5_1,59572.0,0,59572.0,0,9,9,0.0,0.0,0.0,0,1,6890.074851571259,6890.074851571259,0.0 -4416,5342,5341,14,27,63,111,75,71,0,3123,0,0,0,0,0,3,1,3,2.0,1031.70905678,1698,0,34515.0,5,3,7,5,4,3,0,0,0,0,1,0,0,0,2,1,17257.5,5,3,5,5_0,34700.0,0,34500.0,200,6,12,0.0,0.0,0.0,0,0,3538.164648383691,3517.771768565918,20.392879817773437 +4416,5342,5341,14,27,63,111,75,71,0,3123,0,0,0,0,0,3,1,3,2.0,1031.70905678,1698,0,34515.0,5,3,7,5,4,3,0,0,0,0,1,0,0,0,2,1,17257.5,5,3,5,5_0,34700.0,0,34500.0,200,6,12,0.0,0.0,0.0,0,0,3538.1646483836903,3517.771768565917,20.39287981777343 4417,5355,5354,2,9,60,112,37,20,0,3137,0,115,0,0,1,5,1,2,1.5,835.973398857,3797,0,26822.0,1,1,10,0,2,2,1,1,1,0,0,0,0,0,0,2,17881.3333333,5,3,5,5_1,59572.0,0,59572.0,0,9,9,0.0,0.0,0.0,0,1,6890.074851571259,6890.074851571259,0.0 4418,5363,5362,2,10,22,112,65,71,0,3146,0,400,0,0,2,3,0,2,1.5,2914.07201158,2600,0,27346.0,1,3,6,0,3,3,0,1,1,0,0,0,0,0,1,2,18230.6666667,5,3,5,5_1,15000.0,0,15000.0,0,2,11,0.0,18.0,3.3,0,1,1734.8942921770108,1734.8942921770108,0.0 -4419,5389,5388,5,13,47,111,65,50,0,3193,0,0,350,320,1,2,0,1,1.0,3033.86456831,2080,0,18862.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,18862.0,5,3,5,5_0,7000.0,0,0.0,7000,5,11,0.0,20.0,1.1,0,0,713.7507936220703,0.0,713.7507936220703 -4420,5390,5389,1,14,31,111,55,43,2,3194,0,350,0,32,1,3,1,2,1.3,3066.19145101,1040,1500,22270.0,1,3,6,5,2,1,0,1,0,0,1,0,0,1,0,1,17130.7692308,5,3,5,5_0,5000.0,0,5000.0,0,10,10,0.0,12.0,3.31,0,1,509.82199544433587,509.82199544433587,0.0 -4421,5400,5399,16,16,81,211,72,42,0,3209,0,0,0,0,0,4,0,2,1.5,2189.20844993,0,0,28656.0,5,1,3,3,3,2,0,0,0,1,0,0,0,0,1,1,19104.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.85759635546873,305.89319726660153,101.96439908886718 +4419,5389,5388,5,13,47,111,65,50,0,3193,0,0,350,320,1,2,0,1,1.0,3033.86456831,2080,0,18862.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,18862.0,5,3,5,5_0,7000.0,0,0.0,7000,5,11,0.0,20.0,1.1,0,0,713.7507936220701,0.0,713.7507936220701 +4420,5390,5389,1,14,31,111,55,43,2,3194,0,350,0,32,1,3,1,2,1.3,3066.19145101,1040,1500,22270.0,1,3,6,5,2,1,0,1,0,0,1,0,0,1,0,1,17130.7692308,5,3,5,5_0,5000.0,0,5000.0,0,10,10,0.0,12.0,3.31,0,1,509.8219954443358,509.8219954443358,0.0 +4421,5400,5399,16,16,81,211,72,42,0,3209,0,0,0,0,0,4,0,2,1.5,2189.20844993,0,0,28656.0,5,1,3,3,3,2,0,0,0,1,0,0,0,0,1,1,19104.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.8575963554687,305.8931972666015,101.96439908886717 4422,5401,5400,0,6,52,112,53,50,2,321,0,0,99999,0,1,6,1,3,2.0,1162.34996328,1040,5840,36607.0,1,1,8,0,4,3,0,0,1,0,0,0,0,0,1,2,18303.5,5,3,5,5_1,10000.0,0,10000.0,0,5,8,0.0,0.0,0.0,0,1,1156.596194784674,1156.596194784674,0.0 -4423,5405,5404,6,8,29,111,52,50,0,3216,0,0,50,0,2,4,2,4,2.1,1700.66014433,1925,0,36646.0,1,2,6,5,4,2,0,0,0,0,1,0,0,0,1,1,17450.4761905,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882813,2039.2879817773435,815.7151927109375 +4423,5405,5404,6,8,29,111,52,50,0,3216,0,0,50,0,2,4,2,4,2.1,1700.66014433,1925,0,36646.0,1,2,6,5,4,2,0,0,0,0,1,0,0,0,1,1,17450.4761905,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882804,2039.2879817773432,815.7151927109373 4424,5418,5417,0,0,93,111,77,70,0,3230,0,0,0,0,0,5,0,1,1.0,2691.84546006,0,0,17250.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17250.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4425,5432,5431,2,2,88,111,72,70,0,3247,0,0,0,0,0,4,0,2,1.5,3109.17469473,0,0,26420.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,17613.3333333,5,3,5,5_0,30.0,0,0.0,30,0,0,0.0,0.0,0.0,0,0,3.058931972666015,0.0,3.058931972666015 -4426,5434,5433,7,9,56,111,78,70,0,3250,0,150,0,0,1,5,0,2,1.5,1745.64220971,0,0,26486.0,5,1,9,7,3,2,0,1,0,0,0,1,0,0,0,2,17657.3333333,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.1769144496454,1561.1769144496454,0.0 -4427,5450,5449,8,8,65,211,77,70,0,3271,0,0,0,453,0,3,0,1,1.0,2188.92790613,0,0,18840.0,5,3,4,3,1,1,0,0,0,1,0,0,0,0,1,0,18840.0,5,3,5,5_0,9416.0,0,0.0,9416,8,8,0.0,0.0,0.0,0,0,960.0967818207733,0.0,960.0967818207733 -4428,5457,5456,15,15,53,111,45,50,0,328,0,0,0,537,1,3,1,2,1.5,3510.74504497,0,0,25664.0,1,3,9,7,2,1,0,0,0,0,0,1,0,0,1,0,17109.3333333,5,3,5,5_0,15000.0,0,0.0,15000,7,20,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 -4429,5459,5458,3,5,44,111,54,50,0,3281,0,150,0,0,1,4,1,2,1.3,1827.1443149999998,0,0,24657.0,1,2,8,7,2,1,0,1,0,0,0,1,0,0,0,1,18966.923076900002,5,3,5,5_0,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,1019.6439908886717,1019.6439908886717,0.0 +4425,5432,5431,2,2,88,111,72,70,0,3247,0,0,0,0,0,4,0,2,1.5,3109.17469473,0,0,26420.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,17613.3333333,5,3,5,5_0,30.0,0,0.0,30,0,0,0.0,0.0,0.0,0,0,3.0589319726660142,0.0,3.0589319726660142 +4426,5434,5433,7,9,56,111,78,70,0,3250,0,150,0,0,1,5,0,2,1.5,1745.64220971,0,0,26486.0,5,1,9,7,3,2,0,1,0,0,0,1,0,0,0,2,17657.3333333,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.176914449645,1561.176914449645,0.0 +4427,5450,5449,8,8,65,211,77,70,0,3271,0,0,0,453,0,3,0,1,1.0,2188.92790613,0,0,18840.0,5,3,4,3,1,1,0,0,0,1,0,0,0,0,1,0,18840.0,5,3,5,5_0,9416.0,0,0.0,9416,8,8,0.0,0.0,0.0,0,0,960.0967818207731,0.0,960.0967818207731 +4428,5457,5456,15,15,53,111,45,50,0,328,0,0,0,537,1,3,1,2,1.5,3510.74504497,0,0,25664.0,1,3,9,7,2,1,0,0,0,0,0,1,0,0,1,0,17109.3333333,5,3,5,5_0,15000.0,0,0.0,15000,7,20,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 +4429,5459,5458,3,5,44,111,54,50,0,3281,0,150,0,0,1,4,1,2,1.3,1827.144315,0,0,24657.0,1,2,8,7,2,1,0,1,0,0,0,1,0,0,0,1,18966.9230769,5,3,5,5_0,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,1019.6439908886716,1019.6439908886716,0.0 4430,5476,5475,0,0,76,111,77,60,0,3301,0,0,0,0,0,2,0,1,1.0,4421.70659146,0,0,18640.0,5,3,4,3,1,0,0,0,0,1,0,0,0,0,0,0,18640.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4431,5485,5484,9,11,76,111,78,50,0,3312,0,0,0,0,0,3,0,2,1.5,1265.26542652,0,0,25753.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,17168.6666667,5,3,5,5_0,9000.0,0,9000.0,0,3,12,0.0,0.0,0.0,0,0,917.6795917998046,917.6795917998046,0.0 -4432,5486,5485,0,15,48,111,55,50,2,3313,0,0,0,350,2,5,1,2,1.5,3800.25576471,2406,700,25603.0,4,3,6,5,2,2,0,0,0,0,1,0,0,0,1,1,17068.6666667,5,3,5,5_0,15600.0,0,10000.0,5600,2,15,85.0,15.0,0.0,0,1,1590.644625786328,1019.6439908886717,571.0006348976561 -4433,5503,5502,10,10,48,111,47,50,0,3348,0,0,350,0,1,3,0,1,1.0,2430.05090449,0,0,17778.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,1,0,17778.0,5,3,5,5_0,11000.0,0,0.0,11000,8,8,41.5,75.0,3.31,0,1,1121.608389977539,0.0,1121.608389977539 +4431,5485,5484,9,11,76,111,78,50,0,3312,0,0,0,0,0,3,0,2,1.5,1265.26542652,0,0,25753.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,17168.6666667,5,3,5,5_0,9000.0,0,9000.0,0,3,12,0.0,0.0,0.0,0,0,917.6795917998045,917.6795917998045,0.0 +4432,5486,5485,0,15,48,111,55,50,2,3313,0,0,0,350,2,5,1,2,1.5,3800.25576471,2406,700,25603.0,4,3,6,5,2,2,0,0,0,0,1,0,0,0,1,1,17068.6666667,5,3,5,5_0,15600.0,0,10000.0,5600,2,15,85.0,15.0,0.0,0,1,1590.6446257863279,1019.6439908886716,571.0006348976561 +4433,5503,5502,10,10,48,111,47,50,0,3348,0,0,350,0,1,3,0,1,1.0,2430.05090449,0,0,17778.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,1,0,17778.0,5,3,5,5_0,11000.0,0,0.0,11000,8,8,41.5,75.0,3.31,0,1,1121.6083899775388,0.0,1121.6083899775388 4434,5506,5505,3,12,69,400,74,44,0,3351,0,0,0,0,0,4,0,2,1.5,3577.85608643,1575,0,27598.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,18398.6666667,5,3,5,5_1,5000.0,0,0.0,5000,7,11,0.0,0.0,0.0,0,0,578.298097392337,0.0,578.298097392337 -4435,5515,5514,6,6,57,112,68,70,0,3363,0,0,130,0,1,5,1,2,1.5,3002.08961794,0,0,27632.0,1,2,7,2,2,1,0,1,0,1,0,0,0,0,1,0,18421.3333333,5,3,5,5_0,15000.0,0,0.0,15000,6,6,20.5,52.5,3.3,0,1,1529.4659863330078,0.0,1529.4659863330078 -4436,5523,5522,20,20,58,120,78,50,0,3371,0,0,0,0,0,4,0,1,1.0,1301.19485615,0,0,17031.0,7,1,0,1,1,1,0,0,0,1,0,0,0,0,1,0,17031.0,5,3,5,5_0,3000.0,0,0.0,3000,12,12,0.0,0.0,0.0,0,0,305.89319726660153,0.0,305.89319726660153 -4437,5525,5524,13,15,68,111,74,31,0,3375,0,0,0,0,0,4,1,2,1.5,3853.10803284,3029,0,28679.0,5,1,9,7,2,1,0,0,0,0,0,1,0,0,0,1,19119.3333333,5,3,5,5_0,5000.0,0,5000.0,0,9,15,0.0,0.0,0.0,0,0,509.82199544433587,509.82199544433587,0.0 -4438,5526,5525,3,7,29,111,46,10,0,3376,0,300,0,0,1,7,0,1,1.0,1263.27558038,0,0,18596.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18596.0,5,3,5,5_0,15000.0,0,15000.0,0,6,7,0.0,10.0,1.1,0,0,1529.4659863330078,1529.4659863330078,0.0 -4439,5527,5526,2,4,39,112,47,20,0,3377,0,150,0,0,1,4,3,5,2.4,938.22947614,5357,0,41260.0,1,1,9,1,4,2,0,0,0,1,0,0,0,0,0,2,17191.6666667,5,3,5,5_0,18859.0,0,18859.0,0,4,0,0.0,0.0,0.0,0,0,1922.9466024169462,1922.9466024169462,0.0 -4440,5535,5534,0,19,32,111,52,20,0,3387,0,0,30,295,3,3,0,3,2.0,4761.79582003,0,0,35020.0,1,3,10,8,5,1,0,1,0,0,0,0,1,0,1,0,17510.0,5,3,5,5_0,7500.0,0,0.0,7500,8,20,0.0,3.33333333333,0.0,0,0,764.7329931665039,0.0,764.7329931665039 +4435,5515,5514,6,6,57,112,68,70,0,3363,0,0,130,0,1,5,1,2,1.5,3002.08961794,0,0,27632.0,1,2,7,2,2,1,0,1,0,1,0,0,0,0,1,0,18421.3333333,5,3,5,5_0,15000.0,0,0.0,15000,6,6,20.5,52.5,3.3,0,1,1529.4659863330073,0.0,1529.4659863330073 +4436,5523,5522,20,20,58,120,78,50,0,3371,0,0,0,0,0,4,0,1,1.0,1301.19485615,0,0,17031.0,7,1,0,1,1,1,0,0,0,1,0,0,0,0,1,0,17031.0,5,3,5,5_0,3000.0,0,0.0,3000,12,12,0.0,0.0,0.0,0,0,305.8931972666015,0.0,305.8931972666015 +4437,5525,5524,13,15,68,111,74,31,0,3375,0,0,0,0,0,4,1,2,1.5,3853.10803284,3029,0,28679.0,5,1,9,7,2,1,0,0,0,0,0,1,0,0,0,1,19119.3333333,5,3,5,5_0,5000.0,0,5000.0,0,9,15,0.0,0.0,0.0,0,0,509.8219954443358,509.8219954443358,0.0 +4438,5526,5525,3,7,29,111,46,10,0,3376,0,300,0,0,1,7,0,1,1.0,1263.27558038,0,0,18596.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,18596.0,5,3,5,5_0,15000.0,0,15000.0,0,6,7,0.0,10.0,1.1,0,0,1529.4659863330073,1529.4659863330073,0.0 +4439,5527,5526,2,4,39,112,47,20,0,3377,0,150,0,0,1,4,3,5,2.4,938.22947614,5357,0,41260.0,1,1,9,1,4,2,0,0,0,1,0,0,0,0,0,2,17191.6666667,5,3,5,5_0,18859.0,0,18859.0,0,4,0,0.0,0.0,0.0,0,0,1922.9466024169458,1922.9466024169458,0.0 +4440,5535,5534,0,19,32,111,52,20,0,3387,0,0,30,295,3,3,0,3,2.0,4761.79582003,0,0,35020.0,1,3,10,8,5,1,0,1,0,0,0,0,1,0,1,0,17510.0,5,3,5,5_0,7500.0,0,0.0,7500,8,20,0.0,3.33333333333,0.0,0,0,764.7329931665037,0.0,764.7329931665037 4441,5536,5535,0,0,43,221,62,71,0,3389,0,0,0,0,1,7,1,2,1.5,3800.78430005,0,0,26100.0,1,1,1,1,2,0,0,0,0,1,0,0,0,0,0,0,17400.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,82.5,5.5,0,0,0.0,0.0,0.0 4442,5542,5541,0,12,67,400,78,70,2,3399,0,0,0,0,0,3,0,1,1.0,2291.6180977,0,3800,16920.0,5,3,0,0,1,1,0,0,1,0,0,0,0,0,0,1,16920.0,5,3,5,5_1,10000.0,0,10000.0,0,5,12,0.0,0.0,0.0,0,0,1156.596194784674,1156.596194784674,0.0 4443,5545,5544,0,0,82,111,78,70,0,3402,0,0,0,0,0,3,0,1,1.0,2019.7293138,0,0,18573.0,5,1,7,5,1,0,0,0,0,0,1,0,0,0,0,0,18573.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4444,5547,5546,10,14,61,112,56,60,0,3404,0,0,0,0,1,6,0,2,1.5,1618.73260082,3848,0,26030.0,1,1,7,0,3,2,1,0,1,0,0,0,0,0,0,2,17353.3333333,5,3,5,5_1,13500.0,0,13500.0,0,15,15,0.0,0.0,0.0,1,0,1561.4048629593099,1561.4048629593099,0.0 -4445,5550,5549,7,16,34,111,55,42,0,3408,0,0,30,196,2,2,1,3,1.8,3171.30317589,0,0,33004.0,1,3,6,4,4,3,0,1,0,0,1,0,0,0,1,2,18335.5555556,5,3,5,5_0,24226.0,0,24226.0,0,7,14,64.0,26.6666666667,3.31,0,1,2470.1895323268964,2470.1895323268964,0.0 -4446,5581,5580,0,13,23,111,84,20,0,3458,0,0,240,160,0,2,0,1,1.0,3086.18000957,2949,0,17029.0,3,3,8,6,1,2,0,1,0,0,1,0,0,1,2,0,17029.0,5,3,5,5_0,6000.0,0,0.0,6000,2,8,0.0,0.0,0.0,0,0,611.7863945332031,0.0,611.7863945332031 +4445,5550,5549,7,16,34,111,55,42,0,3408,0,0,30,196,2,2,1,3,1.8,3171.30317589,0,0,33004.0,1,3,6,4,4,3,0,1,0,0,1,0,0,0,1,2,18335.5555556,5,3,5,5_0,24226.0,0,24226.0,0,7,14,64.0,26.6666666667,3.31,0,1,2470.189532326896,2470.189532326896,0.0 +4446,5581,5580,0,13,23,111,84,20,0,3458,0,0,240,160,0,2,0,1,1.0,3086.18000957,2949,0,17029.0,3,3,8,6,1,2,0,1,0,0,1,0,0,1,2,0,17029.0,5,3,5,5_0,6000.0,0,0.0,6000,2,8,0.0,0.0,0.0,0,0,611.786394533203,0.0,611.786394533203 4447,5584,5583,0,0,35,111,65,31,0,3461,0,0,0,0,2,1,0,2,1.5,7768.84573594,0,0,26696.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,17797.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,41.5,75.0,5.56,0,0,0.0,0.0,0.0 -4448,5586,5585,9,14,42,111,34,10,0,3464,0,200,0,0,1,5,2,4,2.1,1540.76764905,0,0,39152.0,1,2,8,7,4,1,1,1,0,0,0,1,0,0,0,1,18643.809523800002,5,3,5,5_0,35000.0,0,35000.0,0,6,10,0.0,0.0,3.3,0,1,3568.7539681103513,3568.7539681103513,0.0 -4449,5596,5595,2,15,27,111,42,20,0,3476,0,80,0,261,2,2,0,2,1.5,4660.12141272,832,0,26981.0,1,3,8,6,3,2,0,1,0,0,1,0,0,1,0,2,17987.3333333,5,3,5,5_0,69572.0,0,69572.0,0,4,7,90.0,45.0,3.3,0,1,7093.867173410667,7093.867173410667,0.0 -4450,5600,5599,0,0,35,111,42,43,0,3482,0,0,0,0,1,3,1,2,1.5,968.1403042710001,0,0,26702.0,1,3,6,4,2,0,0,0,0,0,1,0,0,1,0,0,17801.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4451,5607,5606,12,12,63,111,75,50,0,349,0,0,0,0,1,4,1,3,2.0,1531.08494243,0,0,37530.0,5,1,7,5,4,1,0,0,0,0,1,0,0,0,1,0,18765.0,5,3,5,5_0,3000.0,0,0.0,3000,3,8,0.0,10.0,3.3,0,1,305.89319726660153,0.0,305.89319726660153 -4452,5610,5609,3,5,41,112,69,71,0,3493,0,0,0,0,1,5,0,2,1.5,2704.61526382,2839,0,25643.0,1,4,6,1,5,1,0,0,0,1,0,0,0,0,0,1,17095.3333333,5,3,5,5_0,22000.0,0,22000.0,0,7,7,80.0,40.0,3.3,0,1,2243.216779955078,2243.216779955078,0.0 -4453,5624,5623,1,5,31,111,52,43,2,3510,0,30,0,0,2,4,2,4,2.1,2912.96075536,0,9000,38920.0,1,2,4,4,4,2,0,1,0,0,1,0,0,0,1,1,18533.3333333,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882813,2039.2879817773435,815.7151927109375 +4448,5586,5585,9,14,42,111,34,10,0,3464,0,200,0,0,1,5,2,4,2.1,1540.76764905,0,0,39152.0,1,2,8,7,4,1,1,1,0,0,0,1,0,0,0,1,18643.8095238,5,3,5,5_0,35000.0,0,35000.0,0,6,10,0.0,0.0,3.3,0,1,3568.7539681103503,3568.7539681103503,0.0 +4449,5596,5595,2,15,27,111,42,20,0,3476,0,80,0,261,2,2,0,2,1.5,4660.12141272,832,0,26981.0,1,3,8,6,3,2,0,1,0,0,1,0,0,1,0,2,17987.3333333,5,3,5,5_0,69572.0,0,69572.0,0,4,7,90.0,45.0,3.3,0,1,7093.867173410666,7093.867173410666,0.0 +4450,5600,5599,0,0,35,111,42,43,0,3482,0,0,0,0,1,3,1,2,1.5,968.140304271,0,0,26702.0,1,3,6,4,2,0,0,0,0,0,1,0,0,1,0,0,17801.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +4451,5607,5606,12,12,63,111,75,50,0,349,0,0,0,0,1,4,1,3,2.0,1531.08494243,0,0,37530.0,5,1,7,5,4,1,0,0,0,0,1,0,0,0,1,0,18765.0,5,3,5,5_0,3000.0,0,0.0,3000,3,8,0.0,10.0,3.3,0,1,305.8931972666015,0.0,305.8931972666015 +4452,5610,5609,3,5,41,112,69,71,0,3493,0,0,0,0,1,5,0,2,1.5,2704.61526382,2839,0,25643.0,1,4,6,1,5,1,0,0,0,1,0,0,0,0,0,1,17095.3333333,5,3,5,5_0,22000.0,0,22000.0,0,7,7,80.0,40.0,3.3,0,1,2243.2167799550775,2243.2167799550775,0.0 +4453,5624,5623,1,5,31,111,52,43,2,3510,0,30,0,0,2,4,2,4,2.1,2912.96075536,0,9000,38920.0,1,2,4,4,4,2,0,1,0,0,1,0,0,0,1,1,18533.3333333,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882804,2039.2879817773432,815.7151927109373 4454,5648,5647,0,0,91,111,77,70,0,3537,0,0,0,345,0,3,0,2,1.5,3086.41484284,0,0,27590.0,5,3,9,7,3,0,0,0,0,0,0,1,0,0,0,0,18393.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4455,5660,5659,0,0,84,111,86,71,0,3552,0,0,0,0,0,3,0,2,1.5,3732.7929145999997,0,0,25480.0,5,1,7,5,3,0,0,0,0,0,1,0,0,0,0,0,16986.6666667,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4456,5666,5665,2,2,38,111,54,42,0,356,0,0,100,405,1,3,1,3,1.8,2297.6320875,0,0,31660.0,1,4,7,6,4,1,0,1,0,0,1,0,0,0,1,0,17588.888888900005,5,3,5,5_0,450.0,0,0.0,450,1,1,0.0,9.0,3.3,0,1,45.88397958999023,0.0,45.88397958999023 +4455,5660,5659,0,0,84,111,86,71,0,3552,0,0,0,0,0,3,0,2,1.5,3732.7929146,0,0,25480.0,5,1,7,5,3,0,0,0,0,0,1,0,0,0,0,0,16986.6666667,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +4456,5666,5665,2,2,38,111,54,42,0,356,0,0,100,405,1,3,1,3,1.8,2297.6320875,0,0,31660.0,1,4,7,6,4,1,0,1,0,0,1,0,0,0,1,0,17588.8888889,5,3,5,5_0,450.0,0,0.0,450,1,1,0.0,9.0,3.3,0,1,45.88397958999022,0.0,45.88397958999022 4457,5672,5671,3,3,70,112,72,70,0,357,0,0,0,0,0,5,0,1,1.0,2748.04326274,1927,0,18636.0,5,1,9,0,1,2,0,0,1,0,0,0,0,0,1,1,18636.0,5,3,5,5_1,11144.0,0,10144.0,1000,1,2,0.0,0.0,0.0,0,0,1288.9107994680405,1173.2511799895733,115.65961947846739 -4458,5680,5679,1,5,62,221,77,70,2,3581,0,0,0,0,0,4,1,2,1.5,2258.31788892,770,12200,26638.0,5,3,1,1,2,1,0,0,0,1,0,0,0,1,1,0,17758.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 -4459,5685,5684,2,4,31,120,52,42,0,3589,0,0,240,0,2,4,2,4,2.1,4815.40727603,0,0,38501.0,1,2,0,2,4,2,0,1,0,1,0,0,0,0,2,0,18333.809523800002,5,3,5,5_0,12000.0,0,0.0,12000,2,4,251.5,27.5,3.3,0,1,1223.5727890664061,0.0,1223.5727890664061 +4458,5680,5679,1,5,62,221,77,70,2,3581,0,0,0,0,0,4,1,2,1.5,2258.31788892,770,12200,26638.0,5,3,1,1,2,1,0,0,0,1,0,0,0,1,1,0,17758.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 +4459,5685,5684,2,4,31,120,52,42,0,3589,0,0,240,0,2,4,2,4,2.1,4815.40727603,0,0,38501.0,1,2,0,2,4,2,0,1,0,1,0,0,0,0,2,0,18333.8095238,5,3,5,5_0,12000.0,0,0.0,12000,2,4,251.5,27.5,3.3,0,1,1223.572789066406,0.0,1223.572789066406 4460,5696,5695,14,15,58,300,52,50,0,3603,0,600,0,0,1,6,0,1,1.0,1359.69624002,0,0,18910.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,1,18910.0,5,3,5,5_1,20000.0,0,20000.0,0,13,13,0.0,0.0,0.0,0,0,2313.192389569348,2313.192389569348,0.0 4461,5697,5696,0,0,88,111,78,71,0,3604,0,0,0,0,0,4,0,1,1.0,2700.38132596,0,0,18206.0,5,1,6,5,1,0,0,0,0,0,1,0,0,0,0,0,18206.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4462,5710,5709,2,11,62,112,78,71,0,3625,0,0,0,0,0,4,0,2,1.5,4927.63160037,0,0,27350.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,0,1,18233.3333333,5,3,5,5_1,7000.0,0,7000.0,0,2,11,0.0,0.0,0.0,0,0,809.6173363492718,809.6173363492718,0.0 4463,5713,5712,3,11,47,111,64,71,0,3628,0,10,60,0,2,5,1,3,2.0,3510.59321517,2600,0,34684.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,1,1,17342.0,5,3,5,5_0,681.0,0,681.0,0,8,11,183.0,40.0,3.3,0,1,69.43775577951854,69.43775577951854,0.0 -4464,5714,5713,10,12,39,111,47,60,0,3629,0,120,0,0,2,4,2,4,2.3,2477.02273782,1040,0,39480.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,17165.217391299997,5,3,5,5_0,16000.0,0,16000.0,0,7,12,0.0,15.0,0.0,0,1,1631.430385421875,1631.430385421875,0.0 +4464,5714,5713,10,12,39,111,47,60,0,3629,0,120,0,0,2,4,2,4,2.3,2477.02273782,1040,0,39480.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,17165.2173913,5,3,5,5_0,16000.0,0,16000.0,0,7,12,0.0,15.0,0.0,0,1,1631.4303854218747,1631.4303854218747,0.0 4465,5720,5719,2,9,68,120,77,50,0,3636,0,0,0,0,0,7,0,2,1.5,1953.35765495,0,0,27648.0,5,2,0,0,3,1,0,0,1,0,0,0,0,0,0,1,18432.0,5,3,5,5_1,10000.0,0,10000.0,0,9,9,0.0,0.0,0.0,0,0,1156.596194784674,1156.596194784674,0.0 -4466,5722,5721,5,5,74,111,77,71,0,3638,0,0,0,0,0,2,0,1,1.0,6847.01619312,1891,0,18349.0,5,4,4,4,1,1,0,0,0,0,1,0,0,1,0,1,18349.0,5,3,5,5_0,9572.0,0,9572.0,0,1,2,0.0,0.0,0.0,0,0,976.0032280786367,976.0032280786367,0.0 -4467,5740,5739,4,5,41,112,38,31,0,3662,0,120,0,0,2,5,1,3,1.8,2921.92711205,2080,0,31160.0,1,2,9,1,5,1,1,1,0,1,0,0,0,0,0,1,17311.111111099995,5,3,5,5_0,6516.0,0,6516.0,0,1,4,46.0,13.333333333299999,3.3,0,1,664.4000244630585,664.4000244630585,0.0 +4466,5722,5721,5,5,74,111,77,71,0,3638,0,0,0,0,0,2,0,1,1.0,6847.01619312,1891,0,18349.0,5,4,4,4,1,1,0,0,0,0,1,0,0,1,0,1,18349.0,5,3,5,5_0,9572.0,0,9572.0,0,1,2,0.0,0.0,0.0,0,0,976.0032280786364,976.0032280786364,0.0 +4467,5740,5739,4,5,41,112,38,31,0,3662,0,120,0,0,2,5,1,3,1.8,2921.92711205,2080,0,31160.0,1,2,9,1,5,1,1,1,0,1,0,0,0,0,0,1,17311.1111111,5,3,5,5_0,6516.0,0,6516.0,0,1,4,46.0,13.3333333333,3.3,0,1,664.4000244630585,664.4000244630585,0.0 4468,5756,5755,8,11,38,300,68,50,0,3680,0,99999,0,0,1,3,1,3,2.0,2340.53034102,2600,0,37349.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,18674.5,5,3,5,5_1,10000.0,0,10000.0,0,7,8,0.0,0.0,0.0,0,1,1156.596194784674,1156.596194784674,0.0 4469,5795,5794,0,12,29,112,54,42,2,3733,0,250,0,0,2,4,1,3,1.8,2902.7523987,0,2000,34233.0,1,4,4,0,5,2,0,1,1,0,0,0,0,0,0,2,19018.3333333,5,3,5,5_1,22000.0,0,22000.0,0,7,9,44.0,16.6666666667,3.3,0,1,2544.5116285262825,2544.5116285262825,0.0 4470,5797,5796,15,15,39,120,48,31,0,3735,0,0,0,0,3,6,2,4,2.3,1535.98284896,0,0,41302.0,1,3,0,0,4,2,0,0,1,0,0,0,0,0,1,1,17957.3913043,5,3,5,5_1,23506.0,0,20000.0,3506,2,17,190.0,36.6666666667,3.31,0,1,2718.6950154608544,2313.192389569348,405.5026258915067 -4471,5809,5808,2,10,35,111,47,31,0,3752,0,500,0,0,2,3,0,2,1.5,2845.25639599,0,0,27445.0,1,3,8,7,3,1,0,1,0,0,0,1,0,0,0,1,18296.6666667,5,3,5,5_0,43333.0,0,43333.0,0,4,7,26.0,15.0,5.55,1,0,4418.423305717882,4418.423305717882,0.0 -4472,5829,5828,11,16,63,111,75,60,0,3777,0,0,0,0,0,4,0,2,1.5,2659.61902126,1560,0,27681.0,5,3,8,7,3,2,0,0,0,0,0,1,0,0,0,2,18454.0,5,3,5,5_0,3000.0,0,3000.0,0,18,18,0.0,0.0,0.0,0,0,305.89319726660153,305.89319726660153,0.0 -4473,5839,5838,3,3,36,111,55,31,0,3790,0,300,0,0,2,4,3,5,2.4,2333.65000889,0,0,41844.0,1,2,8,6,4,1,0,1,0,0,1,0,0,0,0,1,17435.0,5,3,5,5_0,15000.0,0,15000.0,0,4,5,0.0,31.3333333333,0.0,1,0,1529.4659863330078,1529.4659863330078,0.0 -4474,5841,5840,11,23,66,111,75,50,0,3792,0,0,0,0,0,4,0,2,1.5,999.409375149,2065,0,27291.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,18194.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.85759635546873,305.89319726660153,101.96439908886718 +4471,5809,5808,2,10,35,111,47,31,0,3752,0,500,0,0,2,3,0,2,1.5,2845.25639599,0,0,27445.0,1,3,8,7,3,1,0,1,0,0,0,1,0,0,0,1,18296.6666667,5,3,5,5_0,43333.0,0,43333.0,0,4,7,26.0,15.0,5.55,1,0,4418.423305717881,4418.423305717881,0.0 +4472,5829,5828,11,16,63,111,75,60,0,3777,0,0,0,0,0,4,0,2,1.5,2659.61902126,1560,0,27681.0,5,3,8,7,3,2,0,0,0,0,0,1,0,0,0,2,18454.0,5,3,5,5_0,3000.0,0,3000.0,0,18,18,0.0,0.0,0.0,0,0,305.8931972666015,305.8931972666015,0.0 +4473,5839,5838,3,3,36,111,55,31,0,3790,0,300,0,0,2,4,3,5,2.4,2333.65000889,0,0,41844.0,1,2,8,6,4,1,0,1,0,0,1,0,0,0,0,1,17435.0,5,3,5,5_0,15000.0,0,15000.0,0,4,5,0.0,31.3333333333,0.0,1,0,1529.4659863330073,1529.4659863330073,0.0 +4474,5841,5840,11,23,66,111,75,50,0,3792,0,0,0,0,0,4,0,2,1.5,999.409375149,2065,0,27291.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,18194.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.8575963554687,305.8931972666015,101.96439908886717 4475,5844,5843,0,0,82,111,78,70,0,3795,0,0,0,450,0,4,0,1,1.0,2900.24393394,0,0,17470.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,17470.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4476,5868,5867,5,15,45,112,62,71,0,3825,0,0,0,0,2,2,0,2,1.5,3337.68882547,2340,0,26125.0,1,2,7,0,3,3,0,0,1,0,0,0,0,0,1,2,17416.6666667,5,3,5,5_1,6216.0,0,6216.0,0,0,15,99.0,25.0,3.3,0,1,718.9401946781533,718.9401946781533,0.0 -4477,5874,5873,1,2,65,221,78,71,2,3833,0,0,0,0,0,5,0,2,1.5,4593.25286481,0,6000,27943.0,5,4,1,2,3,1,0,0,0,1,0,0,0,0,0,1,18628.6666667,5,3,5,5_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1223.5727890664061,1223.5727890664061,0.0 +4477,5874,5873,1,2,65,221,78,71,2,3833,0,0,0,0,0,5,0,2,1.5,4593.25286481,0,6000,27943.0,5,4,1,2,3,1,0,0,0,1,0,0,0,0,0,1,18628.6666667,5,3,5,5_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1223.572789066406,1223.572789066406,0.0 4478,5880,5879,0,0,83,111,78,70,0,3843,0,0,0,118,0,2,0,1,1.0,2858.22545909,0,0,17840.0,5,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,17840.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4479,5897,5896,3,7,34,112,48,42,0,3868,0,0,0,0,1,4,2,4,2.1,2501.20152657,3120,0,39614.0,1,3,10,4,4,1,0,0,0,0,1,0,0,0,0,1,18863.809523800002,5,3,5,5_0,42343.0,0,42343.0,0,4,5,0.0,0.0,0.0,0,1,4317.478550619903,4317.478550619903,0.0 -4480,5901,5900,6,20,51,221,11,50,0,3873,0,15,0,0,2,5,0,2,1.5,2238.9789338000005,0,0,27773.0,1,3,1,3,3,1,0,1,0,1,0,0,0,0,0,1,18515.3333333,5,3,5,5_0,5000.0,0,5000.0,0,5,15,82.0,23.0,3.3,0,1,509.82199544433587,509.82199544433587,0.0 -4481,5906,5905,9,13,41,112,47,31,0,3878,0,0,560,0,2,6,3,5,2.4,1954.23768562,832,0,41383.0,1,1,8,1,4,2,0,1,0,1,0,0,0,0,2,0,17242.9166667,5,3,5,5_0,8409.0,0,0.0,8409,1,12,0.0,20.0,3.31,0,1,857.4186319382841,0.0,857.4186319382841 -4482,5909,5908,12,12,61,111,75,60,0,3880,0,0,0,0,1,4,1,2,1.5,6125.73925844,2600,0,26365.0,5,1,9,7,2,1,0,0,0,0,0,1,0,0,1,0,17576.6666667,5,3,5,5_0,5565.0,0,0.0,5565,16,16,0.0,0.0,0.0,0,0,567.4318809295459,0.0,567.4318809295459 +4479,5897,5896,3,7,34,112,48,42,0,3868,0,0,0,0,1,4,2,4,2.1,2501.20152657,3120,0,39614.0,1,3,10,4,4,1,0,0,0,0,1,0,0,0,0,1,18863.8095238,5,3,5,5_0,42343.0,0,42343.0,0,4,5,0.0,0.0,0.0,0,1,4317.478550619902,4317.478550619902,0.0 +4480,5901,5900,6,20,51,221,11,50,0,3873,0,15,0,0,2,5,0,2,1.5,2238.9789338,0,0,27773.0,1,3,1,3,3,1,0,1,0,1,0,0,0,0,0,1,18515.3333333,5,3,5,5_0,5000.0,0,5000.0,0,5,15,82.0,23.0,3.3,0,1,509.8219954443358,509.8219954443358,0.0 +4481,5906,5905,9,13,41,112,47,31,0,3878,0,0,560,0,2,6,3,5,2.4,1954.23768562,832,0,41383.0,1,1,8,1,4,2,0,1,0,1,0,0,0,0,2,0,17242.9166667,5,3,5,5_0,8409.0,0,0.0,8409,1,12,0.0,20.0,3.31,0,1,857.418631938284,0.0,857.418631938284 +4482,5909,5908,12,12,61,111,75,60,0,3880,0,0,0,0,1,4,1,2,1.5,6125.73925844,2600,0,26365.0,5,1,9,7,2,1,0,0,0,0,0,1,0,0,1,0,17576.6666667,5,3,5,5_0,5565.0,0,0.0,5565,16,16,0.0,0.0,0.0,0,0,567.4318809295457,0.0,567.4318809295457 4483,5914,5913,6,6,76,112,78,70,0,3886,0,125,0,0,1,4,0,2,1.5,1849.61607489,104,0,27423.0,5,1,8,0,3,1,0,1,1,0,0,0,0,0,0,1,18282.0,5,3,5,5_1,14818.0,0,14818.0,0,8,8,0.0,0.0,0.0,1,0,1713.8442414319297,1713.8442414319297,0.0 -4484,5920,5919,16,16,59,111,56,33,0,3895,0,0,0,0,1,8,1,3,2.0,2602.85492829,785,0,35087.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,17543.5,5,3,5,5_0,15000.0,0,0.0,15000,10,17,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 -4485,5921,5920,6,6,62,112,75,31,0,3896,0,550,0,0,1,6,1,3,2.0,1777.54697087,2081,0,37813.0,5,2,10,1,4,3,0,0,0,1,0,0,0,0,0,3,18906.5,5,3,5,5_0,14818.0,0,14818.0,0,8,10,0.0,0.0,0.0,0,1,1510.9084656988339,1510.9084656988339,0.0 +4484,5920,5919,16,16,59,111,56,33,0,3895,0,0,0,0,1,8,1,3,2.0,2602.85492829,785,0,35087.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,17543.5,5,3,5,5_0,15000.0,0,0.0,15000,10,17,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 +4485,5921,5920,6,6,62,112,75,31,0,3896,0,550,0,0,1,6,1,3,2.0,1777.54697087,2081,0,37813.0,5,2,10,1,4,3,0,0,0,1,0,0,0,0,0,3,18906.5,5,3,5,5_0,14818.0,0,14818.0,0,8,10,0.0,0.0,0.0,0,1,1510.9084656988337,1510.9084656988337,0.0 4486,5948,5947,0,0,21,112,68,60,0,3933,0,0,0,534,1,2,0,1,1.0,3176.47300066,2581,0,17745.0,1,3,10,0,1,0,0,0,1,0,0,0,0,0,0,0,17745.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4487,5961,5960,10,11,58,111,64,71,0,3950,0,0,100,0,3,2,1,3,2.0,4103.80284454,0,0,37713.0,1,4,9,7,4,1,0,1,0,0,0,1,0,0,1,0,18856.5,5,3,5,5_0,5000.0,0,0.0,5000,9,16,81.0,18.3333333333,3.3,0,1,509.82199544433587,0.0,509.82199544433587 -4488,5964,5963,2,2,81,111,75,60,0,3954,0,0,0,0,0,3,0,2,1.5,4257.80997649,0,0,27068.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18045.3333333,5,3,5,5_0,6000.0,0,6000.0,0,4,4,0.0,0.0,0.0,0,0,611.7863945332031,611.7863945332031,0.0 +4487,5961,5960,10,11,58,111,64,71,0,3950,0,0,100,0,3,2,1,3,2.0,4103.80284454,0,0,37713.0,1,4,9,7,4,1,0,1,0,0,0,1,0,0,1,0,18856.5,5,3,5,5_0,5000.0,0,0.0,5000,9,16,81.0,18.3333333333,3.3,0,1,509.8219954443358,0.0,509.8219954443358 +4488,5964,5963,2,2,81,111,75,60,0,3954,0,0,0,0,0,3,0,2,1.5,4257.80997649,0,0,27068.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18045.3333333,5,3,5,5_0,6000.0,0,6000.0,0,4,4,0.0,0.0,0.0,0,0,611.786394533203,611.786394533203,0.0 4489,5977,5976,12,21,61,212,77,70,0,3973,0,0,0,0,0,5,0,2,1.5,1494.41736852,2081,0,27668.0,5,1,2,0,3,2,0,0,1,0,0,0,0,0,1,1,18445.3333333,5,3,5,5_1,37000.0,0,22000.0,15000,4,17,0.0,0.0,0.0,0,0,4279.405920703293,2544.5116285262825,1734.8942921770108 -4490,5987,5986,5,7,52,300,43,41,0,3987,0,30,0,0,1,4,1,2,1.3,2666.77272131,3147,0,24210.0,1,1,0,0,2,1,1,1,1,0,0,0,0,0,0,1,18623.076923099998,5,3,5,5_1,11445.0,0,11445.0,0,1,10,757.0,5.0,0.0,0,1,1323.7243449310592,1323.7243449310592,0.0 -4491,5997,5996,11,12,59,111,52,50,0,4004,0,0,0,0,1,5,0,1,1.0,1836.16094653,0,0,18952.0,1,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,18952.0,5,3,5,5_0,10704.0,0,0.0,10704,2,15,34.5,30.0,3.3,0,1,1091.4269278472343,0.0,1091.4269278472343 -4492,5999,5998,1,6,44,111,37,50,2,4008,0,250,0,870,1,3,2,3,1.8,1793.35661905,0,11000,34225.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,19013.888888900005,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 -4493,6002,6001,7,7,53,111,54,31,0,4011,0,0,150,0,3,6,2,4,2.5,1792.71054379,1463,0,45896.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,2,0,18358.4,5,3,5,5_0,1000.0,0,0.0,1000,6,7,224.5,50.0,1.1,1,0,101.96439908886718,0.0,101.96439908886718 -4494,6017,6016,1,7,23,112,52,60,2,4033,0,0,20,346,2,3,1,3,1.8,3006.15418532,2860,5500,33176.0,1,3,10,5,4,1,1,1,0,0,1,0,0,0,1,0,18431.111111099995,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.3099856695635,0.0,1111.3099856695635 +4490,5987,5986,5,7,52,300,43,41,0,3987,0,30,0,0,1,4,1,2,1.3,2666.77272131,3147,0,24210.0,1,1,0,0,2,1,1,1,1,0,0,0,0,0,0,1,18623.0769231,5,3,5,5_1,11445.0,0,11445.0,0,1,10,757.0,5.0,0.0,0,1,1323.7243449310592,1323.7243449310592,0.0 +4491,5997,5996,11,12,59,111,52,50,0,4004,0,0,0,0,1,5,0,1,1.0,1836.16094653,0,0,18952.0,1,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,18952.0,5,3,5,5_0,10704.0,0,0.0,10704,2,15,34.5,30.0,3.3,0,1,1091.426927847234,0.0,1091.426927847234 +4492,5999,5998,1,6,44,111,37,50,2,4008,0,250,0,870,1,3,2,3,1.8,1793.35661905,0,11000,34225.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,19013.8888889,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 +4493,6002,6001,7,7,53,111,54,31,0,4011,0,0,150,0,3,6,2,4,2.5,1792.71054379,1463,0,45896.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,2,0,18358.4,5,3,5,5_0,1000.0,0,0.0,1000,6,7,224.5,50.0,1.1,1,0,101.96439908886717,0.0,101.96439908886717 +4494,6017,6016,1,7,23,112,52,60,2,4033,0,0,20,346,2,3,1,3,1.8,3006.15418532,2860,5500,33176.0,1,3,10,5,4,1,1,1,0,0,1,0,0,0,1,0,18431.1111111,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.309985669563,0.0,1111.309985669563 4495,6038,6037,14,18,54,300,75,60,0,4061,0,0,0,0,1,9,0,2,1.5,1615.60983703,3374,0,25443.0,5,1,0,0,3,3,0,0,1,0,0,0,0,0,1,2,16962.0,5,3,5,5_1,8859.0,0,6859.0,2000,25,25,0.0,0.0,0.0,0,0,1024.6285689597428,793.3093300028078,231.31923895693478 -4496,6057,6056,7,7,66,111,77,50,0,4085,0,0,0,0,0,3,0,2,1.5,2439.89964569,0,0,28447.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,18964.6666667,5,3,5,5_0,10000.0,0,0.0,10000,2,8,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 +4496,6057,6056,7,7,66,111,77,50,0,4085,0,0,0,0,0,3,0,2,1.5,2439.89964569,0,0,28447.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,18964.6666667,5,3,5,5_0,10000.0,0,0.0,10000,2,8,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 4497,6060,6059,0,0,51,111,46,50,0,4090,0,0,0,0,1,3,0,1,1.0,2981.33823179,0,0,18064.0,1,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18064.0,5,3,5,5_0,0.0,0,0.0,0,0,0,22.5,40.0,5.5,0,0,0.0,0.0,0.0 -4498,6062,6061,12,12,74,111,77,70,0,4093,0,0,0,0,0,4,0,1,1.0,5140.76677317,0,0,17899.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,17899.0,5,3,5,5_0,4000.0,0,4000.0,0,4,14,0.0,0.0,0.0,0,0,407.85759635546873,407.85759635546873,0.0 +4498,6062,6061,12,12,74,111,77,70,0,4093,0,0,0,0,0,4,0,1,1.0,5140.76677317,0,0,17899.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,17899.0,5,3,5,5_0,4000.0,0,4000.0,0,4,14,0.0,0.0,0.0,0,0,407.8575963554687,407.8575963554687,0.0 4499,6072,6071,0,14,33,400,53,60,0,4105,0,560,0,0,1,4,0,1,1.0,2780.87475272,1300,0,17042.0,1,2,0,0,1,1,0,1,1,0,0,0,0,0,0,1,17042.0,5,3,5,5_1,23000.0,0,23000.0,0,10,13,0.0,30.0,3.3,1,0,2660.17124800475,2660.17124800475,0.0 4500,6073,6072,1,7,25,112,63,50,2,4108,0,400,0,0,1,3,0,1,1.0,4297.77953454,3120,5000,18985.0,1,3,7,0,1,1,0,1,1,0,0,0,0,0,0,1,18985.0,5,3,5,5_1,25000.0,0,25000.0,0,2,7,75.5,30.0,3.3,0,1,2891.4904869616844,2891.4904869616844,0.0 -4501,6076,6075,5,9,50,300,54,50,0,4111,0,0,120,0,1,5,0,1,1.0,3436.65743278,0,0,18336.0,1,2,0,1,1,1,0,1,0,1,0,0,0,0,1,0,18336.0,5,3,5,5_0,7000.0,0,0.0,7000,5,10,0.0,20.0,1.1,0,0,713.7507936220703,0.0,713.7507936220703 -4502,6085,6084,8,9,30,221,47,20,0,4123,0,500,0,0,1,2,0,1,1.0,2290.32070985,2600,0,17574.0,1,3,1,3,1,1,1,1,0,1,0,0,0,0,0,1,17574.0,5,3,5,5_0,13781.0,0,13781.0,0,2,11,0.0,0.0,0.0,0,1,1405.1713838436785,1405.1713838436785,0.0 +4501,6076,6075,5,9,50,300,54,50,0,4111,0,0,120,0,1,5,0,1,1.0,3436.65743278,0,0,18336.0,1,2,0,1,1,1,0,1,0,1,0,0,0,0,1,0,18336.0,5,3,5,5_0,7000.0,0,0.0,7000,5,10,0.0,20.0,1.1,0,0,713.7507936220701,0.0,713.7507936220701 +4502,6085,6084,8,9,30,221,47,20,0,4123,0,500,0,0,1,2,0,1,1.0,2290.32070985,2600,0,17574.0,1,3,1,3,1,1,1,1,0,1,0,0,0,0,0,1,17574.0,5,3,5,5_0,13781.0,0,13781.0,0,2,11,0.0,0.0,0.0,0,1,1405.1713838436783,1405.1713838436783,0.0 4503,6092,6091,0,3,31,300,37,20,2,413,0,0,200,0,1,5,1,2,1.3,1591.05264514,2080,7490,23582.0,1,2,0,0,2,1,0,1,1,0,0,0,0,1,1,0,18140.0,5,3,5,5_1,8000.0,0,0.0,8000,4,7,139.2,30.0,3.31,0,0,925.2769558277391,0.0,925.2769558277391 -4504,6100,6099,1,1,32,112,65,43,1,4140,0,500,0,0,2,5,2,4,2.1,1860.25185765,2996,17000,38498.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,0,2,18332.380952400003,5,3,5,5_1,20000.0,0,20000.0,0,2,2,238.0,24.5,3.33,0,1,2313.192389569348,2313.192389569348,0.0 -4505,6119,6118,1,1,31,111,64,43,1,4168,0,0,28,0,2,4,1,3,1.8,7151.85414504,0,7000,33818.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,18787.777777799998,5,3,5,5_0,5952.0,0,0.0,5952,1,1,0.0,15.0,1.1,1,1,606.8921033769375,0.0,606.8921033769375 -4506,6120,6119,3,4,39,120,37,50,0,417,0,139,0,0,1,5,1,2,1.5,2469.377628,2608,0,27997.0,1,2,0,2,2,1,1,1,0,1,0,0,0,0,0,1,18664.6666667,5,3,5,5_0,22000.0,0,22000.0,0,7,7,80.0,40.0,3.3,0,1,2243.216779955078,2243.216779955078,0.0 -4507,6122,6121,13,14,65,111,78,71,0,4171,0,0,0,0,1,5,0,2,1.5,2752.49041662,0,0,27029.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,18019.3333333,5,3,5,5_0,17000.0,0,17000.0,0,1,12,40.5,25.0,3.3,0,1,1733.394784510742,1733.394784510742,0.0 +4504,6100,6099,1,1,32,112,65,43,1,4140,0,500,0,0,2,5,2,4,2.1,1860.25185765,2996,17000,38498.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,0,2,18332.3809524,5,3,5,5_1,20000.0,0,20000.0,0,2,2,238.0,24.5,3.33,0,1,2313.192389569348,2313.192389569348,0.0 +4505,6119,6118,1,1,31,111,64,43,1,4168,0,0,28,0,2,4,1,3,1.8,7151.85414504,0,7000,33818.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,18787.7777778,5,3,5,5_0,5952.0,0,0.0,5952,1,1,0.0,15.0,1.1,1,1,606.8921033769374,0.0,606.8921033769374 +4506,6120,6119,3,4,39,120,37,50,0,417,0,139,0,0,1,5,1,2,1.5,2469.377628,2608,0,27997.0,1,2,0,2,2,1,1,1,0,1,0,0,0,0,0,1,18664.6666667,5,3,5,5_0,22000.0,0,22000.0,0,7,7,80.0,40.0,3.3,0,1,2243.2167799550775,2243.2167799550775,0.0 +4507,6122,6121,13,14,65,111,78,71,0,4171,0,0,0,0,1,5,0,2,1.5,2752.49041662,0,0,27029.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,18019.3333333,5,3,5,5_0,17000.0,0,17000.0,0,1,12,40.5,25.0,3.3,0,1,1733.3947845107418,1733.3947845107418,0.0 4508,6132,6131,15,19,63,300,78,70,0,4186,0,0,0,0,0,5,0,2,1.5,1123.97925106,2184,0,26300.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,17533.3333333,5,3,5,5_1,15000.0,0,15000.0,0,12,14,0.0,0.0,0.0,0,0,1734.8942921770108,1734.8942921770108,0.0 -4509,6137,6136,2,6,68,111,78,60,0,4193,0,0,0,0,0,3,0,1,1.0,2144.39850519,3978,0,18830.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,0,1,18830.0,5,3,5,5_0,15000.0,0,15000.0,0,5,7,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 -4510,6147,6146,5,5,74,111,72,50,0,4212,0,0,0,0,0,1,0,1,1.0,3006.12273758,1352,0,17500.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,17500.0,5,3,5,5_0,9000.0,0,9000.0,0,5,5,0.0,0.0,0.0,0,0,917.6795917998046,917.6795917998046,0.0 +4509,6137,6136,2,6,68,111,78,60,0,4193,0,0,0,0,0,3,0,1,1.0,2144.39850519,3978,0,18830.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,0,1,18830.0,5,3,5,5_0,15000.0,0,15000.0,0,5,7,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 +4510,6147,6146,5,5,74,111,72,50,0,4212,0,0,0,0,0,1,0,1,1.0,3006.12273758,1352,0,17500.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,17500.0,5,3,5,5_0,9000.0,0,9000.0,0,5,5,0.0,0.0,0.0,0,0,917.6795917998045,917.6795917998045,0.0 4511,6149,6148,21,21,70,112,74,41,0,4216,0,0,0,0,0,4,0,2,1.5,1609.35558621,1044,0,26840.0,5,1,10,0,3,1,0,0,1,0,0,0,0,0,0,1,17893.3333333,5,3,5,5_1,7000.0,0,7000.0,0,13,16,0.0,0.0,0.0,0,0,809.6173363492718,809.6173363492718,0.0 4512,6172,6171,7,7,53,112,11,50,0,4246,0,0,0,0,2,7,0,2,1.5,2121.6464962,0,0,26596.0,1,1,6,0,3,1,0,0,1,0,0,0,0,0,0,1,17730.6666667,5,3,5,5_1,12000.0,0,12000.0,0,2,6,0.0,0.0,0.0,0,0,1387.9154337416087,1387.9154337416087,0.0 -4513,6205,6204,1,2,31,111,52,20,0,4292,0,800,0,435,1,2,0,1,1.0,2984.96008593,1976,0,18583.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,18583.0,5,3,5,5_0,7216.0,0,7216.0,0,1,2,23.5,20.0,3.3,0,0,735.7751038252655,735.7751038252655,0.0 +4513,6205,6204,1,2,31,111,52,20,0,4292,0,800,0,435,1,2,0,1,1.0,2984.96008593,1976,0,18583.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,18583.0,5,3,5,5_0,7216.0,0,7216.0,0,1,2,23.5,20.0,3.3,0,0,735.7751038252654,735.7751038252654,0.0 4514,6220,6219,0,0,59,111,77,60,0,4309,0,0,0,271,0,3,0,1,1.0,3024.55059984,0,0,17289.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17289.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4515,6225,6224,25,25,77,111,77,71,0,4314,0,0,0,0,0,4,0,1,1.0,3542.43456999,0,0,17028.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,17028.0,5,3,5,5_0,330.0,0,0.0,330,16,23,0.0,0.0,0.0,0,0,33.648251699326174,0.0,33.648251699326174 -4516,6227,6226,3,3,61,111,75,41,0,4316,0,0,0,400,0,2,0,1,1.0,3108.37415643,0,0,18172.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18172.0,5,3,5,5_0,8000.0,0,0.0,8000,3,3,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 -4517,6233,6232,2,23,38,112,67,42,0,4323,0,250,0,0,2,3,1,3,1.8,4316.26235027,0,0,31732.0,1,3,7,0,4,2,0,1,1,0,0,0,0,0,0,2,17628.888888900005,5,3,5,5_1,70000.0,0,70000.0,0,2,20,75.6,53.3333333333,3.3,0,1,8096.173363492717,8096.173363492717,0.0 -4518,6281,6280,2,10,50,111,47,12,0,4390,0,99999,0,460,2,6,6,8,3.5,926.69022193,6240,0,60044.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,17155.4285714,5,3,5,5_0,20001.0,0,14001.0,6000,1,4,44.5,17.3333333333,3.3,0,1,2039.3899461764322,1427.6035516432294,611.7863945332031 -4519,6282,6281,7,11,47,112,62,50,0,4391,0,128,0,0,2,4,1,3,1.8,957.5713946530001,4034,0,31062.0,1,2,8,2,4,3,0,1,0,1,0,0,0,0,0,3,17256.6666667,5,3,5,5_0,25311.0,0,25311.0,0,6,9,187.1,63.3333333333,0.0,0,1,2580.820905338317,2580.820905338317,0.0 +4515,6225,6224,25,25,77,111,77,71,0,4314,0,0,0,0,0,4,0,1,1.0,3542.43456999,0,0,17028.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,17028.0,5,3,5,5_0,330.0,0,0.0,330,16,23,0.0,0.0,0.0,0,0,33.64825169932616,0.0,33.64825169932616 +4516,6227,6226,3,3,61,111,75,41,0,4316,0,0,0,400,0,2,0,1,1.0,3108.37415643,0,0,18172.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18172.0,5,3,5,5_0,8000.0,0,0.0,8000,3,3,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 +4517,6233,6232,2,23,38,112,67,42,0,4323,0,250,0,0,2,3,1,3,1.8,4316.26235027,0,0,31732.0,1,3,7,0,4,2,0,1,1,0,0,0,0,0,0,2,17628.8888889,5,3,5,5_1,70000.0,0,70000.0,0,2,20,75.6,53.3333333333,3.3,0,1,8096.173363492717,8096.173363492717,0.0 +4518,6281,6280,2,10,50,111,47,12,0,4390,0,99999,0,460,2,6,6,8,3.5,926.69022193,6240,0,60044.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,17155.4285714,5,3,5,5_0,20001.0,0,14001.0,6000,1,4,44.5,17.3333333333,3.3,0,1,2039.389946176432,1427.6035516432291,611.786394533203 +4519,6282,6281,7,11,47,112,62,50,0,4391,0,128,0,0,2,4,1,3,1.8,957.571394653,4034,0,31062.0,1,2,8,2,4,3,0,1,0,1,0,0,0,0,0,3,17256.6666667,5,3,5,5_0,25311.0,0,25311.0,0,6,9,187.1,63.3333333333,0.0,0,1,2580.8209053383166,2580.8209053383166,0.0 4520,6306,6305,4,5,54,112,63,50,0,4423,0,550,0,0,2,6,0,2,1.5,1613.50238964,0,0,28480.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,0,2,18986.6666667,5,3,5,5_1,14000.0,0,14000.0,0,4,5,0.0,2.0,3.3,0,1,1619.2346726985436,1619.2346726985436,0.0 -4521,6311,6310,9,9,56,111,22,50,0,4429,0,0,0,200,1,1,0,2,1.5,3557.44266905,1758,0,26830.0,1,3,9,7,3,1,1,0,0,0,0,1,0,0,0,1,17886.6666667,5,3,5,5_0,4000.0,0,4000.0,0,8,9,98.0,35.0,3.3,0,1,407.85759635546873,407.85759635546873,0.0 +4521,6311,6310,9,9,56,111,22,50,0,4429,0,0,0,200,1,1,0,2,1.5,3557.44266905,1758,0,26830.0,1,3,9,7,3,1,1,0,0,0,0,1,0,0,0,1,17886.6666667,5,3,5,5_0,4000.0,0,4000.0,0,8,9,98.0,35.0,3.3,0,1,407.8575963554687,407.8575963554687,0.0 4522,6348,6347,0,0,66,111,72,41,0,4491,0,0,0,610,0,1,0,1,1.0,3780.92614925,0,0,18647.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18647.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4523,6372,6371,20,20,69,221,78,71,0,4532,0,0,0,0,2,4,1,3,2.0,2673.10709511,2080,0,37718.0,5,1,1,2,4,1,0,0,0,1,0,0,0,0,0,1,18859.0,5,3,5,5_0,23672.0,0,23672.0,0,1,7,0.0,0.0,0.0,0,1,2413.7012552316637,2413.7012552316637,0.0 4524,6373,6372,0,0,78,111,78,70,0,4533,0,0,0,237,0,1,0,1,1.0,3760.58511143,0,0,18250.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18250.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4525,6384,6383,3,8,71,112,75,70,0,4554,0,0,0,0,0,5,0,2,1.5,1751.42480402,0,0,27300.0,5,1,5,0,3,2,0,0,1,0,0,0,0,0,0,2,18200.0,5,3,5,5_1,5000.0,0,5000.0,0,6,6,0.0,0.0,0.0,0,0,578.298097392337,578.298097392337,0.0 -4526,6386,6385,10,11,45,111,34,10,0,4557,0,0,0,554,2,3,1,3,2.0,2693.34068623,0,0,38119.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,0,1,19059.5,5,3,5,5_0,13000.0,0,13000.0,0,8,13,171.2,63.3333333333,3.3,0,1,1325.5371881552735,1325.5371881552735,0.0 -4527,6391,6390,9,9,60,111,42,50,0,4563,99999,0,0,0,1,7,1,3,2.0,3004.16831767,7246,0,34943.0,1,1,8,6,4,2,0,1,0,0,1,0,0,0,1,0,17471.5,5,3,5,5_0,11300.0,0,0.0,11300,8,8,16.5,145.0,3.3,0,1,1152.197709704199,0.0,1152.197709704199 -4528,6397,6396,5,10,39,111,53,50,0,457,0,0,32,0,1,6,1,3,1.8,1571.2130273,2288,0,31919.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,17732.777777799998,5,3,5,5_0,21769.0,0,18226.0,3543,1,15,59.5,60.0,1.1,0,0,2219.6630037655495,1858.403137793693,361.2598659718564 +4526,6386,6385,10,11,45,111,34,10,0,4557,0,0,0,554,2,3,1,3,2.0,2693.34068623,0,0,38119.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,0,1,19059.5,5,3,5,5_0,13000.0,0,13000.0,0,8,13,171.2,63.3333333333,3.3,0,1,1325.537188155273,1325.537188155273,0.0 +4527,6391,6390,9,9,60,111,42,50,0,4563,99999,0,0,0,1,7,1,3,2.0,3004.16831767,7246,0,34943.0,1,1,8,6,4,2,0,1,0,0,1,0,0,0,1,0,17471.5,5,3,5,5_0,11300.0,0,0.0,11300,8,8,16.5,145.0,3.3,0,1,1152.1977097041988,0.0,1152.1977097041988 +4528,6397,6396,5,10,39,111,53,50,0,457,0,0,32,0,1,6,1,3,1.8,1571.2130273,2288,0,31919.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,17732.7777778,5,3,5,5_0,21769.0,0,18226.0,3543,1,15,59.5,60.0,1.1,0,0,2219.663003765549,1858.4031377936928,361.25986597185636 4529,6436,6435,2,14,33,112,21,50,0,4624,0,0,0,0,2,7,4,6,2.7,2699.6166571,0,0,49192.0,1,4,7,0,4,2,0,0,1,0,0,0,0,0,0,2,18219.2592593,5,3,5,5_1,52000.0,0,52000.0,0,4,14,476.8,23.0,3.31,0,1,6014.300212880304,6014.300212880304,0.0 4530,6470,6469,5,10,76,400,78,70,0,4665,0,0,0,0,0,3,0,2,1.5,1654.39475998,0,0,27690.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,18460.0,5,3,5,5_1,7000.0,0,7000.0,0,7,11,0.0,0.0,0.0,0,0,809.6173363492718,809.6173363492718,0.0 -4531,6473,6472,15,19,34,221,37,20,0,4668,0,0,0,0,1,6,2,4,2.1,3765.15717164,1847,0,40090.0,1,3,1,1,4,2,0,0,0,1,0,0,0,0,1,1,19090.4761905,5,3,5,5_0,9216.0,0,6716.0,2500,2,7,0.0,0.0,0.0,0,0,939.7039020029998,684.792904280832,254.91099772216793 -4532,6477,6476,11,11,47,112,62,50,0,4672,80,375,0,0,2,4,2,4,2.3,1274.16932587,3120,0,43108.0,1,1,7,1,4,3,0,0,0,1,0,0,0,0,0,2,18742.6086957,5,3,5,5_0,40000.0,0,20000.0,20000,2,11,114.0,70.0,3.3,0,1,4078.575963554687,2039.2879817773435,2039.2879817773435 -4533,6488,6487,2,3,65,212,78,71,0,469,0,410,0,0,2,5,1,3,2.0,1812.95354512,2964,0,35442.0,5,2,1,0,4,3,0,1,1,0,0,0,0,0,0,3,17721.0,5,3,5,5_1,23880.0,0,23880.0,0,0,2,467.0,13.333333333299999,3.3,0,1,2761.951713145801,2761.951713145801,0.0 -4534,6489,6488,6,8,34,112,54,43,0,4691,0,730,0,0,2,5,2,4,2.1,2585.13155115,0,0,38782.0,1,2,4,0,4,2,0,1,1,0,0,0,0,0,0,2,18467.619047599997,5,3,5,5_1,16353.0,0,16353.0,0,4,7,335.8,56.25,3.3,0,0,1891.3817573313772,1891.3817573313772,0.0 +4531,6473,6472,15,19,34,221,37,20,0,4668,0,0,0,0,1,6,2,4,2.1,3765.15717164,1847,0,40090.0,1,3,1,1,4,2,0,0,0,1,0,0,0,0,1,1,19090.4761905,5,3,5,5_0,9216.0,0,6716.0,2500,2,7,0.0,0.0,0.0,0,0,939.7039020029997,684.7929042808319,254.9109977221679 +4532,6477,6476,11,11,47,112,62,50,0,4672,80,375,0,0,2,4,2,4,2.3,1274.16932587,3120,0,43108.0,1,1,7,1,4,3,0,0,0,1,0,0,0,0,0,2,18742.6086957,5,3,5,5_0,40000.0,0,20000.0,20000,2,11,114.0,70.0,3.3,0,1,4078.5759635546865,2039.2879817773432,2039.2879817773432 +4533,6488,6487,2,3,65,212,78,71,0,469,0,410,0,0,2,5,1,3,2.0,1812.95354512,2964,0,35442.0,5,2,1,0,4,3,0,1,1,0,0,0,0,0,0,3,17721.0,5,3,5,5_1,23880.0,0,23880.0,0,0,2,467.0,13.3333333333,3.3,0,1,2761.951713145801,2761.951713145801,0.0 +4534,6489,6488,6,8,34,112,54,43,0,4691,0,730,0,0,2,5,2,4,2.1,2585.13155115,0,0,38782.0,1,2,4,0,4,2,0,1,1,0,0,0,0,0,0,2,18467.6190476,5,3,5,5_1,16353.0,0,16353.0,0,4,7,335.8,56.25,3.3,0,0,1891.3817573313772,1891.3817573313772,0.0 4535,6502,6501,0,5,37,112,65,60,2,4709,0,650,0,0,2,4,3,5,2.4,1471.99191488,5484,9000,43056.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,17940.0,5,3,5,5_1,25226.0,0,25226.0,0,1,3,87.3,8.8,0.0,1,1,2917.629560963818,2917.629560963818,0.0 -4536,6506,6505,16,16,75,111,86,50,0,4717,0,0,0,0,1,4,0,2,1.5,1535.58527456,0,0,28220.0,5,2,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18813.3333333,5,3,5,5_0,10000.0,0,9000.0,1000,12,18,0.0,0.0,0.0,0,0,1019.6439908886717,917.6795917998046,101.96439908886718 -4537,6513,6512,3,3,75,111,75,70,0,4724,0,0,0,0,0,4,0,2,1.5,2481.10029958,1872,0,26905.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17936.6666667,5,3,5,5_0,8500.0,0,0.0,8500,3,3,0.0,0.0,0.0,0,0,866.697392255371,0.0,866.697392255371 +4536,6506,6505,16,16,75,111,86,50,0,4717,0,0,0,0,1,4,0,2,1.5,1535.58527456,0,0,28220.0,5,2,9,7,3,1,0,0,0,0,0,1,0,0,0,1,18813.3333333,5,3,5,5_0,10000.0,0,9000.0,1000,12,18,0.0,0.0,0.0,0,0,1019.6439908886716,917.6795917998045,101.96439908886717 +4537,6513,6512,3,3,75,111,75,70,0,4724,0,0,0,0,0,4,0,2,1.5,2481.10029958,1872,0,26905.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17936.6666667,5,3,5,5_0,8500.0,0,0.0,8500,3,3,0.0,0.0,0.0,0,0,866.6973922553709,0.0,866.6973922553709 4538,6518,6517,13,15,62,112,72,50,0,4731,0,0,600,0,1,4,0,2,1.5,1835.18160598,0,0,27910.0,5,1,6,0,3,2,0,1,1,0,0,0,0,0,1,1,18606.6666667,5,3,5,5_1,3300.0,0,300.0,3000,8,12,0.0,10.0,1.1,0,0,381.6767442789424,34.69788584354021,346.9788584354022 4539,6523,6522,0,0,32,111,47,71,0,4739,0,0,0,230,1,2,0,1,1.0,3189.96201283,0,0,17960.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17960.0,5,3,5,5_0,0.0,0,0.0,0,0,0,75.5,120.0,5.57,0,0,0.0,0.0,0.0 4540,6536,6535,2,24,46,120,64,71,0,4759,0,0,400,370,1,4,0,1,1.0,3202.71020536,2080,0,17495.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,1,0,17495.0,5,3,5,5_1,40352.0,0,0.0,40352,1,19,0.0,30.0,3.3,0,1,4667.096965195115,0.0,4667.096965195115 4541,6538,6537,0,0,51,111,52,41,0,4760,0,0,0,415,1,1,0,1,1.0,2794.84586437,0,0,17087.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,17087.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,120.0,5.5,0,0,0.0,0.0,0.0 -4542,6543,6542,1,1,44,112,54,50,0,4767,600,0,0,0,2,4,4,6,2.7,1105.3805324999998,1232,0,45924.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,1,17008.8888889,5,3,5,5_1,55666.0,0,25666.0,30000,9,11,46.5,8.333333333330001,0.0,1,0,6438.308377888366,2968.519793534344,3469.7885843540216 -4543,6544,6543,1,1,49,111,52,50,0,4770,60,0,50,0,3,6,2,4,2.3,1152.07003768,794,0,42790.0,1,1,8,7,5,3,0,1,0,0,0,1,0,0,1,1,18604.3478261,5,3,5,5_0,15000.0,0,14000.0,1000,1,1,185.7,47.0,3.3,0,1,1529.4659863330078,1427.5015872441406,101.96439908886718 -4544,6558,6557,4,4,37,111,46,31,0,4788,0,0,200,0,1,4,1,3,1.8,5031.12538991,2018,0,34072.0,1,1,10,8,5,1,0,1,0,0,0,0,1,1,1,0,18928.888888900005,5,3,5,5_0,7000.0,0,0.0,7000,5,5,0.0,21.0,3.3,0,1,713.7507936220703,0.0,713.7507936220703 +4542,6543,6542,1,1,44,112,54,50,0,4767,600,0,0,0,2,4,4,6,2.7,1105.3805325,1232,0,45924.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,1,17008.8888889,5,3,5,5_1,55666.0,0,25666.0,30000,9,11,46.5,8.33333333333,0.0,1,0,6438.308377888366,2968.519793534344,3469.7885843540216 +4543,6544,6543,1,1,49,111,52,50,0,4770,60,0,50,0,3,6,2,4,2.3,1152.07003768,794,0,42790.0,1,1,8,7,5,3,0,1,0,0,0,1,0,0,1,1,18604.3478261,5,3,5,5_0,15000.0,0,14000.0,1000,1,1,185.7,47.0,3.3,0,1,1529.4659863330073,1427.5015872441402,101.96439908886717 +4544,6558,6557,4,4,37,111,46,31,0,4788,0,0,200,0,1,4,1,3,1.8,5031.12538991,2018,0,34072.0,1,1,10,8,5,1,0,1,0,0,0,0,1,1,1,0,18928.8888889,5,3,5,5_0,7000.0,0,0.0,7000,5,5,0.0,21.0,3.3,0,1,713.7507936220701,0.0,713.7507936220701 4545,6565,6564,0,0,61,111,75,50,0,4795,0,0,0,0,0,3,0,1,1.0,3266.26969579,0,0,18821.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,18821.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4546,6576,6575,2,6,66,112,78,71,0,4810,0,0,150,0,1,3,1,3,2.0,3808.44857706,6105,0,34570.0,5,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,17285.0,5,3,5,5_1,32891.0,0,22891.0,10000,2,7,0.0,0.0,0.0,0,0,3804.160544266271,2647.564349481597,1156.596194784674 -4547,6586,6585,8,10,74,111,75,70,0,4827,0,0,0,0,0,4,0,2,1.5,2117.21425717,1820,0,25786.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,17190.6666667,5,3,5,5_0,9000.0,0,9000.0,0,3,12,0.0,0.0,0.0,0,0,917.6795917998046,917.6795917998046,0.0 -4548,6590,6589,19,19,53,221,62,71,0,4833,0,100,0,0,1,4,0,1,1.0,4929.20959789,4108,0,18748.0,1,1,1,3,1,1,1,1,0,1,0,0,0,0,0,1,18748.0,5,3,5,5_0,25000.0,0,25000.0,0,12,16,79.0,45.0,3.3,1,0,2549.10997722168,2549.10997722168,0.0 -4549,6601,6600,8,17,41,111,47,20,0,4847,0,250,0,0,1,5,2,3,1.8,2086.69583482,2600,0,33373.0,1,2,8,6,2,1,0,1,0,0,1,0,0,1,0,1,18540.5555556,5,3,5,5_0,15000.0,0,15000.0,0,4,16,97.5,20.0,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 +4547,6586,6585,8,10,74,111,75,70,0,4827,0,0,0,0,0,4,0,2,1.5,2117.21425717,1820,0,25786.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,17190.6666667,5,3,5,5_0,9000.0,0,9000.0,0,3,12,0.0,0.0,0.0,0,0,917.6795917998045,917.6795917998045,0.0 +4548,6590,6589,19,19,53,221,62,71,0,4833,0,100,0,0,1,4,0,1,1.0,4929.20959789,4108,0,18748.0,1,1,1,3,1,1,1,1,0,1,0,0,0,0,0,1,18748.0,5,3,5,5_0,25000.0,0,25000.0,0,12,16,79.0,45.0,3.3,1,0,2549.109977221679,2549.109977221679,0.0 +4549,6601,6600,8,17,41,111,47,20,0,4847,0,250,0,0,1,5,2,3,1.8,2086.69583482,2600,0,33373.0,1,2,8,6,2,1,0,1,0,0,1,0,0,1,0,1,18540.5555556,5,3,5,5_0,15000.0,0,15000.0,0,4,16,97.5,20.0,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 4550,6607,6606,3,3,53,300,23,41,0,4856,0,0,0,0,1,5,1,2,1.5,2351.37121431,6401,0,26154.0,1,3,0,0,2,1,0,0,1,0,0,0,0,1,1,0,17436.0,5,3,5,5_1,20000.0,0,0.0,20000,9,9,145.0,42.5,3.33,0,1,2313.192389569348,0.0,2313.192389569348 4551,6610,6609,6,7,68,300,77,70,0,4859,0,0,0,0,0,3,0,1,1.0,1537.84923541,2263,0,18621.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,18621.0,5,3,5,5_1,4000.0,0,0.0,4000,7,7,0.0,0.0,0.0,0,0,462.63847791386956,0.0,462.63847791386956 -4552,6611,6610,13,13,64,111,77,70,0,486,0,0,0,345,0,2,0,2,1.5,2795.91317312,2028,0,27406.0,5,3,9,7,3,2,0,0,0,0,0,1,0,1,0,2,18270.6666667,5,3,5,5_0,2000.0,0,2000.0,0,13,13,0.0,0.0,0.0,0,0,203.92879817773436,203.92879817773436,0.0 -4553,6627,6626,9,9,35,111,47,31,0,4882,0,130,0,327,1,5,3,5,2.4,1448.44762964,3017,0,41686.0,1,3,8,7,4,2,0,0,0,0,0,1,0,1,0,2,17369.1666667,5,3,5,5_0,40781.0,0,40781.0,0,5,13,0.0,0.0,0.0,0,1,4158.210159243093,4158.210159243093,0.0 -4554,6629,6628,6,16,29,111,47,41,0,4885,0,0,130,548,2,3,1,3,1.8,2941.96141681,0,0,32302.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,1,1,17945.5555556,5,3,5,5_0,7216.0,0,6916.0,300,2,21,24.8,16.6666666667,0.0,0,1,735.7751038252655,705.1857840986055,30.589319726660154 -4555,6630,6629,16,16,86,112,75,71,0,4886,0,0,0,0,0,4,0,1,1.0,2312.86707298,0,0,18885.0,5,1,8,2,1,1,0,0,0,1,0,0,0,1,1,0,18885.0,5,3,5,5_0,6000.0,6000,0.0,0,20,21,0.0,0.0,0.0,0,0,611.7863945332031,0.0,0.0 -4556,6649,6648,7,9,61,111,78,70,0,4916,0,0,0,0,0,5,0,2,1.5,1299.07515352,0,0,27120.0,5,2,8,7,3,1,0,0,0,0,0,1,0,0,0,1,18080.0,5,3,5,5_0,30000.0,0,30000.0,0,5,7,0.0,0.0,0.0,0,0,3058.9319726660156,3058.9319726660156,0.0 +4552,6611,6610,13,13,64,111,77,70,0,486,0,0,0,345,0,2,0,2,1.5,2795.91317312,2028,0,27406.0,5,3,9,7,3,2,0,0,0,0,0,1,0,1,0,2,18270.6666667,5,3,5,5_0,2000.0,0,2000.0,0,13,13,0.0,0.0,0.0,0,0,203.92879817773434,203.92879817773434,0.0 +4553,6627,6626,9,9,35,111,47,31,0,4882,0,130,0,327,1,5,3,5,2.4,1448.44762964,3017,0,41686.0,1,3,8,7,4,2,0,0,0,0,0,1,0,1,0,2,17369.1666667,5,3,5,5_0,40781.0,0,40781.0,0,5,13,0.0,0.0,0.0,0,1,4158.210159243091,4158.210159243091,0.0 +4554,6629,6628,6,16,29,111,47,41,0,4885,0,0,130,548,2,3,1,3,1.8,2941.96141681,0,0,32302.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,1,1,17945.5555556,5,3,5,5_0,7216.0,0,6916.0,300,2,21,24.8,16.6666666667,0.0,0,1,735.7751038252654,705.1857840986053,30.589319726660147 +4555,6630,6629,16,16,86,112,75,71,0,4886,0,0,0,0,0,4,0,1,1.0,2312.86707298,0,0,18885.0,5,1,8,2,1,1,0,0,0,1,0,0,0,1,1,0,18885.0,5,3,5,5_0,6000.0,6000,0.0,0,20,21,0.0,0.0,0.0,0,0,611.786394533203,0.0,0.0 +4556,6649,6648,7,9,61,111,78,70,0,4916,0,0,0,0,0,5,0,2,1.5,1299.07515352,0,0,27120.0,5,2,8,7,3,1,0,0,0,0,0,1,0,0,0,1,18080.0,5,3,5,5_0,30000.0,0,30000.0,0,5,7,0.0,0.0,0.0,0,0,3058.9319726660146,3058.9319726660146,0.0 4557,6656,6655,2,2,73,112,77,70,0,4931,0,0,0,0,0,5,0,2,1.5,1818.72066449,1555,0,26811.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,0,1,17874.0,5,3,5,5_1,16626.0,0,16626.0,0,2,3,0.0,0.0,0.0,0,0,1922.9568334489989,1922.9568334489989,0.0 4558,6658,6657,15,15,58,400,54,70,0,4933,0,0,0,0,1,5,1,3,2.0,1367.84765297,0,0,37746.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,2,0,18873.0,5,3,5,5_1,7000.0,0,0.0,7000,14,14,0.0,0.0,0.0,0,0,809.6173363492718,0.0,809.6173363492718 -4559,6670,6669,9,10,39,120,62,50,0,4949,0,520,0,0,1,3,0,1,1.0,3881.63733992,3172,0,18214.0,1,3,0,2,1,1,0,1,0,1,0,0,0,0,0,1,18214.0,5,3,5,5_0,15000.0,0,15000.0,0,5,10,116.0,50.0,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4560,6680,6679,10,14,40,111,42,10,0,4963,0,310,0,0,2,7,2,4,2.1,1226.68198033,2805,0,37769.0,1,2,8,6,4,2,0,0,0,0,1,0,0,0,1,1,17985.238095200002,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.10997722168,2039.2879817773435,509.82199544433587 -4561,6681,6680,6,12,29,111,62,50,0,4964,0,0,0,0,2,3,0,2,1.5,5415.82442354,2080,0,26211.0,1,3,6,5,3,1,0,0,0,0,1,0,0,0,1,0,17474.0,5,3,5,5_0,27500.0,0,0.0,27500,4,9,0.0,0.0,0.0,0,0,2804.0209749438472,0.0,2804.0209749438472 -4562,6682,6681,4,12,48,300,21,50,0,4965,0,0,0,0,2,4,1,3,1.8,2354.8386364,0,0,34213.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,2,1,19007.222222200002,5,3,5,5_1,31388.0,0,19166.0,12222,9,9,265.0,133.33333333299998,3.31,0,1,3630.3241361901346,2216.732266924306,1413.5918692658286 -4563,6683,6682,2,4,46,111,34,10,0,4966,0,0,0,0,2,7,2,4,2.5,1036.96457695,3030,0,43355.0,1,2,8,6,4,2,0,0,0,0,1,0,0,0,1,1,17342.0,5,3,5,5_0,26000.0,0,20000.0,6000,3,3,0.0,0.0,0.0,0,1,2651.074376310547,2039.2879817773435,611.7863945332031 -4564,6686,6685,6,23,47,111,47,50,0,4971,0,0,199998,880,2,5,2,4,2.3,3142.49432195,3120,0,40070.0,1,3,6,5,4,2,0,1,0,0,1,0,0,0,2,0,17421.7391304,5,3,5,5_0,10704.0,0,0.0,10704,2,18,0.0,55.6666666667,5.56,0,1,1091.4269278472343,0.0,1091.4269278472343 -4565,6696,6695,4,4,65,111,77,50,0,4987,0,0,0,0,0,4,0,2,1.5,1555.91723038,3590,0,27718.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,18478.6666667,5,3,5,5_0,8000.0,0,0.0,8000,2,3,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 +4559,6670,6669,9,10,39,120,62,50,0,4949,0,520,0,0,1,3,0,1,1.0,3881.63733992,3172,0,18214.0,1,3,0,2,1,1,0,1,0,1,0,0,0,0,0,1,18214.0,5,3,5,5_0,15000.0,0,15000.0,0,5,10,116.0,50.0,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4560,6680,6679,10,14,40,111,42,10,0,4963,0,310,0,0,2,7,2,4,2.1,1226.68198033,2805,0,37769.0,1,2,8,6,4,2,0,0,0,0,1,0,0,0,1,1,17985.2380952,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.109977221679,2039.2879817773432,509.8219954443358 +4561,6681,6680,6,12,29,111,62,50,0,4964,0,0,0,0,2,3,0,2,1.5,5415.82442354,2080,0,26211.0,1,3,6,5,3,1,0,0,0,0,1,0,0,0,1,0,17474.0,5,3,5,5_0,27500.0,0,0.0,27500,4,9,0.0,0.0,0.0,0,0,2804.020974943847,0.0,2804.020974943847 +4562,6682,6681,4,12,48,300,21,50,0,4965,0,0,0,0,2,4,1,3,1.8,2354.8386364,0,0,34213.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,2,1,19007.2222222,5,3,5,5_1,31388.0,0,19166.0,12222,9,9,265.0,133.333333333,3.31,0,1,3630.3241361901346,2216.732266924306,1413.5918692658286 +4563,6683,6682,2,4,46,111,34,10,0,4966,0,0,0,0,2,7,2,4,2.5,1036.96457695,3030,0,43355.0,1,2,8,6,4,2,0,0,0,0,1,0,0,0,1,1,17342.0,5,3,5,5_0,26000.0,0,20000.0,6000,3,3,0.0,0.0,0.0,0,1,2651.074376310546,2039.2879817773432,611.786394533203 +4564,6686,6685,6,23,47,111,47,50,0,4971,0,0,199998,880,2,5,2,4,2.3,3142.49432195,3120,0,40070.0,1,3,6,5,4,2,0,1,0,0,1,0,0,0,2,0,17421.7391304,5,3,5,5_0,10704.0,0,0.0,10704,2,18,0.0,55.6666666667,5.56,0,1,1091.426927847234,0.0,1091.426927847234 +4565,6696,6695,4,4,65,111,77,50,0,4987,0,0,0,0,0,4,0,2,1.5,1555.91723038,3590,0,27718.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,18478.6666667,5,3,5,5_0,8000.0,0,0.0,8000,2,3,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 4566,6698,6697,0,0,47,400,55,50,1,4989,0,0,50,0,2,5,2,4,2.5,2260.83037756,0,6240,43518.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,17407.2,5,3,5,5_1,15000.0,0,13000.0,2000,3,4,82.6,20.0,3.3,0,1,1734.8942921770108,1503.575053220076,231.31923895693478 4567,6713,6712,6,7,38,112,63,50,0,5005,0,110,0,0,2,4,2,4,2.1,2895.54955617,0,0,38836.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,2,18493.3333333,5,3,5,5_1,30000.0,0,30000.0,0,7,7,277.0,30.0,3.31,0,1,3469.7885843540216,3469.7885843540216,0.0 4568,6727,6726,0,0,22,111,84,20,0,5021,0,0,0,218,0,1,0,1,1.0,3052.80700668,0,0,18604.0,3,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,18604.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4569,6728,6727,11,13,78,211,78,71,0,5022,0,0,0,0,0,5,0,1,1.0,2933.85833416,2159,0,18410.0,5,1,2,3,1,1,0,0,0,1,0,0,0,0,1,0,18410.0,5,3,5,5_0,2400.0,0,0.0,2400,12,12,0.0,0.0,0.0,0,0,244.71455781328123,0.0,244.71455781328123 +4569,6728,6727,11,13,78,211,78,71,0,5022,0,0,0,0,0,5,0,1,1.0,2933.85833416,2159,0,18410.0,5,1,2,3,1,1,0,0,0,1,0,0,0,0,1,0,18410.0,5,3,5,5_0,2400.0,0,0.0,2400,12,12,0.0,0.0,0.0,0,0,244.71455781328117,0.0,244.71455781328117 4570,6732,6731,3,3,33,112,69,50,0,5026,0,442,0,0,2,4,2,4,2.1,1947.28905548,2158,0,37785.0,1,2,4,0,4,2,0,1,1,0,0,0,0,0,0,2,17992.8571429,5,3,5,5_1,10000.0,0,10000.0,0,2,5,218.1,40.75,3.31,0,1,1156.596194784674,1156.596194784674,0.0 -4571,6744,6743,0,0,46,111,52,50,0,5046,0,0,0,220,1,1,0,1,1.0,3380.8595439000005,0,0,17380.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17380.0,5,3,5,5_0,0.0,0,0.0,0,0,0,172.8,120.0,5.56,0,0,0.0,0.0,0.0 +4571,6744,6743,0,0,46,111,52,50,0,5046,0,0,0,220,1,1,0,1,1.0,3380.8595439,0,0,17380.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17380.0,5,3,5,5_0,0.0,0,0.0,0,0,0,172.8,120.0,5.56,0,0,0.0,0.0,0.0 4572,6750,6749,0,0,85,111,77,60,0,5055,0,0,0,0,0,3,0,1,1.0,3537.29686206,0,0,18327.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,18327.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4573,6769,6768,0,0,30,111,53,50,0,508,0,0,0,480,1,3,0,1,1.0,4312.39657385,0,0,17864.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17864.0,5,3,5,5_0,0.0,0,0.0,0,0,0,44.7,160.0,5.56,0,0,0.0,0.0,0.0 4574,6773,6772,0,0,76,111,77,70,0,5085,0,0,0,340,0,2,0,1,1.0,3687.11318214,0,0,18100.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18100.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4575,6775,6774,1,10,80,111,78,71,2,509,0,0,0,0,1,3,1,3,2.0,3764.05447486,780,3200,36403.0,5,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,18201.5,5,3,5,5_0,2000.0,0,0.0,2000,10,10,0.0,0.0,0.0,0,0,203.92879817773436,0.0,203.92879817773436 -4576,6782,6781,2,2,51,221,46,71,0,5099,0,130,400,0,2,4,1,3,2.0,1629.38236111,1300,0,37828.0,1,1,1,1,4,2,0,1,0,1,0,0,0,0,1,1,18914.0,5,3,5,5_0,24501.0,0,12501.0,12000,1,2,133.9,46.6666666667,0.0,0,1,2498.229742076335,1274.6569530099287,1223.5727890664061 -4577,6806,6805,11,11,58,111,74,33,0,5134,0,0,0,0,0,4,1,2,1.5,1806.78365417,3069,0,27995.0,5,2,8,6,2,1,0,0,0,0,1,0,0,0,1,0,18663.3333333,5,3,5,5_0,17000.0,0,0.0,17000,4,6,0.0,0.0,0.0,0,0,1733.394784510742,0.0,1733.394784510742 +4575,6775,6774,1,10,80,111,78,71,2,509,0,0,0,0,1,3,1,3,2.0,3764.05447486,780,3200,36403.0,5,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,18201.5,5,3,5,5_0,2000.0,0,0.0,2000,10,10,0.0,0.0,0.0,0,0,203.92879817773434,0.0,203.92879817773434 +4576,6782,6781,2,2,51,221,46,71,0,5099,0,130,400,0,2,4,1,3,2.0,1629.38236111,1300,0,37828.0,1,1,1,1,4,2,0,1,0,1,0,0,0,0,1,1,18914.0,5,3,5,5_0,24501.0,0,12501.0,12000,1,2,133.9,46.6666666667,0.0,0,1,2498.2297420763343,1274.6569530099284,1223.572789066406 +4577,6806,6805,11,11,58,111,74,33,0,5134,0,0,0,0,0,4,1,2,1.5,1806.78365417,3069,0,27995.0,5,2,8,6,2,1,0,0,0,0,1,0,0,0,1,0,18663.3333333,5,3,5,5_0,17000.0,0,0.0,17000,4,6,0.0,0.0,0.0,0,0,1733.3947845107418,0.0,1733.3947845107418 4578,6815,6814,0,0,87,111,75,70,0,5146,0,0,0,0,0,4,1,2,1.5,3419.75441562,0,0,28230.0,5,1,9,7,2,0,0,0,0,0,0,1,0,0,0,0,18820.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4579,6816,6815,2,23,64,111,75,33,0,5147,0,0,0,0,0,4,0,1,1.0,3136.85748197,1560,0,18417.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18417.0,5,3,5,5_0,2000.0,0,0.0,2000,17,17,0.0,0.0,0.0,0,0,203.92879817773436,0.0,203.92879817773436 +4579,6816,6815,2,23,64,111,75,33,0,5147,0,0,0,0,0,4,0,1,1.0,3136.85748197,1560,0,18417.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18417.0,5,3,5,5_0,2000.0,0,0.0,2000,17,17,0.0,0.0,0.0,0,0,203.92879817773434,0.0,203.92879817773434 4580,6831,6830,5,13,39,112,65,50,0,5161,0,0,75,0,1,4,0,1,1.0,1946.32900867,0,0,17690.0,1,3,6,0,1,1,0,1,1,0,0,0,0,0,1,0,17690.0,5,3,5,5_1,20000.0,0,0.0,20000,6,12,0.0,0.0,0.0,0,1,2313.192389569348,0.0,2313.192389569348 -4581,6840,6839,8,9,78,111,74,70,0,5171,0,0,0,0,0,4,0,2,1.5,1486.67469643,0,0,25707.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,17138.0,5,3,5,5_0,5000.0,0,0.0,5000,7,8,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 -4582,6849,6848,3,8,34,112,69,50,0,5188,0,100,0,0,2,5,1,3,1.8,1487.25540979,3532,0,31147.0,1,4,9,0,4,2,0,1,1,0,0,0,0,0,0,2,17303.888888900005,5,3,5,5_1,26959.0,0,26959.0,0,1,9,121.0,16.6666666667,3.3,0,1,3118.067681520002,3118.067681520002,0.0 +4581,6840,6839,8,9,78,111,74,70,0,5171,0,0,0,0,0,4,0,2,1.5,1486.67469643,0,0,25707.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,17138.0,5,3,5,5_0,5000.0,0,0.0,5000,7,8,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 +4582,6849,6848,3,8,34,112,69,50,0,5188,0,100,0,0,2,5,1,3,1.8,1487.25540979,3532,0,31147.0,1,4,9,0,4,2,0,1,1,0,0,0,0,0,0,2,17303.8888889,5,3,5,5_1,26959.0,0,26959.0,0,1,9,121.0,16.6666666667,3.3,0,1,3118.067681520002,3118.067681520002,0.0 4583,6858,6857,2,4,43,112,46,31,0,5199,0,0,0,0,2,5,2,4,2.3,2315.86023396,0,0,39809.0,1,2,4,0,4,1,0,0,1,0,0,0,0,0,0,1,17308.2608696,5,3,5,5_1,20000.0,0,20000.0,0,4,4,95.4,35.25,2.2,0,1,2313.192389569348,2313.192389569348,0.0 -4584,6861,6860,13,17,72,111,75,71,0,5201,0,0,0,0,0,6,0,2,1.5,3639.00534433,2080,0,26772.0,5,1,5,4,3,2,0,0,0,0,1,0,0,0,1,1,17848.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.85759635546873,305.89319726660153,101.96439908886718 -4585,6863,6862,10,17,35,112,63,60,0,5203,0,120,0,0,2,5,3,5,2.4,1420.50092256,3642,0,45713.0,1,2,7,1,4,2,0,1,0,1,0,0,0,0,0,2,19047.0833333,5,3,5,5_0,5000.0,0,5000.0,0,9,9,0.0,12.0,3.31,0,0,509.82199544433587,509.82199544433587,0.0 -4586,6869,6868,0,0,89,111,86,50,0,5213,0,0,0,0,0,4,0,1,1.0,3446.3074497000002,0,0,18281.0,6,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18281.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4587,6892,6891,1,1,60,111,54,50,1,5243,0,60,0,0,1,4,1,2,1.5,2141.75187209,0,18500,28161.0,1,3,8,6,2,2,0,1,0,0,1,0,0,0,1,1,18774.0,5,3,5,5_0,18752.0,0,15000.0,3752,1,1,0.0,0.0,0.0,0,1,1912.0364117144375,1529.4659863330078,382.5704253814297 -4588,6905,6904,6,6,94,120,78,71,0,5257,0,0,0,0,0,5,1,2,1.5,6700.99218744,0,0,25987.0,5,1,0,3,2,1,0,0,0,1,0,0,0,0,1,0,17324.6666667,5,3,5,5_0,5000.0,0,0.0,5000,8,8,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 +4584,6861,6860,13,17,72,111,75,71,0,5201,0,0,0,0,0,6,0,2,1.5,3639.00534433,2080,0,26772.0,5,1,5,4,3,2,0,0,0,0,1,0,0,0,1,1,17848.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.8575963554687,305.8931972666015,101.96439908886717 +4585,6863,6862,10,17,35,112,63,60,0,5203,0,120,0,0,2,5,3,5,2.4,1420.50092256,3642,0,45713.0,1,2,7,1,4,2,0,1,0,1,0,0,0,0,0,2,19047.0833333,5,3,5,5_0,5000.0,0,5000.0,0,9,9,0.0,12.0,3.31,0,0,509.8219954443358,509.8219954443358,0.0 +4586,6869,6868,0,0,89,111,86,50,0,5213,0,0,0,0,0,4,0,1,1.0,3446.3074497,0,0,18281.0,6,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18281.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +4587,6892,6891,1,1,60,111,54,50,1,5243,0,60,0,0,1,4,1,2,1.5,2141.75187209,0,18500,28161.0,1,3,8,6,2,2,0,1,0,0,1,0,0,0,1,1,18774.0,5,3,5,5_0,18752.0,0,15000.0,3752,1,1,0.0,0.0,0.0,0,1,1912.036411714437,1529.4659863330073,382.5704253814296 +4588,6905,6904,6,6,94,120,78,71,0,5257,0,0,0,0,0,5,1,2,1.5,6700.99218744,0,0,25987.0,5,1,0,3,2,1,0,0,0,1,0,0,0,0,1,0,17324.6666667,5,3,5,5_0,5000.0,0,0.0,5000,8,8,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 4589,6925,6924,0,0,69,111,78,70,0,5281,0,0,0,0,0,4,0,1,1.0,2537.11278332,0,0,18000.0,5,1,8,6,1,0,0,0,0,0,1,0,0,0,0,0,18000.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4590,6926,6925,0,21,20,111,47,43,0,5282,0,0,450,550,3,5,1,3,2.0,4207.71776303,2083,0,36180.0,1,3,6,5,4,2,0,1,0,0,1,0,0,0,2,0,18090.0,5,3,5,5_0,7216.0,0,6916.0,300,2,21,24.8,16.6666666667,0.0,0,1,735.7751038252655,705.1857840986055,30.589319726660154 +4590,6926,6925,0,21,20,111,47,43,0,5282,0,0,450,550,3,5,1,3,2.0,4207.71776303,2083,0,36180.0,1,3,6,5,4,2,0,1,0,0,1,0,0,0,2,0,18090.0,5,3,5,5_0,7216.0,0,6916.0,300,2,21,24.8,16.6666666667,0.0,0,1,735.7751038252654,705.1857840986053,30.589319726660147 4591,6934,6933,0,0,44,111,45,41,0,5293,0,0,0,324,1,2,1,2,1.5,3140.56566855,0,0,26699.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,17799.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,38.0,30.0,5.5,0,0,0.0,0.0,0.0 -4592,6941,6940,11,11,42,111,63,50,0,5302,0,1500,0,465,1,2,0,1,1.0,3060.07086995,3277,0,18836.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,0,1,18836.0,5,3,5,5_0,15000.0,0,15000.0,0,5,12,104.0,55.0,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4593,6946,6945,4,4,59,111,22,50,0,5308,0,350,0,0,2,4,1,3,2.0,2783.83247305,3640,0,35695.0,1,1,9,7,4,3,0,1,0,0,0,1,0,0,1,2,17847.5,5,3,5,5_0,17915.0,0,10898.0,7017,1,1,0.0,0.0,0.0,1,0,1826.6922096770556,1111.2080212704745,715.484188406581 +4592,6941,6940,11,11,42,111,63,50,0,5302,0,1500,0,465,1,2,0,1,1.0,3060.07086995,3277,0,18836.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,0,1,18836.0,5,3,5,5_0,15000.0,0,15000.0,0,5,12,104.0,55.0,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4593,6946,6945,4,4,59,111,22,50,0,5308,0,350,0,0,2,4,1,3,2.0,2783.83247305,3640,0,35695.0,1,1,9,7,4,3,0,1,0,0,0,1,0,0,1,2,17847.5,5,3,5,5_0,17915.0,0,10898.0,7017,1,1,0.0,0.0,0.0,1,0,1826.6922096770552,1111.2080212704743,715.4841884065809 4594,6951,6950,2,3,57,300,42,20,0,5318,0,100,120,0,1,6,1,2,1.5,1564.44165831,4420,0,25429.0,1,1,0,0,2,2,0,1,1,0,0,0,0,0,1,1,16952.6666667,5,3,5,5_1,32000.0,0,30000.0,2000,5,5,0.0,0.0,0.0,1,0,3701.1078233109565,3469.7885843540216,231.31923895693478 -4595,6962,6961,4,4,51,221,46,60,0,5330,0,660,50,0,2,5,1,3,2.0,2840.96118782,4212,0,37687.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,1,1,18843.5,5,3,5,5_0,24501.0,0,12501.0,12000,1,2,133.9,46.6666666667,0.0,0,1,2498.229742076335,1274.6569530099287,1223.5727890664061 -4596,6977,6976,2,20,37,400,42,20,0,5351,0,570,0,0,2,4,2,4,2.1,2428.28974352,4736,0,36782.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17515.238095200002,5,3,5,5_1,15000.0,0,15000.0,0,7,18,154.0,27.5,3.3,0,1,1734.8942921770108,1734.8942921770108,0.0 -4597,6980,6979,7,16,42,111,46,41,0,5354,0,200,0,657,1,6,2,3,2.0,2397.4622369000003,0,0,36455.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,18227.5,5,3,5,5_0,15000.0,0,15000.0,0,4,16,97.5,20.0,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 +4595,6962,6961,4,4,51,221,46,60,0,5330,0,660,50,0,2,5,1,3,2.0,2840.96118782,4212,0,37687.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,1,1,18843.5,5,3,5,5_0,24501.0,0,12501.0,12000,1,2,133.9,46.6666666667,0.0,0,1,2498.2297420763343,1274.6569530099284,1223.572789066406 +4596,6977,6976,2,20,37,400,42,20,0,5351,0,570,0,0,2,4,2,4,2.1,2428.28974352,4736,0,36782.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17515.2380952,5,3,5,5_1,15000.0,0,15000.0,0,7,18,154.0,27.5,3.3,0,1,1734.8942921770108,1734.8942921770108,0.0 +4597,6980,6979,7,16,42,111,46,41,0,5354,0,200,0,657,1,6,2,3,2.0,2397.4622369,0,0,36455.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,18227.5,5,3,5,5_0,15000.0,0,15000.0,0,4,16,97.5,20.0,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 4598,6986,6985,2,6,64,112,77,50,0,5362,0,0,0,0,0,5,0,2,1.5,2636.86750388,6016,0,27400.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,1,1,18266.6666667,5,3,5,5_1,25000.0,0,22000.0,3000,3,6,0.0,0.0,0.0,0,0,2891.4904869616844,2544.5116285262825,346.9788584354022 -4599,7009,7008,1,2,44,111,62,50,2,5396,0,0,200,0,2,4,3,5,2.6,966.7107751110001,0,12800,44270.0,1,4,8,7,4,2,1,0,0,0,0,1,0,0,1,1,17026.9230769,5,3,5,5_0,16000.0,0,6000.0,10000,3,0,56.5,18.0,3.3,0,1,1631.430385421875,611.7863945332031,1019.6439908886717 -4600,7025,7024,4,10,26,111,56,71,0,542,0,99999,99999,500,1,2,0,1,1.0,3812.12524644,0,0,17191.0,1,3,9,7,1,2,0,1,0,0,0,1,0,0,1,1,17191.0,5,3,5,5_0,33100.0,0,2100.0,31000,2,5,0.0,20.0,3.3,1,0,3375.0216098415035,214.1252380866211,3160.8963717548827 -4601,7031,7030,7,7,74,111,78,71,0,5427,0,0,0,0,0,4,0,2,1.5,2520.76857324,0,0,25790.0,5,3,7,6,3,1,0,0,0,0,1,0,0,0,0,1,17193.3333333,5,3,5,5_0,35000.0,0,35000.0,0,7,7,0.0,0.0,0.0,0,0,3568.7539681103513,3568.7539681103513,0.0 -4602,7032,7031,3,15,54,111,37,50,0,5429,0,0,91,850,2,4,0,2,1.5,1492.39473805,2723,0,28563.0,4,3,9,7,3,2,0,0,0,0,0,1,0,0,1,0,19042.0,5,3,5,5_0,4500.0,0,0.0,4500,16,16,130.6,40.0,3.3,0,1,458.8397958999023,0.0,458.8397958999023 -4603,7034,7033,3,5,30,112,63,50,0,5431,0,240,0,0,2,4,1,3,1.8,2307.75143324,0,0,33341.0,1,3,7,2,4,2,0,1,0,1,0,0,0,0,0,2,18522.777777799998,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886717,1019.6439908886717,0.0 -4604,7041,7040,7,8,70,111,75,41,0,544,0,0,0,0,0,3,0,2,1.5,1546.58959534,1089,0,26708.0,5,3,3,4,3,1,0,0,0,0,1,0,0,0,0,1,17805.3333333,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029023,1398.5436979029023,0.0 +4599,7009,7008,1,2,44,111,62,50,2,5396,0,0,200,0,2,4,3,5,2.6,966.710775111,0,12800,44270.0,1,4,8,7,4,2,1,0,0,0,0,1,0,0,1,1,17026.9230769,5,3,5,5_0,16000.0,0,6000.0,10000,3,0,56.5,18.0,3.3,0,1,1631.4303854218747,611.786394533203,1019.6439908886716 +4600,7025,7024,4,10,26,111,56,71,0,542,0,99999,99999,500,1,2,0,1,1.0,3812.12524644,0,0,17191.0,1,3,9,7,1,2,0,1,0,0,0,1,0,0,1,1,17191.0,5,3,5,5_0,33100.0,0,2100.0,31000,2,5,0.0,20.0,3.3,1,0,3375.021609841503,214.12523808662104,3160.896371754882 +4601,7031,7030,7,7,74,111,78,71,0,5427,0,0,0,0,0,4,0,2,1.5,2520.76857324,0,0,25790.0,5,3,7,6,3,1,0,0,0,0,1,0,0,0,0,1,17193.3333333,5,3,5,5_0,35000.0,0,35000.0,0,7,7,0.0,0.0,0.0,0,0,3568.7539681103503,3568.7539681103503,0.0 +4602,7032,7031,3,15,54,111,37,50,0,5429,0,0,91,850,2,4,0,2,1.5,1492.39473805,2723,0,28563.0,4,3,9,7,3,2,0,0,0,0,0,1,0,0,1,0,19042.0,5,3,5,5_0,4500.0,0,0.0,4500,16,16,130.6,40.0,3.3,0,1,458.83979589990224,0.0,458.83979589990224 +4603,7034,7033,3,5,30,112,63,50,0,5431,0,240,0,0,2,4,1,3,1.8,2307.75143324,0,0,33341.0,1,3,7,2,4,2,0,1,0,1,0,0,0,0,0,2,18522.7777778,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886716,1019.6439908886716,0.0 +4604,7041,7040,7,8,70,111,75,41,0,544,0,0,0,0,0,3,0,2,1.5,1546.58959534,1089,0,26708.0,5,3,3,4,3,1,0,0,0,0,1,0,0,0,0,1,17805.3333333,5,3,5,5_0,13716.0,0,13716.0,0,1,10,0.0,0.0,0.0,0,0,1398.5436979029018,1398.5436979029018,0.0 4605,7065,7064,14,20,55,300,46,50,0,5473,0,350,0,0,2,5,1,3,2.0,1787.62616176,2080,0,34958.0,1,1,0,0,4,5,0,0,1,0,0,0,0,0,0,5,17479.0,5,3,5,5_1,5000.0,0,5000.0,0,3,18,33.5,20.0,3.3,0,1,578.298097392337,578.298097392337,0.0 -4606,7103,7102,5,23,48,111,46,50,0,5521,0,100,0,596,2,7,1,3,2.0,2025.05579012,1042,0,36475.0,1,3,9,7,4,1,1,1,0,0,0,1,0,0,0,1,18237.5,5,3,5,5_0,15311.0,0,15311.0,0,3,15,156.3,86.6666666667,5.5,0,1,1561.1769144496454,1561.1769144496454,0.0 -4607,7109,7108,5,5,25,111,47,31,0,5527,0,0,0,501,1,3,1,3,1.8,6296.54877414,2536,0,32998.0,1,3,10,8,4,1,1,0,0,0,0,0,1,1,0,1,18332.222222200002,5,3,5,5_0,10000.0,0,10000.0,0,6,6,18.0,6.666666666669999,3.3,0,1,1019.6439908886717,1019.6439908886717,0.0 -4608,7114,7113,4,13,65,111,74,70,0,5535,0,0,0,0,0,3,0,1,1.0,2874.7189456,0,0,18584.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,0,1,18584.0,5,3,5,5_0,4000.0,0,4000.0,0,7,13,0.0,0.0,0.0,0,0,407.85759635546873,407.85759635546873,0.0 -4609,7118,7117,8,11,46,111,65,71,0,554,0,170,0,0,2,5,3,5,2.4,2034.13765732,2282,0,43490.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,18120.8333333,5,3,5,5_0,12000.0,0,12000.0,0,4,11,114.3,18.0,3.3,0,1,1223.5727890664061,1223.5727890664061,0.0 -4610,7137,7136,7,10,43,111,46,41,0,5560,0,0,150,343,2,3,0,2,1.5,3337.39471751,1561,0,27130.0,4,3,10,8,3,1,0,1,0,0,0,0,1,0,1,0,18086.6666667,5,3,5,5_0,10000.0,0,0.0,10000,5,5,0.0,80.0,5.56,0,0,1019.6439908886717,0.0,1019.6439908886717 -4611,7164,7163,6,11,40,111,47,12,0,5597,0,0,16,0,2,5,3,5,2.4,1432.70902732,7254,0,45849.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,19103.75,5,3,5,5_0,25000.0,0,10000.0,15000,4,14,139.7,10.4,3.3,0,1,2549.10997722168,1019.6439908886717,1529.4659863330078 -4612,7167,7166,20,20,66,112,72,60,0,56,0,0,0,0,0,5,0,2,1.5,2665.4689913,781,0,27617.0,5,1,10,4,3,3,0,0,0,0,1,0,0,0,2,1,18411.3333333,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.85759635546873,305.89319726660153,101.96439908886718 +4606,7103,7102,5,23,48,111,46,50,0,5521,0,100,0,596,2,7,1,3,2.0,2025.05579012,1042,0,36475.0,1,3,9,7,4,1,1,1,0,0,0,1,0,0,0,1,18237.5,5,3,5,5_0,15311.0,0,15311.0,0,3,15,156.3,86.6666666667,5.5,0,1,1561.176914449645,1561.176914449645,0.0 +4607,7109,7108,5,5,25,111,47,31,0,5527,0,0,0,501,1,3,1,3,1.8,6296.54877414,2536,0,32998.0,1,3,10,8,4,1,1,0,0,0,0,0,1,1,0,1,18332.2222222,5,3,5,5_0,10000.0,0,10000.0,0,6,6,18.0,6.66666666667,3.3,0,1,1019.6439908886716,1019.6439908886716,0.0 +4608,7114,7113,4,13,65,111,74,70,0,5535,0,0,0,0,0,3,0,1,1.0,2874.7189456,0,0,18584.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,0,1,18584.0,5,3,5,5_0,4000.0,0,4000.0,0,7,13,0.0,0.0,0.0,0,0,407.8575963554687,407.8575963554687,0.0 +4609,7118,7117,8,11,46,111,65,71,0,554,0,170,0,0,2,5,3,5,2.4,2034.13765732,2282,0,43490.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,18120.8333333,5,3,5,5_0,12000.0,0,12000.0,0,4,11,114.3,18.0,3.3,0,1,1223.572789066406,1223.572789066406,0.0 +4610,7137,7136,7,10,43,111,46,41,0,5560,0,0,150,343,2,3,0,2,1.5,3337.39471751,1561,0,27130.0,4,3,10,8,3,1,0,1,0,0,0,0,1,0,1,0,18086.6666667,5,3,5,5_0,10000.0,0,0.0,10000,5,5,0.0,80.0,5.56,0,0,1019.6439908886716,0.0,1019.6439908886716 +4611,7164,7163,6,11,40,111,47,12,0,5597,0,0,16,0,2,5,3,5,2.4,1432.70902732,7254,0,45849.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,19103.75,5,3,5,5_0,25000.0,0,10000.0,15000,4,14,139.7,10.4,3.3,0,1,2549.109977221679,1019.6439908886716,1529.4659863330073 +4612,7167,7166,20,20,66,112,72,60,0,56,0,0,0,0,0,5,0,2,1.5,2665.4689913,781,0,27617.0,5,1,10,4,3,3,0,0,0,0,1,0,0,0,2,1,18411.3333333,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.8575963554687,305.8931972666015,101.96439908886717 4613,7174,7173,6,16,60,112,62,50,0,5613,0,350,0,0,2,5,0,2,1.5,2658.22196938,0,0,27250.0,1,1,6,0,3,2,0,1,1,0,0,0,0,0,0,2,18166.6666667,5,3,5,5_1,14891.0,0,14891.0,0,2,20,328.0,45.0,0.0,1,1,1722.287393653858,1722.287393653858,0.0 -4614,7175,7174,5,5,76,111,72,70,0,5614,0,0,0,0,0,4,0,2,1.5,3638.78515767,1040,0,25842.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,17228.0,5,3,5,5_0,12000.0,0,12000.0,0,1,5,0.0,0.0,0.0,0,0,1223.5727890664061,1223.5727890664061,0.0 -4615,7177,7176,2,3,49,112,63,50,0,5618,0,216,0,0,3,7,2,4,2.3,1378.78980929,2986,0,43620.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,18965.217391299997,5,3,5,5_1,16000.0,0,16000.0,0,6,6,146.0,38.0,3.32,0,0,1850.5539116554783,1850.5539116554783,0.0 -4616,7187,7186,2,2,81,111,75,50,0,5630,0,0,0,0,0,4,0,2,1.5,3149.72773979,0,0,26601.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,17734.0,5,3,5,5_0,6000.0,0,6000.0,0,4,4,0.0,0.0,0.0,0,0,611.7863945332031,611.7863945332031,0.0 +4614,7175,7174,5,5,76,111,72,70,0,5614,0,0,0,0,0,4,0,2,1.5,3638.78515767,1040,0,25842.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,17228.0,5,3,5,5_0,12000.0,0,12000.0,0,1,5,0.0,0.0,0.0,0,0,1223.572789066406,1223.572789066406,0.0 +4615,7177,7176,2,3,49,112,63,50,0,5618,0,216,0,0,3,7,2,4,2.3,1378.78980929,2986,0,43620.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,18965.2173913,5,3,5,5_1,16000.0,0,16000.0,0,6,6,146.0,38.0,3.32,0,0,1850.5539116554783,1850.5539116554783,0.0 +4616,7187,7186,2,2,81,111,75,50,0,5630,0,0,0,0,0,4,0,2,1.5,3149.72773979,0,0,26601.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,17734.0,5,3,5,5_0,6000.0,0,6000.0,0,4,4,0.0,0.0,0.0,0,0,611.786394533203,611.786394533203,0.0 4617,7192,7191,0,0,76,112,77,70,0,5636,0,0,0,0,0,6,0,1,1.0,5031.07322376,0,0,18654.0,5,1,8,0,1,0,0,0,1,0,0,0,0,0,0,0,18654.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4618,7227,7226,9,9,68,221,78,71,0,5678,0,0,0,0,0,4,0,2,1.5,2719.8798384,0,0,26773.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,17848.6666667,5,3,5,5_0,15000.0,0,0.0,15000,10,10,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 -4619,7229,7228,2,2,35,112,55,60,0,568,0,0,0,0,1,4,2,4,2.1,1948.78288792,3900,0,38318.0,1,2,6,0,4,1,0,0,1,0,0,0,0,0,0,1,18246.6666667,5,3,5,5_1,40000.0,0,40000.0,0,2,3,149.0,6.666666666669999,3.3,0,1,4626.384779138696,4626.384779138696,0.0 -4620,7255,7254,3,12,36,221,67,50,0,5716,0,300,0,0,1,5,0,1,1.0,4603.75375129,1300,0,18999.0,1,4,1,2,1,1,0,1,0,1,0,0,0,0,0,1,18999.0,5,3,5,5_0,12000.0,0,12000.0,0,7,12,26.0,16.0,3.3,0,1,1223.5727890664061,1223.5727890664061,0.0 +4618,7227,7226,9,9,68,221,78,71,0,5678,0,0,0,0,0,4,0,2,1.5,2719.8798384,0,0,26773.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,17848.6666667,5,3,5,5_0,15000.0,0,0.0,15000,10,10,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 +4619,7229,7228,2,2,35,112,55,60,0,568,0,0,0,0,1,4,2,4,2.1,1948.78288792,3900,0,38318.0,1,2,6,0,4,1,0,0,1,0,0,0,0,0,0,1,18246.6666667,5,3,5,5_1,40000.0,0,40000.0,0,2,3,149.0,6.66666666667,3.3,0,1,4626.384779138696,4626.384779138696,0.0 +4620,7255,7254,3,12,36,221,67,50,0,5716,0,300,0,0,1,5,0,1,1.0,4603.75375129,1300,0,18999.0,1,4,1,2,1,1,0,1,0,1,0,0,0,0,0,1,18999.0,5,3,5,5_0,12000.0,0,12000.0,0,7,12,26.0,16.0,3.3,0,1,1223.572789066406,1223.572789066406,0.0 4621,7260,7259,33,33,56,111,52,70,0,5721,0,0,200,358,1,5,0,1,1.0,3115.19986228,0,0,17936.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,17936.0,5,3,5,5_0,10884.0,0,0.0,10884,4,20,30.0,50.0,5.5,0,1,1109.7805196832303,0.0,1109.7805196832303 -4622,7277,7276,0,0,51,111,56,20,0,5749,0,0,0,404,1,3,1,3,1.8,3114.34064804,0,0,31810.0,1,3,9,7,4,0,0,0,0,0,0,1,0,0,0,0,17672.222222200002,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,26.6666666667,1.1,0,0,0.0,0.0,0.0 -4623,7279,7278,0,6,29,111,43,20,0,5752,0,100,0,321,1,2,0,1,1.0,3199.43566311,0,0,17862.0,1,3,9,7,1,1,0,1,0,0,0,1,0,1,0,1,17862.0,5,3,5,5_0,10716.0,0,10716.0,0,1,5,0.0,0.0,0.0,1,0,1092.6505006363009,1092.6505006363009,0.0 -4624,7286,7285,1,11,60,221,54,50,2,5765,0,600,0,0,2,5,2,3,2.0,2284.96171957,5200,9700,36709.0,1,1,1,2,2,2,0,0,0,1,0,0,0,0,1,1,18354.5,5,3,5,5_0,24501.0,0,12501.0,12000,1,2,133.9,46.6666666667,0.0,0,1,2498.229742076335,1274.6569530099287,1223.5727890664061 +4622,7277,7276,0,0,51,111,56,20,0,5749,0,0,0,404,1,3,1,3,1.8,3114.34064804,0,0,31810.0,1,3,9,7,4,0,0,0,0,0,0,1,0,0,0,0,17672.2222222,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,26.6666666667,1.1,0,0,0.0,0.0,0.0 +4623,7279,7278,0,6,29,111,43,20,0,5752,0,100,0,321,1,2,0,1,1.0,3199.43566311,0,0,17862.0,1,3,9,7,1,1,0,1,0,0,0,1,0,1,0,1,17862.0,5,3,5,5_0,10716.0,0,10716.0,0,1,5,0.0,0.0,0.0,1,0,1092.6505006363004,1092.6505006363004,0.0 +4624,7286,7285,1,11,60,221,54,50,2,5765,0,600,0,0,2,5,2,3,2.0,2284.96171957,5200,9700,36709.0,1,1,1,2,2,2,0,0,0,1,0,0,0,0,1,1,18354.5,5,3,5,5_0,24501.0,0,12501.0,12000,1,2,133.9,46.6666666667,0.0,0,1,2498.2297420763343,1274.6569530099284,1223.572789066406 4625,7292,7291,0,0,53,111,68,70,0,5774,0,0,0,0,2,4,2,3,2.0,967.54549478,0,0,34792.0,1,3,5,4,2,0,0,0,0,0,1,0,0,1,0,0,17396.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,33.6666666667,3.32,0,0,0.0,0.0,0.0 -4626,7299,7298,0,10,56,111,35,60,0,5784,0,0,100,0,1,2,0,2,1.5,2671.86656806,0,0,25833.0,1,2,10,8,5,2,0,0,0,0,0,0,1,0,2,0,17222.0,5,3,5,5_0,16000.0,0,0.0,16000,7,19,38.0,20.0,3.3,0,1,1631.430385421875,0.0,1631.430385421875 +4626,7299,7298,0,10,56,111,35,60,0,5784,0,0,100,0,1,2,0,2,1.5,2671.86656806,0,0,25833.0,1,2,10,8,5,2,0,0,0,0,0,0,1,0,2,0,17222.0,5,3,5,5_0,16000.0,0,0.0,16000,7,19,38.0,20.0,3.3,0,1,1631.4303854218747,0.0,1631.4303854218747 4627,7305,7304,12,12,82,400,78,71,0,5791,0,0,0,0,0,4,0,1,1.0,3128.13384646,2116,0,17787.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,17787.0,5,3,5,5_1,15000.0,0,15000.0,0,9,9,0.0,0.0,0.0,0,0,1734.8942921770108,1734.8942921770108,0.0 -4628,7317,7316,4,18,45,111,56,50,0,5806,0,0,0,420,1,5,0,1,1.0,3223.13959742,0,0,17585.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,17585.0,5,3,5,5_0,5000.0,0,0.0,5000,5,18,16.4,40.0,3.3,0,1,509.82199544433587,0.0,509.82199544433587 -4629,7325,7324,2,2,41,111,63,71,0,5818,0,320,0,410,2,4,2,4,2.3,3170.20581942,5126,0,42864.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,18636.521739099997,5,3,5,5_0,12000.0,0,12000.0,0,5,10,0.0,0.0,0.0,0,1,1223.5727890664061,1223.5727890664061,0.0 +4628,7317,7316,4,18,45,111,56,50,0,5806,0,0,0,420,1,5,0,1,1.0,3223.13959742,0,0,17585.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,17585.0,5,3,5,5_0,5000.0,0,0.0,5000,5,18,16.4,40.0,3.3,0,1,509.8219954443358,0.0,509.8219954443358 +4629,7325,7324,2,2,41,111,63,71,0,5818,0,320,0,410,2,4,2,4,2.3,3170.20581942,5126,0,42864.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,18636.5217391,5,3,5,5_0,12000.0,0,12000.0,0,5,10,0.0,0.0,0.0,0,1,1223.572789066406,1223.572789066406,0.0 4630,7335,7334,1,4,53,300,62,70,2,5835,0,500,0,0,2,4,2,4,2.3,2284.99588657,6072,12000,39152.0,1,3,0,0,4,3,0,1,1,0,0,0,0,0,1,2,17022.6086957,5,3,5,5_1,15000.0,0,15000.0,0,3,3,668.0,17.5,0.0,0,1,1734.8942921770108,1734.8942921770108,0.0 4631,7340,7339,7,9,66,400,77,70,0,5840,0,0,0,0,0,5,0,2,1.5,2136.77003394,0,0,28603.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,19068.6666667,5,3,5,5_1,18000.0,0,18000.0,0,6,7,0.0,0.0,0.0,0,0,2081.8731506124127,2081.8731506124127,0.0 -4632,7348,7347,0,11,25,111,54,20,0,5851,0,199998,0,400,1,2,0,2,1.5,3940.16972192,0,0,25540.0,1,3,4,3,3,2,0,1,0,1,0,0,0,0,0,2,17026.6666667,5,3,5,5_0,16666.0,0,16666.0,0,3,8,0.0,0.0,0.0,0,1,1699.3386752150604,1699.3386752150604,0.0 +4632,7348,7347,0,11,25,111,54,20,0,5851,0,199998,0,400,1,2,0,2,1.5,3940.16972192,0,0,25540.0,1,3,4,3,3,2,0,1,0,1,0,0,0,0,0,2,17026.6666667,5,3,5,5_0,16666.0,0,16666.0,0,3,8,0.0,0.0,0.0,0,1,1699.33867521506,1699.33867521506,0.0 4633,7359,7358,1,2,36,112,67,41,0,5865,0,280,0,0,2,4,2,4,2.1,1731.48596929,5928,0,36360.0,4,3,8,0,4,2,0,1,1,0,0,0,0,0,0,2,17314.2857143,5,3,5,5_1,20000.0,0,20000.0,0,2,2,238.0,24.5,3.33,0,1,2313.192389569348,2313.192389569348,0.0 4634,7361,7360,1,8,39,400,52,60,2,5869,0,435,0,0,1,4,0,1,1.0,2870.65897382,3042,8500,18773.0,1,2,0,0,1,2,0,1,1,0,0,0,0,0,0,2,18773.0,5,3,5,5_1,28000.0,0,28000.0,0,5,5,0.0,0.0,0.0,1,0,3238.469345397087,3238.469345397087,0.0 4635,7373,7372,0,12,48,400,52,50,0,5885,0,450,0,0,2,4,1,3,2.0,1936.64688496,3640,0,34889.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,0,3,17444.5,5,3,5,5_1,17102.0,0,17102.0,0,4,7,0.0,10.0,3.33,0,1,1978.010812320749,1978.010812320749,0.0 -4636,7387,7386,9,12,67,112,75,70,0,5904,0,0,0,0,2,6,2,4,2.5,4275.56060687,1040,0,46161.0,5,1,9,2,4,1,0,0,0,1,0,0,0,0,1,0,18464.4,5,3,5,5_0,25352.0,0,0.0,25352,1,11,212.0,50.0,3.32,0,0,2585.001445700961,0.0,2585.001445700961 +4636,7387,7386,9,12,67,112,75,70,0,5904,0,0,0,0,2,6,2,4,2.5,4275.56060687,1040,0,46161.0,5,1,9,2,4,1,0,0,0,1,0,0,0,0,1,0,18464.4,5,3,5,5_0,25352.0,0,0.0,25352,1,11,212.0,50.0,3.32,0,0,2585.00144570096,0.0,2585.00144570096 4637,7406,7405,0,0,86,111,86,70,0,5928,0,0,0,0,0,3,0,1,1.0,3140.29803501,0,0,17704.0,6,1,7,5,1,0,0,0,0,0,1,0,0,0,0,0,17704.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4638,7409,7408,11,11,72,300,72,70,0,5933,0,0,0,0,0,9,0,2,1.5,2302.33234871,4680,0,27186.0,5,1,0,0,3,3,0,0,1,0,0,0,0,0,1,2,18124.0,5,3,5,5_1,16666.0,0,16666.0,0,10,12,0.0,0.0,0.0,0,0,1927.5832182281374,1927.5832182281374,0.0 -4639,7414,7413,15,15,67,111,75,71,0,5945,0,0,0,0,0,3,0,2,1.5,3746.46153545,0,0,26331.0,5,3,8,6,3,1,0,0,0,0,1,0,0,0,1,0,17554.0,5,3,5,5_0,8000.0,0,0.0,8000,14,15,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 -4640,7430,7429,8,14,31,111,85,50,0,5968,0,0,0,90,0,2,0,1,1.0,2918.6469545,3333,0,17206.0,7,3,6,5,1,1,0,0,0,0,1,0,0,1,1,0,17206.0,5,3,5,5_0,6000.0,0,0.0,6000,2,8,0.0,0.0,0.0,0,0,611.7863945332031,0.0,611.7863945332031 -4641,7447,7446,5,5,47,111,46,60,0,5987,0,10,0,357,1,3,1,2,1.3,3121.6739923,0,0,22751.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,0,1,17500.7692308,5,3,5,5_0,2000.0,0,2000.0,0,7,7,469.0,230.0,5.5,0,0,203.92879817773436,203.92879817773436,0.0 -4642,7451,7450,10,10,76,111,74,70,0,5993,0,0,0,0,0,5,0,3,2.0,2563.62035125,0,0,36190.0,5,1,10,8,5,2,0,0,0,0,0,0,1,0,1,1,18095.0,5,3,5,5_0,1000.0,0,1000.0,0,10,10,0.0,0.0,0.0,0,0,101.96439908886718,101.96439908886718,0.0 -4643,7453,7452,12,12,41,111,22,71,0,5996,0,99999,0,0,1,4,2,4,2.1,3549.95134472,214,0,38540.0,1,3,10,8,4,1,1,1,0,0,0,0,1,0,0,1,18352.380952400003,5,3,5,5_0,14818.0,0,14818.0,0,7,12,0.0,0.0,0.0,0,0,1510.9084656988339,1510.9084656988339,0.0 +4639,7414,7413,15,15,67,111,75,71,0,5945,0,0,0,0,0,3,0,2,1.5,3746.46153545,0,0,26331.0,5,3,8,6,3,1,0,0,0,0,1,0,0,0,1,0,17554.0,5,3,5,5_0,8000.0,0,0.0,8000,14,15,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 +4640,7430,7429,8,14,31,111,85,50,0,5968,0,0,0,90,0,2,0,1,1.0,2918.6469545,3333,0,17206.0,7,3,6,5,1,1,0,0,0,0,1,0,0,1,1,0,17206.0,5,3,5,5_0,6000.0,0,0.0,6000,2,8,0.0,0.0,0.0,0,0,611.786394533203,0.0,611.786394533203 +4641,7447,7446,5,5,47,111,46,60,0,5987,0,10,0,357,1,3,1,2,1.3,3121.6739923,0,0,22751.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,0,1,17500.7692308,5,3,5,5_0,2000.0,0,2000.0,0,7,7,469.0,230.0,5.5,0,0,203.92879817773434,203.92879817773434,0.0 +4642,7451,7450,10,10,76,111,74,70,0,5993,0,0,0,0,0,5,0,3,2.0,2563.62035125,0,0,36190.0,5,1,10,8,5,2,0,0,0,0,0,0,1,0,1,1,18095.0,5,3,5,5_0,1000.0,0,1000.0,0,10,10,0.0,0.0,0.0,0,0,101.96439908886717,101.96439908886717,0.0 +4643,7453,7452,12,12,41,111,22,71,0,5996,0,99999,0,0,1,4,2,4,2.1,3549.95134472,214,0,38540.0,1,3,10,8,4,1,1,1,0,0,0,0,1,0,0,1,18352.3809524,5,3,5,5_0,14818.0,0,14818.0,0,7,12,0.0,0.0,0.0,0,0,1510.9084656988337,1510.9084656988337,0.0 4644,7474,7473,0,0,40,111,56,50,0,6023,0,0,0,0,2,6,3,5,2.6,2953.27034431,0,0,46601.0,1,3,8,6,4,0,0,0,0,0,1,0,0,1,0,0,17923.4615385,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4645,7481,7480,8,9,56,112,52,60,0,6032,0,410,0,0,2,4,2,4,2.5,2197.73633284,4160,0,45131.0,1,1,9,3,4,3,0,1,0,1,0,0,0,0,1,2,18052.4,5,3,5,5_0,19710.0,0,15000.0,4710,6,12,294.1,66.0,3.3,0,1,2009.718306041572,1529.4659863330078,480.2523197085644 -4646,7489,7488,2,11,39,221,67,50,0,6044,0,600,300,0,2,5,2,4,2.1,1464.37314145,5720,0,36744.0,1,2,1,3,4,2,0,1,0,1,0,0,0,0,1,1,17497.1428571,5,3,5,5_0,30142.0,0,18625.0,11517,2,10,84.5,17.5,3.31,0,1,3073.4109173366346,1899.0869330301514,1174.3239843064832 +4645,7481,7480,8,9,56,112,52,60,0,6032,0,410,0,0,2,4,2,4,2.5,2197.73633284,4160,0,45131.0,1,1,9,3,4,3,0,1,0,1,0,0,0,0,1,2,18052.4,5,3,5,5_0,19710.0,0,15000.0,4710,6,12,294.1,66.0,3.3,0,1,2009.7183060415716,1529.4659863330073,480.2523197085643 +4646,7489,7488,2,11,39,221,67,50,0,6044,0,600,300,0,2,5,2,4,2.1,1464.37314145,5720,0,36744.0,1,2,1,3,4,2,0,1,0,1,0,0,0,0,1,1,17497.1428571,5,3,5,5_0,30142.0,0,18625.0,11517,2,10,84.5,17.5,3.31,0,1,3073.410917336634,1899.086933030151,1174.323984306483 4647,7500,7499,0,0,65,111,78,71,0,6058,0,0,0,0,0,2,0,1,1.0,6284.13967828,0,0,17840.0,5,3,8,6,1,0,0,0,0,0,1,0,0,0,0,0,17840.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4648,7511,7510,0,2,30,111,43,33,2,6073,0,300,0,0,2,4,3,5,2.4,3136.02288279,0,10100,41230.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,17179.1666667,5,3,5,5_0,14000.0,0,14000.0,0,6,6,42.0,18.0,3.3,0,1,1427.5015872441406,1427.5015872441406,0.0 +4648,7511,7510,0,2,30,111,43,33,2,6073,0,300,0,0,2,4,3,5,2.4,3136.02288279,0,10100,41230.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,17179.1666667,5,3,5,5_0,14000.0,0,14000.0,0,6,6,42.0,18.0,3.3,0,1,1427.5015872441402,1427.5015872441402,0.0 4649,7545,7544,2,22,33,112,55,42,0,612,0,650,0,0,2,4,1,3,1.8,2449.97659702,4994,0,31177.0,1,2,8,0,4,3,1,1,1,0,0,0,0,0,0,3,17320.5555556,5,3,5,5_1,22337.0,0,22337.0,0,17,18,214.0,53.3333333333,3.3,0,1,2583.488920290526,2583.488920290526,0.0 -4650,7562,7561,25,25,80,111,77,71,0,6140,0,0,0,241,0,4,0,1,1.0,3406.2118704000004,1300,0,17442.0,5,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,17442.0,5,3,5,5_0,330.0,0,0.0,330,16,23,0.0,0.0,0.0,0,0,33.648251699326174,0.0,33.648251699326174 +4650,7562,7561,25,25,80,111,77,71,0,6140,0,0,0,241,0,4,0,1,1.0,3406.2118704,1300,0,17442.0,5,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,17442.0,5,3,5,5_0,330.0,0,0.0,330,16,23,0.0,0.0,0.0,0,0,33.64825169932616,0.0,33.64825169932616 4651,7585,7584,1,1,63,112,56,70,1,6175,0,476,0,0,1,3,0,1,1.0,2183.15165662,2080,11500,17464.0,1,1,8,0,1,1,0,1,1,0,0,0,0,0,0,1,17464.0,5,3,5,5_1,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1387.9154337416087,1387.9154337416087,0.0 -4652,7622,7621,1,1,71,111,75,71,0,6217,0,0,0,0,0,3,0,2,1.5,3682.25740056,0,0,28654.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,19102.6666667,5,3,5,5_0,4000.0,0,0.0,4000,1,1,0.0,0.0,0.0,0,0,407.85759635546873,0.0,407.85759635546873 -4653,7646,7645,2,2,61,112,78,70,0,6251,0,0,200,0,1,5,0,2,1.5,2071.32695379,0,0,28539.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,1,1,19026.0,5,3,5,5_0,18752.0,0,15000.0,3752,1,1,0.0,0.0,0.0,0,1,1912.0364117144375,1529.4659863330078,382.5704253814297 -4654,7649,7648,12,12,45,112,65,71,0,6256,0,440,0,0,2,4,2,4,2.3,3166.72302726,4338,0,42960.0,1,2,9,2,4,2,0,1,0,1,0,0,0,0,0,2,18678.2608696,5,3,5,5_0,15000.0,0,15000.0,0,11,13,169.0,16.6666666667,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4655,7653,7652,5,14,49,111,52,71,0,6260,0,80,0,0,3,4,2,4,2.3,5179.85590711,4372,0,39166.0,1,4,6,4,4,3,0,0,0,0,1,0,0,0,1,2,17028.6956522,5,3,5,5_0,17445.0,0,17445.0,0,2,13,107.3,37.5,0.0,1,1,1778.768942105288,1778.768942105288,0.0 +4652,7622,7621,1,1,71,111,75,71,0,6217,0,0,0,0,0,3,0,2,1.5,3682.25740056,0,0,28654.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,19102.6666667,5,3,5,5_0,4000.0,0,0.0,4000,1,1,0.0,0.0,0.0,0,0,407.8575963554687,0.0,407.8575963554687 +4653,7646,7645,2,2,61,112,78,70,0,6251,0,0,200,0,1,5,0,2,1.5,2071.32695379,0,0,28539.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,1,1,19026.0,5,3,5,5_0,18752.0,0,15000.0,3752,1,1,0.0,0.0,0.0,0,1,1912.036411714437,1529.4659863330073,382.5704253814296 +4654,7649,7648,12,12,45,112,65,71,0,6256,0,440,0,0,2,4,2,4,2.3,3166.72302726,4338,0,42960.0,1,2,9,2,4,2,0,1,0,1,0,0,0,0,0,2,18678.2608696,5,3,5,5_0,15000.0,0,15000.0,0,11,13,169.0,16.6666666667,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4655,7653,7652,5,14,49,111,52,71,0,6260,0,80,0,0,3,4,2,4,2.3,5179.85590711,4372,0,39166.0,1,4,6,4,4,3,0,0,0,0,1,0,0,0,1,2,17028.6956522,5,3,5,5_0,17445.0,0,17445.0,0,2,13,107.3,37.5,0.0,1,1,1778.7689421052876,1778.7689421052876,0.0 4656,7667,7666,9,12,44,112,62,50,0,6285,0,0,0,0,1,5,2,4,2.3,2214.4804186,2912,0,41121.0,1,2,8,0,4,1,0,0,1,0,0,0,0,0,0,1,17878.6956522,5,3,5,5_1,26000.0,0,26000.0,0,4,12,337.7,32.5,3.3,0,1,3007.150106440152,3007.150106440152,0.0 -4657,7693,7692,9,9,62,221,78,71,0,6318,0,84,0,0,1,6,0,2,1.5,4464.12210444,1040,0,27659.0,5,1,1,1,3,2,0,0,0,1,0,0,0,0,1,1,18439.3333333,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954102,530.2148752621093,152.94659863330077 -4658,7705,7704,18,21,75,300,78,71,0,6339,0,0,0,0,0,8,0,2,1.5,2707.93409967,2809,0,28262.0,5,1,0,1,3,2,0,0,0,1,0,0,0,0,0,2,18841.3333333,5,3,5,5_0,3000.0,0,3000.0,0,13,14,0.0,0.0,0.0,0,0,305.89319726660153,305.89319726660153,0.0 +4657,7693,7692,9,9,62,221,78,71,0,6318,0,84,0,0,1,6,0,2,1.5,4464.12210444,1040,0,27659.0,5,1,1,1,3,2,0,0,0,1,0,0,0,0,1,1,18439.3333333,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954099,530.2148752621092,152.94659863330074 +4658,7705,7704,18,21,75,300,78,71,0,6339,0,0,0,0,0,8,0,2,1.5,2707.93409967,2809,0,28262.0,5,1,0,1,3,2,0,0,0,1,0,0,0,0,0,2,18841.3333333,5,3,5,5_0,3000.0,0,3000.0,0,13,14,0.0,0.0,0.0,0,0,305.8931972666015,305.8931972666015,0.0 4659,7733,7732,0,0,67,111,78,71,0,6381,0,0,0,279,0,3,0,1,1.0,4425.21387208,0,0,17380.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17380.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4660,7743,7742,0,0,52,111,56,60,0,6394,0,0,0,480,1,2,0,1,1.0,5667.03802756,0,0,17709.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17709.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,120.0,5.5,0,0,0.0,0.0,0.0 -4661,7757,7756,6,16,45,120,64,50,0,6411,0,99999,99999,0,2,6,3,4,2.3,1141.12530324,2254,0,43284.0,1,2,0,0,2,2,0,1,1,0,0,0,0,1,1,1,18819.130434799998,5,3,5,5_1,47000.0,0,40000.0,7000,14,16,1078.0,7.5,3.3,1,1,5436.002115487967,4626.384779138696,809.6173363492718 -4662,7773,7772,14,24,45,400,45,41,0,6436,0,450,0,0,2,4,1,4,2.3,1061.99739603,3906,0,43343.0,1,3,0,0,5,2,1,0,1,0,0,0,0,0,1,1,18844.782608700003,5,3,5,5_1,54001.0,0,39001.0,15000,7,23,213.0,32.5,3.3,0,1,6245.735111456717,4510.840819279707,1734.8942921770108 -4663,7775,7774,0,9,33,111,62,60,0,6439,0,0,0,0,2,6,0,2,1.5,6805.59707909,2756,0,26095.0,1,4,4,4,3,1,0,1,0,0,1,0,0,0,0,1,17396.6666667,5,3,5,5_0,43333.0,0,43333.0,0,4,7,26.0,15.0,5.55,1,0,4418.423305717882,4418.423305717882,0.0 +4661,7757,7756,6,16,45,120,64,50,0,6411,0,99999,99999,0,2,6,3,4,2.3,1141.12530324,2254,0,43284.0,1,2,0,0,2,2,0,1,1,0,0,0,0,1,1,1,18819.1304348,5,3,5,5_1,47000.0,0,40000.0,7000,14,16,1078.0,7.5,3.3,1,1,5436.002115487967,4626.384779138696,809.6173363492718 +4662,7773,7772,14,24,45,400,45,41,0,6436,0,450,0,0,2,4,1,4,2.3,1061.99739603,3906,0,43343.0,1,3,0,0,5,2,1,0,1,0,0,0,0,0,1,1,18844.7826087,5,3,5,5_1,54001.0,0,39001.0,15000,7,23,213.0,32.5,3.3,0,1,6245.735111456717,4510.840819279707,1734.8942921770108 +4663,7775,7774,0,9,33,111,62,60,0,6439,0,0,0,0,2,6,0,2,1.5,6805.59707909,2756,0,26095.0,1,4,4,4,3,1,0,1,0,0,1,0,0,0,0,1,17396.6666667,5,3,5,5_0,43333.0,0,43333.0,0,4,7,26.0,15.0,5.55,1,0,4418.423305717881,4418.423305717881,0.0 4664,7781,7780,3,4,53,400,11,50,0,6448,0,250,0,0,3,4,2,4,2.5,1084.93059046,5044,0,43953.0,1,1,0,0,4,3,0,1,1,0,0,0,0,0,0,3,17581.2,5,3,5,5_1,35137.0,0,35137.0,0,2,3,0.0,7.0,3.3,0,1,4063.932049614909,4063.932049614909,0.0 -4665,7802,7801,1,14,24,111,37,10,2,6480,0,99999,0,340,3,5,0,3,2.0,2058.10761548,1300,800,34339.0,1,3,8,7,5,1,0,1,0,0,0,1,0,1,0,1,17169.5,5,3,5,5_0,24000.0,0,24000.0,0,3,12,142.5,27.0,3.3,0,1,2447.1455781328123,2447.1455781328123,0.0 -4666,7812,7811,10,16,48,111,62,50,0,6496,0,0,240,0,2,5,4,6,3.1,1361.28759952,3640,0,52685.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,2,0,16995.1612903,5,3,5,5_0,15000.0,0,0.0,15000,11,15,64.0,25.3333333333,3.31,0,1,1529.4659863330078,0.0,1529.4659863330078 -4667,7818,7817,4,15,32,112,62,43,0,6500,0,600,0,0,2,5,2,4,2.1,1238.09409285,4732,0,39056.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,18598.0952381,5,3,5,5_0,8000.0,0,8000.0,0,7,14,0.0,5.33333333333,3.3,0,1,815.7151927109375,815.7151927109375,0.0 -4668,7854,7853,2,18,46,111,56,50,0,6557,0,250,0,0,2,3,1,3,2.0,2102.05111241,1561,0,33923.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,16961.5,5,3,5,5_0,12000.0,0,12000.0,0,5,13,117.0,16.6666666667,3.3,0,1,1223.5727890664061,1223.5727890664061,0.0 -4669,7867,7866,1,13,47,111,33,31,2,6573,0,1300,0,0,2,4,2,4,2.3,1602.69825643,4399,2500,42512.0,1,4,10,8,4,3,0,1,0,0,0,0,1,0,0,3,18483.478260900003,5,3,5,5_0,17001.0,0,17001.0,0,1,2,159.0,67.5,3.3,0,1,1733.4967489098308,1733.4967489098308,0.0 +4665,7802,7801,1,14,24,111,37,10,2,6480,0,99999,0,340,3,5,0,3,2.0,2058.10761548,1300,800,34339.0,1,3,8,7,5,1,0,1,0,0,0,1,0,1,0,1,17169.5,5,3,5,5_0,24000.0,0,24000.0,0,3,12,142.5,27.0,3.3,0,1,2447.145578132812,2447.145578132812,0.0 +4666,7812,7811,10,16,48,111,62,50,0,6496,0,0,240,0,2,5,4,6,3.1,1361.28759952,3640,0,52685.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,2,0,16995.1612903,5,3,5,5_0,15000.0,0,0.0,15000,11,15,64.0,25.3333333333,3.31,0,1,1529.4659863330073,0.0,1529.4659863330073 +4667,7818,7817,4,15,32,112,62,43,0,6500,0,600,0,0,2,5,2,4,2.1,1238.09409285,4732,0,39056.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,18598.0952381,5,3,5,5_0,8000.0,0,8000.0,0,7,14,0.0,5.33333333333,3.3,0,1,815.7151927109373,815.7151927109373,0.0 +4668,7854,7853,2,18,46,111,56,50,0,6557,0,250,0,0,2,3,1,3,2.0,2102.05111241,1561,0,33923.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,16961.5,5,3,5,5_0,12000.0,0,12000.0,0,5,13,117.0,16.6666666667,3.3,0,1,1223.572789066406,1223.572789066406,0.0 +4669,7867,7866,1,13,47,111,33,31,2,6573,0,1300,0,0,2,4,2,4,2.3,1602.69825643,4399,2500,42512.0,1,4,10,8,4,3,0,1,0,0,0,0,1,0,0,3,18483.4782609,5,3,5,5_0,17001.0,0,17001.0,0,1,2,159.0,67.5,3.3,0,1,1733.4967489098306,1733.4967489098306,0.0 4670,7874,7873,1,13,23,112,63,50,2,6581,0,0,800,0,2,3,0,2,1.5,2155.87039966,0,750,26635.0,1,3,6,0,3,2,0,1,1,0,0,0,0,0,2,0,17756.6666667,5,3,5,5_1,18000.0,0,0.0,18000,11,7,173.5,36.6666666667,3.3,0,1,2081.8731506124127,0.0,2081.8731506124127 4671,7875,7874,2,13,22,400,67,43,0,6582,0,400,0,0,2,4,0,2,1.5,3086.48985105,1768,0,27794.0,1,3,0,0,3,3,0,1,1,0,0,0,0,0,0,3,18529.3333333,5,3,5,5_1,32000.0,0,32000.0,0,2,8,112.8,15.0,3.3,0,1,3701.1078233109565,3701.1078233109565,0.0 -4672,7884,7883,1,12,77,111,78,71,2,6596,0,0,0,0,0,4,0,2,1.5,2858.65548976,1040,13000,25500.0,5,1,4,3,3,1,0,0,0,1,0,0,0,0,0,1,17000.0,5,3,5,5_0,9000.0,0,9000.0,0,3,12,0.0,0.0,0.0,0,0,917.6795917998046,917.6795917998046,0.0 -4673,7889,7888,1,12,22,111,47,20,2,6602,0,250,0,37,2,1,0,2,1.5,2401.69132354,0,2800,28172.0,1,3,8,7,3,2,0,0,0,0,0,1,0,1,1,1,18781.3333333,5,3,5,5_0,25000.0,0,20000.0,5000,4,13,0.0,0.0,0.0,0,1,2549.10997722168,2039.2879817773435,509.82199544433587 -4674,7891,7890,4,7,28,221,62,50,0,6607,0,260,0,0,2,5,0,2,1.5,3397.61087942,0,0,27140.0,1,2,1,2,3,2,1,1,0,1,0,0,0,0,0,2,18093.3333333,5,3,5,5_0,69572.0,0,69572.0,0,4,7,90.0,45.0,3.3,0,1,7093.867173410667,7093.867173410667,0.0 +4672,7884,7883,1,12,77,111,78,71,2,6596,0,0,0,0,0,4,0,2,1.5,2858.65548976,1040,13000,25500.0,5,1,4,3,3,1,0,0,0,1,0,0,0,0,0,1,17000.0,5,3,5,5_0,9000.0,0,9000.0,0,3,12,0.0,0.0,0.0,0,0,917.6795917998045,917.6795917998045,0.0 +4673,7889,7888,1,12,22,111,47,20,2,6602,0,250,0,37,2,1,0,2,1.5,2401.69132354,0,2800,28172.0,1,3,8,7,3,2,0,0,0,0,0,1,0,1,1,1,18781.3333333,5,3,5,5_0,25000.0,0,20000.0,5000,4,13,0.0,0.0,0.0,0,1,2549.109977221679,2039.2879817773432,509.8219954443358 +4674,7891,7890,4,7,28,221,62,50,0,6607,0,260,0,0,2,5,0,2,1.5,3397.61087942,0,0,27140.0,1,2,1,2,3,2,1,1,0,1,0,0,0,0,0,2,18093.3333333,5,3,5,5_0,69572.0,0,69572.0,0,4,7,90.0,45.0,3.3,0,1,7093.867173410666,7093.867173410666,0.0 4675,7894,7893,0,0,22,111,67,60,0,6610,0,0,0,23,1,1,0,1,1.0,3546.02774659,0,0,17664.0,1,3,8,6,1,0,0,0,0,0,1,0,0,1,0,0,17664.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4676,7925,7924,14,14,38,111,47,31,0,6643,0,0,0,481,2,4,2,4,2.1,2859.76560463,2340,0,36102.0,1,3,8,6,4,2,0,0,0,0,1,0,0,0,1,1,17191.428571400003,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.10997722168,2039.2879817773435,509.82199544433587 +4676,7925,7924,14,14,38,111,47,31,0,6643,0,0,0,481,2,4,2,4,2.1,2859.76560463,2340,0,36102.0,1,3,8,6,4,2,0,0,0,0,1,0,0,0,1,1,17191.4285714,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.109977221679,2039.2879817773432,509.8219954443358 4677,7967,7966,0,0,32,111,54,31,0,6700,0,0,0,588,2,2,0,2,1.5,3007.08476431,0,0,28283.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,18855.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,41.5,75.0,5.56,0,0,0.0,0.0,0.0 4678,7969,7968,8,8,82,300,74,70,0,6702,0,0,0,0,0,7,0,2,1.5,1819.0745397,0,0,25680.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,17120.0,5,3,5,5_1,8500.0,0,0.0,8500,7,7,0.0,0.0,0.0,0,0,983.1067655669727,0.0,983.1067655669727 4679,7977,7976,0,0,80,111,77,71,0,6714,0,0,0,0,0,3,0,1,1.0,3113.07118163,0,0,16960.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,16960.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4680,7978,7977,6,10,75,112,74,44,0,6715,0,0,0,0,0,5,0,3,1.8,1496.06278644,2601,0,33076.0,5,1,8,0,5,1,0,0,1,0,0,0,0,0,0,1,18375.5555556,5,3,5,5_1,15000.0,0,15000.0,0,8,9,0.0,0.0,0.0,0,0,1734.8942921770108,1734.8942921770108,0.0 -4681,7985,7984,10,13,46,111,22,50,0,6725,0,100029,0,400,2,4,2,4,2.1,1755.45435979,3621,0,36312.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,17291.428571400003,5,3,5,5_0,15000.0,0,15000.0,0,11,13,169.0,16.6666666667,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4682,8001,8000,5,13,42,112,47,42,0,6750,0,0,125,450,2,4,3,5,2.6,1881.0598893,0,0,44037.0,1,3,4,0,4,2,0,0,1,0,0,0,0,0,2,0,16937.307692299997,5,3,5,5_1,18000.0,0,0.0,18000,6,10,0.0,6.0,3.3,0,1,2081.8731506124127,0.0,2081.8731506124127 -4683,8004,8003,9,11,40,111,46,44,0,6754,0,0,20,0,1,3,1,2,1.3,2839.42116192,711,0,24686.0,1,2,8,7,2,1,0,1,0,0,0,1,0,0,1,0,18989.2307692,5,3,5,5_0,3743.0,0,0.0,3743,1,11,0.0,95.0,3.3,0,1,381.6527457896298,0.0,381.6527457896298 -4684,8018,8017,1,14,34,112,69,50,2,6777,0,99999,50,0,2,6,2,4,2.1,1881.13768615,0,3900,38677.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,1,1,18417.619047599997,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.10997722168,2039.2879817773435,509.82199544433587 +4681,7985,7984,10,13,46,111,22,50,0,6725,0,100029,0,400,2,4,2,4,2.1,1755.45435979,3621,0,36312.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,17291.4285714,5,3,5,5_0,15000.0,0,15000.0,0,11,13,169.0,16.6666666667,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4682,8001,8000,5,13,42,112,47,42,0,6750,0,0,125,450,2,4,3,5,2.6,1881.0598893,0,0,44037.0,1,3,4,0,4,2,0,0,1,0,0,0,0,0,2,0,16937.3076923,5,3,5,5_1,18000.0,0,0.0,18000,6,10,0.0,6.0,3.3,0,1,2081.8731506124127,0.0,2081.8731506124127 +4683,8004,8003,9,11,40,111,46,44,0,6754,0,0,20,0,1,3,1,2,1.3,2839.42116192,711,0,24686.0,1,2,8,7,2,1,0,1,0,0,0,1,0,0,1,0,18989.2307692,5,3,5,5_0,3743.0,0,0.0,3743,1,11,0.0,95.0,3.3,0,1,381.65274578962976,0.0,381.65274578962976 +4684,8018,8017,1,14,34,112,69,50,2,6777,0,99999,50,0,2,6,2,4,2.1,1881.13768615,0,3900,38677.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,1,1,18417.6190476,5,3,5,5_0,25000.0,0,20000.0,5000,7,15,166.0,35.0,3.3,0,1,2549.109977221679,2039.2879817773432,509.8219954443358 4685,8078,8077,7,15,65,400,77,60,0,6853,0,0,0,0,0,6,0,1,1.0,3786.96439035,1560,0,17650.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,0,1,17650.0,5,3,5,5_1,9500.0,0,9500.0,0,15,15,0.0,0.0,0.0,0,0,1098.76638504544,1098.76638504544,0.0 4686,8081,8080,0,0,85,111,77,41,0,6857,0,0,0,0,0,4,0,1,1.0,3752.56598265,0,0,18890.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,18890.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4687,8082,8081,2,10,35,111,67,71,0,6858,0,0,190,70,1,1,0,1,1.0,3766.96616212,0,0,17314.0,1,3,8,6,1,1,0,1,0,0,1,0,0,1,1,0,17314.0,5,3,5,5_0,15000.0,0,0.0,15000,4,10,0.0,20.0,3.3,0,1,1529.4659863330078,0.0,1529.4659863330078 +4687,8082,8081,2,10,35,111,67,71,0,6858,0,0,190,70,1,1,0,1,1.0,3766.96616212,0,0,17314.0,1,3,8,6,1,1,0,1,0,0,1,0,0,1,1,0,17314.0,5,3,5,5_0,15000.0,0,0.0,15000,4,10,0.0,20.0,3.3,0,1,1529.4659863330073,0.0,1529.4659863330073 4688,8088,8087,7,12,50,212,67,60,0,6868,0,280,0,0,1,4,0,1,1.0,1774.65952844,914,0,17651.0,1,1,3,0,1,1,0,1,1,0,0,0,0,0,0,1,17651.0,5,3,5,5_1,10000.0,0,10000.0,0,10,12,94.0,40.0,3.3,0,1,1156.596194784674,1156.596194784674,0.0 -4689,8105,8104,8,10,47,120,48,31,0,6889,0,380,260,0,2,7,2,4,2.5,3970.85236616,5040,0,45091.0,1,2,0,2,4,3,0,1,0,1,0,0,0,0,1,2,18036.4,5,3,5,5_0,40000.0,0,20000.0,20000,2,11,114.0,70.0,3.3,0,1,4078.575963554687,2039.2879817773435,2039.2879817773435 +4689,8105,8104,8,10,47,120,48,31,0,6889,0,380,260,0,2,7,2,4,2.5,3970.85236616,5040,0,45091.0,1,2,0,2,4,3,0,1,0,1,0,0,0,0,1,2,18036.4,5,3,5,5_0,40000.0,0,20000.0,20000,2,11,114.0,70.0,3.3,0,1,4078.5759635546865,2039.2879817773432,2039.2879817773432 4690,8106,8105,2,4,37,300,63,43,0,6890,0,700,0,0,2,6,2,4,2.1,1999.43866799,2080,0,36678.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17465.7142857,5,3,5,5_1,22000.0,0,22000.0,0,3,3,127.1,26.25,3.3,0,1,2544.5116285262825,2544.5116285262825,0.0 -4691,8114,8113,17,22,45,111,63,71,0,6900,0,116,0,339,2,3,1,3,1.8,2862.46544388,0,0,33571.0,1,3,10,8,4,2,0,0,0,0,0,0,1,0,1,1,18650.5555556,5,3,5,5_0,30000.0,0,20000.0,10000,10,10,31.6,53.3333333333,3.3,0,1,3058.9319726660156,2039.2879817773435,1019.6439908886717 -4692,8125,8124,4,4,60,112,86,50,0,6918,0,0,0,0,0,6,0,2,1.5,1103.83871036,0,0,26463.0,5,1,6,1,3,2,0,0,0,1,0,0,0,0,1,1,17642.0,5,3,5,5_0,15803.0,0,2400.0,13403,1,1,0.0,0.0,0.0,0,0,1611.343398801368,244.71455781328123,1366.6288409880867 +4691,8114,8113,17,22,45,111,63,71,0,6900,0,116,0,339,2,3,1,3,1.8,2862.46544388,0,0,33571.0,1,3,10,8,4,2,0,0,0,0,0,0,1,0,1,1,18650.5555556,5,3,5,5_0,30000.0,0,20000.0,10000,10,10,31.6,53.3333333333,3.3,0,1,3058.9319726660146,2039.2879817773432,1019.6439908886716 +4692,8125,8124,4,4,60,112,86,50,0,6918,0,0,0,0,0,6,0,2,1.5,1103.83871036,0,0,26463.0,5,1,6,1,3,2,0,0,0,1,0,0,0,0,1,1,17642.0,5,3,5,5_0,15803.0,0,2400.0,13403,1,1,0.0,0.0,0.0,0,0,1611.3433988013678,244.71455781328117,1366.6288409880865 4693,8127,8126,2,5,35,300,13,42,0,692,0,0,0,0,2,6,3,5,2.4,3321.51106935,0,0,45334.0,1,2,0,0,4,1,1,0,1,0,0,0,0,1,0,1,18889.1666667,5,3,5,5_1,25000.0,0,25000.0,0,2,9,246.0,23.8,3.32,0,1,2891.4904869616844,2891.4904869616844,0.0 -4694,8133,8132,8,10,43,111,45,30,0,693,0,99999,0,0,1,3,0,1,1.0,3534.04129487,0,0,17911.0,1,4,9,7,1,1,1,1,0,0,0,1,0,0,0,1,17911.0,5,3,5,5_0,15000.0,0,15000.0,0,5,10,116.0,50.0,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4695,8134,8133,3,6,53,111,52,71,0,6933,0,300,0,396,1,2,1,3,1.8,6031.81082456,2080,0,33440.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,18577.777777799998,5,3,5,5_0,7687.0,0,7687.0,0,1,2,0.0,0.0,0.0,0,0,783.800335796122,783.800335796122,0.0 +4694,8133,8132,8,10,43,111,45,30,0,693,0,99999,0,0,1,3,0,1,1.0,3534.04129487,0,0,17911.0,1,4,9,7,1,1,1,1,0,0,0,1,0,0,0,1,17911.0,5,3,5,5_0,15000.0,0,15000.0,0,5,10,116.0,50.0,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4695,8134,8133,3,6,53,111,52,71,0,6933,0,300,0,396,1,2,1,3,1.8,6031.81082456,2080,0,33440.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,18577.7777778,5,3,5,5_0,7687.0,0,7687.0,0,1,2,0.0,0.0,0.0,0,0,783.8003357961218,783.8003357961218,0.0 4696,8136,8135,0,0,59,111,68,71,0,6935,0,0,0,51,1,3,0,1,1.0,3860.22176463,0,0,19040.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,19040.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4697,8146,8145,22,22,73,111,75,70,0,6947,0,0,0,0,0,5,0,2,1.5,1379.97086392,859,0,26469.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,17646.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.85759635546873,305.89319726660153,101.96439908886718 +4697,8146,8145,22,22,73,111,75,70,0,6947,0,0,0,0,0,5,0,2,1.5,1379.97086392,859,0,26469.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,17646.0,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.8575963554687,305.8931972666015,101.96439908886717 4698,8154,8153,7,9,88,120,86,50,0,6958,0,0,0,0,0,6,0,2,1.5,1547.55863196,0,0,27106.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,18070.6666667,5,3,5,5_1,3000.0,0,0.0,3000,10,10,0.0,0.0,0.0,0,0,346.9788584354022,0.0,346.9788584354022 -4699,8164,8163,3,5,50,111,63,50,0,697,0,170,0,0,2,6,1,3,2.0,2265.55427571,3120,0,34943.0,1,2,4,3,4,1,0,1,0,1,0,0,0,0,0,1,17471.5,5,3,5,5_0,17000.0,0,17000.0,0,2,3,134.5,61.6666666667,3.3,0,1,1733.394784510742,1733.394784510742,0.0 -4700,8167,8166,21,21,61,112,78,71,0,6973,0,0,0,0,0,5,0,2,1.5,1845.4553852000001,1846,0,27593.0,5,1,8,1,3,2,0,0,0,1,0,0,0,0,1,1,18395.3333333,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.85759635546873,305.89319726660153,101.96439908886718 -4701,8168,8167,5,5,63,221,77,60,0,6974,0,0,0,0,0,6,0,1,1.0,4789.5138836999995,2701,0,17785.0,5,1,1,3,1,1,0,0,0,1,0,0,0,0,1,0,17785.0,5,3,5,5_0,8000.0,0,0.0,8000,3,3,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 -4702,8185,8184,7,20,74,111,77,70,0,6996,0,0,0,310,0,3,0,1,1.0,4647.98705008,2679,0,18131.0,5,3,8,6,1,1,0,0,0,0,1,0,0,0,1,0,18131.0,5,3,5,5_0,2000.0,0,0.0,2000,8,18,0.0,0.0,0.0,0,0,203.92879817773436,0.0,203.92879817773436 +4699,8164,8163,3,5,50,111,63,50,0,697,0,170,0,0,2,6,1,3,2.0,2265.55427571,3120,0,34943.0,1,2,4,3,4,1,0,1,0,1,0,0,0,0,0,1,17471.5,5,3,5,5_0,17000.0,0,17000.0,0,2,3,134.5,61.6666666667,3.3,0,1,1733.3947845107418,1733.3947845107418,0.0 +4700,8167,8166,21,21,61,112,78,71,0,6973,0,0,0,0,0,5,0,2,1.5,1845.4553852,1846,0,27593.0,5,1,8,1,3,2,0,0,0,1,0,0,0,0,1,1,18395.3333333,5,3,5,5_0,4000.0,0,3000.0,1000,11,17,0.0,0.0,0.0,0,0,407.8575963554687,305.8931972666015,101.96439908886717 +4701,8168,8167,5,5,63,221,77,60,0,6974,0,0,0,0,0,6,0,1,1.0,4789.5138837,2701,0,17785.0,5,1,1,3,1,1,0,0,0,1,0,0,0,0,1,0,17785.0,5,3,5,5_0,8000.0,0,0.0,8000,3,3,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 +4702,8185,8184,7,20,74,111,77,70,0,6996,0,0,0,310,0,3,0,1,1.0,4647.98705008,2679,0,18131.0,5,3,8,6,1,1,0,0,0,0,1,0,0,0,1,0,18131.0,5,3,5,5_0,2000.0,0,0.0,2000,8,18,0.0,0.0,0.0,0,0,203.92879817773434,0.0,203.92879817773434 4703,8192,8191,0,0,70,111,78,70,0,7004,0,0,0,289,0,3,0,1,1.0,3194.630019,0,0,18666.0,5,3,7,6,1,0,0,0,0,0,1,0,0,0,0,0,18666.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4704,8195,8194,11,11,52,111,52,60,0,7010,0,0,99999,256,1,3,1,2,1.5,4030.12852064,1543,0,27094.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,1,0,18062.6666667,5,3,5,5_0,8000.0,0,0.0,8000,10,10,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 -4705,8196,8195,11,11,87,111,72,70,0,7011,0,0,0,0,0,7,0,2,1.5,1661.05685432,0,0,27477.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,2,0,18318.0,5,3,5,5_0,1500.0,0,0.0,1500,14,14,0.0,0.0,0.0,0,0,152.94659863330077,0.0,152.94659863330077 -4706,8202,8201,2,10,32,111,54,20,0,7018,0,0,150,254,1,2,0,1,1.0,2790.42516279,3640,0,18580.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,18580.0,5,3,5,5_0,30000.0,0,0.0,30000,2,10,0.0,90.0,3.3,0,1,3058.9319726660156,0.0,3058.9319726660156 +4704,8195,8194,11,11,52,111,52,60,0,7010,0,0,99999,256,1,3,1,2,1.5,4030.12852064,1543,0,27094.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,1,0,18062.6666667,5,3,5,5_0,8000.0,0,0.0,8000,10,10,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 +4705,8196,8195,11,11,87,111,72,70,0,7011,0,0,0,0,0,7,0,2,1.5,1661.05685432,0,0,27477.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,2,0,18318.0,5,3,5,5_0,1500.0,0,0.0,1500,14,14,0.0,0.0,0.0,0,0,152.94659863330074,0.0,152.94659863330074 +4706,8202,8201,2,10,32,111,54,20,0,7018,0,0,150,254,1,2,0,1,1.0,2790.42516279,3640,0,18580.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,18580.0,5,3,5,5_0,30000.0,0,0.0,30000,2,10,0.0,90.0,3.3,0,1,3058.9319726660146,0.0,3058.9319726660146 4707,8208,8207,0,0,56,111,52,71,0,7025,0,0,0,0,2,3,0,2,1.5,3088.62593409,0,0,28672.0,1,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,19114.6666667,5,3,5,5_0,0.0,0,0.0,0,0,0,102.0,70.0,5.57,0,0,0.0,0.0,0.0 -4708,8231,8230,5,5,63,111,77,50,0,7061,0,0,0,0,0,3,0,2,1.5,1960.02669811,0,0,26920.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17946.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 -4709,8239,8238,9,9,40,111,37,20,0,7072,0,0,20,0,1,4,1,2,1.3,3727.25654797,0,0,24220.0,4,2,9,7,2,1,1,1,0,0,0,1,0,1,1,0,18630.7692308,5,3,5,5_0,3743.0,0,0.0,3743,1,11,0.0,95.0,3.3,0,1,381.6527457896298,0.0,381.6527457896298 -4710,8241,8240,5,9,85,111,75,70,0,7075,0,0,0,0,0,3,0,2,1.5,1407.17488727,2652,0,26011.0,5,4,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17340.6666667,5,3,5,5_0,5000.0,0,0.0,5000,8,8,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 +4708,8231,8230,5,5,63,111,77,50,0,7061,0,0,0,0,0,3,0,2,1.5,1960.02669811,0,0,26920.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17946.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 +4709,8239,8238,9,9,40,111,37,20,0,7072,0,0,20,0,1,4,1,2,1.3,3727.25654797,0,0,24220.0,4,2,9,7,2,1,1,1,0,0,0,1,0,1,1,0,18630.7692308,5,3,5,5_0,3743.0,0,0.0,3743,1,11,0.0,95.0,3.3,0,1,381.65274578962976,0.0,381.65274578962976 +4710,8241,8240,5,9,85,111,75,70,0,7075,0,0,0,0,0,3,0,2,1.5,1407.17488727,2652,0,26011.0,5,4,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17340.6666667,5,3,5,5_0,5000.0,0,0.0,5000,8,8,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 4711,8242,8241,12,16,74,120,78,70,0,7076,0,0,0,0,0,7,0,1,1.0,1838.67836232,3250,0,18069.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,18069.0,5,3,5,5_1,1500.0,0,0.0,1500,12,15,0.0,0.0,0.0,0,0,173.4894292177011,0.0,173.4894292177011 -4712,8266,8265,4,11,46,111,65,71,0,7107,0,0,0,334,1,5,1,3,2.0,3212.68072836,0,0,35722.0,1,3,10,8,5,1,0,0,0,0,0,0,1,1,0,1,17861.0,5,3,5,5_0,9000.0,0,9000.0,0,4,12,0.0,28.0,3.3,0,1,917.6795917998046,917.6795917998046,0.0 +4712,8266,8265,4,11,46,111,65,71,0,7107,0,0,0,334,1,5,1,3,2.0,3212.68072836,0,0,35722.0,1,3,10,8,5,1,0,0,0,0,0,0,1,1,0,1,17861.0,5,3,5,5_0,9000.0,0,9000.0,0,4,12,0.0,28.0,3.3,0,1,917.6795917998045,917.6795917998045,0.0 4713,8267,8266,28,29,80,120,77,70,0,7112,0,0,0,0,0,4,0,1,1.0,1868.89751493,1427,0,18373.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,18373.0,5,3,5,5_1,5658.0,0,0.0,5658,10,22,0.0,0.0,0.0,0,0,654.4021270091685,0.0,654.4021270091685 -4714,8272,8271,3,6,32,111,47,31,0,7118,0,0,130,362,1,3,0,1,1.0,3619.43183454,0,0,18411.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,18411.0,5,3,5,5_0,12000.0,0,0.0,12000,5,8,45.5,40.0,3.3,0,1,1223.5727890664061,0.0,1223.5727890664061 -4715,8312,8311,4,4,37,111,67,43,0,7177,0,0,350,0,2,4,2,4,2.1,1820.30584802,5668,0,39698.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,2,0,18903.809523800002,5,3,5,5_0,10400.0,0,0.0,10400,1,1,70.0,13.0,3.3,0,1,1060.4297505242187,0.0,1060.4297505242187 +4714,8272,8271,3,6,32,111,47,31,0,7118,0,0,130,362,1,3,0,1,1.0,3619.43183454,0,0,18411.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,18411.0,5,3,5,5_0,12000.0,0,0.0,12000,5,8,45.5,40.0,3.3,0,1,1223.572789066406,0.0,1223.572789066406 +4715,8312,8311,4,4,37,111,67,43,0,7177,0,0,350,0,2,4,2,4,2.1,1820.30584802,5668,0,39698.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,2,0,18903.8095238,5,3,5,5_0,10400.0,0,0.0,10400,1,1,70.0,13.0,3.3,0,1,1060.4297505242184,0.0,1060.4297505242184 4716,8322,8321,0,0,61,111,78,71,0,7194,0,0,0,398,0,4,0,1,1.0,3145.41346422,0,0,17160.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17160.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4717,8327,8326,7,9,43,300,54,60,0,7200,0,50,0,0,2,8,2,4,2.1,2876.27402635,5959,0,38157.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,18170.0,5,3,5,5_1,10000.0,0,10000.0,0,6,9,62.8,43.3333333333,3.3,0,1,1156.596194784674,1156.596194784674,0.0 -4718,8331,8330,22,22,83,111,78,70,0,7206,0,0,0,0,0,3,0,1,1.0,3192.33856111,0,0,17125.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17125.0,5,3,5,5_0,6000.0,6000,0.0,0,20,21,0.0,0.0,0.0,0,0,611.7863945332031,0.0,0.0 +4718,8331,8330,22,22,83,111,78,70,0,7206,0,0,0,0,0,3,0,1,1.0,3192.33856111,0,0,17125.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17125.0,5,3,5,5_0,6000.0,6000,0.0,0,20,21,0.0,0.0,0.0,0,0,611.786394533203,0.0,0.0 4719,8341,8340,19,22,71,120,75,43,0,7223,0,0,0,0,0,4,0,2,1.5,1676.23392169,12584,0,26880.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,17920.0,5,3,5,5_1,20000.0,0,10000.0,10000,17,19,0.0,0.0,0.0,0,0,2313.192389569348,1156.596194784674,1156.596194784674 -4720,8350,8349,11,11,48,112,46,31,0,7235,0,204,0,0,2,5,3,5,2.8,1561.59568317,2772,0,49651.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,17732.5,5,3,5,5_0,12000.0,0,12000.0,0,4,11,114.3,18.0,3.3,0,1,1223.5727890664061,1223.5727890664061,0.0 -4721,8357,8356,0,41,30,111,35,10,0,7241,0,0,0,0,2,3,1,3,1.8,3461.52370807,2029,0,32190.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,17883.3333333,5,3,5,5_0,7500.0,0,0.0,7500,8,20,0.0,3.33333333333,0.0,0,0,764.7329931665039,0.0,764.7329931665039 -4722,8358,8357,2,3,46,111,37,31,0,7243,0,0,200,500,1,3,1,2,1.5,3102.10285098,0,0,26361.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,1,0,17574.0,5,3,5,5_0,3409.0,0,0.0,3409,1,7,0.0,40.0,5.56,0,0,347.5966364939482,0.0,347.5966364939482 -4723,8367,8366,0,0,72,112,77,50,0,7252,0,0,0,0,0,5,0,1,1.0,1263.3784517000001,0,0,18651.0,5,1,10,1,1,0,0,0,0,1,0,0,0,0,0,0,18651.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4724,8374,8373,11,15,61,111,78,71,0,7265,0,0,0,0,1,3,0,2,1.5,3668.18735336,0,0,27797.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,18531.3333333,5,3,5,5_0,1200.0,0,0.0,1200,7,7,0.0,0.0,0.0,0,0,122.35727890664062,0.0,122.35727890664062 +4720,8350,8349,11,11,48,112,46,31,0,7235,0,204,0,0,2,5,3,5,2.8,1561.59568317,2772,0,49651.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,17732.5,5,3,5,5_0,12000.0,0,12000.0,0,4,11,114.3,18.0,3.3,0,1,1223.572789066406,1223.572789066406,0.0 +4721,8357,8356,0,41,30,111,35,10,0,7241,0,0,0,0,2,3,1,3,1.8,3461.52370807,2029,0,32190.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,17883.3333333,5,3,5,5_0,7500.0,0,0.0,7500,8,20,0.0,3.33333333333,0.0,0,0,764.7329931665037,0.0,764.7329931665037 +4722,8358,8357,2,3,46,111,37,31,0,7243,0,0,200,500,1,3,1,2,1.5,3102.10285098,0,0,26361.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,1,0,17574.0,5,3,5,5_0,3409.0,0,0.0,3409,1,7,0.0,40.0,5.56,0,0,347.59663649394815,0.0,347.59663649394815 +4723,8367,8366,0,0,72,112,77,50,0,7252,0,0,0,0,0,5,0,1,1.0,1263.3784517,0,0,18651.0,5,1,10,1,1,0,0,0,0,1,0,0,0,0,0,0,18651.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +4724,8374,8373,11,15,61,111,78,71,0,7265,0,0,0,0,1,3,0,2,1.5,3668.18735336,0,0,27797.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,18531.3333333,5,3,5,5_0,1200.0,0,0.0,1200,7,7,0.0,0.0,0.0,0,0,122.35727890664059,0.0,122.35727890664059 4725,8376,8375,4,6,33,400,63,43,0,7268,0,584,30,0,1,4,3,5,2.4,2214.89252144,1560,0,45095.0,1,3,0,0,4,2,1,1,1,0,0,0,0,0,1,1,18789.5833333,5,3,5,5_1,30000.0,0,15000.0,15000,2,8,0.0,0.0,0.0,0,1,3469.7885843540216,1734.8942921770108,1734.8942921770108 -4726,8402,8401,1,1,38,111,37,10,0,7310,450,0,0,0,2,4,3,5,2.4,1031.13200744,0,0,42146.0,1,2,4,4,4,2,1,1,0,0,1,0,0,0,0,1,17560.8333333,5,3,5,5_0,16000.0,0,6000.0,10000,3,0,56.5,18.0,3.3,0,1,1631.430385421875,611.7863945332031,1019.6439908886717 +4726,8402,8401,1,1,38,111,37,10,0,7310,450,0,0,0,2,4,3,5,2.4,1031.13200744,0,0,42146.0,1,2,4,4,4,2,1,1,0,0,1,0,0,0,0,1,17560.8333333,5,3,5,5_0,16000.0,0,6000.0,10000,3,0,56.5,18.0,3.3,0,1,1631.4303854218747,611.786394533203,1019.6439908886716 4727,8406,8405,16,20,63,400,74,60,0,7316,0,0,0,0,0,7,0,2,1.5,2425.54953083,0,0,27061.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,18040.6666667,5,3,5,5_1,37000.0,0,22000.0,15000,4,17,0.0,0.0,0.0,0,0,4279.405920703293,2544.5116285262825,1734.8942921770108 -4728,8409,8408,2,8,37,111,46,43,0,7319,0,1500,0,186,1,3,0,1,1.0,2447.39506278,0,0,17424.0,1,3,6,4,1,1,1,1,0,0,1,0,0,1,0,1,17424.0,5,3,5,5_0,2500.0,0,2500.0,0,4,7,0.0,20.0,3.3,0,1,254.91099772216793,254.91099772216793,0.0 -4729,8411,8410,2,8,44,112,62,71,0,7322,0,100,0,0,1,3,2,4,2.1,2281.55810984,1569,0,38280.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,1,1,18228.571428599997,5,3,5,5_1,28000.0,0,5000.0,23000,7,8,114.0,30.0,3.3,0,1,3238.469345397087,578.298097392337,2660.17124800475 -4730,8422,8421,3,15,40,111,53,60,0,7338,0,0,0,0,1,4,1,3,1.8,3466.42557121,0,0,32876.0,1,4,8,7,4,2,0,0,0,0,0,1,0,0,1,1,18264.4444444,5,3,5,5_0,21769.0,0,18226.0,3543,1,15,59.5,60.0,1.1,0,0,2219.6630037655495,1858.403137793693,361.2598659718564 +4728,8409,8408,2,8,37,111,46,43,0,7319,0,1500,0,186,1,3,0,1,1.0,2447.39506278,0,0,17424.0,1,3,6,4,1,1,1,1,0,0,1,0,0,1,0,1,17424.0,5,3,5,5_0,2500.0,0,2500.0,0,4,7,0.0,20.0,3.3,0,1,254.9109977221679,254.9109977221679,0.0 +4729,8411,8410,2,8,44,112,62,71,0,7322,0,100,0,0,1,3,2,4,2.1,2281.55810984,1569,0,38280.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,1,1,18228.5714286,5,3,5,5_1,28000.0,0,5000.0,23000,7,8,114.0,30.0,3.3,0,1,3238.469345397087,578.298097392337,2660.17124800475 +4730,8422,8421,3,15,40,111,53,60,0,7338,0,0,0,0,1,4,1,3,1.8,3466.42557121,0,0,32876.0,1,4,8,7,4,2,0,0,0,0,0,1,0,0,1,1,18264.4444444,5,3,5,5_0,21769.0,0,18226.0,3543,1,15,59.5,60.0,1.1,0,0,2219.663003765549,1858.4031377936928,361.25986597185636 4731,8427,8426,14,14,72,112,78,70,0,735,0,0,0,0,0,4,0,2,1.5,1056.46539433,1456,0,26327.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,0,1,17551.3333333,5,3,5,5_1,5000.0,0,5000.0,0,12,15,0.0,0.0,0.0,0,0,578.298097392337,578.298097392337,0.0 -4732,8477,8476,2,2,44,112,67,60,0,7421,0,200,0,0,2,6,3,5,2.8,1383.53965898,6756,0,51839.0,1,2,10,1,4,2,0,1,0,1,0,0,0,0,1,1,18513.928571400003,5,3,5,5_0,16000.0,0,6000.0,10000,3,0,56.5,18.0,3.3,0,1,1631.430385421875,611.7863945332031,1019.6439908886717 -4733,8490,8489,5,5,44,111,46,12,0,7437,0,1200,100,0,1,7,3,5,2.4,1147.67905235,2774,0,44265.0,4,1,9,7,4,2,1,1,0,0,0,1,0,0,1,1,18443.75,5,3,5,5_0,10899.0,0,0.0,10899,5,5,0.0,0.0,0.0,0,0,1111.3099856695635,0.0,1111.3099856695635 -4734,8500,8499,7,14,38,111,43,33,0,7454,0,350,0,0,2,5,3,5,2.4,2221.52863713,3380,0,42169.0,1,3,4,3,4,2,0,0,0,1,0,0,0,1,1,1,17570.4166667,5,3,5,5_0,25000.0,0,10000.0,15000,4,14,139.7,10.4,3.3,0,1,2549.10997722168,1019.6439908886717,1529.4659863330078 +4732,8477,8476,2,2,44,112,67,60,0,7421,0,200,0,0,2,6,3,5,2.8,1383.53965898,6756,0,51839.0,1,2,10,1,4,2,0,1,0,1,0,0,0,0,1,1,18513.9285714,5,3,5,5_0,16000.0,0,6000.0,10000,3,0,56.5,18.0,3.3,0,1,1631.4303854218747,611.786394533203,1019.6439908886716 +4733,8490,8489,5,5,44,111,46,12,0,7437,0,1200,100,0,1,7,3,5,2.4,1147.67905235,2774,0,44265.0,4,1,9,7,4,2,1,1,0,0,0,1,0,0,1,1,18443.75,5,3,5,5_0,10899.0,0,0.0,10899,5,5,0.0,0.0,0.0,0,0,1111.309985669563,0.0,1111.309985669563 +4734,8500,8499,7,14,38,111,43,33,0,7454,0,350,0,0,2,5,3,5,2.4,2221.52863713,3380,0,42169.0,1,3,4,3,4,2,0,0,0,1,0,0,0,1,1,1,17570.4166667,5,3,5,5_0,25000.0,0,10000.0,15000,4,14,139.7,10.4,3.3,0,1,2549.109977221679,1019.6439908886716,1529.4659863330073 4735,8502,8501,3,4,40,112,37,31,0,746,0,355,0,0,1,3,1,2,1.5,2916.94212322,2576,0,27463.0,1,3,10,0,2,1,0,1,1,0,0,0,0,0,0,1,18308.6666667,5,3,5,5_1,20000.0,0,20000.0,0,4,5,0.0,0.0,0.0,0,1,2313.192389569348,2313.192389569348,0.0 -4736,8520,8519,3,3,52,111,48,60,0,7488,0,500,0,0,3,4,2,4,2.3,1374.02553784,2080,0,43665.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,18984.782608700003,5,3,5,5_0,4000.0,0,4000.0,0,3,4,184.8,36.6666666667,3.3,0,1,407.85759635546873,407.85759635546873,0.0 -4737,8528,8527,6,12,27,111,46,42,0,7499,0,500,0,272,1,2,0,1,1.0,3195.81451021,1300,0,17000.0,1,3,9,7,1,1,1,1,0,0,0,1,0,0,0,1,17000.0,5,3,5,5_0,20000.0,0,20000.0,0,4,13,78.4,55.0,3.3,0,1,2039.2879817773435,2039.2879817773435,0.0 +4736,8520,8519,3,3,52,111,48,60,0,7488,0,500,0,0,3,4,2,4,2.3,1374.02553784,2080,0,43665.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,18984.7826087,5,3,5,5_0,4000.0,0,4000.0,0,3,4,184.8,36.6666666667,3.3,0,1,407.8575963554687,407.8575963554687,0.0 +4737,8528,8527,6,12,27,111,46,42,0,7499,0,500,0,272,1,2,0,1,1.0,3195.81451021,1300,0,17000.0,1,3,9,7,1,1,1,1,0,0,0,1,0,0,0,1,17000.0,5,3,5,5_0,20000.0,0,20000.0,0,4,13,78.4,55.0,3.3,0,1,2039.2879817773432,2039.2879817773432,0.0 4738,8531,8530,0,0,80,111,77,70,0,7501,0,0,0,315,0,5,0,1,1.0,2926.35226391,0,0,17188.0,5,3,8,6,1,0,0,0,0,0,1,0,0,0,0,0,17188.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4739,8534,8533,10,14,30,300,47,31,0,7506,0,0,700,0,1,5,2,3,1.6,2659.05076292,3050,0,28807.0,1,2,0,0,2,1,0,1,1,0,0,0,0,0,1,0,18004.375,5,3,5,5_1,20000.0,0,20000.0,0,2,15,150.5,36.6666666667,3.3,0,1,2313.192389569348,2313.192389569348,0.0 -4740,8536,8535,1,16,61,112,72,50,0,7509,0,0,0,0,1,4,0,2,1.5,3224.8025748000005,1303,0,26312.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,1,1,17541.3333333,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954102,530.2148752621093,152.94659863330077 -4741,8544,8543,3,10,45,111,53,43,0,7520,0,80,0,0,1,3,2,4,2.1,1454.30865441,2184,0,39584.0,1,2,6,5,4,3,0,0,0,0,1,0,0,0,1,2,18849.5238095,5,3,5,5_0,8000.0,0,8000.0,0,5,10,271.5,35.0,3.33,0,0,815.7151927109375,815.7151927109375,0.0 +4740,8536,8535,1,16,61,112,72,50,0,7509,0,0,0,0,1,4,0,2,1.5,3224.8025748,1303,0,26312.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,1,1,17541.3333333,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954099,530.2148752621092,152.94659863330074 +4741,8544,8543,3,10,45,111,53,43,0,7520,0,80,0,0,1,3,2,4,2.1,1454.30865441,2184,0,39584.0,1,2,6,5,4,3,0,0,0,0,1,0,0,0,1,2,18849.5238095,5,3,5,5_0,8000.0,0,8000.0,0,5,10,271.5,35.0,3.33,0,0,815.7151927109373,815.7151927109373,0.0 4742,8550,8549,2,2,44,400,37,31,0,7527,0,0,0,0,2,5,1,3,2.0,4014.03463794,3484,0,36688.0,1,4,0,0,4,1,0,0,1,0,0,0,0,0,0,1,18344.0,5,3,5,5_1,20000.0,0,20000.0,0,2,3,85.0,90.0,3.3,0,0,2313.192389569348,2313.192389569348,0.0 -4743,8556,8555,10,18,28,111,47,31,0,7534,0,0,0,0,2,1,0,2,1.5,4758.2993161,0,0,28680.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,1,0,19120.0,5,3,5,5_0,15000.0,0,0.0,15000,5,6,132.6,112.5,3.3,0,1,1529.4659863330078,0.0,1529.4659863330078 +4743,8556,8555,10,18,28,111,47,31,0,7534,0,0,0,0,2,1,0,2,1.5,4758.2993161,0,0,28680.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,1,0,19120.0,5,3,5,5_0,15000.0,0,0.0,15000,5,6,132.6,112.5,3.3,0,1,1529.4659863330073,0.0,1529.4659863330073 4744,8567,8566,7,8,65,300,77,41,0,755,0,0,0,0,0,3,0,1,1.0,2531.34337987,0,0,18577.0,5,3,0,0,1,1,0,0,1,0,0,0,0,0,1,0,18577.0,5,3,5,5_1,15000.0,0,0.0,15000,6,8,0.0,0.0,0.0,0,0,1734.8942921770108,0.0,1734.8942921770108 -4745,8569,8568,1,6,29,111,62,30,2,7551,0,750,0,0,2,5,2,4,2.1,2616.00195659,3380,6000,37099.0,1,3,8,6,4,2,0,0,0,0,1,0,0,1,0,2,17666.190476199998,5,3,5,5_0,10000.0,0,10000.0,0,4,7,99.0,12.5,0.0,1,1,1019.6439908886717,1019.6439908886717,0.0 +4745,8569,8568,1,6,29,111,62,30,2,7551,0,750,0,0,2,5,2,4,2.1,2616.00195659,3380,6000,37099.0,1,3,8,6,4,2,0,0,0,0,1,0,0,1,0,2,17666.1904762,5,3,5,5_0,10000.0,0,10000.0,0,4,7,99.0,12.5,0.0,1,1,1019.6439908886716,1019.6439908886716,0.0 4746,8595,8594,0,0,31,111,31,10,0,759,0,0,0,500,1,1,0,1,1.0,4292.0330758,0,0,18393.0,4,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,18393.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4747,8603,8602,8,8,68,300,71,50,0,7599,0,0,0,0,0,6,0,2,1.5,1152.04920996,2081,0,27844.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,18562.6666667,5,3,5,5_1,19250.0,0,19250.0,0,4,8,0.0,0.0,0.0,0,0,2226.4476749604974,2226.4476749604974,0.0 -4748,8619,8618,12,28,62,111,63,50,0,7617,0,0,0,400,3,3,2,5,2.8,2442.9583534000003,0,0,48620.0,1,3,8,7,5,1,0,0,0,0,0,1,0,0,0,1,17364.2857143,5,3,5,5_0,20000.0,0,20000.0,0,5,25,32.4,36.0,2.25,0,0,2039.2879817773435,2039.2879817773435,0.0 -4749,8623,8622,20,20,57,221,52,50,0,7620,0,0,0,0,1,3,1,3,2.0,4456.45775571,0,0,34159.0,1,1,1,2,4,2,0,0,0,1,0,0,0,0,1,1,17079.5,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954102,530.2148752621093,152.94659863330077 -4750,8624,8623,2,8,45,111,62,71,0,7621,0,50,0,0,2,3,2,4,2.5,2275.14981984,0,0,46111.0,1,1,8,7,4,3,0,0,0,0,0,1,0,0,0,3,18444.4,5,3,5,5_0,25311.0,0,25311.0,0,6,9,187.1,63.3333333333,0.0,0,1,2580.820905338317,2580.820905338317,0.0 -4751,8635,8634,1,8,30,112,62,50,0,7635,0,600,0,0,1,5,2,4,2.1,3830.81065877,12740,0,36768.0,1,3,5,0,4,1,0,1,1,0,0,0,0,1,0,1,17508.571428599997,5,3,5,5_1,18226.0,0,18226.0,0,1,7,0.0,15.0,3.3,0,1,2108.0122246145465,2108.0122246145465,0.0 -4752,8648,8647,2,19,56,111,52,50,0,7648,0,0,300,185,4,4,3,4,2.5,2297.02772646,1560,0,42564.0,1,3,9,7,2,2,0,1,0,0,0,1,0,1,2,0,17025.6,5,3,5,5_0,7506.0,0,0.0,7506,1,11,0.0,0.0,0.0,0,1,765.3447795610371,0.0,765.3447795610371 +4748,8619,8618,12,28,62,111,63,50,0,7617,0,0,0,400,3,3,2,5,2.8,2442.9583534,0,0,48620.0,1,3,8,7,5,1,0,0,0,0,0,1,0,0,0,1,17364.2857143,5,3,5,5_0,20000.0,0,20000.0,0,5,25,32.4,36.0,2.25,0,0,2039.2879817773432,2039.2879817773432,0.0 +4749,8623,8622,20,20,57,221,52,50,0,7620,0,0,0,0,1,3,1,3,2.0,4456.45775571,0,0,34159.0,1,1,1,2,4,2,0,0,0,1,0,0,0,0,1,1,17079.5,5,3,5,5_0,6700.0,0,5200.0,1500,14,18,0.0,0.0,0.0,1,0,683.1614738954099,530.2148752621092,152.94659863330074 +4750,8624,8623,2,8,45,111,62,71,0,7621,0,50,0,0,2,3,2,4,2.5,2275.14981984,0,0,46111.0,1,1,8,7,4,3,0,0,0,0,0,1,0,0,0,3,18444.4,5,3,5,5_0,25311.0,0,25311.0,0,6,9,187.1,63.3333333333,0.0,0,1,2580.8209053383166,2580.8209053383166,0.0 +4751,8635,8634,1,8,30,112,62,50,0,7635,0,600,0,0,1,5,2,4,2.1,3830.81065877,12740,0,36768.0,1,3,5,0,4,1,0,1,1,0,0,0,0,1,0,1,17508.5714286,5,3,5,5_1,18226.0,0,18226.0,0,1,7,0.0,15.0,3.3,0,1,2108.0122246145465,2108.0122246145465,0.0 +4752,8648,8647,2,19,56,111,52,50,0,7648,0,0,300,185,4,4,3,4,2.5,2297.02772646,1560,0,42564.0,1,3,9,7,2,2,0,1,0,0,0,1,0,1,2,0,17025.6,5,3,5,5_0,7506.0,0,0.0,7506,1,11,0.0,0.0,0.0,0,1,765.344779561037,0.0,765.344779561037 4753,8652,8651,14,27,45,400,52,42,0,7651,0,170,0,0,2,7,2,5,2.8,1736.69218818,1877,0,48559.0,1,2,0,0,5,2,0,1,1,0,0,0,0,0,0,2,17342.5,5,3,5,5_1,28000.0,0,28000.0,0,7,19,42.8,38.0,3.3,0,1,3238.469345397087,3238.469345397087,0.0 4754,8653,8652,16,27,59,400,11,50,0,7652,0,0,0,0,1,5,0,2,1.5,1124.22380379,2601,0,25822.0,1,1,0,0,3,3,1,0,1,0,0,0,0,0,0,3,17214.6666667,5,3,5,5_1,8859.0,0,6859.0,2000,25,25,0.0,0.0,0.0,0,0,1024.6285689597428,793.3093300028078,231.31923895693478 -4755,8670,8669,15,15,69,111,77,71,0,7670,0,0,0,0,0,5,0,1,1.0,2915.90214906,2579,0,17653.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,17653.0,5,3,5,5_0,4000.0,0,0.0,4000,16,16,0.0,0.0,0.0,0,0,407.85759635546873,0.0,407.85759635546873 -4756,8674,8673,3,6,34,111,37,50,0,7674,0,1000,100,430,2,4,2,4,2.3,2519.51327976,4559,0,41447.0,1,3,8,7,4,2,1,1,0,0,0,1,0,0,1,1,18020.434782599998,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882813,2039.2879817773435,815.7151927109375 -4757,8676,8675,8,8,84,111,71,70,0,7676,0,0,0,0,0,5,0,1,1.0,2054.25416754,0,0,17077.0,5,4,6,5,1,1,0,0,0,0,1,0,0,0,1,0,17077.0,5,3,5,5_0,9000.0,0,0.0,9000,6,6,0.0,0.0,0.0,0,0,917.6795917998046,0.0,917.6795917998046 -4758,8678,8677,0,7,29,111,46,50,2,7680,0,500,0,0,2,3,1,3,1.8,2892.48230811,0,7150,34189.0,1,3,8,6,4,1,0,1,0,0,1,0,0,0,0,1,18993.888888900005,5,3,5,5_0,20000.0,0,20000.0,0,3,7,211.5,40.0,3.3,0,1,2039.2879817773435,2039.2879817773435,0.0 +4755,8670,8669,15,15,69,111,77,71,0,7670,0,0,0,0,0,5,0,1,1.0,2915.90214906,2579,0,17653.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,17653.0,5,3,5,5_0,4000.0,0,0.0,4000,16,16,0.0,0.0,0.0,0,0,407.8575963554687,0.0,407.8575963554687 +4756,8674,8673,3,6,34,111,37,50,0,7674,0,1000,100,430,2,4,2,4,2.3,2519.51327976,4559,0,41447.0,1,3,8,7,4,2,1,1,0,0,0,1,0,0,1,1,18020.4347826,5,3,5,5_0,28000.0,0,20000.0,8000,5,7,81.6,17.5,3.31,0,1,2855.0031744882804,2039.2879817773432,815.7151927109373 +4757,8676,8675,8,8,84,111,71,70,0,7676,0,0,0,0,0,5,0,1,1.0,2054.25416754,0,0,17077.0,5,4,6,5,1,1,0,0,0,0,1,0,0,0,1,0,17077.0,5,3,5,5_0,9000.0,0,0.0,9000,6,6,0.0,0.0,0.0,0,0,917.6795917998045,0.0,917.6795917998045 +4758,8678,8677,0,7,29,111,46,50,2,7680,0,500,0,0,2,3,1,3,1.8,2892.48230811,0,7150,34189.0,1,3,8,6,4,1,0,1,0,0,1,0,0,0,0,1,18993.8888889,5,3,5,5_0,20000.0,0,20000.0,0,3,7,211.5,40.0,3.3,0,1,2039.2879817773432,2039.2879817773432,0.0 4759,8683,8682,16,16,73,400,75,50,0,7687,0,0,0,334,0,3,0,1,1.0,4934.53080665,0,0,17751.0,5,3,0,0,1,2,0,0,1,0,0,0,0,0,1,1,17751.0,5,3,5,5_1,10500.0,0,10000.0,500,14,14,0.0,0.0,0.0,0,0,1214.4260045239075,1156.596194784674,57.829809739233696 4760,8687,8686,0,0,31,111,43,12,0,7691,0,0,0,1223,1,1,0,1,1.0,3638.63210969,0,0,18694.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18694.0,5,3,5,5_0,0.0,0,0.0,0,0,0,41.5,20.0,3.32,0,0,0.0,0.0,0.0 -4761,8688,8687,1,11,38,300,56,50,2,7693,0,0,400,0,2,7,4,6,2.7,1356.67354788,4680,4000,48108.0,1,3,0,0,4,2,1,0,1,0,0,0,0,1,1,1,17817.777777799998,5,3,5,5_1,55666.0,0,25666.0,30000,9,11,46.5,8.333333333330001,0.0,1,0,6438.308377888366,2968.519793534344,3469.7885843540216 +4761,8688,8687,1,11,38,300,56,50,2,7693,0,0,400,0,2,7,4,6,2.7,1356.67354788,4680,4000,48108.0,1,3,0,0,4,2,1,0,1,0,0,0,0,1,1,1,17817.7777778,5,3,5,5_1,55666.0,0,25666.0,30000,9,11,46.5,8.33333333333,0.0,1,0,6438.308377888366,2968.519793534344,3469.7885843540216 4762,8691,8690,7,11,72,120,72,50,0,7697,0,300,0,0,1,5,1,3,2.0,1980.10458229,2881,0,34150.0,5,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,17075.0,5,3,5,5_1,34000.0,0,22000.0,12000,3,14,0.0,0.0,0.0,0,0,3932.427062267891,2544.5116285262825,1387.9154337416087 -4763,8692,8691,0,18,36,111,54,43,0,7699,0,100,0,130,1,3,1,2,1.3,2965.76565768,1560,0,23045.0,4,3,10,8,2,1,0,1,0,0,0,0,1,1,0,1,17726.923076900002,5,3,5,5_0,16353.0,0,16353.0,0,4,14,57.0,46.0,3.31,0,1,1667.4238183002449,1667.4238183002449,0.0 -4764,8707,8706,10,18,57,111,63,70,0,7721,0,50,0,259,1,3,0,2,1.5,1815.594056,0,0,26560.0,1,3,5,4,3,2,0,0,0,0,1,0,0,0,0,2,17706.6666667,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.1769144496454,1561.1769144496454,0.0 +4763,8692,8691,0,18,36,111,54,43,0,7699,0,100,0,130,1,3,1,2,1.3,2965.76565768,1560,0,23045.0,4,3,10,8,2,1,0,1,0,0,0,0,1,1,0,1,17726.9230769,5,3,5,5_0,16353.0,0,16353.0,0,4,14,57.0,46.0,3.31,0,1,1667.4238183002446,1667.4238183002446,0.0 +4764,8707,8706,10,18,57,111,63,70,0,7721,0,50,0,259,1,3,0,2,1.5,1815.594056,0,0,26560.0,1,3,5,4,3,2,0,0,0,0,1,0,0,0,0,2,17706.6666667,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.176914449645,1561.176914449645,0.0 4765,8713,8712,9,9,65,300,75,50,0,7732,0,0,0,0,0,4,0,2,1.5,625.603134339,1196,0,27379.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,18252.6666667,5,3,5,5_1,4000.0,0,4000.0,0,5,10,0.0,0.0,0.0,0,0,462.63847791386956,462.63847791386956,0.0 4766,8759,8758,1,1,64,112,74,70,2,779,0,0,0,0,0,4,0,2,1.5,2150.30057091,2548,12975,27660.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,0,1,18440.0,5,3,5,5_0,0.0,0,0.0,0,19,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4767,8760,8759,5,13,24,112,53,44,0,7790,0,0,500,550,2,3,0,2,1.5,3105.29140341,0,0,26440.0,1,3,9,3,3,1,0,1,0,1,0,0,0,0,1,0,17626.6666667,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.3099856695635,0.0,1111.3099856695635 +4767,8760,8759,5,13,24,112,53,44,0,7790,0,0,500,550,2,3,0,2,1.5,3105.29140341,0,0,26440.0,1,3,9,3,3,1,0,1,0,1,0,0,0,0,1,0,17626.6666667,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.309985669563,0.0,1111.309985669563 4768,8761,8760,0,0,43,112,68,71,0,7791,0,0,0,238,2,2,0,2,1.5,3078.47301219,0,0,27800.0,1,3,8,1,3,0,0,0,0,1,0,0,0,0,0,0,18533.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,106.0,55.0,2.22,0,0,0.0,0.0,0.0 4769,8771,8770,0,0,79,111,77,70,0,7801,0,0,0,570,0,3,0,1,1.0,3954.28522612,0,0,18370.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18370.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4770,8780,8779,12,14,47,111,65,60,0,7814,0,150,0,0,1,2,0,1,1.0,2843.1937299,1040,0,17424.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,0,1,17424.0,5,3,5,5_0,15000.0,0,15000.0,0,14,14,0.0,15.0,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 -4771,8787,8786,2,9,55,111,62,50,0,7823,0,0,0,0,2,5,2,4,2.5,957.528758057,1040,0,43404.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,17361.6,5,3,5,5_0,25352.0,0,0.0,25352,1,11,212.0,50.0,3.32,0,0,2585.001445700961,0.0,2585.001445700961 +4770,8780,8779,12,14,47,111,65,60,0,7814,0,150,0,0,1,2,0,1,1.0,2843.1937299,1040,0,17424.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,0,1,17424.0,5,3,5,5_0,15000.0,0,15000.0,0,14,14,0.0,15.0,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 +4771,8787,8786,2,9,55,111,62,50,0,7823,0,0,0,0,2,5,2,4,2.5,957.528758057,1040,0,43404.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,17361.6,5,3,5,5_0,25352.0,0,0.0,25352,1,11,212.0,50.0,3.32,0,0,2585.00144570096,0.0,2585.00144570096 4772,8811,8810,5,9,26,400,63,43,0,7850,0,200,4,0,2,2,0,2,1.5,2352.07996857,0,0,28445.0,1,3,0,0,3,2,0,1,1,0,0,0,0,0,1,1,18963.3333333,5,3,5,5_1,20000.0,0,10000.0,10000,5,7,139.5,36.6666666667,3.3,0,1,2313.192389569348,1156.596194784674,1156.596194784674 4773,8812,8811,0,0,76,112,77,71,0,7851,0,0,0,0,0,3,0,1,1.0,2321.44528972,0,0,18703.0,5,4,7,0,1,0,0,0,1,0,0,0,0,0,0,0,18703.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4774,8837,8836,0,0,31,111,67,20,0,7886,0,0,0,253,1,2,0,1,1.0,2632.31432539,0,0,18168.0,1,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,18168.0,5,3,5,5_0,0.0,0,0.0,0,0,0,41.5,20.0,3.32,0,0,0.0,0.0,0.0 -4775,8841,8840,17,18,81,111,78,71,0,789,0,0,0,303,0,2,0,1,1.0,3137.16515828,0,0,18759.0,5,3,8,6,1,1,0,0,0,0,1,0,0,1,1,0,18759.0,5,3,5,5_0,8000.0,0,0.0,8000,19,19,0.0,0.0,0.0,0,0,815.7151927109375,0.0,815.7151927109375 -4776,8853,8852,2,5,35,111,42,20,0,7907,0,140,0,0,2,5,3,5,2.4,880.068564215,0,0,41577.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,0,2,17323.75,5,3,5,5_0,14000.0,0,14000.0,0,6,6,42.0,18.0,3.3,0,1,1427.5015872441406,1427.5015872441406,0.0 -4777,8858,8857,8,8,63,111,72,50,0,7915,0,0,0,0,0,6,0,2,1.5,3554.69275134,0,0,28304.0,5,1,4,3,3,1,0,0,0,1,0,0,0,0,0,1,18869.3333333,5,3,5,5_0,20000.0,0,20000.0,0,8,8,0.0,0.0,0.0,0,0,2039.2879817773435,2039.2879817773435,0.0 +4775,8841,8840,17,18,81,111,78,71,0,789,0,0,0,303,0,2,0,1,1.0,3137.16515828,0,0,18759.0,5,3,8,6,1,1,0,0,0,0,1,0,0,1,1,0,18759.0,5,3,5,5_0,8000.0,0,0.0,8000,19,19,0.0,0.0,0.0,0,0,815.7151927109373,0.0,815.7151927109373 +4776,8853,8852,2,5,35,111,42,20,0,7907,0,140,0,0,2,5,3,5,2.4,880.068564215,0,0,41577.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,0,2,17323.75,5,3,5,5_0,14000.0,0,14000.0,0,6,6,42.0,18.0,3.3,0,1,1427.5015872441402,1427.5015872441402,0.0 +4777,8858,8857,8,8,63,111,72,50,0,7915,0,0,0,0,0,6,0,2,1.5,3554.69275134,0,0,28304.0,5,1,4,3,3,1,0,0,0,1,0,0,0,0,0,1,18869.3333333,5,3,5,5_0,20000.0,0,20000.0,0,8,8,0.0,0.0,0.0,0,0,2039.2879817773432,2039.2879817773432,0.0 4778,8878,8877,0,0,82,211,78,50,0,7942,0,0,0,368,0,5,0,2,1.5,4135.60066484,0,0,27719.0,5,3,2,3,5,0,0,0,0,1,0,0,0,0,0,0,18479.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4779,8888,8887,0,0,87,111,78,70,0,7953,0,0,0,0,0,3,0,1,1.0,2977.24732815,0,0,16990.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,16990.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4780,8894,8893,6,16,52,120,63,50,0,7961,0,440,0,295,3,4,2,4,2.5,2401.48852872,2080,0,44987.0,1,3,0,2,4,2,0,1,0,1,0,0,0,0,0,2,17994.8,5,3,5,5_0,17445.0,0,17445.0,0,2,13,107.3,37.5,0.0,1,1,1778.768942105288,1778.768942105288,0.0 +4780,8894,8893,6,16,52,120,63,50,0,7961,0,440,0,295,3,4,2,4,2.5,2401.48852872,2080,0,44987.0,1,3,0,2,4,2,0,1,0,1,0,0,0,0,0,2,17994.8,5,3,5,5_0,17445.0,0,17445.0,0,2,13,107.3,37.5,0.0,1,1,1778.7689421052876,1778.7689421052876,0.0 4781,8896,8895,4,22,28,112,67,60,0,7963,0,0,220,0,2,4,2,4,2.1,2758.40061404,0,0,36101.0,1,3,5,0,4,2,0,0,1,0,0,0,0,0,1,1,17190.952381,5,3,5,5_1,23506.0,0,20000.0,3506,2,17,190.0,36.6666666667,3.31,0,1,2718.6950154608544,2313.192389569348,405.5026258915067 -4782,8906,8905,3,3,32,111,54,31,0,7974,0,0,0,300,1,2,0,1,1.0,4017.21884482,0,0,19004.0,1,3,8,7,1,1,0,0,0,0,0,1,0,0,0,1,19004.0,5,3,5,5_0,35000.0,0,35000.0,0,3,4,0.0,0.0,0.0,1,1,3568.7539681103513,3568.7539681103513,0.0 -4783,8908,8907,3,13,35,111,63,50,0,7976,0,220,300,281,2,4,3,5,2.4,1603.08958863,0,0,42210.0,1,3,7,6,4,2,0,1,0,0,1,0,0,0,1,1,17587.5,5,3,5,5_0,25000.0,0,10000.0,15000,4,14,139.7,10.4,3.3,0,1,2549.10997722168,1019.6439908886717,1529.4659863330078 -4784,8925,8924,3,12,43,221,64,50,0,8000,0,99999,0,0,2,4,2,4,2.3,2866.35092891,3640,0,39335.0,1,1,1,2,4,1,0,1,0,1,0,0,0,0,0,1,17102.173913,5,3,5,5_0,10000.0,0,10000.0,0,9,13,0.0,0.0,0.0,0,1,1019.6439908886717,1019.6439908886717,0.0 +4782,8906,8905,3,3,32,111,54,31,0,7974,0,0,0,300,1,2,0,1,1.0,4017.21884482,0,0,19004.0,1,3,8,7,1,1,0,0,0,0,0,1,0,0,0,1,19004.0,5,3,5,5_0,35000.0,0,35000.0,0,3,4,0.0,0.0,0.0,1,1,3568.7539681103503,3568.7539681103503,0.0 +4783,8908,8907,3,13,35,111,63,50,0,7976,0,220,300,281,2,4,3,5,2.4,1603.08958863,0,0,42210.0,1,3,7,6,4,2,0,1,0,0,1,0,0,0,1,1,17587.5,5,3,5,5_0,25000.0,0,10000.0,15000,4,14,139.7,10.4,3.3,0,1,2549.109977221679,1019.6439908886716,1529.4659863330073 +4784,8925,8924,3,12,43,221,64,50,0,8000,0,99999,0,0,2,4,2,4,2.3,2866.35092891,3640,0,39335.0,1,1,1,2,4,1,0,1,0,1,0,0,0,0,0,1,17102.173913,5,3,5,5_0,10000.0,0,10000.0,0,9,13,0.0,0.0,0.0,0,1,1019.6439908886716,1019.6439908886716,0.0 4785,8928,8927,0,0,84,112,75,70,0,8003,0,0,0,0,0,5,0,1,1.0,3990.62417694,0,0,18512.0,5,1,8,0,1,0,0,0,1,0,0,0,0,0,0,0,18512.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4786,8956,8955,7,10,33,111,54,43,0,8041,0,0,0,450,2,3,1,3,1.8,2558.21314727,3368,0,33695.0,1,3,7,6,4,2,0,0,0,0,1,0,0,0,0,2,18719.4444444,5,3,5,5_0,4400.0,0,4400.0,0,6,12,56.0,13.0,3.3,0,1,448.6433559910156,448.6433559910156,0.0 +4786,8956,8955,7,10,33,111,54,43,0,8041,0,0,0,450,2,3,1,3,1.8,2558.21314727,3368,0,33695.0,1,3,7,6,4,2,0,0,0,0,1,0,0,0,0,2,18719.4444444,5,3,5,5_0,4400.0,0,4400.0,0,6,12,56.0,13.0,3.3,0,1,448.64335599101554,448.64335599101554,0.0 4787,8957,8956,2,13,39,300,52,50,0,8042,0,900,0,0,3,6,2,4,2.3,2266.6100937,3526,0,43819.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,19051.7391304,5,3,5,5_1,16000.0,0,16000.0,0,6,6,146.0,38.0,3.32,0,0,1850.5539116554783,1850.5539116554783,0.0 -4788,8964,8963,4,4,56,111,75,33,0,8054,0,0,0,0,0,4,1,2,1.5,2304.65969725,0,0,27096.0,5,1,8,6,2,1,0,0,0,0,1,0,0,0,1,0,18064.0,5,3,5,5_0,17000.0,0,0.0,17000,4,6,0.0,0.0,0.0,0,0,1733.394784510742,0.0,1733.394784510742 -4789,8972,8971,2,2,64,120,72,50,0,8062,0,0,0,0,0,4,0,2,1.5,1804.50619768,1976,0,27892.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,18594.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 -4790,8974,8973,4,10,44,111,52,50,0,8064,0,0,178,0,1,3,1,2,1.3,1637.97989296,1040,0,23441.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,1,0,18031.5384615,5,3,5,5_0,3743.0,0,0.0,3743,1,11,0.0,95.0,3.3,0,1,381.6527457896298,0.0,381.6527457896298 +4788,8964,8963,4,4,56,111,75,33,0,8054,0,0,0,0,0,4,1,2,1.5,2304.65969725,0,0,27096.0,5,1,8,6,2,1,0,0,0,0,1,0,0,0,1,0,18064.0,5,3,5,5_0,17000.0,0,0.0,17000,4,6,0.0,0.0,0.0,0,0,1733.3947845107418,0.0,1733.3947845107418 +4789,8972,8971,2,2,64,120,72,50,0,8062,0,0,0,0,0,4,0,2,1.5,1804.50619768,1976,0,27892.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,18594.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 +4790,8974,8973,4,10,44,111,52,50,0,8064,0,0,178,0,1,3,1,2,1.3,1637.97989296,1040,0,23441.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,1,0,18031.5384615,5,3,5,5_0,3743.0,0,0.0,3743,1,11,0.0,95.0,3.3,0,1,381.65274578962976,0.0,381.65274578962976 4791,8989,8988,5,8,23,300,67,41,0,8085,0,100,0,0,2,4,0,2,1.5,2093.3221777,0,0,27174.0,1,3,0,0,3,2,0,1,1,0,0,0,0,0,0,2,18116.0,5,3,5,5_1,15781.0,0,15781.0,0,2,6,24.8,70.0,3.3,0,1,1825.2244549896939,1825.2244549896939,0.0 -4792,8995,8994,13,13,79,111,78,70,0,8090,0,0,0,0,0,3,0,1,1.0,3339.01732794,0,0,17700.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,17700.0,5,3,5,5_0,2400.0,0,0.0,2400,12,12,0.0,0.0,0.0,0,0,244.71455781328123,0.0,244.71455781328123 -4793,9016,9015,3,3,56,211,63,50,0,8114,0,120,0,0,2,4,0,2,1.5,895.058920762,0,0,27463.0,1,1,3,4,3,2,0,1,0,0,1,0,0,0,0,2,18308.6666667,5,3,5,5_0,26353.0,0,26353.0,0,2,5,0.0,32.5,3.3,0,1,2687.0678091889167,2687.0678091889167,0.0 -4794,9045,9044,18,18,75,111,78,70,0,8162,0,0,0,0,0,3,0,1,1.0,4024.66489735,0,0,17346.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,17346.0,5,3,5,5_0,5000.0,0,5000.0,0,16,19,0.0,0.0,0.0,0,0,509.82199544433587,509.82199544433587,0.0 +4792,8995,8994,13,13,79,111,78,70,0,8090,0,0,0,0,0,3,0,1,1.0,3339.01732794,0,0,17700.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,17700.0,5,3,5,5_0,2400.0,0,0.0,2400,12,12,0.0,0.0,0.0,0,0,244.71455781328117,0.0,244.71455781328117 +4793,9016,9015,3,3,56,211,63,50,0,8114,0,120,0,0,2,4,0,2,1.5,895.058920762,0,0,27463.0,1,1,3,4,3,2,0,1,0,0,1,0,0,0,0,2,18308.6666667,5,3,5,5_0,26353.0,0,26353.0,0,2,5,0.0,32.5,3.3,0,1,2687.0678091889163,2687.0678091889163,0.0 +4794,9045,9044,18,18,75,111,78,70,0,8162,0,0,0,0,0,3,0,1,1.0,4024.66489735,0,0,17346.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,17346.0,5,3,5,5_0,5000.0,0,5000.0,0,16,19,0.0,0.0,0.0,0,0,509.8219954443358,509.8219954443358,0.0 4795,9047,9046,7,13,48,400,64,71,0,8167,0,370,270,0,3,5,1,3,2.0,1946.01765561,0,0,36810.0,1,1,0,0,4,3,0,1,1,0,0,0,0,0,1,2,18405.0,5,3,5,5_1,28619.0,0,17102.0,11517,3,18,278.4,40.0,3.3,1,1,3310.0626498542583,1978.010812320749,1332.051837533509 4796,9050,9049,6,10,60,212,75,60,0,8170,0,0,0,0,1,8,0,2,1.5,5200.38251687,5668,0,26480.0,5,1,3,0,3,3,0,0,1,0,0,0,0,0,1,2,17653.3333333,5,3,5,5_1,13000.0,0,13000.0,0,10,12,0.0,0.0,0.0,0,0,1503.575053220076,1503.575053220076,0.0 -4797,9069,9068,0,0,48,111,62,71,2,8200,0,192,0,300,1,5,1,2,1.3,2993.6299694000004,0,1400,24610.0,1,3,5,4,2,1,0,1,0,0,1,0,0,0,0,1,18930.7692308,5,3,5,5_0,17343.0,0,17343.0,0,1,0,0.0,0.0,0.0,0,1,1768.3685733982236,1768.3685733982236,0.0 -4798,9091,9090,2,5,40,221,48,71,0,8231,0,0,70,0,1,5,2,4,2.1,7436.10678769,1820,0,35700.0,1,2,1,1,4,2,0,0,0,1,0,0,0,0,1,1,17000.0,5,3,5,5_0,9216.0,0,6716.0,2500,2,7,0.0,0.0,0.0,0,0,939.7039020029998,684.792904280832,254.91099772216793 +4797,9069,9068,0,0,48,111,62,71,2,8200,0,192,0,300,1,5,1,2,1.3,2993.6299694,0,1400,24610.0,1,3,5,4,2,1,0,1,0,0,1,0,0,0,0,1,18930.7692308,5,3,5,5_0,17343.0,0,17343.0,0,1,0,0.0,0.0,0.0,0,1,1768.368573398223,1768.368573398223,0.0 +4798,9091,9090,2,5,40,221,48,71,0,8231,0,0,70,0,1,5,2,4,2.1,7436.10678769,1820,0,35700.0,1,2,1,1,4,2,0,0,0,1,0,0,0,0,1,1,17000.0,5,3,5,5_0,9216.0,0,6716.0,2500,2,7,0.0,0.0,0.0,0,0,939.7039020029997,684.7929042808319,254.9109977221679 4799,9096,9095,1,19,75,400,86,71,2,8237,0,0,0,0,1,7,1,2,1.5,5056.92481947,2704,13000,28350.0,5,1,0,0,2,1,0,0,1,0,0,0,0,0,0,1,18900.0,5,3,5,5_1,10000.0,0,10000.0,0,10,13,0.0,0.0,0.0,0,1,1156.596194784674,1156.596194784674,0.0 4800,9097,9096,0,9,23,112,62,50,0,8239,0,550,0,0,1,2,0,1,1.0,3004.52806932,0,0,17983.0,1,2,8,0,1,1,1,1,1,0,0,0,0,0,0,1,17983.0,5,3,5,5_1,10000.0,0,10000.0,0,3,7,0.0,0.0,0.0,0,1,1156.596194784674,1156.596194784674,0.0 4801,9101,9100,9,9,55,111,56,60,0,8246,0,0,0,0,1,4,0,2,1.5,1760.88273179,0,0,26111.0,1,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17407.3333333,5,3,5,5_0,5600.0,0,0.0,5600,8,8,0.0,20.0,3.3,0,1,571.0006348976561,0.0,571.0006348976561 -4802,9112,9111,3,3,58,211,46,71,0,8256,0,700,0,0,1,5,0,2,1.5,1630.38392304,3380,0,28613.0,1,1,3,4,3,2,1,1,0,0,1,0,0,0,0,2,19075.3333333,5,3,5,5_0,40000.0,0,40000.0,0,6,0,286.0,90.0,3.3,0,1,4078.575963554687,4078.575963554687,0.0 -4803,9113,9112,4,4,82,120,75,50,0,8258,0,0,0,0,0,3,0,2,1.5,4125.40471256,0,0,27520.0,5,1,0,2,3,1,0,0,0,1,0,0,0,0,0,1,18346.6666667,5,3,5,5_0,6000.0,0,6000.0,0,4,4,0.0,0.0,0.0,0,0,611.7863945332031,611.7863945332031,0.0 -4804,9119,9118,1,5,54,112,54,50,0,8267,0,0,0,0,2,7,0,2,1.5,921.72895673,0,0,28273.0,1,1,9,1,3,2,0,0,0,1,0,0,0,0,1,1,18848.6666667,5,3,5,5_0,15600.0,0,10000.0,5600,2,15,85.0,15.0,0.0,0,1,1590.644625786328,1019.6439908886717,571.0006348976561 +4802,9112,9111,3,3,58,211,46,71,0,8256,0,700,0,0,1,5,0,2,1.5,1630.38392304,3380,0,28613.0,1,1,3,4,3,2,1,1,0,0,1,0,0,0,0,2,19075.3333333,5,3,5,5_0,40000.0,0,40000.0,0,6,0,286.0,90.0,3.3,0,1,4078.5759635546865,4078.5759635546865,0.0 +4803,9113,9112,4,4,82,120,75,50,0,8258,0,0,0,0,0,3,0,2,1.5,4125.40471256,0,0,27520.0,5,1,0,2,3,1,0,0,0,1,0,0,0,0,0,1,18346.6666667,5,3,5,5_0,6000.0,0,6000.0,0,4,4,0.0,0.0,0.0,0,0,611.786394533203,611.786394533203,0.0 +4804,9119,9118,1,5,54,112,54,50,0,8267,0,0,0,0,2,7,0,2,1.5,921.72895673,0,0,28273.0,1,1,9,1,3,2,0,0,0,1,0,0,0,0,1,1,18848.6666667,5,3,5,5_0,15600.0,0,10000.0,5600,2,15,85.0,15.0,0.0,0,1,1590.6446257863279,1019.6439908886716,571.0006348976561 4805,9140,9139,6,6,57,400,77,71,0,8298,0,0,0,0,1,5,1,3,2.0,2227.92220559,0,0,34220.0,5,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,17110.0,5,3,5,5_1,32891.0,0,22891.0,10000,2,7,0.0,0.0,0.0,0,0,3804.160544266271,2647.564349481597,1156.596194784674 4806,9146,9145,20,23,47,212,11,71,0,8304,0,0,0,0,2,7,0,2,1.5,2095.78111426,0,0,26407.0,1,1,3,0,3,2,1,0,1,0,0,0,0,0,2,0,17604.6666667,5,3,5,5_1,5500.0,0,0.0,5500,6,16,43.0,25.0,3.3,0,1,636.1279071315706,0.0,636.1279071315706 -4807,9161,9160,0,15,56,111,56,30,0,8324,0,0,0,350,1,1,0,1,1.0,3093.41107821,0,0,17410.0,4,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,17410.0,5,3,5,5_0,6000.0,0,0.0,6000,4,17,0.0,10.0,3.3,0,1,611.7863945332031,0.0,611.7863945332031 +4807,9161,9160,0,15,56,111,56,30,0,8324,0,0,0,350,1,1,0,1,1.0,3093.41107821,0,0,17410.0,4,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,17410.0,5,3,5,5_0,6000.0,0,0.0,6000,4,17,0.0,10.0,3.3,0,1,611.786394533203,0.0,611.786394533203 4808,9172,9171,0,0,44,111,56,41,0,8341,0,0,0,0,2,3,2,4,2.5,3388.52556312,0,0,43880.0,1,1,9,7,4,0,0,0,0,0,0,1,0,0,0,0,17552.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4809,9180,9179,3,5,37,112,33,10,0,8355,0,200,0,0,1,4,2,3,1.6,1148.14120324,1561,0,30196.0,1,3,8,2,2,1,0,1,0,1,0,0,0,0,0,1,18872.5,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 +4809,9180,9179,3,5,37,112,33,10,0,8355,0,200,0,0,1,4,2,3,1.6,1148.14120324,1561,0,30196.0,1,3,8,2,2,1,0,1,0,1,0,0,0,0,0,1,18872.5,5,3,5,5_0,15000.0,0,15000.0,0,4,9,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 4810,9181,9180,5,24,33,112,54,42,0,8356,0,800,0,0,2,2,0,2,1.5,2090.28406067,4213,0,28100.0,1,2,7,0,3,3,0,0,1,0,0,0,0,0,1,2,18733.3333333,5,3,5,5_1,15144.0,0,15144.0,0,1,23,138.0,50.0,3.3,0,1,1751.54927738191,1751.54927738191,0.0 4811,9189,9188,9,9,59,112,78,50,0,8367,0,0,0,0,0,5,0,2,1.5,2660.86738344,0,0,28363.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,1,1,18908.6666667,5,3,5,5_1,14000.0,0,7000.0,7000,7,8,0.0,0.0,0.0,0,0,1619.2346726985436,809.6173363492718,809.6173363492718 4812,9197,9196,3,13,59,112,74,44,0,8379,0,0,0,0,1,5,0,2,1.5,2950.48443585,6552,0,27949.0,5,2,7,0,3,2,0,0,1,0,0,0,0,0,0,2,18632.6666667,5,3,5,5_1,3500.0,0,3500.0,0,10,13,0.0,0.0,0.0,0,1,404.8086681746359,404.8086681746359,0.0 4813,9214,9213,21,26,70,300,78,70,0,8405,0,0,0,0,0,4,0,2,1.5,1659.68656886,4685,0,25753.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,17168.6666667,5,3,5,5_1,16666.0,0,16666.0,0,10,12,0.0,0.0,0.0,0,0,1927.5832182281374,1927.5832182281374,0.0 4814,9229,9228,0,0,47,111,56,71,0,8422,0,0,0,382,2,4,3,5,2.6,3013.71788901,0,0,48410.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,18619.2307692,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4815,9236,9235,10,12,48,112,68,71,0,8430,0,0,0,0,2,5,2,4,2.1,4494.14669969,1040,0,38440.0,1,3,9,0,4,2,0,0,1,0,0,0,0,0,0,2,18304.761904799998,5,3,5,5_1,23500.0,0,23500.0,0,8,12,324.8,36.6666666667,3.3,0,1,2718.0010577439834,2718.0010577439834,0.0 -4816,9257,9256,0,0,32,112,34,31,1,8458,0,250,50,0,2,4,1,3,1.8,5672.25428258,3121,24000,31670.0,1,1,8,3,4,2,0,1,0,1,0,0,0,0,1,1,17594.4444444,5,3,5,5_0,28500.0,0,25000.0,3500,7,8,0.0,4.0,3.3,0,1,2905.9853740327144,2549.10997722168,356.87539681103516 -4817,9262,9261,7,7,71,111,78,70,0,8467,0,0,0,0,0,3,0,2,1.5,3054.61670462,0,0,25904.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,17269.3333333,5,3,5,5_0,12481.0,0,12481.0,0,11,11,0.0,0.0,0.0,0,0,1272.6176650281514,1272.6176650281514,0.0 +4815,9236,9235,10,12,48,112,68,71,0,8430,0,0,0,0,2,5,2,4,2.1,4494.14669969,1040,0,38440.0,1,3,9,0,4,2,0,0,1,0,0,0,0,0,0,2,18304.7619048,5,3,5,5_1,23500.0,0,23500.0,0,8,12,324.8,36.6666666667,3.3,0,1,2718.0010577439834,2718.0010577439834,0.0 +4816,9257,9256,0,0,32,112,34,31,1,8458,0,250,50,0,2,4,1,3,1.8,5672.25428258,3121,24000,31670.0,1,1,8,3,4,2,0,1,0,1,0,0,0,0,1,1,17594.4444444,5,3,5,5_0,28500.0,0,25000.0,3500,7,8,0.0,4.0,3.3,0,1,2905.985374032714,2549.109977221679,356.87539681103505 +4817,9262,9261,7,7,71,111,78,70,0,8467,0,0,0,0,0,3,0,2,1.5,3054.61670462,0,0,25904.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,17269.3333333,5,3,5,5_0,12481.0,0,12481.0,0,11,11,0.0,0.0,0.0,0,0,1272.6176650281511,1272.6176650281511,0.0 4818,9266,9265,0,0,70,120,75,50,1,8471,0,0,0,0,0,4,0,2,1.5,4146.17077105,6821,25000,27480.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,18320.0,5,3,5,5_1,15000.0,0,15000.0,0,3,3,0.0,0.0,0.0,0,0,1734.8942921770108,1734.8942921770108,0.0 4819,9267,9266,0,0,76,111,86,71,0,8472,0,0,0,0,0,5,0,1,1.0,4200.51894428,0,0,18694.0,6,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,18694.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4820,9270,9269,2,2,51,112,62,50,0,8479,0,1000,0,0,2,6,2,3,2.0,1176.64846999,2194,0,35976.0,1,1,7,0,2,2,0,1,1,0,0,0,0,0,1,1,17988.0,5,3,5,5_1,14100.0,0,6100.0,8000,2,9,176.5,44.0,3.3,0,1,1630.80063464639,705.523678818651,925.2769558277391 -4821,9271,9270,4,7,62,111,78,50,0,848,0,0,300,0,2,5,1,3,2.0,1201.50979191,4381,0,34323.0,5,1,8,7,4,2,0,1,0,0,0,1,0,0,2,0,17161.5,5,3,5,5_0,10000.0,0,0.0,10000,6,7,0.0,40.0,3.31,0,1,1019.6439908886717,0.0,1019.6439908886717 +4821,9271,9270,4,7,62,111,78,50,0,848,0,0,300,0,2,5,1,3,2.0,1201.50979191,4381,0,34323.0,5,1,8,7,4,2,0,1,0,0,0,1,0,0,2,0,17161.5,5,3,5,5_0,10000.0,0,0.0,10000,6,7,0.0,40.0,3.31,0,1,1019.6439908886716,0.0,1019.6439908886716 4822,9282,9281,0,0,34,111,52,20,0,8492,0,0,0,32,1,1,0,1,1.0,3641.75935566,0,0,17386.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,17386.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,70.0,5.56,0,0,0.0,0.0,0.0 -4823,9296,9295,4,4,62,111,77,50,0,8512,0,0,0,0,0,4,0,2,1.5,1420.45691955,0,0,27671.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,0,2,18447.3333333,5,3,5,5_0,21000.0,0,21000.0,0,2,4,0.0,0.0,0.0,0,0,2141.252380866211,2141.252380866211,0.0 -4824,9321,9320,5,6,74,221,86,71,0,8546,0,150,0,0,1,4,1,2,1.5,2799.8104891999997,0,0,26447.0,5,1,1,2,2,1,0,1,0,1,0,0,0,0,0,1,17631.3333333,5,3,5,5_0,6959.0,0,6959.0,0,0,3,0.0,0.0,0.0,0,0,709.5702532594267,709.5702532594267,0.0 -4825,9325,9324,9,13,59,300,78,71,0,8552,0,0,0,0,0,3,0,1,1.0,2671.94473699,0,0,18504.0,5,1,0,1,1,1,0,0,0,1,0,0,0,0,1,0,18504.0,5,3,5,5_0,3000.0,0,0.0,3000,12,12,0.0,0.0,0.0,0,0,305.89319726660153,0.0,305.89319726660153 +4823,9296,9295,4,4,62,111,77,50,0,8512,0,0,0,0,0,4,0,2,1.5,1420.45691955,0,0,27671.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,0,2,18447.3333333,5,3,5,5_0,21000.0,0,21000.0,0,2,4,0.0,0.0,0.0,0,0,2141.2523808662104,2141.2523808662104,0.0 +4824,9321,9320,5,6,74,221,86,71,0,8546,0,150,0,0,1,4,1,2,1.5,2799.8104892,0,0,26447.0,5,1,1,2,2,1,0,1,0,1,0,0,0,0,0,1,17631.3333333,5,3,5,5_0,6959.0,0,6959.0,0,0,3,0.0,0.0,0.0,0,0,709.5702532594265,709.5702532594265,0.0 +4825,9325,9324,9,13,59,300,78,71,0,8552,0,0,0,0,0,3,0,1,1.0,2671.94473699,0,0,18504.0,5,1,0,1,1,1,0,0,0,1,0,0,0,0,1,0,18504.0,5,3,5,5_0,3000.0,0,0.0,3000,12,12,0.0,0.0,0.0,0,0,305.8931972666015,0.0,305.8931972666015 4826,9327,9326,1,1,46,112,52,71,2,8559,0,0,300,0,2,3,1,3,2.0,3641.94256331,0,8000,34562.0,1,2,5,0,4,3,0,1,1,0,0,0,0,0,2,1,17281.0,5,3,5,5_1,25769.0,0,16353.0,9416,5,5,268.5,83.3333333333,3.3,0,1,2980.432734340626,1891.3817573313772,1089.050977009249 -4827,9339,9338,2,6,39,111,63,43,0,8577,0,1330,0,0,2,4,2,4,2.3,2702.11858445,6612,0,43105.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,0,2,18741.3043478,5,3,5,5_0,15000.0,0,15000.0,0,3,6,25.0,3.5,3.3,0,1,1529.4659863330078,1529.4659863330078,0.0 +4827,9339,9338,2,6,39,111,63,43,0,8577,0,1330,0,0,2,4,2,4,2.3,2702.11858445,6612,0,43105.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,0,2,18741.3043478,5,3,5,5_0,15000.0,0,15000.0,0,3,6,25.0,3.5,3.3,0,1,1529.4659863330073,1529.4659863330073,0.0 4828,9340,9339,0,0,64,111,77,71,0,8578,0,0,0,417,0,3,0,2,1.5,5250.97743586,0,0,25940.0,5,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,17293.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4829,9343,9342,2,5,36,300,42,20,0,8581,0,300,0,0,1,6,3,4,1.9,1185.15104307,1593,0,32228.0,1,2,0,0,2,1,0,1,1,0,0,0,0,0,0,1,16962.1052632,5,3,5,5_1,40000.0,0,40000.0,0,2,3,149.0,6.666666666669999,3.3,0,1,4626.384779138696,4626.384779138696,0.0 +4829,9343,9342,2,5,36,300,42,20,0,8581,0,300,0,0,1,6,3,4,1.9,1185.15104307,1593,0,32228.0,1,2,0,0,2,1,0,1,1,0,0,0,0,0,0,1,16962.1052632,5,3,5,5_1,40000.0,0,40000.0,0,2,3,149.0,6.66666666667,3.3,0,1,4626.384779138696,4626.384779138696,0.0 4830,9361,9360,4,7,45,112,48,50,0,8608,0,300,0,0,3,5,2,4,2.5,2043.07163919,4160,0,47550.0,1,2,6,0,4,3,0,1,1,0,0,0,0,0,0,3,19020.0,5,3,5,5_1,30000.0,0,30000.0,0,12,12,409.8,55.0,3.31,0,1,3469.7885843540216,3469.7885843540216,0.0 -4831,9371,9370,3,10,75,211,72,50,0,8621,0,0,0,0,0,6,0,2,1.5,3172.44161497,0,0,25652.0,5,1,3,3,3,2,0,0,0,1,0,0,0,0,1,1,17101.3333333,5,3,5,5_0,40000.0,0,25000.0,15000,6,9,0.0,0.0,0.0,0,0,4078.575963554687,2549.10997722168,1529.4659863330078 +4831,9371,9370,3,10,75,211,72,50,0,8621,0,0,0,0,0,6,0,2,1.5,3172.44161497,0,0,25652.0,5,1,3,3,3,2,0,0,0,1,0,0,0,0,1,1,17101.3333333,5,3,5,5_0,40000.0,0,25000.0,15000,6,9,0.0,0.0,0.0,0,0,4078.5759635546865,2549.109977221679,1529.4659863330073 4832,9372,9371,1,6,54,400,64,50,2,8622,0,299997,0,0,2,4,0,2,1.5,2147.01890054,1560,6600,25916.0,1,1,0,0,3,3,1,1,1,0,0,0,0,0,0,3,17277.3333333,5,3,5,5_1,17102.0,0,17102.0,0,4,7,0.0,10.0,3.33,0,1,1978.010812320749,1978.010812320749,0.0 -4833,9389,9388,10,21,45,300,47,42,0,8644,0,368,0,0,2,8,2,4,2.3,1336.53298878,0,0,40837.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17755.217391299997,5,3,5,5_1,41000.0,0,41000.0,0,7,15,46.5,11.5,3.3,0,1,4742.044398617163,4742.044398617163,0.0 -4834,9406,9405,1,1,57,112,65,31,1,8670,1030,0,0,0,4,6,2,4,2.5,1784.6378485999999,3306,7000,44153.0,1,2,8,0,4,2,1,1,1,0,0,0,0,0,0,0,17661.2,5,3,5,5_1,4500.0,0,0.0,4500,8,11,35.0,29.0,3.3,0,1,520.4682876531032,0.0,520.4682876531032 +4833,9389,9388,10,21,45,300,47,42,0,8644,0,368,0,0,2,8,2,4,2.3,1336.53298878,0,0,40837.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,17755.2173913,5,3,5,5_1,41000.0,0,41000.0,0,7,15,46.5,11.5,3.3,0,1,4742.044398617163,4742.044398617163,0.0 +4834,9406,9405,1,1,57,112,65,31,1,8670,1030,0,0,0,4,6,2,4,2.5,1784.6378486,3306,7000,44153.0,1,2,8,0,4,2,1,1,1,0,0,0,0,0,0,0,17661.2,5,3,5,5_1,4500.0,0,0.0,4500,8,11,35.0,29.0,3.3,0,1,520.4682876531032,0.0,520.4682876531032 4835,9421,9420,0,0,80,111,72,50,0,869,0,0,0,0,0,7,0,1,1.0,2444.67103466,0,0,18300.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18300.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4836,9427,9426,2,10,47,111,46,41,0,8696,0,100299,0,0,2,4,2,3,2.0,1574.48480079,3640,0,37911.0,1,3,5,4,2,2,0,1,0,0,1,0,0,0,0,2,18955.5,5,3,5,5_0,18000.0,0,18000.0,0,4,10,239.5,48.0,3.3,0,1,1835.3591835996092,1835.3591835996092,0.0 -4837,9453,9452,0,8,54,111,62,50,2,8741,0,0,100,330,1,2,0,1,1.0,2858.96442284,780,4000,18124.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,1,0,18124.0,5,3,5,5_0,10000.0,0,0.0,10000,9,8,0.0,0.0,0.0,0,0,1019.6439908886717,0.0,1019.6439908886717 -4838,9454,9453,17,18,81,111,77,70,0,8742,0,0,0,0,0,4,0,2,1.5,1388.37815817,0,0,27430.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,18286.6666667,5,3,5,5_0,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 -4839,9467,9466,7,7,76,221,72,50,0,8766,0,0,0,0,0,3,0,2,1.5,5065.64213734,1040,0,26858.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,17905.3333333,5,3,5,5_0,5000.0,0,0.0,5000,7,8,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 -4840,9476,9475,0,2,51,111,42,60,2,8783,0,200,0,0,2,4,2,4,2.1,2755.032892,0,14000,38219.0,1,1,8,7,4,1,0,1,0,0,0,1,0,0,0,1,18199.5238095,5,3,5,5_0,12891.0,0,12891.0,0,1,5,22.0,7.5,3.33,0,1,1314.4230686545868,1314.4230686545868,0.0 +4836,9427,9426,2,10,47,111,46,41,0,8696,0,100299,0,0,2,4,2,3,2.0,1574.48480079,3640,0,37911.0,1,3,5,4,2,2,0,1,0,0,1,0,0,0,0,2,18955.5,5,3,5,5_0,18000.0,0,18000.0,0,4,10,239.5,48.0,3.3,0,1,1835.359183599609,1835.359183599609,0.0 +4837,9453,9452,0,8,54,111,62,50,2,8741,0,0,100,330,1,2,0,1,1.0,2858.96442284,780,4000,18124.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,1,0,18124.0,5,3,5,5_0,10000.0,0,0.0,10000,9,8,0.0,0.0,0.0,0,0,1019.6439908886716,0.0,1019.6439908886716 +4838,9454,9453,17,18,81,111,77,70,0,8742,0,0,0,0,0,4,0,2,1.5,1388.37815817,0,0,27430.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,18286.6666667,5,3,5,5_0,5000.0,0,0.0,5000,16,16,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 +4839,9467,9466,7,7,76,221,72,50,0,8766,0,0,0,0,0,3,0,2,1.5,5065.64213734,1040,0,26858.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,17905.3333333,5,3,5,5_0,5000.0,0,0.0,5000,7,8,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 +4840,9476,9475,0,2,51,111,42,60,2,8783,0,200,0,0,2,4,2,4,2.1,2755.032892,0,14000,38219.0,1,1,8,7,4,1,0,1,0,0,0,1,0,0,0,1,18199.5238095,5,3,5,5_0,12891.0,0,12891.0,0,1,5,22.0,7.5,3.33,0,1,1314.4230686545866,1314.4230686545866,0.0 4841,9485,9484,0,19,30,300,13,43,0,8796,0,100,0,0,2,5,0,2,1.5,3373.61002192,0,0,26508.0,1,2,0,0,3,2,1,1,1,0,0,0,0,0,1,1,17672.0,5,3,5,5_1,19000.0,0,15000.0,4000,2,18,226.0,36.6666666667,3.3,0,1,2197.53277009088,1734.8942921770108,462.63847791386956 -4842,9493,9492,10,10,79,111,78,50,0,8804,0,0,0,0,0,5,0,2,1.5,1562.96769515,0,0,26259.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,17506.0,5,3,5,5_0,480.0,0,0.0,480,10,10,0.0,0.0,0.0,0,0,48.94291156265624,0.0,48.94291156265624 -4843,9494,9493,4,10,63,111,77,41,0,8808,0,0,0,490,0,3,0,1,1.0,2504.81559515,0,0,17755.0,5,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17755.0,5,3,5,5_0,5000.0,0,0.0,5000,10,10,0.0,0.0,0.0,0,0,509.82199544433587,0.0,509.82199544433587 +4842,9493,9492,10,10,79,111,78,50,0,8804,0,0,0,0,0,5,0,2,1.5,1562.96769515,0,0,26259.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,17506.0,5,3,5,5_0,480.0,0,0.0,480,10,10,0.0,0.0,0.0,0,0,48.94291156265623,0.0,48.94291156265623 +4843,9494,9493,4,10,63,111,77,41,0,8808,0,0,0,490,0,3,0,1,1.0,2504.81559515,0,0,17755.0,5,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,17755.0,5,3,5,5_0,5000.0,0,0.0,5000,10,10,0.0,0.0,0.0,0,0,509.8219954443358,0.0,509.8219954443358 4844,9497,9496,0,0,64,111,78,70,0,8811,0,0,0,113,0,2,0,1,1.0,2271.64443734,0,0,18176.0,5,3,6,4,1,0,0,0,0,0,1,0,0,1,0,0,18176.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4845,9525,9524,5,5,28,221,56,44,0,8852,0,0,0,0,2,3,1,3,1.8,1866.68013858,3640,0,34260.0,1,2,1,2,4,2,1,0,0,1,0,0,0,0,1,1,19033.3333333,5,3,5,5_0,25436.0,0,16337.0,9099,6,7,0.0,20.0,1.1,0,0,2593.566455224425,1665.792387914823,927.7740673096024 -4846,9527,9526,29,29,59,112,75,50,0,8856,0,0,0,0,0,5,0,2,1.5,1097.96271726,2405,0,27910.0,5,1,8,2,3,1,0,0,0,1,0,0,0,0,0,1,18606.6666667,5,3,5,5_0,28891.0,0,28891.0,0,1,17,0.0,0.0,0.0,0,0,2945.8534540764617,2945.8534540764617,0.0 -4847,9542,9541,4,9,65,111,75,70,0,8873,0,0,0,0,0,4,0,1,1.0,2806.4424726999996,2600,0,17627.0,5,4,9,7,1,1,0,0,0,0,0,1,0,0,0,1,17627.0,5,3,5,5_0,6859.0,0,6859.0,0,1,7,0.0,0.0,0.0,0,0,699.37381335054,699.37381335054,0.0 +4845,9525,9524,5,5,28,221,56,44,0,8852,0,0,0,0,2,3,1,3,1.8,1866.68013858,3640,0,34260.0,1,2,1,2,4,2,1,0,0,1,0,0,0,0,1,1,19033.3333333,5,3,5,5_0,25436.0,0,16337.0,9099,6,7,0.0,20.0,1.1,0,0,2593.566455224425,1665.7923879148227,927.7740673096023 +4846,9527,9526,29,29,59,112,75,50,0,8856,0,0,0,0,0,5,0,2,1.5,1097.96271726,2405,0,27910.0,5,1,8,2,3,1,0,0,0,1,0,0,0,0,0,1,18606.6666667,5,3,5,5_0,28891.0,0,28891.0,0,1,17,0.0,0.0,0.0,0,0,2945.8534540764613,2945.8534540764613,0.0 +4847,9542,9541,4,9,65,111,75,70,0,8873,0,0,0,0,0,4,0,1,1.0,2806.4424727,2600,0,17627.0,5,4,9,7,1,1,0,0,0,0,0,1,0,0,0,1,17627.0,5,3,5,5_0,6859.0,0,6859.0,0,1,7,0.0,0.0,0.0,0,0,699.3738133505399,699.3738133505399,0.0 4848,9558,9557,5,5,78,112,78,71,0,8894,0,0,0,0,0,5,0,2,1.5,4830.36714742,0,0,26768.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,17845.3333333,5,3,5,5_1,12000.0,0,12000.0,0,3,4,0.0,0.0,0.0,0,0,1387.9154337416087,1387.9154337416087,0.0 -4849,9574,9573,9,16,52,111,63,60,0,8916,0,0,100,0,2,6,2,4,2.3,2693.0399205,1576,0,41740.0,1,1,6,4,4,2,0,0,0,0,1,0,0,0,2,0,18147.826087,5,3,5,5_0,10704.0,0,0.0,10704,2,18,0.0,55.6666666667,5.56,0,1,1091.4269278472343,0.0,1091.4269278472343 +4849,9574,9573,9,16,52,111,63,60,0,8916,0,0,100,0,2,6,2,4,2.3,2693.0399205,1576,0,41740.0,1,1,6,4,4,2,0,0,0,0,1,0,0,0,2,0,18147.826087,5,3,5,5_0,10704.0,0,0.0,10704,2,18,0.0,55.6666666667,5.56,0,1,1091.426927847234,0.0,1091.426927847234 4850,9575,9574,0,12,66,212,75,10,2,8919,0,0,0,0,0,4,0,2,1.5,837.783168173,465,1800,26963.0,5,1,2,0,3,2,0,0,1,0,0,0,0,0,1,1,17975.3333333,5,3,5,5_1,10500.0,0,10000.0,500,14,14,0.0,0.0,0.0,0,0,1214.4260045239075,1156.596194784674,57.829809739233696 -4851,9582,9581,31,31,82,111,72,71,0,8927,0,0,0,0,0,4,0,2,1.5,4710.28427302,0,0,27290.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,18193.3333333,5,3,5,5_0,4000.0,0,0.0,4000,21,22,3.8,120.0,1.1,0,1,407.85759635546873,0.0,407.85759635546873 -4852,9602,9601,2,2,69,111,77,50,0,8956,0,0,0,0,0,4,0,1,1.0,2203.4491673,0,0,18476.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18476.0,5,3,5,5_0,5710.0,0,0.0,5710,1,3,0.0,0.0,0.0,0,0,582.2167187974317,0.0,582.2167187974317 -4853,9606,9605,6,6,75,111,78,70,0,8964,0,0,0,0,0,3,0,2,1.5,1771.46960558,0,0,25877.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,17251.3333333,5,3,5,5_0,4500.0,0,0.0,4500,7,7,0.0,0.0,0.0,0,0,458.8397958999023,0.0,458.8397958999023 -4854,9617,9616,1,11,42,112,52,71,0,8981,0,0,0,0,2,6,3,5,2.6,1585.72889397,1612,0,45230.0,1,1,7,1,4,1,0,0,0,1,0,0,0,0,0,1,17396.153846200003,5,3,5,5_0,15000.0,0,15000.0,0,4,5,0.0,31.3333333333,0.0,1,0,1529.4659863330078,1529.4659863330078,0.0 +4851,9582,9581,31,31,82,111,72,71,0,8927,0,0,0,0,0,4,0,2,1.5,4710.28427302,0,0,27290.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,18193.3333333,5,3,5,5_0,4000.0,0,0.0,4000,21,22,3.8,120.0,1.1,0,1,407.8575963554687,0.0,407.8575963554687 +4852,9602,9601,2,2,69,111,77,50,0,8956,0,0,0,0,0,4,0,1,1.0,2203.4491673,0,0,18476.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18476.0,5,3,5,5_0,5710.0,0,0.0,5710,1,3,0.0,0.0,0.0,0,0,582.2167187974314,0.0,582.2167187974314 +4853,9606,9605,6,6,75,111,78,70,0,8964,0,0,0,0,0,3,0,2,1.5,1771.46960558,0,0,25877.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,17251.3333333,5,3,5,5_0,4500.0,0,0.0,4500,7,7,0.0,0.0,0.0,0,0,458.83979589990224,0.0,458.83979589990224 +4854,9617,9616,1,11,42,112,52,71,0,8981,0,0,0,0,2,6,3,5,2.6,1585.72889397,1612,0,45230.0,1,1,7,1,4,1,0,0,0,1,0,0,0,0,0,1,17396.1538462,5,3,5,5_0,15000.0,0,15000.0,0,4,5,0.0,31.3333333333,0.0,1,0,1529.4659863330073,1529.4659863330073,0.0 4855,9629,9628,1,1,52,111,64,50,1,8997,0,0,0,0,1,4,0,1,1.0,1962.30169092,0,22850,18283.0,1,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,18283.0,5,3,5,5_0,0.0,0,0.0,0,1,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4856,9657,9656,4,4,59,112,38,50,0,9027,0,0,0,0,1,6,0,2,1.5,5006.3635351,0,0,28024.0,4,1,9,3,3,1,0,0,0,1,0,0,0,0,1,0,18682.6666667,5,3,5,5_0,9000.0,0,0.0,9000,5,5,0.0,0.0,0.0,0,0,917.6795917998046,0.0,917.6795917998046 +4856,9657,9656,4,4,59,112,38,50,0,9027,0,0,0,0,1,6,0,2,1.5,5006.3635351,0,0,28024.0,4,1,9,3,3,1,0,0,0,1,0,0,0,0,1,0,18682.6666667,5,3,5,5_0,9000.0,0,0.0,9000,5,5,0.0,0.0,0.0,0,0,917.6795917998045,0.0,917.6795917998045 4857,9667,9666,4,7,56,300,64,50,0,9049,0,0,0,0,1,6,0,2,1.5,1003.21942604,2080,0,25931.0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,17287.3333333,5,3,5,5_1,29000.0,0,29000.0,0,5,8,0.0,0.0,0.0,1,1,3354.128964875554,3354.128964875554,0.0 4858,9673,9672,0,0,23,111,47,43,0,9057,0,0,0,200,1,2,0,1,1.0,3712.83386662,0,0,18730.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18730.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,4.0,1.1,0,0,0.0,0.0,0.0 4859,9674,9673,2,2,66,112,78,71,0,9058,0,0,0,0,0,5,1,3,2.0,2788.36669619,1040,0,37087.0,5,1,9,0,4,3,0,0,1,0,0,0,0,0,1,2,18543.5,5,3,5,5_1,4436.0,0,4436.0,0,2,2,0.0,0.0,0.0,0,1,513.0660720064814,513.0660720064814,0.0 -4860,9679,9678,7,7,72,111,77,71,0,9063,0,0,0,0,0,4,0,1,1.0,2587.33411163,0,0,18245.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,0,1,18245.0,5,3,5,5_0,15000.0,0,15000.0,0,5,7,0.0,0.0,0.0,0,0,1529.4659863330078,1529.4659863330078,0.0 +4860,9679,9678,7,7,72,111,77,71,0,9063,0,0,0,0,0,4,0,1,1.0,2587.33411163,0,0,18245.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,0,1,18245.0,5,3,5,5_0,15000.0,0,15000.0,0,5,7,0.0,0.0,0.0,0,0,1529.4659863330073,1529.4659863330073,0.0 4861,9717,9716,9,13,85,300,75,50,0,9108,0,0,0,0,0,5,0,2,1.5,2210.69570252,0,0,27993.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,18662.0,5,3,5,5_1,2500.0,0,0.0,2500,13,13,0.0,0.0,0.0,0,0,289.1490486961685,0.0,289.1490486961685 4862,9750,9749,5,7,77,112,78,70,0,9157,0,0,0,0,0,2,0,1,1.0,3079.9954398,1631,0,17419.0,5,1,10,0,1,1,0,0,1,0,0,0,0,0,1,0,17419.0,5,3,5,5_1,8000.0,0,0.0,8000,7,7,0.0,0.0,0.0,0,0,925.2769558277391,0.0,925.2769558277391 4863,9756,9755,14,20,60,112,13,71,0,9163,0,0,0,0,1,4,0,1,1.0,2707.44323764,1821,0,18790.0,1,4,9,0,1,1,1,0,1,0,0,0,0,0,1,0,18790.0,5,3,5,5_1,7000.0,0,0.0,7000,19,19,55.6,80.0,3.3,0,1,809.6173363492718,0.0,809.6173363492718 4864,9761,9760,10,10,64,120,77,71,0,9168,0,0,0,0,0,4,0,2,1.5,3374.84454564,2707,0,26949.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,17966.0,5,3,5,5_1,4000.0,0,4000.0,0,5,10,0.0,0.0,0.0,0,0,462.63847791386956,462.63847791386956,0.0 -4865,9780,9779,3,4,71,111,78,50,0,9197,0,0,0,0,0,5,0,2,1.5,1334.00798498,0,0,28667.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,19111.3333333,5,3,5,5_0,8500.0,0,0.0,8500,3,3,0.0,0.0,0.0,0,0,866.697392255371,0.0,866.697392255371 +4865,9780,9779,3,4,71,111,78,50,0,9197,0,0,0,0,0,5,0,2,1.5,1334.00798498,0,0,28667.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,19111.3333333,5,3,5,5_0,8500.0,0,0.0,8500,3,3,0.0,0.0,0.0,0,0,866.6973922553709,0.0,866.6973922553709 4866,9781,9780,4,16,45,300,63,50,0,9198,0,360,0,0,2,8,2,4,2.3,2186.86005165,5772,0,41676.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,18120.0,5,3,5,5_1,41000.0,0,41000.0,0,7,15,46.5,11.5,3.3,0,1,4742.044398617163,4742.044398617163,0.0 -4867,9787,9786,1,6,26,112,63,50,0,9205,0,200,40,0,2,3,1,3,1.8,1938.01857771,421,0,32861.0,1,3,7,1,4,2,0,1,0,1,0,0,0,1,1,1,18256.111111099995,5,3,5,5_0,50000.0,0,30000.0,20000,4,5,0.0,0.0,0.0,0,1,5098.21995444336,3058.9319726660156,2039.2879817773435 -4868,9791,9790,1,12,28,111,67,42,0,921,0,0,500,0,2,3,0,2,1.5,2197.74270382,2602,0,26441.0,1,3,9,7,3,2,0,1,0,0,0,1,0,1,2,0,17627.3333333,5,3,5,5_0,25000.0,0,20000.0,5000,4,13,0.0,0.0,0.0,0,1,2549.10997722168,2039.2879817773435,509.82199544433587 -4869,9800,9799,6,6,61,111,72,50,0,9224,0,0,0,0,0,4,0,2,1.5,3675.75153153,3188,0,26557.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17704.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330078,0.0,1529.4659863330078 -4870,9819,9818,1,10,48,111,42,50,2,9260,0,0,99999,0,3,4,1,3,2.0,951.134582246,0,3800,37653.0,1,2,7,5,4,3,0,1,0,0,1,0,0,0,2,1,18826.5,5,3,5,5_0,30000.0,0,20000.0,10000,8,9,87.2,23.5,3.3,0,1,3058.9319726660156,2039.2879817773435,1019.6439908886717 +4867,9787,9786,1,6,26,112,63,50,0,9205,0,200,40,0,2,3,1,3,1.8,1938.01857771,421,0,32861.0,1,3,7,1,4,2,0,1,0,1,0,0,0,1,1,1,18256.1111111,5,3,5,5_0,50000.0,0,30000.0,20000,4,5,0.0,0.0,0.0,0,1,5098.219954443358,3058.9319726660146,2039.2879817773432 +4868,9791,9790,1,12,28,111,67,42,0,921,0,0,500,0,2,3,0,2,1.5,2197.74270382,2602,0,26441.0,1,3,9,7,3,2,0,1,0,0,0,1,0,1,2,0,17627.3333333,5,3,5,5_0,25000.0,0,20000.0,5000,4,13,0.0,0.0,0.0,0,1,2549.109977221679,2039.2879817773432,509.8219954443358 +4869,9800,9799,6,6,61,111,72,50,0,9224,0,0,0,0,0,4,0,2,1.5,3675.75153153,3188,0,26557.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,17704.6666667,5,3,5,5_0,15000.0,0,0.0,15000,4,6,0.0,0.0,0.0,0,0,1529.4659863330073,0.0,1529.4659863330073 +4870,9819,9818,1,10,48,111,42,50,2,9260,0,0,99999,0,3,4,1,3,2.0,951.134582246,0,3800,37653.0,1,2,7,5,4,3,0,1,0,0,1,0,0,0,2,1,18826.5,5,3,5,5_0,30000.0,0,20000.0,10000,8,9,87.2,23.5,3.3,0,1,3058.9319726660146,2039.2879817773432,1019.6439908886716 4871,9821,9820,4,6,49,112,62,50,0,9263,0,170,0,0,2,3,2,4,2.5,1051.40711523,4472,0,45128.0,1,1,7,0,4,2,0,1,1,0,0,0,0,0,0,2,18051.2,5,3,5,5_1,62891.0,0,62891.0,0,1,6,74.5,27.5,3.3,0,1,7273.949128620292,7273.949128620292,0.0 -4872,9841,9840,6,15,53,111,56,50,0,9288,0,0,0,344,1,5,0,1,1.0,1781.83704484,2132,0,18741.0,1,3,7,5,1,1,1,0,0,0,1,0,0,0,1,0,18741.0,5,3,5,5_0,1500.0,0,0.0,1500,13,16,0.0,0.0,0.0,0,1,152.94659863330077,0.0,152.94659863330077 +4872,9841,9840,6,15,53,111,56,50,0,9288,0,0,0,344,1,5,0,1,1.0,1781.83704484,2132,0,18741.0,1,3,7,5,1,1,1,0,0,0,1,0,0,0,1,0,18741.0,5,3,5,5_0,1500.0,0,0.0,1500,13,16,0.0,0.0,0.0,0,1,152.94659863330074,0.0,152.94659863330074 4873,9849,9848,6,10,38,112,55,30,0,9305,0,330,0,0,2,5,2,4,2.1,2874.62213446,3848,0,39342.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,18734.2857143,5,3,5,5_1,15000.0,0,15000.0,0,3,8,149.0,19.0,3.3,0,1,1734.8942921770108,1734.8942921770108,0.0 -4874,9870,9869,2,2,47,111,69,71,0,9335,0,150,0,0,2,7,2,3,2.0,1448.47602802,0,0,37312.0,1,2,9,7,2,1,0,1,0,0,0,1,0,1,0,1,18656.0,5,3,5,5_0,17000.0,0,17000.0,0,2,3,134.5,61.6666666667,3.3,0,1,1733.394784510742,1733.394784510742,0.0 +4874,9870,9869,2,2,47,111,69,71,0,9335,0,150,0,0,2,7,2,3,2.0,1448.47602802,0,0,37312.0,1,2,9,7,2,1,0,1,0,0,0,1,0,1,0,1,18656.0,5,3,5,5_0,17000.0,0,17000.0,0,2,3,134.5,61.6666666667,3.3,0,1,1733.3947845107418,1733.3947845107418,0.0 4875,9879,9878,0,0,75,300,77,70,0,9349,0,0,0,0,0,4,0,1,1.0,2532.69939984,0,0,17380.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,17380.0,5,3,5,5_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4876,9894,9893,7,17,35,112,63,42,0,937,0,200,200,0,2,5,3,5,2.4,2267.17186505,2608,0,41863.0,1,2,9,0,4,2,0,1,1,0,0,0,0,1,1,1,17442.9166667,5,3,5,5_1,23506.0,0,20000.0,3506,2,17,190.0,36.6666666667,3.31,0,1,2718.6950154608544,2313.192389569348,405.5026258915067 -4877,9907,9906,7,8,74,111,77,70,0,9383,0,0,0,0,0,5,0,2,1.5,2240.57103841,4085,0,27933.0,5,1,4,3,3,1,0,0,0,1,0,0,0,0,1,0,18622.0,5,3,5,5_0,9416.0,0,0.0,9416,9,9,0.0,0.0,0.0,0,0,960.0967818207733,0.0,960.0967818207733 -4878,9909,9908,1,12,39,221,11,50,2,9385,0,0,0,0,2,7,2,4,2.1,2913.48577728,0,700,37106.0,1,2,1,1,4,1,0,0,0,1,0,0,0,0,1,0,17669.5238095,5,3,5,5_0,16000.0,0,0.0,16000,4,14,58.0,38.0,0.0,0,1,1631.430385421875,0.0,1631.430385421875 -4879,9911,9910,11,16,85,112,78,70,0,9388,0,0,0,0,0,6,0,1,1.0,1457.24278946,0,0,18577.0,5,1,6,2,1,2,0,0,0,1,0,0,0,0,1,1,18577.0,5,3,5,5_0,1000.0,0,1000.0,0,12,13,0.0,0.0,0.0,0,0,101.96439908886718,101.96439908886718,0.0 -4880,9914,9913,0,21,45,112,68,71,0,9390,0,550,0,0,2,6,2,4,2.1,1881.80623156,5694,0,36007.0,1,2,8,1,4,2,0,1,0,1,0,0,0,0,0,2,17146.190476199998,5,3,5,5_0,10000.0,0,10000.0,0,21,21,41.0,13.75,3.3,0,1,1019.6439908886717,1019.6439908886717,0.0 +4877,9907,9906,7,8,74,111,77,70,0,9383,0,0,0,0,0,5,0,2,1.5,2240.57103841,4085,0,27933.0,5,1,4,3,3,1,0,0,0,1,0,0,0,0,1,0,18622.0,5,3,5,5_0,9416.0,0,0.0,9416,9,9,0.0,0.0,0.0,0,0,960.0967818207731,0.0,960.0967818207731 +4878,9909,9908,1,12,39,221,11,50,2,9385,0,0,0,0,2,7,2,4,2.1,2913.48577728,0,700,37106.0,1,2,1,1,4,1,0,0,0,1,0,0,0,0,1,0,17669.5238095,5,3,5,5_0,16000.0,0,0.0,16000,4,14,58.0,38.0,0.0,0,1,1631.4303854218747,0.0,1631.4303854218747 +4879,9911,9910,11,16,85,112,78,70,0,9388,0,0,0,0,0,6,0,1,1.0,1457.24278946,0,0,18577.0,5,1,6,2,1,2,0,0,0,1,0,0,0,0,1,1,18577.0,5,3,5,5_0,1000.0,0,1000.0,0,12,13,0.0,0.0,0.0,0,0,101.96439908886717,101.96439908886717,0.0 +4880,9914,9913,0,21,45,112,68,71,0,9390,0,550,0,0,2,6,2,4,2.1,1881.80623156,5694,0,36007.0,1,2,8,1,4,2,0,1,0,1,0,0,0,0,0,2,17146.1904762,5,3,5,5_0,10000.0,0,10000.0,0,21,21,41.0,13.75,3.3,0,1,1019.6439908886716,1019.6439908886716,0.0 4881,9916,9915,14,14,74,400,74,10,0,9392,0,0,0,0,0,3,0,2,1.5,1591.94233146,0,0,28489.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,18992.6666667,5,3,5,5_1,1000.0,0,0.0,1000,13,13,0.0,0.0,0.0,0,0,115.65961947846739,0.0,115.65961947846739 -4882,9925,9924,1,5,58,111,78,50,2,9408,0,0,0,0,1,5,0,2,1.5,1909.85332915,7074,14000,25492.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,0,2,16994.6666667,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.1769144496454,1561.1769144496454,0.0 -4883,9947,9946,17,18,55,112,67,71,0,9444,0,120,370,0,2,3,0,2,1.5,1609.3427356,0,0,26095.0,1,1,8,1,3,2,0,1,0,1,0,0,0,0,1,1,17396.6666667,5,3,5,5_0,31517.0,0,20000.0,11517,3,15,0.0,0.0,0.0,1,0,3213.611966083827,2039.2879817773435,1174.3239843064832 -4884,9961,9960,5,16,32,111,54,71,0,9469,0,0,250,294,1,1,0,1,1.0,3228.61196578,1560,0,17368.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,17368.0,5,3,5,5_0,3000.0,0,0.0,3000,14,14,37.2,30.0,1.1,1,0,305.89319726660153,0.0,305.89319726660153 +4882,9925,9924,1,5,58,111,78,50,2,9408,0,0,0,0,1,5,0,2,1.5,1909.85332915,7074,14000,25492.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,0,2,16994.6666667,5,3,5,5_0,15311.0,0,15311.0,0,13,7,321.5,120.0,3.3,0,1,1561.176914449645,1561.176914449645,0.0 +4883,9947,9946,17,18,55,112,67,71,0,9444,0,120,370,0,2,3,0,2,1.5,1609.3427356,0,0,26095.0,1,1,8,1,3,2,0,1,0,1,0,0,0,0,1,1,17396.6666667,5,3,5,5_0,31517.0,0,20000.0,11517,3,15,0.0,0.0,0.0,1,0,3213.6119660838262,2039.2879817773432,1174.323984306483 +4884,9961,9960,5,16,32,111,54,71,0,9469,0,0,250,294,1,1,0,1,1.0,3228.61196578,1560,0,17368.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,17368.0,5,3,5,5_0,3000.0,0,0.0,3000,14,14,37.2,30.0,1.1,1,0,305.8931972666015,0.0,305.8931972666015 4885,9967,9966,12,12,43,300,13,31,0,9478,0,250,0,0,2,8,2,4,2.1,1439.43575751,0,0,38702.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,0,3,18429.5238095,5,3,5,5_1,37000.0,0,37000.0,0,8,8,597.0,80.0,3.31,0,1,4279.405920703293,4279.405920703293,0.0 -4886,9970,9969,1,16,40,112,69,50,0,9481,0,0,0,0,2,3,2,4,2.3,2770.78335513,0,0,39870.0,1,3,9,1,4,1,0,0,0,1,0,0,0,0,1,0,17334.782608700003,5,3,5,5_0,16000.0,0,0.0,16000,4,14,58.0,38.0,0.0,0,1,1631.430385421875,0.0,1631.430385421875 -4887,9977,9976,0,11,39,111,52,41,0,9489,0,0,0,0,1,2,0,1,1.0,2230.16554396,0,0,17557.0,4,3,7,6,1,1,0,0,0,0,1,0,0,1,1,0,17557.0,5,3,5,5_0,8000.0,0,0.0,8000,10,10,44.5,60.0,3.3,0,1,815.7151927109375,0.0,815.7151927109375 -4888,9985,9984,1,1,30,111,63,42,1,950,0,60,0,657,2,3,1,3,1.8,2344.69851248,2839,16500,33725.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,18736.111111099995,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886717,1019.6439908886717,0.0 +4886,9970,9969,1,16,40,112,69,50,0,9481,0,0,0,0,2,3,2,4,2.3,2770.78335513,0,0,39870.0,1,3,9,1,4,1,0,0,0,1,0,0,0,0,1,0,17334.7826087,5,3,5,5_0,16000.0,0,0.0,16000,4,14,58.0,38.0,0.0,0,1,1631.4303854218747,0.0,1631.4303854218747 +4887,9977,9976,0,11,39,111,52,41,0,9489,0,0,0,0,1,2,0,1,1.0,2230.16554396,0,0,17557.0,4,3,7,6,1,1,0,0,0,0,1,0,0,1,1,0,17557.0,5,3,5,5_0,8000.0,0,0.0,8000,10,10,44.5,60.0,3.3,0,1,815.7151927109373,0.0,815.7151927109373 +4888,9985,9984,1,1,30,111,63,42,1,950,0,60,0,657,2,3,1,3,1.8,2344.69851248,2839,16500,33725.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,18736.1111111,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886716,1019.6439908886716,0.0 4889,9989,9988,2,2,63,212,71,44,0,9504,0,0,0,0,0,7,0,1,1.0,1453.24205337,3919,0,18664.0,5,1,2,0,1,1,0,0,1,0,0,0,0,0,0,1,18664.0,5,3,5,5_1,5500.0,0,5500.0,0,3,3,0.0,0.0,0.0,0,0,636.1279071315706,636.1279071315706,0.0 -4890,9996,9995,0,7,46,112,62,50,2,9510,0,199998,0,0,2,4,2,4,2.3,4391.24201085,3120,8000,41735.0,1,3,9,2,4,2,0,1,0,1,0,0,0,0,0,2,18145.6521739,5,3,5,5_0,25000.0,0,25000.0,0,2,6,0.0,0.0,0.0,0,1,2549.10997722168,2549.10997722168,0.0 -4891,10008,10007,0,0,51,120,46,41,1,9528,0,0,600,0,2,5,1,3,1.8,2971.35858922,2184,11500,32536.0,1,1,0,2,4,2,0,1,0,1,0,0,0,0,2,0,18075.5555556,5,3,5,5_0,18000.0,0,0.0,18000,2,5,159.6,40.0,3.3,0,1,1835.3591835996092,0.0,1835.3591835996092 +4890,9996,9995,0,7,46,112,62,50,2,9510,0,199998,0,0,2,4,2,4,2.3,4391.24201085,3120,8000,41735.0,1,3,9,2,4,2,0,1,0,1,0,0,0,0,0,2,18145.6521739,5,3,5,5_0,25000.0,0,25000.0,0,2,6,0.0,0.0,0.0,0,1,2549.109977221679,2549.109977221679,0.0 +4891,10008,10007,0,0,51,120,46,41,1,9528,0,0,600,0,2,5,1,3,1.8,2971.35858922,2184,11500,32536.0,1,1,0,2,4,2,0,1,0,1,0,0,0,0,2,0,18075.5555556,5,3,5,5_0,18000.0,0,0.0,18000,2,5,159.6,40.0,3.3,0,1,1835.359183599609,0.0,1835.359183599609 4892,10010,10009,5,8,40,112,45,60,0,953,0,500,0,0,1,5,4,6,2.7,2505.92758162,3536,0,45743.0,1,2,7,0,4,3,0,0,1,0,0,0,0,0,0,3,16941.8518519,5,3,5,5_1,17343.0,0,17343.0,0,1,12,0.0,2.4,1.1,0,1,2005.88478061506,2005.88478061506,0.0 -4893,10026,10025,1,4,52,221,47,50,2,9557,0,0,0,239,1,3,0,2,1.5,5037.9057729999995,1567,8500,28405.0,1,3,1,2,3,1,0,0,0,1,0,0,0,0,0,1,18936.6666667,5,3,5,5_0,10000.0,0,10000.0,0,2,8,38.0,32.0,3.3,0,1,1019.6439908886717,1019.6439908886717,0.0 -4894,10035,10034,1,1,49,112,48,50,2,9569,0,256,0,0,2,5,2,4,2.3,1695.84304241,1560,18000,40139.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,17451.7391304,5,3,5,5_0,6919.0,0,6919.0,0,1,2,25.2,18.5,3.3,0,1,705.491677295872,705.491677295872,0.0 +4893,10026,10025,1,4,52,221,47,50,2,9557,0,0,0,239,1,3,0,2,1.5,5037.905773,1567,8500,28405.0,1,3,1,2,3,1,0,0,0,1,0,0,0,0,0,1,18936.6666667,5,3,5,5_0,10000.0,0,10000.0,0,2,8,38.0,32.0,3.3,0,1,1019.6439908886716,1019.6439908886716,0.0 +4894,10035,10034,1,1,49,112,48,50,2,9569,0,256,0,0,2,5,2,4,2.3,1695.84304241,1560,18000,40139.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,17451.7391304,5,3,5,5_0,6919.0,0,6919.0,0,1,2,25.2,18.5,3.3,0,1,705.4916772958719,705.4916772958719,0.0 4895,10037,10036,12,12,78,111,72,50,0,9570,0,0,0,0,0,4,0,1,1.0,2750.39776938,0,0,19045.0,5,4,10,8,1,1,0,0,0,0,0,0,1,0,1,0,19045.0,5,3,5,5_0,20333.0,0,0.0,20333,6,14,0.0,0.0,0.0,0,0,2073.242126673936,0.0,2073.242126673936 -4896,10039,10038,1,5,42,111,65,41,0,9573,0,0,50,356,2,3,2,4,2.1,3372.72786749,1560,0,35838.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,17065.7142857,5,3,5,5_0,3200.0,0,0.0,3200,6,7,14.0,11.5,3.3,0,1,326.286077084375,0.0,326.286077084375 -4897,10041,10040,12,12,88,111,77,60,0,9575,0,0,0,311,0,3,0,1,1.0,2710.64939664,0,0,18374.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18374.0,5,3,5,5_0,2600.0,0,0.0,2600,10,11,0.0,0.0,0.0,0,0,265.10743763105467,0.0,265.10743763105467 +4896,10039,10038,1,5,42,111,65,41,0,9573,0,0,50,356,2,3,2,4,2.1,3372.72786749,1560,0,35838.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,17065.7142857,5,3,5,5_0,3200.0,0,0.0,3200,6,7,14.0,11.5,3.3,0,1,326.2860770843749,0.0,326.2860770843749 +4897,10041,10040,12,12,88,111,77,60,0,9575,0,0,0,311,0,3,0,1,1.0,2710.64939664,0,0,18374.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,18374.0,5,3,5,5_0,2600.0,0,0.0,2600,10,11,0.0,0.0,0.0,0,0,265.1074376310546,0.0,265.1074376310546 4898,10048,10047,0,0,45,111,63,50,0,9582,0,0,0,681,1,2,0,1,1.0,2599.99788806,0,0,17480.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,17480.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 4899,10064,10063,2,7,26,300,52,42,0,961,0,400,0,0,2,2,1,3,1.8,2294.47794406,6074,0,32682.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,1,1,18156.6666667,5,3,5,5_1,20000.0,0,10000.0,10000,5,7,139.5,36.6666666667,3.3,0,1,2313.192389569348,1156.596194784674,1156.596194784674 4900,10067,10066,0,0,58,111,56,71,0,9612,0,0,0,0,1,1,0,1,1.0,8512.85345848,0,0,17606.0,1,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,17606.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4901,10082,10081,0,0,22,112,68,50,0,9630,0,0,0,0,1,1,0,1,1.0,2410.32033338,0,0,18738.0,2,3,6,1,1,0,0,0,0,1,0,0,0,1,0,0,18738.0,5,3,5,5_0,0.0,0,0.0,0,0,0,55.0,80.0,5.5,0,0,0.0,0.0,0.0 -4902,10101,10100,6,11,43,111,69,60,0,9654,0,0,0,0,2,4,1,3,1.8,2950.90885688,0,0,33660.0,1,1,5,4,4,2,1,1,0,0,1,0,0,0,0,2,18700.0,5,3,5,5_0,18000.0,0,18000.0,0,4,10,239.5,48.0,3.3,0,1,1835.3591835996092,1835.3591835996092,0.0 -4903,10103,10102,10,12,59,211,62,60,0,9657,0,0,0,299,1,4,0,2,1.5,4980.32044783,0,0,25991.0,1,3,2,3,3,2,1,0,0,1,0,0,0,0,2,0,17327.3333333,5,3,5,5_0,7000.0,0,0.0,7000,4,15,0.0,0.0,0.0,0,1,713.7507936220703,0.0,713.7507936220703 -4904,10111,10110,4,4,70,112,78,71,0,9668,0,0,0,0,0,5,0,2,1.5,2292.4474308000003,1997,0,26392.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,17594.6666667,5,3,5,5_1,13500.0,0,12000.0,1500,5,5,0.0,0.0,0.0,0,0,1561.4048629593099,1387.9154337416087,173.4894292177011 -4905,10112,10111,4,13,29,111,45,43,0,9669,0,0,0,338,1,2,0,1,1.0,2667.69352341,0,0,18260.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,1,0,18260.0,5,3,5,5_0,1825.0,0,0.0,1825,8,13,40.0,14.0,3.3,0,1,186.0850283371826,0.0,186.0850283371826 +4902,10101,10100,6,11,43,111,69,60,0,9654,0,0,0,0,2,4,1,3,1.8,2950.90885688,0,0,33660.0,1,1,5,4,4,2,1,1,0,0,1,0,0,0,0,2,18700.0,5,3,5,5_0,18000.0,0,18000.0,0,4,10,239.5,48.0,3.3,0,1,1835.359183599609,1835.359183599609,0.0 +4903,10103,10102,10,12,59,211,62,60,0,9657,0,0,0,299,1,4,0,2,1.5,4980.32044783,0,0,25991.0,1,3,2,3,3,2,1,0,0,1,0,0,0,0,2,0,17327.3333333,5,3,5,5_0,7000.0,0,0.0,7000,4,15,0.0,0.0,0.0,0,1,713.7507936220701,0.0,713.7507936220701 +4904,10111,10110,4,4,70,112,78,71,0,9668,0,0,0,0,0,5,0,2,1.5,2292.4474308,1997,0,26392.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,17594.6666667,5,3,5,5_1,13500.0,0,12000.0,1500,5,5,0.0,0.0,0.0,0,0,1561.4048629593099,1387.9154337416087,173.4894292177011 +4905,10112,10111,4,13,29,111,45,43,0,9669,0,0,0,338,1,2,0,1,1.0,2667.69352341,0,0,18260.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,1,0,18260.0,5,3,5,5_0,1825.0,0,0.0,1825,8,13,40.0,14.0,3.3,0,1,186.08502833718256,0.0,186.08502833718256 4906,10122,10121,0,0,57,120,68,71,0,9681,0,0,0,279,2,4,1,2,1.5,8250.05557526,0,0,28340.0,1,3,0,3,2,0,0,0,0,1,0,0,0,0,0,0,18893.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,114.0,120.0,5.5,0,0,0.0,0.0,0.0 -4907,10126,10125,7,7,62,221,75,50,0,9687,0,0,0,0,0,4,0,2,1.5,2488.16867168,0,0,28180.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,0,2,18786.6666667,5,3,5,5_0,20000.0,0,20000.0,0,7,7,0.0,0.0,0.0,0,0,2039.2879817773435,2039.2879817773435,0.0 -4908,10150,10149,2,10,32,111,67,50,0,9724,0,250,0,0,2,5,1,3,1.8,2905.11582425,0,0,34293.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,19051.6666667,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886717,1019.6439908886717,0.0 +4907,10126,10125,7,7,62,221,75,50,0,9687,0,0,0,0,0,4,0,2,1.5,2488.16867168,0,0,28180.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,0,2,18786.6666667,5,3,5,5_0,20000.0,0,20000.0,0,7,7,0.0,0.0,0.0,0,0,2039.2879817773432,2039.2879817773432,0.0 +4908,10150,10149,2,10,32,111,67,50,0,9724,0,250,0,0,2,5,1,3,1.8,2905.11582425,0,0,34293.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,19051.6666667,5,3,5,5_0,10000.0,0,10000.0,0,1,8,0.0,21.3333333333,3.31,0,1,1019.6439908886716,1019.6439908886716,0.0 4909,10185,10184,7,8,50,112,54,50,0,9777,0,500,0,0,1,5,0,2,1.5,1403.62150354,780,0,27614.0,1,1,8,0,3,1,0,1,1,0,0,0,0,0,0,1,18409.3333333,5,3,5,5_1,11445.0,0,11445.0,0,1,10,757.0,5.0,0.0,0,1,1323.7243449310592,1323.7243449310592,0.0 -4910,10186,10185,3,5,37,111,64,71,0,9778,0,350,0,622,2,3,2,4,2.1,4651.49763246,1092,0,38750.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,0,2,18452.380952400003,5,3,5,5_0,22000.0,0,22000.0,0,3,4,143.8,16.0,0.0,0,1,2243.216779955078,2243.216779955078,0.0 +4910,10186,10185,3,5,37,111,64,71,0,9778,0,350,0,622,2,3,2,4,2.1,4651.49763246,1092,0,38750.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,0,2,18452.3809524,5,3,5,5_0,22000.0,0,22000.0,0,3,4,143.8,16.0,0.0,0,1,2243.2167799550775,2243.2167799550775,0.0 4911,10187,10186,0,0,76,111,77,50,0,9779,0,0,0,0,0,4,0,1,1.0,2125.0312678,0,0,18160.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,18160.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4912,10202,10201,9,9,70,112,74,70,0,9802,0,0,0,0,0,6,0,2,1.5,2794.02327055,1040,0,26960.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,0,2,17973.3333333,5,3,5,5_1,5000.0,0,5000.0,0,6,6,0.0,0.0,0.0,0,0,578.298097392337,578.298097392337,0.0 4913,10213,10212,1,7,57,111,68,50,2,9816,0,320,0,569,2,4,1,3,2.0,1215.15083417,4161,4400,34262.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,17131.0,5,3,5,5_0,20781.0,0,20781.0,0,1,8,0.0,0.0,0.0,0,0,2118.9221774657485,2118.9221774657485,0.0 4914,10214,10213,1,1,73,112,78,71,0,9817,0,0,0,0,0,6,0,2,1.5,4187.39599158,2080,0,25558.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,0,1,17038.6666667,5,3,5,5_1,16626.0,0,16626.0,0,2,3,0.0,0.0,0.0,0,0,1922.9568334489989,1922.9568334489989,0.0 4915,10221,10220,0,10,57,112,65,70,0,9828,0,0,0,0,2,7,1,4,2.5,1829.792046,4940,0,47803.0,4,1,8,0,5,2,0,0,1,0,0,0,0,0,1,1,19121.2,5,3,5,5_1,28000.0,0,18000.0,10000,16,16,61.0,12.5,3.3,0,1,3238.469345397087,2081.8731506124127,1156.596194784674 4916,10223,10222,0,0,83,111,77,71,0,9830,0,0,0,516,0,2,0,1,1.0,3611.78797479,0,0,18960.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,18960.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4917,10227,10226,9,14,20,111,62,60,0,9836,0,0,99999,219,2,3,1,2,1.5,2667.17943432,0,0,27814.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,1,0,18542.6666667,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.3099856695635,0.0,1111.3099856695635 -4918,10234,10233,0,13,27,111,38,20,0,9851,0,0,0,760,2,3,0,3,2.0,2764.6042211999998,0,0,36707.0,1,3,10,8,5,1,0,0,0,0,0,0,1,1,1,0,18353.5,5,3,5,5_0,7500.0,0,0.0,7500,8,20,0.0,3.33333333333,0.0,0,0,764.7329931665039,0.0,764.7329931665039 +4917,10227,10226,9,14,20,111,62,60,0,9836,0,0,99999,219,2,3,1,2,1.5,2667.17943432,0,0,27814.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,1,0,18542.6666667,5,3,5,5_0,10899.0,0,0.0,10899,5,7,206.2,77.5,1.1,0,1,1111.309985669563,0.0,1111.309985669563 +4918,10234,10233,0,13,27,111,38,20,0,9851,0,0,0,760,2,3,0,3,2.0,2764.6042212,0,0,36707.0,1,3,10,8,5,1,0,0,0,0,0,0,1,1,1,0,18353.5,5,3,5,5_0,7500.0,0,0.0,7500,8,20,0.0,3.33333333333,0.0,0,0,764.7329931665037,0.0,764.7329931665037 4919,10242,10241,0,0,26,111,55,71,0,9860,0,0,0,0,1,2,1,2,1.5,3335.30312248,0,0,28604.0,1,3,9,7,2,0,0,0,0,0,0,1,0,1,0,0,19069.3333333,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4920,10248,10247,14,14,40,111,64,42,0,9871,0,0,0,274,1,3,5,7,3.0,5404.19490885,0,0,51805.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,17268.3333333,5,3,5,5_0,9036.0,0,0.0,9036,1,14,0.0,2.0,0.0,0,1,921.3503101670037,0.0,921.3503101670037 -4921,10250,10249,3,3,78,111,72,50,0,9875,0,0,0,0,0,4,0,2,1.5,1685.06403117,0,0,26536.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,17690.6666667,5,3,5,5_0,9000.0,0,9000.0,0,3,3,0.0,0.0,0.0,0,0,917.6795917998046,917.6795917998046,0.0 -4922,10260,10259,4,4,83,111,72,70,0,9887,0,0,0,0,0,4,0,2,1.5,1714.98890292,2979,0,25511.0,5,1,3,4,3,1,0,0,0,0,1,0,0,0,0,1,17007.3333333,5,3,5,5_0,6000.0,0,6000.0,0,4,4,0.0,0.0,0.0,0,0,611.7863945332031,611.7863945332031,0.0 +4920,10248,10247,14,14,40,111,64,42,0,9871,0,0,0,274,1,3,5,7,3.0,5404.19490885,0,0,51805.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,1,0,17268.3333333,5,3,5,5_0,9036.0,0,0.0,9036,1,14,0.0,2.0,0.0,0,1,921.3503101670036,0.0,921.3503101670036 +4921,10250,10249,3,3,78,111,72,50,0,9875,0,0,0,0,0,4,0,2,1.5,1685.06403117,0,0,26536.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,17690.6666667,5,3,5,5_0,9000.0,0,9000.0,0,3,3,0.0,0.0,0.0,0,0,917.6795917998045,917.6795917998045,0.0 +4922,10260,10259,4,4,83,111,72,70,0,9887,0,0,0,0,0,4,0,2,1.5,1714.98890292,2979,0,25511.0,5,1,3,4,3,1,0,0,0,0,1,0,0,0,0,1,17007.3333333,5,3,5,5_0,6000.0,0,6000.0,0,4,4,0.0,0.0,0.0,0,0,611.786394533203,611.786394533203,0.0 4923,10270,10269,1,1,60,120,78,50,1,99,0,0,0,0,0,5,0,2,1.5,2204.15368475,0,15943,25910.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,17273.3333333,5,3,5,5_1,12000.0,0,12000.0,0,2,3,0.0,0.0,0.0,0,0,1387.9154337416087,1387.9154337416087,0.0 4924,10273,10272,0,0,23,111,63,50,0,9902,0,0,0,313,2,4,1,3,1.8,2776.76883815,0,0,33418.0,1,3,8,7,4,0,0,0,0,0,0,1,0,0,0,0,18565.5555556,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,15.0,2.2,0,0,0.0,0.0,0.0 4925,10278,10277,5,19,63,120,77,71,0,9908,0,0,0,0,1,5,1,3,2.0,3626.63195914,3120,0,36662.0,5,1,0,0,4,1,0,0,1,0,0,0,0,0,1,0,18331.0,5,3,5,5_1,3500.0,0,0.0,3500,18,18,0.0,20.0,2.2,0,1,404.8086681746359,0.0,404.8086681746359 -4926,10287,10286,3,5,74,111,78,50,0,992,0,0,0,0,0,4,0,2,1.5,1838.39639547,2578,0,26420.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,17613.3333333,5,3,5,5_0,14000.0,0,14000.0,0,6,5,0.0,0.0,0.0,0,0,1427.5015872441406,1427.5015872441406,0.0 +4926,10287,10286,3,5,74,111,78,50,0,992,0,0,0,0,0,4,0,2,1.5,1838.39639547,2578,0,26420.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,17613.3333333,5,3,5,5_0,14000.0,0,14000.0,0,6,5,0.0,0.0,0.0,0,0,1427.5015872441402,1427.5015872441402,0.0 4927,10306,10305,0,0,24,111,46,10,0,9941,0,0,0,199,1,2,0,1,1.0,3748.77798382,0,0,17442.0,1,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,17442.0,5,3,5,5_0,0.0,0,0.0,0,0,0,0.0,6.0,1.1,0,0,0.0,0.0,0.0 -4928,10315,10314,5,5,50,221,11,20,0,9958,0,0,0,0,2,4,0,2,1.5,1645.42656732,3052,0,25829.0,1,1,1,2,3,2,1,0,0,1,0,0,0,0,1,1,17219.3333333,5,3,5,5_0,15600.0,0,10000.0,5600,2,15,85.0,15.0,0.0,0,1,1590.644625786328,1019.6439908886717,571.0006348976561 -4929,10324,10323,1,1,25,111,54,31,1,9972,0,50,0,397,1,2,0,1,1.0,5157.82256687,0,12000,18276.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,0,1,18276.0,5,3,5,5_0,17001.0,0,17001.0,0,1,2,0.0,20.0,1.1,0,1,1733.4967489098308,1733.4967489098308,0.0 +4928,10315,10314,5,5,50,221,11,20,0,9958,0,0,0,0,2,4,0,2,1.5,1645.42656732,3052,0,25829.0,1,1,1,2,3,2,1,0,0,1,0,0,0,0,1,1,17219.3333333,5,3,5,5_0,15600.0,0,10000.0,5600,2,15,85.0,15.0,0.0,0,1,1590.6446257863279,1019.6439908886716,571.0006348976561 +4929,10324,10323,1,1,25,111,54,31,1,9972,0,50,0,397,1,2,0,1,1.0,5157.82256687,0,12000,18276.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,0,1,18276.0,5,3,5,5_0,17001.0,0,17001.0,0,1,2,0.0,20.0,1.1,0,1,1733.4967489098306,1733.4967489098306,0.0 4930,20,19,7,13,40,111,45,31,0,10020,0,0,150,0,2,5,2,4,2.3,2529.36786965,7904,0,47272.0,1,1,7,6,4,2,0,1,0,0,1,0,0,0,1,1,20553.0434783,6,3,6,6_0,45000.0,0,35000.0,10000,4,14,213.0,25.0,3.33,0,1,4423.342370013171,3440.377398899133,982.9649711140379 4931,29,28,3,8,23,111,42,41,0,10031,0,400,0,0,2,1,0,2,1.5,5360.80955785,7310,0,31263.0,1,3,5,4,5,1,0,1,0,0,1,0,0,1,0,1,20842.0,6,3,6,6_0,20672.0,0,20672.0,0,1,7,0.0,0.0,0.0,0,1,2031.985188286939,2031.985188286939,0.0 4932,41,40,3,3,68,111,74,60,0,10045,0,0,0,0,0,5,0,2,1.5,3047.65419796,0,0,28718.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,19145.3333333,6,3,6,6_0,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 -4933,45,44,2,16,42,120,22,50,0,10050,0,1000,0,0,2,4,2,4,2.3,2750.69188163,0,0,49589.0,1,2,0,0,4,4,0,0,1,0,0,0,0,0,1,3,21560.434782599998,6,3,6,6_1,15665.0,0,15665.0,0,15,17,278.5,55.0,3.3,0,1,1537.2032360636917,1537.2032360636917,0.0 -4934,51,50,2,9,52,111,55,50,0,10058,0,0,300,0,3,6,1,3,2.0,899.1566898039999,1482,0,38299.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,19149.5,6,3,6,6_0,18000.0,0,0.0,18000,9,10,86.4,19.3333333333,3.3,0,1,1769.3369480052684,0.0,1769.3369480052684 +4933,45,44,2,16,42,120,22,50,0,10050,0,1000,0,0,2,4,2,4,2.3,2750.69188163,0,0,49589.0,1,2,0,0,4,4,0,0,1,0,0,0,0,0,1,3,21560.4347826,6,3,6,6_1,15665.0,0,15665.0,0,15,17,278.5,55.0,3.3,0,1,1537.2032360636917,1537.2032360636917,0.0 +4934,51,50,2,9,52,111,55,50,0,10058,0,0,300,0,3,6,1,3,2.0,899.156689804,1482,0,38299.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,19149.5,6,3,6,6_0,18000.0,0,0.0,18000,9,10,86.4,19.3333333333,3.3,0,1,1769.3369480052684,0.0,1769.3369480052684 4935,64,63,17,24,75,300,74,20,0,1008,0,0,0,0,0,5,0,2,1.5,1327.61447274,0,0,30137.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,20091.3333333,6,3,6,6_1,3500.0,0,3000.0,500,8,18,0.0,0.0,0.0,0,0,343.4542819165606,294.38938449990906,49.06489741665151 4936,74,73,9,10,70,111,78,70,0,10094,0,0,0,0,0,5,0,2,1.5,1162.67805727,0,0,29424.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,0,2,19616.0,6,3,6,6_0,15000.0,0,15000.0,0,11,11,0.0,0.0,0.0,0,0,1474.4474566710567,1474.4474566710567,0.0 4937,76,75,10,11,69,300,78,50,0,10096,0,0,0,0,0,5,0,2,1.5,1326.46025992,0,0,30302.0,5,1,0,0,3,2,0,0,1,0,0,0,0,1,2,0,20201.3333333,6,3,6,6_1,18000.0,0,0.0,18000,6,8,0.0,0.0,0.0,0,0,1766.3363069994543,0.0,1766.3363069994543 -4938,77,76,1,11,29,111,42,50,0,10098,0,16,0,730,2,4,2,4,2.1,1433.01784598,4160,0,41423.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,0,2,19725.238095200002,6,3,6,6_0,45000.0,0,45000.0,0,7,7,0.0,18.0,3.3,0,1,4423.342370013171,4423.342370013171,0.0 +4938,77,76,1,11,29,111,42,50,0,10098,0,16,0,730,2,4,2,4,2.1,1433.01784598,4160,0,41423.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,0,2,19725.2380952,6,3,6,6_0,45000.0,0,45000.0,0,7,7,0.0,18.0,3.3,0,1,4423.342370013171,4423.342370013171,0.0 4939,79,78,4,10,41,112,45,20,0,10100,0,0,0,0,1,4,0,1,1.0,2303.43724947,0,0,19472.0,1,3,8,0,1,1,0,0,1,0,0,0,0,0,0,1,19472.0,6,3,6,6_1,18625.0,0,18625.0,0,4,9,0.0,0.0,0.0,0,0,1827.6674287702688,1827.6674287702688,0.0 4940,81,80,0,7,55,111,35,10,0,10105,0,430,0,0,2,5,2,4,2.3,2023.17525853,0,0,47545.0,1,1,8,6,4,2,1,1,0,0,1,0,0,0,0,2,20671.7391304,6,3,6,6_0,12000.0,0,12000.0,0,7,7,0.0,15.0,3.3,0,1,1179.5579653368454,1179.5579653368454,0.0 4941,86,85,9,11,51,120,21,50,0,10111,0,0,0,0,1,5,0,2,1.5,1518.01132462,2848,0,31677.0,1,1,0,3,3,1,0,0,0,1,0,0,0,0,1,0,21118.0,6,3,6,6_0,8000.0,0,0.0,8000,11,11,13.0,25.0,3.3,0,1,786.3719768912302,0.0,786.3719768912302 -4942,89,88,8,8,34,112,47,31,0,10115,0,0,0,0,2,5,2,4,2.1,4566.63603978,3630,0,40441.0,1,2,8,0,4,2,0,0,1,0,0,0,0,0,0,2,19257.619047599997,6,3,6,6_1,15903.0,0,15903.0,0,7,7,73.4,13.0,3.3,0,1,1560.558127234018,1560.558127234018,0.0 +4942,89,88,8,8,34,112,47,31,0,10115,0,0,0,0,2,5,2,4,2.1,4566.63603978,3630,0,40441.0,1,2,8,0,4,2,0,0,1,0,0,0,0,0,0,2,19257.6190476,6,3,6,6_1,15903.0,0,15903.0,0,7,7,73.4,13.0,3.3,0,1,1560.558127234018,1560.558127234018,0.0 4943,91,90,7,12,49,112,43,33,0,10118,15,33,0,0,2,5,3,5,2.8,2033.6662342,3585,0,54593.0,1,3,8,0,4,3,0,0,1,0,0,0,0,0,0,2,19497.5,6,3,6,6_1,55000.0,0,55000.0,0,9,11,108.0,22.0,0.0,0,1,5397.138715831667,5397.138715831667,0.0 4944,92,91,4,20,46,111,67,71,0,10120,0,0,130,378,1,3,0,1,1.0,2716.59824848,1300,0,21369.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,1,0,21369.0,6,3,6,6_0,12000.0,0,0.0,12000,2,17,0.0,40.0,2.2,0,0,1179.5579653368454,0.0,1179.5579653368454 4945,100,99,3,4,29,300,69,50,0,10128,0,284,16,0,2,4,0,2,1.5,1144.83452973,1560,0,28976.0,1,3,0,0,3,2,0,1,1,0,0,0,0,0,1,1,19317.3333333,6,3,6,6_1,36000.0,0,20000.0,16000,6,6,79.0,24.5,3.3,0,1,3532.6726139989087,1962.5958966660605,1570.0767173328484 4946,107,106,13,13,37,400,56,43,0,10135,0,100,0,0,2,3,0,2,1.5,3201.07295003,0,0,31232.0,1,3,0,0,3,1,0,1,1,0,0,0,0,1,0,1,20821.3333333,6,3,6,6_1,15000.0,0,15000.0,0,4,13,0.0,15.0,0.0,0,0,1471.9469224995453,1471.9469224995453,0.0 4947,108,107,11,11,60,111,77,71,0,10136,0,0,0,410,0,4,0,1,1.0,3506.98752097,0,0,19310.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,19310.0,6,3,6,6_0,2000.0,0,0.0,2000,10,11,0.0,0.0,0.0,0,0,196.59299422280756,0.0,196.59299422280756 -4948,112,111,5,5,74,112,77,50,0,10144,0,0,0,0,0,5,0,2,1.5,1193.4566710000001,2861,0,31349.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,20899.3333333,6,3,6,6_1,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1962.5958966660605,1962.5958966660605,0.0 +4948,112,111,5,5,74,112,77,50,0,10144,0,0,0,0,0,5,0,2,1.5,1193.456671,2861,0,31349.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,20899.3333333,6,3,6,6_1,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1962.5958966660605,1962.5958966660605,0.0 4949,114,113,0,0,45,111,62,50,0,10148,0,0,0,308,1,2,0,1,1.0,2664.9122897,0,0,20430.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20430.0,6,3,6,6_0,0.0,0,0.0,0,0,0,13.5,14.0,3.32,0,0,0.0,0.0,0.0 4950,122,121,2,2,46,111,46,50,0,10161,0,0,200,0,1,3,1,2,1.5,1298.12042062,1300,0,30407.0,1,2,7,5,2,2,0,0,0,0,1,0,0,0,2,0,20271.3333333,6,3,6,6_0,12000.0,0,0.0,12000,9,10,0.0,40.0,3.3,0,1,1179.5579653368454,0.0,1179.5579653368454 4951,123,122,4,4,68,211,72,44,0,10165,0,0,0,0,0,5,1,3,2.0,3158.78442153,1806,0,39934.0,5,2,1,2,4,1,0,0,0,1,0,0,0,1,0,1,19967.0,6,3,6,6_0,20000.0,0,20000.0,0,3,4,0.0,0.0,0.0,0,0,1965.9299422280758,1965.9299422280758,0.0 @@ -4956,25 +4956,25 @@ 4954,137,136,0,12,26,111,54,10,2,10181,0,0,60,630,2,3,0,2,1.5,3661.31302893,0,3000,32339.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,2,0,21559.3333333,6,3,6,6_0,4000.0,0,0.0,4000,9,14,42.6,15.0,3.3,0,1,393.1859884456151,0.0,393.1859884456151 4955,139,138,0,0,25,111,34,10,0,10184,0,0,0,300,1,1,0,1,1.0,3779.89495109,0,0,20950.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,20950.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,14.0,1.1,0,0,0.0,0.0,0.0 4956,145,144,11,11,68,111,75,10,0,10191,0,0,0,0,0,5,0,2,1.5,1720.04260515,0,0,30821.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,20547.3333333,6,3,6,6_0,20000.0,0,10000.0,10000,8,8,0.0,0.0,0.0,0,0,1965.9299422280758,982.9649711140379,982.9649711140379 -4957,176,175,8,11,41,111,52,31,0,10236,0,0,0,900,2,3,2,4,2.3,2576.38242161,4201,0,45801.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,1,0,19913.478260900003,6,3,6,6_0,10000.0,0,0.0,10000,10,10,74.0,106.666666667,3.31,0,0,982.9649711140379,0.0,982.9649711140379 +4957,176,175,8,11,41,111,52,31,0,10236,0,0,0,900,2,3,2,4,2.3,2576.38242161,4201,0,45801.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,1,0,19913.4782609,6,3,6,6_0,10000.0,0,0.0,10000,10,10,74.0,106.666666667,3.31,0,0,982.9649711140379,0.0,982.9649711140379 4958,207,206,2,2,58,111,78,70,0,10279,0,300,0,0,1,5,1,4,2.5,1441.00582189,2392,0,48856.0,5,1,6,4,5,3,0,1,0,0,1,0,0,0,0,3,19542.4,6,3,6,6_0,25000.0,0,25000.0,0,4,8,870.1,53.75,3.3,0,1,2457.4124277850947,2457.4124277850947,0.0 -4959,216,215,0,0,93,111,78,70,0,10291,0,0,0,0,0,3,0,1,1.0,3255.8397584000004,0,0,20509.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20509.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +4959,216,215,0,0,93,111,78,70,0,10291,0,0,0,0,0,3,0,1,1.0,3255.8397584,0,0,20509.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20509.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4960,218,217,2,2,54,221,45,31,0,10296,0,490,0,0,2,3,2,4,2.5,1197.13306146,2601,0,52438.0,1,1,1,3,4,3,0,1,0,1,0,0,0,0,0,3,20975.2,6,3,6,6_0,25000.0,0,25000.0,0,4,8,870.1,53.75,3.3,0,1,2457.4124277850947,2457.4124277850947,0.0 4961,229,228,3,9,41,112,48,50,0,10310,0,0,0,0,2,4,0,2,1.5,2647.56169295,3120,0,31959.0,1,3,7,4,3,2,0,0,0,0,1,0,0,0,0,2,21306.0,6,3,6,6_0,38625.0,0,38625.0,0,3,9,131.3,74.5,2.24,0,1,3796.7022009279717,3796.7022009279717,0.0 4962,238,237,8,10,76,111,78,50,0,10323,0,0,0,647,0,4,0,1,1.0,3171.92988822,1560,0,19299.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,0,1,19299.0,6,3,6,6_0,4500.0,0,4500.0,0,6,7,0.0,0.0,0.0,0,0,442.3342370013171,442.3342370013171,0.0 4963,241,240,4,9,47,300,12,71,0,10326,0,0,0,0,1,5,1,3,2.0,1859.66902192,1560,0,40463.0,1,1,0,0,4,2,1,0,1,0,0,0,0,0,0,2,20231.5,6,3,6,6_1,20000.0,0,20000.0,0,2,8,186.5,33.3333333333,3.3,0,1,1962.5958966660605,1962.5958966660605,0.0 4964,252,251,4,5,56,111,54,44,0,10340,0,0,0,0,1,4,0,2,1.5,2529.03028976,2602,0,32074.0,1,3,8,6,3,1,0,0,0,0,1,0,0,0,1,0,21382.6666667,6,3,6,6_0,11784.0,0,0.0,11784,2,3,0.0,20.0,1.1,0,0,1158.3259219607824,0.0,1158.3259219607824 -4965,255,254,3,18,51,111,64,50,0,10347,0,410,0,0,2,3,1,3,2.0,1207.3762815999999,2877,0,41833.0,1,2,8,7,4,3,0,0,0,0,0,1,0,0,1,2,20916.5,6,3,6,6_0,13543.0,0,10000.0,3543,12,24,71.4,26.6666666667,2.24,0,1,1331.2294603797416,982.9649711140379,348.2644892657036 +4965,255,254,3,18,51,111,64,50,0,10347,0,410,0,0,2,3,1,3,2.0,1207.3762816,2877,0,41833.0,1,2,8,7,4,3,0,0,0,0,0,1,0,0,1,2,20916.5,6,3,6,6_0,13543.0,0,10000.0,3543,12,24,71.4,26.6666666667,2.24,0,1,1331.2294603797416,982.9649711140379,348.2644892657036 4966,257,256,11,11,48,111,52,50,0,1035,0,0,0,420,2,3,2,3,2.0,1871.04515502,0,0,38380.0,1,3,10,8,2,1,0,0,0,0,0,0,1,0,1,0,19190.0,6,3,6,6_0,7681.0,0,0.0,7681,11,11,63.0,37.5,3.3,0,1,755.0153943126925,0.0,755.0153943126925 4967,271,270,5,8,53,111,47,50,0,10371,0,99999,0,0,2,5,1,3,2.0,1088.70615136,4307,0,40297.0,1,1,9,7,4,3,1,0,0,0,0,1,0,0,0,3,20148.5,6,3,6,6_0,29336.0,0,29336.0,0,4,6,211.5,60.0,3.3,0,1,2883.626039260141,2883.626039260141,0.0 4968,280,279,1,1,49,111,22,60,1,10381,0,125,280,0,3,6,2,4,2.5,2997.82887368,2084,8000,52926.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,21170.4,6,3,6,6_0,22036.0,0,13000.0,9036,5,5,81.5,21.25,3.3,0,1,2166.0616103468938,1277.8544624482493,888.2071478986446 4969,288,287,3,25,51,111,56,50,0,10396,0,0,0,600,2,4,2,4,2.5,1497.45234251,0,0,48920.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,19568.0,6,3,6,6_0,16337.0,0,16337.0,0,5,16,570.1,90.0,5.5,0,0,1605.8698733090037,1605.8698733090037,0.0 4970,295,294,7,7,70,300,78,70,0,10408,0,0,0,0,0,5,0,2,1.5,2250.09170643,0,0,31643.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,21095.3333333,6,3,6,6_1,12000.0,0,12000.0,0,4,6,0.0,0.0,0.0,0,0,1177.5575379996362,1177.5575379996362,0.0 4971,296,295,9,9,81,112,75,70,0,10409,0,0,0,0,0,6,0,2,1.5,3917.02375848,0,0,32493.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,21662.0,6,3,6,6_1,5000.0,0,5000.0,0,10,10,0.0,0.0,0.0,0,0,490.64897416651513,490.64897416651513,0.0 -4972,299,298,0,15,30,111,34,10,0,10413,0,0,0,800,2,3,1,3,1.8,3625.7337976999997,0,0,37967.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,1,0,21092.777777799998,6,3,6,6_0,5000.0,0,0.0,5000,7,15,56.0,14.666666666700001,0.0,0,1,491.48248555701895,0.0,491.48248555701895 +4972,299,298,0,15,30,111,34,10,0,10413,0,0,0,800,2,3,1,3,1.8,3625.7337977,0,0,37967.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,1,0,21092.7777778,6,3,6,6_0,5000.0,0,0.0,5000,7,15,56.0,14.6666666667,0.0,0,1,491.48248555701895,0.0,491.48248555701895 4973,305,304,11,13,43,111,48,42,0,10420,0,330,0,0,2,5,2,4,2.3,3904.81015426,4629,0,45872.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,19944.3478261,6,3,6,6_0,25000.0,0,25000.0,0,4,16,271.6,35.0,3.3,0,1,2457.4124277850947,2457.4124277850947,0.0 4974,327,326,0,0,82,111,75,50,0,10446,0,0,0,398,0,2,0,1,1.0,2890.77182951,0,0,21178.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21178.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -4975,333,332,4,16,42,112,62,50,0,10455,0,550,0,462,3,5,3,5,2.8,1920.53813334,3596,0,53848.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,0,2,19231.428571400003,6,3,6,6_1,30000.0,0,30000.0,0,10,14,78.6,11.6,3.3,0,1,2943.8938449990906,2943.8938449990906,0.0 +4975,333,332,4,16,42,112,62,50,0,10455,0,550,0,462,3,5,3,5,2.8,1920.53813334,3596,0,53848.0,1,3,8,0,4,2,0,1,1,0,0,0,0,1,0,2,19231.4285714,6,3,6,6_1,30000.0,0,30000.0,0,10,14,78.6,11.6,3.3,0,1,2943.8938449990906,2943.8938449990906,0.0 4976,336,335,3,3,44,111,45,31,0,10459,0,110,0,0,1,7,2,3,1.8,2136.96228291,2600,0,37608.0,1,1,6,4,2,1,0,1,0,0,1,0,0,0,0,1,20893.3333333,6,3,6,6_0,35000.0,0,35000.0,0,5,7,206.0,75.0,3.3,1,1,3440.377398899133,3440.377398899133,0.0 4977,344,343,1,1,22,111,53,42,0,10474,0,650,0,420,2,2,0,2,1.5,3348.81539396,0,0,29115.0,1,3,7,6,3,1,0,1,0,0,1,0,0,0,0,1,19410.0,6,3,6,6_0,16337.0,0,16337.0,0,5,5,87.2,45.0,5.55,0,1,1605.8698733090037,1605.8698733090037,0.0 4978,350,349,1,19,49,300,43,31,2,10480,0,336,250,0,2,8,2,4,2.5,904.331489917,0,2000,48800.0,1,1,0,0,4,3,0,1,1,0,0,0,0,0,1,2,19520.0,6,3,6,6_1,32000.0,0,32000.0,0,3,11,145.0,30.0,3.3,0,1,3140.1534346656968,3140.1534346656968,0.0 @@ -4982,15 +4982,15 @@ 4980,377,376,5,5,63,111,75,60,0,10518,0,0,0,0,0,4,0,2,1.5,2303.57315002,0,0,29210.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,19473.3333333,6,3,6,6_0,26000.0,0,26000.0,0,5,7,0.0,0.0,0.0,0,0,2555.7089248964985,2555.7089248964985,0.0 4981,401,400,0,0,86,111,78,70,0,10546,0,0,0,0,0,3,0,1,1.0,2505.86141655,0,0,20811.0,5,3,7,5,1,0,0,0,0,0,1,0,0,0,0,0,20811.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 4982,402,401,1,3,55,221,12,71,2,10547,0,40,0,0,2,3,0,2,1.5,2750.89322051,0,27000,31840.0,1,1,1,3,3,1,0,1,0,1,0,0,0,0,0,1,21226.6666667,6,3,6,6_0,12000.0,0,12000.0,0,5,5,0.0,2.0,2.24,0,1,1179.5579653368454,1179.5579653368454,0.0 -4983,408,407,1,6,41,111,54,60,2,10554,0,0,5,0,2,5,2,4,2.1,3033.19116304,0,12000,40832.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,19443.809523800002,6,3,6,6_0,1500.0,0,0.0,1500,3,6,0.0,4.0,0.0,0,1,147.44474566710568,0.0,147.44474566710568 +4983,408,407,1,6,41,111,54,60,2,10554,0,0,5,0,2,5,2,4,2.1,3033.19116304,0,12000,40832.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,19443.8095238,6,3,6,6_0,1500.0,0,0.0,1500,3,6,0.0,4.0,0.0,0,1,147.44474566710568,0.0,147.44474566710568 4984,413,412,2,9,22,111,56,41,0,1056,0,1100,0,453,2,2,0,2,1.5,2568.69114669,0,0,29313.0,1,3,6,4,3,2,1,1,0,0,1,0,0,0,0,2,19542.0,6,3,6,6_0,20000.0,0,20000.0,0,4,12,28.0,10.0,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 4985,415,414,2,6,29,112,43,20,0,10561,0,250,0,0,2,3,1,3,1.8,3409.48228806,2718,0,35333.0,1,2,8,0,4,3,0,1,1,0,0,0,0,0,1,2,19629.4444444,6,3,6,6_1,45000.0,0,45000.0,0,3,6,243.5,50.0,3.31,0,1,4415.840767498636,4415.840767498636,0.0 4986,431,430,3,10,32,111,22,71,0,10587,0,0,99999,1200,1,2,0,1,1.0,3916.67362386,4075,0,20327.0,1,3,10,8,1,1,1,1,0,0,0,0,1,0,1,0,20327.0,6,3,6,6_0,4000.0,0,0.0,4000,11,11,114.0,90.0,3.3,0,0,393.1859884456151,0.0,393.1859884456151 4987,446,445,5,7,46,300,48,71,0,10609,0,200,0,0,1,3,0,1,1.0,2928.12898905,0,0,20152.0,1,2,0,0,1,1,0,1,1,0,0,0,0,0,0,1,20152.0,6,3,6,6_1,15000.0,0,15000.0,0,3,4,136.5,90.0,3.3,0,1,1471.9469224995453,1471.9469224995453,0.0 -4988,491,490,11,11,65,111,77,70,0,10673,0,0,0,401,0,4,0,2,1.5,2740.4029223000002,0,0,28946.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,19297.3333333,6,3,6,6_0,10000.0,0,10000.0,0,10,11,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 +4988,491,490,11,11,65,111,77,70,0,10673,0,0,0,401,0,4,0,2,1.5,2740.4029223,0,0,28946.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,19297.3333333,6,3,6,6_0,10000.0,0,10000.0,0,10,11,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 4989,494,493,1,20,42,221,62,50,2,10679,0,400,200,0,2,4,2,4,2.1,2220.17260592,4992,2000,41495.0,1,1,1,1,4,3,0,1,0,1,0,0,0,0,2,1,19759.5238095,6,3,6,6_0,16000.0,0,12000.0,4000,18,18,62.0,31.6666666667,3.31,0,1,1572.7439537824605,1179.5579653368454,393.1859884456151 4990,526,525,4,11,66,112,78,70,0,10727,0,0,0,0,0,4,0,2,1.5,2227.00576073,0,0,30730.0,5,3,10,4,3,1,0,0,0,0,1,0,0,0,0,1,20486.6666667,6,3,6,6_0,7500.0,0,7500.0,0,1,12,0.0,0.0,0.0,0,0,737.2237283355283,737.2237283355283,0.0 -4991,533,532,4,9,32,300,37,50,0,10734,0,199998,0,0,2,5,2,4,2.1,1912.21920084,3011,0,44040.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,20971.428571400003,6,3,6,6_1,17986.0,0,17986.0,0,3,9,109.0,6.0,3.3,0,1,1764.9624898717882,1764.9624898717882,0.0 +4991,533,532,4,9,32,300,37,50,0,10734,0,199998,0,0,2,5,2,4,2.1,1912.21920084,3011,0,44040.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,20971.4285714,6,3,6,6_1,17986.0,0,17986.0,0,3,9,109.0,6.0,3.3,0,1,1764.9624898717882,1764.9624898717882,0.0 4992,539,538,2,19,35,111,63,50,0,10741,0,0,200,470,2,3,0,2,1.5,1576.81552744,2096,0,31347.0,1,3,8,6,3,2,0,1,0,0,1,0,0,0,2,0,20898.0,6,3,6,6_0,12463.0,0,0.0,12463,2,13,57.0,10.0,3.3,0,1,1225.0692434994255,0.0,1225.0692434994255 4993,552,551,2,32,41,111,48,41,0,10759,0,0,700,0,2,3,2,4,2.1,2924.52658044,3432,0,44598.0,1,2,10,8,4,3,0,0,0,0,0,0,1,0,3,0,21237.1428571,6,3,6,6_0,3614.0,0,0.0,3614,1,8,98.3,34.0,3.3,0,1,355.2435405606133,0.0,355.2435405606133 4994,595,594,5,5,64,111,68,70,0,10817,0,0,30,390,1,3,0,2,1.5,2183.51393984,1532,0,29012.0,1,3,6,4,3,2,0,0,0,0,1,0,0,0,1,1,19341.3333333,6,3,6,6_0,7000.0,0,3000.0,4000,4,4,89.0,14.0,3.3,0,1,688.0754797798265,294.88949133421136,393.1859884456151 @@ -5001,26 +5001,26 @@ 4999,633,632,6,14,42,120,34,41,0,10871,0,99999,150,0,2,5,1,3,1.8,3652.17131668,3738,0,38304.0,1,2,0,0,4,2,1,1,1,0,0,0,0,0,1,1,21280.0,6,3,6,6_1,34000.0,0,31000.0,3000,4,13,233.5,33.3333333333,3.3,0,1,3336.413024332303,3042.0236398323937,294.38938449990906 5000,653,652,14,18,65,112,75,50,0,10896,0,0,0,0,0,4,0,2,1.5,1103.66660146,1562,0,31310.0,5,1,8,2,3,2,0,0,0,1,0,0,0,0,2,0,20873.3333333,6,3,6,6_0,2000.0,0,0.0,2000,1,19,0.0,0.0,0.0,0,0,196.59299422280756,0.0,196.59299422280756 5001,656,655,5,5,48,111,46,71,0,10901,0,0,240,391,4,4,3,5,2.8,4611.76661459,2600,0,60312.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,21540.0,6,3,6,6_0,40000.0,0,0.0,40000,8,9,188.2,52.0,0.0,0,0,3931.8598844561516,0.0,3931.8598844561516 -5002,663,662,2,3,34,111,46,43,0,10909,0,0,0,0,2,4,2,4,2.1,2951.31942983,4094,0,42213.0,1,2,8,7,4,1,1,0,0,0,0,1,0,0,0,1,20101.428571400003,6,3,6,6_0,25000.0,0,25000.0,0,2,5,253.5,63.75,0.0,0,0,2457.4124277850947,2457.4124277850947,0.0 +5002,663,662,2,3,34,111,46,43,0,10909,0,0,0,0,2,4,2,4,2.1,2951.31942983,4094,0,42213.0,1,2,8,7,4,1,1,0,0,0,0,1,0,0,0,1,20101.4285714,6,3,6,6_0,25000.0,0,25000.0,0,2,5,253.5,63.75,0.0,0,0,2457.4124277850947,2457.4124277850947,0.0 5003,670,669,12,12,57,112,62,50,0,1092,0,100,0,0,1,3,0,2,1.5,1353.03483376,3966,0,30030.0,1,2,6,0,3,2,0,1,1,0,0,0,0,0,1,1,20020.0,6,3,6,6_1,24000.0,0,11000.0,13000,10,12,0.0,0.0,0.0,0,1,2355.1150759992724,1079.4277431663334,1275.6873328329393 5004,692,691,14,14,53,111,65,50,0,10951,0,0,30,175,1,2,0,1,1.0,2261.45433102,2132,0,20685.0,1,3,6,4,1,1,0,1,0,0,1,0,0,0,1,0,20685.0,6,3,6,6_0,10000.0,0,0.0,10000,8,11,0.0,40.0,1.1,0,0,982.9649711140379,0.0,982.9649711140379 5005,694,693,18,18,86,120,78,70,0,10953,0,0,0,0,0,5,0,2,1.5,1747.12287172,2840,0,30150.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,20100.0,6,3,6,6_0,500.0,0,0.0,500,16,17,0.0,0.0,0.0,0,0,49.14824855570189,0.0,49.14824855570189 -5006,700,699,3,7,37,111,63,50,0,10961,0,200,150,0,2,4,2,4,2.3,3106.25930856,0,0,47920.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,20834.782608700003,6,3,6,6_0,18714.0,0,15000.0,3714,5,5,129.5,40.0,0.0,0,1,1839.5206469428106,1474.4474566710567,365.0731902717537 +5006,700,699,3,7,37,111,63,50,0,10961,0,200,150,0,2,4,2,4,2.3,3106.25930856,0,0,47920.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,20834.7826087,6,3,6,6_0,18714.0,0,15000.0,3714,5,5,129.5,40.0,0.0,0,1,1839.5206469428106,1474.4474566710567,365.0731902717537 5007,722,721,7,12,55,112,64,50,0,10994,0,385,0,0,2,5,0,2,1.5,1177.97808073,2340,0,31860.0,1,4,8,0,3,1,0,1,1,0,0,0,0,0,0,1,21240.0,6,3,6,6_1,33142.0,0,33142.0,0,8,13,0.0,0.0,0.0,1,0,3252.217660365329,3252.217660365329,0.0 5008,736,735,5,10,30,112,42,20,0,11014,0,600,0,0,2,4,2,4,2.1,2435.77781821,5148,0,41119.0,1,2,5,0,4,2,0,1,1,0,0,0,0,1,1,1,19580.4761905,6,3,6,6_1,57000.0,0,43000.0,14000,4,11,0.0,0.0,0.0,0,1,5593.398305498272,4219.58117783203,1373.8171276662424 5009,738,737,3,7,45,112,47,42,0,11016,0,212,80,0,3,10,5,7,3.8,1029.88424347,6760,0,78067.0,1,2,9,0,4,2,1,1,1,0,0,0,0,0,1,1,20543.9473684,6,3,6,6_1,40352.0,0,20000.0,20352,6,9,312.8,35.0,0.0,0,1,3959.7334811134433,1962.5958966660605,1997.1375844473832 -5010,755,754,3,5,38,112,52,50,0,11043,0,500,0,0,2,4,3,5,2.6,5803.48429808,4524,0,54880.0,1,2,9,2,4,2,0,1,0,1,0,0,0,0,0,2,21107.692307700003,6,3,6,6_0,18625.0,0,18625.0,0,4,6,3.0,31.25,3.3,0,1,1830.7722586998955,1830.7722586998955,0.0 +5010,755,754,3,5,38,112,52,50,0,11043,0,500,0,0,2,4,3,5,2.6,5803.48429808,4524,0,54880.0,1,2,9,2,4,2,0,1,0,1,0,0,0,0,0,2,21107.6923077,6,3,6,6_0,18625.0,0,18625.0,0,4,6,3.0,31.25,3.3,0,1,1830.7722586998955,1830.7722586998955,0.0 5011,762,761,5,10,50,400,67,71,0,1105,0,500,0,0,3,5,1,3,2.0,2527.41570143,5070,0,41516.0,1,4,0,0,4,3,0,1,1,0,0,0,0,0,1,2,20758.0,6,3,6,6_1,22102.0,0,17102.0,5000,4,6,106.5,21.3333333333,1.1,0,1,2168.8647254056636,1678.2157512391484,490.64897416651513 5012,767,766,16,16,42,300,42,20,0,11055,0,0,0,0,2,5,2,4,2.1,1254.30458224,5039,0,41935.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,19969.047619,6,3,6,6_1,28955.0,0,21455.0,7500,6,12,141.6,30.0,0.0,0,1,2841.348209398289,2105.374748148516,735.9734612497726 5013,797,796,2,12,28,111,65,50,0,11094,0,850,0,0,2,7,0,2,1.5,2753.88066214,0,0,30927.0,1,2,8,6,3,2,0,1,0,0,1,0,0,0,0,2,20618.0,6,3,6,6_0,45000.0,0,45000.0,0,2,13,122.0,30.0,0.0,0,1,4423.342370013171,4423.342370013171,0.0 5014,805,804,3,18,65,111,54,12,0,11103,0,0,350,406,3,4,1,3,2.0,2321.82403471,0,0,39826.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,19913.0,6,3,6,6_0,4732.0,0,0.0,4732,0,16,75.0,63.3333333333,5.57,0,0,465.1390243311627,0.0,465.1390243311627 -5015,812,811,8,8,71,111,75,60,0,11116,0,0,0,0,0,3,0,1,1.0,3188.1120716999994,2262,0,19387.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,19387.0,6,3,6,6_0,2000.0,0,0.0,2000,10,10,0.0,0.0,0.0,0,0,196.59299422280756,0.0,196.59299422280756 +5015,812,811,8,8,71,111,75,60,0,11116,0,0,0,0,0,3,0,1,1.0,3188.1120717,2262,0,19387.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,19387.0,6,3,6,6_0,2000.0,0,0.0,2000,10,10,0.0,0.0,0.0,0,0,196.59299422280756,0.0,196.59299422280756 5016,814,813,3,3,71,112,78,50,0,1112,0,0,0,0,0,4,0,2,1.5,2722.89141921,0,0,30797.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,1,0,20531.3333333,6,3,6,6_1,20000.0,0,0.0,20000,2,2,0.0,0.0,0.0,0,0,1962.5958966660605,0.0,1962.5958966660605 5017,827,826,2,5,69,112,77,50,2,11136,0,0,0,0,0,7,0,2,1.5,1131.88195198,3273,7500,30765.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,0,2,20510.0,6,3,6,6_1,27000.0,0,27000.0,0,6,6,0.0,0.0,0.0,0,0,2649.5044604991817,2649.5044604991817,0.0 5018,836,835,1,17,28,300,63,50,2,11145,0,0,0,0,2,3,0,2,1.5,1792.87356444,4681,1880,31730.0,1,3,0,0,3,3,1,0,1,0,0,0,0,0,1,2,21153.3333333,6,3,6,6_1,22000.0,0,22000.0,0,7,18,177.0,68.0,3.3,0,1,2158.8554863326667,2158.8554863326667,0.0 5019,842,841,15,15,75,111,78,70,0,11155,0,0,0,0,0,4,0,1,1.0,2718.27130632,2757,0,21248.0,5,1,6,5,1,1,0,0,0,0,1,0,0,0,1,0,21248.0,6,3,6,6_0,10258.0,0,0.0,10258,5,14,0.0,0.0,0.0,0,0,1008.3254673687801,0.0,1008.3254673687801 5020,850,849,9,11,58,300,67,71,0,11168,0,250,0,0,1,4,0,2,1.5,2147.89272581,3640,0,31410.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,20940.0,6,3,6,6_1,24000.0,0,11000.0,13000,10,12,0.0,0.0,0.0,0,1,2355.1150759992724,1079.4277431663334,1275.6873328329393 -5021,864,863,8,8,27,112,64,71,0,11187,0,400,300,0,2,5,1,3,1.8,3539.59788537,9199,0,35399.0,1,4,10,3,4,2,0,1,0,1,0,0,0,0,1,1,19666.111111099995,6,3,6,6_0,43568.0,0,20000.0,23568,2,8,184.2,13.333333333299999,3.3,0,1,4282.58178614964,1965.9299422280758,2316.6518439215647 +5021,864,863,8,8,27,112,64,71,0,11187,0,400,300,0,2,5,1,3,1.8,3539.59788537,9199,0,35399.0,1,4,10,3,4,2,0,1,0,1,0,0,0,0,1,1,19666.1111111,6,3,6,6_0,43568.0,0,20000.0,23568,2,8,184.2,13.3333333333,3.3,0,1,4282.58178614964,1965.9299422280758,2316.6518439215647 5022,880,879,11,19,50,111,42,50,0,11209,0,0,300,0,1,5,2,4,2.3,1837.22963214,3098,0,47144.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,20497.3913043,6,3,6,6_0,10313.0,0,0.0,10313,7,12,58.8,15.0,0.0,1,0,1013.7317747099073,0.0,1013.7317747099073 5023,891,890,14,14,82,112,72,60,0,11223,0,0,0,0,0,5,0,2,1.5,5908.60317996,2496,0,32090.0,5,1,8,0,3,3,0,0,1,0,0,0,0,0,2,1,21393.3333333,6,3,6,6_1,20000.0,0,0.0,20000,6,14,0.0,0.0,0.0,0,0,1962.5958966660605,0.0,1962.5958966660605 5024,903,902,3,13,66,111,78,50,0,11239,0,0,0,250,0,3,0,2,1.5,2274.17235695,3283,0,32376.0,5,3,10,8,3,2,0,0,0,0,0,0,1,0,1,1,21584.0,6,3,6,6_0,11722.0,0,11672.0,50,1,1,0.0,0.0,0.0,0,0,1152.2315391398754,1147.3167142843051,4.914824855570189 @@ -5031,23 +5031,23 @@ 5029,926,925,1,6,58,300,71,44,2,11275,0,0,0,0,1,7,0,2,1.5,1381.37139437,5720,3900,30225.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,20150.0,6,3,6,6_1,18000.0,0,18000.0,0,7,7,0.0,0.0,0.0,1,0,1766.3363069994543,1766.3363069994543,0.0 5030,944,943,14,16,66,111,78,50,0,11299,0,0,0,409,0,4,0,2,1.5,1522.48938175,0,0,31000.0,5,3,8,6,3,1,0,0,0,0,1,0,0,0,0,1,20666.6666667,6,3,6,6_0,600.0,0,600.0,0,14,14,0.0,0.0,0.0,0,0,58.977898266842274,58.977898266842274,0.0 5031,950,949,1,5,28,111,47,10,0,11305,0,0,0,537,1,2,0,1,1.0,2888.42560099,0,0,20772.0,1,3,7,6,1,1,0,0,0,0,1,0,0,0,0,1,20772.0,6,3,6,6_0,15000.0,0,15000.0,0,2,4,0.0,25.0,3.3,0,1,1474.4474566710567,1474.4474566710567,0.0 -5032,971,970,5,12,36,111,53,50,0,11333,0,0,0,0,2,3,1,3,1.8,2887.23303585,0,0,38686.0,1,2,8,7,4,1,0,0,0,0,0,1,0,0,1,0,21492.222222200002,6,3,6,6_0,5000.0,0,0.0,5000,13,14,122.0,36.6666666667,2.24,0,1,491.48248555701895,0.0,491.48248555701895 +5032,971,970,5,12,36,111,53,50,0,11333,0,0,0,0,2,3,1,3,1.8,2887.23303585,0,0,38686.0,1,2,8,7,4,1,0,0,0,0,0,1,0,0,1,0,21492.2222222,6,3,6,6_0,5000.0,0,0.0,5000,13,14,122.0,36.6666666667,2.24,0,1,491.48248555701895,0.0,491.48248555701895 5033,981,980,8,14,68,300,75,50,0,11348,0,0,0,0,0,4,0,2,1.5,2066.72028094,0,0,29781.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,19854.0,6,3,6,6_1,17001.0,0,17001.0,0,10,16,0.0,0.0,0.0,0,0,1668.3046419609846,1668.3046419609846,0.0 5034,984,983,10,10,47,221,31,12,0,11351,0,0,100399,0,2,3,0,2,1.5,2593.29845408,2447,0,29451.0,1,2,1,2,3,2,0,1,0,1,0,0,0,0,2,0,19634.0,6,3,6,6_0,10704.0,0,0.0,10704,2,8,263.2,50.0,1.1,0,1,1052.1657050804663,0.0,1052.1657050804663 5035,1001,1000,4,7,47,111,47,50,0,11372,0,50,0,0,2,3,1,3,2.0,2921.19511123,2080,0,43250.0,1,4,10,8,4,1,0,1,0,0,0,0,1,0,0,1,21625.0,6,3,6,6_0,16353.0,0,16353.0,0,5,5,0.0,0.0,0.0,0,0,1607.4426172627861,1607.4426172627861,0.0 -5036,1010,1009,1,7,35,222,52,20,2,11381,0,0,0,0,2,6,1,3,1.8,1016.86516924,0,6500,35615.0,1,3,1,0,4,2,0,0,1,0,0,0,0,0,0,2,19786.111111099995,6,3,6,6_1,15714.0,0,15714.0,0,7,9,65.0,106.666666667,3.3,0,1,1542.0115960105238,1542.0115960105238,0.0 +5036,1010,1009,1,7,35,222,52,20,2,11381,0,0,0,0,2,6,1,3,1.8,1016.86516924,0,6500,35615.0,1,3,1,0,4,2,0,0,1,0,0,0,0,0,0,2,19786.1111111,6,3,6,6_1,15714.0,0,15714.0,0,7,9,65.0,106.666666667,3.3,0,1,1542.0115960105238,1542.0115960105238,0.0 5037,1017,1016,1,2,31,112,47,42,2,1139,0,0,0,0,2,3,2,4,2.1,2127.46746459,0,9900,42208.0,1,2,8,0,4,2,0,0,1,0,0,0,0,0,1,1,20099.047619,6,3,6,6_1,46784.0,0,20000.0,26784,2,4,80.1,13.0,3.3,0,1,4590.904321481249,1962.5958966660605,2628.308424815188 5038,1037,1036,6,8,42,300,67,50,0,11413,0,120,0,0,2,4,1,3,1.8,3319.01460116,1560,0,36993.0,1,2,0,1,4,2,0,0,0,1,0,0,0,0,0,2,20551.6666667,6,3,6,6_0,20144.0,0,20144.0,0,1,10,103.5,16.0,0.0,0,1,1980.084637812118,1980.084637812118,0.0 5039,1045,1044,7,7,50,112,62,50,0,11426,0,190,30,0,2,7,3,5,2.4,1011.42013181,7810,0,47452.0,1,2,4,0,4,3,0,1,1,0,0,0,0,0,1,2,19771.6666667,6,3,6,6_1,40000.0,0,25000.0,15000,2,5,234.7,58.3333333333,3.3,0,1,3925.191793332121,2453.2448708325755,1471.9469224995453 5040,1062,1061,8,10,46,112,63,50,0,11452,0,1000,0,0,2,4,1,3,2.0,2435.72734613,6552,0,41279.0,1,1,9,0,4,3,0,0,1,0,0,0,0,0,0,3,20639.5,6,3,6,6_1,25000.0,0,25000.0,0,2,5,344.5,53.3333333333,3.3,0,1,2453.2448708325755,2453.2448708325755,0.0 5041,1082,1081,11,11,76,111,75,42,0,11480,0,0,0,0,0,5,0,2,1.5,2259.11075813,1196,0,31837.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,21224.6666667,6,3,6,6_0,5000.0,0,0.0,5000,11,11,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 -5042,1096,1095,6,20,39,111,47,31,0,11500,0,0,150,480,3,3,3,6,2.9,1414.07611631,676,0,59489.0,1,3,9,7,5,1,0,1,0,0,0,1,0,0,1,0,20513.448275900002,6,3,6,6_0,3000.0,0,0.0,3000,14,12,34.5,28.0,1.1,1,0,294.88949133421136,0.0,294.88949133421136 +5042,1096,1095,6,20,39,111,47,31,0,11500,0,0,150,480,3,3,3,6,2.9,1414.07611631,676,0,59489.0,1,3,9,7,5,1,0,1,0,0,0,1,0,0,1,0,20513.4482759,6,3,6,6_0,3000.0,0,0.0,3000,14,12,34.5,28.0,1.1,1,0,294.88949133421136,0.0,294.88949133421136 5043,1106,1105,7,10,58,300,78,50,0,11511,0,0,0,0,1,6,0,2,1.5,1818.49820128,1560,0,30186.0,4,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,20124.0,6,3,6,6_1,12481.0,0,12481.0,0,10,10,0.0,0.0,0.0,0,1,1224.757969314455,1224.757969314455,0.0 5044,1130,1129,3,3,51,300,22,71,0,11545,0,0,0,0,2,6,1,3,2.0,3465.09114,2600,0,39300.0,1,2,0,0,4,1,1,0,1,0,0,0,0,0,0,1,19650.0,6,3,6,6_1,19000.0,0,19000.0,0,2,4,81.0,12.0,2.2,0,1,1864.4661018327574,1864.4661018327574,0.0 5045,1146,1145,6,6,56,211,63,50,0,11566,0,350,0,0,1,4,0,1,1.0,2266.65287144,0,0,21520.0,1,1,1,2,1,1,0,1,0,1,0,0,0,0,0,1,21520.0,6,3,6,6_0,35000.0,0,35000.0,0,3,10,53.0,20.0,3.3,0,1,3440.377398899133,3440.377398899133,0.0 5046,1155,1154,1,10,25,112,63,50,2,11577,0,100,30,0,2,4,2,4,2.1,4306.76276347,0,2300,44676.0,1,3,5,0,4,2,0,1,1,0,0,0,0,1,1,1,21274.2857143,6,3,6,6_1,57000.0,0,43000.0,14000,4,11,0.0,0.0,0.0,0,1,5593.398305498272,4219.58117783203,1373.8171276662424 5047,1162,1161,0,0,21,111,46,41,0,11587,0,0,0,167,1,2,0,1,1.0,3437.56738584,0,0,19853.0,1,3,8,7,1,0,0,0,0,0,0,1,0,1,0,0,19853.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 -5048,1163,1162,0,0,39,111,23,10,0,1159,0,0,0,0,2,4,2,4,2.1,3019.81789916,0,0,42284.0,1,1,10,8,4,0,0,0,0,0,0,0,1,0,0,0,20135.238095200002,6,3,6,6_0,0.0,0,0.0,0,0,0,152.4,63.75,5.56,0,0,0.0,0.0,0.0 +5048,1163,1162,0,0,39,111,23,10,0,1159,0,0,0,0,2,4,2,4,2.1,3019.81789916,0,0,42284.0,1,1,10,8,4,0,0,0,0,0,0,0,1,0,0,0,20135.2380952,6,3,6,6_0,0.0,0,0.0,0,0,0,152.4,63.75,5.56,0,0,0.0,0.0,0.0 5049,1175,1174,0,0,29,111,46,10,0,1161,0,0,0,600,1,1,0,1,1.0,3319.14543997,0,0,20951.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20951.0,6,3,6,6_0,0.0,0,0.0,0,0,0,39.5,90.0,5.56,0,0,0.0,0.0,0.0 5050,1180,1179,4,7,39,221,37,50,0,11615,0,0,0,0,2,5,1,3,1.8,3972.03111908,9090,0,38150.0,1,2,1,2,4,1,0,0,0,1,0,0,0,0,0,1,21194.4444444,6,3,6,6_0,20000.0,0,20000.0,0,8,9,132.5,16.6666666667,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 5051,1187,1186,13,13,46,112,64,50,0,11625,0,100,0,0,2,6,2,4,2.3,875.301039016,2553,0,46687.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,0,2,20298.6956522,6,3,6,6_1,20000.0,0,20000.0,0,2,9,0.0,1.5,1.1,1,0,1962.5958966660605,1962.5958966660605,0.0 @@ -5059,9 +5059,9 @@ 5057,1233,1232,2,8,26,111,33,12,0,11693,0,99999,0,224,1,2,0,1,1.0,3341.62317983,0,0,21042.0,1,3,7,5,1,1,1,1,0,0,1,0,0,1,0,1,21042.0,6,3,6,6_0,25000.0,0,25000.0,0,8,8,54.5,40.0,3.31,0,1,2457.4124277850947,2457.4124277850947,0.0 5058,1250,1249,8,9,55,400,54,50,0,11711,0,0,0,0,1,3,0,1,1.0,1731.50644446,1561,0,20742.0,4,2,0,0,1,1,0,0,1,0,0,0,0,0,0,1,20742.0,6,3,6,6_1,13000.0,0,13000.0,0,4,8,0.0,24.0,3.3,0,1,1275.6873328329393,1275.6873328329393,0.0 5059,1254,1253,2,7,50,112,54,60,0,11716,0,99999,200,0,1,5,1,3,2.0,1271.87356745,5788,0,41270.0,1,2,8,1,4,3,0,0,0,1,0,0,0,0,2,1,20635.0,6,3,6,6_0,16380.0,0,7000.0,9380,5,5,0.0,0.0,0.0,0,1,1610.096622684794,688.0754797798265,922.0211429049675 -5060,1256,1255,4,4,40,111,55,31,0,11719,0,2000,40,0,2,6,3,5,2.6,2486.93407208,2236,0,50498.0,1,2,8,7,4,2,1,1,0,0,0,1,0,0,1,1,19422.307692299997,6,3,6,6_0,32000.0,0,20000.0,12000,5,5,53.0,12.5,0.0,0,1,3145.487907564921,1965.9299422280758,1179.5579653368454 +5060,1256,1255,4,4,40,111,55,31,0,11719,0,2000,40,0,2,6,3,5,2.6,2486.93407208,2236,0,50498.0,1,2,8,7,4,2,1,1,0,0,0,1,0,0,1,1,19422.3076923,6,3,6,6_0,32000.0,0,20000.0,12000,5,5,53.0,12.5,0.0,0,1,3145.487907564921,1965.9299422280758,1179.5579653368454 5061,1262,1261,20,20,72,111,78,71,0,11730,0,0,0,301,0,3,0,2,1.5,3201.49886931,0,0,28720.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,1,0,19146.6666667,6,3,6,6_0,1500.0,0,0.0,1500,22,22,0.0,0.0,0.0,0,0,147.44474566710568,0.0,147.44474566710568 -5062,1285,1284,5,6,50,112,52,50,0,11763,0,240,650,0,3,6,2,4,2.3,2779.6355144999998,884,0,48234.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,1,1,20971.3043478,6,3,6,6_0,22036.0,0,13000.0,9036,5,5,81.5,21.25,3.3,0,1,2166.0616103468938,1277.8544624482493,888.2071478986446 +5062,1285,1284,5,6,50,112,52,50,0,11763,0,240,650,0,3,6,2,4,2.3,2779.6355145,884,0,48234.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,1,1,20971.3043478,6,3,6,6_0,22036.0,0,13000.0,9036,5,5,81.5,21.25,3.3,0,1,2166.0616103468938,1277.8544624482493,888.2071478986446 5063,1306,1305,0,21,95,111,75,70,0,11790,0,0,0,420,0,4,0,2,1.5,3934.58845653,0,0,29031.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,19354.0,6,3,6,6_0,500.0,0,0.0,500,16,17,0.0,0.0,0.0,0,0,49.14824855570189,0.0,49.14824855570189 5064,1309,1308,1,4,61,111,77,50,0,11795,0,0,0,0,0,4,0,2,1.5,1238.35297352,0,0,31473.0,5,2,5,4,3,1,0,0,0,0,1,0,0,0,0,1,20982.0,6,3,6,6_0,15000.0,0,15000.0,0,2,2,0.0,0.0,0.0,0,0,1474.4474566710567,1474.4474566710567,0.0 5065,1313,1312,3,4,73,112,74,10,0,1180,0,0,0,0,0,10,0,2,1.5,1466.26437312,0,0,30487.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,2,0,20324.6666667,6,3,6,6_1,64460.0,0,0.0,64460,1,5,0.0,0.0,0.0,0,0,6325.446574954713,0.0,6325.446574954713 @@ -5079,20 +5079,20 @@ 5077,1440,1439,1,4,42,111,53,42,2,11978,0,0,0,0,2,6,2,4,2.1,1393.56207391,2860,16500,42752.0,1,4,6,5,4,1,0,0,0,0,1,0,0,0,0,1,20358.0952381,6,3,6,6_0,22000.0,0,22000.0,0,3,3,84.0,60.0,3.3,0,1,2162.522936450883,2162.522936450883,0.0 5078,1443,1442,11,11,68,111,75,60,0,11981,0,0,0,0,0,3,0,1,1.0,2602.13157415,2603,0,19417.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,19417.0,6,3,6,6_0,600.0,0,0.0,600,10,10,0.0,0.0,0.0,0,0,58.977898266842274,0.0,58.977898266842274 5079,1447,1446,0,0,76,111,77,50,0,11987,0,0,0,0,0,2,0,1,1.0,2563.00615103,0,0,19282.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,19282.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5080,1454,1453,4,10,33,111,46,60,0,11999,0,530,0,580,2,6,2,4,2.1,2370.27301357,3120,0,41619.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,0,2,19818.571428599997,6,3,6,6_0,32500.0,0,32500.0,0,10,10,16.0,4.5,3.31,0,1,3194.6361561206236,3194.6361561206236,0.0 +5080,1454,1453,4,10,33,111,46,60,0,11999,0,530,0,580,2,6,2,4,2.1,2370.27301357,3120,0,41619.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,0,2,19818.5714286,6,3,6,6_0,32500.0,0,32500.0,0,10,10,16.0,4.5,3.31,0,1,3194.6361561206236,3194.6361561206236,0.0 5081,1455,1454,0,0,75,111,75,70,0,12,0,0,0,470,0,1,0,1,1.0,3847.42308843,0,0,20846.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,20846.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5082,1472,1471,6,6,57,112,45,50,0,12019,0,0,450,0,1,4,1,2,1.5,2580.85420743,1513,0,31054.0,1,1,4,0,2,1,0,1,1,0,0,0,0,0,1,0,20702.6666667,6,3,6,6_1,30000.0,0,0.0,30000,12,7,0.0,90.0,3.3,0,1,2943.8938449990906,0.0,2943.8938449990906 -5083,1483,1482,4,13,37,112,65,50,0,12035,0,250,0,650,2,3,1,3,1.8,2999.63920226,0,0,35993.0,1,3,9,3,4,2,0,0,0,1,0,0,0,0,0,2,19996.111111099995,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 +5083,1483,1482,4,13,37,112,65,50,0,12035,0,250,0,650,2,3,1,3,1.8,2999.63920226,0,0,35993.0,1,3,9,3,4,2,0,0,0,1,0,0,0,0,0,2,19996.1111111,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 5084,1498,1497,7,7,54,112,69,50,0,12055,0,250,0,0,2,6,0,2,1.5,4025.85634469,2880,0,29930.0,1,1,8,3,3,2,0,1,0,1,0,0,0,0,1,1,19953.3333333,6,3,6,6_0,27622.0,0,17343.0,10279,5,0,0.0,15.0,3.31,1,1,2715.145843211196,1704.756149403076,1010.3896938081195 5085,1512,1511,4,6,43,211,54,31,0,12071,0,150,0,0,2,6,1,3,1.8,2288.24641629,2496,0,36260.0,1,2,3,3,4,2,0,1,0,1,0,0,0,0,0,2,20144.4444444,6,3,6,6_0,13226.0,0,13226.0,0,1,4,102.4,56.6666666667,3.3,0,1,1300.0694707954265,1300.0694707954265,0.0 5086,1522,1521,1,12,24,111,47,31,2,12089,0,0,300,0,2,2,0,2,1.5,1749.54612298,1981,2000,31209.0,1,3,10,8,3,2,0,1,0,0,0,0,1,0,1,0,20806.0,6,3,6,6_0,20000.0,0,0.0,20000,5,11,0.0,21.0,1.1,0,1,1965.9299422280758,0.0,1965.9299422280758 5087,1529,1528,5,7,57,112,54,50,0,12096,0,100,0,0,1,5,0,2,1.5,1858.70132217,2600,0,30866.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,0,2,20577.3333333,6,3,6,6_1,60000.0,0,60000.0,0,6,7,0.0,90.0,3.3,0,1,5887.787689998181,5887.787689998181,0.0 5088,1530,1529,4,10,48,111,35,42,0,12097,0,199998,199998,0,3,4,3,5,3.0,1596.36284506,0,0,58231.0,1,1,9,7,4,4,0,1,0,0,0,1,0,0,2,2,19410.3333333,6,3,6,6_0,6000.0,0,6000.0,0,5,17,0.0,12.75,3.31,0,0,589.7789826684227,589.7789826684227,0.0 5089,1531,1530,0,17,26,111,67,42,2,12098,0,0,300,290,2,2,0,2,1.5,5107.8872905,1040,800,29776.0,1,3,6,5,3,1,0,1,0,0,1,0,0,0,1,0,19850.6666667,6,3,6,6_0,16500.0,0,0.0,16500,2,22,0.0,11.0,0.0,0,1,1621.8922023381626,0.0,1621.8922023381626 -5090,1539,1538,6,7,78,111,78,50,0,12107,0,0,0,0,1,5,1,4,2.3,946.2251759989999,0,0,45040.0,5,1,8,6,5,1,0,0,0,0,1,0,0,0,1,0,19582.6086957,6,3,6,6_0,5000.0,0,0.0,5000,7,7,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 +5090,1539,1538,6,7,78,111,78,50,0,12107,0,0,0,0,1,5,1,4,2.3,946.225175999,0,0,45040.0,5,1,8,6,5,1,0,0,0,0,1,0,0,0,1,0,19582.6086957,6,3,6,6_0,5000.0,0,0.0,5000,7,7,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 5091,1543,1542,0,0,40,111,34,10,0,12113,0,0,0,0,1,2,0,1,1.0,3940.04486003,0,0,19734.0,1,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,19734.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5092,1572,1571,7,7,36,111,54,31,0,12155,0,99999,0,453,1,2,0,1,1.0,2326.85547475,1300,0,19320.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,19320.0,6,3,6,6_0,15000.0,0,15000.0,0,3,7,0.0,20.0,3.3,0,1,1474.4474566710567,1474.4474566710567,0.0 -5093,1587,1586,7,9,37,112,47,43,0,12175,0,215,0,0,2,5,2,4,2.1,3037.94150221,0,0,44244.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,21068.571428599997,6,3,6,6_1,20000.0,0,20000.0,0,8,9,159.8,24.5,3.3,1,1,1962.5958966660605,1962.5958966660605,0.0 +5093,1587,1586,7,9,37,112,47,43,0,12175,0,215,0,0,2,5,2,4,2.1,3037.94150221,0,0,44244.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,21068.5714286,6,3,6,6_1,20000.0,0,20000.0,0,8,9,159.8,24.5,3.3,1,1,1962.5958966660605,1962.5958966660605,0.0 5094,1590,1589,4,5,60,112,52,50,0,12181,0,80,0,0,1,4,0,1,1.0,1644.75438641,0,0,19213.0,1,1,7,1,1,1,0,1,0,1,0,0,0,0,0,1,19213.0,6,3,6,6_0,1800.0,0,1800.0,0,4,9,51.0,30.0,3.3,0,1,176.93369480052684,176.93369480052684,0.0 5095,1619,1618,14,14,70,120,75,50,0,12229,0,0,0,0,0,3,0,2,1.5,1002.99746823,0,0,30882.0,5,1,0,3,3,1,0,0,0,1,0,0,0,0,1,0,20588.0,6,3,6,6_0,6000.0,0,0.0,6000,4,13,0.0,0.0,0.0,0,0,589.7789826684227,0.0,589.7789826684227 5096,1622,1621,0,14,25,221,63,50,0,12233,0,300,150,0,2,4,0,2,1.5,2872.59639663,2340,0,32407.0,1,3,1,2,3,2,0,1,0,1,0,0,0,1,1,1,21604.6666667,6,3,6,6_0,20920.0,0,16672.0,4248,1,16,272.5,90.0,3.33,0,1,2056.362719570567,1638.7991998413238,417.5635197292433 @@ -5101,42 +5101,42 @@ 5099,1640,1639,1,1,80,111,75,71,1,12263,0,0,0,0,0,5,0,2,1.5,2500.49512214,0,27000,29542.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,19694.6666667,6,3,6,6_0,2500.0,0,2500.0,0,1,1,0.0,0.0,0.0,0,0,245.74124277850947,245.74124277850947,0.0 5100,1645,1644,0,0,76,111,75,70,0,12273,0,0,0,1000,0,2,0,1,1.0,3359.61446802,0,0,21467.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21467.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5101,1666,1665,1,9,26,400,52,50,0,12301,0,0,0,0,1,3,0,1,1.0,4597.30913919,1560,0,19507.0,1,3,0,0,1,1,0,0,1,0,0,0,0,0,0,1,19507.0,6,3,6,6_1,18000.0,0,18000.0,0,3,6,0.0,20.0,3.3,0,1,1766.3363069994543,1766.3363069994543,0.0 -5102,1696,1695,9,10,36,300,63,50,0,12341,0,600,108,0,2,6,2,4,2.1,1160.6920309,2861,0,41107.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,19574.761904799998,6,3,6,6_1,40000.0,0,20000.0,20000,9,10,131.2,35.0,3.3,0,1,3925.191793332121,1962.5958966660605,1962.5958966660605 +5102,1696,1695,9,10,36,300,63,50,0,12341,0,600,108,0,2,6,2,4,2.1,1160.6920309,2861,0,41107.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,19574.7619048,6,3,6,6_1,40000.0,0,20000.0,20000,9,10,131.2,35.0,3.3,0,1,3925.191793332121,1962.5958966660605,1962.5958966660605 5103,1706,1705,29,29,75,111,78,50,0,12354,0,0,0,0,0,3,0,1,1.0,3244.04451118,0,0,21254.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,21254.0,6,3,6,6_0,16666.0,0,0.0,16666,24,24,0.0,0.0,0.0,0,0,1638.2094208586557,0.0,1638.2094208586557 5104,1713,1712,0,0,83,111,75,71,0,12363,0,0,0,0,0,2,0,2,1.5,3544.08133188,0,0,31158.0,5,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,20772.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5105,1729,1728,4,21,51,111,67,50,0,12383,0,120,0,0,1,3,1,2,1.3,2867.54009218,4680,0,25566.0,1,3,7,5,2,2,0,1,0,0,1,0,0,0,1,1,19666.153846200003,6,3,6,6_0,19843.0,0,17343.0,2500,8,8,0.0,20.0,3.3,0,1,1950.4973921815854,1704.756149403076,245.74124277850947 +5105,1729,1728,4,21,51,111,67,50,0,12383,0,120,0,0,1,3,1,2,1.3,2867.54009218,4680,0,25566.0,1,3,7,5,2,2,0,1,0,0,1,0,0,0,1,1,19666.1538462,6,3,6,6_0,19843.0,0,17343.0,2500,8,8,0.0,20.0,3.3,0,1,1950.4973921815854,1704.756149403076,245.74124277850947 5106,1734,1733,11,12,43,112,53,41,0,12391,0,690,0,0,2,6,3,5,2.6,3041.39473276,3914,0,55623.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,21393.4615385,6,3,6,6_1,30000.0,0,30000.0,0,10,14,78.6,11.6,3.3,0,1,2943.8938449990906,2943.8938449990906,0.0 5107,1738,1737,9,12,33,111,47,31,0,124,0,730,40,0,2,5,2,4,2.1,4015.10520381,3292,0,44380.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,1,1,21133.3333333,6,3,6,6_0,45000.0,0,35000.0,10000,4,14,213.0,25.0,3.33,0,1,4423.342370013171,3440.377398899133,982.9649711140379 5108,1739,1738,2,3,52,221,55,70,0,1240,0,600,0,0,1,4,0,2,1.5,4755.0668789,1404,0,31543.0,1,1,1,1,3,1,0,1,0,1,0,0,0,0,0,1,21028.6666667,6,3,6,6_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 5109,1744,1743,8,9,33,112,45,10,0,12407,0,230,0,0,1,4,1,2,1.3,2096.86107961,0,0,26158.0,1,2,7,0,2,2,0,1,1,0,0,0,0,0,0,2,20121.5384615,6,3,6,6_1,15000.0,0,15000.0,0,2,14,76.8,50.0,3.3,1,1,1471.9469224995453,1471.9469224995453,0.0 -5110,1764,1763,2,14,49,112,43,20,0,1243,0,300,300,0,2,7,2,4,2.1,1426.44608173,0,0,45352.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,1,1,21596.190476199998,6,3,6,6_1,27102.0,0,17102.0,10000,7,10,84.0,66.6666666667,3.3,0,1,2659.5136995721787,1678.2157512391484,981.2979483330303 +5110,1764,1763,2,14,49,112,43,20,0,1243,0,300,300,0,2,7,2,4,2.1,1426.44608173,0,0,45352.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,1,1,21596.1904762,6,3,6,6_1,27102.0,0,17102.0,10000,7,10,84.0,66.6666666667,3.3,0,1,2659.5136995721787,1678.2157512391484,981.2979483330303 5111,1768,1767,1,13,38,111,64,50,2,12438,0,0,0,0,1,2,0,1,1.0,1967.04456953,0,1200,19777.0,1,2,7,5,1,1,0,0,0,0,1,0,0,0,0,1,19777.0,6,3,6,6_0,2000.0,0,2000.0,0,13,13,0.0,0.0,0.0,1,0,196.59299422280756,196.59299422280756,0.0 5112,1782,1781,0,45,43,111,62,50,0,12456,0,200,0,540,1,3,0,1,1.0,3930.09195417,4991,0,20830.0,1,3,9,7,1,3,0,0,0,0,0,1,0,0,1,2,20830.0,6,3,6,6_0,35000.0,0,35000.0,0,2,16,0.0,4.0,1.1,0,0,3440.377398899133,3440.377398899133,0.0 5113,1788,1787,7,8,71,211,74,60,0,12463,0,0,0,0,0,7,0,2,1.5,1068.56064207,0,0,30330.0,5,2,3,4,3,2,0,0,0,0,1,0,0,0,2,0,20220.0,6,3,6,6_0,3000.0,0,0.0,3000,7,7,0.0,0.0,0.0,0,0,294.88949133421136,0.0,294.88949133421136 5114,1794,1793,18,23,61,111,78,50,0,12469,0,0,0,0,0,5,0,2,1.5,2032.45966887,0,0,29566.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,1,1,19710.6666667,6,3,6,6_0,13000.0,0,10000.0,3000,4,9,0.0,0.0,0.0,0,0,1277.8544624482493,982.9649711140379,294.88949133421136 5115,1799,1798,3,6,58,221,71,50,0,12476,0,0,0,0,0,2,0,1,1.0,1746.96834674,3016,0,21480.0,5,1,1,3,1,2,0,0,0,1,0,0,0,0,0,2,21480.0,6,3,6,6_0,11200.0,0,11200.0,0,4,7,0.0,0.0,0.0,0,0,1100.9207676477224,1100.9207676477224,0.0 -5116,1806,1805,7,8,46,111,38,43,0,12485,0,99999,0,0,3,6,2,4,2.3,6345.1627561000005,3276,0,46274.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,0,2,20119.130434799998,6,3,6,6_0,9000.0,0,9000.0,0,1,1,0.0,51.25,3.3,1,1,884.6684740026342,884.6684740026342,0.0 +5116,1806,1805,7,8,46,111,38,43,0,12485,0,99999,0,0,3,6,2,4,2.3,6345.1627561,3276,0,46274.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,0,2,20119.1304348,6,3,6,6_0,9000.0,0,9000.0,0,1,1,0.0,51.25,3.3,1,1,884.6684740026342,884.6684740026342,0.0 5117,1807,1806,2,8,36,111,43,20,0,12487,0,130,0,0,1,2,0,1,1.0,2524.86539501,0,0,20346.0,1,4,8,7,1,1,0,1,0,0,0,1,0,0,0,1,20346.0,6,3,6,6_0,15000.0,0,15000.0,0,3,7,0.0,20.0,3.3,0,1,1474.4474566710567,1474.4474566710567,0.0 -5118,1810,1809,6,22,39,111,54,44,0,12490,0,0,90,1000,2,4,1,3,2.0,2114.5926655000003,1047,0,41347.0,1,3,9,7,4,2,1,1,0,0,0,1,0,0,2,0,20673.5,6,3,6,6_0,20000.0,0,0.0,20000,3,17,145.8,25.3333333333,3.3,0,0,1965.9299422280758,0.0,1965.9299422280758 +5118,1810,1809,6,22,39,111,54,44,0,12490,0,0,90,1000,2,4,1,3,2.0,2114.5926655,1047,0,41347.0,1,3,9,7,4,2,1,1,0,0,0,1,0,0,2,0,20673.5,6,3,6,6_0,20000.0,0,0.0,20000,3,17,145.8,25.3333333333,3.3,0,0,1965.9299422280758,0.0,1965.9299422280758 5119,1836,1835,13,20,55,112,52,71,0,12529,0,400,0,0,1,4,0,2,1.5,2754.86050643,0,0,31496.0,1,1,6,0,3,2,0,0,1,0,0,0,0,0,0,2,20997.3333333,6,3,6,6_1,1500.0,0,1500.0,0,2,21,0.0,0.0,0.0,0,0,147.19469224995453,147.19469224995453,0.0 -5120,1842,1841,3,5,33,111,54,20,0,12535,0,0,460,0,2,4,1,3,1.8,1178.8126105000001,7046,0,38114.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,2,0,21174.4444444,6,3,6,6_0,7248.0,0,0.0,7248,1,1,0.0,25.3333333333,3.3,0,1,712.4530110634547,0.0,712.4530110634547 -5121,1846,1845,7,14,39,111,43,33,0,1254,0,0,0,0,2,3,1,3,1.8,3468.51318883,0,0,35429.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,19682.777777799998,6,3,6,6_0,10384.0,0,0.0,10384,14,15,38.0,33.3333333333,3.3,0,1,1020.710826004817,0.0,1020.710826004817 +5120,1842,1841,3,5,33,111,54,20,0,12535,0,0,460,0,2,4,1,3,1.8,1178.8126105,7046,0,38114.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,2,0,21174.4444444,6,3,6,6_0,7248.0,0,0.0,7248,1,1,0.0,25.3333333333,3.3,0,1,712.4530110634547,0.0,712.4530110634547 +5121,1846,1845,7,14,39,111,43,33,0,1254,0,0,0,0,2,3,1,3,1.8,3468.51318883,0,0,35429.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,19682.7777778,6,3,6,6_0,10384.0,0,0.0,10384,14,15,38.0,33.3333333333,3.3,0,1,1020.710826004817,0.0,1020.710826004817 5122,1855,1854,3,5,58,111,78,71,0,12552,0,99999,0,0,1,4,0,2,1.5,6573.59116731,3016,0,30940.0,7,1,9,7,3,2,0,1,0,0,0,1,0,0,0,2,20626.6666667,6,3,6,6_0,12000.0,0,12000.0,0,4,5,0.0,0.0,0.0,0,1,1179.5579653368454,1179.5579653368454,0.0 5123,1856,1855,4,18,36,111,55,30,0,12553,0,0,100,331,1,1,0,1,1.0,6125.0527711,0,0,20270.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,20270.0,6,3,6,6_0,2000.0,0,0.0,2000,4,13,0.0,10.0,3.3,0,1,196.59299422280756,0.0,196.59299422280756 5124,1865,1864,1,7,45,112,47,42,0,12570,0,230,0,0,2,2,3,5,2.4,4085.64692112,3732,0,51458.0,1,4,9,3,4,2,0,1,0,1,0,0,0,0,0,2,21440.8333333,6,3,6,6_0,2000.0,0,2000.0,0,3,8,447.3,70.0,5.5,0,0,196.59299422280756,196.59299422280756,0.0 5125,1884,1883,0,22,68,111,74,60,0,12598,0,0,0,366,0,3,0,1,1.0,3326.32226999,0,0,19629.0,5,3,7,6,1,1,0,0,0,0,1,0,0,0,1,0,19629.0,6,3,6,6_0,3500.0,0,0.0,3500,20,20,0.0,0.0,0.0,0,0,344.03773988991327,0.0,344.03773988991327 5126,1918,1917,4,6,26,111,43,33,0,1264,0,450,0,0,1,1,0,1,1.0,2783.16651821,1040,0,20661.0,1,2,4,4,1,1,0,1,0,0,1,0,0,0,0,1,20661.0,6,3,6,6_0,30000.0,0,30000.0,0,4,6,0.0,20.0,3.3,1,1,2948.8949133421133,2948.8949133421133,0.0 -5127,1932,1931,7,16,50,111,56,71,0,12659,0,100,75,338,4,5,2,5,2.8,2451.91145392,0,0,54750.0,1,3,7,6,5,3,0,1,0,0,1,0,0,0,1,2,19553.571428599997,6,3,6,6_0,20000.0,0,20000.0,0,6,16,153.1,26.0,3.39,0,1,1965.9299422280758,1965.9299422280758,0.0 +5127,1932,1931,7,16,50,111,56,71,0,12659,0,100,75,338,4,5,2,5,2.8,2451.91145392,0,0,54750.0,1,3,7,6,5,3,0,1,0,0,1,0,0,0,1,2,19553.5714286,6,3,6,6_0,20000.0,0,20000.0,0,6,16,153.1,26.0,3.39,0,1,1965.9299422280758,1965.9299422280758,0.0 5128,1956,1955,3,15,60,221,75,50,0,12690,0,0,0,0,0,3,0,2,1.5,1240.32763054,0,0,29700.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,19800.0,6,3,6,6_0,10000.0,0,10000.0,0,9,17,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 5129,1965,1964,7,21,53,300,67,50,0,12700,0,200,15,0,2,5,0,2,1.5,1206.79789427,3121,0,31980.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,1,1,21320.0,6,3,6,6_1,32000.0,0,20000.0,12000,2,16,0.0,20.0,0.0,0,1,3140.1534346656968,1962.5958966660605,1177.5575379996362 5130,1969,1968,0,0,73,111,75,71,1,12706,0,0,0,0,0,5,0,2,1.5,2954.20694237,0,13129,29380.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,19586.6666667,6,3,6,6_0,4500.0,0,0.0,4500,8,9,0.0,0.0,0.0,0,0,442.3342370013171,0.0,442.3342370013171 5131,1970,1969,3,16,31,111,55,31,0,12707,0,150,100,0,2,4,0,2,1.5,2106.85381934,0,0,29183.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,1,1,19455.3333333,6,3,6,6_0,20920.0,0,16672.0,4248,1,16,272.5,90.0,3.33,0,1,2056.362719570567,1638.7991998413238,417.5635197292433 5132,1971,1970,0,15,23,111,47,31,0,12708,0,56,0,580,1,2,0,1,1.0,3737.10102409,0,0,21325.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,21325.0,6,3,6,6_0,11287.0,0,11287.0,0,0,12,63.0,40.0,3.3,0,1,1109.4725628964145,1109.4725628964145,0.0 -5133,1981,1980,5,7,45,221,46,50,0,1272,0,500,0,0,1,6,2,3,1.8,2959.05935163,3960,0,34711.0,1,2,1,2,2,1,0,1,0,1,0,0,0,0,0,1,19283.888888900005,6,3,6,6_0,35000.0,0,35000.0,0,5,7,206.0,75.0,3.3,1,1,3440.377398899133,3440.377398899133,0.0 +5133,1981,1980,5,7,45,221,46,50,0,1272,0,500,0,0,1,6,2,3,1.8,2959.05935163,3960,0,34711.0,1,2,1,2,2,1,0,1,0,1,0,0,0,0,0,1,19283.8888889,6,3,6,6_0,35000.0,0,35000.0,0,5,7,206.0,75.0,3.3,1,1,3440.377398899133,3440.377398899133,0.0 5134,2019,2018,1,1,64,111,74,50,1,12778,0,0,0,0,0,3,0,2,1.5,1948.79641164,0,24900,32427.0,5,1,3,4,3,1,0,0,0,0,1,0,0,0,0,1,21618.0,6,3,6,6_0,6000.0,0,6000.0,0,8,1,0.0,0.0,0.0,0,0,589.7789826684227,589.7789826684227,0.0 5135,2028,2027,3,14,44,111,67,71,0,12788,0,300,0,670,1,3,1,2,1.5,6541.8080285,3120,0,28724.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,19149.3333333,6,3,6,6_0,35000.0,0,35000.0,0,2,7,227.5,80.0,3.3,0,1,3440.377398899133,3440.377398899133,0.0 5136,2045,2044,1,24,47,112,34,10,2,12809,0,700,100069,0,2,5,2,4,2.5,1661.79104773,2600,500,53564.0,1,3,8,0,4,3,0,1,1,0,0,0,0,0,2,1,21425.6,6,3,6,6_1,27102.0,0,17102.0,10000,7,10,84.0,66.6666666667,3.3,0,1,2659.5136995721787,1678.2157512391484,981.2979483330303 -5137,2056,2055,0,7,56,111,21,31,2,12823,0,0,0,0,2,5,3,5,2.8,2486.33625103,12376,5500,58580.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,1,1,20921.428571400003,6,3,6,6_0,35000.0,0,15000.0,20000,2,4,76.2,44.0,3.3,0,1,3440.377398899133,1474.4474566710567,1965.9299422280758 +5137,2056,2055,0,7,56,111,21,31,2,12823,0,0,0,0,2,5,3,5,2.8,2486.33625103,12376,5500,58580.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,1,1,20921.4285714,6,3,6,6_0,35000.0,0,15000.0,20000,2,4,76.2,44.0,3.3,0,1,3440.377398899133,1474.4474566710567,1965.9299422280758 5138,2061,2060,0,0,72,112,78,71,1,12828,0,0,0,0,0,4,0,2,1.5,5288.69401106,0,19450,30660.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,1,0,20440.0,6,3,6,6_1,6600.0,0,0.0,6600,1,1,0.0,0.0,0.0,0,0,647.6566458998,0.0,647.6566458998 5139,2063,2062,0,0,89,120,77,70,0,1283,0,0,0,635,0,3,0,1,1.0,5601.52750577,0,0,19405.0,5,3,0,2,1,0,0,0,0,1,0,0,0,0,0,0,19405.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5140,2065,2064,3,11,67,111,77,71,0,12831,0,0,0,0,0,5,0,1,1.0,3603.17736525,1925,0,20554.0,5,3,6,4,1,1,0,0,0,0,1,0,0,0,1,0,20554.0,6,3,6,6_0,5000.0,0,0.0,5000,11,11,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 @@ -5147,7 +5147,7 @@ 5145,2129,2128,2,11,26,111,45,50,0,12918,0,0,20,0,2,3,0,2,1.5,3381.75720844,0,0,29447.0,1,2,9,7,3,1,1,1,0,0,0,1,0,0,1,0,19631.3333333,6,3,6,6_0,20000.0,0,0.0,20000,2,11,0.0,0.0,0.0,0,1,1965.9299422280758,0.0,1965.9299422280758 5146,2143,2142,0,0,84,111,75,70,0,12935,0,0,0,0,0,3,0,1,1.0,2747.89792097,0,0,20330.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,20330.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5147,2147,2146,22,22,83,112,71,70,0,1294,0,0,0,0,0,7,0,2,1.5,1174.58911412,0,0,29574.0,5,1,6,0,3,1,0,0,1,0,0,0,0,0,1,0,19716.0,6,3,6,6_1,1500.0,0,0.0,1500,21,21,0.0,0.0,0.0,0,0,147.19469224995453,0.0,147.19469224995453 -5148,2153,2152,2,9,26,111,53,50,0,12949,0,0,0,219,2,4,1,3,1.8,2975.32039828,0,0,34543.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,1,0,19190.5555556,6,3,6,6_0,16000.0,0,0.0,16000,6,7,0.0,6.666666666669999,0.0,0,1,1572.7439537824605,0.0,1572.7439537824605 +5148,2153,2152,2,9,26,111,53,50,0,12949,0,0,0,219,2,4,1,3,1.8,2975.32039828,0,0,34543.0,1,3,8,7,4,1,0,1,0,0,0,1,0,1,1,0,19190.5555556,6,3,6,6_0,16000.0,0,0.0,16000,6,7,0.0,6.66666666667,0.0,0,1,1572.7439537824605,0.0,1572.7439537824605 5149,2161,2160,2,13,55,221,65,50,0,12957,0,0,490,0,3,4,1,3,2.0,2417.6024522,2343,0,41793.0,1,2,1,2,4,3,0,1,0,1,0,0,0,0,2,1,20896.5,6,3,6,6_0,23259.0,0,0.0,23259,14,14,572.5,80.0,3.3,0,1,2286.2782263141407,0.0,2286.2782263141407 5150,2177,2176,0,1,75,400,74,70,2,12979,0,0,0,0,0,5,0,2,1.5,1969.34661283,0,11200,29155.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,19436.6666667,6,3,6,6_1,11000.0,0,11000.0,0,1,1,0.0,0.0,0.0,0,0,1079.4277431663334,1079.4277431663334,0.0 5151,2178,2177,0,0,81,111,78,70,0,12981,0,0,0,255,0,4,0,1,1.0,3410.01501429,0,0,19210.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,19210.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -5161,7 +5161,7 @@ 5159,2273,2272,0,6,62,211,78,70,0,13113,0,0,0,0,0,4,0,2,1.5,1498.05788331,0,0,28960.0,5,2,2,3,3,1,0,0,0,1,0,0,0,0,0,1,19306.6666667,6,3,6,6_0,26000.0,0,26000.0,0,5,7,0.0,0.0,0.0,0,0,2555.7089248964985,2555.7089248964985,0.0 5160,2281,2280,10,14,35,111,45,31,0,13123,0,0,180,375,1,2,0,1,1.0,3816.94548417,0,0,19576.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,1,0,19576.0,6,3,6,6_0,3200.0,0,0.0,3200,6,15,33.6,20.0,3.3,0,1,314.5487907564921,0.0,314.5487907564921 5161,2285,2284,0,0,74,111,78,50,0,13130,0,0,0,0,0,3,0,2,1.5,2625.45223021,0,0,30920.0,5,1,8,7,3,0,0,0,0,0,0,1,0,0,0,0,20613.3333333,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5162,2290,2289,5,7,33,112,42,50,0,13145,0,0,0,570,2,3,2,4,2.1,2640.0423425999998,0,0,41699.0,1,3,9,1,4,1,0,0,0,1,0,0,0,0,0,1,19856.6666667,6,3,6,6_0,25000.0,0,25000.0,0,2,5,253.5,63.75,0.0,0,0,2457.4124277850947,2457.4124277850947,0.0 +5162,2290,2289,5,7,33,112,42,50,0,13145,0,0,0,570,2,3,2,4,2.1,2640.0423426,0,0,41699.0,1,3,9,1,4,1,0,0,0,1,0,0,0,0,0,1,19856.6666667,6,3,6,6_0,25000.0,0,25000.0,0,2,5,253.5,63.75,0.0,0,0,2457.4124277850947,2457.4124277850947,0.0 5163,2296,2295,0,0,85,400,78,71,0,13158,0,0,0,368,0,4,0,1,1.0,2674.77560927,0,0,21439.0,5,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,21439.0,6,3,6,6_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5164,2298,2297,1,2,51,112,37,50,2,1316,0,50,0,0,2,5,1,3,2.0,1584.21039605,4098,13500,42265.0,1,1,8,0,4,2,1,1,1,0,0,0,0,0,1,1,21132.5,6,3,6,6_1,29000.0,0,20000.0,9000,6,7,114.2,26.6666666667,3.3,0,1,2845.764050165788,1962.5958966660605,883.1681534997272 5165,2299,2298,2,14,53,111,62,71,0,13160,0,500,0,0,2,4,1,3,1.8,1196.93919456,2451,0,38224.0,1,1,5,4,4,1,0,1,0,0,1,0,0,0,0,1,21235.5555556,6,3,6,6_0,11231.0,0,11231.0,0,13,14,455.5,29.0,5.5,0,0,1103.967959058176,1103.967959058176,0.0 @@ -5171,7 +5171,7 @@ 5169,2341,2340,0,0,70,111,77,71,0,13219,0,0,0,359,0,3,0,1,1.0,2968.71757594,0,0,19563.0,5,3,8,6,1,0,0,0,0,0,1,0,0,0,0,0,19563.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5170,2348,2347,7,7,68,111,78,50,0,13227,0,0,0,0,0,5,0,2,1.5,3065.94572199,0,0,32047.0,5,4,9,7,3,1,0,0,0,0,0,1,0,0,0,1,21364.6666667,6,3,6,6_0,8716.0,0,8716.0,0,1,7,0.0,0.0,0.0,0,0,856.7522688229955,856.7522688229955,0.0 5171,2372,2371,0,0,82,120,78,70,0,13261,0,0,0,0,0,4,0,2,1.5,1838.62955854,0,0,29099.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,19399.3333333,6,3,6,6_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5172,2379,2378,8,8,45,112,62,71,0,13273,0,50,50,0,2,5,2,4,2.1,2084.03015834,0,0,42205.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,1,1,20097.619047599997,6,3,6,6_1,27102.0,0,17102.0,10000,7,10,84.0,66.6666666667,3.3,0,1,2659.5136995721787,1678.2157512391484,981.2979483330303 +5172,2379,2378,8,8,45,112,62,71,0,13273,0,50,50,0,2,5,2,4,2.1,2084.03015834,0,0,42205.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,1,1,20097.6190476,6,3,6,6_1,27102.0,0,17102.0,10000,7,10,84.0,66.6666666667,3.3,0,1,2659.5136995721787,1678.2157512391484,981.2979483330303 5173,2386,2385,0,21,66,400,38,42,0,13280,0,0,0,0,1,6,0,3,2.0,3837.32273448,1040,0,42424.0,5,1,0,1,5,1,0,0,0,1,0,0,0,0,1,0,21212.0,6,3,6,6_0,5000.0,0,0.0,5000,7,7,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 5174,2403,2402,8,11,43,112,48,44,0,13299,0,450,0,0,2,4,2,4,2.5,2188.32120529,2600,0,48119.0,1,1,6,0,4,2,0,1,1,0,0,0,0,0,0,2,19247.6,6,3,6,6_1,19672.0,0,19672.0,0,5,11,261.0,30.0,3.3,0,1,1930.409323960737,1930.409323960737,0.0 5175,2406,2405,1,3,34,211,46,31,2,13300,0,0,0,0,2,6,3,5,2.4,2007.54441531,2808,14000,49797.0,1,2,2,3,4,1,0,0,0,1,0,0,0,0,0,1,20748.75,6,3,6,6_0,21000.0,0,21000.0,0,2,3,0.0,0.0,0.0,0,1,2064.22643933948,2064.22643933948,0.0 @@ -5181,40 +5181,40 @@ 5179,2426,2425,4,4,36,112,62,60,0,13333,0,70,0,0,2,4,1,3,2.0,3598.61625786,2191,0,39300.0,1,1,6,0,4,2,0,1,1,0,0,0,0,0,0,2,19650.0,6,3,6,6_1,8287.0,0,8287.0,0,1,5,334.5,64.6666666667,3.31,0,1,813.2016097835822,813.2016097835822,0.0 5180,2429,2428,0,0,78,111,78,71,0,13338,0,0,0,374,0,3,0,1,1.0,3176.47036034,0,0,20850.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20850.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5181,2432,2431,3,3,64,112,72,50,0,13341,0,0,0,0,0,7,0,2,1.5,2767.52355628,0,0,30497.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,0,2,20331.3333333,6,3,6,6_1,10000.0,0,10000.0,0,7,8,0.0,0.0,0.0,0,0,981.2979483330303,981.2979483330303,0.0 -5182,2435,2434,12,15,76,112,75,70,0,13344,0,0,0,504,0,4,0,1,1.0,3565.9775141000005,0,0,21399.0,5,3,7,1,1,1,0,0,0,1,0,0,0,0,1,0,21399.0,6,3,6,6_0,10258.0,0,0.0,10258,5,14,0.0,0.0,0.0,0,0,1008.3254673687801,0.0,1008.3254673687801 -5183,2444,2443,4,4,80,300,74,12,0,13357,0,0,0,0,0,7,0,4,2.1,1209.33911526,1405,0,40813.0,5,4,0,0,5,1,0,0,1,0,0,0,0,0,0,1,19434.761904799998,6,3,6,6_1,7700.0,0,7700.0,0,8,11,0.0,0.0,0.0,0,0,755.5994202164333,755.5994202164333,0.0 +5182,2435,2434,12,15,76,112,75,70,0,13344,0,0,0,504,0,4,0,1,1.0,3565.9775141,0,0,21399.0,5,3,7,1,1,1,0,0,0,1,0,0,0,0,1,0,21399.0,6,3,6,6_0,10258.0,0,0.0,10258,5,14,0.0,0.0,0.0,0,0,1008.3254673687801,0.0,1008.3254673687801 +5183,2444,2443,4,4,80,300,74,12,0,13357,0,0,0,0,0,7,0,4,2.1,1209.33911526,1405,0,40813.0,5,4,0,0,5,1,0,0,1,0,0,0,0,0,0,1,19434.7619048,6,3,6,6_1,7700.0,0,7700.0,0,8,11,0.0,0.0,0.0,0,0,755.5994202164333,755.5994202164333,0.0 5184,2446,2445,10,10,63,400,77,70,0,1336,0,300,0,0,1,4,1,4,2.5,1569.74036059,2341,0,49870.0,5,1,0,0,5,2,0,1,1,0,0,0,0,0,0,2,19948.0,6,3,6,6_1,10000.0,0,10000.0,0,9,9,0.0,0.0,0.0,0,1,981.2979483330303,981.2979483330303,0.0 5185,2450,2449,0,0,83,111,78,50,0,13364,0,0,0,336,0,2,0,1,1.0,2492.59929015,0,0,20400.0,5,3,6,4,1,0,0,0,0,0,1,0,0,0,0,0,20400.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5186,2453,2452,6,6,70,111,77,71,0,13370,0,0,0,685,0,2,0,1,1.0,2849.75131731,885,0,20113.0,5,3,6,5,1,1,0,0,0,0,1,0,0,0,1,0,20113.0,6,3,6,6_0,2000.0,0,0.0,2000,6,6,0.0,0.0,0.0,0,0,196.59299422280756,0.0,196.59299422280756 5187,2458,2457,3,13,36,120,48,50,0,13376,0,460,0,240,1,3,0,1,1.0,5385.12600739,3284,0,19566.0,1,3,0,2,1,1,0,1,0,1,0,0,0,1,0,1,19566.0,6,3,6,6_0,2000.0,0,2000.0,0,13,13,0.0,0.0,0.0,1,0,196.59299422280756,196.59299422280756,0.0 -5188,2480,2479,2,17,41,111,53,42,0,13408,0,0,99999,380,2,4,2,4,2.1,2734.64103009,2600,0,41084.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,19563.809523800002,6,3,6,6_0,16000.0,0,0.0,16000,18,18,0.0,10.0,0.0,0,1,1572.7439537824605,0.0,1572.7439537824605 +5188,2480,2479,2,17,41,111,53,42,0,13408,0,0,99999,380,2,4,2,4,2.1,2734.64103009,2600,0,41084.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,19563.8095238,6,3,6,6_0,16000.0,0,0.0,16000,18,18,0.0,10.0,0.0,0,1,1572.7439537824605,0.0,1572.7439537824605 5189,2482,2481,6,6,43,112,67,60,0,13411,0,0,0,0,1,3,0,2,1.5,3224.02167931,0,0,29079.0,4,1,8,0,5,2,0,0,1,0,0,0,0,0,0,2,19386.0,6,3,6,6_1,3000.0,0,3000.0,0,5,6,0.0,0.0,0.0,0,1,294.38938449990906,294.38938449990906,0.0 5190,2503,2502,4,13,60,111,37,31,0,13453,0,0,0,0,1,4,0,2,1.5,1418.70177538,1404,0,32190.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,1,1,21460.0,6,3,6,6_0,19843.0,0,17343.0,2500,8,8,0.0,20.0,3.3,0,1,1950.4973921815854,1704.756149403076,245.74124277850947 5191,2518,2517,1,13,39,112,62,71,0,13475,0,140,100,0,2,5,2,4,2.1,2349.01083152,2340,0,45136.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,1,1,21493.3333333,6,3,6,6_1,27714.0,0,12000.0,15714,8,13,102.0,10.0,0.0,0,1,2719.5691340101603,1177.5575379996362,1542.0115960105238 5192,2521,2520,5,5,25,111,52,42,0,13480,0,200,0,0,3,3,3,5,3.0,6407.89374653,0,0,61680.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,20560.0,6,3,6,6_0,9000.0,0,9000.0,0,1,1,0.0,51.25,3.3,1,1,884.6684740026342,884.6684740026342,0.0 5193,2532,2531,0,0,54,111,75,50,0,13497,0,0,0,480,0,2,0,1,1.0,1993.07849494,0,0,19439.0,7,3,8,6,1,0,0,0,0,0,1,0,0,0,0,0,19439.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5194,2555,2554,1,7,33,111,37,41,2,13529,0,0,100,0,2,3,1,3,1.8,2114.26084931,0,8000,37112.0,1,2,7,5,4,2,0,0,0,0,1,0,0,0,2,0,20617.777777799998,6,3,6,6_0,7248.0,0,0.0,7248,1,1,0.0,25.3333333333,3.3,0,1,712.4530110634547,0.0,712.4530110634547 +5194,2555,2554,1,7,33,111,37,41,2,13529,0,0,100,0,2,3,1,3,1.8,2114.26084931,0,8000,37112.0,1,2,7,5,4,2,0,0,0,0,1,0,0,0,2,0,20617.7777778,6,3,6,6_0,7248.0,0,0.0,7248,1,1,0.0,25.3333333333,3.3,0,1,712.4530110634547,0.0,712.4530110634547 5195,2569,2568,2,2,54,112,47,41,0,13545,0,200,0,0,1,5,0,2,1.5,2777.97413163,0,0,30760.0,1,1,10,4,3,2,0,1,0,0,1,0,0,0,1,1,20506.6666667,6,3,6,6_0,7000.0,0,3000.0,4000,4,4,89.0,14.0,3.3,0,1,688.0754797798265,294.88949133421136,393.1859884456151 5196,2575,2574,6,10,61,221,78,70,0,13553,0,0,0,0,0,5,0,2,1.5,1744.58169582,0,0,30076.0,5,1,1,3,3,2,0,0,0,1,0,0,0,0,0,2,20050.6666667,6,3,6,6_0,20000.0,0,20000.0,0,9,12,0.0,0.0,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 5197,2582,2581,4,4,82,111,86,70,0,13563,0,0,0,0,0,5,0,2,1.5,2026.78949556,1845,0,29034.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,19356.0,6,3,6,6_0,10000.0,0,0.0,10000,4,4,0.0,0.0,0.0,0,0,982.9649711140379,0.0,982.9649711140379 5198,2585,2584,1,1,43,111,52,50,1,13567,0,100399,0,0,2,4,2,4,2.5,1328.69406548,5806,18000,49087.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,19634.8,6,3,6,6_0,22311.0,0,22311.0,0,1,1,0.0,19.0,0.0,0,1,2193.0931470525297,2193.0931470525297,0.0 5199,2595,2594,9,12,63,400,75,41,0,13581,0,0,0,0,0,6,1,3,2.0,1971.28778032,1176,0,41305.0,5,1,0,0,4,2,0,0,1,0,0,0,0,0,2,0,20652.5,6,3,6,6_1,10899.0,0,0.0,10899,5,11,0.0,0.0,0.0,0,0,1069.5166338881695,0.0,1069.5166338881695 -5200,2597,2596,2,15,51,212,56,50,0,13583,0,100,0,0,2,4,0,2,1.5,1018.6577007999999,4498,0,31196.0,1,3,3,0,3,2,1,0,1,0,0,0,0,0,1,1,20797.3333333,6,3,6,6_1,32000.0,0,20000.0,12000,2,16,0.0,20.0,0.0,0,1,3140.1534346656968,1962.5958966660605,1177.5575379996362 +5200,2597,2596,2,15,51,212,56,50,0,13583,0,100,0,0,2,4,0,2,1.5,1018.6577008,4498,0,31196.0,1,3,3,0,3,2,1,0,1,0,0,0,0,0,1,1,20797.3333333,6,3,6,6_1,32000.0,0,20000.0,12000,2,16,0.0,20.0,0.0,0,1,3140.1534346656968,1962.5958966660605,1177.5575379996362 5201,2625,2624,2,4,63,221,75,50,0,13616,0,0,0,0,0,6,0,2,1.5,2953.42035527,0,0,30467.0,5,2,1,2,3,2,0,0,0,1,0,0,0,0,0,2,20311.3333333,6,3,6,6_0,17000.0,0,17000.0,0,3,4,0.0,0.0,0.0,0,0,1671.0404508938645,1671.0404508938645,0.0 5202,2640,2639,0,0,26,111,55,31,0,13633,0,0,0,490,1,1,0,1,1.0,3758.64134047,0,0,20787.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20787.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,30.0,1.1,0,0,0.0,0.0,0.0 -5203,2662,2661,11,11,63,111,77,60,0,13663,0,0,0,0,0,3,0,1,1.0,1865.4442083000001,0,0,19963.0,5,4,8,7,1,1,0,0,0,0,0,1,0,0,1,0,19963.0,6,3,6,6_0,1000.0,0,0.0,1000,6,12,0.0,0.0,0.0,0,0,98.29649711140378,0.0,98.29649711140378 +5203,2662,2661,11,11,63,111,77,60,0,13663,0,0,0,0,0,3,0,1,1.0,1865.4442083,0,0,19963.0,5,4,8,7,1,1,0,0,0,0,0,1,0,0,1,0,19963.0,6,3,6,6_0,1000.0,0,0.0,1000,6,12,0.0,0.0,0.0,0,0,98.29649711140378,0.0,98.29649711140378 5204,2664,2663,10,12,59,112,63,70,0,13667,0,0,0,0,2,5,0,2,1.5,2542.13055576,0,0,29700.0,1,1,6,0,3,2,1,0,1,0,0,0,0,0,1,1,19800.0,6,3,6,6_1,33781.0,0,21781.0,12000,2,15,375.5,72.5,3.3,0,1,3314.9225992638094,2137.365061264173,1177.5575379996362 5205,2666,2665,0,18,25,400,63,50,0,1367,0,500,0,0,2,6,2,4,2.1,2309.25653401,0,0,43211.0,1,4,0,0,4,2,0,1,1,0,0,0,0,0,0,2,20576.6666667,6,3,6,6_1,18000.0,0,18000.0,0,12,18,178.9,32.5,3.31,0,1,1766.3363069994543,1766.3363069994543,0.0 5206,2674,2673,3,4,44,112,47,20,0,1368,0,100059,0,0,2,9,2,4,2.1,1453.55925526,0,0,44855.0,1,2,8,1,4,2,0,1,0,1,0,0,0,0,0,2,21359.5238095,6,3,6,6_0,22311.0,0,22311.0,0,1,1,0.0,19.0,0.0,0,1,2193.0931470525297,2193.0931470525297,0.0 5207,2705,2704,2,13,62,300,56,50,0,13726,0,0,2000,0,2,4,0,2,1.5,1430.94246624,9466,0,30932.0,1,4,0,0,3,1,0,1,1,0,0,0,0,0,1,0,20621.3333333,6,3,6,6_1,3000.0,0,0.0,3000,10,13,32.4,50.0,0.0,0,1,294.38938449990906,0.0,294.38938449990906 -5208,2708,2707,4,18,45,111,54,42,0,1373,0,0,100,0,2,5,1,3,1.8,1584.74037194,0,0,37921.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,2,0,21067.222222200002,6,3,6,6_0,33000.0,0,0.0,33000,9,12,105.5,36.6666666667,3.3,0,1,3243.7844046763253,0.0,3243.7844046763253 +5208,2708,2707,4,18,45,111,54,42,0,1373,0,0,100,0,2,5,1,3,1.8,1584.74037194,0,0,37921.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,2,0,21067.2222222,6,3,6,6_0,33000.0,0,0.0,33000,9,12,105.5,36.6666666667,3.3,0,1,3243.7844046763253,0.0,3243.7844046763253 5209,2712,2711,5,8,48,111,52,50,0,13734,0,400,0,290,1,2,0,1,1.0,3327.07851389,0,0,20758.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,20758.0,6,3,6,6_0,82520.0,0,82520.0,0,9,9,311.1,240.0,3.3,0,1,8111.426941633041,8111.426941633041,0.0 5210,2722,2721,0,14,31,111,43,30,2,13743,0,0,0,461,2,2,0,2,1.5,2993.80347,0,7000,30846.0,1,3,8,6,3,1,0,0,0,0,1,0,0,0,0,1,20564.0,6,3,6,6_0,9000.0,0,9000.0,0,4,12,103.1,45.0,5.55,0,0,884.6684740026342,884.6684740026342,0.0 5211,2743,2742,2,4,55,111,62,50,0,1377,0,350,0,0,2,5,1,3,2.0,1720.31013808,0,0,38919.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,19459.5,6,3,6,6_0,20500.0,0,20500.0,0,6,6,49.3,28.3333333333,3.3,0,1,2015.0781907837777,2015.0781907837777,0.0 5212,2746,2745,2,3,51,400,48,50,0,13774,0,260,0,0,2,7,1,3,2.0,1256.35808242,1560,0,42901.0,1,4,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21450.5,6,3,6,6_1,6716.0,0,6716.0,0,0,3,228.0,40.0,3.3,0,1,659.039702100463,659.039702100463,0.0 5213,2760,2759,3,3,48,111,54,20,0,13798,0,0,0,0,1,2,0,1,1.0,2910.95205164,2341,0,19268.0,4,1,8,6,1,1,0,0,0,0,1,0,0,0,0,1,19268.0,6,3,6,6_0,8445.0,0,8445.0,0,2,5,0.0,35.0,3.3,0,1,830.113918105805,830.113918105805,0.0 -5214,2771,2770,2,5,43,112,63,50,0,13810,0,150,240,0,2,4,2,5,2.6,782.4713799130001,0,0,51096.0,1,2,8,2,5,2,0,1,0,1,0,0,0,0,1,1,19652.307692299997,6,3,6,6_0,32000.0,0,20000.0,12000,5,5,53.0,12.5,0.0,0,1,3145.487907564921,1965.9299422280758,1179.5579653368454 -5215,2804,2803,5,6,31,120,43,33,0,13850,0,0,0,0,2,4,2,4,2.1,1982.40328716,2861,0,43163.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,1,1,20553.809523800002,6,3,6,6_1,46784.0,0,20000.0,26784,2,4,80.1,13.0,3.3,0,1,4590.904321481249,1962.5958966660605,2628.308424815188 +5214,2771,2770,2,5,43,112,63,50,0,13810,0,150,240,0,2,4,2,5,2.6,782.471379913,0,0,51096.0,1,2,8,2,5,2,0,1,0,1,0,0,0,0,1,1,19652.3076923,6,3,6,6_0,32000.0,0,20000.0,12000,5,5,53.0,12.5,0.0,0,1,3145.487907564921,1965.9299422280758,1179.5579653368454 +5215,2804,2803,5,6,31,120,43,33,0,13850,0,0,0,0,2,4,2,4,2.1,1982.40328716,2861,0,43163.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,1,1,20553.8095238,6,3,6,6_1,46784.0,0,20000.0,26784,2,4,80.1,13.0,3.3,0,1,4590.904321481249,1962.5958966660605,2628.308424815188 5216,2807,2806,1,7,76,111,77,71,2,13855,0,0,0,215,0,3,0,1,1.0,3082.53611477,3087,4000,20485.0,5,3,6,5,1,1,0,0,0,0,1,0,0,0,0,1,20485.0,6,3,6,6_0,4500.0,0,4500.0,0,6,7,0.0,0.0,0.0,0,0,442.3342370013171,442.3342370013171,0.0 5217,2814,2813,0,0,29,111,65,50,0,13865,0,0,0,230,1,1,0,1,1.0,3485.42668219,0,0,20344.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,20344.0,6,3,6,6_0,0.0,0,0.0,0,0,0,39.5,90.0,5.56,0,0,0.0,0.0,0.0 5218,2828,2827,15,15,54,111,46,43,0,13881,0,0,130,234,2,5,2,3,2.0,2188.00277298,1040,0,39067.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,1,0,19533.5,6,3,6,6_0,18000.0,0,0.0,18000,9,10,86.4,19.3333333333,3.3,0,1,1769.3369480052684,0.0,1769.3369480052684 @@ -5232,7 +5232,7 @@ 5230,2880,2879,18,18,67,111,78,50,0,13945,0,0,0,0,0,3,0,2,1.5,2059.83323087,0,0,29596.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,19730.6666667,6,3,6,6_0,5000.0,0,0.0,5000,18,18,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 5231,2881,2880,0,0,68,111,75,20,0,13946,0,0,0,230,0,1,0,1,1.0,2346.39247599,0,0,21585.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21585.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5232,2882,2881,17,17,56,111,22,42,0,13947,0,0,100,0,1,4,0,1,1.0,3373.50964341,0,0,20172.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,1,0,20172.0,6,3,6,6_0,15000.0,0,0.0,15000,9,15,16.5,70.0,3.3,0,1,1474.4474566710567,0.0,1474.4474566710567 -5233,2902,2901,2,4,44,300,47,60,0,13973,0,470,0,0,2,4,2,4,2.1,1979.41194548,1040,0,45439.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21637.619047599997,6,3,6,6_1,14000.0,0,14000.0,0,2,3,299.0,57.3333333333,3.3,0,1,1373.8171276662424,1373.8171276662424,0.0 +5233,2902,2901,2,4,44,300,47,60,0,13973,0,470,0,0,2,4,2,4,2.1,1979.41194548,1040,0,45439.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21637.6190476,6,3,6,6_1,14000.0,0,14000.0,0,2,3,299.0,57.3333333333,3.3,0,1,1373.8171276662424,1373.8171276662424,0.0 5234,2915,2914,4,8,45,111,47,31,0,13987,0,0,0,0,1,2,0,1,1.0,3099.49490854,0,0,20178.0,1,1,8,7,1,2,0,0,0,0,0,1,0,0,0,2,20178.0,6,3,6,6_0,35000.0,0,35000.0,0,2,16,0.0,4.0,1.1,0,0,3440.377398899133,3440.377398899133,0.0 5235,2929,2928,2,3,64,221,77,70,0,14005,0,0,0,0,0,4,0,1,1.0,4266.18758816,2600,0,19410.0,4,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,19410.0,6,3,6,6_0,6000.0,0,6000.0,0,3,3,0.0,0.0,0.0,0,0,589.7789826684227,589.7789826684227,0.0 5236,2952,2951,6,6,79,111,77,71,0,14043,0,0,0,0,0,3,0,1,1.0,4148.61985769,0,0,20550.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,20550.0,6,3,6,6_0,4500.0,0,0.0,4500,3,4,0.0,0.0,0.0,0,0,442.3342370013171,0.0,442.3342370013171 @@ -5240,14 +5240,14 @@ 5238,2982,2981,13,13,67,111,77,50,0,14076,0,0,0,0,0,5,0,1,1.0,1395.40664478,0,0,20017.0,5,1,7,6,1,1,0,0,0,0,1,0,0,0,1,0,20017.0,6,3,6,6_0,5000.0,0,0.0,5000,11,11,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 5239,2990,2989,3,16,62,300,72,71,0,14089,0,0,0,365,0,4,0,2,1.5,1304.64578545,1300,0,28820.0,5,3,0,0,3,1,0,0,1,0,0,0,0,1,1,0,19213.3333333,6,3,6,6_1,18797.0,0,0.0,18797,10,15,0.0,0.0,0.0,0,0,1844.5457534815969,0.0,1844.5457534815969 5240,3009,3008,13,13,83,112,71,70,0,14112,0,0,99999,0,2,5,3,5,3.0,4632.33331067,2689,0,64981.0,5,1,5,0,4,3,0,0,1,0,0,0,0,0,3,0,21660.3333333,6,3,6,6_1,6500.0,0,0.0,6500,13,13,145.0,27.5,3.31,0,1,637.8436664164697,0.0,637.8436664164697 -5241,3022,3021,2,3,58,120,54,70,0,14129,0,610,0,0,2,4,0,2,1.5,1872.0763670000001,2601,0,31782.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,21188.0,6,3,6,6_1,55000.0,0,55000.0,0,2,3,199.8,54.5,3.3,1,1,5397.138715831667,5397.138715831667,0.0 +5241,3022,3021,2,3,58,120,54,70,0,14129,0,610,0,0,2,4,0,2,1.5,1872.076367,2601,0,31782.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,21188.0,6,3,6,6_1,55000.0,0,55000.0,0,2,3,199.8,54.5,3.3,1,1,5397.138715831667,5397.138715831667,0.0 5242,3024,3023,1,3,57,111,54,33,2,14130,0,0,0,0,2,9,2,4,2.5,1724.6365746,0,11900,51560.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,20624.0,6,3,6,6_0,60000.0,0,60000.0,0,1,2,0.0,0.0,0.0,1,0,5897.789826684227,5897.789826684227,0.0 5243,3029,3028,1,6,56,112,52,60,0,14136,0,0,150,0,2,4,0,2,1.5,1611.98758629,0,0,32171.0,1,1,7,1,3,1,0,1,0,1,0,0,0,0,1,0,21447.3333333,6,3,6,6_0,10000.0,0,0.0,10000,8,9,0.0,132.5,2.2,0,0,982.9649711140379,0.0,982.9649711140379 -5244,3038,3037,5,10,46,111,38,31,0,14149,0,100199,0,0,2,6,3,5,2.8,2994.91906512,6652,0,56311.0,1,1,8,6,4,2,0,1,0,0,1,0,0,0,0,2,20111.071428599997,6,3,6,6_0,13000.0,0,13000.0,0,9,14,56.0,13.0,3.3,0,1,1277.8544624482493,1277.8544624482493,0.0 +5244,3038,3037,5,10,46,111,38,31,0,14149,0,100199,0,0,2,6,3,5,2.8,2994.91906512,6652,0,56311.0,1,1,8,6,4,2,0,1,0,0,1,0,0,0,0,2,20111.0714286,6,3,6,6_0,13000.0,0,13000.0,0,9,14,56.0,13.0,3.3,0,1,1277.8544624482493,1277.8544624482493,0.0 5245,3063,3062,0,14,23,112,54,10,0,14180,0,0,300,0,1,3,0,1,1.0,2872.62224435,2132,0,19870.0,2,3,9,2,1,1,0,1,0,1,0,0,0,1,1,0,19870.0,6,3,6,6_0,7000.0,0,0.0,7000,7,13,0.0,14.0,3.3,1,1,688.0754797798265,0.0,688.0754797798265 5246,3074,3073,10,10,43,111,43,33,0,14196,0,0,250,0,1,3,0,1,1.0,2216.29089745,1305,0,20254.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,20254.0,6,3,6,6_0,6000.0,0,0.0,6000,5,6,0.0,0.0,0.0,0,0,589.7789826684227,0.0,589.7789826684227 5247,3077,3076,12,12,72,111,74,60,0,14199,0,0,0,0,0,3,0,2,1.5,2743.46801324,0,0,30310.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,20206.6666667,6,3,6,6_0,10000.0,0,10000.0,0,10,11,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 -5248,3099,3098,6,13,47,111,68,71,0,14226,0,266,0,0,3,5,1,3,2.0,1611.52778504,1560,0,38990.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,19495.0,6,3,6,6_0,12976.0,0,12976.0,0,7,14,0.0,6.666666666669999,0.0,0,0,1275.4953465175756,1275.4953465175756,0.0 +5248,3099,3098,6,13,47,111,68,71,0,14226,0,266,0,0,3,5,1,3,2.0,1611.52778504,1560,0,38990.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,19495.0,6,3,6,6_0,12976.0,0,12976.0,0,7,14,0.0,6.66666666667,0.0,0,0,1275.4953465175756,1275.4953465175756,0.0 5249,3103,3102,4,6,27,221,55,31,0,14230,0,200,0,0,1,3,0,1,1.0,5942.31799779,0,0,20005.0,1,3,1,1,1,1,0,1,0,1,0,0,0,0,0,1,20005.0,6,3,6,6_0,12000.0,0,12000.0,0,6,6,91.0,120.0,3.3,1,0,1179.5579653368454,1179.5579653368454,0.0 5250,3107,3106,13,16,53,111,78,50,0,14236,99999,0,0,0,1,5,0,2,1.5,3535.82816417,3382,0,31514.0,5,1,7,5,3,1,0,1,0,0,1,0,0,0,0,0,21009.3333333,6,3,6,6_0,8000.0,0,0.0,8000,10,14,0.0,0.0,0.0,0,1,786.3719768912302,0.0,786.3719768912302 5251,3126,3125,5,11,79,111,77,10,0,14264,0,0,0,0,0,3,0,1,1.0,2695.88834229,0,0,20065.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,0,1,20065.0,6,3,6,6_0,2000.0,0,2000.0,0,9,10,0.0,0.0,0.0,0,0,196.59299422280756,196.59299422280756,0.0 @@ -5258,10 +5258,10 @@ 5256,3174,3173,7,16,66,120,71,70,0,14327,0,0,0,0,0,10,0,2,1.5,2020.91400716,0,0,30970.0,5,1,0,1,3,3,0,0,0,1,0,0,0,0,2,1,20646.6666667,6,3,6,6_0,13000.0,0,10000.0,3000,7,7,0.0,0.0,0.0,0,0,1277.8544624482493,982.9649711140379,294.88949133421136 5257,3205,3204,5,10,47,111,55,71,0,14376,0,0,100199,777,3,4,2,4,2.5,2691.32362006,2600,0,51179.0,1,3,6,4,4,2,0,1,0,0,1,0,0,0,2,0,20471.6,6,3,6,6_0,4952.0,0,0.0,4952,1,9,636.5,70.0,2.24,0,1,486.7642536956716,0.0,486.7642536956716 5258,3209,3208,5,17,40,111,62,71,0,14380,0,0,99999,767,2,3,2,4,2.3,4776.45280572,0,0,44565.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,19376.0869565,6,3,6,6_0,16000.0,0,0.0,16000,18,18,0.0,10.0,0.0,0,1,1572.7439537824605,0.0,1572.7439537824605 -5259,3215,3214,0,9,45,111,34,20,0,1439,0,0,200,493,1,4,1,2,1.5,1720.5163925000002,2048,0,30080.0,1,3,5,4,2,1,1,1,0,0,1,0,0,0,1,0,20053.3333333,6,3,6,6_0,10899.0,0,0.0,10899,4,11,33.0,15.0,3.3,0,1,1071.3335220171898,0.0,1071.3335220171898 -5260,3217,3216,8,8,43,111,46,42,0,14391,0,550,0,0,1,4,2,3,1.8,2216.04796996,2632,0,36239.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,20132.777777799998,6,3,6,6_0,35000.0,0,35000.0,0,5,7,206.0,75.0,3.3,1,1,3440.377398899133,3440.377398899133,0.0 +5259,3215,3214,0,9,45,111,34,20,0,1439,0,0,200,493,1,4,1,2,1.5,1720.5163925,2048,0,30080.0,1,3,5,4,2,1,1,1,0,0,1,0,0,0,1,0,20053.3333333,6,3,6,6_0,10899.0,0,0.0,10899,4,11,33.0,15.0,3.3,0,1,1071.3335220171898,0.0,1071.3335220171898 +5260,3217,3216,8,8,43,111,46,42,0,14391,0,550,0,0,1,4,2,3,1.8,2216.04796996,2632,0,36239.0,1,3,9,7,2,1,0,1,0,0,0,1,0,1,0,1,20132.7777778,6,3,6,6_0,35000.0,0,35000.0,0,5,7,206.0,75.0,3.3,1,1,3440.377398899133,3440.377398899133,0.0 5261,3230,3229,1,1,48,221,52,50,1,14412,0,0,60,0,2,4,2,4,2.3,1809.8784873,0,26000,48376.0,1,2,1,2,4,2,0,0,0,1,0,0,0,0,2,0,21033.0434783,6,3,6,6_0,26000.0,0,0.0,26000,2,5,284.8,31.25,3.31,1,1,2555.7089248964985,0.0,2555.7089248964985 -5262,3235,3234,1,1,38,111,43,41,1,1442,0,0,300,424,2,3,1,3,1.8,3696.95378456,859,11200,38216.0,1,3,8,6,4,1,0,1,0,0,1,0,0,0,1,0,21231.111111099995,6,3,6,6_0,10000.0,0,0.0,10000,4,7,514.0,51.6666666667,3.3,1,0,982.9649711140379,0.0,982.9649711140379 +5262,3235,3234,1,1,38,111,43,41,1,1442,0,0,300,424,2,3,1,3,1.8,3696.95378456,859,11200,38216.0,1,3,8,6,4,1,0,1,0,0,1,0,0,0,1,0,21231.1111111,6,3,6,6_0,10000.0,0,0.0,10000,4,7,514.0,51.6666666667,3.3,1,0,982.9649711140379,0.0,982.9649711140379 5263,3238,3237,9,9,78,111,78,71,0,14425,0,0,0,0,0,4,0,2,1.5,2121.53965389,0,0,30638.0,5,1,4,4,3,1,0,0,0,0,1,0,0,0,1,0,20425.3333333,6,3,6,6_0,9544.0,0,0.0,9544,7,7,0.0,0.0,0.0,0,0,938.1417684312378,0.0,938.1417684312378 5264,3241,3240,6,11,49,112,52,50,0,14430,0,156,0,0,1,5,0,1,1.0,2333.80638558,790,0,20574.0,1,2,9,2,1,1,0,1,0,1,0,0,0,0,0,1,20574.0,6,3,6,6_0,82520.0,0,82520.0,0,9,9,311.1,240.0,3.3,0,1,8111.426941633041,8111.426941633041,0.0 5265,3255,3254,7,7,76,111,77,70,0,14447,0,0,0,0,0,2,0,1,1.0,2767.74242558,0,0,20127.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,20127.0,6,3,6,6_0,2500.0,0,0.0,2500,8,8,0.0,0.0,0.0,0,0,245.74124277850947,0.0,245.74124277850947 @@ -5269,14 +5269,14 @@ 5267,3266,3265,0,0,27,111,48,31,0,14464,0,0,0,0,1,1,0,1,1.0,4454.02608691,0,0,21687.0,1,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21687.0,6,3,6,6_0,0.0,0,0.0,0,0,0,31.5,50.0,5.56,0,0,0.0,0.0,0.0 5268,3282,3281,16,16,62,111,75,31,0,14488,0,0,0,0,0,3,0,1,1.0,2971.42866011,0,0,20622.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,20622.0,6,3,6,6_0,5000.0,0,0.0,5000,6,18,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 5269,3292,3291,3,3,75,111,75,70,0,14501,0,0,0,0,0,5,0,2,1.5,2563.28881152,3224,0,30282.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,20188.0,6,3,6,6_0,17000.0,0,17000.0,0,2,2,0.0,0.0,0.0,0,0,1671.0404508938645,1671.0404508938645,0.0 -5270,3309,3308,6,8,33,300,43,33,0,14529,0,590,0,0,2,4,2,4,2.1,2550.42559402,2341,0,44215.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21054.761904799998,6,3,6,6_1,17986.0,0,17986.0,0,3,9,109.0,6.0,3.3,0,1,1764.9624898717882,1764.9624898717882,0.0 +5270,3309,3308,6,8,33,300,43,33,0,14529,0,590,0,0,2,4,2,4,2.1,2550.42559402,2341,0,44215.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21054.7619048,6,3,6,6_1,17986.0,0,17986.0,0,3,9,109.0,6.0,3.3,0,1,1764.9624898717882,1764.9624898717882,0.0 5271,3310,3309,2,6,49,111,65,50,0,1453,0,10,0,325,1,2,0,1,1.0,1945.68711047,0,0,20478.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,20478.0,6,3,6,6_0,8445.0,0,8445.0,0,2,5,0.0,35.0,3.3,0,1,830.113918105805,830.113918105805,0.0 5272,3314,3313,3,8,22,111,46,31,0,14533,0,0,84,0,1,1,0,1,1.0,3677.30040679,0,0,21634.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,21634.0,6,3,6,6_0,25000.0,0,0.0,25000,5,8,31.5,25.0,3.3,0,1,2457.4124277850947,0.0,2457.4124277850947 5273,3315,3314,5,23,64,112,77,71,0,14535,0,0,0,0,3,5,2,4,2.5,3182.68072624,1560,0,51768.0,5,2,10,4,4,1,0,0,0,0,1,0,0,0,0,1,20707.2,6,3,6,6_0,6572.0,0,6572.0,0,1,21,111.4,80.0,3.3,0,1,646.0045790161457,646.0045790161457,0.0 5274,3321,3320,13,21,56,111,75,50,0,14542,0,300,0,0,2,5,1,3,2.0,1430.07112309,6500,0,41782.0,5,1,8,7,4,2,0,0,0,0,0,1,0,0,1,1,20891.0,6,3,6,6_0,6000.0,0,5000.0,1000,15,20,97.0,37.5,3.3,0,1,589.7789826684227,491.48248555701895,98.29649711140378 5275,3330,3329,11,12,54,111,45,30,0,14555,0,0,0,0,1,3,0,1,1.0,3440.96633987,1820,0,20691.0,1,2,9,7,1,1,0,0,0,0,0,1,0,0,1,0,20691.0,6,3,6,6_0,10000.0,0,0.0,10000,8,11,0.0,40.0,1.1,0,0,982.9649711140379,0.0,982.9649711140379 5276,3364,3363,1,12,36,111,67,44,2,146,0,20,200,0,5,4,0,5,3.0,1089.08825393,1560,700,60144.0,1,2,8,7,5,2,0,1,0,0,0,1,0,0,1,1,20048.0,6,3,6,6_0,32000.0,0,23000.0,9000,14,14,123.2,47.5,2.24,0,1,3145.487907564921,2260.819433562287,884.6684740026342 -5277,3366,3365,0,9,29,111,64,60,2,14600,0,0,65,590,2,3,1,3,1.8,3450.93612982,0,2000,36565.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,2,0,20313.888888900005,6,3,6,6_0,7248.0,0,0.0,7248,1,1,0.0,25.3333333333,3.3,0,1,712.4530110634547,0.0,712.4530110634547 +5277,3366,3365,0,9,29,111,64,60,2,14600,0,0,65,590,2,3,1,3,1.8,3450.93612982,0,2000,36565.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,2,0,20313.8888889,6,3,6,6_0,7248.0,0,0.0,7248,1,1,0.0,25.3333333333,3.3,0,1,712.4530110634547,0.0,712.4530110634547 5278,3375,3374,4,4,35,221,52,43,0,14612,0,0,40,305,2,3,0,2,1.5,2106.70392583,0,0,29528.0,1,3,1,2,5,1,0,1,0,1,0,0,0,0,1,0,19685.3333333,6,3,6,6_0,10000.0,0,0.0,10000,3,8,0.0,26.0,3.31,0,1,982.9649711140379,0.0,982.9649711140379 5279,3376,3375,5,10,55,300,69,50,0,14613,0,0,40,0,1,4,0,2,1.5,1162.60310111,0,0,30529.0,1,1,0,1,3,2,0,0,0,1,0,0,0,0,2,0,20352.6666667,6,3,6,6_0,5000.0,0,0.0,5000,6,9,0.0,0.0,0.0,0,1,491.48248555701895,0.0,491.48248555701895 5280,3388,3387,0,21,24,111,42,20,0,14627,0,0,40,755,1,2,0,1,1.0,3413.58350103,2184,0,21489.0,1,3,10,8,1,2,0,1,0,0,0,0,1,0,1,1,21489.0,6,3,6,6_0,24000.0,0,24000.0,0,6,13,61.5,80.0,5.57,0,0,2359.115930673691,2359.115930673691,0.0 @@ -5287,8 +5287,8 @@ 5285,3419,3418,3,7,52,111,67,50,0,14673,0,0,190,448,3,3,2,3,2.0,2479.02146742,1561,0,43012.0,1,3,6,5,2,3,0,0,0,0,1,0,0,0,2,1,21506.0,6,3,6,6_0,13000.0,0,0.0,13000,10,2,97.4,51.6666666667,3.3,0,1,1277.8544624482493,0.0,1277.8544624482493 5286,3440,3439,0,0,90,111,78,71,0,14701,0,0,0,0,0,3,0,1,1.0,5955.47988088,0,0,20757.0,5,4,7,5,1,0,0,0,0,0,1,0,0,0,0,0,20757.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5287,3442,3441,6,14,50,111,85,50,0,14704,0,0,0,0,1,6,1,4,2.5,1940.23198154,0,0,51899.0,7,2,8,6,5,1,0,0,0,0,1,0,0,0,1,0,20759.6,6,3,6,6_0,17676.0,0,0.0,17676,2,8,0.0,28.3333333333,5.56,0,0,1737.4888829411734,0.0,1737.4888829411734 -5288,3445,3444,2,2,28,111,54,42,0,14707,0,400,0,378,2,2,0,2,1.5,3154.3836463000002,0,0,32160.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,0,1,21440.0,6,3,6,6_0,15891.0,0,15891.0,0,2,5,79.0,35.0,2.24,0,0,1562.0296355973178,1562.0296355973178,0.0 -5289,3455,3454,11,14,28,221,67,50,0,14720,0,200,80,402,2,4,1,3,1.8,2252.30748191,1040,0,36459.0,1,3,1,3,4,2,0,1,0,1,0,0,0,0,1,1,20255.0,6,3,6,6_0,18716.0,0,8716.0,10000,3,8,169.2,13.333333333299999,3.3,1,1,1839.7172399370331,856.7522688229955,982.9649711140379 +5288,3445,3444,2,2,28,111,54,42,0,14707,0,400,0,378,2,2,0,2,1.5,3154.3836463,0,0,32160.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,0,1,21440.0,6,3,6,6_0,15891.0,0,15891.0,0,2,5,79.0,35.0,2.24,0,0,1562.0296355973178,1562.0296355973178,0.0 +5289,3455,3454,11,14,28,221,67,50,0,14720,0,200,80,402,2,4,1,3,1.8,2252.30748191,1040,0,36459.0,1,3,1,3,4,2,0,1,0,1,0,0,0,0,1,1,20255.0,6,3,6,6_0,18716.0,0,8716.0,10000,3,8,169.2,13.3333333333,3.3,1,1,1839.7172399370331,856.7522688229955,982.9649711140379 5290,3461,3460,5,11,28,111,67,60,0,1473,0,670,0,0,2,6,1,3,1.8,2722.05227007,0,0,38220.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,21233.3333333,6,3,6,6_0,2000.0,0,2000.0,0,7,14,96.0,10.6666666667,3.31,1,0,196.59299422280756,196.59299422280756,0.0 5291,3482,3481,8,11,55,300,56,60,0,1476,0,0,0,0,1,10,0,2,1.5,2091.84000511,2516,0,32036.0,1,2,0,0,3,2,1,0,1,0,0,0,0,0,0,2,21357.3333333,6,3,6,6_1,15000.0,0,15000.0,0,13,13,0.0,0.0,0.0,0,1,1471.9469224995453,1471.9469224995453,0.0 5292,3534,3533,6,9,64,111,75,50,0,14833,0,0,0,0,0,4,0,1,1.0,1498.64370225,2361,0,20138.0,5,1,7,6,1,1,0,0,0,0,1,0,0,0,0,1,20138.0,6,3,6,6_0,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 @@ -5300,9 +5300,9 @@ 5298,3580,3579,0,0,29,111,42,20,0,1490,0,0,0,0,1,2,0,1,1.0,3655.57294148,0,0,21543.0,1,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,21543.0,6,3,6,6_0,0.0,0,0.0,0,0,0,33.0,16.0,2.24,0,0,0.0,0.0,0.0 5299,3582,3581,7,7,81,111,71,70,0,14902,0,0,0,0,0,5,0,2,1.5,3611.73581266,2344,0,31009.0,5,1,4,3,3,1,0,0,0,1,0,0,0,0,1,0,20672.6666667,6,3,6,6_0,9000.0,0,0.0,9000,7,8,0.0,0.0,0.0,0,0,884.6684740026342,0.0,884.6684740026342 5300,3609,3608,12,17,40,111,47,43,0,1494,0,0,120,0,1,3,0,1,1.0,3428.72874509,2340,0,20297.0,1,2,7,5,1,1,0,1,0,0,1,0,0,0,1,0,20297.0,6,3,6,6_0,5000.0,0,0.0,5000,3,17,30.5,50.0,3.3,0,0,491.48248555701895,0.0,491.48248555701895 -5301,3641,3640,7,11,54,111,42,20,0,14985,0,0,90,0,2,7,2,4,2.3,1278.19203762,1149,0,47871.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,2,0,20813.478260900003,6,3,6,6_0,14765.0,0,0.0,14765,7,10,0.0,35.6666666667,3.3,0,1,1451.347779849877,0.0,1451.347779849877 -5302,3651,3650,4,9,41,112,52,60,0,14994,0,0,0,0,2,3,2,4,2.3,3273.05479836,1560,0,49074.0,1,4,7,0,4,1,1,0,1,0,0,0,0,0,0,1,21336.521739099997,6,3,6,6_1,20000.0,0,20000.0,0,3,8,140.4,55.25,3.3,1,1,1962.5958966660605,1962.5958966660605,0.0 -5303,3656,3655,3,8,28,111,47,31,0,15002,0,460,0,372,2,3,1,3,1.8,3548.31415809,3121,0,35338.0,1,3,8,6,4,1,0,1,0,0,1,0,0,1,0,1,19632.222222200002,6,3,6,6_0,1500.0,0,1500.0,0,5,5,58.0,30.0,3.32,0,1,147.44474566710568,147.44474566710568,0.0 +5301,3641,3640,7,11,54,111,42,20,0,14985,0,0,90,0,2,7,2,4,2.3,1278.19203762,1149,0,47871.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,2,0,20813.4782609,6,3,6,6_0,14765.0,0,0.0,14765,7,10,0.0,35.6666666667,3.3,0,1,1451.347779849877,0.0,1451.347779849877 +5302,3651,3650,4,9,41,112,52,60,0,14994,0,0,0,0,2,3,2,4,2.3,3273.05479836,1560,0,49074.0,1,4,7,0,4,1,1,0,1,0,0,0,0,0,0,1,21336.5217391,6,3,6,6_1,20000.0,0,20000.0,0,3,8,140.4,55.25,3.3,1,1,1962.5958966660605,1962.5958966660605,0.0 +5303,3656,3655,3,8,28,111,47,31,0,15002,0,460,0,372,2,3,1,3,1.8,3548.31415809,3121,0,35338.0,1,3,8,6,4,1,0,1,0,0,1,0,0,1,0,1,19632.2222222,6,3,6,6_0,1500.0,0,1500.0,0,5,5,58.0,30.0,3.32,0,1,147.44474566710568,147.44474566710568,0.0 5304,3657,3656,3,8,62,112,46,60,0,15003,0,220,0,0,3,5,0,4,2.5,1609.30741056,1820,0,51732.0,5,1,8,0,5,4,0,1,1,0,0,0,0,0,0,4,20692.8,6,3,6,6_1,19000.0,0,19000.0,0,4,6,0.0,0.0,0.0,0,1,1864.4661018327574,1864.4661018327574,0.0 5305,3666,3665,2,1,38,300,43,42,0,15013,0,0,197,0,1,5,0,1,1.0,2219.79450378,0,0,20554.0,1,4,0,0,1,1,0,1,1,0,0,0,0,0,1,0,20554.0,6,3,6,6_1,10000.0,0,0.0,10000,4,5,66.0,30.0,3.31,0,1,981.2979483330303,0.0,981.2979483330303 5306,3677,3676,12,12,71,111,77,70,0,15025,0,0,0,0,0,3,0,2,1.5,3357.78045236,1567,0,31175.0,5,3,5,4,3,1,0,0,0,0,1,0,0,0,0,1,20783.3333333,6,3,6,6_0,13000.0,0,13000.0,0,12,12,0.0,0.0,0.0,0,0,1277.8544624482493,1277.8544624482493,0.0 @@ -5312,7 +5312,7 @@ 5310,3708,3707,3,3,67,111,75,50,0,15061,0,0,0,0,0,5,0,2,1.5,2540.18962519,2080,0,29763.0,5,2,9,7,3,2,0,0,0,0,0,1,0,0,1,1,19842.0,6,3,6,6_0,25000.0,0,20000.0,5000,1,3,0.0,0.0,0.0,0,0,2457.4124277850947,1965.9299422280758,491.48248555701895 5311,3716,3715,8,8,78,111,75,44,0,15070,0,0,0,0,0,4,0,2,1.5,2510.2488804,0,0,32476.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,21650.6666667,6,3,6,6_0,9544.0,0,0.0,9544,7,7,0.0,0.0,0.0,0,0,938.1417684312378,0.0,938.1417684312378 5312,3738,3737,12,12,75,111,86,71,0,1510,0,0,0,340,0,5,0,1,1.0,2840.86433776,1040,0,20845.0,5,3,6,4,1,1,0,0,0,0,1,0,0,0,1,0,20845.0,6,3,6,6_0,10258.0,0,0.0,10258,5,14,0.0,0.0,0.0,0,0,1008.3254673687801,0.0,1008.3254673687801 -5313,3750,3749,8,9,51,111,38,20,0,15117,0,600,0,0,2,5,3,5,3.0,797.8684475360001,2809,0,58016.0,1,1,9,7,4,3,0,0,0,0,0,1,0,0,0,3,19338.6666667,6,3,6,6_0,22500.0,0,22500.0,0,5,9,0.0,218.33333333299998,3.3,0,1,2211.6711850065853,2211.6711850065853,0.0 +5313,3750,3749,8,9,51,111,38,20,0,15117,0,600,0,0,2,5,3,5,3.0,797.868447536,2809,0,58016.0,1,1,9,7,4,3,0,0,0,0,0,1,0,0,0,3,19338.6666667,6,3,6,6_0,22500.0,0,22500.0,0,5,9,0.0,218.333333333,3.3,0,1,2211.6711850065853,2211.6711850065853,0.0 5314,3753,3752,4,11,52,120,67,71,0,15120,0,112,14,260,1,3,0,1,1.0,5864.41832418,0,0,20761.0,1,3,0,2,1,2,0,1,0,1,0,0,0,0,1,1,20761.0,6,3,6,6_0,18000.0,0,18000.0,0,5,7,152.0,30.0,3.3,0,1,1769.3369480052684,1769.3369480052684,0.0 5315,3755,3754,7,15,28,111,68,41,0,15123,0,300,0,430,2,3,2,4,2.1,5883.18413261,2080,0,44663.0,1,3,10,8,4,1,0,1,0,0,0,0,1,1,0,1,21268.0952381,6,3,6,6_0,7000.0,0,7000.0,0,4,4,85.0,17.5,3.3,0,1,688.0754797798265,688.0754797798265,0.0 5316,3756,3755,1,11,57,120,21,50,2,15127,0,99999,210,0,3,7,3,5,3.0,3361.52054398,1260,8000,58963.0,1,2,0,2,4,2,1,1,0,1,0,0,0,0,1,1,19654.3333333,6,3,6,6_0,32000.0,0,23000.0,9000,14,14,123.2,47.5,2.24,0,1,3145.487907564921,2260.819433562287,884.6684740026342 @@ -5327,21 +5327,21 @@ 5325,3816,3815,2,10,32,400,52,50,0,15211,0,580,0,0,2,4,4,6,2.7,1051.50895993,5739,0,57049.0,1,3,0,0,4,2,1,1,1,0,0,0,0,1,0,2,21129.2592593,6,3,6,6_1,20000.0,0,20000.0,0,3,7,0.0,6.2,0.0,0,1,1962.5958966660605,1962.5958966660605,0.0 5326,3819,3818,15,15,74,300,77,70,0,15219,0,0,0,0,0,3,0,1,1.0,1808.35133314,0,0,20010.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,20010.0,6,3,6,6_1,9000.0,0,0.0,9000,12,12,0.0,0.0,0.0,0,0,883.1681534997272,0.0,883.1681534997272 5327,3825,3824,2,8,33,111,33,31,0,15228,0,810,0,352,2,3,2,4,2.1,3662.97831342,2366,0,43889.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,20899.5238095,6,3,6,6_0,7000.0,0,7000.0,0,4,8,67.0,20.0,3.31,1,1,688.0754797798265,688.0754797798265,0.0 -5328,3831,3830,7,7,38,111,38,31,0,15238,0,0,0,0,2,4,2,4,2.1,2345.5076449000003,1736,0,42019.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,20009.047619,6,3,6,6_0,23000.0,0,23000.0,0,6,8,104.5,31.25,3.3,0,1,2260.819433562287,2260.819433562287,0.0 -5329,3846,3845,1,7,44,111,53,12,2,15256,0,0,0,838,2,6,5,7,3.6,1886.3677145999998,0,9000,74786.0,1,3,10,8,4,2,0,0,0,0,0,0,1,0,1,1,20773.888888900005,6,3,6,6_0,35000.0,0,15000.0,20000,2,4,76.2,44.0,3.3,0,1,3440.377398899133,1474.4474566710567,1965.9299422280758 +5328,3831,3830,7,7,38,111,38,31,0,15238,0,0,0,0,2,4,2,4,2.1,2345.5076449,1736,0,42019.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,20009.047619,6,3,6,6_0,23000.0,0,23000.0,0,6,8,104.5,31.25,3.3,0,1,2260.819433562287,2260.819433562287,0.0 +5329,3846,3845,1,7,44,111,53,12,2,15256,0,0,0,838,2,6,5,7,3.6,1886.3677146,0,9000,74786.0,1,3,10,8,4,2,0,0,0,0,0,0,1,0,1,1,20773.8888889,6,3,6,6_0,35000.0,0,15000.0,20000,2,4,76.2,44.0,3.3,0,1,3440.377398899133,1474.4474566710567,1965.9299422280758 5330,3849,3848,0,1,53,111,46,12,2,15260,0,0,0,0,1,6,0,1,1.0,4038.65152592,0,17600,19428.0,1,1,10,8,1,1,1,0,0,0,0,0,1,0,1,0,19428.0,6,3,6,6_0,6620.0,0,0.0,6620,13,0,0.0,0.0,0.0,0,0,650.7228108774931,0.0,650.7228108774931 5331,3884,3883,7,7,62,300,72,50,0,15316,0,0,0,0,0,4,0,2,1.5,2129.89011765,0,0,31458.0,5,1,0,0,3,3,0,0,1,0,0,0,0,0,1,2,20972.0,6,3,6,6_1,40000.0,0,40000.0,0,7,7,0.0,0.0,0.0,0,0,3925.191793332121,3925.191793332121,0.0 5332,3896,3895,9,14,30,111,67,42,0,15331,0,99999,0,350,1,3,0,1,1.0,2678.5981911,0,0,19684.0,1,3,5,4,1,1,0,1,0,0,1,0,0,0,0,1,19684.0,6,3,6,6_0,25000.0,0,25000.0,0,3,16,0.0,50.0,1.1,0,0,2457.4124277850947,2457.4124277850947,0.0 5333,3905,3904,7,8,49,112,45,41,0,15346,0,550,0,0,2,5,1,3,2.0,1737.98128067,0,0,43130.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,21565.0,6,3,6,6_1,16000.0,0,16000.0,0,6,7,24.0,56.6666666667,3.3,0,1,1570.0767173328484,1570.0767173328484,0.0 5334,3910,3909,6,11,75,111,75,70,0,15354,0,0,0,0,0,1,0,1,1.0,3580.63317516,3015,0,20820.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,0,1,20820.0,6,3,6,6_0,4500.0,0,4500.0,0,6,7,0.0,0.0,0.0,0,0,442.3342370013171,442.3342370013171,0.0 -5335,3916,3915,6,6,59,112,53,50,0,15361,0,530,0,0,2,5,1,3,2.0,982.8918341589999,2571,0,39350.0,1,1,8,1,4,2,1,1,0,1,0,0,0,0,0,2,19675.0,6,3,6,6_0,20500.0,0,20500.0,0,6,6,49.3,28.3333333333,3.3,0,1,2015.0781907837777,2015.0781907837777,0.0 +5335,3916,3915,6,6,59,112,53,50,0,15361,0,530,0,0,2,5,1,3,2.0,982.891834159,2571,0,39350.0,1,1,8,1,4,2,1,1,0,1,0,0,0,0,0,2,19675.0,6,3,6,6_0,20500.0,0,20500.0,0,6,6,49.3,28.3333333333,3.3,0,1,2015.0781907837777,2015.0781907837777,0.0 5336,3922,3921,4,14,62,112,78,71,0,15367,0,0,0,0,0,7,0,1,1.0,3065.24928246,2608,0,19532.0,5,1,7,1,1,2,0,0,0,1,0,0,0,0,1,1,19532.0,6,3,6,6_0,3000.0,0,3000.0,0,2,14,0.0,0.0,0.0,0,0,294.88949133421136,294.88949133421136,0.0 -5337,3947,3946,2,17,30,111,63,31,0,15398,0,750,0,0,2,3,1,3,1.8,2395.95963229,1560,0,34734.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,19296.6666667,6,3,6,6_0,32343.0,0,32343.0,0,8,16,0.0,6.666666666669999,3.3,0,1,3179.203606074133,3179.203606074133,0.0 +5337,3947,3946,2,17,30,111,63,31,0,15398,0,750,0,0,2,3,1,3,1.8,2395.95963229,1560,0,34734.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,19296.6666667,6,3,6,6_0,32343.0,0,32343.0,0,8,16,0.0,6.66666666667,3.3,0,1,3179.203606074133,3179.203606074133,0.0 5338,3955,3954,6,8,42,111,46,43,0,15408,0,99999,0,0,1,3,1,2,1.3,2762.25989904,0,0,25727.0,1,2,4,4,2,1,0,1,0,0,1,0,0,0,0,1,19790.0,6,3,6,6_0,35000.0,0,35000.0,0,2,7,227.5,80.0,3.3,0,1,3440.377398899133,3440.377398899133,0.0 5339,3967,3966,0,0,82,221,71,70,0,15424,0,0,0,0,0,5,0,1,1.0,4813.03983676,2080,0,19434.0,5,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,19434.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5340,3969,3968,4,4,67,111,75,50,0,15428,0,0,0,0,0,6,0,2,1.5,966.47011327,0,0,29200.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,19466.6666667,6,3,6,6_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 -5341,3988,3987,7,7,57,111,37,50,0,15456,0,350,0,0,2,7,3,5,2.8,1042.88547266,2600,0,54303.0,4,2,9,7,4,3,0,0,0,0,0,1,0,0,0,2,19393.928571400003,6,3,6,6_0,10000.0,0,0.0,10000,1,1,0.0,0.0,0.0,1,0,982.9649711140379,0.0,982.9649711140379 -5342,3994,3993,0,14,48,300,65,60,2,15465,0,1330,0,0,2,5,2,4,2.3,1509.27752443,3823,1500,44382.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,1,2,19296.521739099997,6,3,6,6_1,32000.0,0,32000.0,0,3,11,145.0,30.0,3.3,0,1,3140.1534346656968,3140.1534346656968,0.0 +5341,3988,3987,7,7,57,111,37,50,0,15456,0,350,0,0,2,7,3,5,2.8,1042.88547266,2600,0,54303.0,4,2,9,7,4,3,0,0,0,0,0,1,0,0,0,2,19393.9285714,6,3,6,6_0,10000.0,0,0.0,10000,1,1,0.0,0.0,0.0,1,0,982.9649711140379,0.0,982.9649711140379 +5342,3994,3993,0,14,48,300,65,60,2,15465,0,1330,0,0,2,5,2,4,2.3,1509.27752443,3823,1500,44382.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,1,2,19296.5217391,6,3,6,6_1,32000.0,0,32000.0,0,3,11,145.0,30.0,3.3,0,1,3140.1534346656968,3140.1534346656968,0.0 5343,4004,4003,9,9,45,400,52,71,0,1548,0,1000,0,0,3,7,2,4,2.3,3213.22967236,3640,0,46066.0,1,2,0,1,4,2,1,1,0,1,0,0,0,0,0,2,20028.6956522,6,3,6,6_0,30000.0,0,30000.0,0,3,7,494.0,62.75,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 5344,4025,4024,6,29,56,400,52,50,0,15509,0,0,0,0,1,4,0,1,1.0,1859.54207169,224,0,20042.0,1,3,0,0,1,4,0,0,1,0,0,0,0,0,2,2,20042.0,6,3,6,6_1,1500.0,0,1500.0,0,2,21,0.0,0.0,0.0,0,0,147.19469224995453,147.19469224995453,0.0 5345,4030,4029,3,14,29,112,55,50,0,15513,0,400,0,247,2,3,0,2,1.5,2656.46825597,364,0,29045.0,1,3,3,0,3,1,0,1,1,0,0,0,0,1,0,1,19363.3333333,6,3,6,6_1,40000.0,0,40000.0,0,3,15,187.2,25.0,3.3,0,1,3925.191793332121,3925.191793332121,0.0 @@ -5357,7 +5357,7 @@ 5355,4120,4119,1,4,72,400,74,70,2,15642,0,0,36,0,1,4,0,2,1.5,2593.53055909,1940,7500,32402.0,5,3,0,0,3,2,0,1,1,0,0,0,0,0,1,1,21601.3333333,6,3,6,6_1,16000.0,0,16000.0,0,3,4,0.0,0.0,0.0,0,0,1570.0767173328484,1570.0767173328484,0.0 5356,4129,4128,0,11,55,111,62,50,0,15656,0,45,0,170,3,3,2,3,2.0,1496.36729914,0,0,38371.0,4,3,10,8,2,2,0,0,0,0,0,0,1,1,1,1,19185.5,6,3,6,6_0,11747.0,0,11747.0,0,13,13,154.2,100.0,5.56,0,0,1154.6889515676603,1154.6889515676603,0.0 5357,4139,4138,7,7,50,111,38,50,0,15673,0,250,0,0,2,5,2,4,2.5,1533.31007995,0,0,53405.0,1,2,6,5,4,1,0,1,0,0,1,0,0,0,0,1,21362.0,6,3,6,6_0,10000.0,0,10000.0,0,5,8,0.0,0.0,0.0,0,1,982.9649711140379,982.9649711140379,0.0 -5358,4165,4164,21,21,42,112,62,50,0,15719,0,450,250,0,2,5,2,4,2.1,3220.06396989,3380,0,43984.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,20944.761904799998,6,3,6,6_1,28955.0,0,21455.0,7500,6,12,141.6,30.0,0.0,0,1,2841.348209398289,2105.374748148516,735.9734612497726 +5358,4165,4164,21,21,42,112,62,50,0,15719,0,450,250,0,2,5,2,4,2.1,3220.06396989,3380,0,43984.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,20944.7619048,6,3,6,6_1,28955.0,0,21455.0,7500,6,12,141.6,30.0,0.0,0,1,2841.348209398289,2105.374748148516,735.9734612497726 5359,4178,4177,10,12,59,400,64,50,0,15738,0,0,0,0,1,4,0,2,1.5,1465.94534661,3120,0,28987.0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,19324.6666667,6,3,6,6_1,10258.0,0,0.0,10258,6,9,0.0,0.0,0.0,0,1,1006.6154354000225,0.0,1006.6154354000225 5360,4186,4185,4,8,44,111,34,10,0,15748,0,835,0,0,2,5,3,5,2.4,1398.18715804,3682,0,47413.0,1,2,8,7,4,2,0,1,0,0,0,1,0,1,0,2,19755.4166667,6,3,6,6_0,2000.0,0,2000.0,0,3,8,447.3,70.0,5.5,0,0,196.59299422280756,196.59299422280756,0.0 5361,4215,4214,3,7,29,111,21,42,0,15784,0,450,0,0,2,5,2,4,2.1,8342.71576293,0,0,42700.0,1,2,8,6,4,1,1,1,0,0,1,0,0,0,0,1,20333.3333333,6,3,6,6_0,10000.0,0,10000.0,0,2,2,132.0,17.5,3.33,0,1,982.9649711140379,982.9649711140379,0.0 @@ -5365,11 +5365,11 @@ 5363,4234,4233,3,5,55,400,45,50,0,1593,0,0,104,0,2,6,0,2,1.5,1440.31011275,0,0,29748.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,19832.0,6,3,6,6_1,13506.0,0,9144.0,4362,1,3,36.5,16.0,3.3,0,1,1325.3410090185907,897.2988439557228,428.04216506286775 5364,4235,4234,1,1,66,111,74,41,1,1594,0,0,0,0,0,4,0,2,1.5,2317.95260523,1771,10933,30871.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,20580.6666667,6,3,6,6_0,15000.0,0,0.0,15000,8,8,0.0,0.0,0.0,0,0,1474.4474566710567,0.0,1474.4474566710567 5365,4236,4235,5,5,43,111,22,50,0,1595,0,0,150,0,2,4,1,3,2.0,4737.39709692,0,0,40096.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,20048.0,6,3,6,6_0,6710.0,0,0.0,6710,1,6,0.0,60.0,0.0,1,1,659.5694956175195,0.0,659.5694956175195 -5366,4246,4245,6,7,39,112,22,20,0,1607,0,0,0,0,1,5,1,2,1.3,2681.23304242,2210,0,27616.0,1,1,10,1,2,1,1,0,0,1,0,0,0,0,0,1,21243.076923099998,6,3,6,6_0,23000.0,0,23000.0,0,3,6,94.0,28.0,3.3,0,1,2260.819433562287,2260.819433562287,0.0 +5366,4246,4245,6,7,39,112,22,20,0,1607,0,0,0,0,1,5,1,2,1.3,2681.23304242,2210,0,27616.0,1,1,10,1,2,1,1,0,0,1,0,0,0,0,0,1,21243.0769231,6,3,6,6_0,23000.0,0,23000.0,0,3,6,94.0,28.0,3.3,0,1,2260.819433562287,2260.819433562287,0.0 5367,4258,4257,3,13,50,221,85,42,0,1627,0,0,110,0,1,4,0,2,1.5,2920.31123495,2461,0,29561.0,7,2,1,2,3,3,0,0,0,1,0,0,0,0,1,2,19707.3333333,6,3,6,6_0,15311.0,0,15311.0,0,7,19,0.0,0.0,0.0,0,1,1505.0176672727034,1505.0176672727034,0.0 5368,4263,4262,6,8,31,212,63,50,0,1635,0,99999,270,0,2,5,2,4,2.1,1488.06273581,4108,0,44955.0,1,2,3,0,4,3,0,1,1,0,0,0,0,0,1,2,21407.1428571,6,3,6,6_1,10000.0,0,10000.0,0,4,8,133.8,18.0,3.31,0,1,981.2979483330303,981.2979483330303,0.0 5369,4266,4265,4,4,74,112,75,50,0,1640,0,0,0,0,0,5,0,1,1.0,1692.24826934,0,0,19627.0,5,4,10,0,1,1,0,0,1,0,0,0,0,0,1,0,19627.0,6,3,6,6_1,6000.0,0,0.0,6000,2,2,0.0,0.0,0.0,0,0,588.7787689998181,0.0,588.7787689998181 -5370,4276,4275,3,17,49,400,64,71,0,1652,0,0,45,0,2,5,2,4,2.3,2868.39812712,1571,0,45187.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,1,1,19646.521739099997,6,3,6,6_1,27102.0,0,17102.0,10000,7,10,84.0,66.6666666667,3.3,0,1,2659.5136995721787,1678.2157512391484,981.2979483330303 +5370,4276,4275,3,17,49,400,64,71,0,1652,0,0,45,0,2,5,2,4,2.3,2868.39812712,1571,0,45187.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,1,1,19646.5217391,6,3,6,6_1,27102.0,0,17102.0,10000,7,10,84.0,66.6666666667,3.3,0,1,2659.5136995721787,1678.2157512391484,981.2979483330303 5371,4279,4278,15,20,47,111,47,50,0,1656,0,75,0,0,2,6,2,4,2.5,2196.16699311,0,0,49110.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,0,2,19644.0,6,3,6,6_0,5000.0,0,5000.0,0,13,20,95.1,68.3333333333,5.57,0,1,491.48248555701895,491.48248555701895,0.0 5372,4282,4281,2,6,38,112,43,20,0,166,0,2600,0,0,2,6,3,5,2.4,1563.78897824,7182,0,49111.0,1,2,7,1,4,2,0,1,0,1,0,0,0,0,1,1,20462.9166667,6,3,6,6_0,32000.0,0,20000.0,12000,5,5,53.0,12.5,0.0,0,1,3145.487907564921,1965.9299422280758,1179.5579653368454 5373,4288,4287,8,18,62,112,78,70,0,1665,0,0,400,0,1,5,1,2,1.5,1345.25356197,2133,0,29480.0,5,1,9,0,2,1,0,1,1,0,0,0,0,0,1,0,19653.3333333,6,3,6,6_1,10000.0,0,0.0,10000,13,18,0.0,0.0,0.0,1,0,981.2979483330303,0.0,981.2979483330303 @@ -5377,7 +5377,7 @@ 5375,4306,4305,2,2,24,300,47,20,0,1690,0,0,0,325,1,3,0,1,1.0,3081.09877946,0,0,21588.0,1,3,0,0,1,1,0,0,1,0,0,0,0,0,0,1,21588.0,6,3,6,6_1,11716.0,0,11716.0,0,1,1,0.0,4.0,2.2,0,0,1149.6886762669783,1149.6886762669783,0.0 5376,4316,4315,3,3,58,300,64,50,0,1703,0,0,0,0,2,5,0,2,1.5,1226.36538439,3952,0,29051.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,19367.3333333,6,3,6,6_1,4000.0,0,4000.0,0,6,6,0.0,5.0,0.0,0,0,392.5191793332121,392.5191793332121,0.0 5377,4319,4318,5,5,64,111,75,50,0,1707,0,0,0,0,0,4,0,2,1.5,2405.76333682,1560,0,29935.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,19956.6666667,6,3,6,6_0,6000.0,0,0.0,6000,4,7,0.0,0.0,0.0,0,0,589.7789826684227,0.0,589.7789826684227 -5378,4341,4340,5,5,43,112,45,31,0,1737,0,250,0,0,2,5,2,4,2.1,2395.22172203,5356,0,44355.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,21121.428571400003,6,3,6,6_1,20000.0,0,20000.0,0,3,3,206.0,17.5,3.3,0,1,1962.5958966660605,1962.5958966660605,0.0 +5378,4341,4340,5,5,43,112,45,31,0,1737,0,250,0,0,2,5,2,4,2.1,2395.22172203,5356,0,44355.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,21121.4285714,6,3,6,6_1,20000.0,0,20000.0,0,3,3,206.0,17.5,3.3,0,1,1962.5958966660605,1962.5958966660605,0.0 5379,4346,4345,2,2,40,111,62,50,0,1745,0,210,0,0,1,3,0,1,1.0,3056.54621779,0,0,21155.0,1,3,8,6,1,2,0,1,0,0,1,0,0,0,0,2,21155.0,6,3,6,6_0,35000.0,0,35000.0,0,2,16,0.0,4.0,1.1,0,0,3440.377398899133,3440.377398899133,0.0 5380,4348,4347,0,0,25,111,46,31,0,1747,0,0,0,500,1,1,0,1,1.0,3104.16098784,0,0,19210.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,19210.0,6,3,6,6_0,0.0,0,0.0,0,0,0,114.5,120.0,5.57,0,0,0.0,0.0,0.0 5381,4353,4352,6,8,63,111,78,50,0,1755,0,0,0,0,0,3,0,2,1.5,1915.75757311,2600,0,28686.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,19124.0,6,3,6,6_0,10000.0,0,10000.0,0,6,9,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 @@ -5391,26 +5391,26 @@ 5389,4425,4424,6,7,68,111,75,70,0,1843,0,0,0,0,0,4,0,2,1.5,2335.01582281,1560,0,32041.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,21360.6666667,6,3,6,6_0,8716.0,0,8716.0,0,1,7,0.0,0.0,0.0,0,0,856.7522688229955,856.7522688229955,0.0 5390,4427,4426,10,12,62,120,78,70,0,1845,0,0,0,0,0,5,0,1,1.0,1295.75792835,2605,0,19453.0,5,1,0,1,1,1,0,0,0,1,0,0,0,0,1,0,19453.0,6,3,6,6_0,1000.0,0,0.0,1000,6,12,0.0,0.0,0.0,0,0,98.29649711140378,0.0,98.29649711140378 5391,4443,4442,0,0,83,111,78,70,0,1869,0,0,0,338,0,2,0,1,1.0,3575.05944851,0,0,20677.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20677.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5392,4460,4459,5,8,49,111,63,50,0,1891,0,0,0,0,2,5,2,4,2.3,2332.00138339,2577,0,45930.0,1,2,8,7,4,1,1,0,0,0,0,1,0,0,1,0,19969.565217400002,6,3,6,6_0,11000.0,0,0.0,11000,3,3,0.0,20.0,0.0,0,1,1081.2614682254416,0.0,1081.2614682254416 +5392,4460,4459,5,8,49,111,63,50,0,1891,0,0,0,0,2,5,2,4,2.3,2332.00138339,2577,0,45930.0,1,2,8,7,4,1,1,0,0,0,0,1,0,0,1,0,19969.5652174,6,3,6,6_0,11000.0,0,0.0,11000,3,3,0.0,20.0,0.0,0,1,1081.2614682254416,0.0,1081.2614682254416 5393,4473,4472,1,1,42,111,42,60,0,1911,0,0,180,0,2,5,2,4,2.1,2214.69600531,5600,0,44457.0,1,2,8,7,4,2,1,1,0,0,0,1,0,0,2,0,21170.0,6,3,6,6_0,1200.0,0,0.0,1200,11,0,0.0,27.5,3.31,0,1,117.95579653368455,0.0,117.95579653368455 5394,4475,4474,1,5,58,111,48,50,2,1914,0,250,0,0,1,5,0,1,1.0,1412.25997946,2938,15000,20849.0,1,1,7,6,1,2,0,0,0,0,1,0,0,0,0,2,20849.0,6,3,6,6_0,12000.0,0,12000.0,0,4,5,0.0,0.0,0.0,0,1,1179.5579653368454,1179.5579653368454,0.0 5395,4478,4477,0,11,50,211,64,42,0,1918,0,0,210,0,1,2,0,1,1.0,2661.87175282,1903,0,19544.0,1,3,2,3,1,1,0,1,0,1,0,0,0,0,1,0,19544.0,6,3,6,6_0,18000.0,0,0.0,18000,5,10,116.0,65.0,3.3,0,1,1769.3369480052684,0.0,1769.3369480052684 5396,4493,4492,8,10,42,112,34,20,0,1940,0,0,0,0,1,5,2,3,1.6,1651.42770274,2808,0,30894.0,1,2,6,0,2,1,1,0,1,0,0,0,0,0,0,1,19308.75,6,3,6,6_1,28000.0,0,28000.0,0,10,11,0.0,0.0,0.0,1,0,2747.634255332485,2747.634255332485,0.0 5397,4500,4499,3,16,32,112,42,20,0,1948,0,100,0,0,2,7,3,5,2.4,2183.39739472,5201,0,51212.0,1,2,6,0,4,3,1,0,1,0,0,0,0,0,0,3,21338.3333333,6,3,6,6_1,25000.0,0,25000.0,0,4,4,439.9,61.6666666667,3.3,0,1,2453.2448708325755,2453.2448708325755,0.0 -5398,4510,4509,8,10,74,120,77,71,0,196,0,0,0,0,0,5,0,2,1.5,5417.5448928999995,0,0,30335.0,5,1,0,2,3,2,0,0,0,1,0,0,0,0,0,2,20223.3333333,6,3,6,6_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 +5398,4510,4509,8,10,74,120,77,71,0,196,0,0,0,0,0,5,0,2,1.5,5417.5448929,0,0,30335.0,5,1,0,2,3,2,0,0,0,1,0,0,0,0,0,2,20223.3333333,6,3,6,6_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 5399,4524,4523,0,0,74,111,77,70,0,1980,0,0,0,360,0,4,0,1,1.0,3073.25225996,0,0,19460.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,19460.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5400,4541,4540,1,16,56,112,13,41,0,20,0,1000,0,0,2,4,2,3,2.0,2315.63808125,0,0,39775.0,1,1,9,0,2,3,1,0,1,0,0,0,0,0,0,3,19887.5,6,3,6,6_1,25000.0,0,25000.0,0,5,12,84.0,33.3333333333,3.3,0,1,2453.2448708325755,2453.2448708325755,0.0 5401,4549,4548,1,8,52,300,55,41,2,2016,0,0,318,0,1,4,0,3,2.0,2264.66548337,1874,3200,42761.0,1,1,0,0,5,2,0,0,1,0,0,0,0,0,1,1,21380.5,6,3,6,6_1,10000.0,0,10000.0,0,9,9,52.0,20.0,3.3,0,1,981.2979483330303,981.2979483330303,0.0 5402,4565,4564,1,1,57,112,48,50,0,2041,0,550,0,0,1,4,0,2,1.5,4155.20849276,2830,0,30372.0,1,1,5,0,3,2,0,0,1,0,0,0,0,0,1,1,20248.0,6,3,6,6_1,24000.0,0,11000.0,13000,10,12,0.0,0.0,0.0,0,1,2355.1150759992724,1079.4277431663334,1275.6873328329393 5403,4576,4575,3,3,39,111,38,31,0,2057,0,200,0,0,1,2,0,1,1.0,3408.15670629,884,0,19418.0,4,2,8,6,1,1,1,1,0,0,1,0,0,0,0,1,19418.0,6,3,6,6_0,15000.0,0,15000.0,0,1,1,50.5,45.0,3.3,0,1,1474.4474566710567,1474.4474566710567,0.0 -5404,4584,4583,1,1,37,300,54,20,0,2065,0,350,0,0,2,5,2,4,2.1,1790.59469032,1040,0,44334.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21111.428571400003,6,3,6,6_1,3104.0,0,3104.0,0,1,1,42.5,25.0,3.31,0,1,304.5948831625726,304.5948831625726,0.0 -5405,4585,4584,7,7,31,111,62,43,0,2066,0,0,0,411,2,4,1,3,1.8,2708.57818863,0,0,38328.0,1,3,7,5,4,2,1,0,0,0,1,0,0,0,1,1,21293.3333333,6,3,6,6_0,18716.0,0,8716.0,10000,3,8,169.2,13.333333333299999,3.3,1,1,1839.7172399370331,856.7522688229955,982.9649711140379 +5404,4584,4583,1,1,37,300,54,20,0,2065,0,350,0,0,2,5,2,4,2.1,1790.59469032,1040,0,44334.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21111.4285714,6,3,6,6_1,3104.0,0,3104.0,0,1,1,42.5,25.0,3.31,0,1,304.5948831625726,304.5948831625726,0.0 +5405,4585,4584,7,7,31,111,62,43,0,2066,0,0,0,411,2,4,1,3,1.8,2708.57818863,0,0,38328.0,1,3,7,5,4,2,1,0,0,0,1,0,0,0,1,1,21293.3333333,6,3,6,6_0,18716.0,0,8716.0,10000,3,8,169.2,13.3333333333,3.3,1,1,1839.7172399370331,856.7522688229955,982.9649711140379 5406,4588,4587,8,10,63,112,77,50,0,207,0,0,0,0,0,7,0,2,1.5,2042.86815527,2954,0,29779.0,5,4,6,0,3,1,0,0,1,0,0,0,0,0,0,1,19852.6666667,6,3,6,6_1,20000.0,0,20000.0,0,5,11,0.0,0.0,0.0,0,0,1962.5958966660605,1962.5958966660605,0.0 5407,4599,4598,8,13,43,112,65,42,0,2081,0,400,0,0,2,5,3,5,2.4,2027.75523744,0,0,49244.0,1,3,9,0,4,2,0,1,1,0,0,0,0,1,0,2,20518.3333333,6,3,6,6_1,30000.0,0,30000.0,0,10,14,78.6,11.6,3.3,0,1,2943.8938449990906,2943.8938449990906,0.0 5408,4603,4602,0,0,27,111,35,10,0,2086,0,0,0,570,1,1,0,1,1.0,4435.34736882,0,0,21356.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21356.0,6,3,6,6_0,0.0,0,0.0,0,0,0,31.5,50.0,5.56,0,0,0.0,0.0,0.0 -5409,4605,4604,1,10,33,112,46,41,2,2089,0,99999,0,0,1,4,1,3,1.8,1477.16067244,2080,6000,34843.0,1,2,6,1,4,1,0,1,0,1,0,0,0,0,0,1,19357.222222200002,6,3,6,6_0,20000.0,0,20000.0,0,3,5,171.0,40.0,3.3,0,1,1965.9299422280758,1965.9299422280758,0.0 -5410,4610,4609,5,5,56,111,45,41,0,2095,0,250,0,0,1,2,0,1,1.0,3419.8725821000003,2340,0,20467.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,0,1,20467.0,6,3,6,6_0,35000.0,0,35000.0,0,3,10,53.0,20.0,3.3,0,1,3440.377398899133,3440.377398899133,0.0 -5411,4622,4621,0,2,34,111,43,41,0,2113,0,800,0,0,2,6,2,4,2.1,2111.28187176,6735,0,41134.0,1,2,7,6,4,2,1,1,0,0,1,0,0,0,0,2,19587.619047599997,6,3,6,6_0,15000.0,0,15000.0,0,4,4,119.5,26.25,3.31,1,1,1474.4474566710567,1474.4474566710567,0.0 +5409,4605,4604,1,10,33,112,46,41,2,2089,0,99999,0,0,1,4,1,3,1.8,1477.16067244,2080,6000,34843.0,1,2,6,1,4,1,0,1,0,1,0,0,0,0,0,1,19357.2222222,6,3,6,6_0,20000.0,0,20000.0,0,3,5,171.0,40.0,3.3,0,1,1965.9299422280758,1965.9299422280758,0.0 +5410,4610,4609,5,5,56,111,45,41,0,2095,0,250,0,0,1,2,0,1,1.0,3419.8725821,2340,0,20467.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,0,1,20467.0,6,3,6,6_0,35000.0,0,35000.0,0,3,10,53.0,20.0,3.3,0,1,3440.377398899133,3440.377398899133,0.0 +5411,4622,4621,0,2,34,111,43,41,0,2113,0,800,0,0,2,6,2,4,2.1,2111.28187176,6735,0,41134.0,1,2,7,6,4,2,1,1,0,0,1,0,0,0,0,2,19587.6190476,6,3,6,6_0,15000.0,0,15000.0,0,4,4,119.5,26.25,3.31,1,1,1474.4474566710567,1474.4474566710567,0.0 5412,4623,4622,10,17,33,111,63,50,0,2114,0,0,0,0,1,3,0,1,1.0,2075.55460376,0,0,20163.0,1,2,6,5,1,1,0,0,0,0,1,0,0,0,1,0,20163.0,6,3,6,6_0,5000.0,0,0.0,5000,9,15,0.0,30.0,3.3,1,0,491.48248555701895,0.0,491.48248555701895 5413,4632,4631,3,3,55,111,56,50,0,2125,0,30,0,0,1,4,0,2,1.5,2171.22112483,0,0,29039.0,1,1,8,7,3,2,0,1,0,0,0,1,0,0,0,2,19359.3333333,6,3,6,6_0,12000.0,0,12000.0,0,4,5,0.0,0.0,0.0,0,1,1179.5579653368454,1179.5579653368454,0.0 5414,4633,4632,8,8,81,222,77,70,0,2126,0,0,0,0,0,8,0,1,1.0,2099.94893537,0,0,20183.0,5,1,1,0,1,1,0,0,1,0,0,0,0,0,1,0,20183.0,6,3,6,6_1,8000.0,0,0.0,8000,10,10,0.0,0.0,0.0,0,0,785.0383586664242,0.0,785.0383586664242 @@ -5419,7 +5419,7 @@ 5417,4690,4689,11,11,75,221,77,70,0,22,0,0,0,0,0,5,0,2,1.5,2739.63997747,0,0,32098.0,5,1,1,1,3,1,0,0,0,1,0,0,0,0,1,0,21398.6666667,6,3,6,6_0,5000.0,0,0.0,5000,11,11,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 5418,4700,4699,3,3,62,111,74,31,0,2210,0,0,0,0,0,6,0,2,1.5,1952.18885343,8298,0,28798.0,5,2,10,8,3,2,0,0,0,0,0,0,1,0,1,1,19198.6666667,6,3,6,6_0,11722.0,0,11672.0,50,1,1,0.0,0.0,0.0,0,0,1152.2315391398754,1147.3167142843051,4.914824855570189 5419,4711,4710,8,11,47,111,34,10,0,2221,0,100,0,0,1,6,3,5,2.4,2128.45480299,0,0,48870.0,1,2,8,6,4,1,0,1,0,0,1,0,0,0,0,1,20362.5,6,3,6,6_0,40000.0,0,40000.0,0,2,6,5.5,3.33333333333,0.0,0,1,3931.8598844561516,3931.8598844561516,0.0 -5420,4721,4720,6,7,36,112,52,50,0,2231,0,800,0,171,2,6,3,5,2.6,1792.14875873,0,0,51191.0,4,3,8,0,4,1,1,1,1,0,0,0,0,1,0,1,19688.846153799997,6,3,6,6_1,10000.0,0,10000.0,0,2,4,88.0,26.0,0.0,0,0,981.2979483330303,981.2979483330303,0.0 +5420,4721,4720,6,7,36,112,52,50,0,2231,0,800,0,171,2,6,3,5,2.6,1792.14875873,0,0,51191.0,4,3,8,0,4,1,1,1,1,0,0,0,0,1,0,1,19688.8461538,6,3,6,6_1,10000.0,0,10000.0,0,2,4,88.0,26.0,0.0,0,0,981.2979483330303,981.2979483330303,0.0 5421,4743,4742,19,19,89,111,77,70,0,2266,0,0,0,0,0,3,0,2,1.5,2194.34141369,0,0,29473.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,19648.6666667,6,3,6,6_0,500.0,0,0.0,500,16,17,0.0,0.0,0.0,0,0,49.14824855570189,0.0,49.14824855570189 5422,4749,4748,10,10,77,111,75,60,0,2282,0,0,0,0,0,5,0,2,1.5,3745.58745025,0,0,32340.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,21560.0,6,3,6,6_0,5000.0,0,5000.0,0,12,12,0.0,0.0,0.0,0,0,491.48248555701895,491.48248555701895,0.0 5423,4750,4749,8,8,35,400,47,43,0,2283,0,80,30,0,2,6,2,4,2.1,3676.57238336,0,0,43384.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,20659.047619,6,3,6,6_1,50000.0,0,30000.0,20000,8,8,387.6,68.3333333333,3.3,0,1,4906.489741665151,2943.8938449990906,1962.5958966660605 @@ -5427,7 +5427,7 @@ 5425,4767,4766,3,15,54,111,62,50,0,2309,0,80,250,0,3,5,1,3,2.0,1516.66979991,3609,0,42720.0,1,1,8,6,4,3,0,1,0,0,1,0,0,0,2,1,21360.0,6,3,6,6_0,23259.0,0,0.0,23259,14,14,572.5,80.0,3.3,0,1,2286.2782263141407,0.0,2286.2782263141407 5426,4777,4776,8,8,58,111,21,50,0,2322,0,0,0,0,1,5,3,4,2.5,1416.27489363,0,0,50890.0,1,2,7,5,2,1,1,0,0,0,1,0,0,0,0,1,20356.0,6,3,6,6_0,28682.0,0,28682.0,0,4,6,0.0,7.5,3.3,0,1,2819.3401301492836,2819.3401301492836,0.0 5427,4778,4777,3,9,35,111,53,70,0,2323,0,60,0,430,1,1,0,1,1.0,2501.49387409,0,0,20010.0,1,3,4,4,1,1,0,1,0,0,1,0,0,0,0,1,20010.0,6,3,6,6_0,22891.0,0,22891.0,0,2,9,0.0,50.0,3.3,1,0,2250.105115377144,2250.105115377144,0.0 -5428,4779,4778,2,3,48,111,38,50,0,2325,0,0,0,590,2,4,1,3,2.0,1947.5371502,0,0,42056.0,1,3,8,7,4,1,0,0,0,0,0,1,0,0,1,0,21028.0,6,3,6,6_0,10000.0,0,0.0,10000,5,5,0.0,213.33333333299998,6.63,0,0,982.9649711140379,0.0,982.9649711140379 +5428,4779,4778,2,3,48,111,38,50,0,2325,0,0,0,590,2,4,1,3,2.0,1947.5371502,0,0,42056.0,1,3,8,7,4,1,0,0,0,0,0,1,0,0,1,0,21028.0,6,3,6,6_0,10000.0,0,0.0,10000,5,5,0.0,213.333333333,6.63,0,0,982.9649711140379,0.0,982.9649711140379 5429,4806,4805,5,7,57,300,64,50,0,2363,0,0,0,0,1,3,0,1,1.0,1911.08933014,0,0,19969.0,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0,1,19969.0,6,3,6,6_1,18000.0,0,18000.0,0,7,7,84.5,40.0,3.3,0,1,1766.3363069994543,1766.3363069994543,0.0 5430,4809,4808,8,19,41,111,56,71,0,2368,0,0,0,0,1,2,0,1,1.0,3579.99858901,0,0,20540.0,1,2,9,7,1,1,0,0,0,0,0,1,0,0,1,0,20540.0,6,3,6,6_0,5000.0,0,0.0,5000,3,17,30.5,50.0,3.3,0,0,491.48248555701895,0.0,491.48248555701895 5431,4814,4813,4,9,41,111,34,20,0,2377,0,330,0,0,2,4,1,3,1.8,1354.20983883,3287,0,37916.0,1,2,9,7,4,1,1,1,0,0,0,1,0,0,0,1,21064.4444444,6,3,6,6_0,20000.0,0,20000.0,0,8,9,132.5,16.6666666667,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 @@ -5443,7 +5443,7 @@ 5441,4913,4912,0,0,40,111,46,31,0,2512,0,0,0,390,1,1,0,1,1.0,3571.54994149,0,0,20742.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20742.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5442,4917,4916,1,2,32,112,46,42,2,2517,0,70,0,0,2,5,2,4,2.1,2447.87885623,3770,11000,42581.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,20276.6666667,6,3,6,6_1,20000.0,0,20000.0,0,6,1,146.5,40.0,3.3,0,1,1962.5958966660605,1962.5958966660605,0.0 5443,4933,4932,8,19,49,111,56,50,0,2542,0,0,250,0,2,5,0,2,1.5,1423.44992071,3215,0,32184.0,1,1,6,5,3,2,0,1,0,0,1,0,0,0,2,0,21456.0,6,3,6,6_0,5000.0,0,0.0,5000,3,21,26.4,30.0,3.3,0,1,491.48248555701895,0.0,491.48248555701895 -5444,4947,4946,11,11,35,111,42,20,0,2563,99999,0,0,0,1,2,1,2,1.3,2832.22229605,0,0,25367.0,1,2,10,8,2,1,1,1,0,0,0,0,1,0,0,0,19513.076923099998,6,3,6,6_0,6352.0,0,0.0,6352,2,15,64.5,65.0,3.31,0,0,624.3793496516369,0.0,624.3793496516369 +5444,4947,4946,11,11,35,111,42,20,0,2563,99999,0,0,0,1,2,1,2,1.3,2832.22229605,0,0,25367.0,1,2,10,8,2,1,1,1,0,0,0,0,1,0,0,0,19513.0769231,6,3,6,6_0,6352.0,0,0.0,6352,2,15,64.5,65.0,3.31,0,0,624.3793496516369,0.0,624.3793496516369 5445,4983,4982,1,5,29,112,47,31,0,2618,0,290,0,0,1,5,1,3,2.0,1659.60982289,2392,0,41708.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,2,20854.0,6,3,6,6_1,38547.0,0,38547.0,0,2,9,0.0,0.0,0.0,0,1,3782.609201439331,3782.609201439331,0.0 5446,4999,4998,3,3,60,112,75,41,0,2643,0,0,0,0,0,6,0,2,1.5,2403.23952015,0,0,31735.0,5,1,10,2,3,2,0,0,0,1,0,0,0,0,0,2,21156.6666667,6,3,6,6_0,10000.0,0,10000.0,0,2,2,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 5447,5003,5002,7,12,40,400,34,10,0,2647,0,0,0,0,1,6,2,3,1.6,2412.93818537,2436,0,31388.0,1,1,0,1,2,1,0,0,0,1,0,0,0,0,0,1,19617.5,6,3,6,6_0,20000.0,0,20000.0,0,3,5,171.0,40.0,3.3,0,1,1965.9299422280758,1965.9299422280758,0.0 @@ -5454,28 +5454,28 @@ 5452,5043,5042,4,6,66,112,74,70,0,2703,0,500,0,0,1,6,2,5,2.8,984.888553868,4472,0,59155.0,5,1,8,0,5,2,0,1,1,0,0,0,0,0,0,2,21126.7857143,6,3,6,6_1,10000.0,0,10000.0,0,9,10,0.0,0.0,0.0,0,1,981.2979483330303,981.2979483330303,0.0 5453,5046,5045,4,6,60,111,77,71,0,2706,0,0,0,0,0,3,0,1,1.0,3249.7791281,832,0,20572.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,20572.0,6,3,6,6_0,6000.0,0,0.0,6000,2,5,0.0,0.0,0.0,0,0,589.7789826684227,0.0,589.7789826684227 5454,5048,5047,10,10,44,111,53,41,0,271,0,0,500,0,1,2,0,1,1.0,2750.3369027,4667,0,20700.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,20700.0,6,3,6,6_0,6000.0,0,0.0,6000,5,6,0.0,0.0,0.0,0,0,589.7789826684227,0.0,589.7789826684227 -5455,5054,5053,3,5,45,112,37,43,0,2718,0,0,0,0,1,8,1,2,1.3,3190.11236409,0,0,26685.0,1,1,6,0,2,1,0,0,1,0,0,0,0,0,1,0,20526.923076900002,6,3,6,6_1,1500.0,0,0.0,1500,5,5,0.0,0.0,0.0,1,0,147.19469224995453,0.0,147.19469224995453 +5455,5054,5053,3,5,45,112,37,43,0,2718,0,0,0,0,1,8,1,2,1.3,3190.11236409,0,0,26685.0,1,1,6,0,2,1,0,0,1,0,0,0,0,0,1,0,20526.9230769,6,3,6,6_1,1500.0,0,0.0,1500,5,5,0.0,0.0,0.0,1,0,147.19469224995453,0.0,147.19469224995453 5456,5056,5055,1,3,31,400,37,44,2,272,0,99999,0,0,1,6,2,4,2.1,3099.08457535,2553,16500,41135.0,1,2,0,0,4,1,0,1,1,0,0,0,0,1,0,1,19588.0952381,6,3,6,6_1,13001.0,0,13001.0,0,1,5,0.0,0.0,0.0,0,1,1275.7854626277726,1275.7854626277726,0.0 5457,5058,5057,11,13,50,111,62,41,0,2721,0,0,0,0,1,5,0,2,1.5,1412.83790174,1560,0,30150.0,1,3,5,4,3,2,0,0,0,0,1,0,0,0,0,2,20100.0,6,3,6,6_0,15311.0,0,15311.0,0,7,19,0.0,0.0,0.0,0,1,1505.0176672727034,1505.0176672727034,0.0 5458,5069,5068,1,8,22,111,52,60,0,2742,0,0,100,530,1,1,0,1,1.0,3637.31356283,2364,0,20594.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,1,0,20594.0,6,3,6,6_0,25000.0,0,0.0,25000,5,8,31.5,25.0,3.3,0,1,2457.4124277850947,0.0,2457.4124277850947 5459,5073,5072,0,0,82,111,75,70,0,2747,0,0,0,0,0,4,0,1,1.0,3532.72915532,0,0,20529.0,5,1,8,6,1,0,0,0,0,0,1,0,0,0,0,0,20529.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5460,5074,5073,5,5,52,111,48,31,0,2749,0,10,0,0,1,4,0,1,1.0,2966.96640719,2080,0,19996.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,0,1,19996.0,6,3,6,6_0,15000.0,0,15000.0,0,2,4,40.8,30.0,3.3,0,1,1474.4474566710567,1474.4474566710567,0.0 -5461,5077,5076,10,10,31,111,63,50,0,2752,0,350,200,0,2,4,1,3,1.8,1718.86969379,6061,0,37770.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,1,1,20983.3333333,6,3,6,6_0,18716.0,0,8716.0,10000,3,8,169.2,13.333333333299999,3.3,1,1,1839.7172399370331,856.7522688229955,982.9649711140379 +5461,5077,5076,10,10,31,111,63,50,0,2752,0,350,200,0,2,4,1,3,1.8,1718.86969379,6061,0,37770.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,1,1,20983.3333333,6,3,6,6_0,18716.0,0,8716.0,10000,3,8,169.2,13.3333333333,3.3,1,1,1839.7172399370331,856.7522688229955,982.9649711140379 5462,5088,5087,4,6,50,111,12,71,0,2772,0,0,0,0,1,5,2,4,2.1,1996.41740999,5096,0,45230.0,1,2,7,5,4,1,0,0,0,0,1,0,0,1,0,1,21538.0952381,6,3,6,6_0,40000.0,0,40000.0,0,2,6,5.5,3.33333333333,0.0,0,1,3931.8598844561516,3931.8598844561516,0.0 5463,5097,5096,7,7,68,111,78,70,0,2781,0,0,0,0,0,4,0,2,1.5,1923.11429791,4966,0,32430.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,1,1,21620.0,6,3,6,6_0,12000.0,0,4000.0,8000,4,5,0.0,0.0,0.0,0,0,1179.5579653368454,393.1859884456151,786.3719768912302 5464,5099,5098,27,29,56,111,43,20,0,2784,0,0,0,0,1,5,0,2,1.5,2048.61499051,3445,0,29146.0,1,1,8,6,3,2,0,0,0,0,1,0,0,0,1,1,19430.6666667,6,3,6,6_0,19843.0,0,17343.0,2500,8,8,0.0,20.0,3.3,0,1,1950.4973921815854,1704.756149403076,245.74124277850947 -5465,5123,5122,5,6,46,112,55,42,0,2818,0,503,0,0,2,6,2,4,2.5,947.8446988060001,0,0,52282.0,1,2,9,1,4,3,0,1,0,1,0,0,0,0,0,3,20912.8,6,3,6,6_0,4000.0,0,4000.0,0,12,15,435.5,50.3333333333,3.3,0,1,393.1859884456151,393.1859884456151,0.0 +5465,5123,5122,5,6,46,112,55,42,0,2818,0,503,0,0,2,6,2,4,2.5,947.844698806,0,0,52282.0,1,2,9,1,4,3,0,1,0,1,0,0,0,0,0,3,20912.8,6,3,6,6_0,4000.0,0,4000.0,0,12,15,435.5,50.3333333333,3.3,0,1,393.1859884456151,393.1859884456151,0.0 5466,5131,5130,3,3,60,211,74,60,0,2830,0,0,0,0,0,7,0,2,1.5,1170.74040163,3224,0,32399.0,5,2,3,4,3,1,0,0,0,0,1,0,0,0,0,1,21599.3333333,6,3,6,6_0,22000.0,0,22000.0,0,3,3,0.0,0.0,0.0,0,0,2162.522936450883,2162.522936450883,0.0 -5467,5135,5134,0,8,30,112,42,10,0,2837,0,120,35,0,2,4,1,3,1.8,2706.98736668,0,0,37897.0,1,4,9,0,4,3,0,0,1,0,0,0,0,0,2,1,21053.888888900005,6,3,6,6_1,54336.0,0,34336.0,20000,2,7,238.4,26.6666666667,3.31,0,1,5331.980532062353,3369.3846353962927,1962.5958966660605 -5468,5152,5151,1,3,37,111,45,41,2,2860,0,1500,0,0,2,4,2,4,2.1,3061.35719586,0,9000,43175.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,20559.5238095,6,3,6,6_0,34000.0,0,34000.0,0,1,1,0.0,6.666666666669999,0.0,1,0,3342.080901787729,3342.080901787729,0.0 +5467,5135,5134,0,8,30,112,42,10,0,2837,0,120,35,0,2,4,1,3,1.8,2706.98736668,0,0,37897.0,1,4,9,0,4,3,0,0,1,0,0,0,0,0,2,1,21053.8888889,6,3,6,6_1,54336.0,0,34336.0,20000,2,7,238.4,26.6666666667,3.31,0,1,5331.980532062353,3369.3846353962927,1962.5958966660605 +5468,5152,5151,1,3,37,111,45,41,2,2860,0,1500,0,0,2,4,2,4,2.1,3061.35719586,0,9000,43175.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,20559.5238095,6,3,6,6_0,34000.0,0,34000.0,0,1,1,0.0,6.66666666667,0.0,1,0,3342.080901787729,3342.080901787729,0.0 5469,5171,5170,3,3,41,112,38,20,0,2892,0,0,0,0,2,9,3,5,2.4,2090.93707084,2600,0,46247.0,1,2,8,0,4,1,0,0,1,0,0,0,0,0,0,1,19269.5833333,6,3,6,6_1,20000.0,0,20000.0,0,1,3,171.3,42.0,3.32,0,1,1962.5958966660605,1962.5958966660605,0.0 -5470,5175,5174,7,10,26,111,69,50,0,2896,0,110,99999,273,2,3,1,3,1.8,2553.59589879,0,0,34628.0,1,3,4,4,4,2,0,1,0,0,1,0,0,0,1,1,19237.777777799998,6,3,6,6_0,43568.0,0,20000.0,23568,2,8,184.2,13.333333333299999,3.3,0,1,4282.58178614964,1965.9299422280758,2316.6518439215647 +5470,5175,5174,7,10,26,111,69,50,0,2896,0,110,99999,273,2,3,1,3,1.8,2553.59589879,0,0,34628.0,1,3,4,4,4,2,0,1,0,0,1,0,0,0,1,1,19237.7777778,6,3,6,6_0,43568.0,0,20000.0,23568,2,8,184.2,13.3333333333,3.3,0,1,4282.58178614964,1965.9299422280758,2316.6518439215647 5471,5178,5177,7,7,50,111,42,50,0,2900,0,0,0,750,2,3,1,2,1.5,2352.79749704,2497,0,32238.0,1,3,9,7,2,1,0,0,0,0,0,1,0,0,1,0,21492.0,6,3,6,6_0,714.0,0,0.0,714,8,12,0.0,0.0,0.0,1,0,70.1836989375423,0.0,70.1836989375423 -5472,5185,5184,1,2,49,112,38,10,0,291,100,45,0,0,4,6,3,5,3.0,2220.4434174000003,1301,0,63800.0,1,1,7,1,4,2,0,1,0,1,0,0,0,0,0,1,21266.6666667,6,3,6,6_0,15000.0,0,0.0,15000,4,13,0.0,83.3333333333,0.0,0,1,1474.4474566710567,0.0,1474.4474566710567 +5472,5185,5184,1,2,49,112,38,10,0,291,100,45,0,0,4,6,3,5,3.0,2220.4434174,1301,0,63800.0,1,1,7,1,4,2,0,1,0,1,0,0,0,0,0,1,21266.6666667,6,3,6,6_0,15000.0,0,0.0,15000,4,13,0.0,83.3333333333,0.0,0,1,1474.4474566710567,0.0,1474.4474566710567 5473,5191,5190,4,10,25,111,63,50,0,2916,0,75,0,0,3,5,0,3,2.0,1970.27027848,0,0,42597.0,1,1,9,7,5,1,0,1,0,0,0,1,0,0,0,1,21298.5,6,3,6,6_0,1500.0,0,1500.0,0,5,5,58.0,30.0,3.32,0,1,147.44474566710568,147.44474566710568,0.0 -5474,5194,5193,0,11,35,112,64,50,2,2920,0,200,70,0,2,4,1,3,1.8,1592.75554725,1840,3000,36875.0,1,2,9,1,4,3,0,0,0,1,0,0,0,0,1,2,20486.111111099995,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 +5474,5194,5193,0,11,35,112,64,50,2,2920,0,200,70,0,2,4,1,3,1.8,1592.75554725,1840,3000,36875.0,1,2,9,1,4,3,0,0,0,1,0,0,0,0,1,2,20486.1111111,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 5475,5199,5198,3,6,55,111,62,50,0,2925,0,60,0,300,1,4,0,2,1.5,1768.71787444,1820,0,28963.0,1,3,7,5,3,1,0,1,0,0,1,0,0,0,0,1,19308.6666667,6,3,6,6_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,0,1474.4474566710567,1474.4474566710567,0.0 -5476,5200,5199,5,13,41,111,63,50,0,2926,0,200,0,268,1,3,0,1,1.0,2354.4755139000004,0,0,20564.0,1,3,5,4,1,1,0,1,0,0,1,0,0,0,0,1,20564.0,6,3,6,6_0,2000.0,0,2000.0,0,13,13,0.0,0.0,0.0,1,0,196.59299422280756,196.59299422280756,0.0 +5476,5200,5199,5,13,41,111,63,50,0,2926,0,200,0,268,1,3,0,1,1.0,2354.4755139,0,0,20564.0,1,3,5,4,1,1,0,1,0,0,1,0,0,0,0,1,20564.0,6,3,6,6_0,2000.0,0,2000.0,0,13,13,0.0,0.0,0.0,1,0,196.59299422280756,196.59299422280756,0.0 5477,5206,5205,0,0,75,111,78,60,0,2939,0,0,0,266,0,2,0,1,1.0,3081.52570196,0,0,21510.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21510.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5478,5211,5210,3,3,53,300,11,60,0,2948,0,0,0,0,1,3,0,2,1.5,3217.79103731,0,0,30400.0,1,1,0,0,5,1,1,0,1,0,0,0,0,0,0,1,20266.6666667,6,3,6,6_1,12000.0,0,12000.0,0,2,2,0.0,0.0,0.0,0,0,1177.5575379996362,1177.5575379996362,0.0 5479,5213,5212,3,6,40,211,47,31,0,295,0,0,500,0,2,7,3,5,2.4,2023.95433298,0,0,50103.0,1,2,1,2,4,1,0,1,0,1,0,0,0,0,1,0,20876.25,6,3,6,6_0,7409.0,0,0.0,7409,1,5,56.3,23.3333333333,0.0,0,1,728.2787470983907,0.0,728.2787470983907 @@ -5486,14 +5486,14 @@ 5484,5276,5275,4,4,81,112,75,50,0,3031,0,0,0,0,0,5,0,1,1.0,3016.60862183,0,0,21140.0,5,1,9,2,1,1,0,0,0,1,0,0,0,0,1,0,21140.0,6,3,6,6_0,4500.0,0,0.0,4500,3,4,0.0,0.0,0.0,0,0,442.3342370013171,0.0,442.3342370013171 5485,5277,5276,0,5,40,120,47,50,2,3035,550,0,99999,0,2,5,2,4,2.3,3099.3834231,4600,7100,44823.0,1,1,0,2,4,2,0,1,0,1,0,0,0,0,1,0,19488.2608696,6,3,6,6_0,19000.0,0,0.0,19000,8,8,55.0,31.25,3.3,0,1,1867.633445116672,0.0,1867.633445116672 5486,5283,5282,0,14,51,112,63,50,0,3045,0,0,235,0,4,4,0,4,2.5,982.017180997,3120,0,49540.0,4,1,8,1,5,3,0,1,0,1,0,0,0,0,3,0,19816.0,6,3,6,6_0,7000.0,0,0.0,7000,4,12,69.5,27.5,3.3,0,0,688.0754797798265,0.0,688.0754797798265 -5487,5285,5284,1,11,44,300,64,50,2,3048,0,40,0,0,3,5,2,4,2.3,1688.0800572,1560,1800,47540.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,20669.565217400002,6,3,6,6_1,10000.0,0,10000.0,0,8,8,198.0,37.5,0.0,0,1,981.2979483330303,981.2979483330303,0.0 +5487,5285,5284,1,11,44,300,64,50,2,3048,0,40,0,0,3,5,2,4,2.3,1688.0800572,1560,1800,47540.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,20669.5652174,6,3,6,6_1,10000.0,0,10000.0,0,8,8,198.0,37.5,0.0,0,1,981.2979483330303,981.2979483330303,0.0 5488,5295,5294,0,26,50,400,52,41,0,3063,0,750,0,0,2,5,2,4,2.1,1858.91801127,3058,0,41621.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,19819.5238095,6,3,6,6_1,32000.0,0,32000.0,0,3,11,145.0,30.0,3.3,0,1,3140.1534346656968,3140.1534346656968,0.0 5489,5307,5306,0,24,43,120,47,50,2,3077,0,380,260,0,2,6,2,4,2.3,2599.80407416,4123,6000,47330.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,20578.2608696,6,3,6,6_1,28955.0,0,21455.0,7500,6,12,141.6,30.0,0.0,0,1,2841.348209398289,2105.374748148516,735.9734612497726 5490,5324,5323,2,4,26,111,43,33,0,3100,0,100,0,434,1,2,0,1,1.0,2843.81668213,2080,0,20486.0,1,3,5,4,1,1,0,1,0,0,1,0,0,0,0,1,20486.0,6,3,6,6_0,35000.0,0,35000.0,0,2,4,0.0,0.0,0.0,1,1,3440.377398899133,3440.377398899133,0.0 5491,5336,5335,3,7,44,111,37,31,0,3113,0,0,0,278,1,4,0,1,1.0,2412.56956608,4967,0,20050.0,4,3,6,4,1,1,0,0,0,0,1,0,0,0,0,1,20050.0,6,3,6,6_0,17000.0,0,17000.0,0,3,3,0.0,40.0,3.31,0,0,1671.0404508938645,1671.0404508938645,0.0 5492,5347,5346,9,13,43,111,67,71,0,3128,0,99999,0,0,2,4,2,4,2.5,3132.41716548,1560,0,53289.0,1,2,5,4,4,3,0,0,0,0,1,0,0,0,0,3,21315.6,6,3,6,6_0,4000.0,0,4000.0,0,12,15,435.5,50.3333333333,3.3,0,1,393.1859884456151,393.1859884456151,0.0 5493,5350,5349,7,13,64,111,78,71,0,3130,0,0,0,0,1,4,1,3,2.0,2658.03828747,0,0,38720.0,5,1,7,5,4,2,0,0,0,0,1,0,0,0,1,1,19360.0,6,3,6,6_0,19625.0,0,18625.0,1000,9,12,0.0,0.0,0.0,0,0,1929.0687558112995,1830.7722586998955,98.29649711140378 -5494,5368,5367,2,7,53,112,47,31,0,3154,0,350,300,0,2,5,1,3,2.0,1041.20451326,2288,0,38602.0,1,2,8,0,4,3,0,1,1,0,0,0,0,0,1,2,19301.0,6,3,6,6_1,22000.0,0,22000.0,0,8,8,4044.6,14.666666666700001,0.0,0,1,2158.8554863326667,2158.8554863326667,0.0 +5494,5368,5367,2,7,53,112,47,31,0,3154,0,350,300,0,2,5,1,3,2.0,1041.20451326,2288,0,38602.0,1,2,8,0,4,3,0,1,1,0,0,0,0,0,1,2,19301.0,6,3,6,6_1,22000.0,0,22000.0,0,8,8,4044.6,14.6666666667,0.0,0,1,2158.8554863326667,2158.8554863326667,0.0 5495,5374,5373,3,6,24,111,64,50,0,3167,0,230,0,690,2,3,0,2,1.5,2969.37938813,0,0,31760.0,1,3,8,6,3,2,0,1,0,0,1,0,0,0,0,2,21173.3333333,6,3,6,6_0,35000.0,0,35000.0,0,3,7,0.0,0.0,0.0,0,1,3440.377398899133,3440.377398899133,0.0 5496,5377,5376,6,6,60,111,78,70,0,3173,0,0,0,0,0,4,0,2,1.5,4056.57688564,0,0,30239.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,2,0,20159.3333333,6,3,6,6_0,4952.0,0,0.0,4952,1,5,0.0,0.0,0.0,0,0,486.7642536956716,0.0,486.7642536956716 5497,5404,5403,1,1,60,112,78,71,0,3214,0,350,0,0,1,4,0,2,1.5,2844.00700064,2639,0,28810.0,5,1,8,0,3,1,0,1,1,0,0,0,0,0,0,1,19206.6666667,6,3,6,6_1,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,981.2979483330303,981.2979483330303,0.0 @@ -5512,7 +5512,7 @@ 5510,5518,5517,2,4,47,111,63,50,0,3366,0,500,0,0,4,4,2,4,2.5,1452.26039425,0,0,54070.0,1,1,6,4,4,3,0,1,0,0,1,0,0,0,0,3,21628.0,6,3,6,6_0,44375.0,0,44375.0,0,1,1,73.5,43.75,3.3,0,1,4361.907059318543,4361.907059318543,0.0 5511,5533,5532,0,0,84,111,77,70,0,3384,0,0,0,0,0,4,0,1,1.0,2187.4772325,0,0,21523.0,5,1,6,4,1,0,0,0,0,0,1,0,0,0,0,0,21523.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5512,5534,5533,8,8,46,111,43,33,0,3386,0,100,0,0,1,4,1,2,1.5,4271.33094644,1300,0,29698.0,1,2,6,5,2,1,0,1,0,0,1,0,0,0,0,1,19798.6666667,6,3,6,6_0,35000.0,0,35000.0,0,2,7,227.5,80.0,3.3,0,1,3440.377398899133,3440.377398899133,0.0 -5513,5549,5548,6,10,46,112,42,30,0,3407,0,199998,0,0,2,7,2,4,2.3,2129.94399139,3120,0,45643.0,1,2,8,0,4,4,0,1,1,0,0,0,0,0,1,3,19844.782608700003,6,3,6,6_1,22000.0,0,22000.0,0,9,10,353.5,6.25,0.0,0,1,2158.8554863326667,2158.8554863326667,0.0 +5513,5549,5548,6,10,46,112,42,30,0,3407,0,199998,0,0,2,7,2,4,2.3,2129.94399139,3120,0,45643.0,1,2,8,0,4,4,0,1,1,0,0,0,0,0,1,3,19844.7826087,6,3,6,6_1,22000.0,0,22000.0,0,9,10,353.5,6.25,0.0,0,1,2158.8554863326667,2158.8554863326667,0.0 5514,5558,5557,5,6,52,120,54,50,0,342,0,80,0,0,1,5,0,2,1.5,2860.90644307,0,0,29090.0,1,1,0,2,3,2,0,1,0,1,0,0,0,0,0,2,19393.3333333,6,3,6,6_0,20000.0,0,20000.0,0,6,7,0.0,0.0,0.0,0,0,1965.9299422280758,1965.9299422280758,0.0 5515,5560,5559,5,5,64,112,74,50,0,3423,0,0,0,0,0,5,0,2,1.5,1484.82657527,2176,0,32490.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,1,1,21660.0,6,3,6,6_0,13000.0,0,10000.0,3000,7,7,0.0,0.0,0.0,0,0,1277.8544624482493,982.9649711140379,294.88949133421136 5516,5592,5591,3,10,36,111,54,10,0,3470,0,0,0,560,1,1,0,1,1.0,2582.26437785,1880,0,19226.0,4,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,19226.0,6,3,6,6_0,25000.0,0,25000.0,0,6,8,23.0,80.0,3.3,1,1,2457.4124277850947,2457.4124277850947,0.0 @@ -5535,29 +5535,29 @@ 5533,5729,5728,5,5,30,112,53,20,0,3649,0,0,300,0,2,6,1,3,1.8,1891.04386998,4776,0,37044.0,1,2,9,0,4,1,0,1,1,0,0,0,0,0,1,0,20580.0,6,3,6,6_1,18857.0,0,0.0,18857,3,9,158.5,56.6666666667,3.3,0,1,1850.4335411715952,0.0,1850.4335411715952 5534,5737,5736,8,10,77,111,75,50,0,3657,0,0,0,0,0,5,0,2,1.5,1733.36414785,2310,0,29413.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,0,2,19608.6666667,6,3,6,6_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 5535,5760,5759,4,30,52,400,67,60,0,3688,0,100059,0,0,3,4,1,3,2.0,2983.23731515,1820,0,38784.0,1,1,0,0,4,4,1,0,1,0,0,0,0,0,1,3,19392.0,6,3,6,6_1,30000.0,0,30000.0,0,7,7,173.5,36.6666666667,3.3,1,1,2943.8938449990906,2943.8938449990906,0.0 -5536,5772,5771,1,6,48,112,64,50,2,3701,0,1300,0,0,2,8,2,4,2.5,1920.4071282000002,1560,4200,50744.0,1,2,8,0,4,2,0,1,1,0,0,0,0,1,0,2,20297.6,6,3,6,6_1,15000.0,0,15000.0,0,4,6,34.0,25.3333333333,3.3,1,1,1471.9469224995453,1471.9469224995453,0.0 +5536,5772,5771,1,6,48,112,64,50,2,3701,0,1300,0,0,2,8,2,4,2.5,1920.4071282,1560,4200,50744.0,1,2,8,0,4,2,0,1,1,0,0,0,0,1,0,2,20297.6,6,3,6,6_1,15000.0,0,15000.0,0,4,6,34.0,25.3333333333,3.3,1,1,1471.9469224995453,1471.9469224995453,0.0 5537,5773,5772,0,0,57,111,52,71,0,3702,0,0,0,0,1,4,0,2,1.5,1924.53043217,0,0,32180.0,1,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,21453.3333333,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5538,5780,5779,0,0,39,111,52,50,0,3712,0,0,0,0,1,1,0,1,1.0,3253.29979351,0,0,20910.0,1,2,6,5,1,0,0,0,0,0,1,0,0,0,0,0,20910.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,30.0,1.1,0,0,0.0,0.0,0.0 5539,5783,5782,12,12,59,111,75,41,0,3718,0,0,0,0,0,6,0,4,2.3,1694.0357223,0,0,48406.0,5,1,9,7,5,1,0,0,0,0,0,1,0,0,1,0,21046.0869565,6,3,6,6_0,8000.0,0,0.0,8000,8,8,0.0,0.0,0.0,0,0,786.3719768912302,0.0,786.3719768912302 5540,5789,5788,2,2,82,300,77,70,0,3725,0,0,0,0,0,3,0,2,1.5,3058.92026913,0,0,30941.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,20627.3333333,6,3,6,6_1,1000.0,0,0.0,1000,2,2,0.0,0.0,0.0,0,0,98.12979483330302,0.0,98.12979483330302 -5541,5798,5797,11,13,55,221,62,50,0,3736,0,350,0,0,1,7,0,1,1.0,3771.8967539000005,0,0,19285.0,1,1,1,1,1,1,0,1,0,1,0,0,0,0,0,1,19285.0,6,3,6,6_0,10891.0,0,10891.0,0,2,13,82.0,30.0,3.31,0,1,1070.5471500402987,1070.5471500402987,0.0 +5541,5798,5797,11,13,55,221,62,50,0,3736,0,350,0,0,1,7,0,1,1.0,3771.8967539,0,0,19285.0,1,1,1,1,1,1,0,1,0,1,0,0,0,0,0,1,19285.0,6,3,6,6_0,10891.0,0,10891.0,0,2,13,82.0,30.0,3.31,0,1,1070.5471500402987,1070.5471500402987,0.0 5542,5827,5826,4,13,65,112,77,41,0,3773,0,0,0,0,0,3,0,1,1.0,2609.10091206,0,0,20094.0,5,2,7,2,1,1,0,0,0,1,0,0,0,0,0,1,20094.0,6,3,6,6_0,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 5543,5831,5830,1,16,45,111,56,71,0,3779,0,0,0,0,1,2,0,1,1.0,3053.61911867,2080,0,20179.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,20179.0,6,3,6,6_0,12000.0,0,0.0,12000,2,17,0.0,40.0,2.2,0,0,1179.5579653368454,0.0,1179.5579653368454 5544,5840,5839,4,10,40,111,68,43,0,3791,0,99999,0,0,2,4,0,2,1.5,1662.18574267,0,0,30360.0,1,3,6,4,3,1,0,1,0,0,1,0,0,0,0,1,20240.0,6,3,6,6_0,8000.0,0,8000.0,0,4,7,0.0,35.0,3.3,0,1,786.3719768912302,786.3719768912302,0.0 -5545,5849,5848,5,11,28,112,52,10,0,3802,0,170,0,0,1,4,1,3,1.8,2153.91402603,0,0,35762.0,1,4,7,0,4,2,0,0,1,0,0,0,0,0,0,2,19867.777777799998,6,3,6,6_1,38547.0,0,38547.0,0,2,9,0.0,0.0,0.0,0,1,3782.609201439331,3782.609201439331,0.0 +5545,5849,5848,5,11,28,112,52,10,0,3802,0,170,0,0,1,4,1,3,1.8,2153.91402603,0,0,35762.0,1,4,7,0,4,2,0,0,1,0,0,0,0,0,0,2,19867.7777778,6,3,6,6_1,38547.0,0,38547.0,0,2,9,0.0,0.0,0.0,0,1,3782.609201439331,3782.609201439331,0.0 5546,5879,5878,11,17,74,112,75,70,0,3842,0,0,0,424,0,4,0,2,1.5,1925.40451061,0,0,29050.0,5,3,9,3,3,1,0,0,0,1,0,0,0,0,1,0,19366.6666667,6,3,6,6_0,5000.0,0,0.0,5000,18,18,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 -5547,5883,5882,1,1,41,221,62,50,1,3847,0,200,150,0,2,5,1,3,2.0,1823.95105571,4552,6000,40669.0,1,2,1,2,4,3,0,1,0,1,0,0,0,0,2,1,20334.5,6,3,6,6_0,11100.0,0,5100.0,6000,1,1,50.4,14.666666666700001,3.31,0,1,1091.0911179365821,501.31213526815935,589.7789826684227 +5547,5883,5882,1,1,41,221,62,50,1,3847,0,200,150,0,2,5,1,3,2.0,1823.95105571,4552,6000,40669.0,1,2,1,2,4,3,0,1,0,1,0,0,0,0,2,1,20334.5,6,3,6,6_0,11100.0,0,5100.0,6000,1,1,50.4,14.6666666667,3.31,0,1,1091.0911179365821,501.31213526815935,589.7789826684227 5548,5893,5892,1,1,50,111,52,71,1,3863,0,6,0,0,2,4,0,2,1.5,1361.11638058,0,23000,31846.0,1,1,6,5,3,2,0,0,0,0,1,0,0,0,0,2,21230.6666667,6,3,6,6_0,32000.0,0,32000.0,0,3,5,89.0,20.0,3.3,0,1,3145.487907564921,3145.487907564921,0.0 5549,5929,5928,8,8,47,111,21,50,0,391,0,99999,0,0,1,4,0,2,1.5,3269.22309777,0,0,29860.0,1,2,9,7,3,1,0,1,0,0,0,1,0,0,0,1,19906.6666667,6,3,6,6_0,25000.0,0,25000.0,0,6,6,0.0,16.0,3.31,0,1,2457.4124277850947,2457.4124277850947,0.0 5550,5963,5962,15,15,43,112,45,10,0,3953,0,0,120,0,2,6,1,3,1.8,2772.94751,1897,0,38816.0,1,2,10,2,4,2,0,1,0,1,0,0,0,0,1,1,21564.4444444,6,3,6,6_0,12300.0,0,7000.0,5300,5,10,0.0,11.0,3.3,0,1,1209.0469144702668,688.0754797798265,520.9714346904401 -5551,5979,5978,0,0,40,112,46,31,0,3975,0,0,0,0,2,5,2,4,2.3,3022.25813063,3640,0,44953.0,1,2,7,1,4,0,0,0,0,1,0,0,0,0,0,0,19544.782608700003,6,3,6,6_0,0.0,0,0.0,0,0,0,653.5,106.666666667,5.57,0,0,0.0,0.0,0.0 +5551,5979,5978,0,0,40,112,46,31,0,3975,0,0,0,0,2,5,2,4,2.3,3022.25813063,3640,0,44953.0,1,2,7,1,4,0,0,0,0,1,0,0,0,0,0,0,19544.7826087,6,3,6,6_0,0.0,0,0.0,0,0,0,653.5,106.666666667,5.57,0,0,0.0,0.0,0.0 5552,5981,5980,2,2,47,111,54,42,0,3977,0,60,0,0,3,4,2,4,2.5,2786.99569354,5227,0,50949.0,1,1,9,7,4,2,1,1,0,0,0,1,0,0,0,2,20379.6,6,3,6,6_0,30000.0,0,30000.0,0,3,7,494.0,62.75,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 5553,5989,5988,5,5,72,111,77,41,0,3991,0,0,0,0,0,5,0,1,1.0,3082.68483149,3640,0,20065.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,20065.0,6,3,6,6_0,10000.0,0,0.0,10000,4,4,0.0,0.0,0.0,0,0,982.9649711140379,0.0,982.9649711140379 5554,6007,6006,1,3,38,300,48,31,2,4017,0,800,0,0,2,5,4,6,3.1,1521.15253165,0,20000,59291.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,19126.1290323,6,3,6,6_1,20000.0,0,20000.0,0,3,7,0.0,6.2,0.0,0,1,1962.5958966660605,1962.5958966660605,0.0 5555,6010,6009,6,6,65,111,74,20,0,4020,0,0,0,0,0,3,0,1,1.0,2343.77935957,1874,0,21322.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,1,0,21322.0,6,3,6,6_0,4500.0,0,0.0,4500,8,8,0.0,0.0,0.0,0,0,442.3342370013171,0.0,442.3342370013171 5556,6013,6012,4,12,51,112,21,50,0,4027,0,1700,0,0,3,7,2,4,2.5,1264.87275485,5809,0,53288.0,1,1,9,0,4,2,1,1,1,0,0,0,0,0,0,2,21315.2,6,3,6,6_1,10000.0,0,10000.0,0,8,8,198.0,37.5,0.0,0,1,981.2979483330303,981.2979483330303,0.0 5557,6015,6014,0,0,54,300,64,50,0,4029,0,0,0,0,1,4,0,1,1.0,2374.50119208,0,0,20909.0,1,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,20909.0,6,3,6,6_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5558,6018,6017,0,0,53,111,62,50,0,4034,0,0,0,349,1,3,0,1,1.0,1785.3006159000001,0,0,21502.0,1,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,21502.0,6,3,6,6_0,0.0,0,0.0,0,0,0,28.0,20.0,3.32,0,0,0.0,0.0,0.0 +5558,6018,6017,0,0,53,111,62,50,0,4034,0,0,0,349,1,3,0,1,1.0,1785.3006159,0,0,21502.0,1,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,21502.0,6,3,6,6_0,0.0,0,0.0,0,0,0,28.0,20.0,3.32,0,0,0.0,0.0,0.0 5559,6027,6026,0,1,40,112,21,12,2,4044,0,300,230,0,2,4,3,5,2.4,3227.06948146,3900,13000,46356.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,1,1,19315.0,6,3,6,6_1,33000.0,0,20000.0,13000,2,8,235.9,41.0,3.3,1,1,3238.283229499,1962.5958966660605,1275.6873328329393 5560,6043,6042,3,6,47,112,52,50,0,4069,0,90,0,0,1,5,1,3,2.0,2219.63791827,2617,0,43042.0,1,2,8,0,4,2,0,0,1,0,0,0,0,0,0,2,21521.0,6,3,6,6_1,20000.0,0,20000.0,0,2,8,186.5,33.3333333333,3.3,0,1,1962.5958966660605,1962.5958966660605,0.0 5561,6059,6058,24,29,60,112,78,50,0,409,0,0,0,286,2,4,1,3,2.0,1629.14167359,2080,0,38284.0,5,3,8,1,4,1,0,0,0,1,0,0,0,1,1,0,19142.0,6,3,6,6_0,18000.0,0,0.0,18000,9,10,86.4,19.3333333333,3.3,0,1,1769.3369480052684,0.0,1769.3369480052684 @@ -5569,7 +5569,7 @@ 5567,6098,6097,2,7,52,300,65,71,0,4139,0,730,0,0,3,6,1,3,2.0,2263.41484984,0,0,39247.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,0,3,19623.5,6,3,6,6_1,30000.0,0,30000.0,0,7,7,173.5,36.6666666667,3.3,1,1,2943.8938449990906,2943.8938449990906,0.0 5568,6114,6113,8,8,78,111,78,71,0,4162,0,0,0,0,0,5,0,2,1.5,2951.63310229,2185,0,31240.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,20826.6666667,6,3,6,6_0,9544.0,0,0.0,9544,7,7,0.0,0.0,0.0,0,0,938.1417684312378,0.0,938.1417684312378 5569,6125,6124,0,0,61,111,78,71,0,4176,0,0,0,520,0,3,0,2,1.5,3997.28478837,0,0,32450.0,5,3,9,7,3,0,0,0,0,0,0,1,0,0,0,0,21633.3333333,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5570,6158,6157,1,1,46,300,63,50,1,4230,0,30,0,0,2,4,2,4,2.3,1886.6475192999999,0,18200,48064.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,0,1,20897.3913043,6,3,6,6_1,24001.0,0,24001.0,0,1,2,0.0,0.0,0.0,0,1,2355.213205794106,2355.213205794106,0.0 +5570,6158,6157,1,1,46,300,63,50,1,4230,0,30,0,0,2,4,2,4,2.3,1886.6475193,0,18200,48064.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,0,1,20897.3913043,6,3,6,6_1,24001.0,0,24001.0,0,1,2,0.0,0.0,0.0,0,1,2355.213205794106,2355.213205794106,0.0 5571,6166,6165,7,7,64,111,77,50,0,424,0,0,0,555,0,2,0,1,1.0,2474.78796099,0,0,19384.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,19384.0,6,3,6,6_0,20000.0,0,20000.0,0,5,6,0.0,0.0,0.0,0,0,1965.9299422280758,1965.9299422280758,0.0 5572,6167,6166,1,7,57,112,62,50,2,4240,0,500,0,0,2,6,0,2,1.5,1173.20236401,0,9300,30126.0,1,2,8,2,3,1,0,1,0,1,0,0,0,0,0,1,20084.0,6,3,6,6_0,12000.0,0,12000.0,0,5,5,0.0,2.0,2.24,0,1,1179.5579653368454,1179.5579653368454,0.0 5573,6178,6177,15,15,65,112,75,33,0,4255,0,0,0,633,0,3,0,1,1.0,1302.7789849,0,0,20868.0,5,3,9,1,1,1,0,0,0,1,0,0,0,0,0,1,20868.0,6,3,6,6_0,2000.0,0,2000.0,0,3,16,0.0,0.0,0.0,0,0,196.59299422280756,196.59299422280756,0.0 @@ -5579,19 +5579,19 @@ 5577,6200,6199,5,5,64,112,78,70,0,4281,0,0,0,0,1,6,1,3,2.0,2022.96642852,2236,0,42899.0,5,1,9,0,4,2,0,0,1,0,0,0,0,0,1,1,21449.5,6,3,6,6_1,22000.0,0,22000.0,0,1,1,0.0,0.0,0.0,0,0,2158.8554863326667,2158.8554863326667,0.0 5578,6216,6215,2,2,41,300,21,50,0,4302,0,274,0,0,2,7,3,5,2.6,1702.09680436,1924,0,52069.0,1,2,0,0,4,1,1,1,1,0,0,0,0,0,0,1,20026.5384615,6,3,6,6_1,20000.0,0,20000.0,0,1,3,171.3,42.0,3.32,0,1,1962.5958966660605,1962.5958966660605,0.0 5579,6229,6228,5,5,39,111,46,43,0,4319,0,20,0,370,2,1,0,2,1.5,3326.03352928,1187,0,31104.0,1,3,9,7,3,2,1,1,0,0,0,1,0,0,1,1,20736.0,6,3,6,6_0,27622.0,0,17343.0,10279,5,0,0.0,15.0,3.31,1,1,2715.145843211196,1704.756149403076,1010.3896938081195 -5580,6231,6230,9,9,62,111,78,50,0,4321,0,0,0,283,0,3,0,1,1.0,2882.7760826999997,0,0,20387.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,20387.0,6,3,6,6_0,0.0,0,0.0,0,8,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +5580,6231,6230,9,9,62,111,78,50,0,4321,0,0,0,283,0,3,0,1,1.0,2882.7760827,0,0,20387.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,20387.0,6,3,6,6_0,0.0,0,0.0,0,8,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5581,6237,6236,4,4,58,111,52,50,0,4327,0,0,320,0,2,4,0,2,1.5,1942.05725196,4524,0,29590.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,2,0,19726.6666667,6,3,6,6_0,10000.0,0,0.0,10000,2,5,0.0,10.0,3.3,0,1,982.9649711140379,0.0,982.9649711140379 5582,6241,6240,0,0,42,112,65,71,0,4330,0,0,0,355,1,2,0,1,1.0,3039.19439098,0,0,20790.0,1,3,10,5,1,0,0,0,0,0,1,0,0,1,0,0,20790.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,10.0,1.1,0,0,0.0,0.0,0.0 5583,6244,6243,0,0,71,111,77,50,0,4333,0,0,0,308,0,3,0,2,1.5,2300.0972394,0,0,31581.0,5,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,21054.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5584,6270,6269,6,6,58,400,43,20,0,4373,0,0,30,0,1,3,1,2,1.5,1194.38436864,3016,0,28854.0,1,1,0,1,2,1,0,1,0,1,0,0,0,0,1,0,19236.0,6,3,6,6_0,11784.0,0,0.0,11784,2,3,0.0,20.0,1.1,0,0,1158.3259219607824,0.0,1158.3259219607824 5585,6276,6275,2,4,36,111,46,31,0,4380,0,350,0,0,1,2,0,1,1.0,4045.64415418,2652,0,21098.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,0,1,21098.0,6,3,6,6_0,7500.0,0,7500.0,0,1,1,108.0,50.0,3.3,0,1,737.2237283355283,737.2237283355283,0.0 -5586,6336,6335,1,2,57,111,56,71,2,4466,0,0,0,0,1,4,0,2,1.5,3046.9452358000003,0,17400,29483.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,19655.3333333,6,3,6,6_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,1,1179.5579653368454,1179.5579653368454,0.0 +5586,6336,6335,1,2,57,111,56,71,2,4466,0,0,0,0,1,4,0,2,1.5,3046.9452358,0,17400,29483.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,19655.3333333,6,3,6,6_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,1,1179.5579653368454,1179.5579653368454,0.0 5587,6374,6373,5,6,35,400,46,30,0,4534,0,99999,0,0,1,5,1,3,2.0,1875.88986774,1560,0,38783.0,1,4,0,0,4,2,0,0,1,0,0,0,0,0,1,1,19391.5,6,3,6,6_1,6000.0,0,6000.0,0,2,8,0.0,0.0,0.0,0,0,588.7787689998181,588.7787689998181,0.0 5588,6381,6380,14,14,51,111,54,42,0,4550,0,0,130,0,1,6,0,1,1.0,1352.75569648,0,0,19705.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,19705.0,6,3,6,6_0,8000.0,0,0.0,8000,8,15,0.0,20.0,3.3,0,1,786.3719768912302,0.0,786.3719768912302 5589,6382,6381,10,10,66,111,71,71,0,4551,0,50,0,0,1,2,0,2,1.5,3017.08723221,0,0,31506.0,5,1,10,8,3,1,0,1,0,0,0,0,1,0,0,1,21004.0,6,3,6,6_0,15226.0,0,15226.0,0,1,4,0.0,0.0,0.0,0,0,1496.6624650182341,1496.6624650182341,0.0 5590,6389,6388,3,8,47,111,48,31,0,456,0,0,0,0,2,4,1,3,1.8,2447.38422317,5990,0,34749.0,1,2,7,5,4,2,1,0,0,0,1,0,0,0,1,1,19305.0,6,3,6,6_0,15543.0,0,12000.0,3543,3,6,48.0,25.0,3.31,0,1,1527.822454602549,1179.5579653368454,348.2644892657036 5591,6403,6402,16,17,59,112,74,60,0,458,0,0,0,0,0,5,0,2,1.5,2270.04225179,1820,0,29608.0,5,1,7,4,3,2,0,0,0,0,1,0,0,0,0,2,19738.6666667,6,3,6,6_0,6000.0,0,6000.0,0,8,15,0.0,0.0,0.0,0,0,589.7789826684227,589.7789826684227,0.0 -5592,6410,6409,1,12,41,112,65,60,2,4589,0,0,0,0,2,4,2,4,2.1,2450.24847877,3120,2400,40204.0,1,2,6,0,4,2,1,0,1,0,0,0,0,0,0,2,19144.761904799998,6,3,6,6_1,15000.0,0,15000.0,0,5,11,195.0,46.6666666667,3.3,0,1,1471.9469224995453,1471.9469224995453,0.0 +5592,6410,6409,1,12,41,112,65,60,2,4589,0,0,0,0,2,4,2,4,2.1,2450.24847877,3120,2400,40204.0,1,2,6,0,4,2,1,0,1,0,0,0,0,0,0,2,19144.7619048,6,3,6,6_1,15000.0,0,15000.0,0,5,11,195.0,46.6666666667,3.3,0,1,1471.9469224995453,1471.9469224995453,0.0 5593,6411,6410,1,4,34,112,45,31,2,459,0,115,180,0,2,4,2,4,2.1,3147.886989,3354,9500,44647.0,1,2,9,0,4,2,1,1,1,0,0,0,0,0,1,1,21260.4761905,6,3,6,6_1,46784.0,0,20000.0,26784,2,4,80.1,13.0,3.3,0,1,4590.904321481249,1962.5958966660605,2628.308424815188 5594,6420,6419,5,13,73,112,77,41,0,4599,0,0,0,0,0,4,0,1,1.0,5101.98371794,0,0,20934.0,5,1,9,1,1,1,0,0,0,1,0,0,0,0,1,0,20934.0,6,3,6,6_0,4000.0,0,0.0,4000,10,13,0.0,0.0,0.0,0,0,393.1859884456151,0.0,393.1859884456151 5595,6423,6422,9,9,72,111,77,60,0,4603,0,0,0,0,0,6,0,2,1.5,1934.26243802,0,0,29550.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,19700.0,6,3,6,6_0,10000.0,0,0.0,10000,8,8,0.0,0.0,0.0,0,0,982.9649711140379,0.0,982.9649711140379 @@ -5599,25 +5599,25 @@ 5597,6434,6433,9,12,67,221,75,70,0,462,0,0,0,0,0,5,0,2,1.5,2087.31364048,0,0,31438.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,1,1,20958.6666667,6,3,6,6_0,13000.0,0,10000.0,3000,7,7,0.0,0.0,0.0,0,0,1277.8544624482493,982.9649711140379,294.88949133421136 5598,6438,6437,0,0,61,111,55,31,0,4626,0,0,0,487,1,4,0,1,1.0,3874.14800765,0,0,20980.0,4,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20980.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5599,6443,6442,0,0,48,111,54,31,0,4630,0,0,0,364,2,3,0,2,1.5,3491.11463712,0,0,31079.0,1,3,9,7,3,0,0,0,0,0,0,1,0,0,0,0,20719.3333333,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,25.0,0.0,0,0,0.0,0.0,0.0 -5600,6455,6454,7,9,37,111,65,43,0,4645,0,750,0,601,2,4,2,4,2.1,2203.27374584,2340,0,44300.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,0,2,21095.238095200002,6,3,6,6_0,20000.0,0,20000.0,0,5,9,229.5,47.5,3.3,0,1,1965.9299422280758,1965.9299422280758,0.0 +5600,6455,6454,7,9,37,111,65,43,0,4645,0,750,0,601,2,4,2,4,2.1,2203.27374584,2340,0,44300.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,0,2,21095.2380952,6,3,6,6_0,20000.0,0,20000.0,0,5,9,229.5,47.5,3.3,0,1,1965.9299422280758,1965.9299422280758,0.0 5601,6522,6521,3,9,58,112,64,71,0,4737,0,0,0,0,1,4,0,1,1.0,3118.31383238,2912,0,19210.0,1,1,9,2,1,1,0,0,0,1,0,0,0,0,0,1,19210.0,6,3,6,6_0,1800.0,0,1800.0,0,4,9,51.0,30.0,3.3,0,1,176.93369480052684,176.93369480052684,0.0 5602,6531,6530,6,6,62,111,75,70,0,4752,0,0,0,0,0,4,0,1,1.0,1114.25860199,3042,0,19564.0,5,3,6,4,1,1,0,0,0,0,1,0,0,0,1,0,19564.0,6,3,6,6_0,6000.0,0,0.0,6000,2,5,0.0,0.0,0.0,0,0,589.7789826684227,0.0,589.7789826684227 5603,6554,6553,11,11,56,111,52,50,0,4781,0,100,0,0,1,3,0,1,1.0,1009.10942428,3891,0,20760.0,1,3,5,4,1,1,0,1,0,0,1,0,0,0,0,1,20760.0,6,3,6,6_0,35000.0,0,35000.0,0,3,10,53.0,20.0,3.3,0,1,3440.377398899133,3440.377398899133,0.0 5604,6559,6558,14,14,76,111,75,60,0,4789,0,0,0,0,0,3,0,2,1.5,2721.64278516,0,0,29761.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,19840.6666667,6,3,6,6_0,5000.0,0,5000.0,0,12,12,0.0,0.0,0.0,0,0,491.48248555701895,491.48248555701895,0.0 5605,6579,6578,1,9,56,111,46,50,0,4814,0,1100,0,0,3,7,2,4,2.5,1731.63548935,7124,0,53883.0,1,1,8,7,4,5,0,1,0,0,0,1,0,0,1,4,21553.2,6,3,6,6_0,22144.0,0,22144.0,0,2,4,1114.0,47.5,3.3,0,1,2176.6776320349254,2176.6776320349254,0.0 -5606,6583,6582,6,19,53,111,63,50,0,4822,0,0,0,615,2,5,2,4,2.3,974.4522951719999,4844,0,44092.0,1,3,6,4,4,2,0,1,0,0,1,0,0,0,1,1,19170.434782599998,6,3,6,6_0,20102.0,0,17102.0,3000,16,17,68.0,14.25,3.3,0,1,1975.9561849334389,1681.0666935992276,294.88949133421136 -5607,6584,6583,6,7,36,120,35,20,0,4824,0,700,0,0,2,4,1,3,1.8,3700.61077931,2095,0,36343.0,1,2,0,2,4,1,1,1,0,1,0,0,0,0,0,1,20190.5555556,6,3,6,6_0,5000.0,0,5000.0,0,5,6,63.5,14.666666666700001,0.0,0,1,491.48248555701895,491.48248555701895,0.0 +5606,6583,6582,6,19,53,111,63,50,0,4822,0,0,0,615,2,5,2,4,2.3,974.452295172,4844,0,44092.0,1,3,6,4,4,2,0,1,0,0,1,0,0,0,1,1,19170.4347826,6,3,6,6_0,20102.0,0,17102.0,3000,16,17,68.0,14.25,3.3,0,1,1975.9561849334389,1681.0666935992276,294.88949133421136 +5607,6584,6583,6,7,36,120,35,20,0,4824,0,700,0,0,2,4,1,3,1.8,3700.61077931,2095,0,36343.0,1,2,0,2,4,1,1,1,0,1,0,0,0,0,0,1,20190.5555556,6,3,6,6_0,5000.0,0,5000.0,0,5,6,63.5,14.6666666667,0.0,0,1,491.48248555701895,491.48248555701895,0.0 5608,6595,6594,2,9,51,111,68,31,0,4840,0,0,100,123,1,2,0,1,1.0,2630.06909284,0,0,19716.0,1,3,8,6,1,1,0,1,0,0,1,0,0,1,1,0,19716.0,6,3,6,6_0,18000.0,0,0.0,18000,5,10,116.0,65.0,3.3,0,1,1769.3369480052684,0.0,1769.3369480052684 -5609,6600,6599,0,13,36,111,62,60,0,4846,0,950,0,330,2,3,1,3,1.8,2453.5588513000002,0,0,36277.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,20153.888888900005,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 +5609,6600,6599,0,13,36,111,62,60,0,4846,0,950,0,330,2,3,1,3,1.8,2453.5588513,0,0,36277.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,20153.8888889,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 5610,6614,6613,1,1,51,111,63,50,1,4864,0,0,220,0,2,5,1,3,2.0,1011.09679462,0,11500,39507.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,2,0,19753.5,6,3,6,6_0,26000.0,0,0.0,26000,3,3,0.0,10.0,1.1,0,0,2555.7089248964985,0.0,2555.7089248964985 5611,6615,6614,1,4,31,221,63,50,0,4868,0,250,0,436,2,3,1,3,1.8,4588.03755754,0,0,37801.0,1,3,1,1,4,2,0,1,0,1,0,0,0,0,0,2,21000.5555556,6,3,6,6_0,25000.0,0,25000.0,0,2,2,320.3,80.0,3.3,0,0,2457.4124277850947,2457.4124277850947,0.0 5612,6616,6615,0,0,44,111,52,50,0,4869,0,0,0,317,1,1,0,1,1.0,2626.28343326,0,0,21040.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21040.0,6,3,6,6_0,0.0,0,0.0,0,0,0,103.5,150.0,5.57,0,0,0.0,0.0,0.0 5613,6624,6623,3,7,70,111,72,12,0,488,0,0,0,591,0,4,0,2,1.5,2592.54708154,0,0,31102.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,0,1,20734.6666667,6,3,6,6_0,13000.0,0,13000.0,0,8,8,0.0,0.0,0.0,0,0,1277.8544624482493,1277.8544624482493,0.0 5614,6654,6653,6,9,56,111,46,50,0,4926,0,160,0,0,2,6,2,4,2.5,1463.72663633,2600,0,48338.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,19335.2,6,3,6,6_0,12000.0,0,12000.0,0,7,7,0.0,15.0,3.3,0,1,1179.5579653368454,1179.5579653368454,0.0 5615,6671,6670,1,4,38,300,38,31,2,4952,0,0,0,0,2,6,2,4,2.3,2075.68864702,5780,4800,46786.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,1,1,20341.7391304,6,3,6,6_1,15000.0,0,10000.0,5000,5,6,22.8,10.0,0.0,0,1,1471.9469224995453,981.2979483330303,490.64897416651513 -5616,6689,6688,3,7,43,112,64,50,0,4975,0,325,450,0,2,5,2,4,2.1,1905.67200033,0,0,43759.0,1,2,4,0,4,2,0,1,1,0,0,0,0,0,1,1,20837.619047599997,6,3,6,6_1,30000.0,0,0.0,30000,1,8,255.0,36.25,3.31,0,1,2943.8938449990906,0.0,2943.8938449990906 +5616,6689,6688,3,7,43,112,64,50,0,4975,0,325,450,0,2,5,2,4,2.1,1905.67200033,0,0,43759.0,1,2,4,0,4,2,0,1,1,0,0,0,0,0,1,1,20837.6190476,6,3,6,6_1,30000.0,0,0.0,30000,1,8,255.0,36.25,3.31,0,1,2943.8938449990906,0.0,2943.8938449990906 5617,6697,6696,2,12,43,111,48,71,0,4988,0,199998,0,0,3,5,4,6,3.3,3115.38531286,0,0,67518.0,1,2,9,7,4,3,0,1,0,0,0,1,0,0,0,3,20460.0,6,3,6,6_0,21000.0,0,21000.0,0,2,12,217.0,61.25,3.3,0,1,2064.22643933948,2064.22643933948,0.0 -5618,6721,6720,5,7,36,112,56,50,0,5015,0,800,0,0,2,6,1,3,1.8,1745.16855216,0,0,34636.0,1,1,8,1,4,2,0,1,0,1,0,0,0,0,0,2,19242.222222200002,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 +5618,6721,6720,5,7,36,112,56,50,0,5015,0,800,0,0,2,6,1,3,1.8,1745.16855216,0,0,34636.0,1,1,8,1,4,2,0,1,0,1,0,0,0,0,0,2,19242.2222222,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 5619,6726,6725,12,12,62,112,75,50,0,5020,0,0,80,0,1,6,0,2,1.5,1821.03397376,5564,0,29928.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,2,0,19952.0,6,3,6,6_1,7000.0,0,0.0,7000,8,9,0.0,5.0,1.1,0,1,686.9085638331212,0.0,686.9085638331212 5620,6730,6729,2,2,79,111,72,50,0,5024,0,0,0,0,0,3,0,1,1.0,4435.86262374,0,0,19300.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,19300.0,6,3,6,6_0,8908.0,0,0.0,8908,9,0,0.0,0.0,0.0,0,0,875.625196268385,0.0,875.625196268385 5621,6756,6755,1,14,39,120,46,31,2,5063,0,100,0,0,2,7,2,4,2.1,2648.19046559,0,3200,43449.0,1,2,0,3,4,2,1,0,0,1,0,0,0,0,0,2,20690.0,6,3,6,6_0,12000.0,0,12000.0,0,8,15,144.5,60.0,3.31,0,1,1179.5579653368454,1179.5579653368454,0.0 @@ -5629,31 +5629,31 @@ 5627,6897,6896,0,0,80,111,77,70,0,5249,0,0,0,311,0,4,0,1,1.0,2618.46109249,0,0,19709.0,5,3,6,4,1,0,0,0,0,0,1,0,0,0,0,0,19709.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5628,6908,6907,0,0,88,111,77,70,0,5260,0,0,0,0,0,4,0,2,1.5,2142.16815786,0,0,30367.0,5,1,8,7,3,0,0,0,0,0,0,1,0,0,0,0,20244.6666667,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5629,6924,6923,4,4,71,112,78,50,0,5280,0,0,0,0,0,4,0,2,1.5,2161.54005528,2631,0,32510.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,0,1,21673.3333333,6,3,6,6_1,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,981.2979483330303,981.2979483330303,0.0 -5630,6933,6932,8,8,47,112,52,60,0,5292,0,0,160,0,1,5,1,3,2.0,1844.0393107999998,1456,0,41590.0,1,1,6,1,4,2,0,0,0,1,0,0,0,0,1,1,20795.0,6,3,6,6_0,16380.0,0,7000.0,9380,5,5,0.0,0.0,0.0,0,1,1610.096622684794,688.0754797798265,922.0211429049675 +5630,6933,6932,8,8,47,112,52,60,0,5292,0,0,160,0,1,5,1,3,2.0,1844.0393108,1456,0,41590.0,1,1,6,1,4,2,0,0,0,1,0,0,0,0,1,1,20795.0,6,3,6,6_0,16380.0,0,7000.0,9380,5,5,0.0,0.0,0.0,0,1,1610.096622684794,688.0754797798265,922.0211429049675 5631,6935,6934,5,7,34,212,63,50,0,5294,0,110,0,0,2,8,2,4,2.1,1163.67629723,0,0,42810.0,1,2,1,0,4,2,0,1,1,0,0,0,0,0,0,2,20385.7142857,6,3,6,6_1,15903.0,0,15903.0,0,7,7,73.4,13.0,3.3,0,1,1560.558127234018,1560.558127234018,0.0 5632,6948,6947,0,0,83,111,77,60,0,5312,0,0,0,0,0,3,0,1,1.0,3469.07252008,0,0,20689.0,5,4,9,7,1,0,0,0,0,0,0,1,0,0,0,0,20689.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5633,6954,6953,0,0,57,112,78,50,2,5320,0,220,0,0,1,4,0,2,1.5,1598.76868798,4992,5600,30991.0,7,1,7,0,3,2,0,0,1,0,0,0,0,0,0,2,20660.6666667,6,3,6,6_1,15000.0,0,15000.0,0,1,1,45.2,40.0,3.3,0,1,1471.9469224995453,1471.9469224995453,0.0 5634,6957,6956,2,4,58,112,77,70,0,5325,0,0,0,0,0,4,0,2,1.5,1179.64757338,1145,0,28898.0,4,3,6,1,3,1,0,0,0,1,0,0,0,0,0,1,19265.3333333,6,3,6,6_0,22000.0,0,22000.0,0,2,2,0.0,0.0,0.0,0,0,2162.522936450883,2162.522936450883,0.0 5635,6960,6959,3,3,49,111,54,31,0,5329,0,0,24,0,1,3,0,1,1.0,2970.48913133,0,0,21500.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,1,0,21500.0,6,3,6,6_0,10000.0,0,0.0,10000,2,2,0.0,20.0,3.3,0,1,982.9649711140379,0.0,982.9649711140379 5636,6966,6965,11,11,56,120,46,70,0,5335,0,250,0,443,1,4,0,1,1.0,3454.74739931,2714,0,20660.0,1,3,0,2,1,1,0,1,0,1,0,0,0,0,0,1,20660.0,6,3,6,6_0,35000.0,0,35000.0,0,3,10,53.0,20.0,3.3,0,1,3440.377398899133,3440.377398899133,0.0 -5637,6969,6968,2,7,40,111,54,43,0,5339,0,250,0,0,2,5,2,4,2.1,4850.64195773,5668,0,41737.0,1,1,10,8,4,2,1,1,0,0,0,0,1,0,0,2,19874.761904799998,6,3,6,6_0,12000.0,0,12000.0,0,3,3,171.5,42.0,2.22,0,0,1179.5579653368454,1179.5579653368454,0.0 +5637,6969,6968,2,7,40,111,54,43,0,5339,0,250,0,0,2,5,2,4,2.1,4850.64195773,5668,0,41737.0,1,1,10,8,4,2,1,1,0,0,0,0,1,0,0,2,19874.7619048,6,3,6,6_0,12000.0,0,12000.0,0,3,3,171.5,42.0,2.22,0,0,1179.5579653368454,1179.5579653368454,0.0 5638,6981,6980,1,9,72,111,75,50,2,5355,0,150,0,0,1,5,0,2,1.5,1280.45764326,3090,5500,31093.0,5,2,9,7,3,1,0,1,0,0,0,1,0,0,0,1,20728.6666667,6,3,6,6_0,10000.0,0,10000.0,0,12,13,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 -5639,6994,6993,0,12,26,111,55,43,0,5375,0,100,100,0,2,4,1,3,1.8,3379.7615233999995,0,0,38565.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,1,1,21425.0,6,3,6,6_0,43568.0,0,20000.0,23568,2,8,184.2,13.333333333299999,3.3,0,1,4282.58178614964,1965.9299422280758,2316.6518439215647 +5639,6994,6993,0,12,26,111,55,43,0,5375,0,100,100,0,2,4,1,3,1.8,3379.7615234,0,0,38565.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,1,1,21425.0,6,3,6,6_0,43568.0,0,20000.0,23568,2,8,184.2,13.3333333333,3.3,0,1,4282.58178614964,1965.9299422280758,2316.6518439215647 5640,7007,7006,4,4,64,111,75,42,0,5391,0,0,0,0,0,4,0,2,1.5,2411.32807746,0,0,31180.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,20786.6666667,6,3,6,6_0,22000.0,0,22000.0,0,5,5,0.0,0.0,0.0,0,0,2162.522936450883,2162.522936450883,0.0 5641,7011,7010,5,36,61,221,78,70,0,540,0,0,0,0,1,5,0,2,1.5,2581.8395695,4680,0,29301.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,0,2,19534.0,6,3,6,6_0,15311.0,0,15311.0,0,7,19,0.0,0.0,0.0,0,1,1505.0176672727034,1505.0176672727034,0.0 5642,7040,7039,1,1,62,111,77,50,1,5438,0,0,0,0,0,4,0,1,1.0,1541.40722853,1782,11793,20926.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,20926.0,6,3,6,6_0,10704.0,0,0.0,10704,16,2,0.0,0.0,0.0,0,0,1052.1657050804663,0.0,1052.1657050804663 5643,7042,7041,5,6,36,112,54,31,0,5440,0,80,0,0,2,5,2,4,2.1,1743.89133406,2567,0,42490.0,1,2,7,1,4,2,0,1,0,1,0,0,0,0,1,1,20233.3333333,6,3,6,6_0,14792.0,0,2800.0,11992,4,7,42.0,6.0,0.0,0,1,1454.001785271885,275.2301919119306,1178.7715933599543 5644,7054,7053,5,6,43,111,52,50,0,5454,0,10,0,373,1,2,0,1,1.0,2213.13906722,0,0,20089.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,20089.0,6,3,6,6_0,17000.0,0,17000.0,0,3,3,0.0,40.0,3.31,0,0,1671.0404508938645,1671.0404508938645,0.0 -5645,7056,7055,1,5,34,111,64,60,0,5459,0,0,0,641,1,3,1,3,1.8,2968.33266682,0,0,38207.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,0,1,21226.111111099995,6,3,6,6_0,20000.0,0,20000.0,0,3,5,171.0,40.0,3.3,0,1,1965.9299422280758,1965.9299422280758,0.0 +5645,7056,7055,1,5,34,111,64,60,0,5459,0,0,0,641,1,3,1,3,1.8,2968.33266682,0,0,38207.0,1,3,9,7,4,1,0,0,0,0,0,1,0,1,0,1,21226.1111111,6,3,6,6_0,20000.0,0,20000.0,0,3,5,171.0,40.0,3.3,0,1,1965.9299422280758,1965.9299422280758,0.0 5646,7060,7059,3,9,32,111,46,31,0,5463,0,99999,0,580,2,2,0,2,1.5,3382.14144134,0,0,29954.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,0,1,19969.3333333,6,3,6,6_0,9000.0,0,9000.0,0,4,12,103.1,45.0,5.55,0,0,884.6684740026342,884.6684740026342,0.0 5647,7074,7073,5,11,51,111,45,50,0,5482,0,0,100,610,1,3,1,2,1.5,2049.95881593,0,0,32285.0,1,3,8,7,2,1,0,1,0,0,0,1,0,0,1,0,21523.3333333,6,3,6,6_0,8000.0,0,0.0,8000,11,11,13.0,25.0,3.3,0,1,786.3719768912302,0.0,786.3719768912302 5648,7081,7080,0,0,75,111,78,50,0,5492,0,0,0,0,0,4,0,1,1.0,5915.56752128,0,0,20270.0,5,1,4,4,1,0,0,0,0,0,1,0,0,0,0,0,20270.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5649,7086,7085,1,1,28,111,43,31,1,550,0,400,0,750,1,4,1,2,1.3,4137.92593805,1300,12800,25119.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,19322.307692299997,6,3,6,6_0,25000.0,0,25000.0,0,5,7,0.0,0.0,0.0,0,0,2457.4124277850947,2457.4124277850947,0.0 +5649,7086,7085,1,1,28,111,43,31,1,550,0,400,0,750,1,4,1,2,1.3,4137.92593805,1300,12800,25119.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,19322.3076923,6,3,6,6_0,25000.0,0,25000.0,0,5,7,0.0,0.0,0.0,0,0,2457.4124277850947,2457.4124277850947,0.0 5650,7099,7098,4,4,38,112,21,50,0,5517,0,99999,0,0,2,6,3,5,2.4,1686.2529982,3120,0,48740.0,1,1,10,4,4,2,0,0,0,0,1,0,0,0,0,2,20308.3333333,6,3,6,6_0,18625.0,0,18625.0,0,4,6,3.0,31.25,3.3,0,1,1830.7722586998955,1830.7722586998955,0.0 5651,7106,7105,0,7,24,111,63,42,2,5524,0,120,0,433,2,3,0,2,1.5,2139.32898278,2080,5000,29060.0,1,3,7,5,3,2,0,1,0,0,1,0,0,1,0,2,19373.3333333,6,3,6,6_0,35000.0,0,35000.0,0,3,7,0.0,0.0,0.0,0,1,3440.377398899133,3440.377398899133,0.0 5652,7115,7114,0,7,40,112,47,31,2,5536,0,0,80,0,2,5,3,5,2.4,1667.21733853,0,2990,47169.0,1,2,9,1,4,1,0,1,0,1,0,0,0,0,1,0,19653.75,6,3,6,6_0,7409.0,0,0.0,7409,1,5,56.3,23.3333333333,0.0,0,1,728.2787470983907,0.0,728.2787470983907 -5653,7119,7118,3,4,46,111,54,50,0,5542,0,0,180,545,2,4,1,3,1.8,2342.10797871,2788,0,36861.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,1,0,20478.3333333,6,3,6,6_0,10000.0,0,0.0,10000,5,5,0.0,213.33333333299998,6.63,0,0,982.9649711140379,0.0,982.9649711140379 -5654,7132,7131,2,2,46,111,47,50,0,5555,0,180,120,569,2,5,1,3,1.8,2678.28884478,2453,0,38608.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,1,1,21448.888888900005,6,3,6,6_0,15543.0,0,12000.0,3543,3,6,48.0,25.0,3.31,0,1,1527.822454602549,1179.5579653368454,348.2644892657036 +5653,7119,7118,3,4,46,111,54,50,0,5542,0,0,180,545,2,4,1,3,1.8,2342.10797871,2788,0,36861.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,1,0,20478.3333333,6,3,6,6_0,10000.0,0,0.0,10000,5,5,0.0,213.333333333,6.63,0,0,982.9649711140379,0.0,982.9649711140379 +5654,7132,7131,2,2,46,111,47,50,0,5555,0,180,120,569,2,5,1,3,1.8,2678.28884478,2453,0,38608.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,1,1,21448.8888889,6,3,6,6_0,15543.0,0,12000.0,3543,3,6,48.0,25.0,3.31,0,1,1527.822454602549,1179.5579653368454,348.2644892657036 5655,7140,7139,4,4,68,212,72,41,0,5564,0,0,0,0,0,5,0,1,1.0,5020.20959562,0,0,21361.0,5,1,3,0,1,1,0,0,1,0,0,0,0,0,0,1,21361.0,6,3,6,6_1,10000.0,0,10000.0,0,5,5,0.0,0.0,0.0,0,0,981.2979483330303,981.2979483330303,0.0 5656,7141,7140,3,9,29,112,21,50,0,5565,0,0,0,0,1,5,3,5,2.4,4026.58326127,0,0,47808.0,1,2,5,0,4,2,0,0,1,0,0,0,0,1,1,1,19920.0,6,3,6,6_1,30000.0,0,30000.0,0,6,6,89.0,5.2,0.0,0,0,2943.8938449990906,2943.8938449990906,0.0 5657,7151,7150,0,11,21,111,84,42,0,558,0,0,250,249,0,2,0,1,1.0,3313.09055577,0,0,20193.0,3,3,9,7,1,1,0,1,0,0,0,1,0,1,1,0,20193.0,6,3,6,6_0,10000.0,0,0.0,10000,5,11,44.0,30.0,3.3,0,1,982.9649711140379,0.0,982.9649711140379 @@ -5663,16 +5663,16 @@ 5661,7203,7202,1,4,35,112,37,12,2,5649,0,0,0,0,1,6,2,4,2.1,1338.01882697,1560,8000,41931.0,1,2,9,2,4,1,0,0,0,1,0,0,0,0,1,0,19967.1428571,6,3,6,6_0,2753.0,0,0.0,2753,1,6,0.0,0.0,0.0,1,0,270.61025654769463,0.0,270.61025654769463 5662,7207,7206,12,12,76,120,77,60,0,5652,0,0,0,0,0,6,0,2,1.5,1307.56092469,2166,0,31104.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,20736.0,6,3,6,6_1,3000.0,0,0.0,3000,14,14,0.0,0.0,0.0,0,0,294.38938449990906,0.0,294.38938449990906 5663,7209,7208,10,10,78,112,78,71,0,5655,0,0,0,0,0,3,0,2,1.5,2795.93215353,0,0,30321.0,5,1,10,0,3,1,0,0,1,0,0,0,0,0,0,1,20214.0,6,3,6,6_1,5000.0,0,5000.0,0,10,10,0.0,0.0,0.0,0,0,490.64897416651513,490.64897416651513,0.0 -5664,7210,7209,0,0,49,111,43,33,0,5656,0,0,0,0,2,3,2,4,2.1,3559.16747068,0,0,44470.0,1,3,9,7,4,0,0,0,0,0,0,1,0,0,0,0,21176.190476199998,6,3,6,6_0,0.0,0,0.0,0,0,0,653.5,106.666666667,5.57,0,0,0.0,0.0,0.0 -5665,7219,7218,11,11,34,111,47,31,0,567,0,600,0,0,2,5,1,3,1.8,3358.9357363000004,1560,0,34460.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,19144.4444444,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 +5664,7210,7209,0,0,49,111,43,33,0,5656,0,0,0,0,2,3,2,4,2.1,3559.16747068,0,0,44470.0,1,3,9,7,4,0,0,0,0,0,0,1,0,0,0,0,21176.1904762,6,3,6,6_0,0.0,0,0.0,0,0,0,653.5,106.666666667,5.57,0,0,0.0,0.0,0.0 +5665,7219,7218,11,11,34,111,47,31,0,567,0,600,0,0,2,5,1,3,1.8,3358.9357363,1560,0,34460.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,19144.4444444,6,3,6,6_0,30000.0,0,30000.0,0,3,7,137.5,21.6666666667,3.3,0,1,2948.8949133421133,2948.8949133421133,0.0 5666,7225,7224,4,16,50,111,37,41,0,5675,0,250,0,0,1,8,1,2,1.5,1873.36366551,2028,0,29447.0,1,1,8,7,2,1,1,1,0,0,0,1,0,0,0,1,19631.3333333,6,3,6,6_0,15000.0,0,15000.0,0,10,10,0.0,0.0,0.0,0,1,1474.4474566710567,1474.4474566710567,0.0 5667,7234,7233,3,7,27,111,55,43,0,5688,0,100,50,379,2,3,0,2,1.5,3453.07107126,0,0,30828.0,1,3,8,7,3,2,0,1,0,0,0,1,0,0,1,1,20552.0,6,3,6,6_0,16287.0,0,8787.0,7500,1,5,0.0,0.0,0.0,0,1,1600.9550484534336,863.731320117905,737.2237283355283 5668,7236,7235,13,13,42,211,56,60,0,569,0,0,5,0,1,4,0,1,1.0,2945.87992989,0,0,20379.0,2,1,3,3,1,1,1,1,0,1,0,0,0,0,1,0,20379.0,6,3,6,6_0,5000.0,0,0.0,5000,3,17,30.5,50.0,3.3,0,0,491.48248555701895,0.0,491.48248555701895 5669,7239,7238,11,11,39,112,47,50,0,5697,0,70,0,0,2,4,2,4,2.1,2465.45699195,2081,0,40721.0,1,1,10,0,4,3,0,0,1,0,0,0,0,0,0,3,19390.952381,6,3,6,6_1,27000.0,0,27000.0,0,2,5,423.4,61.0,3.3,0,1,2649.5044604991817,2649.5044604991817,0.0 5670,7249,7248,5,10,51,111,48,50,0,571,0,300,150,0,3,4,1,3,2.0,1208.6158931,4160,0,39325.0,1,1,8,7,4,3,0,1,0,0,0,1,0,0,2,1,19662.5,6,3,6,6_0,20000.0,0,5000.0,15000,6,10,0.0,0.0,0.0,0,1,1965.9299422280758,491.48248555701895,1474.4474566710567 5671,7251,7250,0,0,87,111,86,71,0,5711,0,0,0,295,0,3,0,1,1.0,3465.52800058,0,0,19796.0,6,3,6,5,1,0,0,0,0,0,1,0,0,1,0,0,19796.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5672,7258,7257,0,0,24,111,56,71,0,572,0,0,0,500,2,3,1,3,1.8,4742.64929897,0,0,35404.0,1,3,8,6,4,0,0,0,0,0,1,0,0,1,0,0,19668.888888900005,6,3,6,6_0,0.0,0,0.0,0,0,0,1926.5,83.3333333333,5.55,0,0,0.0,0.0,0.0 -5673,7263,7262,15,15,36,111,64,43,0,5729,0,30,100,0,2,5,1,3,1.8,3098.49702544,1716,0,35546.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,1,1,19747.777777799998,6,3,6,6_0,19159.0,0,10362.0,8797,6,11,72.0,38.3333333333,3.31,1,1,1883.2625881573852,1018.5483030683661,864.7142850890192 +5672,7258,7257,0,0,24,111,56,71,0,572,0,0,0,500,2,3,1,3,1.8,4742.64929897,0,0,35404.0,1,3,8,6,4,0,0,0,0,0,1,0,0,1,0,0,19668.8888889,6,3,6,6_0,0.0,0,0.0,0,0,0,1926.5,83.3333333333,5.55,0,0,0.0,0.0,0.0 +5673,7263,7262,15,15,36,111,64,43,0,5729,0,30,100,0,2,5,1,3,1.8,3098.49702544,1716,0,35546.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,1,1,19747.7777778,6,3,6,6_0,19159.0,0,10362.0,8797,6,11,72.0,38.3333333333,3.31,1,1,1883.2625881573852,1018.5483030683661,864.7142850890192 5674,7270,7269,11,11,56,300,67,70,0,574,0,300,0,0,2,6,0,2,1.5,1619.65953304,0,0,32077.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,21384.6666667,6,3,6,6_1,29480.0,0,29480.0,0,8,11,66.0,10.0,0.0,0,1,2892.866351685773,2892.866351685773,0.0 5675,7278,7277,4,10,60,111,77,50,0,575,0,0,0,0,1,5,0,2,1.5,1563.29848347,2085,0,30567.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,20378.0,6,3,6,6_0,19843.0,0,17343.0,2500,8,8,0.0,20.0,3.3,0,1,1950.4973921815854,1704.756149403076,245.74124277850947 5676,7283,7282,7,10,51,111,42,42,0,5757,0,0,0,0,4,5,3,5,3.0,2066.37210966,2884,0,58050.0,1,4,10,8,4,2,0,0,0,0,0,0,1,0,0,2,19350.0,6,3,6,6_0,2000.0,0,2000.0,0,1,2,0.0,0.0,0.0,0,1,196.59299422280756,196.59299422280756,0.0 @@ -5684,12 +5684,12 @@ 5682,7327,7326,1,6,55,400,63,50,0,5821,0,200,0,0,2,5,0,2,1.5,1390.8096861,3435,0,31230.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,20820.0,6,3,6,6_1,25001.0,0,25001.0,0,3,6,0.0,0.0,0.0,0,1,2453.343000627409,2453.343000627409,0.0 5683,7328,7327,5,5,63,112,75,50,0,5823,0,0,0,0,0,3,0,1,1.0,2053.98483723,1664,0,21494.0,5,1,6,0,1,1,0,0,1,0,0,0,0,0,1,0,21494.0,6,3,6,6_1,1200.0,0,0.0,1200,1,10,0.0,0.0,0.0,0,0,117.75575379996363,0.0,117.75575379996363 5684,7329,7328,0,0,48,211,46,10,0,5825,0,0,0,0,1,5,3,4,2.5,1263.64177934,785,0,54014.0,1,1,1,2,2,0,0,0,0,1,0,0,0,0,0,0,21605.6,6,3,6,6_0,0.0,0,0.0,0,5,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5685,7367,7366,7,22,35,112,54,50,0,5879,0,0,0,0,3,5,2,4,2.3,2035.70212972,1821,0,47648.0,1,3,10,0,4,2,0,0,1,0,0,0,0,0,0,2,20716.521739099997,6,3,6,6_1,25000.0,0,25000.0,0,3,5,177.0,22.5,3.31,0,1,2453.2448708325755,2453.2448708325755,0.0 +5685,7367,7366,7,22,35,112,54,50,0,5879,0,0,0,0,3,5,2,4,2.3,2035.70212972,1821,0,47648.0,1,3,10,0,4,2,0,0,1,0,0,0,0,0,0,2,20716.5217391,6,3,6,6_1,25000.0,0,25000.0,0,3,5,177.0,22.5,3.31,0,1,2453.2448708325755,2453.2448708325755,0.0 5686,7371,7370,15,15,70,400,77,60,0,5883,0,0,0,0,0,3,0,1,1.0,4239.70520782,0,0,20087.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,20087.0,6,3,6,6_1,6294.0,0,0.0,6294,17,17,0.0,0.0,0.0,0,0,617.6289286808092,0.0,617.6289286808092 5687,7380,7379,8,8,47,111,47,50,0,5895,0,30,0,373,1,3,0,1,1.0,3263.71561772,0,0,19139.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,0,1,19139.0,6,3,6,6_0,82520.0,0,82520.0,0,9,9,311.1,240.0,3.3,0,1,8111.426941633041,8111.426941633041,0.0 -5688,7382,7381,13,13,47,211,43,12,0,5899,0,20,99999,0,2,4,2,3,1.8,1237.668166,0,0,37010.0,1,2,3,3,2,2,0,1,0,1,0,0,0,0,1,1,20561.111111099995,6,3,6,6_0,15543.0,0,12000.0,3543,3,6,48.0,25.0,3.31,0,1,1527.822454602549,1179.5579653368454,348.2644892657036 +5688,7382,7381,13,13,47,211,43,12,0,5899,0,20,99999,0,2,4,2,3,1.8,1237.668166,0,0,37010.0,1,2,3,3,2,2,0,1,0,1,0,0,0,0,1,1,20561.1111111,6,3,6,6_0,15543.0,0,12000.0,3543,3,6,48.0,25.0,3.31,0,1,1527.822454602549,1179.5579653368454,348.2644892657036 5689,7386,7385,3,11,60,111,46,60,0,5903,0,0,0,0,1,4,0,2,1.5,1575.67501372,0,0,29457.0,1,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,19638.0,6,3,6,6_0,8000.0,0,0.0,8000,11,11,13.0,25.0,3.3,0,1,786.3719768912302,0.0,786.3719768912302 -5690,7393,7392,7,9,40,111,52,60,0,5911,0,0,200,0,2,4,1,3,1.8,3226.70934364,1419,0,34850.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,19361.111111099995,6,3,6,6_0,6710.0,0,0.0,6710,1,6,0.0,60.0,0.0,1,1,659.5694956175195,0.0,659.5694956175195 +5690,7393,7392,7,9,40,111,52,60,0,5911,0,0,200,0,2,4,1,3,1.8,3226.70934364,1419,0,34850.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,19361.1111111,6,3,6,6_0,6710.0,0,0.0,6710,1,6,0.0,60.0,0.0,1,1,659.5694956175195,0.0,659.5694956175195 5691,7395,7394,0,0,43,112,67,71,0,5913,0,0,0,0,1,4,1,2,1.5,2613.96758054,0,0,30366.0,1,1,8,1,2,0,0,0,0,1,0,0,0,0,0,0,20244.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5692,7420,7419,21,24,82,112,77,70,0,5955,0,0,0,256,0,3,0,1,1.0,2854.65139525,0,0,21385.0,5,3,10,4,1,1,0,0,0,0,1,0,0,0,1,0,21385.0,6,3,6,6_0,150.0,0,0.0,150,19,21,0.0,0.0,0.0,0,0,14.744474566710569,0.0,14.744474566710569 5693,7423,7422,2,2,77,111,78,71,0,5959,0,0,0,0,0,2,0,1,1.0,4697.9735297,0,0,20422.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,20422.0,6,3,6,6_0,4500.0,0,0.0,4500,3,4,0.0,0.0,0.0,0,0,442.3342370013171,0.0,442.3342370013171 @@ -5704,8 +5704,8 @@ 5702,7488,7487,10,11,64,111,77,70,0,6042,0,0,0,0,0,6,0,1,1.0,2375.0074186,1352,0,19682.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,0,1,19682.0,6,3,6,6_0,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 5703,7490,7489,1,1,62,111,78,50,1,6045,0,0,0,0,0,5,0,2,1.5,1631.54318742,0,14443,30560.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,20373.3333333,6,3,6,6_0,10000.0,0,0.0,10000,4,4,0.0,0.0,0.0,0,0,982.9649711140379,0.0,982.9649711140379 5704,7491,7490,4,6,68,120,71,70,0,6047,0,0,0,0,0,5,0,2,1.5,2720.56129102,0,0,28710.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,19140.0,6,3,6,6_1,27000.0,0,27000.0,0,6,6,0.0,0.0,0.0,0,0,2649.5044604991817,2649.5044604991817,0.0 -5705,7516,7515,5,15,62,112,74,50,0,6078,0,0,0,0,1,5,1,4,2.3,1288.849326,3567,0,47782.0,5,1,9,1,5,2,0,0,0,1,0,0,0,0,0,2,20774.782608700003,6,3,6,6_0,54781.0,0,54781.0,0,2,17,0.0,0.0,0.0,0,1,5384.780408259811,5384.780408259811,0.0 -5706,7521,7520,2,2,40,112,37,43,0,6084,0,320,0,0,2,6,2,4,2.3,3603.7472056999995,2746,0,46543.0,1,2,10,4,4,2,0,1,0,0,1,0,0,0,0,2,20236.0869565,6,3,6,6_0,10000.0,0,10000.0,0,4,3,0.0,11.0,0.0,1,1,982.9649711140379,982.9649711140379,0.0 +5705,7516,7515,5,15,62,112,74,50,0,6078,0,0,0,0,1,5,1,4,2.3,1288.849326,3567,0,47782.0,5,1,9,1,5,2,0,0,0,1,0,0,0,0,0,2,20774.7826087,6,3,6,6_0,54781.0,0,54781.0,0,2,17,0.0,0.0,0.0,0,1,5384.780408259811,5384.780408259811,0.0 +5706,7521,7520,2,2,40,112,37,43,0,6084,0,320,0,0,2,6,2,4,2.3,3603.7472057,2746,0,46543.0,1,2,10,4,4,2,0,1,0,0,1,0,0,0,0,2,20236.0869565,6,3,6,6_0,10000.0,0,10000.0,0,4,3,0.0,11.0,0.0,1,1,982.9649711140379,982.9649711140379,0.0 5707,7523,7522,1,2,32,400,54,31,2,6088,0,0,160,390,1,3,0,1,1.0,5135.82676138,0,11300,20941.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,1,0,20941.0,6,3,6,6_1,10000.0,0,0.0,10000,4,5,66.0,30.0,3.31,0,1,981.2979483330303,0.0,981.2979483330303 5708,7534,7533,5,5,51,111,48,50,0,6104,0,690,0,0,2,6,2,4,2.5,1533.89860525,3290,0,52258.0,1,1,8,7,4,4,0,1,0,0,0,1,0,0,0,4,20903.2,6,3,6,6_0,55000.0,0,55000.0,0,6,10,434.6,76.25,3.31,0,1,5406.307341127208,5406.307341127208,0.0 5709,7543,7542,0,14,53,111,47,60,0,6115,0,0,0,0,1,6,0,1,1.0,2421.48410593,0,0,19846.0,1,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,19846.0,6,3,6,6_0,10000.0,0,0.0,10000,8,11,0.0,40.0,1.1,0,0,982.9649711140379,0.0,982.9649711140379 @@ -5720,10 +5720,10 @@ 5718,7662,7661,2,2,43,112,62,42,0,6274,0,0,0,0,2,5,2,4,2.1,7273.44481646,2250,0,40820.0,1,4,4,0,4,1,0,0,1,0,0,0,0,0,0,1,19438.0952381,6,3,6,6_1,24001.0,0,24001.0,0,1,2,0.0,0.0,0.0,0,1,2355.213205794106,2355.213205794106,0.0 5719,7668,7667,7,11,76,120,75,71,0,6286,0,0,0,0,0,4,0,1,1.0,5480.57827393,0,0,21579.0,5,1,0,2,1,1,0,0,0,1,0,0,0,0,1,0,21579.0,6,3,6,6_0,2800.0,0,0.0,2800,10,10,0.0,0.0,0.0,0,0,275.2301919119306,0.0,275.2301919119306 5720,7676,7675,13,14,71,111,75,50,0,6295,0,0,0,0,0,4,0,2,1.5,1359.69253984,0,0,32483.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,21655.3333333,6,3,6,6_0,6000.0,0,0.0,6000,4,13,0.0,0.0,0.0,0,0,589.7789826684227,0.0,589.7789826684227 -5721,7690,7689,2,2,43,112,46,10,0,6313,0,620,0,0,1,5,1,2,1.3,2660.16023289,2600,0,26825.0,1,2,9,0,2,1,0,1,1,0,0,0,0,0,0,1,20634.615384599998,6,3,6,6_1,15000.0,0,15000.0,0,2,9,48.0,40.0,3.3,0,1,1471.9469224995453,1471.9469224995453,0.0 +5721,7690,7689,2,2,43,112,46,10,0,6313,0,620,0,0,1,5,1,2,1.3,2660.16023289,2600,0,26825.0,1,2,9,0,2,1,0,1,1,0,0,0,0,0,0,1,20634.6153846,6,3,6,6_1,15000.0,0,15000.0,0,2,9,48.0,40.0,3.3,0,1,1471.9469224995453,1471.9469224995453,0.0 5722,7692,7691,15,15,82,111,78,70,0,6316,0,0,0,0,0,4,0,1,1.0,2269.97647222,0,0,20769.0,5,4,8,7,1,1,0,0,0,0,0,1,0,0,1,0,20769.0,6,3,6,6_0,1100.0,0,0.0,1100,10,13,0.0,0.0,0.0,0,0,108.12614682254417,0.0,108.12614682254417 5723,7698,7697,3,9,42,111,47,42,0,6324,0,0,250,0,2,4,2,4,2.3,2265.14024402,5356,0,44338.0,4,2,7,5,4,2,0,1,0,0,1,0,0,0,2,0,19277.3913043,6,3,6,6_0,12000.0,0,0.0,12000,5,10,40.4,16.3333333333,0.0,0,1,1179.5579653368454,0.0,1179.5579653368454 -5724,7701,7700,6,6,53,111,37,42,0,6330,0,0,0,0,2,6,2,4,2.1,2131.20000141,0,0,41803.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,19906.190476199998,6,3,6,6_0,28682.0,0,28682.0,0,4,6,0.0,7.5,3.3,0,1,2819.3401301492836,2819.3401301492836,0.0 +5724,7701,7700,6,6,53,111,37,42,0,6330,0,0,0,0,2,6,2,4,2.1,2131.20000141,0,0,41803.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,19906.1904762,6,3,6,6_0,28682.0,0,28682.0,0,4,6,0.0,7.5,3.3,0,1,2819.3401301492836,2819.3401301492836,0.0 5725,7707,7706,21,21,74,111,77,71,0,6341,0,0,0,0,0,3,0,1,1.0,3519.36860083,1326,0,20632.0,5,4,9,7,1,1,0,0,0,0,0,1,0,0,1,0,20632.0,6,3,6,6_0,5000.0,0,0.0,5000,19,19,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 5726,7714,7713,8,9,50,400,67,50,0,6354,0,85,0,0,1,4,0,1,1.0,3445.02111434,3380,0,19971.0,1,2,0,0,1,1,0,1,1,0,0,0,0,0,0,1,19971.0,6,3,6,6_1,20000.0,0,20000.0,0,5,10,0.0,30.0,3.3,0,1,1962.5958966660605,1962.5958966660605,0.0 5727,7727,7726,5,14,52,111,22,43,0,6371,0,0,0,482,1,2,0,1,1.0,5180.83957134,1560,0,19269.0,1,3,8,7,1,1,1,0,0,0,0,1,0,0,0,1,19269.0,6,3,6,6_0,10891.0,0,10891.0,0,2,13,82.0,30.0,3.31,0,1,1070.5471500402987,1070.5471500402987,0.0 @@ -5731,7 +5731,7 @@ 5729,7741,7740,10,10,44,112,69,71,0,6391,0,316,0,0,2,5,3,5,2.4,1729.42417614,2600,0,51042.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,21267.5,6,3,6,6_1,30000.0,0,30000.0,0,10,14,78.6,11.6,3.3,0,1,2943.8938449990906,2943.8938449990906,0.0 5730,7753,7752,16,16,56,400,52,50,0,6407,0,0,0,252,1,3,0,1,1.0,5722.89609154,0,0,19636.0,1,3,0,1,1,1,0,0,0,1,0,0,0,0,1,0,19636.0,6,3,6,6_0,15000.0,0,0.0,15000,9,15,16.5,70.0,3.3,0,1,1474.4474566710567,0.0,1474.4474566710567 5731,7754,7753,3,3,64,120,75,50,0,6408,0,0,0,0,0,5,0,2,1.5,1002.54294251,2808,0,32089.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,0,1,21392.6666667,6,3,6,6_0,6000.0,0,6000.0,0,8,1,0.0,0.0,0.0,0,0,589.7789826684227,589.7789826684227,0.0 -5732,7758,7757,5,7,32,112,54,50,0,6412,0,280,0,0,2,6,2,4,2.1,1534.65347204,3354,0,43423.0,1,2,7,0,4,3,0,1,1,0,0,0,0,0,0,3,20677.619047599997,6,3,6,6_1,21154.0,0,21154.0,0,1,1,143.0,35.0,3.31,1,1,2075.8376799036923,2075.8376799036923,0.0 +5732,7758,7757,5,7,32,112,54,50,0,6412,0,280,0,0,2,6,2,4,2.1,1534.65347204,3354,0,43423.0,1,2,7,0,4,3,0,1,1,0,0,0,0,0,0,3,20677.6190476,6,3,6,6_1,21154.0,0,21154.0,0,1,1,143.0,35.0,3.31,1,1,2075.8376799036923,2075.8376799036923,0.0 5733,7764,7763,3,3,36,112,52,44,0,6424,0,50,60,0,2,4,3,5,2.6,2157.52474137,1786,0,53356.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,20521.5384615,6,3,6,6_1,35000.0,0,25000.0,10000,4,9,75.0,10.0,3.31,0,1,3434.5428191656056,2453.2448708325755,981.2979483330303 5734,7765,7764,4,8,28,111,46,31,0,6426,0,380,0,0,1,2,0,1,1.0,3634.91134421,0,0,21299.0,1,2,9,7,1,1,1,1,0,0,0,1,0,0,0,1,21299.0,6,3,6,6_0,25000.0,0,25000.0,0,8,8,54.5,40.0,3.31,0,1,2457.4124277850947,2457.4124277850947,0.0 5735,7797,7796,6,6,61,112,75,50,0,6471,0,350,0,0,1,5,0,2,1.5,2643.73316057,0,0,30954.0,5,1,7,0,3,1,0,1,1,0,0,0,0,0,0,1,20636.0,6,3,6,6_1,20000.0,0,20000.0,0,4,6,0.0,0.0,0.0,0,0,1962.5958966660605,1962.5958966660605,0.0 @@ -5760,7 +5760,7 @@ 5758,7927,7926,6,11,26,112,53,50,0,6646,0,368,0,0,2,4,1,3,1.8,1803.27293462,4213,0,34606.0,1,3,7,0,4,2,0,1,1,0,0,0,0,0,0,2,19225.5555556,6,3,6,6_1,34445.0,0,34445.0,0,2,6,85.0,30.0,3.31,0,1,3380.0807830331228,3380.0807830331228,0.0 5759,7930,7929,0,28,95,111,78,71,0,665,0,0,0,450,0,2,0,1,1.0,4286.47724166,0,0,21094.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,1,0,21094.0,6,3,6,6_0,150.0,0,0.0,150,19,21,0.0,0.0,0.0,0,0,14.744474566710569,0.0,14.744474566710569 5760,7937,7936,2,2,58,111,75,12,0,6659,0,0,0,0,0,7,0,1,1.0,2025.9001883,0,0,21363.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,21363.0,6,3,6,6_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,0,0,1965.9299422280758,1965.9299422280758,0.0 -5761,7940,7939,7,7,38,111,48,42,0,6661,0,30,0,339,1,3,1,2,1.3,2928.81414983,0,0,26276.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,20212.307692299997,6,3,6,6_0,23000.0,0,23000.0,0,3,6,94.0,28.0,3.3,0,1,2260.819433562287,2260.819433562287,0.0 +5761,7940,7939,7,7,38,111,48,42,0,6661,0,30,0,339,1,3,1,2,1.3,2928.81414983,0,0,26276.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,0,1,20212.3076923,6,3,6,6_0,23000.0,0,23000.0,0,3,6,94.0,28.0,3.3,0,1,2260.819433562287,2260.819433562287,0.0 5762,7949,7948,0,0,80,111,78,70,0,6672,0,0,0,0,0,3,0,1,1.0,1517.06658471,0,0,19310.0,5,1,7,5,1,0,0,0,0,0,1,0,0,0,0,0,19310.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5763,7962,7961,0,11,28,112,42,30,0,6694,0,600,0,0,2,5,2,4,2.1,2294.38817971,1427,0,40844.0,1,3,8,0,4,2,0,1,1,0,0,0,0,0,0,2,19449.5238095,6,3,6,6_1,25000.0,0,25000.0,0,2,14,116.5,24.5,3.3,0,1,2453.2448708325755,2453.2448708325755,0.0 5764,7974,7973,17,17,81,300,77,70,0,6709,0,0,0,0,0,5,0,2,1.5,2225.03305004,2080,0,30530.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,20353.3333333,6,3,6,6_1,33936.0,0,33936.0,0,8,20,0.0,0.0,0.0,0,0,3330.1327174629714,3330.1327174629714,0.0 @@ -5776,25 +5776,25 @@ 5774,8104,8103,10,10,86,111,72,70,0,6887,0,0,0,0,0,5,0,1,1.0,1890.74866935,0,0,20427.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,0,1,20427.0,6,3,6,6_0,7000.0,0,7000.0,0,8,8,0.0,0.0,0.0,0,0,688.0754797798265,688.0754797798265,0.0 5775,8115,8114,9,15,28,111,48,60,0,6902,0,130,0,750,2,3,1,3,1.8,3782.14045705,0,0,37616.1428571,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,20897.8571429,6,3,6,6_0,42000.0,0,42000.0,0,8,8,120.5,66.6666666667,3.3,0,1,4128.45287867896,4128.45287867896,0.0 5776,8118,8117,3,16,40,112,46,31,0,6907,0,0,0,0,2,6,3,5,2.4,1402.34817317,2548,0,51166.0,1,2,10,0,4,2,0,0,1,0,0,0,0,0,1,1,21319.1666667,6,3,6,6_1,33000.0,0,20000.0,13000,2,8,235.9,41.0,3.3,1,1,3238.283229499,1962.5958966660605,1275.6873328329393 -5777,8142,8141,0,2,39,112,63,43,2,6942,0,460,0,0,2,5,2,4,2.1,3403.99400377,0,13000,45394.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,21616.190476199998,6,3,6,6_1,20500.0,0,20500.0,0,3,3,305.2,11.0,3.3,0,1,2011.6607940827118,2011.6607940827118,0.0 +5777,8142,8141,0,2,39,112,63,43,2,6942,0,460,0,0,2,5,2,4,2.1,3403.99400377,0,13000,45394.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,21616.1904762,6,3,6,6_1,20500.0,0,20500.0,0,3,3,305.2,11.0,3.3,0,1,2011.6607940827118,2011.6607940827118,0.0 5778,8143,8142,3,8,38,112,52,50,0,6944,0,560,0,0,2,6,1,3,1.8,2780.68866697,3120,0,35880.0,1,3,6,0,4,2,0,1,1,0,0,0,0,0,0,2,19933.3333333,6,3,6,6_1,22500.0,0,22500.0,0,7,9,233.9,55.0,3.31,0,1,2207.920383749318,2207.920383749318,0.0 5779,8173,8172,6,6,49,221,21,50,0,6981,0,60,0,0,2,3,0,2,1.5,1479.47028564,0,0,29360.0,1,1,1,1,3,1,0,1,0,1,0,0,0,0,0,1,19573.3333333,6,3,6,6_0,15000.0,0,15000.0,0,2,8,0.0,10.0,3.31,0,1,1474.4474566710567,1474.4474566710567,0.0 5780,8190,8189,11,11,83,111,75,10,0,7000,0,0,0,0,0,5,0,2,1.5,2138.62199685,0,0,31768.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,21178.6666667,6,3,6,6_0,9000.0,0,0.0,9000,7,8,0.0,0.0,0.0,0,0,884.6684740026342,0.0,884.6684740026342 5781,8197,8196,1,1,48,111,63,42,0,7012,0,200003,0,0,3,6,2,4,2.5,999.471091608,0,0,53756.0,1,2,9,7,4,3,0,1,0,0,0,1,0,0,0,3,21502.4,6,3,6,6_0,21000.0,0,21000.0,0,2,12,217.0,61.25,3.3,0,1,2064.22643933948,2064.22643933948,0.0 5782,8222,8221,2,2,37,111,69,42,0,7049,0,120,56,0,2,5,2,4,2.1,2719.09585733,0,0,42330.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,20157.1428571,6,3,6,6_0,17000.0,0,11000.0,6000,4,4,104.0,18.0,3.3,0,1,1671.0404508938645,1081.2614682254416,589.7789826684227 -5783,8230,8229,4,15,33,111,43,33,0,7059,0,600,0,662,2,4,2,4,2.1,2158.24957859,5200,0,45370.0,1,3,6,5,4,2,0,0,0,0,1,0,0,0,0,2,21604.761904799998,6,3,6,6_0,32500.0,0,32500.0,0,10,10,16.0,4.5,3.31,0,1,3194.6361561206236,3194.6361561206236,0.0 +5783,8230,8229,4,15,33,111,43,33,0,7059,0,600,0,662,2,4,2,4,2.1,2158.24957859,5200,0,45370.0,1,3,6,5,4,2,0,0,0,0,1,0,0,0,0,2,21604.7619048,6,3,6,6_0,32500.0,0,32500.0,0,10,10,16.0,4.5,3.31,0,1,3194.6361561206236,3194.6361561206236,0.0 5784,8243,8242,11,16,41,400,67,50,0,7078,0,950,0,0,2,4,2,4,2.1,2243.00844386,4250,0,44316.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21102.8571429,6,3,6,6_1,3500.0,0,3500.0,0,10,17,28.0,20.0,3.3,0,1,343.4542819165606,343.4542819165606,0.0 -5785,8247,8246,1,3,33,111,22,50,0,7084,0,260,0,610,2,3,1,3,1.8,3752.7648787,702,0,37525.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,20847.222222200002,6,3,6,6_0,10000.0,0,10000.0,0,1,3,0.0,18.3333333333,5.55,0,1,982.9649711140379,982.9649711140379,0.0 -5786,8251,8250,3,10,26,112,64,60,0,7088,0,900,0,0,2,4,2,4,2.1,2380.8303335,5200,0,44740.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,21304.761904799998,6,3,6,6_1,10000.0,0,10000.0,0,4,8,133.8,18.0,3.31,0,1,981.2979483330303,981.2979483330303,0.0 +5785,8247,8246,1,3,33,111,22,50,0,7084,0,260,0,610,2,3,1,3,1.8,3752.7648787,702,0,37525.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,20847.2222222,6,3,6,6_0,10000.0,0,10000.0,0,1,3,0.0,18.3333333333,5.55,0,1,982.9649711140379,982.9649711140379,0.0 +5786,8251,8250,3,10,26,112,64,60,0,7088,0,900,0,0,2,4,2,4,2.1,2380.8303335,5200,0,44740.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,21304.7619048,6,3,6,6_1,10000.0,0,10000.0,0,4,8,133.8,18.0,3.31,0,1,981.2979483330303,981.2979483330303,0.0 5787,8253,8252,3,3,37,112,69,50,0,709,0,570,0,0,2,5,2,4,2.1,2350.29670853,0,0,42999.0,1,2,8,0,4,3,0,1,1,0,0,0,0,0,0,3,20475.7142857,6,3,6,6_1,27000.0,0,27000.0,0,2,5,423.4,61.0,3.3,0,1,2649.5044604991817,2649.5044604991817,0.0 5788,8262,8261,3,3,36,400,21,50,0,7103,0,2,0,0,2,6,3,5,2.4,2643.66481884,0,0,46660.0,1,2,0,0,4,1,1,1,1,0,0,0,0,1,0,1,19441.6666667,6,3,6,6_1,10000.0,0,10000.0,0,2,4,88.0,26.0,0.0,0,0,981.2979483330303,981.2979483330303,0.0 5789,8283,8282,0,0,84,111,77,50,0,713,0,0,0,0,0,4,0,1,1.0,2887.08525202,0,0,19700.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,19700.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5790,8297,8296,11,11,58,111,63,50,0,7150,0,0,0,188,2,4,2,4,2.5,2671.8038696,0,0,47817.0,1,3,10,8,4,1,0,0,0,0,0,0,1,1,1,0,19126.8,6,3,6,6_0,13000.0,0,0.0,13000,7,14,26.5,19.0,0.0,1,1,1277.8544624482493,0.0,1277.8544624482493 -5791,8300,8299,3,3,44,112,46,71,0,7156,0,0,0,0,1,6,0,2,1.5,2160.8516463000005,2080,0,28704.0,1,2,8,0,3,2,0,0,1,0,0,0,0,0,0,2,19136.0,6,3,6,6_1,3000.0,0,3000.0,0,5,6,0.0,0.0,0.0,0,1,294.38938449990906,294.38938449990906,0.0 +5791,8300,8299,3,3,44,112,46,71,0,7156,0,0,0,0,1,6,0,2,1.5,2160.8516463,2080,0,28704.0,1,2,8,0,3,2,0,0,1,0,0,0,0,0,0,2,19136.0,6,3,6,6_1,3000.0,0,3000.0,0,5,6,0.0,0.0,0.0,0,1,294.38938449990906,294.38938449990906,0.0 5792,8310,8309,0,8,46,400,48,50,2,717,0,220,0,0,2,6,1,3,1.8,2494.35714291,833,7000,36348.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,20193.3333333,6,3,6,6_1,16000.0,0,16000.0,0,6,7,24.0,56.6666666667,3.3,0,1,1570.0767173328484,1570.0767173328484,0.0 5793,8329,8328,1,1,38,111,33,10,1,7203,0,0,0,0,1,5,1,2,1.3,1789.44797677,0,10190,28145.0,1,4,9,7,2,1,0,0,0,0,0,1,0,0,1,0,21650.0,6,3,6,6_0,3888.0,0,0.0,3888,17,0,0.0,30.0,1.1,0,0,382.1767807691379,0.0,382.1767807691379 -5794,8351,8350,10,10,44,111,68,42,0,7236,0,0,0,0,2,2,1,3,1.8,3193.38336501,2059,0,38950.0,1,4,10,8,4,1,0,0,0,0,0,0,1,0,1,0,21638.888888900005,6,3,6,6_0,7681.0,0,0.0,7681,11,11,63.0,37.5,3.3,0,1,755.0153943126925,0.0,755.0153943126925 -5795,8355,8354,0,17,39,111,53,50,0,724,0,0,0,0,2,6,1,3,1.8,1977.90438058,0,0,35086.0,1,4,9,7,4,1,0,0,0,0,0,1,0,0,1,0,19492.222222200002,6,3,6,6_0,5000.0,0,0.0,5000,13,14,122.0,36.6666666667,2.24,0,1,491.48248555701895,0.0,491.48248555701895 +5794,8351,8350,10,10,44,111,68,42,0,7236,0,0,0,0,2,2,1,3,1.8,3193.38336501,2059,0,38950.0,1,4,10,8,4,1,0,0,0,0,0,0,1,0,1,0,21638.8888889,6,3,6,6_0,7681.0,0,0.0,7681,11,11,63.0,37.5,3.3,0,1,755.0153943126925,0.0,755.0153943126925 +5795,8355,8354,0,17,39,111,53,50,0,724,0,0,0,0,2,6,1,3,1.8,1977.90438058,0,0,35086.0,1,4,9,7,4,1,0,0,0,0,0,1,0,0,1,0,19492.2222222,6,3,6,6_0,5000.0,0,0.0,5000,13,14,122.0,36.6666666667,2.24,0,1,491.48248555701895,0.0,491.48248555701895 5796,8388,8387,0,0,82,111,77,70,0,7287,0,0,0,460,0,5,0,1,1.0,3951.08918175,0,0,21281.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21281.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5797,8392,8391,4,4,66,111,74,60,0,7298,0,0,0,0,0,4,0,2,1.5,3823.54015407,1560,0,32265.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,21510.0,6,3,6,6_0,11722.0,0,11672.0,50,1,1,0.0,0.0,0.0,0,0,1152.2315391398754,1147.3167142843051,4.914824855570189 5798,8404,8403,1,1,58,111,52,50,1,7313,0,0,0,0,1,4,0,1,1.0,2717.96213703,0,23500,21157.0,1,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,21157.0,6,3,6,6_0,5000.0,0,5000.0,0,1,1,0.0,0.0,0.0,1,0,491.48248555701895,491.48248555701895,0.0 @@ -5825,9 +5825,9 @@ 5823,8734,8733,2,5,32,400,47,31,0,7758,0,0,0,0,1,4,3,5,2.4,1713.428583,3674,0,48045.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,0,2,20018.75,6,3,6,6_1,15164.0,0,15164.0,0,0,0,0.0,0.0,0.0,0,1,1488.0402088522071,1488.0402088522071,0.0 5824,8741,8740,10,13,63,112,78,50,0,7769,0,0,0,300,0,4,0,2,1.5,1435.25757665,780,0,30700.0,5,3,10,4,3,1,0,0,0,0,1,0,0,0,0,1,20466.6666667,6,3,6,6_0,26000.0,0,26000.0,0,9,13,0.0,0.0,0.0,0,0,2555.7089248964985,2555.7089248964985,0.0 5825,8744,8743,2,18,28,112,63,50,0,7772,0,0,0,0,2,3,0,2,1.5,1888.30513113,0,0,30596.0,1,2,8,0,3,1,0,0,1,0,0,0,0,0,0,1,20397.3333333,6,3,6,6_1,8600.0,0,8600.0,0,5,20,126.0,50.0,3.31,0,1,843.916235566406,843.916235566406,0.0 -5826,8745,8744,10,11,38,221,63,50,0,7773,0,600,0,0,2,4,3,5,2.4,2323.4334695000002,0,0,46404.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,19335.0,6,3,6,6_0,20000.0,0,20000.0,0,8,11,145.5,20.0,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 +5826,8745,8744,10,11,38,221,63,50,0,7773,0,600,0,0,2,4,3,5,2.4,2323.4334695,0,0,46404.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,19335.0,6,3,6,6_0,20000.0,0,20000.0,0,8,11,145.5,20.0,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 5827,8766,8765,5,6,70,111,75,70,0,7797,0,0,80,507,1,3,1,3,1.8,6206.0594331,3640,0,38332.0,5,3,8,6,4,1,0,1,0,0,1,0,0,0,1,0,21295.5555556,6,3,6,6_0,5000.0,0,0.0,5000,7,7,0.0,0.0,0.0,0,0,491.48248555701895,0.0,491.48248555701895 -5828,8767,8766,7,8,52,111,35,20,0,7799,0,450,0,0,2,7,1,3,2.0,1439.26345412,3640,0,40280.0,1,1,8,7,4,3,1,1,0,0,0,1,0,0,0,3,20140.0,6,3,6,6_0,14000.0,0,14000.0,0,6,6,179.0,6.666666666669999,0.0,0,1,1376.150959559653,1376.150959559653,0.0 +5828,8767,8766,7,8,52,111,35,20,0,7799,0,450,0,0,2,7,1,3,2.0,1439.26345412,3640,0,40280.0,1,1,8,7,4,3,1,1,0,0,0,1,0,0,0,3,20140.0,6,3,6,6_0,14000.0,0,14000.0,0,6,6,179.0,6.66666666667,0.0,0,1,1376.150959559653,1376.150959559653,0.0 5829,8770,8769,6,15,47,112,62,71,0,7800,0,350,0,0,3,5,3,5,2.8,1704.00542399,2860,0,55810.0,1,2,7,0,4,3,0,0,1,0,0,0,0,0,0,3,19932.1428571,6,3,6,6_1,30000.0,0,30000.0,0,3,3,607.3,50.0,3.3,0,1,2943.8938449990906,2943.8938449990906,0.0 5830,8774,8773,7,9,51,111,65,50,0,7806,0,0,45,403,2,4,0,2,1.5,2497.90095483,2600,0,30448.0,1,3,8,7,3,1,0,1,0,0,0,1,0,0,1,0,20298.6666667,6,3,6,6_0,714.0,0,0.0,714,8,12,0.0,0.0,0.0,1,0,70.1836989375423,0.0,70.1836989375423 5831,8778,8777,0,0,42,111,63,50,0,781,0,0,0,455,1,1,0,1,1.0,2700.88271129,0,0,20317.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,20317.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 @@ -5850,28 +5850,28 @@ 5848,8920,8919,9,25,40,111,38,10,0,7995,0,0,200,0,2,4,3,5,2.4,1002.62228627,645,0,49287.0,1,3,7,6,4,1,0,1,0,0,1,0,0,0,1,0,20536.25,6,3,6,6_0,3000.0,0,0.0,3000,14,12,34.5,28.0,1.1,1,0,294.88949133421136,0.0,294.88949133421136 5849,8922,8921,9,11,42,112,34,12,0,7998,0,200,0,0,2,4,2,4,2.3,1950.33675255,6043,0,47098.0,1,2,6,0,4,2,0,0,1,0,0,0,0,0,0,2,20477.3913043,6,3,6,6_1,19672.0,0,19672.0,0,5,11,261.0,30.0,3.3,0,1,1930.409323960737,1930.409323960737,0.0 5850,8924,8923,7,11,43,111,55,50,0,8,0,550,0,423,1,4,0,1,1.0,3042.17256429,2600,0,20618.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,20618.0,6,3,6,6_0,14672.0,0,14672.0,0,2,10,0.0,28.0,3.3,0,1,1442.2062056185164,1442.2062056185164,0.0 -5851,8938,8937,7,8,32,111,47,31,0,8016,0,400,0,0,2,5,2,4,2.1,2515.0382658000003,6271,0,42816.0,1,2,6,5,4,2,0,0,0,0,1,0,0,0,1,1,20388.571428599997,6,3,6,6_0,23000.0,0,15000.0,8000,5,5,76.4,32.5,3.3,0,1,2260.819433562287,1474.4474566710567,786.3719768912302 +5851,8938,8937,7,8,32,111,47,31,0,8016,0,400,0,0,2,5,2,4,2.1,2515.0382658,6271,0,42816.0,1,2,6,5,4,2,0,0,0,0,1,0,0,0,1,1,20388.5714286,6,3,6,6_0,23000.0,0,15000.0,8000,5,5,76.4,32.5,3.3,0,1,2260.819433562287,1474.4474566710567,786.3719768912302 5852,8942,8941,2,5,49,111,65,50,0,8021,0,0,90,338,1,5,0,2,1.5,3527.43565051,0,0,29602.0,1,3,8,6,5,1,0,1,0,0,1,0,0,0,1,0,19734.6666667,6,3,6,6_0,13000.0,0,0.0,13000,4,4,61.6,16.0,3.3,0,1,1277.8544624482493,0.0,1277.8544624482493 5853,8952,8951,0,0,53,112,38,50,0,8037,0,0,0,0,1,4,0,2,1.5,5149.56157195,0,0,29566.0,1,1,9,2,3,0,0,0,0,1,0,0,0,0,0,0,19710.6666667,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5854,8953,8952,0,0,55,111,67,50,0,8038,0,0,0,310,1,2,0,1,1.0,1300.78782935,0,0,20940.0,1,3,7,5,1,0,0,0,0,0,1,0,0,0,0,0,20940.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,30.0,5.56,0,0,0.0,0.0,0.0 5855,8966,8965,2,4,30,111,52,50,0,8056,0,150,0,0,1,3,0,1,1.0,3196.74054898,0,0,20239.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,0,1,20239.0,6,3,6,6_0,15000.0,0,15000.0,0,4,4,94.0,30.0,3.3,0,1,1474.4474566710567,1474.4474566710567,0.0 5856,8977,8976,4,7,56,111,47,50,0,8069,0,0,100,0,2,6,1,3,2.0,1147.13878585,0,0,40208.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,1,0,20104.0,6,3,6,6_0,18000.0,0,0.0,18000,9,10,86.4,19.3333333333,3.3,0,1,1769.3369480052684,0.0,1769.3369480052684 5857,8982,8981,2,2,51,300,38,50,0,8077,0,0,0,0,1,6,0,2,1.5,1150.38070441,2132,0,30314.0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,20209.3333333,6,3,6,6_1,12000.0,0,12000.0,0,2,2,0.0,0.0,0.0,0,0,1177.5575379996362,1177.5575379996362,0.0 -5858,8997,8996,7,7,66,112,77,50,0,8092,0,0,0,0,0,6,0,1,1.0,2466.7940550000003,2404,0,20045.0,5,1,9,3,1,1,0,0,0,1,0,0,0,0,1,0,20045.0,6,3,6,6_0,4500.0,0,0.0,4500,8,8,0.0,0.0,0.0,0,0,442.3342370013171,0.0,442.3342370013171 +5858,8997,8996,7,7,66,112,77,50,0,8092,0,0,0,0,0,6,0,1,1.0,2466.794055,2404,0,20045.0,5,1,9,3,1,1,0,0,0,1,0,0,0,0,1,0,20045.0,6,3,6,6_0,4500.0,0,0.0,4500,8,8,0.0,0.0,0.0,0,0,442.3342370013171,0.0,442.3342370013171 5859,9003,9002,17,17,72,400,86,71,0,810,0,0,0,0,0,7,0,1,1.0,2755.08660147,0,0,21526.0,6,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,21526.0,6,3,6,6_1,6294.0,0,0.0,6294,17,17,0.0,0.0,0.0,0,0,617.6289286808092,0.0,617.6289286808092 5860,9007,9006,3,3,38,111,46,31,0,8104,0,200,0,0,2,5,2,4,2.1,1927.34866566,0,0,40925.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,19488.0952381,6,3,6,6_0,8336.0,0,8336.0,0,2,4,0.0,66.6666666667,5.5,0,1,819.3995999206619,819.3995999206619,0.0 5861,9011,9010,11,13,36,112,52,44,0,811,0,180,0,0,2,5,3,5,2.4,1880.47688238,1040,0,49112.0,1,2,7,2,4,2,0,1,0,1,0,0,0,0,0,2,20463.3333333,6,3,6,6_0,20000.0,0,20000.0,0,8,11,145.5,20.0,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 -5862,9027,9026,3,3,58,111,75,70,0,8133,0,0,0,0,0,5,0,2,1.5,2357.3534928000004,2772,0,30242.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,20161.3333333,6,3,6,6_0,22000.0,0,22000.0,0,2,2,0.0,0.0,0.0,0,0,2162.522936450883,2162.522936450883,0.0 +5862,9027,9026,3,3,58,111,75,70,0,8133,0,0,0,0,0,5,0,2,1.5,2357.3534928,2772,0,30242.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,20161.3333333,6,3,6,6_0,22000.0,0,22000.0,0,2,2,0.0,0.0,0.0,0,0,2162.522936450883,2162.522936450883,0.0 5863,9028,9027,16,16,40,300,62,50,0,8135,0,240,0,0,2,6,3,5,2.4,1900.04067531,2601,0,51733.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21555.4166667,6,3,6,6_1,30000.0,0,30000.0,0,10,14,78.6,11.6,3.3,0,1,2943.8938449990906,2943.8938449990906,0.0 5864,9039,9038,11,11,38,111,42,43,0,8150,0,100,0,399,2,3,1,3,2.0,3863.45430896,2341,0,40727.0,1,3,8,7,4,1,0,1,0,0,0,1,0,0,0,1,20363.5,6,3,6,6_0,20000.0,0,20000.0,0,8,9,132.5,16.6666666667,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 5865,9041,9040,3,7,70,111,72,70,0,8154,0,0,0,0,0,3,0,1,1.0,2264.48128639,227,0,19958.0,5,1,7,6,1,1,0,0,0,0,1,0,0,0,0,1,19958.0,6,3,6,6_0,10000.0,0,10000.0,0,8,0,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 5866,9044,9043,12,12,65,111,74,41,0,8161,0,0,0,0,0,4,0,2,1.5,2062.31792046,2704,0,31095.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,20730.0,6,3,6,6_0,26000.0,0,26000.0,0,9,13,0.0,0.0,0.0,0,0,2555.7089248964985,2555.7089248964985,0.0 -5867,9049,9048,0,20,31,112,63,42,2,817,0,0,200,0,2,5,1,3,1.8,2063.55668121,4189,300,35302.0,1,3,7,0,4,2,0,1,1,0,0,0,0,1,1,1,19612.222222200002,6,3,6,6_1,14000.0,0,9000.0,5000,7,15,0.0,6.666666666669999,3.3,0,1,1373.8171276662424,883.1681534997272,490.64897416651513 +5867,9049,9048,0,20,31,112,63,42,2,817,0,0,200,0,2,5,1,3,1.8,2063.55668121,4189,300,35302.0,1,3,7,0,4,2,0,1,1,0,0,0,0,1,1,1,19612.2222222,6,3,6,6_1,14000.0,0,9000.0,5000,7,15,0.0,6.66666666667,3.3,0,1,1373.8171276662424,883.1681534997272,490.64897416651513 5868,9073,9072,0,11,23,221,34,20,0,8206,0,0,0,0,1,2,0,1,1.0,5725.43197789,1987,0,19719.0,1,3,1,2,1,1,0,0,0,1,0,0,0,0,0,1,19719.0,6,3,6,6_0,32000.0,0,32000.0,0,6,10,0.0,80.0,5.56,0,0,3145.487907564921,3145.487907564921,0.0 5869,9074,9073,2,7,23,111,63,31,0,8207,0,0,0,520,2,3,0,2,1.5,3182.27641561,2761,0,29469.0,1,3,7,5,3,1,0,0,0,0,1,0,0,0,0,1,19646.0,6,3,6,6_0,20672.0,0,20672.0,0,1,7,0.0,0.0,0.0,0,1,2031.985188286939,2031.985188286939,0.0 5870,9118,9117,7,9,49,221,47,31,0,8265,0,0,0,0,2,4,2,4,2.5,5612.89293186,4420,0,47961.0,1,1,1,2,4,2,0,0,0,1,0,0,0,0,1,1,19184.4,6,3,6,6_0,22036.0,0,13000.0,9036,5,5,81.5,21.25,3.3,0,1,2166.0616103468938,1277.8544624482493,888.2071478986446 5871,9125,9124,3,8,67,111,78,50,0,8274,0,0,0,380,0,3,0,2,1.5,3356.31869397,0,0,30840.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,20560.0,6,3,6,6_0,10000.0,0,10000.0,0,10,11,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 -5872,9127,9126,0,0,37,111,68,71,0,8276,0,0,0,420,1,3,3,4,2.1,5809.85411924,0,0,40924.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,19487.619047599997,6,3,6,6_0,0.0,0,0.0,0,0,0,25.2,12.5,0.0,0,0,0.0,0.0,0.0 +5872,9127,9126,0,0,37,111,68,71,0,8276,0,0,0,420,1,3,3,4,2.1,5809.85411924,0,0,40924.0,1,3,10,8,2,0,0,0,0,0,0,0,1,1,0,0,19487.6190476,6,3,6,6_0,0.0,0,0.0,0,0,0,25.2,12.5,0.0,0,0,0.0,0.0,0.0 5873,9129,9128,23,24,62,112,78,50,0,8279,0,0,0,0,0,3,0,2,1.5,2446.60323474,0,0,29638.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,0,2,19758.6666667,6,3,6,6_1,10000.0,0,10000.0,0,19,23,0.0,0.0,0.0,0,0,981.2979483330303,981.2979483330303,0.0 5874,9134,9133,1,8,52,111,46,60,2,8289,0,150,0,324,1,1,0,1,1.0,3568.12367612,0,9000,21283.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,21283.0,6,3,6,6_0,18000.0,0,18000.0,0,5,7,152.0,30.0,3.3,0,1,1769.3369480052684,1769.3369480052684,0.0 5875,9145,9144,0,0,48,111,68,50,0,8302,0,0,0,234,1,3,0,1,1.0,1539.3437649,0,0,20437.0,1,3,7,5,1,0,0,0,0,0,1,0,0,0,0,0,20437.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,30.0,1.1,0,0,0.0,0.0,0.0 @@ -5883,18 +5883,18 @@ 5881,9184,9183,4,8,65,120,72,60,0,8359,0,0,0,0,0,4,0,2,1.5,5277.3184361,2340,0,31091.0,5,1,0,2,3,2,0,0,0,1,0,0,0,0,1,0,20727.3333333,6,3,6,6_0,12000.0,0,0.0,12000,9,9,0.0,0.0,0.0,0,0,1179.5579653368454,0.0,1179.5579653368454 5882,9187,9186,5,16,80,111,78,50,0,8362,0,0,0,449,0,3,0,2,1.5,2692.91972359,0,0,31945.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,1,0,21296.6666667,6,3,6,6_0,3500.0,0,0.0,3500,16,17,0.0,0.0,0.0,0,0,344.03773988991327,0.0,344.03773988991327 5883,9190,9189,0,0,61,111,77,70,0,8368,0,0,0,0,0,4,0,1,1.0,2291.42383278,0,0,19960.0,5,3,5,4,1,0,0,0,0,0,1,0,0,0,0,0,19960.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5884,9192,9191,0,13,65,112,74,50,0,8370,0,0,970,0,1,7,1,3,2.0,912.3120808110001,5356,0,38501.0,5,1,9,1,4,2,0,1,0,1,0,0,0,0,2,0,19250.5,6,3,6,6_0,15323.0,0,0.0,15323,7,11,0.0,0.0,0.0,0,1,1506.1972252380403,0.0,1506.1972252380403 +5884,9192,9191,0,13,65,112,74,50,0,8370,0,0,970,0,1,7,1,3,2.0,912.312080811,5356,0,38501.0,5,1,9,1,4,2,0,1,0,1,0,0,0,0,2,0,19250.5,6,3,6,6_0,15323.0,0,0.0,15323,7,11,0.0,0.0,0.0,0,1,1506.1972252380403,0.0,1506.1972252380403 5885,9204,9203,12,15,65,400,72,50,0,839,0,0,0,0,0,5,0,2,1.5,1606.98978053,6570,0,29970.0,5,1,0,1,3,2,0,0,0,1,0,0,0,0,0,2,19980.0,6,3,6,6_0,18000.0,0,18000.0,0,12,12,0.0,0.0,0.0,0,0,1769.3369480052684,1769.3369480052684,0.0 5886,9209,9208,12,12,72,111,78,70,0,84,0,0,0,0,0,4,0,2,1.5,1717.5730622,0,0,30397.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,20264.6666667,6,3,6,6_0,4500.0,0,0.0,4500,8,9,0.0,0.0,0.0,0,0,442.3342370013171,0.0,442.3342370013171 5887,9210,9209,9,9,71,111,78,70,0,8400,0,0,0,241,0,3,0,2,1.5,2287.81277992,0,0,30701.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,20467.3333333,6,3,6,6_0,10000.0,0,10000.0,0,10,11,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 -5888,9217,9216,2,14,44,112,55,50,0,8408,0,250,332,0,2,5,3,5,2.6,898.143286385,0,0,52107.0,1,2,6,0,4,2,0,1,1,0,0,0,0,1,1,1,20041.153846200003,6,3,6,6_1,33000.0,0,20000.0,13000,2,8,235.9,41.0,3.3,1,1,3238.283229499,1962.5958966660605,1275.6873328329393 +5888,9217,9216,2,14,44,112,55,50,0,8408,0,250,332,0,2,5,3,5,2.6,898.143286385,0,0,52107.0,1,2,6,0,4,2,0,1,1,0,0,0,0,1,1,1,20041.1538462,6,3,6,6_1,33000.0,0,20000.0,13000,2,8,235.9,41.0,3.3,1,1,3238.283229499,1962.5958966660605,1275.6873328329393 5889,9224,9223,2,2,81,111,74,50,0,8418,0,0,0,0,0,4,0,2,1.5,1733.79224452,0,0,30178.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,20118.6666667,6,3,6,6_0,10884.0,0,0.0,10884,4,4,0.0,0.0,0.0,0,0,1069.8590745605188,0.0,1069.8590745605188 5890,9225,9224,1,12,44,112,53,50,2,8419,0,100,60,0,2,5,2,4,2.3,4765.72075126,2420,1000,49308.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,1,1,21438.2608696,6,3,6,6_0,33750.0,0,23750.0,10000,3,12,36.8,20.0,0.0,0,1,3317.506777509878,2334.54180639584,982.9649711140379 5891,9234,9233,5,10,56,400,69,71,0,8429,0,128,775,0,2,5,0,2,1.5,2499.69662517,3058,0,29990.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,1,1,19993.3333333,6,3,6,6_1,32000.0,0,20000.0,12000,2,16,0.0,20.0,0.0,0,1,3140.1534346656968,1962.5958966660605,1177.5575379996362 5892,9246,9245,4,4,59,211,75,50,0,8441,0,0,200,0,1,4,2,4,2.3,1612.3618592,0,0,45040.0,5,3,2,3,4,2,0,1,0,1,0,0,0,0,1,1,19582.6086957,6,3,6,6_0,18000.0,0,0.0,18000,4,4,0.0,0.0,0.0,0,0,1769.3369480052684,0.0,1769.3369480052684 5893,9265,9264,0,0,24,111,34,10,0,847,0,0,0,661,1,2,0,2,1.5,4281.28888053,0,0,29935.0,1,3,10,8,3,0,0,0,0,0,0,0,1,1,0,0,19956.6666667,6,3,6,6_0,0.0,0,0.0,0,0,0,97.3,67.0,5.56,0,0,0.0,0.0,0.0 5894,9279,9278,15,15,73,111,78,71,0,849,0,0,0,0,0,6,0,2,1.5,2754.99502746,3380,0,30317.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,0,2,20211.3333333,6,3,6,6_0,15000.0,0,15000.0,0,11,11,0.0,0.0,0.0,0,0,1474.4474566710567,1474.4474566710567,0.0 -5895,9284,9283,1,15,47,221,63,50,0,8494,0,99999,0,0,2,4,1,3,1.8,1350.39466703,0,0,35204.0,1,2,1,2,4,2,0,0,0,1,0,0,0,0,0,2,19557.777777799998,6,3,6,6_0,10000.0,0,10000.0,0,10,13,68.0,58.3333333333,3.3,1,1,982.9649711140379,982.9649711140379,0.0 +5895,9284,9283,1,15,47,221,63,50,0,8494,0,99999,0,0,2,4,1,3,1.8,1350.39466703,0,0,35204.0,1,2,1,2,4,2,0,0,0,1,0,0,0,0,0,2,19557.7777778,6,3,6,6_0,10000.0,0,10000.0,0,10,13,68.0,58.3333333333,3.3,1,1,982.9649711140379,982.9649711140379,0.0 5896,9298,9297,12,12,62,112,77,70,0,8515,0,0,0,0,0,5,0,1,1.0,4365.08195216,0,0,19725.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,19725.0,6,3,6,6_1,12460.0,0,0.0,12460,2,14,0.0,0.0,0.0,0,0,1222.6972436229557,0.0,1222.6972436229557 5897,9307,9306,0,0,82,111,77,71,0,8526,0,0,0,258,0,2,0,1,1.0,3546.06114323,0,0,21653.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21653.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5898,9316,9315,7,7,41,300,34,41,0,854,0,500,0,0,1,5,0,2,1.5,2196.71744699,7364,0,30010.0,1,2,0,0,3,2,1,1,1,0,0,0,0,0,0,2,20006.6666667,6,3,6,6_1,3000.0,0,3000.0,0,5,6,0.0,0.0,0.0,0,1,294.38938449990906,294.38938449990906,0.0 @@ -5904,25 +5904,25 @@ 5902,9387,9386,1,8,26,211,69,44,0,8638,0,300,0,0,1,2,0,1,1.0,2464.24589313,2496,0,19860.0,1,3,2,3,1,1,0,1,0,1,0,0,0,0,0,1,19860.0,6,3,6,6_0,25000.0,0,25000.0,0,8,8,54.5,40.0,3.31,0,1,2457.4124277850947,2457.4124277850947,0.0 5903,9400,9399,2,5,34,112,53,10,0,866,0,0,0,0,2,5,0,2,1.5,1551.86503997,3169,0,30337.0,1,4,7,0,3,1,0,0,1,0,0,0,0,0,0,1,20224.6666667,6,3,6,6_1,10000.0,0,10000.0,0,3,4,0.0,0.0,0.0,0,0,981.2979483330303,981.2979483330303,0.0 5904,9434,9433,1,3,27,111,33,43,2,8708,0,10,0,313,2,1,0,2,1.5,3424.77869135,0,16000,30730.0,1,3,8,7,3,1,0,1,0,0,0,1,0,0,0,1,20486.6666667,6,3,6,6_0,7287.0,0,7287.0,0,1,4,68.7,37.0,3.3,0,1,716.2865744507994,716.2865744507994,0.0 -5905,9447,9446,3,14,33,112,67,71,0,8733,0,150,0,338,1,4,2,4,2.1,5848.07651435,5200,0,44336.0,1,3,9,3,4,1,0,1,0,1,0,0,0,0,0,1,21112.380952400003,6,3,6,6_0,25000.0,0,25000.0,0,2,5,253.5,63.75,0.0,0,0,2457.4124277850947,2457.4124277850947,0.0 +5905,9447,9446,3,14,33,112,67,71,0,8733,0,150,0,338,1,4,2,4,2.1,5848.07651435,5200,0,44336.0,1,3,9,3,4,1,0,1,0,1,0,0,0,0,0,1,21112.3809524,6,3,6,6_0,25000.0,0,25000.0,0,2,5,253.5,63.75,0.0,0,0,2457.4124277850947,2457.4124277850947,0.0 5906,9449,9448,0,0,84,111,77,70,0,8736,0,0,0,0,0,4,0,1,1.0,3662.44854182,0,0,19785.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,19785.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5907,9472,9471,15,15,50,111,42,20,0,8777,0,0,0,0,1,4,1,2,1.5,1159.01135099,0,0,30889.0,1,3,7,5,2,1,0,0,0,0,1,0,0,0,0,1,20592.6666667,6,3,6,6_0,15000.0,0,15000.0,0,10,10,0.0,0.0,0.0,0,1,1474.4474566710567,1474.4474566710567,0.0 5908,9491,9490,4,11,55,112,11,50,0,8801,0,170,0,0,4,5,3,5,3.0,1203.45362442,0,0,60855.0,1,1,8,0,4,3,0,1,1,0,0,0,0,0,0,3,20285.0,6,3,6,6_1,35000.0,0,35000.0,0,2,3,77.7,12.0,3.31,1,1,3434.5428191656056,3434.5428191656056,0.0 5909,9505,9504,2,2,28,111,46,20,0,8825,0,340,0,0,2,2,0,2,1.5,2283.95007748,2132,0,30110.0,1,3,6,5,3,2,0,1,0,0,1,0,0,0,0,2,20073.3333333,6,3,6,6_0,21500.0,0,21500.0,0,3,3,59.5,31.0,3.3,0,1,2113.3746878951815,2113.3746878951815,0.0 5910,9506,9505,0,6,52,112,22,71,0,8826,0,60,0,0,2,4,2,4,2.3,2908.11182858,0,0,45934.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,19971.3043478,6,3,6,6_1,15000.0,0,15000.0,0,4,6,34.0,25.3333333333,3.3,1,1,1471.9469224995453,1471.9469224995453,0.0 -5911,9518,9517,7,7,48,111,54,31,0,884,0,99999,0,0,1,5,1,2,1.3,2656.06099778,2600,0,26682.0,1,4,9,7,2,2,0,1,0,0,0,1,0,0,1,1,20524.615384599998,6,3,6,6_0,19843.0,0,17343.0,2500,8,8,0.0,20.0,3.3,0,1,1950.4973921815854,1704.756149403076,245.74124277850947 +5911,9518,9517,7,7,48,111,54,31,0,884,0,99999,0,0,1,5,1,2,1.3,2656.06099778,2600,0,26682.0,1,4,9,7,2,2,0,1,0,0,0,1,0,0,1,1,20524.6153846,6,3,6,6_0,19843.0,0,17343.0,2500,8,8,0.0,20.0,3.3,0,1,1950.4973921815854,1704.756149403076,245.74124277850947 5912,9544,9543,0,0,84,400,75,33,0,8875,0,0,0,0,0,3,0,1,1.0,4989.73688454,0,0,20593.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,20593.0,6,3,6,6_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5913,9567,9566,5,10,78,111,75,44,0,8905,0,0,0,187,0,3,0,1,1.0,2944.86455983,0,0,20497.0,5,3,8,7,1,1,0,0,0,0,0,1,0,1,0,1,20497.0,6,3,6,6_0,4500.0,0,4500.0,0,6,7,0.0,0.0,0.0,0,0,442.3342370013171,442.3342370013171,0.0 5914,9578,9577,2,11,25,111,67,42,0,8922,0,0,100,0,2,4,0,2,1.5,1503.72050462,0,0,31093.0,1,2,7,5,3,1,0,1,0,0,1,0,0,1,1,0,20728.6666667,6,3,6,6_0,20000.0,0,0.0,20000,2,11,0.0,0.0,0.0,0,1,1965.9299422280758,0.0,1965.9299422280758 5915,9583,9582,3,3,51,112,43,20,0,8928,0,0,25,0,3,6,2,4,2.5,986.86986716,7521,0,53680.0,1,2,10,0,4,1,1,1,1,0,0,0,0,0,1,0,21472.0,6,3,6,6_1,21000.0,0,21000.0,0,5,6,57.0,26.25,3.3,0,1,2060.725691499363,2060.725691499363,0.0 5916,9585,9584,2,2,45,112,63,50,0,893,0,500,0,0,3,5,2,4,2.5,1159.79853295,4488,0,49803.0,1,1,10,0,4,2,0,0,1,0,0,0,0,0,0,2,19921.2,6,3,6,6_1,10000.0,0,10000.0,0,8,8,198.0,37.5,0.0,0,1,981.2979483330303,981.2979483330303,0.0 -5917,9588,9587,2,2,64,112,72,10,0,8938,0,500,0,0,1,5,2,4,2.1,2082.2397352000003,0,0,42228.0,5,1,9,3,4,2,0,1,0,1,0,0,0,0,0,2,20108.571428599997,6,3,6,6_0,54781.0,0,54781.0,0,2,17,0.0,0.0,0.0,0,1,5384.780408259811,5384.780408259811,0.0 -5918,9597,9596,2,10,28,211,55,10,0,8948,0,730,0,0,2,5,1,3,1.8,5390.25667371,1560,0,34420.0,1,2,2,3,4,2,0,1,0,1,0,0,0,0,0,2,19122.222222200002,6,3,6,6_0,2000.0,0,2000.0,0,7,14,96.0,10.6666666667,3.31,1,0,196.59299422280756,196.59299422280756,0.0 +5917,9588,9587,2,2,64,112,72,10,0,8938,0,500,0,0,1,5,2,4,2.1,2082.2397352,0,0,42228.0,5,1,9,3,4,2,0,1,0,1,0,0,0,0,0,2,20108.5714286,6,3,6,6_0,54781.0,0,54781.0,0,2,17,0.0,0.0,0.0,0,1,5384.780408259811,5384.780408259811,0.0 +5918,9597,9596,2,10,28,211,55,10,0,8948,0,730,0,0,2,5,1,3,1.8,5390.25667371,1560,0,34420.0,1,2,2,3,4,2,0,1,0,1,0,0,0,0,0,2,19122.2222222,6,3,6,6_0,2000.0,0,2000.0,0,7,14,96.0,10.6666666667,3.31,1,0,196.59299422280756,196.59299422280756,0.0 5919,9613,9612,2,5,35,112,63,43,0,8973,0,150,0,0,2,5,2,4,2.1,1735.88916632,0,0,44511.0,1,2,8,0,4,2,0,0,1,0,0,0,0,0,0,2,21195.7142857,6,3,6,6_1,25000.0,0,25000.0,0,2,5,276.0,46.6666666667,3.3,0,1,2453.2448708325755,2453.2448708325755,0.0 5920,9615,9614,31,31,78,111,86,70,0,8978,0,0,0,0,0,5,0,1,1.0,2918.71803253,0,0,20324.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,20324.0,6,3,6,6_0,16666.0,0,0.0,16666,24,24,0.0,0.0,0.0,0,0,1638.2094208586557,0.0,1638.2094208586557 5921,9622,9621,3,3,71,111,74,70,0,8988,0,0,0,0,0,3,0,2,1.5,2216.39384988,0,0,29644.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,19762.6666667,6,3,6,6_0,19000.0,0,15000.0,4000,4,6,0.0,0.0,0.0,0,0,1867.633445116672,1474.4474566710567,393.1859884456151 -5922,9623,9622,4,4,34,112,53,31,0,899,0,0,400,0,2,4,2,4,2.1,2811.32201326,0,0,41898.0,1,2,9,2,4,2,0,0,0,1,0,0,0,0,2,0,19951.428571400003,6,3,6,6_0,11000.0,0,0.0,11000,3,3,72.6,25.5,3.3,0,1,1081.2614682254416,0.0,1081.2614682254416 -5923,9628,9627,2,5,57,111,75,50,0,8996,0,0,0,0,0,5,1,3,1.8,1353.13169212,0,0,39001.0,5,2,9,7,4,2,0,0,0,0,0,1,0,0,2,0,21667.222222200002,6,3,6,6_0,4952.0,0,0.0,4952,1,5,0.0,0.0,0.0,0,0,486.7642536956716,0.0,486.7642536956716 +5922,9623,9622,4,4,34,112,53,31,0,899,0,0,400,0,2,4,2,4,2.1,2811.32201326,0,0,41898.0,1,2,9,2,4,2,0,0,0,1,0,0,0,0,2,0,19951.4285714,6,3,6,6_0,11000.0,0,0.0,11000,3,3,72.6,25.5,3.3,0,1,1081.2614682254416,0.0,1081.2614682254416 +5923,9628,9627,2,5,57,111,75,50,0,8996,0,0,0,0,0,5,1,3,1.8,1353.13169212,0,0,39001.0,5,2,9,7,4,2,0,0,0,0,0,1,0,0,2,0,21667.2222222,6,3,6,6_0,4952.0,0,0.0,4952,1,5,0.0,0.0,0.0,0,0,486.7642536956716,0.0,486.7642536956716 5924,9637,9636,14,40,41,111,37,70,0,9005,0,0,25,435,1,2,0,1,1.0,3121.93389048,0,0,21603.0,1,3,8,7,1,2,0,0,0,0,0,1,0,0,2,0,21603.0,6,3,6,6_0,5000.0,0,0.0,5000,3,17,30.5,50.0,3.3,0,0,491.48248555701895,0.0,491.48248555701895 5925,9639,9638,4,9,36,111,53,50,0,9007,0,290,0,0,2,4,2,4,2.1,1284.52497616,2978,0,44165.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,21030.952381,6,3,6,6_0,20000.0,0,20000.0,0,5,9,229.5,47.5,3.3,0,1,1965.9299422280758,1965.9299422280758,0.0 5926,9648,9647,1,3,53,112,54,50,0,9018,0,0,0,0,2,6,0,2,1.5,2112.35371447,6828,0,31988.0,1,1,7,1,3,2,0,0,0,1,0,0,0,0,0,2,21325.3333333,6,3,6,6_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,0,1,1965.9299422280758,1965.9299422280758,0.0 @@ -5940,7 +5940,7 @@ 5938,9754,9753,15,25,73,111,77,70,0,9160,0,0,0,0,0,4,0,2,1.5,1592.49290515,0,0,30860.0,5,4,9,7,3,2,0,0,0,0,0,1,0,0,1,1,20573.3333333,6,3,6,6_0,5875.0,0,2875.0,3000,16,23,0.0,0.0,0.0,0,0,577.4919205294973,282.6024291952859,294.88949133421136 5939,9758,9757,0,22,61,112,37,41,0,9165,0,500,120,0,2,8,3,5,3.0,1213.54066708,5197,0,62492.0,1,1,7,0,4,3,0,0,1,0,0,0,0,0,2,1,20830.6666667,6,3,6,6_1,6500.0,0,0.0,6500,13,13,145.0,27.5,3.31,0,1,637.8436664164697,0.0,637.8436664164697 5940,9763,9762,5,6,47,111,38,31,0,9172,0,125,0,0,2,6,2,4,2.1,3076.0315031,0,0,45404.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,21620.952381,6,3,6,6_0,15000.0,0,15000.0,0,6,7,120.6,25.0,3.3,0,1,1474.4474566710567,1474.4474566710567,0.0 -5941,9771,9770,4,13,31,212,64,50,0,9186,0,170,0,0,2,4,2,4,2.1,1202.38401971,0,0,44672.0,1,2,2,0,4,3,0,1,1,0,0,0,0,0,1,2,21272.380952400003,6,3,6,6_1,25000.0,0,25000.0,0,2,14,116.5,24.5,3.3,0,1,2453.2448708325755,2453.2448708325755,0.0 +5941,9771,9770,4,13,31,212,64,50,0,9186,0,170,0,0,2,4,2,4,2.1,1202.38401971,0,0,44672.0,1,2,2,0,4,3,0,1,1,0,0,0,0,0,1,2,21272.3809524,6,3,6,6_1,25000.0,0,25000.0,0,2,14,116.5,24.5,3.3,0,1,2453.2448708325755,2453.2448708325755,0.0 5942,9772,9771,3,7,48,112,52,50,0,9187,0,310,0,0,2,5,2,4,2.5,1628.34142223,0,0,52256.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,0,2,20902.4,6,3,6,6_1,15000.0,0,15000.0,0,4,6,34.0,25.3333333333,3.3,1,1,1471.9469224995453,1471.9469224995453,0.0 5943,9775,9774,0,15,49,112,63,50,0,9191,0,250,0,0,2,3,1,3,2.0,1299.38567461,0,0,41603.0,1,1,9,0,4,4,0,1,1,0,0,0,0,0,0,4,20801.5,6,3,6,6_1,26000.0,0,26000.0,0,10,14,165.0,32.0,3.3,0,1,2551.3746656658786,2551.3746656658786,0.0 5944,9777,9776,5,7,29,120,33,10,0,9193,0,600,0,0,2,5,2,4,2.1,1685.56463351,0,0,44603.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,0,3,21239.5238095,6,3,6,6_1,21154.0,0,21154.0,0,1,1,143.0,35.0,3.31,1,1,2075.8376799036923,2075.8376799036923,0.0 @@ -5950,7 +5950,7 @@ 5948,9803,9802,1,2,62,300,75,41,2,9231,0,0,0,0,0,7,0,2,1.5,2155.43163087,0,13000,30518.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,20345.3333333,6,3,6,6_1,29191.0,0,29191.0,0,1,2,0.0,0.0,0.0,0,0,2864.5068409789487,2864.5068409789487,0.0 5949,9805,9804,17,17,75,112,75,50,0,9238,0,0,0,0,0,5,0,2,1.5,2076.15365609,62,0,29199.0,5,1,9,3,3,1,0,0,0,1,0,0,0,0,1,0,19466.0,6,3,6,6_0,500.0,0,0.0,500,18,18,0.0,0.0,0.0,0,0,49.14824855570189,0.0,49.14824855570189 5950,9810,9809,0,0,70,300,74,41,0,9248,0,0,0,0,0,4,0,2,1.5,2660.37814994,0,0,31080.0,5,2,0,0,3,0,0,0,1,0,0,0,0,0,0,0,20720.0,6,3,6,6_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5951,9811,9810,1,1,40,111,63,71,1,925,0,110,0,0,2,3,2,4,2.3,3149.92089063,2080,16000,47163.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,20505.6521739,6,3,6,6_0,34000.0,0,34000.0,0,1,1,0.0,6.666666666669999,0.0,1,0,3342.080901787729,3342.080901787729,0.0 +5951,9811,9810,1,1,40,111,63,71,1,925,0,110,0,0,2,3,2,4,2.3,3149.92089063,2080,16000,47163.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,20505.6521739,6,3,6,6_0,34000.0,0,34000.0,0,1,1,0.0,6.66666666667,0.0,1,0,3342.080901787729,3342.080901787729,0.0 5952,9812,9811,4,5,69,111,75,60,0,9250,0,0,0,0,0,3,0,1,1.0,2313.97102769,0,0,19803.0,5,1,7,6,1,1,0,0,0,0,1,0,0,0,0,1,19803.0,6,3,6,6_0,10000.0,0,10000.0,0,8,0,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 5953,9826,9825,1,2,58,112,56,70,2,9271,0,40,0,0,1,4,0,2,1.5,1158.02512509,4540,12450,29300.0,1,1,6,1,3,1,0,1,0,1,0,0,0,0,0,1,19533.3333333,6,3,6,6_0,24500.0,0,24500.0,0,2,2,0.0,0.0,0.0,1,0,2408.264179229393,2408.264179229393,0.0 5954,9828,9827,7,7,76,111,74,41,0,9274,0,0,0,0,0,7,0,2,1.5,1297.28746732,0,0,31413.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,20942.0,6,3,6,6_0,10000.0,0,10000.0,0,7,7,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 @@ -5966,16 +5966,16 @@ 5964,9936,9935,1,13,32,112,62,50,2,9426,0,0,250,503,1,2,0,1,1.0,3731.92534191,0,1000,21317.0,1,3,10,2,1,1,0,1,0,1,0,0,0,0,1,0,21317.0,6,3,6,6_0,12000.0,0,0.0,12000,2,14,0.0,0.0,0.0,0,1,1179.5579653368454,0.0,1179.5579653368454 5965,9942,9941,7,7,61,111,75,50,0,9439,0,0,0,0,0,4,0,2,1.5,2400.46739332,2084,0,32262.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,21508.0,6,3,6,6_0,13000.0,0,10000.0,3000,4,9,0.0,0.0,0.0,0,0,1277.8544624482493,982.9649711140379,294.88949133421136 5966,9943,9942,0,0,76,111,72,70,0,9440,0,0,0,470,0,3,0,1,1.0,3399.51647946,0,0,19440.0,5,3,6,4,1,0,0,0,0,0,1,0,0,0,0,0,19440.0,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -5967,9950,9949,0,10,35,112,48,43,2,945,0,500,120,0,2,4,2,4,2.1,3105.8130184,2600,5000,44147.0,1,2,9,0,4,3,0,1,1,0,0,0,0,0,1,2,21022.380952400003,6,3,6,6_1,10300.0,0,300.0,10000,6,16,124.0,20.0,3.3,0,1,1010.7368867830211,29.438938449990907,981.2979483330303 +5967,9950,9949,0,10,35,112,48,43,2,945,0,500,120,0,2,4,2,4,2.1,3105.8130184,2600,5000,44147.0,1,2,9,0,4,3,0,1,1,0,0,0,0,0,1,2,21022.3809524,6,3,6,6_1,10300.0,0,300.0,10000,6,16,124.0,20.0,3.3,0,1,1010.7368867830211,29.438938449990907,981.2979483330303 5968,9951,9950,8,8,59,111,75,50,0,9450,0,0,0,0,1,6,0,2,1.5,1572.47708077,1821,0,28927.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,19284.6666667,6,3,6,6_0,10000.0,0,10000.0,0,9,9,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 5969,9960,9959,3,3,68,111,75,70,0,9466,0,0,0,0,0,2,0,1,1.0,1365.50862639,2652,0,19123.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,19123.0,6,3,6,6_0,2000.0,0,0.0,2000,6,6,0.0,0.0,0.0,0,0,196.59299422280756,0.0,196.59299422280756 -5970,9972,9971,0,11,49,111,52,50,2,9483,0,440,0,0,2,4,2,4,2.1,1111.70746463,4559,5400,43601.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,20762.380952400003,6,3,6,6_0,12000.0,0,12000.0,0,7,7,0.0,15.0,3.3,0,1,1179.5579653368454,1179.5579653368454,0.0 +5970,9972,9971,0,11,49,111,52,50,2,9483,0,440,0,0,2,4,2,4,2.1,1111.70746463,4559,5400,43601.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,20762.3809524,6,3,6,6_0,12000.0,0,12000.0,0,7,7,0.0,15.0,3.3,0,1,1179.5579653368454,1179.5579653368454,0.0 5971,9976,9975,2,15,46,112,33,31,0,9488,0,450,420,0,3,5,3,5,2.6,1374.19414599,4472,0,53790.0,1,2,7,0,4,3,0,1,1,0,0,0,0,0,1,2,20688.4615385,6,3,6,6_1,30000.0,0,30000.0,0,3,3,607.3,50.0,3.3,0,1,2943.8938449990906,2943.8938449990906,0.0 5972,9981,9980,2,2,30,120,42,10,0,9492,0,0,0,400,1,2,0,1,1.0,5309.68525361,1561,0,20464.0,1,3,0,3,1,1,0,0,0,1,0,0,0,0,0,1,20464.0,6,3,6,6_0,15000.0,0,15000.0,0,4,4,94.0,30.0,3.3,0,1,1474.4474566710567,1474.4474566710567,0.0 5973,9984,9983,7,7,30,300,47,31,0,9497,0,250,60,0,2,5,3,5,2.4,1246.94284156,6156,0,48900.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,20375.0,6,3,6,6_1,35000.0,0,25000.0,10000,4,9,75.0,10.0,3.31,0,1,3434.5428191656056,2453.2448708325755,981.2979483330303 5974,10000,9999,0,0,43,111,55,71,0,9516,0,0,0,0,2,3,0,2,1.5,3490.82621064,468,0,32446.0,1,4,10,8,5,0,0,0,0,0,0,0,1,0,0,0,21630.6666667,6,3,6,6_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 5975,10003,10002,3,3,64,112,77,70,0,9520,0,0,0,0,0,4,1,2,1.5,2706.50518265,0,0,31736.0,5,1,4,0,2,1,0,0,1,0,0,0,0,0,1,0,21157.3333333,6,3,6,6_1,3800.0,0,0.0,3800,2,2,0.0,0.0,0.0,0,0,372.8932203665515,0.0,372.8932203665515 -5976,10032,10031,9,9,43,300,21,41,0,9565,0,100,0,0,2,5,2,4,2.3,2655.20503968,0,0,47540.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,20669.565217400002,6,3,6,6_1,54716.0,0,54716.0,0,6,12,740.2,105.0,3.3,0,1,5369.269854099009,5369.269854099009,0.0 +5976,10032,10031,9,9,43,300,21,41,0,9565,0,100,0,0,2,5,2,4,2.3,2655.20503968,0,0,47540.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,20669.5652174,6,3,6,6_1,54716.0,0,54716.0,0,6,12,740.2,105.0,3.3,0,1,5369.269854099009,5369.269854099009,0.0 5977,10053,10052,0,0,45,111,54,20,0,9589,0,0,0,450,1,1,0,1,1.0,3078.25692033,0,0,20822.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,20822.0,6,3,6,6_0,0.0,0,0.0,0,0,0,13.5,14.0,3.32,0,0,0.0,0.0,0.0 5978,10061,10060,5,19,26,400,43,10,0,9601,0,350,200,0,2,3,0,2,1.5,2710.27285434,0,0,29383.0,1,3,0,0,3,3,0,0,1,0,0,0,0,0,2,1,19588.6666667,6,3,6,6_1,24068.0,0,12001.0,12067,1,17,62.0,17.0,3.3,0,1,2361.787902047937,1177.6556677944695,1184.1322342534677 5979,10070,10069,1,13,47,111,48,71,2,9615,0,0,0,0,2,12,5,7,3.0,1234.32321369,0,500,63702.0,1,2,7,5,4,4,0,0,0,0,1,0,0,0,1,3,21234.0,6,3,6,6_0,23573.0,0,23573.0,0,1,6,0.0,0.0,0.0,0,1,2317.1433264071215,2317.1433264071215,0.0 @@ -5987,7 +5987,7 @@ 5985,10153,10152,4,17,54,400,46,60,0,9729,0,257,0,0,1,2,0,1,1.0,2598.34659385,3292,0,19914.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,0,1,19914.0,6,3,6,6_1,12144.0,0,12144.0,0,0,14,190.5,70.0,3.3,0,1,1191.6882284556318,1191.6882284556318,0.0 5986,10162,10161,5,5,55,112,42,50,0,9747,0,95,0,500,1,4,0,2,1.5,2023.73295161,1300,0,29221.0,1,3,4,0,3,2,0,1,1,0,0,0,0,0,1,1,19480.6666667,6,3,6,6_1,24000.0,0,11000.0,13000,10,12,0.0,0.0,0.0,0,1,2355.1150759992724,1079.4277431663334,1275.6873328329393 5987,10210,10209,9,13,34,112,54,41,0,9812,0,600,0,0,2,5,2,4,2.1,1866.46735425,0,0,43395.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,20664.2857143,6,3,6,6_1,40000.0,0,40000.0,0,1,12,0.0,47.5,5.53,0,1,3925.191793332121,3925.191793332121,0.0 -5988,10211,10210,6,6,56,212,47,50,0,9813,0,50,0,0,2,4,1,3,2.0,2617.50147045,3385,0,39030.0,1,1,3,0,4,3,0,0,1,0,0,0,0,0,0,2,19515.0,6,3,6,6_1,22000.0,0,22000.0,0,8,8,4044.6,14.666666666700001,0.0,0,1,2158.8554863326667,2158.8554863326667,0.0 +5988,10211,10210,6,6,56,212,47,50,0,9813,0,50,0,0,2,4,1,3,2.0,2617.50147045,3385,0,39030.0,1,1,3,0,4,3,0,0,1,0,0,0,0,0,0,2,19515.0,6,3,6,6_1,22000.0,0,22000.0,0,8,8,4044.6,14.6666666667,0.0,0,1,2158.8554863326667,2158.8554863326667,0.0 5989,10218,10217,2,5,47,300,52,42,0,9823,0,750,0,0,2,3,0,2,1.5,2439.20319633,5489,0,30498.0,1,2,0,0,3,2,1,1,1,0,0,0,0,0,0,2,20332.0,6,3,6,6_1,20000.0,0,20000.0,0,4,4,141.5,35.0,3.3,0,1,1962.5958966660605,1962.5958966660605,0.0 5990,10224,10223,2,2,27,112,53,43,0,9831,0,0,0,0,2,3,0,2,1.5,2338.16088714,0,0,30390.0,1,3,5,0,3,1,0,0,1,0,0,0,0,0,0,1,20260.0,6,3,6,6_1,8572.0,0,8572.0,0,1,4,0.0,0.0,0.0,0,1,841.1686013110735,841.1686013110735,0.0 5991,10236,10235,0,0,38,112,63,50,0,9854,0,0,0,0,1,2,0,1,1.0,3679.68809087,520,0,19880.0,1,3,8,0,1,0,0,0,1,0,0,0,0,0,0,0,19880.0,6,3,6,6_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -6001,19 +6001,19 @@ 5999,10311,10310,8,8,60,112,74,31,0,995,0,0,0,0,0,6,0,2,1.5,1747.78054818,0,0,31292.0,5,1,8,1,3,1,0,0,0,1,0,0,0,0,0,1,20861.3333333,6,3,6,6_0,10000.0,0,10000.0,0,2,8,0.0,0.0,0.0,0,0,982.9649711140379,982.9649711140379,0.0 6000,10334,10333,4,11,53,400,64,50,0,9988,0,80,0,281,2,3,0,2,1.5,1864.85014934,0,0,31710.0,1,3,0,0,3,1,0,1,1,0,0,0,0,0,0,1,21140.0,6,3,6,6_1,33142.0,0,33142.0,0,8,13,0.0,0.0,0.0,1,0,3252.217660365329,3252.217660365329,0.0 6001,5,4,2,14,23,111,68,50,0,10003,0,0,120,290,2,2,0,2,1.5,2890.75123799,0,0,33493.0,1,3,8,7,3,2,0,0,0,0,0,1,0,1,2,0,22328.6666667,7,4,7,7_0,13333.0,0,0.0,13333,5,12,30.5,35.0,3.3,0,1,1291.3368280551872,0.0,1291.3368280551872 -6002,8,7,0,9,38,112,43,41,0,10006,0,380,0,0,2,10,2,6,3.3,770.8421128819999,5142,0,72351.0,1,1,6,0,5,3,0,0,1,0,0,0,0,0,1,2,21924.5454545,7,4,7,7_1,30000.0,0,30000.0,0,4,9,79.7,28.6,3.3,1,1,3046.054043449542,3046.054043449542,0.0 +6002,8,7,0,9,38,112,43,41,0,10006,0,380,0,0,2,10,2,6,3.3,770.842112882,5142,0,72351.0,1,1,6,0,5,3,0,0,1,0,0,0,0,0,1,2,21924.5454545,7,4,7,7_1,30000.0,0,30000.0,0,4,9,79.7,28.6,3.3,1,1,3046.054043449542,3046.054043449542,0.0 6003,12,11,9,12,55,111,46,41,0,10010,0,0,250,375,2,2,0,2,1.5,3734.09285627,2080,0,32697.0,1,3,8,7,3,2,0,0,0,0,0,1,0,0,2,0,21798.0,7,4,7,7_0,8000.0,0,0.0,8000,7,12,0.0,60.0,3.31,0,1,774.8214673697967,0.0,774.8214673697967 6004,16,15,2,2,64,112,75,70,0,10017,0,0,0,0,0,4,0,2,1.5,1682.58338105,0,0,37148.0,5,1,10,0,3,1,0,0,1,0,0,0,0,0,1,0,24765.3333333,7,4,7,7_1,11250.0,0,0.0,11250,6,9,0.0,0.0,0.0,0,0,1142.2702662935783,0.0,1142.2702662935783 6005,21,20,1,10,22,111,46,50,2,10021,0,0,0,445,1,1,0,1,1.0,3672.72744317,2080,5300,21830.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,21830.0,7,4,7,7_0,13000.0,0,13000.0,0,5,15,0.0,9.0,1.1,0,0,1259.0848844759196,1259.0848844759196,0.0 -6006,31,30,11,12,39,112,43,33,0,10033,0,400,0,0,2,5,2,4,2.1,1690.96559642,9642,0,50833.0,1,2,8,2,4,2,0,1,0,1,0,0,0,0,0,2,24206.190476199998,7,4,7,7_0,35000.0,0,35000.0,0,10,10,212.2,19.5,3.3,0,1,3389.84391974286,3389.84391974286,0.0 +6006,31,30,11,12,39,112,43,33,0,10033,0,400,0,0,2,5,2,4,2.1,1690.96559642,9642,0,50833.0,1,2,8,2,4,2,0,1,0,1,0,0,0,0,0,2,24206.1904762,7,4,7,7_0,35000.0,0,35000.0,0,10,10,212.2,19.5,3.3,0,1,3389.84391974286,3389.84391974286,0.0 6007,33,32,6,6,72,111,75,50,0,10036,0,0,0,0,0,4,0,2,1.5,3222.97032248,0,0,32961.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,21974.0,7,4,7,7_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 -6008,40,39,9,12,71,111,77,41,0,10044,0,0,0,345,3,5,3,5,3.0,1633.67015445,2345,0,68942.0,5,3,9,7,4,2,0,0,0,0,0,1,0,0,1,1,22980.6666667,7,4,7,7_0,25000.0,0,20000.0,5000,12,12,57.0,15.333333333299999,3.3,1,0,2421.3170855306143,1937.0536684244914,484.26341710612286 -6009,46,45,5,13,28,111,47,41,0,10051,0,650,0,510,2,3,2,4,2.1,6327.83847575,970,0,47129.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,22442.380952400003,7,4,7,7_0,40000.0,0,40000.0,0,6,8,362.5,80.0,3.33,0,1,3874.107336848983,3874.107336848983,0.0 +6008,40,39,9,12,71,111,77,41,0,10044,0,0,0,345,3,5,3,5,3.0,1633.67015445,2345,0,68942.0,5,3,9,7,4,2,0,0,0,0,0,1,0,0,1,1,22980.6666667,7,4,7,7_0,25000.0,0,20000.0,5000,12,12,57.0,15.3333333333,3.3,1,0,2421.3170855306143,1937.0536684244914,484.26341710612286 +6009,46,45,5,13,28,111,47,41,0,10051,0,650,0,510,2,3,2,4,2.1,6327.83847575,970,0,47129.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,22442.3809524,7,4,7,7_0,40000.0,0,40000.0,0,6,8,362.5,80.0,3.33,0,1,3874.107336848983,3874.107336848983,0.0 6010,52,51,12,12,41,112,38,20,0,10059,0,600,0,0,2,5,2,4,2.1,1258.34068205,5567,0,50674.0,1,2,4,0,4,2,0,1,1,0,0,0,0,0,0,2,24130.4761905,7,4,7,7_1,20000.0,0,20000.0,0,9,12,174.0,23.5,3.31,0,1,2030.702695633028,2030.702695633028,0.0 6011,53,52,2,3,49,112,38,31,0,1006,0,750,0,0,2,5,2,4,2.1,1785.86587059,2340,0,51504.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,2,24525.7142857,7,4,7,7_1,60000.0,0,60000.0,0,2,2,89.6,8.0,3.31,0,1,6092.108086899084,6092.108086899084,0.0 6012,59,58,1,11,27,111,62,41,2,10071,0,0,130,360,2,2,0,2,1.5,2895.11363861,0,2100,34903.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,1,0,23268.6666667,7,4,7,7_0,22000.0,0,0.0,22000,7,14,188.0,50.0,3.32,0,1,2130.759035266941,0.0,2130.759035266941 6013,61,60,8,10,63,111,74,41,0,10073,0,0,0,0,0,5,0,1,1.0,1961.22296592,1040,0,21955.0,5,1,6,4,1,2,0,0,0,0,1,0,0,0,0,2,21955.0,7,4,7,7_0,50000.0,0,50000.0,0,3,11,0.0,0.0,0.0,0,0,4842.634171061229,4842.634171061229,0.0 -6014,66,65,0,15,34,111,62,50,0,10083,0,0,200,0,2,4,1,3,1.8,2352.04652829,0,0,43846.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,24358.888888900005,7,4,7,7_0,31000.0,0,20000.0,11000,7,11,308.8,28.6666666667,3.3,0,1,3002.433186057962,1937.0536684244914,1065.3795176334704 +6014,66,65,0,15,34,111,62,50,0,10083,0,0,200,0,2,4,1,3,1.8,2352.04652829,0,0,43846.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,24358.8888889,7,4,7,7_0,31000.0,0,20000.0,11000,7,11,308.8,28.6666666667,3.3,0,1,3002.433186057962,1937.0536684244914,1065.3795176334704 6015,75,74,6,6,56,111,77,70,0,10095,0,0,0,390,0,4,0,2,1.5,3721.66531865,0,0,34350.0,7,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,22900.0,7,4,7,7_0,23000.0,0,23000.0,0,4,5,0.0,0.0,0.0,0,0,2227.611718688165,2227.611718688165,0.0 6016,85,84,0,0,49,111,85,71,0,10110,0,0,0,0,0,5,0,1,1.0,3409.95818828,0,0,23612.0,4,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,23612.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6017,96,95,11,11,33,111,64,60,0,10124,0,220,0,0,1,4,0,1,1.0,1974.23445648,0,0,24589.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,0,1,24589.0,7,4,7,7_0,7572.0,0,7572.0,0,1,8,216.0,120.0,3.3,0,0,733.3685188655126,733.3685188655126,0.0 @@ -6027,18 +6027,18 @@ 6025,181,180,4,5,46,112,43,10,0,10243,0,300,0,0,2,6,2,4,2.3,5876.39728843,4680,0,54582.0,1,2,9,0,4,2,0,0,1,0,0,0,0,0,0,2,23731.3043478,7,4,7,7_1,25000.0,0,25000.0,0,6,6,157.7,35.0,3.3,0,1,2538.378369541285,2538.378369541285,0.0 6026,185,184,14,14,63,111,72,70,0,10250,0,0,0,0,0,6,0,2,1.5,2683.87098565,2026,0,35520.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,23680.0,7,4,7,7_0,18888.0,0,15000.0,3888,9,11,0.0,0.0,0.0,0,0,1829.35348446009,1452.7902513183687,376.5632331417211 6027,194,193,2,2,58,112,47,50,0,10262,0,0,0,0,1,5,0,2,1.5,1249.36682451,0,0,36057.0,1,1,9,0,3,1,0,0,1,0,0,0,0,0,1,0,24038.0,7,4,7,7_1,10000.0,0,0.0,10000,3,3,0.0,0.0,0.0,0,1,1015.351347816514,0.0,1015.351347816514 -6028,199,198,6,6,45,111,45,30,0,10268,0,450,0,495,2,4,2,4,2.3,2895.4554160999996,2725,0,52924.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,23010.434782599998,7,4,7,7_0,18625.0,0,18625.0,0,2,7,34.0,13.333333333299999,0.0,0,0,1803.881228720308,1803.881228720308,0.0 +6028,199,198,6,6,45,111,45,30,0,10268,0,450,0,495,2,4,2,4,2.3,2895.4554161,2725,0,52924.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,23010.4347826,7,4,7,7_0,18625.0,0,18625.0,0,2,7,34.0,13.3333333333,0.0,0,0,1803.881228720308,1803.881228720308,0.0 6029,211,210,0,0,84,111,86,70,0,10287,0,0,0,0,0,3,0,1,1.0,3435.73218363,0,0,23604.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,23604.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6030,217,216,3,19,42,111,67,71,0,10292,0,400,125,0,2,3,0,2,1.5,2647.58242363,0,0,33490.0,1,3,5,4,3,2,0,1,0,0,1,0,0,0,1,1,22326.6666667,7,4,7,7_0,7000.0,0,7000.0,0,2,16,0.0,37.0,5.5,0,1,677.9687839485721,677.9687839485721,0.0 6031,259,258,2,2,24,120,68,71,0,10353,0,600,0,0,2,2,0,2,1.5,3548.43471342,0,0,36500.0,1,3,0,3,3,2,0,1,0,1,0,0,0,0,0,2,24333.3333333,7,4,7,7_0,17343.0,0,17343.0,0,1,0,119.5,50.0,3.3,0,1,1679.7160885742978,1679.7160885742978,0.0 6032,263,262,7,8,56,400,67,50,0,10360,0,300,0,0,2,5,0,2,1.5,2946.06074498,2782,0,35273.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,23515.3333333,7,4,7,7_1,10000.0,0,10000.0,0,6,7,48.0,20.0,3.31,0,1,1015.351347816514,1015.351347816514,0.0 6033,268,267,0,12,39,212,33,50,0,10367,0,180,0,0,2,4,2,4,2.1,2367.57140783,1300,0,50121.0,1,2,2,0,4,2,0,1,1,0,0,0,0,0,0,2,23867.1428571,7,4,7,7_1,17000.0,0,17000.0,0,9,11,447.5,24.0,3.31,0,1,1726.0972912880738,1726.0972912880738,0.0 -6034,275,274,0,17,50,112,42,50,0,10375,0,350,0,350,2,2,1,3,1.8,2287.9389614,1914,0,43070.0,1,3,10,1,4,2,0,1,0,1,0,0,0,0,1,1,23927.777777799998,7,4,7,7_0,14900.0,0,14000.0,900,18,18,96.8,68.3333333333,3.3,0,1,1443.104982976246,1355.9375678971442,87.16741507910213 +6034,275,274,0,17,50,112,42,50,0,10375,0,350,0,350,2,2,1,3,1.8,2287.9389614,1914,0,43070.0,1,3,10,1,4,2,0,1,0,1,0,0,0,0,1,1,23927.7777778,7,4,7,7_0,14900.0,0,14000.0,900,18,18,96.8,68.3333333333,3.3,0,1,1443.104982976246,1355.9375678971442,87.16741507910213 6035,286,285,0,0,49,111,52,71,0,10394,0,0,0,336,1,3,1,2,1.5,7321.06427522,0,0,36100.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,24066.6666667,7,4,7,7_0,0.0,0,0.0,0,0,0,81.0,80.0,1.1,0,0,0.0,0.0,0.0 6036,291,290,10,10,86,111,74,70,0,10402,0,0,0,0,0,4,0,2,1.5,2858.35541969,0,0,33615.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,22410.0,7,4,7,7_0,1000.0,0,0.0,1000,10,10,0.0,0.0,0.0,0,0,96.85268342122458,0.0,96.85268342122458 6037,294,293,11,11,39,111,43,20,0,10407,0,0,500,0,2,4,1,3,1.8,2761.71842606,0,0,39150.0,1,1,8,6,4,1,0,1,0,0,1,0,0,0,1,0,21750.0,7,4,7,7_0,20000.0,0,0.0,20000,4,6,39.6,10.0,0.0,1,1,1937.0536684244914,0.0,1937.0536684244914 6038,303,302,0,0,32,111,43,20,0,10418,0,0,0,311,2,3,1,3,1.8,3435.5491974,1560,0,39297.0,1,3,9,7,4,0,0,0,0,0,0,1,0,0,0,0,21831.6666667,7,4,7,7_0,9000.0,0,0.0,9000,3,4,0.0,63.3333333333,3.3,0,1,871.6741507910211,0.0,871.6741507910211 -6039,313,312,2,2,34,111,53,41,0,1043,0,60,0,600,2,4,1,3,1.8,3571.4848129,0,0,43837.0,1,3,7,5,4,1,0,1,0,0,1,0,0,0,0,1,24353.888888900005,7,4,7,7_0,32000.0,0,32000.0,0,2,3,0.0,0.0,0.0,0,1,3099.2858694791867,3099.2858694791867,0.0 +6039,313,312,2,2,34,111,53,41,0,1043,0,60,0,600,2,4,1,3,1.8,3571.4848129,0,0,43837.0,1,3,7,5,4,1,0,1,0,0,1,0,0,0,0,1,24353.8888889,7,4,7,7_0,32000.0,0,32000.0,0,2,3,0.0,0.0,0.0,0,1,3099.2858694791867,3099.2858694791867,0.0 6040,317,316,7,13,59,300,75,43,0,10435,0,0,0,0,1,8,0,2,1.5,1433.43952519,5763,0,36300.0,5,1,0,0,3,2,1,0,1,0,0,0,0,0,1,1,24200.0,7,4,7,7_1,30000.0,0,18000.0,12000,10,14,100.4,80.0,3.3,0,1,3046.054043449542,1827.6324260697252,1218.4216173798168 6041,324,323,12,12,45,112,48,50,0,10443,0,400,0,0,2,6,2,4,2.3,1292.35780192,3401,0,51074.0,1,1,9,0,4,2,0,0,1,0,0,0,0,0,1,1,22206.0869565,7,4,7,7_1,35000.0,0,20000.0,15000,4,14,134.0,40.0,3.3,0,1,3553.729717357799,2030.702695633028,1523.027021724771 6042,325,324,0,0,84,211,75,70,0,10444,0,0,0,0,0,3,0,2,1.5,2307.35440823,0,0,33227.0,5,1,2,3,3,0,0,0,0,1,0,0,0,0,0,0,22151.3333333,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -6046,9 +6046,9 @@ 6044,348,347,1,1,62,221,75,60,1,10479,0,0,0,0,0,3,0,1,1.0,4202.20253556,2132,15311,22186.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,22186.0,7,4,7,7_0,8500.0,0,0.0,8500,2,3,0.0,0.0,0.0,0,0,823.247809080409,0.0,823.247809080409 6045,389,388,4,6,33,300,63,50,0,10534,0,620,0,0,2,5,2,4,2.1,1482.1283,5722,0,49097.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,1,2,23379.5238095,7,4,7,7_1,21000.0,0,21000.0,0,5,5,245.4,33.25,3.31,0,1,2132.237830414679,2132.237830414679,0.0 6046,440,439,7,7,61,111,67,71,0,10602,0,0,70,345,1,4,0,1,1.0,3419.95906262,0,0,24803.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,24803.0,7,4,7,7_0,8000.0,0,0.0,8000,9,10,0.0,16.0,1.1,0,0,774.8214673697967,0.0,774.8214673697967 -6047,441,440,3,7,27,111,34,20,0,10603,0,199998,0,0,2,8,1,3,1.8,1891.71056499,3239,0,40423.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,22457.222222200002,7,4,7,7_0,35000.0,0,35000.0,0,2,5,35.2,8.0,0.0,1,1,3389.84391974286,3389.84391974286,0.0 +6047,441,440,3,7,27,111,34,20,0,10603,0,199998,0,0,2,8,1,3,1.8,1891.71056499,3239,0,40423.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,22457.2222222,7,4,7,7_0,35000.0,0,35000.0,0,2,5,35.2,8.0,0.0,1,1,3389.84391974286,3389.84391974286,0.0 6048,469,468,4,12,46,111,63,50,0,10645,0,0,0,0,1,4,0,1,1.0,3251.78250429,832,0,24680.0,1,2,10,8,1,1,0,0,0,0,0,0,1,0,1,0,24680.0,7,4,7,7_0,3000.0,0,0.0,3000,6,6,0.0,50.0,5.5,0,0,290.55805026367375,0.0,290.55805026367375 -6049,475,474,6,30,46,111,48,20,0,10652,0,0,80,0,2,4,2,3,1.8,2530.26014436,1560,0,39497.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,1,0,21942.777777799998,7,4,7,7_0,3500.0,0,0.0,3500,16,17,75.5,33.3333333333,0.0,0,0,338.98439197428604,0.0,338.98439197428604 +6049,475,474,6,30,46,111,48,20,0,10652,0,0,80,0,2,4,2,3,1.8,2530.26014436,1560,0,39497.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,1,0,21942.7777778,7,4,7,7_0,3500.0,0,0.0,3500,16,17,75.5,33.3333333333,0.0,0,0,338.98439197428604,0.0,338.98439197428604 6050,485,484,2,2,28,111,52,50,0,10665,0,300,0,550,2,5,0,2,1.5,3517.34647713,1970,0,36266.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,0,1,24177.3333333,7,4,7,7_0,20000.0,0,20000.0,0,1,4,26.0,47.0,5.55,0,1,1937.0536684244914,1937.0536684244914,0.0 6051,499,498,0,0,87,300,75,41,0,10684,0,0,0,0,0,4,0,1,1.0,1658.68567934,0,0,22560.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,22560.0,7,4,7,7_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6052,511,510,5,6,73,111,75,70,0,10707,0,0,0,625,0,2,0,1,1.0,2856.42572275,0,0,22991.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,22991.0,7,4,7,7_0,2000.0,0,0.0,2000,5,5,0.0,0.0,0.0,0,0,193.70536684244917,0.0,193.70536684244917 @@ -6057,17 +6057,17 @@ 6055,520,519,0,1,30,111,54,31,2,10718,0,0,250,298,2,3,0,2,1.5,6958.6111016,2599,6500,33860.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,1,0,22573.3333333,7,4,7,7_0,13352.0,0,0.0,13352,1,5,0.0,0.0,0.0,0,0,1293.1770290401905,0.0,1293.1770290401905 6056,530,529,4,4,69,300,74,31,0,10731,0,0,0,0,0,4,0,2,1.5,1638.69265099,0,0,34660.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,0,1,23106.6666667,7,4,7,7_0,15310.0,0,15310.0,0,3,3,0.0,0.0,0.0,0,0,1482.8145831789484,1482.8145831789484,0.0 6057,540,539,7,7,70,300,74,43,0,10743,0,0,0,0,0,4,0,2,1.5,1558.26084979,1099,0,36522.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,24348.0,7,4,7,7_1,15500.0,0,0.0,15500,9,9,0.0,0.0,0.0,0,0,1573.7945891155966,0.0,1573.7945891155966 -6058,553,552,17,17,27,112,53,30,0,1076,0,200,0,0,1,3,0,2,1.5,6456.033608899999,0,0,36526.0,1,1,9,3,3,2,0,1,0,1,0,0,0,0,0,2,24350.6666667,7,4,7,7_0,20672.0,0,20672.0,0,2,22,0.0,0.0,0.0,1,1,2002.1386716835545,2002.1386716835545,0.0 +6058,553,552,17,17,27,112,53,30,0,1076,0,200,0,0,1,3,0,2,1.5,6456.0336089,0,0,36526.0,1,1,9,3,3,2,0,1,0,1,0,0,0,0,0,2,24350.6666667,7,4,7,7_0,20672.0,0,20672.0,0,2,22,0.0,0.0,0.0,1,1,2002.1386716835545,2002.1386716835545,0.0 6059,560,559,0,0,56,111,43,60,1,10768,0,0,99999,0,1,3,1,2,1.5,3960.67154523,0,16300,36705.0,1,1,9,7,2,1,0,1,0,0,0,1,0,0,1,0,24470.0,7,4,7,7_0,2682.0,0,0.0,2682,2,2,0.0,0.0,0.0,0,0,259.7588969357243,0.0,259.7588969357243 6060,561,560,15,16,40,112,47,50,0,1077,0,345,0,0,2,5,2,4,2.1,2218.98075537,0,0,46543.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,22163.3333333,7,4,7,7_1,20000.0,0,20000.0,0,9,12,174.0,23.5,3.31,0,1,2030.702695633028,2030.702695633028,0.0 -6061,570,569,6,6,32,111,38,20,0,1078,0,20,0,0,2,6,1,3,1.8,1584.32479365,0,0,43690.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,24272.222222200002,7,4,7,7_0,15891.0,0,15891.0,0,2,6,0.0,10.0,0.0,0,0,1539.0859922466798,1539.0859922466798,0.0 -6062,575,574,7,7,81,111,75,50,0,10786,0,0,0,0,0,4,0,2,1.5,978.2303834539999,1041,0,36247.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,24164.6666667,7,4,7,7_0,3000.0,0,500.0,2500,7,7,0.0,0.0,0.0,0,0,290.55805026367375,48.42634171061229,242.13170855306143 -6063,577,576,1,1,38,112,62,50,0,10789,0,410,0,0,2,5,2,4,2.1,1900.83726153,0,0,51361.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,24457.619047599997,7,4,7,7_1,25000.0,0,25000.0,0,2,2,827.2,73.3333333333,3.3,1,1,2538.378369541285,2538.378369541285,0.0 +6061,570,569,6,6,32,111,38,20,0,1078,0,20,0,0,2,6,1,3,1.8,1584.32479365,0,0,43690.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,24272.2222222,7,4,7,7_0,15891.0,0,15891.0,0,2,6,0.0,10.0,0.0,0,0,1539.0859922466798,1539.0859922466798,0.0 +6062,575,574,7,7,81,111,75,50,0,10786,0,0,0,0,0,4,0,2,1.5,978.230383454,1041,0,36247.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,24164.6666667,7,4,7,7_0,3000.0,0,500.0,2500,7,7,0.0,0.0,0.0,0,0,290.55805026367375,48.42634171061229,242.13170855306143 +6063,577,576,1,1,38,112,62,50,0,10789,0,410,0,0,2,5,2,4,2.1,1900.83726153,0,0,51361.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,24457.6190476,7,4,7,7_1,25000.0,0,25000.0,0,2,2,827.2,73.3333333333,3.3,1,1,2538.378369541285,2538.378369541285,0.0 6064,580,579,6,6,80,111,78,70,0,10794,0,0,0,0,0,3,0,2,1.5,2553.61026318,1560,0,35660.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,23773.3333333,7,4,7,7_0,7000.0,0,0.0,7000,13,13,0.0,0.0,0.0,0,0,677.9687839485721,0.0,677.9687839485721 6065,596,595,9,9,81,112,75,10,0,1082,0,0,0,0,0,4,0,1,1.0,3220.13562702,0,0,21924.0,5,1,7,0,1,1,0,0,1,0,0,0,0,0,1,0,21924.0,7,4,7,7_1,3000.0,0,0.0,3000,2,8,0.0,0.0,0.0,0,0,304.6054043449542,0.0,304.6054043449542 6066,609,608,3,23,27,300,64,50,0,10835,0,120,0,0,1,2,0,2,1.5,3130.14644666,2080,0,34029.0,1,3,0,0,3,4,0,0,1,0,0,0,0,1,2,2,22686.0,7,4,7,7_1,36000.0,0,30000.0,6000,7,10,150.0,15.0,0.0,0,1,3655.2648521394503,3046.054043449542,609.2108086899084 6067,615,614,9,9,34,120,54,31,0,10846,0,100199,0,0,2,6,2,4,2.1,2653.24466566,2593,0,52016.0,1,2,0,2,4,2,1,1,0,1,0,0,0,0,0,2,24769.5238095,7,4,7,7_0,25000.0,0,25000.0,0,1,9,0.0,27.5,0.0,0,1,2421.3170855306143,2421.3170855306143,0.0 -6068,618,617,4,6,32,400,42,20,0,1085,0,100,0,648,2,4,2,4,2.1,3222.29055686,0,0,46919.0,1,3,0,1,4,1,0,1,0,1,0,0,0,0,0,1,22342.380952400003,7,4,7,7_0,16000.0,0,16000.0,0,5,9,77.0,16.25,3.3,0,1,1549.6429347395933,1549.6429347395933,0.0 +6068,618,617,4,6,32,400,42,20,0,1085,0,100,0,648,2,4,2,4,2.1,3222.29055686,0,0,46919.0,1,3,0,1,4,1,0,1,0,1,0,0,0,0,0,1,22342.3809524,7,4,7,7_0,16000.0,0,16000.0,0,5,9,77.0,16.25,3.3,0,1,1549.6429347395933,1549.6429347395933,0.0 6069,621,620,5,15,63,112,75,70,0,10854,0,0,0,407,0,2,0,1,1.0,2631.08228144,0,0,23440.0,5,3,10,4,1,1,0,0,0,0,1,0,0,0,0,1,23440.0,7,4,7,7_0,10000.0,0,10000.0,0,10,14,0.0,0.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 6070,638,637,2,2,40,111,42,42,0,10878,200,0,0,0,1,4,2,3,1.6,1699.43188279,0,0,34798.0,1,2,6,5,2,1,0,1,0,0,1,0,0,0,0,0,21748.75,7,4,7,7_0,11000.0,0,0.0,11000,4,4,0.0,4.0,1.1,0,0,1065.3795176334704,0.0,1065.3795176334704 6071,659,658,2,2,52,211,52,50,0,10904,0,0,100,0,1,2,0,1,1.0,2218.8423274,0,0,21704.0,1,1,1,2,1,1,0,1,0,1,0,0,0,0,1,0,21704.0,7,4,7,7_0,11500.0,0,0.0,11500,3,3,0.0,30.0,1.1,0,0,1113.8058593440826,0.0,1113.8058593440826 @@ -6082,7 +6082,7 @@ 6080,737,736,16,16,56,111,52,50,0,11015,0,0,120,0,2,4,0,2,1.5,1631.46079509,1978,0,35440.0,1,1,6,4,3,1,0,1,0,0,1,0,0,0,1,0,23626.6666667,7,4,7,7_0,5565.0,0,0.0,5565,16,16,0.0,10.0,1.1,0,0,538.9851832391148,0.0,538.9851832391148 6081,747,746,0,0,66,111,77,50,0,11033,0,0,0,0,0,4,0,1,1.0,2952.73075973,0,0,24525.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,24525.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6082,754,753,7,7,72,111,75,41,0,11041,0,0,0,0,0,6,0,2,1.5,2840.76685478,2652,0,33945.0,5,4,8,6,3,1,0,0,0,0,1,0,0,0,0,1,22630.0,7,4,7,7_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 -6083,763,762,1,2,34,221,46,31,2,11050,0,300,0,0,2,4,1,3,1.8,2207.96668518,2830,25000,42842.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,23801.111111099995,7,4,7,7_0,12180.0,0,12180.0,0,1,3,37.0,29.6666666667,3.3,0,1,1179.6656840705152,1179.6656840705152,0.0 +6083,763,762,1,2,34,221,46,31,2,11050,0,300,0,0,2,4,1,3,1.8,2207.96668518,2830,25000,42842.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,23801.1111111,7,4,7,7_0,12180.0,0,12180.0,0,1,3,37.0,29.6666666667,3.3,0,1,1179.6656840705152,1179.6656840705152,0.0 6084,804,803,6,14,53,111,63,71,0,11102,0,0,20,251,1,3,0,1,1.0,5860.05731577,0,0,24600.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,1,0,24600.0,7,4,7,7_0,18000.0,0,0.0,18000,7,7,0.0,12.0,1.1,1,0,1743.3483015820423,0.0,1743.3483015820423 6085,815,814,4,7,49,112,54,50,0,11120,0,257,0,0,3,4,1,3,2.0,3193.56695372,0,0,49073.0,1,3,9,3,4,2,0,1,0,1,0,0,0,0,0,2,24536.5,7,4,7,7_0,6000.0,0,6000.0,0,2,3,134.0,20.0,0.0,0,1,581.1161005273475,581.1161005273475,0.0 6086,829,828,3,3,50,111,43,10,0,11138,0,0,0,0,1,5,2,3,1.8,1809.34858078,0,0,42624.0,1,3,8,6,2,1,1,0,0,0,1,0,0,0,0,1,23680.0,7,4,7,7_0,12000.0,0,12000.0,0,3,3,0.0,26.6666666667,3.3,0,1,1162.232201054695,1162.232201054695,0.0 @@ -6100,13 +6100,13 @@ 6098,1015,1014,7,9,65,111,74,41,0,11386,0,0,0,448,0,3,0,1,1.0,3926.16627039,0,0,22264.0,5,3,8,7,1,1,0,0,0,0,0,1,0,0,0,1,22264.0,7,4,7,7_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 6099,1016,1015,0,0,80,111,78,71,0,11389,0,0,0,0,0,4,0,1,1.0,3558.73238193,0,0,23314.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,23314.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6100,1021,1020,8,8,46,111,45,50,0,11393,0,0,60,0,1,4,2,4,2.5,2725.84417207,0,0,56515.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,22606.0,7,4,7,7_0,30000.0,0,15000.0,15000,4,9,144.8,30.0,3.3,0,1,2905.5805026367375,1452.7902513183687,1452.7902513183687 -6101,1036,1035,8,10,44,111,56,31,0,11412,0,100,99999,0,2,7,3,5,2.6,1244.67437679,3278,0,58425.0,1,1,7,5,4,2,1,1,0,0,1,0,0,0,1,1,22471.153846200003,7,4,7,7_0,20000.0,0,4000.0,16000,7,11,74.8,25.0,5.56,0,1,1937.0536684244914,387.41073368489833,1549.6429347395933 +6101,1036,1035,8,10,44,111,56,31,0,11412,0,100,99999,0,2,7,3,5,2.6,1244.67437679,3278,0,58425.0,1,1,7,5,4,2,1,1,0,0,1,0,0,0,1,1,22471.1538462,7,4,7,7_0,20000.0,0,4000.0,16000,7,11,74.8,25.0,5.56,0,1,1937.0536684244914,387.41073368489833,1549.6429347395933 6102,1056,1055,0,0,86,111,75,70,0,11445,0,0,0,0,0,2,0,1,1.0,2874.01177506,0,0,23398.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,23398.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6103,1060,1059,12,19,43,112,68,50,0,11450,0,0,130,0,2,8,1,3,2.0,1175.04421967,0,0,43942.0,1,1,6,0,4,3,0,0,1,0,0,0,0,0,1,2,21971.0,7,4,7,7_1,30000.0,0,30000.0,0,3,16,198.0,45.0,3.3,0,1,3046.054043449542,3046.054043449542,0.0 6104,1069,1068,0,14,31,120,46,10,0,11461,0,100399,0,0,2,1,0,2,1.5,1504.92549855,2412,0,35194.0,1,4,0,0,3,2,1,1,1,0,0,0,0,0,0,2,23462.6666667,7,4,7,7_1,20000.0,0,20000.0,0,10,13,99.5,25.0,3.3,0,1,2030.702695633028,2030.702695633028,0.0 6105,1074,1073,1,17,34,112,62,43,0,11467,0,150,0,0,2,4,2,4,2.1,4023.75094744,0,0,50948.0,1,3,8,0,4,1,0,1,1,0,0,0,0,0,0,1,24260.952381,7,4,7,7_1,10000.0,0,10000.0,0,2,19,166.5,12.0,3.3,1,0,1015.351347816514,1015.351347816514,0.0 6106,1092,1091,5,5,54,111,52,70,0,11494,0,0,130,0,1,4,0,1,1.0,1612.63638647,0,0,23302.0,1,1,8,6,1,1,0,1,0,0,1,0,0,0,1,0,23302.0,7,4,7,7_0,8000.0,0,0.0,8000,4,7,0.0,40.0,2.2,0,0,774.8214673697967,0.0,774.8214673697967 -6107,1097,1096,0,0,41,111,63,50,1,11501,0,0,150,0,2,3,2,4,2.1,2968.61351792,520,12000,47927.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,22822.380952400003,7,4,7,7_0,10000.0,0,0.0,10000,3,0,67.5,80.0,3.3,1,0,968.5268342122457,0.0,968.5268342122457 +6107,1097,1096,0,0,41,111,63,50,1,11501,0,0,150,0,2,3,2,4,2.1,2968.61351792,520,12000,47927.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,22822.3809524,7,4,7,7_0,10000.0,0,0.0,10000,3,0,67.5,80.0,3.3,1,0,968.5268342122457,0.0,968.5268342122457 6108,1102,1101,2,2,63,112,77,50,0,11508,0,0,0,0,0,5,0,1,1.0,1514.12177691,0,0,23225.0,5,1,6,0,1,1,0,0,1,0,0,0,0,0,0,1,23225.0,7,4,7,7_1,18000.0,0,18000.0,0,3,3,0.0,0.0,0.0,0,0,1827.6324260697252,1827.6324260697252,0.0 6109,1105,1104,3,7,55,400,62,50,0,11510,0,700,0,0,1,6,0,1,1.0,1757.04250592,3058,0,24790.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,1,24790.0,7,4,7,7_1,12000.0,0,12000.0,0,3,6,41.0,20.0,3.3,0,1,1218.4216173798168,1218.4216173798168,0.0 6110,1112,1111,1,2,30,111,38,31,2,11517,0,60,0,0,1,3,0,1,1.0,2395.48993542,0,11600,22632.0,1,1,7,5,1,1,0,1,0,0,1,0,0,0,0,1,22632.0,7,4,7,7_0,15500.0,0,15500.0,0,1,1,0.0,10.0,3.3,0,1,1501.216593028981,1501.216593028981,0.0 @@ -6120,11 +6120,11 @@ 6118,1179,1178,2,18,52,111,63,71,0,11613,0,99999,0,0,5,4,4,6,3.3,2981.23768632,1040,0,78770.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,23869.6969697,7,4,7,7_0,10000.0,0,0.0,10000,2,3,0.0,0.0,0.0,0,1,968.5268342122457,0.0,968.5268342122457 6119,1189,1188,6,10,36,300,43,20,0,1163,0,1140,0,0,2,7,1,3,1.8,1872.79142876,3314,0,42684.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,23713.3333333,7,4,7,7_1,8001.0,0,8001.0,0,7,9,508.5,64.0,3.3,0,1,812.3826133879928,812.3826133879928,0.0 6120,1190,1189,0,5,68,112,77,71,0,11630,0,0,0,0,0,7,0,1,1.0,2838.29851773,1040,0,23882.0,5,1,6,0,1,2,0,0,1,0,0,0,0,0,2,0,23882.0,7,4,7,7_1,10000.0,0,0.0,10000,6,6,0.0,0.0,0.0,0,0,1015.351347816514,0.0,1015.351347816514 -6121,1200,1199,0,10,27,112,52,31,0,11643,0,160,0,0,2,3,1,3,1.8,2297.75634117,1560,0,42640.0,1,3,10,1,4,2,0,0,0,1,0,0,0,0,0,2,23688.888888900005,7,4,7,7_0,15000.0,0,15000.0,0,2,8,161.4,63.3333333333,3.33,0,1,1452.7902513183687,1452.7902513183687,0.0 +6121,1200,1199,0,10,27,112,52,31,0,11643,0,160,0,0,2,3,1,3,1.8,2297.75634117,1560,0,42640.0,1,3,10,1,4,2,0,0,0,1,0,0,0,0,0,2,23688.8888889,7,4,7,7_0,15000.0,0,15000.0,0,2,8,161.4,63.3333333333,3.33,0,1,1452.7902513183687,1452.7902513183687,0.0 6122,1205,1204,1,2,25,111,62,31,2,11650,0,500,0,350,2,2,0,2,1.5,3209.05634055,0,10900,34483.0,1,3,9,7,3,1,0,1,0,0,0,1,0,1,0,1,22988.6666667,7,4,7,7_0,23000.0,0,23000.0,0,2,2,7.6,12.0,3.3,1,1,2227.611718688165,2227.611718688165,0.0 6123,1216,1215,21,32,67,120,75,71,0,11669,0,0,0,0,0,4,0,2,1.5,2361.44421665,2939,0,33059.0,5,1,0,2,3,2,0,0,0,1,0,0,0,0,1,1,22039.3333333,7,4,7,7_0,15891.0,0,8891.0,7000,2,9,0.0,0.0,0.0,0,0,1539.0859922466798,861.1172082981077,677.9687839485721 6124,1218,1217,3,3,51,111,53,60,0,11670,0,1200,0,0,2,4,1,3,2.0,1874.87376635,5510,0,47630.0,1,1,8,7,4,1,0,1,0,0,0,1,0,0,0,1,23815.0,7,4,7,7_0,10000.0,0,10000.0,0,3,3,48.5,10.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 -6125,1224,1223,6,6,45,111,23,20,0,1168,0,750,100,0,2,7,2,4,2.1,2495.70410242,0,0,48449.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,23070.952381,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.333333333299999,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 +6125,1224,1223,6,6,45,111,23,20,0,1168,0,750,100,0,2,7,2,4,2.1,2495.70410242,0,0,48449.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,23070.952381,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.3333333333,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 6126,1228,1227,0,24,27,120,56,50,2,11685,0,310,0,0,2,5,1,3,1.8,2924.63451369,3121,5000,40272.0,1,2,0,3,4,3,0,0,0,1,0,0,0,0,0,3,22373.3333333,7,4,7,7_0,18000.0,0,18000.0,0,21,21,0.0,0.0,0.0,0,0,1743.3483015820423,1743.3483015820423,0.0 6127,1230,1229,0,5,62,112,78,50,0,11690,0,0,0,0,0,4,0,2,1.5,1702.54863947,2288,0,34251.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,1,1,22834.0,7,4,7,7_1,20600.0,0,20000.0,600,4,6,0.0,0.0,0.0,0,0,2091.6237765020187,2030.702695633028,60.92108086899084 6128,1242,1241,9,9,46,112,38,10,0,11702,0,99999,160,0,2,7,2,4,2.5,2921.02587097,0,0,58797.0,1,1,7,0,4,2,0,1,1,0,0,0,0,0,1,1,23518.8,7,4,7,7_1,51000.0,0,35000.0,16000,4,5,215.4,43.3333333333,3.32,1,1,5178.291873864221,3553.729717357799,1624.5621565064223 @@ -6138,9 +6138,9 @@ 6136,1324,1323,2,2,72,112,78,70,0,11812,0,0,0,0,0,3,0,2,1.5,1964.82694261,0,0,33340.0,5,2,9,0,3,2,0,0,1,0,0,0,0,0,0,2,22226.6666667,7,4,7,7_1,12000.0,0,12000.0,0,4,4,0.0,0.0,0.0,0,0,1218.4216173798168,1218.4216173798168,0.0 6137,1359,1358,5,20,47,111,62,50,0,11858,0,100,100,0,2,5,1,3,2.0,1420.17480538,0,0,45514.0,1,1,6,5,4,2,0,1,0,0,1,0,0,0,1,1,22757.0,7,4,7,7_0,14900.0,0,14000.0,900,18,18,96.8,68.3333333333,3.3,0,1,1443.104982976246,1355.9375678971442,87.16741507910213 6138,1364,1363,4,4,67,111,75,71,0,11863,0,0,0,329,0,4,0,2,1.5,2576.89692959,0,0,36782.0,5,3,7,6,3,1,0,0,0,0,1,0,0,0,1,0,24521.3333333,7,4,7,7_0,20000.0,0,0.0,20000,3,4,0.0,0.0,0.0,0,0,1937.0536684244914,0.0,1937.0536684244914 -6139,1377,1376,0,0,37,111,46,20,1,11881,0,240,30,0,2,6,2,4,2.1,1783.63352578,4501,23000,47512.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,1,1,22624.761904799998,7,4,7,7_0,35000.0,0,25000.0,10000,4,4,141.3,27.5,3.3,0,1,3389.84391974286,2421.3170855306143,968.5268342122457 +6139,1377,1376,0,0,37,111,46,20,1,11881,0,240,30,0,2,6,2,4,2.1,1783.63352578,4501,23000,47512.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,1,1,22624.7619048,7,4,7,7_0,35000.0,0,25000.0,10000,4,4,141.3,27.5,3.3,0,1,3389.84391974286,2421.3170855306143,968.5268342122457 6140,1381,1380,6,16,54,120,65,71,0,11889,0,72,0,0,2,6,0,2,1.5,4786.96300834,1561,0,35530.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,23686.6666667,7,4,7,7_1,32000.0,0,32000.0,0,7,17,388.0,140.0,3.3,1,1,3249.1243130128446,3249.1243130128446,0.0 -6141,1391,1390,1,1,32,112,37,31,1,11902,0,400,0,515,2,4,1,3,1.8,1791.57764752,0,26500,41215.0,1,3,9,2,4,1,0,1,0,1,0,0,0,0,0,1,22897.222222200002,7,4,7,7_0,32000.0,0,32000.0,0,2,3,0.0,0.0,0.0,0,1,3099.2858694791867,3099.2858694791867,0.0 +6141,1391,1390,1,1,32,112,37,31,1,11902,0,400,0,515,2,4,1,3,1.8,1791.57764752,0,26500,41215.0,1,3,9,2,4,1,0,1,0,1,0,0,0,0,0,1,22897.2222222,7,4,7,7_0,32000.0,0,32000.0,0,2,3,0.0,0.0,0.0,0,1,3099.2858694791867,3099.2858694791867,0.0 6142,1401,1400,17,17,75,111,72,70,0,11922,0,0,0,0,0,3,0,2,1.5,3194.68459402,0,0,36566.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,0,2,24377.3333333,7,4,7,7_0,10000.0,0,10000.0,0,12,12,0.0,0.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 6143,1409,1408,1,1,62,111,68,30,1,11932,0,0,50,0,2,5,0,3,2.0,2025.6242257,0,16000,44639.0,1,1,9,7,5,1,0,1,0,0,0,1,0,0,1,0,22319.5,7,4,7,7_0,3748.0,0,0.0,3748,0,2,0.0,0.0,0.0,0,1,363.00385746274975,0.0,363.00385746274975 6144,1426,1425,8,10,33,112,43,33,0,11953,0,0,0,0,2,5,2,4,2.1,3403.99400377,988,0,47330.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,22538.0952381,7,4,7,7_1,24000.0,0,24000.0,0,5,9,197.0,27.0,3.3,0,1,2436.8432347596336,2436.8432347596336,0.0 @@ -6150,15 +6150,15 @@ 6148,1457,1456,9,9,71,221,74,10,0,1200,0,0,0,0,0,3,0,1,1.0,2234.8678507,0,0,24168.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,1,0,24168.0,7,4,7,7_0,2000.0,0,0.0,2000,5,5,0.0,0.0,0.0,0,0,193.70536684244917,0.0,193.70536684244917 6149,1458,1457,10,10,58,112,74,50,0,12000,0,0,0,0,0,6,0,2,1.5,1104.34568305,2600,0,32872.0,7,1,10,1,3,1,0,0,0,1,0,0,0,0,0,1,21914.6666667,7,4,7,7_0,5000.0,0,5000.0,0,9,9,0.0,0.0,0.0,0,0,484.26341710612286,484.26341710612286,0.0 6150,1466,1465,0,0,35,112,11,31,1,12012,0,6,0,0,2,5,1,3,1.8,2536.06810432,0,17500,43914.0,1,2,4,0,4,2,0,0,1,0,0,0,0,0,0,2,24396.6666667,7,4,7,7_1,34000.0,0,34000.0,0,2,0,183.6,46.6666666667,3.3,0,1,3452.1945825761477,3452.1945825761477,0.0 -6151,1485,1484,5,6,37,120,46,31,0,12037,0,320,0,0,2,4,1,3,1.8,2162.64508921,3172,0,42700.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,23722.222222200002,7,4,7,7_1,3000.0,0,3000.0,0,4,6,69.0,20.0,3.3,0,0,304.6054043449542,304.6054043449542,0.0 +6151,1485,1484,5,6,37,120,46,31,0,12037,0,320,0,0,2,4,1,3,1.8,2162.64508921,3172,0,42700.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,23722.2222222,7,4,7,7_1,3000.0,0,3000.0,0,4,6,69.0,20.0,3.3,0,0,304.6054043449542,304.6054043449542,0.0 6152,1489,1488,4,4,35,111,43,33,0,12042,0,0,0,800,2,4,2,4,2.1,3425.72663334,0,0,48401.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,1,0,23048.0952381,7,4,7,7_0,15000.0,0,0.0,15000,4,8,12.0,23.3333333333,2.2,0,0,1452.7902513183687,0.0,1452.7902513183687 6153,1501,1500,5,8,40,111,34,20,0,12059,0,150,250,0,2,3,2,4,2.1,1240.68300371,2600,0,48577.0,1,4,5,4,4,2,0,1,0,0,1,0,0,0,1,1,23131.9047619,7,4,7,7_0,13840.0,0,13000.0,840,6,6,35.6,12.5,0.0,1,0,1340.441138549748,1259.0848844759196,81.35625407382864 6154,1508,1507,0,0,23,111,84,41,0,12067,0,0,0,415,0,2,0,1,1.0,3234.30831691,0,0,21764.0,3,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,21764.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6155,1510,1509,1,1,41,112,53,71,2,12069,0,30,0,0,1,4,1,2,1.5,3092.60611757,0,6000,34506.0,1,1,10,0,2,2,0,1,1,0,0,0,0,0,1,1,23004.0,7,4,7,7_1,21445.0,0,21445.0,0,2,6,79.0,25.0,3.31,0,1,2177.420965392514,2177.420965392514,0.0 6156,1515,1514,9,13,49,112,34,10,0,12076,0,0,0,0,1,6,0,1,1.0,1558.76493339,0,0,23966.0,1,1,8,0,1,2,0,0,1,0,0,0,0,0,0,2,23966.0,7,4,7,7_1,24001.0,0,24001.0,0,1,1,0.0,0.0,0.0,1,1,2436.9447698944155,2436.9447698944155,0.0 6157,1525,1524,11,12,47,112,63,44,0,12092,0,300,100,0,2,6,2,4,2.5,2453.68309845,0,0,55829.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,1,1,22331.6,7,4,7,7_1,10859.0,0,6859.0,4000,1,4,249.0,56.6666666667,3.3,0,1,1102.5700285939527,696.4294894673469,406.1405391266056 -6158,1537,1536,5,5,62,120,75,60,0,12105,0,0,0,0,0,4,0,2,1.5,3087.4693158000005,1560,0,34856.0,5,2,0,0,3,1,0,0,1,0,0,0,0,0,0,1,23237.3333333,7,4,7,7_1,13072.0,0,13072.0,0,1,2,0.0,0.0,0.0,0,0,1327.267281865747,1327.267281865747,0.0 -6159,1564,1563,3,3,35,111,46,20,0,12141,0,70,0,0,2,13,2,4,2.1,2457.22090047,0,0,47925.0,1,2,8,6,4,1,0,1,0,0,1,0,0,0,0,1,22821.428571400003,7,4,7,7_0,20000.0,0,20000.0,0,3,3,0.0,10.0,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 +6158,1537,1536,5,5,62,120,75,60,0,12105,0,0,0,0,0,4,0,2,1.5,3087.4693158,1560,0,34856.0,5,2,0,0,3,1,0,0,1,0,0,0,0,0,0,1,23237.3333333,7,4,7,7_1,13072.0,0,13072.0,0,1,2,0.0,0.0,0.0,0,0,1327.267281865747,1327.267281865747,0.0 +6159,1564,1563,3,3,35,111,46,20,0,12141,0,70,0,0,2,13,2,4,2.1,2457.22090047,0,0,47925.0,1,2,8,6,4,1,0,1,0,0,1,0,0,0,0,1,22821.4285714,7,4,7,7_0,20000.0,0,20000.0,0,3,3,0.0,10.0,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 6160,1568,1567,6,6,41,111,34,20,0,12146,0,0,60,1600,2,4,4,6,2.9,1573.98842339,0,0,69560.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,23986.2068966,7,4,7,7_0,12000.0,0,0.0,12000,3,8,0.0,35.8333333333,3.3,0,1,1162.232201054695,0.0,1162.232201054695 6161,1577,1576,0,0,77,111,77,43,0,12163,0,0,0,584,0,3,0,1,1.0,2832.27270661,0,0,24810.0,5,3,7,5,1,0,0,0,0,0,1,0,0,0,0,0,24810.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6162,1584,1583,0,0,77,111,31,41,0,12170,0,0,0,343,1,2,0,1,1.0,4255.57677258,0,0,21777.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21777.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -6171,7 +6171,7 @@ 6169,1625,1624,5,6,56,111,63,50,0,12238,0,99999,0,0,2,4,0,2,1.5,1540.29042202,2340,0,36455.0,1,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,24303.3333333,7,4,7,7_0,21672.0,0,21672.0,0,4,6,0.0,0.0,0.0,0,1,2098.991355104779,2098.991355104779,0.0 6170,1626,1625,1,4,77,112,74,60,0,1224,0,0,0,0,0,6,0,2,1.5,3665.81681743,1274,0,36670.0,5,3,7,0,3,1,0,0,1,0,0,0,0,0,0,1,24446.6666667,7,4,7,7_1,15000.0,0,15000.0,0,4,4,0.0,0.0,0.0,0,0,1523.027021724771,1523.027021724771,0.0 6171,1634,1633,3,4,33,300,48,44,0,12250,0,550,0,0,2,6,1,3,1.8,2291.88806785,2900,0,41552.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,23084.4444444,7,4,7,7_1,13869.0,0,13869.0,0,2,4,146.4,38.6666666667,3.31,0,1,1408.1907842867233,1408.1907842867233,0.0 -6172,1638,1637,3,10,47,120,34,31,0,12260,0,0,40,0,2,7,2,4,2.1,3589.35829033,3607,0,49340.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,23495.238095200002,7,4,7,7_1,10859.0,0,6859.0,4000,1,4,249.0,56.6666666667,3.3,0,1,1102.5700285939527,696.4294894673469,406.1405391266056 +6172,1638,1637,3,10,47,120,34,31,0,12260,0,0,40,0,2,7,2,4,2.1,3589.35829033,3607,0,49340.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,23495.2380952,7,4,7,7_1,10859.0,0,6859.0,4000,1,4,249.0,56.6666666667,3.3,0,1,1102.5700285939527,696.4294894673469,406.1405391266056 6173,1646,1645,0,21,85,111,74,12,0,12275,0,0,0,0,0,7,0,2,1.5,2878.72641933,3120,0,35039.0,5,1,9,7,3,3,0,0,0,0,0,1,0,0,3,0,23359.3333333,7,4,7,7_0,500.0,0,0.0,500,14,14,0.0,0.0,0.0,0,0,48.42634171061229,0.0,48.42634171061229 6174,1647,1646,5,10,28,111,64,50,0,12276,0,0,100,0,2,2,0,2,1.5,2708.18285015,3973,0,37188.0,1,2,10,8,3,1,0,1,0,0,0,0,1,0,1,0,24792.0,7,4,7,7_0,12518.0,0,0.0,12518,1,10,162.0,60.0,0.0,1,0,1212.4018910668892,0.0,1212.4018910668892 6175,1649,1648,1,1,31,111,42,10,0,12279,0,100,0,0,1,2,0,1,1.0,3940.46976388,0,0,22328.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,22328.0,7,4,7,7_0,15500.0,0,15500.0,0,1,1,0.0,10.0,3.3,0,1,1501.216593028981,1501.216593028981,0.0 @@ -6181,7 +6181,7 @@ 6179,1678,1677,3,7,51,111,52,41,0,12316,0,150,0,700,1,5,0,1,1.0,2517.6510471,0,0,24010.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,0,1,24010.0,7,4,7,7_0,20000.0,0,20000.0,0,5,8,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 6180,1684,1683,0,0,27,111,52,50,0,12324,0,0,0,320,1,2,0,1,1.0,4231.97838059,0,0,24637.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,24637.0,7,4,7,7_0,0.0,0,0.0,0,0,0,49.5,80.0,5.55,0,0,0.0,0.0,0.0 6181,1697,1696,21,22,60,111,78,31,0,12342,0,0,0,290,1,4,1,3,2.0,3096.5512651,0,0,49278.0,5,3,8,7,4,1,0,0,0,0,0,1,0,0,1,0,24639.0,7,4,7,7_0,8000.0,0,0.0,8000,11,19,136.0,66.6666666667,5.57,0,0,774.8214673697967,0.0,774.8214673697967 -6182,1700,1699,3,7,39,111,43,10,0,12348,0,20,0,692,2,4,2,4,2.1,2342.45547835,0,0,46607.0,1,3,9,7,4,2,1,1,0,0,0,1,0,0,0,2,22193.809523800002,7,4,7,7_0,20000.0,0,20000.0,0,6,6,33.0,57.5,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 +6182,1700,1699,3,7,39,111,43,10,0,12348,0,20,0,692,2,4,2,4,2.1,2342.45547835,0,0,46607.0,1,3,9,7,4,2,1,1,0,0,0,1,0,0,0,2,22193.8095238,7,4,7,7_0,20000.0,0,20000.0,0,6,6,33.0,57.5,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 6183,1704,1703,0,14,59,111,55,50,0,12352,0,0,0,0,2,5,0,2,1.5,3614.47789598,2340,0,35956.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,23970.6666667,7,4,7,7_0,1000.0,0,0.0,1000,11,11,0.0,10.0,0.0,0,0,96.85268342122458,0.0,96.85268342122458 6184,1710,1709,0,0,45,111,56,60,0,12360,0,0,0,547,2,2,1,3,1.8,4947.22797939,0,0,42033.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,23351.6666667,7,4,7,7_0,0.0,0,0.0,0,0,0,157.0,90.0,5.57,0,0,0.0,0.0,0.0 6185,1720,1719,5,5,80,111,77,70,0,12372,0,0,0,460,0,5,0,1,1.0,3457.42524605,0,0,22410.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,22410.0,7,4,7,7_0,3000.0,0,3000.0,0,4,4,0.0,0.0,0.0,0,0,290.55805026367375,290.55805026367375,0.0 @@ -6210,14 +6210,14 @@ 6208,1952,1951,2,3,65,111,78,71,0,12684,0,0,0,0,0,3,0,2,1.5,3861.42037444,3036,0,33910.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,22606.6666667,7,4,7,7_0,18000.0,0,18000.0,0,3,3,0.0,0.0,0.0,0,0,1743.3483015820423,1743.3483015820423,0.0 6209,1959,1958,17,17,73,221,78,71,0,12694,0,0,0,0,0,4,0,1,1.0,2765.65073346,1560,0,23140.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,0,1,23140.0,7,4,7,7_0,5000.0,0,5000.0,0,18,18,0.0,0.0,0.0,0,0,484.26341710612286,484.26341710612286,0.0 6210,1974,1973,3,3,77,111,75,71,0,12712,0,0,0,0,0,3,0,2,1.5,1921.35976859,2167,0,35970.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,2,0,23980.0,7,4,7,7_0,9544.0,0,0.0,9544,7,7,0.0,0.0,0.0,0,0,924.3620105721674,0.0,924.3620105721674 -6211,1976,1975,2,9,42,111,45,42,0,12714,0,60,0,0,2,3,2,4,2.1,5719.39186976,2600,0,49321.0,1,2,4,4,4,1,0,1,0,0,1,0,0,0,0,1,23486.190476199998,7,4,7,7_0,17343.0,0,17343.0,0,1,7,0.0,14.5,1.12,0,0,1679.7160885742978,1679.7160885742978,0.0 +6211,1976,1975,2,9,42,111,45,42,0,12714,0,60,0,0,2,3,2,4,2.1,5719.39186976,2600,0,49321.0,1,2,4,4,4,1,0,1,0,0,1,0,0,0,0,1,23486.1904762,7,4,7,7_0,17343.0,0,17343.0,0,1,7,0.0,14.5,1.12,0,0,1679.7160885742978,1679.7160885742978,0.0 6212,1977,1976,1,1,57,111,62,50,1,12715,0,540,0,366,3,4,1,3,2.0,2302.39845781,4138,20400,48379.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,24189.5,7,4,7,7_0,6000.0,0,6000.0,0,2,3,134.0,20.0,0.0,0,1,581.1161005273475,581.1161005273475,0.0 -6213,1984,1983,3,14,36,112,62,43,0,12722,0,364,0,0,2,3,1,3,1.8,2014.2846934999998,0,0,40252.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,22362.222222200002,7,4,7,7_1,18000.0,0,18000.0,0,12,14,59.0,13.333333333299999,0.0,0,1,1827.6324260697252,1827.6324260697252,0.0 +6213,1984,1983,3,14,36,112,62,43,0,12722,0,364,0,0,2,3,1,3,1.8,2014.2846935,0,0,40252.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,22362.2222222,7,4,7,7_1,18000.0,0,18000.0,0,12,14,59.0,13.3333333333,0.0,0,1,1827.6324260697252,1827.6324260697252,0.0 6214,1996,1995,2,4,49,112,46,71,2,12737,0,700,150,0,3,4,1,3,2.0,2392.8511914,4368,16000,48644.0,1,1,6,0,4,3,0,1,1,0,0,0,0,0,1,2,24322.0,7,4,7,7_1,9000.0,0,9000.0,0,2,6,173.5,33.3333333333,3.3,0,1,913.8162130348626,913.8162130348626,0.0 6215,1997,1996,0,2,28,112,67,50,2,1274,0,400,120,0,2,4,0,2,1.5,3314.8516543,2890,14000,34695.0,1,3,6,0,3,2,0,1,1,0,0,0,0,0,1,1,23130.0,7,4,7,7_1,42000.0,0,42000.0,0,2,0,0.0,0.0,0.0,0,1,4264.475660829358,4264.475660829358,0.0 6216,2001,2000,13,13,81,111,77,70,0,12745,0,0,0,0,0,4,0,1,1.0,2956.52726081,0,0,24461.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,24461.0,7,4,7,7_0,5000.0,0,0.0,5000,12,12,0.0,0.0,0.0,0,0,484.26341710612286,0.0,484.26341710612286 6217,2003,2002,0,0,58,111,52,60,0,12747,0,0,0,296,1,4,0,1,1.0,3612.20496782,0,0,22110.0,1,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,22110.0,7,4,7,7_0,0.0,0,0.0,0,0,0,81.0,60.0,5.5,0,0,0.0,0.0,0.0 -6218,2009,2008,2,21,37,112,62,50,0,12755,0,120,0,0,2,4,2,4,2.1,2801.59178358,0,0,45560.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,21695.238095200002,7,4,7,7_0,26343.0,0,26343.0,0,3,17,157.0,20.5,3.31,0,1,2551.3902393653193,2551.3902393653193,0.0 +6218,2009,2008,2,21,37,112,62,50,0,12755,0,120,0,0,2,4,2,4,2.1,2801.59178358,0,0,45560.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,21695.2380952,7,4,7,7_0,26343.0,0,26343.0,0,3,17,157.0,20.5,3.31,0,1,2551.3902393653193,2551.3902393653193,0.0 6219,2023,2022,0,7,43,111,63,50,0,12781,0,0,740,0,2,4,2,4,2.1,1535.17494709,4852,0,46301.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,2,0,22048.0952381,7,4,7,7_0,5000.0,0,0.0,5000,6,6,0.0,30.0,5.5,0,1,484.26341710612286,0.0,484.26341710612286 6220,2024,2023,1,15,37,112,67,50,0,12782,0,0,0,0,1,4,0,1,1.0,1697.46364357,6469,0,22096.0,1,3,5,0,1,1,0,0,1,0,0,0,0,0,1,0,22096.0,7,4,7,7_1,15342.0,0,0.0,15342,6,16,49.6,35.0,3.3,0,1,1557.752037820096,0.0,1557.752037820096 6221,2050,2049,2,18,29,300,38,42,0,12816,0,100,300,0,2,6,2,4,2.1,1528.65358372,2033,0,48220.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,22961.9047619,7,4,7,7_1,18943.0,0,15000.0,3943,9,17,153.0,38.6666666667,3.3,0,1,1923.3800581688224,1523.027021724771,400.35303644405144 @@ -6228,7 +6228,7 @@ 6226,2116,2115,2,2,32,112,63,50,0,12901,0,400,120,0,2,5,2,4,2.1,1481.57518982,6123,0,50855.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,24216.6666667,7,4,7,7_1,21000.0,0,15000.0,6000,4,6,112.8,9.0,2.2,0,1,2132.237830414679,1523.027021724771,609.2108086899084 6227,2145,2144,3,9,64,111,72,50,0,12937,0,0,0,428,1,4,0,2,1.5,2309.38887543,8164,0,33020.0,5,3,7,5,3,2,0,0,0,0,1,0,0,0,0,2,22013.3333333,7,4,7,7_0,15000.0,0,15000.0,0,6,6,0.0,0.0,0.0,0,0,1452.7902513183687,1452.7902513183687,0.0 6228,2155,2154,0,0,42,111,54,43,1,12950,0,99999,99999,0,2,4,2,4,2.3,1471.63930728,1820,10500,54020.0,1,1,7,5,4,2,0,1,0,0,1,0,0,0,1,1,23486.9565217,7,4,7,7_0,33000.0,0,18000.0,15000,2,2,76.0,106.666666667,3.3,0,1,3196.138552900411,1743.3483015820423,1452.7902513183687 -6229,2157,2156,6,6,36,111,52,20,0,12952,0,0,105,0,1,3,1,2,1.3,3793.1732005999997,2600,0,28277.0,1,2,8,7,2,1,0,1,0,0,0,1,0,1,1,0,21751.5384615,7,4,7,7_0,20000.0,0,0.0,20000,3,5,0.0,0.0,0.0,0,1,1937.0536684244914,0.0,1937.0536684244914 +6229,2157,2156,6,6,36,111,52,20,0,12952,0,0,105,0,1,3,1,2,1.3,3793.1732006,2600,0,28277.0,1,2,8,7,2,1,0,1,0,0,0,1,0,1,1,0,21751.5384615,7,4,7,7_0,20000.0,0,0.0,20000,3,5,0.0,0.0,0.0,0,1,1937.0536684244914,0.0,1937.0536684244914 6230,2182,2181,6,6,70,112,71,70,0,12988,0,0,0,0,0,7,0,1,1.0,1535.84327262,2860,0,23913.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,23913.0,7,4,7,7_1,10000.0,0,0.0,10000,6,6,0.0,0.0,0.0,0,0,1015.351347816514,0.0,1015.351347816514 6231,2184,2183,8,10,55,112,52,41,0,12990,0,200,0,0,1,4,0,2,1.5,2419.21716948,2184,0,32668.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,1,1,21778.6666667,7,4,7,7_1,29000.0,0,22000.0,7000,7,7,0.0,23.0,3.3,0,1,2944.5189086678906,2233.772965196331,710.7459434715598 6232,2202,2201,0,0,63,111,77,60,2,13019,0,0,0,0,0,5,0,2,1.5,1958.82617813,2064,15300,34529.0,5,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,23019.3333333,7,4,7,7_0,18000.0,0,18000.0,0,3,3,0.0,0.0,0.0,0,0,1743.3483015820423,1743.3483015820423,0.0 @@ -6243,22 +6243,22 @@ 6241,2265,2264,2,2,69,111,77,70,0,1310,0,0,0,0,0,3,0,2,1.5,1838.06329411,1122,0,34663.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,23108.6666667,7,4,7,7_0,31000.0,0,21000.0,10000,3,3,0.0,0.0,0.0,0,0,3002.433186057962,2033.9063518457162,968.5268342122457 6242,2267,2266,12,12,36,111,35,20,0,13103,0,760,0,0,2,6,3,5,2.4,1924.34547555,3682,0,55462.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,23109.1666667,7,4,7,7_0,9000.0,0,9000.0,0,6,13,226.5,38.0,3.3,0,1,871.6741507910211,871.6741507910211,0.0 6243,2277,2276,7,7,30,111,54,31,0,1312,0,0,0,333,1,2,0,1,1.0,2062.70084204,0,0,22628.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,22628.0,7,4,7,7_0,150.0,0,150.0,0,9,9,0.0,0.0,0.0,0,1,14.527902513183687,14.527902513183687,0.0 -6244,2280,2279,1,1,78,300,78,50,1,13122,0,0,0,0,0,3,0,1,1.0,2580.2506101999998,0,12100,23260.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,23260.0,7,4,7,7_1,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,1015.351347816514,1015.351347816514,0.0 +6244,2280,2279,1,1,78,300,78,50,1,13122,0,0,0,0,0,3,0,1,1.0,2580.2506102,0,12100,23260.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,23260.0,7,4,7,7_1,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,1015.351347816514,1015.351347816514,0.0 6245,2289,2288,1,1,35,111,22,31,2,13141,0,1000,0,0,2,5,3,5,2.4,2086.33964824,0,50000,54067.0,1,2,8,7,4,3,1,1,0,0,0,1,0,0,1,2,22527.9166667,7,4,7,7_0,6859.0,0,6859.0,0,1,1,59.2,10.0,3.3,0,1,664.3125555861793,664.3125555861793,0.0 -6246,2292,2291,1,1,42,111,48,50,2,13152,0,350,150,0,2,3,1,3,2.0,1417.088166,0,20700,48515.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,1,1,24257.5,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.333333333299999,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 +6246,2292,2291,1,1,42,111,48,50,2,13152,0,350,150,0,2,3,1,3,2.0,1417.088166,0,20700,48515.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,1,1,24257.5,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.3333333333,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 6247,2316,2315,17,17,56,111,52,70,0,1318,0,0,0,313,1,4,0,2,1.5,2216.57558783,0,0,36146.0,1,3,8,7,3,1,0,0,0,0,0,1,0,0,1,0,24097.3333333,7,4,7,7_0,10000.0,0,0.0,10000,16,16,0.0,0.0,0.0,0,1,968.5268342122457,0.0,968.5268342122457 6248,2322,2321,2,2,29,111,46,41,0,13189,0,300,0,280,2,3,0,2,1.5,2190.52134645,1820,0,36495.0,1,3,8,7,3,1,0,1,0,0,0,1,0,0,0,1,24330.0,7,4,7,7_0,20000.0,0,20000.0,0,1,4,26.0,47.0,5.55,0,1,1937.0536684244914,1937.0536684244914,0.0 6249,2339,2338,1,4,71,111,75,60,2,13216,0,0,0,574,0,4,0,2,1.5,2635.61650441,0,12500,33134.0,5,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,22089.3333333,7,4,7,7_0,15000.0,0,15000.0,0,4,4,0.0,0.0,0.0,0,0,1452.7902513183687,1452.7902513183687,0.0 6250,2352,2351,3,8,38,112,43,10,0,13233,0,500,0,0,2,4,2,4,2.1,2927.08460172,1612,0,51241.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,24400.4761905,7,4,7,7_1,22500.0,0,22500.0,0,8,9,123.3,32.0,3.3,0,1,2284.5405325871566,2284.5405325871566,0.0 6251,2359,2358,1,4,75,111,77,70,2,13243,0,0,0,0,0,4,0,2,1.5,1468.55006124,3088,9200,32965.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,21976.6666667,7,4,7,7_0,1700.0,0,0.0,1700,2,2,0.0,0.0,0.0,0,0,164.64956181608176,0.0,164.64956181608176 -6252,2373,2372,4,12,46,112,65,50,0,13263,0,280,0,0,2,3,2,4,2.1,1727.03573892,3172,0,47995.0,1,3,10,0,4,2,0,1,1,0,0,0,0,0,0,2,22854.761904799998,7,4,7,7_1,85000.0,0,85000.0,0,3,14,556.5,65.0,3.3,0,1,8630.486456440369,8630.486456440369,0.0 +6252,2373,2372,4,12,46,112,65,50,0,13263,0,280,0,0,2,3,2,4,2.1,1727.03573892,3172,0,47995.0,1,3,10,0,4,2,0,1,1,0,0,0,0,0,0,2,22854.7619048,7,4,7,7_1,85000.0,0,85000.0,0,3,14,556.5,65.0,3.3,0,1,8630.486456440369,8630.486456440369,0.0 6253,2375,2374,2,2,66,112,75,70,0,13268,0,0,0,0,0,5,0,2,1.5,2267.95554106,2026,0,32830.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,0,2,21886.6666667,7,4,7,7_1,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1218.4216173798168,1218.4216173798168,0.0 6254,2388,2387,10,11,51,111,45,10,0,13282,0,0,0,1476,1,3,0,1,1.0,3120.40368749,0,0,23520.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,23520.0,7,4,7,7_0,12813.0,0,0.0,12813,1,7,55.5,50.0,3.3,0,1,1240.9734326761504,0.0,1240.9734326761504 6255,2395,2394,2,8,32,111,34,10,0,13290,0,0,60,0,1,3,0,1,1.0,3446.46977412,0,0,24081.0,1,1,10,8,1,1,1,1,0,0,0,0,1,0,1,0,24081.0,7,4,7,7_0,8000.0,0,0.0,8000,7,11,0.0,14.0,2.2,0,0,774.8214673697967,0.0,774.8214673697967 6256,2397,2396,10,10,64,120,75,43,0,13293,0,0,0,0,0,4,0,2,1.5,768.076004245,0,0,35170.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,23446.6666667,7,4,7,7_1,15000.0,0,15000.0,0,6,9,0.0,0.0,0.0,0,0,1523.027021724771,1523.027021724771,0.0 6257,2399,2398,0,0,78,111,77,50,0,13295,0,0,0,540,0,3,0,1,1.0,2982.91709215,0,0,22454.0,5,3,8,6,1,0,0,0,0,0,1,0,0,0,0,0,22454.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6258,2410,2409,14,14,78,112,74,60,0,13312,0,0,0,0,0,5,0,2,1.5,1105.11872215,0,0,33112.0,5,1,9,2,3,1,0,0,0,1,0,0,0,0,1,0,22074.6666667,7,4,7,7_0,2000.0,0,0.0,2000,8,15,0.0,0.0,0.0,0,0,193.70536684244917,0.0,193.70536684244917 -6259,2421,2420,4,6,47,120,52,50,0,13329,0,150,0,0,3,4,2,4,2.3,1845.93036072,0,0,54335.0,1,1,0,2,4,2,0,1,0,1,0,0,0,0,1,1,23623.9130435,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.333333333299999,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 +6259,2421,2420,4,6,47,120,52,50,0,13329,0,150,0,0,3,4,2,4,2.3,1845.93036072,0,0,54335.0,1,1,0,2,4,2,0,1,0,1,0,0,0,0,1,1,23623.9130435,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.3333333333,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 6260,2436,2435,13,13,70,112,78,50,0,13346,0,0,0,0,0,5,0,1,1.0,3626.15306906,2351,0,23864.0,5,1,7,0,1,1,0,0,1,0,0,0,0,1,1,0,23864.0,7,4,7,7_1,2000.0,0,0.0,2000,16,16,0.0,0.0,0.0,0,0,203.0702695633028,0.0,203.0702695633028 6261,2437,2436,10,10,49,300,13,50,0,13347,0,400,0,0,2,5,0,2,1.5,1496.19837958,2997,0,34175.0,1,1,0,0,3,1,0,1,1,0,0,0,0,0,0,1,22783.3333333,7,4,7,7_1,48000.0,0,48000.0,0,4,7,112.5,60.0,3.3,0,1,4873.686469519267,4873.686469519267,0.0 6262,2438,2437,2,6,48,111,48,71,0,13348,0,50,0,0,2,4,2,4,2.5,2769.17408772,3120,0,58733.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,0,1,23493.2,7,4,7,7_0,16000.0,0,16000.0,0,4,4,0.0,47.5,3.3,0,1,1549.6429347395933,1549.6429347395933,0.0 @@ -6275,13 +6275,13 @@ 6273,2551,2550,5,7,60,300,12,71,0,13523,0,690,0,0,5,4,3,5,3.0,1957.88883348,5876,0,65740.0,1,1,0,0,4,4,0,1,1,0,0,0,0,0,1,3,21913.3333333,7,4,7,7_1,2000.0,0,2000.0,0,3,8,286.4,45.0,3.32,0,1,203.0702695633028,203.0702695633028,0.0 6274,2556,2555,10,10,80,400,71,70,0,1353,0,0,0,0,0,4,0,1,1.0,2077.73600065,0,0,22300.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,0,1,22300.0,7,4,7,7_1,8000.0,0,8000.0,0,6,8,0.0,0.0,0.0,0,0,812.2810782532111,812.2810782532111,0.0 6275,2557,2556,8,8,45,111,52,50,0,13530,0,0,0,627,1,3,1,2,1.5,2133.8930394,1560,0,32590.0,1,3,7,5,2,1,0,0,0,0,1,0,0,0,0,1,21726.6666667,7,4,7,7_0,15000.0,0,15000.0,0,2,2,71.0,52.5,3.31,0,1,1452.7902513183687,1452.7902513183687,0.0 -6276,2559,2558,6,8,50,300,48,50,0,13534,0,200,0,0,1,6,0,1,1.0,3833.2589636999996,0,0,24070.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,1,24070.0,7,4,7,7_1,20000.0,0,20000.0,0,4,4,155.0,60.0,3.33,0,1,2030.702695633028,2030.702695633028,0.0 +6276,2559,2558,6,8,50,300,48,50,0,13534,0,200,0,0,1,6,0,1,1.0,3833.2589637,0,0,24070.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,1,24070.0,7,4,7,7_1,20000.0,0,20000.0,0,4,4,155.0,60.0,3.33,0,1,2030.702695633028,2030.702695633028,0.0 6277,2580,2579,3,3,63,111,77,50,0,13561,0,0,0,0,0,7,0,2,1.5,1600.00758689,2704,0,33131.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,22087.3333333,7,4,7,7_0,6959.0,0,6959.0,0,1,3,0.0,0.0,0.0,0,0,673.9978239283018,673.9978239283018,0.0 6278,2600,2599,6,6,38,221,21,50,0,13588,0,0,500,0,2,7,1,3,2.0,2607.97765592,6968,0,49227.0,1,2,1,3,4,2,1,1,0,1,0,0,0,0,2,0,24613.5,7,4,7,7_0,12362.0,0,0.0,12362,4,7,111.5,56.6666666667,3.3,0,1,1197.2928724531782,0.0,1197.2928724531782 6279,2612,2611,2,8,54,111,75,50,0,13601,0,0,0,0,0,5,0,1,1.0,2485.02537301,2600,0,21975.0,5,2,6,5,1,1,0,0,0,0,1,0,0,0,1,0,21975.0,7,4,7,7_0,12000.0,0,0.0,12000,10,10,0.0,0.0,0.0,0,0,1162.232201054695,0.0,1162.232201054695 6280,2636,2635,4,4,84,111,86,60,0,13629,0,0,0,0,0,3,0,1,1.0,2883.16901317,3883,0,23904.0,5,4,9,7,1,1,0,0,0,0,0,1,0,0,0,1,23904.0,7,4,7,7_0,3000.0,0,3000.0,0,4,4,0.0,0.0,0.0,0,0,290.55805026367375,290.55805026367375,0.0 6281,2638,2637,1,11,48,111,52,70,2,13631,0,0,500,0,4,7,4,5,3.0,1418.07240384,3838,900,68431.0,1,4,8,7,2,3,0,1,0,0,0,1,0,0,1,2,22810.3333333,7,4,7,7_0,140000.0,70000,70000.0,0,10,10,144.0,40.0,3.3,0,1,13559.37567897144,6779.68783948572,0.0 -6282,2658,2657,3,6,33,112,48,31,0,13659,0,500,0,0,2,5,1,3,1.8,2224.47981096,3983,0,42160.0,1,2,7,1,4,2,0,1,0,1,0,0,0,0,0,2,23422.222222200002,7,4,7,7_0,25887.0,0,25887.0,0,2,7,0.0,0.0,0.0,1,0,2507.2254157252405,2507.2254157252405,0.0 +6282,2658,2657,3,6,33,112,48,31,0,13659,0,500,0,0,2,5,1,3,1.8,2224.47981096,3983,0,42160.0,1,2,7,1,4,2,0,1,0,1,0,0,0,0,0,2,23422.2222222,7,4,7,7_0,25887.0,0,25887.0,0,2,7,0.0,0.0,0.0,1,0,2507.2254157252405,2507.2254157252405,0.0 6283,2659,2658,7,13,50,112,68,71,0,1366,0,370,0,0,2,4,0,2,1.5,2793.19346584,6034,0,34980.0,1,2,7,1,3,2,0,1,0,1,0,0,0,0,0,2,23320.0,7,4,7,7_0,12000.0,0,12000.0,0,7,11,193.5,35.0,3.3,0,1,1162.232201054695,1162.232201054695,0.0 6284,2665,2664,9,22,57,112,65,50,0,13668,0,150,0,0,1,5,0,1,1.0,1928.8541304,0,0,24452.0,1,2,7,4,1,2,0,1,0,0,1,0,0,0,0,2,24452.0,7,4,7,7_0,10000.0,0,10000.0,0,11,20,0.0,0.0,0.0,0,1,968.5268342122457,968.5268342122457,0.0 6285,2668,2667,1,10,32,111,47,42,0,13671,0,400,0,0,2,4,2,4,2.1,3059.30576753,3900,0,45789.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,0,2,21804.2857143,7,4,7,7_0,25000.0,0,25000.0,0,1,9,0.0,27.5,0.0,0,1,2421.3170855306143,2421.3170855306143,0.0 @@ -6304,23 +6304,23 @@ 6302,2892,2891,11,11,70,111,77,50,0,13962,0,0,0,350,0,2,0,1,1.0,2583.25333055,0,0,22204.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,0,1,22204.0,7,4,7,7_0,10000.0,0,10000.0,0,6,12,0.0,0.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 6303,2900,2899,3,4,55,111,52,71,0,13971,0,750,600,731,4,5,2,4,2.5,2152.06691598,1664,0,57511.0,1,3,7,5,4,3,0,1,0,0,1,0,0,0,1,2,23004.4,7,4,7,7_0,30000.0,0,20000.0,10000,6,8,240.0,35.0,3.3,0,1,2905.5805026367375,1937.0536684244914,968.5268342122457 6304,2927,2926,3,17,34,111,31,10,0,14002,0,0,20,0,2,4,2,4,2.1,1735.93122178,1560,0,48810.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,1,0,23242.8571429,7,4,7,7_0,6000.0,0,0.0,6000,12,21,40.5,12.5,3.3,0,1,581.1161005273475,0.0,581.1161005273475 -6305,2936,2935,3,4,46,111,37,30,0,14021,0,0,250,0,2,7,3,5,2.6,1612.98119196,2549,0,57576.0,1,1,7,6,4,1,0,1,0,0,1,0,0,0,1,0,22144.615384599998,7,4,7,7_0,8000.0,0,0.0,8000,5,8,0.0,0.0,0.0,0,0,774.8214673697967,0.0,774.8214673697967 +6305,2936,2935,3,4,46,111,37,30,0,14021,0,0,250,0,2,7,3,5,2.6,1612.98119196,2549,0,57576.0,1,1,7,6,4,1,0,1,0,0,1,0,0,0,1,0,22144.6153846,7,4,7,7_0,8000.0,0,0.0,8000,5,8,0.0,0.0,0.0,0,0,774.8214673697967,0.0,774.8214673697967 6306,2940,2939,0,0,59,111,67,71,0,14027,0,0,0,316,1,2,0,1,1.0,3072.68968571,0,0,23410.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,23410.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 6307,2946,2945,0,0,85,111,77,70,0,14037,0,0,0,372,0,2,0,1,1.0,2929.6379568,0,0,22217.0,5,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,22217.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6308,2978,2977,6,13,43,112,43,20,0,14072,0,150,0,0,1,4,1,2,1.5,1573.33419778,0,0,33204.0,1,2,7,1,2,1,0,1,0,1,0,0,0,0,0,1,22136.0,7,4,7,7_0,23001.0,0,23001.0,0,1,13,85.2,40.0,3.3,0,1,2227.7085713715865,2227.7085713715865,0.0 6309,2992,2991,8,15,64,111,46,50,0,14090,0,80,80,0,1,4,0,1,1.0,2210.26470451,1664,0,23968.0,1,4,8,7,1,2,0,1,0,0,0,1,0,0,1,1,23968.0,7,4,7,7_0,27000.0,0,15000.0,12000,3,6,315.5,120.0,3.3,0,1,2615.0224523730635,1452.7902513183687,1162.232201054695 6310,3021,3020,8,8,84,111,75,41,0,14128,0,0,0,0,0,6,0,2,1.5,1463.93026363,0,0,33705.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,22470.0,7,4,7,7_0,10000.0,0,0.0,10000,8,8,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 6311,3027,3026,6,7,56,300,52,71,0,14134,0,20,0,0,1,5,0,2,1.5,2677.97016959,1040,0,33110.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,22073.3333333,7,4,7,7_1,15000.0,0,15000.0,0,6,6,0.0,0.0,0.0,0,1,1523.027021724771,1523.027021724771,0.0 -6312,3037,3036,0,15,28,111,54,41,2,14147,0,0,100,670,2,4,1,3,1.8,3482.65149599,0,1500,39220.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,21788.888888900005,7,4,7,7_0,26784.0,0,0.0,26784,2,10,0.0,103.333333333,0.0,0,1,2594.102272754079,0.0,2594.102272754079 +6312,3037,3036,0,15,28,111,54,41,2,14147,0,0,100,670,2,4,1,3,1.8,3482.65149599,0,1500,39220.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,1,0,21788.8888889,7,4,7,7_0,26784.0,0,0.0,26784,2,10,0.0,103.333333333,0.0,0,1,2594.102272754079,0.0,2594.102272754079 6313,3048,3047,2,17,48,111,64,60,0,1416,0,99999,0,305,1,3,0,1,1.0,2992.30036538,2600,0,23360.0,1,3,10,8,1,2,0,1,0,0,0,0,1,0,1,1,23360.0,7,4,7,7_0,16000.0,0,16000.0,0,10,19,0.0,0.0,0.0,0,1,1549.6429347395933,1549.6429347395933,0.0 6314,3059,3058,15,15,78,111,75,70,0,14174,0,0,0,0,0,4,0,1,1.0,1238.84469597,0,0,21704.0,5,1,4,4,1,1,0,0,0,0,1,0,0,0,1,0,21704.0,7,4,7,7_0,3000.0,0,0.0,3000,15,15,0.0,0.0,0.0,0,0,290.55805026367375,0.0,290.55805026367375 -6315,3073,3072,2,5,39,111,67,50,0,14195,0,99999,99999,0,2,4,1,3,1.8,2992.87812354,0,0,41875.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,23263.888888900005,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.333333333299999,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 +6315,3073,3072,2,5,39,111,67,50,0,14195,0,99999,99999,0,2,4,1,3,1.8,2992.87812354,0,0,41875.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,23263.8888889,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.3333333333,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 6316,3080,3079,2,2,68,111,75,50,0,14200,0,0,0,0,0,5,0,1,1.0,4839.72440807,3510,0,22574.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,22574.0,7,4,7,7_0,3000.0,0,3000.0,0,12,0,0.0,0.0,0.0,0,0,290.55805026367375,290.55805026367375,0.0 6317,3098,3097,8,9,39,111,43,20,0,14223,0,0,0,0,2,4,2,4,2.3,3272.81858154,0,0,52542.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,1,0,22844.3478261,7,4,7,7_0,5000.0,5000,0.0,0,5,10,114.4,29.0,2.2,0,1,484.26341710612286,0.0,0.0 6318,3109,3108,2,4,36,221,53,60,0,14239,0,60,0,0,2,3,1,3,1.8,2861.17538369,2600,0,41327.0,1,3,1,2,4,2,0,0,0,1,0,0,0,0,1,1,22959.4444444,7,4,7,7_0,19792.0,0,12500.0,7292,4,10,54.5,20.0,3.3,0,1,1916.9083102728769,1210.6585427653072,706.2497675075696 -6319,3112,3111,2,3,29,112,45,33,0,14243,0,520,0,0,2,5,2,4,2.1,2366.06728749,6860,0,50135.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,0,2,23873.809523800002,7,4,7,7_1,40000.0,0,40000.0,0,2,5,114.0,15.0,3.3,0,1,4061.405391266056,4061.405391266056,0.0 +6319,3112,3111,2,3,29,112,45,33,0,14243,0,520,0,0,2,5,2,4,2.1,2366.06728749,6860,0,50135.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,0,2,23873.8095238,7,4,7,7_1,40000.0,0,40000.0,0,2,5,114.0,15.0,3.3,0,1,4061.405391266056,4061.405391266056,0.0 6320,3130,3129,11,11,54,111,55,41,0,1427,0,0,0,0,1,2,0,1,1.0,2331.13615114,0,0,22170.0,1,2,8,7,1,1,0,0,0,0,0,1,0,0,0,1,22170.0,7,4,7,7_0,20000.0,0,20000.0,0,5,8,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 -6321,3131,3130,7,9,30,300,47,31,0,14271,0,70,0,0,2,5,1,3,1.8,5924.05721212,0,0,39211.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,0,2,21783.888888900005,7,4,7,7_0,7750.0,0,7750.0,0,5,8,0.0,61.3333333333,3.3,0,1,750.6082965144905,750.6082965144905,0.0 +6321,3131,3130,7,9,30,300,47,31,0,14271,0,70,0,0,2,5,1,3,1.8,5924.05721212,0,0,39211.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,0,2,21783.8888889,7,4,7,7_0,7750.0,0,7750.0,0,5,8,0.0,61.3333333333,3.3,0,1,750.6082965144905,750.6082965144905,0.0 6322,3132,3131,4,6,34,111,63,43,0,14272,0,100,0,600,1,3,0,1,1.0,2912.72934023,0,0,23060.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,23060.0,7,4,7,7_0,7572.0,0,7572.0,0,1,8,216.0,120.0,3.3,0,0,733.3685188655126,733.3685188655126,0.0 6323,3134,3133,15,21,57,111,54,42,0,14275,0,0,50,0,1,5,1,3,2.0,1639.47611034,1652,0,46683.0,1,1,9,7,4,3,0,0,0,0,0,1,0,0,2,1,23341.5,7,4,7,7_0,7000.0,0,4000.0,3000,19,19,0.0,0.0,0.0,0,1,677.9687839485721,387.41073368489833,290.55805026367375 6324,3143,3142,9,9,87,211,78,50,0,14286,0,0,0,0,0,5,0,1,1.0,1337.58945693,2600,0,22517.0,5,1,3,4,1,1,0,0,0,0,1,0,0,0,1,0,22517.0,7,4,7,7_0,2500.0,0,0.0,2500,10,10,0.0,0.0,0.0,0,0,242.13170855306143,0.0,242.13170855306143 @@ -6335,7 +6335,7 @@ 6333,3224,3223,3,3,63,111,77,70,0,14401,0,0,0,0,0,6,0,2,1.5,2666.86898783,0,0,35200.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,23466.6666667,7,4,7,7_0,18000.0,0,18000.0,0,3,3,0.0,0.0,0.0,0,0,1743.3483015820423,1743.3483015820423,0.0 6334,3258,3257,2,2,56,111,33,50,0,14453,0,200,0,0,3,5,2,4,2.5,1786.21939918,0,0,57642.0,1,1,7,5,4,2,0,1,0,0,1,0,0,0,0,2,23056.8,7,4,7,7_0,10000.0,0,10000.0,0,3,3,0.0,21.25,3.3,1,0,968.5268342122457,968.5268342122457,0.0 6335,3281,3280,2,6,49,112,21,50,0,14486,0,0,0,0,1,4,3,5,2.6,1432.18940971,3640,0,58292.0,1,3,4,0,4,2,0,0,1,0,0,0,0,0,0,2,22420.0,7,4,7,7_1,28000.0,0,28000.0,0,6,8,0.0,0.0,0.0,0,1,2842.9837738862393,2842.9837738862393,0.0 -6336,3285,3284,1,4,45,111,46,41,2,14492,0,60,0,0,2,5,1,3,2.0,1230.95120526,0,12000,44082.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,0,2,22041.0,7,4,7,7_0,40000.0,0,40000.0,0,4,4,0.0,13.333333333299999,0.0,0,1,3874.107336848983,3874.107336848983,0.0 +6336,3285,3284,1,4,45,111,46,41,2,14492,0,60,0,0,2,5,1,3,2.0,1230.95120526,0,12000,44082.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,0,2,22041.0,7,4,7,7_0,40000.0,0,40000.0,0,4,4,0.0,13.3333333333,0.0,0,1,3874.107336848983,3874.107336848983,0.0 6337,3307,3306,0,0,56,111,45,60,0,14526,0,0,0,0,2,3,1,2,1.5,2453.0495922,0,0,36514.0,1,2,10,8,2,0,0,0,0,0,0,0,1,0,0,0,24342.6666667,7,4,7,7_0,0.0,0,0.0,0,0,0,126.0,142.5,5.5,0,0,0.0,0.0,0.0 6338,3333,3332,4,9,44,111,64,43,0,14558,0,200,0,240,1,2,0,1,1.0,3794.64158481,0,0,23102.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,23102.0,7,4,7,7_0,30000.0,0,30000.0,0,6,6,0.0,0.0,0.0,0,1,2905.5805026367375,2905.5805026367375,0.0 6339,3345,3344,11,11,56,221,21,50,0,14573,0,0,0,0,2,6,1,3,2.0,2565.05921506,0,0,47685.0,1,1,1,2,4,1,0,0,0,1,0,0,0,0,1,0,23842.5,7,4,7,7_0,5915.0,0,0.0,5915,15,15,0.0,0.0,0.0,0,0,572.8836224365433,0.0,572.8836224365433 @@ -6354,7 +6354,7 @@ 6352,3468,3467,3,4,38,111,37,20,0,14737,0,0,0,0,2,3,1,3,1.8,2142.76988348,0,0,44421.0,4,2,8,6,4,1,0,0,0,0,1,0,0,0,0,1,24678.3333333,7,4,7,7_0,10000.0,0,10000.0,0,4,7,0.0,0.0,0.0,0,1,968.5268342122457,968.5268342122457,0.0 6353,3474,3473,5,5,32,111,37,31,0,14745,0,99999,0,0,1,3,3,5,2.4,3702.31327147,3120,0,57800.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,24083.3333333,7,4,7,7_0,10000.0,0,10000.0,0,4,7,0.0,9.2,3.31,0,1,968.5268342122457,968.5268342122457,0.0 6354,3478,3477,8,15,56,112,55,70,0,14752,0,0,150,0,1,5,0,1,1.0,1920.39002292,1040,0,21800.0,1,4,7,4,1,1,0,1,0,0,1,0,0,0,1,0,21800.0,7,4,7,7_0,5000.0,0,0.0,5000,7,17,0.0,0.0,0.0,0,1,484.26341710612286,0.0,484.26341710612286 -6355,3489,3488,1,6,53,111,63,71,2,14768,0,100019,0,435,3,4,2,4,2.3,2518.55403549,2496,9000,52832.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,22970.434782599998,7,4,7,7_0,6859.0,0,6859.0,0,1,0,550.5,35.0,5.57,0,1,664.3125555861793,664.3125555861793,0.0 +6355,3489,3488,1,6,53,111,63,71,2,14768,0,100019,0,435,3,4,2,4,2.3,2518.55403549,2496,9000,52832.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,22970.4347826,7,4,7,7_0,6859.0,0,6859.0,0,1,0,550.5,35.0,5.57,0,1,664.3125555861793,664.3125555861793,0.0 6356,3491,3490,0,0,53,112,52,50,0,14770,0,0,0,0,1,4,0,1,1.0,2253.17213309,0,0,21902.0,1,3,7,0,1,0,0,0,1,0,0,0,0,0,0,0,21902.0,7,4,7,7_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6357,3492,3491,2,3,60,111,77,60,0,14771,0,0,0,0,0,4,0,2,1.5,1641.63247294,5271,0,33559.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,2,0,22372.6666667,7,4,7,7_0,4000.0,0,0.0,4000,6,7,0.0,0.0,0.0,0,0,387.41073368489833,0.0,387.41073368489833 6358,3495,3494,6,8,62,112,75,50,0,14775,0,0,0,0,0,4,0,2,1.5,1563.8519138,4513,0,34033.0,5,1,4,0,3,1,0,0,1,0,0,0,0,0,0,1,22688.6666667,7,4,7,7_1,12000.0,0,12000.0,0,5,10,0.0,0.0,0.0,0,0,1218.4216173798168,1218.4216173798168,0.0 @@ -6368,14 +6368,14 @@ 6366,3682,3681,0,3,52,120,85,50,0,15031,0,0,0,0,1,6,0,2,1.5,3890.9341195,0,0,36908.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,24605.3333333,7,4,7,7_1,42572.0,0,42572.0,0,2,3,0.0,0.0,0.0,0,1,4322.553757924463,4322.553757924463,0.0 6367,3688,3687,2,5,63,112,78,50,0,15037,0,0,0,0,0,5,0,2,1.5,1452.88311619,0,0,32590.0,5,1,9,1,3,3,0,0,0,1,0,0,0,0,1,2,21726.6666667,7,4,7,7_0,18000.0,0,18000.0,0,3,3,0.0,0.0,0.0,0,0,1743.3483015820423,1743.3483015820423,0.0 6368,3689,3688,18,21,81,112,78,70,0,15038,0,0,0,0,0,7,1,2,1.5,1788.47324956,2496,0,36486.0,5,1,8,0,2,2,0,0,1,0,0,0,0,0,1,1,24324.0,7,4,7,7_1,27000.0,0,15000.0,12000,21,22,0.0,0.0,0.0,0,0,2741.4486391045875,1523.027021724771,1218.4216173798168 -6369,3700,3699,1,1,37,120,34,20,1,15050,0,30,0,0,1,5,0,1,1.0,2335.7102950999997,0,11660,23698.0,1,2,0,1,1,1,1,1,0,1,0,0,0,0,0,1,23698.0,7,4,7,7_0,9716.0,0,9716.0,0,0,2,0.0,10.0,3.3,1,1,941.0206721206181,941.0206721206181,0.0 +6369,3700,3699,1,1,37,120,34,20,1,15050,0,30,0,0,1,5,0,1,1.0,2335.7102951,0,11660,23698.0,1,2,0,1,1,1,1,1,0,1,0,0,0,0,0,1,23698.0,7,4,7,7_0,9716.0,0,9716.0,0,0,2,0.0,10.0,3.3,1,1,941.0206721206181,941.0206721206181,0.0 6370,3724,3723,0,0,31,111,37,20,0,15082,0,0,0,498,1,2,0,1,1.0,3046.24383938,0,0,24711.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,24711.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,60.0,1.1,0,0,0.0,0.0,0.0 6371,3735,3734,3,6,34,112,46,20,0,15097,0,370,0,0,2,5,2,4,2.1,1836.06498131,0,0,47104.0,1,3,7,2,4,2,0,1,0,1,0,0,0,0,0,2,22430.4761905,7,4,7,7_0,22000.0,0,22000.0,0,2,3,278.0,48.75,3.3,0,0,2130.759035266941,2130.759035266941,0.0 6372,3737,3736,1,5,46,111,37,50,2,151,0,250,0,0,3,6,2,4,2.5,1872.44741392,406,7000,61962.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,24784.8,7,4,7,7_0,45000.0,0,45000.0,0,5,5,0.0,14.75,3.3,1,1,4358.370753955106,4358.370753955106,0.0 6373,3742,3741,15,19,44,300,62,50,0,15105,0,0,100,0,2,5,2,3,2.0,3078.79447054,2132,0,46721.0,1,1,0,0,2,2,0,1,1,0,0,0,0,0,1,1,23360.5,7,4,7,7_1,17808.0,0,14408.0,3400,7,18,71.4,43.3333333333,3.31,0,1,1808.137680191648,1462.9182219340332,345.21945825761475 6374,3744,3743,0,6,43,112,47,50,2,15107,0,380,0,0,2,5,2,4,2.3,1672.62079169,2707,10000,53557.0,1,2,7,0,4,3,0,1,1,0,0,0,0,0,0,3,23285.6521739,7,4,7,7_1,25000.0,0,25000.0,0,4,4,155.4,45.0,3.3,0,1,2538.378369541285,2538.378369541285,0.0 6375,3762,3761,0,3,39,111,63,50,2,15133,0,300,0,0,2,1,1,3,1.8,3206.16598579,2340,5000,41228.0,1,4,10,8,4,1,0,1,0,0,0,0,1,0,0,1,22904.4444444,7,4,7,7_0,15000.0,0,15000.0,0,3,3,110.9,63.3333333333,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 -6376,3777,3776,1,10,33,111,65,43,0,15154,0,650,0,0,2,4,1,3,1.8,3760.00955585,4369,0,41684.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,23157.777777799998,7,4,7,7_0,15000.0,0,15000.0,0,8,10,170.4,45.0,3.31,0,1,1452.7902513183687,1452.7902513183687,0.0 +6376,3777,3776,1,10,33,111,65,43,0,15154,0,650,0,0,2,4,1,3,1.8,3760.00955585,4369,0,41684.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,23157.7777778,7,4,7,7_0,15000.0,0,15000.0,0,8,10,170.4,45.0,3.31,0,1,1452.7902513183687,1452.7902513183687,0.0 6377,3779,3778,2,7,72,400,46,50,0,15156,0,0,0,0,1,5,0,2,1.5,2343.89896084,0,0,35364.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,23576.0,7,4,7,7_1,16000.0,0,16000.0,0,6,8,0.0,0.0,0.0,0,1,1624.5621565064223,1624.5621565064223,0.0 6378,3782,3781,1,1,79,120,78,70,0,15160,0,0,0,0,0,3,0,2,1.5,3357.71142963,0,0,32986.0,5,1,0,3,5,1,0,0,0,1,0,0,0,0,0,1,21990.6666667,7,4,7,7_0,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 6379,3792,3791,12,19,58,111,64,70,0,15177,0,0,400,329,1,3,0,1,1.0,2742.37426698,3817,0,22283.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,22283.0,7,4,7,7_0,8000.0,0,0.0,8000,9,10,0.0,16.0,1.1,0,0,774.8214673697967,0.0,774.8214673697967 @@ -6393,51 +6393,51 @@ 6391,3917,3916,2,2,48,112,62,60,0,15362,0,0,50,0,2,5,0,2,1.5,1523.01136804,0,0,32919.0,1,1,8,0,3,1,0,1,1,0,0,0,0,0,1,0,21946.0,7,4,7,7_1,14000.0,0,0.0,14000,5,8,60.6,28.0,2.2,0,1,1421.4918869431197,0.0,1421.4918869431197 6392,3925,3924,11,11,66,111,74,60,0,15371,0,0,0,0,0,3,0,2,1.5,3217.82961179,0,0,33774.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,22516.0,7,4,7,7_0,18000.0,0,0.0,18000,4,11,0.0,0.0,0.0,0,0,1743.3483015820423,0.0,1743.3483015820423 6393,3939,3938,1,2,27,112,47,43,0,15389,0,600,0,0,1,4,0,1,1.0,3501.70817373,0,0,23121.0,1,2,5,0,1,1,0,1,1,0,0,0,0,0,0,1,23121.0,7,4,7,7_1,29000.0,0,29000.0,0,3,3,207.5,60.0,3.3,0,1,2944.5189086678906,2944.5189086678906,0.0 -6394,3943,3942,6,13,47,112,46,41,0,15393,0,0,120,816,1,3,1,2,1.3,2327.98644319,3502,0,31819.0,1,3,10,4,2,1,1,1,0,0,1,0,0,0,1,0,24476.153846200003,7,4,7,7_0,13000.0,0,0.0,13000,10,14,48.0,40.0,3.31,1,1,1259.0848844759196,0.0,1259.0848844759196 +6394,3943,3942,6,13,47,112,46,41,0,15393,0,0,120,816,1,3,1,2,1.3,2327.98644319,3502,0,31819.0,1,3,10,4,2,1,1,1,0,0,1,0,0,0,1,0,24476.1538462,7,4,7,7_0,13000.0,0,0.0,13000,10,14,48.0,40.0,3.31,1,1,1259.0848844759196,0.0,1259.0848844759196 6395,3953,3952,0,20,35,112,43,20,0,15406,0,680,0,0,2,5,2,4,2.1,2512.45762419,2978,0,47172.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,2,22462.8571429,7,4,7,7_1,18000.0,0,18000.0,0,3,13,0.0,25.0,3.3,0,1,1827.6324260697252,1827.6324260697252,0.0 -6396,3970,3969,11,11,41,111,37,10,0,1543,0,0,0,0,1,4,2,4,2.1,3419.91005094,0,0,51865.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,24697.619047599997,7,4,7,7_0,15000.0,0,0.0,15000,6,10,53.5,35.0,5.56,0,0,1452.7902513183687,0.0,1452.7902513183687 +6396,3970,3969,11,11,41,111,37,10,0,1543,0,0,0,0,1,4,2,4,2.1,3419.91005094,0,0,51865.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,24697.6190476,7,4,7,7_0,15000.0,0,0.0,15000,6,10,53.5,35.0,5.56,0,0,1452.7902513183687,0.0,1452.7902513183687 6397,3975,3974,0,0,84,111,75,20,1,15436,0,0,0,0,0,4,0,2,1.5,1721.13141641,4992,20700,34547.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,2,0,23031.3333333,7,4,7,7_0,1500.0,0,0.0,1500,10,10,0.0,0.0,0.0,0,0,145.27902513183687,0.0,145.27902513183687 -6398,3986,3985,4,8,38,112,67,43,0,15453,0,803,0,0,2,5,2,4,2.1,2111.58838685,0,0,49967.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,23793.809523800002,7,4,7,7_1,22500.0,0,22500.0,0,8,9,123.3,32.0,3.3,0,1,2284.5405325871566,2284.5405325871566,0.0 -6399,3993,3992,1,3,35,111,54,31,2,15463,0,400,100,0,2,5,1,3,1.8,2058.44152358,4160,19000,40900.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,22722.222222200002,7,4,7,7_0,16859.0,0,6859.0,10000,1,1,71.5,28.6666666667,3.3,0,1,1632.8393897984251,664.3125555861793,968.5268342122457 +6398,3986,3985,4,8,38,112,67,43,0,15453,0,803,0,0,2,5,2,4,2.1,2111.58838685,0,0,49967.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,23793.8095238,7,4,7,7_1,22500.0,0,22500.0,0,8,9,123.3,32.0,3.3,0,1,2284.5405325871566,2284.5405325871566,0.0 +6399,3993,3992,1,3,35,111,54,31,2,15463,0,400,100,0,2,5,1,3,1.8,2058.44152358,4160,19000,40900.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,22722.2222222,7,4,7,7_0,16859.0,0,6859.0,10000,1,1,71.5,28.6666666667,3.3,0,1,1632.8393897984251,664.3125555861793,968.5268342122457 6400,3999,3998,7,7,77,111,75,44,0,15472,0,0,0,0,0,3,0,2,1.5,2043.92811072,3110,0,32860.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,21906.6666667,7,4,7,7_0,3000.0,0,2500.0,500,7,7,0.0,0.0,0.0,0,0,290.55805026367375,242.13170855306143,48.42634171061229 -6401,4001,4000,2,3,42,111,38,12,0,15475,0,0,99999,0,1,9,3,5,2.6,1070.50561077,0,0,57587.0,1,1,8,7,4,2,0,0,0,0,0,1,0,0,1,1,22148.846153799997,7,4,7,7_0,29000.0,0,25000.0,4000,2,3,142.0,21.2,3.3,0,1,2808.7278192155127,2421.3170855306143,387.41073368489833 +6401,4001,4000,2,3,42,111,38,12,0,15475,0,0,99999,0,1,9,3,5,2.6,1070.50561077,0,0,57587.0,1,1,8,7,4,2,0,0,0,0,0,1,0,0,1,1,22148.8461538,7,4,7,7_0,29000.0,0,25000.0,4000,2,3,142.0,21.2,3.3,0,1,2808.7278192155127,2421.3170855306143,387.41073368489833 6402,4007,4006,0,0,31,111,43,20,1,15485,0,170,0,394,1,2,0,1,1.0,2143.21896767,0,21000,23487.0,1,3,5,4,1,1,0,1,0,0,1,0,0,0,0,1,23487.0,7,4,7,7_0,15500.0,0,15500.0,0,1,1,0.0,10.0,3.3,0,1,1501.216593028981,1501.216593028981,0.0 6403,4019,4018,21,21,80,111,77,50,0,1550,0,0,0,458,0,3,0,1,1.0,1495.22622125,0,0,22802.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,1,0,22802.0,7,4,7,7_0,610.0,0,0.0,610,4,19,0.0,0.0,0.0,0,0,59.080136886946995,0.0,59.080136886946995 6404,4036,4035,3,3,70,112,78,70,0,1552,0,0,0,0,0,4,0,2,1.5,1860.6491928,2271,0,33119.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,22079.3333333,7,4,7,7_1,24000.0,0,20000.0,4000,8,10,0.0,0.0,0.0,0,0,2436.8432347596336,2030.702695633028,406.1405391266056 6405,4040,4039,7,9,63,112,77,41,0,15523,0,0,0,0,0,4,0,2,1.5,2449.51504151,3878,0,36469.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,0,2,24312.6666667,7,4,7,7_1,15000.0,0,15000.0,0,6,9,0.0,0.0,0.0,0,0,1523.027021724771,1523.027021724771,0.0 -6406,4059,4058,5,5,82,120,78,71,0,15552,0,0,0,0,0,5,0,1,1.0,3702.3243501999996,0,0,21824.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,21824.0,7,4,7,7_1,3000.0,0,0.0,3000,2,8,0.0,0.0,0.0,0,0,304.6054043449542,0.0,304.6054043449542 +6406,4059,4058,5,5,82,120,78,71,0,15552,0,0,0,0,0,5,0,1,1.0,3702.3243502,0,0,21824.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,21824.0,7,4,7,7_1,3000.0,0,0.0,3000,2,8,0.0,0.0,0.0,0,0,304.6054043449542,0.0,304.6054043449542 6407,4060,4059,1,1,51,112,47,50,1,15555,0,100,0,0,2,5,1,3,2.0,1387.3478887,1560,25632,45358.0,1,3,9,0,4,2,0,1,1,0,0,0,0,0,0,2,22679.0,7,4,7,7_1,15000.0,0,15000.0,0,3,4,0.0,0.0,0.0,0,1,1523.027021724771,1523.027021724771,0.0 6408,4063,4062,0,11,25,111,55,60,0,15559,0,70,100,300,2,2,0,2,1.5,3917.53425752,0,0,32703.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,1,1,21802.0,7,4,7,7_0,30000.0,0,15000.0,15000,7,7,74.8,72.5,3.3,0,1,2905.5805026367375,1452.7902513183687,1452.7902513183687 -6409,4064,4063,1,1,43,111,42,10,1,15560,0,0,0,651,2,3,1,3,1.8,2553.65775164,0,8591,41998.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,0,23332.222222200002,7,4,7,7_0,30000.0,0,0.0,30000,7,0,0.0,13.333333333299999,1.1,1,0,2905.5805026367375,0.0,2905.5805026367375 +6409,4064,4063,1,1,43,111,42,10,1,15560,0,0,0,651,2,3,1,3,1.8,2553.65775164,0,8591,41998.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,0,23332.2222222,7,4,7,7_0,30000.0,0,0.0,30000,7,0,0.0,13.3333333333,1.1,1,0,2905.5805026367375,0.0,2905.5805026367375 6410,4081,4080,2,9,28,112,67,42,0,15585,0,120,0,397,1,2,0,1,1.0,4073.43600303,2600,0,23046.0,1,3,10,4,1,1,0,1,0,0,1,0,0,0,0,1,23046.0,7,4,7,7_0,150.0,0,150.0,0,9,9,0.0,0.0,0.0,0,1,14.527902513183687,14.527902513183687,0.0 -6411,4088,4087,6,6,39,111,38,10,0,15596,0,100199,0,0,2,5,2,4,2.1,2409.16014909,0,0,51951.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,24738.571428599997,7,4,7,7_0,20000.0,0,20000.0,0,6,6,33.0,57.5,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 +6411,4088,4087,6,6,39,111,38,10,0,15596,0,100199,0,0,2,5,2,4,2.1,2409.16014909,0,0,51951.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,24738.5714286,7,4,7,7_0,20000.0,0,20000.0,0,6,6,33.0,57.5,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 6412,4093,4092,13,25,75,112,78,70,0,15606,0,0,0,0,0,3,0,1,1.0,2511.02007126,0,0,21750.0,5,1,6,0,1,2,0,0,1,0,0,0,0,0,2,0,21750.0,7,4,7,7_1,600.0,0,0.0,600,26,26,0.0,0.0,0.0,0,0,60.92108086899084,0.0,60.92108086899084 6413,4110,4109,2,2,53,112,46,41,0,15627,0,0,260,0,1,5,1,2,1.5,2227.50174655,2601,0,34002.0,1,2,7,0,2,1,0,1,1,0,0,0,0,0,1,0,22668.0,7,4,7,7_1,15000.0,0,0.0,15000,4,5,77.5,40.0,3.32,0,0,1523.027021724771,0.0,1523.027021724771 6414,4116,4115,7,9,35,111,53,42,0,15635,0,122,72,0,2,4,1,3,1.8,2056.28930556,0,0,42717.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,23731.6666667,7,4,7,7_0,19792.0,0,12500.0,7292,4,10,54.5,20.0,3.3,0,1,1916.9083102728769,1210.6585427653072,706.2497675075696 -6415,4119,4118,5,5,30,120,46,43,0,15641,0,900,0,0,1,4,1,2,1.3,2029.60238571,3810,0,29881.0,1,4,0,0,2,1,0,1,1,0,0,0,0,0,0,1,22985.384615400002,7,4,7,7_1,30000.0,0,30000.0,0,3,5,0.0,0.0,0.0,0,1,3046.054043449542,3046.054043449542,0.0 -6416,4174,4173,1,1,44,300,52,50,0,15730,0,150,99999,0,3,6,3,5,2.8,939.3426373039999,3276,0,62040.0,1,1,0,0,4,3,0,1,1,0,0,0,0,0,1,2,22157.1428571,7,4,7,7_1,30000.0,0,30000.0,0,8,0,35.0,30.8,2.24,0,1,3046.054043449542,3046.054043449542,0.0 +6415,4119,4118,5,5,30,120,46,43,0,15641,0,900,0,0,1,4,1,2,1.3,2029.60238571,3810,0,29881.0,1,4,0,0,2,1,0,1,1,0,0,0,0,0,0,1,22985.3846154,7,4,7,7_1,30000.0,0,30000.0,0,3,5,0.0,0.0,0.0,0,1,3046.054043449542,3046.054043449542,0.0 +6416,4174,4173,1,1,44,300,52,50,0,15730,0,150,99999,0,3,6,3,5,2.8,939.342637304,3276,0,62040.0,1,1,0,0,4,3,0,1,1,0,0,0,0,0,1,2,22157.1428571,7,4,7,7_1,30000.0,0,30000.0,0,8,0,35.0,30.8,2.24,0,1,3046.054043449542,3046.054043449542,0.0 6417,4182,4181,8,8,66,112,75,33,0,15744,0,0,0,0,0,4,0,1,1.0,2130.14138143,4290,0,23624.0,5,1,8,1,1,1,0,0,0,1,0,0,0,0,0,1,23624.0,7,4,7,7_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 -6418,4196,4195,8,8,39,111,38,10,0,15761,0,500,0,0,2,3,2,4,2.1,2960.5730865,0,0,49324.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,23487.619047599997,7,4,7,7_0,9000.0,0,9000.0,0,5,6,118.0,26.0,5.57,0,0,871.6741507910211,871.6741507910211,0.0 -6419,4206,4205,1,1,51,111,38,10,0,15775,140,0,0,0,2,4,2,3,2.0,988.3790534039999,2522,0,43914.0,1,3,7,5,2,1,0,1,0,0,1,0,0,0,0,0,21957.0,7,4,7,7_0,10000.0,0,0.0,10000,0,0,0.0,40.0,3.3,0,1,968.5268342122457,0.0,968.5268342122457 +6418,4196,4195,8,8,39,111,38,10,0,15761,0,500,0,0,2,3,2,4,2.1,2960.5730865,0,0,49324.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,23487.6190476,7,4,7,7_0,9000.0,0,9000.0,0,5,6,118.0,26.0,5.57,0,0,871.6741507910211,871.6741507910211,0.0 +6419,4206,4205,1,1,51,111,38,10,0,15775,140,0,0,0,2,4,2,3,2.0,988.379053404,2522,0,43914.0,1,3,7,5,2,1,0,1,0,0,1,0,0,0,0,0,21957.0,7,4,7,7_0,10000.0,0,0.0,10000,0,0,0.0,40.0,3.3,0,1,968.5268342122457,0.0,968.5268342122457 6420,4214,4213,1,11,30,111,42,20,2,15783,1300,0,0,0,2,4,2,4,2.1,1731.29656516,6500,3000,46380.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,0,22085.7142857,7,4,7,7_0,16000.0,0,0.0,16000,9,9,93.3,37.5,3.3,0,1,1549.6429347395933,0.0,1549.6429347395933 6421,4220,4219,3,4,38,112,63,43,0,1579,0,100,0,0,2,5,3,5,2.4,1319.79830506,1920,0,56566.0,1,2,6,1,4,2,0,1,0,1,0,0,0,0,0,2,23569.1666667,7,4,7,7_0,6859.0,0,6859.0,0,1,1,59.2,10.0,3.3,0,1,664.3125555861793,664.3125555861793,0.0 -6422,4222,4221,0,0,48,111,42,41,0,15794,0,0,0,390,1,1,0,1,1.0,3982.3953439999996,0,0,22084.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,22084.0,7,4,7,7_0,0.0,0,0.0,0,0,0,53.0,85.0,5.55,0,0,0.0,0.0,0.0 +6422,4222,4221,0,0,48,111,42,41,0,15794,0,0,0,390,1,1,0,1,1.0,3982.395344,0,0,22084.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,22084.0,7,4,7,7_0,0.0,0,0.0,0,0,0,53.0,85.0,5.55,0,0,0.0,0.0,0.0 6423,4239,4238,4,4,48,211,48,50,0,16,0,0,0,553,2,4,1,3,2.0,1673.27439415,0,0,48279.0,1,3,1,2,4,1,0,1,0,1,0,0,0,0,0,1,24139.5,7,4,7,7_0,10000.0,0,10000.0,0,3,3,48.5,10.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 6424,4242,4241,14,17,63,112,75,60,0,1602,0,0,0,0,0,6,0,2,1.5,1705.57206489,0,0,37080.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,24720.0,7,4,7,7_1,10900.0,0,10000.0,900,13,13,0.0,0.0,0.0,0,0,1106.7329691200002,1015.351347816514,91.38162130348626 6425,4243,4242,9,9,34,111,48,71,0,1603,0,0,0,0,2,4,3,5,2.4,2694.76290946,0,0,52732.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,21971.6666667,7,4,7,7_0,8000.0,0,8000.0,0,3,8,0.0,6.0,3.31,0,1,774.8214673697967,774.8214673697967,0.0 6426,4250,4249,8,8,78,111,77,70,0,1613,0,0,0,0,0,6,0,2,1.5,2377.63476395,0,0,35913.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,23942.0,7,4,7,7_0,20000.0,0,20000.0,0,2,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 6427,4270,4269,8,10,29,111,46,60,0,1645,0,99999,0,0,1,4,1,3,1.8,2437.33907069,0,0,40896.0,1,2,8,7,4,2,0,0,0,0,0,1,0,0,0,2,22720.0,7,4,7,7_0,43001.0,0,43001.0,0,2,8,152.0,35.0,3.3,0,1,4164.762239796079,4164.762239796079,0.0 -6428,4298,4297,8,8,37,111,48,43,0,168,0,250,50,0,2,3,2,4,2.1,3519.43392412,0,0,50082.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,23848.571428599997,7,4,7,7_0,30000.0,0,20000.0,10000,7,7,155.0,20.0,3.3,0,1,2905.5805026367375,1937.0536684244914,968.5268342122457 +6428,4298,4297,8,8,37,111,48,43,0,168,0,250,50,0,2,3,2,4,2.1,3519.43392412,0,0,50082.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,23848.5714286,7,4,7,7_0,30000.0,0,20000.0,10000,7,7,155.0,20.0,3.3,0,1,2905.5805026367375,1937.0536684244914,968.5268342122457 6429,4361,4360,2,6,60,111,47,50,0,1766,0,0,0,560,1,1,0,1,1.0,3188.41448733,0,0,22321.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,22321.0,7,4,7,7_0,12945.0,0,12945.0,0,2,2,45.0,30.0,3.3,0,1,1253.7579868877522,1253.7579868877522,0.0 6430,4364,4363,5,5,73,112,78,70,0,177,0,0,0,0,0,4,0,2,1.5,1029.66572449,1560,0,34740.0,5,1,8,2,3,1,0,0,0,1,0,0,0,0,0,1,23160.0,7,4,7,7_0,15000.0,0,15000.0,0,4,4,0.0,0.0,0.0,0,0,1452.7902513183687,1452.7902513183687,0.0 -6431,4379,4378,6,6,48,112,38,50,0,1788,0,500,0,0,2,6,2,4,2.3,2597.22378366,4160,0,56786.0,1,1,7,0,4,2,0,1,1,0,0,0,0,0,0,2,24689.565217400002,7,4,7,7_1,25000.0,0,25000.0,0,6,6,129.0,22.5,3.3,0,1,2538.378369541285,2538.378369541285,0.0 +6431,4379,4378,6,6,48,112,38,50,0,1788,0,500,0,0,2,6,2,4,2.3,2597.22378366,4160,0,56786.0,1,1,7,0,4,2,0,1,1,0,0,0,0,0,0,2,24689.5652174,7,4,7,7_1,25000.0,0,25000.0,0,6,6,129.0,22.5,3.3,0,1,2538.378369541285,2538.378369541285,0.0 6432,4383,4382,4,6,65,112,77,50,0,1792,0,0,0,0,0,4,0,1,1.0,2570.54711806,2080,0,24135.0,5,3,9,2,1,1,0,0,0,1,0,0,0,0,0,1,24135.0,7,4,7,7_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 6433,4384,4383,3,3,79,112,74,12,0,1793,0,0,0,0,0,7,0,1,1.0,1592.26939365,1375,0,24385.0,5,1,7,0,1,1,0,0,1,0,0,0,0,0,0,1,24385.0,7,4,7,7_1,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,1015.351347816514,1015.351347816514,0.0 6434,4394,4393,4,10,59,400,71,50,0,1805,0,0,0,0,1,4,0,2,1.5,2064.53479593,1769,0,36899.0,5,1,0,0,3,1,1,0,1,0,0,0,0,0,0,1,24599.3333333,7,4,7,7_1,5000.0,0,5000.0,0,8,8,0.0,0.0,0.0,1,1,507.675673908257,507.675673908257,0.0 6435,4395,4394,8,8,71,111,77,50,0,1807,0,0,0,0,0,5,0,1,1.0,2467.6878321,0,0,24831.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,24831.0,7,4,7,7_0,4000.0,0,0.0,4000,10,10,0.0,0.0,0.0,0,0,387.41073368489833,0.0,387.41073368489833 6436,4400,4399,2,7,57,111,46,41,0,1814,0,0,0,0,2,5,0,2,1.5,1713.06219049,3162,0,35973.0,1,3,8,6,3,1,0,0,0,0,1,0,0,0,1,0,23982.0,7,4,7,7_0,12000.0,0,0.0,12000,4,5,0.0,0.0,0.0,0,1,1162.232201054695,0.0,1162.232201054695 6437,4403,4402,1,3,54,112,38,10,0,1819,0,0,0,0,3,4,3,5,3.0,2063.14472573,0,0,66602.0,1,2,8,0,4,3,0,0,1,0,0,0,0,0,0,3,22200.6666667,7,4,7,7_1,16353.0,0,16353.0,0,5,15,59.8,27.0,1.1,0,1,1660.4040590843454,1660.4040590843454,0.0 -6438,4422,4421,3,3,39,120,52,50,0,184,0,240,30,0,2,6,1,3,1.8,968.525905022,3418,0,39772.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,1,1,22095.5555556,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.333333333299999,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 +6438,4422,4421,3,3,39,120,52,50,0,184,0,240,30,0,2,6,1,3,1.8,968.525905022,3418,0,39772.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,1,1,22095.5555556,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.3333333333,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 6439,4440,4439,3,20,46,111,46,71,0,1862,0,0,40,0,2,4,1,3,1.8,2377.84849503,0,0,40060.0,4,3,6,4,4,2,0,1,0,0,1,0,0,0,1,1,22255.5555556,7,4,7,7_0,14900.0,0,14000.0,900,18,18,96.8,68.3333333333,3.3,0,1,1443.104982976246,1355.9375678971442,87.16741507910213 6440,4442,4441,7,9,55,111,22,70,0,1868,0,0,0,0,2,2,0,2,1.5,2222.46383718,0,0,32960.0,1,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,21973.3333333,7,4,7,7_0,5500.0,0,0.0,5500,5,8,0.0,27.5,5.58,0,0,532.6897588167352,0.0,532.6897588167352 6441,4445,4444,17,17,79,400,71,70,0,1870,0,10,0,0,0,5,0,2,1.5,1699.5955038,2709,0,34824.0,5,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,23216.0,7,4,7,7_1,15000.0,0,15000.0,0,20,20,0.0,0.0,0.0,0,0,1523.027021724771,1523.027021724771,0.0 @@ -6446,18 +6446,18 @@ 6444,4456,4455,0,0,43,111,68,50,0,1884,0,0,0,500,2,2,0,2,1.5,3688.5216576,0,0,32932.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,21954.6666667,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6445,4472,4471,3,4,30,300,62,43,0,1909,0,550,0,0,1,2,0,1,1.0,3748.00203636,0,0,22370.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,0,1,22370.0,7,4,7,7_1,29000.0,0,29000.0,0,3,3,207.5,60.0,3.3,0,1,2944.5189086678906,2944.5189086678906,0.0 6446,4481,4480,1,1,25,111,43,20,1,1924,0,250,0,385,1,3,0,1,1.0,3361.20980351,1300,14500,24128.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,24128.0,7,4,7,7_0,16672.0,0,16672.0,0,1,1,81.0,170.0,3.3,0,1,1614.7279379986562,1614.7279379986562,0.0 -6447,4482,4481,1,17,48,112,38,20,2,1925,0,99999,0,0,2,6,4,6,3.1,1046.00378687,3328,1800,70853.0,1,1,7,1,4,3,0,0,0,1,0,0,0,0,0,3,22855.806451599998,7,4,7,7_0,6859.0,0,6859.0,0,0,17,0.0,0.0,0.0,0,1,664.3125555861793,664.3125555861793,0.0 +6447,4482,4481,1,17,48,112,38,20,2,1925,0,99999,0,0,2,6,4,6,3.1,1046.00378687,3328,1800,70853.0,1,1,7,1,4,3,0,0,0,1,0,0,0,0,0,3,22855.8064516,7,4,7,7_0,6859.0,0,6859.0,0,0,17,0.0,0.0,0.0,0,1,664.3125555861793,664.3125555861793,0.0 6448,4488,4487,0,13,24,112,53,20,0,1932,0,0,0,0,2,3,0,2,1.5,2913.05448398,1560,0,34496.0,1,3,7,1,3,2,0,0,0,1,0,0,0,0,0,2,22997.3333333,7,4,7,7_0,19445.0,0,19445.0,0,2,14,112.4,39.5,3.3,0,1,1883.3004291257118,1883.3004291257118,0.0 6449,4497,4496,3,10,53,112,63,50,0,1945,0,400,0,0,2,5,0,2,1.5,2038.45289124,1977,0,36534.0,1,1,9,3,3,2,0,1,0,1,0,0,0,0,0,2,24356.0,7,4,7,7_0,12000.0,0,12000.0,0,7,11,193.5,35.0,3.3,0,1,1162.232201054695,1162.232201054695,0.0 6450,4502,4501,5,5,70,111,78,50,0,1951,0,0,0,0,0,5,0,2,1.5,1677.01517256,2682,0,37160.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,1,1,24773.3333333,7,4,7,7_0,31000.0,0,21000.0,10000,3,3,0.0,0.0,0.0,0,0,3002.433186057962,2033.9063518457162,968.5268342122457 -6451,4521,4520,3,9,59,112,52,50,0,1973,0,100,0,0,2,4,0,2,1.5,1218.1982031999999,0,0,33090.0,1,1,6,0,3,2,0,1,1,0,0,0,0,0,0,2,22060.0,7,4,7,7_1,35000.0,0,35000.0,0,5,8,0.0,90.0,3.3,0,1,3553.729717357799,3553.729717357799,0.0 +6451,4521,4520,3,9,59,112,52,50,0,1973,0,100,0,0,2,4,0,2,1.5,1218.1982032,0,0,33090.0,1,1,6,0,3,2,0,1,1,0,0,0,0,0,0,2,22060.0,7,4,7,7_1,35000.0,0,35000.0,0,5,8,0.0,90.0,3.3,0,1,3553.729717357799,3553.729717357799,0.0 6452,4526,4525,5,5,52,111,37,60,0,1983,0,0,0,0,1,4,1,3,2.0,2566.23631167,0,0,43748.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,21874.0,7,4,7,7_0,20000.0,0,20000.0,0,5,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 6453,4527,4526,1,1,71,112,78,50,1,1984,0,0,0,0,0,7,0,2,1.5,1203.43549653,0,24000,33614.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,22409.3333333,7,4,7,7_1,12000.0,0,12000.0,0,4,4,0.0,0.0,0.0,0,0,1218.4216173798168,1218.4216173798168,0.0 6454,4528,4527,3,13,27,111,35,20,0,1985,0,0,0,450,2,4,0,2,1.5,2898.1790104,5890,0,32863.0,4,3,7,5,3,1,0,0,0,0,1,0,0,0,1,0,21908.6666667,7,4,7,7_0,22000.0,0,0.0,22000,7,14,188.0,50.0,3.32,0,1,2130.759035266941,0.0,2130.759035266941 6455,4557,4556,5,21,40,111,63,50,0,203,0,0,0,0,2,4,2,4,2.1,1803.79594306,3380,0,46894.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,22330.4761905,7,4,7,7_0,4500.0,0,0.0,4500,15,15,139.4,35.0,5.57,0,0,435.83707539551057,0.0,435.83707539551057 6456,4564,4563,3,21,52,111,62,50,0,2040,0,20,0,0,2,4,1,3,2.0,2177.51039138,0,0,47636.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,23818.0,7,4,7,7_0,20000.0,0,20000.0,0,3,14,0.0,0.0,0.0,0,1,1937.0536684244914,1937.0536684244914,0.0 -6457,4575,4574,2,2,30,111,54,31,0,2056,0,300,300,0,2,4,1,3,1.8,1849.82478063,0,0,40466.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,22481.111111099995,7,4,7,7_0,16859.0,0,6859.0,10000,1,1,71.5,28.6666666667,3.3,0,1,1632.8393897984251,664.3125555861793,968.5268342122457 -6458,4592,4591,2,13,34,112,63,43,0,2075,0,0,420,0,2,7,2,4,2.1,2980.34978161,1905,0,49410.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,1,1,23528.571428599997,7,4,7,7_1,18943.0,0,15000.0,3943,9,17,153.0,38.6666666667,3.3,0,1,1923.3800581688224,1523.027021724771,400.35303644405144 +6457,4575,4574,2,2,30,111,54,31,0,2056,0,300,300,0,2,4,1,3,1.8,1849.82478063,0,0,40466.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,22481.1111111,7,4,7,7_0,16859.0,0,6859.0,10000,1,1,71.5,28.6666666667,3.3,0,1,1632.8393897984251,664.3125555861793,968.5268342122457 +6458,4592,4591,2,13,34,112,63,43,0,2075,0,0,420,0,2,7,2,4,2.1,2980.34978161,1905,0,49410.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,1,1,23528.5714286,7,4,7,7_1,18943.0,0,15000.0,3943,9,17,153.0,38.6666666667,3.3,0,1,1923.3800581688224,1523.027021724771,400.35303644405144 6459,4600,4599,0,6,62,111,75,30,0,2082,0,0,0,374,0,1,0,1,1.0,2795.87252459,0,0,21744.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,21744.0,7,4,7,7_0,10000.0,0,0.0,10000,2,7,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 6460,4602,4601,3,4,44,112,48,71,0,2085,0,250,0,0,2,7,2,4,2.5,6267.39474523,7176,0,55679.0,1,1,8,0,4,2,0,0,1,0,0,0,0,0,0,2,22271.6,7,4,7,7_1,37343.0,0,37343.0,0,2,4,154.5,53.3333333333,3.3,0,1,3791.6265381512076,3791.6265381512076,0.0 6461,4611,4610,1,9,51,300,52,71,2,2098,0,550,20,0,3,5,0,4,2.5,1367.62276227,5486,5200,57392.0,1,3,0,0,5,4,1,1,1,0,0,0,0,1,1,3,22956.8,7,4,7,7_1,51000.0,0,51000.0,0,6,6,909.7,38.5,3.3,0,1,5178.291873864221,5178.291873864221,0.0 @@ -6466,7 +6466,7 @@ 6464,4643,4642,0,0,65,111,75,41,0,2138,0,0,0,456,0,2,0,1,1.0,3156.38288609,0,0,23690.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,23690.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6465,4665,4664,0,4,47,112,53,60,2,2168,0,5,0,0,1,4,1,2,1.5,7470.8483674,0,13000,34600.0,1,4,9,1,2,1,0,1,0,1,0,0,0,0,0,1,23066.6666667,7,4,7,7_0,15000.0,0,15000.0,0,2,2,71.0,52.5,3.31,0,1,1452.7902513183687,1452.7902513183687,0.0 6466,4671,4670,8,9,81,112,75,70,0,2174,0,0,0,0,0,5,0,1,1.0,4879.67179898,2600,0,24824.0,5,1,9,3,1,1,0,0,0,1,0,0,0,0,1,0,24824.0,7,4,7,7_0,3000.0,0,0.0,3000,5,7,0.0,0.0,0.0,0,0,290.55805026367375,0.0,290.55805026367375 -6467,4678,4677,9,15,63,111,75,50,0,2185,0,290,0,0,1,5,1,3,2.0,1310.25002272,0,0,44900.0,5,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,22450.0,7,4,7,7_0,20000.0,0,20000.0,0,9,9,0.0,13.333333333299999,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 +6467,4678,4677,9,15,63,111,75,50,0,2185,0,290,0,0,1,5,1,3,2.0,1310.25002272,0,0,44900.0,5,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,22450.0,7,4,7,7_0,20000.0,0,20000.0,0,9,9,0.0,13.3333333333,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 6468,4702,4701,20,31,62,112,77,43,0,2212,0,0,0,0,0,5,0,2,1.5,4995.12310986,4932,0,32720.0,5,2,7,0,3,1,0,0,1,0,0,0,0,0,1,0,21813.3333333,7,4,7,7_1,16211.0,0,0.0,16211,6,25,0.0,0.0,0.0,0,0,1645.986069945351,0.0,1645.986069945351 6469,4708,4707,8,22,26,112,63,50,0,2218,0,750,0,0,2,3,1,3,1.8,1394.38930692,3756,0,39705.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,22058.3333333,7,4,7,7_1,22000.0,0,22000.0,0,4,12,51.8,14.0,3.3,0,1,2233.772965196331,2233.772965196331,0.0 6470,4720,4719,1,14,66,111,75,50,2,2230,0,0,0,0,0,5,0,2,1.5,1875.50057602,3461,1400,36780.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,24520.0,7,4,7,7_0,14000.0,0,14000.0,0,7,9,0.0,0.0,0.0,0,0,1355.9375678971442,1355.9375678971442,0.0 @@ -6479,73 +6479,73 @@ 6477,4789,4788,1,1,71,111,75,31,0,2342,0,0,0,0,0,7,0,2,1.5,2280.38400494,604,0,36668.0,5,1,9,7,3,3,0,0,0,0,0,1,0,0,2,1,24445.3333333,7,4,7,7_0,24000.0,0,18000.0,6000,4,4,0.0,0.0,0.0,0,0,2324.46440210939,1743.3483015820423,581.1161005273475 6478,4792,4791,7,18,25,111,43,41,0,2346,0,400,40,0,2,4,0,2,1.5,3411.7161747,0,0,32885.0,1,2,7,5,3,2,1,1,0,0,1,0,0,0,1,1,21923.3333333,7,4,7,7_0,30000.0,0,15000.0,15000,7,7,74.8,72.5,3.3,0,1,2905.5805026367375,1452.7902513183687,1452.7902513183687 6479,4793,4792,1,1,35,111,43,20,2,2348,0,99999,0,402,1,3,0,1,1.0,3094.78721864,1560,9600,22212.0,1,3,9,7,1,1,1,1,0,0,0,1,0,0,0,1,22212.0,7,4,7,7_0,9716.0,0,9716.0,0,0,2,0.0,10.0,3.3,1,1,941.0206721206181,941.0206721206181,0.0 -6480,4795,4794,3,5,40,300,34,20,0,235,0,700,0,0,2,5,2,4,2.3,1518.64708112,3249,0,50520.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,21965.217391299997,7,4,7,7_1,14572.0,0,14572.0,0,1,2,183.6,42.5,3.3,0,1,1479.569984038224,1479.569984038224,0.0 +6480,4795,4794,3,5,40,300,34,20,0,235,0,700,0,0,2,5,2,4,2.3,1518.64708112,3249,0,50520.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,21965.2173913,7,4,7,7_1,14572.0,0,14572.0,0,1,2,183.6,42.5,3.3,0,1,1479.569984038224,1479.569984038224,0.0 6481,4804,4803,3,3,53,120,62,50,0,236,0,0,0,0,1,5,0,2,1.5,1326.74059617,2127,0,35463.0,1,1,0,1,3,1,0,0,0,1,0,0,0,0,0,1,23642.0,7,4,7,7_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,1,0,1937.0536684244914,1937.0536684244914,0.0 6482,4813,4812,2,2,37,111,46,31,0,2376,0,500,0,0,2,4,0,2,1.5,3223.11392322,2081,0,36393.0,1,4,6,5,3,2,0,1,0,0,1,0,0,0,0,2,24262.0,7,4,7,7_0,18000.0,0,18000.0,0,3,5,18.0,30.0,3.3,1,1,1743.3483015820423,1743.3483015820423,0.0 6483,4830,4829,4,11,54,111,78,70,0,2397,0,0,0,486,3,5,2,5,2.8,1155.13123772,4424,0,69481.0,5,3,8,7,5,2,0,0,0,0,0,1,0,0,2,0,24814.6428571,7,4,7,7_0,4000.0,0,0.0,4000,9,13,622.7,31.5,3.3,0,1,387.41073368489833,0.0,387.41073368489833 6484,4839,4838,6,6,51,111,38,12,0,2417,0,0,0,0,1,6,2,4,2.5,1795.33438956,2548,0,59191.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,23676.4,7,4,7,7_0,12000.0,0,0.0,12000,6,6,135.5,11.75,3.3,0,1,1162.232201054695,0.0,1162.232201054695 -6485,4844,4843,1,6,35,112,46,12,2,2424,0,500,0,0,2,4,1,3,1.8,5109.47998247,2522,10600,41650.0,1,2,9,1,4,1,0,1,0,1,0,0,0,0,0,1,23138.888888900005,7,4,7,7_0,20000.0,0,20000.0,0,2,6,0.0,50.0,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 +6485,4844,4843,1,6,35,112,46,12,2,2424,0,500,0,0,2,4,1,3,1.8,5109.47998247,2522,10600,41650.0,1,2,9,1,4,1,0,1,0,1,0,0,0,0,0,1,23138.8888889,7,4,7,7_0,20000.0,0,20000.0,0,2,6,0.0,50.0,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 6486,4857,4856,4,6,59,111,74,44,0,2440,0,0,0,0,0,6,0,2,1.5,2864.0570339,5200,0,37060.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,2,0,24706.6666667,7,4,7,7_0,2500.0,0,0.0,2500,8,8,0.0,0.0,0.0,0,0,242.13170855306143,0.0,242.13170855306143 -6487,4875,4874,1,14,34,112,53,60,0,2464,0,60,516,0,2,3,1,3,1.8,2721.72879149,3451,0,42334.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,1,1,23518.888888900005,7,4,7,7_1,14481.0,0,12481.0,2000,11,15,111.0,14.0,3.31,0,1,1470.3302867730938,1267.260017209791,203.0702695633028 +6487,4875,4874,1,14,34,112,53,60,0,2464,0,60,516,0,2,3,1,3,1.8,2721.72879149,3451,0,42334.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,1,1,23518.8888889,7,4,7,7_1,14481.0,0,12481.0,2000,11,15,111.0,14.0,3.31,0,1,1470.3302867730938,1267.260017209791,203.0702695633028 6488,4882,4881,6,10,28,111,54,43,0,2470,0,200,0,0,1,3,0,1,1.0,6431.22193051,0,0,22029.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,0,1,22029.0,7,4,7,7_0,150.0,0,150.0,0,9,9,0.0,0.0,0.0,0,1,14.527902513183687,14.527902513183687,0.0 6489,4883,4882,6,9,65,111,75,20,0,2471,0,0,0,703,0,8,0,1,1.0,2207.18342055,5349,0,24486.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,24486.0,7,4,7,7_0,2000.0,0,2000.0,0,7,12,0.0,0.0,0.0,0,0,193.70536684244917,193.70536684244917,0.0 6490,4894,4893,2,2,51,111,63,50,0,2485,0,250,30,0,2,4,0,2,1.5,2171.64450618,1560,0,33978.0,1,1,5,4,3,2,0,1,0,0,1,0,0,0,1,1,22652.0,7,4,7,7_0,15000.0,0,9000.0,6000,2,2,141.6,35.0,3.3,0,1,1452.7902513183687,871.6741507910211,581.1161005273475 6491,4916,4915,2,2,62,111,74,41,0,2516,0,0,0,0,0,4,0,2,1.5,2519.15273815,1040,0,33698.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,22465.3333333,7,4,7,7_0,18000.0,0,18000.0,0,3,3,0.0,0.0,0.0,0,0,1743.3483015820423,1743.3483015820423,0.0 6492,4922,4921,7,7,73,111,78,50,0,2523,0,0,0,0,0,4,0,2,1.5,2596.82679043,1820,0,36621.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,24414.0,7,4,7,7_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 6493,4926,4925,8,8,58,111,43,33,0,2527,0,0,300,0,2,7,1,2,1.5,2131.48754323,3796,0,34460.0,1,1,8,7,2,1,0,1,0,0,0,1,0,0,1,0,22973.3333333,7,4,7,7_0,12000.0,0,0.0,12000,4,5,0.0,0.0,0.0,0,1,1162.232201054695,0.0,1162.232201054695 -6494,4939,4938,3,3,41,112,46,50,0,2550,0,350,0,0,2,7,3,5,2.6,1295.10302967,4686,0,61926.0,1,1,8,0,4,1,0,1,1,0,0,0,0,0,0,1,23817.692307700003,7,4,7,7_1,25000.0,0,25000.0,0,3,4,188.0,30.0,3.3,1,1,2538.378369541285,2538.378369541285,0.0 +6494,4939,4938,3,3,41,112,46,50,0,2550,0,350,0,0,2,7,3,5,2.6,1295.10302967,4686,0,61926.0,1,1,8,0,4,1,0,1,1,0,0,0,0,0,0,1,23817.6923077,7,4,7,7_1,25000.0,0,25000.0,0,3,4,188.0,30.0,3.3,1,1,2538.378369541285,2538.378369541285,0.0 6495,4960,4959,1,7,48,400,64,71,2,2582,0,500,0,0,1,4,0,1,1.0,3197.71229515,4160,9000,24795.0,1,1,0,1,1,1,0,1,0,1,0,0,0,0,0,1,24795.0,7,4,7,7_0,20000.0,0,20000.0,0,3,8,0.0,0.0,0.0,0,1,1937.0536684244914,1937.0536684244914,0.0 6496,4964,4963,3,4,27,111,38,12,0,2587,0,100,0,430,1,2,0,1,1.0,2488.30379868,1300,0,23849.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,0,1,23849.0,7,4,7,7_0,15000.0,0,15000.0,0,4,5,112.0,40.0,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 -6497,4966,4965,6,6,48,221,37,31,0,2596,0,0,0,0,3,6,2,4,2.3,2994.4897201,0,0,55435.0,1,2,1,2,4,2,0,0,0,1,0,0,0,0,1,1,24102.173913,7,4,7,7_0,25000.0,0,20000.0,5000,12,12,57.0,15.333333333299999,3.3,1,0,2421.3170855306143,1937.0536684244914,484.26341710612286 +6497,4966,4965,6,6,48,221,37,31,0,2596,0,0,0,0,3,6,2,4,2.3,2994.4897201,0,0,55435.0,1,2,1,2,4,2,0,0,0,1,0,0,0,0,1,1,24102.173913,7,4,7,7_0,25000.0,0,20000.0,5000,12,12,57.0,15.3333333333,3.3,1,0,2421.3170855306143,1937.0536684244914,484.26341710612286 6498,4969,4968,0,0,44,111,37,12,0,2599,0,0,0,0,1,9,2,4,2.3,2527.26735042,3792,0,55756.0,1,1,8,6,4,0,0,0,0,0,1,0,0,0,0,0,24241.7391304,7,4,7,7_0,2000.0,0,0.0,2000,1,1,0.0,0.0,0.0,0,0,193.70536684244917,0.0,193.70536684244917 -6499,4979,4978,1,1,44,112,43,33,0,2611,0,200,20,0,2,5,1,3,1.8,2783.08936591,0,0,42822.0,1,2,8,1,4,2,0,1,0,1,0,0,0,0,1,1,23790.0,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.333333333299999,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 +6499,4979,4978,1,1,44,112,43,33,0,2611,0,200,20,0,2,5,1,3,1.8,2783.08936591,0,0,42822.0,1,2,8,1,4,2,0,1,0,1,0,0,0,0,1,1,23790.0,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.3333333333,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 6500,5000,4999,6,10,74,111,75,50,0,2644,0,0,0,0,0,3,0,2,1.5,1081.24585384,0,0,33058.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,22038.6666667,7,4,7,7_0,10000.0,0,10000.0,0,7,8,0.0,0.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 -6501,5019,5018,1,1,41,111,55,71,1,267,0,350,100,0,2,5,0,2,1.5,2988.0405625999997,2652,20000,37200.0,1,1,9,7,5,3,0,1,0,0,0,1,0,0,1,2,24800.0,7,4,7,7_0,13000.0,0,13000.0,0,5,5,28.0,15.0,3.3,0,1,1259.0848844759196,1259.0848844759196,0.0 +6501,5019,5018,1,1,41,111,55,71,1,267,0,350,100,0,2,5,0,2,1.5,2988.0405626,2652,20000,37200.0,1,1,9,7,5,3,0,1,0,0,0,1,0,0,1,2,24800.0,7,4,7,7_0,13000.0,0,13000.0,0,5,5,28.0,15.0,3.3,0,1,1259.0848844759196,1259.0848844759196,0.0 6502,5028,5027,11,11,64,300,74,41,0,268,0,0,0,0,0,4,1,3,2.0,1358.50256817,0,0,44840.0,5,1,0,0,4,2,0,0,1,0,0,0,0,0,2,0,22420.0,7,4,7,7_1,4500.0,0,0.0,4500,12,12,0.0,0.0,0.0,0,0,456.9081065174313,0.0,456.9081065174313 -6503,5042,5041,2,6,64,111,75,50,0,2702,0,0,0,0,0,2,0,2,1.5,7553.1996174999995,0,0,36462.0,5,3,4,4,3,1,0,0,0,0,1,0,0,0,0,1,24308.0,7,4,7,7_0,12000.0,0,12000.0,0,2,4,0.0,0.0,0.0,0,0,1162.232201054695,1162.232201054695,0.0 +6503,5042,5041,2,6,64,111,75,50,0,2702,0,0,0,0,0,2,0,2,1.5,7553.1996175,0,0,36462.0,5,3,4,4,3,1,0,0,0,0,1,0,0,0,0,1,24308.0,7,4,7,7_0,12000.0,0,12000.0,0,2,4,0.0,0.0,0.0,0,0,1162.232201054695,1162.232201054695,0.0 6504,5066,5065,3,5,35,111,47,20,0,2734,0,120,0,0,1,1,0,1,1.0,2681.87222083,2600,0,24812.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,0,1,24812.0,7,4,7,7_0,10000.0,0,10000.0,0,3,3,0.0,10.0,3.3,0,1,968.5268342122457,968.5268342122457,0.0 -6505,5080,5079,3,3,64,221,75,31,0,2759,0,0,0,0,0,6,0,2,1.5,1804.1248194000002,1321,0,33380.0,5,1,1,3,3,2,0,0,0,1,0,0,0,0,2,0,22253.3333333,7,4,7,7_0,8000.0,0,0.0,8000,2,2,0.0,0.0,0.0,0,0,774.8214673697967,0.0,774.8214673697967 -6506,5081,5080,0,0,31,112,46,44,0,2763,0,0,0,0,2,4,1,3,1.8,2983.00629063,9464,0,44590.0,1,2,8,0,4,0,0,0,1,0,0,0,0,0,0,0,24772.222222200002,7,4,7,7_1,18000.0,0,0.0,18000,2,3,137.9,30.0,0.0,0,0,1827.6324260697252,0.0,1827.6324260697252 +6505,5080,5079,3,3,64,221,75,31,0,2759,0,0,0,0,0,6,0,2,1.5,1804.1248194,1321,0,33380.0,5,1,1,3,3,2,0,0,0,1,0,0,0,0,2,0,22253.3333333,7,4,7,7_0,8000.0,0,0.0,8000,2,2,0.0,0.0,0.0,0,0,774.8214673697967,0.0,774.8214673697967 +6506,5081,5080,0,0,31,112,46,44,0,2763,0,0,0,0,2,4,1,3,1.8,2983.00629063,9464,0,44590.0,1,2,8,0,4,0,0,0,1,0,0,0,0,0,0,0,24772.2222222,7,4,7,7_1,18000.0,0,0.0,18000,2,3,137.9,30.0,0.0,0,0,1827.6324260697252,0.0,1827.6324260697252 6507,5093,5092,2,7,48,111,47,31,0,2777,0,40,0,428,1,3,0,1,1.0,3448.00099433,1308,0,23078.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,23078.0,7,4,7,7_0,25000.0,0,25000.0,0,4,8,17.0,20.0,3.3,0,1,2421.3170855306143,2421.3170855306143,0.0 6508,5104,5103,17,17,40,300,62,50,0,2792,0,540,0,0,2,5,2,4,2.1,1902.37915979,1820,0,46635.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,22207.1428571,7,4,7,7_1,15000.0,0,15000.0,0,5,18,88.2,29.25,3.3,0,1,1523.027021724771,1523.027021724771,0.0 -6509,5107,5106,3,3,81,111,78,71,0,2797,0,0,0,0,0,3,0,2,1.5,3893.9472005999996,0,0,32989.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,21992.6666667,7,4,7,7_0,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 +6509,5107,5106,3,3,81,111,78,71,0,2797,0,0,0,0,0,3,0,2,1.5,3893.9472006,0,0,32989.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,21992.6666667,7,4,7,7_0,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 6510,5113,5112,4,7,36,112,62,50,0,2802,0,0,0,0,1,2,0,1,1.0,3529.72298646,0,0,22437.0,4,2,9,3,1,1,0,0,0,1,0,0,0,0,0,1,22437.0,7,4,7,7_0,20000.0,0,20000.0,0,6,7,24.0,20.0,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 6511,5116,5115,1,1,42,111,37,41,2,2805,0,200,0,0,1,5,2,3,2.0,1364.03243493,0,13000,43428.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,0,1,21714.0,7,4,7,7_0,40000.0,0,40000.0,0,4,4,71.5,60.0,0.0,1,1,3874.107336848983,3874.107336848983,0.0 6512,5140,5139,5,10,51,111,53,50,0,2844,0,250,0,0,2,5,2,4,2.5,838.8061033,1303,0,61918.0,1,1,8,7,4,4,0,1,0,0,0,1,0,0,1,3,24767.2,7,4,7,7_0,25000.0,0,25000.0,0,6,9,0.0,31.6666666667,3.3,0,1,2421.3170855306143,2421.3170855306143,0.0 6513,5158,5157,10,10,70,300,77,50,0,2868,0,0,0,0,0,2,0,1,1.0,2814.40069682,3484,0,24330.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,24330.0,7,4,7,7_1,8000.0,0,0.0,8000,7,10,0.0,0.0,0.0,0,0,812.2810782532111,0.0,812.2810782532111 -6514,5160,5159,4,4,44,112,47,60,0,2872,0,28,0,0,2,6,3,5,2.6,1490.64981086,4160,0,59671.0,1,2,10,0,4,2,1,0,1,0,0,0,0,0,0,2,22950.384615400002,7,4,7,7_1,30000.0,0,30000.0,0,2,3,84.5,25.0,0.0,1,0,3046.054043449542,3046.054043449542,0.0 +6514,5160,5159,4,4,44,112,47,60,0,2872,0,28,0,0,2,6,3,5,2.6,1490.64981086,4160,0,59671.0,1,2,10,0,4,2,1,0,1,0,0,0,0,0,0,2,22950.3846154,7,4,7,7_1,30000.0,0,30000.0,0,2,3,84.5,25.0,0.0,1,0,3046.054043449542,3046.054043449542,0.0 6515,5162,5161,12,12,37,112,65,43,0,2874,0,300,50,0,2,6,3,5,2.4,1434.08404662,3224,0,57871.0,1,1,6,0,4,2,0,1,1,0,0,0,0,0,1,1,24112.9166667,7,4,7,7_1,30000.0,0,30000.0,0,4,9,42.0,22.0,3.31,0,1,3046.054043449542,3046.054043449542,0.0 -6516,5173,5172,6,11,39,111,37,12,0,2894,0,0,100,0,2,6,2,4,2.1,2061.24875803,0,0,50985.0,1,2,4,4,4,2,0,1,0,0,1,0,0,0,2,0,24278.571428599997,7,4,7,7_0,10884.0,0,0.0,10884,3,12,64.6,15.0,3.31,0,1,1054.1446063566082,0.0,1054.1446063566082 +6516,5173,5172,6,11,39,111,37,12,0,2894,0,0,100,0,2,6,2,4,2.1,2061.24875803,0,0,50985.0,1,2,4,4,4,2,0,1,0,0,1,0,0,0,2,0,24278.5714286,7,4,7,7_0,10884.0,0,0.0,10884,3,12,64.6,15.0,3.31,0,1,1054.1446063566082,0.0,1054.1446063566082 6517,5182,5181,13,13,55,111,67,71,0,2907,0,500,0,182,2,2,0,2,1.5,3636.34809712,2169,0,32636.0,1,3,6,4,3,1,0,1,0,0,1,0,0,0,0,1,21757.3333333,7,4,7,7_0,15000.0,0,15000.0,0,3,12,45.5,20.0,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 6518,5190,5189,10,10,74,111,74,20,0,2915,0,0,0,0,1,5,1,3,2.0,1090.68013277,2301,0,49622.0,5,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,24811.0,7,4,7,7_0,15000.0,0,0.0,15000,2,9,0.0,0.0,0.0,0,0,1452.7902513183687,0.0,1452.7902513183687 6519,5196,5195,1,1,51,400,52,50,1,2922,0,195,0,0,1,4,0,1,1.0,1452.40318153,0,14104,24025.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,1,24025.0,7,4,7,7_1,20000.0,0,20000.0,0,4,4,155.0,60.0,3.33,0,1,2030.702695633028,2030.702695633028,0.0 6520,5202,5201,6,6,43,111,63,50,0,2929,0,0,99999,550,2,4,3,5,2.4,3330.71686864,0,0,57921.0,1,3,9,7,4,1,0,1,0,0,0,1,0,1,1,0,24133.75,7,4,7,7_0,8000.0,0,0.0,8000,5,8,0.0,0.0,0.0,0,0,774.8214673697967,0.0,774.8214673697967 -6521,5220,5219,1,1,44,112,43,50,1,296,0,0,0,0,2,6,1,3,1.8,1939.9910473000002,0,31500,42614.0,1,1,6,0,4,2,1,0,1,0,0,0,0,0,1,1,23674.4444444,7,4,7,7_1,76000.0,0,60000.0,16000,3,4,0.0,60.0,3.31,0,1,7716.670243405506,6092.108086899084,1624.5621565064223 +6521,5220,5219,1,1,44,112,43,50,1,296,0,0,0,0,2,6,1,3,1.8,1939.9910473,0,31500,42614.0,1,1,6,0,4,2,1,0,1,0,0,0,0,0,1,1,23674.4444444,7,4,7,7_1,76000.0,0,60000.0,16000,3,4,0.0,60.0,3.31,0,1,7716.670243405506,6092.108086899084,1624.5621565064223 6522,5226,5225,1,1,44,111,33,20,1,2969,0,0,0,0,1,8,3,5,2.4,1446.00688393,0,21000,55959.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,1,1,23316.25,7,4,7,7_0,2600.0,0,2600.0,0,1,1,35.0,36.2,3.3,0,1,251.8169768951839,251.8169768951839,0.0 6523,5228,5227,11,15,56,112,56,71,0,2971,0,500,0,0,1,3,0,2,1.5,2698.31917637,0,0,36740.0,1,1,8,1,3,3,0,0,0,1,0,0,0,0,1,2,24493.3333333,7,4,7,7_0,11500.0,0,11500.0,0,5,13,0.0,0.0,0.0,0,1,1113.8058593440826,1113.8058593440826,0.0 6524,5240,5239,0,15,27,221,47,31,0,2986,0,600,200,0,2,2,1,3,1.8,4953.68869293,5285,0,44079.0,1,3,1,1,4,2,0,1,0,1,0,0,0,0,1,1,24488.3333333,7,4,7,7_0,24001.0,0,19001.0,5000,1,9,0.0,3.33333333333,0.0,1,1,2324.5612547928113,1840.2978376866884,484.26341710612286 -6525,5259,5258,0,13,48,112,42,10,0,3012,0,400,0,0,2,4,1,3,1.8,2213.25152359,1316,0,41870.0,1,2,10,5,4,2,0,0,0,0,1,0,0,0,1,1,23261.111111099995,7,4,7,7_0,42000.0,0,31000.0,11000,4,5,324.8,60.0,3.3,0,1,4067.8127036914325,3002.433186057962,1065.3795176334704 -6526,5266,5265,0,0,59,111,31,20,0,3021,0,0,0,600,2,3,1,3,1.8,3939.62953689,0,0,40000.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,22222.222222200002,7,4,7,7_0,0.0,0,0.0,0,0,0,38.5,50.0,5.56,0,0,0.0,0.0,0.0 +6525,5259,5258,0,13,48,112,42,10,0,3012,0,400,0,0,2,4,1,3,1.8,2213.25152359,1316,0,41870.0,1,2,10,5,4,2,0,0,0,0,1,0,0,0,1,1,23261.1111111,7,4,7,7_0,42000.0,0,31000.0,11000,4,5,324.8,60.0,3.3,0,1,4067.8127036914325,3002.433186057962,1065.3795176334704 +6526,5266,5265,0,0,59,111,31,20,0,3021,0,0,0,600,2,3,1,3,1.8,3939.62953689,0,0,40000.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,22222.2222222,7,4,7,7_0,0.0,0,0.0,0,0,0,38.5,50.0,5.56,0,0,0.0,0.0,0.0 6527,5270,5269,1,7,34,300,67,41,0,3025,0,340,120,0,2,6,0,2,1.5,1858.19369827,4343,0,36925.0,1,2,0,0,3,2,0,1,1,0,0,0,0,0,1,1,24616.6666667,7,4,7,7_1,25500.0,0,20000.0,5500,8,14,163.5,35.0,3.31,0,1,2589.1459369321105,2030.702695633028,558.4432412990827 6528,5279,5278,3,4,58,112,75,41,0,304,0,0,0,0,0,6,0,2,1.5,2368.88009561,0,0,35256.0,5,1,7,0,3,1,0,0,1,0,0,0,0,0,0,1,23504.0,7,4,7,7_1,42666.0,0,42666.0,0,5,5,0.0,0.0,0.0,0,0,4332.0980605939385,4332.0980605939385,0.0 6529,5280,5279,2,2,55,112,47,41,0,3040,0,500,0,0,1,7,0,2,1.5,1991.02987631,3010,0,35540.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,0,2,23693.3333333,7,4,7,7_1,13945.0,0,13945.0,0,1,1,0.0,0.0,0.0,0,1,1415.9074545301287,1415.9074545301287,0.0 6530,5281,5280,19,21,69,112,77,71,0,3041,0,0,0,0,0,5,0,2,1.5,5803.39374062,3796,0,33941.0,5,1,9,3,3,1,0,0,0,1,0,0,0,0,0,1,22627.3333333,7,4,7,7_0,9000.0,0,9000.0,0,2,14,0.0,0.0,0.0,0,0,871.6741507910211,871.6741507910211,0.0 -6531,5284,5283,5,9,42,111,42,20,0,3046,0,70,0,0,2,6,2,4,2.1,1594.91919931,0,0,51957.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,24741.428571400003,7,4,7,7_0,10000.0,0,10000.0,0,3,6,189.0,43.3333333333,3.3,0,1,968.5268342122457,968.5268342122457,0.0 +6531,5284,5283,5,9,42,111,42,20,0,3046,0,70,0,0,2,6,2,4,2.1,1594.91919931,0,0,51957.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,24741.4285714,7,4,7,7_0,10000.0,0,10000.0,0,3,6,189.0,43.3333333333,3.3,0,1,968.5268342122457,968.5268342122457,0.0 6532,5289,5288,3,3,72,221,75,33,0,3053,0,0,0,0,0,4,0,1,1.0,3381.00326561,0,0,22971.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,22971.0,7,4,7,7_0,13000.0,0,13000.0,0,4,5,0.0,0.0,0.0,0,0,1259.0848844759196,1259.0848844759196,0.0 -6533,5303,5302,4,14,40,111,62,43,0,3071,0,0,30,0,2,4,1,3,1.8,1909.29415721,0,0,42311.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,23506.111111099995,7,4,7,7_0,40200.0,0,35000.0,5200,14,14,28.0,28.3333333333,3.3,0,1,3893.477873533228,3389.84391974286,503.6339537903678 +6533,5303,5302,4,14,40,111,62,43,0,3071,0,0,30,0,2,4,1,3,1.8,1909.29415721,0,0,42311.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,23506.1111111,7,4,7,7_0,40200.0,0,35000.0,5200,14,14,28.0,28.3333333333,3.3,0,1,3893.477873533228,3389.84391974286,503.6339537903678 6534,5308,5307,1,1,24,111,43,20,1,3078,0,0,0,400,1,2,0,1,1.0,2963.62824698,0,15500,22969.0,1,3,8,6,1,1,0,0,0,0,1,0,0,1,0,1,22969.0,7,4,7,7_0,16672.0,0,16672.0,0,1,1,81.0,170.0,3.3,0,1,1614.7279379986562,1614.7279379986562,0.0 6535,5313,5312,11,13,40,111,65,50,0,3084,0,0,0,313,1,4,1,2,1.5,2520.49369783,0,0,36996.0,1,3,9,7,2,1,0,0,0,0,0,1,0,0,1,0,24664.0,7,4,7,7_0,15000.0,0,0.0,15000,3,7,111.0,35.0,2.24,0,1,1452.7902513183687,0.0,1452.7902513183687 6536,5329,5328,1,6,30,111,47,42,2,3106,0,200,0,0,1,2,0,1,1.0,3105.14694765,1820,9500,23448.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,23448.0,7,4,7,7_0,15000.0,0,15000.0,0,4,5,112.0,40.0,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 -6537,5339,5338,2,10,36,400,37,41,0,3119,0,0,0,0,2,3,2,4,2.1,3715.26083374,0,0,45706.0,1,4,0,0,4,1,0,0,1,0,0,0,0,0,0,1,21764.761904799998,7,4,7,7_1,29781.0,0,29781.0,0,1,8,211.9,50.0,3.3,0,1,3023.8178489323604,3023.8178489323604,0.0 +6537,5339,5338,2,10,36,400,37,41,0,3119,0,0,0,0,2,3,2,4,2.1,3715.26083374,0,0,45706.0,1,4,0,0,4,1,0,0,1,0,0,0,0,0,0,1,21764.7619048,7,4,7,7_1,29781.0,0,29781.0,0,1,8,211.9,50.0,3.3,0,1,3023.8178489323604,3023.8178489323604,0.0 6538,5367,5366,1,1,60,111,75,41,1,3153,0,0,0,428,0,3,0,2,1.5,3073.34588487,0,11273,35731.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,23820.6666667,7,4,7,7_0,0.0,0,0.0,0,10,0,0.0,10.0,0.0,0,1,0.0,0.0,0.0 6539,5369,5368,10,57,62,111,75,41,0,3156,0,0,0,0,0,4,0,2,1.5,2097.9805707,0,0,34407.0,5,1,9,7,3,3,0,0,0,0,0,1,0,0,2,1,22938.0,7,4,7,7_0,18888.0,0,15000.0,3888,9,11,0.0,0.0,0.0,0,0,1829.35348446009,1452.7902513183687,376.5632331417211 6540,5372,5371,8,11,44,112,34,20,0,3160,0,200,0,0,2,7,4,6,3.3,1803.67389446,2190,0,81583.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,0,2,24722.1212121,7,4,7,7_1,40000.0,0,25000.0,15000,10,10,356.7,90.0,3.3,0,1,4061.405391266056,2538.378369541285,1523.027021724771 6541,5380,5379,5,5,55,112,67,71,0,3178,0,0,0,0,1,5,0,2,1.5,2805.19729428,2725,0,33000.0,4,1,7,1,3,1,0,0,0,1,0,0,0,0,0,1,22000.0,7,4,7,7_0,25000.0,0,25000.0,0,2,6,0.0,0.0,0.0,0,1,2421.3170855306143,2421.3170855306143,0.0 -6542,5391,5390,2,2,29,212,33,10,0,3195,0,450,0,0,2,5,1,3,1.8,1821.33582334,3120,0,41194.0,1,2,2,0,4,2,0,1,1,0,0,0,0,0,0,2,22885.5555556,7,4,7,7_1,26001.0,0,26001.0,0,2,4,97.0,11.333333333299999,3.3,0,1,2640.015039457718,2640.015039457718,0.0 +6542,5391,5390,2,2,29,212,33,10,0,3195,0,450,0,0,2,5,1,3,1.8,1821.33582334,3120,0,41194.0,1,2,2,0,4,2,0,1,1,0,0,0,0,0,0,2,22885.5555556,7,4,7,7_1,26001.0,0,26001.0,0,2,4,97.0,11.3333333333,3.3,0,1,2640.015039457718,2640.015039457718,0.0 6543,5395,5394,4,11,23,112,63,60,0,320,0,250,0,354,2,2,0,2,1.5,3090.50857297,0,0,36755.0,1,3,9,0,3,2,0,1,1,0,0,0,0,0,0,2,24503.3333333,7,4,7,7_1,18781.0,0,18781.0,0,1,12,70.0,35.0,3.3,0,1,1906.9313663341948,1906.9313663341948,0.0 -6544,5420,5419,3,6,40,111,48,50,0,3232,0,120,0,0,2,4,2,4,2.1,2508.4497164,1768,0,46675.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,22226.190476199998,7,4,7,7_0,9000.0,0,9000.0,0,5,6,118.0,26.0,5.57,0,0,871.6741507910211,871.6741507910211,0.0 +6544,5420,5419,3,6,40,111,48,50,0,3232,0,120,0,0,2,4,2,4,2.1,2508.4497164,1768,0,46675.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,22226.1904762,7,4,7,7_0,9000.0,0,9000.0,0,5,6,118.0,26.0,5.57,0,0,871.6741507910211,871.6741507910211,0.0 6545,5421,5420,15,15,59,300,21,70,0,3233,0,690,0,0,3,4,1,3,2.0,691.581216052,10007,0,48896.0,1,1,0,0,4,3,1,1,1,0,0,0,0,0,0,3,24448.0,7,4,7,7_1,15000.0,0,15000.0,0,10,15,131.5,10.0,1.1,0,1,1523.027021724771,1523.027021724771,0.0 -6546,5424,5423,3,4,28,300,38,44,0,3236,0,100,210,0,2,5,2,4,2.1,1066.20533207,1342,0,46673.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,22225.238095200002,7,4,7,7_1,30000.0,0,20000.0,10000,5,5,177.8,15.0,3.31,0,1,3046.054043449542,2030.702695633028,1015.351347816514 +6546,5424,5423,3,4,28,300,38,44,0,3236,0,100,210,0,2,5,2,4,2.1,1066.20533207,1342,0,46673.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,22225.2380952,7,4,7,7_1,30000.0,0,20000.0,10000,5,5,177.8,15.0,3.31,0,1,3046.054043449542,2030.702695633028,1015.351347816514 6547,5426,5425,6,10,67,112,77,70,0,3239,0,99999,0,0,1,5,1,2,1.5,1766.18399691,0,0,32975.0,5,1,6,0,2,1,0,1,1,0,0,0,0,0,0,1,21983.3333333,7,4,7,7_1,7259.0,0,7259.0,0,3,6,0.0,4.0,1.1,1,0,737.0435433800075,737.0435433800075,0.0 6548,5429,5428,2,2,40,111,67,71,0,3241,0,800,100,0,3,4,2,4,2.5,2957.87794454,1594,0,56206.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,1,1,22482.4,7,4,7,7_0,33000.0,0,18000.0,15000,2,2,76.0,106.666666667,3.3,0,1,3196.138552900411,1743.3483015820423,1452.7902513183687 6549,5435,5434,0,4,48,111,54,50,0,3252,0,0,0,520,1,2,0,1,1.0,2682.3886655,0,0,23800.0,1,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,23800.0,7,4,7,7_0,10704.0,0,0.0,10704,1,4,40.5,60.0,3.3,0,1,1036.711123340788,0.0,1036.711123340788 @@ -6559,17 +6559,17 @@ 6557,5477,5476,3,6,21,111,63,43,0,3302,0,0,0,0,4,3,1,4,2.5,3729.2745633,0,0,60758.0,1,1,10,8,5,1,0,0,0,0,0,0,1,0,0,1,24303.2,7,4,7,7_0,11672.0,0,11672.0,0,1,5,107.0,32.5,5.57,0,0,1130.4645208925333,1130.4645208925333,0.0 6558,5500,5499,4,4,42,120,48,60,0,3340,0,0,40,368,1,4,0,1,1.0,6716.0930501,3076,0,21760.0,1,3,0,3,1,1,0,1,0,1,0,0,0,0,1,0,21760.0,7,4,7,7_0,6000.0,0,0.0,6000,4,5,0.0,4.0,1.1,0,0,581.1161005273475,0.0,581.1161005273475 6559,5521,5520,10,21,48,112,67,60,0,337,0,400,0,0,1,4,0,2,1.5,2383.37067495,4162,0,34410.0,1,1,5,0,3,2,0,0,1,0,0,0,0,0,0,2,22940.0,7,4,7,7_1,17102.0,0,17102.0,0,3,15,0.0,30.0,3.3,0,1,1736.453875035802,1736.453875035802,0.0 -6560,5532,5531,3,8,38,120,62,50,0,3383,0,300,600,0,2,6,2,4,2.1,1102.14886624,6682,0,46003.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,21906.190476199998,7,4,7,7_1,28716.0,0,18716.0,10000,3,7,274.3,29.5,3.3,0,1,2915.6829303899012,1900.3315825733873,1015.351347816514 +6560,5532,5531,3,8,38,120,62,50,0,3383,0,300,600,0,2,6,2,4,2.1,1102.14886624,6682,0,46003.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,21906.1904762,7,4,7,7_1,28716.0,0,18716.0,10000,3,7,274.3,29.5,3.3,0,1,2915.6829303899012,1900.3315825733873,1015.351347816514 6561,5555,5554,9,11,50,112,67,50,0,3416,0,0,0,0,1,4,0,1,1.0,1565.13105759,0,0,23720.0,1,1,7,1,1,1,0,1,0,1,0,0,0,0,1,0,23720.0,7,4,7,7_0,18000.0,0,0.0,18000,7,7,0.0,12.0,1.1,1,0,1743.3483015820423,0.0,1743.3483015820423 6562,5557,5556,0,0,71,111,77,43,0,3419,0,0,0,0,0,3,0,1,1.0,2758.681744,0,0,24438.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,24438.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6563,5566,5565,6,12,61,111,72,71,0,3433,0,0,0,0,0,4,0,2,1.5,4177.57422274,3102,0,32846.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,21897.3333333,7,4,7,7_0,50000.0,0,50000.0,0,3,11,0.0,0.0,0.0,0,0,4842.634171061229,4842.634171061229,0.0 6564,5573,5572,0,0,27,111,35,10,0,3440,0,0,0,0,1,1,0,1,1.0,3845.14600523,0,0,22173.0,1,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,22173.0,7,4,7,7_0,0.0,0,0.0,0,0,0,49.5,80.0,5.55,0,0,0.0,0.0,0.0 6565,5576,5575,0,17,46,112,33,30,2,3447,0,0,0,0,2,5,2,4,2.5,2325.77530041,3120,1100,55983.0,1,1,9,1,4,2,0,0,0,1,0,0,0,0,1,1,22393.2,7,4,7,7_0,15000.0,0,10000.0,5000,14,18,50.4,10.0,3.3,0,1,1452.7902513183687,968.5268342122457,484.26341710612286 6566,5588,5587,1,2,56,211,62,50,0,3466,0,160,0,284,1,2,0,1,1.0,2133.66239768,0,0,22737.0,1,3,4,3,1,1,0,1,0,1,0,0,0,0,0,1,22737.0,7,4,7,7_0,13716.0,0,13716.0,0,1,1,0.0,10.0,3.3,0,1,1328.4314058055163,1328.4314058055163,0.0 -6567,5593,5592,7,11,44,211,62,50,0,3471,0,0,30,0,2,4,1,3,1.8,1281.32073479,4680,0,43195.0,1,2,1,3,4,2,0,0,0,1,0,0,0,0,2,0,23997.222222200002,7,4,7,7_0,12000.0,0,0.0,12000,3,10,91.2,18.3333333333,3.3,0,1,1162.232201054695,0.0,1162.232201054695 +6567,5593,5592,7,11,44,211,62,50,0,3471,0,0,30,0,2,4,1,3,1.8,1281.32073479,4680,0,43195.0,1,2,1,3,4,2,0,0,0,1,0,0,0,0,2,0,23997.2222222,7,4,7,7_0,12000.0,0,0.0,12000,3,10,91.2,18.3333333333,3.3,0,1,1162.232201054695,0.0,1162.232201054695 6568,5601,5600,1,1,69,111,75,60,2,3483,0,0,0,0,0,5,0,2,1.5,1200.58927109,0,15000,35755.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,23836.6666667,7,4,7,7_0,15310.0,0,15310.0,0,3,3,0.0,0.0,0.0,0,0,1482.8145831789484,1482.8145831789484,0.0 6569,5617,5616,11,14,57,111,62,70,0,3502,0,0,0,0,2,3,0,2,1.5,1616.79258536,5460,0,34684.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,0,1,23122.6666667,7,4,7,7_0,10333.0,0,10333.0,0,4,10,77.5,47.5,3.3,0,1,1000.7787777915136,1000.7787777915136,0.0 -6570,5635,5634,6,10,52,112,64,50,0,3523,0,215,0,0,1,5,0,1,1.0,1743.7380747000002,3932,0,22470.0,1,3,4,0,1,1,0,1,1,0,0,0,0,0,0,1,22470.0,7,4,7,7_1,15000.0,0,15000.0,0,3,13,98.0,60.0,3.3,0,1,1523.027021724771,1523.027021724771,0.0 +6570,5635,5634,6,10,52,112,64,50,0,3523,0,215,0,0,1,5,0,1,1.0,1743.7380747,3932,0,22470.0,1,3,4,0,1,1,0,1,1,0,0,0,0,0,0,1,22470.0,7,4,7,7_1,15000.0,0,15000.0,0,3,13,98.0,60.0,3.3,0,1,1523.027021724771,1523.027021724771,0.0 6571,5636,5635,0,0,33,300,35,20,0,3524,0,0,0,0,1,2,1,2,1.3,2279.62709488,2082,0,28509.0,1,2,0,0,2,0,0,0,1,0,0,0,0,0,0,0,21930.0,7,4,7,7_1,0.0,0,0.0,0,0,0,0.0,20.0,2.22,0,0,0.0,0.0,0.0 6572,5637,5636,0,3,37,400,21,43,2,3525,0,900,0,0,2,4,2,4,2.1,3657.21029999,2003,13000,49771.0,1,2,0,0,4,2,1,1,1,0,0,0,0,0,0,2,23700.4761905,7,4,7,7_1,6787.0,0,6787.0,0,0,2,0.0,17.0,3.3,0,1,689.118959763068,689.118959763068,0.0 6573,5640,5639,0,0,68,111,75,20,0,3528,0,0,0,0,0,5,0,1,1.0,3546.17550951,0,0,24560.0,5,3,6,4,1,0,0,0,0,0,1,0,0,0,0,0,24560.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -6583,18 +6583,18 @@ 6581,5699,5698,7,7,56,112,13,70,0,3606,0,0,0,0,1,7,0,1,1.0,2187.16155489,0,0,22878.0,1,4,7,0,1,1,1,0,1,0,0,0,0,0,0,1,22878.0,7,4,7,7_1,12000.0,0,12000.0,0,3,6,41.0,20.0,3.3,0,1,1218.4216173798168,1218.4216173798168,0.0 6582,5701,5700,8,15,70,111,75,41,0,3610,0,0,0,0,0,3,0,2,1.5,4090.67771485,1305,0,36399.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,24266.0,7,4,7,7_0,9672.0,0,9672.0,0,2,4,0.0,0.0,0.0,0,0,936.7591540500841,936.7591540500841,0.0 6583,5702,5701,4,6,42,212,48,71,0,3611,0,180,0,0,1,4,0,1,1.0,2806.11613775,0,0,23369.0,1,3,3,0,1,1,0,1,1,0,0,0,0,0,0,1,23369.0,7,4,7,7_1,35000.0,0,35000.0,0,2,8,0.0,0.0,0.0,0,1,3553.729717357799,3553.729717357799,0.0 -6584,5716,5715,1,1,49,112,62,71,1,3630,0,0,350,0,2,6,2,4,2.5,1928.86301453,2693,15300,59165.0,1,2,8,1,4,2,1,0,0,1,0,0,0,0,1,1,23666.0,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.333333333299999,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 +6584,5716,5715,1,1,49,112,62,71,1,3630,0,0,350,0,2,6,2,4,2.5,1928.86301453,2693,15300,59165.0,1,2,8,1,4,2,1,0,0,1,0,0,0,0,1,1,23666.0,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.3333333333,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 6585,5731,5730,5,6,57,111,46,50,0,3651,0,0,0,0,1,4,0,1,1.0,3270.10407703,0,0,21920.0,1,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,21920.0,7,4,7,7_0,15000.0,0,15000.0,0,3,8,10.8,20.0,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 6586,5734,5733,1,4,57,111,56,71,2,3654,0,30,0,253,1,2,0,1,1.0,2687.61592828,0,17000,22758.0,1,3,6,4,1,1,0,1,0,0,1,0,0,0,0,1,22758.0,7,4,7,7_0,20000.0,0,20000.0,0,3,5,0.0,20.0,1.1,0,0,1937.0536684244914,1937.0536684244914,0.0 6587,5736,5735,4,5,36,111,46,20,0,3656,0,300,20,0,2,4,1,3,1.8,1771.26649472,5314,0,44585.0,1,2,8,7,4,2,1,1,0,0,0,1,0,0,1,1,24769.4444444,7,4,7,7_0,19792.0,0,12500.0,7292,4,10,54.5,20.0,3.3,0,1,1916.9083102728769,1210.6585427653072,706.2497675075696 -6588,5738,5737,11,13,49,112,52,42,0,366,0,0,250,0,1,5,1,3,2.0,3987.64879828,0,0,44020.0,1,2,8,0,4,2,0,0,1,0,0,0,0,0,1,1,22010.0,7,4,7,7_1,16164.0,0,15164.0,1000,0,0,815.0,9.666666666669999,3.3,0,1,1641.2139186106133,1539.6787838289617,101.5351347816514 +6588,5738,5737,11,13,49,112,52,42,0,366,0,0,250,0,1,5,1,3,2.0,3987.64879828,0,0,44020.0,1,2,8,0,4,2,0,0,1,0,0,0,0,0,1,1,22010.0,7,4,7,7_1,16164.0,0,15164.0,1000,0,0,815.0,9.66666666667,3.3,0,1,1641.2139186106133,1539.6787838289617,101.5351347816514 6589,5747,5746,2,2,28,111,54,20,0,367,0,450,0,0,1,2,0,1,1.0,3024.48571322,0,0,22401.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,0,1,22401.0,7,4,7,7_0,15000.0,0,15000.0,0,4,5,112.0,40.0,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 -6590,5751,5750,2,11,36,112,37,31,0,3676,0,400,0,0,2,3,1,3,1.8,3422.45550339,1352,0,44009.0,1,2,9,0,4,3,0,1,1,0,0,0,0,0,0,3,24449.4444444,7,4,7,7_1,11000.0,0,11000.0,0,2,2,0.0,6.666666666669999,0.0,0,0,1116.8864825981655,1116.8864825981655,0.0 +6590,5751,5750,2,11,36,112,37,31,0,3676,0,400,0,0,2,3,1,3,1.8,3422.45550339,1352,0,44009.0,1,2,9,0,4,3,0,1,1,0,0,0,0,0,0,3,24449.4444444,7,4,7,7_1,11000.0,0,11000.0,0,2,2,0.0,6.66666666667,0.0,0,0,1116.8864825981655,1116.8864825981655,0.0 6591,5753,5752,6,12,61,111,77,70,0,3678,0,0,0,0,0,4,0,2,1.5,2371.07064925,0,0,34660.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,23106.6666667,7,4,7,7_0,10000.0,0,0.0,10000,8,12,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 6592,5758,5757,8,24,49,111,62,60,0,3683,0,0,350,0,3,4,1,3,2.0,1131.79917043,4682,0,46037.0,1,1,4,4,4,2,0,1,0,0,1,0,0,0,2,0,23018.5,7,4,7,7_0,100.0,0,0.0,100,2,16,0.0,20.0,0.0,0,1,9.685268342122459,0.0,9.685268342122459 -6593,5764,5763,7,7,37,111,37,20,0,3694,0,50,0,599,2,3,1,3,1.8,3768.26508398,0,0,42131.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,23406.111111099995,7,4,7,7_0,20000.0,0,20000.0,0,2,6,0.0,50.0,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 +6593,5764,5763,7,7,37,111,37,20,0,3694,0,50,0,599,2,3,1,3,1.8,3768.26508398,0,0,42131.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,23406.1111111,7,4,7,7_0,20000.0,0,20000.0,0,2,6,0.0,50.0,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 6594,5765,5764,4,18,59,120,77,60,0,3695,0,0,0,0,0,4,0,2,1.5,2698.16481643,0,0,33370.0,4,1,0,2,3,3,0,0,0,1,0,0,0,0,0,3,22246.6666667,7,4,7,7_0,7000.0,0,7000.0,0,4,18,0.0,0.0,0.0,0,0,677.9687839485721,677.9687839485721,0.0 -6595,5770,5769,0,6,39,111,56,31,0,370,0,199998,0,491,2,4,1,3,1.8,2653.56589418,0,0,43996.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,0,2,24442.222222200002,7,4,7,7_0,27000.0,0,27000.0,0,2,4,27.5,64.6666666667,3.3,0,1,2615.0224523730635,2615.0224523730635,0.0 +6595,5770,5769,0,6,39,111,56,31,0,370,0,199998,0,491,2,4,1,3,1.8,2653.56589418,0,0,43996.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,0,2,24442.2222222,7,4,7,7_0,27000.0,0,27000.0,0,2,4,27.5,64.6666666667,3.3,0,1,2615.0224523730635,2615.0224523730635,0.0 6596,5771,5770,0,0,69,111,75,60,0,3700,0,0,0,0,0,3,0,1,1.0,3180.55420001,0,0,23865.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,23865.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6597,5788,5787,4,4,63,111,72,31,0,3724,0,0,0,0,0,4,0,2,1.5,2086.58068455,0,0,33008.0,5,3,7,5,3,1,0,0,0,0,1,0,0,0,1,0,22005.3333333,7,4,7,7_0,15000.0,0,0.0,15000,3,3,0.0,0.0,0.0,0,0,1452.7902513183687,0.0,1452.7902513183687 6598,5792,5791,5,9,55,221,48,71,0,373,0,45,0,0,1,5,0,2,1.5,2952.94996962,1924,0,34819.0,1,1,1,2,3,2,0,0,0,1,0,0,0,0,0,2,23212.6666667,7,4,7,7_0,11500.0,0,11500.0,0,5,13,0.0,0.0,0.0,0,1,1113.8058593440826,1113.8058593440826,0.0 @@ -6615,16 +6615,16 @@ 6613,5917,5916,5,12,29,111,43,10,0,3891,0,400,50,635,2,3,1,3,1.8,2103.09512673,0,0,44421.0,1,3,8,6,4,2,0,1,0,0,1,0,0,0,1,1,24678.3333333,7,4,7,7_0,24001.0,0,19001.0,5000,1,9,0.0,3.33333333333,0.0,1,1,2324.5612547928113,1840.2978376866884,484.26341710612286 6614,5931,5930,11,11,68,111,78,50,0,3911,0,0,0,0,0,4,0,2,1.5,1145.37639401,0,0,33169.0,5,4,9,7,3,1,0,0,0,0,0,1,0,0,1,0,22112.6666667,7,4,7,7_0,10000.0,0,0.0,10000,9,10,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 6615,5936,5935,1,1,53,112,52,50,2,3918,0,120,0,0,1,5,0,2,1.5,1285.15389546,936,3500,34371.0,1,1,9,1,3,2,0,1,0,1,0,0,0,0,0,2,22914.0,7,4,7,7_0,5801.0,0,5801.0,0,1,3,0.0,0.0,0.0,0,1,561.8424165265238,561.8424165265238,0.0 -6616,5940,5939,0,12,30,112,62,71,2,3921,0,255,0,0,2,5,1,3,1.8,2820.94180633,1560,4000,39791.0,1,3,8,0,4,1,0,1,1,0,0,0,0,0,0,1,22106.111111099995,7,4,7,7_1,16000.0,0,16000.0,0,2,5,0.0,6.666666666669999,3.3,0,1,1624.5621565064223,1624.5621565064223,0.0 +6616,5940,5939,0,12,30,112,62,71,2,3921,0,255,0,0,2,5,1,3,1.8,2820.94180633,1560,4000,39791.0,1,3,8,0,4,1,0,1,1,0,0,0,0,0,0,1,22106.1111111,7,4,7,7_1,16000.0,0,16000.0,0,2,5,0.0,6.66666666667,3.3,0,1,1624.5621565064223,1624.5621565064223,0.0 6617,5954,5953,0,0,76,111,77,70,0,3941,0,0,0,0,0,4,0,1,1.0,3866.0202606,0,0,23003.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,23003.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6618,5955,5954,2,2,73,400,75,70,0,3942,0,0,0,0,0,5,0,2,1.5,1009.70062988,0,0,35548.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,0,23698.6666667,7,4,7,7_1,9862.0,0,0.0,9862,7,7,0.0,0.0,0.0,0,0,1001.3394992166461,0.0,1001.3394992166461 -6619,5956,5955,7,10,47,111,48,20,0,3943,0,450,200,0,2,5,2,4,2.5,2093.88087477,0,0,60458.0,1,1,5,4,4,2,0,1,0,0,1,0,0,0,1,1,24183.2,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.333333333299999,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 +6619,5956,5955,7,10,47,111,48,20,0,3943,0,450,200,0,2,5,2,4,2.5,2093.88087477,0,0,60458.0,1,1,5,4,4,2,0,1,0,0,1,0,0,0,1,1,24183.2,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.3333333333,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 6620,5975,5974,8,11,39,112,38,50,0,3970,0,350,350,0,2,5,2,4,2.1,2008.8828653,0,0,47976.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,1,1,22845.7142857,7,4,7,7_1,25132.0,0,20000.0,5132,5,8,117.3,98.3333333333,3.3,0,1,2551.7810073324627,2030.702695633028,521.078311699435 6621,5980,5979,2,2,45,112,38,44,0,3976,0,1070,0,1106,2,6,2,4,2.5,2988.81305237,6006,0,58930.0,1,3,7,1,4,2,0,1,0,1,0,0,0,0,0,2,23572.0,7,4,7,7_0,7644.0,0,7644.0,0,1,1,164.0,26.6666666667,3.3,0,1,740.3419120718406,740.3419120718406,0.0 6622,6012,6011,7,12,49,111,48,42,0,4024,0,400,0,0,2,5,2,4,2.5,1199.95033649,0,0,55150.0,1,1,7,5,4,2,1,1,0,0,1,0,0,0,0,2,22060.0,7,4,7,7_0,25000.0,0,25000.0,0,8,11,81.5,20.0,0.0,0,1,2421.3170855306143,2421.3170855306143,0.0 6623,6014,6013,2,14,45,111,64,43,0,4028,0,0,45,384,1,3,0,1,1.0,6146.26739652,3338,0,22358.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,1,0,22358.0,7,4,7,7_0,8000.0,0,0.0,8000,8,14,0.0,0.0,0.0,0,0,774.8214673697967,0.0,774.8214673697967 6624,6030,6029,3,10,51,111,38,43,0,4050,0,300,0,0,1,4,0,1,1.0,3182.07612261,3120,0,24830.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,0,1,24830.0,7,4,7,7_0,20000.0,0,20000.0,0,5,8,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 -6625,6042,6041,4,4,50,111,48,50,0,4068,0,120,0,0,2,4,2,4,2.1,1618.37624395,2453,0,46693.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,22234.761904799998,7,4,7,7_0,8216.0,0,8216.0,0,1,7,0.0,26.25,3.31,0,1,795.7416469887811,795.7416469887811,0.0 +6625,6042,6041,4,4,50,111,48,50,0,4068,0,120,0,0,2,4,2,4,2.1,1618.37624395,2453,0,46693.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,22234.7619048,7,4,7,7_0,8216.0,0,8216.0,0,1,7,0.0,26.25,3.31,0,1,795.7416469887811,795.7416469887811,0.0 6626,6045,6044,1,2,41,111,46,50,0,4070,0,250,0,0,1,3,1,3,1.8,2740.31301619,1815,0,40589.0,1,2,6,5,4,2,0,0,0,0,1,0,0,0,0,2,22549.4444444,7,4,7,7_0,23000.0,0,23000.0,0,2,2,0.0,25.0,3.3,0,1,2227.611718688165,2227.611718688165,0.0 6627,6046,6045,2,12,54,111,67,60,0,4071,0,40,0,325,2,3,1,2,1.5,2096.92499992,858,0,34360.0,1,3,6,5,2,1,0,1,0,0,1,0,0,0,0,1,22906.6666667,7,4,7,7_0,15000.0,0,15000.0,0,3,12,45.5,20.0,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 6628,6091,6090,3,4,64,300,71,50,0,4129,0,0,0,0,0,6,0,2,1.5,1321.82350271,3711,0,36287.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,24191.3333333,7,4,7,7_1,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,0,2030.702695633028,2030.702695633028,0.0 @@ -6634,15 +6634,15 @@ 6632,6104,6103,2,9,45,111,67,30,0,4148,0,0,0,0,2,4,1,3,1.8,2749.62924616,4520,0,42796.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,23775.5555556,7,4,7,7_0,10000.0,0,0.0,10000,5,5,0.0,6.0,3.3,0,1,968.5268342122457,0.0,968.5268342122457 6633,6112,6111,3,3,48,112,63,50,0,4159,0,260,0,0,1,5,0,2,1.5,2281.69675687,2488,0,35999.0,1,1,9,3,3,2,0,0,0,1,0,0,0,0,0,2,23999.3333333,7,4,7,7_0,5801.0,0,5801.0,0,1,3,0.0,0.0,0.0,0,1,561.8424165265238,561.8424165265238,0.0 6634,6113,6112,5,9,32,300,63,31,0,416,0,200,0,383,1,3,0,1,1.0,2381.91732518,0,0,22041.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,0,1,22041.0,7,4,7,7_1,9859.0,0,9859.0,0,0,10,107.0,30.0,3.3,0,1,1001.0348938123012,1001.0348938123012,0.0 -6635,6121,6120,15,19,56,300,78,50,0,4170,0,0,0,0,0,3,0,1,1.0,911.2685063819999,11079,0,21865.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,21865.0,7,4,7,7_1,10000.0,0,10000.0,0,2,18,0.0,0.0,0.0,0,0,1015.351347816514,1015.351347816514,0.0 +6635,6121,6120,15,19,56,300,78,50,0,4170,0,0,0,0,0,3,0,1,1.0,911.268506382,11079,0,21865.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,21865.0,7,4,7,7_1,10000.0,0,10000.0,0,2,18,0.0,0.0,0.0,0,0,1015.351347816514,1015.351347816514,0.0 6636,6123,6122,2,2,65,120,74,20,0,4173,0,0,0,0,0,7,1,3,2.0,1585.37055086,948,0,48105.0,5,1,0,3,4,2,0,0,0,1,0,0,0,0,1,1,24052.5,7,4,7,7_0,31000.0,0,21000.0,10000,3,3,0.0,0.0,0.0,0,0,3002.433186057962,2033.9063518457162,968.5268342122457 6637,6129,6128,1,1,31,111,56,20,2,4182,0,0,20,363,2,2,0,2,1.5,2825.25205425,0,25000,33159.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,1,0,22106.0,7,4,7,7_0,19000.0,0,0.0,19000,2,2,0.0,0.0,0.0,0,0,1840.200985003267,0.0,1840.200985003267 -6638,6133,6132,5,13,38,120,62,43,0,4188,0,0,0,0,2,5,2,4,2.1,2258.22792034,0,0,48843.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,23258.571428599997,7,4,7,7_1,25000.0,0,25000.0,0,6,13,35.8,21.0,1.1,1,1,2538.378369541285,2538.378369541285,0.0 +6638,6133,6132,5,13,38,120,62,43,0,4188,0,0,0,0,2,5,2,4,2.1,2258.22792034,0,0,48843.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,23258.5714286,7,4,7,7_1,25000.0,0,25000.0,0,6,13,35.8,21.0,1.1,1,1,2538.378369541285,2538.378369541285,0.0 6639,6142,6141,8,8,44,112,63,50,0,4204,0,365,0,0,2,7,2,4,2.1,2491.53340431,3531,0,48600.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,23142.8571429,7,4,7,7_1,26353.0,0,26353.0,0,7,7,215.4,26.5,3.3,0,1,2675.7554069008593,2675.7554069008593,0.0 6640,6145,6144,2,2,75,112,74,50,0,4210,0,0,0,0,0,5,0,2,1.5,1087.57376458,1825,0,35612.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,0,1,23741.3333333,7,4,7,7_1,5201.0,0,5201.0,0,1,1,0.0,0.0,0.0,0,0,528.0842359993688,528.0842359993688,0.0 6641,6153,6152,0,21,37,120,46,12,0,4224,0,110,0,0,2,4,3,5,2.4,2809.01199018,0,0,59459.0,1,4,0,2,4,2,0,0,0,1,0,0,0,0,1,1,24774.5833333,7,4,7,7_0,29000.0,0,25000.0,4000,2,3,142.0,21.2,3.3,0,1,2808.7278192155127,2421.3170855306143,387.41073368489833 6642,6154,6153,1,3,40,111,46,41,2,4225,0,700,0,0,1,4,1,3,2.0,2728.16905099,781,15150,44283.0,1,3,9,7,4,2,0,0,0,0,0,1,0,1,0,2,22141.5,7,4,7,7_0,23000.0,0,23000.0,0,2,2,0.0,25.0,3.3,0,1,2227.611718688165,2227.611718688165,0.0 -6643,6157,6156,1,13,27,111,63,50,2,4228,0,290,0,0,2,4,1,3,1.8,2665.65824066,4394,4500,41782.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,0,2,23212.222222200002,7,4,7,7_0,25000.0,0,25000.0,0,2,15,76.8,30.0,3.31,0,1,2421.3170855306143,2421.3170855306143,0.0 +6643,6157,6156,1,13,27,111,63,50,2,4228,0,290,0,0,2,4,1,3,1.8,2665.65824066,4394,4500,41782.0,1,3,5,4,4,2,0,1,0,0,1,0,0,0,0,2,23212.2222222,7,4,7,7_0,25000.0,0,25000.0,0,2,15,76.8,30.0,3.31,0,1,2421.3170855306143,2421.3170855306143,0.0 6644,6164,6163,2,2,83,111,75,50,0,4237,0,0,0,0,0,4,0,2,1.5,1470.58445228,0,0,37230.0,4,1,6,4,3,2,0,0,0,0,1,0,0,0,2,0,24820.0,7,4,7,7_0,1500.0,0,0.0,1500,10,10,0.0,0.0,0.0,0,0,145.27902513183687,0.0,145.27902513183687 6645,6169,6168,1,8,44,300,48,44,0,4242,0,400,0,0,4,5,2,5,2.8,832.008488607,0,0,61405.0,1,2,0,1,5,2,0,0,0,1,0,0,0,0,0,2,21930.3571429,7,4,7,7_0,15000.0,0,15000.0,0,5,9,35.2,4.4,0.0,0,1,1452.7902513183687,1452.7902513183687,0.0 6646,6174,6173,3,3,65,112,75,71,0,4248,0,0,0,0,0,6,0,2,1.5,2428.15363892,2281,0,34178.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,0,2,22785.3333333,7,4,7,7_1,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1218.4216173798168,1218.4216173798168,0.0 @@ -6657,7 +6657,7 @@ 6655,6256,6255,2,2,26,120,52,50,0,4355,0,0,150,490,2,3,0,2,1.5,2150.15538372,0,0,35732.0,1,3,0,1,3,1,0,1,0,1,0,0,0,0,1,0,23821.3333333,7,4,7,7_0,19000.0,0,0.0,19000,2,2,0.0,0.0,0.0,0,0,1840.200985003267,0.0,1840.200985003267 6656,6258,6257,9,11,84,111,74,70,0,4357,0,0,0,0,0,5,0,2,1.5,2423.44742776,0,0,35155.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,23436.6666667,7,4,7,7_0,8141.0,0,8141.0,0,108,18,0.0,0.0,0.0,0,0,788.4776957321893,788.4776957321893,0.0 6657,6272,6271,5,5,79,300,78,71,0,4375,0,0,0,0,0,3,0,2,1.5,1982.98089787,2081,0,35313.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,23542.0,7,4,7,7_1,15000.0,0,15000.0,0,4,4,0.0,0.0,0.0,0,0,1523.027021724771,1523.027021724771,0.0 -6658,6274,6273,3,15,57,112,54,50,0,4378,0,0,220,0,3,7,1,3,2.0,1243.53692944,1872,0,47016.0,1,1,6,1,4,2,0,1,0,1,0,0,0,0,1,1,23508.0,7,4,7,7_0,25000.0,0,20000.0,5000,12,12,57.0,15.333333333299999,3.3,1,0,2421.3170855306143,1937.0536684244914,484.26341710612286 +6658,6274,6273,3,15,57,112,54,50,0,4378,0,0,220,0,3,7,1,3,2.0,1243.53692944,1872,0,47016.0,1,1,6,1,4,2,0,1,0,1,0,0,0,0,1,1,23508.0,7,4,7,7_0,25000.0,0,20000.0,5000,12,12,57.0,15.3333333333,3.3,1,0,2421.3170855306143,1937.0536684244914,484.26341710612286 6659,6292,6291,0,4,25,111,37,31,0,4400,0,0,300,360,1,2,0,1,1.0,3572.89388144,0,0,22324.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,22324.0,7,4,7,7_0,18000.0,0,0.0,18000,4,4,0.0,0.0,0.0,1,1,1743.3483015820423,0.0,1743.3483015820423 6660,6293,6292,6,11,72,221,77,71,0,4402,0,0,0,0,2,5,1,3,2.0,4058.50008209,0,0,46396.0,5,1,1,3,5,1,0,1,0,1,0,0,0,0,1,0,23198.0,7,4,7,7_0,5915.0,0,0.0,5915,15,15,0.0,0.0,0.0,0,0,572.8836224365433,0.0,572.8836224365433 6661,6294,6293,9,22,28,300,62,50,0,4405,0,0,200,440,1,3,0,1,1.0,3000.10924367,0,0,24136.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,1,0,24136.0,7,4,7,7_1,3000.0,0,0.0,3000,21,22,0.0,0.0,0.0,0,0,304.6054043449542,0.0,304.6054043449542 @@ -6671,22 +6671,22 @@ 6669,6371,6370,13,15,56,112,56,71,0,4530,0,250,0,0,1,4,0,2,1.5,3239.08241421,4680,0,36580.0,1,1,6,0,3,2,0,0,1,0,0,0,0,0,0,2,24386.6666667,7,4,7,7_1,33000.0,0,33000.0,0,4,14,0.0,0.0,0.0,0,0,3350.659447794496,3350.659447794496,0.0 6670,6383,6382,6,6,28,111,54,43,0,4553,0,250,0,0,2,4,1,3,1.8,3359.34171553,4160,0,40626.0,1,2,5,4,4,2,0,1,0,0,1,0,0,0,0,2,22570.0,7,4,7,7_0,35000.0,0,35000.0,0,2,5,35.2,8.0,0.0,1,1,3389.84391974286,3389.84391974286,0.0 6671,6400,6399,15,15,42,221,48,50,0,4575,0,300,0,0,2,5,2,4,2.3,2149.63647452,6374,0,50629.0,1,2,1,3,4,2,0,1,0,1,0,0,0,0,0,2,22012.6086957,7,4,7,7_0,25000.0,0,25000.0,0,7,11,236.0,35.0,0.0,0,1,2421.3170855306143,2421.3170855306143,0.0 -6672,6401,6400,1,5,31,111,22,31,2,4578,0,0,0,0,2,5,1,3,1.8,2635.90039182,0,20000,39161.0,1,2,9,7,4,1,1,0,0,0,0,1,0,0,1,0,21756.111111099995,7,4,7,7_0,9000.0,0,0.0,9000,3,4,0.0,63.3333333333,3.3,0,1,871.6741507910211,0.0,871.6741507910211 +6672,6401,6400,1,5,31,111,22,31,2,4578,0,0,0,0,2,5,1,3,1.8,2635.90039182,0,20000,39161.0,1,2,9,7,4,1,1,0,0,0,0,1,0,0,1,0,21756.1111111,7,4,7,7_0,9000.0,0,0.0,9000,3,4,0.0,63.3333333333,3.3,0,1,871.6741507910211,0.0,871.6741507910211 6673,6413,6412,0,0,66,111,78,70,0,4592,0,0,0,345,1,4,0,2,1.5,3176.69579801,0,0,34130.0,5,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,22753.3333333,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6674,6414,6413,4,7,38,111,42,20,0,4593,0,80,0,0,2,4,3,5,2.4,2961.17634552,3120,0,56798.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,23665.8333333,7,4,7,7_0,8000.0,0,8000.0,0,3,8,0.0,6.0,3.31,0,1,774.8214673697967,774.8214673697967,0.0 6675,6417,6416,0,11,36,111,63,71,0,4596,0,324,0,0,2,4,1,3,1.8,2952.79614892,0,0,39525.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,21958.3333333,7,4,7,7_0,16337.0,0,16337.0,0,5,14,394.1,56.6666666667,3.3,0,1,1582.282289052546,1582.282289052546,0.0 6676,6422,6421,1,3,39,112,34,20,0,4601,0,300,0,0,1,3,2,3,1.6,1499.57012015,1300,0,37517.0,1,4,8,0,2,1,0,1,1,0,0,0,0,0,0,1,23448.125,7,4,7,7_1,50000.0,0,50000.0,0,3,4,0.0,1.33333333333,0.0,1,0,5076.75673908257,5076.75673908257,0.0 6677,6442,6441,3,3,23,120,54,31,0,463,0,0,545,0,3,5,2,3,2.0,1092.80978369,3173,0,45780.0,1,1,0,1,2,3,0,1,0,1,0,0,0,0,3,0,22890.0,7,4,7,7_0,0.0,0,0.0,0,0,0,213.2,33.3333333333,3.3,0,1,0.0,0.0,0.0 6678,6454,6453,8,24,28,111,48,31,0,4644,0,0,0,0,1,2,0,1,1.0,3627.30873342,1404,0,23469.0,1,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,23469.0,7,4,7,7_0,22000.0,0,0.0,22000,2,18,53.0,40.0,3.3,0,1,2130.759035266941,0.0,2130.759035266941 -6679,6461,6460,1,3,42,112,43,33,0,4651,0,298,0,0,2,5,1,3,1.8,1323.57288293,0,0,40466.0,1,2,8,2,4,2,0,1,0,1,0,0,0,0,0,2,22481.111111099995,7,4,7,7_0,27000.0,0,27000.0,0,2,4,27.5,64.6666666667,3.3,0,1,2615.0224523730635,2615.0224523730635,0.0 +6679,6461,6460,1,3,42,112,43,33,0,4651,0,298,0,0,2,5,1,3,1.8,1323.57288293,0,0,40466.0,1,2,8,2,4,2,0,1,0,1,0,0,0,0,0,2,22481.1111111,7,4,7,7_0,27000.0,0,27000.0,0,2,4,27.5,64.6666666667,3.3,0,1,2615.0224523730635,2615.0224523730635,0.0 6680,6467,6466,0,0,87,111,86,70,0,4661,0,0,0,0,0,3,0,1,1.0,2619.9101304,0,0,24125.0,6,3,6,5,1,0,0,0,0,0,1,0,0,0,0,0,24125.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6681,6479,6478,7,7,56,400,22,50,0,4680,0,0,0,0,1,4,1,2,1.5,2360.76101019,3123,0,34141.0,1,1,0,0,2,1,0,0,1,0,0,0,0,0,1,0,22760.6666667,7,4,7,7_1,12000.0,0,0.0,12000,8,9,0.0,0.0,0.0,0,1,1218.4216173798168,0.0,1218.4216173798168 6682,6485,6484,2,16,35,300,62,60,0,4686,0,0,0,400,2,4,0,2,1.5,2278.12171431,1040,0,33204.0,1,3,0,0,3,2,0,0,1,0,0,0,0,1,1,1,22136.0,7,4,7,7_1,25500.0,0,20000.0,5500,8,14,163.5,35.0,3.31,0,1,2589.1459369321105,2030.702695633028,558.4432412990827 6683,6486,6485,1,1,59,300,77,71,1,4687,0,0,0,0,0,4,0,2,1.5,2756.69468179,0,15000,34176.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,22784.0,7,4,7,7_1,10000.0,0,10000.0,0,2,4,0.0,0.0,0.0,0,0,1015.351347816514,1015.351347816514,0.0 -6684,6498,6497,3,3,50,111,34,10,0,4704,0,250,200,0,2,8,3,5,3.0,972.2298651839999,0,0,70283.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,1,1,23427.6666667,7,4,7,7_0,20000.0,0,4000.0,16000,7,11,74.8,25.0,5.56,0,1,1937.0536684244914,387.41073368489833,1549.6429347395933 -6685,6507,6506,2,5,53,111,52,41,0,4718,0,0,0,0,1,3,0,2,1.5,2578.3166843000004,820,0,35428.0,1,2,8,7,3,1,0,0,0,0,0,1,0,0,0,1,23618.6666667,7,4,7,7_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,1,0,1937.0536684244914,1937.0536684244914,0.0 +6684,6498,6497,3,3,50,111,34,10,0,4704,0,250,200,0,2,8,3,5,3.0,972.229865184,0,0,70283.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,1,1,23427.6666667,7,4,7,7_0,20000.0,0,4000.0,16000,7,11,74.8,25.0,5.56,0,1,1937.0536684244914,387.41073368489833,1549.6429347395933 +6685,6507,6506,2,5,53,111,52,41,0,4718,0,0,0,0,1,3,0,2,1.5,2578.3166843,820,0,35428.0,1,2,8,7,3,1,0,0,0,0,0,1,0,0,0,1,23618.6666667,7,4,7,7_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,1,0,1937.0536684244914,1937.0536684244914,0.0 6686,6514,6513,0,0,85,112,77,50,0,4725,0,0,0,0,0,3,0,1,1.0,3377.65217686,0,0,22931.0,5,1,10,3,1,0,0,0,0,1,0,0,0,0,0,0,22931.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -6687,6525,6524,2,2,33,111,43,31,0,4741,0,280,0,0,2,5,2,4,2.1,2524.24468815,0,0,46562.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,22172.380952400003,7,4,7,7_0,22000.0,0,22000.0,0,2,3,278.0,48.75,3.3,0,0,2130.759035266941,2130.759035266941,0.0 +6687,6525,6524,2,2,33,111,43,31,0,4741,0,280,0,0,2,5,2,4,2.1,2524.24468815,0,0,46562.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,22172.3809524,7,4,7,7_0,22000.0,0,22000.0,0,2,3,278.0,48.75,3.3,0,0,2130.759035266941,2130.759035266941,0.0 6688,6546,6545,4,11,44,111,46,50,0,4772,0,0,0,0,1,2,0,1,1.0,2352.93163404,0,0,22170.0,1,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,22170.0,7,4,7,7_0,25000.0,0,25000.0,0,4,8,17.0,20.0,3.3,0,1,2421.3170855306143,2421.3170855306143,0.0 6689,6550,6549,5,6,63,111,74,41,0,4778,0,0,0,0,0,6,0,2,1.5,1702.95894528,0,0,33821.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,22547.3333333,7,4,7,7_0,21000.0,0,21000.0,0,2,8,0.0,0.0,0.0,0,0,2033.9063518457162,2033.9063518457162,0.0 6690,6555,6554,4,4,41,111,42,20,0,4783,0,0,0,0,2,7,0,2,1.5,2295.98046764,3640,0,34716.0,1,1,8,6,3,2,1,0,0,0,1,0,0,0,1,1,23144.0,7,4,7,7_0,29176.0,0,25000.0,4176,3,8,0.0,0.0,0.0,0,1,2825.773891497648,2421.3170855306143,404.45680596703386 @@ -6708,14 +6708,14 @@ 6706,6702,6701,2,2,48,111,46,60,0,4992,0,0,440,0,2,6,2,4,2.5,2258.98551219,2626,0,55223.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,2,0,22089.2,7,4,7,7_0,8000.0,0,0.0,8000,2,2,69.5,65.0,3.3,0,1,774.8214673697967,0.0,774.8214673697967 6707,6723,6722,3,7,66,400,78,50,0,5017,0,0,0,500,0,3,0,2,1.5,1104.07002533,2236,0,32938.0,5,3,0,0,3,1,0,0,1,0,0,0,0,0,0,1,21958.6666667,7,4,7,7_1,15000.0,0,15000.0,0,3,7,0.0,0.0,0.0,0,0,1523.027021724771,1523.027021724771,0.0 6708,6734,6733,8,19,34,300,48,31,0,5029,0,880,0,0,2,5,1,3,1.8,2291.88806785,5764,0,43518.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,24176.6666667,7,4,7,7_1,30000.0,0,30000.0,0,6,19,83.2,40.0,3.3,0,1,3046.054043449542,3046.054043449542,0.0 -6709,6736,6735,2,2,27,111,46,10,0,5031,0,990,0,700,2,3,1,3,1.8,3025.87163404,4788,0,42692.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,23717.777777799998,7,4,7,7_0,34000.0,0,34000.0,0,2,8,210.2,60.0,3.3,0,1,3292.991236321636,3292.991236321636,0.0 +6709,6736,6735,2,2,27,111,46,10,0,5031,0,990,0,700,2,3,1,3,1.8,3025.87163404,4788,0,42692.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,23717.7777778,7,4,7,7_0,34000.0,0,34000.0,0,2,8,210.2,60.0,3.3,0,1,3292.991236321636,3292.991236321636,0.0 6710,6747,6746,1,4,21,112,56,71,2,5050,0,70,150,215,4,6,3,5,3.0,3486.07982554,2488,4000,70806.0,1,3,10,3,5,3,0,1,0,1,0,0,0,1,1,2,23602.0,7,4,7,7_0,30716.0,0,30716.0,0,1,5,102.5,27.5,2.2,1,1,2974.927023966334,2974.927023966334,0.0 -6711,6759,6758,0,0,76,111,78,60,0,5067,0,0,0,0,0,4,0,2,1.5,1966.2098179000002,0,0,36695.0,5,1,6,4,3,0,0,0,0,0,1,0,0,0,0,0,24463.3333333,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +6711,6759,6758,0,0,76,111,78,60,0,5067,0,0,0,0,0,4,0,2,1.5,1966.2098179,0,0,36695.0,5,1,6,4,3,0,0,0,0,0,1,0,0,0,0,0,24463.3333333,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6712,6760,6759,0,0,72,111,78,70,0,507,0,0,0,249,0,2,0,1,1.0,2933.76282387,0,0,21835.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,21835.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6713,6772,6771,11,11,34,400,55,50,0,5083,0,100,0,0,1,8,1,2,1.5,1131.05336755,0,0,37066.0,1,1,0,0,2,2,0,0,1,0,0,0,0,0,1,1,24710.6666667,7,4,7,7_1,25500.0,0,20000.0,5500,8,14,163.5,35.0,3.31,0,1,2589.1459369321105,2030.702695633028,558.4432412990827 6714,6786,6785,3,7,34,111,46,31,0,5104,0,0,0,329,2,3,1,3,1.8,2957.92916115,3832,0,44274.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,1,0,24596.6666667,7,4,7,7_0,10000.0,0,0.0,10000,1,7,66.6,51.6666666667,3.3,0,1,968.5268342122457,0.0,968.5268342122457 6715,6791,6790,3,5,37,111,34,10,0,5111,0,50,0,678,2,2,0,2,1.5,2592.97989177,0,0,36257.0,1,3,9,7,3,2,0,0,0,0,0,1,0,0,0,2,24171.3333333,7,4,7,7_0,18000.0,0,18000.0,0,3,5,18.0,30.0,3.3,1,1,1743.3483015820423,1743.3483015820423,0.0 -6716,6797,6796,0,3,34,112,45,31,2,5120,0,2360,0,0,2,6,2,4,2.1,2677.34186824,7228,12000,48024.0,1,2,7,2,4,2,0,1,0,1,0,0,0,0,0,2,22868.571428599997,7,4,7,7_0,12891.0,0,12891.0,0,1,3,0.0,121.0,3.3,0,1,1248.5279419830063,1248.5279419830063,0.0 +6716,6797,6796,0,3,34,112,45,31,2,5120,0,2360,0,0,2,6,2,4,2.1,2677.34186824,7228,12000,48024.0,1,2,7,2,4,2,0,1,0,1,0,0,0,0,0,2,22868.5714286,7,4,7,7_0,12891.0,0,12891.0,0,1,3,0.0,121.0,3.3,0,1,1248.5279419830063,1248.5279419830063,0.0 6717,6807,6806,3,3,75,300,77,71,0,5135,0,0,0,0,0,5,0,2,1.5,3020.56829431,0,0,33344.0,4,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,22229.3333333,7,4,7,7_1,9862.0,0,0.0,9862,7,7,0.0,0.0,0.0,0,0,1001.3394992166461,0.0,1001.3394992166461 6718,6818,6817,20,20,81,400,77,70,0,515,0,0,0,0,0,3,0,1,1.0,3491.58995965,0,0,23758.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,23758.0,7,4,7,7_1,600.0,0,0.0,600,26,26,0.0,0.0,0.0,0,0,60.92108086899084,0.0,60.92108086899084 6719,6825,6824,12,12,59,112,75,33,0,5156,0,0,0,640,0,2,0,1,1.0,3421.64500732,1560,0,23601.0,5,3,10,4,1,1,0,0,0,0,1,0,0,0,1,0,23601.0,7,4,7,7_0,12000.0,0,0.0,12000,10,10,0.0,0.0,0.0,0,0,1162.232201054695,0.0,1162.232201054695 @@ -6725,7 +6725,7 @@ 6723,6876,6875,5,10,25,112,63,42,0,5223,0,690,0,0,2,3,0,2,1.5,3139.6986865,0,0,34261.0,1,3,9,0,3,2,0,1,1,0,0,0,0,0,0,2,22840.6666667,7,4,7,7_1,18781.0,0,18781.0,0,1,12,70.0,35.0,3.3,0,1,1906.9313663341948,1906.9313663341948,0.0 6724,6881,6880,17,17,58,111,63,71,0,5229,0,0,0,0,1,2,0,2,1.5,3185.65939473,0,0,33729.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,22486.0,7,4,7,7_0,10000.0,0,0.0,10000,6,14,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 6725,6884,6883,4,12,53,112,77,50,0,5234,0,100,0,0,1,4,0,2,1.5,4028.22619043,0,0,34170.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,0,2,22780.0,7,4,7,7_0,11500.0,0,11500.0,0,5,13,0.0,0.0,0.0,0,1,1113.8058593440826,1113.8058593440826,0.0 -6726,6912,6911,2,6,33,300,47,42,0,5265,0,500,0,162,2,3,2,4,2.1,2083.1602417,1040,0,50584.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,24087.619047599997,7,4,7,7_1,21000.0,0,21000.0,0,5,5,245.4,33.25,3.31,0,1,2132.237830414679,2132.237830414679,0.0 +6726,6912,6911,2,6,33,300,47,42,0,5265,0,500,0,162,2,3,2,4,2.1,2083.1602417,1040,0,50584.0,1,3,0,0,4,2,0,1,1,0,0,0,0,1,0,2,24087.6190476,7,4,7,7_1,21000.0,0,21000.0,0,5,5,245.4,33.25,3.31,0,1,2132.237830414679,2132.237830414679,0.0 6727,6916,6915,4,8,74,211,77,60,0,5269,0,0,0,0,0,5,0,2,1.5,3136.51864997,4700,0,34803.0,5,1,3,3,3,2,0,0,0,1,0,0,0,0,0,2,23202.0,7,4,7,7_0,7716.0,0,7716.0,0,2,7,0.0,0.0,0.0,0,0,747.3153052781689,747.3153052781689,0.0 6728,6932,6931,11,11,61,221,75,60,0,5291,0,0,0,0,0,5,0,1,1.0,3394.61928057,0,0,22769.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,1,0,22769.0,7,4,7,7_0,3000.0,0,0.0,3000,11,11,0.0,0.0,0.0,0,0,290.55805026367375,0.0,290.55805026367375 6729,6942,6941,11,11,45,111,38,42,0,5304,0,350,0,0,2,8,3,5,3.0,2376.48684804,2638,0,65486.0,1,1,8,6,4,2,0,0,0,0,1,0,0,0,0,2,21828.6666667,7,4,7,7_0,15000.0,0,15000.0,0,5,9,35.2,4.4,0.0,0,1,1452.7902513183687,1452.7902513183687,0.0 @@ -6741,14 +6741,14 @@ 6739,7004,7003,2,2,38,111,21,43,0,5388,0,0,0,0,2,6,2,4,2.1,4717.14892769,0,0,47173.0,1,2,8,6,4,1,0,0,0,0,1,0,0,0,0,1,22463.3333333,7,4,7,7_0,20000.0,0,20000.0,0,3,3,0.0,10.0,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 6740,7016,7015,15,15,57,111,47,31,0,5407,0,0,0,992,2,6,2,4,2.5,2303.72332779,0,0,54560.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,21824.0,7,4,7,7_0,10000.0,0,10000.0,0,17,17,178.0,63.75,3.32,0,0,968.5268342122457,968.5268342122457,0.0 6741,7017,7016,1,3,51,112,46,30,0,5408,0,99999,0,0,3,4,1,3,2.0,3224.2942354,4160,0,44187.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,0,2,22093.5,7,4,7,7_1,6000.0,0,6000.0,0,6,8,0.0,28.6666666667,3.3,0,1,609.2108086899084,609.2108086899084,0.0 -6742,7022,7021,7,11,39,111,42,41,0,5415,0,350,40,0,2,5,2,5,2.6,1594.53017573,3224,0,56566.0,1,2,6,5,5,2,1,1,0,0,1,0,0,0,1,1,21756.153846200003,7,4,7,7_0,20000.0,0,4000.0,16000,7,11,74.8,25.0,5.56,0,1,1937.0536684244914,387.41073368489833,1549.6429347395933 +6742,7022,7021,7,11,39,111,42,41,0,5415,0,350,40,0,2,5,2,5,2.6,1594.53017573,3224,0,56566.0,1,2,6,5,5,2,1,1,0,0,1,0,0,0,1,1,21756.1538462,7,4,7,7_0,20000.0,0,4000.0,16000,7,11,74.8,25.0,5.56,0,1,1937.0536684244914,387.41073368489833,1549.6429347395933 6743,7026,7025,0,6,31,300,62,44,0,5420,0,500,0,0,2,2,0,2,1.5,5619.70296895,0,0,33303.0,1,3,0,1,3,2,0,1,0,1,0,0,0,0,0,2,22202.0,7,4,7,7_0,20000.0,0,20000.0,0,3,3,100.5,23.0,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 6744,7039,7038,0,0,62,112,21,43,1,5437,0,0,0,0,1,5,0,2,1.5,2519.83650374,0,24000,36666.0,1,1,4,0,3,1,0,0,1,0,0,0,0,0,0,1,24444.0,7,4,7,7_1,6889.0,0,6889.0,0,0,0,0.0,0.0,0.0,0,0,699.4755435107965,699.4755435107965,0.0 6745,7048,7047,6,21,61,111,78,71,0,5448,0,0,0,0,1,4,2,4,2.5,1445.49212075,2808,0,58660.0,5,1,7,5,4,2,0,0,0,0,1,0,0,0,1,1,23464.0,7,4,7,7_0,15311.0,0,15311.0,0,7,16,0.0,0.0,0.0,0,0,1482.9114358623697,1482.9114358623697,0.0 6746,7055,7054,0,0,74,111,77,50,0,5456,0,0,0,0,0,5,0,1,1.0,1695.38837192,0,0,22816.0,5,1,7,6,1,0,0,0,0,0,1,0,0,0,0,0,22816.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6747,7057,7056,19,20,71,111,74,44,0,5460,0,0,0,0,0,5,0,2,1.5,2442.30823462,2620,0,35472.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,23648.0,7,4,7,7_0,17500.0,0,17500.0,0,14,16,0.0,0.0,0.0,0,0,1694.92195987143,1694.92195987143,0.0 6748,7079,7078,1,2,61,400,77,44,2,549,0,0,0,0,0,4,0,2,1.5,2401.41676772,2080,15040,32872.0,5,3,0,0,3,2,0,0,1,0,0,0,0,0,0,2,21914.6666667,7,4,7,7_1,37933.0,0,37933.0,0,1,2,0.0,0.0,0.0,0,0,3851.5322676723827,3851.5322676723827,0.0 -6749,7150,7149,0,1,48,112,13,10,2,5579,0,150,0,0,2,7,3,5,2.4,998.9318002660001,0,27000,58679.0,1,1,7,0,4,1,0,1,1,0,0,0,0,0,0,1,24449.5833333,7,4,7,7_1,20000.0,0,20000.0,0,3,4,87.1,12.0,3.3,0,1,2030.702695633028,2030.702695633028,0.0 +6749,7150,7149,0,1,48,112,13,10,2,5579,0,150,0,0,2,7,3,5,2.4,998.931800266,0,27000,58679.0,1,1,7,0,4,1,0,1,1,0,0,0,0,0,0,1,24449.5833333,7,4,7,7_1,20000.0,0,20000.0,0,3,4,87.1,12.0,3.3,0,1,2030.702695633028,2030.702695633028,0.0 6750,7165,7164,2,9,31,300,43,33,0,5598,0,1010,120,0,2,3,2,4,2.1,2830.88155627,4472,0,49386.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,23517.1428571,7,4,7,7_1,30000.0,0,20000.0,10000,5,5,177.8,15.0,3.31,0,1,3046.054043449542,2030.702695633028,1015.351347816514 6751,7166,7165,2,10,35,111,43,20,0,5599,0,240,70,0,2,5,3,5,2.4,1655.93076314,1560,0,52475.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,21864.5833333,7,4,7,7_0,29000.0,0,25000.0,4000,2,3,142.0,21.2,3.3,0,1,2808.7278192155127,2421.3170855306143,387.41073368489833 6752,7191,7190,19,19,87,111,77,60,0,5635,0,0,0,0,0,5,0,1,1.0,2783.96977859,0,0,22196.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,22196.0,7,4,7,7_0,610.0,0,0.0,610,4,19,0.0,0.0,0.0,0,0,59.080136886946995,0.0,59.080136886946995 @@ -6757,7 +6757,7 @@ 6755,7202,7201,12,22,46,112,46,42,0,5647,0,270,0,0,1,2,0,1,1.0,7554.91347965,3125,0,22085.0,1,3,9,2,1,2,0,0,0,1,0,0,0,0,1,1,22085.0,7,4,7,7_0,7000.0,0,7000.0,0,4,19,0.0,0.0,0.0,0,0,677.9687839485721,677.9687839485721,0.0 6756,7208,7207,4,4,71,111,75,44,0,5654,0,0,0,0,0,6,0,2,1.5,2238.35371957,0,0,34216.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,1,1,22810.6666667,7,4,7,7_0,24000.0,0,18000.0,6000,4,4,0.0,0.0,0.0,0,0,2324.46440210939,1743.3483015820423,581.1161005273475 6757,7213,7212,8,9,59,111,46,50,0,5661,0,0,0,0,2,4,0,2,1.5,1249.92801461,0,0,33943.0,1,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,22628.6666667,7,4,7,7_0,10000.0,0,10000.0,0,9,9,0.0,0.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 -6758,7226,7225,2,7,78,112,74,44,0,5677,0,0,0,0,0,3,0,2,1.5,2471.3191516999996,1115,0,33860.0,5,1,9,2,3,1,0,0,0,1,0,0,0,0,0,1,22573.3333333,7,4,7,7_0,20000.0,0,20000.0,0,2,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 +6758,7226,7225,2,7,78,112,74,44,0,5677,0,0,0,0,0,3,0,2,1.5,2471.3191517,1115,0,33860.0,5,1,9,2,3,1,0,0,0,1,0,0,0,0,0,1,22573.3333333,7,4,7,7_0,20000.0,0,20000.0,0,2,6,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 6759,7235,7234,5,9,68,111,75,31,0,5689,0,0,0,0,0,2,0,1,1.0,2994.55655759,0,0,23147.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,0,1,23147.0,7,4,7,7_0,10000.0,0,10000.0,0,6,12,0.0,0.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 6760,7247,7246,8,8,45,111,22,31,0,5707,0,0,500,0,2,6,3,5,2.4,2730.54502353,0,0,52510.0,1,2,7,5,4,2,1,1,0,0,1,0,0,0,2,0,21879.1666667,7,4,7,7_0,15000.0,0,0.0,15000,8,13,200.1,38.75,3.3,0,1,1452.7902513183687,0.0,1452.7902513183687 6761,7254,7253,8,11,40,111,63,50,0,5714,0,200,0,0,1,3,0,1,1.0,3285.74393956,0,0,22583.0,1,2,4,3,1,1,0,1,0,1,0,0,0,0,0,1,22583.0,7,4,7,7_0,11231.0,0,11231.0,0,14,14,70.5,20.0,3.3,0,1,1087.7524875037732,1087.7524875037732,0.0 @@ -6768,10 +6768,10 @@ 6766,7285,7284,9,11,66,111,78,50,0,5762,0,0,0,0,0,6,0,2,1.5,1151.42593695,0,0,33962.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,22641.3333333,7,4,7,7_0,14000.0,0,14000.0,0,7,9,0.0,0.0,0.0,0,0,1355.9375678971442,1355.9375678971442,0.0 6767,7287,7286,13,15,57,300,74,41,0,5768,0,0,0,0,0,5,0,2,1.5,2759.03908458,0,0,36914.0,5,1,0,0,3,4,0,0,1,0,0,0,0,0,2,2,24609.3333333,7,4,7,7_1,10000.0,0,10000.0,0,4,15,0.0,0.0,0.0,0,0,1015.351347816514,1015.351347816514,0.0 6768,7309,7308,6,7,52,111,42,20,0,5796,0,199998,0,0,3,6,3,5,2.8,2606.36280623,1989,0,61413.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,21933.2142857,7,4,7,7_0,20000.0,0,20000.0,0,5,5,67.0,18.0,1.1,0,1,1937.0536684244914,1937.0536684244914,0.0 -6769,7310,7309,0,1,44,112,34,31,2,5797,0,50,0,0,1,7,3,4,2.3,1531.46552389,0,21700,52866.0,1,2,8,1,2,1,1,1,0,1,0,0,0,0,0,1,22985.217391299997,7,4,7,7_0,7500.0,0,7500.0,0,2,3,15.0,20.0,3.31,0,1,726.3951256591844,726.3951256591844,0.0 +6769,7310,7309,0,1,44,112,34,31,2,5797,0,50,0,0,1,7,3,4,2.3,1531.46552389,0,21700,52866.0,1,2,8,1,2,1,1,1,0,1,0,0,0,0,0,1,22985.2173913,7,4,7,7_0,7500.0,0,7500.0,0,2,3,15.0,20.0,3.31,0,1,726.3951256591844,726.3951256591844,0.0 6770,7311,7310,3,3,50,111,47,42,0,5799,0,350,0,410,2,4,0,2,1.5,1940.59698515,0,0,34946.0,1,3,7,5,3,1,0,1,0,0,1,0,0,0,0,1,23297.3333333,7,4,7,7_0,13100.0,0,13100.0,0,2,2,0.0,0.0,0.0,0,1,1268.770152818042,1268.770152818042,0.0 6771,7315,7314,0,0,26,111,37,31,0,5803,0,0,0,430,1,2,0,1,1.0,3415.26102371,0,0,24825.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,24825.0,7,4,7,7_0,0.0,0,0.0,0,0,0,49.5,80.0,5.55,0,0,0.0,0.0,0.0 -6772,7342,7341,1,1,41,111,34,10,1,5842,0,1630,0,0,2,4,2,4,2.1,2499.34360683,4768,13478,49465.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,23554.761904799998,7,4,7,7_0,27000.0,0,27000.0,0,3,4,349.2,67.5,3.31,0,1,2615.0224523730635,2615.0224523730635,0.0 +6772,7342,7341,1,1,41,111,34,10,1,5842,0,1630,0,0,2,4,2,4,2.1,2499.34360683,4768,13478,49465.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,23554.7619048,7,4,7,7_0,27000.0,0,27000.0,0,3,4,349.2,67.5,3.31,0,1,2615.0224523730635,2615.0224523730635,0.0 6773,7351,7350,8,8,66,112,72,60,0,5854,0,0,0,0,0,5,0,2,1.5,1953.50502161,1565,0,36503.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,24335.3333333,7,4,7,7_1,30000.0,0,30000.0,0,9,9,0.0,0.0,0.0,0,0,3046.054043449542,3046.054043449542,0.0 6774,7352,7351,6,6,65,111,74,20,0,5855,0,0,0,0,0,1,0,1,1.0,2736.97499999,0,0,23121.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,23121.0,7,4,7,7_0,10000.0,0,0.0,10000,11,11,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 6775,7357,7356,2,2,40,111,21,10,0,5862,0,0,0,0,2,3,1,3,1.8,2140.72617228,0,0,43480.0,1,3,4,4,4,1,0,0,0,0,1,0,0,0,0,1,24155.5555556,7,4,7,7_0,10000.0,0,10000.0,0,4,7,0.0,0.0,0.0,0,1,968.5268342122457,968.5268342122457,0.0 @@ -6790,24 +6790,24 @@ 6788,7433,7432,8,8,61,112,75,60,0,5971,0,0,0,0,0,6,0,2,1.5,2491.84161224,3796,0,35845.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,23896.6666667,7,4,7,7_1,17000.0,0,10000.0,7000,10,11,0.0,0.0,0.0,0,0,1726.0972912880738,1015.351347816514,710.7459434715598 6789,7439,7438,12,12,62,111,72,50,0,5977,0,0,0,885,0,3,0,2,1.5,4328.11061363,0,0,34549.0,4,3,10,8,3,2,0,0,0,0,0,0,1,0,2,0,23032.6666667,7,4,7,7_0,10000.0,0,0.0,10000,8,14,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 6790,7446,7445,3,10,35,120,38,31,0,5985,0,600,0,0,1,6,4,6,2.7,2001.12281325,5279,0,59034.0,1,2,0,0,4,2,0,0,1,0,0,0,0,0,0,2,21864.4444444,7,4,7,7_1,35000.0,0,35000.0,0,2,15,0.0,0.0,0.0,0,1,3553.729717357799,3553.729717357799,0.0 -6791,7495,7494,3,17,37,400,46,20,0,6051,0,580,0,0,2,7,1,3,1.8,2652.7556749,2340,0,41744.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,23191.111111099995,7,4,7,7_1,20000.0,0,20000.0,0,11,14,246.5,48.3333333333,3.31,0,1,2030.702695633028,2030.702695633028,0.0 +6791,7495,7494,3,17,37,400,46,20,0,6051,0,580,0,0,2,7,1,3,1.8,2652.7556749,2340,0,41744.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,23191.1111111,7,4,7,7_1,20000.0,0,20000.0,0,11,14,246.5,48.3333333333,3.31,0,1,2030.702695633028,2030.702695633028,0.0 6792,7506,7505,19,25,65,111,78,71,0,6065,0,0,0,675,0,5,0,2,1.5,4127.10987273,1040,0,34715.0,5,3,9,7,3,2,0,0,0,0,0,1,0,0,0,2,23143.3333333,7,4,7,7_0,17500.0,0,17500.0,0,14,16,0.0,0.0,0.0,0,0,1694.92195987143,1694.92195987143,0.0 6793,7510,7509,2,2,76,221,74,50,0,6071,0,0,0,0,0,4,0,2,1.5,1629.26521975,0,0,34710.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,2,0,23140.0,7,4,7,7_0,9544.0,0,0.0,9544,7,7,0.0,0.0,0.0,0,0,924.3620105721674,0.0,924.3620105721674 6794,7519,7518,5,11,38,112,21,70,0,6080,0,60,0,0,2,2,3,5,2.4,1579.08702398,2860,0,56711.0,1,2,9,1,4,2,1,1,0,1,0,0,0,0,0,2,23629.5833333,7,4,7,7_0,9000.0,0,9000.0,0,6,13,226.5,38.0,3.3,0,1,871.6741507910211,871.6741507910211,0.0 -6795,7524,7523,2,6,42,221,46,50,0,6089,0,350,0,0,2,5,2,4,2.1,4532.23910332,0,0,47799.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,22761.428571400003,7,4,7,7_0,10000.0,0,10000.0,0,3,6,189.0,43.3333333333,3.3,0,1,968.5268342122457,968.5268342122457,0.0 +6795,7524,7523,2,6,42,221,46,50,0,6089,0,350,0,0,2,5,2,4,2.1,4532.23910332,0,0,47799.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,22761.4285714,7,4,7,7_0,10000.0,0,10000.0,0,3,6,189.0,43.3333333333,3.3,0,1,968.5268342122457,968.5268342122457,0.0 6796,7541,7540,0,0,87,111,74,30,0,6112,0,0,0,0,0,3,0,1,1.0,4209.76021996,0,0,24041.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,24041.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6797,7550,7549,4,4,64,111,75,33,0,6126,0,0,0,0,0,3,0,1,1.0,4303.42132336,1040,0,22199.0,5,1,6,5,1,1,0,0,0,0,1,0,0,0,0,1,22199.0,7,4,7,7_0,25000.0,0,25000.0,0,4,4,0.0,0.0,0.0,0,0,2421.3170855306143,2421.3170855306143,0.0 6798,7552,7551,15,15,80,221,78,50,0,6128,0,0,0,0,0,4,0,1,1.0,1696.93733963,1849,0,23581.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,23581.0,7,4,7,7_0,2000.0,0,2000.0,0,8,10,0.0,0.0,0.0,0,0,193.70536684244917,193.70536684244917,0.0 -6799,7556,7555,3,10,43,112,65,50,0,6132,0,370,0,0,2,4,1,3,1.8,1600.87062205,0,0,41198.0,1,2,10,0,4,1,0,1,1,0,0,0,0,0,0,1,22887.777777799998,7,4,7,7_1,25000.0,0,25000.0,0,6,8,302.2,30.0,3.31,0,1,2538.378369541285,2538.378369541285,0.0 +6799,7556,7555,3,10,43,112,65,50,0,6132,0,370,0,0,2,4,1,3,1.8,1600.87062205,0,0,41198.0,1,2,10,0,4,1,0,1,1,0,0,0,0,0,0,1,22887.7777778,7,4,7,7_1,25000.0,0,25000.0,0,6,8,302.2,30.0,3.31,0,1,2538.378369541285,2538.378369541285,0.0 6800,7571,7570,2,2,89,111,75,50,0,6153,0,0,0,0,0,3,0,1,1.0,2378.28564033,0,0,22800.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,22800.0,7,4,7,7_0,3543.0,0,0.0,3543,1,1,0.0,0.0,0.0,0,0,343.14905736139866,0.0,343.14905736139866 6801,7575,7574,4,6,39,111,54,42,0,616,0,425,0,608,2,5,2,4,2.1,2883.85019724,3814,0,47460.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,0,2,22600.0,7,4,7,7_0,20000.0,0,20000.0,0,6,6,33.0,57.5,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 6802,7577,7576,1,8,52,112,63,50,2,6161,0,700,0,0,4,7,2,4,2.5,1220.28491588,14495,6000,61260.0,1,2,9,0,4,4,0,1,1,0,0,0,0,0,1,3,24504.0,7,4,7,7_1,24263.0,0,15164.0,9099,4,0,128.5,70.0,3.3,0,1,2463.546975207208,1539.6787838289617,923.8681913782461 6803,7587,7586,12,16,41,111,21,71,0,6179,0,0,50,461,2,5,2,4,2.3,3642.00673497,5039,0,50471.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,1,1,21943.9130435,7,4,7,7_0,30000.0,0,20000.0,10000,7,7,155.0,20.0,3.3,0,1,2905.5805026367375,1937.0536684244914,968.5268342122457 6804,7593,7592,3,6,44,111,48,50,0,6186,0,1100,0,0,1,3,2,3,2.0,2130.71076587,6974,0,48624.0,1,3,8,7,2,2,0,1,0,0,0,1,0,0,0,2,24312.0,7,4,7,7_0,20000.0,0,20000.0,0,4,6,223.0,33.3333333333,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 6805,7606,7605,5,10,30,111,43,33,0,6199,0,0,90,0,1,3,0,1,1.0,3948.93858322,0,0,23402.0,1,2,8,7,1,1,0,1,0,0,0,1,0,0,1,0,23402.0,7,4,7,7_0,17067.0,0,0.0,17067,1,8,0.0,25.0,3.3,0,1,1652.9847479500397,0.0,1652.9847479500397 -6806,7615,7614,2,2,44,112,34,31,0,621,0,550,0,0,2,8,3,5,2.6,1807.69952838,1612,0,57554.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,22136.153846200003,7,4,7,7_1,30000.0,0,30000.0,0,8,0,35.0,30.8,2.24,0,1,3046.054043449542,3046.054043449542,0.0 +6806,7615,7614,2,2,44,112,34,31,0,621,0,550,0,0,2,8,3,5,2.6,1807.69952838,1612,0,57554.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,22136.1538462,7,4,7,7_1,30000.0,0,30000.0,0,8,0,35.0,30.8,2.24,0,1,3046.054043449542,3046.054043449542,0.0 6807,7618,7617,5,12,43,112,46,50,0,6212,0,240,0,0,3,5,2,4,2.3,1903.2962405,2080,0,52250.0,1,2,6,0,4,3,0,1,1,0,0,0,0,0,0,3,22717.3913043,7,4,7,7_1,51000.0,0,51000.0,0,6,6,909.7,38.5,3.3,0,1,5178.291873864221,5178.291873864221,0.0 -6808,7627,7626,7,11,44,112,47,31,0,6222,0,390,0,0,2,5,3,5,2.4,2793.6042001999995,0,0,52972.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,22071.6666667,7,4,7,7_1,42000.0,0,42000.0,0,4,13,334.0,18.0,0.0,0,0,4264.475660829358,4264.475660829358,0.0 +6808,7627,7626,7,11,44,112,47,31,0,6222,0,390,0,0,2,5,3,5,2.4,2793.6042002,0,0,52972.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,22071.6666667,7,4,7,7_1,42000.0,0,42000.0,0,4,13,334.0,18.0,0.0,0,0,4264.475660829358,4264.475660829358,0.0 6809,7631,7630,3,8,47,111,47,50,0,623,0,99999,0,0,1,4,1,2,1.5,2625.72949975,3017,0,35374.0,1,4,9,7,2,1,0,1,0,0,0,1,0,0,0,1,23582.6666667,7,4,7,7_0,15000.0,0,15000.0,0,2,2,71.0,52.5,3.31,0,1,1452.7902513183687,1452.7902513183687,0.0 6810,7636,7635,2,17,62,120,71,71,0,624,0,0,0,0,0,4,0,2,1.5,2602.40650552,0,0,35360.0,5,2,0,1,3,3,0,0,0,1,0,0,0,0,0,3,23573.3333333,7,4,7,7_0,7000.0,0,7000.0,0,4,18,0.0,0.0,0.0,0,0,677.9687839485721,677.9687839485721,0.0 6811,7639,7638,0,0,27,111,84,10,0,6243,0,0,0,290,0,2,0,1,1.0,7890.0239178,0,0,23490.0,3,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,23490.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -6823,7 +6823,7 @@ 6821,7763,7762,3,9,67,112,75,60,0,6422,0,0,0,0,0,12,0,2,1.5,2283.96867295,1811,0,33817.0,5,1,7,4,3,1,0,0,0,0,1,0,0,0,1,0,22544.6666667,7,4,7,7_0,10000.0,0,0.0,10000,9,10,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 6822,7769,7768,3,11,24,112,47,31,0,6431,0,500,0,630,2,2,0,2,1.5,3040.96041668,2236,0,33460.0,1,3,8,0,3,2,0,1,1,0,0,0,0,0,0,2,22306.6666667,7,4,7,7_1,18781.0,0,18781.0,0,1,12,70.0,35.0,3.3,0,1,1906.9313663341948,1906.9313663341948,0.0 6823,7805,7804,5,10,45,222,13,44,0,6485,0,0,0,0,2,6,0,2,1.5,2297.51738589,0,0,33352.0,1,1,1,0,3,1,0,0,1,0,0,0,0,0,0,1,22234.6666667,7,4,7,7_1,10000.0,0,10000.0,0,5,9,0.0,0.0,0.0,0,1,1015.351347816514,1015.351347816514,0.0 -6824,7813,7812,3,3,48,111,48,60,0,6497,0,70,0,0,4,5,5,7,3.4,1116.27354729,0,0,79655.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,23427.941176499997,7,4,7,7_0,2600.0,0,2600.0,0,1,1,35.0,36.2,3.3,0,1,251.8169768951839,251.8169768951839,0.0 +6824,7813,7812,3,3,48,111,48,60,0,6497,0,70,0,0,4,5,5,7,3.4,1116.27354729,0,0,79655.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,23427.9411765,7,4,7,7_0,2600.0,0,2600.0,0,1,1,35.0,36.2,3.3,0,1,251.8169768951839,251.8169768951839,0.0 6825,7821,7820,4,4,59,111,77,50,0,6504,0,0,0,0,1,4,0,2,1.5,2235.75758625,0,0,35263.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,23508.6666667,7,4,7,7_0,50000.0,0,50000.0,0,3,3,0.0,0.0,0.0,1,0,4842.634171061229,4842.634171061229,0.0 6826,7824,7823,2,19,51,111,48,43,0,6511,0,500,542,0,2,6,1,3,2.0,2506.00051534,7800,0,44684.0,4,1,7,5,4,3,0,1,0,0,1,0,0,0,2,1,22342.0,7,4,7,7_0,14900.0,0,14000.0,900,18,18,96.8,68.3333333333,3.3,0,1,1443.104982976246,1355.9375678971442,87.16741507910213 6827,7828,7827,0,3,38,120,54,31,2,6517,0,180,0,0,1,4,0,1,1.0,2668.42372623,780,6800,23294.0,1,2,0,0,1,1,0,1,1,0,0,0,0,0,0,1,23294.0,7,4,7,7_1,22000.0,0,22000.0,0,3,4,168.0,60.0,3.3,0,1,2233.772965196331,2233.772965196331,0.0 @@ -6834,29 +6834,29 @@ 6832,7904,7903,2,4,48,111,52,41,0,6622,0,520,0,0,2,4,1,3,2.0,1100.21233357,2080,0,44982.0,1,1,6,5,4,3,0,1,0,0,1,0,0,0,0,3,22491.0,7,4,7,7_0,15000.0,0,15000.0,0,4,4,200.4,58.0,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 6833,7905,7904,16,18,43,300,62,50,0,6623,0,0,0,0,3,4,1,3,2.0,1168.82405239,3641,0,47415.0,1,3,0,0,4,2,0,0,1,0,0,0,0,0,2,0,23707.5,7,4,7,7_1,6000.0,0,0.0,6000,1,11,46.2,20.0,0.0,0,1,609.2108086899084,0.0,609.2108086899084 6834,7910,7909,2,2,61,221,75,42,0,6629,0,0,0,0,0,9,0,2,1.5,3938.85587003,2236,0,37056.0,5,4,1,2,3,2,0,0,0,1,0,0,0,0,0,2,24704.0,7,4,7,7_0,11000.0,0,11000.0,0,3,0,0.0,0.0,0.0,0,0,1065.3795176334704,1065.3795176334704,0.0 -6835,7928,7927,3,13,28,112,64,71,0,6648,0,25,0,0,2,6,1,3,1.8,2262.26355536,1560,0,44645.0,1,2,5,0,4,1,0,1,1,0,0,0,0,0,0,1,24802.777777799998,7,4,7,7_1,25000.0,0,25000.0,0,4,5,158.0,88.0,3.31,0,1,2538.378369541285,2538.378369541285,0.0 +6835,7928,7927,3,13,28,112,64,71,0,6648,0,25,0,0,2,6,1,3,1.8,2262.26355536,1560,0,44645.0,1,2,5,0,4,1,0,1,1,0,0,0,0,0,0,1,24802.7777778,7,4,7,7_1,25000.0,0,25000.0,0,4,5,158.0,88.0,3.31,0,1,2538.378369541285,2538.378369541285,0.0 6836,7939,7938,1,1,51,111,45,42,2,6660,0,200,0,0,2,6,2,4,2.5,1767.34696253,0,7200,56151.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,22460.4,7,4,7,7_0,10000.0,0,10000.0,0,3,3,0.0,21.25,3.3,1,0,968.5268342122457,968.5268342122457,0.0 -6837,7946,7945,6,6,36,112,54,31,0,6669,0,0,210,0,1,2,1,2,1.3,1883.71038578,1040,0,28230.0,1,2,6,0,2,1,0,1,1,0,0,0,0,0,1,0,21715.384615400002,7,4,7,7_1,6000.0,0,0.0,6000,4,8,0.0,0.0,0.0,0,0,609.2108086899084,0.0,609.2108086899084 +6837,7946,7945,6,6,36,112,54,31,0,6669,0,0,210,0,1,2,1,2,1.3,1883.71038578,1040,0,28230.0,1,2,6,0,2,1,0,1,1,0,0,0,0,0,1,0,21715.3846154,7,4,7,7_1,6000.0,0,0.0,6000,4,8,0.0,0.0,0.0,0,0,609.2108086899084,0.0,609.2108086899084 6838,7952,7951,4,5,26,111,52,42,0,6677,0,150,0,0,1,3,0,1,1.0,5705.65955446,2865,0,23332.0,1,2,6,5,1,1,1,1,0,0,1,0,0,0,0,1,23332.0,7,4,7,7_0,17000.0,0,17000.0,0,5,6,0.0,14.0,3.3,0,1,1646.495618160818,1646.495618160818,0.0 6839,7956,7955,7,12,31,111,43,33,0,6683,0,0,220,444,1,2,0,1,1.0,2825.15653556,0,0,23475.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,1,0,23475.0,7,4,7,7_0,10000.0,0,0.0,10000,5,8,0.0,10.0,3.3,0,1,968.5268342122457,0.0,968.5268342122457 6840,7968,7967,5,5,73,111,75,50,0,6701,0,0,0,0,0,5,0,2,1.5,1452.74586927,0,0,33990.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,0,2,22660.0,7,4,7,7_0,9507.0,0,9507.0,0,5,5,0.0,0.0,0.0,0,0,920.778461285582,920.778461285582,0.0 6841,7975,7974,6,15,62,222,75,70,0,6710,0,0,0,0,1,4,0,2,1.5,1325.80490322,4732,0,33908.0,5,1,1,0,3,2,1,0,1,0,0,0,0,0,0,2,22605.3333333,7,4,7,7_1,2500.0,0,2500.0,0,4,12,0.0,6.0,3.3,0,1,253.8378369541285,253.8378369541285,0.0 6842,7989,7988,10,14,45,111,67,71,0,6729,0,0,77,1012,2,5,1,3,1.8,2129.6981967,1567,0,43640.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,1,0,24244.4444444,7,4,7,7_0,5915.0,0,0.0,5915,15,15,0.0,0.0,0.0,0,0,572.8836224365433,0.0,572.8836224365433 -6843,7996,7995,11,15,50,111,47,31,0,674,0,250,0,0,1,5,2,3,1.8,2320.40322782,1559,0,41711.0,1,1,8,6,2,1,0,1,0,0,1,0,0,0,0,1,23172.777777799998,7,4,7,7_0,25666.0,0,25666.0,0,5,10,20.1,29.3333333333,2.2,0,1,2485.82097268915,2485.82097268915,0.0 +6843,7996,7995,11,15,50,111,47,31,0,674,0,250,0,0,1,5,2,3,1.8,2320.40322782,1559,0,41711.0,1,1,8,6,2,1,0,1,0,0,1,0,0,0,0,1,23172.7777778,7,4,7,7_0,25666.0,0,25666.0,0,5,10,20.1,29.3333333333,2.2,0,1,2485.82097268915,2485.82097268915,0.0 6844,7997,7996,9,9,50,111,63,71,0,6741,0,0,0,0,2,5,1,3,2.0,5136.42690361,0,0,43709.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,21854.5,7,4,7,7_0,10000.0,0,10000.0,0,3,5,57.6,25.0,0.0,0,0,968.5268342122457,968.5268342122457,0.0 6845,8007,8006,4,11,51,111,45,50,0,676,0,100,0,0,1,5,1,2,1.5,2932.67952439,4420,0,32795.0,1,2,7,5,2,1,0,1,0,0,1,0,0,0,0,1,21863.3333333,7,4,7,7_0,23001.0,0,23001.0,0,1,13,85.2,40.0,3.3,0,1,2227.7085713715865,2227.7085713715865,0.0 6846,8008,8007,2,9,48,112,48,50,0,6761,0,400,520,0,3,4,2,3,2.0,1219.33269939,2080,0,45845.0,1,1,7,1,2,3,0,1,0,1,0,0,0,0,2,1,22922.5,7,4,7,7_0,21144.0,0,10144.0,11000,5,5,102.5,20.0,0.0,0,1,2047.8531382583724,982.4736206249022,1065.3795176334704 -6847,8027,8026,3,3,53,111,46,31,0,679,0,20,0,305,2,5,2,4,2.3,2497.25521287,3901,0,50532.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,1,1,21970.434782599998,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.333333333299999,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 +6847,8027,8026,3,3,53,111,46,31,0,679,0,20,0,305,2,5,2,4,2.3,2497.25521287,3901,0,50532.0,1,3,7,5,4,2,0,1,0,0,1,0,0,0,1,1,21970.4347826,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.3333333333,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 6848,8050,8049,15,15,64,112,77,60,0,6817,0,0,0,0,0,7,0,2,1.5,3177.79238252,2496,0,33623.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,1,1,22415.3333333,7,4,7,7_1,17000.0,0,15000.0,2000,10,14,0.0,0.0,0.0,0,0,1726.0972912880738,1523.027021724771,203.0702695633028 6849,8051,8050,4,4,56,111,33,41,0,6818,0,0,0,770,1,3,0,1,1.0,2678.21918156,0,0,21800.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,21800.0,7,4,7,7_0,13716.0,0,13716.0,0,1,1,0.0,10.0,3.3,0,1,1328.4314058055163,1328.4314058055163,0.0 6850,8059,8058,8,11,85,112,77,60,0,683,0,0,0,0,0,4,0,2,1.5,2042.69553655,1040,0,33650.0,5,1,4,0,3,1,0,0,1,0,0,0,0,0,1,0,22433.3333333,7,4,7,7_1,7000.0,0,0.0,7000,12,13,0.0,0.0,0.0,0,0,710.7459434715598,0.0,710.7459434715598 6851,8063,8062,5,19,26,111,62,60,0,6835,0,300,0,320,2,3,0,2,1.5,2630.6004323,0,0,32747.0,1,3,7,5,3,2,1,0,0,0,1,0,0,0,1,1,21831.3333333,7,4,7,7_0,23000.0,0,23000.0,0,2,21,0.0,4.0,3.31,0,1,2227.611718688165,2227.611718688165,0.0 6852,8068,8067,2,2,50,112,63,71,0,684,0,450,0,0,3,5,1,3,2.0,1046.79563527,0,0,46574.0,1,1,9,1,4,3,0,1,0,1,0,0,0,0,0,3,23287.0,7,4,7,7_0,15942.0,0,15942.0,0,5,7,139.5,50.0,3.3,0,1,1544.025479101162,1544.025479101162,0.0 6853,8095,8094,9,9,65,112,74,60,0,6876,0,0,0,0,0,8,0,2,1.5,2551.96638523,2600,0,34703.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,0,2,23135.3333333,7,4,7,7_1,13000.0,0,13000.0,0,5,7,0.0,0.0,0.0,0,0,1319.956752161468,1319.956752161468,0.0 -6854,8111,8110,9,11,29,212,46,41,0,6899,0,1000,0,0,2,10,1,3,1.8,2088.73695778,3277,0,44023.0,1,2,3,0,4,3,0,0,1,0,0,0,0,0,0,3,24457.222222200002,7,4,7,7_1,21672.0,0,21672.0,0,2,5,150.1,20.0,0.0,0,1,2200.469440987949,2200.469440987949,0.0 -6855,8121,8120,4,9,59,111,34,12,0,6911,0,100,0,0,1,5,1,3,2.0,2035.34593369,0,0,43486.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,21743.0,7,4,7,7_0,20000.0,0,20000.0,0,9,9,0.0,13.333333333299999,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 +6854,8111,8110,9,11,29,212,46,41,0,6899,0,1000,0,0,2,10,1,3,1.8,2088.73695778,3277,0,44023.0,1,2,3,0,4,3,0,0,1,0,0,0,0,0,0,3,24457.2222222,7,4,7,7_1,21672.0,0,21672.0,0,2,5,150.1,20.0,0.0,0,1,2200.469440987949,2200.469440987949,0.0 +6855,8121,8120,4,9,59,111,34,12,0,6911,0,100,0,0,1,5,1,3,2.0,2035.34593369,0,0,43486.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,21743.0,7,4,7,7_0,20000.0,0,20000.0,0,9,9,0.0,13.3333333333,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 6856,8129,8128,2,2,56,221,65,71,0,6924,0,0,250,0,1,4,0,2,1.5,2978.66198052,1040,0,36075.0,1,1,1,3,3,2,0,1,0,1,0,0,0,0,2,0,24050.0,7,4,7,7_0,4200.0,0,0.0,4200,1,1,0.0,0.0,0.0,0,0,406.7812703691432,0.0,406.7812703691432 -6857,8140,8139,1,1,72,111,74,41,1,694,0,0,0,0,0,4,0,3,1.8,2965.18504867,0,11000,44170.0,5,1,9,7,5,2,0,0,0,0,0,1,0,0,0,2,24538.888888900005,7,4,7,7_0,9000.0,0,9000.0,0,2,2,0.0,0.0,0.0,0,0,871.6741507910211,871.6741507910211,0.0 +6857,8140,8139,1,1,72,111,74,41,1,694,0,0,0,0,0,4,0,3,1.8,2965.18504867,0,11000,44170.0,5,1,9,7,5,2,0,0,0,0,0,1,0,0,0,2,24538.8888889,7,4,7,7_0,9000.0,0,9000.0,0,2,2,0.0,0.0,0.0,0,0,871.6741507910211,871.6741507910211,0.0 6858,8141,8140,11,13,33,112,38,12,0,6941,0,0,199998,0,2,5,2,4,2.1,2575.74840951,2516,0,51588.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,2,0,24565.7142857,7,4,7,7_0,16000.0,0,0.0,16000,9,9,93.3,37.5,3.3,0,1,1549.6429347395933,0.0,1549.6429347395933 6859,8177,8176,2,9,55,221,47,50,0,6986,0,0,0,0,2,4,1,3,2.0,2029.96238308,0,0,48226.0,1,4,1,2,4,2,0,0,0,1,0,0,0,0,1,1,24113.0,7,4,7,7_0,42000.0,0,31000.0,11000,4,5,324.8,60.0,3.3,0,1,4067.8127036914325,3002.433186057962,1065.3795176334704 6860,8181,8180,8,8,77,111,77,60,0,6992,0,0,0,0,0,4,0,1,1.0,4418.18110502,1404,0,22633.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,22633.0,7,4,7,7_0,3200.0,0,0.0,3200,5,7,0.0,0.0,0.0,0,0,309.9285869479187,0.0,309.9285869479187 @@ -6877,15 +6877,15 @@ 6875,8399,8398,5,11,24,112,48,50,0,7307,0,400,300,0,2,4,0,2,1.5,2780.59143443,2080,0,35220.0,1,2,6,0,3,2,0,1,1,0,0,0,0,0,1,1,23480.0,7,4,7,7_1,50000.0,0,25000.0,25000,6,10,181.2,75.0,3.3,0,1,5076.75673908257,2538.378369541285,2538.378369541285 6876,8416,8415,6,11,66,111,75,50,0,7329,0,0,0,800,0,5,0,1,1.0,2004.51292307,1873,0,21886.0,5,3,8,7,1,1,0,0,0,0,0,1,0,0,0,1,21886.0,7,4,7,7_0,2000.0,0,2000.0,0,7,12,0.0,0.0,0.0,0,0,193.70536684244917,193.70536684244917,0.0 6877,8436,8435,2,6,36,111,53,43,0,7364,0,220,0,0,1,4,0,1,1.0,3236.85801669,3380,0,24541.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,24541.0,7,4,7,7_0,2000.0,0,2000.0,0,1,6,0.0,30.0,1.1,0,0,193.70536684244917,193.70536684244917,0.0 -6878,8450,8449,4,4,57,111,55,42,0,7388,0,0,0,0,2,7,1,3,2.0,1396.0949890000002,0,0,48511.0,1,1,6,4,4,3,0,0,0,0,1,0,0,0,2,1,24255.5,7,4,7,7_0,30000.0,0,20000.0,10000,3,5,0.0,0.0,0.0,0,1,2905.5805026367375,1937.0536684244914,968.5268342122457 +6878,8450,8449,4,4,57,111,55,42,0,7388,0,0,0,0,2,7,1,3,2.0,1396.094989,0,0,48511.0,1,1,6,4,4,3,0,0,0,0,1,0,0,0,2,1,24255.5,7,4,7,7_0,30000.0,0,20000.0,10000,3,5,0.0,0.0,0.0,0,1,2905.5805026367375,1937.0536684244914,968.5268342122457 6879,8461,8460,9,9,83,211,77,70,0,7402,0,0,0,0,0,5,0,2,1.5,1487.90632019,0,0,37246.0,5,1,4,4,3,1,0,0,0,0,1,0,0,0,1,0,24830.6666667,7,4,7,7_0,10000.0,0,0.0,10000,8,8,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 6880,8467,8466,1,1,48,211,22,50,0,741,0,315,0,0,2,4,1,3,2.0,1843.89289191,3435,0,43618.0,1,1,3,3,4,2,0,1,0,1,0,0,0,0,0,2,21809.0,7,4,7,7_0,6859.0,0,6859.0,0,1,0,186.0,45.3333333333,3.3,0,1,664.3125555861793,664.3125555861793,0.0 6881,8470,8469,7,21,58,400,52,70,0,7413,0,50,80,0,1,5,0,2,1.5,1678.63704873,0,0,34259.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,1,1,22839.3333333,7,4,7,7_1,20000.0,0,3000.0,17000,2,19,0.0,0.0,0.0,0,1,2030.702695633028,304.6054043449542,1726.0972912880738 6882,8471,8470,8,12,56,111,65,50,0,7415,0,0,250,0,1,4,0,2,1.5,1116.63660275,3518,0,36270.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,24180.0,7,4,7,7_0,30000.0,0,20000.0,10000,3,12,0.0,0.0,0.0,0,1,2905.5805026367375,1937.0536684244914,968.5268342122457 6883,8475,8474,15,15,41,112,38,31,0,742,0,0,70,0,2,4,2,4,2.3,1601.17308176,3016,0,51662.0,1,2,7,1,4,1,0,1,0,1,0,0,0,0,1,0,22461.7391304,7,4,7,7_0,5000.0,5000,0.0,0,5,10,114.4,29.0,2.2,0,1,484.26341710612286,0.0,0.0 -6884,8492,8491,3,3,43,111,54,50,0,7440,0,99999,0,0,2,7,1,3,1.8,2242.36602407,3640,0,42682.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,23712.222222200002,7,4,7,7_0,12000.0,0,12000.0,0,4,4,110.0,46.6666666667,3.3,0,1,1162.232201054695,1162.232201054695,0.0 +6884,8492,8491,3,3,43,111,54,50,0,7440,0,99999,0,0,2,7,1,3,1.8,2242.36602407,3640,0,42682.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,23712.2222222,7,4,7,7_0,12000.0,0,12000.0,0,4,4,110.0,46.6666666667,3.3,0,1,1162.232201054695,1162.232201054695,0.0 6885,8503,8502,8,8,51,111,55,60,0,7460,0,200,0,654,1,3,0,1,1.0,3432.20358211,0,0,24497.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,24497.0,7,4,7,7_0,7000.0,0,7000.0,0,3,7,0.0,0.0,0.0,0,0,677.9687839485721,677.9687839485721,0.0 -6886,8509,8508,2,4,38,111,46,30,0,7469,0,300,0,0,1,4,1,2,1.3,6103.87093977,0,0,32015.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,0,1,24626.923076900002,7,4,7,7_0,15250.0,0,15250.0,0,8,9,0.0,45.0,3.3,0,1,1477.0034221736748,1477.0034221736748,0.0 +6886,8509,8508,2,4,38,111,46,30,0,7469,0,300,0,0,1,4,1,2,1.3,6103.87093977,0,0,32015.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,0,1,24626.9230769,7,4,7,7_0,15250.0,0,15250.0,0,8,9,0.0,45.0,3.3,0,1,1477.0034221736748,1477.0034221736748,0.0 6887,8518,8517,9,9,58,111,77,60,0,7486,0,0,0,0,0,3,0,1,1.0,3042.42983768,0,0,24192.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,24192.0,7,4,7,7_0,16337.0,0,16337.0,0,6,6,0.0,0.0,0.0,0,0,1582.282289052546,1582.282289052546,0.0 6888,8532,8531,4,5,56,111,68,50,0,7503,0,0,120,0,1,6,0,2,1.5,1406.53868397,0,0,34402.0,1,1,6,4,3,2,0,0,0,0,1,0,0,0,1,1,22934.6666667,7,4,7,7_0,12716.0,0,12716.0,0,1,4,0.0,10.0,1.1,0,0,1231.5787223842917,1231.5787223842917,0.0 6889,8541,8540,8,11,42,111,47,31,0,7516,0,0,8,0,2,5,3,5,2.4,2069.05445615,0,0,58477.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,24365.4166667,7,4,7,7_0,20000.0,0,4000.0,16000,7,11,74.8,25.0,5.56,0,1,1937.0536684244914,387.41073368489833,1549.6429347395933 @@ -6898,7 +6898,7 @@ 6896,8614,8613,4,7,45,112,67,71,0,7610,0,110,0,0,1,3,0,2,1.5,2711.96967133,2860,0,35610.0,1,1,5,0,3,2,0,1,1,0,0,0,0,0,1,1,23740.0,7,4,7,7_1,27352.0,0,22000.0,5352,7,7,0.0,0.0,0.0,0,1,2777.189006547729,2233.772965196331,543.4160413513982 6897,8629,8628,9,9,54,111,62,43,0,7629,0,320,0,213,2,3,0,2,1.5,1877.20005512,1560,0,33139.0,1,3,7,5,3,1,0,1,0,0,1,0,0,0,0,1,22092.6666667,7,4,7,7_0,15000.0,0,15000.0,0,3,12,45.5,20.0,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 6898,8630,8629,1,1,47,120,53,60,0,763,0,520,0,0,2,5,3,5,2.4,2286.7623339,4317,0,59482.0,1,2,0,2,4,2,0,1,0,1,0,0,0,0,0,2,24784.1666667,7,4,7,7_0,20000.0,0,20000.0,0,6,7,40.4,12.0,0.0,0,1,1937.0536684244914,1937.0536684244914,0.0 -6899,8661,8660,3,3,45,111,37,20,0,7661,0,450,250,0,2,4,2,4,2.5,2347.85725969,3637,0,55729.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,22291.6,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.333333333299999,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 +6899,8661,8660,3,3,45,111,37,20,0,7661,0,450,250,0,2,4,2,4,2.5,2347.85725969,3637,0,55729.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,22291.6,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.3333333333,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 6900,8671,8670,3,4,53,111,54,50,0,7671,0,0,0,1423,1,3,0,2,1.5,2638.838532,0,0,33473.0,1,3,8,7,3,1,0,0,0,0,0,1,0,0,0,1,22315.3333333,7,4,7,7_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,1,0,1937.0536684244914,1937.0536684244914,0.0 6901,8680,8679,4,4,43,112,34,20,0,7682,0,400,0,387,1,3,1,2,1.3,3172.95970577,3354,0,29106.0,1,3,9,0,2,1,1,1,1,0,0,0,0,0,0,1,22389.2307692,7,4,7,7_1,21445.0,0,21445.0,0,2,6,79.0,25.0,3.31,0,1,2177.420965392514,2177.420965392514,0.0 6902,8681,8680,10,10,58,111,56,50,0,7683,0,0,0,0,2,3,0,2,1.5,2467.36865401,0,0,33890.0,1,4,10,8,3,1,0,0,0,0,0,0,1,0,1,0,22593.3333333,7,4,7,7_0,1000.0,0,0.0,1000,11,11,0.0,10.0,0.0,0,0,96.85268342122458,0.0,96.85268342122458 @@ -6915,24 +6915,24 @@ 6913,8757,8756,1,1,55,111,62,50,0,7785,0,100019,99999,0,4,4,2,4,2.5,1877.29895249,1040,0,61183.0,1,3,10,8,4,4,0,1,0,0,0,0,1,0,1,3,24473.2,7,4,7,7_0,6387.0,0,6387.0,0,0,4,106.8,46.0,5.56,1,0,618.5980890113614,618.5980890113614,0.0 6914,8773,8772,1,1,77,111,78,31,1,7805,0,0,0,0,0,1,0,2,1.5,4241.30181845,3120,12900,33788.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,22525.3333333,7,4,7,7_0,2500.0,0,2500.0,0,3,3,0.0,0.0,0.0,0,0,242.13170855306143,242.13170855306143,0.0 6915,8784,8783,10,10,69,111,78,71,0,782,0,0,0,0,0,4,0,1,1.0,2978.72987234,0,0,23198.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,23198.0,7,4,7,7_0,8000.0,0,0.0,8000,9,10,0.0,0.0,0.0,0,0,774.8214673697967,0.0,774.8214673697967 -6916,8790,8789,11,14,40,111,43,31,0,7826,0,0,0,338,1,2,0,1,1.0,3046.4238093000004,0,0,24326.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,24326.0,7,4,7,7_0,10000.0,0,0.0,10000,5,16,0.0,0.0,0.0,0,1,968.5268342122457,0.0,968.5268342122457 +6916,8790,8789,11,14,40,111,43,31,0,7826,0,0,0,338,1,2,0,1,1.0,3046.4238093,0,0,24326.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,24326.0,7,4,7,7_0,10000.0,0,0.0,10000,5,16,0.0,0.0,0.0,0,1,968.5268342122457,0.0,968.5268342122457 6917,8791,8790,0,0,33,111,33,20,0,7827,0,0,0,791,1,2,0,1,1.0,4142.53436407,0,0,22674.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,22674.0,7,4,7,7_0,0.0,0,0.0,0,0,0,25.0,60.0,5.56,0,0,0.0,0.0,0.0 6918,8849,8848,4,9,29,111,46,31,0,7900,0,10,0,430,2,2,0,2,1.5,2748.64243085,2242,0,35068.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,0,1,23378.6666667,7,4,7,7_0,30000.0,0,30000.0,0,8,8,153.6,120.0,5.57,0,1,2905.5805026367375,2905.5805026367375,0.0 6919,8852,8851,0,0,53,112,21,50,0,7906,0,0,0,0,1,5,0,1,1.0,3090.66776347,0,0,24204.0,1,1,8,0,1,0,0,0,1,0,0,0,0,0,0,0,24204.0,7,4,7,7_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6920,8870,8869,0,0,31,111,34,12,0,793,0,0,0,636,1,2,0,1,1.0,3171.99399151,0,0,22005.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,22005.0,7,4,7,7_0,0.0,0,0.0,0,0,0,20.0,30.0,5.56,0,0,0.0,0.0,0.0 -6921,8890,8889,0,0,52,111,37,41,0,7956,0,0,0,0,3,3,2,3,2.0,1911.5636324999998,1040,0,49580.0,1,1,10,8,2,0,0,0,0,0,0,0,1,0,0,0,24790.0,7,4,7,7_0,0.0,0,0.0,0,0,0,48.0,40.0,5.56,0,0,0.0,0.0,0.0 +6921,8890,8889,0,0,52,111,37,41,0,7956,0,0,0,0,3,3,2,3,2.0,1911.5636325,1040,0,49580.0,1,1,10,8,2,0,0,0,0,0,0,0,1,0,0,0,24790.0,7,4,7,7_0,0.0,0,0.0,0,0,0,48.0,40.0,5.56,0,0,0.0,0.0,0.0 6922,8909,8908,0,0,55,111,68,71,0,7977,0,0,0,334,2,4,1,3,2.0,3733.28775143,0,0,49122.0,1,3,9,7,4,0,0,0,0,0,0,1,0,0,0,0,24561.0,7,4,7,7_0,10000.0,0,0.0,10000,0,0,0.0,40.0,3.3,0,1,968.5268342122457,0.0,968.5268342122457 6923,8916,8915,2,6,32,111,42,41,0,7987,0,220,40,515,2,3,0,2,1.5,3308.46237467,0,0,32613.0,1,3,9,7,3,2,1,1,0,0,0,1,0,1,1,1,21742.0,7,4,7,7_0,29176.0,0,25000.0,4176,3,8,0.0,0.0,0.0,0,1,2825.773891497648,2421.3170855306143,404.45680596703386 6924,8929,8928,6,14,62,111,75,70,0,8004,0,0,0,0,0,5,0,2,1.5,2644.58989549,5731,0,34482.0,5,1,7,5,3,3,0,0,0,0,1,0,0,0,0,3,22988.0,7,4,7,7_0,7000.0,0,7000.0,0,4,18,0.0,0.0,0.0,0,0,677.9687839485721,677.9687839485721,0.0 -6925,8934,8933,10,10,30,112,47,43,0,8010,0,350,40,0,2,2,1,3,1.8,5255.70958376,0,0,39229.0,1,4,9,3,4,2,0,1,0,1,0,0,0,0,1,1,21793.888888900005,7,4,7,7_0,24001.0,0,19001.0,5000,1,9,0.0,3.33333333333,0.0,1,1,2324.5612547928113,1840.2978376866884,484.26341710612286 +6925,8934,8933,10,10,30,112,47,43,0,8010,0,350,40,0,2,2,1,3,1.8,5255.70958376,0,0,39229.0,1,4,9,3,4,2,0,1,0,1,0,0,0,0,1,1,21793.8888889,7,4,7,7_0,24001.0,0,19001.0,5000,1,9,0.0,3.33333333333,0.0,1,1,2324.5612547928113,1840.2978376866884,484.26341710612286 6926,8940,8939,8,10,55,112,52,50,0,802,0,800,0,0,2,3,1,3,1.8,1139.58859485,2600,0,39880.0,1,2,10,0,4,2,0,0,1,0,0,0,0,0,1,1,22155.5555556,7,4,7,7_1,24445.0,0,16445.0,8000,1,6,0.0,0.0,0.0,0,1,2482.0263697374685,1669.7452914842572,812.2810782532111 6927,8943,8942,15,15,70,221,75,31,0,8023,0,0,0,0,0,4,0,1,1.0,3305.23520054,0,0,23515.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,23515.0,7,4,7,7_0,5000.0,0,5000.0,0,18,18,0.0,0.0,0.0,0,0,484.26341710612286,484.26341710612286,0.0 6928,8955,8954,3,7,35,112,46,60,0,804,0,400,0,0,2,5,3,5,2.4,2153.68411924,3025,0,58889.0,1,2,6,0,4,1,0,1,1,0,0,0,0,0,0,1,24537.0833333,7,4,7,7_1,35000.0,0,35000.0,0,3,4,184.3,38.0,3.31,1,1,3553.729717357799,3553.729717357799,0.0 -6929,8963,8962,8,9,71,111,77,50,0,8050,0,0,0,0,1,5,1,3,2.0,997.3347576289999,2637,0,46856.0,5,1,3,4,4,2,1,0,0,0,1,0,0,0,1,1,23428.0,7,4,7,7_0,9000.0,0,2000.0,7000,5,7,0.0,0.0,0.0,0,1,871.6741507910211,193.70536684244917,677.9687839485721 +6929,8963,8962,8,9,71,111,77,50,0,8050,0,0,0,0,1,5,1,3,2.0,997.334757629,2637,0,46856.0,5,1,3,4,4,2,1,0,0,0,1,0,0,0,1,1,23428.0,7,4,7,7_0,9000.0,0,2000.0,7000,5,7,0.0,0.0,0.0,0,1,871.6741507910211,193.70536684244917,677.9687839485721 6930,8980,8979,12,12,89,111,78,50,0,8075,0,0,0,0,0,3,0,2,1.5,2161.01809675,0,0,32894.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,21929.3333333,7,4,7,7_0,8141.0,0,8141.0,0,108,18,0.0,0.0,0.0,0,0,788.4776957321893,788.4776957321893,0.0 6931,8981,8980,8,8,47,112,37,31,0,8076,0,150,0,0,2,5,2,4,2.5,4284.84765509,0,0,57975.0,1,2,9,1,4,2,1,0,0,1,0,0,0,0,0,2,23190.0,7,4,7,7_0,20000.0,0,20000.0,0,2,8,211.0,24.0,3.33,0,1,1937.0536684244914,1937.0536684244914,0.0 6932,8986,8985,5,5,37,111,46,31,0,8081,0,150,0,380,1,1,0,1,1.0,3318.01642973,1560,0,24702.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,0,1,24702.0,7,4,7,7_0,2000.0,0,2000.0,0,1,6,0.0,30.0,1.1,0,0,193.70536684244917,193.70536684244917,0.0 -6933,8993,8992,1,1,52,120,42,41,1,8089,0,150,0,0,2,5,2,4,2.3,3001.10142924,2683,21400,53303.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,23175.217391299997,7,4,7,7_1,40000.0,0,25000.0,15000,4,4,68.4,44.0,3.3,0,1,4061.405391266056,2538.378369541285,1523.027021724771 +6933,8993,8992,1,1,52,120,42,41,1,8089,0,150,0,0,2,5,2,4,2.3,3001.10142924,2683,21400,53303.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,23175.2173913,7,4,7,7_1,40000.0,0,25000.0,15000,4,4,68.4,44.0,3.3,0,1,4061.405391266056,2538.378369541285,1523.027021724771 6934,9005,9004,1,1,52,111,47,50,2,8101,0,80,0,0,1,9,2,3,1.6,2065.43879264,1560,17000,38620.0,1,3,8,7,2,1,0,1,0,0,0,1,0,0,0,1,24137.5,7,4,7,7_0,12000.0,0,12000.0,0,3,3,0.0,26.6666666667,3.3,0,1,1162.232201054695,1162.232201054695,0.0 6935,9010,9009,1,1,27,111,55,31,1,8109,0,0,80,510,1,2,0,1,1.0,2758.57373882,1300,10800,23923.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,23923.0,7,4,7,7_0,12067.0,0,0.0,12067,1,4,0.0,20.0,3.3,1,1,1168.721330843917,0.0,1168.721330843917 6936,9038,9037,19,19,71,111,75,50,0,8149,0,0,0,0,0,4,0,1,1.0,2271.75947708,1820,0,22518.0,5,4,9,7,1,2,0,0,0,0,0,1,0,0,1,1,22518.0,7,4,7,7_0,5000.0,0,5000.0,0,18,18,0.0,0.0,0.0,0,0,484.26341710612286,484.26341710612286,0.0 @@ -6944,7 +6944,7 @@ 6942,9079,9078,11,11,35,112,38,31,0,8214,0,50,0,0,2,6,2,4,2.1,1960.09955076,0,0,51528.0,1,2,8,1,4,2,0,0,0,1,0,0,0,0,1,1,24537.1428571,7,4,7,7_0,30676.0,0,20000.0,10676,1,11,53.0,30.0,3.3,0,1,2971.052916629485,1937.0536684244914,1033.9992482049936 6943,9087,9086,1,20,60,112,56,70,0,8227,0,0,0,0,1,4,0,2,1.5,2227.58365706,1924,0,34603.0,5,2,7,0,3,2,0,0,1,0,0,0,0,0,0,2,23068.6666667,7,4,7,7_1,14000.0,0,14000.0,0,4,16,26.0,10.0,3.3,0,1,1421.4918869431197,1421.4918869431197,0.0 6944,9095,9094,2,2,62,112,75,41,0,8236,0,0,0,0,0,5,0,2,1.5,3487.16093018,2109,0,36990.0,5,1,9,3,3,2,0,0,0,1,0,0,0,0,0,2,24660.0,7,4,7,7_0,18000.0,0,18000.0,0,3,3,0.0,0.0,0.0,0,0,1743.3483015820423,1743.3483015820423,0.0 -6945,9104,9103,5,7,39,111,38,20,0,8249,0,80,0,0,2,8,4,6,2.7,1235.39235403,0,0,66203.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,24519.629629599996,7,4,7,7_0,20000.0,0,20000.0,0,6,6,319.6,34.0,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 +6945,9104,9103,5,7,39,111,38,20,0,8249,0,80,0,0,2,8,4,6,2.7,1235.39235403,0,0,66203.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,24519.6296296,7,4,7,7_0,20000.0,0,20000.0,0,6,6,319.6,34.0,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 6946,9111,9110,14,14,38,111,46,31,0,8255,0,0,0,0,2,4,2,4,2.1,1569.02577014,4914,0,51738.0,1,2,7,6,4,2,0,0,0,0,1,0,0,0,0,2,24637.1428571,7,4,7,7_0,26343.0,0,26343.0,0,3,17,157.0,20.5,3.31,0,1,2551.3902393653193,2551.3902393653193,0.0 6947,9130,9129,13,13,67,111,75,50,0,8282,0,0,0,0,0,4,0,1,1.0,2271.08676084,0,0,21907.0,6,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,21907.0,7,4,7,7_0,400.0,0,0.0,400,13,13,0.0,0.0,0.0,0,0,38.741073368489836,0.0,38.741073368489836 6948,9133,9132,1,1,58,221,78,50,0,8286,0,0,0,0,0,4,0,2,1.5,1488.56077474,2756,0,35458.0,5,1,1,3,3,2,0,0,0,1,0,0,0,0,0,2,23638.6666667,7,4,7,7_0,17672.0,0,17672.0,0,1,4,0.0,0.0,0.0,0,0,1711.5806214198808,1711.5806214198808,0.0 @@ -6964,7 +6964,7 @@ 6962,9277,9276,11,11,83,112,74,50,0,8485,0,0,0,0,0,4,0,2,1.5,1375.83682524,0,0,34978.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,1,0,23318.6666667,7,4,7,7_1,7000.0,0,0.0,7000,12,13,0.0,0.0,0.0,0,0,710.7459434715598,0.0,710.7459434715598 6963,9295,9294,11,11,63,111,74,42,0,8511,0,0,0,0,0,5,0,2,1.5,1878.20624565,1560,0,34945.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,2,0,23296.6666667,7,4,7,7_0,18000.0,0,0.0,18000,4,11,0.0,0.0,0.0,0,0,1743.3483015820423,0.0,1743.3483015820423 6964,9297,9296,5,5,50,111,67,50,0,8513,0,0,0,0,2,3,0,2,1.5,1903.72983538,0,0,35958.0,1,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,23972.0,7,4,7,7_0,16000.0,0,0.0,16000,2,0,0.0,10.0,1.1,0,0,1549.6429347395933,0.0,1549.6429347395933 -6965,9317,9316,13,16,58,112,46,44,0,8540,0,0,800,0,3,6,1,3,2.0,1371.82726165,2647,0,44548.0,1,1,7,0,4,2,0,1,1,0,0,0,0,0,2,0,22274.0,7,4,7,7_1,20000.0,0,0.0,20000,10,16,0.0,8.666666666669999,3.3,0,1,2030.702695633028,0.0,2030.702695633028 +6965,9317,9316,13,16,58,112,46,44,0,8540,0,0,800,0,3,6,1,3,2.0,1371.82726165,2647,0,44548.0,1,1,7,0,4,2,0,1,1,0,0,0,0,0,2,0,22274.0,7,4,7,7_1,20000.0,0,0.0,20000,10,16,0.0,8.66666666667,3.3,0,1,2030.702695633028,0.0,2030.702695633028 6966,9323,9322,2,6,41,112,38,50,0,8549,0,0,0,0,2,4,1,3,2.0,2081.87780353,1820,0,46080.0,1,4,10,4,4,1,0,0,0,0,1,0,0,0,1,0,23040.0,7,4,7,7_0,20000.0,0,0.0,20000,4,6,39.6,10.0,0.0,1,1,1937.0536684244914,0.0,1937.0536684244914 6967,9326,9325,5,7,50,120,65,70,0,8554,0,80,0,0,3,4,1,3,2.0,1946.71184542,3557,0,46520.0,1,1,0,3,4,3,0,0,0,1,0,0,0,0,0,3,23260.0,7,4,7,7_0,15942.0,0,15942.0,0,5,7,139.5,50.0,3.3,0,1,1544.025479101162,1544.025479101162,0.0 6968,9350,9349,0,0,71,111,75,44,0,8594,0,0,0,0,0,4,0,1,1.0,3552.98848174,0,0,22896.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,22896.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -6973,22 +6973,22 @@ 6971,9357,9356,1,1,58,300,67,70,1,8602,0,0,130,0,1,4,0,1,1.0,1817.37392936,1872,12200,22114.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,1,0,22114.0,7,4,7,7_1,24000.0,0,0.0,24000,4,4,122.5,50.0,3.3,0,0,2436.8432347596336,0.0,2436.8432347596336 6972,9365,9364,9,9,74,112,71,50,0,8614,0,0,0,0,0,6,0,2,1.5,3646.29364927,1560,0,33971.0,5,1,8,0,5,1,0,0,1,0,0,0,0,0,1,0,22647.3333333,7,4,7,7_1,9862.0,0,0.0,9862,7,7,0.0,0.0,0.0,0,0,1001.3394992166461,0.0,1001.3394992166461 6973,9377,9376,1,16,48,111,64,60,0,8628,0,0,0,0,1,1,0,1,1.0,4850.44900511,0,0,24380.0,1,1,8,7,1,1,0,0,0,0,0,1,0,0,0,1,24380.0,7,4,7,7_0,30000.0,0,30000.0,0,14,14,35.2,30.0,3.3,0,1,2905.5805026367375,2905.5805026367375,0.0 -6974,9378,9377,3,15,34,300,47,50,0,8629,0,348,0,0,2,4,2,4,2.1,2377.03648865,0,0,45588.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21708.571428599997,7,4,7,7_1,20000.0,0,20000.0,0,3,15,182.0,54.75,3.3,0,1,2030.702695633028,2030.702695633028,0.0 +6974,9378,9377,3,15,34,300,47,50,0,8629,0,348,0,0,2,4,2,4,2.1,2377.03648865,0,0,45588.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,21708.5714286,7,4,7,7_1,20000.0,0,20000.0,0,3,15,182.0,54.75,3.3,0,1,2030.702695633028,2030.702695633028,0.0 6975,9396,9395,14,16,63,111,75,70,0,8656,0,0,0,0,0,4,0,2,1.5,2449.08359254,3018,0,34574.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,23049.3333333,7,4,7,7_0,18888.0,0,15000.0,3888,9,11,0.0,0.0,0.0,0,0,1829.35348446009,1452.7902513183687,376.5632331417211 6976,9399,9398,7,18,36,112,52,43,0,8659,0,150,0,0,2,4,0,2,1.5,1927.50236363,843,0,34125.0,1,2,9,1,3,2,0,1,0,1,0,0,0,0,0,2,22750.0,7,4,7,7_0,16000.0,0,16000.0,0,13,13,34.0,30.0,3.3,0,1,1549.6429347395933,1549.6429347395933,0.0 6977,9405,9404,4,6,53,400,37,41,0,8669,0,171,0,0,2,7,2,4,2.5,1986.10240067,0,0,57890.0,1,1,0,0,4,1,0,1,1,0,0,0,0,0,0,1,23156.0,7,4,7,7_1,44336.0,0,44336.0,0,4,4,0.0,12.5,0.0,0,1,4501.661735679297,4501.661735679297,0.0 6978,9412,9411,2,4,32,111,43,20,2,8677,50,0,150,0,2,5,3,5,2.4,1116.23853376,0,7000,55640.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,1,0,23183.3333333,7,4,7,7_0,3600.0,0,0.0,3600,2,4,39.0,32.0,3.3,0,1,348.6696603164085,0.0,348.6696603164085 6979,9443,9442,5,17,54,112,43,33,0,8727,0,84,0,0,2,6,1,3,2.0,4343.14439263,0,0,48687.0,1,2,7,0,4,2,0,0,1,0,0,0,0,0,0,2,24343.5,7,4,7,7_1,5000.0,0,5000.0,0,3,13,0.0,0.0,0.0,0,1,507.675673908257,507.675673908257,0.0 -6980,9456,9455,6,6,52,111,46,50,0,8747,0,100,0,0,2,4,2,4,2.5,3548.93482379,5461,0,57660.0,1,2,9,7,4,3,0,1,0,0,0,1,0,0,2,1,23064.0,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.333333333299999,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 +6980,9456,9455,6,6,52,111,46,50,0,8747,0,100,0,0,2,4,2,4,2.5,3548.93482379,5461,0,57660.0,1,2,9,7,4,3,0,1,0,0,0,1,0,0,2,1,23064.0,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.3333333333,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 6981,9464,9463,8,8,54,111,46,50,0,8763,0,0,240,0,1,4,0,1,1.0,2204.44445051,0,0,24452.0,1,1,8,7,1,1,0,1,0,0,0,1,0,0,1,0,24452.0,7,4,7,7_0,8000.0,0,0.0,8000,4,7,0.0,40.0,2.2,0,0,774.8214673697967,0.0,774.8214673697967 -6982,9470,9469,4,4,37,221,21,50,0,8775,0,375,324,750,2,4,1,3,1.8,5161.34724383,5054,0,40523.0,1,3,1,1,4,2,0,1,0,1,0,0,0,0,1,1,22512.777777799998,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.333333333299999,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 +6982,9470,9469,4,4,37,221,21,50,0,8775,0,375,324,750,2,4,1,3,1.8,5161.34724383,5054,0,40523.0,1,3,1,1,4,2,0,1,0,1,0,0,0,0,1,1,22512.7777778,7,4,7,7_0,12695.0,0,12680.0,15,1,1,0.0,11.3333333333,3.3,1,1,1229.5448160324459,1228.0920257811276,1.4527902513183686 6983,9508,9507,10,14,80,300,78,71,0,8828,0,0,0,0,0,3,0,2,1.5,2585.31038826,1610,0,34470.0,5,3,0,0,3,2,0,0,1,0,0,0,0,0,2,0,22980.0,7,4,7,7_1,4500.0,0,0.0,4500,6,6,0.0,0.0,0.0,0,0,456.9081065174313,0.0,456.9081065174313 -6984,9509,9508,1,4,38,112,47,50,0,8829,0,0,0,0,2,6,2,4,2.3,6659.44235812,0,0,56325.0,1,2,9,2,4,1,0,0,0,1,0,0,0,0,0,1,24489.130434799998,7,4,7,7_0,20000.0,0,20000.0,0,3,3,0.0,10.0,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 +6984,9509,9508,1,4,38,112,47,50,0,8829,0,0,0,0,2,6,2,4,2.3,6659.44235812,0,0,56325.0,1,2,9,2,4,1,0,0,0,1,0,0,0,0,0,1,24489.1304348,7,4,7,7_0,20000.0,0,20000.0,0,3,3,0.0,10.0,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 6985,9520,9519,9,9,40,111,62,44,0,8843,0,0,0,271,1,3,0,1,1.0,4406.25253784,2938,0,22817.0,1,3,4,3,1,1,0,0,0,1,0,0,0,0,1,0,22817.0,7,4,7,7_0,6000.0,0,0.0,6000,9,9,0.0,10.0,3.3,0,1,581.1161005273475,0.0,581.1161005273475 6986,9522,9521,2,2,72,112,77,70,0,885,0,0,0,0,0,5,0,2,1.5,1361.63566453,0,0,34530.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,23020.0,7,4,7,7_1,12000.0,0,12000.0,0,4,4,0.0,0.0,0.0,0,0,1218.4216173798168,1218.4216173798168,0.0 6987,9523,9522,4,4,35,111,47,31,0,8850,0,450,0,0,2,4,2,4,2.1,3754.55868693,1914,0,50154.0,1,2,4,3,4,1,0,1,0,1,0,0,0,0,0,1,23882.8571429,7,4,7,7_0,20000.0,0,20000.0,0,3,3,0.0,10.0,3.31,0,1,1937.0536684244914,1937.0536684244914,0.0 6988,9531,9530,6,10,44,111,37,43,0,8861,0,880,0,0,2,5,3,5,2.8,1812.28774034,4684,0,64239.0,1,2,7,5,4,2,0,0,0,0,1,0,0,0,0,2,22942.5,7,4,7,7_0,15000.0,0,15000.0,0,5,9,35.2,4.4,0.0,0,1,1452.7902513183687,1452.7902513183687,0.0 -6989,9534,9533,0,0,31,111,37,10,0,8864,0,0,0,383,2,2,1,3,1.8,2787.98955772,0,0,42923.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,23846.111111099995,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +6989,9534,9533,0,0,31,111,37,10,0,8864,0,0,0,383,2,2,1,3,1.8,2787.98955772,0,0,42923.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,23846.1111111,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 6990,9535,9534,6,7,26,400,63,50,0,8865,0,130,0,0,2,4,0,2,1.5,1996.16147206,858,0,36780.0,1,2,0,0,3,2,0,1,1,0,0,0,0,0,0,2,24520.0,7,4,7,7_1,56716.0,0,56716.0,0,5,7,67.5,15.0,0.0,0,1,5758.66670427614,5758.66670427614,0.0 6991,9551,9550,5,10,70,111,77,60,0,8883,0,0,0,0,0,4,0,1,1.0,2926.41319842,0,0,22045.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,22045.0,7,4,7,7_0,3614.0,0,0.0,3614,1,12,0.0,0.0,0.0,0,0,350.0255978843056,0.0,350.0255978843056 6992,9563,9562,4,4,48,111,65,50,0,890,0,0,100,211,1,3,0,1,1.0,1403.64016969,0,0,23373.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,1,0,23373.0,7,4,7,7_0,10704.0,0,0.0,10704,1,4,40.5,60.0,3.3,0,1,1036.711123340788,0.0,1036.711123340788 @@ -7001,9 +7001,9 @@ 6999,9592,9591,1,1,50,111,23,43,2,8943,0,0,200,0,2,8,4,6,3.1,2220.04881524,5200,20000,69950.0,1,1,9,7,4,2,1,0,0,0,0,1,0,0,1,1,22564.516129,7,4,7,7_0,20000.0,0,4000.0,16000,7,11,74.8,25.0,5.56,0,1,1937.0536684244914,387.41073368489833,1549.6429347395933 7000,9612,9611,9,9,45,111,43,20,0,8972,0,0,0,207,1,3,0,1,1.0,3016.55238906,0,0,24750.0,1,3,7,5,1,1,0,0,0,0,1,0,0,0,0,1,24750.0,7,4,7,7_0,20000.0,0,20000.0,0,3,8,0.0,0.0,0.0,0,1,1937.0536684244914,1937.0536684244914,0.0 7001,9616,9615,12,12,65,112,74,33,0,8979,0,0,84,0,1,6,0,2,1.5,1629.77922974,1014,0,33138.0,5,1,8,0,3,2,0,1,1,0,0,0,0,0,1,1,22092.0,7,4,7,7_1,20000.0,0,3000.0,17000,2,19,0.0,0.0,0.0,0,1,2030.702695633028,304.6054043449542,1726.0972912880738 -7002,9619,9618,0,0,48,111,46,41,1,8983,0,0,100,0,1,5,1,3,2.0,2092.0260620999998,2116,27700,46167.0,1,1,8,6,4,2,0,0,0,0,1,0,0,0,1,1,23083.5,7,4,7,7_0,12000.0,0,12000.0,0,3,3,0.0,26.6666666667,3.3,0,1,1162.232201054695,1162.232201054695,0.0 +7002,9619,9618,0,0,48,111,46,41,1,8983,0,0,100,0,1,5,1,3,2.0,2092.0260621,2116,27700,46167.0,1,1,8,6,4,2,0,0,0,0,1,0,0,0,1,1,23083.5,7,4,7,7_0,12000.0,0,12000.0,0,3,3,0.0,26.6666666667,3.3,0,1,1162.232201054695,1162.232201054695,0.0 7003,9665,9664,11,19,39,120,21,50,0,9044,0,400,0,0,2,6,2,4,2.1,4488.67688724,2860,0,50362.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,23981.9047619,7,4,7,7_1,15000.0,0,15000.0,0,5,18,88.2,29.25,3.3,0,1,1523.027021724771,1523.027021724771,0.0 -7004,9668,9667,3,6,25,111,42,20,0,9050,0,300,120,573,2,3,1,3,1.8,1592.5184560999999,0,0,42905.0,1,3,7,6,4,3,0,1,0,0,1,0,0,0,2,1,23836.111111099995,7,4,7,7_0,33000.0,0,15000.0,18000,5,5,248.5,33.3333333333,3.3,0,1,3196.138552900411,1452.7902513183687,1743.3483015820423 +7004,9668,9667,3,6,25,111,42,20,0,9050,0,300,120,573,2,3,1,3,1.8,1592.5184561,0,0,42905.0,1,3,7,6,4,3,0,1,0,0,1,0,0,0,2,1,23836.1111111,7,4,7,7_0,33000.0,0,15000.0,18000,5,5,248.5,33.3333333333,3.3,0,1,3196.138552900411,1452.7902513183687,1743.3483015820423 7005,9677,9676,7,7,80,111,74,70,0,9061,0,0,0,0,0,5,0,2,1.5,1641.16194588,0,0,36893.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,24595.3333333,7,4,7,7_0,8000.0,0,0.0,8000,5,5,0.0,0.0,0.0,0,0,774.8214673697967,0.0,774.8214673697967 7006,9682,9681,1,4,54,111,48,50,2,9066,0,0,0,562,2,5,1,3,2.0,1258.49474856,2080,7000,47356.0,1,3,9,7,4,2,0,0,0,0,0,1,0,0,0,2,23678.0,7,4,7,7_0,20000.0,0,20000.0,0,2,6,284.0,48.3333333333,3.3,1,0,1937.0536684244914,1937.0536684244914,0.0 7007,9684,9683,1,11,42,111,35,31,0,9068,0,0,99999,0,2,5,2,4,2.1,2310.12146915,3174,0,46200.0,1,1,9,7,4,2,1,0,0,0,0,1,0,0,1,1,22000.0,7,4,7,7_0,13840.0,0,13000.0,840,6,6,35.6,12.5,0.0,1,0,1340.441138549748,1259.0848844759196,81.35625407382864 @@ -7016,16 +7016,16 @@ 7014,9757,9756,0,0,34,111,42,20,0,9164,0,0,0,0,1,2,0,1,1.0,3308.4217204,0,0,22598.0,1,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,22598.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7015,9785,9784,3,17,54,111,43,50,0,9200,0,99999,0,0,2,3,1,2,1.5,1996.69833832,2103,0,35578.0,1,3,6,5,2,1,0,1,0,0,1,0,0,1,0,1,23718.6666667,7,4,7,7_0,15000.0,0,15000.0,0,3,12,45.5,20.0,3.3,0,1,1452.7902513183687,1452.7902513183687,0.0 7016,9792,9791,5,5,65,112,78,70,0,9211,0,0,0,0,0,5,0,2,1.5,2495.88636568,0,0,32768.0,5,1,7,1,3,3,0,0,0,1,0,0,0,0,0,3,21845.3333333,7,4,7,7_0,3000.0,0,3000.0,0,10,10,0.0,0.0,0.0,0,0,290.55805026367375,290.55805026367375,0.0 -7017,9804,9803,1,5,45,111,54,50,2,9237,0,1000,144,0,4,5,2,4,2.5,1094.50680939,4317,19000,61104.0,1,2,3,4,4,3,0,1,0,0,1,0,0,0,2,1,24441.6,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.333333333299999,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 +7017,9804,9803,1,5,45,111,54,50,2,9237,0,1000,144,0,4,5,2,4,2.5,1094.50680939,4317,19000,61104.0,1,2,3,4,4,3,0,1,0,0,1,0,0,0,2,1,24441.6,7,4,7,7_0,60000.0,0,45000.0,15000,2,3,0.0,13.3333333333,3.31,1,1,5811.161005273475,4358.370753955106,1452.7902513183687 7018,9806,9805,15,19,88,111,77,70,0,9239,0,0,0,640,0,1,0,1,1.0,4303.26060571,1669,0,23402.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,23402.0,7,4,7,7_0,610.0,0,0.0,610,4,19,0.0,0.0,0.0,0,0,59.080136886946995,0.0,59.080136886946995 7019,9815,9814,5,7,77,112,72,71,0,9256,0,0,0,0,0,4,0,2,1.5,4153.92422336,4371,0,36891.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,0,1,24594.0,7,4,7,7_1,10000.0,0,10000.0,0,4,7,0.0,0.0,0.0,0,0,1015.351347816514,1015.351347816514,0.0 7020,9827,9826,6,7,54,111,46,41,0,9273,0,100,0,395,1,6,0,1,1.0,1613.11393152,0,0,24572.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,24572.0,7,4,7,7_0,20000.0,0,20000.0,0,5,8,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 7021,9831,9830,3,7,53,212,77,31,0,9277,0,130,0,0,2,6,1,3,2.0,4427.91805997,2572,0,43843.0,5,1,3,0,4,3,0,0,1,0,0,0,0,0,0,3,21921.5,7,4,7,7_1,19644.0,0,19644.0,0,3,10,234.0,38.3333333333,3.3,0,1,1994.5561876507602,1994.5561876507602,0.0 7022,9833,9832,7,11,37,111,46,31,0,9279,0,90,0,0,2,5,2,4,2.1,4057.52891144,1041,0,50346.0,1,2,8,7,4,1,1,1,0,0,0,1,0,0,0,1,23974.2857143,7,4,7,7_0,16000.0,0,16000.0,0,5,9,77.0,16.25,3.3,0,1,1549.6429347395933,1549.6429347395933,0.0 -7023,9843,9842,3,7,58,111,52,31,0,9291,0,800,0,0,2,5,0,2,1.5,2542.3428151999997,3120,0,33866.0,1,1,9,7,3,1,0,1,0,0,0,1,0,0,0,1,22577.3333333,7,4,7,7_0,12500.0,0,12500.0,0,4,5,0.0,0.0,0.0,0,0,1210.6585427653072,1210.6585427653072,0.0 +7023,9843,9842,3,7,58,111,52,31,0,9291,0,800,0,0,2,5,0,2,1.5,2542.3428152,3120,0,33866.0,1,1,9,7,3,1,0,1,0,0,0,1,0,0,0,1,22577.3333333,7,4,7,7_0,12500.0,0,12500.0,0,4,5,0.0,0.0,0.0,0,0,1210.6585427653072,1210.6585427653072,0.0 7024,9845,9844,0,0,36,111,22,31,0,9296,0,0,0,306,1,2,0,1,1.0,3253.0123737,0,0,22888.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,22888.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 7025,9858,9857,3,5,54,112,52,71,0,932,0,0,0,0,1,5,0,1,1.0,1835.14656767,3496,0,21781.0,1,1,9,2,1,1,1,0,0,1,0,0,0,0,0,1,21781.0,7,4,7,7_0,20000.0,0,20000.0,0,5,8,0.0,0.0,0.0,0,0,1937.0536684244914,1937.0536684244914,0.0 -7026,9886,9885,14,14,43,111,37,10,0,9359,96,0,0,0,2,6,3,5,2.8,2002.28992158,6864,0,64571.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,0,23061.071428599997,7,4,7,7_0,250.0,0,0.0,250,1,19,0.0,7.0,0.0,0,0,24.213170855306146,0.0,24.213170855306146 +7026,9886,9885,14,14,43,111,37,10,0,9359,96,0,0,0,2,6,3,5,2.8,2002.28992158,6864,0,64571.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,0,23061.0714286,7,4,7,7_0,250.0,0,0.0,250,1,19,0.0,7.0,0.0,0,0,24.213170855306146,0.0,24.213170855306146 7027,9912,9911,11,11,53,221,23,50,0,9389,0,0,160,0,1,5,0,2,1.5,2260.76909037,0,0,33300.0,1,1,1,3,3,2,0,1,0,1,0,0,0,0,2,0,22200.0,7,4,7,7_0,7000.0,0,0.0,7000,7,13,0.0,0.0,0.0,0,0,677.9687839485721,0.0,677.9687839485721 7028,9919,9918,3,3,50,111,46,60,0,9396,0,180,0,276,1,3,0,1,1.0,3112.70798621,0,0,24269.0,1,3,8,6,1,2,0,1,0,0,1,0,0,0,1,1,24269.0,7,4,7,7_0,30000.0,0,30000.0,0,2,4,0.0,16.0,3.3,0,1,2905.5805026367375,2905.5805026367375,0.0 7029,9935,9934,6,6,68,111,78,50,0,9425,0,0,0,0,0,5,0,2,1.5,1218.07913409,0,0,34368.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,22912.0,7,4,7,7_0,7500.0,0,7500.0,0,8,8,0.0,0.0,0.0,0,0,726.3951256591844,726.3951256591844,0.0 @@ -7033,9 +7033,9 @@ 7031,9958,9957,1,2,66,111,74,30,1,9463,0,0,0,0,0,4,0,2,1.5,2140.67171202,0,11606,36805.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,24536.6666667,7,4,7,7_0,7000.0,0,0.0,7000,1,1,0.0,0.0,0.0,0,0,677.9687839485721,0.0,677.9687839485721 7032,9963,9962,4,10,37,112,12,31,0,9471,0,0,0,0,2,5,0,2,1.5,1505.76946569,520,0,33013.0,1,1,8,0,3,2,0,0,1,0,0,0,0,0,0,2,22008.6666667,7,4,7,7_1,24202.0,0,24202.0,0,1,10,0.0,40.0,3.3,0,1,2457.353331985527,2457.353331985527,0.0 7033,9968,9967,4,9,29,111,47,31,0,9479,0,150,0,0,2,3,1,3,1.8,2311.00336418,0,0,39097.0,1,2,6,5,4,1,0,1,0,0,1,0,0,0,0,1,21720.5555556,7,4,7,7_0,20000.0,0,20000.0,0,2,10,46.6,26.6666666667,0.0,0,1,1937.0536684244914,1937.0536684244914,0.0 -7034,9979,9978,3,3,42,111,52,50,0,9490,0,0,99999,605,3,4,3,6,3.1,1264.39276388,0,0,72735.0,1,3,10,8,5,1,0,1,0,0,0,0,1,0,1,0,23462.903225799997,7,4,7,7_0,8000.0,0,0.0,8000,3,8,0.0,7.5,0.0,0,1,774.8214673697967,0.0,774.8214673697967 +7034,9979,9978,3,3,42,111,52,50,0,9490,0,0,99999,605,3,4,3,6,3.1,1264.39276388,0,0,72735.0,1,3,10,8,5,1,0,1,0,0,0,0,1,0,1,0,23462.9032258,7,4,7,7_0,8000.0,0,0.0,8000,3,8,0.0,7.5,0.0,0,1,774.8214673697967,0.0,774.8214673697967 7035,9987,9986,2,4,58,300,43,50,0,9501,0,0,40,0,2,4,0,2,1.5,1937.15357679,0,0,33052.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,1,1,22034.6666667,7,4,7,7_1,34000.0,0,19000.0,15000,7,7,46.2,44.0,3.3,1,0,3452.1945825761477,1929.1675608513765,1523.027021724771 -7036,10005,10004,5,11,32,120,48,50,0,9523,0,50,230,0,2,4,1,3,1.8,2306.78831272,0,0,43580.0,1,2,0,3,4,2,0,1,0,1,0,0,0,0,1,1,24211.111111099995,7,4,7,7_0,31000.0,0,20000.0,11000,7,11,308.8,28.6666666667,3.3,0,1,3002.433186057962,1937.0536684244914,1065.3795176334704 +7036,10005,10004,5,11,32,120,48,50,0,9523,0,50,230,0,2,4,1,3,1.8,2306.78831272,0,0,43580.0,1,2,0,3,4,2,0,1,0,1,0,0,0,0,1,1,24211.1111111,7,4,7,7_0,31000.0,0,20000.0,11000,7,11,308.8,28.6666666667,3.3,0,1,3002.433186057962,1937.0536684244914,1065.3795176334704 7037,10014,10013,6,6,47,111,54,42,0,9538,0,300,0,0,2,6,1,3,2.0,2064.4122124,4327,0,44418.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,22209.0,7,4,7,7_0,5200.0,0,5200.0,0,1,6,141.0,58.3333333333,3.3,0,1,503.6339537903678,503.6339537903678,0.0 7038,10022,10021,0,0,65,111,74,50,0,955,0,0,0,323,0,3,0,1,1.0,2683.13672376,0,0,22528.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,22528.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7039,10023,10022,0,22,73,112,75,50,0,9550,0,0,0,0,0,5,0,2,1.5,2036.53328183,0,0,35310.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,2,0,23540.0,7,4,7,7_1,18500.0,0,0.0,18500,20,22,0.0,0.0,0.0,0,0,1878.3999934605508,0.0,1878.3999934605508 @@ -7045,7 +7045,7 @@ 7043,10049,10048,2,4,38,221,34,33,0,9583,0,375,0,650,2,4,3,5,2.4,1231.58712354,1560,0,52479.0,1,3,1,2,4,1,0,1,0,1,0,0,0,0,0,1,21866.25,7,4,7,7_0,6716.0,0,6716.0,0,0,1,0.0,0.0,0.0,0,1,650.4626218569443,650.4626218569443,0.0 7044,10051,10050,5,11,57,120,68,50,0,9585,0,350,70,0,2,4,0,2,1.5,2247.72755854,2681,0,36568.0,1,1,0,2,3,3,0,1,0,1,0,0,0,0,2,1,24378.6666667,7,4,7,7_0,31644.0,0,15311.0,16333,7,12,221.8,90.0,3.3,0,1,3064.8063141812304,1482.9114358623697,1581.894878318861 7045,10057,10056,0,0,85,111,77,70,0,9594,0,0,0,0,0,3,0,1,1.0,3522.05561729,0,0,23194.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,23194.0,7,4,7,7_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -7046,10063,10062,2,6,36,111,67,50,0,9608,0,100,110,161,2,4,1,3,1.8,1407.16274167,1820,0,39965.0,1,3,8,7,5,2,0,1,0,0,0,1,0,1,1,1,22202.777777799998,7,4,7,7_0,19792.0,0,12500.0,7292,4,10,54.5,20.0,3.3,0,1,1916.9083102728769,1210.6585427653072,706.2497675075696 +7046,10063,10062,2,6,36,111,67,50,0,9608,0,100,110,161,2,4,1,3,1.8,1407.16274167,1820,0,39965.0,1,3,8,7,5,2,0,1,0,0,0,1,0,1,1,1,22202.7777778,7,4,7,7_0,19792.0,0,12500.0,7292,4,10,54.5,20.0,3.3,0,1,1916.9083102728769,1210.6585427653072,706.2497675075696 7047,10086,10085,7,7,40,111,42,20,0,9634,0,0,99999,0,1,4,1,2,1.3,5175.94664663,0,0,28690.0,1,2,6,4,2,1,0,1,0,0,1,0,0,0,1,0,22069.2307692,7,4,7,7_0,15000.0,0,0.0,15000,3,7,111.0,35.0,2.24,0,1,1452.7902513183687,0.0,1452.7902513183687 7048,10094,10093,0,0,46,120,13,42,0,9644,0,0,0,0,2,6,2,4,2.3,1610.61333392,0,0,51023.0,1,2,0,1,4,0,0,0,0,1,0,0,0,0,0,0,22183.9130435,7,4,7,7_0,15000.0,0,0.0,15000,3,8,119.2,25.0,3.3,0,1,1452.7902513183687,0.0,1452.7902513183687 7049,10100,10099,2,9,31,111,47,31,0,9653,0,400,0,0,2,2,0,2,1.5,3078.1700703,2756,0,32829.0,1,2,9,7,3,2,1,1,0,0,0,1,0,0,0,2,21886.0,7,4,7,7_0,20000.0,0,20000.0,0,4,10,0.0,15.0,3.3,0,1,1937.0536684244914,1937.0536684244914,0.0 @@ -7058,17 +7058,17 @@ 7056,10194,10193,1,6,27,111,43,33,2,9789,0,900,0,0,2,4,1,3,1.8,3345.88322362,9393,7900,41300.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,22944.4444444,7,4,7,7_0,24001.0,0,24001.0,0,1,5,213.9,40.0,3.3,0,1,2324.5612547928113,2324.5612547928113,0.0 7057,10199,10198,6,8,62,300,11,50,0,9799,0,60,0,0,2,6,0,2,1.5,2073.92247923,0,0,33106.0,5,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,22070.6666667,7,4,7,7_1,35000.0,0,35000.0,0,5,8,0.0,90.0,3.3,0,1,3553.729717357799,3553.729717357799,0.0 7058,10215,10214,7,7,62,111,75,50,0,9818,0,0,0,0,0,4,0,1,1.0,1896.28082493,1820,0,23985.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,23985.0,7,4,7,7_0,10000.0,0,0.0,10000,2,7,0.0,0.0,0.0,0,0,968.5268342122457,0.0,968.5268342122457 -7059,10216,10215,2,10,28,111,47,50,0,9819,0,500,0,0,2,3,1,3,1.8,4116.15656305,3640,0,43351.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,24083.888888900005,7,4,7,7_0,15000.0,0,15000.0,0,2,8,161.4,63.3333333333,3.33,0,1,1452.7902513183687,1452.7902513183687,0.0 +7059,10216,10215,2,10,28,111,47,50,0,9819,0,500,0,0,2,3,1,3,1.8,4116.15656305,3640,0,43351.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,24083.8888889,7,4,7,7_0,15000.0,0,15000.0,0,2,8,161.4,63.3333333333,3.33,0,1,1452.7902513183687,1452.7902513183687,0.0 7060,10219,10218,0,19,41,111,52,31,0,9826,0,0,0,0,2,4,0,2,1.5,3922.71432151,0,0,36407.0,1,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,24271.3333333,7,4,7,7_0,10000.0,0,0.0,10000,8,19,52.0,35.0,5.55,0,1,968.5268342122457,0.0,968.5268342122457 7061,10225,10224,12,12,79,120,75,71,0,9833,0,0,0,0,0,4,0,2,1.5,2874.22166591,1563,0,33230.0,5,1,0,3,3,2,0,0,0,1,0,0,0,0,0,2,22153.3333333,7,4,7,7_0,7716.0,0,7716.0,0,2,7,0.0,0.0,0.0,0,0,747.3153052781689,747.3153052781689,0.0 7062,10229,10228,5,18,44,111,38,20,0,9841,0,0,0,0,1,1,0,1,1.0,2784.95208783,1300,0,22760.0,1,3,10,8,1,1,0,0,0,0,0,0,1,1,1,0,22760.0,7,4,7,7_0,20000.0,0,0.0,20000,10,18,42.0,45.0,3.3,0,1,1937.0536684244914,0.0,1937.0536684244914 7063,10230,10229,3,4,38,111,43,12,0,9843,0,750,35,0,2,5,2,4,2.1,1214.55306737,4426,0,47430.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,1,1,22585.7142857,7,4,7,7_0,35000.0,0,25000.0,10000,4,4,141.3,27.5,3.3,0,1,3389.84391974286,2421.3170855306143,968.5268342122457 7064,10235,10234,6,11,41,112,47,31,0,9853,0,0,350,0,2,4,1,3,1.8,1976.79384058,0,0,42042.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,1,1,23356.6666667,7,4,7,7_1,14481.0,0,12481.0,2000,11,15,111.0,14.0,3.31,0,1,1470.3302867730938,1267.260017209791,203.0702695633028 7065,10241,10240,6,7,50,112,46,50,0,986,0,99999,0,0,2,6,1,3,1.8,2525.56289766,8580,0,44407.0,1,1,9,2,4,3,1,1,0,1,0,0,0,0,1,2,24670.5555556,7,4,7,7_0,10000.0,0,10000.0,0,2,4,44.5,68.3333333333,3.3,0,1,968.5268342122457,968.5268342122457,0.0 -7066,10243,10242,1,3,47,111,53,41,2,9863,0,0,0,0,1,3,1,2,1.3,2903.49888133,0,8000,29412.0,1,2,9,7,2,1,0,0,0,0,0,1,0,0,0,1,22624.615384599998,7,4,7,7_0,15000.0,0,15000.0,0,2,2,71.0,52.5,3.31,0,1,1452.7902513183687,1452.7902513183687,0.0 +7066,10243,10242,1,3,47,111,53,41,2,9863,0,0,0,0,1,3,1,2,1.3,2903.49888133,0,8000,29412.0,1,2,9,7,2,1,0,0,0,0,0,1,0,0,0,1,22624.6153846,7,4,7,7_0,15000.0,0,15000.0,0,2,2,71.0,52.5,3.31,0,1,1452.7902513183687,1452.7902513183687,0.0 7067,10246,10245,17,17,77,111,75,41,0,9869,0,0,0,0,0,4,0,2,1.5,3218.15673433,0,0,35558.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,1,0,23705.3333333,7,4,7,7_0,4000.0,0,0.0,4000,17,17,0.0,0.0,0.0,0,0,387.41073368489833,0.0,387.41073368489833 7068,10254,10253,4,12,59,111,78,71,0,988,0,0,0,0,0,5,1,3,2.0,1896.84998998,3276,0,45229.0,4,1,8,7,4,2,0,0,0,0,0,1,0,0,0,2,22614.5,7,4,7,7_0,9000.0,0,9000.0,0,2,2,0.0,0.0,0.0,0,0,871.6741507910211,871.6741507910211,0.0 -7069,10257,10256,0,0,43,112,22,50,0,9883,0,0,0,0,2,5,2,4,2.3,1825.7576833,0,0,51946.0,1,1,7,0,4,0,0,0,1,0,0,0,0,0,0,0,22585.217391299997,7,4,7,7_1,15000.0,0,0.0,15000,4,6,177.2,50.0,3.3,0,1,1523.027021724771,0.0,1523.027021724771 +7069,10257,10256,0,0,43,112,22,50,0,9883,0,0,0,0,2,5,2,4,2.3,1825.7576833,0,0,51946.0,1,1,7,0,4,0,0,0,1,0,0,0,0,0,0,0,22585.2173913,7,4,7,7_1,15000.0,0,0.0,15000,4,6,177.2,50.0,3.3,0,1,1523.027021724771,0.0,1523.027021724771 7070,10268,10267,7,8,51,120,42,30,0,9898,0,300,150,0,3,6,1,3,2.0,1785.48353321,1337,0,47143.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,23571.5,7,4,7,7_1,15000.0,0,3000.0,12000,7,7,0.0,0.0,0.0,0,0,1523.027021724771,304.6054043449542,1218.4216173798168 7071,10290,10289,5,5,74,111,75,33,0,9923,0,0,0,0,0,4,0,2,1.5,2441.32563749,0,0,34060.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,22706.6666667,7,4,7,7_0,6000.0,0,0.0,6000,4,7,0.0,0.0,0.0,0,0,581.1161005273475,0.0,581.1161005273475 7072,10294,10293,2,2,55,112,52,41,0,9927,0,370,0,0,1,5,0,1,1.0,2652.8224852,0,0,23730.0,1,1,7,0,1,1,0,1,1,0,0,0,0,0,0,1,23730.0,7,4,7,7_1,4900.0,0,4900.0,0,1,1,0.0,0.0,0.0,1,0,497.52216043009184,497.52216043009184,0.0 @@ -7079,7 +7079,7 @@ 7077,10333,10332,15,15,64,112,78,50,0,9985,0,0,0,0,0,4,0,1,1.0,2884.27324003,3208,0,23146.0,5,1,7,0,1,2,0,0,1,0,0,0,0,0,0,2,23146.0,7,4,7,7_1,15000.0,0,15000.0,0,13,14,0.0,0.0,0.0,0,0,1523.027021724771,1523.027021724771,0.0 7078,10340,10339,10,10,58,111,65,70,0,9996,0,0,120,0,1,4,1,2,1.5,1952.95289391,0,0,32765.0,1,1,4,4,2,1,0,1,0,0,1,0,0,0,1,0,21843.3333333,7,4,7,7_0,10000.0,0,0.0,10000,7,9,0.0,80.0,3.3,0,1,968.5268342122457,0.0,968.5268342122457 7079,3,2,3,8,40,400,62,50,0,1000,0,600,0,375,1,3,0,1,1.0,2462.4811707,5159,0,27868.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,0,1,27868.0,8,4,8,8_1,27226.0,0,27226.0,0,1,8,0.0,4.0,1.1,0,0,2857.5864274649816,2857.5864274649816,0.0 -7080,10,9,2,2,70,111,74,70,0,10009,0,0,0,0,0,7,0,2,1.5,981.8993171010001,1821,0,39346.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,26230.6666667,8,4,8,8_0,15500.0,0,14500.0,1000,3,3,0.0,0.0,0.0,0,0,1514.4842419704166,1416.775581198132,97.70866077228496 +7080,10,9,2,2,70,111,74,70,0,10009,0,0,0,0,0,7,0,2,1.5,981.899317101,1821,0,39346.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,26230.6666667,8,4,8,8_0,15500.0,0,14500.0,1000,3,3,0.0,0.0,0.0,0,0,1514.4842419704166,1416.775581198132,97.70866077228496 7081,22,21,10,15,67,111,77,70,0,10022,0,0,0,0,1,5,0,3,2.0,1918.11176868,1040,0,53490.0,5,1,8,7,5,1,0,0,0,0,0,1,0,0,1,0,26745.0,8,4,8,8_0,6900.0,0,0.0,6900,14,14,0.0,0.0,0.0,0,0,674.1897593287662,0.0,674.1897593287662 7082,26,25,3,3,45,112,48,71,0,10029,0,108,280,0,2,5,2,4,2.5,2277.88017197,2080,0,65199.0,1,2,10,1,4,2,0,1,0,1,0,0,0,0,1,1,26079.6,8,4,8,8_0,60000.0,0,30000.0,30000,3,3,165.9,36.3333333333,3.3,1,1,5862.519646337098,2931.259823168549,2931.259823168549 7083,35,34,10,10,68,112,74,31,0,10038,0,0,0,0,0,6,0,2,1.5,1873.2891572,0,0,37617.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,0,2,25078.0,8,4,8,8_1,8000.0,0,8000.0,0,8,11,0.0,0.0,0.0,0,0,839.66397633585,839.66397633585,0.0 @@ -7098,7 +7098,7 @@ 7096,168,167,25,25,82,111,74,33,0,10228,0,0,0,1112,0,3,0,1,1.0,4442.81483355,0,0,28068.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,28068.0,8,4,8,8_0,4759.0,0,0.0,4759,18,18,0.0,0.0,0.0,0,0,464.9955166153041,0.0,464.9955166153041 7097,198,197,6,12,47,111,67,50,0,10267,0,0,199998,0,2,5,0,2,1.5,3792.1139666,3120,0,37276.0,4,1,6,5,3,2,0,1,0,0,1,0,0,0,2,0,24850.6666667,8,4,8,8_0,6000.0,0,0.0,6000,7,11,44.5,25.0,3.3,0,1,586.2519646337097,0.0,586.2519646337097 7098,210,209,2,2,46,111,37,20,0,10286,0,0,0,0,2,5,2,4,2.5,2716.53822035,0,0,71111.0,1,1,9,7,4,2,1,0,0,0,0,1,0,0,2,0,28444.4,8,4,8,8_0,44512.0,0,0.0,44512,2,2,496.8,56.25,3.3,0,1,4349.207908295948,0.0,4349.207908295948 -7099,215,214,13,13,40,300,64,50,0,10290,0,0,40,0,1,6,1,2,1.5,1656.3713810999998,0,0,38420.0,1,1,0,0,2,2,0,1,1,0,0,0,0,0,1,1,25613.3333333,8,4,8,8_1,35000.0,0,5000.0,30000,6,7,0.0,0.0,0.0,0,0,3673.529896469344,524.7899852099063,3148.7399112594376 +7099,215,214,13,13,40,300,64,50,0,10290,0,0,40,0,1,6,1,2,1.5,1656.3713811,0,0,38420.0,1,1,0,0,2,2,0,1,1,0,0,0,0,0,1,1,25613.3333333,8,4,8,8_1,35000.0,0,5000.0,30000,6,7,0.0,0.0,0.0,0,0,3673.529896469344,524.7899852099063,3148.7399112594376 7100,220,219,2,2,64,221,78,50,0,10299,0,0,0,0,0,6,0,2,1.5,1310.85845978,5469,0,39719.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,1,1,26479.3333333,8,4,8,8_0,12072.0,0,6572.0,5500,1,4,0.0,0.0,0.0,0,0,1179.538952843024,642.1413185954567,537.3976342475672 7101,230,229,4,4,81,111,75,31,0,10311,0,0,0,0,0,3,0,2,1.5,2471.65321128,0,0,37488.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,24992.0,8,4,8,8_0,9000.0,0,9000.0,0,3,3,0.0,0.0,0.0,0,0,879.3779469505646,879.3779469505646,0.0 7102,231,230,6,12,31,211,42,20,0,10312,0,0,0,0,2,5,0,2,1.5,1543.68690457,2652,0,41357.0,1,3,2,3,3,2,0,0,0,1,0,0,0,0,1,1,27571.3333333,8,4,8,8_0,15600.0,0,10000.0,5600,2,13,121.5,20.0,3.3,0,1,1524.2551080476453,977.0866077228495,547.1685003247958 @@ -7114,36 +7114,36 @@ 7112,352,351,0,0,84,212,77,41,0,10484,0,0,0,0,0,3,0,1,1.0,2032.81415545,0,0,25306.0,5,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,25306.0,8,4,8,8_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7113,354,353,0,10,22,221,62,43,2,10488,0,1634,0,410,2,2,0,2,1.5,6624.04512965,7377,3650,39975.0,1,3,1,3,3,2,0,1,0,1,0,0,0,0,0,2,26650.0,8,4,8,8_0,30000.0,0,30000.0,0,2,9,168.5,55.0,3.3,0,1,2931.259823168549,2931.259823168549,0.0 7114,373,372,0,17,42,111,85,20,0,10512,0,0,0,0,0,3,0,1,1.0,2985.30110092,0,0,26560.0,4,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,26560.0,8,4,8,8_0,5000.0,0,0.0,5000,16,17,0.0,0.0,0.0,0,0,488.54330386142476,0.0,488.54330386142476 -7115,382,381,4,4,47,111,62,60,0,10525,0,350,0,0,1,4,2,3,1.8,2059.79160276,0,0,45625.0,1,2,9,7,2,2,0,1,0,0,0,1,0,0,0,2,25347.222222200002,8,4,8,8_0,15000.0,0,15000.0,0,5,5,156.5,65.0,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 -7116,419,418,1,1,31,112,65,31,1,10571,0,140,100,0,2,6,2,4,2.1,1954.43492711,0,8000,56711.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,27005.238095200002,8,4,8,8_1,25000.0,0,15000.0,10000,3,3,92.7,30.0,3.3,1,0,2623.9499260495313,1574.3699556297188,1049.5799704198125 +7115,382,381,4,4,47,111,62,60,0,10525,0,350,0,0,1,4,2,3,1.8,2059.79160276,0,0,45625.0,1,2,9,7,2,2,0,1,0,0,0,1,0,0,0,2,25347.2222222,8,4,8,8_0,15000.0,0,15000.0,0,5,5,156.5,65.0,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 +7116,419,418,1,1,31,112,65,31,1,10571,0,140,100,0,2,6,2,4,2.1,1954.43492711,0,8000,56711.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,27005.2380952,8,4,8,8_1,25000.0,0,15000.0,10000,3,3,92.7,30.0,3.3,1,0,2623.9499260495313,1574.3699556297188,1049.5799704198125 7117,420,419,1,3,54,112,42,41,0,10572,0,0,200,0,1,2,0,1,1.0,3375.49114484,2576,0,27020.0,1,1,10,3,1,1,0,1,0,1,0,0,0,0,1,0,27020.0,8,4,8,8_0,9000.0,0,0.0,9000,3,3,0.0,17.0,3.3,1,0,879.3779469505646,0.0,879.3779469505646 -7118,424,423,11,14,47,111,43,33,0,10579,0,0,140,0,1,4,1,2,1.3,3597.04489404,2600,0,32309.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,1,0,24853.076923099998,8,4,8,8_0,15000.0,0,0.0,15000,9,10,68.5,27.0,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 -7119,432,431,11,11,45,111,33,31,0,10589,0,0,10,0,2,5,2,4,2.3,3054.10321696,2132,0,65917.0,1,4,10,8,4,3,0,0,0,0,0,0,1,0,2,1,28659.565217400002,8,4,8,8_0,30506.0,0,0.0,30506,2,15,0.0,80.0,3.31,1,1,2980.7004055193247,0.0,2980.7004055193247 -7120,439,438,7,8,55,112,63,50,0,10601,0,1770,50,0,3,5,0,4,2.5,996.7452512269999,6007,0,72218.0,1,1,9,0,5,3,0,1,1,0,0,0,0,0,1,2,28887.2,8,4,8,8_1,39716.0,0,9716.0,30000,12,14,0.0,10.0,0.0,0,1,4168.511810519328,1019.7718992598898,3148.7399112594376 +7118,424,423,11,14,47,111,43,33,0,10579,0,0,140,0,1,4,1,2,1.3,3597.04489404,2600,0,32309.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,1,0,24853.0769231,8,4,8,8_0,15000.0,0,0.0,15000,9,10,68.5,27.0,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 +7119,432,431,11,11,45,111,33,31,0,10589,0,0,10,0,2,5,2,4,2.3,3054.10321696,2132,0,65917.0,1,4,10,8,4,3,0,0,0,0,0,0,1,0,2,1,28659.5652174,8,4,8,8_0,30506.0,0,0.0,30506,2,15,0.0,80.0,3.31,1,1,2980.7004055193247,0.0,2980.7004055193247 +7120,439,438,7,8,55,112,63,50,0,10601,0,1770,50,0,3,5,0,4,2.5,996.745251227,6007,0,72218.0,1,1,9,0,5,3,0,1,1,0,0,0,0,0,1,2,28887.2,8,4,8,8_1,39716.0,0,9716.0,30000,12,14,0.0,10.0,0.0,0,1,4168.511810519328,1019.7718992598898,3148.7399112594376 7121,451,450,7,15,37,111,46,43,0,10619,0,0,0,262,1,3,0,1,1.0,3252.66243212,2171,0,27979.0,1,3,8,6,1,1,1,0,0,0,1,0,0,0,0,1,27979.0,8,4,8,8_0,5000.0,0,5000.0,0,2,15,22.0,60.0,5.56,0,0,488.54330386142476,488.54330386142476,0.0 -7122,454,453,1,1,52,221,43,41,1,10624,0,150,0,0,2,4,2,4,2.3,2143.90445671,2340,15000,61770.0,1,2,1,2,4,2,1,0,0,1,0,0,0,0,0,2,26856.521739099997,8,4,8,8_0,10000.0,0,10000.0,0,1,4,237.5,66.6666666667,3.3,0,0,977.0866077228495,977.0866077228495,0.0 +7122,454,453,1,1,52,221,43,41,1,10624,0,150,0,0,2,4,2,4,2.3,2143.90445671,2340,15000,61770.0,1,2,1,2,4,2,1,0,0,1,0,0,0,0,0,2,26856.5217391,8,4,8,8_0,10000.0,0,10000.0,0,1,4,237.5,66.6666666667,3.3,0,0,977.0866077228495,977.0866077228495,0.0 7123,462,461,2,3,54,111,45,41,0,10634,0,10,0,0,1,4,0,1,1.0,2889.78328286,156,0,27321.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,0,1,27321.0,8,4,8,8_0,5144.0,0,5144.0,0,1,2,75.0,50.0,3.3,0,1,502.6133510126338,502.6133510126338,0.0 -7124,463,462,8,8,35,111,42,20,0,10636,0,10,0,251,2,4,1,3,1.8,2938.31973789,0,0,46903.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,26057.222222200002,8,4,8,8_0,6644.0,0,6644.0,0,1,6,48.0,30.0,5.5,0,0,649.1763421710613,649.1763421710613,0.0 +7124,463,462,8,8,35,111,42,20,0,10636,0,10,0,251,2,4,1,3,1.8,2938.31973789,0,0,46903.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,26057.2222222,8,4,8,8_0,6644.0,0,6644.0,0,1,6,48.0,30.0,5.5,0,0,649.1763421710613,649.1763421710613,0.0 7125,465,464,1,1,36,111,37,31,0,10641,0,0,140,0,2,2,0,2,1.5,3426.86253855,0,0,38793.0,1,1,9,7,3,1,0,1,0,0,0,1,0,0,1,0,25862.0,8,4,8,8_0,12000.0,0,0.0,12000,3,3,0.0,15.0,3.3,0,1,1172.5039292674194,0.0,1172.5039292674194 -7126,470,469,2,10,40,112,37,42,0,10647,0,0,0,0,2,4,2,4,2.1,2069.02421559,2600,0,54288.0,1,2,10,1,4,1,0,0,0,1,0,0,0,0,1,0,25851.428571400003,8,4,8,8_0,12000.0,0,0.0,12000,5,10,0.0,22.5,3.3,0,1,1172.5039292674194,0.0,1172.5039292674194 -7127,482,481,8,9,27,111,63,50,0,10662,0,200,0,0,2,3,1,3,1.8,3237.48762221,2080,0,49630.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,27572.222222200002,8,4,8,8_0,15000.0,0,15000.0,0,9,9,184.3,46.6666666667,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 +7126,470,469,2,10,40,112,37,42,0,10647,0,0,0,0,2,4,2,4,2.1,2069.02421559,2600,0,54288.0,1,2,10,1,4,1,0,0,0,1,0,0,0,0,1,0,25851.4285714,8,4,8,8_0,12000.0,0,0.0,12000,5,10,0.0,22.5,3.3,0,1,1172.5039292674194,0.0,1172.5039292674194 +7127,482,481,8,9,27,111,63,50,0,10662,0,200,0,0,2,3,1,3,1.8,3237.48762221,2080,0,49630.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,27572.2222222,8,4,8,8_0,15000.0,0,15000.0,0,9,9,184.3,46.6666666667,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 7128,514,513,6,19,50,111,64,50,0,1071,0,50,0,650,2,5,0,2,1.5,1451.86257879,3214,0,38380.0,1,3,8,7,3,2,0,1,0,0,0,1,0,0,0,2,25586.6666667,8,4,8,8_0,18000.0,0,18000.0,0,17,17,0.0,0.0,0.0,0,0,1758.7558939011292,1758.7558939011292,0.0 -7129,523,522,5,5,40,111,38,20,0,10723,0,99999,0,0,2,3,2,4,2.1,3773.01605118,1811,0,53230.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,25347.619047599997,8,4,8,8_0,18000.0,0,18000.0,0,2,5,218.9,40.0,3.3,0,1,1758.7558939011292,1758.7558939011292,0.0 +7129,523,522,5,5,40,111,38,20,0,10723,0,99999,0,0,2,3,2,4,2.1,3773.01605118,1811,0,53230.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,25347.6190476,8,4,8,8_0,18000.0,0,18000.0,0,2,5,218.9,40.0,3.3,0,1,1758.7558939011292,1758.7558939011292,0.0 7130,547,546,5,9,29,111,54,41,0,10753,0,0,150,290,2,2,1,2,1.5,2630.19661714,3896,0,38000.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,1,0,25333.3333333,8,4,8,8_0,3543.0,0,0.0,3543,1,9,66.5,90.0,5.56,0,0,346.1817851162056,0.0,346.1817851162056 7131,557,556,10,10,37,111,46,31,0,10764,0,140,0,0,2,4,1,3,1.8,3617.6350735,0,0,49049.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,27249.4444444,8,4,8,8_0,10000.0,0,10000.0,0,5,10,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7132,569,568,11,11,61,111,21,31,0,10779,0,150,0,0,2,5,0,2,1.5,3385.48975252,2393,0,37390.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,0,2,24926.6666667,8,4,8,8_0,6268.0,0,6268.0,0,4,9,53.0,15.0,0.0,0,1,612.4378857206822,612.4378857206822,0.0 -7133,583,582,5,10,58,112,67,70,0,10799,0,0,220,0,2,5,0,2,1.5,1186.4523244000002,2328,0,39390.0,1,1,7,0,3,3,0,1,1,0,0,0,0,0,1,2,26260.0,8,4,8,8_1,44972.0,0,44972.0,0,5,8,231.0,60.0,3.3,0,1,4720.171042971981,4720.171042971981,0.0 +7133,583,582,5,10,58,112,67,70,0,10799,0,0,220,0,2,5,0,2,1.5,1186.4523244,2328,0,39390.0,1,1,7,0,3,3,0,1,1,0,0,0,0,0,1,2,26260.0,8,4,8,8_1,44972.0,0,44972.0,0,5,8,231.0,60.0,3.3,0,1,4720.171042971981,4720.171042971981,0.0 7134,585,584,9,16,52,111,46,31,0,10802,0,350,0,387,1,4,0,1,1.0,2901.83460986,0,0,27792.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,27792.0,8,4,8,8_0,10000.0,0,10000.0,0,4,10,95.5,110.0,5.57,0,0,977.0866077228495,977.0866077228495,0.0 -7135,601,600,10,11,41,111,43,50,0,10826,0,50,0,0,2,6,3,5,2.6,3023.17200425,0,0,65891.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,25342.692307700003,8,4,8,8_0,5000.0,0,5000.0,0,11,14,66.5,42.4,5.5,0,0,488.54330386142476,488.54330386142476,0.0 +7135,601,600,10,11,41,111,43,50,0,10826,0,50,0,0,2,6,3,5,2.6,3023.17200425,0,0,65891.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,25342.6923077,8,4,8,8_0,5000.0,0,5000.0,0,11,14,66.5,42.4,5.5,0,0,488.54330386142476,488.54330386142476,0.0 7136,608,607,2,4,31,112,37,31,0,10834,0,2500,120,0,2,5,2,4,2.1,3167.38202015,6294,0,59741.0,1,2,8,0,4,2,1,1,1,0,0,0,0,0,1,1,28448.0952381,8,4,8,8_1,25000.0,0,15000.0,10000,3,3,92.7,30.0,3.3,1,0,2623.9499260495313,1574.3699556297188,1049.5799704198125 7137,612,611,6,10,25,111,47,20,0,10839,0,0,90,448,1,1,0,1,1.0,3613.69101766,0,0,27439.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,1,0,27439.0,8,4,8,8_0,15000.0,0,0.0,15000,9,10,0.0,43.0,3.31,0,1,1465.6299115842744,0.0,1465.6299115842744 -7138,617,616,9,9,40,111,42,10,0,10848,0,262,0,0,2,4,2,4,2.1,1716.72729431,0,0,54898.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,26141.9047619,8,4,8,8_0,6000.0,0,6000.0,0,3,9,0.0,13.333333333299999,0.0,0,1,586.2519646337097,586.2519646337097,0.0 +7138,617,616,9,9,40,111,42,10,0,10848,0,262,0,0,2,4,2,4,2.1,1716.72729431,0,0,54898.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,26141.9047619,8,4,8,8_0,6000.0,0,6000.0,0,3,9,0.0,13.3333333333,0.0,0,1,586.2519646337097,586.2519646337097,0.0 7139,622,621,1,1,46,111,47,31,0,10856,0,450,0,0,2,4,0,2,1.5,1877.44272679,2950,0,41831.0,1,2,9,7,3,1,0,1,0,0,0,1,0,0,0,1,27887.3333333,8,4,8,8_0,19891.0,0,19891.0,0,1,2,48.0,50.0,5.56,0,1,1943.52297142152,1943.52297142152,0.0 7140,635,634,8,8,73,111,74,60,0,10874,0,0,0,0,0,3,0,1,1.0,3662.19429223,0,0,25623.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,25623.0,8,4,8,8_0,8000.0,0,0.0,8000,8,9,0.0,0.0,0.0,0,0,781.6692861782797,0.0,781.6692861782797 -7141,646,645,2,9,31,112,53,41,0,10887,0,350,0,0,2,3,1,3,1.8,2655.20407968,3640,0,45481.0,1,2,10,5,4,1,0,1,0,0,1,0,0,0,0,1,25267.222222200002,8,4,8,8_0,20033.0,0,20033.0,0,1,8,39.0,10.0,3.3,0,1,1957.3976012511846,1957.3976012511846,0.0 +7141,646,645,2,9,31,112,53,41,0,10887,0,350,0,0,2,3,1,3,1.8,2655.20407968,3640,0,45481.0,1,2,10,5,4,1,0,1,0,0,1,0,0,0,0,1,25267.2222222,8,4,8,8_0,20033.0,0,20033.0,0,1,8,39.0,10.0,3.3,0,1,1957.3976012511846,1957.3976012511846,0.0 7142,657,656,15,15,56,112,52,31,0,10902,0,0,350,0,1,6,0,2,1.5,2033.47409203,3900,0,39183.0,1,1,5,0,3,2,0,1,1,0,0,0,0,0,2,0,26122.0,8,4,8,8_1,1500.0,0,0.0,1500,17,17,0.0,0.0,0.0,0,1,157.43699556297187,0.0,157.43699556297187 7143,660,659,16,16,82,111,75,44,0,10905,0,0,0,0,0,6,0,2,1.5,3495.98974448,0,0,41513.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,27675.3333333,8,4,8,8_0,7500.0,0,3000.0,4500,9,20,0.0,0.0,0.0,0,0,732.8149557921372,293.12598231685485,439.6889734752823 -7144,662,661,3,13,28,120,54,20,0,10908,0,50,280,0,2,5,1,3,1.8,2339.56326498,3380,0,45013.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,25007.222222200002,8,4,8,8_1,28000.0,0,20000.0,8000,8,13,193.0,31.3333333333,3.31,0,1,2938.823917175475,2099.159940839625,839.66397633585 +7144,662,661,3,13,28,120,54,20,0,10908,0,50,280,0,2,5,1,3,1.8,2339.56326498,3380,0,45013.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,25007.2222222,8,4,8,8_1,28000.0,0,20000.0,8000,8,13,193.0,31.3333333333,3.31,0,1,2938.823917175475,2099.159940839625,839.66397633585 7145,673,672,0,0,68,111,75,50,0,10923,0,0,0,0,0,1,0,1,1.0,2654.34435981,0,0,27177.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,27177.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7146,681,680,1,10,64,112,78,71,0,10940,0,0,0,413,0,3,0,2,1.5,3787.04259047,0,0,37999.0,5,3,8,0,3,1,0,0,1,0,0,0,0,0,0,1,25332.6666667,8,4,8,8_1,25000.0,0,25000.0,0,10,10,0.0,0.0,0.0,0,0,2623.9499260495313,2623.9499260495313,0.0 7147,683,682,6,6,85,111,75,70,0,10942,0,0,0,0,0,3,0,2,1.5,2969.78148968,0,0,40390.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,26926.6666667,8,4,8,8_0,10000.0,0,10000.0,0,5,5,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 @@ -7152,12 +7152,12 @@ 7150,729,728,7,7,54,112,55,50,0,11002,0,300,0,0,2,7,2,4,2.5,1895.38858917,2331,0,71976.0,1,2,8,0,4,3,0,1,1,0,0,0,0,0,1,2,28790.4,8,4,8,8_1,35000.0,0,35000.0,0,8,9,459.7,98.3333333333,3.3,0,1,3673.529896469344,3673.529896469344,0.0 7151,742,741,5,5,60,111,77,50,0,11025,0,0,20,0,1,4,1,3,2.0,2326.51790699,1310,0,53908.0,5,3,8,7,5,1,0,1,0,0,0,1,0,0,1,0,26954.0,8,4,8,8_0,10000.0,0,0.0,10000,6,6,0.0,53.3333333333,3.3,0,1,977.0866077228495,0.0,977.0866077228495 7152,784,783,5,5,59,111,52,50,0,11075,0,0,0,0,1,4,0,1,1.0,1566.53322522,0,0,27438.0,1,1,7,6,1,1,0,0,0,0,1,0,0,0,1,0,27438.0,8,4,8,8_0,5000.0,0,0.0,5000,4,4,0.0,0.0,0.0,0,1,488.54330386142476,0.0,488.54330386142476 -7153,802,801,8,8,61,111,54,20,0,111,0,0,400,224,1,2,0,1,1.0,2898.8808606999996,1040,0,26263.0,1,3,9,7,1,1,1,1,0,0,0,1,0,1,1,0,26263.0,8,4,8,8_0,33000.0,0,0.0,33000,4,9,0.0,51.0,3.3,1,1,3224.3858054854036,0.0,3224.3858054854036 +7153,802,801,8,8,61,111,54,20,0,111,0,0,400,224,1,2,0,1,1.0,2898.8808607,1040,0,26263.0,1,3,9,7,1,1,1,1,0,0,0,1,0,1,1,0,26263.0,8,4,8,8_0,33000.0,0,0.0,33000,4,9,0.0,51.0,3.3,1,1,3224.3858054854036,0.0,3224.3858054854036 7154,819,818,5,5,59,221,78,70,0,11125,0,620,0,0,2,4,1,3,2.0,1685.09867592,4680,0,55025.0,5,1,1,2,4,3,0,1,0,1,0,0,0,0,1,2,27512.5,8,4,8,8_0,39226.0,0,19226.0,20000,4,4,0.0,0.0,0.0,0,1,3832.7199274536497,1878.5467120079506,1954.173215445699 7155,822,821,4,4,50,111,37,50,0,1113,0,0,0,0,2,5,1,3,1.8,2743.26311189,2867,0,49278.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,27376.6666667,8,4,8,8_0,18000.0,0,18000.0,0,2,2,0.0,0.0,0.0,0,1,1758.7558939011292,1758.7558939011292,0.0 7156,830,829,0,0,37,111,53,41,0,1114,0,0,0,315,1,4,0,1,1.0,3067.09212575,0,0,25661.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,25661.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,50.0,5.55,0,0,0.0,0.0,0.0 7157,841,840,3,3,34,211,46,41,0,11153,0,550,0,0,2,6,1,3,1.8,2165.78988102,1820,0,50587.0,1,2,1,3,4,2,1,1,0,1,0,0,0,0,0,2,28103.8888889,8,4,8,8_0,15000.0,0,15000.0,0,3,3,138.0,45.0,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 -7158,856,855,2,5,57,112,75,50,0,11178,0,180,0,0,1,5,0,2,1.5,1345.8392752999998,2601,0,38902.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,0,2,25934.6666667,8,4,8,8_0,20000.0,0,20000.0,0,5,4,0.0,0.0,0.0,0,1,1954.173215445699,1954.173215445699,0.0 +7158,856,855,2,5,57,112,75,50,0,11178,0,180,0,0,1,5,0,2,1.5,1345.8392753,2601,0,38902.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,0,2,25934.6666667,8,4,8,8_0,20000.0,0,20000.0,0,5,4,0.0,0.0,0.0,0,1,1954.173215445699,1954.173215445699,0.0 7159,857,856,2,4,43,112,47,42,0,11179,0,560,0,0,2,6,1,3,1.8,3878.83800642,2654,0,50844.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,0,2,28246.6666667,8,4,8,8_1,24000.0,0,24000.0,0,5,5,29.0,38.6666666667,3.3,0,1,2518.99192900755,2518.99192900755,0.0 7160,859,858,4,4,42,111,34,20,0,11182,0,300,0,0,2,6,3,5,2.4,1415.10897152,0,0,63400.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,26416.6666667,8,4,8,8_0,60000.0,0,60000.0,0,3,3,39.2,21.2,0.0,1,1,5862.519646337098,5862.519646337098,0.0 7161,862,861,4,4,32,111,37,20,0,11185,0,100,0,684,1,2,0,1,1.0,3816.13334959,520,0,28842.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,28842.0,8,4,8,8_0,17000.0,0,17000.0,0,4,4,0.0,20.0,3.3,1,1,1661.0472331288443,1661.0472331288443,0.0 @@ -7165,14 +7165,14 @@ 7163,883,882,2,4,30,111,68,50,0,11212,0,120,0,436,2,3,1,3,1.8,2598.90677669,0,0,47493.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,26385.0,8,4,8,8_0,15000.0,0,15000.0,0,4,4,133.0,46.6666666667,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 7164,887,886,0,14,39,111,67,50,0,11218,0,0,120,0,1,4,0,1,1.0,2503.67768291,0,0,24862.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,24862.0,8,4,8,8_0,10000.0,0,0.0,10000,5,10,27.5,45.0,3.3,0,1,977.0866077228495,0.0,977.0866077228495 7165,900,899,1,16,56,111,52,70,2,11235,0,100,0,356,2,4,0,2,1.5,1934.30364415,6240,5000,39530.0,1,3,6,5,3,2,1,0,0,0,1,0,0,0,0,2,26353.3333333,8,4,8,8_0,6000.0,0,6000.0,0,11,16,230.0,55.0,3.3,0,1,586.2519646337097,586.2519646337097,0.0 -7166,922,921,0,8,45,111,37,31,0,11267,0,120,0,0,2,4,2,4,2.3,1202.65493784,4160,0,61126.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,26576.521739099997,8,4,8,8_0,30000.0,0,30000.0,0,4,9,178.0,36.25,3.3,0,1,2931.259823168549,2931.259823168549,0.0 +7166,922,921,0,8,45,111,37,31,0,11267,0,120,0,0,2,4,2,4,2.3,1202.65493784,4160,0,61126.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,26576.5217391,8,4,8,8_0,30000.0,0,30000.0,0,4,9,178.0,36.25,3.3,0,1,2931.259823168549,2931.259823168549,0.0 7167,927,926,3,3,45,112,37,31,0,11276,0,50,0,0,2,4,2,4,2.1,2212.20940109,3120,0,55265.0,1,2,9,0,4,1,0,1,1,0,0,0,0,0,0,1,26316.6666667,8,4,8,8_1,46572.0,0,46572.0,0,1,3,111.0,73.3333333333,3.3,1,1,4888.103838239151,4888.103838239151,0.0 7168,935,934,13,13,50,112,54,50,0,11287,0,0,34,0,1,6,0,2,1.5,1374.66544,2708,0,38881.0,1,1,9,3,3,2,0,0,0,1,0,0,0,0,1,1,25920.6666667,8,4,8,8_0,25452.0,0,16353.0,9099,4,14,0.0,0.0,0.0,0,1,2486.8808339761968,1597.8297296091757,889.0511043670209 7169,949,948,1,1,32,111,47,31,1,11304,0,800,0,0,1,3,0,1,1.0,3238.72701429,0,21000,25763.0,1,2,9,7,1,1,1,1,0,0,0,1,0,0,0,1,25763.0,8,4,8,8_0,3000.0,0,3000.0,0,1,1,0.0,0.0,0.0,0,1,293.12598231685485,293.12598231685485,0.0 7170,953,952,0,10,26,111,47,20,0,11309,0,0,150,214,2,1,0,2,1.5,2435.029634,0,0,37404.0,1,3,7,5,3,1,1,1,0,0,1,0,0,1,1,0,24936.0,8,4,8,8_0,3300.0,0,0.0,3300,3,8,48.0,13.0,3.32,0,1,322.43858054854036,0.0,322.43858054854036 7171,965,964,0,8,26,111,37,10,2,11324,0,0,0,300,1,3,0,1,1.0,3715.67942245,0,14700,26725.0,1,4,9,7,1,1,0,0,0,0,0,1,0,0,1,0,26725.0,8,4,8,8_0,20460.0,0,0.0,20460,2,7,0.0,12.0,3.3,0,1,1999.1191994009503,0.0,1999.1191994009503 -7172,966,965,2,2,60,112,78,70,0,11326,0,0,0,0,0,4,0,2,1.5,3863.0615322999997,2652,0,37290.0,5,1,9,3,3,2,0,0,0,1,0,0,0,0,1,1,24860.0,8,4,8,8_0,18000.0,0,15000.0,3000,3,3,0.0,0.0,0.0,0,0,1758.7558939011292,1465.6299115842744,293.12598231685485 -7173,996,995,5,5,33,111,34,20,0,11367,0,0,0,430,2,3,2,4,2.1,1616.90346496,3773,0,53017.0,1,3,6,4,4,2,0,0,0,0,1,0,0,0,1,1,25246.190476199998,8,4,8,8_0,26000.0,0,18000.0,8000,6,6,136.1,25.0,3.31,0,1,2540.4251800794086,1758.7558939011292,781.6692861782797 +7172,966,965,2,2,60,112,78,70,0,11326,0,0,0,0,0,4,0,2,1.5,3863.0615323,2652,0,37290.0,5,1,9,3,3,2,0,0,0,1,0,0,0,0,1,1,24860.0,8,4,8,8_0,18000.0,0,15000.0,3000,3,3,0.0,0.0,0.0,0,0,1758.7558939011292,1465.6299115842744,293.12598231685485 +7173,996,995,5,5,33,111,34,20,0,11367,0,0,0,430,2,3,2,4,2.1,1616.90346496,3773,0,53017.0,1,3,6,4,4,2,0,0,0,0,1,0,0,0,1,1,25246.1904762,8,4,8,8_0,26000.0,0,18000.0,8000,6,6,136.1,25.0,3.31,0,1,2540.4251800794086,1758.7558939011292,781.6692861782797 7174,1008,1007,0,0,24,111,38,12,0,1138,0,0,0,725,1,1,0,1,1.0,3733.98687999,0,0,28913.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,28913.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7175,1022,1021,1,9,55,111,52,50,0,11394,0,0,200,0,1,3,0,1,1.0,2953.97391199,2346,0,25224.0,1,2,10,8,1,1,0,1,0,0,0,0,1,0,1,0,25224.0,8,4,8,8_0,15000.0,0,0.0,15000,8,10,78.0,80.0,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 7176,1029,1028,1,1,70,111,34,10,1,11402,0,0,0,0,1,5,0,2,1.5,1208.67087236,2710,16000,43477.0,1,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,28984.6666667,8,4,8,8_0,6859.0,0,6859.0,0,1,1,0.0,0.0,0.0,0,1,670.1837042371026,670.1837042371026,0.0 @@ -7184,12 +7184,12 @@ 7182,1071,1070,5,6,68,111,74,71,0,11464,0,0,0,0,0,7,0,2,1.5,1275.40006484,2497,0,37609.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,25072.6666667,8,4,8,8_0,15000.0,0,15000.0,0,6,6,0.0,0.0,0.0,0,0,1465.6299115842744,1465.6299115842744,0.0 7183,1073,1072,0,0,27,111,55,20,0,11466,0,0,0,356,2,3,1,3,1.8,3353.93014382,0,0,47028.0,1,3,9,7,4,0,0,0,0,0,0,1,0,1,0,0,26126.6666667,8,4,8,8_0,0.0,0,0.0,0,0,0,53.0,0.0,0.0,0,0,0.0,0.0,0.0 7184,1086,1085,6,11,44,112,34,10,0,11486,0,600,0,0,3,6,3,5,3.0,2546.73134337,1560,0,75346.0,1,1,9,1,4,4,0,0,0,1,0,0,0,0,1,3,25115.3333333,8,4,8,8_0,9287.0,0,9287.0,0,0,10,255.6,41.3333333333,3.3,0,1,907.4203325922105,907.4203325922105,0.0 -7185,1087,1086,11,11,63,300,75,20,0,11487,0,0,0,0,0,4,0,1,1.0,2338.7031588000004,0,0,26931.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,26931.0,8,4,8,8_1,16337.0,0,16337.0,0,6,12,0.0,0.0,0.0,0,0,1714.6987976748476,1714.6987976748476,0.0 +7185,1087,1086,11,11,63,300,75,20,0,11487,0,0,0,0,0,4,0,1,1.0,2338.7031588,0,0,26931.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,26931.0,8,4,8,8_1,16337.0,0,16337.0,0,6,12,0.0,0.0,0.0,0,0,1714.6987976748476,1714.6987976748476,0.0 7186,1107,1106,8,13,62,112,75,50,0,11512,0,0,0,0,0,4,0,2,1.5,2009.24532405,837,0,41360.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,1,1,27573.3333333,8,4,8,8_1,13500.0,0,10000.0,3500,13,13,0.0,0.0,0.0,0,0,1416.932960066747,1049.5799704198125,367.35298964693436 7187,1108,1107,0,14,47,112,52,71,0,11513,0,50,300,0,2,4,0,2,1.5,6265.32008299,1300,0,40076.0,1,2,8,3,3,2,0,1,0,1,0,0,0,0,1,1,26717.3333333,8,4,8,8_0,70000.0,0,60000.0,10000,14,14,0.0,5.0,0.0,0,1,6839.606254059947,5862.519646337098,977.0866077228495 7188,1138,1137,0,1,34,111,38,10,0,11552,0,0,0,0,2,3,1,3,1.8,3049.63026362,0,0,49488.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,27493.3333333,8,4,8,8_0,12000.0,0,0.0,12000,4,4,92.0,60.0,5.56,0,0,1172.5039292674194,0.0,1172.5039292674194 7189,1140,1139,3,3,61,112,74,10,0,11555,0,0,0,0,1,6,1,3,2.0,1752.89988169,6660,0,56555.0,5,1,6,0,4,2,0,0,1,0,0,0,0,0,2,0,28277.5,8,4,8,8_1,1000.0,0,0.0,1000,6,6,45.0,10.0,0.0,0,1,104.95799704198124,0.0,104.95799704198124 -7190,1145,1144,10,11,61,111,53,70,0,11563,0,0,0,0,2,3,0,2,1.5,2828.5604344999997,2124,0,42326.0,1,4,9,7,3,1,0,0,0,0,0,1,0,0,1,0,28217.3333333,8,4,8,8_0,9500.0,0,0.0,9500,11,11,0.0,25.0,2.2,0,0,928.2322773367072,0.0,928.2322773367072 +7190,1145,1144,10,11,61,111,53,70,0,11563,0,0,0,0,2,3,0,2,1.5,2828.5604345,2124,0,42326.0,1,4,9,7,3,1,0,0,0,0,0,1,0,0,1,0,28217.3333333,8,4,8,8_0,9500.0,0,0.0,9500,11,11,0.0,25.0,2.2,0,0,928.2322773367072,0.0,928.2322773367072 7191,1161,1160,10,10,55,111,56,60,0,11585,0,0,0,0,2,2,0,2,1.5,3000.78723138,0,0,39000.0,1,4,10,8,3,1,0,0,0,0,0,0,1,0,1,0,26000.0,8,4,8,8_0,9416.0,0,0.0,9416,7,12,124.5,75.0,3.3,0,1,920.0247498318352,0.0,920.0247498318352 7192,1167,1166,10,10,73,112,77,41,0,11594,0,0,0,0,0,4,0,1,1.0,2814.21519985,2340,0,25281.0,5,4,9,3,1,1,0,0,0,1,0,0,0,0,1,0,25281.0,8,4,8,8_0,8000.0,0,0.0,8000,8,9,0.0,0.0,0.0,0,0,781.6692861782797,0.0,781.6692861782797 7193,1174,1173,1,4,45,111,48,50,0,11607,0,199998,0,0,3,4,1,3,2.0,2356.86740557,0,0,53371.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,26685.5,8,4,8,8_0,44467.0,0,44467.0,0,6,6,301.0,50.0,3.3,0,1,4344.811018561195,4344.811018561195,0.0 @@ -7197,7 +7197,7 @@ 7195,1212,1211,6,6,36,112,38,10,0,11659,0,150,0,0,2,5,2,4,2.1,2073.38689597,0,0,56737.0,1,2,9,0,4,2,1,1,1,0,0,0,0,0,0,2,27017.6190476,8,4,8,8_1,45000.0,0,45000.0,0,4,5,337.5,38.0,3.31,0,1,4723.1098668891555,4723.1098668891555,0.0 7196,1239,1238,1,4,64,112,75,50,2,1170,0,0,0,0,0,4,0,1,1.0,1834.71035624,3120,11119,25282.0,5,1,6,0,1,1,0,0,1,0,0,0,0,0,1,0,25282.0,8,4,8,8_1,6000.0,0,0.0,6000,4,5,0.0,0.0,0.0,0,0,629.7479822518875,0.0,629.7479822518875 7197,1243,1242,5,5,43,111,45,30,0,11703,0,60,0,0,2,5,2,4,2.1,2882.72154612,0,0,60526.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,28821.9047619,8,4,8,8_0,18625.0,0,18625.0,0,2,6,37.9,38.0,3.3,0,0,1819.8238068838073,1819.8238068838073,0.0 -7198,1248,1247,1,4,31,112,53,44,0,11709,0,120,0,0,2,4,1,3,1.8,2159.80527228,5461,0,49721.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,0,2,27622.777777799998,8,4,8,8_1,45000.0,0,45000.0,0,3,3,506.8,43.3333333333,3.3,1,1,4723.1098668891555,4723.1098668891555,0.0 +7198,1248,1247,1,4,31,112,53,44,0,11709,0,120,0,0,2,4,1,3,1.8,2159.80527228,5461,0,49721.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,0,2,27622.7777778,8,4,8,8_1,45000.0,0,45000.0,0,3,3,506.8,43.3333333333,3.3,1,1,4723.1098668891555,4723.1098668891555,0.0 7199,1260,1259,13,13,46,111,48,31,0,11726,0,0,360,0,2,4,2,4,2.5,2859.12341581,3054,0,67256.0,1,4,9,7,4,3,0,1,0,0,0,1,0,0,3,0,26902.4,8,4,8,8_0,5000.0,0,0.0,5000,7,11,160.2,53.3333333333,3.3,0,1,488.54330386142476,0.0,488.54330386142476 7200,1265,1264,1,1,60,111,75,50,1,11737,0,0,40,0,1,4,0,2,1.5,2255.79688048,0,9000,38185.0,5,2,9,7,3,3,0,0,0,0,0,1,0,0,2,1,25456.6666667,8,4,8,8_0,2874.0,0,0.0,2874,1,1,0.0,0.0,0.0,0,1,280.814691059547,0.0,280.814691059547 7201,1277,1276,6,6,53,120,42,10,0,11753,0,0,0,0,1,5,0,1,1.0,3168.63368717,0,0,26029.0,1,4,0,3,1,1,0,0,0,1,0,0,0,0,0,1,26029.0,8,4,8,8_0,5000.0,0,5000.0,0,6,6,0.0,10.0,3.3,0,1,488.54330386142476,488.54330386142476,0.0 @@ -7225,10 +7225,10 @@ 7223,1497,1496,4,4,82,112,77,71,0,12054,0,0,0,0,0,5,0,1,1.0,3478.21926038,0,0,25820.0,5,1,9,0,1,1,0,0,1,0,0,0,0,0,1,0,25820.0,8,4,8,8_1,3000.0,0,0.0,3000,5,5,0.0,0.0,0.0,0,0,314.87399112594375,0.0,314.87399112594375 7224,1504,1503,13,26,76,400,74,70,0,12062,0,0,0,0,0,6,0,2,1.5,1340.01099486,0,0,40523.0,5,4,0,0,3,2,0,0,1,0,0,0,0,0,1,1,27015.3333333,8,4,8,8_1,19000.0,0,15000.0,4000,14,32,0.0,0.0,0.0,0,0,1994.201943797644,1574.3699556297188,419.831988167925 7225,1516,1515,25,25,55,400,64,50,0,12077,0,494,0,0,2,5,0,2,1.5,1381.38914134,2934,0,39734.0,1,1,0,0,3,3,0,0,1,0,0,0,0,0,0,3,26489.3333333,8,4,8,8_1,53445.0,0,53445.0,0,2,10,73.5,15.0,0.0,0,1,5609.480151908688,5609.480151908688,0.0 -7226,1534,1533,1,1,25,111,33,12,1,12100,0,0,0,590,2,1,0,2,1.5,2780.6238043000003,1924,12000,39603.0,1,3,10,8,3,1,1,0,0,0,0,0,1,0,0,1,26402.0,8,4,8,8_0,30000.0,0,30000.0,0,1,1,0.0,0.0,0.0,1,0,2931.259823168549,2931.259823168549,0.0 +7226,1534,1533,1,1,25,111,33,12,1,12100,0,0,0,590,2,1,0,2,1.5,2780.6238043,1924,12000,39603.0,1,3,10,8,3,1,1,0,0,0,0,0,1,0,0,1,26402.0,8,4,8,8_0,30000.0,0,30000.0,0,1,1,0.0,0.0,0.0,1,0,2931.259823168549,2931.259823168549,0.0 7227,1546,1545,1,1,66,111,74,60,2,12118,0,0,0,0,0,4,0,1,1.0,3057.26046221,343,16420,25125.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,0,1,25125.0,8,4,8,8_0,8000.0,0,8000.0,0,2,2,0.0,0.0,0.0,0,0,781.6692861782797,781.6692861782797,0.0 -7228,1574,1573,0,11,35,112,38,12,0,1216,0,140,100,0,2,6,2,4,2.1,1603.91088144,0,0,58087.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,1,1,27660.476190499998,8,4,8,8_1,30000.0,0,22000.0,8000,6,9,172.5,38.5,3.3,1,1,3148.7399112594376,2309.0759349235873,839.66397633585 -7229,1594,1593,19,19,45,111,34,20,0,1219,0,0,120,0,2,6,2,4,2.3,1537.14731002,0,0,60055.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,2,0,26110.869565200002,8,4,8,8_0,2000.0,0,0.0,2000,5,16,51.5,15.0,0.0,0,1,195.41732154456992,0.0,195.41732154456992 +7228,1574,1573,0,11,35,112,38,12,0,1216,0,140,100,0,2,6,2,4,2.1,1603.91088144,0,0,58087.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,1,1,27660.4761905,8,4,8,8_1,30000.0,0,22000.0,8000,6,9,172.5,38.5,3.3,1,1,3148.7399112594376,2309.0759349235873,839.66397633585 +7229,1594,1593,19,19,45,111,34,20,0,1219,0,0,120,0,2,6,2,4,2.3,1537.14731002,0,0,60055.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,2,0,26110.8695652,8,4,8,8_0,2000.0,0,0.0,2000,5,16,51.5,15.0,0.0,0,1,195.41732154456992,0.0,195.41732154456992 7230,1601,1600,2,11,29,112,62,43,0,122,0,550,0,0,2,4,0,2,1.5,3619.43616672,2603,0,40058.0,1,3,7,0,3,2,0,1,1,0,0,0,0,1,0,2,26705.3333333,8,4,8,8_1,27000.0,0,27000.0,0,8,11,143.0,25.0,3.3,0,1,2833.865920133494,2833.865920133494,0.0 7231,1605,1604,9,12,63,111,74,33,0,12208,0,0,0,0,0,6,0,2,1.5,3347.28959329,0,0,38183.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,1,1,25455.3333333,8,4,8,8_0,25769.0,0,16353.0,9416,4,12,0.0,0.0,0.0,0,0,2517.854479441011,1597.8297296091757,920.0247498318352 7232,1609,1608,1,12,38,111,22,42,0,12212,0,0,0,0,2,5,1,3,2.0,4787.60646133,2600,0,49777.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,0,2,24888.5,8,4,8,8_0,15000.0,0,15000.0,0,9,9,184.3,46.6666666667,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 @@ -7240,10 +7240,10 @@ 7238,1671,1670,5,11,26,111,21,71,0,12306,0,99999,0,295,2,4,2,4,2.1,4156.98276296,8996,0,53530.0,1,3,9,7,4,2,0,1,0,0,0,1,0,1,0,2,25490.4761905,8,4,8,8_0,17102.0,0,17102.0,0,4,8,0.0,1.5,3.3,1,1,1671.0135165276172,1671.0135165276172,0.0 7239,1676,1675,4,6,49,112,62,50,0,12314,0,0,0,0,1,4,0,1,1.0,2696.58721426,2600,0,28980.0,1,2,9,0,1,3,0,0,1,0,0,0,0,0,0,3,28980.0,8,4,8,8_1,30000.0,0,30000.0,0,3,3,0.0,0.0,0.0,0,1,3148.7399112594376,3148.7399112594376,0.0 7240,1685,1684,6,7,37,300,63,50,0,12325,0,1170,0,0,2,5,2,4,2.1,1854.66079733,5175,0,55320.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,26342.8571429,8,4,8,8_1,7144.0,0,7144.0,0,1,7,266.4,45.0,3.3,0,1,749.8199308679141,749.8199308679141,0.0 -7241,1694,1693,4,4,44,120,54,71,0,1234,0,500,300,0,2,4,2,4,2.1,7884.6473367,3388,0,52487.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,1,1,24993.809523800002,8,4,8,8_1,50672.0,0,15672.0,35000,5,5,178.0,51.6666666667,3.3,1,0,5318.4316261112735,1644.9017296419302,3673.529896469344 +7241,1694,1693,4,4,44,120,54,71,0,1234,0,500,300,0,2,4,2,4,2.1,7884.6473367,3388,0,52487.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,1,1,24993.8095238,8,4,8,8_1,50672.0,0,15672.0,35000,5,5,178.0,51.6666666667,3.3,1,0,5318.4316261112735,1644.9017296419302,3673.529896469344 7242,1703,1702,7,7,47,400,43,10,0,12351,0,290,0,0,2,6,2,4,2.3,3665.45980661,0,0,60132.0,1,1,0,0,4,2,1,1,1,0,0,0,0,0,0,2,26144.3478261,8,4,8,8_1,4000.0,0,4000.0,0,4,10,25.0,12.25,2.24,0,1,419.831988167925,419.831988167925,0.0 7243,1708,1707,11,11,36,112,38,12,0,12356,0,190,180,0,2,5,2,4,2.1,1812.04584666,3432,0,55956.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,26645.7142857,8,4,8,8_1,30000.0,0,22000.0,8000,6,9,172.5,38.5,3.3,1,1,3148.7399112594376,2309.0759349235873,839.66397633585 -7244,1751,1750,11,11,38,112,54,71,0,12414,0,220,30,0,2,4,1,3,1.8,2297.75634117,2600,0,46760.0,1,2,10,1,4,2,0,1,0,1,0,0,0,0,1,1,25977.777777799998,8,4,8,8_0,26500.0,0,20000.0,6500,6,6,80.8,34.6666666667,3.3,0,1,2589.279510465551,1954.173215445699,635.1062950198522 +7244,1751,1750,11,11,38,112,54,71,0,12414,0,220,30,0,2,4,1,3,1.8,2297.75634117,2600,0,46760.0,1,2,10,1,4,2,0,1,0,1,0,0,0,0,1,1,25977.7777778,8,4,8,8_0,26500.0,0,20000.0,6500,6,6,80.8,34.6666666667,3.3,0,1,2589.279510465551,1954.173215445699,635.1062950198522 7245,1754,1753,2,10,53,112,47,42,0,12417,0,100099,0,0,2,4,1,3,2.0,2032.36489954,0,0,57537.0,1,2,10,4,4,2,0,1,0,0,1,0,0,0,0,2,28768.5,8,4,8,8_0,25000.0,0,25000.0,0,3,10,17.0,30.0,3.3,0,1,2442.7165193071237,2442.7165193071237,0.0 7246,1767,1766,4,4,28,112,47,41,0,12437,0,260,0,0,2,2,0,2,1.5,3749.53981453,3237,0,40085.0,1,4,8,0,3,2,0,1,1,0,0,0,0,0,0,2,26723.3333333,8,4,8,8_1,7716.0,0,7716.0,0,2,2,0.0,28.0,3.3,0,1,809.8559051759273,809.8559051759273,0.0 7247,1797,1796,5,5,66,111,75,50,0,12472,0,0,0,0,0,3,0,2,1.5,1437.08046126,0,0,41780.0,5,4,7,5,3,2,0,0,0,0,1,0,0,0,1,1,27853.3333333,8,4,8,8_0,15500.0,0,14500.0,1000,3,3,0.0,0.0,0.0,0,0,1514.4842419704166,1416.775581198132,97.70866077228496 @@ -7251,18 +7251,18 @@ 7249,1804,1803,0,3,30,112,31,10,0,12483,0,1100,0,0,1,2,0,1,1.0,5764.43358005,0,0,25436.0,1,2,8,0,1,1,1,1,1,0,0,0,0,0,0,1,25436.0,8,4,8,8_1,13287.0,0,13287.0,0,1,2,456.4,180.0,3.3,0,1,1394.5769066968048,1394.5769066968048,0.0 7250,1805,1804,12,12,62,112,74,30,0,12484,0,0,0,0,0,8,0,2,1.5,2635.07715017,1041,0,42486.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,2,0,28324.0,8,4,8,8_1,2000.0,0,0.0,2000,13,13,0.0,0.0,0.0,0,0,209.9159940839625,0.0,209.9159940839625 7251,1812,1811,5,5,64,111,74,60,0,12492,0,0,0,0,0,4,2,4,2.5,2107.06585172,1711,0,70499.0,5,1,9,7,4,4,0,0,0,0,0,1,0,0,3,1,28199.6,8,4,8,8_0,10000.0,0,4000.0,6000,2,8,0.0,0.0,0.0,0,0,977.0866077228495,390.83464308913983,586.2519646337097 -7252,1820,1819,9,9,36,112,33,20,0,12501,0,2000,0,0,2,6,2,4,2.1,2005.16639762,6372,0,58895.0,1,2,8,0,4,2,1,1,1,0,0,0,0,0,1,1,28045.238095200002,8,4,8,8_1,30000.0,0,22000.0,8000,6,9,172.5,38.5,3.3,1,1,3148.7399112594376,2309.0759349235873,839.66397633585 +7252,1820,1819,9,9,36,112,33,20,0,12501,0,2000,0,0,2,6,2,4,2.1,2005.16639762,6372,0,58895.0,1,2,8,0,4,2,1,1,1,0,0,0,0,0,1,1,28045.2380952,8,4,8,8_1,30000.0,0,22000.0,8000,6,9,172.5,38.5,3.3,1,1,3148.7399112594376,2309.0759349235873,839.66397633585 7253,1830,1829,1,1,60,111,72,10,0,12521,0,0,0,0,0,5,0,2,1.5,2144.86603026,0,0,38351.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,25567.3333333,8,4,8,8_0,18000.0,0,15000.0,3000,3,3,0.0,0.0,0.0,0,0,1758.7558939011292,1465.6299115842744,293.12598231685485 7254,1833,1832,2,2,42,112,34,10,0,12525,0,800,0,0,1,4,2,3,1.8,2320.21426045,2756,0,51542.0,1,2,8,0,2,1,0,1,1,0,0,0,0,0,0,1,28634.4444444,8,4,8,8_1,15000.0,0,15000.0,0,6,7,254.5,63.3333333333,5.52,0,0,1574.3699556297188,1574.3699556297188,0.0 -7255,1860,1859,5,20,44,112,62,44,0,12559,0,0,0,0,2,8,1,3,1.8,2320.32426062,6032,0,48452.0,1,1,5,0,4,2,0,0,1,0,0,0,0,0,0,2,26917.777777799998,8,4,8,8_1,20000.0,0,20000.0,0,8,18,156.5,43.3333333333,3.3,0,1,2099.159940839625,2099.159940839625,0.0 -7256,1875,1874,1,13,30,111,22,71,2,12588,0,0,0,0,2,3,1,3,1.8,4052.08980591,4680,500,51493.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,28607.222222200002,8,4,8,8_0,26000.0,0,20000.0,6000,7,7,0.0,20.0,3.3,0,1,2540.4251800794086,1954.173215445699,586.2519646337097 +7255,1860,1859,5,20,44,112,62,44,0,12559,0,0,0,0,2,8,1,3,1.8,2320.32426062,6032,0,48452.0,1,1,5,0,4,2,0,0,1,0,0,0,0,0,0,2,26917.7777778,8,4,8,8_1,20000.0,0,20000.0,0,8,18,156.5,43.3333333333,3.3,0,1,2099.159940839625,2099.159940839625,0.0 +7256,1875,1874,1,13,30,111,22,71,2,12588,0,0,0,0,2,3,1,3,1.8,4052.08980591,4680,500,51493.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,28607.2222222,8,4,8,8_0,26000.0,0,20000.0,6000,7,7,0.0,20.0,3.3,0,1,2540.4251800794086,1954.173215445699,586.2519646337097 7257,1879,1878,3,3,45,111,21,71,0,12591,0,0,0,0,2,5,2,4,2.5,2844.55019405,0,0,72135.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,28854.0,8,4,8,8_0,20000.0,0,20000.0,0,3,3,52.8,4.25,3.3,0,1,1954.173215445699,1954.173215445699,0.0 -7258,1888,1887,6,6,81,112,74,41,0,12601,0,0,0,0,0,6,0,2,1.5,2840.6076040999997,0,0,41174.0,5,1,10,4,3,1,0,0,0,0,1,0,0,0,1,0,27449.3333333,8,4,8,8_0,5500.0,0,0.0,5500,5,5,0.0,0.0,0.0,0,0,537.3976342475672,0.0,537.3976342475672 +7258,1888,1887,6,6,81,112,74,41,0,12601,0,0,0,0,0,6,0,2,1.5,2840.6076041,0,0,41174.0,5,1,10,4,3,1,0,0,0,0,1,0,0,0,1,0,27449.3333333,8,4,8,8_0,5500.0,0,0.0,5500,5,5,0.0,0.0,0.0,0,0,537.3976342475672,0.0,537.3976342475672 7259,1910,1909,1,10,39,111,45,30,0,12630,0,20,80,268,2,3,1,3,1.8,4038.95629043,0,0,47451.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,1,1,26361.6666667,8,4,8,8_0,26500.0,0,20000.0,6500,6,6,80.8,34.6666666667,3.3,0,1,2589.279510465551,1954.173215445699,635.1062950198522 7260,1912,1911,15,18,81,120,74,41,0,12632,0,0,0,0,0,5,0,2,1.5,1905.40503813,2964,0,42611.0,5,1,0,1,3,2,0,0,0,1,0,0,0,0,1,1,28407.3333333,8,4,8,8_0,4500.0,0,0.0,4500,10,19,0.0,0.0,0.0,0,0,439.6889734752823,0.0,439.6889734752823 7261,1915,1914,1,13,24,300,63,43,2,12637,0,124,0,402,2,4,1,3,1.8,2362.92553229,7380,3000,47019.0,1,3,0,1,4,2,0,1,0,1,0,0,0,0,0,2,26121.6666667,8,4,8,8_0,20000.0,0,20000.0,0,3,10,157.0,26.6666666667,3.3,0,1,1954.173215445699,1954.173215445699,0.0 7262,1916,1915,0,0,76,111,74,10,0,12638,0,0,0,800,0,3,0,2,1.5,1594.80478555,0,0,38061.0,5,3,8,7,3,0,0,0,0,0,0,1,0,0,0,0,25374.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -7263,1944,1943,17,17,46,400,62,71,0,12672,0,0,90,0,4,6,2,4,2.5,2057.3884052000003,8843,0,69458.0,1,1,0,0,4,4,0,0,1,0,0,0,0,0,3,1,27783.2,8,4,8,8_1,19460.0,0,10000.0,9460,2,15,575.6,58.25,3.3,0,1,2042.4826224369551,1049.5799704198125,992.9026520171426 +7263,1944,1943,17,17,46,400,62,71,0,12672,0,0,90,0,4,6,2,4,2.5,2057.3884052,8843,0,69458.0,1,1,0,0,4,4,0,0,1,0,0,0,0,0,3,1,27783.2,8,4,8,8_1,19460.0,0,10000.0,9460,2,15,575.6,58.25,3.3,0,1,2042.4826224369551,1049.5799704198125,992.9026520171426 7264,1953,1952,6,6,64,111,75,50,0,12686,0,0,0,0,0,4,0,2,1.5,1790.0693529,0,0,42067.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,28044.6666667,8,4,8,8_0,25000.0,0,15000.0,10000,5,6,0.0,0.0,0.0,0,0,2442.7165193071237,1465.6299115842744,977.0866077228495 7265,1955,1954,4,7,34,111,37,10,0,1269,0,0,0,0,2,4,1,3,1.8,2185.53696045,2474,0,47898.0,1,2,9,7,4,1,1,0,0,0,0,1,0,0,1,0,26610.0,8,4,8,8_0,13333.0,0,0.0,13333,4,9,0.0,20.0,1.1,0,0,1302.7495740768754,0.0,1302.7495740768754 7266,1978,1977,17,17,69,111,75,50,0,12716,0,0,0,0,0,2,0,1,1.0,4101.39684209,0,0,27893.0,5,3,6,5,1,1,0,0,0,0,1,0,0,0,1,0,27893.0,8,4,8,8_0,1000.0,0,0.0,1000,5,18,0.0,0.0,0.0,0,0,97.70866077228496,0.0,97.70866077228496 @@ -7270,7 +7270,7 @@ 7268,1995,1994,8,9,44,111,46,12,0,12736,0,60,0,0,2,5,3,5,2.6,2240.63557108,4160,0,71548.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,27518.4615385,8,4,8,8_0,5500.0,0,0.0,5500,9,9,38.5,63.3333333333,5.56,0,0,537.3976342475672,0.0,537.3976342475672 7269,2007,2006,3,9,34,111,62,31,0,12752,0,840,0,0,2,7,3,5,2.4,1201.80102147,2108,0,61747.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,0,2,25727.9166667,8,4,8,8_0,18625.0,0,18625.0,0,2,8,135.6,18.0,3.31,0,1,1819.8238068838073,1819.8238068838073,0.0 7270,2016,2015,7,7,54,120,62,71,0,12774,0,800,0,0,1,5,0,2,1.5,7312.15317388,3211,0,43021.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,28680.6666667,8,4,8,8_1,10000.0,0,10000.0,0,7,7,0.0,0.0,0.0,0,1,1049.5799704198125,1049.5799704198125,0.0 -7271,2021,2020,5,7,33,111,48,31,0,1278,0,200,0,0,1,2,0,1,1.0,4200.6705471000005,0,0,28680.0,1,2,8,7,1,1,0,1,0,0,0,1,0,0,0,1,28680.0,8,4,8,8_0,12000.0,0,12000.0,0,6,6,0.0,0.0,0.0,0,1,1172.5039292674194,1172.5039292674194,0.0 +7271,2021,2020,5,7,33,111,48,31,0,1278,0,200,0,0,1,2,0,1,1.0,4200.6705471,0,0,28680.0,1,2,8,7,1,1,0,1,0,0,0,1,0,0,0,1,28680.0,8,4,8,8_0,12000.0,0,12000.0,0,6,6,0.0,0.0,0.0,0,1,1172.5039292674194,1172.5039292674194,0.0 7272,2036,2035,4,4,58,111,33,10,0,128,0,0,0,0,1,6,3,5,2.4,1655.84567546,2242,0,60924.0,1,1,5,4,4,1,0,0,0,0,1,0,0,0,1,0,25385.0,8,4,8,8_0,25000.0,0,25000.0,0,5,7,0.0,0.0,0.0,0,0,2442.7165193071237,2442.7165193071237,0.0 7273,2049,2048,6,6,60,211,74,50,0,12815,0,0,0,0,0,5,0,2,1.5,1725.33562411,2496,0,38598.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,0,2,25732.0,8,4,8,8_0,27000.0,0,27000.0,0,1,6,0.0,0.0,0.0,0,0,2638.133840851694,2638.133840851694,0.0 7274,2052,2051,6,16,53,300,54,60,0,12819,0,160,0,0,3,6,1,3,2.0,1093.23045993,2080,0,50703.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,0,3,25351.5,8,4,8,8_1,27343.0,0,27343.0,0,5,16,78.5,23.6666666667,3.3,0,1,2869.866513118893,2869.866513118893,0.0 @@ -7279,16 +7279,16 @@ 7277,2081,2080,5,10,61,111,75,60,0,12854,0,0,0,484,0,5,0,1,1.0,2110.88629452,416,0,27997.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,0,1,27997.0,8,4,8,8_0,12000.0,0,12000.0,0,3,9,0.0,0.0,0.0,0,0,1172.5039292674194,1172.5039292674194,0.0 7278,2083,2082,11,11,54,111,46,60,0,12856,0,0,32,0,1,5,0,1,1.0,2244.33206936,2860,0,25589.0,1,1,6,4,1,1,0,1,0,0,1,0,0,0,1,0,25589.0,8,4,8,8_0,5000.0,0,0.0,5000,1,10,0.0,20.0,1.1,0,0,488.54330386142476,0.0,488.54330386142476 7279,2093,2092,4,4,49,111,43,20,0,12868,0,0,100,0,1,4,1,2,1.5,2764.48818487,2080,0,43184.0,1,1,10,8,2,1,0,1,0,0,0,0,1,0,1,0,28789.3333333,8,4,8,8_0,10000.0,0,0.0,10000,6,6,0.0,20.0,3.3,0,1,977.0866077228495,0.0,977.0866077228495 -7280,2107,2106,14,14,53,112,52,60,0,12887,0,0,100,0,1,5,0,1,1.0,1907.0332675999998,3510,0,26728.0,1,1,7,1,1,1,0,1,0,1,0,0,0,0,1,0,26728.0,8,4,8,8_0,12000.0,0,0.0,12000,14,14,0.0,18.0,3.3,1,0,1172.5039292674194,0.0,1172.5039292674194 -7281,2112,2111,10,11,48,111,47,12,0,12899,0,0,30,0,2,6,3,5,2.8,1755.2838471999999,0,0,80950.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,1,1,28910.7142857,8,4,8,8_0,25000.0,0,25000.0,0,4,10,0.0,20.0,3.31,0,1,2442.7165193071237,2442.7165193071237,0.0 +7280,2107,2106,14,14,53,112,52,60,0,12887,0,0,100,0,1,5,0,1,1.0,1907.0332676,3510,0,26728.0,1,1,7,1,1,1,0,1,0,1,0,0,0,0,1,0,26728.0,8,4,8,8_0,12000.0,0,0.0,12000,14,14,0.0,18.0,3.3,1,0,1172.5039292674194,0.0,1172.5039292674194 +7281,2112,2111,10,11,48,111,47,12,0,12899,0,0,30,0,2,6,3,5,2.8,1755.2838472,0,0,80950.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,1,1,28910.7142857,8,4,8,8_0,25000.0,0,25000.0,0,4,10,0.0,20.0,3.31,0,1,2442.7165193071237,2442.7165193071237,0.0 7282,2133,2132,0,1,35,111,52,50,1,12922,0,600,0,0,1,4,0,2,1.5,2440.46547003,4161,9369,39865.0,1,3,7,6,5,2,0,1,0,0,1,0,0,0,0,2,26576.6666667,8,4,8,8_0,31000.0,0,31000.0,0,2,2,0.0,85.0,3.33,0,1,3028.9684839408333,3028.9684839408333,0.0 7283,2148,2147,8,9,58,112,62,50,0,12940,0,300,0,0,1,5,0,1,1.0,1644.75438641,4528,0,24913.0,1,1,7,1,1,2,0,1,0,1,0,0,0,0,0,2,24913.0,8,4,8,8_0,12000.0,0,12000.0,0,9,9,0.0,0.0,0.0,0,1,1172.5039292674194,1172.5039292674194,0.0 -7284,2186,2185,9,9,52,112,47,43,0,12996,0,300,150,0,2,5,2,4,2.3,1508.15797029,4022,0,65319.0,1,1,9,1,4,2,0,1,0,1,0,0,0,0,1,1,28399.565217400002,8,4,8,8_0,19000.0,0,16000.0,3000,8,8,0.0,15.0,0.0,0,1,1856.4645546734143,1563.3385723565593,293.12598231685485 +7284,2186,2185,9,9,52,112,47,43,0,12996,0,300,150,0,2,5,2,4,2.3,1508.15797029,4022,0,65319.0,1,1,9,1,4,2,0,1,0,1,0,0,0,0,1,1,28399.5652174,8,4,8,8_0,19000.0,0,16000.0,3000,8,8,0.0,15.0,0.0,0,1,1856.4645546734143,1563.3385723565593,293.12598231685485 7285,2209,2208,5,5,37,112,43,10,0,13027,0,1250,0,0,2,7,2,4,2.1,1612.0322295,6519,0,56570.0,1,2,7,0,4,2,1,1,1,0,0,0,0,0,0,2,26938.0952381,8,4,8,8_1,45000.0,0,45000.0,0,4,5,337.5,38.0,3.31,0,1,4723.1098668891555,4723.1098668891555,0.0 7286,2215,2214,2,4,30,112,47,20,0,13035,0,330,0,0,2,3,0,2,1.5,2835.97081893,1566,0,37977.0,1,2,9,1,3,2,0,1,0,1,0,0,0,0,0,2,25318.0,8,4,8,8_0,30000.0,0,30000.0,0,3,4,137.9,40.0,3.3,0,1,2931.259823168549,2931.259823168549,0.0 7287,2236,2235,6,16,55,111,54,50,0,1306,0,374,0,500,2,1,0,2,1.5,2824.42215703,2132,0,37620.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,0,2,25080.0,8,4,8,8_0,6000.0,0,6000.0,0,11,16,230.0,55.0,3.3,0,1,586.2519646337097,586.2519646337097,0.0 7288,2270,2269,19,19,72,112,77,70,0,13109,0,0,0,0,0,4,0,1,1.0,2680.57168742,833,0,28912.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,28912.0,8,4,8,8_1,1000.0,0,0.0,1000,17,17,0.0,0.0,0.0,0,0,104.95799704198124,0.0,104.95799704198124 -7289,2288,2287,7,11,41,112,67,50,0,13140,0,400,0,0,2,4,0,2,1.5,1661.9638215999998,2340,0,38235.0,1,2,6,0,3,2,0,1,1,0,0,0,0,0,0,2,25490.0,8,4,8,8_1,15000.0,0,15000.0,0,2,11,20.0,15.0,3.3,0,1,1574.3699556297188,1574.3699556297188,0.0 +7289,2288,2287,7,11,41,112,67,50,0,13140,0,400,0,0,2,4,0,2,1.5,1661.9638216,2340,0,38235.0,1,2,6,0,3,2,0,1,1,0,0,0,0,0,0,2,25490.0,8,4,8,8_1,15000.0,0,15000.0,0,2,11,20.0,15.0,3.3,0,1,1574.3699556297188,1574.3699556297188,0.0 7290,2293,2292,6,6,52,112,52,33,0,13153,0,100139,0,0,2,4,0,2,1.5,1503.10265031,0,0,38208.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,0,2,25472.0,8,4,8,8_1,34962.0,0,34962.0,0,6,6,61.0,12.0,3.3,0,1,3669.5414925817486,3669.5414925817486,0.0 7291,2294,2293,6,6,58,111,62,71,0,13154,0,99999,0,0,2,4,1,3,2.0,2334.97091353,2837,0,58001.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,0,2,29000.5,8,4,8,8_0,22000.0,0,22000.0,0,3,4,0.0,25.0,0.0,1,1,2149.590536990269,2149.590536990269,0.0 7292,2297,2296,0,0,63,111,78,50,0,13159,0,0,0,430,0,2,0,2,1.5,3882.15823896,0,0,38770.0,5,3,8,6,3,0,0,0,0,0,1,0,0,0,0,0,25846.6666667,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -7307,13 +7307,13 @@ 7305,2394,2393,9,19,55,111,48,12,0,1329,0,0,50,300,1,2,0,2,1.5,1970.91819209,1300,0,42540.0,1,3,8,7,3,1,0,1,0,0,0,1,0,0,1,0,28360.0,8,4,8,8_0,15000.0,0,0.0,15000,4,13,37.5,75.0,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 7306,2409,2408,0,0,60,111,55,71,0,13309,0,0,0,326,2,3,0,2,1.5,3122.49122776,926,0,37294.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,24862.6666667,8,4,8,8_0,0.0,0,0.0,0,0,0,36.5,40.0,5.56,0,0,0.0,0.0,0.0 7307,2412,2411,0,0,47,111,37,10,0,13315,0,0,0,166,1,1,0,1,1.0,2847.65988719,0,0,28890.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,28890.0,8,4,8,8_0,0.0,0,0.0,0,0,0,13.0,40.0,5.56,0,0,0.0,0.0,0.0 -7308,2416,2415,6,6,42,111,22,43,0,13320,0,600,0,0,2,6,2,4,2.1,2809.45290533,6501,0,58278.0,1,2,3,4,4,2,0,1,0,0,1,0,0,0,0,2,27751.4285714,8,4,8,8_0,55000.0,0,55000.0,0,5,6,0.0,6.333333333330001,0.0,1,1,5373.976342475672,5373.976342475672,0.0 +7308,2416,2415,6,6,42,111,22,43,0,13320,0,600,0,0,2,6,2,4,2.1,2809.45290533,6501,0,58278.0,1,2,3,4,4,2,0,1,0,0,1,0,0,0,0,2,27751.4285714,8,4,8,8_0,55000.0,0,55000.0,0,5,6,0.0,6.33333333333,0.0,1,1,5373.976342475672,5373.976342475672,0.0 7309,2441,2440,0,2,58,112,68,71,0,13354,0,1350,0,0,2,4,0,2,1.5,3194.34250602,0,0,37540.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,0,2,25026.6666667,8,4,8,8_1,20788.0,0,20788.0,0,2,2,0.0,0.0,0.0,0,1,2181.866842508706,2181.866842508706,0.0 -7310,2465,2464,1,1,52,111,22,50,1,13386,0,500,0,0,3,5,2,4,2.3,2448.47293419,1820,25000,63366.0,1,2,9,7,4,1,1,1,0,0,0,1,0,0,0,1,27550.434782599998,8,4,8,8_0,12372.0,0,12372.0,0,1,1,0.0,22.5,2.2,0,0,1208.8515510747093,1208.8515510747093,0.0 +7310,2465,2464,1,1,52,111,22,50,1,13386,0,500,0,0,3,5,2,4,2.3,2448.47293419,1820,25000,63366.0,1,2,9,7,4,1,1,1,0,0,0,1,0,0,0,1,27550.4347826,8,4,8,8_0,12372.0,0,12372.0,0,1,1,0.0,22.5,2.2,0,0,1208.8515510747093,1208.8515510747093,0.0 7311,2468,2467,4,4,75,111,75,60,0,1339,0,0,0,0,0,4,0,2,1.5,1360.89328045,5304,0,41483.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,2,0,27655.3333333,8,4,8,8_0,15000.0,0,0.0,15000,5,5,0.0,0.0,0.0,0,0,1465.6299115842744,0.0,1465.6299115842744 7312,2469,2468,1,4,35,111,37,10,2,13392,0,400,0,0,2,7,3,5,2.4,1122.69893684,0,11000,60615.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,25256.25,8,4,8,8_0,44336.0,0,44336.0,0,2,6,258.0,20.0,3.3,0,1,4332.011184000026,4332.011184000026,0.0 7313,2479,2478,2,2,41,400,34,20,0,13407,0,200,0,0,1,6,0,2,1.5,2027.33157521,10088,0,42638.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,28425.3333333,8,4,8,8_1,20000.0,0,20000.0,0,4,5,112.0,40.0,3.3,0,0,2099.159940839625,2099.159940839625,0.0 -7314,2490,2489,3,15,70,111,75,43,0,13428,0,0,0,0,0,3,0,2,1.5,2686.8840641999996,1950,0,41645.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,27763.3333333,8,4,8,8_0,10000.0,0,0.0,10000,12,15,0.0,0.0,0.0,0,0,977.0866077228495,0.0,977.0866077228495 +7314,2490,2489,3,15,70,111,75,43,0,13428,0,0,0,0,0,3,0,2,1.5,2686.8840642,1950,0,41645.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,27763.3333333,8,4,8,8_0,10000.0,0,0.0,10000,12,15,0.0,0.0,0.0,0,0,977.0866077228495,0.0,977.0866077228495 7315,2522,2521,1,1,60,111,75,33,1,13484,0,20,0,0,1,5,1,3,2.0,1343.44408924,2600,26000,54915.0,5,1,7,6,4,3,1,1,0,0,1,0,0,0,1,2,27457.5,8,4,8,8_0,50000.0,0,50000.0,0,2,2,39.5,20.0,0.0,1,1,4885.433038614247,4885.433038614247,0.0 7316,2523,2522,14,16,54,111,22,41,0,13485,0,0,0,0,1,5,2,4,2.5,2449.89634419,4264,0,62099.0,1,2,7,5,4,3,0,0,0,0,1,0,0,0,1,2,24839.6,8,4,8,8_0,8000.0,0,8000.0,0,11,14,0.0,10.0,3.3,0,1,781.6692861782797,781.6692861782797,0.0 7317,2527,2526,0,3,27,111,37,10,0,13491,0,0,0,560,2,3,0,2,1.5,2218.68656943,1560,0,41392.0,1,3,7,6,3,1,1,0,0,0,1,0,0,0,0,1,27594.6666667,8,4,8,8_0,15000.0,0,15000.0,0,2,2,0.0,45.0,3.32,0,1,1465.6299115842744,1465.6299115842744,0.0 @@ -7325,7 +7325,7 @@ 7323,2565,2564,10,21,57,111,68,70,0,13540,0,0,160,0,3,5,2,3,2.0,2432.98296848,3643,0,54360.0,1,1,8,7,2,1,0,1,0,0,0,1,0,0,1,0,27180.0,8,4,8,8_0,5000.0,0,0.0,5000,5,15,0.0,33.3333333333,3.3,0,1,488.54330386142476,0.0,488.54330386142476 7324,2568,2567,8,10,39,112,21,50,0,13544,0,250,0,0,2,7,2,4,2.1,2897.58777849,0,0,53790.0,1,1,9,0,4,1,0,1,1,0,0,0,0,0,0,1,25614.2857143,8,4,8,8_1,21000.0,0,21000.0,0,8,8,49.2,10.0,3.31,0,1,2204.1179378816064,2204.1179378816064,0.0 7325,2578,2577,1,1,74,111,75,41,1,13557,0,0,0,0,0,5,0,2,1.5,1582.19762549,0,15418,40969.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,27312.6666667,8,4,8,8_0,15000.0,0,0.0,15000,2,2,0.0,0.0,0.0,0,0,1465.6299115842744,0.0,1465.6299115842744 -7326,2579,2578,7,18,40,221,62,42,0,13560,0,32,275,0,2,5,1,3,1.8,2211.37691782,4447,0,45155.0,1,2,1,3,4,3,0,1,0,1,0,0,0,0,2,1,25086.111111099995,8,4,8,8_0,32460.0,0,18000.0,14460,6,11,0.0,0.0,0.0,1,0,3171.62312866837,1758.7558939011292,1412.8672347672405 +7326,2579,2578,7,18,40,221,62,42,0,13560,0,32,275,0,2,5,1,3,1.8,2211.37691782,4447,0,45155.0,1,2,1,3,4,3,0,1,0,1,0,0,0,0,2,1,25086.1111111,8,4,8,8_0,32460.0,0,18000.0,14460,6,11,0.0,0.0,0.0,1,0,3171.62312866837,1758.7558939011292,1412.8672347672405 7327,2604,2603,7,7,65,112,75,50,0,13592,0,0,0,0,0,4,0,2,1.5,2071.54439234,2003,0,41119.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,0,2,27412.6666667,8,4,8,8_1,17500.0,0,17500.0,0,3,7,0.0,0.0,0.0,0,0,1836.764948234672,1836.764948234672,0.0 7328,2605,2604,11,13,58,112,54,41,0,13594,0,0,100,0,1,6,0,2,1.5,2088.90633496,0,0,41809.0,1,1,7,0,3,2,0,0,1,0,0,0,0,0,2,0,27872.6666667,8,4,8,8_1,5000.0,0,0.0,5000,10,11,0.0,0.0,0.0,0,1,524.7899852099063,0.0,524.7899852099063 7329,2618,2617,2,2,55,111,43,33,0,13608,0,400,0,0,1,3,0,2,1.5,2628.06551468,0,0,41982.0,1,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,27988.0,8,4,8,8_0,8000.0,0,8000.0,0,5,0,0.0,0.0,0.0,0,1,781.6692861782797,781.6692861782797,0.0 @@ -7338,15 +7338,15 @@ 7336,2749,2748,1,2,44,221,46,31,2,13777,0,480,0,0,2,5,0,2,1.5,4480.90968517,4851,13400,40632.0,1,2,1,2,3,2,1,1,0,1,0,0,0,0,0,2,27088.0,8,4,8,8_0,10000.0,0,10000.0,0,3,0,13.6,5.0,0.0,0,1,977.0866077228495,977.0866077228495,0.0 7337,2751,2750,2,4,51,111,43,10,0,1378,0,400,0,0,1,3,0,1,1.0,4188.76328771,2605,0,26776.0,1,3,6,4,1,1,0,1,0,0,1,0,0,0,0,1,26776.0,8,4,8,8_0,25000.0,0,25000.0,0,5,6,0.0,120.0,3.3,0,1,2442.7165193071237,2442.7165193071237,0.0 7338,2755,2754,16,16,78,111,75,70,0,13791,0,0,0,0,0,4,0,2,1.5,2848.06835297,0,0,39875.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,26583.3333333,8,4,8,8_0,10000.0,0,10000.0,0,9,12,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 -7339,2777,2776,0,2,44,111,37,50,0,13816,0,560,0,0,2,6,2,4,2.3,2514.27446285,0,0,59709.0,1,2,8,7,4,3,1,1,0,0,0,1,0,0,1,2,25960.434782599998,8,4,8,8_0,20716.0,0,17102.0,3614,4,4,358.4,27.5,3.3,0,1,2024.1326165586552,1671.0135165276172,353.1191000310378 +7339,2777,2776,0,2,44,111,37,50,0,13816,0,560,0,0,2,6,2,4,2.3,2514.27446285,0,0,59709.0,1,2,8,7,4,3,1,1,0,0,0,1,0,0,1,2,25960.4347826,8,4,8,8_0,20716.0,0,17102.0,3614,4,4,358.4,27.5,3.3,0,1,2024.1326165586552,1671.0135165276172,353.1191000310378 7340,2782,2781,1,13,52,111,65,50,0,13821,0,250,690,0,3,4,1,3,2.0,1094.89259238,9402,0,50001.0,1,1,9,7,4,3,0,1,0,0,0,1,0,0,2,1,25000.5,8,4,8,8_0,17875.0,0,5875.0,12000,9,11,226.5,26.6666666667,0.0,1,1,1746.5423113045936,574.0383820371741,1172.5039292674194 7341,2786,2785,2,6,41,111,37,41,0,13825,0,500,0,0,2,7,4,6,3.1,1793.08524724,1560,0,81416.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,26263.2258065,8,4,8,8_0,15000.0,0,15000.0,0,6,6,274.8,33.0,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 7342,2789,2788,2,11,31,111,47,31,0,13829,0,0,500,580,2,2,0,2,1.5,5923.40234472,0,0,40084.0,1,3,6,5,3,1,0,1,0,0,1,0,0,0,1,0,26722.6666667,8,4,8,8_0,10000.0,0,0.0,10000,9,9,0.0,0.0,0.0,0,1,977.0866077228495,0.0,977.0866077228495 7343,2800,2799,5,6,59,112,54,50,0,13844,0,0,0,0,1,6,0,1,1.0,5246.82985598,0,0,25268.0,1,1,9,2,1,1,0,0,0,1,0,0,0,0,0,1,25268.0,8,4,8,8_0,21250.0,0,21250.0,0,4,6,154.2,140.0,3.3,0,1,2076.309041411055,2076.309041411055,0.0 7344,2801,2800,2,10,32,111,43,33,0,13845,0,0,0,0,2,3,1,3,1.8,3083.74160318,0,0,44868.0,1,2,10,8,4,2,1,0,0,0,0,0,1,0,1,1,24926.6666667,8,4,8,8_0,23625.0,0,18625.0,5000,7,9,127.0,61.6666666667,5.57,0,1,2308.367110745232,1819.8238068838073,488.54330386142476 -7345,2810,2809,3,3,44,112,48,71,0,13858,0,600,100,0,2,6,1,3,1.8,4456.84735897,9534,0,47376.0,1,1,5,0,4,3,0,1,1,0,0,0,0,0,1,2,26320.0,8,4,8,8_1,33000.0,0,33000.0,0,2,2,461.4,143.33333333299998,3.3,0,1,3463.613902385381,3463.613902385381,0.0 +7345,2810,2809,3,3,44,112,48,71,0,13858,0,600,100,0,2,6,1,3,1.8,4456.84735897,9534,0,47376.0,1,1,5,0,4,3,0,1,1,0,0,0,0,0,1,2,26320.0,8,4,8,8_1,33000.0,0,33000.0,0,2,2,461.4,143.333333333,3.3,0,1,3463.613902385381,3463.613902385381,0.0 7346,2830,2829,15,15,55,111,42,30,0,13883,0,0,0,0,1,4,1,2,1.5,4082.70466312,520,0,42536.0,1,3,10,8,2,1,1,0,0,0,0,0,1,0,1,0,28357.3333333,8,4,8,8_0,12000.0,0,0.0,12000,13,13,0.0,0.0,0.0,1,1,1172.5039292674194,0.0,1172.5039292674194 -7347,2833,2832,7,10,38,111,46,31,0,1389,0,0,300,680,1,3,1,2,1.3,3012.17818129,2685,0,37255.0,1,3,9,7,2,1,1,1,0,0,0,1,0,0,1,0,28657.692307700003,8,4,8,8_0,15000.0,0,0.0,15000,9,10,68.5,27.0,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 +7347,2833,2832,7,10,38,111,46,31,0,1389,0,0,300,680,1,3,1,2,1.3,3012.17818129,2685,0,37255.0,1,3,9,7,2,1,1,1,0,0,0,1,0,0,1,0,28657.6923077,8,4,8,8_0,15000.0,0,0.0,15000,9,10,68.5,27.0,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 7348,2834,2833,1,6,67,111,75,50,2,13891,0,0,0,336,0,3,0,2,1.5,2076.65181515,1596,7500,41298.0,5,3,10,8,3,2,0,0,0,0,0,0,1,0,2,0,27532.0,8,4,8,8_0,4000.0,0,0.0,4000,9,9,0.0,0.0,0.0,0,0,390.83464308913983,0.0,390.83464308913983 7349,2837,2836,0,0,51,111,48,50,0,13894,0,0,0,720,2,3,1,3,2.0,1753.78670087,0,0,56430.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,28215.0,8,4,8,8_0,0.0,0,0.0,0,0,0,95.0,113.333333333,5.5,0,0,0.0,0.0,0.0 7350,2842,2841,15,22,67,111,75,41,0,139,0,0,0,0,0,4,0,1,1.0,3497.76810841,0,0,28010.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,28010.0,8,4,8,8_0,25490.0,0,25490.0,0,1,17,0.0,0.0,0.0,0,0,2490.5937630855433,2490.5937630855433,0.0 @@ -7354,7 +7354,7 @@ 7352,2861,2860,4,11,54,111,53,20,0,13921,0,0,0,0,1,5,0,2,1.5,2967.22686148,0,0,39219.0,1,4,9,7,3,1,0,0,0,0,0,1,0,0,1,0,26146.0,8,4,8,8_0,10000.0,0,0.0,10000,8,8,0.0,30.0,1.1,0,0,977.0866077228495,0.0,977.0866077228495 7353,2884,2883,2,2,63,111,74,44,0,1395,0,0,0,0,0,4,0,2,1.5,1532.83640733,3120,0,40111.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,26740.6666667,8,4,8,8_0,6537.0,0,6537.0,0,1,1,0.0,0.0,0.0,0,0,638.7215154684268,638.7215154684268,0.0 7354,2907,2906,7,12,57,400,75,50,0,13979,0,0,0,0,0,3,0,1,1.0,2751.68940733,0,0,26644.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,26644.0,8,4,8,8_1,20000.0,0,20000.0,0,1,13,0.0,0.0,0.0,0,0,2099.159940839625,2099.159940839625,0.0 -7355,2912,2911,9,10,40,120,47,31,0,13983,0,400,0,0,2,7,2,4,2.1,2011.14679935,3900,0,56054.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,26692.380952400003,8,4,8,8_1,25000.0,0,25000.0,0,8,10,220.8,17.5,3.3,0,1,2623.9499260495313,2623.9499260495313,0.0 +7355,2912,2911,9,10,40,120,47,31,0,13983,0,400,0,0,2,7,2,4,2.1,2011.14679935,3900,0,56054.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,26692.3809524,8,4,8,8_1,25000.0,0,25000.0,0,8,10,220.8,17.5,3.3,0,1,2623.9499260495313,2623.9499260495313,0.0 7356,2913,2912,2,2,55,111,62,71,0,13985,0,0,0,0,3,3,1,3,2.0,5596.97009966,0,0,54480.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,0,1,27240.0,8,4,8,8_0,0.0,0,0.0,0,4,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7357,2914,2913,1,1,57,111,67,60,1,13986,0,20,150,332,3,4,1,3,2.0,1684.20247009,0,13780,52072.0,1,3,6,4,4,2,0,1,0,0,1,0,0,0,1,1,26036.0,8,4,8,8_0,17343.0,0,17343.0,0,1,0,102.0,40.0,4.42,0,0,1694.561303773738,1694.561303773738,0.0 7358,2917,2916,6,6,47,120,38,31,0,13990,0,180,50,0,2,6,2,4,2.5,1500.19257219,2392,0,62780.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,25112.0,8,4,8,8_1,50672.0,0,15672.0,35000,5,5,178.0,51.6666666667,3.3,1,0,5318.4316261112735,1644.9017296419302,3673.529896469344 @@ -7362,19 +7362,19 @@ 7360,2933,2932,1,1,59,111,74,41,1,14018,0,0,0,372,1,3,1,3,2.0,3039.41949717,0,18000,52344.0,5,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,26172.0,8,4,8,8_0,6000.0,0,6000.0,0,6,6,0.0,35.0,1.1,0,0,586.2519646337097,586.2519646337097,0.0 7361,2944,2943,3,12,43,111,46,31,0,14033,0,0,20,494,2,3,2,4,2.3,3169.83058394,8299,0,58631.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,1,1,25491.7391304,8,4,8,8_0,15000.0,0,0.0,15000,4,12,165.0,26.6666666667,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 7362,2949,2948,9,17,55,300,63,50,0,14040,0,60,0,0,2,7,3,4,2.5,1235.13430687,0,0,72090.0,1,1,0,0,2,4,0,0,1,0,0,0,0,0,0,4,28836.0,8,4,8,8_1,10000.0,0,10000.0,0,14,14,294.0,20.0,0.0,1,1,1049.5799704198125,1049.5799704198125,0.0 -7363,2962,2961,6,6,40,112,46,20,0,14055,0,150,0,0,2,3,1,3,1.8,5396.62874406,0,0,45770.0,1,1,9,3,4,1,0,1,0,1,0,0,0,0,0,1,25427.777777799998,8,4,8,8_0,12000.0,0,12000.0,0,6,6,14.0,20.0,3.3,0,1,1172.5039292674194,1172.5039292674194,0.0 -7364,2965,2964,1,3,50,111,45,50,2,14059,0,0,0,0,2,6,1,3,2.0,1054.86466191,2496,17000,50417.0,1,3,7,6,4,1,0,0,0,0,1,0,0,0,0,1,25208.5,8,4,8,8_0,20000.0,0,20000.0,0,1,3,0.0,6.666666666669999,2.2,0,1,1954.173215445699,1954.173215445699,0.0 +7363,2962,2961,6,6,40,112,46,20,0,14055,0,150,0,0,2,3,1,3,1.8,5396.62874406,0,0,45770.0,1,1,9,3,4,1,0,1,0,1,0,0,0,0,0,1,25427.7777778,8,4,8,8_0,12000.0,0,12000.0,0,6,6,14.0,20.0,3.3,0,1,1172.5039292674194,1172.5039292674194,0.0 +7364,2965,2964,1,3,50,111,45,50,2,14059,0,0,0,0,2,6,1,3,2.0,1054.86466191,2496,17000,50417.0,1,3,7,6,4,1,0,0,0,0,1,0,0,0,0,1,25208.5,8,4,8,8_0,20000.0,0,20000.0,0,1,3,0.0,6.66666666667,2.2,0,1,1954.173215445699,1954.173215445699,0.0 7365,2969,2968,0,0,71,111,77,50,0,14063,0,0,0,0,0,7,0,1,1.0,1442.35812121,0,0,24976.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,24976.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7366,2974,2973,5,5,71,111,72,50,0,14068,0,0,0,0,0,5,0,2,1.5,2903.31604219,0,0,41512.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,27674.6666667,8,4,8,8_0,4000.0,0,4000.0,0,5,5,0.0,0.0,0.0,0,0,390.83464308913983,390.83464308913983,0.0 7367,2975,2974,2,8,27,300,37,12,0,14069,0,1000,280,0,2,7,0,2,1.5,2287.74942597,2951,0,38172.0,1,2,0,0,3,3,0,1,1,0,0,0,0,0,2,1,25448.0,8,4,8,8_1,30000.0,0,20000.0,10000,6,6,0.0,0.0,0.0,0,1,3148.7399112594376,2099.159940839625,1049.5799704198125 7368,2980,2979,2,4,31,112,43,20,0,14074,0,400,300,0,2,4,1,3,1.8,1799.92323453,0,0,51055.9090909,1,2,8,1,4,2,0,1,0,1,0,0,0,0,1,1,28364.3939394,8,4,8,8_0,60000.0,0,40000.0,20000,3,4,86.0,30.0,3.3,0,1,5862.519646337098,3908.346430891398,1954.173215445699 7369,2981,2980,1,1,44,111,54,60,1,14075,0,560,0,0,1,3,0,1,1.0,2002.72675228,1201,18900,25702.0,1,2,6,4,1,1,1,1,0,0,1,0,0,0,0,1,25702.0,8,4,8,8_0,7265.0,0,7265.0,0,1,1,0.0,0.0,0.0,0,1,709.8534205106502,709.8534205106502,0.0 7370,2983,2982,0,0,69,111,75,41,0,14077,0,0,0,0,1,5,1,2,1.5,2065.4610303,0,0,38358.0,5,1,8,6,2,0,0,0,0,0,1,0,0,0,0,0,25572.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -7371,2987,2986,0,0,54,111,22,50,1,14083,0,360,0,0,2,4,1,3,2.0,2690.31374983,3876,29000,56691.0,1,1,8,7,4,1,0,1,0,0,0,1,0,0,0,1,28345.5,8,4,8,8_0,20000.0,0,20000.0,0,1,3,0.0,6.666666666669999,2.2,0,1,1954.173215445699,1954.173215445699,0.0 +7371,2987,2986,0,0,54,111,22,50,1,14083,0,360,0,0,2,4,1,3,2.0,2690.31374983,3876,29000,56691.0,1,1,8,7,4,1,0,1,0,0,0,1,0,0,0,1,28345.5,8,4,8,8_0,20000.0,0,20000.0,0,1,3,0.0,6.66666666667,2.2,0,1,1954.173215445699,1954.173215445699,0.0 7372,2989,2988,3,10,49,111,46,50,0,14088,0,0,0,0,1,4,0,2,1.5,3276.75566987,3797,0,38765.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,25843.3333333,8,4,8,8_0,8500.0,0,8500.0,0,5,6,0.0,85.0,5.5,0,0,830.5236165644221,830.5236165644221,0.0 7373,2995,2994,13,13,41,111,38,41,0,14094,0,0,640,0,2,5,2,4,2.1,2890.14973001,3121,0,59988.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,28565.7142857,8,4,8,8_0,8000.0,0,0.0,8000,7,13,10.5,72.0,5.57,0,0,781.6692861782797,0.0,781.6692861782797 7374,2999,2998,0,12,50,111,45,41,2,14098,0,0,422,0,3,3,1,3,2.0,2028.39554844,3901,2000,54320.0,1,2,9,7,4,3,0,1,0,0,0,1,0,0,3,0,27160.0,8,4,8,8_0,10899.0,0,0.0,10899,6,8,245.4,53.3333333333,3.3,0,1,1064.9266937571338,0.0,1064.9266937571338 -7375,3011,3010,0,12,31,112,38,31,0,14114,0,100,0,520,2,5,1,3,1.8,3073.85350236,3380,0,45455.0,1,3,9,0,4,2,0,1,1,0,0,0,0,0,0,2,25252.777777799998,8,4,8,8_1,7000.0,0,7000.0,0,8,14,243.9,31.3333333333,0.0,0,1,734.7059792938687,734.7059792938687,0.0 +7375,3011,3010,0,12,31,112,38,31,0,14114,0,100,0,520,2,5,1,3,1.8,3073.85350236,3380,0,45455.0,1,3,9,0,4,2,0,1,1,0,0,0,0,0,0,2,25252.7777778,8,4,8,8_1,7000.0,0,7000.0,0,8,14,243.9,31.3333333333,0.0,0,1,734.7059792938687,734.7059792938687,0.0 7376,3012,3011,8,12,53,211,62,50,0,14115,0,100,0,0,2,6,0,2,1.5,1062.44622936,0,0,37289.0,1,2,1,3,3,2,0,0,0,1,0,0,0,0,0,2,24859.3333333,8,4,8,8_0,18000.0,0,18000.0,0,4,11,54.2,30.0,3.3,0,1,1758.7558939011292,1758.7558939011292,0.0 7377,3014,3013,5,12,45,112,62,50,0,14118,0,680,0,0,2,6,1,3,1.8,1940.45822579,2342,0,48698.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,27054.4444444,8,4,8,8_1,23000.0,0,23000.0,0,8,12,31.5,70.0,3.3,0,1,2414.0339319655686,2414.0339319655686,0.0 7378,3015,3014,2,8,32,212,53,42,0,14119,0,199998,0,0,2,5,2,4,2.1,4845.85085022,0,0,57561.0,1,1,3,0,4,2,0,1,1,0,0,0,0,0,0,2,27410.0,8,4,8,8_1,14226.0,0,14226.0,0,1,8,235.8,52.5,3.3,0,1,1493.1324659192253,1493.1324659192253,0.0 @@ -7410,10 +7410,10 @@ 7408,3331,3330,4,6,25,111,53,50,0,14556,0,99999,0,352,2,3,1,3,1.8,4719.99781032,0,0,44830.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,24905.5555556,8,4,8,8_0,25000.0,0,25000.0,0,5,5,80.0,46.6666666667,2.2,0,0,2442.7165193071237,2442.7165193071237,0.0 7409,3336,3335,3,3,57,111,43,33,0,14562,0,400,0,0,1,4,0,2,1.5,1399.25025275,2340,0,40286.0,1,1,5,4,3,2,0,1,0,0,1,0,0,0,1,1,26857.3333333,8,4,8,8_0,6891.0,0,6891.0,0,0,0,0.0,0.0,1.1,0,0,673.3103813818157,673.3103813818157,0.0 7410,3347,3346,5,5,57,111,22,70,0,14576,0,500,0,0,1,5,0,2,1.5,3538.56489063,3536,0,38472.0,1,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,25648.0,8,4,8,8_0,20000.0,0,20000.0,0,5,4,0.0,0.0,0.0,0,1,1954.173215445699,1954.173215445699,0.0 -7411,3353,3352,1,2,34,112,62,50,2,14583,0,440,0,0,2,4,2,4,2.1,1308.73662101,0,12000,53505.0,1,2,6,1,4,2,0,1,0,1,0,0,0,0,0,2,25478.571428599997,8,4,8,8_0,23000.0,0,23000.0,0,1,3,205.3,24.0,0.0,0,1,2247.299197762554,2247.299197762554,0.0 +7411,3353,3352,1,2,34,112,62,50,2,14583,0,440,0,0,2,4,2,4,2.1,1308.73662101,0,12000,53505.0,1,2,6,1,4,2,0,1,0,1,0,0,0,0,0,2,25478.5714286,8,4,8,8_0,23000.0,0,23000.0,0,1,3,205.3,24.0,0.0,0,1,2247.299197762554,2247.299197762554,0.0 7412,3355,3354,6,13,35,111,54,42,0,14586,0,0,400,343,1,2,1,2,1.3,3002.4215937,3068,0,34020.0,1,3,10,8,2,1,1,1,0,0,0,0,1,0,1,0,26169.2307692,8,4,8,8_0,4000.0,0,0.0,4000,2,11,107.5,45.0,3.31,0,0,390.83464308913983,0.0,390.83464308913983 -7413,3356,3355,3,7,48,111,45,20,0,14587,0,0,125,0,2,6,1,3,1.8,2106.33948212,1873,0,45877.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,2,0,25487.222222200002,8,4,8,8_0,8000.0,0,0.0,8000,9,9,0.0,30.0,1.1,0,0,781.6692861782797,0.0,781.6692861782797 -7414,3357,3356,3,3,56,111,38,31,0,1459,0,450,0,0,2,4,1,3,2.0,1674.4248762,0,0,53540.0,1,3,7,5,4,1,0,1,0,0,1,0,0,0,0,1,26770.0,8,4,8,8_0,20000.0,0,20000.0,0,1,3,0.0,6.666666666669999,2.2,0,1,1954.173215445699,1954.173215445699,0.0 +7413,3356,3355,3,7,48,111,45,20,0,14587,0,0,125,0,2,6,1,3,1.8,2106.33948212,1873,0,45877.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,2,0,25487.2222222,8,4,8,8_0,8000.0,0,0.0,8000,9,9,0.0,30.0,1.1,0,0,781.6692861782797,0.0,781.6692861782797 +7414,3357,3356,3,3,56,111,38,31,0,1459,0,450,0,0,2,4,1,3,2.0,1674.4248762,0,0,53540.0,1,3,7,5,4,1,0,1,0,0,1,0,0,0,0,1,26770.0,8,4,8,8_0,20000.0,0,20000.0,0,1,3,0.0,6.66666666667,2.2,0,1,1954.173215445699,1954.173215445699,0.0 7415,3361,3360,6,11,46,300,21,50,0,14595,0,0,0,0,1,5,0,1,1.0,3359.59090534,0,0,25377.0,1,1,0,0,1,2,0,1,1,0,0,0,0,0,0,2,25377.0,8,4,8,8_1,18000.0,0,18000.0,0,4,14,0.0,50.0,3.31,0,1,1889.2439467556624,1889.2439467556624,0.0 7416,3363,3362,1,11,49,111,37,31,0,14597,0,0,99999,0,2,4,1,2,1.5,3267.72154811,0,0,37442.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,1,0,24961.3333333,8,4,8,8_0,10000.0,10000,0.0,0,9,11,0.0,35.0,3.31,0,1,977.0866077228495,0.0,0.0 7417,3400,3399,1,1,49,111,37,31,0,14645,0,400,0,0,2,5,3,5,2.6,1969.91948469,5148,0,68714.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,26428.4615385,8,4,8,8_0,18000.0,0,18000.0,0,3,3,71.0,30.8,2.2,0,0,1758.7558939011292,1758.7558939011292,0.0 @@ -7428,7 +7428,7 @@ 7426,3500,3499,7,7,35,111,42,20,0,14784,0,99999,0,0,1,4,0,1,1.0,2116.23496516,0,0,26864.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,0,1,26864.0,8,4,8,8_0,20000.0,0,20000.0,0,6,6,90.0,40.0,3.3,0,1,1954.173215445699,1954.173215445699,0.0 7427,3518,3517,12,12,57,111,75,70,0,1481,0,0,0,0,0,4,0,2,1.5,1331.94086328,6724,0,38778.0,5,2,8,6,3,1,0,0,0,0,1,0,0,0,1,0,25852.0,8,4,8,8_0,10000.0,0,0.0,10000,5,6,0.0,0.0,0.0,0,0,977.0866077228495,0.0,977.0866077228495 7428,3519,3518,4,4,73,111,77,50,0,14811,0,0,0,0,0,7,0,2,1.5,2081.84501293,0,0,39770.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,26513.3333333,8,4,8,8_0,10000.0,0,0.0,10000,4,4,0.0,0.0,0.0,0,0,977.0866077228495,0.0,977.0866077228495 -7429,3526,3525,0,2,59,111,33,10,0,14821,0,0,0,0,1,7,3,5,3.0,2164.64296127,1006,0,78944.0,1,1,7,5,4,4,0,1,0,0,1,0,0,0,3,1,26314.6666667,8,4,8,8_0,17000.0,0,0.0,17000,2,2,82.5,13.666666666700001,3.3,0,1,1661.0472331288443,0.0,1661.0472331288443 +7429,3526,3525,0,2,59,111,33,10,0,14821,0,0,0,0,1,7,3,5,3.0,2164.64296127,1006,0,78944.0,1,1,7,5,4,4,0,1,0,0,1,0,0,0,3,1,26314.6666667,8,4,8,8_0,17000.0,0,0.0,17000,2,2,82.5,13.6666666667,3.3,0,1,1661.0472331288443,0.0,1661.0472331288443 7430,3536,3535,1,1,61,111,77,50,1,14837,0,0,0,0,0,5,0,1,1.0,4789.13483545,0,11500,27397.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,1,0,27397.0,8,4,8,8_0,48000.0,0,0.0,48000,4,0,0.0,0.0,0.0,0,0,4690.0157170696775,0.0,4690.0157170696775 7431,3541,3540,10,10,44,400,34,10,0,14842,0,420,0,0,2,5,2,4,2.5,1840.05754081,2340,0,63050.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,25220.0,8,4,8,8_1,27000.0,0,27000.0,0,5,10,127.5,22.5,0.0,0,1,2833.865920133494,2833.865920133494,0.0 7432,3542,3541,0,0,35,111,35,31,0,14844,0,0,0,700,1,2,0,1,1.0,2989.75603589,0,0,29002.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,29002.0,8,4,8,8_0,0.0,0,0.0,0,0,0,24.5,100.0,5.56,0,0,0.0,0.0,0.0 @@ -7443,12 +7443,12 @@ 7441,3595,3594,3,11,32,111,38,50,0,14921,0,500,0,0,2,4,3,5,2.4,1624.66226203,3640,0,64824.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,0,2,27010.0,8,4,8,8_0,35000.0,0,35000.0,0,5,14,194.5,40.4,3.31,0,1,3419.8031270299734,3419.8031270299734,0.0 7442,3597,3596,0,18,55,111,46,50,0,14923,0,250,0,0,1,3,0,1,1.0,3631.17692231,2601,0,27284.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,0,1,27284.0,8,4,8,8_0,15000.0,0,15000.0,0,5,16,85.5,40.0,3.3,1,1,1465.6299115842744,1465.6299115842744,0.0 7443,3600,3599,8,8,83,111,78,70,0,14928,0,0,0,0,0,4,0,2,1.5,2712.31679138,0,0,39674.0,5,1,7,6,3,1,0,0,0,0,1,0,0,0,1,0,26449.3333333,8,4,8,8_0,7000.0,0,0.0,7000,5,8,0.0,0.0,0.0,0,0,683.9606254059947,0.0,683.9606254059947 -7444,3612,3611,3,6,44,112,46,50,0,14944,0,0,0,0,2,5,2,4,2.1,2435.08815196,0,0,53379.0,1,2,8,0,4,1,0,0,1,0,0,0,0,0,0,1,25418.571428599997,8,4,8,8_1,53000.0,0,53000.0,0,3,5,225.9,25.25,3.3,0,1,5562.773843225006,5562.773843225006,0.0 +7444,3612,3611,3,6,44,112,46,50,0,14944,0,0,0,0,2,5,2,4,2.1,2435.08815196,0,0,53379.0,1,2,8,0,4,1,0,0,1,0,0,0,0,0,0,1,25418.5714286,8,4,8,8_1,53000.0,0,53000.0,0,3,5,225.9,25.25,3.3,0,1,5562.773843225006,5562.773843225006,0.0 7445,3626,3625,3,3,64,111,75,33,0,14962,0,0,0,0,0,5,0,1,1.0,2520.2052681,2288,0,26102.0,5,1,6,5,1,1,0,0,0,0,1,0,0,0,0,1,26102.0,8,4,8,8_0,10000.0,0,10000.0,0,2,3,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 -7446,3627,3626,4,14,55,300,62,70,0,14963,0,510,0,0,2,5,1,3,2.0,846.3527183030001,2496,0,54417.0,1,1,0,1,4,2,0,1,0,1,0,0,0,0,0,2,27208.5,8,4,8,8_0,6000.0,0,6000.0,0,4,13,184.8,33.3333333333,3.31,0,1,586.2519646337097,586.2519646337097,0.0 +7446,3627,3626,4,14,55,300,62,70,0,14963,0,510,0,0,2,5,1,3,2.0,846.352718303,2496,0,54417.0,1,1,0,1,4,2,0,1,0,1,0,0,0,0,0,2,27208.5,8,4,8,8_0,6000.0,0,6000.0,0,4,13,184.8,33.3333333333,3.31,0,1,586.2519646337097,586.2519646337097,0.0 7447,3628,3627,5,5,29,112,38,10,0,14964,0,140,0,578,2,3,0,2,1.5,3316.27160406,7093,0,43039.0,1,3,9,1,3,2,0,1,0,1,0,0,0,0,0,2,28692.6666667,8,4,8,8_0,42226.0,0,42226.0,0,5,5,34.0,22.0,3.3,0,1,4125.8459097705045,4125.8459097705045,0.0 7448,3630,3629,3,3,53,111,55,60,0,14969,0,0,100,0,2,4,0,2,1.5,1461.12100104,0,0,41759.0,1,1,9,7,3,1,0,1,0,0,0,1,0,0,1,0,27839.3333333,8,4,8,8_0,5248.0,0,0.0,5248,1,3,0.0,30.0,1.1,0,0,512.7750517329515,0.0,512.7750517329515 -7449,3632,3631,20,20,42,300,34,31,0,14971,0,350,0,0,2,6,2,4,2.1,1617.35579816,4971,0,53542.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,25496.190476199998,8,4,8,8_1,20000.0,0,20000.0,0,16,16,103.0,26.6666666667,3.3,0,1,2099.159940839625,2099.159940839625,0.0 +7449,3632,3631,20,20,42,300,34,31,0,14971,0,350,0,0,2,6,2,4,2.1,1617.35579816,4971,0,53542.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,25496.1904762,8,4,8,8_1,20000.0,0,20000.0,0,16,16,103.0,26.6666666667,3.3,0,1,2099.159940839625,2099.159940839625,0.0 7450,3636,3635,0,0,81,111,86,71,0,1498,0,0,0,552,0,3,0,1,1.0,2696.37400802,0,0,25558.0,6,3,5,4,1,0,0,0,0,0,1,0,0,0,0,0,25558.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7451,3638,3637,8,8,62,112,33,50,0,14981,0,0,0,0,1,5,0,2,1.5,3433.07337576,5007,0,40557.0,1,2,8,0,3,2,1,0,1,0,0,0,0,0,1,1,27038.0,8,4,8,8_1,15807.0,0,5807.0,10000,4,9,64.0,16.0,3.3,0,1,1659.0710592425974,609.4910888227851,1049.5799704198125 7452,3639,3638,5,9,43,300,64,60,0,14983,0,80,0,0,2,3,0,2,1.5,1436.35659832,2875,0,42242.0,1,3,0,0,3,2,0,1,1,0,0,0,0,0,0,2,28161.3333333,8,4,8,8_1,20000.0,0,20000.0,0,8,8,0.0,58.0,3.3,0,1,2099.159940839625,2099.159940839625,0.0 @@ -7457,8 +7457,8 @@ 7455,3684,3683,8,22,52,222,63,71,0,15033,0,100,0,0,2,5,0,2,1.5,1702.18857014,2600,0,42686.0,1,2,1,0,3,3,0,0,1,0,0,0,0,0,1,2,28457.3333333,8,4,8,8_1,15000.0,0,15000.0,0,7,15,73.6,20.0,3.3,1,0,1574.3699556297188,1574.3699556297188,0.0 7456,3694,3693,2,2,60,111,72,41,0,15045,0,0,0,0,0,4,0,2,1.5,2009.4972934,2717,0,40523.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,27015.3333333,8,4,8,8_0,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7457,3697,3696,3,3,72,112,75,50,0,15048,0,100,0,0,1,5,1,3,2.0,1064.16767456,0,0,56463.0,5,1,8,0,4,3,0,0,1,0,0,0,0,0,1,2,28231.5,8,4,8,8_1,34000.0,0,34000.0,0,3,3,0.0,0.0,0.0,0,1,3568.5718994273625,3568.5718994273625,0.0 -7458,3711,3710,4,14,56,111,63,50,0,15064,0,5,300,0,1,5,0,1,1.0,3455.0113530000003,1721,0,26347.0,1,2,9,7,1,2,0,1,0,0,0,1,0,0,1,1,26347.0,8,4,8,8_0,20650.0,0,16337.0,4313,1,12,0.0,0.0,0.0,0,1,2017.6838449476843,1596.2663910368194,421.41745391086505 -7459,3717,3716,2,2,46,112,33,60,0,15071,0,199998,0,0,2,5,1,3,2.0,2097.01126345,5928,0,53567.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,0,2,26783.5,8,4,8,8_1,33000.0,0,33000.0,0,2,2,461.4,143.33333333299998,3.3,0,1,3463.613902385381,3463.613902385381,0.0 +7458,3711,3710,4,14,56,111,63,50,0,15064,0,5,300,0,1,5,0,1,1.0,3455.011353,1721,0,26347.0,1,2,9,7,1,2,0,1,0,0,0,1,0,0,1,1,26347.0,8,4,8,8_0,20650.0,0,16337.0,4313,1,12,0.0,0.0,0.0,0,1,2017.6838449476843,1596.2663910368194,421.41745391086505 +7459,3717,3716,2,2,46,112,33,60,0,15071,0,199998,0,0,2,5,1,3,2.0,2097.01126345,5928,0,53567.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,0,2,26783.5,8,4,8,8_1,33000.0,0,33000.0,0,2,2,461.4,143.333333333,3.3,0,1,3463.613902385381,3463.613902385381,0.0 7460,3730,3729,1,1,59,300,22,70,1,15090,0,99999,0,0,1,5,0,2,1.5,2145.70743465,0,12000,40074.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,26716.0,8,4,8,8_1,11000.0,0,11000.0,0,2,2,0.0,0.0,0.0,0,1,1154.5379674617936,1154.5379674617936,0.0 7461,3731,3730,11,11,62,111,77,50,0,15091,0,0,0,0,0,4,0,2,1.5,1025.60103501,0,0,41304.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,27536.0,8,4,8,8_0,10000.0,0,10000.0,0,11,11,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7462,3736,3735,0,15,26,111,52,43,0,15099,0,0,250,0,2,2,0,2,1.5,4272.08289223,1560,0,37913.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,1,0,25275.3333333,8,4,8,8_0,5000.0,0,0.0,5000,13,16,89.0,80.0,5.56,0,0,488.54330386142476,0.0,488.54330386142476 @@ -7470,7 +7470,7 @@ 7468,3802,3801,0,0,31,111,54,41,1,15194,0,200,100,0,2,3,0,2,1.5,3470.31317164,1306,15700,39764.0,1,2,8,7,3,2,0,1,0,0,0,1,0,0,1,1,26509.3333333,8,4,8,8_0,29226.0,0,22226.0,7000,1,5,88.0,65.0,3.3,0,1,2855.6333197308,2171.6726943248054,683.9606254059947 7469,3817,3816,0,0,83,112,74,50,0,15216,0,0,0,0,0,5,0,1,1.0,3268.9364414,0,0,28660.0,5,1,10,4,1,0,0,0,0,0,1,0,0,0,0,0,28660.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7470,3828,3827,1,5,52,111,63,50,0,15231,0,199998,0,0,2,5,0,2,1.5,1956.5832614,4513,0,40442.0,1,1,9,7,3,3,0,1,0,0,0,1,0,0,0,3,26961.3333333,8,4,8,8_0,21787.0,0,21787.0,0,1,4,0.0,0.0,0.0,0,1,2128.7785922457724,2128.7785922457724,0.0 -7471,3830,3829,0,23,55,111,52,10,0,15235,0,0,0,0,1,5,2,3,2.0,914.6933499360001,2392,0,51442.0,1,1,6,4,2,2,0,0,0,0,1,0,0,0,2,0,25721.0,8,4,8,8_0,7614.0,0,0.0,7614,12,13,0.0,30.0,1.1,0,0,743.9537431201777,0.0,743.9537431201777 +7471,3830,3829,0,23,55,111,52,10,0,15235,0,0,0,0,1,5,2,3,2.0,914.693349936,2392,0,51442.0,1,1,6,4,2,2,0,0,0,0,1,0,0,0,2,0,25721.0,8,4,8,8_0,7614.0,0,0.0,7614,12,13,0.0,30.0,1.1,0,0,743.9537431201777,0.0,743.9537431201777 7472,3842,3841,4,13,52,112,46,60,0,15251,0,872,0,0,2,3,0,2,1.5,2299.13819162,7204,0,41560.0,1,2,10,0,3,2,0,1,1,0,0,0,0,0,0,2,27706.6666667,8,4,8,8_1,10000.0,0,10000.0,0,14,14,107.0,28.5,3.3,0,1,1049.5799704198125,1049.5799704198125,0.0 7473,3886,3885,7,18,26,111,62,43,0,15319,0,0,140,251,2,3,0,2,1.5,3843.51988389,0,0,43283.0,1,3,8,7,3,2,0,0,0,0,0,1,0,1,2,0,28855.3333333,8,4,8,8_0,12000.0,0,0.0,12000,14,15,44.5,77.5,3.3,0,1,1172.5039292674194,0.0,1172.5039292674194 7474,3888,3887,2,16,49,111,22,50,0,15322,0,0,0,0,2,3,1,3,2.0,1311.24274728,3381,0,54654.0,1,3,9,7,4,2,0,0,0,0,0,1,0,0,0,2,27327.0,8,4,8,8_0,12000.0,0,12000.0,0,4,15,120.5,43.3333333333,3.31,0,1,1172.5039292674194,1172.5039292674194,0.0 @@ -7482,10 +7482,10 @@ 7480,3920,3919,11,11,74,111,77,70,0,15365,0,0,0,0,0,4,0,2,1.5,2011.87086593,6372,0,39336.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,26224.0,8,4,8,8_0,7000.0,0,0.0,7000,11,11,0.0,0.0,0.0,0,0,683.9606254059947,0.0,683.9606254059947 7481,3921,3920,6,6,83,120,75,41,0,15366,0,0,0,0,0,6,0,2,1.5,3384.77597854,1245,0,40332.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,26888.0,8,4,8,8_1,3700.0,0,0.0,3700,4,4,0.0,0.0,0.0,0,0,388.34458905533063,0.0,388.34458905533063 7482,3923,3922,2,2,53,112,55,41,0,15368,0,300,60,595,2,4,1,3,1.8,2364.31003223,1040,0,50668.0,1,3,9,0,4,2,0,1,1,0,0,0,0,0,1,1,28148.8888889,8,4,8,8_1,50000.0,0,25000.0,25000,4,4,153.5,20.0,0.0,0,1,5247.899852099063,2623.9499260495313,2623.9499260495313 -7483,3924,3923,1,1,35,111,46,20,2,15370,0,0,0,0,2,5,2,4,2.1,2689.12487879,2451,17800,54910.0,1,4,8,6,4,1,0,0,0,0,1,0,0,0,0,1,26147.619047599997,8,4,8,8_0,30000.0,0,30000.0,0,3,5,100.0,32.5,0.0,0,1,2931.259823168549,2931.259823168549,0.0 +7483,3924,3923,1,1,35,111,46,20,2,15370,0,0,0,0,2,5,2,4,2.1,2689.12487879,2451,17800,54910.0,1,4,8,6,4,1,0,0,0,0,1,0,0,0,0,1,26147.6190476,8,4,8,8_0,30000.0,0,30000.0,0,3,5,100.0,32.5,0.0,0,1,2931.259823168549,2931.259823168549,0.0 7484,3926,3925,0,0,52,111,56,50,0,15375,0,0,0,0,1,3,0,2,1.5,2538.41035659,0,0,42249.0,1,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,28166.0,8,4,8,8_0,0.0,0,0.0,0,0,0,63.0,120.0,5.56,0,0,0.0,0.0,0.0 7485,3940,3939,3,3,57,111,63,50,0,1539,0,0,200,0,2,5,0,2,1.5,1942.15890205,0,0,39786.0,1,1,8,7,3,2,0,1,0,0,0,1,0,0,2,0,26524.0,8,4,8,8_0,13750.0,0,0.0,13750,4,5,16.8,15.0,3.3,0,1,1343.494085618918,0.0,1343.494085618918 -7486,3944,3943,1,3,50,211,64,50,2,15394,0,0,0,0,2,5,1,3,2.0,1845.9899209000002,4680,9000,50699.0,1,1,3,3,4,3,0,0,0,1,0,0,0,0,0,3,25349.5,8,4,8,8_0,10001.0,0,10001.0,0,1,2,407.9,81.6666666667,3.3,0,1,977.1843163836218,977.1843163836218,0.0 +7486,3944,3943,1,3,50,211,64,50,2,15394,0,0,0,0,2,5,1,3,2.0,1845.9899209,4680,9000,50699.0,1,1,3,3,4,3,0,0,0,1,0,0,0,0,0,3,25349.5,8,4,8,8_0,10001.0,0,10001.0,0,1,2,407.9,81.6666666667,3.3,0,1,977.1843163836218,977.1843163836218,0.0 7487,3946,3945,8,11,57,112,42,41,0,15397,0,0,120,0,2,6,0,2,1.5,4347.62232718,2080,0,40330.0,1,1,8,0,3,2,0,1,1,0,0,0,0,0,1,1,26886.6666667,8,4,8,8_1,16700.0,0,15000.0,1700,3,7,71.0,30.0,3.3,0,1,1752.7985506010868,1574.3699556297188,178.4285949713681 7488,3949,3948,4,4,76,111,74,42,0,1540,0,0,0,0,0,5,0,2,1.5,2396.88738489,2237,0,42996.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,28664.0,8,4,8,8_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,0,1465.6299115842744,1465.6299115842744,0.0 7489,3957,3956,6,6,50,111,54,31,0,15412,0,70,0,0,2,5,1,3,2.0,1815.70510944,3148,0,51961.0,1,1,7,5,4,1,0,1,0,0,1,0,0,0,0,1,25980.5,8,4,8,8_0,2000.0,0,2000.0,0,3,7,71.0,110.0,3.32,0,1,195.41732154456992,195.41732154456992,0.0 @@ -7499,11 +7499,11 @@ 7497,4034,4033,8,8,66,111,74,44,0,15518,0,0,0,0,0,3,0,2,1.5,1400.86726759,0,0,41450.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,27633.3333333,8,4,8,8_0,5000.0,0,5000.0,0,8,8,0.0,0.0,0.0,0,0,488.54330386142476,488.54330386142476,0.0 7498,4037,4036,2,21,33,112,47,60,0,15520,0,800,0,0,2,5,2,4,2.1,2635.88897609,3120,0,56231.0,1,2,6,0,4,2,0,0,1,0,0,0,0,0,0,2,26776.6666667,8,4,8,8_1,10000.0,0,10000.0,0,10,14,0.0,23.75,0.0,0,1,1049.5799704198125,1049.5799704198125,0.0 7499,4042,4041,5,7,44,111,22,50,0,15525,0,300,0,0,2,5,2,4,2.3,2148.61536231,3120,0,63155.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,27458.6956522,8,4,8,8_0,18625.0,0,18625.0,0,2,6,37.9,38.0,3.3,0,0,1819.8238068838073,1819.8238068838073,0.0 -7500,4056,4055,12,17,34,112,43,20,0,15549,0,0,1000,0,2,5,1,3,1.8,1571.96138572,2497,0,46001.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,2,0,25556.111111099995,8,4,8,8_1,8000.0,0,0.0,8000,12,15,70.7,26.6666666667,3.3,0,1,839.66397633585,0.0,839.66397633585 -7501,4057,4056,16,21,55,111,23,12,0,1555,0,0,0,0,1,10,4,7,4.0,874.4811978710001,0,0,99959.0,1,1,10,8,5,3,0,0,0,0,0,0,1,0,2,1,24989.75,8,4,8,8_0,1168.0,0,0.0,1168,3,19,63.5,53.3333333333,2.24,0,1,114.12371578202882,0.0,114.12371578202882 +7500,4056,4055,12,17,34,112,43,20,0,15549,0,0,1000,0,2,5,1,3,1.8,1571.96138572,2497,0,46001.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,2,0,25556.1111111,8,4,8,8_1,8000.0,0,0.0,8000,12,15,70.7,26.6666666667,3.3,0,1,839.66397633585,0.0,839.66397633585 +7501,4057,4056,16,21,55,111,23,12,0,1555,0,0,0,0,1,10,4,7,4.0,874.481197871,0,0,99959.0,1,1,10,8,5,3,0,0,0,0,0,0,1,0,2,1,24989.75,8,4,8,8_0,1168.0,0,0.0,1168,3,19,63.5,53.3333333333,2.24,0,1,114.12371578202882,0.0,114.12371578202882 7502,4072,4071,5,6,38,112,46,30,0,15570,0,270,0,0,2,10,2,4,2.1,3500.76611768,2329,0,55144.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,26259.047619,8,4,8,8_1,7144.0,0,7144.0,0,1,7,266.4,45.0,3.3,0,1,749.8199308679141,749.8199308679141,0.0 7503,4078,4077,2,2,56,111,46,50,0,15580,0,0,140,0,1,2,0,1,1.0,2004.35011894,1040,0,26735.0,1,1,6,5,1,1,0,1,0,0,1,0,0,0,1,0,26735.0,8,4,8,8_0,9000.0,0,0.0,9000,3,3,0.0,17.0,3.3,1,0,879.3779469505646,0.0,879.3779469505646 -7504,4087,4086,1,5,38,111,45,41,0,15593,0,100,250,326,2,5,2,4,2.1,2980.85102661,1551,0,55269.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,1,1,26318.571428599997,8,4,8,8_0,43491.0,0,42891.0,600,2,3,39.4,33.75,0.0,0,1,4249.447365647445,4190.8221691840745,58.62519646337097 +7504,4087,4086,1,5,38,111,45,41,0,15593,0,100,250,326,2,5,2,4,2.1,2980.85102661,1551,0,55269.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,1,1,26318.5714286,8,4,8,8_0,43491.0,0,42891.0,600,2,3,39.4,33.75,0.0,0,1,4249.447365647445,4190.8221691840745,58.62519646337097 7505,4100,4099,7,13,65,111,72,60,0,15612,0,0,0,0,0,4,0,2,1.5,2646.7094308,0,0,37968.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,25312.0,8,4,8,8_0,10000.0,0,0.0,10000,11,12,0.0,0.0,0.0,0,0,977.0866077228495,0.0,977.0866077228495 7506,4112,4111,1,5,58,111,31,10,2,15630,0,0,90,0,3,6,2,4,2.5,2419.85776141,10130,2000,64512.0,1,1,10,8,4,4,0,1,0,0,0,0,1,0,2,2,25804.8,8,4,8,8_0,25237.0,0,15000.0,10237,7,7,157.5,57.5,3.3,0,1,2465.8734719101553,1465.6299115842744,1000.243560325881 7507,4113,4112,0,0,49,111,47,50,0,15631,0,0,0,0,1,2,0,1,1.0,2880.65721472,1560,0,27809.0,1,2,7,5,1,0,0,0,0,0,1,0,0,0,0,0,27809.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,120.0,5.5,0,0,0.0,0.0,0.0 @@ -7511,21 +7511,21 @@ 7509,4148,4147,2,2,46,221,46,50,0,15693,0,200,0,0,2,5,0,2,1.5,3355.98754753,0,0,40977.0,1,1,1,2,3,2,0,1,0,1,0,0,0,0,0,2,27318.0,8,4,8,8_0,6351.0,0,6351.0,0,1,1,240.0,55.0,3.3,0,1,620.5477045647817,620.5477045647817,0.0 7510,4155,4154,1,12,39,112,62,50,0,15703,0,0,0,262,1,3,0,1,1.0,2284.51608737,2096,0,25762.0,1,3,5,0,1,2,0,0,1,0,0,0,0,0,0,1,25762.0,8,4,8,8_1,25000.0,0,25000.0,0,5,11,24.5,20.0,3.3,0,1,2623.9499260495313,2623.9499260495313,0.0 7511,4168,4167,3,4,68,112,78,70,0,15723,0,0,0,0,1,6,0,2,1.5,1736.08569065,0,0,37560.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,0,2,25040.0,8,4,8,8_0,11000.0,0,11000.0,0,3,5,0.0,0.0,0.0,0,1,1074.7952684951345,1074.7952684951345,0.0 -7512,4189,4188,10,10,36,111,37,42,0,15751,0,700,0,0,1,3,2,4,2.1,3620.77224034,3120,0,52169.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,24842.380952400003,8,4,8,8_0,22000.0,0,22000.0,0,8,8,96.5,18.6666666667,3.31,0,1,2149.590536990269,2149.590536990269,0.0 +7512,4189,4188,10,10,36,111,37,42,0,15751,0,700,0,0,1,3,2,4,2.1,3620.77224034,3120,0,52169.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,24842.3809524,8,4,8,8_0,22000.0,0,22000.0,0,8,8,96.5,18.6666666667,3.31,0,1,2149.590536990269,2149.590536990269,0.0 7513,4193,4192,3,6,59,111,46,50,0,15756,0,0,360,305,2,3,1,2,1.5,2417.7684038,2080,0,38580.0,1,3,6,4,2,2,1,1,0,0,1,0,0,0,2,0,25720.0,8,4,8,8_0,44000.0,0,0.0,44000,5,5,0.0,42.5,0.0,0,1,4299.181073980538,0.0,4299.181073980538 7514,4205,4204,1,1,31,111,65,50,2,15774,0,0,100,361,2,3,0,2,1.5,2744.10131344,2800,4150,41124.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,1,0,27416.0,8,4,8,8_0,0.0,0,0.0,0,3,0,0.0,40.0,3.3,0,1,0.0,0.0,0.0 7515,4232,4231,1,4,27,120,37,20,2,1589,0,0,0,0,1,4,0,1,1.0,4913.85884148,0,17400,27645.0,1,2,0,2,1,1,0,0,0,1,0,0,0,0,0,1,27645.0,8,4,8,8_0,20000.0,0,20000.0,0,4,4,106.8,10.0,3.3,0,1,1954.173215445699,1954.173215445699,0.0 -7516,4237,4236,13,20,57,111,45,70,0,1596,0,0,0,450,3,4,1,3,2.0,2995.81797052,0,0,53533.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,26766.5,8,4,8,8_0,15000.0,0,0.0,15000,5,22,112.8,146.66666666700002,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 +7516,4237,4236,13,20,57,111,45,70,0,1596,0,0,0,450,3,4,1,3,2.0,2995.81797052,0,0,53533.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,26766.5,8,4,8,8_0,15000.0,0,0.0,15000,5,22,112.8,146.666666667,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 7517,4238,4237,9,13,40,112,21,71,0,1599,0,0,0,0,1,5,0,1,1.0,3177.07435407,0,0,28198.0,1,2,8,0,1,1,0,0,1,0,0,0,0,0,0,1,28198.0,8,4,8,8_1,30000.0,0,30000.0,0,3,13,72.5,40.0,3.3,0,1,3148.7399112594376,3148.7399112594376,0.0 7518,4241,4240,1,4,67,112,77,71,2,1601,0,0,0,0,0,5,0,2,1.5,2721.56532789,0,17000,38372.0,5,4,8,0,3,2,0,0,1,0,0,0,0,0,1,1,25581.3333333,8,4,8,8_1,10700.0,0,6000.0,4700,6,6,0.0,0.0,0.0,0,0,1123.0505683491992,629.7479822518875,493.30258609731186 7519,4252,4251,1,6,54,120,52,50,0,1617,0,99999,0,0,2,6,1,3,2.0,1615.54332543,0,0,54797.0,1,1,0,0,5,2,0,1,1,0,0,0,0,0,0,2,27398.5,8,4,8,8_1,31231.0,0,31231.0,0,5,5,0.0,27.0,1.1,1,1,3277.9432056181163,3277.9432056181163,0.0 7520,4265,4264,11,11,61,111,74,50,0,164,0,0,0,0,0,3,0,1,1.0,2097.06476765,2187,0,26785.0,5,4,9,7,1,1,0,0,0,0,0,1,0,0,1,0,26785.0,8,4,8,8_0,5000.0,0,0.0,5000,12,12,0.0,0.0,0.0,0,0,488.54330386142476,0.0,488.54330386142476 7521,4284,4283,3,13,25,111,45,20,0,1661,0,750,125,0,2,3,0,2,1.5,1801.39526509,2600,0,40749.0,1,3,5,4,3,2,0,1,0,0,1,0,0,0,1,1,27166.0,8,4,8,8_0,15784.0,0,6000.0,9784,7,14,0.0,11.0,0.0,0,1,1542.2335016297457,586.2519646337097,955.981536996036 -7522,4293,4292,2,2,48,112,37,50,0,1672,0,530,0,0,2,5,2,4,2.5,2329.81528852,2886,0,69638.0,1,2,8,0,4,4,0,1,1,0,0,0,0,0,1,3,27855.2,8,4,8,8_1,33000.0,0,33000.0,0,1,0,0.0,6.666666666669999,0.0,1,0,3463.613902385381,3463.613902385381,0.0 +7522,4293,4292,2,2,48,112,37,50,0,1672,0,530,0,0,2,5,2,4,2.5,2329.81528852,2886,0,69638.0,1,2,8,0,4,4,0,1,1,0,0,0,0,0,1,3,27855.2,8,4,8,8_1,33000.0,0,33000.0,0,1,0,0.0,6.66666666667,0.0,1,0,3463.613902385381,3463.613902385381,0.0 7523,4309,4308,4,4,42,112,37,31,0,1695,0,199998,0,0,2,5,3,5,2.8,5799.10310676,0,0,71380.0,1,1,9,2,4,2,0,1,0,1,0,0,0,0,0,2,25492.8571429,8,4,8,8_0,60000.0,0,60000.0,0,3,3,39.2,21.2,0.0,1,1,5862.519646337098,5862.519646337098,0.0 7524,4310,4309,11,14,71,300,71,70,0,1696,0,0,0,0,0,5,0,1,1.0,1700.5346689,0,0,28570.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,28570.0,8,4,8,8_1,15000.0,0,0.0,15000,10,15,0.0,0.0,0.0,0,0,1574.3699556297188,0.0,1574.3699556297188 7525,4324,4323,0,5,23,120,62,42,0,1713,0,645,0,540,1,4,0,2,1.5,4058.42264051,2699,0,38777.0,1,3,0,2,3,2,0,1,0,1,0,0,0,0,0,2,25851.3333333,8,4,8,8_0,10000.0,0,10000.0,0,3,10,94.0,30.0,0.0,0,1,977.0866077228495,977.0866077228495,0.0 -7526,4331,4330,16,16,61,120,75,70,0,1724,0,0,0,0,0,4,0,2,1.5,1745.7057409000001,2770,0,40907.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,27271.3333333,8,4,8,8_1,3500.0,0,0.0,3500,8,17,0.0,0.0,0.0,0,0,367.35298964693436,0.0,367.35298964693436 +7526,4331,4330,16,16,61,120,75,70,0,1724,0,0,0,0,0,4,0,2,1.5,1745.7057409,2770,0,40907.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,27271.3333333,8,4,8,8_1,3500.0,0,0.0,3500,8,17,0.0,0.0,0.0,0,0,367.35298964693436,0.0,367.35298964693436 7527,4334,4333,6,10,57,111,37,12,0,1728,0,0,0,0,1,6,2,4,2.1,1547.40814984,3744,0,59577.0,1,2,7,5,4,1,0,0,0,0,1,0,0,0,1,0,28370.0,8,4,8,8_0,6000.0,0,0.0,6000,9,9,26.0,35.0,5.55,0,0,586.2519646337097,0.0,586.2519646337097 7528,4365,4364,1,6,53,120,75,50,2,1770,0,100,0,0,1,6,0,2,1.5,1482.58996493,0,10000,38928.0,4,1,0,3,3,2,1,0,0,1,0,0,0,0,0,2,25952.0,8,4,8,8_0,4000.0,0,4000.0,0,8,8,0.0,0.0,0.0,0,1,390.83464308913983,390.83464308913983,0.0 7529,4375,4374,10,20,42,112,47,50,0,1784,0,0,500,0,1,5,1,2,1.5,1957.92510688,0,0,40082.0,1,1,10,0,2,2,0,0,1,0,0,0,0,0,2,0,26721.3333333,8,4,8,8_1,8000.0,0,0.0,8000,10,19,108.0,80.0,2.2,0,1,839.66397633585,0.0,839.66397633585 @@ -7534,20 +7534,20 @@ 7532,4399,4398,2,5,28,112,64,50,0,1813,0,0,500,0,2,3,0,2,1.5,2498.69717945,3576,0,37388.0,1,2,7,0,3,2,0,1,1,0,0,0,0,0,2,0,24925.3333333,8,4,8,8_1,20000.0,0,0.0,20000,3,4,491.0,45.0,3.32,0,1,2099.159940839625,0.0,2099.159940839625 7533,4409,4408,7,14,51,112,45,20,0,1824,0,0,70,0,1,2,0,1,1.0,2601.58602971,0,0,28224.0,1,2,9,3,1,1,0,1,0,1,0,0,0,0,1,0,28224.0,8,4,8,8_0,28800.0,0,0.0,28800,2,12,119.0,75.0,3.3,0,1,2814.0094302418065,0.0,2814.0094302418065 7534,4452,4451,5,14,59,111,46,41,0,1879,0,0,0,0,2,6,1,3,2.0,1442.13704944,0,0,57206.0,1,1,10,8,4,2,1,0,0,0,0,0,1,0,1,1,28603.0,8,4,8,8_0,11785.0,0,11785.0,0,14,18,0.0,0.0,0.0,0,0,1151.4965672013782,1151.4965672013782,0.0 -7535,4479,4478,5,5,50,111,65,60,0,192,0,220,0,350,2,2,1,3,1.8,6262.4603401,0,0,45392.0,1,3,8,6,4,3,0,0,0,0,1,0,0,0,0,3,25217.777777799998,8,4,8,8_0,12500.0,0,12500.0,0,4,4,0.0,9.0,3.3,0,1,1221.3582596535618,1221.3582596535618,0.0 +7535,4479,4478,5,5,50,111,65,60,0,192,0,220,0,350,2,2,1,3,1.8,6262.4603401,0,0,45392.0,1,3,8,6,4,3,0,0,0,0,1,0,0,0,0,3,25217.7777778,8,4,8,8_0,12500.0,0,12500.0,0,4,4,0.0,9.0,3.3,0,1,1221.3582596535618,1221.3582596535618,0.0 7536,4490,4489,3,3,79,221,74,71,0,1935,0,0,0,0,0,4,0,2,1.5,4268.51548431,1236,0,40118.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,1,1,26745.3333333,8,4,8,8_0,22000.0,0,12000.0,10000,6,6,0.0,0.0,0.0,0,0,2149.590536990269,1172.5039292674194,977.0866077228495 7537,4492,4491,3,5,53,111,62,42,0,194,0,1200,150,0,3,3,1,3,2.0,2724.87755029,7800,0,53081.0,1,2,8,6,4,3,0,1,0,0,1,0,0,0,1,2,26540.5,8,4,8,8_0,25200.0,0,25000.0,200,8,8,22.0,10.0,1.1,0,1,2462.2582514615806,2442.7165193071237,19.54173215445699 7538,4498,4497,9,9,30,120,34,20,0,1946,0,190,0,0,2,8,2,4,2.1,1396.36441475,3490,0,60220.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,28676.1904762,8,4,8,8_1,14226.0,0,14226.0,0,1,8,235.8,52.5,3.3,0,1,1493.1324659192253,1493.1324659192253,0.0 7539,4505,4504,0,0,61,111,86,12,0,1954,0,0,0,0,0,5,0,1,1.0,2981.44015599,0,0,25846.0,6,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,25846.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7540,4509,4508,13,13,63,111,74,50,0,1958,0,0,0,0,0,3,0,2,1.5,838.947832638,3390,0,42899.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,28599.3333333,8,4,8,8_0,25769.0,0,16353.0,9416,4,12,0.0,0.0,0.0,0,0,2517.854479441011,1597.8297296091757,920.0247498318352 7541,4515,4514,1,5,25,111,43,20,0,1966,0,300,0,715,2,3,0,2,1.5,2763.424973,3549,0,41594.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,0,1,27729.3333333,8,4,8,8_0,27226.0,0,27226.0,0,1,5,348.6,115.0,3.3,0,1,2660.21599818623,2660.21599818623,0.0 -7542,4546,4545,8,15,56,111,46,50,0,2006,0,0,100,0,1,3,1,2,1.3,2763.21316292,0,0,35454.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,1,0,27272.307692299997,8,4,8,8_0,12000.0,0,0.0,12000,13,13,0.0,0.0,0.0,1,1,1172.5039292674194,0.0,1172.5039292674194 -7543,4547,4546,11,11,36,112,43,33,0,2008,0,304,0,0,2,4,2,4,2.1,1379.8995082000001,1300,0,53200.0,1,2,8,1,4,2,0,1,0,1,0,0,0,0,0,2,25333.3333333,8,4,8,8_0,20000.0,0,20000.0,0,5,10,65.0,20.0,0.0,0,1,1954.173215445699,1954.173215445699,0.0 +7542,4546,4545,8,15,56,111,46,50,0,2006,0,0,100,0,1,3,1,2,1.3,2763.21316292,0,0,35454.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,1,0,27272.3076923,8,4,8,8_0,12000.0,0,0.0,12000,13,13,0.0,0.0,0.0,1,1,1172.5039292674194,0.0,1172.5039292674194 +7543,4547,4546,11,11,36,112,43,33,0,2008,0,304,0,0,2,4,2,4,2.1,1379.8995082,1300,0,53200.0,1,2,8,1,4,2,0,1,0,1,0,0,0,0,0,2,25333.3333333,8,4,8,8_0,20000.0,0,20000.0,0,5,10,65.0,20.0,0.0,0,1,1954.173215445699,1954.173215445699,0.0 7544,4561,4560,12,12,62,111,42,20,0,2036,0,440,0,0,2,5,1,3,2.0,1924.25039045,3187,0,55016.0,1,2,9,7,4,4,0,0,0,0,0,1,0,0,1,3,27508.0,8,4,8,8_0,20000.0,0,20000.0,0,7,7,0.0,0.0,0.0,0,1,1954.173215445699,1954.173215445699,0.0 7545,4563,4562,1,3,27,112,46,42,0,204,0,1220,0,0,2,4,1,3,1.8,3304.53768431,512,0,50941.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,0,2,28300.5555556,8,4,8,8_1,8000.0,0,8000.0,0,3,3,60.6,40.0,3.3,0,1,839.66397633585,839.66397633585,0.0 7546,4574,4573,3,3,83,111,78,50,0,2055,0,0,0,0,0,4,1,3,2.0,2634.38827683,1196,0,51410.0,5,1,8,6,4,1,0,0,0,0,1,0,0,0,1,0,25705.0,8,4,8,8_0,5500.0,0,0.0,5500,5,5,0.0,0.0,0.0,0,0,537.3976342475672,0.0,537.3976342475672 7547,4629,4628,9,16,35,112,47,41,0,2122,0,99999,30,0,2,6,1,3,1.8,1931.26583191,0,0,46005.0,1,2,8,2,4,2,0,1,0,1,0,0,0,0,1,1,25558.3333333,8,4,8,8_0,10000.0,0,0.0,10000,7,15,80.0,25.3333333333,3.3,0,1,977.0866077228495,0.0,977.0866077228495 -7548,4634,4633,0,0,30,111,54,20,0,2127,0,0,0,800,2,2,2,4,2.1,2676.79119652,0,0,55493.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,26425.238095200002,8,4,8,8_0,0.0,0,0.0,0,0,0,132.2,43.3333333333,2.2,0,0,0.0,0.0,0.0 +7548,4634,4633,0,0,30,111,54,20,0,2127,0,0,0,800,2,2,2,4,2.1,2676.79119652,0,0,55493.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,26425.2380952,8,4,8,8_0,0.0,0,0.0,0,0,0,132.2,43.3333333333,2.2,0,0,0.0,0.0,0.0 7549,4638,4637,9,10,63,300,77,71,0,2132,0,0,0,0,0,5,0,2,1.5,2566.05128576,1817,0,37712.0,5,1,0,1,3,3,0,0,0,1,0,0,0,0,2,1,25141.3333333,8,4,8,8_0,10000.0,0,4000.0,6000,2,8,0.0,0.0,0.0,0,0,977.0866077228495,390.83464308913983,586.2519646337097 7550,4646,4645,0,0,55,111,55,50,0,2142,0,0,0,350,1,2,0,1,1.0,2958.69384874,0,0,25432.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,25432.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,40.0,1.1,0,0,0.0,0.0,0.0 7551,4650,4649,4,5,60,111,75,50,0,2148,0,0,50,0,0,3,0,1,1.0,2116.89901185,2363,0,25620.0,5,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,25620.0,8,4,8,8_0,12000.0,0,0.0,12000,5,5,0.0,0.0,0.0,0,0,1172.5039292674194,0.0,1172.5039292674194 @@ -7558,14 +7558,14 @@ 7556,4694,4693,5,5,42,300,43,10,0,2203,0,1150,0,0,3,7,2,4,2.3,2332.99142921,7335,0,57597.0,1,2,0,0,4,4,0,1,1,0,0,0,0,0,1,3,25042.173913,8,4,8,8_1,21445.0,0,21445.0,0,1,2,164.1,28.5,3.3,0,1,2250.824246565288,2250.824246565288,0.0 7557,4696,4695,13,13,57,112,54,60,0,2207,0,0,228,298,1,3,0,1,1.0,3193.97863441,0,0,28221.0,1,3,10,4,1,1,0,1,0,0,1,0,0,0,1,0,28221.0,8,4,8,8_0,12000.0,0,0.0,12000,14,14,0.0,18.0,3.3,1,0,1172.5039292674194,0.0,1172.5039292674194 7558,4715,4714,4,4,39,112,42,20,0,2225,0,106,0,0,2,4,1,3,1.8,2876.15939902,0,0,52127.0,1,2,10,0,4,1,0,1,1,0,0,0,0,0,0,1,28959.4444444,8,4,8,8_1,37000.0,0,37000.0,0,3,5,248.5,46.6666666667,3.31,1,1,3883.445890553306,3883.445890553306,0.0 -7559,4724,4723,6,6,46,111,37,50,0,2235,0,10,0,0,2,6,2,4,2.3,997.6181671410001,1054,0,62769.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,0,1,27290.869565200002,8,4,8,8_0,22000.0,0,22000.0,0,8,8,233.1,35.0,3.3,0,1,2149.590536990269,2149.590536990269,0.0 +7559,4724,4723,6,6,46,111,37,50,0,2235,0,10,0,0,2,6,2,4,2.3,997.618167141,1054,0,62769.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,0,1,27290.8695652,8,4,8,8_0,22000.0,0,22000.0,0,8,8,233.1,35.0,3.3,0,1,2149.590536990269,2149.590536990269,0.0 7560,4731,4730,16,17,62,111,78,50,0,2246,0,0,0,0,0,4,0,2,1.5,1811.02403631,0,0,42546.0,4,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,28364.0,8,4,8,8_0,25000.0,0,0.0,25000,7,19,0.0,0.0,0.0,0,0,2442.7165193071237,0.0,2442.7165193071237 7561,4735,4734,10,10,67,111,75,41,0,2252,0,0,0,0,0,5,1,2,1.5,5478.75489482,0,0,39671.0,5,1,6,4,2,2,0,0,0,0,1,0,0,0,2,0,26447.3333333,8,4,8,8_0,3000.0,0,0.0,3000,8,9,0.0,0.0,0.0,0,0,293.12598231685485,0.0,293.12598231685485 7562,4741,4740,10,10,48,400,47,50,0,2262,0,500,0,0,2,5,0,2,1.5,2213.14722099,0,0,41731.0,1,2,0,1,3,2,0,1,0,1,0,0,0,0,0,2,27820.6666667,8,4,8,8_0,18000.0,0,18000.0,0,4,11,54.2,30.0,3.3,0,1,1758.7558939011292,1758.7558939011292,0.0 7563,4753,4752,0,0,77,112,77,70,0,2287,0,0,0,0,0,4,0,1,1.0,3579.88769545,0,0,25590.0,5,1,7,0,1,0,0,0,1,0,0,0,0,0,0,0,25590.0,8,4,8,8_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7564,4780,4779,17,17,81,300,77,70,0,2328,0,0,0,0,0,4,0,2,1.5,1652.36392418,0,0,40974.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,27316.0,8,4,8,8_1,39352.0,0,30000.0,9352,4,12,0.0,0.0,0.0,0,0,4130.307099596046,3148.7399112594376,981.5671883366086 7565,4800,4799,0,0,32,111,46,20,0,2355,0,0,0,318,2,4,0,2,1.5,3723.81181813,0,0,37584.0,1,3,9,7,3,0,0,0,0,0,0,1,0,1,0,0,25056.0,8,4,8,8_0,0.0,0,0.0,0,0,0,53.0,0.0,0.0,0,0,0.0,0.0,0.0 -7566,4803,4802,7,12,35,300,54,20,0,2359,0,510,0,0,2,5,1,3,1.8,1233.93910625,1820,0,47147.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,26192.777777799998,8,4,8,8_1,13000.0,0,13000.0,0,3,13,92.5,43.3333333333,3.3,0,1,1364.453961545756,1364.453961545756,0.0 +7566,4803,4802,7,12,35,300,54,20,0,2359,0,510,0,0,2,5,1,3,1.8,1233.93910625,1820,0,47147.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,26192.7777778,8,4,8,8_1,13000.0,0,13000.0,0,3,13,92.5,43.3333333333,3.3,0,1,1364.453961545756,1364.453961545756,0.0 7567,4818,4817,6,6,32,112,54,31,0,2383,0,200,100,0,2,4,2,4,2.1,2239.69346558,3694,0,54551.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,1,1,25976.6666667,8,4,8,8_1,25000.0,0,15000.0,10000,3,3,92.7,30.0,3.3,1,0,2623.9499260495313,1574.3699556297188,1049.5799704198125 7568,4820,4819,19,19,82,111,77,70,0,2386,0,0,0,0,0,5,0,1,1.0,1744.61503749,0,0,27651.0,5,1,7,6,1,2,0,0,0,0,1,0,0,0,0,2,27651.0,8,4,8,8_0,7382.0,0,7382.0,0,21,21,0.0,0.0,0.0,0,0,721.2853338210075,721.2853338210075,0.0 7569,4823,4822,0,6,32,111,55,43,0,239,0,0,40,0,2,3,0,2,1.5,2924.75989375,2912,0,37925.0,1,1,6,5,3,2,0,1,0,0,1,0,0,0,1,1,25283.3333333,8,4,8,8_0,29226.0,0,22226.0,7000,1,5,88.0,65.0,3.3,0,1,2855.6333197308,2171.6726943248054,683.9606254059947 @@ -7575,7 +7575,7 @@ 7573,4837,4836,0,14,41,112,46,31,2,2410,0,450,0,513,2,3,1,3,1.8,3379.76525675,3510,2400,51922.0,1,3,9,2,4,2,1,1,0,1,0,0,0,1,1,1,28845.5555556,8,4,8,8_0,18672.0,0,18672.0,0,1,14,0.0,10.0,3.3,1,1,1824.4161139401047,1824.4161139401047,0.0 7574,4840,4839,7,19,39,111,34,20,0,2418,0,0,0,0,2,3,1,3,1.8,2456.86869782,0,0,49169.0,1,4,10,8,4,1,0,0,0,0,0,0,1,0,1,0,27316.1111111,8,4,8,8_0,10000.0,0,0.0,10000,9,18,0.0,30.0,3.3,0,1,977.0866077228495,0.0,977.0866077228495 7575,4845,4844,10,13,52,120,52,70,0,2426,0,350,0,0,2,4,0,2,1.5,1401.40640458,4764,0,40677.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,27118.0,8,4,8,8_1,10000.0,0,10000.0,0,14,14,107.0,28.5,3.3,0,1,1049.5799704198125,1049.5799704198125,0.0 -7576,4855,4854,1,15,33,111,63,50,0,2439,0,0,130,749,2,4,1,3,1.8,2763.27244934,5273,0,47300.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,2,0,26277.777777799998,8,4,8,8_0,10000.0,0,0.0,10000,7,15,80.0,25.3333333333,3.3,0,1,977.0866077228495,0.0,977.0866077228495 +7576,4855,4854,1,15,33,111,63,50,0,2439,0,0,130,749,2,4,1,3,1.8,2763.27244934,5273,0,47300.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,2,0,26277.7777778,8,4,8,8_0,10000.0,0,0.0,10000,7,15,80.0,25.3333333333,3.3,0,1,977.0866077228495,0.0,977.0866077228495 7577,4861,4860,3,10,39,112,54,31,0,2445,0,80,0,600,2,4,2,4,2.1,2092.04534396,0,0,56373.0,1,3,9,1,4,2,1,1,0,1,0,0,0,0,0,2,26844.2857143,8,4,8,8_0,55000.0,0,55000.0,0,5,10,352.3,40.0,3.31,0,1,5373.976342475672,5373.976342475672,0.0 7578,4864,4863,19,19,43,112,64,43,0,2450,0,22,0,0,2,5,1,3,1.8,2556.89795409,0,0,49159.0,1,2,8,0,4,6,0,0,1,0,0,0,0,0,2,4,27310.5555556,8,4,8,8_1,30672.0,0,30672.0,0,2,16,83.0,30.0,3.3,0,1,3219.271685271649,3219.271685271649,0.0 7579,4889,4888,2,7,49,111,54,41,0,248,0,0,0,0,1,4,1,2,1.5,2335.30784897,0,0,41287.0,1,3,10,8,2,1,0,0,0,0,0,0,1,0,1,0,27524.6666667,8,4,8,8_0,10000.0,0,0.0,10000,6,6,0.0,20.0,3.3,0,1,977.0866077228495,0.0,977.0866077228495 @@ -7585,21 +7585,21 @@ 7583,4928,4927,1,25,33,112,38,12,2,2533,0,800,130,0,2,3,0,2,1.5,2625.10064249,5775,2700,41700.0,1,2,8,0,3,2,0,1,1,0,0,0,0,0,1,1,27800.0,8,4,8,8_1,25000.0,0,15000.0,10000,8,17,69.0,25.0,1.1,0,0,2623.9499260495313,1574.3699556297188,1049.5799704198125 7584,4935,4934,21,21,72,111,74,41,0,2547,0,0,0,499,0,3,0,2,1.5,2868.03720628,0,0,39728.0,5,3,10,8,5,1,0,0,0,0,0,0,1,0,1,0,26485.3333333,8,4,8,8_0,8500.0,0,0.0,8500,18,19,0.0,0.0,0.0,0,0,830.5236165644221,0.0,830.5236165644221 7585,4949,4948,1,3,66,221,78,50,2,2565,0,0,0,0,0,5,0,2,1.5,3683.77236756,2395,11149,40980.0,5,1,1,1,3,2,0,0,0,1,0,0,0,0,1,1,27320.0,8,4,8,8_0,15500.0,0,14500.0,1000,3,3,0.0,0.0,0.0,0,0,1514.4842419704166,1416.775581198132,97.70866077228496 -7586,4950,4949,2,2,77,111,75,50,0,2566,0,0,0,0,0,4,0,2,1.5,2012.6380539000002,0,0,37370.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,24913.3333333,8,4,8,8_0,15000.0,0,0.0,15000,2,2,0.0,0.0,0.0,0,0,1465.6299115842744,0.0,1465.6299115842744 +7586,4950,4949,2,2,77,111,75,50,0,2566,0,0,0,0,0,4,0,2,1.5,2012.6380539,0,0,37370.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,24913.3333333,8,4,8,8_0,15000.0,0,0.0,15000,2,2,0.0,0.0,0.0,0,0,1465.6299115842744,0.0,1465.6299115842744 7587,4952,4951,2,4,37,111,37,31,0,2571,0,200,0,0,2,4,2,4,2.1,2168.72878056,3120,0,56022.0,1,2,7,5,4,1,0,1,0,0,1,0,0,0,0,1,26677.1428571,8,4,8,8_0,30000.0,0,30000.0,0,3,5,100.0,32.5,0.0,0,1,2931.259823168549,2931.259823168549,0.0 7588,4963,4962,2,2,62,400,74,44,0,2586,0,0,0,0,0,5,0,2,1.5,1893.40872116,5176,0,41887.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,27924.6666667,8,4,8,8_1,18200.0,0,18200.0,0,0,1,0.0,0.0,0.0,0,0,1910.2355461640589,1910.2355461640589,0.0 7589,4992,4991,11,11,87,112,75,50,0,2635,0,0,0,0,0,3,0,2,1.5,3209.59032819,0,0,40175.0,5,1,9,3,3,1,0,0,0,1,0,0,0,0,1,0,26783.3333333,8,4,8,8_0,7000.0,0,0.0,7000,5,8,0.0,0.0,0.0,0,0,683.9606254059947,0.0,683.9606254059947 7590,5005,5004,11,11,61,112,72,50,0,265,0,0,0,0,0,4,0,2,1.5,1712.09358213,2964,0,42783.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,0,2,28522.0,8,4,8,8_0,30000.0,0,30000.0,0,8,10,0.0,0.0,0.0,0,0,2931.259823168549,2931.259823168549,0.0 7591,5035,5034,2,9,88,400,77,71,0,2694,0,0,0,0,0,5,0,1,1.0,5465.97423862,0,0,28600.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,28600.0,8,4,8,8_1,10237.0,0,0.0,10237,6,6,0.0,0.0,0.0,0,0,1074.455015718762,0.0,1074.455015718762 -7592,5045,5044,2,14,34,112,45,31,0,2705,0,1200,0,0,2,3,1,3,1.8,1613.83641639,5720,0,45941.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,25522.777777799998,8,4,8,8_0,12000.0,0,12000.0,0,4,15,120.5,43.3333333333,3.31,0,1,1172.5039292674194,1172.5039292674194,0.0 +7592,5045,5044,2,14,34,112,45,31,0,2705,0,1200,0,0,2,3,1,3,1.8,1613.83641639,5720,0,45941.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,25522.7777778,8,4,8,8_0,12000.0,0,12000.0,0,4,15,120.5,43.3333333333,3.31,0,1,1172.5039292674194,1172.5039292674194,0.0 7593,5052,5051,0,1,24,111,38,12,0,2715,0,600,0,336,1,2,0,1,1.0,2808.78538604,0,0,26768.0,1,3,8,7,1,1,1,1,0,0,0,1,0,0,0,1,26768.0,8,4,8,8_0,18000.0,0,18000.0,0,2,0,0.0,6.0,1.1,0,0,1758.7558939011292,1758.7558939011292,0.0 7594,5053,5052,6,10,44,111,37,20,0,2716,0,0,0,0,2,5,2,4,2.5,2330.55562266,0,0,63691.0,1,3,9,7,4,1,0,0,0,0,0,1,0,0,0,1,25476.4,8,4,8,8_0,22000.0,0,22000.0,0,8,8,233.1,35.0,3.3,0,1,2149.590536990269,2149.590536990269,0.0 7595,5063,5062,3,3,35,111,46,41,0,2730,0,100,0,0,2,5,1,3,1.8,1499.13203031,0,0,51904.0,1,2,6,4,4,1,0,1,0,0,1,0,0,0,0,1,28835.5555556,8,4,8,8_0,17343.0,0,17343.0,0,1,3,0.0,10.0,3.31,0,1,1694.561303773738,1694.561303773738,0.0 7596,5094,5093,4,4,38,111,38,31,0,2778,0,460,0,0,2,4,0,2,1.5,5019.51546232,2860,0,41601.0,1,2,6,5,3,1,0,1,0,0,1,0,0,0,0,1,27734.0,8,4,8,8_0,12144.0,0,12144.0,0,0,6,136.6,52.5,3.3,0,1,1186.5739764186285,1186.5739764186285,0.0 7597,5118,5117,8,15,51,112,55,50,0,281,0,250,250,0,2,4,0,2,1.5,1458.93110889,797,0,41747.0,1,1,8,0,3,2,0,1,1,0,0,0,0,0,1,1,27831.3333333,8,4,8,8_1,26646.0,0,17102.0,9544,4,14,194.2,45.0,3.3,0,1,2796.710789180632,1794.9916654119634,1001.719123768669 -7598,5139,5138,7,9,45,111,34,10,0,2842,0,300,0,0,2,5,4,6,2.7,966.893460775,4724,0,68844.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,25497.777777799998,8,4,8,8_0,10000.0,0,10000.0,0,5,9,0.0,16.6666666667,0.0,0,0,977.0866077228495,977.0866077228495,0.0 +7598,5139,5138,7,9,45,111,34,10,0,2842,0,300,0,0,2,5,4,6,2.7,966.893460775,4724,0,68844.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,25497.7777778,8,4,8,8_0,10000.0,0,10000.0,0,5,9,0.0,16.6666666667,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7599,5156,5155,1,1,42,400,34,20,1,2866,0,400,60,0,2,5,2,4,2.1,2069.03922238,1560,11000,52906.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,25193.3333333,8,4,8,8_1,29000.0,0,20000.0,9000,1,1,120.5,30.0,0.0,1,1,3043.7819142174562,2099.159940839625,944.6219733778312 -7600,5165,5164,7,7,48,111,37,31,0,2879,0,80,0,0,2,5,2,4,2.5,2746.6965121999997,0,0,70740.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,28296.0,8,4,8,8_0,6859.0,0,6859.0,0,1,8,0.0,20.0,0.0,0,1,670.1837042371026,670.1837042371026,0.0 +7600,5165,5164,7,7,48,111,37,31,0,2879,0,80,0,0,2,5,2,4,2.5,2746.6965122,0,0,70740.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,28296.0,8,4,8,8_0,6859.0,0,6859.0,0,1,8,0.0,20.0,0.0,0,1,670.1837042371026,670.1837042371026,0.0 7601,5167,5166,1,1,71,111,75,50,0,2885,0,0,0,0,0,5,0,2,1.5,1769.46151611,0,0,40725.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,27150.0,8,4,8,8_0,10216.0,0,10216.0,0,1,1,0.0,0.0,0.0,0,0,998.1916784496631,998.1916784496631,0.0 7602,5176,5175,3,3,73,112,74,70,0,2899,0,0,0,0,0,5,0,2,1.5,1865.16676818,2725,0,38799.0,5,4,8,1,3,1,0,0,0,1,0,0,0,0,0,1,25866.0,8,4,8,8_0,4000.0,0,4000.0,0,2,2,0.0,0.0,0.0,0,0,390.83464308913983,390.83464308913983,0.0 7603,5181,5180,0,0,27,111,33,20,0,2905,0,0,0,345,1,1,0,1,1.0,3543.34090866,3550,0,27611.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,27611.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -7611,13 +7611,13 @@ 7609,5255,5254,1,2,82,112,75,70,2,3009,0,0,0,0,0,6,1,2,1.5,1866.65530622,0,24100,37750.0,5,1,6,0,2,1,0,0,1,0,0,0,0,0,0,1,25166.6666667,8,4,8,8_1,2000.0,0,2000.0,0,1,2,0.0,0.0,0.0,0,0,209.9159940839625,209.9159940839625,0.0 7610,5291,5290,1,5,33,112,46,31,2,3056,0,200,100,0,2,4,0,2,1.5,2759.97221047,3328,8000,41584.0,1,2,8,0,3,2,1,1,1,0,0,0,0,0,1,1,27722.6666667,8,4,8,8_1,30000.0,0,25000.0,5000,3,3,34.0,15.0,0.0,0,1,3148.7399112594376,2623.9499260495313,524.7899852099063 7611,5292,5291,8,9,59,400,77,71,0,3057,0,0,0,400,0,3,0,1,1.0,3486.41231211,3481,0,24884.0,7,3,0,0,1,1,0,0,1,0,0,0,0,0,1,0,24884.0,8,4,8,8_1,15000.0,0,0.0,15000,5,8,0.0,0.0,0.0,0,0,1574.3699556297188,0.0,1574.3699556297188 -7612,5296,5295,3,10,42,111,46,31,0,3065,0,0,0,0,3,7,4,6,2.9,1137.2149004,0,0,75517.0,4,2,9,7,4,1,1,0,0,0,0,1,0,0,0,1,26040.344827599998,8,4,8,8_0,10000.0,0,10000.0,0,5,9,0.0,16.6666666667,0.0,0,0,977.0866077228495,977.0866077228495,0.0 +7612,5296,5295,3,10,42,111,46,31,0,3065,0,0,0,0,3,7,4,6,2.9,1137.2149004,0,0,75517.0,4,2,9,7,4,1,1,0,0,0,0,1,0,0,0,1,26040.3448276,8,4,8,8_0,10000.0,0,10000.0,0,5,9,0.0,16.6666666667,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7613,5297,5296,3,8,25,111,42,31,0,3066,0,0,180,580,2,3,0,2,1.5,3144.61315981,7281,0,39039.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,1,0,26026.0,8,4,8,8_0,5892.0,0,0.0,5892,8,8,32.5,60.0,5.56,0,0,575.699429270303,0.0,575.699429270303 -7614,5305,5304,2,7,32,400,62,42,0,3073,0,360,0,0,2,5,1,3,1.8,1617.3074159000003,1411,0,50860.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,0,3,28255.5555556,8,4,8,8_1,20000.0,0,20000.0,0,6,9,0.0,38.6666666667,3.3,1,1,2099.159940839625,2099.159940839625,0.0 +7614,5305,5304,2,7,32,400,62,42,0,3073,0,360,0,0,2,5,1,3,1.8,1617.3074159,1411,0,50860.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,0,3,28255.5555556,8,4,8,8_1,20000.0,0,20000.0,0,6,9,0.0,38.6666666667,3.3,1,1,2099.159940839625,2099.159940839625,0.0 7615,5306,5305,4,5,75,112,75,71,0,3074,0,0,0,0,0,5,0,2,1.5,2167.52730033,1211,0,38072.0,5,1,6,1,3,1,0,0,0,1,0,0,0,0,0,1,25381.3333333,8,4,8,8_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,0,1465.6299115842744,1465.6299115842744,0.0 7616,5331,5330,0,13,51,111,34,10,0,3108,0,0,0,0,1,3,0,1,1.0,2618.40960645,0,0,25261.0,1,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,25261.0,8,4,8,8_0,28800.0,0,0.0,28800,2,12,119.0,75.0,3.3,0,1,2814.0094302418065,0.0,2814.0094302418065 7617,5334,5333,17,17,75,400,77,60,0,3111,0,0,0,0,0,5,0,1,1.0,3084.04817565,1565,0,28155.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,28155.0,8,4,8,8_1,1000.0,0,0.0,1000,17,17,0.0,0.0,0.0,0,0,104.95799704198124,0.0,104.95799704198124 -7618,5337,5336,1,1,41,111,11,50,2,3114,0,100,0,0,2,7,2,4,2.3,2891.0688078000003,0,23000,57368.0,1,1,8,6,4,1,0,1,0,0,1,0,0,0,0,1,24942.6086957,8,4,8,8_0,10000.0,0,10000.0,0,2,2,0.0,2.5,0.0,0,0,977.0866077228495,977.0866077228495,0.0 +7618,5337,5336,1,1,41,111,11,50,2,3114,0,100,0,0,2,7,2,4,2.3,2891.0688078,0,23000,57368.0,1,1,8,6,4,1,0,1,0,0,1,0,0,0,0,1,24942.6086957,8,4,8,8_0,10000.0,0,10000.0,0,2,2,0.0,2.5,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7619,5345,5344,1,7,33,111,47,20,0,3126,0,0,0,0,2,4,1,3,1.8,2855.29857824,0,0,46284.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,25713.3333333,8,4,8,8_0,6644.0,0,6644.0,0,1,6,48.0,30.0,5.5,0,0,649.1763421710613,649.1763421710613,0.0 7620,5353,5352,9,9,39,112,62,50,0,3134,0,0,0,455,2,1,0,2,1.5,2647.58801488,0,0,37684.0,1,3,10,5,3,1,0,0,0,0,1,0,0,0,1,0,25122.6666667,8,4,8,8_0,10000.0,0,0.0,10000,9,9,0.0,0.0,0.0,0,1,977.0866077228495,0.0,977.0866077228495 7621,5359,5358,4,4,38,120,47,31,0,3142,0,200,400,0,2,4,2,4,2.1,7739.97105001,2080,0,55612.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,26481.9047619,8,4,8,8_1,45000.0,0,20000.0,25000,5,5,215.0,24.75,3.3,0,1,4723.1098668891555,2099.159940839625,2623.9499260495313 @@ -7632,12 +7632,12 @@ 7630,5480,5479,19,27,70,111,56,70,0,3305,0,0,0,0,1,4,0,1,1.0,1171.87930778,1560,0,25350.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,25350.0,8,4,8,8_0,8561.0,0,0.0,8561,2,25,0.0,0.0,0.0,0,0,836.4838448715316,0.0,836.4838448715316 7631,5483,5482,0,0,50,111,54,31,0,331,0,0,0,505,1,1,0,1,1.0,3631.15102159,0,0,26063.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,26063.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7632,5484,5483,0,0,85,111,75,70,0,3310,0,0,0,0,0,3,0,1,1.0,2624.44833897,0,0,28800.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,28800.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -7633,5496,5495,8,8,65,111,75,31,0,3332,0,0,0,0,0,4,0,1,1.0,1948.3394477000002,0,0,25651.0,5,1,6,5,1,1,0,0,0,0,1,0,0,0,1,0,25651.0,8,4,8,8_0,12000.0,0,0.0,12000,6,6,0.0,0.0,0.0,0,0,1172.5039292674194,0.0,1172.5039292674194 +7633,5496,5495,8,8,65,111,75,31,0,3332,0,0,0,0,0,4,0,1,1.0,1948.3394477,0,0,25651.0,5,1,6,5,1,1,0,0,0,0,1,0,0,0,1,0,25651.0,8,4,8,8_0,12000.0,0,0.0,12000,6,6,0.0,0.0,0.0,0,0,1172.5039292674194,0.0,1172.5039292674194 7634,5497,5496,3,3,75,111,77,50,0,3334,0,0,0,0,0,3,0,1,1.0,2774.11680912,0,0,27176.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,27176.0,8,4,8,8_0,10000.0,0,0.0,10000,2,2,0.0,0.0,0.0,0,0,977.0866077228495,0.0,977.0866077228495 7635,5507,5506,2,2,74,112,75,60,0,3352,0,0,0,0,0,5,0,2,1.5,2659.29226928,0,0,41784.0,5,1,9,3,3,1,0,0,0,1,0,0,0,0,0,1,27856.0,8,4,8,8_0,4000.0,0,4000.0,0,2,2,0.0,0.0,0.0,0,0,390.83464308913983,390.83464308913983,0.0 7636,5540,5539,1,4,36,111,34,31,2,3397,0,200,0,0,2,3,0,2,1.5,2822.16071357,0,12000,43474.0,1,2,8,6,3,3,0,0,0,0,1,0,0,0,0,3,28982.6666667,8,4,8,8_0,12500.0,0,12500.0,0,4,4,0.0,9.0,3.3,0,1,1221.3582596535618,1221.3582596535618,0.0 7637,5556,5555,5,15,48,111,55,60,0,3417,0,80,0,0,1,6,0,1,1.0,4615.70820441,1300,0,28386.0,1,2,6,5,1,1,0,1,0,0,1,0,0,0,0,1,28386.0,8,4,8,8_0,6000.0,0,6000.0,0,6,14,134.0,150.0,3.3,0,1,586.2519646337097,586.2519646337097,0.0 -7638,5569,5568,4,23,51,111,43,31,0,3437,0,0,100,0,2,4,1,3,1.8,4967.09114942,1301,0,46366.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,2,0,25758.888888900005,8,4,8,8_0,500.0,0,0.0,500,5,23,49.0,29.5,3.3,0,1,48.85433038614248,0.0,48.85433038614248 +7638,5569,5568,4,23,51,111,43,31,0,3437,0,0,100,0,2,4,1,3,1.8,4967.09114942,1301,0,46366.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,2,0,25758.8888889,8,4,8,8_0,500.0,0,0.0,500,5,23,49.0,29.5,3.3,0,1,48.85433038614248,0.0,48.85433038614248 7639,5575,5574,2,2,77,112,75,50,0,3446,0,0,0,0,0,5,0,2,1.5,1268.93897624,1736,0,41762.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,27841.3333333,8,4,8,8_1,2000.0,0,2000.0,0,1,2,0.0,0.0,0.0,0,0,209.9159940839625,209.9159940839625,0.0 7640,5579,5578,9,9,57,400,62,50,0,3451,0,99999,0,0,3,5,1,3,2.0,1264.49491472,2080,0,49822.0,4,1,0,1,4,3,0,0,0,1,0,0,0,0,0,3,24911.0,8,4,8,8_0,12000.0,0,12000.0,0,3,7,134.0,30.0,3.3,0,1,1172.5039292674194,1172.5039292674194,0.0 7641,5582,5581,4,4,75,120,71,70,0,3459,0,0,0,0,0,7,0,2,1.5,1408.48149947,0,0,41082.0,5,1,0,3,3,2,0,0,0,1,0,0,0,0,0,2,27388.0,8,4,8,8_0,16144.0,0,16144.0,0,2,4,0.0,0.0,0.0,0,0,1577.4086195077682,1577.4086195077682,0.0 @@ -7655,7 +7655,7 @@ 7653,5708,5707,6,15,56,221,62,60,0,3623,0,600,50,0,4,5,2,4,2.5,3148.41236483,3900,0,67816.0,1,1,1,1,4,3,0,1,0,1,0,0,0,0,1,2,27126.4,8,4,8,8_0,2500.0,0,2500.0,0,4,10,0.0,0.0,0.0,0,1,244.27165193071238,244.27165193071238,0.0 7654,5725,5724,3,11,58,112,72,50,0,3643,0,0,0,0,0,6,0,2,1.5,1363.02092832,1560,0,42268.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,28178.6666667,8,4,8,8_1,23000.0,0,23000.0,0,5,9,0.0,0.0,0.0,0,0,2414.0339319655686,2414.0339319655686,0.0 7655,5744,5743,8,8,65,111,74,31,0,3667,0,0,0,0,0,2,0,2,1.5,2900.21801465,0,0,42815.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,28543.3333333,8,4,8,8_0,20000.0,0,0.0,20000,4,7,0.0,0.0,0.0,0,0,1954.173215445699,0.0,1954.173215445699 -7656,5766,5765,10,16,39,111,45,20,0,3696,0,100039,0,0,2,6,2,4,2.1,2372.94661678,2605,0,54414.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,25911.428571400003,8,4,8,8_0,10000.0,0,10000.0,0,5,15,44.8,13.75,3.3,0,1,977.0866077228495,977.0866077228495,0.0 +7656,5766,5765,10,16,39,111,45,20,0,3696,0,100039,0,0,2,6,2,4,2.1,2372.94661678,2605,0,54414.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,25911.4285714,8,4,8,8_0,10000.0,0,10000.0,0,5,15,44.8,13.75,3.3,0,1,977.0866077228495,977.0866077228495,0.0 7657,5774,5773,10,10,63,111,43,31,0,3703,0,0,0,0,1,4,0,2,1.5,3730.93487555,5720,0,38526.0,1,4,9,7,3,2,0,0,0,0,0,1,0,0,0,2,25684.0,8,4,8,8_0,12000.0,0,12000.0,0,9,9,0.0,0.0,0.0,0,1,1172.5039292674194,1172.5039292674194,0.0 7658,5776,5775,3,4,61,111,78,50,0,3705,0,0,0,0,0,6,0,2,1.5,2282.28686494,4291,0,39067.0,5,2,5,4,3,2,0,0,0,0,1,0,0,0,0,2,26044.6666667,8,4,8,8_0,25000.0,0,25000.0,0,2,3,0.0,0.0,0.0,0,0,2442.7165193071237,2442.7165193071237,0.0 7659,5778,5777,0,0,54,111,33,20,0,3709,0,0,0,427,1,3,1,2,1.5,2536.44384742,0,0,38390.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,25593.3333333,8,4,8,8_0,0.0,0,0.0,0,0,0,80.0,90.0,5.57,0,0,0.0,0.0,0.0 @@ -7675,33 +7675,33 @@ 7673,5864,5863,10,10,79,111,72,41,0,3818,0,0,0,0,0,3,0,2,1.5,4127.41870125,2704,0,41961.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,27974.0,8,4,8,8_0,600.0,0,0.0,600,10,11,0.0,0.0,0.0,0,0,58.62519646337097,0.0,58.62519646337097 7674,5869,5868,6,8,78,221,77,50,0,3826,0,0,0,0,0,8,0,2,1.5,1312.88545205,2132,0,38505.0,5,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,25670.0,8,4,8,8_0,10000.0,0,10000.0,0,5,5,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7675,5872,5871,0,1,58,111,37,50,0,3829,0,1200,0,0,1,6,0,1,1.0,2384.54367259,0,0,27455.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,0,1,27455.0,8,4,8,8_0,9000.0,0,9000.0,0,3,3,0.0,20.0,1.1,0,0,879.3779469505646,879.3779469505646,0.0 -7676,5876,5875,2,2,40,111,53,42,0,3837,0,80,0,0,2,5,2,4,2.1,1719.85599664,3121,0,59293.0,1,2,8,7,4,3,0,0,0,0,0,1,0,0,0,3,28234.761904799998,8,4,8,8_0,35144.0,0,35144.0,0,1,4,153.5,90.0,3.3,0,1,3433.8731741811825,3433.8731741811825,0.0 +7676,5876,5875,2,2,40,111,53,42,0,3837,0,80,0,0,2,5,2,4,2.1,1719.85599664,3121,0,59293.0,1,2,8,7,4,3,0,0,0,0,0,1,0,0,0,3,28234.7619048,8,4,8,8_0,35144.0,0,35144.0,0,1,4,153.5,90.0,3.3,0,1,3433.8731741811825,3433.8731741811825,0.0 7677,5885,5884,19,19,40,112,45,60,0,3851,0,450,0,0,2,5,0,2,1.5,1912.20001317,3903,0,40258.0,1,2,6,0,3,2,0,1,1,0,0,0,0,0,0,2,26838.6666667,8,4,8,8_1,35000.0,0,35000.0,0,6,17,189.5,65.0,3.3,0,1,3673.529896469344,3673.529896469344,0.0 7678,5908,5907,4,5,86,111,74,10,0,388,0,0,0,0,0,3,0,2,1.5,2756.41483192,0,0,42253.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,28168.6666667,8,4,8,8_0,10000.0,0,10000.0,0,5,5,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7679,5911,5910,1,11,38,111,46,31,0,3883,0,0,0,576,2,3,0,2,1.5,3546.5076555,8177,0,38586.0,1,3,9,7,3,2,0,0,0,0,0,1,0,0,1,1,25724.0,8,4,8,8_0,40000.0,0,30000.0,10000,4,7,132.5,45.0,3.3,0,1,3908.346430891398,2931.259823168549,977.0866077228495 7680,5913,5912,7,9,33,111,43,20,0,3885,0,50,0,0,1,2,0,1,1.0,3046.24383938,2600,0,28184.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,0,1,28184.0,8,4,8,8_0,12000.0,0,12000.0,0,6,6,0.0,0.0,0.0,0,1,1172.5039292674194,1172.5039292674194,0.0 7681,5934,5933,0,0,69,111,71,50,0,3916,0,0,0,0,1,4,0,2,1.5,3611.92659256,3120,0,41878.0,5,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,27918.6666667,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -7682,5938,5937,1,15,41,111,45,31,2,392,0,0,600,276,2,4,2,4,2.1,2935.86276353,2519,1000,59840.0,1,3,10,8,4,2,0,1,0,0,0,0,1,1,1,1,28495.238095200002,8,4,8,8_0,19572.0,0,11572.0,8000,7,10,20.0,26.25,3.3,0,1,1912.3539086351614,1130.6846224568815,781.6692861782797 +7682,5938,5937,1,15,41,111,45,31,2,392,0,0,600,276,2,4,2,4,2.1,2935.86276353,2519,1000,59840.0,1,3,10,8,4,2,0,1,0,0,0,0,1,1,1,1,28495.2380952,8,4,8,8_0,19572.0,0,11572.0,8000,7,10,20.0,26.25,3.3,0,1,1912.3539086351614,1130.6846224568815,781.6692861782797 7683,5949,5948,1,3,32,111,43,33,0,3934,0,100,100,0,2,3,1,3,1.8,4029.92059987,0,0,49223.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,27346.1111111,8,4,8,8_0,35000.0,0,25000.0,10000,3,3,143.6,30.0,3.3,0,1,3419.8031270299734,2442.7165193071237,977.0866077228495 -7684,5952,5951,5,10,25,111,55,31,0,3937,0,300,150,640,2,2,0,2,1.5,4882.0015803999995,0,0,41407.0,1,3,10,8,3,2,0,1,0,0,0,0,1,0,1,1,27604.6666667,8,4,8,8_0,25000.0,0,15000.0,10000,4,7,181.0,40.0,3.3,0,1,2442.7165193071237,1465.6299115842744,977.0866077228495 +7684,5952,5951,5,10,25,111,55,31,0,3937,0,300,150,640,2,2,0,2,1.5,4882.0015804,0,0,41407.0,1,3,10,8,3,2,0,1,0,0,0,0,1,0,1,1,27604.6666667,8,4,8,8_0,25000.0,0,15000.0,10000,4,7,181.0,40.0,3.3,0,1,2442.7165193071237,1465.6299115842744,977.0866077228495 7685,5972,5971,2,2,34,111,65,43,0,3966,0,44,60,461,2,3,0,2,1.5,2561.49484863,0,0,37976.0,1,3,8,7,3,2,0,1,0,0,0,1,0,0,1,1,25317.3333333,8,4,8,8_0,11850.0,0,1850.0,10000,1,1,189.4,35.0,3.3,0,1,1157.8476301515768,180.7610224287272,977.0866077228495 7686,5990,5989,29,29,60,120,75,60,0,3994,0,0,0,0,0,6,0,2,1.5,2356.00651013,0,0,39557.0,5,1,0,3,3,3,0,0,0,1,0,0,0,0,0,3,26371.3333333,8,4,8,8_0,10000.0,0,10000.0,0,17,19,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7687,6003,6002,5,9,69,111,77,70,0,4012,0,0,0,0,0,2,0,1,1.0,3264.93718531,2965,0,25440.0,5,1,6,5,1,2,0,0,0,0,1,0,0,0,0,2,25440.0,8,4,8,8_0,2000.0,0,2000.0,0,7,7,0.0,0.0,0.0,0,0,195.41732154456992,195.41732154456992,0.0 7688,6011,6010,0,0,38,111,46,31,0,4021,0,0,0,310,1,1,0,1,1.0,4128.67992249,0,0,26602.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,26602.0,8,4,8,8_0,0.0,0,0.0,0,0,0,26.5,40.0,5.56,0,0,0.0,0.0,0.0 -7689,6025,6024,7,7,44,211,37,20,0,4042,0,400,0,0,1,4,1,2,1.3,1912.82705975,0,0,35320.0,1,2,4,4,2,1,0,1,0,0,1,0,0,0,0,1,27169.230769200003,8,4,8,8_0,10500.0,0,10500.0,0,3,5,56.4,44.0,3.31,0,1,1025.940938108992,1025.940938108992,0.0 +7689,6025,6024,7,7,44,211,37,20,0,4042,0,400,0,0,1,4,1,2,1.3,1912.82705975,0,0,35320.0,1,2,4,4,2,1,0,1,0,0,1,0,0,0,0,1,27169.2307692,8,4,8,8_0,10500.0,0,10500.0,0,3,5,56.4,44.0,3.31,0,1,1025.940938108992,1025.940938108992,0.0 7690,6026,6025,2,5,27,111,63,43,0,4043,0,100,10,0,2,3,0,2,1.5,3168.55091903,5781,0,38215.0,1,2,10,8,3,2,0,1,0,0,0,0,1,0,1,1,25476.6666667,8,4,8,8_0,25000.0,0,15000.0,10000,4,7,181.0,40.0,3.3,0,1,2442.7165193071237,1465.6299115842744,977.0866077228495 7691,6032,6031,11,11,58,111,65,71,0,4055,0,0,0,0,2,4,0,2,1.5,3023.93245285,0,0,38817.0,1,2,10,8,3,2,0,0,0,0,0,0,1,0,0,2,25878.0,8,4,8,8_0,22000.0,0,22000.0,0,3,4,0.0,25.0,0.0,1,1,2149.590536990269,2149.590536990269,0.0 7692,6034,6033,8,11,55,112,45,20,0,4057,0,0,99999,0,2,3,1,2,1.5,992.56250766,2622,0,40630.0,1,1,9,2,2,1,0,1,0,1,0,0,0,0,1,0,27086.6666667,8,4,8,8_0,9500.0,0,0.0,9500,11,11,0.0,25.0,2.2,0,0,928.2322773367072,0.0,928.2322773367072 7693,6051,6050,6,6,55,111,52,71,0,408,0,0,0,0,1,4,0,2,1.5,1560.78274637,0,0,37499.0,1,1,6,4,3,1,0,0,0,0,1,0,0,0,0,1,24999.3333333,8,4,8,8_0,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,1954.173215445699,1954.173215445699,0.0 7694,6054,6053,4,7,65,112,72,50,0,4082,0,0,0,0,0,4,0,2,1.5,2140.66236593,0,0,38058.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,25372.0,8,4,8,8_1,33000.0,0,25000.0,8000,6,6,0.0,0.0,0.0,0,0,3463.613902385381,2623.9499260495313,839.66397633585 -7695,6067,6066,2,2,52,211,43,33,0,410,180,400,0,0,2,6,1,3,2.0,1827.6019938000002,0,0,51775.0,1,1,1,2,4,3,0,1,0,1,0,0,0,0,0,2,25887.5,8,4,8,8_0,25416.0,0,10416.0,15000,0,1,272.5,36.6666666667,3.3,0,1,2483.3633221883942,1017.7334106041201,1465.6299115842744 +7695,6067,6066,2,2,52,211,43,33,0,410,180,400,0,0,2,6,1,3,2.0,1827.6019938,0,0,51775.0,1,1,1,2,4,3,0,1,0,1,0,0,0,0,0,2,25887.5,8,4,8,8_0,25416.0,0,10416.0,15000,0,1,272.5,36.6666666667,3.3,0,1,2483.3633221883942,1017.7334106041201,1465.6299115842744 7696,6075,6074,11,21,53,400,11,50,0,4110,0,280,0,0,2,5,0,2,1.5,1615.11475908,0,0,38410.0,1,1,0,0,3,2,1,1,1,0,0,0,0,0,0,2,25606.6666667,8,4,8,8_1,12000.0,0,12000.0,0,8,17,0.0,1.0,0.0,0,1,1259.495964503775,1259.495964503775,0.0 7697,6081,6080,5,5,66,112,11,30,0,4118,0,0,550,0,1,8,0,1,1.0,2454.26936959,6333,0,27656.0,1,1,10,0,1,2,0,0,1,0,0,0,0,0,1,1,27656.0,8,4,8,8_1,24608.0,0,20000.0,4608,4,8,0.0,100.0,3.31,0,1,2582.8063912090743,2099.159940839625,483.64645036944955 7698,6082,6081,2,10,51,400,85,10,0,4119,0,0,0,0,0,5,0,1,1.0,1753.38471754,0,0,25994.0,4,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,25994.0,8,4,8,8_1,25000.0,0,0.0,25000,12,12,0.0,0.0,0.0,0,0,2623.9499260495313,0.0,2623.9499260495313 7699,6101,6100,3,9,52,112,62,50,0,4143,0,0,0,0,1,7,0,2,1.5,2128.55215527,3375,0,37680.0,1,1,9,0,3,1,0,0,1,0,0,0,0,0,0,1,25120.0,8,4,8,8_1,55000.0,0,55000.0,0,5,6,0.0,0.0,0.0,0,1,5772.689837308969,5772.689837308969,0.0 7700,6103,6102,9,11,58,111,56,50,0,4146,0,0,20,0,1,3,0,1,1.0,1255.13153188,0,0,24860.0,1,1,5,4,1,1,0,1,0,0,1,0,0,0,1,0,24860.0,8,4,8,8_0,7000.0,0,0.0,7000,11,11,0.0,70.0,5.5,0,0,683.9606254059947,0.0,683.9606254059947 7701,6106,6105,5,5,49,112,42,50,0,415,0,80,140,0,2,4,1,3,2.0,1724.97316259,3432,0,55864.0,1,1,9,3,4,2,0,1,0,1,0,0,0,0,1,1,27932.0,8,4,8,8_0,3700.0,0,2500.0,1200,4,5,162.5,25.3333333333,3.3,0,1,361.5220448574544,244.27165193071238,117.25039292674194 -7702,6109,6108,6,6,50,112,38,31,0,4153,0,0,0,0,2,4,2,4,2.5,2424.8075323000003,12584,0,63463.0,4,2,9,0,4,2,0,0,1,0,0,0,0,0,1,1,25385.2,8,4,8,8_1,39029.0,0,16353.0,22676,2,5,205.1,60.0,3.3,0,1,4096.405666551486,1716.3781256275192,2380.0275409239666 +7702,6109,6108,6,6,50,112,38,31,0,4153,0,0,0,0,2,4,2,4,2.5,2424.8075323,12584,0,63463.0,4,2,9,0,4,2,0,0,1,0,0,0,0,0,1,1,25385.2,8,4,8,8_1,39029.0,0,16353.0,22676,2,5,205.1,60.0,3.3,0,1,4096.405666551486,1716.3781256275192,2380.0275409239666 7703,6118,6117,6,10,71,111,75,41,0,4167,0,0,0,0,0,5,0,2,1.5,1297.41796296,0,0,42671.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,28447.3333333,8,4,8,8_0,20682.0,0,13682.0,7000,7,10,0.0,0.0,0.0,0,0,2020.8105220923976,1336.8498966864026,683.9606254059947 7704,6126,6125,5,5,71,111,78,50,0,4177,0,0,0,0,0,4,0,2,1.5,1847.69352099,0,0,42035.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,28023.3333333,8,4,8,8_0,10899.0,0,0.0,10899,6,6,0.0,0.0,0.0,0,0,1064.9266937571338,0.0,1064.9266937571338 7705,6141,6140,3,8,30,111,43,33,0,4201,0,0,500,0,2,3,0,2,1.5,3878.43921389,3120,0,41536.0,1,2,9,7,3,2,0,1,0,0,0,1,0,0,1,1,27690.6666667,8,4,8,8_0,32943.0,0,17343.0,15600,5,9,65.5,40.0,3.3,0,1,3218.8164118213836,1694.561303773738,1524.2551080476453 @@ -7734,12 +7734,12 @@ 7732,6390,6389,20,23,48,111,62,71,0,4560,0,90,160,0,2,4,0,2,1.5,2351.772759,0,0,38786.0,1,1,7,5,3,3,0,0,0,0,1,0,0,0,1,1,25857.3333333,8,4,8,8_0,70000.0,0,60000.0,10000,14,14,0.0,5.0,0.0,0,1,6839.606254059947,5862.519646337098,977.0866077228495 7733,6393,6392,3,7,36,111,46,31,0,4565,0,200,0,0,2,4,2,4,2.1,6523.61132229,3224,0,58298.0,1,2,6,4,4,1,0,1,0,0,1,0,0,0,0,1,27760.952381,8,4,8,8_0,12000.0,0,12000.0,0,2,7,0.0,20.0,0.0,0,1,1172.5039292674194,1172.5039292674194,0.0 7734,6430,6429,2,5,60,111,74,41,0,4612,0,0,0,0,0,6,0,2,1.5,3259.74171431,4990,0,42191.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,2,0,28127.3333333,8,4,8,8_0,8500.0,0,0.0,8500,6,6,0.0,0.0,0.0,0,0,830.5236165644221,0.0,830.5236165644221 -7735,6433,6432,0,6,47,111,47,50,0,4618,0,120,0,0,2,5,2,4,2.1,1187.12170877,0,0,52705.0,1,1,7,5,4,2,0,1,0,0,1,0,0,0,0,2,25097.619047599997,8,4,8,8_0,36000.0,0,36000.0,0,2,5,446.5,18.3333333333,0.0,1,1,3517.5117878022584,3517.5117878022584,0.0 +7735,6433,6432,0,6,47,111,47,50,0,4618,0,120,0,0,2,5,2,4,2.1,1187.12170877,0,0,52705.0,1,1,7,5,4,2,0,1,0,0,1,0,0,0,0,2,25097.6190476,8,4,8,8_0,36000.0,0,36000.0,0,2,5,446.5,18.3333333333,0.0,1,1,3517.5117878022584,3517.5117878022584,0.0 7736,6435,6434,0,7,24,112,42,10,0,4620,0,300,0,630,2,5,0,2,1.5,3504.41417957,3596,0,39613.0,1,3,9,0,3,2,0,1,1,0,0,0,0,0,1,1,26408.6666667,8,4,8,8_1,54001.0,0,34001.0,20000,4,10,38.0,10.0,3.3,0,1,5667.836798264029,3568.6768574244047,2099.159940839625 7737,6444,6443,1,3,50,112,46,50,0,4631,0,340,50,0,2,7,1,3,2.0,1347.51258478,1446,0,50167.0,1,1,9,0,4,2,0,1,1,0,0,0,0,0,1,1,25083.5,8,4,8,8_1,50000.0,20000,30000.0,0,5,5,136.0,20.0,3.3,0,1,5247.899852099063,3148.7399112594376,0.0 -7738,6447,6446,21,21,55,111,78,50,0,4635,0,0,450,556,3,4,2,4,2.5,1299.90813128,3173,0,62793.0,5,3,10,8,4,2,0,0,0,0,0,0,1,0,2,0,25117.2,8,4,8,8_0,15000.0,0,0.0,15000,5,22,112.8,146.66666666700002,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 +7738,6447,6446,21,21,55,111,78,50,0,4635,0,0,450,556,3,4,2,4,2.5,1299.90813128,3173,0,62793.0,5,3,10,8,4,2,0,0,0,0,0,0,1,0,2,0,25117.2,8,4,8,8_0,15000.0,0,0.0,15000,5,22,112.8,146.666666667,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 7739,6458,6457,6,6,74,111,75,30,0,4648,0,0,0,0,0,6,0,1,1.0,3011.79688157,0,0,27504.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,27504.0,8,4,8,8_0,1000.0,0,0.0,1000,6,6,0.0,0.0,0.0,0,0,97.70866077228496,0.0,97.70866077228496 -7740,6471,6470,0,0,54,111,56,71,0,4666,0,0,0,392,2,1,1,3,1.8,3517.62043082,0,0,50890.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,28272.222222200002,8,4,8,8_0,0.0,0,0.0,0,0,0,95.0,113.333333333,5.5,0,0,0.0,0.0,0.0 +7740,6471,6470,0,0,54,111,56,71,0,4666,0,0,0,392,2,1,1,3,1.8,3517.62043082,0,0,50890.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,28272.2222222,8,4,8,8_0,0.0,0,0.0,0,0,0,95.0,113.333333333,5.5,0,0,0.0,0.0,0.0 7741,6480,6479,4,4,59,111,77,42,0,4681,0,0,0,0,0,4,0,1,1.0,2886.42661256,2600,0,26434.0,7,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,26434.0,8,4,8,8_0,8216.0,0,8216.0,0,1,4,0.0,0.0,0.0,0,0,802.7743569050932,802.7743569050932,0.0 7742,6481,6480,4,4,42,111,42,20,0,4682,0,0,0,1,1,2,0,1,1.0,3610.38195542,0,0,25514.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,25514.0,8,4,8,8_0,10000.0,0,0.0,10000,2,4,61.5,40.0,3.3,0,1,977.0866077228495,0.0,977.0866077228495 7743,6490,6489,3,3,64,112,75,31,0,4692,0,0,0,0,0,7,0,2,1.5,2207.38693936,0,0,37324.0,5,1,7,4,3,1,0,0,0,0,1,0,0,0,0,1,24882.6666667,8,4,8,8_0,13000.0,0,13000.0,0,4,4,0.0,0.0,0.0,0,0,1270.2125900397043,1270.2125900397043,0.0 @@ -7749,26 +7749,26 @@ 7747,6549,6548,3,10,33,111,33,10,0,4777,0,20,10,543,2,3,0,2,1.5,2292.35305151,0,0,40081.0,1,3,7,6,3,2,0,1,0,0,1,0,0,0,1,1,26720.6666667,8,4,8,8_0,32943.0,0,17343.0,15600,5,9,65.5,40.0,3.3,0,1,3218.8164118213836,1694.561303773738,1524.2551080476453 7748,6552,6551,4,4,37,111,48,50,0,478,0,200,0,0,2,5,1,3,1.8,1840.272538,7117,0,47568.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,26426.6666667,8,4,8,8_0,27000.0,0,27000.0,0,4,4,50.4,66.6666666667,3.31,0,1,2638.133840851694,2638.133840851694,0.0 7749,6562,6561,6,6,51,111,63,50,0,4791,0,99999,21,0,2,4,0,2,1.5,881.145585977,0,0,37358.0,1,1,6,4,3,2,0,1,0,0,1,0,0,0,1,1,24905.3333333,8,4,8,8_0,11913.0,0,8000.0,3913,6,7,0.0,4.0,3.3,0,0,1164.0032757802308,781.6692861782797,382.333989601951 -7750,6569,6568,0,4,38,111,22,50,0,4799,0,0,0,0,2,5,2,4,2.1,3162.55676719,0,0,52405.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,24954.761904799998,8,4,8,8_0,43491.0,0,42891.0,600,2,3,39.4,33.75,0.0,0,1,4249.447365647445,4190.8221691840745,58.62519646337097 +7750,6569,6568,0,4,38,111,22,50,0,4799,0,0,0,0,2,5,2,4,2.1,3162.55676719,0,0,52405.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,24954.7619048,8,4,8,8_0,43491.0,0,42891.0,600,2,3,39.4,33.75,0.0,0,1,4249.447365647445,4190.8221691840745,58.62519646337097 7751,6582,6581,2,14,48,300,62,50,0,4821,0,1120,180,0,3,6,1,3,2.0,1491.56630973,3400,0,49705.0,1,2,0,0,4,4,0,0,1,0,0,0,0,0,2,2,24852.5,8,4,8,8_1,32000.0,0,17000.0,15000,5,18,107.0,23.3333333333,3.3,0,1,3358.6559053434,1784.2859497136812,1574.3699556297188 7752,6597,6596,10,11,36,112,34,20,0,4842,0,0,0,0,1,2,0,1,1.0,1930.30393669,0,0,25834.0,1,3,7,0,1,1,0,0,1,0,0,0,0,0,0,1,25834.0,8,4,8,8_1,25000.0,0,25000.0,0,5,11,24.5,20.0,3.3,0,1,2623.9499260495313,2623.9499260495313,0.0 -7753,6605,6604,5,5,41,112,34,10,0,4853,0,0,200,0,1,5,2,4,2.1,1305.77393234,4372,0,60397.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,1,1,28760.476190499998,8,4,8,8_1,45000.0,0,35000.0,10000,3,4,61.6,19.75,3.3,1,1,4723.1098668891555,3673.529896469344,1049.5799704198125 +7753,6605,6604,5,5,41,112,34,10,0,4853,0,0,200,0,1,5,2,4,2.1,1305.77393234,4372,0,60397.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,1,1,28760.4761905,8,4,8,8_1,45000.0,0,35000.0,10000,3,4,61.6,19.75,3.3,1,1,4723.1098668891555,3673.529896469344,1049.5799704198125 7754,6619,6618,4,4,47,112,37,31,0,4871,0,1700,0,0,2,5,2,4,2.1,1912.90383309,3484,0,56803.0,1,1,8,0,4,2,0,1,1,0,0,0,0,0,0,2,27049.047619,8,4,8,8_1,16000.0,0,16000.0,0,3,4,0.0,0.0,0.0,0,0,1679.3279526717,1679.3279526717,0.0 7755,6622,6621,8,10,73,111,75,70,0,4876,0,0,0,0,1,4,1,3,2.0,1906.7892053,1084,0,51998.0,5,1,7,5,4,1,0,0,0,0,1,0,0,0,0,1,25999.0,8,4,8,8_0,25000.0,0,25000.0,0,6,9,0.0,0.0,0.0,0,0,2442.7165193071237,2442.7165193071237,0.0 7756,6625,6624,0,0,50,111,52,60,1,4880,0,99999,0,0,3,3,1,3,2.0,3210.23666719,2080,26000,57156.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,28578.0,8,4,8,8_0,10704.0,0,0.0,10704,2,0,0.0,2.0,1.1,0,0,1045.873504906538,0.0,1045.873504906538 7757,6633,6632,5,5,76,111,75,70,0,4890,0,0,0,0,0,4,0,2,1.5,1742.61035547,0,0,40987.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,27324.6666667,8,4,8,8_0,6000.0,0,0.0,6000,7,7,0.0,0.0,0.0,0,0,586.2519646337097,0.0,586.2519646337097 -7758,6637,6636,7,7,69,112,75,70,0,490,0,0,0,0,0,4,0,2,1.5,611.8753071169999,1811,0,40422.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,26948.0,8,4,8,8_1,10700.0,0,6000.0,4700,6,6,0.0,0.0,0.0,0,0,1123.0505683491992,629.7479822518875,493.30258609731186 -7759,6644,6643,0,14,56,111,46,50,0,4910,0,0,15,0,2,5,1,3,2.0,971.4648090489999,0,0,57644.0,1,1,7,5,4,2,0,1,0,0,1,0,0,0,2,0,28822.0,8,4,8,8_0,20000.0,0,0.0,20000,3,12,0.0,0.0,0.0,0,1,1954.173215445699,0.0,1954.173215445699 +7758,6637,6636,7,7,69,112,75,70,0,490,0,0,0,0,0,4,0,2,1.5,611.875307117,1811,0,40422.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,26948.0,8,4,8,8_1,10700.0,0,6000.0,4700,6,6,0.0,0.0,0.0,0,0,1123.0505683491992,629.7479822518875,493.30258609731186 +7759,6644,6643,0,14,56,111,46,50,0,4910,0,0,15,0,2,5,1,3,2.0,971.464809049,0,0,57644.0,1,1,7,5,4,2,0,1,0,0,1,0,0,0,2,0,28822.0,8,4,8,8_0,20000.0,0,0.0,20000,3,12,0.0,0.0,0.0,0,1,1954.173215445699,0.0,1954.173215445699 7760,6653,6652,1,1,60,111,43,33,1,4920,0,0,150,0,1,5,0,2,1.5,2074.8350638,3863,19500,38819.0,1,1,8,7,3,1,1,1,0,0,0,1,0,0,1,0,25879.3333333,8,4,8,8_0,1100.0,0,0.0,1100,1,1,0.0,0.0,0.0,0,0,107.47952684951345,0.0,107.47952684951345 7761,6688,6687,11,11,53,111,47,41,0,4974,0,0,60,0,4,5,2,4,2.5,1792.68597417,1561,0,62428.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,24971.2,8,4,8,8_0,22726.0,0,22726.0,0,4,4,65.0,30.0,1.1,0,0,2220.527024710948,2220.527024710948,0.0 7762,6695,6694,7,7,46,111,52,50,0,4986,0,0,0,368,2,4,0,2,1.5,2235.84576072,0,0,39791.0,1,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,26527.3333333,8,4,8,8_0,15000.0,0,0.0,15000,7,7,32.8,20.0,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 7763,6706,6705,1,5,69,221,78,50,0,4998,0,0,0,0,0,3,0,1,1.0,1901.04955626,3120,0,26200.0,5,1,1,3,1,1,0,0,0,1,0,0,0,0,0,1,26200.0,8,4,8,8_0,10000.0,0,10000.0,0,2,3,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7764,6708,6707,2,2,69,112,77,70,0,50,0,0,0,0,0,4,0,1,1.0,1641.86881776,0,0,25153.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,25153.0,8,4,8,8_1,27000.0,0,0.0,27000,2,2,0.0,0.0,0.0,0,0,2833.865920133494,0.0,2833.865920133494 7765,6711,6710,3,5,53,111,38,50,0,5003,0,80,0,0,2,7,1,3,2.0,1436.30750159,2321,0,56100.0,1,1,6,4,4,2,0,1,0,0,1,0,0,0,0,2,28050.0,8,4,8,8_0,68000.0,0,68000.0,0,4,4,129.6,20.0,0.0,0,1,6644.188932515377,6644.188932515377,0.0 -7766,6718,6717,4,13,49,111,45,43,0,5012,0,0,0,0,2,7,3,5,2.6,2939.88318616,5091,0,67062.0,1,2,4,4,4,2,1,0,0,0,1,0,0,0,1,1,25793.076923099998,8,4,8,8_0,16000.0,0,13000.0,3000,13,14,268.0,27.5,3.3,0,1,1563.3385723565593,1270.2125900397043,293.12598231685485 +7766,6718,6717,4,13,49,111,45,43,0,5012,0,0,0,0,2,7,3,5,2.6,2939.88318616,5091,0,67062.0,1,2,4,4,4,2,1,0,0,0,1,0,0,0,1,1,25793.0769231,8,4,8,8_0,16000.0,0,13000.0,3000,13,14,268.0,27.5,3.3,0,1,1563.3385723565593,1270.2125900397043,293.12598231685485 7767,6731,6730,3,3,50,111,33,12,0,5025,0,0,0,0,2,5,1,3,1.8,2721.93976878,0,0,50110.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,1,1,27838.8888889,8,4,8,8_0,58000.0,0,40000.0,18000,3,3,267.1,55.0,3.3,0,1,5667.102324792528,3908.346430891398,1758.7558939011292 7768,6737,6736,3,12,51,120,53,50,0,5032,0,200,80,0,3,4,2,4,2.5,1479.65605766,4384,0,64391.0,1,4,0,0,4,4,0,1,1,0,0,0,0,0,2,2,25756.4,8,4,8,8_1,19460.0,0,10000.0,9460,2,15,575.6,58.25,3.3,0,1,2042.4826224369551,1049.5799704198125,992.9026520171426 -7769,6740,6739,2,2,56,111,54,42,0,5039,0,0,110,980,1,3,0,1,1.0,3266.8636005999997,1045,0,25270.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,25270.0,8,4,8,8_0,4500.0,0,0.0,4500,1,1,23.0,50.0,3.3,0,1,439.6889734752823,0.0,439.6889734752823 +7769,6740,6739,2,2,56,111,54,42,0,5039,0,0,110,980,1,3,0,1,1.0,3266.8636006,1045,0,25270.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,25270.0,8,4,8,8_0,4500.0,0,0.0,4500,1,1,23.0,50.0,3.3,0,1,439.6889734752823,0.0,439.6889734752823 7770,6745,6744,0,0,87,111,75,70,0,5048,0,0,0,0,0,4,0,2,1.5,4217.11732364,0,0,38142.0,5,1,8,6,3,0,0,0,0,0,1,0,0,0,0,0,25428.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7771,6751,6750,2,2,62,111,77,41,0,5056,0,0,0,0,2,6,2,4,2.5,3225.62979631,0,0,66440.0,5,1,10,8,4,2,1,0,0,0,0,0,1,0,2,0,26576.0,8,4,8,8_0,485.0,0,0.0,485,0,0,258.5,106.666666667,5.57,0,0,47.388700474558206,0.0,47.388700474558206 7772,6763,6762,7,17,48,120,63,50,0,5072,0,135,0,0,1,4,0,3,2.0,3570.35976549,0,0,51907.0,1,3,0,2,5,1,0,1,0,1,0,0,0,1,0,1,25953.5,8,4,8,8_0,40000.0,0,40000.0,0,6,9,0.0,2.0,0.0,0,1,3908.346430891398,3908.346430891398,0.0 @@ -7793,7 +7793,7 @@ 7791,6879,6878,4,4,67,112,75,42,0,5226,0,0,0,0,0,4,0,2,1.5,3583.14501016,3640,0,38010.0,5,1,7,1,3,2,0,0,0,1,0,0,0,0,0,2,25340.0,8,4,8,8_0,3000.0,0,3000.0,0,4,4,0.0,0.0,0.0,0,0,293.12598231685485,293.12598231685485,0.0 7792,6880,6879,0,0,37,111,43,20,0,5228,0,250,0,0,1,4,1,2,1.3,2956.97095262,0,0,34283.0,1,4,9,7,2,1,1,1,0,0,0,1,0,0,0,1,26371.5384615,8,4,8,8_0,7700.0,0,7700.0,0,1,1,20.5,20.0,3.3,1,0,752.3566879465942,752.3566879465942,0.0 7793,6887,6886,23,23,61,111,77,50,0,5239,0,0,0,0,1,6,0,2,1.5,2318.18172053,0,0,40550.0,5,1,4,3,3,2,0,0,0,1,0,0,0,0,1,1,27033.3333333,8,4,8,8_0,500.0,0,0.0,500,8,20,0.0,0.0,0.0,0,1,48.85433038614248,0.0,48.85433038614248 -7794,6893,6892,1,8,32,111,46,31,2,5244,0,1400,0,642,2,4,0,2,1.5,2759.9973449999998,2917,4000,41037.0,1,3,8,7,3,3,1,1,0,0,0,1,0,0,1,2,27358.0,8,4,8,8_0,22336.0,0,22336.0,0,2,8,112.8,45.0,3.3,0,1,2182.420647009757,2182.420647009757,0.0 +7794,6893,6892,1,8,32,111,46,31,2,5244,0,1400,0,642,2,4,0,2,1.5,2759.997345,2917,4000,41037.0,1,3,8,7,3,3,1,1,0,0,0,1,0,0,1,2,27358.0,8,4,8,8_0,22336.0,0,22336.0,0,2,8,112.8,45.0,3.3,0,1,2182.420647009757,2182.420647009757,0.0 7795,6895,6894,14,14,66,111,74,31,0,5246,0,0,0,0,0,5,0,2,1.5,2672.99672314,2601,0,40254.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,26836.0,8,4,8,8_0,7000.0,0,7000.0,0,6,13,0.0,0.0,0.0,0,0,683.9606254059947,683.9606254059947,0.0 7796,6902,6901,2,2,39,111,54,31,0,5254,0,220,72,0,2,5,2,4,2.1,1848.93753542,0,0,55218.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,26294.2857143,8,4,8,8_0,15500.0,0,12000.0,3500,2,2,90.0,8.5,3.3,0,1,1514.4842419704166,1172.5039292674194,341.98031270299737 7797,6903,6902,2,2,52,111,46,10,0,5255,0,150,0,0,1,6,1,3,1.8,2106.71547341,2916,0,49520.0,1,1,9,7,5,1,0,1,0,0,0,1,0,0,0,1,27511.1111111,8,4,8,8_0,0.0,0,0.0,0,3,3,0.0,0.0,0.0,0,1,0.0,0.0,0.0 @@ -7805,7 +7805,7 @@ 7803,6978,6977,7,8,35,112,46,10,0,5352,0,350,0,0,2,5,2,4,2.1,2082.70633062,0,0,59991.0,1,2,10,4,4,2,0,1,0,0,1,0,0,0,1,1,28567.1428571,8,4,8,8_0,24144.0,0,11144.0,13000,9,9,0.0,27.5,3.31,0,1,2359.077905686048,1088.8653156463436,1270.2125900397043 7804,7002,7001,3,11,52,111,52,41,0,5384,0,650,500,0,2,4,1,3,2.0,1958.78173261,2547,0,55612.0,1,2,6,5,4,3,0,0,0,0,1,0,0,0,1,2,27806.0,8,4,8,8_0,23000.0,0,20000.0,3000,10,10,850.1,70.0,3.3,0,1,2247.299197762554,1954.173215445699,293.12598231685485 7805,7005,7004,2,2,49,111,38,10,0,5389,0,0,50,0,2,5,3,5,2.4,1268.25494583,0,0,64521.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,26883.75,8,4,8,8_0,20000.0,0,10000.0,10000,4,6,57.1,25.0,3.31,0,1,1954.173215445699,977.0866077228495,977.0866077228495 -7806,7014,7013,3,3,32,111,38,10,0,5403,0,400,0,0,2,3,1,3,1.8,3210.85324817,2652,0,48175.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,26763.888888900005,8,4,8,8_0,17343.0,0,17343.0,0,1,3,0.0,10.0,3.31,0,1,1694.561303773738,1694.561303773738,0.0 +7806,7014,7013,3,3,32,111,38,10,0,5403,0,400,0,0,2,3,1,3,1.8,3210.85324817,2652,0,48175.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,26763.8888889,8,4,8,8_0,17343.0,0,17343.0,0,1,3,0.0,10.0,3.31,0,1,1694.561303773738,1694.561303773738,0.0 7807,7018,7017,6,6,78,221,77,70,0,541,0,0,0,0,0,5,0,2,1.5,3232.41011795,0,0,38073.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,1,1,25382.0,8,4,8,8_0,22000.0,0,12000.0,10000,6,6,0.0,0.0,0.0,0,0,2149.590536990269,1172.5039292674194,977.0866077228495 7808,7023,7022,0,8,23,111,84,20,0,5418,0,0,0,102,1,3,0,2,1.5,3178.06181745,0,0,37367.0,3,3,8,6,5,1,0,0,0,0,1,0,0,1,0,1,24911.3333333,8,4,8,8_0,4488.0,0,0.0,4488,1,9,0.0,0.0,0.0,0,1,438.5164695460149,0.0,438.5164695460149 7809,7052,7051,2,17,26,111,62,50,0,5452,0,0,100049,0,2,5,0,2,1.5,1786.13011795,2080,0,40223.0,1,3,7,5,3,3,0,1,0,0,1,0,0,0,3,0,26815.3333333,8,4,8,8_0,12000.0,0,0.0,12000,14,15,44.5,77.5,3.3,0,1,1172.5039292674194,0.0,1172.5039292674194 @@ -7815,13 +7815,13 @@ 7813,7096,7095,5,5,57,211,74,50,0,5512,0,0,0,0,0,5,0,2,1.5,1323.97930042,0,0,40295.0,5,1,3,3,3,2,0,0,0,1,0,0,0,0,1,1,26863.3333333,8,4,8,8_0,18000.0,0,15000.0,3000,3,3,0.0,0.0,0.0,0,0,1758.7558939011292,1465.6299115842744,293.12598231685485 7814,7097,7096,1,1,58,112,72,20,1,5514,0,0,0,0,0,6,0,2,1.5,2479.91572165,2340,20000,39240.0,5,2,6,0,3,1,0,0,1,0,0,0,0,0,0,1,26160.0,8,4,8,8_1,18000.0,0,18000.0,0,1,1,0.0,0.0,0.0,0,0,1889.2439467556624,1889.2439467556624,0.0 7815,7105,7104,5,5,44,112,21,50,0,5523,0,420,300,0,2,4,2,4,2.3,2757.42334484,3121,0,62662.0,1,1,7,0,4,2,0,1,1,0,0,0,0,0,1,1,27244.3478261,8,4,8,8_1,50672.0,0,15672.0,35000,5,5,178.0,51.6666666667,3.3,1,0,5318.4316261112735,1644.9017296419302,3673.529896469344 -7816,7107,7106,6,10,29,111,62,50,0,5525,0,500,300,530,2,5,1,3,1.8,2217.8131336999995,5461,0,45413.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,1,1,25229.4444444,8,4,8,8_0,26000.0,0,20000.0,6000,7,7,0.0,20.0,3.3,0,1,2540.4251800794086,1954.173215445699,586.2519646337097 +7816,7107,7106,6,10,29,111,62,50,0,5525,0,500,300,530,2,5,1,3,1.8,2217.8131337,5461,0,45413.0,1,3,8,7,4,2,0,1,0,0,0,1,0,0,1,1,25229.4444444,8,4,8,8_0,26000.0,0,20000.0,6000,7,7,0.0,20.0,3.3,0,1,2540.4251800794086,1954.173215445699,586.2519646337097 7817,7124,7123,2,6,32,111,42,20,0,5547,0,0,150,0,2,4,0,2,1.5,1946.50744166,0,0,38531.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,1,0,25687.3333333,8,4,8,8_0,10000.0,0,0.0,10000,9,9,0.0,0.0,0.0,0,1,977.0866077228495,0.0,977.0866077228495 7818,7125,7124,0,14,60,112,77,60,0,5549,0,0,180,0,1,6,0,2,1.5,2808.52597302,4519,0,41872.0,5,1,10,0,3,1,0,1,1,0,0,0,0,0,1,0,27914.6666667,8,4,8,8_1,20000.0,0,0.0,20000,8,14,0.0,0.0,0.0,1,0,2099.159940839625,0.0,2099.159940839625 7819,7130,7129,2,2,76,112,78,50,0,5553,0,0,0,0,0,5,0,1,1.0,5120.48795629,1984,0,26650.0,5,1,8,3,1,2,0,0,0,1,0,0,0,0,0,2,26650.0,8,4,8,8_0,7500.0,0,7500.0,0,2,2,0.0,0.0,0.0,0,0,732.8149557921372,732.8149557921372,0.0 7820,7158,7157,12,13,52,111,47,70,0,559,0,180,200,0,2,5,1,3,2.0,1998.47713759,2132,0,50910.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,1,1,25455.0,8,4,8,8_0,27500.0,0,25000.0,2500,11,12,151.5,26.6666666667,0.0,1,0,2686.988171237836,2442.7165193071237,244.27165193071238 7821,7169,7168,15,20,62,120,78,50,0,5601,0,0,0,0,0,5,0,2,1.5,1194.95491375,0,0,40780.0,5,4,0,0,3,2,0,0,1,0,0,0,0,0,1,1,27186.6666667,8,4,8,8_1,13500.0,0,10000.0,3500,13,13,0.0,0.0,0.0,0,0,1416.932960066747,1049.5799704198125,367.35298964693436 -7822,7184,7183,5,5,41,112,62,71,0,5626,0,500,0,0,2,5,1,3,1.8,5974.62819124,1811,0,46111.0,1,2,8,3,4,2,0,1,0,1,0,0,0,0,0,2,25617.222222200002,8,4,8,8_0,30000.0,0,30000.0,0,4,5,77.5,45.3333333333,3.3,0,1,2931.259823168549,2931.259823168549,0.0 +7822,7184,7183,5,5,41,112,62,71,0,5626,0,500,0,0,2,5,1,3,1.8,5974.62819124,1811,0,46111.0,1,2,8,3,4,2,0,1,0,1,0,0,0,0,0,2,25617.2222222,8,4,8,8_0,30000.0,0,30000.0,0,4,5,77.5,45.3333333333,3.3,0,1,2931.259823168549,2931.259823168549,0.0 7823,7186,7185,0,0,36,111,45,12,0,563,0,0,0,0,2,1,0,2,1.5,3540.36213416,0,0,41492.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,27661.3333333,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7824,7188,7187,0,0,46,111,45,20,0,5631,0,0,0,0,1,3,0,1,1.0,2358.26651312,0,0,26963.0,1,2,9,7,1,0,0,0,0,0,0,1,0,0,0,0,26963.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,40.0,2.2,0,0,0.0,0.0,0.0 7825,7211,7210,9,10,52,111,33,12,0,5657,0,0,0,0,3,6,3,5,3.0,2120.69866694,1586,0,83304.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,1,0,27768.0,8,4,8,8_0,4000.0,0,4000.0,0,6,14,0.0,30.0,3.31,0,1,390.83464308913983,390.83464308913983,0.0 @@ -7845,8 +7845,8 @@ 7843,7417,7416,4,4,50,112,65,50,0,5950,0,150,0,0,2,4,0,2,1.5,3453.81541743,0,0,40318.0,1,2,7,0,3,2,0,1,1,0,0,0,0,0,0,2,26878.6666667,8,4,8,8_1,42000.0,0,42000.0,0,4,4,0.0,10.0,2.2,0,0,4408.235875763213,4408.235875763213,0.0 7844,7450,7449,0,0,41,111,38,20,0,599,0,0,0,0,2,3,2,4,2.1,3193.99609442,1201,0,59583.0,1,2,10,8,4,0,0,0,0,0,0,0,1,0,0,0,28372.8571429,8,4,8,8_0,0.0,0,0.0,0,0,0,407.3,53.3333333333,5.56,0,0,0.0,0.0,0.0 7845,7461,7460,6,6,51,112,63,50,0,6008,0,1500,25,0,2,7,0,2,1.5,993.632450475,2392,0,42982.0,1,1,8,1,3,2,0,1,0,1,0,0,0,0,1,1,28654.6666667,8,4,8,8_0,11913.0,0,8000.0,3913,6,7,0.0,4.0,3.3,0,0,1164.0032757802308,781.6692861782797,382.333989601951 -7846,7462,7461,4,4,46,111,37,10,0,6009,0,800,0,0,1,5,2,3,2.0,1867.38967735,3640,0,55682.0,1,1,8,6,2,1,0,1,0,0,1,0,0,0,0,1,27841.0,8,4,8,8_0,30000.0,0,30000.0,0,2,4,0.0,6.666666666669999,0.0,0,1,2931.259823168549,2931.259823168549,0.0 -7847,7472,7471,2,2,31,300,56,20,0,6020,0,10,0,0,2,5,1,4,2.3,947.750021719,8283,0,59003.0,4,2,0,0,5,2,0,0,1,0,0,0,0,0,1,1,25653.478260900003,8,4,8,8_1,25000.0,0,15000.0,10000,3,3,92.7,30.0,3.3,1,0,2623.9499260495313,1574.3699556297188,1049.5799704198125 +7846,7462,7461,4,4,46,111,37,10,0,6009,0,800,0,0,1,5,2,3,2.0,1867.38967735,3640,0,55682.0,1,1,8,6,2,1,0,1,0,0,1,0,0,0,0,1,27841.0,8,4,8,8_0,30000.0,0,30000.0,0,2,4,0.0,6.66666666667,0.0,0,1,2931.259823168549,2931.259823168549,0.0 +7847,7472,7471,2,2,31,300,56,20,0,6020,0,10,0,0,2,5,1,4,2.3,947.750021719,8283,0,59003.0,4,2,0,0,5,2,0,0,1,0,0,0,0,0,1,1,25653.4782609,8,4,8,8_1,25000.0,0,15000.0,10000,3,3,92.7,30.0,3.3,1,0,2623.9499260495313,1574.3699556297188,1049.5799704198125 7848,7484,7483,2,6,66,112,64,50,0,6037,0,0,0,0,1,3,0,1,1.0,1584.08164411,2602,0,27376.0,5,1,8,0,1,1,1,0,1,0,0,0,0,0,0,1,27376.0,8,4,8,8_1,25000.0,0,25000.0,0,6,6,145.2,40.0,3.3,0,1,2623.9499260495313,2623.9499260495313,0.0 7849,7493,7492,2,3,34,111,53,42,0,605,0,0,0,0,1,4,0,1,1.0,3250.47242538,0,0,27635.0,1,4,10,8,1,1,0,0,0,0,0,0,1,0,0,1,27635.0,8,4,8,8_0,24000.0,0,24000.0,0,3,3,167.0,120.0,3.3,1,1,2345.0078585348388,2345.0078585348388,0.0 7850,7494,7493,0,0,49,111,35,10,0,6050,0,0,0,0,1,3,1,2,1.5,3329.55643812,0,0,42384.0,1,1,10,8,2,0,0,0,0,0,0,0,1,0,0,0,28256.0,8,4,8,8_0,0.0,0,0.0,0,0,0,63.0,120.0,5.56,0,0,0.0,0.0,0.0 @@ -7866,10 +7866,10 @@ 7864,7604,7603,2,11,57,211,33,44,0,6197,0,500,0,0,2,5,0,2,1.5,1134.21668689,7956,0,37520.0,1,2,3,4,3,2,0,0,0,0,1,0,0,0,1,1,25013.3333333,8,4,8,8_0,34000.0,0,25000.0,9000,2,11,155.5,65.0,3.3,0,1,3322.0944662576885,2442.7165193071237,879.3779469505646 7865,7607,7606,0,0,36,111,42,20,0,62,0,0,0,468,1,1,0,1,1.0,3469.27762375,0,0,25676.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,25676.0,8,4,8,8_0,0.0,0,0.0,0,0,0,24.5,100.0,5.56,0,0,0.0,0.0,0.0 7866,7609,7608,3,4,21,112,56,50,0,6201,0,750,0,0,1,5,0,1,1.0,2697.19969855,0,0,26203.0,1,3,7,0,1,1,1,1,1,0,0,0,0,0,0,1,26203.0,8,4,8,8_1,13287.0,0,13287.0,0,1,2,456.4,180.0,3.3,0,1,1394.5769066968048,1394.5769066968048,0.0 -7867,7626,7625,5,10,38,111,42,20,0,6221,0,0,200,0,2,4,1,3,1.8,2885.98878416,2246,0,51179.0,1,2,7,6,4,1,0,1,0,0,1,0,0,0,1,0,28432.777777799998,8,4,8,8_0,20000.0,0,0.0,20000,6,10,0.0,10.0,3.31,0,1,1954.173215445699,0.0,1954.173215445699 +7867,7626,7625,5,10,38,111,42,20,0,6221,0,0,200,0,2,4,1,3,1.8,2885.98878416,2246,0,51179.0,1,2,7,6,4,1,0,1,0,0,1,0,0,0,1,0,28432.7777778,8,4,8,8_0,20000.0,0,0.0,20000,6,10,0.0,10.0,3.31,0,1,1954.173215445699,0.0,1954.173215445699 7868,7630,7629,1,12,57,111,34,10,2,6228,0,0,150,0,1,3,0,1,1.0,2196.14214097,0,2000,27778.0,1,1,8,7,1,1,0,1,0,0,0,1,0,0,1,0,27778.0,8,4,8,8_0,3348.0,0,0.0,3348,0,14,0.0,40.0,3.3,0,1,327.12859626561,0.0,327.12859626561 7869,7633,7632,5,7,64,111,74,60,0,6233,0,0,0,0,0,4,0,2,1.5,1753.42537108,3170,0,42130.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,28086.6666667,8,4,8,8_0,20000.0,0,20000.0,0,6,7,0.0,0.0,0.0,0,0,1954.173215445699,1954.173215445699,0.0 -7870,7661,7660,1,1,54,111,31,10,1,6272,0,500,0,0,2,5,4,6,3.1,973.2628098839999,2912,21000,84723.0,1,1,8,6,4,1,1,1,0,0,1,0,0,0,0,1,27330.0,8,4,8,8_0,11001.0,0,11001.0,0,1,3,0.0,0.0,0.0,0,0,1074.8929771559067,1074.8929771559067,0.0 +7870,7661,7660,1,1,54,111,31,10,1,6272,0,500,0,0,2,5,4,6,3.1,973.262809884,2912,21000,84723.0,1,1,8,6,4,1,1,1,0,0,1,0,0,0,0,1,27330.0,8,4,8,8_0,11001.0,0,11001.0,0,1,3,0.0,0.0,0.0,0,0,1074.8929771559067,1074.8929771559067,0.0 7871,7684,7683,0,11,72,120,75,50,0,6304,0,0,0,0,0,5,0,2,1.5,869.300760652,0,0,42782.0,5,2,0,1,3,2,0,0,0,1,0,0,0,0,0,2,28521.3333333,8,4,8,8_0,10000.0,0,10000.0,0,9,12,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7872,7697,7696,3,4,53,111,43,42,0,6322,0,0,0,0,2,4,0,2,1.5,3264.51922585,0,0,39911.0,1,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,26607.3333333,8,4,8,8_0,10000.0,0,10000.0,0,3,4,0.0,50.0,0.0,0,1,977.0866077228495,977.0866077228495,0.0 7873,7704,7703,1,24,56,112,77,71,2,6337,0,150,0,0,1,4,0,2,1.5,2042.86815527,2207,100,38700.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,0,2,25800.0,8,4,8,8_1,7000.0,0,7000.0,0,12,18,0.0,0.0,0.0,0,1,734.7059792938687,734.7059792938687,0.0 @@ -7899,16 +7899,16 @@ 7897,7995,7994,8,10,48,111,48,31,0,6738,0,250,0,0,2,6,1,3,1.8,1479.96947298,0,0,51154.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,1,1,28418.8888889,8,4,8,8_0,22000.0,0,16000.0,6000,4,6,167.0,44.0,3.3,0,1,2149.590536990269,1563.3385723565593,586.2519646337097 7898,8009,8008,10,10,64,111,52,50,0,6763,0,0,50,0,1,6,0,1,1.0,1369.52299258,0,0,27952.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,1,0,27952.0,8,4,8,8_0,7000.0,0,0.0,7000,11,11,0.0,70.0,5.5,0,0,683.9606254059947,0.0,683.9606254059947 7899,8012,8011,0,1,55,112,46,41,0,6767,0,0,0,0,2,3,0,2,1.5,2927.6997305,0,0,37518.0,1,3,8,1,3,1,1,0,0,1,0,0,0,0,0,1,25012.0,8,4,8,8_0,5900.0,0,5900.0,0,1,1,89.0,20.0,3.32,1,1,576.4810985564812,576.4810985564812,0.0 -7900,8016,8015,1,5,46,111,47,31,2,6775,0,450,0,0,1,3,1,2,1.3,2165.96369519,1768,7800,32391.0,1,2,7,5,2,1,0,1,0,0,1,0,0,0,0,1,24916.153846200003,8,4,8,8_0,30000.0,0,30000.0,0,4,5,0.0,5.0,0.0,0,1,2931.259823168549,2931.259823168549,0.0 +7900,8016,8015,1,5,46,111,47,31,2,6775,0,450,0,0,1,3,1,2,1.3,2165.96369519,1768,7800,32391.0,1,2,7,5,2,1,0,1,0,0,1,0,0,0,0,1,24916.1538462,8,4,8,8_0,30000.0,0,30000.0,0,4,5,0.0,5.0,0.0,0,1,2931.259823168549,2931.259823168549,0.0 7901,8023,8022,2,7,29,120,47,50,0,6786,0,360,0,600,2,4,0,2,1.5,1440.34233608,2704,0,39743.0,1,3,0,1,3,2,1,1,0,1,0,0,0,0,0,2,26495.3333333,8,4,8,8_0,22336.0,0,22336.0,0,2,8,112.8,45.0,3.3,0,1,2182.420647009757,2182.420647009757,0.0 7902,8030,8029,7,7,56,112,43,33,0,6793,0,400,0,0,2,8,1,3,1.8,1531.51790696,1300,0,47649.0,1,1,4,0,5,1,0,1,1,0,0,0,0,0,0,1,26471.6666667,8,4,8,8_1,25000.0,0,25000.0,0,3,5,0.0,0.0,0.0,1,0,2623.9499260495313,2623.9499260495313,0.0 7903,8042,8041,3,3,35,111,46,31,0,6806,0,150,0,380,1,2,0,1,1.0,3360.85721695,0,0,26966.0,1,3,6,5,1,1,0,1,0,0,1,0,0,0,0,1,26966.0,8,4,8,8_0,20000.0,0,20000.0,0,2,4,94.8,50.0,3.3,0,0,1954.173215445699,1954.173215445699,0.0 7904,8043,8042,0,0,42,111,43,33,0,6807,0,0,0,0,1,2,0,1,1.0,3508.23223487,0,0,28521.0,1,2,9,7,1,0,0,0,0,0,0,1,0,0,0,0,28521.0,8,4,8,8_0,0.0,0,0.0,0,0,0,14.5,30.0,5.56,0,0,0.0,0.0,0.0 7905,8062,8061,1,2,35,112,38,10,2,6834,0,620,0,0,2,5,2,4,2.1,3824.15514312,0,16000,60714.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,28911.4285714,8,4,8,8_1,28100.0,0,28100.0,0,2,2,134.0,77.5,3.31,0,1,2949.3197168796733,2949.3197168796733,0.0 -7906,8097,8096,3,3,42,111,46,43,0,6879,0,220,0,0,2,3,1,3,1.8,4978.09268949,0,0,50081.0,1,3,6,4,4,1,0,1,0,0,1,0,0,0,0,1,27822.777777799998,8,4,8,8_0,17343.0,0,17343.0,0,1,2,162.0,66.6666666667,0.0,0,0,1694.561303773738,1694.561303773738,0.0 +7906,8097,8096,3,3,42,111,46,43,0,6879,0,220,0,0,2,3,1,3,1.8,4978.09268949,0,0,50081.0,1,3,6,4,4,1,0,1,0,0,1,0,0,0,0,1,27822.7777778,8,4,8,8_0,17343.0,0,17343.0,0,1,2,162.0,66.6666666667,0.0,0,0,1694.561303773738,1694.561303773738,0.0 7907,8107,8106,2,2,56,112,77,50,0,6892,0,0,0,0,0,3,0,1,1.0,3955.57380121,2548,0,26874.0,5,1,9,2,1,2,0,0,0,1,0,0,0,0,0,2,26874.0,8,4,8,8_0,12000.0,0,12000.0,0,16,0,0.0,0.0,0.0,0,0,1172.5039292674194,1172.5039292674194,0.0 7908,8113,8112,6,6,60,111,46,41,0,690,0,0,150,0,1,2,0,1,1.0,2889.88480229,0,0,25185.0,1,2,8,7,1,1,1,1,0,0,0,1,0,0,1,0,25185.0,8,4,8,8_0,5000.0,0,0.0,5000,4,4,0.0,0.0,0.0,0,1,488.54330386142476,0.0,488.54330386142476 -7909,8120,8119,0,6,40,112,62,50,0,6910,0,300,0,0,2,6,2,4,2.1,4043.6360351999997,1560,0,56352.0,1,2,8,0,4,2,0,0,1,0,0,0,0,0,1,1,26834.2857143,8,4,8,8_1,31000.0,0,20000.0,11000,5,7,54.0,46.6666666667,3.3,0,1,3253.697908301419,2099.159940839625,1154.5379674617936 +7909,8120,8119,0,6,40,112,62,50,0,6910,0,300,0,0,2,6,2,4,2.1,4043.6360352,1560,0,56352.0,1,2,8,0,4,2,0,0,1,0,0,0,0,0,1,1,26834.2857143,8,4,8,8_1,31000.0,0,20000.0,11000,5,7,54.0,46.6666666667,3.3,0,1,3253.697908301419,2099.159940839625,1154.5379674617936 7910,8128,8127,0,0,27,111,38,12,0,6921,0,0,0,1100,2,2,0,2,1.5,3538.73807535,0,0,39625.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,26416.6666667,8,4,8,8_0,0.0,0,0.0,0,0,0,93.0,60.0,5.56,0,0,0.0,0.0,0.0 7911,8144,8143,1,11,49,111,43,33,2,6945,0,200,99999,0,3,5,2,4,2.5,1730.79888278,1035,3200,62620.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,25048.0,8,4,8,8_0,30000.0,0,20000.0,10000,10,14,229.4,82.5,3.3,0,1,2931.259823168549,1954.173215445699,977.0866077228495 7912,8150,8149,2,2,55,111,52,50,0,6952,0,204,45,0,2,5,0,2,1.5,1126.40540209,0,0,41777.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,27851.3333333,8,4,8,8_0,2703.0,0,1800.0,903,3,3,0.0,10.0,3.3,1,0,264.1065100674862,175.8755893901129,88.23092067737332 @@ -7919,7 +7919,7 @@ 7917,8188,8187,1,1,36,221,37,43,1,7,0,800,0,0,2,4,2,4,2.1,2818.87877734,3770,19500,60685.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,1,1,28897.6190476,8,4,8,8_0,43491.0,0,42891.0,600,2,3,39.4,33.75,0.0,0,1,4249.447365647445,4190.8221691840745,58.62519646337097 7918,8194,8193,2,4,42,111,31,10,0,7008,0,0,0,0,2,5,3,5,2.4,1850.95787732,0,0,60024.0,1,3,7,5,4,1,0,0,0,0,1,0,0,0,1,0,25010.0,8,4,8,8_0,15000.0,0,0.0,15000,6,0,0.0,7.5,1.1,0,0,1465.6299115842744,0.0,1465.6299115842744 7919,8217,8216,1,4,47,111,34,20,2,7037,0,200,0,0,1,3,0,1,1.0,5634.95658517,0,6900,27654.0,1,3,4,4,1,1,0,1,0,0,1,0,0,0,0,1,27654.0,8,4,8,8_0,8287.0,0,8287.0,0,1,4,0.0,40.0,3.3,0,1,809.7116718199254,809.7116718199254,0.0 -7920,8220,8219,5,10,32,111,53,60,0,7047,0,0,60,487,2,4,0,2,1.5,3181.2972665999996,0,0,39581.0,1,3,8,6,3,2,0,0,0,0,1,0,0,0,1,1,26387.3333333,8,4,8,8_0,32943.0,0,17343.0,15600,5,9,65.5,40.0,3.3,0,1,3218.8164118213836,1694.561303773738,1524.2551080476453 +7920,8220,8219,5,10,32,111,53,60,0,7047,0,0,60,487,2,4,0,2,1.5,3181.2972666,0,0,39581.0,1,3,8,6,3,2,0,0,0,0,1,0,0,0,1,1,26387.3333333,8,4,8,8_0,32943.0,0,17343.0,15600,5,9,65.5,40.0,3.3,0,1,3218.8164118213836,1694.561303773738,1524.2551080476453 7921,8227,8226,19,19,59,111,53,70,0,7056,0,318,0,0,2,2,0,2,1.5,2874.21378684,0,0,40160.0,1,2,10,8,3,2,0,1,0,0,0,0,1,0,0,2,26773.3333333,8,4,8,8_0,11785.0,0,11785.0,0,14,18,0.0,0.0,0.0,0,0,1151.4965672013782,1151.4965672013782,0.0 7922,8229,8228,3,3,27,111,63,60,0,7058,0,0,0,600,2,2,0,2,1.5,3125.81978303,0,0,39786.0,1,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,26524.0,8,4,8,8_0,10000.0,0,10000.0,0,2,6,18.0,12.5,0.0,0,1,977.0866077228495,977.0866077228495,0.0 7923,8244,8243,3,9,67,112,12,50,0,7079,0,0,100,0,1,4,0,2,1.5,1887.08138456,5512,0,40440.0,1,2,9,2,3,5,1,1,0,1,0,0,0,0,5,0,26960.0,8,4,8,8_0,15000.0,0,0.0,15000,4,11,0.0,6.0,1.1,0,0,1465.6299115842744,0.0,1465.6299115842744 @@ -7930,7 +7930,7 @@ 7928,8303,8302,10,10,56,112,45,60,0,7159,0,450,0,0,1,5,0,2,1.5,3055.32224245,2973,0,42155.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,0,2,28103.3333333,8,4,8,8_1,33000.0,0,33000.0,0,7,10,436.0,200.0,3.3,1,1,3463.613902385381,3463.613902385381,0.0 7929,8305,8304,9,10,54,111,55,50,0,7160,0,160,0,0,1,6,0,2,1.5,3749.23487539,2080,0,38784.0,1,1,6,4,3,2,0,1,0,0,1,0,0,0,0,2,25856.0,8,4,8,8_0,12000.0,0,12000.0,0,9,9,0.0,0.0,0.0,0,1,1172.5039292674194,1172.5039292674194,0.0 7930,8315,8314,9,13,36,112,37,10,0,7185,0,0,360,0,2,6,2,4,2.1,1439.0933789,5720,0,60077.0,1,2,9,2,4,2,0,1,0,1,0,0,0,0,2,0,28608.0952381,8,4,8,8_0,7500.0,0,0.0,7500,3,9,101.0,13.5,3.31,0,1,732.8149557921372,0.0,732.8149557921372 -7931,8317,8316,6,7,44,111,63,50,0,7188,146,0,0,0,2,7,2,4,2.3,2144.41296612,1666,0,62985.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,0,0,27384.782608700003,8,4,8,8_0,17500.0,0,0.0,17500,7,8,37.0,67.5,3.3,0,1,1709.9015635149867,0.0,1709.9015635149867 +7931,8317,8316,6,7,44,111,63,50,0,7188,146,0,0,0,2,7,2,4,2.3,2144.41296612,1666,0,62985.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,0,0,27384.7826087,8,4,8,8_0,17500.0,0,0.0,17500,7,8,37.0,67.5,3.3,0,1,1709.9015635149867,0.0,1709.9015635149867 7932,8318,8317,5,7,34,112,37,12,0,7190,0,400,0,0,2,5,1,3,1.8,2702.14096914,2139,0,49203.0,1,2,10,2,4,1,0,1,0,1,0,0,0,0,0,1,27335.0,8,4,8,8_0,12000.0,0,12000.0,0,6,6,14.0,20.0,3.3,0,1,1172.5039292674194,1172.5039292674194,0.0 7933,8324,8323,10,10,70,400,35,41,0,7197,0,0,0,0,1,5,0,2,1.5,1294.36710089,3120,0,37654.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,25102.6666667,8,4,8,8_0,10000.0,0,0.0,10000,10,11,0.0,0.0,0.0,0,0,977.0866077228495,0.0,977.0866077228495 7934,8328,8327,4,6,43,111,46,31,0,7201,0,100,0,0,2,5,1,3,2.0,1428.02021328,0,0,52138.0,1,1,7,5,4,1,0,1,0,0,1,0,0,0,0,1,26069.0,8,4,8,8_0,2000.0,0,2000.0,0,3,7,71.0,110.0,3.32,0,1,195.41732154456992,195.41732154456992,0.0 @@ -7943,18 +7943,18 @@ 7941,8435,8434,0,0,55,112,54,60,1,7363,0,392,186,0,2,5,0,2,1.5,1292.4739235,0,11600,38913.0,1,1,6,0,3,2,0,1,1,0,0,0,0,0,1,1,25942.0,8,4,8,8_1,27343.0,0,17343.0,10000,1,0,142.6,50.0,3.3,0,1,2869.866513118893,1820.2865426990807,1049.5799704198125 7942,8439,8438,4,4,65,300,75,20,0,7367,0,0,0,0,0,7,0,1,1.0,2478.33678575,0,0,25738.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,25738.0,8,4,8,8_1,4000.0,0,4000.0,0,4,4,0.0,0.0,0.0,0,0,419.831988167925,419.831988167925,0.0 7943,8444,8443,13,13,53,112,34,20,0,7374,0,0,0,0,1,3,1,2,1.3,2335.95975146,0,0,35063.0,1,3,10,4,2,1,0,0,0,0,1,0,0,0,1,0,26971.5384615,8,4,8,8_0,15000.0,0,0.0,15000,4,13,37.5,75.0,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 -7944,8472,8471,0,0,37,111,42,20,0,7417,0,0,0,0,2,3,2,4,2.1,4115.9382846,0,0,55269.0,1,2,10,8,4,0,0,0,0,0,0,0,1,0,0,0,26318.571428599997,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -7945,8485,8484,3,3,44,111,46,50,0,7431,0,100199,0,0,2,5,1,3,1.8,1619.77204986,0,0,46357.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,25753.888888900005,8,4,8,8_0,15000.0,0,15000.0,0,2,3,200.5,26.6666666667,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 +7944,8472,8471,0,0,37,111,42,20,0,7417,0,0,0,0,2,3,2,4,2.1,4115.9382846,0,0,55269.0,1,2,10,8,4,0,0,0,0,0,0,0,1,0,0,0,26318.5714286,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +7945,8485,8484,3,3,44,111,46,50,0,7431,0,100199,0,0,2,5,1,3,1.8,1619.77204986,0,0,46357.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,25753.8888889,8,4,8,8_0,15000.0,0,15000.0,0,2,3,200.5,26.6666666667,3.3,0,1,1465.6299115842744,1465.6299115842744,0.0 7946,8489,8488,0,0,78,111,77,50,0,7435,0,0,0,0,0,2,0,2,1.5,1881.72311813,0,0,41387.0,5,1,7,5,3,0,0,0,0,0,1,0,0,0,0,0,27591.3333333,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7947,8506,8505,0,3,53,112,21,50,2,7464,0,100095,0,0,2,6,1,3,2.0,3122.41916812,1976,8200,55248.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,0,2,27624.0,8,4,8,8_1,31231.0,0,31231.0,0,5,5,0.0,27.0,1.1,1,1,3277.9432056181163,3277.9432056181163,0.0 7948,8539,8538,3,8,45,120,37,10,0,7513,0,250,0,0,2,5,2,4,2.3,2061.73296998,7904,0,63727.0,1,1,0,0,4,2,1,0,1,0,0,0,0,0,0,2,27707.3913043,8,4,8,8_1,27000.0,0,27000.0,0,5,10,127.5,22.5,0.0,0,1,2833.865920133494,2833.865920133494,0.0 7949,8581,8580,9,9,77,112,78,71,0,7567,0,0,0,0,0,4,0,2,1.5,3213.65037682,0,0,37360.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,0,2,24906.6666667,8,4,8,8_1,25000.0,0,25000.0,0,8,8,0.0,0.0,0.0,0,0,2623.9499260495313,2623.9499260495313,0.0 -7950,8583,8582,9,13,20,221,63,50,0,7571,0,0,0,0,2,8,2,3,1.8,1774.99937243,0,0,50153.0,1,3,1,2,2,1,0,0,0,1,0,0,0,1,1,0,27862.777777799998,8,4,8,8_0,8000.0,0,0.0,8000,6,9,58.5,20.0,3.3,0,1,781.6692861782797,0.0,781.6692861782797 -7951,8588,8587,5,6,39,111,37,20,0,758,0,0,0,0,2,4,2,4,2.1,4731.9035346,0,0,52424.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,24963.809523800002,8,4,8,8_0,10000.0,0,10000.0,0,4,6,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 +7950,8583,8582,9,13,20,221,63,50,0,7571,0,0,0,0,2,8,2,3,1.8,1774.99937243,0,0,50153.0,1,3,1,2,2,1,0,0,0,1,0,0,0,1,1,0,27862.7777778,8,4,8,8_0,8000.0,0,0.0,8000,6,9,58.5,20.0,3.3,0,1,781.6692861782797,0.0,781.6692861782797 +7951,8588,8587,5,6,39,111,37,20,0,758,0,0,0,0,2,4,2,4,2.1,4731.9035346,0,0,52424.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,24963.8095238,8,4,8,8_0,10000.0,0,10000.0,0,4,6,0.0,0.0,0.0,0,0,977.0866077228495,977.0866077228495,0.0 7952,8597,8596,0,0,81,111,75,70,0,7591,0,0,0,380,0,4,0,1,1.0,2953.92710845,0,0,26540.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,26540.0,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7953,8612,8611,0,0,26,112,53,42,0,7607,0,0,0,540,1,2,0,1,1.0,3659.0070556,0,0,25529.0,1,3,10,4,1,0,0,0,0,0,1,0,0,0,0,0,25529.0,8,4,8,8_0,0.0,0,0.0,0,0,0,25.5,60.0,3.32,0,0,0.0,0.0,0.0 7954,8628,8627,5,16,51,120,63,50,0,7628,0,350,250,0,3,4,1,3,2.0,833.676877688,2600,0,51714.0,1,1,0,3,4,3,0,1,0,1,0,0,0,0,1,2,25857.0,8,4,8,8_0,21000.0,0,21000.0,0,8,14,0.0,26.6666666667,3.32,0,1,2051.881876217984,2051.881876217984,0.0 -7955,8644,8643,1,1,41,112,53,50,1,7644,0,710,0,0,2,4,2,4,2.1,1372.91824592,5720,24000,60028.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,28584.761904799998,8,4,8,8_0,6859.0,0,6859.0,0,1,0,63.2,30.0,3.3,1,0,670.1837042371026,670.1837042371026,0.0 +7955,8644,8643,1,1,41,112,53,50,1,7644,0,710,0,0,2,4,2,4,2.1,1372.91824592,5720,24000,60028.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,28584.7619048,8,4,8,8_0,6859.0,0,6859.0,0,1,0,63.2,30.0,3.3,1,0,670.1837042371026,670.1837042371026,0.0 7956,8651,8650,7,8,69,112,74,44,0,7650,0,0,0,0,0,4,0,2,1.5,1846.91912038,1144,0,37473.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,2,0,24982.0,8,4,8,8_1,5000.0,0,0.0,5000,8,8,0.0,0.0,0.0,0,0,524.7899852099063,0.0,524.7899852099063 7957,8654,8653,3,7,81,112,75,20,0,7653,0,0,0,0,0,7,0,2,1.5,1358.33261337,4368,0,37611.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,25074.0,8,4,8,8_1,30000.0,0,30000.0,0,4,9,0.0,0.0,0.0,0,0,3148.7399112594376,3148.7399112594376,0.0 7958,8660,8659,4,16,49,112,52,71,0,766,0,720,0,750,3,4,3,5,2.6,3179.12088029,1872,0,64647.0,1,3,9,0,4,2,0,1,1,0,0,0,0,0,0,2,24864.2307692,8,4,8,8_1,34000.0,0,34000.0,0,14,14,316.4,22.8,3.31,0,1,3568.5718994273625,3568.5718994273625,0.0 @@ -7970,7 +7970,7 @@ 7968,8721,8720,7,10,62,111,75,43,0,7742,0,0,0,0,0,4,0,2,1.5,2930.4250091,1300,0,42401.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,28267.3333333,8,4,8,8_0,20682.0,0,13682.0,7000,7,10,0.0,0.0,0.0,0,0,2020.8105220923976,1336.8498966864026,683.9606254059947 7969,8724,8723,8,14,51,111,42,31,0,7746,0,400,70,0,2,5,1,3,1.8,2311.6864079,3380,0,51490.0,1,1,6,4,4,2,0,1,0,0,1,0,0,0,1,1,28605.5555556,8,4,8,8_0,27500.0,0,25000.0,2500,11,12,151.5,26.6666666667,0.0,1,0,2686.988171237836,2442.7165193071237,244.27165193071238 7970,8729,8728,10,10,67,221,75,41,0,7753,0,0,0,0,0,2,0,1,1.0,2269.0306102,0,0,28618.0,5,3,1,2,1,1,0,0,0,1,0,0,0,0,0,1,28618.0,8,4,8,8_0,12481.0,0,12481.0,0,11,11,0.0,0.0,0.0,0,0,1219.5017950988886,1219.5017950988886,0.0 -7971,8732,8731,10,10,41,111,33,10,0,7756,0,950,99999,655,2,5,2,4,2.3,2143.98187003,2237,0,66354.0,1,3,8,7,4,2,1,1,0,0,0,1,0,0,1,1,28849.565217400002,8,4,8,8_0,15000.0,0,0.0,15000,4,12,165.0,26.6666666667,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 +7971,8732,8731,10,10,41,111,33,10,0,7756,0,950,99999,655,2,5,2,4,2.3,2143.98187003,2237,0,66354.0,1,3,8,7,4,2,1,1,0,0,0,1,0,0,1,1,28849.5652174,8,4,8,8_0,15000.0,0,0.0,15000,4,12,165.0,26.6666666667,3.3,0,1,1465.6299115842744,0.0,1465.6299115842744 7972,8743,8742,10,10,70,111,74,41,0,7771,0,0,0,0,0,4,0,1,1.0,2151.48945516,0,0,27557.0,5,1,6,5,1,1,0,0,0,0,1,0,0,0,1,0,27557.0,8,4,8,8_0,5000.0,0,0.0,5000,7,10,0.0,0.0,0.0,0,0,488.54330386142476,0.0,488.54330386142476 7973,8747,8746,2,2,37,111,43,33,0,7775,30,0,0,0,1,4,2,3,1.6,2372.65952123,1618,0,40532.0,1,2,9,7,2,1,1,1,0,0,0,1,0,0,0,0,25332.5,8,4,8,8_0,5000.0,0,0.0,5000,9,9,40.5,34.5,1.1,0,0,488.54330386142476,0.0,488.54330386142476 7974,8765,8764,13,15,52,120,47,42,0,7796,0,100199,0,0,2,5,1,3,2.0,1900.89825553,2600,0,51930.0,1,1,0,2,4,3,0,0,0,1,0,0,0,0,1,2,25965.0,8,4,8,8_0,35000.0,0,20000.0,15000,13,13,86.0,60.0,3.3,0,1,3419.8031270299734,1954.173215445699,1465.6299115842744 @@ -7980,7 +7980,7 @@ 7978,8821,8820,0,0,42,111,55,50,0,7864,0,0,0,386,2,3,1,3,2.0,3173.23165019,0,0,53193.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,26596.5,8,4,8,8_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 7979,8825,8824,6,10,51,120,52,71,0,7873,0,570,0,0,2,5,0,2,1.5,2252.01959158,4408,0,37400.0,1,1,0,3,3,2,0,1,0,1,0,0,0,0,0,2,24933.3333333,8,4,8,8_0,18000.0,0,18000.0,0,4,11,54.2,30.0,3.3,0,1,1758.7558939011292,1758.7558939011292,0.0 7980,8829,8828,1,1,37,112,33,12,1,7878,0,350,200,0,2,5,2,4,2.1,2301.55435377,2261,20000,53454.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,1,1,25454.2857143,8,4,8,8_1,29000.0,0,20000.0,9000,1,1,120.5,30.0,0.0,1,1,3043.7819142174562,2099.159940839625,944.6219733778312 -7981,8864,8863,3,4,48,112,46,50,0,7922,0,600,0,0,2,5,0,2,1.5,2061.3997600000002,5460,0,42310.0,1,2,9,0,3,2,0,1,1,0,0,0,0,0,0,2,28206.6666667,8,4,8,8_1,27144.0,0,27144.0,0,1,5,0.0,15.0,3.3,0,1,2848.979871707539,2848.979871707539,0.0 +7981,8864,8863,3,4,48,112,46,50,0,7922,0,600,0,0,2,5,0,2,1.5,2061.39976,5460,0,42310.0,1,2,9,0,3,2,0,1,1,0,0,0,0,0,0,2,28206.6666667,8,4,8,8_1,27144.0,0,27144.0,0,1,5,0.0,15.0,3.3,0,1,2848.979871707539,2848.979871707539,0.0 7982,8873,8872,2,2,47,111,37,60,0,7935,0,300,0,0,1,3,0,1,1.0,3498.37549828,0,0,24903.0,1,2,10,8,1,1,0,1,0,0,0,0,1,0,0,1,24903.0,8,4,8,8_0,4200.0,0,4200.0,0,1,1,12.6,60.0,5.5,0,0,410.3763752435968,410.3763752435968,0.0 7983,8876,8875,1,1,37,111,34,10,0,7938,0,100,0,436,1,2,0,1,1.0,5188.66613882,0,0,28008.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,0,1,28008.0,8,4,8,8_0,11000.0,0,11000.0,0,2,2,113.0,60.0,3.3,0,1,1074.7952684951345,1074.7952684951345,0.0 7984,8889,8888,9,10,60,211,78,71,0,7954,0,250,0,0,1,4,0,2,1.5,5669.87121152,0,0,39658.0,5,1,2,3,3,2,0,1,0,1,0,0,0,0,0,2,26438.6666667,8,4,8,8_0,12000.0,0,12000.0,0,9,9,0.0,0.0,0.0,0,1,1172.5039292674194,1172.5039292674194,0.0 @@ -8001,29 +8001,29 @@ 7999,8971,8970,7,7,27,111,65,20,0,8061,0,300,100,0,2,3,0,2,1.5,3015.90625794,0,0,43403.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,1,1,28935.3333333,8,4,8,8_0,32943.0,0,17343.0,15600,5,9,65.5,40.0,3.3,0,1,3218.8164118213836,1694.561303773738,1524.2551080476453 8000,8992,8991,2,2,62,111,47,31,0,8088,0,0,0,0,1,4,0,2,1.5,2115.89151505,0,0,38742.0,1,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,25828.0,8,4,8,8_0,7800.0,0,7800.0,0,1,1,0.0,30.0,2.2,0,0,762.1275540238227,762.1275540238227,0.0 8001,9006,9005,4,9,31,300,62,44,0,8102,0,325,180,0,2,3,0,2,1.5,1900.66958016,4056,0,39227.0,1,2,0,0,3,3,0,0,1,0,0,0,0,0,1,2,26151.3333333,8,4,8,8_1,15000.0,0,15000.0,0,5,8,92.4,23.5,3.3,0,1,1574.3699556297188,1574.3699556297188,0.0 -8002,9008,9007,11,11,46,111,45,71,0,8106,0,0,220,750,2,4,1,3,2.0,5902.49153667,1118,0,52293.0,1,4,10,8,4,2,1,0,0,0,0,0,1,0,2,0,26146.5,8,4,8,8_0,15000.0,0,0.0,15000,12,12,0.0,6.666666666669999,0.0,0,1,1465.6299115842744,0.0,1465.6299115842744 +8002,9008,9007,11,11,46,111,45,71,0,8106,0,0,220,750,2,4,1,3,2.0,5902.49153667,1118,0,52293.0,1,4,10,8,4,2,1,0,0,0,0,0,1,0,2,0,26146.5,8,4,8,8_0,15000.0,0,0.0,15000,12,12,0.0,6.66666666667,0.0,0,1,1465.6299115842744,0.0,1465.6299115842744 8003,9017,9016,3,3,80,112,75,71,0,8116,0,0,0,0,0,4,0,1,1.0,2565.07504616,0,0,25411.0,5,1,6,0,1,1,0,0,1,0,0,0,0,0,0,1,25411.0,8,4,8,8_1,7500.0,0,7500.0,0,3,3,0.0,0.0,0.0,0,0,787.1849778148594,787.1849778148594,0.0 -8004,9026,9025,2,2,58,111,52,50,0,8132,0,0,25,267,1,4,0,2,1.5,3704.6732300999997,1699,0,43239.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,2,0,28826.0,8,4,8,8_0,4000.0,0,0.0,4000,3,3,0.0,0.0,0.0,0,0,390.83464308913983,0.0,390.83464308913983 +8004,9026,9025,2,2,58,111,52,50,0,8132,0,0,25,267,1,4,0,2,1.5,3704.6732301,1699,0,43239.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,2,0,28826.0,8,4,8,8_0,4000.0,0,0.0,4000,3,3,0.0,0.0,0.0,0,0,390.83464308913983,0.0,390.83464308913983 8005,9029,9028,5,8,39,112,43,31,0,8138,0,100,0,0,1,4,0,1,1.0,1786.60991589,0,0,28205.0,1,2,8,2,1,1,0,1,0,1,0,0,0,0,0,1,28205.0,8,4,8,8_0,29336.0,0,29336.0,0,2,6,186.0,50.0,3.3,1,0,2866.3812724157515,2866.3812724157515,0.0 8006,9034,9033,9,9,49,111,43,33,0,8144,0,0,99999,0,1,1,0,1,1.0,2156.65055121,1638,0,27607.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,1,0,27607.0,8,4,8,8_0,2000.0,0,0.0,2000,9,9,0.0,4.0,1.1,0,0,195.41732154456992,0.0,195.41732154456992 8007,9036,9035,12,12,81,111,74,70,0,8147,0,0,0,0,0,5,0,2,1.5,2590.34737488,0,0,40315.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,2,0,26876.6666667,8,4,8,8_0,9100.0,0,0.0,9100,14,14,0.0,0.0,0.0,0,0,889.1488130277932,0.0,889.1488130277932 8008,9042,9041,3,3,53,111,52,41,0,8158,0,120,0,412,1,2,0,1,1.0,2921.98515072,0,0,26475.0,1,3,8,6,1,1,1,1,0,0,1,0,0,0,0,1,26475.0,8,4,8,8_0,5144.0,0,5144.0,0,1,2,75.0,50.0,3.3,0,1,502.6133510126338,502.6133510126338,0.0 8009,9060,9059,7,7,59,111,68,70,0,819,0,298,0,0,1,4,0,2,1.5,2924.00851843,3503,0,40479.0,1,3,9,7,3,1,0,1,0,0,0,1,0,0,0,1,26986.0,8,4,8,8_0,14818.0,0,14818.0,0,7,7,0.0,0.0,0.0,0,1,1447.8469353237185,1447.8469353237185,0.0 -8010,9068,9067,4,12,32,111,34,20,0,820,0,150,40,0,2,6,2,4,2.1,1415.15643333,0,0,52671.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,25081.428571400003,8,4,8,8_0,22500.0,0,15000.0,7500,8,10,54.0,20.0,3.3,0,1,2198.4448673764114,1465.6299115842744,732.8149557921372 +8010,9068,9067,4,12,32,111,34,20,0,820,0,150,40,0,2,6,2,4,2.1,1415.15643333,0,0,52671.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,25081.4285714,8,4,8,8_0,22500.0,0,15000.0,7500,8,10,54.0,20.0,3.3,0,1,2198.4448673764114,1465.6299115842744,732.8149557921372 8011,9075,9074,0,0,36,111,31,10,0,821,0,0,0,513,1,2,0,1,1.0,3742.79196573,0,0,27564.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,27564.0,8,4,8,8_0,0.0,0,0.0,0,0,0,24.5,100.0,5.56,0,0,0.0,0.0,0.0 8012,9078,9077,0,0,65,111,75,20,1,8212,0,0,0,0,0,4,0,2,1.5,2937.46383019,2168,10800,39539.0,5,1,9,7,5,1,0,0,0,0,0,1,0,0,1,0,26359.3333333,8,4,8,8_0,1010.0,0,0.0,1010,1,1,0.0,0.0,0.0,0,0,98.6857473800078,0.0,98.6857473800078 8013,9109,9108,4,4,73,111,74,60,0,8253,0,0,0,0,0,5,0,2,1.5,3673.74995672,5096,0,39224.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,26149.3333333,8,4,8,8_0,20000.0,0,5000.0,15000,3,5,0.0,0.0,0.0,0,0,1954.173215445699,488.54330386142476,1465.6299115842744 8014,9117,9116,9,9,51,112,54,60,0,8264,0,0,360,0,1,3,0,1,1.0,3503.98339851,2860,0,26063.0,1,2,7,0,1,1,0,1,1,0,0,0,0,0,1,0,26063.0,8,4,8,8_1,25000.0,0,0.0,25000,2,8,0.0,120.0,3.3,0,0,2623.9499260495313,0.0,2623.9499260495313 8015,9120,9119,0,5,35,111,45,10,0,8268,0,0,0,0,1,3,0,1,1.0,3653.2937901,0,0,27458.0,1,2,9,7,1,1,0,0,0,0,0,1,0,0,0,1,27458.0,8,4,8,8_0,20000.0,0,20000.0,0,2,4,94.8,50.0,3.3,0,0,1954.173215445699,1954.173215445699,0.0 -8016,9150,9149,2,7,40,111,43,33,0,831,0,0,0,0,2,4,2,4,2.3,2797.65648076,0,0,58166.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,25289.565217400002,8,4,8,8_0,40600.0,0,40600.0,0,3,7,0.0,43.3333333333,3.3,0,1,3966.9716273547688,3966.9716273547688,0.0 +8016,9150,9149,2,7,40,111,43,33,0,831,0,0,0,0,2,4,2,4,2.3,2797.65648076,0,0,58166.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,25289.5652174,8,4,8,8_0,40600.0,0,40600.0,0,3,7,0.0,43.3333333333,3.3,0,1,3966.9716273547688,3966.9716273547688,0.0 8017,9158,9157,5,5,71,111,77,41,0,8320,0,0,0,0,0,3,0,1,1.0,2595.47433102,0,0,27298.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,27298.0,8,4,8,8_0,5500.0,0,0.0,5500,5,5,0.0,0.0,0.0,0,0,537.3976342475672,0.0,537.3976342475672 8018,9160,9159,0,0,27,111,37,31,0,8323,0,0,0,485,1,2,0,1,1.0,3631.05741609,0,0,28416.0,1,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,28416.0,8,4,8,8_0,0.0,0,0.0,0,0,0,25.5,60.0,3.32,0,0,0.0,0.0,0.0 8019,9162,9161,6,9,53,112,67,71,0,8325,0,201498,0,0,4,5,3,6,3.3,2871.27734926,3120,0,82526.0,1,2,7,0,5,3,0,1,1,0,0,0,0,0,0,3,25007.8787879,8,4,8,8_1,49001.0,0,49001.0,0,1,9,0.0,0.0,0.0,1,1,5143.046813054123,5143.046813054123,0.0 8020,9179,9178,3,30,65,221,71,50,0,8354,0,0,0,0,0,6,0,2,1.5,1236.79782847,3250,0,38840.0,5,1,1,3,3,4,0,0,0,1,0,0,0,0,2,2,25893.3333333,8,4,8,8_0,23376.0,0,23376.0,0,19,21,0.0,0.0,0.0,0,0,2284.037654212933,2284.037654212933,0.0 8021,9203,9202,5,11,42,112,65,50,0,8388,0,0,450,0,2,4,1,3,1.8,2733.74694549,0,0,45645.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,2,0,25358.3333333,8,4,8,8_1,40000.0,40000,0.0,0,2,10,291.5,43.3333333333,3.3,0,1,4198.31988167925,0.0,0.0 -8022,9207,9206,9,10,45,221,38,20,0,8396,0,310,0,0,2,6,2,4,2.1,3104.75911786,3901,0,54902.0,1,2,1,2,4,2,0,0,0,1,0,0,0,0,1,1,26143.809523800002,8,4,8,8_0,19000.0,0,16000.0,3000,8,8,0.0,15.0,0.0,0,1,1856.4645546734143,1563.3385723565593,293.12598231685485 +8022,9207,9206,9,10,45,221,38,20,0,8396,0,310,0,0,2,6,2,4,2.1,3104.75911786,3901,0,54902.0,1,2,1,2,4,2,0,0,0,1,0,0,0,0,1,1,26143.8095238,8,4,8,8_0,19000.0,0,16000.0,3000,8,8,0.0,15.0,0.0,0,1,1856.4645546734143,1563.3385723565593,293.12598231685485 8023,9211,9210,11,11,66,221,77,50,0,8401,0,0,0,0,0,4,0,1,1.0,3631.8729466,0,0,28829.0,5,4,1,2,1,1,0,0,0,1,0,0,0,0,1,0,28829.0,8,4,8,8_0,6500.0,0,0.0,6500,12,12,0.0,0.0,0.0,0,0,635.1062950198522,0.0,635.1062950198522 -8024,9213,9212,5,7,42,112,38,20,0,8404,0,230,100,0,2,6,1,3,1.8,1361.84125758,0,0,48595.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,1,1,26997.222222200002,8,4,8,8_0,3700.0,0,2500.0,1200,4,5,162.5,25.3333333333,3.3,0,1,361.5220448574544,244.27165193071238,117.25039292674194 +8024,9213,9212,5,7,42,112,38,20,0,8404,0,230,100,0,2,6,1,3,1.8,1361.84125758,0,0,48595.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,1,1,26997.2222222,8,4,8,8_0,3700.0,0,2500.0,1200,4,5,162.5,25.3333333333,3.3,0,1,361.5220448574544,244.27165193071238,117.25039292674194 8025,9216,9215,1,1,66,111,78,50,0,8407,0,0,0,492,0,3,0,2,1.5,2783.98499764,0,0,43255.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,28836.6666667,8,4,8,8_0,15116.0,0,15116.0,0,1,2,0.0,0.0,0.0,0,0,1476.9641162338594,1476.9641162338594,0.0 8026,9231,9230,1,1,58,112,75,60,1,8424,0,0,0,0,0,5,0,2,1.5,2770.61514707,6240,13500,38478.0,5,1,9,2,3,3,0,0,0,1,0,0,0,0,1,2,25652.0,8,4,8,8_0,21000.0,0,17000.0,4000,3,3,0.0,0.0,0.0,0,0,2051.881876217984,1661.0472331288443,390.83464308913983 8027,9242,9241,5,5,38,112,38,12,0,8438,0,0,0,0,2,4,1,3,1.8,5073.89522935,0,0,48302.0,1,2,9,1,4,2,0,0,0,1,0,0,0,0,0,2,26834.4444444,8,4,8,8_0,4000.0,0,4000.0,0,4,5,0.0,19.0,0.0,0,1,390.83464308913983,390.83464308913983,0.0 @@ -8045,20 +8045,20 @@ 8043,9414,9413,10,19,44,112,55,43,0,8679,0,200,200,0,2,5,1,3,1.8,2827.37965141,8476,0,49321.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,1,1,27400.5555556,8,4,8,8_1,20000.0,0,20000.0,0,8,18,156.5,43.3333333333,3.3,0,1,2099.159940839625,2099.159940839625,0.0 8044,9415,9414,6,26,67,111,75,50,0,868,0,0,50,0,1,4,1,3,2.0,1078.49932706,0,0,51893.0,5,1,8,6,4,3,0,0,0,0,1,0,0,0,3,0,25946.5,8,4,8,8_0,18000.0,0,0.0,18000,20,21,0.0,0.0,0.0,0,1,1758.7558939011292,0.0,1758.7558939011292 8045,9419,9418,10,10,79,111,78,71,0,8688,0,0,0,0,0,4,0,2,1.5,4896.50702601,0,0,41915.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,27943.3333333,8,4,8,8_0,15000.0,0,15000.0,0,10,10,0.0,0.0,0.0,0,0,1465.6299115842744,1465.6299115842744,0.0 -8046,9422,9421,4,6,55,111,65,60,0,8690,0,1800,70,0,4,4,2,5,3.0,882.3732234160001,3383,0,80283.0,1,1,9,7,5,3,0,1,0,0,0,1,0,0,1,2,26761.0,8,4,8,8_0,2500.0,0,2500.0,0,4,10,0.0,0.0,0.0,0,1,244.27165193071238,244.27165193071238,0.0 +8046,9422,9421,4,6,55,111,65,60,0,8690,0,1800,70,0,4,4,2,5,3.0,882.373223416,3383,0,80283.0,1,1,9,7,5,3,0,1,0,0,0,1,0,0,1,2,26761.0,8,4,8,8_0,2500.0,0,2500.0,0,4,10,0.0,0.0,0.0,0,1,244.27165193071238,244.27165193071238,0.0 8047,9424,9423,12,12,32,111,53,41,0,8692,0,250,0,0,1,1,0,1,1.0,3023.11338892,0,0,27150.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,0,1,27150.0,8,4,8,8_0,10000.0,0,10000.0,0,12,12,48.0,70.0,5.5,0,0,977.0866077228495,977.0866077228495,0.0 8048,9451,9450,7,9,37,111,21,50,0,8739,0,150,0,0,2,8,2,4,2.1,6161.07928668,0,0,54753.0,1,1,4,4,4,1,0,1,0,0,1,0,0,0,0,1,26072.8571429,8,4,8,8_0,12000.0,0,12000.0,0,2,7,0.0,20.0,0.0,0,1,1172.5039292674194,1172.5039292674194,0.0 8049,9471,9470,7,8,46,111,38,20,0,8776,0,0,0,0,2,4,2,4,2.1,5254.50162963,0,0,53381.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,25419.5238095,8,4,8,8_0,5892.0,0,0.0,5892,2,10,156.0,56.25,5.5,0,1,575.699429270303,0.0,575.699429270303 8050,9481,9480,11,11,60,111,74,10,0,8789,0,0,0,0,0,6,0,1,1.0,1781.90967473,3535,0,25220.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,25220.0,8,4,8,8_0,5000.0,0,0.0,5000,12,12,0.0,0.0,0.0,0,0,488.54330386142476,0.0,488.54330386142476 -8051,9484,9483,3,7,37,111,46,60,0,8795,0,300,0,0,1,3,1,2,1.3,2643.71768553,133,0,35664.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,0,1,27433.846153799997,8,4,8,8_0,10445.0,0,10445.0,0,2,7,0.0,32.0,3.3,0,1,1020.5669617665164,1020.5669617665164,0.0 -8052,9487,9486,2,6,30,112,46,50,0,8799,0,700,0,0,2,5,1,3,1.8,3233.22815465,0,0,45058.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,25032.222222200002,8,4,8,8_1,30000.0,0,30000.0,0,2,8,228.3,82.0,3.31,1,0,3148.7399112594376,3148.7399112594376,0.0 -8053,9489,9488,6,12,32,112,47,31,0,880,0,730,0,0,2,5,1,3,1.8,2659.65845878,6207,0,46166.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,25647.777777799998,8,4,8,8_0,20000.0,0,20000.0,0,3,10,157.0,26.6666666667,3.3,0,1,1954.173215445699,1954.173215445699,0.0 +8051,9484,9483,3,7,37,111,46,60,0,8795,0,300,0,0,1,3,1,2,1.3,2643.71768553,133,0,35664.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,0,1,27433.8461538,8,4,8,8_0,10445.0,0,10445.0,0,2,7,0.0,32.0,3.3,0,1,1020.5669617665164,1020.5669617665164,0.0 +8052,9487,9486,2,6,30,112,46,50,0,8799,0,700,0,0,2,5,1,3,1.8,3233.22815465,0,0,45058.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,25032.2222222,8,4,8,8_1,30000.0,0,30000.0,0,2,8,228.3,82.0,3.31,1,0,3148.7399112594376,3148.7399112594376,0.0 +8053,9489,9488,6,12,32,112,47,31,0,880,0,730,0,0,2,5,1,3,1.8,2659.65845878,6207,0,46166.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,0,2,25647.7777778,8,4,8,8_0,20000.0,0,20000.0,0,3,10,157.0,26.6666666667,3.3,0,1,1954.173215445699,1954.173215445699,0.0 8054,9501,9500,6,6,56,112,67,50,0,8815,0,0,220,0,1,5,0,2,1.5,1162.05693979,2157,0,38671.0,1,1,7,0,3,1,0,1,1,0,0,0,0,0,1,0,25780.6666667,8,4,8,8_1,4000.0,0,0.0,4000,5,5,0.0,0.0,0.0,1,0,419.831988167925,0.0,419.831988167925 8055,9503,9502,2,13,33,111,22,50,0,882,0,0,0,0,1,4,2,3,1.6,3557.24082422,2340,0,44332.0,1,4,8,7,2,2,1,0,0,0,0,1,0,0,0,2,27707.5,8,4,8,8_0,10000.0,0,10000.0,0,3,10,94.0,30.0,0.0,0,1,977.0866077228495,977.0866077228495,0.0 8056,9514,9513,4,4,51,111,38,12,0,8835,0,75,400,0,1,4,2,4,2.5,2787.68492934,3484,0,63193.0,1,1,10,8,4,2,1,1,0,0,0,0,1,0,1,1,25277.2,8,4,8,8_0,17343.0,0,17343.0,0,2,5,0.0,0.0,0.0,0,0,1694.561303773738,1694.561303773738,0.0 8057,9521,9520,3,15,37,112,52,50,0,8845,0,620,0,0,2,8,0,2,1.5,1350.01257467,6573,0,39655.0,1,2,8,1,3,2,0,1,0,1,0,0,0,0,0,2,26436.6666667,8,4,8,8_0,15287.0,0,15287.0,0,1,13,0.0,0.0,0.0,0,1,1493.67229722592,1493.67229722592,0.0 8058,9524,9523,2,2,47,211,33,41,0,8851,0,0,120,0,1,4,0,2,1.5,1493.34204519,4680,0,41000.0,1,1,3,3,3,2,0,0,0,1,0,0,0,0,1,1,27333.3333333,8,4,8,8_0,32000.0,0,24000.0,8000,3,3,137.0,45.0,3.3,0,1,3126.6771447131187,2345.0078585348388,781.6692861782797 -8059,9548,9547,9,13,46,111,37,50,0,8880,0,0,500,0,2,6,1,3,1.8,3075.52890118,2558,0,51050.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,28361.1111111,8,4,8,8_0,15000.0,0,0.0,15000,12,12,0.0,6.666666666669999,0.0,0,1,1465.6299115842744,0.0,1465.6299115842744 +8059,9548,9547,9,13,46,111,37,50,0,8880,0,0,500,0,2,6,1,3,1.8,3075.52890118,2558,0,51050.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,28361.1111111,8,4,8,8_0,15000.0,0,0.0,15000,12,12,0.0,6.66666666667,0.0,0,1,1465.6299115842744,0.0,1465.6299115842744 8060,9556,9555,1,1,58,112,46,50,0,8890,0,100,150,0,2,4,0,2,1.5,2416.82604333,2600,0,37690.0,1,1,7,0,3,2,0,1,1,0,0,0,0,0,1,1,25126.6666667,8,4,8,8_1,27343.0,0,17343.0,10000,1,0,142.6,50.0,3.3,0,1,2869.866513118893,1820.2865426990807,1049.5799704198125 8061,9557,9556,11,11,79,112,72,50,0,8891,0,0,0,0,0,3,0,1,1.0,2436.89779892,0,0,26580.0,5,1,9,1,1,1,0,0,0,1,0,0,0,0,0,1,26580.0,8,4,8,8_0,14660.0,0,14660.0,0,11,11,0.0,0.0,0.0,0,0,1432.4089669216976,1432.4089669216976,0.0 8062,9570,9569,2,2,52,211,52,60,0,8908,0,0,100,0,1,5,0,2,1.5,2211.3450605,4836,0,38210.0,1,1,4,4,3,1,0,1,0,0,1,0,0,0,1,0,25473.3333333,8,4,8,8_0,10676.0,0,0.0,10676,1,3,3183.5,35.0,3.3,0,1,1043.1376624049142,0.0,1043.1376624049142 @@ -8076,7 +8076,7 @@ 8074,9664,9663,4,4,62,211,78,70,0,9043,0,0,0,0,0,4,0,2,1.5,1247.77147252,0,0,38932.0,5,1,3,4,3,2,0,0,0,0,1,0,0,0,1,1,25954.6666667,8,4,8,8_0,22000.0,0,10000.0,12000,2,3,0.0,0.0,0.0,0,0,2149.590536990269,977.0866077228495,1172.5039292674194 8075,9666,9665,2,2,39,112,38,31,0,9048,0,350,0,0,2,5,1,3,1.8,2804.77290744,0,0,51330.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,28516.6666667,8,4,8,8_1,15716.0,0,15716.0,0,1,2,522.0,66.6666666667,3.3,0,1,1649.5198815117774,1649.5198815117774,0.0 8076,9686,9685,0,8,30,111,62,41,0,9070,0,160,0,0,2,6,1,3,1.8,1677.14488982,0,0,52023.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,28901.6666667,8,4,8,8_0,23000.0,0,23000.0,0,4,8,0.0,0.0,0.0,0,1,2247.299197762554,2247.299197762554,0.0 -8077,9694,9693,2,5,53,111,75,50,0,908,0,0,0,0,1,4,1,3,2.0,3473.63128309,0,0,51308.0,5,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,25654.0,8,4,8,8_0,30000.0,0,30000.0,0,2,4,0.0,6.666666666669999,0.0,0,1,2931.259823168549,2931.259823168549,0.0 +8077,9694,9693,2,5,53,111,75,50,0,908,0,0,0,0,1,4,1,3,2.0,3473.63128309,0,0,51308.0,5,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,25654.0,8,4,8,8_0,30000.0,0,30000.0,0,2,4,0.0,6.66666666667,0.0,0,1,2931.259823168549,2931.259823168549,0.0 8078,9702,9701,8,9,47,400,21,50,0,9088,0,460,0,0,2,6,2,4,2.3,1492.55318463,0,0,63369.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,27551.7391304,8,4,8,8_1,4000.0,0,4000.0,0,4,10,25.0,12.25,2.24,0,1,419.831988167925,419.831988167925,0.0 8079,9722,9721,0,0,48,300,42,50,2,9115,0,608,0,0,2,6,0,2,1.5,2595.49509687,2134,14000,40290.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,26860.0,8,4,8,8_1,33672.0,0,33672.0,0,1,1,172.0,17.0,3.3,1,1,3534.1456763975925,3534.1456763975925,0.0 8080,9724,9723,4,4,64,111,75,60,0,912,0,0,0,0,1,5,0,2,1.5,1924.94681492,0,0,42980.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,1,1,28653.3333333,8,4,8,8_0,22818.0,0,14818.0,8000,7,7,0.0,0.0,0.0,0,1,2229.516221501998,1447.8469353237185,781.6692861782797 @@ -8107,16 +8107,16 @@ 8105,9990,9989,2,2,52,111,37,31,0,9505,0,200,0,0,1,7,0,1,1.0,4419.10276458,0,0,28040.0,1,2,6,5,1,1,0,1,0,0,1,0,0,0,0,1,28040.0,8,4,8,8_0,5144.0,0,5144.0,0,1,2,75.0,50.0,3.3,0,1,502.6133510126338,502.6133510126338,0.0 8106,9992,9991,5,7,48,112,45,31,0,9507,0,0,130,0,2,5,1,2,1.5,2176.05383754,6235,0,40097.0,1,2,6,0,2,2,0,1,1,0,0,0,0,0,2,0,26731.3333333,8,4,8,8_1,20000.0,0,0.0,20000,5,6,0.0,0.0,0.0,0,1,2099.159940839625,0.0,2099.159940839625 8107,9993,9992,1,5,46,111,47,50,2,9508,0,0,99999,380,2,4,1,3,2.0,5070.81780415,6165,7000,51343.0,1,3,10,8,4,1,1,1,0,0,0,0,1,0,1,0,25671.5,8,4,8,8_0,5000.0,0,0.0,5000,5,6,7.5,40.0,3.3,0,1,488.54330386142476,0.0,488.54330386142476 -8108,10034,10033,13,14,48,111,21,50,0,9567,0,100,0,0,2,5,1,3,1.8,1813.51820913,1221,0,47414.0,1,2,5,4,4,1,0,1,0,0,1,0,0,0,0,1,26341.111111099995,8,4,8,8_0,15000.0,0,15000.0,0,8,14,98.0,50.0,5.5,0,0,1465.6299115842744,1465.6299115842744,0.0 +8108,10034,10033,13,14,48,111,21,50,0,9567,0,100,0,0,2,5,1,3,1.8,1813.51820913,1221,0,47414.0,1,2,5,4,4,1,0,1,0,0,1,0,0,0,0,1,26341.1111111,8,4,8,8_0,15000.0,0,15000.0,0,8,14,98.0,50.0,5.5,0,0,1465.6299115842744,1465.6299115842744,0.0 8109,10059,10058,7,7,39,111,33,20,0,9596,0,0,0,0,1,4,0,1,1.0,2404.23402297,1300,0,27667.0,1,4,7,5,1,1,0,0,0,0,1,0,0,0,1,0,27667.0,8,4,8,8_0,6000.0,0,0.0,6000,9,9,0.0,90.0,3.3,0,0,586.2519646337097,0.0,586.2519646337097 8110,10065,10064,5,5,26,111,42,20,0,9610,0,80,300,252,2,3,1,3,1.8,5405.40389998,0,0,48810.0,1,3,4,4,4,2,0,1,0,0,1,0,0,0,1,1,27116.6666667,8,4,8,8_0,60000.0,0,40000.0,20000,3,4,86.0,30.0,3.3,0,1,5862.519646337098,3908.346430891398,1954.173215445699 8111,10077,10076,0,1,29,221,43,33,2,9624,0,450,0,0,2,4,1,3,1.8,5079.23393144,0,12500,46683.0,1,2,1,1,4,2,0,1,0,1,0,0,0,0,0,2,25935.0,8,4,8,8_0,28672.0,0,28672.0,0,1,1,43.0,19.6666666667,3.3,1,1,2801.502721662954,2801.502721662954,0.0 8112,10090,10089,2,2,35,112,48,20,0,964,0,0,0,0,2,5,3,5,2.4,1760.58409006,4117,0,60899.0,1,4,7,0,4,1,0,0,1,0,0,0,0,0,0,1,25374.5833333,8,4,8,8_1,20000.0,0,20000.0,0,3,3,158.4,50.0,0.0,0,1,2099.159940839625,2099.159940839625,0.0 8113,10117,10116,0,8,43,111,54,50,2,9674,0,100,0,0,2,4,2,4,2.1,2703.11216426,0,10000,52420.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,24961.9047619,8,4,8,8_0,18625.0,0,18625.0,0,2,6,37.9,38.0,3.3,0,0,1819.8238068838073,1819.8238068838073,0.0 8114,10118,10117,3,29,42,111,38,12,0,9676,0,0,280,0,1,4,1,4,2.5,1805.44172196,4160,0,68531.0,1,2,10,8,5,2,1,1,0,0,0,0,1,0,1,1,27412.4,8,4,8,8_0,5100.0,0,0.0,5100,18,21,51.0,38.75,5.56,0,0,498.31416993865327,0.0,498.31416993865327 -8115,10123,10122,4,4,31,112,54,31,0,9682,0,300,0,0,2,6,1,3,1.8,2072.65676555,3724,0,51493.0,1,2,8,1,4,1,0,1,0,1,0,0,0,0,0,1,28607.222222200002,8,4,8,8_0,27000.0,0,27000.0,0,4,4,50.4,66.6666666667,3.31,0,1,2638.133840851694,2638.133840851694,0.0 +8115,10123,10122,4,4,31,112,54,31,0,9682,0,300,0,0,2,6,1,3,1.8,2072.65676555,3724,0,51493.0,1,2,8,1,4,1,0,1,0,1,0,0,0,0,0,1,28607.2222222,8,4,8,8_0,27000.0,0,27000.0,0,4,4,50.4,66.6666666667,3.31,0,1,2638.133840851694,2638.133840851694,0.0 8116,10132,10131,0,4,35,112,38,12,2,9698,0,200,150,0,2,8,4,6,2.7,1697.9755036,2418,18000,68220.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,1,1,25266.6666667,8,4,8,8_1,55000.0,0,30000.0,25000,5,6,148.0,22.5,3.3,0,1,5772.689837308969,3148.7399112594376,2623.9499260495313 -8117,10140,10139,3,10,48,112,35,50,0,9709,0,100,0,0,2,8,2,4,2.1,2665.51215584,0,0,53503.0,1,2,7,0,4,1,0,1,1,0,0,0,0,0,0,1,25477.619047599997,8,4,8,8_1,15000.0,0,15000.0,0,9,9,131.0,66.6666666667,1.1,0,1,1574.3699556297188,1574.3699556297188,0.0 +8117,10140,10139,3,10,48,112,35,50,0,9709,0,100,0,0,2,8,2,4,2.1,2665.51215584,0,0,53503.0,1,2,7,0,4,1,0,1,1,0,0,0,0,0,0,1,25477.6190476,8,4,8,8_1,15000.0,0,15000.0,0,9,9,131.0,66.6666666667,1.1,0,1,1574.3699556297188,1574.3699556297188,0.0 8118,10154,10153,2,2,56,111,52,41,0,9730,0,0,250,0,1,7,0,2,1.5,3113.19573912,5200,0,39462.0,1,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,26308.0,8,4,8,8_0,6891.0,0,6891.0,0,0,0,0.0,0.0,1.1,0,0,673.3103813818157,673.3103813818157,0.0 8119,10157,10156,2,2,67,111,75,50,0,9736,0,0,0,0,0,8,0,2,1.5,1048.44060592,0,0,41355.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,27570.0,8,4,8,8_0,15500.0,0,14500.0,1000,3,3,0.0,0.0,0.0,0,0,1514.4842419704166,1416.775581198132,97.70866077228496 8120,10168,10167,3,6,37,112,47,20,0,9753,0,650,40,0,2,6,0,2,1.5,1717.77722225,0,0,38189.0,1,2,6,0,3,2,0,1,1,0,0,0,0,0,1,1,25459.3333333,8,4,8,8_1,30000.0,0,20000.0,10000,6,6,0.0,0.0,0.0,0,1,3148.7399112594376,2099.159940839625,1049.5799704198125 @@ -8168,14 +8168,14 @@ 8166,321,320,1,1,71,112,74,12,1,1044,0,0,0,0,0,4,0,2,1.5,1185.11313458,0,23000,50073.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,0,2,33382.0,9,5,9,9_1,21000.0,0,21000.0,0,1,2,0.0,0.0,0.0,0,0,2161.5142217981643,2161.5142217981643,0.0 8167,330,329,0,14,41,112,46,20,0,1045,0,0,80,490,1,2,0,1,1.0,2816.32688263,1560,0,30043.0,1,3,10,0,1,1,0,1,1,0,0,0,0,0,1,0,30043.0,9,5,9,9_1,15000.0,0,0.0,15000,18,18,38.0,30.0,3.3,0,1,1543.9387298558318,0.0,1543.9387298558318 8168,343,342,6,8,61,112,74,50,0,10473,0,0,0,0,0,5,0,2,1.5,1037.52589649,2049,0,44900.0,5,1,8,2,3,2,0,0,0,1,0,0,0,0,0,2,29933.3333333,9,5,9,9_0,25102.0,0,25102.0,0,4,8,0.0,0.0,0.0,0,0,2551.642805750029,2551.642805750029,0.0 -8169,351,350,0,0,22,111,56,20,0,10481,0,0,0,0,1,7,0,1,1.0,3514.8431259999998,0,0,30480.0,3,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,30480.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,50.0,1.1,0,0,0.0,0.0,0.0 +8169,351,350,0,0,22,111,56,20,0,10481,0,0,0,0,1,7,0,1,1.0,3514.843126,0,0,30480.0,3,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,30480.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,50.0,1.1,0,0,0.0,0.0,0.0 8170,361,360,3,3,86,111,74,20,0,10494,0,0,0,0,0,4,0,2,1.5,2590.32141273,0,0,43588.0,5,4,6,4,3,2,0,0,0,0,1,0,0,0,2,0,29058.6666667,9,5,9,9_0,10000.0,0,0.0,10000,7,7,0.0,0.0,0.0,0,0,1016.5097624691374,0.0,1016.5097624691374 8171,362,361,11,11,39,112,34,10,0,10495,0,0,0,500,1,2,0,1,1.0,4839.55868311,312,0,29550.0,1,3,9,3,1,1,0,0,0,1,0,0,0,0,1,0,29550.0,9,5,9,9_0,15000.0,0,0.0,15000,3,10,0.0,10.0,3.3,0,1,1524.764643703706,0.0,1524.764643703706 8172,367,366,8,9,50,111,38,12,0,10500,0,99999,110,0,2,6,2,4,2.5,2659.73017337,2756,0,90525.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,1,1,36210.0,9,5,9,9_0,30144.0,0,30144.0,0,5,9,51.6,48.3333333333,5.57,1,0,3064.1670279869677,3064.1670279869677,0.0 8173,375,374,0,0,44,111,46,31,0,10516,0,0,0,500,1,3,1,2,1.5,3629.70079675,0,0,51511.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,34340.6666667,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,9.0,2.2,0,0,0.0,0.0,0.0 8174,379,378,1,3,42,221,33,31,0,10521,0,250,150,0,2,5,1,3,2.0,3840.98219746,3626,0,59494.0,1,1,1,3,4,2,0,1,0,1,0,0,0,0,1,1,29747.0,9,5,9,9_0,24891.0,0,16891.0,8000,2,2,43.6,16.6666666667,3.32,0,1,2530.19444976193,1716.98663978662,813.2078099753099 8175,383,382,15,18,72,111,74,50,0,10527,0,0,0,0,0,7,0,1,1.0,2878.36769355,1984,0,33630.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,33630.0,9,5,9,9_0,2717.0,0,0.0,2717,1,16,0.0,0.0,0.0,0,0,276.18570246286464,0.0,276.18570246286464 -8176,393,392,2,2,53,300,62,50,0,10538,0,450,144,0,2,4,2,4,2.3,780.3875760230001,4161,0,70224.0,1,1,0,0,4,3,1,1,1,0,0,0,0,0,2,1,30532.173913,9,5,9,9_1,52000.0,0,40000.0,12000,4,4,1609.5,50.0,3.3,0,1,5352.320930166883,4117.169946282218,1235.1509838846653 +8176,393,392,2,2,53,300,62,50,0,10538,0,450,144,0,2,4,2,4,2.3,780.387576023,4161,0,70224.0,1,1,0,0,4,3,1,1,1,0,0,0,0,0,2,1,30532.173913,9,5,9,9_1,52000.0,0,40000.0,12000,4,4,1609.5,50.0,3.3,0,1,5352.320930166883,4117.169946282218,1235.1509838846653 8177,403,402,1,17,25,111,63,43,2,10548,0,500,0,0,2,2,0,2,1.5,3221.73995732,5044,1200,46300.0,1,2,10,8,3,2,0,1,0,0,0,0,1,0,0,2,30866.6666667,9,5,9,9_0,14818.0,0,14818.0,0,8,19,53.6,15.0,0.0,0,1,1506.2641660267677,1506.2641660267677,0.0 8178,409,408,3,3,65,112,75,60,0,10556,0,0,0,0,0,5,0,2,1.5,5039.43593106,2615,0,50023.0,5,1,9,1,3,1,0,0,0,1,0,0,0,0,0,1,33348.6666667,9,5,9,9_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,0,1219.811714962965,1219.811714962965,0.0 8179,423,422,0,0,27,111,34,20,1,10578,0,1000,0,0,1,3,0,1,1.0,3811.3138938,3083,12000,35881.0,1,1,8,7,1,1,0,1,0,0,0,1,0,0,0,1,35881.0,9,5,9,9_0,35000.0,0,35000.0,0,2,4,258.0,100.0,3.3,0,1,3557.784168641981,3557.784168641981,0.0 @@ -8236,9 +8236,9 @@ 8234,978,977,5,5,39,111,35,31,0,1134,0,0,0,1200,2,5,2,4,2.1,3630.09432649,0,0,72885.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,34707.1428571,9,5,9,9_0,10000.0,0,10000.0,0,5,5,260.5,63.75,3.3,0,1,1016.5097624691374,1016.5097624691374,0.0 8235,982,981,0,9,21,111,46,31,0,1135,0,99999,0,0,1,2,0,1,1.0,2990.79299658,1786,0,33066.0,1,3,6,4,1,1,0,1,0,0,1,0,0,1,0,1,33066.0,9,5,9,9_0,20000.0,0,20000.0,0,3,6,0.0,0.0,0.0,0,1,2033.0195249382748,2033.0195249382748,0.0 8236,986,985,4,4,46,112,37,31,0,11354,0,199998,0,0,2,5,3,5,2.8,1465.12648194,3178,0,93856.0,1,2,10,4,4,2,0,1,0,0,1,0,0,0,0,2,33520.0,9,5,9,9_0,25000.0,0,25000.0,0,3,3,247.7,38.0,3.31,1,1,2541.2744061728436,2541.2744061728436,0.0 -8237,989,988,8,10,41,112,43,31,0,11358,0,0,132,0,2,7,2,4,2.1,1603.91088144,0,0,67840.0,1,2,5,0,4,2,1,1,1,0,0,0,0,0,2,0,32304.761904799998,9,5,9,9_1,12000.0,0,0.0,12000,9,9,143.5,15.0,3.31,0,1,1235.1509838846653,0.0,1235.1509838846653 +8237,989,988,8,10,41,112,43,31,0,11358,0,0,132,0,2,7,2,4,2.1,1603.91088144,0,0,67840.0,1,2,5,0,4,2,1,1,1,0,0,0,0,0,2,0,32304.7619048,9,5,9,9_1,12000.0,0,0.0,12000,9,9,143.5,15.0,3.31,0,1,1235.1509838846653,0.0,1235.1509838846653 8238,995,994,7,9,40,111,38,20,0,11366,0,20,0,0,1,3,0,1,1.0,4210.07432639,0,0,31734.0,1,2,4,3,1,1,0,1,0,1,0,0,0,0,0,1,31734.0,9,5,9,9_0,8000.0,0,8000.0,0,6,9,0.0,40.0,3.3,1,1,813.2078099753099,813.2078099753099,0.0 -8239,1014,1013,0,2,25,111,56,60,0,11385,0,0,300,0,2,3,1,3,1.8,2918.89114239,2861,0,54283.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,2,0,30157.222222200002,9,5,9,9_0,70.0,0,0.0,70,0,0,0.0,0.0,0.0,0,1,7.115568337283962,0.0,7.115568337283962 +8239,1014,1013,0,2,25,111,56,60,0,11385,0,0,300,0,2,3,1,3,1.8,2918.89114239,2861,0,54283.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,2,0,30157.2222222,9,5,9,9_0,70.0,0,0.0,70,0,0,0.0,0.0,0.0,0,1,7.115568337283962,0.0,7.115568337283962 8240,1019,1018,22,22,65,111,75,50,0,11391,0,0,0,0,0,8,0,2,1.5,1384.28713778,0,0,46914.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,1,1,31276.0,9,5,9,9_0,5000.0,0,2500.0,2500,10,17,0.0,0.0,0.0,0,0,508.2548812345687,254.12744061728435,254.12744061728435 8241,1020,1019,0,0,62,111,75,60,0,11392,0,0,0,0,0,5,0,1,1.0,2065.36553811,4212,0,29556.0,5,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,29556.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8242,1023,1022,8,10,40,112,47,20,0,11395,0,680,0,0,2,6,2,4,2.1,2501.62426747,6596,0,66437.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,31636.6666667,9,5,9,9_1,30000.0,0,30000.0,0,4,8,262.0,31.5,3.3,0,0,3087.8774597116635,3087.8774597116635,0.0 @@ -8258,10 +8258,10 @@ 8256,1101,1100,4,4,69,112,75,50,0,11506,0,0,0,0,0,6,0,2,1.5,1320.69388375,0,0,53802.0,5,1,5,0,3,2,0,0,1,0,0,0,0,0,0,2,35868.0,9,5,9,9_1,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,1029.2924865705545,1029.2924865705545,0.0 8257,1115,1114,2,2,42,112,45,41,0,11522,400,500,0,0,2,5,0,2,1.5,1884.68056936,2321,0,47049.0,1,3,7,0,3,2,0,1,1,0,0,0,0,0,0,1,31366.0,9,5,9,9_1,16316.0,0,6316.0,10000,2,2,92.5,30.0,3.3,1,1,1679.3936210885165,650.1011345179621,1029.2924865705545 8258,1116,1115,6,6,65,111,74,50,0,11523,0,0,0,770,0,4,0,2,1.5,3866.31031264,6860,0,47851.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,31900.6666667,9,5,9,9_0,20000.0,0,20000.0,0,2,7,0.0,0.0,0.0,0,0,2033.0195249382748,2033.0195249382748,0.0 -8259,1117,1116,3,5,33,112,21,50,0,11526,0,0,0,0,2,4,2,4,2.1,2871.57199322,0,0,76121.0,1,4,7,1,4,1,0,0,0,1,0,0,0,0,0,1,36248.095238099995,9,5,9,9_0,20000.0,0,20000.0,0,4,5,31.4,18.5,3.3,0,1,2033.0195249382748,2033.0195249382748,0.0 +8259,1117,1116,3,5,33,112,21,50,0,11526,0,0,0,0,2,4,2,4,2.1,2871.57199322,0,0,76121.0,1,4,7,1,4,1,0,0,0,1,0,0,0,0,0,1,36248.0952381,9,5,9,9_0,20000.0,0,20000.0,0,4,5,31.4,18.5,3.3,0,1,2033.0195249382748,2033.0195249382748,0.0 8260,1118,1117,4,4,48,112,46,50,0,11527,0,400,600,0,3,6,1,3,2.0,2160.47701138,6032,0,59746.0,1,1,9,1,4,4,0,1,0,1,0,0,0,0,3,1,29873.0,9,5,9,9_0,15000.0,0,0.0,15000,4,5,81.0,50.0,3.3,0,1,1524.764643703706,0.0,1524.764643703706 8261,1119,1118,1,18,55,120,37,43,2,11528,0,0,0,0,1,5,0,1,1.0,2534.53222761,0,2000,34940.0,1,2,0,0,1,1,0,0,1,0,0,0,0,0,1,0,34940.0,9,5,9,9_1,15000.0,0,0.0,15000,18,18,38.0,30.0,3.3,0,1,1543.9387298558318,0.0,1543.9387298558318 -8262,1135,1134,5,6,58,112,47,50,0,1155,0,600,0,0,4,5,1,5,2.8,844.7672147989999,2600,0,85440.0,1,2,10,0,5,1,0,1,1,0,0,0,0,0,0,1,30514.2857143,9,5,9,9_1,19000.0,0,19000.0,0,5,5,0.0,25.0,0.0,0,1,1955.6557244840535,1955.6557244840535,0.0 +8262,1135,1134,5,6,58,112,47,50,0,1155,0,600,0,0,4,5,1,5,2.8,844.767214799,2600,0,85440.0,1,2,10,0,5,1,0,1,1,0,0,0,0,0,0,1,30514.2857143,9,5,9,9_1,19000.0,0,19000.0,0,5,5,0.0,25.0,0.0,0,1,1955.6557244840535,1955.6557244840535,0.0 8263,1136,1135,1,1,74,111,74,20,0,11550,0,0,0,0,0,5,0,1,1.0,2191.33656731,0,0,37230.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,37230.0,9,5,9,9_0,11000.0,0,0.0,11000,2,2,0.0,0.0,0.0,0,0,1118.1607387160511,0.0,1118.1607387160511 8264,1151,1150,8,8,69,111,74,20,0,11572,0,0,0,0,2,6,0,4,2.5,897.749024215,2600,0,79824.0,5,1,10,8,5,2,0,0,0,0,0,0,1,0,2,0,31929.6,9,5,9,9_0,6000.0,0,0.0,6000,6,8,0.0,37.5,5.57,0,1,609.9058574814825,0.0,609.9058574814825 8265,1157,1156,4,12,55,112,37,31,0,11580,0,970,0,0,2,4,0,2,1.5,2895.29948061,5252,0,52114.0,1,2,10,0,3,4,0,0,1,0,0,0,0,0,0,4,34742.6666667,9,5,9,9_1,22000.0,0,22000.0,0,5,12,108.0,24.5,3.3,0,1,2264.44347045522,2264.44347045522,0.0 @@ -8274,18 +8274,18 @@ 8272,1221,1220,7,7,33,111,46,60,0,11675,0,0,0,0,2,4,0,2,1.5,1916.4568923,4680,0,44130.0,1,4,7,5,3,2,1,0,0,0,1,0,0,0,1,1,29420.0,9,5,9,9_0,14000.0,0,14000.0,0,6,0,31.6,20.0,1.1,0,0,1423.1136674567924,1423.1136674567924,0.0 8273,1238,1237,11,11,70,111,42,20,0,117,0,0,0,0,1,7,0,2,1.5,1058.61058083,0,0,44626.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,0,2,29750.6666667,9,5,9,9_0,15000.0,0,15000.0,0,2,13,86.5,40.0,3.3,0,1,1524.764643703706,1524.764643703706,0.0 8274,1244,1243,16,16,69,300,74,20,0,11704,0,0,0,0,0,8,0,2,1.5,1599.56678205,3562,0,48791.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,32527.3333333,9,5,9,9_1,3500.0,0,0.0,3500,14,16,0.0,0.0,0.0,0,0,360.25237029969406,0.0,360.25237029969406 -8275,1252,1251,7,7,44,111,34,10,0,11714,0,515,0,0,2,7,2,4,2.3,1395.51950075,2600,0,66827.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,29055.217391299997,9,5,9,9_0,24572.0,0,24572.0,0,1,7,275.9,23.3333333333,3.3,0,1,2497.7677883391643,2497.7677883391643,0.0 -8276,1261,1260,9,9,52,120,65,70,0,11727,0,0,0,0,1,5,0,2,1.5,2864.6086969999997,0,0,44570.0,1,1,0,3,3,2,0,0,0,1,0,0,0,0,0,2,29713.3333333,9,5,9,9_0,14500.0,0,14500.0,0,8,10,0.0,0.0,0.0,0,1,1473.9391555802495,1473.9391555802495,0.0 +8275,1252,1251,7,7,44,111,34,10,0,11714,0,515,0,0,2,7,2,4,2.3,1395.51950075,2600,0,66827.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,29055.2173913,9,5,9,9_0,24572.0,0,24572.0,0,1,7,275.9,23.3333333333,3.3,0,1,2497.7677883391643,2497.7677883391643,0.0 +8276,1261,1260,9,9,52,120,65,70,0,11727,0,0,0,0,1,5,0,2,1.5,2864.608697,0,0,44570.0,1,1,0,3,3,2,0,0,0,1,0,0,0,0,0,2,29713.3333333,9,5,9,9_0,14500.0,0,14500.0,0,8,10,0.0,0.0,0.0,0,1,1473.9391555802495,1473.9391555802495,0.0 8277,1278,1277,7,9,50,111,62,50,0,11755,0,150,25,386,2,2,0,2,1.5,2023.7990108,2486,0,46010.0,1,3,8,7,3,2,0,1,0,0,0,1,0,0,1,1,30673.3333333,9,5,9,9_0,20000.0,0,15000.0,5000,7,8,0.0,0.0,0.0,0,1,2033.0195249382748,1524.764643703706,508.2548812345687 8278,1284,1283,11,11,51,120,46,42,0,11762,0,0,0,0,2,5,0,2,1.5,2254.67222583,6134,0,45858.0,1,2,0,0,3,2,0,0,1,0,0,0,0,0,0,2,30572.0,9,5,9,9_1,17000.0,0,17000.0,0,2,10,244.5,80.0,3.3,0,0,1749.7972271699425,1749.7972271699425,0.0 -8279,1286,1285,3,12,58,111,68,70,0,11764,0,100,0,0,4,7,2,4,2.5,2621.0486126999995,2080,0,79188.0,1,2,8,7,4,4,0,0,0,0,0,1,0,0,1,3,31675.2,9,5,9,9_0,41000.0,0,41000.0,0,14,14,110.5,30.0,3.31,0,1,4167.690026123463,4167.690026123463,0.0 +8279,1286,1285,3,12,58,111,68,70,0,11764,0,100,0,0,4,7,2,4,2.5,2621.0486127,2080,0,79188.0,1,2,8,7,4,4,0,0,0,0,0,1,0,0,1,3,31675.2,9,5,9,9_0,41000.0,0,41000.0,0,14,14,110.5,30.0,3.31,0,1,4167.690026123463,4167.690026123463,0.0 8280,1287,1286,18,18,52,111,38,12,0,11765,0,0,0,0,1,5,1,2,1.5,1380.25493255,0,0,54372.0,1,1,7,5,2,1,0,0,0,0,1,0,0,0,1,0,36248.0,9,5,9,9_0,22000.0,0,0.0,22000,4,18,0.0,120.0,5.55,0,1,2236.3214774321023,0.0,2236.3214774321023 8281,1297,1296,7,7,33,111,33,12,0,11779,0,0,0,0,1,3,0,1,1.0,3802.96048416,0,0,37065.0,1,2,9,7,1,1,0,0,0,0,0,1,0,0,0,1,37065.0,9,5,9,9_0,25000.0,0,25000.0,0,3,7,29.5,20.0,3.3,0,1,2541.2744061728436,2541.2744061728436,0.0 8282,1317,1316,3,6,65,112,38,12,0,11803,0,0,350,0,2,9,1,3,2.0,2108.86286468,4004,0,68355.0,1,1,8,0,4,1,1,1,1,0,0,0,0,0,1,0,34177.5,9,5,9,9_1,15000.0,0,0.0,15000,5,5,123.6,12.0,0.0,1,1,1543.9387298558318,0.0,1543.9387298558318 8283,1329,1328,4,5,62,111,72,12,0,11820,0,0,0,0,1,7,0,2,1.5,1451.46130187,0,0,54367.0,5,1,7,6,3,2,1,0,0,0,1,0,0,0,0,2,36244.6666667,9,5,9,9_0,10000.0,0,10000.0,0,5,5,74.9,60.0,3.3,0,1,1016.5097624691374,1016.5097624691374,0.0 8284,1345,1344,3,3,63,111,75,41,0,11843,0,0,0,0,0,3,1,3,2.0,2782.86343286,0,0,59437.0,5,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,29718.5,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8285,1358,1357,2,3,70,112,72,70,0,11856,0,0,0,0,0,5,0,2,1.5,5606.37865874,0,0,49955.0,5,1,9,2,3,3,0,0,0,1,0,0,0,0,1,2,33303.3333333,9,5,9,9_0,29000.0,0,29000.0,0,2,2,0.0,0.0,0.0,0,0,2947.878311160499,2947.878311160499,0.0 -8286,1378,1377,2,3,29,111,33,10,0,11885,0,0,150,430,1,2,0,1,1.0,3330.3882996999996,1466,0,29542.0,1,3,8,7,1,1,1,1,0,0,0,1,0,0,1,0,29542.0,9,5,9,9_0,25000.0,0,0.0,25000,3,3,59.0,20.0,3.3,0,1,2541.2744061728436,0.0,2541.2744061728436 +8286,1378,1377,2,3,29,111,33,10,0,11885,0,0,150,430,1,2,0,1,1.0,3330.3882997,1466,0,29542.0,1,3,8,7,1,1,1,1,0,0,0,1,0,0,1,0,29542.0,9,5,9,9_0,25000.0,0,0.0,25000,3,3,59.0,20.0,3.3,0,1,2541.2744061728436,0.0,2541.2744061728436 8287,1385,1384,4,13,57,111,52,50,0,11898,0,0,0,620,1,2,0,1,1.0,3664.57094897,0,0,30822.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,30822.0,9,5,9,9_0,12000.0,0,12000.0,0,5,13,0.0,0.0,0.0,0,1,1219.811714962965,1219.811714962965,0.0 8288,1420,1419,5,12,50,111,37,42,0,11946,0,100,350,0,3,6,2,4,2.5,1320.00362929,6430,0,88941.0,1,1,7,5,4,3,0,1,0,0,1,0,0,0,1,2,35576.4,9,5,9,9_0,45000.0,0,45000.0,0,11,12,134.4,22.5,3.3,0,1,4574.293931111119,4574.293931111119,0.0 8289,1430,1429,2,10,50,112,38,41,0,11958,0,178,0,0,2,5,0,2,1.5,1792.08612605,1820,0,53570.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,0,2,35713.3333333,9,5,9,9_1,40311.0,0,40311.0,0,2,9,160.0,27.5,3.3,0,1,4149.180942614562,4149.180942614562,0.0 @@ -8297,17 +8297,17 @@ 8295,1464,1463,2,2,73,111,75,50,0,1201,0,0,0,0,0,5,0,1,1.0,1888.62310722,4056,0,35289.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,0,1,35289.0,9,5,9,9_0,18000.0,0,18000.0,0,2,3,0.0,0.0,0.0,0,0,1829.7175724444473,1829.7175724444473,0.0 8296,1478,1477,5,5,64,111,74,20,0,1203,0,0,0,0,0,5,0,2,1.5,2210.68237911,0,0,54832.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,36554.6666667,9,5,9,9_0,25000.0,0,25000.0,0,5,6,0.0,0.0,0.0,0,0,2541.2744061728436,2541.2744061728436,0.0 8297,1479,1478,9,9,73,111,75,50,0,12031,0,0,0,0,0,4,0,1,1.0,1870.72941916,0,0,34570.0,5,2,8,6,1,1,0,0,0,0,1,0,0,0,0,1,34570.0,9,5,9,9_0,30000.0,0,30000.0,0,6,6,0.0,0.0,0.0,0,0,3049.529287407412,3049.529287407412,0.0 -8298,1481,1480,7,11,42,111,21,50,0,12033,0,0,0,0,1,6,2,4,2.1,2275.8469534,8408,0,70522.0,1,2,6,4,4,2,1,0,0,0,1,0,0,0,0,2,33581.904761900005,9,5,9,9_0,33287.0,0,33287.0,0,7,10,45.6,4.0,3.3,0,1,3383.6560463310175,3383.6560463310175,0.0 -8299,1487,1486,1,1,40,112,48,31,1,12040,0,809,0,0,2,7,1,3,1.8,2417.15319972,6604,18800,58522.0,1,2,8,0,4,2,1,1,1,0,0,0,0,0,0,2,32512.222222200002,9,5,9,9_1,15000.0,0,15000.0,0,2,0,172.0,40.0,3.3,0,1,1543.9387298558318,1543.9387298558318,0.0 +8298,1481,1480,7,11,42,111,21,50,0,12033,0,0,0,0,1,6,2,4,2.1,2275.8469534,8408,0,70522.0,1,2,6,4,4,2,1,0,0,0,1,0,0,0,0,2,33581.9047619,9,5,9,9_0,33287.0,0,33287.0,0,7,10,45.6,4.0,3.3,0,1,3383.6560463310175,3383.6560463310175,0.0 +8299,1487,1486,1,1,40,112,48,31,1,12040,0,809,0,0,2,7,1,3,1.8,2417.15319972,6604,18800,58522.0,1,2,8,0,4,2,1,1,1,0,0,0,0,0,0,2,32512.2222222,9,5,9,9_1,15000.0,0,15000.0,0,2,0,172.0,40.0,3.3,0,1,1543.9387298558318,1543.9387298558318,0.0 8300,1491,1490,9,12,42,112,43,33,0,12047,0,600,0,0,2,5,2,4,2.5,3003.082007,3224,0,75942.0,1,2,10,1,4,2,0,1,0,1,0,0,0,0,0,2,30376.8,9,5,9,9_0,15000.0,0,15000.0,0,4,11,87.5,15.0,3.3,1,1,1524.764643703706,1524.764643703706,0.0 -8301,1496,1495,2,13,32,111,38,12,0,12053,0,0,0,0,2,3,1,3,1.8,2370.02643003,0,0,52938.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,29410.0,9,5,9,9_0,25000.0,0,25000.0,0,3,5,63.0,11.333333333299999,3.3,1,1,2541.2744061728436,2541.2744061728436,0.0 +8301,1496,1495,2,13,32,111,38,12,0,12053,0,0,0,0,2,3,1,3,1.8,2370.02643003,0,0,52938.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,29410.0,9,5,9,9_0,25000.0,0,25000.0,0,3,5,63.0,11.3333333333,3.3,1,1,2541.2744061728436,2541.2744061728436,0.0 8302,1518,1517,0,0,52,111,38,12,0,12080,0,0,0,0,1,2,0,1,1.0,2613.24563488,780,0,36631.0,1,2,10,8,1,0,0,0,0,0,0,0,1,0,0,0,36631.0,9,5,9,9_0,0.0,0,0.0,0,0,0,26.5,60.0,5.56,0,0,0.0,0.0,0.0 -8303,1535,1534,2,2,52,111,37,10,0,12102,0,390,0,0,2,6,1,3,2.0,1410.2338462999999,1128,0,61128.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,30564.0,9,5,9,9_0,7444.0,0,7444.0,0,1,2,116.2,40.0,3.3,0,1,756.689867182026,756.689867182026,0.0 +8303,1535,1534,2,2,52,111,37,10,0,12102,0,390,0,0,2,6,1,3,2.0,1410.2338463,1128,0,61128.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,30564.0,9,5,9,9_0,7444.0,0,7444.0,0,1,2,116.2,40.0,3.3,0,1,756.689867182026,756.689867182026,0.0 8304,1548,1547,0,15,29,112,46,42,0,1212,0,120,100,0,2,4,0,2,1.5,3049.372697,2001,0,49934.0,1,3,8,0,3,2,0,1,1,0,0,0,0,0,1,1,33289.3333333,9,5,9,9_1,39000.0,0,27000.0,12000,3,7,166.0,60.0,3.3,0,1,4014.2406976251627,2779.0897137404972,1235.1509838846653 8305,1559,1558,1,1,61,211,62,70,0,12132,0,600,0,439,1,4,0,1,1.0,4015.14803437,0,0,35740.0,1,3,2,3,1,1,0,1,0,1,0,0,0,0,0,1,35740.0,9,5,9,9_0,22000.0,0,22000.0,0,3,3,0.0,0.0,0.0,1,0,2236.3214774321023,2236.3214774321023,0.0 8306,1562,1561,0,0,58,111,74,20,1,12139,0,0,0,0,0,9,0,2,1.5,1575.31519264,2096,25900,52662.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,1,1,35108.0,9,5,9,9_0,18000.0,0,11000.0,7000,3,0,0.0,0.0,0.0,0,0,1829.7175724444473,1118.1607387160511,711.5568337283962 8307,1576,1575,8,8,65,300,77,60,0,12161,0,0,0,0,0,4,0,1,1.0,1732.88538581,2500,0,35356.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,35356.0,9,5,9,9_1,14000.0,0,14000.0,0,5,9,0.0,0.0,0.0,0,0,1441.0094811987763,1441.0094811987763,0.0 -8308,1613,1612,4,4,79,111,77,70,0,12220,0,0,0,0,0,4,0,2,1.5,2464.4106891999995,0,0,46847.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,31231.3333333,9,5,9,9_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,0,1524.764643703706,1524.764643703706,0.0 +8308,1613,1612,4,4,79,111,77,70,0,12220,0,0,0,0,0,4,0,2,1.5,2464.4106892,0,0,46847.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,31231.3333333,9,5,9,9_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,0,1524.764643703706,1524.764643703706,0.0 8309,1623,1622,1,1,64,111,74,44,0,12235,0,0,0,0,0,7,0,2,1.5,3326.16949159,0,0,51340.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,34226.6666667,9,5,9,9_0,6000.0,0,6000.0,0,1,1,0.0,0.0,0.0,0,0,609.9058574814825,609.9058574814825,0.0 8310,1648,1647,0,11,58,211,54,30,0,12278,0,0,0,0,1,4,0,1,1.0,1641.91589941,0,0,30846.0,1,1,1,3,1,1,0,0,0,1,0,0,0,0,0,1,30846.0,9,5,9,9_0,25000.0,0,25000.0,0,9,9,78.0,14.0,3.3,0,1,2541.2744061728436,2541.2744061728436,0.0 8311,1661,1660,2,4,33,111,46,12,0,12294,30,0,0,0,1,2,0,2,1.5,2496.02004486,0,0,45557.0,1,2,10,8,3,1,0,1,0,0,0,0,1,0,0,0,30371.3333333,9,5,9,9_0,1812.0,0,0.0,1812,2,4,23.6,43.0,3.3,0,1,184.1915689594077,0.0,184.1915689594077 @@ -8316,11 +8316,11 @@ 8314,1701,1700,12,12,62,111,74,33,0,12349,0,0,0,0,0,3,0,1,1.0,3442.98800326,1560,0,31579.0,5,2,9,7,1,1,0,0,0,0,0,1,0,0,0,1,31579.0,9,5,9,9_0,12000.0,0,12000.0,0,12,14,0.0,0.0,0.0,0,0,1219.811714962965,1219.811714962965,0.0 8315,1712,1711,5,13,62,111,75,31,0,12362,0,0,0,0,0,3,0,1,1.0,2317.45595208,4628,0,30050.0,5,2,8,7,1,1,0,0,0,0,0,1,0,0,1,0,30050.0,9,5,9,9_0,5000.0,0,0.0,5000,2,15,0.0,0.0,0.0,0,0,508.2548812345687,0.0,508.2548812345687 8316,1716,1715,0,2,28,111,54,31,2,12366,0,400,0,609,2,2,0,2,1.5,4400.66108276,6738,10400,44757.0,1,3,10,8,3,2,0,1,0,0,0,0,1,0,0,2,29838.0,9,5,9,9_0,24000.0,0,24000.0,0,1,1,46.0,90.0,3.3,0,1,2439.62342992593,2439.62342992593,0.0 -8317,1727,1726,18,18,68,111,75,12,0,12381,0,0,0,0,0,4,0,2,1.5,947.3995351130001,1396,0,48123.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,32082.0,9,5,9,9_0,14000.0,0,8000.0,6000,15,15,0.0,0.0,0.0,0,0,1423.1136674567924,813.2078099753099,609.9058574814825 +8317,1727,1726,18,18,68,111,75,12,0,12381,0,0,0,0,0,4,0,2,1.5,947.399535113,1396,0,48123.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,32082.0,9,5,9,9_0,14000.0,0,8000.0,6000,15,15,0.0,0.0,0.0,0,0,1423.1136674567924,813.2078099753099,609.9058574814825 8318,1733,1732,7,7,63,111,75,30,0,12390,0,0,0,0,0,4,0,2,1.5,5504.28545141,0,0,47929.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,1,1,31952.6666667,9,5,9,9_0,19416.0,0,10000.0,9416,7,7,0.0,0.0,0.0,0,0,1973.6553548100771,1016.5097624691374,957.1455923409399 8319,1747,1746,0,0,52,112,21,50,0,1241,0,0,0,0,3,7,1,3,2.0,2746.35639352,0,0,62907.0,1,1,10,1,4,0,0,0,0,1,0,0,0,0,0,0,31453.5,9,5,9,9_0,0.0,0,0.0,0,0,0,53.0,50.0,5.55,0,0,0.0,0.0,0.0 8320,1765,1764,0,0,54,112,43,33,0,12431,0,0,0,0,2,6,0,2,1.5,3273.28808638,0,0,54520.0,1,1,8,0,3,0,0,0,1,0,0,0,0,0,0,0,36346.6666667,9,5,9,9_1,20000.0,0,0.0,20000,2,2,122.5,30.0,0.0,0,1,2058.584973141109,0.0,2058.584973141109 -8321,1776,1775,0,0,50,111,45,41,1,12446,0,275,0,0,2,4,0,2,1.5,1006.4421992999999,2340,23900,45782.0,1,1,5,4,3,2,0,1,0,0,1,0,0,0,0,2,30521.3333333,9,5,9,9_0,10000.0,0,10000.0,0,2,0,341.0,240.0,5.52,1,0,1016.5097624691374,1016.5097624691374,0.0 +8321,1776,1775,0,0,50,111,45,41,1,12446,0,275,0,0,2,4,0,2,1.5,1006.4421993,2340,23900,45782.0,1,1,5,4,3,2,0,1,0,0,1,0,0,0,0,2,30521.3333333,9,5,9,9_0,10000.0,0,10000.0,0,2,0,341.0,240.0,5.52,1,0,1016.5097624691374,1016.5097624691374,0.0 8322,1777,1776,3,22,54,111,48,50,0,1245,0,380,230,0,2,7,1,3,2.0,1662.03070458,4940,0,59257.0,1,1,5,4,4,3,0,1,0,0,1,0,0,0,1,2,29628.5,9,5,9,9_0,30884.0,0,20000.0,10884,17,18,70.0,63.3333333333,3.3,0,1,3139.3887504096842,2033.0195249382748,1106.3692254714092 8323,1780,1779,2,5,65,111,75,10,0,12452,0,0,0,644,0,3,0,1,1.0,1213.34747695,0,0,29369.0,5,3,7,5,1,1,0,0,0,0,1,0,0,0,1,0,29369.0,9,5,9,9_0,4000.0,0,0.0,4000,4,5,0.0,0.0,0.0,0,0,406.60390498765497,0.0,406.60390498765497 8324,1784,1783,8,11,61,221,74,60,0,12459,0,0,0,0,0,7,0,1,1.0,2271.83497583,8664,0,33027.0,5,1,1,3,1,2,0,0,0,1,0,0,0,0,0,2,33027.0,9,5,9,9_0,8000.0,0,8000.0,0,6,6,0.0,0.0,0.0,0,0,813.2078099753099,813.2078099753099,0.0 @@ -8341,7 +8341,7 @@ 8339,1939,1938,0,7,47,111,42,31,0,12665,0,430,0,0,2,6,3,5,2.8,1892.95526869,1301,0,98668.0,1,2,8,7,4,2,1,1,0,0,0,1,0,0,0,2,35238.5714286,9,5,9,9_0,30000.0,0,30000.0,0,7,8,41.0,16.8,3.3,1,1,3049.529287407412,3049.529287407412,0.0 8340,1940,1939,7,11,55,111,52,12,0,12668,0,0,99999,0,3,8,3,5,3.0,1651.93885283,1812,0,109941.0,1,1,8,6,4,1,0,1,0,0,1,0,0,0,1,0,36647.0,9,5,9,9_0,50000.0,0,0.0,50000,11,11,0.0,0.0,0.0,0,1,5082.548812345687,0.0,5082.548812345687 8341,1946,1945,10,10,54,112,46,41,0,12675,0,0,600,0,1,5,0,2,1.5,2000.74344148,3016,0,45809.0,1,1,6,0,3,2,0,0,1,0,0,0,0,0,2,0,30539.3333333,9,5,9,9_1,25000.0,0,0.0,25000,4,10,0.0,0.0,0.0,0,1,2573.2312164263863,0.0,2573.2312164263863 -8342,1951,1950,0,16,29,111,46,10,0,12683,0,30,0,771,2,2,1,3,1.8,3647.7693281999996,0,0,60750.0,4,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,33750.0,9,5,9,9_0,23000.0,0,23000.0,0,4,8,259.9,67.3333333333,5.57,0,1,2337.9724536790163,2337.9724536790163,0.0 +8342,1951,1950,0,16,29,111,46,10,0,12683,0,30,0,771,2,2,1,3,1.8,3647.7693282,0,0,60750.0,4,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,33750.0,9,5,9,9_0,23000.0,0,23000.0,0,4,8,259.9,67.3333333333,5.57,0,1,2337.9724536790163,2337.9724536790163,0.0 8343,1992,1991,2,2,48,111,33,20,0,12733,0,50,64,0,2,6,2,4,2.5,4056.70750217,2271,0,79255.0,1,1,9,7,4,3,0,1,0,0,0,1,0,0,2,1,31702.0,9,5,9,9_0,38672.0,0,18672.0,20000,3,3,97.0,35.0,3.3,0,1,3931.0465534206483,1898.0270284823735,2033.0195249382748 8344,1998,1997,1,1,56,111,34,31,1,12740,0,1200,0,361,2,4,1,3,2.0,2398.32498401,5824,13300,60055.0,1,3,8,7,4,1,1,1,0,0,0,1,0,0,0,1,30027.5,9,5,9,9_0,20891.0,0,20891.0,0,1,2,0.0,15.0,0.0,0,0,2123.590544774275,2123.590544774275,0.0 8345,2018,2017,0,0,72,111,75,41,0,12777,0,0,0,0,0,3,0,1,1.0,3317.45686463,0,0,36947.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,36947.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -8354,7 +8354,7 @@ 8352,2077,2076,0,11,45,111,21,71,0,12850,0,200,0,0,1,4,2,3,2.0,3644.60430111,2501,0,58500.0,1,2,9,7,2,1,1,1,0,0,0,1,0,0,0,1,29250.0,9,5,9,9_0,13000.0,0,13000.0,0,2,11,51.0,50.0,3.3,0,1,1321.4626912098788,1321.4626912098788,0.0 8353,2082,2081,4,9,30,111,37,12,0,12855,0,15,0,0,2,3,1,3,1.8,2376.3095278,11282,0,59220.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,32900.0,9,5,9,9_0,10000.0,0,10000.0,0,3,6,84.5,36.6666666667,2.24,0,1,1016.5097624691374,1016.5097624691374,0.0 8354,2088,2087,10,10,30,221,48,43,0,12861,0,250,0,0,1,4,0,1,1.0,2738.73389032,0,0,29002.0,1,2,1,3,1,1,0,1,0,1,0,0,0,0,0,1,29002.0,9,5,9,9_0,20000.0,0,20000.0,0,3,11,0.0,0.0,0.0,0,1,2033.0195249382748,2033.0195249382748,0.0 -8355,2121,2120,7,15,28,112,38,20,0,1291,0,0,250,0,2,8,1,3,2.0,2018.6012987999998,0,0,71427.0,1,1,9,0,4,4,0,1,1,0,0,0,0,0,3,1,35713.5,9,5,9,9_1,19000.0,0,6000.0,13000,6,12,0.0,34.6666666667,3.3,0,1,1955.6557244840535,617.5754919423326,1338.0802325417208 +8355,2121,2120,7,15,28,112,38,20,0,1291,0,0,250,0,2,8,1,3,2.0,2018.6012988,0,0,71427.0,1,1,9,0,4,4,0,1,1,0,0,0,0,0,3,1,35713.5,9,5,9,9_1,19000.0,0,6000.0,13000,6,12,0.0,34.6666666667,3.3,0,1,1955.6557244840535,617.5754919423326,1338.0802325417208 8356,2125,2124,2,2,68,112,78,50,0,12913,0,0,0,0,0,6,0,2,1.5,1041.94923216,5963,0,48753.0,5,1,6,2,3,2,0,0,0,1,0,0,0,0,1,1,32502.0,9,5,9,9_0,25000.0,0,22000.0,3000,2,2,0.0,0.0,0.0,0,0,2541.2744061728436,2236.3214774321023,304.95292874074124 8357,2131,2130,4,8,68,111,72,50,0,1292,0,150,0,0,1,4,1,2,1.5,2057.53375536,0,0,48206.0,5,1,6,5,2,3,0,0,0,0,1,0,0,0,0,3,32137.3333333,9,5,9,9_0,30000.0,0,30000.0,0,1,4,0.0,0.0,0.0,0,1,3049.529287407412,3049.529287407412,0.0 8358,2134,2133,10,13,57,111,55,70,0,12924,234,0,0,0,1,3,0,2,1.5,1591.03077756,0,0,49790.0,1,2,8,7,3,1,0,1,0,0,0,1,0,0,0,0,33193.3333333,9,5,9,9_0,22000.0,0,0.0,22000,7,10,111.5,85.0,3.3,0,1,2236.3214774321023,0.0,2236.3214774321023 @@ -8368,12 +8368,12 @@ 8366,2193,2192,0,11,46,211,33,10,0,13001,0,0,0,0,1,8,3,5,2.4,1349.19695553,0,0,72860.0,1,2,1,2,4,1,0,0,0,1,0,0,0,0,0,1,30358.3333333,9,5,9,9_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,0,1,2033.0195249382748,2033.0195249382748,0.0 8367,2200,2199,11,11,62,300,22,31,0,13015,0,0,0,0,1,8,0,2,1.5,1086.54689412,2506,0,44041.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,29360.6666667,9,5,9,9_1,25000.0,0,0.0,25000,4,10,0.0,0.0,0.0,0,1,2573.2312164263863,0.0,2573.2312164263863 8368,2207,2206,0,0,56,111,22,20,0,13024,0,0,0,1429,2,4,3,5,2.4,4129.98612323,0,0,74971.5714286,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,31238.1547619,9,5,9,9_0,0.0,0,0.0,0,0,0,73.0,42.5,2.2,0,0,0.0,0.0,0.0 -8369,2208,2207,6,6,51,111,21,50,0,13025,0,250,0,0,2,5,2,4,2.1,2013.46787486,0,0,69304.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,33001.904761900005,9,5,9,9_0,20000.0,0,20000.0,0,6,6,5.7,17.5,0.0,1,0,2033.0195249382748,2033.0195249382748,0.0 +8369,2208,2207,6,6,51,111,21,50,0,13025,0,250,0,0,2,5,2,4,2.1,2013.46787486,0,0,69304.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,0,1,33001.9047619,9,5,9,9_0,20000.0,0,20000.0,0,6,6,5.7,17.5,0.0,1,0,2033.0195249382748,2033.0195249382748,0.0 8370,2217,2216,4,4,34,120,47,43,0,13037,0,500,0,490,1,3,0,1,1.0,2784.48373706,3016,0,30281.0,1,3,0,0,1,1,0,1,1,0,0,0,0,0,0,1,30281.0,9,5,9,9_1,55000.0,0,55000.0,0,4,4,179.4,50.0,3.3,0,1,5661.108676138049,5661.108676138049,0.0 8371,2221,2220,2,2,37,111,47,31,0,13041,0,350,150,1020,2,4,1,3,1.8,3096.61518719,4422,0,56792.0,1,3,6,5,4,2,0,1,0,0,1,0,0,0,1,1,31551.1111111,9,5,9,9_0,24891.0,0,16891.0,8000,2,2,43.6,16.6666666667,3.32,0,1,2530.19444976193,1716.98663978662,813.2078099753099 8372,2223,2222,6,6,73,111,75,50,0,13045,0,0,0,0,0,4,0,1,1.0,2094.00498973,2236,0,29110.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,29110.0,9,5,9,9_0,30000.0,0,30000.0,0,6,6,0.0,0.0,0.0,0,0,3049.529287407412,3049.529287407412,0.0 8373,2224,2223,1,1,50,111,53,60,1,13046,0,200,0,0,2,6,0,2,1.5,3917.6062923,0,21000,45276.0,1,2,6,4,3,1,0,1,0,0,1,0,0,0,0,1,30184.0,9,5,9,9_0,23000.0,0,23000.0,0,2,2,114.0,20.0,0.0,0,1,2337.9724536790163,2337.9724536790163,0.0 -8374,2225,2224,2,2,41,111,54,42,0,13047,0,590,0,0,2,3,1,3,1.8,2176.51763212,2030,0,57814.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,32118.8888889,9,5,9,9_0,12000.0,0,12000.0,0,2,3,0.0,13.333333333299999,1.1,0,0,1219.811714962965,1219.811714962965,0.0 +8374,2225,2224,2,2,41,111,54,42,0,13047,0,590,0,0,2,3,1,3,1.8,2176.51763212,2030,0,57814.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,32118.8888889,9,5,9,9_0,12000.0,0,12000.0,0,2,3,0.0,13.3333333333,1.1,0,0,1219.811714962965,1219.811714962965,0.0 8375,2231,2230,8,8,64,111,74,20,0,13055,0,0,0,0,0,8,0,2,1.5,1048.87901887,2340,0,47334.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,31556.0,9,5,9,9_0,19416.0,0,10000.0,9416,7,7,0.0,0.0,0.0,0,0,1973.6553548100771,1016.5097624691374,957.1455923409399 8376,2245,2244,20,20,37,111,42,20,0,13072,0,0,0,0,1,7,1,3,2.0,1639.13499788,0,0,60227.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,1,1,30113.5,9,5,9,9_0,40000.0,0,25000.0,15000,16,16,0.0,0.0,0.0,1,1,4066.0390498765496,2541.2744061728436,1524.764643703706 8377,2269,2268,2,14,23,111,52,31,0,13108,0,0,0,260,1,1,0,1,1.0,4083.21059792,2340,0,33214.0,1,3,9,7,1,1,0,0,0,0,0,1,0,1,1,0,33214.0,9,5,9,9_0,15000.0,0,0.0,15000,11,11,44.5,50.0,3.3,0,1,1524.764643703706,0.0,1524.764643703706 @@ -8381,12 +8381,12 @@ 8379,2279,2278,0,0,46,111,47,50,0,13121,0,0,0,563,1,2,0,1,1.0,2801.41116678,0,0,31944.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,31944.0,9,5,9,9_0,0.0,0,0.0,0,0,0,75.0,10.0,5.58,0,0,0.0,0.0,0.0 8380,2282,2281,0,1,53,111,37,41,1,13126,0,0,0,561,2,2,0,2,1.5,3210.28713936,1581,14500,47889.0,1,3,9,7,3,1,0,0,0,0,0,1,0,0,1,0,31926.0,9,5,9,9_0,8000.0,0,0.0,8000,4,4,0.0,40.0,5.5,0,0,813.2078099753099,0.0,813.2078099753099 8381,2302,2301,16,17,71,300,74,50,0,13163,0,0,0,0,0,6,0,2,1.5,1181.88258533,2600,0,47030.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,31353.3333333,9,5,9,9_1,20000.0,0,10000.0,10000,15,15,0.0,0.0,0.0,0,0,2058.584973141109,1029.2924865705545,1029.2924865705545 -8382,2314,2313,8,10,31,112,47,30,0,13178,0,300,100,0,2,5,1,3,1.8,1811.38835847,0,0,59068.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,32815.555555599996,9,5,9,9_1,25000.0,0,15000.0,10000,9,9,43.0,8.0,0.0,0,1,2573.2312164263863,1543.9387298558318,1029.2924865705545 +8382,2314,2313,8,10,31,112,47,30,0,13178,0,300,100,0,2,5,1,3,1.8,1811.38835847,0,0,59068.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,1,1,32815.5555556,9,5,9,9_1,25000.0,0,15000.0,10000,9,9,43.0,8.0,0.0,0,1,2573.2312164263863,1543.9387298558318,1029.2924865705545 8383,2332,2331,5,5,63,112,77,50,0,13208,0,0,0,0,0,4,0,2,1.5,1528.00322747,1560,0,51232.0,5,1,10,1,3,2,0,0,0,1,0,0,0,0,1,1,34154.6666667,9,5,9,9_0,27000.0,0,14000.0,13000,3,3,0.0,0.0,0.0,0,0,2744.5763586666712,1423.1136674567924,1321.4626912098788 8384,2349,2348,1,1,64,120,75,20,0,13228,0,0,0,0,0,6,0,1,1.0,1536.7371782,0,0,33603.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,33603.0,9,5,9,9_1,15781.0,0,15781.0,0,1,2,0.0,0.0,0.0,0,0,1624.326473056992,1624.326473056992,0.0 -8385,2353,2352,1,1,46,112,43,33,0,13234,0,200,0,0,1,6,2,3,1.6,3232.05902393,3185,0,48935.0,1,2,10,4,2,1,0,1,0,0,1,0,0,0,0,1,30584.375,9,5,9,9_0,50000.0,0,50000.0,0,2,0,3548.4,146.66666666700002,3.3,1,0,5082.548812345687,5082.548812345687,0.0 +8385,2353,2352,1,1,46,112,43,33,0,13234,0,200,0,0,1,6,2,3,1.6,3232.05902393,3185,0,48935.0,1,2,10,4,2,1,0,1,0,0,1,0,0,0,0,1,30584.375,9,5,9,9_0,50000.0,0,50000.0,0,2,0,3548.4,146.666666667,3.3,1,0,5082.548812345687,5082.548812345687,0.0 8386,2355,2354,7,11,50,111,52,31,0,13238,0,0,70,264,1,4,1,2,1.5,3784.18018253,2317,0,44930.0,1,3,9,7,2,1,0,1,0,0,0,1,0,0,1,0,29953.3333333,9,5,9,9_0,9500.0,0,0.0,9500,7,8,466.4,5.0,0.0,1,1,965.6842743456806,0.0,965.6842743456806 -8387,2360,2359,5,6,42,111,47,42,0,13244,0,320,0,0,2,5,2,4,2.1,2769.87402036,0,0,73937.0,1,2,10,8,4,1,1,1,0,0,0,0,1,0,0,1,35208.095238099995,9,5,9,9_0,8859.0,0,8859.0,0,1,7,10.8,16.0,3.3,1,0,900.5259985714089,900.5259985714089,0.0 +8387,2360,2359,5,6,42,111,47,42,0,13244,0,320,0,0,2,5,2,4,2.1,2769.87402036,0,0,73937.0,1,2,10,8,4,1,1,1,0,0,0,0,1,0,0,1,35208.0952381,9,5,9,9_0,8859.0,0,8859.0,0,1,7,10.8,16.0,3.3,1,0,900.5259985714089,900.5259985714089,0.0 8388,2362,2361,4,4,77,111,75,70,0,13247,0,0,0,0,0,4,0,2,1.5,2278.78922787,822,0,44787.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,29858.0,9,5,9,9_0,20000.0,0,20000.0,0,4,5,0.0,0.0,0.0,0,0,2033.0195249382748,2033.0195249382748,0.0 8389,2366,2365,4,4,45,111,38,50,0,13250,0,0,320,0,2,6,2,4,2.1,1322.03888878,0,0,69240.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,2,0,32971.4285714,9,5,9,9_0,6460.0,0,0.0,6460,1,4,0.0,20.0,3.31,0,1,656.6653065550628,0.0,656.6653065550628 8390,2374,2373,9,10,55,111,53,71,0,13264,0,12,10,0,2,4,0,2,1.5,2403.76431834,0,0,49118.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,32745.3333333,9,5,9,9_0,13562.0,0,7000.0,6562,12,12,0.0,35.0,3.3,0,1,1378.5905398606442,711.5568337283962,667.033706132248 @@ -8423,24 +8423,24 @@ 8421,2643,2642,5,5,62,111,74,20,0,13637,0,0,0,0,0,6,0,1,1.0,1918.15714668,0,0,29352.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,1,0,29352.0,9,5,9,9_0,4000.0,0,0.0,4000,4,5,0.0,0.0,0.0,0,0,406.60390498765497,0.0,406.60390498765497 8422,2652,2651,5,5,56,111,43,33,0,13651,0,0,200,388,1,3,0,1,1.0,2164.36203011,2600,0,29858.0,1,3,8,7,1,1,0,1,0,0,0,1,0,1,1,0,29858.0,9,5,9,9_0,7000.0,0,0.0,7000,4,4,0.0,20.0,1.1,0,1,711.5568337283962,0.0,711.5568337283962 8423,2663,2662,7,8,53,112,43,33,0,13665,0,0,210,0,1,6,0,1,1.0,2596.00713671,2600,0,31979.0,1,1,8,0,1,1,0,1,1,0,0,0,0,0,1,0,31979.0,9,5,9,9_1,5000.0,0,5000.0,0,7,7,27.0,14.0,3.3,0,1,514.6462432852773,514.6462432852773,0.0 -8424,2673,2672,3,11,45,111,62,50,0,13678,0,800,0,0,2,4,2,4,2.3,858.8116295010001,5929,0,84626.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,36793.9130435,9,5,9,9_0,13000.0,0,13000.0,0,4,4,10.0,19.0,0.0,0,1,1321.4626912098788,1321.4626912098788,0.0 +8424,2673,2672,3,11,45,111,62,50,0,13678,0,800,0,0,2,4,2,4,2.3,858.811629501,5929,0,84626.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,36793.9130435,9,5,9,9_0,13000.0,0,13000.0,0,4,4,10.0,19.0,0.0,0,1,1321.4626912098788,1321.4626912098788,0.0 8425,2676,2675,3,3,78,111,77,70,0,13685,0,0,0,0,0,2,0,1,1.0,8422.01719727,0,0,30765.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,30765.0,9,5,9,9_0,9000.0,0,0.0,9000,3,3,0.0,0.0,0.0,0,0,914.8587862222237,0.0,914.8587862222237 8426,2677,2676,10,10,78,111,72,70,0,13686,0,0,0,0,0,3,0,1,1.0,3076.27977742,2184,0,35460.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,35460.0,9,5,9,9_0,5753.0,0,0.0,5753,1,9,0.0,0.0,0.0,0,0,584.7980663484948,0.0,584.7980663484948 8427,2682,2681,17,17,86,111,77,70,0,13692,0,0,0,0,0,3,0,1,1.0,3233.7712055,0,0,31761.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,31761.0,9,5,9,9_0,2000.0,0,0.0,2000,14,14,0.0,0.0,0.0,0,0,203.30195249382749,0.0,203.30195249382749 8428,2685,2684,0,2,33,111,38,12,0,13697,0,180,140,0,2,4,1,3,1.8,2877.8578915,0,0,63987.0,1,2,10,8,4,2,1,1,0,0,0,0,1,0,1,1,35548.3333333,9,5,9,9_0,15000.0,0,5000.0,10000,3,4,16.4,23.3333333333,3.3,0,1,1524.764643703706,508.2548812345687,1016.5097624691374 8429,2699,2698,2,2,50,112,47,31,0,13719,0,0,570,0,2,5,0,2,1.5,3873.50065673,0,0,54466.0,1,1,7,0,3,2,1,1,1,0,0,0,0,0,2,0,36310.6666667,9,5,9,9_1,10279.0,0,0.0,10279,6,0,53.0,15.0,0.0,1,0,1058.009746945873,0.0,1058.009746945873 -8430,2713,2712,2,2,67,112,74,10,0,13735,0,0,0,0,0,8,0,2,1.5,6138.621792399999,0,0,55586.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,0,2,37057.3333333,9,5,9,9_0,29000.0,0,29000.0,0,2,2,0.0,0.0,0.0,0,0,2947.878311160499,2947.878311160499,0.0 +8430,2713,2712,2,2,67,112,74,10,0,13735,0,0,0,0,0,8,0,2,1.5,6138.6217924,0,0,55586.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,0,2,37057.3333333,9,5,9,9_0,29000.0,0,29000.0,0,2,2,0.0,0.0,0.0,0,0,2947.878311160499,2947.878311160499,0.0 8431,2728,2727,3,6,33,112,46,50,0,13751,0,184,0,0,2,6,0,2,1.5,2315.352769,0,0,46442.0,1,2,8,0,3,1,0,1,1,0,0,0,0,0,0,1,30961.3333333,9,5,9,9_1,15000.0,0,15000.0,0,7,7,0.0,160.0,3.31,0,0,1543.9387298558318,1543.9387298558318,0.0 8432,2733,2732,0,0,58,111,52,71,0,13756,0,0,0,0,2,2,0,2,1.5,6312.83199674,0,0,46946.0,1,2,8,6,3,0,0,0,0,0,1,0,0,0,0,0,31297.3333333,9,5,9,9_0,0.0,0,0.0,0,0,0,23.2,25.0,1.1,0,0,0.0,0.0,0.0 8433,2741,2740,11,11,68,112,77,50,0,13768,0,0,0,0,0,5,0,1,1.0,2115.48730648,936,0,35214.0,5,1,8,0,1,1,0,0,1,0,0,0,0,0,1,0,35214.0,9,5,9,9_1,10000.0,0,0.0,10000,10,11,0.0,0.0,0.0,0,0,1029.2924865705545,0.0,1029.2924865705545 -8434,2747,2746,1,7,52,112,37,10,0,13775,0,1440,0,0,3,7,3,5,2.8,900.4545437539999,3500,0,82104.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,29322.8571429,9,5,9,9_1,1000.0,0,1000.0,0,8,9,40.8,37.5,0.0,1,1,102.92924865705544,102.92924865705544,0.0 +8434,2747,2746,1,7,52,112,37,10,0,13775,0,1440,0,0,3,7,3,5,2.8,900.454543754,3500,0,82104.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,29322.8571429,9,5,9,9_1,1000.0,0,1000.0,0,8,9,40.8,37.5,0.0,1,1,102.92924865705544,102.92924865705544,0.0 8435,2761,2760,18,18,71,111,74,30,0,13799,0,0,0,0,0,4,0,2,1.5,1954.21458424,3380,0,55373.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,36915.3333333,9,5,9,9_0,3000.0,0,3000.0,0,15,15,0.0,0.0,0.0,0,0,304.95292874074124,304.95292874074124,0.0 -8436,2763,2762,3,4,46,300,37,44,0,13800,0,250,0,0,1,5,0,1,1.0,2858.6233588000005,0,0,33223.0,1,1,0,0,1,2,0,1,1,0,0,0,0,0,0,2,33223.0,9,5,9,9_1,39336.0,0,39336.0,0,7,7,212.0,100.0,3.3,0,1,4048.824925173933,4048.824925173933,0.0 +8436,2763,2762,3,4,46,300,37,44,0,13800,0,250,0,0,1,5,0,1,1.0,2858.6233588,0,0,33223.0,1,1,0,0,1,2,0,1,1,0,0,0,0,0,0,2,33223.0,9,5,9,9_1,39336.0,0,39336.0,0,7,7,212.0,100.0,3.3,0,1,4048.824925173933,4048.824925173933,0.0 8437,2783,2782,15,15,61,111,74,31,0,13822,0,0,0,337,0,4,0,1,1.0,4989.84717853,0,0,36254.0,5,3,6,5,1,1,0,0,0,0,1,0,0,0,1,0,36254.0,9,5,9,9_0,5000.0,0,0.0,5000,2,15,0.0,0.0,0.0,0,0,508.2548812345687,0.0,508.2548812345687 8438,2797,2796,1,3,68,221,75,41,2,1384,0,0,0,0,0,4,0,2,1.5,1651.58485897,3120,14600,50269.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,1,1,33512.6666667,9,5,9,9_0,19000.0,0,14000.0,5000,4,5,0.0,0.0,0.0,0,0,1931.3685486913612,1423.1136674567924,508.2548812345687 8439,2806,2805,0,44,53,112,68,70,0,13853,0,0,500,0,2,4,0,2,1.5,2153.80839336,1560,0,49110.0,1,2,10,0,3,2,0,0,1,0,0,0,0,0,2,0,32740.0,9,5,9,9_1,7000.0,0,0.0,7000,8,21,91.0,32.0,3.3,0,1,720.5047405993881,0.0,720.5047405993881 8440,2817,2816,8,10,54,400,13,71,0,13869,0,0,0,0,2,7,0,2,1.5,2634.04773143,1560,0,51113.0,1,1,0,0,3,2,1,0,1,0,0,0,0,0,0,2,34075.3333333,9,5,9,9_1,17000.0,0,17000.0,0,2,10,244.5,80.0,3.3,0,0,1749.7972271699425,1749.7972271699425,0.0 -8441,2824,2823,5,9,39,111,21,43,0,13876,0,160,0,0,2,5,1,3,1.8,2728.13320708,0,0,54319.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,30177.222222200002,9,5,9,9_0,25000.0,0,25000.0,0,3,10,124.5,18.6666666667,0.0,1,1,2541.2744061728436,2541.2744061728436,0.0 +8441,2824,2823,5,9,39,111,21,43,0,13876,0,160,0,0,2,5,1,3,1.8,2728.13320708,0,0,54319.0,1,2,8,6,4,2,0,1,0,0,1,0,0,0,0,2,30177.2222222,9,5,9,9_0,25000.0,0,25000.0,0,3,10,124.5,18.6666666667,0.0,1,1,2541.2744061728436,2541.2744061728436,0.0 8442,2845,2844,7,7,81,211,77,70,0,13902,0,0,0,0,0,2,0,1,1.0,2751.9261234,1565,0,30290.0,5,3,4,3,1,1,0,0,0,1,0,0,0,0,1,0,30290.0,9,5,9,9_0,12000.0,0,0.0,12000,5,5,0.0,0.0,0.0,0,0,1219.811714962965,0.0,1219.811714962965 8443,2848,2847,0,0,51,112,21,31,0,13906,0,0,250,0,1,5,1,3,2.0,2131.4034288,0,0,65268.0,1,1,7,0,4,3,1,0,1,0,0,0,0,0,1,2,32634.0,9,5,9,9_1,0.0,0,0.0,0,1,0,0.0,0.0,0.0,0,1,0.0,0.0,0.0 8444,2863,2862,6,14,49,300,43,50,0,13924,0,830,0,0,4,5,2,4,2.5,1560.20571598,0,0,73052.0,1,1,0,0,4,4,0,1,1,0,0,0,0,0,0,4,29220.8,9,5,9,9_1,4000.0,0,4000.0,0,5,13,81.5,38.3333333333,3.3,0,1,411.71699462822176,411.71699462822176,0.0 @@ -8456,7 +8456,7 @@ 8454,2937,2936,9,9,69,111,34,10,0,14024,0,0,0,0,2,7,1,3,2.0,1822.54806625,1040,0,70746.0,5,1,10,8,4,1,0,0,0,0,0,0,1,0,0,1,35373.0,9,5,9,9_0,5000.0,0,5000.0,0,3,9,43.5,50.0,5.56,0,0,508.2548812345687,508.2548812345687,0.0 8455,2942,2941,0,16,29,112,37,12,0,14031,0,0,0,690,1,5,0,2,1.5,3959.67827948,0,0,49366.0,1,3,7,1,3,1,0,0,0,1,0,0,0,0,0,1,32910.6666667,9,5,9,9_0,20000.0,0,20000.0,0,8,16,51.0,35.0,3.31,0,1,2033.0195249382748,2033.0195249382748,0.0 8456,2967,2966,5,5,70,400,22,41,0,14060,0,0,0,0,2,2,0,2,1.5,6537.28184157,0,0,55449.0,1,4,0,0,3,1,0,0,1,0,0,0,0,0,0,1,36966.0,9,5,9,9_1,25000.0,0,25000.0,0,4,4,226.6,75.0,3.3,0,1,2573.2312164263863,2573.2312164263863,0.0 -8457,2972,2971,0,0,34,111,37,10,0,14066,0,0,0,1050,2,4,1,3,1.8,2833.98717117,0,0,55489.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,30827.222222200002,9,5,9,9_0,0.0,0,0.0,0,0,0,22.5,23.3333333333,2.22,0,0,0.0,0.0,0.0 +8457,2972,2971,0,0,34,111,37,10,0,14066,0,0,0,1050,2,4,1,3,1.8,2833.98717117,0,0,55489.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,30827.2222222,9,5,9,9_0,0.0,0,0.0,0,0,0,22.5,23.3333333333,2.22,0,0,0.0,0.0,0.0 8458,2997,2996,6,7,76,111,74,20,0,14096,0,0,0,0,0,5,0,2,1.5,3212.56837686,0,0,48950.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,32633.3333333,9,5,9,9_0,16000.0,0,0.0,16000,8,7,0.0,0.0,0.0,0,0,1626.4156199506199,0.0,1626.4156199506199 8459,3007,3006,3,6,40,111,21,43,0,1411,0,480,20,0,2,6,2,4,2.1,3335.18376262,3434,0,63317.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,1,1,30150.952381,9,5,9,9_0,40000.0,0,35000.0,5000,8,8,178.0,31.75,3.3,0,1,4066.0390498765496,3557.784168641981,508.2548812345687 8460,3010,3009,4,4,31,111,38,10,0,14113,0,0,0,0,2,2,0,2,1.5,3534.27474926,4264,0,55600.0,1,2,9,7,3,1,0,0,0,0,0,1,0,0,0,1,37066.6666667,9,5,9,9_0,7000.0,0,7000.0,0,1,4,25.0,20.0,3.3,0,1,711.5568337283962,711.5568337283962,0.0 @@ -8469,13 +8469,13 @@ 8467,3110,3109,4,6,55,112,45,50,0,14240,0,400,0,0,1,5,0,2,1.5,1618.47131949,3121,0,48218.0,1,1,5,0,3,2,0,0,1,0,0,0,0,0,1,1,32145.3333333,9,5,9,9_1,24953.0,0,18333.0,6620,7,8,29.0,30.0,3.3,0,1,2568.3935417395046,1887.0019156297974,681.3916261097071 8468,3129,3128,4,19,70,112,74,60,0,14269,0,0,0,0,0,8,0,2,1.5,2327.4551809,3328,0,49958.0,5,1,8,0,3,3,0,0,1,0,0,0,0,0,2,1,33305.3333333,9,5,9,9_1,34000.0,0,10000.0,24000,19,21,0.0,0.0,0.0,0,0,3499.594454339885,1029.2924865705545,2470.3019677693305 8469,3135,3134,3,3,57,111,34,20,0,14276,0,300,0,0,1,5,0,1,1.0,1342.05266175,3173,0,35533.0,1,1,8,7,1,1,0,1,0,0,0,1,0,0,0,1,35533.0,9,5,9,9_0,22000.0,0,22000.0,0,3,3,0.0,0.0,0.0,1,0,2236.3214774321023,2236.3214774321023,0.0 -8470,3145,3144,2,3,34,112,45,43,0,14289,0,0,125,0,2,3,1,3,1.8,3963.71742075,2503,0,52664.0,1,2,9,3,4,2,0,0,0,1,0,0,0,0,1,1,29257.777777799998,9,5,9,9_0,24891.0,0,16891.0,8000,2,2,43.6,16.6666666667,3.32,0,1,2530.19444976193,1716.98663978662,813.2078099753099 +8470,3145,3144,2,3,34,112,45,43,0,14289,0,0,125,0,2,3,1,3,1.8,3963.71742075,2503,0,52664.0,1,2,9,3,4,2,0,0,0,1,0,0,0,0,1,1,29257.7777778,9,5,9,9_0,24891.0,0,16891.0,8000,2,2,43.6,16.6666666667,3.32,0,1,2530.19444976193,1716.98663978662,813.2078099753099 8471,3146,3145,2,6,54,111,33,10,0,1429,0,0,0,0,1,4,0,1,1.0,3959.20118335,0,0,29480.0,1,4,5,4,1,2,0,0,0,0,1,0,0,0,0,2,29480.0,9,5,9,9_0,30000.0,0,30000.0,0,6,6,0.0,0.0,0.0,0,1,3049.529287407412,3049.529287407412,0.0 8472,3152,3151,5,7,53,111,48,43,0,14300,0,450,0,0,2,4,0,2,1.5,2508.49522157,4732,0,50256.0,1,1,9,7,5,2,0,1,0,0,0,1,0,0,0,2,33504.0,9,5,9,9_0,15000.0,0,15000.0,0,4,7,0.0,25.0,9.9,0,1,1524.764643703706,1524.764643703706,0.0 8473,3160,3159,2,7,48,111,62,31,0,14310,0,99999,0,0,2,4,2,4,2.1,1842.96650339,2600,0,71754.0,1,2,9,7,4,1,1,1,0,0,0,1,0,0,0,1,34168.5714286,9,5,9,9_0,16353.0,0,16353.0,0,5,8,401.0,35.0,3.31,0,1,1662.2984145657804,1662.2984145657804,0.0 8474,3171,3170,2,2,44,111,33,20,0,14322,0,370,0,0,2,5,2,4,2.3,1367.36675774,0,0,68704.0,1,2,7,5,4,2,1,1,0,0,1,0,0,0,0,2,29871.3043478,9,5,9,9_0,24572.0,0,24572.0,0,1,2,178.0,43.3333333333,3.3,1,1,2497.7677883391643,2497.7677883391643,0.0 -8475,3175,3174,1,4,27,400,34,20,2,14328,0,1820,0,0,2,5,0,2,1.5,4106.677778900001,6673,9500,48539.0,1,3,0,0,3,2,1,1,1,0,0,0,0,0,0,2,32359.3333333,9,5,9,9_1,18000.0,0,18000.0,0,4,4,54.0,14.0,0.0,0,1,1852.7264758269982,1852.7264758269982,0.0 -8476,3176,3175,3,7,32,111,63,43,0,14329,0,150,0,0,2,4,1,3,1.8,1574.26774355,0,0,52646.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,29247.777777799998,9,5,9,9_0,40000.0,0,25000.0,15000,2,8,139.0,15.0,3.3,0,1,4066.0390498765496,2541.2744061728436,1524.764643703706 +8475,3175,3174,1,4,27,400,34,20,2,14328,0,1820,0,0,2,5,0,2,1.5,4106.6777789,6673,9500,48539.0,1,3,0,0,3,2,1,1,1,0,0,0,0,0,0,2,32359.3333333,9,5,9,9_1,18000.0,0,18000.0,0,4,4,54.0,14.0,0.0,0,1,1852.7264758269982,1852.7264758269982,0.0 +8476,3176,3175,3,7,32,111,63,43,0,14329,0,150,0,0,2,4,1,3,1.8,1574.26774355,0,0,52646.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,29247.7777778,9,5,9,9_0,40000.0,0,25000.0,15000,2,8,139.0,15.0,3.3,0,1,4066.0390498765496,2541.2744061728436,1524.764643703706 8477,3183,3182,6,6,67,112,72,44,0,1434,0,0,0,0,0,4,0,2,1.5,2283.73893059,0,0,54701.0,5,1,5,0,3,1,0,0,1,0,0,0,0,0,0,1,36467.3333333,9,5,9,9_1,20000.0,0,20000.0,0,6,6,0.0,0.0,0.0,0,0,2058.584973141109,2058.584973141109,0.0 8478,3198,3197,1,25,56,111,52,50,2,14365,0,180,0,0,2,4,0,2,1.5,2518.81477541,3276,7500,44258.0,1,1,8,6,3,2,0,1,0,0,1,0,0,0,0,2,29505.3333333,9,5,9,9_0,5000.0,0,5000.0,0,5,21,173.0,17.0,3.3,0,1,508.2548812345687,508.2548812345687,0.0 8479,3219,3218,6,6,46,111,33,31,0,14394,0,210,0,0,2,6,2,4,2.5,1234.62829643,2746,0,75857.0,1,2,10,8,4,3,0,0,0,0,0,0,1,0,0,3,30342.8,9,5,9,9_0,25000.0,0,25000.0,0,5,6,18.4,22.5,3.3,0,1,2541.2744061728436,2541.2744061728436,0.0 @@ -8487,7 +8487,7 @@ 8485,3275,3274,7,7,74,111,74,43,0,14477,0,0,0,0,0,4,0,2,1.5,2329.63382579,0,0,46308.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,30872.0,9,5,9,9_0,10500.0,0,7500.0,3000,4,8,0.0,0.0,0.0,0,0,1067.3352505925943,762.382321851853,304.95292874074124 8486,3279,3278,15,15,58,112,75,10,0,14483,0,0,0,0,0,5,0,1,1.0,1130.35160776,0,0,29515.0,5,1,9,2,1,1,0,0,0,1,0,0,0,0,0,0,29515.0,9,5,9,9_0,5000.0,0,0.0,5000,2,15,0.0,0.0,0.0,0,0,508.2548812345687,0.0,508.2548812345687 8487,3302,3301,5,13,57,111,34,10,0,14515,0,0,0,950,1,3,1,2,1.5,3331.55617209,0,0,44316.0,1,3,9,7,2,1,0,0,0,0,0,1,0,0,1,0,29544.0,9,5,9,9_0,22000.0,0,0.0,22000,7,10,111.5,85.0,3.3,0,1,2236.3214774321023,0.0,2236.3214774321023 -8488,3311,3310,0,21,57,112,38,31,0,14530,0,0,0,0,1,6,1,3,1.8,2736.37591149,2600,0,55013.0,1,2,10,2,4,2,0,1,0,1,0,0,0,0,1,1,30562.777777799998,9,5,9,9_0,1250.0,0,0.0,1250,12,18,0.0,8.0,3.3,0,1,127.06372030864217,0.0,127.06372030864217 +8488,3311,3310,0,21,57,112,38,31,0,14530,0,0,0,0,1,6,1,3,1.8,2736.37591149,2600,0,55013.0,1,2,10,2,4,2,0,1,0,1,0,0,0,0,1,1,30562.7777778,9,5,9,9_0,1250.0,0,0.0,1250,12,18,0.0,8.0,3.3,0,1,127.06372030864217,0.0,127.06372030864217 8489,3319,3318,10,12,58,111,62,50,0,14540,0,299997,0,0,3,4,1,3,2.0,1405.92612534,0,0,66228.0,1,1,8,7,4,3,0,1,0,0,0,1,0,0,0,3,33114.0,9,5,9,9_0,10000.0,0,10000.0,0,4,13,120.0,30.6666666667,3.3,0,1,1016.5097624691374,1016.5097624691374,0.0 8490,3322,3321,0,0,30,111,54,41,0,14544,0,0,0,0,1,2,0,1,1.0,2879.21816962,0,0,35670.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,35670.0,9,5,9,9_0,0.0,0,0.0,0,0,0,27.5,60.0,5.56,0,0,0.0,0.0,0.0 8491,3327,3326,14,14,52,112,38,50,0,14551,0,100,0,0,3,6,1,3,2.0,1227.53401506,2548,0,69930.0,1,2,10,4,4,2,0,0,0,0,1,0,0,0,1,1,34965.0,9,5,9,9_0,35000.0,0,25000.0,10000,6,11,93.6,10.0,0.0,0,1,3557.784168641981,2541.2744061728436,1016.5097624691374 @@ -8498,15 +8498,15 @@ 8496,3370,3369,17,17,50,112,65,60,0,14608,0,650,0,0,2,5,0,2,1.5,4372.84470405,0,0,52555.0,1,1,8,0,3,2,0,1,1,0,0,0,0,0,0,2,35036.6666667,9,5,9,9_1,12000.0,0,12000.0,0,13,16,0.0,2.0,1.1,0,1,1235.1509838846653,1235.1509838846653,0.0 8497,3392,3391,1,17,54,111,62,70,2,14631,0,0,50,0,2,4,0,2,1.5,1506.76749982,2860,1300,46406.0,1,1,6,4,3,2,0,1,0,0,1,0,0,0,2,0,30937.3333333,9,5,9,9_0,11000.0,0,0.0,11000,5,16,0.0,0.0,0.0,0,1,1118.1607387160511,0.0,1118.1607387160511 8498,3407,3406,2,2,74,111,75,41,0,14657,0,0,0,0,0,3,0,2,1.5,1724.65787096,0,0,47908.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,31938.6666667,9,5,9,9_0,9287.0,0,9287.0,0,1,1,0.0,0.0,0.0,0,0,944.0326164050879,944.0326164050879,0.0 -8499,3423,3422,1,1,45,112,54,20,1,14679,0,150,100,0,2,5,2,4,2.1,1754.23135167,4179,16400,63946.0,1,3,7,0,4,2,0,1,1,0,0,0,0,0,1,1,30450.476190499998,9,5,9,9_1,33000.0,0,21000.0,12000,1,2,185.3,23.5,3.3,0,1,3396.6652056828293,2161.5142217981643,1235.1509838846653 +8499,3423,3422,1,1,45,112,54,20,1,14679,0,150,100,0,2,5,2,4,2.1,1754.23135167,4179,16400,63946.0,1,3,7,0,4,2,0,1,1,0,0,0,0,0,1,1,30450.4761905,9,5,9,9_1,33000.0,0,21000.0,12000,1,2,185.3,23.5,3.3,0,1,3396.6652056828293,2161.5142217981643,1235.1509838846653 8500,3431,3430,0,20,32,111,37,10,0,14688,0,0,0,0,1,3,0,1,1.0,4066.00967645,0,0,33787.0,1,4,10,8,1,1,0,0,0,0,0,0,1,0,1,0,33787.0,9,5,9,9_0,7500.0,0,0.0,7500,3,17,17.0,20.0,3.3,0,1,762.382321851853,0.0,762.382321851853 8501,3436,3435,2,4,40,111,54,31,0,14695,0,0,0,0,2,5,0,2,1.5,2282.71218589,0,0,46888.0,1,1,10,8,3,2,0,0,0,0,0,0,1,0,2,0,31258.6666667,9,5,9,9_0,22000.0,0,0.0,22000,3,3,368.1,162.5,3.3,1,1,2236.3214774321023,0.0,2236.3214774321023 8502,3438,3437,12,12,51,112,37,41,0,14699,0,70,100,0,2,6,1,3,2.0,2213.25440931,5206,0,72565.0,1,1,10,0,4,4,1,1,1,0,0,0,0,0,2,2,36282.5,9,5,9,9_1,30000.0,0,30000.0,0,9,12,213.2,55.0,5.56,0,1,3087.8774597116635,3087.8774597116635,0.0 8503,3449,3448,13,15,59,112,45,50,0,14712,0,360,80,0,2,6,0,2,1.5,2317.96694981,4316,0,49624.0,1,1,9,1,3,2,0,1,0,1,0,0,0,0,1,1,33082.6666667,9,5,9,9_0,53000.0,0,23000.0,30000,14,14,0.0,20.0,1.1,0,1,5387.501741086428,2337.9724536790163,3049.529287407412 -8504,3450,3449,1,11,48,111,54,50,2,14713,0,200133,0,0,3,4,1,3,2.0,864.1337699769999,0,5900,71484.0,1,3,6,5,4,4,0,1,0,0,1,0,0,0,0,4,35742.0,9,5,9,9_0,15000.0,0,15000.0,0,6,6,169.5,46.6666666667,3.3,0,1,1524.764643703706,1524.764643703706,0.0 -8505,3451,3450,2,2,46,112,48,50,0,14715,0,1100,50,0,3,4,1,3,2.0,1199.87534383,10474,0,60958.0,1,2,7,0,4,5,0,1,1,0,0,0,0,0,2,3,30479.0,9,5,9,9_1,15091.0,0,15091.0,0,3,0,24.0,7.333333333330001,3.3,0,1,1553.3052914836237,1553.3052914836237,0.0 +8504,3450,3449,1,11,48,111,54,50,2,14713,0,200133,0,0,3,4,1,3,2.0,864.133769977,0,5900,71484.0,1,3,6,5,4,4,0,1,0,0,1,0,0,0,0,4,35742.0,9,5,9,9_0,15000.0,0,15000.0,0,6,6,169.5,46.6666666667,3.3,0,1,1524.764643703706,1524.764643703706,0.0 +8505,3451,3450,2,2,46,112,48,50,0,14715,0,1100,50,0,3,4,1,3,2.0,1199.87534383,10474,0,60958.0,1,2,7,0,4,5,0,1,1,0,0,0,0,0,2,3,30479.0,9,5,9,9_1,15091.0,0,15091.0,0,3,0,24.0,7.33333333333,3.3,0,1,1553.3052914836237,1553.3052914836237,0.0 8506,3463,3462,7,8,61,112,72,50,0,14732,0,0,0,0,0,5,0,2,1.5,1988.77184999,2196,0,53889.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,0,2,35926.0,9,5,9,9_1,10000.0,0,10000.0,0,2,7,0.0,0.0,0.0,0,0,1029.2924865705545,1029.2924865705545,0.0 -8507,3467,3466,8,10,45,111,33,20,0,14736,0,700,0,0,2,8,3,5,2.6,1590.64163375,1423,0,89819.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,34545.769230800004,9,5,9,9_0,30000.0,0,30000.0,0,7,8,41.0,16.8,3.3,1,1,3049.529287407412,3049.529287407412,0.0 +8507,3467,3466,8,10,45,111,33,20,0,14736,0,700,0,0,2,8,3,5,2.6,1590.64163375,1423,0,89819.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,34545.7692308,9,5,9,9_0,30000.0,0,30000.0,0,7,8,41.0,16.8,3.3,1,1,3049.529287407412,3049.529287407412,0.0 8508,3472,3471,4,7,62,111,75,20,0,14743,0,0,35,0,1,3,1,3,2.0,2591.41124855,0,0,60366.0,5,1,9,7,4,2,0,0,0,0,0,1,0,0,2,0,30183.0,9,5,9,9_0,6000.0,0,0.0,6000,10,10,0.0,0.0,0.0,0,1,609.9058574814825,0.0,609.9058574814825 8509,3476,3475,0,0,28,111,34,33,0,1475,0,0,0,720,2,2,0,2,1.5,3704.534083,0,0,43779.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,29186.0,9,5,9,9_0,0.0,0,0.0,0,0,0,160.0,95.0,5.57,0,0,0.0,0.0,0.0 8510,3490,3489,8,8,52,111,21,50,0,1477,0,99999,0,0,2,5,0,2,1.5,3181.09931256,2600,0,43951.0,1,1,9,7,3,1,0,1,0,0,0,1,0,0,0,1,29300.6666667,9,5,9,9_0,18000.0,0,18000.0,0,6,7,0.0,10.0,2.2,0,1,1829.7175724444473,1829.7175724444473,0.0 @@ -8517,7 +8517,7 @@ 8515,3515,3514,8,9,61,112,31,10,0,14807,0,0,0,0,1,7,0,2,1.5,2464.73164623,0,0,47348.0,1,1,9,0,3,2,0,0,1,0,0,0,0,0,0,2,31565.3333333,9,5,9,9_1,4000.0,0,4000.0,0,6,10,0.0,0.0,0.0,0,1,411.71699462822176,411.71699462822176,0.0 8516,3527,3526,3,3,63,111,74,42,0,14826,0,0,0,0,0,6,0,1,1.0,2606.11783862,1977,0,32254.0,5,1,8,6,1,2,0,0,0,0,1,0,0,0,1,1,32254.0,9,5,9,9_0,27000.0,0,14000.0,13000,3,3,0.0,0.0,0.0,0,0,2744.5763586666712,1423.1136674567924,1321.4626912098788 8517,3540,3539,0,0,55,111,52,60,1,14841,0,90,120,0,2,4,0,2,1.5,1523.86926695,2184,12500,53029.0,1,1,7,6,3,2,0,1,0,0,1,0,0,0,1,1,35352.6666667,9,5,9,9_0,30000.0,0,20000.0,10000,1,2,58.4,30.0,3.33,0,1,3049.529287407412,2033.0195249382748,1016.5097624691374 -8518,3551,3550,0,10,35,111,38,10,0,14859,0,200,0,0,2,5,1,3,1.8,1789.13661679,0,0,65479.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,36377.22222219999,9,5,9,9_0,25000.0,0,25000.0,0,3,10,124.5,18.6666666667,0.0,1,1,2541.2744061728436,2541.2744061728436,0.0 +8518,3551,3550,0,10,35,111,38,10,0,14859,0,200,0,0,2,5,1,3,1.8,1789.13661679,0,0,65479.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,36377.2222222,9,5,9,9_0,25000.0,0,25000.0,0,3,10,124.5,18.6666666667,0.0,1,1,2541.2744061728436,2541.2744061728436,0.0 8519,3564,3563,1,1,77,120,74,33,0,1488,0,0,0,0,0,8,0,1,1.0,3241.84400189,0,0,34781.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,34781.0,9,5,9,9_1,4000.0,0,0.0,4000,1,1,0.0,0.0,0.0,0,0,411.71699462822176,0.0,411.71699462822176 8520,3566,3565,1,1,56,111,22,50,1,14881,0,0,310,0,2,6,0,2,1.5,2100.62643038,5825,36214,54488.0,1,1,10,8,3,2,1,1,0,0,0,0,1,0,2,0,36325.3333333,9,5,9,9_0,22000.0,0,0.0,22000,3,3,368.1,162.5,3.3,1,1,2236.3214774321023,0.0,2236.3214774321023 8521,3567,3566,1,2,34,111,38,10,2,14882,0,400,0,415,1,2,0,1,1.0,3403.47442366,1820,13985,32377.0,1,3,9,7,1,1,1,1,0,0,0,1,0,0,0,1,32377.0,9,5,9,9_0,18572.0,0,18572.0,0,2,2,0.0,0.0,0.0,1,0,1887.8619308576822,1887.8619308576822,0.0 @@ -8533,13 +8533,13 @@ 8531,3661,3660,0,4,56,111,37,12,0,15008,0,80,0,0,1,4,0,2,1.5,1840.35670067,1578,0,46391.0,1,2,7,5,3,2,0,0,0,0,1,0,0,0,1,1,30927.3333333,9,5,9,9_0,22818.0,0,14818.0,8000,8,8,0.0,0.0,0.0,0,0,2319.4719760020776,1506.2641660267677,813.2078099753099 8532,3664,3663,7,15,77,300,72,20,0,15010,0,0,0,0,0,8,0,2,1.5,2149.21989548,1404,0,44630.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,29753.3333333,9,5,9,9_1,10000.0,0,10000.0,0,18,18,0.0,0.0,0.0,0,0,1029.2924865705545,1029.2924865705545,0.0 8533,3696,3695,11,15,56,300,13,50,0,15047,0,0,0,0,2,10,0,2,1.5,1372.49810552,0,0,54373.0,1,3,0,0,3,1,1,0,1,0,0,0,0,0,0,1,36248.6666667,9,5,9,9_1,5000.0,0,5000.0,0,11,17,93.6,40.0,2.24,0,1,514.6462432852773,514.6462432852773,0.0 -8534,3707,3706,3,4,38,111,38,10,0,15059,0,0,150,0,2,4,2,4,2.1,3235.1701184999997,0,0,71760.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,34171.4285714,9,5,9,9_0,27000.0,0,25000.0,2000,2,5,0.0,10.0,3.3,0,0,2744.5763586666712,2541.2744061728436,203.30195249382749 +8534,3707,3706,3,4,38,111,38,10,0,15059,0,0,150,0,2,4,2,4,2.1,3235.1701185,0,0,71760.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,34171.4285714,9,5,9,9_0,27000.0,0,25000.0,2000,2,5,0.0,10.0,3.3,0,0,2744.5763586666712,2541.2744061728436,203.30195249382749 8535,3712,3711,1,5,55,111,37,42,0,15065,0,0,200,0,1,3,0,1,1.0,3075.1457142,0,0,36516.0,1,1,8,6,1,1,0,1,0,0,1,0,0,0,1,0,36516.0,9,5,9,9_0,3000.0,0,0.0,3000,2,4,35.6,40.0,5.55,0,0,304.95292874074124,0.0,304.95292874074124 8536,3723,3722,8,9,52,120,56,41,0,15081,0,0,120,0,1,5,0,2,1.5,2671.22490621,1014,0,54580.0,1,1,0,2,5,1,0,1,0,1,0,0,0,0,1,0,36386.6666667,9,5,9,9_0,10000.0,0,0.0,10000,2,9,31.0,30.0,2.24,0,0,1016.5097624691374,0.0,1016.5097624691374 -8537,3727,3726,1,1,38,111,46,20,0,15088,0,200,0,0,2,5,2,4,2.1,2345.5076449000003,3318,0,73631.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,35062.380952399995,9,5,9,9_0,11600.0,0,11600.0,0,1,1,103.8,15.0,0.0,0,1,1179.1513244641994,1179.1513244641994,0.0 +8537,3727,3726,1,1,38,111,46,20,0,15088,0,200,0,0,2,5,2,4,2.1,2345.5076449,3318,0,73631.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,35062.3809524,9,5,9,9_0,11600.0,0,11600.0,0,1,1,103.8,15.0,0.0,0,1,1179.1513244641994,1179.1513244641994,0.0 8538,3759,3758,4,4,73,112,74,10,0,15130,0,0,0,0,0,6,0,2,1.5,5716.94850456,0,0,43901.0,5,1,9,2,3,1,0,0,0,1,0,0,0,0,1,0,29267.3333333,9,5,9,9_0,6000.0,0,0.0,6000,3,3,0.0,0.0,0.0,0,0,609.9058574814825,0.0,609.9058574814825 8539,3761,3760,5,5,47,112,38,50,0,15132,0,0,0,0,1,5,1,2,1.5,2819.04096906,0,0,55532.0,4,2,8,1,2,1,1,0,0,1,0,0,0,0,0,1,37021.3333333,9,5,9,9_0,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,1,1524.764643703706,1524.764643703706,0.0 -8540,3767,3766,2,2,51,111,37,31,0,1514,0,610,0,0,2,6,2,4,2.3,2069.90837,0,0,67148.0,1,1,7,6,4,2,0,1,0,0,1,0,0,0,0,2,29194.782608700003,9,5,9,9_0,15000.0,0,15000.0,0,2,2,24.5,18.75,2.22,1,1,1524.764643703706,1524.764643703706,0.0 +8540,3767,3766,2,2,51,111,37,31,0,1514,0,610,0,0,2,6,2,4,2.3,2069.90837,0,0,67148.0,1,1,7,6,4,2,0,1,0,0,1,0,0,0,0,2,29194.7826087,9,5,9,9_0,15000.0,0,15000.0,0,2,2,24.5,18.75,2.22,1,1,1524.764643703706,1524.764643703706,0.0 8541,3771,3770,5,5,68,111,74,42,0,15145,0,0,0,0,0,3,0,2,1.5,3332.81608857,0,0,54719.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,36479.3333333,9,5,9,9_0,19000.0,0,14000.0,5000,4,5,0.0,0.0,0.0,0,0,1931.3685486913612,1423.1136674567924,508.2548812345687 8542,3773,3772,3,5,67,112,74,20,0,15147,0,0,0,0,0,8,0,2,1.5,1460.66053127,6415,0,51205.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,34136.6666667,9,5,9,9_1,16000.0,0,15000.0,1000,3,7,0.0,0.0,0.0,0,0,1646.867978512887,1543.9387298558318,102.92924865705544 8543,3783,3782,1,6,58,112,77,70,2,15161,0,750,0,0,2,5,0,4,2.5,1035.20166316,0,8000,77175.0,5,1,9,0,5,4,0,1,1,0,0,0,0,0,1,3,30870.0,9,5,9,9_1,15000.0,0,15000.0,0,5,5,198.9,11.5,3.3,0,1,1543.9387298558318,1543.9387298558318,0.0 @@ -8581,23 +8581,23 @@ 8579,4166,4165,0,0,44,111,21,41,1,1572,0,0,0,0,1,6,1,3,1.8,4136.17206793,0,75200,61126.0,4,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,33958.8888889,9,5,9,9_0,10444.0,0,10444.0,0,1,1,0.0,0.0,0.0,0,1,1061.6427959227672,1061.6427959227672,0.0 8580,4187,4186,0,0,24,111,46,20,0,15749,0,0,0,500,1,2,0,1,1.0,3524.08451741,0,0,31585.0,1,3,9,7,1,0,0,0,0,0,0,1,0,0,0,0,31585.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,50.0,1.1,0,0,0.0,0.0,0.0 8581,4199,4198,5,11,49,111,46,71,0,15764,0,0,99999,0,3,6,2,4,2.5,2707.99125283,0,0,74250.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,29700.0,9,5,9,9_0,18666.0,0,0.0,18666,6,12,138.3,42.5,3.3,1,1,1897.4171226248918,0.0,1897.4171226248918 -8582,4207,4206,1,3,29,111,55,31,2,15776,0,150,0,549,1,2,0,1,1.0,3355.9533401999997,0,16144,31869.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,0,1,31869.0,9,5,9,9_0,12000.0,0,12000.0,0,3,4,0.0,20.0,3.3,0,1,1219.811714962965,1219.811714962965,0.0 +8582,4207,4206,1,3,29,111,55,31,2,15776,0,150,0,549,1,2,0,1,1.0,3355.9533402,0,16144,31869.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,0,1,31869.0,9,5,9,9_0,12000.0,0,12000.0,0,3,4,0.0,20.0,3.3,0,1,1219.811714962965,1219.811714962965,0.0 8583,4210,4209,0,0,32,111,38,20,0,1578,0,0,0,494,1,1,0,1,1.0,3447.21661316,0,0,31566.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,31566.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,165.0,3.32,0,0,0.0,0.0,0.0 8584,4219,4218,6,7,58,111,38,31,0,15789,0,135,0,0,2,4,0,2,1.5,2729.52537729,2209,0,48859.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,32572.6666667,9,5,9,9_0,18525.0,0,6859.0,11666,1,8,267.1,80.0,3.31,0,1,1883.0843349740771,697.2240460775813,1185.8602888964958 8585,4244,4243,4,4,58,111,48,41,0,1604,0,0,0,0,1,2,0,1,1.0,3092.52112487,0,0,32193.0,1,1,7,5,1,1,0,0,0,0,1,0,0,0,1,0,32193.0,9,5,9,9_0,15000.0,0,0.0,15000,4,4,0.0,10.0,3.3,0,1,1524.764643703706,0.0,1524.764643703706 8586,4248,4247,8,8,53,111,43,33,0,1610,0,0,30,0,1,2,0,1,1.0,1799.0872937,0,0,32588.0,1,2,6,4,1,1,0,1,0,0,1,0,0,0,1,0,32588.0,9,5,9,9_0,17000.0,0,0.0,17000,3,7,0.0,0.0,0.0,0,1,1728.0665961975335,0.0,1728.0665961975335 -8587,4255,4254,3,3,42,111,48,31,0,1620,0,0,250,0,2,5,2,4,2.1,2183.54088923,3068,0,65311.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,1,0,31100.476190499998,9,5,9,9_0,6000.0,0,0.0,6000,3,3,113.9,19.25,3.3,0,0,609.9058574814825,0.0,609.9058574814825 +8587,4255,4254,3,3,42,111,48,31,0,1620,0,0,250,0,2,5,2,4,2.1,2183.54088923,3068,0,65311.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,1,0,31100.4761905,9,5,9,9_0,6000.0,0,0.0,6000,3,3,113.9,19.25,3.3,0,0,609.9058574814825,0.0,609.9058574814825 8588,4256,4255,13,13,73,111,74,31,0,1624,0,0,0,0,0,5,0,2,1.5,4019.35824512,0,0,52310.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,34873.3333333,9,5,9,9_0,12000.0,0,12000.0,0,12,12,0.0,0.0,0.0,0,0,1219.811714962965,1219.811714962965,0.0 8589,4264,4263,0,0,78,111,75,41,0,1639,0,0,0,0,0,4,0,1,1.0,4681.85919808,0,0,32780.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,32780.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8590,4289,4288,8,8,73,120,72,50,0,1666,0,0,0,0,0,6,0,2,1.5,1804.50619768,0,0,45512.0,5,1,0,1,3,1,0,0,0,1,0,0,0,0,1,0,30341.3333333,9,5,9,9_0,9000.0,0,0.0,9000,8,8,0.0,0.0,0.0,0,0,914.8587862222237,0.0,914.8587862222237 8591,4308,4307,3,3,33,112,38,12,0,1694,0,0,0,0,2,4,2,4,2.1,1792.75525327,3195,0,71544.0,1,2,9,0,4,2,0,0,1,0,0,0,0,0,0,2,34068.5714286,9,5,9,9_1,45908.0,0,45908.0,0,1,2,107.0,55.0,3.3,0,1,4725.275947348101,4725.275947348101,0.0 8592,4313,4312,19,19,91,111,74,10,0,170,0,0,0,0,0,4,0,1,1.0,2064.28090199,0,0,30877.0,5,1,7,5,1,1,0,0,0,0,1,0,0,0,0,1,30877.0,9,5,9,9_0,6000.0,0,6000.0,0,17,19,0.0,0.0,0.0,0,0,609.9058574814825,609.9058574814825,0.0 8593,4318,4317,2,2,64,111,74,42,0,1705,0,0,0,0,0,6,0,2,1.5,1722.93195337,6306,0,50624.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,1,1,33749.3333333,9,5,9,9_0,27000.0,0,14000.0,13000,3,3,0.0,0.0,0.0,0,0,2744.5763586666712,1423.1136674567924,1321.4626912098788 -8594,4320,4319,7,11,38,120,31,10,0,1709,0,200,0,0,2,5,1,3,1.8,1320.17343924,3380,0,54562.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,30312.222222200002,9,5,9,9_1,20000.0,0,20000.0,0,10,10,123.6,26.6666666667,3.3,0,1,2058.584973141109,2058.584973141109,0.0 +8594,4320,4319,7,11,38,120,31,10,0,1709,0,200,0,0,2,5,1,3,1.8,1320.17343924,3380,0,54562.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,2,30312.2222222,9,5,9,9_1,20000.0,0,20000.0,0,10,10,123.6,26.6666666667,3.3,0,1,2058.584973141109,2058.584973141109,0.0 8595,4321,4320,4,4,53,111,65,50,0,1710,0,100,0,559,1,3,0,1,1.0,3079.2461602,0,0,36803.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,36803.0,9,5,9,9_0,26000.0,0,26000.0,0,2,2,170.5,85.0,3.3,0,1,2642.9253824197576,2642.9253824197576,0.0 8596,4322,4321,4,4,57,111,43,33,0,1711,0,0,0,0,1,6,0,2,1.5,3949.91760209,3555,0,44420.0,5,1,4,4,3,2,0,0,0,0,1,0,0,0,0,2,29613.3333333,9,5,9,9_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,0,1,2033.0195249382748,2033.0195249382748,0.0 8597,4325,4324,6,15,40,111,31,10,0,1715,0,0,130,0,1,2,0,1,1.0,2590.84984832,1824,0,31485.0,1,2,7,5,1,1,0,1,0,0,1,0,0,0,1,0,31485.0,9,5,9,9_0,6000.0,0,0.0,6000,7,14,0.0,25.0,2.2,0,0,609.9058574814825,0.0,609.9058574814825 -8598,4332,4331,7,15,49,112,37,20,0,1726,0,800,60,0,2,9,1,3,2.0,946.3265188639999,0,0,73719.0,1,1,8,2,4,3,0,0,0,1,0,0,0,0,2,1,36859.5,9,5,9,9_0,20000.0,0,15000.0,5000,2,14,0.0,20.0,0.0,1,1,2033.0195249382748,1524.764643703706,508.2548812345687 +8598,4332,4331,7,15,49,112,37,20,0,1726,0,800,60,0,2,9,1,3,2.0,946.326518864,0,0,73719.0,1,1,8,2,4,3,0,0,0,1,0,0,0,0,2,1,36859.5,9,5,9,9_0,20000.0,0,15000.0,5000,2,14,0.0,20.0,0.0,1,1,2033.0195249382748,1524.764643703706,508.2548812345687 8599,4338,4337,18,18,48,221,43,10,0,1733,0,670,0,0,2,6,1,3,2.0,1641.40360891,0,0,63715.0,1,2,1,1,4,2,0,1,0,1,0,0,0,0,0,2,31857.5,9,5,9,9_0,37000.0,0,37000.0,0,19,19,0.0,3.33333333333,0.0,0,0,3761.0861211358083,3761.0861211358083,0.0 8600,4347,4346,6,6,60,111,74,50,0,1746,0,20,0,0,1,4,0,2,1.5,1306.28331266,0,0,46775.0,5,1,9,7,3,2,0,1,0,0,0,1,0,0,0,2,31183.3333333,9,5,9,9_0,5000.0,0,5000.0,0,2,6,0.0,0.0,0.0,1,1,508.2548812345687,508.2548812345687,0.0 8601,4349,4348,2,2,77,111,78,50,0,1748,0,0,0,0,0,4,0,2,1.5,1460.9326575,0,0,44072.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,0,1,29381.3333333,9,5,9,9_0,8000.0,0,8000.0,0,3,3,0.0,0.0,0.0,0,0,813.2078099753099,813.2078099753099,0.0 @@ -8619,7 +8619,7 @@ 8617,4513,4512,21,29,78,112,75,50,0,1963,0,0,0,0,0,5,0,2,1.5,1711.70919806,0,0,43766.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,1,0,29177.3333333,9,5,9,9_1,3362.0,0,0.0,3362,1,20,0.0,0.0,0.0,0,0,346.0481339850204,0.0,346.0481339850204 8618,4516,4515,2,2,60,221,78,70,0,1967,0,0,0,0,1,4,0,2,1.5,1474.03240555,2600,0,52443.0,5,2,1,2,3,2,0,0,0,1,0,0,0,0,0,2,34962.0,9,5,9,9_0,0.0,0,0.0,0,3,3,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8619,4520,4519,6,6,71,112,74,60,0,1971,0,0,0,0,0,7,0,2,1.5,1702.08834226,1820,0,50448.0,5,1,6,0,3,3,0,0,1,0,0,0,0,0,1,2,33632.0,9,5,9,9_1,45000.0,0,45000.0,0,8,8,0.0,0.0,0.0,0,0,4631.816189567495,4631.816189567495,0.0 -8620,4530,4529,7,7,46,111,37,41,0,1989,0,75,0,444,1,3,1,2,1.5,3000.9401248000004,0,0,49527.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,0,1,33018.0,9,5,9,9_0,11000.0,0,11000.0,0,7,10,20.8,20.0,2.24,0,0,1118.1607387160511,1118.1607387160511,0.0 +8620,4530,4529,7,7,46,111,37,41,0,1989,0,75,0,444,1,3,1,2,1.5,3000.9401248,0,0,49527.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,0,1,33018.0,9,5,9,9_0,11000.0,0,11000.0,0,7,10,20.8,20.0,2.24,0,0,1118.1607387160511,1118.1607387160511,0.0 8621,4538,4537,0,1,71,300,75,41,1,1998,0,0,0,0,0,6,0,2,1.5,1440.92633419,4504,20500,44444.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,29629.3333333,9,5,9,9_1,21000.0,0,21000.0,0,1,2,0.0,0.0,0.0,0,0,2161.5142217981643,2161.5142217981643,0.0 8622,4542,4541,2,2,34,221,47,31,0,2001,0,56,0,353,1,4,0,1,1.0,6901.72750457,3013,0,34598.0,1,4,1,1,1,1,0,1,0,1,0,0,0,0,0,1,34598.0,9,5,9,9_0,18572.0,0,18572.0,0,2,2,0.0,0.0,0.0,1,0,1887.8619308576822,1887.8619308576822,0.0 8623,4544,4543,3,10,65,111,74,70,0,2003,0,0,0,590,1,2,0,2,1.5,1834.41440891,0,0,44814.0,5,3,7,6,3,2,0,0,0,0,1,0,0,0,1,1,29876.0,9,5,9,9_0,5000.0,0,5000.0,0,9,9,0.0,0.0,0.0,0,0,508.2548812345687,508.2548812345687,0.0 @@ -8638,12 +8638,12 @@ 8636,4621,4620,8,14,49,120,46,44,0,2112,0,0,200,0,2,4,0,2,1.5,4154.8593198,3588,0,50634.0,1,3,0,2,3,2,0,1,0,1,0,0,0,0,2,0,33756.0,9,5,9,9_0,6000.0,0,0.0,6000,9,15,195.5,77.5,3.3,0,1,609.9058574814825,0.0,609.9058574814825 8637,4641,4640,4,4,74,221,74,50,0,2135,0,0,0,0,0,7,0,2,1.5,2697.46376493,1181,0,51368.0,5,1,1,2,3,1,0,0,0,1,0,0,0,0,0,1,34245.3333333,9,5,9,9_0,12000.0,0,12000.0,0,4,4,0.0,0.0,0.0,0,0,1219.811714962965,1219.811714962965,0.0 8638,4644,4643,9,9,84,112,86,41,0,2140,0,0,0,0,0,6,0,1,1.0,2622.21243895,0,0,29818.0,6,1,6,0,1,1,0,0,1,0,0,0,0,0,1,0,29818.0,9,5,9,9_1,5108.0,0,0.0,5108,1,11,0.0,0.0,0.0,0,0,525.7626021402392,0.0,525.7626021402392 -8639,4645,4644,2,2,48,111,54,41,0,2141,0,800,280,0,3,6,2,4,2.5,1501.98076764,8999,0,86450.0,1,1,8,7,4,3,0,1,0,0,0,1,0,0,2,1,34580.0,9,5,9,9_0,19865.0,0,18625.0,1240,2,2,240.3,166.66666666700002,5.59,0,1,2019.2966431449415,1893.2494325987684,126.04721054617305 +8639,4645,4644,2,2,48,111,54,41,0,2141,0,800,280,0,3,6,2,4,2.5,1501.98076764,8999,0,86450.0,1,1,8,7,4,3,0,1,0,0,0,1,0,0,2,1,34580.0,9,5,9,9_0,19865.0,0,18625.0,1240,2,2,240.3,166.666666667,5.59,0,1,2019.2966431449415,1893.2494325987684,126.04721054617305 8640,4648,4647,0,0,68,111,74,33,0,2144,0,0,0,0,0,3,0,1,1.0,3966.62314331,0,0,33676.0,5,2,10,8,1,0,0,0,0,0,0,0,1,0,0,0,33676.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8641,4649,4648,21,21,83,111,75,60,0,2146,0,0,0,633,0,1,0,1,1.0,4489.8796398,0,0,30066.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,30066.0,9,5,9,9_0,1000.0,0,0.0,1000,22,22,0.0,0.0,0.0,0,0,101.65097624691374,0.0,101.65097624691374 8642,4651,4650,4,5,70,211,74,41,0,2149,0,0,0,800,0,4,0,2,1.5,1269.15764272,2340,0,48128.0,5,3,4,4,3,1,0,0,0,0,1,0,0,0,0,1,32085.3333333,9,5,9,9_0,10000.0,0,10000.0,0,4,5,0.0,0.0,0.0,0,0,1016.5097624691374,1016.5097624691374,0.0 8643,4652,4651,1,1,73,111,77,44,1,215,0,0,0,0,0,5,0,1,1.0,2971.56146135,0,10500,34566.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,34566.0,9,5,9,9_0,12000.0,0,0.0,12000,10,0,0.0,0.0,0.0,0,0,1219.811714962965,0.0,1219.811714962965 -8644,4659,4658,27,27,50,221,47,50,0,2160,0,350,10,0,3,7,1,3,2.0,1953.41972484,1771,0,63145.0,1,2,1,1,4,3,0,0,0,1,0,0,0,0,2,1,31572.5,9,5,9,9_0,2500.0,0,0.0,2500,2,21,477.0,203.33333333299998,3.3,0,1,254.12744061728435,0.0,254.12744061728435 +8644,4659,4658,27,27,50,221,47,50,0,2160,0,350,10,0,3,7,1,3,2.0,1953.41972484,1771,0,63145.0,1,2,1,1,4,3,0,0,0,1,0,0,0,0,2,1,31572.5,9,5,9,9_0,2500.0,0,0.0,2500,2,21,477.0,203.333333333,3.3,0,1,254.12744061728435,0.0,254.12744061728435 8645,4668,4667,8,9,29,211,42,20,0,2171,0,600,0,0,1,4,0,1,1.0,1635.49541079,2444,0,34692.0,1,2,1,3,1,1,0,1,0,1,0,0,0,0,0,1,34692.0,9,5,9,9_0,13000.0,0,13000.0,0,3,7,0.0,20.0,3.3,0,1,1321.4626912098788,1321.4626912098788,0.0 8646,4676,4675,13,17,49,112,48,50,0,2183,0,400,0,0,2,3,0,2,1.5,3734.85638125,1319,0,52980.0,1,3,9,1,3,3,0,1,0,1,0,0,0,0,0,3,35320.0,9,5,9,9_0,25000.0,0,25000.0,0,7,15,0.0,0.0,0.0,0,1,2541.2744061728436,2541.2744061728436,0.0 8647,4710,4709,4,6,31,111,37,10,0,2220,0,0,32,0,1,3,0,1,1.0,3106.07291613,0,0,30580.0,1,2,8,6,1,1,1,1,0,0,1,0,0,0,1,0,30580.0,9,5,9,9_0,18000.0,0,0.0,18000,2,8,0.0,40.0,3.3,0,1,1829.7175724444473,0.0,1829.7175724444473 @@ -8655,12 +8655,12 @@ 8653,4756,4755,0,8,24,111,37,12,0,2292,0,0,0,262,1,1,0,1,1.0,3106.77496179,0,0,29854.0,1,3,10,8,1,1,0,1,0,0,0,0,1,1,1,0,29854.0,9,5,9,9_0,1500.0,0,0.0,1500,9,9,0.0,20.0,1.1,0,0,152.47646437037062,0.0,152.47646437037062 8654,4757,4756,6,6,80,111,75,41,0,2297,0,0,0,0,0,5,0,1,1.0,2318.97586305,0,0,29287.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,0,1,29287.0,9,5,9,9_0,10000.0,0,10000.0,0,5,5,0.0,0.0,0.0,0,0,1016.5097624691374,1016.5097624691374,0.0 8655,4775,4774,5,7,55,112,75,50,0,2318,0,0,200,0,1,7,0,2,1.5,1460.45481063,0,0,47902.0,5,1,7,0,3,2,0,1,1,0,0,0,0,0,2,0,31934.6666667,9,5,9,9_1,10000.0,0,0.0,10000,4,7,0.0,0.0,0.0,0,1,1029.2924865705545,0.0,1029.2924865705545 -8656,4781,4780,4,4,42,111,34,10,0,233,0,0,99999,0,2,5,2,4,2.1,2080.66739269,0,0,66958.0,1,1,8,7,4,1,0,1,0,0,0,1,0,0,1,0,31884.761904799998,9,5,9,9_0,6000.0,0,0.0,6000,3,3,113.9,19.25,3.3,0,0,609.9058574814825,0.0,609.9058574814825 +8656,4781,4780,4,4,42,111,34,10,0,233,0,0,99999,0,2,5,2,4,2.1,2080.66739269,0,0,66958.0,1,1,8,7,4,1,0,1,0,0,0,1,0,0,1,0,31884.7619048,9,5,9,9_0,6000.0,0,0.0,6000,3,3,113.9,19.25,3.3,0,0,609.9058574814825,0.0,609.9058574814825 8657,4782,4781,0,0,60,112,46,50,0,2333,0,0,0,480,1,4,0,1,1.0,2381.44118328,0,0,29555.0,1,3,10,4,1,0,0,0,0,0,1,0,0,0,0,0,29555.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,60.0,5.55,0,0,0.0,0.0,0.0 8658,4790,4789,3,3,59,112,34,10,0,2343,0,0,0,0,1,8,0,2,1.5,1316.58638824,0,0,52624.0,1,2,10,0,3,1,0,0,1,0,0,0,0,0,1,0,35082.6666667,9,5,9,9_1,15000.0,0,0.0,15000,4,5,0.0,0.0,0.0,0,1,1543.9387298558318,0.0,1543.9387298558318 8659,4801,4800,4,6,77,221,77,60,0,2356,0,0,0,0,0,6,0,1,1.0,4862.20032818,650,0,29404.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,1,0,29404.0,9,5,9,9_0,5000.0,0,0.0,5000,3,7,0.0,0.0,0.0,0,0,508.2548812345687,0.0,508.2548812345687 8660,4807,4806,0,0,29,111,45,10,0,2364,0,0,0,510,1,1,0,1,1.0,3690.08669615,0,0,35433.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,35433.0,9,5,9,9_0,0.0,0,0.0,0,0,0,61.0,90.0,5.57,0,0,0.0,0.0,0.0 -8661,4808,4807,3,3,28,211,37,31,0,2365,0,199998,0,0,3,5,0,4,2.5,1032.18997315,3640,0,91862.0,1,1,1,2,5,3,0,0,0,1,0,0,0,0,0,3,36744.8,9,5,9,9_0,23500.0,0,23500.0,0,0,1,34.5,9.333333333330001,3.3,1,1,2388.797941802473,2388.797941802473,0.0 +8661,4808,4807,3,3,28,211,37,31,0,2365,0,199998,0,0,3,5,0,4,2.5,1032.18997315,3640,0,91862.0,1,1,1,2,5,3,0,0,0,1,0,0,0,0,0,3,36744.8,9,5,9,9_0,23500.0,0,23500.0,0,0,1,34.5,9.33333333333,3.3,1,1,2388.797941802473,2388.797941802473,0.0 8662,4812,4811,5,5,54,111,46,42,0,2375,0,0,0,0,2,5,1,3,2.0,2883.29861404,500,0,65655.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,0,1,32827.5,9,5,9,9_0,35000.0,0,35000.0,0,4,4,114.4,26.6666666667,3.3,1,1,3557.784168641981,3557.784168641981,0.0 8663,4829,4828,3,3,42,111,23,31,0,2396,0,30,0,0,2,6,2,4,2.1,2989.90709323,3542,0,70527.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,33584.2857143,9,5,9,9_0,18000.0,0,18000.0,0,3,3,160.0,37.5,3.3,0,1,1829.7175724444473,1829.7175724444473,0.0 8664,4831,4830,4,4,68,111,74,44,0,24,0,0,0,0,0,5,0,2,1.5,2041.88523562,5304,0,45979.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,30652.6666667,9,5,9,9_0,15000.0,0,15000.0,0,4,4,0.0,0.0,0.0,0,0,1524.764643703706,1524.764643703706,0.0 @@ -8688,15 +8688,15 @@ 8686,5029,5028,0,0,48,111,43,41,1,2681,0,300,0,0,2,4,0,2,1.5,1535.62494684,0,18000,51600.0,1,2,6,4,3,1,0,1,0,0,1,0,0,0,0,1,34400.0,9,5,9,9_0,40000.0,0,40000.0,0,9,0,0.0,20.0,3.3,0,1,4066.0390498765496,4066.0390498765496,0.0 8687,5036,5035,8,9,65,112,74,50,0,2695,0,0,0,0,0,6,0,2,1.5,1516.89967326,2152,0,49340.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,1,1,32893.3333333,9,5,9,9_1,16000.0,0,15000.0,1000,3,7,0.0,0.0,0.0,0,0,1646.867978512887,1543.9387298558318,102.92924865705544 8688,5051,5050,0,4,30,111,23,44,0,2714,0,0,18,0,1,3,0,1,1.0,3959.41202897,0,0,29204.0,1,4,10,8,1,1,0,1,0,0,0,0,1,0,1,0,29204.0,9,5,9,9_0,10000.0,0,0.0,10000,4,5,0.0,160.0,5.57,0,0,1016.5097624691374,0.0,1016.5097624691374 -8689,5057,5056,2,7,33,111,38,12,0,2720,0,540,0,0,2,5,1,3,1.8,3428.5823585999997,1571,0,55131.0,1,2,10,8,4,2,1,1,0,0,0,0,1,0,0,2,30628.3333333,9,5,9,9_0,20000.0,0,20000.0,0,4,7,0.0,0.0,0.0,1,1,2033.0195249382748,2033.0195249382748,0.0 +8689,5057,5056,2,7,33,111,38,12,0,2720,0,540,0,0,2,5,1,3,1.8,3428.5823586,1571,0,55131.0,1,2,10,8,4,2,1,1,0,0,0,0,1,0,0,2,30628.3333333,9,5,9,9_0,20000.0,0,20000.0,0,4,7,0.0,0.0,0.0,1,1,2033.0195249382748,2033.0195249382748,0.0 8690,5061,5060,6,6,36,111,22,31,0,2726,0,450,0,0,2,6,2,4,2.1,2457.82668402,4836,0,73695.0,1,2,6,5,4,2,1,1,0,0,1,0,0,0,0,2,35092.8571429,9,5,9,9_0,10000.0,0,10000.0,0,6,6,442.5,57.5,0.0,0,1,1016.5097624691374,1016.5097624691374,0.0 8691,5070,5069,1,1,61,112,75,50,1,2743,0,0,0,0,1,5,0,2,1.5,1955.04186585,3693,15540,44748.0,5,1,10,0,3,2,1,0,1,0,0,0,0,0,0,2,29832.0,9,5,9,9_1,17393.0,0,17393.0,0,1,1,0.0,0.0,0.0,1,0,1790.2484218921654,1790.2484218921654,0.0 8692,5083,5082,21,24,49,112,43,33,0,2766,0,240,160,0,2,6,0,2,1.5,1315.95728801,0,0,53812.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,1,1,35874.6666667,9,5,9,9_1,10000.0,0,0.0,10000,1,19,164.8,50.0,3.3,0,1,1029.2924865705545,0.0,1029.2924865705545 8693,5100,5099,3,8,43,111,48,10,0,2787,0,480,72,0,2,4,1,3,1.8,1797.03877635,1820,0,55563.0,1,2,8,7,4,3,0,1,0,0,0,1,0,0,2,1,30868.3333333,9,5,9,9_0,21859.0,0,6859.0,15000,3,5,33.5,24.0,1.1,0,1,2221.9886897812876,697.2240460775813,1524.764643703706 8694,5108,5107,2,2,51,111,53,50,0,2798,0,300,0,0,2,4,0,2,1.5,1259.96587942,2600,0,45192.0,1,4,8,7,3,1,0,1,0,0,0,1,0,0,0,1,30128.0,9,5,9,9_0,23000.0,0,23000.0,0,2,2,114.0,20.0,0.0,0,1,2337.9724536790163,2337.9724536790163,0.0 -8695,5115,5114,3,8,57,111,37,50,0,2804,0,0,0,0,1,5,0,2,1.5,2075.4837737999997,4056,0,49580.0,1,2,8,7,3,1,0,0,0,0,0,1,0,0,1,0,33053.3333333,9,5,9,9_0,25000.0,0,0.0,25000,9,9,0.0,0.0,0.0,0,1,2541.2744061728436,0.0,2541.2744061728436 +8695,5115,5114,3,8,57,111,37,50,0,2804,0,0,0,0,1,5,0,2,1.5,2075.4837738,4056,0,49580.0,1,2,8,7,3,1,0,0,0,0,0,1,0,0,1,0,33053.3333333,9,5,9,9_0,25000.0,0,0.0,25000,9,9,0.0,0.0,0.0,0,1,2541.2744061728436,0.0,2541.2744061728436 8696,5129,5128,4,10,48,112,13,50,0,2829,0,600,0,0,2,6,2,4,2.3,1461.49733921,3276,0,78557.0,1,1,7,0,4,2,0,1,1,0,0,0,0,0,0,2,34155.2173913,9,5,9,9_1,34204.0,0,34204.0,0,3,8,70.0,73.3333333333,3.3,0,1,3520.5920210659247,3520.5920210659247,0.0 -8697,5130,5129,0,17,46,111,54,50,2,283,0,0,0,0,2,2,0,2,1.5,3507.1036888000003,1300,300,43724.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,1,0,29149.3333333,9,5,9,9_0,6000.0,0,0.0,6000,3,16,43.0,45.0,0.0,0,0,609.9058574814825,0.0,609.9058574814825 +8697,5130,5129,0,17,46,111,54,50,2,283,0,0,0,0,2,2,0,2,1.5,3507.1036888,1300,300,43724.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,1,0,29149.3333333,9,5,9,9_0,6000.0,0,0.0,6000,3,16,43.0,45.0,0.0,0,0,609.9058574814825,0.0,609.9058574814825 8698,5134,5133,6,6,71,111,74,30,0,2834,0,0,0,415,0,3,0,1,1.0,2368.01716539,0,0,29443.0,5,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,29443.0,9,5,9,9_0,3784.0,0,0.0,3784,1,6,0.0,0.0,0.0,0,0,384.64729411832155,0.0,384.64729411832155 8699,5149,5148,8,8,65,221,75,42,0,2856,0,0,0,0,0,4,0,2,1.5,4216.16085762,0,0,54783.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,0,2,36522.0,9,5,9,9_0,21000.0,0,21000.0,0,10,10,0.0,0.0,0.0,0,0,2134.6705011851886,2134.6705011851886,0.0 8700,5150,5149,12,12,55,111,37,50,0,2857,100,0,0,0,2,4,0,2,1.5,918.168667238,1418,0,44411.0,1,1,7,5,3,2,0,0,0,0,1,0,0,0,1,0,29607.3333333,9,5,9,9_0,15555.0,0,0.0,15555,10,12,0.0,0.0,0.0,0,1,1581.180935520743,0.0,1581.180935520743 @@ -8722,7 +8722,7 @@ 8720,5383,5382,6,6,57,111,38,12,0,3185,0,125,0,0,2,5,0,2,1.5,1962.09488283,3317,0,54047.0,1,1,10,8,3,1,0,1,0,0,0,0,1,0,0,1,36031.3333333,9,5,9,9_0,10000.0,0,10000.0,0,6,6,85.0,30.0,3.3,0,1,1016.5097624691374,1016.5097624691374,0.0 8721,5393,5392,12,13,71,111,75,41,0,3198,0,0,0,0,0,5,0,2,1.5,2601.74046362,1503,0,46192.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,30794.6666667,9,5,9,9_0,18500.0,0,16000.0,2500,11,12,0.0,0.0,0.0,0,0,1880.5430605679041,1626.4156199506199,254.12744061728435 8722,5399,5398,1,1,63,112,75,41,1,3207,0,0,0,0,0,6,0,2,1.5,1755.6375948,2335,25000,55402.0,5,1,5,0,3,1,0,0,1,0,0,0,0,0,0,1,36934.6666667,9,5,9,9_1,12000.0,0,12000.0,0,1,1,0.0,0.0,0.0,0,0,1235.1509838846653,1235.1509838846653,0.0 -8723,5412,5411,11,12,45,111,62,42,0,3224,0,100,0,0,2,5,2,4,2.1,2202.1864064,0,0,62822.0,1,2,8,6,4,2,0,0,0,0,1,0,0,0,0,2,29915.238095200002,9,5,9,9_0,3000.0,0,3000.0,0,11,11,35.5,7.0,3.31,0,0,304.95292874074124,304.95292874074124,0.0 +8723,5412,5411,11,12,45,111,62,42,0,3224,0,100,0,0,2,5,2,4,2.1,2202.1864064,0,0,62822.0,1,2,8,6,4,2,0,0,0,0,1,0,0,0,0,2,29915.2380952,9,5,9,9_0,3000.0,0,3000.0,0,11,11,35.5,7.0,3.31,0,0,304.95292874074124,304.95292874074124,0.0 8724,5430,5429,0,0,84,111,75,70,0,3245,0,0,0,0,0,3,0,1,1.0,2861.77621987,0,0,30755.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,30755.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8725,5455,5454,6,6,64,120,74,50,0,3278,0,0,0,0,0,6,0,2,1.5,3244.89850448,7697,0,45500.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,30333.3333333,9,5,9,9_1,20000.0,0,20000.0,0,5,6,0.0,0.0,0.0,0,0,2058.584973141109,2058.584973141109,0.0 8726,5464,5463,12,12,53,300,38,31,0,3289,0,300,0,0,2,6,2,4,2.5,1386.04831976,4160,0,73857.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,0,2,29542.8,9,5,9,9_1,5000.0,0,5000.0,0,8,12,60.8,8.0,3.3,1,1,514.6462432852773,514.6462432852773,0.0 @@ -8739,9 +8739,9 @@ 8737,5552,5551,3,7,37,112,43,10,0,3413,0,550,0,0,2,5,0,2,1.5,1910.58023279,0,0,46840.0,1,2,9,0,3,2,0,1,1,0,0,0,0,0,0,2,31226.6666667,9,5,9,9_1,15000.0,0,15000.0,0,3,8,109.0,50.0,3.3,0,1,1543.9387298558318,1543.9387298558318,0.0 8738,5553,5552,4,4,28,112,53,20,0,3414,0,1150,0,0,2,2,0,2,1.5,2208.9411976,5460,0,43995.0,1,3,10,0,3,2,0,1,1,0,0,0,0,0,0,2,29330.0,9,5,9,9_1,16500.0,0,16500.0,0,4,4,0.0,33.0,3.3,0,1,1698.3326028414147,1698.3326028414147,0.0 8739,5559,5558,16,16,75,300,77,30,0,3420,0,0,0,0,0,6,0,2,1.5,1580.01055479,0,0,52877.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,35251.3333333,9,5,9,9_1,20000.0,0,10000.0,10000,15,15,0.0,0.0,0.0,0,0,2058.584973141109,1029.2924865705545,1029.2924865705545 -8740,5564,5563,10,11,29,111,37,20,0,3429,0,329,0,328,2,3,2,4,2.1,4256.61465712,3120,0,63389.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,30185.238095200002,9,5,9,9_0,21000.0,0,21000.0,0,4,4,108.7,88.75,3.31,0,1,2134.6705011851886,2134.6705011851886,0.0 +8740,5564,5563,10,11,29,111,37,20,0,3429,0,329,0,328,2,3,2,4,2.1,4256.61465712,3120,0,63389.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,0,2,30185.2380952,9,5,9,9_0,21000.0,0,21000.0,0,4,4,108.7,88.75,3.31,0,1,2134.6705011851886,2134.6705011851886,0.0 8741,5567,5566,0,0,25,111,38,10,0,3435,0,0,0,962,2,2,0,2,1.5,3699.19531606,0,0,47427.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,31618.0,9,5,9,9_0,0.0,0,0.0,0,0,0,26.5,35.0,1.1,0,0,0.0,0.0,0.0 -8742,5574,5573,11,11,74,111,74,41,0,3445,0,0,0,0,0,3,0,1,1.0,3625.2555715000003,0,0,31464.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,31464.0,9,5,9,9_0,2000.0,0,0.0,2000,10,10,0.0,0.0,0.0,0,0,203.30195249382749,0.0,203.30195249382749 +8742,5574,5573,11,11,74,111,74,41,0,3445,0,0,0,0,0,3,0,1,1.0,3625.2555715,0,0,31464.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,31464.0,9,5,9,9_0,2000.0,0,0.0,2000,10,10,0.0,0.0,0.0,0,0,203.30195249382749,0.0,203.30195249382749 8743,5577,5576,8,8,42,111,22,31,0,3448,0,20,0,0,2,2,1,3,1.8,2810.65491765,0,0,58760.0,1,3,9,7,4,1,1,1,0,0,0,1,0,0,0,1,32644.4444444,9,5,9,9_0,12000.0,0,12000.0,0,5,6,0.0,26.6666666667,1.1,0,0,1219.811714962965,1219.811714962965,0.0 8744,5605,5604,4,10,31,111,67,31,0,3488,0,0,450,385,1,2,0,1,1.0,3769.06289096,2080,0,29600.0,1,3,7,5,1,1,0,1,0,0,1,0,0,0,1,0,29600.0,9,5,9,9_0,30000.0,0,0.0,30000,8,10,265.0,140.0,3.3,0,1,3049.529287407412,0.0,3049.529287407412 8745,5626,5625,1,6,44,111,38,41,2,3512,0,700,0,283,1,1,0,1,1.0,3503.42974592,3172,8000,30393.0,1,3,9,7,1,1,0,1,0,0,0,1,0,1,0,1,30393.0,9,5,9,9_0,12891.0,0,12891.0,0,4,6,0.0,10.0,1.1,0,0,1310.3827347989652,1310.3827347989652,0.0 @@ -8749,7 +8749,7 @@ 8747,5653,5652,5,8,43,211,38,10,0,3542,0,370,310,0,2,5,1,3,1.8,1013.16250621,0,0,61072.0,1,2,3,4,4,2,0,1,0,0,1,0,0,0,1,1,33928.8888889,9,5,9,9_0,28797.0,0,20000.0,8797,8,8,248.5,28.0,3.3,0,1,2927.243162982375,2033.0195249382748,894.2236380441002 8748,5657,5656,10,10,37,112,48,60,0,3549,0,60,99999,0,2,9,1,5,2.8,617.019395689,2340,0,86541.0,1,1,8,0,5,3,0,1,1,0,0,0,0,0,1,2,30907.5,9,5,9,9_1,20000.0,0,20000.0,0,4,10,137.6,18.0,3.31,1,1,2058.584973141109,2058.584973141109,0.0 8749,5679,5678,4,7,41,111,47,31,0,3580,0,0,0,0,2,5,2,4,2.1,2872.19041595,2922,0,69328.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,33013.3333333,9,5,9,9_0,10000.0,0,0.0,10000,0,7,132.0,82.5,5.57,0,0,1016.5097624691374,0.0,1016.5097624691374 -8750,5683,5682,1,1,49,111,38,12,1,3585,0,220,300,0,2,6,2,5,3.0,891.5464533789999,2920,25000,95990.0,1,2,9,7,5,3,0,1,0,0,0,1,0,0,1,2,31996.6666667,9,5,9,9_0,25000.0,0,25000.0,0,3,3,247.7,38.0,3.31,1,1,2541.2744061728436,2541.2744061728436,0.0 +8750,5683,5682,1,1,49,111,38,12,1,3585,0,220,300,0,2,6,2,5,3.0,891.546453379,2920,25000,95990.0,1,2,9,7,5,3,0,1,0,0,0,1,0,0,1,2,31996.6666667,9,5,9,9_0,25000.0,0,25000.0,0,3,3,247.7,38.0,3.31,1,1,2541.2744061728436,2541.2744061728436,0.0 8751,5694,5693,4,4,31,112,37,12,0,3600,0,70,0,0,2,5,1,3,1.8,1559.78240233,2604,0,64951.0,1,2,6,0,4,1,0,1,1,0,0,0,0,0,0,1,36083.8888889,9,5,9,9_1,27000.0,0,27000.0,0,4,4,510.4,66.6666666667,3.31,0,1,2779.0897137404972,2779.0897137404972,0.0 8752,5711,5710,1,2,47,112,38,10,0,3626,0,0,0,0,2,8,3,5,2.6,1432.58988681,7317,0,80670.0,1,3,7,0,4,3,0,0,1,0,0,0,0,0,0,3,31026.9230769,9,5,9,9_1,22000.0,0,22000.0,0,5,6,162.1,50.0,3.3,1,1,2264.44347045522,2264.44347045522,0.0 8753,5739,5738,8,8,44,112,38,31,0,3661,0,550,0,0,1,6,1,2,1.3,3375.69159773,0,0,46382.0,1,2,8,0,2,1,0,1,1,0,0,0,0,0,0,1,35678.4615385,9,5,9,9_1,50000.0,0,50000.0,0,4,9,34.5,20.0,3.3,0,0,5146.4624328527725,5146.4624328527725,0.0 @@ -8757,7 +8757,7 @@ 8755,5743,5742,11,13,58,111,43,33,0,3666,180,0,50,0,2,5,1,3,2.0,1513.07230028,0,0,59547.0,1,1,5,4,4,2,0,1,0,0,1,0,0,0,1,0,29773.5,9,5,9,9_0,26000.0,0,0.0,26000,8,9,0.0,23.3333333333,3.31,0,1,2642.9253824197576,0.0,2642.9253824197576 8756,5749,5748,1,1,51,111,22,50,1,3673,0,0,70,0,2,5,0,2,1.5,1970.44783264,3693,13300,55130.0,1,2,6,4,3,2,1,1,0,0,1,0,0,0,1,1,36753.3333333,9,5,9,9_0,30000.0,0,20000.0,10000,1,2,58.4,30.0,3.33,0,1,3049.529287407412,2033.0195249382748,1016.5097624691374 8757,5761,5760,1,14,44,300,48,31,2,3690,0,330,70,0,3,4,1,3,2.0,2415.75731134,0,2000,67721.0,1,3,0,0,4,3,0,1,1,0,0,0,0,0,1,2,33860.5,9,5,9,9_1,7000.0,0,7000.0,0,5,13,55.5,21.3333333333,3.3,0,1,720.5047405993881,720.5047405993881,0.0 -8758,5787,5786,9,13,45,111,65,50,0,3723,0,300,0,0,4,7,3,5,3.0,844.2486974330001,2964,0,106037.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,0,2,35345.6666667,9,5,9,9_0,26000.0,0,26000.0,0,2,6,313.0,38.3333333333,0.0,0,1,2642.9253824197576,2642.9253824197576,0.0 +8758,5787,5786,9,13,45,111,65,50,0,3723,0,300,0,0,4,7,3,5,3.0,844.248697433,2964,0,106037.0,1,2,7,5,4,2,0,1,0,0,1,0,0,0,0,2,35345.6666667,9,5,9,9_0,26000.0,0,26000.0,0,2,6,313.0,38.3333333333,0.0,0,1,2642.9253824197576,2642.9253824197576,0.0 8759,5794,5793,8,13,53,112,43,33,0,3731,0,400,0,0,2,4,1,2,1.5,1727.83303527,0,0,44861.0,1,3,8,1,2,2,0,0,0,1,0,0,0,0,1,1,29907.3333333,9,5,9,9_0,53000.0,0,23000.0,30000,14,14,0.0,20.0,1.1,0,1,5387.501741086428,2337.9724536790163,3049.529287407412 8760,5799,5798,6,18,64,112,72,50,0,3737,0,0,0,0,0,9,0,2,1.5,1647.97796044,0,0,44693.0,5,1,9,0,3,3,0,0,1,0,0,0,0,0,2,1,29795.3333333,9,5,9,9_1,32384.0,0,20000.0,12384,16,16,0.0,0.0,0.0,0,0,3333.260788510084,2058.584973141109,1274.6758153689748 8761,5802,5801,1,1,60,112,74,44,1,3740,0,0,0,0,0,4,0,2,1.5,2841.04201961,4368,27000,50017.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,33344.6666667,9,5,9,9_1,2700.0,0,2700.0,0,1,1,0.0,0.0,0.0,0,0,277.9089713740497,277.9089713740497,0.0 @@ -8765,13 +8765,13 @@ 8763,5819,5818,2,2,40,111,43,33,0,3765,0,0,0,0,1,2,0,1,1.0,3617.71029452,0,0,29599.0,1,2,8,6,1,1,0,1,0,0,1,0,0,0,0,1,29599.0,9,5,9,9_0,0.0,0,0.0,0,4,0,0.0,60.0,3.3,0,1,0.0,0.0,0.0 8764,5825,5824,9,11,38,111,62,41,0,3771,0,99999,0,760,2,3,1,3,1.8,2622.04998151,3375,0,64596.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,35886.6666667,9,5,9,9_0,12000.0,0,12000.0,0,4,5,81.5,16.6666666667,0.0,0,1,1219.811714962965,1219.811714962965,0.0 8765,5843,5842,6,6,60,111,54,43,0,3794,0,0,0,383,1,3,0,1,1.0,2844.97116048,0,0,30027.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,30027.0,9,5,9,9_0,6000.0,0,6000.0,0,2,7,8.0,60.0,3.3,0,1,609.9058574814825,609.9058574814825,0.0 -8766,5850,5849,1,2,42,120,48,50,0,3803,0,250,0,0,3,4,2,4,2.3,2879.76671097,3725,0,67540.0,1,2,0,3,4,3,0,0,0,1,0,0,0,0,0,3,29365.217391299997,9,5,9,9_0,15000.0,0,15000.0,0,5,6,53.6,27.5,3.3,0,1,1524.764643703706,1524.764643703706,0.0 +8766,5850,5849,1,2,42,120,48,50,0,3803,0,250,0,0,3,4,2,4,2.3,2879.76671097,3725,0,67540.0,1,2,0,3,4,3,0,0,0,1,0,0,0,0,0,3,29365.2173913,9,5,9,9_0,15000.0,0,15000.0,0,5,6,53.6,27.5,3.3,0,1,1524.764643703706,1524.764643703706,0.0 8767,5851,5850,4,8,47,111,37,41,0,3804,0,0,0,444,2,3,1,2,1.5,2958.98892498,0,0,52082.0,1,3,10,8,2,1,0,0,0,0,0,0,1,0,1,0,34721.3333333,9,5,9,9_0,10000.0,0,0.0,10000,6,9,18.0,37.5,5.5,0,0,1016.5097624691374,0.0,1016.5097624691374 8768,5854,5853,11,11,47,211,62,43,0,3809,0,300,50,0,2,4,0,2,1.5,2079.18974427,2874,0,44681.0,1,2,1,2,3,2,0,1,0,1,0,0,0,0,1,1,29787.3333333,9,5,9,9_0,20000.0,0,15000.0,5000,7,8,0.0,0.0,0.0,0,1,2033.0195249382748,1524.764643703706,508.2548812345687 8769,5855,5854,8,8,51,111,64,50,0,381,0,160,0,0,2,6,0,2,1.5,1311.12083416,0,0,44746.0,1,1,7,5,3,3,0,1,0,0,1,0,0,0,0,3,29830.6666667,9,5,9,9_0,20000.0,0,20000.0,0,2,4,0.0,0.0,0.0,1,1,2033.0195249382748,2033.0195249382748,0.0 8770,5858,5857,11,11,52,112,34,10,0,3812,0,60,0,0,1,8,1,2,1.5,2365.05914396,0,0,51729.0,1,1,9,1,2,2,0,1,0,1,0,0,0,0,0,2,34486.0,9,5,9,9_0,14500.0,0,14500.0,0,8,10,0.0,0.0,0.0,0,1,1473.9391555802495,1473.9391555802495,0.0 -8771,5867,5866,13,13,57,111,54,50,0,3824,0,0,350,0,2,5,0,2,1.5,910.8690933089999,2600,0,43879.0,1,1,7,5,3,2,0,1,0,0,1,0,0,0,2,0,29252.6666667,9,5,9,9_0,2000.0,0,0.0,2000,12,12,46.8,45.0,3.3,0,1,203.30195249382749,0.0,203.30195249382749 -8772,5878,5877,5,5,54,112,46,50,0,384,0,0,0,0,2,6,0,2,1.5,740.4355966539999,0,0,49110.0,1,1,9,0,3,1,0,0,1,0,0,0,0,0,1,0,32740.0,9,5,9,9_1,20000.0,0,0.0,20000,2,4,305.2,50.0,2.24,0,1,2058.584973141109,0.0,2058.584973141109 +8771,5867,5866,13,13,57,111,54,50,0,3824,0,0,350,0,2,5,0,2,1.5,910.869093309,2600,0,43879.0,1,1,7,5,3,2,0,1,0,0,1,0,0,0,2,0,29252.6666667,9,5,9,9_0,2000.0,0,0.0,2000,12,12,46.8,45.0,3.3,0,1,203.30195249382749,0.0,203.30195249382749 +8772,5878,5877,5,5,54,112,46,50,0,384,0,0,0,0,2,6,0,2,1.5,740.435596654,0,0,49110.0,1,1,9,0,3,1,0,0,1,0,0,0,0,0,1,0,32740.0,9,5,9,9_1,20000.0,0,0.0,20000,2,4,305.2,50.0,2.24,0,1,2058.584973141109,0.0,2058.584973141109 8773,5882,5881,0,0,83,111,77,50,0,3846,0,0,0,573,0,6,0,1,1.0,2018.23285838,0,0,30951.0,5,3,8,7,1,0,0,0,0,0,0,1,0,0,0,0,30951.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8774,5900,5899,5,6,66,112,75,41,0,3872,0,0,0,0,0,7,0,2,1.5,1061.61003092,6417,0,52982.0,5,1,8,2,3,2,0,0,0,1,0,0,0,0,1,1,35321.3333333,9,5,9,9_0,19000.0,0,14000.0,5000,4,5,0.0,0.0,0.0,0,0,1931.3685486913612,1423.1136674567924,508.2548812345687 8775,5957,5956,5,5,54,120,63,50,0,3944,0,150,0,0,2,4,0,2,1.5,1234.3989637,0,0,44682.0,1,2,0,1,3,1,0,1,0,1,0,0,0,0,0,1,29788.0,9,5,9,9_0,19000.0,0,19000.0,0,4,4,14.0,15.0,3.3,0,1,1931.3685486913612,1931.3685486913612,0.0 @@ -8789,7 +8789,7 @@ 8787,6047,6046,15,15,60,400,43,10,0,4073,0,200,0,0,1,5,0,1,1.0,2393.67079697,1040,0,35185.0,1,1,0,0,1,1,0,1,1,0,0,0,0,0,0,1,35185.0,9,5,9,9_1,15000.0,0,15000.0,0,5,14,0.0,10.0,3.3,0,1,1543.9387298558318,1543.9387298558318,0.0 8788,6048,6047,1,1,74,111,75,50,0,4075,0,0,0,0,0,4,0,1,1.0,3280.27799924,2215,0,30316.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,30316.0,9,5,9,9_0,11000.0,0,0.0,11000,2,2,0.0,0.0,0.0,0,0,1118.1607387160511,0.0,1118.1607387160511 8789,6049,6048,6,9,60,111,75,30,0,4077,0,0,0,0,0,11,0,2,1.5,2113.51618892,6825,0,48567.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,0,2,32378.0,9,5,9,9_0,8000.0,0,8000.0,0,9,9,0.0,0.0,0.0,0,0,813.2078099753099,813.2078099753099,0.0 -8790,6050,6049,15,15,38,111,47,31,0,4079,0,450,160,0,2,7,2,4,2.1,2140.06565024,4687,0,68480.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,32609.523809500002,9,5,9,9_0,40000.0,0,35000.0,5000,8,8,178.0,31.75,3.3,0,1,4066.0390498765496,3557.784168641981,508.2548812345687 +8790,6050,6049,15,15,38,111,47,31,0,4079,0,450,160,0,2,7,2,4,2.1,2140.06565024,4687,0,68480.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,32609.5238095,9,5,9,9_0,40000.0,0,35000.0,5000,8,8,178.0,31.75,3.3,0,1,4066.0390498765496,3557.784168641981,508.2548812345687 8791,6087,6086,4,5,44,300,64,70,0,4125,0,600,0,0,2,5,1,3,1.8,1691.04566821,9111,0,62655.0,1,1,0,0,4,3,0,1,1,0,0,0,0,0,0,3,34808.3333333,9,5,9,9_1,28072.0,0,28072.0,0,6,6,300.8,86.0,3.3,0,1,2889.4298683008606,2889.4298683008606,0.0 8792,6090,6089,0,1,39,111,37,31,0,4128,0,1500,0,522,1,2,0,1,1.0,3009.71035719,0,0,31188.0,1,3,8,7,1,1,1,1,0,0,0,1,0,0,0,1,31188.0,9,5,9,9_0,0.0,0,0.0,0,4,0,0.0,60.0,3.3,0,1,0.0,0.0,0.0 8793,6117,6116,2,3,52,111,37,20,0,4166,0,250,0,940,1,5,0,1,1.0,1773.72359954,0,0,31386.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,0,1,31386.0,9,5,9,9_0,20000.0,0,20000.0,0,4,4,218.5,120.0,3.3,0,1,2033.0195249382748,2033.0195249382748,0.0 @@ -8806,7 +8806,7 @@ 8804,6280,6279,1,5,34,112,47,10,2,4386,0,180,200,0,2,5,1,3,1.8,2020.76940643,3258,10000,55323.0,1,2,10,4,4,2,1,1,0,0,1,0,0,0,1,1,30735.0,9,5,9,9_0,27000.0,0,17000.0,10000,4,5,777.6,40.0,3.3,0,1,2744.5763586666712,1728.0665961975335,1016.5097624691374 8805,6296,6295,19,19,76,111,74,60,0,4409,0,0,0,0,0,3,0,1,1.0,3656.31156018,0,0,30701.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,30701.0,9,5,9,9_0,1000.0,0,0.0,1000,22,22,0.0,0.0,0.0,0,0,101.65097624691374,0.0,101.65097624691374 8806,6304,6303,17,20,69,111,75,70,0,4421,0,0,0,0,0,4,0,2,1.5,2979.55198093,1560,0,44668.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,29778.6666667,9,5,9,9_0,2000.0,0,0.0,2000,7,19,0.0,0.0,0.0,0,0,203.30195249382749,0.0,203.30195249382749 -8807,6307,6306,7,10,36,111,38,10,0,4424,0,0,112,0,2,5,2,4,2.1,2953.18833817,1143,0,63430.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,30204.761904799998,9,5,9,9_0,11000.0,0,0.0,11000,2,9,0.0,33.5,0.0,1,0,1118.1607387160511,0.0,1118.1607387160511 +8807,6307,6306,7,10,36,111,38,10,0,4424,0,0,112,0,2,5,2,4,2.1,2953.18833817,1143,0,63430.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,30204.7619048,9,5,9,9_0,11000.0,0,0.0,11000,2,9,0.0,33.5,0.0,1,0,1118.1607387160511,0.0,1118.1607387160511 8808,6326,6325,15,15,37,111,37,12,0,4451,0,250,140,0,2,5,2,4,2.1,1969.80335867,7294,0,76116.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,36245.7142857,9,5,9,9_0,40000.0,0,35000.0,5000,8,8,178.0,31.75,3.3,0,1,4066.0390498765496,3557.784168641981,508.2548812345687 8809,6335,6334,5,7,36,300,46,20,0,4464,0,0,200,0,2,4,2,4,2.1,2241.23421683,0,0,76005.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,36192.8571429,9,5,9,9_1,47500.0,0,30000.0,17500,7,7,178.9,22.5,3.3,0,1,4889.139311210133,3087.8774597116635,1801.2618514984702 8810,6338,6337,19,20,45,111,53,50,0,4468,0,680,30,0,2,6,2,4,2.1,1870.58182318,0,0,61117.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,29103.3333333,9,5,9,9_0,800.0,0,800.0,0,15,15,0.0,16.6666666667,1.1,0,0,81.32078099753099,81.32078099753099,0.0 @@ -8823,7 +8823,7 @@ 8821,6465,6464,2,4,63,120,74,10,0,466,0,0,0,0,0,5,0,2,1.5,1695.36646679,1404,0,54754.0,5,1,0,0,3,3,0,0,1,0,0,0,0,0,1,2,36502.6666667,9,5,9,9_1,20000.0,0,20000.0,0,3,4,0.0,0.0,0.0,0,0,2058.584973141109,2058.584973141109,0.0 8822,6496,6495,7,7,48,212,34,31,0,4702,0,450,0,0,2,4,0,2,1.5,1988.3149719,3269,0,46916.0,1,1,3,0,3,3,1,1,1,0,0,0,0,0,0,3,31277.3333333,9,5,9,9_1,45781.0,0,45781.0,0,4,7,337.9,80.0,3.3,0,1,4712.203932768655,4712.203932768655,0.0 8823,6497,6496,1,4,42,221,47,42,0,4703,0,700,0,0,1,5,0,1,1.0,4944.35426347,1561,0,31000.0,1,2,1,1,1,1,0,1,0,1,0,0,0,0,0,1,31000.0,9,5,9,9_0,3000.0,0,3000.0,0,3,4,120.0,60.0,3.3,0,1,304.95292874074124,304.95292874074124,0.0 -8824,6503,6502,2,14,52,111,43,33,0,471,0,320,190,0,3,5,1,3,2.0,1618.1235010999999,2665,0,58572.0,1,1,8,6,4,3,0,1,0,0,1,0,0,0,1,2,29286.0,9,5,9,9_0,32536.0,0,17922.0,14614,1,15,168.3,31.6666666667,3.3,0,1,3307.3161631695857,1821.7887962971881,1485.5273668723976 +8824,6503,6502,2,14,52,111,43,33,0,471,0,320,190,0,3,5,1,3,2.0,1618.1235011,2665,0,58572.0,1,1,8,6,4,3,0,1,0,0,1,0,0,0,1,2,29286.0,9,5,9,9_0,32536.0,0,17922.0,14614,1,15,168.3,31.6666666667,3.3,0,1,3307.3161631695857,1821.7887962971881,1485.5273668723976 8825,6509,6508,0,0,71,111,75,33,1,472,0,150,0,0,1,5,1,2,1.5,1882.31555641,0,20318,54261.0,5,1,9,7,2,1,0,1,0,0,0,1,0,0,0,1,36174.0,9,5,9,9_0,11.0,0,11.0,0,1,1,0.0,0.0,0.0,0,0,1.118160738716051,1.118160738716051,0.0 8826,6517,6516,4,5,34,300,21,50,0,473,0,400,0,0,2,7,2,4,2.1,2624.405859,2080,0,74480.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,1,1,35466.6666667,9,5,9,9_1,36000.0,0,28000.0,8000,2,2,226.8,30.0,0.0,0,1,3705.4529516539965,2882.0189623975525,823.4339892564435 8827,6519,6518,11,15,40,112,38,12,0,4733,0,996,0,0,2,6,2,4,2.1,2006.68571589,9164,0,70032.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,33348.5714286,9,5,9,9_0,15000.0,0,15000.0,0,4,11,87.5,15.0,3.3,1,1,1524.764643703706,1524.764643703706,0.0 @@ -8840,7 +8840,7 @@ 8838,6617,6616,16,16,55,111,56,43,0,487,0,0,0,0,2,3,0,2,1.5,2302.24872428,0,0,44550.0,1,4,9,7,3,1,0,0,0,0,0,1,0,0,0,1,29700.0,9,5,9,9_0,20000.0,0,20000.0,0,10,15,0.0,20.0,1.1,0,0,2033.0195249382748,2033.0195249382748,0.0 8839,6618,6617,12,12,68,400,74,20,0,4870,0,0,0,0,0,5,0,2,1.5,2032.34026978,1612,0,45986.0,5,1,0,0,5,1,0,0,1,0,0,0,0,0,0,1,30657.3333333,9,5,9,9_1,45343.0,0,45343.0,0,11,12,0.0,0.0,0.0,0,0,4667.120921856866,4667.120921856866,0.0 8840,6639,6638,4,4,75,112,13,50,0,4901,0,0,0,0,1,8,0,1,1.0,2379.34068262,0,0,29256.0,1,1,10,0,1,1,0,0,1,0,0,0,0,0,0,1,29256.0,9,5,9,9_1,20000.0,0,20000.0,0,2,3,0.0,0.0,0.0,0,0,2058.584973141109,2058.584973141109,0.0 -8841,6661,6660,2,6,31,120,46,20,0,4937,0,199998,0,0,2,4,2,4,2.1,2270.79750718,3971,0,77023.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,36677.619047600005,9,5,9,9_1,40000.0,0,40000.0,0,2,6,484.0,75.0,3.3,0,1,4117.169946282218,4117.169946282218,0.0 +8841,6661,6660,2,6,31,120,46,20,0,4937,0,199998,0,0,2,4,2,4,2.1,2270.79750718,3971,0,77023.0,1,3,0,0,4,2,0,1,1,0,0,0,0,0,0,2,36677.6190476,9,5,9,9_1,40000.0,0,40000.0,0,2,6,484.0,75.0,3.3,0,1,4117.169946282218,4117.169946282218,0.0 8842,6667,6666,0,0,53,111,62,60,0,4943,0,0,0,0,1,3,0,2,1.5,3303.60088919,0,0,44280.0,1,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,29520.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,30.0,1.1,0,0,0.0,0.0,0.0 8843,6676,6675,4,4,64,111,77,70,0,4959,0,0,0,0,0,5,0,2,1.5,1421.28649554,1263,0,47173.0,5,2,7,5,3,2,0,0,0,0,1,0,0,0,1,1,31448.6666667,9,5,9,9_0,27000.0,0,14000.0,13000,3,3,0.0,0.0,0.0,0,0,2744.5763586666712,1423.1136674567924,1321.4626912098788 8844,6699,6698,5,5,85,111,75,20,0,499,0,0,0,0,0,6,0,1,1.0,2365.92558666,2340,0,30855.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,1,0,30855.0,9,5,9,9_0,12000.0,0,0.0,12000,5,5,0.0,0.0,0.0,0,0,1219.811714962965,0.0,1219.811714962965 @@ -8849,7 +8849,7 @@ 8847,6741,6740,4,11,46,120,47,42,0,504,0,482,0,0,4,5,2,4,2.5,1237.06102339,2600,0,75110.0,1,2,0,0,4,4,0,1,1,0,0,0,0,0,0,4,30044.0,9,5,9,9_1,4000.0,0,4000.0,0,5,13,81.5,38.3333333333,3.3,0,1,411.71699462822176,411.71699462822176,0.0 8848,6758,6757,6,10,51,111,37,30,0,5066,0,0,0,0,2,7,3,5,2.6,1719.64658385,0,0,91650.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,35250.0,9,5,9,9_0,10000.0,0,0.0,10000,7,8,66.0,50.0,3.3,0,1,1016.5097624691374,0.0,1016.5097624691374 8849,6761,6760,2,2,73,111,75,50,1,5070,0,0,0,0,1,5,1,4,2.3,1769.78059279,0,20534,78854.0,5,1,10,8,5,1,0,0,0,0,0,0,1,0,0,1,34284.3478261,9,5,9,9_0,6859.0,0,6859.0,0,1,1,0.0,0.0,0.0,1,0,697.2240460775813,697.2240460775813,0.0 -8850,6764,6763,7,10,32,112,13,31,0,5073,0,200,0,0,2,6,1,3,1.8,5646.53391543,0,0,55363.0,1,2,8,0,4,2,1,0,1,0,0,0,0,0,0,2,30757.222222200002,9,5,9,9_1,25000.0,0,25000.0,0,4,9,251.6,26.0,3.3,0,1,2573.2312164263863,2573.2312164263863,0.0 +8850,6764,6763,7,10,32,112,13,31,0,5073,0,200,0,0,2,6,1,3,1.8,5646.53391543,0,0,55363.0,1,2,8,0,4,2,1,0,1,0,0,0,0,0,0,2,30757.2222222,9,5,9,9_1,25000.0,0,25000.0,0,4,9,251.6,26.0,3.3,0,1,2573.2312164263863,2573.2312164263863,0.0 8851,6785,6784,9,10,65,112,75,50,0,5100,0,0,0,0,0,5,0,2,1.5,1634.69155987,2037,0,45950.0,5,1,8,0,3,3,0,0,1,0,0,0,0,0,3,0,30633.3333333,9,5,9,9_1,5000.0,0,0.0,5000,14,14,0.0,0.0,0.0,0,0,514.6462432852773,0.0,514.6462432852773 8852,6792,6791,7,7,45,112,37,20,0,5112,0,300,0,0,2,4,1,3,1.8,2164.36508365,3640,0,65279.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,0,2,36266.1111111,9,5,9,9_1,37500.0,0,37500.0,0,5,5,183.0,63.3333333333,3.3,0,1,3859.8468246395796,3859.8468246395796,0.0 8853,6796,6795,20,20,53,120,47,50,0,512,0,200,0,0,2,4,1,3,2.0,3053.49335538,0,0,61545.0,1,1,0,2,4,2,0,1,0,1,0,0,0,0,0,2,30772.5,9,5,9,9_0,37000.0,0,37000.0,0,19,19,0.0,3.33333333333,0.0,0,0,3761.0861211358083,3761.0861211358083,0.0 @@ -8861,19 +8861,19 @@ 8859,6846,6845,3,3,70,111,72,70,0,5185,0,0,0,0,1,5,0,2,1.5,3230.49391707,0,0,51940.0,5,1,8,7,3,2,1,0,0,0,0,1,0,0,0,2,34626.6666667,9,5,9,9_0,0.0,0,0.0,0,3,3,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8860,6851,6850,8,9,74,111,75,33,0,5190,0,0,0,0,0,3,0,1,1.0,3115.80464259,1800,0,30849.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,30849.0,9,5,9,9_0,2000.0,0,0.0,2000,10,10,0.0,0.0,0.0,0,0,203.30195249382749,0.0,203.30195249382749 8861,6862,6861,3,3,72,111,74,70,0,5202,0,0,0,0,1,4,1,3,2.0,1953.27784777,2989,0,62749.0,5,1,9,7,4,2,0,0,0,0,0,1,0,0,1,1,31374.5,9,5,9,9_0,16130.0,0,16130.0,0,3,3,0.0,0.0,0.0,0,1,1639.6302468627184,1639.6302468627184,0.0 -8862,6868,6867,6,8,57,120,42,10,0,5211,0,390,0,0,2,6,3,5,2.6,1916.30678528,2995,0,95856.0,1,2,0,2,4,2,0,1,0,1,0,0,0,0,0,2,36867.692307699996,9,5,9,9_0,30000.0,0,30000.0,0,7,8,41.0,16.8,3.3,1,1,3049.529287407412,3049.529287407412,0.0 +8862,6868,6867,6,8,57,120,42,10,0,5211,0,390,0,0,2,6,3,5,2.6,1916.30678528,2995,0,95856.0,1,2,0,2,4,2,0,1,0,1,0,0,0,0,0,2,36867.6923077,9,5,9,9_0,30000.0,0,30000.0,0,7,8,41.0,16.8,3.3,1,1,3049.529287407412,3049.529287407412,0.0 8863,6870,6869,0,0,54,111,23,50,0,5214,0,0,0,0,2,4,1,3,2.0,2378.08681649,0,0,60271.0,1,2,10,8,4,0,0,0,0,0,0,0,1,0,0,0,30135.5,9,5,9,9_0,0.0,0,0.0,0,0,0,47.3,43.3333333333,1.1,0,0,0.0,0.0,0.0 8864,6872,6871,5,11,50,112,48,41,0,522,0,270,0,0,2,5,0,2,1.5,1799.2062221,2600,0,44580.0,1,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,29720.0,9,5,9,9_1,19000.0,0,16000.0,3000,5,10,135.5,30.0,3.3,0,1,1955.6557244840535,1646.867978512887,308.7877459711663 8865,6883,6882,1,5,59,112,45,41,0,5233,0,0,0,0,1,5,0,2,1.5,2128.72665526,3632,0,47955.0,1,2,9,2,3,2,0,0,0,1,0,0,0,0,1,1,31970.0,9,5,9,9_0,21000.0,0,20000.0,1000,13,0,0.0,0.0,0.0,0,1,2134.6705011851886,2033.0195249382748,101.65097624691374 -8866,6899,6898,1,1,50,112,33,41,0,5251,0,1150,0,0,3,5,1,3,2.0,1829.74308781,4680,0,74163.0,1,1,10,3,4,2,0,1,0,1,0,0,0,0,1,1,37081.5,9,5,9,9_0,19865.0,0,18625.0,1240,2,2,240.3,166.66666666700002,5.59,0,1,2019.2966431449415,1893.2494325987684,126.04721054617305 +8866,6899,6898,1,1,50,112,33,41,0,5251,0,1150,0,0,3,5,1,3,2.0,1829.74308781,4680,0,74163.0,1,1,10,3,4,2,0,1,0,1,0,0,0,0,1,1,37081.5,9,5,9,9_0,19865.0,0,18625.0,1240,2,2,240.3,166.666666667,5.59,0,1,2019.2966431449415,1893.2494325987684,126.04721054617305 8867,6906,6905,21,35,59,112,33,10,0,5258,0,0,30,0,1,4,0,2,1.5,1688.87906812,0,0,44436.0,1,1,9,2,3,2,0,0,0,1,0,0,0,0,2,0,29624.0,9,5,9,9_0,0.0,0,0.0,0,6,26,0.0,7.0,1.1,0,0,0.0,0.0,0.0 8868,6917,6916,0,0,32,111,37,10,0,5270,0,0,0,876,1,2,0,1,1.0,3782.5576835,0,0,34889.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,34889.0,9,5,9,9_0,0.0,0,0.0,0,0,0,132.5,150.0,5.57,0,0,0.0,0.0,0.0 8869,6923,6922,4,19,70,400,74,50,0,528,0,0,0,0,0,4,0,2,1.5,2637.05215785,4589,0,47258.0,5,1,0,0,3,5,0,0,1,0,0,0,0,0,5,0,31505.3333333,9,5,9,9_1,3500.0,0,0.0,3500,14,16,0.0,0.0,0.0,0,0,360.25237029969406,0.0,360.25237029969406 8870,6938,6937,10,10,43,111,43,20,0,5299,0,0,0,0,1,2,0,1,1.0,2472.88693242,1636,0,30987.0,1,1,9,7,1,1,1,0,0,0,0,1,0,0,0,1,30987.0,9,5,9,9_0,18625.0,0,18625.0,0,3,9,0.0,0.0,0.0,0,0,1893.2494325987684,1893.2494325987684,0.0 8871,6953,6952,10,10,42,112,48,31,0,532,0,150,0,0,2,4,2,4,2.1,3764.91097819,3588,0,62282.0,1,1,7,1,4,1,0,1,0,1,0,0,0,0,0,1,29658.0952381,9,5,9,9_0,15000.0,0,15000.0,0,6,10,26.7,33.75,2.2,0,0,1524.764643703706,1524.764643703706,0.0 -8872,6955,6954,2,2,80,111,74,50,0,5323,0,0,0,0,0,6,0,2,1.5,988.8142087269999,2196,0,44451.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,29634.0,9,5,9,9_0,15000.0,0,0.0,15000,3,3,0.0,0.0,0.0,0,0,1524.764643703706,0.0,1524.764643703706 +8872,6955,6954,2,2,80,111,74,50,0,5323,0,0,0,0,0,6,0,2,1.5,988.814208727,2196,0,44451.0,5,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,29634.0,9,5,9,9_0,15000.0,0,0.0,15000,3,3,0.0,0.0,0.0,0,0,1524.764643703706,0.0,1524.764643703706 8873,6958,6957,10,10,54,111,45,60,0,5326,0,0,0,0,2,5,1,3,2.0,2491.74123263,3069,0,72456.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,36228.0,9,5,9,9_0,15000.0,0,0.0,15000,8,10,70.5,53.3333333333,5.56,0,1,1524.764643703706,0.0,1524.764643703706 -8874,6959,6958,7,7,46,112,34,10,0,5328,0,200,250,0,2,5,1,3,1.8,976.7247321010001,3900,0,62247.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,1,1,34581.6666667,9,5,9,9_0,30009.0,0,17343.0,12666,6,7,0.0,23.3333333333,5.55,0,1,3050.4441461936344,1762.932881050225,1287.5112651434094 +8874,6959,6958,7,7,46,112,34,10,0,5328,0,200,250,0,2,5,1,3,1.8,976.724732101,3900,0,62247.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,1,1,34581.6666667,9,5,9,9_0,30009.0,0,17343.0,12666,6,7,0.0,23.3333333333,5.55,0,1,3050.4441461936344,1762.932881050225,1287.5112651434094 8875,6964,6963,2,11,55,111,43,33,0,5332,0,0,25,0,2,4,1,3,2.0,2671.96007418,0,0,73471.0,1,1,10,8,4,3,0,0,0,0,0,0,1,0,2,1,36735.5,9,5,9,9_0,5000.0,0,0.0,5000,6,10,214.9,83.3333333333,3.3,0,1,508.2548812345687,0.0,508.2548812345687 8876,6983,6982,2,3,78,111,74,70,0,5358,0,0,30,0,1,6,1,2,1.5,1276.61952024,2276,0,50243.0,5,1,9,7,2,2,0,1,0,0,0,1,0,0,1,1,33495.3333333,9,5,9,9_0,21000.0,0,15000.0,6000,3,3,0.0,0.0,0.0,0,0,2134.6705011851886,1524.764643703706,609.9058574814825 8877,6993,6992,3,3,30,111,38,12,0,5374,0,199998,0,680,2,3,0,2,1.5,2856.89143934,1984,0,54398.0,1,3,9,7,3,2,1,1,0,0,0,1,0,0,0,2,36265.3333333,9,5,9,9_0,6859.0,0,6859.0,0,1,3,285.0,105.0,3.3,0,1,697.2240460775813,697.2240460775813,0.0 @@ -8881,7 +8881,7 @@ 8879,6998,6997,0,1,56,111,48,10,0,5380,0,280,0,0,2,5,0,2,1.5,1637.39579236,0,0,55126.0,1,3,8,6,3,2,1,0,0,0,1,0,0,0,0,2,36750.6666667,9,5,9,9_0,11000.0,0,11000.0,0,1,1,0.0,120.0,3.3,0,1,1118.1607387160511,1118.1607387160511,0.0 8880,7035,7034,2,2,37,112,64,43,0,5432,0,700,0,0,2,6,0,2,1.5,2740.59894674,6032,0,45073.0,1,2,6,0,3,2,0,1,1,0,0,0,0,0,0,2,30048.6666667,9,5,9,9_1,70000.0,0,70000.0,0,3,3,0.0,10.0,3.3,0,1,7205.047405993881,7205.047405993881,0.0 8881,7045,7044,2,8,61,111,77,50,0,5445,0,30,0,0,2,4,1,3,2.0,3644.94827928,3120,0,62946.0,5,1,6,5,4,3,0,1,0,0,1,0,0,0,1,2,31473.0,9,5,9,9_0,3500.0,0,3500.0,0,7,7,80.5,22.6666666667,0.0,0,1,355.7784168641981,355.7784168641981,0.0 -8882,7050,7049,0,0,65,211,74,20,0,5450,0,0,0,0,0,4,0,2,1.5,919.8364604139999,0,0,55071.0,5,1,3,4,3,0,0,0,0,0,1,0,0,0,0,0,36714.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +8882,7050,7049,0,0,65,211,74,20,0,5450,0,0,0,0,0,4,0,2,1.5,919.836460414,0,0,55071.0,5,1,3,4,3,0,0,0,0,0,1,0,0,0,0,0,36714.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8883,7051,7050,7,7,72,112,74,30,0,5451,0,0,0,0,0,5,0,2,1.5,1047.71364744,0,0,48512.0,5,1,9,2,3,2,0,0,0,1,0,0,0,0,2,0,32341.3333333,9,5,9,9_0,15000.0,0,0.0,15000,4,8,0.0,0.0,0.0,0,0,1524.764643703706,0.0,1524.764643703706 8884,7053,7052,0,12,48,111,37,31,0,5453,0,0,800,855,1,4,0,1,1.0,2670.56434892,3380,0,31707.0,1,3,9,7,1,2,1,1,0,0,0,1,0,0,1,1,31707.0,9,5,9,9_0,15000.0,0,15000.0,0,11,12,44.5,40.0,3.3,0,1,1524.764643703706,1524.764643703706,0.0 8885,7066,7065,15,15,65,112,74,20,0,5475,0,0,0,0,0,9,0,2,1.5,1149.19719459,4915,0,49875.0,5,1,4,0,3,2,0,0,1,0,0,0,0,0,2,0,33250.0,9,5,9,9_1,10000.0,0,0.0,10000,6,13,0.0,0.0,0.0,0,0,1029.2924865705545,0.0,1029.2924865705545 @@ -8896,7 +8896,7 @@ 8894,7108,7107,2,6,57,111,47,50,0,5526,0,450,0,0,2,5,0,2,1.5,1381.32361745,0,0,54716.0,1,1,6,4,3,2,0,1,0,0,1,0,0,0,0,2,36477.3333333,9,5,9,9_0,12000.0,0,12000.0,0,2,6,50.8,27.5,3.3,1,1,1219.811714962965,1219.811714962965,0.0 8895,7120,7119,5,23,37,111,23,31,0,5543,0,200,0,0,2,7,4,6,2.7,2968.55408825,0,0,78910.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,29225.9259259,9,5,9,9_0,55000.0,0,40000.0,15000,4,11,74.0,38.0,3.3,0,1,5590.803693580257,4066.0390498765496,1524.764643703706 8896,7135,7134,10,14,59,112,46,41,0,5559,0,340,0,0,1,5,0,2,1.5,1704.68225008,7175,0,54477.0,1,1,9,0,3,2,0,0,1,0,0,0,0,0,0,2,36318.0,9,5,9,9_1,20000.0,0,20000.0,0,6,13,0.0,0.0,0.0,0,0,2058.584973141109,2058.584973141109,0.0 -8897,7142,7141,7,7,79,111,78,70,0,5566,0,0,0,0,0,6,0,2,1.5,2258.7516143000003,0,0,44236.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,29490.6666667,9,5,9,9_0,12500.0,0,12500.0,0,5,5,0.0,0.0,0.0,0,0,1270.6372030864218,1270.6372030864218,0.0 +8897,7142,7141,7,7,79,111,78,70,0,5566,0,0,0,0,0,6,0,2,1.5,2258.7516143,0,0,44236.0,5,1,6,5,3,1,0,0,0,0,1,0,0,0,0,1,29490.6666667,9,5,9,9_0,12500.0,0,12500.0,0,5,5,0.0,0.0,0.0,0,0,1270.6372030864218,1270.6372030864218,0.0 8898,7144,7143,6,11,43,111,34,31,0,5568,0,0,200,0,2,5,1,3,1.8,2374.68739447,1504,0,52884.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,29380.0,9,5,9,9_0,20000.0,0,0.0,20000,10,10,126.0,49.3333333333,3.3,0,1,2033.0195249382748,0.0,2033.0195249382748 8899,7149,7148,3,5,77,111,74,20,0,5578,0,0,0,0,0,6,0,2,1.5,1381.00306182,2048,0,45300.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,0,2,30200.0,9,5,9,9_0,13000.0,0,13000.0,0,4,6,0.0,0.0,0.0,0,0,1321.4626912098788,1321.4626912098788,0.0 8900,7154,7153,5,13,38,300,35,31,0,5583,0,72,0,0,2,7,0,2,1.5,2654.03810341,2340,0,45516.0,1,1,0,0,3,1,0,1,1,0,0,0,0,0,0,1,30344.0,9,5,9,9_1,10000.0,0,10000.0,0,11,11,0.0,0.0,0.0,0,0,1029.2924865705545,1029.2924865705545,0.0 @@ -8913,7 +8913,7 @@ 8911,7275,7274,6,6,46,221,46,41,0,5747,0,60,25,0,2,4,1,3,2.0,3613.76325895,0,0,69636.0,1,2,1,2,4,3,1,1,0,1,0,0,0,0,1,2,34818.0,9,5,9,9_0,14000.0,0,14000.0,0,6,6,0.0,22.0,3.3,0,1,1423.1136674567924,1423.1136674567924,0.0 8912,7282,7281,14,14,74,112,75,43,0,5755,0,0,0,0,0,4,0,2,1.5,1669.59465365,2083,0,44196.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,1,1,29464.0,9,5,9,9_1,8200.0,0,2200.0,6000,13,13,0.0,0.0,0.0,0,0,844.0198389878548,226.44434704552197,617.5754919423326 8913,7290,7289,3,6,62,111,75,42,0,5771,0,0,0,0,0,5,0,2,1.5,1414.56431472,0,0,44371.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,0,2,29580.6666667,9,5,9,9_0,25000.0,0,25000.0,0,5,5,0.0,0.0,0.0,0,0,2541.2744061728436,2541.2744061728436,0.0 -8914,7297,7296,4,10,45,112,31,10,0,5782,0,56,0,0,2,6,2,4,2.1,1443.14195711,3979,0,61531.0,1,2,7,0,4,2,1,0,1,0,0,0,0,0,0,2,29300.476190499998,9,5,9,9_1,10000.0,0,10000.0,0,7,8,274.9,56.6666666667,3.31,0,1,1029.2924865705545,1029.2924865705545,0.0 +8914,7297,7296,4,10,45,112,31,10,0,5782,0,56,0,0,2,6,2,4,2.1,1443.14195711,3979,0,61531.0,1,2,7,0,4,2,1,0,1,0,0,0,0,0,0,2,29300.4761905,9,5,9,9_1,10000.0,0,10000.0,0,7,8,274.9,56.6666666667,3.31,0,1,1029.2924865705545,1029.2924865705545,0.0 8915,7323,7322,3,3,65,111,75,20,0,5815,0,0,0,0,0,11,0,1,1.0,1744.60697477,0,0,29110.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,29110.0,9,5,9,9_0,10000.0,0,0.0,10000,3,3,0.0,0.0,0.0,0,0,1016.5097624691374,0.0,1016.5097624691374 8916,7324,7323,5,5,67,300,74,20,0,5816,0,0,0,0,0,6,0,2,1.5,1772.97929729,6484,0,53780.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,35853.3333333,9,5,9,9_1,15000.0,0,0.0,15000,7,7,0.0,0.0,0.0,0,0,1543.9387298558318,0.0,1543.9387298558318 8917,7338,7337,0,0,60,111,52,31,0,5839,0,0,0,0,1,3,0,2,1.5,3238.37639961,2500,0,45753.0,1,1,9,7,3,0,0,0,0,0,0,1,0,0,0,0,30502.0,9,5,9,9_0,5000.0,0,0.0,5000,1,1,0.0,14.0,3.3,0,0,508.2548812345687,0.0,508.2548812345687 @@ -8921,25 +8921,25 @@ 8919,7356,7355,0,0,79,111,74,41,0,5861,0,0,0,647,0,4,0,2,1.5,3085.98689216,0,0,49590.0,5,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,33060.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 8920,7358,7357,2,2,42,112,65,41,0,5863,0,600,60,0,2,6,2,4,2.1,2651.81665987,3434,0,63550.0,1,2,9,3,4,2,0,1,0,1,0,0,0,0,1,1,30261.9047619,9,5,9,9_0,43609.0,0,40000.0,3609,1,1,0.0,0.0,0.0,1,1,4432.897423151661,4066.0390498765496,366.8583732751117 8921,7360,7359,1,1,39,111,38,10,2,5866,0,300,0,0,2,5,0,2,1.5,2011.39782106,2237,16000,46495.0,1,1,10,8,3,1,0,1,0,0,0,0,1,0,0,1,30996.6666667,9,5,9,9_0,18625.0,0,18625.0,0,3,3,0.0,0.0,0.0,0,1,1893.2494325987684,1893.2494325987684,0.0 -8922,7364,7363,4,5,37,111,52,50,0,5874,0,500,0,0,2,6,2,4,2.3,1566.39545368,7280,0,67789.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,1,1,29473.478260900003,9,5,9,9_0,27000.0,0,25000.0,2000,2,5,0.0,10.0,3.3,0,0,2744.5763586666712,2541.2744061728436,203.30195249382749 +8922,7364,7363,4,5,37,111,52,50,0,5874,0,500,0,0,2,6,2,4,2.3,1566.39545368,7280,0,67789.0,1,2,7,6,4,2,0,1,0,0,1,0,0,0,1,1,29473.4782609,9,5,9,9_0,27000.0,0,25000.0,2000,2,5,0.0,10.0,3.3,0,0,2744.5763586666712,2541.2744061728436,203.30195249382749 8923,7381,7380,3,4,81,111,72,70,0,5897,0,100,0,0,0,4,0,2,1.5,2844.69789421,0,0,43730.0,5,4,8,6,3,2,1,1,0,0,1,0,0,0,1,1,29153.3333333,9,5,9,9_0,21000.0,0,15000.0,6000,3,3,0.0,0.0,0.0,0,0,2134.6705011851886,1524.764643703706,609.9058574814825 8924,7390,7389,12,12,73,112,72,50,0,5907,0,0,0,0,0,5,0,2,1.5,2987.16350723,1560,0,44519.0,5,1,5,0,3,2,0,0,1,0,0,0,0,0,0,2,29679.3333333,9,5,9,9_1,5000.0,0,5000.0,0,10,13,0.0,0.0,0.0,0,0,514.6462432852773,514.6462432852773,0.0 8925,7392,7391,1,3,39,120,46,50,2,5910,200,500,0,0,2,4,1,3,1.8,1751.08252671,1560,23000,60495.0,1,2,0,0,4,2,0,1,1,0,0,0,0,0,0,1,33608.3333333,9,5,9,9_1,70000.0,0,40000.0,30000,3,4,139.0,20.6666666667,3.3,0,1,7205.047405993881,4117.169946282218,3087.8774597116635 8926,7429,7428,0,0,25,111,38,12,0,5966,0,0,0,412,1,1,0,1,1.0,3398.47334985,0,0,33358.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,33358.0,9,5,9,9_0,0.0,0,0.0,0,0,0,35.5,60.0,5.56,0,0,0.0,0.0,0.0 -8927,7434,7433,1,1,34,111,33,10,0,5972,0,20,0,0,2,5,0,2,1.5,1439.2524220999999,6169,0,49492.0,1,2,7,6,3,2,0,0,0,0,1,0,0,0,1,1,32994.6666667,9,5,9,9_0,14000.0,0,14000.0,0,6,0,31.6,20.0,1.1,0,0,1423.1136674567924,1423.1136674567924,0.0 +8927,7434,7433,1,1,34,111,33,10,0,5972,0,20,0,0,2,5,0,2,1.5,1439.2524221,6169,0,49492.0,1,2,7,6,3,2,0,0,0,0,1,0,0,0,1,1,32994.6666667,9,5,9,9_0,14000.0,0,14000.0,0,6,0,31.6,20.0,1.1,0,0,1423.1136674567924,1423.1136674567924,0.0 8928,7448,7447,16,16,67,112,75,60,0,5988,0,0,0,0,0,3,0,2,1.5,1415.79919004,3120,0,45479.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,30319.3333333,9,5,9,9_1,32384.0,0,20000.0,12384,16,16,0.0,0.0,0.0,0,0,3333.260788510084,2058.584973141109,1274.6758153689748 8929,7456,7455,5,13,51,400,47,60,0,6,0,650,50,0,3,6,1,3,2.0,2524.45313029,7316,0,64821.0,1,2,0,0,4,3,0,1,1,0,0,0,0,0,1,2,32410.5,9,5,9,9_1,7000.0,0,7000.0,0,5,13,55.5,21.3333333333,3.3,0,1,720.5047405993881,720.5047405993881,0.0 8930,7478,7477,1,5,61,111,75,30,2,6028,0,0,0,0,0,5,0,1,1.0,2172.26634986,0,7900,30818.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,0,1,30818.0,9,5,9,9_0,24000.0,0,24000.0,0,6,6,0.0,0.0,0.0,0,0,2439.62342992593,2439.62342992593,0.0 8931,7487,7486,4,4,33,111,46,31,0,6041,0,0,100,0,2,3,0,2,1.5,3543.32792621,0,0,45211.0,1,2,10,8,3,1,0,1,0,0,0,0,1,0,1,0,30140.6666667,9,5,9,9_0,15000.0,0,0.0,15000,5,5,76.0,70.0,5.57,0,1,1524.764643703706,0.0,1524.764643703706 -8932,7508,7507,5,15,54,120,62,50,0,607,0,200,0,0,2,5,1,3,2.0,1186.59373127,6199,0,71068.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,35534.0,9,5,9,9_1,39000.0,0,35000.0,4000,5,8,0.0,6.666666666669999,0.0,0,1,4014.2406976251627,3602.5237029969403,411.71699462822176 +8932,7508,7507,5,15,54,120,62,50,0,607,0,200,0,0,2,5,1,3,2.0,1186.59373127,6199,0,71068.0,1,1,0,0,4,2,0,1,1,0,0,0,0,0,1,1,35534.0,9,5,9,9_1,39000.0,0,35000.0,4000,5,8,0.0,6.66666666667,0.0,0,1,4014.2406976251627,3602.5237029969403,411.71699462822176 8933,7526,7525,0,16,44,112,48,50,0,6090,0,0,0,0,2,4,1,3,1.8,5607.80375801,0,0,60377.0,1,2,9,2,4,3,0,1,0,1,0,0,0,0,1,2,33542.7777778,9,5,9,9_0,12000.0,0,12000.0,0,6,16,3294.5,61.0,3.3,0,1,1219.811714962965,1219.811714962965,0.0 8934,7527,7526,0,6,48,111,48,50,2,6092,0,0,0,0,1,5,0,2,1.5,5008.19896509,9466,10000,47072.0,1,3,6,4,3,1,0,0,0,0,1,0,0,0,0,1,31381.3333333,9,5,9,9_0,10000.0,0,10000.0,0,7,7,0.0,0.0,0.0,0,0,1016.5097624691374,1016.5097624691374,0.0 8935,7529,7528,2,2,64,112,77,60,0,6099,0,0,0,0,0,5,0,1,1.0,1665.49917328,0,0,29281.0,5,1,8,1,1,1,0,0,0,1,0,0,0,0,0,1,29281.0,9,5,9,9_0,20000.0,0,20000.0,0,3,3,0.0,0.0,0.0,0,0,2033.0195249382748,2033.0195249382748,0.0 8936,7531,7530,3,5,47,111,38,31,0,610,0,220,0,0,1,3,0,1,1.0,3715.25562171,0,0,29090.0,1,4,7,5,1,1,0,1,0,0,1,0,0,0,0,1,29090.0,9,5,9,9_0,20000.0,0,20000.0,0,4,4,18.0,20.0,3.3,0,1,2033.0195249382748,2033.0195249382748,0.0 -8937,7551,7550,2,2,47,111,37,50,0,6127,0,0,60,0,2,3,1,3,1.8,2192.23282175,0,0,63320.0,1,4,10,8,4,1,0,1,0,0,0,0,1,0,1,0,35177.77777780001,9,5,9,9_0,9500.0,0,0.0,9500,3,3,69.0,21.6666666667,3.3,0,1,965.6842743456806,0.0,965.6842743456806 +8937,7551,7550,2,2,47,111,37,50,0,6127,0,0,60,0,2,3,1,3,1.8,2192.23282175,0,0,63320.0,1,4,10,8,4,1,0,1,0,0,0,0,1,0,1,0,35177.7777778,9,5,9,9_0,9500.0,0,0.0,9500,3,3,69.0,21.6666666667,3.3,0,1,965.6842743456806,0.0,965.6842743456806 8938,7580,7579,13,14,77,111,74,20,0,6167,0,0,0,0,0,4,0,2,1.5,1558.99055225,0,0,45068.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,30045.3333333,9,5,9,9_0,8000.0,0,0.0,8000,13,13,0.0,0.0,0.0,0,0,813.2078099753099,0.0,813.2078099753099 8939,7586,7585,0,0,38,111,63,31,0,6176,0,0,0,440,1,2,0,1,1.0,4104.54482734,0,0,32089.0,1,3,8,6,1,0,0,0,0,0,1,0,0,0,0,0,32089.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -8940,7610,7609,8,14,57,112,42,20,0,6203,0,54,208,0,2,5,1,3,1.8,2502.17413216,1553,0,55556.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,1,1,30864.4444444,9,5,9,9_1,39000.0,0,35000.0,4000,5,8,0.0,6.666666666669999,0.0,0,1,4014.2406976251627,3602.5237029969403,411.71699462822176 +8940,7610,7609,8,14,57,112,42,20,0,6203,0,54,208,0,2,5,1,3,1.8,2502.17413216,1553,0,55556.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,1,1,30864.4444444,9,5,9,9_1,39000.0,0,35000.0,4000,5,8,0.0,6.66666666667,0.0,0,1,4014.2406976251627,3602.5237029969403,411.71699462822176 8941,7611,7610,13,13,58,111,54,60,0,6204,0,0,0,600,1,2,0,2,1.5,3578.85917505,0,0,51150.0,1,3,10,8,3,1,0,0,0,0,0,0,1,0,1,0,34100.0,9,5,9,9_0,5000.0,0,0.0,5000,9,12,0.0,0.0,0.0,0,0,508.2548812345687,0.0,508.2548812345687 8942,7624,7623,2,2,68,112,74,50,0,6219,0,0,0,0,0,7,0,2,1.5,1246.70766362,3389,0,45088.0,5,1,7,1,3,1,0,0,0,1,0,0,0,0,1,0,30058.6666667,9,5,9,9_0,16000.0,0,0.0,16000,3,3,0.0,0.0,0.0,0,0,1626.4156199506199,0.0,1626.4156199506199 8943,7629,7628,9,14,51,112,37,42,0,6225,0,0,130,0,2,7,0,2,1.5,1937.1705333,3141,0,45817.0,1,1,8,0,3,3,0,1,1,0,0,0,0,0,2,1,30544.6666667,9,5,9,9_1,45000.0,0,30000.0,15000,2,10,292.8,120.0,3.33,1,1,4631.816189567495,3087.8774597116635,1543.9387298558318 @@ -8952,9 +8952,9 @@ 8950,7715,7714,8,10,68,400,74,50,0,6355,0,0,0,0,0,6,0,2,1.5,2442.27736812,0,0,54474.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,36316.0,9,5,9,9_1,20000.0,0,20000.0,0,7,8,0.0,0.0,0.0,0,0,2058.584973141109,2058.584973141109,0.0 8951,7720,7719,6,7,54,111,52,71,0,6362,0,0,0,0,2,3,0,2,1.5,3181.16988641,5120,0,43971.0,1,4,9,7,3,2,0,0,0,0,0,1,0,0,0,2,29314.0,9,5,9,9_0,15000.0,0,15000.0,0,4,7,0.0,25.0,9.9,0,1,1524.764643703706,1524.764643703706,0.0 8952,7723,7722,8,8,37,111,42,31,0,6365,0,52,0,0,2,4,0,2,1.5,1380.80737592,3241,0,45320.0,1,2,5,4,3,2,0,1,0,0,1,0,0,0,0,2,30213.3333333,9,5,9,9_0,20000.0,0,20000.0,0,3,6,123.4,55.0,3.3,0,1,2033.0195249382748,2033.0195249382748,0.0 -8953,7724,7723,2,2,49,111,38,31,0,6366,0,29,0,0,2,6,2,4,2.3,2105.96093814,0,0,81707.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,0,2,35524.78260869999,9,5,9,9_0,16953.0,0,16953.0,0,0,0,365.0,66.6666666667,3.31,0,1,1723.2890003139287,1723.2890003139287,0.0 +8953,7724,7723,2,2,49,111,38,31,0,6366,0,29,0,0,2,6,2,4,2.3,2105.96093814,0,0,81707.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,0,2,35524.7826087,9,5,9,9_0,16953.0,0,16953.0,0,0,0,365.0,66.6666666667,3.31,0,1,1723.2890003139287,1723.2890003139287,0.0 8954,7734,7733,7,7,61,300,74,60,0,6384,0,0,0,0,0,4,0,2,1.5,2022.66285959,2444,0,44543.0,5,2,0,0,3,2,0,0,1,0,0,0,0,0,0,2,29695.3333333,9,5,9,9_1,10000.0,0,10000.0,0,2,7,0.0,0.0,0.0,0,0,1029.2924865705545,1029.2924865705545,0.0 -8955,7737,7736,5,8,43,111,54,12,0,6387,0,300,0,0,1,3,0,1,1.0,2711.3115966999994,2934,0,33048.0,1,2,8,6,1,1,0,1,0,0,1,0,0,0,0,1,33048.0,9,5,9,9_0,18625.0,0,18625.0,0,3,9,0.0,0.0,0.0,0,0,1893.2494325987684,1893.2494325987684,0.0 +8955,7737,7736,5,8,43,111,54,12,0,6387,0,300,0,0,1,3,0,1,1.0,2711.3115967,2934,0,33048.0,1,2,8,6,1,1,0,1,0,0,1,0,0,0,0,1,33048.0,9,5,9,9_0,18625.0,0,18625.0,0,3,9,0.0,0.0,0.0,0,0,1893.2494325987684,1893.2494325987684,0.0 8956,7759,7758,5,18,55,111,45,41,0,6414,0,0,80,584,2,5,2,3,2.0,2374.59053822,0,0,65012.0,1,3,10,8,2,2,0,1,0,0,0,0,1,0,2,0,32506.0,9,5,9,9_0,400.0,0,0.0,400,15,16,27.5,25.3333333333,1.1,0,0,40.660390498765494,0.0,40.660390498765494 8957,7766,7765,3,3,75,400,75,30,0,6429,0,0,0,0,0,5,0,2,1.5,1926.29792627,2530,0,45763.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,30508.6666667,9,5,9,9_1,8000.0,0,0.0,8000,4,4,0.0,0.0,0.0,0,0,823.4339892564435,0.0,823.4339892564435 8958,7768,7767,0,0,81,111,77,70,0,6430,0,0,0,0,0,2,0,1,1.0,2996.90119911,0,0,29169.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,29169.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -8962,8 +8962,8 @@ 8960,7792,7791,5,5,40,111,34,20,0,6463,0,0,0,550,1,2,0,1,1.0,5230.7056343,0,0,30650.0,1,3,6,5,1,1,0,0,0,0,1,0,0,0,1,0,30650.0,9,5,9,9_0,5000.0,0,0.0,5000,5,5,0.0,0.0,0.0,0,0,508.2548812345687,0.0,508.2548812345687 8961,7799,7798,1,7,61,112,65,50,2,6474,0,630,0,0,3,4,1,3,2.0,2441.61098349,4706,7500,61847.0,1,2,10,0,4,3,0,1,1,0,0,0,0,0,0,3,30923.5,9,5,9,9_1,48800.0,0,48800.0,0,7,8,114.5,22.0,3.3,0,1,5022.947334464306,5022.947334464306,0.0 8962,7822,7821,0,12,29,111,38,10,0,6508,0,800,200,729,1,4,0,2,1.5,3874.27510649,4524,0,48547.0,1,3,9,7,3,2,0,1,0,0,0,1,0,1,1,1,32364.6666667,9,5,9,9_0,15000.0,0,12000.0,3000,14,14,0.0,0.0,0.0,0,1,1524.764643703706,1219.811714962965,304.95292874074124 -8963,7829,7828,2,3,59,111,52,50,0,6518,0,200,0,0,2,4,0,2,1.5,1753.7377912999998,3190,0,45800.0,1,1,6,5,3,2,0,1,0,0,1,0,0,0,0,2,30533.3333333,9,5,9,9_0,13000.0,0,13000.0,0,4,4,171.2,55.0,3.3,0,1,1321.4626912098788,1321.4626912098788,0.0 -8964,7839,7838,3,25,52,400,62,50,0,6533,0,0,0,0,1,4,0,2,1.5,1827.2423502999998,7278,0,46804.0,1,1,0,0,3,5,0,0,1,0,0,0,0,0,3,2,31202.6666667,9,5,9,9_1,10000.0,0,10000.0,0,7,17,0.0,60.0,3.3,0,1,1029.2924865705545,1029.2924865705545,0.0 +8963,7829,7828,2,3,59,111,52,50,0,6518,0,200,0,0,2,4,0,2,1.5,1753.7377913,3190,0,45800.0,1,1,6,5,3,2,0,1,0,0,1,0,0,0,0,2,30533.3333333,9,5,9,9_0,13000.0,0,13000.0,0,4,4,171.2,55.0,3.3,0,1,1321.4626912098788,1321.4626912098788,0.0 +8964,7839,7838,3,25,52,400,62,50,0,6533,0,0,0,0,1,4,0,2,1.5,1827.2423503,7278,0,46804.0,1,1,0,0,3,5,0,0,1,0,0,0,0,0,3,2,31202.6666667,9,5,9,9_1,10000.0,0,10000.0,0,7,17,0.0,60.0,3.3,0,1,1029.2924865705545,1029.2924865705545,0.0 8965,7844,7843,6,6,88,111,75,41,0,6539,0,0,0,0,0,8,0,2,1.5,1799.32779669,0,0,49147.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,32764.6666667,9,5,9,9_0,2000.0,0,0.0,2000,8,8,0.0,0.0,0.0,0,0,203.30195249382749,0.0,203.30195249382749 8966,7855,7854,5,7,61,111,75,33,0,6558,0,0,0,0,1,5,1,2,1.5,1327.39559029,3276,0,46550.0,5,4,6,5,2,2,0,0,0,0,1,0,0,0,0,2,31033.3333333,9,5,9,9_0,30000.0,0,30000.0,0,6,6,0.0,0.0,0.0,0,1,3049.529287407412,3049.529287407412,0.0 8967,7857,7856,13,13,63,112,74,31,0,656,0,0,0,0,0,6,0,2,1.5,5928.04039021,0,0,43998.0,5,1,8,3,3,1,0,0,0,1,0,0,0,0,1,0,29332.0,9,5,9,9_0,10000.0,0,0.0,10000,15,15,0.0,0.0,0.0,0,0,1016.5097624691374,0.0,1016.5097624691374 @@ -8973,20 +8973,20 @@ 8971,7871,7870,3,4,55,111,45,31,0,6577,0,60,0,0,1,4,0,2,1.5,1704.3363423,1830,0,44284.0,1,1,6,5,3,2,0,1,0,0,1,0,0,0,0,2,29522.6666667,9,5,9,9_0,20000.0,0,20000.0,0,4,4,0.0,0.0,0.0,0,1,2033.0195249382748,2033.0195249382748,0.0 8972,7881,7880,6,6,54,120,43,33,0,6592,0,0,150,0,1,5,0,1,1.0,1442.26317837,1847,0,36985.0,1,2,0,1,1,1,0,1,0,1,0,0,0,0,1,0,36985.0,9,5,9,9_0,13000.0,0,0.0,13000,7,7,0.0,20.0,3.3,0,1,1321.4626912098788,0.0,1321.4626912098788 8973,7896,7895,8,8,42,112,23,12,0,6614,0,350,0,0,2,5,3,5,2.4,1833.13469133,6269,0,87208.0,1,3,9,0,4,1,0,1,1,0,0,0,0,0,0,1,36336.6666667,9,5,9,9_1,19000.0,0,19000.0,0,5,5,0.0,25.0,0.0,0,1,1955.6557244840535,1955.6557244840535,0.0 -8974,7908,7907,0,0,61,111,75,31,1,6627,0,0,0,0,0,5,0,1,1.0,3397.6639671999997,3744,27000,33208.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,33208.0,9,5,9,9_0,3728.0,0,3728.0,0,0,0,0.0,0.0,0.0,0,0,378.95483944849445,378.95483944849445,0.0 -8975,7919,7918,5,6,56,111,37,20,0,6637,0,0,100,1059,2,5,2,4,2.3,2002.44945081,2030,0,71952.0,1,3,8,7,4,1,0,1,0,0,0,1,0,0,1,0,31283.478260900003,9,5,9,9_0,50000.0,0,0.0,50000,11,11,0.0,0.0,0.0,0,1,5082.548812345687,0.0,5082.548812345687 +8974,7908,7907,0,0,61,111,75,31,1,6627,0,0,0,0,0,5,0,1,1.0,3397.6639672,3744,27000,33208.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,33208.0,9,5,9,9_0,3728.0,0,3728.0,0,0,0,0.0,0.0,0.0,0,0,378.95483944849445,378.95483944849445,0.0 +8975,7919,7918,5,6,56,111,37,20,0,6637,0,0,100,1059,2,5,2,4,2.3,2002.44945081,2030,0,71952.0,1,3,8,7,4,1,0,1,0,0,0,1,0,0,1,0,31283.4782609,9,5,9,9_0,50000.0,0,0.0,50000,11,11,0.0,0.0,0.0,0,1,5082.548812345687,0.0,5082.548812345687 8976,7933,7932,0,0,60,112,78,50,1,6654,0,300,0,0,1,8,1,2,1.5,4034.79090318,7177,11890,49133.0,5,1,7,0,2,2,0,0,1,0,0,0,0,0,0,2,32755.3333333,9,5,9,9_1,17393.0,0,17393.0,0,1,1,0.0,0.0,0.0,1,0,1790.2484218921654,1790.2484218921654,0.0 8977,7936,7935,1,5,30,111,46,50,0,6657,0,20,0,0,2,4,1,3,1.8,1264.81312768,0,0,53917.0,1,2,6,5,4,1,0,1,0,0,1,0,0,0,0,1,29953.8888889,9,5,9,9_0,6000.0,0,6000.0,0,2,6,0.0,12.0,3.3,0,1,609.9058574814825,609.9058574814825,0.0 8978,7948,7947,11,11,62,111,74,20,0,6670,0,0,0,0,0,5,0,2,1.5,2170.56606252,0,0,55752.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,37168.0,9,5,9,9_0,10000.0,0,0.0,10000,3,12,0.0,0.0,0.0,0,0,1016.5097624691374,0.0,1016.5097624691374 8979,7954,7953,1,1,61,111,75,50,1,6680,0,0,0,0,0,3,0,1,1.0,2039.22626262,0,15000,29270.0,5,2,7,5,1,1,0,0,0,0,1,0,0,0,0,1,29270.0,9,5,9,9_0,1900.0,0,1900.0,0,1,1,0.0,0.0,0.0,0,0,193.1368548691361,193.1368548691361,0.0 8980,7955,7954,0,4,45,111,37,10,0,6682,0,0,0,2379,1,4,2,3,1.8,6223.22571468,0,0,54115.0,1,3,10,8,2,1,1,0,0,0,0,0,1,0,1,0,30063.8888889,9,5,9,9_0,10237.0,0,0.0,10237,6,6,29.6,16.6666666667,3.3,0,1,1040.6010438396559,0.0,1040.6010438396559 -8981,7957,7956,3,3,53,112,63,50,0,6685,0,125,0,0,1,6,1,2,1.5,3138.0921575999996,1335,0,52851.0,1,1,8,0,2,1,0,1,1,0,0,0,0,0,0,1,35234.0,9,5,9,9_1,40000.0,0,40000.0,0,4,4,38.5,52.0,3.3,0,1,4117.169946282218,4117.169946282218,0.0 +8981,7957,7956,3,3,53,112,63,50,0,6685,0,125,0,0,1,6,1,2,1.5,3138.0921576,1335,0,52851.0,1,1,8,0,2,1,0,1,1,0,0,0,0,0,0,1,35234.0,9,5,9,9_1,40000.0,0,40000.0,0,4,4,38.5,52.0,3.3,0,1,4117.169946282218,4117.169946282218,0.0 8982,7965,7964,1,1,48,111,37,42,0,6699,0,200,0,0,1,6,0,1,1.0,2385.31060757,0,0,35217.0,1,1,8,7,1,1,0,1,0,0,0,1,0,0,0,1,35217.0,9,5,9,9_0,17891.0,0,17891.0,0,1,2,104.5,50.0,3.3,0,1,1818.6376160335337,1818.6376160335337,0.0 8983,7966,7965,7,12,29,111,48,31,0,670,0,0,600,0,1,2,0,1,1.0,3523.24214403,0,0,30725.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,30725.0,9,5,9,9_0,6000.0,0,0.0,6000,11,13,0.0,0.0,0.0,0,1,609.9058574814825,0.0,609.9058574814825 8984,7971,7970,11,11,86,211,74,60,0,6706,0,0,0,0,0,5,0,2,1.5,4028.66225385,0,0,43866.0,5,1,2,3,3,1,0,0,0,1,0,0,0,0,1,0,29244.0,9,5,9,9_0,10000.0,0,0.0,10000,9,10,0.0,0.0,0.0,0,0,1016.5097624691374,0.0,1016.5097624691374 8985,7998,7997,1,6,21,111,55,41,2,6742,0,160,0,56,1,1,0,1,1.0,3734.34688957,0,4500,31924.0,1,3,9,7,1,1,0,1,0,0,0,1,0,1,0,1,31924.0,9,5,9,9_0,20000.0,0,20000.0,0,3,6,0.0,0.0,0.0,0,1,2033.0195249382748,2033.0195249382748,0.0 8986,8002,8001,3,3,79,112,74,70,0,6751,0,0,0,0,0,6,0,2,1.5,2044.45752641,0,0,53414.0,5,4,7,0,3,1,0,0,1,0,0,0,0,0,1,0,35609.3333333,9,5,9,9_1,7500.0,0,0.0,7500,2,2,0.0,0.0,0.0,0,0,771.9693649279159,0.0,771.9693649279159 -8987,8022,8021,0,16,35,111,35,12,0,6781,0,0,0,0,2,3,1,3,1.8,1875.33175813,0,0,58783.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,32657.222222200002,9,5,9,9_0,5000.0,0,0.0,5000,5,10,59.5,26.6666666667,5.57,0,0,508.2548812345687,0.0,508.2548812345687 +8987,8022,8021,0,16,35,111,35,12,0,6781,0,0,0,0,2,3,1,3,1.8,1875.33175813,0,0,58783.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,32657.2222222,9,5,9,9_0,5000.0,0,0.0,5000,5,10,59.5,26.6666666667,5.57,0,0,508.2548812345687,0.0,508.2548812345687 8988,8034,8033,2,16,38,111,62,43,0,6798,0,150,0,295,1,2,0,1,1.0,6899.43583611,2836,0,29048.0,1,3,10,8,1,1,1,1,0,0,0,0,1,0,0,1,29048.0,9,5,9,9_0,18000.0,0,18000.0,0,8,9,139.0,100.0,3.3,0,1,1829.7175724444473,1829.7175724444473,0.0 8989,8045,8044,0,2,29,111,38,12,0,6811,0,800,0,398,1,2,0,1,1.0,2725.25902008,0,0,31997.0,1,3,6,4,1,2,1,1,0,0,1,0,0,0,0,2,31997.0,9,5,9,9_0,17000.0,0,17000.0,0,4,4,0.0,0.0,0.0,0,0,1728.0665961975335,1728.0665961975335,0.0 8990,8064,8063,1,1,35,111,33,31,1,6836,0,500,0,0,2,5,1,3,1.8,1628.47506311,3016,17700,60862.0,1,2,9,7,4,1,1,1,0,0,0,1,0,0,0,1,33812.2222222,9,5,9,9_0,30000.0,0,30000.0,0,2,3,0.0,0.0,0.0,0,1,3049.529287407412,3049.529287407412,0.0 @@ -8994,7 +8994,7 @@ 8992,8073,8072,5,7,43,112,33,31,0,6846,0,770,0,0,2,4,1,3,1.8,2226.53323625,5116,0,56167.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,31203.8888889,9,5,9,9_1,45625.0,0,45625.0,0,2,8,88.0,33.3333333333,3.33,0,1,4696.146969978155,4696.146969978155,0.0 8993,8083,8082,3,8,60,111,35,41,0,686,0,0,150,0,1,3,0,1,1.0,6412.10588971,3120,0,35880.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,35880.0,9,5,9,9_0,8000.0,0,0.0,8000,7,8,0.0,40.0,3.3,1,1,813.2078099753099,0.0,813.2078099753099 8994,8084,8083,3,3,41,111,54,20,0,6863,0,300,0,0,1,3,0,1,1.0,4276.23329593,1374,0,37211.0,1,3,4,4,1,1,0,1,0,0,1,0,0,0,0,1,37211.0,9,5,9,9_0,3000.0,0,3000.0,0,3,4,120.0,60.0,3.3,0,1,304.95292874074124,304.95292874074124,0.0 -8995,8090,8089,12,15,36,111,38,10,0,6870,0,250,0,0,1,4,1,2,1.3,3259.17970764,1957,0,40736.0,1,2,9,7,2,1,1,1,0,0,0,1,0,0,0,1,31335.384615400006,9,5,9,9_0,10000.0,0,10000.0,0,6,14,0.0,25.0,3.3,0,1,1016.5097624691374,1016.5097624691374,0.0 +8995,8090,8089,12,15,36,111,38,10,0,6870,0,250,0,0,1,4,1,2,1.3,3259.17970764,1957,0,40736.0,1,2,9,7,2,1,1,1,0,0,0,1,0,0,0,1,31335.3846154,9,5,9,9_0,10000.0,0,10000.0,0,6,14,0.0,25.0,3.3,0,1,1016.5097624691374,1016.5097624691374,0.0 8996,8094,8093,2,2,40,211,34,20,0,6875,0,60,30,0,2,5,2,4,2.1,1283.04286841,3641,0,61914.0,1,2,1,3,4,3,0,0,0,1,0,0,0,0,1,2,29482.8571429,9,5,9,9_0,19813.0,0,19813.0,0,1,1,151.0,67.5,3.31,0,1,2014.010792380102,2014.010792380102,0.0 8997,8096,8095,11,13,77,111,75,43,0,6878,0,0,0,0,0,5,0,2,1.5,1962.78328692,1260,0,48937.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,32624.6666667,9,5,9,9_0,8000.0,0,8000.0,0,9,11,0.0,0.0,0.0,0,0,813.2078099753099,813.2078099753099,0.0 8998,8117,8116,1,1,55,300,11,12,1,6904,0,0,0,0,1,11,3,5,3.0,1734.35572634,0,30000,97499.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,1,2,32499.6666667,9,5,9,9_1,44000.0,0,26000.0,18000,3,3,761.5,36.6666666667,3.3,0,1,4528.88694091044,2676.1604650834415,1852.7264758269982 @@ -9015,11 +9015,11 @@ 9013,8225,8224,3,5,53,111,54,31,0,7054,0,0,50,0,1,4,0,2,1.5,2088.49783579,0,0,48640.0,1,2,8,7,3,2,0,1,0,0,0,1,0,0,2,0,32426.6666667,9,5,9,9_0,13000.0,0,0.0,13000,6,6,0.0,0.0,0.0,0,1,1321.4626912098788,0.0,1321.4626912098788 9014,8228,8227,0,0,55,111,54,20,0,7057,0,0,0,437,1,2,0,2,1.5,3183.11862165,0,0,53539.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,35692.6666667,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,25.0,1.1,0,0,0.0,0.0,0.0 9015,8257,8256,3,3,32,120,46,31,0,7096,0,1200,0,0,2,3,1,3,1.8,2312.76311688,2860,0,57508.0,1,3,0,1,4,2,0,1,0,1,0,0,0,0,0,2,31948.8888889,9,5,9,9_0,31000.0,0,31000.0,0,3,3,0.0,8.0,3.3,1,1,3151.1802636543257,3151.1802636543257,0.0 -9016,8258,8257,4,17,55,111,42,31,0,7097,0,100,70,0,3,7,2,4,2.5,2756.1975546999997,2600,0,79071.0,1,1,8,7,4,3,0,0,0,0,0,1,0,0,2,1,31628.4,9,5,9,9_0,32536.0,0,17922.0,14614,1,15,168.3,31.6666666667,3.3,0,1,3307.3161631695857,1821.7887962971881,1485.5273668723976 +9016,8258,8257,4,17,55,111,42,31,0,7097,0,100,70,0,3,7,2,4,2.5,2756.1975547,2600,0,79071.0,1,1,8,7,4,3,0,0,0,0,0,1,0,0,2,1,31628.4,9,5,9,9_0,32536.0,0,17922.0,14614,1,15,168.3,31.6666666667,3.3,0,1,3307.3161631695857,1821.7887962971881,1485.5273668723976 9017,8260,8259,4,6,36,211,43,33,0,71,0,600,300,0,2,8,1,3,1.8,2501.61762024,3900,0,61234.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,1,1,34018.8888889,9,5,9,9_0,40000.0,0,25000.0,15000,2,8,139.0,15.0,3.3,0,1,4066.0390498765496,2541.2744061728436,1524.764643703706 -9018,8265,8264,0,0,44,111,37,31,0,7106,0,0,0,1158,1,3,2,3,1.8,3583.62823405,0,0,66178.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,36765.555555599996,9,5,9,9_0,11517.0,0,0.0,11517,3,0,0.0,0.0,0.0,0,1,1170.7142934357057,0.0,1170.7142934357057 +9018,8265,8264,0,0,44,111,37,31,0,7106,0,0,0,1158,1,3,2,3,1.8,3583.62823405,0,0,66178.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,36765.5555556,9,5,9,9_0,11517.0,0,0.0,11517,3,0,0.0,0.0,0.0,0,1,1170.7142934357057,0.0,1170.7142934357057 9019,8270,8269,4,4,49,112,23,12,0,7116,0,199998,0,0,2,9,3,5,2.8,1009.24645581,5246,0,93002.0,1,1,10,4,4,2,1,1,0,0,1,0,0,0,0,2,33215.0,9,5,9,9_0,25000.0,0,25000.0,0,3,3,247.7,38.0,3.31,1,1,2541.2744061728436,2541.2744061728436,0.0 -9020,8275,8274,1,5,31,111,38,12,2,7122,0,100,0,0,2,5,1,3,1.8,3444.44732727,2019,9900,58252.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,32362.222222200002,9,5,9,9_0,20000.0,0,20000.0,0,7,5,120.0,46.6666666667,3.31,0,1,2033.0195249382748,2033.0195249382748,0.0 +9020,8275,8274,1,5,31,111,38,12,2,7122,0,100,0,0,2,5,1,3,1.8,3444.44732727,2019,9900,58252.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,32362.2222222,9,5,9,9_0,20000.0,0,20000.0,0,7,5,120.0,46.6666666667,3.31,0,1,2033.0195249382748,2033.0195249382748,0.0 9021,8291,8290,10,10,52,111,47,31,0,7140,0,300,0,0,2,3,1,3,2.0,6463.65694833,2157,0,65475.0,1,1,8,6,4,2,1,0,0,0,1,0,0,0,1,1,32737.5,9,5,9,9_0,35000.0,0,30000.0,5000,5,6,1001.0,36.6666666667,3.3,0,1,3557.784168641981,3049.529287407412,508.2548812345687 9022,8292,8291,9,9,64,111,72,70,0,7142,0,0,0,0,0,5,0,2,1.5,1913.36880018,5460,0,44609.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,29739.3333333,9,5,9,9_0,10000.0,0,10000.0,0,7,9,0.0,0.0,0.0,0,0,1016.5097624691374,1016.5097624691374,0.0 9023,8314,8313,8,8,79,111,74,41,0,7182,0,0,0,0,0,5,0,2,1.5,2275.08418068,4676,0,54860.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,36573.3333333,9,5,9,9_0,3200.0,0,0.0,3200,6,7,0.0,0.0,0.0,0,0,325.28312399012395,0.0,325.28312399012395 @@ -9041,7 +9041,7 @@ 9039,8448,8447,1,1,66,111,75,41,1,7382,0,0,0,0,0,5,0,1,1.0,1891.33194321,0,16000,37313.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,37313.0,9,5,9,9_0,10000.0,0,0.0,10000,3,3,0.0,0.0,0.0,0,0,1016.5097624691374,0.0,1016.5097624691374 9040,8457,8456,3,3,71,111,74,12,0,7397,0,0,0,0,0,6,0,2,1.5,1191.65591977,3938,0,53711.0,5,1,5,4,3,2,0,0,0,0,1,0,0,0,1,1,35807.3333333,9,5,9,9_0,25000.0,0,22000.0,3000,2,2,0.0,0.0,0.0,0,0,2541.2744061728436,2236.3214774321023,304.95292874074124 9041,8459,8458,4,20,54,112,43,33,0,7399,0,200,200,0,2,5,0,2,1.5,2354.16959825,3068,0,45864.0,1,1,6,0,3,3,0,1,1,0,0,0,0,0,1,2,30576.0,9,5,9,9_1,1500.0,0,1500.0,0,1,21,229.5,60.0,3.3,0,1,154.39387298558316,154.39387298558316,0.0 -9042,8462,8461,1,6,42,111,21,60,2,7403,0,0,0,0,2,3,1,3,1.8,2846.50224411,0,4000,62437.0,1,4,6,5,4,1,0,0,0,0,1,0,0,0,1,0,34687.22222219999,9,5,9,9_0,3000.0,0,0.0,3000,2,9,0.0,0.0,0.0,0,0,304.95292874074124,0.0,304.95292874074124 +9042,8462,8461,1,6,42,111,21,60,2,7403,0,0,0,0,2,3,1,3,1.8,2846.50224411,0,4000,62437.0,1,4,6,5,4,1,0,0,0,0,1,0,0,0,1,0,34687.2222222,9,5,9,9_0,3000.0,0,0.0,3000,2,9,0.0,0.0,0.0,0,0,304.95292874074124,0.0,304.95292874074124 9043,8495,8494,5,7,64,111,75,41,0,7445,0,0,0,0,0,4,0,2,1.5,2504.49630166,0,0,46037.0,5,1,9,7,3,3,0,0,0,0,0,1,0,0,2,1,30691.3333333,9,5,9,9_0,19416.0,0,10000.0,9416,7,7,0.0,0.0,0.0,0,0,1973.6553548100771,1016.5097624691374,957.1455923409399 9044,8499,8498,9,28,29,111,47,20,0,7453,0,0,70,0,1,3,0,1,1.0,3802.66425767,0,0,32660.0,1,2,8,6,1,2,0,0,0,0,1,0,0,0,2,0,32660.0,9,5,9,9_0,6000.0,0,0.0,6000,11,13,0.0,0.0,0.0,0,1,609.9058574814825,0.0,609.9058574814825 9045,8553,8552,10,10,51,111,62,41,0,7530,0,0,0,0,2,4,1,3,2.0,1716.14137063,2443,0,63595.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,31797.5,9,5,9,9_0,15000.0,0,0.0,15000,8,10,70.5,53.3333333333,5.56,0,1,1524.764643703706,0.0,1524.764643703706 @@ -9062,13 +9062,13 @@ 9060,8788,8787,4,4,63,111,74,60,0,7824,0,0,400,0,1,4,1,2,1.5,2816.47385262,0,0,51789.0,5,1,8,6,2,2,0,1,0,0,1,0,0,0,1,1,34526.0,9,5,9,9_0,21000.0,0,20000.0,1000,13,0,0.0,0.0,0.0,0,1,2134.6705011851886,2033.0195249382748,101.65097624691374 9061,8789,8788,25,25,70,111,74,20,0,7825,0,0,0,0,0,5,0,1,1.0,2810.69551636,0,0,35894.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,35894.0,9,5,9,9_0,1000.0,0,0.0,1000,22,22,0.0,0.0,0.0,0,0,101.65097624691374,0.0,101.65097624691374 9062,8799,8798,0,13,49,111,38,10,0,7835,0,0,700,0,2,4,2,4,2.1,2351.18048643,3656,0,72342.0,1,2,10,8,4,1,1,1,0,0,0,0,1,0,1,0,34448.5714286,9,5,9,9_0,12086.0,0,0.0,12086,12,12,70.0,35.0,3.3,0,1,1228.5536989201994,0.0,1228.5536989201994 -9063,8801,8800,1,3,28,111,46,20,0,7837,0,1200,0,0,2,4,1,3,1.8,4646.2482033999995,3337,0,52742.0,1,2,6,4,4,1,0,1,0,0,1,0,0,0,0,1,29301.1111111,9,5,9,9_0,6000.0,0,6000.0,0,2,6,0.0,12.0,3.3,0,1,609.9058574814825,609.9058574814825,0.0 +9063,8801,8800,1,3,28,111,46,20,0,7837,0,1200,0,0,2,4,1,3,1.8,4646.2482034,3337,0,52742.0,1,2,6,4,4,1,0,1,0,0,1,0,0,0,0,1,29301.1111111,9,5,9,9_0,6000.0,0,6000.0,0,2,6,0.0,12.0,3.3,0,1,609.9058574814825,609.9058574814825,0.0 9064,8804,8803,9,18,39,111,38,12,0,7840,0,0,0,0,1,3,0,1,1.0,1845.04382324,1550,0,29527.0,1,2,9,7,1,1,0,0,0,0,0,1,0,0,1,0,29527.0,9,5,9,9_0,4647.0,0,0.0,4647,16,17,490.5,170.0,6.63,0,1,472.37208661940815,0.0,472.37208661940815 9065,8805,8804,6,21,57,111,75,20,0,7841,0,0,0,0,0,5,2,3,2.0,2233.01375596,0,0,60566.0,7,2,8,6,2,2,0,0,0,0,1,0,0,0,1,1,30283.0,9,5,9,9_0,5000.0,0,2500.0,2500,10,17,0.0,0.0,0.0,0,0,508.2548812345687,254.12744061728435,254.12744061728435 9066,8806,8805,3,3,65,111,74,50,0,7844,0,0,0,0,0,6,0,2,1.5,1049.3452728,3359,0,53946.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,35964.0,9,5,9,9_0,8000.0,0,8000.0,0,3,3,0.0,0.0,0.0,0,0,813.2078099753099,813.2078099753099,0.0 9067,8809,8808,9,10,47,400,43,33,0,7848,0,0,0,0,2,6,2,4,2.5,2421.05750566,3675,0,77755.0,1,1,0,0,4,3,0,0,1,0,0,0,0,0,0,3,31102.0,9,5,9,9_1,25000.0,0,25000.0,0,6,8,302.5,53.3333333333,3.3,0,1,2573.2312164263863,2573.2312164263863,0.0 9068,8816,8815,0,0,80,400,74,41,0,7858,0,0,0,0,0,4,0,1,1.0,6245.94459841,0,0,31077.0,5,3,0,1,1,0,0,0,0,1,0,0,0,0,0,0,31077.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -9069,8832,8831,3,6,43,112,46,41,0,7881,0,350,200,0,2,3,1,3,1.8,3162.12394227,1820,0,56264.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,1,1,31257.777777799998,9,5,9,9_1,90000.0,0,20000.0,70000,7,7,523.5,26.6666666667,3.3,0,1,9263.63237913499,2058.584973141109,7205.047405993881 +9069,8832,8831,3,6,43,112,46,41,0,7881,0,350,200,0,2,3,1,3,1.8,3162.12394227,1820,0,56264.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,1,1,31257.7777778,9,5,9,9_1,90000.0,0,20000.0,70000,7,7,523.5,26.6666666667,3.3,0,1,9263.63237913499,2058.584973141109,7205.047405993881 9070,8833,8832,9,25,75,112,72,41,0,7882,0,0,0,0,0,11,0,2,1.5,1783.35339182,4368,0,53142.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,35428.0,9,5,9,9_1,34000.0,0,10000.0,24000,19,21,0.0,0.0,0.0,0,0,3499.594454339885,1029.2924865705545,2470.3019677693305 9071,8835,8834,6,15,49,112,52,50,0,7884,0,80,120,0,2,6,1,3,2.0,1476.24711175,4165,0,60526.0,1,1,7,2,4,2,0,1,0,1,0,0,0,0,1,1,30263.0,9,5,9,9_0,2000.0,0,2000.0,0,16,12,0.0,0.0,0.0,0,0,203.30195249382749,203.30195249382749,0.0 9072,8846,8845,2,2,38,111,37,20,0,7898,0,160,100,0,2,3,2,4,2.1,2422.50959215,1669,0,66659.0,1,2,9,7,4,3,0,1,0,0,0,1,0,0,2,1,31742.3809524,9,5,9,9_0,20000.0,0,18000.0,2000,3,3,258.5,49.0,3.3,0,1,2033.0195249382748,1829.7175724444473,203.30195249382749 @@ -9078,7 +9078,7 @@ 9076,8883,8882,3,11,62,120,38,50,0,7949,0,300,0,0,2,4,1,4,2.3,2139.48417082,4407,0,67459.0,5,1,0,3,5,3,0,0,0,1,0,0,0,0,1,2,29330.0,9,5,9,9_0,36500.0,0,20000.0,16500,6,7,352.7,105.0,3.3,0,1,3710.2606330123517,2033.0195249382748,1677.2411080740767 9077,8884,8883,6,6,61,221,75,70,0,795,0,0,0,0,0,6,0,2,1.5,2730.32596034,0,0,47747.0,5,1,1,1,3,1,0,0,0,1,0,0,0,0,0,1,31831.3333333,9,5,9,9_0,6500.0,0,6500.0,0,4,5,0.0,0.0,0.0,0,0,660.7313456049394,660.7313456049394,0.0 9078,8885,8884,3,3,50,112,47,50,0,7950,0,0,250,0,1,5,0,2,1.5,2017.67082226,5231,0,50041.0,1,1,7,0,3,2,0,1,1,0,0,0,0,0,1,1,33360.6666667,9,5,9,9_1,30164.0,0,15164.0,15000,2,2,0.0,0.0,0.0,0,0,3104.7578564914206,1560.8191266355889,1543.9387298558318 -9079,8886,8885,6,14,53,112,38,20,0,7951,0,800,0,0,1,2,0,2,1.5,1360.2578144000001,10036,0,55510.0,1,2,10,0,3,2,0,1,1,0,0,0,0,0,0,2,37006.6666667,9,5,9,9_1,3000.0,0,3000.0,0,10,13,0.0,0.0,0.0,0,1,308.7877459711663,308.7877459711663,0.0 +9079,8886,8885,6,14,53,112,38,20,0,7951,0,800,0,0,1,2,0,2,1.5,1360.2578144,10036,0,55510.0,1,2,10,0,3,2,0,1,1,0,0,0,0,0,0,2,37006.6666667,9,5,9,9_1,3000.0,0,3000.0,0,10,13,0.0,0.0,0.0,0,1,308.7877459711663,308.7877459711663,0.0 9080,8897,8896,3,5,55,111,52,50,0,7964,0,0,0,0,1,4,0,1,1.0,1674.25863661,1685,0,34016.0,1,4,6,4,1,1,0,0,0,0,1,0,0,0,0,1,34016.0,9,5,9,9_0,17000.0,0,17000.0,0,4,5,0.0,40.0,1.1,0,1,1728.0665961975335,1728.0665961975335,0.0 9081,8907,8906,2,6,44,112,54,50,0,7975,0,400,0,0,2,6,1,3,1.8,2485.360817,0,0,59415.0,1,2,10,0,4,2,1,1,1,0,0,0,0,0,0,2,33008.3333333,9,5,9,9_1,22000.0,0,22000.0,0,2,5,286.0,34.0,3.3,0,1,2264.44347045522,2264.44347045522,0.0 9082,8918,8917,1,1,41,120,43,31,1,7992,0,1250,0,0,2,8,3,5,2.6,1689.39027431,6479,23000,77736.0,1,2,0,0,4,2,1,1,1,0,0,0,0,0,0,2,29898.4615385,9,5,9,9_1,45000.0,0,45000.0,0,3,3,150.3,31.25,3.3,0,1,4631.816189567495,4631.816189567495,0.0 @@ -9094,7 +9094,7 @@ 9092,9004,9003,6,6,56,112,46,50,0,8100,0,80,0,0,2,5,0,2,1.5,1920.65506257,0,0,53520.0,4,1,10,0,3,2,0,1,1,0,0,0,0,0,0,2,35680.0,9,5,9,9_1,23000.0,0,23000.0,0,4,6,0.0,0.0,0.0,0,0,2367.3727191122753,2367.3727191122753,0.0 9093,9009,9008,6,18,52,111,52,50,0,8108,0,100,50,300,2,3,0,2,1.5,2742.80536406,1582,0,47926.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,1,1,31950.6666667,9,5,9,9_0,53000.0,0,23000.0,30000,14,14,0.0,20.0,1.1,0,1,5387.501741086428,2337.9724536790163,3049.529287407412 9094,9018,9017,9,9,52,111,52,60,0,8117,0,330,0,74,1,3,0,1,1.0,2756.23706104,0,0,36448.0,1,3,7,6,1,1,0,1,0,0,1,0,0,1,0,1,36448.0,9,5,9,9_0,8000.0,0,8000.0,0,9,9,0.0,0.0,0.0,1,0,813.2078099753099,813.2078099753099,0.0 -9095,9019,9018,10,10,68,111,74,30,0,8118,0,0,0,0,0,3,0,1,1.0,2780.5130821999996,0,0,29844.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,29844.0,9,5,9,9_0,25000.0,0,25000.0,0,9,10,0.0,0.0,0.0,0,0,2541.2744061728436,2541.2744061728436,0.0 +9095,9019,9018,10,10,68,111,74,30,0,8118,0,0,0,0,0,3,0,1,1.0,2780.5130822,0,0,29844.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,29844.0,9,5,9,9_0,25000.0,0,25000.0,0,9,10,0.0,0.0,0.0,0,0,2541.2744061728436,2541.2744061728436,0.0 9096,9020,9019,5,13,66,221,74,10,0,8119,0,0,0,0,0,7,0,1,1.0,3172.28078265,0,0,29145.0,5,2,1,2,1,1,0,0,0,1,0,0,0,0,1,0,29145.0,9,5,9,9_0,6000.0,0,0.0,6000,14,14,0.0,0.0,0.0,0,0,609.9058574814825,0.0,609.9058574814825 9097,9021,9020,14,14,63,112,75,41,0,8121,0,0,0,0,0,5,0,2,1.5,2049.21870098,0,0,53293.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,1,1,35528.6666667,9,5,9,9_1,32384.0,0,20000.0,12384,16,16,0.0,0.0,0.0,0,0,3333.260788510084,2058.584973141109,1274.6758153689748 9098,9030,9029,1,1,47,112,43,33,1,8139,0,300,0,0,2,4,1,3,1.8,2002.34118706,0,19200,52719.0,1,2,8,0,4,1,0,1,1,0,0,0,0,0,0,1,29288.3333333,9,5,9,9_1,27000.0,0,27000.0,0,1,1,292.6,30.0,3.31,0,1,2779.0897137404972,2779.0897137404972,0.0 @@ -9114,7 +9114,7 @@ 9112,9124,9123,4,4,74,111,74,12,0,8272,0,0,0,0,0,6,0,2,1.5,1793.57510666,4243,0,53315.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,35543.3333333,9,5,9,9_0,21000.0,0,15000.0,6000,3,3,0.0,0.0,0.0,0,0,2134.6705011851886,1524.764643703706,609.9058574814825 9113,9136,9135,1,2,29,111,37,10,0,8291,0,0,100,733,1,2,0,1,1.0,3372.23489159,0,0,32213.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,32213.0,9,5,9,9_0,38568.0,0,0.0,38568,2,2,47.0,37.0,3.3,0,1,3920.4748518909696,0.0,3920.4748518909696 9114,9143,9142,0,4,44,111,37,31,0,830,0,400,0,0,1,5,2,3,1.8,2765.9662375,0,0,64158.0,1,2,10,8,2,1,0,1,0,0,0,0,1,0,0,1,35643.3333333,9,5,9,9_0,700.0,0,700.0,0,3,3,28.7,40.0,5.57,0,0,71.15568337283962,71.15568337283962,0.0 -9115,9163,9162,4,5,35,111,37,10,0,8328,0,120,0,0,2,5,1,3,1.8,2959.14048914,0,0,58909.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,0,1,32727.222222200002,9,5,9,9_0,6000.0,0,6000.0,0,2,6,0.0,12.0,3.3,0,1,609.9058574814825,609.9058574814825,0.0 +9115,9163,9162,4,5,35,111,37,10,0,8328,0,120,0,0,2,5,1,3,1.8,2959.14048914,0,0,58909.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,0,1,32727.2222222,9,5,9,9_0,6000.0,0,6000.0,0,2,6,0.0,12.0,3.3,0,1,609.9058574814825,609.9058574814825,0.0 9116,9194,9193,4,6,67,111,75,20,0,8373,0,0,0,0,0,2,0,1,1.0,3194.99063931,0,0,29148.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,29148.0,9,5,9,9_0,13000.0,0,13000.0,0,7,7,0.0,0.0,0.0,0,0,1321.4626912098788,1321.4626912098788,0.0 9117,9205,9204,8,8,79,111,74,30,0,8390,0,0,0,0,0,4,0,1,1.0,3009.07948478,0,0,34127.0,5,1,8,6,1,1,0,0,0,0,1,0,0,0,0,1,34127.0,9,5,9,9_0,10000.0,0,10000.0,0,5,5,0.0,0.0,0.0,0,0,1016.5097624691374,1016.5097624691374,0.0 9118,9222,9221,1,1,56,112,47,42,1,8415,0,795,0,0,2,5,0,2,1.5,4062.37874772,3484,28000,50113.0,1,1,5,0,3,2,0,1,1,0,0,0,0,0,0,2,33408.6666667,9,5,9,9_1,1700.0,0,1700.0,0,1,1,0.0,70.0,4.42,0,1,174.97972271699425,174.97972271699425,0.0 @@ -9147,16 +9147,16 @@ 9145,9452,9451,21,22,89,111,75,33,0,8740,0,0,0,0,0,4,0,1,1.0,2804.47709141,0,0,30992.0,5,4,10,8,1,1,0,0,0,0,0,0,1,0,1,0,30992.0,9,5,9,9_0,1000.0,0,0.0,1000,22,22,0.0,0.0,0.0,0,0,101.65097624691374,0.0,101.65097624691374 9146,9455,9454,1,1,42,300,34,20,1,8746,0,1144,0,0,2,6,0,2,1.5,1701.07057554,4785,24308,44874.0,1,2,0,1,3,2,0,1,0,1,0,0,0,0,0,2,29916.0,9,5,9,9_0,24772.0,0,24772.0,0,1,1,171.0,80.0,3.3,0,1,2518.0979835885473,2518.0979835885473,0.0 9147,9461,9460,6,6,53,111,47,70,0,8758,0,250,0,594,1,3,0,1,1.0,2873.40936293,3172,0,34514.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,34514.0,9,5,9,9_0,6000.0,0,6000.0,0,2,7,8.0,60.0,3.3,0,1,609.9058574814825,609.9058574814825,0.0 -9148,9463,9462,13,13,43,112,37,20,0,8762,0,96,0,0,2,5,2,4,2.1,1821.60595501,0,0,64880.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,30895.238095200002,9,5,9,9_1,12000.0,0,12000.0,0,12,13,179.2,46.6666666667,3.3,0,1,1235.1509838846653,1235.1509838846653,0.0 +9148,9463,9462,13,13,43,112,37,20,0,8762,0,96,0,0,2,5,2,4,2.1,1821.60595501,0,0,64880.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,30895.2380952,9,5,9,9_1,12000.0,0,12000.0,0,12,13,179.2,46.6666666667,3.3,0,1,1235.1509838846653,1235.1509838846653,0.0 9149,9473,9472,0,0,42,111,54,20,0,878,0,0,0,0,1,2,0,1,1.0,3004.37693467,0,0,30687.0,1,2,10,8,1,0,0,0,0,0,0,0,1,0,0,0,30687.0,9,5,9,9_0,0.0,0,0.0,0,0,0,53.5,95.0,5.56,0,0,0.0,0.0,0.0 9150,9475,9474,0,7,38,120,46,41,0,8782,0,1130,0,0,2,5,2,4,2.1,1678.06784148,7801,0,61732.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,0,2,29396.1904762,9,5,9,9_0,12000.0,0,12000.0,0,7,7,0.0,80.0,3.33,0,1,1219.811714962965,1219.811714962965,0.0 9151,9483,9482,5,7,62,111,56,31,0,8792,0,0,39,0,1,4,0,2,1.5,3140.55566044,5082,0,50950.0,1,3,10,8,3,2,0,0,0,0,0,0,1,0,2,0,33966.6666667,9,5,9,9_0,15000.0,0,0.0,15000,2,6,0.0,0.0,0.0,1,1,1524.764643703706,0.0,1524.764643703706 -9152,9492,9491,5,7,37,112,42,10,0,8802,0,480,0,0,2,5,1,3,1.8,1964.7700862,6142,0,63827.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,0,2,35459.444444400004,9,5,9,9_1,45625.0,0,45625.0,0,2,8,88.0,33.3333333333,3.33,0,1,4696.146969978155,4696.146969978155,0.0 +9152,9492,9491,5,7,37,112,42,10,0,8802,0,480,0,0,2,5,1,3,1.8,1964.7700862,6142,0,63827.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,0,2,35459.4444444,9,5,9,9_1,45625.0,0,45625.0,0,2,8,88.0,33.3333333333,3.33,0,1,4696.146969978155,4696.146969978155,0.0 9153,9500,9499,16,17,71,112,74,10,0,8814,0,0,0,0,0,6,0,1,1.0,2039.33665868,1040,0,32517.0,5,1,9,0,1,1,0,0,1,0,0,0,0,0,0,1,32517.0,9,5,9,9_1,5000.0,0,5000.0,0,10,12,0.0,0.0,0.0,0,0,514.6462432852773,514.6462432852773,0.0 9154,9502,9501,19,19,86,112,75,70,0,8817,0,0,0,0,0,11,1,2,1.5,1739.55569132,1170,0,44940.0,5,1,6,0,2,3,0,0,1,0,0,0,0,0,1,2,29960.0,9,5,9,9_1,10000.0,0,10000.0,0,18,18,0.0,0.0,0.0,0,0,1029.2924865705545,1029.2924865705545,0.0 9155,9537,9536,1,1,74,111,75,60,1,8868,0,0,0,0,0,3,0,1,1.0,2662.52347958,799,11000,32848.0,5,1,6,5,1,1,1,0,0,0,1,0,0,0,1,0,32848.0,9,5,9,9_0,11000.0,0,0.0,11000,2,2,0.0,0.0,0.0,0,0,1118.1607387160511,0.0,1118.1607387160511 9156,9540,9539,0,10,22,400,56,50,2,8870,0,0,0,0,2,2,0,2,1.5,2448.17482668,0,3400,52770.0,1,3,0,1,3,1,0,0,0,1,0,0,0,0,1,0,35180.0,9,5,9,9_0,15000.0,0,0.0,15000,2,12,0.0,25.0,3.3,0,1,1524.764643703706,0.0,1524.764643703706 -9157,9546,9545,1,5,43,112,48,50,2,8877,0,200,0,0,2,6,3,5,2.6,1623.14689464,0,10000,78102.0,1,2,7,1,4,2,0,1,0,1,0,0,0,0,0,2,30039.230769200003,9,5,9,9_0,8144.0,0,8144.0,0,1,4,71.4,16.0,2.24,1,1,827.8455505548654,827.8455505548654,0.0 +9157,9546,9545,1,5,43,112,48,50,2,8877,0,200,0,0,2,6,3,5,2.6,1623.14689464,0,10000,78102.0,1,2,7,1,4,2,0,1,0,1,0,0,0,0,0,2,30039.2307692,9,5,9,9_0,8144.0,0,8144.0,0,1,4,71.4,16.0,2.24,1,1,827.8455505548654,827.8455505548654,0.0 9158,9576,9575,1,1,50,300,22,50,1,8920,0,160,0,0,2,7,1,3,1.8,2348.02763463,0,22960,57394.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,31885.5555556,9,5,9,9_1,27000.0,0,27000.0,0,1,1,292.6,30.0,3.31,0,1,2779.0897137404972,2779.0897137404972,0.0 9159,9591,9590,0,21,50,112,45,41,0,8940,0,1200,0,0,3,5,1,3,2.0,1617.02535495,7160,0,69034.0,1,2,9,2,4,3,0,1,0,1,0,0,0,0,0,3,34517.0,9,5,9,9_0,13001.0,0,13001.0,0,15,18,78.0,23.3333333333,3.3,0,1,1321.5643421861255,1321.5643421861255,0.0 9160,9594,9593,1,3,38,111,46,31,0,8945,0,150,0,0,1,5,1,3,2.0,3495.54754155,4698,0,67941.0,1,1,10,8,4,2,1,1,0,0,0,0,1,0,0,2,33970.5,9,5,9,9_0,10000.0,0,10000.0,0,1,1,51.0,43.3333333333,3.3,0,0,1016.5097624691374,1016.5097624691374,0.0 @@ -9166,12 +9166,12 @@ 9164,9614,9613,1,1,50,112,45,31,1,8977,0,600,0,0,1,3,0,1,1.0,2388.45065494,3008,14742,32529.0,1,1,10,0,1,1,0,1,1,0,0,0,0,0,0,1,32529.0,9,5,9,9_1,6200.0,0,6200.0,0,1,1,366.5,120.0,3.3,0,1,638.1613416737438,638.1613416737438,0.0 9165,9626,9625,5,5,54,112,47,50,0,8994,0,800,0,0,2,7,0,2,1.5,1544.14452652,0,0,55667.0,1,2,10,1,3,1,0,1,0,1,0,0,0,0,0,1,37111.3333333,9,5,9,9_0,19000.0,0,19000.0,0,4,4,14.0,15.0,3.3,0,1,1931.3685486913612,1931.3685486913612,0.0 9166,9631,9630,11,11,37,111,38,12,0,8999,0,180,0,0,2,4,2,4,2.1,2293.74677445,6141,0,69470.0,1,3,9,7,4,2,0,1,0,0,0,1,0,0,0,2,33080.952381,9,5,9,9_0,15000.0,0,15000.0,0,4,11,87.5,15.0,3.3,1,1,1524.764643703706,1524.764643703706,0.0 -9167,9634,9633,5,7,34,112,47,31,0,900,0,0,0,0,2,6,2,4,2.1,2066.07820875,2080,0,70783.0,1,2,10,1,4,2,0,0,0,1,0,0,0,0,1,1,33706.190476200005,9,5,9,9_0,39784.0,0,30000.0,9784,4,7,227.4,63.75,3.31,1,1,4044.0824390072166,3049.529287407412,994.5531515998041 +9167,9634,9633,5,7,34,112,47,31,0,900,0,0,0,0,2,6,2,4,2.1,2066.07820875,2080,0,70783.0,1,2,10,1,4,2,0,0,0,1,0,0,0,0,1,1,33706.1904762,9,5,9,9_0,39784.0,0,30000.0,9784,4,7,227.4,63.75,3.31,1,1,4044.0824390072166,3049.529287407412,994.5531515998041 9168,9652,9651,13,13,69,111,86,60,0,9021,0,0,0,0,0,5,0,2,1.5,3529.87791101,0,0,46700.0,5,1,10,8,5,2,0,0,0,0,0,0,1,0,1,1,31133.3333333,9,5,9,9_0,22000.0,0,15000.0,7000,11,11,0.0,0.0,0.0,0,0,2236.3214774321023,1524.764643703706,711.5568337283962 9169,9654,9653,9,9,54,111,53,50,0,9023,0,0,220,0,1,4,0,2,1.5,1799.54634242,0,0,52704.0,1,1,8,6,3,2,0,1,0,0,1,0,0,0,1,1,35136.0,9,5,9,9_0,22818.0,0,14818.0,8000,8,8,0.0,0.0,0.0,0,0,2319.4719760020776,1506.2641660267677,813.2078099753099 9170,9658,9657,16,17,54,112,47,50,0,903,0,200,0,0,2,7,0,2,1.5,1019.92198848,0,0,47041.0,1,1,9,1,3,2,0,1,0,1,0,0,0,0,1,1,31360.6666667,9,5,9,9_0,53000.0,0,23000.0,30000,14,14,0.0,20.0,1.1,0,1,5387.501741086428,2337.9724536790163,3049.529287407412 9171,9670,9669,9,11,39,111,34,10,0,9054,0,150,0,0,2,4,2,4,2.1,1961.57183007,0,0,62992.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,29996.1904762,9,5,9,9_0,15000.0,0,15000.0,0,4,11,87.5,15.0,3.3,1,1,1524.764643703706,1524.764643703706,0.0 -9172,9678,9677,10,15,44,221,54,50,0,9062,0,150,0,0,1,6,1,3,2.0,2170.4429440999997,0,0,68220.0,1,3,1,2,5,1,1,1,0,1,0,0,0,0,0,1,34110.0,9,5,9,9_0,13000.0,0,13000.0,0,2,11,51.0,50.0,3.3,0,1,1321.4626912098788,1321.4626912098788,0.0 +9172,9678,9677,10,15,44,221,54,50,0,9062,0,150,0,0,1,6,1,3,2.0,2170.4429441,0,0,68220.0,1,3,1,2,5,1,1,1,0,1,0,0,0,0,0,1,34110.0,9,5,9,9_0,13000.0,0,13000.0,0,2,11,51.0,50.0,3.3,0,1,1321.4626912098788,1321.4626912098788,0.0 9173,9680,9679,0,3,35,112,38,12,0,9064,0,400,0,0,2,7,2,4,2.1,1376.73695234,0,0,61602.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,29334.2857143,9,5,9,9_1,60000.0,0,60000.0,0,1,3,327.4,32.0,3.3,1,1,6175.754919423327,6175.754919423327,0.0 9174,9683,9682,4,4,60,111,74,20,0,9067,0,250,0,0,1,6,2,4,2.5,1971.79759496,3130,0,79126.0,5,1,10,8,4,1,1,1,0,0,0,0,1,0,0,1,31650.4,9,5,9,9_0,6859.0,0,6859.0,0,1,1,0.0,0.0,0.0,1,0,697.2240460775813,697.2240460775813,0.0 9175,9689,9688,9,9,57,111,46,60,0,9075,0,0,99999,436,2,3,1,2,1.5,2527.55909562,0,0,47379.0,1,3,10,8,2,1,0,1,0,0,0,0,1,0,1,0,31586.0,9,5,9,9_0,25000.0,0,0.0,25000,9,9,15.5,30.0,3.3,0,1,2541.2744061728436,0.0,2541.2744061728436 @@ -9183,16 +9183,16 @@ 9181,9720,9719,0,3,65,120,74,31,2,9110,0,0,0,0,0,6,0,2,1.5,3043.14267675,2549,5000,46230.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,30820.0,9,5,9,9_1,16644.0,0,16644.0,0,2,2,0.0,0.0,0.0,0,0,1713.1544146480308,1713.1544146480308,0.0 9182,9736,9735,4,4,70,111,74,50,0,9138,0,0,250,0,1,6,1,3,2.0,1263.69840712,0,0,62680.0,5,1,6,4,4,2,1,1,0,0,1,0,0,0,1,1,31340.0,9,5,9,9_0,28000.0,0,20000.0,8000,4,5,0.0,0.0,0.0,0,1,2846.227334913585,2033.0195249382748,813.2078099753099 9183,9737,9736,3,21,65,111,78,50,0,9140,0,0,0,424,0,4,0,2,1.5,1005.98839043,3612,0,47540.0,5,3,6,4,3,1,0,0,0,0,1,0,0,0,1,0,31693.3333333,9,5,9,9_0,7000.0,0,0.0,7000,13,22,0.0,0.0,0.0,0,0,711.5568337283962,0.0,711.5568337283962 -9184,9739,9738,4,11,68,112,74,70,0,9142,0,0,0,0,0,5,0,2,1.5,1717.6405700999996,1820,0,45902.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,2,0,30601.3333333,9,5,9,9_1,10000.0,0,0.0,10000,10,11,0.0,0.0,0.0,0,0,1029.2924865705545,0.0,1029.2924865705545 +9184,9739,9738,4,11,68,112,74,70,0,9142,0,0,0,0,0,5,0,2,1.5,1717.6405701,1820,0,45902.0,5,1,9,0,3,2,0,0,1,0,0,0,0,0,2,0,30601.3333333,9,5,9,9_1,10000.0,0,0.0,10000,10,11,0.0,0.0,0.0,0,0,1029.2924865705545,0.0,1029.2924865705545 9185,9753,9752,10,25,62,112,72,41,0,916,0,0,230,0,1,5,0,2,1.5,2915.25481312,0,0,47827.0,5,3,8,0,3,2,0,0,1,0,0,0,0,0,2,0,31884.6666667,9,5,9,9_1,3000.0,0,0.0,3000,13,14,0.0,0.0,0.0,0,0,308.7877459711663,0.0,308.7877459711663 -9186,9766,9765,1,8,30,112,38,12,0,9178,0,675,0,0,2,6,1,3,1.8,2363.54341665,0,0,63220.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,35122.22222219999,9,5,9,9_1,29672.0,0,29672.0,0,1,8,117.0,13.333333333299999,3.3,0,1,3054.1166661521493,3054.1166661521493,0.0 +9186,9766,9765,1,8,30,112,38,12,0,9178,0,675,0,0,2,6,1,3,1.8,2363.54341665,0,0,63220.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,35122.2222222,9,5,9,9_1,29672.0,0,29672.0,0,1,8,117.0,13.3333333333,3.3,0,1,3054.1166661521493,3054.1166661521493,0.0 9187,9767,9766,2,2,83,111,86,41,0,9181,0,0,0,0,0,5,0,2,1.5,2202.81430579,2862,0,55270.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,36846.6666667,9,5,9,9_0,4000.0,0,0.0,4000,1,1,0.0,0.0,0.0,0,0,406.60390498765497,0.0,406.60390498765497 9188,9768,9767,15,15,56,112,33,20,0,9183,0,1020,0,0,3,7,2,4,2.5,1152.49818025,2688,0,74404.0,1,1,8,0,4,3,0,0,1,0,0,0,0,0,1,2,29761.6,9,5,9,9_1,1000.0,0,1000.0,0,8,9,40.8,37.5,0.0,1,1,102.92924865705544,102.92924865705544,0.0 9189,9773,9772,19,19,60,112,78,43,0,919,0,0,0,761,0,5,0,1,1.0,2667.14568368,2010,0,31222.0,5,3,9,2,1,1,0,0,0,1,0,0,0,0,1,0,31222.0,9,5,9,9_0,5000.0,0,0.0,5000,2,15,0.0,0.0,0.0,0,0,508.2548812345687,0.0,508.2548812345687 9190,9807,9806,0,0,81,300,78,70,0,9242,0,0,0,0,0,4,0,2,1.5,2207.69330303,0,0,52395.0,5,1,0,0,3,0,0,0,1,0,0,0,0,0,0,0,34930.0,9,5,9,9_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9191,9820,9819,4,4,49,111,33,12,0,9261,0,550,0,0,2,4,2,4,2.5,1798.51241757,3250,0,85098.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,34039.2,9,5,9,9_0,16287.0,0,16287.0,0,1,4,50.5,40.0,1.1,0,1,1655.5894501334842,1655.5894501334842,0.0 9192,9822,9821,0,0,55,111,78,70,0,9264,0,0,0,0,0,1,0,1,1.0,2710.6115159,0,0,35954.0,7,3,9,7,1,0,0,0,0,0,0,1,0,1,0,0,35954.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -9193,9825,9824,4,5,32,112,37,10,0,927,0,500,0,885,2,5,2,4,2.1,2021.49641969,1144,0,62758.0,1,3,7,0,4,2,0,1,1,0,0,0,0,0,0,2,29884.761904799998,9,5,9,9_1,15000.0,0,15000.0,0,2,3,0.0,0.0,0.0,0,1,1543.9387298558318,1543.9387298558318,0.0 +9193,9825,9824,4,5,32,112,37,10,0,927,0,500,0,885,2,5,2,4,2.1,2021.49641969,1144,0,62758.0,1,3,7,0,4,2,0,1,1,0,0,0,0,0,0,2,29884.7619048,9,5,9,9_1,15000.0,0,15000.0,0,2,3,0.0,0.0,0.0,0,1,1543.9387298558318,1543.9387298558318,0.0 9194,9834,9833,7,8,39,111,22,10,0,928,0,80,0,0,1,2,0,1,1.0,3527.11178713,0,0,36999.0,1,2,9,7,1,1,1,1,0,0,0,1,0,0,0,1,36999.0,9,5,9,9_0,8000.0,0,8000.0,0,6,9,0.0,40.0,3.3,1,1,813.2078099753099,813.2078099753099,0.0 9195,9846,9845,0,0,59,111,45,60,1,93,0,70,0,0,1,3,0,1,1.0,2881.08581545,2030,13762,35094.0,1,1,7,6,1,1,0,1,0,0,1,0,0,0,0,1,35094.0,9,5,9,9_0,22000.0,0,22000.0,0,3,3,0.0,0.0,0.0,1,0,2236.3214774321023,2236.3214774321023,0.0 9196,9851,9850,4,7,73,111,74,12,0,9309,0,0,0,0,0,5,0,2,1.5,1769.70290391,0,0,49012.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,32674.6666667,9,5,9,9_0,10500.0,0,7500.0,3000,4,8,0.0,0.0,0.0,0,0,1067.3352505925943,762.382321851853,304.95292874074124 @@ -9209,14 +9209,14 @@ 9207,10011,10010,5,11,46,221,62,50,0,9530,0,0,500,0,1,5,0,1,1.0,3243.85395353,3718,0,32011.0,1,3,1,1,1,1,0,1,0,1,0,0,0,0,1,0,32011.0,9,5,9,9_0,13000.0,0,0.0,13000,3,10,0.0,30.0,3.3,0,1,1321.4626912098788,0.0,1321.4626912098788 9208,10015,10014,0,1,30,112,47,31,2,9539,0,400,0,0,2,5,1,3,1.8,1880.24712233,3575,21000,56919.0,1,2,7,1,4,2,0,1,0,1,0,0,0,0,1,1,31621.6666667,9,5,9,9_0,27000.0,0,17000.0,10000,4,5,777.6,40.0,3.3,0,1,2744.5763586666712,1728.0665961975335,1016.5097624691374 9209,10019,10018,0,11,47,111,43,10,0,9547,0,0,600,0,1,10,3,4,2.5,1073.19491735,0,0,72614.0,1,1,9,7,2,4,0,1,0,0,0,1,0,0,3,1,29045.6,9,5,9,9_0,54657.0,0,45000.0,9657,8,13,174.0,31.25,3.31,1,1,5555.937408727565,4574.293931111119,981.6434776164459 -9210,10025,10024,8,11,43,111,37,50,0,9553,0,0,0,0,2,4,2,4,2.3,1787.60735043,0,0,69797.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,0,1,30346.521739099997,9,5,9,9_0,15000.0,0,15000.0,0,6,10,26.7,33.75,2.2,0,0,1524.764643703706,1524.764643703706,0.0 -9211,10029,10028,2,2,32,112,43,33,1,9562,0,100,0,0,2,6,2,4,2.1,3045.05957817,0,28000,62359.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,29694.761904799998,9,5,9,9_1,20321.0,0,20321.0,0,1,1,114.0,20.5,1.1,0,1,2091.6252619600236,2091.6252619600236,0.0 +9210,10025,10024,8,11,43,111,37,50,0,9553,0,0,0,0,2,4,2,4,2.3,1787.60735043,0,0,69797.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,0,1,30346.5217391,9,5,9,9_0,15000.0,0,15000.0,0,6,10,26.7,33.75,2.2,0,0,1524.764643703706,1524.764643703706,0.0 +9211,10029,10028,2,2,32,112,43,33,1,9562,0,100,0,0,2,6,2,4,2.1,3045.05957817,0,28000,62359.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,29694.7619048,9,5,9,9_1,20321.0,0,20321.0,0,1,1,114.0,20.5,1.1,0,1,2091.6252619600236,2091.6252619600236,0.0 9212,10031,10030,0,0,39,111,38,12,0,9564,0,0,0,0,1,2,0,1,1.0,4024.01987577,0,0,37047.0,1,2,9,7,1,0,0,0,0,0,0,1,0,0,0,0,37047.0,9,5,9,9_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9213,10040,10039,1,3,23,111,35,41,2,9574,0,0,0,500,1,1,0,1,1.0,3887.51055204,0,3500,30633.0,1,3,10,8,1,1,1,0,0,0,0,0,1,0,0,1,30633.0,9,5,9,9_0,25000.0,0,25000.0,0,1,5,38.5,40.0,2.24,0,0,2541.2744061728436,2541.2744061728436,0.0 9214,10055,10054,3,3,80,111,75,50,0,9591,0,0,0,483,0,3,0,2,1.5,2630.88428413,2392,0,43649.0,5,3,9,7,3,1,0,0,0,0,0,1,0,0,0,1,29099.3333333,9,5,9,9_0,8000.0,0,8000.0,0,3,3,0.0,0.0,0.0,0,0,813.2078099753099,813.2078099753099,0.0 9215,10058,10057,4,6,53,112,53,50,0,9595,0,99999,0,0,2,5,1,3,2.0,1965.160176,0,0,65244.0,1,1,8,0,4,2,0,0,1,0,0,0,0,0,0,2,32622.0,9,5,9,9_1,27000.0,0,27000.0,0,4,6,187.4,34.0,0.0,1,1,2779.0897137404972,2779.0897137404972,0.0 9216,10088,10087,4,4,62,111,75,41,0,9637,0,0,0,0,0,6,0,2,1.5,2212.18449488,1924,0,50767.0,5,1,5,4,3,1,0,0,0,0,1,0,0,0,0,1,33844.6666667,9,5,9,9_0,10000.0,0,10000.0,0,4,4,0.0,0.0,0.0,0,0,1016.5097624691374,1016.5097624691374,0.0 -9217,10097,10096,5,5,68,111,74,30,0,9650,0,0,0,0,0,5,0,3,2.0,2246.8229091999997,2600,0,63366.0,5,1,9,7,5,1,0,0,0,0,0,1,0,0,0,1,31683.0,9,5,9,9_0,10000.0,0,10000.0,0,4,5,0.0,0.0,0.0,0,0,1016.5097624691374,1016.5097624691374,0.0 +9217,10097,10096,5,5,68,111,74,30,0,9650,0,0,0,0,0,5,0,3,2.0,2246.8229092,2600,0,63366.0,5,1,9,7,5,1,0,0,0,0,0,1,0,0,0,1,31683.0,9,5,9,9_0,10000.0,0,10000.0,0,4,5,0.0,0.0,0.0,0,0,1016.5097624691374,1016.5097624691374,0.0 9218,10124,10123,1,1,58,111,33,41,0,9684,0,200,0,0,1,6,1,3,2.0,2546.62672169,5694,0,63941.0,1,1,8,7,4,2,0,1,0,0,0,1,0,0,0,2,31970.5,9,5,9,9_0,10444.0,0,10444.0,0,1,1,0.0,0.0,0.0,0,1,1061.6427959227672,1061.6427959227672,0.0 9219,10127,10126,7,7,71,300,74,44,0,9689,0,0,0,0,0,7,0,2,1.5,1948.95302847,2335,0,45627.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,30418.0,9,5,9,9_1,45000.0,0,45000.0,0,8,8,0.0,0.0,0.0,0,0,4631.816189567495,4631.816189567495,0.0 9220,10133,10132,1,2,65,112,56,70,0,9699,0,0,0,0,1,7,0,1,1.0,1264.84191624,2080,0,29135.0,5,1,9,1,1,1,0,0,0,1,0,0,0,0,0,1,29135.0,9,5,9,9_0,22000.0,0,22000.0,0,3,3,0.0,0.0,0.0,1,0,2236.3214774321023,2236.3214774321023,0.0 @@ -9231,7 +9231,7 @@ 9229,10233,10232,1,1,63,111,75,31,1,9849,0,0,0,0,0,12,0,2,1.5,1374.45888021,2912,16000,54068.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,36045.3333333,9,5,9,9_0,9700.0,0,0.0,9700,2,2,0.0,0.0,0.0,0,0,986.0144695950634,0.0,986.0144695950634 9230,10275,10274,4,9,27,111,38,12,0,9905,0,100,0,0,2,3,1,3,1.8,2362.97669448,0,0,59394.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,32996.6666667,9,5,9,9_0,6000.0,0,6000.0,0,2,6,0.0,12.0,3.3,0,1,609.9058574814825,609.9058574814825,0.0 9231,10282,10281,8,12,43,111,33,20,0,9912,0,0,0,0,1,3,0,1,1.0,2812.59590744,0,0,30849.0,1,2,8,6,1,1,0,0,0,0,1,0,0,0,1,0,30849.0,9,5,9,9_0,5568.0,0,0.0,5568,2,13,0.0,10.0,3.3,0,1,565.9926357428158,0.0,565.9926357428158 -9232,10298,10297,4,4,36,111,37,10,0,9932,0,540,0,0,2,5,2,4,2.1,1685.72874613,6477,0,72907.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,34717.619047600005,9,5,9,9_0,27500.0,0,27500.0,0,4,4,0.0,32.5,3.3,0,1,2795.4018467901283,2795.4018467901283,0.0 +9232,10298,10297,4,4,36,111,37,10,0,9932,0,540,0,0,2,5,2,4,2.1,1685.72874613,6477,0,72907.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,34717.6190476,9,5,9,9_0,27500.0,0,27500.0,0,4,4,0.0,32.5,3.3,0,1,2795.4018467901283,2795.4018467901283,0.0 9233,10307,10306,2,2,61,111,74,20,0,9942,0,0,0,0,1,8,0,2,1.5,3516.17027392,4264,0,45669.0,5,1,4,4,3,2,0,0,0,0,1,0,0,0,0,2,30446.0,9,5,9,9_0,0.0,0,0.0,0,3,3,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9234,10310,10309,11,13,50,112,65,43,0,9949,0,392,0,0,2,4,0,2,1.5,1720.40324358,0,0,46199.0,1,3,9,2,3,1,0,1,0,1,0,0,0,0,0,1,30799.3333333,9,5,9,9_0,35000.0,0,35000.0,0,5,13,207.5,65.0,3.3,0,1,3557.784168641981,3557.784168641981,0.0 9235,10313,10312,8,8,56,400,53,71,0,9956,0,498,0,0,2,5,0,2,1.5,3571.53564044,2080,0,46690.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,31126.6666667,9,5,9,9_1,23000.0,0,23000.0,0,4,6,0.0,0.0,0.0,0,0,2367.3727191122753,2367.3727191122753,0.0 @@ -9242,37 +9242,37 @@ 9240,2,1,12,12,55,112,21,50,0,100,0,0,0,0,2,7,0,2,1.5,3901.78202054,515,0,72842.0,1,1,8,0,3,2,0,0,1,0,0,0,0,0,0,2,48561.3333333,10,5,10,10_1,15000.0,0,15000.0,0,12,12,189.0,50.0,3.3,0,1,1373.7380068835437,1373.7380068835437,0.0 9241,19,18,5,5,34,111,34,10,0,1002,0,600,0,0,1,2,0,1,1.0,1971.79348867,0,0,53695.0,1,2,8,6,1,1,1,1,0,0,1,0,0,0,0,1,53695.0,10,5,10,10_0,20000.0,0,20000.0,0,4,4,0.0,120.0,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 9242,24,23,2,2,35,111,37,31,0,10027,0,0,15,0,2,4,1,3,1.8,4131.0354968,0,0,183051.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,101695.0,10,5,10,10_0,25000.0,0,15000.0,10000,4,4,130.0,40.0,3.3,0,1,2461.063569643537,1476.6381417861223,984.4254278574147 -9243,32,31,1,1,52,112,34,10,2,10034,0,200,0,503,1,2,0,1,1.0,1638.9963874000002,0,18400,44968.0,1,3,10,4,1,1,1,1,0,0,1,0,0,0,0,1,44968.0,10,5,10,10_0,15000.0,0,15000.0,0,3,3,79.3,95.0,3.3,1,1,1476.6381417861223,1476.6381417861223,0.0 +9243,32,31,1,1,52,112,34,10,2,10034,0,200,0,503,1,2,0,1,1.0,1638.9963874,0,18400,44968.0,1,3,10,4,1,1,1,1,0,0,1,0,0,0,0,1,44968.0,10,5,10,10_0,15000.0,0,15000.0,0,3,3,79.3,95.0,3.3,1,1,1476.6381417861223,1476.6381417861223,0.0 9244,37,36,2,4,66,112,72,70,0,10040,0,0,0,0,0,6,0,2,1.5,2673.5375691,0,0,84435.0,5,1,9,1,3,1,0,0,0,1,0,0,0,0,0,1,56290.0,10,5,10,10_0,11500.0,0,11500.0,0,3,3,0.0,0.0,0.0,0,0,1132.089242036027,1132.089242036027,0.0 9245,44,43,0,3,25,111,54,30,0,1005,0,0,100,480,1,2,0,1,1.0,3352.9888285,1300,0,49344.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,49344.0,10,5,10,10_0,15000.0,0,0.0,15000,3,7,98.0,50.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 9246,54,53,2,2,31,111,38,12,0,10062,0,105,0,0,2,5,2,4,2.1,3589.73204463,625,0,98100.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,46714.2857143,10,5,10,10_0,48000.0,0,48000.0,0,1,6,0.0,127.5,3.3,1,1,4725.24205371559,4725.24205371559,0.0 9247,78,77,17,17,43,111,34,10,0,101,0,0,0,0,1,3,0,1,1.0,2712.56108634,0,0,64798.0,1,2,10,8,1,1,0,0,0,0,0,0,1,0,1,0,64798.0,10,5,10,10_0,8000.0,0,0.0,8000,12,17,73.5,120.0,3.3,0,0,787.5403422859318,0.0,787.5403422859318 9248,95,94,0,0,64,111,75,50,0,10123,0,0,0,0,0,7,0,1,1.0,2460.59520629,0,0,41571.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,41571.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -9249,104,103,0,0,47,111,35,10,0,10132,0,0,0,1800,2,3,0,2,1.5,2051.84766921,0,0,86633.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,57755.333333300005,10,5,10,10_0,0.0,0,0.0,0,0,0,42.3,80.0,1.1,0,0,0.0,0.0,0.0 +9249,104,103,0,0,47,111,35,10,0,10132,0,0,0,1800,2,3,0,2,1.5,2051.84766921,0,0,86633.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,57755.3333333,10,5,10,10_0,0.0,0,0.0,0,0,0,42.3,80.0,1.1,0,0,0.0,0.0,0.0 9250,126,125,10,10,81,111,72,60,0,10169,0,0,0,0,0,8,0,2,1.5,3464.62601737,0,0,116692.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,2,0,77794.6666667,10,5,10,10_0,5000.0,0,0.0,5000,13,13,0.0,0.0,0.0,0,0,492.21271392870733,0.0,492.21271392870733 9251,127,126,6,6,59,111,38,30,0,1017,0,400,0,0,1,5,0,2,1.5,3752.32876778,3151,0,58880.0,1,1,10,8,3,1,0,1,0,0,0,0,1,0,0,1,39253.3333333,10,5,10,10_0,9000.0,0,9000.0,0,6,6,0.0,0.0,0.0,1,0,885.9828850716733,885.9828850716733,0.0 -9252,134,133,0,13,39,111,38,12,0,10177,0,20,0,0,2,4,0,2,1.5,2473.72508164,0,0,92908.0,1,2,10,8,3,2,0,1,0,0,0,0,1,0,1,1,61938.666666699995,10,5,10,10_0,21000.0,0,10000.0,11000,1,1,90.5,38.0,1.1,0,0,2067.293398500571,984.4254278574147,1082.8679706431562 +9252,134,133,0,13,39,111,38,12,0,10177,0,20,0,0,2,4,0,2,1.5,2473.72508164,0,0,92908.0,1,2,10,8,3,2,0,1,0,0,0,0,1,0,1,1,61938.6666667,10,5,10,10_0,21000.0,0,10000.0,11000,1,1,90.5,38.0,1.1,0,0,2067.293398500571,984.4254278574147,1082.8679706431562 9253,141,140,0,0,53,112,31,10,1,10186,0,600,0,0,1,6,0,1,1.0,3010.09172854,3011,51000,108276.0,1,2,8,0,1,1,1,1,1,0,0,0,0,0,0,1,108276.0,10,5,10,10_1,6000.0,0,6000.0,0,1,1,117.0,30.0,3.3,1,0,549.4952027534175,549.4952027534175,0.0 9254,163,162,10,35,51,300,42,20,0,10217,0,0,320,0,2,9,0,2,1.5,1457.92363792,3484,0,63050.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,2,0,42033.3333333,10,5,10,10_1,80.0,0,0.0,80,8,42,0.0,5.0,1.1,1,0,7.326602703378899,0.0,7.326602703378899 9255,166,165,1,2,33,111,46,41,0,10222,0,35,0,0,2,4,1,3,1.8,3208.5372728,4420,0,93570.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,51983.3333333,10,5,10,10_0,5000.0,0,5000.0,0,3,7,112.5,95.0,5.52,0,0,492.21271392870733,492.21271392870733,0.0 9256,170,169,4,4,69,111,74,20,0,1023,0,0,0,0,0,4,0,2,1.5,1961.70516111,1855,0,71365.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,2,0,47576.6666667,10,5,10,10_0,4000.0,0,0.0,4000,2,2,0.0,0.0,0.0,0,0,393.7701711429659,0.0,393.7701711429659 9257,171,170,4,4,38,111,47,31,0,10231,0,240,0,0,2,4,1,3,1.8,4171.33874083,0,0,68087.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,37826.1111111,10,5,10,10_0,16353.0,0,16353.0,0,4,0,0.0,0.0,0.0,1,1,1609.8309021752304,1609.8309021752304,0.0 9258,178,177,6,12,48,111,22,30,0,10240,0,0,0,0,1,5,2,4,2.5,8337.75440243,0,0,190611.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,76244.4,10,5,10,10_0,10000.0,0,0.0,10000,9,9,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 -9259,184,183,5,5,83,111,74,12,0,10249,0,0,0,0,0,5,0,2,1.5,3093.74133398,0,0,84460.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,56306.666666699995,10,5,10,10_0,4000.0,0,4000.0,0,1,1,0.0,0.0,0.0,0,0,393.7701711429659,393.7701711429659,0.0 +9259,184,183,5,5,83,111,74,12,0,10249,0,0,0,0,0,5,0,2,1.5,3093.74133398,0,0,84460.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,56306.6666667,10,5,10,10_0,4000.0,0,4000.0,0,1,1,0.0,0.0,0.0,0,0,393.7701711429659,393.7701711429659,0.0 9260,186,185,0,0,77,111,74,41,0,10252,0,0,0,398,0,2,0,2,1.5,2163.26863708,1761,0,78631.0,5,3,6,4,3,0,0,0,0,0,1,0,0,0,0,0,52420.6666667,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9261,188,187,4,4,61,111,74,44,0,10254,0,0,0,0,0,5,0,1,1.0,2418.09967038,3224,0,40151.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,0,1,40151.0,10,5,10,10_0,15000.0,0,15000.0,0,5,6,0.0,0.0,0.0,0,0,1476.6381417861223,1476.6381417861223,0.0 -9262,190,189,7,7,43,111,34,10,0,10256,0,150,0,0,2,2,0,2,1.5,2563.78770992,2623,0,80849.0,1,2,9,7,3,2,1,0,0,0,0,1,0,0,0,2,53899.333333300005,10,5,10,10_0,20000.0,0,20000.0,0,5,5,0.0,33.0,1.1,0,1,1968.8508557148293,1968.8508557148293,0.0 +9262,190,189,7,7,43,111,34,10,0,10256,0,150,0,0,2,2,0,2,1.5,2563.78770992,2623,0,80849.0,1,2,9,7,3,2,1,0,0,0,0,1,0,0,0,2,53899.3333333,10,5,10,10_0,20000.0,0,20000.0,0,5,5,0.0,33.0,1.1,0,1,1968.8508557148293,1968.8508557148293,0.0 9263,204,203,1,1,61,112,75,60,0,10276,0,0,0,0,0,5,0,1,1.0,2566.00253536,1452,0,40374.0,5,1,9,0,1,1,0,0,1,0,0,0,0,0,1,0,40374.0,10,5,10,10_1,12000.0,0,0.0,12000,6,6,0.0,0.0,0.0,0,0,1098.990405506835,0.0,1098.990405506835 9264,219,218,4,4,41,111,38,10,0,10298,0,0,150,0,1,5,0,1,1.0,2601.44481276,0,0,44496.0,1,2,8,7,1,1,0,1,0,0,0,1,0,0,1,0,44496.0,10,5,10,10_0,15000.0,0,0.0,15000,2,10,60.0,20.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 -9265,222,221,2,2,66,400,74,41,0,1030,0,0,0,0,0,5,0,1,1.0,2521.7424085000002,1765,0,52202.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,52202.0,10,5,10,10_1,10899.0,0,0.0,10899,1,4,0.0,0.0,0.0,0,0,998.1580358015829,0.0,998.1580358015829 +9265,222,221,2,2,66,400,74,41,0,1030,0,0,0,0,0,5,0,1,1.0,2521.7424085,1765,0,52202.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,1,0,52202.0,10,5,10,10_1,10899.0,0,0.0,10899,1,4,0.0,0.0,0.0,0,0,998.1580358015829,0.0,998.1580358015829 9266,239,238,2,5,80,111,72,71,0,10324,0,0,0,0,0,7,0,2,1.5,3461.52503603,2735,0,60843.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,2,0,40562.0,10,5,10,10_0,2000.0,0,0.0,2000,3,3,0.0,0.0,0.0,0,0,196.88508557148296,0.0,196.88508557148296 9267,244,243,3,3,39,111,31,10,0,10329,0,100,50,0,2,6,3,5,2.4,1920.14909197,0,0,105137.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,43807.0833333,10,5,10,10_0,20572.0,0,14572.0,6000,1,2,63.9,33.0,5.56,0,1,2025.1599901882737,1434.5047334738247,590.6552567144488 9268,277,276,7,11,75,112,74,12,0,10379,0,0,0,0,0,5,0,2,1.5,1775.60977644,3068,0,67506.0,5,4,6,0,3,2,0,0,1,0,0,0,0,0,0,2,45004.0,10,5,10,10_1,7001.0,0,7001.0,0,1,8,0.0,0.0,0.0,0,0,641.169319079446,641.169319079446,0.0 9269,279,278,2,2,60,221,72,70,0,10380,0,0,0,0,0,3,0,1,1.0,2026.64456949,2860,0,140519.0,5,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,140519.0,10,5,10,10_0,10716.0,0,10716.0,0,1,9,0.0,0.0,0.0,0,0,1054.9102884920057,1054.9102884920057,0.0 -9270,285,284,7,10,63,111,74,31,0,10390,0,0,0,620,1,4,0,2,1.5,2720.46159545,3125,0,80716.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,53810.666666699995,10,5,10,10_0,18500.0,0,18500.0,0,9,9,0.0,0.0,0.0,1,1,1821.1870415362173,1821.1870415362173,0.0 +9270,285,284,7,10,63,111,74,31,0,10390,0,0,0,620,1,4,0,2,1.5,2720.46159545,3125,0,80716.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,53810.6666667,10,5,10,10_0,18500.0,0,18500.0,0,9,9,0.0,0.0,0.0,1,1,1821.1870415362173,1821.1870415362173,0.0 9271,298,297,0,0,44,111,46,20,0,10412,0,0,0,0,1,2,0,1,1.0,3265.91355243,0,0,47443.0,1,2,10,8,1,0,0,0,0,0,0,0,1,0,0,0,47443.0,10,5,10,10_0,0.0,0,0.0,0,0,0,24.5,60.0,5.56,0,0,0.0,0.0,0.0 9272,304,303,3,3,57,111,42,10,0,10419,0,0,200,0,2,7,2,4,2.5,1227.50566185,0,0,127747.0,1,2,10,8,4,2,1,1,0,0,0,0,1,0,1,1,51098.8,10,5,10,10_0,17000.0,0,10000.0,7000,2,2,0.0,0.0,0.0,0,0,1673.523227357605,984.4254278574147,689.0977995001903 -9273,316,315,3,4,32,111,37,12,0,10434,0,0,0,0,2,3,2,4,2.1,2488.57690481,0,0,88603.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,42191.904761900005,10,5,10,10_0,10000.0,0,10000.0,0,6,6,216.9,54.5,3.31,0,1,984.4254278574147,984.4254278574147,0.0 +9273,316,315,3,4,32,111,37,12,0,10434,0,0,0,0,2,3,2,4,2.1,2488.57690481,0,0,88603.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,42191.9047619,10,5,10,10_0,10000.0,0,10000.0,0,6,6,216.9,54.5,3.31,0,1,984.4254278574147,984.4254278574147,0.0 9274,346,345,2,2,65,111,72,10,0,10476,0,0,0,0,0,6,0,2,1.5,2390.68947745,0,0,72005.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,48003.3333333,10,5,10,10_0,600.0,0,0.0,600,4,4,0.0,0.0,0.0,0,0,59.06552567144489,0.0,59.06552567144489 9275,355,354,1,1,37,111,31,10,1,10489,0,0,350,0,1,6,0,1,1.0,1949.83024316,0,34000,66498.0,1,2,8,7,1,1,0,1,0,0,0,1,0,0,1,0,66498.0,10,5,10,10_0,20000.0,0,0.0,20000,2,4,0.0,20.0,3.3,0,1,1968.8508557148293,0.0,1968.8508557148293 9276,356,355,0,11,22,111,34,41,0,1049,0,0,0,466,2,3,0,2,1.5,3956.91704286,0,0,59018.0,1,3,9,7,5,1,0,0,0,0,0,1,0,1,1,0,39345.3333333,10,5,10,10_0,12352.0,0,0.0,12352,1,4,0.0,0.0,0.0,1,0,1215.9622884894786,0.0,1215.9622884894786 @@ -9285,13 +9285,13 @@ 9283,386,385,3,3,58,111,62,50,0,10531,0,200,0,0,2,5,0,2,1.5,1431.90647778,2479,0,60076.0,1,1,10,8,3,1,0,1,0,0,0,0,1,0,0,1,40050.6666667,10,5,10,10_0,18625.0,0,18625.0,0,2,2,0.0,45.0,1.1,0,1,1833.492359384435,1833.492359384435,0.0 9284,391,390,3,3,56,112,37,41,0,10536,0,0,0,0,1,8,1,3,2.0,3407.39935527,0,0,75896.0,1,1,8,0,4,1,0,0,1,0,0,0,0,0,0,1,37948.0,10,5,10,10_1,15000.0,0,15000.0,0,4,5,0.0,0.0,0.0,1,0,1373.7380068835437,1373.7380068835437,0.0 9285,404,403,21,22,58,111,38,12,0,10549,0,0,0,0,2,6,1,3,2.0,1962.91404907,0,0,253343.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,126671.5,10,5,10,10_0,22000.0,0,0.0,22000,9,0,45.5,71.6666666667,5.56,0,1,2165.7359412863125,0.0,2165.7359412863125 -9286,406,405,15,15,68,111,74,31,0,10551,0,0,0,0,0,5,0,2,1.5,2570.86953273,2911,0,85600.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,57066.666666699995,10,5,10,10_0,9000.0,0,4000.0,5000,9,14,0.0,0.0,0.0,0,0,885.9828850716733,393.7701711429659,492.21271392870733 +9286,406,405,15,15,68,111,74,31,0,10551,0,0,0,0,0,5,0,2,1.5,2570.86953273,2911,0,85600.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,57066.6666667,10,5,10,10_0,9000.0,0,4000.0,5000,9,14,0.0,0.0,0.0,0,0,885.9828850716733,393.7701711429659,492.21271392870733 9287,412,411,1,1,67,112,74,20,0,10559,0,0,0,0,0,6,0,2,1.5,1460.0871407,3293,0,67700.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,0,2,45133.3333333,10,5,10,10_1,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,0,1831.650675844725,1831.650675844725,0.0 9288,417,416,1,1,49,111,53,50,0,10568,0,0,600,0,2,5,0,2,1.5,1065.21711405,5876,0,60864.0,1,3,7,5,3,3,0,1,0,0,1,0,0,0,1,2,40576.0,10,5,10,10_0,50000.0,0,40000.0,10000,7,8,155.0,20.0,0.0,1,0,4922.127139287074,3937.7017114296586,984.4254278574147 9289,422,421,11,11,61,111,74,12,0,10575,0,0,0,0,0,20,0,2,1.5,1225.59698306,2344,0,107387.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,71591.3333333,10,5,10,10_0,25000.0,0,20000.0,5000,6,6,0.0,0.0,0.0,0,0,2461.063569643537,1968.8508557148293,492.21271392870733 -9290,452,451,3,3,66,112,72,43,0,10621,0,0,0,0,0,11,0,2,1.5,2919.90058745,4406,0,91426.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,0,2,60950.666666699995,10,5,10,10_1,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,0,1831.650675844725,1831.650675844725,0.0 +9290,452,451,3,3,66,112,72,43,0,10621,0,0,0,0,0,11,0,2,1.5,2919.90058745,4406,0,91426.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,0,2,60950.6666667,10,5,10,10_1,20000.0,0,20000.0,0,2,2,0.0,0.0,0.0,0,0,1831.650675844725,1831.650675844725,0.0 9291,453,452,4,4,78,111,75,42,0,10623,0,0,0,0,0,5,0,1,1.0,2294.25746702,0,0,54160.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,0,1,54160.0,10,5,10,10_0,17000.0,0,17000.0,0,6,6,0.0,0.0,0.0,0,0,1673.523227357605,1673.523227357605,0.0 -9292,459,458,0,0,41,112,21,31,0,10631,0,99999,0,0,2,5,1,3,1.8,6596.108903,0,0,85766.0,1,2,9,2,4,2,0,1,0,1,0,0,0,0,0,2,47647.77777780001,10,5,10,10_0,18625.0,0,18625.0,0,3,0,14.4,42.0,3.3,1,1,1833.492359384435,1833.492359384435,0.0 +9292,459,458,0,0,41,112,21,31,0,10631,0,99999,0,0,2,5,1,3,1.8,6596.108903,0,0,85766.0,1,2,9,2,4,2,0,1,0,1,0,0,0,0,0,2,47647.7777778,10,5,10,10_0,18625.0,0,18625.0,0,3,0,14.4,42.0,3.3,1,1,1833.492359384435,1833.492359384435,0.0 9293,479,478,7,7,83,112,72,70,0,1066,0,0,0,0,0,6,0,1,1.0,1992.4431599,0,0,45044.0,5,1,8,1,1,1,0,0,0,1,0,0,0,0,0,1,45044.0,10,5,10,10_0,14000.0,0,14000.0,0,3,3,0.0,0.0,0.0,0,0,1378.1955990003805,1378.1955990003805,0.0 9294,500,499,7,7,40,111,38,12,0,10685,0,150,150,0,2,7,2,4,2.1,1976.19079079,2328,0,136169.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,64842.3809524,10,5,10,10_0,19000.0,0,12000.0,7000,6,6,118.5,37.5,3.31,0,1,1870.408312929088,1181.3105134288976,689.0977995001903 9295,505,504,2,2,57,111,37,50,0,10695,0,400,80,0,1,4,2,3,2.0,1154.85409808,2496,0,74988.0,1,1,10,8,2,3,0,1,0,0,0,0,1,0,2,1,37494.0,10,5,10,10_0,42676.0,0,30000.0,12676,2,2,0.0,0.0,0.0,0,1,4201.133955924303,2953.2762835722447,1247.857672352059 @@ -9300,20 +9300,20 @@ 9298,529,528,9,11,56,111,37,12,0,1073,0,230,50,0,2,5,1,2,1.5,2596.84151393,3120,0,66468.0,1,1,10,8,2,2,0,1,0,0,0,0,1,0,1,1,44312.0,10,5,10,10_0,31891.0,0,26891.0,5000,10,11,142.4,90.0,5.57,0,0,3139.4311319800813,2647.218418051374,492.21271392870733 9299,545,544,20,20,81,111,74,50,0,10751,0,0,0,0,0,3,0,1,1.0,3753.25249779,0,0,44276.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,44276.0,10,5,10,10_0,8000.0,0,0.0,8000,13,13,0.0,0.0,0.0,0,0,787.5403422859318,0.0,787.5403422859318 9300,548,547,10,10,57,400,37,42,0,10754,0,0,100,0,2,5,0,2,1.5,4474.11349109,2158,0,70299.0,1,1,0,0,3,1,1,1,1,0,0,0,0,0,1,0,46866.0,10,5,10,10_1,16533.0,0,0.0,16533,7,9,0.0,0.0,0.0,0,0,1514.134031187042,0.0,1514.134031187042 -9301,555,554,0,0,76,111,74,10,0,10762,0,0,0,0,0,5,0,1,1.0,1951.1306015999999,0,0,49670.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,49670.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +9301,555,554,0,0,76,111,74,10,0,10762,0,0,0,0,0,5,0,1,1.0,1951.1306016,0,0,49670.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,49670.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9302,566,565,1,1,57,112,34,50,1,10774,0,120,0,0,1,5,0,2,1.5,1967.44129103,2606,11000,62850.0,1,1,10,0,3,2,0,0,1,0,0,0,0,0,1,1,41900.0,10,5,10,10_1,11500.0,0,10000.0,1500,2,2,152.0,40.0,3.3,0,1,1053.1991386107168,915.8253379223625,137.37380068835438 9303,582,581,6,6,70,112,31,10,0,10796,0,450,0,0,1,4,0,1,1.0,2318.80594268,2080,0,43864.0,5,1,10,0,1,1,1,1,1,0,0,0,0,0,0,1,43864.0,10,5,10,10_1,31000.0,0,31000.0,0,1,1,0.0,0.0,0.0,1,0,2839.0585475593234,2839.0585475593234,0.0 9304,589,588,6,6,36,112,21,43,0,10809,0,0,200,0,2,3,1,3,1.8,3024.81700165,0,0,87495.0,1,3,6,0,4,3,0,1,1,0,0,0,0,0,2,1,48608.3333333,10,5,10,10_1,33791.0,0,19891.0,13900,2,3,76.0,32.3333333333,0.0,1,1,3094.6653993734553,1821.6681796613711,1272.9972197120837 9305,593,592,4,4,50,111,33,12,0,10815,0,0,0,0,2,4,1,3,2.0,2758.69027429,0,0,75562.0,1,1,9,7,4,1,0,0,0,0,0,1,0,0,0,1,37781.0,10,5,10,10_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,1,1181.3105134288976,1181.3105134288976,0.0 9306,619,618,14,14,71,112,74,12,0,10850,0,0,0,0,0,8,0,2,1.5,1078.83590129,3862,0,62792.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,1,1,41861.3333333,10,5,10,10_0,9000.0,0,4000.0,5000,9,14,0.0,0.0,0.0,0,0,885.9828850716733,393.7701711429659,492.21271392870733 -9307,631,630,5,5,74,111,74,10,0,10869,0,0,0,0,0,5,0,2,1.5,1672.2031332000001,0,0,91705.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,61136.666666699995,10,5,10,10_0,12000.0,0,0.0,12000,4,4,0.0,0.0,0.0,0,0,1181.3105134288976,0.0,1181.3105134288976 +9307,631,630,5,5,74,111,74,10,0,10869,0,0,0,0,0,5,0,2,1.5,1672.2031332,0,0,91705.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,61136.6666667,10,5,10,10_0,12000.0,0,0.0,12000,4,4,0.0,0.0,0.0,0,0,1181.3105134288976,0.0,1181.3105134288976 9308,647,646,0,0,66,111,34,10,0,10888,0,0,0,1054,1,3,0,1,1.0,3426.65945411,0,0,51012.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,51012.0,10,5,10,10_0,0.0,0,0.0,0,0,0,204.5,140.0,5.56,0,0,0.0,0.0,0.0 9309,661,660,3,3,42,111,21,41,0,10906,0,100139,0,0,2,4,0,2,1.5,3317.29711545,0,0,65930.0,1,2,8,6,3,2,0,1,0,0,1,0,0,0,0,2,43953.3333333,10,5,10,10_0,20000.0,0,20000.0,0,2,3,124.8,50.0,3.31,0,1,1968.8508557148293,1968.8508557148293,0.0 9310,667,666,0,0,44,111,34,10,0,10916,0,0,0,0,2,4,1,3,2.0,2830.48075664,4472,0,120960.0,1,2,10,8,4,0,0,0,0,0,0,0,1,0,0,0,60480.0,10,5,10,10_0,0.0,0,0.0,0,0,0,20.4,26.6666666667,1.1,0,0,0.0,0.0,0.0 9311,672,671,1,2,73,111,74,60,2,10922,0,0,0,0,0,3,0,1,1.0,3375.47902774,0,10000,43666.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,43666.0,10,5,10,10_0,1000.0,0,0.0,1000,2,2,0.0,0.0,0.0,0,0,98.44254278574148,0.0,98.44254278574148 9312,674,673,0,7,78,111,74,50,0,1093,0,0,0,0,0,3,0,2,1.5,3619.43916951,3640,0,69129.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,46086.0,10,5,10,10_0,33986.0,0,25000.0,8986,2,3,0.0,0.0,0.0,0,0,3345.66825911621,2461.063569643537,884.6046894726728 -9313,688,687,7,8,34,111,37,10,0,10947,0,320,0,0,2,3,2,4,2.1,2953.18907823,0,0,166965.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,0,2,79507.14285710001,10,5,10,10_0,40000.0,0,40000.0,0,3,0,0.0,5.0,0.0,0,1,3937.7017114296586,3937.7017114296586,0.0 -9314,695,694,1,1,39,111,46,50,0,10955,0,1200,0,0,2,5,2,4,2.3,2805.77088736,5154,0,118812.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,51657.39130430001,10,5,10,10_0,20000.0,0,20000.0,0,2,3,57.5,36.6666666667,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 +9313,688,687,7,8,34,111,37,10,0,10947,0,320,0,0,2,3,2,4,2.1,2953.18907823,0,0,166965.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,0,2,79507.1428571,10,5,10,10_0,40000.0,0,40000.0,0,3,0,0.0,5.0,0.0,0,1,3937.7017114296586,3937.7017114296586,0.0 +9314,695,694,1,1,39,111,46,50,0,10955,0,1200,0,0,2,5,2,4,2.3,2805.77088736,5154,0,118812.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,51657.3913043,10,5,10,10_0,20000.0,0,20000.0,0,2,3,57.5,36.6666666667,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 9315,697,696,4,4,35,112,31,10,0,10957,0,200,0,0,2,5,2,4,2.1,2107.71378076,0,0,159339.0,1,2,7,0,4,2,0,1,1,0,0,0,0,0,0,2,75875.7142857,10,5,10,10_1,11226.0,0,11226.0,0,6,6,63.0,17.0,3.3,1,1,1028.1055243516441,1028.1055243516441,0.0 9316,701,700,10,11,35,112,13,41,0,10962,0,40,0,327,1,3,0,1,1.0,3293.0041692,0,0,38307.0,1,3,8,0,1,1,1,1,1,0,0,0,0,0,0,1,38307.0,10,5,10,10_1,7103.0,0,7103.0,0,1,1,42.0,20.0,3.3,0,1,650.510737526254,650.510737526254,0.0 9317,703,702,0,3,36,111,37,10,0,10965,0,170,300,595,2,3,0,2,1.5,2009.90973009,1040,0,62775.0,1,3,8,7,3,2,1,1,0,0,0,1,0,0,1,1,41850.0,10,5,10,10_0,14248.0,0,11000.0,3248,4,12,53.0,16.0,1.1,0,0,1402.6093496112444,1082.8679706431562,319.74137896808827 @@ -9327,7 +9327,7 @@ 9325,772,771,7,8,28,111,46,31,0,11060,0,0,90,603,2,3,0,2,1.5,3116.26667497,0,0,63924.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,1,1,42616.0,10,5,10,10_0,23000.0,0,15000.0,8000,0,11,96.0,22.5,3.3,0,1,2264.178484072054,1476.6381417861223,787.5403422859318 9326,785,784,3,3,75,112,72,50,0,11076,0,0,0,0,0,5,0,1,1.0,3106.12993492,3207,0,68165.0,5,1,10,3,1,2,0,0,0,1,0,0,0,0,1,1,68165.0,10,5,10,10_0,11000.0,0,10000.0,1000,1,1,0.0,0.0,0.0,0,0,1082.8679706431562,984.4254278574147,98.44254278574148 9327,786,785,12,17,54,111,64,70,0,11077,0,0,0,0,3,5,1,3,2.0,1702.2150327,2340,0,78050.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,0,2,39025.0,10,5,10,10_0,18000.0,0,18000.0,0,2,12,180.3,50.0,0.0,0,1,1771.9657701433466,1771.9657701433466,0.0 -9328,788,787,5,7,33,111,38,12,0,1108,0,300,0,0,2,5,3,5,2.4,1824.36251837,2704,0,133457.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,55607.083333300005,10,5,10,10_0,20000.0,0,20000.0,0,1,1,75.1,26.0,3.31,0,1,1968.8508557148293,1968.8508557148293,0.0 +9328,788,787,5,7,33,111,38,12,0,1108,0,300,0,0,2,5,3,5,2.4,1824.36251837,2704,0,133457.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,55607.0833333,10,5,10,10_0,20000.0,0,20000.0,0,1,1,75.1,26.0,3.31,0,1,1968.8508557148293,1968.8508557148293,0.0 9329,800,799,6,6,66,111,75,41,0,11098,0,0,0,0,0,5,0,2,1.5,2053.64144446,0,0,76374.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,1,1,50916.0,10,5,10,10_0,27500.0,0,26000.0,1500,2,2,0.0,0.0,0.0,0,0,2707.169926607891,2559.5061124292783,147.6638141786122 9330,818,817,2,4,54,111,38,10,0,11124,0,0,0,0,3,6,1,3,2.0,1141.95170344,0,0,134429.0,1,1,7,6,4,1,0,0,0,0,1,0,0,0,1,0,67214.5,10,5,10,10_0,5000.0,0,0.0,5000,4,7,20.5,30.0,3.3,0,1,492.21271392870733,0.0,492.21271392870733 9331,834,833,5,25,63,221,74,12,0,11143,0,0,0,0,0,6,0,2,1.5,1562.18230252,2539,0,76266.0,5,1,1,3,3,2,0,0,0,1,0,0,0,0,1,1,50844.0,10,5,10,10_0,23000.0,0,11000.0,12000,10,20,0.0,0.0,0.0,0,0,2264.178484072054,1082.8679706431562,1181.3105134288976 @@ -9338,14 +9338,14 @@ 9336,868,867,4,7,25,400,42,20,0,11192,0,700,0,0,1,2,0,1,1.0,5331.45618095,2080,0,45753.0,1,3,0,0,1,1,1,1,1,0,0,0,0,0,0,1,45753.0,10,5,10,10_1,25000.0,0,25000.0,0,3,5,188.0,60.0,3.3,0,1,2289.563344805906,2289.563344805906,0.0 9337,879,878,1,1,67,111,74,12,1,11208,0,0,120,0,1,6,0,2,1.5,1280.77079936,2812,12000,159408.0,5,1,10,8,3,2,0,1,0,0,0,0,1,0,2,0,106272.0,10,5,10,10_0,15000.0,0,0.0,15000,2,2,0.0,0.0,0.0,1,1,1476.6381417861223,0.0,1476.6381417861223 9338,901,900,13,13,57,111,43,60,0,11237,0,250,30,0,2,6,0,2,1.5,2610.55078281,3640,0,76174.0,1,1,10,8,3,2,0,1,0,0,0,0,1,0,1,1,50782.6666667,10,5,10,10_0,18867.0,0,12000.0,6867,2,2,0.0,0.0,0.0,0,0,1857.3154547385845,1181.3105134288976,676.0049413096867 -9339,918,917,3,19,54,221,65,50,0,11262,0,0,75,0,2,5,0,2,1.5,2785.2909799000004,1560,0,77684.0,1,1,1,1,3,2,0,1,0,1,0,0,0,0,2,0,51789.3333333,10,5,10,10_0,8908.0,0,0.0,8908,10,20,0.0,100.0,3.3,0,1,876.9261711353851,0.0,876.9261711353851 +9339,918,917,3,19,54,221,65,50,0,11262,0,0,75,0,2,5,0,2,1.5,2785.2909799,1560,0,77684.0,1,1,1,1,3,2,0,1,0,1,0,0,0,0,2,0,51789.3333333,10,5,10,10_0,8908.0,0,0.0,8908,10,20,0.0,100.0,3.3,0,1,876.9261711353851,0.0,876.9261711353851 9340,938,937,2,2,39,112,37,12,0,11290,0,350,0,0,2,7,2,4,2.1,2627.45625641,6408,0,80190.0,1,2,8,0,4,2,0,1,1,0,0,0,0,0,0,2,38185.7142857,10,5,10,10_1,16868.0,0,16868.0,0,1,1,0.0,47.5,3.31,0,1,1544.814180007441,1544.814180007441,0.0 9341,954,953,2,2,37,111,37,41,0,1131,300,700,0,0,2,6,2,4,2.1,1573.19798537,3574,0,92745.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,1,44164.2857143,10,5,10,10_0,18000.0,0,15000.0,3000,3,3,0.0,0.0,0.0,0,1,1771.9657701433466,1476.6381417861223,295.3276283572244 9342,990,989,4,4,47,112,38,12,0,1136,0,0,0,0,1,6,1,3,2.0,1568.71361067,0,0,99090.0,1,1,10,2,4,1,0,0,0,1,0,0,0,0,0,1,49545.0,10,5,10,10_0,5500.0,0,5500.0,0,2,2,0.0,0.0,0.0,0,0,541.4339853215781,541.4339853215781,0.0 9343,997,996,4,5,67,112,47,70,0,11368,0,0,0,0,1,5,0,1,1.0,1885.82175828,0,0,43565.0,5,1,7,0,1,1,1,0,1,0,0,0,0,0,0,1,43565.0,10,5,10,10_1,31000.0,0,31000.0,0,1,1,0.0,0.0,0.0,1,0,2839.0585475593234,2839.0585475593234,0.0 9344,1002,1001,1,1,56,111,37,41,1,11373,0,0,0,820,1,3,0,1,1.0,3478.82854248,3120,11200,45831.0,1,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,45831.0,10,5,10,10_0,15000.0,0,0.0,15000,2,2,19.2,20.0,3.31,0,1,1476.6381417861223,0.0,1476.6381417861223 9345,1005,1004,5,5,27,111,38,10,0,11376,0,200,0,0,2,2,0,2,1.5,3135.21194976,2366,0,57244.0,1,2,8,7,3,1,0,1,0,0,0,1,0,0,0,1,38162.6666667,10,5,10,10_0,25000.0,0,25000.0,0,3,6,588.0,340.0,3.3,0,1,2461.063569643537,2461.063569643537,0.0 -9346,1006,1005,9,10,41,111,37,12,0,11378,0,0,110,0,2,9,2,4,2.1,3496.25301596,2775,0,102337.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,48731.904761900005,10,5,10,10_0,7000.0,0,0.0,7000,4,6,51.5,40.0,5.56,0,0,689.0977995001903,0.0,689.0977995001903 +9346,1006,1005,9,10,41,111,37,12,0,11378,0,0,110,0,2,9,2,4,2.1,3496.25301596,2775,0,102337.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,48731.9047619,10,5,10,10_0,7000.0,0,0.0,7000,4,6,51.5,40.0,5.56,0,0,689.0977995001903,0.0,689.0977995001903 9347,1011,1010,0,0,33,111,37,10,0,11382,0,0,0,0,1,2,0,1,1.0,3457.37616831,625,0,51457.0,1,2,10,8,1,0,0,0,0,0,0,0,1,0,0,0,51457.0,10,5,10,10_0,0.0,0,0.0,0,0,0,63.0,80.0,5.57,0,0,0.0,0.0,0.0 9348,1012,1011,0,0,31,111,38,31,0,11383,0,0,0,0,1,1,0,1,1.0,3956.75233378,0,0,45859.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,45859.0,10,5,10,10_0,0.0,0,0.0,0,0,0,26.0,25.0,2.2,0,0,0.0,0.0,0.0 9349,1026,1025,1,1,57,111,38,12,1,114,0,500,300,0,2,5,0,2,1.5,2223.04251405,3286,9000,109391.0,1,1,10,8,3,2,0,1,0,0,0,0,1,0,1,1,72927.3333333,10,5,10,10_0,37945.0,0,37445.0,500,1,1,9.5,5.0,3.3,0,0,3735.40228600496,3686.1810146120897,49.22127139287074 @@ -9370,18 +9370,18 @@ 9368,1169,1168,2,2,60,221,22,41,0,11597,0,20,0,0,2,8,0,2,1.5,4350.04717399,5365,0,107941.0,1,2,1,1,3,2,1,0,0,1,0,0,0,0,0,2,71960.6666667,10,5,10,10_0,30000.0,0,30000.0,0,2,2,140.0,38.0,3.3,0,1,2953.2762835722447,2953.2762835722447,0.0 9369,1182,1181,1,1,60,111,33,10,2,11617,0,220,0,0,2,9,2,4,2.5,1304.1811662,6084,14402,195553.0,1,1,10,8,4,3,0,1,0,0,0,0,1,0,1,2,78221.2,10,5,10,10_0,13000.0,0,13000.0,0,6,7,88.5,76.6666666667,3.3,0,1,1279.7530562146392,1279.7530562146392,0.0 9370,1193,1192,0,0,37,111,46,20,0,11635,0,0,0,0,2,4,0,2,1.5,2227.30437308,0,0,80509.0,1,2,10,8,3,0,0,0,0,0,0,0,1,0,0,0,53672.6666667,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,35.0,1.1,0,0,0.0,0.0,0.0 -9371,1214,1213,3,3,37,112,31,10,0,11666,0,0,0,0,2,8,1,3,1.8,3498.45593103,0,0,122371.0,1,2,7,0,4,1,1,0,1,0,0,0,0,0,0,1,67983.88888890001,10,5,10,10_1,26000.0,0,26000.0,0,3,3,59.0,11.333333333299999,3.3,1,0,2381.145878598142,2381.145878598142,0.0 +9371,1214,1213,3,3,37,112,31,10,0,11666,0,0,0,0,2,8,1,3,1.8,3498.45593103,0,0,122371.0,1,2,7,0,4,1,1,0,1,0,0,0,0,0,0,1,67983.8888889,10,5,10,10_1,26000.0,0,26000.0,0,3,3,59.0,11.3333333333,3.3,1,0,2381.145878598142,2381.145878598142,0.0 9372,1257,1256,0,0,45,111,47,31,0,11720,0,0,0,0,1,1,0,1,1.0,3648.12148663,0,0,39815.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,39815.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9373,1259,1258,0,8,57,300,77,50,2,11725,0,1800,60,0,2,6,1,3,2.0,1902.19924987,4005,6000,102964.0,5,1,0,0,4,4,0,1,1,0,0,0,0,0,2,2,51482.0,10,5,10,10_1,15250.0,0,15000.0,250,5,6,131.8,26.6666666667,3.31,0,1,1396.633640331603,1373.7380068835437,22.895633448059062 -9374,1269,1268,2,2,63,111,34,10,0,11740,0,0,100,0,2,4,0,2,1.5,2349.03023591,0,0,90092.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,2,0,60061.333333300005,10,5,10,10_0,14091.0,0,0.0,14091,1,2,16.0,10.0,3.3,0,1,1387.153870393883,0.0,1387.153870393883 -9375,1270,1269,3,3,58,111,34,10,0,11741,0,120,0,0,2,7,0,2,1.5,5634.52828647,1425,0,94027.0,1,1,10,8,3,2,0,1,0,0,0,0,1,0,1,1,62684.666666699995,10,5,10,10_0,18867.0,0,12000.0,6867,2,2,0.0,0.0,0.0,0,0,1857.3154547385845,1181.3105134288976,676.0049413096867 +9374,1269,1268,2,2,63,111,34,10,0,11740,0,0,100,0,2,4,0,2,1.5,2349.03023591,0,0,90092.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,2,0,60061.3333333,10,5,10,10_0,14091.0,0,0.0,14091,1,2,16.0,10.0,3.3,0,1,1387.153870393883,0.0,1387.153870393883 +9375,1270,1269,3,3,58,111,34,10,0,11741,0,120,0,0,2,7,0,2,1.5,5634.52828647,1425,0,94027.0,1,1,10,8,3,2,0,1,0,0,0,0,1,0,1,1,62684.6666667,10,5,10,10_0,18867.0,0,12000.0,6867,2,2,0.0,0.0,0.0,0,0,1857.3154547385845,1181.3105134288976,676.0049413096867 9376,1279,1278,0,0,74,111,74,10,1,11756,0,0,0,0,0,6,0,2,1.5,2196.90531515,3091,27500,133212.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,88808.0,10,5,10,10_0,12000.0,0,0.0,12000,4,4,0.0,0.0,0.0,0,0,1181.3105134288976,0.0,1181.3105134288976 9377,1307,1306,2,5,54,112,34,10,0,11791,0,200,150,0,2,7,1,3,2.0,2099.53992698,4837,0,82752.0,1,2,10,4,4,2,0,1,0,0,1,0,0,0,1,1,41376.0,10,5,10,10_0,46226.0,0,36226.0,10000,1,1,27.0,23.3333333333,0.0,1,1,4550.604982813686,3566.1795549562707,984.4254278574147 9378,1318,1317,15,20,61,111,74,50,0,11804,0,0,0,0,0,5,0,2,1.5,1243.89254407,4160,0,111115.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,74076.6666667,10,5,10,10_0,23000.0,0,11000.0,12000,10,20,0.0,0.0,0.0,0,0,2264.178484072054,1082.8679706431562,1181.3105134288976 9379,1320,1319,8,8,43,300,37,10,0,11806,0,750,0,0,1,4,0,1,1.0,1400.24132922,3120,0,39726.0,1,2,0,0,1,1,0,1,1,0,0,0,0,0,0,1,39726.0,10,5,10,10_1,20000.0,0,20000.0,0,9,12,132.0,24.0,3.3,0,1,1831.650675844725,1831.650675844725,0.0 9380,1328,1327,4,11,50,112,23,50,0,11819,0,0,200,0,2,7,4,6,3.1,995.868507365,6947,0,146565.0,1,2,6,0,4,2,0,1,1,0,0,0,0,0,2,0,47279.0322581,10,5,10,10_1,8000.0,0,0.0,8000,1,11,0.0,37.5,3.3,0,1,732.66027033789,0.0,732.66027033789 9381,1332,1331,4,4,54,112,31,10,0,11823,0,900,0,0,2,8,0,2,1.5,1094.06000211,2600,0,89361.0,1,1,10,4,3,2,0,1,0,0,1,0,0,0,0,2,59574.0,10,5,10,10_0,8716.0,0,8716.0,0,1,3,86.0,40.0,3.3,0,1,858.0252029205227,858.0252029205227,0.0 -9382,1339,1338,3,3,57,300,22,12,0,11833,0,1700,0,0,2,8,0,2,1.5,987.8034108869999,3016,0,74153.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,49435.3333333,10,5,10,10_1,43000.0,0,43000.0,0,2,2,0.0,0.0,0.0,0,1,3938.0489530661584,3938.0489530661584,0.0 +9382,1339,1338,3,3,57,300,22,12,0,11833,0,1700,0,0,2,8,0,2,1.5,987.803410887,3016,0,74153.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,49435.3333333,10,5,10,10_1,43000.0,0,43000.0,0,2,2,0.0,0.0,0.0,0,1,3938.0489530661584,3938.0489530661584,0.0 9383,1342,1341,6,7,59,112,38,31,0,1184,0,450,0,0,2,5,0,2,1.5,2416.36759506,3900,0,62920.0,1,1,10,3,3,1,0,1,0,1,0,0,0,0,0,1,41946.6666667,10,5,10,10_0,20000.0,0,20000.0,0,2,5,0.0,30.0,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 9384,1361,1360,6,15,51,120,22,50,0,1186,0,110,0,0,2,5,0,2,1.5,2599.54129643,0,0,106708.0,1,2,0,0,3,2,0,1,1,0,0,0,0,0,0,2,71138.6666667,10,5,10,10_1,20000.0,0,20000.0,0,9,11,48.5,30.0,3.3,0,1,1831.650675844725,1831.650675844725,0.0 9385,1362,1361,0,0,35,111,31,12,0,11860,0,0,0,1253,1,2,0,1,1.0,4215.57750567,0,0,105449.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,105449.0,10,5,10,10_0,0.0,0,0.0,0,0,0,22.0,80.0,5.56,0,0,0.0,0.0,0.0 @@ -9393,9 +9393,9 @@ 9391,1400,1399,0,1,25,112,38,12,2,11920,0,650,0,0,2,3,0,2,1.5,4774.63884746,0,11000,64057.0,1,2,9,1,3,2,0,1,0,1,0,0,0,0,0,2,42704.6666667,10,5,10,10_0,3200.0,0,3200.0,0,0,0,300.0,60.0,3.3,0,1,315.01613691437274,315.01613691437274,0.0 9392,1424,1423,3,4,73,111,74,10,0,1195,0,0,100,0,1,6,0,2,1.5,1715.92345675,3553,0,104605.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,69736.6666667,10,5,10,10_0,37000.0,0,25000.0,12000,1,1,124.5,90.0,3.3,0,1,3642.3740830724346,2461.063569643537,1181.3105134288976 9393,1427,1426,9,9,61,111,34,10,0,11954,0,0,400,0,1,2,0,1,1.0,4062.07204536,2600,0,44166.0,1,4,10,8,1,2,0,1,0,0,0,0,1,0,2,0,44166.0,10,5,10,10_0,21000.0,0,0.0,21000,2,2,37.0,80.0,3.3,0,0,2067.293398500571,0.0,2067.293398500571 -9394,1432,1431,7,14,33,111,38,10,0,11962,0,0,0,0,2,4,1,3,1.8,1734.54461408,0,0,68680.0,1,2,7,5,4,3,0,0,0,0,1,0,0,0,1,2,38155.555555599996,10,5,10,10_0,40000.0,0,35000.0,5000,10,10,104.5,76.6666666667,3.3,0,1,3937.7017114296586,3445.4889975009514,492.21271392870733 +9394,1432,1431,7,14,33,111,38,10,0,11962,0,0,0,0,2,4,1,3,1.8,1734.54461408,0,0,68680.0,1,2,7,5,4,3,0,0,0,0,1,0,0,0,1,2,38155.5555556,10,5,10,10_0,40000.0,0,35000.0,5000,10,10,104.5,76.6666666667,3.3,0,1,3937.7017114296586,3445.4889975009514,492.21271392870733 9395,1441,1440,0,1,44,111,46,31,0,11979,0,70,0,0,2,6,3,5,2.4,2556.9346795,0,0,92770.0,1,2,10,8,4,1,1,1,0,0,0,0,1,0,0,1,38654.1666667,10,5,10,10_0,12000.0,0,12000.0,0,4,4,131.2,61.5,5.56,0,1,1181.3105134288976,1181.3105134288976,0.0 -9396,1470,1469,2,4,29,111,43,10,0,12017,0,0,633,542,2,2,0,2,1.5,2697.53792742,4475,0,89387.0,1,3,8,6,3,2,0,1,0,0,1,0,0,0,2,0,59591.333333300005,10,5,10,10_0,10000.0,0,0.0,10000,5,6,42.5,20.0,0.0,1,1,984.4254278574147,0.0,984.4254278574147 +9396,1470,1469,2,4,29,111,43,10,0,12017,0,0,633,542,2,2,0,2,1.5,2697.53792742,4475,0,89387.0,1,3,8,6,3,2,0,1,0,0,1,0,0,0,2,0,59591.3333333,10,5,10,10_0,10000.0,0,0.0,10000,5,6,42.5,20.0,0.0,1,1,984.4254278574147,0.0,984.4254278574147 9397,1474,1473,3,15,67,111,74,10,0,12023,0,0,0,0,0,4,0,1,1.0,3553.04081854,0,0,43190.0,5,2,8,7,1,1,0,0,0,0,0,1,0,0,0,1,43190.0,10,5,10,10_0,11734.0,0,11734.0,0,16,19,0.0,0.0,0.0,0,0,1155.1247970478905,1155.1247970478905,0.0 9398,1475,1474,0,0,77,111,77,50,0,12024,0,0,0,0,0,6,0,1,1.0,1897.04605182,0,0,39594.0,5,1,7,5,1,0,0,0,0,0,1,0,0,0,0,0,39594.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9399,1482,1481,3,9,52,112,37,12,0,12034,0,0,0,0,1,5,0,1,1.0,2669.08342724,0,0,53576.0,1,1,7,0,1,3,0,0,1,0,0,0,0,0,1,2,53576.0,10,5,10,10_1,40000.0,0,40000.0,0,3,6,0.0,42.0,1.1,1,1,3663.30135168945,3663.30135168945,0.0 @@ -9403,12 +9403,12 @@ 9401,1503,1502,10,10,78,111,74,10,0,12061,0,0,0,0,1,8,1,4,2.3,994.156450368,1030,0,87684.0,5,1,10,8,5,2,0,0,0,0,0,0,1,0,0,1,38123.4782609,10,5,10,10_0,32000.0,0,25000.0,7000,3,3,0.0,15.0,0.0,0,1,3150.1613691437274,2461.063569643537,689.0977995001903 9402,1517,1516,3,3,46,111,34,10,0,12078,0,0,50,0,1,3,0,1,1.0,2999.37854263,3403,0,79265.0,1,2,8,6,1,1,1,1,0,0,1,0,0,0,1,0,79265.0,10,5,10,10_0,5000.0,0,0.0,5000,2,3,0.0,10.0,3.3,0,1,492.21271392870733,0.0,492.21271392870733 9403,1519,1518,12,12,51,111,43,33,0,12085,0,0,0,740,1,3,0,1,1.0,4171.12810374,0,0,39464.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,39464.0,10,5,10,10_0,40000.0,0,0.0,40000,3,10,0.0,0.0,0.0,0,0,3937.7017114296586,0.0,3937.7017114296586 -9404,1521,1520,4,4,54,111,37,31,0,12088,0,20,0,0,1,2,0,1,1.0,3353.0070928000005,0,0,132399.0,1,2,10,8,1,2,0,0,0,0,0,0,1,0,0,2,132399.0,10,5,10,10_0,36017.0,0,36017.0,0,1,6,0.0,0.0,0.0,0,1,3545.605063514051,3545.605063514051,0.0 -9405,1526,1525,3,3,33,111,34,10,0,12093,0,180,0,0,2,3,1,3,1.8,2704.97824934,1560,0,70516.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,39175.555555599996,10,5,10,10_0,50000.0,0,50000.0,0,3,4,0.0,98.3333333333,3.3,0,1,4922.127139287074,4922.127139287074,0.0 +9404,1521,1520,4,4,54,111,37,31,0,12088,0,20,0,0,1,2,0,1,1.0,3353.0070928,0,0,132399.0,1,2,10,8,1,2,0,0,0,0,0,0,1,0,0,2,132399.0,10,5,10,10_0,36017.0,0,36017.0,0,1,6,0.0,0.0,0.0,0,1,3545.605063514051,3545.605063514051,0.0 +9405,1526,1525,3,3,33,111,34,10,0,12093,0,180,0,0,2,3,1,3,1.8,2704.97824934,1560,0,70516.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,39175.5555556,10,5,10,10_0,50000.0,0,50000.0,0,3,4,0.0,98.3333333333,3.3,0,1,4922.127139287074,4922.127139287074,0.0 9406,1533,1532,7,7,29,111,38,12,0,1210,0,0,0,0,2,3,0,2,1.5,2508.41361503,0,0,66146.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,0,1,44097.3333333,10,5,10,10_0,10000.0,0,10000.0,0,2,5,486.6,300.0,5.56,0,0,984.4254278574147,984.4254278574147,0.0 9407,1538,1537,8,11,51,111,37,60,0,12106,0,0,0,0,2,3,1,3,1.8,4086.9940374,0,0,113818.0,1,1,10,8,4,1,0,0,0,0,0,0,1,0,1,0,63232.2222222,10,5,10,10_0,8000.0,0,0.0,8000,13,13,144.5,91.6666666667,5.56,0,0,787.5403422859318,0.0,787.5403422859318 -9408,1550,1549,0,3,39,111,37,12,0,12121,0,50,0,0,2,5,2,4,2.1,2247.60168013,0,0,145078.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,69084.76190479999,10,5,10,10_0,18000.0,0,18000.0,0,3,3,162.5,57.5,3.31,0,1,1771.9657701433466,1771.9657701433466,0.0 -9409,1551,1550,7,7,51,111,33,10,0,12122,0,0,0,0,2,3,0,2,1.5,2429.10448215,0,0,88076.0,1,2,10,8,3,1,1,0,0,0,0,0,1,0,0,1,58717.333333300005,10,5,10,10_0,11000.0,0,11000.0,0,7,7,0.0,0.0,0.0,0,0,1082.8679706431562,1082.8679706431562,0.0 +9408,1550,1549,0,3,39,111,37,12,0,12121,0,50,0,0,2,5,2,4,2.1,2247.60168013,0,0,145078.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,69084.7619048,10,5,10,10_0,18000.0,0,18000.0,0,3,3,162.5,57.5,3.31,0,1,1771.9657701433466,1771.9657701433466,0.0 +9409,1551,1550,7,7,51,111,33,10,0,12122,0,0,0,0,2,3,0,2,1.5,2429.10448215,0,0,88076.0,1,2,10,8,3,1,1,0,0,0,0,0,1,0,0,1,58717.3333333,10,5,10,10_0,11000.0,0,11000.0,0,7,7,0.0,0.0,0.0,0,0,1082.8679706431562,1082.8679706431562,0.0 9410,1567,1566,8,12,54,111,38,31,0,12145,0,150,0,0,2,5,0,2,1.5,1932.95305193,2423,0,66201.0,1,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,44134.0,10,5,10,10_0,31784.0,0,20000.0,11784,6,10,302.0,80.0,3.3,0,1,3128.8977799020067,1968.8508557148293,1160.0469241871774 9411,1569,1568,7,16,60,111,65,70,0,12147,0,330,200,0,2,4,0,2,1.5,1202.40027761,2081,0,56730.0,1,1,5,4,3,2,0,1,0,0,1,0,0,0,1,1,37820.0,10,5,10,10_0,27237.0,0,16353.0,10884,4,4,0.0,20.0,3.3,0,1,2681.2795378552405,1609.8309021752304,1071.4486356800103 9412,1579,1578,2,2,59,111,54,41,0,12165,0,0,297,0,2,4,0,2,1.5,1285.04078687,0,0,78575.0,1,1,6,4,3,2,0,1,0,0,1,0,0,0,2,0,52383.3333333,10,5,10,10_0,40000.0,0,0.0,40000,5,6,0.0,25.0,3.3,0,1,3937.7017114296586,0.0,3937.7017114296586 @@ -9430,44 +9430,44 @@ 9428,1722,1721,1,1,73,111,74,10,0,12375,0,0,0,3698,0,3,0,2,1.5,8038.08376156,0,0,155514.0,5,3,10,8,3,3,0,0,0,0,0,0,1,0,1,2,103676.0,10,5,10,10_0,9870.0,0,7870.0,2000,1,1,0.0,0.0,0.0,0,0,971.6278972952683,774.7428117237854,196.88508557148296 9429,1723,1722,4,13,65,111,74,12,0,12376,0,0,0,0,0,6,0,2,1.5,2021.15286322,3201,0,63373.0,5,1,10,8,3,3,0,0,0,0,0,0,1,0,3,0,42248.6666667,10,5,10,10_0,10000.0,0,0.0,10000,9,12,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 9430,1726,1725,5,5,41,111,34,12,0,12380,0,120,0,0,2,4,2,4,2.1,2704.34730024,2156,0,125640.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,59828.5714286,10,5,10,10_0,80000.0,0,80000.0,0,3,5,0.0,45.0,3.3,0,1,7875.403422859317,7875.403422859317,0.0 -9431,1728,1727,4,8,38,111,53,12,0,12382,0,550,0,0,2,5,4,6,2.7,1278.23308799,0,0,102795.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,38072.22222219999,10,5,10,10_0,25000.0,0,25000.0,0,2,2,75.2,51.6666666667,3.3,1,1,2461.063569643537,2461.063569643537,0.0 +9431,1728,1727,4,8,38,111,53,12,0,12382,0,550,0,0,2,5,4,6,2.7,1278.23308799,0,0,102795.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,0,2,38072.2222222,10,5,10,10_0,25000.0,0,25000.0,0,2,2,75.2,51.6666666667,3.3,1,1,2461.063569643537,2461.063569643537,0.0 9432,1742,1741,19,19,65,112,78,50,0,12405,0,0,0,0,0,3,0,1,1.0,1729.55558423,0,0,39472.0,5,1,8,0,1,2,0,0,1,0,0,0,0,0,0,2,39472.0,10,5,10,10_1,10000.0,0,10000.0,0,10,10,0.0,0.0,0.0,0,0,915.8253379223625,915.8253379223625,0.0 9433,1743,1742,7,7,58,111,38,12,0,12406,0,0,0,0,1,6,0,2,1.5,2608.48958857,0,0,102918.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,1,0,68612.0,10,5,10,10_0,10000.0,0,0.0,10000,7,7,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 9434,1752,1751,6,6,42,120,38,12,0,12415,0,1210,0,0,2,6,0,2,1.5,1510.7313085,4113,0,75722.0,1,2,0,0,3,2,0,1,1,0,0,0,0,0,0,2,50481.3333333,10,5,10,10_1,22000.0,0,22000.0,0,2,3,81.0,53.5,3.3,0,1,2014.8157434291975,2014.8157434291975,0.0 9435,1753,1752,2,2,80,111,72,41,0,12416,0,0,0,0,0,6,0,1,1.0,2785.66699641,0,0,60827.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,60827.0,10,5,10,10_0,11517.0,0,0.0,11517,2,0,0.0,0.0,0.0,0,0,1133.7627652633846,0.0,1133.7627652633846 9436,1759,1758,2,2,62,111,34,10,0,12422,0,0,0,0,3,5,1,3,2.0,1847.15535946,0,0,126881.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,63440.5,10,5,10,10_0,17102.0,0,17102.0,0,4,0,156.2,120.0,3.3,0,0,1683.5643667217507,1683.5643667217507,0.0 -9437,1766,1765,2,2,73,111,74,10,0,12432,0,0,0,0,0,4,0,2,1.5,3059.96601863,3380,0,92060.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,61373.333333300005,10,5,10,10_0,12000.0,0,0.0,12000,4,4,0.0,0.0,0.0,0,0,1181.3105134288976,0.0,1181.3105134288976 +9437,1766,1765,2,2,73,111,74,10,0,12432,0,0,0,0,0,4,0,2,1.5,3059.96601863,3380,0,92060.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,61373.3333333,10,5,10,10_0,12000.0,0,0.0,12000,4,4,0.0,0.0,0.0,0,0,1181.3105134288976,0.0,1181.3105134288976 9438,1769,1768,3,3,76,400,71,70,0,12439,0,0,0,0,0,5,0,1,1.0,2481.67432181,0,0,63565.0,5,4,0,0,1,1,0,0,1,0,0,0,0,0,1,0,63565.0,10,5,10,10_1,15000.0,0,0.0,15000,13,13,0.0,0.0,0.0,0,0,1373.7380068835437,0.0,1373.7380068835437 9439,1770,1769,6,9,40,111,37,10,0,1244,0,0,0,0,2,5,3,5,2.4,1416.27779389,0,0,220188.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,91745.0,10,5,10,10_0,15000.0,0,0.0,15000,6,6,81.5,22.0,0.0,0,0,1476.6381417861223,0.0,1476.6381417861223 9440,1773,1772,2,2,67,112,74,12,0,12443,0,0,0,0,0,5,0,2,1.5,1357.33958801,0,0,59360.0,5,1,9,1,3,1,0,0,0,1,0,0,0,0,0,1,39573.3333333,10,5,10,10_0,11500.0,0,11500.0,0,3,3,0.0,0.0,0.0,0,0,1132.089242036027,1132.089242036027,0.0 9441,1779,1778,0,18,25,111,34,10,0,12451,0,0,130,448,1,1,0,1,1.0,3485.69984462,0,0,43427.0,1,3,10,8,1,1,1,1,0,0,0,0,1,0,1,0,43427.0,10,5,10,10_0,13000.0,0,0.0,13000,5,9,0.0,40.0,5.5,0,1,1279.7530562146392,0.0,1279.7530562146392 -9442,1785,1784,5,5,54,300,21,50,0,1246,0,0,0,0,2,7,0,2,1.5,2158.14345497,0,0,95977.0,1,1,0,0,3,1,1,0,1,0,0,0,0,0,0,1,63984.666666699995,10,5,10,10_1,13000.0,0,13000.0,0,2,2,63.0,10.0,3.31,0,1,1190.572939299071,1190.572939299071,0.0 +9442,1785,1784,5,5,54,300,21,50,0,1246,0,0,0,0,2,7,0,2,1.5,2158.14345497,0,0,95977.0,1,1,0,0,3,1,1,0,1,0,0,0,0,0,0,1,63984.6666667,10,5,10,10_1,13000.0,0,13000.0,0,2,2,63.0,10.0,3.31,0,1,1190.572939299071,1190.572939299071,0.0 9443,1798,1797,2,2,36,112,43,41,0,12474,0,150,0,0,2,8,2,4,2.1,1882.29163585,0,0,92325.0,1,2,8,0,4,1,0,1,1,0,0,0,0,0,0,1,43964.2857143,10,5,10,10_1,15372.0,0,15372.0,0,1,12,0.0,0.0,0.0,1,1,1407.8067094542557,1407.8067094542557,0.0 9444,1801,1800,0,5,50,111,38,31,0,12479,0,200,0,0,2,4,1,3,2.0,4221.20486576,0,0,76819.0,1,2,10,8,4,1,1,1,0,0,0,0,1,0,0,1,38409.5,10,5,10,10_0,20000.0,0,20000.0,0,3,3,70.7,40.0,3.3,1,1,1968.8508557148293,1968.8508557148293,0.0 9445,1814,1813,8,14,60,111,33,20,0,12496,0,0,330,0,3,7,1,3,2.0,919.792947386,0,0,84054.0,1,1,7,5,4,4,0,0,0,0,1,0,0,0,4,0,42027.0,10,5,10,10_0,5500.0,0,0.0,5500,12,3,0.0,18.3333333333,3.3,0,1,541.4339853215781,0.0,541.4339853215781 -9446,1816,1815,5,5,62,111,38,12,0,12498,0,120,0,0,2,6,0,2,1.5,2131.04599822,950,0,90733.0,1,2,9,7,3,1,0,1,0,0,0,1,0,0,0,1,60488.666666699995,10,5,10,10_0,28000.0,0,28000.0,0,3,3,294.0,120.0,3.31,0,1,2756.391198000761,2756.391198000761,0.0 +9446,1816,1815,5,5,62,111,38,12,0,12498,0,120,0,0,2,6,0,2,1.5,2131.04599822,950,0,90733.0,1,2,9,7,3,1,0,1,0,0,0,1,0,0,0,1,60488.6666667,10,5,10,10_0,28000.0,0,28000.0,0,3,3,294.0,120.0,3.31,0,1,2756.391198000761,2756.391198000761,0.0 9447,1826,1825,1,5,64,111,75,10,2,12518,0,0,0,0,0,3,0,1,1.0,3159.68024492,0,12500,40347.0,5,1,5,4,1,1,0,0,0,0,1,0,0,0,0,1,40347.0,10,5,10,10_0,10000.0,0,10000.0,0,2,2,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 9448,1832,1831,4,4,39,111,38,10,0,12524,0,300,300,0,2,5,1,3,1.8,2772.96627434,3380,0,126432.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,70240.0,10,5,10,10_0,38672.0,0,28672.0,10000,4,6,223.5,80.0,3.3,0,1,3806.9700146101945,2822.5445867527797,984.4254278574147 -9449,1848,1847,14,14,87,111,31,10,0,12542,0,0,0,0,4,10,2,6,3.1,970.241254366,0,0,303790.0,1,1,10,8,5,4,0,0,0,0,0,0,1,0,4,0,97996.7741935,10,5,10,10_0,18657.0,0,0.0,18657,8,0,0.0,1.6666666666699999,0.0,0,1,1836.6425207535788,0.0,1836.6425207535788 +9449,1848,1847,14,14,87,111,31,10,0,12542,0,0,0,0,4,10,2,6,3.1,970.241254366,0,0,303790.0,1,1,10,8,5,4,0,0,0,0,0,0,1,0,4,0,97996.7741935,10,5,10,10_0,18657.0,0,0.0,18657,8,0,0.0,1.66666666667,0.0,0,1,1836.6425207535788,0.0,1836.6425207535788 9450,1852,1851,3,3,53,111,38,10,0,12547,0,0,0,0,1,3,0,2,1.5,2983.78894497,1296,0,118598.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,0,1,79065.3333333,10,5,10,10_0,19000.0,0,19000.0,0,1,1,75.5,75.0,3.3,0,0,1870.408312929088,1870.408312929088,0.0 -9451,1857,1856,0,3,39,112,38,12,0,12555,0,100,0,0,2,9,4,6,2.7,854.041274654,4919,0,139214.0,1,2,8,1,4,3,0,1,0,1,0,0,0,0,2,1,51560.74074069999,10,5,10,10_0,35000.0,0,20000.0,15000,7,8,205.0,30.0,3.3,0,1,3445.4889975009514,1968.8508557148293,1476.6381417861223 -9452,1861,1860,1,5,40,111,43,10,2,12561,0,600,0,0,2,3,2,4,2.1,2646.75609832,3017,9000,89743.0,1,1,9,7,4,2,1,1,0,0,0,1,0,0,0,2,42734.761904800005,10,5,10,10_0,18000.0,0,18000.0,0,2,6,202.4,25.3333333333,3.3,0,1,1771.9657701433466,1771.9657701433466,0.0 +9451,1857,1856,0,3,39,112,38,12,0,12555,0,100,0,0,2,9,4,6,2.7,854.041274654,4919,0,139214.0,1,2,8,1,4,3,0,1,0,1,0,0,0,0,2,1,51560.7407407,10,5,10,10_0,35000.0,0,20000.0,15000,7,8,205.0,30.0,3.3,0,1,3445.4889975009514,1968.8508557148293,1476.6381417861223 +9452,1861,1860,1,5,40,111,43,10,2,12561,0,600,0,0,2,3,2,4,2.1,2646.75609832,3017,9000,89743.0,1,1,9,7,4,2,1,1,0,0,0,1,0,0,0,2,42734.7619048,10,5,10,10_0,18000.0,0,18000.0,0,2,6,202.4,25.3333333333,3.3,0,1,1771.9657701433466,1771.9657701433466,0.0 9453,1895,1894,24,24,65,111,74,31,0,12609,0,0,0,0,0,4,0,2,1.5,2630.77598153,0,0,78621.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,2,0,52414.0,10,5,10,10_0,3000.0,0,0.0,3000,17,18,0.0,0.0,0.0,0,0,295.3276283572244,0.0,295.3276283572244 9454,1903,1902,7,7,58,111,56,70,0,12620,0,0,150,0,2,3,0,2,1.5,2016.63246485,2600,0,64456.0,1,1,9,7,3,1,1,1,0,0,0,1,0,0,1,0,42970.6666667,10,5,10,10_0,9000.0,0,0.0,9000,8,8,43.0,83.0,3.3,0,1,885.9828850716733,0.0,885.9828850716733 -9455,1906,1905,3,3,63,111,74,60,0,12626,0,0,0,0,0,4,0,2,1.5,2592.43359878,3276,0,82768.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,55178.666666699995,10,5,10,10_0,15000.0,0,0.0,15000,2,2,0.0,0.0,0.0,0,0,1476.6381417861223,0.0,1476.6381417861223 +9455,1906,1905,3,3,63,111,74,60,0,12626,0,0,0,0,0,4,0,2,1.5,2592.43359878,3276,0,82768.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,55178.6666667,10,5,10,10_0,15000.0,0,0.0,15000,2,2,0.0,0.0,0.0,0,0,1476.6381417861223,0.0,1476.6381417861223 9456,1907,1906,2,2,41,111,23,43,0,12627,0,99999,0,0,1,5,3,5,2.8,2956.60312607,0,0,125660.0,1,1,9,7,4,2,0,0,0,0,0,1,0,0,0,2,44878.5714286,10,5,10,10_0,19000.0,0,19000.0,0,3,3,0.0,0.0,0.0,1,1,1870.408312929088,1870.408312929088,0.0 -9457,1922,1921,11,11,85,111,75,70,0,12648,0,0,0,0,0,5,0,2,1.5,3115.30578162,2600,0,85388.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,2,0,56925.333333300005,10,5,10,10_0,3000.0,0,0.0,3000,11,14,0.0,0.0,0.0,0,0,295.3276283572244,0.0,295.3276283572244 +9457,1922,1921,11,11,85,111,75,70,0,12648,0,0,0,0,0,5,0,2,1.5,3115.30578162,2600,0,85388.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,2,0,56925.3333333,10,5,10,10_0,3000.0,0,0.0,3000,11,14,0.0,0.0,0.0,0,0,295.3276283572244,0.0,295.3276283572244 9458,1929,1928,1,1,60,111,75,50,0,12656,0,0,0,0,0,4,0,1,1.0,2560.39727771,2074,0,37870.0,6,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,37870.0,10,5,10,10_0,1000.0,0,0.0,1000,1,1,0.0,0.0,0.0,0,0,98.44254278574148,0.0,98.44254278574148 9459,1934,1933,3,3,56,112,42,50,0,12660,0,900,140,0,3,5,0,3,2.0,1019.77534697,6494,0,115451.0,1,1,7,0,5,3,0,1,1,0,0,0,0,0,1,2,57725.5,10,5,10,10_1,26500.0,0,26500.0,0,3,3,263.0,53.3333333333,3.3,0,1,2426.9371454942607,2426.9371454942607,0.0 9460,1948,1947,8,8,56,112,38,41,0,12678,0,270,0,0,2,6,0,2,1.5,1202.23959261,2080,0,71844.0,1,1,8,1,3,2,0,0,0,1,0,0,0,0,0,2,47896.0,10,5,10,10_0,3000.0,0,3000.0,0,6,8,110.0,40.0,3.33,0,1,295.3276283572244,295.3276283572244,0.0 9461,1949,1948,4,4,47,111,62,50,0,12679,0,0,0,0,1,2,0,1,1.0,2748.46297477,2281,0,37541.0,1,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,37541.0,10,5,10,10_0,12572.0,0,12572.0,0,1,2,77.2,70.0,3.3,1,1,1237.619647902342,1237.619647902342,0.0 9462,1972,1971,0,0,56,111,63,50,1,1271,0,130,0,0,2,4,0,2,1.5,1755.36598899,3640,33000,56730.0,1,2,9,7,3,1,0,1,0,0,0,1,0,0,0,1,37820.0,10,5,10,10_0,12000.0,0,12000.0,0,2,2,33.0,16.0,3.3,0,0,1181.3105134288976,1181.3105134288976,0.0 -9463,1973,1972,5,5,42,111,38,12,0,12711,0,0,0,0,2,4,2,4,2.1,2350.20407537,1873,0,81475.0,1,3,10,8,4,2,0,0,0,0,0,0,1,0,1,1,38797.619047600005,10,5,10,10_0,37000.0,0,17000.0,20000,5,6,36.6,40.0,3.3,0,0,3642.3740830724346,1673.523227357605,1968.8508557148293 +9463,1973,1972,5,5,42,111,38,12,0,12711,0,0,0,0,2,4,2,4,2.1,2350.20407537,1873,0,81475.0,1,3,10,8,4,2,0,0,0,0,0,0,1,0,1,1,38797.6190476,10,5,10,10_0,37000.0,0,17000.0,20000,5,6,36.6,40.0,3.3,0,0,3642.3740830724346,1673.523227357605,1968.8508557148293 9464,1975,1974,4,4,62,111,22,60,0,12713,0,100,0,0,1,3,0,1,1.0,3077.89170475,1510,0,40741.0,1,1,8,6,1,1,0,1,0,0,1,0,0,0,0,1,40741.0,10,5,10,10_0,60000.0,0,60000.0,0,4,4,0.0,20.0,3.3,0,1,5906.552567144489,5906.552567144489,0.0 9465,1987,1986,1,1,61,111,37,30,1,12725,0,0,50,1662,1,4,0,1,1.0,2936.83765518,0,12100,92577.0,1,3,10,8,1,1,1,1,0,0,0,0,1,0,1,0,92577.0,10,5,10,10_0,1200.0,0,0.0,1200,11,0,0.0,11.0,1.1,0,0,118.13105134288978,0.0,118.13105134288978 -9466,2004,2003,0,0,61,111,54,60,1,12749,0,0,600,0,2,4,0,2,1.5,1561.27682462,4529,21500,87538.0,1,1,7,5,3,2,1,1,0,0,1,0,0,0,2,0,58358.666666699995,10,5,10,10_0,27000.0,0,0.0,27000,9,0,77.0,50.0,3.3,0,1,2657.9486552150197,0.0,2657.9486552150197 +9466,2004,2003,0,0,61,111,54,60,1,12749,0,0,600,0,2,4,0,2,1.5,1561.27682462,4529,21500,87538.0,1,1,7,5,3,2,1,1,0,0,1,0,0,0,2,0,58358.6666667,10,5,10,10_0,27000.0,0,0.0,27000,9,0,77.0,50.0,3.3,0,1,2657.9486552150197,0.0,2657.9486552150197 9467,2051,2050,4,10,46,111,34,20,0,12818,0,150,0,0,1,3,0,1,1.0,2452.38131732,0,0,45099.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,0,1,45099.0,10,5,10,10_0,10000.0,0,10000.0,0,5,7,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 -9468,2080,2079,7,7,41,111,37,12,0,12853,0,200,100,0,2,7,2,4,2.1,2689.37174746,0,0,89303.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,42525.238095199995,10,5,10,10_0,37000.0,0,17000.0,20000,5,6,36.6,40.0,3.3,0,0,3642.3740830724346,1673.523227357605,1968.8508557148293 +9468,2080,2079,7,7,41,111,37,12,0,12853,0,200,100,0,2,7,2,4,2.1,2689.37174746,0,0,89303.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,42525.2380952,10,5,10,10_0,37000.0,0,17000.0,20000,5,6,36.6,40.0,3.3,0,0,3642.3740830724346,1673.523227357605,1968.8508557148293 9469,2097,2096,2,2,80,111,74,20,0,12872,0,0,0,775,0,3,0,2,1.5,3073.57253798,0,0,78510.0,5,3,10,8,3,1,0,0,0,0,0,0,1,0,0,1,52340.0,10,5,10,10_0,4000.0,0,4000.0,0,1,1,0.0,0.0,0.0,0,0,393.7701711429659,393.7701711429659,0.0 9470,2098,2097,0,12,53,112,37,41,2,12874,0,550,0,0,4,7,2,4,2.5,1337.32463862,2080,2500,99889.0,1,1,7,0,4,4,1,0,1,0,0,0,0,0,0,4,39955.6,10,5,10,10_1,20000.0,0,20000.0,0,5,4,99.5,33.3333333333,3.3,1,0,1831.650675844725,1831.650675844725,0.0 9471,2128,2127,5,11,28,111,37,10,0,12917,0,1000,0,0,2,4,0,2,1.5,2672.54133718,0,0,59759.0,1,2,8,7,3,2,0,0,0,0,0,1,0,0,0,2,39839.3333333,10,5,10,10_0,30000.0,0,30000.0,0,6,12,151.5,42.5,3.3,0,1,2953.2762835722447,2953.2762835722447,0.0 @@ -9485,7 +9485,7 @@ 9483,2244,2243,2,2,60,400,31,10,0,13070,0,750,0,0,2,7,1,3,2.0,1294.0948815,5819,0,114566.0,1,1,0,0,4,3,1,1,1,0,0,0,0,0,1,2,57283.0,10,5,10,10_1,25000.0,0,20000.0,5000,2,2,159.6,56.6666666667,3.3,0,1,2289.563344805906,1831.650675844725,457.9126689611812 9484,2249,2248,4,4,69,111,74,10,0,13082,0,0,0,0,0,5,0,2,1.5,2531.37088646,2184,0,102564.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,68376.0,10,5,10,10_0,3000.0,0,0.0,3000,3,4,0.0,0.0,0.0,0,0,295.3276283572244,0.0,295.3276283572244 9485,2250,2249,10,10,66,400,45,41,0,13083,0,200,0,0,1,6,0,2,1.5,3785.70593872,1665,0,57212.0,5,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,38141.3333333,10,5,10,10_1,40400.0,0,40400.0,0,3,4,0.0,0.0,0.0,0,1,3699.9343652063444,3699.9343652063444,0.0 -9486,2251,2250,9,9,65,111,72,10,0,13084,0,0,0,0,0,5,0,2,1.5,4182.53469629,2090,0,91511.0,5,2,6,5,3,2,0,0,0,0,1,0,0,0,0,2,61007.333333300005,10,5,10,10_0,10000.0,0,10000.0,0,4,5,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 +9486,2251,2250,9,9,65,111,72,10,0,13084,0,0,0,0,0,5,0,2,1.5,4182.53469629,2090,0,91511.0,5,2,6,5,3,2,0,0,0,0,1,0,0,0,0,2,61007.3333333,10,5,10,10_0,10000.0,0,10000.0,0,4,5,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 9487,2256,2255,0,7,54,111,52,20,2,13090,0,0,680,0,2,5,1,2,1.5,3313.12017162,4891,4000,58105.0,1,1,9,7,2,3,0,1,0,0,0,1,0,0,2,1,38736.6666667,10,5,10,10_0,30000.0,0,18000.0,12000,3,6,96.0,28.0,3.3,0,1,2953.2762835722447,1771.9657701433466,1181.3105134288976 9488,2261,2260,2,2,64,211,46,60,0,13095,0,500,0,0,1,5,0,2,1.5,1673.14514896,0,0,62505.0,1,3,4,4,3,2,0,0,0,0,1,0,0,0,1,1,41670.0,10,5,10,10_0,37000.0,0,25000.0,12000,1,1,124.5,90.0,3.3,0,1,3642.3740830724346,2461.063569643537,1181.3105134288976 9489,2272,2271,1,16,51,112,45,41,0,13111,0,400,0,0,1,11,0,2,1.5,3382.56030209,3021,0,67920.0,1,1,7,0,3,3,0,0,1,0,0,0,0,0,1,2,45280.0,10,5,10,10_1,25024.0,0,18000.0,7024,7,7,0.0,0.0,0.0,0,1,2291.7613256169197,1648.4856082602525,643.2757173566674 @@ -9495,39 +9495,39 @@ 9493,2300,2299,1,11,54,120,38,44,2,13161,0,0,140,0,3,5,1,3,2.0,2520.17782057,0,3000,75575.0,1,2,0,2,4,2,0,0,0,1,0,0,0,0,2,0,37787.5,10,5,10,10_0,21000.0,0,0.0,21000,4,9,68.0,108.333333333,3.3,0,1,2067.293398500571,0.0,2067.293398500571 9494,2303,2302,0,0,29,111,38,10,0,13165,0,0,0,680,1,2,0,2,1.5,3277.5569463,0,0,64188.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,42792.0,10,5,10,10_0,0.0,0,0.0,0,0,0,53.0,35.0,5.56,0,0,0.0,0.0,0.0 9495,2304,2303,20,20,79,400,77,12,0,13166,0,0,0,0,0,4,0,2,1.5,1546.27595971,0,0,77678.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,51785.3333333,10,5,10,10_1,20000.0,0,0.0,20000,2,2,0.0,0.0,0.0,0,0,1831.650675844725,0.0,1831.650675844725 -9496,2308,2307,13,13,62,112,75,20,0,13170,0,400,0,0,1,9,0,2,1.5,2393.02891308,3172,0,91163.0,5,1,10,3,3,2,0,0,0,1,0,0,0,0,1,1,60775.333333300005,10,5,10,10_0,11144.0,0,6144.0,5000,5,15,0.0,155.0,3.3,0,1,1097.043696804303,604.8309828755956,492.21271392870733 +9496,2308,2307,13,13,62,112,75,20,0,13170,0,400,0,0,1,9,0,2,1.5,2393.02891308,3172,0,91163.0,5,1,10,3,3,2,0,0,0,1,0,0,0,0,1,1,60775.3333333,10,5,10,10_0,11144.0,0,6144.0,5000,5,15,0.0,155.0,3.3,0,1,1097.043696804303,604.8309828755956,492.21271392870733 9497,2312,2311,4,13,75,221,72,50,0,13176,0,0,0,0,0,3,0,1,1.0,4547.10141727,2374,0,47474.0,5,1,1,2,1,2,0,0,0,1,0,0,0,0,0,2,47474.0,10,5,10,10_0,20781.0,0,20781.0,0,2,2,0.0,0.0,0.0,0,0,2045.7344816304935,2045.7344816304935,0.0 9498,2315,2314,1,1,61,111,43,42,0,13179,0,0,930,0,1,4,0,1,1.0,4564.04471407,9049,0,82112.0,1,2,8,7,1,1,1,1,0,0,0,1,0,0,1,0,82112.0,10,5,10,10_0,18000.0,0,0.0,18000,1,1,45.0,24.0,3.3,1,1,1771.9657701433466,0.0,1771.9657701433466 9499,2317,2316,1,1,67,111,22,70,0,13183,0,0,0,0,2,8,0,2,1.5,3326.06065873,2600,0,78340.0,1,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,52226.6666667,10,5,10,10_0,28000.0,0,28000.0,0,3,3,294.0,120.0,3.31,0,1,2756.391198000761,2756.391198000761,0.0 -9500,2323,2322,6,6,46,111,33,41,0,13192,0,600,0,480,1,3,0,1,1.0,3093.2129378000004,3434,0,49160.0,1,3,7,6,1,1,0,1,0,0,1,0,0,0,0,1,49160.0,10,5,10,10_0,2000.0,0,2000.0,0,1,1,40.5,27.0,3.3,0,1,196.88508557148296,196.88508557148296,0.0 +9500,2323,2322,6,6,46,111,33,41,0,13192,0,600,0,480,1,3,0,1,1.0,3093.2129378,3434,0,49160.0,1,3,7,6,1,1,0,1,0,0,1,0,0,0,0,1,49160.0,10,5,10,10_0,2000.0,0,2000.0,0,1,1,40.5,27.0,3.3,0,1,196.88508557148296,196.88508557148296,0.0 9501,2333,2332,0,0,33,111,45,31,0,13209,0,0,0,238,1,1,0,1,1.0,3897.83358374,1041,0,54543.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,54543.0,10,5,10,10_0,0.0,0,0.0,0,0,0,63.0,80.0,5.57,0,0,0.0,0.0,0.0 9502,2343,2342,8,8,50,112,37,50,0,13220,0,342,0,0,2,5,0,2,1.5,549.106810067,0,0,66452.0,1,2,10,0,3,2,0,1,1,0,0,0,0,0,0,2,44301.3333333,10,5,10,10_1,20000.0,0,20000.0,0,9,11,48.5,30.0,3.3,0,1,1831.650675844725,1831.650675844725,0.0 -9503,2350,2349,2,12,48,111,22,31,0,13229,0,0,0,0,1,4,2,3,2.0,3218.9679969,0,0,83934.0,1,3,8,6,2,1,0,1,0,0,1,0,0,0,1,0,41967.0,10,5,10,10_0,25000.0,0,0.0,25000,3,7,56.1,13.333333333299999,3.3,0,1,2461.063569643537,0.0,2461.063569643537 -9504,2351,2350,0,0,44,111,35,20,0,13231,0,0,0,0,2,5,2,4,2.3,2142.52211448,0,0,93208.0,1,1,10,8,4,0,0,0,0,0,0,0,1,0,0,0,40525.21739130001,10,5,10,10_0,0.0,0,0.0,0,0,0,52.0,32.5,2.2,0,0,0.0,0.0,0.0 -9505,2354,2353,3,3,55,111,38,12,0,13235,0,0,0,0,1,5,0,2,1.5,1537.63668462,0,0,178505.0,1,2,8,7,3,1,0,0,0,0,0,1,0,0,1,0,119003.33333299999,10,5,10,10_0,4976.0,0,0.0,4976,1,1,0.0,0.0,0.0,0,0,489.85009290184956,0.0,489.85009290184956 +9503,2350,2349,2,12,48,111,22,31,0,13229,0,0,0,0,1,4,2,3,2.0,3218.9679969,0,0,83934.0,1,3,8,6,2,1,0,1,0,0,1,0,0,0,1,0,41967.0,10,5,10,10_0,25000.0,0,0.0,25000,3,7,56.1,13.3333333333,3.3,0,1,2461.063569643537,0.0,2461.063569643537 +9504,2351,2350,0,0,44,111,35,20,0,13231,0,0,0,0,2,5,2,4,2.3,2142.52211448,0,0,93208.0,1,1,10,8,4,0,0,0,0,0,0,0,1,0,0,0,40525.2173913,10,5,10,10_0,0.0,0,0.0,0,0,0,52.0,32.5,2.2,0,0,0.0,0.0,0.0 +9505,2354,2353,3,3,55,111,38,12,0,13235,0,0,0,0,1,5,0,2,1.5,1537.63668462,0,0,178505.0,1,2,8,7,3,1,0,0,0,0,0,1,0,0,1,0,119003.333333,10,5,10,10_0,4976.0,0,0.0,4976,1,1,0.0,0.0,0.0,0,0,489.85009290184956,0.0,489.85009290184956 9506,2364,2363,19,19,79,111,74,60,0,13249,0,0,0,0,0,4,0,1,1.0,3067.27028274,2080,0,49390.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,0,1,49390.0,10,5,10,10_0,3000.0,0,3000.0,0,3,3,0.0,0.0,0.0,0,0,295.3276283572244,295.3276283572244,0.0 -9507,2370,2369,1,6,51,111,34,10,2,13258,0,150,0,0,1,4,3,5,2.4,1059.31816806,0,8900,128480.0,1,1,5,4,4,2,0,1,0,0,1,0,0,0,0,2,53533.3333333,10,5,10,10_0,30000.0,0,30000.0,0,7,7,0.0,13.333333333299999,0.0,0,0,2953.2762835722447,2953.2762835722447,0.0 +9507,2370,2369,1,6,51,111,34,10,2,13258,0,150,0,0,1,4,3,5,2.4,1059.31816806,0,8900,128480.0,1,1,5,4,4,2,0,1,0,0,1,0,0,0,0,2,53533.3333333,10,5,10,10_0,30000.0,0,30000.0,0,7,7,0.0,13.3333333333,0.0,0,0,2953.2762835722447,2953.2762835722447,0.0 9508,2371,2370,0,0,27,111,46,12,0,1326,0,0,0,0,2,2,0,2,1.5,3943.09533944,0,0,76218.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,50812.0,10,5,10,10_0,0.0,0,0.0,0,0,0,33.5,17.5,2.24,0,0,0.0,0.0,0.0 9509,2385,2384,6,6,83,112,74,20,0,1328,0,0,0,0,0,8,0,2,1.5,1316.90487246,2080,0,91014.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,2,0,60676.0,10,5,10,10_1,20000.0,0,0.0,20000,2,2,0.0,0.0,0.0,0,0,1831.650675844725,0.0,1831.650675844725 9510,2387,2386,2,2,56,112,37,42,0,13281,0,200,0,0,1,6,0,2,1.5,2202.50086066,2653,0,70499.0,1,1,9,1,3,2,0,1,0,1,0,0,0,0,0,2,46999.3333333,10,5,10,10_0,11400.0,0,11400.0,0,2,2,97.2,20.0,3.3,1,1,1122.244987757453,1122.244987757453,0.0 9511,2398,2397,2,20,47,111,37,60,0,13294,0,80,0,0,1,6,3,5,2.8,1342.20640435,2080,0,113317.0,1,2,8,7,4,1,0,1,0,0,0,1,0,0,0,1,40470.3571429,10,5,10,10_0,25000.0,0,25000.0,0,3,5,0.0,0.0,0.0,0,1,2461.063569643537,2461.063569643537,0.0 -9512,2402,2401,4,9,39,111,38,12,0,13298,0,0,0,0,2,4,2,4,2.1,3573.1362431999996,0,0,89969.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,42842.380952399995,10,5,10,10_0,80000.0,0,80000.0,0,3,5,0.0,45.0,3.3,0,1,7875.403422859317,7875.403422859317,0.0 +9512,2402,2401,4,9,39,111,38,12,0,13298,0,0,0,0,2,4,2,4,2.1,3573.1362432,0,0,89969.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,42842.3809524,10,5,10,10_0,80000.0,0,80000.0,0,3,5,0.0,45.0,3.3,0,1,7875.403422859317,7875.403422859317,0.0 9513,2420,2419,5,6,36,111,34,20,0,13325,0,0,0,0,1,3,0,1,1.0,3084.51030501,0,0,39170.0,1,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,39170.0,10,5,10,10_0,3000.0,0,3000.0,0,13,13,0.0,20.0,1.1,0,0,295.3276283572244,295.3276283572244,0.0 9514,2427,2426,7,7,65,111,23,50,0,13336,0,0,0,0,1,5,0,2,1.5,2181.6634853,2818,0,110610.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,73740.0,10,5,10,10_0,8000.0,0,0.0,8000,8,10,0.0,20.0,1.1,0,0,787.5403422859318,0.0,787.5403422859318 9515,2428,2427,2,4,53,400,21,44,0,13337,0,0,0,0,2,7,0,2,1.5,5346.90160494,0,0,119340.0,1,3,0,0,3,2,0,0,1,0,0,0,0,0,1,1,79560.0,10,5,10,10_1,42000.0,0,37000.0,5000,3,3,0.0,90.0,3.32,0,1,3846.466419273923,3388.5537503127416,457.9126689611812 9516,2434,2433,4,4,97,112,74,10,0,13343,0,0,0,0,0,6,0,1,1.0,3289.42289947,3796,0,50761.0,5,4,6,0,1,1,0,0,1,0,0,0,0,0,1,0,50761.0,10,5,10,10_1,8000.0,0,0.0,8000,6,6,0.0,0.0,0.0,0,0,732.66027033789,0.0,732.66027033789 -9517,2445,2444,0,0,48,112,33,41,1,13358,0,0,150,0,3,6,1,3,2.0,1650.73728691,1040,41000,93008.0,1,1,7,0,4,2,0,0,1,0,0,0,0,0,1,1,46504.0,10,5,10,10_1,38000.0,0,38000.0,0,2,2,249.5,133.33333333299998,3.32,0,1,3480.136284104977,3480.136284104977,0.0 +9517,2445,2444,0,0,48,112,33,41,1,13358,0,0,150,0,3,6,1,3,2.0,1650.73728691,1040,41000,93008.0,1,1,7,0,4,2,0,0,1,0,0,0,0,0,1,1,46504.0,10,5,10,10_1,38000.0,0,38000.0,0,2,2,249.5,133.333333333,3.32,0,1,3480.136284104977,3480.136284104977,0.0 9518,2451,2450,0,1,45,112,55,31,0,13365,0,350,0,0,1,5,0,1,1.0,3237.68158208,88,0,40504.0,1,2,6,0,1,2,1,0,1,0,0,0,0,0,0,2,40504.0,10,5,10,10_1,28000.0,0,28000.0,0,3,3,0.0,20.0,3.3,1,1,2564.310946182615,2564.310946182615,0.0 -9519,2457,2456,2,7,53,112,34,41,2,13375,0,50,0,0,3,7,1,3,2.0,1201.58220466,3136,11000,75850.0,1,1,8,0,4,1,0,1,1,0,0,0,0,0,0,1,37925.0,10,5,10,10_1,38000.0,0,38000.0,0,2,2,249.5,133.33333333299998,3.32,0,1,3480.136284104977,3480.136284104977,0.0 -9520,2461,2460,0,2,33,111,38,20,0,13381,0,210,0,0,2,6,1,3,1.8,1198.00027895,0,0,123298.0,1,2,8,7,4,2,1,1,0,0,0,1,0,0,0,2,68498.88888890001,10,5,10,10_0,16000.0,0,16000.0,0,2,2,1916.1,37.3333333333,3.31,0,1,1575.0806845718637,1575.0806845718637,0.0 +9519,2457,2456,2,7,53,112,34,41,2,13375,0,50,0,0,3,7,1,3,2.0,1201.58220466,3136,11000,75850.0,1,1,8,0,4,1,0,1,1,0,0,0,0,0,0,1,37925.0,10,5,10,10_1,38000.0,0,38000.0,0,2,2,249.5,133.333333333,3.32,0,1,3480.136284104977,3480.136284104977,0.0 +9520,2461,2460,0,2,33,111,38,20,0,13381,0,210,0,0,2,6,1,3,1.8,1198.00027895,0,0,123298.0,1,2,8,7,4,2,1,1,0,0,0,1,0,0,0,2,68498.8888889,10,5,10,10_0,16000.0,0,16000.0,0,2,2,1916.1,37.3333333333,3.31,0,1,1575.0806845718637,1575.0806845718637,0.0 9521,2467,2466,1,13,27,112,23,12,2,13388,0,500,0,0,2,4,0,2,1.5,5710.30022467,0,330,63054.0,1,2,8,0,3,2,1,1,1,0,0,0,0,0,0,2,42036.0,10,5,10,10_1,5000.0,0,5000.0,0,3,12,522.0,145.0,3.3,0,1,457.9126689611812,457.9126689611812,0.0 9522,2470,2469,0,3,33,111,37,20,2,13395,0,0,0,1050,1,4,0,1,1.0,3457.37616831,0,22600,45685.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,0,1,45685.0,10,5,10,10_0,30781.0,0,30781.0,0,2,0,0.0,0.0,0.0,0,0,3030.1599094879084,3030.1599094879084,0.0 9523,2487,2486,0,8,28,221,34,20,0,13423,0,190,0,588,2,4,0,2,1.5,5478.20249728,3692,0,56779.0,1,3,1,3,3,2,0,1,0,1,0,0,0,0,0,2,37852.6666667,10,5,10,10_0,37000.0,0,37000.0,0,1,1,337.8,95.0,3.3,0,1,3642.3740830724346,3642.3740830724346,0.0 9524,2489,2488,6,17,50,111,31,10,0,13426,0,110,0,0,2,5,2,4,2.1,2291.38248242,0,0,590979.0,1,2,10,8,4,2,1,0,0,0,0,0,1,0,1,1,281418.571429,10,5,10,10_0,30000.0,0,12000.0,18000,9,9,109.9,39.0,3.3,1,0,2953.2762835722447,1181.3105134288976,1771.9657701433466 9525,2500,2499,3,3,80,111,77,70,0,13446,0,0,0,0,0,4,0,2,1.5,2016.44169164,5030,0,58020.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,2,0,38680.0,10,5,10,10_0,6500.0,0,0.0,6500,9,9,0.0,0.0,0.0,0,0,639.8765281073196,0.0,639.8765281073196 -9526,2508,2507,6,6,55,111,33,20,0,13459,0,0,200,0,2,4,0,2,1.5,2530.37539277,0,0,81422.0,1,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,54281.333333300005,10,5,10,10_0,31891.0,0,26891.0,5000,10,11,142.4,90.0,5.57,0,0,3139.4311319800813,2647.218418051374,492.21271392870733 +9526,2508,2507,6,6,55,111,33,20,0,13459,0,0,200,0,2,4,0,2,1.5,2530.37539277,0,0,81422.0,1,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,54281.3333333,10,5,10,10_0,31891.0,0,26891.0,5000,10,11,142.4,90.0,5.57,0,0,3139.4311319800813,2647.218418051374,492.21271392870733 9527,2509,2508,5,7,52,112,38,31,0,13461,0,0,320,0,1,4,0,1,1.0,3609.8828373,4954,0,55950.0,1,2,9,0,1,1,0,1,1,0,0,0,0,0,1,0,55950.0,10,5,10,10_1,20000.0,0,0.0,20000,5,5,53.0,10.0,3.3,0,1,1831.650675844725,0.0,1831.650675844725 -9528,2516,2515,1,11,36,120,67,50,2,13473,0,99999,50,0,2,6,1,2,1.5,958.750538089,1612,4000,83027.0,1,1,0,1,2,2,0,1,0,1,0,0,0,0,1,1,55351.333333300005,10,5,10,10_0,14248.0,0,11000.0,3248,4,12,53.0,16.0,1.1,0,0,1402.6093496112444,1082.8679706431562,319.74137896808827 +9528,2516,2515,1,11,36,120,67,50,2,13473,0,99999,50,0,2,6,1,2,1.5,958.750538089,1612,4000,83027.0,1,1,0,1,2,2,0,1,0,1,0,0,0,0,1,1,55351.3333333,10,5,10,10_0,14248.0,0,11000.0,3248,4,12,53.0,16.0,1.1,0,0,1402.6093496112444,1082.8679706431562,319.74137896808827 9529,2520,2519,1,1,65,111,74,20,1,1348,0,0,0,0,0,4,0,2,1.5,1746.16847113,0,22500,171531.0,5,1,9,7,3,2,1,0,0,0,0,1,0,0,1,1,114354.0,10,5,10,10_0,27500.0,0,26000.0,1500,2,2,0.0,0.0,0.0,0,0,2707.169926607891,2559.5061124292783,147.6638141786122 9530,2531,2530,10,11,71,400,78,71,0,13496,0,0,0,0,0,2,0,2,1.5,3213.37726193,2340,0,66883.0,5,1,0,0,5,1,0,0,1,0,0,0,0,0,0,1,44588.6666667,10,5,10,10_1,20000.0,0,20000.0,0,9,9,0.0,0.0,0.0,0,0,1831.650675844725,1831.650675844725,0.0 9531,2538,2537,6,8,45,111,37,20,0,13506,0,350,120,0,2,6,1,3,2.0,1745.29825717,2712,0,93077.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,46538.5,10,5,10,10_0,12000.0,0,2000.0,10000,9,9,15.0,76.6666666667,3.31,0,1,1181.3105134288976,196.88508557148296,984.4254278574147 @@ -9537,7 +9537,7 @@ 9535,2602,2601,10,17,36,112,22,20,0,13590,0,0,0,0,2,5,3,5,2.4,2178.78014471,5019,0,98291.0,1,2,10,2,4,1,0,0,0,1,0,0,0,0,1,0,40954.5833333,10,5,10,10_0,12000.0,0,0.0,12000,4,7,0.0,16.6666666667,2.2,0,1,1181.3105134288976,0.0,1181.3105134288976 9536,2603,2602,0,3,54,111,55,60,2,13591,0,300,0,0,2,5,0,2,1.5,3412.58788244,6188,8800,70352.0,1,4,5,4,3,2,0,0,0,0,1,0,0,0,0,2,46901.3333333,10,5,10,10_0,8716.0,0,8716.0,0,1,3,86.0,40.0,3.3,0,1,858.0252029205227,858.0252029205227,0.0 9537,2606,2605,0,0,30,111,46,10,0,13595,0,0,0,1206,2,3,1,3,1.8,3249.60669286,781,0,67308.0,1,3,10,8,4,0,0,0,0,0,0,0,1,0,0,0,37393.3333333,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -9538,2609,2608,1,2,54,300,46,50,2,136,0,120,0,0,2,7,0,2,1.5,1265.83996469,0,18900,88681.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,59120.666666699995,10,5,10,10_1,16000.0,0,16000.0,0,1,1,73.0,45.0,3.3,0,1,1465.32054067578,1465.32054067578,0.0 +9538,2609,2608,1,2,54,300,46,50,2,136,0,120,0,0,2,7,0,2,1.5,1265.83996469,0,18900,88681.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,0,2,59120.6666667,10,5,10,10_1,16000.0,0,16000.0,0,1,1,73.0,45.0,3.3,0,1,1465.32054067578,1465.32054067578,0.0 9539,2611,2610,7,21,60,112,74,41,0,13600,0,0,0,0,0,5,0,2,1.5,2268.12123887,3380,0,56063.0,5,1,9,0,3,3,0,0,1,0,0,0,0,0,1,2,37375.3333333,10,5,10,10_1,5000.0,0,5000.0,0,14,14,0.0,0.0,0.0,0,0,457.9126689611812,457.9126689611812,0.0 9540,2617,2616,13,17,55,111,77,60,0,13606,0,0,710,0,1,5,0,2,1.5,3571.78578163,6531,0,58213.0,5,1,8,7,3,3,0,0,0,0,0,1,0,0,3,0,38808.6666667,10,5,10,10_0,12000.0,0,0.0,12000,9,9,0.0,0.0,0.0,0,1,1181.3105134288976,0.0,1181.3105134288976 9541,2621,2620,0,5,42,112,22,60,2,13612,0,99999,0,0,1,7,2,4,2.1,7691.75399302,0,6000,99128.0,1,2,9,2,4,2,0,0,0,1,0,0,0,0,0,2,47203.8095238,10,5,10,10_0,15000.0,0,15000.0,0,4,7,0.0,0.0,0.0,0,1,1476.6381417861223,1476.6381417861223,0.0 @@ -9545,7 +9545,7 @@ 9543,2632,2631,7,7,47,112,31,10,0,13624,0,1600,0,0,1,6,0,1,1.0,1889.33611669,4054,0,80392.0,1,1,8,0,1,1,1,1,1,0,0,0,0,0,0,1,80392.0,10,5,10,10_1,10000.0,0,10000.0,0,7,3,37.0,10.0,3.3,0,1,915.8253379223625,915.8253379223625,0.0 9544,2642,2641,13,13,63,111,21,50,0,13635,0,99999,99999,0,2,2,0,2,1.5,3192.46570299,0,0,75550.0,1,2,10,8,3,2,0,1,0,0,0,0,1,0,1,1,50366.6666667,10,5,10,10_0,13500.0,0,7500.0,6000,1,1,0.0,40.0,3.3,0,1,1328.9743276075098,738.3190708930612,590.6552567144488 9545,2645,2644,9,11,56,111,43,20,0,13639,0,99999,100119,0,2,9,3,4,2.5,992.718243629,2081,0,100720.0,1,1,9,7,2,3,0,1,0,0,0,1,0,0,2,1,40288.0,10,5,10,10_0,24672.0,0,14672.0,10000,2,0,60.0,43.5,3.3,0,1,2428.774415609814,1444.348987752399,984.4254278574147 -9546,2654,2653,0,0,47,112,37,10,1,13654,0,199998,0,0,2,4,2,4,2.1,3199.52112468,0,20000,95357.0,1,1,9,3,4,2,0,1,0,1,0,0,0,0,0,2,45408.095238099995,10,5,10,10_0,8000.0,0,8000.0,0,9,0,22.0,20.6666666667,3.3,0,1,787.5403422859318,787.5403422859318,0.0 +9546,2654,2653,0,0,47,112,37,10,1,13654,0,199998,0,0,2,4,2,4,2.1,3199.52112468,0,20000,95357.0,1,1,9,3,4,2,0,1,0,1,0,0,0,0,0,2,45408.0952381,10,5,10,10_0,8000.0,0,8000.0,0,9,0,22.0,20.6666666667,3.3,0,1,787.5403422859318,787.5403422859318,0.0 9547,2700,2699,1,1,44,120,46,31,0,13721,0,280,0,0,2,5,0,2,1.5,4974.6524578,3588,0,63573.0,1,2,0,0,3,2,1,0,1,0,0,0,0,0,0,2,42382.0,10,5,10,10_1,26000.0,0,26000.0,0,2,3,765.2,35.0,3.3,1,1,2381.145878598142,2381.145878598142,0.0 9548,2709,2708,2,2,52,111,54,43,0,13730,0,275,0,0,2,7,0,2,1.5,4261.31650178,1560,0,60847.0,1,1,4,4,3,2,1,1,0,0,1,0,0,0,0,2,40564.6666667,10,5,10,10_0,15000.0,0,15000.0,0,2,2,33.0,35.0,3.3,0,1,1476.6381417861223,1476.6381417861223,0.0 9549,2710,2709,2,4,49,112,31,10,0,13731,0,700,300,0,2,5,2,4,2.1,2462.41246383,2081,0,129349.0,1,2,9,0,4,2,1,1,1,0,0,0,0,0,1,1,61594.7619048,10,5,10,10_1,45000.0,0,23000.0,22000,8,13,204.8,31.3333333333,3.3,0,1,4121.214020650631,2106.3982772214335,2014.8157434291975 @@ -9555,7 +9555,7 @@ 9553,2768,2767,3,8,64,400,31,10,0,13808,0,99999,0,0,1,7,0,1,1.0,1713.71584255,6335,0,92210.0,5,1,0,0,1,9,0,0,1,0,0,0,0,0,2,7,92210.0,10,5,10,10_1,1500.0,0,500.0,1000,7,9,285.7,126.666666667,3.31,0,1,137.37380068835438,45.791266896118124,91.58253379223625 9554,2772,2771,4,4,62,111,74,50,0,13811,0,0,0,0,0,5,0,2,1.5,3162.30242632,0,0,70596.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,47064.0,10,5,10,10_0,4400.0,0,2400.0,2000,1,1,0.0,0.0,0.0,0,0,433.1471882572625,236.26210268577955,196.88508557148296 9555,2774,2773,0,3,35,111,23,10,0,13813,0,0,0,0,2,5,2,4,2.1,3486.64322448,0,0,118752.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,56548.5714286,10,5,10,10_0,7000.0,0,7000.0,0,2,4,99.5,37.5,2.25,0,0,689.0977995001903,689.0977995001903,0.0 -9556,2775,2774,1,6,42,111,22,60,0,13814,0,350,0,0,1,5,3,5,2.6,2824.6679456,0,0,160899.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,61884.23076919999,10,5,10,10_0,19000.0,0,19000.0,0,3,3,0.0,0.0,0.0,1,1,1870.408312929088,1870.408312929088,0.0 +9556,2775,2774,1,6,42,111,22,60,0,13814,0,350,0,0,1,5,3,5,2.6,2824.6679456,0,0,160899.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,0,2,61884.2307692,10,5,10,10_0,19000.0,0,19000.0,0,3,3,0.0,0.0,0.0,1,1,1870.408312929088,1870.408312929088,0.0 9557,2778,2777,0,0,37,111,37,20,0,13817,0,0,0,822,2,2,0,2,1.5,3073.73434503,0,0,58881.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,39254.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,35.0,1.1,0,0,0.0,0.0,0.0 9558,2785,2784,5,5,42,300,31,10,0,13824,0,700,0,0,2,6,1,3,1.8,1358.74183821,3640,0,100499.0,1,2,0,0,4,2,1,1,1,0,0,0,0,0,0,2,55832.7777778,10,5,10,10_1,9000.0,0,9000.0,0,9,9,127.6,31.3333333333,3.3,1,1,824.2428041301263,824.2428041301263,0.0 9559,2799,2798,5,6,44,111,31,31,0,13842,0,0,100,1391,1,4,2,3,2.0,3553.48834807,0,0,86376.0,1,3,10,8,2,2,0,1,0,0,0,0,1,0,2,0,43188.0,10,5,10,10_0,0.0,0,0.0,0,0,0,27.0,21.6666666667,3.3,0,1,0.0,0.0,0.0 @@ -9567,14 +9567,14 @@ 9565,2831,2830,10,10,58,112,42,20,0,13885,0,160,120,0,2,6,0,2,1.5,1378.15520509,5224,0,63421.0,1,1,6,0,3,2,0,1,1,0,0,0,0,0,1,1,42280.6666667,10,5,10,10_1,30000.0,0,13000.0,17000,7,7,221.0,60.0,3.3,0,1,2747.4760137670874,1190.572939299071,1556.9030744680163 9566,2839,2838,3,4,52,111,33,20,0,13896,0,400,200,0,2,9,2,4,2.5,1541.73884224,2966,0,141945.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,1,1,56778.0,10,5,10,10_0,30892.0,0,20000.0,10892,2,5,42.5,26.25,3.3,1,1,3041.0870317371255,1968.8508557148293,1072.2361760222961 9567,2850,2849,2,2,52,111,23,10,0,13908,0,99999,0,0,1,4,0,1,1.0,2674.32253103,7769,0,67722.0,1,1,9,7,1,1,1,1,0,0,0,1,0,0,0,1,67722.0,10,5,10,10_0,15000.0,0,15000.0,0,3,3,79.3,95.0,3.3,1,1,1476.6381417861223,1476.6381417861223,0.0 -9568,2853,2852,6,17,40,111,38,12,0,13910,0,0,48,0,2,3,0,2,1.5,2512.02542346,0,0,88243.0,1,2,10,8,3,1,0,1,0,0,0,0,1,0,1,0,58828.666666699995,10,5,10,10_0,10000.0,0,0.0,10000,7,8,0.0,0.0,0.0,0,1,984.4254278574147,0.0,984.4254278574147 +9568,2853,2852,6,17,40,111,38,12,0,13910,0,0,48,0,2,3,0,2,1.5,2512.02542346,0,0,88243.0,1,2,10,8,3,1,0,1,0,0,0,0,1,0,1,0,58828.6666667,10,5,10,10_0,10000.0,0,0.0,10000,7,8,0.0,0.0,0.0,0,1,984.4254278574147,0.0,984.4254278574147 9569,2856,2855,0,1,58,111,38,31,2,13914,0,0,90,460,2,2,0,2,1.5,4215.12306736,2879,14500,73296.0,1,3,10,8,3,1,1,1,0,0,0,0,1,0,1,0,48864.0,10,5,10,10_0,13000.0,0,0.0,13000,7,0,179.0,135.0,5.5,0,1,1279.7530562146392,0.0,1279.7530562146392 -9570,2866,2865,4,4,63,111,74,12,0,13927,0,0,0,0,0,6,0,2,1.5,1546.0274499000002,2964,0,81774.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,54516.0,10,5,10,10_0,600.0,0,0.0,600,4,4,0.0,0.0,0.0,0,0,59.06552567144489,0.0,59.06552567144489 +9570,2866,2865,4,4,63,111,74,12,0,13927,0,0,0,0,0,6,0,2,1.5,1546.0274499,2964,0,81774.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,54516.0,10,5,10,10_0,600.0,0,0.0,600,4,4,0.0,0.0,0.0,0,0,59.06552567144489,0.0,59.06552567144489 9571,2873,2872,5,6,49,111,37,12,0,13935,0,0,0,0,3,6,4,6,3.3,1037.25790722,0,0,155115.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,0,2,47004.5454545,10,5,10,10_0,5891.0,0,5891.0,0,2,3,137.5,58.75,5.5,0,1,579.925019550803,579.925019550803,0.0 9572,2905,2904,0,0,54,111,38,31,0,13976,0,0,0,500,2,3,1,2,1.5,2747.05745151,0,0,58360.0,1,3,10,8,2,0,0,0,0,0,0,0,1,0,0,0,38906.6666667,10,5,10,10_0,0.0,0,0.0,0,0,0,46.2,90.0,5.56,0,0,0.0,0.0,0.0 9573,2908,2907,3,3,63,111,77,60,0,1398,0,0,0,0,0,2,0,1,1.0,3119.6973769,2474,0,48613.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,0,1,48613.0,10,5,10,10_0,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 9574,2918,2917,0,3,50,300,21,50,2,13991,0,700,0,0,2,4,0,2,1.5,3034.97031877,0,13000,90048.0,1,1,0,0,3,1,0,1,1,0,0,0,0,0,0,1,60032.0,10,5,10,10_1,16000.0,0,16000.0,0,2,2,136.5,37.0,3.3,0,1,1465.32054067578,1465.32054067578,0.0 -9575,2931,2930,3,7,33,111,37,12,0,14014,0,0,0,450,2,3,2,4,2.1,2942.66306661,0,0,185923.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,88534.76190479999,10,5,10,10_0,10000.0,0,10000.0,0,4,6,38.8,35.0,3.3,0,0,984.4254278574147,984.4254278574147,0.0 +9575,2931,2930,3,7,33,111,37,12,0,14014,0,0,0,450,2,3,2,4,2.1,2942.66306661,0,0,185923.0,1,3,10,8,4,1,0,0,0,0,0,0,1,0,0,1,88534.7619048,10,5,10,10_0,10000.0,0,10000.0,0,4,6,38.8,35.0,3.3,0,0,984.4254278574147,984.4254278574147,0.0 9576,2953,2952,2,2,72,111,74,12,0,14044,0,0,0,0,0,4,0,2,1.5,2243.03111734,0,0,58787.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,39191.3333333,10,5,10,10_0,15000.0,0,15000.0,0,4,4,0.0,0.0,0.0,0,0,1476.6381417861223,1476.6381417861223,0.0 9577,2955,2954,2,2,60,111,74,31,0,14046,0,0,0,0,0,3,0,2,1.5,2964.98812402,0,0,79725.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,53150.0,10,5,10,10_0,4400.0,0,2400.0,2000,1,1,0.0,0.0,0.0,0,0,433.1471882572625,236.26210268577955,196.88508557148296 9578,2958,2957,0,0,58,111,22,41,1,14050,0,40,0,0,2,5,1,3,2.0,1433.38384199,203,25344,122501.0,1,1,6,4,4,3,1,1,0,0,1,0,0,0,1,2,61250.5,10,5,10,10_0,7268.0,0,2500.0,4768,1,1,0.0,10.0,3.3,1,1,715.480400966769,246.10635696435367,469.37404400241536 @@ -9586,12 +9586,12 @@ 9584,3033,3032,2,2,64,112,74,20,0,14142,0,0,0,0,0,8,0,2,1.5,1504.80611008,3016,0,61918.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,1,1,41278.6666667,10,5,10,10_1,35000.0,0,25000.0,10000,3,3,0.0,0.0,0.0,0,0,3205.3886827282686,2289.563344805906,915.8253379223625 9585,3034,3033,2,2,59,111,31,10,0,14143,0,0,180,0,1,5,0,1,1.0,3116.03554206,2602,0,74802.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,1,0,74802.0,10,5,10,10_0,4400.0,0,0.0,4400,2,2,0.0,90.0,5.57,0,0,433.1471882572625,0.0,433.1471882572625 9586,3047,3046,0,0,86,111,74,20,0,14159,0,0,0,0,0,5,0,1,1.0,2403.55146211,0,0,39803.0,5,1,8,7,1,0,0,0,0,0,0,1,0,0,0,0,39803.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -9587,3054,3053,0,0,51,111,54,20,0,14167,0,0,0,582,2,2,0,2,1.5,2909.5966608000003,0,0,75433.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,50288.6666667,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,110.0,5.57,0,0,0.0,0.0,0.0 +9587,3054,3053,0,0,51,111,54,20,0,14167,0,0,0,582,2,2,0,2,1.5,2909.5966608,0,0,75433.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,50288.6666667,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,110.0,5.57,0,0,0.0,0.0,0.0 9588,3060,3059,1,4,60,112,72,50,2,14177,0,0,80,0,0,5,0,2,1.5,2102.82494603,3164,6000,126475.0,5,2,6,0,3,2,0,0,1,0,0,0,0,0,1,1,84316.6666667,10,5,10,10_1,38000.0,0,30000.0,8000,3,4,0.0,0.0,0.0,0,0,3480.136284104977,2747.4760137670874,732.66027033789 9589,3069,3068,3,4,38,111,37,10,0,14189,0,220,0,0,1,4,2,4,2.1,2096.10556335,2132,0,101696.0,1,3,7,5,4,2,0,0,0,0,1,0,0,0,0,2,48426.6666667,10,5,10,10_0,27000.0,0,27000.0,0,2,2,0.0,2.5,0.0,0,1,2657.9486552150197,2657.9486552150197,0.0 9590,3072,3071,13,13,67,400,74,33,0,14194,0,0,0,0,0,6,0,2,1.5,2641.26606547,0,0,62102.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,1,1,41401.3333333,10,5,10,10_1,8000.0,0,6000.0,2000,11,12,0.0,0.0,0.0,0,0,732.66027033789,549.4952027534175,183.1650675844725 9591,3084,3083,11,11,86,111,74,12,0,14204,0,0,0,932,0,4,0,1,1.0,3018.28447481,0,0,66565.0,5,3,8,7,1,1,0,0,0,0,0,1,0,0,1,0,66565.0,10,5,10,10_0,6000.0,0,0.0,6000,10,11,0.0,0.0,0.0,0,0,590.6552567144488,0.0,590.6552567144488 -9592,3085,3084,0,0,42,111,47,10,0,14205,0,0,0,0,2,5,1,3,1.8,1317.07270817,0,0,76606.0,1,1,6,4,4,0,0,0,0,0,1,0,0,0,0,0,42558.8888889,10,5,10,10_0,11952.0,0,0.0,11952,1,4,35.0,12.333333333299999,0.0,1,1,1176.585271375182,0.0,1176.585271375182 +9592,3085,3084,0,0,42,111,47,10,0,14205,0,0,0,0,2,5,1,3,1.8,1317.07270817,0,0,76606.0,1,1,6,4,4,0,0,0,0,0,1,0,0,0,0,0,42558.8888889,10,5,10,10_0,11952.0,0,0.0,11952,1,4,35.0,12.3333333333,0.0,1,1,1176.585271375182,0.0,1176.585271375182 9593,3090,3089,1,1,81,111,72,70,1,14211,0,0,0,0,0,6,0,2,1.5,2714.46188422,0,33200,100988.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,67325.3333333,10,5,10,10_0,25173.0,0,15311.0,9862,5,7,0.0,0.0,0.0,0,0,2478.09412954547,1507.2537725924876,970.8403569529825 9594,3115,3114,4,4,59,112,54,50,0,14247,0,0,0,0,3,5,1,3,2.0,1612.37502854,2295,0,79020.0,1,1,6,1,4,1,0,0,0,1,0,0,0,0,0,1,39510.0,10,5,10,10_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,1,1181.3105134288976,1181.3105134288976,0.0 9595,3117,3116,5,5,39,400,22,50,0,14251,0,0,0,0,2,6,2,4,2.1,2345.73759045,0,0,89574.0,1,2,0,0,4,2,1,0,1,0,0,0,0,0,0,2,42654.2857143,10,5,10,10_1,42716.0,0,42716.0,0,2,3,93.5,13.5,3.31,1,1,3912.039513469164,3912.039513469164,0.0 @@ -9601,15 +9601,15 @@ 9599,3140,3139,5,5,45,400,43,33,0,14282,0,350,150,600,2,5,0,2,1.5,2367.95704524,326,0,58381.0,1,3,0,0,3,2,0,1,1,0,0,0,0,0,1,1,38920.6666667,10,5,10,10_1,25639.0,0,13572.0,12067,1,5,0.0,0.0,0.0,0,0,2348.0845838991454,1242.9581486282304,1105.1264352709147 9600,3156,3155,2,6,86,211,86,41,0,14305,0,0,0,0,0,8,0,1,1.0,2286.7249881,0,0,53700.0,6,1,4,4,1,1,0,0,0,0,1,0,0,0,1,0,53700.0,10,5,10,10_0,6000.0,0,0.0,6000,10,11,0.0,0.0,0.0,0,0,590.6552567144488,0.0,590.6552567144488 9601,3163,3162,2,11,64,112,72,60,0,14313,0,0,0,0,0,7,0,2,1.5,3030.36505194,6062,0,57327.0,5,1,10,4,3,2,0,0,0,0,1,0,0,0,0,2,38218.0,10,5,10,10_0,20000.0,0,20000.0,0,10,10,0.0,0.0,0.0,0,0,1968.8508557148293,1968.8508557148293,0.0 -9602,3164,3163,4,4,35,111,37,10,0,14314,0,1200,0,0,2,6,2,4,2.1,1393.07819724,4486,0,107294.0,1,2,8,7,4,3,0,1,0,0,0,1,0,0,0,3,51092.380952399995,10,5,10,10_0,17000.0,0,17000.0,0,4,4,175.5,43.3333333333,3.3,0,1,1673.523227357605,1673.523227357605,0.0 -9603,3173,3172,2,5,29,111,37,10,0,14325,0,0,0,533,2,2,0,2,1.5,3112.13410877,0,0,82115.0,1,3,10,8,3,1,0,0,0,0,0,0,1,1,0,1,54743.333333300005,10,5,10,10_0,10000.0,0,10000.0,0,2,5,486.6,300.0,5.56,0,0,984.4254278574147,984.4254278574147,0.0 -9604,3178,3177,3,3,63,111,74,12,0,14330,0,0,0,0,0,7,0,2,1.5,2060.93303062,0,0,93100.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,62066.666666699995,10,5,10,10_0,24000.0,0,18000.0,6000,2,2,0.0,0.0,0.0,0,0,2362.621026857795,1771.9657701433466,590.6552567144488 -9605,3180,3179,6,6,77,111,74,12,0,14333,0,0,0,0,0,7,0,2,1.5,2877.44131756,3569,0,89527.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,1,1,59684.666666699995,10,5,10,10_0,17353.0,0,16353.0,1000,5,5,0.0,0.0,0.0,0,0,1708.2734449609718,1609.8309021752304,98.44254278574148 +9602,3164,3163,4,4,35,111,37,10,0,14314,0,1200,0,0,2,6,2,4,2.1,1393.07819724,4486,0,107294.0,1,2,8,7,4,3,0,1,0,0,0,1,0,0,0,3,51092.3809524,10,5,10,10_0,17000.0,0,17000.0,0,4,4,175.5,43.3333333333,3.3,0,1,1673.523227357605,1673.523227357605,0.0 +9603,3173,3172,2,5,29,111,37,10,0,14325,0,0,0,533,2,2,0,2,1.5,3112.13410877,0,0,82115.0,1,3,10,8,3,1,0,0,0,0,0,0,1,1,0,1,54743.3333333,10,5,10,10_0,10000.0,0,10000.0,0,2,5,486.6,300.0,5.56,0,0,984.4254278574147,984.4254278574147,0.0 +9604,3178,3177,3,3,63,111,74,12,0,14330,0,0,0,0,0,7,0,2,1.5,2060.93303062,0,0,93100.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,62066.6666667,10,5,10,10_0,24000.0,0,18000.0,6000,2,2,0.0,0.0,0.0,0,0,2362.621026857795,1771.9657701433466,590.6552567144488 +9605,3180,3179,6,6,77,111,74,12,0,14333,0,0,0,0,0,7,0,2,1.5,2877.44131756,3569,0,89527.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,1,1,59684.6666667,10,5,10,10_0,17353.0,0,16353.0,1000,5,5,0.0,0.0,0.0,0,0,1708.2734449609718,1609.8309021752304,98.44254278574148 9606,3194,3193,2,2,46,112,38,50,0,1436,0,850,100,0,2,3,0,2,1.5,1068.79987482,5848,0,60216.0,1,3,9,1,3,2,0,1,0,1,0,0,0,0,1,1,40144.0,10,5,10,10_0,35000.0,0,25000.0,10000,1,0,0.0,30.0,3.3,1,1,3445.4889975009514,2461.063569643537,984.4254278574147 9607,3197,3196,3,3,62,111,74,12,0,14364,0,0,0,0,0,4,0,2,1.5,3413.80296441,0,0,63206.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,0,2,42137.3333333,10,5,10,10_0,18000.0,0,18000.0,0,6,6,0.0,0.0,0.0,0,0,1771.9657701433466,1771.9657701433466,0.0 9608,3199,3198,2,2,56,112,42,41,0,14367,0,99999,0,0,1,11,0,2,1.5,1427.98951729,2605,0,70403.0,1,1,6,2,3,2,0,1,0,1,0,0,0,0,0,2,46935.3333333,10,5,10,10_0,11400.0,0,11400.0,0,2,2,97.2,20.0,3.3,1,1,1122.244987757453,1122.244987757453,0.0 9609,3202,3201,0,0,28,111,38,12,0,14371,0,0,0,875,1,2,0,1,1.0,3747.71448137,0,0,38030.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,38030.0,10,5,10,10_0,0.0,0,0.0,0,0,0,12.0,40.0,5.56,0,0,0.0,0.0,0.0 -9610,3203,3202,0,0,36,111,31,12,0,14374,0,0,0,0,2,5,1,3,1.8,1793.68437833,0,0,259103.0,1,2,5,4,4,0,0,0,0,0,1,0,0,0,0,0,143946.11111099998,10,5,10,10_0,15000.0,0,0.0,15000,5,5,0.0,20.0,1.1,0,0,1476.6381417861223,0.0,1476.6381417861223 +9610,3203,3202,0,0,36,111,31,12,0,14374,0,0,0,0,2,5,1,3,1.8,1793.68437833,0,0,259103.0,1,2,5,4,4,0,0,0,0,0,1,0,0,0,0,0,143946.111111,10,5,10,10_0,15000.0,0,0.0,15000,5,5,0.0,20.0,1.1,0,0,1476.6381417861223,0.0,1476.6381417861223 9611,3210,3209,0,0,32,111,38,20,1,14381,0,0,0,0,1,4,1,2,1.5,2664.82859806,0,22000,74570.0,1,1,10,8,2,1,0,0,0,0,0,0,1,0,0,1,49713.3333333,10,5,10,10_0,7644.0,0,7644.0,0,1,4,69.5,75.0,3.3,0,0,752.4947970542079,752.4947970542079,0.0 9612,3225,3224,1,4,33,112,38,12,2,14405,0,140,0,0,2,4,1,3,1.8,1332.00278091,0,17000,81259.0,1,1,10,4,4,1,1,1,0,0,1,0,0,0,0,1,45143.8888889,10,5,10,10_0,25000.0,0,25000.0,0,4,4,34.0,7.0,0.0,0,1,2461.063569643537,2461.063569643537,0.0 9613,3231,3230,1,1,46,111,33,12,0,14413,0,0,0,0,2,5,0,2,1.5,1799.67289517,1404,0,78680.0,1,2,9,7,3,1,0,0,0,0,0,1,0,0,0,1,52453.3333333,10,5,10,10_0,22500.0,0,22500.0,0,2,2,0.0,10.0,0.0,1,0,2214.957212679183,2214.957212679183,0.0 @@ -9625,21 +9625,21 @@ 9623,3320,3319,0,0,40,111,22,20,1,14541,0,0,0,0,1,5,2,4,2.1,4352.19374242,2402,72000,224265.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,1,1,106792.857143,10,5,10,10_0,8500.0,0,7000.0,1500,2,12,0.0,0.0,0.0,0,0,836.7616136788025,689.0977995001903,147.6638141786122 9624,3325,3324,1,2,59,221,74,42,2,1455,0,0,0,0,0,5,0,1,1.0,2998.80000957,0,10500,37817.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,0,1,37817.0,10,5,10,10_0,10716.0,0,10716.0,0,1,9,0.0,0.0,0.0,0,0,1054.9102884920057,1054.9102884920057,0.0 9625,3332,3331,7,7,69,111,74,60,0,14557,0,0,0,0,0,5,0,2,1.5,3265.41075239,4731,0,58127.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,38751.3333333,10,5,10,10_0,4000.0,0,4000.0,0,6,7,0.0,0.0,0.0,0,0,393.7701711429659,393.7701711429659,0.0 -9626,3338,3337,4,4,48,111,22,10,0,14564,0,0,0,0,2,10,2,4,2.1,2478.50823833,2606,0,98479.0,1,1,10,8,4,3,0,0,0,0,0,0,1,0,2,1,46894.761904800005,10,5,10,10_0,9676.0,0,0.0,9676,2,3,151.4,90.0,2.24,0,1,952.5300439948345,0.0,952.5300439948345 +9626,3338,3337,4,4,48,111,22,10,0,14564,0,0,0,0,2,10,2,4,2.1,2478.50823833,2606,0,98479.0,1,1,10,8,4,3,0,0,0,0,0,0,1,0,2,1,46894.7619048,10,5,10,10_0,9676.0,0,0.0,9676,2,3,151.4,90.0,2.24,0,1,952.5300439948345,0.0,952.5300439948345 9627,3346,3345,16,16,75,112,74,41,0,14575,0,300,0,0,1,5,0,2,1.5,1896.91911838,3796,0,58532.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,1,1,39021.3333333,10,5,10,10_1,101000.0,0,65000.0,36000,4,4,0.0,0.0,0.0,1,0,9249.835913015862,5952.864696495356,3296.971216520505 9628,3360,3359,13,13,57,111,34,20,0,14594,0,0,0,0,1,5,0,1,1.0,4008.92154132,1040,0,41973.0,1,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,41973.0,10,5,10,10_0,13000.0,0,13000.0,0,10,12,0.0,20.0,3.3,0,1,1279.7530562146392,1279.7530562146392,0.0 9629,3369,3368,0,0,62,111,74,12,1,14604,0,0,0,0,0,7,0,2,1.5,1969.05776724,10987,15200,72476.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,48317.3333333,10,5,10,10_0,24000.0,0,18000.0,6000,2,2,0.0,0.0,0.0,0,0,2362.621026857795,1771.9657701433466,590.6552567144488 9630,3371,3370,0,0,31,300,47,31,0,14609,0,0,0,0,2,3,0,2,1.5,2249.32296665,468,0,234348.0,1,2,0,0,3,0,0,0,1,0,0,0,0,0,0,0,156232.0,10,5,10,10_1,14952.0,0,0.0,14952,1,7,978.6,165.0,3.3,1,1,1369.3420452615164,0.0,1369.3420452615164 9631,3379,3378,7,7,59,300,34,20,0,14617,0,500,0,0,1,4,0,1,1.0,1723.95843998,3120,0,40019.0,1,2,0,0,1,1,0,1,1,0,0,0,0,0,0,1,40019.0,10,5,10,10_1,35000.0,0,35000.0,0,3,3,0.0,0.0,0.0,1,0,3205.3886827282686,3205.3886827282686,0.0 9632,3383,3382,12,12,73,112,74,44,0,14622,0,0,0,0,0,6,0,2,1.5,1501.03526551,2159,0,57707.0,5,1,8,0,3,1,0,0,1,0,0,0,0,0,0,1,38471.3333333,10,5,10,10_1,11000.0,0,11000.0,0,8,8,0.0,0.0,0.0,0,0,1007.4078717145987,1007.4078717145987,0.0 -9633,3397,3396,1,1,44,211,46,31,1,14640,0,1000,0,0,2,4,0,2,1.5,2067.21767281,1518,29000,84508.0,1,2,1,2,3,2,1,1,0,1,0,0,0,0,0,2,56338.666666699995,10,5,10,10_0,49336.0,0,49336.0,0,1,4,292.0,35.0,3.3,1,0,4856.761290877342,4856.761290877342,0.0 -9634,3408,3407,0,0,70,111,77,70,0,14658,0,0,0,1000,0,3,0,1,1.0,2642.7275511999997,0,0,46060.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,46060.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -9635,3415,3414,1,1,61,111,38,12,1,14669,0,0,0,0,1,5,0,2,1.5,1819.98004298,0,19500,92936.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,61957.333333300005,10,5,10,10_0,10000.0,0,10000.0,0,1,1,42.5,55.0,5.56,0,0,984.4254278574147,984.4254278574147,0.0 +9633,3397,3396,1,1,44,211,46,31,1,14640,0,1000,0,0,2,4,0,2,1.5,2067.21767281,1518,29000,84508.0,1,2,1,2,3,2,1,1,0,1,0,0,0,0,0,2,56338.6666667,10,5,10,10_0,49336.0,0,49336.0,0,1,4,292.0,35.0,3.3,1,0,4856.761290877342,4856.761290877342,0.0 +9634,3408,3407,0,0,70,111,77,70,0,14658,0,0,0,1000,0,3,0,1,1.0,2642.7275512,0,0,46060.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,46060.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +9635,3415,3414,1,1,61,111,38,12,1,14669,0,0,0,0,1,5,0,2,1.5,1819.98004298,0,19500,92936.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,61957.3333333,10,5,10,10_0,10000.0,0,10000.0,0,1,1,42.5,55.0,5.56,0,0,984.4254278574147,984.4254278574147,0.0 9636,3416,3415,6,6,60,300,21,70,0,14670,0,0,0,0,1,4,0,2,1.5,1793.30272427,2163,0,59221.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,39480.6666667,10,5,10,10_1,42000.0,0,42000.0,0,5,7,124.5,80.0,3.3,0,1,3846.466419273923,3846.466419273923,0.0 9637,3418,3417,4,4,66,112,43,10,0,14672,0,0,0,0,1,7,0,2,1.5,1036.5745407,1560,0,59505.0,1,1,7,1,3,2,0,0,0,1,0,0,0,0,1,1,39670.0,10,5,10,10_0,37000.0,0,25000.0,12000,1,1,124.5,90.0,3.3,0,1,3642.3740830724346,2461.063569643537,1181.3105134288976 9638,3425,3424,1,1,24,111,43,33,1,14680,0,150,0,0,2,4,0,2,1.5,2275.67344211,1958,20312,138805.0,1,2,9,7,3,2,1,0,0,0,0,1,0,0,0,2,92536.6666667,10,5,10,10_0,16144.0,0,16144.0,0,1,3,129.1,58.5,0.0,1,1,1589.2564107330104,1589.2564107330104,0.0 -9639,3439,3438,7,7,44,111,37,10,0,14700,0,700,0,0,2,6,3,5,2.6,1550.8522105,0,0,165410.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,63619.23076919999,10,5,10,10_0,6884.0,0,6884.0,0,0,1,53.0,10.6,3.31,0,1,677.6784645370443,677.6784645370443,0.0 -9640,3443,3442,11,16,67,300,37,20,0,14705,0,500,0,0,2,5,1,3,1.8,1252.69157276,2444,0,110990.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,61661.11111109999,10,5,10,10_1,30000.0,0,30000.0,0,2,3,0.0,40.0,0.0,0,0,2747.4760137670874,2747.4760137670874,0.0 +9639,3439,3438,7,7,44,111,37,10,0,14700,0,700,0,0,2,6,3,5,2.6,1550.8522105,0,0,165410.0,1,2,9,7,4,2,1,1,0,0,0,1,0,0,0,2,63619.2307692,10,5,10,10_0,6884.0,0,6884.0,0,0,1,53.0,10.6,3.31,0,1,677.6784645370443,677.6784645370443,0.0 +9640,3443,3442,11,16,67,300,37,20,0,14705,0,500,0,0,2,5,1,3,1.8,1252.69157276,2444,0,110990.0,1,2,0,0,4,1,0,1,1,0,0,0,0,0,0,1,61661.1111111,10,5,10,10_1,30000.0,0,30000.0,0,2,3,0.0,40.0,0.0,0,0,2747.4760137670874,2747.4760137670874,0.0 9641,3464,3463,4,4,81,111,74,10,0,14733,0,0,0,0,0,5,0,1,1.0,2814.06993172,6738,0,72198.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,72198.0,10,5,10,10_0,14000.0,0,14000.0,0,3,3,0.0,0.0,0.0,0,0,1378.1955990003805,1378.1955990003805,0.0 9642,3466,3465,2,2,52,111,21,50,0,14735,0,0,0,0,2,4,0,2,1.5,1771.52688115,0,0,114469.0,1,2,8,6,3,1,0,0,0,0,1,0,0,0,0,1,76312.6666667,10,5,10,10_0,20000.0,0,20000.0,0,5,5,0.0,25.0,1.1,0,0,1968.8508557148293,1968.8508557148293,0.0 9643,3483,3482,2,2,44,111,37,10,0,14761,0,99999,0,0,2,5,2,4,2.5,1537.13555107,0,0,138062.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,1,1,55224.8,10,5,10,10_0,62000.0,0,50000.0,12000,3,3,163.5,43.5,3.3,1,1,6103.437652715971,4922.127139287074,1181.3105134288976 @@ -9647,21 +9647,21 @@ 9645,3485,3484,0,15,34,111,34,10,0,14764,0,0,260,0,2,5,0,2,1.5,1523.14073654,6102,0,74528.0,1,2,9,7,3,2,0,1,0,0,0,1,0,0,2,0,49685.3333333,10,5,10,10_0,7500.0,0,0.0,7500,7,7,72.5,22.5,3.3,0,1,738.3190708930612,0.0,738.3190708930612 9646,3502,3501,10,13,62,400,33,12,0,1479,0,140,0,0,1,5,0,2,1.5,1628.84674822,4404,0,98560.0,1,1,0,0,3,2,1,1,1,0,0,0,0,0,0,2,65706.6666667,10,5,10,10_1,27500.0,0,27500.0,0,8,8,0.0,0.0,0.0,0,0,2518.5196792864967,2518.5196792864967,0.0 9647,3506,3505,7,8,39,111,34,10,0,14795,0,480,30,0,2,5,1,3,1.8,2660.25723813,6032,0,135893.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,75496.1111111,10,5,10,10_0,30704.0,0,20000.0,10704,2,4,44.5,37.3333333333,3.31,0,1,3022.5798336934063,1968.8508557148293,1053.7289779785767 -9648,3507,3506,0,0,61,112,31,10,1,14797,0,50,0,0,1,7,0,2,1.5,3202.71713158,2548,30000,92048.0,1,1,7,0,3,2,0,1,1,0,0,0,0,0,0,2,61365.333333300005,10,5,10,10_1,20000.0,0,20000.0,0,1,1,0.0,0.0,0.0,0,0,1831.650675844725,1831.650675844725,0.0 +9648,3507,3506,0,0,61,112,31,10,1,14797,0,50,0,0,1,7,0,2,1.5,3202.71713158,2548,30000,92048.0,1,1,7,0,3,2,0,1,1,0,0,0,0,0,0,2,61365.3333333,10,5,10,10_1,20000.0,0,20000.0,0,1,1,0.0,0.0,0.0,0,0,1831.650675844725,1831.650675844725,0.0 9649,3513,3512,4,4,36,111,38,10,0,14805,0,400,0,0,1,2,0,1,1.0,6076.85200939,2496,0,104847.0,1,1,8,6,1,1,0,1,0,0,1,0,0,0,0,1,104847.0,10,5,10,10_0,13000.0,0,13000.0,0,0,0,0.0,30.0,3.3,1,1,1279.7530562146392,1279.7530562146392,0.0 -9650,3514,3513,1,2,43,111,38,12,2,14806,0,0,0,0,2,5,0,2,1.5,3661.1294574000003,0,14000,109980.0,1,3,10,8,3,1,0,0,0,0,0,0,1,0,1,0,73320.0,10,5,10,10_0,7657.0,0,0.0,7657,1,4,0.0,0.0,0.0,0,1,753.7745501104225,0.0,753.7745501104225 +9650,3514,3513,1,2,43,111,38,12,2,14806,0,0,0,0,2,5,0,2,1.5,3661.1294574,0,14000,109980.0,1,3,10,8,3,1,0,0,0,0,0,0,1,0,1,0,73320.0,10,5,10,10_0,7657.0,0,0.0,7657,1,4,0.0,0.0,0.0,0,1,753.7745501104225,0.0,753.7745501104225 9651,3516,3515,3,3,51,111,43,33,0,14808,0,565,110,0,3,5,1,3,2.0,1382.67035559,1135,0,100340.0,1,1,6,4,4,3,0,1,0,0,1,0,0,0,1,2,50170.0,10,5,10,10_0,23000.0,0,11000.0,12000,3,3,193.2,60.0,3.3,0,1,2264.178484072054,1082.8679706431562,1181.3105134288976 -9652,3537,3536,0,0,51,112,23,31,0,14838,0,0,0,0,2,7,0,2,1.5,3010.75215078,0,0,93026.0,1,1,7,4,3,0,0,0,0,0,1,0,0,0,0,0,62017.333333300005,10,5,10,10_0,15000.0,0,0.0,15000,2,2,366.2,75.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 -9653,3543,3542,1,1,43,111,37,10,0,14848,0,0,250,0,3,7,2,4,2.3,2359.83205304,2954,0,102586.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,1,1,44602.60869569999,10,5,10,10_0,5891.0,0,5891.0,0,2,3,137.5,58.75,5.5,0,1,579.925019550803,579.925019550803,0.0 +9652,3537,3536,0,0,51,112,23,31,0,14838,0,0,0,0,2,7,0,2,1.5,3010.75215078,0,0,93026.0,1,1,7,4,3,0,0,0,0,0,1,0,0,0,0,0,62017.3333333,10,5,10,10_0,15000.0,0,0.0,15000,2,2,366.2,75.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 +9653,3543,3542,1,1,43,111,37,10,0,14848,0,0,250,0,3,7,2,4,2.3,2359.83205304,2954,0,102586.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,1,1,44602.6086957,10,5,10,10_0,5891.0,0,5891.0,0,2,3,137.5,58.75,5.5,0,1,579.925019550803,579.925019550803,0.0 9654,3544,3543,4,4,59,112,54,60,0,14849,0,360,0,0,1,5,0,2,1.5,2248.43389613,0,0,67150.0,1,2,8,0,3,3,0,1,1,0,0,0,0,0,0,3,44766.6666667,10,5,10,10_1,12572.0,0,12572.0,0,0,4,0.0,0.0,0.0,0,0,1151.3756148359942,1151.3756148359942,0.0 9655,3545,3544,3,3,71,111,74,12,0,14852,0,0,0,0,0,4,0,2,1.5,1594.25015414,1560,0,57972.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,38648.0,10,5,10,10_0,23000.0,0,20000.0,3000,3,3,0.0,0.0,0.0,0,0,2264.178484072054,1968.8508557148293,295.3276283572244 9656,3559,3558,3,3,75,300,74,12,0,14872,0,0,0,0,0,7,0,1,1.0,1664.63548381,3149,0,39344.0,5,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,39344.0,10,5,10,10_0,4000.0,0,4000.0,0,2,4,0.0,0.0,0.0,0,0,393.7701711429659,393.7701711429659,0.0 9657,3563,3562,4,4,55,111,46,60,0,14879,0,0,60,0,2,6,0,2,1.5,1973.99990252,489,0,56140.0,1,3,6,4,3,2,0,1,0,0,1,0,0,0,1,1,37426.6666667,10,5,10,10_0,21960.0,0,15975.0,5985,1,1,97.8,47.5,3.3,0,1,2161.7982395748827,1572.6196210022201,589.1786185726628 9658,3585,3584,8,8,68,111,74,12,0,14906,0,0,0,0,0,4,0,2,1.5,2489.65233039,2590,0,76636.0,5,1,9,7,3,3,0,0,0,0,0,1,0,0,2,1,51090.6666667,10,5,10,10_0,20200.0,0,20000.0,200,6,7,0.0,0.0,0.0,0,0,1988.5393642719778,1968.8508557148293,19.688508557148296 9659,3593,3592,0,0,56,111,37,12,0,14917,0,0,0,0,1,3,1,2,1.5,3179.00599722,0,0,58962.0,1,2,10,8,2,0,0,0,0,0,0,0,1,0,0,0,39308.0,10,5,10,10_0,0.0,0,0.0,0,0,0,10.8,110.0,1.1,0,0,0.0,0.0,0.0 -9660,3604,3603,6,8,56,120,37,10,0,14934,0,0,0,0,2,5,1,3,1.8,2250.71866193,5509,0,80870.0,1,2,0,3,4,1,0,0,0,1,0,0,0,0,0,1,44927.77777780001,10,5,10,10_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,1,1181.3105134288976,1181.3105134288976,0.0 +9660,3604,3603,6,8,56,120,37,10,0,14934,0,0,0,0,2,5,1,3,1.8,2250.71866193,5509,0,80870.0,1,2,0,3,4,1,0,0,0,1,0,0,0,0,0,1,44927.7777778,10,5,10,10_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,1,1181.3105134288976,1181.3105134288976,0.0 9661,3606,3605,1,1,49,111,37,12,1,14937,0,75,0,0,1,3,0,1,1.0,2726.36825338,0,16000,78767.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,0,1,78767.0,10,5,10,10_0,16526.0,0,16526.0,0,1,1,42.5,75.0,3.3,0,1,1626.8614620771634,1626.8614620771634,0.0 -9662,3610,3609,2,5,61,221,31,10,0,14942,0,0,0,0,1,8,0,2,1.5,1517.20033795,5928,0,95770.0,1,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,63846.666666699995,10,5,10,10_0,22000.0,0,22000.0,0,4,4,0.0,0.0,0.0,1,0,2165.7359412863125,2165.7359412863125,0.0 +9662,3610,3609,2,5,61,221,31,10,0,14942,0,0,0,0,1,8,0,2,1.5,1517.20033795,5928,0,95770.0,1,1,1,3,3,1,0,0,0,1,0,0,0,0,0,1,63846.6666667,10,5,10,10_0,22000.0,0,22000.0,0,4,4,0.0,0.0,0.0,1,0,2165.7359412863125,2165.7359412863125,0.0 9663,3633,3632,6,6,66,112,74,10,0,14972,0,0,0,0,0,5,0,2,1.5,1225.52005194,2266,0,76509.0,5,1,8,0,3,2,0,0,1,0,0,0,0,0,2,0,51006.0,10,5,10,10_1,4488.0,0,0.0,4488,1,9,0.0,0.0,0.0,0,0,411.02241165955627,0.0,411.02241165955627 9664,3637,3636,2,2,52,400,46,31,0,14980,0,0,0,0,1,5,0,2,1.5,4503.59955695,1820,0,60512.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,40341.3333333,10,5,10,10_1,6000.0,0,6000.0,0,3,3,0.0,0.0,0.0,0,0,549.4952027534175,549.4952027534175,0.0 9665,3642,3641,1,1,55,111,42,33,1,14986,0,150,0,0,1,3,0,2,1.5,2378.76693791,0,17000,59451.0,1,2,6,5,3,2,0,0,0,0,1,0,0,0,0,2,39634.0,10,5,10,10_0,17000.0,0,17000.0,0,1,1,0.0,0.0,0.0,1,0,1673.523227357605,1673.523227357605,0.0 @@ -9675,12 +9675,12 @@ 9673,3705,3704,5,5,60,111,22,60,0,15057,0,0,0,0,2,9,0,2,1.5,2365.88252882,0,0,200907.0,1,1,6,5,3,2,1,0,0,0,1,0,0,0,1,1,133938.0,10,5,10,10_0,27237.0,0,16353.0,10884,4,4,0.0,20.0,3.3,0,1,2681.2795378552405,1609.8309021752304,1071.4486356800103 9674,3709,3708,10,10,73,111,74,10,0,15062,0,0,0,0,0,5,0,2,1.5,1260.66876292,1560,0,67441.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,44960.6666667,10,5,10,10_0,8000.0,0,0.0,8000,13,13,0.0,0.0,0.0,0,0,787.5403422859318,0.0,787.5403422859318 9675,3710,3709,7,7,76,111,74,41,0,15063,0,0,0,0,0,4,0,2,1.5,2007.73728409,0,0,63703.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,42468.6666667,10,5,10,10_0,9000.0,0,0.0,9000,6,6,0.0,0.0,0.0,0,0,885.9828850716733,0.0,885.9828850716733 -9676,3714,3713,5,7,47,111,33,12,0,15067,0,200,0,0,1,4,2,3,1.8,4054.08318868,1352,0,95716.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,0,1,53175.555555599996,10,5,10,10_0,5500.0,0,5500.0,0,2,2,0.0,0.0,0.0,0,0,541.4339853215781,541.4339853215781,0.0 +9676,3714,3713,5,7,47,111,33,12,0,15067,0,200,0,0,1,4,2,3,1.8,4054.08318868,1352,0,95716.0,1,2,9,7,2,1,0,1,0,0,0,1,0,0,0,1,53175.5555556,10,5,10,10_0,5500.0,0,5500.0,0,2,2,0.0,0.0,0.0,0,0,541.4339853215781,541.4339853215781,0.0 9677,3721,3720,0,0,65,111,23,50,0,15079,0,0,0,0,2,5,0,2,1.5,2595.17915699,7280,0,120274.0,5,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,80182.6666667,10,5,10,10_0,0.0,0,0.0,0,0,0,198.4,90.0,5.56,0,0,0.0,0.0,0.0 9678,3729,3728,0,0,48,111,34,10,0,1509,0,0,0,1200,1,3,0,2,1.5,3277.73606897,0,0,60390.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,40260.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,120.0,5.56,0,0,0.0,0.0,0.0 9679,3739,3738,0,11,55,111,53,70,0,15101,0,850,0,0,2,5,0,2,1.5,2761.22159139,5629,0,60753.0,1,1,9,7,3,3,0,0,0,0,0,1,0,0,0,3,40502.0,10,5,10,10_0,5000.0,0,5000.0,0,11,13,17.0,55.0,3.3,0,1,492.21271392870733,492.21271392870733,0.0 9680,3741,3740,3,3,81,300,74,12,0,15104,0,0,0,0,1,13,0,3,2.0,1858.54383736,1560,0,76730.0,5,1,0,0,5,1,0,0,1,0,0,0,0,0,0,1,38365.0,10,5,10,10_1,10000.0,0,10000.0,0,6,6,65.4,60.0,3.3,0,1,915.8253379223625,915.8253379223625,0.0 -9681,3769,3768,4,4,58,111,37,30,0,15142,0,220,0,0,2,6,3,5,2.6,1772.05044867,4680,0,111344.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,42824.615384599994,10,5,10,10_0,30000.0,0,30000.0,0,1,3,20.8,21.3333333333,3.3,1,1,2953.2762835722447,2953.2762835722447,0.0 +9681,3769,3768,4,4,58,111,37,30,0,15142,0,220,0,0,2,6,3,5,2.6,1772.05044867,4680,0,111344.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,42824.6153846,10,5,10,10_0,30000.0,0,30000.0,0,1,3,20.8,21.3333333333,3.3,1,1,2953.2762835722447,2953.2762835722447,0.0 9682,3774,3773,12,12,51,111,38,31,0,15148,0,170,0,0,3,5,2,4,2.5,1645.56155378,0,0,95805.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,38322.0,10,5,10,10_0,15000.0,0,15000.0,0,10,0,0.0,0.0,0.0,1,0,1476.6381417861223,1476.6381417861223,0.0 9683,3776,3775,11,11,57,111,31,10,0,15152,0,0,55,0,1,6,0,2,1.5,2601.40825979,0,0,157437.0,1,2,10,8,3,2,0,1,0,0,0,0,1,0,1,1,104958.0,10,5,10,10_0,13428.0,0,6000.0,7428,8,11,0.0,0.0,0.0,0,1,1321.8864645269366,590.6552567144488,731.2312078124877 9684,3785,3784,3,8,32,111,55,50,0,15164,0,0,0,460,2,3,0,2,1.5,1953.25653699,0,0,63020.0,1,3,6,4,3,1,0,0,0,0,1,0,0,1,0,1,42013.3333333,10,5,10,10_0,35000.0,0,35000.0,0,4,5,302.0,54.5,3.3,0,1,3445.4889975009514,3445.4889975009514,0.0 @@ -9692,12 +9692,12 @@ 9690,3867,3866,2,2,33,111,56,60,0,15294,0,150,0,0,2,5,1,3,1.8,2330.35800767,0,0,78563.0,1,2,6,4,4,1,1,1,0,0,1,0,0,0,0,1,43646.1111111,10,5,10,10_0,25000.0,0,25000.0,0,4,4,34.0,7.0,0.0,0,1,2461.063569643537,2461.063569643537,0.0 9691,3891,3890,8,8,61,112,43,33,0,15325,0,0,380,0,2,6,0,2,1.5,1493.50300438,3537,0,76486.0,1,1,8,0,3,1,0,1,1,0,0,0,0,0,1,0,50990.6666667,10,5,10,10_1,7000.0,0,0.0,7000,1,3,0.0,45.0,3.3,1,1,641.0777365456538,0.0,641.0777365456538 9692,3895,3894,4,4,62,120,72,50,0,15330,0,0,0,0,0,6,0,1,1.0,4642.80075578,0,0,66558.0,5,1,0,3,1,1,0,0,0,1,0,0,0,0,0,1,66558.0,10,5,10,10_0,10000.0,0,10000.0,0,3,3,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 -9693,3899,3898,6,6,63,111,74,31,0,15339,0,0,0,0,0,5,0,2,1.5,1960.23292503,0,0,88318.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,58878.666666699995,10,5,10,10_0,9500.0,0,6500.0,3000,8,8,0.0,0.0,0.0,0,0,935.204156464544,639.8765281073196,295.3276283572244 +9693,3899,3898,6,6,63,111,74,31,0,15339,0,0,0,0,0,5,0,2,1.5,1960.23292503,0,0,88318.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,58878.6666667,10,5,10,10_0,9500.0,0,6500.0,3000,8,8,0.0,0.0,0.0,0,0,935.204156464544,639.8765281073196,295.3276283572244 9694,3937,3936,0,0,28,111,38,10,0,15385,0,0,0,530,1,2,0,1,1.0,3511.37237029,0,0,42754.0,1,3,10,8,1,0,0,0,0,0,0,0,1,1,0,0,42754.0,10,5,10,10_0,0.0,0,0.0,0,0,0,18.0,50.0,1.1,0,0,0.0,0.0,0.0 9695,3938,3937,5,7,52,111,31,10,0,15386,0,20,20,0,2,5,2,4,2.1,1903.28641717,3328,0,121174.0,1,2,8,7,4,2,1,1,0,0,0,1,0,0,1,1,57701.9047619,10,5,10,10_0,30892.0,0,20000.0,10892,2,5,42.5,26.25,3.3,1,1,3041.0870317371255,1968.8508557148293,1072.2361760222961 -9696,3948,3947,1,1,45,111,37,41,1,154,0,5,60,0,2,5,0,2,1.5,1491.7995429000002,2080,12000,62815.0,1,2,8,7,3,2,0,1,0,0,0,1,0,0,1,1,41876.6666667,10,5,10,10_0,35000.0,0,25000.0,10000,1,0,0.0,30.0,3.3,1,1,3445.4889975009514,2461.063569643537,984.4254278574147 +9696,3948,3947,1,1,45,111,37,41,1,154,0,5,60,0,2,5,0,2,1.5,1491.7995429,2080,12000,62815.0,1,2,8,7,3,2,0,1,0,0,0,1,0,0,1,1,41876.6666667,10,5,10,10_0,35000.0,0,25000.0,10000,1,0,0.0,30.0,3.3,1,1,3445.4889975009514,2461.063569643537,984.4254278574147 9697,3959,3958,4,4,68,111,74,31,0,15415,0,0,0,0,0,2,0,2,1.5,3284.18266216,1092,0,59551.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,2,0,39700.6666667,10,5,10,10_0,11000.0,0,0.0,11000,5,5,0.0,0.0,0.0,0,0,1082.8679706431562,0.0,1082.8679706431562 -9698,3964,3963,6,14,45,111,34,10,0,15421,0,0,199998,0,1,3,2,4,2.1,2687.06043762,2028,0,83983.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,2,0,39991.904761900005,10,5,10,10_0,10000.0,0,0.0,10000,9,9,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 +9698,3964,3963,6,14,45,111,34,10,0,15421,0,0,199998,0,1,3,2,4,2.1,2687.06043762,2028,0,83983.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,2,0,39991.9047619,10,5,10,10_0,10000.0,0,0.0,10000,9,9,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 9699,4003,4002,8,10,35,112,33,12,0,15478,0,70,0,0,1,5,0,1,1.0,1677.64254865,0,0,41074.0,1,2,8,0,1,1,1,1,1,0,0,0,0,0,0,1,41074.0,10,5,10,10_1,7103.0,0,7103.0,0,1,1,42.0,20.0,3.3,0,1,650.510737526254,650.510737526254,0.0 9700,4009,4008,4,4,39,111,38,10,0,15487,0,0,90,461,2,3,0,2,1.5,2810.43370126,3186,0,70733.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,2,0,47155.3333333,10,5,10,10_0,8900.0,0,0.0,8900,1,1,234.0,55.0,3.3,0,1,876.1386307930992,0.0,876.1386307930992 9701,4017,4016,6,10,43,111,34,20,0,15498,0,0,240,0,1,4,0,1,1.0,1492.07620574,1900,0,37550.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,37550.0,10,5,10,10_0,2000.0,0,0.0,2000,3,5,94.5,60.0,6.61,1,0,196.88508557148296,0.0,196.88508557148296 @@ -9708,7 +9708,7 @@ 9706,4054,4053,0,0,43,111,37,10,0,15546,0,0,0,0,2,3,1,3,1.8,3317.85884205,0,0,113486.0,1,2,10,8,4,0,0,0,0,0,0,0,1,0,0,0,63047.7777778,10,5,10,10_0,0.0,0,0.0,0,0,0,20.4,26.6666666667,1.1,0,0,0.0,0.0,0.0 9707,4061,4060,1,4,42,111,22,10,2,15556,0,250,0,0,1,4,0,2,1.5,4873.56882762,0,12500,98916.0,1,1,4,4,3,2,0,0,0,0,1,0,0,0,0,2,65944.0,10,5,10,10_0,20816.0,0,20816.0,0,5,6,233.5,180.0,3.3,0,1,2049.1799706279944,2049.1799706279944,0.0 9708,4068,4067,2,2,76,112,74,42,0,15566,0,0,0,0,0,7,0,2,1.5,1547.04575436,2740,0,57969.0,5,1,3,0,3,2,0,0,1,0,0,0,0,0,0,2,38646.0,10,5,10,10_1,14000.0,0,14000.0,0,1,1,0.0,0.0,0.0,0,0,1282.1554730913076,1282.1554730913076,0.0 -9709,4074,4073,2,3,55,112,22,50,0,15573,0,1350,0,0,5,8,1,5,3.0,792.370559652,3520,0,165176.0,1,1,7,0,5,4,0,1,1,0,0,0,0,0,0,4,55058.666666699995,10,5,10,10_1,20000.0,0,20000.0,0,5,4,99.5,33.3333333333,3.3,1,0,1831.650675844725,1831.650675844725,0.0 +9709,4074,4073,2,3,55,112,22,50,0,15573,0,1350,0,0,5,8,1,5,3.0,792.370559652,3520,0,165176.0,1,1,7,0,5,4,0,1,1,0,0,0,0,0,0,4,55058.6666667,10,5,10,10_1,20000.0,0,20000.0,0,5,4,99.5,33.3333333333,3.3,1,0,1831.650675844725,1831.650675844725,0.0 9710,4089,4088,1,15,64,120,74,50,2,15598,0,0,350,0,1,6,0,2,1.5,1763.03586646,6781,3000,71550.0,5,1,0,0,3,3,0,0,1,0,0,0,0,0,2,1,47700.0,10,5,10,10_1,34000.0,0,15000.0,19000,5,10,0.0,0.0,0.0,0,1,3113.8061489360325,1373.7380068835437,1740.0681420524886 9711,4092,4091,5,5,40,111,34,10,0,15605,0,0,200,0,1,4,0,1,1.0,1497.57790434,0,0,44479.0,1,2,8,7,1,1,1,1,0,0,0,1,0,0,1,0,44479.0,10,5,10,10_0,15000.0,0,0.0,15000,2,10,60.0,20.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 9712,4097,4096,13,13,56,111,34,20,0,1561,0,0,0,0,1,2,0,1,1.0,3540.26412246,0,0,56900.0,1,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,56900.0,10,5,10,10_0,3500.0,0,0.0,3500,13,13,0.0,50.0,5.52,0,0,344.54889975009513,0.0,344.54889975009513 @@ -9717,14 +9717,14 @@ 9715,4145,4144,20,20,62,111,74,41,0,15690,0,0,0,579,0,2,0,1,1.0,3368.60312336,1190,0,43846.0,5,3,9,7,1,1,0,0,0,0,0,1,0,0,1,0,43846.0,10,5,10,10_0,10000.0,0,0.0,10000,4,4,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 9716,4171,4170,0,0,53,112,43,33,1,15727,0,1110,0,0,2,8,0,2,1.5,3862.02999501,0,20200,109093.0,1,1,8,0,3,1,1,1,1,0,0,0,0,0,0,1,72728.6666667,10,5,10,10_1,30000.0,0,30000.0,0,12,0,0.0,0.0,0.0,1,0,2747.4760137670874,2747.4760137670874,0.0 9717,4184,4183,3,3,54,111,33,20,0,15746,0,1000,200,0,2,5,0,2,1.5,1442.79099719,2600,0,117278.0,1,2,6,4,3,2,1,1,0,0,1,0,0,0,1,1,78185.3333333,10,5,10,10_0,61445.0,0,51445.0,10000,3,3,0.0,28.0,5.56,0,1,6048.802041469885,5064.37661361247,984.4254278574147 -9718,4191,4190,18,18,58,111,33,12,0,15754,0,0,0,0,1,5,0,2,1.5,2577.78321822,0,0,83752.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,55834.666666699995,10,5,10,10_0,12000.0,0,0.0,12000,14,14,0.0,0.0,0.0,0,0,1181.3105134288976,0.0,1181.3105134288976 +9718,4191,4190,18,18,58,111,33,12,0,15754,0,0,0,0,1,5,0,2,1.5,2577.78321822,0,0,83752.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,55834.6666667,10,5,10,10_0,12000.0,0,0.0,12000,14,14,0.0,0.0,0.0,0,0,1181.3105134288976,0.0,1181.3105134288976 9719,4197,4196,4,4,55,111,33,31,0,15762,0,300,0,0,1,4,0,2,1.5,2343.11129775,2333,0,57800.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,38533.3333333,10,5,10,10_0,26000.0,0,25000.0,1000,2,2,0.0,0.0,0.0,0,1,2559.5061124292783,2461.063569643537,98.44254278574148 9720,4200,4199,3,5,58,111,45,41,0,15765,0,80,0,0,2,6,0,2,1.5,2306.8244009,0,0,63957.0,1,1,6,5,3,2,0,0,0,0,1,0,0,0,0,2,42638.0,10,5,10,10_0,17000.0,0,17000.0,0,5,5,65.5,52.5,3.3,0,1,1673.523227357605,1673.523227357605,0.0 9721,4202,4201,5,9,85,111,74,10,0,15770,0,0,0,0,0,3,0,1,1.0,2718.93802405,3183,0,50563.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,50563.0,10,5,10,10_0,2000.0,0,0.0,2000,12,12,0.0,0.0,0.0,0,0,196.88508557148296,0.0,196.88508557148296 9722,4217,4216,11,11,37,111,37,31,0,15787,0,0,0,0,2,5,2,4,2.1,3100.54908727,2085,0,120816.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,1,0,57531.4285714,10,5,10,10_0,12000.0,0,0.0,12000,4,7,0.0,16.6666666667,2.2,0,1,1181.3105134288976,0.0,1181.3105134288976 -9723,4221,4220,10,10,57,111,37,60,0,15791,0,50,0,0,1,7,0,2,1.5,2636.33273804,6016,0,91919.0,1,1,8,7,3,2,0,1,0,0,0,1,0,0,1,1,61279.333333300005,10,5,10,10_0,50000.0,0,45000.0,5000,4,7,0.0,0.0,0.0,0,1,4922.127139287074,4429.914425358366,492.21271392870733 +9723,4221,4220,10,10,57,111,37,60,0,15791,0,50,0,0,1,7,0,2,1.5,2636.33273804,6016,0,91919.0,1,1,8,7,3,2,0,1,0,0,0,1,0,0,1,1,61279.3333333,10,5,10,10_0,50000.0,0,45000.0,5000,4,7,0.0,0.0,0.0,0,1,4922.127139287074,4429.914425358366,492.21271392870733 9724,4247,4246,3,3,53,111,22,41,0,1609,0,400,0,0,1,6,1,2,1.5,2829.54842719,5139,0,204934.0,1,1,9,7,2,1,0,1,0,0,0,1,0,0,0,1,136622.666667,10,5,10,10_0,27500.0,0,27500.0,0,2,2,14.4,13.5,3.31,0,1,2707.169926607891,2707.169926607891,0.0 -9725,4253,4252,2,2,56,111,34,10,0,1618,0,40,0,0,2,4,0,2,1.5,2591.80357318,0,0,80669.0,1,1,10,8,3,1,0,1,0,0,0,0,1,0,0,1,53779.333333300005,10,5,10,10_0,10891.0,0,10891.0,0,1,5,74.5,90.0,3.3,0,1,1072.1377334795104,1072.1377334795104,0.0 +9725,4253,4252,2,2,56,111,34,10,0,1618,0,40,0,0,2,4,0,2,1.5,2591.80357318,0,0,80669.0,1,1,10,8,3,1,0,1,0,0,0,0,1,0,0,1,53779.3333333,10,5,10,10_0,10891.0,0,10891.0,0,1,5,74.5,90.0,3.3,0,1,1072.1377334795104,1072.1377334795104,0.0 9726,4281,4280,8,8,81,111,74,41,0,1659,0,0,0,0,0,6,0,2,1.5,2037.56209619,0,0,61084.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,40722.6666667,10,5,10,10_0,5800.0,0,0.0,5800,4,4,0.0,0.0,0.0,0,0,570.9667481573006,0.0,570.9667481573006 9727,4286,4285,3,3,65,211,74,50,0,1663,0,0,0,0,0,3,0,1,1.0,1788.98203106,0,0,41386.0,5,1,2,3,1,1,0,0,0,1,0,0,0,0,0,1,41386.0,10,5,10,10_0,10000.0,0,10000.0,0,2,2,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 9728,4291,4290,2,18,63,112,34,12,0,167,0,0,600,0,1,6,0,2,1.5,1934.57964746,0,0,57938.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,1,1,38625.3333333,10,5,10,10_1,36000.0,0,30000.0,6000,6,6,0.0,0.0,0.0,0,0,3296.971216520505,2747.4760137670874,549.4952027534175 @@ -9734,8 +9734,8 @@ 9732,4381,4380,1,2,38,400,38,12,2,1790,0,800,0,650,2,3,2,4,2.1,2295.65679161,3120,13000,132182.0,1,3,0,0,4,1,0,1,1,0,0,0,0,0,0,1,62943.8095238,10,5,10,10_1,15000.0,0,15000.0,0,3,4,135.9,40.0,3.31,0,1,1373.7380068835437,1373.7380068835437,0.0 9733,4385,4384,2,6,33,111,23,42,0,1794,0,0,0,0,1,4,0,1,1.0,2267.46373241,0,0,91919.0,1,1,6,4,1,2,0,0,0,0,1,0,0,0,1,1,91919.0,10,5,10,10_0,24000.0,0,20000.0,4000,6,8,125.4,40.0,3.3,0,1,2362.621026857795,1968.8508557148293,393.7701711429659 9734,4405,4404,1,6,54,111,53,50,0,1820,0,99999,100,0,2,5,0,2,1.5,1211.01417965,3543,0,58570.0,1,1,8,6,3,2,0,1,0,0,1,0,0,0,1,1,39046.6666667,10,5,10,10_0,61445.0,0,51445.0,10000,3,3,0.0,28.0,5.56,0,1,6048.802041469885,5064.37661361247,984.4254278574147 -9735,4411,4410,1,1,56,111,37,12,0,1827,0,0,100,0,2,6,0,2,1.5,2389.68928687,0,0,161960.0,1,1,10,8,3,1,0,1,0,0,0,0,1,0,1,0,107973.33333299999,10,5,10,10_0,9000.0,0,0.0,9000,1,1,0.0,0.0,0.0,0,0,885.9828850716733,0.0,885.9828850716733 -9736,4430,4429,19,19,66,111,74,41,0,185,0,0,0,0,0,6,0,2,1.5,2189.6463178000004,8269,0,57734.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,1,1,38489.3333333,10,5,10,10_0,19300.0,0,14300.0,5000,7,15,0.0,0.0,0.0,0,0,1899.9410757648104,1407.7283618361032,492.21271392870733 +9735,4411,4410,1,1,56,111,37,12,0,1827,0,0,100,0,2,6,0,2,1.5,2389.68928687,0,0,161960.0,1,1,10,8,3,1,0,1,0,0,0,0,1,0,1,0,107973.333333,10,5,10,10_0,9000.0,0,0.0,9000,1,1,0.0,0.0,0.0,0,0,885.9828850716733,0.0,885.9828850716733 +9736,4430,4429,19,19,66,111,74,41,0,185,0,0,0,0,0,6,0,2,1.5,2189.6463178,8269,0,57734.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,1,1,38489.3333333,10,5,10,10_0,19300.0,0,14300.0,5000,7,15,0.0,0.0,0.0,0,0,1899.9410757648104,1407.7283618361032,492.21271392870733 9737,4439,4438,7,7,71,111,74,31,0,1861,0,0,0,0,0,8,0,2,1.5,1370.18660889,5717,0,121721.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,81147.3333333,10,5,10,10_0,33000.0,0,15000.0,18000,4,5,0.0,0.0,0.0,0,0,3248.6039119294687,1476.6381417861223,1771.9657701433466 9738,4462,4461,13,13,50,111,21,50,0,1893,0,0,50,0,2,3,0,2,1.5,3499.51824203,0,0,66915.0,1,1,9,7,3,3,0,0,0,0,0,1,0,0,1,2,44610.0,10,5,10,10_0,50000.0,0,40000.0,10000,7,8,155.0,20.0,0.0,1,0,4922.127139287074,3937.7017114296586,984.4254278574147 9739,4464,4463,11,11,58,211,43,10,0,1896,0,50,0,0,2,6,0,2,1.5,1223.12409055,5927,0,57702.0,1,1,2,3,3,2,0,1,0,1,0,0,0,0,0,2,38468.0,10,5,10,10_0,41353.0,0,41353.0,0,3,10,126.0,60.0,3.3,0,1,4070.894471818767,4070.894471818767,0.0 @@ -9760,7 +9760,7 @@ 9758,4616,4615,5,16,67,111,47,10,0,2104,0,0,0,0,1,6,0,2,1.5,2839.64797195,3692,0,68771.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,45847.3333333,10,5,10,10_0,11144.0,0,6144.0,5000,5,15,0.0,155.0,3.3,0,1,1097.043696804303,604.8309828755956,492.21271392870733 9759,4618,4617,3,3,60,111,77,50,0,2109,0,0,0,0,1,3,0,2,1.5,3268.22275152,2912,0,68481.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,45654.0,10,5,10,10_0,5862.0,0,0.0,5862,1,1,0.0,0.0,0.0,0,0,577.0701858100165,0.0,577.0701858100165 9760,4619,4618,2,5,41,111,37,12,0,211,0,0,0,0,1,3,0,1,1.0,3237.03789737,3597,0,37502.0,1,2,8,7,1,1,0,0,0,0,0,1,0,0,1,0,37502.0,10,5,10,10_0,15000.0,0,0.0,15000,2,10,60.0,20.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 -9761,4624,4623,4,8,58,300,31,10,0,2116,0,600,0,0,2,7,0,2,1.5,1374.79297131,1352,0,167948.0,1,1,0,0,3,3,0,1,1,0,0,0,0,0,0,3,111965.33333299999,10,5,10,10_1,18625.0,0,18625.0,0,2,2,543.2,75.0,0.0,1,0,1705.7246918804,1705.7246918804,0.0 +9761,4624,4623,4,8,58,300,31,10,0,2116,0,600,0,0,2,7,0,2,1.5,1374.79297131,1352,0,167948.0,1,1,0,0,3,3,0,1,1,0,0,0,0,0,0,3,111965.333333,10,5,10,10_1,18625.0,0,18625.0,0,2,2,543.2,75.0,0.0,1,0,1705.7246918804,1705.7246918804,0.0 9762,4654,4653,4,4,60,111,74,30,0,2151,0,0,250,0,1,4,0,2,1.5,3235.05157172,184,0,67267.0,5,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,44844.6666667,10,5,10,10_0,27102.0,0,17102.0,10000,4,4,60.5,60.0,3.3,1,1,2667.9897945791654,1683.5643667217507,984.4254278574147 9763,4657,4656,6,6,60,111,74,44,0,2159,0,200,0,0,1,6,0,2,1.5,2077.97711943,2482,0,58710.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,0,2,39140.0,10,5,10,10_0,16353.0,0,16353.0,0,5,5,0.0,0.0,0.0,1,1,1609.8309021752304,1609.8309021752304,0.0 9764,4669,4668,6,8,57,111,46,70,0,2172,0,0,0,0,2,3,0,2,1.5,2771.23804737,3588,0,57910.0,1,4,10,8,3,1,0,0,0,0,0,0,1,0,1,0,38606.6666667,10,5,10,10_0,2000.0,0,0.0,2000,9,9,17.6,30.0,1.1,0,0,196.88508557148296,0.0,196.88508557148296 @@ -9773,23 +9773,23 @@ 9771,4766,4765,3,3,79,111,74,50,0,2307,0,0,0,0,0,4,0,2,1.5,2859.82503892,2861,0,59894.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,39929.3333333,10,5,10,10_0,16000.0,0,16000.0,0,4,4,0.0,0.0,0.0,0,0,1575.0806845718637,1575.0806845718637,0.0 9772,4769,4768,4,4,44,120,38,42,0,2311,0,900,0,0,1,6,1,3,1.8,5406.09087686,2611,0,132108.0,1,2,0,3,4,4,0,0,0,1,0,0,0,0,1,3,73393.3333333,10,5,10,10_0,16337.0,0,16337.0,0,6,0,0.0,30.0,3.3,0,1,1608.2558214906585,1608.2558214906585,0.0 9773,4791,4790,6,21,66,111,74,20,0,2344,0,0,100,0,1,6,0,2,1.5,1261.94851793,0,0,64717.0,5,2,8,7,3,2,0,0,0,0,0,1,0,0,1,1,43144.6666667,10,5,10,10_0,11144.0,0,6144.0,5000,5,15,0.0,155.0,3.3,0,1,1097.043696804303,604.8309828755956,492.21271392870733 -9774,4816,4815,6,6,48,111,22,31,0,238,0,0,15,0,2,7,0,2,1.5,2435.60894925,0,0,92471.0,1,2,5,4,3,2,0,1,0,0,1,0,0,0,1,1,61647.333333300005,10,5,10,10_0,20300.0,0,20000.0,300,4,5,7.6,10.0,3.3,0,1,1998.383618550552,1968.8508557148293,29.532762835722444 +9774,4816,4815,6,6,48,111,22,31,0,238,0,0,15,0,2,7,0,2,1.5,2435.60894925,0,0,92471.0,1,2,5,4,3,2,0,1,0,0,1,0,0,0,1,1,61647.3333333,10,5,10,10_0,20300.0,0,20000.0,300,4,5,7.6,10.0,3.3,0,1,1998.383618550552,1968.8508557148293,29.532762835722444 9775,4822,4821,2,2,47,111,46,71,0,2388,0,0,0,0,2,4,0,2,1.5,3278.86781574,0,0,60151.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,40100.6666667,10,5,10,10_0,5000.0,0,0.0,5000,2,2,45.5,50.0,5.56,1,0,492.21271392870733,0.0,492.21271392870733 9776,4842,4841,8,13,41,111,43,50,0,242,0,300,300,0,2,4,0,2,1.5,1838.16058331,4680,0,69310.0,1,2,5,4,3,2,0,1,0,0,1,0,0,0,1,1,46206.6666667,10,5,10,10_0,27000.0,0,15000.0,12000,5,5,73.0,70.0,3.3,0,1,2657.9486552150197,1476.6381417861223,1181.3105134288976 9777,4847,4846,4,8,35,111,38,12,0,2428,0,0,300,1041,2,4,2,4,2.1,2673.15145357,4257,0,87582.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,1,0,41705.7142857,10,5,10,10_0,12000.0,0,0.0,12000,4,7,0.0,16.6666666667,2.2,0,1,1181.3105134288976,0.0,1181.3105134288976 9778,4848,4847,2,2,58,111,38,10,0,2429,0,0,100,0,2,6,1,3,2.0,1312.30324642,3120,0,139403.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,69701.5,10,5,10,10_0,22000.0,0,0.0,22000,9,0,45.5,71.6666666667,5.56,0,1,2165.7359412863125,0.0,2165.7359412863125 9779,4850,4849,2,4,57,400,13,60,0,2430,0,250,0,0,2,6,1,3,2.0,2061.99520607,2579,0,100474.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,1,1,50237.0,10,5,10,10_1,34000.0,0,20000.0,14000,4,4,224.0,35.0,3.31,0,1,3113.8061489360325,1831.650675844725,1282.1554730913076 -9780,4856,4855,2,2,39,112,37,20,0,244,0,540,0,0,2,4,0,2,1.5,3196.57916068,0,0,97129.0,1,2,7,0,3,2,1,1,1,0,0,0,0,0,0,2,64752.666666699995,10,5,10,10_1,6859.0,0,6859.0,0,0,2,208.0,25.0,3.3,0,1,628.1645992809484,628.1645992809484,0.0 +9780,4856,4855,2,2,39,112,37,20,0,244,0,540,0,0,2,4,0,2,1.5,3196.57916068,0,0,97129.0,1,2,7,0,3,2,1,1,1,0,0,0,0,0,0,2,64752.6666667,10,5,10,10_1,6859.0,0,6859.0,0,0,2,208.0,25.0,3.3,0,1,628.1645992809484,628.1645992809484,0.0 9781,4885,4884,13,13,80,111,72,31,0,2474,0,0,99999,0,0,4,0,2,1.5,5337.99566611,1897,0,58427.0,5,4,6,5,3,1,0,1,0,0,1,0,0,0,1,0,38951.3333333,10,5,10,10_0,6000.0,0,0.0,6000,6,6,0.0,0.0,0.0,0,0,590.6552567144488,0.0,590.6552567144488 9782,4891,4890,10,10,72,300,72,60,0,2481,0,0,0,0,0,6,0,2,1.5,2411.71650379,2560,0,60174.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,40116.0,10,5,10,10_1,20000.0,0,20000.0,0,9,9,0.0,0.0,0.0,0,0,1831.650675844725,1831.650675844725,0.0 9783,4919,4918,5,6,52,111,23,12,0,252,0,0,0,0,2,5,1,3,2.0,2270.37032731,2967,0,98894.0,1,1,8,6,4,1,0,0,0,0,1,0,0,0,1,0,49447.0,10,5,10,10_0,10000.0,0,0.0,10000,4,4,38.5,33.3333333333,1.1,1,0,984.4254278574147,0.0,984.4254278574147 -9784,4920,4919,3,6,46,111,37,20,0,2521,0,99999,99999,0,2,8,2,4,2.3,891.0223627060001,0,0,103161.0,1,1,8,7,4,3,0,1,0,0,0,1,0,0,2,1,44852.60869569999,10,5,10,10_0,31000.0,0,15000.0,16000,12,13,0.0,22.5,3.33,1,1,3051.7188263579856,1476.6381417861223,1575.0806845718637 -9785,4925,4924,1,1,45,111,33,30,0,2526,0,0,0,0,1,3,1,2,1.3,3106.4751154,0,0,49518.0,1,1,10,8,2,1,0,0,0,0,0,0,1,0,0,1,38090.769230800004,10,5,10,10_0,7000.0,0,7000.0,0,2,2,0.0,0.0,0.0,0,0,689.0977995001903,689.0977995001903,0.0 +9784,4920,4919,3,6,46,111,37,20,0,2521,0,99999,99999,0,2,8,2,4,2.3,891.022362706,0,0,103161.0,1,1,8,7,4,3,0,1,0,0,0,1,0,0,2,1,44852.6086957,10,5,10,10_0,31000.0,0,15000.0,16000,12,13,0.0,22.5,3.33,1,1,3051.7188263579856,1476.6381417861223,1575.0806845718637 +9785,4925,4924,1,1,45,111,33,30,0,2526,0,0,0,0,1,3,1,2,1.3,3106.4751154,0,0,49518.0,1,1,10,8,2,1,0,0,0,0,0,0,1,0,0,1,38090.7692308,10,5,10,10_0,7000.0,0,7000.0,0,2,2,0.0,0.0,0.0,0,0,689.0977995001903,689.0977995001903,0.0 9786,4942,4941,0,0,84,111,74,30,0,2556,0,0,0,0,0,4,0,1,1.0,4121.31736272,0,0,56057.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,56057.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9787,4943,4942,5,5,67,111,74,44,0,2557,0,0,0,0,0,5,0,2,1.5,1438.9385588,0,0,60738.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,0,2,40492.0,10,5,10,10_0,33625.0,0,33625.0,0,3,6,0.0,0.0,0.0,0,0,3310.130501170557,3310.130501170557,0.0 9788,4946,4945,1,1,70,111,72,50,1,2561,0,0,0,0,0,5,0,2,1.5,4138.81007074,0,18500,58724.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,39149.3333333,10,5,10,10_0,5000.0,0,0.0,5000,4,6,0.0,0.0,0.0,0,0,492.21271392870733,0.0,492.21271392870733 9789,4953,4952,1,3,31,111,37,12,2,2574,0,0,0,0,2,3,0,2,1.5,3090.02682455,1590,25500,127601.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,0,1,85067.3333333,10,5,10,10_0,25000.0,0,25000.0,0,2,3,104.6,80.0,3.3,0,0,2461.063569643537,2461.063569643537,0.0 -9790,4971,4970,0,1,39,111,37,31,0,260,0,0,0,0,2,3,0,2,1.5,2533.15988002,0,0,95080.0,1,2,9,7,3,2,1,0,0,0,0,1,0,0,1,1,63386.666666699995,10,5,10,10_0,27000.0,0,15000.0,12000,5,5,73.0,70.0,3.3,0,1,2657.9486552150197,1476.6381417861223,1181.3105134288976 +9790,4971,4970,0,1,39,111,37,31,0,260,0,0,0,0,2,3,0,2,1.5,2533.15988002,0,0,95080.0,1,2,9,7,3,2,1,0,0,0,0,1,0,0,1,1,63386.6666667,10,5,10,10_0,27000.0,0,15000.0,12000,5,5,73.0,70.0,3.3,0,1,2657.9486552150197,1476.6381417861223,1181.3105134288976 9791,4985,4984,4,4,56,111,54,41,0,262,0,0,250,1170,1,3,0,1,1.0,2711.38052479,2516,0,93528.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,93528.0,10,5,10,10_0,15000.0,0,0.0,15000,9,6,12.0,30.0,3.3,1,0,1476.6381417861223,0.0,1476.6381417861223 9792,4997,4996,4,4,62,112,31,12,0,2641,0,0,0,0,2,7,0,2,1.5,2650.8226237,3098,0,60754.0,1,1,8,0,3,3,1,0,1,0,0,0,0,0,0,3,40502.6666667,10,5,10,10_1,55000.0,0,55000.0,0,3,3,270.6,47.0,3.3,0,1,5037.0393585729935,5037.0393585729935,0.0 9793,5001,5000,2,2,31,111,38,10,0,2645,0,0,0,0,1,3,0,1,1.0,1976.21070845,1865,0,41566.0,1,1,7,5,1,1,1,0,0,0,1,0,0,0,1,0,41566.0,10,5,10,10_0,15000.0,0,0.0,15000,3,7,98.0,50.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 @@ -9820,7 +9820,7 @@ 9818,5254,5253,10,10,59,112,74,50,0,3008,0,0,0,0,0,6,0,2,1.5,1579.86190116,0,0,61236.0,4,1,9,0,3,2,0,0,1,0,0,0,0,0,1,1,40824.0,10,5,10,10_1,24000.0,0,20000.0,4000,9,9,0.0,0.0,0.0,0,0,2197.98081101367,1831.650675844725,366.330135168945 9819,5263,5262,9,9,58,111,56,41,0,3019,0,40,0,0,2,4,0,2,1.5,1615.95141304,0,0,58796.0,1,1,6,5,3,1,0,1,0,0,1,0,0,0,0,1,39197.3333333,10,5,10,10_0,8500.0,0,8500.0,0,3,3,55.5,25.0,3.3,0,1,836.7616136788025,836.7616136788025,0.0 9820,5273,5272,6,6,57,112,11,31,0,3029,0,0,0,0,1,4,0,2,1.5,1836.18301524,5725,0,67790.0,1,1,7,0,3,1,1,0,1,0,0,0,0,0,0,1,45193.3333333,10,5,10,10_1,13000.0,0,13000.0,0,2,4,0.0,0.0,0.0,0,0,1190.572939299071,1190.572939299071,0.0 -9821,5282,5281,2,3,66,111,74,10,0,3042,0,0,0,0,0,5,0,2,1.5,2051.82270278,2600,0,88928.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,59285.333333300005,10,5,10,10_0,27500.0,0,26000.0,1500,2,2,0.0,0.0,0.0,0,0,2707.169926607891,2559.5061124292783,147.6638141786122 +9821,5282,5281,2,3,66,111,74,10,0,3042,0,0,0,0,0,5,0,2,1.5,2051.82270278,2600,0,88928.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,59285.3333333,10,5,10,10_0,27500.0,0,26000.0,1500,2,2,0.0,0.0,0.0,0,0,2707.169926607891,2559.5061124292783,147.6638141786122 9822,5302,5301,4,4,63,400,72,31,0,3070,0,0,0,0,0,9,0,2,1.5,3442.10084437,2080,0,57134.0,5,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,38089.3333333,10,5,10,10_1,15000.0,0,15000.0,0,5,5,0.0,0.0,0.0,0,0,1373.7380068835437,1373.7380068835437,0.0 9823,5310,5309,2,2,53,111,43,60,0,3080,0,700,0,0,1,4,0,1,1.0,4230.47725608,3122,0,40161.0,1,1,9,7,1,1,1,1,0,0,0,1,0,0,0,1,40161.0,10,5,10,10_0,7000.0,0,7000.0,0,2,2,0.0,0.0,0.0,0,0,689.0977995001903,689.0977995001903,0.0 9824,5322,5321,3,3,38,400,11,50,0,3098,0,800,0,0,2,6,2,4,2.1,1918.14481044,3827,0,172237.0,1,2,0,0,4,2,1,0,1,0,0,0,0,0,0,2,82017.6190476,10,5,10,10_1,73726.0,0,73726.0,0,5,6,398.7,50.0,3.3,0,1,6752.013886366411,6752.013886366411,0.0 @@ -9831,11 +9831,11 @@ 9829,5384,5383,2,2,34,111,47,31,0,3186,0,300,0,0,1,2,0,1,1.0,3515.75576085,3068,0,39655.0,1,2,10,8,1,1,0,1,0,0,0,0,1,0,0,1,39655.0,10,5,10,10_0,15000.0,0,15000.0,0,1,1,49.5,60.0,3.3,0,1,1476.6381417861223,1476.6381417861223,0.0 9830,5386,5385,0,12,28,112,55,31,0,3188,0,320,320,0,2,6,0,2,1.5,2420.96956569,0,0,77570.0,1,2,8,0,3,2,0,1,1,0,0,0,0,0,1,1,51713.3333333,10,5,10,10_1,35000.0,0,20000.0,15000,3,9,0.0,80.0,3.3,0,1,3205.3886827282686,1831.650675844725,1373.7380068835437 9831,5394,5393,14,14,68,112,74,10,0,32,0,0,0,0,0,5,0,2,1.5,3495.06329162,3112,0,98340.0,5,4,9,1,3,2,0,0,0,1,0,0,0,0,1,1,65560.0,10,5,10,10_0,9000.0,0,4000.0,5000,9,14,0.0,0.0,0.0,0,0,885.9828850716733,393.7701711429659,492.21271392870733 -9832,5408,5407,3,3,40,111,31,10,0,3219,0,100,0,0,2,9,6,8,3.7,758.100906852,3507,0,259955.0,1,2,7,5,4,2,1,1,0,0,1,0,0,0,0,2,70258.10810810002,10,5,10,10_0,15000.0,0,15000.0,0,2,2,385.0,26.0,3.31,1,0,1476.6381417861223,1476.6381417861223,0.0 +9832,5408,5407,3,3,40,111,31,10,0,3219,0,100,0,0,2,9,6,8,3.7,758.100906852,3507,0,259955.0,1,2,7,5,4,2,1,1,0,0,1,0,0,0,0,2,70258.1081081,10,5,10,10_0,15000.0,0,15000.0,0,2,2,385.0,26.0,3.31,1,0,1476.6381417861223,1476.6381417861223,0.0 9833,5410,5409,2,8,57,112,46,41,0,3222,0,750,0,0,2,7,1,3,2.0,1716.32201053,6346,0,281851.0,1,2,9,0,4,2,0,0,1,0,0,0,0,0,1,1,140925.5,10,5,10,10_1,34000.0,0,20000.0,14000,4,4,224.0,35.0,3.31,0,1,3113.8061489360325,1831.650675844725,1282.1554730913076 9834,5417,5416,0,0,57,111,37,10,1,323,0,0,180,0,1,3,0,1,1.0,3325.20004883,2065,21533,38300.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,1,0,38300.0,10,5,10,10_0,15000.0,0,0.0,15000,2,2,19.2,20.0,3.31,0,1,1476.6381417861223,0.0,1476.6381417861223 -9835,5419,5418,2,2,36,111,38,10,0,3231,0,100,150,1100,2,4,1,3,1.8,3544.20855082,3172,0,98072.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,1,1,54484.444444400004,10,5,10,10_0,25000.0,0,15000.0,10000,4,4,130.0,40.0,3.3,0,1,2461.063569643537,1476.6381417861223,984.4254278574147 -9836,5427,5426,4,4,71,111,74,12,0,324,0,0,0,0,0,5,0,2,1.5,2034.92694129,2207,0,85486.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,56990.666666699995,10,5,10,10_0,14000.0,0,0.0,14000,8,8,0.0,0.0,0.0,0,0,1378.1955990003805,0.0,1378.1955990003805 +9835,5419,5418,2,2,36,111,38,10,0,3231,0,100,150,1100,2,4,1,3,1.8,3544.20855082,3172,0,98072.0,1,3,10,8,4,2,0,1,0,0,0,0,1,0,1,1,54484.4444444,10,5,10,10_0,25000.0,0,15000.0,10000,4,4,130.0,40.0,3.3,0,1,2461.063569643537,1476.6381417861223,984.4254278574147 +9836,5427,5426,4,4,71,111,74,12,0,324,0,0,0,0,0,5,0,2,1.5,2034.92694129,2207,0,85486.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,56990.6666667,10,5,10,10_0,14000.0,0,0.0,14000,8,8,0.0,0.0,0.0,0,0,1378.1955990003805,0.0,1378.1955990003805 9837,5441,5440,5,9,59,111,34,10,0,3258,0,0,0,0,2,7,0,2,1.5,1087.83934965,1560,0,61002.0,1,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,40668.0,10,5,10,10_0,21287.0,0,11287.0,10000,7,7,103.0,35.0,3.3,0,1,2095.546408280079,1111.120980422664,984.4254278574147 9838,5448,5447,8,8,65,112,75,31,0,3268,0,0,0,0,0,7,0,2,1.5,3889.05795817,0,0,56232.0,5,1,7,0,3,2,0,0,1,0,0,0,0,0,1,1,37488.0,10,5,10,10_1,22000.0,0,10000.0,12000,8,8,0.0,0.0,0.0,0,0,2014.8157434291975,915.8253379223625,1098.990405506835 9839,5458,5457,2,2,73,111,74,12,0,3280,0,0,0,0,0,4,0,1,1.0,2339.9185352,3327,0,128359.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,128359.0,10,5,10,10_0,1000.0,0,0.0,1000,2,2,0.0,0.0,0.0,0,0,98.44254278574148,0.0,98.44254278574148 @@ -9856,7 +9856,7 @@ 9854,5667,5666,11,11,88,111,72,50,0,3565,0,0,0,0,0,5,0,1,1.0,4072.1797215,0,0,62277.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,62277.0,10,5,10,10_0,750.0,0,0.0,750,3,14,0.0,0.0,0.0,0,0,73.8319070893061,0.0,73.8319070893061 9855,5673,5672,3,3,58,111,37,50,0,3575,0,0,20,1100,1,4,0,1,1.0,3135.04400275,2657,0,46619.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,1,0,46619.0,10,5,10,10_0,15000.0,0,0.0,15000,9,9,114.0,180.0,5.56,0,1,1476.6381417861223,0.0,1476.6381417861223 9856,5686,5685,4,4,33,111,31,10,0,359,0,280,0,0,1,6,0,1,1.0,2897.20379415,1046,0,41308.0,1,2,8,6,1,1,1,1,0,0,1,0,0,0,0,1,41308.0,10,5,10,10_0,20000.0,0,20000.0,0,4,4,0.0,120.0,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 -9857,5688,5687,4,10,51,112,38,50,0,3592,0,0,0,800,1,3,0,2,1.5,2496.4806799000003,1560,0,66542.0,1,3,10,4,3,1,0,0,0,0,1,0,0,0,1,0,44361.3333333,10,5,10,10_0,11000.0,0,0.0,11000,10,11,0.0,0.0,0.0,0,1,1082.8679706431562,0.0,1082.8679706431562 +9857,5688,5687,4,10,51,112,38,50,0,3592,0,0,0,800,1,3,0,2,1.5,2496.4806799,1560,0,66542.0,1,3,10,4,3,1,0,0,0,0,1,0,0,0,1,0,44361.3333333,10,5,10,10_0,11000.0,0,0.0,11000,10,11,0.0,0.0,0.0,0,1,1082.8679706431562,0.0,1082.8679706431562 9858,5691,5690,8,11,67,111,75,41,0,3597,0,0,0,0,0,9,0,2,1.5,1964.10538651,0,0,72178.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,2,0,48118.6666667,10,5,10,10_0,6892.0,0,0.0,6892,2,11,0.0,0.0,0.0,0,0,678.4660048793302,0.0,678.4660048793302 9859,5698,5697,0,0,43,111,37,31,0,3605,0,0,0,0,1,2,0,1,1.0,4389.90682629,0,0,42112.0,1,2,10,8,1,0,0,0,0,0,0,0,1,0,0,0,42112.0,10,5,10,10_0,0.0,0,0.0,0,0,0,23.0,40.0,2.2,0,0,0.0,0.0,0.0 9860,5706,5705,0,0,45,111,38,20,0,3618,0,0,0,0,1,2,0,1,1.0,3582.24849251,0,0,72611.0,1,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,72611.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,120.0,5.5,0,0,0.0,0.0,0.0 @@ -9870,8 +9870,8 @@ 9868,5796,5795,1,1,33,111,37,10,0,3734,0,350,0,767,1,3,0,1,1.0,2870.01689153,2860,0,48502.0,1,3,8,7,1,1,0,1,0,0,0,1,0,0,0,1,48502.0,10,5,10,10_0,20000.0,0,20000.0,0,4,4,0.0,120.0,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 9869,5806,5805,13,13,68,111,75,41,0,3749,0,0,0,0,0,3,0,1,1.0,3446.23760499,0,0,68060.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,68060.0,10,5,10,10_0,9712.0,0,0.0,9712,9,16,0.0,0.0,0.0,0,0,956.0739755351211,0.0,956.0739755351211 9870,5807,5806,13,21,60,120,38,70,0,375,0,450,0,0,2,5,0,2,1.5,2473.57425257,0,0,63517.0,1,1,0,0,3,4,0,0,1,0,0,0,0,0,0,4,42344.6666667,10,5,10,10_1,18000.0,0,15000.0,3000,2,12,0.0,60.0,3.3,0,1,1648.4856082602525,1373.7380068835437,274.74760137670876 -9871,5810,5809,7,9,36,111,38,10,0,3754,0,0,0,0,2,1,0,2,1.5,2965.0553707,0,0,91348.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,1,0,60898.666666699995,10,5,10,10_0,15000.0,0,0.0,15000,2,8,122.5,75.0,0.0,0,1,1476.6381417861223,0.0,1476.6381417861223 -9872,5815,5814,1,11,41,111,37,71,0,376,0,0,0,0,2,3,1,3,1.8,3011.00240491,0,0,115778.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,64321.11111109999,10,5,10,10_0,15000.0,0,0.0,15000,6,6,0.0,43.3333333333,5.57,0,0,1476.6381417861223,0.0,1476.6381417861223 +9871,5810,5809,7,9,36,111,38,10,0,3754,0,0,0,0,2,1,0,2,1.5,2965.0553707,0,0,91348.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,1,0,60898.6666667,10,5,10,10_0,15000.0,0,0.0,15000,2,8,122.5,75.0,0.0,0,1,1476.6381417861223,0.0,1476.6381417861223 +9872,5815,5814,1,11,41,111,37,71,0,376,0,0,0,0,2,3,1,3,1.8,3011.00240491,0,0,115778.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,64321.1111111,10,5,10,10_0,15000.0,0,0.0,15000,6,6,0.0,43.3333333333,5.57,0,0,1476.6381417861223,0.0,1476.6381417861223 9873,5838,5837,0,0,68,111,46,41,0,379,0,0,0,2488,2,4,0,2,1.5,6491.06502398,0,0,171813.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,114542.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,4.0,1.1,0,0,0.0,0.0,0.0 9874,5865,5864,6,6,44,111,37,20,0,382,0,100,0,0,2,5,1,3,2.0,1619.01379426,0,0,75450.0,1,2,6,4,4,2,0,1,0,0,1,0,0,0,0,2,37725.0,10,5,10,10_0,13000.0,0,13000.0,0,9,9,79.0,33.3333333333,3.3,0,1,1279.7530562146392,1279.7530562146392,0.0 9875,5892,5891,3,3,28,111,37,10,0,3862,0,400,0,1247,2,2,0,2,1.5,3366.22218743,0,0,64682.0,1,3,10,8,3,1,0,1,0,0,0,0,1,0,0,1,43121.3333333,10,5,10,10_0,25000.0,0,25000.0,0,2,5,41.0,70.0,5.57,0,0,2461.063569643537,2461.063569643537,0.0 @@ -9884,7 +9884,7 @@ 9882,5924,5923,5,5,60,111,31,20,0,3903,0,200,55,0,2,7,0,2,1.5,1402.96590591,0,0,70440.0,1,1,6,5,3,2,1,1,0,0,1,0,0,0,1,1,46960.0,10,5,10,10_0,27237.0,0,16353.0,10884,4,4,0.0,20.0,3.3,0,1,2681.2795378552405,1609.8309021752304,1071.4486356800103 9883,5930,5929,0,0,93,111,75,60,0,3910,0,0,0,0,0,4,0,1,1.0,3120.69370193,0,0,37713.0,5,4,8,7,1,0,0,0,0,0,0,1,0,0,0,0,37713.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9884,5994,5993,3,6,51,111,54,50,0,3999,0,0,0,0,2,4,0,2,1.5,1424.13071517,1664,0,62490.0,1,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,41660.0,10,5,10,10_0,10000.0,0,0.0,10000,3,11,0.0,0.0,0.0,0,1,984.4254278574147,0.0,984.4254278574147 -9885,6005,6004,8,8,67,111,74,12,0,4014,0,0,0,0,0,4,0,2,1.5,966.2298422739999,0,0,64157.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,1,1,42771.3333333,10,5,10,10_0,37000.0,0,22000.0,15000,7,7,0.0,0.0,0.0,0,0,3642.3740830724346,2165.7359412863125,1476.6381417861223 +9885,6005,6004,8,8,67,111,74,12,0,4014,0,0,0,0,0,4,0,2,1.5,966.229842274,0,0,64157.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,1,1,42771.3333333,10,5,10,10_0,37000.0,0,22000.0,15000,7,7,0.0,0.0,0.0,0,0,3642.3740830724346,2165.7359412863125,1476.6381417861223 9886,6006,6005,2,6,49,111,31,10,0,4015,0,0,60,0,1,2,0,1,1.0,8325.28566128,3120,0,48347.0,1,1,10,8,1,1,1,1,0,0,0,0,1,0,1,0,48347.0,10,5,10,10_0,12892.0,0,0.0,12892,1,6,32.0,60.0,3.3,0,1,1269.121261593779,0.0,1269.121261593779 9887,6016,6015,1,1,75,211,74,60,0,4031,0,0,0,0,0,7,0,2,1.5,1873.85854429,0,0,56850.0,5,4,1,3,3,2,0,0,0,1,0,0,0,0,1,1,37900.0,10,5,10,10_0,11000.0,0,10000.0,1000,1,1,0.0,0.0,0.0,0,0,1082.8679706431562,984.4254278574147,98.44254278574148 9888,6020,6019,5,5,39,221,37,10,0,4036,0,600,0,0,2,6,1,3,1.8,3184.86934307,2527,0,68859.0,1,2,1,2,4,2,0,1,0,1,0,0,0,0,0,2,38255.0,10,5,10,10_0,22584.0,0,22584.0,0,1,1,289.5,36.6666666667,3.3,0,1,2223.226386273185,2223.226386273185,0.0 @@ -9899,7 +9899,7 @@ 9897,6105,6104,6,6,55,111,37,70,0,4149,0,99999,0,935,1,4,0,2,1.5,1710.70488515,3640,0,64327.0,1,3,9,7,3,1,1,1,0,0,0,1,0,0,0,1,42884.6666667,10,5,10,10_0,13504.0,0,13504.0,0,9,10,0.0,0.0,0.0,0,1,1329.3680977786528,1329.3680977786528,0.0 9898,6111,6110,2,7,41,111,56,71,0,4156,0,0,0,0,2,3,3,5,2.8,4052.63044064,0,0,128812.0,1,4,10,8,4,1,1,0,0,0,0,0,1,0,0,1,46004.2857143,10,5,10,10_0,20000.0,0,20000.0,0,7,7,0.0,46.0,5.57,0,1,1968.8508557148293,1968.8508557148293,0.0 9899,6115,6114,3,14,51,111,38,31,0,4163,0,0,300,0,2,6,0,2,1.5,2348.22635841,2959,0,71253.0,1,1,10,8,3,2,0,1,0,0,0,0,1,0,2,0,47502.0,10,5,10,10_0,8797.0,0,0.0,8797,6,10,665.7,310.0,5.56,1,0,865.9990488861678,0.0,865.9990488861678 -9900,6124,6123,3,3,30,111,43,33,0,4174,0,99999,0,0,2,5,2,4,2.1,5824.84546893,3328,0,148520.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,70723.80952380001,10,5,10,10_0,48000.0,0,48000.0,0,1,6,0.0,127.5,3.3,1,1,4725.24205371559,4725.24205371559,0.0 +9900,6124,6123,3,3,30,111,43,33,0,4174,0,99999,0,0,2,5,2,4,2.1,5824.84546893,3328,0,148520.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,70723.8095238,10,5,10,10_0,48000.0,0,48000.0,0,1,6,0.0,127.5,3.3,1,1,4725.24205371559,4725.24205371559,0.0 9901,6131,6130,5,5,62,111,75,50,0,4185,0,0,0,0,1,5,0,2,1.5,2109.06929816,0,0,59822.0,5,1,8,6,3,2,0,0,0,0,1,0,0,0,1,1,39881.3333333,10,5,10,10_0,27102.0,0,17102.0,10000,4,4,60.5,60.0,3.3,1,1,2667.9897945791654,1683.5643667217507,984.4254278574147 9902,6135,6134,0,0,67,112,74,10,1,4190,0,250,0,0,1,5,0,2,1.5,5747.95089028,0,17200,70948.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,0,2,47298.6666667,10,5,10,10_0,8500.0,0,8500.0,0,1,1,0.0,0.0,0.0,1,0,836.7616136788025,836.7616136788025,0.0 9903,6136,6135,4,21,45,400,37,12,0,4191,0,0,0,0,1,6,0,1,1.0,2012.63015177,0,0,48020.0,1,2,0,0,1,2,0,0,1,0,0,0,0,0,1,1,48020.0,10,5,10,10_1,40952.0,0,35000.0,5952,9,19,0.0,90.0,3.3,0,1,3750.4879238596586,3205.3886827282686,545.0992411313902 @@ -9926,12 +9926,12 @@ 9924,6297,6296,4,4,66,111,31,10,0,441,0,0,0,0,1,5,0,2,1.5,946.338601528,0,0,125327.0,1,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,83551.3333333,10,5,10,10_0,37000.0,0,25000.0,12000,1,1,124.5,90.0,3.3,0,1,3642.3740830724346,2461.063569643537,1181.3105134288976 9925,6305,6304,8,8,40,112,38,10,0,4422,0,0,0,0,1,6,0,2,1.5,2571.97325663,3380,0,66372.0,4,3,8,0,3,2,0,0,1,0,0,0,0,0,2,0,44248.0,10,5,10,10_1,2800.0,0,0.0,2800,1,1,0.0,0.0,0.0,1,1,256.4310946182615,0.0,256.4310946182615 9926,6310,6309,6,7,67,111,74,12,0,4428,0,0,0,0,0,5,0,2,1.5,1707.31972361,0,0,66150.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,44100.0,10,5,10,10_0,10000.0,0,10000.0,0,7,9,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 -9927,6312,6311,10,10,35,211,38,12,0,443,0,65,0,0,2,7,2,4,2.1,995.5434122180001,0,0,78576.0,1,2,3,4,4,1,0,1,0,0,1,0,0,0,0,1,37417.1428571,10,5,10,10_0,12000.0,0,12000.0,0,3,7,0.0,10.0,0.0,0,1,1181.3105134288976,1181.3105134288976,0.0 +9927,6312,6311,10,10,35,211,38,12,0,443,0,65,0,0,2,7,2,4,2.1,995.543412218,0,0,78576.0,1,2,3,4,4,1,0,1,0,0,1,0,0,0,0,1,37417.1428571,10,5,10,10_0,12000.0,0,12000.0,0,3,7,0.0,10.0,0.0,0,1,1181.3105134288976,1181.3105134288976,0.0 9928,6316,6315,0,0,65,111,74,12,1,4436,0,0,0,0,0,4,0,2,1.5,3137.14899511,3796,42000,66287.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,0,1,44191.3333333,10,5,10,10_0,8923.0,0,8923.0,0,2,2,0.0,0.0,0.0,0,0,878.4028092771712,878.4028092771712,0.0 9929,6319,6318,1,7,55,111,47,60,0,4440,0,700,50,0,3,4,1,3,2.0,2265.19113907,4680,0,83660.0,1,1,9,7,4,3,0,1,0,0,0,1,0,0,1,2,41830.0,10,5,10,10_0,33348.0,0,22644.0,10704,2,2,239.5,40.0,0.0,1,1,3282.861916818907,2229.13293884033,1053.7289779785767 -9930,6321,6320,5,16,47,111,23,31,0,4444,0,0,40,0,2,4,2,4,2.3,1878.5633914,3086,0,133790.0,1,1,5,4,4,1,0,1,0,0,1,0,0,0,1,0,58169.565217400006,10,5,10,10_0,8907.0,0,0.0,8907,3,5,0.0,21.5,3.31,0,1,876.8277285925992,0.0,876.8277285925992 +9930,6321,6320,5,16,47,111,23,31,0,4444,0,0,40,0,2,4,2,4,2.3,1878.5633914,3086,0,133790.0,1,1,5,4,4,1,0,1,0,0,1,0,0,0,1,0,58169.5652174,10,5,10,10_0,8907.0,0,0.0,8907,3,5,0.0,21.5,3.31,0,1,876.8277285925992,0.0,876.8277285925992 9931,6322,6321,4,4,44,111,34,10,0,4445,0,0,0,0,2,4,2,4,2.1,1591.20308347,0,0,107480.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,1,0,51180.952381,10,5,10,10_0,10000.0,0,0.0,10000,8,8,121.5,40.0,2.24,0,1,984.4254278574147,0.0,984.4254278574147 -9932,6324,6323,1,3,54,111,43,33,2,4449,0,0,0,0,1,4,0,2,1.5,2855.0055301999996,0,21000,57934.0,1,2,8,6,3,1,0,0,0,0,1,0,0,0,0,1,38622.6666667,10,5,10,10_0,27500.0,0,27500.0,0,2,2,14.4,13.5,3.31,0,1,2707.169926607891,2707.169926607891,0.0 +9932,6324,6323,1,3,54,111,43,33,2,4449,0,0,0,0,1,4,0,2,1.5,2855.0055302,0,21000,57934.0,1,2,8,6,3,1,0,0,0,0,1,0,0,0,0,1,38622.6666667,10,5,10,10_0,27500.0,0,27500.0,0,2,2,14.4,13.5,3.31,0,1,2707.169926607891,2707.169926607891,0.0 9933,6328,6327,10,14,79,111,74,70,0,4454,0,0,0,0,0,5,0,1,1.0,2066.29757416,0,0,42582.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,42582.0,10,5,10,10_0,4500.0,0,0.0,4500,14,14,0.0,0.0,0.0,0,0,442.99144253583665,0.0,442.99144253583665 9934,6332,6331,1,2,53,111,33,41,0,4461,0,0,200,0,2,6,0,2,1.5,2421.80690474,0,0,72952.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,2,0,48634.6666667,10,5,10,10_0,40000.0,0,0.0,40000,5,5,104.5,50.0,3.3,0,1,3937.7017114296586,0.0,3937.7017114296586 9935,6341,6340,8,8,45,111,31,12,0,4471,0,0,0,0,2,7,4,6,3.1,1605.89396464,0,0,148220.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,47812.9032258,10,5,10,10_0,12000.0,0,12000.0,0,7,8,174.9,28.3333333333,2.24,0,1,1181.3105134288976,1181.3105134288976,0.0 @@ -9943,11 +9943,11 @@ 9941,6399,6398,0,0,68,111,75,20,0,4574,0,0,0,0,0,1,0,1,1.0,2937.05722215,0,0,64030.0,7,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,64030.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9942,6407,6406,2,5,37,111,23,31,0,4585,0,0,120,0,2,6,2,4,2.1,3553.60446066,0,0,110100.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,1,0,52428.5714286,10,5,10,10_0,12000.0,0,0.0,12000,4,7,0.0,16.6666666667,2.2,0,1,1181.3105134288976,0.0,1181.3105134288976 9943,6412,6411,9,10,75,111,74,10,0,4590,0,0,0,0,0,9,0,2,1.5,1127.56963624,0,0,69035.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,46023.3333333,10,5,10,10_0,11000.0,0,10000.0,1000,1,1,0.0,0.0,0.0,0,0,1082.8679706431562,984.4254278574147,98.44254278574148 -9944,6426,6425,1,1,52,111,38,30,1,4606,0,600,0,0,2,4,2,4,2.1,2183.85898891,4511,12000,81280.0,1,2,9,7,4,4,0,1,0,0,0,1,0,0,2,2,38704.761904800005,10,5,10,10_0,24672.0,0,14672.0,10000,2,0,60.0,43.5,3.3,0,1,2428.774415609814,1444.348987752399,984.4254278574147 +9944,6426,6425,1,1,52,111,38,30,1,4606,0,600,0,0,2,4,2,4,2.1,2183.85898891,4511,12000,81280.0,1,2,9,7,4,4,0,1,0,0,0,1,0,0,2,2,38704.7619048,10,5,10,10_0,24672.0,0,14672.0,10000,2,0,60.0,43.5,3.3,0,1,2428.774415609814,1444.348987752399,984.4254278574147 9945,6428,6427,1,1,62,120,77,44,1,461,0,0,0,0,0,5,0,2,1.5,3949.2547788,0,12545,62116.0,5,1,0,2,3,2,0,0,0,1,0,0,0,0,2,0,41410.6666667,10,5,10,10_0,13500.0,0,0.0,13500,20,0,0.0,0.0,0.0,0,0,1328.9743276075098,0.0,1328.9743276075098 9946,6453,6452,2,2,34,400,23,43,0,4643,0,550,0,0,2,4,1,3,1.8,3082.06225958,3900,0,136776.0,1,2,0,0,4,1,1,1,1,0,0,0,0,0,0,1,75986.6666667,10,5,10,10_1,18000.0,0,18000.0,0,1,1,72.0,20.0,0.0,0,0,1648.4856082602525,1648.4856082602525,0.0 9947,6456,6455,0,0,43,111,33,10,0,4646,0,50,0,0,2,7,2,4,2.1,1191.85051616,1040,0,115902.0,1,3,8,7,4,1,1,1,0,0,0,1,0,0,0,1,55191.4285714,10,5,10,10_0,80000.0,0,80000.0,0,3,5,0.0,45.0,3.3,0,1,7875.403422859317,7875.403422859317,0.0 -9948,6457,6456,3,5,58,111,34,10,0,4647,0,0,99999,0,1,7,0,2,1.5,1898.32365306,3169,0,96262.0,1,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,64174.666666699995,10,5,10,10_0,13428.0,0,6000.0,7428,8,11,0.0,0.0,0.0,0,1,1321.8864645269366,590.6552567144488,731.2312078124877 +9948,6457,6456,3,5,58,111,34,10,0,4647,0,0,99999,0,1,7,0,2,1.5,1898.32365306,3169,0,96262.0,1,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,64174.6666667,10,5,10,10_0,13428.0,0,6000.0,7428,8,11,0.0,0.0,0.0,0,1,1321.8864645269366,590.6552567144488,731.2312078124877 9949,6462,6461,0,0,52,111,37,10,0,4653,0,0,0,0,1,4,0,2,1.5,2683.39636536,0,0,208720.0,1,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,139146.666667,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,1.1,0,0,0.0,0.0,0.0 9950,6468,6467,1,1,65,111,74,31,1,4663,0,0,0,0,0,4,0,2,1.5,1739.89453309,0,20000,63568.0,5,2,8,7,3,2,0,0,0,0,0,1,0,0,1,1,42378.6666667,10,5,10,10_0,27500.0,0,26000.0,1500,2,2,0.0,0.0,0.0,0,0,2707.169926607891,2559.5061124292783,147.6638141786122 9951,6469,6468,0,0,63,111,77,70,1,4664,0,0,250,0,1,5,0,2,1.5,3090.74011106,0,14000,60419.0,5,1,10,8,3,2,0,1,0,0,0,0,1,0,1,1,40279.3333333,10,5,10,10_0,12821.0,0,8621.0,4200,9,9,0.0,0.0,0.0,0,0,1262.1318410559916,848.6731613558773,413.45867970011415 @@ -9962,17 +9962,17 @@ 9960,6533,6532,13,13,56,111,37,41,0,4755,0,0,199998,0,2,5,0,2,1.5,3333.36170257,0,0,58137.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,2,0,38758.0,10,5,10,10_0,250.0,0,0.0,250,13,14,120.5,53.0,1.1,0,1,24.61063569643537,0.0,24.61063569643537 9961,6534,6533,0,2,31,111,33,12,0,4756,0,150,0,0,2,4,2,4,2.1,2723.56505153,0,0,91573.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,43606.1904762,10,5,10,10_0,13000.0,0,13000.0,0,4,5,206.3,66.25,5.57,0,1,1279.7530562146392,1279.7530562146392,0.0 9962,6539,6538,1,1,60,111,74,20,0,4763,0,0,0,254,0,2,0,1,1.0,3132.11139561,0,0,38126.0,4,3,10,8,1,1,0,0,0,0,0,0,1,1,0,1,38126.0,10,5,10,10_0,9750.0,0,9750.0,0,1,2,0.0,0.0,0.0,0,0,959.8147921609794,959.8147921609794,0.0 -9963,6547,6546,9,9,45,112,21,50,0,4773,0,0,0,0,3,6,2,4,2.3,2667.4810693000004,1560,0,138598.0,1,2,7,0,4,1,1,0,1,0,0,0,0,0,0,1,60260.0,10,5,10,10_1,38000.0,0,38000.0,0,2,2,249.5,133.33333333299998,3.32,0,1,3480.136284104977,3480.136284104977,0.0 +9963,6547,6546,9,9,45,112,21,50,0,4773,0,0,0,0,3,6,2,4,2.3,2667.4810693,1560,0,138598.0,1,2,7,0,4,1,1,0,1,0,0,0,0,0,0,1,60260.0,10,5,10,10_1,38000.0,0,38000.0,0,2,2,249.5,133.333333333,3.32,0,1,3480.136284104977,3480.136284104977,0.0 9964,6557,6556,1,5,54,120,34,10,2,4787,0,1000,0,0,2,6,0,2,1.5,1521.35169869,3623,12700,72290.0,1,2,0,0,3,2,0,1,1,0,0,0,0,0,0,2,48193.3333333,10,5,10,10_1,12000.0,0,12000.0,0,6,6,60.0,42.5,3.33,0,1,1098.990405506835,1098.990405506835,0.0 9965,6561,6560,11,11,84,111,77,50,0,4790,0,0,50,0,1,4,1,2,1.5,1982.70010785,0,0,57635.0,5,1,7,6,2,1,0,1,0,0,1,0,0,0,1,0,38423.3333333,10,5,10,10_0,12000.0,0,0.0,12000,2,2,0.0,0.0,0.0,0,0,1181.3105134288976,0.0,1181.3105134288976 -9966,6568,6567,8,8,46,111,53,60,0,4798,0,200,0,0,1,3,0,1,1.0,3253.3249323000005,3166,0,40218.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,40218.0,10,5,10,10_0,10000.0,0,10000.0,0,5,7,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 +9966,6568,6567,8,8,46,111,53,60,0,4798,0,200,0,0,1,3,0,1,1.0,3253.3249323,3166,0,40218.0,1,3,10,8,1,1,0,1,0,0,0,0,1,0,0,1,40218.0,10,5,10,10_0,10000.0,0,10000.0,0,5,7,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 9967,6571,6570,6,26,58,111,47,44,0,4800,0,240,0,0,2,3,0,2,1.5,4664.80892842,4908,0,58631.0,1,1,10,8,3,3,0,0,0,0,0,0,1,0,1,2,39087.3333333,10,5,10,10_0,30000.0,0,30000.0,0,12,12,0.0,20.0,0.0,0,1,2953.2762835722447,2953.2762835722447,0.0 9968,6581,6580,10,15,56,111,38,12,0,4819,0,0,360,0,2,6,0,2,1.5,1959.07493194,0,0,114198.0,1,1,10,8,3,1,1,1,0,0,0,0,1,0,1,0,76132.0,10,5,10,10_0,5000.0,0,0.0,5000,1,16,92.7,120.0,3.33,0,1,492.21271392870733,0.0,492.21271392870733 9969,6585,6584,11,12,46,111,33,20,0,4826,0,0,0,1350,1,2,0,1,1.0,2773.42547258,1920,0,38725.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,38725.0,10,5,10,10_0,5000.0,0,0.0,5000,13,16,24.5,80.0,5.56,0,0,492.21271392870733,0.0,492.21271392870733 9970,6593,6592,1,7,57,112,55,42,2,4837,0,0,0,0,2,6,0,2,1.5,1452.86341369,1737,11000,59991.0,1,1,8,0,3,2,1,0,1,0,0,0,0,0,0,2,39994.0,10,5,10,10_1,35000.0,0,35000.0,0,6,6,77.5,25.0,3.3,0,1,3205.3886827282686,3205.3886827282686,0.0 -9971,6599,6598,2,2,61,111,38,10,0,4845,0,60,0,0,1,5,0,2,1.5,2088.3516897,3119,0,81172.0,1,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,54114.666666699995,10,5,10,10_0,12821.0,0,8621.0,4200,9,9,0.0,0.0,0.0,0,0,1262.1318410559916,848.6731613558773,413.45867970011415 +9971,6599,6598,2,2,61,111,38,10,0,4845,0,60,0,0,1,5,0,2,1.5,2088.3516897,3119,0,81172.0,1,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,54114.6666667,10,5,10,10_0,12821.0,0,8621.0,4200,9,9,0.0,0.0,0.0,0,0,1262.1318410559916,848.6731613558773,413.45867970011415 9972,6612,6611,7,7,60,111,31,10,0,4861,0,450,90,0,2,6,0,2,1.5,2034.60186656,1508,0,108593.0,1,2,10,8,3,2,0,1,0,0,0,0,1,0,1,1,72395.3333333,10,5,10,10_0,17500.0,0,15000.0,2500,5,5,188.0,100.0,3.3,0,1,1722.7444987504757,1476.6381417861223,246.10635696435367 -9973,6620,6619,1,1,64,111,34,10,0,4872,0,0,30,0,2,6,0,2,1.5,3870.13839154,2824,0,97318.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,64878.666666699995,10,5,10,10_0,26000.0,0,18000.0,8000,2,3,0.0,10.0,3.31,0,1,2559.5061124292783,1771.9657701433466,787.5403422859318 +9973,6620,6619,1,1,64,111,34,10,0,4872,0,0,30,0,2,6,0,2,1.5,3870.13839154,2824,0,97318.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,64878.6666667,10,5,10,10_0,26000.0,0,18000.0,8000,2,3,0.0,10.0,3.31,0,1,2559.5061124292783,1771.9657701433466,787.5403422859318 9974,6626,6625,9,9,55,111,55,71,0,4881,0,100,100,0,3,5,1,3,2.0,3169.95491504,0,0,75663.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,37831.5,10,5,10,10_0,45000.0,0,45000.0,0,4,8,290.5,34.6666666667,3.3,0,1,4429.914425358366,4429.914425358366,0.0 9975,6628,6627,0,2,48,111,37,10,0,4883,0,2000,0,0,1,1,0,1,1.0,3615.69878797,0,0,49238.0,1,1,10,8,1,1,1,1,0,0,0,0,1,0,0,1,49238.0,10,5,10,10_0,20000.0,0,20000.0,0,2,2,82.0,60.0,3.3,1,1,1968.8508557148293,1968.8508557148293,0.0 9976,6642,6641,2,2,52,111,37,12,0,4906,0,553,0,0,2,10,3,5,2.6,1021.206531,8959,0,100238.0,1,1,8,7,4,2,1,1,0,0,0,1,0,0,0,2,38553.0769231,10,5,10,10_0,20000.0,0,20000.0,0,3,4,0.0,28.6666666667,3.3,1,1,1968.8508557148293,1968.8508557148293,0.0 @@ -9981,7 +9981,7 @@ 9979,6657,6656,5,7,44,111,23,60,0,4932,0,0,150,0,2,8,1,3,2.0,2640.24064173,0,0,91124.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,1,0,45562.0,10,5,10,10_0,15000.0,0,0.0,15000,4,7,0.0,0.0,0.0,0,0,1476.6381417861223,0.0,1476.6381417861223 9980,6662,6661,0,0,38,111,31,12,0,4938,0,0,0,0,1,1,0,1,1.0,4509.08674927,1560,0,437995.0,4,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,437995.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 9981,6674,6673,6,6,43,112,37,60,0,4955,0,199998,0,0,2,5,1,3,2.0,2629.14063946,4160,0,75200.0,1,2,10,4,4,2,1,1,0,0,1,0,0,0,0,2,37600.0,10,5,10,10_0,13000.0,0,13000.0,0,9,9,79.0,33.3333333333,3.3,0,1,1279.7530562146392,1279.7530562146392,0.0 -9982,6677,6676,6,11,48,111,21,60,0,496,0,0,0,0,2,4,0,2,1.5,2899.54513333,0,0,93514.0,1,1,5,4,3,1,0,0,0,0,1,0,0,0,1,0,62342.666666699995,10,5,10,10_0,10000.0,0,0.0,10000,1,10,0.0,45.0,3.3,0,1,984.4254278574147,0.0,984.4254278574147 +9982,6677,6676,6,11,48,111,21,60,0,496,0,0,0,0,2,4,0,2,1.5,2899.54513333,0,0,93514.0,1,1,5,4,3,1,0,0,0,0,1,0,0,0,1,0,62342.6666667,10,5,10,10_0,10000.0,0,0.0,10000,1,10,0.0,45.0,3.3,0,1,984.4254278574147,0.0,984.4254278574147 9983,6678,6677,0,6,62,111,74,20,0,4961,0,0,0,0,0,5,0,2,1.5,2065.28910249,0,0,63646.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,0,1,42430.6666667,10,5,10,10_0,22000.0,0,22000.0,0,4,5,0.0,0.0,0.0,0,0,2165.7359412863125,2165.7359412863125,0.0 9984,6690,6689,7,7,55,112,37,31,0,4977,0,0,0,0,1,5,1,3,2.0,1324.25639903,2600,0,102480.0,1,1,10,0,4,1,0,0,1,0,0,0,0,0,1,0,51240.0,10,5,10,10_1,15000.0,0,0.0,15000,6,6,0.0,0.0,0.0,0,1,1373.7380068835437,0.0,1373.7380068835437 9985,6719,6718,4,4,61,111,72,41,0,5013,0,0,0,0,0,5,0,2,1.5,1834.34152009,0,0,1807632.0,5,1,3,4,3,2,0,0,0,0,1,0,0,0,1,1,1205088.0,10,5,10,10_0,26000.0,0,18000.0,8000,3,3,0.0,0.0,0.0,0,0,2559.5061124292783,1771.9657701433466,787.5403422859318 @@ -9990,48 +9990,48 @@ 9988,6735,6734,4,4,59,111,33,41,0,5030,0,150,12,0,2,3,0,2,1.5,3153.89422432,0,0,60017.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,1,1,40011.3333333,10,5,10,10_0,27237.0,0,16353.0,10884,4,4,0.0,20.0,3.3,0,1,2681.2795378552405,1609.8309021752304,1071.4486356800103 9989,6742,6741,10,30,50,111,37,71,0,5044,0,0,300,0,2,7,1,3,2.0,1532.16530928,4198,0,89824.0,1,2,9,7,4,3,0,0,0,0,0,1,0,0,3,0,44912.0,10,5,10,10_0,14062.0,0,0.0,14062,6,6,320.4,96.6666666667,3.3,0,1,1384.2990366530967,0.0,1384.2990366530967 9990,6757,6756,3,6,83,111,75,70,0,5064,0,0,0,0,0,3,0,2,1.5,2442.51045001,1794,0,71603.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,47735.3333333,10,5,10,10_0,2000.0,0,0.0,2000,8,8,0.0,0.0,0.0,0,0,196.88508557148296,0.0,196.88508557148296 -9991,6778,6777,8,10,42,221,21,71,0,5093,0,0,0,0,2,4,0,2,1.5,2894.99993213,0,0,173869.0,1,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,115912.66666700001,10,5,10,10_0,15000.0,0,0.0,15000,3,9,639.0,90.0,5.58,0,0,1476.6381417861223,0.0,1476.6381417861223 +9991,6778,6777,8,10,42,221,21,71,0,5093,0,0,0,0,2,4,0,2,1.5,2894.99993213,0,0,173869.0,1,1,1,2,3,1,0,0,0,1,0,0,0,0,1,0,115912.666667,10,5,10,10_0,15000.0,0,0.0,15000,3,9,639.0,90.0,5.58,0,0,1476.6381417861223,0.0,1476.6381417861223 9992,6789,6788,6,6,66,111,72,50,0,5107,0,0,0,0,0,6,0,2,1.5,1233.12363425,0,0,59990.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,39993.3333333,10,5,10,10_0,27500.0,0,26000.0,1500,2,2,0.0,0.0,0.0,0,0,2707.169926607891,2559.5061124292783,147.6638141786122 9993,6809,6808,0,1,54,111,42,20,2,5137,0,250,100,0,2,7,0,2,1.5,2579.10390697,4576,7000,63590.0,1,1,8,7,3,2,0,1,0,0,0,1,0,0,1,1,42393.3333333,10,5,10,10_0,28000.0,0,18000.0,10000,1,1,44.0,45.0,3.3,1,1,2756.391198000761,1771.9657701433466,984.4254278574147 9994,6814,6813,13,13,60,400,11,43,0,5145,0,0,0,0,2,6,1,3,2.0,1940.22801787,0,0,116148.0,1,1,0,0,4,2,0,0,1,0,0,0,0,0,0,2,58074.0,10,5,10,10_1,32000.0,0,32000.0,0,5,8,0.0,0.0,0.0,0,1,2930.64108135156,2930.64108135156,0.0 -9995,6824,6823,1,1,72,111,74,20,2,5155,0,0,0,0,0,4,0,2,1.5,2014.77169208,0,24000,86864.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,2,0,57909.333333300005,10,5,10,10_0,9400.0,0,0.0,9400,1,1,0.0,0.0,0.0,0,0,925.3599021859699,0.0,925.3599021859699 +9995,6824,6823,1,1,72,111,74,20,2,5155,0,0,0,0,0,4,0,2,1.5,2014.77169208,0,24000,86864.0,5,1,6,5,3,2,0,0,0,0,1,0,0,0,2,0,57909.3333333,10,5,10,10_0,9400.0,0,0.0,9400,1,1,0.0,0.0,0.0,0,0,925.3599021859699,0.0,925.3599021859699 9996,6847,6846,2,3,77,300,74,50,0,5186,0,0,0,0,0,7,0,2,1.5,1756.17246088,0,0,56479.0,5,1,0,0,3,1,0,0,1,0,0,0,0,0,1,0,37652.6666667,10,5,10,10_1,20000.0,0,0.0,20000,2,2,0.0,0.0,0.0,0,0,1831.650675844725,0.0,1831.650675844725 9997,6850,6849,3,3,48,111,22,10,0,519,0,199998,0,0,2,6,2,3,2.0,3271.84475806,6344,0,90304.0,1,2,8,7,2,2,1,1,0,0,0,1,0,0,0,2,45152.0,10,5,10,10_0,15311.0,0,15311.0,0,7,7,114.0,60.0,3.3,0,1,1507.2537725924876,1507.2537725924876,0.0 9998,6864,6863,0,0,51,111,31,10,0,5205,0,0,0,0,2,6,1,4,2.5,1566.85708904,0,0,201935.0,1,1,9,7,5,0,0,0,0,0,0,1,0,0,0,0,80774.0,10,5,10,10_0,0.0,0,0.0,0,0,0,561.2,33.5,3.3,0,0,0.0,0.0,0.0 -9999,6865,6864,2,2,49,112,22,50,0,5207,0,0,0,0,3,7,2,4,2.5,1838.97034485,7178,0,94630.0,1,1,7,0,4,2,0,0,1,0,0,0,0,0,1,1,37852.0,10,5,10,10_1,38000.0,0,38000.0,0,2,2,249.5,133.33333333299998,3.32,0,1,3480.136284104977,3480.136284104977,0.0 +9999,6865,6864,2,2,49,112,22,50,0,5207,0,0,0,0,3,7,2,4,2.5,1838.97034485,7178,0,94630.0,1,1,7,0,4,2,0,0,1,0,0,0,0,0,1,1,37852.0,10,5,10,10_1,38000.0,0,38000.0,0,2,2,249.5,133.333333333,3.32,0,1,3480.136284104977,3480.136284104977,0.0 10000,6885,6884,21,23,56,112,37,50,0,5237,0,150,0,0,2,6,0,2,1.5,1734.53791826,0,0,65151.0,1,1,7,1,3,2,0,0,0,1,0,0,0,0,0,2,43434.0,10,5,10,10_0,30000.0,0,30000.0,0,12,12,263.5,60.0,3.3,0,1,2953.2762835722447,2953.2762835722447,0.0 10001,6896,6895,8,8,55,300,13,31,0,5248,0,0,0,0,1,5,0,1,1.0,2487.92815396,2132,0,49503.0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,49503.0,10,5,10,10_1,17891.0,0,17891.0,0,3,5,0.0,120.0,3.3,0,0,1638.5031120768988,1638.5031120768988,0.0 10002,6909,6908,0,0,45,111,46,30,0,5261,0,99999,0,0,2,7,3,5,2.4,1563.28723512,0,0,95810.0,1,2,6,5,4,2,1,1,0,0,1,0,0,0,0,2,39920.8333333,10,5,10,10_0,6884.0,0,6884.0,0,0,1,53.0,10.6,3.31,0,1,677.6784645370443,677.6784645370443,0.0 10003,6913,6912,3,3,65,111,74,20,0,5266,0,0,175,0,1,5,0,2,1.5,3066.91933296,0,0,84828.0,5,3,10,8,3,2,0,1,0,0,0,0,1,0,1,1,56552.0,10,5,10,10_0,12821.0,0,8621.0,4200,9,9,0.0,0.0,0.0,0,0,1262.1318410559916,848.6731613558773,413.45867970011415 10004,6914,6913,8,8,65,112,72,70,0,5267,0,0,0,0,0,6,0,2,1.5,1512.82082767,0,0,59007.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,0,2,39338.0,10,5,10,10_0,10000.0,0,10000.0,0,4,5,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 10005,6945,6944,2,12,39,111,47,31,0,5307,0,0,600,590,1,3,0,1,1.0,3088.38490139,2956,0,53285.0,1,3,8,6,1,1,0,1,0,0,1,0,0,0,1,0,53285.0,10,5,10,10_0,15000.0,0,0.0,15000,2,10,60.0,20.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 -10006,6965,6964,9,11,39,300,43,33,0,5333,0,720,0,0,2,5,1,3,1.8,1622.7161657,6708,0,84547.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,0,2,46970.555555599996,10,5,10,10_0,8000.0,0,8000.0,0,8,15,0.0,14.666666666700001,3.31,0,1,787.5403422859318,787.5403422859318,0.0 +10006,6965,6964,9,11,39,300,43,33,0,5333,0,720,0,0,2,5,1,3,1.8,1622.7161657,6708,0,84547.0,1,2,0,1,4,2,0,1,0,1,0,0,0,0,0,2,46970.5555556,10,5,10,10_0,8000.0,0,8000.0,0,8,15,0.0,14.6666666667,3.31,0,1,787.5403422859318,787.5403422859318,0.0 10007,6979,6978,0,0,53,111,47,31,0,5353,0,0,0,430,1,1,0,1,1.0,3437.59851802,0,0,42683.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,42683.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,50.0,1.1,0,0,0.0,0.0,0.0 10008,6988,6987,0,16,61,111,31,10,0,5365,0,0,20,3213,2,4,1,3,2.0,3218.02095427,1041,0,245027.0,1,3,10,8,4,2,1,1,0,0,0,0,1,0,2,0,122513.5,10,5,10,10_0,10000.0,0,0.0,10000,12,13,47.5,73.3333333333,3.3,0,1,984.4254278574147,0.0,984.4254278574147 10009,6996,6995,12,12,50,111,37,12,0,5377,0,0,70,0,2,9,4,6,3.3,1441.80543447,0,0,411806.0,1,1,10,8,4,1,0,1,0,0,0,0,1,0,1,0,124789.69697,10,5,10,10_0,10000.0,0,0.0,10000,2,4,0.0,0.0,0.0,0,1,984.4254278574147,0.0,984.4254278574147 -10010,7012,7011,0,0,51,111,33,41,1,5400,0,0,0,0,2,7,0,2,1.5,3346.43057742,0,19232,93673.0,1,1,8,7,3,2,0,0,0,0,0,1,0,0,0,2,62448.666666699995,10,5,10,10_0,23000.0,0,23000.0,0,0,0,768.5,50.0,3.3,0,1,2264.178484072054,2264.178484072054,0.0 +10010,7012,7011,0,0,51,111,33,41,1,5400,0,0,0,0,2,7,0,2,1.5,3346.43057742,0,19232,93673.0,1,1,8,7,3,2,0,0,0,0,0,1,0,0,0,2,62448.6666667,10,5,10,10_0,23000.0,0,23000.0,0,0,0,768.5,50.0,3.3,0,1,2264.178484072054,2264.178484072054,0.0 10011,7020,7019,1,1,56,221,74,31,1,5413,0,0,50,0,1,4,0,2,1.5,1825.61907472,3843,22700,58938.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,1,1,39292.0,10,5,10,10_0,26000.0,0,25000.0,1000,2,2,0.0,0.0,0.0,0,1,2559.5061124292783,2461.063569643537,98.44254278574148 10012,7021,7020,4,4,57,111,31,10,0,5414,0,99999,0,0,2,6,1,3,2.0,2273.83798021,2600,0,255719.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,127859.5,10,5,10,10_0,25000.0,0,25000.0,0,2,4,75.6,58.0,3.33,1,1,2461.063569643537,2461.063569643537,0.0 10013,7027,7026,0,3,51,111,46,20,0,5422,0,50,0,0,1,7,2,3,2.0,2365.4806186,1614,0,94193.0,1,1,10,8,2,2,1,0,0,0,0,0,1,0,0,2,47096.5,10,5,10,10_0,9000.0,0,9000.0,0,1,4,0.0,0.0,0.0,0,1,885.9828850716733,885.9828850716733,0.0 10014,7037,7036,6,6,56,112,38,12,0,5435,0,375,0,0,2,7,1,3,2.0,1498.05005007,1794,0,118637.0,1,2,10,4,4,1,0,1,0,0,1,0,0,0,0,1,59318.5,10,5,10,10_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,1,1181.3105134288976,1181.3105134288976,0.0 10015,7046,7045,0,0,31,111,38,10,0,5446,0,0,0,550,1,2,0,1,1.0,3567.93498474,0,0,48442.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,48442.0,10,5,10,10_0,0.0,0,0.0,0,0,0,44.0,120.0,5.56,0,0,0.0,0.0,0.0 10016,7047,7046,1,1,43,111,38,41,1,5447,0,0,0,0,2,4,2,4,2.3,3064.98149117,0,23500,94822.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,41226.9565217,10,5,10,10_0,17000.0,0,17000.0,0,2,2,0.0,0.0,0.0,0,0,1673.523227357605,1673.523227357605,0.0 -10017,7058,7057,21,21,58,112,38,50,0,5461,0,10,0,0,2,5,1,3,1.8,1796.91186951,0,0,104860.0,1,2,7,0,4,2,0,0,1,0,0,0,0,0,1,1,58255.555555599996,10,5,10,10_1,34000.0,0,20000.0,14000,4,4,224.0,35.0,3.31,0,1,3113.8061489360325,1831.650675844725,1282.1554730913076 +10017,7058,7057,21,21,58,112,38,50,0,5461,0,10,0,0,2,5,1,3,1.8,1796.91186951,0,0,104860.0,1,2,7,0,4,2,0,0,1,0,0,0,0,0,1,1,58255.5555556,10,5,10,10_1,34000.0,0,20000.0,14000,4,4,224.0,35.0,3.31,0,1,3113.8061489360325,1831.650675844725,1282.1554730913076 10018,7062,7061,0,0,59,111,22,50,0,5467,0,0,0,0,2,5,0,2,1.5,1868.50411623,2049,0,123030.0,1,1,6,4,3,0,0,0,0,0,1,0,0,0,0,0,82020.0,10,5,10,10_0,2800.0,0,0.0,2800,1,2,0.0,15.0,0.0,0,0,275.6391198000761,0.0,275.6391198000761 10019,7067,7066,5,21,58,111,34,10,0,5476,0,0,50,370,1,3,0,1,1.0,2356.19085716,0,0,47168.0,1,3,9,7,1,2,0,0,0,0,0,1,0,0,1,1,47168.0,10,5,10,10_0,25000.0,0,15000.0,10000,11,12,0.0,20.0,3.3,0,1,2461.063569643537,1476.6381417861223,984.4254278574147 10020,7075,7074,0,4,43,111,37,10,0,5483,0,950,0,0,2,5,2,4,2.3,3156.47107852,0,0,171568.0,1,2,10,8,4,2,1,1,0,0,0,0,1,0,0,2,74594.7826087,10,5,10,10_0,11000.0,0,11000.0,0,6,6,96.7,47.5,5.57,0,0,1082.8679706431562,1082.8679706431562,0.0 10021,7077,7076,6,6,80,111,74,31,0,5486,0,0,0,0,0,6,0,2,1.5,2481.80202032,0,0,69334.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,46222.6666667,10,5,10,10_0,10000.0,0,0.0,10000,5,5,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 -10022,7093,7092,0,0,88,111,74,41,0,5508,0,0,0,0,0,5,0,2,1.5,4142.287878499999,0,0,90059.0,5,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,60039.333333300005,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 +10022,7093,7092,0,0,88,111,74,41,0,5508,0,0,0,0,0,5,0,2,1.5,4142.2878785,0,0,90059.0,5,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,60039.3333333,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 10023,7100,7099,7,10,61,111,34,10,0,5518,0,500,0,1076,1,4,0,2,1.5,1915.87440486,884,0,103142.0,1,3,8,7,3,2,0,0,0,0,0,1,0,0,1,1,68761.3333333,10,5,10,10_0,27102.0,0,17102.0,10000,4,4,60.5,60.0,3.3,1,1,2667.9897945791654,1683.5643667217507,984.4254278574147 10024,7123,7122,3,3,61,111,34,20,0,5546,0,20,0,0,2,3,0,2,1.5,2082.65351278,3120,0,67412.0,1,1,8,6,3,1,0,1,0,0,1,0,0,0,0,1,44941.3333333,10,5,10,10_0,30000.0,0,30000.0,0,5,11,0.0,40.0,5.5,0,1,2953.2762835722447,2953.2762835722447,0.0 10025,7126,7125,7,8,51,111,38,10,0,555,0,250,0,0,2,8,2,4,2.5,1426.02718126,2600,0,101988.0,1,2,8,7,4,2,0,1,0,0,0,1,0,0,0,2,40795.2,10,5,10,10_0,32000.0,0,32000.0,0,9,9,242.0,36.5,3.3,0,1,3150.1613691437274,3150.1613691437274,0.0 10026,7131,7130,1,1,65,111,75,31,1,5554,0,0,0,0,0,4,0,2,1.5,2529.68357194,4654,27500,67648.0,5,2,8,6,3,1,0,0,0,0,1,0,0,0,0,1,45098.6666667,10,5,10,10_0,10572.0,0,10572.0,0,1,3,0.0,0.0,0.0,0,0,1040.7345623308588,1040.7345623308588,0.0 -10027,7134,7133,4,4,64,111,75,70,0,5558,0,0,0,0,0,5,0,2,1.5,2123.5228483,0,0,86987.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,0,2,57991.333333300005,10,5,10,10_0,33311.0,0,33311.0,0,5,5,0.0,0.0,0.0,0,0,3279.2195427358347,3279.2195427358347,0.0 +10027,7134,7133,4,4,64,111,75,70,0,5558,0,0,0,0,0,5,0,2,1.5,2123.5228483,0,0,86987.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,0,2,57991.3333333,10,5,10,10_0,33311.0,0,33311.0,0,5,5,0.0,0.0,0.0,0,0,3279.2195427358347,3279.2195427358347,0.0 10028,7136,7135,15,15,82,111,74,10,0,556,0,0,0,0,0,3,0,1,1.0,3291.52037074,0,0,87969.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,87969.0,10,5,10,10_0,2000.0,0,0.0,2000,2,22,0.0,0.0,0.0,0,0,196.88508557148296,0.0,196.88508557148296 10029,7138,7137,0,11,73,111,74,12,0,5561,0,0,0,0,0,6,0,2,1.5,2691.32298097,3862,0,66545.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,0,2,44363.3333333,10,5,10,10_0,37480.0,0,37480.0,0,9,9,0.0,0.0,0.0,0,0,3689.6265036095906,3689.6265036095906,0.0 10030,7139,7138,2,4,67,111,74,20,0,5562,0,0,0,0,0,7,0,2,1.5,1374.49826165,4360,0,57733.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,38488.6666667,10,5,10,10_0,27500.0,0,26000.0,1500,2,2,0.0,0.0,0.0,0,0,2707.169926607891,2559.5061124292783,147.6638141786122 10031,7148,7147,2,8,41,111,22,41,0,5576,0,0,99999,0,1,4,0,1,1.0,3554.29293415,0,0,40616.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,1,0,40616.0,10,5,10,10_0,25000.0,0,0.0,25000,8,9,0.0,120.0,3.3,0,1,2461.063569643537,0.0,2461.063569643537 -10032,7170,7169,6,6,59,111,23,50,0,5604,0,160,0,0,2,7,0,2,1.5,1828.06769386,0,0,92221.0,1,1,9,7,3,1,0,1,0,0,0,1,0,0,0,1,61480.666666699995,10,5,10,10_0,20000.0,0,20000.0,0,2,5,0.0,30.0,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 +10032,7170,7169,6,6,59,111,23,50,0,5604,0,160,0,0,2,7,0,2,1.5,1828.06769386,0,0,92221.0,1,1,9,7,3,1,0,1,0,0,0,1,0,0,0,1,61480.6666667,10,5,10,10_0,20000.0,0,20000.0,0,2,5,0.0,30.0,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 10033,7171,7170,6,10,50,111,46,41,0,5605,0,240,0,982,1,4,0,3,2.0,3248.89713899,0,0,77110.0,1,3,10,8,5,1,0,1,0,0,0,0,1,0,0,1,38555.0,10,5,10,10_0,15000.0,0,15000.0,0,2,3,38.1,80.0,5.5,0,0,1476.6381417861223,1476.6381417861223,0.0 10034,7185,7184,1,2,51,111,45,31,0,5629,0,600,0,0,2,7,0,2,1.5,3357.78379471,3900,0,60641.0,1,2,8,7,3,1,1,1,0,0,0,1,0,0,0,1,40427.3333333,10,5,10,10_0,30000.0,0,30000.0,0,2,3,41.0,30.0,3.3,0,1,2953.2762835722447,2953.2762835722447,0.0 10035,7189,7188,0,0,88,111,75,33,0,5632,0,0,0,0,0,3,0,1,1.0,4311.43663572,0,0,46965.0,5,4,10,8,1,0,0,0,0,0,0,0,1,0,0,0,46965.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -10046,7 +10046,7 @@ 10044,7280,7279,7,7,39,111,31,10,0,5753,0,99999,0,0,1,6,2,4,2.1,3105.25946548,0,0,311758.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,1,1,148456.190476,10,5,10,10_0,8500.0,0,7000.0,1500,2,12,0.0,0.0,0.0,0,0,836.7616136788025,689.0977995001903,147.6638141786122 10045,7284,7283,1,1,64,111,74,42,2,5760,0,0,0,0,0,5,0,1,1.0,1713.57119563,3484,16000,47862.0,5,1,6,4,1,1,0,0,0,0,1,0,0,0,0,1,47862.0,10,5,10,10_0,10000.0,0,10000.0,0,2,2,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 10046,7293,7292,0,0,71,111,75,33,0,5775,0,0,0,0,0,5,0,1,1.0,3241.70085339,0,0,40460.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,40460.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -10047,7301,7300,2,2,29,111,31,10,0,5787,0,300,0,0,2,3,0,2,1.5,3395.27869226,0,0,97151.0,1,2,9,7,3,2,0,1,0,0,0,1,0,0,0,2,64767.333333300005,10,5,10,10_0,25000.0,0,25000.0,0,3,4,170.0,20.0,3.3,1,1,2461.063569643537,2461.063569643537,0.0 +10047,7301,7300,2,2,29,111,31,10,0,5787,0,300,0,0,2,3,0,2,1.5,3395.27869226,0,0,97151.0,1,2,9,7,3,2,0,1,0,0,0,1,0,0,0,2,64767.3333333,10,5,10,10_0,25000.0,0,25000.0,0,3,4,170.0,20.0,3.3,1,1,2461.063569643537,2461.063569643537,0.0 10048,7303,7302,3,3,70,111,74,30,0,579,0,0,0,0,0,8,0,1,1.0,1586.36732844,0,0,62239.0,5,1,4,4,1,1,0,0,0,0,1,0,0,0,0,1,62239.0,10,5,10,10_0,12000.0,0,12000.0,0,2,2,0.0,0.0,0.0,0,0,1181.3105134288976,1181.3105134288976,0.0 10049,7330,7329,0,9,33,112,38,12,0,5826,0,100,3,0,2,4,0,2,1.5,2218.7515722,0,0,60934.0,1,4,7,0,3,2,0,1,1,0,0,0,0,0,1,1,40622.6666667,10,5,10,10_1,35000.0,0,20000.0,15000,3,9,0.0,80.0,3.3,0,1,3205.3886827282686,1831.650675844725,1373.7380068835437 10050,7353,7352,5,6,54,111,46,30,0,5857,0,180,0,0,1,3,0,1,1.0,1987.03474385,0,0,49000.0,1,2,6,5,1,1,0,1,0,0,1,0,0,0,0,1,49000.0,10,5,10,10_0,12000.0,0,12000.0,0,3,3,0.0,10.0,3.3,0,1,1181.3105134288976,1181.3105134288976,0.0 @@ -10063,27 +10063,27 @@ 10061,7479,7478,1,1,59,112,77,12,1,6029,0,0,0,0,0,7,0,3,2.0,836.115501657,5379,42000,84296.0,5,1,8,2,5,2,0,0,0,1,0,0,0,0,1,1,42148.0,10,5,10,10_0,34000.0,0,25000.0,9000,4,4,0.0,0.0,0.0,0,0,3347.04645471521,2461.063569643537,885.9828850716733 10062,7497,7496,6,11,63,111,34,10,0,6055,0,60,0,0,2,7,0,2,1.5,1443.76368027,0,0,111717.0,1,2,9,7,3,1,0,1,0,0,0,1,0,0,0,1,74478.0,10,5,10,10_0,30000.0,0,30000.0,0,5,11,0.0,40.0,5.5,0,1,2953.2762835722447,2953.2762835722447,0.0 10063,7515,7514,10,11,64,112,75,10,0,6077,0,0,0,0,0,4,0,2,1.5,4611.06039849,0,0,61031.0,5,1,9,3,3,2,0,0,0,1,0,0,0,0,1,1,40687.3333333,10,5,10,10_0,22000.0,0,15000.0,7000,9,9,0.0,0.0,0.0,0,0,2165.7359412863125,1476.6381417861223,689.0977995001903 -10064,7522,7521,2,2,64,111,74,12,0,6086,0,0,0,0,0,5,0,2,1.5,1280.77079936,5079,0,93679.0,4,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,62452.666666699995,10,5,10,10_0,4400.0,0,2400.0,2000,1,1,0.0,0.0,0.0,0,0,433.1471882572625,236.26210268577955,196.88508557148296 +10064,7522,7521,2,2,64,111,74,12,0,6086,0,0,0,0,0,5,0,2,1.5,1280.77079936,5079,0,93679.0,4,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,62452.6666667,10,5,10,10_0,4400.0,0,2400.0,2000,1,1,0.0,0.0,0.0,0,0,433.1471882572625,236.26210268577955,196.88508557148296 10065,7525,7524,27,27,79,111,74,10,0,609,0,0,0,0,0,10,0,1,1.0,2887.28496823,0,0,37683.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,37683.0,10,5,10,10_0,8000.0,0,0.0,8000,15,21,0.0,0.0,0.0,0,0,787.5403422859318,0.0,787.5403422859318 10066,7542,7541,0,0,92,111,74,60,0,6113,0,0,0,0,0,4,0,1,1.0,3688.12484594,0,0,41242.0,5,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,41242.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 10067,7561,7560,3,3,54,111,37,50,0,6138,0,200,80,0,2,6,0,2,1.5,3486.92174679,0,0,66043.0,1,1,6,4,3,2,0,1,0,0,1,0,0,0,1,1,44028.6666667,10,5,10,10_0,61445.0,0,51445.0,10000,3,3,0.0,28.0,5.56,0,1,6048.802041469885,5064.37661361247,984.4254278574147 10068,7581,7580,1,12,48,111,48,20,2,6169,0,800,160,0,3,6,2,4,2.5,1181.5400753,5195,3000,99738.0,1,1,7,5,4,4,0,1,0,0,1,0,0,0,2,2,39895.2,10,5,10,10_0,11416.0,0,11416.0,0,1,1,43.0,45.0,3.3,1,1,1123.8200684420246,1123.8200684420246,0.0 10069,7589,7588,6,6,55,111,43,60,0,6180,0,1800,0,0,2,7,3,5,3.0,1058.60481466,6054,0,137228.0,1,1,10,8,4,3,1,1,0,0,0,0,1,0,1,2,45742.6666667,10,5,10,10_0,17891.0,0,17891.0,0,1,1,107.5,42.0,3.3,0,1,1761.2355329797008,1761.2355329797008,0.0 10070,7590,7589,1,1,57,300,38,50,0,6182,0,0,0,0,1,6,0,1,1.0,1968.14578793,0,0,55292.0,1,1,0,0,1,2,0,1,1,0,0,0,0,0,1,1,55292.0,10,5,10,10_1,11500.0,0,10000.0,1500,2,2,152.0,40.0,3.3,0,1,1053.1991386107168,915.8253379223625,137.37380068835438 -10071,7591,7590,4,10,33,111,35,10,0,6184,0,0,100,0,2,4,1,3,1.8,4839.70873925,3286,0,79049.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,43916.1111111,10,5,10,10_0,5000.0,0,0.0,5000,4,9,14.0,12.333333333299999,0.0,1,1,492.21271392870733,0.0,492.21271392870733 -10072,7592,7591,5,15,34,111,37,50,0,6185,0,220,0,0,2,3,1,3,1.8,2134.77603041,0,0,69270.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,38483.3333333,10,5,10,10_0,10000.0,0,10000.0,0,7,8,70.0,8.666666666669999,3.3,0,1,984.4254278574147,984.4254278574147,0.0 -10073,7605,7604,3,3,42,111,21,12,0,6198,0,0,99999,0,2,6,2,4,2.1,4416.81119829,2080,0,136934.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,65206.666666699995,10,5,10,10_0,10000.0,0,0.0,10000,2,2,134.5,58.75,3.3,0,1,984.4254278574147,0.0,984.4254278574147 +10071,7591,7590,4,10,33,111,35,10,0,6184,0,0,100,0,2,4,1,3,1.8,4839.70873925,3286,0,79049.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,1,0,43916.1111111,10,5,10,10_0,5000.0,0,0.0,5000,4,9,14.0,12.3333333333,0.0,1,1,492.21271392870733,0.0,492.21271392870733 +10072,7592,7591,5,15,34,111,37,50,0,6185,0,220,0,0,2,3,1,3,1.8,2134.77603041,0,0,69270.0,1,2,9,7,4,1,0,1,0,0,0,1,0,0,0,1,38483.3333333,10,5,10,10_0,10000.0,0,10000.0,0,7,8,70.0,8.66666666667,3.3,0,1,984.4254278574147,984.4254278574147,0.0 +10073,7605,7604,3,3,42,111,21,12,0,6198,0,0,99999,0,2,6,2,4,2.1,4416.81119829,2080,0,136934.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,65206.6666667,10,5,10,10_0,10000.0,0,0.0,10000,2,2,134.5,58.75,3.3,0,1,984.4254278574147,0.0,984.4254278574147 10074,7613,7612,6,6,38,111,37,31,0,6208,0,135,0,0,1,5,0,1,1.0,2555.16414688,0,0,47598.0,1,2,5,4,1,1,0,1,0,0,1,0,0,0,0,1,47598.0,10,5,10,10_0,24000.0,0,24000.0,0,5,5,64.5,50.0,3.3,0,1,2362.621026857795,2362.621026857795,0.0 10075,7619,7618,19,19,46,111,38,31,0,6213,0,0,0,422,1,2,0,1,1.0,3045.53282636,0,0,40861.0,1,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,40861.0,10,5,10,10_0,5000.0,0,0.0,5000,13,16,24.5,80.0,5.56,0,0,492.21271392870733,0.0,492.21271392870733 10076,7625,7624,1,2,45,111,31,10,0,622,0,0,0,0,2,3,0,2,1.5,7633.78889798,0,0,141556.0,1,2,10,8,3,1,0,0,0,0,0,0,1,0,0,1,94370.6666667,10,5,10,10_0,15164.0,0,15164.0,0,0,0,0.0,0.0,0.0,0,0,1492.7827188029837,1492.7827188029837,0.0 10077,7658,7657,5,5,70,111,74,10,0,6268,0,0,0,0,0,5,0,2,1.5,1033.24990927,0,0,72905.0,5,2,8,7,3,2,0,0,0,0,0,1,0,0,2,0,48603.3333333,10,5,10,10_0,4000.0,0,0.0,4000,9,9,0.0,0.0,0.0,0,0,393.7701711429659,0.0,393.7701711429659 -10078,7664,7663,4,5,55,111,37,10,0,6277,0,350,0,0,2,5,0,2,1.5,1775.20384428,1627,0,80557.0,1,1,7,5,3,1,0,1,0,0,1,0,0,0,0,1,53704.666666699995,10,5,10,10_0,10000.0,0,10000.0,0,3,4,0.0,42.5,3.3,0,1,984.4254278574147,984.4254278574147,0.0 +10078,7664,7663,4,5,55,111,37,10,0,6277,0,350,0,0,2,5,0,2,1.5,1775.20384428,1627,0,80557.0,1,1,7,5,3,1,0,1,0,0,1,0,0,0,0,1,53704.6666667,10,5,10,10_0,10000.0,0,10000.0,0,3,4,0.0,42.5,3.3,0,1,984.4254278574147,984.4254278574147,0.0 10079,7666,7665,0,6,29,112,63,50,0,6284,0,50,50,0,1,2,0,1,1.0,5822.31032604,3640,0,54806.0,1,1,8,1,1,2,0,1,0,1,0,0,0,0,1,1,54806.0,10,5,10,10_0,15000.0,0,15000.0,0,2,5,47.0,18.0,3.3,1,1,1476.6381417861223,1476.6381417861223,0.0 10080,7674,7673,0,0,49,111,37,50,0,6293,0,0,0,0,2,6,0,2,1.5,1171.94269651,0,0,58890.0,1,1,8,7,3,0,0,0,0,0,0,1,0,0,0,0,39260.0,10,5,10,10_0,15000.0,0,0.0,15000,2,2,366.2,75.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 10081,7691,7690,10,10,65,111,74,10,0,6315,0,0,0,0,0,3,0,1,1.0,2167.50853202,2276,0,39649.0,5,2,9,7,1,1,0,0,0,0,0,1,0,0,1,0,39649.0,10,5,10,10_0,5000.0,0,0.0,5000,7,7,0.0,0.0,0.0,0,0,492.21271392870733,0.0,492.21271392870733 10082,7702,7701,1,5,61,111,74,20,2,6333,0,0,0,0,0,8,0,2,1.5,1298.69862609,3798,13000,58682.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,0,1,39121.3333333,10,5,10,10_0,9000.0,0,9000.0,0,3,3,0.0,0.0,0.0,0,0,885.9828850716733,885.9828850716733,0.0 10083,7708,7707,4,8,70,111,74,10,0,6345,0,0,0,0,0,6,0,2,1.5,1312.93862745,1976,0,88584.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,59056.0,10,5,10,10_0,5000.0,0,0.0,5000,4,6,0.0,0.0,0.0,0,0,492.21271392870733,0.0,492.21271392870733 -10084,7713,7712,2,3,42,112,31,10,0,6353,0,0,1200,0,2,8,1,3,1.8,1695.25836385,3713,0,308518.0,1,1,8,0,4,2,1,1,1,0,0,0,0,0,2,0,171398.88888900002,10,5,10,10_1,12000.0,0,0.0,12000,4,5,26.0,10.6666666667,3.3,1,1,1098.990405506835,0.0,1098.990405506835 +10084,7713,7712,2,3,42,112,31,10,0,6353,0,0,1200,0,2,8,1,3,1.8,1695.25836385,3713,0,308518.0,1,1,8,0,4,2,1,1,1,0,0,0,0,0,2,0,171398.888889,10,5,10,10_1,12000.0,0,0.0,12000,4,5,26.0,10.6666666667,3.3,1,1,1098.990405506835,0.0,1098.990405506835 10085,7717,7716,1,1,40,111,46,10,1,636,0,0,0,0,2,3,2,4,2.1,2454.83941316,1442,21000,85161.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,40552.8571429,10,5,10,10_0,18000.0,0,18000.0,0,3,3,162.5,57.5,3.31,0,1,1771.9657701433466,1771.9657701433466,0.0 10086,7721,7720,20,38,37,111,38,20,0,6363,0,1400,0,0,2,3,0,2,1.5,2884.71616399,0,0,67358.0,1,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,44905.3333333,10,5,10,10_0,45000.0,0,30000.0,15000,18,18,346.5,127.5,3.3,0,1,4429.914425358366,2953.2762835722447,1476.6381417861223 10087,7722,7721,1,2,25,300,38,12,2,6364,0,330,0,0,1,4,0,1,1.0,2335.61931352,3114,22160,59401.0,1,3,0,0,1,1,1,1,1,0,0,0,0,0,0,1,59401.0,10,5,10,10_1,25000.0,0,25000.0,0,3,5,188.0,60.0,3.3,0,1,2289.563344805906,2289.563344805906,0.0 @@ -10092,7 +10092,7 @@ 10090,7770,7769,9,9,61,111,34,10,0,6432,0,150,0,0,2,5,0,2,1.5,1198.81897607,0,0,75028.0,1,1,8,7,3,1,0,1,0,0,0,1,0,0,0,1,50018.6666667,10,5,10,10_0,30000.0,0,30000.0,0,5,11,0.0,40.0,5.5,0,1,2953.2762835722447,2953.2762835722447,0.0 10091,7772,7771,7,11,41,111,38,12,0,6435,0,0,260,0,2,5,2,4,2.1,981.32587655,0,0,88136.0,1,2,7,5,4,3,0,1,0,0,1,0,0,0,3,0,41969.5238095,10,5,10,10_0,20000.0,0,0.0,20000,4,14,28.5,76.6666666667,3.3,0,1,1968.8508557148293,0.0,1968.8508557148293 10092,7774,7773,4,4,73,111,74,10,0,6437,0,0,0,0,0,7,0,2,1.5,1615.3165766,2600,0,79065.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,2,0,52710.0,10,5,10,10_0,21068.0,0,0.0,21068,2,3,0.0,0.0,0.0,0,0,2073.9874914100014,0.0,2073.9874914100014 -10093,7778,7777,3,3,49,111,38,50,0,6443,0,900,0,0,2,5,1,3,1.8,3094.5638556999997,0,0,91609.0,1,2,10,8,4,2,1,1,0,0,0,0,1,0,0,2,50893.8888889,10,5,10,10_0,5500.0,0,5500.0,0,3,3,0.0,43.3333333333,5.57,1,0,541.4339853215781,541.4339853215781,0.0 +10093,7778,7777,3,3,49,111,38,50,0,6443,0,900,0,0,2,5,1,3,1.8,3094.5638557,0,0,91609.0,1,2,10,8,4,2,1,1,0,0,0,0,1,0,0,2,50893.8888889,10,5,10,10_0,5500.0,0,5500.0,0,3,3,0.0,43.3333333333,5.57,1,0,541.4339853215781,541.4339853215781,0.0 10094,7790,7789,4,4,64,111,74,31,0,646,0,0,0,0,0,5,0,2,1.5,1841.29632719,1107,0,59935.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,39956.6666667,10,5,10,10_0,25000.0,0,25000.0,0,5,5,0.0,0.0,0.0,0,0,2461.063569643537,2461.063569643537,0.0 10095,7793,7792,3,3,49,111,35,10,0,6464,0,0,220,0,1,3,0,1,1.0,3482.65710413,3086,0,51555.0,1,1,10,8,1,1,0,1,0,0,0,0,1,0,1,0,51555.0,10,5,10,10_0,4000.0,0,0.0,4000,3,3,78.5,180.0,3.3,0,1,393.7701711429659,0.0,393.7701711429659 10096,7808,7807,0,0,55,300,74,30,0,6488,0,0,0,0,0,4,0,1,1.0,2710.50797069,0,0,55060.0,5,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,55060.0,10,5,10,10_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -10109,38 +10109,38 @@ 10107,7980,7979,2,3,77,111,74,50,0,6718,0,0,0,0,0,5,0,2,1.5,2073.88451386,2103,0,136012.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,90674.6666667,10,5,10,10_0,18000.0,0,15000.0,3000,5,5,0.0,0.0,0.0,0,0,1771.9657701433466,1476.6381417861223,295.3276283572244 10108,7990,7989,3,3,55,111,38,12,0,673,0,420,0,0,2,6,1,3,2.0,1779.00412039,3123,0,84304.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,0,1,42152.0,10,5,10,10_0,12000.0,0,12000.0,0,3,3,0.0,0.0,0.0,0,1,1181.3105134288976,1181.3105134288976,0.0 10109,8010,8009,17,19,60,111,77,30,0,6765,0,0,0,0,1,5,1,3,2.0,2023.85441642,1561,0,81829.0,5,1,10,8,4,3,0,0,0,0,0,0,1,0,1,2,40914.5,10,5,10,10_0,27000.0,0,27000.0,0,3,3,0.0,0.0,0.0,0,1,2657.9486552150197,2657.9486552150197,0.0 -10110,8017,8016,4,4,61,112,33,12,0,6776,0,100,0,0,1,6,0,2,1.5,1261.81041618,4602,0,86090.0,1,1,5,0,3,1,0,1,1,0,0,0,0,0,0,1,57393.333333300005,10,5,10,10_1,15000.0,0,15000.0,0,1,1,0.0,0.0,0.0,0,0,1373.7380068835437,1373.7380068835437,0.0 +10110,8017,8016,4,4,61,112,33,12,0,6776,0,100,0,0,1,6,0,2,1.5,1261.81041618,4602,0,86090.0,1,1,5,0,3,1,0,1,1,0,0,0,0,0,0,1,57393.3333333,10,5,10,10_1,15000.0,0,15000.0,0,1,1,0.0,0.0,0.0,0,0,1373.7380068835437,1373.7380068835437,0.0 10111,8033,8032,8,8,63,111,34,10,0,6797,0,0,150,408,1,2,0,1,1.0,2108.98951454,0,0,52618.0,1,3,9,7,1,1,0,1,0,0,0,1,0,0,1,0,52618.0,10,5,10,10_0,14753.0,0,0.0,14753,1,3,0.0,10.0,3.3,0,1,1452.322833718044,0.0,1452.322833718044 10112,8047,8046,4,4,52,112,48,60,0,6814,0,544,0,0,2,5,0,2,1.5,1680.60609934,5430,0,61908.0,1,2,6,1,3,2,0,1,0,1,0,0,0,0,0,2,41272.0,10,5,10,10_0,15000.0,0,15000.0,0,2,2,33.0,35.0,3.3,0,1,1476.6381417861223,1476.6381417861223,0.0 10113,8048,8047,4,5,31,111,37,31,0,6815,0,280,50,0,2,3,0,2,1.5,3098.76090949,0,0,73728.0,1,2,8,7,3,2,1,1,0,0,0,1,0,0,1,1,49152.0,10,5,10,10_0,40226.0,0,29226.0,11000,2,2,229.0,77.5,3.3,0,1,3959.9497260992366,2877.0817554560804,1082.8679706431562 -10114,8052,8051,6,6,37,111,31,10,0,6819,0,50,0,721,2,3,1,3,1.8,2483.255647,0,0,78109.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,43393.8888889,10,5,10,10_0,10000.0,0,10000.0,0,7,8,70.0,8.666666666669999,3.3,0,1,984.4254278574147,984.4254278574147,0.0 +10114,8052,8051,6,6,37,111,31,10,0,6819,0,50,0,721,2,3,1,3,1.8,2483.255647,0,0,78109.0,1,3,9,7,4,1,0,1,0,0,0,1,0,0,0,1,43393.8888889,10,5,10,10_0,10000.0,0,10000.0,0,7,8,70.0,8.66666666667,3.3,0,1,984.4254278574147,984.4254278574147,0.0 10115,8057,8056,5,5,70,221,74,60,0,6828,0,0,0,0,0,5,0,1,1.0,4469.39661476,0,0,38030.0,5,1,1,2,1,1,0,0,0,1,0,0,0,0,1,0,38030.0,10,5,10,10_0,1500.0,0,0.0,1500,3,4,0.0,0.0,0.0,0,0,147.6638141786122,0.0,147.6638141786122 -10116,8060,8059,3,5,61,111,31,10,0,6830,0,970,0,0,2,5,0,2,1.5,1590.90766915,7150,0,92582.0,1,2,8,7,3,3,1,1,0,0,0,1,0,0,1,2,61721.333333300005,10,5,10,10_0,24500.0,0,20000.0,4500,5,5,47.6,32.5,0.0,0,1,2411.8422982506663,1968.8508557148293,442.99144253583665 +10116,8060,8059,3,5,61,111,31,10,0,6830,0,970,0,0,2,5,0,2,1.5,1590.90766915,7150,0,92582.0,1,2,8,7,3,3,1,1,0,0,0,1,0,0,1,2,61721.3333333,10,5,10,10_0,24500.0,0,20000.0,4500,5,5,47.6,32.5,0.0,0,1,2411.8422982506663,1968.8508557148293,442.99144253583665 10117,8066,8065,0,0,68,111,74,41,0,6838,0,0,0,580,0,3,0,1,1.0,3003.20031483,0,0,41610.0,5,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,41610.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 10118,8071,8070,0,0,62,111,31,10,0,6843,0,0,0,0,2,4,0,2,1.5,2573.71668046,0,0,184875.0,1,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,123250.0,10,5,10,10_0,0.0,0,0.0,0,0,0,198.4,90.0,5.56,0,0,0.0,0.0,0.0 10119,8080,8079,1,11,64,112,74,20,2,6855,0,0,0,0,0,4,0,2,1.5,1367.41355458,5382,4300,72234.0,5,1,6,0,3,2,0,0,1,0,0,0,0,0,0,1,48156.0,10,5,10,10_1,8000.0,0,6000.0,2000,11,12,0.0,0.0,0.0,0,0,732.66027033789,549.4952027534175,183.1650675844725 10120,8089,8088,0,15,39,111,38,12,0,687,0,0,50,0,2,3,2,4,2.1,3087.7164428,1901,0,109453.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,1,1,52120.4761905,10,5,10,10_0,40000.0,0,35000.0,5000,7,18,290.5,70.0,3.3,0,1,3937.7017114296586,3445.4889975009514,492.21271392870733 10121,8098,8097,2,3,55,112,46,30,0,688,0,300,260,0,2,6,0,2,1.5,3493.49878065,1041,0,69704.0,1,2,6,0,3,2,0,1,1,0,0,0,0,0,1,1,46469.3333333,10,5,10,10_1,8748.0,0,5000.0,3748,3,8,608.0,140.0,3.31,0,0,801.1640056144827,457.9126689611812,343.2513366533015 10122,8124,8123,3,3,65,111,74,10,0,6917,0,0,0,0,0,4,0,1,1.0,2146.35882775,0,0,38095.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,1,0,38095.0,10,5,10,10_0,13000.0,0,0.0,13000,2,0,0.0,0.0,0.0,0,0,1279.7530562146392,0.0,1279.7530562146392 -10123,8130,8129,25,32,60,112,33,33,0,6926,0,0,0,0,1,9,0,2,1.5,3265.36731366,0,0,84479.0,1,4,7,0,3,1,0,0,1,0,0,0,0,0,1,0,56319.333333300005,10,5,10,10_1,15000.0,0,0.0,15000,6,6,0.0,0.0,0.0,0,1,1373.7380068835437,0.0,1373.7380068835437 +10123,8130,8129,25,32,60,112,33,33,0,6926,0,0,0,0,1,9,0,2,1.5,3265.36731366,0,0,84479.0,1,4,7,0,3,1,0,0,1,0,0,0,0,0,1,0,56319.3333333,10,5,10,10_1,15000.0,0,0.0,15000,6,6,0.0,0.0,0.0,0,1,1373.7380068835437,0.0,1373.7380068835437 10124,8138,8137,3,7,56,111,37,31,0,6938,0,0,0,0,1,7,0,2,1.5,2227.08398305,0,0,98777.0,1,1,6,5,3,1,0,0,0,0,1,0,0,0,1,0,65851.3333333,10,5,10,10_0,10000.0,0,0.0,10000,7,7,0.0,20.0,3.3,0,1,984.4254278574147,0.0,984.4254278574147 10125,8149,8148,10,10,55,111,34,31,0,6951,0,100,0,0,1,4,0,1,1.0,5007.6784282,0,0,43700.0,1,2,4,4,1,1,0,1,0,0,1,0,0,0,0,1,43700.0,10,5,10,10_0,12000.0,0,12000.0,0,9,14,0.0,2.0,1.1,0,0,1181.3105134288976,1181.3105134288976,0.0 10126,8171,8170,0,0,66,111,35,20,0,6979,0,0,0,0,1,6,0,1,1.0,2712.46366288,0,0,76323.0,1,1,10,8,1,0,0,0,0,0,0,0,1,0,0,0,76323.0,10,5,10,10_0,0.0,0,0.0,0,0,0,204.5,140.0,5.56,0,0,0.0,0.0,0.0 -10127,8182,8181,3,3,62,111,37,41,0,6993,0,300,0,1050,1,3,0,1,1.0,3560.3604424000005,0,0,77106.0,1,3,10,8,1,1,1,1,0,0,0,0,1,0,0,1,77106.0,10,5,10,10_0,20000.0,0,20000.0,0,8,8,34.0,50.0,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 -10128,8187,8186,2,2,67,112,74,70,0,6998,0,0,0,0,0,9,0,2,1.5,945.3676191569999,6760,0,63620.0,5,1,10,4,3,2,0,0,0,0,1,0,0,0,1,0,42413.3333333,10,5,10,10_0,10000.0,0,0.0,10000,3,4,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 +10127,8182,8181,3,3,62,111,37,41,0,6993,0,300,0,1050,1,3,0,1,1.0,3560.3604424,0,0,77106.0,1,3,10,8,1,1,1,1,0,0,0,0,1,0,0,1,77106.0,10,5,10,10_0,20000.0,0,20000.0,0,8,8,34.0,50.0,3.3,0,1,1968.8508557148293,1968.8508557148293,0.0 +10128,8187,8186,2,2,67,112,74,70,0,6998,0,0,0,0,0,9,0,2,1.5,945.367619157,6760,0,63620.0,5,1,10,4,3,2,0,0,0,0,1,0,0,0,1,0,42413.3333333,10,5,10,10_0,10000.0,0,0.0,10000,3,4,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 10129,8189,8188,4,4,56,111,46,50,0,70,0,0,0,0,1,5,0,2,1.5,1599.06678124,0,0,69083.0,1,1,8,7,3,1,0,0,0,0,0,1,0,0,1,0,46055.3333333,10,5,10,10_0,10000.0,0,0.0,10000,5,7,0.0,4.0,3.3,0,0,984.4254278574147,0.0,984.4254278574147 10130,8198,8197,3,4,40,111,43,20,0,7013,0,1000,0,0,1,5,2,3,1.6,2091.41785204,3900,0,88800.0,1,2,7,5,2,1,1,1,0,0,1,0,0,0,0,1,55500.0,10,5,10,10_0,13900.0,0,13900.0,0,1,1,37.5,10.0,0.0,1,0,1368.3513447218065,1368.3513447218065,0.0 10131,8221,8220,11,11,62,112,75,33,0,7048,0,0,0,0,0,5,0,2,1.5,2295.576968,0,0,60686.0,5,1,10,0,3,2,0,0,1,0,0,0,0,0,0,2,40457.3333333,10,5,10,10_1,8000.0,0,8000.0,0,3,10,0.0,0.0,0.0,0,0,732.66027033789,732.66027033789,0.0 10132,8235,8234,4,4,70,111,74,12,0,7069,0,0,0,0,0,5,0,2,1.5,1155.15049149,818,0,59768.0,5,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,39845.3333333,10,5,10,10_0,14000.0,0,7000.0,7000,5,5,0.0,0.0,0.0,0,0,1378.1955990003805,689.0977995001903,689.0977995001903 10133,8237,8236,6,7,58,112,37,30,0,7070,0,530,0,0,2,5,0,2,1.5,2720.10653265,2601,0,90969.0,1,2,9,1,3,2,0,1,0,1,0,0,0,0,0,2,60646.0,10,5,10,10_0,17000.0,0,17000.0,0,5,5,65.5,52.5,3.3,0,1,1673.523227357605,1673.523227357605,0.0 -10134,8252,8251,3,3,36,112,21,50,0,7089,0,300,0,254,2,4,3,5,2.6,5007.34834767,2617,0,109561.0,1,3,9,3,4,1,1,1,0,1,0,0,0,1,0,1,42138.846153800005,10,5,10,10_0,20000.0,0,20000.0,0,3,0,748.8,46.8,1.1,0,0,1968.8508557148293,1968.8508557148293,0.0 +10134,8252,8251,3,3,36,112,21,50,0,7089,0,300,0,254,2,4,3,5,2.6,5007.34834767,2617,0,109561.0,1,3,9,3,4,1,1,1,0,1,0,0,0,1,0,1,42138.8461538,10,5,10,10_0,20000.0,0,20000.0,0,3,0,748.8,46.8,1.1,0,0,1968.8508557148293,1968.8508557148293,0.0 10135,8254,8253,1,9,53,111,47,60,2,7091,0,0,400,0,1,3,0,1,1.0,2715.50813777,1065,3000,39389.0,1,2,10,8,1,1,0,1,0,0,0,0,1,0,1,0,39389.0,10,5,10,10_0,5000.0,0,0.0,5000,2,2,0.0,20.0,3.3,0,1,492.21271392870733,0.0,492.21271392870733 10136,8269,8268,2,3,51,120,38,12,0,7115,0,0,0,0,2,6,2,4,2.3,1388.63123186,2497,0,90912.0,1,1,0,0,4,3,1,0,1,0,0,0,0,0,0,3,39526.9565217,10,5,10,10_1,20000.0,0,20000.0,0,3,8,5240.8,43.3333333333,3.3,0,1,1831.650675844725,1831.650675844725,0.0 10137,8279,8278,1,3,58,111,38,12,0,7126,0,50,100099,0,3,7,2,4,2.5,1847.66577417,3487,0,99569.0,1,1,9,7,4,4,0,1,0,0,0,1,0,0,2,2,39827.6,10,5,10,10_0,12226.0,0,12226.0,0,1,2,0.0,8.5,1.1,1,0,1203.558528098475,1203.558528098475,0.0 10138,8281,8280,10,12,45,111,34,10,0,7128,0,0,200,0,2,4,2,4,2.1,2936.19026178,0,0,85661.0,1,1,9,7,4,1,0,1,0,0,0,1,0,0,1,0,40790.952381,10,5,10,10_0,8907.0,0,0.0,8907,3,5,0.0,21.5,3.31,0,1,876.8277285925992,0.0,876.8277285925992 10139,8286,8285,0,0,56,111,46,20,0,7132,0,0,0,0,2,6,0,2,1.5,2782.90253426,0,0,68519.0,1,2,9,7,3,0,0,0,0,0,0,1,0,0,0,0,45679.3333333,10,5,10,10_0,2200.0,0,0.0,2200,1,1,70.0,25.0,3.32,0,1,216.57359412863124,0.0,216.57359412863124 10140,8287,8286,4,16,60,211,34,20,0,7134,0,0,140,0,1,6,0,3,2.0,1407.04021566,4261,0,108044.0,1,1,1,3,5,3,0,1,0,1,0,0,0,0,2,1,54022.0,10,5,10,10_0,15700.0,0,5700.0,10000,2,7,0.0,0.0,0.0,0,1,1545.5479217361412,561.1224938787265,984.4254278574147 -10141,8298,8297,1,2,43,111,38,42,0,7151,0,110,0,749,2,3,1,3,1.8,3306.61715357,0,0,81392.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,45217.77777780001,10,5,10,10_0,12000.0,0,12000.0,0,8,11,67.0,51.6666666667,3.3,0,1,1181.3105134288976,1181.3105134288976,0.0 +10141,8298,8297,1,2,43,111,38,42,0,7151,0,110,0,749,2,3,1,3,1.8,3306.61715357,0,0,81392.0,1,3,10,8,4,1,0,1,0,0,0,0,1,0,0,1,45217.7777778,10,5,10,10_0,12000.0,0,12000.0,0,8,11,67.0,51.6666666667,3.3,0,1,1181.3105134288976,1181.3105134288976,0.0 10142,8299,8298,5,5,73,111,75,20,0,7154,0,0,0,0,0,4,0,1,1.0,3025.81140211,0,0,39870.0,5,1,8,7,1,1,0,0,0,0,0,1,0,0,1,0,39870.0,10,5,10,10_0,10000.0,0,0.0,10000,9,9,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 10143,8308,8307,8,11,69,111,75,12,0,7165,0,0,0,0,0,4,0,2,1.5,1312.00272807,3047,0,71444.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,47629.3333333,10,5,10,10_0,9000.0,0,4000.0,5000,9,14,0.0,0.0,0.0,0,0,885.9828850716733,393.7701711429659,492.21271392870733 10144,8332,8331,17,25,51,300,31,10,0,7208,0,99999,0,0,2,6,2,4,2.5,2177.06092726,12145,0,226126.0,1,2,0,0,4,4,0,0,1,0,0,0,0,0,2,2,90450.4,10,5,10,10_1,15250.0,0,15000.0,250,5,6,131.8,26.6666666667,3.31,0,1,1396.633640331603,1373.7380068835437,22.895633448059062 @@ -10148,7 +10148,7 @@ 10146,8343,8342,4,4,51,112,38,10,0,7227,0,0,100,0,1,4,0,2,1.5,1224.63237624,1043,0,78774.0,1,3,9,1,3,2,0,0,0,1,0,0,0,0,2,0,52516.0,10,5,10,10_0,10000.0,0,0.0,10000,4,4,90.0,65.0,3.3,0,1,984.4254278574147,0.0,984.4254278574147 10147,8349,8348,0,0,82,300,75,33,0,7234,0,0,0,0,0,5,0,1,1.0,2509.72221471,0,0,64900.0,5,3,0,0,1,0,0,0,1,0,0,0,0,0,0,0,64900.0,10,5,10,10_1,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 10148,8359,8358,3,18,48,111,43,33,0,7244,0,0,240,0,1,3,0,1,1.0,2971.07427281,0,0,107264.0,1,2,8,6,1,1,0,1,0,0,1,0,0,0,1,0,107264.0,10,5,10,10_0,11000.0,0,0.0,11000,15,16,0.0,20.0,1.1,0,0,1082.8679706431562,0.0,1082.8679706431562 -10149,8360,8359,2,9,51,111,23,20,0,7245,0,200,60,0,2,7,2,4,2.1,2272.76598098,0,0,152697.0,1,2,9,7,4,3,0,1,0,0,0,1,0,0,2,1,72712.85714289999,10,5,10,10_0,24672.0,0,14672.0,10000,2,0,60.0,43.5,3.3,0,1,2428.774415609814,1444.348987752399,984.4254278574147 +10149,8360,8359,2,9,51,111,23,20,0,7245,0,200,60,0,2,7,2,4,2.1,2272.76598098,0,0,152697.0,1,2,9,7,4,3,0,1,0,0,0,1,0,0,2,1,72712.8571429,10,5,10,10_0,24672.0,0,14672.0,10000,2,0,60.0,43.5,3.3,0,1,2428.774415609814,1444.348987752399,984.4254278574147 10150,8366,8365,2,2,54,111,37,41,0,7251,0,0,200,434,2,4,0,2,1.5,1359.69006873,0,0,69969.0,1,3,6,4,3,1,1,1,0,0,1,0,0,0,1,0,46646.0,10,5,10,10_0,2200.0,0,0.0,2200,1,1,70.0,25.0,3.32,0,1,216.57359412863124,0.0,216.57359412863124 10151,8377,8376,5,5,60,300,71,50,0,727,0,0,0,0,0,6,0,1,1.0,1526.74995425,12324,0,38609.0,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,38609.0,10,5,10,10_1,3189.0,0,3189.0,0,0,0,0.0,0.0,0.0,0,0,292.05670026344137,292.05670026344137,0.0 10152,8381,8380,16,16,50,111,38,12,0,7277,0,0,0,0,2,1,0,2,1.5,2696.783531,0,0,152693.0,1,2,10,8,3,3,0,0,0,0,0,0,1,0,3,0,101795.333333,10,5,10,10_0,35000.0,0,0.0,35000,5,12,142.3,87.5,3.3,0,1,3445.4889975009514,0.0,3445.4889975009514 @@ -10156,13 +10156,13 @@ 10154,8390,8389,8,8,51,111,48,50,0,729,0,240,0,0,3,3,1,3,2.0,1238.09424456,0,0,81116.0,1,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,40558.0,10,5,10,10_0,24055.0,0,24055.0,0,6,11,140.5,40.0,0.0,1,1,2368.035366711011,2368.035366711011,0.0 10155,8397,8396,1,1,59,111,34,20,1,7304,0,150,0,0,1,7,0,2,1.5,904.394010762,0,18000,77296.0,1,1,6,4,3,2,0,1,0,0,1,0,0,0,0,2,51530.6666667,10,5,10,10_0,28739.0,0,28739.0,0,1,1,0.0,0.0,0.0,0,1,2829.1402371194245,2829.1402371194245,0.0 10156,8413,8412,3,3,44,111,38,31,0,7324,0,0,400,0,2,6,2,4,2.1,2555.97515114,1612,0,101487.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,2,0,48327.1428571,10,5,10,10_0,28000.0,0,0.0,28000,3,3,18.0,7.5,0.0,0,1,2756.391198000761,0.0,2756.391198000761 -10157,8419,8418,5,5,39,111,34,10,0,7333,0,0,0,0,2,5,2,4,2.1,2984.28644124,5772,0,79705.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,37954.761904800005,10,5,10,10_0,80000.0,0,80000.0,0,3,5,0.0,45.0,3.3,0,1,7875.403422859317,7875.403422859317,0.0 +10157,8419,8418,5,5,39,111,34,10,0,7333,0,0,0,0,2,5,2,4,2.1,2984.28644124,5772,0,79705.0,1,2,9,7,4,1,0,0,0,0,0,1,0,0,0,1,37954.7619048,10,5,10,10_0,80000.0,0,80000.0,0,3,5,0.0,45.0,3.3,0,1,7875.403422859317,7875.403422859317,0.0 10158,8434,8433,7,7,54,112,37,41,0,7362,0,1000,0,0,2,8,0,2,1.5,1884.01897485,4680,0,94965.0,1,1,9,0,3,2,0,1,1,0,0,0,0,0,0,2,63310.0,10,5,10,10_1,24000.0,0,24000.0,0,8,7,126.5,45.0,3.3,0,1,2197.98081101367,2197.98081101367,0.0 10159,8438,8437,5,5,54,120,64,50,0,7366,0,0,0,0,1,5,0,2,1.5,2104.45609362,0,0,61345.0,1,1,0,0,3,2,0,0,1,0,0,0,0,0,0,2,40896.6666667,10,5,10,10_1,10000.0,0,10000.0,0,9,9,0.0,0.0,0.0,1,0,915.8253379223625,915.8253379223625,0.0 10160,8451,8450,0,1,46,112,48,71,0,739,0,500,0,0,2,5,2,4,2.3,4648.60260134,0,0,306163.0,1,2,5,0,4,2,0,1,1,0,0,0,0,0,0,2,133114.347826,10,5,10,10_1,30000.0,0,30000.0,0,4,4,225.0,60.0,3.31,1,1,2747.4760137670874,2747.4760137670874,0.0 10161,8452,8451,11,17,54,111,37,31,0,7391,0,0,0,900,2,4,2,3,2.0,2701.71338992,0,0,76909.0,1,3,10,8,2,1,0,0,0,0,0,0,1,0,1,0,38454.5,10,5,10,10_0,8000.0,0,0.0,8000,13,13,144.5,91.6666666667,5.56,0,0,787.5403422859318,0.0,787.5403422859318 10162,8460,8459,3,5,58,111,33,12,0,7400,0,0,350,0,1,3,0,1,1.0,2907.20446937,0,0,45263.0,1,2,9,7,1,1,0,1,0,0,0,1,0,0,1,0,45263.0,10,5,10,10_0,15000.0,0,0.0,15000,2,5,0.0,30.0,1.1,0,0,1476.6381417861223,0.0,1476.6381417861223 -10163,8465,8464,0,0,31,111,46,31,0,7407,0,0,0,0,1,3,0,1,1.0,4000.0846020999998,0,0,92558.0,1,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,92558.0,10,5,10,10_0,0.0,0,0.0,0,0,0,37.0,63.0,2.2,0,0,0.0,0.0,0.0 +10163,8465,8464,0,0,31,111,46,31,0,7407,0,0,0,0,1,3,0,1,1.0,4000.0846021,0,0,92558.0,1,1,9,7,1,0,0,0,0,0,0,1,0,0,0,0,92558.0,10,5,10,10_0,0.0,0,0.0,0,0,0,37.0,63.0,2.2,0,0,0.0,0.0,0.0 10164,8469,8468,3,7,68,111,72,44,0,7412,0,0,0,0,0,5,1,3,1.8,2111.10681896,3120,0,72192.0,5,1,9,7,4,3,0,0,0,0,0,1,0,0,2,1,40106.6666667,10,5,10,10_0,20200.0,0,20000.0,200,6,7,0.0,0.0,0.0,0,0,1988.5393642719778,1968.8508557148293,19.688508557148296 10165,8482,8481,3,3,61,111,75,44,0,7428,0,0,0,876,0,4,0,2,1.5,2861.73423053,0,0,64201.0,5,3,8,7,3,1,0,0,0,0,0,1,0,0,1,0,42800.6666667,10,5,10,10_0,3312.0,0,0.0,3312,9,10,0.0,0.0,0.0,0,0,326.04170170637576,0.0,326.04170170637576 10166,8487,8486,6,8,60,111,37,10,0,7433,0,600,50,0,2,6,0,2,1.5,2675.63962281,0,0,63316.0,1,1,8,6,3,2,1,1,0,0,1,0,0,0,1,1,42210.6666667,10,5,10,10_0,27237.0,0,16353.0,10884,4,4,0.0,20.0,3.3,0,1,2681.2795378552405,1609.8309021752304,1071.4486356800103 @@ -10171,21 +10171,21 @@ 10169,8524,8523,8,8,53,111,37,10,0,7493,0,520,0,0,3,6,1,3,2.0,1761.48026154,619,0,89390.0,4,1,10,8,4,2,0,1,0,0,0,0,1,0,0,2,44695.0,10,5,10,10_0,18000.0,0,18000.0,0,2,12,180.3,50.0,0.0,0,1,1771.9657701433466,1771.9657701433466,0.0 10170,8533,8532,3,3,48,112,47,50,0,7504,0,60,500,0,3,7,3,5,2.8,1178.5297592,3120,0,118978.0,1,2,10,1,4,3,0,0,0,1,0,0,0,0,1,2,42492.1428571,10,5,10,10_0,11416.0,0,11416.0,0,1,1,43.0,45.0,3.3,1,1,1123.8200684420246,1123.8200684420246,0.0 10171,8549,8548,3,3,56,111,33,10,0,7525,0,280,0,0,1,2,0,1,1.0,3911.27610219,3016,0,108877.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,0,1,108877.0,10,5,10,10_0,17102.0,0,17102.0,0,4,4,0.0,120.0,3.3,0,1,1683.5643667217507,1683.5643667217507,0.0 -10172,8564,8563,3,3,45,111,38,12,0,7546,0,100,130,0,2,6,3,5,2.6,1936.27507199,0,0,97787.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,37610.384615400006,10,5,10,10_0,35000.0,0,20000.0,15000,7,8,205.0,30.0,3.3,0,1,3445.4889975009514,1968.8508557148293,1476.6381417861223 +10172,8564,8563,3,3,45,111,38,12,0,7546,0,100,130,0,2,6,3,5,2.6,1936.27507199,0,0,97787.0,1,2,9,7,4,2,0,1,0,0,0,1,0,0,1,1,37610.3846154,10,5,10,10_0,35000.0,0,20000.0,15000,7,8,205.0,30.0,3.3,0,1,3445.4889975009514,1968.8508557148293,1476.6381417861223 10173,8568,8567,2,16,50,111,46,31,0,7550,0,150,0,0,3,6,1,3,2.0,2609.16226779,3846,0,83562.0,1,2,6,5,4,2,0,1,0,0,1,0,0,0,0,2,41781.0,10,5,10,10_0,10000.0,0,10000.0,0,12,12,0.0,4.66666666667,3.3,1,1,984.4254278574147,984.4254278574147,0.0 -10174,8591,8590,0,0,43,112,37,12,2,7585,0,450,0,0,2,7,2,4,2.3,1577.20965933,2219,12100,111620.0,1,1,10,0,4,2,0,1,1,0,0,0,0,0,0,2,48530.434782599994,10,5,10,10_1,18625.0,0,18625.0,0,3,0,299.0,35.0,3.3,0,1,1705.7246918804,1705.7246918804,0.0 +10174,8591,8590,0,0,43,112,37,12,2,7585,0,450,0,0,2,7,2,4,2.3,1577.20965933,2219,12100,111620.0,1,1,10,0,4,2,0,1,1,0,0,0,0,0,0,2,48530.4347826,10,5,10,10_1,18625.0,0,18625.0,0,3,0,299.0,35.0,3.3,0,1,1705.7246918804,1705.7246918804,0.0 10175,8632,8631,3,5,57,112,31,10,0,7631,0,650,0,0,2,9,0,2,1.5,2223.7881917,4201,0,96522.0,1,2,10,4,3,2,0,1,0,0,1,0,0,0,0,2,64348.0,10,5,10,10_0,41000.0,0,41000.0,0,2,5,190.5,52.0,1.1,1,1,4036.1442542154005,4036.1442542154005,0.0 10176,8657,8656,2,2,44,111,46,50,0,7656,0,1000,0,0,2,6,2,4,2.5,1801.64188387,4628,0,101638.0,1,1,6,4,4,2,1,1,0,0,1,0,0,0,1,1,40655.2,10,5,10,10_0,19000.0,0,12000.0,7000,6,6,118.5,37.5,3.31,0,1,1870.408312929088,1181.3105134288976,689.0977995001903 10177,8723,8722,0,0,86,111,74,31,1,7744,0,0,0,0,0,3,0,1,1.0,2753.87324834,0,14693,64342.0,5,3,3,4,1,1,0,0,0,0,1,0,0,0,1,0,64342.0,10,5,10,10_0,6000.0,0,0.0,6000,10,11,0.0,0.0,0.0,0,0,590.6552567144488,0.0,590.6552567144488 10178,8740,8739,9,18,64,211,74,31,0,7768,0,0,0,0,0,6,0,1,1.0,1558.00758703,3339,0,38603.0,5,1,3,4,1,2,0,0,0,0,1,0,0,0,0,2,38603.0,10,5,10,10_0,20000.0,0,20000.0,0,10,10,0.0,0.0,0.0,0,0,1968.8508557148293,1968.8508557148293,0.0 10179,8746,8745,11,11,69,111,75,41,0,7774,0,0,0,0,0,5,0,2,1.5,1739.89453309,3239,0,61317.0,5,3,8,7,3,2,0,0,0,0,0,1,0,0,1,1,40878.0,10,5,10,10_0,9000.0,0,4000.0,5000,9,14,0.0,0.0,0.0,0,0,885.9828850716733,393.7701711429659,492.21271392870733 -10180,8752,8751,1,3,41,300,11,50,0,778,0,100,0,0,2,6,2,4,2.3,2001.76554474,7020,0,99517.0,1,2,0,0,4,2,1,0,1,0,0,0,0,0,0,2,43268.260869599995,10,5,10,10_1,22000.0,0,22000.0,0,2,2,187.0,73.3333333333,3.3,0,1,2014.8157434291975,2014.8157434291975,0.0 +10180,8752,8751,1,3,41,300,11,50,0,778,0,100,0,0,2,6,2,4,2.3,2001.76554474,7020,0,99517.0,1,2,0,0,4,2,1,0,1,0,0,0,0,0,0,2,43268.2608696,10,5,10,10_1,22000.0,0,22000.0,0,2,2,187.0,73.3333333333,3.3,0,1,2014.8157434291975,2014.8157434291975,0.0 10181,8762,8761,7,7,67,112,75,31,0,7792,0,0,0,0,0,6,0,1,1.0,2327.15133659,2387,0,40840.0,5,1,10,0,1,1,0,0,1,0,0,0,0,0,1,0,40840.0,10,5,10,10_1,40000.0,0,0.0,40000,8,8,0.0,0.0,0.0,0,0,3663.30135168945,0.0,3663.30135168945 10182,8769,8768,0,1,45,111,37,31,0,780,0,600,0,0,2,6,2,4,2.3,1957.86220616,3514,0,111550.0,1,2,8,6,4,2,1,1,0,0,1,0,0,0,0,2,48500.0,10,5,10,10_0,15000.0,0,15000.0,0,3,3,278.0,66.6666666667,3.3,0,1,1476.6381417861223,1476.6381417861223,0.0 10183,8782,8781,5,5,64,111,74,12,0,7816,0,0,0,0,0,3,0,2,1.5,2109.8053813,3200,0,121738.0,5,1,10,8,3,1,0,0,0,0,0,0,1,0,1,0,81158.6666667,10,5,10,10_0,10000.0,0,0.0,10000,6,6,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 10184,8793,8792,0,0,30,111,46,10,0,7829,0,0,0,610,2,2,0,2,1.5,3073.51935183,0,0,141788.0,1,3,10,8,3,0,0,0,0,0,0,0,1,0,0,0,94525.3333333,10,5,10,10_0,0.0,0,0.0,0,0,0,40.5,60.0,5.56,0,0,0.0,0.0,0.0 10185,8795,8794,6,6,34,112,37,43,0,7830,0,0,0,0,2,6,2,4,2.1,7540.60600161,0,0,106135.0,1,2,9,2,4,2,1,1,0,1,0,0,0,0,0,2,50540.4761905,10,5,10,10_0,48000.0,0,48000.0,0,1,6,0.0,127.5,3.3,1,1,4725.24205371559,4725.24205371559,0.0 -10186,8803,8802,3,6,44,112,38,20,0,784,0,400,0,0,2,6,1,3,1.8,1671.09234672,0,0,73268.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,40704.444444400004,10,5,10,10_0,13000.0,0,13000.0,0,9,9,79.0,33.3333333333,3.3,0,1,1279.7530562146392,1279.7530562146392,0.0 +10186,8803,8802,3,6,44,112,38,20,0,784,0,400,0,0,2,6,1,3,1.8,1671.09234672,0,0,73268.0,1,2,9,1,4,2,0,1,0,1,0,0,0,0,0,2,40704.4444444,10,5,10,10_0,13000.0,0,13000.0,0,9,9,79.0,33.3333333333,3.3,0,1,1279.7530562146392,1279.7530562146392,0.0 10187,8814,8813,2,2,57,211,34,41,0,7855,0,30,200,0,1,7,0,2,1.5,3976.04765852,0,0,60731.0,1,1,2,3,3,2,0,1,0,1,0,0,0,0,1,1,40487.3333333,10,5,10,10_0,13527.0,0,6959.0,6568,1,1,0.0,0.0,0.0,0,1,1331.632276262725,685.061655245975,646.5706210167499 10188,8818,8817,3,3,44,112,42,31,0,7860,0,1250,0,0,2,6,2,4,2.3,2351.63643516,3473,0,89419.0,1,2,10,0,4,2,0,1,1,0,0,0,0,0,0,2,38877.826087,10,5,10,10_1,25000.0,0,25000.0,0,2,6,360.5,55.6666666667,3.3,1,1,2289.563344805906,2289.563344805906,0.0 10189,8822,8821,0,0,30,111,37,12,0,7865,0,0,0,691,1,2,0,1,1.0,3256.82191083,0,0,39937.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,39937.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,30.0,5.56,0,0,0.0,0.0,0.0 @@ -10201,25 +10201,25 @@ 10199,8900,8899,2,13,54,111,48,31,2,7967,0,0,0,710,1,2,0,1,1.0,2853.3293343,0,1000,40500.0,1,3,9,7,1,1,0,0,0,0,0,1,0,0,0,1,40500.0,10,5,10,10_0,12000.0,0,12000.0,0,9,14,0.0,2.0,1.1,0,0,1181.3105134288976,1181.3105134288976,0.0 10200,8912,8911,5,8,30,111,34,10,0,7981,0,0,120,0,2,5,0,2,1.5,3360.26454036,0,0,65526.0,1,2,9,7,3,1,0,1,0,0,0,1,0,0,1,0,43684.0,10,5,10,10_0,12000.0,0,0.0,12000,5,9,102.1,87.5,3.3,0,1,1181.3105134288976,0.0,1181.3105134288976 10201,8919,8918,1,1,51,112,46,50,0,7993,0,1600,0,0,2,5,0,2,1.5,1597.67349691,4978,0,59036.0,1,1,7,4,3,2,0,1,0,0,1,0,0,0,0,2,39357.3333333,10,5,10,10_0,23000.0,0,23000.0,0,0,0,768.5,50.0,3.3,0,1,2264.178484072054,2264.178484072054,0.0 -10202,8926,8925,21,21,80,112,74,10,0,8001,0,0,0,0,0,14,0,2,1.5,5530.62603132,0,0,82805.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,1,1,55203.333333300005,10,5,10,10_0,25173.0,0,15311.0,9862,5,7,0.0,0.0,0.0,0,0,2478.09412954547,1507.2537725924876,970.8403569529825 +10202,8926,8925,21,21,80,112,74,10,0,8001,0,0,0,0,0,14,0,2,1.5,5530.62603132,0,0,82805.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,1,1,55203.3333333,10,5,10,10_0,25173.0,0,15311.0,9862,5,7,0.0,0.0,0.0,0,0,2478.09412954547,1507.2537725924876,970.8403569529825 10203,8965,8964,3,4,65,111,74,50,0,8055,0,0,0,0,0,3,0,2,1.5,2650.44508334,4322,0,61949.0,5,2,10,8,3,2,0,0,0,0,0,0,1,0,1,1,41299.3333333,10,5,10,10_0,29672.0,0,28672.0,1000,2,3,0.0,0.0,0.0,0,0,2920.987129538521,2822.5445867527797,98.44254278574148 -10204,8970,8969,2,4,45,300,43,33,0,806,0,600,0,0,3,6,3,5,2.8,860.6794662980001,0,0,149638.0,1,1,0,1,4,2,0,1,0,1,0,0,0,0,0,2,53442.1428571,10,5,10,10_0,6884.0,0,6884.0,0,0,1,53.0,10.6,3.31,0,1,677.6784645370443,677.6784645370443,0.0 +10204,8970,8969,2,4,45,300,43,33,0,806,0,600,0,0,3,6,3,5,2.8,860.679466298,0,0,149638.0,1,1,0,1,4,2,0,1,0,1,0,0,0,0,0,2,53442.1428571,10,5,10,10_0,6884.0,0,6884.0,0,0,1,53.0,10.6,3.31,0,1,677.6784645370443,677.6784645370443,0.0 10205,8983,8982,2,2,57,111,31,10,0,8078,0,400,0,0,1,2,0,1,1.0,2855.58924545,0,0,39143.0,1,2,9,7,1,1,1,1,0,0,0,1,0,0,0,1,39143.0,10,5,10,10_0,16000.0,0,16000.0,0,2,2,26.0,30.0,3.3,0,1,1575.0806845718637,1575.0806845718637,0.0 10206,8988,8987,0,15,61,111,74,20,0,8083,0,0,0,0,0,6,0,2,1.5,1260.26367974,7245,0,68986.0,5,1,7,6,3,2,0,0,0,0,1,0,0,0,1,1,45990.6666667,10,5,10,10_0,23000.0,0,11000.0,12000,10,20,0.0,0.0,0.0,0,0,2264.178484072054,1082.8679706431562,1181.3105134288976 10207,9002,9001,17,41,65,111,74,10,0,81,0,0,0,0,0,4,0,2,1.5,3373.23869377,0,0,95280.0,5,1,9,7,3,3,0,0,0,0,0,1,0,0,2,1,63520.0,10,5,10,10_0,10500.0,0,10000.0,500,24,24,0.0,0.0,0.0,0,0,1033.6466992502856,984.4254278574147,49.22127139287074 10208,9012,9011,10,10,59,111,34,20,0,8110,0,0,70,0,2,5,0,2,1.5,2349.01810195,6389,0,73359.0,1,1,9,7,3,2,0,1,0,0,0,1,0,0,2,0,48906.0,10,5,10,10_0,12000.0,0,0.0,12000,7,7,1067.2,120.0,3.33,0,1,1181.3105134288976,0.0,1181.3105134288976 -10209,9035,9034,2,2,57,111,33,20,0,8146,0,0,150,0,2,5,0,2,1.5,2590.80306853,0,0,91001.0,1,2,9,7,3,1,1,1,0,0,0,1,0,0,1,0,60667.333333300005,10,5,10,10_0,5000.0,0,0.0,5000,2,4,172.2,105.0,3.3,0,0,492.21271392870733,0.0,492.21271392870733 +10209,9035,9034,2,2,57,111,33,20,0,8146,0,0,150,0,2,5,0,2,1.5,2590.80306853,0,0,91001.0,1,2,9,7,3,1,1,1,0,0,0,1,0,0,1,0,60667.3333333,10,5,10,10_0,5000.0,0,0.0,5000,2,4,172.2,105.0,3.3,0,0,492.21271392870733,0.0,492.21271392870733 10210,9056,9055,1,3,72,112,74,71,0,8182,0,0,0,0,0,4,0,2,1.5,2676.83762359,0,0,57408.0,5,1,9,0,3,1,0,0,1,0,0,0,0,0,0,1,38272.0,10,5,10,10_1,10000.0,0,10000.0,0,4,5,0.0,0.0,0.0,0,0,915.8253379223625,915.8253379223625,0.0 10211,9057,9056,2,3,59,112,38,12,0,8184,0,0,0,0,1,5,0,2,1.5,1612.99135797,0,0,79352.0,1,1,9,0,3,2,0,0,1,0,0,0,0,0,2,0,52901.3333333,10,5,10,10_1,16200.0,0,0.0,16200,1,1,0.0,0.0,0.0,0,1,1483.6370474342273,0.0,1483.6370474342273 10212,9067,9066,7,7,54,120,13,50,0,8199,0,0,0,0,2,7,0,2,1.5,1054.05761154,0,0,57155.0,1,1,0,0,3,1,0,0,1,0,0,0,0,0,0,1,38103.3333333,10,5,10,10_1,13000.0,0,13000.0,0,2,2,63.0,10.0,3.31,0,1,1190.572939299071,1190.572939299071,0.0 10213,9085,9084,8,8,40,300,34,12,0,8224,0,99999,0,0,1,7,0,1,1.0,1518.86550366,0,0,53020.0,1,2,0,0,1,1,1,1,1,0,0,0,0,0,0,1,53020.0,10,5,10,10_1,60000.0,0,60000.0,0,1,1,176.4,90.0,3.3,1,1,5494.952027534175,5494.952027534175,0.0 10214,9094,9093,11,15,58,111,23,71,0,8234,0,0,300,0,2,5,1,3,2.0,3410.2312923,5980,0,118712.0,1,1,10,8,4,3,0,1,0,0,0,0,1,0,3,0,59356.0,10,5,10,10_0,35000.0,0,0.0,35000,5,12,142.3,87.5,3.3,0,1,3445.4889975009514,0.0,3445.4889975009514 -10215,9100,9099,0,0,41,211,37,10,0,8244,0,1500,0,0,2,5,1,3,1.8,4485.81440648,0,0,70636.0,1,2,2,3,4,2,1,1,0,1,0,0,0,0,0,2,39242.22222219999,10,5,10,10_0,18625.0,0,18625.0,0,3,0,14.4,42.0,3.3,1,1,1833.492359384435,1833.492359384435,0.0 +10215,9100,9099,0,0,41,211,37,10,0,8244,0,1500,0,0,2,5,1,3,1.8,4485.81440648,0,0,70636.0,1,2,2,3,4,2,1,1,0,1,0,0,0,0,0,2,39242.2222222,10,5,10,10_0,18625.0,0,18625.0,0,3,0,14.4,42.0,3.3,1,1,1833.492359384435,1833.492359384435,0.0 10216,9106,9105,0,1,58,111,37,10,0,8250,0,99999,0,0,3,8,1,3,2.0,1894.37324352,2774,0,126711.0,1,1,8,7,4,2,1,1,0,0,0,1,0,0,1,1,63355.5,10,5,10,10_0,27000.0,0,18000.0,9000,1,1,0.0,72.5,5.5,1,1,2657.9486552150197,1771.9657701433466,885.9828850716733 10217,9107,9106,0,0,30,111,37,10,0,8251,0,0,0,890,2,3,0,2,1.5,2964.50669172,0,0,66256.0,1,3,10,8,5,0,0,0,0,0,0,0,1,0,0,0,44170.6666667,10,5,10,10_0,0.0,0,0.0,0,0,0,40.5,60.0,5.56,0,0,0.0,0.0,0.0 10218,9114,9113,2,2,74,112,77,50,0,8259,0,0,0,0,0,6,0,1,1.0,2091.6324191,0,0,37395.0,5,4,10,4,1,1,0,0,0,0,1,0,0,0,1,0,37395.0,10,5,10,10_0,5200.0,0,0.0,5200,1,1,0.0,0.0,0.0,0,0,511.90122248585567,0.0,511.90122248585567 10219,9121,9120,1,3,27,120,37,12,2,8269,400,150,0,700,2,3,0,2,1.5,1827.23017121,1066,8900,62532.0,1,3,0,1,3,2,0,1,0,1,0,0,0,0,0,1,41688.0,10,5,10,10_0,40000.0,0,30000.0,10000,3,3,131.4,60.0,3.3,1,1,3937.7017114296586,2953.2762835722447,984.4254278574147 -10220,9135,9134,8,8,63,111,75,20,0,829,0,0,0,0,0,8,0,1,1.0,1983.5137627999998,0,0,44769.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,44769.0,10,5,10,10_0,4000.0,0,0.0,4000,9,9,0.0,0.0,0.0,0,0,393.7701711429659,0.0,393.7701711429659 +10220,9135,9134,8,8,63,111,75,20,0,829,0,0,0,0,0,8,0,1,1.0,1983.5137628,0,0,44769.0,5,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,44769.0,10,5,10,10_0,4000.0,0,0.0,4000,9,9,0.0,0.0,0.0,0,0,393.7701711429659,0.0,393.7701711429659 10221,9139,9138,5,5,64,112,21,50,0,8295,0,0,100,0,2,6,0,2,1.5,1782.32274766,0,0,137956.0,1,1,8,1,3,1,1,1,0,1,0,0,0,0,1,0,91970.6666667,10,5,10,10_0,20000.0,0,0.0,20000,2,2,0.0,20.0,0.0,0,0,1968.8508557148293,0.0,1968.8508557148293 10222,9141,9140,18,18,57,111,47,20,0,8299,0,400,40,0,2,6,0,2,1.5,1183.76346782,5836,0,62030.0,1,1,9,7,3,2,1,1,0,0,0,1,0,0,1,1,41353.3333333,10,5,10,10_0,27500.0,0,19000.0,8500,7,8,104.8,40.0,3.3,0,1,2707.169926607891,1870.408312929088,836.7616136788025 10223,9183,9182,3,3,54,112,43,33,0,8358,0,200,0,0,2,5,1,3,2.0,1765.89338119,6201,0,92053.0,1,1,10,0,4,2,0,1,1,0,0,0,0,0,0,2,46026.5,10,5,10,10_1,5000.0,0,5000.0,0,2,6,0.0,40.0,3.31,0,1,457.9126689611812,457.9126689611812,0.0 @@ -10234,18 +10234,18 @@ 10232,9259,9258,0,2,28,111,31,10,0,8464,0,0,0,380,1,2,0,1,1.0,3821.25112502,1577,0,303586.0,1,3,9,7,1,1,1,0,0,0,0,1,0,1,1,0,303586.0,10,5,10,10_0,15000.0,0,0.0,15000,3,7,98.0,50.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 10233,9264,9263,1,2,60,111,75,50,2,8469,0,0,0,0,0,7,0,2,1.5,1993.38233504,1729,22000,64785.0,5,1,10,8,3,2,0,0,0,0,0,0,1,0,1,1,43190.0,10,5,10,10_0,4400.0,0,2400.0,2000,1,1,0.0,0.0,0.0,0,0,433.1471882572625,236.26210268577955,196.88508557148296 10234,9274,9273,10,10,49,111,38,31,0,8482,0,0,80,0,1,6,0,2,1.5,3054.35797769,2543,0,75717.0,1,2,9,7,3,2,0,1,0,0,0,1,0,0,2,0,50478.0,10,5,10,10_0,7000.0,0,0.0,7000,12,12,218.5,160.0,5.57,0,0,689.0977995001903,0.0,689.0977995001903 -10235,9275,9274,0,2,35,111,37,12,0,8483,0,400,0,0,2,3,1,3,1.8,3439.36849037,0,0,68522.0,1,2,10,8,4,1,1,1,0,0,0,0,1,0,0,1,38067.77777780001,10,5,10,10_0,10000.0,0,10000.0,0,4,4,132.0,78.3333333333,5.57,0,1,984.4254278574147,984.4254278574147,0.0 +10235,9275,9274,0,2,35,111,37,12,0,8483,0,400,0,0,2,3,1,3,1.8,3439.36849037,0,0,68522.0,1,2,10,8,4,1,1,1,0,0,0,0,1,0,0,1,38067.7777778,10,5,10,10_0,10000.0,0,10000.0,0,4,4,132.0,78.3333333333,5.57,0,1,984.4254278574147,984.4254278574147,0.0 10236,9278,9277,5,5,63,112,46,50,0,8489,0,0,0,0,1,5,0,2,1.5,2213.5776344,0,0,65695.0,1,1,7,0,3,1,0,0,1,0,0,0,0,0,0,1,43796.6666667,10,5,10,10_1,18200.0,0,18200.0,0,6,9,0.0,0.0,0.0,0,0,1666.8021150186999,1666.8021150186999,0.0 10237,9283,9282,7,12,58,112,34,10,0,8493,0,400,0,0,2,4,0,2,1.5,972.323900282,3329,0,101886.0,1,1,6,1,3,2,0,0,0,1,0,0,0,0,0,2,67924.0,10,5,10,10_0,41353.0,0,41353.0,0,3,10,126.0,60.0,3.3,0,1,4070.894471818767,4070.894471818767,0.0 10238,9299,9298,9,12,57,111,35,41,0,8516,0,300,0,0,1,7,0,2,1.5,1960.23292503,3380,0,61135.0,1,1,9,7,3,3,0,0,0,0,0,1,0,0,2,1,40756.6666667,10,5,10,10_0,12500.0,0,4500.0,8000,2,2,0.0,0.0,0.0,0,1,1230.5317848217685,442.99144253583665,787.5403422859318 10239,9305,9304,5,5,61,211,74,10,0,8523,0,0,0,0,0,6,0,1,1.0,3549.35810475,0,0,55836.0,5,1,3,3,1,1,0,0,0,1,0,0,0,0,0,1,55836.0,10,5,10,10_0,15000.0,0,15000.0,0,5,6,0.0,0.0,0.0,0,0,1476.6381417861223,1476.6381417861223,0.0 -10240,9314,9313,4,4,59,111,34,10,0,8536,0,0,0,0,2,8,0,2,1.5,1535.60418035,0,0,168023.0,1,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,112015.33333299999,10,5,10,10_0,27237.0,0,16353.0,10884,4,4,0.0,20.0,3.3,0,1,2681.2795378552405,1609.8309021752304,1071.4486356800103 +10240,9314,9313,4,4,59,111,34,10,0,8536,0,0,0,0,2,8,0,2,1.5,1535.60418035,0,0,168023.0,1,1,9,7,3,2,0,0,0,0,0,1,0,0,1,1,112015.333333,10,5,10,10_0,27237.0,0,16353.0,10884,4,4,0.0,20.0,3.3,0,1,2681.2795378552405,1609.8309021752304,1071.4486356800103 10241,9318,9317,1,1,69,211,75,20,1,8541,0,0,0,0,0,7,0,1,1.0,1340.88009457,4165,16000,47669.0,5,1,2,3,1,1,0,0,0,1,0,0,0,0,1,0,47669.0,10,5,10,10_0,1500.0,0,0.0,1500,3,4,0.0,0.0,0.0,0,0,147.6638141786122,0.0,147.6638141786122 10242,9324,9323,4,17,49,112,64,50,0,8550,0,195,0,0,1,6,0,1,1.0,2775.99009642,0,0,41478.0,1,2,9,3,1,1,0,1,0,1,0,0,0,0,0,1,41478.0,10,5,10,10_0,15000.0,0,15000.0,0,3,14,0.0,0.0,0.0,1,0,1476.6381417861223,1476.6381417861223,0.0 -10243,9335,9334,1,1,34,111,37,12,1,8571,0,40,0,0,2,7,1,3,1.8,1774.69215721,0,26000,101527.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,56403.88888890001,10,5,10,10_0,5000.0,0,5000.0,0,3,7,112.5,95.0,5.52,0,0,492.21271392870733,492.21271392870733,0.0 +10243,9335,9334,1,1,34,111,37,12,1,8571,0,40,0,0,2,7,1,3,1.8,1774.69215721,0,26000,101527.0,1,2,10,8,4,1,0,1,0,0,0,0,1,0,0,1,56403.8888889,10,5,10,10_0,5000.0,0,5000.0,0,3,7,112.5,95.0,5.52,0,0,492.21271392870733,492.21271392870733,0.0 10244,9336,9335,7,8,35,111,37,30,0,8572,0,0,0,0,2,5,1,3,1.8,3173.58054653,0,0,76498.0,1,2,10,8,4,1,0,0,0,0,0,0,1,0,0,1,42498.8888889,10,5,10,10_0,5000.0,0,5000.0,0,3,7,112.5,95.0,5.52,0,0,492.21271392870733,492.21271392870733,0.0 10245,9342,9341,6,6,44,111,34,31,0,858,0,0,0,0,2,5,1,3,1.8,2907.23488421,3034,0,113459.0,1,2,10,8,4,2,0,1,0,0,0,0,1,0,1,1,63032.7777778,10,5,10,10_0,15900.0,0,15000.0,900,4,4,38.0,36.6666666667,5.5,1,0,1565.2364302932895,1476.6381417861223,88.59828850716733 -10246,9349,9348,13,13,55,111,42,41,0,8592,0,0,0,0,2,5,0,2,1.5,1813.2001102000002,3802,0,59390.0,1,1,6,4,3,4,0,0,0,0,1,0,0,0,0,4,39593.3333333,10,5,10,10_0,15000.0,0,15000.0,0,4,7,0.0,0.0,0.0,0,1,1476.6381417861223,1476.6381417861223,0.0 +10246,9349,9348,13,13,55,111,42,41,0,8592,0,0,0,0,2,5,0,2,1.5,1813.2001102,3802,0,59390.0,1,1,6,4,3,4,0,0,0,0,1,0,0,0,0,4,39593.3333333,10,5,10,10_0,15000.0,0,15000.0,0,4,7,0.0,0.0,0.0,0,1,1476.6381417861223,1476.6381417861223,0.0 10247,9356,9355,3,10,84,112,74,50,0,8601,0,0,0,0,0,4,0,1,1.0,1866.29085327,0,0,41803.0,5,1,10,0,1,1,0,0,1,0,0,0,0,0,1,0,41803.0,10,5,10,10_1,3000.0,0,0.0,3000,15,15,0.0,0.0,0.0,0,0,274.74760137670876,0.0,274.74760137670876 10248,9359,9358,5,22,34,112,53,60,0,8605,0,0,214,0,2,3,0,2,1.5,2331.29196606,1286,0,60776.0,1,2,9,2,3,2,0,1,0,1,0,0,0,0,2,0,40517.3333333,10,5,10,10_0,7500.0,0,0.0,7500,7,7,72.5,22.5,3.3,0,1,738.3190708930612,0.0,738.3190708930612 10249,9394,9393,3,7,57,112,54,50,0,8651,0,200,0,0,1,4,0,2,1.5,1285.87951115,4744,0,67344.0,1,1,8,2,3,2,0,0,0,1,0,0,0,0,0,2,44896.0,10,5,10,10_0,13000.0,0,13000.0,0,7,7,52.8,22.0,3.3,1,1,1279.7530562146392,1279.7530562146392,0.0 @@ -10255,13 +10255,13 @@ 10253,9477,9476,0,39,50,111,37,12,0,8784,0,0,0,0,2,6,2,4,2.5,2479.51229552,0,0,281441.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,2,0,112576.4,10,5,10,10_0,6000.0,0,0.0,6000,4,15,0.0,0.0,0.0,1,1,590.6552567144488,0.0,590.6552567144488 10254,9486,9485,1,1,74,111,75,41,1,8798,0,0,0,0,0,3,0,2,1.5,2348.50917893,2238,17000,58841.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,1,0,39227.3333333,10,5,10,10_0,9000.0,0,0.0,9000,3,3,0.0,0.0,0.0,0,0,885.9828850716733,0.0,885.9828850716733 10255,9490,9489,9,9,65,300,43,20,0,8800,0,0,0,0,1,3,0,1,1.0,1489.78776648,0,0,39630.0,1,3,0,0,1,1,1,0,1,0,0,0,0,0,0,1,39630.0,10,5,10,10_1,31000.0,0,31000.0,0,1,1,0.0,0.0,0.0,1,0,2839.0585475593234,2839.0585475593234,0.0 -10256,9498,9497,4,4,66,112,74,12,0,8812,0,0,0,0,0,7,0,2,1.5,934.8029286000001,0,0,64473.0,5,1,9,2,3,2,0,0,0,1,0,0,0,0,0,2,42982.0,10,5,10,10_0,10000.0,0,10000.0,0,4,5,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 -10257,9504,9503,4,4,52,111,38,20,0,8824,0,440,0,0,2,6,1,3,1.8,1237.43716868,0,0,109078.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,60598.88888890001,10,5,10,10_0,29001.0,0,29001.0,0,2,4,0.0,20.0,2.24,0,1,2854.9321833292884,2854.9321833292884,0.0 +10256,9498,9497,4,4,66,112,74,12,0,8812,0,0,0,0,0,7,0,2,1.5,934.8029286,0,0,64473.0,5,1,9,2,3,2,0,0,0,1,0,0,0,0,0,2,42982.0,10,5,10,10_0,10000.0,0,10000.0,0,4,5,0.0,0.0,0.0,0,0,984.4254278574147,984.4254278574147,0.0 +10257,9504,9503,4,4,52,111,38,20,0,8824,0,440,0,0,2,6,1,3,1.8,1237.43716868,0,0,109078.0,1,1,9,7,4,2,0,1,0,0,0,1,0,0,0,2,60598.8888889,10,5,10,10_0,29001.0,0,29001.0,0,2,4,0.0,20.0,2.24,0,1,2854.9321833292884,2854.9321833292884,0.0 10258,9512,9511,9,15,51,400,67,71,0,8832,0,0,20,0,2,4,0,3,2.0,2073.99980263,0,0,93872.0,1,2,0,0,5,2,0,1,1,0,0,0,0,0,1,1,46936.0,10,5,10,10_1,76000.0,0,63000.0,13000,2,2,69.0,30.0,3.3,0,1,6960.272568209954,5769.699628910884,1190.572939299071 10259,9536,9535,12,12,67,111,74,20,0,8866,0,0,0,0,0,6,0,2,1.5,1284.16194673,1040,0,71203.0,5,1,6,4,3,2,0,0,0,0,1,0,0,0,1,1,47468.6666667,10,5,10,10_0,19300.0,0,14300.0,5000,7,15,0.0,0.0,0.0,0,0,1899.9410757648104,1407.7283618361032,492.21271392870733 10260,9543,9542,2,2,54,111,34,41,0,8874,0,80,0,0,2,5,0,2,1.5,3402.38767177,0,0,65805.0,1,2,10,8,3,1,1,1,0,0,0,0,1,0,0,1,43870.0,10,5,10,10_0,17572.0,0,17572.0,0,1,1,139.2,87.5,3.3,0,1,1729.832361831049,1729.832361831049,0.0 10261,9545,9544,9,9,58,111,34,20,0,8876,0,0,50,0,1,4,0,1,1.0,2919.98290263,0,0,37517.0,1,4,9,7,1,1,0,1,0,0,0,1,0,0,1,0,37517.0,10,5,10,10_0,1500.0,0,0.0,1500,6,8,0.0,30.0,5.55,0,0,147.6638141786122,0.0,147.6638141786122 -10262,9547,9546,2,5,58,300,31,20,0,8879,0,100649,0,0,2,8,1,3,1.8,1829.05495866,3520,0,113246.0,1,1,0,0,4,3,1,1,1,0,0,0,0,0,0,3,62914.444444400004,10,5,10,10_1,8716.0,0,8716.0,0,1,6,164.6,30.0,3.3,0,1,798.2333645331312,798.2333645331312,0.0 +10262,9547,9546,2,5,58,300,31,20,0,8879,0,100649,0,0,2,8,1,3,1.8,1829.05495866,3520,0,113246.0,1,1,0,0,4,3,1,1,1,0,0,0,0,0,0,3,62914.4444444,10,5,10,10_1,8716.0,0,8716.0,0,1,6,164.6,30.0,3.3,0,1,798.2333645331312,798.2333645331312,0.0 10263,9555,9554,0,0,59,111,22,70,0,889,0,0,0,0,1,1,0,1,1.0,3257.60204689,0,0,55150.0,1,3,7,5,1,0,0,0,0,0,1,0,0,1,0,0,55150.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,20.0,1.1,0,0,0.0,0.0,0.0 10264,9561,9560,12,12,69,221,74,10,0,8898,0,0,0,0,0,3,0,2,1.5,2253.69888369,4191,0,80892.0,5,1,1,2,3,2,0,0,0,1,0,0,0,0,0,2,53928.0,10,5,10,10_0,22000.0,0,22000.0,0,10,10,0.0,0.0,0.0,0,0,2165.7359412863125,2165.7359412863125,0.0 10265,9564,9563,0,0,83,111,77,50,0,8902,0,0,0,0,0,4,0,1,1.0,1889.12472358,0,0,47803.0,5,4,6,4,1,0,0,0,0,0,1,0,0,0,0,0,47803.0,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 @@ -10270,7 +10270,7 @@ 10268,9627,9626,4,6,65,112,74,20,0,8995,0,0,0,0,0,5,0,1,1.0,1777.79578021,5023,0,41977.0,5,1,8,0,1,2,0,0,1,0,0,0,0,0,2,0,41977.0,10,5,10,10_1,12000.0,0,0.0,12000,7,7,0.0,0.0,0.0,0,0,1098.990405506835,0.0,1098.990405506835 10269,9636,9635,0,1,47,111,38,12,0,9003,0,680,0,0,2,6,0,2,1.5,1461.27096521,0,0,68756.0,1,1,7,5,3,2,1,1,0,0,1,0,0,0,0,2,45837.3333333,10,5,10,10_0,12716.0,0,12716.0,0,0,3,98.0,30.0,3.3,1,1,1251.7953740634887,1251.7953740634887,0.0 10270,9643,9642,0,0,27,111,38,10,0,9011,0,0,0,667,1,3,0,1,1.0,7290.046878,0,0,37970.0,1,3,10,8,1,0,0,0,0,0,0,0,1,0,0,0,37970.0,10,5,10,10_0,0.0,0,0.0,0,0,0,18.0,50.0,1.1,0,0,0.0,0.0,0.0 -10271,9651,9650,10,10,74,111,74,20,0,9020,0,0,0,0,0,8,0,2,1.5,2121.16210435,0,0,83491.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,55660.666666699995,10,5,10,10_0,20000.0,0,20000.0,0,3,3,0.0,0.0,0.0,0,0,1968.8508557148293,1968.8508557148293,0.0 +10271,9651,9650,10,10,74,111,74,20,0,9020,0,0,0,0,0,8,0,2,1.5,2121.16210435,0,0,83491.0,5,1,7,5,3,1,0,0,0,0,1,0,0,0,0,1,55660.6666667,10,5,10,10_0,20000.0,0,20000.0,0,3,3,0.0,0.0,0.0,0,0,1968.8508557148293,1968.8508557148293,0.0 10272,9659,9658,2,12,46,300,62,70,0,9030,0,170,0,0,1,3,0,1,1.0,2100.11905274,0,0,39100.0,1,2,0,0,1,1,0,1,1,0,0,0,0,0,0,1,39100.0,10,5,10,10_1,20000.0,0,20000.0,0,9,12,132.0,24.0,3.3,0,1,1831.650675844725,1831.650675844725,0.0 10273,9671,9670,5,5,57,111,43,20,0,9055,0,0,250,0,2,5,0,2,1.5,2223.04251405,0,0,77923.0,1,1,10,8,3,2,1,0,0,0,0,0,1,0,1,1,51948.6666667,10,5,10,10_0,18867.0,0,12000.0,6867,2,2,0.0,0.0,0.0,0,0,1857.3154547385845,1181.3105134288976,676.0049413096867 10274,9675,9674,11,14,48,111,47,41,0,906,0,0,250,0,2,5,0,2,1.5,2447.75272778,5835,0,60920.0,1,1,8,7,3,2,0,0,0,0,0,1,0,0,1,1,40613.3333333,10,5,10,10_0,6000.0,0,4000.0,2000,12,14,28.5,20.0,3.3,0,1,590.6552567144488,393.7701711429659,196.88508557148296 @@ -10279,7 +10279,7 @@ 10277,9701,9700,11,11,49,111,38,20,0,9087,0,0,0,0,1,3,0,1,1.0,2742.79605496,0,0,39605.0,1,1,10,8,1,1,0,0,0,0,0,0,1,0,1,0,39605.0,10,5,10,10_0,30000.0,0,0.0,30000,10,10,43.5,75.0,3.3,0,1,2953.2762835722447,0.0,2953.2762835722447 10278,9713,9712,3,3,34,111,38,12,0,9101,0,270,350,0,2,4,0,2,1.5,2541.95788801,6194,0,83451.0,1,3,9,7,3,2,0,1,0,0,0,1,0,0,1,1,55634.0,10,5,10,10_0,21500.0,0,18000.0,3500,9,12,0.0,10.0,3.3,0,1,2116.514669893442,1771.9657701433466,344.54889975009513 10279,9725,9724,1,2,55,300,43,42,2,9120,0,900,250,0,2,6,0,2,1.5,1390.95775892,7047,18100,57016.0,1,1,0,0,3,2,0,1,1,0,0,0,0,0,1,1,38010.6666667,10,5,10,10_1,8748.0,0,5000.0,3748,3,8,608.0,140.0,3.31,0,0,801.1640056144827,457.9126689611812,343.2513366533015 -10280,9726,9725,5,10,69,221,74,10,0,9122,0,0,0,0,0,7,0,2,1.5,2329.72790475,0,0,87568.0,5,1,1,2,3,2,1,0,0,1,0,0,0,0,0,2,58378.666666699995,10,5,10,10_0,22000.0,0,22000.0,0,10,10,0.0,0.0,0.0,0,0,2165.7359412863125,2165.7359412863125,0.0 +10280,9726,9725,5,10,69,221,74,10,0,9122,0,0,0,0,0,7,0,2,1.5,2329.72790475,0,0,87568.0,5,1,1,2,3,2,1,0,0,1,0,0,0,0,0,2,58378.6666667,10,5,10,10_0,22000.0,0,22000.0,0,10,10,0.0,0.0,0.0,0,0,2165.7359412863125,2165.7359412863125,0.0 10281,9727,9726,5,5,55,112,42,42,0,9125,0,99999,20,0,2,8,0,2,1.5,1257.26432852,2340,0,60731.0,1,1,8,2,3,2,1,1,0,1,0,0,0,0,1,1,40487.3333333,10,5,10,10_0,21672.0,0,18672.0,3000,1,1,0.0,6.0,1.1,1,0,2133.4467872525893,1838.1191588953648,295.3276283572244 10282,9729,9728,7,7,38,111,34,10,0,9128,0,0,310,0,1,4,0,1,1.0,3379.10307506,0,0,61370.0,1,2,9,7,1,1,1,1,0,0,0,1,0,0,1,0,61370.0,10,5,10,10_0,15000.0,0,0.0,15000,2,10,60.0,20.0,3.3,0,1,1476.6381417861223,0.0,1476.6381417861223 10283,9741,9740,7,11,53,221,22,60,0,9145,0,350,0,0,1,6,0,1,1.0,5123.59610432,0,0,50198.0,1,2,1,1,1,1,0,1,0,1,0,0,0,0,0,1,50198.0,10,5,10,10_0,17000.0,0,17000.0,0,3,6,65.0,26.0,3.3,0,1,1673.523227357605,1673.523227357605,0.0 @@ -10293,9 +10293,9 @@ 10291,9868,9867,6,6,41,111,31,10,0,9331,0,600,0,0,2,7,2,4,2.1,1060.26867921,0,0,328562.0,1,1,7,5,4,2,1,1,0,0,1,0,0,0,0,2,156458.095238,10,5,10,10_0,18000.0,0,18000.0,0,2,6,202.4,25.3333333333,3.3,0,1,1771.9657701433466,1771.9657701433466,0.0 10292,9873,9872,11,11,47,112,34,20,0,9338,0,150,0,0,1,7,0,1,1.0,1914.6434259,0,0,190540.0,1,1,8,0,1,1,0,1,1,0,0,0,0,0,0,1,190540.0,10,5,10,10_1,20000.0,0,20000.0,0,9,12,132.0,24.0,3.3,0,1,1831.650675844725,1831.650675844725,0.0 10293,9881,9880,0,0,75,111,74,10,0,9354,0,0,0,0,0,4,0,2,1.5,2438.73452097,0,0,124598.0,5,1,10,8,3,0,0,0,0,0,0,0,1,0,0,0,83065.3333333,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,0.0,0.0,0,0,0.0,0.0,0.0 -10294,9889,9888,0,0,52,111,35,10,0,9363,0,0,0,0,2,3,0,2,1.5,2546.17412712,0,0,80738.0,1,2,10,8,3,0,0,0,0,0,0,0,1,0,0,0,53825.333333300005,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,110.0,5.57,0,0,0.0,0.0,0.0 +10294,9889,9888,0,0,52,111,35,10,0,9363,0,0,0,0,2,3,0,2,1.5,2546.17412712,0,0,80738.0,1,2,10,8,3,0,0,0,0,0,0,0,1,0,0,0,53825.3333333,10,5,10,10_0,0.0,0,0.0,0,0,0,0.0,110.0,5.57,0,0,0.0,0.0,0.0 10295,9891,9890,1,1,51,112,43,10,1,9366,0,300,400,0,2,7,0,2,1.5,977.307185785,0,29500,72245.0,1,2,6,0,3,2,0,1,1,0,0,0,0,0,1,1,48163.3333333,10,5,10,10_1,42000.0,0,37000.0,5000,3,3,0.0,90.0,3.32,0,1,3846.466419273923,3388.5537503127416,457.9126689611812 -10296,9893,9892,3,8,55,111,43,31,0,9368,0,300,0,0,1,4,0,2,1.5,3151.4156894000002,0,0,72175.0,1,1,10,8,3,2,0,0,0,0,0,0,1,0,0,2,48116.6666667,10,5,10,10_0,16337.0,0,16337.0,0,7,7,0.0,0.0,0.0,0,0,1608.2558214906585,1608.2558214906585,0.0 +10296,9893,9892,3,8,55,111,43,31,0,9368,0,300,0,0,1,4,0,2,1.5,3151.4156894,0,0,72175.0,1,1,10,8,3,2,0,0,0,0,0,0,1,0,0,2,48116.6666667,10,5,10,10_0,16337.0,0,16337.0,0,7,7,0.0,0.0,0.0,0,0,1608.2558214906585,1608.2558214906585,0.0 10297,9896,9895,9,9,49,111,34,10,0,9372,0,350,0,0,1,5,0,1,1.0,3307.18483441,2002,0,40500.0,1,1,9,7,1,1,0,1,0,0,0,1,0,0,0,1,40500.0,10,5,10,10_0,30000.0,0,30000.0,0,6,6,0.0,14.0,1.1,1,0,2953.2762835722447,2953.2762835722447,0.0 10298,9921,9920,8,11,58,112,22,50,0,9400,0,0,0,0,2,5,0,2,1.5,1220.4763769,0,0,68702.0,1,3,8,1,3,1,0,0,0,1,0,0,0,0,1,0,45801.3333333,10,5,10,10_0,9000.0,0,0.0,9000,8,8,43.0,83.0,3.3,0,1,885.9828850716733,0.0,885.9828850716733 10299,9922,9921,2,2,79,111,74,30,0,9403,0,0,0,0,0,5,0,1,1.0,2933.18496961,0,0,39517.0,5,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,39517.0,10,5,10,10_0,17000.0,0,17000.0,0,6,6,0.0,0.0,0.0,0,0,1673.523227357605,1673.523227357605,0.0 @@ -10306,7 +10306,7 @@ 10304,9982,9981,4,9,63,111,34,10,0,9494,0,0,250,0,3,5,1,3,2.0,1499.39133333,7125,0,133374.0,1,1,10,8,4,2,0,0,0,0,0,0,1,0,2,0,66687.0,10,5,10,10_0,33000.0,0,0.0,33000,3,7,249.0,46.6666666667,3.3,0,1,3248.6039119294687,0.0,3248.6039119294687 10305,9986,9985,3,5,63,112,74,60,0,9500,0,0,0,0,0,10,0,2,1.5,1658.03871993,0,0,62093.0,5,1,9,1,3,2,0,0,0,1,0,0,0,0,1,1,41395.3333333,10,5,10,10_0,9500.0,0,6500.0,3000,8,8,0.0,0.0,0.0,0,0,935.204156464544,639.8765281073196,295.3276283572244 10306,9997,9996,8,8,69,111,74,30,0,9513,0,0,0,783,0,2,0,1,1.0,3966.62314331,0,0,48640.0,5,3,10,8,1,1,0,0,0,0,0,0,1,0,1,0,48640.0,10,5,10,10_0,9000.0,0,0.0,9000,8,8,0.0,0.0,0.0,0,0,885.9828850716733,0.0,885.9828850716733 -10307,9998,9997,2,6,33,111,22,50,0,9514,0,99999,0,0,2,6,1,3,1.8,2278.4533844000002,0,0,88130.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,48961.1111111,10,5,10,10_0,50000.0,0,50000.0,0,3,4,0.0,98.3333333333,3.3,0,1,4922.127139287074,4922.127139287074,0.0 +10307,9998,9997,2,6,33,111,22,50,0,9514,0,99999,0,0,2,6,1,3,1.8,2278.4533844,0,0,88130.0,1,2,9,7,4,2,0,0,0,0,0,1,0,0,0,2,48961.1111111,10,5,10,10_0,50000.0,0,50000.0,0,3,4,0.0,98.3333333333,3.3,0,1,4922.127139287074,4922.127139287074,0.0 10308,10001,10000,10,10,58,111,54,50,0,9517,0,0,99999,0,1,8,0,2,1.5,4110.50883407,2157,0,109620.0,1,1,8,6,3,2,0,0,0,0,1,0,0,0,2,0,73080.0,10,5,10,10_0,15000.0,0,0.0,15000,1,7,0.0,0.0,0.0,0,1,1476.6381417861223,0.0,1476.6381417861223 10309,10004,10003,3,3,39,112,43,10,0,9522,0,500,200,0,2,5,1,3,1.8,1698.90167845,0,0,78222.0,1,2,9,0,4,2,0,1,1,0,0,0,0,0,1,1,43456.6666667,10,5,10,10_1,33791.0,0,19891.0,13900,2,3,76.0,32.3333333333,0.0,1,1,3094.6653993734553,1821.6681796613711,1272.9972197120837 10310,10016,10015,11,11,74,111,74,20,0,9541,0,0,0,0,0,9,0,2,1.5,1372.43843172,1667,0,62081.0,5,1,8,6,3,1,0,0,0,0,1,0,0,0,1,0,41387.3333333,10,5,10,10_0,10000.0,0,0.0,10000,10,10,0.0,0.0,0.0,0,0,984.4254278574147,0.0,984.4254278574147 @@ -10319,10 +10319,10 @@ 10317,10080,10079,2,2,65,111,75,50,0,9629,0,0,0,0,0,5,0,2,1.5,3132.63718745,6659,0,56103.0,5,1,9,7,3,2,0,0,0,0,0,1,0,0,0,2,37402.0,10,5,10,10_0,22000.0,0,22000.0,0,1,0,0.0,0.0,0.0,0,0,2165.7359412863125,2165.7359412863125,0.0 10318,10106,10105,1,2,58,111,34,41,2,966,0,0,0,0,1,5,0,1,1.0,3910.51803743,2600,20300,40962.0,1,1,9,7,1,1,0,0,0,0,0,1,0,0,0,1,40962.0,10,5,10,10_0,44000.0,0,44000.0,0,2,2,29.0,30.0,3.3,0,1,4331.471882572625,4331.471882572625,0.0 10319,10115,10114,9,13,36,111,62,50,0,9672,0,0,120,0,2,4,0,2,1.5,4439.38262909,4802,0,63094.0,1,2,10,8,3,2,0,0,0,0,0,0,1,0,2,0,42062.6666667,10,5,10,10_0,35657.0,0,0.0,35657,2,10,172.5,79.0,2.2,0,1,3510.165748111184,0.0,3510.165748111184 -10320,10120,10119,2,2,59,120,31,10,0,968,0,370,0,0,2,8,0,2,1.5,1395.32131224,2813,0,92596.0,1,1,0,1,3,3,0,1,0,1,0,0,0,0,1,2,61730.666666699995,10,5,10,10_0,30000.0,0,30000.0,0,2,2,140.0,38.0,3.3,0,1,2953.2762835722447,2953.2762835722447,0.0 +10320,10120,10119,2,2,59,120,31,10,0,968,0,370,0,0,2,8,0,2,1.5,1395.32131224,2813,0,92596.0,1,1,0,1,3,3,0,1,0,1,0,0,0,0,1,2,61730.6666667,10,5,10,10_0,30000.0,0,30000.0,0,2,2,140.0,38.0,3.3,0,1,2953.2762835722447,2953.2762835722447,0.0 10321,10121,10120,0,27,44,111,31,10,0,9680,0,0,0,0,2,5,2,4,2.1,3365.65297768,2964,0,133543.0,1,2,10,8,4,2,0,0,0,0,0,0,1,0,1,1,63591.9047619,10,5,10,10_0,40000.0,0,35000.0,5000,7,18,290.5,70.0,3.3,0,1,3937.7017114296586,3445.4889975009514,492.21271392870733 10322,10128,10127,5,5,52,112,34,10,0,969,0,600,0,0,2,3,2,4,2.5,916.600978715,2600,0,97366.0,1,1,10,0,4,2,0,1,1,0,0,0,0,0,1,1,38946.4,10,5,10,10_1,45000.0,0,23000.0,22000,8,13,204.8,31.3333333333,3.3,0,1,4121.214020650631,2106.3982772214335,2014.8157434291975 -10323,10134,10133,0,3,45,111,37,20,2,97,0,0,67,0,2,6,3,5,2.6,1747.40548257,0,13000,141614.0,4,2,10,8,4,2,0,0,0,0,0,0,1,0,1,1,54466.923076900006,10,5,10,10_0,42000.0,0,25000.0,17000,3,3,80.0,10.0,0.0,0,1,4134.586797001142,2461.063569643537,1673.523227357605 +10323,10134,10133,0,3,45,111,37,20,2,97,0,0,67,0,2,6,3,5,2.6,1747.40548257,0,13000,141614.0,4,2,10,8,4,2,0,0,0,0,0,0,1,0,1,1,54466.9230769,10,5,10,10_0,42000.0,0,25000.0,17000,3,3,80.0,10.0,0.0,0,1,4134.586797001142,2461.063569643537,1673.523227357605 10324,10137,10136,1,1,55,112,37,60,2,9703,0,60,0,0,4,6,2,4,2.5,1078.20907348,13000,15200,147020.0,1,1,6,0,4,4,0,1,1,0,0,0,0,0,1,3,58808.0,10,5,10,10_1,15000.0,0,15000.0,0,3,4,512.2,20.0,3.31,0,1,1373.7380068835437,1373.7380068835437,0.0 10325,10138,10137,7,8,31,111,37,10,0,9704,0,0,550,0,2,2,0,2,1.5,3149.15851247,4627,0,107807.0,1,2,10,8,3,1,1,1,0,0,0,0,1,0,1,0,71871.3333333,10,5,10,10_0,6000.0,0,0.0,6000,3,6,94.8,110.0,5.5,0,1,590.6552567144488,0.0,590.6552567144488 10326,10139,10138,5,5,53,112,47,50,0,9708,0,0,420,0,2,5,0,2,1.5,1404.72193238,2954,0,60900.0,1,1,10,0,3,1,0,1,1,0,0,0,0,0,1,0,40600.0,10,5,10,10_1,16533.0,0,0.0,16533,7,9,0.0,0.0,0.0,0,0,1514.134031187042,0.0,1514.134031187042 @@ -10339,5 +10339,5 @@ 10337,10272,10271,7,7,68,111,74,20,0,9901,0,0,0,0,0,4,0,2,1.5,904.988417895,3380,0,56688.0,5,1,7,5,3,2,0,0,0,0,1,0,0,0,1,1,37792.0,10,5,10,10_0,37000.0,0,22000.0,15000,7,7,0.0,0.0,0.0,0,0,3642.3740830724346,2165.7359412863125,1476.6381417861223 10338,10288,10287,2,2,63,111,74,60,0,9920,0,0,0,0,0,6,0,2,1.5,2595.69682754,1040,0,74550.0,5,1,9,7,3,1,0,0,0,0,0,1,0,0,1,0,49700.0,10,5,10,10_0,600.0,0,0.0,600,4,4,0.0,0.0,0.0,0,0,59.06552567144489,0.0,59.06552567144489 10339,10308,10307,2,2,39,111,37,10,0,9943,0,99999,0,0,2,3,0,2,1.5,3116.62680034,1664,0,79690.0,1,2,9,7,3,1,1,1,0,0,0,1,0,0,0,1,53126.6666667,10,5,10,10_0,18625.0,0,18625.0,0,2,2,0.0,23.0,3.32,0,1,1833.492359384435,1833.492359384435,0.0 -10340,10327,10326,1,1,81,111,74,10,0,9976,0,0,0,0,0,7,0,2,1.5,1063.59370964,0,0,84170.0,5,1,5,4,3,2,0,0,0,0,1,0,0,0,2,0,56113.333333300005,10,5,10,10_0,4000.0,0,0.0,4000,11,0,0.0,0.0,0.0,0,0,393.7701711429659,0.0,393.7701711429659 +10340,10327,10326,1,1,81,111,74,10,0,9976,0,0,0,0,0,7,0,2,1.5,1063.59370964,0,0,84170.0,5,1,5,4,3,2,0,0,0,0,1,0,0,0,2,0,56113.3333333,10,5,10,10_0,4000.0,0,0.0,4000,11,0,0.0,0.0,0.0,0,0,393.7701711429659,0.0,393.7701711429659 10341,10328,10327,2,2,51,111,37,41,0,9977,0,100,170,0,2,5,0,2,1.5,1862.12213859,2600,0,70741.0,1,1,8,6,3,2,0,1,0,0,1,0,0,0,1,1,47160.6666667,10,5,10,10_0,28000.0,0,18000.0,10000,1,2,163.2,50.0,3.3,0,1,2756.391198000761,1771.9657701433466,984.4254278574147 diff --git a/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_bdf.csv b/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_bdf.csv index e1ece772..b1388366 100644 --- a/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_bdf.csv +++ b/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_bdf.csv @@ -1,10343 +1,12082 @@ ,age_carte_grise,age_vehicule,agepr,cataeu,cs42pr,dip14pr,etat_veh_achat,ident_men,km_autre_carbu,km_diesel,km_essence,mloy_d,nactifs,nbphab,nenfants,npers,ocde10,pondmen,poste_07_2_2_1_1,prix_achat,revtot,situapr,stalog,tau,tuu,typmen,veh_tot,vp_deplacements_pro,vp_domicile_travail,rural,petite_ville,moyenne_ville,grande_ville,paris,aides_logement,nb_essence,nb_diesel,niveau_vie,niveau_vie_decile,niveau_vie_quintile,donation_class_1,donation_class_3 -0,3.0,5.0,40.0,111,85,50,0.0,1,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,2901.594333826595,520.0,0.0,22071.0,7,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12261.666666666666,1,0,1_1,1_0 -1,12.0,12.0,55.0,112,21,50,0.0,100,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,3901.7820205411404,515.0,0.0,72842.0,1,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,48561.333333333336,5,0,5,5_1 -2,3.0,8.0,40.0,400,62,50,0.0,1000,0.0,600.0,0.0,375.0,1.0,3.0,0.0,1.0,1.0,2462.481170695108,5159.0,0.0,27868.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,27868.0,4,0,4_0,4_1 -3,0.0,0.0,77.0,111,77,71,0.0,10000,0.0,0.0,0.0,237.0,0.0,3.0,0.0,1.0,1.0,2311.85347947249,0.0,0.0,16410.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16410.0,2,0,2_0,2_0 -4,2.0,14.0,23.0,111,68,50,0.0,10003,0.0,0.0,120.0,290.0,2.0,2.0,0.0,2.0,1.5,2890.751237990757,0.0,0.0,33493.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,22328.666666666668,4,0,4_1,4_0 -5,8.0,8.0,65.0,212,72,50,0.0,10004,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2182.487377422031,2184.0,0.0,27444.0,5,1,2,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,18296.0,3,0,3_0,3_1 -6,10.0,21.0,63.0,111,78,50,0.0,10005,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2257.887725689142,2080.0,0.0,23460.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,15640.0,2,0,2_0,2_0 -7,0.0,9.0,38.0,112,43,41,0.0,10006,0.0,380.0,0.0,0.0,2.0,10.0,2.0,6.0,3.3,770.8421128822018,5142.0,0.0,72351.0,1,1,6,0.0,5,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,21924.545454545456,4,0,4_0,4_1 -8,11.0,11.0,90.0,300,78,71,0.0,10007,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3256.207012676663,0.0,0.0,12352.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12352.0,1,0,1_0,1_1 -9,2.0,2.0,70.0,111,74,70,0.0,10009,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,981.8993171013101,1821.0,0.0,39346.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,26230.666666666668,4,0,4_0,4_0 -10,0.0,0.0,77.0,111,78,70,0.0,1001,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2693.911866011353,0.0,0.0,21626.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14417.333333333334,2,0,2_0,2_0 -11,9.0,12.0,55.0,111,46,41,0.0,10010,0.0,0.0,250.0,375.0,2.0,2.0,0.0,2.0,1.5,3734.0928562723343,2080.0,0.0,32697.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,21798.0,4,0,4_0,4_0 -12,0.0,0.0,60.0,111,78,71,0.0,10011,0.0,0.0,0.0,290.0,0.0,4.0,0.0,2.0,1.5,6186.465363226179,0.0,0.0,16390.0,5,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10926.666666666666,1,0,1_0,1_0 -13,5.0,21.0,54.0,111,56,20,0.0,10014,0.0,0.0,0.0,296.0,1.0,3.0,1.0,2.0,1.5,3134.0711940583674,1561.0,0.0,4603.0,4,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,3068.6666666666665,1,0,1_1,1_0 -14,0.0,0.0,77.0,111,77,71,0.0,10016,0.0,0.0,0.0,237.0,0.0,4.0,0.0,1.0,1.0,3884.466618495088,0.0,0.0,16106.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16106.0,2,0,2_0,2_0 -15,2.0,2.0,64.0,112,75,70,0.0,10017,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1682.583381047865,0.0,0.0,37148.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24765.333333333332,4,0,4_0,4_1 -16,0.0,0.0,58.0,112,78,50,0.0,10018,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2244.3244404912575,4573.0,0.0,46604.0,5,1,7,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31069.333333333332,5,0,5,5_0 -17,17.0,17.0,73.0,221,77,70,0.0,10019,0.0,0.0,0.0,201.0,0.0,2.0,0.0,1.0,1.0,2292.4776815900336,0.0,0.0,14226.0,5,3,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14226.0,2,0,2_0,2_0 -18,5.0,5.0,34.0,111,34,10,0.0,1002,0.0,600.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1971.793488671841,0.0,0.0,53695.0,1,2,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,53695.0,5,0,5,5_0 -19,7.0,13.0,40.0,111,45,31,0.0,10020,0.0,0.0,150.0,0.0,2.0,5.0,2.0,4.0,2.3,2529.3678696450543,7904.0,0.0,47272.0,1,1,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,20553.04347826087,3,0,3_0,3_0 -20,1.0,10.0,22.0,111,46,50,2.0,10021,0.0,0.0,0.0,445.0,1.0,1.0,0.0,1.0,1.0,3672.7274431704373,2080.0,5300.0,21830.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21830.0,4,0,4_0,4_0 -21,10.0,15.0,67.0,111,77,70,0.0,10022,0.0,0.0,0.0,0.0,1.0,5.0,0.0,3.0,2.0,1918.1117686787602,1040.0,0.0,53490.0,5,1,8,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26745.0,4,0,4_0,4_0 -22,17.0,21.0,62.0,111,77,60,0.0,10025,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3507.8951889101977,1676.0,0.0,22532.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,15021.333333333334,2,0,2_0,2_0 -23,2.0,2.0,35.0,111,37,31,0.0,10027,0.0,0.0,15.0,0.0,2.0,4.0,1.0,3.0,1.8,4131.035496796082,0.0,0.0,183051.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,101695.0,5,0,5,5_0 -24,2.0,5.0,49.0,112,62,71,0.0,10028,0.0,180.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,3152.524227620716,1584.0,0.0,39812.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15924.8,2,0,2_0,2_1 -25,3.0,3.0,45.0,112,48,71,0.0,10029,0.0,108.0,280.0,0.0,2.0,5.0,2.0,4.0,2.5,2277.880171966629,2080.0,0.0,65199.0,1,2,10,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,26079.6,4,0,4_0,4_0 -26,0.0,0.0,68.0,120,78,71,0.0,1003,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5430.654491591048,0.0,0.0,15936.0,5,3,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15936.0,2,0,2_1,2_0 -27,2.0,19.0,54.0,112,62,60,0.0,10030,0.0,0.0,288.0,0.0,2.0,4.0,1.0,2.0,1.5,1846.9384900269363,3640.0,0.0,20569.0,1,1,7,1.0,2,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,13712.666666666666,2,0,2_0,2_0 -28,3.0,8.0,23.0,111,42,41,0.0,10031,0.0,400.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,5360.809557850722,7310.0,0.0,31263.0,1,3,5,4.0,5,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,20842.0,3,0,3_1,3_0 -29,1.0,6.0,48.0,111,64,71,2.0,10032,0.0,40.0,150.0,0.0,2.0,5.0,3.0,5.0,2.8,2162.6951787946846,2015.0,4000.0,48691.0,1,2,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,17389.64285714286,3,0,3_0,3_0 -30,11.0,12.0,39.0,112,43,33,0.0,10033,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1690.965596418021,9642.0,0.0,50833.0,1,2,8,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24206.190476190473,4,0,4_0,4_0 -31,1.0,1.0,52.0,112,34,10,2.0,10034,0.0,200.0,0.0,503.0,1.0,2.0,0.0,1.0,1.0,1638.9963874008429,0.0,18400.0,44968.0,1,3,10,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,44968.0,5,0,5,5_0 -32,6.0,6.0,72.0,111,75,50,0.0,10036,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3222.9703224809646,0.0,0.0,32961.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21974.0,4,0,4_0,4_0 -33,2.0,13.0,41.0,111,68,50,0.0,10037,0.0,0.0,35.0,0.0,3.0,3.0,1.0,3.0,2.0,2612.196796452352,0.0,0.0,33882.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,16941.0,3,0,3_1,3_0 -34,10.0,10.0,68.0,112,74,31,0.0,10038,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1873.2891571993578,0.0,0.0,37617.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,25078.0,4,0,4_0,4_1 -35,2.0,2.0,43.0,120,62,50,0.0,10039,0.0,600.0,300.0,0.0,2.0,5.0,2.0,3.0,2.0,921.1287178752167,10712.0,0.0,65081.0,1,1,0,1.0,2,3.0,1.0,1.0,0,1,0,0,0,0,2.0,1.0,32540.5,5,0,5,5_0 -36,2.0,4.0,66.0,112,72,70,0.0,10040,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2673.5375690978,0.0,0.0,84435.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,56290.0,5,0,5,5_0 -37,0.0,0.0,86.0,111,77,71,0.0,10041,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2729.044887453408,0.0,0.0,14326.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14326.0,2,0,2_1,2_0 -38,6.0,23.0,46.0,112,52,50,0.0,10043,0.0,180.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2196.351563066034,0.0,0.0,16354.0,1,3,6,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12580.0,2,0,2_1,2_1 -39,9.0,12.0,71.0,111,77,41,0.0,10044,0.0,0.0,0.0,345.0,3.0,5.0,3.0,5.0,3.0,1633.6701544457776,2345.0,0.0,68942.0,5,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,22980.666666666668,4,0,4_0,4_0 -40,3.0,3.0,68.0,111,74,60,0.0,10045,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3047.654197958497,0.0,0.0,28718.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19145.333333333332,3,0,3_0,3_0 -41,0.0,0.0,88.0,111,77,70,0.0,10047,0.0,0.0,0.0,450.0,0.0,1.0,0.0,1.0,1.0,3410.0171237917084,0.0,0.0,18800.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18800.0,3,0,3_0,3_0 -42,3.0,3.0,42.0,112,33,12,0.0,10048,0.0,650.0,30.0,0.0,2.0,10.0,3.0,5.0,2.8,1999.9295975286575,7823.0,0.0,88457.0,1,2,10,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,31591.785714285717,5,0,5,5_1 -43,0.0,3.0,25.0,111,54,30,0.0,1005,0.0,0.0,100.0,480.0,1.0,2.0,0.0,1.0,1.0,3352.9888285002235,1300.0,0.0,49344.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,49344.0,5,0,5,5_0 -44,2.0,16.0,42.0,120,22,50,0.0,10050,0.0,1000.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2750.6918816261937,0.0,0.0,49589.0,1,2,0,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,1.0,3.0,21560.434782608696,3,0,3_0,3_1 -45,5.0,13.0,28.0,111,47,41,0.0,10051,0.0,650.0,0.0,510.0,2.0,3.0,2.0,4.0,2.1,6327.838475746988,970.0,0.0,47129.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,22442.38095238095,4,0,4_0,4_0 -46,1.0,2.0,50.0,400,48,50,0.0,10053,0.0,300.0,50.0,0.0,2.0,6.0,0.0,2.0,1.5,1668.4411461486543,0.0,0.0,53815.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,35876.666666666664,5,0,5,5_1 -47,7.0,16.0,82.0,120,78,71,0.0,10054,0.0,0.0,0.0,381.0,0.0,2.0,0.0,1.0,1.0,6171.463410479574,2990.0,0.0,18269.0,5,3,0,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,18269.0,3,0,3_1,3_0 -48,2.0,7.0,52.0,400,48,50,0.0,10055,0.0,800.0,0.0,0.0,4.0,5.0,2.0,4.0,2.5,1747.9163001642703,3210.0,0.0,86516.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,34606.4,5,0,5,5_1 -49,1.0,2.0,69.0,112,78,70,2.0,10056,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2359.7094965763836,3380.0,9000.0,22644.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15096.0,2,0,2_0,2_1 -50,2.0,9.0,52.0,111,55,50,0.0,10058,0.0,0.0,300.0,0.0,3.0,6.0,1.0,3.0,2.0,899.1566898042571,1482.0,0.0,38299.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,19149.5,3,0,3_1,3_0 -51,12.0,12.0,41.0,112,38,20,0.0,10059,0.0,600.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1258.3406820470482,5567.0,0.0,50674.0,1,2,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24130.47619047619,4,0,4_0,4_1 -52,2.0,3.0,49.0,112,38,31,0.0,1006,0.0,750.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1785.8658705893586,2340.0,0.0,51504.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24525.714285714286,4,0,4_0,4_1 -53,2.0,2.0,31.0,111,38,12,0.0,10062,0.0,105.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3589.7320446262256,625.0,0.0,98100.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,46714.28571428571,5,0,5,5_0 -54,10.0,10.0,76.0,111,75,60,0.0,10063,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1516.104398635898,938.0,0.0,47180.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,31453.333333333332,5,0,5,5_0 -55,0.0,0.0,91.0,111,75,50,0.0,10067,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3766.7140177425563,0.0,0.0,14360.0,5,4,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14360.0,2,0,2_0,2_0 -56,4.0,5.0,37.0,111,47,31,0.0,10069,0.0,0.0,100.0,0.0,2.0,4.0,3.0,5.0,2.4,2817.8154060739284,0.0,0.0,42337.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17640.416666666668,3,0,3_0,3_0 -57,11.0,14.0,85.0,111,78,70,0.0,1007,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3081.490042210607,0.0,0.0,19590.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13060.0,2,0,2_0,2_0 -58,1.0,11.0,27.0,111,62,41,2.0,10071,0.0,0.0,130.0,360.0,2.0,2.0,0.0,2.0,1.5,2895.1136386056132,0.0,2100.0,34903.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23268.666666666668,4,0,4_0,4_0 -59,8.0,15.0,46.0,120,63,50,0.0,10072,0.0,70.0,60.0,0.0,2.0,5.0,2.0,4.0,2.5,1627.4702062217684,1560.0,0.0,42009.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,16803.6,2,0,2_0,2_1 -60,8.0,10.0,63.0,111,74,41,0.0,10073,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1961.222965917722,1040.0,0.0,21955.0,5,1,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21955.0,4,0,4_0,4_0 -61,0.0,0.0,84.0,111,77,70,0.0,10075,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2945.3276236282773,0.0,0.0,12240.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12240.0,1,0,1_0,1_0 -62,3.0,12.0,47.0,111,62,50,0.0,10079,0.0,199998.0,0.0,0.0,4.0,6.0,4.0,6.0,3.3,1789.9866859615577,0.0,0.0,55714.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,16883.030303030304,2,0,2_1,2_0 -63,17.0,24.0,75.0,300,74,20,0.0,1008,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1327.614472743075,0.0,0.0,30137.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20091.333333333332,3,0,3_0,3_1 -64,0.0,0.0,35.0,111,37,60,0.0,10082,0.0,0.0,0.0,560.0,1.0,2.0,0.0,1.0,1.0,4153.145616202285,0.0,0.0,31462.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31462.0,5,0,5,5_0 -65,0.0,15.0,34.0,111,62,50,0.0,10083,0.0,0.0,200.0,0.0,2.0,4.0,1.0,3.0,1.8,2352.046528293971,0.0,0.0,43846.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24358.888888888887,4,0,4_0,4_0 -66,6.0,8.0,43.0,111,38,10,0.0,10086,0.0,0.0,99999.0,0.0,2.0,3.0,2.0,4.0,2.1,2397.4678817413746,3536.0,0.0,71853.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,34215.71428571428,5,0,5,5_0 -67,1.0,1.0,65.0,111,77,71,1.0,10087,0.0,0.0,0.0,559.0,0.0,3.0,0.0,2.0,1.5,2290.8897723473356,2935.0,24500.0,26384.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17589.333333333332,3,0,3_0,3_0 -68,5.0,7.0,43.0,111,63,50,0.0,10088,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2069.4858596432537,1326.0,0.0,13924.0,1,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,13924.0,2,0,2_1,2_0 -69,5.0,17.0,78.0,111,74,20,0.0,1009,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3614.5681591416137,1519.0,0.0,22709.0,5,1,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15139.333333333334,2,0,2_0,2_0 -70,16.0,21.0,61.0,221,78,71,0.0,10091,0.0,50.0,150.0,0.0,2.0,6.0,1.0,3.0,2.0,2450.00263857437,3240.0,0.0,34960.0,5,1,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,17480.0,3,0,3_0,3_0 -71,0.0,0.0,41.0,111,85,71,0.0,10092,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2616.491774988315,0.0,0.0,12866.0,7,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12866.0,2,0,2_1,2_0 -72,0.0,19.0,57.0,111,77,71,0.0,10093,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3436.929263800565,1560.0,0.0,7740.0,7,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,7740.0,1,0,1_0,1_0 -73,9.0,10.0,70.0,111,78,70,0.0,10094,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1162.6780572686614,0.0,0.0,29424.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,19616.0,3,0,3_0,3_0 -74,6.0,6.0,56.0,111,77,70,0.0,10095,0.0,0.0,0.0,390.0,0.0,4.0,0.0,2.0,1.5,3721.665318647839,0.0,0.0,34350.0,7,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,22900.0,4,0,4_0,4_0 -75,10.0,11.0,69.0,300,78,50,0.0,10096,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1326.4602599163009,0.0,0.0,30302.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,20201.333333333332,3,0,3_1,3_1 -76,1.0,11.0,29.0,111,42,50,0.0,10098,0.0,16.0,0.0,730.0,2.0,4.0,2.0,4.0,2.1,1433.017845977776,4160.0,0.0,41423.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,19725.238095238095,3,0,3_0,3_0 -77,17.0,17.0,43.0,111,34,10,0.0,101,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2712.561086335965,0.0,0.0,64798.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,64798.0,5,0,5,5_0 -78,4.0,10.0,41.0,112,45,20,0.0,10100,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2303.4372494739346,0.0,0.0,19472.0,1,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19472.0,3,0,3_0,3_1 -79,0.0,0.0,91.0,111,72,70,0.0,10103,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3507.69281111013,0.0,0.0,15024.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15024.0,2,0,2_0,2_0 -80,0.0,7.0,55.0,111,35,10,0.0,10105,0.0,430.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2023.1752585340987,0.0,0.0,47545.0,1,1,8,6.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,20671.739130434784,3,0,3_0,3_0 -81,5.0,10.0,42.0,112,64,50,0.0,10107,0.0,0.0,230.0,368.0,1.0,3.0,1.0,3.0,1.8,1954.6106029381679,2080.0,0.0,27793.0,1,3,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,15440.555555555555,2,0,2_0,2_1 -82,0.0,0.0,64.0,221,78,71,0.0,10108,0.0,0.0,0.0,176.0,0.0,4.0,0.0,2.0,1.5,5067.627312830842,0.0,0.0,19040.0,5,3,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12693.333333333334,2,0,2_1,2_0 -83,2.0,6.0,28.0,111,47,31,0.0,1011,0.0,50.0,0.0,362.0,2.0,3.0,0.0,2.0,1.5,2162.08292059083,2340.0,0.0,39453.0,1,3,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,26302.0,4,0,4_0,4_0 -84,0.0,0.0,49.0,111,85,71,0.0,10110,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3409.958188275026,0.0,0.0,23612.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,23612.0,4,0,4_1,4_0 -85,9.0,11.0,51.0,120,21,50,0.0,10111,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1518.011324615832,2848.0,0.0,31677.0,1,1,0,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21118.0,3,0,3_0,3_0 -86,2.0,4.0,56.0,111,78,50,0.0,10112,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1689.355004026297,0.0,0.0,26766.0,7,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,17844.0,3,0,3_1,3_0 -87,1.0,21.0,29.0,111,46,33,0.0,10114,0.0,0.0,150.0,0.0,2.0,3.0,0.0,2.0,1.5,2537.9038629610127,1822.0,0.0,42384.0,1,2,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,28256.0,4,0,4_0,4_0 -88,8.0,8.0,34.0,112,47,31,0.0,10115,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,4566.6360397790895,3630.0,0.0,40441.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19257.619047619046,3,0,3_0,3_1 -89,0.0,12.0,54.0,400,69,50,2.0,10116,0.0,140.0,0.0,0.0,2.0,7.0,1.0,2.0,1.5,2441.9969969677236,2704.0,1500.0,18487.0,1,1,0,0.0,2,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,12324.666666666666,1,0,1_0,1_1 -90,7.0,12.0,49.0,112,43,33,0.0,10118,15.0,33.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2033.6662342017469,3585.0,0.0,54593.0,1,3,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19497.5,3,0,3_0,3_1 -91,4.0,20.0,46.0,111,67,71,0.0,10120,0.0,0.0,130.0,378.0,1.0,3.0,0.0,1.0,1.0,2716.5982484833344,1300.0,0.0,21369.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21369.0,3,0,3_0,3_0 -92,0.0,12.0,20.0,111,84,31,0.0,10121,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3751.89473267099,0.0,0.0,3123.0,3,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,3123.0,1,0,1_1,1_0 -93,10.0,10.0,47.0,111,42,31,0.0,10122,0.0,0.0,50.0,0.0,1.0,4.0,1.0,2.0,1.5,3507.010087888603,0.0,0.0,23544.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,15696.0,2,0,2_0,2_0 -94,0.0,0.0,64.0,111,75,50,0.0,10123,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2460.595206291102,0.0,0.0,41571.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41571.0,5,0,5,5_0 -95,11.0,11.0,33.0,111,64,60,0.0,10124,0.0,220.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1974.2344564836255,0.0,0.0,24589.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24589.0,4,0,4_0,4_0 -96,2.0,3.0,67.0,112,74,41,0.0,10125,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1958.2401005621405,3625.0,0.0,30162.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30162.0,5,0,5,5_1 -97,12.0,33.0,36.0,120,63,50,0.0,10126,0.0,120.0,500.0,0.0,2.0,7.0,2.0,4.0,2.1,2164.1114768873367,2788.0,0.0,36408.0,1,2,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,17337.142857142855,3,0,3_0,3_1 -98,2.0,2.0,51.0,400,56,50,0.0,10127,0.0,30.0,0.0,0.0,3.0,3.0,2.0,4.0,2.5,2358.6551710211243,3484.0,0.0,43919.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,17567.6,3,0,3_0,3_1 -99,3.0,4.0,29.0,300,69,50,0.0,10128,0.0,284.0,16.0,0.0,2.0,4.0,0.0,2.0,1.5,1144.8345297277322,1560.0,0.0,28976.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19317.333333333332,3,0,3_0,3_1 -100,14.0,14.0,49.0,111,55,50,0.0,1013,0.0,0.0,125.0,390.0,1.0,4.0,0.0,1.0,1.0,3816.7789364158634,1300.0,0.0,11450.0,1,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,11450.0,1,0,1_0,1_0 -101,6.0,13.0,79.0,111,72,41,0.0,10130,0.0,0.0,0.0,318.0,0.0,3.0,0.0,2.0,1.5,3545.4810549189083,3068.0,0.0,22785.0,5,3,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,15190.0,2,0,2_0,2_0 -102,4.0,15.0,51.0,111,47,50,0.0,10131,0.0,700.0,440.0,0.0,4.0,6.0,2.0,4.0,2.5,1505.5522973485188,3196.0,0.0,92534.0,1,1,10,8.0,4,4.0,0.0,1.0,0,0,0,0,1,0,2.0,2.0,37013.6,5,0,5,5_0 -103,0.0,0.0,47.0,111,35,10,0.0,10132,0.0,0.0,0.0,1800.0,2.0,3.0,0.0,2.0,1.5,2051.847669211402,0.0,0.0,86633.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,57755.333333333336,5,0,5,5_0 -104,4.0,4.0,47.0,120,47,20,0.0,10133,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1943.9741038210727,2912.0,0.0,46251.0,1,4,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,30834.0,5,0,5,5_1 -105,7.0,12.0,32.0,111,62,43,0.0,10134,130.0,30.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2125.0088849517488,4681.0,0.0,43507.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,24170.555555555555,4,0,4_0,4_0 -106,13.0,13.0,37.0,400,56,43,0.0,10135,0.0,100.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3201.072950026747,0.0,0.0,31232.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,20821.333333333332,3,0,3_1,3_1 -107,11.0,11.0,60.0,111,77,71,0.0,10136,0.0,0.0,0.0,410.0,0.0,4.0,0.0,1.0,1.0,3506.987520974085,0.0,0.0,19310.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19310.0,3,0,3_0,3_0 -108,3.0,10.0,39.0,111,62,50,0.0,10138,0.0,200.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2247.596569957268,2865.0,0.0,37969.0,1,2,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,18080.47619047619,3,0,3_0,3_0 -109,5.0,15.0,90.0,111,77,71,0.0,1014,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3172.6085998629337,0.0,0.0,26966.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26966.0,4,0,4_0,4_0 -110,4.0,8.0,32.0,111,21,50,0.0,10143,0.0,0.0,250.0,0.0,2.0,5.0,4.0,6.0,2.7,1359.0091785034742,0.0,0.0,46445.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,17201.85185185185,3,0,3_1,3_0 -111,5.0,5.0,74.0,112,77,50,0.0,10144,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1193.4566709991614,2861.0,0.0,31349.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20899.333333333332,3,0,3_0,3_1 -112,14.0,14.0,83.0,111,78,70,0.0,10146,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3858.7248925915737,2538.0,0.0,28330.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18886.666666666668,3,0,3_0,3_0 -113,0.0,0.0,45.0,111,62,50,0.0,10148,0.0,0.0,0.0,308.0,1.0,2.0,0.0,1.0,1.0,2664.9122897027746,0.0,0.0,20430.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20430.0,3,0,3_0,3_0 -114,0.0,0.0,94.0,111,77,71,0.0,1015,0.0,0.0,0.0,128.0,0.0,3.0,0.0,1.0,1.0,3213.339450279348,0.0,0.0,14004.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14004.0,2,0,2_1,2_0 -115,1.0,10.0,34.0,300,63,60,0.0,10151,0.0,450.0,0.0,257.0,1.0,3.0,2.0,4.0,2.1,3414.910063075153,3152.0,0.0,32044.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,15259.047619047618,2,0,2_1,2_1 -116,2.0,2.0,42.0,300,11,71,0.0,10153,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,3033.138660503237,0.0,0.0,13180.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,5272.0,1,0,1_0,1_1 -117,6.0,11.0,59.0,112,56,70,0.0,10154,0.0,0.0,0.0,0.0,1.0,6.0,0.0,3.0,2.0,1526.8217748685518,0.0,0.0,44867.0,1,1,7,0.0,5,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,22433.5,4,0,4_1,4_1 -118,0.0,0.0,72.0,111,74,41,0.0,10155,0.0,0.0,0.0,700.0,0.0,4.0,0.0,1.0,1.0,2801.6518640299973,0.0,0.0,25588.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25588.0,4,0,4_0,4_0 -119,1.0,5.0,44.0,112,22,12,2.0,10156,0.0,30.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,3338.1156769654913,0.0,17000.0,28189.0,1,4,10,4.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,15660.555555555555,2,0,2_0,2_0 -120,5.0,6.0,55.0,111,52,42,0.0,10159,0.0,60.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3229.427782743598,0.0,0.0,26810.0,1,2,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26810.0,4,0,4_0,4_0 -121,2.0,2.0,46.0,111,46,50,0.0,10161,0.0,0.0,200.0,0.0,1.0,3.0,1.0,2.0,1.5,1298.120420616052,1300.0,0.0,30407.0,1,2,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,20271.333333333332,3,0,3_0,3_0 -122,4.0,4.0,68.0,211,72,44,0.0,10165,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,3158.7844215259615,1806.0,0.0,39934.0,5,2,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,19967.0,3,0,3_1,3_0 -123,3.0,11.0,37.0,120,48,71,0.0,10167,0.0,400.0,0.0,340.0,1.0,4.0,0.0,1.0,1.0,3077.319384516739,3640.0,0.0,25490.0,1,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25490.0,4,0,4_0,4_1 -124,9.0,9.0,76.0,112,75,50,0.0,10168,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2524.4541579785796,0.0,0.0,22669.0,5,4,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22669.0,4,0,4_0,4_1 -125,10.0,10.0,81.0,111,72,60,0.0,10169,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,3464.6260173703686,0.0,0.0,116692.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,77794.66666666667,5,0,5,5_0 -126,6.0,6.0,59.0,111,38,30,0.0,1017,0.0,400.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3752.3287677826597,3151.0,0.0,58880.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,39253.333333333336,5,0,5,5_0 -127,3.0,10.0,19.0,111,84,41,0.0,10170,0.0,0.0,0.0,235.0,0.0,2.0,0.0,1.0,1.0,3606.7413561867525,1768.0,0.0,3770.0,3,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,3770.0,1,0,1_0,1_0 -128,14.0,14.0,66.0,111,46,50,0.0,10171,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2039.9328514700705,849.0,0.0,29480.0,1,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19653.333333333332,3,0,3_0,3_0 -129,3.0,3.0,50.0,111,54,60,0.0,10172,0.0,0.0,0.0,650.0,1.0,3.0,1.0,2.0,1.5,3147.7262546053707,1561.0,0.0,38527.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,25684.666666666668,4,0,4_0,4_0 -130,6.0,8.0,42.0,112,47,71,0.0,10174,0.0,80.0,0.0,457.0,2.0,4.0,3.0,5.0,2.4,3495.9145680148968,2600.0,0.0,50913.0,1,3,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21213.75,3,0,3_0,3_1 -131,2.0,13.0,38.0,111,54,71,0.0,10175,0.0,850.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,4597.382077535662,2392.0,0.0,44841.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,24911.666666666664,4,0,4_0,4_0 -132,0.0,0.0,58.0,300,22,41,0.0,10176,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2741.9309386296977,0.0,0.0,27336.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,18224.0,3,0,3_1,3_1 -133,0.0,13.0,39.0,111,38,12,0.0,10177,0.0,20.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2473.7250816414503,0.0,0.0,92908.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,61938.666666666664,5,0,5,5_0 -134,6.0,7.0,38.0,111,52,50,0.0,10178,0.0,0.0,70.0,0.0,1.0,4.0,1.0,2.0,1.5,2280.1211603753723,2471.0,0.0,22721.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,15147.333333333334,2,0,2_0,2_0 -135,6.0,6.0,54.0,111,54,41,0.0,1018,0.0,150.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1658.5519811741142,5192.0,0.0,21821.0,1,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21821.0,4,0,4_0,4_0 -136,0.0,12.0,26.0,111,54,10,2.0,10181,0.0,0.0,60.0,630.0,2.0,3.0,0.0,2.0,1.5,3661.3130289286614,0.0,3000.0,32339.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,21559.333333333332,3,0,3_0,3_0 -137,2.0,8.0,29.0,112,21,50,0.0,10182,0.0,400.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1641.6691232195626,2601.0,0.0,18317.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,7632.083333333334,1,0,1_1,1_0 -138,0.0,0.0,25.0,111,34,10,0.0,10184,0.0,0.0,0.0,300.0,1.0,1.0,0.0,1.0,1.0,3779.894951085913,0.0,0.0,20950.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20950.0,3,0,3_0,3_0 -139,5.0,5.0,27.0,120,54,50,0.0,10185,0.0,500.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,4921.796048322466,0.0,0.0,29563.0,1,1,0,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,14781.5,2,0,2_0,2_0 -140,0.0,0.0,53.0,112,31,10,1.0,10186,0.0,600.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,3010.0917285419005,3011.0,51000.0,108276.0,1,2,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,108276.0,5,0,5,5_1 -141,12.0,12.0,86.0,111,75,70,0.0,10187,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2641.9219246523453,0.0,0.0,24420.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16280.0,2,0,2_0,2_0 -142,10.0,10.0,57.0,300,21,50,0.0,10188,0.0,0.0,100.0,0.0,3.0,4.0,1.0,3.0,2.0,1993.3646176458599,0.0,0.0,44127.0,1,1,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,22063.5,4,0,4_0,4_1 -143,12.0,17.0,79.0,111,78,71,0.0,1019,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3095.7579283191712,1560.0,0.0,17168.0,5,4,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,11445.333333333334,1,0,1_0,1_0 -144,11.0,11.0,68.0,111,75,10,0.0,10191,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1720.0426051483578,0.0,0.0,30821.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,20547.333333333332,3,0,3_0,3_0 -145,17.0,17.0,54.0,112,62,71,0.0,10192,0.0,100.0,70.0,0.0,2.0,5.0,0.0,2.0,1.5,3622.778650430504,0.0,0.0,43171.0,1,1,5,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,28780.666666666668,4,0,4_0,4_1 -146,4.0,9.0,26.0,111,67,50,0.0,10194,0.0,100.0,0.0,283.0,1.0,2.0,0.0,1.0,1.0,3043.1289858447763,1040.0,0.0,15264.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15264.0,2,0,2_0,2_0 -147,8.0,8.0,83.0,112,75,60,0.0,10195,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2428.4158697992943,0.0,0.0,26700.0,5,3,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17800.0,3,0,3_0,3_1 -148,4.0,5.0,50.0,111,42,50,0.0,10196,0.0,1000.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1263.2541756138464,4228.0,0.0,38146.0,4,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19073.0,3,0,3_0,3_0 -149,1.0,3.0,40.0,111,22,31,2.0,10198,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2728.510004282549,0.0,7500.0,12592.0,1,3,3,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,6995.555555555556,1,0,1_0,1_0 -150,11.0,12.0,74.0,111,72,42,0.0,1020,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5584.114526499541,1040.0,0.0,12767.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12767.0,2,0,2_0,2_0 -151,0.0,0.0,74.0,111,75,12,0.0,10200,0.0,0.0,0.0,568.0,0.0,2.0,0.0,1.0,1.0,3934.7840820933034,0.0,0.0,27613.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27613.0,4,0,4_0,4_0 -152,0.0,0.0,90.0,111,77,41,0.0,10201,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3802.3435639441864,0.0,0.0,18159.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18159.0,3,0,3_0,3_0 -153,2.0,2.0,29.0,111,33,12,0.0,10202,0.0,450.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2929.265517450269,3214.0,0.0,50696.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,33797.333333333336,5,0,5,5_0 -154,10.0,14.0,52.0,111,52,71,0.0,10203,0.0,70.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2637.2953285803137,1716.0,0.0,21846.0,1,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,14564.0,2,0,2_0,2_0 -155,1.0,13.0,29.0,111,55,31,0.0,10204,0.0,0.0,80.0,384.0,1.0,2.0,0.0,1.0,1.0,2315.565635253388,0.0,0.0,5043.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,5043.0,1,0,1_0,1_0 -156,9.0,11.0,42.0,111,63,31,0.0,10206,0.0,0.0,0.0,0.0,1.0,9.0,0.0,2.0,1.5,2507.1791404431297,2913.0,0.0,39230.0,1,2,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,26153.333333333332,4,0,4_0,4_0 -157,3.0,4.0,54.0,111,46,71,0.0,10207,0.0,0.0,800.0,0.0,1.0,2.0,0.0,1.0,1.0,8134.896331420028,3120.0,0.0,17418.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17418.0,3,0,3_0,3_0 -158,3.0,4.0,24.0,111,84,10,0.0,10208,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2798.551282503897,2601.0,0.0,10248.0,3,4,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,6832.0,1,0,1_0,1_0 -159,8.0,8.0,56.0,111,22,60,0.0,10209,0.0,0.0,0.0,0.0,3.0,4.0,1.0,5.0,2.8,1044.3631211950265,780.0,0.0,42455.0,1,1,4,4.0,5,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,15162.500000000002,2,0,2_0,2_0 -160,4.0,30.0,52.0,112,63,50,0.0,10212,0.0,200.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1260.9089563456232,0.0,0.0,39594.0,1,2,4,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26396.0,4,0,4_0,4_1 -161,16.0,16.0,78.0,111,78,70,0.0,10213,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2122.2385838567816,2340.0,0.0,23778.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15852.0,2,0,2_0,2_0 -162,10.0,35.0,51.0,300,42,20,0.0,10217,0.0,0.0,320.0,0.0,2.0,9.0,0.0,2.0,1.5,1457.9236379195638,3484.0,0.0,63050.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,42033.333333333336,5,0,5,5_1 -163,0.0,0.0,83.0,111,77,71,0.0,10218,0.0,0.0,0.0,210.0,0.0,3.0,0.0,1.0,1.0,3598.608964213746,0.0,0.0,16060.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16060.0,2,0,2_0,2_0 -164,7.0,7.0,38.0,111,21,12,0.0,10220,0.0,0.0,350.0,800.0,2.0,3.0,0.0,2.0,1.5,3345.8292786405723,0.0,0.0,15329.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,10219.333333333334,1,0,1_0,1_0 -165,1.0,2.0,33.0,111,46,41,0.0,10222,0.0,35.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3208.537272804746,4420.0,0.0,93570.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,51983.33333333333,5,0,5,5_0 -166,11.0,11.0,43.0,112,52,50,0.0,10223,0.0,600.0,0.0,0.0,1.0,6.0,1.0,2.0,1.3,2892.602926047823,3224.0,0.0,31669.0,1,2,9,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,24360.76923076923,4,0,4_0,4_0 -167,25.0,25.0,82.0,111,74,33,0.0,10228,0.0,0.0,0.0,1112.0,0.0,3.0,0.0,1.0,1.0,4442.814833551176,0.0,0.0,28068.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,28068.0,4,0,4_0,4_0 -168,2.0,7.0,41.0,111,37,31,0.0,10229,0.0,490.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2898.7673638592782,2337.0,0.0,21011.0,1,2,7,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,10005.238095238095,1,0,1_0,1_0 -169,4.0,4.0,69.0,111,74,20,0.0,1023,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1961.7051611101558,1855.0,0.0,71365.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,47576.666666666664,5,0,5,5_0 -170,4.0,4.0,38.0,111,47,31,0.0,10231,0.0,240.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,4171.33874083185,0.0,0.0,68087.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,37826.11111111111,5,0,5,5_0 -171,0.0,16.0,27.0,112,47,41,0.0,10232,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2765.5131935442387,2288.0,0.0,11192.0,1,2,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,7461.333333333333,1,0,1_0,1_0 -172,5.0,6.0,73.0,112,71,70,0.0,10233,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,879.7039495231624,1040.0,0.0,26821.0,5,1,6,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,13410.5,2,0,2_0,2_1 -173,0.0,0.0,81.0,111,77,60,0.0,10234,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3533.6622182102496,0.0,0.0,15901.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15901.0,2,0,2_1,2_0 -174,7.0,7.0,42.0,111,67,50,0.0,10235,0.0,99999.0,145.0,0.0,2.0,5.0,3.0,5.0,2.8,1385.4923918282943,3559.0,0.0,47677.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,17027.5,3,0,3_0,3_0 -175,8.0,11.0,41.0,111,52,31,0.0,10236,0.0,0.0,0.0,900.0,2.0,3.0,2.0,4.0,2.3,2576.3824216099706,4201.0,0.0,45801.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19913.478260869568,3,0,3_0,3_0 -176,2.0,21.0,45.0,111,56,71,0.0,1024,0.0,0.0,99999.0,0.0,3.0,4.0,4.0,5.0,2.8,2526.8759439814735,0.0,0.0,40269.0,4,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,14381.785714285716,2,0,2_1,2_0 -177,6.0,12.0,48.0,111,22,30,0.0,10240,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,8337.754402432149,0.0,0.0,190611.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,76244.4,5,0,5,5_0 -178,0.0,0.0,92.0,111,74,71,0.0,10241,0.0,0.0,0.0,599.0,0.0,3.0,0.0,1.0,1.0,3464.620143631224,0.0,0.0,24655.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24655.0,4,0,4_0,4_0 -179,7.0,9.0,78.0,111,78,70,0.0,10242,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2003.9008902247986,2600.0,0.0,17360.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17360.0,3,0,3_0,3_0 -180,4.0,5.0,46.0,112,43,10,0.0,10243,0.0,300.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,5876.397288426843,4680.0,0.0,54582.0,1,2,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23731.304347826088,4,0,4_0,4_1 -181,1.0,5.0,61.0,300,13,50,2.0,10244,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2254.641415029622,0.0,8200.0,9036.0,1,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,9036.0,1,0,1_0,1_1 -182,0.0,0.0,94.0,211,86,71,0.0,10245,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3836.735932459701,0.0,0.0,14298.0,6,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14298.0,2,0,2_1,2_0 -183,5.0,5.0,83.0,111,74,12,0.0,10249,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3093.741333980841,0.0,0.0,84460.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,56306.666666666664,5,0,5,5_0 -184,14.0,14.0,63.0,111,72,70,0.0,10250,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2683.870985651167,2026.0,0.0,35520.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23680.0,4,0,4_0,4_0 -185,0.0,0.0,77.0,111,74,41,0.0,10252,0.0,0.0,0.0,398.0,0.0,2.0,0.0,2.0,1.5,2163.2686370841984,1761.0,0.0,78631.0,5,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,52420.666666666664,5,0,5,5_0 -186,0.0,0.0,89.0,111,78,60,0.0,10253,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3489.3857132863723,0.0,0.0,16399.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16399.0,2,0,2_0,2_0 -187,4.0,4.0,61.0,111,74,44,0.0,10254,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2418.0996703827063,3224.0,0.0,40151.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,40151.0,5,0,5,5_0 -188,7.0,11.0,41.0,111,43,50,0.0,10255,0.0,80.0,0.0,320.0,2.0,5.0,3.0,5.0,2.4,2118.5619396813636,1040.0,0.0,29860.0,4,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12441.666666666668,1,0,1_1,1_0 -189,7.0,7.0,43.0,111,34,10,0.0,10256,0.0,150.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2563.7877099153793,2623.0,0.0,80849.0,1,2,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,53899.333333333336,5,0,5,5_0 -190,0.0,0.0,69.0,111,78,70,0.0,10258,0.0,0.0,0.0,222.0,0.0,3.0,0.0,1.0,1.0,2529.344620151899,0.0,0.0,11659.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11659.0,1,0,1_0,1_0 -191,0.0,13.0,29.0,111,42,10,0.0,1026,0.0,200.0,0.0,450.0,1.0,1.0,0.0,1.0,1.0,3367.480599256106,2288.0,0.0,14710.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,14710.0,2,0,2_0,2_0 -192,6.0,29.0,35.0,111,85,50,0.0,10260,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,1684.465332839482,0.0,0.0,9980.0,7,2,5,4.0,4,3.0,0.0,0.0,0,0,1,0,0,1,0.0,3.0,4752.380952380952,1,0,1_1,1_0 -193,2.0,2.0,58.0,112,47,50,0.0,10262,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1249.3668245068047,0.0,0.0,36057.0,1,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24038.0,4,0,4_0,4_1 -194,5.0,5.0,79.0,112,78,70,0.0,10263,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2654.8369260613895,0.0,0.0,18230.0,5,3,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12153.333333333334,1,0,1_0,1_1 -195,4.0,8.0,49.0,111,62,50,0.0,10264,0.0,0.0,100149.0,0.0,3.0,5.0,2.0,4.0,2.3,832.4636374454715,4424.0,0.0,42814.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,18614.782608695652,3,0,3_0,3_0 -196,13.0,13.0,34.0,111,67,71,0.0,10265,0.0,410.0,0.0,440.0,1.0,3.0,0.0,1.0,1.0,6015.575253858333,2257.0,0.0,29957.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,29957.0,5,0,5,5_0 -197,6.0,12.0,47.0,111,67,50,0.0,10267,0.0,0.0,199998.0,0.0,2.0,5.0,0.0,2.0,1.5,3792.113966598364,3120.0,0.0,37276.0,4,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,24850.666666666668,4,0,4_0,4_0 -198,6.0,6.0,45.0,111,45,30,0.0,10268,0.0,450.0,0.0,495.0,2.0,4.0,2.0,4.0,2.3,2895.4554160964435,2725.0,0.0,52924.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23010.434782608696,4,0,4_0,4_0 -199,6.0,26.0,64.0,112,74,71,0.0,10269,0.0,0.0,0.0,523.0,0.0,4.0,0.0,1.0,1.0,3508.4048792528934,7811.0,0.0,11030.0,5,3,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,11030.0,1,0,1_0,1_1 -200,2.0,4.0,61.0,112,75,60,0.0,10270,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3104.824399177163,1300.0,0.0,18272.0,5,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,12181.333333333334,1,0,1_0,1_0 -201,14.0,16.0,62.0,111,74,44,0.0,10272,0.0,0.0,65.0,0.0,2.0,6.0,1.0,3.0,2.0,1407.5275024715438,1555.0,0.0,71848.0,5,1,9,7.0,4,7.0,0.0,0.0,0,0,0,1,0,0,7.0,0.0,35924.0,5,0,5,5_0 -202,1.0,1.0,49.0,300,85,50,1.0,10274,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,1859.9645760936783,0.0,11500.0,10630.0,6,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,7086.666666666667,1,0,1_0,1_1 -203,1.0,1.0,61.0,112,75,60,0.0,10276,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2566.0025353601636,1452.0,0.0,40374.0,5,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,40374.0,5,0,5,5_1 -204,4.0,4.0,44.0,111,55,60,0.0,10277,0.0,0.0,75.0,0.0,1.0,1.0,0.0,1.0,1.0,3607.8401288776895,671.0,0.0,15110.0,1,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,15110.0,2,0,2_0,2_0 -205,1.0,3.0,59.0,111,56,20,0.0,10278,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1779.241209302906,0.0,0.0,19992.0,1,1,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13328.0,2,0,2_0,2_0 -206,2.0,2.0,58.0,111,78,70,0.0,10279,0.0,300.0,0.0,0.0,1.0,5.0,1.0,4.0,2.5,1441.0058218941322,2392.0,0.0,48856.0,5,1,6,4.0,5,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,19542.4,3,0,3_0,3_0 -207,3.0,10.0,22.0,111,84,41,0.0,10284,0.0,0.0,0.0,678.0,1.0,4.0,0.0,3.0,2.0,4008.051357362967,0.0,0.0,13474.0,3,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,6737.0,1,0,1_1,1_0 -208,3.0,3.0,64.0,112,78,50,0.0,10285,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3328.644109879555,1300.0,0.0,16550.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11033.333333333334,1,0,1_0,1_1 -209,2.0,2.0,46.0,111,37,20,0.0,10286,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2716.5382203462777,0.0,0.0,71111.0,1,1,9,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,2.0,0.0,28444.4,4,0,4_0,4_0 -210,0.0,0.0,84.0,111,86,70,0.0,10287,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3435.7321836314045,0.0,0.0,23604.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23604.0,4,0,4_0,4_0 -211,0.0,0.0,56.0,111,48,71,0.0,10288,0.0,0.0,0.0,125.0,1.0,2.0,0.0,1.0,1.0,2601.076954883638,0.0,0.0,13688.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13688.0,2,0,2_1,2_0 -212,7.0,18.0,47.0,111,52,60,0.0,10289,0.0,0.0,0.0,3.0,1.0,5.0,2.0,3.0,1.8,3147.047448878299,1560.0,0.0,19505.0,1,3,4,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,10836.111111111111,1,0,1_1,1_0 -213,7.0,13.0,50.0,111,63,71,0.0,1029,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1854.665278063535,0.0,0.0,18491.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,18491.0,3,0,3_1,3_0 -214,13.0,13.0,40.0,300,64,50,0.0,10290,0.0,0.0,40.0,0.0,1.0,6.0,1.0,2.0,1.5,1656.3713810998304,0.0,0.0,38420.0,1,1,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25613.333333333332,4,0,4_0,4_1 -215,0.0,0.0,93.0,111,78,70,0.0,10291,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3255.839758402495,0.0,0.0,20509.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20509.0,3,0,3_0,3_0 -216,3.0,19.0,42.0,111,67,71,0.0,10292,0.0,400.0,125.0,0.0,2.0,3.0,0.0,2.0,1.5,2647.5824236336916,0.0,0.0,33490.0,1,3,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,22326.666666666668,4,0,4_0,4_0 -217,2.0,2.0,54.0,221,45,31,0.0,10296,0.0,490.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,1197.1330614562473,2601.0,0.0,52438.0,1,1,1,3.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,20975.2,3,0,3_0,3_0 -218,4.0,4.0,41.0,111,38,10,0.0,10298,0.0,0.0,150.0,0.0,1.0,5.0,0.0,1.0,1.0,2601.44481276282,0.0,0.0,44496.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,44496.0,5,0,5,5_0 -219,2.0,2.0,64.0,221,78,50,0.0,10299,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1310.8584597754511,5469.0,0.0,39719.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,26479.333333333332,4,0,4_0,4_0 -220,3.0,8.0,73.0,400,77,50,0.0,103,0.0,0.0,0.0,153.0,0.0,3.0,0.0,1.0,1.0,3213.4435468831102,0.0,0.0,12636.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12636.0,2,0,2_0,2_1 -221,2.0,2.0,66.0,400,74,41,0.0,1030,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2521.742408503884,1765.0,0.0,52202.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,52202.0,5,0,5,5_1 -222,12.0,23.0,57.0,112,78,50,0.0,10302,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1172.7110906432065,1044.0,0.0,17861.0,4,3,7,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,8930.5,1,0,1_1,1_0 -223,0.0,23.0,57.0,300,55,70,0.0,10303,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1340.7850822120233,3380.0,0.0,13880.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13880.0,2,0,2_0,2_1 -224,11.0,13.0,72.0,112,78,70,0.0,10304,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1871.2316965221694,2237.0,0.0,19733.0,5,1,7,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,13155.333333333334,2,0,2_0,2_0 -225,2.0,2.0,50.0,111,65,50,0.0,10305,0.0,400.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1774.8231039549867,0.0,0.0,50585.0,1,2,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,33723.333333333336,5,0,5,5_0 -226,4.0,16.0,58.0,112,77,70,0.0,10306,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,1941.8303831435267,1820.0,0.0,21343.0,5,1,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,10671.5,1,0,1_0,1_1 -227,8.0,13.0,51.0,111,67,71,0.0,1031,0.0,400.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,3718.5668436963724,0.0,0.0,22930.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,10919.047619047618,1,0,1_0,1_0 -228,3.0,9.0,41.0,112,48,50,0.0,10310,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2647.5616929532434,3120.0,0.0,31959.0,1,3,7,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21306.0,3,0,3_0,3_0 -229,4.0,4.0,81.0,111,75,31,0.0,10311,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2471.6532112802593,0.0,0.0,37488.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,24992.0,4,0,4_0,4_0 -230,6.0,12.0,31.0,211,42,20,0.0,10312,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1543.6869045683427,2652.0,0.0,41357.0,1,3,2,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,27571.333333333332,4,0,4_0,4_0 -231,8.0,21.0,56.0,111,64,50,0.0,10314,0.0,0.0,0.0,280.0,2.0,3.0,1.0,3.0,2.0,3404.7499890856143,0.0,0.0,19510.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9755.0,1,0,1_1,1_0 -232,0.0,0.0,47.0,111,42,10,1.0,10315,0.0,0.0,730.0,0.0,1.0,3.0,0.0,1.0,1.0,3118.0580814925315,4684.0,13303.0,31239.0,1,2,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,31239.0,5,0,5,5_0 -233,0.0,2.0,37.0,111,52,50,0.0,10316,0.0,352.0,0.0,903.0,1.0,5.0,3.0,4.0,2.1,1783.3962585030129,1092.0,0.0,31110.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,14814.285714285714,2,0,2_0,2_0 -234,0.0,0.0,53.0,400,52,60,0.0,10317,0.0,0.0,0.0,49.0,1.0,3.0,0.0,1.0,1.0,3635.5773315779725,0.0,0.0,10446.0,4,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,10446.0,1,0,1_1,1_1 -235,5.0,8.0,43.0,221,52,50,0.0,10319,0.0,325.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,2670.667441341652,5355.0,0.0,42964.0,1,2,1,2.0,4,3.0,1.0,0.0,0,1,0,0,0,0,0.0,3.0,16524.615384615383,2,0,2_0,2_0 -236,0.0,0.0,26.0,111,37,12,0.0,1032,0.0,0.0,0.0,800.0,1.0,1.0,0.0,1.0,1.0,4273.391053678567,0.0,0.0,12160.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12160.0,1,0,1_0,1_0 -237,8.0,10.0,76.0,111,78,50,0.0,10323,0.0,0.0,0.0,647.0,0.0,4.0,0.0,1.0,1.0,3171.9298882170933,1560.0,0.0,19299.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19299.0,3,0,3_0,3_0 -238,2.0,5.0,80.0,111,72,71,0.0,10324,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,3461.525036027886,2735.0,0.0,60843.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,40562.0,5,0,5,5_0 -239,13.0,22.0,46.0,400,62,50,0.0,10325,0.0,640.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1255.9866414212038,0.0,0.0,36896.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,18448.0,3,0,3_0,3_1 -240,4.0,9.0,47.0,300,12,71,0.0,10326,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1859.669021921419,1560.0,0.0,40463.0,1,1,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,20231.5,3,0,3_0,3_1 -241,0.0,11.0,65.0,112,71,50,2.0,10327,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1556.8316108440401,0.0,1400.0,20534.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,13689.333333333334,2,0,2_0,2_1 -242,8.0,8.0,60.0,112,77,50,0.0,10328,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3549.8750799582544,0.0,0.0,27965.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27965.0,4,0,4_0,4_1 -243,3.0,3.0,39.0,111,31,10,0.0,10329,0.0,100.0,50.0,0.0,2.0,6.0,3.0,5.0,2.4,1920.1490919729338,0.0,0.0,105137.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,43807.083333333336,5,0,5,5_0 -244,0.0,0.0,38.0,111,42,20,0.0,1033,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2746.5157593834247,0.0,0.0,59308.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28241.90476190476,4,0,4_0,4_0 -245,0.0,3.0,74.0,112,75,71,2.0,10333,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2398.4077870895553,4375.0,7900.0,48407.0,5,1,9,2.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,32271.333333333332,5,0,5,5_0 -246,2.0,10.0,66.0,111,22,50,0.0,10334,0.0,0.0,250.0,0.0,2.0,3.0,0.0,2.0,1.5,2722.4466105113734,0.0,0.0,17116.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,11410.666666666666,1,0,1_0,1_0 -247,15.0,15.0,93.0,400,71,71,0.0,10335,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3114.980468948214,0.0,0.0,11040.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11040.0,1,0,1_0,1_1 -248,0.0,0.0,82.0,112,78,71,0.0,10336,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3078.2652327484443,0.0,0.0,12870.0,5,3,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12870.0,2,0,2_1,2_0 -249,0.0,2.0,52.0,111,38,10,0.0,10337,0.0,520.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1976.1611656852863,7263.0,0.0,73959.0,1,2,9,7.0,4,3.0,1.0,1.0,0,0,0,1,0,0,0.0,3.0,29583.6,5,0,5,5_0 -250,0.0,0.0,84.0,400,72,70,0.0,10339,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2834.355387091012,0.0,0.0,8320.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,8320.0,1,0,1_0,1_0 -251,4.0,5.0,56.0,111,54,44,0.0,10340,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2529.0302897551155,2602.0,0.0,32074.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21382.666666666668,3,0,3_0,3_0 -252,4.0,17.0,47.0,300,67,50,0.0,10343,0.0,230.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2136.4615530303513,4724.0,0.0,15227.0,1,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15227.0,2,0,2_0,2_1 -253,19.0,19.0,73.0,300,78,71,0.0,10344,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2393.48278356596,0.0,0.0,21107.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14071.333333333334,2,0,2_0,2_1 -254,3.0,18.0,51.0,111,64,50,0.0,10347,0.0,410.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1207.3762816043884,2877.0,0.0,41833.0,1,2,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,20916.5,3,0,3_0,3_0 -255,2.0,3.0,38.0,112,37,31,0.0,10349,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2094.6901137440914,3640.0,0.0,54304.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,30168.888888888887,5,0,5,5_1 -256,11.0,11.0,48.0,111,52,50,0.0,1035,0.0,0.0,0.0,420.0,2.0,3.0,2.0,3.0,2.0,1871.0451550191326,0.0,0.0,38380.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19190.0,3,0,3_0,3_0 -257,0.0,6.0,30.0,111,64,71,0.0,10351,0.0,90.0,0.0,310.0,2.0,3.0,0.0,2.0,1.5,3461.8864490662318,0.0,0.0,24517.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16344.666666666666,2,0,2_0,2_0 -258,2.0,2.0,24.0,120,68,71,0.0,10353,0.0,600.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3548.434713424197,0.0,0.0,36500.0,1,3,0,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24333.333333333332,4,0,4_0,4_0 -259,0.0,10.0,62.0,111,78,70,0.0,10355,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1562.235016355475,0.0,0.0,17220.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,11480.0,1,0,1_0,1_0 -260,4.0,16.0,52.0,111,63,50,0.0,10356,0.0,99999.0,0.0,311.0,3.0,4.0,2.0,4.0,2.5,3278.7117885403586,1040.0,0.0,25815.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,10326.0,1,0,1_0,1_0 -261,8.0,10.0,62.0,300,13,70,0.0,10359,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2676.2917972800233,3156.0,0.0,43748.0,1,1,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,29165.333333333332,5,0,5,5_1 -262,7.0,8.0,56.0,400,67,50,0.0,10360,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2946.0607449771305,2782.0,0.0,35273.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23515.333333333332,4,0,4_0,4_1 -263,3.0,5.0,49.0,211,47,50,0.0,10363,0.0,0.0,0.0,460.0,2.0,4.0,1.0,3.0,2.0,925.4781543430653,2886.0,0.0,26752.0,1,3,3,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13376.0,2,0,2_0,2_0 -264,8.0,21.0,76.0,300,71,71,0.0,10364,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3232.25519483709,0.0,0.0,19503.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13002.0,2,0,2_0,2_1 -265,0.0,0.0,21.0,111,84,31,0.0,10365,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4042.496604205595,0.0,0.0,4814.0,3,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,4814.0,1,0,1_0,1_0 -266,0.0,0.0,26.0,111,45,20,0.0,10366,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3959.6775527136124,0.0,0.0,6834.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,6834.0,1,0,1_0,1_0 -267,0.0,12.0,39.0,212,33,50,0.0,10367,0.0,180.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2367.5714078306873,1300.0,0.0,50121.0,1,2,2,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23867.142857142855,4,0,4_0,4_1 -268,2.0,2.0,70.0,400,78,70,0.0,10368,0.0,0.0,0.0,560.0,0.0,5.0,0.0,2.0,1.5,1857.6485724062613,0.0,0.0,25173.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16782.0,2,0,2_0,2_1 -269,0.0,20.0,19.0,111,84,41,0.0,1037,0.0,0.0,500.0,156.0,0.0,1.0,0.0,1.0,1.0,3679.7823663706827,1768.0,0.0,4388.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,4388.0,1,0,1_1,1_0 -270,5.0,8.0,53.0,111,47,50,0.0,10371,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1088.7061513563467,4307.0,0.0,40297.0,1,1,9,7.0,4,3.0,1.0,0.0,0,0,0,1,0,0,0.0,3.0,20148.5,3,0,3_0,3_0 -271,2.0,39.0,42.0,111,46,20,0.0,10372,0.0,700.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1143.0823040653177,2601.0,0.0,49970.0,1,3,9,7.0,4,4.0,0.0,0.0,0,0,0,1,0,1,2.0,2.0,17846.428571428572,3,0,3_1,3_0 -272,12.0,15.0,54.0,300,38,31,0.0,10373,0.0,200.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2487.8079497991603,3381.0,0.0,26452.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26452.0,4,0,4_0,4_1 -273,0.0,6.0,26.0,400,62,50,2.0,10374,0.0,250.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2561.0814284002386,0.0,4800.0,28767.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,13698.571428571428,2,0,2_1,2_1 -274,0.0,17.0,50.0,112,42,50,0.0,10375,0.0,350.0,0.0,350.0,2.0,2.0,1.0,3.0,1.8,2287.938961396314,1914.0,0.0,43070.0,1,3,10,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,23927.777777777777,4,0,4_0,4_0 -275,4.0,4.0,73.0,111,77,70,0.0,10377,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3375.4750812112748,0.0,0.0,26856.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26856.0,4,0,4_0,4_0 -276,7.0,11.0,75.0,112,74,12,0.0,10379,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1775.6097764413155,3068.0,0.0,67506.0,5,4,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,45004.0,5,0,5,5_1 -277,7.0,10.0,54.0,111,64,71,0.0,1038,0.0,250.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2179.96382423911,5460.0,0.0,40754.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,27169.333333333332,4,0,4_0,4_0 -278,2.0,2.0,60.0,221,72,70,0.0,10380,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2026.6445694877216,2860.0,0.0,140519.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,140519.0,5,0,5,5_0 -279,1.0,1.0,49.0,111,22,60,1.0,10381,0.0,125.0,280.0,0.0,3.0,6.0,2.0,4.0,2.5,2997.8288736824884,2084.0,8000.0,52926.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21170.4,3,0,3_0,3_0 -280,11.0,11.0,50.0,111,46,50,0.0,10386,0.0,0.0,100.0,0.0,1.0,3.0,2.0,3.0,2.0,2848.437447464386,0.0,0.0,31325.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,15662.5,2,0,2_0,2_0 -281,0.0,0.0,72.0,112,78,71,0.0,10388,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2485.7067229697464,0.0,0.0,18687.0,5,1,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18687.0,3,0,3_0,3_1 -282,22.0,23.0,56.0,112,42,50,0.0,10389,0.0,80.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2607.0182176887447,0.0,0.0,23394.0,1,2,9,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,15596.0,2,0,2_0,2_0 -283,3.0,5.0,61.0,111,68,60,0.0,1039,0.0,0.0,0.0,314.0,3.0,3.0,1.0,3.0,2.0,2447.6582059693274,0.0,0.0,55030.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27515.0,4,0,4_0,4_0 -284,7.0,10.0,63.0,111,74,31,0.0,10390,0.0,0.0,0.0,620.0,1.0,4.0,0.0,2.0,1.5,2720.4615954494516,3125.0,0.0,80716.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,53810.666666666664,5,0,5,5_0 -285,0.0,0.0,49.0,111,52,71,0.0,10394,0.0,0.0,0.0,336.0,1.0,3.0,1.0,2.0,1.5,7321.064275222155,0.0,0.0,36100.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24066.666666666668,4,0,4_0,4_0 -286,25.0,25.0,65.0,111,78,50,0.0,10395,0.0,0.0,0.0,186.0,0.0,1.0,0.0,1.0,1.0,3790.304561824213,2080.0,0.0,18893.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18893.0,3,0,3_0,3_0 -287,3.0,25.0,51.0,111,56,50,0.0,10396,0.0,0.0,0.0,600.0,2.0,4.0,2.0,4.0,2.5,1497.452342508214,0.0,0.0,48920.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19568.0,3,0,3_0,3_0 -288,17.0,20.0,56.0,400,11,50,0.0,10398,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2540.9129338063112,2849.0,0.0,24430.0,1,1,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,16286.666666666666,2,0,2_0,2_1 -289,1.0,10.0,60.0,111,78,71,2.0,10401,0.0,1250.0,0.0,0.0,1.0,8.0,4.0,6.0,3.5,2629.809061479318,6760.0,1800.0,56944.0,4,1,8,7.0,4,3.0,1.0,0.0,0,0,0,1,0,0,1.0,2.0,16269.714285714286,2,0,2_0,2_0 -290,10.0,10.0,86.0,111,74,70,0.0,10402,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2858.3554196851196,0.0,0.0,33615.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22410.0,4,0,4_0,4_0 -291,0.0,13.0,25.0,111,37,10,0.0,10404,0.0,0.0,60.0,0.0,2.0,2.0,0.0,2.0,1.5,1997.4064840743285,1040.0,0.0,51131.0,1,2,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,34087.333333333336,5,0,5,5_0 -292,3.0,11.0,38.0,120,42,10,0.0,10405,0.0,240.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1889.3153182770468,0.0,0.0,45272.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,18863.333333333336,3,0,3_0,3_1 -293,11.0,11.0,39.0,111,43,20,0.0,10407,0.0,0.0,500.0,0.0,2.0,4.0,1.0,3.0,1.8,2761.718426062302,0.0,0.0,39150.0,1,1,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21750.0,4,0,4_0,4_0 -294,7.0,7.0,70.0,300,78,70,0.0,10408,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2250.091706432072,0.0,0.0,31643.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21095.333333333332,3,0,3_0,3_1 -295,9.0,9.0,81.0,112,75,70,0.0,10409,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3917.0237584787496,0.0,0.0,32493.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21662.0,3,0,3_0,3_1 -296,4.0,11.0,48.0,112,37,31,0.0,1041,0.0,1000.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,3302.8200620504617,3120.0,0.0,19647.0,1,2,10,4.0,2,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,9823.5,1,0,1_0,1_0 -297,0.0,0.0,44.0,111,46,20,0.0,10412,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3265.913552429865,0.0,0.0,47443.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,47443.0,5,0,5,5_0 -298,0.0,15.0,30.0,111,34,10,0.0,10413,0.0,0.0,0.0,800.0,2.0,3.0,1.0,3.0,1.8,3625.7337976997733,0.0,0.0,37967.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21092.777777777777,3,0,3_0,3_0 -299,0.0,0.0,41.0,111,21,50,0.0,10414,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3516.128000021674,3120.0,0.0,9760.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9760.0,1,0,1_1,1_0 -300,5.0,10.0,45.0,300,62,50,0.0,10415,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,987.4047570243299,0.0,0.0,52676.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,35117.333333333336,5,0,5,5_1 -301,3.0,3.0,55.0,111,47,60,0.0,10416,0.0,60.0,60.0,0.0,2.0,5.0,0.0,2.0,1.5,1803.5048781907612,0.0,0.0,51880.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,34586.666666666664,5,0,5,5_0 -302,0.0,0.0,32.0,111,43,20,0.0,10418,0.0,0.0,0.0,311.0,2.0,3.0,1.0,3.0,1.8,3435.5491973951753,1560.0,0.0,39297.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21831.666666666668,4,0,4_0,4_0 -303,3.0,3.0,57.0,111,42,10,0.0,10419,0.0,0.0,200.0,0.0,2.0,7.0,2.0,4.0,2.5,1227.5056618506385,0.0,0.0,127747.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,51098.8,5,0,5,5_0 -304,11.0,13.0,43.0,111,48,42,0.0,10420,0.0,330.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3904.810154260871,4629.0,0.0,45872.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,19944.34782608696,3,0,3_0,3_0 -305,0.0,0.0,54.0,111,46,60,0.0,10422,0.0,0.0,0.0,0.0,2.0,4.0,3.0,4.0,2.1,1074.623686965167,0.0,0.0,28875.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13750.0,2,0,2_0,2_0 -306,2.0,2.0,25.0,111,54,31,0.0,10423,0.0,200.0,0.0,570.0,2.0,4.0,0.0,2.0,1.5,3636.0447915570453,2860.0,0.0,28040.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18693.333333333332,3,0,3_0,3_0 -307,8.0,8.0,68.0,111,74,70,0.0,10424,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2647.8378071504985,2340.0,0.0,45061.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30040.666666666668,5,0,5,5_0 -308,4.0,4.0,77.0,111,72,70,0.0,10425,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1841.892941067679,1043.0,0.0,25020.0,5,4,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16680.0,2,0,2_0,2_0 -309,2.0,2.0,62.0,112,74,50,1.0,10426,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1178.3155109631753,0.0,24655.0,49213.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,32808.666666666664,5,0,5,5_1 -310,0.0,0.0,62.0,111,77,50,0.0,10428,0.0,0.0,0.0,297.0,0.0,3.0,0.0,2.0,1.5,3144.2454123823836,0.0,0.0,21292.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14194.666666666666,2,0,2_0,2_0 -311,12.0,17.0,45.0,111,64,50,0.0,10429,0.0,200.0,0.0,483.0,2.0,4.0,2.0,4.0,2.5,1947.3880272942113,0.0,0.0,31019.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,12407.6,1,0,1_0,1_0 -312,2.0,2.0,34.0,111,53,41,0.0,1043,0.0,60.0,0.0,600.0,2.0,4.0,1.0,3.0,1.8,3571.4848128979015,0.0,0.0,43837.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24353.888888888887,4,0,4_0,4_0 -313,2.0,2.0,43.0,111,62,31,0.0,10430,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1824.7803608144518,2600.0,0.0,36611.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15917.826086956524,2,0,2_0,2_0 -314,3.0,14.0,51.0,111,52,60,0.0,10431,0.0,3000.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2800.971766315481,1562.0,0.0,20901.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,13934.0,2,0,2_0,2_0 -315,3.0,4.0,32.0,111,37,12,0.0,10434,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2488.576904809829,0.0,0.0,88603.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,42191.90476190476,5,0,5,5_0 -316,7.0,13.0,59.0,300,75,43,0.0,10435,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1433.4395251877918,5763.0,0.0,36300.0,5,1,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,24200.0,4,0,4_0,4_1 -317,6.0,11.0,55.0,111,62,50,0.0,10436,0.0,0.0,30.0,0.0,1.0,4.0,0.0,2.0,1.5,2069.0744989815817,0.0,0.0,24621.0,1,2,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16414.0,2,0,2_0,2_0 -318,6.0,6.0,78.0,111,78,41,0.0,10437,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2990.3873347410113,0.0,0.0,30740.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30740.0,5,0,5,5_0 -319,13.0,13.0,54.0,211,67,50,0.0,10438,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2626.5940737542874,0.0,0.0,33830.0,1,4,3,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16915.0,3,0,3_0,3_0 -320,1.0,1.0,71.0,112,74,12,1.0,1044,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1185.1131345770173,0.0,23000.0,50073.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,33382.0,5,0,5,5_1 -321,0.0,0.0,53.0,111,53,50,0.0,10441,0.0,0.0,0.0,238.0,1.0,2.0,0.0,1.0,1.0,3700.541689451607,0.0,0.0,13960.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13960.0,2,0,2_0,2_0 -322,11.0,18.0,45.0,111,85,71,0.0,10442,0.0,0.0,0.0,275.0,1.0,4.0,1.0,3.0,2.0,3499.2091314652675,1560.0,0.0,18952.0,7,3,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,1,1.0,2.0,9476.0,1,0,1_1,1_0 -323,12.0,12.0,45.0,112,48,50,0.0,10443,0.0,400.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1292.3578019173256,3401.0,0.0,51074.0,1,1,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22206.08695652174,4,0,4_0,4_1 -324,0.0,0.0,84.0,211,75,70,0.0,10444,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2307.3544082302624,0.0,0.0,33227.0,5,1,2,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22151.333333333332,4,0,4_0,4_0 -325,5.0,12.0,43.0,300,69,71,0.0,10445,0.0,0.0,0.0,87.0,2.0,5.0,0.0,2.0,1.5,4241.959380033195,2600.0,0.0,15380.0,4,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,10253.333333333334,1,0,1_1,1_1 -326,0.0,0.0,82.0,111,75,50,0.0,10446,0.0,0.0,0.0,398.0,0.0,2.0,0.0,1.0,1.0,2890.771829512205,0.0,0.0,21178.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21178.0,3,0,3_0,3_0 -327,5.0,6.0,51.0,112,54,50,0.0,10448,0.0,180.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2114.0004040876124,0.0,0.0,26751.0,1,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26751.0,4,0,4_0,4_1 -328,10.0,10.0,49.0,111,53,41,0.0,10449,0.0,100.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,3067.205010968822,386.0,0.0,60178.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26164.34782608696,4,0,4_0,4_0 -329,0.0,14.0,41.0,112,46,20,0.0,1045,0.0,0.0,80.0,490.0,1.0,2.0,0.0,1.0,1.0,2816.326882627001,1560.0,0.0,30043.0,1,3,10,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,30043.0,5,0,5,5_1 -330,4.0,4.0,81.0,111,75,50,0.0,10450,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2395.440485421081,0.0,0.0,19042.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19042.0,3,0,3_0,3_0 -331,2.0,16.0,35.0,111,47,43,0.0,10454,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2393.6904970469673,4162.0,0.0,34610.0,1,2,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16480.95238095238,2,0,2_0,2_0 -332,4.0,16.0,42.0,112,62,50,0.0,10455,0.0,550.0,0.0,462.0,3.0,5.0,3.0,5.0,2.8,1920.5381333435284,3596.0,0.0,53848.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,19231.428571428572,3,0,3_1,3_1 -333,3.0,3.0,45.0,300,46,42,0.0,10457,0.0,400.0,130.0,0.0,2.0,4.0,2.0,4.0,2.1,2240.4423580082944,1300.0,0.0,36748.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17499.04761904762,3,0,3_0,3_1 -334,4.0,5.0,57.0,111,77,71,0.0,10458,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3191.050171095006,1051.0,0.0,17330.0,7,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,17330.0,3,0,3_0,3_0 -335,3.0,3.0,44.0,111,45,31,0.0,10459,0.0,110.0,0.0,0.0,1.0,7.0,2.0,3.0,1.8,2136.9622829110795,2600.0,0.0,37608.0,1,1,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20893.333333333332,3,0,3_0,3_0 -336,0.0,0.0,74.0,111,77,70,0.0,1046,0.0,0.0,0.0,266.0,0.0,4.0,0.0,1.0,1.0,1992.192902599123,0.0,0.0,12368.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12368.0,1,0,1_1,1_0 -337,0.0,0.0,41.0,111,34,20,0.0,10460,0.0,0.0,0.0,239.0,1.0,2.0,1.0,3.0,1.8,3567.36239868603,0.0,0.0,31545.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17525.0,3,0,3_0,3_0 -338,1.0,12.0,49.0,111,56,60,2.0,10462,0.0,0.0,99999.0,0.0,3.0,5.0,2.0,4.0,2.3,2322.816448242535,0.0,1500.0,38559.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16764.782608695652,2,0,2_0,2_0 -339,1.0,10.0,20.0,111,67,41,2.0,10463,0.0,400.0,0.0,151.0,1.0,3.0,0.0,1.0,1.0,5246.673362524719,2444.0,3000.0,23522.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,23522.0,4,0,4_1,4_0 -340,7.0,29.0,53.0,111,46,60,0.0,10465,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2695.6053706448615,0.0,0.0,27050.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,18033.333333333332,3,0,3_0,3_0 -341,1.0,13.0,25.0,221,52,71,1.0,10469,0.0,380.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3904.479298938231,1742.0,4200.0,11874.0,1,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,11874.0,1,0,1_0,1_0 -342,6.0,8.0,61.0,112,74,50,0.0,10473,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1037.5258964859863,2049.0,0.0,44900.0,5,1,8,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,29933.333333333332,5,0,5,5_0 -343,1.0,1.0,22.0,111,53,42,0.0,10474,0.0,650.0,0.0,420.0,2.0,2.0,0.0,2.0,1.5,3348.815393963071,0.0,0.0,29115.0,1,3,7,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19410.0,3,0,3_0,3_0 -344,6.0,20.0,23.0,111,84,31,0.0,10475,0.0,0.0,60.0,261.0,0.0,2.0,0.0,1.0,1.0,3637.3431435007483,0.0,0.0,3987.0,3,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,3987.0,1,0,1_1,1_0 -345,2.0,2.0,65.0,111,72,10,0.0,10476,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2390.689477447362,0.0,0.0,72005.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,48003.333333333336,5,0,5,5_0 -346,3.0,22.0,49.0,111,47,12,0.0,10477,0.0,0.0,125.0,0.0,1.0,6.0,0.0,1.0,1.0,1268.0109534123537,2081.0,0.0,28188.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,28188.0,4,0,4_0,4_0 -347,1.0,1.0,62.0,221,75,60,1.0,10479,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4202.20253556212,2132.0,15311.0,22186.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22186.0,4,0,4_0,4_0 -348,6.0,12.0,41.0,111,21,50,0.0,1048,0.0,0.0,0.0,283.0,1.0,1.0,0.0,1.0,1.0,5609.40478495857,0.0,0.0,5801.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,5801.0,1,0,1_1,1_0 -349,1.0,19.0,49.0,300,43,31,2.0,10480,0.0,336.0,250.0,0.0,2.0,8.0,2.0,4.0,2.5,904.3314899173619,0.0,2000.0,48800.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,19520.0,3,0,3_0,3_1 -350,0.0,0.0,22.0,111,56,20,0.0,10481,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,3514.8431260034627,0.0,0.0,30480.0,3,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30480.0,5,0,5,5_0 -351,0.0,0.0,84.0,212,77,41,0.0,10484,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2032.8141554493154,0.0,0.0,25306.0,5,1,1,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25306.0,4,0,4_0,4_1 -352,5.0,11.0,45.0,400,64,50,0.0,10486,0.0,0.0,0.0,0.0,2.0,6.0,7.0,9.0,4.4,753.1163249129326,2080.0,0.0,44067.0,1,3,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,1,1.0,2.0,10015.227272727272,1,0,1_1,1_1 -353,0.0,10.0,22.0,221,62,43,2.0,10488,0.0,1634.0,0.0,410.0,2.0,2.0,0.0,2.0,1.5,6624.045129652896,7377.0,3650.0,39975.0,1,3,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26650.0,4,0,4_0,4_0 -354,1.0,1.0,37.0,111,31,10,1.0,10489,0.0,0.0,350.0,0.0,1.0,6.0,0.0,1.0,1.0,1949.830243160281,0.0,34000.0,66498.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,66498.0,5,0,5,5_0 -355,0.0,11.0,22.0,111,34,41,0.0,1049,0.0,0.0,0.0,466.0,2.0,3.0,0.0,2.0,1.5,3956.917042857073,0.0,0.0,59018.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,39345.333333333336,5,0,5,5_0 -356,4.0,5.0,46.0,112,37,12,0.0,10490,0.0,400.0,0.0,0.0,2.0,10.0,1.0,3.0,2.0,2289.902982145855,0.0,0.0,150678.0,1,1,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,75339.0,5,0,5,5_0 -357,0.0,7.0,29.0,111,38,10,0.0,10491,0.0,0.0,0.0,579.0,1.0,3.0,0.0,2.0,1.5,3672.82691997482,4243.0,0.0,27550.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18366.666666666668,3,0,3_0,3_0 -358,9.0,9.0,56.0,112,37,50,0.0,10492,0.0,325.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1770.4038567777425,0.0,0.0,57961.0,1,3,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,38640.666666666664,5,0,5,5_0 -359,0.0,0.0,71.0,111,78,70,0.0,10493,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1565.8342014094715,0.0,0.0,18770.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18770.0,3,0,3_0,3_0 -360,3.0,3.0,86.0,111,74,20,0.0,10494,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2590.3214127304236,0.0,0.0,43588.0,5,4,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,29058.666666666668,5,0,5,5_0 -361,11.0,11.0,39.0,112,34,10,0.0,10495,0.0,0.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,4839.558683114459,312.0,0.0,29550.0,1,3,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29550.0,5,0,5,5_0 -362,2.0,2.0,76.0,111,78,70,0.0,10496,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2468.4177331812107,0.0,0.0,28364.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18909.333333333332,3,0,3_0,3_0 -363,9.0,9.0,58.0,111,47,31,0.0,10498,0.0,99999.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1933.1453500587081,0.0,0.0,58523.0,1,1,7,6.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,39015.333333333336,5,0,5,5_0 -364,3.0,5.0,43.0,300,43,20,0.0,10499,0.0,450.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1500.4708333438211,2805.0,0.0,38914.0,1,2,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,38914.0,5,0,5,5_1 -365,0.0,0.0,49.0,111,65,70,0.0,105,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1770.266773016474,0.0,0.0,15580.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15580.0,2,0,2_1,2_0 -366,8.0,9.0,50.0,111,38,12,0.0,10500,0.0,99999.0,110.0,0.0,2.0,6.0,2.0,4.0,2.5,2659.730173370842,2756.0,0.0,90525.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,36210.0,5,0,5,5_0 -367,1.0,1.0,63.0,211,75,70,1.0,10501,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,1062.6146301746467,2480.0,36500.0,57438.0,5,1,3,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,38292.0,5,0,5,5_0 -368,2.0,9.0,32.0,111,42,10,0.0,10502,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3376.7231280499636,0.0,0.0,51683.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,51683.0,5,0,5,5_0 -369,2.0,2.0,59.0,111,75,33,0.0,10505,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3435.7377690282615,0.0,0.0,20418.0,5,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20418.0,3,0,3_0,3_0 -370,1.0,4.0,49.0,112,35,10,0.0,1051,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2739.915213416985,3210.0,0.0,10639.0,1,2,9,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,0.0,10639.0,1,0,1_0,1_1 -371,0.0,0.0,82.0,111,78,71,0.0,10510,0.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,2.0,3176.1847845361954,0.0,0.0,15232.0,5,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,7616.0,1,0,1_1,1_0 -372,0.0,17.0,42.0,111,85,20,0.0,10512,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2985.3011009167744,0.0,0.0,26560.0,4,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26560.0,4,0,4_0,4_0 -373,1.0,24.0,22.0,111,46,31,0.0,10513,0.0,50.0,0.0,354.0,1.0,1.0,0.0,2.0,1.5,4129.866053904747,2540.0,0.0,6651.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,4434.0,1,0,1_1,1_0 -374,0.0,0.0,44.0,111,46,31,0.0,10516,0.0,0.0,0.0,500.0,1.0,3.0,1.0,2.0,1.5,3629.7007967496456,0.0,0.0,51511.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34340.666666666664,5,0,5,5_0 -375,18.0,21.0,83.0,300,72,70,0.0,10517,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2932.7199066283165,0.0,0.0,12419.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12419.0,1,0,1_0,1_1 -376,5.0,5.0,63.0,111,75,60,0.0,10518,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2303.57315001942,0.0,0.0,29210.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19473.333333333332,3,0,3_0,3_0 -377,2.0,7.0,31.0,111,46,31,0.0,10520,0.0,200.0,250.0,0.0,2.0,4.0,3.0,5.0,2.4,1054.9725643884453,2080.0,0.0,44472.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18530.0,3,0,3_0,3_0 -378,1.0,3.0,42.0,221,33,31,0.0,10521,0.0,250.0,150.0,0.0,2.0,5.0,1.0,3.0,2.0,3840.982197458508,3626.0,0.0,59494.0,1,1,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,29747.0,5,0,5,5_0 -379,3.0,11.0,23.0,111,53,41,0.0,10522,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,4097.286983441131,2706.0,0.0,23977.0,1,4,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15984.666666666666,2,0,2_0,2_0 -380,3.0,17.0,26.0,211,64,50,0.0,10524,0.0,140.0,0.0,53.0,1.0,4.0,2.0,4.0,2.1,2406.7299985056543,2080.0,0.0,32404.0,1,3,3,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,15430.476190476189,2,0,2_1,2_0 -381,4.0,4.0,47.0,111,62,60,0.0,10525,0.0,350.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,2059.7916027611377,0.0,0.0,45625.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25347.222222222223,4,0,4_0,4_0 -382,15.0,18.0,72.0,111,74,50,0.0,10527,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2878.367693551964,1984.0,0.0,33630.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,33630.0,5,0,5,5_0 -383,0.0,1.0,32.0,111,34,20,2.0,10528,0.0,100.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1877.7974923706827,2263.0,18000.0,29227.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16237.222222222223,2,0,2_0,2_0 -384,1.0,4.0,38.0,111,55,41,2.0,1053,0.0,200.0,0.0,455.0,1.0,5.0,2.0,3.0,1.6,2720.5419204379878,0.0,5000.0,23269.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14543.125,2,0,2_1,2_0 -385,3.0,3.0,58.0,111,62,50,0.0,10531,0.0,200.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1431.906477783617,2479.0,0.0,60076.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,40050.666666666664,5,0,5,5_0 -386,9.0,12.0,37.0,111,63,41,0.0,10532,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,1683.8705294379201,0.0,0.0,32946.0,1,4,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,13727.5,2,0,2_0,2_0 -387,1.0,20.0,28.0,120,85,60,2.0,10533,0.0,0.0,0.0,317.0,0.0,2.0,0.0,1.0,1.0,3040.7187919577545,1040.0,1800.0,9124.0,7,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9124.0,1,0,1_0,1_1 -388,4.0,6.0,33.0,300,63,50,0.0,10534,0.0,620.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1482.1283000017809,5722.0,0.0,49097.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,23379.52380952381,4,0,4_0,4_1 -389,6.0,8.0,57.0,112,56,71,0.0,10535,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2989.9080364992697,0.0,0.0,15723.0,1,2,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,7861.5,1,0,1_1,1_0 -390,3.0,3.0,56.0,112,37,41,0.0,10536,0.0,0.0,0.0,0.0,1.0,8.0,1.0,3.0,2.0,3407.399355270239,0.0,0.0,75896.0,1,1,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,37948.0,5,0,5,5_1 -391,11.0,11.0,38.0,221,21,50,0.0,10537,0.0,20.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3878.879527358093,5200.0,0.0,10710.0,1,2,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,10710.0,1,0,1_0,1_0 -392,2.0,2.0,53.0,300,62,50,0.0,10538,0.0,450.0,144.0,0.0,2.0,4.0,2.0,4.0,2.3,780.3875760225162,4161.0,0.0,70224.0,1,1,0,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,2.0,1.0,30532.17391304348,5,0,5,5_1 -393,0.0,0.0,66.0,111,55,70,0.0,10539,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2600.9520592042763,0.0,0.0,13030.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13030.0,2,0,2_1,2_0 -394,0.0,0.0,36.0,111,22,50,0.0,1054,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,3434.4385087283176,0.0,0.0,14780.0,4,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7038.095238095238,1,0,1_1,1_0 -395,2.0,3.0,38.0,111,45,10,0.0,10540,0.0,0.0,0.0,259.0,1.0,3.0,1.0,2.0,1.5,3718.0051430977355,2232.0,0.0,23497.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15664.666666666666,2,0,2_0,2_0 -396,9.0,9.0,80.0,111,78,70,0.0,10541,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1200.8517458956815,2236.0,0.0,18635.0,5,4,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12423.333333333334,1,0,1_0,1_0 -397,4.0,7.0,61.0,112,55,50,0.0,10542,0.0,130.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3207.112810882364,2133.0,0.0,28117.0,1,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,18744.666666666668,3,0,3_0,3_0 -398,1.0,6.0,37.0,400,67,50,0.0,10543,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1747.222560488122,2860.0,0.0,28004.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13335.238095238095,2,0,2_0,2_1 -399,0.0,0.0,62.0,112,78,41,0.0,10545,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2979.6988827971722,0.0,0.0,8695.0,5,4,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,8695.0,1,0,1_0,1_0 -400,0.0,0.0,86.0,111,78,70,0.0,10546,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2505.86141655209,0.0,0.0,20811.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20811.0,3,0,3_0,3_0 -401,1.0,3.0,55.0,221,12,71,2.0,10547,0.0,40.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2750.8932205052533,0.0,27000.0,31840.0,1,1,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21226.666666666668,3,0,3_0,3_0 -402,1.0,17.0,25.0,111,63,43,2.0,10548,0.0,500.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3221.7399573164034,5044.0,1200.0,46300.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,30866.666666666668,5,0,5,5_0 -403,21.0,22.0,58.0,111,38,12,0.0,10549,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1962.9140490726195,0.0,0.0,253343.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,126671.5,5,0,5,5_0 -404,18.0,24.0,72.0,111,72,50,0.0,1055,0.0,0.0,36.0,0.0,1.0,4.0,0.0,2.0,1.5,3154.817086499049,1953.0,0.0,15440.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,10293.333333333334,1,0,1_0,1_0 -405,15.0,15.0,68.0,111,74,31,0.0,10551,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2570.869532725585,2911.0,0.0,85600.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,57066.666666666664,5,0,5,5_0 -406,0.0,11.0,50.0,112,69,50,0.0,10552,0.0,0.0,0.0,0.0,2.0,6.0,4.0,6.0,3.1,745.40848683712,4671.0,0.0,40890.0,1,2,5,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13190.322580645161,2,0,2_0,2_1 -407,1.0,6.0,41.0,111,54,60,2.0,10554,0.0,0.0,5.0,0.0,2.0,5.0,2.0,4.0,2.1,3033.1911630426052,0.0,12000.0,40832.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,19443.809523809523,3,0,3_0,3_0 -408,3.0,3.0,65.0,112,75,60,0.0,10556,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,5039.4359310604,2615.0,0.0,50023.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,33348.666666666664,5,0,5,5_0 -409,1.0,10.0,22.0,111,84,31,2.0,10557,0.0,0.0,30.0,0.0,0.0,2.0,0.0,1.0,1.0,3942.6119157141193,1040.0,5000.0,6298.0,3,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,6298.0,1,0,1_0,1_0 -410,0.0,0.0,78.0,111,86,71,0.0,10558,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2810.707665325193,0.0,0.0,11385.0,6,4,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11385.0,1,0,1_0,1_0 -411,1.0,1.0,67.0,112,74,20,0.0,10559,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1460.0871407028915,3293.0,0.0,67700.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,45133.333333333336,5,0,5,5_1 -412,2.0,9.0,22.0,111,56,41,0.0,1056,0.0,1100.0,0.0,453.0,2.0,2.0,0.0,2.0,1.5,2568.6911466914685,0.0,0.0,29313.0,1,3,6,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,19542.0,3,0,3_0,3_0 -413,0.0,0.0,37.0,111,85,30,0.0,10560,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,2958.5524522985247,0.0,0.0,14575.0,7,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11211.538461538461,1,0,1_1,1_0 -414,2.0,6.0,29.0,112,43,20,0.0,10561,0.0,250.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3409.482288058001,2718.0,0.0,35333.0,1,2,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,19629.444444444445,3,0,3_0,3_1 -415,5.0,11.0,77.0,120,72,50,0.0,10562,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2232.9197128648,0.0,0.0,22237.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14824.666666666666,2,0,2_0,2_1 -416,1.0,1.0,49.0,111,53,50,0.0,10568,0.0,0.0,600.0,0.0,2.0,5.0,0.0,2.0,1.5,1065.2171140536445,5876.0,0.0,60864.0,1,3,7,5.0,3,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,40576.0,5,0,5,5_0 -417,1.0,1.0,82.0,111,75,70,1.0,1057,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,2.0,1830.257244291491,0.0,7000.0,25535.0,5,1,6,5.0,5,1.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12767.5,2,0,2_0,2_0 -418,1.0,1.0,31.0,112,65,31,1.0,10571,0.0,140.0,100.0,0.0,2.0,6.0,2.0,4.0,2.1,1954.4349271058313,0.0,8000.0,56711.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27005.238095238095,4,0,4_0,4_1 -419,1.0,3.0,54.0,112,42,41,0.0,10572,0.0,0.0,200.0,0.0,1.0,2.0,0.0,1.0,1.0,3375.491144840095,2576.0,0.0,27020.0,1,1,10,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,27020.0,4,0,4_0,4_0 -420,0.0,0.0,18.0,111,84,41,0.0,10573,0.0,0.0,0.0,330.0,0.0,1.0,0.0,1.0,1.0,4133.45888804377,0.0,0.0,4823.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,4823.0,1,0,1_0,1_0 -421,11.0,11.0,61.0,111,74,12,0.0,10575,0.0,0.0,0.0,0.0,0.0,20.0,0.0,2.0,1.5,1225.5969830611773,2344.0,0.0,107387.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,71591.33333333333,5,0,5,5_0 -422,0.0,0.0,27.0,111,34,20,1.0,10578,0.0,1000.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3811.3138938017223,3083.0,12000.0,35881.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,35881.0,5,0,5,5_0 -423,11.0,14.0,47.0,111,43,33,0.0,10579,0.0,0.0,140.0,0.0,1.0,4.0,1.0,2.0,1.3,3597.0448940404985,2600.0,0.0,32309.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24853.076923076922,4,0,4_0,4_0 -424,10.0,22.0,30.0,221,21,31,0.0,1058,0.0,0.0,0.0,530.0,2.0,2.0,0.0,2.0,1.5,4578.712945209275,2340.0,0.0,55360.0,1,3,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,36906.666666666664,5,0,5,5_0 -425,4.0,11.0,25.0,111,67,50,0.0,10581,0.0,0.0,0.0,220.0,2.0,1.0,0.0,2.0,1.5,2982.7407715537583,3276.0,0.0,24540.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16360.0,2,0,2_0,2_0 -426,8.0,8.0,58.0,111,85,31,0.0,10583,0.0,150.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1308.6859895037176,0.0,0.0,1230.0,6,1,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,1230.0,1,0,1_0,1_0 -427,1.0,1.0,51.0,111,43,33,0.0,10584,0.0,550.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2539.482633768307,2638.0,0.0,51538.0,1,1,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,34358.666666666664,5,0,5,5_0 -428,0.0,0.0,91.0,111,86,71,0.0,10585,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3796.0987420110937,0.0,0.0,13243.0,6,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13243.0,2,0,2_0,2_0 -429,5.0,21.0,50.0,111,52,31,0.0,10586,0.0,0.0,0.0,124.0,1.0,4.0,0.0,1.0,1.0,2381.5260475979107,0.0,0.0,12740.0,4,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12740.0,2,0,2_1,2_0 -430,3.0,10.0,32.0,111,22,71,0.0,10587,0.0,0.0,99999.0,1200.0,1.0,2.0,0.0,1.0,1.0,3916.673623860374,4075.0,0.0,20327.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,20327.0,3,0,3_0,3_0 -431,11.0,11.0,45.0,111,33,31,0.0,10589,0.0,0.0,10.0,0.0,2.0,5.0,2.0,4.0,2.3,3054.1032169641667,2132.0,0.0,65917.0,1,4,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,28659.565217391308,4,0,4_0,4_0 -432,3.0,14.0,39.0,112,31,31,0.0,10590,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2910.20461045813,4319.0,0.0,4557.0,1,4,7,1.0,1,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,4557.0,1,0,1_0,1_0 -433,0.0,17.0,29.0,112,46,12,0.0,10591,0.0,0.0,1200.0,429.0,1.0,3.0,1.0,3.0,1.8,2452.172309769958,4268.0,0.0,30532.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,16962.222222222223,3,0,3_1,3_1 -434,3.0,13.0,38.0,111,56,43,0.0,10596,0.0,0.0,100.0,146.0,1.0,3.0,1.0,2.0,1.3,2826.513028543269,1664.0,0.0,18934.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,14564.615384615385,2,0,2_1,2_0 -435,12.0,12.0,43.0,111,37,31,0.0,10598,0.0,0.0,0.0,291.0,1.0,2.0,0.0,1.0,1.0,2990.925492006226,2080.0,0.0,33819.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,33819.0,5,0,5,5_0 -436,3.0,5.0,51.0,111,47,42,0.0,106,0.0,1000.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1935.519316563005,3794.0,0.0,64801.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,32400.5,5,0,5,5_0 -437,6.0,12.0,43.0,400,42,20,0.0,10600,0.0,0.0,300.0,0.0,1.0,4.0,3.0,4.0,2.1,2574.7114866784304,1040.0,0.0,12703.0,1,4,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,6049.047619047618,1,0,1_0,1_1 -438,7.0,8.0,55.0,112,63,50,0.0,10601,0.0,1770.0,50.0,0.0,3.0,5.0,0.0,4.0,2.5,996.745251226975,6007.0,0.0,72218.0,1,1,9,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,28887.2,4,0,4_0,4_1 -439,7.0,7.0,61.0,111,67,71,0.0,10602,0.0,0.0,70.0,345.0,1.0,4.0,0.0,1.0,1.0,3419.9590626154695,0.0,0.0,24803.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,24803.0,4,0,4_0,4_0 -440,3.0,7.0,27.0,111,34,20,0.0,10603,0.0,199998.0,0.0,0.0,2.0,8.0,1.0,3.0,1.8,1891.7105649916878,3239.0,0.0,40423.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22457.222222222223,4,0,4_0,4_0 -441,0.0,0.0,80.0,112,71,70,2.0,10604,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2512.5532045572418,1820.0,1300.0,12670.0,5,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12670.0,2,0,2_0,2_1 -442,1.0,16.0,81.0,400,71,70,2.0,10605,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3289.7405509593564,0.0,1500.0,20363.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13575.333333333334,2,0,2_0,2_1 -443,25.0,30.0,79.0,400,71,71,0.0,10607,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2853.3844754686866,0.0,0.0,11846.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11846.0,1,0,1_0,1_1 -444,1.0,1.0,38.0,112,54,60,1.0,10608,0.0,250.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2685.382247581698,0.0,10000.0,32394.0,1,2,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15425.714285714284,2,0,2_0,2_1 -445,5.0,7.0,46.0,300,48,71,0.0,10609,0.0,200.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2928.128989053381,0.0,0.0,20152.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20152.0,3,0,3_0,3_1 -446,0.0,0.0,20.0,111,84,41,0.0,10611,0.0,0.0,0.0,275.0,0.0,3.0,0.0,1.0,1.0,3785.6956963638545,0.0,0.0,9534.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9534.0,1,0,1_1,1_0 -447,3.0,5.0,77.0,112,72,70,0.0,10612,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2265.2859938088654,0.0,0.0,17500.0,5,3,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11666.666666666666,1,0,1_0,1_1 -448,0.0,0.0,77.0,221,77,50,0.0,10613,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3917.8080096247027,0.0,0.0,15572.0,5,1,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15572.0,2,0,2_0,2_0 -449,1.0,2.0,55.0,112,67,50,1.0,10614,0.0,199998.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1579.8018364127242,0.0,11000.0,43647.0,1,1,10,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,29098.0,5,0,5,5_0 -450,7.0,15.0,37.0,111,46,43,0.0,10619,0.0,0.0,0.0,262.0,1.0,3.0,0.0,1.0,1.0,3252.6624321174186,2171.0,0.0,27979.0,1,3,8,6.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,27979.0,4,0,4_0,4_0 -451,3.0,3.0,66.0,112,72,43,0.0,10621,0.0,0.0,0.0,0.0,0.0,11.0,0.0,2.0,1.5,2919.900587448948,4406.0,0.0,91426.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,60950.666666666664,5,0,5,5_1 -452,4.0,4.0,78.0,111,75,42,0.0,10623,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2294.2574670197764,0.0,0.0,54160.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,54160.0,5,0,5,5_0 -453,1.0,1.0,52.0,221,43,41,1.0,10624,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2143.904456709013,2340.0,15000.0,61770.0,1,2,1,2.0,4,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,26856.521739130436,4,0,4_0,4_0 -454,0.0,23.0,25.0,111,46,20,0.0,10626,0.0,0.0,0.0,700.0,2.0,3.0,0.0,2.0,1.5,3126.1728023820597,1820.0,0.0,26604.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17736.0,3,0,3_0,3_0 -455,4.0,6.0,54.0,221,46,41,0.0,10627,0.0,0.0,400.0,0.0,1.0,3.0,0.0,1.0,1.0,2034.386338686394,1827.0,0.0,3042.0,1,1,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,3042.0,1,0,1_0,1_0 -456,0.0,0.0,38.0,111,56,41,0.0,10628,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3116.925007170509,0.0,0.0,13075.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13075.0,2,0,2_0,2_0 -457,0.0,0.0,34.0,111,56,71,0.0,1063,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3518.4418304711007,0.0,0.0,10510.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10510.0,1,0,1_1,1_0 -458,0.0,0.0,41.0,112,21,31,0.0,10631,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,6596.108903004372,0.0,0.0,85766.0,1,2,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,47647.777777777774,5,0,5,5_0 -459,15.0,18.0,58.0,221,78,70,0.0,10632,0.0,0.0,150.0,0.0,1.0,3.0,0.0,2.0,1.5,2439.525072671846,2106.0,0.0,27870.0,5,3,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,18580.0,3,0,3_0,3_0 -460,0.0,0.0,75.0,111,78,70,0.0,10633,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2708.791247216397,0.0,0.0,16863.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16863.0,2,0,2_0,2_0 -461,2.0,3.0,54.0,111,45,41,0.0,10634,0.0,10.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2889.7832828617047,156.0,0.0,27321.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27321.0,4,0,4_0,4_0 -462,8.0,8.0,35.0,111,42,20,0.0,10636,0.0,10.0,0.0,251.0,2.0,4.0,1.0,3.0,1.8,2938.31973788655,0.0,0.0,46903.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,26057.222222222223,4,0,4_0,4_0 -463,1.0,1.0,77.0,111,75,70,1.0,10637,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2092.7394932657044,0.0,8776.0,17934.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17934.0,3,0,3_0,3_0 -464,1.0,1.0,36.0,111,37,31,0.0,10641,0.0,0.0,140.0,0.0,2.0,2.0,0.0,2.0,1.5,3426.862538553863,0.0,0.0,38793.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,25862.0,4,0,4_0,4_0 -465,1.0,1.0,33.0,221,22,60,1.0,10642,0.0,70.0,0.0,316.0,1.0,5.0,2.0,3.0,1.6,3330.3247144373195,2080.0,30000.0,22867.0,1,3,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,14291.875,2,0,2_1,2_0 -466,0.0,10.0,66.0,111,74,50,0.0,10643,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3847.1325127351056,0.0,0.0,50403.0,5,2,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,33602.0,5,0,5,5_0 -467,12.0,12.0,45.0,120,38,31,0.0,10644,0.0,250.0,300.0,0.0,2.0,5.0,1.0,3.0,2.0,4332.103958712776,0.0,0.0,60005.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,30002.5,5,0,5,5_1 -468,4.0,12.0,46.0,111,63,50,0.0,10645,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3251.782504293308,832.0,0.0,24680.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24680.0,4,0,4_0,4_0 -469,2.0,10.0,40.0,112,37,42,0.0,10647,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2069.0242155856263,2600.0,0.0,54288.0,1,2,10,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25851.42857142857,4,0,4_0,4_0 -470,2.0,4.0,55.0,111,52,70,0.0,10649,0.0,20.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2218.086050066129,0.0,0.0,10724.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,10724.0,1,0,1_1,1_0 -471,0.0,11.0,61.0,112,78,70,0.0,1065,0.0,0.0,120.0,0.0,0.0,5.0,0.0,2.0,1.5,1822.0137381331672,1019.0,0.0,14440.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,9626.666666666666,1,0,1_0,1_1 -472,0.0,0.0,32.0,111,52,60,0.0,10650,0.0,0.0,0.0,81.0,2.0,4.0,3.0,5.0,2.4,3416.36210189117,0.0,0.0,38418.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16007.5,2,0,2_1,2_0 -473,4.0,13.0,22.0,111,68,41,0.0,10651,0.0,150.0,250.0,350.0,2.0,4.0,1.0,3.0,1.8,3223.1859615505077,1040.0,0.0,28887.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,16048.333333333332,2,0,2_1,2_0 -474,6.0,30.0,46.0,111,48,20,0.0,10652,0.0,0.0,80.0,0.0,2.0,4.0,2.0,3.0,1.8,2530.2601443610893,1560.0,0.0,39497.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,21942.777777777777,4,0,4_0,4_0 -475,0.0,0.0,81.0,112,71,71,0.0,10653,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3322.1524226992933,0.0,0.0,10070.0,5,1,7,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10070.0,1,0,1_0,1_0 -476,7.0,17.0,59.0,300,78,50,0.0,10658,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1544.4492870033378,0.0,0.0,25936.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17290.666666666668,3,0,3_0,3_1 -477,12.0,12.0,71.0,400,78,60,0.0,10659,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,5482.0367978043,0.0,0.0,50669.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,33779.333333333336,5,0,5,5_0 -478,7.0,7.0,83.0,112,72,70,0.0,1066,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1992.4431598951714,0.0,0.0,45044.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,45044.0,5,0,5,5_0 -479,4.0,9.0,45.0,112,52,71,0.0,10660,0.0,480.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2452.5823415230225,0.0,0.0,42022.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16808.8,2,0,2_0,2_0 -480,4.0,7.0,54.0,221,54,43,0.0,10661,0.0,0.0,80.0,0.0,2.0,4.0,0.0,2.0,1.5,2751.3017171820206,4509.0,0.0,24596.0,1,1,1,2.0,3,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,16397.333333333332,2,0,2_0,2_0 -481,8.0,9.0,27.0,111,63,50,0.0,10662,0.0,200.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3237.4876222119015,2080.0,0.0,49630.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,27572.222222222223,4,0,4_0,4_0 -482,2.0,10.0,61.0,111,86,20,0.0,10663,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2599.627579626892,1912.0,0.0,31555.0,6,2,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31555.0,5,0,5,5_0 -483,0.0,0.0,84.0,221,71,71,0.0,10664,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4464.152416365964,0.0,0.0,16276.0,5,1,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10850.666666666666,1,0,1_0,1_0 -484,2.0,2.0,28.0,111,52,50,0.0,10665,0.0,300.0,0.0,550.0,2.0,5.0,0.0,2.0,1.5,3517.3464771348426,1970.0,0.0,36266.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24177.333333333332,4,0,4_0,4_0 -485,2.0,5.0,78.0,112,64,70,0.0,10666,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3265.7958841214713,0.0,0.0,26160.0,5,3,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17440.0,3,0,3_0,3_0 -486,4.0,13.0,39.0,111,56,50,0.0,10667,0.0,150.0,0.0,24.0,1.0,3.0,2.0,3.0,1.6,1785.5057510097402,1685.0,0.0,22193.0,1,3,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13870.625,2,0,2_1,2_0 -487,14.0,14.0,63.0,111,78,70,0.0,10668,0.0,0.0,0.0,347.0,0.0,2.0,0.0,1.0,1.0,2407.731207362475,780.0,0.0,11630.0,5,3,3,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,11630.0,1,0,1_1,1_0 -488,4.0,15.0,34.0,111,55,20,0.0,10669,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3021.6910441072932,3120.0,0.0,11590.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,5519.047619047619,1,0,1_1,1_0 -489,0.0,0.0,22.0,111,84,41,0.0,1067,0.0,0.0,0.0,310.0,0.0,1.0,0.0,1.0,1.0,3313.0905557732876,0.0,0.0,911.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,911.0,1,0,1_0,1_0 -490,11.0,11.0,65.0,111,77,70,0.0,10673,0.0,0.0,0.0,401.0,0.0,4.0,0.0,2.0,1.5,2740.4029222977333,0.0,0.0,28946.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19297.333333333332,3,0,3_0,3_0 -491,11.0,15.0,43.0,111,48,60,0.0,10677,0.0,0.0,220.0,456.0,1.0,4.0,2.0,3.0,2.0,2124.1393219197957,0.0,0.0,27298.0,1,3,5,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,13649.0,2,0,2_1,2_0 -492,2.0,14.0,26.0,111,84,41,0.0,10678,0.0,0.0,100.0,195.0,0.0,1.0,0.0,1.0,1.0,3253.6413378536186,0.0,0.0,12987.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,12987.0,2,0,2_1,2_0 -493,1.0,20.0,42.0,221,62,50,2.0,10679,0.0,400.0,200.0,0.0,2.0,4.0,2.0,4.0,2.1,2220.1726059202183,4992.0,2000.0,41495.0,1,1,1,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,19759.52380952381,3,0,3_0,3_0 -494,7.0,7.0,82.0,111,74,44,0.0,1068,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1663.1236814573963,2080.0,0.0,51055.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,34036.666666666664,5,0,5,5_0 -495,0.0,0.0,59.0,111,52,71,0.0,10680,0.0,0.0,0.0,395.0,2.0,4.0,1.0,2.0,1.5,2592.710592280924,0.0,0.0,27938.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18625.333333333332,3,0,3_1,3_0 -496,3.0,10.0,65.0,111,68,70,0.0,10682,0.0,0.0,70.0,520.0,1.0,3.0,1.0,2.0,1.5,2926.608091029373,0.0,0.0,21445.0,5,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14296.666666666666,2,0,2_0,2_0 -497,0.0,0.0,66.0,111,22,50,0.0,10683,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1347.837575088553,0.0,0.0,20490.0,5,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13660.0,2,0,2_0,2_0 -498,0.0,0.0,87.0,300,75,41,0.0,10684,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1658.6856793372342,0.0,0.0,22560.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22560.0,4,0,4_0,4_1 -499,7.0,7.0,40.0,111,38,12,0.0,10685,0.0,150.0,150.0,0.0,2.0,7.0,2.0,4.0,2.1,1976.1907907892326,2328.0,0.0,136169.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,64842.38095238095,5,0,5,5_0 -500,13.0,14.0,46.0,120,56,50,0.0,10687,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2332.672848451324,1872.0,0.0,11743.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11743.0,1,0,1_0,1_1 -501,10.0,14.0,53.0,111,54,20,0.0,10688,0.0,0.0,400.0,0.0,1.0,5.0,2.0,3.0,2.0,938.3314612793471,2127.0,0.0,24445.0,1,4,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,12222.5,1,0,1_0,1_0 -502,5.0,12.0,34.0,300,21,60,0.0,10693,0.0,1120.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2687.792280004802,6500.0,0.0,36216.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17245.714285714286,3,0,3_0,3_1 -503,0.0,0.0,69.0,111,77,50,0.0,10694,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2326.928231277045,0.0,0.0,29630.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29630.0,5,0,5,5_0 -504,2.0,2.0,57.0,111,37,50,0.0,10695,0.0,400.0,80.0,0.0,1.0,4.0,2.0,3.0,2.0,1154.8540980796793,2496.0,0.0,74988.0,1,1,10,8.0,2,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,37494.0,5,0,5,5_0 -505,2.0,2.0,72.0,111,75,70,0.0,10697,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2505.2041759774947,2860.0,0.0,46100.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30733.333333333332,5,0,5,5_0 -506,0.0,0.0,48.0,111,63,50,0.0,10699,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1436.493680190263,0.0,0.0,67982.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,33991.0,5,0,5,5_0 -507,6.0,13.0,64.0,111,78,70,0.0,10700,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2087.8303409855193,0.0,0.0,24798.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16532.0,2,0,2_0,2_0 -508,1.0,19.0,25.0,111,52,50,2.0,10701,0.0,600.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2398.4123739396505,2600.0,500.0,27385.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,13040.47619047619,2,0,2_1,2_0 -509,3.0,9.0,46.0,111,63,50,0.0,10706,0.0,20.0,0.0,368.0,2.0,4.0,2.0,4.0,2.3,1817.115824799345,0.0,0.0,28922.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,12574.782608695654,2,0,2_0,2_0 -510,5.0,6.0,73.0,111,75,70,0.0,10707,0.0,0.0,0.0,625.0,0.0,2.0,0.0,1.0,1.0,2856.425722746117,0.0,0.0,22991.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22991.0,4,0,4_0,4_0 -511,0.0,0.0,78.0,111,77,70,0.0,10708,0.0,0.0,0.0,293.0,0.0,3.0,0.0,1.0,1.0,3044.1336340197986,0.0,0.0,23838.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23838.0,4,0,4_0,4_0 -512,0.0,0.0,64.0,111,75,50,0.0,10709,0.0,0.0,0.0,305.0,0.0,1.0,0.0,1.0,1.0,2632.524393931958,0.0,0.0,9990.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9990.0,1,0,1_1,1_0 -513,6.0,19.0,50.0,111,64,50,0.0,1071,0.0,50.0,0.0,650.0,2.0,5.0,0.0,2.0,1.5,1451.862578789545,3214.0,0.0,38380.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25586.666666666668,4,0,4_0,4_0 -514,2.0,3.0,57.0,111,78,70,0.0,10710,0.0,50.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1575.8566351715626,0.0,0.0,51506.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,34337.333333333336,5,0,5,5_0 -515,2.0,16.0,65.0,112,75,60,0.0,10712,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1621.322007235495,0.0,0.0,35241.0,5,1,8,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,23494.0,4,0,4_0,4_1 -516,11.0,12.0,68.0,111,86,50,0.0,10714,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1619.4463977387347,1560.0,0.0,13920.0,6,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,9280.0,1,0,1_0,1_0 -517,1.0,20.0,43.0,120,55,60,2.0,10715,0.0,0.0,225.0,0.0,1.0,3.0,3.0,5.0,2.4,2778.7237745320353,1560.0,100.0,26929.0,1,3,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,11220.416666666668,1,0,1_1,1_0 -518,7.0,7.0,47.0,111,37,20,0.0,10716,0.0,0.0,99999.0,0.0,2.0,7.0,2.0,4.0,2.1,1649.8521307129506,2392.0,0.0,101499.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,48332.85714285714,5,0,5,5_0 -519,0.0,1.0,30.0,111,54,31,2.0,10718,0.0,0.0,250.0,298.0,2.0,3.0,0.0,2.0,1.5,6958.611101604077,2599.0,6500.0,33860.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,22573.333333333332,4,0,4_0,4_0 -520,2.0,9.0,23.0,300,62,50,0.0,10721,0.0,550.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1056.0722904938775,2340.0,0.0,17199.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17199.0,3,0,3_0,3_1 -521,9.0,9.0,61.0,111,74,30,0.0,10722,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2043.7689204069338,1536.0,0.0,50462.0,5,1,3,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,50462.0,5,0,5,5_0 -522,5.0,5.0,40.0,111,38,20,0.0,10723,0.0,99999.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3773.016051175211,1811.0,0.0,53230.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,25347.619047619046,4,0,4_0,4_0 -523,0.0,0.0,46.0,112,85,71,0.0,10724,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2847.3233315257,0.0,0.0,11450.0,7,3,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11450.0,1,0,1_1,1_0 -524,11.0,18.0,44.0,112,31,10,0.0,10725,0.0,100.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3772.0844686402424,1560.0,0.0,75665.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,36030.95238095238,5,0,5,5_1 -525,4.0,11.0,66.0,112,78,70,0.0,10727,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2227.005760728286,0.0,0.0,30730.0,5,3,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20486.666666666668,3,0,3_0,3_0 -526,0.0,5.0,34.0,111,62,71,2.0,10728,0.0,300.0,0.0,306.0,1.0,4.0,3.0,5.0,2.4,5243.244608393735,1040.0,6000.0,20463.0,1,3,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,8526.25,1,0,1_0,1_0 -527,4.0,12.0,49.0,111,45,50,0.0,10729,0.0,10.0,25.0,800.0,2.0,6.0,2.0,4.0,2.5,2804.5052939457755,4191.0,0.0,29828.0,1,3,6,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,11931.2,1,0,1_0,1_0 -528,9.0,11.0,56.0,111,37,12,0.0,1073,0.0,230.0,50.0,0.0,2.0,5.0,1.0,2.0,1.5,2596.84151392621,3120.0,0.0,66468.0,1,1,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,44312.0,5,0,5,5_0 -529,4.0,4.0,69.0,300,74,31,0.0,10731,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1638.6926509920397,0.0,0.0,34660.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23106.666666666668,4,0,4_0,4_0 -530,0.0,0.0,32.0,111,67,71,0.0,10732,0.0,0.0,0.0,66.0,1.0,2.0,0.0,1.0,1.0,2327.4461001806017,0.0,0.0,15378.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15378.0,2,0,2_1,2_0 -531,11.0,11.0,55.0,111,52,60,0.0,10733,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4661.924042315237,0.0,0.0,25954.0,1,2,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,17302.666666666668,3,0,3_0,3_0 -532,4.0,9.0,32.0,300,37,50,0.0,10734,0.0,199998.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1912.21920084216,3011.0,0.0,44040.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20971.42857142857,3,0,3_0,3_1 -533,7.0,7.0,64.0,111,75,71,0.0,10735,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2997.4749600467662,0.0,0.0,15919.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15919.0,2,0,2_0,2_0 -534,0.0,14.0,48.0,221,63,71,0.0,10736,0.0,200.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2882.5907659717336,2600.0,0.0,23780.0,4,3,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,15853.333333333334,2,0,2_1,2_0 -535,0.0,4.0,24.0,112,54,31,2.0,10737,0.0,0.0,0.0,464.0,1.0,3.0,0.0,1.0,1.0,3309.1218790938797,0.0,6500.0,16639.0,1,3,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,16639.0,2,0,2_1,2_1 -536,9.0,11.0,70.0,111,78,71,0.0,10738,0.0,0.0,0.0,328.0,0.0,3.0,0.0,1.0,1.0,4147.7004501502815,0.0,0.0,18083.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18083.0,3,0,3_0,3_0 -537,3.0,19.0,66.0,112,78,50,0.0,1074,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1305.599669810877,1567.0,0.0,20856.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13904.0,2,0,2_0,2_1 -538,2.0,19.0,35.0,111,63,50,0.0,10741,0.0,0.0,200.0,470.0,2.0,3.0,0.0,2.0,1.5,1576.8155274416085,2096.0,0.0,31347.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,20898.0,3,0,3_0,3_0 -539,7.0,7.0,70.0,300,74,43,0.0,10743,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1558.2608497929202,1099.0,0.0,36522.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24348.0,4,0,4_0,4_1 -540,13.0,13.0,76.0,111,78,71,0.0,10745,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3204.497771717296,0.0,0.0,13068.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13068.0,2,0,2_0,2_0 -541,15.0,15.0,71.0,112,78,50,0.0,10749,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1938.0431563182358,1562.0,0.0,24647.0,5,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16431.333333333332,2,0,2_0,2_1 -542,19.0,19.0,87.0,111,74,70,0.0,1075,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4306.882571202543,0.0,0.0,25286.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16857.333333333332,2,0,2_0,2_0 -543,7.0,7.0,61.0,111,37,10,0.0,10750,0.0,0.0,0.0,489.0,1.0,3.0,0.0,1.0,1.0,2618.3231220245575,2965.0,0.0,31619.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,31619.0,5,0,5,5_0 -544,20.0,20.0,81.0,111,74,50,0.0,10751,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3753.252497787213,0.0,0.0,44276.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,44276.0,5,0,5,5_0 -545,0.0,0.0,22.0,111,84,31,0.0,10752,0.0,0.0,0.0,135.0,0.0,1.0,0.0,1.0,1.0,4129.341179309842,0.0,0.0,6440.0,3,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,6440.0,1,0,1_1,1_0 -546,5.0,9.0,29.0,111,54,41,0.0,10753,0.0,0.0,150.0,290.0,2.0,2.0,1.0,2.0,1.5,2630.1966171353574,3896.0,0.0,38000.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,25333.333333333332,4,0,4_0,4_0 -547,10.0,10.0,57.0,400,37,42,0.0,10754,0.0,0.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,4474.113491092262,2158.0,0.0,70299.0,1,1,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,46866.0,5,0,5,5_1 -548,9.0,11.0,53.0,112,43,33,0.0,10756,0.0,0.0,180.0,0.0,2.0,8.0,2.0,4.0,2.3,3836.287012635887,0.0,0.0,32083.0,1,1,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,13949.13043478261,2,0,2_0,2_1 -549,2.0,9.0,28.0,111,65,71,0.0,10757,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,3697.458355964397,780.0,0.0,28695.0,1,3,8,7.0,4,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,11956.25,1,0,1_1,1_0 -550,2.0,2.0,42.0,111,48,43,0.0,10758,0.0,400.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1739.1742944744606,0.0,0.0,45190.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,18829.166666666668,3,0,3_0,3_0 -551,2.0,32.0,41.0,111,48,41,0.0,10759,0.0,0.0,700.0,0.0,2.0,3.0,2.0,4.0,2.1,2924.5265804445435,3432.0,0.0,44598.0,1,2,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,3.0,0.0,21237.142857142855,3,0,3_0,3_0 -552,17.0,17.0,27.0,112,53,30,0.0,1076,0.0,200.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,6456.033608897349,0.0,0.0,36526.0,1,1,9,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24350.666666666668,4,0,4_0,4_0 -553,3.0,16.0,52.0,111,43,33,0.0,10760,0.0,500.0,0.0,571.0,2.0,3.0,2.0,4.0,2.5,2316.0435519786665,4958.0,0.0,44180.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,17672.0,3,0,3_1,3_0 -554,0.0,0.0,76.0,111,74,10,0.0,10762,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1951.1306016012743,0.0,0.0,49670.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,49670.0,5,0,5,5_0 -555,6.0,8.0,37.0,111,54,41,0.0,10763,0.0,0.0,200.0,338.0,1.0,2.0,0.0,1.0,1.0,2720.652263117299,3099.0,0.0,18725.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18725.0,3,0,3_0,3_0 -556,10.0,10.0,37.0,111,46,31,0.0,10764,0.0,140.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3617.635073497631,0.0,0.0,49049.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27249.444444444445,4,0,4_0,4_0 -557,6.0,11.0,58.0,400,69,70,0.0,10765,0.0,100.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1986.8141182463764,2080.0,0.0,27440.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18293.333333333332,3,0,3_0,3_1 -558,1.0,20.0,33.0,112,63,50,2.0,10766,0.0,1020.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2602.633411864692,2934.0,1000.0,35483.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,16896.666666666664,3,0,3_1,3_1 -559,0.0,0.0,56.0,111,43,60,1.0,10768,0.0,0.0,99999.0,0.0,1.0,3.0,1.0,2.0,1.5,3960.671545233935,0.0,16300.0,36705.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24470.0,4,0,4_0,4_0 -560,15.0,16.0,40.0,112,47,50,0.0,1077,0.0,345.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2218.98075537305,0.0,0.0,46543.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22163.333333333332,4,0,4_0,4_1 -561,0.0,0.0,87.0,111,78,71,0.0,10770,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3546.4380035012146,0.0,0.0,13486.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13486.0,2,0,2_1,2_0 -562,2.0,3.0,50.0,112,64,50,0.0,10771,0.0,170.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1718.2003553075501,0.0,0.0,41394.0,1,2,6,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,14783.57142857143,2,0,2_0,2_1 -563,8.0,12.0,56.0,111,47,50,0.0,10772,0.0,180.0,600.0,0.0,2.0,7.0,1.0,3.0,2.0,1068.5499076834958,5814.0,0.0,64655.0,1,1,7,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,32327.5,5,0,5,5_0 -564,0.0,0.0,87.0,111,86,70,0.0,10773,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2980.9419541957323,0.0,0.0,16110.0,6,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16110.0,2,0,2_0,2_0 -565,1.0,1.0,57.0,112,34,50,1.0,10774,0.0,120.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1967.4412910331587,2606.0,11000.0,62850.0,1,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,41900.0,5,0,5,5_1 -566,7.0,18.0,83.0,111,74,70,0.0,10776,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1627.7970237142742,2740.0,0.0,46767.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,31178.0,5,0,5,5_0 -567,5.0,5.0,32.0,112,47,50,0.0,10778,0.0,350.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2865.8888850239373,2792.0,0.0,45810.0,1,3,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,30540.0,5,0,5,5_1 -568,11.0,11.0,61.0,111,21,31,0.0,10779,0.0,150.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3385.48975252197,2393.0,0.0,37390.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24926.666666666668,4,0,4_0,4_0 -569,6.0,6.0,32.0,111,38,20,0.0,1078,0.0,20.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1584.324793650186,0.0,0.0,43690.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24272.222222222223,4,0,4_0,4_0 -570,2.0,3.0,52.0,111,56,44,0.0,10780,0.0,0.0,0.0,0.0,1.0,6.0,1.0,5.0,2.8,1296.8690036360756,6718.0,0.0,40197.0,1,1,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14356.07142857143,2,0,2_0,2_0 -571,1.0,1.0,35.0,111,63,41,0.0,10781,0.0,100.0,0.0,270.0,1.0,1.0,0.0,1.0,1.0,3079.4541736355254,0.0,0.0,13681.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13681.0,2,0,2_1,2_0 -572,13.0,24.0,37.0,400,69,50,0.0,10783,0.0,176.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1870.515821120104,0.0,0.0,20274.0,1,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,13516.0,2,0,2_1,2_1 -573,3.0,3.0,46.0,112,38,42,0.0,10785,0.0,450.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1030.504253771836,5035.0,0.0,32373.0,1,1,10,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,32373.0,5,0,5,5_1 -574,7.0,7.0,81.0,111,75,50,0.0,10786,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,978.2303834540382,1041.0,0.0,36247.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,24164.666666666668,4,0,4_0,4_0 -575,0.0,0.0,88.0,111,77,70,0.0,10787,0.0,0.0,0.0,785.0,0.0,4.0,0.0,1.0,1.0,3826.6008324350587,0.0,0.0,15363.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15363.0,2,0,2_1,2_0 -576,1.0,1.0,38.0,112,62,50,0.0,10789,0.0,410.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1900.8372615335522,0.0,0.0,51361.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24457.619047619046,4,0,4_0,4_1 -577,16.0,16.0,64.0,400,78,71,0.0,10792,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,2162.7919094376325,6535.0,0.0,24770.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16513.333333333332,2,0,2_0,2_1 -578,2.0,13.0,41.0,111,68,50,0.0,10793,0.0,99999.0,0.0,0.0,1.0,5.0,5.0,6.0,2.7,1027.9735512065647,2600.0,0.0,27500.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,10185.185185185184,1,0,1_1,1_0 -579,6.0,6.0,80.0,111,78,70,0.0,10794,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2553.610263179349,1560.0,0.0,35660.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23773.333333333332,4,0,4_0,4_0 -580,0.0,19.0,38.0,300,56,50,2.0,10795,0.0,180.0,0.0,406.0,2.0,4.0,1.0,3.0,1.8,3088.0402163489325,3120.0,1200.0,33416.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18564.444444444445,3,0,3_0,3_1 -581,6.0,6.0,70.0,112,31,10,0.0,10796,0.0,450.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2318.8059426805953,2080.0,0.0,43864.0,5,1,10,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,43864.0,5,0,5,5_1 -582,5.0,10.0,58.0,112,67,70,0.0,10799,0.0,0.0,220.0,0.0,2.0,5.0,0.0,2.0,1.5,1186.4523243959807,2328.0,0.0,39390.0,1,1,7,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,26260.0,4,0,4_0,4_1 -583,0.0,11.0,52.0,111,62,71,2.0,10801,0.0,410.0,20.0,0.0,4.0,5.0,2.0,4.0,2.5,2354.944540776386,0.0,3700.0,41798.0,1,1,8,7.0,4,4.0,0.0,0.0,0,0,0,1,0,0,2.0,2.0,16719.2,2,0,2_0,2_0 -584,9.0,16.0,52.0,111,46,31,0.0,10802,0.0,350.0,0.0,387.0,1.0,4.0,0.0,1.0,1.0,2901.83460985693,0.0,0.0,27792.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27792.0,4,0,4_0,4_0 -585,1.0,4.0,44.0,111,46,60,0.0,10806,0.0,80.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,3560.3768318047382,3953.0,0.0,39830.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15932.0,2,0,2_0,2_0 -586,3.0,28.0,21.0,300,52,50,0.0,10807,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2128.379135984138,0.0,0.0,13843.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,13843.0,2,0,2_1,2_1 -587,0.0,0.0,48.0,111,85,71,0.0,10808,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.3,3041.8792948045566,0.0,0.0,26058.0,5,3,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11329.565217391306,1,0,1_1,1_0 -588,6.0,6.0,36.0,112,21,43,0.0,10809,0.0,0.0,200.0,0.0,2.0,3.0,1.0,3.0,1.8,3024.817001645923,0.0,0.0,87495.0,1,3,6,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,48608.333333333336,5,0,5,5_1 -589,0.0,1.0,56.0,112,43,20,2.0,10811,0.0,200.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,5998.472863836702,3443.0,14000.0,26757.0,1,1,9,2.0,2,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,17838.0,3,0,3_0,3_0 -590,4.0,5.0,31.0,300,46,50,0.0,10813,0.0,150.0,0.0,495.0,2.0,2.0,1.0,3.0,1.8,2426.007097196779,3017.0,0.0,32844.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18246.666666666668,3,0,3_0,3_1 -591,0.0,0.0,90.0,300,78,71,0.0,10814,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2374.287809522051,0.0,0.0,34258.0,5,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17129.0,3,0,3_0,3_1 -592,4.0,4.0,50.0,111,33,12,0.0,10815,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2758.690274289545,0.0,0.0,75562.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,37781.0,5,0,5,5_0 -593,8.0,11.0,45.0,300,85,33,0.0,10816,0.0,0.0,0.0,0.0,2.0,6.0,5.0,6.0,3.1,582.6785980153381,5724.0,0.0,28511.0,4,2,0,0.0,2,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,9197.096774193547,1,0,1_1,1_1 -594,5.0,5.0,64.0,111,68,70,0.0,10817,0.0,0.0,30.0,390.0,1.0,3.0,0.0,2.0,1.5,2183.513939839021,1532.0,0.0,29012.0,1,3,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19341.333333333332,3,0,3_0,3_0 -595,9.0,9.0,81.0,112,75,10,0.0,1082,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3220.135627022235,0.0,0.0,21924.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21924.0,4,0,4_0,4_1 -596,0.0,0.0,28.0,111,45,20,0.0,10820,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4488.940916049858,0.0,0.0,33863.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33863.0,5,0,5,5_0 -597,7.0,9.0,53.0,112,22,50,0.0,10821,0.0,300.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2983.4859176652644,3640.0,0.0,32200.0,1,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21466.666666666668,3,0,3_0,3_1 -598,11.0,12.0,49.0,111,38,12,0.0,10824,0.0,0.0,0.0,1250.0,1.0,4.0,3.0,5.0,3.0,2246.9814393254055,0.0,0.0,35605.0,1,3,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,11868.333333333334,1,0,1_0,1_0 -599,1.0,1.0,79.0,112,78,50,2.0,10825,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,6118.58833191519,2081.0,17000.0,22467.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14978.0,2,0,2_0,2_0 -600,10.0,11.0,41.0,111,43,50,0.0,10826,0.0,50.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,3023.1720042490224,0.0,0.0,65891.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,25342.69230769231,4,0,4_0,4_0 -601,2.0,5.0,46.0,112,52,50,0.0,10827,0.0,230.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1467.8299423769597,3120.0,0.0,41160.0,1,1,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20580.0,3,0,3_0,3_0 -602,0.0,13.0,29.0,111,64,71,2.0,10828,0.0,0.0,0.0,425.0,1.0,1.0,0.0,1.0,1.0,3673.8992347020453,0.0,1000.0,0.0,4,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,0.0,1,0,1_0,1_0 -603,0.0,0.0,77.0,111,86,71,0.0,10829,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3452.734782643968,0.0,0.0,17260.0,6,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17260.0,3,0,3_0,3_0 -604,0.0,0.0,80.0,112,86,71,0.0,10831,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2989.6814853843075,0.0,0.0,11560.0,6,3,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11560.0,1,0,1_1,1_1 -605,0.0,0.0,86.0,111,86,70,0.0,10832,0.0,0.0,0.0,320.0,0.0,4.0,0.0,1.0,1.0,2723.965466969233,0.0,0.0,16640.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16640.0,2,0,2_0,2_0 -606,0.0,0.0,80.0,111,77,71,0.0,10833,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4319.131410581207,0.0,0.0,17830.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17830.0,3,0,3_0,3_0 -607,2.0,4.0,31.0,112,37,31,0.0,10834,0.0,2500.0,120.0,0.0,2.0,5.0,2.0,4.0,2.1,3167.3820201519784,6294.0,0.0,59741.0,1,2,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,28448.095238095237,4,0,4_0,4_1 -608,3.0,23.0,27.0,300,64,50,0.0,10835,0.0,120.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,3130.1464466648204,2080.0,0.0,34029.0,1,3,0,0.0,3,4.0,0.0,0.0,1,0,0,0,0,1,2.0,2.0,22686.0,4,0,4_1,4_1 -609,3.0,5.0,50.0,112,56,50,0.0,10836,0.0,130.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2510.282556151091,2976.0,0.0,16195.0,1,2,9,3.0,2,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,10796.666666666666,1,0,1_0,1_0 -610,6.0,6.0,59.0,400,74,42,0.0,10838,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1276.7813351753075,0.0,0.0,32040.0,7,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21360.0,3,0,3_0,3_1 -611,6.0,10.0,25.0,111,47,20,0.0,10839,0.0,0.0,90.0,448.0,1.0,1.0,0.0,1.0,1.0,3613.6910176605543,0.0,0.0,27439.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,27439.0,4,0,4_0,4_0 -612,12.0,12.0,90.0,112,77,70,0.0,1084,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2590.8229659844746,0.0,0.0,20719.0,5,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20719.0,3,0,3_0,3_1 -613,0.0,3.0,38.0,112,62,43,2.0,10840,0.0,199998.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2787.7499084316005,2766.0,7500.0,62136.0,1,2,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,29588.571428571428,5,0,5,5_0 -614,9.0,9.0,34.0,120,54,31,0.0,10846,0.0,100199.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2653.2446656588836,2593.0,0.0,52016.0,1,2,0,2.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,24769.52380952381,4,0,4_0,4_0 -615,0.0,0.0,55.0,111,56,50,0.0,10847,0.0,0.0,0.0,435.0,1.0,1.0,0.0,1.0,1.0,3076.5823354819568,0.0,0.0,15492.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15492.0,2,0,2_0,2_0 -616,9.0,9.0,40.0,111,42,10,0.0,10848,0.0,262.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1716.7272943122382,0.0,0.0,54898.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,26141.90476190476,4,0,4_0,4_0 -617,4.0,6.0,32.0,400,42,20,0.0,1085,0.0,100.0,0.0,648.0,2.0,4.0,2.0,4.0,2.1,3222.2905568590168,0.0,0.0,46919.0,1,3,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22342.38095238095,4,0,4_0,4_0 -618,14.0,14.0,71.0,112,74,12,0.0,10850,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1078.835901294405,3862.0,0.0,62792.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,41861.333333333336,5,0,5,5_0 -619,0.0,0.0,46.0,111,68,71,0.0,10851,0.0,0.0,0.0,204.0,1.0,2.0,0.0,1.0,1.0,2549.549915413594,0.0,0.0,18017.0,1,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18017.0,3,0,3_0,3_0 -620,5.0,15.0,63.0,112,75,70,0.0,10854,0.0,0.0,0.0,407.0,0.0,2.0,0.0,1.0,1.0,2631.0822814364997,0.0,0.0,23440.0,5,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23440.0,4,0,4_0,4_0 -621,1.0,1.0,46.0,111,47,31,0.0,10856,0.0,450.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1877.4427267866333,2950.0,0.0,41831.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27887.333333333332,4,0,4_0,4_0 -622,3.0,6.0,21.0,111,84,41,0.0,10857,0.0,0.0,0.0,300.0,0.0,1.0,0.0,1.0,1.0,3703.307406451023,0.0,0.0,8951.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,8951.0,1,0,1_1,1_0 -623,6.0,6.0,57.0,211,37,44,0.0,10858,0.0,99999.0,300.0,0.0,2.0,8.0,0.0,2.0,1.5,1942.7980997828174,2829.0,0.0,51197.0,1,1,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,34131.333333333336,5,0,5,5_0 -624,0.0,3.0,54.0,111,63,60,0.0,1086,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3274.968638160151,1565.0,0.0,8406.0,4,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8406.0,1,0,1_1,1_0 -625,6.0,6.0,68.0,111,72,50,0.0,10861,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2286.396954682296,2236.0,0.0,28483.0,5,1,4,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18988.666666666668,3,0,3_0,3_0 -626,6.0,6.0,64.0,112,77,70,0.0,10862,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1427.4158033093697,0.0,0.0,16611.0,5,2,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16611.0,2,0,2_0,2_1 -627,6.0,9.0,61.0,111,77,71,0.0,10863,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3122.9093110022395,0.0,0.0,10860.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,10860.0,1,0,1_0,1_0 -628,1.0,15.0,37.0,111,85,41,2.0,10867,0.0,0.0,0.0,0.0,0.0,3.0,2.0,4.0,2.1,2828.2127466451107,0.0,1400.0,18617.0,4,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8865.238095238095,1,0,1_1,1_0 -629,8.0,21.0,55.0,221,48,50,0.0,10868,0.0,410.0,0.0,0.0,4.0,8.0,2.0,4.0,2.5,1401.012910449922,4838.0,0.0,45548.0,1,1,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,18219.2,3,0,3_0,3_0 -630,5.0,5.0,74.0,111,74,10,0.0,10869,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1672.2031332010602,0.0,0.0,91705.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,61136.666666666664,5,0,5,5_0 -631,3.0,3.0,63.0,112,75,50,0.0,1087,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1043.9659763186341,0.0,0.0,28002.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18668.0,3,0,3_0,3_0 -632,6.0,14.0,42.0,120,34,41,0.0,10871,0.0,99999.0,150.0,0.0,2.0,5.0,1.0,3.0,1.8,3652.1713166817176,3738.0,0.0,38304.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,21280.0,3,0,3_0,3_1 -633,6.0,12.0,63.0,112,78,50,0.0,10873,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1988.2033019616815,2653.0,0.0,15469.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10312.666666666666,1,0,1_0,1_1 -634,8.0,8.0,73.0,111,74,60,0.0,10874,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3662.1942922304384,0.0,0.0,25623.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25623.0,4,0,4_0,4_0 -635,3.0,6.0,33.0,111,38,20,0.0,10875,0.0,50.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,4584.804731524858,2912.0,0.0,34048.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16213.333333333332,2,0,2_0,2_0 -636,5.0,13.0,36.0,112,54,43,0.0,10876,0.0,0.0,0.0,542.0,1.0,2.0,0.0,1.0,1.0,3294.292042613514,0.0,0.0,16761.0,1,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16761.0,2,0,2_0,2_0 -637,2.0,2.0,40.0,111,42,42,0.0,10878,200.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1699.4318827929098,0.0,0.0,34798.0,1,2,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,0.0,21748.75,4,0,4_0,4_0 -638,4.0,4.0,59.0,400,62,60,0.0,10879,0.0,240.0,200.0,0.0,3.0,5.0,2.0,4.0,2.5,3455.1403509116744,0.0,0.0,77060.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,30824.0,5,0,5,5_1 -639,6.0,8.0,33.0,111,55,43,0.0,1088,0.0,300.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,2438.03462396763,0.0,0.0,24232.0,1,3,5,4.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,12753.684210526317,2,0,2_1,2_0 -640,5.0,5.0,64.0,111,77,70,0.0,10880,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1629.61350171152,3380.0,0.0,28080.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18720.0,3,0,3_0,3_0 -641,0.0,0.0,48.0,111,42,60,0.0,10881,0.0,0.0,0.0,1060.0,1.0,4.0,3.0,4.0,2.3,3594.8039309239016,0.0,0.0,14861.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,6461.304347826088,1,0,1_0,1_0 -642,6.0,6.0,74.0,111,77,60,0.0,10883,0.0,0.0,0.0,361.0,0.0,4.0,0.0,1.0,1.0,2786.8173814985307,0.0,0.0,15093.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15093.0,2,0,2_0,2_0 -643,0.0,0.0,40.0,112,67,71,0.0,10884,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,2600.1482819329476,0.0,0.0,14136.0,4,3,10,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7068.0,1,0,1_1,1_0 -644,0.0,0.0,24.0,111,43,41,0.0,10886,0.0,0.0,0.0,125.0,1.0,1.0,0.0,1.0,1.0,3829.2021421267796,0.0,0.0,6830.0,2,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6830.0,1,0,1_1,1_0 -645,2.0,9.0,31.0,112,53,41,0.0,10887,0.0,350.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2655.204079682432,3640.0,0.0,45481.0,1,2,10,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25267.222222222223,4,0,4_0,4_0 -646,0.0,0.0,66.0,111,34,10,0.0,10888,0.0,0.0,0.0,1054.0,1.0,3.0,0.0,1.0,1.0,3426.6594541122768,0.0,0.0,51012.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,51012.0,5,0,5,5_0 -647,4.0,4.0,58.0,111,52,50,0.0,10889,0.0,0.0,320.0,0.0,3.0,4.0,1.0,3.0,2.0,2308.4880192358105,8564.0,0.0,58425.0,1,1,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,3.0,0.0,29212.5,5,0,5,5_0 -648,2.0,7.0,46.0,120,62,50,0.0,1089,0.0,180.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,981.4554835835204,1542.0,0.0,28598.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13618.095238095237,2,0,2_0,2_1 -649,0.0,0.0,38.0,111,64,50,0.0,10890,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,6755.332647377915,0.0,0.0,15810.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,7528.571428571428,1,0,1_0,1_0 -650,7.0,10.0,44.0,111,38,12,0.0,10892,0.0,0.0,99999.0,0.0,2.0,4.0,1.0,3.0,1.8,1673.8351168121335,0.0,0.0,63439.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,35243.88888888889,5,0,5,5_0 -651,15.0,22.0,54.0,112,62,70,0.0,10894,0.0,110.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2243.3049488128477,0.0,0.0,46671.0,1,1,10,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,31114.0,5,0,5,5_1 -652,14.0,18.0,65.0,112,75,50,0.0,10896,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1103.6666014574764,1562.0,0.0,31310.0,5,1,8,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,20873.333333333332,3,0,3_0,3_0 -653,9.0,18.0,58.0,112,37,50,0.0,109,0.0,1000.0,64.0,0.0,2.0,6.0,0.0,2.0,1.5,1899.863023842108,2728.0,0.0,48775.0,1,1,9,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,32516.666666666668,5,0,5,5_1 -654,0.0,4.0,34.0,111,63,71,2.0,1090,0.0,0.0,200.0,450.0,2.0,2.0,0.0,2.0,1.5,6325.016253769385,0.0,5000.0,23916.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,15944.0,2,0,2_0,2_0 -655,5.0,5.0,48.0,111,46,71,0.0,10901,0.0,0.0,240.0,391.0,4.0,4.0,3.0,5.0,2.8,4611.7666145865005,2600.0,0.0,60312.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,21540.0,3,0,3_0,3_0 -656,15.0,15.0,56.0,112,52,31,0.0,10902,0.0,0.0,350.0,0.0,1.0,6.0,0.0,2.0,1.5,2033.4740920289541,3900.0,0.0,39183.0,1,1,5,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,26122.0,4,0,4_0,4_1 -657,1.0,1.0,65.0,111,75,71,1.0,10903,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3141.439207513763,1040.0,16000.0,19422.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12948.0,2,0,2_0,2_0 -658,2.0,2.0,52.0,211,52,50,0.0,10904,0.0,0.0,100.0,0.0,1.0,2.0,0.0,1.0,1.0,2218.842327401399,0.0,0.0,21704.0,1,1,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21704.0,4,0,4_0,4_0 -659,16.0,16.0,82.0,111,75,44,0.0,10905,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3495.989744478615,0.0,0.0,41513.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,27675.333333333332,4,0,4_0,4_0 -660,3.0,3.0,42.0,111,21,41,0.0,10906,0.0,100139.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3317.297115452587,0.0,0.0,65930.0,1,2,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,43953.333333333336,5,0,5,5_0 -661,3.0,13.0,28.0,120,54,20,0.0,10908,0.0,50.0,280.0,0.0,2.0,5.0,1.0,3.0,1.8,2339.5632649769345,3380.0,0.0,45013.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25007.222222222223,4,0,4_0,4_1 -662,2.0,3.0,34.0,111,46,43,0.0,10909,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2951.319429827292,4094.0,0.0,42213.0,1,2,8,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,20101.42857142857,3,0,3_0,3_0 -663,7.0,7.0,40.0,111,33,10,0.0,1091,0.0,100.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1471.4220182549973,0.0,0.0,85290.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,35537.5,5,0,5,5_0 -664,0.0,0.0,86.0,400,77,70,0.0,10910,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3711.5944085827496,0.0,0.0,26132.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17421.333333333332,3,0,3_0,3_1 -665,11.0,11.0,58.0,300,62,71,0.0,10913,0.0,200.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1364.181195631442,2621.0,0.0,60454.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,30227.0,5,0,5,5_1 -666,0.0,0.0,44.0,111,34,10,0.0,10916,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2830.480756642922,4472.0,0.0,120960.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,60480.0,5,0,5,5_0 -667,0.0,0.0,79.0,400,77,71,0.0,10917,0.0,0.0,0.0,240.0,0.0,2.0,0.0,1.0,1.0,5214.126165518822,0.0,0.0,15540.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15540.0,2,0,2_0,2_1 -668,0.0,0.0,80.0,300,86,70,0.0,10918,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,989.7115202969957,0.0,0.0,10792.0,6,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10792.0,1,0,1_0,1_1 -669,12.0,12.0,57.0,112,62,50,0.0,1092,0.0,100.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1353.0348337587009,3966.0,0.0,30030.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20020.0,3,0,3_0,3_1 -670,0.0,0.0,85.0,221,77,71,0.0,10920,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,7610.841584286911,0.0,0.0,14522.0,5,1,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14522.0,2,0,2_0,2_0 -671,1.0,2.0,73.0,111,74,60,2.0,10922,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3375.4790277439147,0.0,10000.0,43666.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,43666.0,5,0,5,5_0 -672,0.0,0.0,68.0,111,75,50,0.0,10923,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2654.3443598065523,0.0,0.0,27177.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27177.0,4,0,4_0,4_0 -673,0.0,7.0,78.0,111,74,50,0.0,1093,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3619.4391695097956,3640.0,0.0,69129.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,46086.0,5,0,5,5_0 -674,6.0,11.0,40.0,120,62,71,0.0,10933,0.0,100.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3264.86453308709,0.0,0.0,8895.0,4,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,8895.0,1,0,1_0,1_1 -675,2.0,6.0,50.0,221,63,71,0.0,10934,0.0,0.0,0.0,300.0,2.0,3.0,0.0,2.0,1.5,5164.833105800399,3359.0,0.0,24002.0,1,3,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,16001.333333333334,2,0,2_0,2_0 -676,4.0,4.0,68.0,300,75,70,0.0,10935,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1997.7565181263683,1404.0,0.0,16879.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16879.0,2,0,2_0,2_1 -677,0.0,0.0,50.0,111,65,71,0.0,10936,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,8635.001174767924,0.0,0.0,21950.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21950.0,4,0,4_0,4_0 -678,7.0,9.0,55.0,112,52,50,0.0,10939,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1952.8118864609128,2080.0,0.0,7365.0,1,3,9,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,7365.0,1,0,1_1,1_0 -679,2.0,2.0,52.0,111,62,60,0.0,1094,0.0,350.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1456.8055419517561,5289.0,0.0,29481.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,14740.5,2,0,2_0,2_0 -680,1.0,10.0,64.0,112,78,71,0.0,10940,0.0,0.0,0.0,413.0,0.0,3.0,0.0,2.0,1.5,3787.0425904711333,0.0,0.0,37999.0,5,3,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25332.666666666668,4,0,4_0,4_1 -681,1.0,3.0,70.0,400,72,44,2.0,10941,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2468.2613327485765,3120.0,11000.0,32780.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,21853.333333333332,4,0,4_0,4_1 -682,6.0,6.0,85.0,111,75,70,0.0,10942,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2969.781489684833,0.0,0.0,40390.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26926.666666666668,4,0,4_0,4_0 -683,4.0,9.0,73.0,112,78,71,0.0,10943,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2516.0005197537776,0.0,0.0,10782.0,5,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,10782.0,1,0,1_0,1_0 -684,1.0,1.0,46.0,112,43,41,0.0,10944,0.0,300.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1834.41678793753,2603.0,0.0,45748.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22874.0,4,0,4_0,4_1 -685,4.0,15.0,47.0,112,52,50,0.0,10945,0.0,150.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,4811.7313547554495,1560.0,0.0,21449.0,1,1,4,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,11916.111111111111,1,0,1_0,1_1 -686,5.0,15.0,46.0,111,68,71,0.0,10946,0.0,50.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,3445.878768228691,6199.0,0.0,22118.0,1,1,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,11059.0,1,0,1_0,1_0 -687,7.0,8.0,34.0,111,37,10,0.0,10947,0.0,320.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2953.1890782274513,0.0,0.0,166965.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,79507.14285714286,5,0,5,5_0 -688,4.0,4.0,28.0,221,52,31,0.0,10948,0.0,265.0,0.0,395.0,1.0,2.0,0.0,1.0,1.0,5246.435961129945,0.0,0.0,16184.0,1,3,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16184.0,2,0,2_0,2_0 -689,9.0,10.0,50.0,111,62,71,0.0,1095,0.0,0.0,0.0,0.0,3.0,3.0,2.0,4.0,2.5,3781.992508657953,0.0,0.0,66164.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,26465.6,4,0,4_0,4_0 -690,0.0,7.0,25.0,111,56,50,0.0,10950,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2834.1370689405944,2808.0,0.0,10950.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,6083.333333333333,1,0,1_1,1_0 -691,14.0,14.0,53.0,111,65,50,0.0,10951,0.0,0.0,30.0,175.0,1.0,2.0,0.0,1.0,1.0,2261.454331024732,2132.0,0.0,20685.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,20685.0,3,0,3_0,3_0 -692,6.0,25.0,62.0,111,75,41,0.0,10952,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1777.7717191012496,0.0,0.0,10138.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,10138.0,1,0,1_0,1_0 -693,18.0,18.0,86.0,120,78,70,0.0,10953,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1747.1228717173876,2840.0,0.0,30150.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20100.0,3,0,3_0,3_0 -694,1.0,1.0,39.0,111,46,50,0.0,10955,0.0,1200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2805.7708873554993,5154.0,0.0,118812.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,51657.39130434783,5,0,5,5_0 -695,2.0,5.0,71.0,111,77,70,0.0,10956,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1716.8369051107632,0.0,0.0,17560.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17560.0,3,0,3_0,3_0 -696,4.0,4.0,35.0,112,31,10,0.0,10957,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2107.7137807617673,0.0,0.0,159339.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,75875.71428571428,5,0,5,5_1 -697,4.0,19.0,73.0,111,77,70,0.0,10958,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,1740.2614447554663,1829.0,0.0,25215.0,5,1,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16810.0,2,0,2_0,2_0 -698,4.0,13.0,40.0,112,47,71,0.0,1096,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2027.3239928248672,1561.0,0.0,44814.0,4,2,6,2.0,4,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,16005.000000000002,2,0,2_1,2_0 -699,3.0,7.0,37.0,111,63,50,0.0,10961,0.0,200.0,150.0,0.0,2.0,4.0,2.0,4.0,2.3,3106.259308561187,0.0,0.0,47920.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,20834.782608695652,3,0,3_0,3_0 -700,10.0,11.0,35.0,112,13,41,0.0,10962,0.0,40.0,0.0,327.0,1.0,3.0,0.0,1.0,1.0,3293.0041691965475,0.0,0.0,38307.0,1,3,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,38307.0,5,0,5,5_1 -701,0.0,0.0,66.0,221,86,71,0.0,10964,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2966.8757090480676,0.0,0.0,12736.0,5,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12736.0,2,0,2_1,2_0 -702,0.0,3.0,36.0,111,37,10,0.0,10965,0.0,170.0,300.0,595.0,2.0,3.0,0.0,2.0,1.5,2009.9097300903695,1040.0,0.0,62775.0,1,3,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,41850.0,5,0,5,5_0 -703,4.0,4.0,53.0,111,38,12,0.0,10966,0.0,120.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1063.2284361822822,1420.0,0.0,55200.0,1,1,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,22080.0,4,0,4_0,4_0 -704,1.0,1.0,39.0,111,46,31,1.0,10967,0.0,333.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2376.963472886911,3267.0,27163.0,41095.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,22830.555555555555,4,0,4_0,4_0 -705,3.0,10.0,26.0,111,38,12,0.0,1097,0.0,250.0,0.0,484.0,2.0,2.0,0.0,2.0,1.5,3667.1695872937375,0.0,0.0,43618.0,1,3,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,29078.666666666668,5,0,5,5_0 -706,0.0,0.0,31.0,111,37,12,0.0,10970,0.0,0.0,0.0,1170.0,1.0,3.0,0.0,1.0,1.0,4091.9389372771175,814.0,0.0,49388.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,49388.0,5,0,5,5_0 -707,0.0,31.0,35.0,112,85,41,0.0,10971,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,3172.678420039125,1821.0,0.0,13756.0,6,3,7,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,8597.5,1,0,1_1,1_1 -708,3.0,3.0,53.0,112,52,50,0.0,10972,0.0,300.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,966.1974492602634,2548.0,0.0,59752.0,1,2,8,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,39834.666666666664,5,0,5,5_0 -709,6.0,15.0,32.0,111,64,31,0.0,10974,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.1,2522.7351911515243,1560.0,0.0,30085.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14326.190476190475,2,0,2_0,2_0 -710,3.0,3.0,73.0,111,74,50,0.0,10977,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2716.45491718701,1723.0,0.0,38338.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38338.0,5,0,5,5_0 -711,1.0,1.0,63.0,111,74,50,0.0,10978,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2786.2933979375434,1562.0,0.0,45285.0,5,2,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,30190.0,5,0,5,5_0 -712,5.0,9.0,27.0,111,64,60,0.0,10979,0.0,0.0,0.0,360.0,1.0,3.0,2.0,4.0,2.1,3428.192805182154,1820.0,0.0,15560.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,7409.523809523809,1,0,1_1,1_0 -713,9.0,9.0,79.0,112,77,60,0.0,10982,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3054.5476604539267,0.0,0.0,22191.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14794.0,2,0,2_0,2_1 -714,2.0,10.0,31.0,112,47,43,0.0,10983,0.0,450.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2479.000279534961,3016.0,0.0,32140.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17855.555555555555,3,0,3_0,3_1 -715,17.0,17.0,51.0,111,47,31,0.0,10984,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1730.5895663094168,2077.0,0.0,35599.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,17799.5,3,0,3_0,3_0 -716,22.0,25.0,63.0,400,78,71,0.0,10985,0.0,26.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2711.511494637218,6916.0,0.0,22584.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15056.0,2,0,2_0,2_1 -717,5.0,7.0,42.0,111,67,71,0.0,10987,0.0,0.0,0.0,0.0,3.0,4.0,2.0,5.0,3.0,3178.7983616235056,2080.0,0.0,84350.0,1,2,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,28116.666666666668,4,0,4_0,4_0 -718,5.0,5.0,64.0,111,74,31,0.0,10988,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1993.0649361536944,0.0,0.0,60950.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,40633.333333333336,5,0,5,5_0 -719,5.0,9.0,48.0,120,62,50,0.0,10991,0.0,80.0,340.0,0.0,2.0,4.0,1.0,3.0,2.0,947.896596534522,7696.0,0.0,49354.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,24677.0,4,0,4_0,4_1 -720,2.0,6.0,39.0,111,63,50,0.0,10993,0.0,700.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2786.567203032988,0.0,0.0,35931.0,1,2,4,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23954.0,4,0,4_0,4_0 -721,7.0,12.0,55.0,112,64,50,0.0,10994,0.0,385.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1177.9780807276575,2340.0,0.0,31860.0,1,4,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21240.0,3,0,3_0,3_1 -722,4.0,9.0,41.0,221,62,50,0.0,10996,0.0,220.0,0.0,245.0,2.0,5.0,3.0,5.0,2.6,2483.235969183337,2080.0,0.0,34322.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,13200.76923076923,2,0,2_1,2_0 -723,0.0,0.0,67.0,111,77,60,0.0,10998,0.0,0.0,0.0,240.0,0.0,4.0,0.0,2.0,1.5,2395.2439561545284,0.0,0.0,16390.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10926.666666666666,1,0,1_1,1_0 -724,6.0,6.0,59.0,111,52,50,0.0,110,0.0,0.0,0.0,288.0,1.0,3.0,1.0,2.0,1.5,3172.530888680353,0.0,0.0,34482.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22988.0,4,0,4_0,4_0 -725,7.0,11.0,33.0,112,85,20,0.0,1100,0.0,0.0,0.0,350.0,0.0,3.0,1.0,2.0,1.3,2978.936332577601,0.0,0.0,6912.0,7,3,9,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,5316.923076923077,1,0,1_1,1_1 -726,1.0,4.0,50.0,300,13,41,0.0,11000,0.0,0.0,0.0,0.0,3.0,8.0,1.0,3.0,2.0,2290.4014142986057,1790.0,0.0,37982.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18991.0,3,0,3_0,3_1 -727,2.0,6.0,64.0,111,72,50,0.0,11001,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3231.4076570551383,0.0,0.0,28677.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19118.0,3,0,3_0,3_0 -728,7.0,7.0,54.0,112,55,50,0.0,11002,0.0,300.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1895.3885891733091,2331.0,0.0,71976.0,1,2,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,28790.4,4,0,4_0,4_1 -729,7.0,7.0,69.0,111,74,71,0.0,11003,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3767.131453774499,0.0,0.0,26450.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17633.333333333332,3,0,3_0,3_0 -730,0.0,18.0,36.0,112,53,42,0.0,11005,0.0,99999.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,1523.8149023738629,2340.0,0.0,37527.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,17870.0,3,0,3_1,3_1 -731,6.0,9.0,71.0,111,77,70,0.0,11008,0.0,0.0,0.0,326.0,0.0,4.0,0.0,2.0,1.5,2353.240027139176,2084.0,0.0,25853.0,5,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17235.333333333332,3,0,3_0,3_0 -732,13.0,13.0,79.0,111,78,71,0.0,11009,0.0,0.0,0.0,424.0,0.0,3.0,0.0,2.0,1.5,7393.867981918686,0.0,0.0,23117.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15411.333333333334,2,0,2_0,2_0 -733,6.0,10.0,71.0,112,78,70,0.0,1101,0.0,0.0,330.0,0.0,1.0,5.0,0.0,2.0,1.5,1443.981257514862,2080.0,0.0,26857.0,5,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17904.666666666668,3,0,3_0,3_1 -734,1.0,15.0,30.0,111,62,50,2.0,11010,0.0,450.0,0.0,480.0,2.0,3.0,0.0,2.0,1.5,2595.811553685942,3121.0,2000.0,22587.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15058.0,2,0,2_0,2_0 -735,5.0,10.0,30.0,112,42,20,0.0,11014,0.0,600.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2435.7778182072634,5148.0,0.0,41119.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,19580.47619047619,3,0,3_1,3_1 -736,16.0,16.0,56.0,111,52,50,0.0,11015,0.0,0.0,120.0,0.0,2.0,4.0,0.0,2.0,1.5,1631.4607950876975,1978.0,0.0,35440.0,1,1,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23626.666666666668,4,0,4_0,4_0 -737,3.0,7.0,45.0,112,47,42,0.0,11016,0.0,212.0,80.0,0.0,3.0,10.0,5.0,7.0,3.8,1029.8842434672,6760.0,0.0,78067.0,1,2,9,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,20543.947368421053,3,0,3_0,3_1 -738,3.0,9.0,43.0,112,46,60,0.0,11018,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3164.3172778871503,2860.0,0.0,17598.0,1,2,7,2.0,4,2.0,1.0,0.0,0,1,0,0,0,1,0.0,2.0,8380.0,1,0,1_1,1_0 -739,0.0,0.0,40.0,111,54,50,0.0,11019,0.0,0.0,0.0,164.0,1.0,3.0,0.0,1.0,1.0,2878.8367227096455,0.0,0.0,15120.0,4,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15120.0,2,0,2_1,2_0 -740,3.0,3.0,63.0,111,74,20,0.0,1102,0.0,20.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1048.1620424264943,2093.0,0.0,156327.0,5,1,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,104218.0,5,0,5,5_0 -741,5.0,5.0,60.0,111,77,50,0.0,11025,0.0,0.0,20.0,0.0,1.0,4.0,1.0,3.0,2.0,2326.5179069879355,1310.0,0.0,53908.0,5,3,8,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,26954.0,4,0,4_0,4_0 -742,2.0,2.0,52.0,111,43,20,0.0,11027,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2716.802510363781,2080.0,0.0,25010.0,7,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16673.333333333332,2,0,2_0,2_0 -743,26.0,26.0,88.0,112,75,60,0.0,11029,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2186.5512022851344,0.0,0.0,50807.0,5,1,10,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,33871.333333333336,5,0,5,5_0 -744,0.0,0.0,25.0,111,46,10,0.0,1103,0.0,0.0,0.0,106.0,1.0,1.0,0.0,1.0,1.0,3295.4170902276237,0.0,0.0,13017.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13017.0,2,0,2_1,2_0 -745,5.0,5.0,72.0,112,78,50,0.0,11031,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1300.647909805874,0.0,0.0,26547.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17698.0,3,0,3_0,3_0 -746,0.0,0.0,66.0,111,77,50,0.0,11033,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2952.7307597273893,0.0,0.0,24525.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24525.0,4,0,4_0,4_0 -747,0.0,0.0,67.0,111,86,71,0.0,11034,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3878.192466900308,0.0,0.0,17652.0,7,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17652.0,3,0,3_0,3_0 -748,0.0,15.0,44.0,111,47,60,0.0,11035,0.0,0.0,500.0,0.0,1.0,6.0,0.0,1.0,1.0,2658.5789725263508,2977.0,0.0,32998.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,32998.0,5,0,5,5_0 -749,5.0,5.0,76.0,111,74,50,0.0,11036,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1237.62775721484,3775.0,0.0,44941.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,29960.666666666668,5,0,5,5_0 -750,0.0,0.0,82.0,112,86,70,0.0,11037,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2128.7939044631253,0.0,0.0,16168.0,6,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16168.0,2,0,2_0,2_1 -751,1.0,1.0,77.0,111,77,50,1.0,11039,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1424.6670598137462,0.0,12000.0,25638.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17092.0,3,0,3_0,3_0 -752,6.0,25.0,61.0,111,78,70,0.0,1104,0.0,0.0,5000.0,0.0,0.0,3.0,0.0,1.0,1.0,2902.501932219289,0.0,0.0,10142.0,4,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,10142.0,1,0,1_1,1_0 -753,7.0,7.0,72.0,111,75,41,0.0,11041,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2840.7668547832836,2652.0,0.0,33945.0,5,4,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22630.0,4,0,4_0,4_0 -754,3.0,5.0,38.0,112,52,50,0.0,11043,0.0,500.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,5803.48429808007,4524.0,0.0,54880.0,1,2,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21107.69230769231,3,0,3_0,3_0 -755,0.0,3.0,41.0,111,37,12,0.0,11044,0.0,230.0,0.0,0.0,2.0,8.0,3.0,5.0,2.4,1435.5476705720475,0.0,0.0,88573.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,36905.41666666667,5,0,5,5_0 -756,4.0,17.0,53.0,112,62,71,0.0,11045,0.0,120.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2251.7719136575784,976.0,0.0,27610.0,1,3,9,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18406.666666666668,3,0,3_0,3_0 -757,4.0,10.0,30.0,111,43,10,0.0,11046,0.0,420.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2812.868279771188,3026.0,0.0,16501.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,16501.0,2,0,2_1,2_0 -758,2.0,17.0,31.0,111,67,43,0.0,11047,0.0,0.0,0.0,380.0,1.0,2.0,0.0,1.0,1.0,3633.6983429441666,0.0,0.0,14401.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14401.0,2,0,2_0,2_0 -759,0.0,0.0,80.0,111,71,70,0.0,11048,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2617.206997632791,0.0,0.0,16969.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16969.0,3,0,3_0,3_0 -760,6.0,6.0,63.0,111,75,70,0.0,11049,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3765.94005582078,0.0,0.0,32735.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32735.0,5,0,5,5_0 -761,5.0,10.0,50.0,400,67,71,0.0,1105,0.0,500.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2527.4157014260086,5070.0,0.0,41516.0,1,4,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,20758.0,3,0,3_0,3_1 -762,1.0,2.0,34.0,221,46,31,2.0,11050,0.0,300.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2207.966685184279,2830.0,25000.0,42842.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,23801.11111111111,4,0,4_0,4_0 -763,0.0,0.0,61.0,111,77,70,0.0,11051,0.0,0.0,0.0,249.0,0.0,2.0,0.0,1.0,1.0,2834.591318090683,0.0,0.0,18748.0,5,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18748.0,3,0,3_0,3_0 -764,6.0,9.0,56.0,111,46,50,0.0,11053,0.0,0.0,150.0,0.0,2.0,4.0,0.0,2.0,1.5,1041.4015835699397,0.0,0.0,26350.0,1,3,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17566.666666666668,3,0,3_0,3_0 -765,6.0,6.0,57.0,111,31,10,0.0,11054,0.0,150.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2649.259598003095,0.0,0.0,86980.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,43490.0,5,0,5,5_0 -766,16.0,16.0,42.0,300,42,20,0.0,11055,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1254.3045822367087,5039.0,0.0,41935.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19969.04761904762,3,0,3_0,3_1 -767,8.0,8.0,79.0,112,75,41,0.0,11056,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,5585.5847727951705,0.0,0.0,18860.0,5,1,8,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,12573.333333333334,2,0,2_0,2_0 -768,3.0,7.0,39.0,112,55,71,0.0,11057,0.0,450.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2854.928831902979,0.0,0.0,37994.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,15830.833333333334,2,0,2_1,2_1 -769,3.0,3.0,50.0,112,48,10,0.0,11058,0.0,220.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2022.4655142690528,0.0,0.0,55294.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,30718.888888888887,5,0,5,5_1 -770,4.0,7.0,60.0,112,75,41,0.0,1106,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2856.39751613317,0.0,0.0,57195.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,38130.0,5,0,5,5_1 -771,7.0,8.0,28.0,111,46,31,0.0,11060,0.0,0.0,90.0,603.0,2.0,3.0,0.0,2.0,1.5,3116.266674973828,0.0,0.0,63924.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,42616.0,5,0,5,5_0 -772,2.0,2.0,62.0,111,56,70,0.0,11061,0.0,0.0,0.0,165.0,1.0,2.0,0.0,1.0,1.0,2516.749021234986,1208.0,0.0,9692.0,1,3,7,5.0,1,1.0,1.0,0.0,0,0,1,0,0,1,0.0,0.0,9692.0,1,0,1_1,1_0 -773,1.0,10.0,57.0,112,67,70,2.0,11062,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2129.869180474903,2361.0,2200.0,20130.0,1,1,5,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,13420.0,2,0,2_0,2_1 -774,19.0,24.0,74.0,111,77,50,0.0,11065,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2687.3526375211527,0.0,0.0,16939.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16939.0,3,0,3_0,3_0 -775,5.0,5.0,40.0,111,47,44,0.0,11066,0.0,0.0,20.0,0.0,2.0,5.0,2.0,4.0,2.1,2414.328510749927,0.0,0.0,71200.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,33904.7619047619,5,0,5,5_0 -776,6.0,12.0,84.0,300,71,71,0.0,11067,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2139.1790751354206,1592.0,0.0,10210.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10210.0,1,0,1_0,1_1 -777,0.0,7.0,23.0,111,68,43,0.0,11068,0.0,200.0,0.0,189.0,2.0,2.0,0.0,2.0,1.5,3188.103618819134,0.0,0.0,18088.0,1,3,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,12058.666666666666,1,0,1_1,1_0 -778,0.0,0.0,45.0,111,55,50,0.0,11069,0.0,0.0,0.0,195.0,1.0,1.0,1.0,2.0,1.3,3444.3355808816173,0.0,0.0,12617.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9705.384615384615,1,0,1_1,1_0 -779,2.0,2.0,53.0,112,62,71,0.0,1107,0.0,120.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2953.1955911124064,3849.0,0.0,36334.0,1,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18167.0,3,0,3_0,3_1 -780,0.0,1.0,72.0,111,75,71,0.0,11070,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3184.96154503059,2849.0,0.0,24641.0,5,4,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16427.333333333332,2,0,2_0,2_0 -781,16.0,16.0,59.0,111,77,70,0.0,11073,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1340.0525350308621,2080.0,0.0,17492.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,11661.333333333334,1,0,1_0,1_0 -782,6.0,6.0,65.0,111,78,71,0.0,11074,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2440.7362034367343,2184.0,0.0,27136.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18090.666666666668,3,0,3_0,3_0 -783,5.0,5.0,59.0,111,52,50,0.0,11075,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1566.5332252208427,0.0,0.0,27438.0,1,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27438.0,4,0,4_0,4_0 -784,3.0,3.0,75.0,112,72,50,0.0,11076,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3106.1299349197243,3207.0,0.0,68165.0,5,1,10,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,68165.0,5,0,5,5_0 -785,12.0,17.0,54.0,111,64,70,0.0,11077,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1702.2150327037543,2340.0,0.0,78050.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,39025.0,5,0,5,5_0 -786,1.0,1.0,58.0,111,47,50,0.0,11079,0.0,200.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1266.351067501147,2081.0,0.0,49174.0,1,1,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,32782.666666666664,5,0,5,5_0 -787,5.0,7.0,33.0,111,38,12,0.0,1108,0.0,300.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1824.3625183715344,2704.0,0.0,133457.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,55607.083333333336,5,0,5,5_0 -788,0.0,0.0,30.0,111,85,50,0.0,11080,0.0,0.0,0.0,300.0,0.0,2.0,0.0,1.0,1.0,2912.1264084626478,0.0,0.0,9234.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9234.0,1,0,1_0,1_0 -789,6.0,17.0,76.0,221,77,71,0.0,11081,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2889.588834736759,1274.0,0.0,9760.0,5,4,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,9760.0,1,0,1_0,1_0 -790,0.0,0.0,26.0,111,34,10,0.0,11082,0.0,0.0,0.0,500.0,1.0,3.0,0.0,1.0,1.0,4157.90861913154,0.0,0.0,18925.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18925.0,3,0,3_0,3_0 -791,0.0,3.0,27.0,221,63,50,2.0,11087,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1646.6187055018122,1561.0,17000.0,31300.0,1,2,1,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,14904.761904761905,2,0,2_1,2_0 -792,0.0,0.0,44.0,111,68,50,0.0,11088,0.0,0.0,0.0,56.0,1.0,3.0,0.0,1.0,1.0,1683.9844602745661,0.0,0.0,8190.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8190.0,1,0,1_1,1_0 -793,0.0,0.0,50.0,111,52,71,0.0,1109,0.0,0.0,0.0,7.0,2.0,5.0,4.0,5.0,2.8,3011.3392604868072,0.0,0.0,37808.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13502.857142857143,2,0,2_1,2_0 -794,9.0,16.0,49.0,400,54,60,0.0,11090,0.0,105.0,0.0,0.0,2.0,6.0,1.0,2.0,1.5,2290.740759634787,0.0,0.0,22399.0,1,1,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14932.666666666666,2,0,2_0,2_1 -795,3.0,9.0,66.0,120,75,43,0.0,11093,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2485.929395899904,5050.0,0.0,33419.0,5,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,33419.0,5,0,5,5_1 -796,2.0,12.0,28.0,111,65,50,0.0,11094,0.0,850.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2753.8806621399617,0.0,0.0,30927.0,1,2,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20618.0,3,0,3_0,3_0 -797,0.0,0.0,48.0,111,68,71,0.0,11095,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2007.7529286810473,0.0,0.0,27730.0,4,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9903.57142857143,1,0,1_1,1_0 -798,0.0,0.0,59.0,111,56,50,0.0,11096,0.0,0.0,0.0,21.0,1.0,2.0,0.0,1.0,1.0,2560.9679628577665,0.0,0.0,8224.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8224.0,1,0,1_1,1_0 -799,6.0,6.0,66.0,111,75,41,0.0,11098,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2053.6414444615093,0.0,0.0,76374.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,50916.0,5,0,5,5_0 -800,0.0,0.0,29.0,221,68,71,0.0,11099,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,8707.716037413975,0.0,0.0,11474.0,1,3,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11474.0,1,0,1_1,1_0 -801,8.0,8.0,61.0,111,54,20,0.0,111,0.0,0.0,400.0,224.0,1.0,2.0,0.0,1.0,1.0,2898.880860698972,1040.0,0.0,26263.0,1,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,26263.0,4,0,4_1,4_0 -802,6.0,11.0,68.0,111,43,31,0.0,11101,0.0,0.0,550.0,0.0,2.0,5.0,0.0,2.0,1.5,2082.608869639719,0.0,0.0,51364.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,34242.666666666664,5,0,5,5_0 -803,6.0,14.0,53.0,111,63,71,0.0,11102,0.0,0.0,20.0,251.0,1.0,3.0,0.0,1.0,1.0,5860.057315772012,0.0,0.0,24600.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,24600.0,4,0,4_0,4_0 -804,3.0,18.0,65.0,111,54,12,0.0,11103,0.0,0.0,350.0,406.0,3.0,4.0,1.0,3.0,2.0,2321.824034714431,0.0,0.0,39826.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,19913.0,3,0,3_0,3_0 -805,0.0,0.0,87.0,120,71,70,0.0,11106,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2179.915479962081,0.0,0.0,6541.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,6541.0,1,0,1_0,1_1 -806,8.0,14.0,82.0,400,71,70,0.0,11107,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2425.6441507002423,2809.0,0.0,8990.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8990.0,1,0,1_0,1_1 -807,0.0,15.0,32.0,221,63,43,0.0,11108,0.0,224.0,8.0,0.0,2.0,3.0,1.0,3.0,1.8,2390.18266710534,1841.0,0.0,28083.0,1,3,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,15601.666666666666,2,0,2_0,2_0 -808,4.0,13.0,29.0,120,62,50,0.0,1111,0.0,200.0,0.0,465.0,1.0,4.0,2.0,4.0,2.1,1935.165056184157,4992.0,0.0,34009.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16194.761904761905,2,0,2_0,2_1 -809,7.0,8.0,64.0,111,52,42,0.0,11112,0.0,0.0,0.0,480.0,1.0,1.0,0.0,1.0,1.0,4053.8398995376574,3693.0,0.0,29919.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,29919.0,5,0,5,5_0 -810,0.0,0.0,25.0,111,56,50,0.0,11114,0.0,0.0,0.0,45.0,1.0,2.0,0.0,1.0,1.0,2501.2319839683028,0.0,0.0,2790.0,4,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2790.0,1,0,1_1,1_0 -811,8.0,8.0,71.0,111,75,60,0.0,11116,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3188.112071697195,2262.0,0.0,19387.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19387.0,3,0,3_0,3_0 -812,0.0,0.0,34.0,111,85,41,0.0,11117,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3026.8347850019977,0.0,0.0,12886.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12886.0,2,0,2_1,2_0 -813,3.0,3.0,71.0,112,78,50,0.0,1112,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2722.891419207093,0.0,0.0,30797.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20531.333333333332,3,0,3_0,3_1 -814,4.0,7.0,49.0,112,54,50,0.0,11120,0.0,257.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,3193.566953723514,0.0,0.0,49073.0,1,3,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24536.5,4,0,4_0,4_0 -815,4.0,16.0,44.0,111,64,71,0.0,11121,0.0,0.0,340.0,0.0,1.0,2.0,0.0,1.0,1.0,4308.478412959327,4576.0,0.0,15310.0,1,4,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,15310.0,2,0,2_0,2_0 -816,2.0,7.0,49.0,111,67,71,0.0,11122,0.0,400.0,0.0,364.0,2.0,3.0,2.0,4.0,2.1,3086.75718614272,3120.0,0.0,31660.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15076.190476190475,2,0,2_0,2_0 -817,2.0,4.0,54.0,111,38,10,0.0,11124,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1141.9517034372868,0.0,0.0,134429.0,1,1,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,67214.5,5,0,5,5_0 -818,5.0,5.0,59.0,221,78,70,0.0,11125,0.0,620.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1685.098675920469,4680.0,0.0,55025.0,5,1,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,27512.5,4,0,4_0,4_0 -819,7.0,20.0,65.0,111,77,50,0.0,11126,0.0,0.0,0.0,274.0,0.0,3.0,0.0,1.0,1.0,1682.6339868400205,2864.0,0.0,14543.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14543.0,2,0,2_0,2_0 -820,16.0,16.0,79.0,111,78,50,0.0,11127,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3162.579301808261,771.0,0.0,19999.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13332.666666666666,2,0,2_0,2_0 -821,4.0,4.0,50.0,111,37,50,0.0,1113,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2743.263111888491,2867.0,0.0,49278.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27376.666666666664,4,0,4_0,4_0 -822,4.0,17.0,37.0,111,85,50,0.0,11130,0.0,0.0,0.0,206.0,0.0,3.0,1.0,3.0,1.8,2506.8852750739347,2080.0,0.0,13390.0,4,3,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,7438.888888888889,1,0,1_1,1_0 -823,2.0,25.0,47.0,112,62,50,0.0,11131,0.0,140.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2694.0853168286826,4420.0,0.0,42194.0,1,1,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18345.217391304348,3,0,3_0,3_1 -824,17.0,17.0,75.0,111,75,41,0.0,11132,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2960.716275535163,0.0,0.0,32230.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,32230.0,5,0,5,5_0 -825,0.0,0.0,86.0,111,72,70,0.0,11135,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2037.9400860231522,0.0,0.0,21390.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14260.0,2,0,2_0,2_0 -826,2.0,5.0,69.0,112,77,50,2.0,11136,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1131.8819519789438,3273.0,7500.0,30765.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20510.0,3,0,3_0,3_1 -827,0.0,0.0,60.0,111,78,70,0.0,11137,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2878.0733172196974,0.0,0.0,14971.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14971.0,2,0,2_0,2_0 -828,3.0,3.0,50.0,111,43,10,0.0,11138,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,1809.3485807761733,0.0,0.0,42624.0,1,3,8,6.0,2,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,23680.0,4,0,4_0,4_0 -829,0.0,0.0,37.0,111,53,41,0.0,1114,0.0,0.0,0.0,315.0,1.0,4.0,0.0,1.0,1.0,3067.0921257477858,0.0,0.0,25661.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25661.0,4,0,4_0,4_0 -830,12.0,12.0,69.0,300,78,70,0.0,11140,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1957.254787101047,2080.0,0.0,16520.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16520.0,2,0,2_0,2_1 -831,0.0,17.0,49.0,111,38,31,0.0,11141,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2877.827296044359,2860.0,0.0,44464.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,22232.0,4,0,4_0,4_0 -832,0.0,8.0,34.0,120,68,71,0.0,11142,0.0,110.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,3460.524163019692,0.0,0.0,28362.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,11817.5,1,0,1_1,1_1 -833,5.0,25.0,63.0,221,74,12,0.0,11143,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1562.1823025237495,2539.0,0.0,76266.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,50844.0,5,0,5,5_0 -834,0.0,21.0,78.0,400,71,70,0.0,11144,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2607.80885569946,0.0,0.0,11820.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11820.0,1,0,1_0,1_1 -835,1.0,17.0,28.0,300,63,50,2.0,11145,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1792.8735644353262,4681.0,1880.0,31730.0,1,3,0,0.0,3,3.0,1.0,0.0,1,0,0,0,0,0,1.0,2.0,21153.333333333332,3,0,3_0,3_1 -836,17.0,17.0,80.0,112,75,71,0.0,11148,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3011.3245242495295,0.0,0.0,23841.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15894.0,2,0,2_0,2_0 -837,0.0,15.0,46.0,111,67,60,0.0,1115,0.0,0.0,0.0,0.0,2.0,5.0,1.0,2.0,1.5,3171.833039140813,1820.0,0.0,11780.0,1,2,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,7853.333333333333,1,0,1_0,1_0 -838,5.0,5.0,74.0,111,74,70,0.0,11150,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1380.3112779034989,2935.0,0.0,65087.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,43391.333333333336,5,0,5,5_0 -839,3.0,25.0,36.0,111,21,50,0.0,11151,0.0,0.0,0.0,405.0,1.0,3.0,1.0,2.0,1.3,3513.7467759242054,0.0,0.0,290.0,4,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,223.07692307692307,1,0,1_0,1_0 -840,3.0,3.0,34.0,211,46,41,0.0,11153,0.0,550.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2165.7898810198994,1820.0,0.0,50587.0,1,2,1,3.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,28103.888888888887,4,0,4_0,4_0 -841,15.0,15.0,75.0,111,78,70,0.0,11155,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2718.271306321586,2757.0,0.0,21248.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21248.0,3,0,3_0,3_0 -842,1.0,13.0,49.0,111,43,71,2.0,11157,0.0,0.0,80.0,0.0,1.0,6.0,3.0,6.0,3.3,1775.8891860236447,0.0,300.0,50622.0,1,3,8,7.0,5,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,15340.0,2,0,2_1,2_0 -843,4.0,4.0,84.0,221,74,20,0.0,11159,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2353.348429388337,0.0,0.0,28060.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18706.666666666668,3,0,3_0,3_0 -844,9.0,9.0,76.0,111,71,71,0.0,1116,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3212.31888395525,2444.0,0.0,36028.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36028.0,5,0,5,5_0 -845,7.0,7.0,34.0,111,33,10,0.0,11162,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2879.6372324852823,0.0,0.0,37338.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,37338.0,5,0,5,5_0 -846,0.0,0.0,49.0,112,22,42,1.0,11163,0.0,120.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2745.8331409546768,3758.0,53000.0,290365.0,1,1,7,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,290365.0,5,0,5,5_1 -847,11.0,11.0,57.0,111,64,70,0.0,11164,0.0,0.0,20.0,0.0,2.0,2.0,0.0,2.0,1.5,1840.0105034685016,1092.0,0.0,33204.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22136.0,4,0,4_0,4_0 -848,0.0,0.0,79.0,111,86,71,0.0,11167,0.0,0.0,0.0,722.0,0.0,3.0,0.0,1.0,1.0,4652.958675220868,0.0,0.0,14664.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14664.0,2,0,2_0,2_0 -849,9.0,11.0,58.0,300,67,71,0.0,11168,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2147.8927258121507,3640.0,0.0,31410.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20940.0,3,0,3_0,3_1 -850,0.0,14.0,49.0,111,43,20,0.0,11169,0.0,140.0,0.0,454.0,1.0,2.0,0.0,1.0,1.0,2892.2284576272505,2600.0,0.0,47168.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,47168.0,5,0,5,5_0 -851,17.0,17.0,69.0,111,74,20,0.0,11174,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2665.433316896533,1560.0,0.0,86270.0,5,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,43135.0,5,0,5,5_0 -852,5.0,9.0,54.0,400,62,71,0.0,11175,0.0,75.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,4872.959342588225,1040.0,0.0,36710.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,1,0.0,2.0,15960.869565217392,2,0,2_1,2_1 -853,0.0,0.0,81.0,111,77,71,0.0,11176,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3533.921008749275,0.0,0.0,14800.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14800.0,2,0,2_0,2_0 -854,0.0,0.0,74.0,111,77,60,0.0,11177,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3272.2429475404074,0.0,0.0,16545.0,5,4,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16545.0,2,0,2_0,2_0 -855,2.0,5.0,57.0,112,75,50,0.0,11178,0.0,180.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1345.8392753044361,2601.0,0.0,38902.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,25934.666666666668,4,0,4_0,4_0 -856,2.0,4.0,43.0,112,47,42,0.0,11179,0.0,560.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,3878.838006422582,2654.0,0.0,50844.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28246.666666666664,4,0,4_0,4_1 -857,18.0,20.0,78.0,120,71,71,0.0,1118,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2528.586722872758,0.0,0.0,16200.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,10800.0,1,0,1_1,1_1 -858,4.0,4.0,42.0,111,34,20,0.0,11182,0.0,300.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1415.108971520642,0.0,0.0,63400.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,26416.666666666668,4,0,4_0,4_0 -859,13.0,13.0,70.0,112,71,50,0.0,11183,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1636.8374925941896,0.0,0.0,13960.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9306.666666666666,1,0,1_0,1_1 -860,10.0,16.0,50.0,211,63,50,0.0,11184,0.0,99999.0,80.0,0.0,2.0,3.0,2.0,4.0,2.5,851.6934498021942,6149.0,0.0,47700.0,1,2,3,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,19080.0,3,0,3_0,3_0 -861,4.0,4.0,32.0,111,37,20,0.0,11185,0.0,100.0,0.0,684.0,1.0,2.0,0.0,1.0,1.0,3816.133349586524,520.0,0.0,28842.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28842.0,4,0,4_0,4_0 -862,8.0,11.0,48.0,112,56,60,0.0,11186,0.0,500.0,500.0,0.0,2.0,6.0,2.0,4.0,2.3,1798.655074715425,5741.0,0.0,30829.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13403.913043478262,2,0,2_0,2_1 -863,8.0,8.0,27.0,112,64,71,0.0,11187,0.0,400.0,300.0,0.0,2.0,5.0,1.0,3.0,1.8,3539.597885368317,9199.0,0.0,35399.0,1,4,10,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19666.11111111111,3,0,3_0,3_0 -864,4.0,9.0,57.0,221,68,71,0.0,11189,0.0,0.0,0.0,125.0,1.0,2.0,0.0,1.0,1.0,4061.8357580924912,1820.0,0.0,7540.0,4,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,7540.0,1,0,1_1,1_0 -865,4.0,17.0,44.0,300,63,50,0.0,1119,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2882.3073247013763,2081.0,0.0,26390.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11473.913043478262,1,0,1_0,1_1 -866,1.0,10.0,29.0,111,34,10,2.0,11191,0.0,0.0,0.0,685.0,2.0,2.0,0.0,2.0,1.5,3464.7552860063556,0.0,2000.0,47318.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,31545.333333333332,5,0,5,5_0 -867,4.0,7.0,25.0,400,42,20,0.0,11192,0.0,700.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5331.456180945429,2080.0,0.0,45753.0,1,3,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,45753.0,5,0,5,5_1 -868,9.0,9.0,52.0,112,21,50,0.0,11193,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1516.3113154463042,5382.0,0.0,43743.0,1,1,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,17497.2,3,0,3_0,3_0 -869,3.0,6.0,30.0,111,37,20,0.0,11195,0.0,0.0,99999.0,0.0,2.0,3.0,2.0,4.0,2.1,2410.082835812549,0.0,0.0,58354.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,27787.619047619046,4,0,4_0,4_0 -870,8.0,18.0,29.0,111,85,71,0.0,11196,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3756.0911355983685,0.0,0.0,11870.0,7,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11870.0,1,0,1_1,1_0 -871,0.0,0.0,76.0,111,78,71,0.0,112,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3115.8559626528327,0.0,0.0,21280.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14186.666666666666,2,0,2_0,2_0 -872,3.0,11.0,37.0,300,54,31,0.0,11201,0.0,250.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2374.00073104376,1560.0,0.0,18560.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10311.111111111111,1,0,1_0,1_1 -873,11.0,13.0,63.0,300,75,50,0.0,11202,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1944.015990881671,0.0,0.0,15324.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15324.0,2,0,2_0,2_1 -874,6.0,6.0,69.0,111,78,70,0.0,11203,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1749.0287656946698,915.0,0.0,22757.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15171.333333333334,2,0,2_0,2_0 -875,6.0,18.0,53.0,120,69,71,0.0,11205,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3762.9607294820607,0.0,0.0,14108.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14108.0,2,0,2_0,2_1 -876,3.0,3.0,64.0,300,75,71,0.0,11206,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3064.5004980331178,2207.0,0.0,18034.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18034.0,3,0,3_0,3_1 -877,4.0,10.0,37.0,111,48,42,0.0,11207,0.0,0.0,100.0,205.0,2.0,3.0,2.0,4.0,2.1,2878.8032346042,2080.0,0.0,37170.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,17700.0,3,0,3_1,3_0 -878,1.0,1.0,67.0,111,74,12,1.0,11208,0.0,0.0,120.0,0.0,1.0,6.0,0.0,2.0,1.5,1280.7707993623485,2812.0,12000.0,159408.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,106272.0,5,0,5,5_0 -879,11.0,19.0,50.0,111,42,50,0.0,11209,0.0,0.0,300.0,0.0,1.0,5.0,2.0,4.0,2.3,1837.2296321407384,3098.0,0.0,47144.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,20497.391304347828,3,0,3_0,3_0 -880,1.0,8.0,48.0,111,34,20,2.0,11210,0.0,550.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,8602.254447259797,2985.0,7250.0,36763.0,1,1,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,15983.913043478262,2,0,2_0,2_0 -881,2.0,2.0,64.0,111,74,10,0.0,11211,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2128.1760635487744,0.0,0.0,46181.0,5,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,30787.333333333332,5,0,5,5_0 -882,2.0,4.0,30.0,111,68,50,0.0,11212,0.0,120.0,0.0,436.0,2.0,3.0,1.0,3.0,1.8,2598.906776691298,0.0,0.0,47493.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,26385.0,4,0,4_0,4_0 -883,14.0,15.0,80.0,112,72,50,0.0,11214,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1262.3462825849913,4160.0,0.0,27399.0,5,1,10,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18266.0,3,0,3_0,3_0 -884,0.0,16.0,45.0,120,64,50,0.0,11216,0.0,120.0,320.0,0.0,3.0,5.0,3.0,5.0,3.0,1823.7639805712329,5200.0,0.0,46580.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15526.666666666666,2,0,2_0,2_1 -885,2.0,11.0,29.0,111,54,20,0.0,11217,0.0,0.0,0.0,60.0,1.0,3.0,0.0,1.0,1.0,2082.6205818500857,0.0,0.0,5670.0,4,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,5670.0,1,0,1_1,1_0 -886,0.0,14.0,39.0,111,67,50,0.0,11218,0.0,0.0,120.0,0.0,1.0,4.0,0.0,1.0,1.0,2503.677682908654,0.0,0.0,24862.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24862.0,4,0,4_0,4_0 -887,6.0,13.0,41.0,400,67,50,0.0,1122,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1915.904277062569,1794.0,0.0,16190.0,1,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10793.333333333334,1,0,1_0,1_1 -888,1.0,1.0,44.0,111,38,31,1.0,11220,0.0,99999.0,0.0,0.0,1.0,6.0,2.0,4.0,2.3,2667.0466732016143,0.0,50600.0,31661.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,13765.652173913044,2,0,2_0,2_0 -889,3.0,9.0,36.0,111,47,50,0.0,11221,0.0,270.0,0.0,276.0,2.0,3.0,2.0,4.0,2.1,3669.193143990143,1040.0,0.0,30663.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14601.42857142857,2,0,2_1,2_0 -890,14.0,14.0,82.0,112,72,60,0.0,11223,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,5908.603179956206,2496.0,0.0,32090.0,5,1,8,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,21393.333333333332,3,0,3_0,3_1 -891,8.0,11.0,61.0,111,75,20,0.0,11224,0.0,0.0,0.0,628.0,0.0,3.0,0.0,2.0,1.5,2211.802099630097,0.0,0.0,27346.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18230.666666666668,3,0,3_0,3_0 -892,0.0,0.0,71.0,111,78,50,0.0,11225,0.0,0.0,0.0,50.0,0.0,1.0,0.0,1.0,1.0,3088.168118592477,0.0,0.0,9593.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9593.0,1,0,1_1,1_0 -893,0.0,0.0,45.0,111,68,50,0.0,11226,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2154.9970393557883,0.0,0.0,13115.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13115.0,2,0,2_1,2_0 -894,2.0,3.0,72.0,400,74,10,0.0,11228,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1535.0069770901248,2097.0,0.0,23158.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15438.666666666666,2,0,2_0,2_1 -895,1.0,3.0,49.0,221,47,42,2.0,1123,0.0,99999.0,70.0,0.0,2.0,5.0,2.0,4.0,2.5,4480.480161010403,8165.0,26300.0,78376.0,1,2,1,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,31350.4,5,0,5,5_0 -896,0.0,11.0,25.0,300,42,31,0.0,11230,0.0,250.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3086.436882497447,0.0,0.0,10557.0,4,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10557.0,1,0,1_0,1_1 -897,5.0,5.0,48.0,112,67,50,0.0,11231,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2909.537254073066,2173.0,0.0,22182.0,1,2,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22182.0,4,0,4_0,4_0 -898,3.0,3.0,38.0,111,62,50,0.0,11234,0.0,305.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,4819.648281779074,0.0,0.0,34006.0,1,2,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,16193.333333333332,2,0,2_0,2_0 -899,1.0,16.0,56.0,111,52,70,2.0,11235,0.0,100.0,0.0,356.0,2.0,4.0,0.0,2.0,1.5,1934.3036441546967,6240.0,5000.0,39530.0,1,3,6,5.0,3,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,26353.333333333332,4,0,4_0,4_0 -900,13.0,13.0,57.0,111,43,60,0.0,11237,0.0,250.0,30.0,0.0,2.0,6.0,0.0,2.0,1.5,2610.550782811515,3640.0,0.0,76174.0,1,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,50782.666666666664,5,0,5,5_0 -901,9.0,9.0,52.0,111,34,20,0.0,11238,0.0,0.0,0.0,552.0,2.0,3.0,1.0,3.0,2.0,2417.0832788255384,0.0,0.0,31430.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,15715.0,2,0,2_0,2_0 -902,3.0,13.0,66.0,111,78,50,0.0,11239,0.0,0.0,0.0,250.0,0.0,3.0,0.0,2.0,1.5,2274.172356945734,3283.0,0.0,32376.0,5,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,21584.0,3,0,3_0,3_0 -903,0.0,0.0,85.0,221,77,50,0.0,1124,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2253.6203004312115,0.0,0.0,21027.0,5,1,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21027.0,3,0,3_0,3_0 -904,0.0,2.0,37.0,112,37,30,0.0,11241,0.0,100149.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1914.2087216368777,5215.0,0.0,70714.0,1,2,7,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,29464.166666666668,5,0,5,5_1 -905,0.0,0.0,89.0,111,86,71,0.0,11245,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5537.819973401685,0.0,0.0,20680.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20680.0,3,0,3_0,3_0 -906,8.0,12.0,47.0,112,13,50,0.0,11246,0.0,80.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1882.655828865173,0.0,0.0,2600.0,1,1,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,1238.095238095238,1,0,1_0,1_1 -907,0.0,4.0,67.0,400,86,50,2.0,11247,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1236.554534190403,1966.0,7000.0,14110.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9406.666666666666,1,0,1_0,1_1 -908,6.0,7.0,51.0,120,62,71,0.0,11248,0.0,650.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,2579.7129357247422,2601.0,0.0,60918.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24367.2,4,0,4_0,4_1 -909,15.0,15.0,47.0,111,43,33,0.0,11249,0.0,0.0,430.0,0.0,1.0,4.0,1.0,2.0,1.3,2133.0137020162856,1144.0,0.0,26947.0,1,2,5,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,20728.46153846154,3,0,3_1,3_0 -910,3.0,4.0,63.0,111,78,50,0.0,1125,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,2.0,1529.6548180377176,1144.0,0.0,44767.0,5,4,8,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22383.5,4,0,4_0,4_0 -911,0.0,0.0,59.0,111,56,71,0.0,11253,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2987.767166166413,0.0,0.0,13050.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13050.0,2,0,2_0,2_0 -912,12.0,12.0,63.0,111,74,10,0.0,11254,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1736.2336869633975,0.0,0.0,2081.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,2081.0,1,0,1_0,1_0 -913,3.0,6.0,50.0,120,56,60,0.0,11256,0.0,0.0,0.0,0.0,1.0,6.0,0.0,5.0,2.6,1803.7902939405471,3191.0,0.0,33385.0,1,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12840.384615384615,2,0,2_0,2_1 -914,4.0,8.0,44.0,111,63,60,0.0,11258,0.0,300.0,0.0,0.0,1.0,5.0,3.0,4.0,2.3,1938.2537228885963,0.0,0.0,23641.0,1,3,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,10278.695652173914,1,0,1_1,1_0 -915,0.0,0.0,77.0,211,77,70,0.0,11259,0.0,0.0,0.0,333.0,0.0,2.0,0.0,1.0,1.0,3158.1884819239476,0.0,0.0,14669.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14669.0,2,0,2_1,2_0 -916,2.0,7.0,47.0,400,31,10,0.0,11261,0.0,0.0,0.0,0.0,1.0,7.0,2.0,4.0,2.1,1292.7674399374912,4267.0,0.0,22371.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10652.857142857143,1,0,1_0,1_1 -917,3.0,19.0,54.0,221,65,50,0.0,11262,0.0,0.0,75.0,0.0,2.0,5.0,0.0,2.0,1.5,2785.290979899701,1560.0,0.0,77684.0,1,1,1,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,51789.333333333336,5,0,5,5_0 -918,0.0,21.0,18.0,111,84,41,0.0,11264,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3576.193807073985,0.0,0.0,3134.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,3134.0,1,0,1_1,1_0 -919,6.0,6.0,63.0,300,78,71,0.0,11265,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2952.5229780952554,0.0,0.0,20108.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20108.0,3,0,3_0,3_1 -920,2.0,7.0,21.0,111,55,50,0.0,11266,0.0,150.0,70.0,237.0,2.0,3.0,2.0,3.0,1.8,3190.5234191285726,1560.0,0.0,22260.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,12366.666666666666,1,0,1_0,1_0 -921,0.0,8.0,45.0,111,37,31,0.0,11267,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1202.6549378389464,4160.0,0.0,61126.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,26576.521739130436,4,0,4_0,4_0 -922,2.0,10.0,52.0,300,22,50,0.0,1127,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2603.73014933291,879.0,0.0,5010.0,1,4,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,5010.0,1,0,1_0,1_1 -923,2.0,8.0,28.0,111,85,42,0.0,11271,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3248.0386418176345,2501.0,0.0,5220.0,7,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,5220.0,1,0,1_0,1_0 -924,2.0,18.0,27.0,120,55,50,0.0,11274,0.0,330.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,3505.445175989053,1561.0,0.0,33583.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,13992.916666666668,2,0,2_1,2_1 -925,1.0,6.0,58.0,300,71,44,2.0,11275,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1381.371394365546,5720.0,3900.0,30225.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20150.0,3,0,3_0,3_1 -926,3.0,3.0,45.0,112,37,31,0.0,11276,0.0,50.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2212.2094010929004,3120.0,0.0,55265.0,1,2,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26316.666666666664,4,0,4_0,4_1 -927,3.0,15.0,55.0,400,21,41,0.0,11277,0.0,350.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3829.4189708625017,3037.0,0.0,6810.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,4540.0,1,0,1_0,1_1 -928,6.0,8.0,33.0,111,34,20,0.0,11278,0.0,0.0,675.0,0.0,1.0,3.0,0.0,2.0,1.5,3510.015538417125,4940.0,0.0,8331.0,6,1,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,5554.0,1,0,1_0,1_0 -929,0.0,0.0,91.0,111,72,70,0.0,11279,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3250.183065194666,0.0,0.0,5920.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,5920.0,1,0,1_0,1_0 -930,7.0,13.0,60.0,111,75,50,0.0,1128,0.0,0.0,0.0,380.0,0.0,3.0,0.0,1.0,1.0,2002.4367650838574,0.0,0.0,17940.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17940.0,3,0,3_0,3_0 -931,6.0,8.0,34.0,111,62,50,0.0,11283,0.0,400.0,0.0,87.0,1.0,4.0,3.0,5.0,2.4,906.6816205661223,0.0,0.0,31913.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13297.083333333334,2,0,2_1,2_0 -932,2.0,4.0,37.0,300,63,31,0.0,11284,0.0,800.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2920.2529209112295,2340.0,0.0,22561.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22561.0,4,0,4_0,4_1 -933,0.0,19.0,45.0,111,56,60,0.0,11286,0.0,0.0,80.0,135.0,2.0,4.0,3.0,4.0,2.3,2405.281532100686,0.0,0.0,33826.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,14706.956521739132,2,0,2_1,2_0 -934,13.0,13.0,50.0,112,54,50,0.0,11287,0.0,0.0,34.0,0.0,1.0,6.0,0.0,2.0,1.5,1374.6654399998938,2708.0,0.0,38881.0,1,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,25920.666666666668,4,0,4_0,4_0 -935,8.0,8.0,40.0,111,38,12,0.0,11289,0.0,530.0,0.0,0.0,2.0,7.0,4.0,6.0,2.7,2000.8280281594507,3120.0,0.0,66422.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24600.74074074074,4,0,4_0,4_0 -936,2.0,2.0,84.0,111,74,31,0.0,1129,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2265.87312058799,0.0,0.0,36190.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36190.0,5,0,5,5_0 -937,2.0,2.0,39.0,112,37,12,0.0,11290,0.0,350.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2627.4562564055777,6408.0,0.0,80190.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,38185.71428571428,5,0,5,5_1 -938,0.0,0.0,33.0,111,85,71,0.0,11293,0.0,0.0,0.0,768.0,0.0,3.0,1.0,3.0,1.8,3730.382440243878,0.0,0.0,23471.0,4,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13039.444444444443,2,0,2_1,2_0 -939,2.0,2.0,32.0,111,85,71,0.0,11294,0.0,0.0,0.0,266.0,0.0,1.0,0.0,1.0,1.0,3605.344228635316,1040.0,0.0,12831.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12831.0,2,0,2_0,2_0 -940,0.0,0.0,44.0,111,85,70,0.0,11295,0.0,0.0,0.0,0.0,0.0,3.0,5.0,7.0,3.2,1720.8488025459205,0.0,0.0,31526.0,6,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9851.875,1,0,1_1,1_0 -941,0.0,16.0,56.0,111,67,31,0.0,11296,0.0,120.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2793.47459332285,1560.0,0.0,11501.0,4,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11501.0,1,0,1_0,1_0 -942,5.0,5.0,24.0,120,43,33,0.0,11298,0.0,0.0,0.0,461.0,1.0,4.0,1.0,2.0,1.5,6130.580123410371,0.0,0.0,20653.0,1,3,0,3.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,13768.666666666666,2,0,2_0,2_0 -943,14.0,16.0,66.0,111,78,50,0.0,11299,0.0,0.0,0.0,409.0,0.0,4.0,0.0,2.0,1.5,1522.4893817460477,0.0,0.0,31000.0,5,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20666.666666666668,3,0,3_0,3_0 -944,0.0,16.0,47.0,111,52,71,2.0,113,0.0,99999.0,0.0,132.0,2.0,4.0,3.0,4.0,2.5,2868.8211671403456,0.0,500.0,27350.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10940.0,1,0,1_1,1_0 -945,0.0,10.0,23.0,111,52,43,2.0,11300,0.0,0.0,0.0,11.0,1.0,3.0,2.0,4.0,2.1,2877.9077500539793,1733.0,3150.0,13032.0,4,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,6205.714285714285,1,0,1_1,1_0 -946,6.0,24.0,28.0,111,67,50,0.0,11302,0.0,0.0,99999.0,360.0,1.0,2.0,0.0,1.0,1.0,2835.420730233823,2912.0,0.0,13622.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,13622.0,2,0,2_0,2_0 -947,0.0,0.0,79.0,300,78,71,0.0,11303,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1655.2594518641772,6781.0,0.0,19690.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13126.666666666666,2,0,2_0,2_1 -948,1.0,1.0,32.0,111,47,31,1.0,11304,0.0,800.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3238.727014285879,0.0,21000.0,25763.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,25763.0,4,0,4_0,4_0 -949,1.0,5.0,28.0,111,47,10,0.0,11305,0.0,0.0,0.0,537.0,1.0,2.0,0.0,1.0,1.0,2888.4256009850706,0.0,0.0,20772.0,1,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20772.0,3,0,3_0,3_0 -950,0.0,0.0,39.0,111,62,71,0.0,11306,0.0,0.0,0.0,447.0,1.0,5.0,4.0,6.0,2.7,3006.515047632371,0.0,0.0,41260.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15281.48148148148,2,0,2_0,2_0 -951,7.0,7.0,81.0,300,77,71,0.0,11308,0.0,200.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2974.484069113713,3015.0,0.0,32582.0,5,1,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21721.333333333332,4,0,4_0,4_1 -952,0.0,10.0,26.0,111,47,20,0.0,11309,0.0,0.0,150.0,214.0,2.0,1.0,0.0,2.0,1.5,2435.0296340049217,0.0,0.0,37404.0,1,3,7,5.0,3,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,24936.0,4,0,4_1,4_0 -953,2.0,2.0,37.0,111,37,41,0.0,1131,300.0,700.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1573.1979853674925,3574.0,0.0,92745.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,44164.28571428571,5,0,5,5_0 -954,7.0,13.0,46.0,112,67,71,0.0,11310,0.0,0.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,2743.544345440826,3536.0,0.0,43975.0,1,2,7,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,29316.666666666668,5,0,5,5_0 -955,0.0,0.0,60.0,111,77,60,0.0,11312,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3013.340522799847,0.0,0.0,6840.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,6840.0,1,0,1_0,1_0 -956,2.0,3.0,67.0,111,74,31,0.0,11313,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1571.1541209811428,1689.0,0.0,27533.0,5,2,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18355.333333333332,3,0,3_0,3_0 -957,8.0,12.0,34.0,111,53,41,0.0,11314,0.0,99999.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2866.8637101560994,0.0,0.0,39917.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,19008.095238095237,3,0,3_0,3_0 -958,7.0,7.0,70.0,300,75,50,0.0,11315,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1143.4666657722362,0.0,0.0,24454.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16302.666666666666,2,0,2_0,2_1 -959,1.0,11.0,49.0,112,46,71,2.0,11316,0.0,500.0,110.0,0.0,2.0,5.0,0.0,2.0,1.5,5855.377844795941,0.0,1600.0,54776.0,1,2,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,36517.333333333336,5,0,5,5_0 -960,1.0,15.0,47.0,111,22,42,2.0,11318,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1415.0180078158112,4165.0,3500.0,16900.0,1,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,8450.0,1,0,1_0,1_0 -961,10.0,10.0,67.0,120,72,71,0.0,11320,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2818.58146642548,0.0,0.0,26492.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17661.333333333332,3,0,3_0,3_0 -962,0.0,0.0,74.0,221,72,70,0.0,11321,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4325.3755459298245,0.0,0.0,17480.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,17480.0,3,0,3_1,3_0 -963,8.0,20.0,80.0,111,71,70,0.0,11323,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2834.6585634458906,1011.0,0.0,7871.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,7871.0,1,0,1_0,1_0 -964,0.0,8.0,26.0,111,37,10,2.0,11324,0.0,0.0,0.0,300.0,1.0,3.0,0.0,1.0,1.0,3715.679422450929,0.0,14700.0,26725.0,1,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26725.0,4,0,4_0,4_0 -965,2.0,2.0,60.0,112,78,70,0.0,11326,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3863.0615323007382,2652.0,0.0,37290.0,5,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24860.0,4,0,4_0,4_0 -966,1.0,11.0,21.0,111,52,50,2.0,1133,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2904.203227443598,0.0,1400.0,18302.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14078.461538461537,2,0,2_1,2_0 -967,2.0,2.0,70.0,221,77,41,0.0,11330,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2287.3365747126636,2237.0,0.0,11520.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11520.0,1,0,1_0,1_0 -968,0.0,1.0,45.0,211,85,50,2.0,11331,0.0,0.0,0.0,0.0,0.0,5.0,3.0,5.0,2.4,2882.551955833796,2931.0,10200.0,30430.0,5,4,2,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,12679.166666666668,2,0,2_0,2_0 -969,4.0,4.0,34.0,112,21,50,0.0,11332,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4430.030274075657,0.0,0.0,30063.0,1,2,5,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14315.714285714284,2,0,2_0,2_1 -970,5.0,12.0,36.0,111,53,50,0.0,11333,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2887.2330358521363,0.0,0.0,38686.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21492.222222222223,3,0,3_0,3_0 -971,2.0,2.0,59.0,112,74,50,0.0,11334,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1556.209685933585,5252.0,0.0,48653.0,7,1,6,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,32435.333333333332,5,0,5,5_1 -972,4.0,4.0,61.0,400,78,70,0.0,11335,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2677.7241088352775,936.0,0.0,5010.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,5010.0,1,0,1_0,1_1 -973,15.0,16.0,47.0,112,52,71,0.0,11336,0.0,50.0,0.0,333.0,1.0,5.0,2.0,3.0,2.0,1401.0421290369552,0.0,0.0,34202.0,1,3,3,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,17101.0,3,0,3_1,3_1 -974,1.0,6.0,41.0,111,46,10,2.0,11337,0.0,770.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3005.9059080789007,1820.0,5500.0,21994.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,21994.0,4,0,4_0,4_0 -975,0.0,0.0,74.0,111,77,71,0.0,11338,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5031.153982726393,0.0,0.0,10349.0,5,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10349.0,1,0,1_0,1_0 -976,0.0,0.0,53.0,111,67,71,0.0,11339,0.0,0.0,0.0,73.0,1.0,1.0,0.0,1.0,1.0,5327.519007729251,0.0,0.0,8744.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8744.0,1,0,1_1,1_0 -977,5.0,5.0,39.0,111,35,31,0.0,1134,0.0,0.0,0.0,1200.0,2.0,5.0,2.0,4.0,2.1,3630.0943264876355,0.0,0.0,72885.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34707.142857142855,5,0,5,5_0 -978,1.0,7.0,53.0,111,52,50,0.0,11341,0.0,0.0,60.0,320.0,3.0,4.0,2.0,6.0,3.3,1233.8547253497675,0.0,0.0,29960.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,9078.78787878788,1,0,1_0,1_0 -979,11.0,11.0,44.0,221,11,50,0.0,11344,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,2667.082271678077,0.0,0.0,13570.0,1,1,1,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,4846.428571428572,1,0,1_0,1_0 -980,8.0,14.0,68.0,300,75,50,0.0,11348,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2066.7202809423775,0.0,0.0,29781.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19854.0,3,0,3_0,3_1 -981,0.0,9.0,21.0,111,46,31,0.0,1135,0.0,99999.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2990.792996583858,1786.0,0.0,33066.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,33066.0,5,0,5,5_0 -982,3.0,4.0,47.0,112,11,44,0.0,11350,0.0,784.0,0.0,0.0,2.0,8.0,4.0,6.0,3.1,1063.5230415520857,1565.0,0.0,38745.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,12498.387096774193,1,0,1_0,1_1 -983,10.0,10.0,47.0,221,31,12,0.0,11351,0.0,0.0,100399.0,0.0,2.0,3.0,0.0,2.0,1.5,2593.2984540842813,2447.0,0.0,29451.0,1,2,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,19634.0,3,0,3_0,3_0 -984,0.0,23.0,19.0,111,84,42,0.0,11352,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3128.214752387563,0.0,0.0,12362.0,3,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,12362.0,1,0,1_1,1_0 -985,4.0,4.0,46.0,112,37,31,0.0,11354,0.0,199998.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1465.126481941986,3178.0,0.0,93856.0,1,2,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,33520.0,5,0,5,5_0 -986,2.0,21.0,53.0,300,77,60,0.0,11356,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2441.2344777380204,1040.0,0.0,35412.0,5,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17706.0,3,0,3_0,3_1 -987,0.0,0.0,77.0,111,77,50,0.0,11357,0.0,0.0,0.0,189.0,0.0,2.0,0.0,1.0,1.0,3579.263989745511,0.0,0.0,11580.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11580.0,1,0,1_1,1_0 -988,8.0,10.0,41.0,112,43,31,0.0,11358,0.0,0.0,132.0,0.0,2.0,7.0,2.0,4.0,2.1,1603.9108814417657,0.0,0.0,67840.0,1,2,5,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,32304.761904761905,5,0,5,5_1 -989,4.0,4.0,47.0,112,38,12,0.0,1136,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1568.7136106693786,0.0,0.0,99090.0,1,1,10,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,49545.0,5,0,5,5_0 -990,6.0,11.0,46.0,112,11,43,0.0,11360,0.0,100.0,0.0,519.0,1.0,4.0,0.0,1.0,1.0,3040.4428398575265,0.0,0.0,5085.0,1,3,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,5085.0,1,0,1_0,1_1 -991,3.0,7.0,41.0,112,38,42,0.0,11361,0.0,150.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2097.1774339735093,0.0,0.0,50364.0,1,1,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21897.391304347828,4,0,4_0,4_0 -992,13.0,13.0,43.0,111,63,50,0.0,11364,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,2491.5302782813887,0.0,0.0,36690.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,14676.0,2,0,2_0,2_0 -993,0.0,0.0,67.0,111,78,50,0.0,11365,0.0,0.0,0.0,246.0,0.0,3.0,0.0,1.0,1.0,2373.7710792637063,0.0,0.0,15346.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15346.0,2,0,2_0,2_0 -994,7.0,9.0,40.0,111,38,20,0.0,11366,0.0,20.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4210.074326386647,0.0,0.0,31734.0,1,2,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,31734.0,5,0,5,5_0 -995,5.0,5.0,33.0,111,34,20,0.0,11367,0.0,0.0,0.0,430.0,2.0,3.0,2.0,4.0,2.1,1616.9034649564178,3773.0,0.0,53017.0,1,3,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25246.190476190473,4,0,4_0,4_0 -996,4.0,5.0,67.0,112,47,70,0.0,11368,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1885.8217582773816,0.0,0.0,43565.0,5,1,7,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,43565.0,5,0,5,5_1 -997,3.0,8.0,48.0,400,68,71,0.0,11369,0.0,0.0,0.0,249.0,1.0,4.0,0.0,1.0,1.0,3459.9407340881285,1041.0,0.0,12668.0,4,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,12668.0,2,0,2_1,2_1 -998,6.0,10.0,42.0,221,62,43,0.0,1137,0.0,350.0,300.0,0.0,2.0,7.0,3.0,5.0,2.8,2841.8291870553785,9984.0,0.0,65912.0,1,2,1,1.0,4,4.0,0.0,1.0,0,1,0,0,0,0,1.0,3.0,23540.0,4,0,4_0,4_0 -999,8.0,8.0,71.0,111,77,50,0.0,11371,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2858.2156861515114,0.0,0.0,8060.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,8060.0,1,0,1_0,1_0 -1000,4.0,7.0,47.0,111,47,50,0.0,11372,0.0,50.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2921.1951112270203,2080.0,0.0,43250.0,1,4,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,21625.0,3,0,3_0,3_0 -1001,1.0,1.0,56.0,111,37,41,1.0,11373,0.0,0.0,0.0,820.0,1.0,3.0,0.0,1.0,1.0,3478.828542483331,3120.0,11200.0,45831.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,45831.0,5,0,5,5_0 -1002,15.0,15.0,80.0,111,72,70,0.0,11374,0.0,0.0,0.0,387.0,0.0,2.0,0.0,1.0,1.0,2628.0502712733037,0.0,0.0,13124.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13124.0,2,0,2_1,2_0 -1003,0.0,0.0,83.0,400,78,71,0.0,11375,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3802.3793149785106,0.0,0.0,11380.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11380.0,1,0,1_0,1_1 -1004,5.0,5.0,27.0,111,38,10,0.0,11376,0.0,200.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3135.2119497639637,2366.0,0.0,57244.0,1,2,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,38162.666666666664,5,0,5,5_0 -1005,9.0,10.0,41.0,111,37,12,0.0,11378,0.0,0.0,110.0,0.0,2.0,9.0,2.0,4.0,2.1,3496.253015959016,2775.0,0.0,102337.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,48731.90476190476,5,0,5,5_0 -1006,12.0,17.0,57.0,112,78,71,0.0,11379,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,3.0,3441.9474041620356,1040.0,0.0,21414.0,5,3,9,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,7138.0,1,0,1_1,1_0 -1007,0.0,0.0,24.0,111,38,12,0.0,1138,0.0,0.0,0.0,725.0,1.0,1.0,0.0,1.0,1.0,3733.986879992689,0.0,0.0,28913.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28913.0,4,0,4_0,4_0 -1008,12.0,12.0,59.0,112,67,70,0.0,11380,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2883.399427841276,0.0,0.0,14042.0,4,2,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,14042.0,2,0,2_1,2_1 -1009,1.0,7.0,35.0,222,52,20,2.0,11381,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1016.8651692401764,0.0,6500.0,35615.0,1,3,1,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19786.11111111111,3,0,3_0,3_1 -1010,0.0,0.0,33.0,111,37,10,0.0,11382,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3457.3761683084813,625.0,0.0,51457.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,51457.0,5,0,5,5_0 -1011,0.0,0.0,31.0,111,38,31,0.0,11383,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3956.7523337797234,0.0,0.0,45859.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,45859.0,5,0,5,5_0 -1012,7.0,8.0,48.0,111,63,50,0.0,11384,0.0,0.0,40.0,326.0,1.0,4.0,2.0,3.0,2.0,3379.7836252402644,1040.0,0.0,28490.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14245.0,2,0,2_0,2_0 -1013,0.0,2.0,25.0,111,56,60,0.0,11385,0.0,0.0,300.0,0.0,2.0,3.0,1.0,3.0,1.8,2918.8911423852855,2861.0,0.0,54283.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,30157.222222222223,5,0,5,5_0 -1014,7.0,9.0,65.0,111,74,41,0.0,11386,0.0,0.0,0.0,448.0,0.0,3.0,0.0,1.0,1.0,3926.166270392744,0.0,0.0,22264.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22264.0,4,0,4_0,4_0 -1015,0.0,0.0,80.0,111,78,71,0.0,11389,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3558.732381931047,0.0,0.0,23314.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23314.0,4,0,4_0,4_0 -1016,1.0,2.0,31.0,112,47,42,2.0,1139,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2127.467464586762,0.0,9900.0,42208.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20099.04761904762,3,0,3_0,3_1 -1017,1.0,1.0,57.0,111,37,12,2.0,11390,0.0,0.0,484.0,0.0,1.0,3.0,1.0,2.0,1.5,2892.250087116418,3126.0,11400.0,26164.0,1,1,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,17442.666666666668,3,0,3_0,3_0 -1018,22.0,22.0,65.0,111,75,50,0.0,11391,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1384.2871377794663,0.0,0.0,46914.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,31276.0,5,0,5,5_0 -1019,0.0,0.0,62.0,111,75,60,0.0,11392,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2065.365538113301,4212.0,0.0,29556.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29556.0,5,0,5,5_0 -1020,8.0,8.0,46.0,111,45,50,0.0,11393,0.0,0.0,60.0,0.0,1.0,4.0,2.0,4.0,2.5,2725.8441720665433,0.0,0.0,56515.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,22606.0,4,0,4_0,4_0 -1021,1.0,9.0,55.0,111,52,50,0.0,11394,0.0,0.0,200.0,0.0,1.0,3.0,0.0,1.0,1.0,2953.973911989347,2346.0,0.0,25224.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,25224.0,4,0,4_0,4_0 -1022,8.0,10.0,40.0,112,47,20,0.0,11395,0.0,680.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2501.6242674739624,6596.0,0.0,66437.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,31636.666666666664,5,0,5,5_1 -1023,7.0,8.0,48.0,111,35,71,0.0,11398,0.0,0.0,0.0,950.0,2.0,4.0,2.0,4.0,2.1,3652.212017433107,0.0,0.0,24450.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,11642.857142857143,1,0,1_0,1_0 -1024,9.0,9.0,33.0,111,85,50,0.0,11399,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2568.088433070949,4836.0,0.0,6072.0,7,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,6072.0,1,0,1_1,1_0 -1025,1.0,1.0,57.0,111,38,12,1.0,114,0.0,500.0,300.0,0.0,2.0,5.0,0.0,2.0,1.5,2223.042514047571,3286.0,9000.0,109391.0,1,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,72927.33333333333,5,0,5,5_0 -1026,0.0,0.0,65.0,111,72,71,1.0,1140,0.0,0.0,0.0,0.0,0.0,6.0,1.0,3.0,2.0,3131.0575917363863,2600.0,83388.0,28584.0,5,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,14292.0,2,0,2_0,2_0 -1027,9.0,9.0,52.0,112,37,43,0.0,11400,0.0,0.0,400.0,0.0,2.0,4.0,0.0,2.0,1.5,1618.594690581331,4472.0,0.0,60671.0,1,1,6,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,40447.333333333336,5,0,5,5_0 -1028,1.0,1.0,70.0,111,34,10,1.0,11402,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1208.6708723617915,2710.0,16000.0,43477.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28984.666666666668,4,0,4_0,4_0 -1029,2.0,2.0,53.0,112,21,71,0.0,11404,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,6364.300125738766,2600.0,0.0,42134.0,1,1,8,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28089.333333333332,4,0,4_0,4_0 -1030,11.0,11.0,63.0,111,78,70,0.0,11405,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2194.883394817082,1612.0,0.0,22001.0,5,3,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14667.333333333334,2,0,2_0,2_0 -1031,10.0,10.0,80.0,111,74,50,0.0,11406,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1749.3452699498098,2637.0,0.0,12860.0,5,1,10,8.0,3,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,8573.333333333334,1,0,1_0,1_0 -1032,2.0,2.0,67.0,112,74,50,0.0,11409,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1997.0367531212248,0.0,0.0,38714.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25809.333333333332,4,0,4_0,4_1 -1033,1.0,12.0,54.0,112,34,20,0.0,1141,0.0,0.0,400.0,0.0,1.0,3.0,0.0,1.0,1.0,1697.847146737131,6500.0,0.0,32550.0,1,3,8,1.0,1,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,32550.0,5,0,5,5_0 -1034,6.0,13.0,60.0,120,54,50,0.0,11411,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1762.328906695724,1565.0,0.0,8100.0,4,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,8100.0,1,0,1_0,1_1 -1035,8.0,10.0,44.0,111,56,31,0.0,11412,0.0,100.0,99999.0,0.0,2.0,7.0,3.0,5.0,2.6,1244.6743767947469,3278.0,0.0,58425.0,1,1,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,22471.153846153844,4,0,4_0,4_0 -1036,6.0,8.0,42.0,300,67,50,0.0,11413,0.0,120.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3319.0146011627717,1560.0,0.0,36993.0,1,2,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20551.666666666668,3,0,3_0,3_0 -1037,0.0,1.0,41.0,111,38,12,0.0,11414,0.0,300.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1907.4156723984365,3845.0,0.0,131373.0,1,3,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,54738.75,5,0,5,5_0 -1038,4.0,4.0,51.0,300,38,50,0.0,11415,0.0,950.0,150.0,0.0,3.0,5.0,2.0,4.0,2.5,1657.764205049835,9674.0,0.0,86757.0,1,1,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,34702.8,5,0,5,5_1 -1039,0.0,0.0,72.0,111,77,50,1.0,11416,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1475.64937337023,0.0,22500.0,26625.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17750.0,3,0,3_0,3_0 -1040,1.0,1.0,50.0,111,63,50,1.0,11417,0.0,0.0,350.0,318.0,2.0,3.0,1.0,2.0,1.5,5739.803973714396,3692.0,20000.0,41444.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,27629.333333333332,4,0,4_0,4_0 -1041,4.0,8.0,32.0,111,38,30,0.0,11423,0.0,150.0,0.0,550.0,1.0,1.0,0.0,1.0,1.0,3150.1252403721674,0.0,0.0,33914.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,33914.0,5,0,5,5_0 -1042,2.0,9.0,52.0,111,38,12,0.0,11424,0.0,120.0,0.0,1488.0,3.0,5.0,1.0,3.0,2.0,1555.6902744771696,312.0,0.0,101026.0,1,3,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,50513.0,5,0,5,5_0 -1043,2.0,5.0,42.0,112,67,50,0.0,11425,0.0,85.0,70.0,0.0,2.0,5.0,1.0,3.0,1.8,1321.1453618819855,0.0,0.0,45541.0,1,2,3,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25300.555555555555,4,0,4_0,4_1 -1044,7.0,7.0,50.0,112,62,50,0.0,11426,0.0,190.0,30.0,0.0,2.0,7.0,3.0,5.0,2.4,1011.4201318091716,7810.0,0.0,47452.0,1,2,4,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,19771.666666666668,3,0,3_0,3_1 -1045,1.0,8.0,58.0,111,62,42,0.0,11427,0.0,100.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3336.6331868879042,0.0,0.0,18609.0,1,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,18609.0,3,0,3_0,3_0 -1046,0.0,0.0,77.0,111,78,71,0.0,11429,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4525.9423541078095,0.0,0.0,15790.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15790.0,2,0,2_0,2_0 -1047,11.0,11.0,71.0,111,74,43,0.0,1143,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2755.096382634844,0.0,0.0,18031.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18031.0,3,0,3_0,3_0 -1048,9.0,9.0,49.0,111,65,50,0.0,11430,0.0,1000.0,150.0,0.0,3.0,5.0,1.0,3.0,2.0,1146.8076254490554,4368.0,0.0,70368.0,1,1,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,35184.0,5,0,5,5_0 -1049,16.0,19.0,83.0,111,86,71,0.0,11431,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3059.1746776469327,0.0,0.0,52170.0,5,1,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,34780.0,5,0,5,5_0 -1050,0.0,0.0,69.0,112,75,71,0.0,11432,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2623.9588941075954,0.0,0.0,16240.0,5,1,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16240.0,2,0,2_0,2_1 -1051,0.0,0.0,79.0,400,71,70,0.0,11440,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2412.186249452249,0.0,0.0,17748.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17748.0,3,0,3_0,3_1 -1052,3.0,4.0,54.0,112,52,41,0.0,11441,0.0,120.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1353.3035973569656,2756.0,0.0,41012.0,1,1,6,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27341.333333333332,4,0,4_0,4_0 -1053,4.0,4.0,59.0,300,34,20,0.0,11442,0.0,50.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2143.396761921742,2600.0,0.0,11362.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,7574.666666666667,1,0,1_0,1_1 -1054,10.0,10.0,39.0,111,37,10,0.0,11443,0.0,250.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2812.868279771188,2600.0,0.0,39681.0,1,2,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,39681.0,5,0,5,5_0 -1055,0.0,0.0,86.0,111,75,70,0.0,11445,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2874.01177505583,0.0,0.0,23398.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23398.0,4,0,4_0,4_0 -1056,0.0,0.0,30.0,111,37,10,0.0,11446,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3980.2650385506718,0.0,0.0,172517.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,172517.0,5,0,5,5_0 -1057,2.0,5.0,63.0,112,72,41,0.0,11447,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1958.7342594055986,2865.0,0.0,43932.0,5,2,4,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,29288.0,5,0,5,5_1 -1058,11.0,11.0,43.0,120,64,50,0.0,1145,0.0,0.0,280.0,259.0,1.0,5.0,3.0,5.0,2.6,4164.275378180055,2080.0,0.0,31166.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,11986.923076923076,1,0,1_1,1_1 -1059,12.0,19.0,43.0,112,68,50,0.0,11450,0.0,0.0,130.0,0.0,2.0,8.0,1.0,3.0,2.0,1175.0442196733989,0.0,0.0,43942.0,1,1,6,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,21971.0,4,0,4_0,4_1 -1060,4.0,16.0,21.0,111,46,42,0.0,11451,0.0,0.0,300.0,243.0,2.0,3.0,0.0,2.0,1.5,3553.6330177741256,0.0,0.0,26432.0,4,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,17621.333333333332,3,0,3_1,3_0 -1061,8.0,10.0,46.0,112,63,50,0.0,11452,0.0,1000.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2435.7273461307022,6552.0,0.0,41279.0,1,1,9,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,20639.5,3,0,3_0,3_1 -1062,0.0,2.0,33.0,111,38,10,2.0,11454,0.0,1000.0,0.0,514.0,2.0,2.0,0.0,2.0,1.5,2135.1237106209383,3225.0,17500.0,44945.0,1,3,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,29963.333333333332,5,0,5,5_0 -1063,5.0,6.0,52.0,111,68,50,0.0,11455,0.0,0.0,150.0,306.0,1.0,2.0,0.0,1.0,1.0,1611.796513366542,2080.0,0.0,12890.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,12890.0,2,0,2_0,2_0 -1064,0.0,0.0,64.0,112,78,71,0.0,11456,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2516.218364412748,0.0,0.0,15020.0,5,1,5,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15020.0,2,0,2_0,2_1 -1065,1.0,5.0,34.0,111,31,10,2.0,11457,0.0,0.0,250.0,0.0,2.0,4.0,2.0,4.0,2.1,7910.297045213364,3796.0,15000.0,210738.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,100351.42857142857,5,0,5,5_0 -1066,0.0,0.0,32.0,111,55,50,0.0,1146,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,2789.1160519751015,666.0,0.0,44280.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29520.0,5,0,5,5_0 -1067,6.0,6.0,59.0,111,43,33,0.0,11460,0.0,100.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2065.9134122737046,230.0,0.0,42377.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,42377.0,5,0,5,5_0 -1068,0.0,14.0,31.0,120,46,10,0.0,11461,0.0,100399.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,1504.9254985528582,2412.0,0.0,35194.0,1,4,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,23462.666666666668,4,0,4_0,4_1 -1069,16.0,18.0,60.0,111,35,31,0.0,11462,0.0,250.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1738.399608373007,0.0,0.0,77533.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,38766.5,5,0,5,5_0 -1070,5.0,6.0,68.0,111,74,71,0.0,11464,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1275.4000648431875,2497.0,0.0,37609.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25072.666666666668,4,0,4_0,4_0 -1071,0.0,6.0,60.0,111,74,41,0.0,11465,0.0,0.0,0.0,703.0,0.0,2.0,0.0,1.0,1.0,3281.7163070346937,0.0,0.0,34826.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,34826.0,5,0,5,5_0 -1072,0.0,0.0,27.0,111,55,20,0.0,11466,0.0,0.0,0.0,356.0,2.0,3.0,1.0,3.0,1.8,3353.9301438249017,0.0,0.0,47028.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,26126.666666666664,4,0,4_1,4_0 -1073,1.0,17.0,34.0,112,62,43,0.0,11467,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,4023.7509474426506,0.0,0.0,50948.0,1,3,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24260.95238095238,4,0,4_0,4_1 -1074,4.0,4.0,36.0,111,38,12,0.0,11468,0.0,150.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1251.4525000574008,0.0,0.0,67980.0,4,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,37766.666666666664,5,0,5,5_0 -1075,4.0,10.0,35.0,300,64,60,0.0,11469,0.0,750.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1545.817862768308,3120.0,0.0,34516.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,16436.190476190477,2,0,2_1,2_1 -1076,2.0,32.0,37.0,400,52,71,0.0,11472,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,4740.631432248903,499.0,0.0,38358.0,1,2,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,16677.391304347828,2,0,2_0,2_1 -1077,0.0,0.0,53.0,300,45,60,1.0,11474,0.0,450.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2974.626725761268,4785.0,18000.0,48183.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,32122.0,5,0,5,5_1 -1078,11.0,11.0,71.0,111,77,70,0.0,11475,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2929.4081650829216,0.0,0.0,26217.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17478.0,3,0,3_0,3_0 -1079,1.0,3.0,33.0,111,64,50,2.0,11477,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1571.5140605624697,2913.0,17400.0,33089.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15756.666666666666,2,0,2_0,2_0 -1080,2.0,2.0,81.0,111,74,10,0.0,1148,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2429.4899199769507,0.0,0.0,44929.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29952.666666666668,5,0,5,5_0 -1081,11.0,11.0,76.0,111,75,42,0.0,11480,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2259.110758134453,1196.0,0.0,31837.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21224.666666666668,3,0,3_0,3_0 -1082,1.0,1.0,38.0,111,37,20,2.0,11482,0.0,0.0,200.0,0.0,1.0,2.0,0.0,1.0,1.0,3741.140595140943,0.0,4900.0,35257.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,35257.0,5,0,5,5_0 -1083,2.0,8.0,37.0,111,65,71,0.0,11483,0.0,380.0,0.0,293.0,1.0,3.0,2.0,4.0,2.1,3680.9818362822807,5720.0,0.0,35563.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16934.761904761905,3,0,3_0,3_0 -1084,1.0,1.0,84.0,111,75,20,0.0,11485,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2748.514989221939,0.0,0.0,46159.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,46159.0,5,0,5,5_0 -1085,6.0,11.0,44.0,112,34,10,0.0,11486,0.0,600.0,0.0,0.0,3.0,6.0,3.0,5.0,3.0,2546.731343370975,1560.0,0.0,75346.0,1,1,9,1.0,4,4.0,0.0,0.0,0,1,0,0,0,0,1.0,3.0,25115.333333333332,4,0,4_0,4_0 -1086,11.0,11.0,63.0,300,75,20,0.0,11487,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2338.703158797684,0.0,0.0,26931.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26931.0,4,0,4_0,4_1 -1087,14.0,14.0,59.0,120,77,50,0.0,11488,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,5004.4742209296455,0.0,0.0,24365.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,16243.333333333334,2,0,2_0,2_0 -1088,0.0,6.0,24.0,111,37,10,2.0,11490,0.0,100.0,0.0,320.0,1.0,3.0,0.0,1.0,1.0,3818.364318310569,3381.0,15500.0,397.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,397.0,1,0,1_0,1_0 -1089,4.0,4.0,83.0,111,74,12,0.0,11491,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1345.3499380355252,0.0,0.0,60148.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,40098.666666666664,5,0,5,5_0 -1090,20.0,20.0,65.0,112,78,70,0.0,11492,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1783.5046767280808,0.0,0.0,14555.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14555.0,2,0,2_0,2_1 -1091,5.0,5.0,54.0,111,52,70,0.0,11494,0.0,0.0,130.0,0.0,1.0,4.0,0.0,1.0,1.0,1612.636386465368,0.0,0.0,23302.0,1,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23302.0,4,0,4_0,4_0 -1092,0.0,0.0,87.0,111,74,20,0.0,11496,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2579.3011305580217,1043.0,0.0,98789.0,5,4,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,98789.0,5,0,5,5_0 -1093,2.0,2.0,50.0,111,37,12,0.0,11497,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2627.99362058782,0.0,0.0,54355.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,54355.0,5,0,5,5_0 -1094,2.0,2.0,54.0,400,34,31,0.0,115,0.0,850.0,1052.0,0.0,4.0,6.0,3.0,5.0,2.8,1053.5203222806847,10885.0,0.0,93715.0,1,2,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,3.0,1.0,33469.64285714286,5,0,5,5_1 -1095,6.0,20.0,39.0,111,47,31,0.0,11500,0.0,0.0,150.0,480.0,3.0,3.0,3.0,6.0,2.9,1414.076116305597,676.0,0.0,59489.0,1,3,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20513.44827586207,3,0,3_0,3_0 -1096,0.0,0.0,41.0,111,63,50,1.0,11501,0.0,0.0,150.0,0.0,2.0,3.0,2.0,4.0,2.1,2968.613517916022,520.0,12000.0,47927.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,22822.38095238095,4,0,4_0,4_0 -1097,2.0,17.0,34.0,111,65,71,0.0,11502,0.0,100.0,0.0,173.0,1.0,3.0,2.0,4.0,2.1,3147.06533459441,2600.0,0.0,31464.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14982.857142857143,2,0,2_1,2_0 -1098,15.0,15.0,54.0,111,53,50,0.0,11504,0.0,500.0,0.0,0.0,2.0,6.0,1.0,2.0,1.5,2151.8953566354285,0.0,0.0,56388.0,1,1,6,5.0,2,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,37592.0,5,0,5,5_0 -1099,1.0,9.0,28.0,111,54,44,2.0,11505,0.0,300.0,0.0,550.0,2.0,5.0,1.0,3.0,1.8,2039.0577531371193,2340.0,6500.0,31776.0,1,3,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,17653.333333333332,3,0,3_0,3_0 -1100,4.0,4.0,69.0,112,75,50,0.0,11506,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1320.6938837479925,0.0,0.0,53802.0,5,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,35868.0,5,0,5,5_1 -1101,2.0,2.0,63.0,112,77,50,0.0,11508,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1514.121776910861,0.0,0.0,23225.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23225.0,4,0,4_0,4_1 -1102,0.0,0.0,87.0,111,78,70,0.0,11509,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3006.815090242315,0.0,0.0,19300.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12866.666666666666,2,0,2_0,2_0 -1103,8.0,13.0,44.0,300,54,60,0.0,1151,0.0,300.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1566.0279652532454,3640.0,0.0,35596.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,14831.666666666668,2,0,2_1,2_1 -1104,3.0,7.0,55.0,400,62,50,0.0,11510,0.0,700.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1757.0425059247104,3058.0,0.0,24790.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24790.0,4,0,4_0,4_1 -1105,7.0,10.0,58.0,300,78,50,0.0,11511,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1818.4982012764217,1560.0,0.0,30186.0,4,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20124.0,3,0,3_0,3_1 -1106,8.0,13.0,62.0,112,75,50,0.0,11512,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2009.2453240535167,837.0,0.0,41360.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27573.333333333332,4,0,4_0,4_1 -1107,0.0,14.0,47.0,112,52,71,0.0,11513,0.0,50.0,300.0,0.0,2.0,4.0,0.0,2.0,1.5,6265.32008299066,1300.0,0.0,40076.0,1,2,8,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,26717.333333333332,4,0,4_0,4_0 -1108,0.0,0.0,21.0,111,52,31,0.0,11514,0.0,0.0,0.0,500.0,1.0,4.0,0.0,2.0,1.5,3168.439655378887,0.0,0.0,20140.0,1,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13426.666666666666,2,0,2_1,2_0 -1109,7.0,7.0,37.0,111,42,10,0.0,11515,0.0,0.0,0.0,306.0,1.0,2.0,0.0,1.0,1.0,6724.143598530216,0.0,0.0,76425.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,76425.0,5,0,5,5_0 -1110,2.0,9.0,47.0,300,56,60,0.0,11516,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1543.001363060824,2046.0,0.0,22225.0,1,3,0,0.0,2,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,12347.222222222223,1,0,1_1,1_1 -1111,1.0,2.0,30.0,111,38,31,2.0,11517,0.0,60.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2395.489935416576,0.0,11600.0,22632.0,1,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22632.0,4,0,4_0,4_0 -1112,2.0,7.0,45.0,111,34,10,0.0,11519,0.0,60.0,0.0,500.0,1.0,4.0,0.0,1.0,1.0,2197.562973830327,0.0,0.0,24273.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24273.0,4,0,4_0,4_0 -1113,0.0,0.0,34.0,111,62,50,0.0,11520,0.0,0.0,0.0,63.0,1.0,1.0,0.0,1.0,1.0,4456.268825223768,1040.0,0.0,18044.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18044.0,3,0,3_1,3_0 -1114,2.0,2.0,42.0,112,45,41,0.0,11522,400.0,500.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1884.6805693609579,2321.0,0.0,47049.0,1,3,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,31366.0,5,0,5,5_1 -1115,6.0,6.0,65.0,111,74,50,0.0,11523,0.0,0.0,0.0,770.0,0.0,4.0,0.0,2.0,1.5,3866.3103126382057,6860.0,0.0,47851.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,31900.666666666668,5,0,5,5_0 -1116,3.0,5.0,33.0,112,21,50,0.0,11526,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2871.5719932180928,0.0,0.0,76121.0,1,4,7,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,36248.09523809524,5,0,5,5_0 -1117,4.0,4.0,48.0,112,46,50,0.0,11527,0.0,400.0,600.0,0.0,3.0,6.0,1.0,3.0,2.0,2160.477011376133,6032.0,0.0,59746.0,1,1,9,1.0,4,4.0,0.0,1.0,0,1,0,0,0,0,3.0,1.0,29873.0,5,0,5,5_0 -1118,1.0,18.0,55.0,120,37,43,2.0,11528,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2534.5322276100073,0.0,2000.0,34940.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,34940.0,5,0,5,5_1 -1119,4.0,6.0,82.0,111,72,70,0.0,1153,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,2.0,2161.2029367234572,0.0,0.0,37113.0,5,1,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18556.5,3,0,3_0,3_0 -1120,5.0,5.0,65.0,111,34,10,0.0,11530,0.0,0.0,0.0,1390.0,2.0,5.0,0.0,2.0,1.5,2651.1519297124105,0.0,0.0,88305.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,58870.0,5,0,5,5_0 -1121,10.0,10.0,69.0,221,75,71,0.0,11531,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1730.9303931967884,0.0,0.0,32790.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21860.0,4,0,4_0,4_0 -1122,6.0,13.0,64.0,111,77,50,0.0,11533,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2677.2416912515646,0.0,0.0,18560.0,5,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18560.0,3,0,3_0,3_0 -1123,0.0,13.0,22.0,111,68,71,0.0,11536,0.0,0.0,120.0,245.0,2.0,2.0,1.0,2.0,1.5,3630.1529691670526,0.0,0.0,25930.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17286.666666666668,3,0,3_0,3_0 -1124,12.0,14.0,71.0,112,75,70,0.0,11538,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2077.3275795647587,0.0,0.0,28370.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18913.333333333332,3,0,3_0,3_0 -1125,2.0,2.0,53.0,112,43,33,0.0,11539,0.0,0.0,100.0,0.0,1.0,4.0,0.0,2.0,1.5,1755.2334452271277,2732.0,0.0,61011.0,1,2,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,40674.0,5,0,5,5_0 -1126,2.0,7.0,41.0,111,56,50,0.0,1154,0.0,150.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,3118.9544068427604,2340.0,0.0,31368.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14937.142857142857,2,0,2_1,2_0 -1127,8.0,17.0,36.0,111,55,50,0.0,11540,0.0,0.0,180.0,327.0,1.0,3.0,1.0,2.0,1.3,1476.3769557304458,2288.0,0.0,18030.0,1,3,5,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,13869.23076923077,2,0,2_1,2_0 -1128,14.0,14.0,40.0,400,62,31,0.0,11541,0.0,200.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,3465.1961691834936,1749.0,0.0,19638.0,1,2,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12273.75,1,0,1_1,1_1 -1129,3.0,3.0,51.0,300,22,71,0.0,11545,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,3465.0911399998545,2600.0,0.0,39300.0,1,2,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,19650.0,3,0,3_0,3_1 -1130,11.0,12.0,69.0,112,72,50,0.0,11546,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1925.2042434586995,4833.0,0.0,32570.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21713.333333333332,4,0,4_0,4_1 -1131,0.0,0.0,64.0,111,78,60,0.0,11547,0.0,0.0,0.0,149.0,0.0,2.0,0.0,1.0,1.0,2318.829361341189,0.0,0.0,12736.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12736.0,2,0,2_1,2_0 -1132,0.0,3.0,52.0,111,38,50,0.0,11548,0.0,120.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,3081.3458995734663,4085.0,0.0,59017.0,1,2,6,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,23606.8,4,0,4_0,4_0 -1133,2.0,12.0,63.0,112,54,12,0.0,11549,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2133.0868842401455,2935.0,0.0,13756.0,4,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13756.0,2,0,2_0,2_1 -1134,5.0,6.0,58.0,112,47,50,0.0,1155,0.0,600.0,0.0,0.0,4.0,5.0,1.0,5.0,2.8,844.767214798914,2600.0,0.0,85440.0,1,2,10,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,30514.285714285717,5,0,5,5_1 -1135,1.0,1.0,74.0,111,74,20,0.0,11550,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2191.3365673104113,0.0,0.0,37230.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,37230.0,5,0,5,5_0 -1136,0.0,0.0,35.0,111,52,71,0.0,11551,0.0,0.0,0.0,224.0,1.0,3.0,1.0,2.0,1.3,3134.3078786559604,0.0,0.0,20680.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15907.692307692307,2,0,2_0,2_0 -1137,0.0,1.0,34.0,111,38,10,0.0,11552,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3049.63026362185,0.0,0.0,49488.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27493.333333333332,4,0,4_0,4_0 -1138,4.0,7.0,69.0,300,71,71,0.0,11554,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2796.353645952776,1560.0,0.0,19540.0,5,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13026.666666666666,2,0,2_0,2_1 -1139,3.0,3.0,61.0,112,74,10,0.0,11555,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1752.8998816891942,6660.0,0.0,56555.0,5,1,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,28277.5,4,0,4_0,4_1 -1140,0.0,0.0,78.0,111,77,50,0.0,11558,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4484.705235961941,0.0,0.0,15240.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15240.0,2,0,2_0,2_0 -1141,2.0,9.0,39.0,221,55,43,0.0,1156,0.0,0.0,50.0,0.0,1.0,5.0,2.0,3.0,1.8,1810.0796682748996,2080.0,0.0,24663.0,1,3,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,13701.666666666666,2,0,2_1,2_0 -1142,2.0,6.0,29.0,111,64,71,0.0,11561,0.0,130.0,0.0,270.0,2.0,3.0,1.0,3.0,1.8,3678.866327254831,0.0,0.0,22526.0,1,3,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,12514.444444444443,1,0,1_1,1_0 -1143,0.0,11.0,77.0,111,77,70,2.0,11562,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2618.461092494148,0.0,5500.0,12618.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12618.0,2,0,2_0,2_0 -1144,10.0,11.0,61.0,111,53,70,0.0,11563,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2828.560434504865,2124.0,0.0,42326.0,1,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28217.333333333332,4,0,4_0,4_0 -1145,6.0,6.0,56.0,211,63,50,0.0,11566,0.0,350.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2266.652871442527,0.0,0.0,21520.0,1,1,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21520.0,3,0,3_0,3_0 -1146,1.0,2.0,50.0,112,85,71,0.0,11567,0.0,99999.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3236.3143636880145,2600.0,0.0,27570.0,5,1,6,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,13785.0,2,0,2_0,2_1 -1147,13.0,19.0,77.0,400,78,70,0.0,11568,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2936.1852742593483,0.0,0.0,14844.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14844.0,2,0,2_0,2_1 -1148,1.0,6.0,52.0,111,64,50,2.0,11569,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3904.412832342617,5467.0,16500.0,67213.0,1,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,44808.666666666664,5,0,5,5_0 -1149,10.0,10.0,73.0,111,75,50,0.0,1157,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1644.7906789172966,1555.0,0.0,18877.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18877.0,3,0,3_0,3_0 -1150,8.0,8.0,69.0,111,74,20,0.0,11572,0.0,0.0,0.0,0.0,2.0,6.0,0.0,4.0,2.5,897.7490242153904,2600.0,0.0,79824.0,5,1,10,8.0,5,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,31929.6,5,0,5,5_0 -1151,10.0,10.0,78.0,111,75,41,0.0,11574,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1415.0078190619047,2600.0,0.0,34055.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,22703.333333333332,4,0,4_0,4_0 -1152,18.0,18.0,83.0,111,77,60,0.0,11575,0.0,0.0,0.0,347.0,0.0,4.0,0.0,1.0,1.0,2869.9265630293453,0.0,0.0,18190.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18190.0,3,0,3_0,3_0 -1153,16.0,20.0,84.0,400,71,50,0.0,11576,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1783.0072739083462,0.0,0.0,16787.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11191.333333333334,1,0,1_0,1_1 -1154,1.0,10.0,25.0,112,63,50,2.0,11577,0.0,100.0,30.0,0.0,2.0,4.0,2.0,4.0,2.1,4306.762763469834,0.0,2300.0,44676.0,1,3,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,21274.285714285714,3,0,3_1,3_1 -1155,2.0,5.0,31.0,111,42,20,0.0,11578,0.0,50.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1291.2292101057972,0.0,0.0,42489.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23605.0,4,0,4_0,4_0 -1156,4.0,12.0,55.0,112,37,31,0.0,11580,0.0,970.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2895.2994806120664,5252.0,0.0,52114.0,1,2,10,0.0,3,4.0,0.0,0.0,1,0,0,0,0,0,0.0,4.0,34742.666666666664,5,0,5,5_1 -1157,12.0,15.0,74.0,111,78,71,0.0,11581,0.0,0.0,0.0,391.0,1.0,5.0,1.0,3.0,2.0,4508.944646925959,0.0,0.0,32970.0,5,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16485.0,2,0,2_0,2_0 -1158,4.0,7.0,78.0,112,78,71,0.0,11582,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2971.944357925941,2353.0,0.0,20180.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13453.333333333334,2,0,2_0,2_1 -1159,2.0,12.0,32.0,112,55,71,0.0,11584,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2850.6168441743835,3640.0,0.0,11020.0,4,2,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,5247.619047619048,1,0,1_1,1_1 -1160,10.0,10.0,55.0,111,56,60,0.0,11585,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3000.787231380257,0.0,0.0,39000.0,1,4,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,26000.0,4,0,4_0,4_0 -1161,0.0,0.0,21.0,111,46,41,0.0,11587,0.0,0.0,0.0,167.0,1.0,2.0,0.0,1.0,1.0,3437.5673858388604,0.0,0.0,19853.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19853.0,3,0,3_1,3_0 -1162,0.0,0.0,39.0,111,23,10,0.0,1159,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3019.8178991609147,0.0,0.0,42284.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20135.238095238095,3,0,3_0,3_0 -1163,6.0,7.0,63.0,300,72,50,0.0,11591,0.0,250.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1632.429612082951,0.0,0.0,25971.0,5,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12985.5,2,0,2_0,2_1 -1164,0.0,0.0,82.0,111,78,50,0.0,11592,0.0,0.0,0.0,496.0,0.0,3.0,0.0,1.0,1.0,2539.5879003457594,0.0,0.0,22217.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22217.0,4,0,4_0,4_0 -1165,1.0,1.0,80.0,111,75,12,0.0,11593,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3427.8484502936703,0.0,0.0,31025.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,31025.0,5,0,5,5_0 -1166,10.0,10.0,73.0,112,77,41,0.0,11594,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2814.2151998455447,2340.0,0.0,25281.0,5,4,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25281.0,4,0,4_0,4_0 -1167,0.0,0.0,70.0,111,77,70,0.0,11595,0.0,0.0,0.0,307.0,0.0,5.0,0.0,1.0,1.0,3403.1139654158637,0.0,0.0,15909.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15909.0,2,0,2_0,2_0 -1168,2.0,2.0,60.0,221,22,41,0.0,11597,0.0,20.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,4350.047173986826,5365.0,0.0,107941.0,1,2,1,1.0,3,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,71960.66666666667,5,0,5,5_0 -1169,5.0,17.0,67.0,111,74,50,0.0,11599,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1439.0974587518851,0.0,0.0,33564.0,5,1,7,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,33564.0,5,0,5,5_0 -1170,13.0,22.0,52.0,111,54,50,0.0,1160,0.0,220.0,150.0,0.0,2.0,6.0,1.0,3.0,2.0,1275.275994637106,2681.0,0.0,37428.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,18714.0,3,0,3_0,3_0 -1171,0.0,0.0,29.0,111,46,71,0.0,11602,0.0,0.0,0.0,500.0,1.0,1.0,0.0,1.0,1.0,3687.8302207467145,0.0,0.0,14725.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14725.0,2,0,2_0,2_0 -1172,1.0,5.0,40.0,221,56,71,2.0,11603,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,3210.4840415226927,0.0,5200.0,15471.0,1,3,1,2.0,2,1.0,1.0,0.0,0,1,0,0,0,1,1.0,0.0,11900.76923076923,1,0,1_1,1_0 -1173,1.0,4.0,45.0,111,48,50,0.0,11607,0.0,199998.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2356.867405566215,0.0,0.0,53371.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,26685.5,4,0,4_0,4_0 -1174,0.0,0.0,29.0,111,46,10,0.0,1161,0.0,0.0,0.0,600.0,1.0,1.0,0.0,1.0,1.0,3319.1454399728686,0.0,0.0,20951.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20951.0,3,0,3_0,3_0 -1175,2.0,13.0,50.0,111,52,43,0.0,11610,0.0,150.0,0.0,0.0,1.0,6.0,2.0,3.0,2.0,1413.8662182543787,2601.0,0.0,15131.0,1,1,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,7565.5,1,0,1_0,1_0 -1176,0.0,0.0,90.0,111,86,70,0.0,11611,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2826.544038092354,0.0,0.0,9640.0,6,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9640.0,1,0,1_0,1_0 -1177,9.0,16.0,41.0,111,63,50,0.0,11612,0.0,200.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,1907.782296863941,2600.0,0.0,23691.0,1,3,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,15794.0,2,0,2_1,2_0 -1178,2.0,18.0,52.0,111,63,71,0.0,11613,0.0,99999.0,0.0,0.0,5.0,4.0,4.0,6.0,3.3,2981.237686319186,1040.0,0.0,78770.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23869.69696969697,4,0,4_0,4_0 -1179,4.0,7.0,39.0,221,37,50,0.0,11615,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3972.0311190829143,9090.0,0.0,38150.0,1,2,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21194.444444444445,3,0,3_0,3_0 -1180,16.0,16.0,75.0,120,71,71,0.0,11616,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3119.2319454254757,1768.0,0.0,9774.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9774.0,1,0,1_0,1_1 -1181,1.0,1.0,60.0,111,33,10,2.0,11617,0.0,220.0,0.0,0.0,2.0,9.0,2.0,4.0,2.5,1304.1811661974587,6084.0,14402.0,195553.0,1,1,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,78221.2,5,0,5,5_0 -1182,10.0,10.0,68.0,112,74,12,0.0,11618,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1967.705624357852,2107.0,0.0,41869.0,5,2,7,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27912.666666666668,4,0,4_0,4_0 -1183,8.0,9.0,46.0,111,56,71,0.0,11619,0.0,200.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2193.0817433202355,0.0,0.0,9276.0,4,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,6184.0,1,0,1_0,1_0 -1184,0.0,0.0,56.0,111,68,70,0.0,11622,0.0,0.0,0.0,348.0,3.0,4.0,2.0,3.0,2.0,1689.8592036387743,0.0,0.0,22808.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11404.0,1,0,1_1,1_0 -1185,0.0,0.0,69.0,400,75,50,0.0,11624,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1304.5007029820258,0.0,0.0,12853.0,5,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12853.0,2,0,2_0,2_0 -1186,13.0,13.0,46.0,112,64,50,0.0,11625,0.0,100.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,875.3010390159945,2553.0,0.0,46687.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20298.695652173916,3,0,3_0,3_1 -1187,11.0,11.0,63.0,221,78,50,0.0,11629,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2068.513480379196,0.0,0.0,24549.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,16366.0,2,0,2_0,2_0 -1188,6.0,10.0,36.0,300,43,20,0.0,1163,0.0,1140.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1872.791428755877,3314.0,0.0,42684.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23713.333333333332,4,0,4_0,4_1 -1189,0.0,5.0,68.0,112,77,71,0.0,11630,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2838.2985177301844,1040.0,0.0,23882.0,5,1,6,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,23882.0,4,0,4_0,4_1 -1190,0.0,0.0,31.0,111,54,31,0.0,11631,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2551.6165501150035,0.0,0.0,8.0,4,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8.0,1,0,1_0,1_0 -1191,0.0,0.0,72.0,111,77,50,0.0,11633,0.0,0.0,0.0,233.0,0.0,4.0,0.0,1.0,1.0,1492.9072398051744,0.0,0.0,13624.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13624.0,2,0,2_0,2_0 -1192,0.0,0.0,37.0,111,46,20,0.0,11635,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2227.3043730809486,0.0,0.0,80509.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,53672.666666666664,5,0,5,5_0 -1193,0.0,0.0,74.0,111,77,41,0.0,11636,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3928.2813099940854,0.0,0.0,15202.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15202.0,2,0,2_0,2_0 -1194,4.0,6.0,57.0,111,47,43,0.0,11637,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2387.0682497352077,0.0,0.0,32080.0,1,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21386.666666666668,3,0,3_0,3_0 -1195,0.0,0.0,48.0,111,85,50,0.0,11639,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3318.18285477914,0.0,0.0,15958.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15958.0,2,0,2_1,2_0 -1196,19.0,19.0,70.0,111,72,50,0.0,1164,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1360.5876027934544,0.0,0.0,12646.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12646.0,2,0,2_0,2_0 -1197,4.0,15.0,55.0,111,45,31,0.0,11640,0.0,0.0,100.0,384.0,1.0,3.0,0.0,1.0,1.0,2832.404450907986,2080.0,0.0,32393.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,32393.0,5,0,5,5_0 -1198,0.0,0.0,38.0,111,81,31,0.0,11641,0.0,0.0,0.0,71.0,1.0,1.0,0.0,1.0,1.0,3354.9078491860128,0.0,0.0,13918.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13918.0,2,0,2_1,2_0 -1199,0.0,10.0,27.0,112,52,31,0.0,11643,0.0,160.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2297.7563411732535,1560.0,0.0,42640.0,1,3,10,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23688.888888888887,4,0,4_0,4_0 -1200,4.0,6.0,54.0,111,34,10,0.0,11644,0.0,670.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2889.441062208737,4433.0,0.0,33052.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,33052.0,5,0,5,5_0 -1201,14.0,17.0,63.0,300,78,50,0.0,11647,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1658.3328347824356,0.0,0.0,31776.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21184.0,3,0,3_0,3_1 -1202,4.0,4.0,46.0,221,55,50,0.0,11649,0.0,99999.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1143.5479976990002,0.0,0.0,28432.0,1,1,1,3.0,2,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18954.666666666668,3,0,3_0,3_0 -1203,4.0,4.0,59.0,111,74,50,0.0,1165,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1137.3889318902327,0.0,0.0,25157.0,4,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16771.333333333332,2,0,2_0,2_0 -1204,1.0,2.0,25.0,111,62,31,2.0,11650,0.0,500.0,0.0,350.0,2.0,2.0,0.0,2.0,1.5,3209.0563405473936,0.0,10900.0,34483.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,22988.666666666668,4,0,4_1,4_0 -1205,0.0,0.0,25.0,111,46,43,0.0,11651,0.0,0.0,0.0,300.0,1.0,3.0,0.0,1.0,1.0,3872.978279617956,0.0,0.0,31954.0,4,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31954.0,5,0,5,5_0 -1206,0.0,7.0,68.0,112,78,50,2.0,11653,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3015.065271494822,2632.0,11000.0,15478.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15478.0,2,0,2_0,2_1 -1207,14.0,14.0,87.0,111,72,70,0.0,11654,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1688.122249862574,1385.0,0.0,19319.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12879.333333333334,2,0,2_0,2_0 -1208,6.0,11.0,37.0,112,63,50,0.0,11656,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2105.238347765627,3301.0,0.0,30928.0,1,2,8,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,14727.619047619048,2,0,2_0,2_1 -1209,2.0,2.0,33.0,111,55,31,0.0,11657,0.0,40.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3579.3214147032463,0.0,0.0,28722.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,13677.142857142857,2,0,2_0,2_0 -1210,2.0,3.0,62.0,111,74,41,0.0,11658,0.0,0.0,200.0,0.0,1.0,5.0,0.0,2.0,1.5,3113.195739116531,0.0,0.0,46700.0,5,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,31133.333333333332,5,0,5,5_0 -1211,6.0,6.0,36.0,112,38,10,0.0,11659,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2073.3868959683764,0.0,0.0,56737.0,1,2,9,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,27017.619047619046,4,0,4_0,4_1 -1212,11.0,19.0,38.0,212,48,71,0.0,1166,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,2.9,2262.4551675151642,1560.0,0.0,41499.0,1,2,3,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,14310.0,2,0,2_1,2_1 -1213,3.0,3.0,37.0,112,31,10,0.0,11666,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,1.8,3498.455931031536,0.0,0.0,122371.0,1,2,7,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,67983.88888888889,5,0,5,5_1 -1214,0.0,0.0,87.0,111,75,60,0.0,11667,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,3118.2581064417554,0.0,0.0,24420.0,5,4,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16280.0,2,0,2_0,2_0 -1215,21.0,32.0,67.0,120,75,71,0.0,11669,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2361.444216652082,2939.0,0.0,33059.0,5,1,0,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22039.333333333332,4,0,4_0,4_0 -1216,3.0,13.0,58.0,112,55,70,0.0,1167,0.0,500.0,1000.0,0.0,2.0,5.0,1.0,2.0,1.5,1797.2727601498834,6605.0,0.0,29840.0,1,1,6,0.0,2,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,19893.333333333332,3,0,3_0,3_1 -1217,3.0,3.0,51.0,111,53,60,0.0,11670,0.0,1200.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1874.8737663505945,5510.0,0.0,47630.0,1,1,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23815.0,4,0,4_0,4_0 -1218,0.0,2.0,21.0,111,84,41,0.0,11672,0.0,70.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3343.592488423902,0.0,0.0,971.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,971.0,1,0,1_0,1_0 -1219,8.0,9.0,80.0,111,78,70,0.0,11674,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1996.3179531714338,1924.0,0.0,31220.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20813.333333333332,3,0,3_0,3_0 -1220,7.0,7.0,33.0,111,46,60,0.0,11675,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1916.4568923033025,4680.0,0.0,44130.0,1,4,7,5.0,3,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,29420.0,5,0,5,5_0 -1221,0.0,11.0,80.0,111,78,50,2.0,11676,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1393.1624609830212,1319.0,3500.0,23705.0,5,4,8,6.0,3,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,15803.333333333334,2,0,2_0,2_0 -1222,1.0,18.0,45.0,221,63,71,2.0,11677,0.0,325.0,0.0,0.0,1.0,5.0,4.0,6.0,3.1,1162.681721064473,3380.0,1500.0,32125.0,1,3,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,10362.90322580645,1,0,1_1,1_0 -1223,6.0,6.0,45.0,111,23,20,0.0,1168,0.0,750.0,100.0,0.0,2.0,7.0,2.0,4.0,2.1,2495.704102423825,0.0,0.0,48449.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23070.95238095238,4,0,4_0,4_0 -1224,12.0,12.0,52.0,111,54,41,0.0,11680,0.0,0.0,90.0,0.0,3.0,5.0,1.0,3.0,2.0,1282.2317969416865,0.0,0.0,26533.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,13266.5,2,0,2_0,2_0 -1225,4.0,8.0,54.0,111,38,12,0.0,11681,0.0,0.0,0.0,1950.0,2.0,4.0,2.0,4.0,2.5,1580.920505216747,2392.0,0.0,38150.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,15260.0,2,0,2_0,2_0 -1226,5.0,22.0,24.0,111,48,20,0.0,11684,0.0,0.0,0.0,369.0,1.0,2.0,0.0,1.0,1.0,2682.715346082845,0.0,0.0,21326.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21326.0,3,0,3_0,3_0 -1227,0.0,24.0,27.0,120,56,50,2.0,11685,0.0,310.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2924.6345136920295,3121.0,5000.0,40272.0,1,2,0,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,22373.333333333332,4,0,4_0,4_0 -1228,5.0,9.0,64.0,111,78,71,0.0,11687,0.0,0.0,0.0,292.0,0.0,3.0,0.0,1.0,1.0,2722.6298470741694,0.0,0.0,11420.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11420.0,1,0,1_0,1_0 -1229,0.0,5.0,62.0,112,78,50,0.0,11690,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1702.54863947325,2288.0,0.0,34251.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22834.0,4,0,4_0,4_1 -1230,0.0,0.0,92.0,111,78,71,0.0,11691,0.0,0.0,0.0,180.0,0.0,1.0,0.0,1.0,1.0,3867.882603156059,0.0,0.0,13042.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13042.0,2,0,2_1,2_0 -1231,5.0,13.0,50.0,211,68,71,0.0,11692,0.0,400.0,0.0,483.0,1.0,5.0,1.0,3.0,2.0,2898.1852356379677,1635.0,0.0,18437.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9218.5,1,0,1_1,1_0 -1232,2.0,8.0,26.0,111,33,12,0.0,11693,0.0,99999.0,0.0,224.0,1.0,2.0,0.0,1.0,1.0,3341.6231798340054,0.0,0.0,21042.0,1,3,7,5.0,1,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,21042.0,3,0,3_1,3_0 -1233,7.0,15.0,67.0,221,78,50,0.0,11694,0.0,0.0,0.0,111.0,0.0,4.0,0.0,2.0,1.5,4046.9388232470674,3900.0,0.0,15825.0,5,3,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,10550.0,1,0,1_1,1_0 -1234,21.0,21.0,82.0,112,78,71,0.0,11696,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2845.309021124487,2288.0,0.0,18855.0,5,1,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18855.0,3,0,3_0,3_0 -1235,8.0,8.0,44.0,111,34,10,0.0,11697,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1825.3466609780373,8164.0,0.0,23320.0,1,2,9,7.0,4,2.0,1.0,0.0,0,0,0,1,0,1,0.0,2.0,10139.13043478261,1,0,1_1,1_0 -1236,3.0,10.0,79.0,111,78,71,0.0,11699,0.0,600.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,4377.526054582167,2080.0,0.0,31450.0,5,1,5,4.0,5,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15725.0,2,0,2_0,2_0 -1237,11.0,11.0,70.0,111,42,20,0.0,117,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1058.6105808283683,0.0,0.0,44626.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,29750.666666666668,5,0,5,5_0 -1238,1.0,4.0,64.0,112,75,50,2.0,1170,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1834.710356240941,3120.0,11119.0,25282.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25282.0,4,0,4_0,4_1 -1239,0.0,21.0,57.0,111,85,41,0.0,11700,0.0,0.0,0.0,0.0,0.0,6.0,1.0,3.0,2.0,1816.775274528026,4160.0,0.0,28828.0,5,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14414.0,2,0,2_0,2_0 -1240,6.0,19.0,25.0,111,47,31,0.0,11701,0.0,0.0,0.0,584.0,1.0,3.0,0.0,2.0,1.5,3773.7984042749936,2558.0,0.0,23091.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,15394.0,2,0,2_1,2_0 -1241,9.0,9.0,46.0,112,38,10,0.0,11702,0.0,99999.0,160.0,0.0,2.0,7.0,2.0,4.0,2.5,2921.025870973426,0.0,0.0,58797.0,1,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23518.8,4,0,4_0,4_1 -1242,5.0,5.0,43.0,111,45,30,0.0,11703,0.0,60.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2882.721546122712,0.0,0.0,60526.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,28821.90476190476,4,0,4_0,4_0 -1243,16.0,16.0,69.0,300,74,20,0.0,11704,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1599.5667820485921,3562.0,0.0,48791.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,32527.333333333332,5,0,5,5_1 -1244,4.0,14.0,78.0,111,78,71,0.0,11705,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,6193.221009766054,0.0,0.0,21080.0,5,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,10540.0,1,0,1_0,1_0 -1245,13.0,13.0,60.0,111,75,42,0.0,11706,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2844.9025180628346,0.0,0.0,18020.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18020.0,3,0,3_0,3_0 -1246,0.0,0.0,60.0,111,77,70,0.0,11707,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1652.6198802412919,0.0,0.0,8933.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8933.0,1,0,1_0,1_0 -1247,1.0,4.0,31.0,112,53,44,0.0,11709,0.0,120.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2159.8052722776124,5461.0,0.0,49721.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27622.777777777777,4,0,4_0,4_1 -1248,0.0,0.0,84.0,111,77,70,0.0,1171,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3578.82404842561,0.0,0.0,18710.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18710.0,3,0,3_0,3_0 -1249,8.0,9.0,55.0,400,54,50,0.0,11711,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1731.506444460453,1561.0,0.0,20742.0,4,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20742.0,3,0,3_0,3_1 -1250,1.0,1.0,20.0,111,84,41,1.0,11712,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3691.4173727099333,0.0,8000.0,4705.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,4705.0,1,0,1_1,1_0 -1251,7.0,7.0,44.0,111,34,10,0.0,11714,0.0,515.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1395.5195007453417,2600.0,0.0,66827.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,29055.21739130435,5,0,5,5_0 -1252,3.0,8.0,58.0,400,77,70,0.0,11715,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2453.0234364343087,2808.0,0.0,13834.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13834.0,2,0,2_0,2_0 -1253,2.0,7.0,50.0,112,54,60,0.0,11716,0.0,99999.0,200.0,0.0,1.0,5.0,1.0,3.0,2.0,1271.873567448219,5788.0,0.0,41270.0,1,2,8,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,20635.0,3,0,3_0,3_0 -1254,0.0,0.0,34.0,111,64,31,1.0,11717,0.0,0.0,100.0,311.0,1.0,1.0,0.0,1.0,1.0,3090.9429231939635,0.0,15000.0,17667.0,1,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17667.0,3,0,3_0,3_0 -1255,4.0,4.0,40.0,111,55,31,0.0,11719,0.0,2000.0,40.0,0.0,2.0,6.0,3.0,5.0,2.6,2486.9340720776468,2236.0,0.0,50498.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,19422.30769230769,3,0,3_0,3_0 -1256,0.0,0.0,45.0,111,47,31,0.0,11720,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3648.121486632647,0.0,0.0,39815.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,39815.0,5,0,5,5_0 -1257,0.0,0.0,38.0,111,68,71,0.0,11722,0.0,0.0,0.0,43.0,1.0,2.0,1.0,2.0,1.5,5109.600708203153,0.0,0.0,12771.0,4,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8514.0,1,0,1_1,1_0 -1258,0.0,8.0,57.0,300,77,50,2.0,11725,0.0,1800.0,60.0,0.0,2.0,6.0,1.0,3.0,2.0,1902.199249874934,4005.0,6000.0,102964.0,5,1,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,2.0,2.0,51482.0,5,0,5,5_1 -1259,13.0,13.0,46.0,111,48,31,0.0,11726,0.0,0.0,360.0,0.0,2.0,4.0,2.0,4.0,2.5,2859.1234158062916,3054.0,0.0,67256.0,1,4,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,3.0,0.0,26902.4,4,0,4_0,4_0 -1260,9.0,9.0,52.0,120,65,70,0.0,11727,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2864.6086969966536,0.0,0.0,44570.0,1,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,29713.333333333332,5,0,5,5_0 -1261,20.0,20.0,72.0,111,78,71,0.0,11730,0.0,0.0,0.0,301.0,0.0,3.0,0.0,2.0,1.5,3201.498869310514,0.0,0.0,28720.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19146.666666666668,3,0,3_0,3_0 -1262,0.0,5.0,37.0,112,52,31,2.0,11734,0.0,400.0,0.0,0.0,2.0,7.0,4.0,6.0,2.7,1328.706036295306,0.0,14000.0,46376.0,1,2,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,17176.296296296296,3,0,3_1,3_0 -1263,1.0,14.0,22.0,212,62,42,2.0,11735,0.0,450.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2456.1436049060508,0.0,2500.0,15796.0,1,3,3,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,15796.0,2,0,2_1,2_1 -1264,1.0,1.0,60.0,111,75,50,1.0,11737,0.0,0.0,40.0,0.0,1.0,4.0,0.0,2.0,1.5,2255.7968804820634,0.0,9000.0,38185.0,5,2,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,25456.666666666668,4,0,4_0,4_0 -1265,7.0,8.0,44.0,111,37,10,0.0,11738,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2194.5434318499474,0.0,0.0,46576.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22179.04761904762,4,0,4_0,4_0 -1266,0.0,0.0,77.0,111,86,71,0.0,11739,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3140.254515312898,0.0,0.0,1988.0,6,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,1988.0,1,0,1_0,1_0 -1267,6.0,16.0,47.0,111,67,50,0.0,1174,0.0,0.0,0.0,365.0,1.0,4.0,1.0,2.0,1.5,2795.693086587096,2080.0,0.0,21350.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,14233.333333333334,2,0,2_1,2_0 -1268,2.0,2.0,63.0,111,34,10,0.0,11740,0.0,0.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,2349.0302359147886,0.0,0.0,90092.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,60061.333333333336,5,0,5,5_0 -1269,3.0,3.0,58.0,111,34,10,0.0,11741,0.0,120.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,5634.528286466163,1425.0,0.0,94027.0,1,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,62684.666666666664,5,0,5,5_0 -1270,5.0,10.0,54.0,400,64,71,0.0,11743,0.0,10.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,7467.858043762015,0.0,0.0,30769.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,15384.5,2,0,2_0,2_0 -1271,0.0,0.0,83.0,111,77,70,0.0,11745,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3333.3624074821923,0.0,0.0,15410.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15410.0,2,0,2_0,2_0 -1272,3.0,6.0,35.0,400,47,42,0.0,11746,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3133.556994549288,0.0,0.0,30535.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14540.476190476189,2,0,2_0,2_1 -1273,1.0,12.0,26.0,111,43,41,2.0,11748,0.0,0.0,5.0,92.0,1.0,3.0,3.0,5.0,2.4,3931.7982188218134,0.0,3000.0,34126.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,14219.166666666668,2,0,2_1,2_0 -1274,2.0,6.0,41.0,111,47,50,0.0,1175,0.0,150.0,0.0,612.0,1.0,3.0,1.0,2.0,1.3,3858.7068766621755,1245.0,0.0,30470.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23438.46153846154,4,0,4_0,4_0 -1275,4.0,6.0,57.0,111,21,20,0.0,11752,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,3530.900119938779,0.0,0.0,36364.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18182.0,3,0,3_0,3_0 -1276,6.0,6.0,53.0,120,42,10,0.0,11753,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3168.6336871671206,0.0,0.0,26029.0,1,4,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,26029.0,4,0,4_0,4_0 -1277,7.0,9.0,50.0,111,62,50,0.0,11755,0.0,150.0,25.0,386.0,2.0,2.0,0.0,2.0,1.5,2023.7990107953283,2486.0,0.0,46010.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,30673.333333333332,5,0,5,5_0 -1278,0.0,0.0,74.0,111,74,10,1.0,11756,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2196.9053151532958,3091.0,27500.0,133212.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,88808.0,5,0,5,5_0 -1279,2.0,2.0,50.0,120,42,31,0.0,11757,0.0,450.0,300.0,0.0,1.0,4.0,1.0,3.0,1.8,2455.8649763412295,5171.0,0.0,13542.0,1,1,0,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,7523.333333333333,1,0,1_0,1_0 -1280,0.0,6.0,26.0,112,64,50,0.0,1176,0.0,200.0,0.0,560.0,1.0,3.0,0.0,2.0,1.5,5547.134480247468,0.0,0.0,28630.0,1,3,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19086.666666666668,3,0,3_0,3_0 -1281,4.0,10.0,59.0,111,38,50,0.0,11760,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1907.1978786536035,3142.0,0.0,28540.0,4,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,14270.0,2,0,2_0,2_0 -1282,2.0,2.0,63.0,111,77,12,0.0,11761,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,3419.5864426352855,0.0,0.0,32559.0,4,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,21706.0,4,0,4_0,4_0 -1283,11.0,11.0,51.0,120,46,42,0.0,11762,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2254.672225825294,6134.0,0.0,45858.0,1,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,30572.0,5,0,5,5_1 -1284,5.0,6.0,50.0,112,52,50,0.0,11763,0.0,240.0,650.0,0.0,3.0,6.0,2.0,4.0,2.3,2779.6355144995105,884.0,0.0,48234.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20971.304347826088,3,0,3_0,3_0 -1285,3.0,12.0,58.0,111,68,70,0.0,11764,0.0,100.0,0.0,0.0,4.0,7.0,2.0,4.0,2.5,2621.0486126990572,2080.0,0.0,79188.0,1,2,8,7.0,4,4.0,0.0,0.0,0,0,0,1,0,0,1.0,3.0,31675.2,5,0,5,5_0 -1286,18.0,18.0,52.0,111,38,12,0.0,11765,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1380.2549325543048,0.0,0.0,54372.0,1,1,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,36248.0,5,0,5,5_0 -1287,5.0,6.0,54.0,111,43,20,0.0,11766,0.0,0.0,0.0,527.0,2.0,3.0,2.0,4.0,2.3,2476.437538603946,0.0,0.0,42472.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,18466.08695652174,3,0,3_0,3_0 -1288,14.0,14.0,58.0,111,45,60,0.0,11767,0.0,50.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,4590.454516006102,4940.0,0.0,39717.0,1,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,26478.0,4,0,4_0,4_0 -1289,1.0,3.0,44.0,112,64,50,2.0,11768,0.0,235.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1938.495926618072,3120.0,17300.0,49457.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23550.95238095238,4,0,4_0,4_1 -1290,4.0,4.0,37.0,111,38,31,0.0,11769,0.0,99999.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,2099.7480550750083,1560.0,0.0,42700.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18565.217391304348,3,0,3_0,3_0 -1291,0.0,0.0,25.0,111,55,71,0.0,11770,0.0,0.0,0.0,24.0,1.0,3.0,2.0,3.0,1.6,4236.884973857132,0.0,0.0,15748.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9842.5,1,0,1_1,1_0 -1292,6.0,6.0,51.0,111,54,43,0.0,11773,0.0,0.0,0.0,0.0,2.0,5.0,2.0,5.0,3.0,1713.579098271941,3120.0,0.0,25759.0,1,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,8586.333333333334,1,0,1_0,1_0 -1293,2.0,2.0,35.0,400,63,50,0.0,11775,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2588.5823764406646,3901.0,0.0,25540.0,1,2,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,25540.0,4,0,4_0,4_1 -1294,2.0,3.0,50.0,111,52,50,0.0,11776,0.0,0.0,100.0,258.0,3.0,4.0,2.0,3.0,2.0,2354.454953656295,1560.0,0.0,38218.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,19109.0,3,0,3_1,3_0 -1295,5.0,7.0,77.0,211,78,71,0.0,11777,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2512.239463468773,0.0,0.0,22273.0,5,1,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14848.666666666666,2,0,2_0,2_0 -1296,7.0,7.0,33.0,111,33,12,0.0,11779,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3802.9604841584046,0.0,0.0,37065.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,37065.0,5,0,5,5_0 -1297,1.0,1.0,23.0,111,46,20,2.0,11780,0.0,0.0,0.0,39.0,1.0,1.0,0.0,1.0,1.0,3138.992827949501,780.0,17185.0,22686.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,22686.0,4,0,4_1,4_0 -1298,17.0,17.0,81.0,300,77,70,0.0,11781,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2504.213792920182,0.0,0.0,15934.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15934.0,2,0,2_0,2_1 -1299,4.0,4.0,35.0,212,46,20,0.0,11783,0.0,300.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1647.0722777086721,3277.0,0.0,48218.0,1,2,3,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,22960.95238095238,4,0,4_0,4_1 -1300,1.0,11.0,20.0,111,56,41,2.0,11784,0.0,0.0,400.0,79.0,1.0,3.0,0.0,1.0,1.0,2975.133897555974,0.0,3500.0,6580.0,3,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,6580.0,1,0,1_1,1_0 -1301,16.0,18.0,44.0,300,52,41,0.0,11785,0.0,390.0,780.0,0.0,2.0,5.0,2.0,4.0,2.3,1993.542939378462,3692.0,0.0,2420.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,1052.1739130434783,1,0,1_0,1_1 -1302,15.0,15.0,63.0,111,75,41,0.0,11786,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1606.827567953401,0.0,0.0,28522.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,19014.666666666668,3,0,3_0,3_0 -1303,0.0,10.0,24.0,111,55,44,0.0,11787,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4387.172452883238,0.0,0.0,17981.0,1,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17981.0,3,0,3_0,3_0 -1304,1.0,2.0,38.0,112,56,50,2.0,1179,0.0,500.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,4972.897929238602,2238.0,15000.0,32684.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18157.777777777777,3,0,3_0,3_0 -1305,0.0,21.0,95.0,111,75,70,0.0,11790,0.0,0.0,0.0,420.0,0.0,4.0,0.0,2.0,1.5,3934.588456530853,0.0,0.0,29031.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19354.0,3,0,3_0,3_0 -1306,2.0,5.0,54.0,112,34,10,0.0,11791,0.0,200.0,150.0,0.0,2.0,7.0,1.0,3.0,2.0,2099.539926976304,4837.0,0.0,82752.0,1,2,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,41376.0,5,0,5,5_0 -1307,0.0,0.0,79.0,120,78,50,0.0,11793,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2648.6404156064204,0.0,0.0,18292.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18292.0,3,0,3_0,3_1 -1308,1.0,4.0,61.0,111,77,50,0.0,11795,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1238.3529735215682,0.0,0.0,31473.0,5,2,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20982.0,3,0,3_0,3_0 -1309,8.0,15.0,39.0,112,22,41,0.0,11796,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,3379.9891959084975,0.0,0.0,4273.0,1,2,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,3286.9230769230767,1,0,1_1,1_1 -1310,4.0,4.0,41.0,111,34,31,0.0,11797,0.0,210.0,2.0,0.0,2.0,6.0,2.0,4.0,2.5,3771.537181974064,1560.0,0.0,70723.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,28289.2,4,0,4_0,4_0 -1311,1.0,4.0,43.0,112,54,50,0.0,11798,0.0,250.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2692.3175334485873,2908.0,0.0,25402.0,1,1,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,25402.0,4,0,4_0,4_1 -1312,3.0,4.0,73.0,112,74,10,0.0,1180,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,1466.2643731156982,0.0,0.0,30487.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,20324.666666666668,3,0,3_0,3_1 -1313,0.0,19.0,49.0,112,85,50,0.0,11800,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.8,1810.7674714737761,1300.0,0.0,13100.0,6,3,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,7277.777777777777,1,0,1_1,1_1 -1314,0.0,5.0,23.0,211,67,43,0.0,11801,0.0,100.0,0.0,170.0,1.0,4.0,1.0,2.0,1.3,8089.903221038263,780.0,0.0,14090.0,4,3,2,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10838.461538461537,1,0,1_1,1_0 -1315,7.0,11.0,48.0,300,68,71,0.0,11802,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,2954.1368261415505,0.0,0.0,18838.0,4,1,0,0.0,2,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,9419.0,1,0,1_0,1_1 -1316,3.0,6.0,65.0,112,38,12,0.0,11803,0.0,0.0,350.0,0.0,2.0,9.0,1.0,3.0,2.0,2108.8628646764155,4004.0,0.0,68355.0,1,1,8,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,34177.5,5,0,5,5_1 -1317,15.0,20.0,61.0,111,74,50,0.0,11804,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1243.8925440680741,4160.0,0.0,111115.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,74076.66666666667,5,0,5,5_0 -1318,0.0,0.0,43.0,111,54,60,0.0,11805,0.0,0.0,0.0,113.0,2.0,4.0,1.0,4.0,2.3,2352.095661520782,0.0,0.0,33494.0,1,3,7,5.0,5,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14562.608695652176,2,0,2_1,2_0 -1319,8.0,8.0,43.0,300,37,10,0.0,11806,0.0,750.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1400.241329222649,3120.0,0.0,39726.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,39726.0,5,0,5,5_1 -1320,7.0,9.0,47.0,112,37,20,0.0,11807,0.0,500.0,0.0,1150.0,2.0,4.0,1.0,3.0,1.8,1903.369095953496,1558.0,0.0,42504.0,1,3,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23613.333333333332,4,0,4_0,4_1 -1321,0.0,0.0,49.0,111,67,71,0.0,11808,0.0,0.0,0.0,139.0,1.0,2.0,0.0,1.0,1.0,2405.235589635302,0.0,0.0,14398.0,1,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14398.0,2,0,2_1,2_0 -1322,16.0,16.0,87.0,211,77,70,0.0,11811,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1434.4470464255887,0.0,0.0,27468.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18312.0,3,0,3_0,3_0 -1323,2.0,2.0,72.0,112,78,70,0.0,11812,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1964.826942609201,0.0,0.0,33340.0,5,2,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22226.666666666668,4,0,4_0,4_1 -1324,0.0,0.0,54.0,111,77,50,0.0,11813,0.0,0.0,0.0,209.0,0.0,2.0,0.0,1.0,1.0,2964.356133522648,0.0,0.0,12322.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12322.0,1,0,1_1,1_0 -1325,6.0,7.0,52.0,300,63,41,0.0,11816,0.0,200.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1760.3257328063223,0.0,0.0,8418.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,8418.0,1,0,1_1,1_1 -1326,0.0,0.0,77.0,111,78,71,0.0,11817,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3383.2046535629815,0.0,0.0,24150.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16100.0,2,0,2_0,2_0 -1327,4.0,11.0,50.0,112,23,50,0.0,11819,0.0,0.0,200.0,0.0,2.0,7.0,4.0,6.0,3.1,995.8685073647486,6947.0,0.0,146565.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,47279.032258064515,5,0,5,5_1 -1328,4.0,5.0,62.0,111,72,12,0.0,11820,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1451.461301868321,0.0,0.0,54367.0,5,1,7,6.0,3,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,36244.666666666664,5,0,5,5_0 -1329,3.0,12.0,27.0,111,56,71,0.0,11821,0.0,100.0,0.0,310.0,2.0,3.0,3.0,5.0,2.4,8341.563339660568,0.0,0.0,32487.0,1,3,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13536.25,2,0,2_1,2_0 -1330,1.0,13.0,46.0,111,46,31,2.0,11822,0.0,120.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3697.307285264527,1154.0,3000.0,29653.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19768.666666666668,3,0,3_0,3_0 -1331,4.0,4.0,54.0,112,31,10,0.0,11823,0.0,900.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1094.0600021085656,2600.0,0.0,89361.0,1,1,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,59574.0,5,0,5,5_0 -1332,2.0,5.0,63.0,112,74,60,0.0,11824,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1931.845904274024,1976.0,0.0,20350.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,13566.666666666666,2,0,2_0,2_1 -1333,0.0,0.0,40.0,300,21,50,1.0,11825,0.0,300.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1675.087257263808,2600.0,7990.0,37200.0,1,2,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,1,0.0,2.0,15500.0,2,0,2_1,2_1 -1334,0.0,0.0,85.0,111,78,70,0.0,11827,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3277.370731852173,0.0,0.0,25380.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25380.0,4,0,4_0,4_0 -1335,5.0,5.0,52.0,211,33,20,0.0,11830,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1979.793218849561,4145.0,0.0,18740.0,1,1,4,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,18740.0,3,0,3_0,3_0 -1336,2.0,10.0,29.0,300,62,31,0.0,11831,0.0,0.0,200.0,275.0,1.0,3.0,0.0,1.0,1.0,2241.868992804478,3542.0,0.0,15540.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,15540.0,2,0,2_0,2_1 -1337,6.0,10.0,49.0,300,11,44,0.0,11832,0.0,500.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2333.8134069107864,3666.0,0.0,23224.0,1,2,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,12902.222222222223,2,0,2_0,2_1 -1338,3.0,3.0,57.0,300,22,12,0.0,11833,0.0,1700.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,987.8034108871612,3016.0,0.0,74153.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,49435.333333333336,5,0,5,5_1 -1339,0.0,0.0,85.0,300,77,70,0.0,11835,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2459.558228809661,0.0,0.0,9697.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9697.0,1,0,1_0,1_1 -1340,2.0,2.0,44.0,112,47,31,0.0,11839,0.0,150.0,80.0,0.0,2.0,5.0,3.0,5.0,2.8,2597.8659254913437,0.0,0.0,55417.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19791.785714285714,3,0,3_0,3_0 -1341,6.0,7.0,59.0,112,38,31,0.0,1184,0.0,450.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2416.367595057327,3900.0,0.0,62920.0,1,1,10,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,41946.666666666664,5,0,5,5_0 -1342,26.0,26.0,61.0,112,75,41,0.0,11840,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2076.320505326403,1040.0,0.0,39880.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,26586.666666666668,4,0,4_0,4_1 -1343,6.0,19.0,53.0,111,42,71,0.0,11842,0.0,0.0,25.0,0.0,1.0,4.0,1.0,2.0,1.5,2910.9572688896924,1040.0,0.0,21930.0,1,3,5,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,14620.0,2,0,2_0,2_0 -1344,3.0,3.0,63.0,111,75,41,0.0,11843,0.0,0.0,0.0,0.0,0.0,3.0,1.0,3.0,2.0,2782.863432859991,0.0,0.0,59437.0,5,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29718.5,5,0,5,5_0 -1345,2.0,11.0,43.0,112,43,50,0.0,11844,0.0,0.0,0.0,252.0,2.0,3.0,1.0,2.0,1.5,3163.118621911298,0.0,0.0,20978.0,1,3,10,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,13985.333333333334,2,0,2_1,2_0 -1346,0.0,0.0,48.0,111,67,71,0.0,11845,0.0,0.0,0.0,24.0,1.0,1.0,0.0,1.0,1.0,2342.0074264955874,0.0,0.0,9123.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9123.0,1,0,1_1,1_0 -1347,14.0,14.0,77.0,111,78,50,0.0,11846,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3215.3892066694666,1604.0,0.0,23411.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15607.333333333334,2,0,2_0,2_0 -1348,11.0,14.0,64.0,400,74,41,0.0,11847,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2561.088402096456,2161.0,0.0,23919.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15946.0,2,0,2_0,2_1 -1349,20.0,20.0,85.0,111,72,41,0.0,11848,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3036.7959236545653,0.0,0.0,19373.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19373.0,3,0,3_0,3_0 -1350,0.0,0.0,48.0,111,85,71,0.0,11849,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,2776.5154470549473,0.0,0.0,12754.0,7,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7085.555555555556,1,0,1_1,1_0 -1351,9.0,9.0,90.0,111,75,71,0.0,1185,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3385.6831508634727,0.0,0.0,17530.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11686.666666666666,1,0,1_0,1_0 -1352,16.0,19.0,52.0,111,64,60,0.0,11850,0.0,0.0,0.0,0.0,1.0,4.0,4.0,6.0,3.3,2371.0640768138023,1040.0,0.0,30040.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,9103.030303030304,1,0,1_1,1_0 -1353,0.0,4.0,59.0,111,42,10,2.0,11852,0.0,0.0,320.0,0.0,2.0,5.0,2.0,4.0,2.5,1124.48660368016,0.0,6000.0,62933.0,1,1,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,25173.2,4,0,4_0,4_0 -1354,3.0,18.0,31.0,111,56,41,0.0,11853,0.0,10.0,0.0,58.0,1.0,1.0,0.0,1.0,1.0,3226.4221119588356,1041.0,0.0,11661.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,11661.0,1,0,1_1,1_0 -1355,9.0,11.0,56.0,111,54,41,0.0,11854,0.0,0.0,500.0,0.0,1.0,5.0,0.0,1.0,1.0,4067.535010851042,2774.0,0.0,26040.0,1,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,26040.0,4,0,4_0,4_0 -1356,0.0,11.0,21.0,111,84,41,0.0,11855,0.0,0.0,140.0,150.0,0.0,1.0,0.0,1.0,1.0,3013.5965300500907,0.0,0.0,7637.0,3,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,7637.0,1,0,1_1,1_0 -1357,2.0,3.0,70.0,112,72,70,0.0,11856,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,5606.378658737888,0.0,0.0,49955.0,5,1,9,2.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,33303.333333333336,5,0,5,5_0 -1358,5.0,20.0,47.0,111,62,50,0.0,11858,0.0,100.0,100.0,0.0,2.0,5.0,1.0,3.0,2.0,1420.1748053830331,0.0,0.0,45514.0,1,1,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,22757.0,4,0,4_0,4_0 -1359,0.0,0.0,46.0,111,45,60,1.0,11859,290.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,3414.5305886630904,708.0,9947.0,28729.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,0.0,14364.5,2,0,2_0,2_0 -1360,6.0,15.0,51.0,120,22,50,0.0,1186,0.0,110.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2599.541296428502,0.0,0.0,106708.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,71138.66666666667,5,0,5,5_1 -1361,0.0,0.0,35.0,111,31,12,0.0,11860,0.0,0.0,0.0,1253.0,1.0,2.0,0.0,1.0,1.0,4215.577505674881,0.0,0.0,105449.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,105449.0,5,0,5,5_0 -1362,6.0,6.0,84.0,120,71,71,0.0,11861,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2913.7252814956355,0.0,0.0,9345.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9345.0,1,0,1_0,1_1 -1363,4.0,4.0,67.0,111,75,71,0.0,11863,0.0,0.0,0.0,329.0,0.0,4.0,0.0,2.0,1.5,2576.8969295877846,0.0,0.0,36782.0,5,3,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24521.333333333332,4,0,4_0,4_0 -1364,4.0,14.0,36.0,111,43,31,0.0,11865,0.0,130.0,0.0,229.0,1.0,2.0,0.0,1.0,1.0,3279.2993695745513,0.0,0.0,17146.0,4,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,17146.0,3,0,3_1,3_0 -1365,0.0,0.0,19.0,111,84,41,0.0,11866,0.0,0.0,0.0,285.0,0.0,2.0,0.0,1.0,1.0,4307.427113270783,0.0,0.0,3312.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,3312.0,1,0,1_1,1_0 -1366,15.0,15.0,61.0,111,34,20,0.0,11867,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1894.665343307374,0.0,0.0,48006.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,48006.0,5,0,5,5_0 -1367,2.0,4.0,59.0,111,37,31,0.0,11870,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2870.3865577603256,2340.0,0.0,48945.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,48945.0,5,0,5,5_0 -1368,0.0,12.0,55.0,111,54,50,2.0,11871,0.0,0.0,600.0,321.0,3.0,5.0,2.0,4.0,2.5,1035.364826154803,0.0,1300.0,70498.0,1,3,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,1,3.0,0.0,28199.2,4,0,4_1,4_0 -1369,4.0,4.0,51.0,111,54,50,0.0,11872,0.0,120.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,2571.365394191593,788.0,0.0,41654.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27769.333333333332,4,0,4_0,4_0 -1370,0.0,0.0,76.0,111,78,70,0.0,11874,0.0,0.0,0.0,258.0,0.0,3.0,0.0,1.0,1.0,3587.8124362788917,0.0,0.0,17570.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,17570.0,3,0,3_1,3_0 -1371,9.0,9.0,71.0,112,72,50,0.0,11875,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1469.7693347057066,2171.0,0.0,31408.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20938.666666666668,3,0,3_0,3_1 -1372,5.0,13.0,62.0,111,86,70,0.0,11876,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2188.222984810959,0.0,0.0,5080.0,6,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,5080.0,1,0,1_0,1_0 -1373,0.0,13.0,25.0,112,63,70,0.0,11878,0.0,0.0,0.0,680.0,1.0,2.0,0.0,2.0,1.5,2030.1242804999747,0.0,0.0,25578.0,1,3,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17052.0,3,0,3_0,3_0 -1374,3.0,3.0,42.0,111,37,10,0.0,1188,0.0,800.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2774.545766410091,0.0,0.0,207309.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,98718.57142857142,5,0,5,5_0 -1375,0.0,0.0,57.0,111,78,71,0.0,11880,0.0,0.0,0.0,220.0,1.0,1.0,0.0,2.0,1.5,3763.903688478566,0.0,0.0,18459.0,7,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12306.0,1,0,1_1,1_0 -1376,0.0,0.0,37.0,111,46,20,1.0,11881,0.0,240.0,30.0,0.0,2.0,6.0,2.0,4.0,2.1,1783.6335257755288,4501.0,23000.0,47512.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22624.761904761905,4,0,4_0,4_0 -1377,2.0,3.0,29.0,111,33,10,0.0,11885,0.0,0.0,150.0,430.0,1.0,2.0,0.0,1.0,1.0,3330.3882996979187,1466.0,0.0,29542.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,29542.0,5,0,5,5_0 -1378,7.0,7.0,45.0,111,38,12,0.0,11886,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1729.6049261219182,0.0,0.0,178576.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,63777.14285714286,5,0,5,5_0 -1379,6.0,7.0,55.0,111,45,50,0.0,11888,0.0,400.0,0.0,630.0,2.0,4.0,0.0,2.0,1.5,2745.953237228292,2974.0,0.0,27542.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18361.333333333332,3,0,3_0,3_0 -1380,6.0,16.0,54.0,120,65,71,0.0,11889,0.0,72.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,4786.963008343521,1561.0,0.0,35530.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23686.666666666668,4,0,4_0,4_1 -1381,8.0,8.0,56.0,111,56,71,0.0,11892,0.0,0.0,0.0,0.0,2.0,5.0,1.0,2.0,1.5,2724.3699243993656,0.0,0.0,23540.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15693.333333333334,2,0,2_0,2_0 -1382,0.0,0.0,22.0,111,84,41,0.0,11894,0.0,0.0,0.0,640.0,0.0,3.0,0.0,1.0,1.0,4565.223291269515,0.0,0.0,8400.0,3,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8400.0,1,0,1_0,1_0 -1383,0.0,4.0,22.0,111,47,20,2.0,11896,0.0,30.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2598.995645342695,2860.0,8400.0,14359.0,1,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14359.0,2,0,2_1,2_0 -1384,4.0,13.0,57.0,111,52,50,0.0,11898,0.0,0.0,0.0,620.0,1.0,2.0,0.0,1.0,1.0,3664.5709489694877,0.0,0.0,30822.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,30822.0,5,0,5,5_0 -1385,0.0,0.0,34.0,111,55,41,0.0,11899,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3744.153014861146,0.0,0.0,1460.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,1460.0,1,0,1_0,1_0 -1386,0.0,0.0,77.0,112,77,70,1.0,119,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4168.7539927760145,0.0,30500.0,23423.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15615.333333333334,2,0,2_0,2_1 -1387,0.0,0.0,55.0,111,75,31,0.0,1190,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3461.158370213242,0.0,0.0,8684.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8684.0,1,0,1_1,1_0 -1388,2.0,2.0,57.0,111,77,71,0.0,11900,0.0,0.0,0.0,9.0,0.0,4.0,1.0,3.0,2.0,3789.7563512350994,0.0,0.0,26028.0,5,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13014.0,2,0,2_1,2_0 -1389,0.0,0.0,39.0,111,56,20,0.0,11901,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,2413.564099583958,0.0,0.0,18869.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11793.125,1,0,1_1,1_0 -1390,1.0,1.0,32.0,112,37,31,1.0,11902,0.0,400.0,0.0,515.0,2.0,4.0,1.0,3.0,1.8,1791.5776475211114,0.0,26500.0,41215.0,1,3,9,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22897.222222222223,4,0,4_0,4_0 -1391,21.0,21.0,62.0,300,77,50,0.0,11904,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2395.9821183104214,3269.0,0.0,5723.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,5723.0,1,0,1_0,1_1 -1392,6.0,6.0,44.0,112,67,50,0.0,11908,0.0,1600.0,120.0,0.0,3.0,6.0,3.0,5.0,2.8,1136.506191515843,5409.0,0.0,55607.0,1,1,7,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,19859.64285714286,3,0,3_0,3_0 -1393,12.0,12.0,48.0,111,67,50,0.0,11909,0.0,180.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1365.5637275608976,0.0,0.0,40235.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20117.5,3,0,3_0,3_0 -1394,3.0,11.0,38.0,111,63,50,0.0,1191,0.0,880.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1463.195788667658,0.0,0.0,27113.0,1,3,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12910.95238095238,2,0,2_1,2_0 -1395,1.0,6.0,47.0,111,22,50,2.0,11910,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1186.5438631334353,4118.0,13000.0,57325.0,1,4,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24923.913043478264,4,0,4_0,4_0 -1396,3.0,3.0,38.0,111,47,41,0.0,11911,0.0,0.0,200.0,0.0,1.0,5.0,2.0,4.0,2.3,2795.2467105951414,0.0,0.0,37668.0,1,4,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,16377.391304347828,2,0,2_0,2_0 -1397,0.0,13.0,65.0,111,47,41,0.0,11913,0.0,0.0,150.0,556.0,1.0,2.0,0.0,1.0,1.0,2977.9094984831604,3380.0,0.0,42355.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,42355.0,5,0,5,5_0 -1398,0.0,2.0,71.0,112,75,70,2.0,1192,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2794.8157777387573,2574.0,26400.0,20943.0,5,1,5,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20943.0,3,0,3_0,3_1 -1399,0.0,1.0,25.0,112,38,12,2.0,11920,0.0,650.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4774.638847459453,0.0,11000.0,64057.0,1,2,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,42704.666666666664,5,0,5,5_0 -1400,17.0,17.0,75.0,111,72,70,0.0,11922,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3194.684594022862,0.0,0.0,36566.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,24377.333333333332,4,0,4_0,4_0 -1401,0.0,0.0,29.0,111,52,71,0.0,11923,0.0,0.0,0.0,286.0,1.0,2.0,0.0,1.0,1.0,3199.1467425607793,0.0,0.0,15290.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15290.0,2,0,2_0,2_0 -1402,1.0,2.0,28.0,112,43,31,2.0,11924,0.0,50.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3157.1671119145444,0.0,16500.0,33046.0,1,3,7,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,18358.888888888887,3,0,3_1,3_0 -1403,11.0,11.0,70.0,111,75,60,0.0,11925,0.0,0.0,0.0,340.0,0.0,4.0,0.0,1.0,1.0,3522.4259792368834,0.0,0.0,28779.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,28779.0,4,0,4_0,4_0 -1404,2.0,16.0,48.0,221,52,50,0.0,11928,0.0,0.0,0.0,227.0,1.0,2.0,1.0,3.0,1.8,3062.280984779802,1300.0,0.0,24985.0,1,3,1,2.0,5,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,13880.555555555555,2,0,2_1,2_0 -1405,14.0,17.0,56.0,111,54,60,0.0,1193,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2957.392032957574,780.0,0.0,17939.0,1,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17939.0,3,0,3_0,3_0 -1406,5.0,5.0,76.0,112,78,70,0.0,11930,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1156.1198650835038,2600.0,0.0,24264.0,5,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16176.0,2,0,2_0,2_1 -1407,0.0,2.0,44.0,111,37,41,0.0,11931,0.0,1300.0,1000.0,0.0,3.0,6.0,4.0,7.0,3.6,2554.502555878154,0.0,0.0,91560.0,1,3,9,7.0,5,3.0,1.0,1.0,0,0,0,1,0,0,2.0,1.0,25433.333333333332,4,0,4_0,4_0 -1408,1.0,1.0,62.0,111,68,30,1.0,11932,0.0,0.0,50.0,0.0,2.0,5.0,0.0,3.0,2.0,2025.6242257018578,0.0,16000.0,44639.0,1,1,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22319.5,4,0,4_0,4_0 -1409,0.0,0.0,29.0,111,67,71,0.0,11934,0.0,0.0,0.0,55.0,1.0,1.0,2.0,4.0,2.1,5276.745498458597,0.0,0.0,25596.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12188.571428571428,1,0,1_1,1_0 -1410,8.0,11.0,52.0,400,13,50,0.0,11935,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2292.414155705478,0.0,0.0,25367.0,1,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16911.333333333332,3,0,3_0,3_1 -1411,3.0,18.0,27.0,111,47,42,0.0,11937,0.0,0.0,99999.0,429.0,2.0,2.0,0.0,2.0,1.5,2704.2192878539754,0.0,0.0,29795.0,4,3,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,19863.333333333332,3,0,3_0,3_0 -1412,1.0,1.0,41.0,300,37,12,1.0,11938,0.0,250.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2793.2816644063105,3190.0,10000.0,53216.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25340.95238095238,4,0,4_0,4_1 -1413,4.0,4.0,26.0,400,62,50,0.0,11939,0.0,0.0,250.0,0.0,2.0,4.0,0.0,2.0,1.5,2352.079968565843,1898.0,0.0,38730.0,1,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25820.0,4,0,4_0,4_1 -1414,4.0,13.0,67.0,221,78,70,0.0,11941,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1332.2060727757107,5041.0,0.0,31490.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20993.333333333332,3,0,3_0,3_0 -1415,1.0,23.0,42.0,112,62,42,0.0,11942,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1749.9631241175484,2081.0,0.0,28740.0,1,1,7,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12495.652173913044,1,0,1_0,1_0 -1416,9.0,9.0,32.0,112,38,31,0.0,11943,0.0,750.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,3815.52936171504,5307.0,0.0,35089.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16709.04761904762,2,0,2_0,2_1 -1417,0.0,2.0,66.0,111,72,50,2.0,11944,0.0,400.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2803.5797322610074,0.0,17490.0,29838.0,5,1,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,19892.0,3,0,3_0,3_0 -1418,2.0,2.0,43.0,111,64,50,0.0,11945,0.0,60.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2997.5129596005354,3536.0,0.0,36758.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,17503.809523809523,3,0,3_0,3_0 -1419,5.0,12.0,50.0,111,37,42,0.0,11946,0.0,100.0,350.0,0.0,3.0,6.0,2.0,4.0,2.5,1320.003629293141,6430.0,0.0,88941.0,1,1,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,35576.4,5,0,5,5_0 -1420,0.0,35.0,59.0,120,78,70,0.0,11947,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3162.3164244988184,1560.0,0.0,28466.0,5,1,0,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18977.333333333332,3,0,3_0,3_0 -1421,1.0,3.0,49.0,111,52,41,0.0,11948,0.0,50.0,70.0,487.0,2.0,4.0,2.0,4.0,2.5,2177.6508517653315,2483.0,0.0,49479.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,19791.6,3,0,3_0,3_0 -1422,5.0,5.0,74.0,400,75,50,0.0,11949,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1802.3631007445429,2238.0,0.0,22650.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15100.0,2,0,2_0,2_1 -1423,3.0,4.0,73.0,111,74,10,0.0,1195,0.0,0.0,100.0,0.0,1.0,6.0,0.0,2.0,1.5,1715.9234567534033,3553.0,0.0,104605.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,69736.66666666667,5,0,5,5_0 -1424,1.0,1.0,72.0,111,75,50,1.0,11951,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3246.4227950252707,1456.0,16000.0,16009.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10672.666666666666,1,0,1_0,1_0 -1425,8.0,10.0,33.0,112,43,33,0.0,11953,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3403.9940037708884,988.0,0.0,47330.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22538.095238095237,4,0,4_0,4_1 -1426,9.0,9.0,61.0,111,34,10,0.0,11954,0.0,0.0,400.0,0.0,1.0,2.0,0.0,1.0,1.0,4062.0720453625663,2600.0,0.0,44166.0,1,4,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,44166.0,5,0,5,5_0 -1427,10.0,15.0,37.0,400,22,43,0.0,11956,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2963.5414684451416,0.0,0.0,4010.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,3084.6153846153843,1,0,1_0,1_1 -1428,1.0,4.0,37.0,112,47,43,0.0,11957,0.0,300.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2311.1109785114745,8779.0,0.0,52532.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21888.333333333336,4,0,4_0,4_1 -1429,2.0,10.0,50.0,112,38,41,0.0,11958,0.0,178.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1792.0861260515185,1820.0,0.0,53570.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,35713.333333333336,5,0,5,5_1 -1430,0.0,0.0,49.0,111,85,70,0.0,11961,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,6790.51846970358,0.0,0.0,8656.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8656.0,1,0,1_1,1_0 -1431,7.0,14.0,33.0,111,38,10,0.0,11962,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1734.544614078538,0.0,0.0,68680.0,1,2,7,5.0,4,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,38155.555555555555,5,0,5,5_0 -1432,4.0,4.0,50.0,111,21,44,0.0,11963,0.0,255.0,0.0,100.0,1.0,4.0,0.0,1.0,1.0,3146.545816943424,0.0,0.0,9340.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,1,0.0,1.0,9340.0,1,0,1_1,1_0 -1433,0.0,0.0,81.0,111,86,71,0.0,11964,0.0,0.0,0.0,190.0,0.0,3.0,0.0,1.0,1.0,4006.166082600906,0.0,0.0,16468.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,16468.0,2,0,2_1,2_0 -1434,12.0,13.0,61.0,111,38,30,0.0,11965,0.0,0.0,0.0,0.0,1.0,5.0,0.0,3.0,2.0,2101.1125035233736,3120.0,0.0,45460.0,4,1,8,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22730.0,4,0,4_0,4_0 -1435,11.0,13.0,62.0,300,75,33,0.0,11968,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1844.054508428742,780.0,0.0,39097.0,5,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26064.666666666668,4,0,4_0,4_1 -1436,6.0,9.0,46.0,111,47,20,0.0,11972,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,938.674614717566,0.0,0.0,62037.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,34465.0,5,0,5,5_0 -1437,3.0,3.0,37.0,111,62,31,0.0,11973,0.0,0.0,100.0,0.0,1.0,4.0,0.0,1.0,1.0,2181.656106730741,0.0,0.0,18586.0,1,2,6,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,18586.0,3,0,3_0,3_0 -1438,2.0,5.0,34.0,112,34,12,0.0,11974,0.0,1250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2145.325568462317,2439.0,0.0,59488.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28327.619047619046,4,0,4_0,4_1 -1439,1.0,4.0,42.0,111,53,42,2.0,11978,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1393.5620739135206,2860.0,16500.0,42752.0,1,4,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20358.095238095237,3,0,3_0,3_0 -1440,0.0,1.0,44.0,111,46,31,0.0,11979,0.0,70.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2556.9346795041492,0.0,0.0,92770.0,1,2,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,38654.16666666667,5,0,5,5_0 -1441,0.0,0.0,36.0,111,55,41,0.0,11980,0.0,0.0,0.0,568.0,1.0,3.0,0.0,1.0,1.0,2617.088474338671,0.0,0.0,11280.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11280.0,1,0,1_1,1_0 -1442,11.0,11.0,68.0,111,75,60,0.0,11981,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2602.131574150803,2603.0,0.0,19417.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19417.0,3,0,3_0,3_0 -1443,0.0,0.0,51.0,111,85,71,0.0,11982,0.0,0.0,0.0,0.0,0.0,3.0,3.0,5.0,2.4,1632.018667508002,0.0,0.0,20476.0,7,3,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8531.666666666668,1,0,1_1,1_0 -1444,7.0,11.0,55.0,300,47,60,0.0,11983,0.0,0.0,192.0,0.0,1.0,5.0,0.0,1.0,1.0,4710.30760682718,1300.0,0.0,24958.0,1,1,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,24958.0,4,0,4_0,4_1 -1445,11.0,11.0,92.0,300,74,70,0.0,11986,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2228.283109422855,2756.0,0.0,52425.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,34950.0,5,0,5,5_1 -1446,0.0,0.0,76.0,111,77,50,0.0,11987,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2563.0061510303935,0.0,0.0,19282.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19282.0,3,0,3_0,3_0 -1447,1.0,1.0,32.0,111,46,20,1.0,11988,0.0,0.0,150.0,0.0,1.0,2.0,1.0,2.0,1.3,2741.2432923708006,2080.0,14000.0,39416.0,1,2,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,30320.0,5,0,5,5_0 -1448,11.0,17.0,46.0,111,64,41,0.0,11990,0.0,250.0,0.0,0.0,1.0,3.0,4.0,6.0,2.7,1195.7541428685336,3640.0,0.0,26620.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,9859.25925925926,1,0,1_1,1_0 -1449,5.0,6.0,73.0,111,75,71,0.0,11992,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4418.091695003436,2956.0,0.0,19900.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13266.666666666666,2,0,2_0,2_0 -1450,10.0,10.0,76.0,111,77,50,0.0,11994,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2667.121332153033,1957.0,0.0,25259.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25259.0,4,0,4_0,4_0 -1451,1.0,11.0,50.0,211,53,43,2.0,11996,0.0,100.0,99999.0,0.0,3.0,5.0,1.0,3.0,2.0,965.9804232981296,4212.0,800.0,59632.0,1,2,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,29816.0,5,0,5,5_0 -1452,9.0,9.0,53.0,112,52,50,0.0,11997,0.0,280.0,0.0,710.0,1.0,5.0,3.0,4.0,2.5,899.9496971440257,3309.0,0.0,45830.0,1,3,6,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,18332.0,3,0,3_1,3_1 -1453,4.0,10.0,33.0,111,46,60,0.0,11999,0.0,530.0,0.0,580.0,2.0,6.0,2.0,4.0,2.1,2370.2730135718516,3120.0,0.0,41619.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,19818.571428571428,3,0,3_0,3_0 -1454,0.0,0.0,75.0,111,75,70,0.0,12,0.0,0.0,0.0,470.0,0.0,1.0,0.0,1.0,1.0,3847.4230884251247,0.0,0.0,20846.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20846.0,3,0,3_0,3_0 -1455,2.0,3.0,46.0,112,54,50,0.0,120,0.0,270.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1027.6808294126877,4160.0,0.0,54300.0,1,1,10,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,23608.695652173916,4,0,4_0,4_0 -1456,9.0,9.0,71.0,221,74,10,0.0,1200,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2234.8678507023956,0.0,0.0,24168.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,24168.0,4,0,4_0,4_0 -1457,10.0,10.0,58.0,112,74,50,0.0,12000,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1104.3456830477826,2600.0,0.0,32872.0,7,1,10,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21914.666666666668,4,0,4_0,4_0 -1458,0.0,0.0,76.0,112,78,70,0.0,12001,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,4175.174612727296,0.0,0.0,12956.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12956.0,2,0,2_0,2_1 -1459,0.0,0.0,62.0,111,77,71,0.0,12002,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2915.8331260908303,0.0,0.0,12892.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12892.0,2,0,2_0,2_0 -1460,0.0,0.0,49.0,111,67,70,0.0,12006,0.0,0.0,0.0,366.0,1.0,5.0,4.0,5.0,2.6,870.7020394081346,0.0,0.0,30420.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,11700.0,1,0,1_0,1_0 -1461,8.0,8.0,63.0,111,37,12,0.0,12007,0.0,0.0,85.0,0.0,1.0,4.0,0.0,1.0,1.0,3580.9800038525455,0.0,0.0,35433.0,1,1,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,35433.0,5,0,5,5_0 -1462,1.0,13.0,43.0,111,52,71,2.0,12008,0.0,0.0,100.0,0.0,2.0,4.0,4.0,6.0,3.1,3010.5236960493335,3147.0,2000.0,35690.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,11512.90322580645,1,0,1_1,1_0 -1463,2.0,2.0,73.0,111,75,50,0.0,1201,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1888.6231072181558,4056.0,0.0,35289.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,35289.0,5,0,5,5_0 -1464,0.0,0.0,80.0,112,77,50,0.0,12010,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5028.178516805247,0.0,0.0,12125.0,5,1,8,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12125.0,1,0,1_0,1_0 -1465,0.0,0.0,35.0,112,11,31,1.0,12012,0.0,6.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2536.068104321122,0.0,17500.0,43914.0,1,2,4,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24396.666666666668,4,0,4_0,4_1 -1466,5.0,7.0,53.0,221,21,50,0.0,12014,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,2437.9919614987925,0.0,0.0,14042.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,5850.833333333334,1,0,1_1,1_0 -1467,14.0,19.0,77.0,112,71,71,0.0,12015,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3416.749814908389,0.0,0.0,18270.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12180.0,1,0,1_0,1_1 -1468,0.0,0.0,72.0,111,78,71,0.0,12016,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4461.644959771057,0.0,0.0,8982.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8982.0,1,0,1_0,1_0 -1469,2.0,4.0,29.0,111,43,10,0.0,12017,0.0,0.0,633.0,542.0,2.0,2.0,0.0,2.0,1.5,2697.5379274150014,4475.0,0.0,89387.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,59591.333333333336,5,0,5,5_0 -1470,8.0,8.0,35.0,112,21,50,0.0,12018,0.0,0.0,50.0,0.0,3.0,4.0,2.0,4.0,2.3,2792.262344845029,0.0,0.0,29274.0,1,2,9,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,12727.826086956522,2,0,2_0,2_0 -1471,6.0,6.0,57.0,112,45,50,0.0,12019,0.0,0.0,450.0,0.0,1.0,4.0,1.0,2.0,1.5,2580.854207434825,1513.0,0.0,31054.0,1,1,4,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20702.666666666668,3,0,3_0,3_1 -1472,9.0,23.0,63.0,400,77,70,0.0,1202,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1577.9302340391012,1404.0,0.0,27248.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18165.333333333332,3,0,3_0,3_1 -1473,3.0,15.0,67.0,111,74,10,0.0,12023,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3553.040818537387,0.0,0.0,43190.0,5,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,43190.0,5,0,5,5_0 -1474,0.0,0.0,77.0,111,77,50,0.0,12024,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1897.046051818596,0.0,0.0,39594.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,39594.0,5,0,5,5_0 -1475,0.0,7.0,22.0,111,84,10,0.0,12028,0.0,35.0,0.0,245.0,0.0,2.0,0.0,1.0,1.0,3338.3730215694222,0.0,0.0,8464.0,3,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,8464.0,1,0,1_1,1_0 -1476,0.0,16.0,41.0,112,22,50,0.0,12029,0.0,80.0,0.0,0.0,3.0,8.0,2.0,4.0,2.5,2689.6600932031793,2080.0,0.0,34886.0,1,2,4,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,13954.4,2,0,2_0,2_1 -1477,5.0,5.0,64.0,111,74,20,0.0,1203,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2210.682379109928,0.0,0.0,54832.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,36554.666666666664,5,0,5,5_0 -1478,9.0,9.0,73.0,111,75,50,0.0,12031,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1870.7294191571293,0.0,0.0,34570.0,5,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34570.0,5,0,5,5_0 -1479,2.0,9.0,47.0,300,56,71,0.0,12032,0.0,560.0,0.0,514.0,2.0,4.0,1.0,5.0,2.6,2537.203763617874,3614.0,0.0,33189.0,1,3,0,0.0,5,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,12765.0,2,0,2_0,2_1 -1480,7.0,11.0,42.0,111,21,50,0.0,12033,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,2275.846953396489,8408.0,0.0,70522.0,1,2,6,4.0,4,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,33581.90476190476,5,0,5,5_0 -1481,3.0,9.0,52.0,112,37,12,0.0,12034,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2669.0834272445018,0.0,0.0,53576.0,1,1,7,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,53576.0,5,0,5,5_1 -1482,4.0,13.0,37.0,112,65,50,0.0,12035,0.0,250.0,0.0,650.0,2.0,3.0,1.0,3.0,1.8,2999.6392022563064,0.0,0.0,35993.0,1,3,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19996.11111111111,3,0,3_0,3_0 -1483,4.0,11.0,36.0,112,55,31,0.0,12036,0.0,50.0,60.0,0.0,2.0,6.0,0.0,2.0,1.5,1754.344194141556,2548.0,0.0,41611.0,1,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,27740.666666666668,4,0,4_0,4_0 -1484,5.0,6.0,37.0,120,46,31,0.0,12037,0.0,320.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2162.645089205391,3172.0,0.0,42700.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23722.222222222223,4,0,4_0,4_1 -1485,0.0,0.0,51.0,111,56,71,0.0,12039,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,2903.3785635935324,0.0,0.0,19872.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11040.0,1,0,1_1,1_0 -1486,1.0,1.0,40.0,112,48,31,1.0,12040,0.0,809.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2417.1531997234283,6604.0,18800.0,58522.0,1,2,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,32512.222222222223,5,0,5,5_1 -1487,4.0,4.0,52.0,112,63,50,0.0,12041,0.0,160.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1851.934117642823,3641.0,0.0,37462.0,1,1,8,1.0,3,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,24974.666666666668,4,0,4_0,4_0 -1488,4.0,4.0,35.0,111,43,33,0.0,12042,0.0,0.0,0.0,800.0,2.0,4.0,2.0,4.0,2.1,3425.726633342249,0.0,0.0,48401.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23048.095238095237,4,0,4_0,4_0 -1489,0.0,0.0,96.0,400,71,70,0.0,12044,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2790.768475872425,0.0,0.0,8988.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8988.0,1,0,1_0,1_1 -1490,9.0,12.0,42.0,112,43,33,0.0,12047,0.0,600.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,3003.0820070023888,3224.0,0.0,75942.0,1,2,10,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,30376.8,5,0,5,5_0 -1491,3.0,4.0,69.0,111,78,50,0.0,12048,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3262.431296565685,0.0,0.0,15357.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15357.0,2,0,2_0,2_0 -1492,4.0,5.0,58.0,111,56,50,0.0,12049,0.0,200.0,0.0,250.0,3.0,4.0,1.0,3.0,2.0,1371.6446299858515,78.0,0.0,36200.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18100.0,3,0,3_0,3_0 -1493,2.0,14.0,28.0,111,52,43,0.0,12051,0.0,25.0,70.0,125.0,2.0,3.0,2.0,4.0,2.1,2427.6173922453468,0.0,0.0,37760.0,1,3,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,17980.95238095238,3,0,3_1,3_0 -1494,2.0,2.0,30.0,120,38,12,0.0,12052,0.0,700.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3280.963831739236,6288.0,0.0,75185.0,1,2,0,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,50123.333333333336,5,0,5,5_0 -1495,2.0,13.0,32.0,111,38,12,0.0,12053,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2370.0264300300896,0.0,0.0,52938.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,29410.0,5,0,5,5_0 -1496,4.0,4.0,82.0,112,77,71,0.0,12054,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3478.219260375393,0.0,0.0,25820.0,5,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25820.0,4,0,4_0,4_1 -1497,7.0,7.0,54.0,112,69,50,0.0,12055,0.0,250.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,4025.856344690392,2880.0,0.0,29930.0,1,1,8,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19953.333333333332,3,0,3_0,3_0 -1498,1.0,1.0,37.0,112,69,50,0.0,12056,0.0,170.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1865.4220565074863,0.0,0.0,24547.0,1,3,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,12273.5,1,0,1_0,1_0 -1499,3.0,11.0,39.0,111,63,71,0.0,12058,0.0,500.0,0.0,157.0,2.0,4.0,2.0,4.0,2.1,3636.265040198517,405.0,0.0,33138.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,15780.0,2,0,2_1,2_0 -1500,5.0,8.0,40.0,111,34,20,0.0,12059,0.0,150.0,250.0,0.0,2.0,3.0,2.0,4.0,2.1,1240.6830037119653,2600.0,0.0,48577.0,1,4,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,23131.90476190476,4,0,4_0,4_0 -1501,5.0,10.0,34.0,112,47,50,0.0,12060,0.0,100249.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2243.927223691885,1144.0,0.0,39419.0,1,1,6,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,18770.95238095238,3,0,3_0,3_1 -1502,10.0,10.0,78.0,111,74,10,0.0,12061,0.0,0.0,0.0,0.0,1.0,8.0,1.0,4.0,2.3,994.15645036829,1030.0,0.0,87684.0,5,1,10,8.0,5,2.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,38123.47826086957,5,0,5,5_0 -1503,13.0,26.0,76.0,400,74,70,0.0,12062,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1340.0109948575464,0.0,0.0,40523.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27015.333333333332,4,0,4_0,4_1 -1504,6.0,6.0,67.0,111,77,70,0.0,12064,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1545.8027981126097,0.0,0.0,18943.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18943.0,3,0,3_0,3_0 -1505,0.0,0.0,59.0,111,78,41,0.0,12065,0.0,0.0,0.0,38.0,1.0,2.0,0.0,2.0,1.5,3825.1230229411412,0.0,0.0,20204.0,7,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13469.333333333334,2,0,2_1,2_0 -1506,15.0,29.0,64.0,400,64,50,0.0,12066,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1552.4548327319173,1040.0,0.0,3820.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,2546.6666666666665,1,0,1_0,1_1 -1507,0.0,0.0,23.0,111,84,41,0.0,12067,0.0,0.0,0.0,415.0,0.0,2.0,0.0,1.0,1.0,3234.3083169102456,0.0,0.0,21764.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,21764.0,4,0,4_1,4_0 -1508,3.0,10.0,67.0,111,77,50,0.0,12068,0.0,0.0,0.0,368.0,0.0,2.0,0.0,1.0,1.0,3413.6041765642335,0.0,0.0,16040.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16040.0,2,0,2_0,2_0 -1509,1.0,1.0,41.0,112,53,71,2.0,12069,0.0,30.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3092.60611756621,0.0,6000.0,34506.0,1,1,10,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23004.0,4,0,4_0,4_1 -1510,0.0,21.0,24.0,112,85,43,0.0,12070,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,1.3,3480.899965028866,0.0,0.0,21223.0,6,3,6,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,16325.384615384615,2,0,2_1,2_1 -1511,4.0,6.0,43.0,211,54,31,0.0,12071,0.0,150.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2288.2464162916503,2496.0,0.0,36260.0,1,2,3,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20144.444444444445,3,0,3_0,3_0 -1512,1.0,1.0,38.0,111,52,50,1.0,12073,0.0,40.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2006.6263297486505,0.0,13152.0,25455.0,1,3,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16970.0,3,0,3_0,3_0 -1513,9.0,17.0,63.0,111,72,70,0.0,12075,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4711.885726234618,0.0,0.0,10670.0,5,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,10670.0,1,0,1_0,1_0 -1514,9.0,13.0,49.0,112,34,10,0.0,12076,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1558.7649333935383,0.0,0.0,23966.0,1,1,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23966.0,4,0,4_0,4_1 -1515,25.0,25.0,55.0,400,64,50,0.0,12077,0.0,494.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1381.3891413356673,2934.0,0.0,39734.0,1,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,26489.333333333332,4,0,4_0,4_1 -1516,3.0,3.0,46.0,111,34,10,0.0,12078,0.0,0.0,50.0,0.0,1.0,3.0,0.0,1.0,1.0,2999.3785426299805,3403.0,0.0,79265.0,1,2,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,79265.0,5,0,5,5_0 -1517,0.0,0.0,52.0,111,38,12,0.0,12080,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2613.245634877263,780.0,0.0,36631.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36631.0,5,0,5,5_0 -1518,12.0,12.0,51.0,111,43,33,0.0,12085,0.0,0.0,0.0,740.0,1.0,3.0,0.0,1.0,1.0,4171.128103738458,0.0,0.0,39464.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,39464.0,5,0,5,5_0 -1519,0.0,7.0,53.0,111,37,31,2.0,12087,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3933.509615700098,724.0,7500.0,3006.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,3006.0,1,0,1_0,1_0 -1520,4.0,4.0,54.0,111,37,31,0.0,12088,0.0,20.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3353.0070928034274,0.0,0.0,132399.0,1,2,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,132399.0,5,0,5,5_0 -1521,1.0,12.0,24.0,111,47,31,2.0,12089,0.0,0.0,300.0,0.0,2.0,2.0,0.0,2.0,1.5,1749.5461229783496,1981.0,2000.0,31209.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,20806.0,3,0,3_0,3_0 -1522,6.0,6.0,60.0,300,75,70,0.0,12090,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1031.8712444114933,0.0,0.0,24726.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16484.0,2,0,2_0,2_0 -1523,0.0,0.0,48.0,111,52,50,0.0,12091,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2632.8267471393037,0.0,0.0,28309.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18872.666666666668,3,0,3_0,3_0 -1524,11.0,12.0,47.0,112,63,44,0.0,12092,0.0,300.0,100.0,0.0,2.0,6.0,2.0,4.0,2.5,2453.6830984508956,0.0,0.0,55829.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22331.6,4,0,4_0,4_1 -1525,3.0,3.0,33.0,111,34,10,0.0,12093,0.0,180.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2704.978249337729,1560.0,0.0,70516.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,39175.555555555555,5,0,5,5_0 -1526,9.0,16.0,45.0,300,56,50,0.0,12094,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2015.302975050686,0.0,0.0,20697.0,1,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,13798.0,2,0,2_1,2_1 -1527,2.0,2.0,56.0,111,22,60,0.0,12095,0.0,0.0,225.0,0.0,2.0,5.0,1.0,3.0,2.0,3143.338628275907,0.0,0.0,15980.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,7990.0,1,0,1_0,1_0 -1528,5.0,7.0,57.0,112,54,50,0.0,12096,0.0,100.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1858.7013221726147,2600.0,0.0,30866.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20577.333333333332,3,0,3_0,3_1 -1529,4.0,10.0,48.0,111,35,42,0.0,12097,0.0,199998.0,199998.0,0.0,3.0,4.0,3.0,5.0,3.0,1596.3628450623505,0.0,0.0,58231.0,1,1,9,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,2.0,2.0,19410.333333333332,3,0,3_0,3_0 -1530,0.0,17.0,26.0,111,67,42,2.0,12098,0.0,0.0,300.0,290.0,2.0,2.0,0.0,2.0,1.5,5107.88729049857,1040.0,800.0,29776.0,1,3,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19850.666666666668,3,0,3_0,3_0 -1531,3.0,11.0,65.0,111,77,50,0.0,12099,0.0,0.0,0.0,337.0,0.0,4.0,0.0,1.0,1.0,1362.1135546411144,1560.0,0.0,12150.0,5,3,3,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,12150.0,1,0,1_1,1_0 -1532,7.0,7.0,29.0,111,38,12,0.0,1210,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2508.41361503023,0.0,0.0,66146.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,44097.333333333336,5,0,5,5_0 -1533,1.0,1.0,25.0,111,33,12,1.0,12100,0.0,0.0,0.0,590.0,2.0,1.0,0.0,2.0,1.5,2780.6238042986483,1924.0,12000.0,39603.0,1,3,10,8.0,3,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,26402.0,4,0,4_0,4_0 -1534,2.0,2.0,52.0,111,37,10,0.0,12102,0.0,390.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1410.2338463040771,1128.0,0.0,61128.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,30564.0,5,0,5,5_0 -1535,0.0,0.0,74.0,112,77,70,0.0,12104,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1303.6174255313365,0.0,0.0,13306.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13306.0,2,0,2_0,2_1 -1536,5.0,5.0,62.0,120,75,60,0.0,12105,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3087.4693157985994,1560.0,0.0,34856.0,5,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23237.333333333332,4,0,4_0,4_1 -1537,8.0,11.0,51.0,111,37,60,0.0,12106,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4086.9940373979657,0.0,0.0,113818.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,63232.22222222222,5,0,5,5_0 -1538,6.0,7.0,78.0,111,78,50,0.0,12107,0.0,0.0,0.0,0.0,1.0,5.0,1.0,4.0,2.3,946.2251759993917,0.0,0.0,45040.0,5,1,8,6.0,5,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19582.608695652176,3,0,3_0,3_0 -1539,0.0,0.0,83.0,221,77,71,0.0,12108,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,5436.7986323501955,0.0,0.0,13826.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13826.0,2,0,2_1,2_0 -1540,5.0,9.0,37.0,221,68,71,0.0,12109,0.0,520.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,4557.319896515753,3828.0,0.0,19114.0,1,3,1,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,12742.666666666666,2,0,2_0,2_0 -1541,4.0,4.0,90.0,300,78,71,0.0,1211,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,2844.08094227881,0.0,0.0,27851.0,5,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18567.333333333332,3,0,3_0,3_1 -1542,0.0,0.0,40.0,111,34,10,0.0,12113,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3940.044860026975,0.0,0.0,19734.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19734.0,3,0,3_0,3_0 -1543,7.0,9.0,60.0,112,77,50,0.0,12115,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2604.9650362340235,1482.0,0.0,16789.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16789.0,2,0,2_0,2_1 -1544,0.0,0.0,71.0,221,72,71,0.0,12117,0.0,0.0,0.0,254.0,0.0,4.0,0.0,1.0,1.0,5470.224848489817,0.0,0.0,13520.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13520.0,2,0,2_1,2_0 -1545,1.0,1.0,66.0,111,74,60,2.0,12118,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3057.260462210719,343.0,16420.0,25125.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,25125.0,4,0,4_0,4_0 -1546,1.0,17.0,46.0,221,67,71,0.0,12119,0.0,0.0,0.0,55.0,1.0,2.0,0.0,1.0,1.0,3133.7681851770067,1041.0,0.0,10338.0,4,3,1,3.0,1,1.0,1.0,0.0,0,1,0,0,0,1,0.0,1.0,10338.0,1,0,1_1,1_0 -1547,0.0,15.0,29.0,112,46,42,0.0,1212,0.0,120.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,3049.3726969979693,2001.0,0.0,49934.0,1,3,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,33289.333333333336,5,0,5,5_1 -1548,2.0,2.0,63.0,112,35,20,0.0,12120,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1843.2554633494883,0.0,0.0,12507.0,1,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,8338.0,1,0,1_0,1_1 -1549,0.0,3.0,39.0,111,37,12,0.0,12121,0.0,50.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2247.601680133425,0.0,0.0,145078.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,69084.76190476191,5,0,5,5_0 -1550,7.0,7.0,51.0,111,33,10,0.0,12122,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2429.1044821481005,0.0,0.0,88076.0,1,2,10,8.0,3,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,58717.333333333336,5,0,5,5_0 -1551,18.0,20.0,53.0,112,62,50,0.0,12123,0.0,400.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2593.24049687297,2392.0,0.0,18878.0,1,1,9,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18878.0,3,0,3_0,3_0 -1552,21.0,26.0,61.0,111,77,50,0.0,12124,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4493.860906597002,3709.0,0.0,18905.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,18905.0,3,0,3_0,3_0 -1553,0.0,0.0,47.0,111,85,71,0.0,12125,0.0,0.0,0.0,320.0,0.0,3.0,0.0,1.0,1.0,3186.7906101184412,0.0,0.0,11130.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11130.0,1,0,1_1,1_0 -1554,4.0,12.0,64.0,111,78,71,0.0,12126,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2858.3505818908015,1404.0,0.0,16058.0,5,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16058.0,2,0,2_0,2_0 -1555,1.0,5.0,37.0,111,54,41,0.0,12128,0.0,320.0,0.0,273.0,1.0,3.0,1.0,2.0,1.3,3537.2252038012557,2080.0,0.0,22471.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,17285.384615384613,3,0,3_1,3_0 -1556,0.0,16.0,20.0,111,56,41,0.0,12129,0.0,0.0,0.0,178.0,1.0,3.0,0.0,1.0,1.0,5124.418079076132,0.0,0.0,7169.0,3,4,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,7169.0,1,0,1_0,1_0 -1557,0.0,0.0,44.0,112,68,71,0.0,12131,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3062.6555484271357,0.0,0.0,10726.0,1,3,5,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,10726.0,1,0,1_1,1_1 -1558,1.0,1.0,61.0,211,62,70,0.0,12132,0.0,600.0,0.0,439.0,1.0,4.0,0.0,1.0,1.0,4015.148034365822,0.0,0.0,35740.0,1,3,2,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,35740.0,5,0,5,5_0 -1559,4.0,9.0,37.0,111,63,43,0.0,12133,0.0,50.0,0.0,0.0,2.0,3.0,3.0,5.0,2.4,3265.459245231324,3068.0,0.0,29581.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,12325.416666666668,1,0,1_1,1_0 -1560,2.0,12.0,49.0,111,46,41,0.0,12138,0.0,0.0,150.0,740.0,2.0,4.0,1.0,3.0,2.0,3308.242444537036,2340.0,0.0,36124.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,18062.0,3,0,3_0,3_0 -1561,0.0,0.0,58.0,111,74,20,1.0,12139,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1575.315192642273,2096.0,25900.0,52662.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,35108.0,5,0,5,5_0 -1562,17.0,17.0,83.0,112,78,70,0.0,12140,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1602.7272404518772,0.0,0.0,16410.0,5,1,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,10940.0,1,0,1_0,1_0 -1563,3.0,3.0,35.0,111,46,20,0.0,12141,0.0,70.0,0.0,0.0,2.0,13.0,2.0,4.0,2.1,2457.2209004688466,0.0,0.0,47925.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22821.42857142857,4,0,4_0,4_0 -1564,1.0,1.0,27.0,111,64,50,2.0,12143,0.0,200.0,0.0,380.0,2.0,3.0,1.0,3.0,1.8,2973.2257197031527,2028.0,5000.0,32795.0,1,3,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,18219.444444444445,3,0,3_0,3_0 -1565,0.0,0.0,80.0,111,77,71,0.0,12144,0.0,0.0,0.0,265.0,0.0,3.0,0.0,1.0,1.0,3236.427408965197,0.0,0.0,15635.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15635.0,2,0,2_0,2_0 -1566,8.0,12.0,54.0,111,38,31,0.0,12145,0.0,150.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1932.9530519318987,2423.0,0.0,66201.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,44134.0,5,0,5,5_0 -1567,6.0,6.0,41.0,111,34,20,0.0,12146,0.0,0.0,60.0,1600.0,2.0,4.0,4.0,6.0,2.9,1573.988423389551,0.0,0.0,69560.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,23986.206896551725,4,0,4_0,4_0 -1568,7.0,16.0,60.0,111,65,70,0.0,12147,0.0,330.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,1202.4002776112663,2081.0,0.0,56730.0,1,1,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,37820.0,5,0,5,5_0 -1569,2.0,9.0,29.0,112,63,31,0.0,12149,0.0,400.0,0.0,700.0,2.0,3.0,1.0,3.0,1.8,8231.577355851108,3228.0,0.0,32080.0,1,3,9,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17822.222222222223,3,0,3_0,3_0 -1570,0.0,0.0,77.0,211,77,70,0.0,1215,0.0,0.0,0.0,276.0,0.0,2.0,0.0,1.0,1.0,2820.3952302414427,0.0,0.0,11175.0,5,3,3,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11175.0,1,0,1_1,1_0 -1571,7.0,7.0,36.0,111,54,31,0.0,12155,0.0,99999.0,0.0,453.0,1.0,2.0,0.0,1.0,1.0,2326.8554747532667,1300.0,0.0,19320.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19320.0,3,0,3_0,3_0 -1572,0.0,0.0,51.0,111,52,71,0.0,12158,0.0,0.0,0.0,40.0,1.0,2.0,0.0,1.0,1.0,2607.9765652884084,1144.0,0.0,6005.0,4,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,6005.0,1,0,1_1,1_0 -1573,0.0,11.0,35.0,112,38,12,0.0,1216,0.0,140.0,100.0,0.0,2.0,6.0,2.0,4.0,2.1,1603.9108814417657,0.0,0.0,58087.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27660.47619047619,4,0,4_0,4_1 -1574,0.0,0.0,18.0,111,84,41,0.0,12160,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3029.267744126553,0.0,0.0,1279.0,3,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,1279.0,1,0,1_0,1_0 -1575,8.0,8.0,65.0,300,77,60,0.0,12161,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1732.8853858061686,2500.0,0.0,35356.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,35356.0,5,0,5,5_1 -1576,0.0,0.0,77.0,111,77,43,0.0,12163,0.0,0.0,0.0,584.0,0.0,3.0,0.0,1.0,1.0,2832.2727066062344,0.0,0.0,24810.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24810.0,4,0,4_0,4_0 -1577,3.0,11.0,49.0,300,64,50,0.0,12164,0.0,160.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1053.408041176928,2860.0,0.0,17805.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,8902.5,1,0,1_0,1_1 -1578,2.0,2.0,59.0,111,54,41,0.0,12165,0.0,0.0,297.0,0.0,2.0,4.0,0.0,2.0,1.5,1285.0407868729483,0.0,0.0,78575.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,52383.333333333336,5,0,5,5_0 -1579,6.0,15.0,49.0,111,68,50,0.0,12167,0.0,100.0,0.0,400.0,1.0,4.0,3.0,5.0,2.6,2487.415149343156,2349.0,0.0,22268.0,1,3,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,8564.615384615385,1,0,1_1,1_0 -1580,15.0,15.0,77.0,112,77,71,0.0,12168,0.0,0.0,0.0,500.0,0.0,5.0,0.0,2.0,1.5,2638.1166585070314,2577.0,0.0,23450.0,5,3,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15633.333333333334,2,0,2_0,2_0 -1581,0.0,4.0,43.0,221,47,43,0.0,12169,0.0,1500.0,0.0,417.0,1.0,3.0,2.0,3.0,1.6,5714.514361255165,0.0,0.0,19505.0,1,3,1,2.0,2,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,12190.625,1,0,1_0,1_0 -1582,2.0,2.0,61.0,400,54,31,0.0,1217,0.0,300.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1489.1371870978235,4148.0,0.0,35213.0,1,1,0,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,17606.5,3,0,3_0,3_1 -1583,0.0,0.0,77.0,111,31,41,0.0,12170,0.0,0.0,0.0,343.0,1.0,2.0,0.0,1.0,1.0,4255.576772584865,0.0,0.0,21777.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21777.0,4,0,4_0,4_0 -1584,2.0,14.0,48.0,111,63,50,0.0,12171,0.0,80.0,0.0,254.0,2.0,4.0,1.0,3.0,1.8,3276.6730577816725,520.0,0.0,20222.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11234.444444444443,1,0,1_1,1_0 -1585,5.0,6.0,49.0,221,56,50,0.0,12172,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,6085.22810529773,0.0,0.0,24578.0,1,1,1,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,16385.333333333332,2,0,2_0,2_0 -1586,7.0,9.0,37.0,112,47,43,0.0,12175,0.0,215.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3037.941502208856,0.0,0.0,44244.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21068.571428571428,3,0,3_0,3_1 -1587,0.0,0.0,68.0,300,71,71,0.0,1218,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3208.6471300732887,0.0,0.0,16130.0,5,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10753.333333333334,1,0,1_0,1_1 -1588,9.0,10.0,45.0,120,22,50,0.0,12180,0.0,270.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3324.8745525322615,1981.0,0.0,20625.0,1,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,13750.0,2,0,2_0,2_1 -1589,4.0,5.0,60.0,112,52,50,0.0,12181,0.0,80.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1644.754386409739,0.0,0.0,19213.0,1,1,7,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19213.0,3,0,3_0,3_0 -1590,3.0,4.0,29.0,111,65,50,0.0,12185,0.0,250.0,0.0,549.0,1.0,2.0,0.0,1.0,1.0,3045.81537793425,0.0,0.0,23415.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23415.0,4,0,4_0,4_0 -1591,0.0,0.0,84.0,111,77,70,0.0,12188,0.0,0.0,0.0,456.0,0.0,2.0,0.0,2.0,1.5,4580.7093516682435,0.0,0.0,19730.0,5,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13153.333333333334,2,0,2_0,2_0 -1592,0.0,0.0,22.0,111,56,60,0.0,12189,0.0,0.0,0.0,34.0,1.0,3.0,1.0,2.0,1.3,7807.712347322874,0.0,0.0,15461.0,4,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11893.076923076922,1,0,1_1,1_0 -1593,19.0,19.0,45.0,111,34,20,0.0,1219,0.0,0.0,120.0,0.0,2.0,6.0,2.0,4.0,2.3,1537.1473100224748,0.0,0.0,60055.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,26110.869565217392,4,0,4_0,4_0 -1594,3.0,13.0,42.0,111,46,50,0.0,12190,0.0,0.0,150.0,0.0,1.0,5.0,2.0,3.0,2.0,1267.710815366472,1561.0,0.0,23200.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,11600.0,1,0,1_0,1_0 -1595,2.0,7.0,44.0,112,54,50,0.0,12194,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1345.1562927860102,0.0,0.0,26486.0,1,3,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,12612.380952380952,2,0,2_1,2_0 -1596,8.0,8.0,64.0,112,78,50,0.0,12195,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2479.475254306117,0.0,0.0,28614.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19076.0,3,0,3_0,3_1 -1597,2.0,2.0,76.0,111,74,71,0.0,12196,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3959.2614556606372,0.0,0.0,33369.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,22246.0,4,0,4_0,4_0 -1598,6.0,6.0,63.0,111,38,20,0.0,12197,0.0,102.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,993.9642515169833,4714.0,0.0,70343.0,4,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,46895.333333333336,5,0,5,5_0 -1599,0.0,0.0,73.0,112,77,71,0.0,12198,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2998.666046312774,2652.0,0.0,16606.0,5,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,16606.0,2,0,2_1,2_0 -1600,2.0,11.0,29.0,112,62,43,0.0,122,0.0,550.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3619.436166717293,2603.0,0.0,40058.0,1,3,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,26705.333333333332,4,0,4_1,4_1 -1601,4.0,6.0,38.0,111,37,12,0.0,12204,0.0,0.0,0.0,0.0,2.0,4.0,4.0,6.0,2.7,1987.746503297228,0.0,0.0,118375.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,43842.59259259259,5,0,5,5_0 -1602,0.0,6.0,59.0,112,46,70,2.0,12205,0.0,500.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,6576.06824450822,2080.0,8000.0,43562.0,1,2,4,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,43562.0,5,0,5,5_1 -1603,2.0,16.0,71.0,112,11,70,0.0,12206,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2169.1043819714214,0.0,0.0,-4582.0,1,3,6,0.0,1,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,-4582.0,1,0,1_1,1_1 -1604,9.0,12.0,63.0,111,74,33,0.0,12208,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3347.28959328552,0.0,0.0,38183.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25455.333333333332,4,0,4_0,4_0 -1605,2.0,11.0,32.0,111,52,50,0.0,12209,0.0,0.0,40.0,497.0,2.0,4.0,1.0,3.0,1.8,2621.2632136940038,2600.0,0.0,33120.0,1,3,9,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,18400.0,3,0,3_0,3_0 -1606,7.0,12.0,49.0,400,11,50,0.0,1221,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2062.421164734613,1820.0,0.0,12617.0,1,2,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,6308.5,1,0,1_1,1_1 -1607,8.0,8.0,62.0,111,74,31,0.0,12210,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2856.421949629142,2184.0,0.0,79549.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,53032.666666666664,5,0,5,5_0 -1608,1.0,12.0,38.0,111,22,42,0.0,12212,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,4787.606461327019,2600.0,0.0,49777.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,24888.5,4,0,4_0,4_0 -1609,0.0,0.0,56.0,111,77,41,0.0,12215,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3662.077890694297,0.0,0.0,13234.0,7,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13234.0,2,0,2_0,2_0 -1610,4.0,4.0,55.0,112,53,71,0.0,12217,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2540.8000284153077,2236.0,0.0,61157.0,1,2,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,40771.333333333336,5,0,5,5_1 -1611,4.0,12.0,54.0,300,47,71,0.0,1222,0.0,432.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2876.1667044619703,3744.0,0.0,32874.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21916.0,4,0,4_0,4_1 -1612,4.0,4.0,79.0,111,77,70,0.0,12220,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2464.4106891956344,0.0,0.0,46847.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,31231.333333333332,5,0,5,5_0 -1613,27.0,27.0,59.0,111,48,41,0.0,12223,0.0,0.0,0.0,394.0,2.0,4.0,2.0,4.0,2.5,1665.4409828210426,0.0,0.0,56812.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22724.8,4,0,4_0,4_0 -1614,5.0,14.0,67.0,112,77,71,0.0,12224,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,3089.5675976609705,780.0,0.0,27819.0,5,1,7,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18546.0,3,0,3_0,3_1 -1615,20.0,22.0,62.0,111,37,43,0.0,12225,0.0,150.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1891.6347866296605,0.0,0.0,61436.0,1,1,10,8.0,3,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,40957.333333333336,5,0,5,5_0 -1616,2.0,13.0,53.0,111,78,71,0.0,12226,0.0,0.0,0.0,0.0,0.0,4.0,3.0,5.0,3.0,3477.992424242999,1560.0,0.0,28199.0,7,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,9399.666666666666,1,0,1_1,1_0 -1617,7.0,10.0,54.0,111,45,42,0.0,12228,0.0,0.0,120.0,299.0,1.0,3.0,0.0,1.0,1.0,2485.7734092077203,0.0,0.0,23430.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23430.0,4,0,4_0,4_0 -1618,14.0,14.0,70.0,120,75,50,0.0,12229,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1002.9974682317377,0.0,0.0,30882.0,5,1,0,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20588.0,3,0,3_0,3_0 -1619,7.0,10.0,32.0,111,34,20,0.0,1223,0.0,250.0,0.0,415.0,1.0,4.0,0.0,1.0,1.0,2437.8459486412676,1560.0,0.0,23356.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,23356.0,4,0,4_0,4_0 -1620,0.0,0.0,35.0,111,56,71,0.0,12230,0.0,0.0,0.0,0.0,2.0,3.0,3.0,4.0,2.1,2365.2183670765885,0.0,0.0,25874.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12320.95238095238,1,0,1_1,1_0 -1621,0.0,14.0,25.0,221,63,50,0.0,12233,0.0,300.0,150.0,0.0,2.0,4.0,0.0,2.0,1.5,2872.5963966330833,2340.0,0.0,32407.0,1,3,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,21604.666666666668,3,0,3_1,3_0 -1622,1.0,1.0,64.0,111,74,44,0.0,12235,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,3326.169491587641,0.0,0.0,51340.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,34226.666666666664,5,0,5,5_0 -1623,0.0,0.0,85.0,111,77,70,0.0,12237,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4374.723422170007,0.0,0.0,20246.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20246.0,3,0,3_0,3_0 -1624,5.0,6.0,56.0,111,63,50,0.0,12238,0.0,99999.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1540.290422022344,2340.0,0.0,36455.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,24303.333333333332,4,0,4_0,4_0 -1625,1.0,4.0,77.0,112,74,60,0.0,1224,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3665.816817425724,1274.0,0.0,36670.0,5,3,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24446.666666666668,4,0,4_0,4_1 -1626,0.0,0.0,71.0,111,77,71,0.0,12241,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2403.8302285193404,0.0,0.0,16740.0,5,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16740.0,2,0,2_0,2_0 -1627,2.0,2.0,57.0,111,38,31,0.0,12242,0.0,99999.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3849.6524447707243,4783.0,0.0,28425.0,1,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,18950.0,3,0,3_0,3_0 -1628,1.0,13.0,32.0,111,55,30,0.0,12243,0.0,0.0,200.0,73.0,1.0,3.0,1.0,3.0,1.8,2633.210394332396,0.0,0.0,24965.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,13869.444444444443,2,0,2_1,2_0 -1629,0.0,0.0,101.0,111,77,71,0.0,12245,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2715.4864788329874,0.0,0.0,11640.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11640.0,1,0,1_0,1_0 -1630,4.0,22.0,56.0,111,64,50,0.0,12247,0.0,0.0,300.0,239.0,1.0,2.0,0.0,1.0,1.0,3116.8457127489432,1394.0,0.0,65623.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,65623.0,5,0,5,5_0 -1631,11.0,11.0,75.0,111,77,71,0.0,12248,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,7981.241246392962,0.0,0.0,12616.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12616.0,2,0,2_0,2_0 -1632,1.0,7.0,25.0,111,42,20,2.0,12249,0.0,1062.0,0.0,558.0,2.0,3.0,0.0,2.0,1.5,2205.2877532590187,2081.0,7000.0,41579.0,1,3,8,6.0,3,2.0,1.0,1.0,0,0,1,0,0,1,0.0,2.0,27719.333333333332,4,0,4_1,4_0 -1633,3.0,4.0,33.0,300,48,44,0.0,12250,0.0,550.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2291.888067848478,2900.0,0.0,41552.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23084.444444444445,4,0,4_0,4_1 -1634,4.0,5.0,59.0,111,46,31,0.0,12252,0.0,0.0,0.0,365.0,1.0,3.0,0.0,1.0,1.0,2903.794921294118,0.0,0.0,27451.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27451.0,4,0,4_0,4_0 -1635,0.0,0.0,26.0,111,37,31,0.0,12256,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5144.888964389851,0.0,0.0,47260.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,47260.0,5,0,5,5_0 -1636,6.0,6.0,77.0,111,78,71,0.0,12257,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,6112.571884155582,1040.0,0.0,13898.0,5,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13898.0,2,0,2_0,2_0 -1637,3.0,10.0,47.0,120,34,31,0.0,12260,0.0,0.0,40.0,0.0,2.0,7.0,2.0,4.0,2.1,3589.358290329298,3607.0,0.0,49340.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23495.238095238095,4,0,4_0,4_1 -1638,4.0,5.0,44.0,111,63,50,0.0,12261,0.0,240.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2731.0638997618885,1300.0,0.0,29621.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19747.333333333332,3,0,3_0,3_0 -1639,1.0,1.0,80.0,111,75,71,1.0,12263,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2500.495122138846,0.0,27000.0,29542.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19694.666666666668,3,0,3_0,3_0 -1640,6.0,6.0,78.0,112,78,70,0.0,12264,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1565.1583862464788,2600.0,0.0,21441.0,5,4,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14294.0,2,0,2_0,2_1 -1641,9.0,9.0,81.0,400,72,70,0.0,12266,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1859.475430331967,0.0,0.0,17728.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11818.666666666666,1,0,1_0,1_0 -1642,6.0,6.0,71.0,120,71,71,0.0,12267,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3637.1546670080993,2183.0,0.0,18160.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,12106.666666666666,1,0,1_0,1_1 -1643,0.0,20.0,29.0,112,37,10,0.0,12268,0.0,0.0,90.0,0.0,2.0,5.0,0.0,2.0,1.5,2204.9288683297864,0.0,0.0,59559.0,1,2,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,39706.0,5,0,5,5_0 -1644,0.0,0.0,76.0,111,75,70,0.0,12273,0.0,0.0,0.0,1000.0,0.0,2.0,0.0,1.0,1.0,3359.614468020785,0.0,0.0,21467.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21467.0,3,0,3_0,3_0 -1645,0.0,21.0,85.0,111,74,12,0.0,12275,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2878.726419330526,3120.0,0.0,35039.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,23359.333333333332,4,0,4_0,4_0 -1646,5.0,10.0,28.0,111,64,50,0.0,12276,0.0,0.0,100.0,0.0,2.0,2.0,0.0,2.0,1.5,2708.182850145519,3973.0,0.0,37188.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,24792.0,4,0,4_0,4_0 -1647,0.0,11.0,58.0,211,54,30,0.0,12278,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1641.915899410657,0.0,0.0,30846.0,1,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,30846.0,5,0,5,5_0 -1648,1.0,1.0,31.0,111,42,10,0.0,12279,0.0,100.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3940.4697638843045,0.0,0.0,22328.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22328.0,4,0,4_0,4_0 -1649,6.0,6.0,76.0,400,77,71,0.0,1228,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2731.240168172141,0.0,0.0,7003.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,7003.0,1,0,1_0,1_1 -1650,1.0,1.0,38.0,112,46,31,0.0,12281,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,5400.459076838511,0.0,0.0,68912.0,1,1,9,1.0,4,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,28713.333333333336,4,0,4_0,4_0 -1651,3.0,7.0,36.0,112,11,42,0.0,12283,0.0,300.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3417.7756714697553,231.0,0.0,38462.0,1,4,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18315.238095238095,3,0,3_0,3_1 -1652,3.0,3.0,32.0,112,53,50,0.0,12284,0.0,300.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1633.8172819148424,1560.0,0.0,28305.0,1,3,8,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,15725.0,2,0,2_0,2_0 -1653,1.0,21.0,60.0,111,74,50,0.0,12286,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1548.552655799785,2600.0,0.0,36294.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,24196.0,4,0,4_0,4_0 -1654,11.0,11.0,79.0,111,78,50,0.0,12287,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1764.6252653355975,2496.0,0.0,18679.0,5,1,3,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18679.0,3,0,3_0,3_0 -1655,0.0,0.0,43.0,111,52,20,0.0,12288,0.0,0.0,0.0,300.0,1.0,1.0,0.0,1.0,1.0,3403.107091345901,0.0,0.0,22587.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22587.0,4,0,4_0,4_0 -1656,9.0,10.0,62.0,111,56,50,0.0,12289,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1266.5806554445846,1561.0,0.0,18665.0,1,1,7,5.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,18665.0,3,0,3_0,3_0 -1657,3.0,4.0,81.0,111,77,41,0.0,12290,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3072.39947616052,0.0,0.0,14187.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14187.0,2,0,2_0,2_0 -1658,2.0,13.0,55.0,111,54,60,0.0,12291,0.0,0.0,420.0,534.0,2.0,4.0,1.0,2.0,1.5,2287.8805186101285,1560.0,0.0,21830.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,14553.333333333334,2,0,2_0,2_0 -1659,4.0,8.0,42.0,221,62,60,0.0,12292,0.0,340.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3108.1908152781884,1041.0,0.0,27777.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,12076.956521739132,1,0,1_0,1_0 -1660,2.0,4.0,33.0,111,46,12,0.0,12294,30.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2496.020044864551,0.0,0.0,45557.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,0.0,30371.333333333332,5,0,5,5_0 -1661,2.0,4.0,33.0,111,46,20,0.0,12296,0.0,120.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3408.769365027517,0.0,0.0,28298.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28298.0,4,0,4_0,4_0 -1662,0.0,22.0,35.0,111,63,71,0.0,12297,0.0,0.0,99999.0,0.0,1.0,3.0,1.0,3.0,1.8,4647.896119376806,1040.0,0.0,22570.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,12538.888888888889,1,0,1_1,1_0 -1663,10.0,13.0,41.0,111,62,60,0.0,12298,0.0,99999.0,0.0,329.0,1.0,5.0,4.0,6.0,3.3,3545.8585306905056,0.0,0.0,40500.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,12272.727272727274,1,0,1_1,1_0 -1664,2.0,11.0,47.0,111,37,31,0.0,123,0.0,650.0,200.0,0.0,3.0,6.0,1.0,3.0,2.0,3053.714136511484,8338.0,0.0,75383.0,1,2,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,37691.5,5,0,5,5_0 -1665,1.0,9.0,26.0,400,52,50,0.0,12301,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4597.309139193345,1560.0,0.0,19507.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19507.0,3,0,3_0,3_1 -1666,11.0,11.0,46.0,221,55,41,0.0,12302,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,4437.207936539307,1820.0,0.0,27180.0,1,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15100.0,2,0,2_0,2_0 -1667,1.0,3.0,26.0,111,84,10,2.0,12303,0.0,100.0,0.0,171.0,1.0,2.0,0.0,2.0,1.5,2733.675155278918,1390.0,11000.0,9467.0,3,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,6311.333333333333,1,0,1_1,1_0 -1668,4.0,6.0,56.0,222,54,50,0.0,12304,0.0,600.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2148.6055731676493,1549.0,0.0,38843.0,1,1,1,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25895.333333333332,4,0,4_0,4_1 -1669,9.0,12.0,65.0,300,77,50,0.0,12305,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1554.5400846226546,0.0,0.0,19644.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13096.0,2,0,2_0,2_1 -1670,5.0,11.0,26.0,111,21,71,0.0,12306,0.0,99999.0,0.0,295.0,2.0,4.0,2.0,4.0,2.1,4156.982762955471,8996.0,0.0,53530.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,25490.47619047619,4,0,4_1,4_0 -1671,0.0,0.0,48.0,111,55,50,0.0,12307,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3480.028463272423,0.0,0.0,8224.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8224.0,1,0,1_1,1_0 -1672,0.0,17.0,47.0,112,52,50,0.0,12308,0.0,0.0,375.0,0.0,3.0,6.0,3.0,5.0,2.8,925.4615160103255,3380.0,0.0,81210.0,1,3,8,0.0,4,6.0,0.0,0.0,1,0,0,0,0,0,6.0,0.0,29003.57142857143,5,0,5,5_1 -1673,7.0,10.0,63.0,111,75,50,0.0,12309,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2560.4515811346864,0.0,0.0,24567.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24567.0,4,0,4_0,4_0 -1674,0.0,18.0,54.0,400,42,31,0.0,12313,0.0,0.0,370.0,0.0,1.0,3.0,0.0,1.0,1.0,2419.050613296408,1820.0,0.0,10863.0,1,4,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,10863.0,1,0,1_0,1_1 -1675,4.0,6.0,49.0,112,62,50,0.0,12314,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2696.5872142558123,2600.0,0.0,28980.0,1,2,9,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,28980.0,4,0,4_0,4_1 -1676,1.0,3.0,67.0,111,74,50,0.0,12315,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1690.4719738833226,3536.0,0.0,70137.0,5,1,6,4.0,3,4.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,46758.0,5,0,5,5_0 -1677,3.0,7.0,51.0,111,52,41,0.0,12316,0.0,150.0,0.0,700.0,1.0,5.0,0.0,1.0,1.0,2517.651047100138,0.0,0.0,24010.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24010.0,4,0,4_0,4_0 -1678,0.0,0.0,50.0,111,56,50,0.0,12317,0.0,0.0,0.0,420.0,1.0,2.0,0.0,1.0,1.0,2551.191278009869,0.0,0.0,17691.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17691.0,3,0,3_0,3_0 -1679,8.0,28.0,43.0,120,46,31,0.0,12318,0.0,0.0,350.0,0.0,2.0,7.0,1.0,3.0,1.8,2705.380079291208,2251.0,0.0,71602.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,39778.88888888889,5,0,5,5_1 -1680,16.0,16.0,85.0,112,72,70,0.0,12319,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3338.9836537112183,0.0,0.0,11645.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,7763.333333333333,1,0,1_0,1_1 -1681,9.0,11.0,53.0,111,65,41,0.0,1232,0.0,0.0,0.0,229.0,2.0,2.0,0.0,2.0,1.5,2798.382000867999,0.0,0.0,23372.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15581.333333333334,2,0,2_0,2_0 -1682,6.0,27.0,67.0,111,72,71,0.0,12322,0.0,0.0,0.0,50.0,0.0,2.0,0.0,1.0,1.0,2736.6611174010186,0.0,0.0,11188.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11188.0,1,0,1_1,1_0 -1683,0.0,0.0,27.0,111,52,50,0.0,12324,0.0,0.0,0.0,320.0,1.0,2.0,0.0,1.0,1.0,4231.978380589775,0.0,0.0,24637.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24637.0,4,0,4_0,4_0 -1684,6.0,7.0,37.0,300,63,50,0.0,12325,0.0,1170.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1854.6607973312794,5175.0,0.0,55320.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26342.85714285714,4,0,4_0,4_1 -1685,5.0,5.0,64.0,111,34,10,0.0,12328,0.0,99999.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2931.316654565306,0.0,0.0,81354.0,1,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,54236.0,5,0,5,5_0 -1686,4.0,10.0,47.0,111,52,60,0.0,1233,0.0,0.0,0.0,0.0,2.0,5.0,3.0,4.0,2.5,2278.984951318957,0.0,0.0,41942.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,16776.8,2,0,2_1,2_0 -1687,3.0,16.0,38.0,111,47,12,0.0,12332,0.0,230.0,0.0,149.0,2.0,3.0,2.0,4.0,2.1,2457.3250372622992,2652.0,0.0,22475.0,4,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,10702.380952380952,1,0,1_1,1_0 -1688,5.0,5.0,64.0,111,78,71,0.0,12333,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2790.5501100090864,2473.0,0.0,22259.0,5,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14839.333333333334,2,0,2_0,2_0 -1689,1.0,14.0,27.0,112,52,42,0.0,12334,0.0,300.0,0.0,445.0,1.0,2.0,0.0,2.0,1.5,3170.7561312263742,1145.0,0.0,18588.0,1,3,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12392.0,1,0,1_0,1_1 -1690,0.0,6.0,23.0,111,84,20,2.0,12335,0.0,120.0,0.0,254.0,0.0,2.0,0.0,1.0,1.0,2809.0912367087953,1047.0,4800.0,13146.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13146.0,2,0,2_1,2_0 -1691,2.0,9.0,45.0,111,46,41,0.0,12337,0.0,0.0,0.0,148.0,1.0,2.0,1.0,2.0,1.3,3017.1821791632547,0.0,0.0,18823.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,14479.23076923077,2,0,2_1,2_0 -1692,13.0,13.0,45.0,111,67,41,0.0,12338,0.0,199998.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3292.6710167384376,0.0,0.0,24340.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,12170.0,1,0,1_0,1_0 -1693,4.0,4.0,44.0,120,54,71,0.0,1234,0.0,500.0,300.0,0.0,2.0,4.0,2.0,4.0,2.1,7884.647336699138,3388.0,0.0,52487.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24993.809523809523,4,0,4_0,4_1 -1694,3.0,6.0,53.0,111,46,31,0.0,12340,0.0,99999.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1467.6562594348845,0.0,0.0,66255.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,33127.5,5,0,5,5_0 -1695,9.0,10.0,36.0,300,63,50,0.0,12341,0.0,600.0,108.0,0.0,2.0,6.0,2.0,4.0,2.1,1160.6920308994643,2861.0,0.0,41107.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19574.761904761905,3,0,3_0,3_1 -1696,21.0,22.0,60.0,111,78,31,0.0,12342,0.0,0.0,0.0,290.0,1.0,4.0,1.0,3.0,2.0,3096.5512650952933,0.0,0.0,49278.0,5,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24639.0,4,0,4_0,4_0 -1697,2.0,2.0,69.0,111,77,50,0.0,12343,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2883.939267910039,0.0,0.0,16798.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16798.0,2,0,2_0,2_0 -1698,0.0,0.0,53.0,111,78,71,0.0,12344,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,3661.0950290364367,0.0,0.0,27614.0,7,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13807.0,2,0,2_1,2_0 -1699,3.0,7.0,39.0,111,43,10,0.0,12348,0.0,20.0,0.0,692.0,2.0,4.0,2.0,4.0,2.1,2342.4554783514313,0.0,0.0,46607.0,1,3,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,22193.809523809523,4,0,4_0,4_0 -1700,12.0,12.0,62.0,111,74,33,0.0,12349,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3442.988003259218,1560.0,0.0,31579.0,5,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,31579.0,5,0,5,5_0 -1701,4.0,13.0,58.0,112,21,71,0.0,12350,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3744.6848616365883,4160.0,0.0,25082.0,1,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16721.333333333332,2,0,2_0,2_1 -1702,7.0,7.0,47.0,400,43,10,0.0,12351,0.0,290.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,3665.45980660829,0.0,0.0,60132.0,1,1,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,26144.34782608696,4,0,4_0,4_1 -1703,0.0,14.0,59.0,111,55,50,0.0,12352,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3614.4778959848163,2340.0,0.0,35956.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23970.666666666668,4,0,4_0,4_0 -1704,4.0,16.0,49.0,112,53,71,0.0,12353,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,6166.132948899003,0.0,0.0,15170.0,4,2,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,15170.0,2,0,2_1,2_1 -1705,29.0,29.0,75.0,111,78,50,0.0,12354,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3244.0445111838962,0.0,0.0,21254.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21254.0,3,0,3_0,3_0 -1706,1.0,13.0,26.0,221,67,43,2.0,12355,0.0,100.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,1895.3160621990435,2080.0,1700.0,20750.0,4,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,11527.777777777777,1,0,1_1,1_0 -1707,11.0,11.0,36.0,112,38,12,0.0,12356,0.0,190.0,180.0,0.0,2.0,5.0,2.0,4.0,2.1,1812.0458466628443,3432.0,0.0,55956.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26645.714285714286,4,0,4_0,4_1 -1708,0.0,0.0,27.0,111,38,12,0.0,12359,0.0,0.0,0.0,840.0,1.0,2.0,0.0,1.0,1.0,3904.3835366921753,0.0,0.0,41621.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41621.0,5,0,5,5_0 -1709,0.0,0.0,45.0,111,56,60,0.0,12360,0.0,0.0,0.0,547.0,2.0,2.0,1.0,3.0,1.8,4947.227979388958,0.0,0.0,42033.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23351.666666666668,4,0,4_0,4_0 -1710,0.0,9.0,22.0,111,84,10,0.0,12361,0.0,0.0,0.0,318.0,0.0,1.0,0.0,1.0,1.0,4197.027266984197,0.0,0.0,11645.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11645.0,1,0,1_1,1_0 -1711,5.0,13.0,62.0,111,75,31,0.0,12362,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2317.4559520773464,4628.0,0.0,30050.0,5,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30050.0,5,0,5,5_0 -1712,0.0,0.0,83.0,111,75,71,0.0,12363,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3544.0813318779947,0.0,0.0,31158.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20772.0,3,0,3_0,3_0 -1713,0.0,0.0,76.0,111,86,71,0.0,12364,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2901.9437844628874,0.0,0.0,15564.0,5,4,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10376.0,1,0,1_0,1_0 -1714,3.0,3.0,74.0,212,72,31,0.0,12365,0.0,0.0,0.0,0.0,0.0,6.0,1.0,3.0,2.0,2341.1650931782474,1581.0,0.0,32905.0,5,1,2,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16452.5,2,0,2_0,2_1 -1715,0.0,2.0,28.0,111,54,31,2.0,12366,0.0,400.0,0.0,609.0,2.0,2.0,0.0,2.0,1.5,4400.661082757866,6738.0,10400.0,44757.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,29838.0,5,0,5,5_0 -1716,0.0,0.0,55.0,111,85,71,0.0,12367,0.0,0.0,0.0,105.0,0.0,2.0,0.0,1.0,1.0,4752.757740881012,0.0,0.0,6740.0,6,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6740.0,1,0,1_1,1_0 -1717,2.0,8.0,36.0,112,69,71,0.0,12368,0.0,950.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,4169.1764255788385,3692.0,0.0,45319.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,18882.916666666668,3,0,3_1,3_1 -1718,6.0,17.0,36.0,400,48,60,0.0,12371,0.0,600.0,500.0,0.0,2.0,7.0,3.0,5.0,2.4,2468.455347554581,0.0,0.0,42298.0,2,2,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,1,2.0,1.0,17624.166666666668,3,0,3_1,3_1 -1719,5.0,5.0,80.0,111,77,70,0.0,12372,0.0,0.0,0.0,460.0,0.0,5.0,0.0,1.0,1.0,3457.4252460464027,0.0,0.0,22410.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22410.0,4,0,4_0,4_0 -1720,2.0,6.0,51.0,112,37,50,0.0,12374,0.0,192.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,2240.530910260935,910.0,0.0,81625.0,1,2,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,40812.5,5,0,5,5_1 -1721,1.0,1.0,73.0,111,74,10,0.0,12375,0.0,0.0,0.0,3698.0,0.0,3.0,0.0,2.0,1.5,8038.0837615574255,0.0,0.0,155514.0,5,3,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,103676.0,5,0,5,5_0 -1722,4.0,13.0,65.0,111,74,12,0.0,12376,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2021.1528632207783,3201.0,0.0,63373.0,5,1,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,3.0,0.0,42248.666666666664,5,0,5,5_0 -1723,12.0,12.0,61.0,111,74,50,0.0,12377,0.0,0.0,0.0,750.0,0.0,2.0,0.0,1.0,1.0,3335.5098421386087,0.0,0.0,24698.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24698.0,4,0,4_0,4_0 -1724,1.0,7.0,29.0,111,47,43,2.0,12379,0.0,0.0,0.0,613.0,2.0,3.0,1.0,3.0,1.8,3023.183823553102,0.0,7000.0,30143.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16746.11111111111,2,0,2_0,2_0 -1725,5.0,5.0,41.0,111,34,12,0.0,12380,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2704.347300241756,2156.0,0.0,125640.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,59828.57142857143,5,0,5,5_0 -1726,18.0,18.0,68.0,111,75,12,0.0,12381,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,947.3995351125984,1396.0,0.0,48123.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,32082.0,5,0,5,5_0 -1727,4.0,8.0,38.0,111,53,12,0.0,12382,0.0,550.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,1278.2330879942863,0.0,0.0,102795.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,38072.22222222222,5,0,5,5_0 -1728,4.0,21.0,51.0,111,67,50,0.0,12383,0.0,120.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2867.540092177022,4680.0,0.0,25566.0,1,3,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,19666.153846153844,3,0,3_0,3_0 -1729,5.0,5.0,50.0,111,62,71,0.0,12384,0.0,60.0,95.0,0.0,2.0,5.0,1.0,3.0,2.0,1501.6731969748964,5418.0,0.0,48498.0,1,1,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,24249.0,4,0,4_0,4_0 -1730,9.0,9.0,49.0,400,85,41,0.0,12389,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.6,1687.1877214544577,0.0,0.0,20480.0,7,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,7876.923076923076,1,0,1_0,1_1 -1731,0.0,0.0,87.0,211,86,70,0.0,1239,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4395.7477249300855,0.0,0.0,12170.0,6,1,3,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12170.0,1,0,1_0,1_0 -1732,7.0,7.0,63.0,111,75,30,0.0,12390,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,5504.285451412295,0.0,0.0,47929.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,31952.666666666668,5,0,5,5_0 -1733,11.0,12.0,43.0,112,53,41,0.0,12391,0.0,690.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,3041.394732758605,3914.0,0.0,55623.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21393.46153846154,3,0,3_0,3_1 -1734,10.0,17.0,38.0,120,56,71,0.0,12392,0.0,0.0,50.0,0.0,1.0,3.0,1.0,2.0,1.5,5149.690644001595,0.0,0.0,13225.0,1,2,0,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,8816.666666666666,1,0,1_1,1_0 -1735,4.0,6.0,71.0,300,75,42,0.0,12394,0.0,320.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2064.0627820448262,0.0,0.0,36444.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24296.0,4,0,4_0,4_1 -1736,11.0,11.0,77.0,112,72,50,0.0,12399,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2589.505740428035,0.0,0.0,23210.0,5,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,15473.333333333334,2,0,2_0,2_0 -1737,9.0,12.0,33.0,111,47,31,0.0,124,0.0,730.0,40.0,0.0,2.0,5.0,2.0,4.0,2.1,4015.105203806269,3292.0,0.0,44380.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,21133.333333333332,3,0,3_0,3_0 -1738,2.0,3.0,52.0,221,55,70,0.0,1240,0.0,600.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,4755.066878902941,1404.0,0.0,31543.0,1,1,1,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21028.666666666668,3,0,3_0,3_0 -1739,1.0,4.0,34.0,111,38,10,2.0,12402,0.0,50.0,0.0,590.0,1.0,3.0,1.0,3.0,1.8,3396.1160285619712,0.0,15000.0,42420.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,23566.666666666668,4,0,4_1,4_0 -1740,3.0,6.0,53.0,111,52,60,0.0,12403,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,2832.715916852222,2600.0,0.0,15440.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,15440.0,2,0,2_0,2_0 -1741,19.0,19.0,65.0,112,78,50,0.0,12405,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1729.5555842279582,0.0,0.0,39472.0,5,1,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,39472.0,5,0,5,5_1 -1742,7.0,7.0,58.0,111,38,12,0.0,12406,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2608.4895885746505,0.0,0.0,102918.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,68612.0,5,0,5,5_0 -1743,8.0,9.0,33.0,112,45,10,0.0,12407,0.0,230.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2096.8610796144444,0.0,0.0,26158.0,1,2,7,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20121.53846153846,3,0,3_0,3_1 -1744,11.0,11.0,80.0,111,78,71,0.0,12408,0.0,0.0,0.0,284.0,0.0,1.0,0.0,1.0,1.0,3649.076501202223,0.0,0.0,14608.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,14608.0,2,0,2_1,2_0 -1745,22.0,22.0,61.0,211,75,50,0.0,12409,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3408.4173835563406,0.0,0.0,23798.0,5,1,2,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15865.333333333334,2,0,2_0,2_0 -1746,0.0,0.0,52.0,112,21,50,0.0,1241,0.0,0.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,2746.3563935226516,0.0,0.0,62907.0,1,1,10,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31453.5,5,0,5,5_0 -1747,4.0,5.0,26.0,111,47,31,0.0,12411,0.0,99999.0,0.0,99.0,1.0,2.0,0.0,1.0,1.0,2838.7715202726245,1742.0,0.0,22139.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,22139.0,4,0,4_1,4_0 -1748,5.0,22.0,61.0,112,78,70,0.0,12412,0.0,0.0,0.0,178.0,0.0,1.0,0.0,1.0,1.0,5619.336104850632,2080.0,0.0,5716.0,5,3,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,5716.0,1,0,1_1,1_0 -1749,6.0,7.0,47.0,300,43,33,0.0,12413,0.0,300.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1541.4414156632092,3474.0,0.0,47277.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23638.5,4,0,4_0,4_1 -1750,11.0,11.0,38.0,112,54,71,0.0,12414,0.0,220.0,30.0,0.0,2.0,4.0,1.0,3.0,1.8,2297.7563411732535,2600.0,0.0,46760.0,1,2,10,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,25977.777777777777,4,0,4_0,4_0 -1751,6.0,6.0,42.0,120,38,12,0.0,12415,0.0,1210.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1510.7313085039525,4113.0,0.0,75722.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,50481.333333333336,5,0,5,5_1 -1752,2.0,2.0,80.0,111,72,41,0.0,12416,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2785.6669964082944,0.0,0.0,60827.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,60827.0,5,0,5,5_0 -1753,2.0,10.0,53.0,112,47,42,0.0,12417,0.0,100099.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2032.3648995389965,0.0,0.0,57537.0,1,2,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,28768.5,4,0,4_0,4_0 -1754,0.0,0.0,89.0,120,71,70,0.0,12418,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4193.219329473043,0.0,0.0,11354.0,5,1,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11354.0,1,0,1_0,1_0 -1755,0.0,0.0,44.0,111,85,50,0.0,12419,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2671.637781789095,0.0,0.0,8455.0,4,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8455.0,1,0,1_1,1_0 -1756,3.0,3.0,54.0,211,42,10,0.0,1242,0.0,0.0,180.0,0.0,1.0,3.0,0.0,1.0,1.0,2060.8437390186846,1678.0,0.0,18498.0,1,1,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18498.0,3,0,3_0,3_0 -1757,8.0,28.0,59.0,112,78,50,0.0,12421,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3838.336224857866,1560.0,0.0,11397.0,7,3,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,7598.0,1,0,1_1,1_1 -1758,2.0,2.0,62.0,111,34,10,0.0,12422,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1847.155359464273,0.0,0.0,126881.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,63440.5,5,0,5,5_0 -1759,3.0,4.0,66.0,111,77,71,0.0,12423,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2626.9949302060377,0.0,0.0,8502.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,8502.0,1,0,1_0,1_0 -1760,0.0,0.0,87.0,112,71,71,0.0,12424,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3426.739920483971,0.0,0.0,16131.0,5,1,4,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16131.0,2,0,2_0,2_1 -1761,6.0,9.0,36.0,300,35,10,0.0,12426,0.0,800.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,1472.4995224523548,6318.0,0.0,23300.0,1,1,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,12944.444444444443,2,0,2_0,2_1 -1762,2.0,2.0,69.0,400,11,70,0.0,12428,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1821.190530974484,7111.0,0.0,27009.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18006.0,3,0,3_0,3_1 -1763,2.0,14.0,49.0,112,43,20,0.0,1243,0.0,300.0,300.0,0.0,2.0,7.0,2.0,4.0,2.1,1426.4460817323245,0.0,0.0,45352.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21596.190476190477,3,0,3_0,3_1 -1764,0.0,0.0,54.0,112,43,33,0.0,12431,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,3273.2880863751393,0.0,0.0,54520.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,36346.666666666664,5,0,5,5_1 -1765,2.0,2.0,73.0,111,74,10,0.0,12432,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3059.966018625788,3380.0,0.0,92060.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,61373.333333333336,5,0,5,5_0 -1766,4.0,4.0,28.0,112,47,41,0.0,12437,0.0,260.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3749.5398145280756,3237.0,0.0,40085.0,1,4,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26723.333333333332,4,0,4_0,4_1 -1767,1.0,13.0,38.0,111,64,50,2.0,12438,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1967.0445695256337,0.0,1200.0,19777.0,1,2,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19777.0,3,0,3_0,3_0 -1768,3.0,3.0,76.0,400,71,70,0.0,12439,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2481.674321810198,0.0,0.0,63565.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,63565.0,5,0,5,5_1 -1769,6.0,9.0,40.0,111,37,10,0.0,1244,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1416.2777938877787,0.0,0.0,220188.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,91745.0,5,0,5,5_0 -1770,2.0,3.0,26.0,111,38,12,0.0,12440,0.0,50.0,0.0,470.0,1.0,2.0,0.0,1.0,1.0,3606.922932974069,1561.0,0.0,23976.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23976.0,4,0,4_0,4_0 -1771,1.0,1.0,63.0,300,72,71,0.0,12442,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2389.5287643549964,3640.0,0.0,17990.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11993.333333333334,1,0,1_0,1_1 -1772,2.0,2.0,67.0,112,74,12,0.0,12443,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1357.3395880120656,0.0,0.0,59360.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,39573.333333333336,5,0,5,5_0 -1773,1.0,6.0,37.0,111,37,31,2.0,12444,0.0,0.0,0.0,0.0,1.0,9.0,4.0,6.0,2.7,2681.173347849413,10954.0,11000.0,50321.0,1,2,8,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,18637.407407407405,3,0,3_0,3_0 -1774,4.0,4.0,49.0,221,63,41,0.0,12445,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1365.2257354313272,2600.0,0.0,22745.0,1,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15163.333333333334,2,0,2_0,2_0 -1775,0.0,0.0,50.0,111,45,41,1.0,12446,0.0,275.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1006.4421993040838,2340.0,23900.0,45782.0,1,1,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30521.333333333332,5,0,5,5_0 -1776,3.0,22.0,54.0,111,48,50,0.0,1245,0.0,380.0,230.0,0.0,2.0,7.0,1.0,3.0,2.0,1662.0307045834043,4940.0,0.0,59257.0,1,1,5,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,29628.5,5,0,5,5_0 -1777,14.0,26.0,71.0,112,71,50,0.0,12450,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1204.4632347409256,2914.0,0.0,24331.0,5,1,4,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,16220.666666666666,2,0,2_0,2_1 -1778,0.0,18.0,25.0,111,34,10,0.0,12451,0.0,0.0,130.0,448.0,1.0,1.0,0.0,1.0,1.0,3485.69984462431,0.0,0.0,43427.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,43427.0,5,0,5,5_0 -1779,2.0,5.0,65.0,111,75,10,0.0,12452,0.0,0.0,0.0,644.0,0.0,3.0,0.0,1.0,1.0,1213.347476947835,0.0,0.0,29369.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29369.0,5,0,5,5_0 -1780,5.0,5.0,73.0,111,78,50,0.0,12455,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1262.1497897127012,1856.0,0.0,26358.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17572.0,3,0,3_0,3_0 -1781,0.0,45.0,43.0,111,62,50,0.0,12456,0.0,200.0,0.0,540.0,1.0,3.0,0.0,1.0,1.0,3930.0919541662406,4991.0,0.0,20830.0,1,3,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,20830.0,3,0,3_0,3_0 -1782,2.0,8.0,76.0,111,75,71,0.0,12458,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3503.6729201151516,0.0,0.0,23904.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15936.0,2,0,2_0,2_0 -1783,8.0,11.0,61.0,221,74,60,0.0,12459,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2271.834975827841,8664.0,0.0,33027.0,5,1,1,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,33027.0,5,0,5,5_0 -1784,5.0,5.0,54.0,300,21,50,0.0,1246,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2158.14345497476,0.0,0.0,95977.0,1,1,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,63984.666666666664,5,0,5,5_1 -1785,0.0,0.0,76.0,111,77,50,0.0,12460,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4228.666495475174,0.0,0.0,15732.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15732.0,2,0,2_0,2_0 -1786,0.0,0.0,42.0,112,43,33,1.0,12461,0.0,444.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1998.6639927559204,6265.0,16000.0,54650.0,1,2,10,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,22770.833333333336,4,0,4_0,4_1 -1787,7.0,8.0,71.0,211,74,60,0.0,12463,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1068.5606420671456,0.0,0.0,30330.0,5,2,3,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,20220.0,3,0,3_0,3_0 -1788,0.0,0.0,29.0,111,21,50,0.0,12464,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3464.002259660862,0.0,0.0,18588.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18588.0,3,0,3_0,3_0 -1789,9.0,9.0,64.0,300,72,70,0.0,12465,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,6791.062938899213,0.0,0.0,11338.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,11338.0,1,0,1_1,1_1 -1790,12.0,12.0,82.0,111,75,70,0.0,12466,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4174.469137184236,1945.0,0.0,19016.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19016.0,3,0,3_0,3_0 -1791,5.0,5.0,49.0,112,56,71,0.0,12467,0.0,120.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,3419.5621105118844,0.0,0.0,15350.0,1,1,7,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10233.333333333334,1,0,1_0,1_1 -1792,0.0,0.0,21.0,111,84,41,0.0,12468,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2990.600315735364,0.0,0.0,2013.0,3,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,2013.0,1,0,1_0,1_0 -1793,18.0,23.0,61.0,111,78,50,0.0,12469,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2032.4596688737008,0.0,0.0,29566.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19710.666666666668,3,0,3_0,3_0 -1794,2.0,2.0,71.0,111,72,71,0.0,12470,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1920.682478752277,0.0,0.0,23094.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15396.0,2,0,2_0,2_0 -1795,16.0,16.0,79.0,211,78,50,0.0,12471,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1358.3558524696089,0.0,0.0,23886.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15924.0,2,0,2_0,2_0 -1796,5.0,5.0,66.0,111,75,50,0.0,12472,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1437.0804612642103,0.0,0.0,41780.0,5,4,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,27853.333333333332,4,0,4_0,4_0 -1797,2.0,2.0,36.0,112,43,41,0.0,12474,0.0,150.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,1882.2916358531575,0.0,0.0,92325.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,43964.28571428571,5,0,5,5_1 -1798,3.0,6.0,58.0,221,71,50,0.0,12476,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1746.968346744731,3016.0,0.0,21480.0,5,1,1,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,21480.0,3,0,3_0,3_0 -1799,10.0,10.0,53.0,111,52,41,0.0,12477,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1788.3246319404352,0.0,0.0,26774.0,1,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26774.0,4,0,4_0,4_0 -1800,0.0,5.0,50.0,111,38,31,0.0,12479,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,4221.204865764768,0.0,0.0,76819.0,1,2,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,38409.5,5,0,5,5_0 -1801,3.0,26.0,50.0,111,46,42,0.0,1248,0.0,530.0,20.0,350.0,4.0,4.0,2.0,4.0,2.5,2232.5383953945598,2080.0,0.0,56497.0,1,3,8,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,22598.8,4,0,4_0,4_0 -1802,0.0,0.0,79.0,112,77,70,0.0,12480,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2730.7367208701185,0.0,0.0,13568.0,5,1,5,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13568.0,2,0,2_0,2_1 -1803,0.0,3.0,30.0,112,31,10,0.0,12483,0.0,1100.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5764.433580054943,0.0,0.0,25436.0,1,2,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,25436.0,4,0,4_0,4_1 -1804,12.0,12.0,62.0,112,74,30,0.0,12484,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2635.0771501674426,1041.0,0.0,42486.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,28324.0,4,0,4_0,4_1 -1805,7.0,8.0,46.0,111,38,43,0.0,12485,0.0,99999.0,0.0,0.0,3.0,6.0,2.0,4.0,2.3,6345.1627560973275,3276.0,0.0,46274.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,20119.13043478261,3,0,3_0,3_0 -1806,2.0,8.0,36.0,111,43,20,0.0,12487,0.0,130.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2524.8653950092653,0.0,0.0,20346.0,1,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20346.0,3,0,3_0,3_0 -1807,0.0,0.0,84.0,111,74,70,0.0,12488,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1861.874692137277,0.0,0.0,27415.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18276.666666666668,3,0,3_0,3_0 -1808,8.0,13.0,45.0,111,68,71,0.0,12489,0.0,30.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3434.6961941922395,1040.0,0.0,18882.0,1,3,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,10490.0,1,0,1_1,1_0 -1809,6.0,22.0,39.0,111,54,44,0.0,12490,0.0,0.0,90.0,1000.0,2.0,4.0,1.0,3.0,2.0,2114.5926654991986,1047.0,0.0,41347.0,1,3,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,20673.5,3,0,3_0,3_0 -1810,0.0,0.0,40.0,111,68,71,0.0,12491,0.0,0.0,0.0,275.0,1.0,2.0,0.0,1.0,1.0,3375.5420977963113,0.0,0.0,11400.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11400.0,1,0,1_0,1_0 -1811,5.0,5.0,64.0,111,74,60,0.0,12492,0.0,0.0,0.0,0.0,0.0,4.0,2.0,4.0,2.5,2107.065851718023,1711.0,0.0,70499.0,5,1,9,7.0,4,4.0,0.0,0.0,0,0,0,1,0,0,3.0,1.0,28199.6,4,0,4_0,4_0 -1812,7.0,11.0,75.0,221,71,71,0.0,12495,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,7390.395660888656,3050.0,0.0,17143.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17143.0,3,0,3_0,3_0 -1813,8.0,14.0,60.0,111,33,20,0.0,12496,0.0,0.0,330.0,0.0,3.0,7.0,1.0,3.0,2.0,919.7929473857217,0.0,0.0,84054.0,1,1,7,5.0,4,4.0,0.0,0.0,0,0,1,0,0,0,4.0,0.0,42027.0,5,0,5,5_0 -1814,1.0,2.0,43.0,111,62,71,0.0,12497,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2910.66943158892,1300.0,0.0,40681.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16950.416666666668,3,0,3_0,3_0 -1815,5.0,5.0,62.0,111,38,12,0.0,12498,0.0,120.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2131.0459982152656,950.0,0.0,90733.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,60488.666666666664,5,0,5,5_0 -1816,6.0,11.0,37.0,111,56,31,0.0,12499,0.0,150.0,0.0,322.0,1.0,3.0,1.0,2.0,1.3,2866.844579268729,0.0,0.0,20594.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,15841.538461538461,2,0,2_1,2_0 -1817,1.0,12.0,45.0,111,54,60,2.0,125,0.0,70.0,0.0,246.0,1.0,3.0,1.0,2.0,1.5,2726.4792404692625,3120.0,1900.0,19499.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,12999.333333333334,2,0,2_1,2_0 -1818,2.0,21.0,57.0,400,64,50,0.0,1250,0.0,120.0,0.0,0.0,2.0,8.0,0.0,3.0,2.0,853.3741304490226,7020.0,0.0,43909.0,1,1,0,0.0,5,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,21954.5,4,0,4_0,4_1 -1819,9.0,9.0,36.0,112,33,20,0.0,12501,0.0,2000.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2005.166397615875,6372.0,0.0,58895.0,1,2,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,28045.238095238095,4,0,4_0,4_1 -1820,10.0,11.0,70.0,112,78,70,0.0,12502,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1812.2483457920055,0.0,0.0,11030.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11030.0,1,0,1_0,1_1 -1821,3.0,8.0,28.0,111,47,20,0.0,12508,0.0,350.0,150.0,442.0,2.0,2.0,0.0,2.0,1.5,3489.9715219381515,3120.0,0.0,36439.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24292.666666666668,4,0,4_0,4_0 -1822,0.0,0.0,56.0,111,68,41,0.0,12510,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1532.0274514748814,0.0,0.0,13750.0,4,3,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,6875.0,1,0,1_1,1_0 -1823,24.0,34.0,38.0,120,67,31,0.0,12513,0.0,600.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3241.6292201598294,5356.0,0.0,31410.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,14957.142857142857,2,0,2_0,2_1 -1824,10.0,10.0,37.0,112,43,33,0.0,12515,0.0,910.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2101.100218785457,5981.0,0.0,57615.0,1,2,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,32008.333333333332,5,0,5,5_1 -1825,1.0,5.0,64.0,111,75,10,2.0,12518,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3159.680244919108,0.0,12500.0,40347.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,40347.0,5,0,5,5_0 -1826,15.0,19.0,43.0,111,63,50,0.0,12519,0.0,100149.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2892.9929256041287,1235.0,0.0,31807.0,1,2,4,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15146.190476190475,2,0,2_0,2_0 -1827,3.0,18.0,35.0,112,63,43,0.0,1252,0.0,220.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2549.044470270009,2854.0,0.0,29356.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,13979.047619047618,2,0,2_0,2_1 -1828,13.0,13.0,80.0,111,86,50,0.0,12520,0.0,0.0,0.0,4032.0,0.0,6.0,0.0,2.0,1.5,3529.392056327608,1144.0,0.0,17610.0,6,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11740.0,1,0,1_0,1_0 -1829,1.0,1.0,60.0,111,72,10,0.0,12521,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2144.866030263993,0.0,0.0,38351.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,25567.333333333332,4,0,4_0,4_0 -1830,12.0,12.0,66.0,111,78,70,0.0,12522,0.0,0.0,0.0,320.0,0.0,3.0,0.0,1.0,1.0,2954.363945985437,0.0,0.0,22062.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22062.0,4,0,4_0,4_0 -1831,4.0,4.0,39.0,111,38,10,0.0,12524,0.0,300.0,300.0,0.0,2.0,5.0,1.0,3.0,1.8,2772.966274343798,3380.0,0.0,126432.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,70240.0,5,0,5,5_0 -1832,2.0,2.0,42.0,112,34,10,0.0,12525,0.0,800.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,2320.214260448469,2756.0,0.0,51542.0,1,2,8,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28634.444444444445,4,0,4_0,4_1 -1833,0.0,0.0,62.0,111,56,71,0.0,12526,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.5,3946.7078118377713,0.0,0.0,14880.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9920.0,1,0,1_0,1_0 -1834,0.0,0.0,79.0,212,78,70,0.0,12527,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2559.703630119736,0.0,0.0,11670.0,5,1,2,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11670.0,1,0,1_0,1_1 -1835,13.0,20.0,55.0,112,52,71,0.0,12529,0.0,400.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2754.860506432695,0.0,0.0,31496.0,1,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20997.333333333332,3,0,3_0,3_1 -1836,0.0,15.0,58.0,400,21,50,0.0,12530,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2061.0782481447704,1821.0,0.0,756.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,504.0,1,0,1_0,1_1 -1837,0.0,0.0,77.0,111,78,71,0.0,12531,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3028.028459153049,0.0,0.0,10600.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10600.0,1,0,1_1,1_0 -1838,5.0,5.0,71.0,111,78,71,0.0,12532,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4638.884283479188,2861.0,0.0,24935.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16623.333333333332,2,0,2_0,2_0 -1839,3.0,10.0,39.0,300,21,50,0.0,12533,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,2144.45327711997,2519.0,0.0,48219.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30136.875,5,0,5,5_1 -1840,0.0,0.0,84.0,221,78,71,0.0,12534,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,7382.727511859652,0.0,0.0,15395.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10263.333333333334,1,0,1_0,1_0 -1841,3.0,5.0,33.0,111,54,20,0.0,12535,0.0,0.0,460.0,0.0,2.0,4.0,1.0,3.0,1.8,1178.8126105020144,7046.0,0.0,38114.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,21174.444444444445,3,0,3_0,3_0 -1842,2.0,2.0,43.0,111,62,44,1.0,12536,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3731.577460440975,1560.0,29000.0,37881.0,1,4,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16470.0,2,0,2_0,2_0 -1843,1.0,13.0,49.0,212,67,71,0.0,12537,0.0,200.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,1682.4296312205151,1560.0,0.0,26750.0,1,3,2,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,14861.111111111111,2,0,2_1,2_1 -1844,2.0,9.0,30.0,111,62,50,0.0,12538,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,4088.9492087595877,1040.0,0.0,15586.0,4,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15586.0,2,0,2_0,2_0 -1845,7.0,14.0,39.0,111,43,33,0.0,1254,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3468.5131888274504,0.0,0.0,35429.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,19682.777777777777,3,0,3_0,3_0 -1846,0.0,7.0,21.0,111,63,44,0.0,12540,0.0,0.0,450.0,0.0,1.0,2.0,0.0,2.0,1.5,3861.7607390808857,1553.0,0.0,6875.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,4583.333333333333,1,0,1_0,1_0 -1847,14.0,14.0,87.0,111,31,10,0.0,12542,0.0,0.0,0.0,0.0,4.0,10.0,2.0,6.0,3.1,970.2412543661212,0.0,0.0,303790.0,1,1,10,8.0,5,4.0,0.0,0.0,0,0,0,0,1,0,4.0,0.0,97996.77419354838,5,0,5,5_0 -1848,2.0,5.0,43.0,112,52,42,0.0,12543,0.0,300.0,0.0,442.0,1.0,3.0,0.0,1.0,1.0,4848.075544934775,3484.0,0.0,17346.0,1,3,8,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,17346.0,3,0,3_1,3_0 -1849,2.0,9.0,38.0,111,52,60,0.0,12544,0.0,170.0,0.0,211.0,2.0,5.0,3.0,5.0,2.4,2703.3355239763087,2600.0,0.0,37069.0,1,3,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,15445.416666666668,2,0,2_1,2_0 -1850,0.0,0.0,47.0,111,52,43,0.0,12545,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2586.0992137035005,0.0,0.0,9668.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9668.0,1,0,1_1,1_0 -1851,3.0,3.0,53.0,111,38,10,0.0,12547,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2983.78894497162,1296.0,0.0,118598.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,79065.33333333333,5,0,5,5_0 -1852,1.0,1.0,60.0,111,42,42,2.0,12549,0.0,60.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2689.9158934681823,0.0,12000.0,29910.0,1,1,6,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,29910.0,5,0,5,5_0 -1853,11.0,18.0,61.0,111,78,50,0.0,1255,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1168.1623074928611,2080.0,0.0,27751.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18500.666666666668,3,0,3_0,3_0 -1854,3.0,5.0,58.0,111,78,71,0.0,12552,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,6573.591167310269,3016.0,0.0,30940.0,7,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20626.666666666668,3,0,3_0,3_0 -1855,4.0,18.0,36.0,111,55,30,0.0,12553,0.0,0.0,100.0,331.0,1.0,1.0,0.0,1.0,1.0,6125.052771095893,0.0,0.0,20270.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,20270.0,3,0,3_0,3_0 -1856,0.0,3.0,39.0,112,38,12,0.0,12555,0.0,100.0,0.0,0.0,2.0,9.0,4.0,6.0,2.7,854.0412746544434,4919.0,0.0,139214.0,1,2,8,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,51560.74074074074,5,0,5,5_0 -1857,11.0,16.0,55.0,112,62,50,0.0,12557,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1815.8268309788893,3120.0,0.0,23541.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15694.0,2,0,2_0,2_1 -1858,2.0,13.0,27.0,111,55,71,0.0,12558,0.0,0.0,0.0,412.0,1.0,4.0,3.0,5.0,2.4,4075.679395168509,0.0,0.0,30498.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12707.5,2,0,2_0,2_0 -1859,5.0,20.0,44.0,112,62,44,0.0,12559,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,1.8,2320.3242606217277,6032.0,0.0,48452.0,1,1,5,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,26917.777777777777,4,0,4_0,4_1 -1860,1.0,5.0,40.0,111,43,10,2.0,12561,0.0,600.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2646.7560983174844,3017.0,9000.0,89743.0,1,1,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,42734.7619047619,5,0,5,5_0 -1861,1.0,1.0,35.0,120,22,50,1.0,12563,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1615.001560785562,0.0,23000.0,70003.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,33334.7619047619,5,0,5,5_1 -1862,1.0,1.0,74.0,221,75,60,1.0,12564,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2874.528590836618,0.0,21594.0,47772.0,5,1,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31848.0,5,0,5,5_0 -1863,0.0,10.0,24.0,111,85,60,0.0,12566,0.0,0.0,0.0,0.0,0.0,4.0,2.0,4.0,2.1,4365.062859414841,1100.0,0.0,20650.0,6,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9833.333333333332,1,0,1_1,1_0 -1864,1.0,7.0,45.0,112,47,42,0.0,12570,0.0,230.0,0.0,0.0,2.0,2.0,3.0,5.0,2.4,4085.6469211168724,3732.0,0.0,51458.0,1,4,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21440.833333333336,3,0,3_0,3_0 -1865,0.0,0.0,57.0,111,63,50,0.0,12575,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1365.15503372085,0.0,0.0,5220.0,4,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,5220.0,1,0,1_1,1_0 -1866,11.0,13.0,59.0,112,75,50,0.0,12577,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2381.039102198207,1820.0,0.0,35655.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23770.0,4,0,4_0,4_1 -1867,16.0,16.0,36.0,111,62,31,0.0,12578,0.0,100.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3254.851556594891,0.0,0.0,75273.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,35844.28571428571,5,0,5,5_0 -1868,3.0,6.0,72.0,400,74,50,0.0,12579,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1764.3859729535645,0.0,0.0,44585.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,29723.333333333332,5,0,5,5_1 -1869,11.0,11.0,81.0,300,71,70,0.0,1258,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1822.2009785573196,0.0,0.0,13007.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13007.0,2,0,2_0,2_1 -1870,0.0,11.0,28.0,111,43,33,2.0,12580,0.0,0.0,99999.0,0.0,2.0,2.0,0.0,2.0,1.5,2840.108165029744,3640.0,5000.0,34095.0,1,3,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,22730.0,4,0,4_0,4_0 -1871,0.0,0.0,60.0,111,77,60,0.0,12582,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2948.0951667528,0.0,0.0,7560.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7560.0,1,0,1_1,1_0 -1872,4.0,5.0,63.0,112,75,44,0.0,12583,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3762.079477305956,1561.0,0.0,24354.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24354.0,4,0,4_0,4_1 -1873,0.0,0.0,63.0,111,31,31,0.0,12585,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4057.3807653477197,0.0,0.0,15250.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15250.0,2,0,2_0,2_0 -1874,1.0,13.0,30.0,111,22,71,2.0,12588,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4052.0898059107035,4680.0,500.0,51493.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28607.222222222223,4,0,4_0,4_0 -1875,2.0,2.0,53.0,111,52,60,0.0,12589,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2356.8639659075393,3224.0,0.0,67672.0,1,4,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33836.0,5,0,5,5_0 -1876,3.0,6.0,46.0,112,64,50,0.0,1259,0.0,450.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1310.4777080307229,1769.0,0.0,31589.0,1,2,6,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,31589.0,5,0,5,5_0 -1877,2.0,15.0,46.0,111,52,41,0.0,12590,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,3161.9893026999766,0.0,0.0,28380.0,1,2,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,14190.0,2,0,2_0,2_0 -1878,3.0,3.0,45.0,111,21,71,0.0,12591,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2844.550194050213,0.0,0.0,72135.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28854.0,4,0,4_0,4_0 -1879,2.0,12.0,61.0,400,72,71,0.0,12593,0.0,0.0,350.0,0.0,3.0,5.0,2.0,4.0,2.5,4531.750625900087,0.0,0.0,27000.0,5,1,0,0.0,4,4.0,1.0,0.0,1,0,0,0,0,0,4.0,0.0,10800.0,1,0,1_0,1_1 -1880,1.0,1.0,86.0,112,74,70,1.0,12594,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2157.205063311434,1560.0,11781.0,24134.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16089.333333333334,2,0,2_0,2_0 -1881,0.0,0.0,47.0,221,85,50,0.0,12596,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,5439.6405834507505,0.0,0.0,11319.0,6,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8706.923076923076,1,0,1_1,1_0 -1882,2.0,2.0,68.0,111,72,70,0.0,12597,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2923.593127544998,0.0,0.0,19717.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13144.666666666666,2,0,2_0,2_0 -1883,0.0,22.0,68.0,111,74,60,0.0,12598,0.0,0.0,0.0,366.0,0.0,3.0,0.0,1.0,1.0,3326.3222699892754,0.0,0.0,19629.0,5,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19629.0,3,0,3_0,3_0 -1884,3.0,3.0,62.0,112,78,71,0.0,12599,0.0,0.0,0.0,0.0,0.0,5.0,2.0,4.0,2.5,3795.560229112847,2542.0,0.0,26640.0,5,1,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10656.0,1,0,1_0,1_1 -1885,0.0,0.0,49.0,112,46,41,0.0,126,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2067.5847103843203,0.0,0.0,14854.0,4,3,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14854.0,2,0,2_1,2_0 -1886,4.0,5.0,50.0,112,65,50,0.0,1260,0.0,400.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1798.416850593999,0.0,0.0,46020.0,1,2,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23010.0,4,0,4_0,4_1 -1887,6.0,6.0,81.0,112,74,41,0.0,12601,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2840.6076041023193,0.0,0.0,41174.0,5,1,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27449.333333333332,4,0,4_0,4_0 -1888,0.0,2.0,47.0,400,11,50,2.0,12602,0.0,150.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1580.1974323572222,0.0,16200.0,19997.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13331.333333333334,2,0,2_0,2_1 -1889,3.0,4.0,46.0,400,11,43,0.0,12603,0.0,150.0,28.0,0.0,2.0,4.0,2.0,4.0,2.1,4021.5405198713693,1820.0,0.0,36090.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17185.714285714286,3,0,3_0,3_1 -1890,6.0,6.0,63.0,112,74,50,0.0,12604,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1424.9766614459872,0.0,0.0,35930.0,5,1,4,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23953.333333333332,4,0,4_0,4_1 -1891,2.0,2.0,50.0,112,54,50,0.0,12605,0.0,447.0,0.0,0.0,1.0,5.0,0.0,3.0,2.0,1836.7160223686024,3889.0,0.0,43560.0,1,1,6,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21780.0,4,0,4_0,4_1 -1892,0.0,0.0,87.0,300,78,70,0.0,12606,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1424.6520227643468,4420.0,0.0,23993.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15995.333333333334,2,0,2_0,2_1 -1893,2.0,2.0,39.0,112,62,42,0.0,12608,0.0,320.0,200.0,0.0,2.0,6.0,2.0,4.0,2.1,1996.2049438228755,2157.0,0.0,65557.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,31217.619047619046,5,0,5,5_1 -1894,24.0,24.0,65.0,111,74,31,0.0,12609,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2630.775981525749,0.0,0.0,78621.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,52414.0,5,0,5,5_0 -1895,5.0,10.0,50.0,111,46,60,0.0,1261,0.0,200.0,0.0,299.0,3.0,4.0,1.0,3.0,2.0,888.3097010225841,1040.0,0.0,37110.0,1,3,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,18555.0,3,0,3_0,3_0 -1896,5.0,5.0,41.0,111,34,20,0.0,12611,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1845.3130830657108,520.0,0.0,51877.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,24703.333333333332,4,0,4_0,4_0 -1897,0.0,0.0,59.0,111,74,60,0.0,12612,0.0,0.0,0.0,627.0,0.0,3.0,0.0,1.0,1.0,2646.1123405413823,0.0,0.0,31530.0,7,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31530.0,5,0,5,5_0 -1898,26.0,26.0,44.0,111,46,50,0.0,12613,0.0,500.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,982.5787590147651,1768.0,0.0,33092.0,1,3,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16546.0,2,0,2_0,2_0 -1899,2.0,3.0,44.0,120,64,50,0.0,12616,0.0,650.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,1204.3214894330083,2704.0,0.0,36872.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,18436.0,3,0,3_0,3_1 -1900,10.0,10.0,70.0,111,75,60,0.0,12617,0.0,0.0,0.0,794.0,0.0,3.0,0.0,2.0,1.5,4043.631119755632,1560.0,0.0,26600.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17733.333333333332,3,0,3_0,3_0 -1901,0.0,0.0,28.0,111,55,10,0.0,12618,0.0,0.0,0.0,610.0,1.0,3.0,0.0,1.0,1.0,4624.499296304439,0.0,0.0,16888.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16888.0,3,0,3_0,3_0 -1902,7.0,7.0,58.0,111,56,70,0.0,12620,0.0,0.0,150.0,0.0,2.0,3.0,0.0,2.0,1.5,2016.632464852148,2600.0,0.0,64456.0,1,1,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,42970.666666666664,5,0,5,5_0 -1903,4.0,16.0,73.0,120,71,70,0.0,12621,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1638.0698919435501,3187.0,0.0,19556.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13037.333333333334,2,0,2_0,2_1 -1904,0.0,8.0,25.0,111,84,20,0.0,12622,0.0,80.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2832.0033278239366,0.0,0.0,4949.0,3,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,4949.0,1,0,1_0,1_0 -1905,3.0,3.0,63.0,111,74,60,0.0,12626,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2592.4335987782324,3276.0,0.0,82768.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,55178.666666666664,5,0,5,5_0 -1906,2.0,2.0,41.0,111,23,43,0.0,12627,0.0,99999.0,0.0,0.0,1.0,5.0,3.0,5.0,2.8,2956.6031260661607,0.0,0.0,125660.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,44878.571428571435,5,0,5,5_0 -1907,1.0,14.0,44.0,111,47,71,2.0,12628,0.0,0.0,0.0,91.0,2.0,3.0,0.0,2.0,1.5,3236.3561885538916,0.0,2300.0,26005.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,17336.666666666668,3,0,3_1,3_0 -1908,2.0,7.0,20.0,111,46,31,0.0,12629,0.0,340.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3511.8993397935337,0.0,0.0,15535.0,2,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,15535.0,2,0,2_1,2_0 -1909,1.0,10.0,39.0,111,45,30,0.0,12630,0.0,20.0,80.0,268.0,2.0,3.0,1.0,3.0,1.8,4038.9562904348627,0.0,0.0,47451.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26361.666666666664,4,0,4_0,4_0 -1910,0.0,0.0,46.0,111,53,50,0.0,12631,0.0,0.0,0.0,0.0,1.0,4.0,5.0,7.0,3.2,2273.2874805678885,1560.0,0.0,32554.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10173.125,1,0,1_1,1_0 -1911,15.0,18.0,81.0,120,74,41,0.0,12632,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1905.4050381312477,2964.0,0.0,42611.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,28407.333333333332,4,0,4_0,4_0 -1912,0.0,0.0,27.0,111,63,71,0.0,12633,0.0,0.0,0.0,38.0,1.0,4.0,3.0,5.0,2.4,4141.385031940223,260.0,0.0,16781.0,4,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6992.083333333334,1,0,1_1,1_0 -1913,1.0,1.0,72.0,112,78,50,1.0,12634,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2040.1052341692953,1347.0,19000.0,23410.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15606.666666666666,2,0,2_0,2_0 -1914,1.0,13.0,24.0,300,63,43,2.0,12637,0.0,124.0,0.0,402.0,2.0,4.0,1.0,3.0,1.8,2362.9255322895056,7380.0,3000.0,47019.0,1,3,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26121.666666666664,4,0,4_0,4_0 -1915,0.0,0.0,76.0,111,74,10,0.0,12638,0.0,0.0,0.0,800.0,0.0,3.0,0.0,2.0,1.5,1594.8047855475547,0.0,0.0,38061.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25374.0,4,0,4_0,4_0 -1916,0.0,5.0,22.0,300,67,42,2.0,12639,0.0,400.0,0.0,165.0,2.0,3.0,1.0,3.0,1.8,3264.734158911762,0.0,10900.0,30927.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,17181.666666666668,3,0,3_1,3_1 -1917,4.0,6.0,26.0,111,43,33,0.0,1264,0.0,450.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2783.166518212529,1040.0,0.0,20661.0,1,2,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20661.0,3,0,3_0,3_0 -1918,0.0,0.0,35.0,111,33,10,0.0,12641,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3794.7116316520655,0.0,0.0,33655.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33655.0,5,0,5,5_0 -1919,0.0,0.0,67.0,111,86,71,0.0,12645,0.0,0.0,0.0,300.0,0.0,1.0,0.0,1.0,1.0,2973.4257187660937,0.0,0.0,10780.0,6,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10780.0,1,0,1_1,1_0 -1920,3.0,11.0,68.0,112,56,71,0.0,12647,0.0,0.0,0.0,485.0,1.0,4.0,0.0,1.0,1.0,1995.657176388602,2210.0,0.0,13789.0,5,3,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13789.0,2,0,2_0,2_0 -1921,11.0,11.0,85.0,111,75,70,0.0,12648,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3115.305781622403,2600.0,0.0,85388.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,56925.333333333336,5,0,5,5_0 -1922,2.0,12.0,57.0,400,56,70,0.0,12649,0.0,0.0,450.0,0.0,1.0,2.0,0.0,1.0,1.0,1749.266467281666,2600.0,0.0,9550.0,1,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,9550.0,1,0,1_0,1_1 -1923,21.0,21.0,77.0,112,71,71,0.0,12651,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2708.2214782463784,0.0,0.0,17237.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11491.333333333334,1,0,1_0,1_1 -1924,5.0,15.0,65.0,400,75,70,0.0,12652,0.0,0.0,0.0,0.0,0.0,5.0,2.0,4.0,2.1,1937.7643667858474,0.0,0.0,20716.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,9864.761904761905,1,0,1_1,1_1 -1925,3.0,3.0,74.0,111,75,50,0.0,12653,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2219.644781638343,0.0,0.0,22163.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22163.0,4,0,4_0,4_0 -1926,8.0,31.0,42.0,211,52,50,0.0,12654,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,1602.584480461569,792.0,0.0,17285.0,4,3,2,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,9602.777777777777,1,0,1_1,1_0 -1927,5.0,5.0,56.0,111,63,60,0.0,12655,0.0,0.0,570.0,0.0,1.0,6.0,1.0,2.0,1.5,1759.0812068757248,2605.0,0.0,20970.0,1,1,6,4.0,2,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,13980.0,2,0,2_0,2_0 -1928,1.0,1.0,60.0,111,75,50,0.0,12656,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2560.3972777102067,2074.0,0.0,37870.0,6,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,37870.0,5,0,5,5_0 -1929,21.0,21.0,41.0,111,48,50,0.0,12657,0.0,199998.0,99999.0,0.0,3.0,4.0,2.0,4.0,2.3,2661.0266710273563,5059.0,0.0,66740.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,29017.391304347828,5,0,5,5_0 -1930,9.0,11.0,51.0,111,48,42,0.0,12658,0.0,100029.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1059.8622170401243,0.0,0.0,31902.0,1,1,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15951.0,2,0,2_0,2_0 -1931,7.0,16.0,50.0,111,56,71,0.0,12659,0.0,100.0,75.0,338.0,4.0,5.0,2.0,5.0,2.8,2451.9114539222596,0.0,0.0,54750.0,1,3,7,6.0,5,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,19553.57142857143,3,0,3_0,3_0 -1932,5.0,13.0,35.0,111,65,41,0.0,1266,0.0,100.0,0.0,165.0,2.0,4.0,3.0,5.0,2.4,2771.966410858274,1040.0,0.0,37670.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,15695.833333333334,2,0,2_1,2_0 -1933,3.0,3.0,56.0,112,42,50,0.0,12660,0.0,900.0,140.0,0.0,3.0,5.0,0.0,3.0,2.0,1019.775346971346,6494.0,0.0,115451.0,1,1,7,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,57725.5,5,0,5,5_1 -1934,9.0,9.0,60.0,221,74,10,0.0,12661,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3905.573103082672,0.0,0.0,52994.0,5,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,35329.333333333336,5,0,5,5_0 -1935,0.0,0.0,77.0,300,71,71,0.0,12662,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2580.195419755277,0.0,0.0,9480.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9480.0,1,0,1_0,1_1 -1936,1.0,1.0,55.0,112,64,50,1.0,12663,0.0,150.0,30.0,0.0,2.0,4.0,3.0,5.0,2.8,1149.4100455287778,1820.0,13000.0,41730.0,1,3,10,0.0,4,2.0,1.0,1.0,1,0,0,0,0,1,1.0,1.0,14903.57142857143,2,0,2_1,2_1 -1937,6.0,8.0,29.0,300,63,43,0.0,12664,0.0,54.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1638.6122276658848,0.0,0.0,31781.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,13242.083333333334,2,0,2_1,2_1 -1938,0.0,7.0,47.0,111,42,31,0.0,12665,0.0,430.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1892.9552686940217,1301.0,0.0,98668.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,35238.57142857143,5,0,5,5_0 -1939,7.0,11.0,55.0,111,52,12,0.0,12668,0.0,0.0,99999.0,0.0,3.0,8.0,3.0,5.0,3.0,1651.938852834593,1812.0,0.0,109941.0,1,1,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,36647.0,5,0,5,5_0 -1940,2.0,9.0,39.0,300,56,43,0.0,1267,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,3699.912724905697,0.0,0.0,41844.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,23246.666666666668,4,0,4_0,4_1 -1941,8.0,20.0,33.0,212,43,41,0.0,12670,0.0,100.0,190.0,0.0,2.0,3.0,1.0,3.0,1.8,2699.7938743192094,1560.0,0.0,42174.0,1,3,2,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,23430.0,4,0,4_0,4_1 -1942,7.0,19.0,44.0,111,62,50,0.0,12671,0.0,0.0,150.0,0.0,1.0,3.0,3.0,5.0,2.4,1509.1738339760277,3770.0,0.0,25468.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10611.666666666668,1,0,1_1,1_0 -1943,17.0,17.0,46.0,400,62,71,0.0,12672,0.0,0.0,90.0,0.0,4.0,6.0,2.0,4.0,2.5,2057.388405197322,8843.0,0.0,69458.0,1,1,0,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,3.0,1.0,27783.2,4,0,4_0,4_1 -1944,16.0,16.0,81.0,112,78,70,0.0,12673,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3054.8589138315783,0.0,0.0,14022.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14022.0,2,0,2_0,2_1 -1945,10.0,10.0,54.0,112,46,41,0.0,12675,0.0,0.0,600.0,0.0,1.0,5.0,0.0,2.0,1.5,2000.7434414842792,3016.0,0.0,45809.0,1,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,30539.333333333332,5,0,5,5_1 -1946,0.0,0.0,82.0,111,71,70,0.0,12677,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1447.8927432038024,0.0,0.0,9663.0,5,4,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,9663.0,1,0,1_0,1_0 -1947,8.0,8.0,56.0,112,38,41,0.0,12678,0.0,270.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1202.2395926066695,2080.0,0.0,71844.0,1,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,47896.0,5,0,5,5_0 -1948,4.0,4.0,47.0,111,62,50,0.0,12679,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2748.4629747721065,2281.0,0.0,37541.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,37541.0,5,0,5,5_0 -1949,1.0,32.0,54.0,400,62,50,2.0,12681,0.0,300.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1401.1234900304937,7422.0,4500.0,33961.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,16980.5,3,0,3_0,3_1 -1950,0.0,16.0,29.0,111,46,10,0.0,12683,0.0,30.0,0.0,771.0,2.0,2.0,1.0,3.0,1.8,3647.769328195531,0.0,0.0,60750.0,4,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,33750.0,5,0,5,5_0 -1951,2.0,3.0,65.0,111,78,71,0.0,12684,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3861.4203744379047,3036.0,0.0,33910.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22606.666666666668,4,0,4_0,4_0 -1952,6.0,6.0,64.0,111,75,50,0.0,12686,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1790.0693528979243,0.0,0.0,42067.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,28044.666666666668,4,0,4_0,4_0 -1953,16.0,19.0,64.0,221,77,70,0.0,12688,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2757.7571674973756,0.0,0.0,15675.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,10450.0,1,0,1_0,1_0 -1954,4.0,7.0,34.0,111,37,10,0.0,1269,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2185.536960445404,2474.0,0.0,47898.0,1,2,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,26610.0,4,0,4_0,4_0 -1955,3.0,15.0,60.0,221,75,50,0.0,12690,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1240.3276305359268,0.0,0.0,29700.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19800.0,3,0,3_0,3_0 -1956,0.0,0.0,76.0,111,78,71,0.0,12691,0.0,0.0,0.0,346.0,0.0,2.0,0.0,1.0,1.0,4015.442036484052,0.0,0.0,15084.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15084.0,2,0,2_1,2_0 -1957,2.0,4.0,42.0,400,47,42,0.0,12692,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3257.3203717486576,2132.0,0.0,27506.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11959.13043478261,1,0,1_0,1_1 -1958,17.0,17.0,73.0,221,78,71,0.0,12694,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2765.65073345518,1560.0,0.0,23140.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23140.0,4,0,4_0,4_0 -1959,6.0,10.0,46.0,111,55,50,0.0,12695,0.0,150.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1447.866914619467,0.0,0.0,45644.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,16301.428571428572,2,0,2_0,2_0 -1960,1.0,11.0,35.0,111,68,43,2.0,12696,0.0,400.0,0.0,197.0,2.0,3.0,2.0,4.0,2.1,2424.8429811973033,0.0,3900.0,26258.0,1,3,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,12503.809523809523,1,0,1_1,1_0 -1961,3.0,16.0,51.0,111,85,50,0.0,12697,0.0,0.0,0.0,15.0,0.0,3.0,0.0,1.0,1.0,3739.030464106389,520.0,0.0,8855.0,7,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8855.0,1,0,1_1,1_0 -1962,4.0,11.0,65.0,211,77,70,0.0,12698,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2188.927906134064,0.0,0.0,10908.0,5,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,10908.0,1,0,1_1,1_0 -1963,1.0,5.0,30.0,111,46,50,2.0,1270,0.0,0.0,0.0,249.0,1.0,4.0,0.0,1.0,1.0,3420.6594445490564,0.0,11000.0,18311.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18311.0,3,0,3_0,3_0 -1964,7.0,21.0,53.0,300,67,50,0.0,12700,0.0,200.0,15.0,0.0,2.0,5.0,0.0,2.0,1.5,1206.7978942722218,3121.0,0.0,31980.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21320.0,3,0,3_0,3_1 -1965,21.0,21.0,79.0,111,78,50,0.0,12701,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3532.4042836788853,0.0,0.0,16750.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16750.0,2,0,2_0,2_0 -1966,1.0,1.0,56.0,300,65,60,1.0,12702,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1106.7319040524724,6475.0,12000.0,34855.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17427.5,3,0,3_0,3_1 -1967,8.0,8.0,44.0,111,68,50,0.0,12703,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,4793.456049440735,3510.0,0.0,36493.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,13033.214285714286,2,0,2_0,2_0 -1968,0.0,0.0,73.0,111,75,71,1.0,12706,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2954.2069423661064,0.0,13129.0,29380.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19586.666666666668,3,0,3_0,3_0 -1969,3.0,16.0,31.0,111,55,31,0.0,12707,0.0,150.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,2106.8538193446325,0.0,0.0,29183.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,19455.333333333332,3,0,3_0,3_0 -1970,0.0,15.0,23.0,111,47,31,0.0,12708,0.0,56.0,0.0,580.0,1.0,2.0,0.0,1.0,1.0,3737.1010240918818,0.0,0.0,21325.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,21325.0,3,0,3_0,3_0 -1971,0.0,0.0,56.0,111,63,50,1.0,1271,0.0,130.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1755.3659889898174,3640.0,33000.0,56730.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,37820.0,5,0,5,5_0 -1972,5.0,5.0,42.0,111,38,12,0.0,12711,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2350.2040753698425,1873.0,0.0,81475.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,38797.619047619046,5,0,5,5_0 -1973,3.0,3.0,77.0,111,75,71,0.0,12712,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1921.3597685853647,2167.0,0.0,35970.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,23980.0,4,0,4_0,4_0 -1974,4.0,4.0,62.0,111,22,60,0.0,12713,0.0,100.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3077.8917047537343,1510.0,0.0,40741.0,1,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,40741.0,5,0,5,5_0 -1975,2.0,9.0,42.0,111,45,42,0.0,12714,0.0,60.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,5719.391869764487,2600.0,0.0,49321.0,1,2,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23486.190476190473,4,0,4_0,4_0 -1976,1.0,1.0,57.0,111,62,50,1.0,12715,0.0,540.0,0.0,366.0,3.0,4.0,1.0,3.0,2.0,2302.3984578066443,4138.0,20400.0,48379.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24189.5,4,0,4_0,4_0 -1977,17.0,17.0,69.0,111,75,50,0.0,12716,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4101.3968420908795,0.0,0.0,27893.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27893.0,4,0,4_0,4_0 -1978,3.0,10.0,30.0,300,55,43,0.0,12717,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1719.041424502332,0.0,0.0,20173.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,15517.692307692307,2,0,2_1,2_1 -1979,0.0,0.0,22.0,111,34,41,0.0,12718,0.0,0.0,0.0,380.0,1.0,3.0,0.0,1.0,1.0,3942.6119157141193,0.0,0.0,3623.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,3623.0,1,0,1_1,1_0 -1980,5.0,7.0,45.0,221,46,50,0.0,1272,0.0,500.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,2959.0593516268495,3960.0,0.0,34711.0,1,2,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19283.888888888887,3,0,3_0,3_0 -1981,2.0,16.0,56.0,221,53,50,0.0,12720,0.0,15.0,0.0,222.0,2.0,3.0,0.0,2.0,1.5,4750.640972308391,0.0,0.0,17528.0,1,3,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,11685.333333333334,1,0,1_0,1_0 -1982,6.0,6.0,52.0,111,85,41,0.0,12721,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,2215.6436715137993,2600.0,0.0,34199.0,5,4,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,17099.5,3,0,3_0,3_0 -1983,3.0,14.0,36.0,112,62,43,0.0,12722,0.0,364.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2014.284693499496,0.0,0.0,40252.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22362.222222222223,4,0,4_0,4_1 -1984,2.0,23.0,38.0,111,62,50,0.0,12723,0.0,0.0,200.0,0.0,1.0,4.0,1.0,2.0,1.5,1510.438366207455,0.0,0.0,28391.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18927.333333333332,3,0,3_0,3_0 -1985,12.0,14.0,55.0,212,52,50,0.0,12724,0.0,120.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,891.3132713707024,1613.0,0.0,27655.0,1,1,2,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,13827.5,2,0,2_0,2_1 -1986,1.0,1.0,61.0,111,37,30,1.0,12725,0.0,0.0,50.0,1662.0,1.0,4.0,0.0,1.0,1.0,2936.837655184849,0.0,12100.0,92577.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,92577.0,5,0,5,5_0 -1987,2.0,13.0,40.0,212,62,50,0.0,12726,0.0,0.0,550.0,0.0,2.0,6.0,3.0,5.0,2.6,1339.3678879506638,0.0,0.0,40296.0,1,2,3,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,15498.461538461537,2,0,2_0,2_1 -1988,0.0,0.0,54.0,111,56,41,0.0,12730,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.5,3930.6915143969,0.0,0.0,10579.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7052.666666666667,1,0,1_1,1_0 -1989,2.0,8.0,22.0,112,55,50,0.0,12731,0.0,900.0,0.0,364.0,1.0,5.0,0.0,1.0,1.0,2737.53478585079,5356.0,0.0,9172.0,1,3,7,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9172.0,1,0,1_1,1_0 -1990,2.0,2.0,53.0,400,42,41,0.0,12732,0.0,240.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1977.8860499090956,0.0,0.0,62883.0,1,1,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,25153.2,4,0,4_0,4_1 -1991,2.0,2.0,48.0,111,33,20,0.0,12733,0.0,50.0,64.0,0.0,2.0,6.0,2.0,4.0,2.5,4056.7075021702935,2271.0,0.0,79255.0,1,1,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,31702.0,5,0,5,5_0 -1992,4.0,11.0,51.0,300,85,31,0.0,12734,0.0,200.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,2735.4888403023438,1564.0,0.0,11104.0,5,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,8541.538461538461,1,0,1_1,1_1 -1993,5.0,5.0,53.0,111,52,70,0.0,12735,0.0,0.0,100.0,60.0,2.0,4.0,1.0,2.0,1.5,2596.661249827646,4681.0,0.0,16854.0,1,3,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,11236.0,1,0,1_1,1_0 -1994,8.0,9.0,44.0,111,46,12,0.0,12736,0.0,60.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2240.635571083702,4160.0,0.0,71548.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27518.46153846154,4,0,4_0,4_0 -1995,2.0,4.0,49.0,112,46,71,2.0,12737,0.0,700.0,150.0,0.0,3.0,4.0,1.0,3.0,2.0,2392.8511913977036,4368.0,16000.0,48644.0,1,1,6,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,24322.0,4,0,4_0,4_1 -1996,0.0,2.0,28.0,112,67,50,2.0,1274,0.0,400.0,120.0,0.0,2.0,4.0,0.0,2.0,1.5,3314.85165429905,2890.0,14000.0,34695.0,1,3,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23130.0,4,0,4_0,4_1 -1997,1.0,1.0,56.0,111,34,31,1.0,12740,0.0,1200.0,0.0,361.0,2.0,4.0,1.0,3.0,2.0,2398.324984006191,5824.0,13300.0,60055.0,1,3,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,30027.5,5,0,5,5_0 -1998,0.0,0.0,74.0,111,78,50,0.0,12743,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2362.97968837784,0.0,0.0,13160.0,6,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13160.0,2,0,2_0,2_0 -1999,0.0,0.0,76.0,112,78,71,0.0,12744,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2513.779507901521,0.0,0.0,18245.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18245.0,3,0,3_0,3_0 -2000,13.0,13.0,81.0,111,77,70,0.0,12745,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2956.52726081193,0.0,0.0,24461.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24461.0,4,0,4_0,4_0 -2001,1.0,11.0,46.0,111,35,20,0.0,12746,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,1290.7749603464752,3717.0,0.0,31747.0,1,2,8,6.0,2,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,15873.5,2,0,2_0,2_0 -2002,0.0,0.0,58.0,111,52,60,0.0,12747,0.0,0.0,0.0,296.0,1.0,4.0,0.0,1.0,1.0,3612.204967824698,0.0,0.0,22110.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22110.0,4,0,4_0,4_0 -2003,0.0,0.0,61.0,111,54,60,1.0,12749,0.0,0.0,600.0,0.0,2.0,4.0,0.0,2.0,1.5,1561.2768246222638,4529.0,21500.0,87538.0,1,1,7,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,2.0,0.0,58358.666666666664,5,0,5,5_0 -2004,0.0,16.0,42.0,112,42,42,0.0,1275,0.0,0.0,200.0,269.0,1.0,5.0,1.0,2.0,1.3,3202.659306010358,2081.0,0.0,21874.0,1,3,7,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,16826.153846153844,2,0,2_1,2_0 -2005,6.0,6.0,68.0,111,77,71,0.0,12751,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1753.6252827452652,1875.0,0.0,17230.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17230.0,3,0,3_0,3_0 -2006,3.0,9.0,34.0,111,62,31,0.0,12752,0.0,840.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1201.801021473911,2108.0,0.0,61747.0,1,2,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25727.916666666668,4,0,4_0,4_0 -2007,5.0,10.0,27.0,120,68,20,0.0,12753,0.0,200.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2631.3032216811266,3744.0,0.0,29193.0,1,3,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,16218.333333333332,2,0,2_1,2_0 -2008,2.0,21.0,37.0,112,62,50,0.0,12755,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2801.591783576714,0.0,0.0,45560.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21695.238095238095,4,0,4_0,4_0 -2009,2.0,11.0,66.0,221,77,50,0.0,12756,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1619.2002988431764,0.0,0.0,8410.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,8410.0,1,0,1_0,1_0 -2010,9.0,9.0,67.0,221,72,70,0.0,12757,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2556.539016314835,3120.0,0.0,26917.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,17944.666666666668,3,0,3_0,3_0 -2011,6.0,6.0,62.0,400,77,60,0.0,12758,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2381.1169654343007,0.0,0.0,5510.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,3673.3333333333335,1,0,1_0,1_0 -2012,0.0,0.0,68.0,111,77,70,0.0,12764,0.0,0.0,0.0,347.0,0.0,3.0,0.0,1.0,1.0,3153.7592953276285,0.0,0.0,17215.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17215.0,3,0,3_0,3_0 -2013,10.0,16.0,66.0,111,78,70,0.0,12767,0.0,180.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1512.1058139368824,0.0,0.0,35831.0,5,1,7,6.0,4,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,17915.5,3,0,3_0,3_0 -2014,11.0,16.0,54.0,111,78,71,0.0,12773,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,5146.4471764269665,0.0,0.0,24810.0,7,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16540.0,2,0,2_0,2_0 -2015,7.0,7.0,54.0,120,62,71,0.0,12774,0.0,800.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,7312.153173876718,3211.0,0.0,43021.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28680.666666666668,4,0,4_0,4_1 -2016,8.0,8.0,32.0,111,67,41,0.0,12776,0.0,99999.0,0.0,227.0,1.0,4.0,3.0,5.0,2.4,1691.76639042509,208.0,0.0,33416.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13923.333333333334,2,0,2_1,2_0 -2017,0.0,0.0,72.0,111,75,41,0.0,12777,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3317.4568646314747,0.0,0.0,36947.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36947.0,5,0,5,5_0 -2018,1.0,1.0,64.0,111,74,50,1.0,12778,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1948.7964116407595,0.0,24900.0,32427.0,5,1,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21618.0,3,0,3_0,3_0 -2019,3.0,15.0,25.0,400,52,31,0.0,12779,0.0,300.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2701.628421779937,2340.0,0.0,17622.0,1,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17622.0,3,0,3_0,3_1 -2020,5.0,7.0,33.0,111,48,31,0.0,1278,0.0,200.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4200.670547096112,0.0,0.0,28680.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28680.0,4,0,4_0,4_0 -2021,9.0,14.0,54.0,112,54,41,0.0,12780,0.0,0.0,750.0,0.0,2.0,6.0,0.0,2.0,1.5,2520.5988589283056,0.0,0.0,51952.0,1,2,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,34634.666666666664,5,0,5,5_0 -2022,0.0,7.0,43.0,111,63,50,0.0,12781,0.0,0.0,740.0,0.0,2.0,4.0,2.0,4.0,2.1,1535.174947086757,4852.0,0.0,46301.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,22048.095238095237,4,0,4_0,4_0 -2023,1.0,15.0,37.0,112,67,50,0.0,12782,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1697.463643568239,6469.0,0.0,22096.0,1,3,5,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22096.0,4,0,4_0,4_1 -2024,3.0,4.0,31.0,111,63,50,0.0,12783,0.0,0.0,0.0,560.0,2.0,4.0,0.0,2.0,1.5,4032.9631997372294,0.0,0.0,21192.0,4,3,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,14128.0,2,0,2_1,2_0 -2025,0.0,0.0,86.0,111,78,71,0.0,12785,0.0,0.0,0.0,250.0,0.0,3.0,0.0,2.0,1.5,3670.20192791806,0.0,0.0,15900.0,5,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10600.0,1,0,1_1,1_0 -2026,1.0,2.0,40.0,112,54,31,2.0,12786,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2158.401651236164,0.0,15800.0,33439.0,1,2,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,33439.0,5,0,5,5_0 -2027,3.0,14.0,44.0,111,67,71,0.0,12788,0.0,300.0,0.0,670.0,1.0,3.0,1.0,2.0,1.5,6541.80802850016,3120.0,0.0,28724.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,19149.333333333332,3,0,3_1,3_0 -2028,0.0,0.0,50.0,111,43,50,0.0,1279,0.0,0.0,0.0,11.0,1.0,3.0,0.0,1.0,1.0,2915.135785406236,0.0,0.0,10268.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10268.0,1,0,1_1,1_0 -2029,22.0,22.0,83.0,400,78,70,0.0,12792,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2876.310773990306,0.0,0.0,24955.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16636.666666666668,2,0,2_0,2_1 -2030,11.0,13.0,66.0,111,78,70,0.0,12793,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1784.0535616316483,0.0,0.0,19825.0,5,1,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,13216.666666666666,2,0,2_0,2_0 -2031,10.0,11.0,65.0,120,75,60,0.0,12794,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2360.96014255766,4909.0,0.0,47167.0,5,1,0,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,31444.666666666668,5,0,5,5_0 -2032,3.0,5.0,46.0,111,68,50,0.0,12796,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1159.655894808994,780.0,0.0,35529.0,1,1,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16918.571428571428,3,0,3_0,3_0 -2033,0.0,0.0,43.0,111,81,60,0.0,12797,0.0,0.0,0.0,120.0,1.0,3.0,1.0,2.0,1.3,3617.2937851811594,0.0,0.0,9740.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7492.307692307692,1,0,1_1,1_0 -2034,18.0,20.0,43.0,111,21,41,0.0,12798,0.0,0.0,350.0,0.0,2.0,5.0,2.0,4.0,2.3,2725.34035687828,1348.0,0.0,42674.0,1,3,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,18553.913043478264,3,0,3_0,3_0 -2035,4.0,4.0,58.0,111,33,10,0.0,128,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,2.4,1655.8456754617393,2242.0,0.0,60924.0,1,1,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25385.0,4,0,4_0,4_0 -2036,0.0,0.0,70.0,111,77,50,0.0,12800,0.0,0.0,0.0,468.0,0.0,4.0,0.0,1.0,1.0,2203.449167304625,0.0,0.0,13398.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13398.0,2,0,2_1,2_0 -2037,0.0,0.0,86.0,111,75,33,0.0,12801,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,2674.0502622916783,0.0,0.0,67317.0,5,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33658.5,5,0,5,5_0 -2038,7.0,7.0,79.0,400,78,71,0.0,12802,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2393.7593532509977,1608.0,0.0,9532.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,6354.666666666667,1,0,1_0,1_1 -2039,0.0,0.0,64.0,111,78,50,0.0,12803,0.0,0.0,0.0,157.0,0.0,1.0,0.0,2.0,1.5,3024.706066523041,0.0,0.0,23109.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15406.0,2,0,2_0,2_0 -2040,0.0,17.0,65.0,111,78,50,0.0,12804,0.0,0.0,0.0,600.0,0.0,3.0,0.0,1.0,1.0,4408.531340251446,1040.0,0.0,15300.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15300.0,2,0,2_0,2_0 -2041,5.0,15.0,30.0,111,54,43,0.0,12805,0.0,0.0,220.0,335.0,1.0,2.0,0.0,1.0,1.0,2309.938937695547,2080.0,0.0,18541.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,18541.0,3,0,3_0,3_0 -2042,2.0,2.0,59.0,111,78,71,0.0,12806,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2907.2548005899826,0.0,0.0,26203.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17468.666666666668,3,0,3_0,3_0 -2043,6.0,6.0,69.0,111,74,60,0.0,12807,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2365.316177351609,0.0,0.0,18446.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18446.0,3,0,3_0,3_0 -2044,1.0,24.0,47.0,112,34,10,2.0,12809,0.0,700.0,100069.0,0.0,2.0,5.0,2.0,4.0,2.5,1661.791047726037,2600.0,500.0,53564.0,1,3,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,21425.6,3,0,3_0,3_1 -2045,0.0,0.0,87.0,111,78,71,0.0,12812,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3589.239456648389,0.0,0.0,17550.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17550.0,3,0,3_0,3_0 -2046,0.0,6.0,23.0,111,52,41,2.0,12813,0.0,350.0,0.0,482.0,1.0,2.0,0.0,1.0,1.0,3974.4729884929443,0.0,6950.0,18762.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18762.0,3,0,3_0,3_0 -2047,3.0,3.0,51.0,111,47,41,0.0,12814,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,1565.0680817152304,0.0,0.0,32504.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16252.0,2,0,2_0,2_0 -2048,6.0,6.0,60.0,211,74,50,0.0,12815,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1725.3356241061636,2496.0,0.0,38598.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,25732.0,4,0,4_0,4_0 -2049,2.0,18.0,29.0,300,38,42,0.0,12816,0.0,100.0,300.0,0.0,2.0,6.0,2.0,4.0,2.1,1528.6535837217275,2033.0,0.0,48220.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22961.90476190476,4,0,4_0,4_1 -2050,4.0,10.0,46.0,111,34,20,0.0,12818,0.0,150.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2452.3813173244325,0.0,0.0,45099.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,45099.0,5,0,5,5_0 -2051,6.0,16.0,53.0,300,54,60,0.0,12819,0.0,160.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1093.2304599266085,2080.0,0.0,50703.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,25351.5,4,0,4_0,4_1 -2052,0.0,0.0,44.0,112,47,50,0.0,1282,0.0,700.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2549.2829423900203,3380.0,0.0,28183.0,1,1,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28183.0,4,0,4_0,4_1 -2053,3.0,3.0,65.0,111,74,20,0.0,12820,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2591.6935867085276,0.0,0.0,14880.0,5,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14880.0,2,0,2_0,2_0 -2054,2.0,4.0,62.0,111,86,33,0.0,12822,0.0,0.0,0.0,495.0,0.0,1.0,0.0,1.0,1.0,3447.807188950655,0.0,0.0,36810.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,36810.0,5,0,5,5_0 -2055,0.0,7.0,56.0,111,21,31,2.0,12823,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2486.336251025496,12376.0,5500.0,58580.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,20921.428571428572,3,0,3_0,3_0 -2056,0.0,0.0,66.0,111,77,70,0.0,12824,0.0,0.0,0.0,444.0,0.0,3.0,0.0,1.0,1.0,1818.781215269949,0.0,0.0,16679.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16679.0,2,0,2_0,2_0 -2057,11.0,16.0,71.0,111,78,71,0.0,12825,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3498.4680045957075,0.0,0.0,25090.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16726.666666666668,2,0,2_0,2_0 -2058,2.0,5.0,62.0,300,71,70,0.0,12826,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1308.554876888844,4067.0,0.0,19192.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12794.666666666666,2,0,2_0,2_1 -2059,0.0,0.0,52.0,111,48,71,0.0,12827,0.0,0.0,0.0,126.0,1.0,4.0,2.0,3.0,2.0,2601.551803591623,0.0,0.0,18596.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9298.0,1,0,1_1,1_0 -2060,0.0,0.0,72.0,112,78,71,1.0,12828,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,5288.69401105922,0.0,19450.0,30660.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20440.0,3,0,3_0,3_1 -2061,2.0,6.0,48.0,400,52,70,0.0,12829,0.0,100.0,150.0,0.0,4.0,4.0,3.0,5.0,2.8,1755.7415994270002,0.0,0.0,37069.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13238.928571428572,2,0,2_0,2_1 -2062,0.0,0.0,89.0,120,77,70,0.0,1283,0.0,0.0,0.0,635.0,0.0,3.0,0.0,1.0,1.0,5601.5275057656,0.0,0.0,19405.0,5,3,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19405.0,3,0,3_0,3_0 -2063,2.0,2.0,70.0,111,75,33,0.0,12830,0.0,0.0,0.0,314.0,0.0,2.0,0.0,1.0,1.0,2103.067391744608,0.0,0.0,32724.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,32724.0,5,0,5,5_0 -2064,3.0,11.0,67.0,111,77,71,0.0,12831,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3603.1773652537977,1925.0,0.0,20554.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20554.0,3,0,3_0,3_0 -2065,2.0,3.0,56.0,120,47,60,0.0,12833,0.0,250.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2220.8813399866385,0.0,0.0,36405.0,4,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24270.0,4,0,4_0,4_1 -2066,0.0,0.0,66.0,111,75,50,0.0,12834,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,6697.3860923394295,0.0,0.0,15720.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15720.0,2,0,2_0,2_0 -2067,19.0,19.0,64.0,300,78,50,0.0,12836,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1624.1567440844894,3026.0,0.0,16949.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,11299.333333333334,1,0,1_0,1_1 -2068,4.0,4.0,37.0,112,52,71,0.0,12837,0.0,0.0,50.0,0.0,1.0,5.0,2.0,4.0,2.3,2060.3905314726344,1040.0,0.0,28961.0,1,2,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,12591.739130434784,2,0,2_0,2_0 -2069,9.0,9.0,47.0,111,67,50,0.0,12838,0.0,0.0,30.0,0.0,2.0,4.0,3.0,5.0,2.4,1656.1954941057568,2080.0,0.0,31510.0,1,2,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,13129.166666666668,2,0,2_0,2_0 -2070,0.0,0.0,20.0,111,52,41,0.0,1284,0.0,0.0,0.0,317.0,1.0,2.0,0.0,1.0,1.0,3433.9768816519854,0.0,0.0,10116.0,3,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10116.0,1,0,1_1,1_0 -2071,5.0,7.0,56.0,111,65,70,0.0,12842,0.0,0.0,49.0,0.0,1.0,5.0,0.0,2.0,1.5,2680.6245211605283,0.0,0.0,40769.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,27179.333333333332,4,0,4_0,4_0 -2072,4.0,4.0,27.0,111,54,43,0.0,12844,0.0,370.0,0.0,357.0,1.0,2.0,0.0,1.0,1.0,7746.752739654508,3328.0,0.0,15291.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15291.0,2,0,2_0,2_0 -2073,0.0,0.0,72.0,111,78,50,0.0,12846,0.0,0.0,0.0,329.0,0.0,3.0,0.0,1.0,1.0,2023.6702282580109,0.0,0.0,16704.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16704.0,2,0,2_0,2_0 -2074,2.0,7.0,25.0,111,52,71,2.0,12848,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,3804.2643937719054,0.0,1200.0,20240.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11244.444444444443,1,0,1_1,1_0 -2075,0.0,0.0,78.0,111,77,71,0.0,1285,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4070.558945723753,0.0,0.0,15351.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15351.0,2,0,2_0,2_0 -2076,0.0,11.0,45.0,111,21,71,0.0,12850,0.0,200.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,3644.6043011069123,2501.0,0.0,58500.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,29250.0,5,0,5,5_0 -2077,3.0,20.0,49.0,111,21,50,0.0,12851,0.0,99999.0,99999.0,0.0,3.0,4.0,2.0,4.0,2.5,1977.56860273811,0.0,0.0,43860.0,1,2,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,17544.0,3,0,3_0,3_0 -2078,0.0,16.0,21.0,111,55,20,0.0,12852,0.0,0.0,0.0,107.0,2.0,2.0,0.0,2.0,1.5,2330.769234144837,1040.0,0.0,3809.0,3,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,2539.3333333333335,1,0,1_1,1_0 -2079,7.0,7.0,41.0,111,37,12,0.0,12853,0.0,200.0,100.0,0.0,2.0,7.0,2.0,4.0,2.1,2689.371747460932,0.0,0.0,89303.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,42525.23809523809,5,0,5,5_0 -2080,5.0,10.0,61.0,111,75,60,0.0,12854,0.0,0.0,0.0,484.0,0.0,5.0,0.0,1.0,1.0,2110.8862945233054,416.0,0.0,27997.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27997.0,4,0,4_0,4_0 -2081,4.0,9.0,30.0,111,37,12,0.0,12855,0.0,15.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2376.309527799688,11282.0,0.0,59220.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,32900.0,5,0,5,5_0 -2082,11.0,11.0,54.0,111,46,60,0.0,12856,0.0,0.0,32.0,0.0,1.0,5.0,0.0,1.0,1.0,2244.3320693592605,2860.0,0.0,25589.0,1,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,25589.0,4,0,4_0,4_0 -2083,6.0,12.0,40.0,111,37,20,0.0,12858,0.0,0.0,80.0,0.0,1.0,7.0,2.0,3.0,1.6,1197.9479401054273,0.0,0.0,28950.0,1,2,8,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,18093.75,3,0,3_0,3_0 -2084,5.0,20.0,49.0,111,46,60,0.0,12859,0.0,400.0,400.0,540.0,4.0,4.0,2.0,4.0,2.5,1989.830195614234,3746.0,0.0,42661.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,17064.4,3,0,3_0,3_0 -2085,0.0,0.0,45.0,111,54,50,0.0,1286,0.0,0.0,0.0,398.0,1.0,4.0,3.0,4.0,2.3,3355.6109889308136,0.0,0.0,26410.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11482.608695652174,1,0,1_1,1_0 -2086,5.0,16.0,56.0,400,78,50,0.0,12860,0.0,500.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2011.7992885039976,0.0,0.0,38683.0,5,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,19341.5,3,0,3_0,3_1 -2087,10.0,10.0,30.0,221,48,43,0.0,12861,0.0,250.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2738.7338903234036,0.0,0.0,29002.0,1,2,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,29002.0,5,0,5,5_0 -2088,0.0,0.0,55.0,111,52,50,0.0,12862,0.0,0.0,0.0,299.0,4.0,4.0,3.0,4.0,2.5,1667.6969733477124,0.0,0.0,44876.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17950.4,3,0,3_1,3_0 -2089,0.0,0.0,34.0,111,55,31,0.0,12864,0.0,0.0,0.0,450.0,1.0,1.0,0.0,1.0,1.0,3655.0854879366016,0.0,0.0,18976.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18976.0,3,0,3_0,3_0 -2090,6.0,6.0,43.0,112,48,50,0.0,12866,0.0,700.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,1761.5687686499152,4636.0,0.0,35184.0,1,3,7,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17592.0,3,0,3_0,3_1 -2091,15.0,19.0,65.0,300,21,70,0.0,12867,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1902.1656632670827,0.0,0.0,25630.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17086.666666666668,3,0,3_0,3_1 -2092,4.0,4.0,49.0,111,43,20,0.0,12868,0.0,0.0,100.0,0.0,1.0,4.0,1.0,2.0,1.5,2764.4881848737623,2080.0,0.0,43184.0,1,1,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,28789.333333333332,4,0,4_0,4_0 -2093,0.0,31.0,33.0,300,65,50,0.0,1287,0.0,1000.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1234.917218848792,5200.0,0.0,39595.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,15228.846153846152,2,0,2_1,2_1 -2094,4.0,4.0,63.0,112,74,44,0.0,12870,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1396.043808149794,0.0,0.0,33979.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22652.666666666668,4,0,4_0,4_1 -2095,0.0,10.0,25.0,300,12,43,0.0,12871,0.0,250.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1169.2606780545725,0.0,0.0,271.0,1,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,271.0,1,0,1_0,1_1 -2096,2.0,2.0,80.0,111,74,20,0.0,12872,0.0,0.0,0.0,775.0,0.0,3.0,0.0,2.0,1.5,3073.5725379838914,0.0,0.0,78510.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,52340.0,5,0,5,5_0 -2097,0.0,12.0,53.0,112,37,41,2.0,12874,0.0,550.0,0.0,0.0,4.0,7.0,2.0,4.0,2.5,1337.3246386182277,2080.0,2500.0,99889.0,1,1,7,0.0,4,4.0,1.0,0.0,1,0,0,0,0,0,0.0,4.0,39955.6,5,0,5,5_1 -2098,0.0,9.0,56.0,111,56,50,0.0,12875,0.0,250.0,0.0,200.0,1.0,3.0,0.0,1.0,1.0,1585.0178779050539,1040.0,0.0,12130.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12130.0,1,0,1_1,1_0 -2099,1.0,13.0,51.0,111,68,71,0.0,12876,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,3420.581886900765,1041.0,0.0,25100.0,4,3,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8964.285714285716,1,0,1_1,1_0 -2100,0.0,14.0,30.0,111,67,41,2.0,12879,0.0,0.0,0.0,103.0,1.0,5.0,2.0,4.0,2.1,2818.58064598202,0.0,2000.0,22769.0,4,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,10842.380952380952,1,0,1_1,1_0 -2101,4.0,14.0,52.0,111,52,70,0.0,12880,0.0,0.0,120.0,0.0,2.0,5.0,0.0,2.0,1.5,2720.341444813733,1561.0,0.0,27924.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,18616.0,3,0,3_0,3_0 -2102,13.0,13.0,82.0,120,72,71,0.0,12883,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,7096.191080446731,250.0,0.0,18393.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,12262.0,1,0,1_0,1_0 -2103,3.0,4.0,55.0,112,67,50,0.0,12884,0.0,0.0,452.0,0.0,1.0,4.0,0.0,1.0,1.0,1025.6210979536954,0.0,0.0,22200.0,1,1,6,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22200.0,4,0,4_0,4_0 -2104,0.0,0.0,63.0,111,77,50,0.0,12885,0.0,0.0,0.0,461.0,0.0,1.0,0.0,1.0,1.0,2261.4331185007213,0.0,0.0,9895.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9895.0,1,0,1_1,1_0 -2105,3.0,12.0,85.0,221,71,71,0.0,12886,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2872.7866153331074,2777.0,0.0,12402.0,5,3,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,12402.0,1,0,1_1,1_0 -2106,14.0,14.0,53.0,112,52,60,0.0,12887,0.0,0.0,100.0,0.0,1.0,5.0,0.0,1.0,1.0,1907.0332676009891,3510.0,0.0,26728.0,1,1,7,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,26728.0,4,0,4_0,4_0 -2107,2.0,15.0,49.0,111,22,50,0.0,12890,0.0,0.0,0.0,670.0,2.0,3.0,1.0,3.0,2.0,2694.615617609715,1040.0,0.0,40098.0,1,3,9,7.0,4,3.0,1.0,0.0,0,0,0,1,0,0,2.0,1.0,20049.0,3,0,3_0,3_0 -2108,0.0,0.0,84.0,111,75,42,0.0,12892,0.0,0.0,0.0,254.0,0.0,2.0,0.0,1.0,1.0,3446.895481958211,0.0,0.0,15705.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15705.0,2,0,2_1,2_0 -2109,16.0,16.0,59.0,120,21,12,0.0,12893,0.0,3000.0,0.0,0.0,1.0,7.0,1.0,3.0,2.0,2007.8413686119864,2106.0,0.0,33450.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16725.0,2,0,2_0,2_1 -2110,18.0,21.0,63.0,120,78,71,0.0,12896,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5364.246933315212,0.0,0.0,11387.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11387.0,1,0,1_0,1_1 -2111,10.0,11.0,48.0,111,47,12,0.0,12899,0.0,0.0,30.0,0.0,2.0,6.0,3.0,5.0,2.8,1755.2838472030076,0.0,0.0,80950.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,28910.714285714286,4,0,4_0,4_0 -2112,12.0,12.0,84.0,221,74,50,0.0,129,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2923.601607639471,0.0,0.0,36413.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,24275.333333333332,4,0,4_0,4_0 -2113,1.0,1.0,21.0,111,65,20,1.0,1290,0.0,0.0,20.0,306.0,1.0,2.0,0.0,2.0,1.5,3427.643884411812,0.0,11000.0,5787.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,3858.0,1,0,1_1,1_0 -2114,2.0,2.0,45.0,112,56,60,1.0,12900,0.0,300.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3680.3204837541984,0.0,14000.0,32385.0,1,1,6,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,16192.5,2,0,2_0,2_1 -2115,2.0,2.0,32.0,112,63,50,0.0,12901,0.0,400.0,120.0,0.0,2.0,5.0,2.0,4.0,2.1,1481.5751898234917,6123.0,0.0,50855.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24216.666666666664,4,0,4_0,4_1 -2116,0.0,11.0,69.0,111,75,50,2.0,12902,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2092.6052375988265,2080.0,1250.0,14500.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14500.0,2,0,2_0,2_0 -2117,7.0,7.0,79.0,111,75,71,0.0,12907,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4204.200690518255,0.0,0.0,30707.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20471.333333333332,3,0,3_0,3_0 -2118,0.0,0.0,50.0,112,68,71,0.0,12908,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2127.446203949061,12740.0,0.0,20435.0,4,3,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8884.782608695652,1,0,1_1,1_1 -2119,0.0,0.0,44.0,111,85,71,0.0,12909,0.0,0.0,0.0,192.0,0.0,2.0,0.0,1.0,1.0,4302.803692230119,0.0,0.0,12494.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12494.0,1,0,1_1,1_0 -2120,7.0,15.0,28.0,112,38,20,0.0,1291,0.0,0.0,250.0,0.0,2.0,8.0,1.0,3.0,2.0,2018.6012988029368,0.0,0.0,71427.0,1,1,9,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,3.0,1.0,35713.5,5,0,5,5_1 -2121,8.0,8.0,30.0,112,63,50,0.0,12910,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,1506.6705613340398,3957.0,0.0,20135.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9588.095238095239,1,0,1_0,1_1 -2122,14.0,16.0,47.0,111,43,10,0.0,12911,0.0,40.0,0.0,0.0,1.0,5.0,2.0,4.0,2.3,1276.8492951059839,1430.0,0.0,37460.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16286.956521739132,2,0,2_0,2_0 -2123,2.0,15.0,46.0,111,47,20,0.0,12912,0.0,0.0,0.0,62.0,2.0,4.0,3.0,5.0,2.4,1875.4569049085374,520.0,0.0,21589.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8995.416666666668,1,0,1_1,1_0 -2124,2.0,2.0,68.0,112,78,50,0.0,12913,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1041.9492321608982,5963.0,0.0,48753.0,5,1,6,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,32502.0,5,0,5,5_0 -2125,2.0,19.0,42.0,111,63,70,0.0,12914,0.0,160.0,0.0,580.0,1.0,1.0,0.0,1.0,1.0,3205.0931921384445,2080.0,0.0,20693.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20693.0,3,0,3_0,3_0 -2126,2.0,21.0,48.0,111,64,71,0.0,12916,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2678.5468737154097,0.0,0.0,14584.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14584.0,2,0,2_1,2_0 -2127,5.0,11.0,28.0,111,37,10,0.0,12917,0.0,1000.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2672.5413371780983,0.0,0.0,59759.0,1,2,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,39839.333333333336,5,0,5,5_0 -2128,2.0,11.0,26.0,111,45,50,0.0,12918,0.0,0.0,20.0,0.0,2.0,3.0,0.0,2.0,1.5,3381.757208442776,0.0,0.0,29447.0,1,2,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,19631.333333333332,3,0,3_0,3_0 -2129,0.0,6.0,28.0,111,55,31,0.0,12919,0.0,150.0,0.0,365.0,1.0,2.0,0.0,2.0,1.5,4131.84794433536,0.0,0.0,15025.0,1,3,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,10016.666666666666,1,0,1_1,1_0 -2130,4.0,8.0,68.0,111,72,50,0.0,1292,0.0,150.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2057.5337553565146,0.0,0.0,48206.0,5,1,6,5.0,2,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,32137.333333333332,5,0,5,5_0 -2131,0.0,0.0,71.0,111,78,70,0.0,12920,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1440.8928795625143,0.0,0.0,17636.0,5,1,3,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17636.0,3,0,3_0,3_0 -2132,0.0,1.0,35.0,111,52,50,1.0,12922,0.0,600.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2440.465470033463,4161.0,9369.0,39865.0,1,3,7,6.0,5,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,26576.666666666668,4,0,4_0,4_0 -2133,10.0,13.0,57.0,111,55,70,0.0,12924,234.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1591.0307775599144,0.0,0.0,49790.0,1,2,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,33193.333333333336,5,0,5,5_0 -2134,6.0,9.0,41.0,111,56,50,0.0,12925,0.0,330.0,0.0,69.0,1.0,6.0,3.0,4.0,2.1,1464.2635186257571,1041.0,0.0,21220.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10104.761904761905,1,0,1_1,1_0 -2135,1.0,4.0,25.0,112,56,41,0.0,12926,0.0,200.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3258.2739418004458,3485.0,0.0,26302.0,1,3,7,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,12524.761904761905,1,0,1_1,1_0 -2136,21.0,27.0,89.0,111,72,70,0.0,12927,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2365.630284920001,0.0,0.0,13987.0,5,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13987.0,2,0,2_0,2_0 -2137,0.0,0.0,72.0,111,78,71,0.0,12928,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,7224.361596571147,0.0,0.0,11240.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,7493.333333333333,1,0,1_0,1_0 -2138,1.0,7.0,50.0,112,31,10,2.0,12929,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,1486.652436880936,0.0,45000.0,261244.0,1,1,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,104497.6,5,0,5,5_0 -2139,3.0,26.0,85.0,111,77,30,0.0,1293,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3481.835280810405,0.0,0.0,13555.0,5,4,8,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,9036.666666666666,1,0,1_0,1_0 -2140,9.0,9.0,78.0,300,78,50,0.0,12933,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1364.7036446650407,0.0,0.0,26140.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17426.666666666668,3,0,3_0,3_1 -2141,2.0,2.0,62.0,400,71,50,0.0,12934,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2077.345577490113,0.0,0.0,103510.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,69006.66666666667,5,0,5,5_1 -2142,0.0,0.0,84.0,111,75,70,0.0,12935,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2747.8979209686336,0.0,0.0,20330.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20330.0,3,0,3_0,3_0 -2143,1.0,1.0,35.0,111,47,43,1.0,12936,0.0,70.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2461.7169363696416,0.0,14100.0,28240.0,1,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13447.619047619048,2,0,2_1,2_0 -2144,3.0,9.0,64.0,111,72,50,0.0,12937,0.0,0.0,0.0,428.0,1.0,4.0,0.0,2.0,1.5,2309.388875427924,8164.0,0.0,33020.0,5,3,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22013.333333333332,4,0,4_0,4_0 -2145,2.0,2.0,51.0,221,62,42,1.0,12938,0.0,0.0,0.0,386.0,2.0,3.0,0.0,2.0,1.5,4601.031430026642,0.0,21500.0,45522.0,1,3,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,30348.0,5,0,5,5_0 -2146,22.0,22.0,83.0,112,71,70,0.0,1294,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1174.58911411523,0.0,0.0,29574.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19716.0,3,0,3_0,3_1 -2147,8.0,9.0,58.0,112,62,50,0.0,12940,0.0,300.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1644.754386409739,4528.0,0.0,24913.0,1,1,7,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24913.0,4,0,4_0,4_0 -2148,1.0,14.0,37.0,111,67,50,2.0,12942,0.0,100.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,2647.2220353570665,2236.0,1700.0,27015.0,1,3,4,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14218.42105263158,2,0,2_1,2_0 -2149,0.0,14.0,42.0,111,47,31,2.0,12943,0.0,0.0,0.0,535.0,1.0,2.0,0.0,1.0,1.0,4235.7240862161225,0.0,9500.0,36611.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,36611.0,5,0,5,5_0 -2150,10.0,20.0,80.0,112,71,71,0.0,12946,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4820.356352678851,2377.0,0.0,14915.0,5,4,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9943.333333333334,1,0,1_0,1_1 -2151,2.0,2.0,69.0,211,74,31,0.0,12948,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1652.724425921166,0.0,0.0,37603.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,37603.0,5,0,5,5_0 -2152,2.0,9.0,26.0,111,53,50,0.0,12949,0.0,0.0,0.0,219.0,2.0,4.0,1.0,3.0,1.8,2975.320398277426,0.0,0.0,34543.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,19190.555555555555,3,0,3_1,3_0 -2153,3.0,3.0,56.0,111,54,70,0.0,1295,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1676.7320210912999,1586.0,0.0,13610.0,4,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13610.0,2,0,2_0,2_0 -2154,0.0,0.0,42.0,111,54,43,1.0,12950,0.0,99999.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.3,1471.6393072845187,1820.0,10500.0,54020.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,23486.956521739132,4,0,4_0,4_0 -2155,0.0,0.0,51.0,111,54,50,0.0,12951,0.0,0.0,0.0,155.0,1.0,1.0,0.0,2.0,1.5,2977.837833898282,0.0,0.0,19474.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12982.666666666666,2,0,2_1,2_0 -2156,6.0,6.0,36.0,111,52,20,0.0,12952,0.0,0.0,105.0,0.0,1.0,3.0,1.0,2.0,1.3,3793.173200596069,2600.0,0.0,28277.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,21751.53846153846,4,0,4_1,4_0 -2157,0.0,26.0,81.0,300,78,50,0.0,12953,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1957.5420939289575,0.0,0.0,19400.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12933.333333333334,2,0,2_0,2_1 -2158,0.0,0.0,19.0,111,54,41,0.0,12954,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3115.8588016349017,0.0,0.0,12040.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12040.0,1,0,1_0,1_0 -2159,6.0,8.0,40.0,111,55,50,0.0,12956,0.0,20.0,200.0,0.0,2.0,6.0,1.0,3.0,1.8,1579.2711249012218,5305.0,0.0,33865.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,18813.888888888887,3,0,3_0,3_0 -2160,2.0,13.0,55.0,221,65,50,0.0,12957,0.0,0.0,490.0,0.0,3.0,4.0,1.0,3.0,2.0,2417.602452199058,2343.0,0.0,41793.0,1,2,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,20896.5,3,0,3_0,3_0 -2161,0.0,0.0,43.0,111,55,71,0.0,12959,0.0,0.0,0.0,540.0,1.0,4.0,3.0,4.0,1.9,4430.405760418898,2631.0,0.0,17573.0,1,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9248.947368421053,1,0,1_1,1_0 -2162,1.0,3.0,60.0,111,47,71,2.0,1296,175.0,240.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2556.613206627677,5425.0,9000.0,66807.0,1,1,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,33403.5,5,0,5,5_0 -2163,0.0,0.0,27.0,111,85,60,0.0,12960,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4160.50268228652,0.0,0.0,13264.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13264.0,2,0,2_1,2_0 -2164,6.0,12.0,24.0,111,84,10,0.0,12961,0.0,300.0,0.0,187.0,0.0,1.0,0.0,1.0,1.0,3416.9349915188923,2340.0,0.0,2893.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,2893.0,1,0,1_1,1_0 -2165,3.0,9.0,41.0,111,52,60,0.0,12962,0.0,100.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2135.167458209485,0.0,0.0,32699.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,15570.95238095238,2,0,2_1,2_0 -2166,3.0,3.0,53.0,111,22,41,0.0,12964,0.0,480.0,150.0,0.0,2.0,7.0,0.0,2.0,1.5,2756.205376768226,3750.0,0.0,351392.0,1,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,234261.33333333334,5,0,5,5_0 -2167,9.0,9.0,70.0,112,75,41,0.0,12967,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,1854.4684020696423,2083.0,0.0,59374.0,5,1,7,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,29687.0,5,0,5,5_0 -2168,11.0,11.0,75.0,120,86,71,0.0,1297,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2313.079699037242,0.0,0.0,9471.0,5,4,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,9471.0,1,0,1_0,1_0 -2169,6.0,9.0,55.0,111,54,50,0.0,12970,0.0,400.0,160.0,0.0,2.0,5.0,0.0,2.0,1.5,1437.3192831464305,2860.0,0.0,51423.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,34282.0,5,0,5,5_0 -2170,9.0,9.0,41.0,111,38,12,0.0,12971,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2587.386531184881,0.0,0.0,101969.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,42487.083333333336,5,0,5,5_0 -2171,2.0,3.0,46.0,111,38,12,0.0,12972,0.0,0.0,160.0,2042.0,1.0,5.0,2.0,3.0,1.8,3090.682108544915,4923.0,0.0,125436.0,1,3,10,8.0,2,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,69686.66666666667,5,0,5,5_0 -2172,7.0,7.0,58.0,221,22,12,0.0,12975,0.0,600.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,3110.0081266898756,1560.0,0.0,107484.0,1,2,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,53742.0,5,0,5,5_0 -2173,0.0,0.0,89.0,111,77,71,0.0,12976,0.0,0.0,0.0,19.0,0.0,3.0,0.0,1.0,1.0,8199.768542690115,0.0,0.0,11584.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11584.0,1,0,1_1,1_0 -2174,6.0,7.0,51.0,111,31,12,0.0,12977,0.0,500.0,0.0,0.0,2.0,7.0,4.0,6.0,3.1,1104.9277213679131,2340.0,0.0,320864.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,103504.51612903226,5,0,5,5_0 -2175,3.0,3.0,64.0,300,71,71,0.0,12978,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3267.7939575306896,0.0,0.0,4530.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,4530.0,1,0,1_0,1_1 -2176,0.0,1.0,75.0,400,74,70,2.0,12979,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1969.3466128329212,0.0,11200.0,29155.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19436.666666666668,3,0,3_0,3_1 -2177,0.0,0.0,81.0,111,78,70,0.0,12981,0.0,0.0,0.0,255.0,0.0,4.0,0.0,1.0,1.0,3410.0150142896427,0.0,0.0,19210.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19210.0,3,0,3_0,3_0 -2178,0.0,0.0,81.0,112,77,71,0.0,12983,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3477.883682847967,0.0,0.0,12781.0,5,3,7,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12781.0,2,0,2_1,2_0 -2179,15.0,19.0,55.0,112,63,50,0.0,12984,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2812.686302417522,0.0,0.0,29398.0,1,3,5,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,14699.0,2,0,2_1,2_1 -2180,8.0,8.0,29.0,111,33,12,0.0,12986,0.0,300.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2587.2807543220683,2912.0,0.0,140418.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,93612.0,5,0,5,5_0 -2181,6.0,6.0,70.0,112,71,70,0.0,12988,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1535.8432726209612,2860.0,0.0,23913.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23913.0,4,0,4_0,4_1 -2182,5.0,5.0,59.0,400,54,50,0.0,1299,0.0,800.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1822.0346573974145,3242.0,0.0,44800.0,1,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,29866.666666666668,5,0,5,5_1 -2183,8.0,10.0,55.0,112,52,41,0.0,12990,0.0,200.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2419.2171694764434,2184.0,0.0,32668.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21778.666666666668,4,0,4_0,4_1 -2184,2.0,20.0,40.0,112,48,43,0.0,12991,0.0,80.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2824.9586944787184,0.0,0.0,32569.0,1,2,7,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,15509.047619047618,2,0,2_0,2_0 -2185,9.0,9.0,52.0,112,47,43,0.0,12996,0.0,300.0,150.0,0.0,2.0,5.0,2.0,4.0,2.3,1508.157970293454,4022.0,0.0,65319.0,1,1,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28399.565217391308,4,0,4_0,4_0 -2186,8.0,14.0,42.0,112,52,50,0.0,12997,0.0,150.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,1853.2368300623405,3797.0,0.0,28531.0,1,1,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,13586.190476190475,2,0,2_0,2_1 -2187,6.0,6.0,45.0,111,47,42,0.0,12998,0.0,0.0,120.0,455.0,1.0,1.0,0.0,1.0,1.0,3019.496740451127,0.0,0.0,14735.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,14735.0,2,0,2_0,2_0 -2188,0.0,15.0,65.0,111,78,71,0.0,13,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2997.943136245827,1498.0,0.0,31840.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21226.666666666668,3,0,3_0,3_0 -2189,4.0,4.0,87.0,300,71,70,0.0,130,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1330.41246261498,2808.0,0.0,-984.0,5,1,0,0.0,2,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,-656.0,1,0,1_0,1_1 -2190,7.0,9.0,35.0,111,46,20,0.0,1300,0.0,0.0,250.0,0.0,2.0,6.0,1.0,3.0,1.8,1858.340395047403,0.0,0.0,52284.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,29046.666666666664,5,0,5,5_0 -2191,0.0,0.0,61.0,300,86,71,0.0,13000,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3104.37437359441,0.0,0.0,8250.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8250.0,1,0,1_0,1_1 -2192,0.0,11.0,46.0,211,33,10,0.0,13001,0.0,0.0,0.0,0.0,1.0,8.0,3.0,5.0,2.4,1349.1969555276166,0.0,0.0,72860.0,1,2,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,30358.333333333336,5,0,5,5_0 -2193,11.0,15.0,90.0,300,71,70,0.0,13004,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,5558.165598397141,0.0,0.0,17229.0,5,4,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11486.0,1,0,1_0,1_0 -2194,21.0,21.0,83.0,112,71,71,0.0,13007,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3615.551021473812,0.0,0.0,27097.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18064.666666666668,3,0,3_0,3_0 -2195,14.0,14.0,84.0,111,77,71,0.0,13009,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4963.086434290531,2935.0,0.0,20816.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20816.0,3,0,3_0,3_0 -2196,0.0,0.0,24.0,111,84,41,0.0,1301,0.0,0.0,0.0,230.0,0.0,3.0,0.0,1.0,1.0,4355.909960702192,0.0,0.0,9245.0,3,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9245.0,1,0,1_1,1_0 -2197,0.0,0.0,88.0,111,74,70,0.0,13011,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2574.0064068905735,0.0,0.0,20229.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20229.0,3,0,3_0,3_0 -2198,6.0,13.0,34.0,111,46,20,0.0,13014,0.0,0.0,300.0,340.0,2.0,3.0,2.0,4.0,2.1,2458.9417019235398,3640.0,0.0,26278.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,12513.333333333332,1,0,1_1,1_0 -2199,11.0,11.0,62.0,300,22,31,0.0,13015,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1086.5468941199488,2506.0,0.0,44041.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,29360.666666666668,5,0,5,5_1 -2200,0.0,14.0,26.0,300,52,71,0.0,13018,0.0,0.0,300.0,0.0,1.0,2.0,0.0,2.0,1.5,2759.3896131729653,0.0,0.0,13934.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,9289.333333333334,1,0,1_1,1_1 -2201,0.0,0.0,63.0,111,77,60,2.0,13019,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1958.8261781341628,2064.0,15300.0,34529.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23019.333333333332,4,0,4_0,4_0 -2202,8.0,18.0,23.0,111,55,41,0.0,1302,0.0,0.0,25.0,10.0,1.0,1.0,0.0,1.0,1.0,3320.324739235986,1041.0,0.0,11620.0,1,3,8,6.0,1,3.0,0.0,1.0,0,0,1,0,0,1,2.0,1.0,11620.0,1,0,1_1,1_0 -2203,6.0,13.0,33.0,112,33,10,0.0,13020,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,5214.872384810705,2651.0,0.0,121181.0,1,2,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,57705.23809523809,5,0,5,5_0 -2204,0.0,6.0,29.0,111,64,71,2.0,13022,0.0,400.0,0.0,382.0,2.0,3.0,1.0,3.0,1.8,3067.7880690264756,0.0,4800.0,34270.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,19038.888888888887,3,0,3_0,3_0 -2205,3.0,10.0,21.0,111,62,31,0.0,13023,0.0,0.0,100.0,10.0,1.0,2.0,0.0,1.0,1.0,4312.978740655815,1040.0,0.0,14074.0,4,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,14074.0,2,0,2_1,2_0 -2206,0.0,0.0,56.0,111,22,20,0.0,13024,0.0,0.0,0.0,1429.0,2.0,4.0,3.0,5.0,2.4,4129.986123231533,0.0,0.0,74971.57142857142,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31238.15476190476,5,0,5,5_0 -2207,6.0,6.0,51.0,111,21,50,0.0,13025,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2013.467874864421,0.0,0.0,69304.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,33001.90476190476,5,0,5,5_0 -2208,5.0,5.0,37.0,112,43,10,0.0,13027,0.0,1250.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1612.0322294982457,6519.0,0.0,56570.0,1,2,7,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,26938.095238095237,4,0,4_0,4_1 -2209,5.0,5.0,62.0,400,68,70,0.0,13029,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1367.1884549635797,6491.0,0.0,23120.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15413.333333333334,2,0,2_0,2_1 -2210,10.0,10.0,63.0,111,75,41,0.0,1303,0.0,0.0,0.0,436.0,0.0,3.0,0.0,1.0,1.0,3432.8961760859993,0.0,0.0,19086.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19086.0,3,0,3_0,3_0 -2211,11.0,11.0,63.0,221,75,41,0.0,13030,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5748.100637730849,3068.0,0.0,23110.0,5,3,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23110.0,4,0,4_0,4_0 -2212,1.0,3.0,62.0,112,77,70,0.0,13032,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2990.31922454696,0.0,0.0,28687.0,5,1,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19124.666666666668,3,0,3_0,3_0 -2213,2.0,6.0,25.0,400,47,20,0.0,13033,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3070.3413466207744,0.0,0.0,17644.0,1,3,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,17644.0,3,0,3_0,3_1 -2214,2.0,4.0,30.0,112,47,20,0.0,13035,0.0,330.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2835.97081893358,1566.0,0.0,37977.0,1,2,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25318.0,4,0,4_0,4_0 -2215,21.0,23.0,59.0,111,22,20,0.0,13036,0.0,150.0,0.0,186.0,1.0,3.0,0.0,2.0,1.5,3093.777391518803,2184.0,0.0,34675.0,1,3,10,8.0,5,1.0,1.0,1.0,0,0,0,0,1,1,0.0,1.0,23116.666666666668,4,0,4_1,4_0 -2216,4.0,4.0,34.0,120,47,43,0.0,13037,0.0,500.0,0.0,490.0,1.0,3.0,0.0,1.0,1.0,2784.4837370596365,3016.0,0.0,30281.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,30281.0,5,0,5,5_1 -2217,7.0,7.0,57.0,111,67,71,0.0,13039,0.0,0.0,0.0,35.0,1.0,4.0,1.0,2.0,1.5,3826.3085418146934,0.0,0.0,23338.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,15558.666666666666,2,0,2_1,2_0 -2218,3.0,3.0,71.0,111,31,12,0.0,1304,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2693.7957582597337,0.0,0.0,56337.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,37558.0,5,0,5,5_0 -2219,6.0,6.0,53.0,112,11,50,0.0,13040,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2211.733073474164,356.0,0.0,3867.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,2578.0,1,0,1_0,1_1 -2220,2.0,2.0,37.0,111,47,31,0.0,13041,0.0,350.0,150.0,1020.0,2.0,4.0,1.0,3.0,1.8,3096.615187190677,4422.0,0.0,56792.0,1,3,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,31551.11111111111,5,0,5,5_0 -2221,11.0,11.0,49.0,111,67,50,0.0,13043,0.0,30.0,0.0,277.0,1.0,2.0,0.0,1.0,1.0,2138.383018406255,0.0,0.0,17432.0,4,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,17432.0,3,0,3_1,3_0 -2222,6.0,6.0,73.0,111,75,50,0.0,13045,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2094.0049897250947,2236.0,0.0,29110.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29110.0,5,0,5,5_0 -2223,1.0,1.0,50.0,111,53,60,1.0,13046,0.0,200.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,3917.6062922978845,0.0,21000.0,45276.0,1,2,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,30184.0,5,0,5,5_0 -2224,2.0,2.0,41.0,111,54,42,0.0,13047,0.0,590.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2176.517632123474,2030.0,0.0,57814.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,32118.888888888887,5,0,5,5_0 -2225,5.0,5.0,67.0,111,77,50,0.0,13048,0.0,0.0,0.0,442.0,0.0,2.0,0.0,1.0,1.0,1905.829523365239,0.0,0.0,24794.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24794.0,4,0,4_0,4_0 -2226,3.0,20.0,66.0,300,71,50,0.0,13049,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1046.1279252927377,2600.0,0.0,16070.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,10713.333333333334,1,0,1_0,1_1 -2227,2.0,11.0,71.0,111,75,70,0.0,13051,0.0,0.0,0.0,372.0,0.0,4.0,0.0,2.0,1.5,2146.9897164907115,3380.0,0.0,18390.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12260.0,1,0,1_0,1_0 -2228,1.0,10.0,50.0,111,85,30,0.0,13052,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,3212.668798081786,5200.0,0.0,11259.0,7,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11259.0,1,0,1_0,1_0 -2229,0.0,0.0,60.0,111,77,50,0.0,13054,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2773.0121774081454,0.0,0.0,17310.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17310.0,3,0,3_1,3_0 -2230,8.0,8.0,64.0,111,74,20,0.0,13055,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1048.8790188687387,2340.0,0.0,47334.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,31556.0,5,0,5,5_0 -2231,4.0,10.0,47.0,112,11,50,0.0,13056,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2486.7138101820783,520.0,0.0,30420.0,1,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20280.0,3,0,3_0,3_1 -2232,3.0,3.0,62.0,111,75,50,0.0,13057,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2633.4905829706477,0.0,0.0,25720.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,17146.666666666668,3,0,3_0,3_0 -2233,8.0,8.0,77.0,112,75,50,0.0,13058,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1640.261702087585,2184.0,0.0,17842.0,5,1,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17842.0,3,0,3_0,3_0 -2234,1.0,14.0,65.0,111,77,50,2.0,13059,0.0,0.0,0.0,330.0,0.0,5.0,0.0,1.0,1.0,2978.7270467288236,2340.0,3400.0,16770.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16770.0,2,0,2_0,2_0 -2235,6.0,16.0,55.0,111,54,50,0.0,1306,0.0,374.0,0.0,500.0,2.0,1.0,0.0,2.0,1.5,2824.422157029765,2132.0,0.0,37620.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25080.0,4,0,4_0,4_0 -2236,1.0,25.0,34.0,112,63,71,2.0,13060,0.0,400.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3083.911237944758,2600.0,300.0,40818.0,1,3,9,2.0,4,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,19437.142857142855,3,0,3_1,3_0 -2237,2.0,3.0,25.0,112,63,50,0.0,13064,0.0,330.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2032.8440898686376,2080.0,0.0,22982.0,1,3,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12767.777777777777,2,0,2_1,2_1 -2238,7.0,7.0,51.0,111,62,71,0.0,13065,0.0,400.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2701.985342186604,1560.0,0.0,33451.0,1,2,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22300.666666666668,4,0,4_0,4_0 -2239,4.0,8.0,38.0,112,56,41,0.0,13066,0.0,280.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1649.6441659233242,5202.0,0.0,27822.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,13248.571428571428,2,0,2_1,2_1 -2240,1.0,1.0,53.0,112,37,31,0.0,13067,0.0,200.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1978.0354313573716,0.0,0.0,36390.0,1,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24260.0,4,0,4_0,4_1 -2241,2.0,2.0,27.0,111,47,20,0.0,13069,0.0,40.0,0.0,531.0,2.0,3.0,0.0,2.0,1.5,3860.5162400312643,0.0,0.0,34280.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22853.333333333332,4,0,4_0,4_0 -2242,1.0,4.0,40.0,111,43,42,0.0,1307,0.0,550.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1345.695115479204,2206.0,0.0,51043.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21267.916666666668,3,0,3_0,3_0 -2243,2.0,2.0,60.0,400,31,10,0.0,13070,0.0,750.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1294.0948815009347,5819.0,0.0,114566.0,1,1,0,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,1.0,2.0,57283.0,5,0,5,5_1 -2244,20.0,20.0,37.0,111,42,20,0.0,13072,0.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,2.0,1639.134997875345,0.0,0.0,60227.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,30113.5,5,0,5,5_0 -2245,3.0,6.0,65.0,111,77,71,0.0,13075,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4409.075248057789,0.0,0.0,16420.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16420.0,2,0,2_0,2_0 -2246,0.0,0.0,18.0,111,84,60,0.0,13077,0.0,0.0,0.0,347.0,0.0,1.0,0.0,1.0,1.0,3860.417685106148,0.0,0.0,7476.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7476.0,1,0,1_1,1_0 -2247,0.0,0.0,81.0,300,71,70,0.0,13080,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2287.7028821442213,0.0,0.0,12747.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12747.0,2,0,2_0,2_1 -2248,4.0,4.0,69.0,111,74,10,0.0,13082,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2531.370886464496,2184.0,0.0,102564.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,68376.0,5,0,5,5_0 -2249,10.0,10.0,66.0,400,45,41,0.0,13083,0.0,200.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3785.705938715254,1665.0,0.0,57212.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,38141.333333333336,5,0,5,5_1 -2250,9.0,9.0,65.0,111,72,10,0.0,13084,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4182.534696290695,2090.0,0.0,91511.0,5,2,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,61007.333333333336,5,0,5,5_0 -2251,7.0,7.0,74.0,300,75,41,0.0,13085,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2485.488343416222,1560.0,0.0,24899.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16599.333333333332,2,0,2_0,2_1 -2252,3.0,12.0,62.0,111,77,50,0.0,13087,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2077.946311151649,1352.0,0.0,23046.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15364.0,2,0,2_0,2_0 -2253,12.0,14.0,50.0,112,38,41,0.0,13089,0.0,0.0,0.0,0.0,1.0,8.0,3.0,5.0,2.8,2070.695785384579,3846.0,0.0,67334.0,1,2,10,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,24047.857142857145,4,0,4_0,4_0 -2254,6.0,6.0,68.0,111,72,43,0.0,1309,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3824.1165244925687,9534.0,0.0,18472.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18472.0,3,0,3_0,3_0 -2255,0.0,7.0,54.0,111,52,20,2.0,13090,0.0,0.0,680.0,0.0,2.0,5.0,1.0,2.0,1.5,3313.1201716210317,4891.0,4000.0,58105.0,1,1,9,7.0,2,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,38736.666666666664,5,0,5,5_0 -2256,0.0,0.0,46.0,221,68,71,0.0,13091,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5911.564493547984,0.0,0.0,14594.0,4,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14594.0,2,0,2_1,2_0 -2257,3.0,5.0,45.0,112,68,50,0.0,13092,0.0,270.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1120.8859919142078,2080.0,0.0,41381.0,1,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16552.4,2,0,2_0,2_0 -2258,0.0,0.0,88.0,111,77,71,0.0,13093,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3725.841606685018,0.0,0.0,22040.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22040.0,4,0,4_0,4_0 -2259,0.0,0.0,80.0,111,71,71,0.0,13094,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2850.454576084928,0.0,0.0,9720.0,5,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,9720.0,1,0,1_0,1_0 -2260,2.0,2.0,64.0,211,46,60,0.0,13095,0.0,500.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1673.1451489624615,0.0,0.0,62505.0,1,3,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,41670.0,5,0,5,5_0 -2261,1.0,19.0,43.0,111,68,50,2.0,13097,0.0,110.0,0.0,276.0,2.0,3.0,2.0,3.0,2.0,1488.8510408376053,2236.0,700.0,29738.0,1,3,9,7.0,2,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,14869.0,2,0,2_0,2_0 -2262,0.0,0.0,85.0,111,75,70,0.0,13098,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.5,4155.478714451585,0.0,0.0,28672.0,5,1,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19114.666666666668,3,0,3_0,3_0 -2263,0.0,11.0,21.0,111,84,41,0.0,13099,0.0,0.0,0.0,215.0,0.0,1.0,0.0,1.0,1.0,3148.6716817781585,1040.0,0.0,5422.0,3,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,5422.0,1,0,1_1,1_0 -2264,2.0,2.0,69.0,111,77,70,0.0,1310,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1838.0632941123183,1122.0,0.0,34663.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23108.666666666668,4,0,4_0,4_0 -2265,16.0,16.0,56.0,111,54,41,0.0,13100,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3314.972409097869,0.0,0.0,26054.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,17369.333333333332,3,0,3_0,3_0 -2266,12.0,12.0,36.0,111,35,20,0.0,13103,0.0,760.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1924.3454755458838,3682.0,0.0,55462.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,23109.166666666668,4,0,4_0,4_0 -2267,0.0,0.0,78.0,300,75,60,0.0,13105,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1840.7519884206174,0.0,0.0,22100.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14733.333333333334,2,0,2_0,2_1 -2268,2.0,14.0,23.0,111,52,31,0.0,13108,0.0,0.0,0.0,260.0,1.0,1.0,0.0,1.0,1.0,4083.2105979241574,2340.0,0.0,33214.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,33214.0,5,0,5,5_0 -2269,19.0,19.0,72.0,112,77,70,0.0,13109,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2680.5716874189743,833.0,0.0,28912.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28912.0,4,0,4_0,4_1 -2270,3.0,8.0,56.0,111,62,50,0.0,13110,0.0,300.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1229.4689740230642,2667.0,0.0,24222.0,1,1,3,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,12111.0,1,0,1_0,1_0 -2271,1.0,16.0,51.0,112,45,41,0.0,13111,0.0,400.0,0.0,0.0,1.0,11.0,0.0,2.0,1.5,3382.5603020920535,3021.0,0.0,67920.0,1,1,7,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,45280.0,5,0,5,5_1 -2272,0.0,6.0,62.0,211,78,70,0.0,13113,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1498.0578833106701,0.0,0.0,28960.0,5,2,2,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19306.666666666668,3,0,3_0,3_0 -2273,5.0,12.0,55.0,221,63,50,0.0,13114,0.0,0.0,700.0,0.0,1.0,5.0,0.0,1.0,1.0,2905.3268137107125,2600.0,0.0,34952.0,1,1,1,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,34952.0,5,0,5,5_0 -2274,0.0,8.0,44.0,111,64,41,0.0,13116,0.0,720.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1842.231835579016,1989.0,0.0,38710.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,16830.434782608696,2,0,2_0,2_0 -2275,5.0,9.0,45.0,112,64,50,0.0,13119,0.0,400.0,0.0,0.0,1.0,5.0,3.0,5.0,2.8,2002.5712595992122,0.0,0.0,31048.0,1,2,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,11088.57142857143,1,0,1_1,1_0 -2276,7.0,7.0,30.0,111,54,31,0.0,1312,0.0,0.0,0.0,333.0,1.0,2.0,0.0,1.0,1.0,2062.7008420426278,0.0,0.0,22628.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22628.0,4,0,4_0,4_0 -2277,0.0,0.0,77.0,111,75,41,0.0,13120,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3438.203485157306,0.0,0.0,16785.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16785.0,2,0,2_0,2_0 -2278,0.0,0.0,46.0,111,47,50,0.0,13121,0.0,0.0,0.0,563.0,1.0,2.0,0.0,1.0,1.0,2801.4111667751426,0.0,0.0,31944.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31944.0,5,0,5,5_0 -2279,1.0,1.0,78.0,300,78,50,1.0,13122,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2580.250610201608,0.0,12100.0,23260.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23260.0,4,0,4_0,4_1 -2280,10.0,14.0,35.0,111,45,31,0.0,13123,0.0,0.0,180.0,375.0,1.0,2.0,0.0,1.0,1.0,3816.945484169002,0.0,0.0,19576.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19576.0,3,0,3_0,3_0 -2281,0.0,1.0,53.0,111,37,41,1.0,13126,0.0,0.0,0.0,561.0,2.0,2.0,0.0,2.0,1.5,3210.2871393561845,1581.0,14500.0,47889.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,31926.0,5,0,5,5_0 -2282,1.0,1.0,48.0,112,45,41,1.0,13128,0.0,500.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,2270.8354626427704,0.0,14000.0,37628.0,1,2,7,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18814.0,3,0,3_0,3_0 -2283,3.0,7.0,57.0,111,38,41,0.0,1313,0.0,400.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1473.8811484305281,2652.0,0.0,57862.0,1,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,38574.666666666664,5,0,5,5_0 -2284,0.0,0.0,74.0,111,78,50,0.0,13130,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2625.452230213445,0.0,0.0,30920.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20613.333333333332,3,0,3_0,3_0 -2285,1.0,2.0,60.0,120,38,20,0.0,13135,0.0,1050.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1233.5626318582238,3594.0,0.0,57020.0,1,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,38013.333333333336,5,0,5,5_1 -2286,12.0,16.0,36.0,111,68,71,0.0,13137,0.0,0.0,60.0,233.0,1.0,2.0,0.0,1.0,1.0,2901.8829294533098,2080.0,0.0,15341.0,1,3,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,15341.0,2,0,2_0,2_0 -2287,7.0,11.0,41.0,112,67,50,0.0,13140,0.0,400.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1661.9638215986147,2340.0,0.0,38235.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25490.0,4,0,4_0,4_1 -2288,1.0,1.0,35.0,111,22,31,2.0,13141,0.0,1000.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2086.339648242852,0.0,50000.0,54067.0,1,2,8,7.0,4,3.0,1.0,1.0,0,0,0,1,0,0,1.0,2.0,22527.916666666668,4,0,4_0,4_0 -2289,5.0,7.0,33.0,112,42,50,0.0,13145,0.0,0.0,0.0,570.0,2.0,3.0,2.0,4.0,2.1,2640.0423426038137,0.0,0.0,41699.0,1,3,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19856.666666666664,3,0,3_0,3_0 -2290,10.0,10.0,53.0,112,34,10,0.0,13150,0.0,300.0,300.0,0.0,2.0,6.0,1.0,3.0,2.0,1624.3920460380152,7748.0,0.0,104435.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,52217.5,5,0,5,5_1 -2291,1.0,1.0,42.0,111,48,50,2.0,13152,0.0,350.0,150.0,0.0,2.0,3.0,1.0,3.0,2.0,1417.0881659978631,0.0,20700.0,48515.0,1,3,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,24257.5,4,0,4_0,4_0 -2292,6.0,6.0,52.0,112,52,33,0.0,13153,0.0,100139.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1503.1026503143298,0.0,0.0,38208.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25472.0,4,0,4_0,4_1 -2293,6.0,6.0,58.0,111,62,71,0.0,13154,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2334.970913533365,2837.0,0.0,58001.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,29000.5,4,0,4_0,4_0 -2294,3.0,11.0,79.0,111,77,70,0.0,13155,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2940.1304201382604,0.0,0.0,25243.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,16828.666666666668,2,0,2_0,2_0 -2295,0.0,0.0,85.0,400,78,71,0.0,13158,0.0,0.0,0.0,368.0,0.0,4.0,0.0,1.0,1.0,2674.775609273147,0.0,0.0,21439.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21439.0,3,0,3_0,3_1 -2296,0.0,0.0,63.0,111,78,50,0.0,13159,0.0,0.0,0.0,430.0,0.0,2.0,0.0,2.0,1.5,3882.158238964377,0.0,0.0,38770.0,5,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25846.666666666668,4,0,4_0,4_0 -2297,1.0,2.0,51.0,112,37,50,2.0,1316,0.0,50.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1584.2103960469983,4098.0,13500.0,42265.0,1,1,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,21132.5,3,0,3_0,3_1 -2298,2.0,14.0,53.0,111,62,71,0.0,13160,0.0,500.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1196.9391945643122,2451.0,0.0,38224.0,1,1,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21235.555555555555,3,0,3_0,3_0 -2299,1.0,11.0,54.0,120,38,44,2.0,13161,0.0,0.0,140.0,0.0,3.0,5.0,1.0,3.0,2.0,2520.1778205733085,0.0,3000.0,75575.0,1,2,0,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,37787.5,5,0,5,5_0 -2300,1.0,4.0,56.0,111,52,50,2.0,13162,0.0,0.0,500.0,425.0,2.0,4.0,1.0,3.0,2.0,1730.5896426602874,4680.0,8000.0,41870.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,20935.0,3,0,3_0,3_0 -2301,16.0,17.0,71.0,300,74,50,0.0,13163,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1181.88258532858,2600.0,0.0,47030.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,31353.333333333332,5,0,5,5_1 -2302,0.0,0.0,29.0,111,38,10,0.0,13165,0.0,0.0,0.0,680.0,1.0,2.0,0.0,2.0,1.5,3277.5569463020247,0.0,0.0,64188.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42792.0,5,0,5,5_0 -2303,20.0,20.0,79.0,400,77,12,0.0,13166,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1546.2759597086124,0.0,0.0,77678.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,51785.333333333336,5,0,5,5_1 -2304,0.0,11.0,38.0,300,63,50,2.0,13167,0.0,732.0,100.0,0.0,3.0,7.0,2.0,4.0,2.5,1177.4526293004071,3656.0,1000.0,40854.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,16341.6,2,0,2_0,2_1 -2305,19.0,19.0,60.0,112,55,71,0.0,13168,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3478.93347412248,0.0,0.0,40612.0,1,2,10,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,27074.666666666668,4,0,4_0,4_0 -2306,0.0,0.0,66.0,111,78,71,0.0,13169,0.0,0.0,0.0,205.0,0.0,3.0,0.0,2.0,1.5,2870.9699312281514,0.0,0.0,19990.0,5,3,7,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13326.666666666666,2,0,2_0,2_0 -2307,13.0,13.0,62.0,112,75,20,0.0,13170,0.0,400.0,0.0,0.0,1.0,9.0,0.0,2.0,1.5,2393.028913076878,3172.0,0.0,91163.0,5,1,10,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,60775.333333333336,5,0,5,5_0 -2308,0.0,0.0,50.0,300,69,50,2.0,13171,0.0,200.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1009.3885869713279,3952.0,9500.0,40714.0,1,2,0,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,14540.714285714286,2,0,2_0,2_1 -2309,7.0,8.0,80.0,111,78,71,0.0,13172,0.0,0.0,0.0,399.0,0.0,4.0,0.0,2.0,1.5,3132.8476143532002,0.0,0.0,22720.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15146.666666666666,2,0,2_0,2_0 -2310,0.0,0.0,73.0,111,77,50,0.0,13174,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1496.4847817757643,0.0,0.0,16590.0,5,3,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16590.0,2,0,2_0,2_0 -2311,4.0,13.0,75.0,221,72,50,0.0,13176,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4547.1014172747755,2374.0,0.0,47474.0,5,1,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,47474.0,5,0,5,5_0 -2312,0.0,0.0,48.0,111,22,71,0.0,13177,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3666.521631549897,0.0,0.0,22410.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9743.478260869566,1,0,1_0,1_0 -2313,8.0,10.0,31.0,112,47,30,0.0,13178,0.0,300.0,100.0,0.0,2.0,5.0,1.0,3.0,1.8,1811.3883584742587,0.0,0.0,59068.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,32815.555555555555,5,0,5,5_1 -2314,1.0,1.0,61.0,111,43,42,0.0,13179,0.0,0.0,930.0,0.0,1.0,4.0,0.0,1.0,1.0,4564.044714066877,9049.0,0.0,82112.0,1,2,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,82112.0,5,0,5,5_0 -2315,17.0,17.0,56.0,111,52,70,0.0,1318,0.0,0.0,0.0,313.0,1.0,4.0,0.0,2.0,1.5,2216.575587833343,0.0,0.0,36146.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24097.333333333332,4,0,4_0,4_0 -2316,1.0,1.0,67.0,111,22,70,0.0,13183,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,3326.060658729269,2600.0,0.0,78340.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,52226.666666666664,5,0,5,5_0 -2317,2.0,19.0,27.0,111,52,71,0.0,13184,0.0,0.0,0.0,209.0,2.0,3.0,1.0,3.0,1.8,3242.5394086844585,792.0,0.0,19604.0,4,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,10891.111111111111,1,0,1_1,1_0 -2318,16.0,26.0,45.0,400,11,50,0.0,13185,0.0,70.0,0.0,0.0,1.0,7.0,3.0,5.0,2.6,2171.918640217359,0.0,0.0,22483.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,8647.307692307691,1,0,1_1,1_1 -2319,0.0,17.0,57.0,111,62,71,0.0,13187,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2718.2307010572313,1040.0,0.0,26185.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,13092.5,2,0,2_0,2_0 -2320,3.0,3.0,65.0,221,75,41,0.0,13188,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1545.9218608923052,0.0,0.0,42148.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28098.666666666668,4,0,4_0,4_0 -2321,2.0,2.0,29.0,111,46,41,0.0,13189,0.0,300.0,0.0,280.0,2.0,3.0,0.0,2.0,1.5,2190.5213464461885,1820.0,0.0,36495.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24330.0,4,0,4_0,4_0 -2322,6.0,6.0,46.0,111,33,41,0.0,13192,0.0,600.0,0.0,480.0,1.0,3.0,0.0,1.0,1.0,3093.2129377988226,3434.0,0.0,49160.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,49160.0,5,0,5,5_0 -2323,0.0,0.0,24.0,111,84,41,0.0,13193,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4528.802453231144,0.0,0.0,8440.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8440.0,1,0,1_0,1_0 -2324,0.0,0.0,31.0,111,84,10,0.0,13196,0.0,0.0,0.0,533.0,0.0,1.0,0.0,1.0,1.0,3420.87271865853,0.0,0.0,14190.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14190.0,2,0,2_0,2_0 -2325,10.0,11.0,33.0,111,22,50,0.0,132,0.0,0.0,0.0,460.0,1.0,2.0,0.0,1.0,1.0,2982.8000363902424,2215.0,0.0,6061.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,6061.0,1,0,1_0,1_0 -2326,0.0,0.0,81.0,111,78,71,0.0,1320,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3836.77698171836,0.0,0.0,10936.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10936.0,1,0,1_1,1_0 -2327,0.0,11.0,45.0,300,62,50,0.0,13200,0.0,70.0,0.0,0.0,1.0,2.0,2.0,4.0,2.3,1837.3981013074128,2600.0,0.0,21600.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,9391.304347826088,1,0,1_0,1_1 -2328,2.0,2.0,43.0,120,43,33,0.0,13204,0.0,100.0,210.0,0.0,2.0,9.0,2.0,4.0,2.3,2210.7456258857806,2340.0,0.0,65301.0,1,1,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28391.739130434784,4,0,4_0,4_0 -2329,0.0,0.0,31.0,111,38,20,0.0,13206,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4153.972253487674,0.0,0.0,26233.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26233.0,4,0,4_0,4_0 -2330,1.0,13.0,53.0,112,42,44,2.0,13207,0.0,1500.0,100.0,0.0,2.0,5.0,1.0,3.0,2.0,2136.9808261531257,9289.0,3000.0,35335.0,1,1,9,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,3.0,1.0,17667.5,3,0,3_0,3_1 -2331,5.0,5.0,63.0,112,77,50,0.0,13208,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1528.0032274741372,1560.0,0.0,51232.0,5,1,10,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,34154.666666666664,5,0,5,5_0 -2332,0.0,0.0,33.0,111,45,31,0.0,13209,0.0,0.0,0.0,238.0,1.0,1.0,0.0,1.0,1.0,3897.833583744314,1041.0,0.0,54543.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,54543.0,5,0,5,5_0 -2333,7.0,9.0,70.0,221,72,70,0.0,13210,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1965.6964334254023,2983.0,0.0,18591.0,5,2,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18591.0,3,0,3_0,3_0 -2334,7.0,13.0,30.0,112,46,20,0.0,13211,0.0,250.0,0.0,567.0,2.0,5.0,0.0,2.0,1.5,2687.6087014079294,3254.0,0.0,39331.0,1,3,6,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,26220.666666666668,4,0,4_0,4_1 -2335,5.0,6.0,67.0,120,75,33,0.0,13213,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2315.076086880799,3007.0,0.0,30390.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20260.0,3,0,3_0,3_0 -2336,9.0,9.0,41.0,111,54,50,0.0,13214,0.0,250.0,100.0,0.0,2.0,4.0,2.0,4.0,2.3,2741.7708008994455,0.0,0.0,44098.0,1,2,6,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,19173.04347826087,3,0,3_0,3_0 -2337,0.0,0.0,78.0,111,77,70,0.0,13215,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4127.523616978924,0.0,0.0,13470.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13470.0,2,0,2_0,2_0 -2338,1.0,4.0,71.0,111,75,60,2.0,13216,0.0,0.0,0.0,574.0,0.0,4.0,0.0,2.0,1.5,2635.6165044110544,0.0,12500.0,33134.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22089.333333333332,4,0,4_0,4_0 -2339,0.0,0.0,70.0,111,78,71,0.0,13217,0.0,0.0,0.0,332.0,0.0,2.0,0.0,1.0,1.0,3905.9970580706054,0.0,0.0,14918.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14918.0,2,0,2_1,2_0 -2340,0.0,0.0,70.0,111,77,71,0.0,13219,0.0,0.0,0.0,359.0,0.0,3.0,0.0,1.0,1.0,2968.7175759376564,0.0,0.0,19563.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19563.0,3,0,3_0,3_0 -2341,2.0,4.0,63.0,111,74,20,0.0,1322,0.0,99999.0,0.0,226.0,1.0,3.0,1.0,2.0,1.5,1666.9849011531246,0.0,0.0,24972.0,5,3,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,16648.0,2,0,2_1,2_0 -2342,8.0,8.0,50.0,112,37,50,0.0,13220,0.0,342.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,549.1068100670375,0.0,0.0,66452.0,1,2,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,44301.333333333336,5,0,5,5_1 -2343,5.0,8.0,66.0,112,72,70,0.0,13222,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2191.109724323415,0.0,0.0,39494.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26329.333333333332,4,0,4_0,4_1 -2344,1.0,11.0,50.0,111,48,50,2.0,13223,0.0,0.0,300.0,0.0,3.0,5.0,1.0,3.0,2.0,1609.6679086841484,1842.0,8000.0,52742.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,26371.0,4,0,4_0,4_0 -2345,9.0,10.0,34.0,111,45,31,0.0,13224,0.0,100.0,0.0,496.0,1.0,5.0,3.0,4.0,1.9,2566.2207220229984,0.0,0.0,32547.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,17130.0,3,0,3_1,3_0 -2346,0.0,0.0,91.0,300,71,50,0.0,13225,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1448.9253940738733,0.0,0.0,23402.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15601.333333333334,2,0,2_0,2_1 -2347,7.0,7.0,68.0,111,78,50,0.0,13227,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3065.9457219921587,0.0,0.0,32047.0,5,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21364.666666666668,3,0,3_0,3_0 -2348,1.0,1.0,64.0,120,75,20,0.0,13228,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1536.7371781998772,0.0,0.0,33603.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,33603.0,5,0,5,5_1 -2349,2.0,12.0,48.0,111,22,31,0.0,13229,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,3218.9679968961723,0.0,0.0,83934.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,41967.0,5,0,5,5_0 -2350,0.0,0.0,44.0,111,35,20,0.0,13231,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2142.5221144776,0.0,0.0,93208.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,40525.21739130435,5,0,5,5_0 -2351,3.0,8.0,38.0,112,43,10,0.0,13233,0.0,500.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2927.084601719448,1612.0,0.0,51241.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24400.47619047619,4,0,4_0,4_1 -2352,1.0,1.0,46.0,112,43,33,0.0,13234,0.0,200.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,3232.0590239278404,3185.0,0.0,48935.0,1,2,10,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,30584.375,5,0,5,5_0 -2353,3.0,3.0,55.0,111,38,12,0.0,13235,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1537.636684619636,0.0,0.0,178505.0,1,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,119003.33333333333,5,0,5,5_0 -2354,7.0,11.0,50.0,111,52,31,0.0,13238,0.0,0.0,70.0,264.0,1.0,4.0,1.0,2.0,1.5,3784.180182525598,2317.0,0.0,44930.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,29953.333333333332,5,0,5,5_0 -2355,0.0,0.0,83.0,111,74,60,0.0,13239,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2797.286304035016,0.0,0.0,17882.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17882.0,3,0,3_1,3_0 -2356,5.0,8.0,42.0,112,48,50,0.0,13240,0.0,320.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1312.594345313158,6011.0,0.0,47393.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26329.444444444445,4,0,4_0,4_1 -2357,0.0,0.0,64.0,111,63,71,0.0,13241,0.0,0.0,0.0,0.0,2.0,3.0,4.0,6.0,3.3,3107.940976753993,0.0,0.0,41830.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12675.757575757576,2,0,2_0,2_0 -2358,1.0,4.0,75.0,111,77,70,2.0,13243,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1468.550061240831,3088.0,9200.0,32965.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21976.666666666668,4,0,4_0,4_0 -2359,5.0,6.0,42.0,111,47,42,0.0,13244,0.0,320.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2769.8740203556044,0.0,0.0,73937.0,1,2,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,35208.09523809524,5,0,5,5_0 -2360,5.0,7.0,54.0,111,55,41,0.0,13245,0.0,0.0,0.0,305.0,1.0,3.0,0.0,1.0,1.0,2725.3474575167024,0.0,0.0,12836.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12836.0,2,0,2_1,2_0 -2361,4.0,4.0,77.0,111,75,70,0.0,13247,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2278.789227868292,822.0,0.0,44787.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,29858.0,5,0,5,5_0 -2362,3.0,18.0,36.0,111,55,50,0.0,13248,0.0,99999.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,977.6334719530331,781.0,0.0,28850.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10685.185185185184,1,0,1_1,1_0 -2363,19.0,19.0,79.0,111,74,60,0.0,13249,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3067.2702827413,2080.0,0.0,49390.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,49390.0,5,0,5,5_0 -2364,1.0,5.0,40.0,111,38,41,2.0,1325,0.0,150.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1948.1288241211157,0.0,5000.0,66399.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,27666.25,4,0,4_0,4_0 -2365,4.0,4.0,45.0,111,38,50,0.0,13250,0.0,0.0,320.0,0.0,2.0,6.0,2.0,4.0,2.1,1322.0388887834722,0.0,0.0,69240.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,32971.42857142857,5,0,5,5_0 -2366,0.0,12.0,38.0,111,56,50,0.0,13252,0.0,0.0,0.0,0.0,2.0,5.0,7.0,10.0,4.9,1780.7327064565604,0.0,0.0,36730.0,4,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,7495.918367346938,1,0,1_1,1_0 -2367,0.0,0.0,21.0,111,84,41,0.0,13253,0.0,0.0,0.0,126.0,0.0,1.0,0.0,1.0,1.0,3395.900949336477,0.0,0.0,4654.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4654.0,1,0,1_1,1_0 -2368,24.0,24.0,81.0,112,78,71,0.0,13257,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3451.2667409984433,0.0,0.0,13890.0,5,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13890.0,2,0,2_0,2_0 -2369,1.0,6.0,51.0,111,34,10,2.0,13258,0.0,150.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,1059.3181680587268,0.0,8900.0,128480.0,1,1,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,53533.333333333336,5,0,5,5_0 -2370,0.0,0.0,27.0,111,46,12,0.0,1326,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3943.095339440225,0.0,0.0,76218.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,50812.0,5,0,5,5_0 -2371,0.0,0.0,82.0,120,78,70,0.0,13261,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1838.6295585351177,0.0,0.0,29099.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19399.333333333332,3,0,3_0,3_1 -2372,4.0,12.0,46.0,112,65,50,0.0,13263,0.0,280.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1727.0357389185258,3172.0,0.0,47995.0,1,3,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22854.761904761905,4,0,4_0,4_1 -2373,9.0,10.0,55.0,111,53,71,0.0,13264,0.0,12.0,10.0,0.0,2.0,4.0,0.0,2.0,1.5,2403.764318344503,0.0,0.0,49118.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,32745.333333333332,5,0,5,5_0 -2374,2.0,2.0,66.0,112,75,70,0.0,13268,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2267.955541064398,2026.0,0.0,32830.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21886.666666666668,4,0,4_0,4_1 -2375,1.0,2.0,69.0,111,75,70,0.0,13269,0.0,350.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1548.2221334514559,3361.0,0.0,54162.0,5,1,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,27081.0,4,0,4_0,4_0 -2376,7.0,14.0,37.0,111,43,33,0.0,13270,0.0,0.0,0.0,520.0,1.0,3.0,2.0,3.0,1.6,3065.3459467414764,0.0,0.0,30118.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18823.75,3,0,3_0,3_0 -2377,4.0,10.0,51.0,112,31,10,0.0,13271,0.0,0.0,900.0,0.0,1.0,4.0,1.0,2.0,1.3,3809.4252526030677,4432.0,0.0,33928.0,1,3,9,0.0,2,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,26098.46153846154,4,0,4_0,4_1 -2378,8.0,8.0,45.0,112,62,71,0.0,13273,0.0,50.0,50.0,0.0,2.0,5.0,2.0,4.0,2.1,2084.030158338801,0.0,0.0,42205.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20097.619047619046,3,0,3_0,3_1 -2379,6.0,8.0,41.0,400,13,31,0.0,13275,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2236.8090438294457,3484.0,0.0,35610.0,1,2,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,12717.857142857143,2,0,2_0,2_1 -2380,0.0,20.0,52.0,221,56,71,0.0,13276,0.0,0.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,3522.1861772576763,1725.0,0.0,14500.0,1,1,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,9666.666666666666,1,0,1_0,1_0 -2381,0.0,0.0,55.0,111,68,50,0.0,13277,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2975.069086146329,0.0,0.0,12190.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12190.0,1,0,1_0,1_0 -2382,6.0,10.0,38.0,111,63,41,0.0,13278,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,3460.4513553117818,0.0,0.0,19679.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,15137.692307692307,2,0,2_1,2_0 -2383,6.0,8.0,69.0,300,78,50,0.0,13279,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4719.942680334968,0.0,0.0,24601.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16400.666666666668,2,0,2_0,2_0 -2384,6.0,6.0,83.0,112,74,20,0.0,1328,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1316.9048724640013,2080.0,0.0,91014.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,60676.0,5,0,5,5_1 -2385,0.0,21.0,66.0,400,38,42,0.0,13280,0.0,0.0,0.0,0.0,1.0,6.0,0.0,3.0,2.0,3837.322734475589,1040.0,0.0,42424.0,5,1,0,1.0,5,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21212.0,3,0,3_0,3_0 -2386,2.0,2.0,56.0,112,37,42,0.0,13281,0.0,200.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2202.500860657798,2653.0,0.0,70499.0,1,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,46999.333333333336,5,0,5,5_0 -2387,10.0,11.0,51.0,111,45,10,0.0,13282,0.0,0.0,0.0,1476.0,1.0,3.0,0.0,1.0,1.0,3120.403687487258,0.0,0.0,23520.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23520.0,4,0,4_0,4_0 -2388,0.0,0.0,21.0,111,53,71,0.0,13284,0.0,0.0,0.0,679.0,2.0,4.0,0.0,3.0,2.0,3849.6269054127456,0.0,0.0,31542.0,1,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15771.0,2,0,2_1,2_0 -2389,4.0,9.0,45.0,112,53,31,0.0,13285,0.0,0.0,150.0,0.0,2.0,4.0,2.0,4.0,2.5,1867.0224119851139,1820.0,0.0,28766.0,1,2,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,11506.4,1,0,1_0,1_0 -2390,0.0,0.0,44.0,111,37,12,0.0,13286,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3837.5977305647048,1282.0,0.0,31764.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31764.0,5,0,5,5_0 -2391,0.0,0.0,75.0,111,78,70,0.0,13288,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3897.147156267485,0.0,0.0,11291.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11291.0,1,0,1_1,1_0 -2392,2.0,2.0,37.0,112,21,42,0.0,13289,0.0,350.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,4469.2654236094695,0.0,0.0,62586.0,1,2,5,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26077.5,4,0,4_0,4_1 -2393,9.0,19.0,55.0,111,48,12,0.0,1329,0.0,0.0,50.0,300.0,1.0,2.0,0.0,2.0,1.5,1970.9181920916124,1300.0,0.0,42540.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,28360.0,4,0,4_0,4_0 -2394,2.0,8.0,32.0,111,34,10,0.0,13290,0.0,0.0,60.0,0.0,1.0,3.0,0.0,1.0,1.0,3446.4697741213513,0.0,0.0,24081.0,1,1,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,24081.0,4,0,4_0,4_0 -2395,0.0,0.0,61.0,111,52,71,0.0,13291,0.0,0.0,0.0,245.0,1.0,1.0,0.0,1.0,1.0,3879.810906915969,0.0,0.0,13610.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13610.0,2,0,2_0,2_0 -2396,10.0,10.0,64.0,120,75,43,0.0,13293,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,768.0760042447382,0.0,0.0,35170.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23446.666666666668,4,0,4_0,4_1 -2397,2.0,20.0,47.0,111,37,60,0.0,13294,0.0,80.0,0.0,0.0,1.0,6.0,3.0,5.0,2.8,1342.2064043503376,2080.0,0.0,113317.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,40470.357142857145,5,0,5,5_0 -2398,0.0,0.0,78.0,111,77,50,0.0,13295,0.0,0.0,0.0,540.0,0.0,3.0,0.0,1.0,1.0,2982.917092147426,0.0,0.0,22454.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22454.0,4,0,4_0,4_0 -2399,2.0,2.0,79.0,111,74,50,0.0,13296,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1865.1684035020487,2874.0,0.0,52223.0,5,4,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,34815.333333333336,5,0,5,5_0 -2400,2.0,8.0,65.0,120,78,70,0.0,13297,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1554.9087387826446,0.0,0.0,28181.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18787.333333333332,3,0,3_0,3_1 -2401,4.0,9.0,39.0,111,38,12,0.0,13298,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3573.1362432005576,0.0,0.0,89969.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,42842.380952380954,5,0,5,5_0 -2402,8.0,11.0,43.0,112,48,44,0.0,13299,0.0,450.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2188.3212052890035,2600.0,0.0,48119.0,1,1,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19247.6,3,0,3_0,3_1 -2403,0.0,0.0,82.0,300,71,71,0.0,133,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,3403.269566057394,0.0,0.0,14970.0,5,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9980.0,1,0,1_0,1_1 -2404,7.0,10.0,74.0,111,78,50,0.0,1330,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1220.1689588108577,0.0,0.0,28460.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18973.333333333332,3,0,3_0,3_0 -2405,1.0,3.0,34.0,211,46,31,2.0,13300,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2007.5444153117992,2808.0,14000.0,49797.0,1,2,2,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20748.75,3,0,3_0,3_0 -2406,0.0,13.0,68.0,111,77,60,0.0,13301,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2333.9250339988394,0.0,0.0,18017.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18017.0,3,0,3_0,3_0 -2407,0.0,20.0,63.0,120,78,71,0.0,13305,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1681.4729945130016,1820.0,0.0,25380.0,5,1,0,3.0,3,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,16920.0,3,0,3_0,3_0 -2408,0.0,0.0,60.0,111,55,71,0.0,13309,0.0,0.0,0.0,326.0,2.0,3.0,0.0,2.0,1.5,3122.491227760084,926.0,0.0,37294.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24862.666666666668,4,0,4_0,4_0 -2409,14.0,14.0,78.0,112,74,60,0.0,13312,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1105.1187221526561,0.0,0.0,33112.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22074.666666666668,4,0,4_0,4_0 -2410,27.0,27.0,69.0,300,71,50,0.0,13314,0.0,0.0,300.0,0.0,1.0,6.0,1.0,3.0,2.0,2373.5169052300653,4375.0,0.0,36654.0,5,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,18327.0,3,0,3_0,3_1 -2411,0.0,0.0,47.0,111,37,10,0.0,13315,0.0,0.0,0.0,166.0,1.0,1.0,0.0,1.0,1.0,2847.6598871928727,0.0,0.0,28890.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28890.0,4,0,4_0,4_0 -2412,4.0,14.0,36.0,111,85,71,0.0,13317,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2470.036534851194,4516.0,0.0,20586.0,6,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,8234.4,1,0,1_1,1_0 -2413,0.0,0.0,25.0,111,53,50,0.0,13318,0.0,0.0,0.0,351.0,2.0,2.0,0.0,2.0,1.5,5310.199999612226,0.0,0.0,31352.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,20901.333333333332,3,0,3_1,3_0 -2414,2.0,3.0,34.0,111,22,31,0.0,13319,0.0,750.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1931.156456392717,0.0,0.0,37648.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20915.555555555555,3,0,3_0,3_0 -2415,6.0,6.0,42.0,111,22,43,0.0,13320,0.0,600.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2809.452905327217,6501.0,0.0,58278.0,1,2,3,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,27751.42857142857,4,0,4_0,4_0 -2416,8.0,8.0,38.0,112,38,12,0.0,13321,0.0,600.0,180.0,0.0,2.0,5.0,1.0,3.0,1.8,1725.8025155412204,4941.0,0.0,54520.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,30288.888888888887,5,0,5,5_0 -2417,9.0,9.0,56.0,111,21,50,0.0,13322,0.0,70.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2434.2493444691067,2080.0,0.0,32400.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21600.0,3,0,3_0,3_0 -2418,6.0,9.0,52.0,111,43,33,0.0,13323,0.0,0.0,200.0,0.0,1.0,2.0,0.0,1.0,1.0,3245.7028402014985,0.0,0.0,29602.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,29602.0,5,0,5,5_0 -2419,5.0,6.0,36.0,111,34,20,0.0,13325,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3084.510305011327,0.0,0.0,39170.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,39170.0,5,0,5,5_0 -2420,4.0,6.0,47.0,120,52,50,0.0,13329,0.0,150.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,1845.9303607171616,0.0,0.0,54335.0,1,1,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,23623.913043478264,4,0,4_0,4_0 -2421,10.0,14.0,44.0,112,12,71,0.0,1333,0.0,200.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,7890.999616202699,3224.0,0.0,20970.0,1,1,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,8737.5,1,0,1_0,1_0 -2422,2.0,9.0,60.0,112,47,70,0.0,13330,0.0,0.0,110.0,0.0,2.0,3.0,0.0,2.0,1.5,3813.0139801098658,0.0,0.0,13810.0,1,1,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,9206.666666666666,1,0,1_0,1_0 -2423,10.0,11.0,56.0,111,65,71,0.0,13331,0.0,150.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3334.924894350106,0.0,0.0,23002.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15334.666666666666,2,0,2_0,2_0 -2424,1.0,9.0,55.0,112,21,42,2.0,13332,0.0,0.0,10.0,0.0,3.0,4.0,1.0,3.0,2.0,1941.81964995591,3608.0,3800.0,16639.0,1,3,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,8319.5,1,0,1_0,1_1 -2425,4.0,4.0,36.0,112,62,60,0.0,13333,0.0,70.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3598.6162578628496,2191.0,0.0,39300.0,1,1,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19650.0,3,0,3_0,3_1 -2426,7.0,7.0,65.0,111,23,50,0.0,13336,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2181.663485296314,2818.0,0.0,110610.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,73740.0,5,0,5,5_0 -2427,2.0,4.0,53.0,400,21,44,0.0,13337,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,5346.901604938989,0.0,0.0,119340.0,1,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,79560.0,5,0,5,5_1 -2428,0.0,0.0,78.0,111,78,71,0.0,13338,0.0,0.0,0.0,374.0,0.0,3.0,0.0,1.0,1.0,3176.470360342349,0.0,0.0,20850.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20850.0,3,0,3_0,3_0 -2429,10.0,10.0,46.0,112,38,12,0.0,1334,0.0,300.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1089.1036443347948,0.0,0.0,44469.0,1,2,9,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,18528.75,3,0,3_0,3_1 -2430,0.0,0.0,88.0,221,77,60,0.0,13340,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2457.0679548451367,3250.0,0.0,15540.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15540.0,2,0,2_0,2_0 -2431,3.0,3.0,64.0,112,72,50,0.0,13341,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2767.5235562759017,0.0,0.0,30497.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20331.333333333332,3,0,3_0,3_1 -2432,2.0,6.0,46.0,111,67,71,2.0,13342,0.0,100.0,0.0,0.0,2.0,4.0,4.0,7.0,3.8,2312.135496371471,1560.0,7000.0,33676.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,8862.105263157895,1,0,1_1,1_0 -2433,4.0,4.0,97.0,112,74,10,0.0,13343,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3289.4228994689856,3796.0,0.0,50761.0,5,4,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,50761.0,5,0,5,5_1 -2434,12.0,15.0,76.0,112,75,70,0.0,13344,0.0,0.0,0.0,504.0,0.0,4.0,0.0,1.0,1.0,3565.97751409889,0.0,0.0,21399.0,5,3,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21399.0,3,0,3_0,3_0 -2435,13.0,13.0,70.0,112,78,50,0.0,13346,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3626.15306906338,2351.0,0.0,23864.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,23864.0,4,0,4_1,4_1 -2436,10.0,10.0,49.0,300,13,50,0.0,13347,0.0,400.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1496.1983795766432,2997.0,0.0,34175.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22783.333333333332,4,0,4_0,4_1 -2437,2.0,6.0,48.0,111,48,71,0.0,13348,0.0,50.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2769.1740877165926,3120.0,0.0,58733.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,23493.2,4,0,4_1,4_0 -2438,0.0,0.0,54.0,111,52,71,0.0,13351,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2838.355844313318,0.0,0.0,23180.0,1,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23180.0,4,0,4_0,4_0 -2439,12.0,21.0,53.0,111,68,50,0.0,13353,0.0,0.0,0.0,385.0,1.0,3.0,0.0,1.0,1.0,2379.6830581470995,978.0,0.0,10981.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,10981.0,1,0,1_1,1_0 -2440,0.0,2.0,58.0,112,68,71,0.0,13354,0.0,1350.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3194.3425060183577,0.0,0.0,37540.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25026.666666666668,4,0,4_0,4_1 -2441,0.0,15.0,26.0,112,63,50,2.0,13355,0.0,300.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,2080.2197590703713,2600.0,500.0,19783.0,1,3,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,10990.555555555555,1,0,1_1,1_1 -2442,10.0,10.0,34.0,211,52,42,0.0,13356,0.0,450.0,0.0,441.0,1.0,2.0,0.0,1.0,1.0,2662.9783167878923,1305.0,0.0,17190.0,1,3,3,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17190.0,3,0,3_0,3_0 -2443,4.0,4.0,80.0,300,74,12,0.0,13357,0.0,0.0,0.0,0.0,0.0,7.0,0.0,4.0,2.1,1209.3391152607155,1405.0,0.0,40813.0,5,4,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19434.761904761905,3,0,3_0,3_1 -2444,0.0,0.0,48.0,112,33,41,1.0,13358,0.0,0.0,150.0,0.0,3.0,6.0,1.0,3.0,2.0,1650.7372869089431,1040.0,41000.0,93008.0,1,1,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,46504.0,5,0,5,5_1 -2445,10.0,10.0,63.0,400,77,70,0.0,1336,0.0,300.0,0.0,0.0,1.0,4.0,1.0,4.0,2.5,1569.7403605898808,2341.0,0.0,49870.0,5,1,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19948.0,3,0,3_0,3_1 -2446,3.0,7.0,35.0,112,47,31,0.0,13361,0.0,420.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1634.7944612815083,0.0,0.0,66407.0,1,2,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,31622.38095238095,5,0,5,5_0 -2447,7.0,7.0,42.0,112,43,33,0.0,13362,0.0,400.0,0.0,0.0,1.0,7.0,2.0,3.0,1.6,1359.9554205441718,0.0,0.0,49709.0,1,2,9,2.0,2,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,31068.125,5,0,5,5_0 -2448,15.0,25.0,48.0,112,62,50,0.0,13363,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,842.67241330128,1560.0,0.0,31980.0,1,3,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,12792.0,2,0,2_0,2_1 -2449,0.0,0.0,83.0,111,78,50,0.0,13364,0.0,0.0,0.0,336.0,0.0,2.0,0.0,1.0,1.0,2492.599290154646,0.0,0.0,20400.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20400.0,3,0,3_0,3_0 -2450,0.0,1.0,45.0,112,55,31,0.0,13365,0.0,350.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3237.681582082675,88.0,0.0,40504.0,1,2,6,0.0,1,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,40504.0,5,0,5,5_1 -2451,5.0,10.0,50.0,120,55,41,0.0,13369,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2784.726594362213,2600.0,0.0,15791.0,4,2,0,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,10527.333333333334,1,0,1_1,1_0 -2452,6.0,6.0,70.0,111,77,71,0.0,13370,0.0,0.0,0.0,685.0,0.0,2.0,0.0,1.0,1.0,2849.751317305054,885.0,0.0,20113.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20113.0,3,0,3_0,3_0 -2453,0.0,0.0,21.0,111,84,20,0.0,13371,0.0,0.0,0.0,474.0,0.0,1.0,0.0,1.0,1.0,3009.5179681664663,0.0,0.0,6100.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,6100.0,1,0,1_0,1_0 -2454,6.0,10.0,33.0,400,21,50,0.0,13372,0.0,0.0,300.0,0.0,2.0,4.0,0.0,2.0,1.5,2945.7433692588565,2081.0,0.0,51329.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,34219.333333333336,5,0,5,5_1 -2455,1.0,20.0,33.0,111,85,50,2.0,13374,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,1.9,1307.0926528818995,0.0,400.0,15850.0,6,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,8342.105263157895,1,0,1_1,1_0 -2456,2.0,7.0,53.0,112,34,41,2.0,13375,0.0,50.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,1201.582204661805,3136.0,11000.0,75850.0,1,1,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,37925.0,5,0,5,5_1 -2457,3.0,13.0,36.0,120,48,50,0.0,13376,0.0,460.0,0.0,240.0,1.0,3.0,0.0,1.0,1.0,5385.126007392517,3284.0,0.0,19566.0,1,3,0,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,19566.0,3,0,3_1,3_0 -2458,10.0,10.0,59.0,400,74,41,0.0,13378,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,5717.516959199444,1991.0,0.0,35649.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,23766.0,4,0,4_0,4_1 -2459,6.0,6.0,68.0,112,78,50,0.0,13380,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3627.4789581500286,1934.0,0.0,22258.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14838.666666666666,2,0,2_0,2_1 -2460,0.0,2.0,33.0,111,38,20,0.0,13381,0.0,210.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1198.0002789476086,0.0,0.0,123298.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,68498.88888888889,5,0,5,5_0 -2461,1.0,5.0,22.0,111,43,33,2.0,13382,0.0,140.0,0.0,32.0,1.0,1.0,0.0,2.0,1.5,3101.9398397200175,1560.0,6200.0,24184.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,16122.666666666666,2,0,2_1,2_0 -2462,2.0,21.0,38.0,112,62,50,0.0,13383,0.0,250.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1245.8938355646853,2808.0,0.0,38470.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,16029.166666666668,2,0,2_1,2_1 -2463,0.0,0.0,85.0,111,86,70,0.0,13385,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4239.924213141133,0.0,0.0,11310.0,6,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11310.0,1,0,1_0,1_0 -2464,1.0,1.0,52.0,111,22,50,1.0,13386,0.0,500.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,2448.4729341911284,1820.0,25000.0,63366.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,27550.434782608696,4,0,4_0,4_0 -2465,0.0,18.0,70.0,111,78,71,0.0,13387,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4172.120319891252,0.0,0.0,14923.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14923.0,2,0,2_0,2_0 -2466,1.0,13.0,27.0,112,23,12,2.0,13388,0.0,500.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,5710.300224665016,0.0,330.0,63054.0,1,2,8,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,42036.0,5,0,5,5_1 -2467,4.0,4.0,75.0,111,75,60,0.0,1339,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1360.8932804479246,5304.0,0.0,41483.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,27655.333333333332,4,0,4_0,4_0 -2468,1.0,4.0,35.0,111,37,10,2.0,13392,0.0,400.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1122.6989368370284,0.0,11000.0,60615.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25256.25,4,0,4_0,4_0 -2469,0.0,3.0,33.0,111,37,20,2.0,13395,0.0,0.0,0.0,1050.0,1.0,4.0,0.0,1.0,1.0,3457.3761683084813,0.0,22600.0,45685.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,45685.0,5,0,5,5_0 -2470,6.0,17.0,50.0,111,52,71,0.0,13397,0.0,99999.0,0.0,252.0,1.0,4.0,0.0,1.0,1.0,3140.7134299778186,0.0,0.0,18493.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18493.0,3,0,3_0,3_0 -2471,3.0,3.0,51.0,111,43,33,0.0,13399,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2678.6871249778224,2856.0,0.0,46644.0,1,2,9,7.0,2,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,31096.0,5,0,5,5_0 -2472,0.0,0.0,43.0,112,46,50,0.0,134,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3645.3997211268475,0.0,0.0,43398.0,1,3,10,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24110.0,4,0,4_0,4_0 -2473,7.0,7.0,41.0,112,21,42,0.0,1340,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2991.110547263188,0.0,0.0,13779.0,1,1,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10599.23076923077,1,0,1_0,1_1 -2474,6.0,14.0,60.0,111,75,71,0.0,13400,0.0,0.0,0.0,402.0,0.0,2.0,0.0,1.0,1.0,1913.4073351610655,1580.0,0.0,23354.0,5,3,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23354.0,4,0,4_0,4_0 -2475,13.0,20.0,48.0,111,54,60,0.0,13401,0.0,0.0,0.0,404.0,2.0,3.0,2.0,3.0,2.0,2390.2354380853553,0.0,0.0,22317.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11158.5,1,0,1_0,1_0 -2476,0.0,0.0,23.0,111,84,41,0.0,13402,0.0,0.0,0.0,214.0,0.0,1.0,0.0,1.0,1.0,3396.3167049853137,0.0,0.0,8552.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8552.0,1,0,1_1,1_0 -2477,0.0,0.0,77.0,211,77,50,0.0,13405,0.0,0.0,0.0,195.0,0.0,2.0,0.0,1.0,1.0,3030.7927912902924,0.0,0.0,15590.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15590.0,2,0,2_1,2_0 -2478,2.0,2.0,41.0,400,34,20,0.0,13407,0.0,200.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2027.3315752068781,10088.0,0.0,42638.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28425.333333333332,4,0,4_0,4_1 -2479,2.0,17.0,41.0,111,53,42,0.0,13408,0.0,0.0,99999.0,380.0,2.0,4.0,2.0,4.0,2.1,2734.641030086515,2600.0,0.0,41084.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,19563.809523809523,3,0,3_0,3_0 -2480,0.0,0.0,64.0,111,77,70,0.0,13410,0.0,0.0,0.0,342.0,0.0,2.0,0.0,1.0,1.0,3114.7231653814097,0.0,0.0,18670.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18670.0,3,0,3_0,3_0 -2481,6.0,6.0,43.0,112,67,60,0.0,13411,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3224.021679307632,0.0,0.0,29079.0,4,1,8,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19386.0,3,0,3_0,3_1 -2482,2.0,2.0,76.0,221,78,50,0.0,13413,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1618.6488170926218,0.0,0.0,27370.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18246.666666666668,3,0,3_0,3_0 -2483,1.0,12.0,19.0,111,84,43,2.0,13414,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3130.867901542752,0.0,4500.0,4620.0,3,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,4620.0,1,0,1_1,1_0 -2484,0.0,0.0,84.0,111,74,10,0.0,13416,0.0,0.0,0.0,500.0,0.0,1.0,0.0,1.0,1.0,3745.29397422221,0.0,0.0,15660.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15660.0,2,0,2_0,2_0 -2485,2.0,2.0,60.0,112,78,50,0.0,13419,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1893.6946558671345,0.0,0.0,23455.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15636.666666666666,2,0,2_0,2_1 -2486,0.0,8.0,28.0,221,34,20,0.0,13423,0.0,190.0,0.0,588.0,2.0,4.0,0.0,2.0,1.5,5478.20249728113,3692.0,0.0,56779.0,1,3,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,37852.666666666664,5,0,5,5_0 -2487,2.0,4.0,30.0,111,38,12,0.0,13424,0.0,0.0,0.0,730.0,2.0,3.0,0.0,2.0,1.5,2238.264203887796,0.0,0.0,44264.0,1,3,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,29509.333333333332,5,0,5,5_0 -2488,6.0,17.0,50.0,111,31,10,0.0,13426,0.0,110.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2291.382482418896,0.0,0.0,590979.0,1,2,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,281418.5714285714,5,0,5,5_0 -2489,3.0,15.0,70.0,111,75,43,0.0,13428,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2686.884064197945,1950.0,0.0,41645.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27763.333333333332,4,0,4_0,4_0 -2490,6.0,11.0,40.0,111,52,43,0.0,13429,0.0,99999.0,0.0,618.0,2.0,2.0,0.0,2.0,1.5,3667.2083789847406,2236.0,0.0,34636.0,1,3,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,23090.666666666668,4,0,4_0,4_0 -2491,0.0,0.0,57.0,111,68,50,0.0,1343,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2785.4720228265865,0.0,0.0,16650.0,1,3,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11100.0,1,0,1_1,1_0 -2492,0.0,0.0,87.0,111,72,70,0.0,13433,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3280.1564221472936,0.0,0.0,11900.0,6,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11900.0,1,0,1_0,1_0 -2493,0.0,0.0,63.0,111,77,70,0.0,13434,0.0,0.0,0.0,509.0,0.0,2.0,0.0,1.0,1.0,3133.715931827735,0.0,0.0,12420.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12420.0,1,0,1_1,1_0 -2494,2.0,11.0,27.0,112,63,71,0.0,13436,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,4540.554119458587,0.0,0.0,21530.0,1,3,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,11961.111111111111,1,0,1_1,1_1 -2495,2.0,7.0,29.0,111,65,50,0.0,13437,0.0,600.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,1553.69886419479,3276.0,0.0,25739.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,10724.583333333334,1,0,1_0,1_0 -2496,0.0,0.0,31.0,111,63,50,0.0,13441,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2651.892749392505,0.0,0.0,27996.0,4,3,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11665.0,1,0,1_1,1_0 -2497,3.0,3.0,27.0,112,38,12,0.0,13443,0.0,760.0,58.0,0.0,2.0,4.0,0.0,2.0,1.5,2365.454765012453,2748.0,0.0,50464.0,1,3,8,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,33642.666666666664,5,0,5,5_1 -2498,2.0,2.0,58.0,300,74,50,0.0,13444,0.0,300.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1937.1535767945352,0.0,0.0,35070.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23380.0,4,0,4_0,4_1 -2499,3.0,3.0,80.0,111,77,70,0.0,13446,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2016.4416916403457,5030.0,0.0,58020.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,38680.0,5,0,5,5_0 -2500,1.0,1.0,77.0,111,74,60,0.0,13450,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2890.2997826284936,1456.0,0.0,47609.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,31739.333333333332,5,0,5,5_0 -2501,9.0,9.0,73.0,111,78,70,0.0,13451,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1673.896489391105,3120.0,0.0,24382.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16254.666666666666,2,0,2_0,2_0 -2502,4.0,13.0,60.0,111,37,31,0.0,13453,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1418.7017753817777,1404.0,0.0,32190.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,21460.0,3,0,3_0,3_0 -2503,9.0,11.0,59.0,112,78,71,0.0,13454,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3666.337996937887,0.0,0.0,24150.0,5,3,5,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,16100.0,2,0,2_0,2_1 -2504,1.0,1.0,66.0,111,74,31,1.0,13455,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1656.3184347140011,0.0,30513.0,32786.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21857.333333333332,4,0,4_0,4_0 -2505,2.0,3.0,38.0,300,12,43,0.0,13456,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2839.80964304374,0.0,0.0,35101.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16714.761904761905,2,0,2_0,2_1 -2506,13.0,13.0,55.0,112,46,71,0.0,13458,0.0,300.0,0.0,410.0,1.0,3.0,0.0,2.0,1.5,3144.1286489130343,2080.0,0.0,48963.0,1,3,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,32642.0,5,0,5,5_1 -2507,6.0,6.0,55.0,111,33,20,0.0,13459,0.0,0.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,2530.3753927709663,0.0,0.0,81422.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,54281.333333333336,5,0,5,5_0 -2508,5.0,7.0,52.0,112,38,31,0.0,13461,0.0,0.0,320.0,0.0,1.0,4.0,0.0,1.0,1.0,3609.8828372971466,4954.0,0.0,55950.0,1,2,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,55950.0,5,0,5,5_1 -2509,0.0,0.0,36.0,111,81,71,0.0,13462,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2554.9957284613242,0.0,0.0,7864.0,4,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7864.0,1,0,1_1,1_0 -2510,0.0,3.0,75.0,400,78,71,0.0,13463,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3324.579128233579,0.0,0.0,9737.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9737.0,1,0,1_0,1_1 -2511,0.0,0.0,81.0,111,74,10,0.0,13466,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,3831.4171170899763,5248.0,0.0,52072.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34714.666666666664,5,0,5,5_0 -2512,2.0,7.0,29.0,111,62,71,0.0,13468,0.0,350.0,0.0,460.0,1.0,3.0,2.0,4.0,2.1,4691.58537374343,3900.0,0.0,31602.0,1,3,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,15048.571428571428,2,0,2_0,2_0 -2513,15.0,15.0,34.0,221,52,50,0.0,13469,0.0,0.0,90.0,261.0,1.0,2.0,0.0,1.0,1.0,4336.811295521305,0.0,0.0,12850.0,1,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,12850.0,2,0,2_1,2_0 -2514,1.0,2.0,24.0,111,37,31,2.0,13471,0.0,450.0,0.0,429.0,1.0,2.0,0.0,1.0,1.0,3329.448203006111,4420.0,7500.0,14935.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14935.0,2,0,2_1,2_0 -2515,1.0,11.0,36.0,120,67,50,2.0,13473,0.0,99999.0,50.0,0.0,2.0,6.0,1.0,2.0,1.5,958.7505380892336,1612.0,4000.0,83027.0,1,1,0,1.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,55351.333333333336,5,0,5,5_0 -2516,6.0,6.0,56.0,300,78,50,0.0,13474,0.0,80.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1384.668213239097,3795.0,0.0,37051.0,5,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,18525.5,3,0,3_0,3_1 -2517,1.0,13.0,39.0,112,62,71,0.0,13475,0.0,140.0,100.0,0.0,2.0,5.0,2.0,4.0,2.1,2349.010831524592,2340.0,0.0,45136.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21493.333333333332,3,0,3_0,3_1 -2518,0.0,0.0,32.0,111,85,41,0.0,13479,0.0,0.0,0.0,0.0,0.0,1.0,2.0,3.0,1.6,2973.4146493308126,0.0,0.0,15698.0,6,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9811.25,1,0,1_1,1_0 -2519,1.0,1.0,65.0,111,74,20,1.0,1348,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1746.1684711323173,0.0,22500.0,171531.0,5,1,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,114354.0,5,0,5,5_0 -2520,5.0,5.0,25.0,111,52,42,0.0,13480,0.0,200.0,0.0,0.0,3.0,3.0,3.0,5.0,3.0,6407.893746529654,0.0,0.0,61680.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20560.0,3,0,3_0,3_0 -2521,1.0,1.0,60.0,111,75,33,1.0,13484,0.0,20.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1343.4440892392827,2600.0,26000.0,54915.0,5,1,7,6.0,4,3.0,1.0,1.0,0,0,1,0,0,0,1.0,2.0,27457.5,4,0,4_0,4_0 -2522,14.0,16.0,54.0,111,22,41,0.0,13485,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,2449.89634418893,4264.0,0.0,62099.0,1,2,7,5.0,4,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,24839.6,4,0,4_0,4_0 -2523,4.0,4.0,62.0,111,65,70,0.0,13486,0.0,0.0,350.0,0.0,1.0,2.0,0.0,1.0,1.0,2629.5109002757854,1671.0,0.0,24432.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,24432.0,4,0,4_0,4_0 -2524,2.0,7.0,32.0,111,38,10,0.0,13487,0.0,0.0,99999.0,0.0,2.0,3.0,1.0,3.0,1.8,3030.6736759946966,3380.0,0.0,59283.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,32935.0,5,0,5,5_0 -2525,0.0,11.0,21.0,111,55,42,2.0,13488,0.0,0.0,240.0,236.0,1.0,1.0,0.0,1.0,1.0,3282.9901559267496,2496.0,2000.0,15560.0,4,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,15560.0,2,0,2_1,2_0 -2526,0.0,3.0,27.0,111,37,10,0.0,13491,0.0,0.0,0.0,560.0,2.0,3.0,0.0,2.0,1.5,2218.686569427986,1560.0,0.0,41392.0,1,3,7,6.0,3,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,27594.666666666668,4,0,4_0,4_0 -2527,11.0,25.0,55.0,111,72,71,0.0,13493,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,3563.588535296185,520.0,0.0,17300.0,7,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,8650.0,1,0,1_1,1_0 -2528,0.0,0.0,54.0,111,52,71,0.0,13494,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4188.099912718408,0.0,0.0,8820.0,1,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8820.0,1,0,1_0,1_0 -2529,16.0,18.0,46.0,111,43,33,0.0,13495,0.0,20.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4131.6036892476695,0.0,0.0,25711.0,1,2,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17140.666666666668,3,0,3_0,3_0 -2530,10.0,11.0,71.0,400,78,71,0.0,13496,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3213.377261933189,2340.0,0.0,66883.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,44588.666666666664,5,0,5,5_1 -2531,0.0,0.0,54.0,111,75,50,0.0,13497,0.0,0.0,0.0,480.0,0.0,2.0,0.0,1.0,1.0,1993.0784949447466,0.0,0.0,19439.0,7,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19439.0,3,0,3_0,3_0 -2532,1.0,7.0,60.0,112,75,70,2.0,13498,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1689.5357934218139,2600.0,6500.0,20000.0,5,2,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13333.333333333334,2,0,2_0,2_1 -2533,1.0,13.0,40.0,111,67,50,2.0,13499,0.0,200.0,0.0,69.0,1.0,2.0,2.0,3.0,1.6,2669.513524013531,266.0,2000.0,18702.0,4,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,11688.75,1,0,1_1,1_0 -2534,2.0,4.0,41.0,111,34,20,0.0,135,0.0,460.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,999.1074736379651,2600.0,0.0,58893.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24538.75,4,0,4_0,4_0 -2535,3.0,4.0,74.0,300,77,70,0.0,13500,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2448.897291186231,1977.0,0.0,24007.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16004.666666666666,2,0,2_0,2_1 -2536,5.0,16.0,45.0,300,52,60,0.0,13503,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1897.6285741597524,3017.0,0.0,35614.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17807.0,3,0,3_0,3_1 -2537,6.0,8.0,45.0,111,37,20,0.0,13506,0.0,350.0,120.0,0.0,2.0,6.0,1.0,3.0,2.0,1745.2982571703717,2712.0,0.0,93077.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,46538.5,5,0,5,5_0 -2538,9.0,13.0,53.0,111,62,50,0.0,13509,0.0,200.0,0.0,540.0,2.0,4.0,1.0,3.0,2.0,1762.4644073837965,2413.0,0.0,32021.0,4,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,16010.5,2,0,2_0,2_0 -2539,3.0,6.0,48.0,111,62,50,0.0,13510,0.0,440.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1234.9284554442409,1567.0,0.0,27501.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18334.0,3,0,3_0,3_0 -2540,2.0,2.0,41.0,111,37,10,0.0,13511,0.0,300.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3144.1005024107294,2080.0,0.0,27490.0,1,2,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,27490.0,4,0,4_0,4_0 -2541,8.0,8.0,45.0,111,52,50,0.0,13512,0.0,400.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1227.557637452568,0.0,0.0,35777.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23851.333333333332,4,0,4_0,4_0 -2542,4.0,4.0,45.0,300,52,50,0.0,13513,0.0,250.0,80.0,0.0,2.0,5.0,2.0,4.0,2.3,1224.5669043487414,3120.0,0.0,40591.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17648.26086956522,3,0,3_0,3_1 -2543,0.0,0.0,65.0,400,77,70,0.0,13514,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2486.715407387399,0.0,0.0,17131.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17131.0,3,0,3_0,3_1 -2544,25.0,25.0,77.0,400,78,50,0.0,13515,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3265.8522275526166,0.0,0.0,39670.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,26446.666666666668,4,0,4_0,4_1 -2545,1.0,13.0,32.0,111,21,41,2.0,13516,0.0,0.0,130.0,160.0,1.0,3.0,2.0,3.0,1.6,2245.003478831818,1564.0,1500.0,16288.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10180.0,1,0,1_1,1_0 -2546,3.0,8.0,75.0,120,72,70,0.0,13517,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2262.0551616239636,3100.0,0.0,12814.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,8542.666666666666,1,0,1_1,1_1 -2547,0.0,0.0,33.0,300,69,50,0.0,13518,0.0,0.0,0.0,0.0,1.0,4.0,4.0,6.0,2.7,879.9264008289123,0.0,0.0,27784.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,10290.37037037037,1,0,1_1,1_1 -2548,0.0,0.0,53.0,111,54,50,0.0,13519,0.0,500.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1334.3140537135098,2236.0,0.0,16864.0,1,1,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16864.0,2,0,2_0,2_0 -2549,14.0,19.0,54.0,111,54,41,0.0,1352,0.0,0.0,530.0,0.0,2.0,4.0,0.0,2.0,1.5,2510.0458702145843,4799.0,0.0,55669.0,1,1,6,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,2.0,0.0,37112.666666666664,5,0,5,5_0 -2550,5.0,7.0,60.0,300,12,71,0.0,13523,0.0,690.0,0.0,0.0,5.0,4.0,3.0,5.0,3.0,1957.8888334829212,5876.0,0.0,65740.0,1,1,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,21913.333333333332,4,0,4_0,4_1 -2551,2.0,2.0,62.0,111,77,50,0.0,13524,0.0,0.0,0.0,273.0,0.0,2.0,0.0,1.0,1.0,2382.499279240177,0.0,0.0,16244.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16244.0,2,0,2_0,2_0 -2552,0.0,0.0,61.0,111,52,41,0.0,13525,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3023.7494942730873,0.0,0.0,10919.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10919.0,1,0,1_1,1_0 -2553,2.0,2.0,28.0,111,21,41,0.0,13527,0.0,500.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1915.7435106707899,2392.0,0.0,18496.0,1,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,9248.0,1,0,1_0,1_0 -2554,1.0,7.0,33.0,111,37,41,2.0,13529,0.0,0.0,100.0,0.0,2.0,3.0,1.0,3.0,1.8,2114.2608493094726,0.0,8000.0,37112.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,20617.777777777777,3,0,3_0,3_0 -2555,10.0,10.0,80.0,400,71,70,0.0,1353,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2077.736000646446,0.0,0.0,22300.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22300.0,4,0,4_0,4_1 -2556,8.0,8.0,45.0,111,52,50,0.0,13530,0.0,0.0,0.0,627.0,1.0,3.0,1.0,2.0,1.5,2133.8930393984033,1560.0,0.0,32590.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21726.666666666668,4,0,4_0,4_0 -2557,0.0,0.0,73.0,212,72,70,0.0,13533,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1982.228745878296,0.0,0.0,8584.0,5,1,2,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8584.0,1,0,1_0,1_1 -2558,6.0,8.0,50.0,300,48,50,0.0,13534,0.0,200.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,3833.2589636982016,0.0,0.0,24070.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24070.0,4,0,4_0,4_1 -2559,1.0,11.0,37.0,112,48,50,0.0,13535,0.0,0.0,0.0,283.0,1.0,2.0,0.0,1.0,1.0,7957.797559082551,0.0,0.0,6393.0,7,3,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,6393.0,1,0,1_0,1_0 -2560,3.0,6.0,40.0,111,21,71,0.0,13536,0.0,20.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,4326.47440375028,0.0,0.0,-6057.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,-2884.285714285714,1,0,1_0,1_0 -2561,0.0,13.0,32.0,300,45,31,0.0,13537,0.0,400.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2152.4762831262187,0.0,0.0,41366.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27577.333333333332,4,0,4_0,4_1 -2562,1.0,1.0,47.0,112,46,60,1.0,13538,0.0,0.0,180.0,0.0,2.0,4.0,0.0,2.0,1.5,3652.75074803725,2080.0,8200.0,40611.0,1,2,5,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,27074.0,4,0,4_0,4_1 -2563,5.0,15.0,57.0,112,34,20,0.0,1354,0.0,0.0,390.0,0.0,2.0,7.0,3.0,5.0,3.0,959.8313769230454,6819.0,0.0,76996.0,1,1,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,25665.333333333332,4,0,4_0,4_1 -2564,10.0,21.0,57.0,111,68,70,0.0,13540,0.0,0.0,160.0,0.0,3.0,5.0,2.0,3.0,2.0,2432.982968482459,3643.0,0.0,54360.0,1,1,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,27180.0,4,0,4_0,4_0 -2565,0.0,0.0,73.0,111,77,71,0.0,13541,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3070.836055595472,0.0,0.0,16951.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16951.0,3,0,3_0,3_0 -2566,3.0,5.0,48.0,111,37,43,0.0,13543,0.0,500.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2599.909456831425,3111.0,0.0,62610.0,1,1,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,31305.0,5,0,5,5_0 -2567,8.0,10.0,39.0,112,21,50,0.0,13544,0.0,250.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2897.5877784871573,0.0,0.0,53790.0,1,1,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25614.285714285714,4,0,4_0,4_1 -2568,2.0,2.0,54.0,112,47,41,0.0,13545,0.0,200.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2777.97413163123,0.0,0.0,30760.0,1,1,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,20506.666666666668,3,0,3_0,3_0 -2569,3.0,9.0,34.0,111,63,50,0.0,13546,0.0,0.0,90.0,380.0,2.0,4.0,1.0,3.0,1.8,2593.1145391685855,10182.0,0.0,29987.0,4,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,16659.444444444445,2,0,2_0,2_0 -2570,4.0,4.0,73.0,112,75,50,0.0,13547,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2205.1480680441196,0.0,0.0,26179.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17452.666666666668,3,0,3_0,3_1 -2571,5.0,5.0,82.0,111,74,20,0.0,13549,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1552.5374432888352,2602.0,0.0,48636.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,32424.0,5,0,5,5_0 -2572,0.0,0.0,48.0,111,52,50,0.0,1355,0.0,0.0,0.0,281.0,1.0,2.0,0.0,1.0,1.0,2608.529417730856,0.0,0.0,16675.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16675.0,2,0,2_0,2_0 -2573,5.0,8.0,46.0,112,38,20,0.0,13550,0.0,0.0,785.0,0.0,2.0,8.0,2.0,4.0,2.3,950.2226256573734,5142.0,0.0,67680.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,29426.08695652174,5,0,5,5_1 -2574,6.0,10.0,61.0,221,78,70,0.0,13553,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1744.5816958199246,0.0,0.0,30076.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20050.666666666668,3,0,3_0,3_0 -2575,0.0,0.0,22.0,111,55,41,0.0,13554,0.0,0.0,0.0,150.0,1.0,1.0,0.0,1.0,1.0,4000.640583836787,0.0,0.0,39360.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,39360.0,5,0,5,5_0 -2576,2.0,3.0,33.0,300,63,50,0.0,13556,0.0,0.0,580.0,0.0,1.0,4.0,0.0,1.0,1.0,1334.4430062896663,2834.0,0.0,11827.0,1,4,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,11827.0,1,0,1_0,1_0 -2577,1.0,1.0,74.0,111,75,41,1.0,13557,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1582.197625491111,0.0,15418.0,40969.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27312.666666666668,4,0,4_0,4_0 -2578,7.0,18.0,40.0,221,62,42,0.0,13560,0.0,32.0,275.0,0.0,2.0,5.0,1.0,3.0,1.8,2211.376917819598,4447.0,0.0,45155.0,1,2,1,3.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,25086.11111111111,4,0,4_0,4_0 -2579,3.0,3.0,63.0,111,77,50,0.0,13561,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1600.0075868941524,2704.0,0.0,33131.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,22087.333333333332,4,0,4_0,4_0 -2580,6.0,6.0,81.0,111,75,41,0.0,13562,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1432.8824021515609,0.0,0.0,47456.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31637.333333333332,5,0,5,5_0 -2581,4.0,4.0,82.0,111,86,70,0.0,13563,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2026.7894955602947,1845.0,0.0,29034.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19356.0,3,0,3_0,3_0 -2582,8.0,10.0,49.0,111,37,12,0.0,13564,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,2562.2124344438444,0.0,0.0,489152.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,174697.14285714287,5,0,5,5_0 -2583,0.0,0.0,80.0,111,78,71,0.0,13565,0.0,0.0,0.0,282.0,0.0,4.0,0.0,2.0,1.5,6747.28057295312,0.0,0.0,24990.0,5,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16660.0,2,0,2_0,2_0 -2584,1.0,1.0,43.0,111,52,50,1.0,13567,0.0,100399.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1328.6940654767077,5806.0,18000.0,49087.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,19634.8,3,0,3_0,3_0 -2585,6.0,12.0,81.0,300,71,50,0.0,13568,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2584.876695325935,0.0,0.0,16736.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11157.333333333334,1,0,1_0,1_1 -2586,0.0,0.0,61.0,120,78,70,0.0,13569,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3051.325042327208,0.0,0.0,9144.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9144.0,1,0,1_1,1_1 -2587,9.0,13.0,69.0,111,74,31,0.0,13570,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,7659.298340325333,0.0,0.0,74389.0,5,4,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,74389.0,5,0,5,5_0 -2588,8.0,8.0,62.0,111,75,50,0.0,13573,0.0,0.0,50.0,0.0,1.0,3.0,0.0,2.0,1.5,947.5607076215881,0.0,0.0,45759.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,30506.0,5,0,5,5_0 -2589,2.0,23.0,47.0,111,48,50,0.0,13574,0.0,0.0,0.0,480.0,2.0,3.0,0.0,2.0,1.5,1965.9977637471832,2340.0,0.0,52941.0,1,3,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,35294.0,5,0,5,5_0 -2590,0.0,0.0,49.0,111,85,71,0.0,13575,0.0,0.0,0.0,100.0,4.0,2.0,4.0,5.0,3.0,3249.3640742351104,0.0,0.0,23220.0,6,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,7740.0,1,0,1_1,1_0 -2591,2.0,2.0,54.0,111,48,71,0.0,13578,0.0,130.0,0.0,510.0,2.0,4.0,0.0,2.0,1.5,3598.1492972666188,0.0,0.0,43512.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,29008.0,5,0,5,5_0 -2592,0.0,0.0,83.0,120,77,71,0.0,1358,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,8059.7678812551485,0.0,0.0,9651.0,6,4,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9651.0,1,0,1_0,1_0 -2593,0.0,0.0,70.0,120,78,71,0.0,13580,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5430.654491591048,0.0,0.0,13950.0,5,1,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13950.0,2,0,2_0,2_0 -2594,9.0,12.0,63.0,400,75,41,0.0,13581,0.0,0.0,0.0,0.0,0.0,6.0,1.0,3.0,2.0,1971.2877803164174,1176.0,0.0,41305.0,5,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,20652.5,3,0,3_0,3_1 -2595,3.0,4.0,53.0,111,34,10,0.0,13582,0.0,0.0,800.0,0.0,2.0,5.0,2.0,4.0,2.5,2071.7991157642523,4125.0,0.0,77834.0,1,1,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,31133.6,5,0,5,5_0 -2596,2.0,15.0,51.0,212,56,50,0.0,13583,0.0,100.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1018.6577008021993,4498.0,0.0,31196.0,1,3,3,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,20797.333333333332,3,0,3_0,3_1 -2597,1.0,1.0,61.0,111,75,70,1.0,13585,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3333.3681849321124,1561.0,11315.0,32595.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32595.0,5,0,5,5_0 -2598,3.0,9.0,31.0,112,47,31,0.0,13587,0.0,102.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1861.80469858426,0.0,0.0,36518.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15215.833333333334,2,0,2_0,2_1 -2599,6.0,6.0,38.0,221,21,50,0.0,13588,0.0,0.0,500.0,0.0,2.0,7.0,1.0,3.0,2.0,2607.977655916321,6968.0,0.0,49227.0,1,2,1,3.0,4,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,24613.5,4,0,4_0,4_0 -2600,0.0,0.0,74.0,111,75,70,0.0,1359,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3953.658970084323,0.0,0.0,35795.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35795.0,5,0,5,5_0 -2601,10.0,17.0,36.0,112,22,20,0.0,13590,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2178.7801447115603,5019.0,0.0,98291.0,1,2,10,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,40954.583333333336,5,0,5,5_0 -2602,0.0,3.0,54.0,111,55,60,2.0,13591,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3412.58788243566,6188.0,8800.0,70352.0,1,4,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,46901.333333333336,5,0,5,5_0 -2603,7.0,7.0,65.0,112,75,50,0.0,13592,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2071.544392338251,2003.0,0.0,41119.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,27412.666666666668,4,0,4_0,4_1 -2604,11.0,13.0,58.0,112,54,41,0.0,13594,0.0,0.0,100.0,0.0,1.0,6.0,0.0,2.0,1.5,2088.9063349645876,0.0,0.0,41809.0,1,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,27872.666666666668,4,0,4_0,4_1 -2605,0.0,0.0,30.0,111,46,10,0.0,13595,0.0,0.0,0.0,1206.0,2.0,3.0,1.0,3.0,1.8,3249.6066928562777,781.0,0.0,67308.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,37393.333333333336,5,0,5,5_0 -2606,6.0,6.0,80.0,111,75,41,0.0,13598,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1980.7968383159625,0.0,0.0,55141.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,36760.666666666664,5,0,5,5_0 -2607,3.0,6.0,32.0,111,68,50,0.0,13599,0.0,0.0,350.0,240.0,1.0,2.0,0.0,1.0,1.0,2600.840026763505,1560.0,0.0,12618.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,12618.0,2,0,2_0,2_0 -2608,1.0,2.0,54.0,300,46,50,2.0,136,0.0,120.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1265.839964693113,0.0,18900.0,88681.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,59120.666666666664,5,0,5,5_1 -2609,2.0,2.0,51.0,111,38,10,0.0,1360,0.0,0.0,50.0,0.0,2.0,6.0,3.0,5.0,2.8,1441.5701987929017,0.0,0.0,83122.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,29686.428571428572,5,0,5,5_0 -2610,7.0,21.0,60.0,112,74,41,0.0,13600,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2268.121238873093,3380.0,0.0,56063.0,5,1,9,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,37375.333333333336,5,0,5,5_1 -2611,2.0,8.0,54.0,111,75,50,0.0,13601,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2485.025373009403,2600.0,0.0,21975.0,5,2,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21975.0,4,0,4_0,4_0 -2612,8.0,10.0,55.0,112,75,50,0.0,13602,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3107.188679901919,2062.0,0.0,15033.0,4,2,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15033.0,2,0,2_0,2_1 -2613,2.0,3.0,53.0,111,53,71,0.0,13603,0.0,250.0,0.0,298.0,2.0,5.0,1.0,3.0,2.0,3601.404084052841,2964.0,0.0,22422.0,1,3,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,11211.0,1,0,1_0,1_0 -2614,0.0,0.0,59.0,400,78,70,0.0,13604,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2550.5236890653755,0.0,0.0,16180.0,7,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16180.0,2,0,2_0,2_0 -2615,0.0,0.0,59.0,111,74,44,1.0,13605,0.0,0.0,0.0,850.0,0.0,4.0,0.0,2.0,1.5,3476.59760062797,2872.0,14799.0,46885.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,31256.666666666668,5,0,5,5_0 -2616,13.0,17.0,55.0,111,77,60,0.0,13606,0.0,0.0,710.0,0.0,1.0,5.0,0.0,2.0,1.5,3571.7857816304863,6531.0,0.0,58213.0,5,1,8,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,38808.666666666664,5,0,5,5_0 -2617,2.0,2.0,55.0,111,43,33,0.0,13608,0.0,400.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2628.065514678732,0.0,0.0,41982.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,27988.0,4,0,4_0,4_0 -2618,4.0,4.0,47.0,111,47,31,0.0,1361,0.0,400.0,300.0,0.0,2.0,6.0,2.0,4.0,2.5,3424.9560711608146,0.0,0.0,75579.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,30231.6,5,0,5,5_0 -2619,1.0,10.0,41.0,112,67,50,2.0,13610,0.0,450.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2076.0281664853087,1560.0,4000.0,1230.0,4,3,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,1230.0,1,0,1_0,1_0 -2620,0.0,5.0,42.0,112,22,60,2.0,13612,0.0,99999.0,0.0,0.0,1.0,7.0,2.0,4.0,2.1,7691.75399301741,0.0,6000.0,99128.0,1,2,9,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,47203.80952380952,5,0,5,5_0 -2621,0.0,13.0,18.0,111,84,41,0.0,13613,0.0,0.0,130.0,150.0,0.0,1.0,0.0,1.0,1.0,3627.503857645704,0.0,0.0,2056.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,2056.0,1,0,1_1,1_0 -2622,3.0,15.0,46.0,111,55,71,0.0,13614,0.0,0.0,40.0,0.0,1.0,4.0,1.0,3.0,1.8,3325.960625130243,0.0,0.0,14272.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,7928.888888888889,1,0,1_1,1_0 -2623,4.0,4.0,55.0,111,31,10,0.0,13615,0.0,0.0,140.0,0.0,1.0,4.0,0.0,2.0,1.5,3511.8307746466185,0.0,0.0,51788.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,34525.333333333336,5,0,5,5_0 -2624,2.0,4.0,63.0,221,75,50,0.0,13616,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2953.420355267917,0.0,0.0,30467.0,5,2,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20311.333333333332,3,0,3_0,3_0 -2625,3.0,14.0,63.0,111,78,71,0.0,13617,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2603.5473580469697,2600.0,0.0,14482.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,14482.0,2,0,2_1,2_0 -2626,5.0,10.0,25.0,112,22,60,0.0,13618,0.0,400.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3163.1192738393165,1040.0,0.0,15081.0,1,4,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15081.0,2,0,2_0,2_0 -2627,5.0,5.0,44.0,111,33,10,0.0,13619,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,3375.036513694094,0.0,0.0,41944.0,1,4,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16132.307692307691,2,0,2_0,2_0 -2628,10.0,10.0,59.0,111,37,20,0.0,1362,0.0,0.0,120.0,825.0,1.0,5.0,0.0,1.0,1.0,1585.0110136146216,0.0,0.0,65795.0,1,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,65795.0,5,0,5,5_0 -2629,2.0,4.0,45.0,111,22,42,0.0,13621,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3102.046975081843,0.0,0.0,25431.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,12110.0,1,0,1_0,1_0 -2630,8.0,8.0,78.0,111,72,60,0.0,13623,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3467.2311006678024,0.0,0.0,40619.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,27079.333333333332,4,0,4_0,4_0 -2631,7.0,7.0,47.0,112,31,10,0.0,13624,0.0,1600.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1889.3361166877037,4054.0,0.0,80392.0,1,1,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,80392.0,5,0,5,5_1 -2632,10.0,10.0,55.0,111,46,31,0.0,13625,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1593.9353065341347,0.0,0.0,33779.0,1,1,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14686.521739130436,2,0,2_0,2_0 -2633,14.0,14.0,74.0,112,77,70,0.0,13626,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1256.9563394399574,1040.0,0.0,15933.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15933.0,2,0,2_0,2_0 -2634,5.0,14.0,49.0,300,64,71,0.0,13627,0.0,200.0,240.0,0.0,2.0,4.0,1.0,3.0,2.0,2086.0322366006653,3796.0,0.0,32376.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16188.0,2,0,2_0,2_1 -2635,4.0,4.0,84.0,111,86,60,0.0,13629,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2883.1690131701075,3883.0,0.0,23904.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23904.0,4,0,4_0,4_0 -2636,0.0,0.0,65.0,111,75,50,0.0,13630,0.0,0.0,0.0,216.0,0.0,2.0,0.0,1.0,1.0,1990.2975059052935,0.0,0.0,16745.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16745.0,2,0,2_0,2_0 -2637,1.0,11.0,48.0,111,52,70,2.0,13631,0.0,0.0,500.0,0.0,4.0,7.0,4.0,5.0,3.0,1418.072403844022,3838.0,900.0,68431.0,1,4,8,7.0,2,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,22810.333333333332,4,0,4_0,4_0 -2638,1.0,9.0,53.0,400,63,50,0.0,13632,0.0,20.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1546.0340303921555,0.0,0.0,34820.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17410.0,3,0,3_0,3_1 -2639,0.0,0.0,26.0,111,55,31,0.0,13633,0.0,0.0,0.0,490.0,1.0,1.0,0.0,1.0,1.0,3758.641340468502,0.0,0.0,20787.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20787.0,3,0,3_0,3_0 -2640,2.0,2.0,43.0,111,63,43,0.0,13634,0.0,40.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2834.2262084181607,1508.0,0.0,46310.0,1,1,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18524.0,3,0,3_0,3_0 -2641,13.0,13.0,63.0,111,21,50,0.0,13635,0.0,99999.0,99999.0,0.0,2.0,2.0,0.0,2.0,1.5,3192.4657029935474,0.0,0.0,75550.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,50366.666666666664,5,0,5,5_0 -2642,5.0,5.0,62.0,111,74,20,0.0,13637,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1918.1571466778178,0.0,0.0,29352.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29352.0,5,0,5,5_0 -2643,1.0,6.0,34.0,120,52,31,2.0,13638,0.0,100449.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2196.370784083494,1040.0,14000.0,25173.0,1,1,0,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,10488.75,1,0,1_0,1_0 -2644,9.0,11.0,56.0,111,43,20,0.0,13639,0.0,99999.0,100119.0,0.0,2.0,9.0,3.0,4.0,2.5,992.7182436292314,2081.0,0.0,100720.0,1,1,9,7.0,2,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,40288.0,5,0,5,5_0 -2645,0.0,0.0,73.0,111,77,71,0.0,13642,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3082.748617126272,0.0,0.0,10580.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10580.0,1,0,1_0,1_0 -2646,6.0,13.0,53.0,111,64,50,0.0,13645,0.0,0.0,350.0,0.0,2.0,4.0,1.0,3.0,2.0,2842.098983276836,3323.0,0.0,37090.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18545.0,3,0,3_0,3_0 -2647,1.0,12.0,28.0,211,62,60,2.0,13646,0.0,160.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2182.694778637704,2080.0,1890.0,23570.0,1,3,4,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,11223.809523809523,1,0,1_0,1_0 -2648,3.0,22.0,64.0,221,78,71,0.0,13649,0.0,600.0,0.0,106.0,2.0,4.0,2.0,4.0,2.5,3099.846608224245,634.0,0.0,29199.0,5,3,1,3.0,4,3.0,0.0,0.0,0,1,0,0,0,1,0.0,3.0,11679.6,1,0,1_1,1_0 -2649,1.0,15.0,51.0,112,52,70,2.0,1365,0.0,0.0,350.0,536.0,2.0,4.0,2.0,3.0,2.0,1799.7440030129137,2913.0,1800.0,22922.0,1,3,9,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,11461.0,1,0,1_0,1_0 -2650,18.0,18.0,78.0,111,78,50,0.0,13650,0.0,0.0,0.0,355.0,0.0,5.0,0.0,2.0,1.5,1959.4826764640427,0.0,0.0,20070.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13380.0,2,0,2_0,2_0 -2651,5.0,5.0,56.0,111,43,33,0.0,13651,0.0,0.0,200.0,388.0,1.0,3.0,0.0,1.0,1.0,2164.3620301115234,2600.0,0.0,29858.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,29858.0,5,0,5,5_0 -2652,3.0,22.0,40.0,111,62,50,0.0,13653,0.0,0.0,20.0,0.0,1.0,4.0,3.0,5.0,2.4,1507.7733307205203,3379.0,0.0,22910.0,1,2,6,5.0,4,2.0,1.0,1.0,0,0,1,0,0,1,1.0,1.0,9545.833333333334,1,0,1_1,1_0 -2653,0.0,0.0,47.0,112,37,10,1.0,13654,0.0,199998.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3199.521124677405,0.0,20000.0,95357.0,1,1,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,45408.09523809524,5,0,5,5_0 -2654,12.0,21.0,84.0,112,86,70,0.0,13656,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1912.9989736500013,1166.0,0.0,13503.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13503.0,2,0,2_0,2_1 -2655,0.0,0.0,33.0,111,65,50,0.0,13657,0.0,0.0,0.0,0.0,1.0,4.0,4.0,6.0,2.7,1977.833658859956,0.0,0.0,34070.0,1,3,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12618.518518518518,2,0,2_1,2_0 -2656,7.0,16.0,40.0,111,53,71,0.0,13658,0.0,0.0,0.0,85.0,1.0,3.0,1.0,3.0,1.8,3651.5299832381756,1560.0,0.0,17748.0,4,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9860.0,1,0,1_1,1_0 -2657,3.0,6.0,33.0,112,48,31,0.0,13659,0.0,500.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2224.4798109565627,3983.0,0.0,42160.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,23422.222222222223,4,0,4_0,4_0 -2658,7.0,13.0,50.0,112,68,71,0.0,1366,0.0,370.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2793.1934658410682,6034.0,0.0,34980.0,1,2,7,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,23320.0,4,0,4_0,4_0 -2659,9.0,9.0,69.0,112,71,70,0.0,13660,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1932.586090094847,2083.0,0.0,18475.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12316.666666666666,1,0,1_0,1_1 -2660,0.0,0.0,45.0,111,63,50,0.0,13662,0.0,0.0,0.0,400.0,1.0,1.0,0.0,1.0,1.0,3045.60274653985,0.0,0.0,7017.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7017.0,1,0,1_0,1_0 -2661,11.0,11.0,63.0,111,77,60,0.0,13663,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1865.4442083026302,0.0,0.0,19963.0,5,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19963.0,3,0,3_0,3_0 -2662,7.0,8.0,53.0,112,43,33,0.0,13665,0.0,0.0,210.0,0.0,1.0,6.0,0.0,1.0,1.0,2596.00713670857,2600.0,0.0,31979.0,1,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,31979.0,5,0,5,5_1 -2663,10.0,12.0,59.0,112,63,70,0.0,13667,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2542.130555760747,0.0,0.0,29700.0,1,1,6,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,19800.0,3,0,3_0,3_1 -2664,9.0,22.0,57.0,112,65,50,0.0,13668,0.0,150.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1928.854130404608,0.0,0.0,24452.0,1,2,7,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,24452.0,4,0,4_0,4_0 -2665,0.0,18.0,25.0,400,63,50,0.0,1367,0.0,500.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2309.2565340092833,0.0,0.0,43211.0,1,4,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20576.666666666664,3,0,3_0,3_1 -2666,0.0,0.0,79.0,112,71,70,0.0,13670,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2433.9431851482036,0.0,0.0,10040.0,5,4,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10040.0,1,0,1_0,1_1 -2667,1.0,10.0,32.0,111,47,42,0.0,13671,0.0,400.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3059.3057675340974,3900.0,0.0,45789.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21804.285714285714,4,0,4_0,4_0 -2668,0.0,0.0,72.0,111,86,71,0.0,13672,0.0,0.0,0.0,369.0,0.0,3.0,0.0,1.0,1.0,6065.8707076853,0.0,0.0,18500.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,18500.0,3,0,3_1,3_0 -2669,4.0,4.0,39.0,112,34,31,0.0,13674,0.0,300.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,2593.745385046788,3120.0,0.0,49798.0,1,2,10,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27665.555555555555,4,0,4_0,4_0 -2670,0.0,5.0,51.0,111,54,10,0.0,13676,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,1166.0094730009791,0.0,0.0,8956.0,1,1,8,7.0,2,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,4478.0,1,0,1_0,1_0 -2671,4.0,4.0,26.0,300,63,50,0.0,13677,0.0,100.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1858.4690907628312,0.0,0.0,34271.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22847.333333333332,4,0,4_0,4_1 -2672,3.0,11.0,45.0,111,62,50,0.0,13678,0.0,800.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,858.8116295013313,5929.0,0.0,84626.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,36793.913043478264,5,0,5,5_0 -2673,3.0,4.0,44.0,112,47,20,0.0,1368,0.0,100059.0,0.0,0.0,2.0,9.0,2.0,4.0,2.1,1453.5592552622118,0.0,0.0,44855.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21359.52380952381,3,0,3_0,3_0 -2674,17.0,21.0,48.0,221,65,60,0.0,13683,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2070.8884799677403,0.0,0.0,17151.0,1,1,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11434.0,1,0,1_0,1_0 -2675,3.0,3.0,78.0,111,77,70,0.0,13685,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,8422.017197274092,0.0,0.0,30765.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30765.0,5,0,5,5_0 -2676,10.0,10.0,78.0,111,72,70,0.0,13686,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3076.27977741671,2184.0,0.0,35460.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,35460.0,5,0,5,5_0 -2677,1.0,12.0,67.0,400,71,70,2.0,13687,0.0,0.0,0.0,72.0,0.0,2.0,0.0,1.0,1.0,2508.7946168306235,1300.0,3450.0,12836.0,5,3,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,12836.0,2,0,2_1,2_1 -2678,0.0,0.0,46.0,111,56,71,0.0,13689,0.0,0.0,0.0,0.0,1.0,4.0,5.0,7.0,3.4,2288.3448006220246,0.0,0.0,34017.0,4,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10005.0,1,0,1_1,1_0 -2679,5.0,22.0,54.0,112,56,50,0.0,1369,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2030.3922539092098,0.0,0.0,10784.0,4,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,10784.0,1,0,1_1,1_1 -2680,2.0,2.0,45.0,112,54,71,0.0,13691,0.0,350.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,2384.5325408513113,2028.0,0.0,22306.0,1,2,10,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12392.222222222223,1,0,1_1,1_1 -2681,17.0,17.0,86.0,111,77,70,0.0,13692,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3233.771205500069,0.0,0.0,31761.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,31761.0,5,0,5,5_0 -2682,0.0,0.0,25.0,111,63,50,0.0,13695,0.0,0.0,0.0,100.0,1.0,3.0,0.0,1.0,1.0,3437.6026964393163,0.0,0.0,16761.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16761.0,2,0,2_1,2_0 -2683,1.0,1.0,60.0,212,72,50,1.0,13696,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,3.0,1721.471141446312,3536.0,17468.0,43858.0,5,2,2,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14619.333333333334,2,0,2_0,2_1 -2684,0.0,2.0,33.0,111,38,12,0.0,13697,0.0,180.0,140.0,0.0,2.0,4.0,1.0,3.0,1.8,2877.8578914956593,0.0,0.0,63987.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,35548.333333333336,5,0,5,5_0 -2685,0.0,16.0,30.0,111,84,20,0.0,137,0.0,0.0,0.0,172.0,0.0,2.0,0.0,1.0,1.0,3117.082658360117,785.0,0.0,23558.0,3,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,23558.0,4,0,4_1,4_0 -2686,4.0,9.0,24.0,111,62,50,0.0,13701,0.0,0.0,0.0,433.0,2.0,3.0,0.0,2.0,1.5,3343.300346700141,0.0,0.0,20826.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13884.0,2,0,2_0,2_0 -2687,6.0,19.0,55.0,112,45,20,0.0,13703,0.0,0.0,99999.0,0.0,2.0,6.0,0.0,2.0,1.5,1292.567533547429,5200.0,0.0,27400.0,1,2,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18266.666666666668,3,0,3_0,3_1 -2688,5.0,9.0,51.0,112,13,50,0.0,13705,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1400.1282752529994,0.0,0.0,22048.0,1,2,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12248.888888888889,1,0,1_1,1_1 -2689,0.0,6.0,75.0,111,86,70,0.0,13706,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3133.784186696783,0.0,0.0,11829.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,11829.0,1,0,1_1,1_0 -2690,4.0,6.0,58.0,112,67,70,0.0,13708,0.0,0.0,150.0,0.0,1.0,4.0,0.0,1.0,1.0,2065.8108262107885,1300.0,0.0,18210.0,1,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18210.0,3,0,3_0,3_1 -2691,7.0,7.0,62.0,112,78,70,0.0,13710,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2916.3965291675554,0.0,0.0,23730.0,5,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15820.0,2,0,2_0,2_1 -2692,7.0,9.0,74.0,120,78,71,0.0,13711,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,3045.526099329274,0.0,0.0,30810.0,5,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15405.0,2,0,2_0,2_1 -2693,4.0,17.0,40.0,111,62,41,0.0,13712,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3636.768793233514,0.0,0.0,17360.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17360.0,3,0,3_0,3_0 -2694,0.0,0.0,51.0,112,63,50,1.0,13714,0.0,450.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2075.5091114152365,0.0,20000.0,42366.0,1,2,5,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,16946.4,3,0,3_0,3_1 -2695,1.0,2.0,47.0,112,63,50,0.0,13715,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1922.2935278320956,0.0,0.0,37722.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17962.85714285714,3,0,3_0,3_1 -2696,1.0,1.0,72.0,221,78,71,2.0,13716,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2514.6158191202644,2596.0,24500.0,26360.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,17573.333333333332,3,0,3_0,3_0 -2697,3.0,4.0,54.0,111,23,10,0.0,13717,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2302.112105473469,0.0,0.0,70810.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,28324.0,4,0,4_0,4_0 -2698,2.0,2.0,50.0,112,47,31,0.0,13719,0.0,0.0,570.0,0.0,2.0,5.0,0.0,2.0,1.5,3873.500656726697,0.0,0.0,54466.0,1,1,7,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,36310.666666666664,5,0,5,5_1 -2699,1.0,1.0,44.0,120,46,31,0.0,13721,0.0,280.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,4974.652457804696,3588.0,0.0,63573.0,1,2,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,42382.0,5,0,5,5_1 -2700,0.0,0.0,37.0,111,85,71,0.0,13722,0.0,0.0,0.0,0.0,0.0,3.0,3.0,5.0,2.4,2725.237762543673,0.0,0.0,26076.0,7,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10865.0,1,0,1_1,1_0 -2701,1.0,1.0,53.0,221,52,50,1.0,13723,0.0,280.0,0.0,0.0,2.0,9.0,0.0,2.0,1.5,2699.3370816542583,781.0,21856.0,40568.0,1,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27045.333333333332,4,0,4_0,4_0 -2702,0.0,0.0,31.0,120,63,71,0.0,13724,0.0,0.0,0.0,354.0,2.0,3.0,0.0,2.0,1.5,6349.622005657197,0.0,0.0,27954.0,1,3,0,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18636.0,3,0,3_0,3_0 -2703,0.0,15.0,80.0,111,77,41,0.0,13725,0.0,0.0,99999.0,0.0,1.0,5.0,1.0,2.0,1.5,2966.801757430386,0.0,0.0,28487.0,5,1,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18991.333333333332,3,0,3_0,3_0 -2704,2.0,13.0,62.0,300,56,50,0.0,13726,0.0,0.0,2000.0,0.0,2.0,4.0,0.0,2.0,1.5,1430.9424662428162,9466.0,0.0,30932.0,1,4,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20621.333333333332,3,0,3_0,3_1 -2705,0.0,1.0,27.0,111,53,31,0.0,13727,0.0,680.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3255.0875546662423,0.0,0.0,53528.0,1,4,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,25489.52380952381,4,0,4_0,4_0 -2706,2.0,2.0,40.0,112,56,71,0.0,13729,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2238.716840755361,0.0,0.0,17187.0,1,2,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17187.0,3,0,3_0,3_1 -2707,4.0,18.0,45.0,111,54,42,0.0,1373,0.0,0.0,100.0,0.0,2.0,5.0,1.0,3.0,1.8,1584.7403719446304,0.0,0.0,37921.0,1,3,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,21067.222222222223,3,0,3_0,3_0 -2708,2.0,2.0,52.0,111,54,43,0.0,13730,0.0,275.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,4261.316501782239,1560.0,0.0,60847.0,1,1,4,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,40564.666666666664,5,0,5,5_0 -2709,2.0,4.0,49.0,112,31,10,0.0,13731,0.0,700.0,300.0,0.0,2.0,5.0,2.0,4.0,2.1,2462.4124638309618,2081.0,0.0,129349.0,1,2,9,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,61594.7619047619,5,0,5,5_1 -2710,0.0,5.0,75.0,112,75,31,0.0,13733,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3344.447759577778,0.0,0.0,34617.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23078.0,4,0,4_0,4_0 -2711,5.0,8.0,48.0,111,52,50,0.0,13734,0.0,400.0,0.0,290.0,1.0,2.0,0.0,1.0,1.0,3327.0785138860897,0.0,0.0,20758.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20758.0,3,0,3_0,3_0 -2712,2.0,2.0,67.0,112,74,10,0.0,13735,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,6138.62179239554,0.0,0.0,55586.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,37057.333333333336,5,0,5,5_0 -2713,4.0,4.0,43.0,111,46,31,0.0,13736,0.0,600.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,2622.583119045899,3848.0,0.0,45820.0,1,1,6,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,16364.285714285716,2,0,2_0,2_0 -2714,16.0,16.0,74.0,300,78,71,0.0,13737,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2921.314735284585,0.0,0.0,16970.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16970.0,3,0,3_0,3_1 -2715,3.0,12.0,37.0,111,47,30,0.0,13738,0.0,600.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3575.1678300500553,0.0,0.0,14467.0,1,2,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,14467.0,2,0,2_0,2_0 -2716,2.0,2.0,55.0,112,34,10,0.0,13739,0.0,90.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2328.614573766752,1196.0,0.0,43232.0,1,1,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,43232.0,5,0,5,5_1 -2717,5.0,6.0,24.0,111,47,20,0.0,1374,0.0,0.0,200.0,245.0,1.0,1.0,0.0,1.0,1.0,5829.328547450284,2915.0,0.0,6757.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,6757.0,1,0,1_1,1_0 -2718,0.0,0.0,48.0,111,54,50,0.0,13740,0.0,0.0,0.0,24.0,2.0,3.0,1.0,2.0,1.5,1549.424454957772,0.0,0.0,10842.0,4,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7228.0,1,0,1_1,1_0 -2719,4.0,4.0,43.0,111,65,41,0.0,13741,0.0,600.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,3470.5044839349,0.0,0.0,31506.0,1,1,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,12602.4,2,0,2_0,2_0 -2720,7.0,7.0,30.0,112,46,60,0.0,13742,0.0,70.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,5351.384220711722,3166.0,0.0,51009.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28338.333333333332,4,0,4_0,4_1 -2721,0.0,14.0,31.0,111,43,30,2.0,13743,0.0,0.0,0.0,461.0,2.0,2.0,0.0,2.0,1.5,2993.8034699983564,0.0,7000.0,30846.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20564.0,3,0,3_0,3_0 -2722,4.0,15.0,22.0,111,47,43,0.0,13745,0.0,0.0,0.0,295.0,2.0,1.0,0.0,2.0,1.5,3503.1109922717346,1040.0,0.0,18669.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,12446.0,1,0,1_1,1_0 -2723,0.0,0.0,84.0,111,75,70,0.0,13746,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3756.118138305562,0.0,0.0,24790.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24790.0,4,0,4_0,4_0 -2724,0.0,0.0,26.0,111,81,10,0.0,13748,0.0,0.0,0.0,153.0,1.0,2.0,0.0,1.0,1.0,3447.156281923046,0.0,0.0,9934.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9934.0,1,0,1_1,1_0 -2725,0.0,1.0,39.0,112,47,42,0.0,13749,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2090.229412979016,1040.0,0.0,29759.0,1,2,9,1.0,4,3.0,1.0,1.0,0,1,0,0,0,1,1.0,2.0,14170.95238095238,2,0,2_1,2_0 -2726,0.0,0.0,54.0,221,69,50,0.0,1375,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2981.0984430981225,0.0,0.0,7936.0,4,3,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,7936.0,1,0,1_1,1_0 -2727,3.0,6.0,33.0,112,46,50,0.0,13751,0.0,184.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2315.3527690036417,0.0,0.0,46442.0,1,2,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,30961.333333333332,5,0,5,5_1 -2728,0.0,0.0,20.0,111,68,41,0.0,13752,0.0,0.0,0.0,150.0,1.0,1.0,0.0,1.0,1.0,6189.072627491745,0.0,0.0,10245.0,2,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10245.0,1,0,1_1,1_0 -2729,2.0,19.0,33.0,300,85,50,0.0,13753,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,1626.3329009728604,520.0,0.0,16756.0,6,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,7979.047619047618,1,0,1_1,1_1 -2730,0.0,0.0,55.0,111,55,60,0.0,13754,0.0,0.0,0.0,200.0,1.0,4.0,0.0,1.0,1.0,2402.5829062118764,0.0,0.0,15140.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15140.0,2,0,2_0,2_0 -2731,6.0,7.0,52.0,111,56,50,0.0,13755,0.0,0.0,40.0,0.0,2.0,5.0,2.0,3.0,2.0,1840.7264751634932,0.0,0.0,45574.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,22787.0,4,0,4_1,4_0 -2732,0.0,0.0,58.0,111,52,71,0.0,13756,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,6312.831996740342,0.0,0.0,46946.0,1,2,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31297.333333333332,5,0,5,5_0 -2733,3.0,12.0,39.0,111,68,71,0.0,13757,0.0,0.0,0.0,140.0,1.0,3.0,2.0,4.0,2.1,3548.5803839606538,0.0,0.0,19100.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9095.238095238095,1,0,1_1,1_0 -2734,1.0,1.0,70.0,111,74,10,0.0,1376,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2472.9432971775295,2601.0,0.0,60078.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,40052.0,5,0,5,5_0 -2735,2.0,2.0,70.0,112,77,70,0.0,13760,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1834.9122746581822,4212.0,0.0,7390.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,7390.0,1,0,1_0,1_1 -2736,0.0,16.0,51.0,300,21,50,0.0,13761,0.0,660.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,1420.2882595300066,3016.0,0.0,59710.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,23884.0,4,0,4_0,4_1 -2737,3.0,3.0,51.0,111,46,41,0.0,13763,0.0,0.0,80.0,325.0,1.0,3.0,1.0,2.0,1.5,2955.918525327085,0.0,0.0,27048.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,18032.0,3,0,3_0,3_0 -2738,2.0,2.0,61.0,112,77,70,0.0,13766,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2206.0847363394655,0.0,0.0,15675.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15675.0,2,0,2_0,2_1 -2739,0.0,0.0,75.0,112,77,70,0.0,13767,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4180.038507131527,0.0,0.0,11791.0,5,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11791.0,1,0,1_0,1_1 -2740,11.0,11.0,68.0,112,77,50,0.0,13768,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2115.487306481419,936.0,0.0,35214.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,35214.0,5,0,5,5_1 -2741,1.0,8.0,32.0,111,48,71,2.0,13769,0.0,100.0,0.0,325.0,1.0,2.0,1.0,2.0,1.3,3142.440197922825,0.0,8300.0,22688.0,1,3,4,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17452.30769230769,3,0,3_0,3_0 -2742,2.0,4.0,55.0,111,62,50,0.0,1377,0.0,350.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1720.3101380776413,0.0,0.0,38919.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19459.5,3,0,3_0,3_0 -2743,14.0,16.0,62.0,400,75,50,0.0,13770,0.0,0.0,50.0,0.0,1.0,5.0,0.0,2.0,1.5,1787.641000232183,0.0,0.0,22033.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,14688.666666666666,2,0,2_0,2_1 -2744,0.0,0.0,21.0,111,56,30,0.0,13772,0.0,0.0,0.0,75.0,1.0,1.0,0.0,1.0,1.0,3236.227186772326,780.0,0.0,4283.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4283.0,1,0,1_1,1_0 -2745,2.0,3.0,51.0,400,48,50,0.0,13774,0.0,260.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1256.3580824199375,1560.0,0.0,42901.0,1,4,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21450.5,3,0,3_0,3_1 -2746,1.0,7.0,52.0,112,37,10,0.0,13775,0.0,1440.0,0.0,0.0,3.0,7.0,3.0,5.0,2.8,900.4545437542668,3500.0,0.0,82104.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29322.857142857145,5,0,5,5_1 -2747,8.0,9.0,52.0,112,62,71,0.0,13776,0.0,170.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4502.045032732161,158.0,0.0,16068.0,1,3,5,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16068.0,2,0,2_0,2_1 -2748,1.0,2.0,44.0,221,46,31,2.0,13777,0.0,480.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,4480.909685166493,4851.0,13400.0,40632.0,1,2,1,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,27088.0,4,0,4_0,4_0 -2749,0.0,11.0,45.0,111,68,71,0.0,13778,0.0,0.0,150.0,253.0,1.0,2.0,0.0,1.0,1.0,3219.49973287894,520.0,0.0,14101.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,14101.0,2,0,2_1,2_0 -2750,2.0,4.0,51.0,111,43,10,0.0,1378,0.0,400.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4188.763287706454,2605.0,0.0,26776.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26776.0,4,0,4_0,4_0 -2751,9.0,11.0,45.0,111,46,71,0.0,13784,0.0,0.0,0.0,568.0,2.0,4.0,2.0,4.0,2.5,3509.459684129973,1040.0,0.0,47574.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19029.6,3,0,3_0,3_0 -2752,1.0,11.0,36.0,221,21,50,2.0,13788,0.0,1800.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2098.0035134653017,8191.0,5000.0,32731.0,1,3,1,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,13637.916666666668,2,0,2_0,2_0 -2753,8.0,8.0,62.0,111,75,60,0.0,1379,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1926.3843407056543,0.0,0.0,57677.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,38451.333333333336,5,0,5,5_0 -2754,16.0,16.0,78.0,111,75,70,0.0,13791,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2848.0683529668163,0.0,0.0,39875.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,26583.333333333332,4,0,4_0,4_0 -2755,0.0,0.0,28.0,111,62,71,0.0,13792,0.0,0.0,0.0,324.0,1.0,2.0,0.0,1.0,1.0,3160.0866360965415,0.0,0.0,18740.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18740.0,3,0,3_0,3_0 -2756,0.0,0.0,24.0,111,63,50,0.0,13793,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,3626.8248766348283,0.0,0.0,15414.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11856.923076923076,1,0,1_1,1_0 -2757,3.0,3.0,73.0,111,78,70,0.0,13795,0.0,0.0,0.0,158.0,1.0,4.0,1.0,3.0,2.0,2045.7488859339935,0.0,0.0,21204.0,5,3,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10602.0,1,0,1_1,1_0 -2758,0.0,0.0,39.0,111,85,41,0.0,13796,0.0,0.0,0.0,52.0,0.0,2.0,0.0,1.0,1.0,3655.2927988249053,0.0,0.0,11971.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11971.0,1,0,1_1,1_0 -2759,3.0,3.0,48.0,111,54,20,0.0,13798,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2910.952051635372,2341.0,0.0,19268.0,4,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19268.0,3,0,3_0,3_0 -2760,18.0,18.0,71.0,111,74,30,0.0,13799,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1954.2145842381371,3380.0,0.0,55373.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,36915.333333333336,5,0,5,5_0 -2761,0.0,15.0,41.0,111,47,31,0.0,138,0.0,300.0,250.0,0.0,2.0,4.0,1.0,3.0,1.8,1806.8777089350267,0.0,0.0,33301.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,18500.555555555555,3,0,3_0,3_0 -2762,3.0,4.0,46.0,300,37,44,0.0,13800,0.0,250.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2858.6233587953134,0.0,0.0,33223.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,33223.0,5,0,5,5_1 -2763,1.0,2.0,67.0,111,75,33,2.0,13802,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2161.2916455771874,2392.0,7850.0,36135.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,24090.0,4,0,4_0,4_0 -2764,2.0,4.0,44.0,111,62,71,0.0,13803,0.0,0.0,0.0,0.0,3.0,6.0,3.0,5.0,2.8,1027.5407348422998,0.0,0.0,45121.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16114.642857142859,2,0,2_0,2_0 -2765,6.0,13.0,65.0,120,78,71,0.0,13804,0.0,0.0,0.0,182.0,0.0,4.0,0.0,2.0,1.5,6080.018362444906,1040.0,0.0,12902.0,5,3,0,2.0,3,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,8601.333333333334,1,0,1_1,1_0 -2766,6.0,8.0,45.0,221,22,50,0.0,13806,0.0,50.0,0.0,0.0,2.0,5.0,4.0,6.0,3.1,2146.8985066105756,1040.0,0.0,27598.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,8902.58064516129,1,0,1_1,1_0 -2767,3.0,8.0,64.0,400,31,10,0.0,13808,0.0,99999.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1713.715842547353,6335.0,0.0,92210.0,5,1,0,0.0,1,9.0,0.0,0.0,1,0,0,0,0,0,2.0,7.0,92210.0,5,0,5,5_1 -2768,2.0,3.0,41.0,211,67,71,0.0,13809,0.0,200.0,0.0,279.0,1.0,2.0,0.0,1.0,1.0,2682.6676930642266,2324.0,0.0,17957.0,1,3,3,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17957.0,3,0,3_0,3_0 -2769,1.0,1.0,28.0,111,43,20,1.0,1381,0.0,0.0,0.0,1100.0,2.0,2.0,0.0,2.0,1.5,3436.223154855449,0.0,14000.0,33662.0,1,3,10,8.0,3,1.0,1.0,0.0,0,0,0,0,1,0,0.0,0.0,22441.333333333332,4,0,4_0,4_0 -2770,2.0,5.0,43.0,112,63,50,0.0,13810,0.0,150.0,240.0,0.0,2.0,4.0,2.0,5.0,2.6,782.4713799131714,0.0,0.0,51096.0,1,2,8,2.0,5,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19652.30769230769,3,0,3_0,3_0 -2771,4.0,4.0,62.0,111,74,50,0.0,13811,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3162.302426320698,0.0,0.0,70596.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,47064.0,5,0,5,5_0 -2772,20.0,28.0,76.0,120,77,70,0.0,13812,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2007.9360934968204,3216.0,0.0,19628.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,13085.333333333334,2,0,2_1,2_1 -2773,0.0,3.0,35.0,111,23,10,0.0,13813,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3486.643224478929,0.0,0.0,118752.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,56548.57142857143,5,0,5,5_0 -2774,1.0,6.0,42.0,111,22,60,0.0,13814,0.0,350.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,2824.667945598459,0.0,0.0,160899.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,61884.230769230766,5,0,5,5_0 -2775,0.0,0.0,60.0,111,52,70,0.0,13815,0.0,0.0,0.0,232.0,1.0,2.0,0.0,1.0,1.0,3117.5611820564186,0.0,0.0,17998.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17998.0,3,0,3_0,3_0 -2776,0.0,2.0,44.0,111,37,50,0.0,13816,0.0,560.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2514.274462854798,0.0,0.0,59709.0,1,2,8,7.0,4,3.0,1.0,1.0,0,0,0,1,0,0,1.0,2.0,25960.434782608696,4,0,4_0,4_0 -2777,0.0,0.0,37.0,111,37,20,0.0,13817,0.0,0.0,0.0,822.0,2.0,2.0,0.0,2.0,1.5,3073.7343450265835,0.0,0.0,58881.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,39254.0,5,0,5,5_0 -2778,1.0,1.0,72.0,111,77,60,1.0,13818,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2019.1085291834868,0.0,14000.0,17899.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17899.0,3,0,3_0,3_0 -2779,9.0,10.0,64.0,221,74,60,0.0,13819,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4183.941153110764,6786.0,0.0,35853.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23902.0,4,0,4_0,4_0 -2780,1.0,2.0,20.0,120,67,41,2.0,13820,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,4023.725479898148,0.0,17000.0,17217.0,4,1,0,2.0,3,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,11478.0,1,0,1_0,1_0 -2781,1.0,13.0,52.0,111,65,50,0.0,13821,0.0,250.0,690.0,0.0,3.0,4.0,1.0,3.0,2.0,1094.8925923779818,9402.0,0.0,50001.0,1,1,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,25000.5,4,0,4_0,4_0 -2782,15.0,15.0,61.0,111,74,31,0.0,13822,0.0,0.0,0.0,337.0,0.0,4.0,0.0,1.0,1.0,4989.847178530959,0.0,0.0,36254.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,36254.0,5,0,5,5_0 -2783,4.0,6.0,59.0,111,75,10,0.0,13823,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,837.7441102381667,0.0,0.0,24740.0,7,1,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12370.0,1,0,1_0,1_0 -2784,5.0,5.0,42.0,300,31,10,0.0,13824,0.0,700.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1358.7418382086655,3640.0,0.0,100499.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,55832.777777777774,5,0,5,5_1 -2785,2.0,6.0,41.0,111,37,41,0.0,13825,0.0,500.0,0.0,0.0,2.0,7.0,4.0,6.0,3.1,1793.085247236381,1560.0,0.0,81416.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,26263.225806451614,4,0,4_0,4_0 -2786,0.0,0.0,58.0,111,78,71,0.0,13826,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3481.216716698088,0.0,0.0,10680.0,4,2,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7120.0,1,0,1_0,1_0 -2787,0.0,0.0,67.0,112,78,71,0.0,13827,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3910.7285959825426,0.0,0.0,27749.0,5,1,10,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18499.333333333332,3,0,3_0,3_0 -2788,2.0,11.0,31.0,111,47,31,0.0,13829,0.0,0.0,500.0,580.0,2.0,2.0,0.0,2.0,1.5,5923.402344723623,0.0,0.0,40084.0,1,3,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,26722.666666666668,4,0,4_0,4_0 -2789,8.0,10.0,59.0,111,43,43,0.0,13830,0.0,100069.0,0.0,334.0,2.0,3.0,1.0,2.0,1.5,3354.1302379513363,0.0,0.0,35973.0,1,3,10,8.0,2,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,23982.0,4,0,4_0,4_0 -2790,2.0,2.0,39.0,111,68,71,0.0,13831,0.0,750.0,0.0,465.0,2.0,3.0,0.0,2.0,1.5,6448.090535865123,3276.0,0.0,32723.0,1,3,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21815.333333333332,4,0,4_0,4_0 -2791,1.0,12.0,20.0,111,62,50,2.0,13833,0.0,15.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1880.0407803101632,0.0,2500.0,24259.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13477.222222222223,2,0,2_1,2_0 -2792,0.0,0.0,60.0,111,77,20,0.0,13834,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2298.436297084113,0.0,0.0,12180.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12180.0,1,0,1_0,1_0 -2793,0.0,0.0,50.0,111,22,50,0.0,13835,0.0,0.0,0.0,729.0,2.0,4.0,3.0,5.0,2.4,2842.207537391857,0.0,0.0,45125.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18802.083333333336,3,0,3_0,3_0 -2794,2.0,9.0,29.0,111,42,20,0.0,13836,0.0,100.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,3396.5002668907327,0.0,0.0,21794.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,16764.615384615383,2,0,2_1,2_0 -2795,3.0,8.0,40.0,111,48,44,0.0,13838,0.0,200.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,967.4506538478638,0.0,0.0,44113.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15754.642857142859,2,0,2_0,2_0 -2796,1.0,3.0,68.0,221,75,41,2.0,1384,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1651.584858970395,3120.0,14600.0,50269.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,33512.666666666664,5,0,5,5_0 -2797,0.0,13.0,28.0,112,52,71,0.0,13840,0.0,0.0,2200.0,81.0,2.0,5.0,2.0,4.0,2.1,2318.291563837543,2287.0,0.0,33594.0,1,3,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,1,3.0,0.0,15997.142857142857,2,0,2_1,2_1 -2798,5.0,6.0,44.0,111,31,31,0.0,13842,0.0,0.0,100.0,1391.0,1.0,4.0,2.0,3.0,2.0,3553.4883480675294,0.0,0.0,86376.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,43188.0,5,0,5,5_0 -2799,5.0,6.0,59.0,112,54,50,0.0,13844,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,5246.829855978846,0.0,0.0,25268.0,1,1,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,25268.0,4,0,4_0,4_0 -2800,2.0,10.0,32.0,111,43,33,0.0,13845,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3083.741603183243,0.0,0.0,44868.0,1,2,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,24926.666666666664,4,0,4_0,4_0 -2801,7.0,7.0,60.0,111,48,71,0.0,13846,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,3631.0112475133324,0.0,0.0,89530.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,44765.0,5,0,5,5_0 -2802,1.0,1.0,60.0,111,31,10,1.0,13849,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2412.0152125429054,0.0,23000.0,18817.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,12544.666666666666,1,0,1_0,1_0 -2803,5.0,6.0,31.0,120,43,33,0.0,13850,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1982.4032871582426,2861.0,0.0,43163.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20553.809523809523,3,0,3_0,3_1 -2804,1.0,1.0,74.0,111,75,70,1.0,13852,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4975.517958421847,3158.0,21000.0,91299.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,91299.0,5,0,5,5_0 -2805,0.0,44.0,53.0,112,68,70,0.0,13853,0.0,0.0,500.0,0.0,2.0,4.0,0.0,2.0,1.5,2153.8083933634994,1560.0,0.0,49110.0,1,2,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,32740.0,5,0,5,5_1 -2806,1.0,7.0,76.0,111,77,71,2.0,13855,0.0,0.0,0.0,215.0,0.0,3.0,0.0,1.0,1.0,3082.5361147697217,3087.0,4000.0,20485.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20485.0,3,0,3_0,3_0 -2807,0.0,0.0,26.0,111,35,20,0.0,13856,0.0,0.0,0.0,100.0,1.0,1.0,0.0,1.0,1.0,2768.701979701799,0.0,0.0,10391.0,4,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10391.0,1,0,1_1,1_0 -2808,8.0,15.0,53.0,111,63,50,0.0,13857,0.0,650.0,100.0,0.0,3.0,4.0,1.0,3.0,2.0,1294.9381898257664,6411.0,0.0,98823.0,1,2,8,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,49411.5,5,0,5,5_0 -2809,3.0,3.0,44.0,112,48,71,0.0,13858,0.0,600.0,100.0,0.0,2.0,6.0,1.0,3.0,1.8,4456.847358971077,9534.0,0.0,47376.0,1,1,5,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,26320.0,4,0,4_0,4_1 -2810,0.0,0.0,50.0,120,85,71,0.0,1386,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3555.0190826695425,0.0,0.0,11649.0,7,3,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11649.0,1,0,1_1,1_0 -2811,4.0,20.0,36.0,111,52,50,0.0,13860,0.0,400.0,0.0,0.0,1.0,5.0,4.0,5.0,2.6,1568.0519396879922,3462.0,0.0,35340.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13592.307692307691,2,0,2_1,2_0 -2812,18.0,22.0,82.0,111,78,70,0.0,13862,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3435.9063335477986,2288.0,0.0,25250.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16833.333333333332,2,0,2_0,2_0 -2813,0.0,0.0,29.0,111,65,50,0.0,13865,0.0,0.0,0.0,230.0,1.0,1.0,0.0,1.0,1.0,3485.426682194594,0.0,0.0,20344.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,20344.0,3,0,3_1,3_0 -2814,0.0,0.0,47.0,111,68,71,0.0,13866,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2963.2219464671875,0.0,0.0,12882.0,4,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8588.0,1,0,1_1,1_0 -2815,3.0,6.0,23.0,111,65,41,0.0,13867,0.0,200.0,0.0,250.0,2.0,2.0,1.0,3.0,1.8,3075.0008969637797,3120.0,0.0,19517.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,10842.777777777777,1,0,1_0,1_0 -2816,8.0,10.0,54.0,400,13,71,0.0,13869,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2634.047731432488,1560.0,0.0,51113.0,1,1,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,34075.333333333336,5,0,5,5_1 -2817,0.0,0.0,26.0,111,63,50,0.0,1387,0.0,0.0,0.0,220.0,1.0,1.0,0.0,1.0,1.0,2384.3780670903984,0.0,0.0,8113.0,4,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8113.0,1,0,1_1,1_0 -2818,1.0,12.0,53.0,221,21,31,2.0,13870,0.0,0.0,400.0,500.0,3.0,4.0,4.0,6.0,3.3,2961.389904694652,2600.0,1000.0,32180.0,1,3,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,9751.515151515152,1,0,1_1,1_0 -2819,0.0,0.0,81.0,111,77,50,0.0,13871,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3741.753950132186,0.0,0.0,23598.0,5,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23598.0,4,0,4_0,4_0 -2820,3.0,3.0,52.0,112,22,50,0.0,13872,0.0,130.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1920.242963294729,5106.0,0.0,76213.0,1,2,7,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,50808.666666666664,5,0,5,5_1 -2821,2.0,2.0,53.0,120,64,50,0.0,13874,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1446.251922762157,3332.0,0.0,33780.0,1,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22520.0,4,0,4_0,4_0 -2822,8.0,13.0,60.0,112,21,50,0.0,13875,0.0,80.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3049.6504559493696,0.0,0.0,61141.0,1,1,7,1.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,40760.666666666664,5,0,5,5_0 -2823,5.0,9.0,39.0,111,21,43,0.0,13876,0.0,160.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2728.1332070750195,0.0,0.0,54319.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30177.222222222223,5,0,5,5_0 -2824,0.0,0.0,34.0,112,34,20,0.0,13878,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,1638.878165475892,6162.0,0.0,29312.0,1,3,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18320.0,3,0,3_0,3_1 -2825,1.0,12.0,50.0,120,85,50,2.0,13879,0.0,0.0,0.0,0.0,0.0,1.0,1.0,3.0,2.0,2972.406639600135,2080.0,3000.0,19730.0,5,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,9865.0,1,0,1_0,1_1 -2826,4.0,7.0,52.0,111,85,50,0.0,1388,0.0,0.0,99999.0,93.0,1.0,6.0,2.0,3.0,2.0,1473.584619839343,1041.0,0.0,11874.0,6,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,5937.0,1,0,1_1,1_0 -2827,15.0,15.0,54.0,111,46,43,0.0,13881,0.0,0.0,130.0,234.0,2.0,5.0,2.0,3.0,2.0,2188.0027729796316,1040.0,0.0,39067.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,19533.5,3,0,3_1,3_0 -2828,6.0,12.0,58.0,221,46,50,0.0,13882,0.0,600.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2532.0749867804398,2080.0,0.0,33656.0,1,2,1,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22437.333333333332,4,0,4_0,4_0 -2829,15.0,15.0,55.0,111,42,30,0.0,13883,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4082.704663120031,520.0,0.0,42536.0,1,3,10,8.0,2,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,28357.333333333332,4,0,4_0,4_0 -2830,10.0,10.0,58.0,112,42,20,0.0,13885,0.0,160.0,120.0,0.0,2.0,6.0,0.0,2.0,1.5,1378.155205088222,5224.0,0.0,63421.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,42280.666666666664,5,0,5,5_1 -2831,6.0,7.0,42.0,300,48,31,0.0,13888,0.0,350.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2767.166190626379,3198.0,0.0,44905.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,19523.913043478264,3,0,3_0,3_1 -2832,7.0,10.0,38.0,111,46,31,0.0,1389,0.0,0.0,300.0,680.0,1.0,3.0,1.0,2.0,1.3,3012.178181290481,2685.0,0.0,37255.0,1,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,28657.69230769231,4,0,4_0,4_0 -2833,1.0,6.0,67.0,111,75,50,2.0,13891,0.0,0.0,0.0,336.0,0.0,3.0,0.0,2.0,1.5,2076.6518151487658,1596.0,7500.0,41298.0,5,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,27532.0,4,0,4_0,4_0 -2834,2.0,4.0,22.0,112,54,31,0.0,13892,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2925.8021731072326,0.0,0.0,22240.0,1,3,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22240.0,4,0,4_0,4_1 -2835,6.0,6.0,50.0,111,65,50,0.0,13893,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1645.1175731970272,876.0,0.0,16436.0,1,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16436.0,2,0,2_0,2_0 -2836,0.0,0.0,51.0,111,48,50,0.0,13894,0.0,0.0,0.0,720.0,2.0,3.0,1.0,3.0,2.0,1753.786700874154,0.0,0.0,56430.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28215.0,4,0,4_0,4_0 -2837,9.0,12.0,61.0,111,75,50,0.0,13895,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3048.121062016641,0.0,0.0,31894.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21262.666666666668,3,0,3_0,3_0 -2838,3.0,4.0,52.0,111,33,20,0.0,13896,0.0,400.0,200.0,0.0,2.0,9.0,2.0,4.0,2.5,1541.7388422356123,2966.0,0.0,141945.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,56778.0,5,0,5,5_0 -2839,5.0,5.0,38.0,111,21,50,0.0,13897,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,2318.2633309678645,0.0,0.0,43774.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16836.153846153844,2,0,2_0,2_0 -2840,0.0,0.0,89.0,400,71,70,0.0,13898,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2753.3399966015395,0.0,0.0,16380.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16380.0,2,0,2_0,2_1 -2841,15.0,22.0,67.0,111,75,41,0.0,139,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3497.768108413451,0.0,0.0,28010.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28010.0,4,0,4_0,4_0 -2842,7.0,10.0,65.0,111,77,71,0.0,13900,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2945.8919225938253,0.0,0.0,23330.0,5,1,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15553.333333333334,2,0,2_0,2_0 -2843,0.0,0.0,40.0,111,85,71,0.0,13901,0.0,0.0,0.0,30.0,0.0,2.0,0.0,1.0,1.0,3083.059907826647,0.0,0.0,13908.0,7,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13908.0,2,0,2_1,2_0 -2844,7.0,7.0,81.0,211,77,70,0.0,13902,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2751.9261233972675,1565.0,0.0,30290.0,5,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,30290.0,5,0,5,5_0 -2845,16.0,16.0,66.0,111,75,70,0.0,13903,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2020.3039034720582,6740.0,0.0,31865.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21243.333333333332,3,0,3_0,3_0 -2846,0.0,0.0,92.0,111,72,71,0.0,13904,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3519.0392447673266,0.0,0.0,19890.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13260.0,2,0,2_0,2_0 -2847,0.0,0.0,51.0,112,21,31,0.0,13906,0.0,0.0,250.0,0.0,1.0,5.0,1.0,3.0,2.0,2131.4034288039966,0.0,0.0,65268.0,1,1,7,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,1.0,2.0,32634.0,5,0,5,5_1 -2848,5.0,8.0,34.0,111,37,41,0.0,13907,0.0,0.0,0.0,275.0,1.0,3.0,0.0,1.0,1.0,2635.0713570578387,0.0,0.0,21505.0,1,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,21505.0,3,0,3_0,3_0 -2849,2.0,2.0,52.0,111,23,10,0.0,13908,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2674.322531034732,7769.0,0.0,67722.0,1,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,67722.0,5,0,5,5_0 -2850,11.0,15.0,80.0,400,71,71,0.0,13909,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2760.985310707613,0.0,0.0,16632.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11088.0,1,0,1_0,1_1 -2851,1.0,15.0,51.0,221,56,71,2.0,1391,0.0,60.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3197.7866500778314,1040.0,1000.0,12220.0,1,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,12220.0,1,0,1_0,1_0 -2852,6.0,17.0,40.0,111,38,12,0.0,13910,0.0,0.0,48.0,0.0,2.0,3.0,0.0,2.0,1.5,2512.0254234611425,0.0,0.0,88243.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,58828.666666666664,5,0,5,5_0 -2853,0.0,0.0,28.0,111,85,71,0.0,13912,0.0,0.0,0.0,0.0,0.0,2.0,2.0,3.0,1.6,2919.368091372304,0.0,0.0,14349.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8968.125,1,0,1_1,1_0 -2854,0.0,9.0,92.0,120,77,50,0.0,13913,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2374.17540875409,0.0,0.0,29917.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19944.666666666668,3,0,3_0,3_1 -2855,0.0,1.0,58.0,111,38,31,2.0,13914,0.0,0.0,90.0,460.0,2.0,2.0,0.0,2.0,1.5,4215.123067356567,2879.0,14500.0,73296.0,1,3,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,48864.0,5,0,5,5_0 -2856,0.0,0.0,59.0,111,35,20,0.0,13916,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2994.8016955338862,0.0,0.0,5080.0,4,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,5080.0,1,0,1_0,1_0 -2857,3.0,5.0,50.0,212,13,42,0.0,13917,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1453.2420533688376,5200.0,0.0,19172.0,1,1,2,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19172.0,3,0,3_0,3_1 -2858,5.0,5.0,58.0,111,54,50,0.0,13919,0.0,364.0,250.0,0.0,3.0,4.0,2.0,3.0,2.0,2715.628398861246,2172.0,0.0,53440.0,1,2,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,26720.0,4,0,4_0,4_0 -2859,0.0,0.0,45.0,111,52,50,0.0,1392,0.0,0.0,0.0,206.0,1.0,2.0,0.0,1.0,1.0,3170.8829833571217,0.0,0.0,18880.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18880.0,3,0,3_0,3_0 -2860,4.0,11.0,54.0,111,53,20,0.0,13921,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2967.2268614847917,0.0,0.0,39219.0,1,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26146.0,4,0,4_0,4_0 -2861,4.0,4.0,70.0,300,78,50,0.0,13923,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1117.3455145774133,1872.0,0.0,20876.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13917.333333333334,2,0,2_0,2_1 -2862,6.0,14.0,49.0,300,43,50,0.0,13924,0.0,830.0,0.0,0.0,4.0,5.0,2.0,4.0,2.5,1560.2057159847075,0.0,0.0,73052.0,1,1,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,29220.8,5,0,5,5_1 -2863,0.0,0.0,75.0,221,71,70,0.0,13925,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3775.8250429342343,0.0,0.0,12555.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12555.0,1,0,1_0,1_0 -2864,1.0,1.0,80.0,300,71,71,1.0,13926,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2451.167004823923,0.0,10998.0,23729.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15819.333333333334,2,0,2_0,2_1 -2865,4.0,4.0,63.0,111,74,12,0.0,13927,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1546.0274499024983,2964.0,0.0,81774.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,54516.0,5,0,5,5_0 -2866,10.0,12.0,52.0,111,62,50,0.0,13928,0.0,20.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1801.7700619760346,2080.0,0.0,25510.0,1,4,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,17006.666666666668,3,0,3_0,3_0 -2867,0.0,0.0,49.0,111,52,71,0.0,13929,0.0,0.0,0.0,398.0,2.0,3.0,2.0,3.0,2.0,6026.021690763543,0.0,0.0,28437.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14218.5,2,0,2_0,2_0 -2868,0.0,0.0,74.0,111,78,71,0.0,1393,0.0,0.0,0.0,333.0,0.0,4.0,0.0,2.0,1.5,5592.818464430078,0.0,0.0,23047.0,5,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15364.666666666666,2,0,2_0,2_0 -2869,2.0,8.0,55.0,111,78,71,0.0,13930,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2655.1649703595663,2068.0,0.0,38610.0,5,1,6,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,19305.0,3,0,3_0,3_0 -2870,3.0,6.0,24.0,112,47,44,0.0,13931,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,8599.468069866123,3120.0,0.0,19354.0,1,3,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19354.0,3,0,3_0,3_0 -2871,1.0,3.0,58.0,112,63,50,0.0,13934,0.0,210.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1816.2787418246423,3120.0,0.0,31771.0,1,2,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21180.666666666668,3,0,3_0,3_1 -2872,5.0,6.0,49.0,111,37,12,0.0,13935,0.0,0.0,0.0,0.0,3.0,6.0,4.0,6.0,3.3,1037.2579072197714,0.0,0.0,155115.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,47004.545454545456,5,0,5,5_0 -2873,15.0,15.0,59.0,112,71,60,0.0,13937,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3977.1486498140416,3128.0,0.0,12814.0,7,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8542.666666666666,1,0,1_0,1_1 -2874,10.0,11.0,57.0,120,78,71,0.0,13938,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2770.673951580971,3744.0,0.0,30240.0,7,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20160.0,3,0,3_0,3_1 -2875,2.0,5.0,54.0,111,64,71,0.0,13939,0.0,0.0,0.0,950.0,3.0,3.0,1.0,3.0,2.0,3377.118313940542,2031.0,0.0,42286.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,21143.0,3,0,3_0,3_0 -2876,7.0,9.0,41.0,112,62,71,0.0,1394,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2048.271370163423,0.0,0.0,21540.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10257.142857142857,1,0,1_0,1_1 -2877,1.0,1.0,58.0,112,54,50,1.0,13942,0.0,100409.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2606.736403161649,5980.0,15000.0,64526.0,1,1,10,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,32263.0,5,0,5,5_0 -2878,2.0,2.0,53.0,111,38,20,0.0,13943,0.0,0.0,400.0,0.0,2.0,5.0,1.0,3.0,2.0,2200.0812179757745,0.0,0.0,74715.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,37357.5,5,0,5,5_0 -2879,18.0,18.0,67.0,111,78,50,0.0,13945,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2059.833230870208,0.0,0.0,29596.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19730.666666666668,3,0,3_0,3_0 -2880,0.0,0.0,68.0,111,75,20,0.0,13946,0.0,0.0,0.0,230.0,0.0,1.0,0.0,1.0,1.0,2346.39247598558,0.0,0.0,21585.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21585.0,3,0,3_0,3_0 -2881,17.0,17.0,56.0,111,22,42,0.0,13947,0.0,0.0,100.0,0.0,1.0,4.0,0.0,1.0,1.0,3373.509643406437,0.0,0.0,20172.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20172.0,3,0,3_0,3_0 -2882,8.0,19.0,58.0,112,75,50,0.0,13948,0.0,30.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1889.516359155815,0.0,0.0,44781.0,5,1,10,2.0,3,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,29854.0,5,0,5,5_0 -2883,2.0,2.0,63.0,111,74,44,0.0,1395,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1532.8364073254397,3120.0,0.0,40111.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26740.666666666668,4,0,4_0,4_0 -2884,6.0,6.0,46.0,400,11,50,0.0,13954,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1603.4492922825887,0.0,0.0,30807.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12322.8,1,0,1_0,1_1 -2885,1.0,1.0,61.0,221,75,70,1.0,13955,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2030.871643455287,1560.0,23000.0,26222.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,17481.333333333332,3,0,3_0,3_0 -2886,1.0,1.0,63.0,111,74,20,2.0,13956,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1090.7279439367296,3900.0,18500.0,45962.0,5,2,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,30641.333333333332,5,0,5,5_0 -2887,0.0,0.0,77.0,300,71,70,0.0,13957,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1778.0987261287266,0.0,0.0,13774.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13774.0,2,0,2_0,2_1 -2888,0.0,0.0,19.0,111,84,41,0.0,13959,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3328.4614049183,0.0,0.0,11069.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11069.0,1,0,1_1,1_0 -2889,2.0,2.0,60.0,111,77,43,0.0,13960,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2595.641020857525,1561.0,0.0,9211.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,9211.0,1,0,1_0,1_0 -2890,2.0,2.0,38.0,112,53,31,0.0,13961,0.0,1050.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,4449.522262050821,1301.0,0.0,58458.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24357.5,4,0,4_0,4_1 -2891,11.0,11.0,70.0,111,77,50,0.0,13962,0.0,0.0,0.0,350.0,0.0,2.0,0.0,1.0,1.0,2583.2533305481056,0.0,0.0,22204.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22204.0,4,0,4_0,4_0 -2892,9.0,24.0,76.0,111,75,50,0.0,13963,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3438.242373741287,2080.0,0.0,27212.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18141.333333333332,3,0,3_0,3_0 -2893,0.0,0.0,45.0,111,68,71,0.0,13964,0.0,0.0,0.0,101.0,1.0,2.0,0.0,1.0,1.0,3683.403217085381,0.0,0.0,14517.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14517.0,2,0,2_1,2_0 -2894,0.0,7.0,26.0,112,63,50,2.0,13965,0.0,260.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2738.7351039739865,4763.0,12900.0,34098.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18943.333333333332,3,0,3_0,3_1 -2895,5.0,6.0,41.0,111,48,43,0.0,13967,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.3,4842.943496982569,0.0,0.0,37832.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16448.695652173916,2,0,2_0,2_0 -2896,3.0,8.0,27.0,111,63,31,0.0,13968,0.0,0.0,0.0,364.0,1.0,2.0,0.0,2.0,1.5,3766.3732636270106,0.0,0.0,23604.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,15736.0,2,0,2_1,2_0 -2897,3.0,9.0,26.0,112,46,33,0.0,13969,0.0,630.0,0.0,415.0,2.0,4.0,1.0,3.0,1.8,2287.7441226850374,4680.0,0.0,28998.0,1,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,16110.0,2,0,2_1,2_1 -2898,3.0,10.0,54.0,112,37,44,0.0,1397,0.0,50.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1971.3444500593055,1300.0,0.0,53440.0,1,2,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,35626.666666666664,5,0,5,5_1 -2899,3.0,4.0,55.0,111,52,71,0.0,13971,0.0,750.0,600.0,731.0,4.0,5.0,2.0,4.0,2.5,2152.0669159765284,1664.0,0.0,57511.0,1,3,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,23004.4,4,0,4_0,4_0 -2900,1.0,8.0,66.0,221,78,71,2.0,13972,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,5995.367005293699,0.0,3500.0,13264.0,5,3,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,8842.666666666666,1,0,1_1,1_0 -2901,2.0,4.0,44.0,300,47,60,0.0,13973,0.0,470.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1979.4119454757672,1040.0,0.0,45439.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21637.619047619046,3,0,3_0,3_1 -2902,0.0,0.0,79.0,111,77,71,0.0,13974,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3073.2403142411345,0.0,0.0,9740.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9740.0,1,0,1_0,1_0 -2903,16.0,16.0,55.0,112,34,31,0.0,13975,0.0,1050.0,0.0,0.0,2.0,9.0,2.0,4.0,2.5,2259.2469388825107,2964.0,0.0,91168.0,1,1,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,36467.2,5,0,5,5_1 -2904,0.0,0.0,54.0,111,38,31,0.0,13976,0.0,0.0,0.0,500.0,2.0,3.0,1.0,2.0,1.5,2747.057451511612,0.0,0.0,58360.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38906.666666666664,5,0,5,5_0 -2905,3.0,28.0,26.0,111,63,50,0.0,13977,0.0,0.0,0.0,335.0,1.0,1.0,0.0,1.0,1.0,3082.8267581888276,0.0,0.0,15813.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15813.0,2,0,2_0,2_0 -2906,7.0,12.0,57.0,400,75,50,0.0,13979,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2751.689407333052,0.0,0.0,26644.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26644.0,4,0,4_0,4_1 -2907,3.0,3.0,63.0,111,77,60,0.0,1398,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3119.6973768951507,2474.0,0.0,48613.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,48613.0,5,0,5,5_0 -2908,0.0,0.0,79.0,111,77,70,0.0,13980,0.0,0.0,0.0,429.0,0.0,3.0,0.0,1.0,1.0,3458.7865542823997,0.0,0.0,15019.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15019.0,2,0,2_0,2_0 -2909,8.0,9.0,72.0,111,78,71,0.0,13981,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2429.5021206471492,2600.0,0.0,24410.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16273.333333333334,2,0,2_0,2_0 -2910,11.0,21.0,24.0,111,68,71,0.0,13982,0.0,0.0,0.0,226.0,1.0,4.0,1.0,2.0,1.5,6328.198352556367,0.0,0.0,17853.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,11902.0,1,0,1_1,1_0 -2911,9.0,10.0,40.0,120,47,31,0.0,13983,0.0,400.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2011.1467993485755,3900.0,0.0,56054.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26692.38095238095,4,0,4_0,4_1 -2912,2.0,2.0,55.0,111,62,71,0.0,13985,0.0,0.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,5596.970099659257,0.0,0.0,54480.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27240.0,4,0,4_0,4_0 -2913,1.0,1.0,57.0,111,67,60,1.0,13986,0.0,20.0,150.0,332.0,3.0,4.0,1.0,3.0,2.0,1684.2024700865265,0.0,13780.0,52072.0,1,3,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,26036.0,4,0,4_0,4_0 -2914,4.0,8.0,45.0,111,47,31,0.0,13987,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3099.4949085371386,0.0,0.0,20178.0,1,1,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,20178.0,3,0,3_0,3_0 -2915,0.0,0.0,75.0,112,77,71,0.0,13989,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4438.839991418285,0.0,0.0,14990.0,5,1,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14990.0,2,0,2_0,2_0 -2916,6.0,6.0,47.0,120,38,31,0.0,13990,0.0,180.0,50.0,0.0,2.0,6.0,2.0,4.0,2.5,1500.1925721862347,2392.0,0.0,62780.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25112.0,4,0,4_0,4_1 -2917,0.0,3.0,50.0,300,21,50,2.0,13991,0.0,700.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3034.970318771899,0.0,13000.0,90048.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,60032.0,5,0,5,5_1 -2918,7.0,25.0,52.0,120,63,70,0.0,13992,0.0,0.0,300.0,0.0,1.0,3.0,0.0,1.0,1.0,1780.6840330392386,0.0,0.0,14290.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14290.0,2,0,2_0,2_1 -2919,4.0,4.0,70.0,111,72,10,0.0,13993,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,4527.6647303993095,0.0,0.0,30398.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,30398.0,5,0,5,5_0 -2920,0.0,4.0,20.0,111,52,41,2.0,13994,0.0,250.0,0.0,500.0,1.0,1.0,0.0,2.0,1.5,3151.0370159287995,101.0,6500.0,17162.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11441.333333333334,1,0,1_0,1_0 -2921,12.0,12.0,48.0,111,63,60,0.0,13997,0.0,0.0,0.0,94.0,1.0,3.0,5.0,7.0,3.2,1955.046390829877,0.0,0.0,27070.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,8459.375,1,0,1_1,1_0 -2922,5.0,19.0,51.0,120,52,50,0.0,14,0.0,500.0,200.0,0.0,3.0,5.0,3.0,5.0,3.0,778.1646167884289,2966.0,0.0,55894.0,1,2,0,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,18631.333333333332,3,0,3_0,3_0 -2923,21.0,22.0,75.0,111,77,50,0.0,1400,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2302.3539476477827,0.0,0.0,23301.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15534.0,2,0,2_0,2_0 -2924,10.0,19.0,85.0,111,74,12,0.0,14000,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,2.0,1510.9500982735701,0.0,0.0,57392.0,5,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28696.0,4,0,4_0,4_0 -2925,0.0,0.0,39.0,111,37,10,0.0,14001,0.0,0.0,0.0,1080.0,2.0,3.0,2.0,4.0,2.1,3684.363723637891,0.0,0.0,73045.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34783.33333333333,5,0,5,5_0 -2926,3.0,17.0,34.0,111,31,10,0.0,14002,0.0,0.0,20.0,0.0,2.0,4.0,2.0,4.0,2.1,1735.9312217813685,1560.0,0.0,48810.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23242.85714285714,4,0,4_0,4_0 -2927,5.0,5.0,56.0,111,38,10,0.0,14003,0.0,0.0,140.0,0.0,2.0,7.0,1.0,3.0,2.0,1003.4993070940642,1460.0,0.0,65941.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,32970.5,5,0,5,5_0 -2928,2.0,3.0,64.0,221,77,70,0.0,14005,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4266.18758816291,2600.0,0.0,19410.0,4,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19410.0,3,0,3_0,3_0 -2929,5.0,5.0,85.0,111,77,71,0.0,14011,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3450.1916674718586,0.0,0.0,12867.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12867.0,2,0,2_0,2_0 -2930,3.0,7.0,33.0,111,37,12,0.0,14014,0.0,0.0,0.0,450.0,2.0,3.0,2.0,4.0,2.1,2942.66306660746,0.0,0.0,185923.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,88534.76190476191,5,0,5,5_0 -2931,6.0,8.0,32.0,111,68,50,0.0,14017,0.0,450.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2993.561117712226,3120.0,0.0,40060.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19076.190476190477,3,0,3_0,3_0 -2932,1.0,1.0,59.0,111,74,41,1.0,14018,0.0,0.0,0.0,372.0,1.0,3.0,1.0,3.0,2.0,3039.419497168763,0.0,18000.0,52344.0,5,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,26172.0,4,0,4_0,4_0 -2933,8.0,8.0,66.0,112,78,50,0.0,1402,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1857.4458931363329,1768.0,0.0,27807.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18538.0,3,0,3_0,3_0 -2934,15.0,15.0,75.0,112,71,71,0.0,14020,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3212.8149534138806,0.0,0.0,21722.0,5,1,9,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,14481.333333333334,2,0,2_0,2_0 -2935,3.0,4.0,46.0,111,37,30,0.0,14021,0.0,0.0,250.0,0.0,2.0,7.0,3.0,5.0,2.6,1612.9811919621282,2549.0,0.0,57576.0,1,1,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22144.615384615383,4,0,4_0,4_0 -2936,9.0,9.0,69.0,111,34,10,0.0,14024,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1822.5480662458467,1040.0,0.0,70746.0,5,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,35373.0,5,0,5,5_0 -2937,5.0,9.0,79.0,300,78,70,0.0,14025,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2353.2897764566,1300.0,0.0,14915.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9943.333333333334,1,0,1_0,1_1 -2938,4.0,12.0,28.0,111,56,50,0.0,14026,0.0,300.0,100.0,0.0,2.0,4.0,2.0,4.0,2.1,3093.453018563827,0.0,0.0,27175.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,12940.47619047619,2,0,2_1,2_0 -2939,0.0,0.0,59.0,111,67,71,0.0,14027,0.0,0.0,0.0,316.0,1.0,2.0,0.0,1.0,1.0,3072.6896857113147,0.0,0.0,23410.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23410.0,4,0,4_0,4_0 -2940,9.0,12.0,63.0,300,78,70,0.0,1403,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2703.9422868787183,1560.0,0.0,24576.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16384.0,2,0,2_0,2_1 -2941,0.0,16.0,29.0,112,37,12,0.0,14031,0.0,0.0,0.0,690.0,1.0,5.0,0.0,2.0,1.5,3959.6782794794894,0.0,0.0,49366.0,1,3,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,32910.666666666664,5,0,5,5_0 -2942,7.0,9.0,62.0,112,23,50,0.0,14032,0.0,0.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,2089.6669063166833,0.0,0.0,278.0,1,1,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,139.0,1,0,1_0,1_0 -2943,3.0,12.0,43.0,111,46,31,0.0,14033,0.0,0.0,20.0,494.0,2.0,3.0,2.0,4.0,2.3,3169.8305839418945,8299.0,0.0,58631.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,25491.739130434784,4,0,4_0,4_0 -2944,0.0,0.0,85.0,111,77,70,0.0,14036,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2236.4709949953844,0.0,0.0,16640.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16640.0,2,0,2_0,2_0 -2945,0.0,0.0,85.0,111,77,70,0.0,14037,0.0,0.0,0.0,372.0,0.0,2.0,0.0,1.0,1.0,2929.6379568040984,0.0,0.0,22217.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22217.0,4,0,4_0,4_0 -2946,0.0,0.0,36.0,111,48,42,0.0,14038,0.0,0.0,0.0,480.0,1.0,5.0,0.0,1.0,1.0,7539.442625807492,0.0,0.0,10920.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10920.0,1,0,1_0,1_0 -2947,0.0,0.0,96.0,111,77,60,0.0,14039,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2269.640757192858,0.0,0.0,17540.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17540.0,3,0,3_0,3_0 -2948,9.0,17.0,55.0,300,63,50,0.0,14040,0.0,60.0,0.0,0.0,2.0,7.0,3.0,4.0,2.5,1235.134306871648,0.0,0.0,72090.0,1,1,0,0.0,2,4.0,0.0,0.0,1,0,0,0,0,0,0.0,4.0,28836.0,4,0,4_0,4_1 -2949,0.0,0.0,81.0,112,78,70,0.0,14041,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2430.6160785104507,0.0,0.0,9290.0,5,1,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9290.0,1,0,1_0,1_1 -2950,2.0,12.0,43.0,400,62,71,0.0,14042,0.0,140.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1621.3843800715938,2860.0,0.0,42366.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16946.4,3,0,3_0,3_1 -2951,6.0,6.0,79.0,111,77,71,0.0,14043,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4148.619857693256,0.0,0.0,20550.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20550.0,3,0,3_0,3_0 -2952,2.0,2.0,72.0,111,74,12,0.0,14044,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2243.031117342655,0.0,0.0,58787.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,39191.333333333336,5,0,5,5_0 -2953,4.0,12.0,66.0,400,72,70,0.0,14045,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2740.09816883237,0.0,0.0,14011.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9340.666666666666,1,0,1_0,1_1 -2954,2.0,2.0,60.0,111,74,31,0.0,14046,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2964.988124016478,0.0,0.0,79725.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,53150.0,5,0,5,5_0 -2955,2.0,2.0,40.0,111,22,31,0.0,14049,0.0,199998.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,3342.4284545462187,0.0,0.0,37640.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16365.21739130435,2,0,2_0,2_0 -2956,3.0,4.0,75.0,111,78,71,0.0,1405,0.0,0.0,0.0,271.0,0.0,4.0,0.0,2.0,1.5,3185.392645421641,0.0,0.0,22090.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14726.666666666666,2,0,2_1,2_0 -2957,0.0,0.0,58.0,111,22,41,1.0,14050,0.0,40.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1433.3838419865933,203.0,25344.0,122501.0,1,1,6,4.0,4,3.0,1.0,1.0,0,0,1,0,0,0,1.0,2.0,61250.5,5,0,5,5_0 -2958,20.0,20.0,49.0,111,34,10,0.0,14051,0.0,0.0,180.0,0.0,2.0,6.0,2.0,4.0,2.5,1255.950386457795,1041.0,0.0,97173.0,1,1,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,38869.2,5,0,5,5_0 -2959,11.0,14.0,41.0,212,11,44,0.0,14052,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2408.370936668646,4067.0,0.0,7255.0,1,1,3,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,7255.0,1,0,1_0,1_1 -2960,0.0,0.0,87.0,111,77,70,0.0,14054,0.0,0.0,0.0,219.0,0.0,2.0,0.0,1.0,1.0,3459.180663057488,0.0,0.0,13158.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13158.0,2,0,2_1,2_0 -2961,6.0,6.0,40.0,112,46,20,0.0,14055,0.0,150.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,5396.628744059667,0.0,0.0,45770.0,1,1,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,25427.777777777777,4,0,4_0,4_0 -2962,9.0,12.0,40.0,111,52,50,0.0,14056,0.0,120.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3566.7971907672186,1560.0,0.0,23491.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15660.666666666666,2,0,2_0,2_0 -2963,0.0,0.0,75.0,111,71,70,0.0,14058,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2658.6893146401235,0.0,0.0,12758.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12758.0,2,0,2_0,2_0 -2964,1.0,3.0,50.0,111,45,50,2.0,14059,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1054.8646619149717,2496.0,17000.0,50417.0,1,3,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25208.5,4,0,4_0,4_0 -2965,0.0,0.0,18.0,111,84,42,0.0,1406,0.0,0.0,0.0,231.0,0.0,1.0,0.0,1.0,1.0,2917.3342095572784,0.0,0.0,1442.0,3,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,1442.0,1,0,1_1,1_0 -2966,5.0,5.0,70.0,400,22,41,0.0,14060,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,6537.281841565063,0.0,0.0,55449.0,1,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,36966.0,5,0,5,5_1 -2967,0.0,0.0,26.0,111,46,31,0.0,14061,0.0,0.0,0.0,338.0,1.0,1.0,0.0,1.0,1.0,3666.285119352025,0.0,0.0,4104.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4104.0,1,0,1_1,1_0 -2968,0.0,0.0,71.0,111,77,50,0.0,14063,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1442.3581212149788,0.0,0.0,24976.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24976.0,4,0,4_0,4_0 -2969,0.0,0.0,66.0,111,74,20,0.0,14064,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2385.2078832301295,0.0,0.0,61421.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,40947.333333333336,5,0,5,5_0 -2970,0.0,13.0,68.0,120,78,70,0.0,14065,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1665.7349319790249,0.0,0.0,30142.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20094.666666666668,3,0,3_0,3_0 -2971,0.0,0.0,34.0,111,37,10,0.0,14066,0.0,0.0,0.0,1050.0,2.0,4.0,1.0,3.0,1.8,2833.9871711684627,0.0,0.0,55489.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30827.222222222223,5,0,5,5_0 -2972,12.0,18.0,65.0,300,22,71,0.0,14067,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,3948.5458562576923,1300.0,0.0,9993.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9993.0,1,0,1_0,1_1 -2973,5.0,5.0,71.0,111,72,50,0.0,14068,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2903.31604219197,0.0,0.0,41512.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27674.666666666668,4,0,4_0,4_0 -2974,2.0,8.0,27.0,300,37,12,0.0,14069,0.0,1000.0,280.0,0.0,2.0,7.0,0.0,2.0,1.5,2287.7494259675746,2951.0,0.0,38172.0,1,2,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,25448.0,4,0,4_0,4_1 -2975,0.0,5.0,46.0,111,55,60,2.0,1407,0.0,200.0,0.0,340.0,1.0,3.0,2.0,3.0,1.8,2605.65394906366,2444.0,4000.0,24347.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,13526.111111111111,2,0,2_1,2_0 -2976,14.0,15.0,48.0,111,52,50,0.0,14070,0.0,0.0,30.0,0.0,2.0,5.0,1.0,2.0,1.5,2639.4632253097216,0.0,0.0,21985.0,1,2,4,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,14656.666666666666,2,0,2_0,2_0 -2977,6.0,13.0,43.0,112,43,20,0.0,14072,0.0,150.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1573.3341977815892,0.0,0.0,33204.0,1,2,7,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22136.0,4,0,4_0,4_0 -2978,5.0,5.0,74.0,111,75,70,0.0,14073,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1270.8065237643043,0.0,0.0,26725.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17816.666666666668,3,0,3_0,3_0 -2979,2.0,4.0,31.0,112,43,20,0.0,14074,0.0,400.0,300.0,0.0,2.0,4.0,1.0,3.0,1.8,1799.9232345279331,0.0,0.0,51055.90909090909,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28364.393939393936,4,0,4_0,4_0 -2980,1.0,1.0,44.0,111,54,60,1.0,14075,0.0,560.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2002.7267522815553,1201.0,18900.0,25702.0,1,2,6,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,25702.0,4,0,4_0,4_0 -2981,13.0,13.0,67.0,111,77,50,0.0,14076,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1395.4066447837906,0.0,0.0,20017.0,5,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20017.0,3,0,3_0,3_0 -2982,0.0,0.0,69.0,111,75,41,0.0,14077,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2065.4610303015884,0.0,0.0,38358.0,5,1,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25572.0,4,0,4_0,4_0 -2983,1.0,14.0,31.0,400,69,71,2.0,14078,0.0,0.0,0.0,0.0,1.0,7.0,3.0,5.0,2.4,3096.4978963421763,1040.0,1200.0,19778.0,4,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,8240.833333333334,1,0,1_1,1_1 -2984,9.0,10.0,62.0,120,78,70,0.0,14080,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1654.4126042763544,832.0,0.0,25230.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16820.0,2,0,2_0,2_0 -2985,2.0,4.0,74.0,300,78,50,0.0,14081,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1850.9740085826013,0.0,0.0,15475.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15475.0,2,0,2_0,2_1 -2986,0.0,0.0,54.0,111,22,50,1.0,14083,0.0,360.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2690.31374983219,3876.0,29000.0,56691.0,1,1,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28345.5,4,0,4_0,4_0 -2987,4.0,7.0,43.0,111,38,12,0.0,14086,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.8,2742.1533633237354,1560.0,0.0,44521.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15900.357142857143,2,0,2_0,2_0 -2988,3.0,10.0,49.0,111,46,50,0.0,14088,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3276.755669869465,3797.0,0.0,38765.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,25843.333333333332,4,0,4_0,4_0 -2989,3.0,16.0,62.0,300,72,71,0.0,14089,0.0,0.0,0.0,365.0,0.0,4.0,0.0,2.0,1.5,1304.6457854536109,1300.0,0.0,28820.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,19213.333333333332,3,0,3_1,3_1 -2990,0.0,0.0,28.0,111,67,71,0.0,1409,0.0,0.0,0.0,450.0,1.0,1.0,0.0,1.0,1.0,3855.2419259142725,0.0,0.0,11160.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,11160.0,1,0,1_0,1_0 -2991,8.0,15.0,64.0,111,46,50,0.0,14090,0.0,80.0,80.0,0.0,1.0,4.0,0.0,1.0,1.0,2210.264704513491,1664.0,0.0,23968.0,1,4,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23968.0,4,0,4_0,4_0 -2992,0.0,24.0,71.0,111,72,71,0.0,14092,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3090.173309370602,0.0,0.0,12740.0,5,2,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12740.0,2,0,2_1,2_0 -2993,14.0,14.0,78.0,111,78,71,0.0,14093,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4041.5501456789,1560.0,0.0,13568.0,5,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13568.0,2,0,2_0,2_0 -2994,13.0,13.0,41.0,111,38,41,0.0,14094,0.0,0.0,640.0,0.0,2.0,5.0,2.0,4.0,2.1,2890.149730014031,3121.0,0.0,59988.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,28565.714285714286,4,0,4_0,4_0 -2995,5.0,8.0,44.0,400,62,50,0.0,14095,0.0,380.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,1922.867998585075,4212.0,0.0,23628.0,1,2,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,14767.5,2,0,2_1,2_1 -2996,6.0,7.0,76.0,111,74,20,0.0,14096,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3212.568376858755,0.0,0.0,48950.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32633.333333333332,5,0,5,5_0 -2997,2.0,2.0,70.0,400,71,50,0.0,14097,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1277.8320445804973,0.0,0.0,18487.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12324.666666666666,1,0,1_0,1_1 -2998,0.0,12.0,50.0,111,45,41,2.0,14098,0.0,0.0,422.0,0.0,3.0,3.0,1.0,3.0,2.0,2028.3955484381777,3901.0,2000.0,54320.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,3.0,0.0,27160.0,4,0,4_0,4_0 -2999,0.0,0.0,36.0,111,67,10,0.0,14099,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3845.3051711417847,0.0,0.0,39394.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,18759.04761904762,3,0,3_1,3_0 -3000,2.0,13.0,32.0,111,35,12,0.0,1410,0.0,65.0,52.0,1200.0,2.0,3.0,2.0,4.0,2.1,6998.196375422359,0.0,0.0,21750.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,10357.142857142857,1,0,1_0,1_0 -3001,3.0,16.0,66.0,112,78,50,0.0,14101,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3491.0494434735333,3640.0,0.0,21139.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14092.666666666666,2,0,2_0,2_1 -3002,9.0,9.0,26.0,111,37,12,0.0,14102,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3082.079573322004,0.0,0.0,56517.0,1,4,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,37678.0,5,0,5,5_0 -3003,2.0,2.0,27.0,111,38,12,0.0,14105,0.0,0.0,700.0,0.0,2.0,2.0,0.0,2.0,1.5,3558.977519160568,2320.0,0.0,102216.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,68144.0,5,0,5,5_0 -3004,11.0,13.0,84.0,111,77,70,0.0,14108,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2465.6176912442893,0.0,0.0,17789.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17789.0,3,0,3_0,3_0 -3005,9.0,22.0,56.0,111,78,71,0.0,14109,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3024.0650600942504,0.0,0.0,10270.0,7,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10270.0,1,0,1_1,1_0 -3006,3.0,6.0,40.0,111,21,43,0.0,1411,0.0,480.0,20.0,0.0,2.0,6.0,2.0,4.0,2.1,3335.183762623154,3434.0,0.0,63317.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,30150.952380952378,5,0,5,5_0 -3007,2.0,2.0,51.0,111,43,10,0.0,14110,0.0,140.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2684.7650598909727,0.0,0.0,38646.0,1,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,38646.0,5,0,5,5_0 -3008,13.0,13.0,83.0,112,71,70,0.0,14112,0.0,0.0,99999.0,0.0,2.0,5.0,3.0,5.0,3.0,4632.333310668068,2689.0,0.0,64981.0,5,1,5,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,21660.333333333332,3,0,3_0,3_1 -3009,4.0,4.0,31.0,111,38,10,0.0,14113,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3534.274749259914,4264.0,0.0,55600.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,37066.666666666664,5,0,5,5_0 -3010,0.0,12.0,31.0,112,38,31,0.0,14114,0.0,100.0,0.0,520.0,2.0,5.0,1.0,3.0,1.8,3073.8535023594254,3380.0,0.0,45455.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25252.777777777777,4,0,4_0,4_1 -3011,8.0,12.0,53.0,211,62,50,0.0,14115,0.0,100.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1062.446229361684,0.0,0.0,37289.0,1,2,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24859.333333333332,4,0,4_0,4_0 -3012,0.0,0.0,79.0,111,77,60,0.0,14116,0.0,0.0,0.0,407.0,0.0,2.0,0.0,1.0,1.0,3471.0703009542385,0.0,0.0,17313.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17313.0,3,0,3_1,3_0 -3013,5.0,12.0,45.0,112,62,50,0.0,14118,0.0,680.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1940.4582257872316,2342.0,0.0,48698.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27054.444444444445,4,0,4_0,4_1 -3014,2.0,8.0,32.0,212,53,42,0.0,14119,0.0,199998.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,4845.850850224843,0.0,0.0,57561.0,1,1,3,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27410.0,4,0,4_0,4_1 -3015,2.0,20.0,53.0,111,53,50,0.0,1412,0.0,80.0,0.0,270.0,1.0,3.0,0.0,2.0,1.5,1755.3659889898174,0.0,0.0,40515.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27010.0,4,0,4_0,4_0 -3016,12.0,14.0,45.0,120,37,60,0.0,14121,0.0,0.0,168.0,406.0,1.0,2.0,0.0,1.0,1.0,3485.4974100466475,2550.0,0.0,28736.0,1,3,0,2.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,28736.0,4,0,4_0,4_0 -3017,0.0,0.0,44.0,111,67,71,0.0,14123,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3372.6308194950698,0.0,0.0,8420.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8420.0,1,0,1_1,1_0 -3018,2.0,3.0,48.0,111,46,50,0.0,14124,0.0,110.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2883.136851276912,0.0,0.0,33890.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14734.782608695654,2,0,2_0,2_0 -3019,4.0,20.0,56.0,111,31,10,0.0,14127,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,3800.027744806857,12868.0,0.0,17762.0,1,1,5,4.0,2,2.0,1.0,0.0,0,0,1,0,0,0,2.0,0.0,11841.333333333334,1,0,1_0,1_0 -3020,8.0,8.0,84.0,111,75,41,0.0,14128,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1463.930263629651,0.0,0.0,33705.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22470.0,4,0,4_0,4_0 -3021,2.0,3.0,58.0,120,54,70,0.0,14129,0.0,610.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1872.0763670013228,2601.0,0.0,31782.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21188.0,3,0,3_0,3_1 -3022,2.0,14.0,53.0,111,48,50,0.0,1413,0.0,400.0,100.0,0.0,2.0,4.0,1.0,2.0,1.5,5516.124382133881,1302.0,0.0,23703.0,1,3,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,15802.0,2,0,2_1,2_0 -3023,1.0,3.0,57.0,111,54,33,2.0,14130,0.0,0.0,0.0,0.0,2.0,9.0,2.0,4.0,2.5,1724.6365746041292,0.0,11900.0,51560.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,20624.0,3,0,3_0,3_0 -3024,12.0,13.0,79.0,112,72,70,0.0,14131,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2185.7568953367327,0.0,0.0,7233.0,5,4,8,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,7233.0,1,0,1_0,1_0 -3025,19.0,23.0,77.0,400,75,70,0.0,14133,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2550.8499794382587,0.0,0.0,14025.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14025.0,2,0,2_0,2_1 -3026,6.0,7.0,56.0,300,52,71,0.0,14134,0.0,20.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2677.970169589472,1040.0,0.0,33110.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22073.333333333332,4,0,4_0,4_1 -3027,5.0,8.0,38.0,111,34,20,0.0,14135,0.0,0.0,170.0,0.0,2.0,4.0,1.0,3.0,1.8,2490.4455653748537,2704.0,0.0,47061.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,26145.0,4,0,4_0,4_0 -3028,1.0,6.0,56.0,112,52,60,0.0,14136,0.0,0.0,150.0,0.0,2.0,4.0,0.0,2.0,1.5,1611.9875862875454,0.0,0.0,32171.0,1,1,7,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21447.333333333332,3,0,3_0,3_0 -3029,3.0,3.0,58.0,111,52,71,0.0,1414,0.0,160.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2063.4599323816046,0.0,0.0,17780.0,1,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17780.0,3,0,3_0,3_0 -3030,2.0,6.0,28.0,112,37,20,0.0,14140,0.0,700.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1718.9479099300086,0.0,0.0,46947.0,1,2,9,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,26081.666666666664,4,0,4_0,4_0 -3031,12.0,12.0,53.0,300,63,70,0.0,14141,0.0,132.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,862.9182291015984,2107.0,0.0,31532.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,11261.428571428572,1,0,1_1,1_1 -3032,2.0,2.0,64.0,112,74,20,0.0,14142,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1504.8061100843736,3016.0,0.0,61918.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,41278.666666666664,5,0,5,5_1 -3033,2.0,2.0,59.0,111,31,10,0.0,14143,0.0,0.0,180.0,0.0,1.0,5.0,0.0,1.0,1.0,3116.035542058334,2602.0,0.0,74802.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,74802.0,5,0,5,5_0 -3034,2.0,2.0,64.0,111,77,42,0.0,14145,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3268.154423289223,0.0,0.0,26107.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26107.0,4,0,4_0,4_0 -3035,11.0,11.0,74.0,112,78,50,0.0,14146,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2372.6860926505683,2288.0,0.0,22125.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14750.0,2,0,2_0,2_1 -3036,0.0,15.0,28.0,111,54,41,2.0,14147,0.0,0.0,100.0,670.0,2.0,4.0,1.0,3.0,1.8,3482.6514959880647,0.0,1500.0,39220.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,21788.888888888887,4,0,4_0,4_0 -3037,5.0,10.0,46.0,111,38,31,0.0,14149,0.0,100199.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,2994.9190651236136,6652.0,0.0,56311.0,1,1,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20111.07142857143,3,0,3_0,3_0 -3038,0.0,0.0,25.0,111,63,50,0.0,1415,0.0,0.0,0.0,0.0,2.0,5.0,0.0,3.0,2.0,4137.5279919599325,0.0,0.0,21296.0,1,3,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10648.0,1,0,1_1,1_0 -3039,13.0,13.0,45.0,111,38,12,0.0,14150,0.0,100.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,998.913394499911,0.0,0.0,40380.0,1,1,7,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,15530.76923076923,2,0,2_0,2_0 -3040,15.0,15.0,51.0,112,54,42,0.0,14151,0.0,600.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1978.5605631322017,4207.0,0.0,42707.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28471.333333333332,4,0,4_0,4_1 -3041,3.0,9.0,60.0,112,78,60,0.0,14152,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2443.0891225963187,4185.0,0.0,25408.0,5,1,3,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25408.0,4,0,4_0,4_1 -3042,4.0,10.0,40.0,111,56,50,0.0,14153,0.0,0.0,150.0,0.0,1.0,1.0,0.0,1.0,1.0,2681.91595396618,2913.0,0.0,15662.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,15662.0,2,0,2_0,2_0 -3043,0.0,0.0,32.0,111,85,42,0.0,14154,0.0,0.0,0.0,153.0,0.0,2.0,0.0,1.0,1.0,3182.572323678492,0.0,0.0,7064.0,7,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7064.0,1,0,1_1,1_0 -3044,4.0,16.0,59.0,212,78,71,0.0,14157,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2543.962314411013,4271.0,0.0,17706.0,5,1,1,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17706.0,3,0,3_0,3_1 -3045,0.0,0.0,79.0,111,77,71,0.0,14158,0.0,0.0,0.0,189.0,0.0,2.0,0.0,2.0,1.5,3526.2863321917175,0.0,0.0,20020.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13346.666666666666,2,0,2_0,2_0 -3046,0.0,0.0,86.0,111,74,20,0.0,14159,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2403.5514621130774,0.0,0.0,39803.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39803.0,5,0,5,5_0 -3047,2.0,17.0,48.0,111,64,60,0.0,1416,0.0,99999.0,0.0,305.0,1.0,3.0,0.0,1.0,1.0,2992.3003653771266,2600.0,0.0,23360.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,23360.0,4,0,4_0,4_0 -3048,2.0,5.0,44.0,221,64,50,0.0,14160,0.0,0.0,140.0,0.0,1.0,6.0,3.0,5.0,2.4,3011.35076991605,0.0,0.0,31822.0,1,2,1,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,13259.166666666668,2,0,2_0,2_0 -3049,5.0,5.0,56.0,111,34,10,0.0,14161,0.0,180.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1912.8930460832257,0.0,0.0,63464.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27593.04347826087,4,0,4_0,4_0 -3050,14.0,14.0,43.0,112,54,50,0.0,14162,0.0,60.0,50.0,0.0,2.0,4.0,1.0,3.0,1.8,2213.425270993105,2600.0,0.0,33103.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18390.555555555555,3,0,3_0,3_1 -3051,0.0,16.0,64.0,111,77,70,0.0,14163,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1084.2467977168244,0.0,0.0,14332.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14332.0,2,0,2_1,2_0 -3052,0.0,0.0,67.0,111,77,50,0.0,14165,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2917.1094767489817,0.0,0.0,12961.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12961.0,2,0,2_1,2_0 -3053,0.0,0.0,51.0,111,54,20,0.0,14167,0.0,0.0,0.0,582.0,2.0,2.0,0.0,2.0,1.5,2909.596660804065,0.0,0.0,75433.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,50288.666666666664,5,0,5,5_0 -3054,6.0,9.0,72.0,111,75,70,0.0,14170,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1730.9227953357988,2340.0,0.0,25724.0,5,3,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17149.333333333332,3,0,3_0,3_0 -3055,8.0,9.0,49.0,111,43,60,0.0,14171,0.0,0.0,0.0,434.0,1.0,3.0,0.0,2.0,1.5,2619.7324158605848,0.0,0.0,18544.0,1,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12362.666666666666,1,0,1_0,1_0 -3056,1.0,2.0,74.0,112,74,20,2.0,14172,0.0,0.0,0.0,0.0,0.0,10.0,1.0,3.0,2.0,2800.445615924396,0.0,16145.0,51046.0,5,4,7,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,25523.0,4,0,4_0,4_0 -3057,9.0,9.0,52.0,300,43,10,0.0,14173,0.0,300.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1855.380296853231,2022.0,0.0,58905.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29452.5,5,0,5,5_1 -3058,15.0,15.0,78.0,111,75,70,0.0,14174,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1238.8446959706416,0.0,0.0,21704.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21704.0,4,0,4_0,4_0 -3059,1.0,4.0,60.0,112,72,50,2.0,14177,0.0,0.0,80.0,0.0,0.0,5.0,0.0,2.0,1.5,2102.8249460318116,3164.0,6000.0,126475.0,5,2,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,84316.66666666667,5,0,5,5_1 -3060,4.0,6.0,41.0,300,63,71,0.0,14178,0.0,260.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,3085.3178070159065,1561.0,0.0,35600.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15478.260869565218,2,0,2_0,2_1 -3061,1.0,1.0,64.0,111,78,71,0.0,14179,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2146.1223245865126,3640.0,0.0,22164.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,14776.0,2,0,2_0,2_0 -3062,0.0,14.0,23.0,112,54,10,0.0,14180,0.0,0.0,300.0,0.0,1.0,3.0,0.0,1.0,1.0,2872.622244351237,2132.0,0.0,19870.0,2,3,9,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,19870.0,3,0,3_1,3_0 -3063,11.0,11.0,59.0,111,63,70,0.0,14181,0.0,199998.0,0.0,0.0,1.0,5.0,1.0,5.0,2.8,2095.1840063369336,1300.0,0.0,46930.0,1,1,10,8.0,5,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,16760.714285714286,2,0,2_0,2_0 -3064,5.0,10.0,43.0,111,23,41,0.0,14183,0.0,0.0,99999.0,0.0,2.0,3.0,3.0,5.0,2.6,3099.606698786426,1560.0,0.0,47380.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,18223.076923076922,3,0,3_0,3_0 -3065,8.0,8.0,46.0,111,52,50,0.0,14184,0.0,100.0,0.0,0.0,1.0,5.0,2.0,4.0,2.3,1936.9428845299894,0.0,0.0,22800.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,9913.04347826087,1,0,1_0,1_0 -3066,17.0,17.0,77.0,112,71,71,0.0,14185,0.0,0.0,0.0,248.0,0.0,4.0,1.0,2.0,1.5,3094.6107933750395,0.0,0.0,24653.0,5,3,9,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,16435.333333333332,2,0,2_1,2_1 -3067,3.0,12.0,48.0,112,21,50,0.0,14188,0.0,0.0,630.0,0.0,2.0,5.0,2.0,4.0,2.5,2169.0265986210434,0.0,0.0,45076.0,1,1,7,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,18030.4,3,0,3_0,3_0 -3068,3.0,4.0,38.0,111,37,10,0.0,14189,0.0,220.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2096.1055633500146,2132.0,0.0,101696.0,1,3,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,48426.666666666664,5,0,5,5_0 -3069,1.0,11.0,34.0,111,64,60,0.0,14190,0.0,200.0,0.0,486.0,1.0,2.0,1.0,3.0,1.8,6140.252830406801,2059.0,0.0,27640.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15355.555555555555,2,0,2_0,2_0 -3070,7.0,10.0,34.0,112,64,50,0.0,14193,0.0,75.0,0.0,9.0,2.0,6.0,4.0,7.0,3.4,903.6499514702549,780.0,0.0,41283.0,1,3,10,4.0,5,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12142.058823529413,1,0,1_1,1_0 -3071,13.0,13.0,67.0,400,74,33,0.0,14194,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2641.2660654722968,0.0,0.0,62102.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,41401.333333333336,5,0,5,5_1 -3072,2.0,5.0,39.0,111,67,50,0.0,14195,0.0,99999.0,99999.0,0.0,2.0,4.0,1.0,3.0,1.8,2992.878123542838,0.0,0.0,41875.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23263.888888888887,4,0,4_0,4_0 -3073,10.0,10.0,43.0,111,43,33,0.0,14196,0.0,0.0,250.0,0.0,1.0,3.0,0.0,1.0,1.0,2216.2908974529146,1305.0,0.0,20254.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20254.0,3,0,3_0,3_0 -3074,0.0,0.0,37.0,111,54,42,0.0,14197,0.0,0.0,0.0,540.0,1.0,2.0,0.0,1.0,1.0,3029.42118593056,0.0,0.0,16600.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16600.0,2,0,2_0,2_0 -3075,3.0,7.0,56.0,111,46,41,0.0,14198,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2197.898547906509,0.0,0.0,41389.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27592.666666666668,4,0,4_0,4_0 -3076,12.0,12.0,72.0,111,74,60,0.0,14199,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2743.4680132411786,0.0,0.0,30310.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20206.666666666668,3,0,3_0,3_0 -3077,1.0,7.0,48.0,111,52,20,0.0,142,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2112.4520746588046,1042.0,0.0,18780.0,1,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18780.0,3,0,3_0,3_0 -3078,3.0,7.0,54.0,111,34,20,0.0,1420,0.0,1350.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,1675.72565544666,5928.0,0.0,66975.0,1,1,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,33487.5,5,0,5,5_0 -3079,2.0,2.0,68.0,111,75,50,0.0,14200,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4839.724408069362,3510.0,0.0,22574.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22574.0,4,0,4_0,4_0 -3080,2.0,7.0,53.0,111,43,30,0.0,14201,0.0,150.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1781.9345101034564,0.0,0.0,53878.0,1,2,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,35918.666666666664,5,0,5,5_0 -3081,1.0,1.0,51.0,112,42,31,2.0,14202,0.0,100.0,0.0,0.0,2.0,10.0,2.0,4.0,2.5,7608.12219398386,0.0,4000.0,83188.0,1,2,9,1.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,33275.2,5,0,5,5_0 -3082,0.0,0.0,80.0,111,77,71,0.0,14203,0.0,0.0,0.0,291.0,0.0,3.0,0.0,1.0,1.0,3062.4853620409003,0.0,0.0,17504.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17504.0,3,0,3_0,3_0 -3083,11.0,11.0,86.0,111,74,12,0.0,14204,0.0,0.0,0.0,932.0,0.0,4.0,0.0,1.0,1.0,3018.2844748116527,0.0,0.0,66565.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,66565.0,5,0,5,5_0 -3084,0.0,0.0,42.0,111,47,10,0.0,14205,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1317.0727081747953,0.0,0.0,76606.0,1,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,42558.88888888889,5,0,5,5_0 -3085,2.0,11.0,42.0,111,62,71,0.0,14206,0.0,250.0,0.0,267.0,1.0,2.0,1.0,2.0,1.3,6409.615196012889,0.0,0.0,11858.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,9121.538461538461,1,0,1_1,1_0 -3086,8.0,8.0,53.0,120,63,50,0.0,14208,0.0,250.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1457.862688352031,0.0,0.0,29563.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,14781.5,2,0,2_0,2_1 -3087,2.0,2.0,64.0,111,74,60,0.0,14209,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3414.9610783860767,0.0,0.0,37475.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,24983.333333333332,4,0,4_0,4_0 -3088,6.0,11.0,36.0,111,52,30,0.0,1421,0.0,0.0,200.0,509.0,1.0,3.0,1.0,2.0,1.3,3738.898273977921,0.0,0.0,10088.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,7760.0,1,0,1_0,1_0 -3089,1.0,1.0,81.0,111,72,70,1.0,14211,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2714.4618842192504,0.0,33200.0,100988.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,67325.33333333333,5,0,5,5_0 -3090,0.0,0.0,92.0,212,71,70,0.0,14215,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2115.439979724338,0.0,0.0,8586.0,5,1,2,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8586.0,1,0,1_0,1_1 -3091,8.0,10.0,62.0,212,74,50,0.0,14216,0.0,0.0,0.0,0.0,1.0,9.0,0.0,2.0,1.5,1133.5081085803872,4610.0,0.0,44636.0,5,1,3,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,29757.333333333332,5,0,5,5_1 -3092,1.0,8.0,24.0,221,56,50,2.0,14217,0.0,0.0,0.0,248.0,1.0,3.0,1.0,2.0,1.3,5603.573599739959,1560.0,6500.0,16024.0,1,3,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,12326.153846153846,1,0,1_1,1_0 -3093,3.0,8.0,75.0,111,86,70,0.0,14219,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2045.6483810717114,0.0,0.0,12585.0,6,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12585.0,2,0,2_0,2_0 -3094,1.0,1.0,63.0,111,75,44,1.0,14220,0.0,300.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1134.937809565171,3172.0,18700.0,44800.0,5,1,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,29866.666666666668,5,0,5,5_0 -3095,22.0,22.0,46.0,120,47,71,0.0,14221,0.0,0.0,500.0,0.0,1.0,6.0,0.0,1.0,1.0,3738.032043061,0.0,0.0,12280.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,12280.0,1,0,1_0,1_1 -3096,4.0,10.0,63.0,400,22,71,0.0,14222,0.0,0.0,0.0,0.0,2.0,9.0,0.0,2.0,1.5,3370.116076069615,0.0,0.0,16800.0,1,2,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11200.0,1,0,1_0,1_0 -3097,8.0,9.0,39.0,111,43,20,0.0,14223,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3272.8185815385614,0.0,0.0,52542.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22844.34782608696,4,0,4_0,4_0 -3098,6.0,13.0,47.0,111,68,71,0.0,14226,0.0,266.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1611.5277850351897,1560.0,0.0,38990.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19495.0,3,0,3_0,3_0 -3099,15.0,15.0,79.0,111,75,70,0.0,14227,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1942.03324855925,2080.0,0.0,20159.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13439.333333333334,2,0,2_0,2_0 -3100,0.0,0.0,63.0,111,78,70,0.0,14228,0.0,0.0,0.0,40.0,0.0,1.0,0.0,1.0,1.0,3156.126156555153,0.0,0.0,7953.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7953.0,1,0,1_1,1_0 -3101,7.0,7.0,52.0,111,54,42,0.0,14229,0.0,450.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2845.1655632223706,3205.0,0.0,-184.0,1,1,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,-73.6,1,0,1_0,1_0 -3102,4.0,6.0,27.0,221,55,31,0.0,14230,0.0,200.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,5942.317997791243,0.0,0.0,20005.0,1,3,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20005.0,3,0,3_0,3_0 -3103,1.0,11.0,43.0,111,68,71,2.0,14231,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1264.7430017869335,3641.0,3000.0,44855.0,1,3,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17942.0,3,0,3_0,3_0 -3104,0.0,10.0,79.0,111,72,70,0.0,14232,0.0,0.0,0.0,62.0,0.0,2.0,0.0,1.0,1.0,3553.475354032442,1040.0,0.0,6219.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,6219.0,1,0,1_1,1_0 -3105,12.0,21.0,78.0,120,78,71,0.0,14234,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4318.918967736541,0.0,0.0,42550.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,28366.666666666668,4,0,4_0,4_1 -3106,13.0,16.0,53.0,111,78,50,0.0,14236,99999.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3535.8281641685426,3382.0,0.0,31514.0,5,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,0.0,21009.333333333332,3,0,3_0,3_0 -3107,1.0,9.0,22.0,111,55,41,0.0,14237,0.0,0.0,50.0,70.0,1.0,2.0,0.0,1.0,1.0,2895.641254152553,0.0,0.0,3794.0,4,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,3794.0,1,0,1_1,1_0 -3108,2.0,4.0,36.0,221,53,60,0.0,14239,0.0,60.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2861.1753836870726,2600.0,0.0,41327.0,1,3,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22959.444444444445,4,0,4_0,4_0 -3109,4.0,6.0,55.0,112,45,50,0.0,14240,0.0,400.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1618.4713194905203,3121.0,0.0,48218.0,1,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,32145.333333333332,5,0,5,5_1 -3110,0.0,0.0,18.0,111,84,41,0.0,14242,0.0,0.0,0.0,322.0,0.0,1.0,0.0,1.0,1.0,4043.462376971861,0.0,0.0,1189.0,3,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,1189.0,1,0,1_1,1_0 -3111,2.0,3.0,29.0,112,45,33,0.0,14243,0.0,520.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2366.0672874893166,6860.0,0.0,50135.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23873.809523809523,4,0,4_0,4_1 -3112,3.0,3.0,53.0,400,11,71,0.0,14244,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3177.8061317854904,0.0,0.0,39295.0,1,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,26196.666666666668,4,0,4_0,4_1 -3113,1.0,14.0,49.0,111,47,50,2.0,14245,0.0,204.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,1988.766173589804,2080.0,1800.0,38847.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18498.571428571428,3,0,3_0,3_0 -3114,4.0,4.0,59.0,112,54,50,0.0,14247,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1612.375028544109,2295.0,0.0,79020.0,1,1,6,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,39510.0,5,0,5,5_0 -3115,0.0,0.0,62.0,111,78,60,0.0,14249,0.0,0.0,0.0,268.0,0.0,2.0,0.0,1.0,1.0,2454.9241456795116,0.0,0.0,13310.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13310.0,2,0,2_1,2_0 -3116,5.0,5.0,39.0,400,22,50,0.0,14251,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2345.7375904455885,0.0,0.0,89574.0,1,2,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,42654.28571428571,5,0,5,5_1 -3117,1.0,1.0,47.0,111,65,60,0.0,14252,0.0,300.0,390.0,0.0,3.0,6.0,4.0,6.0,3.1,998.601408201253,4160.0,0.0,45750.0,1,2,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,14758.064516129032,2,0,2_0,2_0 -3118,1.0,1.0,54.0,111,31,10,0.0,14256,0.0,1300.0,30.0,0.0,2.0,10.0,0.0,2.0,1.5,3297.1926940333224,8580.0,0.0,442151.0,1,1,7,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,294767.3333333333,5,0,5,5_0 -3119,11.0,14.0,41.0,112,64,50,0.0,14257,0.0,120.0,50.0,0.0,2.0,5.0,3.0,5.0,2.6,2958.154821313503,1560.0,0.0,49329.0,1,2,9,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,18972.69230769231,3,0,3_0,3_0 -3120,0.0,6.0,50.0,111,34,10,2.0,14258,0.0,99999.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1157.803712120963,4164.0,9000.0,64248.0,1,2,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,25699.2,4,0,4_0,4_0 -3121,0.0,0.0,50.0,111,56,60,0.0,14259,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4145.409020317434,0.0,0.0,18020.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18020.0,3,0,3_0,3_0 -3122,3.0,4.0,75.0,111,78,50,0.0,14260,0.0,0.0,0.0,335.0,0.0,4.0,0.0,2.0,1.5,1813.303416004896,0.0,0.0,23370.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15580.0,2,0,2_0,2_0 -3123,4.0,4.0,67.0,112,75,60,0.0,14261,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1853.885859577858,3515.0,0.0,38726.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,25817.333333333332,4,0,4_0,4_1 -3124,2.0,11.0,55.0,300,64,50,0.0,14263,0.0,1140.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1580.3463090393263,2081.0,0.0,50040.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,25020.0,4,0,4_0,4_1 -3125,5.0,11.0,79.0,111,77,10,0.0,14264,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2695.8883422861213,0.0,0.0,20065.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20065.0,3,0,3_0,3_0 -3126,2.0,6.0,35.0,112,11,31,0.0,14266,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2487.726730587316,1560.0,0.0,-8420.0,1,4,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,-4677.777777777777,1,0,1_0,1_1 -3127,4.0,4.0,57.0,112,33,43,0.0,14267,0.0,0.0,1300.0,0.0,2.0,6.0,0.0,2.0,1.5,1478.359749914137,8060.0,0.0,84600.0,1,1,8,1.0,3,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,56400.0,5,0,5,5_0 -3128,4.0,19.0,70.0,112,74,60,0.0,14269,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2327.455180895396,3328.0,0.0,49958.0,5,1,8,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,33305.333333333336,5,0,5,5_1 -3129,11.0,11.0,54.0,111,55,41,0.0,1427,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2331.1361511446403,0.0,0.0,22170.0,1,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22170.0,4,0,4_0,4_0 -3130,7.0,9.0,30.0,300,47,31,0.0,14271,0.0,70.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,5924.05721212325,0.0,0.0,39211.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21783.888888888887,4,0,4_0,4_0 -3131,4.0,6.0,34.0,111,63,43,0.0,14272,0.0,100.0,0.0,600.0,1.0,3.0,0.0,1.0,1.0,2912.7293402294663,0.0,0.0,23060.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23060.0,4,0,4_0,4_0 -3132,6.0,10.0,68.0,120,78,70,0.0,14274,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,718.6793776318565,0.0,0.0,31873.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21248.666666666668,3,0,3_0,3_1 -3133,15.0,21.0,57.0,111,54,42,0.0,14275,0.0,0.0,50.0,0.0,1.0,5.0,1.0,3.0,2.0,1639.4761103375083,1652.0,0.0,46683.0,1,1,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,23341.5,4,0,4_0,4_0 -3134,3.0,3.0,57.0,111,34,20,0.0,14276,0.0,300.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1342.0526617460202,3173.0,0.0,35533.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,35533.0,5,0,5,5_0 -3135,0.0,0.0,65.0,111,86,71,0.0,14277,0.0,0.0,0.0,450.0,0.0,4.0,0.0,1.0,1.0,3417.1891406979244,0.0,0.0,8356.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8356.0,1,0,1_1,1_0 -3136,0.0,0.0,82.0,112,86,71,0.0,14278,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2348.1004282318036,0.0,0.0,9754.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9754.0,1,0,1_0,1_0 -3137,12.0,12.0,73.0,111,72,70,0.0,14280,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2854.313057187231,3106.0,0.0,57671.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,38447.333333333336,5,0,5,5_0 -3138,1.0,17.0,77.0,112,75,41,0.0,14281,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3772.5215819209425,0.0,0.0,19830.0,5,3,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19830.0,3,0,3_0,3_1 -3139,5.0,5.0,45.0,400,43,33,0.0,14282,0.0,350.0,150.0,600.0,2.0,5.0,0.0,2.0,1.5,2367.9570452379467,326.0,0.0,58381.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,38920.666666666664,5,0,5,5_1 -3140,0.0,0.0,31.0,111,52,50,0.0,14284,0.0,0.0,0.0,405.0,1.0,3.0,1.0,3.0,2.0,3408.326370098954,0.0,0.0,26061.0,1,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13030.5,2,0,2_0,2_0 -3141,12.0,12.0,73.0,112,75,60,0.0,14285,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1609.2886518082662,3448.0,0.0,22462.0,5,1,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14974.666666666666,2,0,2_0,2_0 -3142,9.0,9.0,87.0,211,78,50,0.0,14286,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1337.5894569293073,2600.0,0.0,22517.0,5,1,3,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22517.0,4,0,4_0,4_0 -3143,0.0,0.0,28.0,111,35,30,0.0,14288,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2794.7813885388705,0.0,0.0,20485.0,1,4,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13656.666666666666,2,0,2_0,2_0 -3144,2.0,3.0,34.0,112,45,43,0.0,14289,0.0,0.0,125.0,0.0,2.0,3.0,1.0,3.0,1.8,3963.717420747666,2503.0,0.0,52664.0,1,2,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,29257.777777777777,5,0,5,5_0 -3145,2.0,6.0,54.0,111,33,10,0.0,1429,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3959.2011833531024,0.0,0.0,29480.0,1,4,5,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,29480.0,5,0,5,5_0 -3146,0.0,0.0,47.0,111,85,43,0.0,14290,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3024.0030370320264,0.0,0.0,7985.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7985.0,1,0,1_1,1_0 -3147,6.0,15.0,41.0,111,52,41,0.0,14293,0.0,0.0,300.0,0.0,1.0,2.0,0.0,1.0,1.0,3199.0760091368447,1144.0,0.0,12970.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,12970.0,2,0,2_0,2_0 -3148,28.0,28.0,79.0,111,74,60,0.0,14294,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2319.2735900481016,0.0,0.0,20536.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13690.666666666666,2,0,2_0,2_0 -3149,12.0,12.0,81.0,111,86,71,0.0,14295,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,6076.688855063051,1560.0,0.0,22330.0,5,4,8,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14886.666666666666,2,0,2_0,2_0 -3150,5.0,5.0,72.0,111,75,50,0.0,14299,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2582.650976154021,0.0,0.0,16723.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16723.0,2,0,2_0,2_0 -3151,5.0,7.0,53.0,111,48,43,0.0,14300,0.0,450.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2508.4952215675694,4732.0,0.0,50256.0,1,1,9,7.0,5,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,33504.0,5,0,5,5_0 -3152,3.0,3.0,64.0,111,77,50,0.0,14301,0.0,0.0,500.0,0.0,2.0,4.0,1.0,3.0,2.0,1242.610112170711,1729.0,0.0,43451.0,5,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21725.5,4,0,4_0,4_0 -3153,3.0,5.0,71.0,400,75,70,0.0,14303,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2024.3497749039786,1820.0,0.0,36231.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24154.0,4,0,4_0,4_1 -3154,0.0,1.0,28.0,111,43,41,0.0,14304,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2969.490525939744,0.0,0.0,48877.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,27153.888888888887,4,0,4_1,4_0 -3155,2.0,6.0,86.0,211,86,41,0.0,14305,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2286.7249881002754,0.0,0.0,53700.0,6,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,53700.0,5,0,5,5_0 -3156,11.0,11.0,57.0,112,13,50,0.0,14306,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2753.676745109329,3380.0,0.0,31209.0,1,1,5,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,20806.0,3,0,3_0,3_1 -3157,0.0,0.0,66.0,400,74,42,0.0,14309,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2122.5867956596608,0.0,0.0,22790.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15193.333333333334,2,0,2_0,2_1 -3158,4.0,12.0,29.0,111,43,20,0.0,1431,0.0,0.0,0.0,259.0,1.0,1.0,0.0,1.0,1.0,3455.50223354571,0.0,0.0,9519.0,3,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,9519.0,1,0,1_1,1_0 -3159,2.0,7.0,48.0,111,62,31,0.0,14310,0.0,99999.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1842.9665033929973,2600.0,0.0,71754.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,34168.57142857143,5,0,5,5_0 -3160,0.0,0.0,79.0,112,78,70,0.0,14311,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1948.1842877007903,0.0,0.0,14089.0,5,4,5,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14089.0,2,0,2_0,2_1 -3161,5.0,13.0,46.0,111,67,71,0.0,14312,0.0,50.0,0.0,312.0,2.0,3.0,2.0,4.0,2.1,4535.896141854887,2089.0,0.0,18680.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,8895.238095238095,1,0,1_0,1_0 -3162,2.0,11.0,64.0,112,72,60,0.0,14313,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,3030.3650519435487,6062.0,0.0,57327.0,5,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,38218.0,5,0,5,5_0 -3163,4.0,4.0,35.0,111,37,10,0.0,14314,0.0,1200.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1393.0781972362192,4486.0,0.0,107294.0,1,2,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,51092.38095238095,5,0,5,5_0 -3164,0.0,22.0,39.0,112,53,42,0.0,14315,0.0,100.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1259.615533564056,3769.0,0.0,51910.0,1,2,6,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24719.04761904762,4,0,4_0,4_0 -3165,3.0,3.0,39.0,400,69,50,0.0,14317,0.0,60.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2222.7630539932525,0.0,0.0,36919.0,1,3,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,24612.666666666668,4,0,4_0,4_1 -3166,2.0,11.0,73.0,112,75,50,0.0,14319,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2047.534736148603,5869.0,0.0,28857.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19238.0,3,0,3_0,3_0 -3167,6.0,8.0,70.0,300,78,70,0.0,1432,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2427.1446473584037,0.0,0.0,24701.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24701.0,4,0,4_0,4_1 -3168,0.0,0.0,78.0,111,77,71,0.0,14320,0.0,0.0,0.0,313.0,0.0,3.0,0.0,1.0,1.0,4413.261677395954,0.0,0.0,16186.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16186.0,2,0,2_1,2_0 -3169,13.0,13.0,81.0,111,77,70,0.0,14321,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3446.7860940893324,1560.0,0.0,25240.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16826.666666666668,2,0,2_0,2_0 -3170,2.0,2.0,44.0,111,33,20,0.0,14322,0.0,370.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1367.3667577434398,0.0,0.0,68704.0,1,2,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,29871.304347826088,5,0,5,5_0 -3171,2.0,7.0,34.0,211,46,31,2.0,14323,0.0,500.0,0.0,427.0,2.0,3.0,0.0,2.0,1.5,3237.153421346404,4264.0,6500.0,42378.0,1,3,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,28252.0,4,0,4_0,4_0 -3172,2.0,5.0,29.0,111,37,10,0.0,14325,0.0,0.0,0.0,533.0,2.0,2.0,0.0,2.0,1.5,3112.1341087701176,0.0,0.0,82115.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,54743.333333333336,5,0,5,5_0 -3173,7.0,16.0,66.0,120,71,70,0.0,14327,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,2020.9140071559477,0.0,0.0,30970.0,5,1,0,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,20646.666666666668,3,0,3_0,3_0 -3174,1.0,4.0,27.0,400,34,20,2.0,14328,0.0,1820.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,4106.677778896626,6673.0,9500.0,48539.0,1,3,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,32359.333333333332,5,0,5,5_1 -3175,3.0,7.0,32.0,111,63,43,0.0,14329,0.0,150.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1574.267743550395,0.0,0.0,52646.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,29247.777777777777,5,0,5,5_0 -3176,9.0,9.0,55.0,400,56,70,0.0,1433,0.0,140.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1390.8096861040092,1664.0,0.0,26732.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17821.333333333332,3,0,3_0,3_1 -3177,3.0,3.0,63.0,111,74,12,0.0,14330,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2060.9330306199818,0.0,0.0,93100.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,62066.666666666664,5,0,5,5_0 -3178,5.0,12.0,51.0,112,62,50,0.0,14332,0.0,100239.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,1495.295579228734,2340.0,0.0,54565.0,1,1,7,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,27282.5,4,0,4_0,4_1 -3179,6.0,6.0,77.0,111,74,12,0.0,14333,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2877.4413175558097,3569.0,0.0,89527.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,59684.666666666664,5,0,5,5_0 -3180,7.0,9.0,55.0,111,64,60,0.0,14335,0.0,0.0,100.0,0.0,2.0,5.0,1.0,3.0,2.0,1608.9727201293597,0.0,0.0,26596.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,13298.0,2,0,2_0,2_0 -3181,3.0,3.0,64.0,112,78,60,0.0,14339,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2753.806368706473,0.0,0.0,38227.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25484.666666666668,4,0,4_0,4_1 -3182,6.0,6.0,67.0,112,72,44,0.0,1434,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2283.738930592594,0.0,0.0,54701.0,5,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,36467.333333333336,5,0,5,5_1 -3183,3.0,7.0,36.0,111,47,43,0.0,14340,0.0,400.0,0.0,419.0,2.0,4.0,0.0,2.0,1.5,2463.048291873831,2756.0,0.0,35006.0,1,3,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,23337.333333333332,4,0,4_0,4_0 -3184,28.0,28.0,76.0,112,72,50,0.0,14341,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2075.836607622293,0.0,0.0,25610.0,5,1,10,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,17073.333333333332,3,0,3_0,3_0 -3185,0.0,13.0,26.0,221,62,41,0.0,14342,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1732.199491987036,0.0,0.0,13312.0,4,4,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,13312.0,2,0,2_1,2_0 -3186,0.0,0.0,71.0,111,78,60,0.0,14344,0.0,0.0,0.0,194.0,0.0,4.0,0.0,1.0,1.0,2778.8855121469433,0.0,0.0,15585.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15585.0,2,0,2_1,2_0 -3187,2.0,2.0,47.0,111,67,50,0.0,14345,0.0,99999.0,0.0,0.0,1.0,3.0,2.0,4.0,2.3,1601.2496258883066,1040.0,0.0,25750.0,1,3,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11195.652173913044,1,0,1_1,1_0 -3188,0.0,0.0,81.0,221,78,50,0.0,14346,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2102.4395736327083,0.0,0.0,11765.0,5,1,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11765.0,1,0,1_0,1_0 -3189,3.0,10.0,39.0,111,56,50,0.0,14352,0.0,0.0,0.0,0.0,1.0,5.0,4.0,5.0,2.6,891.8766159948561,0.0,0.0,21830.0,1,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8396.153846153846,1,0,1_1,1_0 -3190,1.0,1.0,54.0,111,31,50,1.0,14354,0.0,240.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3179.17725039023,3897.0,33000.0,26179.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26179.0,4,0,4_0,4_0 -3191,7.0,7.0,45.0,111,64,71,0.0,14357,0.0,700.0,50.0,479.0,2.0,4.0,2.0,4.0,2.5,2108.699866180275,1768.0,0.0,34355.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,13742.0,2,0,2_0,2_0 -3192,5.0,5.0,46.0,111,46,50,0.0,14359,0.0,99999.0,0.0,723.0,2.0,4.0,1.0,3.0,2.0,3885.6091764930584,3951.0,0.0,33285.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16642.5,2,0,2_0,2_0 -3193,2.0,2.0,46.0,112,38,50,0.0,1436,0.0,850.0,100.0,0.0,2.0,3.0,0.0,2.0,1.5,1068.799874821014,5848.0,0.0,60216.0,1,3,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,40144.0,5,0,5,5_0 -3194,1.0,6.0,49.0,112,63,50,2.0,14361,0.0,700.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1740.190541610931,8746.0,8700.0,54453.0,1,1,6,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,0.0,4.0,27226.5,4,0,4_0,4_1 -3195,2.0,19.0,44.0,111,62,50,0.0,14362,0.0,150.0,0.0,175.0,1.0,4.0,3.0,5.0,2.4,1975.5227161807877,0.0,0.0,27968.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11653.333333333334,1,0,1_1,1_0 -3196,3.0,3.0,62.0,111,74,12,0.0,14364,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3413.802964407035,0.0,0.0,63206.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,42137.333333333336,5,0,5,5_0 -3197,1.0,25.0,56.0,111,52,50,2.0,14365,0.0,180.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2518.8147754088077,3276.0,7500.0,44258.0,1,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,29505.333333333332,5,0,5,5_0 -3198,2.0,2.0,56.0,112,42,41,0.0,14367,0.0,99999.0,0.0,0.0,1.0,11.0,0.0,2.0,1.5,1427.9895172939641,2605.0,0.0,70403.0,1,1,6,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,46935.333333333336,5,0,5,5_0 -3199,0.0,0.0,90.0,111,86,41,0.0,14369,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3401.497268269219,0.0,0.0,11570.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11570.0,1,0,1_0,1_0 -3200,0.0,0.0,81.0,111,77,71,0.0,1437,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3214.9203576620953,0.0,0.0,15290.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10193.333333333334,1,0,1_1,1_0 -3201,0.0,0.0,28.0,111,38,12,0.0,14371,0.0,0.0,0.0,875.0,1.0,2.0,0.0,1.0,1.0,3747.7144813742334,0.0,0.0,38030.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38030.0,5,0,5,5_0 -3202,0.0,0.0,36.0,111,31,12,0.0,14374,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1793.6843783325414,0.0,0.0,259103.0,1,2,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,143946.1111111111,5,0,5,5_0 -3203,1.0,2.0,39.0,300,62,50,0.0,14375,0.0,150.0,700.0,0.0,2.0,4.0,2.0,4.0,2.1,1715.538421147666,2543.0,0.0,37506.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17860.0,3,0,3_0,3_1 -3204,5.0,10.0,47.0,111,55,71,0.0,14376,0.0,0.0,100199.0,777.0,3.0,4.0,2.0,4.0,2.5,2691.3236200626966,2600.0,0.0,51179.0,1,3,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,20471.6,3,0,3_0,3_0 -3205,14.0,16.0,75.0,400,78,50,0.0,14377,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4555.74459918368,2704.0,0.0,26848.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,17898.666666666668,3,0,3_0,3_0 -3206,8.0,11.0,38.0,112,69,31,0.0,14378,0.0,0.0,0.0,0.0,2.0,7.0,4.0,6.0,2.9,1220.6571655077046,0.0,0.0,30650.0,1,1,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10568.96551724138,1,0,1_0,1_1 -3207,7.0,9.0,48.0,112,38,42,0.0,1438,0.0,350.0,0.0,0.0,1.0,6.0,3.0,5.0,2.8,1130.1127381275583,3557.0,0.0,48430.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17296.428571428572,3,0,3_0,3_1 -3208,5.0,17.0,40.0,111,62,71,0.0,14380,0.0,0.0,99999.0,767.0,2.0,3.0,2.0,4.0,2.3,4776.452805721484,0.0,0.0,44565.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,19376.08695652174,3,0,3_0,3_0 -3209,0.0,0.0,32.0,111,38,20,1.0,14381,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2664.8285980585906,0.0,22000.0,74570.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,49713.333333333336,5,0,5,5_0 -3210,1.0,5.0,33.0,111,47,44,2.0,14383,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4610.775307152382,2600.0,9000.0,16910.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16910.0,3,0,3_0,3_0 -3211,2.0,17.0,57.0,112,69,70,0.0,14385,0.0,170.0,0.0,123.0,2.0,4.0,1.0,2.0,1.5,1457.321162828856,0.0,0.0,25501.0,1,3,8,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,17000.666666666668,3,0,3_1,3_1 -3212,2.0,2.0,75.0,111,78,70,0.0,14386,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3696.1463271679495,0.0,0.0,18499.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,18499.0,3,0,3_1,3_0 -3213,3.0,4.0,59.0,111,75,33,0.0,14389,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1736.257096739072,3831.0,0.0,36918.0,5,1,8,6.0,3,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,24612.0,4,0,4_0,4_0 -3214,0.0,9.0,45.0,111,34,20,0.0,1439,0.0,0.0,200.0,493.0,1.0,4.0,1.0,2.0,1.5,1720.5163925017832,2048.0,0.0,30080.0,1,3,5,4.0,2,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,20053.333333333332,3,0,3_0,3_0 -3215,12.0,12.0,47.0,111,63,50,0.0,14390,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,4371.303726833911,0.0,0.0,10348.0,4,1,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,5748.888888888889,1,0,1_0,1_0 -3216,8.0,8.0,43.0,111,46,42,0.0,14391,0.0,550.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,2216.0479699576363,2632.0,0.0,36239.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,20132.777777777777,3,0,3_1,3_0 -3217,6.0,7.0,60.0,111,78,50,0.0,14393,0.0,0.0,0.0,127.0,0.0,2.0,0.0,1.0,1.0,2681.5841097253615,0.0,0.0,16559.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,16559.0,2,0,2_1,2_0 -3218,6.0,6.0,46.0,111,33,31,0.0,14394,0.0,210.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1234.628296426617,2746.0,0.0,75857.0,1,2,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,30342.8,5,0,5,5_0 -3219,2.0,6.0,64.0,300,78,50,0.0,14395,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1175.203741971051,0.0,0.0,22180.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22180.0,4,0,4_0,4_1 -3220,6.0,7.0,54.0,111,46,41,0.0,14396,0.0,0.0,150.0,359.0,1.0,3.0,1.0,2.0,1.5,3037.5071855532206,2608.0,0.0,27170.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,18113.333333333332,3,0,3_0,3_0 -3221,0.0,0.0,47.0,111,63,71,0.0,14397,0.0,0.0,0.0,250.0,2.0,4.0,3.0,5.0,2.8,3653.8705288596852,0.0,0.0,27280.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9742.857142857143,1,0,1_1,1_0 -3222,8.0,15.0,64.0,111,78,71,0.0,14399,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2309.106322100127,1560.0,0.0,22470.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14980.0,2,0,2_0,2_0 -3223,3.0,3.0,63.0,111,77,70,0.0,14401,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2666.8689878332643,0.0,0.0,35200.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23466.666666666668,4,0,4_0,4_0 -3224,1.0,4.0,33.0,112,38,12,2.0,14405,0.0,140.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1332.0027809080027,0.0,17000.0,81259.0,1,1,10,4.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,45143.88888888889,5,0,5,5_0 -3225,2.0,11.0,56.0,400,52,70,0.0,14407,0.0,50.0,40.0,350.0,2.0,3.0,0.0,2.0,1.5,1071.6180986522472,3120.0,0.0,38010.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25340.0,4,0,4_0,4_1 -3226,1.0,22.0,35.0,111,63,71,2.0,14409,0.0,99999.0,0.0,0.0,1.0,2.0,1.0,3.0,1.8,3179.6136743797065,0.0,600.0,13570.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,7538.888888888889,1,0,1_1,1_0 -3227,4.0,19.0,34.0,112,21,50,0.0,1441,0.0,0.0,0.0,0.0,1.0,2.0,2.0,4.0,2.1,5591.469192665953,0.0,0.0,63035.0,1,2,9,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,30016.666666666664,5,0,5,5_0 -3228,7.0,14.0,57.0,111,63,50,0.0,14411,0.0,0.0,0.0,288.0,2.0,5.0,0.0,2.0,1.5,2700.682658438558,1342.0,0.0,26052.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17368.0,3,0,3_0,3_0 -3229,1.0,1.0,48.0,221,52,50,1.0,14412,0.0,0.0,60.0,0.0,2.0,4.0,2.0,4.0,2.3,1809.8784873030982,0.0,26000.0,48376.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,21033.04347826087,3,0,3_0,3_0 -3230,1.0,1.0,46.0,111,33,12,0.0,14413,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1799.672895172153,1404.0,0.0,78680.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,52453.333333333336,5,0,5,5_0 -3231,0.0,0.0,52.0,112,64,50,1.0,14414,0.0,200.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1960.4002021689166,711.0,12200.0,43766.0,1,2,8,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,29177.333333333332,5,0,5,5_1 -3232,6.0,17.0,39.0,111,21,71,0.0,14415,0.0,0.0,0.0,0.0,1.0,4.0,6.0,8.0,4.1,3984.8544151008246,1307.0,0.0,24624.0,1,3,6,5.0,4,3.0,1.0,0.0,0,0,1,0,0,1,1.0,2.0,6005.8536585365855,1,0,1_1,1_0 -3233,0.0,0.0,58.0,112,67,71,0.0,14419,0.0,0.0,0.0,416.0,2.0,5.0,1.0,3.0,2.0,2103.0314356597,0.0,0.0,22270.0,1,3,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11135.0,1,0,1_0,1_0 -3234,1.0,1.0,38.0,111,43,41,1.0,1442,0.0,0.0,300.0,424.0,2.0,3.0,1.0,3.0,1.8,3696.9537845583613,859.0,11200.0,38216.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21231.11111111111,3,0,3_0,3_0 -3235,7.0,7.0,55.0,111,77,60,0.0,14420,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2116.576002598269,0.0,0.0,18980.0,5,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18980.0,3,0,3_0,3_0 -3236,11.0,11.0,62.0,111,68,41,0.0,14424,0.0,120.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1682.9621801827225,3016.0,0.0,39673.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26448.666666666668,4,0,4_0,4_0 -3237,9.0,9.0,78.0,111,78,71,0.0,14425,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2121.53965388588,0.0,0.0,30638.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20425.333333333332,3,0,3_0,3_0 -3238,3.0,3.0,55.0,112,34,31,0.0,14427,0.0,350.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2815.710890249928,6935.0,0.0,50450.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,33633.333333333336,5,0,5,5_1 -3239,11.0,17.0,65.0,111,78,71,0.0,14429,0.0,0.0,0.0,137.0,2.0,4.0,4.0,6.0,3.5,2335.7861860527646,0.0,0.0,53662.0,5,3,6,5.0,4,3.0,0.0,0.0,0,0,1,0,0,1,0.0,3.0,15332.0,2,0,2_1,2_0 -3240,6.0,11.0,49.0,112,52,50,0.0,14430,0.0,156.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2333.8063855776513,790.0,0.0,20574.0,1,2,9,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20574.0,3,0,3_0,3_0 -3241,4.0,4.0,53.0,111,37,41,0.0,14431,0.0,670.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,3113.747975720782,0.0,0.0,69821.0,1,2,9,7.0,4,3.0,1.0,1.0,0,0,0,1,0,0,0.0,3.0,34910.5,5,0,5,5_0 -3242,3.0,3.0,75.0,111,21,50,0.0,14432,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3654.321202262007,0.0,0.0,12283.0,1,1,10,8.0,1,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,12283.0,1,0,1_0,1_0 -3243,3.0,14.0,28.0,111,31,10,0.0,14433,0.0,0.0,99999.0,0.0,2.0,3.0,0.0,2.0,1.5,3998.5302336621467,2294.0,0.0,9032.0,1,4,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,6021.333333333333,1,0,1_0,1_0 -3244,3.0,3.0,79.0,111,78,50,0.0,14435,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2131.5465898904013,0.0,0.0,28109.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18739.333333333332,3,0,3_0,3_0 -3245,6.0,11.0,85.0,400,75,71,0.0,14437,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2244.687025786902,0.0,0.0,25400.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16933.333333333332,3,0,3_0,3_1 -3246,2.0,14.0,65.0,111,78,70,0.0,14438,0.0,0.0,0.0,251.0,0.0,2.0,0.0,1.0,1.0,3586.937068660392,0.0,0.0,13563.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13563.0,2,0,2_0,2_0 -3247,1.0,1.0,64.0,111,71,70,0.0,14439,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2957.968797417416,4056.0,0.0,9560.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,9560.0,1,0,1_0,1_0 -3248,0.0,0.0,61.0,111,68,71,0.0,1444,0.0,0.0,0.0,380.0,1.0,5.0,0.0,1.0,1.0,3491.920440262305,0.0,0.0,5855.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,5855.0,1,0,1_0,1_0 -3249,3.0,3.0,61.0,112,74,41,0.0,14440,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1813.659115363269,4163.0,0.0,50941.0,5,2,4,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,33960.666666666664,5,0,5,5_1 -3250,3.0,8.0,42.0,112,46,50,0.0,14442,0.0,1050.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,3654.564017983756,2392.0,0.0,40359.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16143.6,2,0,2_0,2_0 -3251,0.0,0.0,27.0,111,35,30,0.0,14443,0.0,0.0,0.0,238.0,1.0,1.0,0.0,1.0,1.0,3098.932834072681,0.0,0.0,15757.0,1,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15757.0,2,0,2_1,2_0 -3252,8.0,8.0,35.0,112,37,31,0.0,14445,0.0,100299.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2213.1945946083483,0.0,0.0,79002.0,1,2,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,37620.0,5,0,5,5_1 -3253,3.0,13.0,29.0,111,67,50,0.0,14446,0.0,0.0,150.0,226.0,1.0,2.0,0.0,1.0,1.0,2626.274848376598,3354.0,0.0,17140.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17140.0,3,0,3_0,3_0 -3254,7.0,7.0,76.0,111,77,70,0.0,14447,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2767.74242558412,0.0,0.0,20127.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20127.0,3,0,3_0,3_0 -3255,11.0,11.0,67.0,111,77,60,0.0,14448,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1844.9086338344605,0.0,0.0,16667.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16667.0,2,0,2_0,2_0 -3256,0.0,6.0,61.0,211,78,70,2.0,14450,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1546.3024336404003,1040.0,8990.0,24374.0,5,3,3,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16249.333333333334,2,0,2_0,2_0 -3257,2.0,2.0,56.0,111,33,50,0.0,14453,0.0,200.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1786.2193991832971,0.0,0.0,57642.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,23056.8,4,0,4_0,4_0 -3258,4.0,4.0,34.0,111,23,12,0.0,14454,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3295.989412406356,0.0,0.0,43199.0,1,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,43199.0,5,0,5,5_0 -3259,1.0,4.0,43.0,112,67,41,2.0,14455,0.0,280.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2129.752403741523,0.0,11300.0,25575.0,1,1,8,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15984.375,2,0,2_0,2_1 -3260,3.0,3.0,80.0,400,72,50,0.0,14457,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1780.1496352474028,0.0,0.0,24850.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16566.666666666668,2,0,2_0,2_0 -3261,15.0,15.0,80.0,300,74,70,0.0,14458,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1804.735277030454,0.0,0.0,28926.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19284.0,3,0,3_0,3_1 -3262,0.0,0.0,54.0,111,77,71,0.0,1446,0.0,0.0,0.0,372.0,0.0,3.0,0.0,1.0,1.0,3053.5867687776704,0.0,0.0,8562.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8562.0,1,0,1_1,1_0 -3263,1.0,5.0,36.0,111,23,43,2.0,14461,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,2830.862360122972,0.0,32000.0,146970.0,1,2,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,81650.0,5,0,5,5_0 -3264,0.0,0.0,36.0,111,55,10,0.0,14463,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2862.5336515918275,0.0,0.0,11820.0,4,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,11820.0,1,0,1_0,1_0 -3265,0.0,0.0,27.0,111,48,31,0.0,14464,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4454.026086914992,0.0,0.0,21687.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21687.0,3,0,3_0,3_0 -3266,15.0,16.0,58.0,111,38,31,0.0,14466,0.0,140.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2397.7186352655162,2340.0,0.0,79279.0,1,1,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,39639.5,5,0,5,5_0 -3267,14.0,17.0,76.0,112,78,71,0.0,14467,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2864.796176171821,0.0,0.0,16310.0,5,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16310.0,2,0,2_0,2_0 -3268,15.0,17.0,63.0,111,34,10,0.0,14469,0.0,170.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3311.4858835315836,3640.0,0.0,107470.0,1,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,71646.66666666667,5,0,5,5_0 -3269,1.0,3.0,54.0,120,56,71,0.0,1447,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2279.775405207514,1560.0,0.0,6170.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,4113.333333333333,1,0,1_0,1_1 -3270,0.0,0.0,71.0,111,77,50,0.0,14470,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3124.711594738301,0.0,0.0,15773.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15773.0,2,0,2_0,2_0 -3271,23.0,23.0,84.0,112,78,71,0.0,14472,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4698.739002072026,1711.0,0.0,13860.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9240.0,1,0,1_0,1_1 -3272,6.0,12.0,61.0,111,75,50,0.0,14473,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1362.7755223519703,4865.0,0.0,42790.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28526.666666666668,4,0,4_0,4_0 -3273,11.0,16.0,82.0,400,71,70,0.0,14475,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2075.6183517203785,0.0,0.0,13526.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13526.0,2,0,2_0,2_1 -3274,7.0,7.0,74.0,111,74,43,0.0,14477,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2329.6338257927546,0.0,0.0,46308.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,30872.0,5,0,5,5_0 -3275,4.0,4.0,65.0,111,78,50,0.0,1448,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4033.582369968843,0.0,0.0,11999.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11999.0,1,0,1_0,1_0 -3276,1.0,1.0,72.0,112,74,50,1.0,14480,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1146.121658235806,0.0,27000.0,67476.0,5,1,3,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,44984.0,5,0,5,5_1 -3277,2.0,9.0,32.0,120,85,31,0.0,14481,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2644.836912184114,4940.0,0.0,14124.0,4,3,0,3.0,5,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,7846.666666666666,1,0,1_1,1_0 -3278,15.0,15.0,58.0,112,75,10,0.0,14483,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1130.3516077603376,0.0,0.0,29515.0,5,1,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29515.0,5,0,5,5_0 -3279,9.0,11.0,77.0,111,56,71,0.0,14485,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1491.774826401887,0.0,0.0,25067.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,16711.333333333332,2,0,2_0,2_0 -3280,2.0,6.0,49.0,112,21,50,0.0,14486,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.6,1432.1894097099334,3640.0,0.0,58292.0,1,3,4,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22420.0,4,0,4_0,4_1 -3281,16.0,16.0,62.0,111,75,31,0.0,14488,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2971.4286601144054,0.0,0.0,20622.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20622.0,3,0,3_0,3_0 -3282,7.0,7.0,42.0,111,43,20,0.0,14489,0.0,400.0,150.0,290.0,2.0,4.0,0.0,2.0,1.5,1220.4574929152802,0.0,0.0,42710.0,1,3,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,28473.333333333332,4,0,4_0,4_0 -3283,4.0,10.0,40.0,111,54,50,0.0,1449,0.0,300.0,0.0,322.0,1.0,5.0,0.0,1.0,1.0,1357.1564574037016,1144.0,0.0,11813.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11813.0,1,0,1_1,1_0 -3284,1.0,4.0,45.0,111,46,41,2.0,14492,0.0,60.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1230.9512052629461,0.0,12000.0,44082.0,1,2,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22041.0,4,0,4_0,4_0 -3285,3.0,7.0,44.0,111,34,31,0.0,14494,0.0,100.0,0.0,0.0,1.0,4.0,4.0,5.0,2.6,2144.404936244185,4090.0,0.0,47264.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,18178.46153846154,3,0,3_0,3_0 -3286,11.0,11.0,80.0,211,78,71,0.0,14495,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2234.280926213858,0.0,0.0,18940.0,5,4,3,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18940.0,3,0,3_0,3_0 -3287,7.0,8.0,74.0,300,78,60,0.0,14496,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2647.7897519979697,2404.0,0.0,22156.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14770.666666666666,2,0,2_0,2_1 -3288,12.0,16.0,89.0,112,71,71,0.0,145,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3543.6807109577667,0.0,0.0,16580.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11053.333333333334,1,0,1_0,1_1 -3289,1.0,1.0,25.0,111,47,42,2.0,1450,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.5,3538.228959596642,0.0,9100.0,19373.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12915.333333333334,2,0,2_0,2_0 -3290,0.0,0.0,63.0,111,75,41,0.0,14500,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4583.745716530249,0.0,0.0,13969.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13969.0,2,0,2_0,2_0 -3291,3.0,3.0,75.0,111,75,70,0.0,14501,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2563.2888115201617,3224.0,0.0,30282.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,20188.0,3,0,3_0,3_0 -3292,9.0,9.0,72.0,111,77,43,0.0,14502,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2766.2955578585124,0.0,0.0,22731.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15154.0,2,0,2_0,2_0 -3293,11.0,12.0,43.0,111,63,50,0.0,14503,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3280.865209600026,0.0,0.0,35020.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,16676.190476190477,2,0,2_1,2_0 -3294,0.0,12.0,37.0,211,52,71,0.0,14504,0.0,0.0,90.0,287.0,1.0,3.0,0.0,1.0,1.0,2969.8864044746965,0.0,0.0,15222.0,1,3,3,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15222.0,2,0,2_0,2_0 -3295,3.0,13.0,66.0,111,52,50,0.0,14505,0.0,350.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2208.7797202375623,1300.0,0.0,54280.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,54280.0,5,0,5,5_0 -3296,3.0,31.0,70.0,400,77,70,0.0,14506,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1929.576876822902,0.0,0.0,22960.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,15306.666666666666,2,0,2_0,2_1 -3297,11.0,11.0,53.0,300,21,50,0.0,14509,0.0,450.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2226.5372135408106,0.0,0.0,28330.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18886.666666666668,3,0,3_0,3_1 -3298,3.0,12.0,54.0,111,48,41,0.0,1451,0.0,560.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2079.6784041320084,3120.0,0.0,39478.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,39478.0,5,0,5,5_0 -3299,3.0,7.0,47.0,111,47,50,0.0,14510,0.0,200.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1196.9764533975808,5586.0,0.0,45029.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18762.083333333336,3,0,3_0,3_0 -3300,2.0,2.0,43.0,111,52,50,0.0,14514,0.0,850.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,3029.623128943818,5662.0,0.0,32398.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,12959.2,2,0,2_0,2_0 -3301,5.0,13.0,57.0,111,34,10,0.0,14515,0.0,0.0,0.0,950.0,1.0,3.0,1.0,2.0,1.5,3331.5561720903797,0.0,0.0,44316.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29544.0,5,0,5,5_0 -3302,0.0,10.0,50.0,400,52,50,0.0,14516,0.0,100.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2335.9896755673453,1302.0,0.0,13383.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13383.0,2,0,2_0,2_1 -3303,0.0,0.0,76.0,120,71,71,0.0,14521,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3445.47335292003,0.0,0.0,11204.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11204.0,1,0,1_0,1_1 -3304,10.0,10.0,74.0,300,78,70,0.0,14524,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2312.971282986547,0.0,0.0,18929.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18929.0,3,0,3_0,3_1 -3305,5.0,8.0,53.0,111,64,50,0.0,14525,0.0,100.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3451.4923559014865,0.0,0.0,18913.0,1,2,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,12608.666666666666,2,0,2_0,2_0 -3306,0.0,0.0,56.0,111,45,60,0.0,14526,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2453.049592204189,0.0,0.0,36514.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24342.666666666668,4,0,4_0,4_0 -3307,5.0,6.0,50.0,111,54,60,0.0,14528,0.0,400.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2178.6936898988447,3120.0,0.0,44172.0,1,1,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17668.8,3,0,3_0,3_0 -3308,6.0,8.0,33.0,300,43,33,0.0,14529,0.0,590.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2550.425594023389,2341.0,0.0,44215.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21054.761904761905,3,0,3_0,3_1 -3309,2.0,6.0,49.0,111,65,50,0.0,1453,0.0,10.0,0.0,325.0,1.0,2.0,0.0,1.0,1.0,1945.6871104694503,0.0,0.0,20478.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20478.0,3,0,3_0,3_0 -3310,0.0,21.0,57.0,112,38,31,0.0,14530,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,2736.3759114850723,2600.0,0.0,55013.0,1,2,10,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,30562.777777777777,5,0,5,5_0 -3311,12.0,12.0,69.0,300,77,70,0.0,14531,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1379.849602371096,4472.0,0.0,13832.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13832.0,2,0,2_0,2_1 -3312,5.0,5.0,67.0,300,74,20,0.0,14532,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,621.6086014916766,0.0,0.0,16629.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11086.0,1,0,1_0,1_1 -3313,3.0,8.0,22.0,111,46,31,0.0,14533,0.0,0.0,84.0,0.0,1.0,1.0,0.0,1.0,1.0,3677.3004067902543,0.0,0.0,21634.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21634.0,3,0,3_0,3_0 -3314,5.0,23.0,64.0,112,77,71,0.0,14535,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,3182.680726239387,1560.0,0.0,51768.0,5,2,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20707.2,3,0,3_0,3_0 -3315,2.0,2.0,73.0,120,77,70,0.0,14537,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3410.9801534786197,0.0,0.0,27077.0,5,1,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27077.0,4,0,4_0,4_0 -3316,0.0,0.0,25.0,111,84,10,0.0,14538,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3725.98817050213,0.0,0.0,2840.0,3,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,2840.0,1,0,1_0,1_0 -3317,2.0,3.0,54.0,112,37,12,0.0,14539,0.0,350.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1890.6370955211676,0.0,0.0,105236.0,1,2,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,70157.33333333333,5,0,5,5_1 -3318,10.0,12.0,58.0,111,62,50,0.0,14540,0.0,299997.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1405.9261253409513,0.0,0.0,66228.0,1,1,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,33114.0,5,0,5,5_0 -3319,0.0,0.0,40.0,111,22,20,1.0,14541,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,4352.193742420157,2402.0,72000.0,224265.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,106792.85714285714,5,0,5,5_0 -3320,13.0,21.0,56.0,111,75,50,0.0,14542,0.0,300.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1430.0711230900718,6500.0,0.0,41782.0,5,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,20891.0,3,0,3_0,3_0 -3321,0.0,0.0,30.0,111,54,41,0.0,14544,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2879.2181696168896,0.0,0.0,35670.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35670.0,5,0,5,5_0 -3322,0.0,0.0,29.0,111,46,20,0.0,14545,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4325.0276372910985,0.0,0.0,26242.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26242.0,4,0,4_0,4_0 -3323,0.0,0.0,30.0,111,63,71,0.0,14546,0.0,0.0,0.0,0.0,3.0,3.0,0.0,3.0,2.0,4482.555373263192,0.0,0.0,19380.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9690.0,1,0,1_0,1_0 -3324,1.0,2.0,59.0,221,74,42,2.0,1455,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2998.800009568144,0.0,10500.0,37817.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,37817.0,5,0,5,5_0 -3325,2.0,3.0,56.0,300,62,50,0.0,14550,0.0,120.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2592.184760927726,2341.0,0.0,23714.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11857.0,1,0,1_0,1_1 -3326,14.0,14.0,52.0,112,38,50,0.0,14551,0.0,100.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1227.5340150583872,2548.0,0.0,69930.0,1,2,10,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,34965.0,5,0,5,5_0 -3327,0.0,15.0,55.0,400,78,71,0.0,14553,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,3805.949543727455,1560.0,0.0,1510.0,7,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,755.0,1,0,1_0,1_1 -3328,2.0,2.0,40.0,111,47,31,0.0,14554,0.0,0.0,250.0,0.0,1.0,2.0,0.0,1.0,1.0,4241.52365715855,6760.0,0.0,25040.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,25040.0,4,0,4_0,4_0 -3329,11.0,12.0,54.0,111,45,30,0.0,14555,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3440.966339868981,1820.0,0.0,20691.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20691.0,3,0,3_0,3_0 -3330,4.0,6.0,25.0,111,53,50,0.0,14556,0.0,99999.0,0.0,352.0,2.0,3.0,1.0,3.0,1.8,4719.997810323946,0.0,0.0,44830.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24905.555555555555,4,0,4_0,4_0 -3331,7.0,7.0,69.0,111,74,60,0.0,14557,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3265.410752387965,4731.0,0.0,58127.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,38751.333333333336,5,0,5,5_0 -3332,4.0,9.0,44.0,111,64,43,0.0,14558,0.0,200.0,0.0,240.0,1.0,2.0,0.0,1.0,1.0,3794.6415848139977,0.0,0.0,23102.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23102.0,4,0,4_0,4_0 -3333,8.0,15.0,57.0,111,43,33,0.0,14559,0.0,200.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2669.374823522427,0.0,0.0,49070.0,4,3,4,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,32713.333333333332,5,0,5,5_0 -3334,0.0,0.0,88.0,111,72,70,0.0,14560,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2998.2236610843324,0.0,0.0,15420.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15420.0,2,0,2_0,2_0 -3335,3.0,3.0,57.0,111,43,33,0.0,14562,0.0,400.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1399.2502527471515,2340.0,0.0,40286.0,1,1,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,26857.333333333332,4,0,4_0,4_0 -3336,5.0,5.0,77.0,111,74,43,0.0,14563,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2859.8583947728175,0.0,0.0,55089.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,36726.0,5,0,5,5_0 -3337,4.0,4.0,48.0,111,22,10,0.0,14564,0.0,0.0,0.0,0.0,2.0,10.0,2.0,4.0,2.1,2478.5082383282534,2606.0,0.0,98479.0,1,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,46894.7619047619,5,0,5,5_0 -3338,2.0,5.0,69.0,300,72,50,0.0,14565,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2727.3321852071117,3016.0,0.0,8505.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8505.0,1,0,1_0,1_1 -3339,6.0,11.0,53.0,111,67,50,0.0,14566,0.0,0.0,0.0,0.0,1.0,4.0,5.0,7.0,3.2,935.8705245107802,4160.0,0.0,36935.0,4,3,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,11542.1875,1,0,1_1,1_0 -3340,11.0,22.0,49.0,400,63,71,0.0,14567,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2095.542054558506,1300.0,0.0,29374.0,1,3,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,1,1.0,2.0,16318.888888888889,2,0,2_1,2_1 -3341,0.0,0.0,50.0,112,43,41,1.0,14568,0.0,400.0,160.0,0.0,2.0,6.0,0.0,2.0,1.5,2075.5632864535933,2657.0,15131.0,52459.0,1,1,7,0.0,3,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,34972.666666666664,5,0,5,5_1 -3342,1.0,1.0,55.0,112,68,50,0.0,14570,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2362.5869250916585,1122.0,0.0,11834.0,1,1,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11834.0,1,0,1_0,1_1 -3343,1.0,1.0,63.0,112,74,41,1.0,14572,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,7259.335766178467,5855.0,25500.0,44645.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,29763.333333333332,5,0,5,5_0 -3344,11.0,11.0,56.0,221,21,50,0.0,14573,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2565.05921506013,0.0,0.0,47685.0,1,1,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23842.5,4,0,4_0,4_0 -3345,16.0,16.0,75.0,112,74,41,0.0,14575,0.0,300.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1896.9191183771827,3796.0,0.0,58532.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,39021.333333333336,5,0,5,5_1 -3346,5.0,5.0,57.0,111,22,70,0.0,14576,0.0,500.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3538.5648906279516,3536.0,0.0,38472.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,25648.0,4,0,4_0,4_0 -3347,0.0,0.0,72.0,111,77,70,0.0,14577,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1546.0748424943226,0.0,0.0,18604.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18604.0,3,0,3_1,3_0 -3348,15.0,15.0,62.0,112,78,71,0.0,14578,0.0,200.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2945.299147963879,1820.0,0.0,18468.0,5,4,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12312.0,1,0,1_0,1_1 -3349,1.0,20.0,53.0,221,72,20,2.0,1458,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4832.138010592045,0.0,100.0,5310.0,5,4,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,5310.0,1,0,1_0,1_0 -3350,9.0,9.0,71.0,111,77,70,0.0,14581,0.0,0.0,0.0,477.0,0.0,4.0,0.0,1.0,1.0,3696.5236893176243,2728.0,0.0,13612.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13612.0,2,0,2_1,2_0 -3351,7.0,7.0,63.0,111,21,70,0.0,14582,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,6443.471932518273,0.0,0.0,11740.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11740.0,1,0,1_1,1_0 -3352,1.0,2.0,34.0,112,62,50,2.0,14583,0.0,440.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1308.736621010999,0.0,12000.0,53505.0,1,2,6,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25478.571428571428,4,0,4_0,4_0 -3353,8.0,12.0,50.0,111,46,60,0.0,14584,0.0,0.0,50.0,474.0,1.0,4.0,2.0,3.0,2.0,3295.03380033195,1560.0,0.0,35100.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17550.0,3,0,3_0,3_0 -3354,6.0,13.0,35.0,111,54,42,0.0,14586,0.0,0.0,400.0,343.0,1.0,2.0,1.0,2.0,1.3,3002.4215936955056,3068.0,0.0,34020.0,1,3,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,26169.23076923077,4,0,4_0,4_0 -3355,3.0,7.0,48.0,111,45,20,0.0,14587,0.0,0.0,125.0,0.0,2.0,6.0,1.0,3.0,1.8,2106.339482119152,1873.0,0.0,45877.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,25487.222222222223,4,0,4_0,4_0 -3356,3.0,3.0,56.0,111,38,31,0.0,1459,0.0,450.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1674.424876204621,0.0,0.0,53540.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26770.0,4,0,4_0,4_0 -3357,4.0,7.0,55.0,111,56,71,0.0,14590,0.0,0.0,70.0,0.0,2.0,3.0,0.0,2.0,1.5,4530.682110472109,2080.0,0.0,18980.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,12653.333333333334,2,0,2_0,2_0 -3358,5.0,5.0,73.0,111,74,60,0.0,14592,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1656.1431587005134,0.0,0.0,26696.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17797.333333333332,3,0,3_0,3_0 -3359,13.0,13.0,57.0,111,34,20,0.0,14594,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4008.9215413237966,1040.0,0.0,41973.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,41973.0,5,0,5,5_0 -3360,6.0,11.0,46.0,300,21,50,0.0,14595,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3359.5909053444148,0.0,0.0,25377.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25377.0,4,0,4_0,4_1 -3361,6.0,11.0,48.0,300,62,50,0.0,14596,0.0,0.0,150.0,0.0,1.0,4.0,0.0,1.0,1.0,3004.249576593028,1071.0,0.0,16988.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,16988.0,3,0,3_0,3_1 -3362,1.0,11.0,49.0,111,37,31,0.0,14597,0.0,0.0,99999.0,0.0,2.0,4.0,1.0,2.0,1.5,3267.72154811241,0.0,0.0,37442.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24961.333333333332,4,0,4_0,4_0 -3363,1.0,12.0,36.0,111,67,44,2.0,146,0.0,20.0,200.0,0.0,5.0,4.0,0.0,5.0,3.0,1089.0882539292022,1560.0,700.0,60144.0,1,2,8,7.0,5,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,20048.0,3,0,3_0,3_0 -3364,3.0,16.0,55.0,400,62,50,0.0,1460,0.0,0.0,30.0,0.0,2.0,5.0,1.0,3.0,2.0,992.6796780819304,0.0,0.0,49436.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24718.0,4,0,4_0,4_1 -3365,0.0,9.0,29.0,111,64,60,2.0,14600,0.0,0.0,65.0,590.0,2.0,3.0,1.0,3.0,1.8,3450.936129824884,0.0,2000.0,36565.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,20313.888888888887,3,0,3_1,3_0 -3366,10.0,10.0,79.0,400,78,70,0.0,14601,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2766.058836556925,0.0,0.0,14186.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,9457.333333333334,1,0,1_0,1_1 -3367,0.0,0.0,39.0,112,11,31,0.0,14603,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3324.4255664820157,0.0,0.0,7104.0,1,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,7104.0,1,0,1_0,1_1 -3368,0.0,0.0,62.0,111,74,12,1.0,14604,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1969.0577672364689,10987.0,15200.0,72476.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,48317.333333333336,5,0,5,5_0 -3369,17.0,17.0,50.0,112,65,60,0.0,14608,0.0,650.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,4372.844704050132,0.0,0.0,52555.0,1,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,35036.666666666664,5,0,5,5_1 -3370,0.0,0.0,31.0,300,47,31,0.0,14609,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2249.3229666539432,468.0,0.0,234348.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,156232.0,5,0,5,5_1 -3371,0.0,0.0,26.0,111,56,71,0.0,1461,0.0,0.0,0.0,300.0,1.0,1.0,0.0,1.0,1.0,3996.026881540631,0.0,0.0,0.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,1,0,1_0,1_0 -3372,3.0,3.0,60.0,111,72,50,0.0,14610,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2948.6755138417125,3016.0,0.0,12184.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12184.0,1,0,1_0,1_0 -3373,5.0,13.0,30.0,111,64,50,0.0,14611,0.0,200.0,0.0,364.0,2.0,3.0,1.0,3.0,1.8,2637.0214339185472,1040.0,0.0,41660.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,23144.444444444445,4,0,4_0,4_0 -3374,4.0,4.0,35.0,221,52,43,0.0,14612,0.0,0.0,40.0,305.0,2.0,3.0,0.0,2.0,1.5,2106.7039258303794,0.0,0.0,29528.0,1,3,1,2.0,5,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19685.333333333332,3,0,3_0,3_0 -3375,5.0,10.0,55.0,300,69,50,0.0,14613,0.0,0.0,40.0,0.0,1.0,4.0,0.0,2.0,1.5,1162.6031011098582,0.0,0.0,30529.0,1,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,20352.666666666668,3,0,3_0,3_0 -3376,1.0,7.0,40.0,111,63,71,2.0,14614,0.0,0.0,0.0,310.0,2.0,3.0,0.0,2.0,1.5,3749.4788180587593,0.0,4290.0,36975.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24650.0,4,0,4_0,4_0 -3377,10.0,18.0,34.0,400,67,31,0.0,14615,0.0,0.0,220.0,0.0,2.0,4.0,2.0,4.0,2.1,1921.758246357806,0.0,0.0,31329.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,14918.571428571428,2,0,2_1,2_1 -3378,7.0,7.0,59.0,300,34,20,0.0,14617,0.0,500.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1723.9584399754465,3120.0,0.0,40019.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,40019.0,5,0,5,5_1 -3379,19.0,19.0,78.0,400,71,70,0.0,14619,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2321.2468413884044,0.0,0.0,11772.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11772.0,1,0,1_0,1_1 -3380,6.0,6.0,56.0,112,62,60,0.0,14620,0.0,200.0,10.0,0.0,2.0,7.0,1.0,3.0,2.0,1083.9773107519063,0.0,0.0,33782.0,1,1,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16891.0,3,0,3_0,3_0 -3381,1.0,1.0,33.0,111,56,50,1.0,14621,0.0,0.0,500.0,406.0,1.0,3.0,0.0,1.0,1.0,2939.0296617035124,3380.0,19480.0,15078.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,15078.0,2,0,2_1,2_0 -3382,12.0,12.0,73.0,112,74,44,0.0,14622,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1501.0352655083232,2159.0,0.0,57707.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38471.333333333336,5,0,5,5_1 -3383,9.0,9.0,69.0,400,77,71,0.0,14623,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3023.669276217628,1041.0,0.0,15910.0,5,3,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,10606.666666666666,1,0,1_0,1_0 -3384,6.0,9.0,58.0,111,62,50,0.0,14624,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1138.8507690981116,0.0,0.0,18820.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18820.0,3,0,3_0,3_0 -3385,6.0,7.0,34.0,221,65,50,0.0,14625,0.0,72.0,0.0,0.0,1.0,5.0,4.0,6.0,2.9,2556.218786490228,0.0,0.0,31232.0,1,3,1,1.0,4,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,10769.655172413793,1,0,1_1,1_0 -3386,2.0,16.0,46.0,120,42,20,0.0,14626,0.0,100549.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,1130.1408168714597,10296.0,0.0,34371.0,1,3,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,11457.0,1,0,1_0,1_1 -3387,0.0,21.0,24.0,111,42,20,0.0,14627,0.0,0.0,40.0,755.0,1.0,2.0,0.0,1.0,1.0,3413.5835010325095,2184.0,0.0,21489.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,21489.0,3,0,3_0,3_0 -3388,10.0,14.0,50.0,300,68,44,0.0,14628,0.0,150.0,0.0,260.0,1.0,3.0,2.0,4.0,2.5,1507.2458284291242,4327.0,0.0,22280.0,4,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,8912.0,1,0,1_1,1_1 -3389,5.0,8.0,68.0,112,77,70,0.0,1463,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1648.1043281071534,0.0,0.0,31763.0,5,1,10,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21175.333333333332,3,0,3_0,3_0 -3390,0.0,0.0,41.0,111,22,50,0.0,14630,0.0,0.0,0.0,0.0,1.0,3.0,5.0,7.0,3.4,1672.9703373688797,0.0,0.0,21860.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6429.411764705883,1,0,1_1,1_0 -3391,1.0,17.0,54.0,111,62,70,2.0,14631,0.0,0.0,50.0,0.0,2.0,4.0,0.0,2.0,1.5,1506.767499824534,2860.0,1300.0,46406.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,30937.333333333332,5,0,5,5_0 -3392,0.0,0.0,45.0,111,56,50,0.0,14632,0.0,0.0,0.0,150.0,1.0,4.0,2.0,3.0,1.8,3374.6809048154723,0.0,0.0,22350.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12416.666666666666,1,0,1_1,1_0 -3393,3.0,3.0,53.0,112,68,71,0.0,14635,0.0,120.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2358.9611422297435,0.0,0.0,32626.0,1,1,7,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,21750.666666666668,4,0,4_0,4_0 -3394,2.0,16.0,57.0,300,68,50,0.0,14637,0.0,40.0,0.0,235.0,1.0,4.0,0.0,1.0,1.0,1892.9546720227797,0.0,0.0,19670.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19670.0,3,0,3_0,3_1 -3395,0.0,0.0,90.0,112,77,70,0.0,14639,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3292.898977893401,0.0,0.0,24439.0,5,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24439.0,4,0,4_0,4_0 -3396,1.0,1.0,44.0,211,46,31,1.0,14640,0.0,1000.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2067.2176728092745,1518.0,29000.0,84508.0,1,2,1,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,56338.666666666664,5,0,5,5_0 -3397,6.0,9.0,63.0,111,78,70,0.0,14642,0.0,0.0,0.0,566.0,0.0,1.0,0.0,1.0,1.0,3650.712174477267,0.0,0.0,11120.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,11120.0,1,0,1_0,1_0 -3398,1.0,22.0,60.0,112,75,31,2.0,14644,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3969.9056430851947,0.0,1500.0,23065.0,5,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,15376.666666666666,2,0,2_0,2_0 -3399,1.0,1.0,49.0,111,37,31,0.0,14645,0.0,400.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1969.919484693902,5148.0,0.0,68714.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,26428.46153846154,4,0,4_0,4_0 -3400,7.0,15.0,73.0,112,72,50,0.0,14647,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2390.861905744272,0.0,0.0,18492.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12328.0,1,0,1_0,1_1 -3401,0.0,0.0,25.0,111,85,43,0.0,14649,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3475.8952108041526,0.0,0.0,13486.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13486.0,2,0,2_1,2_0 -3402,0.0,0.0,83.0,111,77,70,0.0,1465,0.0,0.0,0.0,413.0,0.0,1.0,0.0,1.0,1.0,3410.0171237917084,0.0,0.0,9254.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9254.0,1,0,1_1,1_0 -3403,4.0,4.0,32.0,111,64,41,0.0,14652,0.0,600.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4035.6284699839844,0.0,0.0,30557.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20371.333333333332,3,0,3_0,3_0 -3404,2.0,2.0,51.0,111,54,43,1.0,14654,0.0,0.0,0.0,377.0,3.0,4.0,2.0,3.0,2.0,2369.694730957805,0.0,12817.0,52757.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,26378.5,4,0,4_0,4_0 -3405,14.0,14.0,75.0,111,78,70,0.0,14655,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2202.337239996199,0.0,0.0,26223.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17482.0,3,0,3_0,3_0 -3406,2.0,2.0,74.0,111,75,41,0.0,14657,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1724.6578709577605,0.0,0.0,47908.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,31938.666666666668,5,0,5,5_0 -3407,0.0,0.0,70.0,111,77,70,0.0,14658,0.0,0.0,0.0,1000.0,0.0,3.0,0.0,1.0,1.0,2642.727551202266,0.0,0.0,46060.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,46060.0,5,0,5,5_0 -3408,1.0,10.0,24.0,111,43,33,2.0,14660,0.0,200.0,0.0,230.0,1.0,2.0,0.0,1.0,1.0,3034.893551448958,0.0,4000.0,19932.0,1,3,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,19932.0,3,0,3_1,3_0 -3409,4.0,4.0,52.0,111,52,70,0.0,14663,0.0,40.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1335.896292634875,2378.0,0.0,43722.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,21861.0,4,0,4_0,4_0 -3410,3.0,5.0,44.0,400,52,50,0.0,14664,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1753.5138639290715,0.0,0.0,17633.0,1,3,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,17633.0,3,0,3_0,3_1 -3411,11.0,13.0,57.0,111,75,20,0.0,14665,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1273.9954489427762,0.0,0.0,37641.0,5,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25094.0,4,0,4_0,4_0 -3412,4.0,13.0,28.0,111,46,31,0.0,14666,0.0,0.0,60.0,375.0,2.0,3.0,0.0,2.0,1.5,2922.670336564258,1300.0,0.0,40043.0,1,3,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,26695.333333333332,4,0,4_0,4_0 -3413,7.0,14.0,44.0,111,52,50,0.0,14667,0.0,200.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,1901.6993626916121,0.0,0.0,23693.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18225.384615384613,3,0,3_0,3_0 -3414,1.0,1.0,61.0,111,38,12,1.0,14669,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1819.9800429803256,0.0,19500.0,92936.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,61957.333333333336,5,0,5,5_0 -3415,6.0,6.0,60.0,300,21,70,0.0,14670,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1793.302724273251,2163.0,0.0,59221.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,39480.666666666664,5,0,5,5_1 -3416,0.0,0.0,83.0,112,78,71,0.0,14671,0.0,0.0,0.0,276.0,0.0,3.0,0.0,1.0,1.0,4828.296231165403,0.0,0.0,14836.0,5,3,5,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14836.0,2,0,2_1,2_1 -3417,4.0,4.0,66.0,112,43,10,0.0,14672,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1036.5745407031065,1560.0,0.0,59505.0,1,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,39670.0,5,0,5,5_0 -3418,3.0,7.0,52.0,111,67,50,0.0,14673,0.0,0.0,190.0,448.0,3.0,3.0,2.0,3.0,2.0,2479.0214674243384,1561.0,0.0,43012.0,1,3,6,5.0,2,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,21506.0,3,0,3_0,3_0 -3419,14.0,14.0,42.0,111,13,50,0.0,14674,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1613.6702696920547,0.0,0.0,27609.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,12003.913043478262,1,0,1_0,1_0 -3420,4.0,16.0,25.0,111,55,31,0.0,14675,0.0,0.0,0.0,89.0,1.0,3.0,1.0,3.0,2.0,4245.451951452447,0.0,0.0,20830.0,1,3,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,10415.0,1,0,1_1,1_0 -3421,4.0,12.0,35.0,400,85,43,0.0,14677,0.0,400.0,0.0,168.0,1.0,2.0,0.0,2.0,1.5,5448.647855702244,0.0,0.0,33755.0,4,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,22503.333333333332,4,0,4_1,4_1 -3422,1.0,1.0,45.0,112,54,20,1.0,14679,0.0,150.0,100.0,0.0,2.0,5.0,2.0,4.0,2.1,1754.231351666464,4179.0,16400.0,63946.0,1,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,30450.47619047619,5,0,5,5_1 -3423,0.0,0.0,52.0,111,35,50,0.0,1468,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3860.3858498092277,0.0,0.0,28090.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28090.0,4,0,4_0,4_0 -3424,1.0,1.0,24.0,111,43,33,1.0,14680,0.0,150.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2275.673442109283,1958.0,20312.0,138805.0,1,2,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,92536.66666666667,5,0,5,5_0 -3425,0.0,0.0,27.0,111,81,10,0.0,14682,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2996.6650250950697,0.0,0.0,10023.0,4,4,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10023.0,1,0,1_0,1_0 -3426,2.0,2.0,40.0,111,63,43,0.0,14684,0.0,0.0,100.0,380.0,1.0,3.0,0.0,1.0,1.0,2446.7992864756875,0.0,0.0,14967.0,1,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,14967.0,2,0,2_1,2_0 -3427,1.0,20.0,47.0,111,48,50,0.0,14685,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2406.7771401861173,1214.0,0.0,24100.0,1,3,7,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,24100.0,4,0,4_0,4_0 -3428,2.0,35.0,62.0,112,72,70,0.0,14686,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3018.5110293431985,3917.0,0.0,25960.0,5,4,10,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,25960.0,4,0,4_0,4_0 -3429,0.0,0.0,86.0,111,78,70,0.0,14687,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3951.738095965081,0.0,0.0,22240.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22240.0,4,0,4_0,4_0 -3430,0.0,20.0,32.0,111,37,10,0.0,14688,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4066.009676452394,0.0,0.0,33787.0,1,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,33787.0,5,0,5,5_0 -3431,9.0,9.0,52.0,400,63,50,0.0,1469,0.0,200.0,0.0,0.0,2.0,5.0,0.0,4.0,2.3,1045.7718088701947,957.0,0.0,42031.0,1,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18274.34782608696,3,0,3_0,3_1 -3432,2.0,2.0,45.0,112,21,50,0.0,14691,0.0,80.0,0.0,0.0,3.0,6.0,2.0,4.0,2.3,2430.586729533179,0.0,0.0,40663.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17679.565217391304,3,0,3_0,3_1 -3433,4.0,21.0,41.0,111,37,10,0.0,14692,0.0,230.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1503.466595064974,0.0,0.0,55738.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,26541.90476190476,4,0,4_0,4_0 -3434,5.0,7.0,42.0,112,37,31,0.0,14694,0.0,280.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,4254.564982649287,3017.0,0.0,43699.0,1,2,7,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,18999.565217391304,3,0,3_0,3_1 -3435,2.0,4.0,40.0,111,54,31,0.0,14695,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2282.7121858852265,0.0,0.0,46888.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,31258.666666666668,5,0,5,5_0 -3436,2.0,8.0,34.0,111,67,50,0.0,14697,0.0,200.0,0.0,325.0,2.0,3.0,1.0,3.0,1.8,2170.139980716441,1560.0,0.0,24962.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,13867.777777777777,2,0,2_1,2_0 -3437,12.0,12.0,51.0,112,37,41,0.0,14699,0.0,70.0,100.0,0.0,2.0,6.0,1.0,3.0,2.0,2213.2544093139913,5206.0,0.0,72565.0,1,1,10,0.0,4,4.0,1.0,1.0,1,0,0,0,0,0,2.0,2.0,36282.5,5,0,5,5_1 -3438,7.0,7.0,44.0,111,37,10,0.0,14700,0.0,700.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1550.8522104974372,0.0,0.0,165410.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,63619.230769230766,5,0,5,5_0 -3439,0.0,0.0,90.0,111,78,71,0.0,14701,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5955.47988087677,0.0,0.0,20757.0,5,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20757.0,3,0,3_0,3_0 -3440,2.0,2.0,48.0,112,52,60,0.0,14703,0.0,350.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,3567.901549237391,0.0,0.0,25057.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,13920.555555555555,2,0,2_0,2_1 -3441,6.0,14.0,50.0,111,85,50,0.0,14704,0.0,0.0,0.0,0.0,1.0,6.0,1.0,4.0,2.5,1940.2319815441276,0.0,0.0,51899.0,7,2,8,6.0,5,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20759.6,3,0,3_0,3_0 -3442,11.0,16.0,67.0,300,37,20,0.0,14705,0.0,500.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1252.6915727608296,2444.0,0.0,110990.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,61661.11111111111,5,0,5,5_1 -3443,2.0,19.0,69.0,111,78,50,0.0,14706,0.0,250.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,863.5384799277784,0.0,0.0,25673.0,5,1,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,12836.5,2,0,2_0,2_0 -3444,2.0,2.0,28.0,111,54,42,0.0,14707,0.0,400.0,0.0,378.0,2.0,2.0,0.0,2.0,1.5,3154.383646300548,0.0,0.0,32160.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,21440.0,3,0,3_0,3_0 -3445,20.0,23.0,83.0,212,71,70,0.0,14708,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1031.5431087250377,0.0,0.0,14980.0,5,4,2,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9986.666666666666,1,0,1_0,1_1 -3446,12.0,12.0,39.0,120,11,44,0.0,1471,0.0,0.0,0.0,460.0,2.0,4.0,1.0,3.0,1.8,3751.57679357296,2133.0,0.0,4849.0,1,3,0,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,2693.8888888888887,1,0,1_0,1_0 -3447,3.0,3.0,62.0,300,78,70,0.0,14711,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2283.5718637767536,1565.0,0.0,12488.0,4,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12488.0,1,0,1_0,1_1 -3448,13.0,15.0,59.0,112,45,50,0.0,14712,0.0,360.0,80.0,0.0,2.0,6.0,0.0,2.0,1.5,2317.9669498075023,4316.0,0.0,49624.0,1,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,33082.666666666664,5,0,5,5_0 -3449,1.0,11.0,48.0,111,54,50,2.0,14713,0.0,200133.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,864.1337699769119,0.0,5900.0,71484.0,1,3,6,5.0,4,4.0,0.0,1.0,0,0,1,0,0,0,0.0,4.0,35742.0,5,0,5,5_0 -3450,2.0,2.0,46.0,112,48,50,0.0,14715,0.0,1100.0,50.0,0.0,3.0,4.0,1.0,3.0,2.0,1199.8753438265985,10474.0,0.0,60958.0,1,2,7,0.0,4,5.0,0.0,1.0,1,0,0,0,0,0,2.0,3.0,30479.0,5,0,5,5_1 -3451,7.0,9.0,46.0,112,22,41,0.0,14717,0.0,0.0,380.0,0.0,2.0,4.0,1.0,3.0,2.0,3205.775226659826,4993.0,0.0,47480.0,1,1,4,0.0,4,5.0,1.0,0.0,1,0,0,0,0,0,3.0,2.0,23740.0,4,0,4_0,4_1 -3452,1.0,7.0,27.0,112,54,43,2.0,14718,0.0,410.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3007.543489863779,1040.0,9000.0,32876.0,1,2,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21917.333333333332,4,0,4_0,4_1 -3453,4.0,12.0,48.0,111,56,31,0.0,14719,0.0,0.0,0.0,50.0,1.0,5.0,2.0,3.0,1.8,2386.758638563227,0.0,0.0,33665.0,4,3,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,18702.777777777777,3,0,3_1,3_0 -3454,11.0,14.0,28.0,221,67,50,0.0,14720,0.0,200.0,80.0,402.0,2.0,4.0,1.0,3.0,1.8,2252.307481914792,1040.0,0.0,36459.0,1,3,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20255.0,3,0,3_0,3_0 -3455,0.0,0.0,73.0,111,78,71,0.0,14721,0.0,0.0,0.0,380.0,1.0,4.0,0.0,2.0,1.5,3167.575778194258,281.0,0.0,27173.0,5,3,8,6.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18115.333333333332,3,0,3_0,3_0 -3456,0.0,0.0,19.0,111,84,41,0.0,14723,0.0,0.0,0.0,400.0,0.0,1.0,0.0,1.0,1.0,3723.5340698997643,0.0,0.0,6172.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,6172.0,1,0,1_0,1_0 -3457,0.0,0.0,85.0,111,86,70,0.0,14726,0.0,0.0,0.0,285.0,0.0,2.0,0.0,1.0,1.0,2936.790749472032,0.0,0.0,8429.0,6,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8429.0,1,0,1_0,1_0 -3458,20.0,20.0,93.0,120,71,70,0.0,14727,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2054.969750871526,0.0,0.0,16340.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10893.333333333334,1,0,1_0,1_1 -3459,5.0,7.0,42.0,111,34,10,0.0,14729,0.0,160.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1253.4465161150633,2917.0,0.0,57332.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,23888.333333333336,4,0,4_0,4_0 -3460,5.0,11.0,28.0,111,67,60,0.0,1473,0.0,670.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2722.0522700731476,0.0,0.0,38220.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21233.333333333332,3,0,3_0,3_0 -3461,2.0,3.0,36.0,111,46,20,0.0,14731,0.0,350.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2605.3951072652458,0.0,0.0,21188.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,16298.461538461537,2,0,2_0,2_0 -3462,7.0,8.0,61.0,112,72,50,0.0,14732,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1988.7718499945959,2196.0,0.0,53889.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,35926.0,5,0,5,5_1 -3463,4.0,4.0,81.0,111,74,10,0.0,14733,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2814.069931716118,6738.0,0.0,72198.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,72198.0,5,0,5,5_0 -3464,11.0,11.0,91.0,112,78,71,0.0,14734,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3433.404176274506,0.0,0.0,22600.0,5,4,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15066.666666666666,2,0,2_0,2_1 -3465,2.0,2.0,52.0,111,21,50,0.0,14735,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1771.5268811543247,0.0,0.0,114469.0,1,2,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,76312.66666666667,5,0,5,5_0 -3466,8.0,10.0,45.0,111,33,20,0.0,14736,0.0,700.0,0.0,0.0,2.0,8.0,3.0,5.0,2.6,1590.6416337458063,1423.0,0.0,89819.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,34545.76923076923,5,0,5,5_0 -3467,3.0,4.0,38.0,111,37,20,0.0,14737,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2142.76988348329,0.0,0.0,44421.0,4,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24678.333333333332,4,0,4_0,4_0 -3468,3.0,6.0,63.0,111,77,50,0.0,14740,0.0,0.0,0.0,440.0,0.0,2.0,0.0,1.0,1.0,3734.1183746294973,1522.0,0.0,12940.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12940.0,2,0,2_1,2_0 -3469,2.0,16.0,62.0,111,78,70,0.0,14741,0.0,0.0,0.0,237.0,0.0,2.0,0.0,2.0,1.5,3468.066570344747,0.0,0.0,23490.0,5,3,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15660.0,2,0,2_0,2_0 -3470,0.0,0.0,24.0,111,52,50,0.0,14742,0.0,0.0,0.0,263.0,2.0,3.0,1.0,3.0,1.8,5023.663390158317,2080.0,0.0,24721.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13733.888888888889,2,0,2_0,2_0 -3471,4.0,7.0,62.0,111,75,20,0.0,14743,0.0,0.0,35.0,0.0,1.0,3.0,1.0,3.0,2.0,2591.411248552718,0.0,0.0,60366.0,5,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,30183.0,5,0,5,5_0 -3472,0.0,0.0,76.0,111,78,71,0.0,14744,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2925.14016819609,260.0,0.0,27878.0,5,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18585.333333333332,3,0,3_0,3_0 -3473,5.0,5.0,32.0,111,37,31,0.0,14745,0.0,99999.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,3702.313271471846,3120.0,0.0,57800.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24083.333333333336,4,0,4_0,4_0 -3474,11.0,15.0,41.0,400,69,31,0.0,14749,0.0,440.0,0.0,141.0,2.0,6.0,2.0,4.0,2.1,2624.3068352677824,2602.0,0.0,18840.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,8971.42857142857,1,0,1_1,1_1 -3475,0.0,0.0,28.0,111,34,33,0.0,1475,0.0,0.0,0.0,720.0,2.0,2.0,0.0,2.0,1.5,3704.5340829955508,0.0,0.0,43779.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29186.0,5,0,5,5_0 -3476,1.0,7.0,47.0,111,62,60,2.0,14750,0.0,150.0,50.0,0.0,2.0,5.0,2.0,4.0,2.5,1345.7705559550102,0.0,5000.0,44785.0,1,1,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,17914.0,3,0,3_0,3_0 -3477,8.0,15.0,56.0,112,55,70,0.0,14752,0.0,0.0,150.0,0.0,1.0,5.0,0.0,1.0,1.0,1920.3900229221704,1040.0,0.0,21800.0,1,4,7,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21800.0,4,0,4_0,4_0 -3478,4.0,17.0,22.0,111,47,31,0.0,14753,0.0,0.0,0.0,300.0,1.0,2.0,0.0,1.0,1.0,3436.2842660155857,0.0,0.0,3321.0,2,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,3321.0,1,0,1_1,1_0 -3479,13.0,13.0,64.0,111,75,20,0.0,14754,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1614.5150742485187,0.0,0.0,27131.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27131.0,4,0,4_0,4_0 -3480,0.0,0.0,23.0,112,63,50,0.0,14758,0.0,0.0,0.0,300.0,1.0,3.0,0.0,1.0,1.0,2319.7878592488933,0.0,0.0,15560.0,1,3,7,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15560.0,2,0,2_0,2_0 -3481,8.0,11.0,55.0,300,56,60,0.0,1476,0.0,0.0,0.0,0.0,1.0,10.0,0.0,2.0,1.5,2091.8400051107656,2516.0,0.0,32036.0,1,2,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,21357.333333333332,3,0,3_0,3_1 -3482,2.0,2.0,44.0,111,37,10,0.0,14761,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1537.1355510698017,0.0,0.0,138062.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,55224.8,5,0,5,5_0 -3483,17.0,23.0,55.0,120,45,12,0.0,14762,0.0,500.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1819.7792830369965,2553.0,0.0,43710.0,1,2,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,43710.0,5,0,5,5_1 -3484,0.0,15.0,34.0,111,34,10,0.0,14764,0.0,0.0,260.0,0.0,2.0,5.0,0.0,2.0,1.5,1523.1407365425985,6102.0,0.0,74528.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,49685.333333333336,5,0,5,5_0 -3485,8.0,10.0,67.0,400,71,50,0.0,14765,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1591.9859014402332,1487.0,0.0,18944.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12629.333333333334,2,0,2_0,2_1 -3486,10.0,12.0,33.0,112,53,41,0.0,14766,0.0,300.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2188.4618285386596,3120.0,0.0,37610.0,1,2,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,25073.333333333332,4,0,4_0,4_0 -3487,0.0,0.0,46.0,112,55,71,0.0,14767,0.0,0.0,0.0,0.0,2.0,3.0,3.0,5.0,2.8,3099.333268056602,0.0,0.0,49275.0,1,1,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17598.214285714286,3,0,3_0,3_0 -3488,1.0,6.0,53.0,111,63,71,2.0,14768,0.0,100019.0,0.0,435.0,3.0,4.0,2.0,4.0,2.3,2518.554035492595,2496.0,9000.0,52832.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,22970.434782608696,4,0,4_0,4_0 -3489,8.0,8.0,52.0,111,21,50,0.0,1477,0.0,99999.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3181.0993125624505,2600.0,0.0,43951.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,29300.666666666668,5,0,5,5_0 -3490,0.0,0.0,53.0,112,52,50,0.0,14770,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2253.17213309278,0.0,0.0,21902.0,1,3,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21902.0,4,0,4_0,4_1 -3491,2.0,3.0,60.0,111,77,60,0.0,14771,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1641.632472938618,5271.0,0.0,33559.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,22372.666666666668,4,0,4_0,4_0 -3492,4.0,9.0,27.0,221,68,50,0.0,14773,0.0,0.0,0.0,615.0,2.0,3.0,1.0,3.0,1.8,2938.530649675622,4680.0,0.0,21566.0,1,3,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11981.111111111111,1,0,1_0,1_0 -3493,0.0,0.0,44.0,112,37,31,2.0,14774,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2392.0214649930044,2600.0,5700.0,52850.0,4,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,29361.11111111111,5,0,5,5_1 -3494,6.0,8.0,62.0,112,75,50,0.0,14775,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1563.8519138003928,4513.0,0.0,34033.0,5,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22688.666666666668,4,0,4_0,4_1 -3495,1.0,11.0,31.0,111,67,31,2.0,14776,0.0,0.0,120.0,151.0,1.0,1.0,0.0,1.0,1.0,3407.634456621304,1352.0,3500.0,15945.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,15945.0,2,0,2_0,2_0 -3496,0.0,0.0,36.0,111,56,20,0.0,14780,0.0,0.0,0.0,220.0,1.0,3.0,4.0,5.0,2.4,1284.6800558809996,0.0,0.0,16840.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7016.666666666667,1,0,1_1,1_0 -3497,0.0,0.0,86.0,111,77,70,0.0,14781,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2047.1302618272023,0.0,0.0,17806.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17806.0,3,0,3_0,3_0 -3498,6.0,9.0,35.0,120,38,12,0.0,14783,0.0,850.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,1717.771894959624,0.0,0.0,57017.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,31676.11111111111,5,0,5,5_1 -3499,7.0,7.0,35.0,111,42,20,0.0,14784,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2116.2349651593377,0.0,0.0,26864.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26864.0,4,0,4_0,4_0 -3500,7.0,7.0,44.0,120,63,50,0.0,14787,0.0,620.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2040.0526836733852,1300.0,0.0,54489.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,36326.0,5,0,5,5_1 -3501,10.0,13.0,62.0,400,33,12,0.0,1479,0.0,140.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1628.846748216114,4404.0,0.0,98560.0,1,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,65706.66666666667,5,0,5,5_1 -3502,1.0,16.0,55.0,112,56,50,2.0,14791,0.0,40.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,3532.6461799216872,0.0,1200.0,25164.0,1,1,8,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16776.0,2,0,2_0,2_1 -3503,2.0,2.0,51.0,111,43,33,0.0,14792,0.0,99999.0,0.0,0.0,1.0,8.0,3.0,5.0,2.6,1696.8027835035846,0.0,0.0,22425.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,8625.0,1,0,1_0,1_0 -3504,14.0,14.0,59.0,111,78,50,0.0,14794,0.0,0.0,0.0,243.0,0.0,2.0,0.0,1.0,1.0,2619.709031641508,780.0,0.0,14129.0,7,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14129.0,2,0,2_0,2_0 -3505,7.0,8.0,39.0,111,34,10,0.0,14795,0.0,480.0,30.0,0.0,2.0,5.0,1.0,3.0,1.8,2660.257238128121,6032.0,0.0,135893.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,75496.11111111111,5,0,5,5_0 -3506,0.0,0.0,61.0,112,31,10,1.0,14797,0.0,50.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,3202.7171315766304,2548.0,30000.0,92048.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,61365.333333333336,5,0,5,5_1 -3507,10.0,10.0,56.0,112,62,50,0.0,14798,0.0,180.0,60.0,0.0,2.0,3.0,0.0,2.0,1.5,1747.0375548104214,2746.0,0.0,49811.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,33207.333333333336,5,0,5,5_1 -3508,11.0,11.0,87.0,111,78,71,0.0,14799,0.0,0.0,0.0,230.0,0.0,1.0,0.0,1.0,1.0,3241.704987919705,0.0,0.0,18090.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,18090.0,3,0,3_0,3_0 -3509,0.0,0.0,24.0,111,63,60,0.0,14801,0.0,0.0,0.0,270.0,1.0,1.0,1.0,3.0,1.8,4557.932315176857,0.0,0.0,15634.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8685.555555555555,1,0,1_1,1_0 -3510,1.0,8.0,57.0,111,63,60,0.0,14803,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2719.5272762204754,0.0,0.0,18196.0,1,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18196.0,3,0,3_0,3_0 -3511,1.0,1.0,43.0,111,43,10,0.0,14804,200.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,3915.1754113712977,1557.0,0.0,25786.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,12893.0,2,0,2_0,2_0 -3512,4.0,4.0,36.0,111,38,10,0.0,14805,0.0,400.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,6076.852009391861,2496.0,0.0,104847.0,1,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,104847.0,5,0,5,5_0 -3513,1.0,2.0,43.0,111,38,12,2.0,14806,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3661.1294574015606,0.0,14000.0,109980.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,73320.0,5,0,5,5_0 -3514,8.0,9.0,61.0,112,31,10,0.0,14807,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2464.7316462335734,0.0,0.0,47348.0,1,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,31565.333333333332,5,0,5,5_1 -3515,3.0,3.0,51.0,111,43,33,0.0,14808,0.0,565.0,110.0,0.0,3.0,5.0,1.0,3.0,2.0,1382.6703555875608,1135.0,0.0,100340.0,1,1,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,50170.0,5,0,5,5_0 -3516,6.0,6.0,58.0,112,78,50,0.0,14809,0.0,0.0,0.0,338.0,0.0,2.0,0.0,1.0,1.0,2769.472924047109,1924.0,0.0,18957.0,5,3,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18957.0,3,0,3_0,3_0 -3517,12.0,12.0,57.0,111,75,70,0.0,1481,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1331.9408632844543,6724.0,0.0,38778.0,5,2,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25852.0,4,0,4_0,4_0 -3518,4.0,4.0,73.0,111,77,50,0.0,14811,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2081.8450129348626,0.0,0.0,39770.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,26513.333333333332,4,0,4_0,4_0 -3519,1.0,1.0,67.0,111,75,50,0.0,14813,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2822.800403916006,0.0,0.0,21896.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14597.333333333334,2,0,2_0,2_0 -3520,2.0,2.0,41.0,111,37,20,0.0,14814,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2346.0655694984903,0.0,0.0,25770.0,1,1,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12271.42857142857,1,0,1_0,1_0 -3521,0.0,10.0,24.0,111,46,31,0.0,14815,0.0,400.0,0.0,560.0,2.0,3.0,0.0,2.0,1.5,3121.421129306902,6390.0,0.0,25480.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16986.666666666668,3,0,3_0,3_0 -3522,0.0,0.0,43.0,111,56,50,0.0,14816,0.0,0.0,0.0,99.0,2.0,3.0,1.0,3.0,2.0,2417.137694118201,0.0,0.0,24835.0,1,3,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12417.5,1,0,1_1,1_0 -3523,3.0,19.0,33.0,112,53,60,0.0,14818,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,3858.409422646402,2080.0,0.0,26603.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,12668.095238095237,2,0,2_1,2_1 -3524,2.0,3.0,43.0,111,52,71,0.0,14819,0.0,99999.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2481.2167030912547,0.0,0.0,33208.0,1,2,7,5.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,16604.0,2,0,2_0,2_0 -3525,0.0,2.0,59.0,111,33,10,0.0,14821,0.0,0.0,0.0,0.0,1.0,7.0,3.0,5.0,3.0,2164.642961267424,1006.0,0.0,78944.0,1,1,7,5.0,4,4.0,0.0,1.0,0,0,1,0,0,0,3.0,1.0,26314.666666666668,4,0,4_0,4_0 -3526,3.0,3.0,63.0,111,74,42,0.0,14826,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2606.117838620435,1977.0,0.0,32254.0,5,1,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,32254.0,5,0,5,5_0 -3527,0.0,16.0,52.0,111,52,50,2.0,14827,0.0,0.0,0.0,413.0,1.0,4.0,0.0,1.0,1.0,1295.993068555922,0.0,200.0,17150.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17150.0,3,0,3_0,3_0 -3528,16.0,16.0,87.0,111,72,70,0.0,14828,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1679.8235927885019,0.0,0.0,19530.0,5,3,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13020.0,2,0,2_0,2_0 -3529,2.0,11.0,37.0,111,56,50,0.0,14829,0.0,0.0,10.0,292.0,2.0,3.0,1.0,3.0,1.8,2373.934081399704,1563.0,0.0,28928.0,1,3,6,4.0,4,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,16071.111111111111,2,0,2_0,2_0 -3530,2.0,3.0,72.0,112,78,70,0.0,1483,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2213.9769479844863,0.0,0.0,26665.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,17776.666666666668,3,0,3_0,3_0 -3531,3.0,5.0,51.0,111,67,71,0.0,14831,0.0,299997.0,99999.0,0.0,3.0,6.0,2.0,4.0,2.5,1998.6511869284316,7281.0,0.0,40693.0,1,1,6,5.0,4,5.0,0.0,1.0,0,0,1,0,0,0,1.0,4.0,16277.2,2,0,2_0,2_0 -3532,0.0,0.0,25.0,111,63,50,0.0,14832,0.0,0.0,0.0,90.0,1.0,5.0,3.0,5.0,2.4,2760.430431019313,0.0,0.0,25870.0,4,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10779.166666666668,1,0,1_1,1_0 -3533,6.0,9.0,64.0,111,75,50,0.0,14833,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1498.6437022540977,2361.0,0.0,20138.0,5,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20138.0,3,0,3_0,3_0 -3534,0.0,0.0,42.0,120,69,50,0.0,14834,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2507.975373423845,0.0,0.0,14756.0,4,3,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14756.0,2,0,2_1,2_0 -3535,1.0,1.0,61.0,111,77,50,1.0,14837,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4789.134835453396,0.0,11500.0,27397.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27397.0,4,0,4_0,4_0 -3536,0.0,0.0,51.0,112,23,31,0.0,14838,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,3010.7521507789133,0.0,0.0,93026.0,1,1,7,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,62017.333333333336,5,0,5,5_0 -3537,5.0,15.0,31.0,111,56,50,0.0,14839,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.1,2259.8657150664512,0.0,0.0,36497.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,17379.52380952381,3,0,3_1,3_0 -3538,7.0,7.0,83.0,111,74,71,0.0,1484,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4573.627173179326,0.0,0.0,33914.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22609.333333333332,4,0,4_0,4_0 -3539,0.0,0.0,55.0,111,52,60,1.0,14841,0.0,90.0,120.0,0.0,2.0,4.0,0.0,2.0,1.5,1523.8692669470988,2184.0,12500.0,53029.0,1,1,7,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,35352.666666666664,5,0,5,5_0 -3540,10.0,10.0,44.0,400,34,10,0.0,14842,0.0,420.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1840.0575408050872,2340.0,0.0,63050.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25220.0,4,0,4_0,4_1 -3541,0.0,0.0,35.0,111,35,31,0.0,14844,0.0,0.0,0.0,700.0,1.0,2.0,0.0,1.0,1.0,2989.7560358906926,0.0,0.0,29002.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29002.0,4,0,4_0,4_0 -3542,1.0,1.0,43.0,111,37,10,0.0,14848,0.0,0.0,250.0,0.0,3.0,7.0,2.0,4.0,2.3,2359.8320530391443,2954.0,0.0,102586.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,44602.608695652176,5,0,5,5_0 -3543,4.0,4.0,59.0,112,54,60,0.0,14849,0.0,360.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2248.433896132066,0.0,0.0,67150.0,1,2,8,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,44766.666666666664,5,0,5,5_1 -3544,3.0,3.0,71.0,111,74,12,0.0,14852,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1594.2501541390147,1560.0,0.0,57972.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,38648.0,5,0,5,5_0 -3545,6.0,10.0,40.0,111,22,60,0.0,14853,0.0,80.0,0.0,410.0,2.0,6.0,3.0,5.0,2.6,3368.263090249974,1303.0,0.0,21595.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,8305.76923076923,1,0,1_1,1_0 -3546,12.0,12.0,48.0,112,67,60,0.0,14854,0.0,0.0,150.0,0.0,2.0,4.0,0.0,2.0,1.5,2183.745155654,2600.0,0.0,28936.0,1,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19290.666666666668,3,0,3_0,3_0 -3547,6.0,6.0,44.0,111,31,60,0.0,14855,0.0,0.0,600.0,0.0,2.0,3.0,1.0,3.0,2.0,1637.4154141379247,0.0,0.0,16819.0,1,1,6,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,2.0,0.0,8409.5,1,0,1_0,1_0 -3548,3.0,3.0,47.0,111,34,41,0.0,14856,0.0,0.0,10.0,0.0,2.0,5.0,0.0,2.0,1.5,3045.44782376385,0.0,0.0,38400.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,25600.0,4,0,4_0,4_0 -3549,0.0,0.0,75.0,111,78,71,0.0,14857,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3775.1642400653877,0.0,0.0,12434.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12434.0,1,0,1_1,1_0 -3550,0.0,10.0,35.0,111,38,10,0.0,14859,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1789.136616790752,0.0,0.0,65479.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,36377.22222222222,5,0,5,5_0 -3551,7.0,8.0,71.0,212,75,41,0.0,14863,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1878.7257364135858,1692.0,0.0,34447.0,5,1,1,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22964.666666666668,4,0,4_0,4_1 -3552,13.0,13.0,82.0,111,77,71,0.0,14864,0.0,0.0,99999.0,0.0,1.0,3.0,1.0,2.0,1.5,3491.084792030304,0.0,0.0,38618.0,5,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,25745.333333333332,4,0,4_0,4_0 -3553,0.0,0.0,76.0,111,78,70,0.0,14866,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3582.001524112882,0.0,0.0,8998.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8998.0,1,0,1_0,1_0 -3554,31.0,31.0,45.0,111,46,50,0.0,14868,0.0,4.0,0.0,8.0,1.0,3.0,0.0,2.0,1.5,3377.4887192591086,0.0,0.0,31252.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,20834.666666666668,3,0,3_1,3_0 -3555,0.0,8.0,22.0,111,55,20,0.0,1487,0.0,0.0,0.0,259.0,1.0,2.0,0.0,2.0,1.5,2533.3871664957146,0.0,0.0,26026.0,4,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,17350.666666666668,3,0,3_1,3_0 -3556,15.0,15.0,90.0,221,71,70,0.0,14870,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2304.811219382247,1300.0,0.0,29840.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19893.333333333332,3,0,3_0,3_0 -3557,0.0,0.0,62.0,111,86,70,0.0,14871,0.0,0.0,0.0,50.0,0.0,3.0,0.0,2.0,1.5,2619.996765726117,0.0,0.0,23000.0,5,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15333.333333333334,2,0,2_1,2_0 -3558,3.0,3.0,75.0,300,74,12,0.0,14872,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1664.635483812928,3149.0,0.0,39344.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,39344.0,5,0,5,5_0 -3559,7.0,10.0,73.0,111,75,41,0.0,14875,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1362.791333973759,2170.0,0.0,37446.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24964.0,4,0,4_0,4_0 -3560,7.0,8.0,69.0,111,75,50,0.0,14876,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1213.9176904384435,810.0,0.0,40374.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26916.0,4,0,4_0,4_0 -3561,2.0,24.0,41.0,111,42,50,0.0,14878,0.0,0.0,16.0,18.0,4.0,5.0,3.0,5.0,2.8,2499.21569171711,1560.0,0.0,52327.0,1,3,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,18688.214285714286,3,0,3_1,3_0 -3562,4.0,4.0,55.0,111,46,60,0.0,14879,0.0,0.0,60.0,0.0,2.0,6.0,0.0,2.0,1.5,1973.9999025184422,489.0,0.0,56140.0,1,3,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,37426.666666666664,5,0,5,5_0 -3563,1.0,1.0,77.0,120,74,33,0.0,1488,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,3241.8440018871734,0.0,0.0,34781.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,34781.0,5,0,5,5_1 -3564,0.0,0.0,26.0,111,42,20,0.0,14880,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2610.1410207327845,0.0,0.0,8245.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8245.0,1,0,1_1,1_0 -3565,1.0,1.0,56.0,111,22,50,1.0,14881,0.0,0.0,310.0,0.0,2.0,6.0,0.0,2.0,1.5,2100.6264303828953,5825.0,36214.0,54488.0,1,1,10,8.0,3,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,36325.333333333336,5,0,5,5_0 -3566,1.0,2.0,34.0,111,38,10,2.0,14882,0.0,400.0,0.0,415.0,1.0,2.0,0.0,1.0,1.0,3403.474423663689,1820.0,13985.0,32377.0,1,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,32377.0,5,0,5,5_0 -3567,9.0,9.0,36.0,112,42,10,0.0,14883,0.0,350.0,150.0,0.0,2.0,6.0,3.0,5.0,2.4,1125.4674903441824,5004.0,0.0,61497.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25623.75,4,0,4_0,4_1 -3568,0.0,6.0,43.0,111,42,20,0.0,14885,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,1396.6717011592282,0.0,0.0,33406.0,1,1,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18558.888888888887,3,0,3_0,3_0 -3569,0.0,0.0,60.0,111,77,71,0.0,14886,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,5678.921270176356,1040.0,0.0,10236.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10236.0,1,0,1_1,1_0 -3570,6.0,6.0,74.0,112,75,33,0.0,14887,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3435.418924806822,2600.0,0.0,17566.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17566.0,3,0,3_0,3_1 -3571,11.0,11.0,59.0,112,38,12,0.0,14889,0.0,0.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.1,1608.8816729972707,6240.0,0.0,62850.0,1,2,10,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,29928.571428571428,5,0,5,5_0 -3572,2.0,14.0,39.0,120,43,20,0.0,1489,0.0,0.0,540.0,0.0,2.0,6.0,2.0,4.0,2.1,1155.8040185347754,3696.0,0.0,41595.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,19807.142857142855,3,0,3_0,3_0 -3573,6.0,9.0,49.0,300,63,50,0.0,14892,0.0,250.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,1423.3864742803617,0.0,0.0,34710.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15091.304347826088,2,0,2_0,2_1 -3574,6.0,10.0,59.0,111,55,50,0.0,14893,0.0,0.0,0.0,581.0,1.0,3.0,0.0,1.0,1.0,2522.920842332218,0.0,0.0,25729.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25729.0,4,0,4_0,4_0 -3575,4.0,7.0,27.0,111,56,43,0.0,14894,0.0,265.0,0.0,249.0,2.0,2.0,0.0,2.0,1.5,2710.8521529740624,2363.0,0.0,26047.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,17364.666666666668,3,0,3_1,3_0 -3576,2.0,2.0,58.0,221,43,70,0.0,14895,0.0,0.0,0.0,222.0,1.0,4.0,0.0,1.0,1.0,4644.884552202633,0.0,0.0,20667.0,1,3,1,2.0,1,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,20667.0,3,0,3_0,3_0 -3577,5.0,7.0,40.0,112,38,31,0.0,14898,0.0,600.0,50.0,0.0,2.0,5.0,1.0,3.0,2.0,3113.320651388561,2232.0,0.0,67984.0,1,2,9,3.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,33992.0,5,0,5,5_0 -3578,3.0,15.0,51.0,111,54,41,0.0,149,0.0,180.0,150.0,0.0,2.0,6.0,1.0,2.0,1.5,2180.182886675799,0.0,0.0,40388.0,1,2,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,26925.333333333332,4,0,4_0,4_0 -3579,0.0,0.0,29.0,111,42,20,0.0,1490,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3655.572941479346,0.0,0.0,21543.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21543.0,3,0,3_0,3_0 -3580,1.0,3.0,72.0,400,77,50,0.0,14901,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3499.3693189867427,2340.0,0.0,27980.0,5,3,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,13990.0,2,0,2_1,2_0 -3581,7.0,7.0,81.0,111,71,70,0.0,14902,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3611.7358126625436,2344.0,0.0,31009.0,5,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20672.666666666668,3,0,3_0,3_0 -3582,9.0,10.0,48.0,111,65,50,0.0,14904,0.0,300.0,100.0,0.0,2.0,4.0,1.0,3.0,2.0,1533.3887070412227,239.0,0.0,46450.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23225.0,4,0,4_0,4_0 -3583,1.0,56.0,65.0,112,74,50,2.0,14905,0.0,280.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1223.4006336649838,7049.0,6000.0,34263.0,5,1,8,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,22842.0,4,0,4_0,4_1 -3584,8.0,8.0,68.0,111,74,12,0.0,14906,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2489.6523303863023,2590.0,0.0,76636.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,51090.666666666664,5,0,5,5_0 -3585,6.0,10.0,43.0,111,54,10,0.0,14908,0.0,0.0,40.0,0.0,1.0,3.0,0.0,1.0,1.0,2549.9848311153964,0.0,0.0,17110.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17110.0,3,0,3_0,3_0 -3586,0.0,5.0,43.0,111,38,31,2.0,14909,0.0,0.0,0.0,0.0,1.0,7.0,3.0,5.0,2.8,1512.9052902678816,2086.0,13850.0,38718.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13827.857142857143,2,0,2_0,2_0 -3587,3.0,9.0,41.0,111,85,41,0.0,1491,0.0,0.0,0.0,563.0,0.0,4.0,1.0,4.0,2.3,3056.768380737422,0.0,0.0,8360.0,6,3,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,3634.7826086956525,1,0,1_0,1_0 -3588,7.0,9.0,31.0,111,65,50,0.0,14911,0.0,400.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2411.8203223816554,0.0,0.0,23531.0,1,4,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23531.0,4,0,4_0,4_0 -3589,12.0,13.0,43.0,111,64,50,0.0,14912,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2099.6374603524137,2031.0,0.0,28596.0,1,1,6,5.0,4,3.0,0.0,0.0,0,0,1,0,0,1,1.0,2.0,12433.04347826087,1,0,1_1,1_0 -3590,3.0,5.0,58.0,112,77,70,0.0,14913,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3099.4335991329904,0.0,0.0,8933.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,8933.0,1,0,1_0,1_1 -3591,9.0,11.0,53.0,111,42,31,0.0,14916,0.0,150.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2306.825841829541,1560.0,0.0,26650.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26650.0,4,0,4_0,4_0 -3592,0.0,0.0,56.0,111,37,12,0.0,14917,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3179.0059972178638,0.0,0.0,58962.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,39308.0,5,0,5,5_0 -3593,12.0,12.0,46.0,111,21,70,0.0,14918,0.0,50.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2416.8431324186326,0.0,0.0,74418.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,29767.2,5,0,5,5_0 -3594,3.0,11.0,32.0,111,38,50,0.0,14921,0.0,500.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1624.6622620329188,3640.0,0.0,64824.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,27010.0,4,0,4_0,4_0 -3595,5.0,5.0,41.0,111,63,31,0.0,14922,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2838.284154359604,0.0,0.0,38428.0,1,2,8,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,18299.04761904762,3,0,3_0,3_0 -3596,0.0,18.0,55.0,111,46,50,0.0,14923,0.0,250.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3631.176922309114,2601.0,0.0,27284.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27284.0,4,0,4_0,4_0 -3597,4.0,4.0,68.0,112,77,50,0.0,14926,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2920.232348028431,0.0,0.0,12449.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12449.0,1,0,1_0,1_1 -3598,0.0,0.0,90.0,111,78,71,0.0,14927,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3070.1538357665495,0.0,0.0,8990.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8990.0,1,0,1_0,1_0 -3599,8.0,8.0,83.0,111,78,70,0.0,14928,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2712.3167913786306,0.0,0.0,39674.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26449.333333333332,4,0,4_0,4_0 -3600,14.0,14.0,82.0,111,77,71,0.0,14929,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2098.3347787426756,0.0,0.0,21487.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14324.666666666666,2,0,2_0,2_0 -3601,0.0,0.0,57.0,111,62,50,0.0,14930,0.0,0.0,0.0,298.0,1.0,2.0,0.0,3.0,2.0,2405.590086172648,0.0,0.0,13714.0,4,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,6857.0,1,0,1_1,1_0 -3602,9.0,9.0,35.0,111,68,50,0.0,14933,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,1315.0680773655342,0.0,0.0,32036.0,1,4,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13348.333333333334,2,0,2_0,2_0 -3603,6.0,8.0,56.0,120,37,10,0.0,14934,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2250.7186619267623,5509.0,0.0,80870.0,1,2,0,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,44927.777777777774,5,0,5,5_0 -3604,4.0,15.0,42.0,221,63,50,0.0,14935,0.0,0.0,445.0,268.0,2.0,3.0,1.0,3.0,1.8,3687.8663965844007,945.0,0.0,30595.0,1,3,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,16997.222222222223,3,0,3_0,3_0 -3605,1.0,1.0,49.0,111,37,12,1.0,14937,0.0,75.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2726.368253384306,0.0,16000.0,78767.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,78767.0,5,0,5,5_0 -3606,2.0,2.0,49.0,111,22,60,0.0,14938,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1971.2133438857866,0.0,0.0,27420.0,1,3,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13710.0,2,0,2_0,2_0 -3607,0.0,0.0,75.0,111,78,71,0.0,14939,0.0,0.0,0.0,172.0,0.0,2.0,0.0,2.0,1.5,3679.4331849180476,0.0,0.0,5990.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,3993.3333333333335,1,0,1_0,1_0 -3608,12.0,17.0,40.0,111,47,43,0.0,1494,0.0,0.0,120.0,0.0,1.0,3.0,0.0,1.0,1.0,3428.728745088288,2340.0,0.0,20297.0,1,2,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,20297.0,3,0,3_0,3_0 -3609,2.0,5.0,61.0,221,31,10,0.0,14942,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1517.2003379508367,5928.0,0.0,95770.0,1,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,63846.666666666664,5,0,5,5_0 -3610,10.0,10.0,49.0,111,54,44,0.0,14943,0.0,350.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1787.759307504056,0.0,0.0,37630.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18815.0,3,0,3_0,3_0 -3611,3.0,6.0,44.0,112,46,50,0.0,14944,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2435.088151962698,0.0,0.0,53379.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25418.571428571428,4,0,4_0,4_1 -3612,1.0,8.0,49.0,111,43,33,2.0,14946,0.0,300.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1027.2194793065983,1515.0,6400.0,60882.0,1,2,6,5.0,4,5.0,0.0,0.0,0,0,1,0,0,0,0.0,5.0,30441.0,5,0,5,5_0 -3613,0.0,0.0,74.0,112,75,33,0.0,14947,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2312.5335865812735,0.0,0.0,16572.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16572.0,2,0,2_0,2_1 -3614,1.0,1.0,63.0,111,78,70,1.0,14948,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1858.624901606732,0.0,11500.0,13068.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13068.0,2,0,2_1,2_0 -3615,1.0,4.0,40.0,111,35,12,2.0,14949,0.0,1125.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2093.8142184859917,3062.0,11500.0,47517.0,1,2,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,31678.0,5,0,5,5_0 -3616,3.0,3.0,68.0,111,74,20,0.0,1495,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1264.3017195636007,0.0,0.0,31400.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31400.0,5,0,5,5_0 -3617,1.0,14.0,47.0,400,56,50,2.0,14950,0.0,0.0,20.0,0.0,2.0,5.0,1.0,3.0,2.0,1002.9580037765018,0.0,2500.0,18610.0,1,1,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,9305.0,1,0,1_0,1_0 -3618,0.0,0.0,36.0,112,56,70,0.0,14953,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,5412.169595769078,0.0,0.0,14107.0,4,3,9,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10851.538461538461,1,0,1_1,1_0 -3619,3.0,7.0,42.0,111,21,50,0.0,14954,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2869.6234256731486,2628.0,0.0,15560.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,7409.523809523809,1,0,1_0,1_0 -3620,0.0,0.0,80.0,120,71,70,0.0,14955,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2453.823201148838,0.0,0.0,8900.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8900.0,1,0,1_0,1_1 -3621,1.0,1.0,77.0,221,86,71,1.0,14956,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3957.499050960419,2779.0,18800.0,16307.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16307.0,2,0,2_0,2_0 -3622,0.0,0.0,44.0,120,21,50,0.0,14958,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2960.6081546407763,0.0,0.0,33170.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33170.0,5,0,5,5_1 -3623,0.0,0.0,49.0,111,68,50,0.0,14959,0.0,0.0,0.0,40.0,2.0,3.0,0.0,2.0,1.5,2285.6002633029198,0.0,0.0,22160.0,1,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14773.333333333334,2,0,2_1,2_0 -3624,11.0,11.0,46.0,111,54,41,0.0,14961,0.0,50.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2297.8819954873343,0.0,0.0,8866.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,8866.0,1,0,1_0,1_0 -3625,3.0,3.0,64.0,111,75,33,0.0,14962,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2520.205268097841,2288.0,0.0,26102.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26102.0,4,0,4_0,4_0 -3626,4.0,14.0,55.0,300,62,70,0.0,14963,0.0,510.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,846.3527183028312,2496.0,0.0,54417.0,1,1,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27208.5,4,0,4_0,4_0 -3627,5.0,5.0,29.0,112,38,10,0.0,14964,0.0,140.0,0.0,578.0,2.0,3.0,0.0,2.0,1.5,3316.27160405872,7093.0,0.0,43039.0,1,3,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,28692.666666666668,4,0,4_0,4_0 -3628,4.0,9.0,51.0,221,52,42,0.0,14967,0.0,400.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,2007.7348802655165,3016.0,0.0,21510.0,1,1,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,8604.0,1,0,1_0,1_0 -3629,3.0,3.0,53.0,111,55,60,0.0,14969,0.0,0.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,1461.1210010431626,0.0,0.0,41759.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,27839.333333333332,4,0,4_0,4_0 -3630,5.0,10.0,45.0,300,47,50,0.0,1497,0.0,0.0,90.0,0.0,2.0,5.0,1.0,3.0,2.0,1848.7054159635602,7125.0,0.0,33388.0,1,3,0,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,16694.0,2,0,2_0,2_1 -3631,20.0,20.0,42.0,300,34,31,0.0,14971,0.0,350.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1617.3557981610152,4971.0,0.0,53542.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25496.190476190473,4,0,4_0,4_1 -3632,6.0,6.0,66.0,112,74,10,0.0,14972,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1225.5200519370794,2266.0,0.0,76509.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,51006.0,5,0,5,5_1 -3633,9.0,11.0,71.0,300,71,70,0.0,14978,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1475.484826360855,1768.0,0.0,20510.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13673.333333333334,2,0,2_0,2_1 -3634,2.0,3.0,34.0,111,45,12,0.0,14979,0.0,400.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,2153.259428491899,0.0,0.0,36830.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,15345.833333333334,2,0,2_1,2_0 -3635,0.0,0.0,81.0,111,86,71,0.0,1498,0.0,0.0,0.0,552.0,0.0,3.0,0.0,1.0,1.0,2696.3740080177063,0.0,0.0,25558.0,6,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25558.0,4,0,4_0,4_0 -3636,2.0,2.0,52.0,400,46,31,0.0,14980,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,4503.599556952556,1820.0,0.0,60512.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,40341.333333333336,5,0,5,5_1 -3637,8.0,8.0,62.0,112,33,50,0.0,14981,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3433.0733757555013,5007.0,0.0,40557.0,1,2,8,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,27038.0,4,0,4_0,4_1 -3638,5.0,9.0,43.0,300,64,60,0.0,14983,0.0,80.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1436.3565983232468,2875.0,0.0,42242.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28161.333333333332,4,0,4_0,4_1 -3639,1.0,1.0,38.0,112,34,20,0.0,14984,0.0,250.0,200.0,0.0,2.0,6.0,2.0,4.0,2.1,2684.641728473634,5215.0,0.0,66927.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,31870.0,5,0,5,5_1 -3640,7.0,11.0,54.0,111,42,20,0.0,14985,0.0,0.0,90.0,0.0,2.0,7.0,2.0,4.0,2.3,1278.1920376210592,1149.0,0.0,47871.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,20813.478260869568,3,0,3_0,3_0 -3641,1.0,1.0,55.0,111,42,33,1.0,14986,0.0,150.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2378.766937910816,0.0,17000.0,59451.0,1,2,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,39634.0,5,0,5,5_0 -3642,0.0,0.0,76.0,111,86,70,0.0,14987,0.0,0.0,0.0,431.0,0.0,2.0,0.0,1.0,1.0,2873.157176291492,0.0,0.0,13727.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13727.0,2,0,2_1,2_0 -3643,0.0,0.0,87.0,300,75,30,0.0,14988,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2976.703269258578,0.0,0.0,32447.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32447.0,5,0,5,5_1 -3644,8.0,8.0,62.0,111,75,50,0.0,14989,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2602.2061198585648,0.0,0.0,70498.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,46998.666666666664,5,0,5,5_0 -3645,0.0,28.0,56.0,111,62,50,0.0,1499,0.0,0.0,20.0,0.0,1.0,7.0,0.0,2.0,1.5,1935.8935893170722,0.0,0.0,33883.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22588.666666666668,4,0,4_0,4_0 -3646,8.0,21.0,39.0,111,62,50,0.0,14990,0.0,0.0,0.0,0.0,2.0,4.0,5.0,7.0,3.0,1389.4939884375683,0.0,0.0,42724.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,14241.333333333334,2,0,2_1,2_0 -3647,2.0,2.0,46.0,111,52,42,0.0,14991,0.0,0.0,30.0,286.0,1.0,2.0,0.0,1.0,1.0,1773.591502001578,0.0,0.0,18324.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18324.0,3,0,3_0,3_0 -3648,7.0,9.0,32.0,111,54,43,0.0,14992,0.0,200.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2747.5088592260777,1040.0,0.0,25099.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15686.875,2,0,2_0,2_0 -3649,3.0,3.0,63.0,112,75,31,0.0,14993,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2613.479883754964,541.0,0.0,25840.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17226.666666666668,3,0,3_0,3_1 -3650,4.0,9.0,41.0,112,52,60,0.0,14994,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,3273.0547983603437,1560.0,0.0,49074.0,1,4,7,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,21336.521739130436,3,0,3_0,3_1 -3651,5.0,5.0,58.0,111,62,71,0.0,14995,0.0,0.0,0.0,450.0,1.0,3.0,0.0,2.0,1.5,3171.8847852085228,1066.0,0.0,21589.0,1,3,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14392.666666666666,2,0,2_0,2_0 -3652,0.0,0.0,81.0,111,77,70,0.0,14996,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2907.977868332875,0.0,0.0,16793.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16793.0,2,0,2_0,2_0 -3653,11.0,11.0,73.0,111,78,70,0.0,14999,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1902.5693592525874,0.0,0.0,16638.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16638.0,2,0,2_0,2_0 -3654,6.0,9.0,66.0,111,75,50,0.0,150,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2732.1862120454357,0.0,0.0,17810.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17810.0,3,0,3_0,3_0 -3655,3.0,8.0,28.0,111,47,31,0.0,15002,0.0,460.0,0.0,372.0,2.0,3.0,1.0,3.0,1.8,3548.314158089566,3121.0,0.0,35338.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,19632.222222222223,3,0,3_1,3_0 -3656,3.0,8.0,62.0,112,46,60,0.0,15003,0.0,220.0,0.0,0.0,3.0,5.0,0.0,4.0,2.5,1609.3074105585088,1820.0,0.0,51732.0,5,1,8,0.0,5,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,20692.8,3,0,3_0,3_1 -3657,11.0,16.0,42.0,111,52,31,0.0,15005,0.0,0.0,150.0,0.0,2.0,5.0,0.0,2.0,1.5,1817.1618135331466,2348.0,0.0,39654.0,1,2,8,6.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,26436.0,4,0,4_0,4_0 -3658,0.0,0.0,20.0,111,84,41,0.0,15006,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3595.658472796176,0.0,0.0,6039.0,3,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,6039.0,1,0,1_0,1_0 -3659,0.0,0.0,26.0,111,42,10,0.0,15007,0.0,0.0,0.0,163.0,1.0,1.0,0.0,1.0,1.0,3444.7622390148545,0.0,0.0,13723.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13723.0,2,0,2_1,2_0 -3660,0.0,4.0,56.0,111,37,12,0.0,15008,0.0,80.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1840.3567006667952,1578.0,0.0,46391.0,1,2,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,30927.333333333332,5,0,5,5_0 -3661,19.0,19.0,80.0,111,72,44,0.0,15009,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2772.827920883694,0.0,0.0,42449.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28299.333333333332,4,0,4_0,4_0 -3662,12.0,12.0,76.0,112,78,70,0.0,1501,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1604.491182220183,0.0,0.0,27290.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18193.333333333332,3,0,3_0,3_1 -3663,7.0,15.0,77.0,300,72,20,0.0,15010,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2149.2198954835485,1404.0,0.0,44630.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,29753.333333333332,5,0,5,5_1 -3664,8.0,17.0,74.0,300,78,71,0.0,15011,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2007.668299061191,0.0,0.0,22212.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14808.0,2,0,2_0,2_1 -3665,2.0,1.0,38.0,300,43,42,0.0,15013,0.0,0.0,197.0,0.0,1.0,5.0,0.0,1.0,1.0,2219.7945037819973,0.0,0.0,20554.0,1,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20554.0,3,0,3_0,3_1 -3666,1.0,16.0,30.0,111,37,12,2.0,15014,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3507.4575608995456,0.0,150.0,53715.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,53715.0,5,0,5,5_0 -3667,11.0,13.0,74.0,221,71,70,0.0,15015,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2228.9507688487,0.0,0.0,20228.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13485.333333333334,2,0,2_0,2_0 -3668,6.0,12.0,46.0,111,35,41,0.0,15016,0.0,0.0,150.0,0.0,1.0,3.0,1.0,2.0,1.3,4368.8988558888805,3320.0,0.0,31721.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24400.76923076923,4,0,4_0,4_0 -3669,6.0,15.0,55.0,112,75,60,0.0,15017,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1570.71419685964,0.0,0.0,24672.0,5,2,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,12336.0,1,0,1_0,1_0 -3670,5.0,21.0,80.0,112,72,70,0.0,15018,0.0,0.0,100.0,0.0,1.0,6.0,1.0,2.0,1.5,1538.644679024181,3018.0,0.0,23358.0,5,1,8,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15572.0,2,0,2_0,2_0 -3671,0.0,19.0,54.0,111,11,50,0.0,15019,0.0,0.0,22.0,0.0,2.0,5.0,0.0,2.0,1.5,2670.3637742017477,0.0,0.0,6725.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,4483.333333333333,1,0,1_0,1_0 -3672,0.0,11.0,62.0,111,52,71,0.0,15020,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,4340.951072496494,2496.0,0.0,22160.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14773.333333333334,2,0,2_0,2_0 -3673,2.0,7.0,47.0,120,64,71,0.0,15022,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,1736.3465699232668,3328.0,0.0,31832.0,1,3,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,12243.076923076922,1,0,1_1,1_0 -3674,1.0,1.0,75.0,221,78,71,1.0,15023,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4755.338703256165,0.0,10787.0,24947.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16631.333333333332,2,0,2_0,2_0 -3675,7.0,8.0,67.0,111,74,42,0.0,15024,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2471.9416378736933,0.0,0.0,61086.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,40724.0,5,0,5,5_0 -3676,12.0,12.0,71.0,111,77,70,0.0,15025,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3357.7804523562663,1567.0,0.0,31175.0,5,3,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20783.333333333332,3,0,3_0,3_0 -3677,0.0,12.0,34.0,112,64,50,0.0,15026,0.0,0.0,200.0,0.0,2.0,3.0,2.0,4.0,2.1,3362.1553907352168,3120.0,0.0,32030.0,1,3,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15252.380952380952,2,0,2_0,2_1 -3678,7.0,12.0,59.0,400,78,50,0.0,15028,0.0,350.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1959.2925576221683,3590.0,0.0,26256.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17504.0,3,0,3_0,3_1 -3679,0.0,0.0,90.0,111,86,71,0.0,15029,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3775.3446422064853,0.0,0.0,7530.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7530.0,1,0,1_0,1_0 -3680,7.0,7.0,60.0,221,31,10,0.0,1503,0.0,0.0,183.0,0.0,2.0,5.0,0.0,2.0,1.5,2837.7487067211673,0.0,0.0,100364.0,1,1,1,2.0,3,3.0,0.0,1.0,0,1,0,0,0,0,3.0,0.0,66909.33333333333,5,0,5,5_0 -3681,0.0,3.0,52.0,120,85,50,0.0,15031,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3890.934119496833,0.0,0.0,36908.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24605.333333333332,4,0,4_0,4_1 -3682,2.0,13.0,32.0,400,46,50,0.0,15032,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,2347.3102892939564,0.0,0.0,39497.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16457.083333333336,2,0,2_0,2_1 -3683,8.0,22.0,52.0,222,63,71,0.0,15033,0.0,100.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1702.1885701390297,2600.0,0.0,42686.0,1,2,1,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,28457.333333333332,4,0,4_0,4_1 -3684,8.0,8.0,60.0,111,31,10,0.0,15034,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1927.5585577387913,2500.0,0.0,166342.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,83171.0,5,0,5,5_0 -3685,6.0,6.0,47.0,112,52,50,0.0,15035,0.0,299997.0,0.0,0.0,3.0,5.0,3.0,5.0,2.8,773.2243117878734,2990.0,0.0,55795.0,1,1,6,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,19926.785714285714,3,0,3_0,3_0 -3686,0.0,0.0,32.0,111,56,50,0.0,15036,0.0,0.0,0.0,1.0,1.0,5.0,3.0,4.0,1.9,2433.442611619952,0.0,0.0,21060.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11084.21052631579,1,0,1_1,1_0 -3687,2.0,5.0,63.0,112,78,50,0.0,15037,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1452.8831161926562,0.0,0.0,32590.0,5,1,9,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,21726.666666666668,4,0,4_0,4_0 -3688,18.0,21.0,81.0,112,78,70,0.0,15038,0.0,0.0,0.0,0.0,0.0,7.0,1.0,2.0,1.5,1788.4732495565681,2496.0,0.0,36486.0,5,1,8,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24324.0,4,0,4_0,4_1 -3689,4.0,12.0,34.0,221,69,71,0.0,15039,0.0,400.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,5479.624259064154,3382.0,0.0,6400.0,1,3,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,4266.666666666667,1,0,1_0,1_0 -3690,0.0,0.0,89.0,111,86,71,0.0,1504,0.0,0.0,0.0,500.0,0.0,3.0,0.0,1.0,1.0,3159.3766258838004,0.0,0.0,12170.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12170.0,1,0,1_0,1_0 -3691,3.0,17.0,42.0,400,63,71,0.0,15043,0.0,500.0,0.0,271.0,1.0,3.0,0.0,1.0,1.0,4415.556904253526,4153.0,0.0,17218.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,17218.0,3,0,3_1,3_1 -3692,5.0,5.0,74.0,112,74,10,0.0,15044,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,1863.1863539064636,0.0,0.0,77120.0,5,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,51413.333333333336,5,0,5,5_0 -3693,2.0,2.0,60.0,111,72,41,0.0,15045,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2009.497293399202,2717.0,0.0,40523.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27015.333333333332,4,0,4_0,4_0 -3694,0.0,0.0,50.0,111,35,10,0.0,15046,0.0,0.0,0.0,294.0,1.0,3.0,0.0,1.0,1.0,3704.3391935405484,0.0,0.0,7490.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7490.0,1,0,1_1,1_0 -3695,11.0,15.0,56.0,300,13,50,0.0,15047,0.0,0.0,0.0,0.0,2.0,10.0,0.0,2.0,1.5,1372.498105524435,0.0,0.0,54373.0,1,3,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,36248.666666666664,5,0,5,5_1 -3696,3.0,3.0,72.0,112,75,50,0.0,15048,0.0,100.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1064.1676745581608,0.0,0.0,56463.0,5,1,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,28231.5,4,0,4_0,4_1 -3697,7.0,7.0,50.0,112,62,50,0.0,15049,0.0,600.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2222.2697816239165,2600.0,0.0,51376.0,1,1,5,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,20550.4,3,0,3_0,3_1 -3698,0.0,11.0,31.0,111,38,12,0.0,1505,0.0,1710.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2544.824378556877,0.0,0.0,70897.0,1,3,8,7.0,3,3.0,1.0,1.0,0,0,0,1,0,0,0.0,3.0,47264.666666666664,5,0,5,5_0 -3699,1.0,1.0,37.0,120,34,20,1.0,15050,0.0,30.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2335.710295098561,0.0,11660.0,23698.0,1,2,0,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,23698.0,4,0,4_0,4_0 -3700,0.0,0.0,72.0,400,78,71,0.0,15051,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2968.7121786030093,0.0,0.0,21521.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14347.333333333334,2,0,2_0,2_1 -3701,0.0,0.0,20.0,111,84,30,0.0,15053,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4042.85986668039,0.0,0.0,1810.0,3,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,1810.0,1,0,1_0,1_0 -3702,5.0,9.0,38.0,111,55,43,0.0,15054,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1467.839770100108,7540.0,0.0,31040.0,1,2,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14780.95238095238,2,0,2_0,2_0 -3703,8.0,8.0,29.0,111,56,43,0.0,15055,0.0,0.0,0.0,166.0,1.0,4.0,1.0,2.0,1.3,4574.688428732981,0.0,0.0,11961.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9200.76923076923,1,0,1_1,1_0 -3704,5.0,5.0,60.0,111,22,60,0.0,15057,0.0,0.0,0.0,0.0,2.0,9.0,0.0,2.0,1.5,2365.882528821645,0.0,0.0,200907.0,1,1,6,5.0,3,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,133938.0,5,0,5,5_0 -3705,1.0,1.0,40.0,111,46,42,0.0,15058,1200.0,0.0,250.0,0.0,2.0,5.0,0.0,2.0,1.5,3023.8054600523296,1561.0,0.0,30330.0,1,2,6,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,20220.0,3,0,3_0,3_0 -3706,3.0,4.0,38.0,111,38,10,0.0,15059,0.0,0.0,150.0,0.0,2.0,4.0,2.0,4.0,2.1,3235.170118501899,0.0,0.0,71760.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,34171.42857142857,5,0,5,5_0 -3707,3.0,3.0,67.0,111,75,50,0.0,15061,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2540.189625194887,2080.0,0.0,29763.0,5,2,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,19842.0,3,0,3_0,3_0 -3708,10.0,10.0,73.0,111,74,10,0.0,15062,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1260.6687629155617,1560.0,0.0,67441.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,44960.666666666664,5,0,5,5_0 -3709,7.0,7.0,76.0,111,74,41,0.0,15063,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2007.7372840853805,0.0,0.0,63703.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,42468.666666666664,5,0,5,5_0 -3710,4.0,14.0,56.0,111,63,50,0.0,15064,0.0,5.0,300.0,0.0,1.0,5.0,0.0,1.0,1.0,3455.0113530015115,1721.0,0.0,26347.0,1,2,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26347.0,4,0,4_0,4_0 -3711,1.0,5.0,55.0,111,37,42,0.0,15065,0.0,0.0,200.0,0.0,1.0,3.0,0.0,1.0,1.0,3075.1457141954575,0.0,0.0,36516.0,1,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,36516.0,5,0,5,5_0 -3712,3.0,5.0,80.0,221,78,71,0.0,15066,0.0,0.0,440.0,250.0,1.0,3.0,1.0,3.0,2.0,7688.567449231613,0.0,0.0,31591.0,5,3,1,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15795.5,2,0,2_0,2_0 -3713,5.0,7.0,47.0,111,33,12,0.0,15067,0.0,200.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,4054.083188677773,1352.0,0.0,95716.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,53175.555555555555,5,0,5,5_0 -3714,0.0,0.0,42.0,111,21,71,0.0,1507,0.0,0.0,0.0,333.0,1.0,3.0,2.0,4.0,2.1,3222.0479065057543,0.0,0.0,18485.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8802.380952380952,1,0,1_1,1_0 -3715,8.0,8.0,78.0,111,75,44,0.0,15070,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2510.248880401272,0.0,0.0,32476.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21650.666666666668,3,0,3_0,3_0 -3716,2.0,2.0,46.0,112,33,60,0.0,15071,0.0,199998.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2097.011263453147,5928.0,0.0,53567.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26783.5,4,0,4_0,4_1 -3717,0.0,0.0,53.0,111,22,31,0.0,15072,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3792.522961092394,0.0,0.0,10090.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10090.0,1,0,1_0,1_0 -3718,3.0,23.0,70.0,300,75,10,0.0,15073,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1069.1563642905257,0.0,0.0,23397.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,15598.0,2,0,2_0,2_0 -3719,0.0,0.0,34.0,111,45,20,0.0,15077,0.0,0.0,0.0,354.0,1.0,4.0,3.0,4.0,2.1,2461.054292083751,0.0,0.0,28948.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13784.761904761905,2,0,2_1,2_0 -3720,0.0,0.0,65.0,111,23,50,0.0,15079,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2595.179156994927,7280.0,0.0,120274.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,80182.66666666667,5,0,5,5_0 -3721,1.0,1.0,77.0,111,75,71,1.0,15080,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,5165.801969075083,3120.0,18500.0,37863.0,5,1,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18931.5,3,0,3_0,3_0 -3722,8.0,9.0,52.0,120,56,41,0.0,15081,0.0,0.0,120.0,0.0,1.0,5.0,0.0,2.0,1.5,2671.2249062130904,1014.0,0.0,54580.0,1,1,0,2.0,5,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,36386.666666666664,5,0,5,5_0 -3723,0.0,0.0,31.0,111,37,20,0.0,15082,0.0,0.0,0.0,498.0,1.0,2.0,0.0,1.0,1.0,3046.2438393752595,0.0,0.0,24711.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24711.0,4,0,4_0,4_0 -3724,0.0,21.0,40.0,111,67,50,0.0,15084,0.0,750.0,0.0,567.0,2.0,3.0,2.0,4.0,2.1,2953.825627398479,913.0,0.0,30174.0,1,3,9,7.0,4,3.0,1.0,1.0,0,0,0,1,0,1,0.0,3.0,14368.571428571428,2,0,2_1,2_0 -3725,3.0,3.0,76.0,112,78,70,0.0,15086,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2531.541620467602,0.0,0.0,14110.0,5,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9406.666666666666,1,0,1_0,1_1 -3726,1.0,1.0,38.0,111,46,20,0.0,15088,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2345.5076449016296,3318.0,0.0,73631.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,35062.380952380954,5,0,5,5_0 -3727,6.0,6.0,55.0,111,21,31,0.0,15089,0.0,350.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,3596.4823593190727,4160.0,0.0,35637.0,4,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,17818.5,3,0,3_0,3_0 -3728,0.0,0.0,48.0,111,34,10,0.0,1509,0.0,0.0,0.0,1200.0,1.0,3.0,0.0,2.0,1.5,3277.7360689718835,0.0,0.0,60390.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,40260.0,5,0,5,5_0 -3729,1.0,1.0,59.0,300,22,70,1.0,15090,0.0,99999.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2145.707434645476,0.0,12000.0,40074.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,26716.0,4,0,4_0,4_1 -3730,11.0,11.0,62.0,111,77,50,0.0,15091,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1025.6010350052215,0.0,0.0,41304.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27536.0,4,0,4_0,4_0 -3731,5.0,7.0,41.0,111,47,31,0.0,15092,0.0,1000.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2454.9717319346564,3617.0,0.0,30524.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19077.5,3,0,3_0,3_0 -3732,0.0,0.0,52.0,111,85,42,0.0,15093,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2267.2405187957943,0.0,0.0,2412.0,7,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,2412.0,1,0,1_1,1_0 -3733,1.0,3.0,42.0,300,64,50,0.0,15096,0.0,320.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2959.491320751528,5141.0,0.0,31781.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17656.11111111111,3,0,3_0,3_1 -3734,3.0,6.0,34.0,112,46,20,0.0,15097,0.0,370.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1836.0649813132254,0.0,0.0,47104.0,1,3,7,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22430.47619047619,4,0,4_0,4_0 -3735,0.0,15.0,26.0,111,52,43,0.0,15099,0.0,0.0,250.0,0.0,2.0,2.0,0.0,2.0,1.5,4272.082892228452,1560.0,0.0,37913.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,25275.333333333332,4,0,4_0,4_0 -3736,1.0,5.0,46.0,111,37,50,2.0,151,0.0,250.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1872.4474139184651,406.0,7000.0,61962.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24784.8,4,0,4_0,4_0 -3737,12.0,12.0,75.0,111,86,71,0.0,1510,0.0,0.0,0.0,340.0,0.0,5.0,0.0,1.0,1.0,2840.864337758111,1040.0,0.0,20845.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20845.0,3,0,3_0,3_0 -3738,0.0,11.0,55.0,111,53,70,0.0,15101,0.0,850.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2761.2215913855357,5629.0,0.0,60753.0,1,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,40502.0,5,0,5,5_0 -3739,0.0,0.0,23.0,111,56,41,0.0,15103,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1742.6136725688625,0.0,0.0,9650.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9650.0,1,0,1_0,1_0 -3740,3.0,3.0,81.0,300,74,12,0.0,15104,0.0,0.0,0.0,0.0,1.0,13.0,0.0,3.0,2.0,1858.5438373625148,1560.0,0.0,76730.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38365.0,5,0,5,5_1 -3741,15.0,19.0,44.0,300,62,50,0.0,15105,0.0,0.0,100.0,0.0,2.0,5.0,2.0,3.0,2.0,3078.794470535455,2132.0,0.0,46721.0,1,1,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23360.5,4,0,4_0,4_1 -3742,5.0,5.0,68.0,211,75,50,0.0,15106,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,927.7874358949175,0.0,0.0,42575.0,5,1,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28383.333333333332,4,0,4_0,4_0 -3743,0.0,6.0,43.0,112,47,50,2.0,15107,0.0,380.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1672.620791693219,2707.0,10000.0,53557.0,1,2,7,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,23285.652173913044,4,0,4_0,4_1 -3744,27.0,29.0,86.0,112,71,71,0.0,15108,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3004.5896133134192,0.0,0.0,11282.0,5,4,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11282.0,1,0,1_0,1_1 -3745,1.0,11.0,48.0,112,45,42,2.0,15109,0.0,150.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1966.4714902190271,0.0,2000.0,5750.0,1,2,9,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,3833.3333333333335,1,0,1_0,1_1 -3746,0.0,0.0,60.0,221,78,71,0.0,15110,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3073.495576694816,0.0,0.0,9249.0,5,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9249.0,1,0,1_1,1_0 -3747,11.0,11.0,83.0,111,77,50,0.0,15112,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3053.0165363397628,0.0,0.0,25504.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25504.0,4,0,4_0,4_0 -3748,2.0,7.0,44.0,111,54,42,0.0,15114,0.0,100.0,0.0,255.0,1.0,4.0,2.0,3.0,1.8,1794.8138578413657,0.0,0.0,19197.0,1,3,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,10665.0,1,0,1_1,1_0 -3749,8.0,9.0,51.0,111,38,20,0.0,15117,0.0,600.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,797.8684475359364,2809.0,0.0,58016.0,1,1,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,19338.666666666668,3,0,3_0,3_0 -3750,0.0,0.0,76.0,111,77,70,0.0,15118,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1451.2469087041911,0.0,0.0,10790.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10790.0,1,0,1_0,1_0 -3751,13.0,13.0,58.0,112,75,30,0.0,15119,0.0,1000.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2230.981046215333,1498.0,0.0,17430.0,5,1,8,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,11620.0,1,0,1_0,1_1 -3752,4.0,11.0,52.0,120,67,71,0.0,15120,0.0,112.0,14.0,260.0,1.0,3.0,0.0,1.0,1.0,5864.418324184731,0.0,0.0,20761.0,1,3,0,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20761.0,3,0,3_0,3_0 -3753,10.0,10.0,80.0,111,75,70,0.0,15122,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3633.165807890411,0.0,0.0,20790.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13860.0,2,0,2_0,2_0 -3754,7.0,15.0,28.0,111,68,41,0.0,15123,0.0,300.0,0.0,430.0,2.0,3.0,2.0,4.0,2.1,5883.184132608083,2080.0,0.0,44663.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,21268.095238095237,3,0,3_1,3_0 -3755,1.0,11.0,57.0,120,21,50,2.0,15127,0.0,99999.0,210.0,0.0,3.0,7.0,3.0,5.0,3.0,3361.520543984857,1260.0,8000.0,58963.0,1,2,0,2.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,19654.333333333332,3,0,3_0,3_0 -3756,0.0,0.0,58.0,111,56,71,0.0,15128,0.0,0.0,0.0,17.0,2.0,4.0,1.0,2.0,1.5,3737.5604337392533,0.0,0.0,23913.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15942.0,2,0,2_1,2_0 -3757,7.0,10.0,42.0,211,21,50,0.0,15129,0.0,96.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2622.1533616068555,0.0,0.0,43010.0,1,2,3,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17204.0,3,0,3_0,3_0 -3758,4.0,4.0,73.0,112,74,10,0.0,15130,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,5716.948504558753,0.0,0.0,43901.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29267.333333333332,5,0,5,5_0 -3759,0.0,0.0,56.0,221,38,50,0.0,15131,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1390.8657433144456,2601.0,0.0,37452.0,1,1,1,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24968.0,4,0,4_0,4_0 -3760,5.0,5.0,47.0,112,38,50,0.0,15132,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2819.040969059434,0.0,0.0,55532.0,4,2,8,1.0,2,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,37021.333333333336,5,0,5,5_0 -3761,0.0,3.0,39.0,111,63,50,2.0,15133,0.0,300.0,0.0,0.0,2.0,1.0,1.0,3.0,1.8,3206.165985794465,2340.0,5000.0,41228.0,1,4,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,22904.444444444445,4,0,4_0,4_0 -3762,0.0,10.0,24.0,111,46,10,2.0,15134,0.0,0.0,210.0,320.0,1.0,1.0,0.0,2.0,1.5,3943.1020655426237,0.0,3000.0,25953.0,1,3,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17302.0,3,0,3_0,3_0 -3763,0.0,1.0,39.0,112,21,50,0.0,15135,0.0,90.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,1411.7801010752703,0.0,0.0,35648.0,1,1,9,2.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,16975.238095238095,3,0,3_0,3_0 -3764,0.0,0.0,81.0,111,78,71,0.0,15136,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3943.8037478989777,0.0,0.0,2872.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2872.0,1,0,1_1,1_0 -3765,7.0,9.0,42.0,111,85,20,0.0,15138,0.0,0.0,0.0,195.0,0.0,4.0,0.0,1.0,1.0,2900.0006733939745,0.0,0.0,14285.0,7,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,14285.0,2,0,2_1,2_0 -3766,2.0,2.0,51.0,111,37,31,0.0,1514,0.0,610.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2069.908369997909,0.0,0.0,67148.0,1,1,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,29194.782608695656,5,0,5,5_0 -3767,5.0,5.0,63.0,221,74,20,0.0,15141,0.0,200.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2081.4732903042905,1200.0,0.0,26166.0,5,1,1,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,26166.0,4,0,4_0,4_0 -3768,4.0,4.0,58.0,111,37,30,0.0,15142,0.0,220.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1772.0504486732684,4680.0,0.0,111344.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,42824.61538461538,5,0,5,5_0 -3769,3.0,9.0,48.0,112,21,33,0.0,15144,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2483.0011031893305,2081.0,0.0,41430.0,1,2,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27620.0,4,0,4_0,4_1 -3770,5.0,5.0,68.0,111,74,42,0.0,15145,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3332.8160885674392,0.0,0.0,54719.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,36479.333333333336,5,0,5,5_0 -3771,0.0,0.0,64.0,120,78,70,0.0,15146,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3305.334370881484,0.0,0.0,10626.0,5,3,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10626.0,1,0,1_1,1_0 -3772,3.0,5.0,67.0,112,74,20,0.0,15147,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1460.6605312689564,6415.0,0.0,51205.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,34136.666666666664,5,0,5,5_1 -3773,12.0,12.0,51.0,111,38,31,0.0,15148,0.0,170.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1645.5615537761996,0.0,0.0,95805.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,38322.0,5,0,5,5_0 -3774,11.0,14.0,34.0,111,62,43,0.0,15149,0.0,200.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2284.3018670595793,0.0,0.0,37421.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17819.52380952381,3,0,3_0,3_0 -3775,11.0,11.0,57.0,111,31,10,0.0,15152,0.0,0.0,55.0,0.0,1.0,6.0,0.0,2.0,1.5,2601.4082597892216,0.0,0.0,157437.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,104958.0,5,0,5,5_0 -3776,1.0,10.0,33.0,111,65,43,0.0,15154,0.0,650.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3760.009555852807,4369.0,0.0,41684.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,23157.777777777777,4,0,4_0,4_0 -3777,3.0,3.0,41.0,112,47,50,0.0,15155,0.0,250.0,200.0,0.0,2.0,5.0,2.0,4.0,2.5,1124.1699765386384,1560.0,0.0,35850.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14340.0,2,0,2_0,2_1 -3778,2.0,7.0,72.0,400,46,50,0.0,15156,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2343.8989608359593,0.0,0.0,35364.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23576.0,4,0,4_0,4_1 -3779,0.0,7.0,30.0,111,84,31,0.0,15159,0.0,400.0,0.0,513.0,0.0,2.0,0.0,1.0,1.0,2747.0284685616134,3276.0,0.0,18673.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18673.0,3,0,3_0,3_0 -3780,0.0,0.0,50.0,111,85,71,0.0,1516,0.0,0.0,0.0,38.0,0.0,2.0,0.0,1.0,1.0,3374.8557657956376,0.0,0.0,6746.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6746.0,1,0,1_1,1_0 -3781,1.0,1.0,79.0,120,78,70,0.0,15160,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3357.7114296270984,0.0,0.0,32986.0,5,1,0,3.0,5,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21990.666666666668,4,0,4_0,4_0 -3782,1.0,6.0,58.0,112,77,70,2.0,15161,0.0,750.0,0.0,0.0,2.0,5.0,0.0,4.0,2.5,1035.2016631596293,0.0,8000.0,77175.0,5,1,9,0.0,5,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,30870.0,5,0,5,5_1 -3783,11.0,11.0,76.0,111,75,31,0.0,15163,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2786.968269425129,2604.0,0.0,19578.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19578.0,3,0,3_0,3_0 -3784,3.0,8.0,32.0,111,55,50,0.0,15164,0.0,0.0,0.0,460.0,2.0,3.0,0.0,2.0,1.5,1953.2565369865476,0.0,0.0,63020.0,1,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,42013.333333333336,5,0,5,5_0 -3785,1.0,1.0,46.0,111,42,31,1.0,15165,0.0,0.0,200.0,555.0,1.0,2.0,0.0,1.0,1.0,2792.442830007334,2774.0,13000.0,32597.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,32597.0,5,0,5,5_0 -3786,0.0,0.0,33.0,111,52,50,0.0,15166,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3120.1605407434918,0.0,0.0,21271.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21271.0,3,0,3_0,3_0 -3787,3.0,3.0,38.0,211,67,60,0.0,15167,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,1783.2951364707187,0.0,0.0,41168.0,1,2,2,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,15833.846153846152,2,0,2_1,2_0 -3788,0.0,24.0,63.0,112,11,50,0.0,15169,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1909.4797200559822,0.0,0.0,28460.0,1,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18973.333333333332,3,0,3_0,3_1 -3789,5.0,5.0,72.0,111,75,41,0.0,15171,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2367.5201379161563,2652.0,0.0,54369.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36246.0,5,0,5,5_0 -3790,8.0,10.0,63.0,112,78,71,0.0,15175,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4271.805413067791,0.0,0.0,28424.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18949.333333333332,3,0,3_0,3_0 -3791,12.0,19.0,58.0,111,64,70,0.0,15177,0.0,0.0,400.0,329.0,1.0,3.0,0.0,1.0,1.0,2742.374266983118,3817.0,0.0,22283.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,22283.0,4,0,4_0,4_0 -3792,3.0,8.0,63.0,221,75,70,0.0,1518,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2369.0096085533482,0.0,0.0,31689.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21126.0,3,0,3_0,3_0 -3793,1.0,1.0,73.0,111,72,31,0.0,15183,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3429.542335886978,0.0,0.0,30678.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,30678.0,5,0,5,5_0 -3794,8.0,8.0,30.0,111,56,71,0.0,15184,0.0,200.0,0.0,233.0,1.0,2.0,0.0,1.0,1.0,2743.888343389804,1561.0,0.0,14530.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14530.0,2,0,2_0,2_0 -3795,0.0,0.0,44.0,111,63,71,0.0,15186,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2769.7458100604103,0.0,0.0,15602.0,4,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7429.523809523809,1,0,1_1,1_0 -3796,4.0,11.0,56.0,300,65,50,0.0,15187,0.0,0.0,300.0,0.0,1.0,3.0,0.0,1.0,1.0,1591.8188423747215,1301.0,0.0,18231.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18231.0,3,0,3_0,3_1 -3797,6.0,17.0,52.0,300,62,50,0.0,15189,0.0,0.0,50.0,0.0,3.0,5.0,2.0,4.0,2.3,1046.6124852689159,2657.0,0.0,34920.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,15182.608695652176,2,0,2_0,2_1 -3798,4.0,9.0,76.0,400,71,70,0.0,1519,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3059.187246384731,2600.0,0.0,14009.0,5,2,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14009.0,2,0,2_0,2_1 -3799,7.0,11.0,74.0,112,71,70,0.0,15190,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1460.14286462936,0.0,0.0,30543.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20362.0,3,0,3_0,3_1 -3800,0.0,0.0,54.0,111,56,71,0.0,15192,0.0,0.0,0.0,161.0,2.0,2.0,0.0,2.0,1.5,2848.6595413555074,0.0,0.0,16308.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10872.0,1,0,1_1,1_0 -3801,0.0,0.0,31.0,111,54,41,1.0,15194,0.0,200.0,100.0,0.0,2.0,3.0,0.0,2.0,1.5,3470.313171635027,1306.0,15700.0,39764.0,1,2,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26509.333333333332,4,0,4_0,4_0 -3802,1.0,6.0,36.0,111,63,50,2.0,15196,0.0,0.0,350.0,315.0,1.0,2.0,0.0,1.0,1.0,2187.6221583428905,5175.0,8400.0,20464.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,20464.0,3,0,3_0,3_0 -3803,0.0,11.0,31.0,400,67,43,0.0,15197,0.0,400.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,2958.4111636547873,3588.0,0.0,25209.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12004.285714285714,1,0,1_0,1_1 -3804,0.0,0.0,42.0,111,46,50,0.0,15198,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,3365.241670870132,0.0,0.0,18658.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14352.307692307691,2,0,2_0,2_0 -3805,2.0,6.0,34.0,111,52,41,0.0,15199,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2938.101548524232,0.0,0.0,20952.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20952.0,3,0,3_0,3_0 -3806,1.0,14.0,52.0,111,52,60,0.0,1520,0.0,0.0,0.0,80.0,1.0,1.0,0.0,1.0,1.0,3300.154323339386,0.0,0.0,9510.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9510.0,1,0,1_1,1_0 -3807,0.0,3.0,29.0,111,48,31,2.0,15200,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4213.8715626276235,0.0,19300.0,20351.0,1,2,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,20351.0,3,0,3_0,3_0 -3808,4.0,22.0,31.0,111,46,50,0.0,15201,0.0,0.0,0.0,336.0,2.0,4.0,1.0,3.0,1.8,1474.670945934249,0.0,0.0,20896.0,1,3,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,11608.888888888889,1,0,1_1,1_0 -3809,2.0,2.0,83.0,300,78,71,0.0,15204,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2631.3707215510944,0.0,0.0,27306.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18204.0,3,0,3_0,3_1 -3810,4.0,6.0,33.0,111,38,12,0.0,15205,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,4152.32066645658,0.0,0.0,52002.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,21667.5,3,0,3_0,3_0 -3811,0.0,0.0,66.0,111,77,60,0.0,15206,0.0,0.0,0.0,330.0,0.0,3.0,0.0,1.0,1.0,3366.4471518086993,0.0,0.0,17192.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17192.0,3,0,3_0,3_0 -3812,2.0,2.0,24.0,111,63,42,0.0,15209,0.0,0.0,200.0,670.0,2.0,6.0,0.0,2.0,1.5,2768.288386735031,0.0,0.0,27685.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18456.666666666668,3,0,3_0,3_0 -3813,16.0,16.0,58.0,112,37,60,0.0,1521,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1580.1295008060727,2080.0,0.0,36483.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24322.0,4,0,4_0,4_1 -3814,2.0,2.0,30.0,111,43,33,0.0,15210,0.0,950.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2336.5831298531853,1763.0,0.0,61776.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,41184.0,5,0,5,5_0 -3815,2.0,10.0,32.0,400,52,50,0.0,15211,0.0,580.0,0.0,0.0,2.0,4.0,4.0,6.0,2.7,1051.5089599260182,5739.0,0.0,57049.0,1,3,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,1,0.0,2.0,21129.25925925926,3,0,3_1,3_1 -3816,0.0,0.0,83.0,112,74,50,0.0,15216,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3268.936441397758,0.0,0.0,28660.0,5,1,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28660.0,4,0,4_0,4_0 -3817,0.0,0.0,23.0,111,84,10,0.0,15217,0.0,0.0,0.0,94.0,0.0,1.0,0.0,1.0,1.0,2865.9123933017527,0.0,0.0,5420.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,5420.0,1,0,1_1,1_0 -3818,15.0,15.0,74.0,300,77,70,0.0,15219,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1808.3513331445959,0.0,0.0,20010.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20010.0,3,0,3_0,3_1 -3819,3.0,3.0,59.0,111,62,70,0.0,1522,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1028.2224649689886,0.0,0.0,29061.0,1,1,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,14530.5,2,0,2_0,2_0 -3820,0.0,1.0,54.0,111,37,12,0.0,15221,0.0,5.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2556.708635999302,0.0,0.0,113323.0,1,2,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,113323.0,5,0,5,5_0 -3821,4.0,8.0,37.0,400,21,50,0.0,15222,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2395.762637597888,4680.0,0.0,29358.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,13980.0,2,0,2_1,2_1 -3822,2.0,2.0,57.0,120,46,50,0.0,15223,0.0,199998.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1852.744254655323,0.0,0.0,27778.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18518.666666666668,3,0,3_0,3_1 -3823,0.0,11.0,37.0,111,37,41,0.0,15225,0.0,0.0,0.0,750.0,2.0,2.0,0.0,2.0,1.5,3017.9688583035263,0.0,0.0,44200.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29466.666666666668,5,0,5,5_0 -3824,2.0,8.0,33.0,111,33,31,0.0,15228,0.0,810.0,0.0,352.0,2.0,3.0,2.0,4.0,2.1,3662.978313416401,2366.0,0.0,43889.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20899.52380952381,3,0,3_0,3_0 -3825,0.0,11.0,49.0,111,46,50,2.0,15229,0.0,30.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,1642.4483937064156,0.0,9990.0,45314.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16183.57142857143,2,0,2_0,2_0 -3826,2.0,2.0,35.0,111,33,20,0.0,1523,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2393.645209653085,1040.0,0.0,69051.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,32881.42857142857,5,0,5,5_0 -3827,1.0,5.0,52.0,111,63,50,0.0,15231,0.0,199998.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1956.5832613975863,4513.0,0.0,40442.0,1,1,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,26961.333333333332,4,0,4_0,4_0 -3828,17.0,17.0,58.0,221,77,71,0.0,15232,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,2795.14981747974,0.0,0.0,23960.0,5,1,1,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11980.0,1,0,1_0,1_0 -3829,0.0,23.0,55.0,111,52,10,0.0,15235,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,914.693349935731,2392.0,0.0,51442.0,1,1,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,25721.0,4,0,4_0,4_0 -3830,7.0,7.0,38.0,111,38,31,0.0,15238,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2345.5076449016296,1736.0,0.0,42019.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20009.04761904762,3,0,3_0,3_0 -3831,8.0,12.0,28.0,111,63,50,0.0,1524,0.0,0.0,99999.0,33.0,1.0,4.0,3.0,5.0,2.4,2255.600557240881,1821.0,0.0,21431.0,4,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,8929.583333333334,1,0,1_1,1_0 -3832,2.0,11.0,51.0,112,62,50,0.0,15240,0.0,0.0,400.0,0.0,3.0,6.0,0.0,3.0,2.0,2838.5465442158143,1876.0,0.0,47425.0,1,1,9,2.0,5,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,23712.5,4,0,4_0,4_0 -3833,13.0,13.0,76.0,111,86,70,0.0,15241,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2195.6981386847597,0.0,0.0,15032.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15032.0,2,0,2_0,2_0 -3834,0.0,0.0,22.0,111,84,20,0.0,15242,0.0,0.0,0.0,397.0,0.0,1.0,0.0,1.0,1.0,3057.7276952212787,0.0,0.0,5062.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,5062.0,1,0,1_1,1_0 -3835,5.0,5.0,49.0,111,56,70,0.0,15243,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1663.7491736245522,0.0,0.0,9718.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,9718.0,1,0,1_0,1_0 -3836,0.0,0.0,41.0,111,85,71,0.0,15244,0.0,0.0,0.0,0.0,0.0,5.0,7.0,8.0,3.9,1610.4527328596155,0.0,0.0,32254.0,6,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8270.25641025641,1,0,1_1,1_0 -3837,12.0,12.0,53.0,111,37,10,0.0,15245,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,6055.10953446565,0.0,0.0,35530.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23686.666666666668,4,0,4_0,4_0 -3838,3.0,4.0,58.0,212,47,41,0.0,15247,0.0,0.0,100449.0,0.0,2.0,5.0,0.0,2.0,1.5,1417.5978303518411,3770.0,0.0,47584.0,1,1,1,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,31722.666666666668,5,0,5,5_1 -3839,2.0,2.0,32.0,111,37,20,0.0,15248,0.0,0.0,0.0,577.0,2.0,3.0,0.0,2.0,1.5,3011.0853363781907,1825.0,0.0,59141.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,39427.333333333336,5,0,5,5_0 -3840,1.0,10.0,70.0,112,78,71,2.0,1525,0.0,200.0,100.0,0.0,2.0,6.0,2.0,4.0,2.5,2702.304627099587,2312.0,8000.0,58810.0,5,1,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,23524.0,4,0,4_0,4_1 -3841,4.0,13.0,52.0,112,46,60,0.0,15251,0.0,872.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2299.138191622043,7204.0,0.0,41560.0,1,2,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27706.666666666668,4,0,4_0,4_1 -3842,7.0,15.0,43.0,111,67,50,0.0,15252,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,2.9,954.2275188978971,2602.0,0.0,22254.0,4,3,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,7673.793103448276,1,0,1_1,1_0 -3843,0.0,0.0,76.0,111,78,71,0.0,15253,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3296.794870823314,0.0,0.0,18283.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18283.0,3,0,3_0,3_0 -3844,5.0,5.0,31.0,111,52,30,0.0,15255,0.0,0.0,80.0,595.0,1.0,3.0,1.0,2.0,1.3,2835.9203130933424,1300.0,0.0,12417.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,9551.538461538461,1,0,1_0,1_0 -3845,1.0,7.0,44.0,111,53,12,2.0,15256,0.0,0.0,0.0,838.0,2.0,6.0,5.0,7.0,3.6,1886.3677145991585,0.0,9000.0,74786.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,20773.888888888887,3,0,3_0,3_0 -3846,5.0,13.0,39.0,111,68,71,0.0,15257,0.0,0.0,0.0,76.0,1.0,3.0,2.0,4.0,2.1,3918.0777833628263,1040.0,0.0,23050.0,4,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,10976.190476190475,1,0,1_1,1_0 -3847,16.0,17.0,62.0,400,78,60,0.0,15259,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4080.886155224221,0.0,0.0,36341.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24227.333333333332,4,0,4_0,4_1 -3848,0.0,1.0,53.0,111,46,12,2.0,15260,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,4038.6515259244024,0.0,17600.0,19428.0,1,1,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,19428.0,3,0,3_0,3_0 -3849,3.0,3.0,50.0,112,48,60,0.0,15261,0.0,500.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2169.2671109243292,3684.0,0.0,37274.0,1,1,10,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,14909.6,2,0,2_0,2_1 -3850,12.0,12.0,51.0,111,67,70,0.0,15262,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1918.2222481311592,0.0,0.0,5670.0,4,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,5670.0,1,0,1_0,1_0 -3851,8.0,11.0,35.0,112,38,12,0.0,15265,0.0,0.0,240.0,0.0,2.0,6.0,0.0,2.0,1.5,1720.318648466757,2751.0,0.0,68316.0,1,2,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,45544.0,5,0,5,5_1 -3852,0.0,0.0,27.0,111,46,31,0.0,15266,0.0,0.0,0.0,560.0,1.0,1.0,0.0,1.0,1.0,3729.1343308842856,0.0,0.0,45321.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,45321.0,5,0,5,5_0 -3853,31.0,35.0,56.0,300,13,12,0.0,15267,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1271.8087750545594,0.0,0.0,55432.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,36954.666666666664,5,0,5,5_1 -3854,0.0,0.0,29.0,111,85,50,0.0,15268,0.0,0.0,0.0,418.0,0.0,2.0,0.0,1.0,1.0,3546.0001520736278,0.0,0.0,9883.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9883.0,1,0,1_0,1_0 -3855,1.0,1.0,65.0,112,77,50,1.0,15271,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1509.0146566936617,0.0,16000.0,17532.0,5,4,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17532.0,3,0,3_0,3_0 -3856,0.0,0.0,33.0,111,21,71,0.0,15273,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3200.580465236495,0.0,0.0,15310.0,1,4,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8505.555555555555,1,0,1_0,1_0 -3857,4.0,6.0,60.0,111,77,50,0.0,15276,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1950.5093034583667,0.0,0.0,27730.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18486.666666666668,3,0,3_0,3_0 -3858,0.0,8.0,55.0,111,63,31,2.0,15277,0.0,0.0,20.0,211.0,2.0,6.0,6.0,8.0,3.7,1229.7885343143653,1040.0,1500.0,48301.0,1,3,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,1,2.0,1.0,13054.324324324323,2,0,2_1,2_0 -3859,3.0,11.0,28.0,111,38,12,0.0,15279,0.0,0.0,25.0,0.0,1.0,2.0,0.0,1.0,1.0,4990.057572263797,3225.0,0.0,31823.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,31823.0,5,0,5,5_0 -3860,4.0,13.0,55.0,111,63,50,0.0,1528,0.0,750.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1770.624412418902,3666.0,0.0,11897.0,1,1,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,9151.538461538461,1,0,1_0,1_0 -3861,2.0,2.0,81.0,111,78,70,0.0,15282,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2874.6120801901625,1695.0,0.0,24890.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16593.333333333332,2,0,2_0,2_0 -3862,0.0,18.0,27.0,111,52,20,0.0,15287,0.0,0.0,800.0,280.0,1.0,1.0,0.0,1.0,1.0,2444.5317357421222,0.0,0.0,14194.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14194.0,2,0,2_0,2_0 -3863,8.0,9.0,62.0,112,11,50,0.0,15288,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1463.978964225913,3275.0,0.0,20246.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,10123.0,1,0,1_0,1_1 -3864,4.0,20.0,31.0,112,85,30,0.0,15290,0.0,0.0,0.0,395.0,0.0,2.0,0.0,2.0,1.5,3123.779633910219,1040.0,0.0,5688.0,6,3,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,3792.0,1,0,1_0,1_0 -3865,0.0,17.0,22.0,111,56,50,0.0,15292,0.0,0.0,0.0,328.0,2.0,3.0,0.0,2.0,1.5,6781.697787316464,0.0,0.0,27621.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,18414.0,3,0,3_1,3_0 -3866,2.0,2.0,33.0,111,56,60,0.0,15294,0.0,150.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2330.358007670222,0.0,0.0,78563.0,1,2,6,4.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,43646.11111111111,5,0,5,5_0 -3867,11.0,11.0,54.0,111,67,71,0.0,15295,0.0,0.0,0.0,0.0,4.0,5.0,6.0,8.0,4.3,2188.942367153276,0.0,0.0,69095.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,1,0.0,1.0,16068.604651162792,2,0,2_1,2_0 -3868,7.0,8.0,80.0,112,72,70,0.0,15298,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3126.1189369050435,0.0,0.0,7717.0,5,1,5,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,7717.0,1,0,1_0,1_1 -3869,4.0,5.0,32.0,221,21,31,0.0,15299,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,4060.1449028453117,3537.0,0.0,39734.0,1,2,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18920.95238095238,3,0,3_0,3_0 -3870,2.0,2.0,78.0,300,71,70,0.0,153,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1797.402643582297,2241.0,0.0,22066.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14710.666666666666,2,0,2_0,2_1 -3871,5.0,6.0,47.0,111,22,50,0.0,1530,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1955.675172244964,0.0,0.0,10645.0,1,1,9,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,4258.0,1,0,1_0,1_0 -3872,1.0,3.0,51.0,112,63,50,0.0,15301,0.0,190.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1502.3846814266474,4473.0,0.0,35880.0,1,1,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17940.0,3,0,3_0,3_1 -3873,0.0,0.0,26.0,111,84,30,0.0,15304,0.0,0.0,0.0,43.0,0.0,1.0,0.0,1.0,1.0,3761.252079256562,0.0,0.0,4344.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4344.0,1,0,1_1,1_0 -3874,10.0,10.0,32.0,111,54,50,0.0,15306,0.0,0.0,0.0,344.0,2.0,3.0,1.0,3.0,2.0,1819.4411902485324,3380.0,0.0,47593.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23796.5,4,0,4_0,4_0 -3875,0.0,0.0,41.0,111,54,31,0.0,15307,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3738.8783703749205,0.0,0.0,32778.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32778.0,5,0,5,5_0 -3876,7.0,7.0,40.0,111,37,50,0.0,15308,0.0,250.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,4485.715036894854,2080.0,0.0,56310.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,22524.0,4,0,4_0,4_0 -3877,13.0,13.0,52.0,111,85,50,0.0,1531,0.0,0.0,0.0,132.0,1.0,5.0,0.0,2.0,1.5,2914.9662157685634,0.0,0.0,19774.0,7,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,13182.666666666666,2,0,2_1,2_0 -3878,0.0,0.0,50.0,211,63,71,0.0,15310,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3400.222070382201,0.0,0.0,11604.0,4,3,4,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,7736.0,1,0,1_1,1_0 -3879,4.0,5.0,34.0,112,64,50,0.0,15312,0.0,316.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1517.8862369672233,2081.0,0.0,32617.0,1,2,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18120.555555555555,3,0,3_0,3_1 -3880,0.0,6.0,61.0,111,75,30,0.0,15313,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3363.093065773603,3225.0,0.0,13391.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13391.0,2,0,2_0,2_0 -3881,0.0,4.0,55.0,111,56,50,0.0,15314,0.0,0.0,0.0,450.0,1.0,3.0,1.0,2.0,1.5,2973.2533142116617,0.0,0.0,18650.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,12433.333333333334,1,0,1_0,1_0 -3882,0.0,0.0,70.0,111,75,20,0.0,15315,0.0,0.0,0.0,46.0,0.0,1.0,0.0,1.0,1.0,3390.432046515864,0.0,0.0,13500.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13500.0,2,0,2_1,2_0 -3883,7.0,7.0,62.0,300,72,50,0.0,15316,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2129.8901176456393,0.0,0.0,31458.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,20972.0,3,0,3_0,3_1 -3884,6.0,18.0,39.0,111,67,10,0.0,15317,0.0,200.0,0.0,92.0,1.0,3.0,2.0,4.0,2.1,2658.4902430944367,0.0,0.0,31479.0,1,3,7,5.0,4,3.0,0.0,0.0,0,0,1,0,0,1,0.0,3.0,14990.0,2,0,2_1,2_0 -3885,7.0,18.0,26.0,111,62,43,0.0,15319,0.0,0.0,140.0,251.0,2.0,3.0,0.0,2.0,1.5,3843.519883889087,0.0,0.0,43283.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,28855.333333333332,4,0,4_1,4_0 -3886,6.0,9.0,46.0,111,37,31,0.0,1532,0.0,0.0,0.0,0.0,1.0,7.0,3.0,5.0,2.8,2607.770257329307,2867.0,0.0,67095.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23962.5,4,0,4_0,4_0 -3887,2.0,16.0,49.0,111,22,50,0.0,15322,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1311.2427472795196,3381.0,0.0,54654.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,27327.0,4,0,4_0,4_0 -3888,0.0,0.0,74.0,111,75,41,0.0,15323,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4030.0689462367422,0.0,0.0,22594.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22594.0,4,0,4_0,4_0 -3889,1.0,1.0,31.0,112,47,31,0.0,15324,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3697.167482622873,1714.0,0.0,23624.0,1,1,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23624.0,4,0,4_0,4_0 -3890,8.0,8.0,61.0,112,43,33,0.0,15325,0.0,0.0,380.0,0.0,2.0,6.0,0.0,2.0,1.5,1493.503004379791,3537.0,0.0,76486.0,1,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,50990.666666666664,5,0,5,5_1 -3891,4.0,9.0,36.0,300,69,43,0.0,15327,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2847.7674187488856,2724.0,0.0,18690.0,1,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18690.0,3,0,3_0,3_1 -3892,1.0,13.0,24.0,300,65,50,0.0,15328,0.0,0.0,452.0,278.0,1.0,4.0,2.0,4.0,2.1,2270.647846784528,2080.0,0.0,27458.0,1,3,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,13075.238095238095,2,0,2_1,2_0 -3893,4.0,6.0,48.0,111,65,30,0.0,15329,0.0,0.0,80.0,260.0,1.0,1.0,0.0,1.0,1.0,4758.021734792809,2271.0,0.0,18753.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18753.0,3,0,3_0,3_0 -3894,4.0,4.0,62.0,120,72,50,0.0,15330,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,4642.800755776199,0.0,0.0,66558.0,5,1,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,66558.0,5,0,5,5_0 -3895,9.0,14.0,30.0,111,67,42,0.0,15331,0.0,99999.0,0.0,350.0,1.0,3.0,0.0,1.0,1.0,2678.5981910966166,0.0,0.0,19684.0,1,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19684.0,3,0,3_0,3_0 -3896,10.0,15.0,66.0,111,78,50,0.0,15332,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1535.3411497016941,3052.0,0.0,22536.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15024.0,2,0,2_0,2_0 -3897,0.0,12.0,56.0,400,21,50,0.0,15338,0.0,1000.0,80.0,0.0,2.0,6.0,0.0,2.0,1.5,4120.895870818676,3869.0,0.0,25040.0,1,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,16693.333333333332,2,0,2_0,2_1 -3898,6.0,6.0,63.0,111,74,31,0.0,15339,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1960.2329250286941,0.0,0.0,88318.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,58878.666666666664,5,0,5,5_0 -3899,0.0,0.0,34.0,111,31,20,0.0,1534,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2492.332293070002,0.0,0.0,49932.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27740.0,4,0,4_0,4_0 -3900,8.0,10.0,55.0,111,52,50,0.0,15340,0.0,100.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1896.041738525509,0.0,0.0,42544.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28362.666666666668,4,0,4_0,4_0 -3901,1.0,7.0,32.0,111,47,20,0.0,15343,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3375.353498755705,3546.0,0.0,49998.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33332.0,5,0,5,5_0 -3902,2.0,2.0,76.0,120,86,71,0.0,15344,0.0,200.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3109.7339951456547,0.0,0.0,34060.0,5,1,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17030.0,3,0,3_0,3_1 -3903,10.0,10.0,60.0,300,75,31,0.0,15345,0.0,190.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1393.0456493943645,6656.0,0.0,35651.0,5,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,17825.5,3,0,3_0,3_1 -3904,7.0,8.0,49.0,112,45,41,0.0,15346,0.0,550.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1737.981280670507,0.0,0.0,43130.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21565.0,3,0,3_0,3_1 -3905,6.0,23.0,56.0,400,77,41,0.0,15347,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2901.6326234540734,1039.0,0.0,8758.0,7,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,8758.0,1,0,1_0,1_1 -3906,7.0,9.0,67.0,300,74,50,0.0,15349,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,873.3310854752684,2874.0,0.0,20022.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13348.0,2,0,2_0,2_0 -3907,2.0,2.0,41.0,400,13,50,0.0,15352,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2374.4945636811053,0.0,0.0,59108.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24628.333333333336,4,0,4_0,4_1 -3908,2.0,3.0,73.0,400,75,60,0.0,15353,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3377.1980360215075,0.0,0.0,11380.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11380.0,1,0,1_0,1_1 -3909,6.0,11.0,75.0,111,75,70,0.0,15354,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3580.633175164182,3015.0,0.0,20820.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20820.0,3,0,3_0,3_0 -3910,5.0,21.0,54.0,111,46,31,0.0,15355,0.0,40.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1813.0286681145867,0.0,0.0,38493.0,1,1,7,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25662.0,4,0,4_0,4_0 -3911,2.0,15.0,64.0,112,75,41,0.0,15357,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2400.7340051284323,149.0,0.0,42587.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,28391.333333333332,4,0,4_0,4_1 -3912,21.0,21.0,78.0,112,78,71,0.0,15359,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2244.1915635546825,1560.0,0.0,14642.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14642.0,2,0,2_0,2_1 -3913,2.0,2.0,47.0,112,52,41,0.0,1536,0.0,150.0,0.0,500.0,2.0,5.0,1.0,3.0,2.0,1681.3608016903993,0.0,0.0,55090.0,1,3,7,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27545.0,4,0,4_0,4_0 -3914,0.0,0.0,67.0,112,75,50,0.0,15360,0.0,0.0,0.0,230.0,0.0,4.0,0.0,2.0,1.5,1145.8912176769493,1040.0,0.0,24112.0,5,3,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16074.666666666666,2,0,2_0,2_1 -3915,6.0,6.0,59.0,112,53,50,0.0,15361,0.0,530.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,982.8918341594932,2571.0,0.0,39350.0,1,1,8,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,19675.0,3,0,3_0,3_0 -3916,2.0,2.0,48.0,112,62,60,0.0,15362,0.0,0.0,50.0,0.0,2.0,5.0,0.0,2.0,1.5,1523.0113680435568,0.0,0.0,32919.0,1,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21946.0,4,0,4_0,4_1 -3917,4.0,5.0,30.0,111,54,31,0.0,15363,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2202.7858037469773,3329.0,0.0,34960.0,1,2,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,16647.619047619046,2,0,2_0,2_0 -3918,0.0,0.0,61.0,111,77,50,1.0,15364,0.0,0.0,0.0,1.0,0.0,4.0,0.0,1.0,1.0,2708.449295423315,0.0,9134.0,11989.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11989.0,1,0,1_1,1_0 -3919,11.0,11.0,74.0,111,77,70,0.0,15365,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2011.870865931804,6372.0,0.0,39336.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,26224.0,4,0,4_0,4_0 -3920,6.0,6.0,83.0,120,75,41,0.0,15366,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3384.775978538517,1245.0,0.0,40332.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26888.0,4,0,4_0,4_1 -3921,4.0,14.0,62.0,112,78,71,0.0,15367,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,3065.2492824580377,2608.0,0.0,19532.0,5,1,7,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19532.0,3,0,3_0,3_0 -3922,2.0,2.0,53.0,112,55,41,0.0,15368,0.0,300.0,60.0,595.0,2.0,4.0,1.0,3.0,1.8,2364.3100322347086,1040.0,0.0,50668.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,28148.888888888887,4,0,4_0,4_1 -3923,1.0,1.0,35.0,111,46,20,2.0,15370,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2689.1248787876057,2451.0,17800.0,54910.0,1,4,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26147.619047619046,4,0,4_0,4_0 -3924,11.0,11.0,66.0,111,74,60,0.0,15371,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3217.829611788929,0.0,0.0,33774.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,22516.0,4,0,4_0,4_0 -3925,0.0,0.0,52.0,111,56,50,0.0,15375,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2538.4103565888913,0.0,0.0,42249.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28166.0,4,0,4_0,4_0 -3926,0.0,0.0,41.0,111,48,30,0.0,15376,0.0,0.0,0.0,165.0,1.0,4.0,3.0,7.0,3.4,2570.117022106873,0.0,0.0,48334.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14215.882352941177,2,0,2_1,2_0 -3927,7.0,11.0,58.0,221,38,10,0.0,15377,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1562.1823025237495,780.0,0.0,47218.0,1,2,1,3.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,31478.666666666668,5,0,5,5_0 -3928,0.0,25.0,63.0,112,71,71,2.0,15378,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4846.168588965168,1820.0,760.0,21798.0,5,3,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,14532.0,2,0,2_0,2_1 -3929,13.0,13.0,67.0,111,72,70,0.0,15379,0.0,0.0,0.0,282.0,0.0,3.0,0.0,1.0,1.0,2555.2190744465015,0.0,0.0,12090.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12090.0,1,0,1_1,1_0 -3930,6.0,6.0,63.0,112,72,50,0.0,1538,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2260.1707413393647,2080.0,0.0,20108.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,13405.333333333334,2,0,2_0,2_1 -3931,1.0,13.0,26.0,111,55,20,2.0,15380,0.0,0.0,500.0,0.0,1.0,1.0,0.0,1.0,1.0,5860.809602045041,338.0,1000.0,13079.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,13079.0,2,0,2_1,2_0 -3932,12.0,12.0,87.0,400,71,70,0.0,15381,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2520.185156769897,0.0,0.0,15866.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,15866.0,2,0,2_1,2_1 -3933,6.0,11.0,51.0,111,85,10,0.0,15382,0.0,0.0,0.0,0.0,0.0,7.0,2.0,3.0,2.0,1923.4556008058646,0.0,0.0,1248.0,6,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,624.0,1,0,1_0,1_0 -3934,5.0,16.0,49.0,112,46,60,0.0,15383,0.0,350.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1315.8206455630934,3851.0,0.0,21828.0,1,2,8,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,14552.0,2,0,2_0,2_0 -3935,6.0,6.0,61.0,300,74,12,0.0,15384,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2015.6588074395636,0.0,0.0,14390.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,9593.333333333334,1,0,1_0,1_1 -3936,0.0,0.0,28.0,111,38,10,0.0,15385,0.0,0.0,0.0,530.0,1.0,2.0,0.0,1.0,1.0,3511.3723702935695,0.0,0.0,42754.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,42754.0,5,0,5,5_0 -3937,5.0,7.0,52.0,111,31,10,0.0,15386,0.0,20.0,20.0,0.0,2.0,5.0,2.0,4.0,2.1,1903.2864171695212,3328.0,0.0,121174.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,57701.904761904756,5,0,5,5_0 -3938,1.0,2.0,27.0,112,47,43,0.0,15389,0.0,600.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3501.7081737348612,0.0,0.0,23121.0,1,2,5,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23121.0,4,0,4_0,4_1 -3939,3.0,3.0,57.0,111,63,50,0.0,1539,0.0,0.0,200.0,0.0,2.0,5.0,0.0,2.0,1.5,1942.158902052206,0.0,0.0,39786.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,26524.0,4,0,4_0,4_0 -3940,13.0,13.0,72.0,111,77,70,0.0,15390,0.0,0.0,0.0,303.0,0.0,4.0,0.0,1.0,1.0,3152.2807557678852,2081.0,0.0,16210.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16210.0,2,0,2_0,2_0 -3941,1.0,1.0,38.0,111,38,10,2.0,15392,0.0,60.0,100.0,0.0,2.0,5.0,2.0,4.0,2.1,1202.103142196534,0.0,22000.0,61661.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,29362.38095238095,5,0,5,5_0 -3942,6.0,13.0,47.0,112,46,41,0.0,15393,0.0,0.0,120.0,816.0,1.0,3.0,1.0,2.0,1.3,2327.986443189832,3502.0,0.0,31819.0,1,3,10,4.0,2,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,24476.153846153844,4,0,4_0,4_0 -3943,1.0,3.0,50.0,211,64,50,2.0,15394,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1845.9899208952356,4680.0,9000.0,50699.0,1,1,3,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,25349.5,4,0,4_0,4_0 -3944,2.0,2.0,61.0,112,69,70,0.0,15396,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1649.2081331140214,0.0,0.0,29788.0,1,1,9,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,29788.0,5,0,5,5_0 -3945,8.0,11.0,57.0,112,42,41,0.0,15397,0.0,0.0,120.0,0.0,2.0,6.0,0.0,2.0,1.5,4347.6223271846,2080.0,0.0,40330.0,1,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26886.666666666668,4,0,4_0,4_1 -3946,2.0,17.0,30.0,111,63,31,0.0,15398,0.0,750.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2395.9596322867637,1560.0,0.0,34734.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19296.666666666668,3,0,3_0,3_0 -3947,1.0,1.0,45.0,111,37,41,1.0,154,0.0,5.0,60.0,0.0,2.0,5.0,0.0,2.0,1.5,1491.7995429021562,2080.0,12000.0,62815.0,1,2,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,41876.666666666664,5,0,5,5_0 -3948,4.0,4.0,76.0,111,74,42,0.0,1540,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2396.8873848923486,2237.0,0.0,42996.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28664.0,4,0,4_0,4_0 -3949,3.0,3.0,46.0,120,65,71,0.0,15401,0.0,0.0,100.0,0.0,3.0,6.0,4.0,6.0,3.1,2909.3872376129707,1560.0,0.0,37875.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,12217.741935483871,1,0,1_0,1_1 -3950,15.0,45.0,53.0,112,62,50,0.0,15402,0.0,650.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1843.3235694528612,0.0,0.0,28415.0,1,1,8,0.0,4,9.0,0.0,0.0,1,0,0,0,0,0,7.0,2.0,14207.5,2,0,2_0,2_1 -3951,1.0,4.0,31.0,111,63,71,2.0,15404,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1880.648769933187,0.0,16200.0,23156.0,1,2,7,6.0,4,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,11026.666666666666,1,0,1_1,1_0 -3952,0.0,20.0,35.0,112,43,20,0.0,15406,0.0,680.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2512.4576241895184,2978.0,0.0,47172.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22462.85714285714,4,0,4_0,4_1 -3953,0.0,0.0,24.0,111,84,10,0.0,15407,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2621.192463566799,0.0,0.0,660.0,3,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,660.0,1,0,1_1,1_0 -3954,6.0,8.0,42.0,111,46,43,0.0,15408,0.0,99999.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2762.259899035893,0.0,0.0,25727.0,1,2,4,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19790.0,3,0,3_0,3_0 -3955,6.0,19.0,53.0,111,47,50,0.0,15410,0.0,0.0,80.0,0.0,1.0,6.0,3.0,5.0,3.0,1405.5420310988975,2080.0,0.0,38230.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,12743.333333333334,2,0,2_0,2_0 -3956,6.0,6.0,50.0,111,54,31,0.0,15412,0.0,70.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1815.7051094445553,3148.0,0.0,51961.0,1,1,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25980.5,4,0,4_0,4_0 -3957,0.0,0.0,73.0,111,77,71,0.0,15413,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2895.5145504408233,0.0,0.0,13970.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13970.0,2,0,2_0,2_0 -3958,4.0,4.0,68.0,111,74,31,0.0,15415,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3284.182662158987,1092.0,0.0,59551.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,39700.666666666664,5,0,5,5_0 -3959,0.0,0.0,89.0,111,86,71,0.0,15416,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3854.8984514923345,0.0,0.0,7800.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7800.0,1,0,1_0,1_0 -3960,2.0,2.0,51.0,111,52,44,0.0,15417,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2925.0329678908897,0.0,0.0,41040.0,1,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27360.0,4,0,4_0,4_0 -3961,2.0,20.0,25.0,112,64,50,0.0,15418,0.0,0.0,0.0,300.0,2.0,2.0,1.0,3.0,1.8,3116.644637240763,0.0,0.0,20207.0,4,3,10,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,11226.111111111111,1,0,1_1,1_0 -3962,0.0,0.0,60.0,300,78,71,0.0,1542,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,4004.0660460779295,0.0,0.0,5090.0,7,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,5090.0,1,0,1_0,1_1 -3963,6.0,14.0,45.0,111,34,10,0.0,15421,0.0,0.0,199998.0,0.0,1.0,3.0,2.0,4.0,2.1,2687.0604376194874,2028.0,0.0,83983.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,39991.90476190476,5,0,5,5_0 -3964,0.0,13.0,20.0,111,84,31,0.0,15422,0.0,0.0,0.0,450.0,0.0,3.0,0.0,2.0,1.5,3691.4687496592896,0.0,0.0,12317.0,3,3,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,8211.333333333334,1,0,1_1,1_0 -3965,5.0,21.0,42.0,112,65,71,0.0,15423,0.0,40.0,0.0,0.0,1.0,2.0,1.0,3.0,1.8,2773.8994281055416,982.0,0.0,24970.0,1,3,10,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,13872.222222222223,2,0,2_0,2_0 -3966,0.0,0.0,82.0,221,71,70,0.0,15424,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4813.0398367606085,2080.0,0.0,19434.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19434.0,3,0,3_0,3_0 -3967,1.0,1.0,58.0,112,37,42,2.0,15427,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,5967.542955909113,3029.0,22000.0,42195.0,4,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28130.0,4,0,4_0,4_0 -3968,4.0,4.0,67.0,111,75,50,0.0,15428,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,966.4701132697674,0.0,0.0,29200.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19466.666666666668,3,0,3_0,3_0 -3969,11.0,11.0,41.0,111,37,10,0.0,1543,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,3419.9100509400255,0.0,0.0,51865.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24697.619047619046,4,0,4_0,4_0 -3970,7.0,12.0,36.0,111,84,50,0.0,15430,0.0,500.0,0.0,233.0,0.0,2.0,1.0,2.0,1.3,4735.886652596073,2600.0,0.0,18590.0,3,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14300.0,2,0,2_1,2_0 -3971,2.0,2.0,80.0,221,78,71,0.0,15431,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2753.6179492113506,3402.0,0.0,16178.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16178.0,2,0,2_0,2_0 -3972,1.0,6.0,71.0,111,74,42,2.0,15434,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1412.7549411566133,0.0,11000.0,26358.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17572.0,3,0,3_0,3_0 -3973,0.0,0.0,88.0,111,74,60,0.0,15435,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3231.722876452207,0.0,0.0,26781.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26781.0,4,0,4_0,4_0 -3974,0.0,0.0,84.0,111,75,20,1.0,15436,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1721.1314164096043,4992.0,20700.0,34547.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,23031.333333333332,4,0,4_0,4_0 -3975,4.0,5.0,74.0,300,72,50,0.0,15437,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1632.8157052422337,0.0,0.0,17810.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,11873.333333333334,1,0,1_0,1_1 -3976,0.0,0.0,64.0,111,75,70,0.0,15438,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3043.6191115142365,0.0,0.0,13339.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13339.0,2,0,2_1,2_0 -3977,15.0,19.0,41.0,111,52,50,0.0,15440,0.0,50.0,200.0,0.0,2.0,5.0,3.0,5.0,2.8,1853.8131822129678,3120.0,0.0,45868.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,16381.428571428572,2,0,2_0,2_0 -3978,10.0,10.0,83.0,120,77,71,0.0,15442,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,3443.600643613964,0.0,0.0,19906.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13270.666666666666,2,0,2_0,2_1 -3979,3.0,4.0,50.0,111,85,30,0.0,15443,0.0,0.0,0.0,382.0,0.0,5.0,2.0,3.0,2.0,1659.303885784427,1404.0,0.0,30114.0,7,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,15057.0,2,0,2_1,2_0 -3980,20.0,20.0,79.0,112,78,50,0.0,15444,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1772.7173988303907,0.0,0.0,21100.0,5,1,6,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14066.666666666666,2,0,2_0,2_0 -3981,10.0,11.0,77.0,400,78,50,0.0,15446,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3264.192448363097,0.0,0.0,26455.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17636.666666666668,3,0,3_0,3_1 -3982,2.0,2.0,47.0,400,11,50,0.0,15447,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2319.174237703893,1817.0,0.0,9548.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,6365.333333333333,1,0,1_0,1_1 -3983,2.0,2.0,29.0,111,65,31,0.0,15449,0.0,625.0,0.0,500.0,2.0,3.0,0.0,2.0,1.5,2061.8809397665855,1971.0,0.0,45079.0,1,3,6,4.0,3,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,30052.666666666668,5,0,5,5_0 -3984,2.0,2.0,72.0,112,75,50,0.0,15451,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1626.7075186177672,0.0,0.0,27600.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18400.0,3,0,3_0,3_1 -3985,4.0,8.0,38.0,112,67,43,0.0,15453,0.0,803.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2111.5883868543315,0.0,0.0,49967.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23793.809523809523,4,0,4_0,4_1 -3986,2.0,2.0,61.0,112,75,60,0.0,15454,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3046.0118290854957,0.0,0.0,31623.0,5,1,5,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,31623.0,5,0,5,5_1 -3987,7.0,7.0,57.0,111,37,50,0.0,15456,0.0,350.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,1042.885472659539,2600.0,0.0,54303.0,4,2,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,19393.928571428572,3,0,3_0,3_0 -3988,6.0,6.0,38.0,111,46,43,0.0,15458,0.0,0.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,2625.402597601451,2836.0,0.0,51552.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,34368.0,5,0,5,5_0 -3989,1.0,18.0,77.0,111,86,71,2.0,15459,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2725.3448247070232,1040.0,750.0,27807.0,6,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13903.5,2,0,2_1,2_0 -3990,8.0,13.0,53.0,112,45,20,0.0,15461,0.0,250.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1673.0425685866417,0.0,0.0,26374.0,1,1,7,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26374.0,4,0,4_0,4_0 -3991,11.0,11.0,47.0,111,22,50,0.0,15462,0.0,99999.0,0.0,813.0,2.0,6.0,2.0,4.0,2.3,2255.429460406507,0.0,0.0,39497.0,1,3,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,17172.608695652176,3,0,3_1,3_0 -3992,1.0,3.0,35.0,111,54,31,2.0,15463,0.0,400.0,100.0,0.0,2.0,5.0,1.0,3.0,1.8,2058.4415235839692,4160.0,19000.0,40900.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22722.222222222223,4,0,4_0,4_0 -3993,0.0,14.0,48.0,300,65,60,2.0,15465,0.0,1330.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1509.2775244333614,3823.0,1500.0,44382.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,19296.521739130436,3,0,3_0,3_1 -3994,0.0,0.0,59.0,112,75,20,1.0,15467,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1903.1478586259716,5058.0,16217.0,44108.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,29405.333333333332,5,0,5,5_1 -3995,3.0,13.0,50.0,111,46,50,0.0,15469,0.0,150.0,50.0,0.0,1.0,7.0,3.0,5.0,2.6,1006.5459642642403,1560.0,0.0,39044.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,15016.923076923076,2,0,2_0,2_0 -3996,0.0,0.0,62.0,120,74,31,1.0,15470,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2560.9246081603696,0.0,20000.0,27634.0,5,1,0,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27634.0,4,0,4_0,4_0 -3997,7.0,11.0,55.0,111,63,70,0.0,15471,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1451.4544063205956,0.0,0.0,8036.0,4,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,8036.0,1,0,1_1,1_0 -3998,7.0,7.0,77.0,111,75,44,0.0,15472,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2043.9281107233912,3110.0,0.0,32860.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21906.666666666668,4,0,4_0,4_0 -3999,3.0,14.0,26.0,111,63,50,0.0,15473,0.0,70.0,0.0,161.0,2.0,3.0,0.0,2.0,1.5,6398.257585582652,0.0,0.0,19580.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13053.333333333334,2,0,2_1,2_0 -4000,2.0,3.0,42.0,111,38,12,0.0,15475,0.0,0.0,99999.0,0.0,1.0,9.0,3.0,5.0,2.6,1070.5056107690284,0.0,0.0,57587.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,22148.846153846152,4,0,4_0,4_0 -4001,2.0,2.0,63.0,120,74,50,0.0,15477,0.0,200.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2555.3192836164185,3146.0,0.0,52962.0,5,1,0,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,35308.0,5,0,5,5_0 -4002,8.0,10.0,35.0,112,33,12,0.0,15478,0.0,70.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1677.642548647,0.0,0.0,41074.0,1,2,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,41074.0,5,0,5,5_1 -4003,9.0,9.0,45.0,400,52,71,0.0,1548,0.0,1000.0,0.0,0.0,3.0,7.0,2.0,4.0,2.3,3213.2296723630343,3640.0,0.0,46066.0,1,2,0,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,20028.695652173916,3,0,3_0,3_0 -4004,0.0,0.0,18.0,111,84,41,0.0,15480,0.0,0.0,0.0,167.0,0.0,3.0,0.0,1.0,1.0,2210.6384954198916,0.0,0.0,1504.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,1504.0,1,0,1_1,1_0 -4005,13.0,20.0,46.0,112,63,50,0.0,15483,0.0,60.0,50.0,0.0,3.0,4.0,2.0,4.0,2.5,1603.3899657681438,0.0,0.0,42059.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16823.6,2,0,2_0,2_1 -4006,0.0,0.0,31.0,111,43,20,1.0,15485,0.0,170.0,0.0,394.0,1.0,2.0,0.0,1.0,1.0,2143.2189676687763,0.0,21000.0,23487.0,1,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23487.0,4,0,4_0,4_0 -4007,0.0,4.0,25.0,111,46,41,0.0,15486,0.0,300.0,0.0,440.0,1.0,3.0,0.0,1.0,1.0,3165.1417796229757,0.0,0.0,9261.0,2,3,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,1,0.0,2.0,9261.0,1,0,1_1,1_0 -4008,4.0,4.0,39.0,111,38,10,0.0,15487,0.0,0.0,90.0,461.0,2.0,3.0,0.0,2.0,1.5,2810.4337012642773,3186.0,0.0,70733.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,47155.333333333336,5,0,5,5_0 -4009,2.0,20.0,36.0,112,53,60,0.0,15488,0.0,0.0,70.0,0.0,2.0,4.0,2.0,4.0,2.3,1784.4512754452653,0.0,0.0,30507.0,1,2,6,1.0,4,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,13263.913043478262,2,0,2_1,2_0 -4010,0.0,14.0,26.0,300,63,50,0.0,1549,0.0,288.0,360.0,0.0,2.0,2.0,0.0,2.0,1.5,2587.1736328252678,6375.0,0.0,38680.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25786.666666666668,4,0,4_0,4_1 -4011,0.0,0.0,53.0,111,52,41,0.0,15490,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3483.3914700515847,0.0,0.0,28000.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28000.0,4,0,4_0,4_0 -4012,4.0,4.0,47.0,111,47,42,0.0,15492,0.0,0.0,0.0,431.0,1.0,3.0,0.0,1.0,1.0,3307.9324374964117,0.0,0.0,29848.0,4,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29848.0,5,0,5,5_0 -4013,0.0,0.0,89.0,111,86,71,0.0,15493,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4085.032831783708,0.0,0.0,8800.0,6,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8800.0,1,0,1_0,1_0 -4014,0.0,0.0,80.0,111,77,50,0.0,15496,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3411.0185801122634,0.0,0.0,17369.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17369.0,3,0,3_0,3_0 -4015,22.0,22.0,61.0,111,77,42,0.0,15497,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1408.461391610067,0.0,0.0,24030.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,16020.0,2,0,2_0,2_0 -4016,6.0,10.0,43.0,111,34,20,0.0,15498,0.0,0.0,240.0,0.0,1.0,4.0,0.0,1.0,1.0,1492.0762057404688,1900.0,0.0,37550.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,37550.0,5,0,5,5_0 -4017,0.0,0.0,41.0,221,85,71,0.0,155,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,5229.956204477322,0.0,0.0,22614.0,7,3,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12563.333333333332,1,0,1_1,1_0 -4018,21.0,21.0,80.0,111,77,50,0.0,1550,0.0,0.0,0.0,458.0,0.0,3.0,0.0,1.0,1.0,1495.2262212462945,0.0,0.0,22802.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22802.0,4,0,4_0,4_0 -4019,12.0,13.0,56.0,111,63,50,0.0,15500,0.0,0.0,99999.0,461.0,3.0,4.0,1.0,3.0,2.0,1734.7097299990173,2080.0,0.0,31834.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,15917.0,2,0,2_0,2_0 -4020,4.0,4.0,60.0,400,56,71,0.0,15503,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4914.393214595521,0.0,0.0,10583.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,10583.0,1,0,1_1,1_1 -4021,3.0,22.0,56.0,111,54,50,0.0,15504,0.0,120.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1208.8896404182694,1560.0,0.0,48100.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,32066.666666666668,5,0,5,5_0 -4022,0.0,0.0,64.0,111,77,60,1.0,15506,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4192.861590880605,0.0,18000.0,18256.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18256.0,3,0,3_0,3_0 -4023,2.0,5.0,29.0,111,85,44,0.0,15508,0.0,0.0,0.0,7.0,0.0,4.0,1.0,2.0,1.3,3532.0913086024643,0.0,0.0,18041.0,4,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,13877.692307692307,2,0,2_1,2_0 -4024,6.0,29.0,56.0,400,52,50,0.0,15509,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1859.5420716935403,224.0,0.0,20042.0,1,3,0,0.0,1,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,20042.0,3,0,3_0,3_1 -4025,11.0,17.0,35.0,111,65,50,0.0,1551,0.0,760.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2422.414043589267,3120.0,0.0,61290.0,1,2,9,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,1.0,3.0,29185.714285714286,5,0,5,5_0 -4026,7.0,19.0,32.0,112,38,31,0.0,15510,0.0,1000.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4371.183045031322,3068.0,0.0,67183.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,31991.90476190476,5,0,5,5_1 -4027,4.0,4.0,57.0,300,52,71,0.0,15511,0.0,140.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,4215.796133003814,1045.0,0.0,24920.0,1,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,16613.333333333332,2,0,2_0,2_1 -4028,8.0,10.0,33.0,112,65,50,0.0,15512,0.0,0.0,400.0,0.0,2.0,5.0,2.0,4.0,2.1,1435.1444019110745,0.0,0.0,39709.0,1,3,7,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18909.04761904762,3,0,3_0,3_0 -4029,3.0,14.0,29.0,112,55,50,0.0,15513,0.0,400.0,0.0,247.0,2.0,3.0,0.0,2.0,1.5,2656.468255971562,364.0,0.0,29045.0,1,3,3,0.0,3,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,19363.333333333332,3,0,3_1,3_1 -4030,0.0,3.0,62.0,111,78,70,0.0,15514,0.0,0.0,99999.0,0.0,2.0,4.0,1.0,3.0,2.0,1465.6295534808075,2600.0,0.0,36917.0,5,1,9,7.0,4,3.0,1.0,1.0,0,0,0,1,0,0,1.0,2.0,18458.5,3,0,3_0,3_0 -4031,2.0,9.0,39.0,400,67,50,0.0,15516,0.0,0.0,280.0,0.0,1.0,4.0,1.0,2.0,1.3,2253.4833661574617,2340.0,0.0,19832.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,15255.384615384615,2,0,2_1,2_1 -4032,6.0,6.0,68.0,111,74,20,0.0,15517,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1443.420330328113,0.0,0.0,38866.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,38866.0,5,0,5,5_0 -4033,8.0,8.0,66.0,111,74,44,0.0,15518,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1400.8672675889534,0.0,0.0,41450.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27633.333333333332,4,0,4_0,4_0 -4034,6.0,19.0,37.0,111,53,70,0.0,15519,0.0,50.0,0.0,300.0,1.0,3.0,0.0,1.0,1.0,2523.904106496253,1300.0,0.0,17090.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17090.0,3,0,3_0,3_0 -4035,3.0,3.0,70.0,112,78,70,0.0,1552,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1860.6491927993884,2271.0,0.0,33119.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22079.333333333332,4,0,4_0,4_1 -4036,2.0,21.0,33.0,112,47,60,0.0,15520,0.0,800.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2635.8889760882576,3120.0,0.0,56231.0,1,2,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,26776.666666666664,4,0,4_0,4_1 -4037,0.0,0.0,58.0,111,56,71,0.0,15521,0.0,0.0,0.0,479.0,2.0,4.0,1.0,3.0,2.0,3486.9190230748186,0.0,0.0,25151.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12575.5,2,0,2_0,2_0 -4038,0.0,0.0,73.0,111,72,50,0.0,15522,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2215.3182779878803,0.0,0.0,16152.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16152.0,2,0,2_0,2_0 -4039,7.0,9.0,63.0,112,77,41,0.0,15523,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2449.515041509122,3878.0,0.0,36469.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24312.666666666668,4,0,4_0,4_1 -4040,5.0,5.0,35.0,112,54,42,0.0,15524,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2557.1767481111256,1306.0,0.0,78932.0,1,2,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,37586.666666666664,5,0,5,5_0 -4041,5.0,7.0,44.0,111,22,50,0.0,15525,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2148.6153623075975,3120.0,0.0,63155.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27458.695652173916,4,0,4_0,4_0 -4042,0.0,22.0,53.0,112,31,42,0.0,15527,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2757.756778425262,0.0,0.0,55683.0,1,2,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,37122.0,5,0,5,5_1 -4043,3.0,12.0,56.0,112,67,70,0.0,1553,0.0,60.0,180.0,0.0,3.0,7.0,3.0,5.0,2.6,1891.3992200359673,5773.0,0.0,33779.0,1,2,10,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,12991.923076923076,2,0,2_0,2_1 -4044,2.0,2.0,49.0,111,52,50,0.0,15531,0.0,150.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2143.373648743507,0.0,0.0,52187.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,34791.333333333336,5,0,5,5_0 -4045,0.0,5.0,50.0,211,62,50,2.0,15533,0.0,60.0,260.0,0.0,1.0,5.0,1.0,3.0,2.0,3392.2336683462877,1924.0,7900.0,33724.0,1,1,3,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16862.0,2,0,2_0,2_0 -4046,3.0,8.0,44.0,111,52,50,0.0,15535,0.0,5.0,0.0,107.0,1.0,3.0,0.0,1.0,1.0,2294.452377714904,0.0,0.0,18558.0,1,3,6,5.0,1,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,18558.0,3,0,3_1,3_0 -4047,1.0,1.0,62.0,112,75,10,1.0,15536,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1512.1497585120426,3986.0,12000.0,29874.0,5,1,7,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,29874.0,5,0,5,5_1 -4048,2.0,4.0,65.0,120,74,70,0.0,15538,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1511.6988987102284,5019.0,0.0,70518.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,47012.0,5,0,5,5_1 -4049,8.0,9.0,80.0,300,75,50,0.0,15539,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3343.163994563092,1355.0,0.0,21560.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21560.0,3,0,3_0,3_1 -4050,11.0,11.0,59.0,400,72,71,0.0,1554,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2985.2875733635988,2600.0,0.0,13430.0,5,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8953.333333333334,1,0,1_0,1_1 -4051,4.0,4.0,71.0,400,74,20,0.0,15542,0.0,0.0,0.0,0.0,0.0,16.0,0.0,2.0,1.5,942.1601277932972,3485.0,0.0,85329.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,56886.0,5,0,5,5_1 -4052,0.0,0.0,44.0,111,56,50,0.0,15544,0.0,0.0,0.0,52.0,1.0,4.0,2.0,3.0,2.0,2937.82153530347,0.0,0.0,38854.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,19427.0,3,0,3_1,3_0 -4053,0.0,0.0,43.0,111,37,10,0.0,15546,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3317.85884204578,0.0,0.0,113486.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,63047.777777777774,5,0,5,5_0 -4054,4.0,13.0,48.0,112,55,50,0.0,15548,0.0,180.0,0.0,0.0,4.0,6.0,3.0,5.0,2.8,1725.6528302028405,7124.0,0.0,47363.0,1,2,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,16915.357142857145,3,0,3_0,3_1 -4055,12.0,17.0,34.0,112,43,20,0.0,15549,0.0,0.0,1000.0,0.0,2.0,5.0,1.0,3.0,1.8,1571.9613857154484,2497.0,0.0,46001.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,25556.11111111111,4,0,4_0,4_1 -4056,16.0,21.0,55.0,111,23,12,0.0,1555,0.0,0.0,0.0,0.0,1.0,10.0,4.0,7.0,4.0,874.4811978705426,0.0,0.0,99959.0,1,1,10,8.0,5,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,24989.75,4,0,4_0,4_0 -4057,0.0,8.0,36.0,120,37,10,0.0,15550,0.0,0.0,900.0,378.0,1.0,2.0,0.0,1.0,1.0,5296.026608312328,2907.0,0.0,19598.0,1,3,0,2.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,19598.0,3,0,3_0,3_0 -4058,5.0,5.0,82.0,120,78,71,0.0,15552,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3702.324350203459,0.0,0.0,21824.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21824.0,4,0,4_0,4_1 -4059,1.0,1.0,51.0,112,47,50,1.0,15555,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1387.3478887043213,1560.0,25632.0,45358.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22679.0,4,0,4_0,4_1 -4060,1.0,4.0,42.0,111,22,10,2.0,15556,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,4873.568827620746,0.0,12500.0,98916.0,1,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,65944.0,5,0,5,5_0 -4061,1.0,3.0,46.0,112,47,50,2.0,15558,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1918.3862506415544,0.0,9500.0,18911.0,1,2,9,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18911.0,3,0,3_0,3_0 -4062,0.0,11.0,25.0,111,55,60,0.0,15559,0.0,70.0,100.0,300.0,2.0,2.0,0.0,2.0,1.5,3917.5342575175346,0.0,0.0,32703.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21802.0,4,0,4_0,4_0 -4063,1.0,1.0,43.0,111,42,10,1.0,15560,0.0,0.0,0.0,651.0,2.0,3.0,1.0,3.0,1.8,2553.657751644202,0.0,8591.0,41998.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23332.222222222223,4,0,4_0,4_0 -4064,16.0,16.0,91.0,111,86,70,0.0,15561,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4104.047390573368,0.0,0.0,25640.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17093.333333333332,3,0,3_0,3_0 -4065,0.0,19.0,30.0,300,48,31,0.0,15562,0.0,0.0,200.0,0.0,2.0,6.0,3.0,5.0,2.4,1609.8531861262034,0.0,0.0,32567.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,13569.583333333334,2,0,2_1,2_1 -4066,0.0,5.0,40.0,221,56,71,2.0,15563,0.0,0.0,0.0,133.0,1.0,5.0,4.0,5.0,2.4,2253.4174932445458,2600.0,6300.0,25162.0,4,3,1,2.0,2,1.0,1.0,0.0,0,1,0,0,0,1,0.0,1.0,10484.166666666668,1,0,1_1,1_0 -4067,2.0,2.0,76.0,112,74,42,0.0,15566,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1547.0457543601908,2740.0,0.0,57969.0,5,1,3,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,38646.0,5,0,5,5_1 -4068,12.0,12.0,53.0,300,63,31,0.0,15567,0.0,150.0,0.0,0.0,2.0,10.0,4.0,7.0,3.4,891.3489270647418,0.0,0.0,37186.0,1,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,10937.058823529413,1,0,1_0,1_1 -4069,6.0,19.0,68.0,112,74,70,0.0,15568,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1011.5625122421737,0.0,0.0,27801.0,5,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18534.0,3,0,3_0,3_1 -4070,3.0,6.0,26.0,120,63,50,0.0,1557,0.0,25.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3302.0179935121155,0.0,0.0,31870.0,1,3,0,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21246.666666666668,3,0,3_0,3_0 -4071,5.0,6.0,38.0,112,46,30,0.0,15570,0.0,270.0,0.0,0.0,2.0,10.0,2.0,4.0,2.1,3500.766117682141,2329.0,0.0,55144.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26259.04761904762,4,0,4_0,4_1 -4072,1.0,13.0,32.0,111,38,10,2.0,15571,0.0,0.0,30.0,0.0,1.0,3.0,0.0,1.0,1.0,6112.0893128584785,0.0,3000.0,0.0,1,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,0.0,1,0,1_0,1_0 -4073,2.0,3.0,55.0,112,22,50,0.0,15573,0.0,1350.0,0.0,0.0,5.0,8.0,1.0,5.0,3.0,792.3705596517086,3520.0,0.0,165176.0,1,1,7,0.0,5,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,55058.666666666664,5,0,5,5_1 -4074,1.0,4.0,58.0,111,78,50,0.0,15574,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1172.0899863727986,4472.0,0.0,22195.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,14796.666666666666,2,0,2_0,2_0 -4075,2.0,17.0,51.0,300,38,50,0.0,15579,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2404.374113875763,0.0,0.0,30874.0,1,1,0,0.0,1,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,30874.0,5,0,5,5_1 -4076,1.0,1.0,37.0,112,11,43,1.0,1558,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2824.4126588146296,0.0,7470.0,19974.0,1,4,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9511.42857142857,1,0,1_0,1_1 -4077,2.0,2.0,56.0,111,46,50,0.0,15580,0.0,0.0,140.0,0.0,1.0,2.0,0.0,1.0,1.0,2004.3501189430483,1040.0,0.0,26735.0,1,1,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,26735.0,4,0,4_0,4_0 -4078,15.0,15.0,47.0,111,63,50,0.0,15581,0.0,0.0,30.0,0.0,1.0,3.0,0.0,1.0,1.0,1852.6739889148225,1040.0,0.0,19023.0,4,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,19023.0,3,0,3_0,3_0 -4079,8.0,11.0,54.0,211,53,50,0.0,15583,0.0,99999.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1149.1708601013472,1832.0,0.0,33515.0,1,3,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16757.5,2,0,2_0,2_0 -4080,2.0,9.0,28.0,112,67,42,0.0,15585,0.0,120.0,0.0,397.0,1.0,2.0,0.0,1.0,1.0,4073.4360030320886,2600.0,0.0,23046.0,1,3,10,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23046.0,4,0,4_0,4_0 -4081,0.0,0.0,63.0,400,71,70,0.0,15586,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1244.4313392691479,1560.0,0.0,13614.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13614.0,2,0,2_0,2_0 -4082,2.0,2.0,25.0,112,46,71,0.0,15589,0.0,260.0,0.0,0.0,2.0,3.0,3.0,5.0,2.4,3117.971190724134,1560.0,0.0,35969.0,1,3,10,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14987.083333333334,2,0,2_1,2_0 -4083,2.0,15.0,50.0,112,47,50,0.0,15590,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1974.8296213303736,1560.0,0.0,27820.0,1,1,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,13910.0,2,0,2_0,2_1 -4084,16.0,16.0,69.0,112,77,50,0.0,15591,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1295.0486599464766,0.0,0.0,15930.0,5,3,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15930.0,2,0,2_0,2_1 -4085,7.0,22.0,41.0,111,67,60,0.0,15592,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.1,3502.891697850763,2600.0,0.0,44800.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,21333.333333333332,3,0,3_0,3_0 -4086,1.0,5.0,38.0,111,45,41,0.0,15593,0.0,100.0,250.0,326.0,2.0,5.0,2.0,4.0,2.1,2980.851026614917,1551.0,0.0,55269.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26318.571428571428,4,0,4_0,4_0 -4087,6.0,6.0,39.0,111,38,10,0.0,15596,0.0,100199.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2409.1601490946446,0.0,0.0,51951.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,24738.571428571428,4,0,4_0,4_0 -4088,1.0,15.0,64.0,120,74,50,2.0,15598,0.0,0.0,350.0,0.0,1.0,6.0,0.0,2.0,1.5,1763.0358664625662,6781.0,3000.0,71550.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,47700.0,5,0,5,5_1 -4089,0.0,6.0,39.0,111,67,50,2.0,15600,0.0,1000.0,0.0,45.0,1.0,3.0,0.0,1.0,1.0,2332.6737889119604,0.0,8000.0,18707.0,2,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,18707.0,3,0,3_1,3_0 -4090,6.0,6.0,69.0,111,75,30,0.0,15603,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3295.4620690976813,1604.0,0.0,32497.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,32497.0,5,0,5,5_0 -4091,5.0,5.0,40.0,111,34,10,0.0,15605,0.0,0.0,200.0,0.0,1.0,4.0,0.0,1.0,1.0,1497.577904338625,0.0,0.0,44479.0,1,2,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,44479.0,5,0,5,5_0 -4092,13.0,25.0,75.0,112,78,70,0.0,15606,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2511.020071264715,0.0,0.0,21750.0,5,1,6,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,21750.0,4,0,4_0,4_1 -4093,1.0,5.0,52.0,111,68,71,0.0,15607,0.0,99999.0,0.0,199.0,1.0,5.0,3.0,4.0,2.3,1875.9903919657186,0.0,0.0,38862.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,16896.521739130436,3,0,3_1,3_0 -4094,21.0,21.0,52.0,111,85,71,0.0,15608,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3069.4069929812517,0.0,0.0,5680.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,5680.0,1,0,1_0,1_0 -4095,0.0,0.0,56.0,211,77,71,0.0,15609,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1969.1107155632808,0.0,0.0,5250.0,6,1,3,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,5250.0,1,0,1_0,1_0 -4096,13.0,13.0,56.0,111,34,20,0.0,1561,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3540.2641224601634,0.0,0.0,56900.0,1,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,56900.0,5,0,5,5_0 -4097,13.0,16.0,76.0,111,75,50,0.0,15610,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2988.043215900585,1560.0,0.0,19523.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19523.0,3,0,3_0,3_0 -4098,23.0,23.0,60.0,400,77,42,0.0,15611,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1953.5153784055015,1040.0,0.0,23368.0,5,4,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,15578.666666666666,2,0,2_0,2_1 -4099,7.0,13.0,65.0,111,72,60,0.0,15612,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2646.7094307956104,0.0,0.0,37968.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25312.0,4,0,4_0,4_0 -4100,1.0,4.0,68.0,111,74,12,0.0,15614,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2707.6884694264745,0.0,0.0,40182.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,40182.0,5,0,5,5_0 -4101,0.0,13.0,21.0,111,84,41,0.0,15616,0.0,0.0,0.0,55.0,0.0,3.0,0.0,2.0,1.5,3088.0872054729757,0.0,0.0,2894.0,3,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,1929.3333333333333,1,0,1_1,1_0 -4102,7.0,27.0,52.0,112,52,71,0.0,15619,0.0,300.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2110.3988305749767,2144.0,0.0,31874.0,1,3,4,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,15937.0,2,0,2_0,2_1 -4103,13.0,13.0,35.0,111,46,31,0.0,1562,0.0,150.0,60.0,0.0,2.0,5.0,2.0,4.0,2.1,1563.1185044132467,5426.0,0.0,23161.0,1,2,6,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,11029.047619047618,1,0,1_0,1_0 -4104,4.0,18.0,45.0,112,52,50,0.0,15620,0.0,388.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,898.9143521284398,4539.0,0.0,45862.0,1,2,8,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,1.0,3.0,16379.285714285716,2,0,2_0,2_1 -4105,9.0,9.0,76.0,211,77,70,0.0,15622,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2409.172604065802,0.0,0.0,19189.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19189.0,3,0,3_0,3_0 -4106,16.0,16.0,64.0,112,77,70,0.0,15623,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1938.0688445286976,2080.0,0.0,14498.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14498.0,2,0,2_0,2_1 -4107,2.0,12.0,26.0,111,63,20,0.0,15625,0.0,100.0,0.0,235.0,1.0,2.0,0.0,1.0,1.0,4784.376525095616,2600.0,0.0,11791.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11791.0,1,0,1_1,1_0 -4108,12.0,15.0,42.0,221,62,71,0.0,15626,0.0,180.0,0.0,0.0,2.0,5.0,4.0,6.0,3.3,989.0679912698719,0.0,0.0,54036.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16374.545454545456,2,0,2_0,2_0 -4109,2.0,2.0,53.0,112,46,41,0.0,15627,0.0,0.0,260.0,0.0,1.0,5.0,1.0,2.0,1.5,2227.501746553937,2601.0,0.0,34002.0,1,2,7,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,22668.0,4,0,4_0,4_1 -4110,1.0,1.0,53.0,400,52,50,1.0,15628,0.0,410.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1342.5277056773677,2652.0,19000.0,29921.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19947.333333333332,3,0,3_0,3_1 -4111,1.0,5.0,58.0,111,31,10,2.0,15630,0.0,0.0,90.0,0.0,3.0,6.0,2.0,4.0,2.5,2419.857761414311,10130.0,2000.0,64512.0,1,1,10,8.0,4,4.0,0.0,1.0,0,0,0,0,1,0,2.0,2.0,25804.8,4,0,4_0,4_0 -4112,0.0,0.0,49.0,111,47,50,0.0,15631,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2880.657214716996,1560.0,0.0,27809.0,1,2,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27809.0,4,0,4_0,4_0 -4113,0.0,0.0,27.0,111,52,71,0.0,15633,0.0,0.0,0.0,40.0,1.0,2.0,0.0,1.0,1.0,2972.5138794757827,0.0,0.0,12328.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12328.0,1,0,1_1,1_0 -4114,0.0,0.0,55.0,112,77,50,0.0,15634,0.0,0.0,0.0,410.0,0.0,2.0,0.0,1.0,1.0,4258.175129441208,0.0,0.0,13890.0,7,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13890.0,2,0,2_0,2_0 -4115,7.0,9.0,35.0,111,53,42,0.0,15635,0.0,122.0,72.0,0.0,2.0,4.0,1.0,3.0,1.8,2056.2893055601085,0.0,0.0,42717.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23731.666666666668,4,0,4_0,4_0 -4116,29.0,29.0,71.0,112,75,44,0.0,15637,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1751.6367800502387,3744.0,0.0,30096.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20064.0,3,0,3_0,3_1 -4117,11.0,14.0,64.0,111,78,50,0.0,15639,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,1316.8449556760518,1821.0,0.0,25189.0,5,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,12594.5,2,0,2_0,2_0 -4118,5.0,5.0,30.0,120,46,43,0.0,15641,0.0,900.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2029.6023857097218,3810.0,0.0,29881.0,1,4,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22985.384615384613,4,0,4_0,4_1 -4119,1.0,4.0,72.0,400,74,70,2.0,15642,0.0,0.0,36.0,0.0,1.0,4.0,0.0,2.0,1.5,2593.530559087687,1940.0,7500.0,32402.0,5,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21601.333333333332,3,0,3_0,3_1 -4120,0.0,0.0,71.0,112,78,70,0.0,15644,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1566.1439649788663,2080.0,0.0,11960.0,5,1,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11960.0,1,0,1_0,1_1 -4121,7.0,7.0,66.0,212,77,71,0.0,15645,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1707.9898493190628,4161.0,0.0,22577.0,5,1,3,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15051.333333333334,2,0,2_0,2_1 -4122,2.0,12.0,49.0,111,44,10,0.0,15647,0.0,50.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2948.2105355565745,0.0,0.0,7541.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,7541.0,1,0,1_0,1_0 -4123,2.0,2.0,44.0,222,43,33,0.0,15648,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2866.1011284160104,9105.0,0.0,35262.0,1,1,1,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,14692.5,2,0,2_0,2_1 -4124,2.0,16.0,47.0,112,54,50,0.0,15650,0.0,500.0,0.0,512.0,3.0,7.0,3.0,5.0,2.8,794.8775806423602,2741.0,0.0,38307.0,1,3,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,13681.07142857143,2,0,2_1,2_1 -4125,3.0,6.0,42.0,112,63,50,0.0,15651,0.0,280.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3056.2245597959754,8164.0,0.0,41505.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18045.652173913044,3,0,3_0,3_1 -4126,5.0,12.0,39.0,111,43,41,0.0,15653,0.0,10.0,0.0,294.0,1.0,4.0,2.0,3.0,1.8,2794.4602586036303,0.0,0.0,20500.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11388.888888888889,1,0,1_1,1_0 -4127,0.0,0.0,61.0,111,78,71,0.0,15654,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,2504.5205580132497,0.0,0.0,31458.0,5,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15729.0,2,0,2_0,2_0 -4128,0.0,11.0,55.0,111,62,50,0.0,15656,0.0,45.0,0.0,170.0,3.0,3.0,2.0,3.0,2.0,1496.367299137428,0.0,0.0,38371.0,4,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,19185.5,3,0,3_1,3_0 -4129,6.0,6.0,84.0,112,75,31,0.0,15659,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2589.545463791973,2099.0,0.0,34128.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,34128.0,5,0,5,5_1 -4130,0.0,0.0,65.0,111,74,70,0.0,1566,0.0,0.0,0.0,351.0,0.0,2.0,0.0,1.0,1.0,2167.3905893994315,0.0,0.0,29698.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29698.0,5,0,5,5_0 -4131,3.0,15.0,43.0,400,63,50,0.0,15661,0.0,700.0,0.0,0.0,2.0,7.0,4.0,6.0,2.9,1363.0036752353908,2861.0,0.0,46981.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16200.344827586207,2,0,2_0,2_1 -4132,3.0,3.0,47.0,111,22,12,0.0,15663,0.0,100.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2076.1633656990775,0.0,0.0,212790.0,1,2,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,106395.0,5,0,5,5_0 -4133,4.0,8.0,65.0,111,78,70,0.0,15667,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2202.911789519325,1821.0,0.0,20360.0,5,3,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,13573.333333333334,2,0,2_0,2_0 -4134,11.0,13.0,64.0,112,75,70,0.0,15668,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2310.4156622125324,0.0,0.0,39332.0,5,2,10,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,26221.333333333332,4,0,4_0,4_0 -4135,0.0,0.0,71.0,300,78,70,1.0,15669,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,2646.1502490736116,2601.0,17000.0,34113.0,5,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17056.5,3,0,3_0,3_1 -4136,0.0,7.0,20.0,111,84,41,0.0,1567,0.0,60.0,0.0,165.0,0.0,1.0,0.0,1.0,1.0,3688.4203430230573,0.0,0.0,7847.0,3,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,7847.0,1,0,1_1,1_0 -4137,1.0,1.0,38.0,111,52,71,1.0,15671,0.0,200.0,0.0,0.0,2.0,4.0,4.0,6.0,2.9,1837.1008130702994,2652.0,12200.0,52565.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,18125.862068965518,3,0,3_0,3_0 -4138,7.0,7.0,50.0,111,38,50,0.0,15673,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1533.31007995375,0.0,0.0,53405.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21362.0,3,0,3_0,3_0 -4139,2.0,14.0,28.0,120,12,43,0.0,15679,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2156.11406719691,0.0,0.0,8990.0,1,3,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,8990.0,1,0,1_0,1_1 -4140,9.0,11.0,45.0,212,43,33,0.0,1568,0.0,410.0,0.0,0.0,2.0,5.0,2.0,3.0,2.0,2244.979280240866,0.0,0.0,20965.0,1,2,2,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,10482.5,1,0,1_1,1_1 -4141,11.0,11.0,61.0,111,74,10,0.0,15682,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2025.5925995065493,1167.0,0.0,49317.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32878.0,5,0,5,5_0 -4142,6.0,10.0,48.0,211,65,50,0.0,15686,0.0,700.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1135.0527547169117,3640.0,0.0,36811.0,1,2,3,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,36811.0,5,0,5,5_0 -4143,4.0,11.0,45.0,112,64,71,0.0,1569,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2375.830638008782,1040.0,0.0,35760.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,17028.571428571428,3,0,3_1,3_1 -4144,20.0,20.0,62.0,111,74,41,0.0,15690,0.0,0.0,0.0,579.0,0.0,2.0,0.0,1.0,1.0,3368.603123363773,1190.0,0.0,43846.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,43846.0,5,0,5,5_0 -4145,0.0,11.0,64.0,111,68,71,2.0,15691,0.0,0.0,99999.0,469.0,2.0,3.0,1.0,3.0,2.0,3746.593313833737,1571.0,4600.0,25823.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,12911.5,2,0,2_1,2_0 -4146,2.0,14.0,48.0,221,42,20,0.0,15692,0.0,100.0,50.0,0.0,2.0,5.0,3.0,5.0,2.8,1601.4637594105868,1969.0,0.0,41308.0,1,1,1,2.0,4,4.0,0.0,1.0,0,1,0,0,0,0,1.0,3.0,14752.857142857143,2,0,2_0,2_0 -4147,2.0,2.0,46.0,221,46,50,0.0,15693,0.0,200.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3355.9875475285585,0.0,0.0,40977.0,1,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27318.0,4,0,4_0,4_0 -4148,4.0,4.0,40.0,111,43,10,0.0,15695,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1472.9972308991264,0.0,0.0,84488.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,35203.333333333336,5,0,5,5_0 -4149,3.0,5.0,38.0,111,42,20,0.0,15698,0.0,246.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1816.754572686737,0.0,0.0,45987.0,1,2,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30658.0,5,0,5,5_0 -4150,0.0,0.0,21.0,111,56,71,0.0,15699,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3657.797587437078,0.0,0.0,45638.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30425.333333333332,5,0,5,5_0 -4151,0.0,0.0,19.0,111,84,41,0.0,157,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3329.983984928582,0.0,0.0,2400.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,2400.0,1,0,1_0,1_0 -4152,0.0,4.0,20.0,111,84,30,0.0,1570,0.0,0.0,0.0,400.0,0.0,2.0,0.0,1.0,1.0,3146.300420008694,0.0,0.0,2416.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,2416.0,1,0,1_0,1_0 -4153,3.0,3.0,73.0,111,72,70,0.0,15702,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1765.7611116810554,0.0,0.0,9359.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,9359.0,1,0,1_0,1_0 -4154,1.0,12.0,39.0,112,62,50,0.0,15703,0.0,0.0,0.0,262.0,1.0,3.0,0.0,1.0,1.0,2284.5160873678137,2096.0,0.0,25762.0,1,3,5,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25762.0,4,0,4_0,4_1 -4155,9.0,9.0,61.0,400,75,50,0.0,15704,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,5407.069320176602,2419.0,0.0,12743.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12743.0,2,0,2_0,2_1 -4156,12.0,12.0,53.0,111,52,60,0.0,15707,0.0,0.0,200.0,385.0,1.0,3.0,0.0,1.0,1.0,3214.13466272672,1354.0,0.0,18273.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18273.0,3,0,3_0,3_0 -4157,11.0,11.0,58.0,111,42,20,0.0,15709,0.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,2.0,2448.6812895031585,0.0,0.0,34736.0,1,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,17368.0,3,0,3_0,3_0 -4158,3.0,7.0,48.0,111,37,50,0.0,1571,0.0,0.0,3.0,410.0,1.0,2.0,0.0,1.0,1.0,4038.6147045686125,0.0,0.0,31636.0,1,3,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,31636.0,5,0,5,5_0 -4159,5.0,20.0,29.0,111,47,20,0.0,15710,0.0,0.0,100.0,0.0,1.0,3.0,0.0,1.0,1.0,1938.7273586191377,0.0,0.0,17798.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17798.0,3,0,3_0,3_0 -4160,0.0,7.0,37.0,111,35,12,0.0,15711,0.0,300.0,0.0,688.0,1.0,3.0,1.0,2.0,1.3,2742.7093148732565,2377.0,0.0,19630.0,1,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,15100.0,2,0,2_0,2_0 -4161,0.0,0.0,38.0,111,84,71,0.0,15712,0.0,0.0,0.0,0.0,0.0,2.0,1.0,3.0,1.8,3250.212368122981,0.0,0.0,12288.0,3,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,6826.666666666666,1,0,1_1,1_0 -4162,0.0,0.0,30.0,111,85,60,0.0,15714,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,3614.5943811554007,0.0,0.0,11856.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9120.0,1,0,1_1,1_0 -4163,2.0,3.0,69.0,111,78,43,0.0,15718,0.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,1.8,2719.1286498308978,0.0,0.0,20353.0,5,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,11307.222222222223,1,0,1_0,1_0 -4164,21.0,21.0,42.0,112,62,50,0.0,15719,0.0,450.0,250.0,0.0,2.0,5.0,2.0,4.0,2.1,3220.0639698883692,3380.0,0.0,43984.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20944.761904761905,3,0,3_0,3_1 -4165,0.0,0.0,44.0,111,21,41,1.0,1572,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,4136.172067934147,0.0,75200.0,61126.0,4,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,33958.88888888889,5,0,5,5_0 -4166,0.0,25.0,61.0,112,77,44,0.0,15720,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3596.4166944502376,3433.0,0.0,5422.0,5,3,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,5422.0,1,0,1_1,1_1 -4167,3.0,4.0,68.0,112,78,70,0.0,15723,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1736.0856906462022,0.0,0.0,37560.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,25040.0,4,0,4_0,4_0 -4168,3.0,10.0,39.0,111,21,50,0.0,15724,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2437.3951672390385,0.0,0.0,28001.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12174.347826086958,1,0,1_1,1_0 -4169,0.0,0.0,78.0,111,77,50,0.0,15726,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5388.796716109584,0.0,0.0,15894.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15894.0,2,0,2_0,2_0 -4170,0.0,0.0,53.0,112,43,33,1.0,15727,0.0,1110.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,3862.029995014615,0.0,20200.0,109093.0,1,1,8,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,72728.66666666667,5,0,5,5_1 -4171,0.0,0.0,81.0,112,71,71,0.0,15729,0.0,0.0,0.0,217.0,0.0,3.0,0.0,1.0,1.0,3686.7558097261362,0.0,0.0,15648.0,5,3,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15648.0,2,0,2_1,2_0 -4172,13.0,21.0,50.0,112,54,50,0.0,1573,0.0,300.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1299.5548373529061,2081.0,0.0,29849.0,1,1,6,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,14924.5,2,0,2_0,2_1 -4173,1.0,1.0,44.0,300,52,50,0.0,15730,0.0,150.0,99999.0,0.0,3.0,6.0,3.0,5.0,2.8,939.3426373043292,3276.0,0.0,62040.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,22157.14285714286,4,0,4_0,4_1 -4174,2.0,15.0,37.0,111,85,41,0.0,15731,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3620.9552750122,1040.0,0.0,18487.0,7,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,18487.0,3,0,3_1,3_0 -4175,0.0,0.0,51.0,111,85,50,0.0,15734,0.0,0.0,0.0,29.0,0.0,3.0,0.0,2.0,1.5,3145.4237933200993,0.0,0.0,11624.0,7,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7749.333333333333,1,0,1_1,1_0 -4176,1.0,18.0,21.0,221,67,71,2.0,15735,0.0,210.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,5337.334706434544,1560.0,500.0,13108.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,7282.222222222222,1,0,1_1,1_0 -4177,10.0,12.0,59.0,400,64,50,0.0,15738,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1465.9453466128116,3120.0,0.0,28987.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19324.666666666668,3,0,3_0,3_1 -4178,6.0,7.0,75.0,112,78,71,0.0,15740,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,5279.012828742617,4680.0,0.0,20032.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13354.666666666666,2,0,2_0,2_1 -4179,0.0,0.0,78.0,111,78,71,0.0,15741,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3797.6390832321817,0.0,0.0,15608.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15608.0,2,0,2_0,2_0 -4180,11.0,12.0,61.0,111,75,71,0.0,15743,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2975.7761627345853,932.0,0.0,7576.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,7576.0,1,0,1_1,1_0 -4181,8.0,8.0,66.0,112,75,33,0.0,15744,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2130.1413814288208,4290.0,0.0,23624.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23624.0,4,0,4_0,4_0 -4182,3.0,19.0,39.0,111,63,71,0.0,15745,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,4387.2051322621355,1040.0,0.0,25540.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,10641.666666666668,1,0,1_1,1_0 -4183,3.0,3.0,54.0,111,33,20,0.0,15746,0.0,1000.0,200.0,0.0,2.0,5.0,0.0,2.0,1.5,1442.7909971900676,2600.0,0.0,117278.0,1,2,6,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,78185.33333333333,5,0,5,5_0 -4184,0.0,6.0,77.0,111,75,70,2.0,15747,0.0,0.0,0.0,343.0,0.0,2.0,0.0,1.0,1.0,2358.5985588735593,0.0,5000.0,14204.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14204.0,2,0,2_1,2_0 -4185,4.0,8.0,44.0,111,34,10,0.0,15748,0.0,835.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1398.1871580399607,3682.0,0.0,47413.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,19755.416666666668,3,0,3_1,3_0 -4186,0.0,0.0,24.0,111,46,20,0.0,15749,0.0,0.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,3524.084517408739,0.0,0.0,31585.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31585.0,5,0,5,5_0 -4187,13.0,16.0,73.0,120,77,70,0.0,1575,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2311.057566226161,0.0,0.0,12760.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12760.0,2,0,2_0,2_1 -4188,10.0,10.0,36.0,111,37,42,0.0,15751,0.0,700.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,3620.7722403447992,3120.0,0.0,52169.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,24842.38095238095,4,0,4_0,4_0 -4189,15.0,15.0,41.0,300,63,50,0.0,15752,0.0,160.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1876.1401085357236,1924.0,0.0,17441.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,17441.0,3,0,3_1,3_1 -4190,18.0,18.0,58.0,111,33,12,0.0,15754,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2577.7832182211223,0.0,0.0,83752.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,55834.666666666664,5,0,5,5_0 -4191,0.0,0.0,76.0,111,77,71,0.0,15755,0.0,0.0,0.0,363.0,0.0,3.0,0.0,1.0,1.0,3682.400200758022,0.0,0.0,14850.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14850.0,2,0,2_0,2_0 -4192,3.0,6.0,59.0,111,46,50,0.0,15756,0.0,0.0,360.0,305.0,2.0,3.0,1.0,2.0,1.5,2417.7684038017014,2080.0,0.0,38580.0,1,3,6,4.0,2,2.0,1.0,1.0,0,0,1,0,0,0,2.0,0.0,25720.0,4,0,4_0,4_0 -4193,8.0,10.0,45.0,300,13,50,0.0,15758,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,1412.671329636667,3264.0,0.0,18399.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,7999.565217391305,1,0,1_0,1_1 -4194,0.0,0.0,66.0,112,78,70,0.0,1576,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1951.5288347888081,0.0,0.0,12410.0,5,1,5,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12410.0,1,0,1_0,1_1 -4195,8.0,8.0,39.0,111,38,10,0.0,15761,0.0,500.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2960.5730865046617,0.0,0.0,49324.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23487.619047619046,4,0,4_0,4_0 -4196,4.0,4.0,55.0,111,33,31,0.0,15762,0.0,300.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2343.1112977459115,2333.0,0.0,57800.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,38533.333333333336,5,0,5,5_0 -4197,7.0,8.0,77.0,111,75,50,0.0,15763,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1103.078788815472,2080.0,0.0,23627.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15751.333333333334,2,0,2_0,2_0 -4198,5.0,11.0,49.0,111,46,71,0.0,15764,0.0,0.0,99999.0,0.0,3.0,6.0,2.0,4.0,2.5,2707.9912528258355,0.0,0.0,74250.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,29700.0,5,0,5,5_0 -4199,3.0,5.0,58.0,111,45,41,0.0,15765,0.0,80.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2306.8244008988668,0.0,0.0,63957.0,1,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,42638.0,5,0,5,5_0 -4200,0.0,11.0,20.0,111,84,41,0.0,15769,0.0,0.0,0.0,750.0,0.0,4.0,0.0,2.0,1.5,3423.7794214523924,0.0,0.0,35.0,3,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23.333333333333332,1,0,1_0,1_0 -4201,5.0,9.0,85.0,111,74,10,0.0,15770,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2718.938024054064,3183.0,0.0,50563.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,50563.0,5,0,5,5_0 -4202,0.0,0.0,58.0,111,56,71,0.0,15771,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3378.6764273219565,0.0,0.0,16672.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16672.0,2,0,2_0,2_0 -4203,1.0,10.0,51.0,211,68,50,2.0,15772,0.0,99999.0,600.0,517.0,3.0,5.0,2.0,3.0,2.0,1144.0077246843173,1831.0,3400.0,33003.0,1,3,1,2.0,2,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,16501.5,2,0,2_0,2_0 -4204,1.0,1.0,31.0,111,65,50,2.0,15774,0.0,0.0,100.0,361.0,2.0,3.0,0.0,2.0,1.5,2744.1013134439077,2800.0,4150.0,41124.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,27416.0,4,0,4_0,4_0 -4205,1.0,1.0,51.0,111,38,10,0.0,15775,140.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,988.3790534036456,2522.0,0.0,43914.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,0.0,21957.0,4,0,4_0,4_0 -4206,1.0,3.0,29.0,111,55,31,2.0,15776,0.0,150.0,0.0,549.0,1.0,2.0,0.0,1.0,1.0,3355.9533401999292,0.0,16144.0,31869.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,31869.0,5,0,5,5_0 -4207,11.0,26.0,51.0,111,63,50,0.0,15778,0.0,125.0,0.0,0.0,2.0,2.0,6.0,8.0,4.5,960.7104417746897,1042.0,0.0,79750.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17722.222222222223,3,0,3_0,3_0 -4208,3.0,3.0,54.0,300,11,50,0.0,15779,0.0,200.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1942.579336886299,3432.0,0.0,26135.0,1,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,17423.333333333332,3,0,3_0,3_1 -4209,0.0,0.0,32.0,111,38,20,0.0,1578,0.0,0.0,0.0,494.0,1.0,1.0,0.0,1.0,1.0,3447.2166131595363,0.0,0.0,31566.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31566.0,5,0,5,5_0 -4210,0.0,0.0,89.0,111,77,70,0.0,15780,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2182.8111107883396,0.0,0.0,17217.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17217.0,3,0,3_0,3_0 -4211,0.0,0.0,26.0,111,55,20,0.0,15781,0.0,0.0,0.0,674.0,1.0,2.0,0.0,2.0,1.5,3242.944431253079,0.0,0.0,12385.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8256.666666666666,1,0,1_1,1_0 -4212,3.0,16.0,52.0,111,55,50,0.0,15782,0.0,0.0,0.0,261.0,1.0,3.0,1.0,2.0,1.5,1425.5357760864827,2617.0,0.0,23310.0,1,3,4,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15540.0,2,0,2_0,2_0 -4213,1.0,11.0,30.0,111,42,20,2.0,15783,1300.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1731.2965651600296,6500.0,3000.0,46380.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22085.714285714286,4,0,4_0,4_0 -4214,3.0,7.0,29.0,111,21,42,0.0,15784,0.0,450.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,8342.715762926871,0.0,0.0,42700.0,1,2,8,6.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,20333.333333333332,3,0,3_0,3_0 -4215,1.0,1.0,73.0,111,75,71,2.0,15786,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2179.335146754034,826.0,18000.0,26873.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17915.333333333332,3,0,3_0,3_0 -4216,11.0,11.0,37.0,111,37,31,0.0,15787,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3100.549087272937,2085.0,0.0,120816.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,57531.42857142857,5,0,5,5_0 -4217,6.0,17.0,49.0,111,85,71,0.0,15788,0.0,0.0,0.0,0.0,2.0,4.0,4.0,5.0,2.8,1366.251824989298,2150.0,0.0,19420.0,6,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,6935.714285714286,1,0,1_1,1_0 -4218,6.0,7.0,58.0,111,38,31,0.0,15789,0.0,135.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2729.5253772946194,2209.0,0.0,48859.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,32572.666666666668,5,0,5,5_0 -4219,3.0,4.0,38.0,112,63,43,0.0,1579,0.0,100.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1319.7983050571136,1920.0,0.0,56566.0,1,2,6,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,23569.166666666668,4,0,4_0,4_0 -4220,10.0,10.0,57.0,111,37,60,0.0,15791,0.0,50.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2636.3327380376822,6016.0,0.0,91919.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,61279.333333333336,5,0,5,5_0 -4221,0.0,0.0,48.0,111,42,41,0.0,15794,0.0,0.0,0.0,390.0,1.0,1.0,0.0,1.0,1.0,3982.3953439989077,0.0,0.0,22084.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22084.0,4,0,4_0,4_0 -4222,8.0,11.0,74.0,111,78,71,0.0,15795,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2976.791099249691,0.0,0.0,18490.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12326.666666666666,1,0,1_0,1_0 -4223,0.0,14.0,42.0,111,37,20,0.0,15796,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3342.0680048357276,2604.0,0.0,18439.0,4,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,18439.0,3,0,3_0,3_0 -4224,9.0,15.0,39.0,300,62,50,0.0,15797,0.0,200.0,140.0,0.0,2.0,6.0,2.0,4.0,2.1,3488.97375571492,5253.0,0.0,38627.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,18393.809523809523,3,0,3_0,3_0 -4225,0.0,0.0,46.0,111,85,50,0.0,158,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2717.9673600944843,0.0,0.0,7370.0,7,4,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,4913.333333333333,1,0,1_0,1_0 -4226,2.0,2.0,39.0,112,38,12,0.0,1580,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,5288.658799442691,0.0,0.0,39815.0,1,3,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18959.52380952381,3,0,3_0,3_0 -4227,5.0,9.0,37.0,112,63,50,0.0,1581,0.0,0.0,340.0,0.0,2.0,4.0,3.0,5.0,2.4,2133.615494482469,0.0,0.0,26117.0,1,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,10882.083333333334,1,0,1_1,1_1 -4228,0.0,0.0,35.0,111,35,10,0.0,1585,0.0,0.0,0.0,134.0,1.0,2.0,0.0,1.0,1.0,3414.6644725607816,0.0,0.0,7890.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7890.0,1,0,1_1,1_0 -4229,6.0,22.0,45.0,112,52,60,0.0,1587,0.0,350.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2494.028670865976,2080.0,0.0,32298.0,1,2,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21532.0,3,0,3_0,3_1 -4230,0.0,0.0,77.0,111,77,70,0.0,1588,0.0,0.0,0.0,336.0,0.0,3.0,0.0,1.0,1.0,3336.975586841658,0.0,0.0,15080.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15080.0,2,0,2_0,2_0 -4231,1.0,4.0,27.0,120,37,20,2.0,1589,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4913.858841482674,0.0,17400.0,27645.0,1,2,0,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27645.0,4,0,4_0,4_0 -4232,4.0,7.0,23.0,111,43,33,0.0,1591,0.0,280.0,0.0,450.0,1.0,3.0,0.0,2.0,1.5,3388.6685507400193,0.0,0.0,26668.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,17778.666666666668,3,0,3_1,3_0 -4233,3.0,5.0,55.0,400,45,50,0.0,1593,0.0,0.0,104.0,0.0,2.0,6.0,0.0,2.0,1.5,1440.3101127497896,0.0,0.0,29748.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19832.0,3,0,3_0,3_1 -4234,1.0,1.0,66.0,111,74,41,1.0,1594,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2317.952605226408,1771.0,10933.0,30871.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20580.666666666668,3,0,3_0,3_0 -4235,5.0,5.0,43.0,111,22,50,0.0,1595,0.0,0.0,150.0,0.0,2.0,4.0,1.0,3.0,2.0,4737.397096917316,0.0,0.0,40096.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,20048.0,3,0,3_0,3_0 -4236,13.0,20.0,57.0,111,45,70,0.0,1596,0.0,0.0,0.0,450.0,3.0,4.0,1.0,3.0,2.0,2995.8179705247,0.0,0.0,53533.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,26766.5,4,0,4_0,4_0 -4237,9.0,13.0,40.0,112,21,71,0.0,1599,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3177.074354073051,0.0,0.0,28198.0,1,2,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,28198.0,4,0,4_0,4_1 -4238,4.0,4.0,48.0,211,48,50,0.0,16,0.0,0.0,0.0,553.0,2.0,4.0,1.0,3.0,2.0,1673.2743941514125,0.0,0.0,48279.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,24139.5,4,0,4_0,4_0 -4239,0.0,21.0,68.0,111,75,41,0.0,1600,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2142.815933934523,2652.0,0.0,26612.636363636364,5,1,7,5.0,3,3.0,0.0,0.0,0,0,1,0,0,0,3.0,0.0,17741.757575757576,3,0,3_0,3_0 -4240,1.0,4.0,67.0,112,77,71,2.0,1601,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2721.5653278947298,0.0,17000.0,38372.0,5,4,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25581.333333333332,4,0,4_0,4_1 -4241,14.0,17.0,63.0,112,75,60,0.0,1602,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1705.5720648899362,0.0,0.0,37080.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24720.0,4,0,4_0,4_1 -4242,9.0,9.0,34.0,111,48,71,0.0,1603,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2694.762909459206,0.0,0.0,52732.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,21971.666666666668,4,0,4_0,4_0 -4243,4.0,4.0,58.0,111,48,41,0.0,1604,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3092.5211248703113,0.0,0.0,32193.0,1,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,32193.0,5,0,5,5_0 -4244,0.0,0.0,21.0,111,84,41,0.0,1606,0.0,0.0,0.0,400.0,0.0,2.0,0.0,2.0,1.5,3966.0978388650105,0.0,0.0,18746.0,3,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12497.333333333334,1,0,1_1,1_0 -4245,6.0,7.0,39.0,112,22,20,0.0,1607,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2681.2330424219804,2210.0,0.0,27616.0,1,1,10,1.0,2,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,21243.076923076922,3,0,3_0,3_0 -4246,3.0,3.0,53.0,111,22,41,0.0,1609,0.0,400.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,2829.5484271933624,5139.0,0.0,204934.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,136622.66666666666,5,0,5,5_0 -4247,8.0,8.0,53.0,111,43,33,0.0,1610,0.0,0.0,30.0,0.0,1.0,2.0,0.0,1.0,1.0,1799.0872937022887,0.0,0.0,32588.0,1,2,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,32588.0,5,0,5,5_0 -4248,3.0,15.0,42.0,111,47,31,0.0,1612,0.0,0.0,20.0,0.0,1.0,3.0,0.0,1.0,1.0,4882.931836666314,0.0,0.0,16472.0,1,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,16472.0,2,0,2_0,2_0 -4249,8.0,8.0,78.0,111,77,70,0.0,1613,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2377.634763953168,0.0,0.0,35913.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23942.0,4,0,4_0,4_0 -4250,3.0,3.0,61.0,400,56,70,0.0,1615,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1059.3704946451162,4550.0,0.0,23935.0,1,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15956.666666666666,2,0,2_0,2_1 -4251,1.0,6.0,54.0,120,52,50,0.0,1617,0.0,99999.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1615.543325427561,0.0,0.0,54797.0,1,1,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27398.5,4,0,4_0,4_1 -4252,2.0,2.0,56.0,111,34,10,0.0,1618,0.0,40.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2591.80357318214,0.0,0.0,80669.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,53779.333333333336,5,0,5,5_0 -4253,1.0,7.0,20.0,111,55,41,2.0,162,0.0,20.0,0.0,57.0,1.0,1.0,0.0,1.0,1.0,3246.1560864866583,0.0,4500.0,13816.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13816.0,2,0,2_1,2_0 -4254,3.0,3.0,42.0,111,48,31,0.0,1620,0.0,0.0,250.0,0.0,2.0,5.0,2.0,4.0,2.1,2183.5408892270375,3068.0,0.0,65311.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,31100.47619047619,5,0,5,5_0 -4255,13.0,13.0,73.0,111,74,31,0.0,1624,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4019.358245122844,0.0,0.0,52310.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,34873.333333333336,5,0,5,5_0 -4256,3.0,10.0,67.0,111,77,70,0.0,1626,0.0,0.0,0.0,276.0,0.0,4.0,0.0,1.0,1.0,3915.338728835554,0.0,0.0,14060.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14060.0,2,0,2_1,2_0 -4257,3.0,13.0,50.0,221,85,42,0.0,1627,0.0,0.0,110.0,0.0,1.0,4.0,0.0,2.0,1.5,2920.3112349536227,2461.0,0.0,29561.0,7,2,1,2.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,19707.333333333332,3,0,3_0,3_0 -4258,4.0,6.0,67.0,221,78,50,0.0,1628,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2966.938271688375,0.0,0.0,19580.0,5,1,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13053.333333333334,2,0,2_0,2_0 -4259,5.0,7.0,44.0,400,47,50,0.0,163,0.0,80.0,400.0,0.0,2.0,6.0,2.0,4.0,2.1,1916.3653947948478,2080.0,0.0,37804.0,1,3,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,18001.90476190476,3,0,3_1,3_0 -4260,0.0,0.0,72.0,111,77,70,0.0,1630,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1915.2021342298756,0.0,0.0,16410.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16410.0,2,0,2_0,2_0 -4261,17.0,17.0,53.0,111,63,50,0.0,1634,0.0,0.0,0.0,289.0,2.0,4.0,0.0,2.0,1.5,2339.8005585948613,0.0,0.0,25158.0,1,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16772.0,2,0,2_0,2_0 -4262,6.0,8.0,31.0,212,63,50,0.0,1635,0.0,99999.0,270.0,0.0,2.0,5.0,2.0,4.0,2.1,1488.0627358072236,4108.0,0.0,44955.0,1,2,3,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,21407.142857142855,3,0,3_0,3_1 -4263,0.0,0.0,78.0,111,75,41,0.0,1639,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4681.859198079847,0.0,0.0,32780.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32780.0,5,0,5,5_0 -4264,11.0,11.0,61.0,111,74,50,0.0,164,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2097.0647676457984,2187.0,0.0,26785.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26785.0,4,0,4_0,4_0 -4265,4.0,4.0,74.0,112,75,50,0.0,1640,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1692.2482693414634,0.0,0.0,19627.0,5,4,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19627.0,3,0,3_0,3_1 -4266,0.0,0.0,58.0,112,78,71,0.0,1641,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,5967.581448860313,0.0,0.0,16582.0,7,1,9,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11054.666666666666,1,0,1_0,1_0 -4267,0.0,8.0,24.0,111,63,50,2.0,1642,0.0,0.0,0.0,363.0,2.0,2.0,1.0,3.0,1.8,2766.191988537535,0.0,6200.0,34152.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,18973.333333333332,3,0,3_1,3_0 -4268,8.0,8.0,77.0,300,72,50,0.0,1644,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2180.8166628857293,0.0,0.0,15433.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10288.666666666666,1,0,1_0,1_1 -4269,8.0,10.0,29.0,111,46,60,0.0,1645,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,2437.3390706924274,0.0,0.0,40896.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,22720.0,4,0,4_0,4_0 -4270,0.0,0.0,77.0,111,77,71,0.0,1646,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3093.30630827792,0.0,0.0,3240.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,3240.0,1,0,1_0,1_0 -4271,0.0,0.0,70.0,111,78,71,0.0,1647,0.0,0.0,0.0,269.0,1.0,5.0,3.0,5.0,3.0,3130.9661678230964,1040.0,0.0,45770.0,5,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15256.666666666666,2,0,2_1,2_0 -4272,2.0,2.0,62.0,120,75,70,0.0,1648,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1014.4227561197958,0.0,0.0,16127.0,7,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,10751.333333333334,1,0,1_0,1_0 -4273,11.0,11.0,64.0,111,53,71,0.0,165,0.0,0.0,0.0,0.0,1.0,5.0,6.0,8.0,3.7,2016.8785295418058,4680.0,0.0,30170.0,1,4,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,8154.054054054053,1,0,1_0,1_0 -4274,0.0,0.0,41.0,111,48,20,0.0,1651,0.0,0.0,0.0,410.0,2.0,3.0,2.0,4.0,2.1,3256.073337118055,0.0,0.0,29797.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14189.047619047618,2,0,2_0,2_0 -4275,3.0,17.0,49.0,400,64,71,0.0,1652,0.0,0.0,45.0,0.0,2.0,5.0,2.0,4.0,2.3,2868.398127119408,1571.0,0.0,45187.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19646.521739130436,3,0,3_0,3_1 -4276,1.0,1.0,73.0,221,72,71,1.0,1653,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2325.990090921054,0.0,14095.0,25940.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17293.333333333332,3,0,3_0,3_0 -4277,0.0,0.0,82.0,111,86,70,0.0,1654,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1766.7843788620269,0.0,0.0,9264.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,9264.0,1,0,1_0,1_0 -4278,15.0,20.0,47.0,111,47,50,0.0,1656,0.0,75.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2196.1669931057486,0.0,0.0,49110.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,19644.0,3,0,3_0,3_0 -4279,1.0,18.0,46.0,112,45,42,2.0,1657,0.0,210.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2127.3129920983656,520.0,1400.0,47377.0,1,2,7,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,18950.8,3,0,3_0,3_0 -4280,8.0,8.0,81.0,111,74,41,0.0,1659,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2037.562096186354,0.0,0.0,61084.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,40722.666666666664,5,0,5,5_0 -4281,2.0,6.0,38.0,112,43,20,0.0,166,0.0,2600.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1563.7889782382197,7182.0,0.0,49111.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20462.916666666668,3,0,3_0,3_0 -4282,8.0,15.0,51.0,300,68,50,0.0,1660,0.0,50.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,960.233767121396,3380.0,0.0,43331.0,4,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17332.4,3,0,3_0,3_1 -4283,3.0,13.0,25.0,111,45,20,0.0,1661,0.0,750.0,125.0,0.0,2.0,3.0,0.0,2.0,1.5,1801.3952650903202,2600.0,0.0,40749.0,1,3,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,27166.0,4,0,4_0,4_0 -4284,9.0,24.0,41.0,112,62,50,0.0,1662,0.0,300.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1669.7367654818818,2851.0,0.0,33087.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15755.714285714284,2,0,2_0,2_1 -4285,3.0,3.0,65.0,211,74,50,0.0,1663,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1788.982031059901,0.0,0.0,41386.0,5,1,2,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,41386.0,5,0,5,5_0 -4286,11.0,16.0,52.0,120,43,20,0.0,1664,0.0,200.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3551.470996769685,1567.0,0.0,23478.0,1,2,0,0.0,2,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,15652.0,2,0,2_0,2_1 -4287,8.0,18.0,62.0,112,78,70,0.0,1665,0.0,0.0,400.0,0.0,1.0,5.0,1.0,2.0,1.5,1345.2535619656617,2133.0,0.0,29480.0,5,1,9,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19653.333333333332,3,0,3_0,3_1 -4288,8.0,8.0,73.0,120,72,50,0.0,1666,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1804.5061976753782,0.0,0.0,45512.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,30341.333333333332,5,0,5,5_0 -4289,0.0,0.0,21.0,111,56,71,0.0,1668,0.0,0.0,0.0,226.0,2.0,1.0,1.0,3.0,1.8,3309.1081800254756,0.0,0.0,10200.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,5666.666666666667,1,0,1_1,1_0 -4290,2.0,18.0,63.0,112,34,12,0.0,167,0.0,0.0,600.0,0.0,1.0,6.0,0.0,2.0,1.5,1934.5796474571926,0.0,0.0,57938.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,38625.333333333336,5,0,5,5_1 -4291,0.0,22.0,27.0,111,54,20,0.0,1671,0.0,0.0,350.0,455.0,1.0,2.0,0.0,1.0,1.0,2876.966640809301,1664.0,0.0,16766.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,16766.0,2,0,2_0,2_0 -4292,2.0,2.0,48.0,112,37,50,0.0,1672,0.0,530.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2329.8152885166664,2886.0,0.0,69638.0,1,2,8,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,27855.2,4,0,4_0,4_1 -4293,2.0,15.0,75.0,111,78,71,0.0,1673,0.0,250.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4237.931945009472,0.0,0.0,15111.0,5,2,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,10074.0,1,0,1_1,1_0 -4294,0.0,7.0,31.0,111,47,50,0.0,1675,0.0,550.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3841.5703618510884,1560.0,0.0,38926.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21625.555555555555,3,0,3_0,3_0 -4295,20.0,20.0,86.0,111,72,70,0.0,1676,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3424.388525656176,1872.0,0.0,10906.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,10906.0,1,0,1_0,1_0 -4296,1.0,6.0,48.0,111,22,50,0.0,1678,0.0,0.0,99999.0,0.0,2.0,8.0,0.0,2.0,1.5,3339.9792900557213,2704.0,0.0,12320.0,1,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,8213.333333333334,1,0,1_0,1_0 -4297,8.0,8.0,37.0,111,48,43,0.0,168,0.0,250.0,50.0,0.0,2.0,3.0,2.0,4.0,2.1,3519.4339241223956,0.0,0.0,50082.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,23848.571428571428,4,0,4_0,4_0 -4298,3.0,15.0,33.0,111,56,50,0.0,1681,0.0,99999.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,1390.0687180101106,3480.0,0.0,23128.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,11013.333333333332,1,0,1_1,1_0 -4299,1.0,1.0,36.0,111,55,30,1.0,1682,0.0,200.0,0.0,167.0,1.0,3.0,1.0,2.0,1.3,2952.002419914057,0.0,11500.0,19932.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,15332.307692307691,2,0,2_1,2_0 -4300,0.0,0.0,50.0,111,85,50,0.0,1683,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.6,2128.30969733451,0.0,0.0,25014.0,6,3,6,5.0,5,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9620.76923076923,1,0,1_1,1_0 -4301,9.0,9.0,35.0,112,38,12,0.0,1685,0.0,0.0,350.0,0.0,2.0,4.0,0.0,2.0,1.5,2418.5122200145447,0.0,0.0,77795.0,1,2,10,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,51863.333333333336,5,0,5,5_0 -4302,2.0,2.0,55.0,111,47,41,1.0,1687,0.0,100059.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.3,2054.930273972114,926.0,13400.0,33320.0,1,1,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,14486.956521739132,2,0,2_0,2_0 -4303,2.0,3.0,43.0,111,62,50,0.0,1688,0.0,350.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1300.1055154826356,0.0,0.0,35486.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15428.695652173914,2,0,2_0,2_0 -4304,10.0,19.0,41.0,300,43,41,0.0,1689,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2303.9115475440094,0.0,0.0,42478.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18468.695652173916,3,0,3_0,3_1 -4305,2.0,2.0,24.0,300,47,20,0.0,1690,0.0,0.0,0.0,325.0,1.0,3.0,0.0,1.0,1.0,3081.098779461222,0.0,0.0,21588.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21588.0,3,0,3_0,3_1 -4306,5.0,10.0,43.0,211,63,50,0.0,1691,0.0,140.0,0.0,481.0,2.0,4.0,2.0,4.0,2.1,1174.7293747566684,0.0,0.0,35035.0,1,3,3,4.0,4,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,16683.333333333332,2,0,2_1,2_0 -4307,3.0,3.0,33.0,112,38,12,0.0,1694,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1792.7552532712984,3195.0,0.0,71544.0,1,2,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,34068.57142857143,5,0,5,5_1 -4308,4.0,4.0,42.0,112,37,31,0.0,1695,0.0,199998.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,5799.103106760391,0.0,0.0,71380.0,1,1,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25492.857142857145,4,0,4_0,4_0 -4309,11.0,14.0,71.0,300,71,70,0.0,1696,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1700.5346688953769,0.0,0.0,28570.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28570.0,4,0,4_0,4_1 -4310,7.0,19.0,56.0,111,62,50,0.0,1697,0.0,600.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3153.4007467869164,2496.0,0.0,26841.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,17894.0,3,0,3_0,3_0 -4311,0.0,13.0,47.0,112,62,71,0.0,17,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,5744.891587005811,0.0,0.0,26178.0,4,1,7,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17452.0,3,0,3_0,3_1 -4312,19.0,19.0,91.0,111,74,10,0.0,170,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2064.280901985578,0.0,0.0,30877.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,30877.0,5,0,5,5_0 -4313,7.0,7.0,40.0,300,43,20,0.0,1700,0.0,400.0,400.0,0.0,2.0,4.0,2.0,4.0,2.1,1636.380010123936,2490.0,0.0,39052.0,1,3,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,18596.190476190477,3,0,3_0,3_1 -4314,8.0,8.0,75.0,111,77,41,0.0,1702,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2936.2613789422708,2080.0,0.0,15408.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15408.0,2,0,2_0,2_0 -4315,3.0,3.0,58.0,300,64,50,0.0,1703,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1226.3653843887664,3952.0,0.0,29051.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19367.333333333332,3,0,3_0,3_1 -4316,3.0,9.0,24.0,111,55,50,0.0,1704,0.0,0.0,0.0,200.0,2.0,2.0,1.0,3.0,1.8,3461.1471256515233,0.0,0.0,30295.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,16830.555555555555,2,0,2_1,2_0 -4317,2.0,2.0,64.0,111,74,42,0.0,1705,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1722.931953371982,6306.0,0.0,50624.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,33749.333333333336,5,0,5,5_0 -4318,5.0,5.0,64.0,111,75,50,0.0,1707,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2405.7633368197075,1560.0,0.0,29935.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19956.666666666668,3,0,3_0,3_0 -4319,7.0,11.0,38.0,120,31,10,0.0,1709,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1320.173439237799,3380.0,0.0,54562.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,30312.222222222223,5,0,5,5_1 -4320,4.0,4.0,53.0,111,65,50,0.0,1710,0.0,100.0,0.0,559.0,1.0,3.0,0.0,1.0,1.0,3079.2461601966343,0.0,0.0,36803.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,36803.0,5,0,5,5_0 -4321,4.0,4.0,57.0,111,43,33,0.0,1711,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3949.9176020855048,3555.0,0.0,44420.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,29613.333333333332,5,0,5,5_0 -4322,11.0,11.0,56.0,111,74,41,0.0,1712,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3142.4722483479322,3866.0,0.0,80373.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,53582.0,5,0,5,5_0 -4323,0.0,5.0,23.0,120,62,42,0.0,1713,0.0,645.0,0.0,540.0,1.0,4.0,0.0,2.0,1.5,4058.4226405071813,2699.0,0.0,38777.0,1,3,0,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25851.333333333332,4,0,4_0,4_0 -4324,6.0,15.0,40.0,111,31,10,0.0,1715,0.0,0.0,130.0,0.0,1.0,2.0,0.0,1.0,1.0,2590.8498483215044,1824.0,0.0,31485.0,1,2,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,31485.0,5,0,5,5_0 -4325,0.0,0.0,81.0,111,78,70,0.0,1716,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3095.0987099956865,0.0,0.0,17392.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17392.0,3,0,3_0,3_0 -4326,4.0,5.0,53.0,300,46,50,0.0,1719,0.0,700.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1810.3608224827778,3640.0,0.0,18330.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18330.0,3,0,3_0,3_1 -4327,4.0,10.0,40.0,112,67,50,0.0,172,0.0,220.0,180.0,0.0,2.0,4.0,3.0,5.0,2.4,1145.3191070758483,3016.0,0.0,45812.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,19088.333333333336,3,0,3_1,3_1 -4328,0.0,0.0,63.0,111,77,71,0.0,1720,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3476.1699517171683,0.0,0.0,6200.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6200.0,1,0,1_1,1_0 -4329,14.0,14.0,53.0,111,55,50,0.0,1721,0.0,0.0,0.0,265.0,1.0,3.0,0.0,1.0,1.0,2702.62795658873,0.0,0.0,15288.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15288.0,2,0,2_0,2_0 -4330,16.0,16.0,61.0,120,75,70,0.0,1724,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1745.7057408994622,2770.0,0.0,40907.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,27271.333333333332,4,0,4_0,4_1 -4331,7.0,15.0,49.0,112,37,20,0.0,1726,0.0,800.0,60.0,0.0,2.0,9.0,1.0,3.0,2.0,946.3265188643239,0.0,0.0,73719.0,1,1,8,2.0,4,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,36859.5,5,0,5,5_0 -4332,0.0,0.0,60.0,111,35,20,0.0,1727,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,1123.4324211564272,0.0,0.0,26590.0,1,4,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17726.666666666668,3,0,3_0,3_0 -4333,6.0,10.0,57.0,111,37,12,0.0,1728,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,1547.4081498401404,3744.0,0.0,59577.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,28370.0,4,0,4_0,4_0 -4334,0.0,11.0,20.0,111,84,41,2.0,1729,0.0,0.0,25.0,190.0,0.0,2.0,0.0,1.0,1.0,3441.784034234084,0.0,2900.0,3135.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,3135.0,1,0,1_1,1_0 -4335,9.0,9.0,81.0,111,71,71,0.0,1731,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3469.580545254972,2340.0,0.0,10042.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,10042.0,1,0,1_0,1_0 -4336,8.0,8.0,39.0,112,46,71,0.0,1732,0.0,0.0,100.0,0.0,2.0,5.0,1.0,3.0,1.8,3270.19929237104,5305.0,0.0,23106.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,12836.666666666666,2,0,2_0,2_1 -4337,18.0,18.0,48.0,221,43,10,0.0,1733,0.0,670.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1641.403608908494,0.0,0.0,63715.0,1,2,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,31857.5,5,0,5,5_0 -4338,14.0,17.0,76.0,112,78,71,0.0,1734,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4876.483200546682,0.0,0.0,22071.0,5,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14714.0,2,0,2_0,2_1 -4339,0.0,0.0,88.0,111,77,71,0.0,1735,0.0,0.0,0.0,310.0,0.0,3.0,0.0,1.0,1.0,3483.7855286338454,0.0,0.0,14228.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14228.0,2,0,2_0,2_0 -4340,5.0,5.0,43.0,112,45,31,0.0,1737,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2395.2217220255284,5356.0,0.0,44355.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21121.42857142857,3,0,3_0,3_1 -4341,2.0,2.0,68.0,111,77,50,0.0,1738,0.0,0.0,0.0,162.0,0.0,4.0,0.0,1.0,1.0,2345.171781917026,3994.0,0.0,11692.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,11692.0,1,0,1_1,1_0 -4342,0.0,0.0,78.0,111,86,71,0.0,1742,0.0,0.0,0.0,30.0,0.0,3.0,0.0,1.0,1.0,2771.008839361378,8944.0,0.0,17172.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17172.0,3,0,3_1,3_0 -4343,0.0,0.0,46.0,111,85,60,0.0,1743,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3030.7477404102915,0.0,0.0,11220.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11220.0,1,0,1_1,1_0 -4344,0.0,0.0,27.0,112,85,71,0.0,1744,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,1.9,3421.11393148071,0.0,0.0,16508.0,6,3,9,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8688.42105263158,1,0,1_1,1_0 -4345,2.0,2.0,40.0,111,62,50,0.0,1745,0.0,210.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3056.546217786225,0.0,0.0,21155.0,1,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21155.0,3,0,3_0,3_0 -4346,6.0,6.0,60.0,111,74,50,0.0,1746,0.0,20.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1306.2833126642395,0.0,0.0,46775.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,31183.333333333332,5,0,5,5_0 -4347,0.0,0.0,25.0,111,46,31,0.0,1747,0.0,0.0,0.0,500.0,1.0,1.0,0.0,1.0,1.0,3104.160987843383,0.0,0.0,19210.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19210.0,3,0,3_0,3_0 -4348,2.0,2.0,77.0,111,78,50,0.0,1748,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1460.932657497521,0.0,0.0,44072.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29381.333333333332,5,0,5,5_0 -4349,2.0,2.0,43.0,112,62,42,0.0,1749,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2392.170724650996,2309.0,0.0,35272.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15335.652173913044,2,0,2_0,2_1 -4350,4.0,7.0,67.0,111,75,43,0.0,1753,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1837.4563848258592,5217.0,0.0,50153.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,33435.333333333336,5,0,5,5_0 -4351,6.0,6.0,71.0,111,78,50,0.0,1754,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1141.3251626939868,2080.0,0.0,26870.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17913.333333333332,3,0,3_0,3_0 -4352,6.0,8.0,63.0,111,78,50,0.0,1755,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1915.7575731069294,2600.0,0.0,28686.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19124.0,3,0,3_0,3_0 -4353,21.0,25.0,61.0,111,77,71,0.0,1757,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3319.5271267461694,0.0,0.0,5870.0,5,4,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,5870.0,1,0,1_0,1_0 -4354,0.0,0.0,58.0,300,78,70,0.0,1758,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3403.0759651864782,158.0,0.0,14518.0,4,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14518.0,2,0,2_1,2_1 -4355,8.0,11.0,75.0,112,77,70,0.0,1760,0.0,0.0,550.0,0.0,1.0,4.0,1.0,2.0,1.5,2729.681731676156,2911.0,0.0,17333.0,5,1,10,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,11555.333333333334,1,0,1_0,1_1 -4356,3.0,26.0,50.0,120,43,33,0.0,1761,0.0,150.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1644.6809287543135,2158.0,0.0,53310.0,1,1,0,0.0,3,4.0,1.0,0.0,1,0,0,0,0,0,0.0,4.0,35540.0,5,0,5,5_1 -4357,1.0,1.0,86.0,111,77,70,1.0,1762,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3821.8919821806267,0.0,8900.0,12470.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12470.0,1,0,1_0,1_0 -4358,14.0,14.0,64.0,112,74,20,0.0,1763,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1686.5056993607236,4908.0,0.0,15264.0,5,1,9,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,10176.0,1,0,1_0,1_0 -4359,4.0,4.0,74.0,111,74,60,0.0,1764,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4938.344388545194,0.0,0.0,31044.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31044.0,5,0,5,5_0 -4360,2.0,6.0,60.0,111,47,50,0.0,1766,0.0,0.0,0.0,560.0,1.0,1.0,0.0,1.0,1.0,3188.4144873302002,0.0,0.0,22321.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,22321.0,4,0,4_0,4_0 -4361,5.0,5.0,60.0,111,74,10,0.0,1767,0.0,0.0,0.0,863.0,0.0,4.0,0.0,1.0,1.0,2508.9169273572024,1038.0,0.0,35650.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,35650.0,5,0,5,5_0 -4362,0.0,0.0,53.0,111,22,50,0.0,1769,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1856.9383396767944,3120.0,0.0,300.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,150.0,1,0,1_0,1_0 -4363,5.0,5.0,73.0,112,78,70,0.0,177,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1029.6657244888731,1560.0,0.0,34740.0,5,1,8,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23160.0,4,0,4_0,4_0 -4364,1.0,6.0,53.0,120,75,50,2.0,1770,0.0,100.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1482.5899649289045,0.0,10000.0,38928.0,4,1,0,3.0,3,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,25952.0,4,0,4_0,4_0 -4365,11.0,11.0,81.0,300,71,71,0.0,1773,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2073.035133290282,0.0,0.0,18221.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12147.333333333334,1,0,1_0,1_1 -4366,3.0,15.0,41.0,120,62,50,0.0,1774,0.0,550.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2765.316378175649,0.0,0.0,38447.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19223.5,3,0,3_0,3_1 -4367,11.0,18.0,75.0,120,72,50,0.0,1775,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1158.2607638218292,0.0,0.0,24961.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16640.666666666668,2,0,2_0,2_0 -4368,0.0,0.0,40.0,111,65,71,0.0,1776,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,3844.819848224026,0.0,0.0,35673.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15510.000000000002,2,0,2_1,2_0 -4369,0.0,0.0,64.0,112,75,31,0.0,1777,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2309.2962387373195,0.0,0.0,13541.0,5,1,7,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13541.0,2,0,2_0,2_0 -4370,12.0,12.0,45.0,300,62,71,0.0,1778,0.0,520.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,1880.5933972147175,3641.0,0.0,35805.0,1,1,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15567.391304347828,2,0,2_0,2_0 -4371,9.0,10.0,41.0,300,67,50,0.0,1779,0.0,260.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1389.484249050625,2600.0,0.0,29967.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19978.0,3,0,3_0,3_1 -4372,0.0,26.0,45.0,111,65,31,2.0,178,0.0,0.0,0.0,740.0,2.0,4.0,2.0,4.0,2.3,2216.9735111891177,0.0,1200.0,43624.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18966.956521739132,3,0,3_0,3_0 -4373,19.0,19.0,82.0,211,77,71,0.0,1780,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2482.866874670366,467.0,0.0,30954.0,5,1,3,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20636.0,3,0,3_0,3_0 -4374,10.0,20.0,42.0,112,47,50,0.0,1784,0.0,0.0,500.0,0.0,1.0,5.0,1.0,2.0,1.5,1957.9251068846331,0.0,0.0,40082.0,1,1,10,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,26721.333333333332,4,0,4_0,4_1 -4375,9.0,11.0,62.0,221,77,50,0.0,1785,0.0,0.0,0.0,309.0,0.0,4.0,0.0,1.0,1.0,1556.664068798537,3666.0,0.0,19193.0,5,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19193.0,3,0,3_0,3_0 -4376,0.0,0.0,22.0,111,34,41,0.0,1786,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3329.983984928582,0.0,0.0,44132.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,44132.0,5,0,5,5_0 -4377,6.0,7.0,44.0,111,55,50,0.0,1787,0.0,0.0,50.0,151.0,1.0,2.0,0.0,1.0,1.0,2033.5610090924706,0.0,0.0,10043.0,4,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10043.0,1,0,1_1,1_0 -4378,6.0,6.0,48.0,112,38,50,0.0,1788,0.0,500.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2597.223783657903,4160.0,0.0,56786.0,1,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24689.565217391308,4,0,4_0,4_1 -4379,0.0,0.0,25.0,111,85,60,0.0,1789,0.0,0.0,0.0,7.0,1.0,6.0,5.0,8.0,3.5,798.9582451163657,0.0,0.0,40126.0,6,3,6,5.0,5,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11464.57142857143,1,0,1_1,1_0 -4380,1.0,2.0,38.0,400,38,12,2.0,1790,0.0,800.0,0.0,650.0,2.0,3.0,2.0,4.0,2.1,2295.6567916125887,3120.0,13000.0,132182.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,62943.80952380952,5,0,5,5_1 -4381,3.0,17.0,22.0,111,84,41,0.0,1791,0.0,0.0,220.0,12.0,0.0,4.0,0.0,1.0,1.0,3392.7262439921547,520.0,0.0,2146.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,2146.0,1,0,1_1,1_0 -4382,4.0,6.0,65.0,112,77,50,0.0,1792,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2570.5471180620275,2080.0,0.0,24135.0,5,3,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,24135.0,4,0,4_0,4_0 -4383,3.0,3.0,79.0,112,74,12,0.0,1793,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1592.2693936514563,1375.0,0.0,24385.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24385.0,4,0,4_0,4_1 -4384,2.0,6.0,33.0,111,23,42,0.0,1794,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2267.4637324127643,0.0,0.0,91919.0,1,1,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,91919.0,5,0,5,5_0 -4385,0.0,0.0,41.0,111,11,50,0.0,1796,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2630.2997672847946,0.0,0.0,2220.0,1,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,2220.0,1,0,1_0,1_0 -4386,6.0,9.0,27.0,112,38,10,0.0,1798,0.0,0.0,0.0,400.0,2.0,2.0,0.0,2.0,1.5,2590.3724660945136,2888.0,0.0,29091.0,1,3,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19394.0,3,0,3_0,3_0 -4387,9.0,10.0,55.0,120,62,50,0.0,18,0.0,0.0,30.0,0.0,1.0,3.0,0.0,2.0,1.5,1144.0045291615413,1924.0,0.0,28130.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18753.333333333332,3,0,3_0,3_1 -4388,18.0,18.0,77.0,111,77,70,0.0,180,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2636.69256708809,0.0,0.0,20781.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20781.0,3,0,3_0,3_0 -4389,0.0,0.0,72.0,111,77,50,0.0,1800,0.0,0.0,0.0,500.0,0.0,2.0,0.0,1.0,1.0,2643.44236733742,0.0,0.0,16130.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16130.0,2,0,2_0,2_0 -4390,0.0,0.0,31.0,400,68,50,0.0,1801,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2811.5992324314025,2340.0,0.0,16390.0,1,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16390.0,2,0,2_0,2_1 -4391,2.0,5.0,43.0,300,62,71,0.0,1802,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,3.0,2053.8465853407442,7267.0,0.0,42032.0,1,2,0,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,14010.666666666666,2,0,2_0,2_1 -4392,4.0,4.0,34.0,111,46,20,0.0,1803,0.0,75.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1420.8840746280473,2418.0,0.0,58869.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28032.85714285714,4,0,4_0,4_0 -4393,4.0,10.0,59.0,400,71,50,0.0,1805,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2064.5347959342234,1769.0,0.0,36899.0,5,1,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,24599.333333333332,4,0,4_0,4_1 -4394,8.0,8.0,71.0,111,77,50,0.0,1807,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2467.6878320961746,0.0,0.0,24831.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24831.0,4,0,4_0,4_0 -4395,0.0,0.0,65.0,300,78,71,0.0,1809,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1706.7237035857634,0.0,0.0,7588.0,5,4,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,7588.0,1,0,1_0,1_0 -4396,0.0,10.0,43.0,111,52,50,0.0,181,0.0,225.0,255.0,0.0,2.0,5.0,2.0,4.0,2.3,2073.464884846439,3692.0,0.0,39374.0,1,2,5,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,17119.13043478261,3,0,3_0,3_0 -4397,0.0,0.0,26.0,111,46,41,0.0,1810,0.0,0.0,0.0,670.0,1.0,2.0,0.0,1.0,1.0,4583.52524447666,0.0,0.0,27680.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27680.0,4,0,4_0,4_0 -4398,2.0,5.0,28.0,112,64,50,0.0,1813,0.0,0.0,500.0,0.0,2.0,3.0,0.0,2.0,1.5,2498.6971794468373,3576.0,0.0,37388.0,1,2,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,24925.333333333332,4,0,4_0,4_1 -4399,2.0,7.0,57.0,111,46,41,0.0,1814,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1713.0621904947286,3162.0,0.0,35973.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23982.0,4,0,4_0,4_0 -4400,8.0,18.0,26.0,112,46,10,0.0,1815,0.0,0.0,200.0,503.0,2.0,3.0,0.0,2.0,1.5,4176.317632593558,3107.0,0.0,24114.0,1,3,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,16076.0,2,0,2_1,2_1 -4401,0.0,6.0,43.0,111,63,50,2.0,1818,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1022.1546153302068,1561.0,8700.0,33597.0,1,3,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12921.923076923076,2,0,2_0,2_0 -4402,1.0,3.0,54.0,112,38,10,0.0,1819,0.0,0.0,0.0,0.0,3.0,4.0,3.0,5.0,3.0,2063.1447257281925,0.0,0.0,66602.0,1,2,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,22200.666666666668,4,0,4_0,4_1 -4403,3.0,11.0,66.0,112,78,70,0.0,182,0.0,534.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1556.2076458997865,2152.0,0.0,25368.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16912.0,3,0,3_0,3_1 -4404,1.0,6.0,54.0,111,53,50,0.0,1820,0.0,99999.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,1211.014179651966,3543.0,0.0,58570.0,1,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,39046.666666666664,5,0,5,5_0 -4405,0.0,0.0,78.0,111,77,71,0.0,1821,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3546.4380035012146,0.0,0.0,11520.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11520.0,1,0,1_0,1_0 -4406,9.0,9.0,54.0,111,43,71,0.0,1822,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,2995.2324223544865,1040.0,0.0,76898.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,30759.2,5,0,5,5_0 -4407,10.0,10.0,64.0,300,78,71,0.0,1823,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3129.480062148666,3166.0,0.0,20710.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13806.666666666666,2,0,2_0,2_1 -4408,7.0,14.0,51.0,112,45,20,0.0,1824,0.0,0.0,70.0,0.0,1.0,2.0,0.0,1.0,1.0,2601.586029712402,0.0,0.0,28224.0,1,2,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,28224.0,4,0,4_0,4_0 -4409,4.0,7.0,59.0,112,75,60,0.0,1826,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2191.426075089373,1760.0,0.0,30158.0,7,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20105.333333333332,3,0,3_0,3_1 -4410,1.0,1.0,56.0,111,37,12,0.0,1827,0.0,0.0,100.0,0.0,2.0,6.0,0.0,2.0,1.5,2389.6892868662044,0.0,0.0,161960.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,107973.33333333333,5,0,5,5_0 -4411,1.0,21.0,52.0,112,54,71,2.0,1828,0.0,400.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2547.144744873139,1823.0,250.0,12648.0,1,3,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12648.0,2,0,2_1,2_1 -4412,1.0,1.0,42.0,112,47,60,1.0,1829,0.0,1300.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1772.880013288755,3208.0,21700.0,45177.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18823.75,3,0,3_0,3_1 -4413,5.0,8.0,39.0,111,85,50,0.0,183,0.0,250.0,0.0,79.0,1.0,6.0,4.0,6.0,3.1,1126.513130308353,1588.0,0.0,26081.0,7,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,8413.225806451612,1,0,1_1,1_0 -4414,10.0,12.0,35.0,111,52,33,0.0,1830,0.0,70.0,70.0,0.0,2.0,4.0,2.0,4.0,2.1,1573.2124493297938,0.0,0.0,36967.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,17603.333333333332,3,0,3_0,3_0 -4415,6.0,22.0,42.0,120,63,71,0.0,1832,0.0,550.0,300.0,0.0,2.0,6.0,4.0,6.0,3.3,1815.1057822039286,3120.0,0.0,41069.0,1,2,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,12445.151515151516,1,0,1_0,1_1 -4416,0.0,0.0,41.0,111,53,41,0.0,1833,0.0,0.0,0.0,385.0,2.0,3.0,2.0,4.0,2.1,2969.719159642675,0.0,0.0,32831.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15633.809523809523,2,0,2_1,2_0 -4417,4.0,11.0,65.0,111,74,20,0.0,1835,0.0,310.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1437.6225910079215,4508.0,0.0,21914.0,5,2,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,14609.333333333334,2,0,2_0,2_0 -4418,8.0,8.0,48.0,111,33,30,0.0,1836,0.0,0.0,0.0,497.0,2.0,4.0,3.0,5.0,2.8,3534.5706897861264,0.0,0.0,87623.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,31293.928571428572,5,0,5,5_0 -4419,0.0,7.0,58.0,111,75,60,0.0,1837,0.0,0.0,0.0,500.0,1.0,4.0,2.0,4.0,2.5,3742.110292751987,4077.0,0.0,37953.0,5,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15181.2,2,0,2_0,2_0 -4420,0.0,0.0,82.0,111,78,70,0.0,1838,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1795.8348381055202,0.0,0.0,13885.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13885.0,2,0,2_0,2_0 -4421,3.0,3.0,39.0,120,52,50,0.0,184,0.0,240.0,30.0,0.0,2.0,6.0,1.0,3.0,1.8,968.5259050217131,3418.0,0.0,39772.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,22095.555555555555,4,0,4_0,4_0 -4422,27.0,32.0,57.0,400,13,10,0.0,1840,0.0,0.0,0.0,0.0,2.0,7.0,0.0,4.0,2.5,1342.214275717479,3139.0,0.0,31740.0,1,1,0,0.0,5,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,12696.0,2,0,2_0,2_1 -4423,6.0,7.0,70.0,112,71,71,0.0,1842,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2185.4582443912504,0.0,0.0,20880.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,13920.0,2,0,2_0,2_1 -4424,6.0,7.0,68.0,111,75,70,0.0,1843,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2335.015822814846,1560.0,0.0,32041.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21360.666666666668,3,0,3_0,3_0 -4425,0.0,6.0,37.0,111,35,71,0.0,1844,0.0,0.0,0.0,352.0,2.0,3.0,0.0,2.0,1.5,3132.9871595913546,780.0,0.0,11056.0,1,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,7370.666666666667,1,0,1_0,1_0 -4426,10.0,12.0,62.0,120,78,70,0.0,1845,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1295.7579283487748,2605.0,0.0,19453.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19453.0,3,0,3_0,3_0 -4427,2.0,12.0,41.0,112,21,50,0.0,1847,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,1980.017963206541,0.0,0.0,23960.0,1,3,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,9215.384615384615,1,0,1_1,1_1 -4428,2.0,3.0,41.0,111,33,12,0.0,1848,0.0,0.0,0.0,886.0,1.0,5.0,3.0,5.0,2.4,1901.443521868711,902.0,0.0,70001.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,29167.083333333336,5,0,5,5_0 -4429,19.0,19.0,66.0,111,74,41,0.0,185,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2189.646317795377,8269.0,0.0,57734.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,38489.333333333336,5,0,5,5_0 -4430,7.0,9.0,67.0,111,75,50,0.0,1850,0.0,0.0,0.0,414.0,0.0,4.0,2.0,4.0,2.5,2807.797047414328,1959.0,0.0,21285.0,5,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,8514.0,1,0,1_0,1_0 -4431,0.0,0.0,43.0,111,54,20,0.0,1851,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,3748.993415480455,676.0,0.0,22680.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9450.0,1,0,1_1,1_0 -4432,6.0,12.0,43.0,111,52,60,0.0,1854,0.0,10.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,3262.934485488682,0.0,0.0,16144.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,7019.130434782609,1,0,1_1,1_0 -4433,0.0,0.0,82.0,221,78,70,0.0,1855,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3573.9651785215615,0.0,0.0,11771.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,7847.333333333333,1,0,1_0,1_0 -4434,16.0,19.0,44.0,400,56,50,0.0,1856,0.0,180.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3112.336814887061,1373.0,0.0,9082.0,4,3,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9082.0,1,0,1_1,1_0 -4435,0.0,3.0,52.0,112,42,33,0.0,1857,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2970.933774159511,3512.0,0.0,30086.0,1,2,8,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,30086.0,5,0,5,5_1 -4436,1.0,13.0,62.0,111,54,50,2.0,186,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1822.3104335059131,2600.0,2200.0,31772.0,1,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31772.0,5,0,5,5_0 -4437,0.0,0.0,26.0,221,85,71,0.0,1860,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,5091.603836238727,0.0,0.0,10900.0,7,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10900.0,1,0,1_1,1_0 -4438,7.0,7.0,71.0,111,74,31,0.0,1861,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1370.18660889268,5717.0,0.0,121721.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,81147.33333333333,5,0,5,5_0 -4439,3.0,20.0,46.0,111,46,71,0.0,1862,0.0,0.0,40.0,0.0,2.0,4.0,1.0,3.0,1.8,2377.8484950301563,0.0,0.0,40060.0,4,3,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,22255.555555555555,4,0,4_0,4_0 -4440,4.0,16.0,61.0,111,78,50,0.0,1863,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1889.9795826341067,1040.0,0.0,13487.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13487.0,2,0,2_0,2_0 -4441,7.0,9.0,55.0,111,22,70,0.0,1868,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2222.4638371795754,0.0,0.0,32960.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21973.333333333332,4,0,4_0,4_0 -4442,0.0,0.0,83.0,111,78,70,0.0,1869,0.0,0.0,0.0,338.0,0.0,2.0,0.0,1.0,1.0,3575.0594485061383,0.0,0.0,20677.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20677.0,3,0,3_0,3_0 -4443,8.0,16.0,42.0,112,63,31,0.0,187,0.0,140.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2945.6470652788253,1560.0,0.0,32913.0,1,2,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14310.000000000002,2,0,2_0,2_1 -4444,17.0,17.0,79.0,400,71,70,0.0,1870,0.0,10.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1699.5955038023478,2709.0,0.0,34824.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23216.0,4,0,4_0,4_1 -4445,10.0,13.0,51.0,221,55,60,0.0,1872,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2394.725197272252,2361.0,0.0,35778.0,1,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,23852.0,4,0,4_0,4_0 -4446,0.0,0.0,54.0,112,69,70,0.0,1873,0.0,0.0,0.0,0.0,2.0,2.0,0.0,3.0,2.0,2304.381340252547,0.0,0.0,23330.0,1,1,7,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11665.0,1,0,1_0,1_1 -4447,4.0,11.0,55.0,112,45,41,0.0,1874,0.0,192.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2027.3410390169547,2394.0,0.0,27300.0,1,3,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18200.0,3,0,3_0,3_1 -4448,4.0,4.0,75.0,111,72,70,0.0,1875,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2862.857869012877,2740.0,0.0,20065.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,13376.666666666666,2,0,2_0,2_0 -4449,3.0,4.0,37.0,111,38,31,0.0,1876,0.0,300.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2766.6705419007503,0.0,0.0,47461.0,1,1,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22600.47619047619,4,0,4_0,4_0 -4450,2.0,2.0,57.0,111,43,20,0.0,1877,400.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2132.71144202283,408.0,0.0,32741.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,32741.0,5,0,5,5_0 -4451,5.0,14.0,59.0,111,46,41,0.0,1879,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1442.1370494417372,0.0,0.0,57206.0,1,1,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,28603.0,4,0,4_0,4_0 -4452,2.0,7.0,21.0,111,63,50,0.0,1880,0.0,500.0,0.0,228.0,2.0,2.0,0.0,2.0,1.5,3634.644272733626,2080.0,0.0,19706.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13137.333333333334,2,0,2_1,2_0 -4453,0.0,0.0,67.0,111,77,41,0.0,1882,0.0,0.0,0.0,63.0,1.0,4.0,1.0,4.0,2.5,2990.0863580775576,1040.0,0.0,20474.0,5,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8189.6,1,0,1_1,1_0 -4454,0.0,0.0,79.0,120,71,71,0.0,1883,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3383.1561122068415,0.0,0.0,13232.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13232.0,2,0,2_0,2_1 -4455,0.0,0.0,43.0,111,68,50,0.0,1884,0.0,0.0,0.0,500.0,2.0,2.0,0.0,2.0,1.5,3688.521657604184,0.0,0.0,32932.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21954.666666666668,4,0,4_0,4_0 -4456,9.0,11.0,35.0,111,46,60,0.0,1885,0.0,0.0,650.0,0.0,2.0,3.0,0.0,2.0,1.5,1888.0852381420648,3276.0,0.0,22746.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,15164.0,2,0,2_1,2_0 -4457,4.0,4.0,64.0,111,78,70,0.0,1888,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2818.513083508687,2601.0,0.0,34860.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34860.0,5,0,5,5_0 -4458,16.0,21.0,59.0,112,78,50,0.0,189,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1069.5772437011892,0.0,0.0,23090.0,5,1,9,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,15393.333333333334,2,0,2_0,2_0 -4459,5.0,8.0,49.0,111,63,50,0.0,1891,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2332.0013833882354,2577.0,0.0,45930.0,1,2,8,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,19969.565217391308,3,0,3_0,3_0 -4460,3.0,3.0,44.0,111,46,10,0.0,1892,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3319.1454399728686,0.0,0.0,12154.0,1,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,12154.0,1,0,1_0,1_0 -4461,13.0,13.0,50.0,111,21,50,0.0,1893,0.0,0.0,50.0,0.0,2.0,3.0,0.0,2.0,1.5,3499.518242032156,0.0,0.0,66915.0,1,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,44610.0,5,0,5,5_0 -4462,1.0,10.0,45.0,111,56,50,2.0,1894,0.0,99999.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1597.9350416807208,2080.0,4700.0,16871.0,1,3,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12977.692307692307,2,0,2_1,2_0 -4463,11.0,11.0,58.0,211,43,10,0.0,1896,0.0,50.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1223.1240905512377,5927.0,0.0,57702.0,1,1,2,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,38468.0,5,0,5,5_0 -4464,0.0,0.0,27.0,111,46,31,0.0,1899,0.0,0.0,0.0,865.0,1.0,1.0,0.0,1.0,1.0,4447.466109800105,0.0,0.0,11359.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,11359.0,1,0,1_0,1_0 -4465,0.0,13.0,36.0,111,67,10,2.0,19,0.0,0.0,0.0,468.0,1.0,4.0,3.0,5.0,2.4,1957.3386844352506,2080.0,4000.0,15737.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,6557.083333333334,1,0,1_0,1_0 -4466,0.0,7.0,28.0,111,43,33,0.0,190,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,7492.119150756924,0.0,0.0,15153.0,4,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15153.0,2,0,2_0,2_0 -4467,14.0,14.0,88.0,120,78,70,0.0,1900,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2459.558228809661,0.0,0.0,16842.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16842.0,2,0,2_0,2_1 -4468,12.0,12.0,78.0,111,78,50,0.0,1901,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2117.9862497907534,2586.0,0.0,33618.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,33618.0,5,0,5,5_0 -4469,2.0,2.0,45.0,111,37,12,0.0,1902,0.0,100.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,2306.9361871324704,0.0,0.0,170838.0,1,1,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,61013.571428571435,5,0,5,5_0 -4470,6.0,16.0,63.0,111,77,42,0.0,1905,0.0,0.0,0.0,340.0,0.0,4.0,0.0,1.0,1.0,2576.3294506765155,3380.0,0.0,18697.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18697.0,3,0,3_0,3_0 -4471,3.0,4.0,30.0,300,62,43,0.0,1909,0.0,550.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3748.0020363583194,0.0,0.0,22370.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22370.0,4,0,4_0,4_1 -4472,1.0,1.0,42.0,111,42,60,0.0,1911,0.0,0.0,180.0,0.0,2.0,5.0,2.0,4.0,2.1,2214.6960053072435,5600.0,0.0,44457.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,21170.0,3,0,3_0,3_0 -4473,4.0,4.0,35.0,111,53,20,0.0,1912,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1298.0478190988058,3328.0,0.0,59038.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,32798.88888888889,5,0,5,5_0 -4474,1.0,5.0,58.0,111,48,50,2.0,1914,0.0,250.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1412.2599794617604,2938.0,15000.0,20849.0,1,1,7,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,20849.0,3,0,3_0,3_0 -4475,10.0,10.0,74.0,111,74,41,0.0,1915,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1511.9702299685894,0.0,0.0,72370.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,48246.666666666664,5,0,5,5_0 -4476,1.0,2.0,64.0,111,74,12,2.0,1917,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1482.7036900167482,3120.0,21000.0,61037.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,40691.333333333336,5,0,5,5_0 -4477,0.0,11.0,50.0,211,64,42,0.0,1918,0.0,0.0,210.0,0.0,1.0,2.0,0.0,1.0,1.0,2661.8717528234974,1903.0,0.0,19544.0,1,3,2,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19544.0,3,0,3_0,3_0 -4478,5.0,5.0,50.0,111,65,60,0.0,192,0.0,220.0,0.0,350.0,2.0,2.0,1.0,3.0,1.8,6262.460340101621,0.0,0.0,45392.0,1,3,8,6.0,4,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,25217.777777777777,4,0,4_0,4_0 -4479,0.0,0.0,84.0,111,74,20,0.0,1920,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2337.0816114453296,0.0,0.0,55073.0,5,1,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,55073.0,5,0,5,5_0 -4480,1.0,1.0,25.0,111,43,20,1.0,1924,0.0,250.0,0.0,385.0,1.0,3.0,0.0,1.0,1.0,3361.2098035069707,1300.0,14500.0,24128.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24128.0,4,0,4_0,4_0 -4481,1.0,17.0,48.0,112,38,20,2.0,1925,0.0,99999.0,0.0,0.0,2.0,6.0,4.0,6.0,3.1,1046.003786868399,3328.0,1800.0,70853.0,1,1,7,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,22855.8064516129,4,0,4_0,4_0 -4482,12.0,15.0,63.0,300,78,50,0.0,1926,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2484.3900239440472,0.0,0.0,13950.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13950.0,2,0,2_0,2_1 -4483,1.0,3.0,64.0,111,22,43,0.0,1927,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,5800.630383665267,4498.0,0.0,16499.0,5,1,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,9166.111111111111,1,0,1_0,1_0 -4484,0.0,0.0,61.0,111,52,71,1.0,1929,0.0,0.0,0.0,0.0,3.0,5.0,1.0,5.0,3.0,4203.516179794963,2392.0,10000.0,96086.0,1,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32028.666666666668,5,0,5,5_0 -4485,23.0,23.0,86.0,221,78,71,0.0,193,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,5162.07821372362,1560.0,0.0,27667.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18444.666666666668,3,0,3_0,3_0 -4486,0.0,0.0,86.0,112,77,70,0.0,1931,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2243.1064722878036,0.0,0.0,9937.0,5,4,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9937.0,1,0,1_0,1_1 -4487,0.0,13.0,24.0,112,53,20,0.0,1932,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2913.0544839761415,1560.0,0.0,34496.0,1,3,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,22997.333333333332,4,0,4_0,4_0 -4488,0.0,0.0,73.0,120,75,20,0.0,1933,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1501.6759153699043,0.0,0.0,24153.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16102.0,2,0,2_0,2_1 -4489,3.0,3.0,79.0,221,74,71,0.0,1935,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4268.515484307398,1236.0,0.0,40118.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,26745.333333333332,4,0,4_0,4_0 -4490,4.0,8.0,57.0,112,63,71,0.0,1938,0.0,750.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1813.1855138210651,2500.0,0.0,33760.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,16076.190476190475,2,0,2_1,2_0 -4491,3.0,5.0,53.0,111,62,42,0.0,194,0.0,1200.0,150.0,0.0,3.0,3.0,1.0,3.0,2.0,2724.877550287974,7800.0,0.0,53081.0,1,2,8,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,26540.5,4,0,4_0,4_0 -4492,8.0,10.0,42.0,112,34,20,0.0,1940,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,1651.4277027367818,2808.0,0.0,30894.0,1,2,6,0.0,2,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,19308.75,3,0,3_0,3_1 -4493,4.0,6.0,49.0,300,34,10,0.0,1941,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2613.0455993699843,3197.0,0.0,44440.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,44440.0,5,0,5,5_1 -4494,7.0,11.0,66.0,112,74,31,0.0,1943,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1523.1080311876758,0.0,0.0,9960.0,5,4,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9960.0,1,0,1_0,1_1 -4495,3.0,3.0,72.0,111,74,12,0.0,1944,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2514.9358486059123,3224.0,0.0,78890.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,52593.333333333336,5,0,5,5_0 -4496,3.0,10.0,53.0,112,63,50,0.0,1945,0.0,400.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2038.4528912351848,1977.0,0.0,36534.0,1,1,9,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24356.0,4,0,4_0,4_0 -4497,9.0,9.0,30.0,120,34,20,0.0,1946,0.0,190.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,1396.3644147531732,3490.0,0.0,60220.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28676.190476190473,4,0,4_0,4_1 -4498,0.0,0.0,75.0,111,77,71,0.0,1947,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4041.5501456789,0.0,0.0,13034.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13034.0,2,0,2_0,2_0 -4499,3.0,16.0,32.0,112,42,20,0.0,1948,0.0,100.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2183.3973947191403,5201.0,0.0,51212.0,1,2,6,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,21338.333333333336,3,0,3_0,3_1 -4500,0.0,0.0,67.0,111,77,50,0.0,1949,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3315.959928075298,0.0,0.0,14253.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14253.0,2,0,2_0,2_0 -4501,5.0,5.0,70.0,111,78,50,0.0,1951,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1677.0151725551343,2682.0,0.0,37160.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,24773.333333333332,4,0,4_0,4_0 -4502,1.0,2.0,48.0,111,22,20,2.0,1952,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1407.4542794390497,0.0,22000.0,69156.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,32931.42857142857,5,0,5,5_0 -4503,1.0,1.0,66.0,300,78,71,1.0,1953,0.0,0.0,0.0,370.0,0.0,3.0,0.0,1.0,1.0,3438.2204272905174,1040.0,55000.0,18096.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18096.0,3,0,3_0,3_1 -4504,0.0,0.0,61.0,111,86,12,0.0,1954,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2981.4401559910916,0.0,0.0,25846.0,6,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25846.0,4,0,4_0,4_0 -4505,3.0,3.0,66.0,111,75,41,0.0,1955,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1562.070328832235,0.0,0.0,15282.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15282.0,2,0,2_0,2_0 -4506,2.0,2.0,48.0,112,62,50,0.0,1956,0.0,200.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1631.0900095946777,0.0,0.0,16284.0,1,1,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16284.0,2,0,2_0,2_1 -4507,8.0,13.0,46.0,111,64,50,0.0,1957,0.0,99999.0,0.0,0.0,2.0,4.0,5.0,7.0,3.4,1376.9451709370053,3120.0,0.0,31870.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,9373.529411764706,1,0,1_1,1_0 -4508,13.0,13.0,63.0,111,74,50,0.0,1958,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,838.9478326382956,3390.0,0.0,42899.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,28599.333333333332,4,0,4_0,4_0 -4509,8.0,10.0,74.0,120,77,71,0.0,196,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,5417.544892900689,0.0,0.0,30335.0,5,1,0,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20223.333333333332,3,0,3_0,3_0 -4510,1.0,10.0,47.0,112,43,33,2.0,1961,0.0,530.0,99999.0,0.0,2.0,7.0,3.0,5.0,3.0,2333.767248980385,2341.0,3300.0,56861.0,1,1,5,0.0,4,5.0,0.0,1.0,1,0,0,0,0,0,2.0,3.0,18953.666666666668,3,0,3_0,3_1 -4511,15.0,15.0,53.0,111,34,30,0.0,1962,0.0,0.0,150.0,0.0,2.0,7.0,0.0,2.0,1.5,1539.7693496644854,0.0,0.0,67585.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,45056.666666666664,5,0,5,5_0 -4512,21.0,29.0,78.0,112,75,50,0.0,1963,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1711.7091980582418,0.0,0.0,43766.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,29177.333333333332,5,0,5,5_1 -4513,9.0,9.0,80.0,120,71,71,0.0,1965,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3825.7805961845966,0.0,0.0,20597.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13731.333333333334,2,0,2_0,2_1 -4514,1.0,5.0,25.0,111,43,20,0.0,1966,0.0,300.0,0.0,715.0,2.0,3.0,0.0,2.0,1.5,2763.4249729998555,3549.0,0.0,41594.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27729.333333333332,4,0,4_0,4_0 -4515,2.0,2.0,60.0,221,78,70,0.0,1967,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1474.0324055547333,2600.0,0.0,52443.0,5,2,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,34962.0,5,0,5,5_0 -4516,2.0,10.0,36.0,111,63,50,0.0,1968,0.0,0.0,400.0,0.0,1.0,3.0,0.0,1.0,1.0,2442.6601893408797,2600.0,0.0,13815.0,1,1,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,13815.0,2,0,2_0,2_0 -4517,15.0,19.0,83.0,112,71,70,0.0,1969,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2042.6844755730424,0.0,0.0,14320.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14320.0,2,0,2_0,2_1 -4518,7.0,7.0,72.0,400,77,70,0.0,1970,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2078.779141374056,0.0,0.0,16289.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16289.0,2,0,2_0,2_1 -4519,6.0,6.0,71.0,112,74,60,0.0,1971,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1702.0883422565312,1820.0,0.0,50448.0,5,1,6,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,33632.0,5,0,5,5_1 -4520,3.0,9.0,59.0,112,52,50,0.0,1973,0.0,100.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1218.198203195684,0.0,0.0,33090.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22060.0,4,0,4_0,4_1 -4521,0.0,0.0,69.0,112,77,20,0.0,1976,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2883.4030132772364,2185.0,0.0,11996.0,5,3,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11996.0,1,0,1_1,1_0 -4522,0.0,0.0,33.0,111,54,60,0.0,1977,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3943.1616321212814,1144.0,0.0,88200.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,58800.0,5,0,5,5_0 -4523,0.0,0.0,74.0,111,77,70,0.0,1980,0.0,0.0,0.0,360.0,0.0,4.0,0.0,1.0,1.0,3073.252259963689,0.0,0.0,19460.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19460.0,3,0,3_0,3_0 -4524,0.0,11.0,48.0,111,56,71,0.0,1981,0.0,0.0,0.0,82.0,2.0,5.0,3.0,4.0,2.1,2445.563432032566,520.0,0.0,36907.0,4,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,17574.761904761905,3,0,3_1,3_0 -4525,5.0,5.0,52.0,111,37,60,0.0,1983,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2566.2363116691304,0.0,0.0,43748.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,21874.0,4,0,4_0,4_0 -4526,1.0,1.0,71.0,112,78,50,1.0,1984,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1203.4354965269504,0.0,24000.0,33614.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22409.333333333332,4,0,4_0,4_1 -4527,3.0,13.0,27.0,111,35,20,0.0,1985,0.0,0.0,0.0,450.0,2.0,4.0,0.0,2.0,1.5,2898.17901040222,5890.0,0.0,32863.0,4,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21908.666666666668,4,0,4_0,4_0 -4528,4.0,10.0,62.0,111,78,71,0.0,1987,0.0,0.0,0.0,580.0,0.0,3.0,1.0,3.0,2.0,3145.165219357374,1560.0,0.0,13846.0,5,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,6923.0,1,0,1_1,1_0 -4529,7.0,7.0,46.0,111,37,41,0.0,1989,0.0,75.0,0.0,444.0,1.0,3.0,1.0,2.0,1.5,3000.940124795162,0.0,0.0,49527.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,33018.0,5,0,5,5_0 -4530,10.0,12.0,66.0,400,77,41,0.0,1990,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,6663.338709148836,2875.0,0.0,15389.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15389.0,2,0,2_0,2_0 -4531,6.0,12.0,47.0,111,56,60,0.0,1991,0.0,500.0,0.0,0.0,2.0,5.0,0.0,5.0,3.0,1510.825289593415,2431.0,0.0,29542.0,1,3,9,7.0,5,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,9847.333333333334,1,0,1_1,1_0 -4532,15.0,17.0,68.0,111,74,41,0.0,1992,0.0,0.0,0.0,760.0,0.0,5.0,0.0,2.0,1.5,1925.0969944750232,2080.0,0.0,27027.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18018.0,3,0,3_0,3_0 -4533,0.0,0.0,55.0,111,68,71,0.0,1993,0.0,0.0,0.0,391.0,1.0,5.0,0.0,1.0,1.0,2978.4534928140965,0.0,0.0,16360.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16360.0,2,0,2_0,2_0 -4534,3.0,10.0,28.0,112,52,50,0.0,1995,0.0,560.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2232.3082087831835,5201.0,0.0,26373.0,1,2,7,0.0,3,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,17582.0,3,0,3_0,3_1 -4535,8.0,8.0,67.0,112,78,70,0.0,1996,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2567.619354953218,0.0,0.0,25103.0,5,1,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16735.333333333332,2,0,2_0,2_0 -4536,2.0,18.0,34.0,112,43,33,0.0,1997,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1663.2026428190782,5325.0,0.0,88047.0,1,2,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,41927.142857142855,5,0,5,5_0 -4537,0.0,1.0,71.0,300,75,41,1.0,1998,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1440.926334194772,4504.0,20500.0,44444.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,29629.333333333332,5,0,5,5_1 -4538,4.0,8.0,57.0,112,22,50,0.0,1999,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1634.4614167049026,1560.0,0.0,-2518.0,1,4,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,-1678.6666666666667,1,0,1_0,1_1 -4539,9.0,13.0,77.0,300,71,70,0.0,2,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,656.7065594434698,0.0,0.0,26566.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17710.666666666668,3,0,3_0,3_1 -4540,1.0,16.0,56.0,112,13,41,0.0,20,0.0,1000.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,2315.6380812529665,0.0,0.0,39775.0,1,1,9,0.0,2,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,19887.5,3,0,3_0,3_1 -4541,2.0,2.0,34.0,221,47,31,0.0,2001,0.0,56.0,0.0,353.0,1.0,4.0,0.0,1.0,1.0,6901.72750457334,3013.0,0.0,34598.0,1,4,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,34598.0,5,0,5,5_0 -4542,2.0,2.0,63.0,112,74,50,0.0,2002,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,791.475034861362,3855.0,0.0,99398.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,66265.33333333333,5,0,5,5_1 -4543,3.0,10.0,65.0,111,74,70,0.0,2003,0.0,0.0,0.0,590.0,1.0,2.0,0.0,2.0,1.5,1834.4144089118427,0.0,0.0,44814.0,5,3,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,29876.0,5,0,5,5_0 -4544,0.0,0.0,54.0,111,68,71,0.0,2004,0.0,0.0,0.0,268.0,1.0,3.0,1.0,2.0,1.3,2401.073368598065,0.0,0.0,13760.0,4,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10584.615384615385,1,0,1_0,1_0 -4545,8.0,15.0,56.0,111,46,50,0.0,2006,0.0,0.0,100.0,0.0,1.0,3.0,1.0,2.0,1.3,2763.213162922315,0.0,0.0,35454.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,27272.30769230769,4,0,4_0,4_0 -4546,11.0,11.0,36.0,112,43,33,0.0,2008,0.0,304.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1379.8995082009496,1300.0,0.0,53200.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25333.333333333332,4,0,4_0,4_0 -4547,8.0,8.0,78.0,111,74,71,0.0,2015,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3603.2088050407006,0.0,0.0,111612.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,111612.0,5,0,5,5_0 -4548,1.0,8.0,52.0,300,55,41,2.0,2016,0.0,0.0,318.0,0.0,1.0,4.0,0.0,3.0,2.0,2264.6654833716316,1874.0,3200.0,42761.0,1,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21380.5,3,0,3_0,3_1 -4549,17.0,17.0,73.0,111,75,60,0.0,2019,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3122.059164126389,1457.0,0.0,17777.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17777.0,3,0,3_0,3_0 -4550,13.0,13.0,46.0,112,43,20,0.0,2020,100.0,0.0,100.0,0.0,2.0,3.0,1.0,3.0,1.8,1787.430834643743,1994.0,0.0,56807.0,1,2,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,31559.444444444445,5,0,5,5_0 -4551,3.0,11.0,47.0,112,42,43,0.0,2021,0.0,400.0,200.0,0.0,3.0,6.0,3.0,5.0,2.8,2231.159505155138,2080.0,0.0,35760.0,1,1,7,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,2.0,2.0,12771.428571428572,2,0,2_0,2_1 -4552,5.0,5.0,70.0,300,11,33,0.0,2022,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3052.0573343214746,1971.0,0.0,50455.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,33636.666666666664,5,0,5,5_1 -4553,3.0,8.0,50.0,112,62,50,0.0,2023,0.0,0.0,300.0,214.0,1.0,5.0,1.0,3.0,2.0,1784.4527124706358,1586.0,0.0,22966.0,1,3,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,11483.0,1,0,1_1,1_0 -4554,3.0,3.0,78.0,211,77,70,0.0,2025,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1508.8689436035922,0.0,0.0,26146.0,5,1,3,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17430.666666666668,3,0,3_0,3_0 -4555,2.0,2.0,49.0,111,22,41,0.0,2027,0.0,170.0,700.0,0.0,2.0,5.0,2.0,4.0,2.3,2314.9123478053175,10273.0,0.0,93191.0,1,2,6,4.0,4,4.0,0.0,1.0,0,0,1,0,0,0,2.0,2.0,40517.82608695653,5,0,5,5_0 -4556,5.0,21.0,40.0,111,63,50,0.0,203,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1803.795943060611,3380.0,0.0,46894.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22330.47619047619,4,0,4_0,4_0 -4557,7.0,8.0,65.0,300,78,70,0.0,2030,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1219.1313536999733,3120.0,0.0,23089.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15392.666666666666,2,0,2_0,2_1 -4558,0.0,0.0,38.0,111,52,50,0.0,2031,0.0,0.0,0.0,307.0,1.0,2.0,0.0,1.0,1.0,2910.6810525370556,0.0,0.0,16932.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16932.0,3,0,3_1,3_0 -4559,12.0,12.0,61.0,120,68,50,0.0,2033,0.0,450.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1569.7435752285385,2486.0,0.0,29320.0,5,2,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,29320.0,5,0,5,5_0 -4560,12.0,12.0,62.0,111,42,20,0.0,2036,0.0,440.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1924.2503904486305,3187.0,0.0,55016.0,1,2,9,7.0,4,4.0,0.0,0.0,0,0,0,1,0,0,1.0,3.0,27508.0,4,0,4_0,4_0 -4561,0.0,0.0,71.0,112,77,70,0.0,2039,0.0,0.0,0.0,78.0,0.0,3.0,0.0,1.0,1.0,2120.7770849394246,0.0,0.0,14878.0,5,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14878.0,2,0,2_1,2_0 -4562,1.0,3.0,27.0,112,46,42,0.0,204,0.0,1220.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3304.5376843122144,512.0,0.0,50941.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28300.555555555555,4,0,4_0,4_1 -4563,3.0,21.0,52.0,111,62,50,0.0,2040,0.0,20.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2177.5103913848857,0.0,0.0,47636.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,23818.0,4,0,4_0,4_0 -4564,1.0,1.0,57.0,112,48,50,0.0,2041,0.0,550.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,4155.208492757215,2830.0,0.0,30372.0,1,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20248.0,3,0,3_0,3_1 -4565,8.0,12.0,55.0,212,34,31,0.0,2044,0.0,0.0,40.0,0.0,1.0,8.0,0.0,2.0,1.5,1377.529537101352,0.0,0.0,50840.0,1,1,2,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,33893.333333333336,5,0,5,5_1 -4566,0.0,0.0,42.0,211,68,50,0.0,2046,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1886.5808172132975,0.0,0.0,21814.0,4,3,3,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12118.888888888889,1,0,1_1,1_0 -4567,0.0,18.0,36.0,120,67,71,0.0,2047,0.0,250.0,0.0,590.0,2.0,3.0,2.0,4.0,2.1,3881.280221706122,0.0,0.0,37641.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17924.285714285714,3,0,3_0,3_1 -4568,10.0,10.0,55.0,111,47,50,0.0,205,0.0,0.0,300.0,0.0,3.0,4.0,1.0,3.0,2.0,2377.7807919462157,7141.0,0.0,72209.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,36104.5,5,0,5,5_0 -4569,0.0,0.0,65.0,111,86,71,0.0,2050,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5154.730301909687,0.0,0.0,7090.0,6,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7090.0,1,0,1_1,1_0 -4570,0.0,0.0,89.0,112,78,50,0.0,2051,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3183.1960141931527,0.0,0.0,19040.0,5,4,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12693.333333333334,2,0,2_0,2_1 -4571,9.0,9.0,60.0,111,21,44,0.0,2052,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3386.4074615898953,0.0,0.0,32740.0,1,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,32740.0,5,0,5,5_0 -4572,4.0,4.0,53.0,112,54,31,0.0,2053,0.0,200.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1967.4412910331587,0.0,0.0,64355.0,1,1,10,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,42903.333333333336,5,0,5,5_1 -4573,3.0,3.0,83.0,111,78,50,0.0,2055,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2634.3882768287426,1196.0,0.0,51410.0,5,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25705.0,4,0,4_0,4_0 -4574,2.0,2.0,30.0,111,54,31,0.0,2056,0.0,300.0,300.0,0.0,2.0,4.0,1.0,3.0,1.8,1849.8247806303782,0.0,0.0,40466.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22481.11111111111,4,0,4_0,4_0 -4575,3.0,3.0,39.0,111,38,31,0.0,2057,0.0,200.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3408.156706292697,884.0,0.0,19418.0,4,2,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,19418.0,3,0,3_0,3_0 -4576,3.0,3.0,32.0,112,37,31,0.0,2058,0.0,600.0,5.0,0.0,2.0,5.0,1.0,3.0,1.8,1704.040242518112,5200.0,0.0,68289.0,1,2,9,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,37938.333333333336,5,0,5,5_0 -4577,2.0,20.0,48.0,111,48,50,0.0,2059,0.0,0.0,180.0,0.0,2.0,4.0,0.0,2.0,1.5,2004.1753254907571,1248.0,0.0,59805.0,1,2,8,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,39870.0,5,0,5,5_0 -4578,4.0,4.0,57.0,221,62,42,0.0,206,0.0,900.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2666.131268027621,1833.0,0.0,45572.0,1,1,1,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,30381.333333333332,5,0,5,5_0 -4579,19.0,29.0,76.0,111,75,50,0.0,2060,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2496.9542485681222,0.0,0.0,43505.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29003.333333333332,5,0,5,5_0 -4580,6.0,7.0,80.0,111,71,71,0.0,2061,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2180.318464664063,2116.0,0.0,28281.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18854.0,3,0,3_0,3_0 -4581,2.0,2.0,76.0,111,74,12,0.0,2062,0.0,0.0,0.0,670.0,0.0,5.0,0.0,1.0,1.0,3390.8014083273024,1855.0,0.0,73305.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,73305.0,5,0,5,5_0 -4582,5.0,8.0,45.0,111,63,71,0.0,2064,0.0,99999.0,0.0,0.0,3.0,4.0,4.0,6.0,3.3,2661.9340547524826,0.0,0.0,39351.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,11924.545454545456,1,0,1_1,1_0 -4583,1.0,1.0,37.0,300,54,20,0.0,2065,0.0,350.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1790.5946903224565,1040.0,0.0,44334.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21111.42857142857,3,0,3_0,3_1 -4584,7.0,7.0,31.0,111,62,43,0.0,2066,0.0,0.0,0.0,411.0,2.0,4.0,1.0,3.0,1.8,2708.5781886325485,0.0,0.0,38328.0,1,3,7,5.0,4,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,21293.333333333332,3,0,3_0,3_0 -4585,9.0,9.0,68.0,111,77,70,0.0,2067,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1796.1149424744222,1555.0,0.0,17790.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17790.0,3,0,3_0,3_0 -4586,6.0,12.0,63.0,112,78,70,0.0,2068,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3749.524879679919,1560.0,0.0,21549.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14366.0,2,0,2_0,2_1 -4587,8.0,10.0,63.0,112,77,50,0.0,207,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2042.8681552660496,2954.0,0.0,29779.0,5,4,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19852.666666666668,3,0,3_0,3_1 -4588,1.0,5.0,61.0,112,75,42,2.0,2070,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2300.113979972437,0.0,6400.0,23748.0,5,1,7,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,15832.0,2,0,2_0,2_0 -4589,11.0,11.0,57.0,111,46,41,0.0,2073,0.0,1100.0,80.0,520.0,2.0,3.0,0.0,2.0,1.5,3227.699543879433,3250.0,0.0,25247.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16831.333333333332,2,0,2_0,2_0 -4590,9.0,9.0,86.0,400,75,70,0.0,2074,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2407.90105081007,0.0,0.0,24350.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16233.333333333334,2,0,2_0,2_1 -4591,2.0,13.0,34.0,112,63,43,0.0,2075,0.0,0.0,420.0,0.0,2.0,7.0,2.0,4.0,2.1,2980.3497816108857,1905.0,0.0,49410.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23528.571428571428,4,0,4_0,4_1 -4592,7.0,7.0,38.0,111,37,10,0.0,2076,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1446.2758728640958,0.0,0.0,14265.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,8915.625,1,0,1_0,1_0 -4593,18.0,18.0,81.0,112,78,50,0.0,2077,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,718.7936965152753,0.0,0.0,46942.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,31294.666666666668,5,0,5,5_1 -4594,7.0,11.0,48.0,111,38,31,0.0,2078,0.0,0.0,0.0,0.0,3.0,6.0,3.0,5.0,2.8,1532.6701880615497,0.0,0.0,104125.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,37187.5,5,0,5,5_0 -4595,9.0,12.0,42.0,300,53,50,0.0,2079,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2010.8842010201702,0.0,0.0,38634.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18397.142857142855,3,0,3_0,3_1 -4596,0.0,0.0,78.0,112,78,71,0.0,208,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3138.3216430832576,0.0,0.0,16775.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16775.0,2,0,2_0,2_0 -4597,0.0,13.0,30.0,111,54,50,0.0,2080,0.0,0.0,0.0,269.0,1.0,2.0,0.0,1.0,1.0,2337.311737176189,0.0,0.0,15474.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,15474.0,2,0,2_1,2_0 -4598,8.0,13.0,43.0,112,65,42,0.0,2081,0.0,400.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2027.755237440794,0.0,0.0,49244.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,20518.333333333336,3,0,3_1,3_1 -4599,0.0,6.0,62.0,111,75,30,0.0,2082,0.0,0.0,0.0,374.0,0.0,1.0,0.0,1.0,1.0,2795.8725245855608,0.0,0.0,21744.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21744.0,4,0,4_0,4_0 -4600,4.0,14.0,38.0,112,52,41,0.0,2083,0.0,0.0,350.0,403.0,2.0,4.0,2.0,4.0,2.5,2333.086372206143,2860.0,0.0,34550.0,1,3,8,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,13820.0,2,0,2_0,2_1 -4601,3.0,4.0,44.0,112,48,71,0.0,2085,0.0,250.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,6267.394745231037,7176.0,0.0,55679.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22271.6,4,0,4_0,4_1 -4602,0.0,0.0,27.0,111,35,10,0.0,2086,0.0,0.0,0.0,570.0,1.0,1.0,0.0,1.0,1.0,4435.347368821452,0.0,0.0,21356.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21356.0,3,0,3_0,3_0 -4603,0.0,9.0,23.0,111,84,31,0.0,2087,0.0,350.0,0.0,420.0,0.0,2.0,0.0,1.0,1.0,3655.028669159827,0.0,0.0,6084.0,3,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,6084.0,1,0,1_0,1_0 -4604,1.0,10.0,33.0,112,46,41,2.0,2089,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,1477.1606724403766,2080.0,6000.0,34843.0,1,2,6,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19357.222222222223,3,0,3_0,3_0 -4605,0.0,0.0,68.0,112,75,43,0.0,2090,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2752.962325657016,0.0,0.0,47667.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,47667.0,5,0,5,5_1 -4606,10.0,23.0,68.0,111,75,70,0.0,2091,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,891.8202781660534,0.0,0.0,27823.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18548.666666666668,3,0,3_0,3_0 -4607,12.0,20.0,43.0,221,85,50,0.0,2093,0.0,0.0,0.0,60.0,1.0,4.0,1.0,2.0,1.5,6156.016559862211,0.0,0.0,13300.0,7,3,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,8866.666666666666,1,0,1_1,1_0 -4608,2.0,2.0,80.0,112,78,70,0.0,2094,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1440.0265661613607,3650.0,0.0,19555.0,5,2,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13036.666666666666,2,0,2_0,2_0 -4609,5.0,5.0,56.0,111,45,41,0.0,2095,0.0,250.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3419.872582096836,2340.0,0.0,20467.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20467.0,3,0,3_0,3_0 -4610,1.0,9.0,51.0,300,52,71,2.0,2098,0.0,550.0,20.0,0.0,3.0,5.0,0.0,4.0,2.5,1367.622762272923,5486.0,5200.0,57392.0,1,3,0,0.0,5,4.0,1.0,1.0,1,0,0,0,0,1,1.0,3.0,22956.8,4,0,4_1,4_1 -4611,0.0,0.0,27.0,111,46,43,0.0,2099,0.0,0.0,0.0,133.0,1.0,3.0,0.0,1.0,1.0,2620.0837715623243,0.0,0.0,8221.0,4,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8221.0,1,0,1_1,1_0 -4612,3.0,3.0,45.0,111,38,41,0.0,2100,0.0,20.0,0.0,0.0,1.0,7.0,3.0,5.0,2.8,1861.2168736520568,3120.0,0.0,89289.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,31888.928571428572,5,0,5,5_0 -4613,6.0,6.0,39.0,112,34,10,0.0,2102,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1964.0645911659292,2726.0,0.0,32625.0,1,2,6,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,32625.0,5,0,5,5_1 -4614,10.0,10.0,56.0,112,33,50,0.0,2103,0.0,320.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1342.9514581153292,1225.0,0.0,55520.0,1,2,10,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,55520.0,5,0,5,5_0 -4615,5.0,16.0,67.0,111,47,10,0.0,2104,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2839.647971951228,3692.0,0.0,68771.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,45847.333333333336,5,0,5,5_0 -4616,0.0,0.0,60.0,111,78,50,0.0,2105,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3862.9712540192095,0.0,0.0,15025.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15025.0,2,0,2_1,2_0 -4617,3.0,3.0,60.0,111,77,50,0.0,2109,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3268.222751524946,2912.0,0.0,68481.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,45654.0,5,0,5,5_0 -4618,2.0,5.0,41.0,111,37,12,0.0,211,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3237.037897373187,3597.0,0.0,37502.0,1,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,37502.0,5,0,5,5_0 -4619,4.0,4.0,77.0,120,71,71,0.0,2111,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3416.257386381267,2915.0,0.0,14792.0,5,1,0,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,9861.333333333334,1,0,1_0,1_0 -4620,8.0,14.0,49.0,120,46,44,0.0,2112,0.0,0.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,4154.8593197969085,3588.0,0.0,50634.0,1,3,0,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,33756.0,5,0,5,5_0 -4621,0.0,2.0,34.0,111,43,41,0.0,2113,0.0,800.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2111.281871757608,6735.0,0.0,41134.0,1,2,7,6.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,19587.619047619046,3,0,3_0,3_0 -4622,10.0,17.0,33.0,111,63,50,0.0,2114,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2075.5546037635477,0.0,0.0,20163.0,1,2,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20163.0,3,0,3_0,3_0 -4623,4.0,8.0,58.0,300,31,10,0.0,2116,0.0,600.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1374.7929713071355,1352.0,0.0,167948.0,1,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,111965.33333333333,5,0,5,5_1 -4624,11.0,14.0,38.0,300,62,60,0.0,2117,0.0,87.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1188.9508742053688,4605.0,0.0,29872.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,12446.666666666668,1,0,1_0,1_1 -4625,10.0,11.0,54.0,111,52,60,0.0,2119,0.0,50.0,0.0,289.0,1.0,4.0,0.0,1.0,1.0,1453.420183317483,0.0,0.0,17910.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,17910.0,3,0,3_0,3_0 -4626,0.0,0.0,60.0,111,77,71,0.0,212,0.0,0.0,0.0,144.0,0.0,5.0,0.0,1.0,1.0,4096.874689197337,0.0,0.0,13990.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13990.0,2,0,2_1,2_0 -4627,0.0,0.0,47.0,111,52,41,0.0,2120,0.0,0.0,0.0,109.0,1.0,2.0,0.0,1.0,1.0,3772.8745093685084,0.0,0.0,8253.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8253.0,1,0,1_1,1_0 -4628,9.0,16.0,35.0,112,47,41,0.0,2122,0.0,99999.0,30.0,0.0,2.0,6.0,1.0,3.0,1.8,1931.2658319091017,0.0,0.0,46005.0,1,2,8,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,25558.333333333332,4,0,4_0,4_0 -4629,11.0,11.0,22.0,111,47,42,0.0,2123,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3535.1444771211854,0.0,0.0,15530.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15530.0,2,0,2_0,2_0 -4630,2.0,2.0,40.0,300,81,71,0.0,2124,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,2732.086022799751,0.0,0.0,15625.0,4,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,9765.625,1,0,1_1,1_1 -4631,3.0,3.0,55.0,111,56,50,0.0,2125,0.0,30.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2171.221124827406,0.0,0.0,29039.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19359.333333333332,3,0,3_0,3_0 -4632,8.0,8.0,81.0,222,77,70,0.0,2126,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2099.9489353715667,0.0,0.0,20183.0,5,1,1,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20183.0,3,0,3_0,3_1 -4633,0.0,0.0,30.0,111,54,20,0.0,2127,0.0,0.0,0.0,800.0,2.0,2.0,2.0,4.0,2.1,2676.791196523609,0.0,0.0,55493.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26425.238095238095,4,0,4_0,4_0 -4634,1.0,2.0,41.0,221,21,50,0.0,2128,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,4024.6514442709645,0.0,0.0,56971.0,1,2,1,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,24770.000000000004,4,0,4_0,4_0 -4635,6.0,8.0,85.0,111,72,71,0.0,2129,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2880.9663553459022,0.0,0.0,12623.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,8415.333333333334,1,0,1_0,1_0 -4636,9.0,33.0,70.0,400,77,71,0.0,2131,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2257.692990377048,0.0,0.0,34715.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,23143.333333333332,4,0,4_0,4_1 -4637,9.0,10.0,63.0,300,77,71,0.0,2132,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2566.051285764478,1817.0,0.0,37712.0,5,1,0,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,25141.333333333332,4,0,4_0,4_0 -4638,5.0,6.0,47.0,111,52,41,0.0,2133,0.0,40.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4168.82379239628,2080.0,0.0,20434.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13622.666666666666,2,0,2_1,2_0 -4639,2.0,12.0,47.0,111,64,71,0.0,2134,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,5950.286001672486,0.0,0.0,14780.0,4,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14780.0,2,0,2_1,2_0 -4640,4.0,4.0,74.0,221,74,50,0.0,2135,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2697.4637649250926,1181.0,0.0,51368.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,34245.333333333336,5,0,5,5_0 -4641,3.0,13.0,48.0,221,52,60,0.0,2137,0.0,0.0,220.0,0.0,1.0,5.0,0.0,1.0,1.0,1690.1786032961857,1352.0,0.0,9873.0,4,4,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,9873.0,1,0,1_1,1_0 -4642,0.0,0.0,65.0,111,75,41,0.0,2138,0.0,0.0,0.0,456.0,0.0,2.0,0.0,1.0,1.0,3156.3828860899316,0.0,0.0,23690.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23690.0,4,0,4_0,4_0 -4643,9.0,9.0,84.0,112,86,41,0.0,2140,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2622.2124389484025,0.0,0.0,29818.0,6,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,29818.0,5,0,5,5_1 -4644,2.0,2.0,48.0,111,54,41,0.0,2141,0.0,800.0,280.0,0.0,3.0,6.0,2.0,4.0,2.5,1501.9807676368507,8999.0,0.0,86450.0,1,1,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,34580.0,5,0,5,5_0 -4645,0.0,0.0,55.0,111,55,50,0.0,2142,0.0,0.0,0.0,350.0,1.0,2.0,0.0,1.0,1.0,2958.693848736322,0.0,0.0,25432.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25432.0,4,0,4_0,4_0 -4646,5.0,12.0,63.0,400,78,70,0.0,2143,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2201.2914005639614,5084.0,0.0,25749.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17166.0,3,0,3_0,3_1 -4647,0.0,0.0,68.0,111,74,33,0.0,2144,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3966.623143313943,0.0,0.0,33676.0,5,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33676.0,5,0,5,5_0 -4648,21.0,21.0,83.0,111,75,60,0.0,2146,0.0,0.0,0.0,633.0,0.0,1.0,0.0,1.0,1.0,4489.879639801183,0.0,0.0,30066.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30066.0,5,0,5,5_0 -4649,4.0,5.0,60.0,111,75,50,0.0,2148,0.0,0.0,50.0,0.0,0.0,3.0,0.0,1.0,1.0,2116.8990118495976,2363.0,0.0,25620.0,5,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,25620.0,4,0,4_0,4_0 -4650,4.0,5.0,70.0,211,74,41,0.0,2149,0.0,0.0,0.0,800.0,0.0,4.0,0.0,2.0,1.5,1269.1576427226823,2340.0,0.0,48128.0,5,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,32085.333333333332,5,0,5,5_0 -4651,1.0,1.0,73.0,111,77,44,1.0,215,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2971.561461348498,0.0,10500.0,34566.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,34566.0,5,0,5,5_0 -4652,1.0,14.0,58.0,400,52,70,0.0,2150,0.0,150.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1915.040950808239,1560.0,0.0,12914.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12914.0,2,0,2_1,2_1 -4653,4.0,4.0,60.0,111,74,30,0.0,2151,0.0,0.0,250.0,0.0,1.0,4.0,0.0,2.0,1.5,3235.0515717231924,184.0,0.0,67267.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,44844.666666666664,5,0,5,5_0 -4654,3.0,3.0,43.0,111,47,50,0.0,2153,0.0,0.0,0.0,367.0,1.0,3.0,0.0,1.0,1.0,3834.801479569259,1747.0,0.0,14630.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,14630.0,2,0,2_0,2_0 -4655,1.0,13.0,33.0,111,67,42,2.0,2154,0.0,0.0,20.0,108.0,1.0,4.0,3.0,5.0,2.4,2649.9830933039702,1820.0,1000.0,30536.0,1,3,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,12723.333333333334,2,0,2_1,2_0 -4656,6.0,6.0,60.0,111,74,44,0.0,2159,0.0,200.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2077.9771194295395,2482.0,0.0,58710.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,39140.0,5,0,5,5_0 -4657,1.0,21.0,40.0,112,67,50,0.0,216,0.0,70.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1916.4669431990758,0.0,0.0,42387.0,1,1,8,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,28258.0,4,0,4_0,4_1 -4658,27.0,27.0,50.0,221,47,50,0.0,2160,0.0,350.0,10.0,0.0,3.0,7.0,1.0,3.0,2.0,1953.4197248443954,1771.0,0.0,63145.0,1,2,1,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,31572.5,5,0,5,5_0 -4659,1.0,1.0,78.0,300,78,71,0.0,2161,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2854.2387426156815,0.0,0.0,17730.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11820.0,1,0,1_0,1_1 -4660,0.0,0.0,40.0,111,63,50,0.0,2163,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3158.8430567039923,0.0,0.0,15868.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15868.0,2,0,2_1,2_0 -4661,0.0,0.0,56.0,111,74,50,0.0,2165,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4207.818737898315,0.0,0.0,10015.0,7,1,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10015.0,1,0,1_0,1_0 -4662,0.0,0.0,49.0,111,67,71,0.0,2166,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2534.665729550742,0.0,0.0,8263.0,4,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8263.0,1,0,1_1,1_0 -4663,6.0,10.0,42.0,221,63,71,0.0,2167,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2346.531451861893,2080.0,0.0,26278.0,1,1,1,3.0,4,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,11425.217391304348,1,0,1_0,1_0 -4664,0.0,4.0,47.0,112,53,60,2.0,2168,0.0,5.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,7470.848367400091,0.0,13000.0,34600.0,1,4,9,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23066.666666666668,4,0,4_0,4_0 -4665,1.0,1.0,62.0,112,56,20,0.0,2169,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2566.3415350184137,2367.0,0.0,27786.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27786.0,4,0,4_0,4_1 -4666,3.0,3.0,52.0,111,21,50,0.0,217,0.0,36.0,180.0,0.0,3.0,6.0,1.0,3.0,2.0,2234.490856360785,0.0,0.0,37256.0,1,1,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18628.0,3,0,3_0,3_0 -4667,8.0,9.0,29.0,211,42,20,0.0,2171,0.0,600.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1635.4954107875974,2444.0,0.0,34692.0,1,2,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,34692.0,5,0,5,5_0 -4668,6.0,8.0,57.0,111,46,70,0.0,2172,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2771.238047368578,3588.0,0.0,57910.0,1,4,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38606.666666666664,5,0,5,5_0 -4669,0.0,18.0,23.0,111,42,20,0.0,2173,0.0,0.0,10.0,470.0,2.0,2.0,0.0,2.0,1.5,3299.8194642027115,1353.0,0.0,18635.0,3,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,12423.333333333334,1,0,1_0,1_0 -4670,8.0,9.0,81.0,112,75,70,0.0,2174,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4879.6717989755025,2600.0,0.0,24824.0,5,1,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,24824.0,4,0,4_0,4_0 -4671,10.0,10.0,54.0,111,64,50,0.0,2175,0.0,0.0,300.0,450.0,1.0,4.0,0.0,1.0,1.0,2338.979067395245,0.0,0.0,21106.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,21106.0,3,0,3_0,3_0 -4672,5.0,8.0,37.0,111,34,20,0.0,2177,0.0,135.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2541.515553499302,2099.0,0.0,42077.0,1,4,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,42077.0,5,0,5,5_0 -4673,0.0,0.0,19.0,111,84,41,0.0,2178,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,8893.306859738836,0.0,0.0,2484.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,2484.0,1,0,1_1,1_0 -4674,2.0,2.0,37.0,111,34,10,0.0,218,0.0,550.0,0.0,0.0,1.0,8.0,3.0,5.0,2.4,1520.1337426636471,6959.0,0.0,61713.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,25713.75,4,0,4_0,4_0 -4675,13.0,17.0,49.0,112,48,50,0.0,2183,0.0,400.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3734.856381251868,1319.0,0.0,52980.0,1,3,9,1.0,3,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,35320.0,5,0,5,5_0 -4676,2.0,4.0,49.0,111,33,20,0.0,2184,0.0,15.0,40.0,0.0,2.0,6.0,0.0,2.0,1.5,2364.626492279741,0.0,0.0,61292.0,1,4,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,40861.333333333336,5,0,5,5_0 -4677,9.0,15.0,63.0,111,75,50,0.0,2185,0.0,290.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1310.250022719017,0.0,0.0,44900.0,5,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22450.0,4,0,4_0,4_0 -4678,0.0,0.0,26.0,111,46,60,0.0,2186,0.0,0.0,0.0,330.0,1.0,2.0,0.0,1.0,1.0,3834.5923192019263,0.0,0.0,16655.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16655.0,2,0,2_1,2_0 -4679,13.0,13.0,84.0,400,78,70,0.0,2187,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2980.8314164877033,0.0,0.0,17105.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11403.333333333334,1,0,1_0,1_1 -4680,0.0,13.0,59.0,111,78,60,0.0,2188,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,3184.7281393024487,1040.0,0.0,7310.0,4,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,4873.333333333333,1,0,1_0,1_0 -4681,9.0,10.0,82.0,111,72,70,0.0,2189,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4526.8890282878665,0.0,0.0,17691.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,11794.0,1,0,1_0,1_0 -4682,12.0,14.0,58.0,300,78,50,0.0,2190,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2334.0469618809498,844.0,0.0,19725.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19725.0,3,0,3_0,3_1 -4683,0.0,0.0,46.0,111,22,71,0.0,2192,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,3942.43481701238,0.0,0.0,11510.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11510.0,1,0,1_1,1_0 -4684,5.0,6.0,82.0,112,72,70,0.0,2194,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1643.495253400978,0.0,0.0,28680.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19120.0,3,0,3_0,3_0 -4685,22.0,22.0,63.0,112,77,70,0.0,2195,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2131.6670564946985,1092.0,0.0,12015.0,5,4,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12015.0,1,0,1_0,1_1 -4686,0.0,0.0,61.0,111,78,70,0.0,2197,0.0,0.0,0.0,48.0,0.0,2.0,0.0,1.0,1.0,3194.0143074809102,0.0,0.0,13864.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13864.0,2,0,2_1,2_0 -4687,4.0,9.0,51.0,111,54,70,0.0,2198,0.0,120.0,100.0,0.0,2.0,3.0,0.0,2.0,1.5,1283.3766897014889,0.0,0.0,37435.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24956.666666666668,4,0,4_0,4_0 -4688,2.0,17.0,43.0,300,85,50,0.0,2199,0.0,0.0,0.0,0.0,0.0,6.0,3.0,5.0,2.6,1484.236617195877,5462.0,0.0,22990.0,7,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8842.307692307691,1,0,1_0,1_1 -4689,11.0,11.0,75.0,221,77,70,0.0,22,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2739.6399774681213,0.0,0.0,32098.0,5,1,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21398.666666666668,3,0,3_0,3_0 -4690,4.0,4.0,48.0,300,52,50,0.0,220,0.0,20.0,80.0,0.0,2.0,4.0,2.0,4.0,2.3,1692.992263484472,0.0,0.0,41707.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18133.478260869568,3,0,3_0,3_1 -4691,4.0,4.0,68.0,111,77,70,0.0,2201,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2968.5823101922833,2600.0,0.0,5730.0,5,4,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,5730.0,1,0,1_0,1_0 -4692,2.0,2.0,35.0,111,47,42,0.0,2202,0.0,250.0,150.0,0.0,2.0,4.0,1.0,3.0,1.8,2192.1770271542764,0.0,0.0,34110.0,1,2,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18950.0,3,0,3_0,3_0 -4693,5.0,5.0,42.0,300,43,10,0.0,2203,0.0,1150.0,0.0,0.0,3.0,7.0,2.0,4.0,2.3,2332.991429212116,7335.0,0.0,57597.0,1,2,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,25042.17391304348,4,0,4_0,4_1 -4694,6.0,6.0,46.0,111,46,41,0.0,2206,0.0,99999.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2060.7305581828314,5200.0,0.0,31514.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,15006.666666666666,2,0,2_0,2_0 -4695,13.0,13.0,57.0,112,54,60,0.0,2207,0.0,0.0,228.0,298.0,1.0,3.0,0.0,1.0,1.0,3193.9786344057434,0.0,0.0,28221.0,1,3,10,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,28221.0,4,0,4_0,4_0 -4696,12.0,12.0,66.0,111,72,50,0.0,2208,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2965.4005179953733,0.0,0.0,78648.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,52432.0,5,0,5,5_0 -4697,0.0,0.0,22.0,111,85,71,0.0,2209,0.0,0.0,0.0,0.0,0.0,4.0,3.0,8.0,3.7,2397.1099889601355,0.0,0.0,14653.0,6,3,6,4.0,5,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,3960.27027027027,1,0,1_1,1_0 -4698,0.0,0.0,63.0,111,77,70,0.0,221,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2493.3901889576446,0.0,0.0,11894.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11894.0,1,0,1_0,1_0 -4699,3.0,3.0,62.0,111,74,31,0.0,2210,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1952.1888534296154,8298.0,0.0,28798.0,5,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,19198.666666666668,3,0,3_0,3_0 -4700,0.0,0.0,80.0,111,75,41,0.0,2211,0.0,0.0,0.0,410.0,0.0,2.0,0.0,1.0,1.0,5744.410645632105,0.0,0.0,18476.0,5,3,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18476.0,3,0,3_0,3_0 -4701,20.0,31.0,62.0,112,77,43,0.0,2212,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4995.123109858771,4932.0,0.0,32720.0,5,2,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21813.333333333332,4,0,4_0,4_1 -4702,6.0,15.0,50.0,111,63,50,0.0,2213,0.0,199998.0,0.0,0.0,5.0,4.0,4.0,6.0,3.5,4373.060786434376,0.0,0.0,59960.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,17131.428571428572,3,0,3_0,3_0 -4703,7.0,7.0,60.0,111,78,70,0.0,2214,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1406.9281129472754,0.0,0.0,28030.0,4,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,18686.666666666668,3,0,3_0,3_0 -4704,0.0,0.0,54.0,211,78,70,0.0,2215,0.0,0.0,0.0,170.0,0.0,1.0,0.0,1.0,1.0,2963.348484780475,0.0,0.0,14710.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14710.0,2,0,2_1,2_0 -4705,0.0,11.0,48.0,120,46,50,0.0,2216,0.0,0.0,100.0,261.0,2.0,3.0,1.0,3.0,2.0,3076.3055247980687,2635.0,0.0,21085.0,1,3,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,1,1.0,0.0,10542.5,1,0,1_1,1_1 -4706,22.0,22.0,61.0,400,13,60,0.0,2217,0.0,55.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2611.372856980655,0.0,0.0,5132.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,5132.0,1,0,1_0,1_1 -4707,8.0,22.0,26.0,112,63,50,0.0,2218,0.0,750.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1394.389306921834,3756.0,0.0,39705.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22058.333333333332,4,0,4_0,4_1 -4708,0.0,27.0,55.0,112,63,50,0.0,2219,0.0,1070.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1118.8475041479594,1300.0,0.0,37524.0,1,1,6,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,18762.0,3,0,3_0,3_1 -4709,4.0,6.0,31.0,111,37,10,0.0,2220,0.0,0.0,32.0,0.0,1.0,3.0,0.0,1.0,1.0,3106.0729161254676,0.0,0.0,30580.0,1,2,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,30580.0,5,0,5,5_0 -4710,8.0,11.0,47.0,111,34,10,0.0,2221,0.0,100.0,0.0,0.0,1.0,6.0,3.0,5.0,2.4,2128.4548029860907,0.0,0.0,48870.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20362.5,3,0,3_0,3_0 -4711,9.0,9.0,53.0,111,75,20,0.0,2222,0.0,0.0,1000.0,0.0,0.0,2.0,0.0,1.0,1.0,2889.441062208737,0.0,0.0,4842.0,4,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,4842.0,1,0,1_0,1_0 -4712,5.0,5.0,83.0,111,75,41,0.0,2223,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1780.3969001881917,0.0,0.0,47281.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,31520.666666666668,5,0,5,5_0 -4713,5.0,7.0,60.0,112,75,50,0.0,2224,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1059.3660254113893,2964.0,0.0,21256.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14170.666666666666,2,0,2_0,2_0 -4714,4.0,4.0,39.0,112,42,20,0.0,2225,0.0,106.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2876.159399023245,0.0,0.0,52127.0,1,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28959.444444444445,4,0,4_0,4_1 -4715,1.0,19.0,62.0,112,78,70,0.0,2226,0.0,0.0,0.0,219.0,0.0,3.0,0.0,2.0,1.5,2949.246610318857,0.0,0.0,21994.0,5,3,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14662.666666666666,2,0,2_0,2_1 -4716,0.0,0.0,68.0,111,86,50,1.0,2227,0.0,0.0,0.0,600.0,0.0,3.0,0.0,2.0,1.5,2206.5579889923824,0.0,21000.0,49839.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33226.0,5,0,5,5_0 -4717,7.0,8.0,72.0,111,74,43,0.0,2228,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2973.0873910729124,2236.0,0.0,55194.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36796.0,5,0,5,5_0 -4718,13.0,20.0,37.0,221,56,41,0.0,223,0.0,0.0,500.0,585.0,2.0,3.0,0.0,2.0,1.5,1847.3977668974667,0.0,0.0,27993.0,1,3,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,18662.0,3,0,3_0,3_0 -4719,1.0,14.0,66.0,111,75,50,2.0,2230,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1875.5005760248491,3461.0,1400.0,36780.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,24520.0,4,0,4_0,4_0 -4720,6.0,7.0,36.0,112,52,50,0.0,2231,0.0,800.0,0.0,171.0,2.0,6.0,3.0,5.0,2.6,1792.1487587287843,0.0,0.0,51191.0,4,3,8,0.0,4,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,19688.846153846152,3,0,3_1,3_1 -4721,4.0,16.0,36.0,112,48,42,0.0,2233,0.0,0.0,50.0,0.0,2.0,4.0,4.0,6.0,2.7,1294.1777267681396,4856.0,0.0,33720.0,1,2,7,0.0,4,2.0,1.0,0.0,1,0,0,0,0,1,1.0,1.0,12488.888888888889,1,0,1_1,1_1 -4722,0.0,0.0,54.0,221,69,71,0.0,2234,0.0,0.0,0.0,38.0,1.0,1.0,0.0,1.0,1.0,4361.33705296493,0.0,0.0,7670.0,4,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,7670.0,1,0,1_1,1_0 -4723,6.0,6.0,46.0,111,37,50,0.0,2235,0.0,10.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,997.6181671413598,1054.0,0.0,62769.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27290.869565217392,4,0,4_0,4_0 -4724,0.0,0.0,80.0,111,86,70,0.0,2236,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2864.881590849342,0.0,0.0,16769.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16769.0,2,0,2_0,2_0 -4725,5.0,10.0,66.0,211,75,50,0.0,2238,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1394.6489029656896,2919.0,0.0,21694.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14462.666666666666,2,0,2_0,2_0 -4726,5.0,7.0,24.0,400,11,43,0.0,2239,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,4408.008914164744,0.0,0.0,49487.0,1,3,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,32991.333333333336,5,0,5,5_1 -4727,3.0,11.0,42.0,111,46,41,0.0,224,0.0,200.0,0.0,200.0,1.0,1.0,0.0,1.0,1.0,3533.7664344613777,1040.0,0.0,16050.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16050.0,2,0,2_0,2_0 -4728,2.0,9.0,42.0,111,21,41,0.0,2240,0.0,1500.0,0.0,60.0,1.0,4.0,3.0,5.0,2.8,5964.481791380339,3952.0,0.0,12247.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,4373.928571428572,1,0,1_1,1_0 -4729,0.0,0.0,37.0,111,85,71,0.0,2244,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3160.6449023235687,0.0,0.0,19230.0,7,3,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12820.0,2,0,2_1,2_0 -4730,16.0,17.0,62.0,111,78,50,0.0,2246,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1811.024036306545,0.0,0.0,42546.0,4,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28364.0,4,0,4_0,4_0 -4731,9.0,10.0,43.0,111,85,12,0.0,2248,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3030.3522530845744,0.0,0.0,2890.0,7,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,2890.0,1,0,1_0,1_0 -4732,0.0,5.0,22.0,111,84,41,0.0,2249,0.0,350.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3436.5926492638573,2392.0,0.0,10276.0,3,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,10276.0,1,0,1_0,1_0 -4733,0.0,0.0,62.0,111,34,20,0.0,2250,0.0,0.0,0.0,0.0,2.0,6.0,2.0,3.0,2.0,1891.8143268351498,0.0,0.0,92459.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,46229.5,5,0,5,5_0 -4734,10.0,10.0,67.0,111,75,41,0.0,2252,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,5478.754894817351,0.0,0.0,39671.0,5,1,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,26447.333333333332,4,0,4_0,4_0 -4735,4.0,4.0,44.0,111,34,20,0.0,2254,0.0,0.0,100.0,310.0,1.0,1.0,0.0,1.0,1.0,5171.249693066696,2860.0,0.0,56710.0,1,3,6,5.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,56710.0,5,0,5,5_0 -4736,6.0,6.0,47.0,111,21,71,0.0,2255,0.0,12.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,4335.374089706619,3640.0,0.0,36770.0,1,2,5,4.0,4,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,15986.956521739132,2,0,2_0,2_0 -4737,4.0,4.0,88.0,111,75,71,0.0,2256,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3095.502444115092,0.0,0.0,45116.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30077.333333333332,5,0,5,5_0 -4738,6.0,11.0,40.0,111,63,50,0.0,2257,0.0,70.0,0.0,371.0,1.0,3.0,0.0,1.0,1.0,2797.8089737894547,0.0,0.0,15602.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15602.0,2,0,2_0,2_0 -4739,6.0,17.0,34.0,112,64,71,0.0,2259,0.0,0.0,170.0,63.0,1.0,5.0,3.0,5.0,2.4,2432.9398925480914,0.0,0.0,30227.0,1,3,8,2.0,4,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,12594.583333333334,2,0,2_1,2_0 -4740,10.0,10.0,48.0,400,47,50,0.0,2262,0.0,500.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2213.1472209929457,0.0,0.0,41731.0,1,2,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27820.666666666668,4,0,4_0,4_0 -4741,5.0,5.0,61.0,112,75,70,0.0,2265,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1836.575709706658,3393.0,0.0,35134.0,5,2,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23422.666666666668,4,0,4_0,4_1 -4742,19.0,19.0,89.0,111,77,70,0.0,2266,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2194.3414136854844,0.0,0.0,29473.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19648.666666666668,3,0,3_0,3_0 -4743,3.0,3.0,41.0,212,46,20,0.0,2268,0.0,120.0,12.0,0.0,2.0,6.0,3.0,5.0,2.4,1000.5560591662936,0.0,0.0,55542.0,1,2,1,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23142.5,4,0,4_0,4_1 -4744,0.0,0.0,49.0,111,52,31,0.0,2269,0.0,0.0,0.0,355.0,2.0,3.0,2.0,4.0,2.5,5211.7957916401965,0.0,0.0,34460.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13784.0,2,0,2_0,2_0 -4745,2.0,13.0,24.0,111,63,44,0.0,2273,0.0,400.0,0.0,472.0,1.0,3.0,0.0,2.0,1.5,3059.2936603189432,2080.0,0.0,24088.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,16058.666666666666,2,0,2_1,2_0 -4746,4.0,7.0,30.0,112,68,50,0.0,2274,0.0,125.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1519.1385679413863,4160.0,0.0,29311.0,1,3,7,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,16283.888888888889,2,0,2_0,2_0 -4747,0.0,0.0,88.0,111,77,41,0.0,228,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4058.5084620296475,0.0,0.0,22669.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22669.0,4,0,4_0,4_0 -4748,10.0,10.0,77.0,111,75,60,0.0,2282,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3745.587450250043,0.0,0.0,32340.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,21560.0,3,0,3_0,3_0 -4749,8.0,8.0,35.0,400,47,43,0.0,2283,0.0,80.0,30.0,0.0,2.0,6.0,2.0,4.0,2.1,3676.57238336351,0.0,0.0,43384.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20659.04761904762,3,0,3_0,3_1 -4750,4.0,7.0,51.0,400,13,71,0.0,2284,0.0,350.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2579.08691193398,2912.0,0.0,15464.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,6723.478260869566,1,0,1_0,1_1 -4751,6.0,6.0,80.0,111,75,50,0.0,2286,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1448.5315891704784,0.0,0.0,19672.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19672.0,3,0,3_0,3_0 -4752,0.0,0.0,77.0,112,77,70,0.0,2287,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3579.8876954490456,0.0,0.0,25590.0,5,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25590.0,4,0,4_0,4_1 -4753,2.0,2.0,58.0,111,54,30,0.0,229,0.0,0.0,200.0,0.0,2.0,5.0,0.0,4.0,2.5,959.1324415099382,1968.0,0.0,55995.0,1,1,9,7.0,5,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,22398.0,4,0,4_0,4_0 -4754,6.0,10.0,40.0,112,53,50,0.0,2290,0.0,0.0,0.0,0.0,3.0,4.0,4.0,6.0,3.1,976.0057935645879,0.0,0.0,38010.0,4,3,5,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,12261.290322580644,1,0,1_1,1_1 -4755,0.0,8.0,24.0,111,37,12,0.0,2292,0.0,0.0,0.0,262.0,1.0,1.0,0.0,1.0,1.0,3106.7749617916916,0.0,0.0,29854.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,29854.0,5,0,5,5_0 -4756,6.0,6.0,80.0,111,75,41,0.0,2297,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2318.975863053018,0.0,0.0,29287.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,29287.0,5,0,5,5_0 -4757,1.0,10.0,39.0,221,52,50,2.0,2298,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1300.0879196031067,1560.0,6000.0,36363.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,17315.714285714286,3,0,3_0,3_0 -4758,12.0,12.0,37.0,111,54,71,0.0,2299,0.0,199998.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2672.5087332319777,0.0,0.0,36948.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17594.285714285714,3,0,3_0,3_0 -4759,3.0,3.0,55.0,111,33,20,0.0,23,0.0,50.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2998.99156430886,0.0,0.0,66950.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,66950.0,5,0,5,5_0 -4760,0.0,14.0,55.0,111,52,50,0.0,230,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,1391.3727942101489,1300.0,0.0,18873.0,1,1,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,12582.0,2,0,2_0,2_0 -4761,2.0,4.0,46.0,111,47,43,0.0,2300,0.0,150.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,3865.26956885417,0.0,0.0,12320.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,12320.0,1,0,1_0,1_0 -4762,3.0,4.0,85.0,112,72,70,0.0,2303,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1505.7300128551376,2080.0,0.0,10470.0,5,1,6,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,6980.0,1,0,1_0,1_0 -4763,9.0,14.0,34.0,400,21,50,0.0,2304,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3074.4923191502503,0.0,0.0,-4251.0,1,4,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,-4251.0,1,0,1_0,1_1 -4764,7.0,9.0,88.0,112,71,71,0.0,2306,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2507.195819647971,0.0,0.0,25065.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16710.0,2,0,2_0,2_0 -4765,3.0,3.0,79.0,111,74,50,0.0,2307,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2859.8250389223663,2861.0,0.0,59894.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,39929.333333333336,5,0,5,5_0 -4766,3.0,15.0,54.0,111,62,50,0.0,2309,0.0,80.0,250.0,0.0,3.0,5.0,1.0,3.0,2.0,1516.669799908581,3609.0,0.0,42720.0,1,1,8,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,21360.0,3,0,3_0,3_0 -4767,3.0,10.0,37.0,400,52,50,0.0,2310,0.0,0.0,0.0,0.0,1.0,4.0,4.0,5.0,2.4,1885.9873348415917,780.0,0.0,28204.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,11751.666666666668,1,0,1_1,1_1 -4768,4.0,4.0,44.0,120,38,42,0.0,2311,0.0,900.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,5406.090876861792,2611.0,0.0,132108.0,1,2,0,3.0,4,4.0,0.0,0.0,0,1,0,0,0,0,1.0,3.0,73393.33333333333,5,0,5,5_0 -4769,4.0,21.0,50.0,221,85,31,0.0,2312,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2468.815280371081,4852.0,0.0,14456.0,5,2,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14456.0,2,0,2_0,2_0 -4770,4.0,15.0,59.0,111,78,50,0.0,2313,0.0,720.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,1312.6279093855912,5668.0,0.0,41989.0,5,1,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,16795.6,2,0,2_0,2_0 -4771,0.0,0.0,47.0,111,56,50,0.0,2315,0.0,0.0,0.0,231.0,2.0,3.0,2.0,4.0,2.1,1821.2064490487724,0.0,0.0,17310.0,4,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8242.857142857143,1,0,1_1,1_0 -4772,0.0,0.0,51.0,111,48,60,0.0,2316,0.0,0.0,0.0,131.0,2.0,5.0,2.0,4.0,2.3,1517.925716660489,1560.0,0.0,28750.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12500.000000000002,1,0,1_1,1_0 -4773,1.0,12.0,55.0,111,77,70,0.0,2317,0.0,0.0,0.0,51.0,1.0,3.0,2.0,4.0,2.1,2047.1048622527508,4420.0,0.0,28627.0,5,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,13631.904761904761,2,0,2_1,2_0 -4774,5.0,7.0,55.0,112,75,50,0.0,2318,0.0,0.0,200.0,0.0,1.0,7.0,0.0,2.0,1.5,1460.454810632819,0.0,0.0,47902.0,5,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,31934.666666666668,5,0,5,5_1 -4775,3.0,3.0,38.0,111,22,31,0.0,232,0.0,300.0,170.0,0.0,2.0,5.0,2.0,4.0,2.1,2058.7681526177034,0.0,0.0,46713.0,1,1,4,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,22244.285714285714,4,0,4_0,4_0 -4776,8.0,8.0,58.0,111,21,50,0.0,2322,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.5,1416.2748936287219,0.0,0.0,50890.0,1,2,7,5.0,2,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,20356.0,3,0,3_0,3_0 -4777,3.0,9.0,35.0,111,53,70,0.0,2323,0.0,60.0,0.0,430.0,1.0,1.0,0.0,1.0,1.0,2501.4938740921784,0.0,0.0,20010.0,1,3,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20010.0,3,0,3_0,3_0 -4778,2.0,3.0,48.0,111,38,50,0.0,2325,0.0,0.0,0.0,590.0,2.0,4.0,1.0,3.0,2.0,1947.537150196384,0.0,0.0,42056.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21028.0,3,0,3_0,3_0 -4779,17.0,17.0,81.0,300,77,70,0.0,2328,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1652.3639241774788,0.0,0.0,40974.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27316.0,4,0,4_0,4_1 -4780,4.0,4.0,42.0,111,34,10,0.0,233,0.0,0.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.1,2080.6673926929398,0.0,0.0,66958.0,1,1,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,31884.761904761905,5,0,5,5_0 -4781,0.0,0.0,60.0,112,46,50,0.0,2333,0.0,0.0,0.0,480.0,1.0,4.0,0.0,1.0,1.0,2381.441183275194,0.0,0.0,29555.0,1,3,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29555.0,5,0,5,5_0 -4782,1.0,6.0,48.0,111,46,41,2.0,2334,0.0,0.0,0.0,151.0,1.0,4.0,3.0,4.0,2.3,934.4828374287404,1570.0,7800.0,22102.0,4,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9609.565217391306,1,0,1_1,1_0 -4783,1.0,7.0,35.0,111,56,41,2.0,2335,0.0,150.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2724.6360735411286,0.0,5600.0,18806.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,18806.0,3,0,3_1,3_0 -4784,0.0,9.0,51.0,112,22,50,0.0,2336,0.0,0.0,220.0,900.0,2.0,6.0,4.0,6.0,2.9,1032.1096590119448,0.0,0.0,-3123.0,1,3,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,-1076.896551724138,1,0,1_0,1_1 -4785,5.0,5.0,66.0,221,75,43,0.0,2338,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2650.6144692654802,2677.0,0.0,37186.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,24790.666666666668,4,0,4_0,4_0 -4786,2.0,12.0,26.0,111,46,20,0.0,2339,0.0,410.0,0.0,248.0,1.0,4.0,0.0,2.0,1.5,4095.8333004907913,1820.0,0.0,19935.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,13290.0,2,0,2_1,2_0 -4787,0.0,0.0,74.0,111,77,71,0.0,2341,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,3695.8867142850745,0.0,0.0,27798.0,5,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18532.0,3,0,3_1,3_0 -4788,1.0,1.0,71.0,111,75,31,0.0,2342,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2280.3840049351816,604.0,0.0,36668.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,24445.333333333332,4,0,4_0,4_0 -4789,3.0,3.0,59.0,112,34,10,0.0,2343,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1316.5863882429312,0.0,0.0,52624.0,1,2,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,35082.666666666664,5,0,5,5_1 -4790,6.0,21.0,66.0,111,74,20,0.0,2344,0.0,0.0,100.0,0.0,1.0,6.0,0.0,2.0,1.5,1261.9485179296782,0.0,0.0,64717.0,5,2,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,43144.666666666664,5,0,5,5_0 -4791,7.0,18.0,25.0,111,43,41,0.0,2346,0.0,400.0,40.0,0.0,2.0,4.0,0.0,2.0,1.5,3411.716174698302,0.0,0.0,32885.0,1,2,7,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,21923.333333333332,4,0,4_0,4_0 -4792,1.0,1.0,35.0,111,43,20,2.0,2348,0.0,99999.0,0.0,402.0,1.0,3.0,0.0,1.0,1.0,3094.787218642231,1560.0,9600.0,22212.0,1,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,22212.0,4,0,4_0,4_0 -4793,22.0,22.0,82.0,111,86,70,0.0,2349,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2890.975767044654,2600.0,0.0,20500.0,5,1,8,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,10250.0,1,0,1_0,1_0 -4794,3.0,5.0,40.0,300,34,20,0.0,235,0.0,700.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1518.6470811187107,3249.0,0.0,50520.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21965.217391304348,4,0,4_0,4_1 -4795,2.0,22.0,42.0,112,47,50,0.0,2351,0.0,90.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4180.986519366842,3078.0,0.0,16220.0,1,2,9,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,9011.111111111111,1,0,1_0,1_0 -4796,0.0,0.0,59.0,111,78,70,0.0,2352,0.0,0.0,0.0,218.0,1.0,3.0,1.0,2.0,1.5,3119.258641850484,0.0,0.0,13154.0,5,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8769.333333333334,1,0,1_1,1_0 -4797,0.0,0.0,28.0,111,46,31,0.0,2353,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3093.780975128456,0.0,0.0,3458.0,4,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,3458.0,1,0,1_0,1_0 -4798,20.0,25.0,80.0,400,78,70,0.0,2354,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2083.073786284617,0.0,0.0,19463.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12975.333333333334,2,0,2_0,2_1 -4799,0.0,0.0,32.0,111,46,20,0.0,2355,0.0,0.0,0.0,318.0,2.0,4.0,0.0,2.0,1.5,3723.8118181277673,0.0,0.0,37584.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,25056.0,4,0,4_1,4_0 -4800,4.0,6.0,77.0,221,77,60,0.0,2356,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,4862.200328181966,650.0,0.0,29404.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29404.0,5,0,5,5_0 -4801,3.0,20.0,37.0,111,56,50,0.0,2358,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,3132.3391646414807,0.0,0.0,16091.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,8939.444444444443,1,0,1_1,1_0 -4802,7.0,12.0,35.0,300,54,20,0.0,2359,0.0,510.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1233.9391062506586,1820.0,0.0,47147.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26192.777777777777,4,0,4_0,4_1 -4803,3.0,3.0,53.0,120,62,50,0.0,236,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1326.740596166014,2127.0,0.0,35463.0,1,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23642.0,4,0,4_0,4_0 -4804,0.0,0.0,91.0,111,71,71,0.0,2360,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3655.05812945436,0.0,0.0,24477.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16318.0,2,0,2_0,2_0 -4805,5.0,7.0,57.0,300,64,50,0.0,2363,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1911.0893301418541,0.0,0.0,19969.0,1,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,19969.0,3,0,3_0,3_1 -4806,0.0,0.0,29.0,111,45,10,0.0,2364,0.0,0.0,0.0,510.0,1.0,1.0,0.0,1.0,1.0,3690.0866961502647,0.0,0.0,35433.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35433.0,5,0,5,5_0 -4807,3.0,3.0,28.0,211,37,31,0.0,2365,0.0,199998.0,0.0,0.0,3.0,5.0,0.0,4.0,2.5,1032.1899731516087,3640.0,0.0,91862.0,1,1,1,2.0,5,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,36744.8,5,0,5,5_0 -4808,8.0,19.0,41.0,111,56,71,0.0,2368,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3579.9985890073517,0.0,0.0,20540.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20540.0,3,0,3_0,3_0 -4809,7.0,24.0,26.0,111,42,41,0.0,2371,0.0,0.0,0.0,415.0,1.0,5.0,1.0,3.0,2.0,2167.3874491399615,1040.0,0.0,35059.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17529.5,3,0,3_0,3_0 -4810,12.0,12.0,80.0,111,86,70,0.0,2372,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2783.119558139893,1584.0,0.0,12250.0,6,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12250.0,1,0,1_0,1_0 -4811,5.0,5.0,54.0,111,46,42,0.0,2375,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2883.298614037638,500.0,0.0,65655.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32827.5,5,0,5,5_0 -4812,2.0,2.0,37.0,111,46,31,0.0,2376,0.0,500.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3223.113923216736,2081.0,0.0,36393.0,1,4,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,24262.0,4,0,4_0,4_0 -4813,4.0,9.0,41.0,111,34,20,0.0,2377,0.0,330.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1354.2098388279403,3287.0,0.0,37916.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,21064.444444444445,3,0,3_0,3_0 -4814,0.0,0.0,30.0,111,52,20,0.0,2378,0.0,0.0,0.0,75.0,1.0,2.0,0.0,1.0,1.0,3472.9455286015623,0.0,0.0,8010.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8010.0,1,0,1_1,1_0 -4815,6.0,6.0,48.0,111,22,31,0.0,238,0.0,0.0,15.0,0.0,2.0,7.0,0.0,2.0,1.5,2435.6089492546685,0.0,0.0,92471.0,1,2,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,61647.333333333336,5,0,5,5_0 -4816,0.0,0.0,49.0,111,85,33,0.0,2380,0.0,0.0,0.0,322.0,1.0,3.0,1.0,2.0,1.5,3136.3282220511555,0.0,0.0,19712.0,7,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13141.333333333334,2,0,2_1,2_0 -4817,6.0,6.0,32.0,112,54,31,0.0,2383,0.0,200.0,100.0,0.0,2.0,4.0,2.0,4.0,2.1,2239.6934655824098,3694.0,0.0,54551.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25976.666666666664,4,0,4_0,4_1 -4818,0.0,0.0,37.0,111,84,20,0.0,2384,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3794.7116316520655,0.0,0.0,1800.0,3,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,1800.0,1,0,1_0,1_0 -4819,19.0,19.0,82.0,111,77,70,0.0,2386,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1744.615037485687,0.0,0.0,27651.0,5,1,7,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,27651.0,4,0,4_0,4_0 -4820,8.0,13.0,73.0,111,77,70,0.0,2387,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1922.592516624132,0.0,0.0,24230.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16153.333333333334,2,0,2_0,2_0 -4821,2.0,2.0,47.0,111,46,71,0.0,2388,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3278.867815743744,0.0,0.0,60151.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,40100.666666666664,5,0,5,5_0 -4822,0.0,6.0,32.0,111,55,43,0.0,239,0.0,0.0,40.0,0.0,2.0,3.0,0.0,2.0,1.5,2924.7598937474477,2912.0,0.0,37925.0,1,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,25283.333333333332,4,0,4_0,4_0 -4823,0.0,0.0,31.0,111,56,42,0.0,2390,0.0,0.0,0.0,462.0,1.0,1.0,0.0,1.0,1.0,3415.1265292544144,0.0,0.0,18164.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18164.0,3,0,3_0,3_0 -4824,2.0,2.0,42.0,111,54,50,0.0,2391,0.0,270.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2287.9302874055707,1404.0,0.0,19816.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19816.0,3,0,3_0,3_0 -4825,0.0,0.0,32.0,111,35,20,0.0,2393,0.0,0.0,0.0,750.0,1.0,2.0,0.0,1.0,1.0,3469.277623746239,0.0,0.0,28990.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28990.0,4,0,4_0,4_0 -4826,4.0,4.0,41.0,111,65,71,0.0,2394,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,3.0,4390.683065258503,0.0,0.0,48760.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16253.333333333334,2,0,2_0,2_0 -4827,8.0,8.0,49.0,300,13,50,0.0,2395,0.0,0.0,80.0,0.0,2.0,5.0,2.0,4.0,2.5,1171.2454526167062,2829.0,0.0,70179.0,1,1,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,28071.6,4,0,4_0,4_1 -4828,3.0,3.0,42.0,111,23,31,0.0,2396,0.0,30.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2989.9070932277227,3542.0,0.0,70527.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,33584.28571428571,5,0,5,5_0 -4829,4.0,11.0,54.0,111,78,70,0.0,2397,0.0,0.0,0.0,486.0,3.0,5.0,2.0,5.0,2.8,1155.1312377187749,4424.0,0.0,69481.0,5,3,8,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,24814.64285714286,4,0,4_0,4_0 -4830,4.0,4.0,68.0,111,74,44,0.0,24,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2041.8852356157297,5304.0,0.0,45979.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,30652.666666666668,5,0,5,5_0 -4831,5.0,5.0,44.0,111,63,50,0.0,2400,0.0,10.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3197.07255455332,0.0,0.0,51.0,4,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,51.0,1,0,1_0,1_0 -4832,3.0,3.0,37.0,112,38,10,0.0,2403,0.0,220.0,0.0,0.0,2.0,8.0,3.0,5.0,2.4,1110.2635545642022,0.0,0.0,47056.0,1,3,7,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,19606.666666666668,3,0,3_0,3_1 -4833,5.0,16.0,65.0,221,74,30,0.0,2404,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3474.359065684856,3702.0,0.0,40574.0,5,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27049.333333333332,4,0,4_0,4_0 -4834,2.0,14.0,57.0,400,52,42,0.0,2407,0.0,450.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,3658.8085141562533,2225.0,0.0,25134.0,1,3,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,12567.0,2,0,2_0,2_1 -4835,3.0,4.0,63.0,221,74,31,0.0,2408,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3033.5013762406165,1598.0,0.0,36858.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,36858.0,5,0,5,5_0 -4836,0.0,14.0,41.0,112,46,31,2.0,2410,0.0,450.0,0.0,513.0,2.0,3.0,1.0,3.0,1.8,3379.7652567540626,3510.0,2400.0,51922.0,1,3,9,2.0,4,2.0,1.0,1.0,0,1,0,0,0,1,1.0,1.0,28845.555555555555,4,0,4_1,4_0 -4837,7.0,7.0,56.0,111,74,60,0.0,2411,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4585.476178921693,0.0,0.0,24490.0,4,2,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,16326.666666666666,2,0,2_0,2_0 -4838,6.0,6.0,51.0,111,38,12,0.0,2417,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.5,1795.3343895623289,2548.0,0.0,59191.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23676.4,4,0,4_0,4_0 -4839,7.0,19.0,39.0,111,34,20,0.0,2418,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2456.868697824232,0.0,0.0,49169.0,1,4,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27316.11111111111,4,0,4_0,4_0 -4840,2.0,4.0,59.0,300,77,50,0.0,2419,0.0,50.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2146.7661042938016,0.0,0.0,27050.0,5,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18033.333333333332,3,0,3_0,3_1 -4841,8.0,13.0,41.0,111,43,50,0.0,242,0.0,300.0,300.0,0.0,2.0,4.0,0.0,2.0,1.5,1838.1605833142505,4680.0,0.0,69310.0,1,2,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,46206.666666666664,5,0,5,5_0 -4842,1.0,1.0,54.0,112,33,50,1.0,2422,0.0,99999.0,0.0,0.0,1.0,5.0,0.0,5.0,2.8,931.4039252801729,1581.0,14000.0,59722.0,1,1,9,1.0,5,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,21329.285714285717,3,0,3_0,3_0 -4843,1.0,6.0,35.0,112,46,12,2.0,2424,0.0,500.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,5109.479982469782,2522.0,10600.0,41650.0,1,2,9,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23138.888888888887,4,0,4_0,4_0 -4844,10.0,13.0,52.0,120,52,70,0.0,2426,0.0,350.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1401.4064045813334,4764.0,0.0,40677.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27118.0,4,0,4_0,4_1 -4845,1.0,11.0,23.0,111,62,50,2.0,2427,0.0,0.0,0.0,200.0,2.0,2.0,0.0,2.0,1.5,2697.881524626795,0.0,6300.0,29172.0,1,3,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19448.0,3,0,3_0,3_0 -4846,4.0,8.0,35.0,111,38,12,0.0,2428,0.0,0.0,300.0,1041.0,2.0,4.0,2.0,4.0,2.1,2673.1514535651927,4257.0,0.0,87582.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,41705.71428571428,5,0,5,5_0 -4847,2.0,2.0,58.0,111,38,10,0.0,2429,0.0,0.0,100.0,0.0,2.0,6.0,1.0,3.0,2.0,1312.3032464207304,3120.0,0.0,139403.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,69701.5,5,0,5,5_0 -4848,2.0,5.0,62.0,111,78,70,0.0,243,0.0,0.0,0.0,177.0,0.0,5.0,5.0,7.0,3.2,2177.8902838047215,1560.0,0.0,36563.0,5,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,11425.9375,1,0,1_1,1_0 -4849,2.0,4.0,57.0,400,13,60,0.0,2430,0.0,250.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2061.9952060709875,2579.0,0.0,100474.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,50237.0,5,0,5,5_1 -4850,10.0,22.0,42.0,221,47,50,0.0,2432,0.0,0.0,120.0,0.0,2.0,4.0,0.0,2.0,1.5,2666.966294157661,2860.0,0.0,26841.0,1,3,1,2.0,5,2.0,0.0,1.0,0,1,0,0,0,1,2.0,0.0,17894.0,3,0,3_1,3_0 -4851,3.0,31.0,29.0,212,64,50,0.0,2433,0.0,560.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2717.3819824823113,521.0,0.0,35936.0,1,4,2,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,17112.38095238095,3,0,3_0,3_1 -4852,6.0,6.0,28.0,111,48,31,0.0,2435,0.0,99999.0,0.0,985.0,2.0,4.0,0.0,3.0,2.0,3575.728664535271,2601.0,0.0,28082.0,1,3,10,8.0,5,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,14041.0,2,0,2_0,2_0 -4853,5.0,15.0,29.0,300,64,50,0.0,2436,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,1593.433580929908,0.0,0.0,27161.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,11317.083333333334,1,0,1_1,1_1 -4854,1.0,15.0,33.0,111,63,50,0.0,2439,0.0,0.0,130.0,749.0,2.0,4.0,1.0,3.0,1.8,2763.2724493395276,5273.0,0.0,47300.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,26277.777777777777,4,0,4_0,4_0 -4855,2.0,2.0,39.0,112,37,20,0.0,244,0.0,540.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3196.5791606831704,0.0,0.0,97129.0,1,2,7,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,64752.666666666664,5,0,5,5_1 -4856,4.0,6.0,59.0,111,74,44,0.0,2440,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2864.057033904428,5200.0,0.0,37060.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,24706.666666666668,4,0,4_0,4_0 -4857,2.0,7.0,42.0,111,37,31,0.0,2441,0.0,1000.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1717.7054762475886,0.0,0.0,36706.0,1,2,5,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,17479.04761904762,3,0,3_0,3_0 -4858,6.0,11.0,46.0,112,63,50,0.0,2442,0.0,99999.0,199998.0,0.0,2.0,5.0,1.0,3.0,2.0,1092.6465653402493,6448.0,0.0,34252.0,1,2,9,0.0,4,3.0,0.0,1.0,1,0,0,0,0,1,2.0,1.0,17126.0,3,0,3_1,3_1 -4859,0.0,0.0,25.0,111,56,41,0.0,2443,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5922.809184019549,0.0,0.0,11928.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11928.0,1,0,1_1,1_0 -4860,3.0,10.0,39.0,112,54,31,0.0,2445,0.0,80.0,0.0,600.0,2.0,4.0,2.0,4.0,2.1,2092.045343964673,0.0,0.0,56373.0,1,3,9,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,26844.285714285714,4,0,4_0,4_0 -4861,1.0,2.0,37.0,111,22,41,2.0,2446,0.0,0.0,0.0,850.0,2.0,3.0,1.0,3.0,1.8,3562.5975354851385,0.0,6000.0,54421.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30233.888888888887,5,0,5,5_0 -4862,15.0,15.0,79.0,212,71,71,0.0,2448,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2728.3455339175457,2860.0,0.0,18575.0,5,1,3,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12383.333333333334,1,0,1_0,1_1 -4863,19.0,19.0,43.0,112,64,43,0.0,2450,0.0,22.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2556.8979540935375,0.0,0.0,49159.0,1,2,8,0.0,4,6.0,0.0,0.0,1,0,0,0,0,0,2.0,4.0,27310.555555555555,4,0,4_0,4_1 -4864,11.0,12.0,69.0,111,75,50,0.0,2451,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2523.5413474106263,0.0,0.0,27158.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18105.333333333332,3,0,3_0,3_0 -4865,0.0,22.0,73.0,400,72,70,0.0,2453,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3855.779978647893,0.0,0.0,6055.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,6055.0,1,0,1_0,1_1 -4866,7.0,7.0,79.0,400,74,71,0.0,2454,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3328.6941252341285,0.0,0.0,26040.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17360.0,3,0,3_0,3_1 -4867,6.0,10.0,67.0,300,71,70,0.0,2456,0.0,0.0,0.0,0.0,0.0,5.0,0.0,3.0,2.0,1676.6823655930712,0.0,0.0,31173.0,5,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15586.5,2,0,2_0,2_1 -4868,0.0,0.0,43.0,111,68,10,0.0,2457,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,3305.8724580404546,0.0,0.0,27510.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15283.333333333332,2,0,2_1,2_0 -4869,4.0,4.0,44.0,221,45,20,0.0,2458,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2425.2681547505836,0.0,0.0,54885.0,1,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,36590.0,5,0,5,5_0 -4870,2.0,5.0,38.0,112,37,10,0.0,246,0.0,300.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3305.35807613484,1306.0,0.0,32582.0,1,2,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,32582.0,5,0,5,5_0 -4871,6.0,8.0,56.0,111,21,50,0.0,2460,0.0,99999.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2067.4193336966196,1560.0,0.0,14740.0,1,1,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,9826.666666666666,1,0,1_0,1_0 -4872,4.0,8.0,50.0,400,52,70,0.0,2462,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,1583.0647299238233,0.0,0.0,19937.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,7668.076923076923,1,0,1_1,1_1 -4873,1.0,7.0,40.0,112,52,41,0.0,2463,0.0,0.0,400.0,0.0,2.0,7.0,3.0,6.0,2.7,1738.5298018017263,1561.0,0.0,51398.0,1,2,6,0.0,5,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,19036.296296296296,3,0,3_1,3_1 -4874,1.0,14.0,34.0,112,53,60,0.0,2464,0.0,60.0,516.0,0.0,2.0,3.0,1.0,3.0,1.8,2721.728791494711,3451.0,0.0,42334.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23518.888888888887,4,0,4_0,4_1 -4875,5.0,5.0,33.0,111,63,71,0.0,2465,0.0,0.0,0.0,525.0,2.0,6.0,3.0,5.0,2.6,2283.833954856121,0.0,0.0,28692.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11035.384615384615,1,0,1_1,1_0 -4876,2.0,2.0,47.0,111,48,31,0.0,2466,0.0,200.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3952.455771789996,0.0,0.0,52593.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,35062.0,5,0,5,5_0 -4877,0.0,4.0,42.0,112,46,41,2.0,2467,0.0,200.0,250.0,0.0,2.0,5.0,3.0,5.0,2.6,2377.1971133605484,3478.0,9300.0,40961.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15754.23076923077,2,0,2_0,2_1 -4878,9.0,9.0,66.0,111,75,50,0.0,2468,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1857.8839688257099,0.0,0.0,51304.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34202.666666666664,5,0,5,5_0 -4879,0.0,19.0,61.0,111,42,31,0.0,2469,0.0,0.0,1500.0,0.0,1.0,4.0,1.0,2.0,1.5,2662.1930439699927,5122.0,0.0,45125.0,1,1,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,30083.333333333332,5,0,5,5_0 -4880,0.0,0.0,55.0,400,63,70,0.0,247,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2190.2658405242887,0.0,0.0,12620.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12620.0,2,0,2_0,2_1 -4881,6.0,10.0,28.0,111,54,43,0.0,2470,0.0,200.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,6431.221930505136,0.0,0.0,22029.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22029.0,4,0,4_0,4_0 -4882,6.0,9.0,65.0,111,75,20,0.0,2471,0.0,0.0,0.0,703.0,0.0,8.0,0.0,1.0,1.0,2207.1834205477207,5349.0,0.0,24486.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,24486.0,4,0,4_0,4_0 -4883,20.0,20.0,84.0,120,71,70,0.0,2472,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2589.4606250830143,0.0,0.0,16829.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11219.333333333334,1,0,1_0,1_1 -4884,13.0,13.0,80.0,111,72,31,0.0,2474,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,5337.995666107628,1897.0,0.0,58427.0,5,4,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,38951.333333333336,5,0,5,5_0 -4885,4.0,7.0,26.0,120,45,20,0.0,2476,0.0,99999.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3481.458551430765,3121.0,0.0,22398.0,1,3,0,3.0,3,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,14932.0,2,0,2_1,2_0 -4886,11.0,11.0,57.0,111,54,50,0.0,2478,50.0,0.0,0.0,0.0,2.0,4.0,0.0,3.0,2.0,2370.637653984413,1560.0,0.0,40475.0,1,2,8,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,20237.5,3,0,3_0,3_0 -4887,11.0,11.0,33.0,111,69,31,0.0,2479,0.0,0.0,0.0,244.0,1.0,2.0,0.0,1.0,1.0,3151.2078023687477,0.0,0.0,12066.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12066.0,1,0,1_1,1_0 -4888,2.0,7.0,49.0,111,54,41,0.0,248,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2335.3078489742384,0.0,0.0,41287.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27524.666666666668,4,0,4_0,4_0 -4889,0.0,14.0,32.0,112,67,43,0.0,2480,0.0,320.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3124.9528025610393,0.0,0.0,38745.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21525.0,3,0,3_0,3_1 -4890,10.0,10.0,72.0,300,72,60,0.0,2481,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2411.716503787109,2560.0,0.0,60174.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,40116.0,5,0,5,5_1 -4891,8.0,8.0,47.0,112,13,50,0.0,2482,0.0,0.0,120.0,0.0,2.0,5.0,2.0,4.0,2.1,4647.954311360198,3123.0,0.0,-2102.0,1,1,8,3.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,-1000.952380952381,1,0,1_0,1_0 -4892,0.0,0.0,28.0,111,84,20,0.0,2483,0.0,0.0,0.0,190.0,0.0,2.0,0.0,1.0,1.0,3771.1711349102293,0.0,0.0,2292.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2292.0,1,0,1_1,1_0 -4893,2.0,2.0,51.0,111,63,50,0.0,2485,0.0,250.0,30.0,0.0,2.0,4.0,0.0,2.0,1.5,2171.6445061798704,1560.0,0.0,33978.0,1,1,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,22652.0,4,0,4_0,4_0 -4894,7.0,11.0,49.0,300,22,60,0.0,2488,0.0,560.0,100229.0,0.0,3.0,4.0,1.0,3.0,2.0,2691.3922849590326,0.0,0.0,54334.0,1,2,0,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,2.0,1.0,27167.0,4,0,4_0,4_1 -4895,4.0,10.0,63.0,111,78,42,0.0,249,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2650.9502889901983,3120.0,0.0,45158.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30105.333333333332,5,0,5,5_0 -4896,11.0,11.0,51.0,112,12,42,0.0,2490,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2991.088700667828,3127.0,0.0,30390.0,1,1,9,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,12156.0,1,0,1_0,1_0 -4897,8.0,9.0,51.0,112,47,50,0.0,2491,0.0,100.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1493.8161454944056,2600.0,0.0,25332.0,1,1,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16888.0,3,0,3_0,3_1 -4898,6.0,6.0,38.0,112,63,50,0.0,2493,0.0,300.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,1808.3808268625896,3224.0,0.0,31182.0,1,2,10,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,16411.578947368424,2,0,2_1,2_1 -4899,3.0,4.0,44.0,111,47,50,0.0,2494,0.0,0.0,0.0,430.0,1.0,3.0,0.0,1.0,1.0,4471.254191898434,2340.0,0.0,34335.0,1,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34335.0,5,0,5,5_0 -4900,3.0,5.0,63.0,111,72,70,0.0,2496,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2122.9540814755733,1564.0,0.0,12274.0,5,1,7,5.0,3,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,8182.666666666667,1,0,1_0,1_0 -4901,1.0,6.0,39.0,111,37,31,0.0,2497,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1615.6422573260222,0.0,0.0,76092.0,1,2,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,27175.714285714286,4,0,4_0,4_0 -4902,5.0,6.0,34.0,111,63,31,0.0,2498,0.0,200.0,40.0,0.0,2.0,4.0,2.0,4.0,2.1,2966.3395095199303,2600.0,0.0,42903.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,20430.0,3,0,3_0,3_0 -4903,10.0,10.0,66.0,300,86,71,0.0,2499,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2464.748119981504,0.0,0.0,13326.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,13326.0,2,0,2_1,2_1 -4904,1.0,1.0,72.0,111,74,70,1.0,250,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1316.9265642807827,4160.0,27238.0,27563.0,5,3,7,6.0,3,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,18375.333333333332,3,0,3_0,3_0 -4905,2.0,2.0,45.0,112,54,41,0.0,2501,0.0,1200.0,0.0,0.0,2.0,7.0,1.0,4.0,2.5,2143.62260985119,2445.0,0.0,66168.0,1,1,9,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26467.2,4,0,4_0,4_1 -4906,3.0,3.0,46.0,112,47,42,0.0,2503,0.0,0.0,225.0,0.0,3.0,5.0,3.0,5.0,2.8,2143.2468236444165,3299.0,0.0,60195.0,1,1,9,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,21498.214285714286,3,0,3_0,3_1 -4907,22.0,22.0,83.0,112,11,71,0.0,2504,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,3591.108100461523,0.0,0.0,16255.0,5,1,8,1.0,2,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,10836.666666666666,1,0,1_0,1_0 -4908,11.0,11.0,75.0,112,78,70,0.0,2508,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2141.4586774268964,1835.0,0.0,19821.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13214.0,2,0,2_0,2_0 -4909,0.0,0.0,28.0,112,53,42,1.0,2509,0.0,750.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,6705.636094547278,3640.0,25000.0,53009.0,1,2,9,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,29449.444444444445,5,0,5,5_0 -4910,3.0,6.0,40.0,111,43,33,0.0,2510,0.0,490.0,0.0,0.0,2.0,8.0,3.0,5.0,2.4,1857.2669045330251,2912.0,0.0,51634.0,1,1,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,21514.166666666668,3,0,3_0,3_0 -4911,21.0,21.0,87.0,211,75,50,0.0,2511,0.0,0.0,0.0,424.0,0.0,4.0,0.0,2.0,1.5,933.5901951929904,62.0,0.0,23153.0,5,3,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15435.333333333334,2,0,2_0,2_0 -4912,0.0,0.0,40.0,111,46,31,0.0,2512,0.0,0.0,0.0,390.0,1.0,1.0,0.0,1.0,1.0,3571.5499414857336,0.0,0.0,20742.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20742.0,3,0,3_0,3_0 -4913,15.0,15.0,58.0,111,34,31,0.0,2513,0.0,320.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1978.5042036135128,0.0,0.0,55826.0,1,1,7,5.0,3,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,37217.333333333336,5,0,5,5_0 -4914,3.0,3.0,26.0,111,11,31,0.0,2515,0.0,200.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2925.604926320235,0.0,0.0,17045.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11363.333333333334,1,0,1_1,1_0 -4915,2.0,2.0,62.0,111,74,41,0.0,2516,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2519.1527381516726,1040.0,0.0,33698.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22465.333333333332,4,0,4_0,4_0 -4916,1.0,2.0,32.0,112,46,42,2.0,2517,0.0,70.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2447.8788562287714,3770.0,11000.0,42581.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20276.666666666664,3,0,3_0,3_1 -4917,0.0,0.0,27.0,111,84,20,0.0,2518,0.0,0.0,0.0,221.0,0.0,1.0,0.0,1.0,1.0,4195.345544985483,0.0,0.0,7028.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7028.0,1,0,1_1,1_0 -4918,5.0,6.0,52.0,111,23,12,0.0,252,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2270.370327311313,2967.0,0.0,98894.0,1,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,49447.0,5,0,5,5_0 -4919,3.0,6.0,46.0,111,37,20,0.0,2521,0.0,99999.0,99999.0,0.0,2.0,8.0,2.0,4.0,2.3,891.0223627063108,0.0,0.0,103161.0,1,1,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,44852.608695652176,5,0,5,5_0 -4920,2.0,9.0,24.0,111,53,43,0.0,2522,0.0,80.0,0.0,400.0,1.0,4.0,0.0,2.0,1.5,2848.8505336239004,2808.0,0.0,25739.0,1,3,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,17159.333333333332,3,0,3_0,3_0 -4921,7.0,7.0,73.0,111,78,50,0.0,2523,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2596.8267904298787,1820.0,0.0,36621.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,24414.0,4,0,4_0,4_0 -4922,0.0,19.0,22.0,112,42,41,0.0,2524,0.0,0.0,280.0,0.0,1.0,2.0,0.0,1.0,1.0,4404.785313748579,0.0,0.0,10530.0,1,3,10,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,10530.0,1,0,1_0,1_0 -4923,1.0,12.0,38.0,111,64,60,2.0,2525,0.0,1000.0,0.0,0.0,2.0,4.0,4.0,6.0,2.7,1235.6011441585422,5460.0,1700.0,33713.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,12486.296296296296,1,0,1_1,1_0 -4924,1.0,1.0,45.0,111,33,30,0.0,2526,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,3106.4751154037017,0.0,0.0,49518.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,38090.76923076923,5,0,5,5_0 -4925,8.0,8.0,58.0,111,43,33,0.0,2527,0.0,0.0,300.0,0.0,2.0,7.0,1.0,2.0,1.5,2131.4875432301665,3796.0,0.0,34460.0,1,1,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22973.333333333332,4,0,4_0,4_0 -4926,0.0,0.0,21.0,111,84,71,0.0,2532,0.0,0.0,0.0,270.0,0.0,1.0,0.0,1.0,1.0,3969.6805487259603,0.0,0.0,3300.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,3300.0,1,0,1_1,1_0 -4927,1.0,25.0,33.0,112,38,12,2.0,2533,0.0,800.0,130.0,0.0,2.0,3.0,0.0,2.0,1.5,2625.100642487696,5775.0,2700.0,41700.0,1,2,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27800.0,4,0,4_0,4_1 -4928,5.0,17.0,89.0,221,77,70,0.0,2537,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4478.817678920996,1560.0,0.0,18604.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18604.0,3,0,3_0,3_0 -4929,0.0,0.0,88.0,111,86,70,0.0,2538,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3340.6321019844904,0.0,0.0,29976.0,6,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29976.0,5,0,5,5_0 -4930,4.0,6.0,36.0,111,31,10,0.0,2539,0.0,180.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2973.6314062490446,4624.0,0.0,29897.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,14236.666666666666,2,0,2_0,2_0 -4931,11.0,16.0,67.0,111,86,71,0.0,2541,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2563.683911737497,2600.0,0.0,11974.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11974.0,1,0,1_0,1_0 -4932,8.0,19.0,49.0,111,56,50,0.0,2542,0.0,0.0,250.0,0.0,2.0,5.0,0.0,2.0,1.5,1423.4499207076753,3215.0,0.0,32184.0,1,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,21456.0,3,0,3_0,3_0 -4933,0.0,0.0,38.0,111,85,50,0.0,2544,0.0,0.0,0.0,46.0,0.0,2.0,0.0,1.0,1.0,2434.6763308630602,0.0,0.0,14044.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14044.0,2,0,2_1,2_0 -4934,21.0,21.0,72.0,111,74,41,0.0,2547,0.0,0.0,0.0,499.0,0.0,3.0,0.0,2.0,1.5,2868.03720627782,0.0,0.0,39728.0,5,3,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,26485.333333333332,4,0,4_0,4_0 -4935,0.0,20.0,29.0,400,21,43,0.0,2548,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3111.913960195233,0.0,0.0,0.0,1,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,0.0,1,0,1_0,1_1 -4936,4.0,5.0,61.0,111,75,50,0.0,2549,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,943.0505836351238,0.0,0.0,23616.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15744.0,2,0,2_0,2_0 -4937,1.0,1.0,56.0,120,46,41,1.0,255,0.0,240.0,240.0,0.0,2.0,4.0,0.0,2.0,1.5,1830.8316523649478,1563.0,10000.0,55751.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,37167.333333333336,5,0,5,5_1 -4938,3.0,3.0,41.0,112,46,50,0.0,2550,0.0,350.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1295.1030296680801,4686.0,0.0,61926.0,1,1,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23817.69230769231,4,0,4_0,4_1 -4939,3.0,7.0,35.0,300,46,50,0.0,2551,0.0,400.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2327.1660208326603,3751.0,0.0,55378.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,30765.555555555555,5,0,5,5_1 -4940,1.0,1.0,68.0,111,78,71,1.0,2554,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3664.6547099057175,0.0,11000.0,20290.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,13526.666666666666,2,0,2_0,2_0 -4941,0.0,0.0,84.0,111,74,30,0.0,2556,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4121.317362724045,0.0,0.0,56057.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,56057.0,5,0,5,5_0 -4942,5.0,5.0,67.0,111,74,44,0.0,2557,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1438.938558798746,0.0,0.0,60738.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,40492.0,5,0,5,5_0 -4943,31.0,37.0,92.0,111,72,50,0.0,2558,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2303.7529096310013,0.0,0.0,12408.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12408.0,1,0,1_0,1_0 -4944,15.0,15.0,67.0,300,78,71,0.0,256,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3330.058232250494,164.0,0.0,28129.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18752.666666666668,3,0,3_0,3_1 -4945,1.0,1.0,70.0,111,72,50,1.0,2561,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4138.810070739493,0.0,18500.0,58724.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,39149.333333333336,5,0,5,5_0 -4946,11.0,11.0,35.0,111,42,20,0.0,2563,99999.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,2832.2222960537238,0.0,0.0,25367.0,1,2,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,0,0.0,0.0,19513.076923076922,3,0,3_0,3_0 -4947,6.0,8.0,31.0,112,46,41,0.0,2564,0.0,120.0,600.0,0.0,2.0,3.0,1.0,3.0,1.8,1154.4084088270367,520.0,0.0,58377.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,32431.666666666664,5,0,5,5_1 -4948,1.0,3.0,66.0,221,78,50,2.0,2565,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3683.772367562455,2395.0,11149.0,40980.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,27320.0,4,0,4_0,4_0 -4949,2.0,2.0,77.0,111,75,50,0.0,2566,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2012.638053899802,0.0,0.0,37370.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24913.333333333332,4,0,4_0,4_0 -4950,0.0,0.0,72.0,111,78,71,0.0,2569,0.0,0.0,0.0,134.0,0.0,3.0,0.0,1.0,1.0,2788.0311017627027,0.0,0.0,10716.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10716.0,1,0,1_1,1_0 -4951,2.0,4.0,37.0,111,37,31,0.0,2571,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2168.7287805624046,3120.0,0.0,56022.0,1,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26677.142857142855,4,0,4_0,4_0 -4952,1.0,3.0,31.0,111,37,12,2.0,2574,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3090.0268245456305,1590.0,25500.0,127601.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,85067.33333333333,5,0,5,5_0 -4953,19.0,25.0,74.0,111,77,70,0.0,2575,0.0,0.0,0.0,171.0,0.0,4.0,0.0,1.0,1.0,3011.5283025366084,0.0,0.0,15511.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,15511.0,2,0,2_1,2_0 -4954,5.0,5.0,67.0,400,77,60,0.0,2576,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2198.140790522097,3588.0,0.0,27160.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18106.666666666668,3,0,3_0,3_1 -4955,0.0,0.0,78.0,111,78,71,0.0,2577,0.0,0.0,0.0,151.0,0.0,5.0,0.0,2.0,1.5,3440.0517470794907,0.0,0.0,19304.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12869.333333333334,2,0,2_1,2_0 -4956,3.0,10.0,59.0,111,54,70,0.0,2579,0.0,0.0,180.0,0.0,1.0,2.0,0.0,1.0,1.0,4623.76187279126,2159.0,0.0,18770.0,1,2,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18770.0,3,0,3_0,3_0 -4957,12.0,12.0,27.0,400,55,50,0.0,258,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1397.2011288038932,1562.0,0.0,21450.0,4,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,13406.25,2,0,2_1,2_1 -4958,11.0,11.0,51.0,111,69,71,0.0,2581,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3645.3226416491098,0.0,0.0,30377.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14465.238095238095,2,0,2_0,2_0 -4959,1.0,7.0,48.0,400,64,71,2.0,2582,0.0,500.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3197.712295147481,4160.0,9000.0,24795.0,1,1,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,24795.0,4,0,4_0,4_0 -4960,0.0,0.0,37.0,111,21,50,0.0,2583,0.0,0.0,0.0,1000.0,1.0,3.0,0.0,1.0,1.0,2590.4368421949953,2600.0,0.0,-13289.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,-13289.0,1,0,1_0,1_0 -4961,2.0,14.0,44.0,212,62,50,0.0,2584,0.0,0.0,230.0,0.0,3.0,5.0,2.0,4.0,2.5,993.4869734661805,3120.0,0.0,38722.0,1,1,2,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,15488.8,2,0,2_0,2_1 -4962,2.0,2.0,62.0,400,74,44,0.0,2586,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1893.40872116079,5176.0,0.0,41887.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,27924.666666666668,4,0,4_0,4_1 -4963,3.0,4.0,27.0,111,38,12,0.0,2587,0.0,100.0,0.0,430.0,1.0,2.0,0.0,1.0,1.0,2488.303798680894,1300.0,0.0,23849.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23849.0,4,0,4_0,4_0 -4964,3.0,11.0,58.0,112,67,70,0.0,2593,0.0,40.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1174.7777720073623,0.0,0.0,46502.0,1,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,31001.333333333332,5,0,5,5_0 -4965,6.0,6.0,48.0,221,37,31,0.0,2596,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.3,2994.489720099293,0.0,0.0,55435.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24102.17391304348,4,0,4_0,4_0 -4966,0.0,0.0,68.0,111,86,71,0.0,2597,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,3965.2546622148943,0.0,0.0,3168.0,6,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,2112.0,1,0,1_1,1_0 -4967,0.0,21.0,39.0,111,55,71,0.0,2598,0.0,0.0,0.0,230.0,1.0,4.0,2.0,3.0,1.8,3151.7428992841037,0.0,0.0,23475.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13041.666666666666,2,0,2_1,2_0 -4968,0.0,0.0,44.0,111,37,12,0.0,2599,0.0,0.0,0.0,0.0,1.0,9.0,2.0,4.0,2.3,2527.2673504240224,3792.0,0.0,55756.0,1,1,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24241.739130434784,4,0,4_0,4_0 -4969,6.0,23.0,75.0,221,72,70,0.0,26,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1979.1303941573744,2860.0,0.0,20455.0,5,4,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13636.666666666666,2,0,2_0,2_0 -4970,0.0,1.0,39.0,111,37,31,0.0,260,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2533.1598800178413,0.0,0.0,95080.0,1,2,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,63386.666666666664,5,0,5,5_0 -4971,3.0,3.0,46.0,111,37,12,0.0,2601,0.0,200.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1287.5680828044656,0.0,0.0,92628.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,33081.42857142857,5,0,5,5_0 -4972,0.0,11.0,29.0,111,52,50,0.0,2602,0.0,200.0,0.0,126.0,2.0,4.0,3.0,5.0,2.4,2614.2133380560354,1092.0,0.0,39144.0,1,3,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,1,0.0,2.0,16310.0,2,0,2_1,2_0 -4973,0.0,0.0,92.0,111,75,70,0.0,2603,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1343.1278437713856,0.0,0.0,28566.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19044.0,3,0,3_0,3_0 -4974,12.0,15.0,82.0,112,71,71,0.0,2607,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3400.154759637121,1560.0,0.0,9286.0,5,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9286.0,1,0,1_0,1_1 -4975,2.0,8.0,48.0,300,63,50,0.0,2608,0.0,760.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1410.550477816492,3120.0,0.0,40620.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17660.869565217392,3,0,3_0,3_1 -4976,0.0,0.0,40.0,111,68,71,0.0,261,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,1.8,3380.650527174727,0.0,0.0,11710.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,6505.555555555556,1,0,1_1,1_0 -4977,0.0,0.0,29.0,111,62,60,0.0,2610,0.0,100.0,0.0,285.0,2.0,3.0,1.0,3.0,1.8,3498.3184957181934,2080.0,0.0,29977.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16653.888888888887,2,0,2_0,2_0 -4978,1.0,1.0,44.0,112,43,33,0.0,2611,0.0,200.0,20.0,0.0,2.0,5.0,1.0,3.0,1.8,2783.089365912456,0.0,0.0,42822.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,23790.0,4,0,4_0,4_0 -4979,0.0,0.0,79.0,111,77,70,0.0,2613,0.0,0.0,0.0,424.0,0.0,4.0,0.0,1.0,1.0,3397.6939772646924,0.0,0.0,15810.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15810.0,2,0,2_0,2_0 -4980,0.0,17.0,27.0,111,84,20,0.0,2614,0.0,160.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3793.0084254361936,0.0,0.0,1647.0,3,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,1647.0,1,0,1_1,1_0 -4981,11.0,15.0,61.0,111,62,71,0.0,2617,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,3575.8440270104047,1040.0,0.0,14050.0,4,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,5620.0,1,0,1_0,1_0 -4982,1.0,5.0,29.0,112,47,31,0.0,2618,0.0,290.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1659.6098228923677,2392.0,0.0,41708.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20854.0,3,0,3_0,3_1 -4983,0.0,10.0,24.0,111,38,12,0.0,2619,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4072.1119918137865,0.0,0.0,18066.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18066.0,3,0,3_0,3_0 -4984,4.0,4.0,56.0,111,54,41,0.0,262,0.0,0.0,250.0,1170.0,1.0,3.0,0.0,1.0,1.0,2711.380524790571,2516.0,0.0,93528.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,93528.0,5,0,5,5_0 -4985,0.0,15.0,43.0,111,43,20,0.0,2622,0.0,0.0,150.0,0.0,1.0,6.0,2.0,3.0,1.8,1499.8697927481262,0.0,0.0,34279.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,19043.888888888887,3,0,3_1,3_0 -4986,2.0,2.0,71.0,111,75,41,0.0,2628,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3080.8545481623446,0.0,0.0,29817.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29817.0,5,0,5,5_0 -4987,0.0,16.0,77.0,300,71,50,0.0,2629,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2270.012822216021,0.0,0.0,13970.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9313.333333333334,1,0,1_0,1_1 -4988,3.0,11.0,34.0,111,63,50,0.0,263,0.0,10.0,12.0,0.0,2.0,5.0,3.0,5.0,2.4,1053.4042136446062,0.0,0.0,39831.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,16596.25,2,0,2_0,2_0 -4989,6.0,6.0,48.0,111,63,50,0.0,2633,0.0,40.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2989.3687115729776,0.0,0.0,18739.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18739.0,3,0,3_0,3_0 -4990,2.0,5.0,43.0,112,63,50,0.0,2634,0.0,0.0,65.0,0.0,2.0,4.0,2.0,4.0,2.1,2612.1391008584724,0.0,0.0,32509.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,15480.476190476189,2,0,2_0,2_1 -4991,11.0,11.0,87.0,112,75,50,0.0,2635,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3209.5903281863184,0.0,0.0,40175.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,26783.333333333332,4,0,4_0,4_0 -4992,0.0,0.0,39.0,111,68,71,0.0,2636,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1049.7203112829238,0.0,0.0,14118.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14118.0,2,0,2_0,2_0 -4993,1.0,5.0,39.0,111,53,30,0.0,2637,0.0,0.0,0.0,172.0,1.0,1.0,0.0,1.0,1.0,4020.035155342514,2601.0,0.0,9500.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,9500.0,1,0,1_1,1_0 -4994,6.0,10.0,58.0,111,68,70,0.0,2639,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1769.2001656070363,0.0,0.0,22713.0,4,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12618.333333333332,2,0,2_1,2_0 -4995,5.0,5.0,67.0,111,75,70,0.0,2640,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,5572.629748555133,2601.0,0.0,52399.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34932.666666666664,5,0,5,5_0 -4996,4.0,4.0,62.0,112,31,12,0.0,2641,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2650.822623698471,3098.0,0.0,60754.0,1,1,8,0.0,3,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,40502.666666666664,5,0,5,5_1 -4997,0.0,0.0,46.0,111,56,71,0.0,2642,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.3,4459.365496520962,0.0,0.0,16480.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12676.923076923076,2,0,2_0,2_0 -4998,3.0,3.0,60.0,112,75,41,0.0,2643,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2403.2395201470877,0.0,0.0,31735.0,5,1,10,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,21156.666666666668,3,0,3_0,3_0 -4999,6.0,10.0,74.0,111,75,50,0.0,2644,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1081.2458538421693,0.0,0.0,33058.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22038.666666666668,4,0,4_0,4_0 -5000,2.0,2.0,31.0,111,38,10,0.0,2645,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1976.2107084480472,1865.0,0.0,41566.0,1,1,7,5.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,41566.0,5,0,5,5_0 -5001,0.0,0.0,38.0,221,53,50,0.0,2646,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4332.161516323565,0.0,0.0,15276.0,1,3,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15276.0,2,0,2_1,2_0 -5002,7.0,12.0,40.0,400,34,10,0.0,2647,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,2412.9381853700324,2436.0,0.0,31388.0,1,1,0,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19617.5,3,0,3_0,3_0 -5003,2.0,2.0,73.0,111,78,60,0.0,2649,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3000.5813769480683,1950.0,0.0,81084.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,81084.0,5,0,5,5_0 -5004,11.0,11.0,61.0,112,72,50,0.0,265,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1712.0935821280698,2964.0,0.0,42783.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,28522.0,4,0,4_0,4_0 -5005,0.0,0.0,79.0,111,86,70,0.0,2650,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1618.274793763528,0.0,0.0,11508.0,6,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11508.0,1,0,1_0,1_0 -5006,11.0,17.0,90.0,111,78,70,0.0,2651,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2638.10856775806,0.0,0.0,24886.0,5,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16590.666666666668,2,0,2_0,2_0 -5007,16.0,16.0,76.0,112,78,71,0.0,2653,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2643.3699520544947,0.0,0.0,16074.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10716.0,1,0,1_0,1_1 -5008,9.0,9.0,60.0,221,52,41,0.0,2654,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3979.446936799717,6500.0,0.0,17340.0,1,2,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17340.0,3,0,3_0,3_0 -5009,0.0,0.0,47.0,111,56,20,0.0,2657,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2978.9274670943955,0.0,0.0,21180.0,1,2,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14120.0,2,0,2_0,2_0 -5010,2.0,2.0,54.0,111,54,50,0.0,2658,0.0,150.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2413.036020772859,1047.0,0.0,15713.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15713.0,2,0,2_0,2_0 -5011,6.0,7.0,59.0,112,13,44,0.0,2659,0.0,99999.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,1090.1996494527675,4680.0,0.0,96129.0,1,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,38451.6,5,0,5,5_1 -5012,3.0,4.0,84.0,111,78,71,0.0,266,0.0,0.0,0.0,329.0,0.0,3.0,0.0,2.0,1.5,4088.496235218091,874.0,0.0,29220.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19480.0,3,0,3_0,3_0 -5013,0.0,0.0,75.0,111,86,71,0.0,2660,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2643.00888226277,0.0,0.0,8750.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8750.0,1,0,1_0,1_0 -5014,6.0,6.0,78.0,111,74,12,0.0,2663,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2203.546928934147,0.0,0.0,31927.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,21284.666666666668,3,0,3_0,3_0 -5015,1.0,2.0,29.0,112,42,20,2.0,2664,0.0,100.0,170.0,648.0,2.0,4.0,0.0,2.0,1.5,3431.2484438315037,4061.0,16000.0,52877.0,1,3,8,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,35251.333333333336,5,0,5,5_1 -5016,4.0,4.0,64.0,111,78,50,0.0,2667,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1751.110296209206,2288.0,0.0,24442.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16294.666666666666,2,0,2_0,2_0 -5017,5.0,14.0,68.0,112,77,71,0.0,2668,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2191.7941590421688,1300.0,0.0,16077.0,5,1,4,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16077.0,2,0,2_0,2_1 -5018,1.0,1.0,41.0,111,55,71,1.0,267,0.0,350.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,2988.0405626021125,2652.0,20000.0,37200.0,1,1,9,7.0,5,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,24800.0,4,0,4_0,4_0 -5019,0.0,0.0,21.0,111,46,42,0.0,2670,0.0,0.0,0.0,233.0,1.0,2.0,0.0,1.0,1.0,3386.401711669207,0.0,0.0,5495.0,2,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,5495.0,1,0,1_1,1_0 -5020,3.0,3.0,67.0,211,78,70,0.0,2671,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2484.7545588266494,0.0,0.0,17060.0,5,1,4,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,11373.333333333334,1,0,1_0,1_0 -5021,4.0,11.0,23.0,112,63,31,0.0,2672,0.0,99999.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2913.261037580421,2083.0,0.0,18374.0,1,3,8,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,18374.0,3,0,3_0,3_0 -5022,0.0,22.0,63.0,112,78,71,0.0,2673,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2952.445936702363,0.0,0.0,24054.0,5,3,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,16036.0,2,0,2_1,2_1 -5023,0.0,0.0,87.0,111,78,70,0.0,2675,0.0,0.0,0.0,289.0,0.0,3.0,0.0,1.0,1.0,2965.6351494184996,0.0,0.0,16690.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16690.0,2,0,2_0,2_0 -5024,4.0,4.0,64.0,111,74,12,0.0,2676,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1931.2091356553424,0.0,0.0,62755.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,41836.666666666664,5,0,5,5_0 -5025,11.0,14.0,42.0,112,69,50,0.0,2678,0.0,0.0,170.0,0.0,1.0,5.0,0.0,1.0,1.0,2399.8909758201867,0.0,0.0,14675.0,1,1,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14675.0,2,0,2_0,2_1 -5026,4.0,4.0,51.0,111,33,10,0.0,2679,0.0,0.0,130.0,0.0,2.0,5.0,1.0,3.0,1.8,1707.0863448646817,0.0,0.0,58184.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,32324.444444444445,5,0,5,5_0 -5027,11.0,11.0,64.0,300,74,41,0.0,268,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,1358.502568172695,0.0,0.0,44840.0,5,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,22420.0,4,0,4_0,4_1 -5028,0.0,0.0,48.0,111,43,41,1.0,2681,0.0,300.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1535.6249468447552,0.0,18000.0,51600.0,1,2,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,34400.0,5,0,5,5_0 -5029,3.0,10.0,26.0,400,63,50,0.0,2682,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2943.3195548035696,0.0,0.0,27249.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,12975.714285714284,2,0,2_1,2_1 -5030,3.0,12.0,45.0,300,67,50,0.0,2687,0.0,374.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1091.1358778274569,0.0,0.0,31660.0,4,2,0,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,17588.888888888887,3,0,3_0,3_0 -5031,2.0,4.0,40.0,111,22,50,2.0,269,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2903.276460057325,7434.0,7300.0,29554.0,1,3,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,16418.888888888887,2,0,2_1,2_0 -5032,8.0,12.0,65.0,111,75,50,0.0,2690,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1311.3018457257433,0.0,0.0,21003.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14002.0,2,0,2_0,2_0 -5033,1.0,19.0,29.0,120,55,50,2.0,2693,0.0,250.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3316.8935334743232,0.0,450.0,28033.0,1,4,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18688.666666666668,3,0,3_0,3_1 -5034,2.0,9.0,88.0,400,77,71,0.0,2694,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,5465.974238620556,0.0,0.0,28600.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28600.0,4,0,4_0,4_1 -5035,8.0,9.0,65.0,112,74,50,0.0,2695,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1516.8996732571622,2152.0,0.0,49340.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,32893.333333333336,5,0,5,5_1 -5036,1.0,1.0,36.0,111,67,50,2.0,2697,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3381.5891451096227,0.0,14200.0,34580.0,1,3,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,16466.666666666664,2,0,2_1,2_0 -5037,13.0,13.0,77.0,112,78,71,0.0,2698,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3984.126348984549,3616.0,0.0,21239.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14159.333333333334,2,0,2_0,2_1 -5038,11.0,29.0,58.0,120,43,33,0.0,2699,0.0,750.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1056.1488978918767,6942.0,0.0,51203.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,20481.2,3,0,3_0,3_1 -5039,6.0,7.0,64.0,112,77,60,0.0,27,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1834.4258748182513,0.0,0.0,11929.0,5,1,8,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11929.0,1,0,1_0,1_0 -5040,0.0,0.0,81.0,111,77,71,0.0,2700,0.0,0.0,0.0,320.0,0.0,1.0,0.0,1.0,1.0,3811.8864511740653,0.0,0.0,19579.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19579.0,3,0,3_0,3_0 -5041,2.0,6.0,64.0,111,75,50,0.0,2702,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,7553.199617501134,0.0,0.0,36462.0,5,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24308.0,4,0,4_0,4_0 -5042,4.0,6.0,66.0,112,74,70,0.0,2703,0.0,500.0,0.0,0.0,1.0,6.0,2.0,5.0,2.8,984.8885538676179,4472.0,0.0,59155.0,5,1,8,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21126.785714285717,3,0,3_0,3_1 -5043,2.0,2.0,53.0,111,65,70,0.0,2704,0.0,55.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2808.454999403764,1040.0,0.0,21310.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,10655.0,1,0,1_0,1_0 -5044,2.0,14.0,34.0,112,45,31,0.0,2705,0.0,1200.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1613.8364163892272,5720.0,0.0,45941.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25522.777777777777,4,0,4_0,4_0 -5045,4.0,6.0,60.0,111,77,71,0.0,2706,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3249.7791281018153,832.0,0.0,20572.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20572.0,3,0,3_0,3_0 -5046,5.0,18.0,38.0,111,64,12,0.0,2708,0.0,0.0,550.0,377.0,2.0,1.0,0.0,2.0,1.5,3143.5901754514266,3221.0,0.0,26133.0,4,3,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17422.0,3,0,3_0,3_0 -5047,10.0,10.0,44.0,111,53,41,0.0,271,0.0,0.0,500.0,0.0,1.0,2.0,0.0,1.0,1.0,2750.3369027042713,4667.0,0.0,20700.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20700.0,3,0,3_0,3_0 -5048,5.0,15.0,74.0,211,77,70,0.0,2712,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,6248.915924120271,520.0,0.0,25570.0,5,1,2,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17046.666666666668,3,0,3_0,3_0 -5049,19.0,19.0,88.0,400,71,70,0.0,2713,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1817.2634415906061,0.0,0.0,15810.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10540.0,1,0,1_0,1_1 -5050,0.0,4.0,30.0,111,23,44,0.0,2714,0.0,0.0,18.0,0.0,1.0,3.0,0.0,1.0,1.0,3959.4120289692696,0.0,0.0,29204.0,1,4,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,29204.0,5,0,5,5_0 -5051,0.0,1.0,24.0,111,38,12,0.0,2715,0.0,600.0,0.0,336.0,1.0,2.0,0.0,1.0,1.0,2808.785386043736,0.0,0.0,26768.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,26768.0,4,0,4_0,4_0 -5052,6.0,10.0,44.0,111,37,20,0.0,2716,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2330.5556226552208,0.0,0.0,63691.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,25476.4,4,0,4_0,4_0 -5053,3.0,5.0,45.0,112,37,43,0.0,2718,0.0,0.0,0.0,0.0,1.0,8.0,1.0,2.0,1.3,3190.1123640925216,0.0,0.0,26685.0,1,1,6,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20526.923076923074,3,0,3_0,3_1 -5054,3.0,6.0,59.0,111,56,60,0.0,2719,0.0,0.0,50.0,0.0,1.0,4.0,0.0,1.0,1.0,3091.6562799531516,0.0,0.0,16838.0,1,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16838.0,2,0,2_0,2_0 -5055,1.0,3.0,31.0,400,37,44,2.0,272,0.0,99999.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,3099.08457534884,2553.0,16500.0,41135.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,19588.095238095237,3,0,3_1,3_1 -5056,2.0,7.0,33.0,111,38,12,0.0,2720,0.0,540.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3428.58235859993,1571.0,0.0,55131.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,30628.333333333332,5,0,5,5_0 -5057,11.0,13.0,50.0,111,62,41,0.0,2721,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1412.8379017404789,1560.0,0.0,30150.0,1,3,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,20100.0,3,0,3_0,3_0 -5058,0.0,0.0,87.0,111,86,70,0.0,2723,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2216.304856749677,0.0,0.0,13172.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13172.0,2,0,2_0,2_0 -5059,6.0,6.0,85.0,111,74,12,0.0,2725,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2206.1985447234983,0.0,0.0,73810.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,49206.666666666664,5,0,5,5_0 -5060,6.0,6.0,36.0,111,22,31,0.0,2726,0.0,450.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2457.8266840155084,4836.0,0.0,73695.0,1,2,6,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,35092.857142857145,5,0,5,5_0 -5061,11.0,24.0,45.0,112,63,50,0.0,2728,0.0,700.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1757.135761355308,8941.0,0.0,35525.0,1,2,7,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,15445.652173913044,2,0,2_0,2_1 -5062,3.0,3.0,35.0,111,46,41,0.0,2730,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1499.1320303136415,0.0,0.0,51904.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28835.555555555555,4,0,4_0,4_0 -5063,5.0,5.0,45.0,112,52,41,0.0,2732,0.0,0.0,0.0,524.0,1.0,4.0,1.0,2.0,1.3,2444.0630526284945,0.0,0.0,17391.0,4,3,10,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13377.692307692307,2,0,2_0,2_0 -5064,10.0,10.0,70.0,120,72,50,0.0,2733,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2382.483128459589,0.0,0.0,23311.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15540.666666666666,2,0,2_0,2_1 -5065,3.0,5.0,35.0,111,47,20,0.0,2734,0.0,120.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2681.872220833957,2600.0,0.0,24812.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24812.0,4,0,4_0,4_0 -5066,4.0,9.0,41.0,221,54,43,0.0,2737,0.0,500.0,0.0,356.0,2.0,3.0,1.0,2.0,1.5,4191.469656343697,2600.0,0.0,20564.0,1,3,1,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,13709.333333333334,2,0,2_1,2_0 -5067,10.0,10.0,57.0,111,46,71,0.0,2741,0.0,0.0,400.0,0.0,1.0,5.0,0.0,2.0,1.5,3441.7825377371637,0.0,0.0,28296.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18864.0,3,0,3_0,3_0 -5068,1.0,8.0,22.0,111,52,60,0.0,2742,0.0,0.0,100.0,530.0,1.0,1.0,0.0,1.0,1.0,3637.313562829282,2364.0,0.0,20594.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,20594.0,3,0,3_0,3_0 -5069,1.0,1.0,61.0,112,75,50,1.0,2743,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1955.041865845445,3693.0,15540.0,44748.0,5,1,10,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,29832.0,5,0,5,5_1 -5070,0.0,0.0,76.0,111,78,71,0.0,2744,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5762.0677301359065,0.0,0.0,13768.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13768.0,2,0,2_1,2_0 -5071,5.0,8.0,29.0,111,35,20,0.0,2746,0.0,0.0,500.0,0.0,1.0,2.0,0.0,1.0,1.0,2850.269271772086,3952.0,0.0,16264.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,16264.0,2,0,2_0,2_0 -5072,0.0,0.0,82.0,111,75,70,0.0,2747,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3532.729155318646,0.0,0.0,20529.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20529.0,3,0,3_0,3_0 -5073,5.0,5.0,52.0,111,48,31,0.0,2749,0.0,10.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2966.966407186341,2080.0,0.0,19996.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19996.0,3,0,3_0,3_0 -5074,0.0,0.0,69.0,111,86,71,0.0,275,0.0,0.0,0.0,5.0,0.0,3.0,0.0,2.0,1.5,3360.8528774925126,0.0,0.0,12750.0,6,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8500.0,1,0,1_1,1_0 -5075,11.0,11.0,86.0,111,75,20,0.0,2750,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2597.8588817924165,0.0,0.0,60490.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,40326.666666666664,5,0,5,5_0 -5076,10.0,10.0,31.0,111,63,50,0.0,2752,0.0,350.0,200.0,0.0,2.0,4.0,1.0,3.0,1.8,1718.8696937948332,6061.0,0.0,37770.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,20983.333333333332,3,0,3_0,3_0 -5077,11.0,11.0,50.0,400,69,71,0.0,2754,0.0,0.0,0.0,0.0,3.0,7.0,5.0,7.0,3.6,1881.480984843964,3640.0,0.0,36470.0,1,2,0,0.0,4,3.0,1.0,0.0,1,0,0,0,0,1,0.0,3.0,10130.555555555555,1,0,1_1,1_1 -5078,8.0,10.0,58.0,221,62,70,0.0,2757,0.0,0.0,200.0,0.0,2.0,5.0,0.0,2.0,1.5,5680.777778818313,2618.0,0.0,16930.0,1,1,1,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,11286.666666666666,1,0,1_0,1_0 -5079,3.0,3.0,64.0,221,75,31,0.0,2759,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1804.124819400463,1321.0,0.0,33380.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,22253.333333333332,4,0,4_0,4_0 -5080,0.0,0.0,31.0,112,46,44,0.0,2763,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2983.0062906317835,9464.0,0.0,44590.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24772.222222222223,4,0,4_0,4_1 -5081,8.0,10.0,37.0,400,63,50,0.0,2765,0.0,550.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1237.904477836305,4966.0,0.0,45483.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18951.25,3,0,3_0,3_1 -5082,21.0,24.0,49.0,112,43,33,0.0,2766,0.0,240.0,160.0,0.0,2.0,6.0,0.0,2.0,1.5,1315.957288008382,0.0,0.0,53812.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,35874.666666666664,5,0,5,5_1 -5083,0.0,0.0,47.0,112,62,50,0.0,2767,0.0,0.0,0.0,272.0,1.0,3.0,1.0,3.0,2.0,2687.670144906297,0.0,0.0,27423.0,1,3,10,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13711.5,2,0,2_0,2_0 -5084,0.0,0.0,47.0,111,55,50,0.0,2769,0.0,0.0,0.0,539.0,1.0,4.0,1.0,2.0,1.5,3217.2478661958435,0.0,0.0,16201.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10800.666666666666,1,0,1_1,1_0 -5085,3.0,3.0,46.0,111,22,41,0.0,277,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2780.643394627894,5200.0,0.0,97840.0,1,2,5,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,97840.0,5,0,5,5_0 -5086,1.0,4.0,60.0,111,62,60,2.0,2771,0.0,120.0,0.0,395.0,3.0,4.0,4.0,6.0,3.3,2360.0516188845054,2236.0,8000.0,60220.0,1,3,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18248.484848484848,3,0,3_0,3_0 -5087,4.0,6.0,50.0,111,12,71,0.0,2772,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,1996.4174099940776,5096.0,0.0,45230.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,21538.095238095237,3,0,3_1,3_0 -5088,11.0,13.0,77.0,120,75,50,0.0,2773,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2325.6828298789114,3128.0,0.0,24413.0,5,1,0,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16275.333333333334,2,0,2_0,2_0 -5089,0.0,0.0,21.0,111,54,43,0.0,2774,0.0,0.0,0.0,282.0,1.0,2.0,0.0,1.0,1.0,4989.166606567034,0.0,0.0,3558.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,3558.0,1,0,1_1,1_0 -5090,0.0,0.0,80.0,111,77,60,0.0,2775,0.0,0.0,0.0,288.0,0.0,2.0,0.0,1.0,1.0,3647.041917415096,0.0,0.0,16138.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16138.0,2,0,2_1,2_0 -5091,20.0,20.0,82.0,111,77,50,0.0,2776,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3412.801887997706,2080.0,0.0,15943.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15943.0,2,0,2_0,2_0 -5092,2.0,7.0,48.0,111,47,31,0.0,2777,0.0,40.0,0.0,428.0,1.0,3.0,0.0,1.0,1.0,3448.000994325675,1308.0,0.0,23078.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23078.0,4,0,4_0,4_0 -5093,4.0,4.0,38.0,111,38,31,0.0,2778,0.0,460.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,5019.515462323959,2860.0,0.0,41601.0,1,2,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27734.0,4,0,4_0,4_0 -5094,4.0,20.0,66.0,300,71,50,0.0,2779,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2018.3820745129794,0.0,0.0,17871.0,5,1,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,11914.0,1,0,1_0,1_1 -5095,9.0,14.0,40.0,112,52,42,0.0,2780,0.0,115.0,60.0,0.0,2.0,4.0,2.0,4.0,2.1,1308.736621010999,0.0,0.0,36584.0,1,3,6,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17420.95238095238,3,0,3_0,3_0 -5096,7.0,7.0,68.0,111,78,70,0.0,2781,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1923.114297906965,4966.0,0.0,32430.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,21620.0,3,0,3_0,3_0 -5097,0.0,0.0,71.0,111,78,71,0.0,2782,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2244.4356973186823,0.0,0.0,10971.0,5,1,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10971.0,1,0,1_0,1_0 -5098,27.0,29.0,56.0,111,43,20,0.0,2784,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2048.614990510685,3445.0,0.0,29146.0,1,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19430.666666666668,3,0,3_0,3_0 -5099,3.0,8.0,43.0,111,48,10,0.0,2787,0.0,480.0,72.0,0.0,2.0,4.0,1.0,3.0,1.8,1797.0387763497645,1820.0,0.0,55563.0,1,2,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,30868.333333333332,5,0,5,5_0 -5100,2.0,2.0,62.0,112,74,50,0.0,2789,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2173.051391522398,4109.0,0.0,64434.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,42956.0,5,0,5,5_1 -5101,0.0,1.0,39.0,111,34,10,2.0,279,0.0,350.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1594.9015904328323,0.0,14750.0,69282.0,1,3,5,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,43301.25,5,0,5,5_0 -5102,0.0,0.0,64.0,111,78,71,0.0,2790,0.0,0.0,0.0,204.0,0.0,2.0,0.0,1.0,1.0,3683.2715462297965,0.0,0.0,13306.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13306.0,2,0,2_1,2_0 -5103,17.0,17.0,40.0,300,62,50,0.0,2792,0.0,540.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1902.379159793667,1820.0,0.0,46635.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22207.142857142855,4,0,4_0,4_1 -5104,0.0,0.0,47.0,111,43,50,0.0,2793,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,1.8,2764.248585586223,5077.0,0.0,121176.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,67320.0,5,0,5,5_0 -5105,0.0,0.0,41.0,111,43,71,0.0,2796,0.0,0.0,0.0,0.0,1.0,4.0,4.0,5.0,2.6,2663.126652039853,0.0,0.0,37610.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14465.384615384615,2,0,2_1,2_0 -5106,3.0,3.0,81.0,111,78,71,0.0,2797,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3893.947200595317,0.0,0.0,32989.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21992.666666666668,4,0,4_0,4_0 -5107,2.0,2.0,51.0,111,53,50,0.0,2798,0.0,300.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1259.9658794191603,2600.0,0.0,45192.0,1,4,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,30128.0,5,0,5,5_0 -5108,11.0,14.0,31.0,112,65,71,0.0,2799,0.0,0.0,180.0,0.0,2.0,5.0,2.0,6.0,3.1,3714.9539601003926,0.0,0.0,54480.0,1,2,7,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,17574.193548387095,3,0,3_0,3_1 -5109,0.0,0.0,19.0,111,84,41,0.0,280,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3564.623728103519,0.0,0.0,2192.0,3,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,2192.0,1,0,1_0,1_0 -5110,4.0,4.0,73.0,112,78,71,0.0,2800,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2234.041976640884,0.0,0.0,13876.0,5,1,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13876.0,2,0,2_0,2_0 -5111,2.0,2.0,38.0,111,34,10,0.0,2801,0.0,65.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3725.0733394558088,2705.0,0.0,67064.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,67064.0,5,0,5,5_0 -5112,4.0,7.0,36.0,112,62,50,0.0,2802,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3529.7229864613246,0.0,0.0,22437.0,4,2,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22437.0,4,0,4_0,4_0 -5113,2.0,2.0,63.0,300,56,70,0.0,2803,0.0,65.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1607.556524091284,1040.0,0.0,15748.0,5,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,15748.0,2,0,2_1,2_1 -5114,3.0,8.0,57.0,111,37,50,0.0,2804,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2075.4837738007104,4056.0,0.0,49580.0,1,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,33053.333333333336,5,0,5,5_0 -5115,1.0,1.0,42.0,111,37,41,2.0,2805,0.0,200.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,1364.032434929964,0.0,13000.0,43428.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21714.0,4,0,4_0,4_0 -5116,21.0,25.0,74.0,120,72,50,0.0,2809,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3423.4615451295963,1757.0,0.0,13041.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,8694.0,1,0,1_0,1_1 -5117,8.0,15.0,51.0,112,55,50,0.0,281,0.0,250.0,250.0,0.0,2.0,4.0,0.0,2.0,1.5,1458.9311088918055,797.0,0.0,41747.0,1,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27831.333333333332,4,0,4_0,4_1 -5118,7.0,7.0,52.0,111,34,20,0.0,2810,0.0,0.0,99.0,0.0,2.0,5.0,1.0,3.0,2.0,1964.886708387304,6313.0,0.0,85618.0,1,1,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,42809.0,5,0,5,5_0 -5119,0.0,0.0,47.0,111,52,30,0.0,2811,0.0,0.0,0.0,7.0,1.0,1.0,0.0,1.0,1.0,2896.12463745764,0.0,0.0,13970.0,4,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13970.0,2,0,2_1,2_0 -5120,10.0,10.0,75.0,111,75,20,0.0,2814,0.0,0.0,0.0,720.0,0.0,3.0,0.0,1.0,1.0,3687.4077517354963,0.0,0.0,60512.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,60512.0,5,0,5,5_0 -5121,0.0,11.0,42.0,300,52,71,0.0,2816,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,1720.1567259757703,0.0,0.0,26390.0,4,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,10150.0,1,0,1_1,1_1 -5122,5.0,6.0,46.0,112,55,42,0.0,2818,0.0,503.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,947.84469880572,0.0,0.0,52282.0,1,2,9,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,20912.8,3,0,3_0,3_0 -5123,12.0,13.0,70.0,111,74,60,0.0,282,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1359.4879657365898,3485.0,0.0,57776.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,38517.333333333336,5,0,5,5_0 -5124,0.0,0.0,19.0,111,84,41,0.0,2820,0.0,0.0,0.0,357.0,0.0,1.0,0.0,1.0,1.0,4048.0893655616123,0.0,0.0,4683.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4683.0,1,0,1_1,1_0 -5125,4.0,4.0,82.0,300,71,70,0.0,2821,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2215.406171169678,3467.0,0.0,17063.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11375.333333333334,1,0,1_0,1_1 -5126,11.0,11.0,57.0,300,78,70,0.0,2822,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2703.00450498536,0.0,0.0,27246.0,7,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18164.0,3,0,3_0,3_1 -5127,3.0,6.0,44.0,111,52,50,0.0,2828,0.0,99999.0,0.0,350.0,1.0,3.0,2.0,3.0,2.0,1233.1663470550386,1560.0,0.0,20303.0,1,3,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,10151.5,1,0,1_0,1_0 -5128,4.0,10.0,48.0,112,13,50,0.0,2829,0.0,600.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1461.4973392058728,3276.0,0.0,78557.0,1,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,34155.21739130435,5,0,5,5_1 -5129,0.0,17.0,46.0,111,54,50,2.0,283,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3507.103688801094,1300.0,300.0,43724.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29149.333333333332,5,0,5,5_0 -5130,3.0,3.0,60.0,211,74,60,0.0,2830,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1170.7404016285004,3224.0,0.0,32399.0,5,2,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21599.333333333332,3,0,3_0,3_0 -5131,3.0,11.0,52.0,111,54,71,0.0,2832,0.0,70.0,0.0,0.0,2.0,5.0,3.0,4.0,2.5,4346.4696882170865,1560.0,0.0,35980.0,1,3,4,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,14392.0,2,0,2_1,2_0 -5132,2.0,4.0,46.0,111,43,44,0.0,2833,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,3611.43813250149,0.0,0.0,12412.0,1,1,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,9547.692307692307,1,0,1_0,1_0 -5133,6.0,6.0,71.0,111,74,30,0.0,2834,0.0,0.0,0.0,415.0,0.0,3.0,0.0,1.0,1.0,2368.017165386608,0.0,0.0,29443.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29443.0,5,0,5,5_0 -5134,0.0,8.0,30.0,112,42,10,0.0,2837,0.0,120.0,35.0,0.0,2.0,4.0,1.0,3.0,1.8,2706.9873666813387,0.0,0.0,37897.0,1,4,9,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,21053.888888888887,3,0,3_0,3_1 -5135,0.0,0.0,74.0,111,77,70,0.0,2838,0.0,0.0,0.0,31.0,0.0,3.0,0.0,1.0,1.0,2764.612596429161,0.0,0.0,10934.0,5,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10934.0,1,0,1_1,1_0 -5136,5.0,5.0,52.0,111,38,12,0.0,2839,0.0,400.0,0.0,0.0,3.0,7.0,3.0,5.0,2.8,984.2721322434669,4160.0,0.0,108725.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,38830.357142857145,5,0,5,5_0 -5137,0.0,0.0,32.0,111,85,50,0.0,284,0.0,0.0,0.0,0.0,0.0,3.0,1.0,3.0,1.8,2264.5039000994534,0.0,0.0,15520.0,7,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8622.222222222223,1,0,1_1,1_0 -5138,7.0,9.0,45.0,111,34,10,0.0,2842,0.0,300.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,966.8934607754778,4724.0,0.0,68844.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25497.777777777777,4,0,4_0,4_0 -5139,5.0,10.0,51.0,111,53,50,0.0,2844,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,838.8061032995756,1303.0,0.0,61918.0,1,1,8,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,1.0,3.0,24767.2,4,0,4_0,4_0 -5140,11.0,11.0,83.0,111,75,20,0.0,2845,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3272.513308083585,0.0,0.0,40135.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,40135.0,5,0,5,5_0 -5141,0.0,0.0,66.0,300,78,70,0.0,2847,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1784.9306140478825,0.0,0.0,14070.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14070.0,2,0,2_1,2_1 -5142,1.0,12.0,25.0,221,62,50,2.0,2849,0.0,300.0,100.0,384.0,2.0,3.0,0.0,2.0,1.5,2462.521156494655,4508.0,6000.0,25772.0,1,3,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17181.333333333332,3,0,3_0,3_0 -5143,4.0,4.0,55.0,112,52,60,0.0,285,0.0,0.0,80.0,0.0,1.0,5.0,0.0,1.0,1.0,1678.950223715514,0.0,0.0,15540.0,1,4,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,15540.0,2,0,2_0,2_1 -5144,0.0,0.0,71.0,111,77,70,0.0,2850,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1373.3773735315667,0.0,0.0,16370.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16370.0,2,0,2_0,2_0 -5145,0.0,0.0,54.0,111,55,42,0.0,2852,0.0,0.0,0.0,192.0,1.0,1.0,0.0,1.0,1.0,2430.155438019389,0.0,0.0,10596.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10596.0,1,0,1_1,1_0 -5146,0.0,10.0,30.0,111,52,71,2.0,2853,0.0,0.0,400.0,21.0,1.0,2.0,1.0,3.0,1.8,3151.3216968469637,3120.0,3000.0,23671.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,13150.555555555555,2,0,2_1,2_0 -5147,2.0,10.0,32.0,120,52,71,0.0,2855,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,3534.546276185687,2600.0,0.0,26400.0,1,3,0,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,12571.42857142857,2,0,2_0,2_0 -5148,8.0,8.0,65.0,221,75,42,0.0,2856,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4216.160857620018,0.0,0.0,54783.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,36522.0,5,0,5,5_0 -5149,12.0,12.0,55.0,111,37,50,0.0,2857,100.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,918.1686672378848,1418.0,0.0,44411.0,1,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29607.333333333332,5,0,5,5_0 -5150,11.0,22.0,52.0,300,48,50,0.0,286,0.0,500.0,520.0,0.0,3.0,5.0,2.0,4.0,2.5,1299.2458484750032,5720.0,0.0,30737.0,1,4,0,0.0,4,4.0,0.0,0.0,1,0,0,0,0,1,2.0,2.0,12294.8,1,0,1_1,1_1 -5151,1.0,3.0,37.0,111,45,41,2.0,2860,0.0,1500.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3061.357195858638,0.0,9000.0,43175.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,20559.52380952381,3,0,3_0,3_0 -5152,0.0,15.0,51.0,111,37,10,0.0,2861,0.0,300.0,200.0,0.0,3.0,6.0,4.0,6.0,3.5,1941.7168320701155,0.0,0.0,116545.0,1,1,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,33298.57142857143,5,0,5,5_0 -5153,0.0,3.0,60.0,221,71,50,2.0,2862,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1471.2203730849012,0.0,15447.0,28631.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19087.333333333332,3,0,3_0,3_0 -5154,3.0,3.0,63.0,111,77,50,0.0,2863,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2467.084439116217,0.0,0.0,25639.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17092.666666666668,3,0,3_0,3_0 -5155,1.0,1.0,42.0,400,34,20,1.0,2866,0.0,400.0,60.0,0.0,2.0,5.0,2.0,4.0,2.1,2069.039222381633,1560.0,11000.0,52906.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25193.333333333332,4,0,4_0,4_1 -5156,1.0,1.0,77.0,111,74,60,1.0,2867,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1650.7358889040818,0.0,17500.0,55534.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,37022.666666666664,5,0,5,5_0 -5157,10.0,10.0,70.0,300,77,50,0.0,2868,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2814.4006968203234,3484.0,0.0,24330.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24330.0,4,0,4_0,4_1 -5158,0.0,0.0,32.0,111,54,10,0.0,2870,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2837.6830267461874,0.0,0.0,14138.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14138.0,2,0,2_0,2_0 -5159,4.0,4.0,44.0,112,47,60,0.0,2872,0.0,28.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1490.649810857113,4160.0,0.0,59671.0,1,2,10,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,22950.384615384613,4,0,4_0,4_1 -5160,0.0,0.0,79.0,111,86,71,0.0,2873,0.0,0.0,0.0,200.0,0.0,3.0,0.0,1.0,1.0,3775.3446422064853,0.0,0.0,14440.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14440.0,2,0,2_1,2_0 -5161,12.0,12.0,37.0,112,65,43,0.0,2874,0.0,300.0,50.0,0.0,2.0,6.0,3.0,5.0,2.4,1434.0840466182458,3224.0,0.0,57871.0,1,1,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24112.916666666668,4,0,4_0,4_1 -5162,0.0,0.0,63.0,111,74,10,1.0,2876,0.0,2000.0,0.0,639.0,1.0,3.0,1.0,3.0,2.0,3943.2067047917917,3432.0,20500.0,32006.0,5,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16003.0,2,0,2_0,2_0 -5163,0.0,0.0,88.0,211,86,70,0.0,2878,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1466.5182700346252,0.0,0.0,11863.0,5,4,3,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11863.0,1,0,1_0,1_0 -5164,7.0,7.0,48.0,111,37,31,0.0,2879,0.0,80.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2746.696512201908,0.0,0.0,70740.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28296.0,4,0,4_0,4_0 -5165,0.0,0.0,85.0,120,71,70,0.0,2880,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2969.367234390353,0.0,0.0,12668.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12668.0,2,0,2_0,2_1 -5166,1.0,1.0,71.0,111,75,50,0.0,2885,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1769.4615161136937,0.0,0.0,40725.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27150.0,4,0,4_0,4_0 -5167,2.0,2.0,69.0,112,75,60,0.0,2887,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2368.284222612681,0.0,0.0,36837.0,5,1,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,36837.0,5,0,5,5_0 -5168,5.0,5.0,86.0,400,75,70,0.0,2888,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1642.0093713965766,0.0,0.0,24673.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16448.666666666668,2,0,2_0,2_1 -5169,4.0,4.0,58.0,120,46,60,0.0,2889,0.0,368.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2096.355841155816,0.0,0.0,33166.0,1,1,0,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,33166.0,5,0,5,5_0 -5170,3.0,3.0,41.0,112,38,20,0.0,2892,0.0,0.0,0.0,0.0,2.0,9.0,3.0,5.0,2.4,2090.937070837376,2600.0,0.0,46247.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19269.583333333336,3,0,3_0,3_1 -5171,0.0,0.0,28.0,400,85,71,0.0,2893,0.0,0.0,0.0,405.0,0.0,4.0,3.0,4.0,1.9,3359.8825679425104,0.0,0.0,17446.0,6,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9182.105263157895,1,0,1_1,1_1 -5172,6.0,11.0,39.0,111,37,12,0.0,2894,0.0,0.0,100.0,0.0,2.0,6.0,2.0,4.0,2.1,2061.2487580303036,0.0,0.0,50985.0,1,2,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,24278.571428571428,4,0,4_0,4_0 -5173,1.0,3.0,60.0,400,11,71,2.0,2895,0.0,0.0,0.0,0.0,2.0,6.0,0.0,3.0,2.0,1829.0066577806072,0.0,9600.0,31741.0,4,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15870.5,2,0,2_0,2_1 -5174,7.0,10.0,26.0,111,69,50,0.0,2896,0.0,110.0,99999.0,273.0,2.0,3.0,1.0,3.0,1.8,2553.5958987907043,0.0,0.0,34628.0,1,3,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,19237.777777777777,3,0,3_0,3_0 -5175,3.0,3.0,73.0,112,74,70,0.0,2899,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1865.1667681806045,2725.0,0.0,38799.0,5,4,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,25866.0,4,0,4_0,4_0 -5176,0.0,0.0,36.0,111,55,43,0.0,290,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2616.45826253923,0.0,0.0,14388.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14388.0,2,0,2_0,2_0 -5177,7.0,7.0,50.0,111,42,50,0.0,2900,0.0,0.0,0.0,750.0,2.0,3.0,1.0,2.0,1.5,2352.797497042437,2497.0,0.0,32238.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21492.0,3,0,3_0,3_0 -5178,2.0,5.0,30.0,112,62,50,0.0,2901,0.0,100.0,80.0,0.0,2.0,6.0,0.0,2.0,1.5,1180.1658805917286,0.0,0.0,108063.0,1,1,8,2.0,5,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,72042.0,5,0,5,5_0 -5179,0.0,0.0,87.0,111,86,10,0.0,2903,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3068.8584136510926,0.0,0.0,50780.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,50780.0,5,0,5,5_0 -5180,0.0,0.0,27.0,111,33,20,0.0,2905,0.0,0.0,0.0,345.0,1.0,1.0,0.0,1.0,1.0,3543.340908663511,3550.0,0.0,27611.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27611.0,4,0,4_0,4_0 -5181,13.0,13.0,55.0,111,67,71,0.0,2907,0.0,500.0,0.0,182.0,2.0,2.0,0.0,2.0,1.5,3636.3480971243976,2169.0,0.0,32636.0,1,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21757.333333333332,4,0,4_0,4_0 -5182,6.0,7.0,61.0,111,63,50,0.0,2908,0.0,40.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2463.923687863255,1565.0,0.0,38329.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25552.666666666668,4,0,4_0,4_0 -5183,1.0,1.0,51.0,112,46,50,1.0,2909,0.0,0.0,0.0,270.0,1.0,4.0,0.0,1.0,1.0,3753.5541215459084,0.0,9990.0,17207.0,1,3,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17207.0,3,0,3_0,3_1 -5184,1.0,2.0,49.0,112,38,10,0.0,291,100.0,45.0,0.0,0.0,4.0,6.0,3.0,5.0,3.0,2220.443417397422,1301.0,0.0,63800.0,1,1,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21266.666666666668,3,0,3_0,3_0 -5185,0.0,0.0,87.0,111,72,70,0.0,2910,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3304.906966249212,0.0,0.0,8042.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8042.0,1,0,1_0,1_0 -5186,7.0,9.0,50.0,221,67,50,0.0,2911,0.0,0.0,100.0,0.0,1.0,1.0,0.0,1.0,1.0,4612.75098775012,780.0,0.0,6836.0,4,4,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,6836.0,1,0,1_1,1_0 -5187,10.0,12.0,56.0,400,52,70,0.0,2913,0.0,0.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,3171.1915154891803,0.0,0.0,21380.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14253.333333333334,2,0,2_0,2_1 -5188,0.0,0.0,63.0,111,35,10,0.0,2914,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3268.289439667315,0.0,0.0,36468.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36468.0,5,0,5,5_0 -5189,10.0,10.0,74.0,111,74,20,0.0,2915,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1090.6801327665903,2301.0,0.0,49622.0,5,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24811.0,4,0,4_0,4_0 -5190,4.0,10.0,25.0,111,63,50,0.0,2916,0.0,75.0,0.0,0.0,3.0,5.0,0.0,3.0,2.0,1970.2702784832481,0.0,0.0,42597.0,1,1,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21298.5,3,0,3_0,3_0 -5191,0.0,17.0,76.0,111,75,42,0.0,2917,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3058.146286343289,0.0,0.0,8561.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,8561.0,1,0,1_0,1_0 -5192,0.0,0.0,38.0,111,31,20,0.0,292,0.0,0.0,0.0,11.0,1.0,3.0,0.0,1.0,1.0,3490.165207716885,0.0,0.0,8626.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8626.0,1,0,1_1,1_0 -5193,0.0,11.0,35.0,112,64,50,2.0,2920,0.0,200.0,70.0,0.0,2.0,4.0,1.0,3.0,1.8,1592.7555472500553,1840.0,3000.0,36875.0,1,2,9,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,20486.11111111111,3,0,3_0,3_0 -5194,5.0,5.0,58.0,111,33,41,0.0,2921,0.0,199998.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1805.7140235814413,0.0,0.0,68240.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,45493.333333333336,5,0,5,5_0 -5195,1.0,1.0,51.0,400,52,50,1.0,2922,0.0,195.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1452.4031815337746,0.0,14104.0,24025.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24025.0,4,0,4_0,4_1 -5196,16.0,21.0,74.0,120,71,71,0.0,2923,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2465.3634913575843,2203.0,0.0,19550.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,13033.333333333334,2,0,2_0,2_1 -5197,17.0,17.0,85.0,111,77,41,0.0,2924,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2752.175413938268,0.0,0.0,10597.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,10597.0,1,0,1_0,1_0 -5198,3.0,6.0,55.0,111,62,50,0.0,2925,0.0,60.0,0.0,300.0,1.0,4.0,0.0,2.0,1.5,1768.7178744390476,1820.0,0.0,28963.0,1,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19308.666666666668,3,0,3_0,3_0 -5199,5.0,13.0,41.0,111,63,50,0.0,2926,0.0,200.0,0.0,268.0,1.0,3.0,0.0,1.0,1.0,2354.4755139003814,0.0,0.0,20564.0,1,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20564.0,3,0,3_0,3_0 -5200,1.0,1.0,39.0,111,62,50,0.0,2928,0.0,0.0,100029.0,288.0,2.0,4.0,1.0,3.0,1.8,1819.354671981221,0.0,0.0,34021.0,1,3,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,18900.555555555555,3,0,3_0,3_0 -5201,6.0,6.0,43.0,111,63,50,0.0,2929,0.0,0.0,99999.0,550.0,2.0,4.0,3.0,5.0,2.4,3330.716868638484,0.0,0.0,57921.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,24133.75,4,0,4_1,4_0 -5202,6.0,10.0,63.0,111,77,70,0.0,293,0.0,0.0,0.0,240.0,0.0,2.0,0.0,1.0,1.0,2389.3666100987266,0.0,0.0,16044.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16044.0,2,0,2_0,2_0 -5203,0.0,0.0,75.0,111,78,50,0.0,2936,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2271.174883803349,0.0,0.0,24213.0,5,4,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16142.0,2,0,2_0,2_0 -5204,2.0,2.0,66.0,111,72,50,0.0,2938,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1693.7670491675376,0.0,0.0,17724.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11816.0,1,0,1_0,1_0 -5205,0.0,0.0,75.0,111,78,60,0.0,2939,0.0,0.0,0.0,266.0,0.0,2.0,0.0,1.0,1.0,3081.5257019644605,0.0,0.0,21510.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21510.0,3,0,3_0,3_0 -5206,13.0,18.0,44.0,400,68,71,0.0,294,0.0,30.0,200.0,0.0,2.0,4.0,3.0,5.0,3.0,2139.809163026159,1300.0,0.0,47985.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15995.0,2,0,2_0,2_1 -5207,1.0,2.0,67.0,112,78,70,2.0,2940,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1056.4653943290273,1223.0,15500.0,38508.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25672.0,4,0,4_0,4_1 -5208,19.0,25.0,73.0,111,78,71,0.0,2941,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2425.2032747325393,0.0,0.0,18470.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18470.0,3,0,3_0,3_0 -5209,10.0,10.0,42.0,112,47,50,0.0,2944,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1320.4092621876307,9205.0,0.0,38591.0,1,1,8,1.0,4,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,15436.4,2,0,2_0,2_0 -5210,3.0,3.0,53.0,300,11,60,0.0,2948,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3217.79103730578,0.0,0.0,30400.0,1,1,0,0.0,5,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,20266.666666666668,3,0,3_0,3_1 -5211,14.0,16.0,55.0,221,43,10,0.0,2949,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1374.737857259697,0.0,0.0,46285.0,1,2,1,3.0,3,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,30856.666666666668,5,0,5,5_0 -5212,3.0,6.0,40.0,211,47,31,0.0,295,0.0,0.0,500.0,0.0,2.0,7.0,3.0,5.0,2.4,2023.9543329788362,0.0,0.0,50103.0,1,2,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,20876.25,3,0,3_0,3_0 -5213,2.0,5.0,22.0,221,65,43,0.0,2951,0.0,350.0,0.0,442.0,1.0,3.0,0.0,1.0,1.0,5320.167096010601,0.0,0.0,18439.0,1,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,18439.0,3,0,3_1,3_0 -5214,4.0,8.0,31.0,111,54,41,0.0,2953,0.0,0.0,120.0,0.0,2.0,5.0,2.0,4.0,2.1,2026.1756192541945,0.0,0.0,37146.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,17688.571428571428,3,0,3_1,3_0 -5215,2.0,11.0,47.0,112,67,50,0.0,2954,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2249.775236950232,3276.0,0.0,20350.0,1,3,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20350.0,3,0,3_0,3_1 -5216,1.0,10.0,68.0,111,77,71,2.0,2955,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2696.7625761400063,0.0,2900.0,28386.0,5,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18924.0,3,0,3_0,3_0 -5217,0.0,0.0,21.0,111,46,60,0.0,2957,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4217.007257374969,0.0,0.0,10092.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10092.0,1,0,1_0,1_0 -5218,1.0,16.0,42.0,111,21,71,0.0,2958,0.0,0.0,0.0,0.0,3.0,4.0,3.0,5.0,3.0,3683.5744815912317,4160.0,0.0,12743.0,4,2,5,4.0,4,1.0,1.0,0.0,0,0,1,0,0,1,0.0,1.0,4247.666666666667,1,0,1_1,1_0 -5219,1.0,1.0,44.0,112,43,50,1.0,296,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1939.9910473042967,0.0,31500.0,42614.0,1,1,6,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,23674.444444444445,4,0,4_0,4_1 -5220,1.0,1.0,51.0,112,48,71,1.0,2963,0.0,950.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2176.9539165859524,3608.0,19000.0,42864.0,1,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21432.0,3,0,3_0,3_1 -5221,8.0,9.0,54.0,111,46,41,0.0,2964,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2739.946157139718,140.0,0.0,19216.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12810.666666666666,2,0,2_0,2_0 -5222,3.0,3.0,80.0,111,75,70,0.0,2965,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2222.1767775809276,2087.0,0.0,21099.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21099.0,3,0,3_0,3_0 -5223,0.0,0.0,52.0,111,85,71,0.0,2967,0.0,0.0,0.0,14.0,0.0,3.0,1.0,2.0,1.5,3056.250300927976,0.0,0.0,12428.0,6,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8285.333333333334,1,0,1_1,1_0 -5224,17.0,30.0,60.0,111,34,20,0.0,2968,0.0,0.0,0.0,0.0,1.0,8.0,2.0,5.0,2.8,2026.267350224992,0.0,0.0,55288.0,1,1,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,19745.714285714286,3,0,3_0,3_0 -5225,1.0,1.0,44.0,111,33,20,1.0,2969,0.0,0.0,0.0,0.0,1.0,8.0,3.0,5.0,2.4,1446.0068839339533,0.0,21000.0,55959.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23316.25,4,0,4_0,4_0 -5226,3.0,4.0,54.0,111,31,10,0.0,2970,0.0,200.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,1003.3186548505748,0.0,0.0,114639.0,1,2,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,49843.04347826087,5,0,5,5_0 -5227,11.0,15.0,56.0,112,56,71,0.0,2971,0.0,500.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2698.319176367813,0.0,0.0,36740.0,1,1,8,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,24493.333333333332,4,0,4_0,4_0 -5228,3.0,16.0,40.0,112,55,42,0.0,2972,0.0,300.0,50.0,0.0,2.0,4.0,2.0,4.0,2.1,2030.5980112498312,0.0,0.0,36817.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17531.90476190476,3,0,3_0,3_1 -5229,9.0,10.0,32.0,111,42,20,0.0,2974,0.0,300.0,0.0,465.0,1.0,2.0,0.0,1.0,1.0,2384.8528400319974,0.0,0.0,17653.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,17653.0,3,0,3_0,3_0 -5230,1.0,1.0,53.0,111,38,42,1.0,2975,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,4502.633992842735,0.0,22000.0,62691.0,1,3,5,4.0,3,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,41794.0,5,0,5,5_0 -5231,5.0,11.0,24.0,111,34,10,0.0,2976,0.0,0.0,70.0,0.0,1.0,1.0,0.0,1.0,1.0,3478.719771605141,0.0,0.0,9152.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,9152.0,1,0,1_1,1_0 -5232,2.0,20.0,44.0,112,62,50,0.0,2977,0.0,130.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1616.6847696780312,0.0,0.0,28313.0,1,3,8,1.0,4,3.0,0.0,1.0,0,1,0,0,0,1,0.0,3.0,10111.785714285716,1,0,1_1,1_0 -5233,1.0,8.0,42.0,112,53,60,2.0,2979,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3173.797127312839,0.0,4000.0,53291.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25376.666666666664,4,0,4_0,4_1 -5234,2.0,3.0,52.0,111,33,71,0.0,298,0.0,0.0,0.0,607.0,2.0,4.0,1.0,3.0,2.0,3789.8556177180526,0.0,0.0,33011.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16505.5,2,0,2_0,2_0 -5235,20.0,20.0,72.0,111,77,41,0.0,2980,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2809.901376289566,0.0,0.0,1848.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,1848.0,1,0,1_0,1_0 -5236,9.0,13.0,33.0,112,53,31,0.0,2981,0.0,860.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2366.0672874893166,0.0,0.0,56108.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26718.095238095237,4,0,4_0,4_1 -5237,0.0,2.0,25.0,111,37,20,0.0,2982,0.0,80.0,0.0,406.0,2.0,3.0,0.0,2.0,1.5,2917.6609468259935,0.0,0.0,100873.0,1,3,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,67248.66666666667,5,0,5,5_0 -5238,7.0,11.0,43.0,111,34,20,0.0,2984,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2750.1550273351572,0.0,0.0,38449.0,1,4,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,38449.0,5,0,5,5_0 -5239,0.0,15.0,27.0,221,47,31,0.0,2986,0.0,600.0,200.0,0.0,2.0,2.0,1.0,3.0,1.8,4953.688692932792,5285.0,0.0,44079.0,1,3,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,24488.333333333332,4,0,4_0,4_0 -5240,0.0,0.0,46.0,111,85,71,0.0,2987,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,5258.282653290866,520.0,0.0,13020.0,6,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10015.384615384615,1,0,1_1,1_0 -5241,4.0,5.0,61.0,111,74,70,0.0,2988,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1167.3201389752487,3240.0,0.0,40893.0,5,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27262.0,4,0,4_0,4_0 -5242,1.0,6.0,46.0,111,62,71,2.0,2990,0.0,300.0,0.0,46.0,1.0,4.0,3.0,5.0,2.4,3312.1923800923664,2080.0,9500.0,30596.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,12748.333333333334,2,0,2_1,2_0 -5243,4.0,14.0,42.0,111,43,20,0.0,2991,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,1970.9750646558132,1040.0,0.0,43370.0,1,2,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,18856.521739130436,3,0,3_0,3_0 -5244,5.0,12.0,47.0,221,52,50,0.0,2992,0.0,0.0,120.0,0.0,1.0,4.0,1.0,2.0,1.3,2473.264337072564,0.0,0.0,21768.0,1,3,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,16744.615384615383,2,0,2_1,2_0 -5245,6.0,13.0,59.0,111,74,60,0.0,2993,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2523.535662689929,0.0,0.0,54536.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,36357.333333333336,5,0,5,5_0 -5246,0.0,0.0,78.0,111,75,42,0.0,2997,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3677.7026368305533,0.0,0.0,40532.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,40532.0,5,0,5,5_0 -5247,2.0,5.0,45.0,211,52,50,0.0,2999,0.0,0.0,42.0,0.0,1.0,5.0,1.0,2.0,1.5,1890.9947670018455,1642.0,0.0,21334.0,1,4,3,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,14222.666666666666,2,0,2_0,2_0 -5248,0.0,6.0,20.0,111,84,41,0.0,3,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3494.5161973082627,2247.0,0.0,6007.0,3,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,6007.0,1,0,1_1,1_0 -5249,3.0,14.0,45.0,111,37,50,0.0,30,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.6,2213.5260979303644,0.0,0.0,26196.0,4,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,10075.384615384615,1,0,1_1,1_0 -5250,4.0,5.0,41.0,111,52,20,0.0,3004,0.0,0.0,0.0,1000.0,2.0,3.0,2.0,4.0,2.1,2693.775497923409,2080.0,0.0,16310.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,7766.666666666666,1,0,1_0,1_0 -5251,0.0,0.0,40.0,111,22,50,0.0,3005,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,2735.57089799868,2496.0,0.0,78410.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,43561.11111111111,5,0,5,5_0 -5252,0.0,0.0,30.0,400,65,41,1.0,3007,0.0,100.0,100.0,0.0,1.0,4.0,1.0,3.0,1.8,2452.542640278197,0.0,8250.0,24884.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13824.444444444443,2,0,2_0,2_1 -5253,10.0,10.0,59.0,112,74,50,0.0,3008,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1579.8619011559974,0.0,0.0,61236.0,4,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,40824.0,5,0,5,5_1 -5254,1.0,2.0,82.0,112,75,70,2.0,3009,0.0,0.0,0.0,0.0,0.0,6.0,1.0,2.0,1.5,1866.6553062241255,0.0,24100.0,37750.0,5,1,6,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25166.666666666668,4,0,4_0,4_1 -5255,0.0,0.0,75.0,111,75,50,0.0,301,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2228.1800766417387,0.0,0.0,23910.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15940.0,2,0,2_0,2_0 -5256,0.0,0.0,49.0,112,43,60,0.0,3010,0.0,0.0,0.0,643.0,1.0,3.0,0.0,1.0,1.0,2995.2469696713706,0.0,0.0,18433.0,1,3,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18433.0,3,0,3_0,3_1 -5257,2.0,16.0,41.0,112,64,71,2.0,3011,0.0,1120.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,2910.1684175043583,0.0,1000.0,23845.0,1,1,8,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,0.0,4.0,9171.153846153846,1,0,1_0,1_1 -5258,0.0,13.0,48.0,112,42,10,0.0,3012,0.0,400.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2213.2515235882947,1316.0,0.0,41870.0,1,2,10,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23261.11111111111,4,0,4_0,4_0 -5259,0.0,0.0,90.0,112,72,71,0.0,3013,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2987.1862132563742,0.0,0.0,11160.0,5,1,7,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11160.0,1,0,1_0,1_0 -5260,4.0,4.0,64.0,300,75,71,0.0,3015,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3532.0529333557274,2418.0,0.0,28474.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18982.666666666668,3,0,3_0,3_1 -5261,0.0,0.0,59.0,111,78,71,0.0,3017,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3113.065365442685,0.0,0.0,11738.0,7,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7825.333333333333,1,0,1_1,1_0 -5262,9.0,9.0,58.0,111,56,41,0.0,3019,0.0,40.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1615.9514130415719,0.0,0.0,58796.0,1,1,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,39197.333333333336,5,0,5,5_0 -5263,7.0,13.0,46.0,111,67,50,0.0,302,0.0,0.0,0.0,211.0,2.0,2.0,0.0,2.0,1.5,2267.8904520000024,2600.0,0.0,23680.0,1,3,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,15786.666666666666,2,0,2_0,2_0 -5264,7.0,10.0,46.0,112,46,50,0.0,3020,0.0,400.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,941.4177403789014,3640.0,0.0,51490.0,1,2,10,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18389.285714285714,3,0,3_0,3_0 -5265,0.0,0.0,59.0,111,31,20,0.0,3021,0.0,0.0,0.0,600.0,2.0,3.0,1.0,3.0,1.8,3939.629536891034,0.0,0.0,40000.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22222.222222222223,4,0,4_0,4_0 -5266,9.0,16.0,43.0,120,67,50,0.0,3022,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2929.6501569023485,520.0,0.0,30615.0,1,2,0,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,14578.571428571428,2,0,2_0,2_0 -5267,7.0,7.0,69.0,120,71,71,0.0,3023,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2132.937896989455,1040.0,0.0,27146.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18097.333333333332,3,0,3_0,3_0 -5268,0.0,0.0,83.0,112,71,71,0.0,3024,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3116.042200393504,0.0,0.0,11450.0,5,3,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11450.0,1,0,1_0,1_1 -5269,1.0,7.0,34.0,300,67,41,0.0,3025,0.0,340.0,120.0,0.0,2.0,6.0,0.0,2.0,1.5,1858.1936982666718,4343.0,0.0,36925.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24616.666666666668,4,0,4_0,4_1 -5270,1.0,7.0,48.0,111,56,50,2.0,3026,0.0,0.0,0.0,273.0,2.0,4.0,2.0,3.0,2.0,5532.728934741899,0.0,2500.0,21465.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,10732.5,1,0,1_1,1_0 -5271,6.0,7.0,45.0,120,45,43,0.0,3028,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,2649.1528218989815,2080.0,0.0,32750.0,1,2,0,0.0,2,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,16375.0,2,0,2_0,2_1 -5272,6.0,6.0,57.0,112,11,31,0.0,3029,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1836.183015244713,5725.0,0.0,67790.0,1,1,7,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,45193.333333333336,5,0,5,5_1 -5273,11.0,13.0,52.0,111,56,71,0.0,303,0.0,60.0,0.0,2.0,1.0,6.0,2.0,4.0,2.3,3512.186307721788,1823.0,0.0,16783.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,7296.956521739131,1,0,1_1,1_0 -5274,6.0,10.0,57.0,112,42,20,0.0,3030,0.0,0.0,80.0,0.0,1.0,4.0,0.0,2.0,1.5,1434.496007083593,2339.0,0.0,49004.0,1,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,32669.333333333332,5,0,5,5_0 -5275,4.0,4.0,81.0,112,75,50,0.0,3031,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3016.6086218288146,0.0,0.0,21140.0,5,1,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21140.0,3,0,3_0,3_0 -5276,0.0,5.0,40.0,120,47,50,2.0,3035,550.0,0.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.3,3099.383423099628,4600.0,7100.0,44823.0,1,1,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19488.26086956522,3,0,3_0,3_0 -5277,0.0,17.0,51.0,111,52,50,0.0,3039,0.0,0.0,120.0,79.0,1.0,4.0,1.0,2.0,1.5,2037.7726380182671,4400.0,0.0,16236.0,1,3,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10824.0,1,0,1_1,1_0 -5278,3.0,4.0,58.0,112,75,41,0.0,304,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2368.88009561033,0.0,0.0,35256.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23504.0,4,0,4_0,4_1 -5279,2.0,2.0,55.0,112,47,41,0.0,3040,0.0,500.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1991.0298763074604,3010.0,0.0,35540.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23693.333333333332,4,0,4_0,4_1 -5280,19.0,21.0,69.0,112,77,71,0.0,3041,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,5803.393740619236,3796.0,0.0,33941.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22627.333333333332,4,0,4_0,4_0 -5281,2.0,3.0,66.0,111,74,10,0.0,3042,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2051.8227027840167,2600.0,0.0,88928.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,59285.333333333336,5,0,5,5_0 -5282,0.0,14.0,51.0,112,63,50,0.0,3045,0.0,0.0,235.0,0.0,4.0,4.0,0.0,4.0,2.5,982.0171809965912,3120.0,0.0,49540.0,4,1,8,1.0,5,3.0,0.0,1.0,0,1,0,0,0,0,3.0,0.0,19816.0,3,0,3_0,3_0 -5283,5.0,9.0,42.0,111,42,20,0.0,3046,0.0,70.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1594.9191993054353,0.0,0.0,51957.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,24741.42857142857,4,0,4_0,4_0 -5284,1.0,11.0,44.0,300,64,50,2.0,3048,0.0,40.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,1688.0800572040362,1560.0,1800.0,47540.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20669.565217391308,3,0,3_0,3_1 -5285,9.0,11.0,48.0,112,62,50,0.0,3049,0.0,0.0,0.0,360.0,1.0,5.0,2.0,4.0,2.3,1788.4490170149006,2600.0,0.0,40060.0,1,3,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,17417.391304347828,3,0,3_0,3_0 -5286,12.0,21.0,49.0,111,52,50,0.0,3050,0.0,0.0,0.0,378.0,1.0,1.0,0.0,1.0,1.0,7186.1179909353605,0.0,0.0,35130.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,35130.0,5,0,5,5_0 -5287,11.0,11.0,39.0,112,34,20,0.0,3051,0.0,150.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3023.6306715503465,0.0,0.0,43640.0,1,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,29093.333333333332,5,0,5,5_1 -5288,3.0,3.0,72.0,221,75,33,0.0,3053,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3381.0032656079698,0.0,0.0,22971.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22971.0,4,0,4_0,4_0 -5289,9.0,18.0,50.0,111,52,20,0.0,3055,0.0,80.0,0.0,109.0,1.0,3.0,3.0,5.0,2.4,1238.486569347579,0.0,0.0,22537.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,9390.416666666668,1,0,1_1,1_0 -5290,1.0,5.0,33.0,112,46,31,2.0,3056,0.0,200.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,2759.9722104666075,3328.0,8000.0,41584.0,1,2,8,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,27722.666666666668,4,0,4_0,4_1 -5291,8.0,9.0,59.0,400,77,71,0.0,3057,0.0,0.0,0.0,400.0,0.0,3.0,0.0,1.0,1.0,3486.4123121095868,3481.0,0.0,24884.0,7,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24884.0,4,0,4_0,4_1 -5292,0.0,15.0,43.0,111,46,20,2.0,3058,0.0,99999.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1188.7222103935374,4623.0,2600.0,47906.0,1,2,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,18425.384615384613,3,0,3_0,3_0 -5293,4.0,8.0,73.0,111,77,71,0.0,3060,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2691.5115509039238,0.0,0.0,15582.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15582.0,2,0,2_0,2_0 -5294,0.0,26.0,50.0,400,52,41,0.0,3063,0.0,750.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1858.9180112705913,3058.0,0.0,41621.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19819.52380952381,3,0,3_0,3_1 -5295,3.0,10.0,42.0,111,46,31,0.0,3065,0.0,0.0,0.0,0.0,3.0,7.0,4.0,6.0,2.9,1137.2149004013957,0.0,0.0,75517.0,4,2,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,26040.344827586207,4,0,4_0,4_0 -5296,3.0,8.0,25.0,111,42,31,0.0,3066,0.0,0.0,180.0,580.0,2.0,3.0,0.0,2.0,1.5,3144.6131598108864,7281.0,0.0,39039.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,26026.0,4,0,4_0,4_0 -5297,4.0,4.0,55.0,111,11,71,0.0,3067,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3908.315330837478,2956.0,0.0,25847.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,17231.333333333332,3,0,3_0,3_0 -5298,0.0,12.0,30.0,111,54,20,0.0,3068,0.0,0.0,250.0,0.0,1.0,2.0,0.0,1.0,1.0,3051.7184565834305,0.0,0.0,9868.0,4,4,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,9868.0,1,0,1_0,1_0 -5299,1.0,1.0,56.0,111,47,50,0.0,3069,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1524.9285359252117,0.0,0.0,32960.0,1,2,7,5.0,4,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,16480.0,2,0,2_0,2_0 -5300,0.0,0.0,65.0,221,77,70,0.0,307,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1429.1690064356683,0.0,0.0,8823.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,8823.0,1,0,1_0,1_0 -5301,4.0,4.0,63.0,400,72,31,0.0,3070,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,3442.100844372876,2080.0,0.0,57134.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,38089.333333333336,5,0,5,5_1 -5302,4.0,14.0,40.0,111,62,43,0.0,3071,0.0,0.0,30.0,0.0,2.0,4.0,1.0,3.0,1.8,1909.2941572073523,0.0,0.0,42311.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23506.11111111111,4,0,4_0,4_0 -5303,11.0,11.0,75.0,111,77,70,0.0,3072,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1860.8548170159265,1448.0,0.0,14714.0,5,4,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14714.0,2,0,2_0,2_0 -5304,2.0,7.0,32.0,400,62,42,0.0,3073,0.0,360.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1617.3074159046791,1411.0,0.0,50860.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,28255.555555555555,4,0,4_0,4_1 -5305,4.0,5.0,75.0,112,75,71,0.0,3074,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2167.527300327234,1211.0,0.0,38072.0,5,1,6,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,25381.333333333332,4,0,4_0,4_0 -5306,0.0,24.0,43.0,120,47,50,2.0,3077,0.0,380.0,260.0,0.0,2.0,6.0,2.0,4.0,2.3,2599.8040741573263,4123.0,6000.0,47330.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20578.26086956522,3,0,3_0,3_1 -5307,1.0,1.0,24.0,111,43,20,1.0,3078,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,2963.6282469767325,0.0,15500.0,22969.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,22969.0,4,0,4_1,4_0 -5308,15.0,15.0,72.0,112,71,70,0.0,3079,0.0,0.0,0.0,0.0,0.0,9.0,0.0,1.0,1.0,1341.1441216722587,1041.0,0.0,12284.0,5,4,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12284.0,1,0,1_0,1_1 -5309,2.0,2.0,53.0,111,43,60,0.0,3080,0.0,700.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4230.477256080595,3122.0,0.0,40161.0,1,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,40161.0,5,0,5,5_0 -5310,0.0,13.0,21.0,111,84,41,0.0,3081,0.0,0.0,40.0,0.0,0.0,1.0,0.0,1.0,1.0,3699.376680771543,2262.0,0.0,12724.0,3,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,12724.0,2,0,2_1,2_0 -5311,3.0,3.0,65.0,221,77,70,0.0,3082,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3873.904739636242,1482.0,0.0,13936.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13936.0,2,0,2_0,2_0 -5312,11.0,13.0,40.0,111,65,50,0.0,3084,0.0,0.0,0.0,313.0,1.0,4.0,1.0,2.0,1.5,2520.493697828362,0.0,0.0,36996.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24664.0,4,0,4_0,4_0 -5313,0.0,0.0,88.0,211,77,70,0.0,3086,0.0,0.0,0.0,271.0,0.0,3.0,0.0,1.0,1.0,2906.22162567287,0.0,0.0,12936.0,5,3,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12936.0,2,0,2_1,2_0 -5314,0.0,0.0,64.0,111,78,71,0.0,309,0.0,0.0,0.0,320.0,0.0,2.0,0.0,1.0,1.0,2458.8835962407366,0.0,0.0,9486.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9486.0,1,0,1_0,1_0 -5315,4.0,6.0,74.0,111,77,70,0.0,3090,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1875.9738609196131,0.0,0.0,15308.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15308.0,2,0,2_0,2_0 -5316,9.0,17.0,41.0,221,62,71,0.0,3091,0.0,0.0,300.0,0.0,1.0,4.0,3.0,5.0,2.6,3443.4783444121376,1562.0,0.0,27805.0,1,3,1,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,10694.23076923077,1,0,1_1,1_0 -5317,0.0,0.0,29.0,111,81,71,0.0,3094,0.0,0.0,0.0,35.0,1.0,2.0,1.0,2.0,1.3,2140.7509979871647,0.0,0.0,9150.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7038.461538461538,1,0,1_1,1_0 -5318,0.0,0.0,67.0,111,75,20,0.0,3095,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1231.8843239149103,0.0,0.0,1338.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,1338.0,1,0,1_0,1_0 -5319,2.0,2.0,37.0,221,63,50,0.0,3096,0.0,0.0,0.0,242.0,1.0,4.0,0.0,1.0,1.0,5072.038349043925,1633.0,0.0,16892.0,1,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16892.0,3,0,3_0,3_0 -5320,6.0,10.0,48.0,112,43,33,0.0,3097,0.0,200.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1547.3100208196383,0.0,0.0,53865.0,1,1,6,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,35910.0,5,0,5,5_0 -5321,3.0,3.0,38.0,400,11,50,0.0,3098,0.0,800.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1918.1448104363951,3827.0,0.0,172237.0,1,2,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,82017.61904761904,5,0,5,5_1 -5322,23.0,23.0,71.0,111,78,71,0.0,3099,0.0,0.0,0.0,248.0,0.0,4.0,0.0,2.0,1.5,2889.7154814322453,0.0,0.0,15344.0,5,3,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,10229.333333333334,1,0,1_1,1_0 -5323,2.0,4.0,26.0,111,43,33,0.0,3100,0.0,100.0,0.0,434.0,1.0,2.0,0.0,1.0,1.0,2843.8166821262275,2080.0,0.0,20486.0,1,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20486.0,3,0,3_0,3_0 -5324,18.0,18.0,70.0,111,74,12,0.0,3101,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2335.042643570441,0.0,0.0,56606.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,37737.333333333336,5,0,5,5_0 -5325,10.0,19.0,75.0,300,78,70,0.0,3102,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1135.7600496606985,0.0,0.0,31659.0,5,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,15829.5,2,0,2_0,2_1 -5326,1.0,1.0,31.0,111,48,43,2.0,3104,0.0,0.0,140.0,1000.0,2.0,3.0,0.0,2.0,1.5,3015.0958697275587,3120.0,13900.0,54705.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,36470.0,5,0,5,5_0 -5327,0.0,0.0,28.0,111,54,20,0.0,3105,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3406.9534507732164,0.0,0.0,8084.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8084.0,1,0,1_0,1_0 -5328,1.0,6.0,30.0,111,47,42,2.0,3106,0.0,200.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3105.14694765005,1820.0,9500.0,23448.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23448.0,4,0,4_0,4_0 -5329,5.0,7.0,59.0,112,34,10,0.0,3107,0.0,300.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1573.2204541835097,2184.0,0.0,25599.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17066.0,3,0,3_0,3_1 -5330,0.0,13.0,51.0,111,34,10,0.0,3108,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2618.4096064492655,0.0,0.0,25261.0,1,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25261.0,4,0,4_0,4_0 -5331,1.0,2.0,45.0,120,45,41,2.0,3109,0.0,0.0,178.0,0.0,3.0,5.0,1.0,3.0,2.0,2334.411949866757,0.0,22250.0,65296.0,1,1,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,32648.0,5,0,5,5_1 -5332,7.0,7.0,79.0,111,75,41,0.0,311,0.0,0.0,0.0,478.0,0.0,3.0,0.0,1.0,1.0,2848.8920165532686,0.0,0.0,35782.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,35782.0,5,0,5,5_0 -5333,17.0,17.0,75.0,400,77,60,0.0,3111,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3084.0481756486615,1565.0,0.0,28155.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28155.0,4,0,4_0,4_1 -5334,11.0,12.0,36.0,400,21,44,0.0,3112,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4754.214154167581,1976.0,0.0,14273.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14273.0,2,0,2_0,2_1 -5335,3.0,7.0,44.0,111,37,31,0.0,3113,0.0,0.0,0.0,278.0,1.0,4.0,0.0,1.0,1.0,2412.569566083953,4967.0,0.0,20050.0,4,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20050.0,3,0,3_0,3_0 -5336,1.0,1.0,41.0,111,11,50,2.0,3114,0.0,100.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2891.0688078049684,0.0,23000.0,57368.0,1,1,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24942.608695652176,4,0,4_0,4_0 -5337,1.0,4.0,25.0,111,67,50,2.0,3118,0.0,300.0,0.0,110.0,1.0,2.0,1.0,2.0,1.3,2739.1240983472126,0.0,5000.0,16621.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,12785.384615384615,2,0,2_1,2_0 -5338,2.0,10.0,36.0,400,37,41,0.0,3119,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3715.260833737176,0.0,0.0,45706.0,1,4,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21764.761904761905,4,0,4_0,4_1 -5339,0.0,0.0,66.0,111,78,50,0.0,312,0.0,0.0,0.0,13.0,0.0,3.0,0.0,2.0,1.5,1961.0654376135717,0.0,0.0,24538.0,5,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,16358.666666666666,2,0,2_1,2_0 -5340,2.0,2.0,65.0,111,77,50,0.0,3120,0.0,0.0,0.0,383.0,0.0,3.0,0.0,2.0,1.5,2321.8667049594364,0.0,0.0,44129.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29419.333333333332,5,0,5,5_0 -5341,14.0,27.0,63.0,111,75,71,0.0,3123,0.0,0.0,0.0,0.0,0.0,3.0,1.0,3.0,2.0,1031.709056775372,1698.0,0.0,34515.0,5,3,7,5.0,4,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,17257.5,3,0,3_0,3_0 -5342,16.0,16.0,83.0,111,72,70,0.0,3124,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1780.6289016710969,0.0,0.0,14448.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,9632.0,1,0,1_0,1_0 -5343,2.0,6.0,20.0,111,84,60,0.0,3125,0.0,99999.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3463.7269510055985,905.0,0.0,9628.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9628.0,1,0,1_1,1_0 -5344,1.0,7.0,33.0,111,47,20,0.0,3126,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2855.2985782405267,0.0,0.0,46284.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,25713.333333333332,4,0,4_0,4_0 -5345,5.0,26.0,46.0,112,48,41,0.0,3127,0.0,0.0,1500.0,0.0,1.0,4.0,0.0,1.0,1.0,3075.368337831215,5772.0,0.0,29960.0,1,2,7,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,29960.0,5,0,5,5_0 -5346,9.0,13.0,43.0,111,67,71,0.0,3128,0.0,99999.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,3132.417165477831,1560.0,0.0,53289.0,1,2,5,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,21315.6,3,0,3_0,3_0 -5347,3.0,3.0,73.0,111,74,31,0.0,3129,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2193.1104563641115,0.0,0.0,51232.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34154.666666666664,5,0,5,5_0 -5348,3.0,6.0,25.0,111,48,43,0.0,313,0.0,170.0,0.0,375.0,1.0,2.0,0.0,1.0,1.0,6124.8584326456385,3407.0,0.0,14091.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14091.0,2,0,2_0,2_0 -5349,7.0,13.0,64.0,111,78,71,0.0,3130,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2658.0382874654265,0.0,0.0,38720.0,5,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19360.0,3,0,3_0,3_0 -5350,4.0,7.0,47.0,111,63,10,0.0,3131,0.0,0.0,0.0,500.0,1.0,3.0,3.0,5.0,2.4,4340.196672527799,0.0,0.0,27146.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,11310.833333333334,1,0,1_1,1_0 -5351,15.0,17.0,34.0,300,53,44,0.0,3133,0.0,360.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2566.9256456019643,4274.0,0.0,33675.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,16035.714285714284,2,0,2_1,2_1 -5352,9.0,9.0,39.0,112,62,50,0.0,3134,0.0,0.0,0.0,455.0,2.0,1.0,0.0,2.0,1.5,2647.58801487939,0.0,0.0,37684.0,1,3,10,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25122.666666666668,4,0,4_0,4_0 -5353,0.0,0.0,20.0,111,84,41,0.0,3136,0.0,0.0,0.0,170.0,0.0,1.0,0.0,1.0,1.0,3607.525804535764,0.0,0.0,8404.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8404.0,1,0,1_1,1_0 -5354,2.0,9.0,60.0,112,37,20,0.0,3137,0.0,115.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,835.9733988566495,3797.0,0.0,26822.0,1,1,10,0.0,2,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,17881.333333333332,3,0,3_0,3_1 -5355,1.0,9.0,23.0,112,53,71,2.0,3138,0.0,450.0,0.0,180.0,2.0,4.0,2.0,4.0,2.1,2348.6698027971916,0.0,3800.0,26993.0,1,3,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12853.809523809523,2,0,2_1,2_1 -5356,2.0,10.0,50.0,111,37,50,0.0,3139,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1608.1305087694268,0.0,0.0,79455.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,52970.0,5,0,5,5_0 -5357,11.0,14.0,60.0,112,11,12,0.0,3141,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1349.679194109781,0.0,0.0,119472.0,1,1,6,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,79648.0,5,0,5,5_1 -5358,4.0,4.0,38.0,120,47,31,0.0,3142,0.0,200.0,400.0,0.0,2.0,4.0,2.0,4.0,2.1,7739.9710500111805,2080.0,0.0,55612.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26481.90476190476,4,0,4_0,4_1 -5359,1.0,1.0,61.0,111,74,42,1.0,3143,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3507.1100542125546,0.0,10950.0,46417.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,30944.666666666668,5,0,5,5_0 -5360,3.0,3.0,54.0,111,48,43,0.0,3144,0.0,64.0,0.0,415.0,2.0,5.0,3.0,5.0,2.6,1153.3694549780603,0.0,0.0,65193.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25074.23076923077,4,0,4_0,4_0 -5361,7.0,11.0,35.0,112,13,31,0.0,3145,0.0,450.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2361.3985610674795,0.0,0.0,34331.0,1,2,9,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,14304.583333333334,2,0,2_0,2_1 -5362,2.0,10.0,22.0,112,65,71,0.0,3146,0.0,400.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2914.0720115774757,2600.0,0.0,27346.0,1,3,6,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,18230.666666666668,3,0,3_0,3_1 -5363,4.0,12.0,42.0,111,56,33,0.0,3149,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3029.8287581028007,361.0,0.0,20099.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,8738.695652173914,1,0,1_0,1_0 -5364,8.0,11.0,60.0,112,74,20,0.0,3150,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1720.5870241877735,0.0,0.0,25221.0,5,1,10,5.0,5,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16814.0,2,0,2_0,2_0 -5365,3.0,9.0,54.0,111,78,50,0.0,3151,0.0,0.0,0.0,104.0,0.0,3.0,1.0,3.0,2.0,3433.6703439684347,1040.0,0.0,14456.0,7,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,7228.0,1,0,1_1,1_0 -5366,1.0,1.0,60.0,111,75,41,1.0,3153,0.0,0.0,0.0,428.0,0.0,3.0,0.0,2.0,1.5,3073.3458848665564,0.0,11273.0,35731.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23820.666666666668,4,0,4_0,4_0 -5367,2.0,7.0,53.0,112,47,31,0.0,3154,0.0,350.0,300.0,0.0,2.0,5.0,1.0,3.0,2.0,1041.2045132635324,2288.0,0.0,38602.0,1,2,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,19301.0,3,0,3_0,3_1 -5368,10.0,57.0,62.0,111,75,41,0.0,3156,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2097.980570698764,0.0,0.0,34407.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,22938.0,4,0,4_0,4_0 -5369,9.0,15.0,47.0,300,63,44,0.0,3158,0.0,60.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1391.3681389091105,0.0,0.0,21516.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,8965.0,1,0,1_1,1_1 -5370,1.0,8.0,49.0,221,38,42,2.0,3159,0.0,1000.0,200.0,538.0,2.0,7.0,3.0,5.0,3.0,2501.144878806943,5720.0,4500.0,83505.0,1,3,1,1.0,4,3.0,0.0,1.0,0,1,0,0,0,1,1.0,2.0,27835.0,4,0,4_1,4_0 -5371,8.0,11.0,44.0,112,34,20,0.0,3160,0.0,200.0,0.0,0.0,2.0,7.0,4.0,6.0,3.3,1803.6738944609835,2190.0,0.0,81583.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24722.121212121212,4,0,4_0,4_1 -5372,2.0,2.0,68.0,111,74,12,0.0,3161,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,953.3943051901816,0.0,0.0,48621.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,32414.0,5,0,5,5_0 -5373,3.0,6.0,24.0,111,64,50,0.0,3167,0.0,230.0,0.0,690.0,2.0,3.0,0.0,2.0,1.5,2969.3793881341903,0.0,0.0,31760.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21173.333333333332,3,0,3_0,3_0 -5374,1.0,15.0,29.0,120,62,44,2.0,3170,0.0,400.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3060.486508419527,5487.0,500.0,29075.0,1,3,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,1,0.0,2.0,13845.238095238095,2,0,2_1,2_1 -5375,0.0,10.0,71.0,111,78,71,2.0,3171,0.0,0.0,0.0,128.0,1.0,5.0,1.0,4.0,2.5,3659.656710836596,1082.0,3000.0,21184.0,5,3,8,6.0,5,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8473.6,1,0,1_1,1_0 -5376,6.0,6.0,60.0,111,78,70,0.0,3173,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4056.576885641934,0.0,0.0,30239.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,20159.333333333332,3,0,3_0,3_0 -5377,3.0,3.0,47.0,111,37,10,0.0,3174,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,3306.934573242284,0.0,0.0,84273.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,46818.333333333336,5,0,5,5_0 -5378,12.0,12.0,77.0,112,74,50,0.0,3176,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1524.3981174065666,0.0,0.0,22792.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15194.666666666666,2,0,2_0,2_1 -5379,5.0,5.0,55.0,112,67,71,0.0,3178,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2805.197294276587,2725.0,0.0,33000.0,4,1,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22000.0,4,0,4_0,4_0 -5380,7.0,11.0,80.0,400,71,70,0.0,3181,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1806.6585379546977,0.0,0.0,14671.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9780.666666666666,1,0,1_0,1_1 -5381,5.0,8.0,26.0,111,63,50,0.0,3184,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2229.1830760654407,0.0,0.0,23330.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,11109.52380952381,1,0,1_0,1_0 -5382,6.0,6.0,57.0,111,38,12,0.0,3185,0.0,125.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1962.0948828268076,3317.0,0.0,54047.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,36031.333333333336,5,0,5,5_0 -5383,2.0,2.0,34.0,111,47,31,0.0,3186,0.0,300.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3515.755760851028,3068.0,0.0,39655.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,39655.0,5,0,5,5_0 -5384,0.0,0.0,55.0,111,46,71,0.0,3187,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,4047.1804729435858,0.0,0.0,38172.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25448.0,4,0,4_0,4_0 -5385,0.0,12.0,28.0,112,55,31,0.0,3188,0.0,320.0,320.0,0.0,2.0,6.0,0.0,2.0,1.5,2420.969565688291,0.0,0.0,77570.0,1,2,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,51713.333333333336,5,0,5,5_1 -5386,0.0,0.0,59.0,111,54,31,0.0,3190,0.0,0.0,0.0,423.0,3.0,3.0,1.0,3.0,2.0,3006.904522657889,0.0,0.0,29010.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14505.0,2,0,2_0,2_0 -5387,0.0,0.0,26.0,111,46,12,0.0,3191,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4209.767126130429,0.0,0.0,26227.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,26227.0,4,0,4_1,4_0 -5388,5.0,13.0,47.0,111,65,50,0.0,3193,0.0,0.0,350.0,320.0,1.0,2.0,0.0,1.0,1.0,3033.864568310367,2080.0,0.0,18862.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18862.0,3,0,3_0,3_0 -5389,1.0,14.0,31.0,111,55,43,2.0,3194,0.0,350.0,0.0,32.0,1.0,3.0,1.0,2.0,1.3,3066.191451011608,1040.0,1500.0,22270.0,1,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,17130.76923076923,3,0,3_1,3_0 -5390,2.0,2.0,29.0,212,33,10,0.0,3195,0.0,450.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1821.335823340186,3120.0,0.0,41194.0,1,2,2,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22885.555555555555,4,0,4_0,4_1 -5391,11.0,11.0,38.0,300,11,50,0.0,3197,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1549.0321687227306,842.0,0.0,31095.0,1,4,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,11959.615384615385,1,0,1_0,1_1 -5392,12.0,13.0,71.0,111,75,41,0.0,3198,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2601.7404636168344,1503.0,0.0,46192.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,30794.666666666668,5,0,5,5_0 -5393,14.0,14.0,68.0,112,74,10,0.0,32,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3495.063291618568,3112.0,0.0,98340.0,5,4,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,65560.0,5,0,5,5_0 -5394,4.0,11.0,23.0,112,63,60,0.0,320,0.0,250.0,0.0,354.0,2.0,2.0,0.0,2.0,1.5,3090.5085729660964,0.0,0.0,36755.0,1,3,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24503.333333333332,4,0,4_0,4_1 -5395,16.0,16.0,52.0,112,68,71,0.0,3203,0.0,0.0,200.0,0.0,1.0,4.0,2.0,4.0,2.3,2583.999380556473,6240.0,0.0,28264.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,12288.695652173914,1,0,1_1,1_1 -5396,14.0,14.0,45.0,111,55,50,0.0,3204,0.0,0.0,8.0,17.0,1.0,4.0,2.0,3.0,1.8,1220.4054449685184,1043.0,0.0,17959.0,2,3,6,4.0,2,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,9977.222222222223,1,0,1_1,1_0 -5397,11.0,11.0,61.0,111,74,41,0.0,3205,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2956.345253706885,1820.0,0.0,39239.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,26159.333333333332,4,0,4_0,4_0 -5398,1.0,1.0,63.0,112,75,41,1.0,3207,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1755.6375947952224,2335.0,25000.0,55402.0,5,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,36934.666666666664,5,0,5,5_1 -5399,16.0,16.0,81.0,211,72,42,0.0,3209,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2189.2084499343528,0.0,0.0,28656.0,5,1,3,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19104.0,3,0,3_0,3_0 -5400,0.0,6.0,52.0,112,53,50,2.0,321,0.0,0.0,99999.0,0.0,1.0,6.0,1.0,3.0,2.0,1162.3499632782725,1040.0,5840.0,36607.0,1,1,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,18303.5,3,0,3_0,3_1 -5401,0.0,7.0,21.0,111,84,41,0.0,3210,0.0,0.0,0.0,250.0,0.0,2.0,0.0,2.0,1.5,4299.554232591206,2701.0,0.0,4946.0,3,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,3297.3333333333335,1,0,1_1,1_0 -5402,0.0,0.0,70.0,111,75,12,0.0,3212,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2556.173936554413,0.0,0.0,12138.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12138.0,1,0,1_1,1_0 -5403,1.0,1.0,60.0,112,78,71,0.0,3214,0.0,350.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2844.0070006433507,2639.0,0.0,28810.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19206.666666666668,3,0,3_0,3_1 -5404,6.0,8.0,29.0,111,52,50,0.0,3216,0.0,0.0,50.0,0.0,2.0,4.0,2.0,4.0,2.1,1700.6601443264838,1925.0,0.0,36646.0,1,2,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17450.47619047619,3,0,3_0,3_0 -5405,1.0,1.0,77.0,120,77,71,1.0,3217,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3536.3711559433305,0.0,11600.0,10157.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10157.0,1,0,1_0,1_1 -5406,0.0,0.0,21.0,111,84,20,0.0,3218,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,7779.891909080402,0.0,0.0,7177.0,3,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7177.0,1,0,1_1,1_0 -5407,3.0,3.0,40.0,111,31,10,0.0,3219,0.0,100.0,0.0,0.0,2.0,9.0,6.0,8.0,3.7,758.1009068520959,3507.0,0.0,259955.0,1,2,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,70258.1081081081,5,0,5,5_0 -5408,0.0,13.0,31.0,111,55,60,0.0,3221,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,2278.017134602584,1560.0,0.0,17366.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,10853.75,1,0,1_1,1_0 -5409,2.0,8.0,57.0,112,46,41,0.0,3222,0.0,750.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1716.3220105336468,6346.0,0.0,281851.0,1,2,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,140925.5,5,0,5,5_1 -5410,13.0,13.0,50.0,111,22,50,0.0,3223,0.0,0.0,0.0,0.0,2.0,7.0,2.0,3.0,2.0,2598.928061475271,2820.0,0.0,15680.0,4,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,7840.0,1,0,1_1,1_0 -5411,11.0,12.0,45.0,111,62,42,0.0,3224,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2202.18640639673,0.0,0.0,62822.0,1,2,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,29915.238095238095,5,0,5,5_0 -5412,2.0,2.0,39.0,112,38,12,0.0,3225,0.0,500.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1636.5953478519966,2965.0,0.0,57798.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,27522.85714285714,4,0,4_0,4_1 -5413,14.0,15.0,59.0,111,22,20,0.0,3227,0.0,0.0,0.0,875.0,1.0,3.0,0.0,1.0,1.0,2899.5570268750153,0.0,0.0,-6960.0,1,3,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,-6960.0,1,0,1_0,1_0 -5414,0.0,0.0,41.0,111,81,71,0.0,3228,0.0,0.0,0.0,0.0,1.0,5.0,5.0,6.0,2.9,3027.8672486443634,0.0,0.0,21968.0,4,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7575.172413793103,1,0,1_1,1_0 -5415,12.0,16.0,65.0,400,74,10,0.0,3229,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1937.1412315631999,0.0,0.0,30172.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20114.666666666668,3,0,3_0,3_1 -5416,0.0,0.0,57.0,111,37,10,1.0,323,0.0,0.0,180.0,0.0,1.0,3.0,0.0,1.0,1.0,3325.200048833478,2065.0,21533.0,38300.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,38300.0,5,0,5,5_0 -5417,0.0,0.0,93.0,111,77,70,0.0,3230,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2691.8454600607915,0.0,0.0,17250.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17250.0,3,0,3_0,3_0 -5418,2.0,2.0,36.0,111,38,10,0.0,3231,0.0,100.0,150.0,1100.0,2.0,4.0,1.0,3.0,1.8,3544.2085508209584,3172.0,0.0,98072.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,54484.444444444445,5,0,5,5_0 -5419,3.0,6.0,40.0,111,48,50,0.0,3232,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2508.4497164007594,1768.0,0.0,46675.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,22226.190476190477,4,0,4_0,4_0 -5420,15.0,15.0,59.0,300,21,70,0.0,3233,0.0,690.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,691.5812160522004,10007.0,0.0,48896.0,1,1,0,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,24448.0,4,0,4_0,4_1 -5421,0.0,0.0,75.0,120,71,71,0.0,3234,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3016.206536847871,0.0,0.0,11780.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11780.0,1,0,1_0,1_1 -5422,2.0,9.0,31.0,300,62,60,0.0,3235,0.0,300.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1820.7959780506353,0.0,0.0,35046.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19470.0,3,0,3_0,3_1 -5423,3.0,4.0,28.0,300,38,44,0.0,3236,0.0,100.0,210.0,0.0,2.0,5.0,2.0,4.0,2.1,1066.2053320687673,1342.0,0.0,46673.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22225.238095238095,4,0,4_0,4_1 -5424,0.0,0.0,60.0,111,78,50,0.0,3237,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1033.3838600542208,0.0,0.0,22444.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14962.666666666666,2,0,2_0,2_0 -5425,6.0,10.0,67.0,112,77,70,0.0,3239,0.0,99999.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1766.1839969068749,0.0,0.0,32975.0,5,1,6,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21983.333333333332,4,0,4_0,4_1 -5426,4.0,4.0,71.0,111,74,12,0.0,324,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2034.9269412916199,2207.0,0.0,85486.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,56990.666666666664,5,0,5,5_0 -5427,1.0,7.0,44.0,111,65,60,0.0,3240,0.0,200.0,0.0,226.0,1.0,3.0,1.0,3.0,1.8,4287.650751043158,780.0,0.0,24792.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13773.333333333332,2,0,2_1,2_0 -5428,2.0,2.0,40.0,111,67,71,0.0,3241,0.0,800.0,100.0,0.0,3.0,4.0,2.0,4.0,2.5,2957.877944537268,1594.0,0.0,56206.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,22482.4,4,0,4_0,4_0 -5429,0.0,0.0,84.0,111,75,70,0.0,3245,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2861.776219870092,0.0,0.0,30755.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30755.0,5,0,5,5_0 -5430,3.0,14.0,44.0,400,68,50,0.0,3246,0.0,868.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,2580.7573357316915,2811.0,0.0,16080.0,4,1,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,10050.0,1,0,1_0,1_1 -5431,2.0,2.0,88.0,111,72,70,0.0,3247,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3109.1746947288293,0.0,0.0,26420.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17613.333333333332,3,0,3_0,3_0 -5432,3.0,15.0,58.0,111,63,50,0.0,3248,0.0,99999.0,0.0,250.0,1.0,4.0,3.0,5.0,2.4,1813.9794566109406,0.0,0.0,35062.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14609.166666666668,2,0,2_1,2_0 -5433,7.0,9.0,56.0,111,78,70,0.0,3250,0.0,150.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1745.6422097099764,0.0,0.0,26486.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17657.333333333332,3,0,3_0,3_0 -5434,0.0,4.0,48.0,111,54,50,0.0,3252,0.0,0.0,0.0,520.0,1.0,2.0,0.0,1.0,1.0,2682.3886654956987,0.0,0.0,23800.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23800.0,4,0,4_0,4_0 -5435,0.0,0.0,55.0,221,55,60,0.0,3253,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2003.2674810575566,0.0,0.0,9587.0,1,1,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9587.0,1,0,1_0,1_0 -5436,14.0,15.0,67.0,111,77,71,0.0,3254,0.0,0.0,0.0,315.0,1.0,3.0,1.0,3.0,2.0,2498.0323174912173,1040.0,0.0,31864.0,5,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,15932.0,2,0,2_1,2_0 -5437,5.0,18.0,73.0,111,78,71,0.0,3255,0.0,0.0,0.0,265.0,2.0,4.0,3.0,5.0,3.0,3093.6132823431326,0.0,0.0,43372.0,5,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,14457.333333333334,2,0,2_1,2_0 -5438,18.0,21.0,59.0,212,47,70,0.0,3256,0.0,0.0,100.0,0.0,1.0,5.0,0.0,2.0,1.5,1429.0817574769894,983.0,0.0,36640.0,1,1,2,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24426.666666666668,4,0,4_0,4_1 -5439,4.0,11.0,46.0,111,52,50,0.0,3257,0.0,0.0,0.0,484.0,2.0,4.0,1.0,3.0,2.0,3876.6559294034655,0.0,0.0,28898.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,14449.0,2,0,2_0,2_0 -5440,5.0,9.0,59.0,111,34,10,0.0,3258,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1087.8393496460658,1560.0,0.0,61002.0,1,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,40668.0,5,0,5,5_0 -5441,3.0,6.0,74.0,112,78,50,0.0,3259,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1944.8772516949878,0.0,0.0,19320.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12880.0,2,0,2_0,2_1 -5442,14.0,14.0,80.0,112,72,50,0.0,326,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3319.56412237985,0.0,0.0,41458.0,5,1,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20729.0,3,0,3_0,3_0 -5443,1.0,1.0,65.0,112,77,70,2.0,3262,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4057.2843758573313,0.0,14300.0,22574.0,5,3,8,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,22574.0,4,0,4_1,4_0 -5444,0.0,0.0,62.0,111,78,71,0.0,3263,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3134.4152554517136,0.0,0.0,15161.0,5,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10107.333333333334,1,0,1_1,1_0 -5445,3.0,3.0,32.0,221,22,10,0.0,3265,0.0,0.0,0.0,740.0,2.0,3.0,1.0,3.0,1.8,3918.51680434173,2860.0,0.0,14239.0,1,3,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,7910.555555555556,1,0,1_0,1_0 -5446,16.0,17.0,63.0,112,78,50,0.0,3267,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1480.2799175696673,2605.0,0.0,32323.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,21548.666666666668,3,0,3_0,3_0 -5447,8.0,8.0,65.0,112,75,31,0.0,3268,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,3889.0579581738994,0.0,0.0,56232.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,37488.0,5,0,5,5_1 -5448,6.0,15.0,39.0,111,65,50,0.0,327,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,3339.6414799208324,2306.0,0.0,5610.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,5610.0,1,0,1_0,1_0 -5449,8.0,8.0,65.0,211,77,70,0.0,3271,0.0,0.0,0.0,453.0,0.0,3.0,0.0,1.0,1.0,2188.927906134064,0.0,0.0,18840.0,5,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18840.0,3,0,3_0,3_0 -5450,0.0,0.0,60.0,400,55,70,0.0,3273,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1483.7151823130844,0.0,0.0,24546.0,5,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24546.0,4,0,4_0,4_0 -5451,4.0,12.0,48.0,111,68,71,0.0,3275,0.0,220.0,0.0,346.0,1.0,4.0,0.0,2.0,1.5,4374.617947605264,0.0,0.0,30931.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20620.666666666668,3,0,3_0,3_0 -5452,0.0,0.0,94.0,112,75,50,0.0,3276,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2389.132821934647,0.0,0.0,27619.0,5,1,5,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27619.0,4,0,4_0,4_1 -5453,2.0,4.0,30.0,111,34,20,0.0,3277,0.0,90.0,0.0,610.0,1.0,2.0,0.0,1.0,1.0,4363.981536565815,0.0,0.0,23944.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23944.0,4,0,4_0,4_0 -5454,6.0,6.0,64.0,120,74,50,0.0,3278,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3244.898504479038,7697.0,0.0,45500.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30333.333333333332,5,0,5,5_1 -5455,0.0,0.0,85.0,111,86,71,0.0,3279,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2155.1329300622515,0.0,0.0,10839.0,6,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10839.0,1,0,1_0,1_0 -5456,15.0,15.0,53.0,111,45,50,0.0,328,0.0,0.0,0.0,537.0,1.0,3.0,1.0,2.0,1.5,3510.745044968611,0.0,0.0,25664.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17109.333333333332,3,0,3_0,3_0 -5457,2.0,2.0,73.0,111,74,12,0.0,3280,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2339.918535196796,3327.0,0.0,128359.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,128359.0,5,0,5,5_0 -5458,3.0,5.0,44.0,111,54,50,0.0,3281,0.0,150.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1827.1443149951763,0.0,0.0,24657.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18966.923076923078,3,0,3_0,3_0 -5459,15.0,15.0,40.0,111,55,43,0.0,3282,0.0,0.0,200.0,0.0,1.0,3.0,0.0,1.0,1.0,3433.3566498034747,2600.0,0.0,14389.0,1,2,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,14389.0,2,0,2_1,2_0 -5460,11.0,13.0,41.0,111,64,50,0.0,3284,0.0,0.0,16.0,162.0,1.0,3.0,1.0,2.0,1.5,2469.76834833758,0.0,0.0,20778.0,1,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,13852.0,2,0,2_1,2_0 -5461,10.0,15.0,46.0,221,64,50,0.0,3287,0.0,300.0,0.0,250.0,1.0,1.0,0.0,1.0,1.0,5070.374054836608,0.0,0.0,20680.0,1,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20680.0,3,0,3_0,3_0 -5462,0.0,0.0,43.0,111,34,20,1.0,3288,0.0,0.0,400.0,0.0,2.0,5.0,4.0,6.0,2.7,2085.1825051377923,4160.0,26500.0,102481.0,1,4,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,37955.92592592593,5,0,5,5_0 -5463,12.0,12.0,53.0,300,38,31,0.0,3289,0.0,300.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1386.0483197612434,4160.0,0.0,73857.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29542.8,5,0,5,5_1 -5464,6.0,9.0,66.0,111,74,31,0.0,329,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2316.2983173501175,0.0,0.0,35163.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,35163.0,5,0,5,5_0 -5465,3.0,11.0,56.0,111,47,50,0.0,3290,0.0,150.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,3076.5809732093558,1560.0,0.0,19712.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,19712.0,3,0,3_0,3_0 -5466,7.0,14.0,77.0,112,71,70,0.0,3292,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2155.5311399265015,0.0,0.0,38589.0,5,4,6,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,38589.0,5,0,5,5_1 -5467,3.0,10.0,41.0,111,21,30,0.0,3293,0.0,0.0,0.0,230.0,1.0,2.0,0.0,1.0,1.0,3659.426988975299,341.0,0.0,4358.0,1,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,4358.0,1,0,1_1,1_0 -5468,13.0,13.0,63.0,111,72,43,0.0,3294,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1258.9930210194418,1262.0,0.0,39982.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,26654.666666666668,4,0,4_0,4_0 -5469,0.0,7.0,28.0,111,38,12,0.0,3295,0.0,250.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3534.903669586187,0.0,0.0,31529.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,31529.0,5,0,5,5_0 -5470,1.0,1.0,41.0,120,34,12,1.0,3296,0.0,200.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1199.3193920673718,2296.0,23000.0,52571.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21904.583333333336,4,0,4_0,4_1 -5471,2.0,2.0,49.0,211,43,50,0.0,3297,0.0,1320.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3442.436257593905,5694.0,0.0,64370.0,1,1,3,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,42913.333333333336,5,0,5,5_0 -5472,5.0,7.0,55.0,111,63,60,0.0,3298,0.0,100.0,0.0,0.0,4.0,4.0,4.0,6.0,3.5,1072.5820258986228,6062.0,0.0,77140.0,1,2,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,22040.0,4,0,4_0,4_0 -5473,0.0,0.0,30.0,111,34,10,0.0,3299,0.0,0.0,0.0,366.0,1.0,1.0,0.0,1.0,1.0,3027.312082152899,0.0,0.0,22270.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22270.0,4,0,4_0,4_0 -5474,1.0,1.0,57.0,112,52,50,1.0,330,0.0,8000.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1526.9357387592352,0.0,36000.0,37070.0,1,1,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,37070.0,5,0,5,5_1 -5475,0.0,0.0,76.0,111,77,60,0.0,3301,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4421.706591456032,0.0,0.0,18640.0,5,3,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18640.0,3,0,3_0,3_0 -5476,3.0,6.0,21.0,111,63,43,0.0,3302,0.0,0.0,0.0,0.0,4.0,3.0,1.0,4.0,2.5,3729.27456330297,0.0,0.0,60758.0,1,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,24303.2,4,0,4_0,4_0 -5477,13.0,13.0,84.0,400,74,42,0.0,3303,0.0,0.0,0.0,0.0,0.0,10.0,0.0,1.0,1.0,2822.2288390498065,4680.0,0.0,21167.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21167.0,3,0,3_0,3_1 -5478,3.0,6.0,54.0,111,33,71,0.0,3304,0.0,0.0,99999.0,0.0,2.0,5.0,1.0,3.0,2.0,2518.4332735302255,2080.0,0.0,68040.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,34020.0,5,0,5,5_0 -5479,19.0,27.0,70.0,111,56,70,0.0,3305,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1171.8793077754447,1560.0,0.0,25350.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25350.0,4,0,4_0,4_0 -5480,2.0,2.0,63.0,111,75,41,0.0,3306,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2677.201291177182,0.0,0.0,46659.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,31106.0,5,0,5,5_0 -5481,5.0,19.0,39.0,400,63,43,0.0,3307,0.0,0.0,100.0,0.0,2.0,4.0,4.0,6.0,3.1,4628.653568619504,250.0,0.0,46708.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15067.096774193547,2,0,2_0,2_1 -5482,0.0,0.0,50.0,111,54,31,0.0,331,0.0,0.0,0.0,505.0,1.0,1.0,0.0,1.0,1.0,3631.1510215922654,0.0,0.0,26063.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26063.0,4,0,4_0,4_0 -5483,0.0,0.0,85.0,111,75,70,0.0,3310,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2624.4483389660177,0.0,0.0,28800.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28800.0,4,0,4_0,4_0 -5484,9.0,11.0,76.0,111,78,50,0.0,3312,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1265.2654265187844,0.0,0.0,25753.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17168.666666666668,3,0,3_0,3_0 -5485,0.0,15.0,48.0,111,55,50,2.0,3313,0.0,0.0,0.0,350.0,2.0,5.0,1.0,2.0,1.5,3800.25576470891,2406.0,700.0,25603.0,4,3,6,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17068.666666666668,3,0,3_0,3_0 -5486,2.0,10.0,39.0,111,62,44,0.0,3315,0.0,500.0,0.0,137.0,2.0,3.0,0.0,2.0,1.5,2063.958783042598,1040.0,0.0,25036.0,4,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,16690.666666666668,2,0,2_1,2_0 -5487,0.0,0.0,43.0,111,85,71,0.0,3317,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3021.374012051643,0.0,0.0,12295.0,7,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12295.0,1,0,1_1,1_0 -5488,2.0,2.0,56.0,111,52,50,0.0,3318,0.0,100.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,869.673734291981,879.0,0.0,31963.0,1,1,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21308.666666666668,3,0,3_0,3_0 -5489,0.0,0.0,22.0,111,84,20,0.0,3319,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2819.985687807714,0.0,0.0,8111.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8111.0,1,0,1_1,1_0 -5490,0.0,0.0,59.0,111,78,50,0.0,332,0.0,0.0,0.0,115.0,0.0,3.0,0.0,1.0,1.0,3095.102316657215,0.0,0.0,5570.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,5570.0,1,0,1_1,1_0 -5491,3.0,4.0,80.0,111,74,20,0.0,3320,0.0,0.0,0.0,0.0,0.0,5.0,0.0,4.0,2.5,1053.3146887616485,2340.0,0.0,81272.0,5,1,8,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,32508.8,5,0,5,5_0 -5492,2.0,2.0,67.0,300,74,31,0.0,3324,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2290.618218403288,0.0,0.0,50694.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,33796.0,5,0,5,5_1 -5493,6.0,7.0,55.0,111,67,50,0.0,3328,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1490.399708202154,0.0,0.0,40179.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,40179.0,5,0,5,5_0 -5494,6.0,20.0,39.0,300,62,31,0.0,3329,0.0,500.0,150.0,0.0,2.0,6.0,2.0,4.0,2.3,1311.6279885710494,4161.0,0.0,38168.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16594.782608695652,2,0,2_0,2_1 -5495,8.0,8.0,65.0,111,75,31,0.0,3332,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1948.339447696177,0.0,0.0,25651.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25651.0,4,0,4_0,4_0 -5496,3.0,3.0,75.0,111,77,50,0.0,3334,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2774.1168091212603,0.0,0.0,27176.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27176.0,4,0,4_0,4_0 -5497,1.0,1.0,22.0,112,52,41,0.0,3338,0.0,250.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2622.186944900243,0.0,0.0,29087.0,1,2,9,0.0,4,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,16159.444444444443,2,0,2_1,2_1 -5498,2.0,2.0,47.0,112,42,12,0.0,3339,0.0,350.0,0.0,0.0,2.0,8.0,3.0,5.0,2.8,928.6005556631156,3668.0,0.0,43365.0,1,1,8,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,15487.500000000002,2,0,2_0,2_1 -5499,4.0,4.0,42.0,120,48,60,0.0,3340,0.0,0.0,40.0,368.0,1.0,4.0,0.0,1.0,1.0,6716.093050097976,3076.0,0.0,21760.0,1,3,0,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21760.0,4,0,4_0,4_0 -5500,1.0,7.0,75.0,400,78,71,2.0,3342,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2503.109397766893,0.0,7000.0,23407.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15604.666666666666,2,0,2_0,2_1 -5501,6.0,6.0,64.0,111,75,41,0.0,3344,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2292.9586039259034,0.0,0.0,17030.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11353.333333333334,1,0,1_0,1_0 -5502,10.0,10.0,48.0,111,47,50,0.0,3348,0.0,0.0,350.0,0.0,1.0,3.0,0.0,1.0,1.0,2430.050904493134,0.0,0.0,17778.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,17778.0,3,0,3_0,3_0 -5503,9.0,9.0,52.0,111,21,50,0.0,3349,0.0,0.0,120.0,0.0,3.0,4.0,2.0,4.0,2.5,2699.1638541655134,0.0,0.0,85330.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,34132.0,5,0,5,5_0 -5504,4.0,8.0,37.0,111,54,43,0.0,335,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2182.675667145531,2081.0,0.0,44666.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21269.52380952381,3,0,3_0,3_0 -5505,3.0,12.0,69.0,400,74,44,0.0,3351,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3577.8560864311235,1575.0,0.0,27598.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18398.666666666668,3,0,3_0,3_1 -5506,2.0,2.0,74.0,112,75,60,0.0,3352,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2659.2922692836437,0.0,0.0,41784.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27856.0,4,0,4_0,4_0 -5507,0.0,0.0,45.0,111,85,50,0.0,3353,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4425.357713596701,0.0,0.0,8775.0,7,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8775.0,1,0,1_0,1_0 -5508,0.0,22.0,24.0,111,62,50,0.0,3354,0.0,150.0,0.0,20.0,1.0,2.0,0.0,1.0,1.0,2540.5428356265074,1822.0,0.0,13726.0,4,3,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13726.0,2,0,2_1,2_0 -5509,0.0,3.0,44.0,111,85,41,0.0,3355,0.0,0.0,0.0,754.0,2.0,4.0,2.0,4.0,2.5,4027.859781283933,0.0,0.0,16972.0,6,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,1,1.0,0.0,6788.8,1,0,1_1,1_0 -5510,3.0,12.0,30.0,111,85,71,0.0,3358,0.0,210.0,0.0,0.0,1.0,4.0,5.0,8.0,3.5,2493.0092526328617,0.0,0.0,44294.0,6,3,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,12655.42857142857,2,0,2_1,2_0 -5511,20.0,32.0,49.0,112,52,60,0.0,336,0.0,208.0,0.0,0.0,1.0,8.0,0.0,1.0,1.0,1682.4221332444654,2416.0,0.0,15630.0,1,2,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15630.0,2,0,2_0,2_1 -5512,0.0,0.0,42.0,300,11,50,0.0,3361,0.0,0.0,0.0,0.0,3.0,6.0,3.0,5.0,2.6,1183.9638750468496,0.0,0.0,35847.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13787.307692307691,2,0,2_0,2_1 -5513,0.0,0.0,78.0,112,77,50,0.0,3362,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2856.88229804661,0.0,0.0,19266.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19266.0,3,0,3_0,3_1 -5514,6.0,6.0,57.0,112,68,70,0.0,3363,0.0,0.0,130.0,0.0,1.0,5.0,1.0,2.0,1.5,3002.0896179390097,0.0,0.0,27632.0,1,2,7,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,18421.333333333332,3,0,3_0,3_0 -5515,12.0,22.0,49.0,300,46,50,0.0,3364,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2753.039482816628,2607.0,0.0,40811.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20405.5,3,0,3_0,3_1 -5516,2.0,26.0,42.0,300,21,41,0.0,3365,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,2201.1140280975533,0.0,0.0,18030.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8585.714285714286,1,0,1_0,1_1 -5517,2.0,4.0,47.0,111,63,50,0.0,3366,0.0,500.0,0.0,0.0,4.0,4.0,2.0,4.0,2.5,1452.2603942509068,0.0,0.0,54070.0,1,1,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,21628.0,3,0,3_0,3_0 -5518,0.0,0.0,77.0,111,78,71,0.0,3367,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3133.344628214943,0.0,0.0,20451.0,5,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13634.0,2,0,2_0,2_0 -5519,1.0,2.0,23.0,221,34,10,1.0,3368,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2489.1194727737907,4302.0,9100.0,14066.0,1,3,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,14066.0,2,0,2_1,2_0 -5520,10.0,21.0,48.0,112,67,60,0.0,337,0.0,400.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2383.3706749463695,4162.0,0.0,34410.0,1,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22940.0,4,0,4_0,4_1 -5521,9.0,9.0,54.0,111,52,71,0.0,3370,0.0,0.0,50.0,297.0,2.0,3.0,1.0,2.0,1.5,3205.3433602623863,1040.0,0.0,19258.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,12838.666666666666,2,0,2_0,2_0 -5522,20.0,20.0,58.0,120,78,50,0.0,3371,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1301.1948561466115,0.0,0.0,17031.0,7,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17031.0,3,0,3_0,3_0 -5523,1.0,1.0,67.0,111,37,50,1.0,3374,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3025.921621765115,0.0,13900.0,34071.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34071.0,5,0,5,5_0 -5524,13.0,15.0,68.0,111,74,31,0.0,3375,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,3853.108032837912,3029.0,0.0,28679.0,5,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19119.333333333332,3,0,3_0,3_0 -5525,3.0,7.0,29.0,111,46,10,0.0,3376,0.0,300.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1263.2755803834068,0.0,0.0,18596.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18596.0,3,0,3_0,3_0 -5526,2.0,4.0,39.0,112,47,20,0.0,3377,0.0,150.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,938.2294761397,5357.0,0.0,41260.0,1,1,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,17191.666666666668,3,0,3_0,3_0 -5527,5.0,14.0,37.0,120,64,50,0.0,3378,0.0,90.0,0.0,360.0,2.0,5.0,2.0,4.0,2.1,2087.0969141270507,5582.0,0.0,30368.0,1,3,0,2.0,4,3.0,0.0,1.0,0,1,0,0,0,1,1.0,2.0,14460.95238095238,2,0,2_1,2_0 -5528,0.0,22.0,20.0,111,84,41,0.0,3380,0.0,0.0,600.0,265.0,0.0,2.0,0.0,1.0,1.0,3677.3004067902543,1560.0,0.0,11236.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,11236.0,1,0,1_1,1_0 -5529,5.0,5.0,60.0,111,42,20,0.0,3381,0.0,0.0,50.0,0.0,2.0,5.0,0.0,2.0,1.5,1479.9427713970504,0.0,0.0,74221.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,49480.666666666664,5,0,5,5_0 -5530,4.0,4.0,58.0,300,72,50,0.0,3382,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2785.396135453279,0.0,0.0,43460.0,7,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,43460.0,5,0,5,5_1 -5531,3.0,8.0,38.0,120,62,50,0.0,3383,0.0,300.0,600.0,0.0,2.0,6.0,2.0,4.0,2.1,1102.1488662438358,6682.0,0.0,46003.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21906.190476190477,4,0,4_0,4_1 -5532,0.0,0.0,84.0,111,77,70,0.0,3384,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2187.47723249671,0.0,0.0,21523.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21523.0,3,0,3_0,3_0 -5533,8.0,8.0,46.0,111,43,33,0.0,3386,0.0,100.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4271.33094644395,1300.0,0.0,29698.0,1,2,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19798.666666666668,3,0,3_0,3_0 -5534,0.0,19.0,32.0,111,52,20,0.0,3387,0.0,0.0,30.0,295.0,3.0,3.0,0.0,3.0,2.0,4761.795820034366,0.0,0.0,35020.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,17510.0,3,0,3_0,3_0 -5535,0.0,0.0,43.0,221,62,71,0.0,3389,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,3800.7843000546163,0.0,0.0,26100.0,1,1,1,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17400.0,3,0,3_0,3_0 -5536,0.0,0.0,74.0,111,77,70,0.0,3391,0.0,0.0,0.0,188.0,0.0,2.0,0.0,1.0,1.0,3342.530000329579,0.0,0.0,10312.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10312.0,1,0,1_1,1_0 -5537,0.0,0.0,24.0,111,34,10,0.0,3392,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,8257.78988770933,1300.0,0.0,10325.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10325.0,1,0,1_0,1_0 -5538,11.0,12.0,60.0,112,78,60,0.0,3393,0.0,180.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3122.525772789281,2809.0,0.0,33247.0,5,2,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,16623.5,2,0,2_0,2_1 -5539,1.0,4.0,36.0,111,34,31,2.0,3397,0.0,200.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2822.1607135661034,0.0,12000.0,43474.0,1,2,8,6.0,3,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,28982.666666666668,4,0,4_0,4_0 -5540,3.0,6.0,42.0,221,55,50,0.0,3398,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,3334.3802161051844,2664.0,0.0,59494.0,1,2,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,37183.75,5,0,5,5_0 -5541,0.0,12.0,67.0,400,78,70,2.0,3399,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2291.6180976986197,0.0,3800.0,16920.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16920.0,3,0,3_0,3_1 -5542,5.0,12.0,31.0,111,34,10,0.0,340,0.0,0.0,0.0,545.0,1.0,2.0,0.0,1.0,1.0,3620.9006194820777,0.0,0.0,65619.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,65619.0,5,0,5,5_0 -5543,2.0,4.0,31.0,111,38,20,0.0,3400,0.0,100.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1882.8191347734703,0.0,0.0,35166.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,16745.714285714286,2,0,2_0,2_0 -5544,0.0,0.0,82.0,111,78,70,0.0,3402,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2019.7293137967454,0.0,0.0,18573.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18573.0,3,0,3_0,3_0 -5545,12.0,12.0,75.0,120,71,50,0.0,3403,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1280.419965508087,0.0,0.0,17055.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11370.0,1,0,1_0,1_0 -5546,10.0,14.0,61.0,112,56,60,0.0,3404,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1618.7326008226266,3848.0,0.0,26030.0,1,1,7,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,17353.333333333332,3,0,3_0,3_1 -5547,6.0,6.0,56.0,111,34,10,0.0,3405,0.0,0.0,100.0,0.0,2.0,7.0,2.0,4.0,2.5,1128.6010712395976,0.0,0.0,155286.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,62114.4,5,0,5,5_0 -5548,6.0,10.0,46.0,112,42,30,0.0,3407,0.0,199998.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2129.9439913941537,3120.0,0.0,45643.0,1,2,8,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,19844.782608695652,3,0,3_0,3_1 -5549,7.0,16.0,34.0,111,55,42,0.0,3408,0.0,0.0,30.0,196.0,2.0,2.0,1.0,3.0,1.8,3171.303175889408,0.0,0.0,33004.0,1,3,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,18335.555555555555,3,0,3_0,3_0 -5550,0.0,12.0,65.0,112,78,50,0.0,3410,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2231.572567487214,3120.0,0.0,21483.0,5,1,4,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14322.0,2,0,2_0,2_1 -5551,3.0,7.0,37.0,112,43,10,0.0,3413,0.0,550.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1910.580232792622,0.0,0.0,46840.0,1,2,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,31226.666666666668,5,0,5,5_1 -5552,4.0,4.0,28.0,112,53,20,0.0,3414,0.0,1150.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2208.9411976010174,5460.0,0.0,43995.0,1,3,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29330.0,5,0,5,5_1 -5553,8.0,12.0,70.0,112,78,71,0.0,3415,0.0,0.0,0.0,0.0,1.0,6.0,0.0,3.0,2.0,3657.4286555475483,0.0,0.0,26830.0,5,1,5,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13415.0,2,0,2_0,2_1 -5554,9.0,11.0,50.0,112,67,50,0.0,3416,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1565.1310575940067,0.0,0.0,23720.0,1,1,7,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,23720.0,4,0,4_0,4_0 -5555,5.0,15.0,48.0,111,55,60,0.0,3417,0.0,80.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,4615.708204410891,1300.0,0.0,28386.0,1,2,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28386.0,4,0,4_0,4_0 -5556,0.0,0.0,71.0,111,77,43,0.0,3419,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2758.6817439966703,0.0,0.0,24438.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24438.0,4,0,4_0,4_0 -5557,5.0,6.0,52.0,120,54,50,0.0,342,0.0,80.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2860.9064430749213,0.0,0.0,29090.0,1,1,0,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19393.333333333332,3,0,3_0,3_0 -5558,16.0,16.0,75.0,300,77,30,0.0,3420,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1580.010554788709,0.0,0.0,52877.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,35251.333333333336,5,0,5,5_1 -5559,5.0,5.0,64.0,112,74,50,0.0,3423,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1484.8265752655484,2176.0,0.0,32490.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,21660.0,3,0,3_0,3_0 -5560,0.0,0.0,21.0,111,42,42,0.0,3424,0.0,0.0,0.0,269.0,1.0,2.0,0.0,1.0,1.0,4113.736342451141,0.0,0.0,7800.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7800.0,1,0,1_1,1_0 -5561,1.0,21.0,26.0,112,53,50,0.0,3425,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3769.1884131721417,0.0,0.0,13870.0,1,4,7,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,13870.0,2,0,2_0,2_0 -5562,0.0,17.0,38.0,400,56,50,2.0,3427,0.0,0.0,90.0,0.0,1.0,4.0,2.0,3.0,2.0,1014.2244363839815,1799.0,1000.0,25008.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,12504.0,1,0,1_1,1_1 -5563,10.0,11.0,29.0,111,37,20,0.0,3429,0.0,329.0,0.0,328.0,2.0,3.0,2.0,4.0,2.1,4256.614657121558,3120.0,0.0,63389.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,30185.238095238095,5,0,5,5_0 -5564,6.0,8.0,52.0,112,22,42,0.0,3430,0.0,0.0,0.0,181.0,2.0,5.0,1.0,2.0,1.5,2871.364111802847,0.0,0.0,12052.0,1,3,9,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,8034.666666666667,1,0,1_1,1_0 -5565,6.0,12.0,61.0,111,72,71,0.0,3433,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4177.574222741202,3102.0,0.0,32846.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,21897.333333333332,4,0,4_0,4_0 -5566,0.0,0.0,25.0,111,38,10,0.0,3435,0.0,0.0,0.0,962.0,2.0,2.0,0.0,2.0,1.5,3699.1953160556664,0.0,0.0,47427.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31618.0,5,0,5,5_0 -5567,2.0,2.0,71.0,112,75,70,0.0,3436,0.0,0.0,0.0,1.0,0.0,3.0,0.0,1.0,1.0,947.1577325476319,0.0,0.0,13190.0,5,3,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,13190.0,2,0,2_1,2_1 -5568,4.0,23.0,51.0,111,43,31,0.0,3437,0.0,0.0,100.0,0.0,2.0,4.0,1.0,3.0,1.8,4967.091149419334,1301.0,0.0,46366.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,25758.888888888887,4,0,4_0,4_0 -5569,0.0,0.0,30.0,111,85,60,0.0,3438,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,2518.5892361181723,0.0,0.0,16962.0,6,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10601.25,1,0,1_1,1_0 -5570,0.0,0.0,54.0,211,56,50,0.0,3439,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2107.98130957801,0.0,0.0,11108.0,4,3,3,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11108.0,1,0,1_1,1_0 -5571,4.0,7.0,51.0,112,47,50,0.0,344,0.0,0.0,30.0,317.0,2.0,4.0,1.0,3.0,2.0,3902.573285068076,0.0,0.0,25300.0,1,3,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,12650.0,2,0,2_0,2_0 -5572,0.0,0.0,27.0,111,35,10,0.0,3440,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3845.146005225267,0.0,0.0,22173.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,22173.0,4,0,4_1,4_0 -5573,11.0,11.0,74.0,111,74,41,0.0,3445,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3625.2555714988084,0.0,0.0,31464.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,31464.0,5,0,5,5_0 -5574,2.0,2.0,77.0,112,75,50,0.0,3446,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1268.9389762390101,1736.0,0.0,41762.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27841.333333333332,4,0,4_0,4_1 -5575,0.0,17.0,46.0,112,33,30,2.0,3447,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2325.7753004114334,3120.0,1100.0,55983.0,1,1,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22393.2,4,0,4_0,4_0 -5576,8.0,8.0,42.0,111,22,31,0.0,3448,0.0,20.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,2810.6549176487956,0.0,0.0,58760.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,32644.444444444445,5,0,5,5_0 -5577,3.0,3.0,64.0,211,77,71,0.0,3449,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3014.637779774086,0.0,0.0,24374.0,5,1,3,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,16249.333333333334,2,0,2_0,2_0 -5578,9.0,9.0,57.0,400,62,50,0.0,3451,0.0,99999.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1264.4949147171328,2080.0,0.0,49822.0,4,1,0,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,24911.0,4,0,4_0,4_0 -5579,0.0,19.0,37.0,300,65,50,0.0,3456,0.0,20.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,848.319904069689,0.0,0.0,25574.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14207.777777777777,2,0,2_0,2_1 -5580,0.0,13.0,23.0,111,84,20,0.0,3458,0.0,0.0,240.0,160.0,0.0,2.0,0.0,1.0,1.0,3086.180009567878,2949.0,0.0,17029.0,3,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,17029.0,3,0,3_1,3_0 -5581,4.0,4.0,75.0,120,71,70,0.0,3459,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1408.4814994731996,0.0,0.0,41082.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,27388.0,4,0,4_0,4_0 -5582,12.0,12.0,84.0,300,72,70,0.0,346,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1699.9780567657351,1758.0,0.0,10285.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,6856.666666666667,1,0,1_0,1_1 -5583,0.0,0.0,35.0,111,65,31,0.0,3461,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,7768.845735940512,0.0,0.0,26696.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17797.333333333332,3,0,3_0,3_0 -5584,0.0,0.0,76.0,111,75,60,0.0,3463,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3536.1086237392874,0.0,0.0,8500.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8500.0,1,0,1_0,1_0 -5585,9.0,14.0,42.0,111,34,10,0.0,3464,0.0,200.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,1540.7676490502722,0.0,0.0,39152.0,1,2,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,18643.809523809523,3,0,3_0,3_0 -5586,3.0,3.0,67.0,112,74,31,0.0,3465,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1700.4373062314635,0.0,0.0,69081.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,46054.0,5,0,5,5_1 -5587,1.0,2.0,56.0,211,62,50,0.0,3466,0.0,160.0,0.0,284.0,1.0,2.0,0.0,1.0,1.0,2133.662397676352,0.0,0.0,22737.0,1,3,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22737.0,4,0,4_0,4_0 -5588,12.0,12.0,76.0,112,74,20,0.0,3467,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3484.711901155746,4741.0,0.0,60851.0,5,1,9,3.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,40567.333333333336,5,0,5,5_0 -5589,1.0,11.0,33.0,111,45,20,2.0,3469,0.0,0.0,0.0,500.0,2.0,2.0,0.0,2.0,1.5,3547.552275891477,0.0,3500.0,22996.0,1,3,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15330.666666666666,2,0,2_0,2_0 -5590,0.0,0.0,42.0,111,62,31,0.0,347,0.0,0.0,0.0,278.0,1.0,2.0,0.0,1.0,1.0,3020.1647415720804,0.0,0.0,15640.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15640.0,2,0,2_0,2_0 -5591,3.0,10.0,36.0,111,54,10,0.0,3470,0.0,0.0,0.0,560.0,1.0,1.0,0.0,1.0,1.0,2582.2643778480237,1880.0,0.0,19226.0,4,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19226.0,3,0,3_0,3_0 -5592,7.0,11.0,44.0,211,62,50,0.0,3471,0.0,0.0,30.0,0.0,2.0,4.0,1.0,3.0,1.8,1281.3207347857142,4680.0,0.0,43195.0,1,2,1,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,23997.222222222223,4,0,4_0,4_0 -5593,0.0,0.0,52.0,111,47,20,0.0,3472,0.0,0.0,0.0,520.0,1.0,2.0,0.0,1.0,1.0,3140.804662412226,0.0,0.0,26376.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26376.0,4,0,4_0,4_0 -5594,0.0,0.0,80.0,111,71,70,0.0,3473,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2982.7696154418118,0.0,0.0,19452.0,5,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19452.0,3,0,3_0,3_0 -5595,2.0,15.0,27.0,111,42,20,0.0,3476,0.0,80.0,0.0,261.0,2.0,2.0,0.0,2.0,1.5,4660.121412723443,832.0,0.0,26981.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,17987.333333333332,3,0,3_1,3_0 -5596,0.0,10.0,37.0,111,47,50,0.0,3478,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,3337.7984906252154,0.0,0.0,22255.0,1,4,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,11127.5,1,0,1_0,1_0 -5597,1.0,1.0,25.0,111,46,31,0.0,348,0.0,420.0,0.0,420.0,2.0,2.0,0.0,2.0,1.5,3529.4520254958866,5073.0,0.0,37718.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25145.333333333332,4,0,4_0,4_0 -5598,6.0,7.0,29.0,111,43,10,0.0,3481,0.0,20.0,0.0,396.0,1.0,2.0,0.0,1.0,1.0,2896.23611638976,0.0,0.0,27081.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27081.0,4,0,4_0,4_0 -5599,0.0,0.0,35.0,111,42,43,0.0,3482,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,968.1403042706795,0.0,0.0,26702.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17801.333333333332,3,0,3_1,3_0 -5600,1.0,1.0,69.0,111,75,60,2.0,3483,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1200.589271088951,0.0,15000.0,35755.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23836.666666666668,4,0,4_0,4_0 -5601,0.0,0.0,81.0,111,78,71,0.0,3484,0.0,0.0,0.0,87.0,0.0,2.0,0.0,1.0,1.0,2616.204431678275,0.0,0.0,13040.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13040.0,2,0,2_1,2_0 -5602,0.0,0.0,23.0,111,54,31,0.0,3486,0.0,0.0,0.0,270.0,1.0,2.0,0.0,1.0,1.0,3648.0937541441267,0.0,0.0,19344.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19344.0,3,0,3_1,3_0 -5603,0.0,26.0,42.0,400,54,20,0.0,3487,0.0,99999.0,0.0,0.0,2.0,9.0,5.0,7.0,3.4,1132.7060040125762,0.0,0.0,35939.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,10570.29411764706,1,0,1_0,1_1 -5604,4.0,10.0,31.0,111,67,31,0.0,3488,0.0,0.0,450.0,385.0,1.0,2.0,0.0,1.0,1.0,3769.0628909632974,2080.0,0.0,29600.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,29600.0,5,0,5,5_0 -5605,0.0,0.0,72.0,300,78,71,0.0,3489,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1588.8946188952702,0.0,0.0,13888.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13888.0,2,0,2_0,2_1 -5606,12.0,12.0,63.0,111,75,50,0.0,349,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1531.084942429033,0.0,0.0,37530.0,5,1,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18765.0,3,0,3_0,3_0 -5607,0.0,2.0,31.0,111,34,10,0.0,3491,0.0,0.0,220.0,730.0,2.0,3.0,0.0,2.0,1.5,2896.3577973414535,0.0,0.0,71119.0,1,3,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,47412.666666666664,5,0,5,5_0 -5608,1.0,9.0,32.0,221,53,50,2.0,3492,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1707.6810712456522,3380.0,3700.0,26101.0,1,3,1,3.0,4,2.0,1.0,0.0,0,1,0,0,0,1,2.0,0.0,12429.047619047618,1,0,1_1,1_0 -5609,3.0,5.0,41.0,112,69,71,0.0,3493,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2704.615263824845,2839.0,0.0,25643.0,1,4,6,1.0,5,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17095.333333333332,3,0,3_0,3_0 -5610,0.0,1.0,38.0,111,38,12,2.0,3494,0.0,0.0,0.0,1198.0,1.0,6.0,4.0,6.0,2.7,1912.5714904656732,7578.0,21500.0,57552.0,1,3,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21315.555555555555,3,0,3_0,3_0 -5611,5.0,15.0,50.0,300,54,71,0.0,3496,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2893.638887910592,1404.0,0.0,18920.0,4,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,12613.333333333334,2,0,2_1,2_1 -5612,0.0,0.0,86.0,112,77,70,0.0,3498,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,5565.041915301562,0.0,0.0,14931.0,5,4,8,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14931.0,2,0,2_0,2_0 -5613,5.0,5.0,65.0,111,74,31,0.0,3499,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2898.006108985976,2948.0,0.0,66899.0,5,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,44599.333333333336,5,0,5,5_0 -5614,0.0,19.0,39.0,111,62,50,0.0,350,0.0,70.0,30.0,370.0,2.0,3.0,1.0,3.0,1.8,1029.0038862111853,0.0,0.0,36579.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,20321.666666666668,3,0,3_0,3_0 -5615,3.0,3.0,58.0,111,43,41,0.0,3500,0.0,0.0,0.0,275.0,1.0,4.0,0.0,1.0,1.0,2746.477763225028,1560.0,0.0,14649.0,4,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14649.0,2,0,2_1,2_0 -5616,11.0,14.0,57.0,111,62,70,0.0,3502,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1616.7925853557772,5460.0,0.0,34684.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23122.666666666668,4,0,4_0,4_0 -5617,11.0,16.0,68.0,400,78,71,0.0,3503,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2065.814515488582,1541.0,0.0,22027.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14684.666666666666,2,0,2_0,2_1 -5618,0.0,0.0,30.0,111,46,31,0.0,3504,0.0,0.0,0.0,650.0,2.0,2.0,0.0,2.0,1.5,3969.093521821193,0.0,0.0,39353.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26235.333333333332,4,0,4_0,4_0 -5619,7.0,7.0,31.0,111,52,50,0.0,3506,0.0,0.0,200.0,0.0,2.0,5.0,2.0,4.0,2.1,1878.2361285468437,0.0,0.0,34619.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,16485.238095238095,2,0,2_0,2_0 -5620,2.0,8.0,25.0,111,21,50,0.0,3507,0.0,150.0,0.0,264.0,1.0,3.0,0.0,2.0,1.5,4214.052946658397,3120.0,0.0,19090.0,4,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,12726.666666666666,2,0,2_0,2_0 -5621,0.0,13.0,60.0,111,45,41,0.0,3508,0.0,100.0,80.0,810.0,2.0,3.0,1.0,2.0,1.5,2312.6064444490657,6137.0,0.0,43189.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,28792.666666666668,4,0,4_0,4_0 -5622,0.0,0.0,65.0,300,78,70,1.0,351,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1410.1352790112364,0.0,20571.0,29769.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19846.0,3,0,3_0,3_1 -5623,1.0,5.0,31.0,111,52,43,2.0,3510,0.0,30.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2912.9607553589435,0.0,9000.0,38920.0,1,2,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18533.333333333332,3,0,3_0,3_0 -5624,4.0,7.0,27.0,300,43,10,0.0,3511,0.0,90.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3489.560000825268,0.0,0.0,21556.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21556.0,3,0,3_0,3_1 -5625,1.0,6.0,44.0,111,38,41,2.0,3512,0.0,700.0,0.0,283.0,1.0,1.0,0.0,1.0,1.0,3503.4297459154945,3172.0,8000.0,30393.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,30393.0,5,0,5,5_0 -5626,5.0,7.0,53.0,111,56,50,0.0,3515,0.0,100.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2744.6988662300787,2512.0,0.0,26414.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20318.46153846154,3,0,3_0,3_0 -5627,0.0,0.0,21.0,111,84,41,0.0,3516,0.0,0.0,0.0,260.0,0.0,2.0,0.0,1.0,1.0,3605.4896262608045,0.0,0.0,10934.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10934.0,1,0,1_1,1_0 -5628,1.0,1.0,39.0,111,67,71,1.0,3517,0.0,680.0,0.0,178.0,1.0,1.0,0.0,1.0,1.0,3142.6332690947625,0.0,13990.0,19372.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19372.0,3,0,3_0,3_0 -5629,7.0,7.0,60.0,111,77,70,0.0,3518,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2359.5305607557643,0.0,0.0,20623.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20623.0,3,0,3_0,3_0 -5630,1.0,1.0,66.0,112,72,60,1.0,3519,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3437.0241175131137,0.0,40000.0,66597.0,5,2,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,66597.0,5,0,5,5_1 -5631,1.0,16.0,76.0,111,78,50,2.0,352,0.0,0.0,0.0,502.0,0.0,3.0,0.0,2.0,1.5,5611.580016988197,4802.0,3300.0,23880.0,5,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15920.0,2,0,2_0,2_0 -5632,0.0,0.0,64.0,111,77,50,0.0,3521,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2949.09122824891,0.0,0.0,15195.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15195.0,2,0,2_0,2_0 -5633,2.0,5.0,57.0,111,38,20,0.0,3522,0.0,650.0,0.0,0.0,1.0,6.0,2.0,3.0,2.0,3906.3010572788276,2340.0,0.0,29475.0,4,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,14737.5,2,0,2_0,2_0 -5634,6.0,10.0,52.0,112,64,50,0.0,3523,0.0,215.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1743.7380747009634,3932.0,0.0,22470.0,1,3,4,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22470.0,4,0,4_0,4_1 -5635,0.0,0.0,33.0,300,35,20,0.0,3524,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,2279.62709488196,2082.0,0.0,28509.0,1,2,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21930.0,4,0,4_0,4_1 -5636,0.0,3.0,37.0,400,21,43,2.0,3525,0.0,900.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3657.210299994297,2003.0,13000.0,49771.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,23700.47619047619,4,0,4_0,4_1 -5637,4.0,4.0,48.0,300,46,44,0.0,3526,0.0,220.0,290.0,0.0,3.0,5.0,1.0,3.0,2.0,828.0884726481066,4160.0,0.0,41284.0,1,1,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20642.0,3,0,3_0,3_0 -5638,5.0,12.0,24.0,111,34,41,0.0,3527,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3630.970319426804,0.0,0.0,6771.0,3,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,6771.0,1,0,1_1,1_0 -5639,0.0,0.0,68.0,111,75,20,0.0,3528,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3546.175509506846,0.0,0.0,24560.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24560.0,4,0,4_0,4_0 -5640,4.0,5.0,58.0,111,77,60,0.0,3529,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2492.0166627033923,0.0,0.0,21881.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14587.333333333334,2,0,2_0,2_0 -5641,15.0,21.0,82.0,400,72,70,0.0,3530,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4669.103709381156,0.0,0.0,12420.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12420.0,1,0,1_0,1_1 -5642,7.0,7.0,41.0,221,43,43,0.0,3532,0.0,300.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,4541.767716811242,3120.0,0.0,43450.0,1,2,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20690.47619047619,3,0,3_0,3_0 -5643,0.0,0.0,35.0,111,43,33,1.0,3533,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,3777.439811176277,0.0,16100.0,38550.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16062.5,2,0,2_0,2_0 -5644,12.0,12.0,65.0,111,77,50,0.0,3534,0.0,0.0,90.0,0.0,1.0,4.0,1.0,2.0,1.5,2282.982734500802,0.0,0.0,49104.0,5,4,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,32736.0,5,0,5,5_0 -5645,6.0,6.0,65.0,300,72,50,0.0,3535,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1981.8474129166098,0.0,0.0,23254.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15502.666666666666,2,0,2_0,2_1 -5646,5.0,5.0,67.0,112,75,44,0.0,3536,0.0,0.0,0.0,0.0,0.0,6.0,0.0,3.0,2.0,1920.4261949141892,11817.0,0.0,43002.0,5,1,6,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21501.0,3,0,3_0,3_1 -5647,0.0,0.0,91.0,111,77,70,0.0,3537,0.0,0.0,0.0,345.0,0.0,3.0,0.0,2.0,1.5,3086.414842841661,0.0,0.0,27590.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18393.333333333332,3,0,3_0,3_0 -5648,15.0,12.0,71.0,112,74,43,0.0,3538,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2282.696823057794,0.0,0.0,49186.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,49186.0,5,0,5,5_1 -5649,1.0,1.0,69.0,221,78,70,1.0,3539,0.0,0.0,0.0,553.0,0.0,4.0,0.0,2.0,1.5,5180.689289247648,2549.0,19000.0,21701.0,5,3,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14467.333333333334,2,0,2_0,2_0 -5650,13.0,16.0,53.0,111,22,60,0.0,354,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,2545.5872674661223,489.0,0.0,19355.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,6451.666666666667,1,0,1_0,1_0 -5651,1.0,1.0,42.0,112,43,33,0.0,3541,0.0,480.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2739.5185576328695,0.0,0.0,46635.0,1,2,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22207.142857142855,4,0,4_0,4_1 -5652,5.0,8.0,43.0,211,38,10,0.0,3542,0.0,370.0,310.0,0.0,2.0,5.0,1.0,3.0,1.8,1013.1625062117469,0.0,0.0,61072.0,1,2,3,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,33928.88888888889,5,0,5,5_0 -5653,0.0,0.0,76.0,111,74,70,0.0,3546,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3467.2780154278967,0.0,0.0,24330.0,5,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24330.0,4,0,4_0,4_0 -5654,1.0,4.0,63.0,400,71,50,0.0,3547,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2128.491476489546,2516.0,0.0,17694.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11796.0,1,0,1_0,1_1 -5655,4.0,4.0,36.0,111,52,31,0.0,3548,0.0,200.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2291.3914925181457,0.0,0.0,26688.0,1,2,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,11120.0,1,0,1_0,1_0 -5656,10.0,10.0,37.0,112,48,60,0.0,3549,0.0,60.0,99999.0,0.0,2.0,9.0,1.0,5.0,2.8,617.0193956892708,2340.0,0.0,86541.0,1,1,8,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,30907.500000000004,5,0,5,5_1 -5657,0.0,0.0,65.0,112,78,71,0.0,355,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2430.294815522701,670.0,0.0,12814.0,5,3,6,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12814.0,2,0,2_0,2_0 -5658,0.0,0.0,24.0,111,37,10,0.0,3550,0.0,0.0,0.0,350.0,1.0,2.0,0.0,2.0,1.5,3180.718850591021,0.0,0.0,29646.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,19764.0,3,0,3_1,3_0 -5659,0.0,0.0,84.0,111,86,71,0.0,3552,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3732.7929146014053,0.0,0.0,25480.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16986.666666666668,3,0,3_0,3_0 -5660,3.0,5.0,55.0,111,33,11,0.0,3553,0.0,300.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2159.976297563482,4302.0,0.0,32007.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,16003.5,2,0,2_0,2_0 -5661,8.0,11.0,30.0,112,52,50,0.0,3554,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2549.221970948622,0.0,0.0,35216.0,1,2,6,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,16769.52380952381,2,0,2_0,2_1 -5662,1.0,6.0,42.0,111,47,20,1.0,3557,400.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2975.084226657132,1015.0,4000.0,13187.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,0.0,13187.0,2,0,2_0,2_0 -5663,0.0,0.0,62.0,111,78,70,0.0,3558,0.0,0.0,0.0,251.0,1.0,4.0,1.0,3.0,2.0,2379.964384450796,0.0,0.0,22842.0,5,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,11421.0,1,0,1_0,1_0 -5664,1.0,1.0,63.0,111,77,50,2.0,3559,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3449.8474496215626,0.0,13000.0,35057.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23371.333333333332,4,0,4_0,4_0 -5665,2.0,2.0,38.0,111,54,42,0.0,356,0.0,0.0,100.0,405.0,1.0,3.0,1.0,3.0,1.8,2297.6320874959088,0.0,0.0,31660.0,1,4,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17588.888888888887,3,0,3_0,3_0 -5666,11.0,11.0,88.0,111,72,50,0.0,3565,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4072.1797214969965,0.0,0.0,62277.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,62277.0,5,0,5,5_0 -5667,3.0,13.0,51.0,111,63,50,0.0,3566,0.0,300.0,80.0,0.0,2.0,5.0,0.0,2.0,1.5,1398.455951137106,0.0,0.0,40966.0,1,2,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,27310.666666666668,4,0,4_0,4_0 -5668,6.0,20.0,43.0,111,64,60,0.0,3567,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,2617.222147792731,0.0,0.0,30730.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11819.23076923077,1,0,1_1,1_0 -5669,5.0,10.0,38.0,112,37,31,0.0,3568,0.0,500.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1121.5275723905559,0.0,0.0,65886.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27452.5,4,0,4_0,4_0 -5670,3.0,7.0,33.0,112,48,60,0.0,3569,0.0,250.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3848.2906555855093,0.0,0.0,49992.0,1,2,7,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23805.714285714286,4,0,4_0,4_0 -5671,3.0,3.0,70.0,112,72,70,0.0,357,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2748.0432627396153,1927.0,0.0,18636.0,5,1,9,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18636.0,3,0,3_0,3_1 -5672,3.0,3.0,58.0,111,37,50,0.0,3575,0.0,0.0,20.0,1100.0,1.0,4.0,0.0,1.0,1.0,3135.0440027462246,2657.0,0.0,46619.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,46619.0,5,0,5,5_0 -5673,1.0,8.0,76.0,111,74,60,2.0,3576,0.0,0.0,0.0,700.0,0.0,2.0,0.0,2.0,1.5,2922.325591597111,2044.0,4850.0,31880.0,5,3,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21253.333333333332,3,0,3_0,3_0 -5674,11.0,16.0,51.0,112,52,42,0.0,3577,0.0,130.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2472.2188799537666,0.0,0.0,39691.0,1,1,7,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26460.666666666668,4,0,4_0,4_0 -5675,0.0,0.0,80.0,111,75,50,0.0,3578,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2443.3472534343477,0.0,0.0,23827.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23827.0,4,0,4_0,4_0 -5676,3.0,15.0,52.0,111,42,50,0.0,3579,0.0,100.0,0.0,125.0,1.0,2.0,0.0,1.0,1.0,2714.1230087475124,0.0,0.0,12761.0,1,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,12761.0,2,0,2_1,2_0 -5677,6.0,10.0,27.0,400,62,50,0.0,358,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2985.2092660560393,2022.0,0.0,34467.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22978.0,4,0,4_0,4_1 -5678,4.0,7.0,41.0,111,47,31,0.0,3580,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2872.190415950777,2922.0,0.0,69328.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,33013.33333333333,5,0,5,5_0 -5679,1.0,5.0,62.0,221,77,70,2.0,3581,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2258.317888921354,770.0,12200.0,26638.0,5,3,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,17758.666666666668,3,0,3_1,3_0 -5680,0.0,0.0,79.0,111,77,50,0.0,3582,0.0,0.0,0.0,659.0,0.0,2.0,0.0,1.0,1.0,3854.828327164545,0.0,0.0,13558.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13558.0,2,0,2_1,2_0 -5681,14.0,17.0,57.0,111,64,71,0.0,3583,0.0,0.0,25.0,0.0,2.0,2.0,0.0,2.0,1.5,3088.9209629471884,0.0,0.0,41889.0,1,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,27926.0,4,0,4_0,4_0 -5682,1.0,1.0,49.0,111,38,12,1.0,3585,0.0,220.0,300.0,0.0,2.0,6.0,2.0,5.0,3.0,891.5464533787879,2920.0,25000.0,95990.0,1,2,9,7.0,5,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,31996.666666666668,5,0,5,5_0 -5683,0.0,0.0,21.0,111,84,41,0.0,3588,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3384.9784717539123,0.0,0.0,7155.0,3,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7155.0,1,0,1_0,1_0 -5684,2.0,4.0,31.0,120,52,42,0.0,3589,0.0,0.0,240.0,0.0,2.0,4.0,2.0,4.0,2.1,4815.407276031199,0.0,0.0,38501.0,1,2,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,18333.809523809523,3,0,3_0,3_0 -5685,4.0,4.0,33.0,111,31,10,0.0,359,0.0,280.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2897.2037941465755,1046.0,0.0,41308.0,1,2,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,41308.0,5,0,5,5_0 -5686,0.0,0.0,83.0,111,86,70,0.0,3590,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2441.3882865576525,0.0,0.0,14495.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14495.0,2,0,2_0,2_0 -5687,4.0,10.0,51.0,112,38,50,0.0,3592,0.0,0.0,0.0,800.0,1.0,3.0,0.0,2.0,1.5,2496.4806798965415,1560.0,0.0,66542.0,1,3,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,44361.333333333336,5,0,5,5_0 -5688,0.0,16.0,51.0,112,34,10,0.0,3593,0.0,0.0,0.0,0.0,1.0,7.0,3.0,5.0,3.0,859.8049810370094,2600.0,0.0,67126.0,1,1,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22375.333333333332,4,0,4_0,4_1 -5689,6.0,10.0,40.0,111,67,71,0.0,3595,0.0,99999.0,0.0,16.0,2.0,4.0,5.0,7.0,3.2,2037.8342688277203,0.0,0.0,39124.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,12226.25,1,0,1_1,1_0 -5690,8.0,11.0,67.0,111,75,41,0.0,3597,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1964.105386511402,0.0,0.0,72178.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,48118.666666666664,5,0,5,5_0 -5691,8.0,8.0,58.0,111,75,33,0.0,36,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2565.974154592133,3591.0,0.0,43057.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28704.666666666668,4,0,4_0,4_0 -5692,3.0,5.0,41.0,221,62,50,0.0,360,0.0,200.0,0.0,0.0,2.0,6.0,4.0,6.0,2.9,2175.8486789239,3952.0,0.0,42653.0,4,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,14707.931034482759,2,0,2_0,2_0 -5693,4.0,4.0,31.0,112,37,12,0.0,3600,0.0,70.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1559.7824023259648,2604.0,0.0,64951.0,1,2,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36083.88888888889,5,0,5,5_1 -5694,0.0,0.0,58.0,111,78,70,0.0,3601,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2558.2325193795623,0.0,0.0,14200.0,7,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9466.666666666666,1,0,1_1,1_0 -5695,14.0,15.0,58.0,300,52,50,0.0,3603,0.0,600.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1359.696240021512,0.0,0.0,18910.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18910.0,3,0,3_0,3_1 -5696,0.0,0.0,88.0,111,78,71,0.0,3604,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2700.3813259570693,0.0,0.0,18206.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18206.0,3,0,3_0,3_0 -5697,0.0,0.0,43.0,111,37,31,0.0,3605,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4389.90682628865,0.0,0.0,42112.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42112.0,5,0,5,5_0 -5698,7.0,7.0,56.0,112,13,70,0.0,3606,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2187.1615548941563,0.0,0.0,22878.0,1,4,7,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,22878.0,4,0,4_0,4_1 -5699,5.0,8.0,45.0,221,63,50,0.0,3607,0.0,100.0,0.0,0.0,2.0,8.0,3.0,5.0,2.8,1153.7759816198836,3640.0,0.0,38840.0,1,1,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,13871.428571428572,2,0,2_0,2_0 -5700,8.0,15.0,70.0,111,75,41,0.0,3610,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4090.6777148519386,1305.0,0.0,36399.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,24266.0,4,0,4_0,4_0 -5701,4.0,6.0,42.0,212,48,71,0.0,3611,0.0,180.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2806.1161377509434,0.0,0.0,23369.0,1,3,3,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23369.0,4,0,4_0,4_1 -5702,5.0,11.0,33.0,111,54,41,0.0,3613,0.0,0.0,0.0,282.0,1.0,2.0,0.0,1.0,1.0,6498.449375764155,0.0,0.0,27610.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27610.0,4,0,4_0,4_0 -5703,0.0,0.0,38.0,111,67,50,0.0,3614,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1751.696595040164,0.0,0.0,10460.0,4,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10460.0,1,0,1_1,1_0 -5704,9.0,12.0,67.0,300,77,70,0.0,3616,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2214.065606345191,0.0,0.0,9080.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9080.0,1,0,1_0,1_1 -5705,0.0,0.0,45.0,111,38,20,0.0,3618,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3582.248492508513,0.0,0.0,72611.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,72611.0,5,0,5,5_0 -5706,11.0,15.0,49.0,111,56,50,0.0,3622,0.0,0.0,0.0,0.0,3.0,4.0,4.0,6.0,3.3,1129.864909792292,3640.0,0.0,47100.0,1,4,7,6.0,4,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,14272.727272727274,2,0,2_0,2_0 -5707,6.0,15.0,56.0,221,62,60,0.0,3623,0.0,600.0,50.0,0.0,4.0,5.0,2.0,4.0,2.5,3148.4123648298396,3900.0,0.0,67816.0,1,1,1,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,27126.4,4,0,4_0,4_0 -5708,3.0,3.0,76.0,111,72,70,0.0,3624,0.0,0.0,0.0,630.0,0.0,3.0,0.0,2.0,1.5,3792.871992519694,1326.0,0.0,29480.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19653.333333333332,3,0,3_0,3_0 -5709,2.0,11.0,62.0,112,78,71,0.0,3625,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4927.631600367207,0.0,0.0,27350.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18233.333333333332,3,0,3_0,3_1 -5710,1.0,2.0,47.0,112,38,10,0.0,3626,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.6,1432.589886805068,7317.0,0.0,80670.0,1,3,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,31026.923076923074,5,0,5,5_1 -5711,5.0,5.0,57.0,112,21,50,0.0,3627,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,7230.893196830755,3120.0,0.0,15570.0,1,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,10380.0,1,0,1_0,1_0 -5712,3.0,11.0,47.0,111,64,71,0.0,3628,0.0,10.0,60.0,0.0,2.0,5.0,1.0,3.0,2.0,3510.5932151680736,2600.0,0.0,34684.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,17342.0,3,0,3_0,3_0 -5713,10.0,12.0,39.0,111,47,60,0.0,3629,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2477.022737819163,1040.0,0.0,39480.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,17165.217391304348,3,0,3_0,3_0 -5714,0.0,4.0,46.0,400,42,50,2.0,363,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,2066.1891785743887,0.0,9000.0,15329.0,1,2,0,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,9580.625,1,0,1_0,1_0 -5715,1.0,1.0,49.0,112,62,71,1.0,3630,0.0,0.0,350.0,0.0,2.0,6.0,2.0,4.0,2.5,1928.863014528221,2693.0,15300.0,59165.0,1,2,8,1.0,4,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,23666.0,4,0,4_0,4_0 -5716,4.0,6.0,33.0,112,62,41,0.0,3631,0.0,1350.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3245.4990705799214,1561.0,0.0,42563.0,1,2,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20268.095238095237,3,0,3_0,3_0 -5717,0.0,0.0,22.0,111,46,43,0.0,3634,0.0,0.0,0.0,0.0,1.0,3.0,4.0,5.0,3.0,1979.748108826466,780.0,0.0,21556.0,2,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,7185.333333333333,1,0,1_0,1_0 -5718,0.0,0.0,90.0,112,77,71,0.0,3635,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2983.327526044451,0.0,0.0,12655.0,5,4,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12655.0,2,0,2_0,2_1 -5719,2.0,9.0,68.0,120,77,50,0.0,3636,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1953.357654953439,0.0,0.0,27648.0,5,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18432.0,3,0,3_0,3_1 -5720,0.0,0.0,62.0,111,78,70,0.0,3637,0.0,0.0,0.0,209.0,0.0,3.0,0.0,2.0,1.5,1990.8260910514828,0.0,0.0,15750.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10500.0,1,0,1_0,1_0 -5721,5.0,5.0,74.0,111,77,71,0.0,3638,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,6847.01619311948,1891.0,0.0,18349.0,5,4,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,18349.0,3,0,3_1,3_0 -5722,0.0,30.0,28.0,221,56,42,0.0,3640,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2678.632814724935,0.0,0.0,14390.0,1,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14390.0,2,0,2_0,2_0 -5723,0.0,0.0,36.0,111,43,33,0.0,3641,0.0,0.0,0.0,470.0,1.0,2.0,0.0,1.0,1.0,3897.833583744314,1196.0,0.0,13798.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13798.0,2,0,2_0,2_0 -5724,3.0,11.0,58.0,112,72,50,0.0,3643,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1363.0209283182312,1560.0,0.0,42268.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,28178.666666666668,4,0,4_0,4_1 -5725,6.0,24.0,64.0,400,72,50,0.0,3644,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3942.722392408795,0.0,0.0,12187.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,8124.666666666667,1,0,1_0,1_1 -5726,18.0,18.0,44.0,111,62,31,0.0,3647,0.0,360.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1372.1327821314571,0.0,0.0,42761.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16446.53846153846,2,0,2_0,2_0 -5727,2.0,2.0,71.0,111,71,71,0.0,3648,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2858.469589633234,1924.0,0.0,18190.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12126.666666666666,1,0,1_0,1_0 -5728,5.0,5.0,30.0,112,53,20,0.0,3649,0.0,0.0,300.0,0.0,2.0,6.0,1.0,3.0,1.8,1891.043869975247,4776.0,0.0,37044.0,1,2,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20580.0,3,0,3_0,3_1 -5729,4.0,10.0,70.0,111,77,50,0.0,365,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1357.8490137365425,1823.0,0.0,16394.0,5,4,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16394.0,2,0,2_0,2_0 -5730,5.0,6.0,57.0,111,46,50,0.0,3651,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3270.104077034182,0.0,0.0,21920.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21920.0,4,0,4_0,4_0 -5731,0.0,0.0,84.0,400,71,70,0.0,3652,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1885.4071986971467,0.0,0.0,9288.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9288.0,1,0,1_0,1_1 -5732,1.0,1.0,64.0,112,74,10,1.0,3653,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2195.294078358089,2749.0,7800.0,67630.0,5,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,45086.666666666664,5,0,5,5_0 -5733,1.0,4.0,57.0,111,56,71,2.0,3654,0.0,30.0,0.0,253.0,1.0,2.0,0.0,1.0,1.0,2687.6159282794165,0.0,17000.0,22758.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22758.0,4,0,4_0,4_0 -5734,0.0,0.0,74.0,111,78,71,0.0,3655,0.0,0.0,0.0,163.0,0.0,2.0,0.0,1.0,1.0,7228.8049696361795,0.0,0.0,12016.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12016.0,1,0,1_1,1_0 -5735,4.0,5.0,36.0,111,46,20,0.0,3656,0.0,300.0,20.0,0.0,2.0,4.0,1.0,3.0,1.8,1771.2664947201654,5314.0,0.0,44585.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,24769.444444444445,4,0,4_0,4_0 -5736,8.0,10.0,77.0,111,75,50,0.0,3657,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1733.3641478490688,2310.0,0.0,29413.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,19608.666666666668,3,0,3_0,3_0 -5737,11.0,13.0,49.0,112,52,42,0.0,366,0.0,0.0,250.0,0.0,1.0,5.0,1.0,3.0,2.0,3987.648798278775,0.0,0.0,44020.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22010.0,4,0,4_0,4_1 -5738,8.0,8.0,44.0,112,38,31,0.0,3661,0.0,550.0,0.0,0.0,1.0,6.0,1.0,2.0,1.3,3375.691597731497,0.0,0.0,46382.0,1,2,8,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,35678.46153846154,5,0,5,5_1 -5739,4.0,5.0,41.0,112,38,31,0.0,3662,0.0,120.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2921.9271120460594,2080.0,0.0,31160.0,1,2,9,1.0,5,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,17311.11111111111,3,0,3_0,3_0 -5740,21.0,21.0,74.0,400,72,70,0.0,3663,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1317.0804964126041,2072.0,0.0,19760.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13173.333333333334,2,0,2_0,2_1 -5741,2.0,5.0,56.0,111,37,41,0.0,3664,0.0,70.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3299.5845563110574,0.0,0.0,29682.0,1,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,29682.0,5,0,5,5_0 -5742,11.0,13.0,58.0,111,43,33,0.0,3666,180.0,0.0,50.0,0.0,2.0,5.0,1.0,3.0,2.0,1513.072300279778,0.0,0.0,59547.0,1,1,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,29773.5,5,0,5,5_0 -5743,8.0,8.0,65.0,111,74,31,0.0,3667,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2900.218014646737,0.0,0.0,42815.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,28543.333333333332,4,0,4_0,4_0 -5744,3.0,9.0,56.0,112,33,31,0.0,3668,0.0,1100.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1883.5289813361505,3328.0,0.0,84704.0,1,1,10,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,42352.0,5,0,5,5_0 -5745,2.0,2.0,38.0,111,38,10,0.0,3669,0.0,150.0,100.0,0.0,2.0,3.0,1.0,3.0,1.8,2859.9690457724923,4480.0,0.0,82393.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,45773.88888888889,5,0,5,5_0 -5746,2.0,2.0,28.0,111,54,20,0.0,367,0.0,450.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3024.4857132160855,0.0,0.0,22401.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22401.0,4,0,4_0,4_0 -5747,2.0,5.0,19.0,111,84,41,0.0,3671,0.0,0.0,40.0,0.0,0.0,7.0,0.0,1.0,1.0,3025.881811079487,0.0,0.0,1857.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,1857.0,1,0,1_0,1_0 -5748,1.0,1.0,51.0,111,22,50,1.0,3673,0.0,0.0,70.0,0.0,2.0,5.0,0.0,2.0,1.5,1970.4478326446906,3693.0,13300.0,55130.0,1,2,6,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,36753.333333333336,5,0,5,5_0 -5749,11.0,11.0,78.0,221,72,71,0.0,3674,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3364.8804551886806,0.0,0.0,20499.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13666.0,2,0,2_0,2_0 -5750,2.0,11.0,36.0,112,37,31,0.0,3676,0.0,400.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3422.455503385538,1352.0,0.0,44009.0,1,2,9,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,24449.444444444445,4,0,4_0,4_1 -5751,4.0,4.0,44.0,300,63,50,0.0,3677,0.0,0.0,0.0,0.0,4.0,6.0,3.0,5.0,2.8,1121.794323079257,3120.0,0.0,33074.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11812.142857142859,1,0,1_0,1_1 -5752,6.0,12.0,61.0,111,77,70,0.0,3678,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2371.070649254485,0.0,0.0,34660.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23106.666666666668,4,0,4_0,4_0 -5753,0.0,0.0,77.0,400,78,70,0.0,3679,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3167.853278867634,0.0,0.0,13388.0,5,4,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13388.0,2,0,2_0,2_0 -5754,0.0,0.0,32.0,111,85,50,0.0,368,0.0,0.0,0.0,80.0,0.0,3.0,3.0,4.0,1.9,2351.460608037366,0.0,0.0,23415.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12323.684210526317,1,0,1_1,1_0 -5755,8.0,11.0,38.0,300,68,50,0.0,3680,0.0,99999.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2340.5303410162105,2600.0,0.0,37349.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,18674.5,3,0,3_1,3_1 -5756,0.0,10.0,69.0,400,13,50,0.0,3682,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1546.2942334381753,3640.0,0.0,9450.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9450.0,1,0,1_0,1_1 -5757,8.0,24.0,49.0,111,62,60,0.0,3683,0.0,0.0,350.0,0.0,3.0,4.0,1.0,3.0,2.0,1131.799170425298,4682.0,0.0,46037.0,1,1,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,23018.5,4,0,4_0,4_0 -5758,1.0,3.0,40.0,111,62,50,2.0,3687,0.0,200.0,0.0,315.0,2.0,4.0,2.0,4.0,2.1,3385.5834599260174,3692.0,7000.0,34475.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,16416.666666666664,2,0,2_0,2_0 -5759,4.0,30.0,52.0,400,67,60,0.0,3688,0.0,100059.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2983.2373151527445,1820.0,0.0,38784.0,1,1,0,0.0,4,4.0,1.0,0.0,1,0,0,0,0,0,1.0,3.0,19392.0,3,0,3_0,3_1 -5760,1.0,14.0,44.0,300,48,31,2.0,3690,0.0,330.0,70.0,0.0,3.0,4.0,1.0,3.0,2.0,2415.757311335425,0.0,2000.0,67721.0,1,3,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,33860.5,5,0,5,5_1 -5761,6.0,8.0,58.0,111,64,70,0.0,3692,0.0,0.0,0.0,281.0,2.0,3.0,1.0,3.0,2.0,2889.9329897909506,0.0,0.0,31473.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15736.5,2,0,2_0,2_0 -5762,0.0,0.0,42.0,111,85,60,0.0,3693,0.0,0.0,0.0,4.0,0.0,1.0,0.0,1.0,1.0,3014.83212931741,0.0,0.0,14170.0,7,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14170.0,2,0,2_1,2_0 -5763,7.0,7.0,37.0,111,37,20,0.0,3694,0.0,50.0,0.0,599.0,2.0,3.0,1.0,3.0,1.8,3768.2650839784997,0.0,0.0,42131.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23406.11111111111,4,0,4_0,4_0 -5764,4.0,18.0,59.0,120,77,60,0.0,3695,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2698.1648164283424,0.0,0.0,33370.0,4,1,0,2.0,3,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,22246.666666666668,4,0,4_0,4_0 -5765,10.0,16.0,39.0,111,45,20,0.0,3696,0.0,100039.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2372.946616780948,2605.0,0.0,54414.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25911.42857142857,4,0,4_0,4_0 -5766,0.0,0.0,60.0,111,52,60,0.0,3697,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4150.131135651029,0.0,0.0,42490.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42490.0,5,0,5,5_0 -5767,0.0,0.0,41.0,111,85,71,0.0,3699,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2867.171144304186,0.0,0.0,11148.0,4,3,3,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11148.0,1,0,1_1,1_0 -5768,0.0,0.0,37.0,111,67,71,0.0,37,0.0,0.0,0.0,644.0,1.0,1.0,1.0,3.0,1.8,3247.041046674947,0.0,0.0,25364.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14091.111111111111,2,0,2_1,2_0 -5769,0.0,6.0,39.0,111,56,31,0.0,370,0.0,199998.0,0.0,491.0,2.0,4.0,1.0,3.0,1.8,2653.5658941810443,0.0,0.0,43996.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,24442.222222222223,4,0,4_1,4_0 -5770,0.0,0.0,69.0,111,75,60,0.0,3700,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3180.5542000112464,0.0,0.0,23865.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23865.0,4,0,4_0,4_0 -5771,1.0,6.0,48.0,112,64,50,2.0,3701,0.0,1300.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,1920.4071282025302,1560.0,4200.0,50744.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,20297.6,3,0,3_1,3_1 -5772,0.0,0.0,57.0,111,52,71,0.0,3702,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1924.53043217,0.0,0.0,32180.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21453.333333333332,3,0,3_0,3_0 -5773,10.0,10.0,63.0,111,43,31,0.0,3703,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3730.93487554956,5720.0,0.0,38526.0,1,4,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,25684.0,4,0,4_0,4_0 -5774,1.0,5.0,61.0,111,46,50,0.0,3704,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1385.133748785874,10128.0,0.0,110095.0,1,1,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,73396.66666666667,5,0,5,5_0 -5775,3.0,4.0,61.0,111,78,50,0.0,3705,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2282.2868649352877,4291.0,0.0,39067.0,5,2,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,26044.666666666668,4,0,4_0,4_0 -5776,2.0,2.0,30.0,111,37,20,0.0,3706,0.0,380.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,5368.6079107448395,2847.0,0.0,145359.0,1,2,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,96906.0,5,0,5,5_0 -5777,0.0,0.0,54.0,111,33,20,0.0,3709,0.0,0.0,0.0,427.0,1.0,3.0,1.0,2.0,1.5,2536.443847420685,0.0,0.0,38390.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25593.333333333332,4,0,4_0,4_0 -5778,5.0,15.0,31.0,111,34,30,0.0,3710,0.0,25.0,20.0,0.0,2.0,6.0,0.0,2.0,1.5,2262.127633971481,5200.0,0.0,42576.0,1,2,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,28384.0,4,0,4_0,4_0 -5779,0.0,0.0,39.0,111,52,50,0.0,3712,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3253.299793508345,0.0,0.0,20910.0,1,2,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20910.0,3,0,3_0,3_0 -5780,0.0,0.0,61.0,112,78,70,0.0,3715,0.0,0.0,0.0,162.0,0.0,3.0,0.0,1.0,1.0,2522.896478591077,0.0,0.0,15154.0,5,3,10,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15154.0,2,0,2_1,2_0 -5781,1.0,1.0,43.0,111,38,12,2.0,3716,0.0,0.0,300.0,900.0,2.0,4.0,0.0,2.0,1.5,3238.1898449507626,0.0,10800.0,122073.0,1,3,10,8.0,3,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,81382.0,5,0,5,5_0 -5782,12.0,12.0,59.0,111,75,41,0.0,3718,0.0,0.0,0.0,0.0,0.0,6.0,0.0,4.0,2.3,1694.0357222983882,0.0,0.0,48406.0,5,1,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21046.08695652174,3,0,3_0,3_0 -5783,2.0,2.0,47.0,120,69,50,0.0,3720,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1680.434495371337,84.0,0.0,25816.0,1,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25816.0,4,0,4_0,4_0 -5784,0.0,0.0,82.0,111,77,50,0.0,3721,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3047.8543569518856,0.0,0.0,16268.0,6,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16268.0,2,0,2_0,2_0 -5785,0.0,0.0,58.0,111,77,12,0.0,3722,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3811.4068130588216,0.0,0.0,12300.0,4,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12300.0,1,0,1_0,1_0 -5786,9.0,13.0,45.0,111,65,50,0.0,3723,0.0,300.0,0.0,0.0,4.0,7.0,3.0,5.0,3.0,844.2486974328074,2964.0,0.0,106037.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,35345.666666666664,5,0,5,5_0 -5787,4.0,4.0,63.0,111,72,31,0.0,3724,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2086.580684549935,0.0,0.0,33008.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22005.333333333332,4,0,4_0,4_0 -5788,2.0,2.0,82.0,300,77,70,0.0,3725,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3058.9202691284677,0.0,0.0,30941.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20627.333333333332,3,0,3_0,3_1 -5789,7.0,20.0,51.0,111,46,50,0.0,3726,0.0,500.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2373.8290078109903,2027.0,0.0,24929.0,1,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24929.0,4,0,4_0,4_0 -5790,0.0,0.0,49.0,111,68,50,0.0,3729,0.0,0.0,0.0,67.0,1.0,3.0,1.0,2.0,1.3,3047.787413094445,0.0,0.0,14014.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10780.0,1,0,1_1,1_0 -5791,5.0,9.0,55.0,221,48,71,0.0,373,0.0,45.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2952.9499696211797,1924.0,0.0,34819.0,1,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23212.666666666668,4,0,4_0,4_0 -5792,0.0,10.0,44.0,111,21,71,2.0,3730,0.0,99999.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,3153.952726278022,0.0,2900.0,44261.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15807.500000000002,2,0,2_0,2_0 -5793,8.0,13.0,53.0,112,43,33,0.0,3731,0.0,400.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,1727.8330352675011,0.0,0.0,44861.0,1,3,8,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,29907.333333333332,5,0,5,5_0 -5794,0.0,12.0,29.0,112,54,42,2.0,3733,0.0,250.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2902.7523986954093,0.0,2000.0,34233.0,1,4,4,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19018.333333333332,3,0,3_0,3_1 -5795,1.0,1.0,33.0,111,37,10,0.0,3734,0.0,350.0,0.0,767.0,1.0,3.0,0.0,1.0,1.0,2870.016891525838,2860.0,0.0,48502.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,48502.0,5,0,5,5_0 -5796,15.0,15.0,39.0,120,48,31,0.0,3735,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.3,1535.9828489588956,0.0,0.0,41302.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17957.391304347828,3,0,3_0,3_1 -5797,11.0,13.0,55.0,221,62,50,0.0,3736,0.0,350.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,3771.896753902753,0.0,0.0,19285.0,1,1,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19285.0,3,0,3_0,3_0 -5798,6.0,18.0,64.0,112,72,50,0.0,3737,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1647.9779604443524,0.0,0.0,44693.0,5,1,9,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,29795.333333333332,5,0,5,5_1 -5799,7.0,18.0,54.0,111,55,50,0.0,3738,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1622.3892003642702,2340.0,0.0,25523.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,12761.5,2,0,2_0,2_0 -5800,0.0,0.0,63.0,111,78,71,0.0,374,0.0,0.0,0.0,80.0,1.0,2.0,1.0,2.0,1.5,3915.566651338874,0.0,0.0,15068.0,5,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10045.333333333334,1,0,1_1,1_0 -5801,1.0,1.0,60.0,112,74,44,1.0,3740,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2841.0420196056857,4368.0,27000.0,50017.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,33344.666666666664,5,0,5,5_1 -5802,9.0,10.0,64.0,112,75,41,0.0,3741,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2430.5480636640773,0.0,0.0,42480.0,5,2,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,28320.0,4,0,4_0,4_1 -5803,11.0,15.0,62.0,111,63,71,0.0,3743,0.0,0.0,0.0,0.0,2.0,4.0,0.0,3.0,2.0,6326.957497554981,2600.0,0.0,33413.0,1,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16706.5,2,0,2_0,2_0 -5804,5.0,9.0,81.0,111,75,70,0.0,3746,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3484.5674712730283,0.0,0.0,24245.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16163.333333333334,2,0,2_0,2_0 -5805,13.0,13.0,68.0,111,75,41,0.0,3749,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3446.2376049873023,0.0,0.0,68060.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,68060.0,5,0,5,5_0 -5806,13.0,21.0,60.0,120,38,70,0.0,375,0.0,450.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2473.5742525738096,0.0,0.0,63517.0,1,1,0,0.0,3,4.0,0.0,0.0,1,0,0,0,0,0,0.0,4.0,42344.666666666664,5,0,5,5_1 -5807,0.0,0.0,73.0,211,75,50,0.0,3750,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1389.130284343508,0.0,0.0,22080.0,5,3,2,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22080.0,4,0,4_0,4_0 -5808,2.0,10.0,35.0,111,47,31,0.0,3752,0.0,500.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2845.2563959854615,0.0,0.0,27445.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18296.666666666668,3,0,3_0,3_0 -5809,7.0,9.0,36.0,111,38,10,0.0,3754,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,2965.055370697192,0.0,0.0,91348.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,60898.666666666664,5,0,5,5_0 -5810,3.0,10.0,60.0,111,74,60,0.0,3755,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1632.508866586432,0.0,0.0,42277.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,28184.666666666668,4,0,4_0,4_0 -5811,4.0,4.0,58.0,111,54,41,0.0,3756,0.0,60.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1828.9394649544154,2601.0,0.0,31145.0,1,1,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,31145.0,5,0,5,5_0 -5812,5.0,5.0,38.0,111,64,50,0.0,3758,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1613.9080572060154,1924.0,0.0,39399.0,1,3,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21888.333333333332,4,0,4_0,4_0 -5813,2.0,2.0,23.0,111,46,31,0.0,3759,0.0,99999.0,0.0,219.0,1.0,1.0,0.0,1.0,1.0,3898.9825628408025,1337.0,0.0,1948.0,3,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,1948.0,1,0,1_1,1_0 -5814,1.0,11.0,41.0,111,37,71,0.0,376,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3011.002404906274,0.0,0.0,115778.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,64321.11111111111,5,0,5,5_0 -5815,5.0,7.0,32.0,111,52,70,0.0,3760,0.0,0.0,0.0,45.0,1.0,4.0,2.0,3.0,1.6,2440.8331402471754,2080.0,0.0,24224.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,15140.0,2,0,2_1,2_0 -5816,0.0,0.0,77.0,111,72,71,0.0,3761,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3096.102622736861,0.0,0.0,12590.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12590.0,2,0,2_1,2_0 -5817,5.0,5.0,64.0,400,78,70,0.0,3762,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,1064.1016559978184,2444.0,0.0,21110.0,5,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14073.333333333334,2,0,2_0,2_1 -5818,2.0,2.0,40.0,111,43,33,0.0,3765,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3617.7102945208244,0.0,0.0,29599.0,1,2,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,29599.0,5,0,5,5_0 -5819,0.0,0.0,56.0,111,43,20,0.0,3766,0.0,0.0,0.0,409.0,1.0,3.0,1.0,2.0,1.5,2528.941822376374,0.0,0.0,35742.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23828.0,4,0,4_0,4_0 -5820,6.0,7.0,46.0,221,37,31,0.0,3767,0.0,550.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2915.347467843498,3120.0,0.0,69890.0,1,1,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,27956.0,4,0,4_0,4_0 -5821,4.0,9.0,58.0,111,52,50,0.0,3768,0.0,0.0,60.0,236.0,1.0,1.0,0.0,1.0,1.0,3028.585906466588,1508.0,0.0,22028.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,22028.0,4,0,4_0,4_0 -5822,1.0,14.0,32.0,211,63,50,2.0,377,0.0,150.0,0.0,378.0,2.0,2.0,0.0,2.0,1.5,2072.7183201105195,2293.0,850.0,24096.0,1,3,3,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16064.0,2,0,2_0,2_0 -5823,0.0,20.0,36.0,111,68,20,0.0,3770,0.0,250.0,0.0,432.0,1.0,4.0,2.0,3.0,1.8,2203.482625578656,0.0,0.0,12062.0,1,3,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,6701.111111111111,1,0,1_1,1_0 -5824,9.0,11.0,38.0,111,62,41,0.0,3771,0.0,99999.0,0.0,760.0,2.0,3.0,1.0,3.0,1.8,2622.0499815097523,3375.0,0.0,64596.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,35886.666666666664,5,0,5,5_0 -5825,4.0,23.0,38.0,112,62,50,0.0,3772,0.0,0.0,0.0,0.0,2.0,5.0,5.0,7.0,3.0,881.7587424891046,1144.0,0.0,17854.0,4,3,4,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,5951.333333333333,1,0,1_1,1_1 -5826,4.0,13.0,65.0,112,77,41,0.0,3773,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2609.100912057486,0.0,0.0,20094.0,5,2,7,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20094.0,3,0,3_0,3_0 -5827,0.0,0.0,87.0,111,86,60,0.0,3774,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3398.1976618826448,0.0,0.0,27272.0,6,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27272.0,4,0,4_0,4_0 -5828,11.0,16.0,63.0,111,75,60,0.0,3777,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2659.6190212646657,1560.0,0.0,27681.0,5,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18454.0,3,0,3_0,3_0 -5829,7.0,8.0,72.0,111,77,70,0.0,3778,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2913.037851377694,2600.0,0.0,21243.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,14162.0,2,0,2_0,2_0 -5830,1.0,16.0,45.0,111,56,71,0.0,3779,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3053.6191186739707,2080.0,0.0,20179.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20179.0,3,0,3_0,3_0 -5831,2.0,2.0,81.0,112,71,70,0.0,3782,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2465.21666277977,3090.0,0.0,23698.0,5,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15798.666666666666,2,0,2_0,2_1 -5832,0.0,0.0,69.0,111,74,10,0.0,3783,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2810.5692711350357,0.0,0.0,28800.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28800.0,4,0,4_0,4_0 -5833,0.0,0.0,71.0,111,78,70,0.0,3784,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2776.4086314035167,0.0,0.0,8800.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8800.0,1,0,1_0,1_0 -5834,0.0,0.0,81.0,111,78,71,0.0,3786,0.0,0.0,0.0,155.0,0.0,3.0,0.0,1.0,1.0,3454.482440198663,0.0,0.0,14316.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14316.0,2,0,2_1,2_0 -5835,0.0,0.0,67.0,211,72,71,0.0,3787,0.0,0.0,0.0,290.0,0.0,3.0,0.0,1.0,1.0,2020.0514814960898,0.0,0.0,12244.0,5,3,3,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12244.0,1,0,1_1,1_0 -5836,17.0,17.0,46.0,112,65,50,0.0,3788,0.0,310.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2301.491929234487,0.0,0.0,37739.0,1,1,7,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25159.333333333332,4,0,4_0,4_0 -5837,0.0,0.0,68.0,111,46,41,0.0,379,0.0,0.0,0.0,2488.0,2.0,4.0,0.0,2.0,1.5,6491.065023982954,0.0,0.0,171813.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,114542.0,5,0,5,5_0 -5838,3.0,3.0,36.0,111,55,31,0.0,3790,0.0,300.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2333.650008894873,0.0,0.0,41844.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17435.0,3,0,3_0,3_0 -5839,4.0,10.0,40.0,111,68,43,0.0,3791,0.0,99999.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1662.185742671419,0.0,0.0,30360.0,1,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20240.0,3,0,3_0,3_0 -5840,11.0,23.0,66.0,111,75,50,0.0,3792,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,999.4093751485693,2065.0,0.0,27291.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,18194.0,3,0,3_0,3_0 -5841,11.0,11.0,64.0,111,77,50,0.0,3793,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3423.140580061316,0.0,0.0,13313.0,5,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13313.0,2,0,2_0,2_0 -5842,6.0,6.0,60.0,111,54,43,0.0,3794,0.0,0.0,0.0,383.0,1.0,3.0,0.0,1.0,1.0,2844.9711604803315,0.0,0.0,30027.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,30027.0,5,0,5,5_0 -5843,0.0,0.0,82.0,111,78,70,0.0,3795,0.0,0.0,0.0,450.0,0.0,4.0,0.0,1.0,1.0,2900.2439339425514,0.0,0.0,17470.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17470.0,3,0,3_0,3_0 -5844,4.0,4.0,70.0,111,77,60,0.0,3796,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1883.5535039754714,0.0,0.0,15855.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15855.0,2,0,2_0,2_0 -5845,6.0,9.0,63.0,112,74,20,0.0,38,0.0,0.0,150.0,0.0,1.0,5.0,0.0,2.0,1.5,1007.994529243464,0.0,0.0,38433.0,5,2,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,25622.0,4,0,4_0,4_0 -5846,5.0,9.0,53.0,221,31,71,0.0,3800,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3676.7339513124934,0.0,0.0,35080.0,1,3,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23386.666666666668,4,0,4_0,4_0 -5847,1.0,1.0,47.0,112,67,50,1.0,3801,0.0,114.0,0.0,291.0,1.0,3.0,1.0,2.0,1.5,2286.1357376514943,1856.0,12321.0,20076.0,1,3,9,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,13384.0,2,0,2_1,2_0 -5848,5.0,11.0,28.0,112,52,10,0.0,3802,0.0,170.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,2153.9140260323807,0.0,0.0,35762.0,1,4,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19867.777777777777,3,0,3_0,3_1 -5849,1.0,2.0,42.0,120,48,50,0.0,3803,0.0,250.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,2879.766710965443,3725.0,0.0,67540.0,1,2,0,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,29365.21739130435,5,0,5,5_0 -5850,4.0,8.0,47.0,111,37,41,0.0,3804,0.0,0.0,0.0,444.0,2.0,3.0,1.0,2.0,1.5,2958.9889249812854,0.0,0.0,52082.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,34721.333333333336,5,0,5,5_0 -5851,1.0,1.0,72.0,111,74,50,0.0,3806,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1645.5610809384868,2080.0,0.0,35920.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23946.666666666668,4,0,4_0,4_0 -5852,0.0,0.0,71.0,111,78,70,0.0,3807,0.0,0.0,0.0,313.0,0.0,3.0,0.0,1.0,1.0,2322.037618868774,0.0,0.0,14050.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14050.0,2,0,2_0,2_0 -5853,11.0,11.0,47.0,211,62,43,0.0,3809,0.0,300.0,50.0,0.0,2.0,4.0,0.0,2.0,1.5,2079.1897442662266,2874.0,0.0,44681.0,1,2,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,29787.333333333332,5,0,5,5_0 -5854,8.0,8.0,51.0,111,64,50,0.0,381,0.0,160.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1311.1208341568286,0.0,0.0,44746.0,1,1,7,5.0,3,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,29830.666666666668,5,0,5,5_0 -5855,5.0,5.0,55.0,400,21,50,0.0,3810,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1639.5757910891177,3328.0,0.0,51022.0,1,1,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,25511.0,4,0,4_0,4_1 -5856,0.0,0.0,81.0,112,78,70,0.0,3811,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2304.3271589458136,0.0,0.0,12035.0,5,1,10,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12035.0,1,0,1_0,1_1 -5857,11.0,11.0,52.0,112,34,10,0.0,3812,0.0,60.0,0.0,0.0,1.0,8.0,1.0,2.0,1.5,2365.059143962135,0.0,0.0,51729.0,1,1,9,1.0,2,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,34486.0,5,0,5,5_0 -5858,10.0,10.0,62.0,112,75,50,0.0,3813,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1611.548030358107,0.0,0.0,36733.0,5,1,10,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,24488.666666666668,4,0,4_0,4_0 -5859,9.0,9.0,69.0,111,74,42,0.0,3814,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2660.3793249101664,0.0,0.0,27436.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27436.0,4,0,4_0,4_0 -5860,8.0,18.0,26.0,400,13,42,0.0,3815,0.0,100.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,5407.290985505189,2600.0,0.0,17921.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,8533.809523809523,1,0,1_1,1_1 -5861,3.0,3.0,42.0,112,48,43,0.0,3816,0.0,0.0,0.0,0.0,2.0,9.0,4.0,6.0,3.3,1509.3820481380278,2339.0,0.0,52219.0,1,4,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15823.939393939394,2,0,2_0,2_1 -5862,4.0,4.0,68.0,112,78,71,0.0,3817,0.0,100041.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,3205.935823130201,0.0,0.0,71380.0,5,1,8,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,1.0,3.0,28552.0,4,0,4_0,4_1 -5863,10.0,10.0,79.0,111,72,41,0.0,3818,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4127.418701249304,2704.0,0.0,41961.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27974.0,4,0,4_0,4_0 -5864,6.0,6.0,44.0,111,37,20,0.0,382,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1619.0137942618323,0.0,0.0,75450.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,37725.0,5,0,5,5_0 -5865,0.0,0.0,20.0,111,84,42,0.0,3820,0.0,0.0,0.0,38.0,0.0,1.0,0.0,1.0,1.0,3517.9389648003585,0.0,0.0,4102.0,3,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,4102.0,1,0,1_1,1_0 -5866,13.0,13.0,57.0,111,54,50,0.0,3824,0.0,0.0,350.0,0.0,2.0,5.0,0.0,2.0,1.5,910.8690933088795,2600.0,0.0,43879.0,1,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,29252.666666666668,5,0,5,5_0 -5867,5.0,15.0,45.0,112,62,71,0.0,3825,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3337.688825470582,2340.0,0.0,26125.0,1,2,7,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,17416.666666666668,3,0,3_0,3_1 -5868,6.0,8.0,78.0,221,77,50,0.0,3826,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1312.8854520528812,2132.0,0.0,38505.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,25670.0,4,0,4_0,4_0 -5869,0.0,11.0,53.0,111,77,41,0.0,3827,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2835.055012590795,2600.0,0.0,13660.0,7,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13660.0,2,0,2_1,2_0 -5870,1.0,17.0,29.0,111,84,31,2.0,3828,0.0,0.0,0.0,435.0,0.0,2.0,0.0,1.0,1.0,4313.668508022138,0.0,400.0,22440.0,3,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22440.0,4,0,4_0,4_0 -5871,0.0,1.0,58.0,111,37,50,0.0,3829,0.0,1200.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2384.5436725892614,0.0,0.0,27455.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27455.0,4,0,4_0,4_0 -5872,11.0,11.0,62.0,221,72,50,0.0,383,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3351.219133248158,2912.0,0.0,19416.0,5,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12944.0,2,0,2_0,2_0 -5873,1.0,2.0,65.0,221,78,71,2.0,3833,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4593.25286480609,0.0,6000.0,27943.0,5,4,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18628.666666666668,3,0,3_0,3_0 -5874,0.0,0.0,75.0,112,78,71,0.0,3835,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2924.9264221635895,0.0,0.0,10830.0,5,1,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10830.0,1,0,1_0,1_1 -5875,2.0,2.0,40.0,111,53,42,0.0,3837,0.0,80.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1719.8559966414184,3121.0,0.0,59293.0,1,2,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,28234.761904761905,4,0,4_0,4_0 -5876,2.0,5.0,54.0,111,46,31,0.0,3839,0.0,20.0,0.0,24.0,1.0,4.0,4.0,6.0,3.3,1815.4119198689866,208.0,0.0,22842.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,6921.818181818182,1,0,1_1,1_0 -5877,5.0,5.0,54.0,112,46,50,0.0,384,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,740.4355966537496,0.0,0.0,49110.0,1,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,32740.0,5,0,5,5_1 -5878,11.0,17.0,74.0,112,75,70,0.0,3842,0.0,0.0,0.0,424.0,0.0,4.0,0.0,2.0,1.5,1925.4045106105075,0.0,0.0,29050.0,5,3,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19366.666666666668,3,0,3_0,3_0 -5879,0.0,0.0,83.0,111,78,70,0.0,3843,0.0,0.0,0.0,118.0,0.0,2.0,0.0,1.0,1.0,2858.225459087187,0.0,0.0,17840.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17840.0,3,0,3_1,3_0 -5880,2.0,4.0,49.0,112,68,50,0.0,3845,0.0,190.0,30.0,0.0,3.0,7.0,1.0,3.0,2.0,1119.7613919759349,4420.0,0.0,44753.0,1,1,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,22376.5,4,0,4_0,4_0 -5881,0.0,0.0,83.0,111,77,50,0.0,3846,0.0,0.0,0.0,573.0,0.0,6.0,0.0,1.0,1.0,2018.2328583804178,0.0,0.0,30951.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30951.0,5,0,5,5_0 -5882,1.0,1.0,41.0,221,62,50,1.0,3847,0.0,200.0,150.0,0.0,2.0,5.0,1.0,3.0,2.0,1823.951055709774,4552.0,6000.0,40669.0,1,2,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,20334.5,3,0,3_0,3_0 -5883,11.0,11.0,68.0,120,72,50,0.0,3848,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1203.0717563541705,4004.0,0.0,24601.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16400.666666666668,2,0,2_0,2_1 -5884,19.0,19.0,40.0,112,45,60,0.0,3851,0.0,450.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1912.2000131669847,3903.0,0.0,40258.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26838.666666666668,4,0,4_0,4_1 -5885,0.0,0.0,63.0,111,72,50,1.0,3852,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1551.7975282150583,1560.0,13871.0,32684.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21789.333333333332,4,0,4_0,4_0 -5886,0.0,23.0,56.0,111,56,71,0.0,3853,0.0,0.0,200.0,334.0,2.0,4.0,1.0,2.0,1.5,3959.3615808636364,2080.0,0.0,13800.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,9200.0,1,0,1_0,1_0 -5887,1.0,1.0,62.0,400,78,50,1.0,3854,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5142.369743815219,4109.0,21000.0,23813.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23813.0,4,0,4_0,4_1 -5888,7.0,12.0,40.0,112,64,71,0.0,3856,0.0,220.0,250.0,0.0,2.0,5.0,6.0,8.0,3.7,955.7816652029614,0.0,0.0,59977.0,1,3,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,16210.0,2,0,2_1,2_1 -5889,0.0,0.0,57.0,111,52,70,0.0,3857,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3790.6155955351774,0.0,0.0,23190.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23190.0,4,0,4_0,4_0 -5890,6.0,6.0,42.0,111,62,71,0.0,3858,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1575.0573037193565,6370.0,0.0,25235.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,10971.739130434784,1,0,1_0,1_0 -5891,3.0,3.0,28.0,111,37,10,0.0,3862,0.0,400.0,0.0,1247.0,2.0,2.0,0.0,2.0,1.5,3366.2221874323945,0.0,0.0,64682.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,43121.333333333336,5,0,5,5_0 -5892,1.0,1.0,50.0,111,52,71,1.0,3863,0.0,6.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1361.1163805768842,0.0,23000.0,31846.0,1,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21230.666666666668,3,0,3_0,3_0 -5893,3.0,3.0,55.0,111,37,41,0.0,3864,0.0,0.0,0.0,800.0,1.0,3.0,0.0,2.0,1.5,2883.4842166846042,1040.0,0.0,74445.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,49630.0,5,0,5,5_0 -5894,6.0,7.0,79.0,111,74,31,0.0,3866,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3016.416828823618,2673.0,0.0,47531.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,47531.0,5,0,5,5_0 -5895,2.0,11.0,27.0,111,46,42,0.0,3867,0.0,0.0,220.0,385.0,1.0,2.0,0.0,1.0,1.0,4067.778876165384,2715.0,0.0,15804.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,15804.0,2,0,2_1,2_0 -5896,3.0,7.0,34.0,112,48,42,0.0,3868,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2501.2015265741275,3120.0,0.0,39614.0,1,3,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18863.809523809523,3,0,3_0,3_0 -5897,9.0,9.0,36.0,112,43,33,0.0,3869,0.0,350.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2849.8334316070236,3744.0,0.0,47164.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22459.04761904762,4,0,4_0,4_1 -5898,16.0,18.0,55.0,111,46,31,0.0,387,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,2228.6054366093,0.0,0.0,14876.0,4,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9297.5,1,0,1_1,1_0 -5899,5.0,6.0,66.0,112,75,41,0.0,3872,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1061.6100309151543,6417.0,0.0,52982.0,5,1,8,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,35321.333333333336,5,0,5,5_0 -5900,6.0,20.0,51.0,221,11,50,0.0,3873,0.0,15.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2238.9789337962197,0.0,0.0,27773.0,1,3,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18515.333333333332,3,0,3_0,3_0 -5901,9.0,16.0,55.0,112,52,50,0.0,3874,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2251.711863734296,2446.0,0.0,21823.0,4,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14548.666666666666,2,0,2_0,2_1 -5902,5.0,6.0,73.0,112,78,60,0.0,3875,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,5587.818413981486,760.0,0.0,19093.0,5,1,8,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,12728.666666666666,2,0,2_0,2_0 -5903,5.0,7.0,49.0,111,22,71,0.0,3876,0.0,900.0,350.0,0.0,3.0,6.0,2.0,4.0,2.5,2243.193403058729,4375.0,0.0,101765.0,1,1,8,7.0,4,4.0,1.0,1.0,0,0,0,1,0,0,1.0,3.0,40706.0,5,0,5,5_0 -5904,0.0,0.0,87.0,221,78,71,0.0,3877,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4157.508772736592,0.0,0.0,9605.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9605.0,1,0,1_0,1_0 -5905,9.0,13.0,41.0,112,47,31,0.0,3878,0.0,0.0,560.0,0.0,2.0,6.0,3.0,5.0,2.4,1954.2376856177755,832.0,0.0,41383.0,1,1,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,17242.916666666668,3,0,3_0,3_0 -5906,4.0,6.0,39.0,212,43,20,0.0,3879,0.0,50.0,60.0,0.0,2.0,6.0,2.0,4.0,2.1,1346.6523342029022,2600.0,0.0,49168.0,1,1,2,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23413.333333333332,4,0,4_0,4_1 -5907,4.0,5.0,86.0,111,74,10,0.0,388,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2756.414831916337,0.0,0.0,42253.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28168.666666666668,4,0,4_0,4_0 -5908,12.0,12.0,61.0,111,75,60,0.0,3880,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,6125.73925844157,2600.0,0.0,26365.0,5,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17576.666666666668,3,0,3_0,3_0 -5909,0.0,0.0,69.0,111,74,10,0.0,3881,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1058.6897783938336,2861.0,0.0,61791.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,41194.0,5,0,5,5_0 -5910,1.0,11.0,38.0,111,46,31,0.0,3883,0.0,0.0,0.0,576.0,2.0,3.0,0.0,2.0,1.5,3546.507655504868,8177.0,0.0,38586.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,25724.0,4,0,4_0,4_0 -5911,0.0,11.0,27.0,111,38,10,0.0,3884,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3405.2190990795857,0.0,0.0,76976.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,51317.333333333336,5,0,5,5_0 -5912,7.0,9.0,33.0,111,43,20,0.0,3885,0.0,50.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3046.2438393752595,2600.0,0.0,28184.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28184.0,4,0,4_0,4_0 -5913,6.0,6.0,76.0,112,78,70,0.0,3886,0.0,125.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1849.6160748886343,104.0,0.0,27423.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18282.0,3,0,3_0,3_1 -5914,2.0,12.0,57.0,111,78,50,0.0,3889,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1354.4247611004403,0.0,0.0,21550.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14366.666666666666,2,0,2_0,2_0 -5915,0.0,0.0,50.0,111,38,12,0.0,389,0.0,0.0,0.0,1192.0,1.0,3.0,0.0,1.0,1.0,2661.743870838463,0.0,0.0,93800.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,93800.0,5,0,5,5_0 -5916,5.0,12.0,29.0,111,43,10,0.0,3891,0.0,400.0,50.0,635.0,2.0,3.0,1.0,3.0,1.8,2103.095126725018,0.0,0.0,44421.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,24678.333333333332,4,0,4_0,4_0 -5917,0.0,8.0,26.0,400,67,71,2.0,3893,0.0,300.0,100.0,0.0,2.0,3.0,1.0,3.0,1.8,4038.3063563741257,2184.0,1700.0,29699.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16499.444444444445,2,0,2_0,2_1 -5918,43.0,46.0,84.0,111,77,71,0.0,3894,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3188.99756390797,0.0,0.0,11443.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11443.0,1,0,1_0,1_0 -5919,16.0,16.0,59.0,111,56,33,0.0,3895,0.0,0.0,0.0,0.0,1.0,8.0,1.0,3.0,2.0,2602.8549282876124,785.0,0.0,35087.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17543.5,3,0,3_0,3_0 -5920,6.0,6.0,62.0,112,75,31,0.0,3896,0.0,550.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1777.546970873046,2081.0,0.0,37813.0,5,2,10,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,18906.5,3,0,3_0,3_0 -5921,5.0,7.0,38.0,111,56,50,0.0,3898,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,2769.357035342227,2083.0,0.0,25556.0,1,4,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,15972.5,2,0,2_0,2_0 -5922,0.0,5.0,27.0,111,46,60,0.0,390,0.0,0.0,950.0,550.0,2.0,2.0,0.0,2.0,1.5,3509.1616887884006,1040.0,0.0,21784.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,14522.666666666666,2,0,2_0,2_0 -5923,5.0,5.0,60.0,111,31,20,0.0,3903,0.0,200.0,55.0,0.0,2.0,7.0,0.0,2.0,1.5,1402.965905907882,0.0,0.0,70440.0,1,1,6,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,46960.0,5,0,5,5_0 -5924,35.0,35.0,63.0,112,71,71,0.0,3905,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3509.6500699903286,3120.0,0.0,23236.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15490.666666666666,2,0,2_0,2_1 -5925,4.0,6.0,33.0,120,48,50,0.0,3906,0.0,48.0,0.0,257.0,2.0,3.0,2.0,4.0,2.1,5133.065429867235,0.0,0.0,30195.0,1,3,0,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,14378.571428571428,2,0,2_0,2_0 -5926,2.0,7.0,67.0,300,74,42,2.0,3908,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2421.123424492321,1534.0,6760.0,822.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,548.0,1,0,1_0,1_1 -5927,5.0,21.0,47.0,112,21,50,0.0,3909,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2229.717003331798,1300.0,0.0,15342.0,1,4,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,7305.714285714285,1,0,1_0,1_1 -5928,8.0,8.0,47.0,111,21,50,0.0,391,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3269.223097767791,0.0,0.0,29860.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19906.666666666668,3,0,3_0,3_0 -5929,0.0,0.0,93.0,111,75,60,0.0,3910,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3120.693701927165,0.0,0.0,37713.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37713.0,5,0,5,5_0 -5930,11.0,11.0,68.0,111,78,50,0.0,3911,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1145.3763940057809,0.0,0.0,33169.0,5,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22112.666666666668,4,0,4_0,4_0 -5931,0.0,0.0,69.0,111,74,20,0.0,3914,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3175.6809657479225,0.0,0.0,19948.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13298.666666666666,2,0,2_0,2_0 -5932,8.0,11.0,68.0,400,71,50,0.0,3915,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1442.5686807827178,4681.0,0.0,17077.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11384.666666666666,1,0,1_0,1_1 -5933,0.0,0.0,69.0,111,71,50,0.0,3916,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3611.926592556838,3120.0,0.0,41878.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27918.666666666668,4,0,4_0,4_0 -5934,0.0,0.0,64.0,221,78,70,0.0,3917,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2077.900770305605,0.0,0.0,13353.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13353.0,2,0,2_0,2_0 -5935,1.0,1.0,53.0,112,52,50,2.0,3918,0.0,120.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1285.1538954623052,936.0,3500.0,34371.0,1,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22914.0,4,0,4_0,4_0 -5936,0.0,0.0,25.0,112,56,50,0.0,3919,0.0,0.0,0.0,694.0,1.0,2.0,1.0,2.0,1.3,3402.8663918762195,0.0,0.0,17743.0,4,3,10,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13648.461538461537,2,0,2_0,2_0 -5937,1.0,15.0,41.0,111,45,31,2.0,392,0.0,0.0,600.0,276.0,2.0,4.0,2.0,4.0,2.1,2935.8627635310013,2519.0,1000.0,59840.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,28495.238095238095,4,0,4_1,4_0 -5938,0.0,0.0,24.0,111,85,50,0.0,3920,0.0,0.0,0.0,44.0,0.0,3.0,2.0,3.0,1.6,2006.8739715059794,1040.0,0.0,15402.0,6,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9626.25,1,0,1_1,1_0 -5939,0.0,12.0,30.0,112,62,71,2.0,3921,0.0,255.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2820.9418063276935,1560.0,4000.0,39791.0,1,3,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22106.11111111111,4,0,4_0,4_1 -5940,17.0,17.0,47.0,111,47,31,0.0,3925,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,5003.362308065589,0.0,0.0,39426.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15770.4,2,0,2_0,2_0 -5941,4.0,12.0,46.0,120,85,71,0.0,3926,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,8432.81136854894,2085.0,0.0,15691.0,6,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12070.0,1,0,1_0,1_1 -5942,1.0,4.0,43.0,221,63,71,0.0,3928,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,4377.811029079702,265.0,0.0,34927.0,1,2,1,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13970.8,2,0,2_0,2_0 -5943,0.0,12.0,20.0,111,84,31,0.0,3929,0.0,0.0,300.0,230.0,0.0,1.0,0.0,1.0,1.0,3019.1461874721454,0.0,0.0,3789.0,3,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,3789.0,1,0,1_0,1_0 -5944,10.0,17.0,50.0,111,64,71,0.0,393,0.0,0.0,0.0,300.0,1.0,1.0,0.0,1.0,1.0,5090.115429985244,0.0,0.0,12820.0,4,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,12820.0,2,0,2_0,2_0 -5945,0.0,0.0,46.0,111,64,71,0.0,3930,0.0,0.0,0.0,406.0,1.0,1.0,2.0,4.0,2.1,3556.227618966841,0.0,0.0,15650.0,4,4,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,7452.380952380952,1,0,1_0,1_0 -5946,0.0,0.0,55.0,111,78,50,0.0,3932,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2629.5647516696235,0.0,0.0,239.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,239.0,1,0,1_0,1_0 -5947,0.0,0.0,21.0,112,68,60,0.0,3933,0.0,0.0,0.0,534.0,1.0,2.0,0.0,1.0,1.0,3176.4730006618533,2581.0,0.0,17745.0,1,3,10,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17745.0,3,0,3_0,3_1 -5948,1.0,3.0,32.0,111,43,33,0.0,3934,0.0,100.0,100.0,0.0,2.0,3.0,1.0,3.0,1.8,4029.9205998690377,0.0,0.0,49223.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27346.11111111111,4,0,4_0,4_0 -5949,9.0,9.0,58.0,221,22,42,0.0,3935,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,6808.686682459186,0.0,0.0,19706.0,4,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13137.333333333334,2,0,2_0,2_0 -5950,0.0,0.0,19.0,111,84,41,0.0,3936,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3413.599604061042,207.0,0.0,2064.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2064.0,1,0,1_1,1_0 -5951,5.0,10.0,25.0,111,55,31,0.0,3937,0.0,300.0,150.0,640.0,2.0,2.0,0.0,2.0,1.5,4882.001580395171,0.0,0.0,41407.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,27604.666666666668,4,0,4_0,4_0 -5952,19.0,21.0,62.0,300,78,70,0.0,3939,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2288.8197574555566,0.0,0.0,22547.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15031.333333333334,2,0,2_0,2_1 -5953,0.0,0.0,76.0,111,77,70,0.0,3941,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3866.020260599039,0.0,0.0,23003.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23003.0,4,0,4_0,4_0 -5954,2.0,2.0,73.0,400,75,70,0.0,3942,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1009.7006298845089,0.0,0.0,35548.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23698.666666666668,4,0,4_0,4_1 -5955,7.0,10.0,47.0,111,48,20,0.0,3943,0.0,450.0,200.0,0.0,2.0,5.0,2.0,4.0,2.5,2093.880874774449,0.0,0.0,60458.0,1,1,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,24183.2,4,0,4_0,4_0 -5956,5.0,5.0,54.0,120,63,50,0.0,3944,0.0,150.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1234.3989637000434,0.0,0.0,44682.0,1,2,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,29788.0,5,0,5,5_0 -5957,9.0,21.0,68.0,111,78,50,0.0,3945,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1333.5325238191394,3123.0,0.0,55910.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,37273.333333333336,5,0,5,5_0 -5958,0.0,0.0,83.0,111,77,71,0.0,3949,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3562.8617705519177,0.0,0.0,11250.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11250.0,1,0,1_0,1_0 -5959,2.0,3.0,52.0,111,52,50,0.0,395,0.0,180.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1405.940400913816,3017.0,0.0,29089.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,29089.0,5,0,5,5_0 -5960,10.0,11.0,58.0,111,64,71,0.0,3950,0.0,0.0,100.0,0.0,3.0,2.0,1.0,3.0,2.0,4103.802844539769,0.0,0.0,37713.0,1,4,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18856.5,3,0,3_0,3_0 -5961,0.0,0.0,62.0,111,77,70,0.0,3951,0.0,0.0,0.0,155.0,0.0,2.0,0.0,1.0,1.0,3484.069398892705,0.0,0.0,13387.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13387.0,2,0,2_1,2_0 -5962,15.0,15.0,43.0,112,45,10,0.0,3953,0.0,0.0,120.0,0.0,2.0,6.0,1.0,3.0,1.8,2772.947509996007,1897.0,0.0,38816.0,1,2,10,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,21564.444444444445,3,0,3_0,3_0 -5963,2.0,2.0,81.0,111,75,60,0.0,3954,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4257.809976492043,0.0,0.0,27068.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18045.333333333332,3,0,3_0,3_0 -5964,0.0,11.0,76.0,111,77,50,0.0,3955,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2473.4576393042967,0.0,0.0,45498.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30332.0,5,0,5,5_0 -5965,6.0,8.0,40.0,120,53,43,0.0,3956,0.0,700.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,4851.820169582413,0.0,0.0,55116.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,36744.0,5,0,5,5_1 -5966,12.0,13.0,51.0,112,55,50,0.0,396,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2858.4376740884013,7273.0,0.0,16061.0,4,1,7,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,10707.333333333334,1,0,1_0,1_1 -5967,8.0,12.0,71.0,400,78,71,0.0,3960,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,5212.97451650792,0.0,0.0,20861.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13907.333333333334,2,0,2_0,2_1 -5968,0.0,0.0,74.0,111,75,71,0.0,3963,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3150.5118166418397,0.0,0.0,12311.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12311.0,1,0,1_0,1_0 -5969,0.0,0.0,22.0,111,84,20,0.0,3964,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3808.421116217771,0.0,0.0,8431.0,3,4,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,5620.666666666667,1,0,1_0,1_0 -5970,0.0,0.0,71.0,111,86,70,0.0,3965,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1827.8130666803197,0.0,0.0,12950.0,6,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12950.0,2,0,2_0,2_0 -5971,2.0,2.0,34.0,111,65,43,0.0,3966,0.0,44.0,60.0,461.0,2.0,3.0,0.0,2.0,1.5,2561.494848630564,0.0,0.0,37976.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,25317.333333333332,4,0,4_0,4_0 -5972,0.0,0.0,31.0,111,53,71,0.0,3968,0.0,0.0,0.0,150.0,1.0,1.0,0.0,1.0,1.0,3818.661970361938,0.0,0.0,2.0,4,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,2.0,1,0,1_0,1_0 -5973,2.0,2.0,58.0,112,38,50,0.0,397,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2349.3484444280602,3120.0,0.0,31430.0,1,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,31430.0,5,0,5,5_1 -5974,8.0,11.0,39.0,112,38,50,0.0,3970,0.0,350.0,350.0,0.0,2.0,5.0,2.0,4.0,2.1,2008.8828653007522,0.0,0.0,47976.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22845.714285714286,4,0,4_0,4_1 -5975,0.0,29.0,41.0,111,64,50,2.0,3971,0.0,10.0,0.0,0.0,1.0,4.0,3.0,5.0,3.0,2010.8007420875379,2678.0,2000.0,45678.0,1,3,7,6.0,4,3.0,0.0,0.0,0,0,1,0,0,1,1.0,2.0,15226.0,2,0,2_1,2_0 -5976,12.0,21.0,61.0,212,77,70,0.0,3973,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1494.4173685156816,2081.0,0.0,27668.0,5,1,2,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18445.333333333332,3,0,3_0,3_1 -5977,10.0,11.0,39.0,112,37,43,0.0,3974,0.0,300.0,200.0,0.0,2.0,4.0,1.0,3.0,1.8,2631.3860163104496,0.0,0.0,58220.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,32344.444444444445,5,0,5,5_0 -5978,0.0,0.0,40.0,112,46,31,0.0,3975,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3022.2581306323987,3640.0,0.0,44953.0,1,2,7,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19544.782608695652,3,0,3_0,3_0 -5979,2.0,2.0,45.0,112,38,44,0.0,3976,0.0,1070.0,0.0,1106.0,2.0,6.0,2.0,4.0,2.5,2988.8130523727004,6006.0,0.0,58930.0,1,3,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,23572.0,4,0,4_0,4_0 -5980,2.0,2.0,47.0,111,54,42,0.0,3977,0.0,60.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2786.995693538059,5227.0,0.0,50949.0,1,1,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,20379.6,3,0,3_0,3_0 -5981,0.0,0.0,46.0,111,22,31,0.0,3980,0.0,0.0,0.0,238.0,1.0,3.0,1.0,2.0,1.3,3417.431595040315,0.0,0.0,16205.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12465.384615384615,1,0,1_1,1_0 -5982,1.0,3.0,41.0,112,46,31,2.0,3981,0.0,800.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2996.2727410026823,4654.0,14400.0,29108.0,1,1,6,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,29108.0,5,0,5,5_1 -5983,3.0,7.0,43.0,111,43,33,0.0,3982,0.0,1016.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2585.547220892013,2600.0,0.0,26037.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,12398.571428571428,1,0,1_0,1_0 -5984,0.0,0.0,29.0,111,85,50,0.0,3985,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2359.7569433120807,0.0,0.0,13179.0,7,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13179.0,2,0,2_1,2_0 -5985,12.0,21.0,49.0,112,65,71,0.0,3986,0.0,250.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,3117.198769192389,0.0,0.0,24713.0,1,3,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,13729.444444444443,2,0,2_1,2_1 -5986,5.0,7.0,52.0,300,43,41,0.0,3987,0.0,30.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2666.7727213059165,3147.0,0.0,24210.0,1,1,0,0.0,2,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,18623.076923076922,3,0,3_0,3_1 -5987,1.0,13.0,30.0,111,56,31,2.0,3988,0.0,0.0,0.0,183.0,1.0,1.0,0.0,1.0,1.0,3255.2041209285076,1451.0,1200.0,13240.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13240.0,2,0,2_0,2_0 -5988,5.0,5.0,72.0,111,77,41,0.0,3991,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3082.6848314891117,3640.0,0.0,20065.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20065.0,3,0,3_0,3_0 -5989,29.0,29.0,60.0,120,75,60,0.0,3994,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2356.0065101304526,0.0,0.0,39557.0,5,1,0,3.0,3,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,26371.333333333332,4,0,4_0,4_0 -5990,1.0,14.0,53.0,111,46,50,2.0,3995,0.0,0.0,0.0,456.0,1.0,3.0,2.0,3.0,2.0,2025.822372407839,1040.0,3800.0,16314.0,4,3,4,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,8157.0,1,0,1_1,1_0 -5991,7.0,7.0,62.0,111,77,50,0.0,3996,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1242.3754077837484,2395.0,0.0,22154.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14769.333333333334,2,0,2_0,2_0 -5992,0.0,3.0,51.0,111,56,60,0.0,3997,0.0,0.0,0.0,967.0,1.0,3.0,4.0,6.0,3.1,2368.258308948739,0.0,0.0,50416.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,16263.225806451612,2,0,2_1,2_0 -5993,3.0,6.0,51.0,111,54,50,0.0,3999,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1424.1307151726915,1664.0,0.0,62490.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,41660.0,5,0,5,5_0 -5994,1.0,13.0,47.0,300,62,71,2.0,4,0.0,600.0,30.0,0.0,3.0,6.0,4.0,6.0,3.1,2346.497290551437,6242.0,2800.0,36244.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,11691.612903225807,1,0,1_1,1_1 -5995,2.0,11.0,65.0,111,72,50,0.0,4001,0.0,100.0,115.0,0.0,3.0,8.0,2.0,4.0,2.5,1919.8074185424873,0.0,0.0,81396.0,5,1,9,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,2.0,2.0,32558.4,5,0,5,5_0 -5996,11.0,12.0,59.0,111,52,50,0.0,4004,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1836.1609465346207,0.0,0.0,18952.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,18952.0,3,0,3_0,3_0 -5997,4.0,16.0,72.0,400,11,70,0.0,4006,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2303.2507091341613,1300.0,0.0,4311.0,1,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,4311.0,1,0,1_0,1_1 -5998,1.0,6.0,44.0,111,37,50,2.0,4008,0.0,250.0,0.0,870.0,1.0,3.0,2.0,3.0,1.8,1793.356619052108,0.0,11000.0,34225.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19013.888888888887,3,0,3_0,3_0 -5999,8.0,20.0,67.0,300,77,70,0.0,401,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1812.1205280602942,2081.0,0.0,18209.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12139.333333333334,1,0,1_0,1_1 -6000,0.0,0.0,37.0,111,67,71,0.0,4010,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,3235.5677430834826,0.0,0.0,31115.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12964.583333333334,2,0,2_1,2_0 -6001,7.0,7.0,53.0,111,54,31,0.0,4011,0.0,0.0,150.0,0.0,3.0,6.0,2.0,4.0,2.5,1792.7105437864357,1463.0,0.0,45896.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,18358.4,3,0,3_0,3_0 -6002,5.0,9.0,69.0,111,77,70,0.0,4012,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3264.937185306671,2965.0,0.0,25440.0,5,1,6,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,25440.0,4,0,4_0,4_0 -6003,7.0,7.0,57.0,112,56,50,0.0,4013,0.0,0.0,200.0,0.0,1.0,6.0,1.0,3.0,2.0,2568.549977361362,1040.0,0.0,26696.0,1,1,7,1.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,13348.0,2,0,2_0,2_0 -6004,8.0,8.0,67.0,111,74,12,0.0,4014,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,966.2298422739807,0.0,0.0,64157.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,42771.333333333336,5,0,5,5_0 -6005,2.0,6.0,49.0,111,31,10,0.0,4015,0.0,0.0,60.0,0.0,1.0,2.0,0.0,1.0,1.0,8325.285661277827,3120.0,0.0,48347.0,1,1,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,48347.0,5,0,5,5_0 -6006,1.0,3.0,38.0,300,48,31,2.0,4017,0.0,800.0,0.0,0.0,2.0,5.0,4.0,6.0,3.1,1521.1525316533152,0.0,20000.0,59291.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19126.129032258064,3,0,3_0,3_1 -6007,5.0,9.0,80.0,300,86,41,0.0,4018,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2903.5563228210276,0.0,0.0,15688.0,6,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15688.0,2,0,2_0,2_1 -6008,1.0,11.0,35.0,112,11,43,2.0,402,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.6,2504.902361205145,0.0,2500.0,19552.0,1,3,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,7520.0,1,0,1_0,1_1 -6009,6.0,6.0,65.0,111,74,20,0.0,4020,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2343.7793595708517,1874.0,0.0,21322.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21322.0,3,0,3_0,3_0 -6010,0.0,0.0,38.0,111,46,31,0.0,4021,0.0,0.0,0.0,310.0,1.0,1.0,0.0,1.0,1.0,4128.679922492676,0.0,0.0,26602.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26602.0,4,0,4_0,4_0 -6011,7.0,12.0,49.0,111,48,42,0.0,4024,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1199.950336492699,0.0,0.0,55150.0,1,1,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,22060.0,4,0,4_0,4_0 -6012,4.0,12.0,51.0,112,21,50,0.0,4027,0.0,1700.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,1264.8727548493412,5809.0,0.0,53288.0,1,1,9,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,21315.2,3,0,3_0,3_1 -6013,2.0,14.0,45.0,111,64,43,0.0,4028,0.0,0.0,45.0,384.0,1.0,3.0,0.0,1.0,1.0,6146.267396521897,3338.0,0.0,22358.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22358.0,4,0,4_0,4_0 -6014,0.0,0.0,54.0,300,64,50,0.0,4029,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2374.5011920750276,0.0,0.0,20909.0,1,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20909.0,3,0,3_0,3_1 -6015,1.0,1.0,75.0,211,74,60,0.0,4031,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1873.8585442933597,0.0,0.0,56850.0,5,4,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,37900.0,5,0,5,5_0 -6016,1.0,7.0,23.0,112,52,60,2.0,4033,0.0,0.0,20.0,346.0,2.0,3.0,1.0,3.0,1.8,3006.154185320183,2860.0,5500.0,33176.0,1,3,10,5.0,4,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,18431.11111111111,3,0,3_0,3_0 -6017,0.0,0.0,53.0,111,62,50,0.0,4034,0.0,0.0,0.0,349.0,1.0,3.0,0.0,1.0,1.0,1785.3006158977087,0.0,0.0,21502.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21502.0,3,0,3_0,3_0 -6018,11.0,11.0,58.0,112,63,50,0.0,4035,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1342.9300918425527,2600.0,0.0,29535.0,1,1,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,14767.5,2,0,2_0,2_0 -6019,5.0,5.0,39.0,221,37,10,0.0,4036,0.0,600.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,3184.869343067114,2527.0,0.0,68859.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,38255.0,5,0,5,5_0 -6020,5.0,18.0,64.0,111,78,71,0.0,4037,0.0,0.0,0.0,120.0,0.0,3.0,0.0,2.0,1.5,3098.584032560892,1820.0,0.0,13300.0,5,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8866.666666666666,1,0,1_1,1_0 -6021,3.0,3.0,63.0,111,74,12,0.0,4039,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1539.5578762945631,0.0,0.0,76864.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,51242.666666666664,5,0,5,5_0 -6022,5.0,19.0,77.0,112,71,71,0.0,404,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2019.3787862966678,0.0,0.0,17807.0,5,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11871.333333333334,1,0,1_0,1_1 -6023,17.0,17.0,75.0,112,78,50,0.0,4040,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2639.31852220258,1664.0,0.0,11070.0,5,1,7,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11070.0,1,0,1_0,1_0 -6024,7.0,7.0,44.0,211,37,20,0.0,4042,0.0,400.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1912.82705975068,0.0,0.0,35320.0,1,2,4,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27169.23076923077,4,0,4_0,4_0 -6025,2.0,5.0,27.0,111,63,43,0.0,4043,0.0,100.0,10.0,0.0,2.0,3.0,0.0,2.0,1.5,3168.5509190259595,5781.0,0.0,38215.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,25476.666666666668,4,0,4_0,4_0 -6026,0.0,1.0,40.0,112,21,12,2.0,4044,0.0,300.0,230.0,0.0,2.0,4.0,3.0,5.0,2.4,3227.069481463059,3900.0,13000.0,46356.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19315.0,3,0,3_0,3_1 -6027,8.0,8.0,55.0,112,52,50,0.0,4048,0.0,275.0,99999.0,0.0,2.0,4.0,1.0,2.0,1.5,5033.064263838043,2080.0,0.0,21740.0,1,3,7,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14493.333333333334,2,0,2_0,2_1 -6028,11.0,11.0,63.0,111,75,50,0.0,4049,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2078.544947681946,1664.0,0.0,24425.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16283.333333333334,2,0,2_0,2_0 -6029,3.0,10.0,51.0,111,38,43,0.0,4050,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3182.076122606265,3120.0,0.0,24830.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24830.0,4,0,4_0,4_0 -6030,2.0,2.0,50.0,112,23,41,0.0,4052,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1864.8533352826173,0.0,0.0,103166.0,1,1,10,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,51583.0,5,0,5,5_0 -6031,11.0,11.0,58.0,111,65,71,0.0,4055,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3023.932452850324,0.0,0.0,38817.0,1,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,25878.0,4,0,4_0,4_0 -6032,16.0,16.0,48.0,120,11,50,0.0,4056,0.0,500.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1130.1927720648132,6718.0,0.0,39352.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15740.8,2,0,2_0,2_1 -6033,8.0,11.0,55.0,112,45,20,0.0,4057,0.0,0.0,99999.0,0.0,2.0,3.0,1.0,2.0,1.5,992.5625076604338,2622.0,0.0,40630.0,1,1,9,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,27086.666666666668,4,0,4_0,4_0 -6034,8.0,8.0,51.0,111,37,71,0.0,4058,0.0,120.0,60.0,572.0,2.0,3.0,0.0,2.0,1.5,2901.556305992432,4680.0,0.0,68657.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,45771.333333333336,5,0,5,5_0 -6035,3.0,4.0,26.0,211,46,20,0.0,4059,0.0,850.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1950.8302630175515,4945.0,0.0,50708.0,1,3,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,33805.333333333336,5,0,5,5_0 -6036,1.0,7.0,65.0,112,77,71,0.0,4060,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2390.746602530475,1040.0,0.0,12902.0,5,4,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12902.0,2,0,2_0,2_0 -6037,14.0,18.0,54.0,300,75,60,0.0,4061,0.0,0.0,0.0,0.0,1.0,9.0,0.0,2.0,1.5,1615.6098370301331,3374.0,0.0,25443.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,16962.0,3,0,3_0,3_1 -6038,0.0,14.0,27.0,111,46,41,0.0,4063,0.0,0.0,100.0,469.0,2.0,2.0,0.0,2.0,1.5,4016.5204384208923,0.0,0.0,53401.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,35600.666666666664,5,0,5,5_0 -6039,0.0,0.0,90.0,111,78,70,0.0,4064,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2293.032792428683,0.0,0.0,13601.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13601.0,2,0,2_0,2_0 -6040,13.0,14.0,55.0,111,37,10,0.0,4066,0.0,0.0,170.0,0.0,3.0,8.0,2.0,4.0,2.5,1136.2952264147873,13431.0,0.0,424363.0,1,2,10,8.0,4,4.0,0.0,1.0,0,0,0,0,1,0,4.0,0.0,169745.2,5,0,5,5_0 -6041,4.0,4.0,50.0,111,48,50,0.0,4068,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1618.3762439452403,2453.0,0.0,46693.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22234.761904761905,4,0,4_0,4_0 -6042,3.0,6.0,47.0,112,52,50,0.0,4069,0.0,90.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2219.6379182701703,2617.0,0.0,43042.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21521.0,3,0,3_0,3_1 -6043,17.0,17.0,61.0,111,75,30,0.0,407,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1872.7341609925077,0.0,0.0,45818.0,5,1,3,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,30545.333333333332,5,0,5,5_0 -6044,1.0,2.0,41.0,111,46,50,0.0,4070,0.0,250.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2740.313016192382,1815.0,0.0,40589.0,1,2,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22549.444444444445,4,0,4_0,4_0 -6045,2.0,12.0,54.0,111,67,60,0.0,4071,0.0,40.0,0.0,325.0,2.0,3.0,1.0,2.0,1.5,2096.9249999189456,858.0,0.0,34360.0,1,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22906.666666666668,4,0,4_0,4_0 -6046,15.0,15.0,60.0,400,43,10,0.0,4073,0.0,200.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2393.6707969684917,1040.0,0.0,35185.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,35185.0,5,0,5,5_1 -6047,1.0,1.0,74.0,111,75,50,0.0,4075,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3280.2779992418746,2215.0,0.0,30316.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30316.0,5,0,5,5_0 -6048,6.0,9.0,60.0,111,75,30,0.0,4077,0.0,0.0,0.0,0.0,0.0,11.0,0.0,2.0,1.5,2113.516188919225,6825.0,0.0,48567.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,32378.0,5,0,5,5_0 -6049,15.0,15.0,38.0,111,47,31,0.0,4079,0.0,450.0,160.0,0.0,2.0,7.0,2.0,4.0,2.1,2140.0656502365755,4687.0,0.0,68480.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,32609.52380952381,5,0,5,5_0 -6050,6.0,6.0,55.0,111,52,71,0.0,408,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1560.7827463733388,0.0,0.0,37499.0,1,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24999.333333333332,4,0,4_0,4_0 -6051,8.0,8.0,83.0,300,71,71,0.0,4080,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3411.4726876566915,0.0,0.0,14548.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9698.666666666666,1,0,1_0,1_1 -6052,0.0,12.0,25.0,111,56,10,0.0,4081,0.0,0.0,200.0,260.0,1.0,4.0,0.0,2.0,1.5,2512.0806380964827,2600.0,0.0,12370.0,3,3,8,6.0,5,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,8246.666666666666,1,0,1_1,1_0 -6053,4.0,7.0,65.0,112,72,50,0.0,4082,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2140.662365929895,0.0,0.0,38058.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25372.0,4,0,4_0,4_1 -6054,0.0,0.0,42.0,111,37,20,0.0,4083,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2765.711685752031,2944.0,0.0,48831.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,48831.0,5,0,5,5_0 -6055,8.0,22.0,44.0,112,52,10,0.0,4084,0.0,64.0,0.0,50.0,1.0,2.0,1.0,2.0,1.3,3149.0787418399154,0.0,0.0,14664.0,1,3,10,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11280.0,1,0,1_1,1_0 -6056,7.0,7.0,66.0,111,77,50,0.0,4085,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2439.8996456910318,0.0,0.0,28447.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18964.666666666668,3,0,3_0,3_0 -6057,0.0,13.0,28.0,111,56,50,0.0,4087,0.0,0.0,0.0,353.0,1.0,4.0,2.0,3.0,1.6,2212.173741918344,2654.0,0.0,7042.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,4401.25,1,0,1_1,1_0 -6058,24.0,29.0,60.0,112,78,50,0.0,409,0.0,0.0,0.0,286.0,2.0,4.0,1.0,3.0,2.0,1629.141673592729,2080.0,0.0,38284.0,5,3,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,19142.0,3,0,3_1,3_0 -6059,0.0,0.0,51.0,111,46,50,0.0,4090,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2981.3382317886676,0.0,0.0,18064.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18064.0,3,0,3_0,3_0 -6060,1.0,10.0,51.0,111,56,71,2.0,4092,0.0,0.0,199998.0,0.0,3.0,3.0,1.0,3.0,2.0,1058.1846035411415,2600.0,3000.0,39686.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,19843.0,3,0,3_0,3_0 -6061,12.0,12.0,74.0,111,77,70,0.0,4093,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5140.766773169313,0.0,0.0,17899.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17899.0,3,0,3_0,3_0 -6062,16.0,16.0,45.0,111,56,50,0.0,4094,0.0,0.0,0.0,402.0,2.0,3.0,1.0,3.0,1.8,2849.022276124011,0.0,0.0,24813.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13785.0,2,0,2_0,2_0 -6063,19.0,19.0,77.0,112,78,50,0.0,4095,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2360.993447738439,0.0,0.0,22734.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15156.0,2,0,2_0,2_1 -6064,3.0,3.0,50.0,111,46,31,0.0,4096,0.0,100.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,4288.897999474653,1560.0,0.0,32017.0,1,2,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21344.666666666668,3,0,3_0,3_0 -6065,6.0,6.0,39.0,221,37,10,0.0,41,0.0,0.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,2605.6231188215834,2080.0,0.0,76243.0,1,2,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,50828.666666666664,5,0,5,5_0 -6066,2.0,2.0,52.0,211,43,33,0.0,410,180.0,400.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1827.601993800435,0.0,0.0,51775.0,1,1,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25887.5,4,0,4_0,4_0 -6067,1.0,10.0,22.0,211,63,60,2.0,4100,0.0,0.0,0.0,237.0,1.0,4.0,0.0,2.0,1.5,3424.1784124532114,0.0,1000.0,11931.0,1,3,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,7954.0,1,0,1_1,1_0 -6068,9.0,11.0,50.0,111,48,43,0.0,4101,0.0,0.0,150.0,0.0,1.0,3.0,0.0,1.0,1.0,2963.9041880646605,0.0,0.0,39855.0,1,2,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,39855.0,5,0,5,5_0 -6069,0.0,0.0,28.0,111,84,10,0.0,4102,0.0,0.0,0.0,147.0,0.0,1.0,0.0,1.0,1.0,3621.24583150119,0.0,0.0,20836.0,3,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,20836.0,3,0,3_1,3_0 -6070,0.0,0.0,29.0,111,85,71,0.0,4104,0.0,0.0,0.0,8.0,0.0,4.0,2.0,4.0,2.1,3802.7290028344887,0.0,0.0,16577.0,7,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7893.809523809524,1,0,1_1,1_0 -6071,0.0,14.0,33.0,400,53,60,0.0,4105,0.0,560.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2780.8747527187334,1300.0,0.0,17042.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17042.0,3,0,3_0,3_1 -6072,1.0,7.0,25.0,112,63,50,2.0,4108,0.0,400.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4297.779534541896,3120.0,5000.0,18985.0,1,3,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18985.0,3,0,3_0,3_1 -6073,1.0,20.0,43.0,112,65,50,0.0,4109,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2380.523153789552,2396.0,0.0,14690.0,4,3,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14690.0,2,0,2_0,2_1 -6074,11.0,21.0,53.0,400,11,50,0.0,4110,0.0,280.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1615.1147590849798,0.0,0.0,38410.0,1,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,25606.666666666668,4,0,4_0,4_1 -6075,5.0,9.0,50.0,300,54,50,0.0,4111,0.0,0.0,120.0,0.0,1.0,5.0,0.0,1.0,1.0,3436.6574327771364,0.0,0.0,18336.0,1,2,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,18336.0,3,0,3_0,3_0 -6076,2.0,2.0,51.0,112,47,50,0.0,4113,0.0,1000.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1442.6734995033282,5149.0,0.0,59828.0,1,2,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,39885.333333333336,5,0,5,5_1 -6077,0.0,7.0,82.0,112,78,71,0.0,4114,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2809.991466305901,0.0,0.0,11805.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11805.0,1,0,1_0,1_1 -6078,1.0,15.0,24.0,112,64,20,2.0,4115,0.0,400.0,0.0,350.0,1.0,2.0,0.0,1.0,1.0,5138.380529117353,2601.0,1800.0,14718.0,1,3,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,14718.0,2,0,2_1,2_0 -6079,1.0,8.0,42.0,111,52,33,2.0,4117,0.0,4.0,0.0,616.0,1.0,3.0,1.0,2.0,1.5,4681.140065700141,0.0,4000.0,22330.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,14886.666666666666,2,0,2_1,2_0 -6080,5.0,5.0,66.0,112,11,30,0.0,4118,0.0,0.0,550.0,0.0,1.0,8.0,0.0,1.0,1.0,2454.2693695858793,6333.0,0.0,27656.0,1,1,10,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27656.0,4,0,4_0,4_1 -6081,2.0,10.0,51.0,400,85,10,0.0,4119,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1753.3847175422486,0.0,0.0,25994.0,4,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25994.0,4,0,4_0,4_1 -6082,6.0,11.0,53.0,112,64,50,0.0,412,0.0,99999.0,0.0,0.0,3.0,6.0,2.0,4.0,2.3,1036.9420023699765,1820.0,0.0,36184.0,1,2,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,15732.17391304348,2,0,2_0,2_1 -6083,1.0,1.0,40.0,221,63,43,1.0,4121,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3677.274283796864,3016.0,19300.0,23261.0,1,3,1,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10113.478260869566,1,0,1_1,1_0 -6084,8.0,9.0,30.0,221,47,20,0.0,4123,0.0,500.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2290.320709852287,2600.0,0.0,17574.0,1,3,1,3.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,17574.0,3,0,3_0,3_0 -6085,0.0,19.0,27.0,111,48,31,0.0,4124,0.0,0.0,75.0,445.0,1.0,1.0,0.0,1.0,1.0,4431.007447331546,2444.0,0.0,21300.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21300.0,3,0,3_0,3_0 -6086,4.0,5.0,44.0,300,64,70,0.0,4125,0.0,600.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1691.045668205132,9111.0,0.0,62655.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,34808.333333333336,5,0,5,5_1 -6087,5.0,5.0,73.0,400,78,50,0.0,4126,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1529.4556383744457,0.0,0.0,21740.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14493.333333333334,2,0,2_0,2_1 -6088,6.0,6.0,47.0,112,34,20,0.0,4127,0.0,35.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1957.2147113410995,0.0,0.0,52962.0,1,2,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21184.8,3,0,3_0,3_0 -6089,0.0,1.0,39.0,111,37,31,0.0,4128,0.0,1500.0,0.0,522.0,1.0,2.0,0.0,1.0,1.0,3009.710357192487,0.0,0.0,31188.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,31188.0,5,0,5,5_0 -6090,3.0,4.0,64.0,300,71,50,0.0,4129,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1321.823502708531,3711.0,0.0,36287.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24191.333333333332,4,0,4_0,4_1 -6091,0.0,3.0,31.0,300,37,20,2.0,413,0.0,0.0,200.0,0.0,1.0,5.0,1.0,2.0,1.3,1591.0526451364885,2080.0,7490.0,23582.0,1,2,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,18140.0,3,0,3_1,3_1 -6092,1.0,5.0,30.0,111,47,12,2.0,4130,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1711.3784144772744,104.0,12310.0,42049.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23360.555555555555,4,0,4_0,4_0 -6093,15.0,18.0,61.0,111,78,70,0.0,4132,0.0,0.0,0.0,0.0,0.0,5.0,2.0,4.0,2.3,2014.6963464948506,1040.0,0.0,24576.0,5,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,10685.217391304348,1,0,1_0,1_0 -6094,4.0,17.0,33.0,120,46,50,0.0,4133,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1413.69646813723,3120.0,0.0,37649.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15687.083333333334,2,0,2_0,2_1 -6095,2.0,5.0,28.0,111,42,10,0.0,4135,0.0,600.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2825.279167216104,4204.0,0.0,34977.0,1,4,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23318.0,4,0,4_0,4_0 -6096,0.0,12.0,47.0,111,55,71,2.0,4138,0.0,0.0,80.0,317.0,2.0,3.0,2.0,4.0,2.3,3387.394331822049,1040.0,2300.0,35282.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,15340.000000000002,2,0,2_1,2_0 -6097,2.0,7.0,52.0,300,65,71,0.0,4139,0.0,730.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,2263.4148498363984,0.0,0.0,39247.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,19623.5,3,0,3_0,3_1 -6098,3.0,15.0,44.0,112,53,71,0.0,414,0.0,660.0,0.0,0.0,2.0,5.0,8.0,10.0,4.3,918.0774883011879,1040.0,0.0,51800.0,1,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12046.511627906977,1,0,1_1,1_1 -6099,1.0,1.0,32.0,112,65,43,1.0,4140,0.0,500.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1860.2518576546054,2996.0,17000.0,38498.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18332.38095238095,3,0,3_0,3_1 -6100,3.0,9.0,52.0,112,62,50,0.0,4143,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2128.5521552675673,3375.0,0.0,37680.0,1,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25120.0,4,0,4_0,4_1 -6101,10.0,13.0,31.0,120,47,31,0.0,4144,0.0,440.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2707.682711242541,2912.0,0.0,49194.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23425.714285714286,4,0,4_0,4_1 -6102,9.0,11.0,58.0,111,56,50,0.0,4146,0.0,0.0,20.0,0.0,1.0,3.0,0.0,1.0,1.0,1255.131531879264,0.0,0.0,24860.0,1,1,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,24860.0,4,0,4_0,4_0 -6103,2.0,9.0,45.0,111,67,30,0.0,4148,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2749.629246157154,4520.0,0.0,42796.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23775.555555555555,4,0,4_0,4_0 -6104,6.0,6.0,55.0,111,37,70,0.0,4149,0.0,99999.0,0.0,935.0,1.0,4.0,0.0,2.0,1.5,1710.704885151619,3640.0,0.0,64327.0,1,3,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,42884.666666666664,5,0,5,5_0 -6105,5.0,5.0,49.0,112,42,50,0.0,415,0.0,80.0,140.0,0.0,2.0,4.0,1.0,3.0,2.0,1724.973162592887,3432.0,0.0,55864.0,1,1,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,27932.0,4,0,4_0,4_0 -6106,1.0,6.0,49.0,111,63,50,2.0,4150,0.0,350.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1511.05251560459,390.0,8250.0,41810.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16724.0,2,0,2_0,2_0 -6107,0.0,0.0,42.0,111,56,71,0.0,4152,0.0,0.0,0.0,79.0,2.0,4.0,2.0,3.0,1.8,1167.7621299645568,0.0,0.0,21089.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11716.111111111111,1,0,1_1,1_0 -6108,6.0,6.0,50.0,112,38,31,0.0,4153,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2424.807532300347,12584.0,0.0,63463.0,4,2,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25385.2,4,0,4_0,4_1 -6109,7.0,7.0,31.0,111,46,31,0.0,4154,0.0,35.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1821.702832388518,5565.0,0.0,28021.0,1,3,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15567.222222222223,2,0,2_0,2_0 -6110,2.0,7.0,41.0,111,56,71,0.0,4156,0.0,0.0,0.0,0.0,2.0,3.0,3.0,5.0,2.8,4052.630440640472,0.0,0.0,128812.0,1,4,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,46004.28571428572,5,0,5,5_0 -6111,3.0,3.0,48.0,112,63,50,0.0,4159,0.0,260.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2281.696756868556,2488.0,0.0,35999.0,1,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23999.333333333332,4,0,4_0,4_0 -6112,5.0,9.0,32.0,300,63,31,0.0,416,0.0,200.0,0.0,383.0,1.0,3.0,0.0,1.0,1.0,2381.9173251849493,0.0,0.0,22041.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22041.0,4,0,4_0,4_1 -6113,8.0,8.0,78.0,111,78,71,0.0,4162,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2951.63310228907,2185.0,0.0,31240.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20826.666666666668,3,0,3_0,3_0 -6114,3.0,14.0,51.0,111,38,31,0.0,4163,0.0,0.0,300.0,0.0,2.0,6.0,0.0,2.0,1.5,2348.226358410967,2959.0,0.0,71253.0,1,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,47502.0,5,0,5,5_0 -6115,0.0,0.0,74.0,111,78,71,0.0,4164,0.0,0.0,0.0,313.0,0.0,4.0,0.0,1.0,1.0,3333.3671181780533,0.0,0.0,13990.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13990.0,2,0,2_0,2_0 -6116,2.0,3.0,52.0,111,37,20,0.0,4166,0.0,250.0,0.0,940.0,1.0,5.0,0.0,1.0,1.0,1773.7235995438614,0.0,0.0,31386.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,31386.0,5,0,5,5_0 -6117,6.0,10.0,71.0,111,75,41,0.0,4167,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1297.4179629627292,0.0,0.0,42671.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,28447.333333333332,4,0,4_0,4_0 -6118,1.0,1.0,31.0,111,64,43,1.0,4168,0.0,0.0,28.0,0.0,2.0,4.0,1.0,3.0,1.8,7151.854145043647,0.0,7000.0,33818.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,18787.777777777777,3,0,3_0,3_0 -6119,3.0,4.0,39.0,120,37,50,0.0,417,0.0,139.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2469.377627998013,2608.0,0.0,27997.0,1,2,0,2.0,2,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,18664.666666666668,3,0,3_0,3_0 -6120,15.0,19.0,56.0,300,78,50,0.0,4170,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,911.2685063821812,11079.0,0.0,21865.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21865.0,4,0,4_0,4_1 -6121,13.0,14.0,65.0,111,78,71,0.0,4171,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2752.490416624495,0.0,0.0,27029.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18019.333333333332,3,0,3_0,3_0 -6122,2.0,2.0,65.0,120,74,20,0.0,4173,0.0,0.0,0.0,0.0,0.0,7.0,1.0,3.0,2.0,1585.3705508607063,948.0,0.0,48105.0,5,1,0,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24052.5,4,0,4_0,4_0 -6123,3.0,3.0,30.0,111,43,33,0.0,4174,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,5824.845468934216,3328.0,0.0,148520.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,70723.80952380953,5,0,5,5_0 -6124,0.0,0.0,61.0,111,78,71,0.0,4176,0.0,0.0,0.0,520.0,0.0,3.0,0.0,2.0,1.5,3997.2847883716813,0.0,0.0,32450.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21633.333333333332,3,0,3_0,3_0 -6125,5.0,5.0,71.0,111,78,50,0.0,4177,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1847.6935209878063,0.0,0.0,42035.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,28023.333333333332,4,0,4_0,4_0 -6126,0.0,0.0,22.0,111,84,41,0.0,418,0.0,0.0,0.0,66.0,0.0,1.0,0.0,1.0,1.0,4283.600026832776,0.0,0.0,6408.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6408.0,1,0,1_1,1_0 -6127,14.0,14.0,57.0,111,21,50,0.0,4181,0.0,0.0,0.0,650.0,2.0,3.0,0.0,2.0,1.5,3290.1163570097265,0.0,0.0,11665.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,7776.666666666667,1,0,1_0,1_0 -6128,1.0,1.0,31.0,111,56,20,2.0,4182,0.0,0.0,20.0,363.0,2.0,2.0,0.0,2.0,1.5,2825.252054251885,0.0,25000.0,33159.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22106.0,4,0,4_0,4_0 -6129,0.0,0.0,21.0,111,84,41,0.0,4184,0.0,0.0,0.0,390.0,0.0,3.0,0.0,1.0,1.0,3724.673848966429,0.0,0.0,9610.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9610.0,1,0,1_0,1_0 -6130,5.0,5.0,62.0,111,75,50,0.0,4185,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2109.069298159001,0.0,0.0,59822.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,39881.333333333336,5,0,5,5_0 -6131,15.0,19.0,63.0,300,78,70,0.0,4186,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1123.9792510611699,2184.0,0.0,26300.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17533.333333333332,3,0,3_0,3_1 -6132,5.0,13.0,38.0,120,62,43,0.0,4188,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2258.2279203389426,0.0,0.0,48843.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23258.571428571428,4,0,4_0,4_1 -6133,7.0,7.0,57.0,112,47,71,0.0,419,0.0,0.0,50.0,0.0,2.0,4.0,0.0,2.0,1.5,8621.087221388101,0.0,0.0,50172.0,1,1,4,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,33448.0,5,0,5,5_1 -6134,0.0,0.0,67.0,112,74,10,1.0,4190,0.0,250.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,5747.950890275059,0.0,17200.0,70948.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,47298.666666666664,5,0,5,5_0 -6135,4.0,21.0,45.0,400,37,12,0.0,4191,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2012.630151770522,0.0,0.0,48020.0,1,2,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,48020.0,5,0,5,5_1 -6136,2.0,6.0,68.0,111,78,60,0.0,4193,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2144.3985051850123,3978.0,0.0,18830.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18830.0,3,0,3_0,3_0 -6137,2.0,10.0,68.0,120,71,71,0.0,4196,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3127.742794397186,1560.0,0.0,16350.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,10900.0,1,0,1_0,1_1 -6138,3.0,26.0,42.0,112,43,30,0.0,42,0.0,490.0,150.0,709.0,2.0,4.0,4.0,6.0,2.9,1123.5691905665537,4594.0,0.0,28110.0,4,3,9,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,9693.103448275862,1,0,1_0,1_0 -6139,10.0,10.0,50.0,112,85,50,0.0,4200,0.0,0.0,0.0,0.0,0.0,8.0,4.0,6.0,3.1,1542.8072824495023,0.0,0.0,30069.0,7,1,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9699.677419354839,1,0,1_0,1_1 -6140,3.0,8.0,30.0,111,43,33,0.0,4201,0.0,0.0,500.0,0.0,2.0,3.0,0.0,2.0,1.5,3878.439213889111,3120.0,0.0,41536.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27690.666666666668,4,0,4_0,4_0 -6141,8.0,8.0,44.0,112,63,50,0.0,4204,0.0,365.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2491.5334043079824,3531.0,0.0,48600.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23142.85714285714,4,0,4_0,4_1 -6142,0.0,8.0,49.0,111,55,71,0.0,4205,0.0,0.0,0.0,456.0,1.0,3.0,0.0,1.0,1.0,3075.674173649823,0.0,0.0,12345.0,4,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12345.0,1,0,1_1,1_0 -6143,10.0,12.0,41.0,211,62,71,0.0,421,0.0,600.0,0.0,0.0,1.0,5.0,3.0,5.0,2.8,3954.545273527282,0.0,0.0,36930.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,13189.285714285716,2,0,2_1,2_0 -6144,2.0,2.0,75.0,112,74,50,0.0,4210,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1087.5737645755319,1825.0,0.0,35612.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23741.333333333332,4,0,4_0,4_1 -6145,6.0,6.0,67.0,111,74,12,0.0,4211,0.0,0.0,0.0,0.0,0.0,2.0,1.0,3.0,1.8,2897.761561009715,0.0,0.0,45165.0,5,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25091.666666666664,4,0,4_0,4_0 -6146,5.0,5.0,74.0,111,72,50,0.0,4212,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3006.122737581125,1352.0,0.0,17500.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,17500.0,3,0,3_0,3_0 -6147,0.0,0.0,22.0,111,84,41,0.0,4214,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4279.0612315187,0.0,0.0,2002.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2002.0,1,0,1_1,1_0 -6148,21.0,21.0,70.0,112,74,41,0.0,4216,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1609.3555862146413,1044.0,0.0,26840.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17893.333333333332,3,0,3_0,3_1 -6149,8.0,16.0,51.0,111,56,50,0.0,4218,0.0,0.0,180.0,264.0,1.0,4.0,0.0,1.0,1.0,1711.8462083168888,0.0,0.0,16020.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,16020.0,2,0,2_0,2_0 -6150,0.0,0.0,75.0,111,78,71,0.0,4220,0.0,0.0,0.0,272.0,0.0,1.0,0.0,1.0,1.0,3736.7041122063047,0.0,0.0,12900.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12900.0,2,0,2_1,2_0 -6151,9.0,9.0,41.0,111,37,12,0.0,4223,0.0,0.0,350.0,0.0,2.0,6.0,2.0,4.0,2.1,2205.0657184928673,4889.0,0.0,132804.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,63240.0,5,0,5,5_0 -6152,0.0,21.0,37.0,120,46,12,0.0,4224,0.0,110.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2809.011990179285,0.0,0.0,59459.0,1,4,0,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24774.583333333336,4,0,4_0,4_0 -6153,1.0,3.0,40.0,111,46,41,2.0,4225,0.0,700.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2728.169050985038,781.0,15150.0,44283.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,22141.5,4,0,4_1,4_0 -6154,0.0,15.0,32.0,211,54,20,0.0,4226,0.0,0.0,0.0,331.0,1.0,2.0,0.0,1.0,1.0,2368.014917668394,0.0,0.0,16210.0,1,3,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16210.0,2,0,2_0,2_0 -6155,3.0,11.0,67.0,112,72,70,0.0,4227,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2016.4719300877027,2477.0,0.0,70920.0,5,1,8,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,47280.0,5,0,5,5_1 -6156,1.0,13.0,27.0,111,63,50,2.0,4228,0.0,290.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2665.6582406615244,4394.0,4500.0,41782.0,1,3,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,23212.222222222223,4,0,4_0,4_0 -6157,1.0,1.0,46.0,300,63,50,1.0,4230,0.0,30.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1886.6475193038766,0.0,18200.0,48064.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20897.391304347828,3,0,3_0,3_1 -6158,10.0,12.0,59.0,400,34,20,0.0,4231,0.0,120.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,2514.1823670074814,4644.0,0.0,45273.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,30182.0,5,0,5,5_1 -6159,0.0,0.0,49.0,111,46,71,0.0,4232,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,3306.815140972501,0.0,0.0,41130.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25706.25,4,0,4_0,4_0 -6160,5.0,5.0,44.0,111,21,42,0.0,4233,0.0,0.0,0.0,0.0,2.0,7.0,3.0,7.0,3.8,1622.890038083123,3120.0,0.0,108502.0,1,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,28553.157894736843,4,0,4_0,4_0 -6161,0.0,0.0,51.0,400,85,50,0.0,4235,0.0,0.0,0.0,101.0,0.0,3.0,0.0,1.0,1.0,3771.242466709741,0.0,0.0,12642.0,7,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12642.0,2,0,2_1,2_1 -6162,3.0,7.0,59.0,112,21,50,0.0,4236,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1849.8025238418888,4524.0,0.0,81657.0,1,1,8,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,54438.0,5,0,5,5_1 -6163,2.0,2.0,83.0,111,75,50,0.0,4237,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1470.584452277921,0.0,0.0,37230.0,4,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,24820.0,4,0,4_0,4_0 -6164,10.0,10.0,54.0,111,34,10,0.0,4238,0.0,0.0,205.0,0.0,2.0,5.0,1.0,3.0,2.0,4153.615277869957,0.0,0.0,150463.0,1,2,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,75231.5,5,0,5,5_0 -6165,7.0,7.0,64.0,111,77,50,0.0,424,0.0,0.0,0.0,555.0,0.0,2.0,0.0,1.0,1.0,2474.7879609942856,0.0,0.0,19384.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19384.0,3,0,3_0,3_0 -6166,1.0,7.0,57.0,112,62,50,2.0,4240,0.0,500.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1173.2023640132832,0.0,9300.0,30126.0,1,2,8,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20084.0,3,0,3_0,3_0 -6167,1.0,1.0,37.0,112,37,50,1.0,4241,0.0,400.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2079.4113712714657,0.0,7700.0,56089.0,1,2,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,31160.555555555555,5,0,5,5_1 -6168,1.0,8.0,44.0,300,48,44,0.0,4242,0.0,400.0,0.0,0.0,4.0,5.0,2.0,5.0,2.8,832.0084886066765,0.0,0.0,61405.0,1,2,0,1.0,5,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,21930.357142857145,4,0,4_0,4_0 -6169,21.0,21.0,53.0,111,34,41,0.0,4243,0.0,515.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,3781.4206500807586,4524.0,0.0,70778.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,28311.2,4,0,4_0,4_0 -6170,0.0,0.0,84.0,111,75,70,0.0,4245,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2877.8553652299784,0.0,0.0,27676.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27676.0,4,0,4_0,4_0 -6171,7.0,7.0,53.0,112,11,50,0.0,4246,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2121.646496196022,0.0,0.0,26596.0,1,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17730.666666666668,3,0,3_0,3_1 -6172,1.0,1.0,30.0,111,21,50,0.0,4247,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2323.7010854608325,4169.0,0.0,12251.0,1,4,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12251.0,1,0,1_0,1_0 -6173,3.0,3.0,65.0,112,75,71,0.0,4248,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2428.1536389226226,2281.0,0.0,34178.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22785.333333333332,4,0,4_0,4_1 -6174,13.0,14.0,74.0,111,72,50,0.0,4251,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1099.4199581684325,0.0,0.0,25162.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16774.666666666668,2,0,2_0,2_0 -6175,3.0,3.0,59.0,112,33,10,0.0,4253,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2345.146191349596,0.0,0.0,71639.0,1,2,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,47759.333333333336,5,0,5,5_1 -6176,3.0,12.0,46.0,112,62,50,0.0,4254,0.0,280.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1359.0582323388896,0.0,0.0,48448.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24224.0,4,0,4_0,4_1 -6177,15.0,15.0,65.0,112,75,33,0.0,4255,0.0,0.0,0.0,633.0,0.0,3.0,0.0,1.0,1.0,1302.778984895655,0.0,0.0,20868.0,5,3,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20868.0,3,0,3_0,3_0 -6178,17.0,17.0,45.0,120,43,33,0.0,4256,0.0,0.0,230.0,0.0,2.0,7.0,3.0,5.0,2.6,1705.4190651123831,2497.0,0.0,50726.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,19510.0,3,0,3_0,3_1 -6179,2.0,3.0,74.0,112,44,20,0.0,4257,0.0,550.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1812.1877784860437,0.0,0.0,8300.0,1,4,7,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,8300.0,1,0,1_0,1_0 -6180,2.0,19.0,47.0,300,67,50,0.0,4258,0.0,290.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1590.0374623372907,4246.0,0.0,19635.0,1,2,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,9817.5,1,0,1_0,1_1 -6181,13.0,13.0,78.0,400,71,70,0.0,4259,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2582.2783914313163,0.0,0.0,10957.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10957.0,1,0,1_0,1_1 -6182,9.0,9.0,31.0,111,47,31,0.0,426,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3055.5536320215147,0.0,0.0,44730.0,1,2,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,29820.0,5,0,5,5_0 -6183,2.0,14.0,28.0,112,63,71,0.0,4260,0.0,0.0,200.0,0.0,1.0,5.0,2.0,4.0,2.1,1174.1361449796652,2300.0,0.0,35403.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16858.571428571428,2,0,2_0,2_1 -6184,7.0,9.0,59.0,112,75,70,0.0,4261,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1406.3936510149813,0.0,0.0,31708.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21138.666666666668,3,0,3_0,3_1 -6185,1.0,3.0,36.0,112,53,31,2.0,4262,0.0,200.0,12.0,0.0,2.0,5.0,2.0,4.0,2.1,2405.280601466138,3242.0,15400.0,48777.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23227.142857142855,4,0,4_0,4_1 -6186,2.0,2.0,51.0,111,37,20,0.0,4263,0.0,80.0,300.0,0.0,3.0,5.0,2.0,4.0,2.5,2196.867371811395,6940.0,0.0,106806.0,1,2,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,42722.4,5,0,5,5_0 -6187,6.0,8.0,29.0,111,62,50,0.0,4264,0.0,200.0,0.0,234.0,2.0,5.0,3.0,5.0,3.0,2848.2512638228554,0.0,0.0,71524.0,1,3,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,23841.333333333332,4,0,4_1,4_0 -6188,1.0,1.0,53.0,112,38,12,1.0,4266,0.0,100749.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1784.1963968836337,0.0,17211.0,121238.0,1,1,10,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,52712.17391304348,5,0,5,5_1 -6189,3.0,9.0,42.0,112,67,50,0.0,4269,0.0,350.0,0.0,0.0,1.0,5.0,3.0,5.0,3.0,1910.0811976370685,2496.0,0.0,34840.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,11613.333333333334,1,0,1_1,1_1 -6190,3.0,14.0,25.0,111,48,31,0.0,427,0.0,0.0,0.0,440.0,3.0,4.0,1.0,3.0,2.0,2843.9682177843365,3310.0,0.0,61257.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,30628.5,5,0,5,5_0 -6191,10.0,20.0,59.0,111,75,33,0.0,4271,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2695.3530805163514,1613.0,0.0,40348.0,5,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,26898.666666666668,4,0,4_0,4_0 -6192,20.0,20.0,64.0,112,74,20,0.0,4272,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,2197.654510634641,4606.0,0.0,123546.0,5,1,6,0.0,2,4.0,0.0,0.0,1,0,0,0,0,0,1.0,3.0,82364.0,5,0,5,5_1 -6193,3.0,3.0,51.0,300,22,41,0.0,4273,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.8,1456.2996701959078,3120.0,0.0,22485.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,8030.357142857143,1,0,1_0,1_1 -6194,2.0,5.0,62.0,111,78,60,0.0,4275,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4333.05758179249,1357.0,0.0,26611.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26611.0,4,0,4_0,4_0 -6195,0.0,6.0,38.0,111,21,31,2.0,4276,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3651.076703977985,5732.0,7500.0,24268.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11556.190476190475,1,0,1_1,1_0 -6196,6.0,8.0,60.0,300,72,60,0.0,4277,0.0,120.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2884.1916632715343,2915.0,0.0,53310.0,5,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,26655.0,4,0,4_0,4_1 -6197,0.0,16.0,73.0,111,78,71,0.0,4278,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1841.323282263989,0.0,0.0,30000.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20000.0,3,0,3_0,3_0 -6198,9.0,12.0,30.0,221,42,20,0.0,428,0.0,0.0,150.0,0.0,1.0,4.0,1.0,2.0,1.3,3335.27223259656,0.0,0.0,33150.0,1,3,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,25500.0,4,0,4_0,4_0 -6199,5.0,5.0,64.0,112,78,70,0.0,4281,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2022.966428515857,2236.0,0.0,42899.0,5,1,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21449.5,3,0,3_0,3_1 -6200,6.0,13.0,76.0,111,77,70,0.0,4283,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1169.4276972706512,0.0,0.0,23010.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15340.0,2,0,2_0,2_0 -6201,4.0,19.0,54.0,111,68,50,0.0,4288,0.0,0.0,0.0,301.0,1.0,3.0,0.0,2.0,1.5,3071.2340263546084,0.0,0.0,16988.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,11325.333333333334,1,0,1_1,1_0 -6202,9.0,9.0,62.0,111,75,50,0.0,4290,0.0,50.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1981.5087353676306,2340.0,0.0,40433.0,5,2,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26955.333333333332,4,0,4_0,4_0 -6203,5.0,5.0,57.0,111,34,10,0.0,4291,0.0,50.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1328.911808073789,3276.0,0.0,54860.0,1,1,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,27430.0,4,0,4_0,4_0 -6204,1.0,2.0,31.0,111,52,20,0.0,4292,0.0,800.0,0.0,435.0,1.0,2.0,0.0,1.0,1.0,2984.9600859264297,1976.0,0.0,18583.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,18583.0,3,0,3_0,3_0 -6205,0.0,0.0,45.0,111,52,10,0.0,4293,0.0,0.0,0.0,40.0,1.0,3.0,1.0,2.0,1.5,2797.446403592731,0.0,0.0,23206.0,1,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15470.666666666666,2,0,2_1,2_0 -6206,4.0,6.0,65.0,111,78,71,0.0,4294,0.0,0.0,0.0,497.0,0.0,4.0,1.0,3.0,2.0,2831.0573993371418,0.0,0.0,27472.0,5,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13736.0,2,0,2_0,2_0 -6207,6.0,6.0,83.0,111,86,41,0.0,4295,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3152.5314196677286,860.0,0.0,27016.0,6,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27016.0,4,0,4_0,4_0 -6208,1.0,1.0,77.0,111,74,50,0.0,4296,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1879.5726712996805,1196.0,0.0,36492.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,24328.0,4,0,4_0,4_0 -6209,1.0,8.0,57.0,112,47,50,2.0,4297,0.0,200.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,2028.4295540376238,1300.0,6800.0,59534.0,1,2,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,39689.333333333336,5,0,5,5_1 -6210,0.0,0.0,72.0,111,71,50,0.0,4298,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2541.0534386307577,0.0,0.0,14901.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14901.0,2,0,2_0,2_0 -6211,10.0,10.0,61.0,112,74,50,0.0,4299,0.0,500.0,0.0,0.0,1.0,7.0,1.0,3.0,2.0,1514.4654077908951,2289.0,0.0,86776.0,5,1,7,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,43388.0,5,0,5,5_0 -6212,0.0,0.0,86.0,111,72,71,0.0,43,0.0,0.0,0.0,465.0,0.0,1.0,0.0,1.0,1.0,4750.347438192846,0.0,0.0,13450.0,5,3,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13450.0,2,0,2_0,2_0 -6213,4.0,4.0,68.0,112,74,50,0.0,430,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5180.133004577849,1576.0,0.0,40729.0,5,1,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,40729.0,5,0,5,5_0 -6214,0.0,0.0,25.0,111,84,20,0.0,4300,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2572.1967064862397,0.0,0.0,6950.0,3,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4633.333333333333,1,0,1_1,1_0 -6215,2.0,2.0,41.0,300,21,50,0.0,4302,0.0,274.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1702.0968043597677,1924.0,0.0,52069.0,1,2,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,20026.53846153846,3,0,3_0,3_1 -6216,3.0,17.0,33.0,112,52,42,0.0,4304,0.0,120.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2445.6622106442587,2029.0,0.0,28374.0,1,1,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15763.333333333332,2,0,2_0,2_1 -6217,0.0,0.0,37.0,111,47,12,0.0,4306,0.0,0.0,0.0,450.0,1.0,1.0,0.0,1.0,1.0,3011.2058778994337,0.0,0.0,16660.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16660.0,2,0,2_0,2_0 -6218,1.0,5.0,29.0,112,63,50,2.0,4308,0.0,0.0,99999.0,187.0,1.0,6.0,3.0,5.0,2.4,1580.1883692850733,3203.0,8000.0,31624.0,1,3,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,13176.666666666668,2,0,2_1,2_1 -6219,0.0,0.0,59.0,111,77,60,0.0,4309,0.0,0.0,0.0,271.0,0.0,3.0,0.0,1.0,1.0,3024.5505998358844,0.0,0.0,17289.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17289.0,3,0,3_0,3_0 -6220,6.0,11.0,69.0,111,75,31,0.0,431,0.0,0.0,0.0,256.0,0.0,2.0,0.0,1.0,1.0,2383.7049190571915,1817.0,0.0,33070.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,33070.0,5,0,5,5_0 -6221,3.0,6.0,49.0,120,48,42,0.0,4310,0.0,100.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2266.2141330076,3254.0,0.0,76601.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,38300.5,5,0,5,5_1 -6222,11.0,21.0,65.0,112,77,50,0.0,4311,0.0,0.0,0.0,416.0,0.0,3.0,0.0,1.0,1.0,2035.5533309229208,0.0,0.0,15354.0,5,3,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,15354.0,2,0,2_1,2_0 -6223,1.0,1.0,35.0,111,46,20,2.0,4313,0.0,300.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,2288.1606730062754,1300.0,27000.0,17402.0,1,1,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,9667.777777777777,1,0,1_0,1_0 -6224,25.0,25.0,77.0,111,77,71,0.0,4314,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3542.43456999356,0.0,0.0,17028.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17028.0,3,0,3_0,3_0 -6225,0.0,1.0,34.0,111,46,42,0.0,4315,0.0,720.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3053.212958754257,2933.0,0.0,28805.0,1,2,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,28805.0,4,0,4_0,4_0 -6226,3.0,3.0,61.0,111,75,41,0.0,4316,0.0,0.0,0.0,400.0,0.0,2.0,0.0,1.0,1.0,3108.374156433367,0.0,0.0,18172.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18172.0,3,0,3_0,3_0 -6227,1.0,1.0,64.0,111,74,31,1.0,4317,0.0,0.0,0.0,608.0,0.0,5.0,0.0,1.0,1.0,2971.0240997814944,0.0,12500.0,26951.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,26951.0,4,0,4_0,4_0 -6228,5.0,5.0,39.0,111,46,43,0.0,4319,0.0,20.0,0.0,370.0,2.0,1.0,0.0,2.0,1.5,3326.033529275137,1187.0,0.0,31104.0,1,3,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,20736.0,3,0,3_0,3_0 -6229,12.0,12.0,58.0,111,37,10,0.0,4320,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3532.383960616888,0.0,0.0,7336.0,4,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,7336.0,1,0,1_0,1_0 -6230,9.0,9.0,62.0,111,78,50,0.0,4321,0.0,0.0,0.0,283.0,0.0,3.0,0.0,1.0,1.0,2882.7760827009097,0.0,0.0,20387.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20387.0,3,0,3_0,3_0 -6231,12.0,19.0,75.0,112,77,71,0.0,4322,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3414.555186018369,0.0,0.0,41375.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,27583.333333333332,4,0,4_0,4_0 -6232,2.0,23.0,38.0,112,67,42,0.0,4323,0.0,250.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4316.262350265711,0.0,0.0,31732.0,1,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17628.888888888887,3,0,3_0,3_1 -6233,0.0,0.0,25.0,111,68,71,0.0,4324,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.3,3748.1382878372583,0.0,0.0,11290.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8684.615384615385,1,0,1_0,1_0 -6234,3.0,3.0,61.0,111,31,10,0.0,4325,0.0,250.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2113.6453359876296,2605.0,0.0,103415.0,1,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,68943.33333333333,5,0,5,5_0 -6235,4.0,22.0,73.0,111,86,71,0.0,4326,0.0,0.0,0.0,130.0,1.0,4.0,1.0,2.0,1.5,3675.3867528458663,0.0,0.0,16170.0,5,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,10780.0,1,0,1_1,1_0 -6236,4.0,4.0,58.0,111,52,50,0.0,4327,0.0,0.0,320.0,0.0,2.0,4.0,0.0,2.0,1.5,1942.0572519583136,4524.0,0.0,29590.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,19726.666666666668,3,0,3_0,3_0 -6237,4.0,13.0,48.0,400,56,71,0.0,4328,0.0,0.0,200.0,0.0,1.0,3.0,1.0,3.0,2.0,2924.921269331852,780.0,0.0,29477.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,14738.5,2,0,2_0,2_1 -6238,3.0,11.0,26.0,111,47,31,0.0,4329,0.0,0.0,2361.0,0.0,2.0,2.0,0.0,2.0,1.5,3483.0780294481106,3120.0,0.0,50297.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,33531.333333333336,5,0,5,5_0 -6239,8.0,13.0,51.0,111,85,50,0.0,433,0.0,0.0,200.0,0.0,1.0,5.0,0.0,2.0,1.5,1116.636602752652,3867.0,0.0,32598.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21732.0,4,0,4_0,4_0 -6240,0.0,0.0,42.0,112,65,71,0.0,4330,0.0,0.0,0.0,355.0,1.0,2.0,0.0,1.0,1.0,3039.1943909833694,0.0,0.0,20790.0,1,3,10,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,20790.0,3,0,3_1,3_0 -6241,0.0,14.0,30.0,400,21,43,2.0,4331,0.0,400.0,0.0,0.0,1.0,11.0,0.0,1.0,1.0,3109.8372640395614,1309.0,1850.0,16342.0,1,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16342.0,2,0,2_0,2_1 -6242,6.0,20.0,45.0,300,85,70,0.0,4332,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2658.24335671519,0.0,0.0,15050.0,7,3,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,15050.0,2,0,2_1,2_1 -6243,0.0,0.0,71.0,111,77,50,0.0,4333,0.0,0.0,0.0,308.0,0.0,3.0,0.0,2.0,1.5,2300.0972393972374,0.0,0.0,31581.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21054.0,3,0,3_0,3_0 -6244,2.0,2.0,48.0,300,48,42,0.0,4335,0.0,400.0,50.0,0.0,2.0,6.0,0.0,2.0,1.5,1601.6572625117599,4576.0,0.0,68253.0,1,2,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,45502.0,5,0,5,5_1 -6245,15.0,15.0,31.0,111,38,31,0.0,4340,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2508.195303130517,0.0,0.0,86811.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,43405.5,5,0,5,5_0 -6246,7.0,7.0,81.0,111,75,70,0.0,4341,0.0,0.0,0.0,574.0,0.0,3.0,0.0,2.0,1.5,3363.2288034401417,0.0,0.0,39676.0,5,4,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26450.666666666668,4,0,4_0,4_0 -6247,6.0,21.0,36.0,400,67,50,0.0,4342,0.0,100029.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,3435.6881168662044,1040.0,0.0,48997.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,24498.5,4,0,4_0,4_1 -6248,5.0,6.0,38.0,300,68,20,0.0,4343,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2605.9962100531384,0.0,0.0,12305.0,1,2,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,6836.111111111111,1,0,1_0,1_1 -6249,0.0,6.0,25.0,111,37,41,0.0,4344,0.0,0.0,650.0,0.0,1.0,2.0,0.0,1.0,1.0,3048.1619846379203,0.0,0.0,21914.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,21914.0,4,0,4_1,4_0 -6250,0.0,14.0,24.0,111,55,60,0.0,4345,0.0,0.0,130.0,195.0,1.0,1.0,0.0,1.0,1.0,5488.765980823884,3120.0,0.0,11688.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,11688.0,1,0,1_1,1_0 -6251,7.0,7.0,78.0,112,75,41,0.0,4346,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4401.53070809704,2352.0,0.0,22929.0,5,1,5,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22929.0,4,0,4_0,4_1 -6252,8.0,9.0,56.0,112,42,20,0.0,4348,0.0,0.0,60.0,0.0,1.0,4.0,0.0,2.0,1.5,1503.9998697012606,0.0,0.0,60625.0,1,1,9,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,40416.666666666664,5,0,5,5_0 -6253,3.0,3.0,74.0,112,74,31,0.0,4350,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1535.379087921852,0.0,0.0,76783.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,51188.666666666664,5,0,5,5_1 -6254,2.0,2.0,54.0,221,43,33,0.0,4351,0.0,10.0,50.0,0.0,3.0,6.0,1.0,3.0,2.0,3247.624936002052,2616.0,0.0,70163.0,1,1,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,35081.5,5,0,5,5_0 -6255,2.0,2.0,26.0,120,52,50,0.0,4355,0.0,0.0,150.0,490.0,2.0,3.0,0.0,2.0,1.5,2150.15538371996,0.0,0.0,35732.0,1,3,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,23821.333333333332,4,0,4_0,4_0 -6256,0.0,0.0,38.0,111,85,71,0.0,4356,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2739.6949338633353,0.0,0.0,11798.0,7,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11798.0,1,0,1_1,1_0 -6257,9.0,11.0,84.0,111,74,70,0.0,4357,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2423.4474277558443,0.0,0.0,35155.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23436.666666666668,4,0,4_0,4_0 -6258,1.0,1.0,43.0,112,38,12,1.0,436,0.0,750.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1846.8521872191893,2340.0,23000.0,62804.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,34891.11111111111,5,0,5,5_1 -6259,0.0,0.0,33.0,111,85,50,0.0,4360,0.0,0.0,0.0,335.0,0.0,1.0,0.0,1.0,1.0,3260.883529552525,0.0,0.0,13185.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13185.0,2,0,2_1,2_0 -6260,0.0,0.0,22.0,111,42,20,0.0,4361,0.0,0.0,0.0,220.0,2.0,2.0,0.0,2.0,1.5,2596.3173791170234,0.0,0.0,24477.0,1,3,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,16318.0,2,0,2_1,2_0 -6261,0.0,12.0,23.0,112,43,33,0.0,4362,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3691.2617138258443,0.0,0.0,16147.0,1,3,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,16147.0,2,0,2_1,2_1 -6262,0.0,0.0,70.0,111,78,71,0.0,4363,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,7291.153481780635,0.0,0.0,31393.0,5,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15696.5,2,0,2_0,2_0 -6263,8.0,10.0,73.0,112,78,71,0.0,4364,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2545.206942429491,0.0,0.0,25304.0,5,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16869.333333333332,2,0,2_0,2_1 -6264,1.0,8.0,33.0,211,67,50,0.0,4365,0.0,200.0,0.0,227.0,2.0,3.0,0.0,2.0,1.5,5718.532835630156,2600.0,0.0,39347.0,1,3,2,3.0,5,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26231.333333333332,4,0,4_0,4_0 -6265,7.0,14.0,54.0,112,34,10,0.0,4368,0.0,300.0,260.0,0.0,1.0,7.0,2.0,3.0,2.0,1117.3572422766197,6500.0,0.0,79016.0,1,2,6,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,39508.0,5,0,5,5_1 -6266,5.0,7.0,44.0,300,37,20,0.0,437,0.0,900.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1760.2171847062807,0.0,0.0,65286.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,31088.571428571428,5,0,5,5_1 -6267,0.0,0.0,22.0,111,47,20,0.0,4370,0.0,0.0,0.0,128.0,1.0,1.0,0.0,1.0,1.0,3136.6184398206356,0.0,0.0,5994.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,5994.0,1,0,1_1,1_0 -6268,0.0,0.0,20.0,111,84,41,0.0,4372,0.0,0.0,0.0,412.0,0.0,2.0,0.0,1.0,1.0,3581.5465835703253,0.0,0.0,6366.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6366.0,1,0,1_1,1_0 -6269,6.0,6.0,58.0,400,43,20,0.0,4373,0.0,0.0,30.0,0.0,1.0,3.0,1.0,2.0,1.5,1194.3843686403306,3016.0,0.0,28854.0,1,1,0,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19236.0,3,0,3_0,3_0 -6270,5.0,12.0,55.0,300,37,31,0.0,4374,0.0,600.0,160.0,0.0,2.0,6.0,0.0,2.0,1.5,2033.495634275452,6661.0,0.0,59273.0,1,1,0,1.0,3,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,39515.333333333336,5,0,5,5_0 -6271,5.0,5.0,79.0,300,78,71,0.0,4375,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1982.9808978690937,2081.0,0.0,35313.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23542.0,4,0,4_0,4_1 -6272,0.0,0.0,78.0,400,71,71,0.0,4377,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,3156.5277839415903,1821.0,0.0,18110.0,5,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12073.333333333334,1,0,1_0,1_1 -6273,3.0,15.0,57.0,112,54,50,0.0,4378,0.0,0.0,220.0,0.0,3.0,7.0,1.0,3.0,2.0,1243.5369294431978,1872.0,0.0,47016.0,1,1,6,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,23508.0,4,0,4_0,4_0 -6274,3.0,3.0,47.0,300,63,71,0.0,4379,0.0,300.0,156.0,0.0,2.0,6.0,3.0,5.0,2.8,1252.1921725750226,8096.0,0.0,38476.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,1,1.0,2.0,13741.428571428572,2,0,2_1,2_1 -6275,2.0,4.0,36.0,111,46,31,0.0,4380,0.0,350.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4045.644154180406,2652.0,0.0,21098.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21098.0,3,0,3_0,3_0 -6276,0.0,0.0,63.0,112,86,71,0.0,4381,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3640.78959418627,0.0,0.0,10294.0,7,3,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,10294.0,1,0,1_1,1_1 -6277,9.0,18.0,56.0,111,54,50,0.0,4384,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1827.1673517389504,2830.0,0.0,8418.0,4,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,8418.0,1,0,1_1,1_0 -6278,15.0,26.0,35.0,212,63,71,0.0,4385,0.0,0.0,80.0,0.0,2.0,6.0,4.0,6.0,2.7,1571.3414184761814,2600.0,0.0,36493.0,1,2,1,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,13515.925925925925,2,0,2_1,2_1 -6279,1.0,5.0,34.0,112,47,10,2.0,4386,0.0,180.0,200.0,0.0,2.0,5.0,1.0,3.0,1.8,2020.7694064308032,3258.0,10000.0,55323.0,1,2,10,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,30735.0,5,0,5,5_0 -6280,2.0,10.0,50.0,111,47,12,0.0,4390,0.0,99999.0,0.0,460.0,2.0,6.0,6.0,8.0,3.5,926.690221929893,6240.0,0.0,60044.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,17155.428571428572,3,0,3_0,3_0 -6281,7.0,11.0,47.0,112,62,50,0.0,4391,0.0,128.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,957.5713946529464,4034.0,0.0,31062.0,1,2,8,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,17256.666666666668,3,0,3_0,3_0 -6282,0.0,0.0,36.0,111,55,50,0.0,4392,0.0,0.0,0.0,0.0,1.0,5.0,5.0,6.0,2.9,2110.0636020389225,0.0,0.0,28420.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9800.0,1,0,1_1,1_0 -6283,1.0,6.0,47.0,112,67,71,2.0,4393,0.0,110.0,50.0,0.0,3.0,5.0,3.0,5.0,2.8,3036.2156125673514,1040.0,3500.0,46710.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,16682.14285714286,2,0,2_1,2_1 -6284,0.0,1.0,36.0,111,46,12,0.0,4394,0.0,500.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3535.171470555579,0.0,0.0,37368.0,1,2,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,37368.0,5,0,5,5_0 -6285,1.0,4.0,26.0,111,43,20,2.0,4395,0.0,0.0,0.0,525.0,1.0,2.0,0.0,1.0,1.0,3816.2064784807576,2603.0,6000.0,12343.0,1,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,12343.0,1,0,1_0,1_0 -6286,0.0,0.0,37.0,111,38,20,0.0,4396,0.0,0.0,0.0,917.0,2.0,2.0,1.0,3.0,1.8,3006.532217096406,0.0,0.0,46293.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25718.333333333332,4,0,4_0,4_0 -6287,0.0,16.0,24.0,111,55,41,0.0,4397,0.0,0.0,40.0,0.0,2.0,3.0,0.0,2.0,1.5,2936.3948437778918,1040.0,0.0,17762.0,1,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,11841.333333333334,1,0,1_1,1_0 -6288,1.0,1.0,37.0,111,85,50,1.0,4399,0.0,0.0,0.0,40.0,0.0,4.0,2.0,3.0,1.6,3412.8857210193596,0.0,30000.0,15156.0,7,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9472.5,1,0,1_1,1_0 -6289,1.0,14.0,57.0,111,67,50,2.0,44,0.0,0.0,120.0,452.0,2.0,3.0,0.0,2.0,1.5,1096.242325620607,0.0,1500.0,23296.0,4,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,15530.666666666666,2,0,2_0,2_0 -6290,0.0,0.0,25.0,111,84,43,0.0,440,0.0,0.0,0.0,149.0,0.0,1.0,0.0,1.0,1.0,4495.272036150394,0.0,0.0,6598.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6598.0,1,0,1_1,1_0 -6291,0.0,4.0,25.0,111,37,31,0.0,4400,0.0,0.0,300.0,360.0,1.0,2.0,0.0,1.0,1.0,3572.8938814441763,0.0,0.0,22324.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,22324.0,4,0,4_0,4_0 -6292,6.0,11.0,72.0,221,77,71,0.0,4402,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,4058.5000820920336,0.0,0.0,46396.0,5,1,1,3.0,5,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,23198.0,4,0,4_0,4_0 -6293,9.0,22.0,28.0,300,62,50,0.0,4405,0.0,0.0,200.0,440.0,1.0,3.0,0.0,1.0,1.0,3000.109243668191,0.0,0.0,24136.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,24136.0,4,0,4_0,4_1 -6294,0.0,0.0,20.0,111,47,60,0.0,4407,0.0,0.0,0.0,342.0,1.0,1.0,0.0,1.0,1.0,4305.786826907814,0.0,0.0,25227.0,2,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,25227.0,4,0,4_1,4_0 -6295,19.0,19.0,76.0,111,74,60,0.0,4409,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3656.311560175292,0.0,0.0,30701.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30701.0,5,0,5,5_0 -6296,4.0,4.0,66.0,111,31,10,0.0,441,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,946.3386015278788,0.0,0.0,125327.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,83551.33333333333,5,0,5,5_0 -6297,2.0,2.0,55.0,112,85,71,0.0,4411,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,3.0,3117.9856557794387,0.0,0.0,22010.0,7,3,5,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,7336.666666666667,1,0,1_1,1_1 -6298,0.0,0.0,53.0,111,52,42,0.0,4412,0.0,0.0,0.0,335.0,2.0,3.0,2.0,4.0,2.5,2084.3445694425554,0.0,0.0,41142.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16456.8,2,0,2_0,2_0 -6299,11.0,12.0,51.0,221,47,50,0.0,4414,0.0,0.0,50.0,0.0,1.0,4.0,0.0,2.0,1.5,1762.7414144329052,1560.0,0.0,21390.0,1,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,14260.0,2,0,2_0,2_0 -6300,0.0,0.0,49.0,111,85,50,0.0,4417,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1892.1144190661878,0.0,0.0,17980.0,7,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8990.0,1,0,1_1,1_0 -6301,0.0,0.0,19.0,111,84,41,0.0,4419,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4028.3078524960224,0.0,0.0,2400.0,3,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,2400.0,1,0,1_0,1_0 -6302,1.0,8.0,46.0,300,85,60,2.0,442,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,2281.4046746389026,0.0,3000.0,13241.0,6,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10185.384615384615,1,0,1_0,1_1 -6303,17.0,20.0,69.0,111,75,70,0.0,4421,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2979.551980928606,1560.0,0.0,44668.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,29778.666666666668,5,0,5,5_0 -6304,8.0,8.0,40.0,112,38,10,0.0,4422,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2571.973256628922,3380.0,0.0,66372.0,4,3,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,44248.0,5,0,5,5_1 -6305,4.0,5.0,54.0,112,63,50,0.0,4423,0.0,550.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1613.5023896386583,0.0,0.0,28480.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18986.666666666668,3,0,3_0,3_1 -6306,7.0,10.0,36.0,111,38,10,0.0,4424,0.0,0.0,112.0,0.0,2.0,5.0,2.0,4.0,2.1,2953.1883381740367,1143.0,0.0,63430.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,30204.761904761905,5,0,5,5_0 -6307,9.0,9.0,59.0,120,11,50,0.0,4426,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1032.9844642057797,0.0,0.0,1790.0,1,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,1193.3333333333333,1,0,1_0,1_0 -6308,4.0,7.0,49.0,111,52,50,0.0,4427,0.0,199998.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2480.3013284373515,3017.0,0.0,49989.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,23804.285714285714,4,0,4_0,4_0 -6309,6.0,7.0,67.0,111,74,12,0.0,4428,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1707.3197236066353,0.0,0.0,66150.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,44100.0,5,0,5,5_0 -6310,9.0,9.0,56.0,111,22,50,0.0,4429,0.0,0.0,0.0,200.0,1.0,1.0,0.0,2.0,1.5,3557.4426690451764,1758.0,0.0,26830.0,1,3,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,17886.666666666668,3,0,3_0,3_0 -6311,10.0,10.0,35.0,211,38,12,0.0,443,0.0,65.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,995.5434122178355,0.0,0.0,78576.0,1,2,3,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,37417.142857142855,5,0,5,5_0 -6312,4.0,4.0,75.0,112,71,71,0.0,4431,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1643.6788169816614,3078.0,0.0,17955.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11970.0,1,0,1_0,1_1 -6313,11.0,15.0,66.0,112,78,70,0.0,4433,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1455.1330594917372,1300.0,0.0,32651.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21767.333333333332,4,0,4_0,4_1 -6314,18.0,20.0,81.0,211,78,71,0.0,4434,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3063.6090727411597,0.0,0.0,12602.0,5,3,3,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,12602.0,2,0,2_1,2_0 -6315,0.0,0.0,65.0,111,74,12,1.0,4436,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3137.1489951119565,3796.0,42000.0,66287.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,44191.333333333336,5,0,5,5_0 -6316,1.0,1.0,44.0,111,53,50,1.0,4439,0.0,270.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2229.001403957423,5803.0,26000.0,51720.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22486.956521739132,4,0,4_0,4_0 -6317,16.0,16.0,51.0,112,56,50,0.0,444,0.0,1000.0,200.0,0.0,3.0,4.0,2.0,4.0,2.5,1409.9368307712346,1976.0,0.0,38865.0,1,2,6,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,15546.0,2,0,2_0,2_1 -6318,1.0,7.0,55.0,111,47,60,0.0,4440,0.0,700.0,50.0,0.0,3.0,4.0,1.0,3.0,2.0,2265.191139071096,4680.0,0.0,83660.0,1,1,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,41830.0,5,0,5,5_0 -6319,1.0,7.0,75.0,300,75,70,2.0,4441,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1024.2483239651938,0.0,5900.0,20668.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13778.666666666666,2,0,2_0,2_1 -6320,5.0,16.0,47.0,111,23,31,0.0,4444,0.0,0.0,40.0,0.0,2.0,4.0,2.0,4.0,2.3,1878.5633913977044,3086.0,0.0,133790.0,1,1,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,58169.56521739131,5,0,5,5_0 -6321,4.0,4.0,44.0,111,34,10,0.0,4445,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1591.203083474756,0.0,0.0,107480.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,51180.95238095238,5,0,5,5_0 -6322,0.0,0.0,48.0,111,65,70,0.0,4446,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3390.870644045408,0.0,0.0,20250.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13500.0,2,0,2_0,2_0 -6323,1.0,3.0,54.0,111,43,33,2.0,4449,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2855.0055302006454,0.0,21000.0,57934.0,1,2,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,38622.666666666664,5,0,5,5_0 -6324,0.0,2.0,36.0,111,46,41,2.0,445,0.0,0.0,0.0,176.0,1.0,4.0,4.0,6.0,2.7,4494.517288579153,0.0,12000.0,38723.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,14341.85185185185,2,0,2_1,2_0 -6325,15.0,15.0,37.0,111,37,12,0.0,4451,0.0,250.0,140.0,0.0,2.0,5.0,2.0,4.0,2.1,1969.8033586738925,7294.0,0.0,76116.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,36245.71428571428,5,0,5,5_0 -6326,1.0,17.0,61.0,112,78,70,0.0,4452,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.8,1045.772984442211,6003.0,0.0,29314.0,5,3,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,10469.285714285716,1,0,1_1,1_1 -6327,10.0,14.0,79.0,111,74,70,0.0,4454,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2066.29757416397,0.0,0.0,42582.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,42582.0,5,0,5,5_0 -6328,1.0,9.0,22.0,111,84,10,2.0,4455,0.0,100.0,0.0,70.0,0.0,2.0,0.0,1.0,1.0,3075.7259365325426,0.0,6000.0,4093.0,3,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,4093.0,1,0,1_1,1_0 -6329,3.0,8.0,39.0,111,67,41,0.0,4459,0.0,0.0,0.0,0.0,1.0,5.0,5.0,8.0,3.5,1290.0686641314176,0.0,0.0,38837.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,11096.285714285714,1,0,1_1,1_0 -6330,19.0,19.0,77.0,111,78,50,0.0,446,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,4754.70006947825,0.0,0.0,23589.0,5,4,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15726.0,2,0,2_0,2_0 -6331,1.0,2.0,53.0,111,33,41,0.0,4461,0.0,0.0,200.0,0.0,2.0,6.0,0.0,2.0,1.5,2421.806904741429,0.0,0.0,72952.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,48634.666666666664,5,0,5,5_0 -6332,17.0,17.0,85.0,400,71,70,0.0,4462,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2412.186249452249,0.0,0.0,14743.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14743.0,2,0,2_0,2_1 -6333,14.0,16.0,68.0,300,71,70,0.0,4463,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3344.8056608793886,0.0,0.0,15062.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15062.0,2,0,2_0,2_1 -6334,5.0,7.0,36.0,300,46,20,0.0,4464,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.1,2241.234216825259,0.0,0.0,76005.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,36192.857142857145,5,0,5,5_1 -6335,1.0,2.0,57.0,111,56,71,2.0,4466,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3046.9452357993714,0.0,17400.0,29483.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19655.333333333332,3,0,3_0,3_0 -6336,2.0,6.0,43.0,300,52,50,0.0,4467,0.0,250.0,5.0,0.0,3.0,6.0,3.0,5.0,2.6,1125.7441678071862,0.0,0.0,43495.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,16728.846153846152,2,0,2_0,2_1 -6337,19.0,20.0,45.0,111,53,50,0.0,4468,0.0,680.0,30.0,0.0,2.0,6.0,2.0,4.0,2.1,1870.581823178964,0.0,0.0,61117.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,29103.333333333332,5,0,5,5_0 -6338,2.0,2.0,74.0,111,74,44,0.0,4469,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2924.3768884081023,3053.0,0.0,51158.0,5,1,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,34105.333333333336,5,0,5,5_0 -6339,0.0,11.0,36.0,112,48,50,0.0,4470,0.0,295.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2446.833255473413,4368.0,0.0,44236.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24575.555555555555,4,0,4_0,4_1 -6340,8.0,8.0,45.0,111,31,12,0.0,4471,0.0,0.0,0.0,0.0,2.0,7.0,4.0,6.0,3.1,1605.8939646416286,0.0,0.0,148220.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,47812.90322580645,5,0,5,5_0 -6341,11.0,12.0,80.0,111,71,70,0.0,4472,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1757.8970566803239,0.0,0.0,12275.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12275.0,1,0,1_0,1_0 -6342,2.0,7.0,45.0,111,43,50,0.0,4475,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,4131.515580496016,0.0,0.0,21595.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16611.53846153846,2,0,2_0,2_0 -6343,0.0,20.0,41.0,111,85,20,0.0,4478,0.0,0.0,0.0,148.0,0.0,3.0,1.0,2.0,1.5,2836.7742685778235,3303.0,0.0,11582.0,5,3,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,7721.333333333333,1,0,1_1,1_0 -6344,8.0,8.0,52.0,111,85,50,0.0,4480,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3332.8367200394773,0.0,0.0,13610.0,7,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,13610.0,2,0,2_1,2_0 -6345,4.0,4.0,34.0,112,34,20,0.0,4486,256.0,500.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1610.0164670920813,2440.0,0.0,52619.0,1,2,9,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,25056.666666666664,4,0,4_0,4_1 -6346,0.0,0.0,21.0,111,84,42,0.0,449,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,4943.528418179599,0.0,0.0,11716.0,3,3,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7810.666666666667,1,0,1_1,1_0 -6347,0.0,0.0,66.0,111,72,41,0.0,4491,0.0,0.0,0.0,610.0,0.0,1.0,0.0,1.0,1.0,3780.9261492519245,0.0,0.0,18647.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18647.0,3,0,3_0,3_0 -6348,0.0,0.0,41.0,111,38,20,0.0,4492,0.0,0.0,0.0,871.0,1.0,3.0,0.0,1.0,1.0,3434.040065674032,0.0,0.0,38109.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38109.0,5,0,5,5_0 -6349,6.0,11.0,53.0,111,52,60,0.0,4495,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.3,3414.8954025266835,0.0,0.0,24740.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,10756.521739130436,1,0,1_1,1_0 -6350,15.0,15.0,82.0,111,75,70,0.0,45,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1375.82605633765,0.0,0.0,32884.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21922.666666666668,4,0,4_0,4_0 -6351,2.0,3.0,24.0,111,84,41,0.0,450,0.0,0.0,100.0,0.0,0.0,1.0,0.0,1.0,1.0,4167.316511717654,0.0,0.0,11696.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,11696.0,1,0,1_1,1_0 -6352,12.0,12.0,53.0,111,34,10,0.0,4501,0.0,0.0,30.0,0.0,1.0,5.0,3.0,4.0,2.3,2756.809118537721,0.0,0.0,32087.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,13950.869565217392,2,0,2_0,2_0 -6353,0.0,0.0,56.0,111,56,70,0.0,4502,0.0,0.0,0.0,180.0,1.0,1.0,0.0,1.0,1.0,3316.776677309249,0.0,0.0,9174.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9174.0,1,0,1_1,1_0 -6354,1.0,1.0,43.0,111,37,10,1.0,4503,0.0,488.0,180.0,0.0,2.0,4.0,2.0,4.0,2.1,3258.965719607396,5096.0,20000.0,52318.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,24913.333333333332,4,0,4_1,4_0 -6355,0.0,0.0,66.0,211,78,71,0.0,4504,0.0,0.0,0.0,261.0,0.0,3.0,1.0,3.0,2.0,3176.134045291905,2532.0,0.0,16430.0,5,3,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8215.0,1,0,1_1,1_0 -6356,0.0,0.0,42.0,111,85,71,0.0,4506,0.0,0.0,0.0,133.0,1.0,5.0,1.0,2.0,1.5,2395.337384389531,0.0,0.0,9720.0,6,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6480.0,1,0,1_1,1_0 -6357,5.0,5.0,55.0,111,47,50,0.0,4507,0.0,300.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2917.733514624776,3285.0,0.0,42596.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28397.333333333332,4,0,4_0,4_0 -6358,11.0,11.0,47.0,111,62,50,0.0,4509,0.0,120.0,250.0,0.0,2.0,4.0,1.0,3.0,2.0,2758.631422180081,5339.0,0.0,46580.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23290.0,4,0,4_0,4_0 -6359,7.0,9.0,60.0,300,75,42,0.0,4510,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4304.604493765621,0.0,0.0,41284.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,27522.666666666668,4,0,4_0,4_0 -6360,1.0,35.0,27.0,111,63,43,2.0,4513,0.0,150.0,0.0,493.0,1.0,3.0,0.0,1.0,1.0,3086.373312835258,2878.0,14000.0,16808.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,16808.0,2,0,2_0,2_0 -6361,17.0,28.0,50.0,400,21,30,0.0,4515,0.0,800.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3607.5569580541987,2426.0,0.0,9024.0,1,3,0,1.0,1,1.0,1.0,1.0,0,1,0,0,0,1,0.0,1.0,9024.0,1,0,1_1,1_0 -6362,6.0,23.0,62.0,112,75,44,0.0,4518,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1647.8836788211202,0.0,0.0,41160.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,27440.0,4,0,4_0,4_1 -6363,13.0,13.0,50.0,111,85,10,0.0,4520,0.0,0.0,80.0,0.0,1.0,4.0,1.0,2.0,1.5,2131.8669911377892,1820.0,0.0,40618.0,4,1,6,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,27078.666666666668,4,0,4_0,4_0 -6364,3.0,5.0,57.0,111,45,42,0.0,4521,0.0,0.0,50.0,0.0,1.0,5.0,0.0,2.0,1.5,1410.207292869799,3169.0,0.0,47742.0,1,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,31828.0,5,0,5,5_0 -6365,3.0,14.0,59.0,112,47,50,0.0,4522,0.0,530.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2007.7921932023237,2650.0,0.0,50051.0,1,1,8,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,33367.333333333336,5,0,5,5_1 -6366,12.0,14.0,33.0,111,37,10,0.0,4526,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3349.450385147926,0.0,0.0,55169.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,55169.0,5,0,5,5_0 -6367,0.0,3.0,28.0,111,47,31,0.0,4528,0.0,100.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2961.432762376063,0.0,0.0,34362.0,1,1,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22908.0,4,0,4_0,4_0 -6368,5.0,8.0,38.0,400,52,50,0.0,4529,0.0,300.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1230.327559701123,5460.0,0.0,42415.0,1,3,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,15148.214285714286,2,0,2_0,2_1 -6369,3.0,6.0,82.0,400,71,70,0.0,453,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2066.4412480425517,0.0,0.0,16855.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11236.666666666666,1,0,1_0,1_1 -6370,13.0,15.0,56.0,112,56,71,0.0,4530,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3239.0824142110037,4680.0,0.0,36580.0,1,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24386.666666666668,4,0,4_0,4_1 -6371,20.0,20.0,69.0,221,78,71,0.0,4532,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2673.107095108011,2080.0,0.0,37718.0,5,1,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18859.0,3,0,3_0,3_0 -6372,0.0,0.0,78.0,111,78,70,0.0,4533,0.0,0.0,0.0,237.0,0.0,1.0,0.0,1.0,1.0,3760.5851114293496,0.0,0.0,18250.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18250.0,3,0,3_0,3_0 -6373,5.0,6.0,35.0,400,46,30,0.0,4534,0.0,99999.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1875.8898677360837,1560.0,0.0,38783.0,1,4,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19391.5,3,0,3_0,3_1 -6374,0.0,0.0,58.0,111,68,71,0.0,4536,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,6342.205812612493,0.0,0.0,25340.0,1,3,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12670.0,2,0,2_0,2_0 -6375,0.0,0.0,28.0,111,55,20,0.0,4537,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3587.193402875983,0.0,0.0,39170.0,1,4,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26113.333333333332,4,0,4_0,4_0 -6376,5.0,10.0,33.0,111,46,31,0.0,454,0.0,700.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4137.819251122364,2912.0,0.0,34909.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,34909.0,5,0,5,5_0 -6377,8.0,11.0,54.0,112,56,70,0.0,4544,0.0,99999.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1456.4246388099596,520.0,0.0,12859.0,1,3,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,12859.0,2,0,2_1,2_0 -6378,2.0,12.0,39.0,400,21,50,0.0,4546,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1511.931369702961,0.0,0.0,24355.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,10147.916666666668,1,0,1_1,1_1 -6379,4.0,5.0,56.0,111,42,20,0.0,4549,0.0,200.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1195.1378093809528,0.0,0.0,65903.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,43935.333333333336,5,0,5,5_0 -6380,14.0,14.0,51.0,111,54,42,0.0,4550,0.0,0.0,130.0,0.0,1.0,6.0,0.0,1.0,1.0,1352.7556964765001,0.0,0.0,19705.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,19705.0,3,0,3_0,3_0 -6381,10.0,10.0,66.0,111,71,71,0.0,4551,0.0,50.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,3017.0872322053283,0.0,0.0,31506.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,21004.0,3,0,3_0,3_0 -6382,6.0,6.0,28.0,111,54,43,0.0,4553,0.0,250.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3359.3417155286334,4160.0,0.0,40626.0,1,2,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22570.0,4,0,4_0,4_0 -6383,3.0,8.0,71.0,112,75,70,0.0,4554,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1751.4248040198358,0.0,0.0,27300.0,5,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18200.0,3,0,3_0,3_1 -6384,3.0,19.0,54.0,120,37,70,0.0,4555,0.0,0.0,0.0,590.0,3.0,5.0,2.0,4.0,2.5,2830.6105084958426,0.0,0.0,40759.0,1,3,0,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,16303.6,2,0,2_0,2_0 -6385,10.0,11.0,45.0,111,34,10,0.0,4557,0.0,0.0,0.0,554.0,2.0,3.0,1.0,3.0,2.0,2693.3406862298066,0.0,0.0,38119.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19059.5,3,0,3_0,3_0 -6386,4.0,6.0,58.0,400,43,10,0.0,4558,0.0,1405.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2331.990855893843,5030.0,0.0,34525.0,1,1,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,34525.0,5,0,5,5_1 -6387,0.0,8.0,30.0,111,64,50,2.0,4559,0.0,300.0,0.0,195.0,2.0,1.0,0.0,2.0,1.5,2946.3344464863853,4359.0,16000.0,72801.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,48534.0,5,0,5,5_0 -6388,3.0,8.0,47.0,111,48,31,0.0,456,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2447.3842231747676,5990.0,0.0,34749.0,1,2,7,5.0,4,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,19305.0,3,0,3_0,3_0 -6389,20.0,23.0,48.0,111,62,71,0.0,4560,0.0,90.0,160.0,0.0,2.0,4.0,0.0,2.0,1.5,2351.7727590049944,0.0,0.0,38786.0,1,1,7,5.0,3,3.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25857.333333333332,4,0,4_0,4_0 -6390,9.0,9.0,60.0,111,42,50,0.0,4563,99999.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,2.0,3004.1683176711617,7246.0,0.0,34943.0,1,1,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17471.5,3,0,3_0,3_0 -6391,2.0,2.0,32.0,120,47,31,0.0,4564,0.0,0.0,200.0,0.0,1.0,6.0,3.0,5.0,2.4,1812.6297578568513,1560.0,0.0,33464.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,13943.333333333334,2,0,2_0,2_1 -6392,3.0,7.0,36.0,111,46,31,0.0,4565,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,6523.611322290832,3224.0,0.0,58298.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27760.952380952378,4,0,4_0,4_0 -6393,3.0,3.0,97.0,221,72,70,0.0,4567,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,5102.597893203396,0.0,0.0,41487.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,41487.0,5,0,5,5_0 -6394,0.0,0.0,40.0,221,68,71,0.0,4568,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5242.33226430549,1560.0,0.0,15404.0,1,3,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15404.0,2,0,2_1,2_0 -6395,2.0,11.0,41.0,111,65,71,0.0,4569,0.0,400.0,0.0,360.0,2.0,5.0,1.0,3.0,2.0,2596.3827383199296,3276.0,0.0,28135.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14067.5,2,0,2_1,2_0 -6396,5.0,10.0,39.0,111,53,50,0.0,457,0.0,0.0,32.0,0.0,1.0,6.0,1.0,3.0,1.8,1571.213027297313,2288.0,0.0,31919.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,17732.777777777777,3,0,3_0,3_0 -6397,5.0,9.0,71.0,112,78,70,0.0,4572,0.0,0.0,0.0,405.0,0.0,3.0,0.0,2.0,1.5,2640.97607200198,1560.0,0.0,22010.0,5,3,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14673.333333333334,2,0,2_0,2_1 -6398,0.0,0.0,68.0,111,75,20,0.0,4574,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2937.0572221494754,0.0,0.0,64030.0,7,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,64030.0,5,0,5,5_0 -6399,15.0,15.0,42.0,221,48,50,0.0,4575,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2149.6364745244055,6374.0,0.0,50629.0,1,2,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22012.608695652176,4,0,4_0,4_0 -6400,1.0,5.0,31.0,111,22,31,2.0,4578,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2635.900391815927,0.0,20000.0,39161.0,1,2,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,21756.11111111111,4,0,4_0,4_0 -6401,2.0,2.0,53.0,111,43,33,0.0,4579,0.0,100.0,80.0,0.0,2.0,5.0,2.0,3.0,2.0,1598.7678684824366,0.0,0.0,69305.0,1,1,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,34652.5,5,0,5,5_0 -6402,16.0,17.0,59.0,112,74,60,0.0,458,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2270.0422517854536,1820.0,0.0,29608.0,5,1,7,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,19738.666666666668,3,0,3_0,3_0 -6403,0.0,0.0,63.0,111,77,50,0.0,4581,0.0,0.0,0.0,171.0,0.0,3.0,0.0,1.0,1.0,2801.511024403032,0.0,0.0,14114.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14114.0,2,0,2_1,2_0 -6404,3.0,11.0,20.0,111,42,41,0.0,4583,0.0,950.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3841.252299843638,1040.0,0.0,7816.0,2,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,7816.0,1,0,1_1,1_0 -6405,4.0,16.0,58.0,111,56,50,0.0,4584,0.0,0.0,30.0,296.0,1.0,5.0,0.0,1.0,1.0,1127.1667165070978,1300.0,0.0,6950.0,4,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,6950.0,1,0,1_1,1_0 -6406,2.0,5.0,37.0,111,23,31,0.0,4585,0.0,0.0,120.0,0.0,2.0,6.0,2.0,4.0,2.1,3553.604460660049,0.0,0.0,110100.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,52428.57142857143,5,0,5,5_0 -6407,2.0,22.0,36.0,111,85,50,0.0,4587,0.0,0.0,0.0,0.0,1.0,6.0,5.0,7.0,3.2,961.0548511089953,1040.0,0.0,40384.0,6,3,8,6.0,5,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12620.0,2,0,2_1,2_0 -6408,10.0,11.0,69.0,400,78,71,0.0,4588,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3469.0061338216788,0.0,0.0,13703.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,9135.333333333334,1,0,1_0,1_0 -6409,1.0,12.0,41.0,112,65,60,2.0,4589,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2450.2484787665194,3120.0,2400.0,40204.0,1,2,6,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,19144.761904761905,3,0,3_0,3_1 -6410,1.0,4.0,34.0,112,45,31,2.0,459,0.0,115.0,180.0,0.0,2.0,4.0,2.0,4.0,2.1,3147.886988995515,3354.0,9500.0,44647.0,1,2,9,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,21260.47619047619,3,0,3_0,3_1 -6411,9.0,10.0,75.0,111,74,10,0.0,4590,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1127.5696362414424,0.0,0.0,69035.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,46023.333333333336,5,0,5,5_0 -6412,0.0,0.0,66.0,111,78,70,0.0,4592,0.0,0.0,0.0,345.0,1.0,4.0,0.0,2.0,1.5,3176.6957980110383,0.0,0.0,34130.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22753.333333333332,4,0,4_0,4_0 -6413,4.0,7.0,38.0,111,42,20,0.0,4593,0.0,80.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2961.1763455225773,3120.0,0.0,56798.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23665.833333333336,4,0,4_0,4_0 -6414,0.0,0.0,51.0,111,55,71,0.0,4594,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,1070.4145265898126,0.0,0.0,23518.0,4,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8710.37037037037,1,0,1_1,1_0 -6415,9.0,10.0,62.0,111,72,50,0.0,4595,0.0,30.0,0.0,298.0,1.0,4.0,1.0,3.0,1.8,1692.0501182815442,1820.0,0.0,28160.0,5,3,4,4.0,5,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,15644.444444444443,2,0,2_1,2_0 -6416,0.0,11.0,36.0,111,63,71,0.0,4596,0.0,324.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2952.796148916102,0.0,0.0,39525.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21958.333333333332,4,0,4_0,4_0 -6417,1.0,12.0,31.0,111,54,31,2.0,4597,0.0,0.0,30.0,312.0,2.0,4.0,2.0,4.0,2.1,3416.793447503272,1560.0,400.0,22587.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,10755.714285714284,1,0,1_0,1_0 -6418,3.0,10.0,46.0,112,65,70,0.0,4598,0.0,500.0,0.0,0.0,4.0,7.0,4.0,7.0,3.6,963.1241663889767,5926.0,0.0,57710.0,1,2,10,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,16030.555555555555,2,0,2_0,2_1 -6419,5.0,13.0,73.0,112,77,41,0.0,4599,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5101.983717943483,0.0,0.0,20934.0,5,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20934.0,3,0,3_0,3_0 -6420,2.0,5.0,44.0,112,64,71,0.0,46,0.0,550.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,4393.0404454502495,0.0,0.0,33360.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,14504.347826086958,2,0,2_0,2_1 -6421,1.0,3.0,39.0,112,34,20,0.0,4601,0.0,300.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,1499.5701201521288,1300.0,0.0,37517.0,1,4,8,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23448.125,4,0,4_0,4_1 -6422,9.0,9.0,72.0,111,77,60,0.0,4603,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1934.262438015967,0.0,0.0,29550.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19700.0,3,0,3_0,3_0 -6423,9.0,9.0,57.0,111,78,60,0.0,4604,0.0,0.0,0.0,360.0,0.0,4.0,1.0,3.0,2.0,3535.771606645785,3120.0,0.0,43145.0,7,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,21572.5,3,0,3_0,3_0 -6424,3.0,3.0,60.0,111,78,50,0.0,4605,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1568.7349037084714,0.0,0.0,23556.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,15704.0,2,0,2_0,2_0 -6425,1.0,1.0,52.0,111,38,30,1.0,4606,0.0,600.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2183.8589889061445,4511.0,12000.0,81280.0,1,2,9,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,2.0,2.0,38704.7619047619,5,0,5,5_0 -6426,8.0,12.0,60.0,300,54,31,0.0,4609,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2223.6240259834603,679.0,0.0,5730.0,4,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,5730.0,1,0,1_0,1_1 -6427,1.0,1.0,62.0,120,77,44,1.0,461,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3949.254778799619,0.0,12545.0,62116.0,5,1,0,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,41410.666666666664,5,0,5,5_0 -6428,11.0,11.0,87.0,300,71,70,0.0,4611,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2380.190709147076,0.0,0.0,13375.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13375.0,2,0,2_0,2_1 -6429,2.0,5.0,60.0,111,74,41,0.0,4612,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3259.741714307072,4990.0,0.0,42191.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,28127.333333333332,4,0,4_0,4_0 -6430,6.0,10.0,73.0,111,78,70,0.0,4613,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2327.5792031100177,0.0,0.0,24858.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16572.0,2,0,2_0,2_0 -6431,1.0,8.0,45.0,111,52,60,0.0,4617,0.0,200.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,5781.014743992788,2080.0,0.0,28852.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,13739.047619047618,2,0,2_0,2_0 -6432,0.0,6.0,47.0,111,47,50,0.0,4618,0.0,120.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1187.121708773364,0.0,0.0,52705.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25097.619047619046,4,0,4_0,4_0 -6433,9.0,12.0,67.0,221,75,70,0.0,462,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2087.3136404762145,0.0,0.0,31438.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20958.666666666668,3,0,3_0,3_0 -6434,0.0,7.0,24.0,112,42,10,0.0,4620,0.0,300.0,0.0,630.0,2.0,5.0,0.0,2.0,1.5,3504.414179566855,3596.0,0.0,39613.0,1,3,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26408.666666666668,4,0,4_0,4_1 -6435,2.0,14.0,33.0,112,21,50,0.0,4624,0.0,0.0,0.0,0.0,2.0,7.0,4.0,6.0,2.7,2699.6166571026497,0.0,0.0,49192.0,1,4,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18219.25925925926,3,0,3_0,3_1 -6436,3.0,4.0,39.0,112,46,41,0.0,4625,0.0,350.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1859.6600540238658,0.0,0.0,52686.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29270.0,5,0,5,5_1 -6437,0.0,0.0,61.0,111,55,31,0.0,4626,0.0,0.0,0.0,487.0,1.0,4.0,0.0,1.0,1.0,3874.148007645378,0.0,0.0,20980.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20980.0,3,0,3_0,3_0 -6438,16.0,17.0,33.0,111,53,50,0.0,4627,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,4287.392557858909,0.0,0.0,52042.0,1,4,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,34694.666666666664,5,0,5,5_0 -6439,14.0,14.0,76.0,111,86,41,0.0,4628,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2012.975527152604,0.0,0.0,13819.0,6,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13819.0,2,0,2_0,2_0 -6440,0.0,0.0,73.0,111,72,50,0.0,4629,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2920.4896779563874,0.0,0.0,13699.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13699.0,2,0,2_0,2_0 -6441,3.0,3.0,23.0,120,54,31,0.0,463,0.0,0.0,545.0,0.0,3.0,5.0,2.0,3.0,2.0,1092.809783690691,3173.0,0.0,45780.0,1,1,0,1.0,2,3.0,0.0,1.0,0,1,0,0,0,0,3.0,0.0,22890.0,4,0,4_0,4_0 -6442,0.0,0.0,48.0,111,54,31,0.0,4630,0.0,0.0,0.0,364.0,2.0,3.0,0.0,2.0,1.5,3491.1146371185514,0.0,0.0,31079.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20719.333333333332,3,0,3_0,3_0 -6443,1.0,3.0,50.0,112,46,50,0.0,4631,0.0,340.0,50.0,0.0,2.0,7.0,1.0,3.0,2.0,1347.5125847832237,1446.0,0.0,50167.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25083.5,4,0,4_0,4_1 -6444,0.0,12.0,29.0,111,56,31,2.0,4632,0.0,99999.0,480.0,423.0,2.0,2.0,0.0,2.0,1.5,3194.816834478817,2601.0,1500.0,21739.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,14492.666666666666,2,0,2_1,2_0 -6445,11.0,19.0,68.0,400,71,70,0.0,4633,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2803.3013478700104,0.0,0.0,8910.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,8910.0,1,0,1_0,1_1 -6446,21.0,21.0,55.0,111,78,50,0.0,4635,0.0,0.0,450.0,556.0,3.0,4.0,2.0,4.0,2.5,1299.9081312830924,3173.0,0.0,62793.0,5,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,25117.2,4,0,4_0,4_0 -6447,15.0,15.0,55.0,112,47,50,0.0,4637,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3054.055364552494,1300.0,0.0,49523.0,1,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,33015.333333333336,5,0,5,5_0 -6448,3.0,13.0,41.0,400,68,71,0.0,4638,0.0,550.0,500.0,0.0,2.0,4.0,1.0,3.0,1.8,1877.047050320031,8893.0,0.0,30228.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16793.333333333332,2,0,2_0,2_1 -6449,2.0,11.0,42.0,111,52,71,0.0,4640,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,2684.1801977864347,0.0,0.0,19134.0,1,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8319.13043478261,1,0,1_1,1_0 -6450,2.0,3.0,47.0,111,63,60,0.0,4641,0.0,99999.0,0.0,156.0,3.0,5.0,4.0,7.0,3.8,1231.521458089639,3120.0,0.0,36400.0,1,3,8,6.0,5,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9578.947368421053,1,0,1_1,1_0 -6451,0.0,5.0,54.0,300,77,41,0.0,4642,0.0,0.0,80.0,0.0,0.0,1.0,0.0,1.0,1.0,1916.1840237909444,0.0,0.0,9000.0,4,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,9000.0,1,0,1_0,1_1 -6452,2.0,2.0,34.0,400,23,43,0.0,4643,0.0,550.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3082.062259582746,3900.0,0.0,136776.0,1,2,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,75986.66666666667,5,0,5,5_1 -6453,8.0,24.0,28.0,111,48,31,0.0,4644,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3627.308733416098,1404.0,0.0,23469.0,1,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23469.0,4,0,4_0,4_0 -6454,7.0,9.0,37.0,111,65,43,0.0,4645,0.0,750.0,0.0,601.0,2.0,4.0,2.0,4.0,2.1,2203.2737458442475,2340.0,0.0,44300.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21095.238095238095,3,0,3_0,3_0 -6455,0.0,0.0,43.0,111,33,10,0.0,4646,0.0,50.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1191.850516162257,1040.0,0.0,115902.0,1,3,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,55191.42857142857,5,0,5,5_0 -6456,3.0,5.0,58.0,111,34,10,0.0,4647,0.0,0.0,99999.0,0.0,1.0,7.0,0.0,2.0,1.5,1898.3236530621461,3169.0,0.0,96262.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,64174.666666666664,5,0,5,5_0 -6457,6.0,6.0,74.0,111,75,30,0.0,4648,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3011.796881570089,0.0,0.0,27504.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27504.0,4,0,4_0,4_0 -6458,0.0,8.0,25.0,120,43,31,2.0,4649,0.0,600.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1744.236178326937,3076.0,6400.0,43669.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29112.666666666668,5,0,5,5_1 -6459,1.0,10.0,37.0,111,62,10,2.0,4650,0.0,0.0,0.0,280.0,2.0,5.0,3.0,5.0,2.4,1824.497925792422,1726.0,7000.0,20368.0,4,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,8486.666666666668,1,0,1_1,1_0 -6460,1.0,3.0,42.0,112,43,33,0.0,4651,0.0,298.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1323.5728829261766,0.0,0.0,40466.0,1,2,8,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22481.11111111111,4,0,4_0,4_0 -6461,0.0,0.0,52.0,111,37,10,0.0,4653,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2683.3963653618134,0.0,0.0,208720.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,139146.66666666666,5,0,5,5_0 -6462,1.0,5.0,42.0,111,54,42,2.0,4656,0.0,0.0,0.0,415.0,1.0,4.0,3.0,4.0,2.5,2441.4706289515093,1040.0,4000.0,23116.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,9246.4,1,0,1_1,1_0 -6463,4.0,4.0,85.0,111,78,71,0.0,4658,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,6324.187810751974,0.0,0.0,20988.0,6,4,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13992.0,2,0,2_0,2_0 -6464,2.0,4.0,63.0,120,74,10,0.0,466,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1695.3664667868447,1404.0,0.0,54754.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,36502.666666666664,5,0,5,5_1 -6465,0.0,0.0,18.0,111,84,41,0.0,4660,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4222.577813607703,0.0,0.0,2625.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2625.0,1,0,1_1,1_0 -6466,0.0,0.0,87.0,111,86,70,0.0,4661,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2619.910130398565,0.0,0.0,24125.0,6,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24125.0,4,0,4_0,4_0 -6467,1.0,1.0,65.0,111,74,31,1.0,4663,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1739.8945330940273,0.0,20000.0,63568.0,5,2,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,42378.666666666664,5,0,5,5_0 -6468,0.0,0.0,63.0,111,77,70,1.0,4664,0.0,0.0,250.0,0.0,1.0,5.0,0.0,2.0,1.5,3090.7401110624796,0.0,14000.0,60419.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,40279.333333333336,5,0,5,5_0 -6469,5.0,10.0,76.0,400,78,70,0.0,4665,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1654.3947599841945,0.0,0.0,27690.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18460.0,3,0,3_0,3_1 -6470,0.0,0.0,54.0,111,56,71,0.0,4666,0.0,0.0,0.0,392.0,2.0,1.0,1.0,3.0,1.8,3517.620430817882,0.0,0.0,50890.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28272.222222222223,4,0,4_0,4_0 -6471,21.0,21.0,84.0,112,71,70,0.0,4667,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2878.898608922947,1248.0,0.0,8360.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,8360.0,1,0,1_0,1_1 -6472,15.0,19.0,34.0,221,37,20,0.0,4668,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,3765.157171638508,1847.0,0.0,40090.0,1,3,1,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19090.47619047619,3,0,3_0,3_0 -6473,0.0,0.0,75.0,112,71,70,0.0,4669,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2171.6285653720133,0.0,0.0,8800.0,5,1,4,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8800.0,1,0,1_0,1_1 -6474,8.0,10.0,56.0,111,47,50,0.0,467,0.0,550.0,130.0,0.0,2.0,4.0,0.0,2.0,1.5,3789.0822274665297,0.0,0.0,68224.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,45482.666666666664,5,0,5,5_0 -6475,1.0,34.0,49.0,111,35,12,2.0,4671,0.0,0.0,99999.0,0.0,2.0,8.0,3.0,5.0,3.0,1871.0387064407964,5819.0,100.0,269688.0,1,2,10,8.0,4,4.0,0.0,0.0,0,0,0,0,1,0,3.0,1.0,89896.0,5,0,5,5_0 -6476,11.0,11.0,47.0,112,62,50,0.0,4672,80.0,375.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1274.169325868489,3120.0,0.0,43108.0,1,1,7,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18742.608695652176,3,0,3_0,3_0 -6477,1.0,18.0,59.0,120,33,31,2.0,4674,0.0,350.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2420.385401873021,0.0,2200.0,66833.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,44555.333333333336,5,0,5,5_1 -6478,7.0,7.0,56.0,400,22,50,0.0,4680,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2360.761010186939,3123.0,0.0,34141.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22760.666666666668,4,0,4_0,4_1 -6479,4.0,4.0,59.0,111,77,42,0.0,4681,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2886.426612562924,2600.0,0.0,26434.0,7,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26434.0,4,0,4_0,4_0 -6480,4.0,4.0,42.0,111,42,20,0.0,4682,0.0,0.0,0.0,1.0,1.0,2.0,0.0,1.0,1.0,3610.3819554152587,0.0,0.0,25514.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25514.0,4,0,4_0,4_0 -6481,0.0,0.0,52.0,111,63,50,1.0,4683,0.0,0.0,156.0,0.0,2.0,4.0,0.0,2.0,1.5,2601.854141405294,0.0,22262.0,23582.0,1,3,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,15721.333333333334,2,0,2_0,2_0 -6482,8.0,10.0,50.0,111,56,60,0.0,4684,0.0,0.0,150.0,271.0,1.0,3.0,0.0,2.0,1.5,2246.4047715604215,1040.0,0.0,23127.0,1,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,15418.0,2,0,2_0,2_0 -6483,14.0,14.0,63.0,111,78,71,0.0,4685,0.0,0.0,0.0,244.0,0.0,4.0,1.0,3.0,2.0,2696.482701098353,0.0,0.0,19046.0,5,3,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,9523.0,1,0,1_1,1_0 -6484,2.0,16.0,35.0,300,62,60,0.0,4686,0.0,0.0,0.0,400.0,2.0,4.0,0.0,2.0,1.5,2278.1217143069466,1040.0,0.0,33204.0,1,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,22136.0,4,0,4_1,4_1 -6485,1.0,1.0,59.0,300,77,71,1.0,4687,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2756.694681792894,0.0,15000.0,34176.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22784.0,4,0,4_0,4_1 -6486,16.0,16.0,77.0,111,72,71,0.0,4689,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3077.499676859521,0.0,0.0,13403.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13403.0,2,0,2_0,2_0 -6487,2.0,3.0,65.0,212,78,71,0.0,469,0.0,410.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1812.9535451246286,2964.0,0.0,35442.0,5,2,1,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,17721.0,3,0,3_0,3_1 -6488,6.0,8.0,34.0,112,54,43,0.0,4691,0.0,730.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2585.1315511459566,0.0,0.0,38782.0,1,2,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18467.619047619046,3,0,3_0,3_1 -6489,3.0,3.0,64.0,112,75,31,0.0,4692,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2207.386939357818,0.0,0.0,37324.0,5,1,7,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24882.666666666668,4,0,4_0,4_0 -6490,4.0,13.0,76.0,400,71,70,0.0,4693,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1413.881700654653,3120.0,0.0,21546.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14364.0,2,0,2_0,2_1 -6491,4.0,4.0,58.0,111,42,41,0.0,4694,0.0,0.0,75.0,560.0,1.0,5.0,3.0,5.0,3.0,2799.0885233250997,0.0,0.0,21809.0,1,3,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,7269.666666666667,1,0,1_0,1_0 -6492,5.0,5.0,35.0,112,43,33,0.0,4697,0.0,300.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3490.8329563127677,2705.0,0.0,38840.0,1,3,10,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,38840.0,5,0,5,5_0 -6493,0.0,0.0,68.0,111,78,71,0.0,4698,0.0,0.0,0.0,57.0,0.0,6.0,2.0,4.0,2.5,2496.948125552951,0.0,0.0,20306.0,5,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8122.4,1,0,1_1,1_0 -6494,9.0,22.0,58.0,112,78,71,0.0,4701,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4456.621498796793,0.0,0.0,21424.0,5,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14282.666666666666,2,0,2_0,2_1 -6495,7.0,7.0,48.0,212,34,31,0.0,4702,0.0,450.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1988.3149719034627,3269.0,0.0,46916.0,1,1,3,0.0,3,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,31277.333333333332,5,0,5,5_1 -6496,1.0,4.0,42.0,221,47,42,0.0,4703,0.0,700.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4944.354263467905,1561.0,0.0,31000.0,1,2,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,31000.0,5,0,5,5_0 -6497,3.0,3.0,50.0,111,34,10,0.0,4704,0.0,250.0,200.0,0.0,2.0,8.0,3.0,5.0,3.0,972.2298651840025,0.0,0.0,70283.0,1,2,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,23427.666666666668,4,0,4_0,4_0 -6498,13.0,13.0,37.0,111,52,33,0.0,4705,0.0,500.0,0.0,267.0,2.0,4.0,2.0,4.0,2.1,2785.5691899569642,2865.0,0.0,32066.0,1,3,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,15269.52380952381,2,0,2_1,2_0 -6499,12.0,12.0,56.0,112,43,33,0.0,4706,0.0,0.0,850.0,0.0,4.0,8.0,2.0,4.0,2.5,1466.4027433064996,9342.0,0.0,133857.0,1,2,10,0.0,4,5.0,0.0,1.0,1,0,0,0,0,0,4.0,1.0,53542.8,5,0,5,5_1 -6500,7.0,7.0,68.0,112,74,10,0.0,4707,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1867.3170610096981,7192.0,0.0,65218.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,43478.666666666664,5,0,5,5_1 -6501,0.0,5.0,37.0,112,65,60,2.0,4709,0.0,650.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1471.9919148784734,5484.0,9000.0,43056.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17940.0,3,0,3_0,3_1 -6502,2.0,14.0,52.0,111,43,33,0.0,471,0.0,320.0,190.0,0.0,3.0,5.0,1.0,3.0,2.0,1618.123501100842,2665.0,0.0,58572.0,1,1,8,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,29286.0,5,0,5,5_0 -6503,0.0,0.0,22.0,111,84,20,0.0,4710,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3772.0027633888158,0.0,0.0,12000.0,3,4,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8000.0,1,0,1_0,1_0 -6504,14.0,14.0,54.0,112,64,50,0.0,4715,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1275.8069616416462,6729.0,0.0,24881.0,1,2,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16587.333333333332,2,0,2_0,2_1 -6505,16.0,16.0,75.0,111,86,50,0.0,4717,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1535.5852745577029,0.0,0.0,28220.0,5,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18813.333333333332,3,0,3_0,3_0 -6506,2.0,5.0,53.0,111,52,41,0.0,4718,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2578.3166842978285,820.0,0.0,35428.0,1,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23618.666666666668,4,0,4_0,4_0 -6507,0.0,6.0,54.0,112,77,70,2.0,4719,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2346.1075914487087,2080.0,4400.0,16305.0,7,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16305.0,2,0,2_0,2_1 -6508,0.0,0.0,71.0,111,75,33,1.0,472,0.0,150.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1882.315556407208,0.0,20318.0,54261.0,5,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,36174.0,5,0,5,5_0 -6509,3.0,15.0,63.0,112,75,50,0.0,4721,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2912.6578862263577,0.0,0.0,38850.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25900.0,4,0,4_0,4_1 -6510,2.0,2.0,37.0,120,21,43,1.0,4722,0.0,50.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,2998.101761684156,2860.0,20000.0,34797.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13383.461538461537,2,0,2_0,2_1 -6511,5.0,22.0,56.0,300,65,50,0.0,4723,0.0,200.0,60.0,0.0,3.0,4.0,1.0,3.0,2.0,1398.5296646844624,6412.0,0.0,33718.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,16859.0,2,0,2_0,2_1 -6512,3.0,3.0,75.0,111,75,70,0.0,4724,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2481.1002995787276,1872.0,0.0,26905.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17936.666666666668,3,0,3_0,3_0 -6513,0.0,0.0,85.0,112,77,50,0.0,4725,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3377.6521768642556,0.0,0.0,22931.0,5,1,10,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22931.0,4,0,4_0,4_0 -6514,1.0,1.0,71.0,111,75,41,0.0,4728,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2743.002749416289,0.0,0.0,57764.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,38509.333333333336,5,0,5,5_0 -6515,11.0,14.0,40.0,112,56,71,0.0,4729,0.0,200.0,0.0,0.0,2.0,4.0,4.0,6.0,2.9,3306.952939192853,0.0,0.0,30423.0,1,3,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10490.689655172415,1,0,1_1,1_0 -6516,4.0,5.0,34.0,300,21,50,0.0,473,0.0,400.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2624.405858996616,2080.0,0.0,74480.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,35466.666666666664,5,0,5,5_1 -6517,13.0,15.0,62.0,112,72,50,0.0,4731,0.0,0.0,600.0,0.0,1.0,4.0,0.0,2.0,1.5,1835.1816059838993,0.0,0.0,27910.0,5,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18606.666666666668,3,0,3_0,3_1 -6518,11.0,15.0,40.0,112,38,12,0.0,4733,0.0,996.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2006.6857158858343,9164.0,0.0,70032.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,33348.57142857143,5,0,5,5_0 -6519,3.0,3.0,39.0,111,48,20,0.0,4734,0.0,80.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2915.8211624133482,1957.0,0.0,29385.0,1,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,29385.0,5,0,5,5_0 -6520,0.0,16.0,33.0,111,21,50,2.0,4735,0.0,600.0,0.0,430.0,1.0,3.0,0.0,2.0,1.5,3575.8391823552984,3955.0,1200.0,11600.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,7733.333333333333,1,0,1_0,1_0 -6521,3.0,9.0,58.0,112,64,71,0.0,4737,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3118.313832379583,2912.0,0.0,19210.0,1,1,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19210.0,3,0,3_0,3_0 -6522,0.0,0.0,32.0,111,47,71,0.0,4739,0.0,0.0,0.0,230.0,1.0,2.0,0.0,1.0,1.0,3189.962012829327,0.0,0.0,17960.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17960.0,3,0,3_0,3_0 -6523,9.0,9.0,45.0,111,43,12,0.0,4740,0.0,147.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1824.9988965082327,0.0,0.0,84093.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,42046.5,5,0,5,5_0 -6524,2.0,2.0,33.0,111,43,31,0.0,4741,0.0,280.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2524.244688150115,0.0,0.0,46562.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22172.38095238095,4,0,4_0,4_0 -6525,9.0,9.0,62.0,111,72,70,0.0,4745,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1437.4509156017589,0.0,0.0,14748.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14748.0,2,0,2_1,2_0 -6526,37.0,37.0,77.0,111,75,60,0.0,4747,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2893.2577596765627,0.0,0.0,51303.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,34202.0,5,0,5,5_0 -6527,7.0,12.0,72.0,111,78,71,0.0,4748,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2092.6323902771587,2471.0,0.0,16478.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,10985.333333333334,1,0,1_0,1_0 -6528,4.0,4.0,62.0,111,77,50,0.0,475,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1230.5833611918065,2980.0,0.0,40344.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,26896.0,4,0,4_0,4_0 -6529,3.0,7.0,74.0,111,78,50,0.0,4751,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1467.2241667764622,0.0,0.0,25240.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,16826.666666666668,2,0,2_0,2_0 -6530,6.0,6.0,62.0,111,75,70,0.0,4752,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1114.258601992844,3042.0,0.0,19564.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19564.0,3,0,3_0,3_0 -6531,16.0,16.0,73.0,111,78,50,0.0,4754,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2743.0836299728307,1026.0,0.0,13954.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13954.0,2,0,2_0,2_0 -6532,13.0,13.0,56.0,111,37,41,0.0,4755,0.0,0.0,199998.0,0.0,2.0,5.0,0.0,2.0,1.5,3333.361702574082,0.0,0.0,58137.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,38758.0,5,0,5,5_0 -6533,0.0,2.0,31.0,111,33,12,0.0,4756,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2723.5650515348852,0.0,0.0,91573.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,43606.19047619047,5,0,5,5_0 -6534,1.0,7.0,55.0,400,62,70,0.0,4758,0.0,180.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2576.897287840436,0.0,0.0,49462.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,32974.666666666664,5,0,5,5_1 -6535,2.0,24.0,46.0,120,64,71,0.0,4759,0.0,0.0,400.0,370.0,1.0,4.0,0.0,1.0,1.0,3202.710205361515,2080.0,0.0,17495.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17495.0,3,0,3_0,3_1 -6536,13.0,13.0,85.0,120,78,70,0.0,476,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3311.735278869238,2548.0,0.0,18860.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12573.333333333334,2,0,2_0,2_1 -6537,0.0,0.0,51.0,111,52,41,0.0,4760,0.0,0.0,0.0,415.0,1.0,1.0,0.0,1.0,1.0,2794.845864368454,0.0,0.0,17087.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,17087.0,3,0,3_1,3_0 -6538,1.0,1.0,60.0,111,74,20,0.0,4763,0.0,0.0,0.0,254.0,0.0,2.0,0.0,1.0,1.0,3132.111395614296,0.0,0.0,38126.0,4,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,38126.0,5,0,5,5_0 -6539,0.0,0.0,29.0,111,45,42,0.0,4764,0.0,0.0,0.0,64.0,1.0,4.0,1.0,2.0,1.3,2876.9012474240453,0.0,0.0,12696.0,4,3,7,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9766.153846153846,1,0,1_1,1_0 -6540,5.0,5.0,33.0,111,46,20,0.0,4765,0.0,150.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2011.3959140369582,0.0,0.0,48350.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26861.11111111111,4,0,4_0,4_0 -6541,10.0,12.0,51.0,120,46,42,0.0,4766,0.0,0.0,500.0,0.0,2.0,8.0,1.0,3.0,2.0,3655.615516407075,6269.0,0.0,59956.0,1,2,0,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,3.0,0.0,29978.0,5,0,5,5_0 -6542,1.0,1.0,44.0,112,54,50,0.0,4767,600.0,0.0,0.0,0.0,2.0,4.0,4.0,6.0,2.7,1105.380532502741,1232.0,0.0,45924.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17008.888888888887,3,0,3_0,3_1 -6543,1.0,1.0,49.0,111,52,50,0.0,4770,60.0,0.0,50.0,0.0,3.0,6.0,2.0,4.0,2.3,1152.0700376783757,794.0,0.0,42790.0,1,1,8,7.0,5,3.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,18604.34782608696,3,0,3_0,3_0 -6544,4.0,4.0,84.0,300,71,70,0.0,4771,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1914.3232699021999,0.0,0.0,16513.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11008.666666666666,1,0,1_0,1_1 -6545,4.0,11.0,44.0,111,46,50,0.0,4772,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2352.9316340407895,0.0,0.0,22170.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,22170.0,4,0,4_0,4_0 -6546,9.0,9.0,45.0,112,21,50,0.0,4773,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.3,2667.4810693045765,1560.0,0.0,138598.0,1,2,7,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,60260.00000000001,5,0,5,5_1 -6547,2.0,2.0,34.0,111,37,31,0.0,4776,0.0,0.0,0.0,487.0,1.0,2.0,0.0,1.0,1.0,3028.1778884690257,0.0,0.0,30498.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30498.0,5,0,5,5_0 -6548,3.0,10.0,33.0,111,33,10,0.0,4777,0.0,20.0,10.0,543.0,2.0,3.0,0.0,2.0,1.5,2292.3530515096445,0.0,0.0,40081.0,1,3,7,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,26720.666666666668,4,0,4_0,4_0 -6549,5.0,6.0,63.0,111,74,41,0.0,4778,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1702.958945280878,0.0,0.0,33821.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22547.333333333332,4,0,4_0,4_0 -6550,9.0,9.0,64.0,112,75,30,0.0,4779,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2176.259383876269,2606.0,0.0,47570.0,5,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,31713.333333333332,5,0,5,5_0 -6551,4.0,4.0,37.0,111,48,50,0.0,478,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1840.272538001874,7117.0,0.0,47568.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26426.666666666664,4,0,4_0,4_0 -6552,0.0,0.0,63.0,111,75,60,0.0,4780,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2890.167609745507,0.0,0.0,29527.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29527.0,5,0,5,5_0 -6553,11.0,11.0,56.0,111,52,50,0.0,4781,0.0,100.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1009.1094242842497,3891.0,0.0,20760.0,1,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20760.0,3,0,3_0,3_0 -6554,4.0,4.0,41.0,111,42,20,0.0,4783,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2295.9804676395174,3640.0,0.0,34716.0,1,1,8,6.0,3,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,23144.0,4,0,4_0,4_0 -6555,9.0,21.0,61.0,111,75,50,0.0,4785,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1158.1165157193082,0.0,0.0,24810.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,16540.0,2,0,2_0,2_0 -6556,1.0,5.0,54.0,120,34,10,2.0,4787,0.0,1000.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1521.3516986866514,3623.0,12700.0,72290.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,48193.333333333336,5,0,5,5_1 -6557,4.0,4.0,37.0,111,46,31,0.0,4788,0.0,0.0,200.0,0.0,1.0,4.0,1.0,3.0,1.8,5031.125389909698,2018.0,0.0,34072.0,1,1,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,18928.888888888887,3,0,3_1,3_0 -6558,14.0,14.0,76.0,111,75,60,0.0,4789,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2721.6427851623034,0.0,0.0,29761.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19840.666666666668,3,0,3_0,3_0 -6559,3.0,5.0,60.0,400,75,50,0.0,479,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1984.041131608602,2226.0,0.0,34013.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22675.333333333332,4,0,4_0,4_1 -6560,11.0,11.0,84.0,111,77,50,0.0,4790,0.0,0.0,50.0,0.0,1.0,4.0,1.0,2.0,1.5,1982.700107853815,0.0,0.0,57635.0,5,1,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,38423.333333333336,5,0,5,5_0 -6561,6.0,6.0,51.0,111,63,50,0.0,4791,0.0,99999.0,21.0,0.0,2.0,4.0,0.0,2.0,1.5,881.1455859769467,0.0,0.0,37358.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,24905.333333333332,4,0,4_0,4_0 -6562,2.0,13.0,30.0,400,43,31,0.0,4792,0.0,400.0,0.0,200.0,1.0,1.0,0.0,2.0,1.5,3244.4226856738983,519.0,0.0,15354.0,1,3,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,10236.0,1,0,1_0,1_1 -6563,1.0,17.0,39.0,112,62,71,0.0,4794,0.0,320.0,0.0,0.0,3.0,7.0,3.0,5.0,2.8,3000.4886279088864,2288.0,0.0,36016.0,1,2,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,12862.857142857143,2,0,2_0,2_0 -6564,0.0,0.0,61.0,111,75,50,0.0,4795,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3266.269695794575,0.0,0.0,18821.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18821.0,3,0,3_0,3_0 -6565,6.0,6.0,59.0,111,34,20,0.0,4796,0.0,606.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1439.4932042239345,3189.0,0.0,75972.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30388.8,5,0,5,5_0 -6566,0.0,18.0,63.0,112,75,50,2.0,4797,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1595.4521776053637,0.0,2000.0,24525.0,5,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,16350.0,2,0,2_0,2_0 -6567,8.0,8.0,46.0,111,53,60,0.0,4798,0.0,200.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3253.3249322951838,3166.0,0.0,40218.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,40218.0,5,0,5,5_0 -6568,0.0,4.0,38.0,111,22,50,0.0,4799,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3162.5567671914737,0.0,0.0,52405.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,24954.761904761905,4,0,4_0,4_0 -6569,3.0,7.0,40.0,111,37,31,0.0,480,0.0,0.0,400.0,539.0,1.0,3.0,2.0,4.0,2.1,6134.400204933819,3120.0,0.0,34398.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,16380.0,2,0,2_0,2_0 -6570,6.0,26.0,58.0,111,47,44,0.0,4800,0.0,240.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4664.808928418548,4908.0,0.0,58631.0,1,1,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,39087.333333333336,5,0,5,5_0 -6571,0.0,0.0,35.0,111,35,20,0.0,4804,0.0,0.0,0.0,600.0,1.0,3.0,0.0,1.0,1.0,4167.24158841499,0.0,0.0,2360.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,2360.0,1,0,1_0,1_0 -6572,1.0,5.0,71.0,112,75,71,2.0,4805,0.0,0.0,0.0,281.0,0.0,3.0,0.0,2.0,1.5,2125.5810360420173,0.0,11500.0,23852.0,5,3,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15901.333333333334,2,0,2_0,2_0 -6573,0.0,17.0,53.0,300,56,60,2.0,4806,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,4741.154219003966,3225.0,700.0,17365.0,1,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,11576.666666666666,1,0,1_0,1_0 -6574,4.0,13.0,23.0,111,54,31,0.0,4808,0.0,100.0,0.0,0.0,3.0,5.0,4.0,5.0,3.0,1261.5078466719565,4368.0,0.0,72169.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,24056.333333333332,4,0,4_1,4_0 -6575,2.0,6.0,66.0,112,78,71,0.0,4810,0.0,0.0,150.0,0.0,1.0,3.0,1.0,3.0,2.0,3808.4485770599313,6105.0,0.0,34570.0,5,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17285.0,3,0,3_0,3_1 -6576,0.0,0.0,83.0,111,75,71,0.0,4811,0.0,0.0,0.0,469.0,0.0,2.0,0.0,1.0,1.0,3982.696811253094,0.0,0.0,23287.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23287.0,4,0,4_0,4_0 -6577,0.0,0.0,75.0,222,78,71,0.0,4812,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2764.466932271491,0.0,0.0,16727.0,5,1,1,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16727.0,2,0,2_0,2_1 -6578,1.0,9.0,56.0,111,46,50,0.0,4814,0.0,1100.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,1731.6354893512435,7124.0,0.0,53883.0,1,1,8,7.0,4,5.0,0.0,1.0,0,0,0,1,0,0,1.0,4.0,21553.2,3,0,3_0,3_0 -6579,13.0,21.0,49.0,111,85,31,0.0,4816,0.0,0.0,99999.0,325.0,1.0,4.0,3.0,4.0,2.5,4981.612287063355,0.0,0.0,36280.0,6,3,6,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,14512.0,2,0,2_0,2_0 -6580,10.0,15.0,56.0,111,38,12,0.0,4819,0.0,0.0,360.0,0.0,2.0,6.0,0.0,2.0,1.5,1959.0749319351198,0.0,0.0,114198.0,1,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,76132.0,5,0,5,5_0 -6581,2.0,14.0,48.0,300,62,50,0.0,4821,0.0,1120.0,180.0,0.0,3.0,6.0,1.0,3.0,2.0,1491.566309727816,3400.0,0.0,49705.0,1,2,0,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,24852.5,4,0,4_0,4_1 -6582,6.0,19.0,53.0,111,63,50,0.0,4822,0.0,0.0,0.0,615.0,2.0,5.0,2.0,4.0,2.3,974.452295171644,4844.0,0.0,44092.0,1,3,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,19170.434782608696,3,0,3_0,3_0 -6583,6.0,7.0,36.0,120,35,20,0.0,4824,0.0,700.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3700.610779310005,2095.0,0.0,36343.0,1,2,0,2.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,20190.555555555555,3,0,3_0,3_0 -6584,11.0,12.0,46.0,111,33,20,0.0,4826,0.0,0.0,0.0,1350.0,1.0,2.0,0.0,1.0,1.0,2773.4254725793235,1920.0,0.0,38725.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38725.0,5,0,5,5_0 -6585,8.0,10.0,74.0,111,75,70,0.0,4827,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2117.2142571686736,1820.0,0.0,25786.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17190.666666666668,3,0,3_0,3_0 -6586,5.0,10.0,51.0,111,45,50,0.0,4829,0.0,0.0,200.0,0.0,2.0,4.0,2.0,3.0,2.0,1884.8266949228935,0.0,0.0,47770.0,1,1,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,23885.0,4,0,4_0,4_0 -6587,0.0,3.0,36.0,112,37,50,2.0,483,0.0,200.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2182.0344127835656,0.0,16500.0,31177.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,14846.190476190475,2,0,2_1,2_1 -6588,18.0,19.0,43.0,120,63,43,0.0,4831,0.0,450.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4526.604026583658,0.0,0.0,70528.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,33584.7619047619,5,0,5,5_1 -6589,19.0,19.0,53.0,221,62,71,0.0,4833,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4929.209597894885,4108.0,0.0,18748.0,1,1,1,3.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,18748.0,3,0,3_0,3_0 -6590,3.0,9.0,41.0,111,63,71,0.0,4835,0.0,0.0,0.0,0.0,1.0,2.0,2.0,4.0,2.3,4478.1295247712105,0.0,0.0,9940.0,4,4,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,4321.739130434783,1,0,1_0,1_0 -6591,12.0,18.0,78.0,300,78,71,0.0,4836,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2921.314735284585,1690.0,0.0,10630.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10630.0,1,0,1_0,1_1 -6592,1.0,7.0,57.0,112,55,42,2.0,4837,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1452.8634136893006,1737.0,11000.0,59991.0,1,1,8,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,39994.0,5,0,5,5_1 -6593,6.0,6.0,53.0,111,42,20,0.0,484,0.0,120.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1562.3866800021844,0.0,0.0,15848.0,1,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15848.0,2,0,2_0,2_0 -6594,2.0,9.0,51.0,111,68,31,0.0,4840,0.0,0.0,100.0,123.0,1.0,2.0,0.0,1.0,1.0,2630.0690928421636,0.0,0.0,19716.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,19716.0,3,0,3_1,3_0 -6595,4.0,7.0,57.0,111,74,50,0.0,4841,0.0,0.0,0.0,0.0,0.0,8.0,1.0,3.0,2.0,1290.1749576644438,0.0,0.0,32190.0,5,1,4,4.0,4,4.0,0.0,0.0,0,0,1,0,0,0,0.0,4.0,16095.0,2,0,2_0,2_0 -6596,10.0,11.0,36.0,112,34,20,0.0,4842,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1930.3039366887265,0.0,0.0,25834.0,1,3,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25834.0,4,0,4_0,4_1 -6597,0.0,0.0,74.0,112,78,70,0.0,4843,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5029.729825819811,0.0,0.0,11940.0,5,1,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11940.0,1,0,1_0,1_0 -6598,2.0,2.0,61.0,111,38,10,0.0,4845,0.0,60.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2088.351689695859,3119.0,0.0,81172.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,54114.666666666664,5,0,5,5_0 -6599,0.0,13.0,36.0,111,62,60,0.0,4846,0.0,950.0,0.0,330.0,2.0,3.0,1.0,3.0,1.8,2453.5588513000425,0.0,0.0,36277.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20153.888888888887,3,0,3_0,3_0 -6600,8.0,17.0,41.0,111,47,20,0.0,4847,0.0,250.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,2086.695834819429,2600.0,0.0,33373.0,1,2,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,18540.555555555555,3,0,3_1,3_0 -6601,8.0,21.0,36.0,111,34,20,0.0,4848,0.0,70.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2562.7248769280104,1879.0,0.0,34428.0,1,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,34428.0,5,0,5,5_0 -6602,21.0,21.0,82.0,112,71,71,0.0,4851,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3638.903803890331,0.0,0.0,14007.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14007.0,2,0,2_0,2_1 -6603,0.0,0.0,90.0,112,77,70,0.0,4852,0.0,0.0,0.0,730.0,0.0,3.0,0.0,1.0,1.0,3463.4550012899685,0.0,0.0,13220.0,5,3,10,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13220.0,2,0,2_0,2_0 -6604,5.0,5.0,41.0,112,34,10,0.0,4853,0.0,0.0,200.0,0.0,1.0,5.0,2.0,4.0,2.1,1305.773932335405,4372.0,0.0,60397.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,28760.47619047619,4,0,4_0,4_1 -6605,18.0,18.0,63.0,111,72,71,0.0,4854,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3197.286834285184,0.0,0.0,21624.0,5,3,6,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,14416.0,2,0,2_0,2_0 -6606,3.0,3.0,53.0,300,23,41,0.0,4856,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2351.3712143055263,6401.0,0.0,26154.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,17436.0,3,0,3_1,3_1 -6607,7.0,19.0,54.0,120,75,50,0.0,4857,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1435.4466118100079,0.0,0.0,23931.0,4,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23931.0,4,0,4_0,4_1 -6608,0.0,0.0,83.0,120,77,71,0.0,4858,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5409.437866383096,0.0,0.0,16810.0,5,1,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16810.0,2,0,2_0,2_0 -6609,6.0,7.0,68.0,300,77,70,0.0,4859,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1537.8492354067512,2263.0,0.0,18621.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18621.0,3,0,3_0,3_1 -6610,13.0,13.0,64.0,111,77,70,0.0,486,0.0,0.0,0.0,345.0,0.0,2.0,0.0,2.0,1.5,2795.9131731155553,2028.0,0.0,27406.0,5,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,18270.666666666668,3,0,3_1,3_0 -6611,7.0,7.0,60.0,111,31,10,0.0,4861,0.0,450.0,90.0,0.0,2.0,6.0,0.0,2.0,1.5,2034.601866561783,1508.0,0.0,108593.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,72395.33333333333,5,0,5,5_0 -6612,0.0,0.0,54.0,221,78,50,0.0,4862,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2316.863431902296,0.0,0.0,11800.0,7,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11800.0,1,0,1_1,1_0 -6613,1.0,1.0,51.0,111,63,50,1.0,4864,0.0,0.0,220.0,0.0,2.0,5.0,1.0,3.0,2.0,1011.0967946151283,0.0,11500.0,39507.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,19753.5,3,0,3_0,3_0 -6614,1.0,4.0,31.0,221,63,50,0.0,4868,0.0,250.0,0.0,436.0,2.0,3.0,1.0,3.0,1.8,4588.037557535398,0.0,0.0,37801.0,1,3,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21000.555555555555,3,0,3_0,3_0 -6615,0.0,0.0,44.0,111,52,50,0.0,4869,0.0,0.0,0.0,317.0,1.0,1.0,0.0,1.0,1.0,2626.2834332619027,0.0,0.0,21040.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21040.0,3,0,3_0,3_0 -6616,16.0,16.0,55.0,111,56,43,0.0,487,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2302.2487242791117,0.0,0.0,44550.0,1,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29700.0,5,0,5,5_0 -6617,12.0,12.0,68.0,400,74,20,0.0,4870,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2032.3402697753552,1612.0,0.0,45986.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30657.333333333332,5,0,5,5_1 -6618,4.0,4.0,47.0,112,37,31,0.0,4871,0.0,1700.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1912.903833085803,3484.0,0.0,56803.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27049.04761904762,4,0,4_0,4_1 -6619,1.0,1.0,64.0,111,34,10,0.0,4872,0.0,0.0,30.0,0.0,2.0,6.0,0.0,2.0,1.5,3870.1383915434494,2824.0,0.0,97318.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,64878.666666666664,5,0,5,5_0 -6620,2.0,10.0,24.0,300,67,50,0.0,4874,0.0,150.0,50.0,0.0,2.0,3.0,0.0,2.0,1.5,2502.9981980778207,1560.0,0.0,33809.0,1,3,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,22539.333333333332,4,0,4_0,4_1 -6621,8.0,10.0,73.0,111,75,70,0.0,4876,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1906.7892052988143,1084.0,0.0,51998.0,5,1,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25999.0,4,0,4_0,4_0 -6622,6.0,22.0,28.0,112,52,42,0.0,4879,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,3115.7169118049587,0.0,0.0,48411.0,1,1,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,24205.5,4,0,4_0,4_1 -6623,3.0,7.0,70.0,111,72,12,0.0,488,0.0,0.0,0.0,591.0,0.0,4.0,0.0,2.0,1.5,2592.547081537031,0.0,0.0,31102.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,20734.666666666668,3,0,3_0,3_0 -6624,0.0,0.0,50.0,111,52,60,1.0,4880,0.0,99999.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,3210.236667188167,2080.0,26000.0,57156.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28578.0,4,0,4_0,4_0 -6625,9.0,9.0,55.0,111,55,71,0.0,4881,0.0,100.0,100.0,0.0,3.0,5.0,1.0,3.0,2.0,3169.9549150425787,0.0,0.0,75663.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,37831.5,5,0,5,5_0 -6626,9.0,9.0,35.0,111,47,31,0.0,4882,0.0,130.0,0.0,327.0,1.0,5.0,3.0,5.0,2.4,1448.447629639105,3017.0,0.0,41686.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,17369.166666666668,3,0,3_1,3_0 -6627,0.0,2.0,48.0,111,37,10,0.0,4883,0.0,2000.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3615.6987879744297,0.0,0.0,49238.0,1,1,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,49238.0,5,0,5,5_0 -6628,6.0,16.0,29.0,111,47,41,0.0,4885,0.0,0.0,130.0,548.0,2.0,3.0,1.0,3.0,1.8,2941.9614168079097,0.0,0.0,32302.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,17945.555555555555,3,0,3_0,3_0 -6629,16.0,16.0,86.0,112,75,71,0.0,4886,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2312.8670729772243,0.0,0.0,18885.0,5,1,8,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,18885.0,3,0,3_1,3_0 -6630,4.0,19.0,33.0,111,67,71,0.0,4887,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2388.131612781008,0.0,0.0,16306.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,7764.761904761905,1,0,1_1,1_0 -6631,2.0,14.0,28.0,111,85,50,0.0,4889,0.0,0.0,0.0,250.0,1.0,3.0,2.0,4.0,2.1,2928.0352832536673,1040.0,0.0,12370.0,6,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,5890.47619047619,1,0,1_1,1_0 -6632,5.0,5.0,76.0,111,75,70,0.0,4890,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1742.6103554719896,0.0,0.0,40987.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27324.666666666668,4,0,4_0,4_0 -6633,0.0,0.0,26.0,111,69,71,0.0,4891,0.0,0.0,0.0,0.0,3.0,5.0,2.0,3.0,2.0,2742.3704636235,0.0,0.0,24060.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12030.0,1,0,1_1,1_0 -6634,0.0,0.0,80.0,111,78,71,0.0,4894,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4667.3230560421725,0.0,0.0,15320.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15320.0,2,0,2_0,2_0 -6635,0.0,0.0,59.0,111,75,31,0.0,4895,0.0,0.0,0.0,240.0,0.0,3.0,0.0,1.0,1.0,2541.623721624699,0.0,0.0,23280.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23280.0,4,0,4_0,4_0 -6636,7.0,7.0,69.0,112,75,70,0.0,490,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,611.8753071172583,1811.0,0.0,40422.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,26948.0,4,0,4_0,4_1 -6637,5.0,15.0,75.0,400,74,10,0.0,4900,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1186.9486459200377,6582.0,0.0,16678.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,11118.666666666666,1,0,1_0,1_1 -6638,4.0,4.0,75.0,112,13,50,0.0,4901,0.0,0.0,0.0,0.0,1.0,8.0,0.0,1.0,1.0,2379.3406826181126,0.0,0.0,29256.0,1,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,29256.0,5,0,5,5_1 -6639,1.0,13.0,58.0,112,78,70,0.0,4903,0.0,0.0,350.0,0.0,0.0,4.0,2.0,4.0,2.5,4865.2140176554,0.0,0.0,9555.0,7,1,9,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,3822.0,1,0,1_0,1_0 -6640,1.0,13.0,27.0,111,47,50,2.0,4904,0.0,150.0,0.0,106.0,1.0,3.0,1.0,3.0,1.8,2451.2851102784957,0.0,1200.0,18134.0,4,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10074.444444444443,1,0,1_1,1_0 -6641,2.0,2.0,52.0,111,37,12,0.0,4906,0.0,553.0,0.0,0.0,2.0,10.0,3.0,5.0,2.6,1021.2065309950115,8959.0,0.0,100238.0,1,1,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,38553.07692307692,5,0,5,5_0 -6642,3.0,8.0,33.0,112,65,43,0.0,4908,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2166.557589282052,3744.0,0.0,29342.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,13972.380952380952,2,0,2_1,2_1 -6643,0.0,14.0,56.0,111,46,50,0.0,4910,0.0,0.0,15.0,0.0,2.0,5.0,1.0,3.0,2.0,971.4648090485094,0.0,0.0,57644.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,28822.0,4,0,4_0,4_0 -6644,5.0,5.0,57.0,211,67,71,0.0,4911,0.0,0.0,0.0,19.0,2.0,4.0,1.0,3.0,2.0,1795.5829386670202,2132.0,0.0,20120.0,1,3,4,3.0,4,1.0,1.0,0.0,0,1,0,0,0,1,0.0,1.0,10060.0,1,0,1_1,1_0 -6645,0.0,0.0,65.0,111,72,70,1.0,4912,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2351.1128126693698,3903.0,56000.0,16700.0,5,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16700.0,2,0,2_0,2_0 -6646,0.0,11.0,54.0,111,75,31,0.0,4913,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2303.8315940631032,2860.0,0.0,55940.0,7,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,55940.0,5,0,5,5_0 -6647,0.0,0.0,20.0,111,84,41,0.0,4914,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4124.296368495131,0.0,0.0,3277.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,3277.0,1,0,1_1,1_0 -6648,7.0,9.0,61.0,111,78,70,0.0,4916,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1299.0751535216193,0.0,0.0,27120.0,5,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18080.0,3,0,3_0,3_0 -6649,13.0,13.0,61.0,111,31,10,0.0,4917,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1645.3397936104955,1560.0,0.0,136078.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,90718.66666666667,5,0,5,5_0 -6650,8.0,8.0,71.0,111,77,60,0.0,4918,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1411.1930414168241,3095.0,0.0,32745.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21830.0,4,0,4_0,4_0 -6651,18.0,22.0,62.0,111,72,60,0.0,4919,0.0,0.0,0.0,332.0,0.0,4.0,0.0,2.0,1.5,3648.747985974601,2080.0,0.0,21669.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14446.0,2,0,2_0,2_0 -6652,1.0,1.0,60.0,111,43,33,1.0,4920,0.0,0.0,150.0,0.0,1.0,5.0,0.0,2.0,1.5,2074.8350637987323,3863.0,19500.0,38819.0,1,1,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,25879.333333333332,4,0,4_0,4_0 -6653,6.0,9.0,56.0,111,46,50,0.0,4926,0.0,160.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1463.7266363337733,2600.0,0.0,48338.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19335.2,3,0,3_0,3_0 -6654,0.0,0.0,32.0,111,46,31,0.0,4928,0.0,0.0,0.0,487.0,1.0,1.0,0.0,1.0,1.0,3455.1795626710086,0.0,0.0,23035.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23035.0,4,0,4_0,4_0 -6655,2.0,2.0,73.0,112,77,70,0.0,4931,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1818.7206644908053,1555.0,0.0,26811.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17874.0,3,0,3_0,3_1 -6656,5.0,7.0,44.0,111,23,60,0.0,4932,0.0,0.0,150.0,0.0,2.0,8.0,1.0,3.0,2.0,2640.2406417251855,0.0,0.0,91124.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,45562.0,5,0,5,5_0 -6657,15.0,15.0,58.0,400,54,70,0.0,4933,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1367.847652970145,0.0,0.0,37746.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,18873.0,3,0,3_0,3_1 -6658,15.0,15.0,73.0,111,74,70,0.0,4935,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2356.56518590195,0.0,0.0,22892.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,22892.0,4,0,4_0,4_0 -6659,9.0,11.0,65.0,211,77,50,0.0,4936,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1537.5229849597251,2340.0,0.0,16552.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16552.0,2,0,2_0,2_0 -6660,2.0,6.0,31.0,120,46,20,0.0,4937,0.0,199998.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2270.797507177357,3971.0,0.0,77023.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,36677.619047619046,5,0,5,5_1 -6661,0.0,0.0,38.0,111,31,12,0.0,4938,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4509.086749271661,1560.0,0.0,437995.0,4,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,437995.0,5,0,5,5_0 -6662,1.0,13.0,49.0,221,55,60,2.0,4939,0.0,0.0,120.0,0.0,2.0,4.0,1.0,2.0,1.5,3295.848110984183,2147.0,2800.0,21680.0,1,3,1,1.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,14453.333333333334,2,0,2_1,2_0 -6663,0.0,0.0,61.0,112,77,70,0.0,4940,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2906.662777790361,0.0,0.0,12198.0,5,3,10,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8132.0,1,0,1_1,1_0 -6664,3.0,13.0,34.0,111,56,30,0.0,4941,0.0,0.0,0.0,399.0,1.0,4.0,2.0,3.0,1.6,2287.6247022161006,3640.0,0.0,21637.0,1,3,8,7.0,2,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,13523.125,2,0,2_1,2_0 -6665,1.0,11.0,40.0,221,42,20,2.0,4942,0.0,0.0,150.0,346.0,1.0,4.0,2.0,3.0,1.6,2901.46146251471,0.0,2500.0,25705.0,1,3,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,16065.625,2,0,2_1,2_0 -6666,0.0,0.0,53.0,111,62,60,0.0,4943,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3303.600889185902,0.0,0.0,44280.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29520.0,5,0,5,5_0 -6667,0.0,11.0,22.0,111,43,43,0.0,4944,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3107.801206366935,0.0,0.0,22641.0,4,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15094.0,2,0,2_0,2_0 -6668,2.0,10.0,58.0,300,65,71,0.0,4947,0.0,600.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1487.578216107706,0.0,0.0,26319.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13159.5,2,0,2_0,2_1 -6669,9.0,10.0,39.0,120,62,50,0.0,4949,0.0,520.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3881.6373399175786,3172.0,0.0,18214.0,1,3,0,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18214.0,3,0,3_0,3_0 -6670,1.0,4.0,38.0,300,38,31,2.0,4952,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2075.688647018541,5780.0,4800.0,46786.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20341.739130434784,3,0,3_0,3_1 -6671,14.0,14.0,55.0,111,62,41,0.0,4953,0.0,200.0,0.0,0.0,1.0,8.0,0.0,1.0,1.0,2887.576786065867,1092.0,0.0,22460.0,1,4,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,22460.0,4,0,4_0,4_0 -6672,0.0,0.0,58.0,222,78,71,0.0,4954,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2622.865013431942,0.0,0.0,9980.0,7,2,1,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9980.0,1,0,1_1,1_1 -6673,6.0,6.0,43.0,112,37,60,0.0,4955,0.0,199998.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2629.140639456055,4160.0,0.0,75200.0,1,2,10,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,37600.0,5,0,5,5_0 -6674,0.0,0.0,40.0,111,43,20,0.0,4956,0.0,0.0,0.0,215.0,1.0,3.0,0.0,1.0,1.0,3012.2284326563686,0.0,0.0,22702.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22702.0,4,0,4_0,4_0 -6675,4.0,4.0,64.0,111,77,70,0.0,4959,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1421.2864955360067,1263.0,0.0,47173.0,5,2,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,31448.666666666668,5,0,5,5_0 -6676,6.0,11.0,48.0,111,21,60,0.0,496,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2899.545133329161,0.0,0.0,93514.0,1,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,62342.666666666664,5,0,5,5_0 -6677,0.0,6.0,62.0,111,74,20,0.0,4961,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2065.2891024910095,0.0,0.0,63646.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,42430.666666666664,5,0,5,5_0 -6678,11.0,11.0,41.0,300,62,50,0.0,4962,0.0,400.0,0.0,0.0,1.0,7.0,3.0,5.0,2.4,1892.229291832186,1560.0,0.0,25483.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,10617.916666666668,1,0,1_0,1_1 -6679,10.0,14.0,40.0,111,42,10,0.0,4963,0.0,310.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1226.6819803280603,2805.0,0.0,37769.0,1,2,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17985.238095238095,3,0,3_0,3_0 -6680,6.0,12.0,29.0,111,62,50,0.0,4964,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,5415.824423539264,2080.0,0.0,26211.0,1,3,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17474.0,3,0,3_0,3_0 -6681,4.0,12.0,48.0,300,21,50,0.0,4965,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2354.838636404741,0.0,0.0,34213.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,19007.222222222223,3,0,3_0,3_1 -6682,2.0,4.0,46.0,111,34,10,0.0,4966,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1036.9645769473527,3030.0,0.0,43355.0,1,2,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17342.0,3,0,3_0,3_0 -6683,8.0,8.0,71.0,111,78,70,0.0,497,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2523.273664501635,1560.0,0.0,24000.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16000.0,2,0,2_0,2_0 -6684,7.0,7.0,38.0,112,46,41,0.0,4970,0.0,550.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4705.558953418589,0.0,0.0,44406.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24670.0,4,0,4_0,4_1 -6685,6.0,23.0,47.0,111,47,50,0.0,4971,0.0,0.0,199998.0,880.0,2.0,5.0,2.0,4.0,2.3,3142.494321951664,3120.0,0.0,40070.0,1,3,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,17421.739130434784,3,0,3_0,3_0 -6686,3.0,3.0,46.0,112,43,10,0.0,4972,0.0,1050.0,0.0,0.0,2.0,7.0,4.0,6.0,2.9,1059.7609263266313,8365.0,0.0,63126.0,1,1,7,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21767.58620689655,4,0,4_0,4_0 -6687,11.0,11.0,53.0,111,47,41,0.0,4974,0.0,0.0,60.0,0.0,4.0,5.0,2.0,4.0,2.5,1792.6859741658368,1561.0,0.0,62428.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,24971.2,4,0,4_0,4_0 -6688,3.0,7.0,43.0,112,64,50,0.0,4975,0.0,325.0,450.0,0.0,2.0,5.0,2.0,4.0,2.1,1905.6720003278967,0.0,0.0,43759.0,1,2,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20837.619047619046,3,0,3_0,3_1 -6689,7.0,7.0,55.0,112,37,31,0.0,4977,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1324.2563990294275,2600.0,0.0,102480.0,1,1,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,51240.0,5,0,5,5_1 -6690,10.0,10.0,45.0,221,85,10,0.0,4980,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,2722.395168002723,3996.0,0.0,13828.0,6,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,8642.5,1,0,1_1,1_0 -6691,5.0,5.0,56.0,111,56,42,0.0,4981,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3379.6400911008423,0.0,0.0,8150.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,8150.0,1,0,1_0,1_0 -6692,1.0,9.0,52.0,120,56,50,2.0,4982,0.0,288.0,0.0,0.0,4.0,7.0,2.0,7.0,3.8,1286.876018920878,3050.0,3000.0,26358.0,1,1,0,0.0,5,3.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,6936.315789473684,1,0,1_0,1_1 -6693,5.0,5.0,60.0,111,72,70,0.0,4984,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3686.832218697939,3120.0,0.0,16210.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,10806.666666666666,1,0,1_0,1_0 -6694,7.0,7.0,46.0,111,52,50,0.0,4986,0.0,0.0,0.0,368.0,2.0,4.0,0.0,2.0,1.5,2235.845760717807,0.0,0.0,39791.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26527.333333333332,4,0,4_0,4_0 -6695,4.0,4.0,65.0,111,77,50,0.0,4987,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1555.9172303784899,3590.0,0.0,27718.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,18478.666666666668,3,0,3_0,3_0 -6696,2.0,12.0,43.0,111,48,71,0.0,4988,0.0,199998.0,0.0,0.0,3.0,5.0,4.0,6.0,3.3,3115.3853128602,0.0,0.0,67518.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,20460.0,3,0,3_0,3_0 -6697,0.0,0.0,47.0,400,55,50,1.0,4989,0.0,0.0,50.0,0.0,2.0,5.0,2.0,4.0,2.5,2260.8303775594404,0.0,6240.0,43518.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17407.2,3,0,3_0,3_1 -6698,5.0,5.0,85.0,111,75,20,0.0,499,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2365.9255866568433,2340.0,0.0,30855.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30855.0,5,0,5,5_0 -6699,0.0,0.0,18.0,111,84,41,0.0,4990,0.0,0.0,0.0,425.0,0.0,1.0,0.0,1.0,1.0,3369.1562863360164,0.0,0.0,9601.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9601.0,1,0,1_0,1_0 -6700,21.0,22.0,70.0,120,71,50,0.0,4991,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1853.5234192039047,0.0,0.0,19436.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12957.333333333334,2,0,2_0,2_1 -6701,2.0,2.0,48.0,111,46,60,0.0,4992,0.0,0.0,440.0,0.0,2.0,6.0,2.0,4.0,2.5,2258.9855121941805,2626.0,0.0,55223.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,22089.2,4,0,4_0,4_0 -6702,0.0,0.0,30.0,111,56,71,0.0,4994,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1970.837811920574,0.0,0.0,14110.0,4,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10853.846153846154,1,0,1_1,1_0 -6703,2.0,3.0,75.0,111,77,71,0.0,4996,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1910.0940322249828,1560.0,0.0,17762.0,5,1,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11841.333333333334,1,0,1_0,1_0 -6704,1.0,1.0,39.0,111,53,50,0.0,4997,0.0,700.0,140.0,0.0,2.0,4.0,2.0,4.0,2.1,1670.0572883139594,5980.0,0.0,72375.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,34464.28571428571,5,0,5,5_0 -6705,1.0,5.0,69.0,221,78,50,0.0,4998,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1901.04955626224,3120.0,0.0,26200.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,26200.0,4,0,4_0,4_0 -6706,3.0,3.0,45.0,112,13,50,0.0,5,0.0,0.0,0.0,0.0,3.0,8.0,2.0,4.0,2.5,1055.037503252801,4307.0,0.0,36599.0,1,2,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14639.6,2,0,2_0,2_1 -6707,2.0,2.0,69.0,112,77,70,0.0,50,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1641.868817755813,0.0,0.0,25153.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25153.0,4,0,4_0,4_1 -6708,0.0,13.0,45.0,300,48,50,0.0,500,0.0,380.0,100.0,0.0,1.0,6.0,3.0,4.0,2.5,1519.3624913288124,0.0,0.0,37278.0,1,2,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14911.2,2,0,2_0,2_1 -6709,7.0,13.0,45.0,112,62,50,0.0,5000,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.3,2588.5857632056495,0.0,0.0,7368.0,1,3,8,0.0,2,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,5667.692307692308,1,0,1_1,1_1 -6710,3.0,5.0,53.0,111,38,50,0.0,5003,0.0,80.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1436.3075015873226,2321.0,0.0,56100.0,1,1,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,28050.0,4,0,4_0,4_0 -6711,2.0,5.0,40.0,111,48,31,0.0,5004,250.0,0.0,0.0,0.0,2.0,4.0,1.0,4.0,2.5,1589.7331417689707,2080.0,0.0,38752.0,1,2,8,7.0,5,1.0,0.0,1.0,0,0,0,1,0,1,0.0,0.0,15500.8,2,0,2_1,2_0 -6712,6.0,7.0,38.0,112,63,50,0.0,5005,0.0,110.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2895.5495561689445,0.0,0.0,38836.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18493.333333333332,3,0,3_0,3_1 -6713,0.0,0.0,20.0,111,67,71,0.0,5006,0.0,0.0,0.0,700.0,1.0,3.0,2.0,4.0,2.1,3068.789439965866,0.0,0.0,10447.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,4974.761904761905,1,0,1_0,1_0 -6714,0.0,0.0,56.0,111,72,20,0.0,5007,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3831.1092493092815,0.0,0.0,5259.0,7,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,5259.0,1,0,1_0,1_0 -6715,6.0,9.0,35.0,111,22,43,0.0,5008,0.0,42.0,0.0,236.0,1.0,3.0,2.0,4.0,2.1,3132.985005111355,2080.0,0.0,33194.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,15806.666666666666,2,0,2_1,2_0 -6716,6.0,10.0,29.0,300,62,71,0.0,5011,0.0,200.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,2978.317106653921,2341.0,0.0,25110.0,4,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,10462.5,1,0,1_1,1_1 -6717,4.0,13.0,49.0,111,45,43,0.0,5012,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,2939.8831861601793,5091.0,0.0,67062.0,1,2,4,4.0,4,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,25793.076923076922,4,0,4_0,4_0 -6718,4.0,4.0,61.0,111,72,41,0.0,5013,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1834.3415200918728,0.0,0.0,1807632.0,5,1,3,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,1205088.0,5,0,5,5_0 -6719,8.0,15.0,28.0,111,63,71,0.0,5014,0.0,20.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,4255.414071411042,1768.0,0.0,17881.0,4,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9933.888888888889,1,0,1_1,1_0 -6720,5.0,7.0,36.0,112,56,50,0.0,5015,0.0,800.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1745.1685521632987,0.0,0.0,34636.0,1,1,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19242.222222222223,3,0,3_0,3_0 -6721,5.0,14.0,47.0,120,54,42,0.0,5016,0.0,99999.0,250.0,0.0,2.0,6.0,1.0,3.0,2.0,2560.4775632274122,5032.0,0.0,18090.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,9045.0,1,0,1_0,1_1 -6722,3.0,7.0,66.0,400,78,50,0.0,5017,0.0,0.0,0.0,500.0,0.0,3.0,0.0,2.0,1.5,1104.0700253326231,2236.0,0.0,32938.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21958.666666666668,4,0,4_0,4_1 -6723,0.0,5.0,65.0,111,74,71,0.0,5018,0.0,0.0,0.0,393.0,0.0,3.0,0.0,1.0,1.0,3271.457432239834,0.0,0.0,12900.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12900.0,2,0,2_1,2_0 -6724,0.0,11.0,31.0,120,21,50,2.0,502,0.0,110.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,2314.7394242239743,4416.0,2800.0,24270.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,9334.615384615385,1,0,1_0,1_1 -6725,12.0,12.0,62.0,112,75,50,0.0,5020,0.0,0.0,80.0,0.0,1.0,6.0,0.0,2.0,1.5,1821.033973760161,5564.0,0.0,29928.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,19952.0,3,0,3_0,3_1 -6726,0.0,0.0,22.0,111,84,20,0.0,5021,0.0,0.0,0.0,218.0,0.0,1.0,0.0,1.0,1.0,3052.8070066766213,0.0,0.0,18604.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18604.0,3,0,3_1,3_0 -6727,11.0,13.0,78.0,211,78,71,0.0,5022,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2933.8583341586914,2159.0,0.0,18410.0,5,1,2,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18410.0,3,0,3_0,3_0 -6728,8.0,8.0,56.0,111,33,10,0.0,5023,0.0,0.0,0.0,523.0,1.0,3.0,0.0,1.0,1.0,2656.2444271417558,0.0,0.0,66763.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,66763.0,5,0,5,5_0 -6729,2.0,2.0,79.0,111,72,50,0.0,5024,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4435.862623742495,0.0,0.0,19300.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19300.0,3,0,3_0,3_0 -6730,3.0,3.0,50.0,111,33,12,0.0,5025,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2721.9397687796436,0.0,0.0,50110.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,27838.888888888887,4,0,4_0,4_0 -6731,3.0,3.0,33.0,112,69,50,0.0,5026,0.0,442.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1947.2890554759263,2158.0,0.0,37785.0,1,2,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17992.85714285714,3,0,3_0,3_1 -6732,12.0,12.0,88.0,111,74,12,0.0,5027,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1976.3572686554655,0.0,0.0,63137.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,42091.333333333336,5,0,5,5_0 -6733,8.0,19.0,34.0,300,48,31,0.0,5029,0.0,880.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2291.888067848478,5764.0,0.0,43518.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24176.666666666668,4,0,4_0,4_1 -6734,4.0,4.0,59.0,111,33,41,0.0,5030,0.0,150.0,12.0,0.0,2.0,3.0,0.0,2.0,1.5,3153.8942243205456,0.0,0.0,60017.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,40011.333333333336,5,0,5,5_0 -6735,2.0,2.0,27.0,111,46,10,0.0,5031,0.0,990.0,0.0,700.0,2.0,3.0,1.0,3.0,1.8,3025.8716340418882,4788.0,0.0,42692.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,23717.777777777777,4,0,4_0,4_0 -6736,3.0,12.0,51.0,120,53,50,0.0,5032,0.0,200.0,80.0,0.0,3.0,4.0,2.0,4.0,2.5,1479.656057656208,4384.0,0.0,64391.0,1,4,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,2.0,2.0,25756.4,4,0,4_0,4_1 -6737,0.0,0.0,75.0,300,77,50,0.0,5037,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2692.3427205929165,1560.0,0.0,14330.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9553.333333333334,1,0,1_0,1_1 -6738,20.0,20.0,79.0,111,74,41,0.0,5038,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1763.5583764384555,0.0,0.0,51553.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,34368.666666666664,5,0,5,5_0 -6739,2.0,2.0,56.0,111,54,42,0.0,5039,0.0,0.0,110.0,980.0,1.0,3.0,0.0,1.0,1.0,3266.863600597388,1045.0,0.0,25270.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,25270.0,4,0,4_0,4_0 -6740,4.0,11.0,46.0,120,47,42,0.0,504,0.0,482.0,0.0,0.0,4.0,5.0,2.0,4.0,2.5,1237.0610233857744,2600.0,0.0,75110.0,1,2,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,30044.0,5,0,5,5_1 -6741,10.0,30.0,50.0,111,37,71,0.0,5044,0.0,0.0,300.0,0.0,2.0,7.0,1.0,3.0,2.0,1532.1653092771764,4198.0,0.0,89824.0,1,2,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,44912.0,5,0,5,5_0 -6742,0.0,5.0,34.0,120,56,50,2.0,5045,0.0,100.0,0.0,189.0,2.0,5.0,1.0,3.0,1.8,1255.5380644427726,0.0,12000.0,14145.0,1,3,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,1,1.0,1.0,7858.333333333333,1,0,1_1,1_1 -6743,0.0,0.0,46.0,111,52,50,0.0,5046,0.0,0.0,0.0,220.0,1.0,1.0,0.0,1.0,1.0,3380.85954390088,0.0,0.0,17380.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17380.0,3,0,3_0,3_0 -6744,0.0,0.0,87.0,111,75,70,0.0,5048,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4217.117323641129,0.0,0.0,38142.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25428.0,4,0,4_0,4_0 -6745,2.0,9.0,39.0,112,47,43,0.0,505,0.0,100.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2314.4740684876147,0.0,0.0,28691.0,4,2,7,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,13662.380952380952,2,0,2_0,2_0 -6746,1.0,4.0,21.0,112,56,71,2.0,5050,0.0,70.0,150.0,215.0,4.0,6.0,3.0,5.0,3.0,3486.079825535175,2488.0,4000.0,70806.0,1,3,10,3.0,5,3.0,0.0,1.0,0,1,0,0,0,1,1.0,2.0,23602.0,4,0,4_1,4_0 -6747,0.0,0.0,49.0,111,56,43,0.0,5051,0.0,0.0,0.0,0.0,2.0,6.0,4.0,6.0,2.9,1282.2090237984344,0.0,0.0,31158.0,1,3,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10744.137931034484,1,0,1_1,1_0 -6748,7.0,7.0,62.0,120,78,50,0.0,5054,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3519.933782677524,2600.0,0.0,14197.0,5,1,0,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14197.0,2,0,2_0,2_0 -6749,0.0,0.0,85.0,111,77,60,0.0,5055,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3537.2968620644488,0.0,0.0,18327.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18327.0,3,0,3_0,3_0 -6750,2.0,2.0,62.0,111,77,41,0.0,5056,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,3225.629796309528,0.0,0.0,66440.0,5,1,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,2.0,0.0,26576.0,4,0,4_0,4_0 -6751,3.0,9.0,33.0,120,67,60,0.0,5057,0.0,70.0,0.0,331.0,1.0,3.0,1.0,3.0,1.8,5424.23625275835,900.0,0.0,17583.0,1,3,0,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,9768.333333333334,1,0,1_0,1_0 -6752,15.0,17.0,48.0,120,52,71,0.0,5059,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3889.0220972170637,1560.0,0.0,15560.0,1,3,0,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15560.0,2,0,2_0,2_0 -6753,0.0,0.0,60.0,111,75,42,0.0,506,0.0,0.0,0.0,379.0,0.0,1.0,0.0,1.0,1.0,3758.8675252441662,0.0,0.0,15714.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15714.0,2,0,2_0,2_0 -6754,9.0,9.0,51.0,112,63,41,0.0,5061,0.0,461.0,150.0,0.0,2.0,3.0,1.0,3.0,2.0,1711.2882157182546,2340.0,0.0,29341.0,1,2,9,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,14670.5,2,0,2_0,2_1 -6755,1.0,14.0,39.0,120,46,31,2.0,5063,0.0,100.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2648.1904655855737,0.0,3200.0,43449.0,1,2,0,3.0,4,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,20690.0,3,0,3_0,3_0 -6756,3.0,6.0,83.0,111,75,70,0.0,5064,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2442.510450009087,1794.0,0.0,71603.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,47735.333333333336,5,0,5,5_0 -6757,6.0,10.0,51.0,111,37,30,0.0,5066,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1719.6465838510485,0.0,0.0,91650.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,35250.0,5,0,5,5_0 -6758,0.0,0.0,76.0,111,78,60,0.0,5067,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1966.2098178971332,0.0,0.0,36695.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24463.333333333332,4,0,4_0,4_0 -6759,0.0,0.0,72.0,111,78,70,0.0,507,0.0,0.0,0.0,249.0,0.0,2.0,0.0,1.0,1.0,2933.7628238707352,0.0,0.0,21835.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21835.0,4,0,4_0,4_0 -6760,2.0,2.0,73.0,111,75,50,1.0,5070,0.0,0.0,0.0,0.0,1.0,5.0,1.0,4.0,2.3,1769.7805927920278,0.0,20534.0,78854.0,5,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34284.34782608696,5,0,5,5_0 -6761,0.0,0.0,18.0,111,84,41,0.0,5071,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4194.865989283933,0.0,0.0,8040.0,3,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8040.0,1,0,1_1,1_0 -6762,7.0,17.0,48.0,120,63,50,0.0,5072,0.0,135.0,0.0,0.0,1.0,4.0,0.0,3.0,2.0,3570.3597654892583,0.0,0.0,51907.0,1,3,0,2.0,5,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,25953.5,4,0,4_1,4_0 -6763,7.0,10.0,32.0,112,13,31,0.0,5073,0.0,200.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,5646.533915425983,0.0,0.0,55363.0,1,2,8,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,30757.222222222223,5,0,5,5_1 -6764,0.0,0.0,45.0,111,68,50,0.0,5074,0.0,0.0,0.0,354.0,1.0,4.0,2.0,3.0,1.6,3037.9817483096826,0.0,0.0,25588.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15992.5,2,0,2_0,2_0 -6765,0.0,0.0,83.0,111,72,70,0.0,5075,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3659.7490559204452,0.0,0.0,8709.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8709.0,1,0,1_0,1_0 -6766,3.0,23.0,38.0,300,55,41,0.0,5076,0.0,0.0,0.0,0.0,1.0,11.0,0.0,1.0,1.0,2164.706097600851,534.0,0.0,11294.0,4,4,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11294.0,1,0,1_0,1_1 -6767,2.0,2.0,49.0,112,35,31,0.0,5077,0.0,160.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,7705.642088722076,1978.0,0.0,62534.0,1,1,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25013.6,4,0,4_0,4_0 -6768,0.0,0.0,30.0,111,53,50,0.0,508,0.0,0.0,0.0,480.0,1.0,3.0,0.0,1.0,1.0,4312.39657385437,0.0,0.0,17864.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17864.0,3,0,3_0,3_0 -6769,4.0,5.0,65.0,112,75,10,0.0,5081,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2632.637782680147,3520.0,0.0,37789.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25192.666666666668,4,0,4_0,4_1 -6770,2.0,7.0,37.0,111,56,42,0.0,5082,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2279.850622343577,0.0,0.0,27741.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15411.666666666666,2,0,2_0,2_0 -6771,11.0,11.0,34.0,400,55,50,0.0,5083,0.0,100.0,0.0,0.0,1.0,8.0,1.0,2.0,1.5,1131.0533675532488,0.0,0.0,37066.0,1,1,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24710.666666666668,4,0,4_0,4_1 -6772,0.0,0.0,76.0,111,77,70,0.0,5085,0.0,0.0,0.0,340.0,0.0,2.0,0.0,1.0,1.0,3687.113182144588,0.0,0.0,18100.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18100.0,3,0,3_0,3_0 -6773,0.0,0.0,61.0,111,68,71,0.0,5089,0.0,0.0,0.0,0.0,3.0,4.0,2.0,3.0,2.0,2588.305215865457,0.0,0.0,29316.0,1,1,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14658.0,2,0,2_0,2_0 -6774,1.0,10.0,80.0,111,78,71,2.0,509,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,3764.054474860586,780.0,3200.0,36403.0,5,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18201.5,3,0,3_0,3_0 -6775,1.0,8.0,33.0,112,67,50,2.0,5090,0.0,0.0,0.0,347.0,2.0,4.0,2.0,4.0,2.1,2145.6142657031073,0.0,4200.0,25949.0,4,3,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,12356.666666666666,1,0,1_1,1_0 -6776,2.0,20.0,62.0,111,78,50,0.0,5091,0.0,0.0,0.0,222.0,0.0,1.0,0.0,1.0,1.0,3034.2641940529643,2080.0,0.0,13816.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13816.0,2,0,2_1,2_0 -6777,8.0,10.0,42.0,221,21,71,0.0,5093,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2894.999932133287,0.0,0.0,173869.0,1,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,115912.66666666667,5,0,5,5_0 -6778,0.0,1.0,67.0,120,77,60,2.0,5095,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2961.7978135504254,2080.0,17000.0,19010.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12673.333333333334,2,0,2_0,2_1 -6779,6.0,10.0,42.0,221,63,50,0.0,5096,0.0,0.0,100.0,0.0,2.0,4.0,2.0,4.0,2.1,900.4445326166029,0.0,0.0,23243.0,4,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,11068.095238095239,1,0,1_1,1_0 -6780,0.0,0.0,54.0,111,77,70,0.0,5097,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2291.423832779139,0.0,0.0,9488.0,4,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9488.0,1,0,1_1,1_0 -6781,2.0,2.0,51.0,221,46,71,0.0,5099,0.0,130.0,400.0,0.0,2.0,4.0,1.0,3.0,2.0,1629.3823611127666,1300.0,0.0,37828.0,1,1,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,18914.0,3,0,3_0,3_0 -6782,1.0,1.0,38.0,120,43,33,1.0,51,0.0,1400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2543.306207607211,3824.0,17000.0,58619.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27913.809523809523,4,0,4_0,4_0 -6783,6.0,12.0,58.0,111,52,60,0.0,510,0.0,0.0,0.0,371.0,2.0,5.0,0.0,2.0,1.5,2430.419814854219,0.0,0.0,39374.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,26249.333333333332,4,0,4_0,4_0 -6784,9.0,10.0,65.0,112,75,50,0.0,5100,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1634.691559871625,2037.0,0.0,45950.0,5,1,8,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,30633.333333333332,5,0,5,5_1 -6785,3.0,7.0,34.0,111,46,31,0.0,5104,0.0,0.0,0.0,329.0,2.0,3.0,1.0,3.0,1.8,2957.929161152959,3832.0,0.0,44274.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24596.666666666664,4,0,4_0,4_0 -6786,0.0,0.0,34.0,111,67,71,0.0,5105,0.0,0.0,0.0,126.0,2.0,5.0,2.0,4.0,2.1,4692.174591197107,226.0,0.0,22544.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10735.238095238095,1,0,1_1,1_0 -6787,9.0,9.0,54.0,111,52,71,0.0,5106,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3516.141583444187,2964.0,0.0,40825.0,1,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27216.666666666668,4,0,4_0,4_0 -6788,6.0,6.0,66.0,111,72,50,0.0,5107,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1233.1236342517448,0.0,0.0,59990.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,39993.333333333336,5,0,5,5_0 -6789,10.0,11.0,87.0,111,77,71,0.0,5110,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3130.914593953103,0.0,0.0,24090.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16060.0,2,0,2_0,2_0 -6790,3.0,5.0,37.0,111,34,10,0.0,5111,0.0,50.0,0.0,678.0,2.0,2.0,0.0,2.0,1.5,2592.9798917698868,0.0,0.0,36257.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,24171.333333333332,4,0,4_0,4_0 -6791,7.0,7.0,45.0,112,37,20,0.0,5112,0.0,300.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2164.365083648519,3640.0,0.0,65279.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,36266.11111111111,5,0,5,5_1 -6792,0.0,0.0,48.0,111,63,33,0.0,5115,0.0,0.0,0.0,188.0,1.0,4.0,1.0,2.0,1.5,2925.069554232581,0.0,0.0,20826.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13884.0,2,0,2_1,2_0 -6793,4.0,4.0,80.0,111,77,70,0.0,5116,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4765.841327113126,0.0,0.0,14902.0,5,4,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14902.0,2,0,2_0,2_0 -6794,1.0,2.0,56.0,111,45,42,2.0,5118,0.0,0.0,99999.0,0.0,2.0,5.0,1.0,3.0,2.0,1195.9105713706656,0.0,11199.0,42438.0,1,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,21219.0,3,0,3_0,3_0 -6795,20.0,20.0,53.0,120,47,50,0.0,512,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3053.4933553764054,0.0,0.0,61545.0,1,1,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,30772.5,5,0,5,5_0 -6796,0.0,3.0,34.0,112,45,31,2.0,5120,0.0,2360.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2677.3418682362076,7228.0,12000.0,48024.0,1,2,7,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22868.571428571428,4,0,4_0,4_0 -6797,1.0,1.0,63.0,120,75,20,0.0,5124,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3128.4959659190513,0.0,0.0,21535.0,5,1,0,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14356.666666666666,2,0,2_0,2_0 -6798,0.0,0.0,79.0,111,77,50,0.0,5125,0.0,0.0,0.0,427.0,0.0,2.0,0.0,1.0,1.0,3191.132292660325,0.0,0.0,13364.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13364.0,2,0,2_1,2_0 -6799,9.0,11.0,44.0,400,55,71,0.0,5126,0.0,170.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,1949.4905038139298,0.0,0.0,17631.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,7665.652173913044,1,0,1_0,1_1 -6800,10.0,10.0,75.0,111,78,71,0.0,5127,0.0,0.0,0.0,272.0,0.0,4.0,0.0,2.0,1.5,5106.658283521308,0.0,0.0,18640.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,12426.666666666666,1,0,1_0,1_0 -6801,3.0,21.0,56.0,111,52,71,0.0,5128,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2515.0439872195084,0.0,0.0,5816.0,4,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,5816.0,1,0,1_1,1_0 -6802,6.0,11.0,78.0,221,78,71,0.0,513,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3795.871342361328,1533.0,0.0,21950.0,5,3,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14633.333333333334,2,0,2_0,2_0 -6803,0.0,0.0,84.0,120,77,50,0.0,5130,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3024.832620883026,0.0,0.0,28715.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28715.0,4,0,4_0,4_1 -6804,20.0,24.0,40.0,400,11,50,0.0,5132,0.0,400.0,0.0,0.0,2.0,9.0,2.0,4.0,2.1,1921.9634542992815,0.0,0.0,33645.0,1,2,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,1,0.0,2.0,16021.42857142857,2,0,2_1,2_1 -6805,11.0,11.0,58.0,111,74,33,0.0,5134,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,1806.7836541748072,3069.0,0.0,27995.0,5,2,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18663.333333333332,3,0,3_0,3_0 -6806,3.0,3.0,75.0,300,77,71,0.0,5135,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3020.568294311639,0.0,0.0,33344.0,4,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22229.333333333332,4,0,4_0,4_1 -6807,0.0,0.0,32.0,112,56,31,2.0,5136,0.0,0.0,90.0,0.0,1.0,3.0,1.0,2.0,1.3,7889.667840441619,1040.0,800.0,13719.0,1,3,9,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,10553.076923076922,1,0,1_1,1_0 -6808,0.0,1.0,54.0,111,42,20,2.0,5137,0.0,250.0,100.0,0.0,2.0,7.0,0.0,2.0,1.5,2579.103906974061,4576.0,7000.0,63590.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,42393.333333333336,5,0,5,5_0 -6809,2.0,8.0,22.0,111,53,50,0.0,5139,0.0,0.0,0.0,450.0,1.0,2.0,0.0,2.0,1.5,3050.065362077685,0.0,0.0,39822.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,26548.0,4,0,4_1,4_0 -6810,1.0,1.0,65.0,111,74,20,1.0,5141,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,997.9380446526703,0.0,16430.0,26283.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26283.0,4,0,4_0,4_0 -6811,1.0,1.0,60.0,112,55,50,1.0,5142,0.0,60.0,0.0,407.0,1.0,2.0,0.0,1.0,1.0,1869.3722360165705,0.0,17000.0,21154.0,1,3,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21154.0,3,0,3_0,3_0 -6812,5.0,13.0,27.0,120,63,60,0.0,5143,0.0,300.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2484.2731222627913,0.0,0.0,15164.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15164.0,2,0,2_0,2_1 -6813,13.0,13.0,60.0,400,11,43,0.0,5145,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1940.2280178729834,0.0,0.0,116148.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,58074.0,5,0,5,5_1 -6814,0.0,0.0,87.0,111,75,70,0.0,5146,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,3419.754415621783,0.0,0.0,28230.0,5,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18820.0,3,0,3_0,3_0 -6815,2.0,23.0,64.0,111,75,33,0.0,5147,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3136.857481966332,1560.0,0.0,18417.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18417.0,3,0,3_0,3_0 -6816,3.0,11.0,32.0,111,47,31,0.0,5148,0.0,99999.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.1,5824.845468934216,7333.0,0.0,62298.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,29665.714285714286,5,0,5,5_0 -6817,20.0,20.0,81.0,400,77,70,0.0,515,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3491.5899596466743,0.0,0.0,23758.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23758.0,4,0,4_0,4_1 -6818,0.0,0.0,32.0,111,47,20,0.0,5150,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4721.709960856704,0.0,0.0,14066.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14066.0,2,0,2_0,2_0 -6819,9.0,15.0,49.0,111,54,42,0.0,5151,0.0,0.0,0.0,228.0,1.0,2.0,0.0,1.0,1.0,2931.621395673296,1924.0,0.0,20367.0,1,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,20367.0,3,0,3_0,3_0 -6820,6.0,6.0,63.0,112,75,60,0.0,5152,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3016.4838124373905,1225.0,0.0,13198.0,5,1,10,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13198.0,2,0,2_0,2_0 -6821,0.0,4.0,36.0,111,37,20,0.0,5153,0.0,600.0,0.0,827.0,1.0,3.0,2.0,4.0,2.1,3569.162708634227,0.0,0.0,23661.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,11267.142857142857,1,0,1_0,1_0 -6822,3.0,4.0,50.0,221,47,31,0.0,5154,0.0,150.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2793.4937290014514,0.0,0.0,45380.0,1,1,1,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,30253.333333333332,5,0,5,5_0 -6823,1.0,1.0,72.0,111,74,20,2.0,5155,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2014.7716920816933,0.0,24000.0,86864.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,57909.333333333336,5,0,5,5_0 -6824,12.0,12.0,59.0,112,75,33,0.0,5156,0.0,0.0,0.0,640.0,0.0,2.0,0.0,1.0,1.0,3421.645007317643,1560.0,0.0,23601.0,5,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23601.0,4,0,4_0,4_0 -6825,2.0,18.0,51.0,111,46,41,0.0,5157,0.0,360.0,50.0,0.0,2.0,8.0,2.0,4.0,2.5,1665.4061212907593,4996.0,0.0,78546.0,1,2,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,31418.4,5,0,5,5_0 -6826,1.0,1.0,48.0,120,21,50,0.0,5158,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2579.6042860997,0.0,0.0,31763.0,1,2,0,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15881.5,2,0,2_0,2_0 -6827,0.0,0.0,53.0,400,46,50,0.0,5159,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2156.2307515114708,5720.0,0.0,43490.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28993.333333333332,4,0,4_0,4_1 -6828,0.0,15.0,41.0,111,54,50,0.0,516,0.0,100.0,0.0,435.0,1.0,2.0,0.0,1.0,1.0,1500.1877546951532,1301.0,0.0,13019.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,13019.0,2,0,2_0,2_0 -6829,0.0,0.0,47.0,111,56,60,0.0,5160,0.0,0.0,0.0,971.0,2.0,5.0,3.0,4.0,2.3,2560.504410073669,0.0,0.0,33398.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14520.869565217392,2,0,2_1,2_0 -6830,5.0,13.0,39.0,112,65,50,0.0,5161,0.0,0.0,75.0,0.0,1.0,4.0,0.0,1.0,1.0,1946.3290086670934,0.0,0.0,17690.0,1,3,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17690.0,3,0,3_0,3_1 -6831,8.0,8.0,64.0,112,75,50,0.0,5162,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1402.173356626353,2600.0,0.0,23749.0,5,1,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11874.5,1,0,1_0,1_1 -6832,6.0,6.0,64.0,111,56,70,0.0,5163,0.0,0.0,0.0,798.0,1.0,3.0,0.0,2.0,1.5,2308.142328259745,0.0,0.0,41765.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27843.333333333332,4,0,4_0,4_0 -6833,19.0,19.0,49.0,111,64,50,0.0,5164,0.0,70.0,0.0,0.0,5.0,6.0,2.0,6.0,3.5,1104.9033723225486,5200.0,0.0,94124.0,1,2,10,8.0,5,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,26892.571428571428,4,0,4_0,4_0 -6834,6.0,8.0,47.0,111,52,71,0.0,5165,0.0,300.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,5215.193246414742,2335.0,0.0,64680.0,1,2,6,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,35933.333333333336,5,0,5,5_0 -6835,14.0,14.0,70.0,111,75,60,0.0,5166,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1767.230270182265,2837.0,0.0,33632.0,5,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,22421.333333333332,4,0,4_0,4_0 -6836,3.0,3.0,76.0,300,77,50,0.0,5167,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2247.729427351058,0.0,0.0,14981.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14981.0,2,0,2_0,2_1 -6837,0.0,0.0,36.0,111,85,50,0.0,5168,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3809.8650393425687,0.0,0.0,29839.0,6,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29839.0,5,0,5,5_0 -6838,2.0,2.0,60.0,112,75,41,0.0,5170,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1854.9716800384617,1222.0,0.0,37415.0,5,1,10,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,24943.333333333332,4,0,4_0,4_1 -6839,8.0,9.0,78.0,111,74,70,0.0,5171,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1486.6746964344152,0.0,0.0,25707.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17138.0,3,0,3_0,3_0 -6840,2.0,2.0,72.0,112,75,50,0.0,5176,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2937.497515471846,1040.0,0.0,32318.0,5,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,21545.333333333332,3,0,3_0,3_0 -6841,5.0,7.0,75.0,112,86,70,0.0,5179,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2511.1457316116025,0.0,0.0,9080.0,6,4,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9080.0,1,0,1_0,1_1 -6842,0.0,0.0,36.0,111,56,50,0.0,518,0.0,0.0,0.0,219.0,1.0,2.0,1.0,2.0,1.3,3841.5695319629863,0.0,0.0,17568.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13513.846153846154,2,0,2_1,2_0 -6843,1.0,1.0,63.0,111,75,60,1.0,5180,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2713.5284413620525,1967.0,13058.0,40349.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,26899.333333333332,4,0,4_0,4_0 -6844,9.0,11.0,77.0,111,75,70,0.0,5183,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2239.0705714837354,0.0,0.0,22178.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14785.333333333334,2,0,2_0,2_0 -6845,3.0,3.0,70.0,111,72,70,0.0,5185,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3230.4939170651305,0.0,0.0,51940.0,5,1,8,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,34626.666666666664,5,0,5,5_0 -6846,2.0,3.0,77.0,300,74,50,0.0,5186,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1756.1724608773866,0.0,0.0,56479.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,37652.666666666664,5,0,5,5_1 -6847,1.0,8.0,31.0,120,62,43,2.0,5187,0.0,530.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,5059.801501077007,2862.0,7100.0,38902.0,1,2,0,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25934.666666666668,4,0,4_0,4_0 -6848,3.0,8.0,34.0,112,69,50,0.0,5188,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1487.2554097879822,3532.0,0.0,31147.0,1,4,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17303.888888888887,3,0,3_0,3_1 -6849,3.0,3.0,48.0,111,22,10,0.0,519,0.0,199998.0,0.0,0.0,2.0,6.0,2.0,3.0,2.0,3271.844758060239,6344.0,0.0,90304.0,1,2,8,7.0,2,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,45152.0,5,0,5,5_0 -6850,8.0,9.0,74.0,111,75,33,0.0,5190,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3115.804642587205,1800.0,0.0,30849.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30849.0,5,0,5,5_0 -6851,2.0,13.0,26.0,111,62,71,0.0,5191,0.0,20.0,0.0,315.0,2.0,3.0,1.0,3.0,1.8,3455.183303873209,0.0,0.0,20889.0,4,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11605.0,1,0,1_1,1_0 -6852,7.0,20.0,43.0,112,62,71,0.0,5193,0.0,484.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,5647.884703116348,0.0,0.0,23117.0,1,2,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15411.333333333334,2,0,2_0,2_1 -6853,0.0,0.0,19.0,112,68,50,0.0,5194,0.0,0.0,0.0,160.0,2.0,2.0,0.0,2.0,1.5,3407.867158272963,0.0,0.0,3688.0,2,3,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,2458.6666666666665,1,0,1_1,1_0 -6854,4.0,4.0,72.0,400,74,60,0.0,5195,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,4117.099999891622,0.0,0.0,32537.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21691.333333333332,3,0,3_0,3_0 -6855,7.0,11.0,60.0,111,78,71,0.0,5196,0.0,0.0,0.0,0.0,2.0,5.0,0.0,3.0,2.0,3095.4428343149884,312.0,0.0,24630.0,5,1,6,4.0,5,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12315.0,1,0,1_0,1_0 -6856,3.0,16.0,25.0,112,54,50,0.0,5197,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2232.514954706584,1040.0,0.0,39103.0,1,3,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,26068.666666666668,4,0,4_0,4_1 -6857,2.0,4.0,43.0,112,46,31,0.0,5199,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2315.860233959134,0.0,0.0,39809.0,1,2,4,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17308.26086956522,3,0,3_0,3_1 -6858,3.0,3.0,58.0,221,56,71,0.0,520,0.0,0.0,60.0,0.0,1.0,4.0,0.0,2.0,1.5,2704.6887482307225,6157.0,0.0,4011.0,1,1,1,3.0,3,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,2674.0,1,0,1_0,1_0 -6859,1.0,1.0,74.0,120,75,41,0.0,5200,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1704.06150282048,2347.0,0.0,38313.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25542.0,4,0,4_0,4_1 -6860,13.0,17.0,72.0,111,75,71,0.0,5201,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3639.0053443349916,2080.0,0.0,26772.0,5,1,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17848.0,3,0,3_0,3_0 -6861,3.0,3.0,72.0,111,74,70,0.0,5202,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1953.2778477712357,2989.0,0.0,62749.0,5,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,31374.5,5,0,5,5_0 -6862,10.0,17.0,35.0,112,63,60,0.0,5203,0.0,120.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1420.500922557174,3642.0,0.0,45713.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19047.083333333336,3,0,3_0,3_0 -6863,0.0,0.0,51.0,111,31,10,0.0,5205,0.0,0.0,0.0,0.0,2.0,6.0,1.0,4.0,2.5,1566.857089040803,0.0,0.0,201935.0,1,1,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,80774.0,5,0,5,5_0 -6864,2.0,2.0,49.0,112,22,50,0.0,5207,0.0,0.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,1838.970344850725,7178.0,0.0,94630.0,1,1,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,37852.0,5,0,5,5_1 -6865,5.0,5.0,67.0,221,72,50,0.0,5209,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3081.98496245855,0.0,0.0,40950.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27300.0,4,0,4_0,4_0 -6866,0.0,0.0,19.0,111,84,41,0.0,521,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3035.51066564624,0.0,0.0,3355.0,3,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,3355.0,1,0,1_1,1_0 -6867,6.0,8.0,57.0,120,42,10,0.0,5211,0.0,390.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1916.306785281014,2995.0,0.0,95856.0,1,2,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,36867.692307692305,5,0,5,5_0 -6868,0.0,0.0,89.0,111,86,50,0.0,5213,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3446.307449704204,0.0,0.0,18281.0,6,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18281.0,3,0,3_0,3_0 -6869,0.0,0.0,54.0,111,23,50,0.0,5214,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2378.0868164931862,0.0,0.0,60271.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30135.5,5,0,5,5_0 -6870,4.0,6.0,65.0,211,74,12,0.0,5217,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1203.296420757509,0.0,0.0,33450.0,5,1,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22300.0,4,0,4_0,4_0 -6871,5.0,11.0,50.0,112,48,41,0.0,522,0.0,270.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1799.2062220963248,2600.0,0.0,44580.0,1,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,29720.0,5,0,5,5_1 -6872,2.0,2.0,69.0,112,78,71,0.0,5220,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1797.0241566460195,2080.0,0.0,25310.0,5,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16873.333333333332,2,0,2_0,2_1 -6873,0.0,0.0,92.0,111,78,70,0.0,5221,0.0,0.0,0.0,224.0,0.0,2.0,0.0,1.0,1.0,2886.168681968599,0.0,0.0,15484.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15484.0,2,0,2_0,2_0 -6874,1.0,13.0,38.0,400,34,42,0.0,5222,0.0,132.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,3274.637718845486,0.0,0.0,30030.0,1,3,0,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,23100.0,4,0,4_1,4_0 -6875,5.0,10.0,25.0,112,63,42,0.0,5223,0.0,690.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3139.6986865040453,0.0,0.0,34261.0,1,3,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22840.666666666668,4,0,4_0,4_1 -6876,15.0,17.0,54.0,111,47,50,0.0,5224,0.0,370.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1780.4950929061463,0.0,0.0,49694.0,1,1,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,24847.0,4,0,4_0,4_0 -6877,4.0,12.0,25.0,111,46,12,0.0,5225,0.0,60.0,0.0,415.0,1.0,2.0,0.0,1.0,1.0,3517.982580938704,0.0,0.0,5702.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,5702.0,1,0,1_0,1_0 -6878,4.0,4.0,67.0,112,75,42,0.0,5226,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3583.145010158394,3640.0,0.0,38010.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,25340.0,4,0,4_0,4_0 -6879,0.0,0.0,37.0,111,43,20,0.0,5228,0.0,250.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2956.9709526229935,0.0,0.0,34283.0,1,4,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,26371.53846153846,4,0,4_0,4_0 -6880,17.0,17.0,58.0,111,63,71,0.0,5229,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,3185.6593947311508,0.0,0.0,33729.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22486.0,4,0,4_0,4_0 -6881,10.0,10.0,74.0,221,78,70,0.0,5231,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2297.0069083239146,0.0,0.0,14500.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14500.0,2,0,2_0,2_0 -6882,1.0,5.0,59.0,112,45,41,0.0,5233,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2128.72665526186,3632.0,0.0,47955.0,1,2,9,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,31970.0,5,0,5,5_0 -6883,4.0,12.0,53.0,112,77,50,0.0,5234,0.0,100.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,4028.2261904322345,0.0,0.0,34170.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,22780.0,4,0,4_0,4_0 -6884,21.0,23.0,56.0,112,37,50,0.0,5237,0.0,150.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1734.5379182598963,0.0,0.0,65151.0,1,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,43434.0,5,0,5,5_0 -6885,0.0,0.0,45.0,111,85,60,0.0,5238,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3468.0108279737246,0.0,0.0,15904.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15904.0,2,0,2_1,2_0 -6886,23.0,23.0,61.0,111,77,50,0.0,5239,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2318.1817205252687,0.0,0.0,40550.0,5,1,4,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,27033.333333333332,4,0,4_0,4_0 -6887,1.0,1.0,76.0,221,78,71,1.0,524,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2873.4037536039014,0.0,15000.0,22730.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15153.333333333334,2,0,2_0,2_0 -6888,1.0,5.0,39.0,112,21,50,0.0,5240,0.0,120.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2530.4568406745157,205.0,0.0,27580.0,1,2,3,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13790.0,2,0,2_0,2_1 -6889,0.0,0.0,78.0,112,71,70,0.0,5241,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2448.797138145777,0.0,0.0,11127.0,5,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11127.0,1,0,1_0,1_1 -6890,4.0,22.0,36.0,111,21,60,0.0,5242,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,3059.699911258084,1318.0,0.0,25486.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,10619.166666666668,1,0,1_1,1_0 -6891,1.0,1.0,60.0,111,54,50,1.0,5243,0.0,60.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2141.7518720852236,0.0,18500.0,28161.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18774.0,3,0,3_0,3_0 -6892,1.0,8.0,32.0,111,46,31,2.0,5244,0.0,1400.0,0.0,642.0,2.0,4.0,0.0,2.0,1.5,2759.9973449963736,2917.0,4000.0,41037.0,1,3,8,7.0,3,3.0,1.0,1.0,0,0,0,1,0,0,1.0,2.0,27358.0,4,0,4_0,4_0 -6893,0.0,13.0,79.0,111,71,70,0.0,5245,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2605.801605692871,0.0,0.0,8814.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,8814.0,1,0,1_0,1_0 -6894,14.0,14.0,66.0,111,74,31,0.0,5246,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2672.9967231442774,2601.0,0.0,40254.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26836.0,4,0,4_0,4_0 -6895,8.0,8.0,55.0,300,13,31,0.0,5248,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2487.9281539633985,2132.0,0.0,49503.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,49503.0,5,0,5,5_1 -6896,0.0,0.0,80.0,111,77,70,0.0,5249,0.0,0.0,0.0,311.0,0.0,4.0,0.0,1.0,1.0,2618.461092494148,0.0,0.0,19709.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19709.0,3,0,3_0,3_0 -6897,7.0,7.0,62.0,111,72,10,0.0,5250,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3354.6532846760133,2728.0,0.0,5395.0,5,4,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,3596.6666666666665,1,0,1_0,1_0 -6898,1.0,1.0,50.0,112,33,41,0.0,5251,0.0,1150.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1829.7430878118,4680.0,0.0,74163.0,1,1,10,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,37081.5,5,0,5,5_0 -6899,0.0,0.0,52.0,221,85,50,0.0,5252,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4700.021961811857,0.0,0.0,13458.0,7,3,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13458.0,2,0,2_1,2_0 -6900,12.0,12.0,83.0,111,72,70,0.0,5253,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2388.182949845693,0.0,0.0,17555.0,5,1,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11703.333333333334,1,0,1_0,1_0 -6901,2.0,2.0,39.0,111,54,31,0.0,5254,0.0,220.0,72.0,0.0,2.0,5.0,2.0,4.0,2.1,1848.9375354161907,0.0,0.0,55218.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26294.285714285714,4,0,4_0,4_0 -6902,2.0,2.0,52.0,111,46,10,0.0,5255,0.0,150.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,2106.7154734139494,2916.0,0.0,49520.0,1,1,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27511.11111111111,4,0,4_0,4_0 -6903,0.0,0.0,29.0,111,37,10,0.0,5256,0.0,0.0,0.0,620.0,1.0,2.0,0.0,1.0,1.0,3534.6295910468803,0.0,0.0,11204.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,11204.0,1,0,1_0,1_0 -6904,6.0,6.0,94.0,120,78,71,0.0,5257,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,6700.992187435955,0.0,0.0,25987.0,5,1,0,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17324.666666666668,3,0,3_0,3_0 -6905,21.0,35.0,59.0,112,33,10,0.0,5258,0.0,0.0,30.0,0.0,1.0,4.0,0.0,2.0,1.5,1688.8790681229748,0.0,0.0,44436.0,1,1,9,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,29624.0,5,0,5,5_0 -6906,7.0,7.0,66.0,300,78,50,0.0,5259,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1459.4844831870346,0.0,0.0,24177.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16118.0,2,0,2_0,2_1 -6907,0.0,0.0,88.0,111,77,70,0.0,5260,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2142.168157856931,0.0,0.0,30367.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20244.666666666668,3,0,3_0,3_0 -6908,0.0,0.0,45.0,111,46,30,0.0,5261,0.0,99999.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1563.287235116035,0.0,0.0,95810.0,1,2,6,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,39920.833333333336,5,0,5,5_0 -6909,4.0,8.0,34.0,111,56,50,0.0,5262,0.0,120.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1721.3407199314283,2601.0,0.0,28372.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,11821.666666666668,1,0,1_0,1_0 -6910,2.0,2.0,79.0,112,78,70,0.0,5263,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,932.7107119401825,1242.0,0.0,22591.0,5,1,6,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15060.666666666666,2,0,2_0,2_0 -6911,2.0,6.0,33.0,300,47,42,0.0,5265,0.0,500.0,0.0,162.0,2.0,3.0,2.0,4.0,2.1,2083.1602417025415,1040.0,0.0,50584.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,24087.619047619046,4,0,4_1,4_1 -6912,3.0,3.0,65.0,111,74,20,0.0,5266,0.0,0.0,175.0,0.0,1.0,5.0,0.0,2.0,1.5,3066.9193329588406,0.0,0.0,84828.0,5,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,56552.0,5,0,5,5_0 -6913,8.0,8.0,65.0,112,72,70,0.0,5267,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1512.8208276691669,0.0,0.0,59007.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,39338.0,5,0,5,5_0 -6914,0.0,0.0,60.0,111,86,71,0.0,5268,0.0,0.0,0.0,252.0,0.0,2.0,1.0,2.0,1.5,6787.893395934184,0.0,0.0,11556.0,6,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,7704.0,1,0,1_1,1_0 -6915,4.0,8.0,74.0,211,77,60,0.0,5269,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3136.5186499684087,4700.0,0.0,34803.0,5,1,3,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23202.0,4,0,4_0,4_0 -6916,0.0,0.0,32.0,111,37,10,0.0,5270,0.0,0.0,0.0,876.0,1.0,2.0,0.0,1.0,1.0,3782.5576834998624,0.0,0.0,34889.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34889.0,5,0,5,5_0 -6917,8.0,10.0,36.0,112,52,41,0.0,5271,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1088.748736419259,0.0,0.0,36112.0,1,2,6,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15046.666666666668,2,0,2_0,2_0 -6918,0.0,0.0,60.0,111,55,41,0.0,5273,0.0,0.0,0.0,96.0,1.0,4.0,0.0,1.0,1.0,2872.317802058609,1009.0,0.0,12800.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12800.0,2,0,2_1,2_0 -6919,7.0,15.0,38.0,111,42,12,0.0,5276,0.0,0.0,100.0,304.0,1.0,6.0,5.0,7.0,3.2,903.3946775364758,3349.0,0.0,48530.0,1,3,7,5.0,4,3.0,0.0,0.0,0,0,1,0,0,1,2.0,1.0,15165.625,2,0,2_1,2_0 -6920,2.0,23.0,47.0,221,62,50,0.0,5277,0.0,0.0,260.0,468.0,2.0,5.0,2.0,4.0,2.5,5421.501313815439,0.0,0.0,38501.0,1,3,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,15400.4,2,0,2_0,2_0 -6921,10.0,10.0,50.0,111,63,50,0.0,5278,0.0,0.0,60.0,206.0,1.0,3.0,0.0,1.0,1.0,2009.376507743244,1040.0,0.0,9644.0,4,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,9644.0,1,0,1_1,1_0 -6922,4.0,19.0,70.0,400,74,50,0.0,528,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2637.0521578471894,4589.0,0.0,47258.0,5,1,0,0.0,3,5.0,0.0,0.0,1,0,0,0,0,0,5.0,0.0,31505.333333333332,5,0,5,5_1 -6923,4.0,4.0,71.0,112,78,50,0.0,5280,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2161.540055278127,2631.0,0.0,32510.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21673.333333333332,3,0,3_0,3_1 -6924,0.0,0.0,69.0,111,78,70,0.0,5281,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2537.112783324224,0.0,0.0,18000.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18000.0,3,0,3_0,3_0 -6925,0.0,21.0,20.0,111,47,43,0.0,5282,0.0,0.0,450.0,550.0,3.0,5.0,1.0,3.0,2.0,4207.717763027187,2083.0,0.0,36180.0,1,3,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,18090.0,3,0,3_0,3_0 -6926,2.0,5.0,46.0,400,65,50,0.0,5284,0.0,450.0,0.0,0.0,2.0,5.0,2.0,3.0,2.0,1354.6016069876785,2340.0,0.0,32438.0,1,2,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,16219.0,2,0,2_1,2_1 -6927,16.0,21.0,42.0,400,63,50,0.0,5285,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1094.8098367899024,0.0,0.0,22134.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,9222.5,1,0,1_1,1_1 -6928,3.0,7.0,56.0,400,67,60,0.0,5286,0.0,120.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2334.5205787419873,0.0,0.0,14839.0,1,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14839.0,2,0,2_0,2_1 -6929,0.0,0.0,79.0,111,77,70,0.0,5289,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2896.658056222665,0.0,0.0,8946.0,6,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8946.0,1,0,1_0,1_0 -6930,1.0,11.0,41.0,111,56,50,2.0,5290,0.0,150.0,0.0,0.0,2.0,4.0,2.0,3.0,1.8,2264.696778025968,0.0,4700.0,17495.0,4,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9719.444444444443,1,0,1_1,1_0 -6931,11.0,11.0,61.0,221,75,60,0.0,5291,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3394.6192805650794,0.0,0.0,22769.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22769.0,4,0,4_0,4_0 -6932,8.0,8.0,47.0,112,52,60,0.0,5292,0.0,0.0,160.0,0.0,1.0,5.0,1.0,3.0,2.0,1844.0393107970322,1456.0,0.0,41590.0,1,1,6,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20795.0,3,0,3_0,3_0 -6933,0.0,0.0,44.0,111,45,41,0.0,5293,0.0,0.0,0.0,324.0,1.0,2.0,1.0,2.0,1.5,3140.565668554422,0.0,0.0,26699.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,17799.333333333332,3,0,3_1,3_0 -6934,5.0,7.0,34.0,212,63,50,0.0,5294,0.0,110.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,1163.6762972314632,0.0,0.0,42810.0,1,2,1,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20385.714285714286,3,0,3_0,3_1 -6935,7.0,12.0,50.0,111,47,41,0.0,5296,0.0,0.0,0.0,301.0,1.0,4.0,1.0,2.0,1.3,2959.784204839426,1560.0,0.0,14715.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11319.23076923077,1,0,1_0,1_0 -6936,0.0,0.0,32.0,111,34,10,0.0,5298,0.0,0.0,0.0,193.0,1.0,2.0,0.0,2.0,1.5,2060.693512977416,0.0,0.0,20230.0,1,3,7,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13486.666666666666,2,0,2_0,2_0 -6937,10.0,10.0,43.0,111,43,20,0.0,5299,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2472.8869324167954,1636.0,0.0,30987.0,1,1,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,30987.0,5,0,5,5_0 -6938,2.0,2.0,45.0,112,54,42,0.0,5300,0.0,150.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,5884.926990464502,0.0,0.0,27647.0,1,2,4,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15359.444444444443,2,0,2_0,2_1 -6939,11.0,11.0,74.0,300,71,70,0.0,5301,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1452.4270254572907,2860.0,0.0,17707.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11804.666666666666,1,0,1_0,1_1 -6940,11.0,11.0,42.0,111,63,50,0.0,5302,0.0,1500.0,0.0,465.0,1.0,2.0,0.0,1.0,1.0,3060.070869946511,3277.0,0.0,18836.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18836.0,3,0,3_0,3_0 -6941,11.0,11.0,45.0,111,38,42,0.0,5304,0.0,350.0,0.0,0.0,2.0,8.0,3.0,5.0,3.0,2376.486848044375,2638.0,0.0,65486.0,1,1,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21828.666666666668,4,0,4_0,4_0 -6942,1.0,1.0,63.0,111,77,70,0.0,5305,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1910.3593165614939,4160.0,0.0,41232.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,27488.0,4,0,4_0,4_0 -6943,0.0,0.0,25.0,111,67,50,0.0,5306,0.0,0.0,0.0,470.0,2.0,3.0,0.0,2.0,1.5,2319.9756143459995,0.0,0.0,24360.0,4,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16240.0,2,0,2_0,2_0 -6944,2.0,12.0,39.0,111,47,31,0.0,5307,0.0,0.0,600.0,590.0,1.0,3.0,0.0,1.0,1.0,3088.384901391861,2956.0,0.0,53285.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,53285.0,5,0,5,5_0 -6945,4.0,4.0,59.0,111,22,50,0.0,5308,0.0,350.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2783.8324730482905,3640.0,0.0,35695.0,1,1,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,17847.5,3,0,3_0,3_0 -6946,7.0,7.0,77.0,112,71,70,0.0,5309,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2980.290220297507,0.0,0.0,17028.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11352.0,1,0,1_0,1_0 -6947,0.0,0.0,83.0,111,77,60,0.0,5312,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3469.0725200781117,0.0,0.0,20689.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20689.0,3,0,3_0,3_0 -6948,1.0,1.0,47.0,111,47,71,1.0,5313,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,3732.2297725438443,2218.0,7000.0,30282.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15141.0,2,0,2_0,2_0 -6949,0.0,0.0,54.0,221,75,33,0.0,5317,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3776.5749063278913,0.0,0.0,14921.0,7,4,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14921.0,2,0,2_0,2_0 -6950,2.0,3.0,57.0,300,42,20,0.0,5318,0.0,100.0,120.0,0.0,1.0,6.0,1.0,2.0,1.5,1564.44165830584,4420.0,0.0,25429.0,1,1,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16952.666666666668,3,0,3_0,3_1 -6951,7.0,7.0,72.0,111,74,60,0.0,5319,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2371.7281370443334,1561.0,0.0,36441.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24294.0,4,0,4_0,4_0 -6952,10.0,10.0,42.0,112,48,31,0.0,532,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3764.910978194325,3588.0,0.0,62282.0,1,1,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,29658.095238095237,5,0,5,5_0 -6953,0.0,0.0,57.0,112,78,50,2.0,5320,0.0,220.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1598.7686879838373,4992.0,5600.0,30991.0,7,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20660.666666666668,3,0,3_0,3_1 -6954,2.0,2.0,80.0,111,74,50,0.0,5323,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,988.8142087272305,2196.0,0.0,44451.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29634.0,5,0,5,5_0 -6955,5.0,6.0,58.0,112,75,33,0.0,5324,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1256.6837126206688,2184.0,0.0,47845.0,5,1,4,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23922.5,4,0,4_0,4_1 -6956,2.0,4.0,58.0,112,77,70,0.0,5325,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1179.6475733797656,1145.0,0.0,28898.0,4,3,6,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19265.333333333332,3,0,3_0,3_0 -6957,10.0,10.0,54.0,111,45,60,0.0,5326,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2491.741232629541,3069.0,0.0,72456.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,36228.0,5,0,5,5_0 -6958,7.0,7.0,46.0,112,34,10,0.0,5328,0.0,200.0,250.0,0.0,2.0,5.0,1.0,3.0,1.8,976.724732101139,3900.0,0.0,62247.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,34581.666666666664,5,0,5,5_0 -6959,3.0,3.0,49.0,111,54,31,0.0,5329,0.0,0.0,24.0,0.0,1.0,3.0,0.0,1.0,1.0,2970.489131328484,0.0,0.0,21500.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21500.0,3,0,3_0,3_0 -6960,3.0,3.0,66.0,111,78,50,0.0,533,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1146.4892814485684,1573.0,0.0,19854.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13236.0,2,0,2_0,2_0 -6961,4.0,4.0,51.0,221,46,60,0.0,5330,0.0,660.0,50.0,0.0,2.0,5.0,1.0,3.0,2.0,2840.961187822733,4212.0,0.0,37687.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,18843.5,3,0,3_0,3_0 -6962,6.0,16.0,48.0,120,43,10,0.0,5331,0.0,60.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,855.4458095068059,4195.0,0.0,27497.0,1,1,0,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,13748.5,2,0,2_0,2_0 -6963,2.0,11.0,55.0,111,43,33,0.0,5332,0.0,0.0,25.0,0.0,2.0,4.0,1.0,3.0,2.0,2671.9600741779964,0.0,0.0,73471.0,1,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,36735.5,5,0,5,5_0 -6964,9.0,11.0,39.0,300,43,33,0.0,5333,0.0,720.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1622.716165701769,6708.0,0.0,84547.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,46970.555555555555,5,0,5,5_0 -6965,11.0,11.0,56.0,120,46,70,0.0,5335,0.0,250.0,0.0,443.0,1.0,4.0,0.0,1.0,1.0,3454.747399311157,2714.0,0.0,20660.0,1,3,0,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20660.0,3,0,3_0,3_0 -6966,0.0,0.0,74.0,400,77,71,0.0,5336,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3270.0540447702206,0.0,0.0,14563.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14563.0,2,0,2_1,2_1 -6967,7.0,9.0,51.0,111,37,20,0.0,5338,0.0,450.0,350.0,0.0,2.0,5.0,2.0,4.0,2.5,945.7237262746087,7275.0,0.0,68366.0,1,1,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,27346.4,4,0,4_0,4_0 -6968,2.0,7.0,40.0,111,54,43,0.0,5339,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,4850.641957728157,5668.0,0.0,41737.0,1,1,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,19874.761904761905,3,0,3_0,3_0 -6969,0.0,0.0,78.0,111,77,50,0.0,534,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3648.871637405808,0.0,0.0,24972.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24972.0,4,0,4_0,4_0 -6970,3.0,6.0,27.0,111,42,50,0.0,5340,1000.0,0.0,0.0,260.0,2.0,2.0,0.0,2.0,1.5,3424.778691354148,2288.0,0.0,32682.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21788.0,4,0,4_0,4_0 -6971,3.0,10.0,47.0,111,64,50,0.0,5342,0.0,99999.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3400.393930679416,4160.0,0.0,16560.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,16560.0,2,0,2_0,2_0 -6972,11.0,13.0,36.0,120,47,50,0.0,5344,0.0,0.0,200.0,0.0,2.0,5.0,2.0,4.0,2.1,2935.0301434386706,4681.0,0.0,45920.0,1,3,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,21866.666666666664,4,0,4_0,4_0 -6973,3.0,10.0,35.0,111,64,60,0.0,5346,0.0,99999.0,0.0,0.0,2.0,7.0,4.0,6.0,2.9,1239.720902083415,2600.0,0.0,37063.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,12780.344827586207,2,0,2_0,2_0 -6974,2.0,2.0,68.0,120,75,41,0.0,535,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2086.9041356314297,2704.0,0.0,38090.0,5,1,0,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,25393.333333333332,4,0,4_0,4_0 -6975,0.0,0.0,86.0,111,77,60,0.0,5350,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2645.0476995002014,0.0,0.0,26351.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26351.0,4,0,4_0,4_0 -6976,2.0,20.0,37.0,400,42,20,0.0,5351,0.0,570.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2428.2897435151444,4736.0,0.0,36782.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17515.238095238095,3,0,3_0,3_1 -6977,7.0,8.0,35.0,112,46,10,0.0,5352,0.0,350.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2082.7063306203277,0.0,0.0,59991.0,1,2,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,28567.142857142855,4,0,4_0,4_0 -6978,0.0,0.0,53.0,111,47,31,0.0,5353,0.0,0.0,0.0,430.0,1.0,1.0,0.0,1.0,1.0,3437.598518019841,0.0,0.0,42683.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42683.0,5,0,5,5_0 -6979,7.0,16.0,42.0,111,46,41,0.0,5354,0.0,200.0,0.0,657.0,1.0,6.0,2.0,3.0,2.0,2397.4622369023623,0.0,0.0,36455.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18227.5,3,0,3_0,3_0 -6980,1.0,9.0,72.0,111,75,50,2.0,5355,0.0,150.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1280.4576432620258,3090.0,5500.0,31093.0,5,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20728.666666666668,3,0,3_0,3_0 -6981,0.0,15.0,67.0,111,56,71,0.0,5356,0.0,0.0,135.0,0.0,2.0,4.0,1.0,3.0,1.8,2714.4520526379797,1953.0,0.0,27539.0,5,2,10,8.0,5,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,15299.444444444443,2,0,2_0,2_0 -6982,2.0,3.0,78.0,111,74,70,0.0,5358,0.0,0.0,30.0,0.0,1.0,6.0,1.0,2.0,1.5,1276.6195202423858,2276.0,0.0,50243.0,5,1,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,33495.333333333336,5,0,5,5_0 -6983,2.0,9.0,45.0,120,67,71,0.0,536,0.0,600.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3147.6841766527946,2080.0,0.0,36144.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24096.0,4,0,4_0,4_1 -6984,0.0,0.0,73.0,111,78,50,0.0,5361,0.0,0.0,0.0,360.0,2.0,3.0,1.0,3.0,2.0,2836.824461339815,0.0,0.0,32054.0,5,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16027.0,2,0,2_0,2_0 -6985,2.0,6.0,64.0,112,77,50,0.0,5362,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2636.867503878742,6016.0,0.0,27400.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18266.666666666668,3,0,3_0,3_1 -6986,0.0,0.0,21.0,111,84,41,0.0,5363,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3199.585513753843,0.0,0.0,7205.0,3,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,7205.0,1,0,1_0,1_0 -6987,0.0,16.0,61.0,111,31,10,0.0,5365,0.0,0.0,20.0,3213.0,2.0,4.0,1.0,3.0,2.0,3218.020954266511,1041.0,0.0,245027.0,1,3,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,122513.5,5,0,5,5_0 -6988,0.0,0.0,68.0,111,77,70,0.0,5367,0.0,0.0,0.0,492.0,1.0,6.0,1.0,3.0,2.0,2424.302771214508,0.0,0.0,31383.0,5,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15691.5,2,0,2_0,2_0 -6989,4.0,4.0,52.0,111,67,71,0.0,537,0.0,60.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1983.4600444499156,523.0,0.0,27024.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,13512.0,2,0,2_0,2_0 -6990,4.0,8.0,57.0,300,21,50,0.0,5370,0.0,0.0,0.0,0.0,2.0,7.0,0.0,3.0,2.0,2097.1801760220433,0.0,0.0,25835.0,1,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12917.5,2,0,2_0,2_1 -6991,3.0,3.0,48.0,112,48,50,0.0,5371,0.0,120.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2277.868705368691,4165.0,0.0,48353.0,1,3,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24176.5,4,0,4_0,4_1 -6992,3.0,3.0,30.0,111,38,12,0.0,5374,0.0,199998.0,0.0,680.0,2.0,3.0,0.0,2.0,1.5,2856.8914393366513,1984.0,0.0,54398.0,1,3,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,36265.333333333336,5,0,5,5_0 -6993,0.0,12.0,26.0,111,55,43,0.0,5375,0.0,100.0,100.0,0.0,2.0,4.0,1.0,3.0,1.8,3379.7615234031578,0.0,0.0,38565.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,21425.0,3,0,3_0,3_0 -6994,21.0,23.0,41.0,112,47,41,0.0,5376,0.0,250.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2598.2562536144037,0.0,0.0,29847.0,1,2,7,0.0,1,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,29847.0,5,0,5,5_1 -6995,12.0,12.0,50.0,111,37,12,0.0,5377,0.0,0.0,70.0,0.0,2.0,9.0,4.0,6.0,3.3,1441.8054344690684,0.0,0.0,411806.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,124789.69696969698,5,0,5,5_0 -6996,13.0,18.0,54.0,112,63,50,0.0,5379,0.0,500.0,20.0,0.0,2.0,6.0,1.0,3.0,2.0,1118.5789732057656,3395.0,0.0,49096.0,1,1,3,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,24548.0,4,0,4_0,4_1 -6997,0.0,1.0,56.0,111,48,10,0.0,5380,0.0,280.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1637.395792360246,0.0,0.0,55126.0,1,3,8,6.0,3,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,36750.666666666664,5,0,5,5_0 -6998,8.0,8.0,49.0,112,46,50,0.0,5381,0.0,240.0,99999.0,0.0,3.0,6.0,3.0,5.0,3.0,2179.9195552065694,3433.0,0.0,72857.0,1,2,5,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,1.0,3.0,24285.666666666668,4,0,4_0,4_1 -6999,1.0,10.0,43.0,111,68,50,2.0,5382,0.0,48.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,2400.3269733731495,1560.0,3200.0,23160.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11028.571428571428,1,0,1_1,1_0 -7000,0.0,16.0,39.0,400,63,50,0.0,5383,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2391.9923538889357,0.0,0.0,22108.0,1,2,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22108.0,4,0,4_0,4_0 -7001,3.0,11.0,52.0,111,52,41,0.0,5384,0.0,650.0,500.0,0.0,2.0,4.0,1.0,3.0,2.0,1958.781732613068,2547.0,0.0,55612.0,1,2,6,5.0,4,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,27806.0,4,0,4_0,4_0 -7002,9.0,14.0,56.0,211,21,50,0.0,5387,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1531.8698062563626,2081.0,0.0,12048.0,1,1,3,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,12048.0,1,0,1_0,1_0 -7003,2.0,2.0,38.0,111,21,43,0.0,5388,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4717.148927692273,0.0,0.0,47173.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22463.333333333332,4,0,4_0,4_0 -7004,2.0,2.0,49.0,111,38,10,0.0,5389,0.0,0.0,50.0,0.0,2.0,5.0,3.0,5.0,2.4,1268.254945826596,0.0,0.0,64521.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,26883.75,4,0,4_0,4_0 -7005,6.0,6.0,79.0,111,71,71,0.0,539,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2725.8422936200095,0.0,0.0,14380.0,5,4,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,9586.666666666666,1,0,1_0,1_0 -7006,4.0,4.0,64.0,111,75,42,0.0,5391,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2411.3280774639775,0.0,0.0,31180.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,20786.666666666668,3,0,3_0,3_0 -7007,0.0,6.0,22.0,112,67,43,0.0,5395,0.0,100.0,0.0,0.0,2.0,6.0,3.0,4.0,2.5,1626.0263231503425,2236.0,0.0,15181.0,1,2,10,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,6072.4,1,0,1_0,1_1 -7008,1.0,2.0,44.0,111,62,50,2.0,5396,0.0,0.0,200.0,0.0,2.0,4.0,3.0,5.0,2.6,966.7107751105762,0.0,12800.0,44270.0,1,4,8,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,17026.923076923078,3,0,3_0,3_0 -7009,3.0,3.0,65.0,111,78,71,0.0,5399,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2896.297436449145,2878.0,0.0,21509.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14339.333333333334,2,0,2_0,2_0 -7010,5.0,36.0,61.0,221,78,70,0.0,540,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2581.839569501768,4680.0,0.0,29301.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19534.0,3,0,3_0,3_0 -7011,0.0,0.0,51.0,111,33,41,1.0,5400,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,3346.4305774173426,0.0,19232.0,93673.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,62448.666666666664,5,0,5,5_0 -7012,0.0,5.0,22.0,221,52,33,0.0,5401,0.0,200.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4745.977569097476,0.0,0.0,22420.0,1,3,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,14946.666666666666,2,0,2_1,2_0 -7013,3.0,3.0,32.0,111,38,10,0.0,5403,0.0,400.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3210.853248169071,2652.0,0.0,48175.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26763.888888888887,4,0,4_0,4_0 -7014,1.0,4.0,59.0,212,75,20,0.0,5406,0.0,0.0,0.0,0.0,1.0,6.0,1.0,4.0,2.5,2703.406197814477,3180.0,0.0,20529.0,5,1,3,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,8211.6,1,0,1_0,1_1 -7015,15.0,15.0,57.0,111,47,31,0.0,5407,0.0,0.0,0.0,992.0,2.0,6.0,2.0,4.0,2.5,2303.7233277911046,0.0,0.0,54560.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,21824.0,4,0,4_0,4_0 -7016,1.0,3.0,51.0,112,46,30,0.0,5408,0.0,99999.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,3224.294235403418,4160.0,0.0,44187.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22093.5,4,0,4_0,4_1 -7017,6.0,6.0,78.0,221,77,70,0.0,541,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3232.4101179469103,0.0,0.0,38073.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,25382.0,4,0,4_0,4_0 -7018,2.0,17.0,36.0,111,56,43,0.0,5412,0.0,0.0,99999.0,177.0,1.0,2.0,0.0,1.0,1.0,2661.3046311491503,1303.0,0.0,16187.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,16187.0,2,0,2_1,2_0 -7019,1.0,1.0,56.0,221,74,31,1.0,5413,0.0,0.0,50.0,0.0,1.0,4.0,0.0,2.0,1.5,1825.6190747189214,3843.0,22700.0,58938.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,39292.0,5,0,5,5_0 -7020,4.0,4.0,57.0,111,31,10,0.0,5414,0.0,99999.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2273.837980214852,2600.0,0.0,255719.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,127859.5,5,0,5,5_0 -7021,7.0,11.0,39.0,111,42,41,0.0,5415,0.0,350.0,40.0,0.0,2.0,5.0,2.0,5.0,2.6,1594.5301757282048,3224.0,0.0,56566.0,1,2,6,5.0,5,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,21756.153846153844,4,0,4_0,4_0 -7022,0.0,8.0,23.0,111,84,20,0.0,5418,0.0,0.0,0.0,102.0,1.0,3.0,0.0,2.0,1.5,3178.061817453394,0.0,0.0,37367.0,3,3,8,6.0,5,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,24911.333333333332,4,0,4_1,4_0 -7023,0.0,0.0,36.0,400,47,50,0.0,5419,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4840.441527930874,0.0,0.0,7675.0,4,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,7675.0,1,0,1_1,1_1 -7024,4.0,10.0,26.0,111,56,71,0.0,542,0.0,99999.0,99999.0,500.0,1.0,2.0,0.0,1.0,1.0,3812.1252464410254,0.0,0.0,17191.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,17191.0,3,0,3_0,3_0 -7025,0.0,6.0,31.0,300,62,44,0.0,5420,0.0,500.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,5619.702968948373,0.0,0.0,33303.0,1,3,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22202.0,4,0,4_0,4_0 -7026,0.0,3.0,51.0,111,46,20,0.0,5422,0.0,50.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,2365.4806186030787,1614.0,0.0,94193.0,1,1,10,8.0,2,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,47096.5,5,0,5,5_0 -7027,0.0,0.0,78.0,111,77,50,0.0,5423,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1212.9901083330965,0.0,0.0,15917.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15917.0,2,0,2_0,2_0 -7028,0.0,0.0,24.0,111,84,41,0.0,5425,0.0,0.0,0.0,439.0,0.0,3.0,0.0,1.0,1.0,3104.458987197473,0.0,0.0,7835.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,7835.0,1,0,1_1,1_0 -7029,2.0,2.0,78.0,400,71,71,0.0,5426,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2984.793598650206,0.0,0.0,18069.0,5,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,12046.0,1,0,1_0,1_1 -7030,7.0,7.0,74.0,111,78,71,0.0,5427,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2520.768573243342,0.0,0.0,25790.0,5,3,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17193.333333333332,3,0,3_0,3_0 -7031,3.0,15.0,54.0,111,37,50,0.0,5429,0.0,0.0,91.0,850.0,2.0,4.0,0.0,2.0,1.5,1492.3947380517377,2723.0,0.0,28563.0,4,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19042.0,3,0,3_0,3_0 -7032,0.0,0.0,60.0,211,86,71,0.0,5430,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,2.0,3085.246053421963,0.0,0.0,13584.0,5,3,4,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,6792.0,1,0,1_1,1_0 -7033,3.0,5.0,30.0,112,63,50,0.0,5431,0.0,240.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2307.7514332395426,0.0,0.0,33341.0,1,3,7,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18522.777777777777,3,0,3_0,3_0 -7034,2.0,2.0,37.0,112,64,43,0.0,5432,0.0,700.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2740.598946736527,6032.0,0.0,45073.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,30048.666666666668,5,0,5,5_1 -7035,0.0,0.0,23.0,111,84,10,0.0,5434,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,5935.751008819756,0.0,0.0,9700.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9700.0,1,0,1_0,1_0 -7036,6.0,6.0,56.0,112,38,12,0.0,5435,0.0,375.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1498.0500500690516,1794.0,0.0,118637.0,1,2,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,59318.5,5,0,5,5_0 -7037,0.0,14.0,36.0,111,64,71,2.0,5436,0.0,0.0,0.0,0.0,2.0,3.0,4.0,7.0,3.6,1656.1571449558753,6240.0,1500.0,32180.0,4,3,5,4.0,5,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8938.888888888889,1,0,1_1,1_0 -7038,0.0,0.0,62.0,112,21,43,1.0,5437,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2519.836503735476,0.0,24000.0,36666.0,1,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24444.0,4,0,4_0,4_1 -7039,1.0,1.0,62.0,111,77,50,1.0,5438,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1541.4072285288432,1782.0,11793.0,20926.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20926.0,3,0,3_0,3_0 -7040,7.0,8.0,70.0,111,75,41,0.0,544,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1546.5895953403226,1089.0,0.0,26708.0,5,3,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17805.333333333332,3,0,3_0,3_0 -7041,5.0,6.0,36.0,112,54,31,0.0,5440,0.0,80.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1743.8913340579982,2567.0,0.0,42490.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20233.333333333332,3,0,3_0,3_0 -7042,3.0,13.0,50.0,400,53,50,0.0,5441,0.0,120.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2477.43299655688,780.0,0.0,10929.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,7286.0,1,0,1_0,1_1 -7043,0.0,0.0,72.0,300,77,70,0.0,5442,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1262.5817590423987,0.0,0.0,15542.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,15542.0,2,0,2_1,2_1 -7044,2.0,8.0,61.0,111,77,50,0.0,5445,0.0,30.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3644.9482792762497,3120.0,0.0,62946.0,5,1,6,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,31473.0,5,0,5,5_0 -7045,0.0,0.0,31.0,111,38,10,0.0,5446,0.0,0.0,0.0,550.0,1.0,2.0,0.0,1.0,1.0,3567.9349847434146,0.0,0.0,48442.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,48442.0,5,0,5,5_0 -7046,1.0,1.0,43.0,111,38,41,1.0,5447,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3064.9814911706044,0.0,23500.0,94822.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,41226.956521739135,5,0,5,5_0 -7047,6.0,21.0,61.0,111,78,71,0.0,5448,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,1445.4921207475372,2808.0,0.0,58660.0,5,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23464.0,4,0,4_0,4_0 -7048,2.0,11.0,47.0,112,63,50,0.0,545,0.0,720.0,0.0,0.0,2.0,6.0,0.0,3.0,1.8,1045.02544440408,0.0,0.0,27618.0,1,2,7,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15343.333333333332,2,0,2_0,2_1 -7049,0.0,0.0,65.0,211,74,20,0.0,5450,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,919.8364604143103,0.0,0.0,55071.0,5,1,3,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,36714.0,5,0,5,5_0 -7050,7.0,7.0,72.0,112,74,30,0.0,5451,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1047.7136474392946,0.0,0.0,48512.0,5,1,9,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,32341.333333333332,5,0,5,5_0 -7051,2.0,17.0,26.0,111,62,50,0.0,5452,0.0,0.0,100049.0,0.0,2.0,5.0,0.0,2.0,1.5,1786.1301179530271,2080.0,0.0,40223.0,1,3,7,5.0,3,3.0,0.0,1.0,0,0,1,0,0,0,3.0,0.0,26815.333333333332,4,0,4_0,4_0 -7052,0.0,12.0,48.0,111,37,31,0.0,5453,0.0,0.0,800.0,855.0,1.0,4.0,0.0,1.0,1.0,2670.564348916837,3380.0,0.0,31707.0,1,3,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,31707.0,5,0,5,5_0 -7053,5.0,6.0,43.0,111,52,50,0.0,5454,0.0,10.0,0.0,373.0,1.0,2.0,0.0,1.0,1.0,2213.1390672166317,0.0,0.0,20089.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20089.0,3,0,3_0,3_0 -7054,0.0,0.0,74.0,111,77,50,0.0,5456,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1695.3883719191156,0.0,0.0,22816.0,5,1,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22816.0,4,0,4_0,4_0 -7055,1.0,5.0,34.0,111,64,60,0.0,5459,0.0,0.0,0.0,641.0,1.0,3.0,1.0,3.0,1.8,2968.332666823635,0.0,0.0,38207.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,21226.11111111111,3,0,3_1,3_0 -7056,19.0,20.0,71.0,111,74,44,0.0,5460,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2442.3082346167903,2620.0,0.0,35472.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,23648.0,4,0,4_0,4_0 -7057,21.0,21.0,58.0,112,38,50,0.0,5461,0.0,10.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1796.9118695061131,0.0,0.0,104860.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,58255.555555555555,5,0,5,5_1 -7058,0.0,0.0,40.0,111,53,43,0.0,5462,0.0,0.0,0.0,149.0,1.0,1.0,0.0,1.0,1.0,3452.3060157301798,0.0,0.0,14295.0,1,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14295.0,2,0,2_0,2_0 -7059,3.0,9.0,32.0,111,46,31,0.0,5463,0.0,99999.0,0.0,580.0,2.0,2.0,0.0,2.0,1.5,3382.1414413395055,0.0,0.0,29954.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19969.333333333332,3,0,3_0,3_0 -7060,1.0,16.0,21.0,111,84,41,0.0,5466,0.0,300.0,0.0,86.0,0.0,1.0,0.0,1.0,1.0,2928.33275475138,3316.0,0.0,2432.0,3,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,2432.0,1,0,1_1,1_0 -7061,0.0,0.0,59.0,111,22,50,0.0,5467,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1868.504116232562,2049.0,0.0,123030.0,1,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,82020.0,5,0,5,5_0 -7062,4.0,4.0,48.0,111,63,50,0.0,5469,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2012.0820312469696,0.0,0.0,24825.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16550.0,2,0,2_0,2_0 -7063,5.0,6.0,53.0,112,47,50,0.0,5472,0.0,99999.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1993.3999216432578,2158.0,0.0,22930.0,1,2,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15286.666666666666,2,0,2_0,2_1 -7064,14.0,20.0,55.0,300,46,50,0.0,5473,0.0,350.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1787.6261617616576,2080.0,0.0,34958.0,1,1,0,0.0,4,5.0,0.0,0.0,1,0,0,0,0,0,0.0,5.0,17479.0,3,0,3_0,3_1 -7065,15.0,15.0,65.0,112,74,20,0.0,5475,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1149.1971945878306,4915.0,0.0,49875.0,5,1,4,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,33250.0,5,0,5,5_1 -7066,5.0,21.0,58.0,111,34,10,0.0,5476,0.0,0.0,50.0,370.0,1.0,3.0,0.0,1.0,1.0,2356.190857163477,0.0,0.0,47168.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,47168.0,5,0,5,5_0 -7067,7.0,7.0,41.0,111,55,42,0.0,5477,0.0,900.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1817.1167964567867,2070.0,0.0,25194.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,13996.666666666666,2,0,2_1,2_0 -7068,3.0,3.0,30.0,111,42,20,0.0,5478,0.0,80.0,0.0,585.0,1.0,2.0,0.0,1.0,1.0,3139.889498424651,0.0,0.0,27760.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,27760.0,4,0,4_0,4_0 -7069,9.0,13.0,31.0,111,55,42,0.0,5479,0.0,0.0,0.0,132.0,1.0,1.0,0.0,1.0,1.0,3348.189634263255,0.0,0.0,8076.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,8076.0,1,0,1_1,1_0 -7070,4.0,11.0,44.0,300,56,50,0.0,548,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,857.8819811507576,1830.0,0.0,16230.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,7056.521739130435,1,0,1_1,1_1 -7071,0.0,0.0,20.0,111,81,60,0.0,5480,0.0,0.0,0.0,250.0,2.0,1.0,0.0,2.0,1.5,4085.9782780740034,0.0,0.0,1440.0,4,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,960.0,1,0,1_1,1_0 -7072,3.0,5.0,44.0,221,56,50,0.0,5481,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,3418.5908374634037,5219.0,0.0,20506.0,1,1,1,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,13670.666666666666,2,0,2_0,2_0 -7073,5.0,11.0,51.0,111,45,50,0.0,5482,0.0,0.0,100.0,610.0,1.0,3.0,1.0,2.0,1.5,2049.9588159256505,0.0,0.0,32285.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21523.333333333332,3,0,3_0,3_0 -7074,0.0,4.0,43.0,111,37,10,0.0,5483,0.0,950.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3156.471078523055,0.0,0.0,171568.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,74594.78260869566,5,0,5,5_0 -7075,5.0,5.0,74.0,112,75,41,0.0,5484,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3442.928470621145,0.0,0.0,26257.0,5,4,10,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,26257.0,4,0,4_0,4_0 -7076,6.0,6.0,80.0,111,74,31,0.0,5486,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2481.8020203205056,0.0,0.0,69334.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,46222.666666666664,5,0,5,5_0 -7077,5.0,8.0,57.0,111,48,50,0.0,5487,0.0,0.0,200.0,550.0,1.0,2.0,0.0,1.0,1.0,5486.9739379317425,2600.0,0.0,31464.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,31464.0,5,0,5,5_0 -7078,1.0,2.0,61.0,400,77,44,2.0,549,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2401.416767724515,2080.0,15040.0,32872.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21914.666666666668,4,0,4_0,4_1 -7079,0.0,0.0,59.0,111,85,70,0.0,5491,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2776.6480749293582,0.0,0.0,13626.0,7,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13626.0,2,0,2_1,2_0 -7080,0.0,0.0,75.0,111,78,50,0.0,5492,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5915.567521275705,0.0,0.0,20270.0,5,1,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20270.0,3,0,3_0,3_0 -7081,9.0,9.0,39.0,111,22,43,0.0,5496,0.0,99999.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,1813.9969495331559,1620.0,0.0,81936.0,1,3,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,35624.34782608696,5,0,5,5_0 -7082,14.0,14.0,60.0,111,74,12,0.0,5497,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2336.402422305144,5653.0,0.0,52267.0,4,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,34844.666666666664,5,0,5,5_0 -7083,0.0,0.0,20.0,111,84,41,0.0,5498,0.0,0.0,0.0,530.0,0.0,2.0,0.0,1.0,1.0,3754.618762291883,0.0,0.0,6015.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,6015.0,1,0,1_0,1_0 -7084,4.0,4.0,80.0,400,72,70,0.0,5499,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3051.305320982864,2651.0,0.0,24635.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,16423.333333333332,2,0,2_0,2_1 -7085,1.0,1.0,28.0,111,43,31,1.0,550,0.0,400.0,0.0,750.0,1.0,4.0,1.0,2.0,1.3,4137.925938053589,1300.0,12800.0,25119.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19322.30769230769,3,0,3_0,3_0 -7086,3.0,7.0,53.0,111,37,10,0.0,5500,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.5,3549.761153659468,780.0,0.0,41386.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27590.666666666668,4,0,4_0,4_0 -7087,0.0,0.0,95.0,400,71,70,0.0,5501,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1829.5611482904067,0.0,0.0,11445.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11445.0,1,0,1_1,1_1 -7088,2.0,2.0,44.0,111,37,12,0.0,5503,0.0,90.0,0.0,0.0,2.0,11.0,3.0,5.0,2.6,965.4631960348919,0.0,0.0,91408.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,35156.92307692308,5,0,5,5_0 -7089,0.0,0.0,79.0,111,86,50,1.0,5504,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1765.5206181598585,0.0,10000.0,36417.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,36417.0,5,0,5,5_0 -7090,2.0,2.0,71.0,112,78,50,0.0,5505,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1504.7888420722338,0.0,0.0,18325.0,5,1,8,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12216.666666666666,1,0,1_0,1_0 -7091,20.0,20.0,58.0,111,33,50,0.0,5506,0.0,0.0,170.0,0.0,2.0,6.0,0.0,2.0,1.5,1667.6580927922803,644.0,0.0,48926.0,1,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,32617.333333333332,5,0,5,5_0 -7092,0.0,0.0,88.0,111,74,41,0.0,5508,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4142.287878498371,0.0,0.0,90059.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,60039.333333333336,5,0,5,5_0 -7093,8.0,12.0,39.0,111,22,31,0.0,551,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,3501.317764903909,2080.0,0.0,15694.0,1,2,8,7.0,2,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,12072.307692307691,1,0,1_1,1_0 -7094,15.0,15.0,80.0,111,75,31,0.0,5510,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2710.9196335192314,1465.0,0.0,54108.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,36072.0,5,0,5,5_0 -7095,5.0,5.0,57.0,211,74,50,0.0,5512,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1323.9793004184232,0.0,0.0,40295.0,5,1,3,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,26863.333333333332,4,0,4_0,4_0 -7096,1.0,1.0,58.0,112,72,20,1.0,5514,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2479.9157216525773,2340.0,20000.0,39240.0,5,2,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26160.0,4,0,4_0,4_1 -7097,2.0,2.0,44.0,111,21,71,0.0,5516,0.0,99999.0,0.0,3.0,1.0,3.0,4.0,6.0,2.7,3081.5234337880884,4837.0,0.0,30532.0,1,3,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,1,0.0,1.0,11308.148148148148,1,0,1_1,1_0 -7098,4.0,4.0,38.0,112,21,50,0.0,5517,0.0,99999.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1686.2529982025765,3120.0,0.0,48740.0,1,1,10,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,20308.333333333336,3,0,3_0,3_0 -7099,7.0,10.0,61.0,111,34,10,0.0,5518,0.0,500.0,0.0,1076.0,1.0,4.0,0.0,2.0,1.5,1915.8744048585086,884.0,0.0,103142.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,68761.33333333333,5,0,5,5_0 -7100,6.0,7.0,47.0,120,22,71,0.0,5519,0.0,0.0,200.0,0.0,2.0,4.0,1.0,3.0,2.0,2962.4619407103546,3380.0,0.0,69822.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,34911.0,5,0,5,5_0 -7101,2.0,13.0,47.0,112,62,50,0.0,5520,0.0,320.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2429.0428730961457,1560.0,0.0,38264.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15305.6,2,0,2_0,2_1 -7102,5.0,23.0,48.0,111,46,50,0.0,5521,0.0,100.0,0.0,596.0,2.0,7.0,1.0,3.0,2.0,2025.0557901222408,1042.0,0.0,36475.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,18237.5,3,0,3_0,3_0 -7103,2.0,5.0,45.0,111,48,44,0.0,5522,0.0,80.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3396.92395965185,1563.0,0.0,38640.0,1,2,8,6.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,16800.0,2,0,2_0,2_0 -7104,5.0,5.0,44.0,112,21,50,0.0,5523,0.0,420.0,300.0,0.0,2.0,4.0,2.0,4.0,2.3,2757.4233448408586,3121.0,0.0,62662.0,1,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27244.34782608696,4,0,4_0,4_1 -7105,0.0,7.0,24.0,111,63,42,2.0,5524,0.0,120.0,0.0,433.0,2.0,3.0,0.0,2.0,1.5,2139.3289827837707,2080.0,5000.0,29060.0,1,3,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,19373.333333333332,3,0,3_1,3_0 -7106,6.0,10.0,29.0,111,62,50,0.0,5525,0.0,500.0,300.0,530.0,2.0,5.0,1.0,3.0,1.8,2217.813133703107,5461.0,0.0,45413.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,25229.444444444445,4,0,4_0,4_0 -7107,2.0,6.0,57.0,111,47,50,0.0,5526,0.0,450.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1381.3236174472347,0.0,0.0,54716.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,36477.333333333336,5,0,5,5_0 -7108,5.0,5.0,25.0,111,47,31,0.0,5527,0.0,0.0,0.0,501.0,1.0,3.0,1.0,3.0,1.8,6296.548774139847,2536.0,0.0,32998.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,1,0.0,1.0,18332.222222222223,3,0,3_1,3_0 -7109,1.0,1.0,67.0,112,71,50,0.0,5528,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1929.8926404357792,3120.0,0.0,18815.0,5,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12543.333333333334,1,0,1_0,1_1 -7110,1.0,1.0,73.0,111,78,41,1.0,5529,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2051.5332890059653,0.0,11000.0,17095.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,11396.666666666666,1,0,1_0,1_0 -7111,0.0,0.0,85.0,111,78,71,0.0,553,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4011.8165110645095,0.0,0.0,12720.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12720.0,2,0,2_0,2_0 -7112,0.0,0.0,75.0,300,71,71,1.0,5531,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3582.8691219467464,0.0,9450.0,21559.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14372.666666666666,2,0,2_0,2_1 -7113,4.0,13.0,65.0,111,74,70,0.0,5535,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2874.7189456032906,0.0,0.0,18584.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18584.0,3,0,3_0,3_0 -7114,0.0,7.0,40.0,112,47,31,2.0,5536,0.0,0.0,80.0,0.0,2.0,5.0,3.0,5.0,2.4,1667.2173385270871,0.0,2990.0,47169.0,1,2,9,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19653.75,3,0,3_0,3_0 -7115,3.0,16.0,76.0,112,72,50,0.0,5538,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1262.5559381542141,0.0,0.0,22920.0,5,3,6,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15280.0,2,0,2_0,2_0 -7116,22.0,22.0,79.0,112,72,70,0.0,5539,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3846.5819939363246,0.0,0.0,24981.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16654.0,2,0,2_0,2_0 -7117,8.0,11.0,46.0,111,65,71,0.0,554,0.0,170.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2034.137657322269,2282.0,0.0,43490.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18120.833333333336,3,0,3_0,3_0 -7118,3.0,4.0,46.0,111,54,50,0.0,5542,0.0,0.0,180.0,545.0,2.0,4.0,1.0,3.0,1.8,2342.107978706927,2788.0,0.0,36861.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20478.333333333332,3,0,3_0,3_0 -7119,5.0,23.0,37.0,111,23,31,0.0,5543,0.0,200.0,0.0,0.0,2.0,7.0,4.0,6.0,2.7,2968.554088252411,0.0,0.0,78910.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,29225.925925925923,5,0,5,5_0 -7120,0.0,0.0,63.0,111,78,50,0.0,5544,0.0,0.0,0.0,100.0,0.0,3.0,0.0,1.0,1.0,4980.4608355657465,0.0,0.0,11980.0,5,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11980.0,1,0,1_1,1_0 -7121,11.0,11.0,39.0,111,63,41,0.0,5545,0.0,0.0,0.0,356.0,1.0,3.0,0.0,1.0,1.0,3769.0628909632974,0.0,0.0,8008.0,4,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8008.0,1,0,1_1,1_0 -7122,3.0,3.0,61.0,111,34,20,0.0,5546,0.0,20.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2082.653512778459,3120.0,0.0,67412.0,1,1,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,44941.333333333336,5,0,5,5_0 -7123,2.0,6.0,32.0,111,42,20,0.0,5547,0.0,0.0,150.0,0.0,2.0,4.0,0.0,2.0,1.5,1946.5074416555287,0.0,0.0,38531.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,25687.333333333332,4,0,4_0,4_0 -7124,0.0,14.0,60.0,112,77,60,0.0,5549,0.0,0.0,180.0,0.0,1.0,6.0,0.0,2.0,1.5,2808.5259730206203,4519.0,0.0,41872.0,5,1,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,27914.666666666668,4,0,4_0,4_1 -7125,7.0,8.0,51.0,111,38,10,0.0,555,0.0,250.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,1426.027181262315,2600.0,0.0,101988.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,40795.2,5,0,5,5_0 -7126,9.0,9.0,45.0,111,22,42,0.0,5550,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.3,2811.8731794912537,0.0,0.0,28640.0,1,1,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,12452.17391304348,1,0,1_0,1_0 -7127,3.0,19.0,48.0,111,68,42,0.0,5551,0.0,90.0,0.0,51.0,2.0,4.0,1.0,2.0,1.5,2339.6699362535533,677.0,0.0,17527.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11684.666666666666,1,0,1_1,1_0 -7128,8.0,13.0,60.0,111,78,71,0.0,5552,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3204.8166239818665,1352.0,0.0,16330.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10886.666666666666,1,0,1_0,1_0 -7129,2.0,2.0,76.0,112,78,50,0.0,5553,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,5120.487956288638,1984.0,0.0,26650.0,5,1,8,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,26650.0,4,0,4_0,4_0 -7130,1.0,1.0,65.0,111,75,31,1.0,5554,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2529.6835719402675,4654.0,27500.0,67648.0,5,2,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,45098.666666666664,5,0,5,5_0 -7131,2.0,2.0,46.0,111,47,50,0.0,5555,0.0,180.0,120.0,569.0,2.0,5.0,1.0,3.0,1.8,2678.288844775191,2453.0,0.0,38608.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21448.888888888887,3,0,3_0,3_0 -7132,0.0,0.0,75.0,120,78,71,0.0,5557,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3002.3380355254885,0.0,0.0,14210.0,5,1,0,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9473.333333333334,1,0,1_0,1_0 -7133,4.0,4.0,64.0,111,75,70,0.0,5558,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2123.522848299468,0.0,0.0,86987.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,57991.333333333336,5,0,5,5_0 -7134,10.0,14.0,59.0,112,46,41,0.0,5559,0.0,340.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1704.682250076226,7175.0,0.0,54477.0,1,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,36318.0,5,0,5,5_1 -7135,15.0,15.0,82.0,111,74,10,0.0,556,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3291.520370737281,0.0,0.0,87969.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,87969.0,5,0,5,5_0 -7136,7.0,10.0,43.0,111,46,41,0.0,5560,0.0,0.0,150.0,343.0,2.0,3.0,0.0,2.0,1.5,3337.3947175077074,1561.0,0.0,27130.0,4,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,18086.666666666668,3,0,3_0,3_0 -7137,0.0,11.0,73.0,111,74,12,0.0,5561,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2691.3229809721756,3862.0,0.0,66545.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,44363.333333333336,5,0,5,5_0 -7138,2.0,4.0,67.0,111,74,20,0.0,5562,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1374.4982616453158,4360.0,0.0,57733.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,38488.666666666664,5,0,5,5_0 -7139,4.0,4.0,68.0,212,72,41,0.0,5564,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,5020.209595623541,0.0,0.0,21361.0,5,1,3,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21361.0,3,0,3_0,3_1 -7140,3.0,9.0,29.0,112,21,50,0.0,5565,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,4026.5832612725526,0.0,0.0,47808.0,1,2,5,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,19920.0,3,0,3_1,3_1 -7141,7.0,7.0,79.0,111,78,70,0.0,5566,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2258.751614295578,0.0,0.0,44236.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,29490.666666666668,5,0,5,5_0 -7142,0.0,0.0,40.0,111,63,50,0.0,5567,0.0,0.0,0.0,116.0,1.0,4.0,3.0,5.0,2.4,1874.597113497305,0.0,0.0,26160.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10900.0,1,0,1_1,1_0 -7143,6.0,11.0,43.0,111,34,31,0.0,5568,0.0,0.0,200.0,0.0,2.0,5.0,1.0,3.0,1.8,2374.687394472943,1504.0,0.0,52884.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,29380.0,5,0,5,5_0 -7144,6.0,6.0,39.0,221,65,50,0.0,5570,0.0,700.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1993.8745167414113,1372.0,0.0,35276.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16798.095238095237,2,0,2_0,2_0 -7145,0.0,0.0,50.0,112,68,71,0.0,5572,0.0,0.0,0.0,0.0,2.0,4.0,4.0,6.0,3.5,4271.31995042832,0.0,0.0,45420.0,1,3,10,2.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12977.142857142857,2,0,2_1,2_0 -7146,4.0,7.0,25.0,111,67,71,0.0,5573,0.0,3.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3557.1893641431066,0.0,0.0,34311.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,16338.571428571428,2,0,2_1,2_0 -7147,2.0,8.0,41.0,111,22,41,0.0,5576,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,3554.292934146536,0.0,0.0,40616.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,40616.0,5,0,5,5_0 -7148,3.0,5.0,77.0,111,74,20,0.0,5578,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1381.0030618214741,2048.0,0.0,45300.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,30200.0,5,0,5,5_0 -7149,0.0,1.0,48.0,112,13,10,2.0,5579,0.0,150.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,998.9318002659022,0.0,27000.0,58679.0,1,1,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24449.583333333336,4,0,4_0,4_1 -7150,0.0,11.0,21.0,111,84,42,0.0,558,0.0,0.0,250.0,249.0,0.0,2.0,0.0,1.0,1.0,3313.0905557732876,0.0,0.0,20193.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,20193.0,3,0,3_1,3_0 -7151,5.0,7.0,46.0,300,64,71,0.0,5581,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1200.5480798547803,0.0,0.0,31501.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13696.08695652174,2,0,2_0,2_1 -7152,0.0,4.0,29.0,111,63,43,0.0,5582,0.0,0.0,0.0,16.0,1.0,3.0,0.0,1.0,1.0,3067.0921257477858,0.0,0.0,15411.0,4,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,15411.0,2,0,2_1,2_0 -7153,5.0,13.0,38.0,300,35,31,0.0,5583,0.0,72.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2654.0381034147945,2340.0,0.0,45516.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,30344.0,5,0,5,5_1 -7154,0.0,1.0,42.0,111,54,71,1.0,5584,0.0,500.0,0.0,292.0,1.0,3.0,1.0,2.0,1.3,2772.0168035850425,3484.0,16197.0,19240.0,1,3,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14800.0,2,0,2_1,2_0 -7155,2.0,5.0,34.0,111,38,12,0.0,5585,0.0,0.0,0.0,1200.0,2.0,3.0,1.0,3.0,1.8,2413.2996231178226,1041.0,0.0,58266.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,32370.0,5,0,5,5_0 -7156,10.0,10.0,62.0,300,75,70,0.0,5586,0.0,0.0,0.0,203.0,0.0,4.0,0.0,1.0,1.0,1612.8634797626908,2600.0,0.0,13293.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13293.0,2,0,2_0,2_1 -7157,12.0,13.0,52.0,111,47,70,0.0,559,0.0,180.0,200.0,0.0,2.0,5.0,1.0,3.0,2.0,1998.4771375905602,2132.0,0.0,50910.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,25455.0,4,0,4_0,4_0 -7158,0.0,0.0,48.0,111,85,70,0.0,5591,0.0,0.0,0.0,40.0,0.0,4.0,3.0,4.0,2.3,2099.959548057127,0.0,0.0,23130.0,7,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10056.521739130436,1,0,1_1,1_0 -7159,6.0,6.0,78.0,111,77,20,0.0,5592,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3411.821014309978,2793.0,0.0,30649.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20432.666666666668,3,0,3_0,3_0 -7160,1.0,2.0,36.0,111,52,50,0.0,5593,0.0,50.0,40.0,348.0,1.0,4.0,3.0,4.0,2.3,1422.9612477218016,1561.0,0.0,22485.0,1,3,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,9776.08695652174,1,0,1_1,1_0 -7161,8.0,9.0,69.0,111,75,70,0.0,5594,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2423.113168687602,0.0,0.0,19616.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19616.0,3,0,3_0,3_0 -7162,0.0,0.0,79.0,111,77,50,0.0,5596,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2910.853965003511,0.0,0.0,14402.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14402.0,2,0,2_0,2_0 -7163,6.0,11.0,40.0,111,47,12,0.0,5597,0.0,0.0,16.0,0.0,2.0,5.0,3.0,5.0,2.4,1432.7090273194995,7254.0,0.0,45849.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,19103.75,3,0,3_0,3_0 -7164,2.0,9.0,31.0,300,43,33,0.0,5598,0.0,1010.0,120.0,0.0,2.0,3.0,2.0,4.0,2.1,2830.8815562673585,4472.0,0.0,49386.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23517.142857142855,4,0,4_0,4_1 -7165,2.0,10.0,35.0,111,43,20,0.0,5599,0.0,240.0,70.0,0.0,2.0,5.0,3.0,5.0,2.4,1655.9307631412453,1560.0,0.0,52475.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21864.583333333336,4,0,4_0,4_0 -7166,20.0,20.0,66.0,112,72,60,0.0,56,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2665.46899130069,781.0,0.0,27617.0,5,1,10,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,18411.333333333332,3,0,3_0,3_0 -7167,11.0,11.0,61.0,120,75,41,0.0,560,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2947.186622899084,0.0,0.0,37220.0,5,1,0,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,37220.0,5,0,5,5_0 -7168,15.0,20.0,62.0,120,78,50,0.0,5601,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1194.9549137531803,0.0,0.0,40780.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27186.666666666668,4,0,4_0,4_1 -7169,6.0,6.0,59.0,111,23,50,0.0,5604,0.0,160.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1828.0676938587476,0.0,0.0,92221.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,61480.666666666664,5,0,5,5_0 -7170,6.0,10.0,50.0,111,46,41,0.0,5605,0.0,240.0,0.0,982.0,1.0,4.0,0.0,3.0,2.0,3248.8971389922967,0.0,0.0,77110.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,38555.0,5,0,5,5_0 -7171,3.0,4.0,52.0,221,53,42,0.0,5609,0.0,300.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2738.967681792231,2007.0,0.0,46375.0,1,2,1,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,30916.666666666668,5,0,5,5_0 -7172,9.0,9.0,51.0,111,56,20,0.0,5610,0.0,0.0,15.0,0.0,1.0,1.0,0.0,1.0,1.0,3273.3210320653434,2184.0,0.0,7273.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,7273.0,1,0,1_1,1_0 -7173,6.0,16.0,60.0,112,62,50,0.0,5613,0.0,350.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2658.2219693787706,0.0,0.0,27250.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18166.666666666668,3,0,3_0,3_1 -7174,5.0,5.0,76.0,111,72,70,0.0,5614,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3638.785157672185,1040.0,0.0,25842.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17228.0,3,0,3_0,3_0 -7175,15.0,21.0,86.0,111,77,70,0.0,5617,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2307.998179965651,0.0,0.0,14060.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14060.0,2,0,2_0,2_0 -7176,2.0,3.0,49.0,112,63,50,0.0,5618,0.0,216.0,0.0,0.0,3.0,7.0,2.0,4.0,2.3,1378.7898092920038,2986.0,0.0,43620.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18965.217391304348,3,0,3_0,3_1 -7177,4.0,4.0,32.0,111,22,50,0.0,5619,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3090.541472955371,0.0,0.0,32028.0,1,1,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,15251.42857142857,2,0,2_0,2_0 -7178,0.0,0.0,99.0,111,77,71,0.0,562,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3177.217872989696,0.0,0.0,15306.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15306.0,2,0,2_0,2_0 -7179,3.0,3.0,38.0,111,85,42,0.0,5620,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2955.430535726177,4516.0,0.0,17526.0,7,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,8345.714285714286,1,0,1_0,1_0 -7180,0.0,0.0,70.0,400,78,71,0.0,5621,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3164.2509584886006,0.0,0.0,16088.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16088.0,2,0,2_0,2_1 -7181,3.0,25.0,68.0,111,86,50,0.0,5622,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,1617.9168895878931,0.0,0.0,26600.0,5,2,7,6.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,13300.0,2,0,2_1,2_0 -7182,9.0,9.0,65.0,112,72,50,0.0,5624,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2844.632544178673,0.0,0.0,23901.0,5,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,15934.0,2,0,2_0,2_0 -7183,5.0,5.0,41.0,112,62,71,0.0,5626,0.0,500.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,5974.6281912383465,1811.0,0.0,46111.0,1,2,8,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25617.222222222223,4,0,4_0,4_0 -7184,1.0,2.0,51.0,111,45,31,0.0,5629,0.0,600.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,3357.7837947109265,3900.0,0.0,60641.0,1,2,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,40427.333333333336,5,0,5,5_0 -7185,0.0,0.0,36.0,111,45,12,0.0,563,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,3540.3621341596236,0.0,0.0,41492.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27661.333333333332,4,0,4_0,4_0 -7186,2.0,2.0,81.0,111,75,50,0.0,5630,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3149.727739788323,0.0,0.0,26601.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17734.0,3,0,3_0,3_0 -7187,0.0,0.0,46.0,111,45,20,0.0,5631,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2358.2665131178455,0.0,0.0,26963.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26963.0,4,0,4_0,4_0 -7188,0.0,0.0,88.0,111,75,33,0.0,5632,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4311.4366357203635,0.0,0.0,46965.0,5,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,46965.0,5,0,5,5_0 -7189,2.0,15.0,27.0,111,52,50,0.0,5634,0.0,60.0,0.0,215.0,2.0,3.0,1.0,3.0,1.8,2712.387512312743,0.0,0.0,29199.0,1,3,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,1,1.0,2.0,16221.666666666666,2,0,2_1,2_0 -7190,19.0,19.0,87.0,111,77,60,0.0,5635,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2783.969778591098,0.0,0.0,22196.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22196.0,4,0,4_0,4_0 -7191,0.0,0.0,76.0,112,77,70,0.0,5636,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,5031.073223761131,0.0,0.0,18654.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18654.0,3,0,3_0,3_1 -7192,0.0,9.0,31.0,111,37,31,0.0,5637,0.0,220.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2531.727107477863,0.0,0.0,29205.0,1,3,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,1,0.0,2.0,16225.0,2,0,2_1,2_0 -7193,1.0,9.0,29.0,111,38,20,0.0,5638,0.0,0.0,1700.0,0.0,2.0,5.0,1.0,3.0,1.8,1635.5220868138413,15340.0,0.0,70508.0,1,3,9,7.0,4,3.0,1.0,1.0,0,0,0,1,0,0,3.0,0.0,39171.11111111111,5,0,5,5_0 -7194,1.0,1.0,78.0,111,74,10,1.0,5639,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1514.0441325781662,2735.0,30000.0,77118.0,5,1,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,77118.0,5,0,5,5_0 -7195,13.0,13.0,71.0,221,77,71,0.0,564,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3124.814867795623,1043.0,0.0,16089.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16089.0,2,0,2_0,2_0 -7196,0.0,8.0,30.0,111,43,33,2.0,5640,0.0,199998.0,0.0,730.0,2.0,4.0,2.0,4.0,2.1,3103.4848134810277,2654.0,3400.0,43183.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,20563.333333333332,3,0,3_1,3_0 -7197,3.0,6.0,44.0,300,67,71,0.0,5642,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3210.7697167612937,0.0,0.0,18158.0,1,2,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,1,0.0,2.0,8646.666666666666,1,0,1_1,1_1 -7198,1.0,1.0,67.0,112,75,60,0.0,5643,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2185.9563189383116,0.0,0.0,35743.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23828.666666666668,4,0,4_0,4_1 -7199,0.0,0.0,66.0,111,78,70,0.0,5644,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1375.6899127773663,0.0,0.0,13864.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13864.0,2,0,2_0,2_0 -7200,0.0,0.0,62.0,300,75,50,0.0,5645,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1422.760187116906,0.0,0.0,23928.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23928.0,4,0,4_0,4_1 -7201,12.0,22.0,46.0,112,46,42,0.0,5647,0.0,270.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,7554.913479646873,3125.0,0.0,22085.0,1,3,9,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22085.0,4,0,4_0,4_0 -7202,1.0,4.0,35.0,112,37,12,2.0,5649,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,1338.0188269740559,1560.0,8000.0,41931.0,1,2,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19967.142857142855,3,0,3_0,3_0 -7203,0.0,3.0,19.0,111,84,41,0.0,565,0.0,400.0,0.0,326.0,0.0,1.0,0.0,1.0,1.0,3651.5189388937983,0.0,0.0,5111.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,5111.0,1,0,1_0,1_0 -7204,17.0,17.0,77.0,111,78,70,0.0,5650,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2640.547995366183,0.0,0.0,12640.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12640.0,2,0,2_0,2_0 -7205,1.0,1.0,68.0,112,72,50,1.0,5651,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2522.0361625544533,2444.0,26000.0,59511.0,5,1,7,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,59511.0,5,0,5,5_1 -7206,12.0,12.0,76.0,120,77,60,0.0,5652,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1307.5609246931085,2166.0,0.0,31104.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20736.0,3,0,3_0,3_1 -7207,4.0,4.0,71.0,111,75,44,0.0,5654,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2238.3537195670456,0.0,0.0,34216.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,22810.666666666668,4,0,4_0,4_0 -7208,10.0,10.0,78.0,112,78,71,0.0,5655,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2795.932153533289,0.0,0.0,30321.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20214.0,3,0,3_0,3_1 -7209,0.0,0.0,49.0,111,43,33,0.0,5656,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3559.1674706762315,0.0,0.0,44470.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21176.190476190477,3,0,3_0,3_0 -7210,9.0,10.0,52.0,111,33,12,0.0,5657,0.0,0.0,0.0,0.0,3.0,6.0,3.0,5.0,3.0,2120.6986669390367,1586.0,0.0,83304.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27768.0,4,0,4_0,4_0 -7211,6.0,22.0,54.0,112,45,71,0.0,566,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2691.626459977362,0.0,0.0,11318.0,1,1,6,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,11318.0,1,0,1_0,1_1 -7212,8.0,9.0,59.0,111,46,50,0.0,5661,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1249.9280146079575,0.0,0.0,33943.0,1,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22628.666666666668,4,0,4_0,4_0 -7213,0.0,0.0,27.0,111,84,10,0.0,5662,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3451.33405581756,0.0,0.0,27939.0,3,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,27939.0,4,0,4_1,4_0 -7214,0.0,0.0,48.0,111,52,71,0.0,5663,0.0,0.0,0.0,428.0,1.0,3.0,2.0,3.0,2.0,2771.590995577239,0.0,0.0,20372.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10186.0,1,0,1_0,1_0 -7215,0.0,0.0,82.0,112,77,41,0.0,5664,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,5882.840479033101,0.0,0.0,14680.0,5,4,8,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14680.0,2,0,2_0,2_0 -7216,7.0,9.0,30.0,400,63,50,0.0,5667,0.0,1300.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2208.1802526274337,2883.0,0.0,34722.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,16534.285714285714,2,0,2_0,2_1 -7217,6.0,10.0,51.0,111,62,60,0.0,5669,0.0,350.0,0.0,299.0,1.0,3.0,1.0,2.0,1.5,2328.8312255690616,1638.0,0.0,20347.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,13564.666666666666,2,0,2_0,2_0 -7218,11.0,11.0,34.0,111,47,31,0.0,567,0.0,600.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3358.9357363027266,1560.0,0.0,34460.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,19144.444444444445,3,0,3_0,3_0 -7219,0.0,0.0,19.0,111,84,41,0.0,5670,0.0,0.0,0.0,256.0,0.0,1.0,0.0,1.0,1.0,3369.4586453025863,0.0,0.0,7132.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7132.0,1,0,1_1,1_0 -7220,0.0,25.0,32.0,112,68,50,2.0,5671,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2857.4004875236724,1040.0,150.0,13169.0,4,3,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13169.0,2,0,2_0,2_1 -7221,1.0,2.0,47.0,111,56,50,2.0,5672,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2650.5322214780663,0.0,60000.0,101785.0,1,2,4,4.0,4,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,50892.5,5,0,5,5_0 -7222,1.0,15.0,46.0,120,62,43,2.0,5673,0.0,0.0,100.0,163.0,1.0,4.0,2.0,4.0,2.1,6933.704530528932,520.0,100.0,21751.0,1,3,0,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,10357.619047619048,1,0,1_1,1_0 -7223,2.0,14.0,52.0,112,37,31,0.0,5674,0.0,320.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1539.006006369164,4420.0,0.0,54239.0,1,1,10,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,54239.0,5,0,5,5_0 -7224,4.0,16.0,50.0,111,37,41,0.0,5675,0.0,250.0,0.0,0.0,1.0,8.0,1.0,2.0,1.5,1873.3636655110372,2028.0,0.0,29447.0,1,1,8,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,19631.333333333332,3,0,3_0,3_0 -7225,2.0,7.0,78.0,112,74,44,0.0,5677,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2471.3191516971465,1115.0,0.0,33860.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22573.333333333332,4,0,4_0,4_0 -7226,9.0,9.0,68.0,221,78,71,0.0,5678,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2719.8798383980607,0.0,0.0,26773.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17848.666666666668,3,0,3_0,3_0 -7227,0.0,14.0,26.0,300,11,31,0.0,5679,0.0,200.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3145.011567124568,0.0,0.0,9183.0,1,3,0,0.0,1,2.0,1.0,1.0,1,0,0,0,0,1,0.0,2.0,9183.0,1,0,1_1,1_1 -7228,2.0,2.0,35.0,112,55,60,0.0,568,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,1948.7828879176998,3900.0,0.0,38318.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18246.666666666664,3,0,3_0,3_1 -7229,0.0,0.0,23.0,111,63,50,0.0,5680,0.0,0.0,0.0,390.0,1.0,2.0,0.0,1.0,1.0,2674.845577213513,0.0,0.0,36794.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,36794.0,5,0,5,5_0 -7230,13.0,19.0,75.0,111,78,50,0.0,5684,0.0,0.0,0.0,374.0,0.0,4.0,0.0,2.0,1.5,2122.4567379164796,0.0,0.0,18924.0,5,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12616.0,2,0,2_0,2_0 -7231,8.0,13.0,78.0,300,77,71,0.0,5686,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2691.7877657789613,0.0,0.0,12490.0,5,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,12490.0,1,0,1_1,1_0 -7232,0.0,5.0,38.0,120,54,60,0.0,5687,0.0,0.0,900.0,0.0,2.0,6.0,3.0,5.0,2.6,1910.5714818312542,0.0,0.0,41752.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,16058.461538461537,2,0,2_0,2_1 -7233,3.0,7.0,27.0,111,55,43,0.0,5688,0.0,100.0,50.0,379.0,2.0,3.0,0.0,2.0,1.5,3453.0710712636865,0.0,0.0,30828.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,20552.0,3,0,3_0,3_0 -7234,5.0,9.0,68.0,111,75,31,0.0,5689,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2994.5565575935393,0.0,0.0,23147.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23147.0,4,0,4_0,4_0 -7235,13.0,13.0,42.0,211,56,60,0.0,569,0.0,0.0,5.0,0.0,1.0,4.0,0.0,1.0,1.0,2945.879929894127,0.0,0.0,20379.0,2,1,3,3.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,20379.0,3,0,3_0,3_0 -7236,4.0,13.0,51.0,111,63,50,0.0,5692,0.0,0.0,400.0,0.0,2.0,5.0,0.0,2.0,1.5,1453.4852100618623,2600.0,0.0,40593.0,1,2,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,27062.0,4,0,4_0,4_0 -7237,5.0,14.0,35.0,111,56,50,0.0,5694,0.0,50.0,0.0,389.0,2.0,4.0,3.0,5.0,2.4,2251.6372687691733,3120.0,0.0,37839.0,1,3,4,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,15766.25,2,0,2_1,2_0 -7238,11.0,11.0,39.0,112,47,50,0.0,5697,0.0,70.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2465.4569919532587,2081.0,0.0,40721.0,1,1,10,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,19390.95238095238,3,0,3_0,3_1 -7239,19.0,19.0,68.0,111,78,50,0.0,5699,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1811.7716779630016,1717.0,0.0,20986.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13990.666666666666,2,0,2_0,2_0 -7240,17.0,17.0,54.0,112,47,50,0.0,5700,0.0,501.0,80.0,0.0,4.0,4.0,1.0,5.0,2.8,1003.4050575115458,2808.0,0.0,97464.0,1,1,10,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,34808.57142857143,5,0,5,5_1 -7241,4.0,5.0,52.0,111,43,33,0.0,5701,0.0,400.0,0.0,252.0,1.0,2.0,0.0,1.0,1.0,3044.750127291508,1294.0,0.0,27487.0,1,3,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,27487.0,4,0,4_0,4_0 -7242,1.0,13.0,21.0,111,62,43,0.0,5702,0.0,99999.0,0.0,0.0,1.0,1.0,2.0,4.0,2.1,3659.999987178252,1040.0,0.0,30536.0,1,3,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14540.95238095238,2,0,2_1,2_0 -7243,1.0,15.0,22.0,111,46,31,2.0,5703,0.0,400.0,0.0,165.0,1.0,2.0,0.0,2.0,1.5,3739.448061075515,0.0,1000.0,10454.0,3,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,6969.333333333333,1,0,1_1,1_0 -7244,0.0,0.0,66.0,111,78,71,0.0,5704,0.0,0.0,0.0,290.0,0.0,3.0,0.0,2.0,1.5,4547.348584907484,0.0,0.0,16154.0,5,3,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10769.333333333334,1,0,1_1,1_0 -7245,5.0,13.0,82.0,111,77,70,0.0,5706,0.0,0.0,0.0,403.0,0.0,4.0,0.0,1.0,1.0,3024.9069822391975,1470.0,0.0,33351.0,5,3,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,0,3.0,0.0,33351.0,5,0,5,5_0 -7246,8.0,8.0,45.0,111,22,31,0.0,5707,0.0,0.0,500.0,0.0,2.0,6.0,3.0,5.0,2.4,2730.5450235257276,0.0,0.0,52510.0,1,2,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,2.0,0.0,21879.166666666668,4,0,4_0,4_0 -7247,0.0,0.0,55.0,111,78,71,0.0,5708,0.0,0.0,0.0,20.0,0.0,2.0,0.0,1.0,1.0,2853.5284647745634,0.0,0.0,12938.0,7,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12938.0,2,0,2_1,2_0 -7248,5.0,10.0,51.0,111,48,50,0.0,571,0.0,300.0,150.0,0.0,3.0,4.0,1.0,3.0,2.0,1208.6158930962017,4160.0,0.0,39325.0,1,1,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,19662.5,3,0,3_0,3_0 -7249,2.0,2.0,63.0,111,75,50,0.0,5710,0.0,360.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2010.4452376357046,2975.0,0.0,76856.0,5,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,38428.0,5,0,5,5_0 -7250,0.0,0.0,87.0,111,86,71,0.0,5711,0.0,0.0,0.0,295.0,0.0,3.0,0.0,1.0,1.0,3465.528000583284,0.0,0.0,19796.0,6,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,19796.0,3,0,3_1,3_0 -7251,13.0,13.0,62.0,111,75,10,0.0,5712,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1575.315192642273,1554.0,0.0,63645.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,42430.0,5,0,5,5_0 -7252,0.0,20.0,32.0,111,85,50,0.0,5713,0.0,0.0,0.0,271.0,0.0,3.0,0.0,2.0,1.5,4000.928336326145,0.0,0.0,14860.0,4,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9906.666666666666,1,0,1_1,1_0 -7253,8.0,11.0,40.0,111,63,50,0.0,5714,0.0,200.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3285.743939561304,0.0,0.0,22583.0,1,2,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22583.0,4,0,4_0,4_0 -7254,3.0,12.0,36.0,221,67,50,0.0,5716,0.0,300.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4603.753751293806,1300.0,0.0,18999.0,1,4,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18999.0,3,0,3_0,3_0 -7255,12.0,12.0,50.0,111,22,12,0.0,5717,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1888.9395987101564,0.0,0.0,8082.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,3232.8,1,0,1_0,1_0 -7256,0.0,0.0,51.0,111,46,70,0.0,5718,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2715.56843342661,0.0,0.0,23720.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23720.0,4,0,4_0,4_0 -7257,0.0,0.0,24.0,111,56,71,0.0,572,0.0,0.0,0.0,500.0,2.0,3.0,1.0,3.0,1.8,4742.649298966471,0.0,0.0,35404.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,19668.888888888887,3,0,3_1,3_0 -7258,0.0,0.0,72.0,111,86,41,0.0,5720,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3134.01524047767,0.0,0.0,8440.0,7,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8440.0,1,0,1_0,1_0 -7259,33.0,33.0,56.0,111,52,70,0.0,5721,0.0,0.0,200.0,358.0,1.0,5.0,0.0,1.0,1.0,3115.1998622844526,0.0,0.0,17936.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,17936.0,3,0,3_0,3_0 -7260,2.0,2.0,56.0,112,48,41,0.0,5724,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1794.3594219159625,0.0,0.0,38816.0,1,1,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,25877.333333333332,4,0,4_0,4_0 -7261,0.0,0.0,71.0,111,77,60,0.0,5728,0.0,0.0,0.0,458.0,1.0,3.0,0.0,2.0,1.5,3971.696989941325,0.0,0.0,22392.0,5,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14928.0,2,0,2_1,2_0 -7262,15.0,15.0,36.0,111,64,43,0.0,5729,0.0,30.0,100.0,0.0,2.0,5.0,1.0,3.0,1.8,3098.4970254426826,1716.0,0.0,35546.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,19747.777777777777,3,0,3_0,3_0 -7263,2.0,7.0,47.0,112,67,50,0.0,573,0.0,600.0,99999.0,0.0,2.0,3.0,1.0,3.0,2.0,1558.1031284520875,0.0,0.0,60950.0,1,2,10,2.0,4,4.0,0.0,0.0,0,1,0,0,0,0,3.0,1.0,30475.0,5,0,5,5_0 -7264,0.0,3.0,35.0,111,85,71,0.0,5731,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,1.9,1782.7296443814182,1040.0,0.0,17512.0,6,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,9216.842105263158,1,0,1_1,1_0 -7265,1.0,17.0,53.0,112,47,50,0.0,5732,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,3.0,871.3599765627708,3184.0,0.0,22091.0,1,2,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,7363.666666666667,1,0,1_1,1_1 -7266,11.0,11.0,86.0,111,86,70,0.0,5737,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2213.950337028688,0.0,0.0,29700.0,5,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29700.0,5,0,5,5_0 -7267,5.0,7.0,56.0,112,48,42,0.0,5738,0.0,660.0,300.0,0.0,3.0,7.0,1.0,3.0,2.0,2031.5067978201193,5273.0,0.0,58631.0,1,1,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,29315.5,5,0,5,5_1 -7268,4.0,5.0,56.0,111,42,31,0.0,5739,0.0,0.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,2626.7919101133866,0.0,0.0,24739.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24739.0,4,0,4_0,4_0 -7269,11.0,11.0,56.0,300,67,70,0.0,574,0.0,300.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1619.6595330408056,0.0,0.0,32077.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21384.666666666668,3,0,3_0,3_1 -7270,4.0,5.0,64.0,111,75,31,0.0,5741,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2073.3455689692164,0.0,0.0,29855.0,5,2,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,29855.0,5,0,5,5_0 -7271,1.0,4.0,41.0,111,47,20,0.0,5742,0.0,50.0,40.0,0.0,2.0,5.0,2.0,4.0,2.1,1894.1801640003252,0.0,0.0,45750.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21785.714285714286,4,0,4_0,4_0 -7272,2.0,15.0,24.0,111,47,20,0.0,5744,0.0,465.0,0.0,613.0,2.0,3.0,0.0,3.0,2.0,2248.7604237126793,2080.0,0.0,30031.0,1,3,8,7.0,5,3.0,1.0,1.0,0,0,0,1,0,0,1.0,2.0,15015.5,2,0,2_0,2_0 -7273,11.0,21.0,65.0,400,77,60,0.0,5745,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2117.2276948418667,364.0,0.0,35958.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23972.0,4,0,4_0,4_1 -7274,6.0,6.0,46.0,221,46,41,0.0,5747,0.0,60.0,25.0,0.0,2.0,4.0,1.0,3.0,2.0,3613.763258952897,0.0,0.0,69636.0,1,2,1,2.0,4,3.0,1.0,1.0,0,1,0,0,0,0,1.0,2.0,34818.0,5,0,5,5_0 -7275,8.0,11.0,30.0,111,38,10,0.0,5748,0.0,0.0,0.0,925.0,1.0,3.0,0.0,1.0,1.0,2586.1543795732614,0.0,0.0,50876.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,50876.0,5,0,5,5_0 -7276,0.0,0.0,51.0,111,56,20,0.0,5749,0.0,0.0,0.0,404.0,1.0,3.0,1.0,3.0,1.8,3114.340648041459,0.0,0.0,31810.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17672.222222222223,3,0,3_0,3_0 -7277,4.0,10.0,60.0,111,77,50,0.0,575,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1563.298483465142,2085.0,0.0,30567.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,20378.0,3,0,3_0,3_0 -7278,0.0,6.0,29.0,111,43,20,0.0,5752,0.0,100.0,0.0,321.0,1.0,2.0,0.0,1.0,1.0,3199.435663107876,0.0,0.0,17862.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,17862.0,3,0,3_1,3_0 -7279,7.0,7.0,39.0,111,31,10,0.0,5753,0.0,99999.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,3105.259465477699,0.0,0.0,311758.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,148456.19047619047,5,0,5,5_0 -7280,1.0,16.0,55.0,111,55,44,2.0,5754,0.0,0.0,0.0,268.0,1.0,1.0,0.0,1.0,1.0,3184.6060364423524,0.0,2000.0,14435.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14435.0,2,0,2_1,2_0 -7281,14.0,14.0,74.0,112,75,43,0.0,5755,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1669.594653653632,2083.0,0.0,44196.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,29464.0,5,0,5,5_1 -7282,7.0,10.0,51.0,111,42,42,0.0,5757,0.0,0.0,0.0,0.0,4.0,5.0,3.0,5.0,3.0,2066.3721096644135,2884.0,0.0,58050.0,1,4,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,19350.0,3,0,3_0,3_0 -7283,1.0,1.0,64.0,111,74,42,2.0,5760,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1713.5711956293194,3484.0,16000.0,47862.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,47862.0,5,0,5,5_0 -7284,9.0,11.0,66.0,111,78,50,0.0,5762,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1151.4259369538393,0.0,0.0,33962.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,22641.333333333332,4,0,4_0,4_0 -7285,1.0,11.0,60.0,221,54,50,2.0,5765,0.0,600.0,0.0,0.0,2.0,5.0,2.0,3.0,2.0,2284.961719570432,5200.0,9700.0,36709.0,1,1,1,2.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18354.5,3,0,3_0,3_0 -7286,13.0,15.0,57.0,300,74,41,0.0,5768,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2759.039084580612,0.0,0.0,36914.0,5,1,0,0.0,3,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,24609.333333333332,4,0,4_0,4_1 -7287,0.0,0.0,81.0,120,71,71,0.0,5769,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4103.005441554829,0.0,0.0,8250.0,5,4,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,8250.0,1,0,1_0,1_0 -7288,3.0,6.0,54.0,111,63,41,0.0,5770,0.0,0.0,200.0,0.0,2.0,6.0,0.0,2.0,1.5,1659.6469345458552,0.0,0.0,37499.0,1,2,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24999.333333333332,4,0,4_0,4_0 -7289,3.0,6.0,62.0,111,75,42,0.0,5771,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1414.5643147165445,0.0,0.0,44371.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,29580.666666666668,5,0,5,5_0 -7290,2.0,20.0,26.0,112,63,50,0.0,5773,0.0,500.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2579.152219615838,2080.0,0.0,41820.0,1,3,10,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27880.0,4,0,4_0,4_0 -7291,0.0,0.0,53.0,111,68,70,0.0,5774,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,967.5454947795001,0.0,0.0,34792.0,1,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17396.0,3,0,3_1,3_0 -7292,0.0,0.0,71.0,111,75,33,0.0,5775,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3241.700853388622,0.0,0.0,40460.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,40460.0,5,0,5,5_0 -7293,4.0,5.0,32.0,111,43,33,0.0,5776,0.0,600.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2769.3940020937753,0.0,0.0,26204.0,1,3,5,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,26204.0,4,0,4_0,4_0 -7294,1.0,4.0,32.0,300,48,44,2.0,578,0.0,550.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2557.9688627917503,11204.0,10000.0,31467.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,14984.285714285714,2,0,2_1,2_1 -7295,0.0,0.0,83.0,211,75,50,0.0,5780,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,989.4990559385787,0.0,0.0,21681.0,5,1,3,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14454.0,2,0,2_0,2_0 -7296,4.0,10.0,45.0,112,31,10,0.0,5782,0.0,56.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1443.1419571101917,3979.0,0.0,61531.0,1,2,7,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,29300.47619047619,5,0,5,5_1 -7297,5.0,5.0,78.0,300,75,50,0.0,5783,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,810.3347901642567,0.0,0.0,40010.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26673.333333333332,4,0,4_0,4_1 -7298,0.0,10.0,56.0,111,35,60,0.0,5784,0.0,0.0,100.0,0.0,1.0,2.0,0.0,2.0,1.5,2671.866568060387,0.0,0.0,25833.0,1,2,10,8.0,5,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,17222.0,3,0,3_0,3_0 -7299,22.0,22.0,66.0,111,74,50,0.0,5786,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2571.4407528809447,0.0,0.0,19518.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,13012.0,2,0,2_0,2_0 -7300,2.0,2.0,29.0,111,31,10,0.0,5787,0.0,300.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3395.278692260091,0.0,0.0,97151.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,64767.333333333336,5,0,5,5_0 -7301,9.0,13.0,58.0,120,63,50,0.0,5788,0.0,200.0,400.0,0.0,4.0,5.0,2.0,4.0,2.5,1559.8802939108966,5306.0,0.0,70909.0,1,1,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,2.0,2.0,28363.6,4,0,4_0,4_1 -7302,3.0,3.0,70.0,111,74,30,0.0,579,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1586.3673284432698,0.0,0.0,62239.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,62239.0,5,0,5,5_0 -7303,0.0,0.0,86.0,111,77,70,0.0,5790,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3463.0794780381816,0.0,0.0,11796.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11796.0,1,0,1_0,1_0 -7304,12.0,12.0,82.0,400,78,71,0.0,5791,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3128.133846460367,2116.0,0.0,17787.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17787.0,3,0,3_0,3_1 -7305,1.0,5.0,37.0,112,37,20,2.0,5792,0.0,500.0,0.0,0.0,1.0,7.0,4.0,6.0,2.7,1101.8568568686176,0.0,6500.0,38613.0,1,2,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,14301.11111111111,2,0,2_1,2_0 -7306,9.0,9.0,30.0,111,46,31,0.0,5793,0.0,400.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2044.286738062965,3381.0,0.0,19500.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19500.0,3,0,3_0,3_0 -7307,17.0,22.0,62.0,111,63,71,0.0,5795,0.0,0.0,0.0,480.0,2.0,5.0,4.0,6.0,3.3,2740.891136107437,0.0,0.0,34154.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,10349.69696969697,1,0,1_1,1_0 -7308,6.0,7.0,52.0,111,42,20,0.0,5796,0.0,199998.0,0.0,0.0,3.0,6.0,3.0,5.0,2.8,2606.3628062322696,1989.0,0.0,61413.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21933.214285714286,4,0,4_0,4_0 -7309,0.0,1.0,44.0,112,34,31,2.0,5797,0.0,50.0,0.0,0.0,1.0,7.0,3.0,4.0,2.3,1531.4655238909663,0.0,21700.0,52866.0,1,2,8,1.0,2,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,22985.217391304348,4,0,4_0,4_0 -7310,3.0,3.0,50.0,111,47,42,0.0,5799,0.0,350.0,0.0,410.0,2.0,4.0,0.0,2.0,1.5,1940.5969851516143,0.0,0.0,34946.0,1,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23297.333333333332,4,0,4_0,4_0 -7311,9.0,10.0,59.0,111,75,50,0.0,580,0.0,0.0,100.0,0.0,2.0,6.0,2.0,4.0,2.5,1843.9186712025628,2309.0,0.0,63234.0,5,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,25293.6,4,0,4_0,4_0 -7312,13.0,15.0,44.0,112,52,50,0.0,5801,0.0,450.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1594.1087485640226,0.0,0.0,26428.0,1,4,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13214.0,2,0,2_0,2_1 -7313,0.0,0.0,81.0,112,71,70,0.0,5802,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2953.4594266760455,0.0,0.0,11270.0,5,4,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11270.0,1,0,1_0,1_1 -7314,0.0,0.0,26.0,111,37,31,0.0,5803,0.0,0.0,0.0,430.0,1.0,2.0,0.0,1.0,1.0,3415.2610237086556,0.0,0.0,24825.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24825.0,4,0,4_0,4_0 -7315,6.0,6.0,45.0,111,34,20,0.0,5805,0.0,0.0,150.0,0.0,2.0,4.0,2.0,4.0,2.5,2245.0307521596274,2239.0,0.0,50772.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,20308.8,3,0,3_0,3_0 -7316,4.0,18.0,45.0,111,56,50,0.0,5806,0.0,0.0,0.0,420.0,1.0,5.0,0.0,1.0,1.0,3223.1395974231946,0.0,0.0,17585.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,17585.0,3,0,3_0,3_0 -7317,12.0,13.0,71.0,112,86,70,0.0,5807,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1910.7549648173297,0.0,0.0,15524.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,10349.333333333334,1,0,1_0,1_1 -7318,1.0,14.0,36.0,120,67,71,2.0,581,0.0,0.0,0.0,147.0,2.0,3.0,2.0,4.0,2.1,5319.082326616802,0.0,100.0,21100.0,1,3,0,2.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,10047.619047619048,1,0,1_1,1_0 -7319,3.0,4.0,25.0,111,35,10,0.0,5810,0.0,200.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3447.156281923046,2056.0,0.0,19170.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,19170.0,3,0,3_1,3_0 -7320,10.0,10.0,48.0,112,68,50,0.0,5812,0.0,0.0,60.0,0.0,2.0,6.0,2.0,4.0,2.3,953.3506731250526,1567.0,0.0,37900.0,1,1,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16478.26086956522,2,0,2_0,2_0 -7321,9.0,9.0,33.0,111,47,50,0.0,5813,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2677.053694648728,0.0,0.0,19972.0,1,2,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19972.0,3,0,3_0,3_0 -7322,3.0,3.0,65.0,111,75,20,0.0,5815,0.0,0.0,0.0,0.0,0.0,11.0,0.0,1.0,1.0,1744.6069747726665,0.0,0.0,29110.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29110.0,5,0,5,5_0 -7323,5.0,5.0,67.0,300,74,20,0.0,5816,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1772.979297293349,6484.0,0.0,53780.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,35853.333333333336,5,0,5,5_1 -7324,2.0,2.0,41.0,111,63,71,0.0,5818,0.0,320.0,0.0,410.0,2.0,4.0,2.0,4.0,2.3,3170.2058194204474,5126.0,0.0,42864.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,18636.521739130436,3,0,3_0,3_0 -7325,3.0,6.0,22.0,211,63,50,0.0,582,0.0,200.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2555.1995469385743,3120.0,0.0,28720.0,1,1,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19146.666666666668,3,0,3_0,3_0 -7326,1.0,6.0,55.0,400,63,50,0.0,5821,0.0,200.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1390.8096861040092,3435.0,0.0,31230.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20820.0,3,0,3_0,3_1 -7327,5.0,5.0,63.0,112,75,50,0.0,5823,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2053.984837226906,1664.0,0.0,21494.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21494.0,3,0,3_0,3_1 -7328,0.0,0.0,48.0,211,46,10,0.0,5825,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.5,1263.6417793388694,785.0,0.0,54014.0,1,1,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21605.6,3,0,3_0,3_0 -7329,0.0,9.0,33.0,112,38,12,0.0,5826,0.0,100.0,3.0,0.0,2.0,4.0,0.0,2.0,1.5,2218.7515721976206,0.0,0.0,60934.0,1,4,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,40622.666666666664,5,0,5,5_1 -7330,3.0,3.0,41.0,111,56,50,0.0,5828,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1436.8839547461127,2886.0,0.0,11820.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,6566.666666666666,1,0,1_1,1_0 -7331,0.0,15.0,35.0,111,22,50,0.0,5831,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,3006.545391303482,2080.0,0.0,15200.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11692.307692307691,1,0,1_1,1_0 -7332,9.0,9.0,77.0,112,75,71,0.0,5832,0.0,0.0,0.0,330.0,0.0,3.0,0.0,1.0,1.0,3566.7412100322836,0.0,0.0,15391.0,5,3,3,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15391.0,2,0,2_0,2_1 -7333,1.0,2.0,79.0,111,75,50,0.0,5833,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3534.5963289313386,4212.0,0.0,15402.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10268.0,1,0,1_0,1_0 -7334,1.0,4.0,53.0,300,62,70,2.0,5835,0.0,500.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2284.995886571749,6072.0,12000.0,39152.0,1,3,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,17022.608695652176,3,0,3_0,3_1 -7335,0.0,0.0,81.0,111,77,60,0.0,5836,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2091.776651472727,0.0,0.0,14271.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14271.0,2,0,2_0,2_0 -7336,4.0,7.0,89.0,222,86,71,0.0,5838,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2314.440450157203,1196.0,0.0,23998.0,5,2,1,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15998.666666666666,2,0,2_0,2_1 -7337,0.0,0.0,60.0,111,52,31,0.0,5839,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3238.3763996107646,2500.0,0.0,45753.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30502.0,5,0,5,5_0 -7338,0.0,11.0,42.0,400,52,60,0.0,584,0.0,10.0,100.0,189.0,1.0,4.0,1.0,2.0,1.5,7009.3916711101965,0.0,0.0,23226.0,1,3,0,1.0,2,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,15484.0,2,0,2_1,2_0 -7339,7.0,9.0,66.0,400,77,70,0.0,5840,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2136.770033942054,0.0,0.0,28603.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19068.666666666668,3,0,3_0,3_1 -7340,8.0,8.0,61.0,111,75,31,0.0,5841,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3376.4456103907864,0.0,0.0,32201.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32201.0,5,0,5,5_0 -7341,1.0,1.0,41.0,111,34,10,1.0,5842,0.0,1630.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2499.3436068342644,4768.0,13478.0,49465.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,23554.761904761905,4,0,4_0,4_0 -7342,12.0,15.0,48.0,111,21,50,0.0,5845,0.0,0.0,0.0,0.0,1.0,4.0,4.0,6.0,3.1,1859.109111570612,0.0,0.0,23478.0,4,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,7573.548387096774,1,0,1_1,1_0 -7343,0.0,0.0,21.0,111,84,31,0.0,5846,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3414.0233061131066,0.0,0.0,9528.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9528.0,1,0,1_1,1_0 -7344,0.0,0.0,41.0,111,45,60,0.0,5849,0.0,0.0,0.0,351.0,1.0,3.0,1.0,2.0,1.3,4017.642779982278,0.0,0.0,20109.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15468.461538461537,2,0,2_1,2_0 -7345,2.0,7.0,21.0,111,43,33,0.0,585,0.0,0.0,180.0,480.0,1.0,2.0,0.0,1.0,1.0,3593.1566299283477,0.0,0.0,14535.0,1,3,7,5.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,14535.0,2,0,2_0,2_0 -7346,1.0,1.0,41.0,111,54,50,2.0,5850,0.0,0.0,240.0,0.0,2.0,5.0,2.0,4.0,2.3,1798.1507864742719,4942.0,11175.0,35213.0,1,2,8,7.0,4,2.0,1.0,0.0,0,0,0,1,0,1,1.0,1.0,15310.000000000002,2,0,2_1,2_0 -7347,0.0,11.0,25.0,111,54,20,0.0,5851,0.0,199998.0,0.0,400.0,1.0,2.0,0.0,2.0,1.5,3940.1697219218718,0.0,0.0,25540.0,1,3,4,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17026.666666666668,3,0,3_0,3_0 -7348,0.0,0.0,52.0,111,35,71,0.0,5852,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3237.6523764480535,0.0,0.0,13616.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9077.333333333334,1,0,1_1,1_0 -7349,0.0,0.0,25.0,111,54,43,0.0,5853,0.0,0.0,0.0,550.0,1.0,2.0,0.0,3.0,2.0,3652.1468697018404,0.0,0.0,26766.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13383.0,2,0,2_0,2_0 -7350,8.0,8.0,66.0,112,72,60,0.0,5854,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1953.5050216087957,1565.0,0.0,36503.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24335.333333333332,4,0,4_0,4_1 -7351,6.0,6.0,65.0,111,74,20,0.0,5855,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2736.9749999924193,0.0,0.0,23121.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23121.0,4,0,4_0,4_0 -7352,5.0,6.0,54.0,111,46,30,0.0,5857,0.0,180.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1987.0347438453014,0.0,0.0,49000.0,1,2,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,49000.0,5,0,5,5_0 -7353,8.0,11.0,44.0,111,43,10,0.0,586,0.0,0.0,150.0,0.0,1.0,5.0,1.0,2.0,1.3,3030.3985856365,0.0,0.0,7589.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,5837.692307692308,1,0,1_0,1_0 -7354,10.0,10.0,75.0,120,72,70,0.0,5860,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,3116.7221836920635,571.0,0.0,33196.0,5,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16598.0,2,0,2_0,2_1 -7355,0.0,0.0,79.0,111,74,41,0.0,5861,0.0,0.0,0.0,647.0,0.0,4.0,0.0,2.0,1.5,3085.9868921575962,0.0,0.0,49590.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33060.0,5,0,5,5_0 -7356,2.0,2.0,40.0,111,21,10,0.0,5862,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2140.7261722764865,0.0,0.0,43480.0,1,3,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24155.555555555555,4,0,4_0,4_0 -7357,2.0,2.0,42.0,112,65,41,0.0,5863,0.0,600.0,60.0,0.0,2.0,6.0,2.0,4.0,2.1,2651.8166598748503,3434.0,0.0,63550.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,30261.90476190476,5,0,5,5_0 -7358,1.0,2.0,36.0,112,67,41,0.0,5865,0.0,280.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1731.4859692935063,5928.0,0.0,36360.0,4,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17314.285714285714,3,0,3_0,3_1 -7359,1.0,1.0,39.0,111,38,10,2.0,5866,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2011.397821059268,2237.0,16000.0,46495.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,30996.666666666668,5,0,5,5_0 -7360,1.0,8.0,39.0,400,52,60,2.0,5869,0.0,435.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2870.6589738198263,3042.0,8500.0,18773.0,1,2,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18773.0,3,0,3_0,3_1 -7361,1.0,8.0,65.0,112,77,50,2.0,5871,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2439.768761042952,5764.0,1000.0,23200.0,5,1,6,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,15466.666666666666,2,0,2_0,2_1 -7362,9.0,14.0,57.0,111,78,50,0.0,5872,0.0,200.0,50.0,0.0,2.0,3.0,1.0,3.0,2.0,2300.568146177607,0.0,0.0,49458.0,5,2,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,24729.0,4,0,4_0,4_0 -7363,4.0,5.0,37.0,111,52,50,0.0,5874,0.0,500.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1566.3954536766635,7280.0,0.0,67789.0,1,2,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,29473.478260869568,5,0,5,5_0 -7364,3.0,6.0,53.0,112,33,42,0.0,5876,0.0,0.0,150.0,0.0,1.0,4.0,0.0,2.0,1.5,1950.0034415175128,0.0,0.0,68297.0,1,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,45531.333333333336,5,0,5,5_1 -7365,3.0,7.0,40.0,221,64,20,0.0,5877,0.0,100.0,0.0,79.0,1.0,4.0,2.0,4.0,2.1,4416.241556759004,1040.0,0.0,22268.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10603.809523809523,1,0,1_1,1_0 -7366,7.0,22.0,35.0,112,54,50,0.0,5879,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,2035.702129719059,1821.0,0.0,47648.0,1,3,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20716.521739130436,3,0,3_0,3_1 -7367,8.0,10.0,64.0,111,75,41,0.0,5880,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1772.657487839401,1040.0,0.0,22302.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22302.0,4,0,4_0,4_0 -7368,1.0,22.0,26.0,400,69,44,2.0,5881,0.0,1000.0,200.0,0.0,2.0,8.0,0.0,2.0,1.5,2358.068255121354,3900.0,950.0,24208.0,4,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16138.666666666666,2,0,2_0,2_1 -7369,2.0,12.0,23.0,111,63,50,0.0,5882,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,5058.95189235021,2353.0,0.0,25160.0,4,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16773.333333333332,2,0,2_0,2_0 -7370,15.0,15.0,70.0,400,77,60,0.0,5883,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4239.705207816738,0.0,0.0,20087.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20087.0,3,0,3_0,3_1 -7371,0.0,0.0,44.0,111,22,50,0.0,5884,0.0,0.0,0.0,360.0,1.0,2.0,0.0,1.0,1.0,2837.6851772782275,0.0,0.0,8188.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8188.0,1,0,1_1,1_0 -7372,0.0,12.0,48.0,400,52,50,0.0,5885,0.0,450.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1936.6468849572132,3640.0,0.0,34889.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,17444.5,3,0,3_0,3_1 -7373,8.0,14.0,41.0,221,67,71,0.0,5886,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,5449.566155989447,3910.0,0.0,25207.0,1,3,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,14003.888888888889,2,0,2_0,2_0 -7374,4.0,26.0,50.0,111,54,31,0.0,5888,0.0,300.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3151.3967791841656,2729.0,0.0,14175.0,1,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14175.0,2,0,2_0,2_0 -7375,6.0,6.0,69.0,111,75,50,0.0,5889,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3199.6729180229854,0.0,0.0,16350.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16350.0,2,0,2_0,2_0 -7376,2.0,5.0,77.0,120,78,71,0.0,589,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2180.992954235251,0.0,0.0,25017.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16678.0,2,0,2_0,2_1 -7377,3.0,22.0,22.0,111,84,41,0.0,5891,0.0,315.0,0.0,341.0,0.0,2.0,0.0,2.0,1.5,3719.32259786368,0.0,0.0,15986.0,3,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,10657.333333333334,1,0,1_1,1_0 -7378,1.0,7.0,29.0,112,47,31,2.0,5893,0.0,850.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2853.1310746105396,8367.0,6000.0,47658.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26476.666666666664,4,0,4_0,4_1 -7379,8.0,8.0,47.0,111,47,50,0.0,5895,0.0,30.0,0.0,373.0,1.0,3.0,0.0,1.0,1.0,3263.7156177194192,0.0,0.0,19139.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19139.0,3,0,3_0,3_0 -7380,3.0,4.0,81.0,111,72,70,0.0,5897,0.0,100.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2844.697894213307,0.0,0.0,43730.0,5,4,8,6.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,29153.333333333332,5,0,5,5_0 -7381,13.0,13.0,47.0,211,43,12,0.0,5899,0.0,20.0,99999.0,0.0,2.0,4.0,2.0,3.0,1.8,1237.6681660008878,0.0,0.0,37010.0,1,2,3,3.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20561.11111111111,3,0,3_0,3_0 -7382,0.0,0.0,25.0,111,31,10,0.0,590,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3587.962169771111,936.0,0.0,61337.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,40891.333333333336,5,0,5,5_0 -7383,12.0,12.0,42.0,112,46,31,0.0,5900,0.0,300.0,64.0,0.0,2.0,5.0,2.0,4.0,2.5,2579.197431214141,0.0,0.0,60481.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24192.4,4,0,4_0,4_1 -7384,5.0,11.0,43.0,400,11,41,0.0,5902,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2117.09273506288,0.0,0.0,61540.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25641.666666666668,4,0,4_0,4_1 -7385,3.0,11.0,60.0,111,46,60,0.0,5903,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1575.6750137242545,0.0,0.0,29457.0,1,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19638.0,3,0,3_0,3_0 -7386,9.0,12.0,67.0,112,75,70,0.0,5904,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,4275.560606866849,1040.0,0.0,46161.0,5,1,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18464.4,3,0,3_0,3_0 -7387,2.0,13.0,44.0,111,52,50,0.0,5905,0.0,650.0,0.0,405.0,2.0,2.0,1.0,2.0,1.5,3152.6095839097325,1040.0,0.0,25089.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,16726.0,2,0,2_1,2_0 -7388,1.0,1.0,54.0,111,22,50,0.0,5906,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2899.9147791964688,0.0,0.0,4130.0,1,2,6,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,4130.0,1,0,1_0,1_0 -7389,12.0,12.0,73.0,112,72,50,0.0,5907,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2987.1635072320364,1560.0,0.0,44519.0,5,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,29679.333333333332,5,0,5,5_1 -7390,3.0,3.0,59.0,112,34,10,0.0,5908,0.0,340.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1421.822656868003,1041.0,0.0,48753.0,1,1,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,24376.5,4,0,4_0,4_1 -7391,1.0,3.0,39.0,120,46,50,2.0,5910,200.0,500.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1751.082526710062,1560.0,23000.0,60495.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,33608.333333333336,5,0,5,5_1 -7392,7.0,9.0,40.0,111,52,60,0.0,5911,0.0,0.0,200.0,0.0,2.0,4.0,1.0,3.0,1.8,3226.7093436448245,1419.0,0.0,34850.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,19361.11111111111,3,0,3_0,3_0 -7393,6.0,6.0,61.0,111,74,30,0.0,5912,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3385.064790578418,1398.0,0.0,39564.0,5,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26376.0,4,0,4_0,4_0 -7394,0.0,0.0,43.0,112,67,71,0.0,5913,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2613.967580537325,0.0,0.0,30366.0,1,1,8,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20244.0,3,0,3_0,3_0 -7395,0.0,0.0,23.0,111,84,41,0.0,5914,0.0,0.0,0.0,125.0,0.0,1.0,0.0,1.0,1.0,3410.804916248127,0.0,0.0,4553.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4553.0,1,0,1_1,1_0 -7396,7.0,14.0,55.0,112,34,10,0.0,5915,0.0,450.0,24.0,0.0,2.0,6.0,1.0,3.0,2.0,2055.4074759043187,0.0,0.0,87196.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,43598.0,5,0,5,5_1 -7397,0.0,0.0,63.0,111,77,70,0.0,5916,0.0,0.0,0.0,218.0,0.0,2.0,0.0,1.0,1.0,2795.5857340760485,0.0,0.0,11674.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11674.0,1,0,1_1,1_0 -7398,2.0,3.0,68.0,300,71,71,0.0,5918,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2155.043684211465,0.0,0.0,21429.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14286.0,2,0,2_0,2_1 -7399,4.0,14.0,53.0,400,42,20,0.0,5919,0.0,400.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2025.1948372976692,0.0,0.0,23860.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23860.0,4,0,4_0,4_1 -7400,6.0,6.0,77.0,111,78,70,0.0,592,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2294.065756292632,938.0,0.0,35504.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23669.333333333332,4,0,4_0,4_0 -7401,3.0,3.0,50.0,112,43,33,0.0,5921,0.0,250.0,250.0,0.0,2.0,5.0,0.0,2.0,1.5,1379.6457180097689,0.0,0.0,63806.0,1,1,7,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,42537.333333333336,5,0,5,5_1 -7402,3.0,9.0,29.0,221,47,31,0.0,5922,0.0,0.0,0.0,438.0,1.0,3.0,0.0,1.0,1.0,5432.7408419802805,1560.0,0.0,24490.0,1,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,24490.0,4,0,4_0,4_0 -7403,1.0,13.0,47.0,111,48,50,0.0,5926,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2645.553792849221,1825.0,0.0,28585.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28585.0,4,0,4_0,4_0 -7404,0.0,0.0,87.0,111,78,71,0.0,5927,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3875.1449269346617,0.0,0.0,13192.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13192.0,2,0,2_0,2_0 -7405,0.0,0.0,86.0,111,86,70,0.0,5928,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3140.2980350108764,0.0,0.0,17704.0,6,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17704.0,3,0,3_0,3_0 -7406,0.0,0.0,26.0,111,34,20,0.0,593,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3010.278760333325,0.0,0.0,24316.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24316.0,4,0,4_0,4_0 -7407,6.0,8.0,50.0,111,56,60,0.0,5931,0.0,0.0,0.0,373.0,1.0,4.0,2.0,3.0,2.0,3099.3718954770607,0.0,0.0,22995.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,11497.5,1,0,1_1,1_0 -7408,11.0,11.0,72.0,300,72,70,0.0,5933,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,2302.3323487131347,4680.0,0.0,27186.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,18124.0,3,0,3_0,3_1 -7409,0.0,0.0,82.0,221,86,71,0.0,5934,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4117.366428161898,0.0,0.0,7950.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,7950.0,1,0,1_0,1_0 -7410,3.0,15.0,25.0,111,84,20,0.0,5936,0.0,320.0,0.0,90.0,0.0,2.0,0.0,2.0,1.5,3559.5500270718294,1820.0,0.0,16569.0,3,3,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,11046.0,1,0,1_1,1_0 -7411,11.0,20.0,35.0,111,47,20,0.0,5942,0.0,190.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1982.022484697379,0.0,0.0,55239.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26304.285714285714,4,0,4_0,4_0 -7412,4.0,4.0,48.0,111,21,50,0.0,5943,0.0,250.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,2596.207395260772,0.0,0.0,62683.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,25073.2,4,0,4_0,4_0 -7413,15.0,15.0,67.0,111,75,71,0.0,5945,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3746.46153545456,0.0,0.0,26331.0,5,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17554.0,3,0,3_0,3_0 -7414,1.0,4.0,32.0,111,37,12,2.0,5946,0.0,99999.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1330.9638346738266,5096.0,14600.0,67310.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,28045.833333333336,4,0,4_0,4_0 -7415,18.0,18.0,63.0,112,13,44,0.0,5947,0.0,150.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1951.3314130969552,0.0,0.0,24879.0,1,1,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16586.0,2,0,2_0,2_1 -7416,4.0,4.0,50.0,112,65,50,0.0,5950,0.0,150.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3453.81541743408,0.0,0.0,40318.0,1,2,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26878.666666666668,4,0,4_0,4_1 -7417,4.0,4.0,67.0,120,71,42,0.0,5952,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1994.3202868700766,5911.0,0.0,22245.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22245.0,4,0,4_0,4_1 -7418,0.0,0.0,42.0,111,55,50,0.0,5954,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2319.8548606358395,0.0,0.0,8455.0,4,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8455.0,1,0,1_1,1_0 -7419,21.0,24.0,82.0,112,77,70,0.0,5955,0.0,0.0,0.0,256.0,0.0,3.0,0.0,1.0,1.0,2854.651395247617,0.0,0.0,21385.0,5,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21385.0,3,0,3_0,3_0 -7420,5.0,13.0,49.0,111,31,10,0.0,5956,0.0,0.0,450.0,0.0,2.0,8.0,1.0,3.0,1.8,1420.3152957195437,3121.0,0.0,144462.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,80256.66666666667,5,0,5,5_0 -7421,7.0,10.0,52.0,300,63,50,0.0,5958,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1505.422561686407,0.0,0.0,22769.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22769.0,4,0,4_0,4_1 -7422,2.0,2.0,77.0,111,78,71,0.0,5959,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4697.973529702731,0.0,0.0,20422.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20422.0,3,0,3_0,3_0 -7423,2.0,2.0,75.0,111,75,42,0.0,596,0.0,0.0,0.0,350.0,0.0,2.0,0.0,1.0,1.0,3252.914852936401,0.0,0.0,23920.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23920.0,4,0,4_0,4_0 -7424,1.0,1.0,47.0,300,52,50,1.0,5960,360.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,999.83510915517,902.0,14000.0,22077.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,0.0,22077.0,4,0,4_0,4_1 -7425,11.0,21.0,64.0,112,77,41,0.0,5962,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1837.4254828530798,0.0,0.0,22445.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14963.333333333334,2,0,2_0,2_1 -7426,4.0,5.0,28.0,112,47,31,0.0,5963,0.0,0.0,580.0,500.0,2.0,4.0,0.0,2.0,1.5,6319.858804684103,2341.0,0.0,24327.0,1,3,9,3.0,3,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,16218.0,2,0,2_0,2_0 -7427,0.0,0.0,64.0,211,78,70,0.0,5965,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1760.3929512827913,0.0,0.0,22050.0,5,3,3,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14700.0,2,0,2_0,2_0 -7428,0.0,0.0,25.0,111,38,12,0.0,5966,0.0,0.0,0.0,412.0,1.0,1.0,0.0,1.0,1.0,3398.4733498464966,0.0,0.0,33358.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33358.0,5,0,5,5_0 -7429,8.0,14.0,31.0,111,85,50,0.0,5968,0.0,0.0,0.0,90.0,0.0,2.0,0.0,1.0,1.0,2918.646954501131,3333.0,0.0,17206.0,7,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,17206.0,3,0,3_1,3_0 -7430,6.0,8.0,41.0,112,67,50,0.0,5969,0.0,240.0,50.0,0.0,2.0,5.0,2.0,4.0,2.3,2433.307099669563,0.0,0.0,34675.0,1,2,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15076.08695652174,2,0,2_0,2_1 -7431,3.0,7.0,59.0,400,78,50,0.0,597,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1430.4643339845163,3234.0,0.0,24712.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16474.666666666668,2,0,2_0,2_1 -7432,8.0,8.0,61.0,112,75,60,0.0,5971,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2491.841612236552,3796.0,0.0,35845.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23896.666666666668,4,0,4_0,4_1 -7433,1.0,1.0,34.0,111,33,10,0.0,5972,0.0,20.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1439.2524221018605,6169.0,0.0,49492.0,1,2,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,32994.666666666664,5,0,5,5_0 -7434,2.0,2.0,41.0,111,54,31,0.0,5973,0.0,100.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,4425.999709778286,1585.0,0.0,28720.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,19146.666666666668,3,0,3_0,3_0 -7435,0.0,0.0,90.0,211,78,70,0.0,5974,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4597.860069073002,0.0,0.0,19746.0,5,4,3,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19746.0,3,0,3_0,3_0 -7436,6.0,12.0,44.0,111,68,71,0.0,5975,0.0,80.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,1577.1758213988385,520.0,0.0,17496.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9720.0,1,0,1_1,1_0 -7437,0.0,0.0,73.0,111,77,70,0.0,5976,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3943.7653282163205,0.0,0.0,8740.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8740.0,1,0,1_0,1_0 -7438,12.0,12.0,62.0,111,72,50,0.0,5977,0.0,0.0,0.0,885.0,0.0,3.0,0.0,2.0,1.5,4328.1106136294775,0.0,0.0,34549.0,4,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,23032.666666666668,4,0,4_0,4_0 -7439,0.0,0.0,76.0,111,77,60,0.0,5979,0.0,0.0,0.0,199.0,0.0,2.0,0.0,1.0,1.0,3165.448791918184,0.0,0.0,10280.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10280.0,1,0,1_1,1_0 -7440,4.0,14.0,86.0,111,77,60,0.0,598,0.0,0.0,0.0,221.0,0.0,3.0,0.0,1.0,1.0,3704.8526995589827,0.0,0.0,14422.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14422.0,2,0,2_1,2_0 -7441,6.0,6.0,83.0,111,75,70,0.0,5980,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1619.4836067866224,0.0,0.0,24804.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16536.0,2,0,2_0,2_0 -7442,9.0,9.0,58.0,111,77,50,0.0,5981,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1723.7136837408123,2820.0,0.0,21641.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21641.0,3,0,3_0,3_0 -7443,9.0,12.0,54.0,112,47,20,0.0,5983,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1000.6204459628108,4784.0,0.0,22585.0,1,1,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,9034.0,1,0,1_0,1_1 -7444,1.0,11.0,41.0,300,38,50,2.0,5984,0.0,60.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1912.21920084216,2600.0,3000.0,45360.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,21600.0,3,0,3_0,3_1 -7445,3.0,10.0,35.0,120,38,31,0.0,5985,0.0,600.0,0.0,0.0,1.0,6.0,4.0,6.0,2.7,2001.122813249662,5279.0,0.0,59034.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21864.44444444444,4,0,4_0,4_1 -7446,5.0,5.0,47.0,111,46,60,0.0,5987,0.0,10.0,0.0,357.0,1.0,3.0,1.0,2.0,1.3,3121.67399229697,0.0,0.0,22751.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,17500.76923076923,3,0,3_0,3_0 -7447,16.0,16.0,67.0,112,75,60,0.0,5988,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1415.7991900415752,3120.0,0.0,45479.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,30319.333333333332,5,0,5,5_1 -7448,2.0,17.0,57.0,400,63,70,0.0,5989,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1449.154629983816,2600.0,0.0,24009.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16006.0,2,0,2_0,2_1 -7449,0.0,0.0,41.0,111,38,20,0.0,599,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3193.9960944203585,1201.0,0.0,59583.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28372.85714285714,4,0,4_0,4_0 -7450,10.0,10.0,76.0,111,74,70,0.0,5993,0.0,0.0,0.0,0.0,0.0,5.0,0.0,3.0,2.0,2563.620351250101,0.0,0.0,36190.0,5,1,10,8.0,5,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,18095.0,3,0,3_0,3_0 -7451,5.0,5.0,45.0,112,38,50,0.0,5995,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2474.181060108843,1716.0,0.0,38744.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21524.444444444445,3,0,3_0,3_1 -7452,12.0,12.0,41.0,111,22,71,0.0,5996,0.0,99999.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,3549.9513447228064,214.0,0.0,38540.0,1,3,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,18352.38095238095,3,0,3_0,3_0 -7453,5.0,5.0,75.0,211,72,70,0.0,5997,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1927.567079402621,0.0,0.0,9921.0,5,4,3,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,9921.0,1,0,1_0,1_0 -7454,3.0,5.0,24.0,111,46,20,0.0,5998,0.0,330.0,0.0,407.0,1.0,3.0,0.0,1.0,1.0,2508.250469929492,3172.0,0.0,21574.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21574.0,3,0,3_0,3_0 -7455,5.0,13.0,51.0,400,47,60,0.0,6,0.0,650.0,50.0,0.0,3.0,6.0,1.0,3.0,2.0,2524.4531302948108,7316.0,0.0,64821.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,32410.5,5,0,5,5_1 -7456,13.0,13.0,53.0,221,37,20,0.0,60,0.0,348.0,0.0,0.0,2.0,9.0,2.0,4.0,2.5,3632.426425918698,5980.0,0.0,93915.0,1,2,1,2.0,4,3.0,1.0,0.0,0,1,0,0,0,0,2.0,1.0,37566.0,5,0,5,5_0 -7457,5.0,10.0,71.0,111,77,50,0.0,6000,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1935.053007475958,1509.0,0.0,21088.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21088.0,3,0,3_0,3_0 -7458,9.0,13.0,44.0,111,37,12,0.0,6004,0.0,0.0,90.0,900.0,1.0,2.0,0.0,1.0,1.0,4102.031321543864,3900.0,0.0,15900.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,15900.0,2,0,2_0,2_0 -7459,11.0,13.0,63.0,211,34,31,0.0,6007,0.0,0.0,420.0,0.0,2.0,5.0,0.0,2.0,1.5,1851.1545019912908,0.0,0.0,69360.0,1,2,1,3.0,3,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,46240.0,5,0,5,5_0 -7460,6.0,6.0,51.0,112,63,50,0.0,6008,0.0,1500.0,25.0,0.0,2.0,7.0,0.0,2.0,1.5,993.6324504750588,2392.0,0.0,42982.0,1,1,8,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28654.666666666668,4,0,4_0,4_0 -7461,4.0,4.0,46.0,111,37,10,0.0,6009,0.0,800.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,1867.3896773515025,3640.0,0.0,55682.0,1,1,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27841.0,4,0,4_0,4_0 -7462,1.0,12.0,34.0,111,63,71,2.0,601,0.0,99999.0,0.0,207.0,1.0,2.0,1.0,3.0,1.8,3520.3241713761963,0.0,5000.0,11740.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,6522.222222222222,1,0,1_1,1_0 -7463,0.0,0.0,63.0,300,77,70,0.0,6012,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2342.4343928308713,3018.0,0.0,13657.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13657.0,2,0,2_0,2_1 -7464,9.0,10.0,66.0,111,77,71,0.0,6014,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4609.4938050118535,884.0,0.0,12001.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12001.0,1,0,1_1,1_0 -7465,5.0,5.0,68.0,112,74,12,0.0,6015,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1299.5331807857935,4212.0,0.0,59942.0,5,1,3,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,39961.333333333336,5,0,5,5_1 -7466,0.0,0.0,83.0,400,78,71,0.0,6016,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2790.0282964764806,0.0,0.0,10921.0,5,4,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10921.0,1,0,1_0,1_0 -7467,1.0,1.0,61.0,111,34,20,1.0,6017,0.0,200.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3435.41858386274,0.0,16000.0,58822.0,1,4,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,58822.0,5,0,5,5_0 -7468,7.0,7.0,32.0,112,46,31,0.0,6018,0.0,250.0,300.0,0.0,2.0,5.0,2.0,4.0,2.1,3136.612646025102,2364.0,0.0,26550.0,1,3,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,12642.857142857143,2,0,2_0,2_1 -7469,21.0,21.0,84.0,211,77,70,0.0,6019,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2227.703703038219,0.0,0.0,13620.0,5,1,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13620.0,2,0,2_0,2_0 -7470,4.0,4.0,55.0,120,56,70,0.0,602,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,2.0,1762.9727099066579,0.0,0.0,19512.0,1,1,0,2.0,2,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,9756.0,1,0,1_0,1_0 -7471,2.0,2.0,31.0,300,56,20,0.0,6020,0.0,10.0,0.0,0.0,2.0,5.0,1.0,4.0,2.3,947.7500217186911,8283.0,0.0,59003.0,4,2,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25653.478260869568,4,0,4_0,4_1 -7472,0.0,16.0,44.0,221,52,50,0.0,6022,0.0,270.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,1703.5806120746668,3126.0,0.0,19183.0,1,2,1,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10657.222222222223,1,0,1_1,1_0 -7473,0.0,0.0,40.0,111,56,50,0.0,6023,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,2953.2703443064647,0.0,0.0,46601.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17923.46153846154,3,0,3_1,3_0 -7474,13.0,13.0,84.0,111,86,70,0.0,6024,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,5676.997299352375,0.0,0.0,14990.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14990.0,2,0,2_0,2_0 -7475,0.0,0.0,82.0,300,77,70,0.0,6025,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1819.0745396973232,0.0,0.0,29054.0,5,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19369.333333333332,3,0,3_0,3_1 -7476,2.0,2.0,43.0,112,38,10,0.0,6027,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.8,1307.6077800933163,3699.0,0.0,162531.0,1,1,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,58046.78571428572,5,0,5,5_1 -7477,1.0,5.0,61.0,111,75,30,2.0,6028,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2172.2663498649667,0.0,7900.0,30818.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,30818.0,5,0,5,5_0 -7478,1.0,1.0,59.0,112,77,12,1.0,6029,0.0,0.0,0.0,0.0,0.0,7.0,0.0,3.0,2.0,836.1155016566448,5379.0,42000.0,84296.0,5,1,8,2.0,5,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,42148.0,5,0,5,5_0 -7479,2.0,14.0,25.0,111,54,43,0.0,6030,0.0,0.0,0.0,202.0,2.0,4.0,2.0,4.0,2.1,2800.673265242002,0.0,0.0,28598.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,13618.095238095237,2,0,2_1,2_0 -7480,8.0,9.0,56.0,112,52,60,0.0,6032,0.0,410.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2197.736332837261,4160.0,0.0,45131.0,1,1,9,3.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,18052.4,3,0,3_0,3_0 -7481,4.0,7.0,59.0,111,78,60,0.0,6033,0.0,0.0,0.0,60.0,0.0,3.0,0.0,1.0,1.0,3091.1729713573486,2600.0,0.0,9882.0,7,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9882.0,1,0,1_1,1_0 -7482,0.0,0.0,29.0,111,55,31,0.0,6034,0.0,0.0,0.0,125.0,1.0,3.0,1.0,2.0,1.3,1958.5575037729195,0.0,0.0,19672.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15132.307692307691,2,0,2_1,2_0 -7483,2.0,6.0,66.0,112,64,50,0.0,6037,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1584.0816441089582,2602.0,0.0,27376.0,5,1,8,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,27376.0,4,0,4_0,4_1 -7484,4.0,13.0,32.0,112,21,50,0.0,6038,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,7063.017232516477,5202.0,0.0,20107.0,1,3,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,9574.761904761905,1,0,1_0,1_0 -7485,1.0,1.0,48.0,400,54,50,2.0,6040,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1767.4444678451246,520.0,5500.0,7100.0,1,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,7100.0,1,0,1_0,1_1 -7486,4.0,4.0,33.0,111,46,31,0.0,6041,0.0,0.0,100.0,0.0,2.0,3.0,0.0,2.0,1.5,3543.327926213236,0.0,0.0,45211.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,30140.666666666668,5,0,5,5_0 -7487,10.0,11.0,64.0,111,77,70,0.0,6042,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2375.0074186017755,1352.0,0.0,19682.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19682.0,3,0,3_0,3_0 -7488,2.0,11.0,39.0,221,67,50,0.0,6044,0.0,600.0,300.0,0.0,2.0,5.0,2.0,4.0,2.1,1464.3731414485558,5720.0,0.0,36744.0,1,2,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17497.142857142855,3,0,3_0,3_0 -7489,1.0,1.0,62.0,111,78,50,1.0,6045,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1631.543187424922,0.0,14443.0,30560.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,20373.333333333332,3,0,3_0,3_0 -7490,4.0,6.0,68.0,120,71,70,0.0,6047,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2720.5612910203704,0.0,0.0,28710.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19140.0,3,0,3_0,3_1 -7491,15.0,15.0,57.0,111,78,50,0.0,6049,0.0,0.0,120.0,306.0,1.0,4.0,0.0,2.0,1.5,2693.197679000504,2132.0,0.0,18000.0,7,3,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,12000.0,1,0,1_0,1_0 -7492,2.0,3.0,34.0,111,53,42,0.0,605,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3250.4724253756303,0.0,0.0,27635.0,1,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27635.0,4,0,4_0,4_0 -7493,0.0,0.0,49.0,111,35,10,0.0,6050,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3329.556438122758,0.0,0.0,42384.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28256.0,4,0,4_0,4_0 -7494,3.0,17.0,37.0,400,46,20,0.0,6051,0.0,580.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2652.755674895268,2340.0,0.0,41744.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23191.11111111111,4,0,4_0,4_1 -7495,0.0,11.0,19.0,111,84,41,0.0,6054,0.0,50.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3709.3668359675376,0.0,0.0,2520.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,2520.0,1,0,1_1,1_0 -7496,6.0,11.0,63.0,111,34,10,0.0,6055,0.0,60.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1443.7636802718691,0.0,0.0,111717.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,74478.0,5,0,5,5_0 -7497,0.0,0.0,39.0,111,85,71,0.0,6056,0.0,0.0,0.0,150.0,0.0,1.0,0.0,1.0,1.0,3893.0335124733847,0.0,0.0,985.0,6,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,985.0,1,0,1_0,1_0 -7498,4.0,17.0,55.0,400,52,60,0.0,6057,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2853.713731970342,2737.0,0.0,9875.0,1,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9875.0,1,0,1_0,1_1 -7499,0.0,0.0,65.0,111,78,71,0.0,6058,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,6284.139678284367,0.0,0.0,17840.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17840.0,3,0,3_0,3_0 -7500,0.0,5.0,35.0,112,42,10,0.0,6059,0.0,100.0,100.0,0.0,2.0,5.0,2.0,4.0,2.1,1355.0523396638675,5668.0,0.0,57715.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27483.333333333332,4,0,4_0,4_1 -7501,1.0,6.0,23.0,111,47,43,0.0,6060,0.0,50.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,5511.935704373763,2392.0,0.0,19660.0,1,3,8,7.0,5,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,13106.666666666666,2,0,2_0,2_0 -7502,2.0,3.0,62.0,400,77,50,0.0,6061,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1983.4649634819846,2080.0,0.0,11050.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11050.0,1,0,1_0,1_1 -7503,0.0,3.0,23.0,120,65,50,0.0,6063,0.0,310.0,0.0,200.0,2.0,2.0,0.0,2.0,1.5,4987.0647575659295,2122.0,0.0,13127.0,1,3,0,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,8751.333333333334,1,0,1_0,1_0 -7504,10.0,18.0,39.0,300,22,50,0.0,6064,0.0,200.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,2554.591047835099,2080.0,0.0,18805.0,1,3,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,1,0.0,2.0,8954.761904761905,1,0,1_1,1_1 -7505,19.0,25.0,65.0,111,78,71,0.0,6065,0.0,0.0,0.0,675.0,0.0,5.0,0.0,2.0,1.5,4127.109872733635,1040.0,0.0,34715.0,5,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,23143.333333333332,4,0,4_0,4_0 -7506,3.0,8.0,56.0,111,78,50,0.0,6066,0.0,0.0,200.0,0.0,1.0,2.0,0.0,2.0,1.5,1735.1857207120602,3136.0,0.0,21961.0,7,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14640.666666666666,2,0,2_0,2_0 -7507,5.0,15.0,54.0,120,62,50,0.0,607,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1186.5937312655005,6199.0,0.0,71068.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,35534.0,5,0,5,5_1 -7508,5.0,13.0,36.0,300,62,50,0.0,6070,0.0,400.0,0.0,0.0,1.0,5.0,4.0,6.0,2.9,1248.9582757862452,0.0,0.0,33836.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,11667.586206896553,1,0,1_1,1_1 -7509,2.0,2.0,76.0,221,74,50,0.0,6071,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1629.265219750215,0.0,0.0,34710.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,23140.0,4,0,4_0,4_0 -7510,0.0,2.0,30.0,111,43,33,2.0,6073,0.0,300.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,3136.0228827914284,0.0,10100.0,41230.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17179.166666666668,3,0,3_0,3_0 -7511,0.0,17.0,28.0,111,56,50,0.0,6074,0.0,0.0,30.0,0.0,1.0,4.0,2.0,3.0,1.6,3658.995784040016,785.0,0.0,14681.0,1,3,4,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,9175.625,1,0,1_1,1_0 -7512,7.0,7.0,56.0,111,65,41,0.0,6075,0.0,540.0,0.0,296.0,2.0,4.0,0.0,2.0,1.5,2712.733783752372,6500.0,0.0,38516.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25677.333333333332,4,0,4_0,4_0 -7513,6.0,19.0,62.0,111,78,70,0.0,6076,0.0,0.0,0.0,290.0,0.0,3.0,0.0,1.0,1.0,2565.9222522804375,1300.0,0.0,14560.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14560.0,2,0,2_1,2_0 -7514,10.0,11.0,64.0,112,75,10,0.0,6077,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4611.060398487159,0.0,0.0,61031.0,5,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,40687.333333333336,5,0,5,5_0 -7515,5.0,15.0,62.0,112,74,50,0.0,6078,0.0,0.0,0.0,0.0,1.0,5.0,1.0,4.0,2.3,1288.849325998223,3567.0,0.0,47782.0,5,1,9,1.0,5,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20774.782608695652,3,0,3_0,3_0 -7516,6.0,6.0,30.0,111,43,20,0.0,6079,0.0,99999.0,0.0,285.0,1.0,3.0,1.0,3.0,1.8,1892.133464752929,0.0,0.0,19870.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11038.888888888889,1,0,1_1,1_0 -7517,0.0,0.0,84.0,111,77,50,0.0,608,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3246.5134230547064,0.0,0.0,42565.0,5,1,6,5.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28376.666666666668,4,0,4_0,4_0 -7518,5.0,11.0,38.0,112,21,70,0.0,6080,0.0,60.0,0.0,0.0,2.0,2.0,3.0,5.0,2.4,1579.0870239802757,2860.0,0.0,56711.0,1,2,9,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,23629.583333333336,4,0,4_0,4_0 -7519,0.0,0.0,46.0,111,68,50,0.0,6081,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,2123.9604167233333,0.0,0.0,12048.0,4,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,6693.333333333333,1,0,1_1,1_0 -7520,2.0,2.0,40.0,112,37,43,0.0,6084,0.0,320.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,3603.747205695316,2746.0,0.0,46543.0,1,2,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20236.08695652174,3,0,3_0,3_0 -7521,2.0,2.0,64.0,111,74,12,0.0,6086,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1280.7707993623485,5079.0,0.0,93679.0,4,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,62452.666666666664,5,0,5,5_0 -7522,1.0,2.0,32.0,400,54,31,2.0,6088,0.0,0.0,160.0,390.0,1.0,3.0,0.0,1.0,1.0,5135.826761382789,0.0,11300.0,20941.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20941.0,3,0,3_0,3_1 -7523,2.0,6.0,42.0,221,46,50,0.0,6089,0.0,350.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,4532.239103317066,0.0,0.0,47799.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22761.42857142857,4,0,4_0,4_0 -7524,27.0,27.0,79.0,111,74,10,0.0,609,0.0,0.0,0.0,0.0,0.0,10.0,0.0,1.0,1.0,2887.284968226849,0.0,0.0,37683.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,37683.0,5,0,5,5_0 -7525,0.0,16.0,44.0,112,48,50,0.0,6090,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,5607.803758008903,0.0,0.0,60377.0,1,2,9,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,33542.777777777774,5,0,5,5_0 -7526,0.0,6.0,48.0,111,48,50,2.0,6092,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,5008.198965086354,9466.0,10000.0,47072.0,1,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,31381.333333333332,5,0,5,5_0 -7527,1.0,22.0,47.0,111,46,60,0.0,6095,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,2065.8428507729523,0.0,0.0,24726.0,1,4,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,10750.434782608696,1,0,1_0,1_0 -7528,2.0,2.0,64.0,112,77,60,0.0,6099,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1665.4991732802373,0.0,0.0,29281.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,29281.0,5,0,5,5_0 -7529,1.0,11.0,25.0,111,53,60,2.0,61,0.0,99999.0,0.0,113.0,1.0,4.0,1.0,3.0,1.8,3064.4221776366035,1040.0,3500.0,21240.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,11800.0,1,0,1_1,1_0 -7530,3.0,5.0,47.0,111,38,31,0.0,610,0.0,220.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3715.2556217058927,0.0,0.0,29090.0,1,4,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,29090.0,5,0,5,5_0 -7531,0.0,0.0,31.0,111,56,71,0.0,6100,0.0,0.0,0.0,450.0,1.0,3.0,0.0,1.0,1.0,2931.8690623116263,142.0,0.0,14866.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14866.0,2,0,2_0,2_0 -7532,8.0,8.0,77.0,111,77,50,0.0,6101,0.0,0.0,0.0,485.0,0.0,3.0,0.0,1.0,1.0,3605.933108798806,0.0,0.0,26974.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26974.0,4,0,4_0,4_0 -7533,5.0,5.0,51.0,111,48,50,0.0,6104,0.0,690.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1533.8986052482232,3290.0,0.0,52258.0,1,1,8,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,0.0,4.0,20903.2,3,0,3_0,3_0 -7534,0.0,0.0,48.0,111,33,50,0.0,6106,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2173.511007445462,0.0,0.0,64209.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26753.75,4,0,4_0,4_0 -7535,6.0,6.0,65.0,111,38,41,0.0,6107,0.0,0.0,120.0,1199.0,1.0,2.0,0.0,1.0,1.0,7729.405399219323,0.0,0.0,26554.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,26554.0,4,0,4_0,4_0 -7536,2.0,11.0,41.0,112,85,42,0.0,6108,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,6105.270352723746,1040.0,0.0,15848.0,7,3,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15848.0,2,0,2_0,2_0 -7537,1.0,7.0,40.0,111,64,50,2.0,6109,0.0,400.0,0.0,116.0,1.0,4.0,4.0,6.0,2.7,1346.2817166629602,2392.0,5900.0,36528.0,4,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13528.888888888889,2,0,2_1,2_0 -7538,3.0,10.0,31.0,111,64,50,0.0,611,0.0,120.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2230.5372252403417,0.0,0.0,26673.0,1,4,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,14818.333333333332,2,0,2_0,2_0 -7539,6.0,14.0,69.0,112,77,60,0.0,6111,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2634.4678881780915,1560.0,0.0,19591.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13060.666666666666,2,0,2_0,2_1 -7540,0.0,0.0,87.0,111,74,30,0.0,6112,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4209.760219964419,0.0,0.0,24041.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24041.0,4,0,4_0,4_0 -7541,0.0,0.0,92.0,111,74,60,0.0,6113,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3688.1248459427625,0.0,0.0,41242.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41242.0,5,0,5,5_0 -7542,0.0,14.0,53.0,111,47,60,0.0,6115,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2421.4841059327346,0.0,0.0,19846.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19846.0,3,0,3_0,3_0 -7543,3.0,19.0,62.0,400,71,70,0.0,6119,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2239.9732885847106,0.0,0.0,12438.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12438.0,1,0,1_0,1_1 -7544,2.0,22.0,33.0,112,55,42,0.0,612,0.0,650.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2449.976597019016,4994.0,0.0,31177.0,1,2,8,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,17320.555555555555,3,0,3_0,3_1 -7545,5.0,6.0,70.0,221,75,50,0.0,6120,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2928.838943389856,1992.0,0.0,29825.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19883.333333333332,3,0,3_0,3_0 -7546,1.0,1.0,46.0,111,47,12,0.0,6121,0.0,150.0,100.0,0.0,2.0,5.0,2.0,4.0,2.3,2299.5992243265846,0.0,0.0,49666.0,1,2,8,6.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,21593.913043478264,3,0,3_0,3_0 -7547,5.0,16.0,28.0,111,46,31,0.0,6122,0.0,300.0,0.0,323.0,1.0,2.0,0.0,1.0,1.0,3328.36467634352,2613.0,0.0,16801.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16801.0,2,0,2_0,2_0 -7548,11.0,11.0,58.0,111,72,71,0.0,6125,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3619.201991475391,0.0,0.0,23881.0,4,1,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,15920.666666666666,2,0,2_0,2_0 -7549,4.0,4.0,64.0,111,75,33,0.0,6126,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4303.421323355467,1040.0,0.0,22199.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22199.0,4,0,4_0,4_0 -7550,2.0,2.0,47.0,111,37,50,0.0,6127,0.0,0.0,60.0,0.0,2.0,3.0,1.0,3.0,1.8,2192.232821754361,0.0,0.0,63320.0,1,4,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,35177.777777777774,5,0,5,5_0 -7551,15.0,15.0,80.0,221,78,50,0.0,6128,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1696.9373396327833,1849.0,0.0,23581.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23581.0,4,0,4_0,4_0 -7552,5.0,14.0,66.0,221,74,41,0.0,613,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1724.0782471100042,0.0,0.0,16600.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16600.0,2,0,2_0,2_0 -7553,0.0,0.0,68.0,112,78,71,0.0,6130,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3024.2311988563797,0.0,0.0,12670.0,5,1,10,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12670.0,2,0,2_0,2_0 -7554,1.0,14.0,23.0,111,85,50,2.0,6131,0.0,0.0,0.0,24.0,1.0,4.0,2.0,4.0,2.1,3074.323622755034,2080.0,200.0,29952.0,4,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14262.857142857143,2,0,2_1,2_0 -7555,3.0,10.0,43.0,112,65,50,0.0,6132,0.0,370.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1600.870622046061,0.0,0.0,41198.0,1,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22887.777777777777,4,0,4_0,4_1 -7556,5.0,14.0,29.0,120,47,31,0.0,6134,0.0,600.0,0.0,0.0,1.0,5.0,1.0,4.0,2.3,5925.856189267746,2477.0,0.0,29740.0,1,1,0,3.0,5,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,12930.434782608696,2,0,2_0,2_0 -7557,1.0,1.0,52.0,112,55,71,0.0,6135,0.0,0.0,125.0,0.0,1.0,3.0,0.0,1.0,1.0,3268.3605442103017,1508.0,0.0,19284.0,1,2,10,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19284.0,3,0,3_0,3_1 -7558,9.0,14.0,54.0,111,63,50,0.0,6136,0.0,15.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,805.9304114645912,0.0,0.0,26830.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,13415.0,2,0,2_1,2_0 -7559,9.0,9.0,72.0,111,74,50,0.0,6137,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2575.8661233872654,3122.0,0.0,39925.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,26616.666666666668,4,0,4_0,4_0 -7560,3.0,3.0,54.0,111,37,50,0.0,6138,0.0,200.0,80.0,0.0,2.0,6.0,0.0,2.0,1.5,3486.9217467895132,0.0,0.0,66043.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,44028.666666666664,5,0,5,5_0 -7561,25.0,25.0,80.0,111,77,71,0.0,6140,0.0,0.0,0.0,241.0,0.0,4.0,0.0,1.0,1.0,3406.211870403326,1300.0,0.0,17442.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,17442.0,3,0,3_1,3_0 -7562,8.0,8.0,76.0,112,78,50,0.0,6141,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,991.0116985547409,0.0,0.0,22155.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14770.0,2,0,2_0,2_0 -7563,1.0,13.0,45.0,112,69,71,2.0,6142,0.0,0.0,0.0,344.0,2.0,5.0,6.0,8.0,3.3,823.1808958252286,0.0,900.0,38661.0,1,3,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,11715.454545454546,1,0,1_1,1_0 -7564,0.0,0.0,81.0,111,77,71,0.0,6144,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4061.398970492643,0.0,0.0,12225.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12225.0,1,0,1_0,1_0 -7565,0.0,12.0,33.0,111,56,50,0.0,6145,0.0,0.0,200.0,0.0,1.0,3.0,2.0,4.0,2.1,2622.2635491416595,6776.0,0.0,19627.0,1,3,6,5.0,4,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,9346.190476190475,1,0,1_1,1_0 -7566,0.0,0.0,22.0,111,54,71,0.0,6146,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1975.5945863371269,0.0,0.0,5697.0,3,4,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,5697.0,1,0,1_0,1_0 -7567,5.0,6.0,58.0,120,56,70,0.0,6147,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1475.5438055750694,0.0,0.0,11377.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11377.0,1,0,1_0,1_1 -7568,4.0,9.0,54.0,111,45,50,0.0,6151,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3205.652446642307,0.0,0.0,27636.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27636.0,4,0,4_0,4_0 -7569,5.0,7.0,36.0,112,43,60,0.0,6152,0.0,2000.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2884.1001931444625,5720.0,0.0,22264.0,1,2,7,1.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,14842.666666666666,2,0,2_0,2_0 -7570,2.0,2.0,89.0,111,75,50,0.0,6153,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2378.285640332047,0.0,0.0,22800.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22800.0,4,0,4_0,4_0 -7571,0.0,7.0,49.0,111,42,20,0.0,6154,0.0,150.0,0.0,293.0,1.0,3.0,0.0,1.0,1.0,3860.6935876335456,0.0,0.0,11335.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11335.0,1,0,1_1,1_0 -7572,10.0,20.0,64.0,111,75,50,0.0,6156,0.0,0.0,0.0,294.0,0.0,5.0,1.0,3.0,2.0,3243.70469163901,3986.0,0.0,27730.0,5,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13865.0,2,0,2_1,2_0 -7573,0.0,0.0,76.0,112,77,71,0.0,6158,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4606.334460989281,0.0,0.0,16004.0,5,3,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16004.0,2,0,2_0,2_1 -7574,4.0,6.0,39.0,111,54,42,0.0,616,0.0,425.0,0.0,608.0,2.0,5.0,2.0,4.0,2.1,2883.8501972376785,3814.0,0.0,47460.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22600.0,4,0,4_0,4_0 -7575,0.0,0.0,69.0,112,77,71,0.0,6160,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2908.538502644243,0.0,0.0,13690.0,5,1,7,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13690.0,2,0,2_0,2_0 -7576,1.0,8.0,52.0,112,63,50,2.0,6161,0.0,700.0,0.0,0.0,4.0,7.0,2.0,4.0,2.5,1220.284915878772,14495.0,6000.0,61260.0,1,2,9,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,24504.0,4,0,4_0,4_1 -7577,0.0,12.0,57.0,400,13,50,2.0,6164,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1993.3999216432578,4225.0,5000.0,5342.0,1,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,3561.3333333333335,1,0,1_0,1_1 -7578,1.0,1.0,57.0,112,56,50,1.0,6165,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1369.6754615096438,2606.0,18200.0,19653.0,1,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13102.0,2,0,2_0,2_0 -7579,13.0,14.0,77.0,111,74,20,0.0,6167,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1558.9905522528297,0.0,0.0,45068.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30045.333333333332,5,0,5,5_0 -7580,1.0,12.0,48.0,111,48,20,2.0,6169,0.0,800.0,160.0,0.0,3.0,6.0,2.0,4.0,2.5,1181.5400752985279,5195.0,3000.0,99738.0,1,1,7,5.0,4,4.0,0.0,1.0,0,0,1,0,0,0,2.0,2.0,39895.2,5,0,5,5_0 -7581,11.0,11.0,75.0,111,75,60,0.0,6171,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3016.396376562729,0.0,0.0,13509.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13509.0,2,0,2_0,2_0 -7582,22.0,22.0,88.0,300,71,71,0.0,6173,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2859.997384788787,1712.0,0.0,13072.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13072.0,2,0,2_0,2_1 -7583,11.0,20.0,75.0,120,72,70,0.0,6174,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2153.5467189283286,1560.0,0.0,12040.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12040.0,1,0,1_0,1_1 -7584,1.0,1.0,63.0,112,56,70,1.0,6175,0.0,476.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2183.1516566186688,2080.0,11500.0,17464.0,1,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17464.0,3,0,3_0,3_1 -7585,0.0,0.0,38.0,111,63,31,0.0,6176,0.0,0.0,0.0,440.0,1.0,2.0,0.0,1.0,1.0,4104.544827342818,0.0,0.0,32089.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32089.0,5,0,5,5_0 -7586,12.0,16.0,41.0,111,21,71,0.0,6179,0.0,0.0,50.0,461.0,2.0,5.0,2.0,4.0,2.3,3642.006734970948,5039.0,0.0,50471.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,21943.913043478264,4,0,4_0,4_0 -7587,0.0,0.0,65.0,111,78,71,0.0,618,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2808.1681393012677,0.0,0.0,14814.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14814.0,2,0,2_0,2_0 -7588,6.0,6.0,55.0,111,43,60,0.0,6180,0.0,1800.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,1058.6048146616224,6054.0,0.0,137228.0,1,1,10,8.0,4,3.0,1.0,1.0,0,0,0,0,1,0,1.0,2.0,45742.666666666664,5,0,5,5_0 -7589,1.0,1.0,57.0,300,38,50,0.0,6182,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1968.1457879309144,0.0,0.0,55292.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,55292.0,5,0,5,5_1 -7590,4.0,10.0,33.0,111,35,10,0.0,6184,0.0,0.0,100.0,0.0,2.0,4.0,1.0,3.0,1.8,4839.708739249617,3286.0,0.0,79049.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,43916.11111111111,5,0,5,5_0 -7591,5.0,15.0,34.0,111,37,50,0.0,6185,0.0,220.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2134.776030405712,0.0,0.0,69270.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,38483.333333333336,5,0,5,5_0 -7592,3.0,6.0,44.0,111,48,50,0.0,6186,0.0,1100.0,0.0,0.0,1.0,3.0,2.0,3.0,2.0,2130.710765868217,6974.0,0.0,48624.0,1,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24312.0,4,0,4_0,4_0 -7593,33.0,33.0,60.0,112,75,41,0.0,6187,0.0,200.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,5649.120660486209,0.0,0.0,43432.0,5,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,28954.666666666668,4,0,4_0,4_0 -7594,7.0,7.0,45.0,111,33,30,0.0,6188,0.0,0.0,199998.0,0.0,2.0,5.0,2.0,4.0,2.3,2517.5831672773757,1577.0,0.0,63510.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,27613.04347826087,4,0,4_0,4_0 -7595,0.0,0.0,41.0,111,38,12,2.0,6189,0.0,100049.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1268.6509416856677,0.0,19000.0,68737.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,28640.416666666668,4,0,4_0,4_0 -7596,5.0,5.0,63.0,111,75,50,0.0,619,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1535.4197384628762,2809.0,0.0,41170.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,27446.666666666668,4,0,4_0,4_0 -7597,5.0,7.0,60.0,112,11,31,0.0,6190,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2789.326077918895,4577.0,0.0,30199.0,1,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20132.666666666668,3,0,3_0,3_1 -7598,6.0,11.0,42.0,111,64,50,0.0,6191,0.0,150.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,1947.7813957615417,2609.0,0.0,38846.0,1,2,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,25897.333333333332,4,0,4_0,4_0 -7599,7.0,19.0,75.0,211,86,71,0.0,6192,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,7330.918413221869,0.0,0.0,11739.0,6,1,2,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11739.0,1,0,1_0,1_0 -7600,13.0,15.0,73.0,111,77,50,0.0,6194,0.0,0.0,0.0,342.0,0.0,2.0,0.0,1.0,1.0,1362.591021092646,1219.0,0.0,19270.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19270.0,3,0,3_0,3_0 -7601,0.0,0.0,48.0,111,85,41,0.0,6195,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4104.821871554513,0.0,0.0,11150.0,7,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11150.0,1,0,1_1,1_0 -7602,1.0,1.0,47.0,112,47,20,1.0,6196,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.1,1433.6096140580953,2865.0,19500.0,43820.0,1,1,10,2.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20866.666666666664,3,0,3_0,3_0 -7603,2.0,11.0,57.0,211,33,44,0.0,6197,0.0,500.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1134.216686893556,7956.0,0.0,37520.0,1,2,3,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25013.333333333332,4,0,4_0,4_0 -7604,3.0,3.0,42.0,111,21,12,0.0,6198,0.0,0.0,99999.0,0.0,2.0,6.0,2.0,4.0,2.1,4416.811198289586,2080.0,0.0,136934.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,65206.666666666664,5,0,5,5_0 -7605,5.0,10.0,30.0,111,43,33,0.0,6199,0.0,0.0,90.0,0.0,1.0,3.0,0.0,1.0,1.0,3948.9385832246603,0.0,0.0,23402.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23402.0,4,0,4_0,4_0 -7606,0.0,0.0,36.0,111,42,20,0.0,62,0.0,0.0,0.0,468.0,1.0,1.0,0.0,1.0,1.0,3469.277623746239,0.0,0.0,25676.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25676.0,4,0,4_0,4_0 -7607,8.0,20.0,63.0,300,72,70,0.0,620,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2623.76634046163,0.0,0.0,19130.0,5,1,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,12753.333333333334,2,0,2_0,2_1 -7608,3.0,4.0,21.0,112,56,50,0.0,6201,0.0,750.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2697.199698549078,0.0,0.0,26203.0,1,3,7,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,26203.0,4,0,4_0,4_1 -7609,8.0,14.0,57.0,112,42,20,0.0,6203,0.0,54.0,208.0,0.0,2.0,5.0,1.0,3.0,1.8,2502.1741321613135,1553.0,0.0,55556.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,30864.444444444445,5,0,5,5_1 -7610,13.0,13.0,58.0,111,54,60,0.0,6204,0.0,0.0,0.0,600.0,1.0,2.0,0.0,2.0,1.5,3578.859175045854,0.0,0.0,51150.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,34100.0,5,0,5,5_0 -7611,3.0,10.0,43.0,211,48,31,0.0,6206,0.0,230.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2863.469954342173,2434.0,0.0,44900.0,1,1,2,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21380.95238095238,3,0,3_0,3_0 -7612,6.0,6.0,38.0,111,37,31,0.0,6208,0.0,135.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2555.164146883569,0.0,0.0,47598.0,1,2,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,47598.0,5,0,5,5_0 -7613,5.0,5.0,36.0,300,85,60,0.0,6209,0.0,0.0,300.0,120.0,1.0,4.0,3.0,5.0,2.4,1648.3102620418995,3276.0,0.0,31985.0,6,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,13327.083333333334,2,0,2_1,2_1 -7614,2.0,2.0,44.0,112,34,31,0.0,621,0.0,550.0,0.0,0.0,2.0,8.0,3.0,5.0,2.6,1807.6995283800231,1612.0,0.0,57554.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22136.153846153844,4,0,4_0,4_1 -7615,4.0,4.0,42.0,112,54,50,0.0,6210,0.0,0.0,0.0,0.0,1.0,7.0,4.0,5.0,2.4,829.0565506028873,1560.0,0.0,8156.0,4,2,8,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,3398.3333333333335,1,0,1_0,1_0 -7616,1.0,1.0,27.0,111,47,31,1.0,6211,0.0,50.0,0.0,670.0,2.0,3.0,0.0,2.0,1.5,3081.6296045041167,2392.0,25000.0,22234.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14822.666666666666,2,0,2_0,2_0 -7617,5.0,12.0,43.0,112,46,50,0.0,6212,0.0,240.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,1903.2962404965363,2080.0,0.0,52250.0,1,2,6,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,22717.391304347828,4,0,4_0,4_1 -7618,19.0,19.0,46.0,111,38,31,0.0,6213,0.0,0.0,0.0,422.0,1.0,2.0,0.0,1.0,1.0,3045.5328263606357,0.0,0.0,40861.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,40861.0,5,0,5,5_0 -7619,13.0,13.0,63.0,111,72,50,0.0,6214,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3379.507099913706,0.0,0.0,9447.0,6,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,9447.0,1,0,1_0,1_0 -7620,0.0,0.0,85.0,120,71,70,0.0,6216,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4193.219329473043,0.0,0.0,14716.0,5,1,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14716.0,2,0,2_0,2_0 -7621,1.0,1.0,71.0,111,75,71,0.0,6217,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3682.257400563892,0.0,0.0,28654.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19102.666666666668,3,0,3_0,3_0 -7622,0.0,0.0,62.0,111,77,60,0.0,6218,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2984.326272714648,0.0,0.0,14337.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14337.0,2,0,2_0,2_0 -7623,2.0,2.0,68.0,112,74,50,0.0,6219,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1246.7076636214404,3389.0,0.0,45088.0,5,1,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,30058.666666666668,5,0,5,5_0 -7624,1.0,2.0,45.0,111,31,10,0.0,622,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,7633.788897976481,0.0,0.0,141556.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,94370.66666666667,5,0,5,5_0 -7625,5.0,10.0,38.0,111,42,20,0.0,6221,0.0,0.0,200.0,0.0,2.0,4.0,1.0,3.0,1.8,2885.988784159434,2246.0,0.0,51179.0,1,2,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,28432.777777777777,4,0,4_0,4_0 -7626,7.0,11.0,44.0,112,47,31,0.0,6222,0.0,390.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2793.6042002005534,0.0,0.0,52972.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22071.666666666668,4,0,4_0,4_1 -7627,0.0,0.0,87.0,111,75,71,0.0,6223,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4178.905724815624,0.0,0.0,24921.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16614.0,2,0,2_0,2_0 -7628,9.0,14.0,51.0,112,37,42,0.0,6225,0.0,0.0,130.0,0.0,2.0,7.0,0.0,2.0,1.5,1937.170533298192,3141.0,0.0,45817.0,1,1,8,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,30544.666666666668,5,0,5,5_1 -7629,1.0,12.0,57.0,111,34,10,2.0,6228,0.0,0.0,150.0,0.0,1.0,3.0,0.0,1.0,1.0,2196.1421409682557,0.0,2000.0,27778.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,27778.0,4,0,4_0,4_0 -7630,3.0,8.0,47.0,111,47,50,0.0,623,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2625.7294997526483,3017.0,0.0,35374.0,1,4,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23582.666666666668,4,0,4_0,4_0 -7631,0.0,0.0,29.0,112,69,10,0.0,6232,0.0,0.0,0.0,200.0,1.0,3.0,0.0,1.0,1.0,5221.015297295802,0.0,0.0,7630.0,1,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,7630.0,1,0,1_0,1_0 -7632,5.0,7.0,64.0,111,74,60,0.0,6233,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1753.4253710781763,3170.0,0.0,42130.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28086.666666666668,4,0,4_0,4_0 -7633,7.0,7.0,77.0,120,78,70,0.0,6234,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3191.153723487718,0.0,0.0,13151.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13151.0,2,0,2_0,2_1 -7634,16.0,16.0,75.0,111,78,70,0.0,6239,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2683.2870802944776,1999.0,0.0,22110.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14740.0,2,0,2_0,2_0 -7635,2.0,17.0,62.0,120,71,71,0.0,624,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2602.40650551768,0.0,0.0,35360.0,5,2,0,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,23573.333333333332,4,0,4_0,4_0 -7636,8.0,10.0,27.0,112,56,31,0.0,6240,0.0,250.0,120.0,0.0,2.0,6.0,2.0,4.0,2.1,2420.6671810959906,0.0,0.0,43758.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20837.142857142855,3,0,3_0,3_1 -7637,0.0,0.0,24.0,111,84,20,0.0,6242,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3614.9342822214935,0.0,0.0,1934.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,1934.0,1,0,1_1,1_0 -7638,0.0,0.0,27.0,111,84,10,0.0,6243,0.0,0.0,0.0,290.0,0.0,2.0,0.0,1.0,1.0,7890.023917797284,0.0,0.0,23490.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23490.0,4,0,4_0,4_0 -7639,1.0,15.0,48.0,111,62,50,2.0,6244,0.0,180.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2221.996577078209,1560.0,2300.0,25744.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14302.222222222223,2,0,2_1,2_0 -7640,8.0,10.0,49.0,400,85,50,0.0,6245,0.0,0.0,0.0,10.0,0.0,3.0,0.0,3.0,1.6,2681.7499470395064,1040.0,0.0,13334.0,7,3,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,8333.75,1,0,1_1,1_1 -7641,0.0,0.0,56.0,111,77,71,0.0,6246,0.0,0.0,0.0,174.0,1.0,4.0,1.0,2.0,1.5,3231.114846153482,0.0,0.0,9858.0,6,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,6572.0,1,0,1_1,1_0 -7642,9.0,9.0,77.0,112,71,70,0.0,6247,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2955.1846201704716,1448.0,0.0,9852.0,5,1,9,3.0,1,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,9852.0,1,0,1_0,1_0 -7643,0.0,22.0,35.0,111,62,50,2.0,6248,0.0,1200.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2029.655457290163,3640.0,3200.0,25690.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,14272.222222222223,2,0,2_0,2_0 -7644,11.0,15.0,63.0,212,77,70,0.0,625,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1301.2125489429727,2080.0,0.0,13326.0,5,3,2,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,13326.0,2,0,2_1,2_1 -7645,2.0,2.0,61.0,112,78,70,0.0,6251,0.0,0.0,200.0,0.0,1.0,5.0,0.0,2.0,1.5,2071.3269537877004,0.0,0.0,28539.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19026.0,3,0,3_0,3_0 -7646,16.0,18.0,81.0,111,78,71,0.0,6253,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2933.225824193037,0.0,0.0,15590.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15590.0,2,0,2_0,2_0 -7647,0.0,0.0,25.0,111,55,43,0.0,6255,0.0,0.0,0.0,188.0,1.0,3.0,0.0,1.0,1.0,2292.558415166714,0.0,0.0,12485.0,1,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12485.0,1,0,1_0,1_0 -7648,12.0,12.0,45.0,112,65,71,0.0,6256,0.0,440.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3166.7230272606707,4338.0,0.0,42960.0,1,2,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18678.26086956522,3,0,3_0,3_0 -7649,2.0,4.0,67.0,400,78,71,0.0,6257,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4059.1853225321815,1404.0,0.0,21750.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14500.0,2,0,2_0,2_1 -7650,4.0,4.0,67.0,111,77,60,0.0,6258,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2518.862724069891,1300.0,0.0,23276.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23276.0,4,0,4_0,4_0 -7651,6.0,9.0,65.0,111,77,60,0.0,6259,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2206.3010021373543,1680.0,0.0,13566.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13566.0,2,0,2_0,2_0 -7652,5.0,14.0,49.0,111,52,71,0.0,6260,0.0,80.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,5179.855907109938,4372.0,0.0,39166.0,1,4,6,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,17028.695652173916,3,0,3_0,3_0 -7653,1.0,10.0,34.0,111,55,50,2.0,6261,0.0,70.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,1111.9806964111115,1820.0,8500.0,29802.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,11037.777777777777,1,0,1_1,1_0 -7654,20.0,20.0,79.0,111,78,71,0.0,6262,0.0,0.0,0.0,276.0,0.0,3.0,0.0,2.0,1.5,3246.0648458910246,0.0,0.0,25220.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16813.333333333332,2,0,2_0,2_0 -7655,3.0,19.0,22.0,400,62,50,0.0,6264,0.0,250.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,2613.1848428216085,0.0,0.0,22921.0,1,3,0,0.0,4,4.0,0.0,0.0,1,0,0,0,0,1,0.0,4.0,12733.888888888889,2,0,2_1,2_1 -7656,0.0,0.0,43.0,111,54,31,0.0,6265,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,3955.6634910618177,0.0,0.0,15491.0,1,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8606.111111111111,1,0,1_1,1_0 -7657,5.0,5.0,70.0,111,74,10,0.0,6268,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1033.2499092718933,0.0,0.0,72905.0,5,2,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,48603.333333333336,5,0,5,5_0 -7658,5.0,5.0,72.0,111,74,50,0.0,6269,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1568.5924581454533,0.0,0.0,55230.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36820.0,5,0,5,5_0 -7659,0.0,0.0,47.0,111,43,20,0.0,627,0.0,0.0,0.0,1050.0,1.0,3.0,0.0,1.0,1.0,3863.2146859301524,0.0,0.0,13822.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13822.0,2,0,2_0,2_0 -7660,1.0,1.0,54.0,111,31,10,1.0,6272,0.0,500.0,0.0,0.0,2.0,5.0,4.0,6.0,3.1,973.2628098836171,2912.0,21000.0,84723.0,1,1,8,6.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,27330.0,4,0,4_0,4_0 -7661,2.0,2.0,43.0,112,62,42,0.0,6274,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,7273.444816463601,2250.0,0.0,40820.0,1,4,4,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19438.095238095237,3,0,3_0,3_1 -7662,1.0,18.0,38.0,111,63,50,2.0,6276,0.0,50.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,2052.6184414082236,1040.0,500.0,17910.0,4,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,6888.461538461538,1,0,1_1,1_0 -7663,4.0,5.0,55.0,111,37,10,0.0,6277,0.0,350.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1775.2038442819803,1627.0,0.0,80557.0,1,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,53704.666666666664,5,0,5,5_0 -7664,4.0,4.0,57.0,120,77,42,0.0,6281,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2551.3020926668437,0.0,0.0,13536.0,6,4,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,13536.0,2,0,2_0,2_1 -7665,0.0,6.0,29.0,112,63,50,0.0,6284,0.0,50.0,50.0,0.0,1.0,2.0,0.0,1.0,1.0,5822.310326035631,3640.0,0.0,54806.0,1,1,8,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,54806.0,5,0,5,5_0 -7666,9.0,12.0,44.0,112,62,50,0.0,6285,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.3,2214.480418602655,2912.0,0.0,41121.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17878.695652173916,3,0,3_0,3_1 -7667,7.0,11.0,76.0,120,75,71,0.0,6286,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5480.578273925074,0.0,0.0,21579.0,5,1,0,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21579.0,3,0,3_0,3_0 -7668,0.0,1.0,66.0,111,74,50,2.0,6288,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1757.5110332744298,4498.0,20000.0,34514.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23009.333333333332,4,0,4_0,4_0 -7669,13.0,13.0,56.0,112,53,41,0.0,6289,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1404.4473966801438,1560.0,0.0,54298.0,1,1,6,1.0,3,4.0,0.0,0.0,0,1,0,0,0,0,2.0,2.0,36198.666666666664,5,0,5,5_0 -7670,0.0,0.0,49.0,111,52,41,0.0,629,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1246.215042009794,0.0,0.0,17990.0,1,3,7,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9994.444444444443,1,0,1_1,1_0 -7671,0.0,0.0,90.0,111,77,70,0.0,6290,0.0,0.0,0.0,689.0,0.0,3.0,0.0,1.0,1.0,3452.330711650691,0.0,0.0,15643.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15643.0,2,0,2_0,2_0 -7672,3.0,13.0,55.0,400,43,33,0.0,6292,0.0,750.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1841.287218223531,3410.0,0.0,54540.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,21816.0,4,0,4_0,4_1 -7673,0.0,0.0,49.0,111,37,50,0.0,6293,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1171.9426965101786,0.0,0.0,58890.0,1,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39260.0,5,0,5,5_0 -7674,0.0,0.0,75.0,111,77,71,0.0,6294,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3201.7025454162713,0.0,0.0,16727.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16727.0,2,0,2_0,2_0 -7675,13.0,14.0,71.0,111,75,50,0.0,6295,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1359.692539840186,0.0,0.0,32483.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21655.333333333332,3,0,3_0,3_0 -7676,4.0,4.0,36.0,111,46,31,0.0,6296,0.0,500.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2350.0221932850745,0.0,0.0,38941.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,16225.416666666668,2,0,2_1,2_0 -7677,8.0,10.0,60.0,300,75,70,0.0,6297,0.0,500.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2150.695349173919,0.0,0.0,51350.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,34233.333333333336,5,0,5,5_1 -7678,3.0,4.0,60.0,112,46,50,0.0,6298,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1765.1682114253153,1820.0,0.0,44704.0,1,2,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,29802.666666666668,5,0,5,5_0 -7679,1.0,21.0,42.0,111,63,71,2.0,6299,0.0,0.0,0.0,98.0,2.0,4.0,2.0,4.0,2.5,3107.895587367468,1560.0,500.0,18070.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,7228.0,1,0,1_1,1_0 -7680,0.0,0.0,24.0,111,81,12,0.0,630,0.0,0.0,0.0,450.0,1.0,1.0,0.0,1.0,1.0,3890.0334957231285,1300.0,0.0,8820.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8820.0,1,0,1_0,1_0 -7681,6.0,12.0,35.0,111,47,31,0.0,6301,0.0,80.0,30.0,0.0,2.0,3.0,0.0,2.0,1.5,2242.165924805463,0.0,0.0,25271.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16847.333333333332,2,0,2_0,2_0 -7682,0.0,0.0,19.0,111,55,60,0.0,6302,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3451.956707471506,0.0,0.0,13683.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13683.0,2,0,2_1,2_0 -7683,0.0,11.0,72.0,120,75,50,0.0,6304,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,869.3007606518179,0.0,0.0,42782.0,5,2,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,28521.333333333332,4,0,4_0,4_0 -7684,2.0,2.0,58.0,112,47,50,0.0,6305,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2172.418699767348,2828.0,0.0,32644.0,1,2,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,32644.0,5,0,5,5_1 -7685,0.0,12.0,23.0,111,68,43,0.0,6306,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,3024.15721649785,6084.0,0.0,18926.0,1,3,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,12617.333333333334,2,0,2_1,2_0 -7686,10.0,10.0,58.0,111,75,60,0.0,631,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1122.0886080686853,4195.0,0.0,36490.0,7,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24326.666666666668,4,0,4_0,4_0 -7687,12.0,12.0,83.0,120,78,70,0.0,6310,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2774.805192372436,0.0,0.0,19520.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13013.333333333334,2,0,2_0,2_1 -7688,1.0,11.0,39.0,112,67,50,0.0,6311,0.0,0.0,156.0,125.0,1.0,3.0,3.0,5.0,2.4,4442.733046556479,2601.0,0.0,29972.0,1,3,8,3.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,12488.333333333334,1,0,1_1,1_0 -7689,2.0,2.0,43.0,112,46,10,0.0,6313,0.0,620.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2660.160232892156,2600.0,0.0,26825.0,1,2,9,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20634.615384615383,3,0,3_0,3_1 -7690,10.0,10.0,65.0,111,74,10,0.0,6315,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2167.5085320195403,2276.0,0.0,39649.0,5,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,39649.0,5,0,5,5_0 -7691,15.0,15.0,82.0,111,78,70,0.0,6316,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2269.976472218568,0.0,0.0,20769.0,5,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20769.0,3,0,3_0,3_0 -7692,9.0,9.0,62.0,221,78,71,0.0,6318,0.0,84.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,4464.122104442328,1040.0,0.0,27659.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18439.333333333332,3,0,3_0,3_0 -7693,9.0,9.0,59.0,112,75,60,0.0,6319,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2152.3871628510565,0.0,0.0,31059.0,5,1,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,31059.0,5,0,5,5_0 -7694,5.0,13.0,55.0,212,46,50,0.0,632,0.0,0.0,150.0,0.0,1.0,3.0,0.0,2.0,1.5,1206.4540923398704,0.0,0.0,36230.0,1,3,1,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24153.333333333332,4,0,4_0,4_1 -7695,15.0,15.0,80.0,400,77,70,0.0,6320,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1968.362553018535,0.0,0.0,20650.0,5,4,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13766.666666666666,2,0,2_0,2_0 -7696,3.0,4.0,53.0,111,43,42,0.0,6322,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3264.5192258499574,0.0,0.0,39911.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26607.333333333332,4,0,4_0,4_0 -7697,3.0,9.0,42.0,111,47,42,0.0,6324,0.0,0.0,250.0,0.0,2.0,4.0,2.0,4.0,2.3,2265.1402440164943,5356.0,0.0,44338.0,4,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,19277.391304347828,3,0,3_0,3_0 -7698,1.0,1.0,27.0,111,42,10,1.0,6329,0.0,30.0,0.0,127.0,1.0,1.0,0.0,1.0,1.0,3206.842026887746,0.0,16200.0,11763.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11763.0,1,0,1_1,1_0 -7699,5.0,12.0,58.0,112,67,70,0.0,633,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1653.902844589337,1040.0,0.0,11940.0,4,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11940.0,1,0,1_0,1_1 -7700,6.0,6.0,53.0,111,37,42,0.0,6330,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2131.2000014069095,0.0,0.0,41803.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19906.190476190477,3,0,3_0,3_0 -7701,1.0,5.0,61.0,111,74,20,2.0,6333,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1298.6986260893204,3798.0,13000.0,58682.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,39121.333333333336,5,0,5,5_0 -7702,2.0,10.0,23.0,120,52,33,0.0,6334,0.0,0.0,100.0,0.0,2.0,7.0,0.0,2.0,1.5,3075.089521101916,0.0,0.0,23563.0,1,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,15708.666666666666,2,0,2_0,2_1 -7703,1.0,24.0,56.0,112,77,71,2.0,6337,0.0,150.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2042.8681552660496,2207.0,100.0,38700.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,25800.0,4,0,4_0,4_1 -7704,18.0,21.0,75.0,300,78,71,0.0,6339,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2707.934099674033,2809.0,0.0,28262.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18841.333333333332,3,0,3_0,3_0 -7705,15.0,15.0,59.0,120,75,50,0.0,634,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2371.955907043185,2405.0,0.0,36104.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24069.333333333332,4,0,4_0,4_1 -7706,21.0,21.0,74.0,111,77,71,0.0,6341,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3519.3686008276286,1326.0,0.0,20632.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20632.0,3,0,3_0,3_0 -7707,4.0,8.0,70.0,111,74,10,0.0,6345,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1312.9386274545186,1976.0,0.0,88584.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,59056.0,5,0,5,5_0 -7708,3.0,6.0,74.0,400,75,70,0.0,6347,0.0,0.0,0.0,259.0,0.0,4.0,0.0,2.0,1.5,5946.567498919314,1820.0,0.0,19838.0,5,3,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13225.333333333334,2,0,2_0,2_0 -7709,4.0,4.0,78.0,111,75,71,0.0,6348,0.0,0.0,0.0,510.0,0.0,4.0,0.0,2.0,1.5,2433.1627917663627,0.0,0.0,23571.0,5,3,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15714.0,2,0,2_0,2_0 -7710,1.0,1.0,34.0,111,42,20,1.0,6349,0.0,10.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2063.563915513944,0.0,13955.0,28259.0,1,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28259.0,4,0,4_0,4_0 -7711,3.0,13.0,21.0,111,84,41,0.0,6350,0.0,0.0,99999.0,115.0,0.0,1.0,0.0,1.0,1.0,3680.288400961677,0.0,0.0,4399.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,4399.0,1,0,1_1,1_0 -7712,2.0,3.0,42.0,112,31,10,0.0,6353,0.0,0.0,1200.0,0.0,2.0,8.0,1.0,3.0,1.8,1695.2583638535627,3713.0,0.0,308518.0,1,1,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,171398.88888888888,5,0,5,5_1 -7713,8.0,9.0,50.0,400,67,50,0.0,6354,0.0,85.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3445.0211143447077,3380.0,0.0,19971.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19971.0,3,0,3_0,3_1 -7714,8.0,10.0,68.0,400,74,50,0.0,6355,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2442.2773681235067,0.0,0.0,54474.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,36316.0,5,0,5,5_1 -7715,6.0,6.0,59.0,112,85,50,0.0,6359,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1988.8812450301182,0.0,0.0,11206.0,6,2,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11206.0,1,0,1_0,1_1 -7716,1.0,1.0,40.0,111,46,10,1.0,636,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2454.839413160629,1442.0,21000.0,85161.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,40552.85714285714,5,0,5,5_0 -7717,2.0,3.0,32.0,111,37,10,0.0,6360,0.0,320.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2199.256347936892,0.0,0.0,60676.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,28893.333333333332,4,0,4_0,4_0 -7718,11.0,11.0,61.0,111,64,70,0.0,6361,0.0,0.0,0.0,281.0,2.0,4.0,0.0,2.0,1.5,3709.769689255578,0.0,0.0,34070.0,1,3,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22713.333333333332,4,0,4_0,4_0 -7719,6.0,7.0,54.0,111,52,71,0.0,6362,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3181.1698864067816,5120.0,0.0,43971.0,1,4,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,29314.0,5,0,5,5_0 -7720,20.0,38.0,37.0,111,38,20,0.0,6363,0.0,1400.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2884.7161639914384,0.0,0.0,67358.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,44905.333333333336,5,0,5,5_0 -7721,1.0,2.0,25.0,300,38,12,2.0,6364,0.0,330.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2335.61931351633,3114.0,22160.0,59401.0,1,3,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,59401.0,5,0,5,5_1 -7722,8.0,8.0,37.0,111,42,31,0.0,6365,0.0,52.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1380.8073759154531,3241.0,0.0,45320.0,1,2,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30213.333333333332,5,0,5,5_0 -7723,2.0,2.0,49.0,111,38,31,0.0,6366,0.0,29.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2105.960938144196,0.0,0.0,81707.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,35524.782608695656,5,0,5,5_0 -7724,0.0,0.0,82.0,111,78,60,0.0,6369,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4030.6997912403854,0.0,0.0,1360.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,1360.0,1,0,1_0,1_0 -7725,17.0,23.0,84.0,112,78,71,0.0,637,0.0,0.0,0.0,0.0,0.0,6.0,0.0,3.0,2.0,1144.13754931602,3146.0,0.0,25863.0,5,4,7,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12931.5,2,0,2_0,2_1 -7726,5.0,14.0,52.0,111,22,43,0.0,6371,0.0,0.0,0.0,482.0,1.0,2.0,0.0,1.0,1.0,5180.839571339029,1560.0,0.0,19269.0,1,3,8,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,19269.0,3,0,3_0,3_0 -7727,4.0,4.0,33.0,111,43,33,0.0,6373,0.0,0.0,20.0,0.0,1.0,5.0,0.0,1.0,1.0,2811.1130678858717,0.0,0.0,21930.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21930.0,4,0,4_0,4_0 -7728,11.0,11.0,34.0,111,67,20,0.0,6375,0.0,50.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1423.8179750299423,2692.0,0.0,5370.0,4,4,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,5370.0,1,0,1_0,1_0 -7729,3.0,3.0,60.0,112,78,70,0.0,6377,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1697.0480545072862,3042.0,0.0,16350.0,5,1,10,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16350.0,2,0,2_0,2_0 -7730,8.0,8.0,64.0,112,72,50,0.0,6379,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2284.2600036285667,0.0,0.0,30003.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20002.0,3,0,3_0,3_0 -7731,4.0,4.0,58.0,111,42,30,0.0,638,0.0,0.0,150.0,0.0,1.0,6.0,1.0,3.0,2.0,1427.642053385113,6733.0,0.0,52696.0,1,2,7,6.0,4,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,26348.0,4,0,4_0,4_0 -7732,0.0,0.0,67.0,111,78,71,0.0,6381,0.0,0.0,0.0,279.0,0.0,3.0,0.0,1.0,1.0,4425.213872079848,0.0,0.0,17380.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17380.0,3,0,3_0,3_0 -7733,7.0,7.0,61.0,300,74,60,0.0,6384,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2022.662859588995,2444.0,0.0,44543.0,5,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,29695.333333333332,5,0,5,5_1 -7734,2.0,6.0,42.0,300,38,31,0.0,6385,0.0,0.0,0.0,0.0,2.0,7.0,2.0,5.0,3.0,1723.2335473898863,0.0,0.0,48399.0,1,1,0,0.0,5,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,16133.0,2,0,2_0,2_1 -7735,0.0,0.0,33.0,111,63,50,0.0,6386,0.0,0.0,0.0,252.0,1.0,3.0,0.0,2.0,1.5,3533.533623757542,0.0,0.0,21970.0,1,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14646.666666666666,2,0,2_0,2_0 -7736,5.0,8.0,43.0,111,54,12,0.0,6387,0.0,300.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2711.311596698042,2934.0,0.0,33048.0,1,2,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,33048.0,5,0,5,5_0 -7737,3.0,6.0,79.0,111,72,50,0.0,6388,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1849.1528726596994,0.0,0.0,12143.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,8095.333333333333,1,0,1_0,1_0 -7738,2.0,10.0,39.0,111,64,41,0.0,6389,0.0,60.0,0.0,539.0,2.0,5.0,2.0,4.0,2.1,2737.2248589528112,0.0,0.0,32016.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15245.714285714284,2,0,2_0,2_0 -7739,0.0,0.0,24.0,111,85,60,0.0,6390,0.0,0.0,0.0,0.0,0.0,3.0,2.0,4.0,2.1,4302.433212609296,0.0,0.0,14278.0,6,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6799.047619047618,1,0,1_1,1_0 -7740,10.0,10.0,44.0,112,69,71,0.0,6391,0.0,316.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1729.4241761430053,2600.0,0.0,51042.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21267.5,3,0,3_0,3_1 -7741,0.0,16.0,58.0,112,45,41,0.0,6393,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1416.0076345035798,13728.0,0.0,95085.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,47542.5,5,0,5,5_1 -7742,0.0,0.0,52.0,111,56,60,0.0,6394,0.0,0.0,0.0,480.0,1.0,2.0,0.0,1.0,1.0,5667.038027556025,0.0,0.0,17709.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17709.0,3,0,3_0,3_0 -7743,0.0,8.0,26.0,111,63,50,2.0,6395,0.0,0.0,0.0,0.0,1.0,2.0,2.0,4.0,2.1,5948.719128702099,1300.0,4550.0,13090.0,4,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,6233.333333333333,1,0,1_1,1_0 -7744,8.0,9.0,35.0,111,54,41,0.0,6399,0.0,0.0,0.0,335.0,1.0,3.0,1.0,2.0,1.3,3443.372855825948,0.0,0.0,20075.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,15442.307692307691,2,0,2_1,2_0 -7745,0.0,16.0,48.0,111,85,31,0.0,64,0.0,0.0,170.0,0.0,1.0,9.0,1.0,3.0,2.0,2398.185768565184,7020.0,0.0,31114.0,4,1,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,15557.0,2,0,2_0,2_0 -7746,0.0,0.0,69.0,112,77,70,0.0,640,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,4202.1721284854775,0.0,0.0,18386.0,5,1,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12257.333333333334,1,0,1_0,1_1 -7747,10.0,10.0,67.0,111,75,60,0.0,6400,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2489.171097546322,0.0,0.0,25915.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25915.0,4,0,4_0,4_0 -7748,0.0,3.0,75.0,120,71,70,0.0,6402,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2651.256014544505,0.0,0.0,8928.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8928.0,1,0,1_0,1_1 -7749,1.0,1.0,73.0,111,77,60,0.0,6403,0.0,0.0,0.0,283.0,0.0,3.0,0.0,1.0,1.0,4671.4761976598675,2080.0,0.0,14754.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,14754.0,2,0,2_1,2_0 -7750,5.0,10.0,60.0,111,62,50,0.0,6405,0.0,350.0,0.0,0.0,3.0,5.0,1.0,4.0,2.5,1696.0277239803595,4264.0,0.0,59910.0,1,2,8,6.0,5,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,23964.0,4,0,4_0,4_0 -7751,8.0,8.0,56.0,111,46,10,0.0,6406,0.0,0.0,0.0,271.0,1.0,3.0,0.0,1.0,1.0,2594.5142698863374,1040.0,0.0,16314.0,1,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,16314.0,2,0,2_1,2_0 -7752,16.0,16.0,56.0,400,52,50,0.0,6407,0.0,0.0,0.0,252.0,1.0,3.0,0.0,1.0,1.0,5722.896091542138,0.0,0.0,19636.0,1,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19636.0,3,0,3_0,3_0 -7753,3.0,3.0,64.0,120,75,50,0.0,6408,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1002.5429425094204,2808.0,0.0,32089.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21392.666666666668,3,0,3_0,3_0 -7754,4.0,4.0,80.0,111,77,50,0.0,6409,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2658.378726729256,1560.0,0.0,16237.0,5,4,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16237.0,2,0,2_0,2_0 -7755,9.0,9.0,77.0,400,74,41,0.0,6410,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2822.2288390498065,0.0,0.0,39663.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,39663.0,5,0,5,5_1 -7756,6.0,16.0,45.0,120,64,50,0.0,6411,0.0,99999.0,99999.0,0.0,2.0,6.0,3.0,4.0,2.3,1141.1253032381599,2254.0,0.0,43284.0,1,2,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,18819.13043478261,3,0,3_1,3_1 -7757,5.0,7.0,32.0,112,54,50,0.0,6412,0.0,280.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1534.6534720406987,3354.0,0.0,43423.0,1,2,7,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,20677.619047619046,3,0,3_0,3_1 -7758,5.0,18.0,55.0,111,45,41,0.0,6414,0.0,0.0,80.0,584.0,2.0,5.0,2.0,3.0,2.0,2374.590538215138,0.0,0.0,65012.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,32506.0,5,0,5,5_0 -7759,4.0,10.0,48.0,111,45,41,0.0,6415,0.0,30.0,0.0,507.0,1.0,5.0,0.0,1.0,1.0,3408.5950100842897,1570.0,0.0,28110.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28110.0,4,0,4_0,4_0 -7760,4.0,11.0,38.0,111,62,70,0.0,6416,0.0,250.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,1392.2859664880705,3380.0,0.0,26570.0,1,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11070.833333333334,1,0,1_1,1_0 -7761,4.0,23.0,43.0,120,43,33,0.0,6421,0.0,0.0,600.0,0.0,1.0,4.0,0.0,2.0,1.5,4201.277227252582,1044.0,0.0,43043.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,28695.333333333332,4,0,4_0,4_1 -7762,3.0,9.0,67.0,112,75,60,0.0,6422,0.0,0.0,0.0,0.0,0.0,12.0,0.0,2.0,1.5,2283.9686729478626,1811.0,0.0,33817.0,5,1,7,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22544.666666666668,4,0,4_0,4_0 -7763,3.0,3.0,36.0,112,52,44,0.0,6424,0.0,50.0,60.0,0.0,2.0,4.0,3.0,5.0,2.6,2157.524741374907,1786.0,0.0,53356.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20521.53846153846,3,0,3_0,3_1 -7764,4.0,8.0,28.0,111,46,31,0.0,6426,0.0,380.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3634.9113442070948,0.0,0.0,21299.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,21299.0,3,0,3_0,3_0 -7765,3.0,3.0,75.0,400,75,30,0.0,6429,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1926.297926265797,2530.0,0.0,45763.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,30508.666666666668,5,0,5,5_1 -7766,0.0,0.0,42.0,111,56,41,0.0,643,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3767.0186680461,0.0,0.0,13360.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13360.0,2,0,2_1,2_0 -7767,0.0,0.0,81.0,111,77,70,0.0,6430,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2996.9011991064294,0.0,0.0,29169.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29169.0,5,0,5,5_0 -7768,3.0,11.0,24.0,112,47,31,0.0,6431,0.0,500.0,0.0,630.0,2.0,2.0,0.0,2.0,1.5,3040.960416677528,2236.0,0.0,33460.0,1,3,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22306.666666666668,4,0,4_0,4_1 -7769,9.0,9.0,61.0,111,34,10,0.0,6432,0.0,150.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1198.8189760690527,0.0,0.0,75028.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,50018.666666666664,5,0,5,5_0 -7770,5.0,5.0,65.0,300,75,50,0.0,6433,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1693.9648836081096,0.0,0.0,10790.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10790.0,1,0,1_0,1_1 -7771,7.0,11.0,41.0,111,38,12,0.0,6435,0.0,0.0,260.0,0.0,2.0,5.0,2.0,4.0,2.1,981.325876549705,0.0,0.0,88136.0,1,2,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,3.0,0.0,41969.52380952381,5,0,5,5_0 -7772,14.0,24.0,45.0,400,45,41,0.0,6436,0.0,450.0,0.0,0.0,2.0,4.0,1.0,4.0,2.3,1061.9973960317013,3906.0,0.0,43343.0,1,3,0,0.0,5,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,18844.782608695652,3,0,3_0,3_1 -7773,4.0,4.0,73.0,111,74,10,0.0,6437,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1615.3165765999543,2600.0,0.0,79065.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,52710.0,5,0,5,5_0 -7774,0.0,9.0,33.0,111,62,60,0.0,6439,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,6805.597079092072,2756.0,0.0,26095.0,1,4,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17396.666666666668,3,0,3_0,3_0 -7775,2.0,21.0,36.0,212,47,43,0.0,644,0.0,180.0,40.0,0.0,2.0,4.0,2.0,4.0,2.1,1319.3277167145304,2653.0,0.0,32314.0,1,2,2,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15387.619047619048,2,0,2_0,2_1 -7776,1.0,1.0,48.0,112,54,42,0.0,6440,0.0,325.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2464.2442011977755,1581.0,0.0,33912.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16148.571428571428,2,0,2_0,2_1 -7777,3.0,3.0,49.0,111,38,50,0.0,6443,0.0,900.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3094.563855702157,0.0,0.0,91609.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,50893.88888888889,5,0,5,5_0 -7778,0.0,0.0,89.0,111,77,70,0.0,6445,0.0,0.0,0.0,185.0,0.0,3.0,0.0,1.0,1.0,2425.6985914476495,0.0,0.0,14992.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14992.0,2,0,2_1,2_0 -7779,5.0,15.0,35.0,111,42,43,0.0,6446,0.0,50.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,2041.9842806471797,2978.0,0.0,24720.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13010.526315789475,2,0,2_1,2_0 -7780,3.0,4.0,53.0,400,11,50,0.0,6448,0.0,250.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1084.9305904594553,5044.0,0.0,43953.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,17581.2,3,0,3_0,3_1 -7781,0.0,0.0,45.0,111,62,42,1.0,6449,0.0,400.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,2738.993781592219,0.0,25994.0,26646.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14803.333333333332,2,0,2_1,2_0 -7782,9.0,10.0,47.0,111,52,71,0.0,6450,0.0,60.0,0.0,317.0,2.0,4.0,2.0,4.0,2.3,3247.005139017755,0.0,0.0,34619.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15051.739130434784,2,0,2_0,2_0 -7783,6.0,6.0,58.0,221,77,50,0.0,6451,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4698.983777314145,884.0,0.0,7382.0,7,3,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,7382.0,1,0,1_1,1_0 -7784,6.0,42.0,44.0,112,46,30,0.0,6455,0.0,100.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2466.9052593859037,4524.0,0.0,53002.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,29445.555555555555,5,0,5,5_1 -7785,11.0,11.0,49.0,111,52,60,0.0,6456,0.0,0.0,30.0,440.0,1.0,2.0,0.0,1.0,1.0,3192.818432829925,0.0,0.0,25009.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,25009.0,4,0,4_0,4_0 -7786,4.0,10.0,40.0,300,34,20,0.0,6457,0.0,500.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1748.1681332335042,0.0,0.0,52380.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24942.85714285714,4,0,4_0,4_1 -7787,17.0,17.0,66.0,111,72,50,0.0,6458,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1883.7660716671483,0.0,0.0,17255.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,11503.333333333334,1,0,1_0,1_0 -7788,2.0,2.0,44.0,111,63,71,0.0,6459,0.0,0.0,0.0,330.0,1.0,1.0,0.0,1.0,1.0,4624.698594063762,0.0,0.0,15360.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15360.0,2,0,2_0,2_0 -7789,4.0,4.0,64.0,111,74,31,0.0,646,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1841.2963271908054,1107.0,0.0,59935.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,39956.666666666664,5,0,5,5_0 -7790,0.0,0.0,26.0,111,84,20,0.0,6461,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1975.5945863371269,0.0,0.0,410.0,3,4,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,410.0,1,0,1_0,1_0 -7791,5.0,5.0,40.0,111,34,20,0.0,6463,0.0,0.0,0.0,550.0,1.0,2.0,0.0,1.0,1.0,5230.705634301304,0.0,0.0,30650.0,1,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30650.0,5,0,5,5_0 -7792,3.0,3.0,49.0,111,35,10,0.0,6464,0.0,0.0,220.0,0.0,1.0,3.0,0.0,1.0,1.0,3482.6571041289635,3086.0,0.0,51555.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,51555.0,5,0,5,5_0 -7793,0.0,0.0,44.0,111,63,71,0.0,6466,0.0,0.0,0.0,104.0,1.0,2.0,1.0,3.0,1.8,3720.614475597405,0.0,0.0,18412.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10228.888888888889,1,0,1_1,1_0 -7794,7.0,7.0,76.0,111,78,71,0.0,6467,0.0,0.0,0.0,0.0,0.0,3.0,1.0,3.0,2.0,3214.417534099461,1820.0,0.0,30500.0,5,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15250.0,2,0,2_0,2_0 -7795,1.0,15.0,42.0,400,64,71,2.0,6468,0.0,300.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,7094.7844372035415,0.0,2000.0,32762.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,14244.347826086958,2,0,2_1,2_0 -7796,6.0,6.0,61.0,112,75,50,0.0,6471,0.0,350.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2643.7331605714917,0.0,0.0,30954.0,5,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20636.0,3,0,3_0,3_1 -7797,8.0,21.0,75.0,111,77,50,0.0,6473,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,987.4515966467453,1901.0,0.0,29987.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,19991.333333333332,3,0,3_0,3_0 -7798,1.0,7.0,61.0,112,65,50,2.0,6474,0.0,630.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2441.6109834871245,4706.0,7500.0,61847.0,1,2,10,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,30923.5,5,0,5,5_1 -7799,4.0,10.0,60.0,400,75,50,0.0,6479,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1357.9257013605777,0.0,0.0,38779.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,25852.666666666668,4,0,4_0,4_1 -7800,7.0,14.0,62.0,112,77,71,0.0,648,0.0,0.0,0.0,331.0,0.0,4.0,0.0,1.0,1.0,3065.5786809817014,0.0,0.0,20019.0,5,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20019.0,3,0,3_0,3_0 -7801,1.0,14.0,24.0,111,37,10,2.0,6480,0.0,99999.0,0.0,340.0,3.0,5.0,0.0,3.0,2.0,2058.1076154782095,1300.0,800.0,34339.0,1,3,8,7.0,5,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,17169.5,3,0,3_1,3_0 -7802,0.0,0.0,36.0,111,68,71,0.0,6481,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,3041.802010127433,0.0,0.0,24114.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15071.25,2,0,2_1,2_0 -7803,1.0,1.0,21.0,111,56,50,1.0,6484,0.0,0.0,540.0,171.0,1.0,2.0,0.0,1.0,1.0,2755.0680800025807,1040.0,8500.0,16046.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,16046.0,2,0,2_1,2_0 -7804,5.0,10.0,45.0,222,13,44,0.0,6485,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2297.517385885322,0.0,0.0,33352.0,1,1,1,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22234.666666666668,4,0,4_0,4_1 -7805,6.0,16.0,42.0,120,62,50,0.0,6486,0.0,0.0,60.0,0.0,2.0,4.0,3.0,5.0,2.4,998.2826315416038,4261.0,0.0,40258.0,1,4,0,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16774.166666666668,2,0,2_0,2_0 -7806,0.0,9.0,49.0,112,47,50,0.0,6487,0.0,220.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2443.024124825813,3641.0,0.0,50242.0,1,2,10,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20096.8,3,0,3_0,3_0 -7807,0.0,0.0,55.0,300,74,30,0.0,6488,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2710.5079706900146,0.0,0.0,55060.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,55060.0,5,0,5,5_1 -7808,2.0,15.0,46.0,211,63,50,0.0,6489,0.0,0.0,200.0,0.0,2.0,6.0,3.0,5.0,2.8,875.6040264055091,2340.0,0.0,28290.0,1,3,3,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,10103.57142857143,1,0,1_0,1_0 -7809,0.0,15.0,57.0,221,78,50,0.0,6490,0.0,180.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1391.4976756126377,3640.0,0.0,17100.0,4,1,1,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,8550.0,1,0,1_0,1_0 -7810,11.0,12.0,53.0,300,69,50,0.0,6494,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1137.237451482291,2600.0,0.0,20030.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13353.333333333334,2,0,2_0,2_1 -7811,10.0,16.0,48.0,111,62,50,0.0,6496,0.0,0.0,240.0,0.0,2.0,5.0,4.0,6.0,3.1,1361.287599519084,3640.0,0.0,52685.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,16995.16129032258,3,0,3_0,3_0 -7812,3.0,3.0,48.0,111,48,60,0.0,6497,0.0,70.0,0.0,0.0,4.0,5.0,5.0,7.0,3.4,1116.2735472931327,0.0,0.0,79655.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23427.941176470587,4,0,4_0,4_0 -7813,3.0,3.0,53.0,112,64,60,0.0,6498,0.0,0.0,99999.0,0.0,2.0,6.0,0.0,2.0,1.5,2537.3158933576487,4559.0,0.0,41563.0,1,1,10,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,27708.666666666668,4,0,4_0,4_1 -7814,6.0,14.0,53.0,120,52,60,0.0,6499,0.0,0.0,0.0,389.0,1.0,3.0,0.0,1.0,1.0,5231.7558160624985,2080.0,0.0,20679.0,1,3,0,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20679.0,3,0,3_0,3_0 -7815,10.0,13.0,42.0,112,34,31,0.0,65,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1399.2185217425815,0.0,0.0,35634.0,1,2,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15493.04347826087,2,0,2_0,2_1 -7816,2.0,2.0,54.0,112,63,50,0.0,650,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1539.6958563769358,0.0,0.0,30580.0,1,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20386.666666666668,3,0,3_0,3_1 -7817,4.0,15.0,32.0,112,62,43,0.0,6500,0.0,600.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1238.0940928541909,4732.0,0.0,39056.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18598.095238095237,3,0,3_0,3_0 -7818,2.0,3.0,74.0,112,75,50,0.0,6501,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1513.8072315187815,0.0,0.0,21098.0,5,4,6,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21098.0,3,0,3_0,3_0 -7819,7.0,7.0,61.0,112,78,71,0.0,6503,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3894.397562402253,1352.0,0.0,29009.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19339.333333333332,3,0,3_0,3_0 -7820,4.0,4.0,59.0,111,77,50,0.0,6504,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2235.7575862546614,0.0,0.0,35263.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23508.666666666668,4,0,4_0,4_0 -7821,0.0,12.0,29.0,111,38,10,0.0,6508,0.0,800.0,200.0,729.0,1.0,4.0,0.0,2.0,1.5,3874.275106485592,4524.0,0.0,48547.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,32364.666666666668,5,0,5,5_0 -7822,6.0,6.0,80.0,111,74,12,0.0,651,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1234.9952123154746,0.0,0.0,39222.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26148.0,4,0,4_0,4_0 -7823,2.0,19.0,51.0,111,48,43,0.0,6511,0.0,500.0,542.0,0.0,2.0,6.0,1.0,3.0,2.0,2506.000515338525,7800.0,0.0,44684.0,4,1,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,22342.0,4,0,4_0,4_0 -7824,3.0,7.0,62.0,111,78,70,0.0,6514,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1266.615364347607,1612.0,0.0,22870.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,15246.666666666666,2,0,2_0,2_0 -7825,0.0,16.0,50.0,112,54,50,0.0,6515,0.0,300.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,3159.7318319141555,0.0,0.0,25652.0,1,2,8,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12826.0,2,0,2_1,2_1 -7826,2.0,12.0,49.0,111,54,71,0.0,6516,0.0,0.0,120.0,231.0,1.0,3.0,1.0,2.0,1.3,3520.622415498086,1560.0,0.0,19708.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,15160.0,2,0,2_1,2_0 -7827,0.0,3.0,38.0,120,54,31,2.0,6517,0.0,180.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2668.4237262348674,780.0,6800.0,23294.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23294.0,4,0,4_0,4_1 -7828,2.0,3.0,59.0,111,52,50,0.0,6518,0.0,200.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1753.7377913044677,3190.0,0.0,45800.0,1,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30533.333333333332,5,0,5,5_0 -7829,0.0,0.0,62.0,300,78,50,0.0,6519,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2558.5630235136414,0.0,0.0,19250.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12833.333333333334,2,0,2_0,2_1 -7830,8.0,8.0,58.0,111,68,71,0.0,652,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4240.515848264965,520.0,0.0,2420.0,1,1,5,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,2420.0,1,0,1_0,1_0 -7831,0.0,10.0,30.0,300,85,33,0.0,6521,0.0,0.0,0.0,0.0,0.0,3.0,1.0,3.0,1.8,2605.9196406430474,3438.0,0.0,29294.0,7,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,16274.444444444443,2,0,2_1,2_1 -7832,0.0,0.0,36.0,111,85,31,0.0,6522,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,5381.2007085659125,0.0,0.0,18736.0,6,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11710.0,1,0,1_1,1_0 -7833,15.0,15.0,80.0,111,77,20,0.0,6525,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4233.599601902179,0.0,0.0,20398.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20398.0,3,0,3_0,3_0 -7834,0.0,0.0,23.0,111,55,31,0.0,6526,0.0,0.0,0.0,360.0,1.0,1.0,0.0,1.0,1.0,3607.7637411681453,0.0,0.0,6599.0,1,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,6599.0,1,0,1_0,1_0 -7835,4.0,5.0,47.0,111,46,31,0.0,6529,0.0,0.0,30.0,0.0,1.0,5.0,0.0,1.0,1.0,4723.457718829559,0.0,0.0,19644.0,4,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19644.0,3,0,3_0,3_0 -7836,0.0,0.0,56.0,211,53,70,0.0,6530,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2388.4299896868356,0.0,0.0,11350.0,4,3,3,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11350.0,1,0,1_1,1_0 -7837,7.0,7.0,61.0,112,75,31,0.0,6532,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,5621.994059546409,0.0,0.0,25466.0,5,2,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25466.0,4,0,4_0,4_0 -7838,3.0,25.0,52.0,400,62,50,0.0,6533,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1827.242350304557,7278.0,0.0,46804.0,1,1,0,0.0,3,5.0,0.0,0.0,1,0,0,0,0,0,3.0,2.0,31202.666666666668,5,0,5,5_1 -7839,0.0,4.0,44.0,221,37,50,2.0,6534,0.0,600.0,0.0,615.0,2.0,4.0,0.0,2.0,1.5,2105.260946925304,3120.0,11000.0,40300.0,1,3,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26866.666666666668,4,0,4_0,4_0 -7840,4.0,7.0,38.0,120,62,50,0.0,6535,0.0,450.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1002.0738153090789,4827.0,0.0,42944.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20449.52380952381,3,0,3_0,3_0 -7841,1.0,5.0,42.0,111,22,20,0.0,6537,0.0,455.0,0.0,980.0,2.0,4.0,0.0,2.0,1.5,2487.321875544756,0.0,0.0,4724.0,1,3,7,6.0,3,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,3149.3333333333335,1,0,1_0,1_0 -7842,8.0,13.0,29.0,111,46,43,0.0,6538,0.0,0.0,70.0,475.0,1.0,1.0,0.0,1.0,1.0,4778.508710886271,1560.0,0.0,19930.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,19930.0,3,0,3_0,3_0 -7843,6.0,6.0,88.0,111,75,41,0.0,6539,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1799.3277966852745,0.0,0.0,49147.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,32764.666666666668,5,0,5,5_0 -7844,5.0,15.0,44.0,111,47,43,0.0,6542,0.0,250.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2495.89470194316,1040.0,0.0,23382.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15588.0,2,0,2_0,2_0 -7845,6.0,10.0,58.0,111,63,50,0.0,6543,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1228.433439919955,0.0,0.0,29987.0,1,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19991.333333333332,3,0,3_0,3_0 -7846,1.0,2.0,69.0,111,74,12,2.0,6545,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2508.3664856363825,0.0,21000.0,58640.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,39093.333333333336,5,0,5,5_0 -7847,3.0,12.0,38.0,111,56,20,0.0,6546,0.0,0.0,100.0,22.0,1.0,3.0,3.0,5.0,2.4,1859.8921779974648,0.0,0.0,22192.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,9246.666666666668,1,0,1_1,1_0 -7848,12.0,13.0,88.0,120,78,71,0.0,6548,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1742.1168976116498,0.0,0.0,23920.0,5,4,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15946.666666666666,2,0,2_0,2_0 -7849,4.0,7.0,38.0,300,56,31,0.0,655,0.0,200.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,2690.69403029994,0.0,0.0,25097.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,13942.777777777777,2,0,2_1,2_1 -7850,2.0,5.0,51.0,111,62,71,0.0,6552,0.0,120.0,150.0,0.0,3.0,4.0,1.0,3.0,2.0,1447.4079415920787,6032.0,0.0,40466.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,20233.0,3,0,3_0,3_0 -7851,2.0,2.0,45.0,120,47,50,0.0,6553,0.0,350.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1104.1714314469752,0.0,0.0,52762.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22940.0,4,0,4_0,4_0 -7852,8.0,8.0,40.0,112,69,71,0.0,6554,0.0,50.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3185.1733755742175,1501.0,0.0,11535.0,1,1,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11535.0,1,0,1_0,1_1 -7853,2.0,18.0,46.0,111,56,50,0.0,6557,0.0,250.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2102.0511124122318,1561.0,0.0,33923.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16961.5,3,0,3_0,3_0 -7854,5.0,7.0,61.0,111,75,33,0.0,6558,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1327.395590285866,3276.0,0.0,46550.0,5,4,6,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,31033.333333333332,5,0,5,5_0 -7855,0.0,0.0,33.0,111,52,42,0.0,6559,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1569.0439382981901,0.0,0.0,13245.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13245.0,2,0,2_0,2_0 -7856,13.0,13.0,63.0,112,74,31,0.0,656,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,5928.040390206907,0.0,0.0,43998.0,5,1,8,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29332.0,5,0,5,5_0 -7857,3.0,3.0,39.0,111,48,42,0.0,6561,0.0,500.0,400.0,0.0,2.0,5.0,2.0,4.0,2.1,2091.7573473531547,4656.0,0.0,58228.0,1,1,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,27727.619047619046,4,0,4_0,4_0 -7858,1.0,4.0,33.0,112,46,41,2.0,6564,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2342.42600632741,1560.0,16400.0,36414.0,1,2,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15172.5,2,0,2_0,2_0 -7859,8.0,8.0,53.0,112,46,50,0.0,6565,0.0,0.0,210.0,0.0,2.0,4.0,0.0,2.0,1.5,975.3490394250329,489.0,0.0,44069.0,1,1,9,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,29379.333333333332,5,0,5,5_0 -7860,0.0,0.0,25.0,111,38,12,0.0,6566,0.0,0.0,0.0,499.0,1.0,1.0,0.0,1.0,1.0,2688.7640122283456,0.0,0.0,29664.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29664.0,5,0,5,5_0 -7861,2.0,8.0,32.0,111,34,20,0.0,6568,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2236.94366328984,0.0,0.0,57806.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32114.444444444445,5,0,5,5_0 -7862,27.0,27.0,49.0,111,52,60,0.0,6569,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,2.0,1091.7141218559207,0.0,0.0,41588.0,1,4,6,4.0,5,4.0,0.0,0.0,0,0,1,0,0,0,2.0,2.0,20794.0,3,0,3_0,3_0 -7863,0.0,14.0,71.0,111,77,50,0.0,6570,0.0,0.0,0.0,58.0,0.0,4.0,0.0,1.0,1.0,2163.5615122976437,0.0,0.0,11547.0,6,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11547.0,1,0,1_1,1_0 -7864,0.0,0.0,87.0,111,78,71,0.0,6571,0.0,0.0,0.0,185.0,0.0,1.0,0.0,1.0,1.0,2966.2751527645473,0.0,0.0,25820.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25820.0,4,0,4_0,4_0 -7865,3.0,5.0,52.0,112,46,71,0.0,6572,0.0,130.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2319.267026105786,1568.0,0.0,38480.0,1,2,7,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,15392.0,2,0,2_0,2_0 -7866,1.0,13.0,47.0,111,33,31,2.0,6573,0.0,1300.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1602.6982564330015,4399.0,2500.0,42512.0,1,4,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,0.0,3.0,18483.478260869568,3,0,3_0,3_0 -7867,11.0,11.0,42.0,111,54,50,0.0,6574,0.0,0.0,99999.0,231.0,1.0,3.0,1.0,2.0,1.3,3129.247297820206,832.0,0.0,19567.0,4,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,15051.538461538461,2,0,2_1,2_0 -7868,0.0,0.0,87.0,111,78,70,0.0,6575,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2806.232971421671,0.0,0.0,22503.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22503.0,4,0,4_0,4_0 -7869,2.0,5.0,34.0,111,68,43,0.0,6576,0.0,5.0,0.0,322.0,1.0,2.0,1.0,2.0,1.3,6256.288905393721,1560.0,0.0,21853.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,16810.0,2,0,2_1,2_0 -7870,3.0,4.0,55.0,111,45,31,0.0,6577,0.0,60.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1704.336342298095,1830.0,0.0,44284.0,1,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,29522.666666666668,5,0,5,5_0 -7871,12.0,12.0,45.0,221,85,50,0.0,6579,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2570.171299307858,1040.0,0.0,20860.0,7,2,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20860.0,3,0,3_0,3_0 -7872,5.0,23.0,58.0,111,68,50,0.0,658,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,1886.5451583497343,0.0,0.0,23304.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,10132.17391304348,1,0,1_1,1_0 -7873,1.0,13.0,23.0,112,63,50,2.0,6581,0.0,0.0,800.0,0.0,2.0,3.0,0.0,2.0,1.5,2155.8703996636646,0.0,750.0,26635.0,1,3,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,17756.666666666668,3,0,3_0,3_1 -7874,2.0,13.0,22.0,400,67,43,0.0,6582,0.0,400.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3086.4898510476887,1768.0,0.0,27794.0,1,3,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,18529.333333333332,3,0,3_0,3_1 -7875,9.0,9.0,74.0,112,78,71,0.0,6583,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2826.017227128025,0.0,0.0,23095.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,15396.666666666666,2,0,2_0,2_1 -7876,2.0,2.0,50.0,111,52,50,0.0,6588,0.0,0.0,0.0,630.0,2.0,4.0,0.0,2.0,1.5,1770.675153955766,0.0,0.0,59357.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,39571.333333333336,5,0,5,5_0 -7877,21.0,21.0,60.0,111,75,50,0.0,6589,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1276.1575228140537,1560.0,0.0,18718.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,12478.666666666666,1,0,1_0,1_0 -7878,0.0,0.0,55.0,112,54,42,1.0,659,0.0,250.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4488.863386828155,2340.0,13400.0,42449.0,1,2,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28299.333333333332,4,0,4_0,4_1 -7879,5.0,5.0,58.0,300,38,71,0.0,6590,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2446.624735768526,0.0,0.0,11500.0,4,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11500.0,1,0,1_0,1_1 -7880,6.0,6.0,54.0,120,43,33,0.0,6592,0.0,0.0,150.0,0.0,1.0,5.0,0.0,1.0,1.0,1442.2631783698955,1847.0,0.0,36985.0,1,2,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,36985.0,5,0,5,5_0 -7881,0.0,14.0,20.0,300,67,50,0.0,6593,0.0,650.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2321.564095979601,3016.0,0.0,31324.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,20882.666666666668,3,0,3_1,3_1 -7882,0.0,0.0,60.0,300,78,70,0.0,6595,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1931.9541993766318,0.0,0.0,10850.0,6,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10850.0,1,0,1_0,1_1 -7883,1.0,12.0,77.0,111,78,71,2.0,6596,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2858.655489760822,1040.0,13000.0,25500.0,5,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17000.0,3,0,3_0,3_0 -7884,1.0,4.0,48.0,112,46,41,2.0,6597,0.0,0.0,30.0,0.0,2.0,6.0,2.0,4.0,2.3,3174.180302911526,1560.0,9000.0,49445.0,1,2,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21497.826086956524,3,0,3_0,3_0 -7885,13.0,13.0,86.0,112,71,71,0.0,6598,0.0,0.0,0.0,0.0,0.0,10.0,0.0,1.0,1.0,2879.4388498755684,0.0,0.0,28040.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,28040.0,4,0,4_0,4_1 -7886,0.0,0.0,52.0,111,47,50,1.0,6599,0.0,200.0,0.0,270.0,2.0,3.0,0.0,2.0,1.5,4229.286698222112,1924.0,30000.0,67519.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,45012.666666666664,5,0,5,5_0 -7887,20.0,20.0,75.0,112,77,71,0.0,660,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3220.37343066884,0.0,0.0,14960.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14960.0,2,0,2_0,2_1 -7888,1.0,12.0,22.0,111,47,20,2.0,6602,0.0,250.0,0.0,37.0,2.0,1.0,0.0,2.0,1.5,2401.6913235365723,0.0,2800.0,28172.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,18781.333333333332,3,0,3_1,3_0 -7889,8.0,14.0,51.0,111,62,43,0.0,6603,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,6219.917096752226,2372.0,0.0,19960.0,1,3,4,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19960.0,3,0,3_0,3_0 -7890,4.0,7.0,28.0,221,62,50,0.0,6607,0.0,260.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3397.610879419791,0.0,0.0,27140.0,1,2,1,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,18093.333333333332,3,0,3_0,3_0 -7891,0.0,0.0,86.0,111,86,71,0.0,6608,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3172.2451022464647,0.0,0.0,14500.0,5,4,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14500.0,2,0,2_0,2_0 -7892,15.0,15.0,62.0,111,75,33,0.0,6609,0.0,0.0,30.0,0.0,1.0,5.0,2.0,4.0,2.5,1921.736658355474,1560.0,0.0,57500.0,5,2,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,23000.0,4,0,4_0,4_0 -7893,0.0,0.0,22.0,111,67,60,0.0,6610,0.0,0.0,0.0,23.0,1.0,1.0,0.0,1.0,1.0,3546.0277465905533,0.0,0.0,17664.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17664.0,3,0,3_1,3_0 -7894,1.0,18.0,31.0,111,63,12,2.0,6612,0.0,0.0,40.0,600.0,1.0,1.0,0.0,2.0,1.5,3187.656435342139,2371.0,2000.0,15945.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,10630.0,1,0,1_0,1_0 -7895,8.0,8.0,42.0,112,23,12,0.0,6614,0.0,350.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1833.134691326573,6269.0,0.0,87208.0,1,3,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36336.66666666667,5,0,5,5_1 -7896,8.0,13.0,48.0,112,34,10,0.0,6615,0.0,250.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1222.4132589184003,2912.0,0.0,98808.0,1,2,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,65872.0,5,0,5,5_1 -7897,0.0,0.0,73.0,111,77,71,0.0,6617,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2855.9751306529674,0.0,0.0,15307.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15307.0,2,0,2_0,2_0 -7898,4.0,5.0,31.0,111,52,31,0.0,6618,0.0,20.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2833.412004831864,597.0,0.0,31788.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15137.142857142857,2,0,2_0,2_0 -7899,2.0,19.0,46.0,111,67,70,0.0,6619,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,2655.5735461974273,0.0,0.0,23854.0,4,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,8519.285714285716,1,0,1_1,1_0 -7900,0.0,7.0,59.0,111,22,70,2.0,662,0.0,0.0,0.0,660.0,2.0,3.0,0.0,2.0,1.5,4271.552400708726,0.0,1500.0,66165.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,44110.0,5,0,5,5_0 -7901,15.0,17.0,52.0,111,53,71,0.0,6620,0.0,0.0,100.0,0.0,1.0,6.0,0.0,2.0,1.5,3274.7138857386108,2359.0,0.0,34512.0,1,1,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,23008.0,4,0,4_0,4_0 -7902,2.0,7.0,29.0,111,63,71,0.0,6621,0.0,28.0,0.0,300.0,1.0,4.0,2.0,4.0,2.1,3886.338184752028,1040.0,0.0,32543.0,1,3,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15496.666666666666,2,0,2_0,2_0 -7903,2.0,4.0,48.0,111,52,41,0.0,6622,0.0,520.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1100.212333566089,2080.0,0.0,44982.0,1,1,6,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,22491.0,4,0,4_0,4_0 -7904,16.0,18.0,43.0,300,62,50,0.0,6623,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1168.824052392399,3641.0,0.0,47415.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,23707.5,4,0,4_0,4_1 -7905,1.0,21.0,44.0,111,43,50,2.0,6624,0.0,0.0,0.0,318.0,3.0,3.0,2.0,4.0,2.3,2487.5389902928487,0.0,1000.0,47400.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,20608.695652173916,3,0,3_0,3_0 -7906,0.0,0.0,70.0,111,75,31,1.0,6626,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4853.671323860856,1404.0,31349.0,38140.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25426.666666666668,4,0,4_0,4_0 -7907,0.0,0.0,61.0,111,75,31,1.0,6627,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3397.6639672011675,3744.0,27000.0,33208.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33208.0,5,0,5,5_0 -7908,10.0,10.0,71.0,111,78,70,0.0,6628,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1293.1405032769867,0.0,0.0,14482.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14482.0,2,0,2_0,2_0 -7909,2.0,2.0,61.0,221,75,42,0.0,6629,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,3938.8558700293847,2236.0,0.0,37056.0,5,4,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24704.0,4,0,4_0,4_0 -7910,3.0,8.0,26.0,112,43,10,0.0,663,0.0,160.0,0.0,480.0,1.0,2.0,0.0,1.0,1.0,2854.2663772183923,0.0,0.0,25134.0,1,3,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,25134.0,4,0,4_0,4_0 -7911,9.0,14.0,60.0,111,45,31,0.0,6630,0.0,0.0,230.0,532.0,1.0,3.0,0.0,1.0,1.0,2024.4019343894715,1508.0,0.0,21230.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21230.0,3,0,3_0,3_0 -7912,0.0,11.0,28.0,112,68,50,0.0,6631,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,2459.2751805882067,1560.0,0.0,24647.0,1,3,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,10269.583333333334,1,0,1_1,1_1 -7913,5.0,8.0,24.0,111,55,31,0.0,6632,0.0,600.0,0.0,440.0,2.0,2.0,0.0,2.0,1.5,5129.5663994875285,2340.0,0.0,30633.0,1,3,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20422.0,3,0,3_0,3_0 -7914,0.0,0.0,82.0,300,71,71,0.0,6633,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3112.905657043172,0.0,0.0,10380.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10380.0,1,0,1_0,1_1 -7915,1.0,1.0,38.0,111,43,33,2.0,6634,0.0,0.0,182.0,0.0,1.0,3.0,0.0,1.0,1.0,2069.7807624077695,0.0,9400.0,24872.0,1,2,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,24872.0,4,0,4_0,4_0 -7916,4.0,4.0,81.0,111,74,12,0.0,6635,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3218.8246157904327,2392.0,0.0,118568.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,118568.0,5,0,5,5_0 -7917,0.0,0.0,43.0,120,63,50,1.0,6636,0.0,0.0,250.0,0.0,1.0,2.0,0.0,1.0,1.0,2137.870921152186,2600.0,6800.0,13200.0,1,2,0,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,13200.0,2,0,2_0,2_0 -7918,5.0,6.0,56.0,111,37,20,0.0,6637,0.0,0.0,100.0,1059.0,2.0,5.0,2.0,4.0,2.3,2002.4494508114092,2030.0,0.0,71952.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,31283.478260869568,5,0,5,5_0 -7919,0.0,12.0,22.0,111,84,20,0.0,6638,0.0,0.0,0.0,258.0,0.0,2.0,0.0,2.0,1.5,3633.170635191729,2081.0,0.0,15292.0,3,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10194.666666666666,1,0,1_1,1_0 -7920,10.0,18.0,41.0,111,31,10,0.0,6639,0.0,0.0,50.0,0.0,2.0,7.0,0.0,2.0,1.5,2676.225062213336,3068.0,0.0,77246.0,1,2,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,51497.333333333336,5,0,5,5_0 -7921,5.0,10.0,50.0,300,13,44,0.0,664,0.0,1030.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2702.3055565059617,4576.0,0.0,37851.0,1,1,0,0.0,4,5.0,0.0,1.0,1,0,0,0,0,0,1.0,4.0,15140.4,2,0,2_0,2_1 -7922,0.0,0.0,53.0,111,56,71,0.0,6640,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4059.332969954712,0.0,0.0,14356.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9570.666666666666,1,0,1_1,1_0 -7923,17.0,17.0,78.0,400,71,70,0.0,6641,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3098.546206819735,0.0,0.0,19993.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,13328.666666666666,2,0,2_0,2_1 -7924,14.0,14.0,38.0,111,47,31,0.0,6643,0.0,0.0,0.0,481.0,2.0,4.0,2.0,4.0,2.1,2859.7656046271877,2340.0,0.0,36102.0,1,3,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17191.428571428572,3,0,3_0,3_0 -7925,1.0,1.0,84.0,212,72,71,0.0,6644,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2932.2939243840838,0.0,0.0,32060.0,5,1,1,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21373.333333333332,3,0,3_0,3_1 -7926,6.0,11.0,26.0,112,53,50,0.0,6646,0.0,368.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1803.2729346181657,4213.0,0.0,34606.0,1,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19225.555555555555,3,0,3_0,3_1 -7927,3.0,13.0,28.0,112,64,71,0.0,6648,0.0,25.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2262.2635553582827,1560.0,0.0,44645.0,1,2,5,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24802.777777777777,4,0,4_0,4_1 -7928,9.0,11.0,52.0,111,64,50,0.0,6649,0.0,250.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1734.0336630193494,2080.0,0.0,30037.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15018.5,2,0,2_0,2_0 -7929,0.0,28.0,95.0,111,78,71,0.0,665,0.0,0.0,0.0,450.0,0.0,2.0,0.0,1.0,1.0,4286.477241657766,0.0,0.0,21094.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21094.0,3,0,3_0,3_0 -7930,0.0,0.0,54.0,111,75,20,0.0,6652,0.0,0.0,0.0,417.0,0.0,2.0,0.0,1.0,1.0,2483.408941538447,0.0,0.0,0.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,0.0,1,0,1_0,1_0 -7931,0.0,0.0,39.0,111,46,31,0.0,6653,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,1.6,2223.4156606765264,0.0,0.0,40758.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25473.75,4,0,4_0,4_0 -7932,0.0,0.0,60.0,112,78,50,1.0,6654,0.0,300.0,0.0,0.0,1.0,8.0,1.0,2.0,1.5,4034.7909031821896,7177.0,11890.0,49133.0,5,1,7,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,32755.333333333332,5,0,5,5_1 -7933,2.0,7.0,39.0,400,47,50,0.0,6655,0.0,600.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2253.2026740898946,8320.0,0.0,28540.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13590.476190476189,2,0,2_0,2_1 -7934,0.0,0.0,39.0,221,12,50,1.0,6656,0.0,250.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1440.9113742865513,0.0,31200.0,25616.0,1,2,1,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14231.111111111111,2,0,2_0,2_0 -7935,1.0,5.0,30.0,111,46,50,0.0,6657,0.0,20.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1264.8131276796842,0.0,0.0,53917.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,29953.888888888887,5,0,5,5_0 -7936,2.0,2.0,58.0,111,75,12,0.0,6659,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2025.9001883020073,0.0,0.0,21363.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21363.0,3,0,3_0,3_0 -7937,3.0,3.0,61.0,111,78,50,0.0,666,0.0,40.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2120.865999905958,1061.0,0.0,23271.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,15514.0,2,0,2_0,2_0 -7938,1.0,1.0,51.0,111,45,42,2.0,6660,0.0,200.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1767.3469625321425,0.0,7200.0,56151.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22460.4,4,0,4_0,4_0 -7939,7.0,7.0,38.0,111,48,42,0.0,6661,0.0,30.0,0.0,339.0,1.0,3.0,1.0,2.0,1.3,2928.814149828171,0.0,0.0,26276.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20212.30769230769,3,0,3_0,3_0 -7940,2.0,2.0,48.0,111,38,20,0.0,6662,0.0,0.0,1272.0,234.0,1.0,3.0,0.0,2.0,1.5,2870.052375925792,3300.0,0.0,66748.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,44498.666666666664,5,0,5,5_0 -7941,5.0,5.0,29.0,111,54,31,0.0,6663,150.0,100.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,4411.829675365937,0.0,0.0,45522.0,1,2,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25290.0,4,0,4_0,4_0 -7942,13.0,26.0,79.0,400,75,70,0.0,6664,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2466.3700854933963,1321.0,0.0,13460.0,5,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13460.0,2,0,2_0,2_1 -7943,0.0,19.0,56.0,111,34,50,0.0,6666,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1337.5245499651571,3693.0,0.0,23350.0,1,2,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,11675.0,1,0,1_0,1_0 -7944,2.0,6.0,63.0,111,63,71,0.0,6667,0.0,0.0,0.0,320.0,1.0,6.0,4.0,6.0,3.5,3264.3694498612604,0.0,0.0,33760.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,9645.714285714286,1,0,1_1,1_0 -7945,6.0,6.0,36.0,112,54,31,0.0,6669,0.0,0.0,210.0,0.0,1.0,2.0,1.0,2.0,1.3,1883.7103857763118,1040.0,0.0,28230.0,1,2,6,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21715.384615384613,4,0,4_0,4_1 -7946,6.0,12.0,61.0,112,45,50,0.0,667,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1254.1411699086116,0.0,0.0,62414.0,5,1,7,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,41609.333333333336,5,0,5,5_1 -7947,11.0,11.0,62.0,111,74,20,0.0,6670,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2170.566062523559,0.0,0.0,55752.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,37168.0,5,0,5,5_0 -7948,0.0,0.0,80.0,111,78,70,0.0,6672,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1517.066584705727,0.0,0.0,19310.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19310.0,3,0,3_0,3_0 -7949,2.0,2.0,35.0,111,38,12,0.0,6673,0.0,300.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1648.3802366057382,0.0,0.0,102849.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,48975.71428571428,5,0,5,5_0 -7950,3.0,3.0,41.0,111,22,71,0.0,6675,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,3533.2341802747756,0.0,0.0,26867.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12793.809523809523,2,0,2_1,2_0 -7951,4.0,5.0,26.0,111,52,42,0.0,6677,0.0,150.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,5705.659554462523,2865.0,0.0,23332.0,1,2,6,5.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,23332.0,4,0,4_0,4_0 -7952,1.0,8.0,37.0,111,85,70,0.0,6679,0.0,0.0,0.0,30.0,0.0,3.0,3.0,5.0,2.4,3586.200815933792,1300.0,0.0,17718.0,6,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,7382.5,1,0,1_1,1_0 -7953,1.0,1.0,61.0,111,75,50,1.0,6680,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2039.22626261756,0.0,15000.0,29270.0,5,2,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,29270.0,5,0,5,5_0 -7954,0.0,4.0,45.0,111,37,10,0.0,6682,0.0,0.0,0.0,2379.0,1.0,4.0,2.0,3.0,1.8,6223.225714678762,0.0,0.0,54115.0,1,3,10,8.0,2,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,30063.888888888887,5,0,5,5_0 -7955,7.0,12.0,31.0,111,43,33,0.0,6683,0.0,0.0,220.0,444.0,1.0,2.0,0.0,1.0,1.0,2825.156535561944,0.0,0.0,23475.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23475.0,4,0,4_0,4_0 -7956,3.0,3.0,53.0,112,63,50,0.0,6685,0.0,125.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,3138.0921576038145,1335.0,0.0,52851.0,1,1,8,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,35234.0,5,0,5,5_1 -7957,0.0,10.0,26.0,111,33,10,0.0,6686,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3865.4704002958492,0.0,0.0,15249.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,15249.0,2,0,2_0,2_0 -7958,7.0,7.0,70.0,111,86,70,0.0,6687,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2170.152924016563,1524.0,0.0,16012.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16012.0,2,0,2_0,2_0 -7959,2.0,19.0,51.0,300,65,71,0.0,669,0.0,600.0,800.0,45.0,1.0,4.0,1.0,3.0,2.0,3868.1130329675893,2862.0,0.0,30275.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,15137.5,2,0,2_1,2_1 -7960,1.0,17.0,19.0,111,84,42,0.0,6691,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.5,3495.6438127387455,1300.0,0.0,4931.0,3,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,3287.3333333333335,1,0,1_1,1_0 -7961,0.0,11.0,28.0,112,42,30,0.0,6694,0.0,600.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2294.3881797095264,1427.0,0.0,40844.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19449.52380952381,3,0,3_0,3_1 -7962,0.0,0.0,58.0,221,68,71,0.0,6696,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4768.080783331585,0.0,0.0,11960.0,1,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11960.0,1,0,1_0,1_0 -7963,0.0,0.0,78.0,111,86,71,0.0,6697,0.0,0.0,0.0,259.0,1.0,5.0,0.0,2.0,1.5,3180.476258673464,0.0,0.0,23535.0,6,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15690.0,2,0,2_1,2_0 -7964,1.0,1.0,48.0,111,37,42,0.0,6699,0.0,200.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2385.3106075717833,0.0,0.0,35217.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,35217.0,5,0,5,5_0 -7965,7.0,12.0,29.0,111,48,31,0.0,670,0.0,0.0,600.0,0.0,1.0,2.0,0.0,1.0,1.0,3523.24214402716,0.0,0.0,30725.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,30725.0,5,0,5,5_0 -7966,0.0,0.0,32.0,111,54,31,0.0,6700,0.0,0.0,0.0,588.0,2.0,2.0,0.0,2.0,1.5,3007.0847643066363,0.0,0.0,28283.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18855.333333333332,3,0,3_0,3_0 -7967,5.0,5.0,73.0,111,75,50,0.0,6701,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1452.7458692688172,0.0,0.0,33990.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22660.0,4,0,4_0,4_0 -7968,8.0,8.0,82.0,300,74,70,0.0,6702,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1819.0745396973232,0.0,0.0,25680.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17120.0,3,0,3_0,3_1 -7969,2.0,9.0,44.0,221,55,50,0.0,6705,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,4717.406284797897,0.0,0.0,14873.0,4,2,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,7436.5,1,0,1_0,1_0 -7970,11.0,11.0,86.0,211,74,60,0.0,6706,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4028.6622538509196,0.0,0.0,43866.0,5,1,2,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29244.0,5,0,5,5_0 -7971,1.0,2.0,71.0,111,78,71,2.0,6707,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,3605.218982777442,0.0,10700.0,32066.0,5,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,16033.0,2,0,2_1,2_0 -7972,3.0,5.0,39.0,221,62,41,0.0,6708,0.0,100.0,150.0,0.0,2.0,5.0,2.0,4.0,2.1,2240.043467158469,0.0,0.0,34284.0,1,2,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,16325.714285714284,2,0,2_1,2_0 -7973,17.0,17.0,81.0,300,77,70,0.0,6709,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2225.0330500394944,2080.0,0.0,30530.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20353.333333333332,3,0,3_0,3_1 -7974,6.0,15.0,62.0,222,75,70,0.0,6710,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1325.8049032223767,4732.0,0.0,33908.0,5,1,1,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,22605.333333333332,4,0,4_0,4_1 -7975,7.0,8.0,33.0,111,45,33,0.0,6712,0.0,0.0,0.0,401.0,1.0,2.0,0.0,1.0,1.0,3296.325653212862,0.0,0.0,27092.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27092.0,4,0,4_0,4_0 -7976,0.0,0.0,80.0,111,77,71,0.0,6714,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3113.0711816299977,0.0,0.0,16960.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16960.0,3,0,3_0,3_0 -7977,6.0,10.0,75.0,112,74,44,0.0,6715,0.0,0.0,0.0,0.0,0.0,5.0,0.0,3.0,1.8,1496.062786442854,2601.0,0.0,33076.0,5,1,8,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18375.555555555555,3,0,3_0,3_1 -7978,0.0,0.0,43.0,111,63,71,0.0,6717,0.0,0.0,0.0,460.0,1.0,3.0,4.0,6.0,3.3,3504.671405646212,0.0,0.0,28170.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8536.363636363636,1,0,1_1,1_0 -7979,2.0,3.0,77.0,111,74,50,0.0,6718,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2073.884513863929,2103.0,0.0,136012.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,90674.66666666667,5,0,5,5_0 -7980,10.0,13.0,67.0,112,78,50,0.0,672,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2138.6929203500013,1560.0,0.0,32350.0,5,1,7,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,21566.666666666668,3,0,3_0,3_0 -7981,0.0,0.0,23.0,111,81,10,0.0,6720,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,4026.5254236325686,0.0,0.0,14190.0,4,4,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9460.0,1,0,1_0,1_0 -7982,2.0,2.0,44.0,112,62,50,0.0,6721,0.0,400.0,0.0,0.0,2.0,8.0,3.0,5.0,2.8,904.4740315000906,520.0,0.0,37761.0,1,2,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13486.07142857143,2,0,2_0,2_0 -7983,11.0,11.0,64.0,111,77,50,0.0,6723,0.0,0.0,0.0,243.0,0.0,3.0,0.0,1.0,1.0,1631.6597337244652,0.0,0.0,10844.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10844.0,1,0,1_1,1_0 -7984,10.0,13.0,46.0,111,22,50,0.0,6725,0.0,100029.0,0.0,400.0,2.0,4.0,2.0,4.0,2.1,1755.4543597907843,3621.0,0.0,36312.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17291.428571428572,3,0,3_0,3_0 -7985,26.0,26.0,89.0,111,78,71,0.0,6726,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,5440.621737462199,0.0,0.0,21630.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14420.0,2,0,2_0,2_0 -7986,0.0,0.0,47.0,111,85,10,0.0,6727,0.0,0.0,0.0,0.0,0.0,3.0,4.0,5.0,2.4,2165.00914661601,0.0,0.0,17340.0,6,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,7225.0,1,0,1_1,1_0 -7987,0.0,24.0,43.0,111,43,71,0.0,6728,0.0,0.0,0.0,15.0,1.0,3.0,1.0,2.0,1.3,3159.3577468339354,0.0,0.0,13100.0,4,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10076.923076923076,1,0,1_1,1_0 -7988,10.0,14.0,45.0,111,67,71,0.0,6729,0.0,0.0,77.0,1012.0,2.0,5.0,1.0,3.0,1.8,2129.698196703253,1567.0,0.0,43640.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24244.444444444445,4,0,4_0,4_0 -7989,3.0,3.0,55.0,111,38,12,0.0,673,0.0,420.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1779.0041203895082,3123.0,0.0,84304.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,42152.0,5,0,5,5_0 -7990,2.0,19.0,38.0,111,22,50,0.0,6730,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1744.5163445906094,0.0,0.0,19270.0,1,2,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,9176.190476190475,1,0,1_1,1_0 -7991,10.0,10.0,71.0,111,78,50,0.0,6731,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1256.4392202840345,0.0,0.0,32104.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21402.666666666668,3,0,3_0,3_0 -7992,8.0,8.0,61.0,112,78,70,0.0,6733,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1901.4935913131824,0.0,0.0,11752.0,5,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,11752.0,1,0,1_1,1_1 -7993,5.0,16.0,51.0,112,64,71,0.0,6737,0.0,500.0,0.0,299.0,2.0,4.0,1.0,3.0,2.0,4206.341780990778,1041.0,0.0,23972.0,1,3,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,11986.0,1,0,1_1,1_1 -7994,8.0,10.0,48.0,111,48,31,0.0,6738,0.0,250.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1479.9694729797513,0.0,0.0,51154.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,28418.888888888887,4,0,4_0,4_0 -7995,11.0,15.0,50.0,111,47,31,0.0,674,0.0,250.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,2320.4032278212544,1559.0,0.0,41711.0,1,1,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23172.777777777777,4,0,4_0,4_0 -7996,9.0,9.0,50.0,111,63,71,0.0,6741,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,5136.426903614531,0.0,0.0,43709.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,21854.5,4,0,4_0,4_0 -7997,1.0,6.0,21.0,111,55,41,2.0,6742,0.0,160.0,0.0,56.0,1.0,1.0,0.0,1.0,1.0,3734.346889570643,0.0,4500.0,31924.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,31924.0,5,0,5,5_0 -7998,0.0,0.0,78.0,112,71,70,0.0,6745,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2945.35887349335,0.0,0.0,14268.0,5,3,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14268.0,2,0,2_1,2_1 -7999,0.0,0.0,46.0,111,64,20,0.0,6747,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,3.1,1647.0575751060671,0.0,0.0,21768.0,4,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,7021.935483870968,1,0,1_1,1_0 -8000,5.0,13.0,42.0,112,47,42,0.0,6750,0.0,0.0,125.0,450.0,2.0,4.0,3.0,5.0,2.6,1881.0598892978246,0.0,0.0,44037.0,1,3,4,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,16937.30769230769,3,0,3_0,3_1 -8001,3.0,3.0,79.0,112,74,70,0.0,6751,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2044.4575264082837,0.0,0.0,53414.0,5,4,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,35609.333333333336,5,0,5,5_1 -8002,3.0,4.0,34.0,112,46,31,0.0,6753,0.0,120.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2459.65681086867,780.0,0.0,25957.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,12360.47619047619,1,0,1_0,1_1 -8003,9.0,11.0,40.0,111,46,44,0.0,6754,0.0,0.0,20.0,0.0,1.0,3.0,1.0,2.0,1.3,2839.4211619191833,711.0,0.0,24686.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18989.23076923077,3,0,3_0,3_0 -8004,9.0,9.0,74.0,120,78,71,0.0,6755,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3531.669300833935,3380.0,0.0,21380.0,5,1,0,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14253.333333333334,2,0,2_0,2_0 -8005,6.0,6.0,64.0,111,78,70,0.0,6757,0.0,0.0,0.0,550.0,0.0,3.0,0.0,1.0,1.0,3568.7011644431614,0.0,0.0,20370.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20370.0,3,0,3_0,3_0 -8006,4.0,11.0,51.0,111,45,50,0.0,676,0.0,100.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2932.6795243912998,4420.0,0.0,32795.0,1,2,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21863.333333333332,4,0,4_0,4_0 -8007,2.0,9.0,48.0,112,48,50,0.0,6761,0.0,400.0,520.0,0.0,3.0,4.0,2.0,3.0,2.0,1219.3326993913506,2080.0,0.0,45845.0,1,1,7,1.0,2,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,22922.5,4,0,4_0,4_0 -8008,10.0,10.0,64.0,111,52,50,0.0,6763,0.0,0.0,50.0,0.0,1.0,6.0,0.0,1.0,1.0,1369.5229925822948,0.0,0.0,27952.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,27952.0,4,0,4_0,4_0 -8009,17.0,19.0,60.0,111,77,30,0.0,6765,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2023.8544164198202,1561.0,0.0,81829.0,5,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,40914.5,5,0,5,5_0 -8010,6.0,7.0,79.0,300,71,71,0.0,6766,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1699.3390331198252,0.0,0.0,18716.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12477.333333333334,1,0,1_0,1_1 -8011,0.0,1.0,55.0,112,46,41,0.0,6767,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2927.6997304992224,0.0,0.0,37518.0,1,3,8,1.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,25012.0,4,0,4_0,4_0 -8012,2.0,15.0,41.0,111,55,41,0.0,6770,0.0,0.0,0.0,130.0,1.0,4.0,2.0,3.0,2.0,2617.3933317331657,0.0,0.0,28010.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14005.0,2,0,2_1,2_0 -8013,3.0,16.0,49.0,111,68,60,0.0,6771,0.0,180.0,0.0,600.0,2.0,3.0,2.0,4.0,2.3,2808.269332764018,3022.0,0.0,31450.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,13673.913043478262,2,0,2_0,2_0 -8014,6.0,6.0,77.0,112,71,70,0.0,6773,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1507.6342784187952,2756.0,0.0,17745.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11830.0,1,0,1_0,1_1 -8015,1.0,5.0,46.0,111,47,31,2.0,6775,0.0,450.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2165.963695194368,1768.0,7800.0,32391.0,1,2,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24916.153846153844,4,0,4_0,4_0 -8016,4.0,4.0,61.0,112,33,12,0.0,6776,0.0,100.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1261.8104161774534,4602.0,0.0,86090.0,1,1,5,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,57393.333333333336,5,0,5,5_1 -8017,1.0,14.0,34.0,112,69,50,2.0,6777,0.0,99999.0,50.0,0.0,2.0,6.0,2.0,4.0,2.1,1881.1376861471736,0.0,3900.0,38677.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,18417.619047619046,3,0,3_0,3_0 -8018,2.0,6.0,58.0,111,45,50,0.0,6778,0.0,0.0,0.0,251.0,1.0,4.0,0.0,2.0,1.3,3251.906099391025,2723.0,0.0,21624.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16633.846153846152,2,0,2_0,2_0 -8019,0.0,0.0,60.0,300,78,71,0.0,6779,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2924.9592409499023,0.0,0.0,12808.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12808.0,2,0,2_1,2_1 -8020,5.0,5.0,77.0,111,78,70,0.0,6780,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1524.1695522657335,0.0,0.0,12297.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12297.0,1,0,1_0,1_0 -8021,0.0,16.0,35.0,111,35,12,0.0,6781,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1875.3317581251329,0.0,0.0,58783.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32657.222222222223,5,0,5,5_0 -8022,2.0,7.0,29.0,120,47,50,0.0,6786,0.0,360.0,0.0,600.0,2.0,4.0,0.0,2.0,1.5,1440.342336077716,2704.0,0.0,39743.0,1,3,0,1.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,26495.333333333332,4,0,4_0,4_0 -8023,3.0,8.0,26.0,111,46,20,0.0,6787,0.0,350.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,3025.881811079487,0.0,0.0,16745.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16745.0,2,0,2_0,2_0 -8024,0.0,5.0,26.0,400,54,20,0.0,6788,0.0,400.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1748.6924268542775,0.0,0.0,30213.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,14387.142857142857,2,0,2_1,2_1 -8025,6.0,11.0,43.0,120,85,31,0.0,6789,0.0,0.0,0.0,315.0,0.0,4.0,3.0,5.0,2.8,6281.880692142693,4195.0,0.0,14500.0,4,3,0,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,5178.571428571429,1,0,1_0,1_0 -8026,3.0,3.0,53.0,111,46,31,0.0,679,0.0,20.0,0.0,305.0,2.0,5.0,2.0,4.0,2.3,2497.2552128709253,3901.0,0.0,50532.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,21970.434782608696,4,0,4_0,4_0 -8027,4.0,15.0,61.0,111,77,31,0.0,6791,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3485.2629920142404,0.0,0.0,19441.0,5,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19441.0,3,0,3_0,3_0 -8028,0.0,0.0,20.0,111,84,42,0.0,6792,0.0,0.0,0.0,182.0,0.0,1.0,0.0,1.0,1.0,3471.209285692331,0.0,0.0,8045.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8045.0,1,0,1_1,1_0 -8029,7.0,7.0,56.0,112,43,33,0.0,6793,0.0,400.0,0.0,0.0,2.0,8.0,1.0,3.0,1.8,1531.5179069622657,1300.0,0.0,47649.0,1,1,4,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26471.666666666664,4,0,4_0,4_1 -8030,0.0,0.0,29.0,111,45,31,0.0,6794,0.0,0.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,3571.5499414857336,0.0,0.0,8838.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8838.0,1,0,1_0,1_0 -8031,0.0,0.0,57.0,112,78,71,0.0,6796,0.0,0.0,0.0,195.0,0.0,3.0,0.0,1.0,1.0,3078.0044936571144,0.0,0.0,11998.0,7,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11998.0,1,0,1_1,1_0 -8032,8.0,8.0,63.0,111,34,10,0.0,6797,0.0,0.0,150.0,408.0,1.0,2.0,0.0,1.0,1.0,2108.989514542502,0.0,0.0,52618.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,52618.0,5,0,5,5_0 -8033,2.0,16.0,38.0,111,62,43,0.0,6798,0.0,150.0,0.0,295.0,1.0,2.0,0.0,1.0,1.0,6899.435836107084,2836.0,0.0,29048.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,29048.0,5,0,5,5_0 -8034,0.0,0.0,67.0,112,77,50,0.0,6799,0.0,0.0,0.0,189.0,0.0,2.0,0.0,1.0,1.0,3174.082156044671,0.0,0.0,11370.0,5,3,5,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11370.0,1,0,1_1,1_1 -8035,7.0,11.0,43.0,111,62,50,0.0,68,0.0,0.0,300.0,0.0,3.0,4.0,2.0,4.0,2.3,997.3441415966805,11544.0,0.0,48178.0,1,2,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,3.0,0.0,20946.956521739132,3,0,3_0,3_0 -8036,0.0,0.0,31.0,111,38,12,0.0,680,0.0,0.0,0.0,700.0,1.0,1.0,0.0,2.0,1.5,3822.841780560933,0.0,0.0,22585.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15056.666666666666,2,0,2_0,2_0 -8037,0.0,0.0,42.0,111,63,71,0.0,6800,0.0,0.0,0.0,537.0,1.0,2.0,0.0,1.0,1.0,3221.7205930203963,5200.0,0.0,15810.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15810.0,2,0,2_0,2_0 -8038,26.0,26.0,48.0,112,45,20,0.0,6803,0.0,25.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3542.709581504012,0.0,0.0,17139.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,8569.5,1,0,1_0,1_0 -8039,13.0,15.0,49.0,111,65,50,0.0,6804,0.0,0.0,100.0,0.0,2.0,5.0,1.0,2.0,1.5,2733.600197808432,3320.0,0.0,16020.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,10680.0,1,0,1_0,1_0 -8040,3.0,3.0,61.0,400,86,60,0.0,6805,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2492.680238613552,0.0,0.0,6960.0,4,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,6960.0,1,0,1_0,1_1 -8041,3.0,3.0,35.0,111,46,31,0.0,6806,0.0,150.0,0.0,380.0,1.0,2.0,0.0,1.0,1.0,3360.8572169544163,0.0,0.0,26966.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26966.0,4,0,4_0,4_0 -8042,0.0,0.0,42.0,111,43,33,0.0,6807,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3508.2322348741723,0.0,0.0,28521.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28521.0,4,0,4_0,4_0 -8043,2.0,2.0,50.0,111,56,50,0.0,6809,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2820.495033669365,2766.0,0.0,13725.0,1,1,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,13725.0,2,0,2_0,2_0 -8044,0.0,2.0,29.0,111,38,12,0.0,6811,0.0,800.0,0.0,398.0,1.0,2.0,0.0,1.0,1.0,2725.259020080716,0.0,0.0,31997.0,1,3,6,4.0,1,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,31997.0,5,0,5,5_0 -8045,0.0,0.0,29.0,221,52,50,0.0,6813,0.0,0.0,0.0,203.0,1.0,4.0,0.0,1.0,1.0,2175.2633658394225,0.0,0.0,11867.0,4,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11867.0,1,0,1_1,1_0 -8046,4.0,4.0,52.0,112,48,60,0.0,6814,0.0,544.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1680.6060993436886,5430.0,0.0,61908.0,1,2,6,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,41272.0,5,0,5,5_0 -8047,4.0,5.0,31.0,111,37,31,0.0,6815,0.0,280.0,50.0,0.0,2.0,3.0,0.0,2.0,1.5,3098.760909489243,0.0,0.0,73728.0,1,2,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,49152.0,5,0,5,5_0 -8048,0.0,1.0,33.0,111,21,50,0.0,6816,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2861.8069040410414,2600.0,0.0,42726.0,1,4,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,20345.714285714286,3,0,3_0,3_0 -8049,15.0,15.0,64.0,112,77,60,0.0,6817,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,3177.792382521891,2496.0,0.0,33623.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22415.333333333332,4,0,4_0,4_1 -8050,4.0,4.0,56.0,111,33,41,0.0,6818,0.0,0.0,0.0,770.0,1.0,3.0,0.0,1.0,1.0,2678.219181556557,0.0,0.0,21800.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21800.0,4,0,4_0,4_0 -8051,6.0,6.0,37.0,111,31,10,0.0,6819,0.0,50.0,0.0,721.0,2.0,3.0,1.0,3.0,1.8,2483.2556470030136,0.0,0.0,78109.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,43393.88888888889,5,0,5,5_0 -8052,2.0,11.0,44.0,120,85,71,0.0,6820,0.0,0.0,0.0,430.0,0.0,4.0,2.0,3.0,1.6,2834.476638604649,1820.0,0.0,13202.0,6,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,8251.25,1,0,1_1,1_1 -8053,17.0,17.0,76.0,212,74,50,0.0,6823,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,954.0077448785308,2766.0,0.0,24790.0,5,1,2,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16526.666666666668,2,0,2_0,2_1 -8054,0.0,0.0,74.0,112,77,70,0.0,6824,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2555.3665556693404,0.0,0.0,15530.0,5,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15530.0,2,0,2_0,2_0 -8055,2.0,10.0,49.0,400,13,43,0.0,6827,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3102.1587633759063,2080.0,0.0,7143.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,7143.0,1,0,1_0,1_1 -8056,5.0,5.0,70.0,221,74,60,0.0,6828,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4469.3966147593355,0.0,0.0,38030.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,38030.0,5,0,5,5_0 -8057,10.0,10.0,65.0,111,21,70,0.0,6829,0.0,0.0,0.0,528.0,1.0,3.0,0.0,1.0,1.0,4002.519396855961,2080.0,0.0,12174.0,1,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,12174.0,1,0,1_1,1_0 -8058,8.0,11.0,85.0,112,77,60,0.0,683,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2042.6955365505926,1040.0,0.0,33650.0,5,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22433.333333333332,4,0,4_0,4_1 -8059,3.0,5.0,61.0,111,31,10,0.0,6830,0.0,970.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1590.9076691486243,7150.0,0.0,92582.0,1,2,8,7.0,3,3.0,1.0,1.0,0,0,0,1,0,0,1.0,2.0,61721.333333333336,5,0,5,5_0 -8060,3.0,3.0,41.0,111,33,12,0.0,6831,0.0,0.0,0.0,0.0,1.0,6.0,5.0,7.0,3.2,1218.719199540395,4680.0,0.0,63521.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,19850.3125,3,0,3_0,3_0 -8061,1.0,2.0,35.0,112,38,10,2.0,6834,0.0,620.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3824.1551431151897,0.0,16000.0,60714.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28911.42857142857,4,0,4_0,4_1 -8062,5.0,19.0,26.0,111,62,60,0.0,6835,0.0,300.0,0.0,320.0,2.0,3.0,0.0,2.0,1.5,2630.600432297221,0.0,0.0,32747.0,1,3,7,5.0,3,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,21831.333333333332,4,0,4_0,4_0 -8063,1.0,1.0,35.0,111,33,31,1.0,6836,0.0,500.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1628.4750631055404,3016.0,17700.0,60862.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,33812.22222222222,5,0,5,5_0 -8064,10.0,10.0,50.0,120,64,50,0.0,6837,0.0,550.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2548.197651368808,2600.0,0.0,34220.0,1,2,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16295.238095238095,2,0,2_0,2_0 -8065,0.0,0.0,68.0,111,74,41,0.0,6838,0.0,0.0,0.0,580.0,0.0,3.0,0.0,1.0,1.0,3003.2003148271983,0.0,0.0,41610.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41610.0,5,0,5,5_0 -8066,6.0,7.0,56.0,111,33,20,0.0,6839,0.0,0.0,0.0,0.0,3.0,8.0,2.0,4.0,2.5,1869.0134779541245,6384.0,0.0,74862.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,29944.8,5,0,5,5_0 -8067,2.0,2.0,50.0,112,63,71,0.0,684,0.0,450.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1046.7956352695812,0.0,0.0,46574.0,1,1,9,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,23287.0,4,0,4_0,4_0 -8068,4.0,4.0,74.0,111,71,60,0.0,6840,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2970.0084253490877,0.0,0.0,13737.0,5,4,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13737.0,2,0,2_0,2_0 -8069,2.0,5.0,23.0,112,63,50,0.0,6842,0.0,390.0,0.0,590.0,2.0,4.0,1.0,3.0,1.8,2132.7050512378555,3120.0,0.0,19136.0,1,3,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,10631.111111111111,1,0,1_0,1_0 -8070,0.0,0.0,62.0,111,31,10,0.0,6843,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2573.716680461884,0.0,0.0,184875.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,123250.0,5,0,5,5_0 -8071,0.0,0.0,42.0,111,85,71,0.0,6845,0.0,0.0,0.0,230.0,0.0,3.0,3.0,4.0,1.9,3090.149223483173,0.0,0.0,17017.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8956.315789473685,1,0,1_1,1_0 -8072,5.0,7.0,43.0,112,33,31,0.0,6846,0.0,770.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2226.533236254203,5116.0,0.0,56167.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,31203.888888888887,5,0,5,5_1 -8073,1.0,10.0,48.0,111,46,31,2.0,6847,0.0,450.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2395.516472382027,7072.0,8800.0,48273.0,1,4,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,19309.2,3,0,3_0,3_0 -8074,9.0,9.0,73.0,112,77,71,0.0,6849,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2241.447001343065,0.0,0.0,20900.0,5,1,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13933.333333333334,2,0,2_0,2_0 -8075,5.0,5.0,44.0,300,42,20,0.0,6851,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,1889.4327627034518,3122.0,0.0,27051.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15028.333333333332,2,0,2_0,2_1 -8076,3.0,9.0,35.0,112,46,30,0.0,6852,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2385.245472639043,2080.0,0.0,23210.0,1,3,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,11052.380952380952,1,0,1_1,1_1 -8077,7.0,15.0,65.0,400,77,60,0.0,6853,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3786.9643903453457,1560.0,0.0,17650.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17650.0,3,0,3_0,3_1 -8078,13.0,13.0,75.0,120,78,71,0.0,6854,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3455.5523090998745,0.0,0.0,15250.0,5,1,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15250.0,2,0,2_0,2_0 -8079,1.0,11.0,64.0,112,74,20,2.0,6855,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1367.4135545846743,5382.0,4300.0,72234.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,48156.0,5,0,5,5_1 -8080,0.0,0.0,85.0,111,77,41,0.0,6857,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3752.565982653907,0.0,0.0,18890.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18890.0,3,0,3_0,3_0 -8081,2.0,10.0,35.0,111,67,71,0.0,6858,0.0,0.0,190.0,70.0,1.0,1.0,0.0,1.0,1.0,3766.966162124861,0.0,0.0,17314.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,17314.0,3,0,3_1,3_0 -8082,3.0,8.0,60.0,111,35,41,0.0,686,0.0,0.0,150.0,0.0,1.0,3.0,0.0,1.0,1.0,6412.105889710234,3120.0,0.0,35880.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,35880.0,5,0,5,5_0 -8083,3.0,3.0,41.0,111,54,20,0.0,6863,0.0,300.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4276.233295932802,1374.0,0.0,37211.0,1,3,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,37211.0,5,0,5,5_0 -8084,0.0,0.0,54.0,111,63,71,0.0,6865,0.0,0.0,0.0,640.0,2.0,3.0,1.0,3.0,1.8,3090.057842483135,0.0,0.0,29703.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16501.666666666668,2,0,2_0,2_0 -8085,2.0,3.0,36.0,111,63,60,0.0,6866,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2786.710766843652,0.0,0.0,32435.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15445.238095238095,2,0,2_0,2_0 -8086,0.0,5.0,57.0,300,13,50,2.0,6867,0.0,250.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1437.9473478782331,3224.0,16000.0,24080.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,12040.0,1,0,1_0,1_1 -8087,7.0,12.0,50.0,212,67,60,0.0,6868,0.0,280.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1774.6595284445198,914.0,0.0,17651.0,1,1,3,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17651.0,3,0,3_0,3_1 -8088,0.0,15.0,39.0,111,38,12,0.0,687,0.0,0.0,50.0,0.0,2.0,3.0,2.0,4.0,2.1,3087.716442803198,1901.0,0.0,109453.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,52120.47619047619,5,0,5,5_0 -8089,12.0,15.0,36.0,111,38,10,0.0,6870,0.0,250.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,3259.1797076396674,1957.0,0.0,40736.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,31335.384615384613,5,0,5,5_0 -8090,0.0,21.0,34.0,112,63,50,0.0,6872,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,1506.6705613340398,5564.0,0.0,29327.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,13965.238095238095,2,0,2_1,2_1 -8091,0.0,0.0,18.0,111,63,50,0.0,6873,0.0,0.0,0.0,330.0,1.0,2.0,0.0,1.0,1.0,4260.040060201933,0.0,0.0,11930.0,1,3,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11930.0,1,0,1_0,1_0 -8092,0.0,0.0,67.0,211,78,70,0.0,6874,0.0,0.0,0.0,352.0,0.0,3.0,0.0,1.0,1.0,1538.8087920006203,0.0,0.0,13390.0,5,3,3,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13390.0,2,0,2_1,2_0 -8093,2.0,2.0,40.0,211,34,20,0.0,6875,0.0,60.0,30.0,0.0,2.0,5.0,2.0,4.0,2.1,1283.042868411336,3641.0,0.0,61914.0,1,2,1,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,29482.85714285714,5,0,5,5_0 -8094,9.0,9.0,65.0,112,74,60,0.0,6876,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2551.9663852287977,2600.0,0.0,34703.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23135.333333333332,4,0,4_0,4_1 -8095,11.0,13.0,77.0,111,75,43,0.0,6878,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1962.7832869219123,1260.0,0.0,48937.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,32624.666666666668,5,0,5,5_0 -8096,3.0,3.0,42.0,111,46,43,0.0,6879,0.0,220.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4978.092689490032,0.0,0.0,50081.0,1,3,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27822.777777777777,4,0,4_0,4_0 -8097,2.0,3.0,55.0,112,46,30,0.0,688,0.0,300.0,260.0,0.0,2.0,6.0,0.0,2.0,1.5,3493.498780651882,1041.0,0.0,69704.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,46469.333333333336,5,0,5,5_1 -8098,11.0,29.0,35.0,300,67,50,0.0,6881,0.0,400.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,1158.261058383443,8165.0,0.0,32196.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,13415.0,2,0,2_1,2_1 -8099,12.0,12.0,66.0,300,72,50,0.0,6883,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2542.502646650146,3380.0,0.0,29956.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19970.666666666668,3,0,3_0,3_1 -8100,6.0,19.0,58.0,221,72,60,0.0,6884,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3108.4903854272634,1040.0,0.0,7694.0,7,3,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,7694.0,1,0,1_1,1_0 -8101,2.0,4.0,63.0,111,78,50,0.0,6885,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2563.561161568606,1560.0,0.0,17744.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,11829.333333333334,1,0,1_0,1_0 -8102,5.0,8.0,26.0,111,52,41,0.0,6886,0.0,600.0,0.0,120.0,1.0,4.0,2.0,4.0,2.1,4536.479770063569,4364.0,0.0,22430.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10680.95238095238,1,0,1_1,1_0 -8103,10.0,10.0,86.0,111,72,70,0.0,6887,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1890.74866934688,0.0,0.0,20427.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20427.0,3,0,3_0,3_0 -8104,8.0,10.0,47.0,120,48,31,0.0,6889,0.0,380.0,260.0,0.0,2.0,7.0,2.0,4.0,2.5,3970.8523661583513,5040.0,0.0,45091.0,1,2,0,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,18036.4,3,0,3_0,3_0 -8105,2.0,4.0,37.0,300,63,43,0.0,6890,0.0,700.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1999.4386679926497,2080.0,0.0,36678.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17465.714285714286,3,0,3_0,3_1 -8106,2.0,2.0,56.0,112,77,50,0.0,6892,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3955.5738012139695,2548.0,0.0,26874.0,5,1,9,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,26874.0,4,0,4_0,4_0 -8107,1.0,17.0,47.0,111,42,71,0.0,6893,0.0,100.0,0.0,241.0,1.0,2.0,3.0,5.0,2.4,3820.014660739379,1040.0,0.0,35828.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,14928.333333333334,2,0,2_1,2_0 -8108,0.0,0.0,37.0,111,67,71,0.0,6895,0.0,0.0,0.0,309.0,1.0,4.0,2.0,4.0,2.5,2441.778943032712,286.0,0.0,24500.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9800.0,1,0,1_1,1_0 -8109,19.0,19.0,62.0,111,78,71,0.0,6897,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,4502.203503437167,0.0,0.0,22094.0,5,4,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14729.333333333334,2,0,2_0,2_0 -8110,9.0,11.0,29.0,212,46,41,0.0,6899,0.0,1000.0,0.0,0.0,2.0,10.0,1.0,3.0,1.8,2088.736957777892,3277.0,0.0,44023.0,1,2,3,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,24457.222222222223,4,0,4_0,4_1 -8111,5.0,8.0,62.0,111,21,60,0.0,69,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,4490.615168021303,520.0,0.0,10741.0,1,1,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,4296.4,1,0,1_0,1_0 -8112,6.0,6.0,60.0,111,46,41,0.0,690,0.0,0.0,150.0,0.0,1.0,2.0,0.0,1.0,1.0,2889.884802294257,0.0,0.0,25185.0,1,2,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,25185.0,4,0,4_0,4_0 -8113,17.0,22.0,45.0,111,63,71,0.0,6900,0.0,116.0,0.0,339.0,2.0,3.0,1.0,3.0,1.8,2862.4654438842736,0.0,0.0,33571.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,18650.555555555555,3,0,3_0,3_0 -8114,9.0,15.0,28.0,111,48,60,0.0,6902,0.0,130.0,0.0,750.0,2.0,3.0,1.0,3.0,1.8,3782.1404570536847,0.0,0.0,37616.142857142855,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20897.85714285714,3,0,3_0,3_0 -8115,5.0,15.0,37.0,111,67,71,0.0,6903,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2960.6057156638544,1560.0,0.0,10726.0,4,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10726.0,1,0,1_1,1_0 -8116,1.0,1.0,55.0,300,11,12,1.0,6904,0.0,0.0,0.0,0.0,1.0,11.0,3.0,5.0,3.0,1734.3557263431371,0.0,30000.0,97499.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,32499.666666666668,5,0,5,5_1 -8117,3.0,16.0,40.0,112,46,31,0.0,6907,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1402.348173170277,2548.0,0.0,51166.0,1,2,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21319.166666666668,3,0,3_0,3_1 -8118,2.0,5.0,40.0,111,48,20,0.0,6909,0.0,0.0,340.0,0.0,2.0,6.0,2.0,4.0,2.1,1776.6727448253332,3120.0,0.0,69723.0,1,2,8,6.0,4,2.0,1.0,1.0,0,0,1,0,0,0,2.0,0.0,33201.42857142857,5,0,5,5_0 -8119,0.0,6.0,40.0,112,62,50,0.0,6910,0.0,300.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4043.6360352040424,1560.0,0.0,56352.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,26834.285714285714,4,0,4_0,4_1 -8120,4.0,9.0,59.0,111,34,12,0.0,6911,0.0,100.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2035.3459336901012,0.0,0.0,43486.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21743.0,4,0,4_0,4_0 -8121,2.0,2.0,67.0,111,74,20,0.0,6912,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2592.1257876912914,0.0,0.0,33949.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,33949.0,5,0,5,5_0 -8122,17.0,20.0,68.0,111,75,50,0.0,6914,0.0,0.0,0.0,250.0,0.0,3.0,0.0,2.0,1.5,1103.4586871541223,1041.0,0.0,18788.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,12525.333333333334,1,0,1_1,1_0 -8123,3.0,3.0,65.0,111,74,10,0.0,6917,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2146.358827752405,0.0,0.0,38095.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,38095.0,5,0,5,5_0 -8124,4.0,4.0,60.0,112,86,50,0.0,6918,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1103.8387103584453,0.0,0.0,26463.0,5,1,6,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,17642.0,3,0,3_0,3_0 -8125,0.0,0.0,79.0,111,77,71,0.0,6919,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,4041.5501456789,0.0,0.0,12714.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12714.0,2,0,2_0,2_0 -8126,2.0,5.0,35.0,300,13,42,0.0,692,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,3321.5110693525576,0.0,0.0,45334.0,1,2,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,18889.166666666668,3,0,3_1,3_1 -8127,0.0,0.0,27.0,111,38,12,0.0,6921,0.0,0.0,0.0,1100.0,2.0,2.0,0.0,2.0,1.5,3538.7380753458983,0.0,0.0,39625.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26416.666666666668,4,0,4_0,4_0 -8128,2.0,2.0,56.0,221,65,71,0.0,6924,0.0,0.0,250.0,0.0,1.0,4.0,0.0,2.0,1.5,2978.6619805190326,1040.0,0.0,36075.0,1,1,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,24050.0,4,0,4_0,4_0 -8129,25.0,32.0,60.0,112,33,33,0.0,6926,0.0,0.0,0.0,0.0,1.0,9.0,0.0,2.0,1.5,3265.3673136647235,0.0,0.0,84479.0,1,4,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,56319.333333333336,5,0,5,5_1 -8130,4.0,10.0,42.0,111,37,12,0.0,6927,0.0,0.0,200.0,1880.0,2.0,4.0,3.0,5.0,2.4,3701.975283365683,0.0,0.0,73711.0,1,3,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,30712.916666666668,5,0,5,5_0 -8131,0.0,1.0,32.0,111,43,20,0.0,6929,0.0,0.0,0.0,37.0,1.0,1.0,0.0,1.0,1.0,3253.548895516249,0.0,0.0,14225.0,1,3,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,1,1.0,0.0,14225.0,2,0,2_1,2_0 -8132,8.0,10.0,43.0,111,45,30,0.0,693,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3534.041294866374,0.0,0.0,17911.0,1,4,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,17911.0,3,0,3_0,3_0 -8133,3.0,6.0,53.0,111,52,71,0.0,6933,0.0,300.0,0.0,396.0,1.0,2.0,1.0,3.0,1.8,6031.810824560219,2080.0,0.0,33440.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,18577.777777777777,3,0,3_0,3_0 -8134,0.0,1.0,61.0,111,72,60,0.0,6934,0.0,0.0,0.0,104.0,0.0,2.0,0.0,1.0,1.0,4162.963770848382,0.0,0.0,8471.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,8471.0,1,0,1_1,1_0 -8135,0.0,0.0,59.0,111,68,71,0.0,6935,0.0,0.0,0.0,51.0,1.0,3.0,0.0,1.0,1.0,3860.221764628451,0.0,0.0,19040.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,19040.0,3,0,3_1,3_0 -8136,0.0,21.0,48.0,111,48,71,0.0,6936,0.0,392.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1895.7786414332202,4908.0,0.0,30360.0,1,1,6,5.0,4,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,12144.0,1,0,1_0,1_0 -8137,3.0,7.0,56.0,111,37,31,0.0,6938,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2227.083983054174,0.0,0.0,98777.0,1,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,65851.33333333333,5,0,5,5_0 -8138,11.0,11.0,76.0,111,75,20,0.0,6939,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,894.1880990538901,2109.0,0.0,47087.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,31391.333333333332,5,0,5,5_0 -8139,1.0,1.0,72.0,111,74,41,1.0,694,0.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,1.8,2965.1850486704498,0.0,11000.0,44170.0,5,1,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,24538.888888888887,4,0,4_0,4_0 -8140,11.0,13.0,33.0,112,38,12,0.0,6941,0.0,0.0,199998.0,0.0,2.0,5.0,2.0,4.0,2.1,2575.7484095132545,2516.0,0.0,51588.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,24565.714285714286,4,0,4_0,4_0 -8141,0.0,2.0,39.0,112,63,43,2.0,6942,0.0,460.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3403.9940037708884,0.0,13000.0,45394.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21616.190476190477,3,0,3_0,3_1 -8142,3.0,8.0,38.0,112,52,50,0.0,6944,0.0,560.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2780.6886669693504,3120.0,0.0,35880.0,1,3,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19933.333333333332,3,0,3_0,3_1 -8143,1.0,11.0,49.0,111,43,33,2.0,6945,0.0,200.0,99999.0,0.0,3.0,5.0,2.0,4.0,2.5,1730.7988827826139,1035.0,3200.0,62620.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,25048.0,4,0,4_0,4_0 -8144,1.0,1.0,87.0,221,75,70,1.0,6946,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3127.6407683242032,0.0,15000.0,47840.0,5,1,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31893.333333333332,5,0,5,5_0 -8145,22.0,22.0,73.0,111,75,70,0.0,6947,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1379.9708639166383,859.0,0.0,26469.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17646.0,3,0,3_0,3_0 -8146,3.0,4.0,57.0,300,31,10,0.0,6949,0.0,100699.0,0.0,0.0,2.0,9.0,1.0,3.0,2.0,1274.116639412209,2389.0,0.0,58507.0,1,1,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,29253.5,5,0,5,5_1 -8147,14.0,14.0,77.0,111,77,70,0.0,6950,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2414.3730607374505,0.0,0.0,24930.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16620.0,2,0,2_0,2_0 -8148,10.0,10.0,55.0,111,34,31,0.0,6951,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,5007.6784282005765,0.0,0.0,43700.0,1,2,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,43700.0,5,0,5,5_0 -8149,2.0,2.0,55.0,111,52,50,0.0,6952,0.0,204.0,45.0,0.0,2.0,5.0,0.0,2.0,1.5,1126.4054020853862,0.0,0.0,41777.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27851.333333333332,4,0,4_0,4_0 -8150,16.0,16.0,63.0,111,68,70,0.0,6953,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2589.950322765227,3121.0,0.0,57220.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,28610.0,4,0,4_0,4_0 -8151,0.0,0.0,83.0,112,86,44,0.0,6955,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3104.7329155954358,0.0,0.0,12979.0,5,1,7,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12979.0,2,0,2_0,2_0 -8152,0.0,0.0,64.0,111,78,50,0.0,6956,0.0,0.0,0.0,102.0,0.0,2.0,0.0,1.0,1.0,2459.363778269625,0.0,0.0,10522.0,5,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10522.0,1,0,1_1,1_0 -8153,7.0,9.0,88.0,120,86,50,0.0,6958,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1547.5586319619347,0.0,0.0,27106.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18070.666666666668,3,0,3_0,3_1 -8154,3.0,3.0,59.0,111,74,50,0.0,6959,0.0,0.0,96.0,0.0,1.0,4.0,0.0,2.0,1.5,2855.7247878693206,0.0,0.0,37360.0,4,1,7,5.0,3,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,24906.666666666668,4,0,4_0,4_0 -8155,21.0,21.0,63.0,112,78,71,0.0,696,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3049.9387355799195,2340.0,0.0,12872.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12872.0,2,0,2_0,2_0 -8156,0.0,0.0,42.0,111,56,70,0.0,6960,0.0,0.0,0.0,343.0,1.0,2.0,0.0,1.0,1.0,2604.2490383036156,0.0,0.0,12620.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12620.0,2,0,2_1,2_0 -8157,0.0,0.0,70.0,111,78,71,0.0,6961,0.0,0.0,0.0,236.0,0.0,2.0,0.0,1.0,1.0,3801.7894373275526,0.0,0.0,14310.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14310.0,2,0,2_0,2_0 -8158,0.0,0.0,89.0,111,78,50,0.0,6963,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3476.212191450126,0.0,0.0,12441.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12441.0,1,0,1_0,1_0 -8159,9.0,9.0,39.0,112,43,33,0.0,6964,0.0,0.0,150.0,0.0,1.0,4.0,0.0,1.0,1.0,2947.4883225740523,0.0,0.0,29597.0,1,2,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,29597.0,5,0,5,5_0 -8160,2.0,2.0,61.0,111,75,31,0.0,6965,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3344.8319529478267,0.0,0.0,42847.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28564.666666666668,4,0,4_0,4_0 -8161,19.0,19.0,65.0,400,77,60,0.0,6967,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,6875.207948986527,2080.0,0.0,15658.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15658.0,2,0,2_0,2_1 -8162,3.0,3.0,60.0,111,35,41,0.0,6969,0.0,168.0,0.0,250.0,1.0,4.0,0.0,1.0,1.0,2541.623721624699,0.0,0.0,29518.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,29518.0,5,0,5,5_0 -8163,3.0,5.0,50.0,111,63,50,0.0,697,0.0,170.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2265.5542757098724,3120.0,0.0,34943.0,1,2,4,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17471.5,3,0,3_0,3_0 -8164,2.0,20.0,43.0,111,52,50,0.0,6970,0.0,0.0,0.0,30.0,1.0,3.0,0.0,1.0,1.0,2939.7493490800443,0.0,0.0,11424.0,4,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11424.0,1,0,1_1,1_0 -8165,5.0,13.0,66.0,111,75,44,0.0,6972,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1531.235251277537,2080.0,0.0,49372.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,32914.666666666664,5,0,5,5_0 -8166,21.0,21.0,61.0,112,78,71,0.0,6973,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1845.4553852034528,1846.0,0.0,27593.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18395.333333333332,3,0,3_0,3_0 -8167,5.0,5.0,63.0,221,77,60,0.0,6974,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,4789.513883697318,2701.0,0.0,17785.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17785.0,3,0,3_0,3_0 -8168,1.0,4.0,42.0,112,38,31,2.0,6975,0.0,168.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2375.230619315134,3463.0,16500.0,67934.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,28305.833333333336,4,0,4_0,4_1 -8169,3.0,10.0,47.0,112,43,44,0.0,6978,0.0,0.0,100049.0,0.0,2.0,5.0,0.0,2.0,1.5,1875.2419249607788,3067.0,0.0,50311.0,1,2,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,33540.666666666664,5,0,5,5_1 -8170,0.0,0.0,66.0,111,35,20,0.0,6979,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2712.4636628815024,0.0,0.0,76323.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,76323.0,5,0,5,5_0 -8171,1.0,1.0,44.0,112,47,31,1.0,698,0.0,420.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2859.196211624394,1872.0,25500.0,47689.0,1,3,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,31792.666666666668,5,0,5,5_1 -8172,6.0,6.0,49.0,221,21,50,0.0,6981,0.0,60.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1479.4702856351446,0.0,0.0,29360.0,1,1,1,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19573.333333333332,3,0,3_0,3_0 -8173,0.0,0.0,29.0,111,56,50,0.0,6982,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2871.8542055587354,0.0,0.0,9136.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9136.0,1,0,1_1,1_0 -8174,0.0,0.0,20.0,111,47,31,0.0,6983,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3699.66680433656,0.0,0.0,3513.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,3513.0,1,0,1_1,1_0 -8175,31.0,66.0,66.0,300,75,50,0.0,6985,0.0,0.0,0.0,0.0,1.0,5.0,0.0,3.0,2.0,2715.0854261872632,8066.0,0.0,28061.0,5,1,0,0.0,5,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,14030.5,2,0,2_0,2_1 -8176,2.0,9.0,55.0,221,47,50,0.0,6986,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2029.9623830765383,0.0,0.0,48226.0,1,4,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24113.0,4,0,4_0,4_0 -8177,0.0,10.0,23.0,111,84,41,0.0,6988,0.0,400.0,0.0,400.0,0.0,2.0,0.0,1.0,1.0,4179.84756576165,2600.0,0.0,16259.0,3,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16259.0,2,0,2_0,2_0 -8178,2.0,6.0,76.0,300,71,70,0.0,6990,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,929.0147769133588,0.0,0.0,19760.0,5,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9880.0,1,0,1_0,1_1 -8179,0.0,0.0,52.0,112,22,70,0.0,6991,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1499.5291365796506,0.0,0.0,25253.0,1,2,3,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10101.2,1,0,1_0,1_1 -8180,8.0,8.0,77.0,111,77,60,0.0,6992,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4418.181105017207,1404.0,0.0,22633.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22633.0,4,0,4_0,4_0 -8181,3.0,3.0,62.0,111,37,41,0.0,6993,0.0,300.0,0.0,1050.0,1.0,3.0,0.0,1.0,1.0,3560.3604424037476,0.0,0.0,77106.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,77106.0,5,0,5,5_0 -8182,6.0,6.0,55.0,111,56,70,0.0,6994,0.0,0.0,0.0,0.0,1.0,5.0,0.0,4.0,2.5,1966.0604107829008,1817.0,0.0,19014.0,1,1,8,6.0,5,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,7605.6,1,0,1_0,1_0 -8183,5.0,6.0,73.0,112,71,70,0.0,6995,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4469.799917175237,2455.0,0.0,17074.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11382.666666666666,1,0,1_0,1_1 -8184,7.0,20.0,74.0,111,77,70,0.0,6996,0.0,0.0,0.0,310.0,0.0,3.0,0.0,1.0,1.0,4647.987050082229,2679.0,0.0,18131.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18131.0,3,0,3_0,3_0 -8185,11.0,11.0,65.0,111,72,12,0.0,6997,0.0,0.0,50.0,0.0,1.0,3.0,0.0,2.0,1.5,3156.1700032095778,5592.0,0.0,54047.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,36031.333333333336,5,0,5,5_0 -8186,2.0,2.0,67.0,112,74,70,0.0,6998,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,945.3676191567254,6760.0,0.0,63620.0,5,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,42413.333333333336,5,0,5,5_0 -8187,1.0,1.0,36.0,221,37,43,1.0,7,0.0,800.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2818.8787773354916,3770.0,19500.0,60685.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28897.619047619046,4,0,4_0,4_0 -8188,4.0,4.0,56.0,111,46,50,0.0,70,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1599.0667812375536,0.0,0.0,69083.0,1,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,46055.333333333336,5,0,5,5_0 -8189,11.0,11.0,83.0,111,75,10,0.0,7000,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2138.621996847876,0.0,0.0,31768.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21178.666666666668,3,0,3_0,3_0 -8190,0.0,0.0,20.0,111,56,42,0.0,7002,0.0,0.0,0.0,550.0,1.0,3.0,0.0,1.0,1.0,4565.223291269515,0.0,0.0,2352.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2352.0,1,0,1_1,1_0 -8191,0.0,0.0,70.0,111,78,70,0.0,7004,0.0,0.0,0.0,289.0,0.0,3.0,0.0,1.0,1.0,3194.630019001692,0.0,0.0,18666.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18666.0,3,0,3_0,3_0 -8192,1.0,14.0,36.0,111,62,50,0.0,7007,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,2.7,1093.740749395235,2600.0,0.0,37624.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13934.814814814814,2,0,2_1,2_0 -8193,2.0,4.0,42.0,111,31,10,0.0,7008,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1850.957877324726,0.0,0.0,60024.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25010.0,4,0,4_0,4_0 -8194,11.0,11.0,52.0,111,52,60,0.0,7010,0.0,0.0,99999.0,256.0,1.0,3.0,1.0,2.0,1.5,4030.1285206438815,1543.0,0.0,27094.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18062.666666666668,3,0,3_0,3_0 -8195,11.0,11.0,87.0,111,72,70,0.0,7011,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1661.0568543216466,0.0,0.0,27477.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,18318.0,3,0,3_0,3_0 -8196,1.0,1.0,48.0,111,63,42,0.0,7012,0.0,200003.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,999.4710916083101,0.0,0.0,53756.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,21502.4,3,0,3_0,3_0 -8197,3.0,4.0,40.0,111,43,20,0.0,7013,0.0,1000.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,2091.417852041415,3900.0,0.0,88800.0,1,2,7,5.0,2,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,55500.0,5,0,5,5_0 -8198,3.0,9.0,66.0,111,46,50,0.0,7014,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3318.3267871342255,2491.0,0.0,31700.0,5,4,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,31700.0,5,0,5,5_0 -8199,4.0,10.0,51.0,111,54,50,0.0,7015,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2232.1883741821516,1040.0,0.0,8052.0,4,1,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,5368.0,1,0,1_0,1_0 -8200,1.0,13.0,52.0,112,62,50,2.0,7017,0.0,80.0,40.0,0.0,3.0,5.0,3.0,5.0,3.0,960.729700369149,1304.0,1000.0,39546.0,1,1,7,1.0,4,4.0,0.0,0.0,0,1,0,0,0,0,2.0,2.0,13182.0,2,0,2_0,2_0 -8201,2.0,10.0,32.0,111,54,20,0.0,7018,0.0,0.0,150.0,254.0,1.0,2.0,0.0,1.0,1.0,2790.425162794522,3640.0,0.0,18580.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18580.0,3,0,3_0,3_0 -8202,13.0,22.0,58.0,112,77,70,0.0,7019,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2098.299602449563,1560.0,0.0,14480.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9653.333333333334,1,0,1_0,1_1 -8203,7.0,31.0,53.0,400,43,44,0.0,702,0.0,60.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2377.3117313265748,1300.0,0.0,24347.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16231.333333333334,2,0,2_0,2_1 -8204,16.0,16.0,71.0,300,78,50,0.0,7021,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2406.2527274864347,1040.0,0.0,3434.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,3434.0,1,0,1_0,1_1 -8205,1.0,4.0,39.0,211,56,60,0.0,7023,0.0,0.0,0.0,203.0,2.0,5.0,3.0,5.0,2.6,2287.099434731798,0.0,0.0,18202.0,1,3,4,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,7000.7692307692305,1,0,1_1,1_0 -8206,1.0,1.0,44.0,111,63,71,2.0,7024,0.0,0.0,0.0,0.0,2.0,2.0,2.0,4.0,2.1,4368.906325415791,0.0,25000.0,33040.0,1,4,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,15733.333333333332,2,0,2_0,2_0 -8207,0.0,0.0,56.0,111,52,71,0.0,7025,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3088.625934090141,0.0,0.0,28672.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19114.666666666668,3,0,3_0,3_0 -8208,3.0,3.0,28.0,111,84,10,0.0,7027,0.0,800.0,0.0,750.0,0.0,3.0,0.0,1.0,1.0,3626.0762089198797,2600.0,0.0,264.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,264.0,1,0,1_0,1_0 -8209,1.0,2.0,25.0,112,64,50,2.0,7028,0.0,400.0,0.0,418.0,2.0,7.0,4.0,6.0,2.9,1781.8235834205286,0.0,5000.0,45136.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,15564.137931034484,2,0,2_1,2_1 -8210,11.0,11.0,53.0,111,54,50,0.0,7029,0.0,0.0,0.0,673.0,1.0,5.0,2.0,3.0,2.0,2175.1445803845104,2600.0,0.0,28192.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,14096.0,2,0,2_1,2_0 -8211,6.0,7.0,47.0,111,38,12,0.0,7030,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,3576.987312919032,3235.0,0.0,71141.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,33876.666666666664,5,0,5,5_0 -8212,2.0,7.0,35.0,112,63,71,0.0,7031,250.0,350.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1658.862961411279,3161.0,0.0,54347.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22644.583333333336,4,0,4_0,4_1 -8213,7.0,7.0,49.0,120,56,50,0.0,7033,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2674.7722229602414,0.0,0.0,19897.0,1,2,0,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,11053.888888888889,1,0,1_1,1_0 -8214,0.0,0.0,80.0,112,71,71,0.0,7034,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3297.3892054562684,0.0,0.0,8041.0,5,4,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8041.0,1,0,1_0,1_1 -8215,5.0,11.0,62.0,221,35,20,0.0,7036,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3095.9150015391956,0.0,0.0,15092.0,1,1,1,1.0,3,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,10061.333333333334,1,0,1_0,1_0 -8216,1.0,4.0,47.0,111,34,20,2.0,7037,0.0,200.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,5634.956585173184,0.0,6900.0,27654.0,1,3,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27654.0,4,0,4_0,4_0 -8217,0.0,27.0,58.0,111,47,70,0.0,704,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1835.1724258046079,0.0,0.0,17790.0,4,4,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,8895.0,1,0,1_0,1_0 -8218,5.0,25.0,76.0,112,78,71,0.0,7042,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2846.506259263771,0.0,0.0,11632.0,5,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11632.0,1,0,1_0,1_0 -8219,5.0,10.0,32.0,111,53,60,0.0,7047,0.0,0.0,60.0,487.0,2.0,4.0,0.0,2.0,1.5,3181.2972666012283,0.0,0.0,39581.0,1,3,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,26387.333333333332,4,0,4_0,4_0 -8220,11.0,11.0,62.0,112,75,33,0.0,7048,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2295.576968003241,0.0,0.0,60686.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,40457.333333333336,5,0,5,5_1 -8221,2.0,2.0,37.0,111,69,42,0.0,7049,0.0,120.0,56.0,0.0,2.0,5.0,2.0,4.0,2.1,2719.095857327579,0.0,0.0,42330.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,20157.142857142855,3,0,3_0,3_0 -8222,9.0,9.0,74.0,221,72,71,0.0,7052,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4801.743702724591,0.0,0.0,20876.0,5,1,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13917.333333333334,2,0,2_0,2_0 -8223,8.0,10.0,29.0,120,52,50,0.0,7053,0.0,80.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2870.9997009226327,0.0,0.0,10720.0,4,3,0,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10720.0,1,0,1_1,1_0 -8224,3.0,5.0,53.0,111,54,31,0.0,7054,0.0,0.0,50.0,0.0,1.0,4.0,0.0,2.0,1.5,2088.4978357871883,0.0,0.0,48640.0,1,2,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,32426.666666666668,5,0,5,5_0 -8225,0.0,1.0,46.0,112,53,50,1.0,7055,0.0,20.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.3,2611.074404201098,0.0,23000.0,34077.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14816.08695652174,2,0,2_0,2_1 -8226,19.0,19.0,59.0,111,53,70,0.0,7056,0.0,318.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2874.2137868350483,0.0,0.0,40160.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,26773.333333333332,4,0,4_0,4_0 -8227,0.0,0.0,55.0,111,54,20,0.0,7057,0.0,0.0,0.0,437.0,1.0,2.0,0.0,2.0,1.5,3183.1186216530364,0.0,0.0,53539.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35692.666666666664,5,0,5,5_0 -8228,3.0,3.0,27.0,111,63,60,0.0,7058,0.0,0.0,0.0,600.0,2.0,2.0,0.0,2.0,1.5,3125.8197830259264,0.0,0.0,39786.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,26524.0,4,0,4_0,4_0 -8229,4.0,15.0,33.0,111,43,33,0.0,7059,0.0,600.0,0.0,662.0,2.0,4.0,2.0,4.0,2.1,2158.2495785865563,5200.0,0.0,45370.0,1,3,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21604.761904761905,3,0,3_0,3_0 -8230,5.0,5.0,63.0,111,77,50,0.0,7061,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1960.0266981076552,0.0,0.0,26920.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17946.666666666668,3,0,3_0,3_0 -8231,6.0,12.0,48.0,111,64,71,0.0,7064,0.0,0.0,200.0,0.0,1.0,4.0,1.0,3.0,1.8,3737.2786167220765,3942.0,0.0,19478.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,10821.111111111111,1,0,1_1,1_0 -8232,2.0,15.0,21.0,111,56,41,0.0,7065,0.0,200.0,0.0,700.0,1.0,3.0,0.0,1.0,1.0,3567.556419223115,0.0,0.0,13706.0,3,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,13706.0,2,0,2_0,2_0 -8233,3.0,4.0,39.0,120,43,33,0.0,7066,0.0,250.0,0.0,306.0,1.0,2.0,0.0,1.0,1.0,2609.0260127291613,0.0,0.0,11585.0,4,4,0,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,11585.0,1,0,1_0,1_0 -8234,4.0,4.0,70.0,111,74,12,0.0,7069,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1155.1504914871703,818.0,0.0,59768.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,39845.333333333336,5,0,5,5_0 -8235,0.0,0.0,72.0,111,77,70,0.0,707,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1960.5351890667812,0.0,0.0,23110.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,23110.0,4,0,4_1,4_0 -8236,6.0,7.0,58.0,112,37,30,0.0,7070,0.0,530.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2720.10653264847,2601.0,0.0,90969.0,1,2,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,60646.0,5,0,5,5_0 -8237,3.0,15.0,30.0,111,65,50,0.0,7071,0.0,0.0,330.0,320.0,1.0,3.0,0.0,1.0,1.0,2461.482996071219,2340.0,0.0,16156.0,1,3,6,5.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,16156.0,2,0,2_0,2_0 -8238,9.0,9.0,40.0,111,37,20,0.0,7072,0.0,0.0,20.0,0.0,1.0,4.0,1.0,2.0,1.3,3727.256547970192,0.0,0.0,24220.0,4,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,18630.76923076923,3,0,3_1,3_0 -8239,2.0,7.0,72.0,112,72,70,0.0,7074,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1830.6981430164385,4160.0,0.0,23440.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15626.666666666666,2,0,2_0,2_1 -8240,5.0,9.0,85.0,111,75,70,0.0,7075,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1407.1748872735707,2652.0,0.0,26011.0,5,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17340.666666666668,3,0,3_0,3_0 -8241,12.0,16.0,74.0,120,78,70,0.0,7076,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1838.6783623237802,3250.0,0.0,18069.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18069.0,3,0,3_0,3_1 -8242,11.0,16.0,41.0,400,67,50,0.0,7078,0.0,950.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2243.0084438622316,4250.0,0.0,44316.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21102.85714285714,3,0,3_0,3_1 -8243,3.0,9.0,67.0,112,12,50,0.0,7079,0.0,0.0,100.0,0.0,1.0,4.0,0.0,2.0,1.5,1887.0813845643336,5512.0,0.0,40440.0,1,2,9,2.0,3,5.0,1.0,1.0,0,1,0,0,0,0,5.0,0.0,26960.0,4,0,4_0,4_0 -8244,11.0,11.0,48.0,112,48,50,0.0,708,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1215.0942115168482,3354.0,0.0,26158.0,1,4,5,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,13079.0,2,0,2_0,2_1 -8245,5.0,5.0,23.0,111,54,31,0.0,7083,0.0,100.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3629.711471438232,0.0,0.0,6461.0,4,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,6461.0,1,0,1_0,1_0 -8246,1.0,3.0,33.0,111,22,50,0.0,7084,0.0,260.0,0.0,610.0,2.0,3.0,1.0,3.0,1.8,3752.7648787037797,702.0,0.0,37525.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20847.222222222223,3,0,3_0,3_0 -8247,0.0,0.0,86.0,111,77,70,0.0,7085,0.0,0.0,0.0,225.0,0.0,4.0,0.0,1.0,1.0,2683.3514035625144,0.0,0.0,9720.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9720.0,1,0,1_1,1_0 -8248,0.0,0.0,81.0,111,78,71,0.0,7086,0.0,0.0,0.0,274.0,0.0,2.0,0.0,1.0,1.0,3167.4280724584223,0.0,0.0,15440.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15440.0,2,0,2_1,2_0 -8249,1.0,8.0,51.0,112,47,50,0.0,7087,0.0,200.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,2102.671565271509,3640.0,0.0,29390.0,1,1,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,14695.0,2,0,2_0,2_1 -8250,3.0,10.0,26.0,112,64,60,0.0,7088,0.0,900.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2380.8303335020546,5200.0,0.0,44740.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21304.761904761905,3,0,3_0,3_1 -8251,3.0,3.0,36.0,112,21,50,0.0,7089,0.0,300.0,0.0,254.0,2.0,4.0,3.0,5.0,2.6,5007.348347667403,2617.0,0.0,109561.0,1,3,9,3.0,4,1.0,1.0,1.0,0,1,0,0,0,1,0.0,1.0,42138.84615384615,5,0,5,5_0 -8252,3.0,3.0,37.0,112,69,50,0.0,709,0.0,570.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2350.296708529759,0.0,0.0,42999.0,1,2,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,20475.714285714286,3,0,3_0,3_1 -8253,1.0,9.0,53.0,111,47,60,2.0,7091,0.0,0.0,400.0,0.0,1.0,3.0,0.0,1.0,1.0,2715.508137769389,1065.0,3000.0,39389.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,39389.0,5,0,5,5_0 -8254,0.0,18.0,24.0,400,67,50,0.0,7092,0.0,1276.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3604.1584763554115,3120.0,0.0,26652.0,1,3,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,1,0.0,3.0,14806.666666666666,2,0,2_1,2_1 -8255,11.0,27.0,78.0,400,77,71,0.0,7095,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3423.641231090155,0.0,0.0,17953.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11968.666666666666,1,0,1_0,1_1 -8256,3.0,3.0,32.0,120,46,31,0.0,7096,0.0,1200.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2312.7631168775806,2860.0,0.0,57508.0,1,3,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,31948.888888888887,5,0,5,5_0 -8257,4.0,17.0,55.0,111,42,31,0.0,7097,0.0,100.0,70.0,0.0,3.0,7.0,2.0,4.0,2.5,2756.1975547008037,2600.0,0.0,79071.0,1,1,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,31628.4,5,0,5,5_0 -8258,11.0,11.0,43.0,112,38,50,0.0,7099,0.0,480.0,0.0,0.0,2.0,4.0,0.0,3.0,2.0,1651.6244876328412,3640.0,0.0,45118.0,1,1,9,0.0,5,4.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22559.0,4,0,4_0,4_1 -8259,4.0,6.0,36.0,211,43,33,0.0,71,0.0,600.0,300.0,0.0,2.0,8.0,1.0,3.0,1.8,2501.617620243663,3900.0,0.0,61234.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,34018.88888888889,5,0,5,5_0 -8260,0.0,0.0,57.0,111,77,60,0.0,7101,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2086.9805042372964,0.0,0.0,14380.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14380.0,2,0,2_0,2_0 -8261,3.0,3.0,36.0,400,21,50,0.0,7103,0.0,2.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2643.664818840133,0.0,0.0,46660.0,1,2,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,19441.666666666668,3,0,3_1,3_1 -8262,0.0,0.0,74.0,111,77,50,0.0,7104,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2485.5892025425337,0.0,0.0,16359.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16359.0,2,0,2_0,2_0 -8263,6.0,8.0,54.0,112,52,60,0.0,7105,0.0,500.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,1864.489648324453,1326.0,0.0,21317.0,1,2,6,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14211.333333333334,2,0,2_0,2_1 -8264,0.0,0.0,44.0,111,37,31,0.0,7106,0.0,0.0,0.0,1158.0,1.0,3.0,2.0,3.0,1.8,3583.628234054531,0.0,0.0,66178.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36765.555555555555,5,0,5,5_0 -8265,4.0,11.0,46.0,111,65,71,0.0,7107,0.0,0.0,0.0,334.0,1.0,5.0,1.0,3.0,2.0,3212.6807283589865,0.0,0.0,35722.0,1,3,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,17861.0,3,0,3_1,3_0 -8266,28.0,29.0,80.0,120,77,70,0.0,7112,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1868.8975149342398,1427.0,0.0,18373.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18373.0,3,0,3_0,3_1 -8267,0.0,0.0,23.0,111,56,50,0.0,7113,0.0,0.0,0.0,140.0,1.0,3.0,1.0,2.0,1.3,2991.5177307999256,0.0,0.0,12412.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9547.692307692307,1,0,1_1,1_0 -8268,2.0,3.0,51.0,120,38,12,0.0,7115,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1388.6312318554185,2497.0,0.0,90912.0,1,1,0,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,39526.956521739135,5,0,5,5_1 -8269,4.0,4.0,49.0,112,23,12,0.0,7116,0.0,199998.0,0.0,0.0,2.0,9.0,3.0,5.0,2.8,1009.246455807375,5246.0,0.0,93002.0,1,1,10,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,33215.0,5,0,5,5_0 -8270,8.0,11.0,49.0,112,46,10,0.0,7117,0.0,280.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2017.706121562419,0.0,0.0,16556.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,8278.0,1,0,1_0,1_1 -8271,3.0,6.0,32.0,111,47,31,0.0,7118,0.0,0.0,130.0,362.0,1.0,3.0,0.0,1.0,1.0,3619.4318345356915,0.0,0.0,18411.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18411.0,3,0,3_0,3_0 -8272,0.0,0.0,57.0,111,64,60,0.0,7119,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3139.763774313622,0.0,0.0,8550.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,5700.0,1,0,1_1,1_0 -8273,0.0,0.0,37.0,111,46,41,0.0,712,0.0,0.0,0.0,789.0,1.0,3.0,2.0,3.0,1.6,3320.50636508614,0.0,0.0,25048.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15655.0,2,0,2_1,2_0 -8274,1.0,5.0,31.0,111,38,12,2.0,7122,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3444.4473272704477,2019.0,9900.0,58252.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,32362.222222222223,5,0,5,5_0 -8275,6.0,13.0,38.0,111,62,50,0.0,7123,0.0,10.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1292.3655595924,1043.0,0.0,32641.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15543.333333333332,2,0,2_0,2_0 -8276,1.0,7.0,37.0,111,46,43,2.0,7124,0.0,150.0,270.0,730.0,2.0,4.0,1.0,3.0,1.8,2626.504237512216,3380.0,6000.0,49476.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27486.666666666664,4,0,4_0,4_0 -8277,0.0,0.0,26.0,112,69,71,1.0,7125,0.0,12.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3578.9998797282124,0.0,11890.0,24706.0,1,3,8,0.0,3,3.0,0.0,1.0,1,0,0,0,0,1,1.0,2.0,16470.666666666668,2,0,2_1,2_1 -8278,1.0,3.0,58.0,111,38,12,0.0,7126,0.0,50.0,100099.0,0.0,3.0,7.0,2.0,4.0,2.5,1847.6657741718911,3487.0,0.0,99569.0,1,1,9,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,2.0,2.0,39827.6,5,0,5,5_0 -8279,0.0,0.0,31.0,400,62,43,0.0,7127,0.0,0.0,0.0,0.0,2.0,10.0,0.0,2.0,1.5,5004.800296854509,4680.0,0.0,37835.0,1,2,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25223.333333333332,4,0,4_0,4_1 -8280,10.0,12.0,45.0,111,34,10,0.0,7128,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.1,2936.1902617763744,0.0,0.0,85661.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,40790.95238095238,5,0,5,5_0 -8281,2.0,2.0,44.0,112,47,50,0.0,7129,0.0,160.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,2692.235416951746,3120.0,0.0,34463.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,11487.666666666666,1,0,1_0,1_1 -8282,0.0,0.0,84.0,111,77,50,0.0,713,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2887.085252018707,0.0,0.0,19700.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19700.0,3,0,3_0,3_0 -8283,0.0,0.0,54.0,111,56,60,0.0,7130,0.0,0.0,0.0,14.0,2.0,3.0,3.0,4.0,2.5,3371.322949854127,0.0,0.0,18855.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,7542.0,1,0,1_1,1_0 -8284,1.0,5.0,59.0,111,47,44,2.0,7131,0.0,560.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3209.8127335378485,0.0,12000.0,23365.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23365.0,4,0,4_0,4_0 -8285,0.0,0.0,56.0,111,46,20,0.0,7132,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2782.9025342592145,0.0,0.0,68519.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,45679.333333333336,5,0,5,5_0 -8286,4.0,16.0,60.0,211,34,20,0.0,7134,0.0,0.0,140.0,0.0,1.0,6.0,0.0,3.0,2.0,1407.0402156626612,4261.0,0.0,108044.0,1,1,1,3.0,5,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,54022.0,5,0,5,5_0 -8287,0.0,0.0,26.0,111,35,12,0.0,7135,0.0,0.0,0.0,280.0,1.0,3.0,0.0,1.0,1.0,4276.809783289807,0.0,0.0,11512.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11512.0,1,0,1_1,1_0 -8288,10.0,15.0,28.0,111,38,10,0.0,7136,0.0,1160.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3708.8807657303983,3166.0,0.0,39251.0,1,3,8,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,26167.333333333332,4,0,4_0,4_0 -8289,3.0,4.0,49.0,111,47,50,0.0,7139,0.0,120.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3375.9239547934435,0.0,0.0,42845.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28563.333333333332,4,0,4_0,4_0 -8290,10.0,10.0,52.0,111,47,31,0.0,7140,0.0,300.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,6463.65694832771,2157.0,0.0,65475.0,1,1,8,6.0,4,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,32737.5,5,0,5,5_0 -8291,9.0,9.0,64.0,111,72,70,0.0,7142,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1913.3688001801847,5460.0,0.0,44609.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29739.333333333332,5,0,5,5_0 -8292,1.0,16.0,26.0,120,62,50,2.0,7143,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,1430.5780632489736,2340.0,1000.0,24501.0,4,3,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,10208.75,1,0,1_1,1_0 -8293,1.0,1.0,46.0,111,42,30,1.0,7146,0.0,0.0,25.0,0.0,1.0,3.0,0.0,1.0,1.0,3447.16785295352,364.0,7000.0,23811.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23811.0,4,0,4_0,4_0 -8294,1.0,19.0,29.0,112,55,31,2.0,7147,0.0,200.0,0.0,365.0,1.0,3.0,0.0,1.0,1.0,3223.509661412229,1560.0,4500.0,15223.0,1,3,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15223.0,2,0,2_0,2_0 -8295,0.0,0.0,44.0,111,85,41,0.0,7149,0.0,0.0,0.0,700.0,0.0,2.0,0.0,1.0,1.0,3833.152354646882,0.0,0.0,8340.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8340.0,1,0,1_0,1_0 -8296,11.0,11.0,58.0,111,63,50,0.0,7150,0.0,0.0,0.0,188.0,2.0,4.0,2.0,4.0,2.5,2671.803869601529,0.0,0.0,47817.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,19126.8,3,0,3_1,3_0 -8297,1.0,2.0,43.0,111,38,42,0.0,7151,0.0,110.0,0.0,749.0,2.0,3.0,1.0,3.0,1.8,3306.617153565965,0.0,0.0,81392.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,45217.777777777774,5,0,5,5_0 -8298,5.0,5.0,73.0,111,75,20,0.0,7154,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3025.811402111089,0.0,0.0,39870.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,39870.0,5,0,5,5_0 -8299,3.0,3.0,44.0,112,46,71,0.0,7156,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2160.8516462996067,2080.0,0.0,28704.0,1,2,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19136.0,3,0,3_0,3_1 -8300,1.0,16.0,45.0,111,55,50,2.0,7157,0.0,0.0,250.0,0.0,3.0,6.0,2.0,4.0,2.5,1404.7347906820305,5200.0,1000.0,37325.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,14930.0,2,0,2_1,2_0 -8301,0.0,0.0,43.0,111,35,20,0.0,7158,0.0,0.0,0.0,90.0,1.0,3.0,1.0,2.0,1.3,2572.8991436724527,0.0,0.0,17951.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13808.461538461537,2,0,2_1,2_0 -8302,10.0,10.0,56.0,112,45,60,0.0,7159,0.0,450.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3055.3222424529877,2973.0,0.0,42155.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28103.333333333332,4,0,4_0,4_1 -8303,1.0,1.0,47.0,112,48,50,1.0,716,0.0,250.0,200.0,0.0,3.0,5.0,1.0,3.0,2.0,1781.1643226502983,6126.0,12600.0,49269.0,1,2,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,24634.5,4,0,4_0,4_1 -8304,9.0,10.0,54.0,111,55,50,0.0,7160,0.0,160.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3749.234875389448,2080.0,0.0,38784.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25856.0,4,0,4_0,4_0 -8305,2.0,2.0,73.0,400,71,71,0.0,7161,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1878.137238712823,0.0,0.0,18170.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12113.333333333334,1,0,1_0,1_1 -8306,0.0,0.0,20.0,111,84,41,0.0,7164,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3799.8259479948497,0.0,0.0,4800.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,4800.0,1,0,1_0,1_0 -8307,8.0,11.0,69.0,111,75,12,0.0,7165,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1312.0027280685338,3047.0,0.0,71444.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,47629.333333333336,5,0,5,5_0 -8308,4.0,8.0,55.0,111,63,71,0.0,7166,0.0,150.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1997.1985350224932,0.0,0.0,17884.0,4,2,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,11922.666666666666,1,0,1_1,1_0 -8309,0.0,8.0,46.0,400,48,50,2.0,717,0.0,220.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2494.357142908597,833.0,7000.0,36348.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20193.333333333332,3,0,3_0,3_1 -8310,3.0,3.0,61.0,111,42,60,0.0,7175,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2952.942531163851,0.0,0.0,22838.0,1,1,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,22838.0,4,0,4_0,4_0 -8311,4.0,4.0,37.0,111,67,43,0.0,7177,0.0,0.0,350.0,0.0,2.0,4.0,2.0,4.0,2.1,1820.3058480184968,5668.0,0.0,39698.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,18903.809523809523,3,0,3_0,3_0 -8312,0.0,10.0,24.0,111,52,42,0.0,7178,0.0,250.0,0.0,314.0,1.0,1.0,0.0,1.0,1.0,4352.481866804511,2080.0,0.0,5142.0,3,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,5142.0,1,0,1_1,1_0 -8313,8.0,8.0,79.0,111,74,41,0.0,7182,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2275.08418067826,4676.0,0.0,54860.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,36573.333333333336,5,0,5,5_0 -8314,9.0,13.0,36.0,112,37,10,0.0,7185,0.0,0.0,360.0,0.0,2.0,6.0,2.0,4.0,2.1,1439.0933789008748,5720.0,0.0,60077.0,1,2,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,28608.095238095237,4,0,4_0,4_0 -8315,9.0,17.0,31.0,111,63,43,0.0,7186,0.0,240.0,0.0,670.0,1.0,3.0,0.0,1.0,1.0,6219.802439986133,1612.0,0.0,22300.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22300.0,4,0,4_0,4_0 -8316,6.0,7.0,44.0,111,63,50,0.0,7188,146.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2144.4129661204684,1666.0,0.0,62985.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27384.782608695656,4,0,4_0,4_0 -8317,5.0,7.0,34.0,112,37,12,0.0,7190,0.0,400.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2702.140969137072,2139.0,0.0,49203.0,1,2,10,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27335.0,4,0,4_0,4_0 -8318,15.0,25.0,81.0,112,71,70,0.0,7191,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1403.1210270012214,0.0,0.0,19457.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12971.333333333334,2,0,2_0,2_1 -8319,1.0,8.0,54.0,111,52,71,2.0,7192,0.0,30.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2179.561317639443,0.0,4500.0,17780.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11853.333333333334,1,0,1_0,1_0 -8320,2.0,2.0,62.0,111,75,20,1.0,7193,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2589.6925984761847,588.0,11723.0,30540.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30540.0,5,0,5,5_0 -8321,0.0,0.0,61.0,111,78,71,0.0,7194,0.0,0.0,0.0,398.0,0.0,4.0,0.0,1.0,1.0,3145.413464218062,0.0,0.0,17160.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17160.0,3,0,3_0,3_0 -8322,1.0,1.0,52.0,221,56,70,1.0,7195,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3049.9395243032195,0.0,14500.0,13382.0,1,2,1,2.0,1,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,13382.0,2,0,2_0,2_0 -8323,10.0,10.0,70.0,400,35,41,0.0,7197,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1294.3671008883132,3120.0,0.0,37654.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25102.666666666668,4,0,4_0,4_0 -8324,3.0,14.0,34.0,120,63,60,0.0,7199,0.0,80.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2606.9382827386044,0.0,0.0,28158.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11732.5,1,0,1_0,1_1 -8325,0.0,6.0,62.0,221,75,71,2.0,720,0.0,0.0,0.0,0.0,0.0,6.0,1.0,3.0,2.0,3265.0835547839,0.0,3000.0,19994.0,5,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,9997.0,1,0,1_0,1_0 -8326,7.0,9.0,43.0,300,54,60,0.0,7200,0.0,50.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,2876.2740263504897,5959.0,0.0,38157.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18170.0,3,0,3_0,3_1 -8327,4.0,6.0,43.0,111,46,31,0.0,7201,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1428.020213281429,0.0,0.0,52138.0,1,1,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26069.0,4,0,4_0,4_0 -8328,1.0,1.0,38.0,111,33,10,1.0,7203,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,1789.4479767665384,0.0,10190.0,28145.0,1,4,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21650.0,3,0,3_0,3_0 -8329,3.0,7.0,71.0,111,78,70,0.0,7204,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1895.9004154338231,0.0,0.0,16814.0,5,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16814.0,2,0,2_0,2_0 -8330,22.0,22.0,83.0,111,78,70,0.0,7206,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3192.338561113854,0.0,0.0,17125.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17125.0,3,0,3_0,3_0 -8331,17.0,25.0,51.0,300,31,10,0.0,7208,0.0,99999.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2177.060927259339,12145.0,0.0,226126.0,1,2,0,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,90450.4,5,0,5,5_1 -8332,0.0,0.0,84.0,111,77,50,0.0,7209,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3241.922905928545,0.0,0.0,23557.0,5,1,8,6.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15704.666666666666,2,0,2_0,2_0 -8333,20.0,28.0,53.0,400,69,71,0.0,7214,0.0,100.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3362.353946926444,1087.0,0.0,19142.0,1,1,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12761.333333333334,2,0,2_0,2_1 -8334,2.0,15.0,62.0,111,72,50,0.0,7215,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3892.758402994654,0.0,0.0,11564.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11564.0,1,0,1_1,1_0 -8335,1.0,1.0,34.0,112,53,42,0.0,7216,0.0,100167.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2254.9344026791305,0.0,0.0,54262.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25839.04761904762,4,0,4_0,4_0 -8336,9.0,9.0,53.0,112,22,50,0.0,7219,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,5872.683849392527,0.0,0.0,11873.0,1,4,8,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,7915.333333333333,1,0,1_0,1_1 -8337,8.0,8.0,71.0,221,78,71,0.0,722,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,5995.367005293699,0.0,0.0,23399.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15599.333333333334,2,0,2_0,2_0 -8338,4.0,9.0,50.0,221,67,71,0.0,7220,0.0,0.0,260.0,0.0,2.0,3.0,0.0,2.0,1.5,1521.38581510379,0.0,0.0,32974.0,1,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,21982.666666666668,4,0,4_0,4_0 -8339,1.0,16.0,64.0,221,78,50,0.0,7221,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2296.748374815479,0.0,0.0,23700.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15800.0,2,0,2_0,2_0 -8340,19.0,22.0,71.0,120,75,43,0.0,7223,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1676.2339216896685,12584.0,0.0,26880.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17920.0,3,0,3_0,3_1 -8341,11.0,11.0,56.0,112,37,41,0.0,7224,0.0,160.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2105.8067833795167,6491.0,0.0,68767.0,1,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,68767.0,5,0,5,5_1 -8342,4.0,4.0,51.0,112,38,10,0.0,7227,0.0,0.0,100.0,0.0,1.0,4.0,0.0,2.0,1.5,1224.6323762391567,1043.0,0.0,78774.0,1,3,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,52516.0,5,0,5,5_0 -8343,3.0,3.0,55.0,400,21,50,0.0,7228,0.0,125.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2178.076386073167,0.0,0.0,51778.0,1,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,34518.666666666664,5,0,5,5_1 -8344,5.0,5.0,32.0,300,64,50,0.0,7229,0.0,199998.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1442.158382617037,0.0,0.0,26810.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,14894.444444444443,2,0,2_0,2_1 -8345,2.0,13.0,80.0,111,72,41,0.0,7230,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,4816.122873436129,1820.0,0.0,32236.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,32236.0,5,0,5,5_0 -8346,0.0,3.0,31.0,111,34,10,2.0,7231,0.0,100299.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2146.3557078272447,1561.0,10000.0,48495.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,23092.85714285714,4,0,4_0,4_0 -8347,0.0,0.0,61.0,111,63,71,0.0,7232,0.0,0.0,0.0,230.0,1.0,1.0,0.0,1.0,1.0,3145.3548365246907,0.0,0.0,12410.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12410.0,1,0,1_0,1_0 -8348,0.0,0.0,82.0,300,75,33,0.0,7234,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2509.7222147114962,0.0,0.0,64900.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,64900.0,5,0,5,5_1 -8349,11.0,11.0,48.0,112,46,31,0.0,7235,0.0,204.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1561.595683165221,2772.0,0.0,49651.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17732.5,3,0,3_0,3_0 -8350,10.0,10.0,44.0,111,68,42,0.0,7236,0.0,0.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,3193.3833650138936,2059.0,0.0,38950.0,1,4,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,21638.888888888887,3,0,3_0,3_0 -8351,7.0,7.0,81.0,221,75,71,0.0,7237,0.0,0.0,0.0,221.0,0.0,4.0,0.0,1.0,1.0,3086.802163068808,0.0,0.0,15024.0,5,3,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,15024.0,2,0,2_1,2_0 -8352,11.0,12.0,55.0,111,43,70,0.0,7238,0.0,0.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,3016.388327523449,2081.0,0.0,20541.0,4,3,8,6.0,4,1.0,1.0,0.0,0,0,1,0,0,1,1.0,0.0,10270.5,1,0,1_1,1_0 -8353,6.0,13.0,54.0,111,63,71,0.0,7239,0.0,120.0,0.0,388.0,3.0,4.0,3.0,5.0,3.0,3620.098318384342,3640.0,0.0,38788.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,12929.333333333334,2,0,2_0,2_0 -8354,0.0,17.0,39.0,111,53,50,0.0,724,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1977.904380580814,0.0,0.0,35086.0,1,4,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19492.222222222223,3,0,3_0,3_0 -8355,1.0,9.0,31.0,111,54,50,2.0,7240,0.0,0.0,0.0,200.0,1.0,3.0,3.0,5.0,2.4,2796.2532265645773,3380.0,2000.0,18250.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,7604.166666666667,1,0,1_1,1_0 -8356,0.0,41.0,30.0,111,35,10,0.0,7241,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3461.5237080733446,2029.0,0.0,32190.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,17883.333333333332,3,0,3_0,3_0 -8357,2.0,3.0,46.0,111,37,31,0.0,7243,0.0,0.0,200.0,500.0,1.0,3.0,1.0,2.0,1.5,3102.102850978492,0.0,0.0,26361.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,17574.0,3,0,3_0,3_0 -8358,3.0,18.0,48.0,111,43,33,0.0,7244,0.0,0.0,240.0,0.0,1.0,3.0,0.0,1.0,1.0,2971.0742728139558,0.0,0.0,107264.0,1,2,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,107264.0,5,0,5,5_0 -8359,2.0,9.0,51.0,111,23,20,0.0,7245,0.0,200.0,60.0,0.0,2.0,7.0,2.0,4.0,2.1,2272.7659809828865,0.0,0.0,152697.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,72712.85714285714,5,0,5,5_0 -8360,1.0,1.0,38.0,111,53,50,1.0,7246,0.0,100.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1645.386230803698,0.0,13300.0,70444.0,1,3,6,5.0,4,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,29351.666666666668,5,0,5,5_0 -8361,7.0,7.0,81.0,400,75,70,0.0,7247,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2153.0686816427888,0.0,0.0,23814.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15876.0,2,0,2_0,2_1 -8362,19.0,19.0,54.0,111,45,60,0.0,7249,0.0,0.0,60.0,387.0,2.0,3.0,0.0,2.0,1.5,3045.2628304380983,0.0,0.0,44949.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,29966.0,5,0,5,5_0 -8363,3.0,9.0,38.0,221,48,60,0.0,725,0.0,0.0,400.0,0.0,1.0,5.0,4.0,6.0,2.9,1728.613623409892,2134.0,0.0,39002.0,1,3,1,3.0,4,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,13448.96551724138,2,0,2_1,2_0 -8364,3.0,8.0,41.0,111,63,71,0.0,7250,0.0,99999.0,0.0,520.0,2.0,5.0,4.0,6.0,3.3,3098.159596481886,2887.0,0.0,33900.0,4,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,10272.727272727274,1,0,1_1,1_0 -8365,2.0,2.0,54.0,111,37,41,0.0,7251,0.0,0.0,200.0,434.0,2.0,4.0,0.0,2.0,1.5,1359.6900687273576,0.0,0.0,69969.0,1,3,6,4.0,3,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,46646.0,5,0,5,5_0 -8366,0.0,0.0,72.0,112,77,50,0.0,7252,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1263.3784517007216,0.0,0.0,18651.0,5,1,10,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18651.0,3,0,3_0,3_0 -8367,2.0,2.0,38.0,111,69,60,0.0,7253,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2922.535610441695,3388.0,0.0,78809.0,1,2,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34264.782608695656,5,0,5,5_0 -8368,4.0,11.0,45.0,112,85,43,0.0,7257,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2566.4363773218033,0.0,0.0,1085.0,7,2,8,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,1085.0,1,0,1_0,1_0 -8369,0.0,0.0,45.0,111,65,44,0.0,726,0.0,12.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2816.5124486514683,0.0,0.0,26481.0,1,4,8,6.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,11033.75,1,0,1_0,1_0 -8370,2.0,7.0,27.0,400,64,60,0.0,7260,0.0,600.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,6788.157526634842,3187.0,0.0,27667.0,1,3,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,15370.555555555555,2,0,2_1,2_0 -8371,2.0,2.0,61.0,221,72,41,0.0,7261,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4118.37672245434,1040.0,0.0,282.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,282.0,1,0,1_0,1_0 -8372,5.0,5.0,43.0,111,22,50,0.0,7264,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4222.198475345232,2132.0,0.0,16595.0,1,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16595.0,2,0,2_0,2_0 -8373,11.0,15.0,61.0,111,78,71,0.0,7265,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3668.187353359903,0.0,0.0,27797.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,18531.333333333332,3,0,3_0,3_0 -8374,2.0,5.0,43.0,112,54,41,0.0,7266,0.0,130.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2078.6044212237284,0.0,0.0,50919.0,1,3,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28288.333333333332,4,0,4_0,4_1 -8375,4.0,6.0,33.0,400,63,43,0.0,7268,0.0,584.0,30.0,0.0,1.0,4.0,3.0,5.0,2.4,2214.892521442319,1560.0,0.0,45095.0,1,3,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,18789.583333333336,3,0,3_0,3_1 -8376,5.0,5.0,60.0,300,71,50,0.0,727,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1526.749954254639,12324.0,0.0,38609.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38609.0,5,0,5,5_1 -8377,4.0,22.0,42.0,112,11,50,0.0,7270,0.0,0.0,0.0,0.0,1.0,2.0,2.0,3.0,1.6,3118.2813598468715,3120.0,0.0,5187.0,1,1,7,0.0,2,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,3241.875,1,0,1_0,1_1 -8378,5.0,6.0,47.0,300,42,20,0.0,7274,0.0,300.0,150.0,0.0,2.0,8.0,2.0,4.0,2.5,765.8604934082042,3293.0,0.0,60274.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24109.6,4,0,4_0,4_1 -8379,2.0,4.0,46.0,111,52,42,0.0,7275,0.0,100.0,150.0,0.0,2.0,8.0,3.0,5.0,2.8,1652.9861506610637,3277.0,0.0,43872.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,15668.57142857143,2,0,2_0,2_0 -8380,16.0,16.0,50.0,111,38,12,0.0,7277,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,2696.783530997073,0.0,0.0,152693.0,1,2,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,3.0,0.0,101795.33333333333,5,0,5,5_0 -8381,4.0,4.0,91.0,111,75,70,0.0,7278,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1858.4844212298897,0.0,0.0,16296.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16296.0,2,0,2_0,2_0 -8382,2.0,4.0,38.0,111,43,20,0.0,7279,0.0,0.0,300.0,460.0,1.0,2.0,0.0,1.0,1.0,2758.001412235378,2608.0,0.0,24145.0,1,3,6,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,24145.0,4,0,4_0,4_0 -8383,21.0,21.0,36.0,112,52,10,0.0,7281,0.0,0.0,30.0,638.0,2.0,3.0,0.0,2.0,1.5,2412.8431963588505,0.0,0.0,33853.0,1,3,10,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22568.666666666668,4,0,4_0,4_0 -8384,3.0,3.0,78.0,111,74,70,0.0,7282,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1299.363105706193,0.0,0.0,44500.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29666.666666666668,5,0,5,5_0 -8385,5.0,5.0,52.0,111,33,10,0.0,7283,0.0,0.0,50.0,0.0,1.0,9.0,1.0,2.0,1.3,2811.4845952699548,4678.0,0.0,69487.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,53451.53846153846,5,0,5,5_0 -8386,0.0,6.0,71.0,112,75,41,0.0,7285,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1496.820621933901,5592.0,0.0,41166.0,5,1,4,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,27444.0,4,0,4_0,4_1 -8387,0.0,0.0,82.0,111,77,70,0.0,7287,0.0,0.0,0.0,460.0,0.0,5.0,0.0,1.0,1.0,3951.0891817548504,0.0,0.0,21281.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21281.0,3,0,3_0,3_0 -8388,2.0,2.0,59.0,111,37,41,0.0,7289,0.0,70.0,272.0,0.0,2.0,6.0,1.0,3.0,2.0,1649.800772925569,2600.0,0.0,68706.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,34353.0,5,0,5,5_0 -8389,8.0,8.0,51.0,111,48,50,0.0,729,0.0,240.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,1238.0942445584178,0.0,0.0,81116.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,40558.0,5,0,5,5_0 -8390,0.0,0.0,75.0,111,77,71,0.0,7296,0.0,0.0,0.0,346.0,0.0,2.0,0.0,1.0,1.0,3823.879275515305,0.0,0.0,24001.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24001.0,4,0,4_0,4_0 -8391,4.0,4.0,66.0,111,74,60,0.0,7298,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3823.540154066181,1560.0,0.0,32265.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,21510.0,3,0,3_0,3_0 -8392,15.0,15.0,65.0,111,75,60,0.0,73,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1596.7801537806824,1664.0,0.0,46792.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,31194.666666666668,5,0,5,5_0 -8393,0.0,0.0,23.0,111,84,20,0.0,7300,0.0,0.0,0.0,58.0,0.0,1.0,0.0,1.0,1.0,3374.006914384333,0.0,0.0,5871.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,5871.0,1,0,1_1,1_0 -8394,1.0,1.0,22.0,211,63,43,1.0,7302,0.0,440.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1969.8876314169513,3744.0,14000.0,18841.0,1,3,3,4.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12560.666666666666,1,0,1_1,1_0 -8395,0.0,20.0,45.0,111,63,60,2.0,7303,0.0,0.0,200.0,164.0,2.0,6.0,4.0,6.0,3.1,1254.289985836134,1560.0,600.0,40111.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,12939.032258064515,2,0,2_1,2_0 -8396,1.0,1.0,59.0,111,34,20,1.0,7304,0.0,150.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,904.3940107623278,0.0,18000.0,77296.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,51530.666666666664,5,0,5,5_0 -8397,1.0,1.0,53.0,111,62,50,1.0,7306,0.0,0.0,0.0,279.0,2.0,3.0,0.0,2.0,1.5,1505.600205908727,1872.0,27800.0,18152.0,4,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12101.333333333334,1,0,1_0,1_0 -8398,5.0,11.0,24.0,112,48,50,0.0,7307,0.0,400.0,300.0,0.0,2.0,4.0,0.0,2.0,1.5,2780.5914344325006,2080.0,0.0,35220.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23480.0,4,0,4_0,4_1 -8399,3.0,19.0,45.0,111,34,31,0.0,7308,0.0,0.0,60.0,0.0,2.0,6.0,2.0,4.0,2.3,2148.9157703105143,0.0,0.0,74363.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,32331.739130434784,5,0,5,5_0 -8400,8.0,10.0,76.0,111,72,60,0.0,7309,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2945.252857553729,0.0,0.0,19680.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13120.0,2,0,2_0,2_0 -8401,1.0,1.0,38.0,111,37,10,0.0,7310,450.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1031.1320074436414,0.0,0.0,42146.0,1,2,4,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,17560.833333333336,3,0,3_0,3_0 -8402,5.0,16.0,62.0,111,56,50,0.0,7311,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1513.3084439091576,0.0,0.0,21898.0,1,3,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,14598.666666666666,2,0,2_0,2_0 -8403,1.0,1.0,58.0,111,52,50,1.0,7313,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2717.9621370329282,0.0,23500.0,21157.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21157.0,3,0,3_0,3_0 -8404,0.0,0.0,33.0,111,46,31,0.0,7314,0.0,0.0,0.0,352.0,1.0,1.0,0.0,1.0,1.0,7343.001803440882,0.0,0.0,30208.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,30208.0,5,0,5,5_0 -8405,16.0,20.0,63.0,400,74,60,0.0,7316,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2425.5495308341156,0.0,0.0,27061.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18040.666666666668,3,0,3_0,3_1 -8406,3.0,19.0,57.0,120,62,50,0.0,7317,0.0,0.0,0.0,81.0,1.0,3.0,0.0,1.0,1.0,1762.328906695724,0.0,0.0,12730.0,4,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,12730.0,2,0,2_1,2_1 -8407,7.0,7.0,34.0,112,47,31,0.0,7318,0.0,0.0,150.0,0.0,2.0,5.0,2.0,4.0,2.1,2303.2911715948558,0.0,0.0,53641.0,1,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,25543.333333333332,4,0,4_0,4_1 -8408,2.0,8.0,37.0,111,46,43,0.0,7319,0.0,1500.0,0.0,186.0,1.0,3.0,0.0,1.0,1.0,2447.395062778092,0.0,0.0,17424.0,1,3,6,4.0,1,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,17424.0,3,0,3_1,3_0 -8409,17.0,17.0,80.0,111,77,70,0.0,7321,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2212.4441232594763,0.0,0.0,11823.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11823.0,1,0,1_0,1_0 -8410,2.0,8.0,44.0,112,62,71,0.0,7322,0.0,100.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,2281.5581098417406,1569.0,0.0,38280.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,18228.571428571428,3,0,3_1,3_1 -8411,12.0,12.0,50.0,300,85,70,0.0,7323,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2274.9118528639156,0.0,0.0,19900.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13266.666666666666,2,0,2_0,2_1 -8412,3.0,3.0,44.0,111,38,31,0.0,7324,0.0,0.0,400.0,0.0,2.0,6.0,2.0,4.0,2.1,2555.9751511410404,1612.0,0.0,101487.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,48327.142857142855,5,0,5,5_0 -8413,15.0,15.0,61.0,111,54,60,0.0,7325,0.0,0.0,50.0,540.0,1.0,3.0,0.0,1.0,1.0,3362.7705971309715,0.0,0.0,30113.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,30113.0,5,0,5,5_0 -8414,2.0,10.0,30.0,111,45,20,0.0,7326,0.0,600.0,0.0,588.0,2.0,5.0,3.0,5.0,2.4,1419.7799722809166,0.0,0.0,30884.0,1,3,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,12868.333333333334,2,0,2_0,2_0 -8415,6.0,11.0,66.0,111,75,50,0.0,7329,0.0,0.0,0.0,800.0,0.0,5.0,0.0,1.0,1.0,2004.512923072592,1873.0,0.0,21886.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21886.0,4,0,4_0,4_0 -8416,0.0,0.0,88.0,111,75,71,0.0,7330,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4150.949538102914,0.0,0.0,25390.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25390.0,4,0,4_0,4_0 -8417,8.0,11.0,40.0,111,54,50,0.0,7331,0.0,340.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1065.59944694332,1820.0,0.0,39394.0,1,1,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15757.6,2,0,2_0,2_0 -8418,5.0,5.0,39.0,111,34,10,0.0,7333,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2984.2864412395666,5772.0,0.0,79705.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,37954.7619047619,5,0,5,5_0 -8419,2.0,2.0,58.0,120,48,42,0.0,7336,0.0,100499.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2608.7701655421442,2092.0,0.0,46825.0,1,2,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,31216.666666666668,5,0,5,5_1 -8420,16.0,16.0,82.0,111,72,70,0.0,7337,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2189.990414117765,468.0,0.0,12606.0,5,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12606.0,2,0,2_0,2_0 -8421,3.0,15.0,40.0,111,53,60,0.0,7338,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,3466.425571212852,0.0,0.0,32876.0,1,4,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,18264.444444444445,3,0,3_0,3_0 -8422,0.0,0.0,40.0,111,52,50,0.0,7339,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,2340.904033462167,0.0,0.0,14331.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11023.846153846154,1,0,1_1,1_0 -8423,2.0,3.0,80.0,111,75,50,0.0,734,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2088.9996155055546,0.0,0.0,32156.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21437.333333333332,3,0,3_0,3_0 -8424,13.0,18.0,81.0,221,72,70,0.0,7342,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1740.9410326598288,0.0,0.0,20771.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13847.333333333334,2,0,2_0,2_0 -8425,6.0,6.0,73.0,111,75,41,0.0,7349,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2749.8324392673885,3544.0,0.0,41380.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27586.666666666668,4,0,4_0,4_0 -8426,14.0,14.0,72.0,112,78,70,0.0,735,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1056.4653943290273,1456.0,0.0,26327.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17551.333333333332,3,0,3_0,3_1 -8427,0.0,0.0,91.0,111,72,70,0.0,7350,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2477.105298658068,0.0,0.0,8506.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8506.0,1,0,1_0,1_0 -8428,9.0,9.0,82.0,111,74,20,0.0,7353,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3752.7656283095616,0.0,0.0,36300.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36300.0,5,0,5,5_0 -8429,2.0,19.0,37.0,400,62,50,0.0,7354,0.0,20.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,1528.0541717131762,2468.0,0.0,37481.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,13881.85185185185,2,0,2_1,2_1 -8430,7.0,20.0,32.0,400,63,50,0.0,7355,0.0,300.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1674.2466813562012,3614.0,0.0,35759.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,14899.583333333334,2,0,2_0,2_1 -8431,6.0,9.0,41.0,111,47,71,0.0,7357,0.0,500.0,0.0,500.0,2.0,3.0,2.0,4.0,2.1,3691.193920299314,0.0,0.0,33762.0,3,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,16077.142857142857,2,0,2_0,2_0 -8432,0.0,0.0,64.0,111,78,71,0.0,736,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1931.5968667387626,0.0,0.0,16210.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10806.666666666666,1,0,1_0,1_0 -8433,7.0,7.0,54.0,112,37,41,0.0,7362,0.0,1000.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1884.0189748523808,4680.0,0.0,94965.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,63310.0,5,0,5,5_1 -8434,0.0,0.0,55.0,112,54,60,1.0,7363,0.0,392.0,186.0,0.0,2.0,5.0,0.0,2.0,1.5,1292.4739235032816,0.0,11600.0,38913.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25942.0,4,0,4_0,4_1 -8435,2.0,6.0,36.0,111,53,43,0.0,7364,0.0,220.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3236.8580166873553,3380.0,0.0,24541.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24541.0,4,0,4_0,4_0 -8436,0.0,0.0,81.0,111,78,71,0.0,7365,0.0,0.0,0.0,152.0,0.0,3.0,0.0,1.0,1.0,3546.4380035012146,0.0,0.0,14223.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14223.0,2,0,2_1,2_0 -8437,5.0,5.0,54.0,120,64,50,0.0,7366,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2104.4560936180806,0.0,0.0,61345.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,40896.666666666664,5,0,5,5_1 -8438,4.0,4.0,65.0,300,75,20,0.0,7367,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2478.3367857509397,0.0,0.0,25738.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25738.0,4,0,4_0,4_1 -8439,8.0,11.0,65.0,111,37,50,0.0,7368,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2322.4869474588636,468.0,0.0,44915.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29943.333333333332,5,0,5,5_0 -8440,10.0,10.0,71.0,112,78,70,0.0,7369,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1895.0366238540237,1560.0,0.0,19620.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,13080.0,2,0,2_0,2_1 -8441,3.0,7.0,53.0,111,47,50,0.0,737,0.0,350.0,0.0,236.0,1.0,2.0,1.0,2.0,1.5,2549.6502076708616,2080.0,0.0,19660.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,13106.666666666666,2,0,2_0,2_0 -8442,1.0,2.0,39.0,221,54,43,0.0,7373,0.0,550.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,3601.4454686075524,3380.0,0.0,51160.0,1,2,1,2.0,4,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,21316.666666666668,3,0,3_0,3_0 -8443,13.0,13.0,53.0,112,34,20,0.0,7374,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2335.9597514640636,0.0,0.0,35063.0,1,3,10,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26971.53846153846,4,0,4_0,4_0 -8444,4.0,4.0,62.0,111,56,70,0.0,7376,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2802.229574618331,0.0,0.0,14476.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14476.0,2,0,2_1,2_0 -8445,3.0,11.0,47.0,221,63,50,0.0,7377,0.0,0.0,170.0,0.0,2.0,4.0,4.0,6.0,3.3,2191.362175997398,2080.0,0.0,26478.0,1,3,1,1.0,4,3.0,0.0,1.0,0,1,0,0,0,1,3.0,0.0,8023.636363636364,1,0,1_1,1_0 -8446,11.0,18.0,65.0,111,77,60,0.0,738,0.0,0.0,0.0,107.0,0.0,2.0,0.0,1.0,1.0,2318.829361341189,0.0,0.0,10917.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10917.0,1,0,1_1,1_0 -8447,1.0,1.0,66.0,111,75,41,1.0,7382,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1891.331943213882,0.0,16000.0,37313.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,37313.0,5,0,5,5_0 -8448,1.0,12.0,21.0,400,63,50,0.0,7383,0.0,0.0,0.0,0.0,2.0,5.0,3.0,4.0,2.5,845.7487849318392,0.0,0.0,25240.0,1,1,0,0.0,2,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,10096.0,1,0,1_0,1_1 -8449,4.0,4.0,57.0,111,55,42,0.0,7388,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1396.0949890016138,0.0,0.0,48511.0,1,1,6,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,24255.5,4,0,4_0,4_0 -8450,0.0,1.0,46.0,112,48,71,0.0,739,0.0,500.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,4648.602601339598,0.0,0.0,306163.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,133114.34782608697,5,0,5,5_1 -8451,11.0,17.0,54.0,111,37,31,0.0,7391,0.0,0.0,0.0,900.0,2.0,4.0,2.0,3.0,2.0,2701.713389919379,0.0,0.0,76909.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38454.5,5,0,5,5_0 -8452,4.0,10.0,54.0,112,62,71,0.0,7393,0.0,75.0,0.0,0.0,4.0,5.0,3.0,5.0,3.0,2777.4514883502493,3224.0,0.0,64700.0,1,1,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21566.666666666668,3,0,3_0,3_1 -8453,3.0,4.0,73.0,112,78,71,0.0,7394,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3317.3081541994125,308.0,0.0,24460.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16306.666666666666,2,0,2_0,2_0 -8454,6.0,10.0,51.0,111,55,50,0.0,7395,0.0,700.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3151.3542178744315,0.0,0.0,35563.0,1,4,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15462.17391304348,2,0,2_0,2_0 -8455,19.0,26.0,63.0,112,74,20,0.0,7396,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1322.3828165618252,4056.0,0.0,21386.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14257.333333333334,2,0,2_0,2_1 -8456,3.0,3.0,71.0,111,74,12,0.0,7397,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1191.6559197705058,3938.0,0.0,53711.0,5,1,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,35807.333333333336,5,0,5,5_0 -8457,2.0,6.0,42.0,112,55,50,0.0,7398,0.0,35.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1588.5825267693265,1195.0,0.0,23359.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,12977.222222222223,2,0,2_0,2_1 -8458,4.0,20.0,54.0,112,43,33,0.0,7399,0.0,200.0,200.0,0.0,2.0,5.0,0.0,2.0,1.5,2354.1695982508054,3068.0,0.0,45864.0,1,1,6,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,30576.0,5,0,5,5_1 -8459,3.0,5.0,58.0,111,33,12,0.0,7400,0.0,0.0,350.0,0.0,1.0,3.0,0.0,1.0,1.0,2907.204469369069,0.0,0.0,45263.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,45263.0,5,0,5,5_0 -8460,9.0,9.0,83.0,211,77,70,0.0,7402,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1487.9063201892857,0.0,0.0,37246.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24830.666666666668,4,0,4_0,4_0 -8461,1.0,6.0,42.0,111,21,60,2.0,7403,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2846.502244111977,0.0,4000.0,62437.0,1,4,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,34687.22222222222,5,0,5,5_0 -8462,3.0,5.0,43.0,300,69,50,0.0,7405,0.0,199998.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2968.1553067608083,2600.0,0.0,31590.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21060.0,3,0,3_0,3_1 -8463,8.0,18.0,40.0,111,85,71,0.0,7406,0.0,0.0,0.0,92.0,0.0,2.0,0.0,1.0,1.0,3740.7322494980135,0.0,0.0,13000.0,7,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13000.0,2,0,2_1,2_0 -8464,0.0,0.0,31.0,111,46,31,0.0,7407,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4000.0846020955178,0.0,0.0,92558.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,92558.0,5,0,5,5_0 -8465,7.0,11.0,74.0,111,77,50,0.0,7408,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1708.7569161984434,0.0,0.0,30729.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,20486.0,3,0,3_0,3_0 -8466,1.0,1.0,48.0,211,22,50,0.0,741,0.0,315.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1843.8928919070022,3435.0,0.0,43618.0,1,1,3,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21809.0,4,0,4_0,4_0 -8467,0.0,0.0,89.0,400,71,71,0.0,7411,0.0,0.0,0.0,387.0,0.0,3.0,0.0,2.0,1.5,3807.0857090430136,0.0,0.0,21913.0,5,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14608.666666666666,2,0,2_0,2_1 -8468,3.0,7.0,68.0,111,72,44,0.0,7412,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,1.8,2111.106818962247,3120.0,0.0,72192.0,5,1,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,40106.666666666664,5,0,5,5_0 -8469,7.0,21.0,58.0,400,52,70,0.0,7413,0.0,50.0,80.0,0.0,1.0,5.0,0.0,2.0,1.5,1678.6370487315937,0.0,0.0,34259.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22839.333333333332,4,0,4_0,4_1 -8470,8.0,12.0,56.0,111,65,50,0.0,7415,0.0,0.0,250.0,0.0,1.0,4.0,0.0,2.0,1.5,1116.636602752652,3518.0,0.0,36270.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24180.0,4,0,4_0,4_0 -8471,0.0,0.0,37.0,111,42,20,0.0,7417,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,4115.9382846019535,0.0,0.0,55269.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26318.571428571428,4,0,4_0,4_0 -8472,0.0,0.0,79.0,111,86,50,0.0,7418,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3006.0237942004287,0.0,0.0,12138.0,7,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12138.0,1,0,1_0,1_0 -8473,2.0,2.0,61.0,300,11,42,0.0,7419,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2627.638190294369,3362.0,0.0,14462.0,1,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,14462.0,2,0,2_0,2_1 -8474,15.0,15.0,41.0,112,38,31,0.0,742,0.0,0.0,70.0,0.0,2.0,4.0,2.0,4.0,2.3,1601.1730817604168,3016.0,0.0,51662.0,1,2,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22461.739130434784,4,0,4_0,4_0 -8475,0.0,6.0,29.0,111,54,31,2.0,7420,0.0,80.0,0.0,496.0,1.0,2.0,0.0,1.0,1.0,2674.0765947520404,0.0,13500.0,20737.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20737.0,3,0,3_0,3_0 -8476,2.0,2.0,44.0,112,67,60,0.0,7421,0.0,200.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1383.5396589786442,6756.0,0.0,51839.0,1,2,10,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,18513.928571428572,3,0,3_0,3_0 -8477,0.0,0.0,53.0,111,54,50,0.0,7422,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1850.8640392360503,0.0,0.0,12887.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12887.0,2,0,2_0,2_0 -8478,1.0,11.0,27.0,111,56,50,2.0,7424,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1553.6565631519436,1040.0,1600.0,18256.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10142.222222222223,1,0,1_1,1_0 -8479,13.0,15.0,54.0,112,11,70,0.0,7426,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2372.812929153797,0.0,0.0,3813.0,1,1,9,1.0,1,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,3813.0,1,0,1_0,1_0 -8480,9.0,18.0,45.0,111,46,44,0.0,7427,0.0,0.0,0.0,174.0,1.0,3.0,1.0,3.0,1.8,3323.5164634925545,0.0,0.0,16532.0,1,3,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,9184.444444444443,1,0,1_1,1_0 -8481,3.0,3.0,61.0,111,75,44,0.0,7428,0.0,0.0,0.0,876.0,0.0,4.0,0.0,2.0,1.5,2861.7342305332854,0.0,0.0,64201.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,42800.666666666664,5,0,5,5_0 -8482,8.0,21.0,37.0,112,21,50,0.0,7429,0.0,400.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3137.8798778493847,3078.0,0.0,25180.0,1,3,6,0.0,4,2.0,1.0,0.0,1,0,0,0,0,1,0.0,2.0,11990.47619047619,1,0,1_1,1_1 -8483,5.0,13.0,76.0,112,72,71,0.0,7430,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2692.8757400947566,1560.0,0.0,18521.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12347.333333333334,1,0,1_0,1_1 -8484,3.0,3.0,44.0,111,46,50,0.0,7431,0.0,100199.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1619.7720498639528,0.0,0.0,46357.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25753.888888888887,4,0,4_0,4_0 -8485,0.0,0.0,78.0,112,78,50,0.0,7432,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2323.250693713895,0.0,0.0,12640.0,5,3,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12640.0,2,0,2_0,2_1 -8486,6.0,8.0,60.0,111,37,10,0.0,7433,0.0,600.0,50.0,0.0,2.0,6.0,0.0,2.0,1.5,2675.6396228132735,0.0,0.0,63316.0,1,1,8,6.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,42210.666666666664,5,0,5,5_0 -8487,3.0,3.0,53.0,112,43,41,0.0,7434,0.0,0.0,0.0,0.0,2.0,5.0,1.0,5.0,2.6,837.5913909875278,156.0,0.0,41359.0,1,1,9,0.0,5,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,15907.307692307691,2,0,2_0,2_1 -8488,0.0,0.0,78.0,111,77,50,0.0,7435,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1881.7231181269467,0.0,0.0,41387.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27591.333333333332,4,0,4_0,4_0 -8489,5.0,5.0,44.0,111,46,12,0.0,7437,0.0,1200.0,100.0,0.0,1.0,7.0,3.0,5.0,2.4,1147.6790523501945,2774.0,0.0,44265.0,4,1,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,18443.75,3,0,3_0,3_0 -8490,16.0,16.0,53.0,221,62,60,0.0,7439,0.0,20.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,2553.4777943993695,0.0,0.0,38623.0,1,3,1,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16792.608695652176,2,0,2_0,2_0 -8491,3.0,3.0,43.0,111,54,50,0.0,7440,0.0,99999.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2242.36602407171,3640.0,0.0,42682.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23712.222222222223,4,0,4_0,4_0 -8492,0.0,15.0,38.0,111,52,50,0.0,7443,0.0,0.0,120.0,0.0,1.0,3.0,2.0,3.0,1.8,3406.968817605784,2080.0,0.0,17483.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,9712.777777777777,1,0,1_1,1_0 -8493,12.0,14.0,71.0,111,75,50,0.0,7444,0.0,0.0,0.0,366.0,0.0,4.0,0.0,1.0,1.0,1439.2462661335214,0.0,0.0,20170.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20170.0,3,0,3_0,3_0 -8494,5.0,7.0,64.0,111,75,41,0.0,7445,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2504.4963016637944,0.0,0.0,46037.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,30691.333333333332,5,0,5,5_0 -8495,0.0,0.0,29.0,111,54,30,0.0,7447,0.0,0.0,0.0,400.0,1.0,1.0,0.0,1.0,1.0,3685.208416775422,0.0,0.0,14530.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14530.0,2,0,2_0,2_0 -8496,0.0,0.0,72.0,111,86,70,0.0,7449,0.0,0.0,0.0,275.0,0.0,3.0,0.0,1.0,1.0,3126.3766510812143,0.0,0.0,12886.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12886.0,2,0,2_1,2_0 -8497,1.0,2.0,39.0,300,56,50,0.0,745,0.0,100.0,0.0,156.0,1.0,5.0,3.0,4.0,2.1,1316.7196580359976,0.0,0.0,26916.0,1,3,0,0.0,2,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,12817.142857142857,2,0,2_1,2_1 -8498,9.0,28.0,29.0,111,47,20,0.0,7453,0.0,0.0,70.0,0.0,1.0,3.0,0.0,1.0,1.0,3802.6642576735435,0.0,0.0,32660.0,1,2,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,32660.0,5,0,5,5_0 -8499,7.0,14.0,38.0,111,43,33,0.0,7454,0.0,350.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2221.5286371263346,3380.0,0.0,42169.0,1,3,4,3.0,4,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,17570.416666666668,3,0,3_1,3_0 -8500,3.0,3.0,27.0,112,52,20,0.0,7459,0.0,800.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,4069.3154412218596,5200.0,0.0,27944.0,1,4,9,1.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,15524.444444444443,2,0,2_0,2_0 -8501,3.0,4.0,40.0,112,37,31,0.0,746,0.0,355.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2916.942123219684,2576.0,0.0,27463.0,1,3,10,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18308.666666666668,3,0,3_0,3_1 -8502,8.0,8.0,51.0,111,55,60,0.0,7460,0.0,200.0,0.0,654.0,1.0,3.0,0.0,1.0,1.0,3432.203582110332,0.0,0.0,24497.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24497.0,4,0,4_0,4_0 -8503,3.0,5.0,28.0,111,67,50,0.0,7461,0.0,200.0,0.0,280.0,2.0,3.0,2.0,4.0,2.1,5075.025312501442,1040.0,0.0,28047.0,1,3,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,13355.714285714284,2,0,2_1,2_0 -8504,12.0,19.0,53.0,112,78,71,0.0,7463,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,3282.995112723225,3900.0,0.0,25397.0,7,3,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,12698.5,2,0,2_1,2_0 -8505,0.0,3.0,53.0,112,21,50,2.0,7464,0.0,100095.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,3122.4191681206576,1976.0,8200.0,55248.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27624.0,4,0,4_0,4_1 -8506,1.0,1.0,58.0,211,78,50,1.0,7467,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1700.4281216886277,2392.0,21500.0,30791.0,5,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20527.333333333332,3,0,3_0,3_0 -8507,3.0,4.0,46.0,111,31,31,0.0,7468,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,4477.6254034438125,2600.0,0.0,71730.0,1,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,71730.0,5,0,5,5_0 -8508,2.0,4.0,38.0,111,46,30,0.0,7469,0.0,300.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,6103.870939772857,0.0,0.0,32015.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24626.923076923074,4,0,4_0,4_0 -8509,2.0,2.0,61.0,221,75,50,0.0,747,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2097.3411141607876,0.0,0.0,23838.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15892.0,2,0,2_0,2_0 -8510,5.0,6.0,59.0,300,75,50,0.0,7471,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1667.573055532982,0.0,0.0,20942.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13961.333333333334,2,0,2_0,2_1 -8511,0.0,0.0,32.0,111,63,70,0.0,7472,0.0,0.0,0.0,200.0,1.0,1.0,0.0,2.0,1.5,3129.9632658274145,0.0,0.0,31060.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20706.666666666668,3,0,3_0,3_0 -8512,11.0,17.0,71.0,112,71,70,0.0,7473,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1569.1161287214957,2302.0,0.0,19127.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12751.333333333334,2,0,2_0,2_1 -8513,1.0,14.0,47.0,111,54,71,2.0,7479,0.0,99999.0,0.0,86.0,3.0,5.0,3.0,4.0,2.5,1750.1291268157504,0.0,1000.0,38362.0,4,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,15344.8,2,0,2_1,2_0 -8514,7.0,7.0,81.0,120,71,70,0.0,7482,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2282.613767787955,1300.0,0.0,13383.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13383.0,2,0,2_0,2_0 -8515,2.0,2.0,80.0,112,78,70,0.0,7483,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1354.9982492185609,2601.0,0.0,23568.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15712.0,2,0,2_0,2_1 -8516,1.0,5.0,29.0,111,53,71,2.0,7485,0.0,125.0,0.0,400.0,2.0,3.0,0.0,2.0,1.5,3926.219942668925,0.0,2600.0,28844.0,1,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19229.333333333332,3,0,3_0,3_0 -8517,9.0,9.0,58.0,111,77,60,0.0,7486,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3042.429837681029,0.0,0.0,24192.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,24192.0,4,0,4_0,4_0 -8518,10.0,12.0,33.0,112,64,41,0.0,7487,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1859.7499319348885,203.0,0.0,32711.0,1,2,7,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,15576.666666666666,2,0,2_0,2_1 -8519,3.0,3.0,52.0,111,48,60,0.0,7488,0.0,500.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,1374.0255378397944,2080.0,0.0,43665.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18984.782608695652,3,0,3_0,3_0 -8520,2.0,13.0,38.0,111,67,50,0.0,7489,0.0,9.0,0.0,168.0,2.0,4.0,2.0,4.0,2.1,1715.1644777008203,1118.0,0.0,25036.0,1,3,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,11921.904761904761,1,0,1_1,1_0 -8521,0.0,0.0,22.0,111,84,20,0.0,749,0.0,0.0,0.0,420.0,0.0,2.0,0.0,2.0,1.5,3677.5112607094793,0.0,0.0,17857.0,3,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11904.666666666666,1,0,1_1,1_0 -8522,11.0,11.0,59.0,111,34,20,0.0,7492,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1199.1370028639928,2601.0,0.0,157317.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,104878.0,5,0,5,5_0 -8523,8.0,8.0,53.0,111,37,10,0.0,7493,0.0,520.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1761.480261541413,619.0,0.0,89390.0,4,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,44695.0,5,0,5,5_0 -8524,0.0,6.0,26.0,111,84,12,0.0,7495,0.0,0.0,150.0,0.0,0.0,7.0,0.0,1.0,1.0,3025.881811079487,0.0,0.0,866.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,866.0,1,0,1_0,1_0 -8525,0.0,0.0,88.0,111,86,71,0.0,7496,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2936.291490665485,0.0,0.0,12670.0,6,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12670.0,2,0,2_0,2_0 -8526,0.0,0.0,65.0,111,78,70,0.0,7497,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2035.3481912315904,0.0,0.0,14670.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14670.0,2,0,2_0,2_0 -8527,6.0,12.0,27.0,111,46,42,0.0,7499,0.0,500.0,0.0,272.0,1.0,2.0,0.0,1.0,1.0,3195.8145102143335,1300.0,0.0,17000.0,1,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,17000.0,3,0,3_0,3_0 -8528,1.0,5.0,34.0,111,46,30,2.0,75,0.0,0.0,200.0,0.0,1.0,5.0,0.0,1.0,1.0,2732.3006259693675,1300.0,1200.0,8863.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,8863.0,1,0,1_0,1_0 -8529,0.0,0.0,69.0,111,77,60,0.0,7500,0.0,0.0,0.0,158.0,0.0,3.0,0.0,1.0,1.0,3179.5851397509978,0.0,0.0,11096.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11096.0,1,0,1_1,1_0 -8530,0.0,0.0,80.0,111,77,70,0.0,7501,0.0,0.0,0.0,315.0,0.0,5.0,0.0,1.0,1.0,2926.3522639149787,0.0,0.0,17188.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17188.0,3,0,3_0,3_0 -8531,4.0,5.0,56.0,111,68,50,0.0,7503,0.0,0.0,120.0,0.0,1.0,6.0,0.0,2.0,1.5,1406.5386839702253,0.0,0.0,34402.0,1,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,22934.666666666668,4,0,4_0,4_0 -8532,3.0,3.0,48.0,112,47,50,0.0,7504,0.0,60.0,500.0,0.0,3.0,7.0,3.0,5.0,2.8,1178.5297592010943,3120.0,0.0,118978.0,1,2,10,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,42492.14285714286,5,0,5,5_0 -8533,10.0,14.0,30.0,300,47,31,0.0,7506,0.0,0.0,700.0,0.0,1.0,5.0,2.0,3.0,1.6,2659.050762917237,3050.0,0.0,28807.0,1,2,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18004.375,3,0,3_0,3_1 -8534,0.0,0.0,64.0,111,78,70,0.0,7507,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2916.088203553802,0.0,0.0,13063.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13063.0,2,0,2_0,2_0 -8535,1.0,16.0,61.0,112,72,50,0.0,7509,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3224.8025747977385,1303.0,0.0,26312.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,17541.333333333332,3,0,3_0,3_0 -8536,0.0,0.0,81.0,120,86,71,0.0,751,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3567.2849302608415,0.0,0.0,11691.0,5,3,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11691.0,1,0,1_1,1_0 -8537,1.0,1.0,38.0,112,63,50,0.0,7512,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4117.2112216697815,0.0,0.0,29280.0,1,1,5,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19520.0,3,0,3_0,3_1 -8538,3.0,8.0,45.0,120,37,10,0.0,7513,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2061.7329699771617,7904.0,0.0,63727.0,1,1,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,27707.391304347828,4,0,4_0,4_1 -8539,1.0,7.0,32.0,111,63,50,2.0,7514,0.0,750.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1492.9982150027977,2627.0,9480.0,30966.0,1,2,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14745.714285714284,2,0,2_0,2_0 -8540,8.0,11.0,42.0,111,47,31,0.0,7516,0.0,0.0,8.0,0.0,2.0,5.0,3.0,5.0,2.4,2069.0544561534293,0.0,0.0,58477.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24365.416666666668,4,0,4_0,4_0 -8541,0.0,0.0,74.0,111,77,70,0.0,7517,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3247.9896231030975,0.0,0.0,11308.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11308.0,1,0,1_1,1_0 -8542,1.0,1.0,46.0,221,38,31,1.0,752,0.0,200.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,1407.935968151337,3499.0,18575.0,64612.0,1,2,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,23075.714285714286,4,0,4_1,4_0 -8543,3.0,10.0,45.0,111,53,43,0.0,7520,0.0,80.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,1454.3086544113303,2184.0,0.0,39584.0,1,2,6,5.0,4,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,18849.52380952381,3,0,3_0,3_0 -8544,0.0,3.0,33.0,111,52,33,2.0,7521,0.0,250.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,4548.033203977798,0.0,9500.0,24754.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11787.619047619048,1,0,1_1,1_0 -8545,5.0,13.0,51.0,111,52,50,0.0,7522,0.0,0.0,95.0,500.0,1.0,3.0,0.0,1.0,1.0,1744.0828312748927,1040.0,0.0,23341.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23341.0,4,0,4_0,4_0 -8546,4.0,4.0,78.0,221,71,70,0.0,7523,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1938.310416955325,2080.0,0.0,20516.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13677.333333333334,2,0,2_0,2_0 -8547,4.0,4.0,75.0,112,71,70,0.0,7524,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1583.807610227274,1769.0,0.0,18465.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12310.0,1,0,1_0,1_1 -8548,3.0,3.0,56.0,111,33,10,0.0,7525,0.0,280.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3911.2761021879924,3016.0,0.0,108877.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,108877.0,5,0,5,5_0 -8549,2.0,2.0,44.0,400,37,31,0.0,7527,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,4014.0346379439943,3484.0,0.0,36688.0,1,4,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18344.0,3,0,3_0,3_1 -8550,8.0,22.0,54.0,111,52,50,0.0,7528,0.0,0.0,0.0,358.0,1.0,4.0,0.0,1.0,1.0,1652.06846788867,0.0,0.0,15050.0,1,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15050.0,2,0,2_0,2_0 -8551,1.0,0.0,56.0,400,13,71,1.0,7529,0.0,120.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2395.4134327256033,0.0,25000.0,19334.0,1,1,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,12889.333333333334,2,0,2_0,2_1 -8552,10.0,10.0,51.0,111,62,41,0.0,7530,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1716.1413706304393,2443.0,0.0,63595.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,31797.5,5,0,5,5_0 -8553,16.0,16.0,41.0,300,56,50,0.0,7532,0.0,8.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2484.2148116933686,0.0,0.0,19957.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,7982.8,1,0,1_1,1_1 -8554,6.0,6.0,69.0,111,86,70,0.0,7533,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1597.561348136505,0.0,0.0,349.0,6,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,349.0,1,0,1_0,1_0 -8555,10.0,18.0,28.0,111,47,31,0.0,7534,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,4758.299316100227,0.0,0.0,28680.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19120.0,3,0,3_0,3_0 -8556,0.0,17.0,22.0,111,84,41,0.0,7536,0.0,700.0,320.0,0.0,0.0,1.0,0.0,2.0,1.5,2903.70668464828,1560.0,0.0,19997.0,3,3,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,13331.333333333334,2,0,2_1,2_0 -8557,1.0,12.0,35.0,111,42,31,2.0,7538,0.0,0.0,400.0,927.0,1.0,3.0,1.0,2.0,1.3,3396.5657950429677,2432.0,2500.0,14706.0,4,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,11312.307692307691,1,0,1_0,1_0 -8558,0.0,0.0,71.0,120,78,50,1.0,7539,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1983.0957321860667,3484.0,27000.0,22290.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14860.0,2,0,2_0,2_1 -8559,4.0,6.0,51.0,211,55,20,0.0,754,0.0,0.0,20.0,0.0,1.0,2.0,0.0,1.0,1.0,2035.3725759535678,0.0,0.0,14698.0,1,4,3,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,14698.0,2,0,2_0,2_0 -8560,13.0,15.0,75.0,111,74,60,0.0,7540,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3283.929221863952,0.0,0.0,29233.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29233.0,5,0,5,5_0 -8561,1.0,11.0,47.0,400,52,50,2.0,7542,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.1,1120.1146962819482,3640.0,3000.0,35159.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,16742.38095238095,2,0,2_0,2_1 -8562,0.0,0.0,17.0,111,84,42,0.0,7543,0.0,0.0,0.0,194.0,0.0,1.0,0.0,1.0,1.0,3501.331556208733,0.0,0.0,4457.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4457.0,1,0,1_1,1_0 -8563,3.0,3.0,45.0,111,38,12,0.0,7546,0.0,100.0,130.0,0.0,2.0,6.0,3.0,5.0,2.6,1936.2750719901737,0.0,0.0,97787.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,37610.38461538462,5,0,5,5_0 -8564,3.0,3.0,25.0,300,42,20,0.0,7547,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3016.288574148646,0.0,0.0,9564.0,1,4,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,9564.0,1,0,1_0,1_1 -8565,2.0,9.0,24.0,112,47,20,0.0,7548,0.0,0.0,700.0,0.0,2.0,6.0,1.0,2.0,1.5,3233.0754817328652,6760.0,0.0,22561.0,1,1,10,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15040.666666666666,2,0,2_0,2_1 -8566,7.0,8.0,65.0,300,77,41,0.0,755,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2531.343379869215,0.0,0.0,18577.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18577.0,3,0,3_0,3_1 -8567,2.0,16.0,50.0,111,46,31,0.0,7550,0.0,150.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,2609.16226779219,3846.0,0.0,83562.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,41781.0,5,0,5,5_0 -8568,1.0,6.0,29.0,111,62,30,2.0,7551,0.0,750.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2616.001956589103,3380.0,6000.0,37099.0,1,3,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,17666.190476190477,3,0,3_1,3_0 -8569,2.0,10.0,63.0,120,62,70,0.0,7554,0.0,0.0,0.0,540.0,2.0,4.0,0.0,2.0,1.5,3368.396699179776,1040.0,0.0,31251.0,1,3,0,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20834.0,3,0,3_0,3_0 -8570,0.0,0.0,47.0,111,52,50,0.0,7555,0.0,0.0,0.0,0.0,2.0,2.0,1.0,3.0,2.0,3187.576733168337,2203.0,0.0,32479.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16239.5,2,0,2_0,2_0 -8571,13.0,13.0,83.0,111,75,71,0.0,7556,0.0,0.0,0.0,442.0,0.0,2.0,0.0,1.0,1.0,4149.375151321343,0.0,0.0,20366.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20366.0,3,0,3_0,3_0 -8572,4.0,14.0,51.0,112,67,50,0.0,7558,0.0,100.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2183.477667111889,909.0,0.0,24901.0,1,3,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16600.666666666668,2,0,2_0,2_1 -8573,10.0,13.0,42.0,221,63,50,0.0,7559,0.0,0.0,110.0,0.0,2.0,4.0,1.0,3.0,1.8,3162.495475794202,1300.0,0.0,41475.0,1,2,1,2.0,4,3.0,0.0,0.0,0,1,0,0,0,0,3.0,0.0,23041.666666666668,4,0,4_0,4_0 -8574,11.0,13.0,37.0,120,21,50,0.0,756,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2340.6421737247406,0.0,0.0,25025.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11916.666666666666,1,0,1_0,1_1 -8575,0.0,21.0,35.0,111,53,41,0.0,7560,0.0,0.0,150.0,400.0,2.0,3.0,1.0,3.0,1.8,3512.1561154028,0.0,0.0,29373.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16318.333333333332,2,0,2_0,2_0 -8576,6.0,15.0,64.0,111,75,70,0.0,7561,0.0,0.0,0.0,430.0,1.0,5.0,1.0,3.0,2.0,3822.759733877953,2080.0,0.0,39344.0,5,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19672.0,3,0,3_0,3_0 -8577,0.0,0.0,84.0,221,71,71,0.0,7562,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5585.505621262569,0.0,0.0,8700.0,5,1,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,8700.0,1,0,1_0,1_0 -8578,6.0,6.0,42.0,112,64,60,0.0,7563,0.0,100.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1392.6553476033077,5616.0,0.0,20935.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,8722.916666666668,1,0,1_1,1_1 -8579,6.0,9.0,43.0,111,46,71,0.0,7564,0.0,0.0,0.0,580.0,1.0,3.0,2.0,4.0,2.1,2942.384534640059,0.0,0.0,8562.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,4077.142857142857,1,0,1_1,1_0 -8580,9.0,9.0,77.0,112,78,71,0.0,7567,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3213.6503768158304,0.0,0.0,37360.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24906.666666666668,4,0,4_0,4_1 -8581,0.0,0.0,26.0,111,63,31,0.0,7568,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3183.9364897108944,0.0,0.0,19639.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19639.0,3,0,3_0,3_0 -8582,9.0,13.0,20.0,221,63,50,0.0,7571,0.0,0.0,0.0,0.0,2.0,8.0,2.0,3.0,1.8,1774.9993724330604,0.0,0.0,50153.0,1,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,27862.777777777777,4,0,4_1,4_0 -8583,0.0,0.0,53.0,111,62,71,0.0,7575,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3508.0176377728426,0.0,0.0,15010.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15010.0,2,0,2_0,2_0 -8584,4.0,7.0,57.0,112,75,70,0.0,7576,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3796.395105741965,2860.0,0.0,34450.0,5,1,8,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22966.666666666668,4,0,4_0,4_0 -8585,1.0,1.0,36.0,111,67,50,1.0,7577,0.0,0.0,48.0,0.0,2.0,3.0,2.0,4.0,2.1,1705.3552024711582,0.0,19700.0,42839.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,20399.52380952381,3,0,3_0,3_0 -8586,0.0,0.0,23.0,111,84,41,0.0,7579,0.0,0.0,0.0,215.0,0.0,1.0,0.0,1.0,1.0,3368.318204621219,0.0,0.0,4398.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4398.0,1,0,1_1,1_0 -8587,5.0,6.0,39.0,111,37,20,0.0,758,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,4731.903534602788,0.0,0.0,52424.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,24963.809523809523,4,0,4_0,4_0 -8588,4.0,12.0,57.0,111,67,71,0.0,7580,0.0,110.0,0.0,42.0,2.0,3.0,3.0,5.0,2.8,3246.494438936588,2600.0,0.0,29846.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10659.285714285716,1,0,1_1,1_0 -8589,1.0,9.0,58.0,400,21,50,2.0,7584,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.3,2792.9761562971817,4893.0,1700.0,10119.0,1,1,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,4399.565217391305,1,0,1_0,1_1 -8590,0.0,0.0,43.0,112,37,12,2.0,7585,0.0,450.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1577.2096593292208,2219.0,12100.0,111620.0,1,1,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,48530.434782608696,5,0,5,5_1 -8591,3.0,7.0,37.0,111,37,43,0.0,7587,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2783.1331651652845,1040.0,0.0,62211.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,29624.285714285714,5,0,5,5_0 -8592,8.0,17.0,25.0,112,63,50,0.0,7588,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1921.3337891790973,1560.0,0.0,7130.0,4,4,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,7130.0,1,0,1_0,1_1 -8593,4.0,5.0,62.0,111,22,71,0.0,7589,0.0,99999.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.5,3134.8291342897865,3120.0,0.0,22980.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,9192.0,1,0,1_0,1_0 -8594,0.0,0.0,31.0,111,31,10,0.0,759,0.0,0.0,0.0,500.0,1.0,1.0,0.0,1.0,1.0,4292.033075796924,0.0,0.0,18393.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,18393.0,3,0,3_1,3_0 -8595,11.0,11.0,73.0,120,77,70,0.0,7590,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3147.0386952055305,0.0,0.0,15345.0,5,3,0,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,15345.0,2,0,2_1,2_0 -8596,0.0,0.0,81.0,111,75,70,0.0,7591,0.0,0.0,0.0,380.0,0.0,4.0,0.0,1.0,1.0,2953.9271084501675,0.0,0.0,26540.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26540.0,4,0,4_0,4_0 -8597,20.0,20.0,62.0,300,86,70,0.0,7592,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2766.448318415207,0.0,0.0,11350.0,6,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,7566.666666666667,1,0,1_0,1_1 -8598,5.0,9.0,64.0,111,75,50,0.0,7593,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2727.302445258566,2340.0,0.0,21910.0,5,2,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21910.0,4,0,4_0,4_0 -8599,0.0,0.0,44.0,111,63,71,0.0,7595,0.0,0.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,3247.041046674947,0.0,0.0,18255.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10141.666666666666,1,0,1_0,1_0 -8600,9.0,9.0,67.0,111,77,41,0.0,7597,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2852.3930836397526,0.0,0.0,52579.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,35052.666666666664,5,0,5,5_0 -8601,3.0,3.0,23.0,111,21,50,0.0,7598,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2968.4027380802113,3120.0,0.0,12250.0,1,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,12250.0,1,0,1_1,1_0 -8602,8.0,8.0,68.0,300,71,50,0.0,7599,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1152.0492099561363,2081.0,0.0,27844.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18562.666666666668,3,0,3_0,3_1 -8603,14.0,16.0,61.0,112,21,50,0.0,76,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2434.8391889129643,7696.0,0.0,33150.0,1,1,8,0.0,3,3.0,1.0,0.0,1,0,0,0,0,0,1.0,2.0,22100.0,4,0,4_0,4_1 -8604,0.0,12.0,72.0,111,78,71,0.0,760,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5351.901107631111,0.0,0.0,11161.0,5,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11161.0,1,0,1_0,1_0 -8605,8.0,11.0,36.0,111,52,31,0.0,7600,0.0,200.0,0.0,713.0,1.0,3.0,2.0,3.0,1.6,2514.6532988985005,0.0,0.0,17687.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11054.375,1,0,1_1,1_0 -8606,3.0,10.0,39.0,112,37,41,0.0,7601,0.0,350.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2703.482829932522,1012.0,0.0,44014.0,1,2,10,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20959.04761904762,3,0,3_0,3_0 -8607,0.0,12.0,40.0,111,67,71,0.0,7602,0.0,300.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2998.75850598315,0.0,0.0,17865.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11910.0,1,0,1_0,1_0 -8608,16.0,16.0,84.0,111,77,70,0.0,7604,0.0,0.0,0.0,212.0,0.0,5.0,0.0,2.0,1.5,3964.9987736689873,0.0,0.0,21518.0,5,3,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14345.333333333334,2,0,2_0,2_0 -8609,1.0,16.0,30.0,300,21,50,0.0,7605,0.0,0.0,300.0,0.0,1.0,4.0,1.0,3.0,1.8,3259.0782038290113,0.0,0.0,19391.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,10772.777777777777,1,0,1_1,1_1 -8610,0.0,11.0,42.0,111,63,50,0.0,7606,0.0,0.0,275.0,0.0,2.0,5.0,2.0,4.0,2.1,1554.440468557527,3647.0,0.0,20917.0,1,1,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,9960.47619047619,1,0,1_0,1_0 -8611,0.0,0.0,26.0,112,53,42,0.0,7607,0.0,0.0,0.0,540.0,1.0,2.0,0.0,1.0,1.0,3659.007055596194,0.0,0.0,25529.0,1,3,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25529.0,4,0,4_0,4_0 -8612,14.0,14.0,57.0,111,46,42,0.0,761,0.0,250.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3521.4958606409855,0.0,0.0,7780.0,1,2,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,5186.666666666667,1,0,1_0,1_0 -8613,4.0,7.0,45.0,112,67,71,0.0,7610,0.0,110.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2711.9696713314893,2860.0,0.0,35610.0,1,1,5,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23740.0,4,0,4_0,4_1 -8614,4.0,4.0,56.0,111,75,44,0.0,7611,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3175.960712744019,0.0,0.0,11737.0,7,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,11737.0,1,0,1_0,1_0 -8615,0.0,0.0,24.0,111,63,50,0.0,7612,0.0,0.0,0.0,260.0,1.0,3.0,0.0,1.0,1.0,3882.696836579843,0.0,0.0,96.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,96.0,1,0,1_0,1_0 -8616,0.0,12.0,34.0,111,46,71,2.0,7614,0.0,0.0,0.0,294.0,1.0,2.0,1.0,2.0,1.3,3156.7634320985253,0.0,1500.0,25949.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19960.76923076923,3,0,3_0,3_0 -8617,0.0,0.0,70.0,111,78,70,0.0,7615,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2795.5230468698646,0.0,0.0,15562.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15562.0,2,0,2_0,2_0 -8618,12.0,28.0,62.0,111,63,50,0.0,7617,0.0,0.0,0.0,400.0,3.0,3.0,2.0,5.0,2.8,2442.9583533959694,0.0,0.0,48620.0,1,3,8,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17364.285714285714,3,0,3_0,3_0 -8619,4.0,7.0,52.0,400,21,43,0.0,7618,0.0,0.0,100249.0,0.0,2.0,5.0,0.0,2.0,1.5,2492.2383730784422,1560.0,0.0,46643.0,1,1,0,1.0,3,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,31095.333333333332,5,0,5,5_0 -8620,3.0,3.0,46.0,111,55,50,0.0,7619,0.0,360.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3291.6352560952873,0.0,0.0,20080.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20080.0,3,0,3_0,3_0 -8621,4.0,4.0,57.0,112,31,10,0.0,762,0.0,0.0,0.0,0.0,1.0,8.0,1.0,3.0,2.0,2134.5133837269846,3125.0,0.0,-9342.0,1,1,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,-4671.0,1,0,1_0,1_0 -8622,20.0,20.0,57.0,221,52,50,0.0,7620,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,4456.457755714883,0.0,0.0,34159.0,1,1,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,17079.5,3,0,3_0,3_0 -8623,2.0,8.0,45.0,111,62,71,0.0,7621,0.0,50.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,2275.149819838897,0.0,0.0,46111.0,1,1,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,18444.4,3,0,3_0,3_0 -8624,0.0,0.0,22.0,111,55,30,0.0,7622,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5409.8514939527495,0.0,0.0,6932.0,3,4,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,6932.0,1,0,1_0,1_0 -8625,2.0,4.0,32.0,111,62,50,0.0,7623,0.0,150.0,0.0,19.0,1.0,5.0,3.0,5.0,2.4,2563.3516695738153,0.0,0.0,29444.0,1,3,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12268.333333333334,1,0,1_1,1_0 -8626,1.0,16.0,44.0,400,56,71,0.0,7626,0.0,300.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,7554.76821942072,4680.0,0.0,13020.0,1,3,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,8680.0,1,0,1_1,1_0 -8627,5.0,16.0,51.0,120,63,50,0.0,7628,0.0,350.0,250.0,0.0,3.0,4.0,1.0,3.0,2.0,833.6768776884206,2600.0,0.0,51714.0,1,1,0,3.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,25857.0,4,0,4_0,4_0 -8628,9.0,9.0,54.0,111,62,43,0.0,7629,0.0,320.0,0.0,213.0,2.0,3.0,0.0,2.0,1.5,1877.2000551203546,1560.0,0.0,33139.0,1,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22092.666666666668,4,0,4_0,4_0 -8629,1.0,1.0,47.0,120,53,60,0.0,763,0.0,520.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2286.7623339039114,4317.0,0.0,59482.0,1,2,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24784.166666666668,4,0,4_0,4_0 -8630,4.0,8.0,31.0,111,42,31,0.0,7630,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,1809.8243637644898,0.0,0.0,-28930.0,1,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,-19286.666666666668,1,0,1_0,1_0 -8631,3.0,5.0,57.0,112,31,10,0.0,7631,0.0,650.0,0.0,0.0,2.0,9.0,0.0,2.0,1.5,2223.788191697009,4201.0,0.0,96522.0,1,2,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,64348.0,5,0,5,5_0 -8632,2.0,5.0,70.0,300,75,50,0.0,7632,0.0,0.0,0.0,443.0,0.0,3.0,0.0,1.0,1.0,1682.7478559304884,2080.0,0.0,14784.0,5,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,14784.0,2,0,2_1,2_0 -8633,0.0,0.0,64.0,120,78,71,0.0,7633,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,8544.204541651583,0.0,0.0,18251.0,5,4,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9125.5,1,0,1_0,1_0 -8634,1.0,8.0,30.0,112,62,50,0.0,7635,0.0,600.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,3830.8106587659513,12740.0,0.0,36768.0,1,3,5,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,17508.571428571428,3,0,3_1,3_1 -8635,29.0,29.0,59.0,111,22,70,0.0,7636,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,3148.5662393121966,3744.0,0.0,6642.0,1,1,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,2656.8,1,0,1_0,1_0 -8636,10.0,19.0,63.0,112,78,71,0.0,7637,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,4250.279074500395,6618.0,0.0,21712.0,5,1,10,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,14474.666666666666,2,0,2_0,2_0 -8637,2.0,7.0,43.0,111,62,70,0.0,7639,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,976.7543240507088,1560.0,0.0,36022.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14408.8,2,0,2_1,2_0 -8638,17.0,18.0,87.0,300,77,70,0.0,764,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,2418.2429774490633,0.0,0.0,24118.0,5,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16078.666666666666,2,0,2_0,2_1 -8639,0.0,1.0,45.0,111,54,60,0.0,7640,0.0,0.0,50.0,243.0,1.0,2.0,0.0,1.0,1.0,2795.501800580999,0.0,0.0,19736.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,19736.0,3,0,3_0,3_0 -8640,1.0,1.0,58.0,112,63,50,1.0,7641,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1954.2259637584334,1864.0,10500.0,14222.0,4,3,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14222.0,2,0,2_0,2_1 -8641,6.0,17.0,47.0,111,22,42,0.0,7642,0.0,0.0,0.0,169.0,2.0,3.0,0.0,2.0,1.5,2933.6494666572894,0.0,0.0,8210.0,1,3,7,5.0,3,1.0,1.0,0.0,0,0,1,0,0,1,1.0,0.0,5473.333333333333,1,0,1_1,1_0 -8642,0.0,0.0,20.0,111,56,50,0.0,7643,0.0,0.0,0.0,161.0,1.0,2.0,0.0,1.0,1.0,4034.8630017096343,0.0,0.0,15602.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15602.0,2,0,2_1,2_0 -8643,1.0,1.0,41.0,112,53,50,1.0,7644,0.0,710.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1372.918245920128,5720.0,24000.0,60028.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,28584.761904761905,4,0,4_0,4_0 -8644,0.0,0.0,20.0,111,84,41,0.0,7645,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2617.614347991709,0.0,0.0,6239.0,3,4,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,6239.0,1,0,1_0,1_0 -8645,4.0,12.0,70.0,400,72,50,0.0,7646,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1289.5895126003988,3853.0,0.0,15811.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,10540.666666666666,1,0,1_0,1_1 -8646,0.0,3.0,41.0,111,37,31,0.0,7647,0.0,100039.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2531.1592983063483,3120.0,0.0,84111.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,35046.25,5,0,5,5_0 -8647,2.0,19.0,56.0,111,52,50,0.0,7648,0.0,0.0,300.0,185.0,4.0,4.0,3.0,4.0,2.5,2297.027726456296,1560.0,0.0,42564.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,17025.6,3,0,3_1,3_0 -8648,0.0,0.0,22.0,111,84,41,0.0,7649,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3234.3083169102456,0.0,0.0,2475.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,2475.0,1,0,1_1,1_0 -8649,2.0,8.0,42.0,221,52,50,0.0,765,0.0,50.0,0.0,0.0,3.0,5.0,4.0,6.0,2.9,1183.342939885334,3020.0,0.0,28849.0,1,2,1,3.0,4,3.0,0.0,1.0,0,1,0,0,0,1,1.0,2.0,9947.931034482759,1,0,1_1,1_0 -8650,7.0,8.0,69.0,112,74,44,0.0,7650,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1846.9191203814883,1144.0,0.0,37473.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,24982.0,4,0,4_0,4_1 -8651,14.0,27.0,45.0,400,52,42,0.0,7651,0.0,170.0,0.0,0.0,2.0,7.0,2.0,5.0,2.8,1736.6921881766968,1877.0,0.0,48559.0,1,2,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17342.5,3,0,3_0,3_1 -8652,16.0,27.0,59.0,400,11,50,0.0,7652,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1124.2238037854281,2601.0,0.0,25822.0,1,1,0,0.0,3,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,17214.666666666668,3,0,3_0,3_1 -8653,3.0,7.0,81.0,112,75,20,0.0,7653,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1358.3326133714895,4368.0,0.0,37611.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25074.0,4,0,4_0,4_1 -8654,1.0,8.0,31.0,111,47,31,2.0,7654,0.0,40.0,0.0,550.0,2.0,2.0,0.0,2.0,1.5,3612.510202632537,0.0,3200.0,31370.0,4,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,20913.333333333332,3,0,3_0,3_0 -8655,10.0,13.0,40.0,111,43,31,0.0,7655,0.0,0.0,40.0,0.0,2.0,5.0,0.0,2.0,1.5,2566.3295108752495,0.0,0.0,50208.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,33472.0,5,0,5,5_0 -8656,2.0,2.0,44.0,111,46,50,0.0,7656,0.0,1000.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1801.641883869341,4628.0,0.0,101638.0,1,1,6,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,40655.2,5,0,5,5_0 -8657,8.0,14.0,77.0,112,78,71,0.0,7657,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2475.6070925654767,1394.0,0.0,18099.0,5,4,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12066.0,1,0,1_0,1_1 -8658,10.0,10.0,37.0,111,46,71,0.0,7658,0.0,20.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,4040.8681877439935,0.0,0.0,9726.0,1,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,6078.75,1,0,1_1,1_0 -8659,4.0,16.0,49.0,112,52,71,0.0,766,0.0,720.0,0.0,750.0,3.0,4.0,3.0,5.0,2.6,3179.120880292191,1872.0,0.0,64647.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24864.23076923077,4,0,4_0,4_1 -8660,3.0,3.0,45.0,111,37,20,0.0,7661,0.0,450.0,250.0,0.0,2.0,4.0,2.0,4.0,2.5,2347.857259691919,3637.0,0.0,55729.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22291.6,4,0,4_0,4_0 -8661,0.0,0.0,38.0,111,52,71,0.0,7662,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,3123.1345527772746,0.0,0.0,18464.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14203.076923076922,2,0,2_1,2_0 -8662,0.0,0.0,39.0,111,62,50,0.0,7663,0.0,0.0,0.0,40.0,1.0,1.0,0.0,1.0,1.0,2367.015817126161,0.0,0.0,9551.0,4,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9551.0,1,0,1_1,1_0 -8663,3.0,11.0,27.0,111,34,10,0.0,7664,0.0,10.0,0.0,640.0,2.0,3.0,0.0,2.0,1.5,2970.3726581803817,0.0,0.0,38732.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25821.333333333332,4,0,4_0,4_0 -8664,0.0,11.0,38.0,111,42,20,0.0,7665,0.0,0.0,70.0,0.0,1.0,4.0,1.0,2.0,1.3,2039.7526508012527,2285.0,0.0,10829.0,1,4,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,8330.0,1,0,1_0,1_0 -8665,0.0,0.0,58.0,120,69,71,0.0,7666,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4430.280879118663,780.0,0.0,13494.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13494.0,2,0,2_0,2_1 -8666,6.0,7.0,45.0,111,37,43,0.0,7667,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,2651.356590111112,0.0,0.0,39455.0,1,2,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,15782.0,2,0,2_0,2_0 -8667,6.0,7.0,59.0,111,43,41,0.0,7669,0.0,0.0,150.0,0.0,1.0,5.0,0.0,1.0,1.0,2471.6524437113862,2704.0,0.0,27620.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,27620.0,4,0,4_0,4_0 -8668,0.0,0.0,92.0,111,86,71,0.0,767,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2969.427184609967,0.0,0.0,30590.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30590.0,5,0,5,5_0 -8669,15.0,15.0,69.0,111,77,71,0.0,7670,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2915.9021490590826,2579.0,0.0,17653.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17653.0,3,0,3_0,3_0 -8670,3.0,4.0,53.0,111,54,50,0.0,7671,0.0,0.0,0.0,1423.0,1.0,3.0,0.0,2.0,1.5,2638.8385319996596,0.0,0.0,33473.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22315.333333333332,4,0,4_0,4_0 -8671,5.0,5.0,43.0,112,21,50,0.0,7672,0.0,0.0,600.0,0.0,2.0,5.0,4.0,6.0,3.1,1475.9824455814276,0.0,0.0,84030.0,1,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,27106.451612903224,4,0,4_0,4_1 -8672,14.0,14.0,76.0,111,74,70,0.0,7673,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2284.1712671767013,395.0,0.0,39064.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,26042.666666666668,4,0,4_0,4_0 -8673,3.0,6.0,34.0,111,37,50,0.0,7674,0.0,1000.0,100.0,430.0,2.0,4.0,2.0,4.0,2.3,2519.513279758282,4559.0,0.0,41447.0,1,3,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,18020.434782608696,3,0,3_0,3_0 -8674,4.0,6.0,58.0,112,64,70,0.0,7675,0.0,288.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1159.1774752148663,2653.0,0.0,53573.0,1,1,8,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,35715.333333333336,5,0,5,5_1 -8675,8.0,8.0,84.0,111,71,70,0.0,7676,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2054.2541675384864,0.0,0.0,17077.0,5,4,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17077.0,3,0,3_0,3_0 -8676,0.0,0.0,20.0,111,84,41,0.0,7677,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3201.2869320187533,0.0,0.0,2174.0,3,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,2174.0,1,0,1_0,1_0 -8677,0.0,7.0,29.0,111,46,50,2.0,7680,0.0,500.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2892.482308109928,0.0,7150.0,34189.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18993.888888888887,3,0,3_0,3_0 -8678,0.0,0.0,41.0,111,37,20,0.0,7681,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3080.93936971183,0.0,0.0,68427.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32584.285714285714,5,0,5,5_0 -8679,4.0,4.0,43.0,112,34,20,0.0,7682,0.0,400.0,0.0,387.0,1.0,3.0,1.0,2.0,1.3,3172.9597057721053,3354.0,0.0,29106.0,1,3,9,0.0,2,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,22389.23076923077,4,0,4_0,4_1 -8680,10.0,10.0,58.0,111,56,50,0.0,7683,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2467.3686540073127,0.0,0.0,33890.0,1,4,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22593.333333333332,4,0,4_0,4_0 -8681,6.0,16.0,31.0,221,52,43,0.0,7686,0.0,0.0,0.0,50.0,1.0,2.0,1.0,3.0,1.8,2206.950416180549,1040.0,0.0,13670.0,1,3,1,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,7594.444444444444,1,0,1_1,1_0 -8682,16.0,16.0,73.0,400,75,50,0.0,7687,0.0,0.0,0.0,334.0,0.0,3.0,0.0,1.0,1.0,4934.53080665206,0.0,0.0,17751.0,5,3,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17751.0,3,0,3_0,3_1 -8683,3.0,3.0,55.0,111,62,41,0.0,7689,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,846.4786471475512,0.0,0.0,22289.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,11144.5,1,0,1_0,1_0 -8684,0.0,0.0,63.0,111,56,70,0.0,769,0.0,0.0,0.0,168.0,1.0,3.0,0.0,1.0,1.0,2886.401886661137,0.0,0.0,14062.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14062.0,2,0,2_0,2_0 -8685,0.0,19.0,32.0,111,85,71,0.0,7690,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,4151.599907597604,1040.0,0.0,22320.0,7,3,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9300.0,1,0,1_1,1_0 -8686,0.0,0.0,31.0,111,43,12,0.0,7691,0.0,0.0,0.0,1223.0,1.0,1.0,0.0,1.0,1.0,3638.6321096862866,0.0,0.0,18694.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18694.0,3,0,3_0,3_0 -8687,1.0,11.0,38.0,300,56,50,2.0,7693,0.0,0.0,400.0,0.0,2.0,7.0,4.0,6.0,2.7,1356.673547878272,4680.0,4000.0,48108.0,1,3,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,1,1.0,1.0,17817.777777777777,3,0,3_1,3_1 -8688,0.0,23.0,26.0,111,34,10,0.0,7694,0.0,0.0,0.0,201.0,2.0,2.0,0.0,2.0,1.5,2895.922160813967,0.0,0.0,20552.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13701.333333333334,2,0,2_1,2_0 -8689,6.0,6.0,63.0,111,77,60,0.0,7696,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3424.0871903268185,0.0,0.0,12380.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,8253.333333333334,1,0,1_0,1_0 -8690,7.0,11.0,72.0,120,72,50,0.0,7697,0.0,300.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1980.1045822943545,2881.0,0.0,34150.0,5,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17075.0,3,0,3_0,3_1 -8691,0.0,18.0,36.0,111,54,43,0.0,7699,0.0,100.0,0.0,130.0,1.0,3.0,1.0,2.0,1.3,2965.765657680393,1560.0,0.0,23045.0,4,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,17726.923076923078,3,0,3_1,3_0 -8692,1.0,3.0,57.0,112,54,70,0.0,7701,0.0,0.0,0.0,425.0,1.0,3.0,0.0,2.0,1.5,3850.481605465072,2340.0,0.0,36778.0,4,3,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24518.666666666668,4,0,4_0,4_1 -8693,2.0,11.0,24.0,111,63,43,0.0,7702,0.0,300.0,0.0,270.0,1.0,3.0,0.0,1.0,1.0,3267.499100355545,1561.0,0.0,19765.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19765.0,3,0,3_0,3_0 -8694,2.0,2.0,46.0,111,47,31,0.0,7703,0.0,99999.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1071.0057385566083,6204.0,0.0,52434.0,1,1,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,26217.0,4,0,4_0,4_0 -8695,7.0,7.0,40.0,111,63,50,0.0,7704,0.0,200.0,0.0,0.0,3.0,5.0,3.0,5.0,2.8,1900.6068360317302,1196.0,0.0,36339.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,12978.214285714286,2,0,2_0,2_0 -8696,3.0,3.0,46.0,120,13,42,0.0,7707,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1611.163257692657,0.0,0.0,45131.0,1,2,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,22565.5,4,0,4_0,4_1 -8697,3.0,3.0,62.0,221,74,70,0.0,7708,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2371.4371921924085,0.0,0.0,43077.0,5,1,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28718.0,4,0,4_0,4_0 -8698,4.0,4.0,45.0,111,56,44,0.0,7709,0.0,20.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2622.372909353598,2079.0,0.0,14584.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,14584.0,2,0,2_0,2_0 -8699,0.0,0.0,77.0,111,86,71,0.0,771,0.0,0.0,0.0,146.0,0.0,5.0,0.0,1.0,1.0,3343.3188121735016,0.0,0.0,13702.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13702.0,2,0,2_1,2_0 -8700,3.0,3.0,50.0,112,56,50,0.0,7716,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1220.8227471607809,2704.0,0.0,21480.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21480.0,3,0,3_0,3_1 -8701,0.0,0.0,54.0,111,85,60,0.0,7717,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2188.972850982272,0.0,0.0,9050.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9050.0,1,0,1_1,1_0 -8702,4.0,6.0,61.0,111,31,10,0.0,7718,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2407.4398516666083,2704.0,0.0,29798.0,1,1,6,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,29798.0,5,0,5,5_0 -8703,0.0,0.0,72.0,111,37,60,0.0,7719,0.0,0.0,0.0,664.0,1.0,1.0,0.0,1.0,1.0,4100.200711580964,0.0,0.0,25788.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25788.0,4,0,4_0,4_0 -8704,1.0,9.0,47.0,111,22,71,2.0,772,0.0,100.0,0.0,0.0,2.0,5.0,3.0,4.0,2.5,2345.1242707943898,733.0,7000.0,27410.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,10964.0,1,0,1_0,1_0 -8705,12.0,12.0,58.0,111,22,50,0.0,7720,0.0,0.0,250.0,0.0,2.0,6.0,1.0,3.0,2.0,2354.845554749585,0.0,0.0,57427.0,1,1,8,6.0,4,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,28713.5,4,0,4_0,4_0 -8706,10.0,18.0,57.0,111,63,70,0.0,7721,0.0,50.0,0.0,259.0,1.0,3.0,0.0,2.0,1.5,1815.5940560043973,0.0,0.0,26560.0,1,3,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,17706.666666666668,3,0,3_0,3_0 -8707,2.0,2.0,53.0,112,78,50,0.0,7723,0.0,0.0,0.0,133.0,0.0,3.0,0.0,1.0,1.0,4427.738140252569,1975.0,0.0,8129.0,4,3,7,0.0,1,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,8129.0,1,0,1_1,1_1 -8708,0.0,0.0,86.0,400,71,70,0.0,7725,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2542.36246663169,0.0,0.0,10460.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10460.0,1,0,1_0,1_1 -8709,0.0,0.0,47.0,111,55,50,0.0,7726,0.0,0.0,0.0,560.0,1.0,2.0,0.0,1.0,1.0,3899.7127521683187,0.0,0.0,25442.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25442.0,4,0,4_0,4_0 -8710,11.0,12.0,74.0,400,75,50,0.0,7729,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1594.7658427324907,2556.0,0.0,34449.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,22966.0,4,0,4_0,4_1 -8711,4.0,4.0,46.0,112,62,50,0.0,7730,0.0,180.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2324.1997830750156,3276.0,0.0,45912.0,1,2,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,30608.0,5,0,5,5_1 -8712,9.0,9.0,65.0,300,75,50,0.0,7732,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,625.6031343387707,1196.0,0.0,27379.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18252.666666666668,3,0,3_0,3_1 -8713,4.0,11.0,31.0,112,63,43,0.0,7733,0.0,0.0,100.0,0.0,1.0,3.0,1.0,3.0,2.0,1596.411751561078,0.0,0.0,49230.0,1,4,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24615.0,4,0,4_0,4_1 -8714,12.0,16.0,69.0,111,78,70,0.0,7735,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1617.2576771033055,1560.0,0.0,33383.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,22255.333333333332,4,0,4_0,4_0 -8715,0.0,0.0,78.0,111,75,60,0.0,7737,0.0,0.0,0.0,825.0,0.0,3.0,0.0,1.0,1.0,3429.4296938554467,0.0,0.0,23416.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23416.0,4,0,4_0,4_0 -8716,0.0,8.0,58.0,111,52,50,2.0,7738,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2253.320245330078,5980.0,8000.0,32084.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16042.0,2,0,2_0,2_0 -8717,0.0,7.0,26.0,111,56,50,0.0,774,0.0,50.0,0.0,12.0,1.0,3.0,1.0,2.0,1.3,2321.6457314356485,0.0,0.0,19585.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,15065.384615384615,2,0,2_1,2_0 -8718,3.0,3.0,57.0,111,21,10,0.0,7740,0.0,0.0,0.0,682.0,1.0,3.0,1.0,3.0,2.0,2600.580861010347,1560.0,0.0,13261.0,1,3,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,6630.5,1,0,1_1,1_0 -8719,2.0,2.0,54.0,400,43,42,0.0,7741,0.0,450.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4485.486551417993,3380.0,0.0,21991.0,1,3,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,21991.0,4,0,4_0,4_1 -8720,7.0,10.0,62.0,111,75,43,0.0,7742,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2930.4250091037557,1300.0,0.0,42401.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28267.333333333332,4,0,4_0,4_0 -8721,9.0,12.0,38.0,111,22,31,0.0,7743,0.0,150.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,3003.606576368095,0.0,0.0,15024.0,4,3,8,6.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,8346.666666666666,1,0,1_1,1_0 -8722,0.0,0.0,86.0,111,74,31,1.0,7744,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2753.8732483440217,0.0,14693.0,64342.0,5,3,3,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,64342.0,5,0,5,5_0 -8723,8.0,14.0,51.0,111,42,31,0.0,7746,0.0,400.0,70.0,0.0,2.0,5.0,1.0,3.0,1.8,2311.6864078980984,3380.0,0.0,51490.0,1,1,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,28605.555555555555,4,0,4_0,4_0 -8724,3.0,10.0,43.0,300,22,42,0.0,7747,0.0,2600.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2161.6223274059453,0.0,0.0,35056.0,1,2,0,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,15241.739130434784,2,0,2_0,2_1 -8725,4.0,8.0,49.0,300,21,50,0.0,775,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2597.8642139795575,3120.0,0.0,19210.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12806.666666666666,2,0,2_0,2_1 -8726,0.0,11.0,22.0,111,84,41,0.0,7751,0.0,0.0,0.0,200.0,0.0,2.0,0.0,1.0,1.0,3378.2085851072325,0.0,0.0,11175.0,3,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11175.0,1,0,1_1,1_0 -8727,1.0,1.0,64.0,111,74,50,1.0,7752,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1137.131957945863,0.0,20000.0,45257.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,30171.333333333332,5,0,5,5_0 -8728,10.0,10.0,67.0,221,75,41,0.0,7753,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2269.0306101994647,0.0,0.0,28618.0,5,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28618.0,4,0,4_0,4_0 -8729,1.0,11.0,47.0,111,62,50,2.0,7754,0.0,100149.0,0.0,876.0,4.0,5.0,4.0,6.0,3.3,2356.2658723522873,5426.0,1500.0,65492.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,19846.060606060608,3,0,3_0,3_0 -8730,3.0,3.0,41.0,111,47,20,0.0,7755,0.0,150.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,4498.110909128271,2392.0,0.0,20090.0,1,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,12556.25,1,0,1_0,1_0 -8731,10.0,10.0,41.0,111,33,10,0.0,7756,0.0,950.0,99999.0,655.0,2.0,5.0,2.0,4.0,2.3,2143.9818700269025,2237.0,0.0,66354.0,1,3,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,28849.565217391308,4,0,4_0,4_0 -8732,8.0,9.0,78.0,111,72,70,0.0,7757,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2107.5030121271884,0.0,0.0,19960.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13306.666666666666,2,0,2_0,2_0 -8733,2.0,5.0,32.0,400,47,31,0.0,7758,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,1713.4285829990847,3674.0,0.0,48045.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20018.75,3,0,3_0,3_1 -8734,0.0,16.0,47.0,111,45,41,0.0,7759,0.0,140.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2508.651866887387,4696.0,0.0,54791.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21916.4,4,0,4_0,4_0 -8735,0.0,0.0,31.0,111,85,71,0.0,776,0.0,0.0,0.0,0.0,0.0,4.0,4.0,5.0,2.2,2366.723599866283,0.0,0.0,18710.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8504.545454545454,1,0,1_1,1_0 -8736,0.0,0.0,26.0,111,85,50,0.0,7761,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,3372.6453641711437,0.0,0.0,15122.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9451.25,1,0,1_1,1_0 -8737,2.0,10.0,67.0,400,72,50,0.0,7762,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2535.198901069931,0.0,0.0,33430.0,5,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,33430.0,5,0,5,5_1 -8738,0.0,12.0,52.0,111,22,20,2.0,7767,0.0,0.0,200.0,217.0,2.0,4.0,2.0,4.0,2.5,3461.750346550788,3562.0,2000.0,30744.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,2.0,0.0,12297.6,1,0,1_1,1_0 -8739,9.0,18.0,64.0,211,74,31,0.0,7768,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1558.0075870304843,3339.0,0.0,38603.0,5,1,3,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,38603.0,5,0,5,5_0 -8740,10.0,13.0,63.0,112,78,50,0.0,7769,0.0,0.0,0.0,300.0,0.0,4.0,0.0,2.0,1.5,1435.25757664682,780.0,0.0,30700.0,5,3,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20466.666666666668,3,0,3_0,3_0 -8741,10.0,10.0,53.0,112,43,33,0.0,7770,0.0,175.0,400.0,0.0,2.0,8.0,1.0,3.0,2.0,4367.344272239371,2860.0,0.0,62062.0,1,2,9,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,31031.0,5,0,5,5_0 -8742,10.0,10.0,70.0,111,74,41,0.0,7771,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2151.4894551648504,0.0,0.0,27557.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27557.0,4,0,4_0,4_0 -8743,2.0,18.0,28.0,112,63,50,0.0,7772,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1888.3051311331776,0.0,0.0,30596.0,1,2,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20397.333333333332,3,0,3_0,3_1 -8744,10.0,11.0,38.0,221,63,50,0.0,7773,0.0,600.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2323.4334695032244,0.0,0.0,46404.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19335.0,3,0,3_0,3_0 -8745,11.0,11.0,69.0,111,75,41,0.0,7774,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1739.8945330940273,3239.0,0.0,61317.0,5,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,40878.0,5,0,5,5_0 -8746,2.0,2.0,37.0,111,43,33,0.0,7775,30.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2372.6595212262646,1618.0,0.0,40532.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,0.0,25332.5,4,0,4_0,4_0 -8747,3.0,9.0,35.0,112,42,20,0.0,7776,0.0,400.0,20.0,0.0,2.0,5.0,2.0,4.0,2.1,2016.6259086324249,1872.0,0.0,45828.0,1,2,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,21822.85714285714,4,0,4_0,4_0 -8748,0.0,0.0,56.0,111,64,50,0.0,7777,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,1439.4467839625088,520.0,0.0,7376.0,4,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7376.0,1,0,1_1,1_0 -8749,3.0,3.0,68.0,400,72,70,0.0,7778,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2631.5601382437635,1560.0,0.0,16477.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16477.0,2,0,2_0,2_1 -8750,9.0,12.0,54.0,400,63,43,0.0,7779,0.0,100.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,1540.3761901263251,1560.0,0.0,27831.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,15461.666666666666,2,0,2_0,2_1 -8751,1.0,3.0,41.0,300,11,50,0.0,778,0.0,100.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2001.7655447372322,7020.0,0.0,99517.0,1,2,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,43268.26086956522,5,0,5,5_1 -8752,4.0,4.0,71.0,111,78,50,0.0,7780,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2380.320211981553,0.0,0.0,35235.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23490.0,4,0,4_0,4_0 -8753,1.0,1.0,24.0,111,34,20,1.0,7781,0.0,0.0,0.0,395.0,1.0,2.0,0.0,1.0,1.0,2963.7273722836785,0.0,13000.0,15822.0,1,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15822.0,2,0,2_0,2_0 -8754,1.0,1.0,50.0,400,56,60,0.0,7782,0.0,0.0,300.0,0.0,1.0,2.0,0.0,1.0,1.0,2537.211436551857,4425.0,0.0,15692.0,1,3,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15692.0,2,0,2_0,2_0 -8755,5.0,16.0,33.0,400,52,30,0.0,7784,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2689.5150859349487,1301.0,0.0,15372.0,1,2,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,15372.0,2,0,2_0,2_1 -8756,1.0,1.0,55.0,111,62,50,0.0,7785,0.0,100019.0,99999.0,0.0,4.0,4.0,2.0,4.0,2.5,1877.298952485063,1040.0,0.0,61183.0,1,3,10,8.0,4,4.0,0.0,1.0,0,0,0,0,1,0,1.0,3.0,24473.2,4,0,4_0,4_0 -8757,0.0,0.0,21.0,111,84,33,0.0,7788,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3696.172019627297,0.0,0.0,4676.0,3,4,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,3117.3333333333335,1,0,1_0,1_0 -8758,1.0,1.0,64.0,112,74,70,2.0,779,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2150.3005709098925,2548.0,12975.0,27660.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18440.0,3,0,3_0,3_0 -8759,5.0,13.0,24.0,112,53,44,0.0,7790,0.0,0.0,500.0,550.0,2.0,3.0,0.0,2.0,1.5,3105.2914034085447,0.0,0.0,26440.0,1,3,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17626.666666666668,3,0,3_0,3_0 -8760,0.0,0.0,43.0,112,68,71,0.0,7791,0.0,0.0,0.0,238.0,2.0,2.0,0.0,2.0,1.5,3078.4730121944626,0.0,0.0,27800.0,1,3,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18533.333333333332,3,0,3_0,3_0 -8761,7.0,7.0,67.0,112,75,31,0.0,7792,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2327.151336594017,2387.0,0.0,40840.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,40840.0,5,0,5,5_1 -8762,0.0,0.0,62.0,300,77,71,0.0,7793,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2895.229864225131,0.0,0.0,13460.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13460.0,2,0,2_1,2_1 -8763,2.0,2.0,61.0,400,75,50,1.0,7794,0.0,0.0,0.0,0.0,0.0,5.0,2.0,4.0,2.5,2105.0049165372616,5325.0,9400.0,40697.0,5,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16278.8,2,0,2_0,2_1 -8764,13.0,15.0,52.0,120,47,42,0.0,7796,0.0,100199.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1900.8982555330683,2600.0,0.0,51930.0,1,1,0,2.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,25965.0,4,0,4_0,4_0 -8765,5.0,6.0,70.0,111,75,70,0.0,7797,0.0,0.0,80.0,507.0,1.0,3.0,1.0,3.0,1.8,6206.059433097249,3640.0,0.0,38332.0,5,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21295.555555555555,3,0,3_0,3_0 -8766,7.0,8.0,52.0,111,35,20,0.0,7799,0.0,450.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1439.2634541153755,3640.0,0.0,40280.0,1,1,8,7.0,4,3.0,1.0,1.0,0,0,0,1,0,0,0.0,3.0,20140.0,3,0,3_0,3_0 -8767,1.0,1.0,38.0,111,67,50,0.0,78,0.0,100.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,4200.360189118542,0.0,0.0,23330.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15553.333333333334,2,0,2_0,2_0 -8768,0.0,1.0,45.0,111,37,31,0.0,780,0.0,600.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1957.8622061615872,3514.0,0.0,111550.0,1,2,8,6.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,48500.00000000001,5,0,5,5_0 -8769,6.0,15.0,47.0,112,62,71,0.0,7800,0.0,350.0,0.0,0.0,3.0,5.0,3.0,5.0,2.8,1704.005423990861,2860.0,0.0,55810.0,1,2,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,19932.14285714286,3,0,3_0,3_1 -8770,0.0,0.0,79.0,111,77,70,0.0,7801,0.0,0.0,0.0,570.0,0.0,3.0,0.0,1.0,1.0,3954.285226116115,0.0,0.0,18370.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18370.0,3,0,3_0,3_0 -8771,5.0,15.0,35.0,111,54,71,0.0,7804,0.0,0.0,0.0,0.0,3.0,7.0,3.0,5.0,3.0,2846.3062380402234,1040.0,0.0,36891.0,4,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,12297.0,1,0,1_0,1_0 -8772,1.0,1.0,77.0,111,78,31,1.0,7805,0.0,0.0,0.0,0.0,0.0,1.0,0.0,2.0,1.5,4241.301818453579,3120.0,12900.0,33788.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22525.333333333332,4,0,4_0,4_0 -8773,7.0,9.0,51.0,111,65,50,0.0,7806,0.0,0.0,45.0,403.0,2.0,4.0,0.0,2.0,1.5,2497.900954827501,2600.0,0.0,30448.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20298.666666666668,3,0,3_0,3_0 -8774,1.0,15.0,34.0,221,85,60,2.0,7807,0.0,0.0,0.0,48.0,0.0,3.0,1.0,2.0,1.3,7047.635487993033,0.0,1000.0,6028.0,6,3,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,4636.923076923077,1,0,1_1,1_0 -8775,5.0,7.0,23.0,111,84,41,0.0,7808,0.0,0.0,70.0,101.0,0.0,1.0,0.0,1.0,1.0,3382.901709389091,0.0,0.0,8224.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,8224.0,1,0,1_1,1_0 -8776,2.0,2.0,28.0,111,38,10,0.0,7809,0.0,100.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,3025.881811079487,2548.0,0.0,26376.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26376.0,4,0,4_0,4_0 -8777,0.0,0.0,42.0,111,63,50,0.0,781,0.0,0.0,0.0,455.0,1.0,1.0,0.0,1.0,1.0,2700.8827112949907,0.0,0.0,20317.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20317.0,3,0,3_0,3_0 -8778,0.0,0.0,96.0,111,72,71,0.0,7811,0.0,0.0,0.0,359.0,0.0,3.0,0.0,1.0,1.0,3903.7860951200605,0.0,0.0,8279.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8279.0,1,0,1_1,1_0 -8779,12.0,14.0,47.0,111,65,60,0.0,7814,0.0,150.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2843.193729901615,1040.0,0.0,17424.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17424.0,3,0,3_0,3_0 -8780,7.0,17.0,38.0,111,68,50,0.0,7815,0.0,0.0,0.0,0.0,2.0,1.0,1.0,3.0,1.8,2713.9936135540356,3120.0,0.0,29635.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,1,1.0,0.0,16463.888888888887,2,0,2_1,2_0 -8781,5.0,5.0,64.0,111,74,12,0.0,7816,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2109.805381299739,3200.0,0.0,121738.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,81158.66666666667,5,0,5,5_0 -8782,13.0,13.0,50.0,211,21,50,0.0,7817,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2227.052443589516,0.0,0.0,42815.0,1,2,3,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28543.333333333332,4,0,4_0,4_0 -8783,10.0,10.0,69.0,111,78,71,0.0,782,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2978.7298723360664,0.0,0.0,23198.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23198.0,4,0,4_0,4_0 -8784,0.0,0.0,34.0,111,56,41,0.0,7820,0.0,0.0,0.0,503.0,1.0,2.0,2.0,3.0,2.0,3575.439396615851,0.0,0.0,29831.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14915.5,2,0,2_1,2_0 -8785,1.0,16.0,44.0,111,52,50,2.0,7821,0.0,0.0,250.0,0.0,2.0,4.0,2.0,3.0,1.8,2956.379099262884,0.0,4000.0,36372.0,1,2,7,5.0,2,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,20206.666666666668,3,0,3_0,3_0 -8786,2.0,9.0,55.0,111,62,50,0.0,7823,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,957.5287580565071,1040.0,0.0,43404.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17361.6,3,0,3_0,3_0 -8787,4.0,4.0,63.0,111,74,60,0.0,7824,0.0,0.0,400.0,0.0,1.0,4.0,1.0,2.0,1.5,2816.4738526241454,0.0,0.0,51789.0,5,1,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,34526.0,5,0,5,5_0 -8788,25.0,25.0,70.0,111,74,20,0.0,7825,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2810.695516357115,0.0,0.0,35894.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,35894.0,5,0,5,5_0 -8789,11.0,14.0,40.0,111,43,31,0.0,7826,0.0,0.0,0.0,338.0,1.0,2.0,0.0,1.0,1.0,3046.4238092957544,0.0,0.0,24326.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24326.0,4,0,4_0,4_0 -8790,0.0,0.0,33.0,111,33,20,0.0,7827,0.0,0.0,0.0,791.0,1.0,2.0,0.0,1.0,1.0,4142.534364068886,0.0,0.0,22674.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22674.0,4,0,4_0,4_0 -8791,0.0,6.0,39.0,111,42,50,2.0,7828,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2078.702548958756,3640.0,12500.0,51353.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,21397.083333333336,3,0,3_1,3_0 -8792,0.0,0.0,30.0,111,46,10,0.0,7829,0.0,0.0,0.0,610.0,2.0,2.0,0.0,2.0,1.5,3073.519351825555,0.0,0.0,141788.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,94525.33333333333,5,0,5,5_0 -8793,7.0,8.0,59.0,112,56,70,0.0,783,0.0,0.0,0.0,804.0,1.0,4.0,0.0,2.0,1.5,1866.1086553630312,2054.0,0.0,41999.0,1,3,10,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27999.333333333332,4,0,4_0,4_0 -8794,6.0,6.0,34.0,112,37,43,0.0,7830,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,7540.606001612314,0.0,0.0,106135.0,1,2,9,2.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,50540.47619047619,5,0,5,5_0 -8795,0.0,14.0,44.0,120,62,50,0.0,7831,0.0,400.0,0.0,0.0,2.0,4.0,4.0,6.0,3.1,1132.115681099387,0.0,0.0,33316.0,1,2,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,1,1.0,2.0,10747.096774193547,1,0,1_1,1_1 -8796,2.0,6.0,45.0,111,46,31,0.0,7833,0.0,99999.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1094.779971297355,0.0,0.0,46533.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16618.928571428572,2,0,2_0,2_0 -8797,7.0,11.0,54.0,111,46,60,0.0,7834,0.0,100.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2125.5167722404544,0.0,0.0,30230.0,1,1,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20153.333333333332,3,0,3_0,3_0 -8798,0.0,13.0,49.0,111,38,10,0.0,7835,0.0,0.0,700.0,0.0,2.0,4.0,2.0,4.0,2.1,2351.1804864301434,3656.0,0.0,72342.0,1,2,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,34448.57142857143,5,0,5,5_0 -8799,5.0,8.0,39.0,112,64,42,0.0,7836,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2132.679706333147,0.0,0.0,29591.0,1,2,7,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,14090.95238095238,2,0,2_0,2_0 -8800,1.0,3.0,28.0,111,46,20,0.0,7837,0.0,1200.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,4646.248203395863,3337.0,0.0,52742.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,29301.11111111111,5,0,5,5_0 -8801,5.0,5.0,46.0,300,69,71,0.0,7838,0.0,550.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2506.8619988837663,1820.0,0.0,31624.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21082.666666666668,3,0,3_0,3_1 -8802,3.0,6.0,44.0,112,38,20,0.0,784,0.0,400.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1671.0923467172233,0.0,0.0,73268.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,40704.444444444445,5,0,5,5_0 -8803,9.0,18.0,39.0,111,38,12,0.0,7840,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1845.043823242365,1550.0,0.0,29527.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29527.0,5,0,5,5_0 -8804,6.0,21.0,57.0,111,75,20,0.0,7841,0.0,0.0,0.0,0.0,0.0,5.0,2.0,3.0,2.0,2233.0137559641757,0.0,0.0,60566.0,7,2,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,30283.0,5,0,5,5_0 -8805,3.0,3.0,65.0,111,74,50,0.0,7844,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1049.3452728040577,3359.0,0.0,53946.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,35964.0,5,0,5,5_0 -8806,11.0,11.0,77.0,111,75,33,0.0,7846,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2239.0420034704575,0.0,0.0,20475.0,5,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20475.0,3,0,3_0,3_0 -8807,8.0,8.0,49.0,111,43,50,0.0,7847,0.0,0.0,200.0,0.0,2.0,5.0,3.0,5.0,2.8,888.5108857446401,0.0,0.0,39496.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,14105.714285714286,2,0,2_1,2_0 -8808,9.0,10.0,47.0,400,43,33,0.0,7848,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2421.057505661674,3675.0,0.0,77755.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,31102.0,5,0,5,5_1 -8809,1.0,14.0,24.0,111,47,12,0.0,785,0.0,600.0,150.0,950.0,3.0,4.0,0.0,3.0,2.0,5135.528582999472,7551.0,0.0,41963.0,1,3,8,6.0,5,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,20981.5,3,0,3_0,3_0 -8810,5.0,9.0,26.0,400,63,43,0.0,7850,0.0,200.0,4.0,0.0,2.0,2.0,0.0,2.0,1.5,2352.079968565843,0.0,0.0,28445.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18963.333333333332,3,0,3_0,3_1 -8811,0.0,0.0,76.0,112,77,71,0.0,7851,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2321.445289720066,0.0,0.0,18703.0,5,4,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18703.0,3,0,3_0,3_1 -8812,0.0,0.0,22.0,111,52,41,0.0,7853,0.0,0.0,0.0,391.0,1.0,1.0,0.0,1.0,1.0,3911.1782805928715,0.0,0.0,6728.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,6728.0,1,0,1_1,1_0 -8813,2.0,2.0,57.0,211,34,41,0.0,7855,0.0,30.0,200.0,0.0,1.0,7.0,0.0,2.0,1.5,3976.0476585213223,0.0,0.0,60731.0,1,1,2,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,40487.333333333336,5,0,5,5_0 -8814,3.0,7.0,50.0,111,63,50,0.0,7857,0.0,150.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1896.0982591428185,4161.0,0.0,41093.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20546.5,3,0,3_0,3_0 -8815,0.0,0.0,80.0,400,74,41,0.0,7858,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,6245.944598405986,0.0,0.0,31077.0,5,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31077.0,5,0,5,5_0 -8816,0.0,0.0,89.0,111,71,70,0.0,786,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3046.535799618407,0.0,0.0,10980.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10980.0,1,0,1_1,1_0 -8817,3.0,3.0,44.0,112,42,31,0.0,7860,0.0,1250.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2351.636435160251,3473.0,0.0,89419.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,38877.82608695653,5,0,5,5_1 -8818,2.0,9.0,23.0,111,47,31,0.0,7861,0.0,0.0,250.0,132.0,1.0,4.0,0.0,1.0,1.0,3392.7262439921547,2860.0,0.0,16020.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,16020.0,2,0,2_1,2_0 -8819,0.0,0.0,67.0,111,78,70,0.0,7863,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1400.7628526110063,0.0,0.0,10466.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10466.0,1,0,1_0,1_0 -8820,0.0,0.0,42.0,111,55,50,0.0,7864,0.0,0.0,0.0,386.0,2.0,3.0,1.0,3.0,2.0,3173.231650193044,0.0,0.0,53193.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26596.5,4,0,4_0,4_0 -8821,0.0,0.0,30.0,111,37,12,0.0,7865,0.0,0.0,0.0,691.0,1.0,2.0,0.0,1.0,1.0,3256.821910830924,0.0,0.0,39937.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,39937.0,5,0,5,5_0 -8822,0.0,0.0,51.0,111,33,30,0.0,7867,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,1517.676781901633,0.0,0.0,23440.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15626.666666666666,2,0,2_0,2_0 -8823,0.0,0.0,49.0,111,85,71,0.0,7868,0.0,0.0,0.0,56.0,0.0,4.0,1.0,3.0,2.0,3061.0537869522104,0.0,0.0,25932.0,7,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12966.0,2,0,2_1,2_0 -8824,6.0,10.0,51.0,120,52,71,0.0,7873,0.0,570.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2252.019591577578,4408.0,0.0,37400.0,1,1,0,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24933.333333333332,4,0,4_0,4_0 -8825,13.0,13.0,81.0,111,86,60,0.0,7874,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2987.148130796388,0.0,0.0,45474.0,6,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,45474.0,5,0,5,5_0 -8826,17.0,17.0,78.0,120,75,50,0.0,7875,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2424.326053344092,0.0,0.0,29586.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19724.0,3,0,3_0,3_1 -8827,10.0,13.0,47.0,111,55,50,0.0,7876,0.0,0.0,99999.0,590.0,2.0,5.0,1.0,2.0,1.5,1888.9400567163818,0.0,0.0,30307.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,20204.666666666668,3,0,3_0,3_0 -8828,1.0,1.0,37.0,112,33,12,1.0,7878,0.0,350.0,200.0,0.0,2.0,5.0,2.0,4.0,2.1,2301.5543537685903,2261.0,20000.0,53454.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25454.285714285714,4,0,4_0,4_1 -8829,3.0,4.0,29.0,111,52,42,0.0,788,0.0,0.0,60.0,301.0,1.0,2.0,0.0,1.0,1.0,2830.8665733351904,2289.0,0.0,14053.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14053.0,2,0,2_0,2_0 -8830,21.0,23.0,65.0,400,77,70,0.0,7880,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2427.451128569895,0.0,0.0,12572.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12572.0,2,0,2_0,2_1 -8831,3.0,6.0,43.0,112,46,41,0.0,7881,0.0,350.0,200.0,0.0,2.0,3.0,1.0,3.0,1.8,3162.1239422674903,1820.0,0.0,56264.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,31257.777777777777,5,0,5,5_1 -8832,9.0,25.0,75.0,112,72,41,0.0,7882,0.0,0.0,0.0,0.0,0.0,11.0,0.0,2.0,1.5,1783.3533918245357,4368.0,0.0,53142.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,35428.0,5,0,5,5_1 -8833,8.0,8.0,64.0,211,74,20,0.0,7883,0.0,500.0,200.0,0.0,2.0,4.0,1.0,3.0,2.0,2469.668208584242,0.0,0.0,86102.0,5,1,2,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,43051.0,5,0,5,5_0 -8834,6.0,15.0,49.0,112,52,50,0.0,7884,0.0,80.0,120.0,0.0,2.0,6.0,1.0,3.0,2.0,1476.2471117513305,4165.0,0.0,60526.0,1,1,7,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,30263.0,5,0,5,5_0 -8835,6.0,7.0,37.0,120,47,31,0.0,7885,0.0,30.0,25.0,0.0,2.0,4.0,2.0,4.0,2.1,3683.8193804170537,0.0,0.0,34569.0,1,2,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16461.428571428572,2,0,2_0,2_0 -8836,0.0,0.0,31.0,111,67,20,0.0,7886,0.0,0.0,0.0,253.0,1.0,2.0,0.0,1.0,1.0,2632.314325391193,0.0,0.0,18168.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18168.0,3,0,3_1,3_0 -8837,11.0,19.0,63.0,221,64,70,0.0,7887,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,1.8,1201.726743153345,0.0,0.0,10360.0,5,1,1,3.0,5,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,5755.555555555556,1,0,1_0,1_0 -8838,10.0,10.0,87.0,111,71,71,0.0,7888,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2522.2058339092696,79.0,0.0,17662.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11774.666666666666,1,0,1_0,1_0 -8839,2.0,4.0,48.0,111,43,20,0.0,7889,0.0,99999.0,99999.0,0.0,2.0,5.0,3.0,5.0,2.8,1652.156770125516,3224.0,0.0,53940.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,19264.285714285714,3,0,3_0,3_0 -8840,17.0,18.0,81.0,111,78,71,0.0,789,0.0,0.0,0.0,303.0,0.0,2.0,0.0,1.0,1.0,3137.165158282982,0.0,0.0,18759.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,18759.0,3,0,3_1,3_0 -8841,6.0,6.0,64.0,212,78,50,0.0,7890,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1631.8459255287305,7378.0,0.0,31483.0,5,1,2,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20988.666666666668,3,0,3_0,3_1 -8842,0.0,0.0,64.0,221,78,71,0.0,7893,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,5906.149519109433,0.0,0.0,12620.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12620.0,2,0,2_0,2_0 -8843,7.0,13.0,72.0,112,78,50,0.0,7894,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1638.5745855829994,4057.0,0.0,19614.0,5,1,5,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19614.0,3,0,3_0,3_1 -8844,2.0,5.0,42.0,221,22,41,0.0,7895,0.0,146.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3416.289967930624,2226.0,0.0,7729.0,1,1,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,7729.0,1,0,1_0,1_0 -8845,2.0,2.0,38.0,111,37,20,0.0,7898,0.0,160.0,100.0,0.0,2.0,3.0,2.0,4.0,2.1,2422.5095921451116,1669.0,0.0,66659.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,31742.38095238095,5,0,5,5_0 -8846,11.0,19.0,38.0,400,13,43,0.0,7899,0.0,0.0,115.0,0.0,2.0,4.0,3.0,5.0,2.4,2568.6758664402264,2080.0,0.0,-1916.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,-798.3333333333334,1,0,1_1,1_1 -8847,0.0,0.0,91.0,111,72,71,0.0,790,0.0,0.0,0.0,110.0,0.0,3.0,0.0,1.0,1.0,3656.70663397476,0.0,0.0,12099.0,5,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12099.0,1,0,1_1,1_0 -8848,4.0,9.0,29.0,111,46,31,0.0,7900,0.0,10.0,0.0,430.0,2.0,2.0,0.0,2.0,1.5,2748.6424308481714,2242.0,0.0,35068.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23378.666666666668,4,0,4_0,4_0 -8849,7.0,7.0,70.0,111,74,60,0.0,7901,0.0,0.0,0.0,715.0,0.0,2.0,0.0,1.0,1.0,3291.3929372017374,0.0,0.0,30537.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30537.0,5,0,5,5_0 -8850,0.0,14.0,39.0,111,34,20,0.0,7902,0.0,320.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1578.0598556288412,3120.0,0.0,56377.0,1,4,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,37584.666666666664,5,0,5,5_0 -8851,0.0,0.0,53.0,112,21,50,0.0,7906,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3090.667763468707,0.0,0.0,24204.0,1,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24204.0,4,0,4_0,4_1 -8852,2.0,5.0,35.0,111,42,20,0.0,7907,0.0,140.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,880.0685642151377,0.0,0.0,41577.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,17323.75,3,0,3_0,3_0 -8853,0.0,6.0,19.0,211,81,50,0.0,7909,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2815.399797852259,0.0,0.0,10862.0,4,3,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,8355.384615384615,1,0,1_1,1_0 -8854,0.0,0.0,28.0,111,68,70,0.0,7910,0.0,0.0,0.0,0.0,2.0,3.0,3.0,5.0,2.4,2669.2916410681464,0.0,0.0,45956.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19148.333333333336,3,0,3_0,3_0 -8855,1.0,1.0,46.0,111,85,50,1.0,7913,0.0,0.0,0.0,0.0,0.0,5.0,2.0,4.0,2.1,1458.2027769229176,0.0,26000.0,22829.0,7,1,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,10870.95238095238,1,0,1_0,1_0 -8856,10.0,10.0,76.0,111,72,70,0.0,7914,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3637.488171962145,0.0,0.0,69539.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,46359.333333333336,5,0,5,5_0 -8857,8.0,8.0,63.0,111,72,50,0.0,7915,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3554.692751335323,0.0,0.0,28304.0,5,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18869.333333333332,3,0,3_0,3_0 -8858,1.0,1.0,51.0,111,46,42,1.0,7917,0.0,510.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1461.5527061640214,0.0,21100.0,59093.0,1,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,39395.333333333336,5,0,5,5_0 -8859,12.0,12.0,46.0,111,63,41,0.0,7919,0.0,300.0,0.0,0.0,2.0,7.0,6.0,8.0,3.7,815.9326977109603,0.0,0.0,38906.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,10515.135135135135,1,0,1_1,1_0 -8860,0.0,0.0,37.0,111,54,41,0.0,792,0.0,0.0,0.0,0.0,1.0,2.0,2.0,3.0,1.8,2345.391698769958,0.0,0.0,11350.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6305.555555555556,1,0,1_1,1_0 -8861,15.0,20.0,66.0,112,78,50,0.0,7920,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1347.8322917635874,1705.0,0.0,17313.0,5,1,8,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,2.0,0.0,11542.0,1,0,1_0,1_1 -8862,6.0,8.0,48.0,111,38,10,0.0,7921,0.0,704.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2779.558027589039,2455.0,0.0,46763.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,46763.0,5,0,5,5_0 -8863,3.0,4.0,48.0,112,46,50,0.0,7922,0.0,600.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2061.399760002666,5460.0,0.0,42310.0,1,2,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28206.666666666668,4,0,4_0,4_1 -8864,0.0,0.0,60.0,111,77,41,0.0,7923,0.0,0.0,0.0,563.0,1.0,5.0,1.0,2.0,1.5,7931.775112291311,0.0,0.0,15900.0,5,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10600.0,1,0,1_0,1_0 -8865,2.0,13.0,41.0,111,54,50,0.0,7924,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,2600.7254057767327,2860.0,0.0,26424.0,1,3,5,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12582.857142857143,2,0,2_1,2_0 -8866,6.0,6.0,29.0,221,54,31,0.0,7925,0.0,50.0,30.0,0.0,2.0,3.0,1.0,3.0,1.8,3878.077842874396,0.0,0.0,52847.0,1,2,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,29359.444444444445,5,0,5,5_0 -8867,0.0,0.0,83.0,400,71,71,0.0,7926,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2853.3844754686866,0.0,0.0,11409.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11409.0,1,0,1_0,1_1 -8868,2.0,11.0,87.0,111,78,70,0.0,7927,0.0,0.0,0.0,266.0,0.0,2.0,0.0,1.0,1.0,1958.4909743245732,0.0,0.0,15890.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15890.0,2,0,2_0,2_0 -8869,0.0,0.0,31.0,111,34,12,0.0,793,0.0,0.0,0.0,636.0,1.0,2.0,0.0,1.0,1.0,3171.993991507779,0.0,0.0,22005.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22005.0,4,0,4_0,4_0 -8870,0.0,8.0,24.0,111,35,20,2.0,7931,0.0,0.0,0.0,86.0,1.0,1.0,0.0,1.0,1.0,3458.8999494186787,0.0,4500.0,8091.0,1,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8091.0,1,0,1_1,1_0 -8871,8.0,8.0,64.0,112,74,20,0.0,7933,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1280.111768622912,0.0,0.0,51392.0,5,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,34261.333333333336,5,0,5,5_0 -8872,2.0,2.0,47.0,111,37,60,0.0,7935,0.0,300.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3498.375498282218,0.0,0.0,24903.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24903.0,4,0,4_0,4_0 -8873,0.0,1.0,66.0,111,75,60,2.0,7936,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3624.996623751033,1144.0,13000.0,21388.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21388.0,3,0,3_0,3_0 -8874,6.0,6.0,81.0,112,78,20,0.0,7937,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,3351.027142841288,0.0,0.0,20424.0,5,4,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20424.0,3,0,3_0,3_1 -8875,1.0,1.0,37.0,111,34,10,0.0,7938,0.0,100.0,0.0,436.0,1.0,2.0,0.0,1.0,1.0,5188.6661388173825,0.0,0.0,28008.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28008.0,4,0,4_0,4_0 -8876,0.0,0.0,35.0,111,38,20,0.0,7939,0.0,0.0,0.0,584.0,1.0,2.0,0.0,1.0,1.0,3226.333784579073,0.0,0.0,38168.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38168.0,5,0,5,5_0 -8877,0.0,0.0,82.0,211,78,50,0.0,7942,0.0,0.0,0.0,368.0,0.0,5.0,0.0,2.0,1.5,4135.6006648398425,0.0,0.0,27719.0,5,3,2,3.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18479.333333333332,3,0,3_0,3_0 -8878,3.0,3.0,57.0,211,54,60,0.0,7943,0.0,0.0,310.0,0.0,1.0,5.0,0.0,1.0,1.0,2003.5022553055323,0.0,0.0,16090.0,1,3,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,16090.0,2,0,2_0,2_0 -8879,0.0,0.0,25.0,111,63,50,0.0,7945,0.0,0.0,0.0,44.0,2.0,3.0,2.0,4.0,2.1,3556.6473803437484,0.0,0.0,25416.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12102.857142857143,1,0,1_1,1_0 -8880,0.0,19.0,34.0,300,43,33,0.0,7946,0.0,300.0,80.0,0.0,2.0,1.0,2.0,4.0,2.1,3031.545335446412,5200.0,0.0,33667.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,16031.904761904761,2,0,2_0,2_1 -8881,0.0,0.0,36.0,111,37,12,0.0,7948,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3781.923523272085,0.0,0.0,78175.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,78175.0,5,0,5,5_0 -8882,3.0,11.0,62.0,120,38,50,0.0,7949,0.0,300.0,0.0,0.0,2.0,4.0,1.0,4.0,2.3,2139.4841708230742,4407.0,0.0,67459.0,5,1,0,3.0,5,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,29330.000000000004,5,0,5,5_0 -8883,6.0,6.0,61.0,221,75,70,0.0,795,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2730.3259603402703,0.0,0.0,47747.0,5,1,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,31831.333333333332,5,0,5,5_0 -8884,3.0,3.0,50.0,112,47,50,0.0,7950,0.0,0.0,250.0,0.0,1.0,5.0,0.0,2.0,1.5,2017.670822264016,5231.0,0.0,50041.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,33360.666666666664,5,0,5,5_1 -8885,6.0,14.0,53.0,112,38,20,0.0,7951,0.0,800.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,1360.2578144040808,10036.0,0.0,55510.0,1,2,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,37006.666666666664,5,0,5,5_1 -8886,16.0,16.0,69.0,111,72,71,0.0,7952,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3428.0683259996395,2080.0,0.0,12248.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,8165.333333333333,1,0,1_0,1_0 -8887,0.0,0.0,87.0,111,78,70,0.0,7953,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2977.247328146001,0.0,0.0,16990.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16990.0,3,0,3_0,3_0 -8888,9.0,10.0,60.0,211,78,71,0.0,7954,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,5669.871211519986,0.0,0.0,39658.0,5,1,2,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26438.666666666668,4,0,4_0,4_0 -8889,0.0,0.0,52.0,111,37,41,0.0,7956,0.0,0.0,0.0,0.0,3.0,3.0,2.0,3.0,2.0,1911.5636324955715,1040.0,0.0,49580.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24790.0,4,0,4_0,4_0 -8890,0.0,21.0,58.0,400,78,50,0.0,7957,0.0,0.0,0.0,204.0,1.0,5.0,1.0,3.0,2.0,991.1053216963031,1560.0,0.0,22580.0,7,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,11290.0,1,0,1_1,1_1 -8891,1.0,7.0,28.0,400,42,41,2.0,7959,0.0,90.0,0.0,149.0,2.0,4.0,2.0,4.0,2.3,1784.4335371594782,0.0,800.0,22991.0,2,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,9996.08695652174,1,0,1_1,1_1 -8892,15.0,15.0,67.0,300,74,50,0.0,7960,0.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,2.0,1076.2148790928757,0.0,0.0,53896.0,5,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,26948.0,4,0,4_0,4_1 -8893,6.0,16.0,52.0,120,63,50,0.0,7961,0.0,440.0,0.0,295.0,3.0,4.0,2.0,4.0,2.5,2401.4885287155976,2080.0,0.0,44987.0,1,3,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17994.8,3,0,3_0,3_0 -8894,4.0,6.0,45.0,111,85,71,0.0,7962,0.0,0.0,0.0,111.0,0.0,5.0,3.0,4.0,2.3,3057.8740479535622,1560.0,0.0,27724.0,7,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,12053.913043478262,1,0,1_1,1_0 -8895,4.0,22.0,28.0,112,67,60,0.0,7963,0.0,0.0,220.0,0.0,2.0,4.0,2.0,4.0,2.1,2758.4006140381653,0.0,0.0,36101.0,1,3,5,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17190.95238095238,3,0,3_0,3_1 -8896,3.0,5.0,55.0,111,52,50,0.0,7964,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1674.2586366117296,1685.0,0.0,34016.0,1,4,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34016.0,5,0,5,5_0 -8897,10.0,10.0,40.0,112,21,20,0.0,7965,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2719.3766208300744,3819.0,0.0,113273.0,1,2,7,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,47197.083333333336,5,0,5,5_0 -8898,5.0,16.0,46.0,300,34,20,0.0,7966,0.0,600.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1235.7767596624396,9482.0,0.0,66593.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26637.2,4,0,4_0,4_1 -8899,2.0,13.0,54.0,111,48,31,2.0,7967,0.0,0.0,0.0,710.0,1.0,2.0,0.0,1.0,1.0,2853.3293342987777,0.0,1000.0,40500.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,40500.0,5,0,5,5_0 -8900,8.0,15.0,64.0,400,74,41,0.0,7968,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2984.6013045804248,6760.0,0.0,38435.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,25623.333333333332,4,0,4_0,4_1 -8901,2.0,31.0,50.0,111,62,50,0.0,797,0.0,100.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1197.2073859694347,2080.0,0.0,19329.0,1,1,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,9664.5,1,0,1_0,1_0 -8902,27.0,29.0,72.0,300,71,71,0.0,7970,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1918.2710039732697,0.0,0.0,19599.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13066.0,2,0,2_0,2_1 -8903,0.0,1.0,20.0,111,84,60,0.0,7972,0.0,0.0,0.0,542.0,0.0,3.0,0.0,3.0,2.0,3442.8954192222004,0.0,0.0,2096.0,3,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,1048.0,1,0,1_1,1_0 -8904,1.0,1.0,64.0,111,77,60,1.0,7973,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2301.7137418084994,2496.0,32797.0,42616.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,28410.666666666668,4,0,4_0,4_0 -8905,3.0,3.0,32.0,111,54,31,0.0,7974,0.0,0.0,0.0,300.0,1.0,2.0,0.0,1.0,1.0,4017.2188448163824,0.0,0.0,19004.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19004.0,3,0,3_0,3_0 -8906,2.0,6.0,44.0,112,54,50,0.0,7975,0.0,400.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2485.36081700426,0.0,0.0,59415.0,1,2,10,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,33008.333333333336,5,0,5,5_1 -8907,3.0,13.0,35.0,111,63,50,0.0,7976,0.0,220.0,300.0,281.0,2.0,4.0,3.0,5.0,2.4,1603.0895886284998,0.0,0.0,42210.0,1,3,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,17587.5,3,0,3_0,3_0 -8908,0.0,0.0,55.0,111,68,71,0.0,7977,0.0,0.0,0.0,334.0,2.0,4.0,1.0,3.0,2.0,3733.2877514282386,0.0,0.0,49122.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24561.0,4,0,4_0,4_0 -8909,14.0,14.0,85.0,300,71,70,0.0,7978,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1730.4012967406568,0.0,0.0,26355.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26355.0,4,0,4_0,4_1 -8910,0.0,19.0,27.0,400,85,50,2.0,7979,0.0,99999.0,0.0,0.0,1.0,6.0,5.0,7.0,3.0,2127.373177810026,0.0,600.0,35203.0,6,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,11734.333333333334,1,0,1_1,1_1 -8911,5.0,8.0,30.0,111,34,10,0.0,7981,0.0,0.0,120.0,0.0,2.0,5.0,0.0,2.0,1.5,3360.26454036439,0.0,0.0,65526.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,43684.0,5,0,5,5_0 -8912,15.0,25.0,48.0,221,46,20,0.0,7982,0.0,0.0,0.0,494.0,1.0,3.0,1.0,2.0,1.3,2433.3848885094094,0.0,0.0,20613.0,1,3,1,2.0,2,1.0,1.0,1.0,0,1,0,0,0,1,0.0,1.0,15856.153846153846,2,0,2_1,2_0 -8913,0.0,0.0,40.0,111,55,41,0.0,7985,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3291.548497030776,0.0,0.0,15735.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15735.0,2,0,2_0,2_0 -8914,0.0,0.0,75.0,112,86,70,0.0,7986,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2792.368657342367,0.0,0.0,10780.0,5,1,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10780.0,1,0,1_0,1_0 -8915,2.0,6.0,32.0,111,42,41,0.0,7987,0.0,220.0,40.0,515.0,2.0,3.0,0.0,2.0,1.5,3308.4623746743214,0.0,0.0,32613.0,1,3,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,21742.0,4,0,4_1,4_0 -8916,1.0,4.0,36.0,120,43,33,2.0,7988,0.0,120.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,4193.0377601013615,1924.0,8500.0,46552.0,1,1,0,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20240.0,3,0,3_0,3_0 -8917,1.0,1.0,41.0,120,43,31,1.0,7992,0.0,1250.0,0.0,0.0,2.0,8.0,3.0,5.0,2.6,1689.3902743100655,6479.0,23000.0,77736.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,29898.46153846154,5,0,5,5_1 -8918,1.0,1.0,51.0,112,46,50,0.0,7993,0.0,1600.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1597.6734969085003,4978.0,0.0,59036.0,1,1,7,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,39357.333333333336,5,0,5,5_0 -8919,9.0,25.0,40.0,111,38,10,0.0,7995,0.0,0.0,200.0,0.0,2.0,4.0,3.0,5.0,2.4,1002.6222862701409,645.0,0.0,49287.0,1,3,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,20536.25,3,0,3_0,3_0 -8920,1.0,1.0,40.0,112,53,60,1.0,7996,0.0,524.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1699.188265855701,6122.0,13000.0,67140.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27975.0,4,0,4_0,4_1 -8921,9.0,11.0,42.0,112,34,12,0.0,7998,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1950.3367525528133,6043.0,0.0,47098.0,1,2,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20477.391304347828,3,0,3_0,3_1 -8922,0.0,0.0,33.0,111,42,20,0.0,7999,0.0,0.0,0.0,309.0,1.0,1.0,0.0,1.0,1.0,2836.114065269886,0.0,0.0,11605.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11605.0,1,0,1_1,1_0 -8923,7.0,11.0,43.0,111,55,50,0.0,8,0.0,550.0,0.0,423.0,1.0,4.0,0.0,1.0,1.0,3042.172564285492,2600.0,0.0,20618.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20618.0,3,0,3_0,3_0 -8924,3.0,12.0,43.0,221,64,50,0.0,8000,0.0,99999.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2866.3509289125336,3640.0,0.0,39335.0,1,1,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17102.17391304348,3,0,3_0,3_0 -8925,21.0,21.0,80.0,112,74,10,0.0,8001,0.0,0.0,0.0,0.0,0.0,14.0,0.0,2.0,1.5,5530.626031318236,0.0,0.0,82805.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,55203.333333333336,5,0,5,5_0 -8926,1.0,3.0,48.0,111,37,20,2.0,8002,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2684.5168643467837,2361.0,20000.0,95739.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34192.5,5,0,5,5_0 -8927,0.0,0.0,84.0,112,75,70,0.0,8003,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3990.624176940091,0.0,0.0,18512.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18512.0,3,0,3_0,3_1 -8928,6.0,14.0,62.0,111,75,70,0.0,8004,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2644.5898954905224,5731.0,0.0,34482.0,5,1,7,5.0,3,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,22988.0,4,0,4_0,4_0 -8929,3.0,3.0,64.0,112,74,31,0.0,8005,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1979.6933227736183,0.0,0.0,41356.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27570.666666666668,4,0,4_0,4_1 -8930,0.0,0.0,56.0,221,78,71,0.0,8007,0.0,0.0,0.0,282.0,0.0,3.0,0.0,1.0,1.0,7242.692348648616,0.0,0.0,27429.0,5,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27429.0,4,0,4_0,4_0 -8931,3.0,3.0,34.0,111,63,71,0.0,8009,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3461.8292614875977,3411.0,0.0,24433.0,1,3,8,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,13573.888888888889,2,0,2_0,2_0 -8932,4.0,4.0,62.0,112,74,42,0.0,801,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2628.601111470115,3158.0,0.0,37952.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25301.333333333332,4,0,4_0,4_1 -8933,10.0,10.0,30.0,112,47,43,0.0,8010,0.0,350.0,40.0,0.0,2.0,2.0,1.0,3.0,1.8,5255.709583759216,0.0,0.0,39229.0,1,4,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,21793.888888888887,4,0,4_0,4_0 -8934,4.0,15.0,33.0,111,54,71,0.0,8012,0.0,0.0,100.0,149.0,1.0,3.0,1.0,2.0,1.3,3194.735927381868,1041.0,0.0,16625.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,12788.461538461537,2,0,2_1,2_0 -8935,1.0,1.0,32.0,400,55,50,0.0,8013,0.0,100199.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1763.0539106557453,3380.0,0.0,39490.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26326.666666666668,4,0,4_0,4_1 -8936,10.0,10.0,76.0,111,78,50,0.0,8015,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1445.3447844231498,0.0,0.0,21948.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14632.0,2,0,2_0,2_0 -8937,7.0,8.0,32.0,111,47,31,0.0,8016,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2515.038265804681,6271.0,0.0,42816.0,1,2,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,20388.571428571428,3,0,3_0,3_0 -8938,4.0,7.0,42.0,111,68,71,0.0,8017,0.0,600.0,0.0,0.0,1.0,4.0,2.0,4.0,2.3,2903.93499519919,1664.0,0.0,30856.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13415.652173913044,2,0,2_1,2_0 -8939,8.0,10.0,55.0,112,52,50,0.0,802,0.0,800.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1139.5885948505766,2600.0,0.0,39880.0,1,2,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22155.555555555555,4,0,4_0,4_1 -8940,1.0,2.0,61.0,112,75,41,0.0,8020,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2446.233085612728,0.0,0.0,52768.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,35178.666666666664,5,0,5,5_1 -8941,2.0,5.0,49.0,111,65,50,0.0,8021,0.0,0.0,90.0,338.0,1.0,5.0,0.0,2.0,1.5,3527.4356505126407,0.0,0.0,29602.0,1,3,8,6.0,5,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19734.666666666668,3,0,3_0,3_0 -8942,15.0,15.0,70.0,221,75,31,0.0,8023,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3305.23520054306,0.0,0.0,23515.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23515.0,4,0,4_0,4_0 -8943,13.0,19.0,73.0,111,78,71,0.0,8025,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2971.0187409676532,1612.0,0.0,24999.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16666.0,2,0,2_0,2_0 -8944,7.0,7.0,66.0,111,75,31,0.0,8026,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3502.4959339413117,1352.0,0.0,46016.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,30677.333333333332,5,0,5,5_0 -8945,4.0,4.0,60.0,120,78,71,0.0,8030,0.0,0.0,0.0,409.0,0.0,3.0,0.0,1.0,1.0,7856.927134348476,0.0,0.0,14495.0,5,3,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14495.0,2,0,2_0,2_0 -8946,10.0,18.0,65.0,112,78,70,0.0,8031,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1453.6059645637833,2127.0,0.0,20781.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13854.0,2,0,2_0,2_1 -8947,8.0,11.0,30.0,111,52,50,0.0,8032,0.0,70.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,3335.046087606772,0.0,0.0,18380.0,1,3,5,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11487.5,1,0,1_1,1_0 -8948,5.0,5.0,68.0,111,75,70,0.0,8033,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2176.0619436276543,0.0,0.0,42898.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,28598.666666666668,4,0,4_0,4_0 -8949,8.0,9.0,80.0,112,72,60,0.0,8034,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2334.3617391541848,2080.0,0.0,14836.0,5,1,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14836.0,2,0,2_0,2_0 -8950,0.0,3.0,25.0,111,38,12,0.0,8036,0.0,0.0,0.0,500.0,1.0,3.0,0.0,1.0,1.0,3555.751447461544,0.0,0.0,33950.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,33950.0,5,0,5,5_0 -8951,0.0,0.0,53.0,112,38,50,0.0,8037,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,5149.56157195124,0.0,0.0,29566.0,1,1,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19710.666666666668,3,0,3_0,3_0 -8952,0.0,0.0,55.0,111,67,50,0.0,8038,0.0,0.0,0.0,310.0,1.0,2.0,0.0,1.0,1.0,1300.7878293538768,0.0,0.0,20940.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20940.0,3,0,3_0,3_0 -8953,8.0,19.0,60.0,112,63,70,0.0,8039,0.0,150.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2352.1667010754995,991.0,0.0,14194.0,1,3,9,1.0,1,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,14194.0,2,0,2_1,2_0 -8954,3.0,7.0,35.0,112,46,60,0.0,804,0.0,400.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2153.6841192433253,3025.0,0.0,58889.0,1,2,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24537.083333333336,4,0,4_0,4_1 -8955,7.0,10.0,33.0,111,54,43,0.0,8041,0.0,0.0,0.0,450.0,2.0,3.0,1.0,3.0,1.8,2558.2131472696137,3368.0,0.0,33695.0,1,3,7,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,18719.444444444445,3,0,3_0,3_0 -8956,2.0,13.0,39.0,300,52,50,0.0,8042,0.0,900.0,0.0,0.0,3.0,6.0,2.0,4.0,2.3,2266.6100936967828,3526.0,0.0,43819.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19051.739130434784,3,0,3_0,3_1 -8957,4.0,6.0,42.0,111,21,33,0.0,8043,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2772.037059289296,3120.0,0.0,52205.0,1,2,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,24859.52380952381,4,0,4_0,4_0 -8958,5.0,13.0,47.0,400,55,50,0.0,8044,0.0,0.0,0.0,403.0,2.0,3.0,0.0,2.0,1.5,1177.230524809415,0.0,0.0,23910.0,1,3,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15940.0,2,0,2_0,2_0 -8959,6.0,9.0,32.0,112,12,50,0.0,8045,0.0,199998.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4476.972520318032,0.0,0.0,24974.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,11892.380952380952,1,0,1_0,1_1 -8960,2.0,2.0,68.0,221,74,12,1.0,8047,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2917.4202491791434,3172.0,13800.0,39181.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,26120.666666666668,4,0,4_0,4_0 -8961,16.0,18.0,71.0,400,71,70,0.0,805,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1647.853041225225,0.0,0.0,23836.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,15890.666666666666,2,0,2_0,2_1 -8962,8.0,9.0,71.0,111,77,50,0.0,8050,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,997.3347576285536,2637.0,0.0,46856.0,5,1,3,4.0,4,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,23428.0,4,0,4_0,4_0 -8963,4.0,4.0,56.0,111,75,33,0.0,8054,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2304.6596972481366,0.0,0.0,27096.0,5,1,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18064.0,3,0,3_0,3_0 -8964,3.0,4.0,65.0,111,74,50,0.0,8055,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2650.445083337536,4322.0,0.0,61949.0,5,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,41299.333333333336,5,0,5,5_0 -8965,2.0,4.0,30.0,111,52,50,0.0,8056,0.0,150.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3196.7405489801936,0.0,0.0,20239.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20239.0,3,0,3_0,3_0 -8966,6.0,6.0,64.0,112,74,50,0.0,8057,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2367.9874439054856,0.0,0.0,31528.0,5,1,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,31528.0,5,0,5,5_1 -8967,9.0,10.0,33.0,111,47,50,0.0,8058,0.0,100.0,0.0,262.0,2.0,3.0,0.0,2.0,1.5,2951.6328699285227,3640.0,0.0,46701.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,31134.0,5,0,5,5_0 -8968,3.0,3.0,56.0,111,21,41,0.0,8059,0.0,0.0,30.0,0.0,2.0,3.0,0.0,2.0,1.5,3479.012601877163,2132.0,0.0,39940.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,26626.666666666668,4,0,4_0,4_0 -8969,2.0,4.0,45.0,300,43,33,0.0,806,0.0,600.0,0.0,0.0,3.0,6.0,3.0,5.0,2.8,860.6794662981222,0.0,0.0,149638.0,1,1,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,53442.14285714286,5,0,5,5_0 -8970,7.0,7.0,27.0,111,65,20,0.0,8061,0.0,300.0,100.0,0.0,2.0,3.0,0.0,2.0,1.5,3015.9062579398196,0.0,0.0,43403.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,28935.333333333332,4,0,4_0,4_0 -8971,2.0,2.0,64.0,120,72,50,0.0,8062,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1804.5061976753782,1976.0,0.0,27892.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18594.666666666668,3,0,3_0,3_0 -8972,0.0,0.0,59.0,400,11,71,0.0,8063,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2451.223928478271,0.0,0.0,2005.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,1002.5,1,0,1_0,1_1 -8973,4.0,10.0,44.0,111,52,50,0.0,8064,0.0,0.0,178.0,0.0,1.0,3.0,1.0,2.0,1.3,1637.979892957144,1040.0,0.0,23441.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18031.53846153846,3,0,3_0,3_0 -8974,1.0,2.0,66.0,400,71,70,0.0,8066,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2463.96657924216,5606.0,0.0,20229.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13486.0,2,0,2_0,2_1 -8975,1.0,13.0,20.0,111,67,50,2.0,8067,0.0,80.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,3086.7108345151337,1927.0,2400.0,26120.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,10448.0,1,0,1_1,1_0 -8976,4.0,7.0,56.0,111,47,50,0.0,8069,0.0,0.0,100.0,0.0,2.0,6.0,1.0,3.0,2.0,1147.1387858522428,0.0,0.0,40208.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20104.0,3,0,3_0,3_0 -8977,5.0,5.0,62.0,111,45,41,0.0,807,0.0,0.0,60.0,0.0,1.0,6.0,0.0,2.0,1.5,2247.1712259941887,0.0,0.0,47959.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,31972.666666666668,5,0,5,5_0 -8978,0.0,0.0,85.0,120,75,41,0.0,8073,0.0,0.0,0.0,620.0,0.0,3.0,0.0,1.0,1.0,3423.977821581795,785.0,0.0,16450.0,5,3,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16450.0,2,0,2_0,2_0 -8979,12.0,12.0,89.0,111,78,50,0.0,8075,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2161.0180967464175,0.0,0.0,32894.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21929.333333333332,4,0,4_0,4_0 -8980,8.0,8.0,47.0,112,37,31,0.0,8076,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,4284.847655090833,0.0,0.0,57975.0,1,2,9,1.0,4,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,23190.0,4,0,4_0,4_0 -8981,2.0,2.0,51.0,300,38,50,0.0,8077,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1150.380704408033,2132.0,0.0,30314.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20209.333333333332,3,0,3_0,3_1 -8982,2.0,2.0,57.0,111,31,10,0.0,8078,0.0,400.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2855.5892454457035,0.0,0.0,39143.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,39143.0,5,0,5,5_0 -8983,0.0,0.0,85.0,111,86,71,0.0,8079,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3311.126955594421,0.0,0.0,9710.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9710.0,1,0,1_0,1_0 -8984,10.0,10.0,64.0,400,75,41,0.0,8080,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2244.38758692978,2808.0,0.0,45330.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,30220.0,5,0,5,5_1 -8985,5.0,5.0,37.0,111,46,31,0.0,8081,0.0,150.0,0.0,380.0,1.0,1.0,0.0,1.0,1.0,3318.016429726079,1560.0,0.0,24702.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24702.0,4,0,4_0,4_0 -8986,0.0,0.0,21.0,111,84,42,0.0,8082,0.0,0.0,0.0,101.0,0.0,1.0,0.0,1.0,1.0,3120.1603359317637,0.0,0.0,2591.0,3,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,2591.0,1,0,1_1,1_0 -8987,0.0,15.0,61.0,111,74,20,0.0,8083,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1260.2636797409536,7245.0,0.0,68986.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,45990.666666666664,5,0,5,5_0 -8988,5.0,8.0,23.0,300,67,41,0.0,8085,0.0,100.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2093.3221776955857,0.0,0.0,27174.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18116.0,3,0,3_0,3_1 -8989,0.0,0.0,30.0,111,38,12,0.0,8086,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3023.2604124405057,0.0,0.0,34166.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34166.0,5,0,5,5_0 -8990,7.0,19.0,56.0,111,63,71,0.0,8087,0.0,20.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1850.6643875480338,1171.0,0.0,22630.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,15086.666666666666,2,0,2_0,2_0 -8991,2.0,2.0,62.0,111,47,31,0.0,8088,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2115.891515051947,0.0,0.0,38742.0,1,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25828.0,4,0,4_0,4_0 -8992,1.0,1.0,52.0,120,42,41,1.0,8089,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3001.1014292372715,2683.0,21400.0,53303.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23175.217391304348,4,0,4_0,4_1 -8993,0.0,0.0,84.0,300,78,71,0.0,809,0.0,0.0,0.0,160.0,0.0,2.0,0.0,1.0,1.0,3112.710299227578,0.0,0.0,16328.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,16328.0,2,0,2_1,2_1 -8994,13.0,13.0,79.0,111,78,70,0.0,8090,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3339.0173279401133,0.0,0.0,17700.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17700.0,3,0,3_0,3_0 -8995,10.0,12.0,59.0,112,78,50,0.0,8091,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1660.523203195723,0.0,0.0,23586.0,5,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15724.0,2,0,2_0,2_1 -8996,7.0,7.0,66.0,112,77,50,0.0,8092,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2466.794055002215,2404.0,0.0,20045.0,5,1,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20045.0,3,0,3_0,3_0 -8997,8.0,9.0,62.0,221,72,41,0.0,8094,0.0,0.0,0.0,0.0,1.0,5.0,1.0,4.0,2.5,1399.4135424349424,2288.0,0.0,40863.0,5,1,1,2.0,5,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16345.2,2,0,2_0,2_0 -8998,12.0,15.0,28.0,111,85,50,0.0,8095,0.0,0.0,0.0,60.0,0.0,1.0,1.0,2.0,1.3,4223.022466621803,1040.0,0.0,9582.0,4,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,7370.7692307692305,1,0,1_1,1_0 -8999,3.0,10.0,41.0,221,68,71,0.0,8098,0.0,50.0,0.0,640.0,2.0,5.0,0.0,2.0,1.5,4606.028056077723,0.0,0.0,12132.0,1,3,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,8088.0,1,0,1_0,1_0 -9000,1.0,17.0,23.0,111,84,31,2.0,8099,0.0,0.0,70.0,80.0,0.0,1.0,0.0,1.0,1.0,3407.8773497595193,0.0,2000.0,3481.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,3481.0,1,0,1_1,1_0 -9001,17.0,41.0,65.0,111,74,10,0.0,81,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3373.2386937670603,0.0,0.0,95280.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,63520.0,5,0,5,5_0 -9002,17.0,17.0,72.0,400,86,71,0.0,810,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2755.0866014741146,0.0,0.0,21526.0,6,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21526.0,3,0,3_0,3_1 -9003,6.0,6.0,56.0,112,46,50,0.0,8100,0.0,80.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1920.6550625690018,0.0,0.0,53520.0,4,1,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,35680.0,5,0,5,5_1 -9004,1.0,1.0,52.0,111,47,50,2.0,8101,0.0,80.0,0.0,0.0,1.0,9.0,2.0,3.0,1.6,2065.4387926415866,1560.0,17000.0,38620.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24137.5,4,0,4_0,4_0 -9005,4.0,9.0,31.0,300,62,44,0.0,8102,0.0,325.0,180.0,0.0,2.0,3.0,0.0,2.0,1.5,1900.66958015657,4056.0,0.0,39227.0,1,2,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,26151.333333333332,4,0,4_0,4_1 -9006,3.0,3.0,38.0,111,46,31,0.0,8104,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1927.3486656586663,0.0,0.0,40925.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19488.095238095237,3,0,3_0,3_0 -9007,11.0,11.0,46.0,111,45,71,0.0,8106,0.0,0.0,220.0,750.0,2.0,4.0,1.0,3.0,2.0,5902.491536665326,1118.0,0.0,52293.0,1,4,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,2.0,0.0,26146.5,4,0,4_0,4_0 -9008,6.0,18.0,52.0,111,52,50,0.0,8108,0.0,100.0,50.0,300.0,2.0,3.0,0.0,2.0,1.5,2742.805364061458,1582.0,0.0,47926.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,31950.666666666668,5,0,5,5_0 -9009,1.0,1.0,27.0,111,55,31,1.0,8109,0.0,0.0,80.0,510.0,1.0,2.0,0.0,1.0,1.0,2758.5737388244215,1300.0,10800.0,23923.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23923.0,4,0,4_0,4_0 -9010,11.0,13.0,36.0,112,52,44,0.0,811,0.0,180.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1880.4768823813677,1040.0,0.0,49112.0,1,2,7,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20463.333333333336,3,0,3_0,3_0 -9011,10.0,10.0,59.0,111,34,20,0.0,8110,0.0,0.0,70.0,0.0,2.0,5.0,0.0,2.0,1.5,2349.0181019466963,6389.0,0.0,73359.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,48906.0,5,0,5,5_0 -9012,1.0,1.0,59.0,221,77,60,1.0,8111,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2449.6779794004897,0.0,37000.0,22940.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15293.333333333334,2,0,2_0,2_0 -9013,6.0,6.0,61.0,111,74,10,0.0,8112,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2452.6017401907807,0.0,0.0,9825.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,9825.0,1,0,1_0,1_0 -9014,1.0,16.0,80.0,112,71,71,0.0,8113,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1974.4958810066287,3993.0,0.0,17776.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,11850.666666666666,1,0,1_0,1_0 -9015,3.0,3.0,56.0,211,63,50,0.0,8114,0.0,120.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,895.0589207619558,0.0,0.0,27463.0,1,1,3,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18308.666666666668,3,0,3_0,3_0 -9016,3.0,3.0,80.0,112,75,71,0.0,8116,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2565.0750461561042,0.0,0.0,25411.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25411.0,4,0,4_0,4_1 -9017,9.0,9.0,52.0,111,52,60,0.0,8117,0.0,330.0,0.0,74.0,1.0,3.0,0.0,1.0,1.0,2756.2370610369567,0.0,0.0,36448.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,36448.0,5,0,5,5_0 -9018,10.0,10.0,68.0,111,74,30,0.0,8118,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2780.513082203893,0.0,0.0,29844.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,29844.0,5,0,5,5_0 -9019,5.0,13.0,66.0,221,74,10,0.0,8119,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,3172.2807826495846,0.0,0.0,29145.0,5,2,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29145.0,5,0,5,5_0 -9020,14.0,14.0,63.0,112,75,41,0.0,8121,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2049.2187009784857,0.0,0.0,53293.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,35528.666666666664,5,0,5,5_1 -9021,6.0,17.0,82.0,400,78,70,0.0,8124,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2278.552135645942,2080.0,0.0,18020.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12013.333333333334,1,0,1_0,1_1 -9022,13.0,13.0,61.0,111,78,71,0.0,8126,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2547.1681988609284,780.0,0.0,23690.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15793.333333333334,2,0,2_0,2_0 -9023,0.0,0.0,25.0,111,84,20,0.0,8127,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4220.559988179668,0.0,0.0,6850.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6850.0,1,0,1_1,1_0 -9024,13.0,13.0,54.0,111,37,20,0.0,8130,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3305.398085956602,0.0,0.0,5683.0,4,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,5683.0,1,0,1_0,1_0 -9025,2.0,2.0,58.0,111,52,50,0.0,8132,0.0,0.0,25.0,267.0,1.0,4.0,0.0,2.0,1.5,3704.673230099759,1699.0,0.0,43239.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,28826.0,4,0,4_0,4_0 -9026,3.0,3.0,58.0,111,75,70,0.0,8133,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2357.3534928002764,2772.0,0.0,30242.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20161.333333333332,3,0,3_0,3_0 -9027,16.0,16.0,40.0,300,62,50,0.0,8135,0.0,240.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1900.0406753109958,2601.0,0.0,51733.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21555.416666666668,3,0,3_0,3_1 -9028,5.0,8.0,39.0,112,43,31,0.0,8138,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1786.609915891661,0.0,0.0,28205.0,1,2,8,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,28205.0,4,0,4_0,4_0 -9029,1.0,1.0,47.0,112,43,33,1.0,8139,0.0,300.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2002.3411870578964,0.0,19200.0,52719.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,29288.333333333332,5,0,5,5_1 -9030,5.0,8.0,57.0,111,48,71,0.0,8140,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2449.6032255329856,0.0,0.0,19350.0,1,1,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,12900.0,2,0,2_0,2_0 -9031,6.0,7.0,44.0,120,45,50,0.0,8141,0.0,150.0,50.0,0.0,2.0,7.0,3.0,5.0,2.4,1567.835992370501,2340.0,0.0,39134.0,1,1,0,3.0,4,5.0,0.0,1.0,0,1,0,0,0,0,2.0,2.0,16305.833333333334,2,0,2_0,2_0 -9032,14.0,15.0,48.0,300,67,71,0.0,8142,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2664.587537142156,411.0,0.0,20586.0,4,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13724.0,2,0,2_0,2_1 -9033,9.0,9.0,49.0,111,43,33,0.0,8144,0.0,0.0,99999.0,0.0,1.0,1.0,0.0,1.0,1.0,2156.6505512059207,1638.0,0.0,27607.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,27607.0,4,0,4_0,4_0 -9034,2.0,2.0,57.0,111,33,20,0.0,8146,0.0,0.0,150.0,0.0,2.0,5.0,0.0,2.0,1.5,2590.803068526926,0.0,0.0,91001.0,1,2,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,60667.333333333336,5,0,5,5_0 -9035,12.0,12.0,81.0,111,74,70,0.0,8147,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2590.347374876516,0.0,0.0,40315.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,26876.666666666668,4,0,4_0,4_0 -9036,0.0,11.0,39.0,111,38,10,0.0,8148,0.0,0.0,600.0,0.0,2.0,5.0,1.0,3.0,1.8,2759.2963106427633,3574.0,0.0,66282.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,36823.333333333336,5,0,5,5_0 -9037,19.0,19.0,71.0,111,75,50,0.0,8149,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2271.7594770795567,1820.0,0.0,22518.0,5,4,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,22518.0,4,0,4_0,4_0 -9038,11.0,11.0,38.0,111,42,43,0.0,8150,0.0,100.0,0.0,399.0,2.0,3.0,1.0,3.0,2.0,3863.4543089586964,2341.0,0.0,40727.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20363.5,3,0,3_0,3_0 -9039,7.0,8.0,72.0,300,78,70,0.0,8151,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1988.953438991401,0.0,0.0,24133.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24133.0,4,0,4_0,4_1 -9040,3.0,7.0,70.0,111,72,70,0.0,8154,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2264.481286391958,227.0,0.0,19958.0,5,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19958.0,3,0,3_0,3_0 -9041,3.0,3.0,53.0,111,52,41,0.0,8158,0.0,120.0,0.0,412.0,1.0,2.0,0.0,1.0,1.0,2921.985150720839,0.0,0.0,26475.0,1,3,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,26475.0,4,0,4_0,4_0 -9042,11.0,16.0,77.0,300,71,71,0.0,8159,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3021.492594214788,0.0,0.0,12870.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12870.0,2,0,2_0,2_1 -9043,12.0,12.0,65.0,111,74,41,0.0,8161,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2062.3179204586895,2704.0,0.0,31095.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,20730.0,3,0,3_0,3_0 -9044,18.0,18.0,75.0,111,78,70,0.0,8162,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4024.6648973523625,0.0,0.0,17346.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,17346.0,3,0,3_0,3_0 -9045,4.0,6.0,46.0,112,37,20,0.0,8163,0.0,710.0,0.0,0.0,2.0,7.0,4.0,6.0,3.3,1310.3328489323555,7913.0,0.0,78923.0,1,2,9,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,23916.060606060608,4,0,4_0,4_1 -9046,7.0,13.0,48.0,400,64,71,0.0,8167,0.0,370.0,270.0,0.0,3.0,5.0,1.0,3.0,2.0,1946.0176556117515,0.0,0.0,36810.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,18405.0,3,0,3_0,3_1 -9047,5.0,5.0,54.0,120,65,71,0.0,8169,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,5500.846532193044,0.0,0.0,24590.0,1,4,0,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,24590.0,4,0,4_0,4_0 -9048,0.0,20.0,31.0,112,63,42,2.0,817,0.0,0.0,200.0,0.0,2.0,5.0,1.0,3.0,1.8,2063.556681208065,4189.0,300.0,35302.0,1,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,19612.222222222223,3,0,3_1,3_1 -9049,6.0,10.0,60.0,212,75,60,0.0,8170,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,5200.38251686857,5668.0,0.0,26480.0,5,1,3,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,17653.333333333332,3,0,3_0,3_1 -9050,5.0,12.0,55.0,111,62,50,0.0,8173,0.0,0.0,200.0,0.0,3.0,5.0,1.0,3.0,2.0,2218.5872521463657,6091.0,0.0,65849.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,32924.5,5,0,5,5_0 -9051,1.0,1.0,56.0,112,33,31,0.0,8176,0.0,300.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,5720.572566504309,3911.0,0.0,36110.0,1,3,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,36110.0,5,0,5,5_0 -9052,2.0,3.0,61.0,300,75,50,0.0,8177,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1834.1897121356317,3250.0,0.0,45120.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30080.0,5,0,5,5_1 -9053,8.0,8.0,64.0,111,77,41,0.0,8179,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2497.958138947953,3120.0,0.0,13644.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13644.0,2,0,2_0,2_0 -9054,0.0,0.0,65.0,111,72,50,0.0,8180,0.0,0.0,0.0,39.0,1.0,2.0,1.0,2.0,1.5,3259.5700054940426,0.0,0.0,21861.0,5,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14574.0,2,0,2_1,2_0 -9055,1.0,3.0,72.0,112,74,71,0.0,8182,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2676.837623593246,0.0,0.0,57408.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38272.0,5,0,5,5_1 -9056,2.0,3.0,59.0,112,38,12,0.0,8184,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1612.9913579740073,0.0,0.0,79352.0,1,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,52901.333333333336,5,0,5,5_1 -9057,6.0,17.0,52.0,120,85,50,0.0,8186,0.0,0.0,280.0,0.0,1.0,4.0,1.0,3.0,2.0,2697.9750702006113,3120.0,0.0,28611.0,5,3,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,14305.5,2,0,2_0,2_0 -9058,0.0,13.0,39.0,111,63,50,2.0,8187,0.0,0.0,0.0,1000.0,2.0,3.0,0.0,2.0,1.5,3344.3130773583193,0.0,1000.0,48774.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32516.0,5,0,5,5_0 -9059,7.0,7.0,59.0,111,68,70,0.0,819,0.0,298.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2924.008518432363,3503.0,0.0,40479.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26986.0,4,0,4_0,4_0 -9060,4.0,14.0,28.0,111,52,41,0.0,8191,0.0,0.0,0.0,703.0,2.0,4.0,2.0,4.0,2.1,3722.2738999904964,1948.0,0.0,26140.0,4,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,12447.619047619048,1,0,1_0,1_0 -9061,4.0,10.0,43.0,111,64,41,0.0,8192,0.0,0.0,0.0,863.0,2.0,3.0,1.0,3.0,1.8,5939.624966950568,0.0,0.0,52877.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29376.11111111111,5,0,5,5_0 -9062,0.0,0.0,93.0,111,75,33,0.0,8193,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3076.3134053531094,0.0,0.0,10436.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10436.0,1,0,1_1,1_0 -9063,6.0,11.0,32.0,111,47,20,0.0,8194,0.0,0.0,0.0,350.0,1.0,3.0,1.0,3.0,1.8,2431.5521774288777,1560.0,0.0,25280.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,14044.444444444443,2,0,2_0,2_0 -9064,8.0,13.0,57.0,112,75,50,0.0,8196,0.0,550.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,2977.258767747089,2600.0,0.0,58491.0,5,1,7,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,0.0,4.0,23396.4,4,0,4_0,4_1 -9065,0.0,0.0,41.0,111,85,50,0.0,8197,0.0,0.0,0.0,134.0,0.0,2.0,0.0,1.0,1.0,2561.5321730555147,0.0,0.0,13164.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13164.0,2,0,2_1,2_0 -9066,7.0,7.0,54.0,120,13,50,0.0,8199,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1054.057611537206,0.0,0.0,57155.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38103.333333333336,5,0,5,5_1 -9067,4.0,12.0,32.0,111,34,20,0.0,820,0.0,150.0,40.0,0.0,2.0,6.0,2.0,4.0,2.1,1415.1564333283864,0.0,0.0,52671.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,25081.42857142857,4,0,4_0,4_0 -9068,0.0,0.0,48.0,111,62,71,2.0,8200,0.0,192.0,0.0,300.0,1.0,5.0,1.0,2.0,1.3,2993.6299694028708,0.0,1400.0,24610.0,1,3,5,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18930.76923076923,3,0,3_0,3_0 -9069,4.0,7.0,44.0,111,46,12,0.0,8201,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,2.4,1177.3040929193794,1456.0,0.0,57472.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23946.666666666668,4,0,4_0,4_0 -9070,2.0,7.0,36.0,300,47,50,0.0,8203,0.0,280.0,0.0,443.0,2.0,4.0,2.0,4.0,2.5,825.7385213295098,1560.0,0.0,37773.0,1,3,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,15109.2,2,0,2_0,2_0 -9071,8.0,24.0,56.0,112,56,50,0.0,8204,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1566.951109494124,0.0,0.0,49132.0,1,4,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,32754.666666666668,5,0,5,5_1 -9072,0.0,11.0,23.0,221,34,20,0.0,8206,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5725.431977889153,1987.0,0.0,19719.0,1,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19719.0,3,0,3_0,3_0 -9073,2.0,7.0,23.0,111,63,31,0.0,8207,0.0,0.0,0.0,520.0,2.0,3.0,0.0,2.0,1.5,3182.276415613234,2761.0,0.0,29469.0,1,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19646.0,3,0,3_0,3_0 -9074,0.0,0.0,36.0,111,31,10,0.0,821,0.0,0.0,0.0,513.0,1.0,2.0,0.0,1.0,1.0,3742.791965732613,0.0,0.0,27564.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27564.0,4,0,4_0,4_0 -9075,6.0,11.0,35.0,120,67,71,0.0,8210,0.0,390.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2357.1247066360957,4056.0,0.0,24122.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,13401.111111111111,2,0,2_0,2_0 -9076,2.0,5.0,32.0,111,48,20,0.0,8211,0.0,140.0,0.0,486.0,1.0,2.0,0.0,1.0,1.0,4524.665364377046,2268.0,0.0,30616.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,30616.0,5,0,5,5_0 -9077,0.0,0.0,65.0,111,75,20,1.0,8212,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2937.463830193064,2168.0,10800.0,39539.0,5,1,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26359.333333333332,4,0,4_0,4_0 -9078,11.0,11.0,35.0,112,38,31,0.0,8214,0.0,50.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1960.0995507607759,0.0,0.0,51528.0,1,2,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24537.142857142855,4,0,4_0,4_0 -9079,0.0,0.0,22.0,111,53,60,0.0,8219,0.0,0.0,0.0,520.0,1.0,2.0,0.0,2.0,1.5,3669.568413724059,1716.0,0.0,21305.0,1,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14203.333333333334,2,0,2_0,2_0 -9080,0.0,0.0,36.0,111,85,71,0.0,822,0.0,0.0,0.0,81.0,0.0,5.0,3.0,4.0,1.9,3248.8084697011977,0.0,0.0,18724.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9854.736842105263,1,0,1_1,1_0 -9081,5.0,10.0,54.0,112,62,50,0.0,8220,0.0,500.0,150.0,0.0,2.0,4.0,2.0,4.0,2.5,2262.944418670336,7021.0,0.0,31346.0,1,1,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,12538.4,1,0,1_0,1_1 -9082,4.0,5.0,47.0,111,48,50,0.0,8222,0.0,99999.0,180.0,1403.0,3.0,4.0,2.0,4.0,2.5,3532.99631940693,0.0,0.0,38203.0,1,3,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,15281.2,2,0,2_0,2_0 -9083,1.0,10.0,43.0,111,67,71,0.0,8223,0.0,0.0,0.0,175.0,1.0,4.0,0.0,1.0,1.0,3360.2175953845517,0.0,0.0,12598.0,4,3,3,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12598.0,2,0,2_1,2_0 -9084,8.0,8.0,40.0,300,34,12,0.0,8224,0.0,99999.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1518.8655036639104,0.0,0.0,53020.0,1,2,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,53020.0,5,0,5,5_1 -9085,9.0,11.0,65.0,111,78,70,0.0,8225,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4010.747479713333,1308.0,0.0,20258.0,5,3,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13505.333333333334,2,0,2_0,2_0 -9086,1.0,20.0,60.0,112,56,70,0.0,8227,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2227.5836570572824,1924.0,0.0,34603.0,5,2,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23068.666666666668,4,0,4_0,4_1 -9087,0.0,11.0,55.0,111,21,71,0.0,8228,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3242.5690632153237,2653.0,0.0,14296.0,4,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,14296.0,2,0,2_1,2_0 -9088,11.0,21.0,71.0,221,77,71,0.0,823,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3776.9791617032893,1791.0,0.0,21396.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,14264.0,2,0,2_0,2_0 -9089,5.0,10.0,34.0,111,38,10,0.0,8230,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2691.1506377135815,0.0,0.0,63444.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,35246.666666666664,5,0,5,5_0 -9090,2.0,5.0,40.0,221,48,71,0.0,8231,0.0,0.0,70.0,0.0,1.0,5.0,2.0,4.0,2.1,7436.106787685905,1820.0,0.0,35700.0,1,2,1,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,17000.0,3,0,3_0,3_0 -9091,1.0,4.0,50.0,120,34,20,2.0,8232,0.0,300.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2292.1695766805665,3120.0,12000.0,30730.0,1,2,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,30730.0,5,0,5,5_1 -9092,9.0,13.0,51.0,111,67,50,0.0,8233,0.0,0.0,0.0,0.0,2.0,6.0,4.0,6.0,3.3,1829.7126928020728,3120.0,0.0,48050.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,14560.606060606062,2,0,2_1,2_0 -9093,11.0,15.0,58.0,111,23,71,0.0,8234,0.0,0.0,300.0,0.0,2.0,5.0,1.0,3.0,2.0,3410.2312922962114,5980.0,0.0,118712.0,1,1,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,3.0,0.0,59356.0,5,0,5,5_0 -9094,2.0,2.0,62.0,112,75,41,0.0,8236,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3487.1609301752305,2109.0,0.0,36990.0,5,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24660.0,4,0,4_0,4_0 -9095,1.0,19.0,75.0,400,86,71,2.0,8237,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,5056.9248194696065,2704.0,13000.0,28350.0,5,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18900.0,3,0,3_0,3_1 -9096,0.0,9.0,23.0,112,62,50,0.0,8239,0.0,550.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3004.5280693188483,0.0,0.0,17983.0,1,2,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,17983.0,3,0,3_0,3_1 -9097,3.0,24.0,45.0,111,47,50,0.0,8241,0.0,0.0,120.0,175.0,1.0,2.0,1.0,2.0,1.5,3093.8588929670245,1040.0,0.0,19630.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,13086.666666666666,2,0,2_1,2_0 -9098,5.0,5.0,57.0,112,38,42,0.0,8242,0.0,350.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1583.7179838870743,2412.0,0.0,64556.0,1,1,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,32278.0,5,0,5,5_1 -9099,0.0,0.0,41.0,211,37,10,0.0,8244,0.0,1500.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,4485.814406481235,0.0,0.0,70636.0,1,2,2,3.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,39242.22222222222,5,0,5,5_0 -9100,9.0,9.0,55.0,111,56,60,0.0,8246,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1760.882731789908,0.0,0.0,26111.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17407.333333333332,3,0,3_0,3_0 -9101,0.0,0.0,46.0,111,85,71,0.0,8247,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.8,2815.635488973005,0.0,0.0,14990.0,7,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8327.777777777777,1,0,1_1,1_0 -9102,0.0,0.0,45.0,111,85,60,0.0,8248,0.0,0.0,0.0,0.0,0.0,5.0,2.0,3.0,1.6,1775.2706696337752,0.0,0.0,18060.0,7,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11287.5,1,0,1_1,1_0 -9103,5.0,7.0,39.0,111,38,20,0.0,8249,0.0,80.0,0.0,0.0,2.0,8.0,4.0,6.0,2.7,1235.3923540310736,0.0,0.0,66203.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24519.629629629628,4,0,4_0,4_0 -9104,1.0,2.0,52.0,300,63,50,2.0,825,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1142.139137421521,2995.0,20150.0,59193.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,32885.0,5,0,5,5_1 -9105,0.0,1.0,58.0,111,37,10,0.0,8250,0.0,99999.0,0.0,0.0,3.0,8.0,1.0,3.0,2.0,1894.373243518947,2774.0,0.0,126711.0,1,1,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,63355.5,5,0,5,5_0 -9106,0.0,0.0,30.0,111,37,10,0.0,8251,0.0,0.0,0.0,890.0,2.0,3.0,0.0,2.0,1.5,2964.506691722979,0.0,0.0,66256.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,44170.666666666664,5,0,5,5_0 -9107,2.0,9.0,53.0,111,63,71,0.0,8252,0.0,0.0,99999.0,0.0,2.0,3.0,1.0,2.0,1.5,3346.489956568553,1560.0,0.0,16543.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,11028.666666666666,1,0,1_1,1_0 -9108,4.0,4.0,73.0,111,74,60,0.0,8253,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3673.749956723952,5096.0,0.0,39224.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,26149.333333333332,4,0,4_0,4_0 -9109,2.0,20.0,46.0,120,56,71,0.0,8254,0.0,100.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,2539.401453043228,1040.0,0.0,18691.0,1,1,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,10383.888888888889,1,0,1_1,1_1 -9110,14.0,14.0,38.0,111,46,31,0.0,8255,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1569.0257701443945,4914.0,0.0,51738.0,1,2,7,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,24637.142857142855,4,0,4_0,4_0 -9111,3.0,3.0,58.0,211,46,71,0.0,8256,0.0,700.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1630.383923036688,3380.0,0.0,28613.0,1,1,3,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,19075.333333333332,3,0,3_0,3_0 -9112,4.0,4.0,82.0,120,75,50,0.0,8258,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4125.404712561889,0.0,0.0,27520.0,5,1,0,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18346.666666666668,3,0,3_0,3_0 -9113,2.0,2.0,74.0,112,77,50,0.0,8259,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2091.6324190959,0.0,0.0,37395.0,5,4,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,37395.0,5,0,5,5_0 -9114,4.0,7.0,64.0,111,62,71,0.0,8260,0.0,300.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2559.3476157560444,12065.0,0.0,37354.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,14941.6,2,0,2_0,2_0 -9115,0.0,0.0,37.0,111,63,41,0.0,8262,0.0,0.0,0.0,0.0,1.0,2.0,2.0,4.0,2.1,2962.1505354592346,0.0,0.0,22572.0,1,4,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10748.571428571428,1,0,1_0,1_0 -9116,9.0,9.0,51.0,112,54,60,0.0,8264,0.0,0.0,360.0,0.0,1.0,3.0,0.0,1.0,1.0,3503.983398510973,2860.0,0.0,26063.0,1,2,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,26063.0,4,0,4_0,4_1 -9117,7.0,9.0,49.0,221,47,31,0.0,8265,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,5612.8929318609025,4420.0,0.0,47961.0,1,1,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19184.4,3,0,3_0,3_0 -9118,1.0,5.0,54.0,112,54,50,0.0,8267,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,921.7289567297042,0.0,0.0,28273.0,1,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18848.666666666668,3,0,3_0,3_0 -9119,0.0,5.0,35.0,111,45,10,0.0,8268,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3653.293790103053,0.0,0.0,27458.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27458.0,4,0,4_0,4_0 -9120,1.0,3.0,27.0,120,37,12,2.0,8269,400.0,150.0,0.0,700.0,2.0,3.0,0.0,2.0,1.5,1827.2301712097708,1066.0,8900.0,62532.0,1,3,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,41688.0,5,0,5,5_0 -9121,0.0,0.0,43.0,111,37,10,0.0,827,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2972.3904957229174,0.0,0.0,33954.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33954.0,5,0,5,5_0 -9122,14.0,14.0,80.0,111,78,71,0.0,8270,0.0,0.0,0.0,400.0,0.0,3.0,0.0,2.0,1.5,3621.794781813257,0.0,0.0,18669.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12446.0,1,0,1_0,1_0 -9123,4.0,4.0,74.0,111,74,12,0.0,8272,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1793.575106664903,4243.0,0.0,53315.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,35543.333333333336,5,0,5,5_0 -9124,3.0,8.0,67.0,111,78,50,0.0,8274,0.0,0.0,0.0,380.0,0.0,3.0,0.0,2.0,1.5,3356.318693973904,0.0,0.0,30840.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20560.0,3,0,3_0,3_0 -9125,0.0,0.0,20.0,111,84,41,0.0,8275,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3537.6136912278553,0.0,0.0,3547.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,3547.0,1,0,1_1,1_0 -9126,0.0,0.0,37.0,111,68,71,0.0,8276,0.0,0.0,0.0,420.0,1.0,3.0,3.0,4.0,2.1,5809.854119239192,0.0,0.0,40924.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,19487.619047619046,3,0,3_1,3_0 -9127,0.0,0.0,21.0,111,84,41,0.0,8277,0.0,0.0,0.0,273.0,1.0,3.0,0.0,2.0,1.5,3581.8654093781875,0.0,0.0,22161.0,3,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14774.0,2,0,2_1,2_0 -9128,23.0,24.0,62.0,112,78,50,0.0,8279,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2446.6032347443866,0.0,0.0,29638.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19758.666666666668,3,0,3_0,3_1 -9129,13.0,13.0,67.0,111,75,50,0.0,8282,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2271.086760837989,0.0,0.0,21907.0,6,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,21907.0,4,0,4_0,4_0 -9130,0.0,21.0,21.0,111,81,31,0.0,8283,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,3715.217732145532,0.0,0.0,11720.0,4,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,7813.333333333333,1,0,1_1,1_0 -9131,1.0,13.0,38.0,111,42,41,0.0,8284,0.0,200.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,1340.8670811776265,0.0,0.0,25346.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,13340.0,2,0,2_0,2_0 -9132,1.0,1.0,58.0,221,78,50,0.0,8286,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1488.5607747354788,2756.0,0.0,35458.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23638.666666666668,4,0,4_0,4_0 -9133,1.0,8.0,52.0,111,46,60,2.0,8289,0.0,150.0,0.0,324.0,1.0,1.0,0.0,1.0,1.0,3568.123676118435,0.0,9000.0,21283.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21283.0,3,0,3_0,3_0 -9134,8.0,8.0,63.0,111,75,20,0.0,829,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1983.5137628005918,0.0,0.0,44769.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,44769.0,5,0,5,5_0 -9135,1.0,2.0,29.0,111,37,10,0.0,8291,0.0,0.0,100.0,733.0,1.0,2.0,0.0,1.0,1.0,3372.2348915915795,0.0,0.0,32213.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,32213.0,5,0,5,5_0 -9136,10.0,11.0,36.0,111,62,50,0.0,8292,0.0,0.0,200.0,0.0,2.0,5.0,3.0,5.0,2.4,1104.192112307574,1834.0,0.0,31776.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,13240.0,2,0,2_1,2_0 -9137,0.0,0.0,36.0,111,54,42,0.0,8293,0.0,0.0,0.0,604.0,1.0,3.0,0.0,1.0,1.0,2925.0332210666584,0.0,0.0,15884.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15884.0,2,0,2_1,2_0 -9138,5.0,5.0,64.0,112,21,50,0.0,8295,0.0,0.0,100.0,0.0,2.0,6.0,0.0,2.0,1.5,1782.3227476624452,0.0,0.0,137956.0,1,1,8,1.0,3,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,91970.66666666667,5,0,5,5_0 -9139,6.0,6.0,57.0,400,77,71,0.0,8298,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2227.9222055898285,0.0,0.0,34220.0,5,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17110.0,3,0,3_0,3_1 -9140,18.0,18.0,57.0,111,47,20,0.0,8299,0.0,400.0,40.0,0.0,2.0,6.0,0.0,2.0,1.5,1183.7634678231648,5836.0,0.0,62030.0,1,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,41353.333333333336,5,0,5,5_0 -9141,8.0,8.0,70.0,300,71,50,0.0,83,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1403.7804186460166,3826.0,0.0,23102.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15401.333333333334,2,0,2_0,2_1 -9142,0.0,4.0,44.0,111,37,31,0.0,830,0.0,400.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,2765.9662374979507,0.0,0.0,64158.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,35643.333333333336,5,0,5,5_0 -9143,0.0,0.0,22.0,111,84,20,0.0,8300,0.0,0.0,0.0,238.0,0.0,2.0,0.0,1.0,1.0,3444.821195216305,0.0,0.0,2165.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2165.0,1,0,1_1,1_0 -9144,0.0,0.0,48.0,111,68,50,0.0,8302,0.0,0.0,0.0,234.0,1.0,3.0,0.0,1.0,1.0,1539.3437648993115,0.0,0.0,20437.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20437.0,3,0,3_0,3_0 -9145,20.0,23.0,47.0,212,11,71,0.0,8304,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2095.781114264381,0.0,0.0,26407.0,1,1,3,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,2.0,0.0,17604.666666666668,3,0,3_0,3_1 -9146,0.0,0.0,46.0,111,63,71,2.0,8305,0.0,150.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,3691.7064925604222,0.0,14800.0,32300.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12423.076923076922,1,0,1_1,1_0 -9147,0.0,19.0,56.0,300,67,71,0.0,8307,0.0,0.0,50.0,0.0,1.0,6.0,0.0,1.0,1.0,2201.3463583084376,1040.0,0.0,14050.0,4,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14050.0,2,0,2_0,2_1 -9148,1.0,8.0,48.0,111,63,33,0.0,8309,0.0,99999.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,2889.346142288,2080.0,0.0,31150.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,14833.333333333332,2,0,2_0,2_0 -9149,2.0,7.0,40.0,111,43,33,0.0,831,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2797.656480762628,0.0,0.0,58166.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,25289.565217391308,4,0,4_0,4_0 -9150,5.0,5.0,58.0,111,46,60,0.0,8310,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1044.7100583831343,0.0,0.0,29723.0,1,1,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14861.5,2,0,2_0,2_0 -9151,2.0,2.0,63.0,112,75,60,0.0,8312,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1331.9747624671581,2860.0,0.0,34580.0,5,1,8,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23053.333333333332,4,0,4_0,4_0 -9152,2.0,2.0,48.0,300,62,50,0.0,8313,0.0,0.0,202.0,0.0,2.0,3.0,1.0,3.0,2.0,1897.6285741597524,2600.0,0.0,33215.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,16607.5,2,0,2_0,2_1 -9153,4.0,8.0,49.0,221,63,60,0.0,8314,0.0,0.0,0.0,418.0,2.0,4.0,1.0,3.0,1.8,2824.5475288391845,0.0,0.0,28777.0,4,3,1,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15987.222222222223,2,0,2_0,2_0 -9154,0.0,16.0,18.0,111,84,41,0.0,8315,0.0,0.0,140.0,161.0,0.0,2.0,0.0,1.0,1.0,3559.868914620441,2093.0,0.0,12353.0,3,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,12353.0,1,0,1_1,1_0 -9155,12.0,12.0,78.0,111,78,70,0.0,8318,0.0,0.0,0.0,496.0,0.0,3.0,0.0,2.0,1.5,2105.676428137089,3901.0,0.0,29108.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19405.333333333332,3,0,3_0,3_0 -9156,11.0,16.0,86.0,300,71,71,0.0,832,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1042.408250674816,0.0,0.0,19721.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,13147.333333333334,2,0,2_0,2_1 -9157,5.0,5.0,71.0,111,77,41,0.0,8320,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2595.4743310204494,0.0,0.0,27298.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27298.0,4,0,4_0,4_0 -9158,4.0,18.0,33.0,111,84,10,0.0,8321,0.0,0.0,45.0,131.0,0.0,1.0,0.0,1.0,1.0,2665.0237726780742,1040.0,0.0,1908.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,1908.0,1,0,1_1,1_0 -9159,0.0,0.0,27.0,111,37,31,0.0,8323,0.0,0.0,0.0,485.0,1.0,2.0,0.0,1.0,1.0,3631.0574160946935,0.0,0.0,28416.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28416.0,4,0,4_0,4_0 -9160,0.0,15.0,56.0,111,56,30,0.0,8324,0.0,0.0,0.0,350.0,1.0,1.0,0.0,1.0,1.0,3093.41107821008,0.0,0.0,17410.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,17410.0,3,0,3_1,3_0 -9161,6.0,9.0,53.0,112,67,71,0.0,8325,0.0,201498.0,0.0,0.0,4.0,5.0,3.0,6.0,3.3,2871.2773492610563,3120.0,0.0,82526.0,1,2,7,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,25007.878787878788,4,0,4_0,4_1 -9162,4.0,5.0,35.0,111,37,10,0.0,8328,0.0,120.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2959.140489144118,0.0,0.0,58909.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,32727.222222222223,5,0,5,5_0 -9163,3.0,3.0,55.0,400,13,50,0.0,8329,0.0,1300.0,0.0,0.0,2.0,8.0,1.0,4.0,2.5,1394.1321577047725,3068.0,0.0,40206.0,1,1,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16082.4,2,0,2_0,2_1 -9164,3.0,3.0,56.0,111,46,41,0.0,833,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3109.0259458262835,0.0,0.0,32598.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,21732.0,4,0,4_0,4_0 -9165,6.0,12.0,37.0,112,47,50,0.0,8331,0.0,0.0,150.0,0.0,2.0,5.0,4.0,6.0,2.9,1619.3981159984676,5541.0,0.0,31397.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,10826.551724137931,1,0,1_1,1_1 -9166,0.0,0.0,86.0,111,77,70,0.0,8332,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3822.8718097930555,0.0,0.0,20668.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20668.0,3,0,3_0,3_0 -9167,7.0,8.0,53.0,111,43,50,0.0,8333,0.0,14.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2943.2773184450252,0.0,0.0,20959.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20959.0,3,0,3_0,3_0 -9168,0.0,0.0,27.0,111,43,33,1.0,8334,0.0,200.0,20.0,0.0,2.0,6.0,1.0,3.0,1.8,2823.652870853118,1573.0,12700.0,42420.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23566.666666666668,4,0,4_0,4_0 -9169,3.0,13.0,57.0,120,67,50,0.0,8338,0.0,0.0,0.0,400.0,1.0,3.0,0.0,1.0,1.0,2160.9243558614994,1561.0,0.0,13860.0,1,3,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,13860.0,2,0,2_0,2_1 -9170,2.0,2.0,67.0,111,75,41,0.0,8339,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1844.4372737874905,1040.0,0.0,21750.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14500.0,2,0,2_0,2_0 -9171,0.0,0.0,44.0,111,56,41,0.0,8341,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,3388.5255631240643,0.0,0.0,43880.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17552.0,3,0,3_0,3_0 -9172,0.0,17.0,68.0,221,75,50,0.0,8342,0.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,2.0,1443.1082389234969,0.0,0.0,48567.0,5,1,1,2.0,5,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,24283.5,4,0,4_0,4_0 -9173,0.0,0.0,47.0,111,52,50,0.0,8343,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,929.3817244399572,0.0,0.0,23090.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10039.13043478261,1,0,1_1,1_0 -9174,7.0,8.0,48.0,120,21,41,0.0,8345,0.0,0.0,0.0,0.0,1.0,8.0,9.0,11.0,4.6,1035.4027334410557,3882.0,0.0,28927.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,6288.478260869566,1,0,1_0,1_1 -9175,10.0,14.0,31.0,111,37,10,0.0,8349,0.0,0.0,0.0,400.0,1.0,1.0,0.0,1.0,1.0,3179.2561564071843,0.0,0.0,19301.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,19301.0,3,0,3_1,3_0 -9176,7.0,7.0,63.0,112,75,50,0.0,835,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2335.298098529092,0.0,0.0,22955.0,5,1,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22955.0,4,0,4_0,4_0 -9177,2.0,15.0,65.0,400,75,70,0.0,8351,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2727.425909714067,0.0,0.0,15820.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15820.0,2,0,2_0,2_1 -9178,3.0,30.0,65.0,221,71,50,0.0,8354,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1236.7978284652847,3250.0,0.0,38840.0,5,1,1,3.0,3,4.0,0.0,0.0,0,1,0,0,0,0,2.0,2.0,25893.333333333332,4,0,4_0,4_0 -9179,3.0,5.0,37.0,112,33,10,0.0,8355,0.0,200.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1148.1412032372539,1561.0,0.0,30196.0,1,3,8,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18872.5,3,0,3_0,3_0 -9180,5.0,24.0,33.0,112,54,42,0.0,8356,0.0,800.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2090.2840606746795,4213.0,0.0,28100.0,1,2,7,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,18733.333333333332,3,0,3_0,3_1 -9181,2.0,2.0,55.0,120,22,50,0.0,8357,0.0,99999.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1457.1509570757132,0.0,0.0,29946.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19964.0,3,0,3_0,3_1 -9182,3.0,3.0,54.0,112,43,33,0.0,8358,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1765.8933811935424,6201.0,0.0,92053.0,1,1,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,46026.5,5,0,5,5_1 -9183,4.0,8.0,65.0,120,72,60,0.0,8359,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,5277.318436099185,2340.0,0.0,31091.0,5,1,0,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20727.333333333332,3,0,3_0,3_0 -9184,0.0,0.0,43.0,111,52,43,0.0,836,0.0,0.0,0.0,184.0,2.0,4.0,2.0,4.0,2.3,3076.355527790129,0.0,0.0,24380.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10600.0,1,0,1_1,1_0 -9185,16.0,16.0,83.0,112,77,60,0.0,8360,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2284.900151817831,0.0,0.0,59114.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,39409.333333333336,5,0,5,5_1 -9186,5.0,16.0,80.0,111,78,50,0.0,8362,0.0,0.0,0.0,449.0,0.0,3.0,0.0,2.0,1.5,2692.9197235853762,0.0,0.0,31945.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,21296.666666666668,3,0,3_0,3_0 -9187,1.0,1.0,53.0,111,62,50,1.0,8365,0.0,850.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1048.213058925041,5657.0,21000.0,56636.0,1,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,37757.333333333336,5,0,5,5_0 -9188,9.0,9.0,59.0,112,78,50,0.0,8367,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2660.8673834445217,0.0,0.0,28363.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18908.666666666668,3,0,3_0,3_1 -9189,0.0,0.0,61.0,111,77,70,0.0,8368,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2291.423832779139,0.0,0.0,19960.0,5,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19960.0,3,0,3_0,3_0 -9190,13.0,21.0,33.0,112,46,12,0.0,837,0.0,300.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,2483.5196164411195,2971.0,0.0,34371.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16367.142857142857,2,0,2_0,2_1 -9191,0.0,13.0,65.0,112,74,50,0.0,8370,0.0,0.0,970.0,0.0,1.0,7.0,1.0,3.0,2.0,912.3120808113046,5356.0,0.0,38501.0,5,1,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,19250.5,3,0,3_0,3_0 -9192,8.0,8.0,47.0,111,46,60,0.0,8372,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,3025.649164790385,0.0,0.0,4773.0,4,4,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,3671.5384615384614,1,0,1_0,1_0 -9193,4.0,6.0,67.0,111,75,20,0.0,8373,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3194.990639311785,0.0,0.0,29148.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29148.0,5,0,5,5_0 -9194,2.0,10.0,20.0,111,52,33,0.0,8375,0.0,0.0,0.0,407.0,2.0,3.0,0.0,2.0,1.5,3543.2609191686192,0.0,0.0,21664.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,14442.666666666666,2,0,2_1,2_0 -9195,17.0,17.0,63.0,111,72,50,0.0,8376,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5945.5526638818565,0.0,0.0,16373.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16373.0,2,0,2_0,2_0 -9196,3.0,13.0,59.0,112,74,44,0.0,8379,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2950.484435849666,6552.0,0.0,27949.0,5,2,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18632.666666666668,3,0,3_0,3_1 -9197,0.0,0.0,71.0,111,78,71,0.0,838,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2903.153370904095,0.0,0.0,10014.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10014.0,1,0,1_0,1_0 -9198,2.0,2.0,54.0,300,35,20,0.0,8381,0.0,150.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2133.619547070756,2234.0,0.0,23940.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23940.0,4,0,4_0,4_1 -9199,7.0,10.0,55.0,112,54,60,0.0,8382,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1294.1529136202746,2610.0,0.0,33026.0,4,1,6,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22017.333333333332,4,0,4_0,4_0 -9200,1.0,12.0,56.0,112,62,71,0.0,8385,0.0,1000.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2920.0342379761087,2132.0,0.0,35698.0,1,2,8,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,23798.666666666668,4,0,4_0,4_1 -9201,3.0,6.0,59.0,300,13,71,0.0,8386,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3466.228486160867,0.0,0.0,10647.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10647.0,1,0,1_0,1_1 -9202,5.0,11.0,42.0,112,65,50,0.0,8388,0.0,0.0,450.0,0.0,2.0,4.0,1.0,3.0,1.8,2733.746945494388,0.0,0.0,45645.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,25358.333333333332,4,0,4_0,4_1 -9203,12.0,15.0,65.0,400,72,50,0.0,839,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1606.9897805332764,6570.0,0.0,29970.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19980.0,3,0,3_0,3_0 -9204,8.0,8.0,79.0,111,74,30,0.0,8390,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3009.0794847791167,0.0,0.0,34127.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34127.0,5,0,5,5_0 -9205,1.0,2.0,55.0,111,77,60,1.0,8394,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2255.7568752564102,0.0,19870.0,56560.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,37706.666666666664,5,0,5,5_0 -9206,9.0,10.0,45.0,221,38,20,0.0,8396,0.0,310.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3104.759117855186,3901.0,0.0,54902.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,26143.809523809523,4,0,4_0,4_0 -9207,6.0,11.0,65.0,111,75,50,0.0,8398,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1131.2274853694005,0.0,0.0,35416.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23610.666666666668,4,0,4_0,4_0 -9208,12.0,12.0,72.0,111,78,70,0.0,84,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1717.573062199089,0.0,0.0,30397.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20264.666666666668,3,0,3_0,3_0 -9209,9.0,9.0,71.0,111,78,70,0.0,8400,0.0,0.0,0.0,241.0,0.0,3.0,0.0,2.0,1.5,2287.8127799161434,0.0,0.0,30701.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20467.333333333332,3,0,3_0,3_0 -9210,11.0,11.0,66.0,221,77,50,0.0,8401,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3631.872946598457,0.0,0.0,28829.0,5,4,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28829.0,4,0,4_0,4_0 -9211,6.0,16.0,60.0,111,37,50,0.0,8403,0.0,550.0,5.0,0.0,2.0,6.0,0.0,2.0,1.5,2939.626814954622,0.0,0.0,83652.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,55768.0,5,0,5,5_0 -9212,5.0,7.0,42.0,112,38,20,0.0,8404,0.0,230.0,100.0,0.0,2.0,6.0,1.0,3.0,1.8,1361.841257578962,0.0,0.0,48595.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,26997.222222222223,4,0,4_0,4_0 -9213,21.0,26.0,70.0,300,78,70,0.0,8405,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1659.6865688589237,4685.0,0.0,25753.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17168.666666666668,3,0,3_0,3_1 -9214,0.0,0.0,71.0,400,71,71,0.0,8406,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3026.377641102081,0.0,0.0,8535.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8535.0,1,0,1_0,1_1 -9215,1.0,1.0,66.0,111,78,50,0.0,8407,0.0,0.0,0.0,492.0,0.0,3.0,0.0,2.0,1.5,2783.98499764439,0.0,0.0,43255.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,28836.666666666668,4,0,4_0,4_0 -9216,2.0,14.0,44.0,112,55,50,0.0,8408,0.0,250.0,332.0,0.0,2.0,5.0,3.0,5.0,2.6,898.1432863848164,0.0,0.0,52107.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,20041.153846153844,3,0,3_1,3_1 -9217,11.0,21.0,23.0,111,62,50,0.0,841,0.0,0.0,99999.0,0.0,1.0,2.0,1.0,2.0,1.5,1573.689886014971,0.0,0.0,15194.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,10129.333333333334,1,0,1_1,1_0 -9218,1.0,1.0,70.0,400,71,50,0.0,8412,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1033.29239962143,5979.0,0.0,77908.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,51938.666666666664,5,0,5,5_1 -9219,10.0,10.0,65.0,221,78,71,0.0,8413,0.0,0.0,0.0,22.0,0.0,3.0,2.0,4.0,2.1,7815.079298599795,1300.0,0.0,22644.0,5,3,1,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,10782.857142857143,1,0,1_1,1_0 -9220,4.0,12.0,48.0,111,85,71,0.0,8414,0.0,0.0,0.0,0.0,1.0,3.0,3.0,6.0,3.3,1777.350702687045,0.0,0.0,25540.0,7,4,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,7739.39393939394,1,0,1_0,1_0 -9221,1.0,1.0,56.0,112,47,42,1.0,8415,0.0,795.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,4062.3787477234873,3484.0,28000.0,50113.0,1,1,5,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,33408.666666666664,5,0,5,5_1 -9222,6.0,6.0,65.0,111,74,12,0.0,8417,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3470.1193319695194,0.0,0.0,67742.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,67742.0,5,0,5,5_0 -9223,2.0,2.0,81.0,111,74,50,0.0,8418,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1733.792244523137,0.0,0.0,30178.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20118.666666666668,3,0,3_0,3_0 -9224,1.0,12.0,44.0,112,53,50,2.0,8419,0.0,100.0,60.0,0.0,2.0,5.0,2.0,4.0,2.3,4765.720751257099,2420.0,1000.0,49308.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,21438.26086956522,3,0,3_0,3_0 -9225,0.0,0.0,87.0,112,86,71,0.0,842,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3085.595744160519,0.0,0.0,14929.0,6,3,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14929.0,2,0,2_1,2_1 -9226,29.0,30.0,77.0,112,77,50,0.0,8420,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1627.7201481554287,0.0,0.0,10840.0,5,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,10840.0,1,0,1_0,1_0 -9227,4.0,4.0,48.0,111,62,50,0.0,8421,0.0,0.0,0.0,295.0,2.0,3.0,3.0,5.0,2.6,2641.152685231278,0.0,0.0,26179.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,10068.846153846154,1,0,1_1,1_0 -9228,0.0,0.0,47.0,111,56,71,0.0,8422,0.0,0.0,0.0,382.0,2.0,4.0,3.0,5.0,2.6,3013.7178890076907,0.0,0.0,48410.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18619.23076923077,3,0,3_0,3_0 -9229,1.0,12.0,26.0,111,46,31,0.0,8423,0.0,0.0,80.0,432.0,1.0,2.0,0.0,1.0,1.0,3421.3371905252816,0.0,0.0,34441.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,34441.0,5,0,5,5_0 -9230,1.0,1.0,58.0,112,75,60,1.0,8424,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2770.6151470743193,6240.0,13500.0,38478.0,5,1,9,2.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,25652.0,4,0,4_0,4_0 -9231,6.0,7.0,65.0,111,77,70,0.0,8425,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2087.6338372353125,2178.0,0.0,33772.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22514.666666666668,4,0,4_0,4_0 -9232,0.0,0.0,94.0,111,75,31,0.0,8426,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3579.3464716989106,0.0,0.0,35609.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,35609.0,5,0,5,5_0 -9233,5.0,10.0,56.0,400,69,71,0.0,8429,0.0,128.0,775.0,0.0,2.0,5.0,0.0,2.0,1.5,2499.6966251671897,3058.0,0.0,29990.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19993.333333333332,3,0,3_0,3_1 -9234,7.0,23.0,25.0,111,45,31,0.0,843,0.0,100.0,0.0,312.0,2.0,3.0,0.0,2.0,1.5,4626.166772474811,0.0,0.0,32665.0,1,3,10,8.0,3,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,21776.666666666668,4,0,4_0,4_0 -9235,10.0,12.0,48.0,112,68,71,0.0,8430,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,4494.146699685386,1040.0,0.0,38440.0,1,3,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18304.761904761905,3,0,3_0,3_1 -9236,0.0,0.0,35.0,111,68,43,0.0,8431,0.0,0.0,0.0,314.0,1.0,3.0,0.0,1.0,1.0,2684.6001507446394,0.0,0.0,16558.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16558.0,2,0,2_0,2_0 -9237,0.0,1.0,50.0,111,38,31,0.0,8432,0.0,300.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1956.3613273173914,0.0,0.0,37429.0,1,3,6,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,37429.0,5,0,5,5_0 -9238,7.0,12.0,52.0,300,55,70,0.0,8434,0.0,120.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1555.7500842286292,1092.0,0.0,11342.0,4,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,11342.0,1,0,1_1,1_1 -9239,11.0,13.0,50.0,221,62,50,0.0,8436,0.0,99999.0,0.0,450.0,2.0,5.0,3.0,5.0,2.6,2453.9878518354467,0.0,0.0,41661.0,1,3,1,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16023.461538461537,2,0,2_0,2_0 -9240,0.0,11.0,19.0,111,84,31,0.0,8437,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3146.3495262495453,3933.0,0.0,341.0,3,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,341.0,1,0,1_1,1_0 -9241,5.0,5.0,38.0,112,38,12,0.0,8438,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,5073.895229353855,0.0,0.0,48302.0,1,2,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,26834.444444444445,4,0,4_0,4_0 -9242,2.0,12.0,24.0,112,62,50,0.0,8439,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3621.4605751954546,0.0,0.0,11255.0,1,3,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11255.0,1,0,1_0,1_1 -9243,1.0,5.0,46.0,111,22,43,2.0,844,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,4596.907594074727,0.0,8500.0,31356.0,1,4,5,4.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,14931.42857142857,2,0,2_0,2_0 -9244,0.0,0.0,29.0,300,35,20,0.0,8440,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2007.9290800460228,0.0,0.0,34072.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,34072.0,5,0,5,5_1 -9245,4.0,4.0,59.0,211,75,50,0.0,8441,0.0,0.0,200.0,0.0,1.0,4.0,2.0,4.0,2.3,1612.361859201905,0.0,0.0,45040.0,5,3,2,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19582.608695652176,3,0,3_0,3_0 -9246,5.0,6.0,45.0,111,52,60,0.0,8443,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1430.7255416682976,1040.0,0.0,38608.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16786.08695652174,2,0,2_0,2_0 -9247,0.0,0.0,28.0,111,63,50,0.0,8444,0.0,0.0,0.0,620.0,1.0,1.0,0.0,1.0,1.0,4381.209325419944,0.0,0.0,9300.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9300.0,1,0,1_0,1_0 -9248,6.0,8.0,72.0,221,77,70,0.0,8445,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1068.0542500696333,2049.0,0.0,14830.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14830.0,2,0,2_0,2_0 -9249,21.0,21.0,42.0,112,52,50,0.0,8446,0.0,40.0,0.0,0.0,2.0,6.0,4.0,6.0,2.9,844.1321216596506,3120.0,0.0,26956.0,1,2,8,2.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,9295.172413793103,1,0,1_1,1_0 -9250,0.0,0.0,58.0,111,67,70,0.0,8447,0.0,0.0,0.0,26.0,1.0,1.0,0.0,1.0,1.0,2609.848494608803,0.0,0.0,15770.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15770.0,2,0,2_1,2_0 -9251,10.0,10.0,50.0,300,63,50,0.0,8448,0.0,250.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1892.9546720227797,3849.0,0.0,16590.0,1,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16590.0,2,0,2_0,2_1 -9252,3.0,5.0,42.0,111,47,42,0.0,845,0.0,99999.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,2981.7179662227027,0.0,0.0,65327.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,28403.04347826087,4,0,4_0,4_0 -9253,11.0,11.0,53.0,111,37,42,0.0,8450,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2674.4153185872624,0.0,0.0,45777.0,1,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,30518.0,5,0,5,5_0 -9254,1.0,5.0,49.0,112,46,50,2.0,8453,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4556.893693825872,2883.0,7500.0,13597.0,4,3,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13597.0,2,0,2_0,2_0 -9255,3.0,4.0,60.0,111,34,20,0.0,8455,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3043.629152290729,0.0,0.0,75614.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,50409.333333333336,5,0,5,5_0 -9256,0.0,0.0,32.0,112,34,31,1.0,8458,0.0,250.0,50.0,0.0,2.0,4.0,1.0,3.0,1.8,5672.254282576971,3121.0,24000.0,31670.0,1,1,8,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17594.444444444445,3,0,3_0,3_0 -9257,0.0,18.0,36.0,111,35,10,0.0,8463,0.0,0.0,0.0,254.0,1.0,4.0,2.0,3.0,1.6,1354.0186508669835,1304.0,0.0,23383.0,1,3,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,14614.375,2,0,2_1,2_0 -9258,0.0,2.0,28.0,111,31,10,0.0,8464,0.0,0.0,0.0,380.0,1.0,2.0,0.0,1.0,1.0,3821.2511250208345,1577.0,0.0,303586.0,1,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,303586.0,5,0,5,5_0 -9259,1.0,11.0,71.0,111,35,42,2.0,8465,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2340.5491472689046,2677.0,3500.0,21100.0,5,4,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,14066.666666666666,2,0,2_0,2_0 -9260,5.0,5.0,59.0,111,33,12,0.0,8466,0.0,140.0,100.0,0.0,1.0,6.0,1.0,2.0,1.5,3506.2436732920205,3120.0,0.0,36124.0,1,1,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,24082.666666666668,4,0,4_0,4_0 -9261,7.0,7.0,71.0,111,78,70,0.0,8467,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3054.6167046246046,0.0,0.0,25904.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,17269.333333333332,3,0,3_0,3_0 -9262,4.0,4.0,46.0,111,45,50,0.0,8468,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3272.2791663089706,2600.0,0.0,57404.0,1,2,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,24958.26086956522,4,0,4_0,4_0 -9263,1.0,2.0,60.0,111,75,50,2.0,8469,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1993.3823350436166,1729.0,22000.0,64785.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,43190.0,5,0,5,5_0 -9264,0.0,0.0,24.0,111,34,10,0.0,847,0.0,0.0,0.0,661.0,1.0,2.0,0.0,2.0,1.5,4281.28888052856,0.0,0.0,29935.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,19956.666666666668,3,0,3_1,3_0 -9265,0.0,0.0,70.0,120,75,50,1.0,8471,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4146.170771054526,6821.0,25000.0,27480.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18320.0,3,0,3_0,3_1 -9266,0.0,0.0,76.0,111,86,71,0.0,8472,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4200.518944275187,0.0,0.0,18694.0,6,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18694.0,3,0,3_0,3_0 -9267,5.0,10.0,70.0,120,72,71,0.0,8473,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2987.6485700330527,0.0,0.0,35021.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,35021.0,5,0,5,5_0 -9268,9.0,13.0,43.0,111,42,60,0.0,8475,0.0,0.0,0.0,361.0,1.0,3.0,1.0,2.0,1.3,3029.688670407414,0.0,0.0,17678.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13598.461538461537,2,0,2_1,2_0 -9269,2.0,2.0,51.0,112,62,50,0.0,8479,0.0,1000.0,0.0,0.0,2.0,6.0,2.0,3.0,2.0,1176.6484699884659,2194.0,0.0,35976.0,1,1,7,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17988.0,3,0,3_0,3_1 -9270,4.0,7.0,62.0,111,78,50,0.0,848,0.0,0.0,300.0,0.0,2.0,5.0,1.0,3.0,2.0,1201.5097919061798,4381.0,0.0,34323.0,5,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,17161.5,3,0,3_0,3_0 -9271,13.0,13.0,71.0,111,77,50,0.0,8480,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1414.5418181365058,0.0,0.0,27594.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27594.0,4,0,4_0,4_0 -9272,0.0,0.0,54.0,300,56,71,0.0,8481,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3052.4378970967996,0.0,0.0,22784.0,1,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15189.333333333334,2,0,2_0,2_1 -9273,10.0,10.0,49.0,111,38,31,0.0,8482,0.0,0.0,80.0,0.0,1.0,6.0,0.0,2.0,1.5,3054.357977686487,2543.0,0.0,75717.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,50478.0,5,0,5,5_0 -9274,0.0,2.0,35.0,111,37,12,0.0,8483,0.0,400.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3439.3684903656485,0.0,0.0,68522.0,1,2,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,38067.777777777774,5,0,5,5_0 -9275,0.0,13.0,26.0,111,46,20,0.0,8484,0.0,0.0,120.0,450.0,2.0,2.0,0.0,2.0,1.5,5132.8551891339575,2236.0,0.0,36047.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,24031.333333333332,4,0,4_0,4_0 -9276,11.0,11.0,83.0,112,74,50,0.0,8485,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1375.836825238826,0.0,0.0,34978.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23318.666666666668,4,0,4_0,4_1 -9277,5.0,5.0,63.0,112,46,50,0.0,8489,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2213.577634397402,0.0,0.0,65695.0,1,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,43796.666666666664,5,0,5,5_1 -9278,15.0,15.0,73.0,111,78,71,0.0,849,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2754.995027462342,3380.0,0.0,30317.0,5,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,20211.333333333332,3,0,3_0,3_0 -9279,14.0,14.0,76.0,111,72,50,0.0,8490,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4897.281661210593,1040.0,0.0,5706.0,5,4,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,3804.0,1,0,1_0,1_0 -9280,1.0,10.0,47.0,300,54,50,0.0,8491,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1080.634815689213,3536.0,0.0,39502.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,26334.666666666668,4,0,4_0,4_1 -9281,0.0,0.0,34.0,111,52,20,0.0,8492,0.0,0.0,0.0,32.0,1.0,1.0,0.0,1.0,1.0,3641.759355662838,0.0,0.0,17386.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17386.0,3,0,3_1,3_0 -9282,7.0,12.0,58.0,112,34,10,0.0,8493,0.0,400.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,972.3239002823798,3329.0,0.0,101886.0,1,1,6,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,67924.0,5,0,5,5_0 -9283,1.0,15.0,47.0,221,63,50,0.0,8494,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1350.3946670328198,0.0,0.0,35204.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19557.777777777777,3,0,3_0,3_0 -9284,13.0,13.0,33.0,111,38,12,0.0,8497,0.0,320.0,100.0,952.0,2.0,3.0,1.0,3.0,1.8,2653.1867390307234,2959.0,0.0,50579.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,28099.444444444445,4,0,4_0,4_0 -9285,4.0,11.0,43.0,111,34,31,0.0,8499,0.0,600.0,150.0,0.0,2.0,5.0,2.0,4.0,2.1,2060.396111003912,2600.0,0.0,53402.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,25429.52380952381,4,0,4_0,4_0 -9286,3.0,13.0,34.0,111,52,33,0.0,8501,0.0,40.0,0.0,0.0,1.0,5.0,4.0,6.0,2.9,1370.334637835068,1040.0,0.0,30030.0,1,3,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,10355.172413793103,1,0,1_1,1_0 -9287,4.0,6.0,31.0,111,54,10,0.0,8502,0.0,200.0,0.0,315.0,2.0,3.0,0.0,2.0,1.5,2126.708141160739,5902.0,0.0,21765.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,14510.0,2,0,2_1,2_0 -9288,0.0,5.0,26.0,111,48,43,0.0,8503,0.0,0.0,0.0,400.0,2.0,3.0,1.0,3.0,1.8,3544.866868063218,0.0,0.0,25018.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,13898.888888888889,2,0,2_0,2_0 -9289,9.0,9.0,54.0,111,37,31,0.0,8504,0.0,0.0,40.0,0.0,3.0,5.0,2.0,4.0,2.5,1020.374071294062,3120.0,0.0,78092.0,1,2,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,31236.8,5,0,5,5_0 -9290,1.0,4.0,27.0,111,54,31,0.0,8505,0.0,500.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3794.7284699000425,3162.0,0.0,10214.0,2,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,10214.0,1,0,1_0,1_0 -9291,0.0,0.0,73.0,111,78,71,0.0,8506,0.0,0.0,0.0,355.0,0.0,3.0,0.0,1.0,1.0,2993.9484460706603,0.0,0.0,15638.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15638.0,2,0,2_0,2_0 -9292,4.0,16.0,80.0,111,75,41,0.0,8509,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3638.883400900959,1560.0,0.0,36193.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,36193.0,5,0,5,5_0 -9293,9.0,12.0,69.0,120,77,71,0.0,851,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3485.7307643666777,0.0,0.0,13240.0,5,3,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13240.0,2,0,2_0,2_0 -9294,11.0,11.0,63.0,111,74,42,0.0,8511,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1878.2062456459923,1560.0,0.0,34945.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,23296.666666666668,4,0,4_0,4_0 -9295,4.0,4.0,62.0,111,77,50,0.0,8512,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1420.4569195517731,0.0,0.0,27671.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,18447.333333333332,3,0,3_0,3_0 -9296,5.0,5.0,50.0,111,67,50,0.0,8513,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1903.729835375162,0.0,0.0,35958.0,1,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23972.0,4,0,4_0,4_0 -9297,12.0,12.0,62.0,112,77,70,0.0,8515,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4365.081952162668,0.0,0.0,19725.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19725.0,3,0,3_0,3_1 -9298,9.0,12.0,57.0,111,35,41,0.0,8516,0.0,300.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1960.2329250286941,3380.0,0.0,61135.0,1,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,40756.666666666664,5,0,5,5_0 -9299,1.0,7.0,53.0,221,65,71,0.0,8518,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,4066.560829615933,0.0,0.0,26379.0,1,2,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,13189.5,2,0,2_0,2_0 -9300,0.0,0.0,36.0,111,85,71,0.0,8519,0.0,0.0,0.0,21.0,0.0,3.0,1.0,2.0,1.3,3563.065569034694,0.0,0.0,11970.0,7,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9207.692307692307,1,0,1_1,1_0 -9301,12.0,16.0,47.0,111,46,42,0.0,852,0.0,99999.0,199998.0,0.0,2.0,7.0,3.0,5.0,2.8,1432.0321025175958,5478.0,0.0,72290.0,1,1,7,5.0,4,4.0,0.0,1.0,0,0,1,0,0,0,3.0,1.0,25817.857142857145,4,0,4_0,4_0 -9302,0.0,0.0,80.0,221,86,71,0.0,8520,0.0,0.0,0.0,197.0,0.0,2.0,0.0,1.0,1.0,3375.1043956252665,0.0,0.0,11257.0,5,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11257.0,1,0,1_1,1_0 -9303,0.0,16.0,23.0,111,46,42,0.0,8521,0.0,0.0,0.0,195.0,1.0,3.0,0.0,1.0,1.0,3480.139396735656,2600.0,0.0,16669.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,16669.0,2,0,2_1,2_0 -9304,5.0,5.0,61.0,211,74,10,0.0,8523,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3549.358104745725,0.0,0.0,55836.0,5,1,3,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,55836.0,5,0,5,5_0 -9305,1.0,6.0,56.0,300,34,41,2.0,8524,0.0,400.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1624.1477165885176,5121.0,10000.0,42325.0,1,2,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,28216.666666666668,4,0,4_0,4_1 -9306,0.0,0.0,82.0,111,77,71,0.0,8526,0.0,0.0,0.0,258.0,0.0,2.0,0.0,1.0,1.0,3546.0611432274295,0.0,0.0,21653.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21653.0,3,0,3_0,3_0 -9307,9.0,9.0,70.0,112,74,31,0.0,8527,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3965.924257402194,0.0,0.0,38689.0,5,1,8,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25792.666666666668,4,0,4_0,4_0 -9308,0.0,0.0,87.0,221,77,70,0.0,853,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3999.6495399080663,0.0,0.0,12546.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12546.0,1,0,1_1,1_0 -9309,3.0,5.0,66.0,221,21,70,0.0,8531,0.0,70.0,70.0,0.0,2.0,3.0,1.0,3.0,2.0,4538.037344132039,3640.0,0.0,21550.0,1,1,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,10775.0,1,0,1_0,1_0 -9310,12.0,12.0,91.0,111,72,70,0.0,8533,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2797.6157112526507,0.0,0.0,13985.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13985.0,2,0,2_0,2_0 -9311,13.0,13.0,37.0,400,52,71,0.0,8534,0.0,0.0,45.0,0.0,1.0,3.0,1.0,2.0,1.3,2964.2949441099004,1560.0,0.0,17279.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,13291.538461538461,2,0,2_1,2_1 -9312,1.0,11.0,29.0,111,46,31,2.0,8535,0.0,0.0,0.0,725.0,2.0,3.0,0.0,2.0,1.5,3647.786155434235,2384.0,2000.0,37545.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,25030.0,4,0,4_0,4_0 -9313,4.0,4.0,59.0,111,34,10,0.0,8536,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1535.6041803472913,0.0,0.0,168023.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,112015.33333333333,5,0,5,5_0 -9314,3.0,5.0,37.0,112,43,33,0.0,8538,0.0,0.0,200.0,0.0,1.0,4.0,2.0,4.0,2.1,2632.295914977593,0.0,0.0,29630.0,1,3,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,14109.52380952381,2,0,2_1,2_1 -9315,7.0,7.0,41.0,300,34,41,0.0,854,0.0,500.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2196.7174469890206,7364.0,0.0,30010.0,1,2,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,20006.666666666668,3,0,3_0,3_1 -9316,13.0,16.0,58.0,112,46,44,0.0,8540,0.0,0.0,800.0,0.0,3.0,6.0,1.0,3.0,2.0,1371.8272616541478,2647.0,0.0,44548.0,1,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,22274.0,4,0,4_0,4_1 -9317,1.0,1.0,69.0,211,75,20,1.0,8541,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1340.8800945719,4165.0,16000.0,47669.0,5,1,2,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,47669.0,5,0,5,5_0 -9318,8.0,8.0,50.0,111,38,12,0.0,8543,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2394.204409228584,1976.0,0.0,73612.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29444.8,5,0,5,5_0 -9319,8.0,8.0,43.0,112,54,60,0.0,8544,0.0,250.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2588.4437955953845,2085.0,0.0,22562.0,1,2,7,4.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15041.333333333334,2,0,2_0,2_0 -9320,5.0,6.0,74.0,221,86,71,0.0,8546,0.0,150.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2799.810489195264,0.0,0.0,26447.0,5,1,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17631.333333333332,3,0,3_0,3_0 -9321,0.0,21.0,61.0,211,77,70,0.0,8547,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1038.6539945760783,2653.0,0.0,23045.0,5,1,3,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11522.5,1,0,1_0,1_0 -9322,2.0,6.0,41.0,112,38,50,0.0,8549,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2081.877803532511,1820.0,0.0,46080.0,1,4,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23040.0,4,0,4_0,4_0 -9323,4.0,17.0,49.0,112,64,50,0.0,8550,0.0,195.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2775.990096418717,0.0,0.0,41478.0,1,2,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,41478.0,5,0,5,5_0 -9324,9.0,13.0,59.0,300,78,71,0.0,8552,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2671.9447369939485,0.0,0.0,18504.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18504.0,3,0,3_0,3_0 -9325,5.0,7.0,50.0,120,65,70,0.0,8554,0.0,80.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1946.7118454236468,3557.0,0.0,46520.0,1,1,0,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,23260.0,4,0,4_0,4_0 -9326,1.0,1.0,46.0,112,52,71,2.0,8559,0.0,0.0,300.0,0.0,2.0,3.0,1.0,3.0,2.0,3641.942563311188,0.0,8000.0,34562.0,1,2,5,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,17281.0,3,0,3_0,3_1 -9327,1.0,1.0,85.0,400,71,70,0.0,856,0.0,0.0,0.0,0.0,0.0,9.0,0.0,1.0,1.0,2499.8791229695325,0.0,0.0,13312.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13312.0,2,0,2_0,2_1 -9328,1.0,6.0,36.0,112,38,12,2.0,8560,0.0,750.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1462.1183208405607,0.0,19000.0,67314.0,1,1,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,32054.285714285714,5,0,5,5_1 -9329,0.0,0.0,41.0,111,85,71,0.0,8566,0.0,0.0,0.0,12.0,0.0,1.0,0.0,1.0,1.0,3607.261804739025,0.0,0.0,11894.0,7,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11894.0,1,0,1_1,1_0 -9330,0.0,0.0,46.0,111,56,71,0.0,8568,0.0,0.0,0.0,0.0,1.0,4.0,5.0,7.0,3.6,3101.3377354648655,0.0,0.0,42276.0,4,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11743.333333333334,1,0,1_1,1_0 -9331,2.0,12.0,52.0,111,52,71,0.0,8569,0.0,0.0,0.0,295.0,1.0,3.0,0.0,1.0,1.0,2898.2518186159064,0.0,0.0,12021.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,12021.0,1,0,1_1,1_0 -9332,0.0,0.0,70.0,111,74,44,0.0,857,0.0,0.0,0.0,495.0,0.0,2.0,0.0,1.0,1.0,6476.800743168811,0.0,0.0,29903.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29903.0,5,0,5,5_0 -9333,8.0,8.0,77.0,112,77,70,0.0,8570,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1223.7247579160169,3779.0,0.0,23691.0,5,1,8,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,15794.0,2,0,2_0,2_0 -9334,1.0,1.0,34.0,111,37,12,1.0,8571,0.0,40.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1774.6921572059491,0.0,26000.0,101527.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,56403.88888888889,5,0,5,5_0 -9335,7.0,8.0,35.0,111,37,30,0.0,8572,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3173.5805465297385,0.0,0.0,76498.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,42498.88888888889,5,0,5,5_0 -9336,1.0,1.0,79.0,111,78,71,1.0,8573,0.0,0.0,0.0,176.0,0.0,3.0,0.0,1.0,1.0,3596.762706359713,0.0,12610.0,15054.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,15054.0,2,0,2_1,2_0 -9337,14.0,14.0,42.0,120,43,10,0.0,8576,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,3568.574311118895,0.0,0.0,20477.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12798.125,2,0,2_0,2_1 -9338,2.0,6.0,39.0,111,63,43,0.0,8577,0.0,1330.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2702.118584454808,6612.0,0.0,43105.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18741.304347826088,3,0,3_0,3_0 -9339,0.0,0.0,64.0,111,77,71,0.0,8578,0.0,0.0,0.0,417.0,0.0,3.0,0.0,2.0,1.5,5250.977435859713,0.0,0.0,25940.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17293.333333333332,3,0,3_0,3_0 -9340,7.0,9.0,46.0,120,34,10,0.0,8579,0.0,199998.0,0.0,0.0,2.0,9.0,4.0,6.0,3.3,1017.9626121534944,3900.0,0.0,71580.0,1,2,0,3.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,21690.909090909092,3,0,3_0,3_0 -9341,6.0,6.0,44.0,111,34,31,0.0,858,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2907.234884208605,3034.0,0.0,113459.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,63032.777777777774,5,0,5,5_0 -9342,2.0,5.0,36.0,300,42,20,0.0,8581,0.0,300.0,0.0,0.0,1.0,6.0,3.0,4.0,1.9,1185.1510430677984,1593.0,0.0,32228.0,1,2,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16962.105263157897,3,0,3_0,3_1 -9343,0.0,12.0,52.0,111,21,50,0.0,8583,0.0,0.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,2851.4325287159295,0.0,0.0,6450.0,1,4,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,4300.0,1,0,1_0,1_0 -9344,3.0,3.0,41.0,400,54,50,0.0,8584,0.0,20.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2588.5823764406646,0.0,0.0,24894.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24894.0,4,0,4_0,4_1 -9345,1.0,15.0,47.0,111,37,60,2.0,8585,0.0,0.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,1359.5737603968196,0.0,950.0,45776.0,1,4,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,30517.333333333332,5,0,5,5_0 -9346,13.0,13.0,37.0,112,52,20,0.0,8588,0.0,99999.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.1,1995.0205464481235,0.0,0.0,20760.0,1,3,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,9885.714285714284,1,0,1_1,1_0 -9347,5.0,15.0,63.0,111,72,43,0.0,8590,0.0,0.0,0.0,385.0,0.0,2.0,0.0,1.0,1.0,3066.3250630325683,0.0,0.0,11720.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11720.0,1,0,1_1,1_0 -9348,13.0,13.0,55.0,111,42,41,0.0,8592,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1813.2001101956564,3802.0,0.0,59390.0,1,1,6,4.0,3,4.0,0.0,0.0,0,0,1,0,0,0,0.0,4.0,39593.333333333336,5,0,5,5_0 -9349,0.0,0.0,71.0,111,75,44,0.0,8594,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3552.988481740316,0.0,0.0,22896.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22896.0,4,0,4_0,4_0 -9350,11.0,17.0,45.0,111,68,60,0.0,8596,0.0,0.0,300.0,0.0,1.0,5.0,2.0,3.0,2.0,2615.748161931211,0.0,0.0,29646.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,14823.0,2,0,2_1,2_0 -9351,1.0,7.0,40.0,111,52,71,0.0,8598,0.0,150.0,6.0,333.0,2.0,4.0,3.0,5.0,2.6,1716.941439810463,1050.0,0.0,36049.0,1,3,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,1,1.0,2.0,13865.0,2,0,2_1,2_0 -9352,2.0,2.0,53.0,112,42,71,0.0,8599,0.0,0.0,980.0,0.0,2.0,4.0,0.0,2.0,1.5,2345.9618823240125,520.0,0.0,35760.0,1,1,10,0.0,5,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,23840.0,4,0,4_0,4_1 -9353,0.0,11.0,41.0,111,37,10,0.0,86,0.0,150.0,8000.0,0.0,2.0,7.0,2.0,4.0,2.1,1643.264617536659,2790.0,0.0,49010.0,4,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,23338.095238095237,4,0,4_0,4_0 -9354,3.0,8.0,51.0,111,67,71,0.0,860,0.0,0.0,0.0,0.0,3.0,6.0,0.0,4.0,2.5,3109.815707883152,0.0,0.0,89753.0,1,2,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,35901.2,5,0,5,5_0 -9355,3.0,10.0,84.0,112,74,50,0.0,8601,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1866.2908532679,0.0,0.0,41803.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,41803.0,5,0,5,5_1 -9356,1.0,1.0,58.0,300,67,70,1.0,8602,0.0,0.0,130.0,0.0,1.0,4.0,0.0,1.0,1.0,1817.3739293625283,1872.0,12200.0,22114.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,22114.0,4,0,4_0,4_1 -9357,5.0,11.0,62.0,111,52,71,0.0,8604,0.0,0.0,150.0,581.0,1.0,3.0,0.0,1.0,1.0,3996.587447101714,0.0,0.0,20184.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,20184.0,3,0,3_1,3_0 -9358,5.0,22.0,34.0,112,53,60,0.0,8605,0.0,0.0,214.0,0.0,2.0,3.0,0.0,2.0,1.5,2331.291966062498,1286.0,0.0,60776.0,1,2,9,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,40517.333333333336,5,0,5,5_0 -9359,10.0,20.0,22.0,111,62,60,0.0,8606,0.0,0.0,10.0,188.0,1.0,4.0,0.0,1.0,1.0,3522.3392307204726,0.0,0.0,15171.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,15171.0,2,0,2_0,2_0 -9360,4.0,7.0,45.0,112,48,50,0.0,8608,0.0,300.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2043.07163918518,4160.0,0.0,47550.0,1,2,6,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,19020.0,3,0,3_0,3_1 -9361,2.0,19.0,57.0,112,77,60,0.0,861,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2941.816792567069,3122.0,0.0,18236.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,12157.333333333334,1,0,1_0,1_0 -9362,3.0,11.0,46.0,111,52,71,0.0,8612,0.0,100014.0,0.0,490.0,3.0,4.0,3.0,4.0,2.3,2038.0886011175905,0.0,0.0,33915.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,14745.652173913044,2,0,2_0,2_0 -9363,11.0,16.0,46.0,120,65,50,0.0,8613,0.0,550.0,60.0,0.0,2.0,4.0,2.0,4.0,2.5,1018.2051224594387,0.0,0.0,69233.0,1,2,0,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,27693.2,4,0,4_0,4_0 -9364,9.0,9.0,74.0,112,71,50,0.0,8614,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3646.293649268098,1560.0,0.0,33971.0,5,1,8,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22647.333333333332,4,0,4_0,4_1 -9365,6.0,6.0,68.0,211,71,70,0.0,8615,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1937.3752879318154,780.0,0.0,8697.0,5,1,2,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,8697.0,1,0,1_0,1_0 -9366,1.0,4.0,23.0,111,64,50,2.0,8616,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3424.2871999253193,1560.0,16500.0,21075.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14050.0,2,0,2_0,2_0 -9367,3.0,3.0,45.0,221,37,10,0.0,8619,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3847.5325490785613,2860.0,0.0,32617.0,1,2,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,32617.0,5,0,5,5_0 -9368,0.0,0.0,55.0,111,46,50,0.0,862,0.0,0.0,0.0,247.0,1.0,3.0,0.0,1.0,1.0,1753.0715325784408,0.0,0.0,14359.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14359.0,2,0,2_0,2_0 -9369,0.0,6.0,38.0,111,56,50,2.0,8620,0.0,120.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1739.9817745704265,0.0,14000.0,33480.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,14556.521739130436,2,0,2_0,2_0 -9370,3.0,10.0,75.0,211,72,50,0.0,8621,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3172.4416149660133,0.0,0.0,25652.0,5,1,3,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,17101.333333333332,3,0,3_0,3_0 -9371,1.0,6.0,54.0,400,64,50,2.0,8622,0.0,299997.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2147.0189005365305,1560.0,6600.0,25916.0,1,1,0,0.0,3,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,17277.333333333332,3,0,3_0,3_1 -9372,7.0,11.0,77.0,211,75,20,0.0,8623,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1934.5648173484374,0.0,0.0,47361.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,31574.0,5,0,5,5_0 -9373,3.0,7.0,32.0,111,38,12,0.0,8625,0.0,0.0,0.0,507.0,1.0,1.0,0.0,1.0,1.0,3251.6957449041543,0.0,0.0,25684.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25684.0,4,0,4_0,4_0 -9374,5.0,7.0,48.0,112,52,50,0.0,8626,0.0,210.0,100.0,0.0,2.0,7.0,3.0,5.0,2.8,1637.9882777267087,6032.0,0.0,31424.0,1,1,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,11222.857142857143,1,0,1_0,1_1 -9375,6.0,13.0,32.0,111,38,31,0.0,8627,0.0,0.0,0.0,670.0,2.0,2.0,0.0,2.0,1.5,3799.468799577334,0.0,0.0,53703.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,35802.0,5,0,5,5_0 -9376,1.0,16.0,48.0,111,64,60,0.0,8628,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4850.449005113434,0.0,0.0,24380.0,1,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,24380.0,4,0,4_0,4_0 -9377,3.0,15.0,34.0,300,47,50,0.0,8629,0.0,348.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2377.0364886513134,0.0,0.0,45588.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21708.571428571428,4,0,4_0,4_1 -9378,1.0,1.0,77.0,112,75,50,1.0,863,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1550.5422371750064,0.0,22000.0,30003.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20002.0,3,0,3_0,3_1 -9379,2.0,3.0,53.0,400,11,50,0.0,8630,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3622.4845695670983,2600.0,0.0,9954.0,1,1,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,6636.0,1,0,1_0,1_1 -9380,0.0,4.0,46.0,112,52,50,0.0,8631,0.0,280.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2775.081796379914,0.0,0.0,48359.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26866.11111111111,4,0,4_0,4_1 -9381,0.0,12.0,21.0,111,84,41,0.0,8633,0.0,0.0,0.0,268.0,0.0,3.0,0.0,2.0,1.5,4129.866053904747,1561.0,0.0,10594.0,3,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,7062.666666666667,1,0,1_1,1_0 -9382,9.0,12.0,39.0,111,64,50,0.0,8634,0.0,85.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2125.7742849240635,1561.0,0.0,20598.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11443.333333333334,1,0,1_1,1_0 -9383,1.0,13.0,48.0,111,56,71,2.0,8635,0.0,0.0,0.0,33.0,1.0,3.0,0.0,1.0,1.0,3350.1014513621953,1560.0,3500.0,13006.0,1,3,8,7.0,1,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,13006.0,2,0,2_1,2_0 -9384,0.0,7.0,42.0,111,67,50,0.0,8636,0.0,80.0,0.0,388.0,1.0,4.0,0.0,1.0,1.0,1357.9210245901218,0.0,0.0,16850.0,4,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16850.0,2,0,2_0,2_0 -9385,10.0,11.0,62.0,400,74,60,0.0,8637,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2775.545795169947,0.0,0.0,43586.0,5,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,29057.333333333332,5,0,5,5_1 -9386,1.0,8.0,26.0,211,69,44,0.0,8638,0.0,300.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2464.245893133482,2496.0,0.0,19860.0,1,3,2,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19860.0,3,0,3_0,3_0 -9387,0.0,0.0,42.0,111,54,71,0.0,8640,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,3059.099365934076,0.0,0.0,15512.0,4,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8617.777777777777,1,0,1_1,1_0 -9388,10.0,21.0,45.0,300,47,42,0.0,8644,0.0,368.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,1336.532988776767,0.0,0.0,40837.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17755.217391304348,3,0,3_0,3_1 -9389,4.0,10.0,80.0,112,77,50,0.0,8645,0.0,0.0,0.0,0.0,0.0,5.0,0.0,3.0,2.0,1121.0617401868626,0.0,0.0,32814.0,5,1,8,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16407.0,2,0,2_0,2_1 -9390,6.0,6.0,53.0,112,52,41,0.0,8647,0.0,0.0,200.0,0.0,1.0,7.0,3.0,5.0,3.0,2320.8447677081167,3692.0,0.0,48671.0,1,1,9,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,16223.666666666666,2,0,2_0,2_0 -9391,12.0,13.0,86.0,300,72,71,0.0,8649,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2071.0413911745827,0.0,0.0,13054.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13054.0,2,0,2_0,2_1 -9392,2.0,2.0,41.0,111,21,50,0.0,865,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1943.2643575945865,0.0,0.0,22756.0,1,3,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,11378.0,1,0,1_0,1_0 -9393,3.0,7.0,57.0,112,54,50,0.0,8651,0.0,200.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1285.8795111502855,4744.0,0.0,67344.0,1,1,8,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,44896.0,5,0,5,5_0 -9394,0.0,7.0,46.0,112,85,50,2.0,8654,0.0,0.0,0.0,0.0,1.0,8.0,3.0,6.0,3.3,2667.048418774854,4940.0,4500.0,17658.0,4,2,7,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,5350.909090909091,1,0,1_0,1_1 -9395,14.0,16.0,63.0,111,75,70,0.0,8656,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2449.0835925359925,3018.0,0.0,34574.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23049.333333333332,4,0,4_0,4_0 -9396,0.0,0.0,39.0,111,56,50,0.0,8657,0.0,0.0,0.0,293.0,1.0,4.0,1.0,2.0,1.3,3513.7338393522896,0.0,0.0,10606.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8158.461538461538,1,0,1_0,1_0 -9397,7.0,13.0,45.0,111,63,71,0.0,8658,0.0,0.0,0.0,450.0,1.0,4.0,0.0,1.0,1.0,2962.472911579689,1040.0,0.0,33368.0,1,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,33368.0,5,0,5,5_0 -9398,7.0,18.0,36.0,112,52,43,0.0,8659,0.0,150.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1927.502363629441,843.0,0.0,34125.0,1,2,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22750.0,4,0,4_0,4_0 -9399,2.0,5.0,34.0,112,53,10,0.0,866,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1551.8650399678816,3169.0,0.0,30337.0,1,4,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20224.666666666668,3,0,3_0,3_1 -9400,0.0,13.0,48.0,112,63,50,0.0,8660,0.0,0.0,250.0,0.0,2.0,4.0,2.0,4.0,2.3,2680.2173461642838,0.0,0.0,28876.0,4,2,7,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,12554.782608695654,1,0,1_0,1_1 -9401,21.0,21.0,85.0,112,71,70,0.0,8662,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2541.9284734910675,0.0,0.0,24999.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16666.0,2,0,2_0,2_1 -9402,0.0,0.0,36.0,111,34,10,0.0,8665,0.0,0.0,0.0,560.0,1.0,1.0,0.0,1.0,1.0,3526.5149594552686,0.0,0.0,31141.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31141.0,5,0,5,5_0 -9403,0.0,0.0,81.0,111,78,71,0.0,8667,0.0,0.0,0.0,154.0,0.0,2.0,0.0,1.0,1.0,2959.706640766733,0.0,0.0,14739.0,5,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14739.0,2,0,2_1,2_0 -9404,4.0,6.0,53.0,400,37,41,0.0,8669,0.0,171.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1986.1024006699677,0.0,0.0,57890.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23156.0,4,0,4_0,4_1 -9405,1.0,1.0,57.0,112,65,31,1.0,8670,1030.0,0.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,1784.637848596308,3306.0,7000.0,44153.0,1,2,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,0.0,17661.2,3,0,3_0,3_1 -9406,6.0,6.0,85.0,112,72,70,0.0,8671,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,2873.249841915022,3061.0,0.0,51784.0,5,1,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,34522.666666666664,5,0,5,5_1 -9407,9.0,21.0,62.0,111,78,70,0.0,8672,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2140.6428243800287,0.0,0.0,11268.0,5,1,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,11268.0,1,0,1_0,1_0 -9408,1.0,1.0,39.0,111,42,31,1.0,8673,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2793.883660503927,2677.0,18000.0,26558.0,1,2,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,26558.0,4,0,4_0,4_0 -9409,11.0,11.0,62.0,112,22,10,0.0,8674,0.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,1.8,2436.1996365633177,3859.0,0.0,10695.0,1,2,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,5941.666666666667,1,0,1_0,1_1 -9410,12.0,12.0,46.0,111,56,70,0.0,8676,0.0,0.0,0.0,323.0,1.0,4.0,1.0,2.0,1.5,2885.301750197813,2080.0,0.0,25113.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,16742.0,2,0,2_1,2_0 -9411,2.0,4.0,32.0,111,43,20,2.0,8677,50.0,0.0,150.0,0.0,2.0,5.0,3.0,5.0,2.4,1116.2385337579628,0.0,7000.0,55640.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,23183.333333333336,4,0,4_0,4_0 -9412,2.0,2.0,51.0,112,47,31,0.0,8678,0.0,365.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2049.034964361292,1751.0,0.0,52425.0,1,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,34950.0,5,0,5,5_1 -9413,10.0,19.0,44.0,112,55,43,0.0,8679,0.0,200.0,200.0,0.0,2.0,5.0,1.0,3.0,1.8,2827.3796514142055,8476.0,0.0,49321.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27400.555555555555,4,0,4_0,4_1 -9414,6.0,26.0,67.0,111,75,50,0.0,868,0.0,0.0,50.0,0.0,1.0,4.0,1.0,3.0,2.0,1078.4993270602442,0.0,0.0,51893.0,5,1,8,6.0,4,3.0,0.0,0.0,0,0,1,0,0,0,3.0,0.0,25946.5,4,0,4_0,4_0 -9415,0.0,0.0,28.0,111,21,60,0.0,8684,0.0,0.0,0.0,487.0,1.0,4.0,2.0,4.0,2.1,3233.2962720755027,0.0,0.0,21686.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10326.666666666666,1,0,1_1,1_0 -9416,0.0,22.0,29.0,211,62,31,0.0,8686,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,3297.601625178777,0.0,0.0,23300.0,1,3,2,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,12944.444444444443,2,0,2_1,2_0 -9417,2.0,2.0,37.0,112,53,42,0.0,8687,0.0,0.0,0.0,0.0,1.0,7.0,2.0,4.0,2.1,2215.647861786483,2352.0,0.0,23937.0,1,2,5,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,11398.571428571428,1,0,1_0,1_1 -9418,10.0,10.0,79.0,111,78,71,0.0,8688,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4896.507026009714,0.0,0.0,41915.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27943.333333333332,4,0,4_0,4_0 -9419,0.0,0.0,85.0,111,77,70,0.0,8689,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2974.8260082229317,0.0,0.0,29730.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29730.0,5,0,5,5_0 -9420,0.0,0.0,80.0,111,72,50,0.0,869,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2444.6710346590776,0.0,0.0,18300.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18300.0,3,0,3_0,3_0 -9421,4.0,6.0,55.0,111,65,60,0.0,8690,0.0,1800.0,70.0,0.0,4.0,4.0,2.0,5.0,3.0,882.373223416265,3383.0,0.0,80283.0,1,1,9,7.0,5,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,26761.0,4,0,4_0,4_0 -9422,6.0,12.0,76.0,111,74,10,0.0,8691,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2339.295993674417,0.0,0.0,101291.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,67527.33333333333,5,0,5,5_0 -9423,12.0,12.0,32.0,111,53,41,0.0,8692,0.0,250.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3023.113388917959,0.0,0.0,27150.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27150.0,4,0,4_0,4_0 -9424,6.0,10.0,60.0,120,78,71,0.0,8693,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2849.386607614528,0.0,0.0,16750.0,5,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,16750.0,2,0,2_1,2_0 -9425,15.0,23.0,72.0,300,71,70,0.0,8694,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1734.6908997328155,0.0,0.0,18040.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12026.666666666666,1,0,1_0,1_1 -9426,2.0,10.0,47.0,111,46,41,0.0,8696,0.0,100299.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,1574.4848007894354,3640.0,0.0,37911.0,1,3,5,4.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18955.5,3,0,3_0,3_0 -9427,4.0,5.0,44.0,112,53,31,0.0,8699,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1739.5933821921983,1649.0,0.0,74388.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,32342.608695652176,5,0,5,5_0 -9428,0.0,13.0,20.0,111,84,41,0.0,8701,0.0,0.0,0.0,0.0,0.0,5.0,0.0,4.0,2.5,3314.1253468305176,5426.0,0.0,5295.0,3,3,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,2118.0,1,0,1_1,1_0 -9429,3.0,11.0,25.0,300,69,43,0.0,8702,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2587.2496379884524,0.0,0.0,23104.0,4,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12835.555555555555,2,0,2_0,2_1 -9430,2.0,8.0,64.0,111,77,50,0.0,8704,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1763.3794452487823,0.0,0.0,20587.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13724.666666666666,2,0,2_0,2_0 -9431,3.0,4.0,36.0,111,37,10,0.0,8705,0.0,700.0,35.0,0.0,2.0,5.0,2.0,4.0,2.1,3706.188285397873,2517.0,0.0,64567.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,30746.190476190473,5,0,5,5_0 -9432,0.0,10.0,23.0,111,84,42,0.0,8707,0.0,0.0,0.0,290.0,0.0,2.0,0.0,1.0,1.0,3074.670543518987,3344.0,0.0,11010.0,3,3,5,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,11010.0,1,0,1_0,1_0 -9433,1.0,3.0,27.0,111,33,43,2.0,8708,0.0,10.0,0.0,313.0,2.0,1.0,0.0,2.0,1.5,3424.778691354148,0.0,16000.0,30730.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20486.666666666668,3,0,3_0,3_0 -9434,7.0,13.0,53.0,112,64,50,0.0,8711,0.0,450.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1010.1773039692346,114.0,0.0,49285.0,1,2,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,32856.666666666664,5,0,5,5_1 -9435,9.0,9.0,70.0,120,78,70,0.0,8715,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4033.298172304123,0.0,0.0,14485.0,5,1,0,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14485.0,2,0,2_0,2_0 -9436,0.0,0.0,65.0,221,65,50,0.0,8716,0.0,0.0,0.0,300.0,1.0,3.0,0.0,1.0,1.0,3352.8103998238025,0.0,0.0,14320.0,6,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14320.0,2,0,2_0,2_0 -9437,0.0,0.0,59.0,111,78,71,0.0,8719,0.0,0.0,0.0,237.0,0.0,3.0,0.0,1.0,1.0,3779.255045592249,0.0,0.0,14798.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14798.0,2,0,2_0,2_0 -9438,4.0,7.0,41.0,300,63,50,0.0,8720,0.0,600.0,150.0,0.0,3.0,5.0,2.0,4.0,2.5,1710.110301424082,4395.0,0.0,34308.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13723.2,2,0,2_0,2_1 -9439,21.0,21.0,86.0,111,78,71,0.0,8723,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4660.617924079082,0.0,0.0,10040.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,10040.0,1,0,1_0,1_0 -9440,7.0,11.0,47.0,111,64,50,0.0,8724,0.0,250.0,0.0,209.0,1.0,4.0,3.0,5.0,2.4,1409.4747959301085,2080.0,0.0,28179.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11741.25,1,0,1_1,1_0 -9441,11.0,11.0,59.0,111,78,71,0.0,8726,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3618.427923850926,0.0,0.0,22350.0,4,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14900.0,2,0,2_0,2_0 -9442,5.0,17.0,54.0,112,43,33,0.0,8727,0.0,84.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,4343.1443926302345,0.0,0.0,48687.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24343.5,4,0,4_0,4_1 -9443,0.0,0.0,77.0,111,71,70,0.0,8728,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1766.7843788620269,0.0,0.0,8761.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8761.0,1,0,1_0,1_0 -9444,12.0,13.0,85.0,111,78,50,0.0,873,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2002.8911269616804,2860.0,0.0,46418.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30945.333333333332,5,0,5,5_0 -9445,0.0,0.0,91.0,111,72,70,0.0,8732,0.0,0.0,0.0,190.0,0.0,2.0,0.0,1.0,1.0,2356.7555367685723,0.0,0.0,12559.0,5,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12559.0,1,0,1_1,1_0 -9446,3.0,14.0,33.0,112,67,71,0.0,8733,0.0,150.0,0.0,338.0,1.0,4.0,2.0,4.0,2.1,5848.076514345056,5200.0,0.0,44336.0,1,3,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21112.38095238095,3,0,3_0,3_0 -9447,6.0,13.0,42.0,221,48,50,0.0,8734,0.0,15.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2123.8862564859246,5200.0,0.0,23618.0,1,3,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,10268.695652173914,1,0,1_1,1_0 -9448,0.0,0.0,84.0,111,77,70,0.0,8736,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3662.448541818761,0.0,0.0,19785.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19785.0,3,0,3_0,3_0 -9449,14.0,14.0,65.0,111,75,41,0.0,8737,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2376.055207089262,2080.0,0.0,43827.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29218.0,5,0,5,5_0 -9450,7.0,9.0,37.0,111,21,50,0.0,8739,0.0,150.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,6161.079286680739,0.0,0.0,54753.0,1,1,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26072.85714285714,4,0,4_0,4_0 -9451,21.0,22.0,89.0,111,75,33,0.0,8740,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2804.477091413431,0.0,0.0,30992.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30992.0,5,0,5,5_0 -9452,0.0,8.0,54.0,111,62,50,2.0,8741,0.0,0.0,100.0,330.0,1.0,2.0,0.0,1.0,1.0,2858.9644228438,780.0,4000.0,18124.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18124.0,3,0,3_0,3_0 -9453,17.0,18.0,81.0,111,77,70,0.0,8742,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1388.3781581695814,0.0,0.0,27430.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18286.666666666668,3,0,3_0,3_0 -9454,1.0,1.0,42.0,300,34,20,1.0,8746,0.0,1144.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1701.0705755442207,4785.0,24308.0,44874.0,1,2,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,29916.0,5,0,5,5_0 -9455,6.0,6.0,52.0,111,46,50,0.0,8747,0.0,100.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,3548.934823792195,5461.0,0.0,57660.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,23064.0,4,0,4_0,4_0 -9456,14.0,26.0,52.0,111,38,31,0.0,8750,0.0,0.0,170.0,0.0,2.0,6.0,0.0,2.0,1.5,2247.1362590472613,0.0,0.0,68589.0,1,2,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,45726.0,5,0,5,5_0 -9457,14.0,15.0,57.0,111,33,12,0.0,8751,0.0,0.0,200.0,0.0,2.0,5.0,0.0,2.0,1.5,1033.6527152566223,2184.0,0.0,78785.0,1,1,6,4.0,3,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,52523.333333333336,5,0,5,5_0 -9458,4.0,4.0,54.0,111,62,50,0.0,8753,0.0,0.0,0.0,490.0,1.0,4.0,1.0,3.0,1.8,2133.365038578381,0.0,0.0,21471.0,1,3,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11928.333333333334,1,0,1_0,1_0 -9459,3.0,6.0,79.0,111,72,70,0.0,8757,0.0,0.0,30.0,426.0,0.0,4.0,0.0,2.0,1.5,3181.5951566025806,1560.0,0.0,25230.0,5,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,16820.0,2,0,2_0,2_0 -9460,6.0,6.0,53.0,111,47,70,0.0,8758,0.0,250.0,0.0,594.0,1.0,3.0,0.0,1.0,1.0,2873.409362927914,3172.0,0.0,34514.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,34514.0,5,0,5,5_0 -9461,7.0,11.0,41.0,112,56,50,0.0,876,0.0,0.0,0.0,600.0,2.0,3.0,2.0,4.0,2.5,6151.015832767993,2549.0,0.0,33370.0,1,3,8,3.0,4,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,13348.0,2,0,2_0,2_0 -9462,13.0,13.0,43.0,112,37,20,0.0,8762,0.0,96.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1821.605955010089,0.0,0.0,64880.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,30895.238095238095,5,0,5,5_1 -9463,8.0,8.0,54.0,111,46,50,0.0,8763,0.0,0.0,240.0,0.0,1.0,4.0,0.0,1.0,1.0,2204.444450506981,0.0,0.0,24452.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24452.0,4,0,4_0,4_0 -9464,4.0,15.0,30.0,112,62,71,0.0,8764,0.0,0.0,300.0,0.0,2.0,4.0,2.0,4.0,2.1,2818.9772431018564,0.0,0.0,31223.0,1,3,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,14868.095238095237,2,0,2_1,2_1 -9465,0.0,0.0,38.0,111,84,71,0.0,8765,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3257.2354356114015,0.0,0.0,8843.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8843.0,1,0,1_1,1_0 -9466,7.0,7.0,76.0,221,72,50,0.0,8766,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,5065.642137340785,1040.0,0.0,26858.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17905.333333333332,3,0,3_0,3_0 -9467,0.0,0.0,22.0,111,56,50,0.0,8770,0.0,0.0,0.0,72.0,1.0,1.0,0.0,1.0,1.0,3901.150507607137,0.0,0.0,6355.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6355.0,1,0,1_1,1_0 -9468,0.0,0.0,51.0,111,54,71,0.0,8772,0.0,0.0,0.0,250.0,1.0,3.0,0.0,1.0,1.0,3015.692756041842,0.0,0.0,15973.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15973.0,2,0,2_0,2_0 -9469,4.0,4.0,37.0,221,21,50,0.0,8775,0.0,375.0,324.0,750.0,2.0,4.0,1.0,3.0,1.8,5161.3472438261315,5054.0,0.0,40523.0,1,3,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,22512.777777777777,4,0,4_0,4_0 -9470,7.0,8.0,46.0,111,38,20,0.0,8776,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,5254.501629632085,0.0,0.0,53381.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25419.52380952381,4,0,4_0,4_0 -9471,15.0,15.0,50.0,111,42,20,0.0,8777,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1159.0113509941593,0.0,0.0,30889.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20592.666666666668,3,0,3_0,3_0 -9472,0.0,0.0,42.0,111,54,20,0.0,878,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3004.376934671947,0.0,0.0,30687.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30687.0,5,0,5,5_0 -9473,0.0,0.0,61.0,221,86,50,0.0,8780,0.0,0.0,0.0,67.0,0.0,3.0,0.0,1.0,1.0,1481.2240615486944,0.0,0.0,9604.0,6,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9604.0,1,0,1_1,1_0 -9474,0.0,7.0,38.0,120,46,41,0.0,8782,0.0,1130.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1678.0678414769295,7801.0,0.0,61732.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,29396.190476190473,5,0,5,5_0 -9475,0.0,2.0,51.0,111,42,60,2.0,8783,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2755.0328920014535,0.0,14000.0,38219.0,1,1,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18199.52380952381,3,0,3_0,3_0 -9476,0.0,39.0,50.0,111,37,12,0.0,8784,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2479.512295522962,0.0,0.0,281441.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,112576.4,5,0,5,5_0 -9477,0.0,0.0,51.0,111,85,70,0.0,8786,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1700.578313697027,0.0,0.0,10132.0,7,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10132.0,1,0,1_0,1_0 -9478,7.0,11.0,40.0,400,64,50,0.0,8787,0.0,300.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1146.8863787428695,0.0,0.0,33682.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14644.347826086958,2,0,2_0,2_1 -9479,0.0,16.0,51.0,112,55,50,0.0,8788,0.0,350.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1201.5746567770238,3640.0,0.0,21353.0,1,2,10,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14235.333333333334,2,0,2_0,2_1 -9480,11.0,11.0,60.0,111,74,10,0.0,8789,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1781.9096747292017,3535.0,0.0,25220.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25220.0,4,0,4_0,4_0 -9481,10.0,10.0,63.0,111,78,70,0.0,879,0.0,0.0,0.0,220.0,0.0,2.0,0.0,1.0,1.0,4922.240712871911,0.0,0.0,13256.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,13256.0,2,0,2_1,2_0 -9482,5.0,7.0,62.0,111,56,31,0.0,8792,0.0,0.0,39.0,0.0,1.0,4.0,0.0,2.0,1.5,3140.555660439847,5082.0,0.0,50950.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,33966.666666666664,5,0,5,5_0 -9483,3.0,7.0,37.0,111,46,60,0.0,8795,0.0,300.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2643.717685525716,133.0,0.0,35664.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27433.846153846152,4,0,4_0,4_0 -9484,0.0,19.0,30.0,300,13,43,0.0,8796,0.0,100.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3373.610021922957,0.0,0.0,26508.0,1,2,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,17672.0,3,0,3_0,3_1 -9485,1.0,1.0,74.0,111,75,41,1.0,8798,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2348.509178929676,2238.0,17000.0,58841.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,39227.333333333336,5,0,5,5_0 -9486,2.0,6.0,30.0,112,46,50,0.0,8799,0.0,700.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3233.228154649307,0.0,0.0,45058.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25032.222222222223,4,0,4_0,4_1 -9487,2.0,11.0,35.0,221,22,43,0.0,88,0.0,199998.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,3691.932872427387,0.0,0.0,16137.0,1,4,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,8965.0,1,0,1_0,1_0 -9488,6.0,12.0,32.0,112,47,31,0.0,880,0.0,730.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2659.6584587847633,6207.0,0.0,46166.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25647.777777777777,4,0,4_0,4_0 -9489,9.0,9.0,65.0,300,43,20,0.0,8800,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1489.7877664837858,0.0,0.0,39630.0,1,3,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,39630.0,5,0,5,5_1 -9490,4.0,11.0,55.0,112,11,50,0.0,8801,0.0,170.0,0.0,0.0,4.0,5.0,3.0,5.0,3.0,1203.4536244168708,0.0,0.0,60855.0,1,1,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,20285.0,3,0,3_0,3_1 -9491,5.0,7.0,37.0,112,42,10,0.0,8802,0.0,480.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1964.7700861962737,6142.0,0.0,63827.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,35459.444444444445,5,0,5,5_1 -9492,10.0,10.0,79.0,111,78,50,0.0,8804,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1562.9676951457316,0.0,0.0,26259.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17506.0,3,0,3_0,3_0 -9493,4.0,10.0,63.0,111,77,41,0.0,8808,0.0,0.0,0.0,490.0,0.0,3.0,0.0,1.0,1.0,2504.8155951466047,0.0,0.0,17755.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17755.0,3,0,3_0,3_0 -9494,0.0,0.0,26.0,111,52,71,0.0,8809,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,4020.6725564233902,0.0,0.0,21780.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9075.0,1,0,1_1,1_0 -9495,3.0,3.0,49.0,111,22,60,0.0,881,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3095.610259332851,2600.0,0.0,7815.0,1,4,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,7815.0,1,0,1_0,1_0 -9496,0.0,0.0,64.0,111,78,70,0.0,8811,0.0,0.0,0.0,113.0,0.0,2.0,0.0,1.0,1.0,2271.644437337468,0.0,0.0,18176.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,18176.0,3,0,3_1,3_0 -9497,4.0,4.0,66.0,112,74,12,0.0,8812,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,934.8029285998024,0.0,0.0,64473.0,5,1,9,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,42982.0,5,0,5,5_0 -9498,11.0,13.0,58.0,111,77,50,0.0,8813,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2825.3529252112203,0.0,0.0,18066.0,5,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,12044.0,1,0,1_0,1_0 -9499,16.0,17.0,71.0,112,74,10,0.0,8814,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2039.3366586846762,1040.0,0.0,32517.0,5,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,32517.0,5,0,5,5_1 -9500,6.0,6.0,56.0,112,67,50,0.0,8815,0.0,0.0,220.0,0.0,1.0,5.0,0.0,2.0,1.5,1162.0569397886143,2157.0,0.0,38671.0,1,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,25780.666666666668,4,0,4_0,4_1 -9501,19.0,19.0,86.0,112,75,70,0.0,8817,0.0,0.0,0.0,0.0,0.0,11.0,1.0,2.0,1.5,1739.5556913201956,1170.0,0.0,44940.0,5,1,6,0.0,2,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,29960.0,5,0,5,5_1 -9502,2.0,13.0,33.0,111,22,50,0.0,882,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,3557.2408242238016,2340.0,0.0,44332.0,1,4,8,7.0,2,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,27707.5,4,0,4_0,4_0 -9503,4.0,4.0,52.0,111,38,20,0.0,8824,0.0,440.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1237.4371686820639,0.0,0.0,109078.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,60598.88888888889,5,0,5,5_0 -9504,2.0,2.0,28.0,111,46,20,0.0,8825,0.0,340.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2283.950077484985,2132.0,0.0,30110.0,1,3,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20073.333333333332,3,0,3_0,3_0 -9505,0.0,6.0,52.0,112,22,71,0.0,8826,0.0,60.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2908.1118285768644,0.0,0.0,45934.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19971.304347826088,3,0,3_0,3_1 -9506,0.0,0.0,30.0,111,52,60,0.0,8827,0.0,0.0,0.0,100.0,1.0,5.0,4.0,5.0,2.2,2388.563676337863,0.0,0.0,29556.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13434.545454545454,2,0,2_1,2_0 -9507,10.0,14.0,80.0,300,78,71,0.0,8828,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2585.3103882580886,1610.0,0.0,34470.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,22980.0,4,0,4_0,4_1 -9508,1.0,4.0,38.0,112,47,50,0.0,8829,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,6659.442358124406,0.0,0.0,56325.0,1,2,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,24489.13043478261,4,0,4_0,4_0 -9509,8.0,11.0,50.0,112,67,50,0.0,8830,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1623.1797028159715,0.0,0.0,4442.0,1,3,7,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,4442.0,1,0,1_0,1_0 -9510,16.0,16.0,83.0,112,72,71,0.0,8831,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3105.0377764885393,0.0,0.0,15520.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10346.666666666666,1,0,1_0,1_1 -9511,9.0,15.0,51.0,400,67,71,0.0,8832,0.0,0.0,20.0,0.0,2.0,4.0,0.0,3.0,2.0,2073.9998026274466,0.0,0.0,93872.0,1,2,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,46936.0,5,0,5,5_1 -9512,7.0,7.0,58.0,111,21,50,0.0,8833,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2419.521854457422,0.0,0.0,-48769.0,1,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,-32512.666666666668,1,0,1_0,1_0 -9513,4.0,4.0,51.0,111,38,12,0.0,8835,0.0,75.0,400.0,0.0,1.0,4.0,2.0,4.0,2.5,2787.6849293362166,3484.0,0.0,63193.0,1,1,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,25277.2,4,0,4_0,4_0 -9514,11.0,16.0,87.0,400,71,70,0.0,8836,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2608.4154889331658,0.0,0.0,23178.0,5,4,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15452.0,2,0,2_0,2_1 -9515,0.0,0.0,75.0,111,77,70,0.0,8837,0.0,0.0,0.0,250.0,0.0,3.0,0.0,1.0,1.0,3077.4521915150185,0.0,0.0,10069.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10069.0,1,0,1_1,1_0 -9516,0.0,0.0,32.0,111,84,10,0.0,8839,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,7663.196899624699,0.0,0.0,5804.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,5804.0,1,0,1_1,1_0 -9517,7.0,7.0,48.0,111,54,31,0.0,884,0.0,99999.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2656.0609977804065,2600.0,0.0,26682.0,1,4,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,20524.615384615383,3,0,3_0,3_0 -9518,4.0,4.0,58.0,120,46,70,0.0,8841,0.0,500.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,5480.304025076651,3224.0,0.0,14734.0,1,1,0,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14734.0,2,0,2_0,2_0 -9519,9.0,9.0,40.0,111,62,44,0.0,8843,0.0,0.0,0.0,271.0,1.0,3.0,0.0,1.0,1.0,4406.252537837724,2938.0,0.0,22817.0,1,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22817.0,4,0,4_0,4_0 -9520,3.0,15.0,37.0,112,52,50,0.0,8845,0.0,620.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1350.0125746696772,6573.0,0.0,39655.0,1,2,8,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26436.666666666668,4,0,4_0,4_0 -9521,2.0,2.0,72.0,112,77,70,0.0,885,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1361.6356645331814,0.0,0.0,34530.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23020.0,4,0,4_0,4_1 -9522,4.0,4.0,35.0,111,47,31,0.0,8850,0.0,450.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3754.558686928514,1914.0,0.0,50154.0,1,2,4,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23882.85714285714,4,0,4_0,4_0 -9523,2.0,2.0,47.0,211,33,41,0.0,8851,0.0,0.0,120.0,0.0,1.0,4.0,0.0,2.0,1.5,1493.342045193524,4680.0,0.0,41000.0,1,1,3,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,27333.333333333332,4,0,4_0,4_0 -9524,5.0,5.0,28.0,221,56,44,0.0,8852,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1866.6801385832848,3640.0,0.0,34260.0,1,2,1,2.0,4,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,19033.333333333332,3,0,3_0,3_0 -9525,11.0,12.0,31.0,112,62,50,0.0,8854,0.0,50.0,50.0,0.0,2.0,5.0,2.0,4.0,2.1,1352.00016481201,4212.0,0.0,34060.0,1,2,3,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16219.047619047618,2,0,2_0,2_1 -9526,29.0,29.0,59.0,112,75,50,0.0,8856,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1097.9627172563098,2405.0,0.0,27910.0,5,1,8,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18606.666666666668,3,0,3_0,3_0 -9527,3.0,3.0,50.0,111,21,50,0.0,8858,0.0,99999.0,0.0,0.0,1.0,2.0,1.0,3.0,1.8,2485.586203832459,6656.0,0.0,13375.0,1,1,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,7430.555555555556,1,0,1_0,1_0 -9528,0.0,0.0,62.0,111,77,70,0.0,886,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2923.417796782426,0.0,0.0,9075.0,5,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9075.0,1,0,1_0,1_0 -9529,1.0,6.0,36.0,112,64,50,0.0,8860,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1728.0462390924997,0.0,0.0,15535.0,1,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15535.0,2,0,2_0,2_1 -9530,6.0,10.0,44.0,111,37,43,0.0,8861,0.0,880.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1812.2877403363668,4684.0,0.0,64239.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22942.5,4,0,4_0,4_0 -9531,6.0,6.0,41.0,211,21,50,0.0,8862,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2469.7912123208976,0.0,0.0,10327.0,1,1,2,3.0,2,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,6884.666666666667,1,0,1_0,1_0 -9532,0.0,0.0,63.0,111,77,41,0.0,8863,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3402.064273639671,0.0,0.0,9159.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,9159.0,1,0,1_0,1_0 -9533,0.0,0.0,31.0,111,37,10,0.0,8864,0.0,0.0,0.0,383.0,2.0,2.0,1.0,3.0,1.8,2787.989557717121,0.0,0.0,42923.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23846.11111111111,4,0,4_0,4_0 -9534,6.0,7.0,26.0,400,63,50,0.0,8865,0.0,130.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1996.1614720601574,858.0,0.0,36780.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24520.0,4,0,4_0,4_1 -9535,12.0,12.0,67.0,111,74,20,0.0,8866,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1284.1619467347023,1040.0,0.0,71203.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,47468.666666666664,5,0,5,5_0 -9536,1.0,1.0,74.0,111,75,60,1.0,8868,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2662.5234795803076,799.0,11000.0,32848.0,5,1,6,5.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,32848.0,5,0,5,5_0 -9537,18.0,18.0,86.0,300,71,71,0.0,8869,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2791.9391151380482,0.0,0.0,15406.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,15406.0,2,0,2_0,2_1 -9538,4.0,4.0,85.0,120,71,70,0.0,887,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,5150.160779191347,780.0,0.0,19342.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12894.666666666666,2,0,2_0,2_1 -9539,0.0,10.0,22.0,400,56,50,2.0,8870,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2448.17482667951,0.0,3400.0,52770.0,1,3,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,35180.0,5,0,5,5_0 -9540,0.0,0.0,86.0,400,71,70,0.0,8871,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1744.5842422473702,0.0,0.0,17677.0,5,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11784.666666666666,1,0,1_0,1_1 -9541,4.0,9.0,65.0,111,75,70,0.0,8873,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2806.442472701743,2600.0,0.0,17627.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17627.0,3,0,3_0,3_0 -9542,2.0,2.0,54.0,111,34,41,0.0,8874,0.0,80.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3402.3876717736316,0.0,0.0,65805.0,1,2,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,43870.0,5,0,5,5_0 -9543,0.0,0.0,84.0,400,75,33,0.0,8875,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4989.736884535806,0.0,0.0,20593.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20593.0,3,0,3_0,3_1 -9544,9.0,9.0,58.0,111,34,20,0.0,8876,0.0,0.0,50.0,0.0,1.0,4.0,0.0,1.0,1.0,2919.9829026323746,0.0,0.0,37517.0,1,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,37517.0,5,0,5,5_0 -9545,1.0,5.0,43.0,112,48,50,2.0,8877,0.0,200.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1623.1468946379255,0.0,10000.0,78102.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,30039.23076923077,5,0,5,5_0 -9546,2.0,5.0,58.0,300,31,20,0.0,8879,0.0,100649.0,0.0,0.0,2.0,8.0,1.0,3.0,1.8,1829.0549586559725,3520.0,0.0,113246.0,1,1,0,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,62914.444444444445,5,0,5,5_1 -9547,9.0,13.0,46.0,111,37,50,0.0,8880,0.0,0.0,500.0,0.0,2.0,6.0,1.0,3.0,1.8,3075.5289011829486,2558.0,0.0,51050.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,28361.11111111111,4,0,4_0,4_0 -9548,0.0,0.0,21.0,212,68,60,0.0,8881,0.0,0.0,0.0,110.0,1.0,4.0,1.0,3.0,1.8,2769.682432278118,0.0,0.0,17840.0,1,3,1,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9911.111111111111,1,0,1_1,1_1 -9549,0.0,0.0,62.0,111,78,71,0.0,8882,0.0,0.0,0.0,57.0,0.0,4.0,0.0,2.0,1.5,3680.563213074823,0.0,0.0,21224.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14149.333333333334,2,0,2_1,2_0 -9550,5.0,10.0,70.0,111,77,60,0.0,8883,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2926.4131984239193,0.0,0.0,22045.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22045.0,4,0,4_0,4_0 -9551,1.0,1.0,34.0,111,68,71,1.0,8886,0.0,350.0,0.0,202.0,1.0,4.0,4.0,6.0,2.7,3620.7482274078952,5836.0,14900.0,31776.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,11768.888888888889,1,0,1_1,1_0 -9552,2.0,16.0,55.0,221,75,44,0.0,8887,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,4771.309857619483,1560.0,0.0,24365.0,4,3,1,2.0,4,2.0,1.0,0.0,0,1,0,0,0,1,1.0,1.0,11602.380952380952,1,0,1_1,1_0 -9553,0.0,0.0,84.0,111,78,70,0.0,8888,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3258.8421082513764,0.0,0.0,10890.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10890.0,1,0,1_0,1_0 -9554,0.0,0.0,59.0,111,22,70,0.0,889,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3257.602046887352,0.0,0.0,55150.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,55150.0,5,0,5,5_0 -9555,1.0,1.0,58.0,112,46,50,0.0,8890,0.0,100.0,150.0,0.0,2.0,4.0,0.0,2.0,1.5,2416.826043333591,2600.0,0.0,37690.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25126.666666666668,4,0,4_0,4_1 -9556,11.0,11.0,79.0,112,72,50,0.0,8891,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2436.8977989228374,0.0,0.0,26580.0,5,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,26580.0,4,0,4_0,4_0 -9557,5.0,5.0,78.0,112,78,71,0.0,8894,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4830.367147418526,0.0,0.0,26768.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17845.333333333332,3,0,3_0,3_1 -9558,6.0,20.0,40.0,111,47,50,0.0,8895,0.0,10.0,0.0,605.0,2.0,3.0,2.0,4.0,2.1,2547.74662317536,5200.0,0.0,31690.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,15090.476190476189,2,0,2_1,2_0 -9559,7.0,10.0,53.0,111,35,10,0.0,8897,0.0,0.0,0.0,1100.0,1.0,7.0,1.0,2.0,1.3,3115.2235690826924,2132.0,0.0,16537.0,4,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12720.76923076923,2,0,2_0,2_0 -9560,12.0,12.0,69.0,221,74,10,0.0,8898,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2253.698883692805,4191.0,0.0,80892.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,53928.0,5,0,5,5_0 -9561,2.0,18.0,56.0,111,52,71,0.0,89,0.0,200.0,0.0,244.0,1.0,4.0,1.0,3.0,2.0,4320.821809450599,1040.0,0.0,21430.0,1,3,7,5.0,4,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,10715.0,1,0,1_1,1_0 -9562,4.0,4.0,48.0,111,65,50,0.0,890,0.0,0.0,100.0,211.0,1.0,3.0,0.0,1.0,1.0,1403.6401696904702,0.0,0.0,23373.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23373.0,4,0,4_0,4_0 -9563,0.0,0.0,83.0,111,77,50,0.0,8902,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1889.124723576589,0.0,0.0,47803.0,5,4,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,47803.0,5,0,5,5_0 -9564,6.0,6.0,76.0,111,75,12,0.0,8903,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2067.577622947733,0.0,0.0,72038.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,48025.333333333336,5,0,5,5_0 -9565,2.0,13.0,74.0,111,75,20,0.0,8904,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2964.603611770241,0.0,0.0,35801.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,23867.333333333332,4,0,4_0,4_0 -9566,5.0,10.0,78.0,111,75,44,0.0,8905,0.0,0.0,0.0,187.0,0.0,3.0,0.0,1.0,1.0,2944.8645598259495,0.0,0.0,20497.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,20497.0,3,0,3_1,3_0 -9567,14.0,15.0,66.0,112,74,41,0.0,8906,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3309.761552015157,2023.0,0.0,37169.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24779.333333333332,4,0,4_0,4_1 -9568,0.0,0.0,22.0,111,55,50,0.0,8907,0.0,0.0,0.0,200.0,1.0,2.0,0.0,1.0,1.0,4039.2321535247515,0.0,0.0,15921.0,4,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15921.0,2,0,2_1,2_0 -9569,2.0,2.0,52.0,211,52,60,0.0,8908,0.0,0.0,100.0,0.0,1.0,5.0,0.0,2.0,1.5,2211.3450604994964,4836.0,0.0,38210.0,1,1,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,25473.333333333332,4,0,4_0,4_0 -9570,11.0,13.0,58.0,112,48,50,0.0,8909,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2918.8203204492434,0.0,0.0,32913.0,1,2,6,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21942.0,4,0,4_0,4_1 -9571,1.0,2.0,50.0,112,56,50,2.0,891,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1588.672824955639,1850.0,10350.0,19558.0,1,1,7,1.0,2,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,13038.666666666666,2,0,2_0,2_0 -9572,0.0,15.0,58.0,120,22,50,2.0,8912,0.0,0.0,0.0,262.0,1.0,3.0,0.0,1.0,1.0,2930.225743762208,3130.0,3850.0,12076.0,1,3,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,12076.0,1,0,1_1,1_1 -9573,9.0,16.0,52.0,111,63,60,0.0,8916,0.0,0.0,100.0,0.0,2.0,6.0,2.0,4.0,2.3,2693.0399204982587,1576.0,0.0,41740.0,1,1,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,18147.826086956524,3,0,3_0,3_0 -9574,0.0,12.0,66.0,212,75,10,2.0,8919,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,837.7831681730105,465.0,1800.0,26963.0,5,1,2,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17975.333333333332,3,0,3_0,3_1 -9575,1.0,1.0,50.0,300,22,50,1.0,8920,0.0,160.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2348.0276346300593,0.0,22960.0,57394.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,31885.555555555555,5,0,5,5_1 -9576,5.0,7.0,27.0,111,38,12,0.0,8921,0.0,0.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,6289.142789258778,2589.0,0.0,22885.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22885.0,4,0,4_0,4_0 -9577,2.0,11.0,25.0,111,67,42,0.0,8922,0.0,0.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,1503.7205046208326,0.0,0.0,31093.0,1,2,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,20728.666666666668,3,0,3_1,3_0 -9578,4.0,5.0,47.0,111,65,50,0.0,8923,0.0,190.0,0.0,0.0,1.0,5.0,2.0,4.0,2.3,1588.0570813804559,3380.0,0.0,22759.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,9895.217391304348,1,0,1_0,1_0 -9579,4.0,20.0,73.0,111,78,71,0.0,8924,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2346.421434710234,0.0,0.0,33948.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22632.0,4,0,4_0,4_0 -9580,0.0,3.0,57.0,112,62,50,2.0,8925,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1607.9951282032357,0.0,16000.0,36655.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24436.666666666668,4,0,4_0,4_1 -9581,31.0,31.0,82.0,111,72,71,0.0,8927,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4710.284273021349,0.0,0.0,27290.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,18193.333333333332,3,0,3_0,3_0 -9582,3.0,3.0,51.0,112,43,20,0.0,8928,0.0,0.0,25.0,0.0,3.0,6.0,2.0,4.0,2.5,986.8698671598391,7521.0,0.0,53680.0,1,2,10,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,21472.0,3,0,3_0,3_1 -9583,2.0,17.0,34.0,111,55,43,0.0,8929,0.0,0.0,0.0,34.0,1.0,5.0,3.0,5.0,2.4,2952.276313727402,0.0,0.0,22485.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,9368.75,1,0,1_1,1_0 -9584,2.0,2.0,45.0,112,63,50,0.0,893,0.0,500.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1159.7985329474466,4488.0,0.0,49803.0,1,1,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19921.2,3,0,3_0,3_1 -9585,4.0,4.0,71.0,111,77,70,0.0,8932,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1388.182385758416,0.0,0.0,23653.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15768.666666666666,2,0,2_0,2_0 -9586,0.0,17.0,40.0,211,85,71,0.0,8934,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4028.115561102378,1300.0,0.0,11487.0,7,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,11487.0,1,0,1_1,1_0 -9587,2.0,2.0,64.0,112,72,10,0.0,8938,0.0,500.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2082.239735200416,0.0,0.0,42228.0,5,1,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20108.571428571428,3,0,3_0,3_0 -9588,22.0,22.0,87.0,221,72,70,0.0,8939,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4641.0260315088,0.0,0.0,12866.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,12866.0,2,0,2_0,2_0 -9589,0.0,0.0,55.0,112,22,71,0.0,894,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2727.276146383004,5044.0,0.0,16361.0,1,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10907.333333333334,1,0,1_0,1_1 -9590,0.0,21.0,50.0,112,45,41,0.0,8940,0.0,1200.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1617.0253549481647,7160.0,0.0,69034.0,1,2,9,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,34517.0,5,0,5,5_0 -9591,1.0,1.0,50.0,111,23,43,2.0,8943,0.0,0.0,200.0,0.0,2.0,8.0,4.0,6.0,3.1,2220.0488152426165,5200.0,20000.0,69950.0,1,1,9,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,22564.516129032258,4,0,4_0,4_0 -9592,5.0,12.0,53.0,111,54,71,0.0,8944,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2832.77229230159,2080.0,0.0,10506.0,4,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10506.0,1,0,1_1,1_0 -9593,1.0,3.0,38.0,111,46,31,0.0,8945,0.0,150.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3495.547541549376,4698.0,0.0,67941.0,1,1,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,33970.5,5,0,5,5_0 -9594,0.0,0.0,75.0,111,75,10,0.0,8946,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4081.267521666865,0.0,0.0,2912.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,2912.0,1,0,1_0,1_0 -9595,2.0,2.0,70.0,111,74,31,0.0,8947,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1407.4354410633728,0.0,0.0,43450.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28966.666666666668,4,0,4_0,4_0 -9596,2.0,10.0,28.0,211,55,10,0.0,8948,0.0,730.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,5390.256673711982,1560.0,0.0,34420.0,1,2,2,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19122.222222222223,3,0,3_0,3_0 -9597,0.0,0.0,83.0,111,78,70,0.0,8949,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2343.710689475803,0.0,0.0,25350.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25350.0,4,0,4_0,4_0 -9598,1.0,1.0,43.0,300,55,50,1.0,8950,0.0,220.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1046.4987590737308,1040.0,11600.0,18211.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,7284.4,1,0,1_0,1_1 -9599,9.0,9.0,64.0,111,78,71,0.0,8952,0.0,0.0,0.0,555.0,0.0,4.0,0.0,2.0,1.5,3504.9836452910276,1248.0,0.0,21910.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14606.666666666666,2,0,2_0,2_0 -9600,1.0,5.0,44.0,112,22,41,0.0,8953,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3400.516128458639,4236.0,0.0,29629.0,1,1,7,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,2.0,1.0,14109.047619047618,2,0,2_0,2_1 -9601,2.0,2.0,69.0,111,77,50,0.0,8956,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2203.449167304625,0.0,0.0,18476.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18476.0,3,0,3_0,3_0 -9602,2.0,14.0,29.0,120,62,50,2.0,8957,0.0,0.0,100.0,263.0,2.0,4.0,2.0,4.0,2.1,1531.6150933869455,1040.0,1200.0,31911.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,15195.714285714284,2,0,2_1,2_1 -9603,8.0,11.0,52.0,111,67,50,0.0,8958,0.0,450.0,0.0,271.0,1.0,2.0,0.0,1.0,1.0,2018.299574051117,1560.0,0.0,33182.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,33182.0,5,0,5,5_0 -9604,3.0,3.0,57.0,111,54,41,0.0,8963,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1707.480933365715,0.0,0.0,31261.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,31261.0,5,0,5,5_0 -9605,6.0,6.0,75.0,111,78,70,0.0,8964,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1771.4696055756967,0.0,0.0,25877.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17251.333333333332,3,0,3_0,3_0 -9606,0.0,15.0,54.0,221,52,60,0.0,8965,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3678.4955651234254,0.0,0.0,16720.0,1,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16720.0,2,0,2_0,2_0 -9607,2.0,2.0,56.0,112,13,50,0.0,8966,0.0,100.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2173.051391522398,3640.0,0.0,58064.0,1,1,10,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,38709.333333333336,5,0,5,5_1 -9608,3.0,3.0,36.0,111,37,10,0.0,8969,0.0,270.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3073.194921964591,2871.0,0.0,61414.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,34118.88888888889,5,0,5,5_0 -9609,5.0,8.0,55.0,111,35,12,0.0,8970,0.0,350.0,0.0,0.0,1.0,4.0,3.0,4.0,2.5,2372.5754932828113,4160.0,0.0,27293.0,1,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,10917.2,1,0,1_0,1_0 -9610,16.0,16.0,58.0,111,22,41,0.0,8971,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2494.3815082526594,3403.0,0.0,14824.0,1,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14824.0,2,0,2_0,2_0 -9611,9.0,9.0,45.0,111,43,20,0.0,8972,0.0,0.0,0.0,207.0,1.0,3.0,0.0,1.0,1.0,3016.552389063586,0.0,0.0,24750.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24750.0,4,0,4_0,4_0 -9612,2.0,5.0,35.0,112,63,43,0.0,8973,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1735.8891663223444,0.0,0.0,44511.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21195.714285714286,3,0,3_0,3_1 -9613,1.0,1.0,50.0,112,45,31,1.0,8977,0.0,600.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2388.4506549403377,3008.0,14742.0,32529.0,1,1,10,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,32529.0,5,0,5,5_1 -9614,31.0,31.0,78.0,111,86,70,0.0,8978,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2918.718032528944,0.0,0.0,20324.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20324.0,3,0,3_0,3_0 -9615,12.0,12.0,65.0,112,74,33,0.0,8979,0.0,0.0,84.0,0.0,1.0,6.0,0.0,2.0,1.5,1629.7792297415706,1014.0,0.0,33138.0,5,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22092.0,4,0,4_0,4_1 -9616,1.0,11.0,42.0,112,52,71,0.0,8981,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1585.7288939688071,1612.0,0.0,45230.0,1,1,7,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17396.153846153844,3,0,3_0,3_0 -9617,0.0,0.0,38.0,221,85,71,0.0,8982,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.8,3988.8370195605507,0.0,0.0,17509.0,6,3,1,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9727.222222222223,1,0,1_1,1_0 -9618,0.0,0.0,48.0,111,46,41,1.0,8983,0.0,0.0,100.0,0.0,1.0,5.0,1.0,3.0,2.0,2092.026062104147,2116.0,27700.0,46167.0,1,1,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23083.5,4,0,4_0,4_0 -9619,0.0,20.0,44.0,111,54,50,0.0,8986,0.0,0.0,0.0,557.0,2.0,3.0,0.0,2.0,1.5,2583.8641553680477,1642.0,0.0,40921.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27280.666666666668,4,0,4_0,4_0 -9620,1.0,16.0,37.0,111,52,42,2.0,8987,0.0,50.0,0.0,320.0,2.0,3.0,3.0,5.0,2.4,3303.121617224271,465.0,1000.0,31388.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13078.333333333334,2,0,2_1,2_0 -9621,3.0,3.0,71.0,111,74,70,0.0,8988,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2216.3938498806706,0.0,0.0,29644.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,19762.666666666668,3,0,3_0,3_0 -9622,4.0,4.0,34.0,112,53,31,0.0,899,0.0,0.0,400.0,0.0,2.0,4.0,2.0,4.0,2.1,2811.3220132601946,0.0,0.0,41898.0,1,2,9,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,19951.42857142857,3,0,3_0,3_0 -9623,12.0,13.0,63.0,111,74,30,0.0,8992,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3346.807383120978,2366.0,0.0,43076.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28717.333333333332,4,0,4_0,4_0 -9624,3.0,7.0,39.0,111,31,10,0.0,8993,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2307.9398148269142,0.0,0.0,66060.0,1,2,9,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,2.0,0.0,27525.0,4,0,4_0,4_0 -9625,5.0,5.0,54.0,112,47,50,0.0,8994,0.0,800.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1544.1445265186974,0.0,0.0,55667.0,1,2,10,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,37111.333333333336,5,0,5,5_0 -9626,4.0,6.0,65.0,112,74,20,0.0,8995,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1777.795780212701,5023.0,0.0,41977.0,5,1,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,41977.0,5,0,5,5_1 -9627,2.0,5.0,57.0,111,75,50,0.0,8996,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,1.8,1353.1316921153816,0.0,0.0,39001.0,5,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,21667.222222222223,3,0,3_0,3_0 -9628,1.0,1.0,52.0,111,64,50,1.0,8997,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1962.3016909227292,0.0,22850.0,18283.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18283.0,3,0,3_0,3_0 -9629,2.0,2.0,35.0,112,47,43,0.0,8998,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2658.694152072979,0.0,0.0,17036.0,1,3,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,9464.444444444443,1,0,1_0,1_1 -9630,11.0,11.0,37.0,111,38,12,0.0,8999,0.0,180.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2293.746774451256,6141.0,0.0,69470.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,33080.95238095238,5,0,5,5_0 -9631,15.0,16.0,37.0,111,22,12,0.0,9,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2321.911114973963,710.0,0.0,21807.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,10384.285714285714,1,0,1_0,1_0 -9632,0.0,0.0,65.0,112,77,70,0.0,90,0.0,0.0,0.0,387.0,0.0,3.0,0.0,1.0,1.0,4976.199283309399,0.0,0.0,2486.0,5,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,2486.0,1,0,1_0,1_0 -9633,5.0,7.0,34.0,112,47,31,0.0,900,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2066.078208746351,2080.0,0.0,70783.0,1,2,10,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,33706.19047619047,5,0,5,5_0 -9634,0.0,0.0,52.0,111,21,50,1.0,9001,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1988.3098421091556,4941.0,11800.0,38784.0,1,2,8,6.0,4,4.0,0.0,1.0,0,0,1,0,0,0,0.0,4.0,15513.6,2,0,2_0,2_0 -9635,0.0,1.0,47.0,111,38,12,0.0,9003,0.0,680.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1461.2709652081728,0.0,0.0,68756.0,1,1,7,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,45837.333333333336,5,0,5,5_0 -9636,14.0,40.0,41.0,111,37,70,0.0,9005,0.0,0.0,25.0,435.0,1.0,2.0,0.0,1.0,1.0,3121.9338904777205,0.0,0.0,21603.0,1,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,21603.0,3,0,3_0,3_0 -9637,1.0,16.0,20.0,112,21,50,2.0,9006,0.0,0.0,0.0,250.0,2.0,4.0,1.0,3.0,1.8,6382.835800472355,0.0,1000.0,28598.0,1,3,9,3.0,4,2.0,1.0,0.0,0,1,0,0,0,1,0.0,2.0,15887.777777777777,2,0,2_1,2_0 -9638,4.0,9.0,36.0,111,53,50,0.0,9007,0.0,290.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1284.5249761642744,2978.0,0.0,44165.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21030.95238095238,3,0,3_0,3_0 -9639,2.0,5.0,42.0,112,54,31,0.0,9008,0.0,350.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,5533.033401195232,2392.0,0.0,13681.0,1,2,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,13681.0,2,0,2_0,2_0 -9640,1.0,8.0,47.0,111,62,50,2.0,901,0.0,240.0,180.0,0.0,2.0,5.0,2.0,4.0,2.5,790.0267573363843,2704.0,3200.0,37486.0,1,1,6,5.0,4,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,14994.4,2,0,2_0,2_0 -9641,0.0,0.0,74.0,111,77,60,0.0,9010,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3567.505006568884,0.0,0.0,38431.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25620.666666666668,4,0,4_0,4_0 -9642,0.0,0.0,27.0,111,38,10,0.0,9011,0.0,0.0,0.0,667.0,1.0,3.0,0.0,1.0,1.0,7290.046877998779,0.0,0.0,37970.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,37970.0,5,0,5,5_0 -9643,0.0,0.0,34.0,111,67,20,0.0,9012,0.0,0.0,0.0,323.0,1.0,3.0,0.0,1.0,1.0,2503.055140471213,0.0,0.0,14057.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14057.0,2,0,2_1,2_0 -9644,2.0,14.0,47.0,112,68,50,0.0,9015,0.0,0.0,180.0,0.0,1.0,7.0,3.0,4.0,2.3,986.7187052317439,0.0,0.0,17197.0,1,1,7,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,7476.956521739131,1,0,1_0,1_1 -9645,7.0,7.0,39.0,111,37,12,0.0,9016,0.0,190.0,0.0,926.0,2.0,4.0,2.0,4.0,2.1,2922.3583310177028,780.0,0.0,53079.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25275.714285714286,4,0,4_0,4_0 -9646,2.0,2.0,39.0,112,63,71,0.0,9017,0.0,500.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3402.047472139198,2725.0,0.0,55909.0,1,2,10,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,26623.333333333332,4,0,4_0,4_0 -9647,1.0,3.0,53.0,112,54,50,0.0,9018,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2112.353714470248,6828.0,0.0,31988.0,1,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,21325.333333333332,3,0,3_0,3_0 -9648,2.0,2.0,56.0,221,63,50,0.0,9019,0.0,0.0,20.0,0.0,1.0,2.0,0.0,1.0,1.0,3247.88285550531,2288.0,0.0,4678.0,1,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,4678.0,1,0,1_0,1_0 -9649,0.0,0.0,53.0,111,52,50,0.0,902,0.0,0.0,0.0,380.0,1.0,3.0,0.0,1.0,1.0,5961.653913139653,0.0,0.0,21003.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21003.0,3,0,3_0,3_0 -9650,10.0,10.0,74.0,111,74,20,0.0,9020,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2121.162104347189,0.0,0.0,83491.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,55660.666666666664,5,0,5,5_0 -9651,13.0,13.0,69.0,111,86,60,0.0,9021,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3529.8779110109067,0.0,0.0,46700.0,5,1,10,8.0,5,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,31133.333333333332,5,0,5,5_0 -9652,4.0,6.0,54.0,112,52,41,0.0,9022,0.0,550.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1434.0506087236893,2184.0,0.0,52956.0,1,3,6,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26478.0,4,0,4_0,4_0 -9653,9.0,9.0,54.0,111,53,50,0.0,9023,0.0,0.0,220.0,0.0,1.0,4.0,0.0,2.0,1.5,1799.5463424240638,0.0,0.0,52704.0,1,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,35136.0,5,0,5,5_0 -9654,0.0,0.0,39.0,221,68,50,0.0,9024,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2982.6565279883152,0.0,0.0,8788.0,4,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8788.0,1,0,1_1,1_0 -9655,4.0,14.0,42.0,112,63,44,0.0,9026,0.0,400.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2824.370019392876,1820.0,0.0,31860.0,1,2,7,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,12744.0,2,0,2_0,2_0 -9656,4.0,4.0,59.0,112,38,50,0.0,9027,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,5006.363535096147,0.0,0.0,28024.0,4,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18682.666666666668,3,0,3_0,3_0 -9657,16.0,17.0,54.0,112,47,50,0.0,903,0.0,200.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1019.9219884849947,0.0,0.0,47041.0,1,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,31360.666666666668,5,0,5,5_0 -9658,2.0,12.0,46.0,300,62,70,0.0,9030,0.0,170.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2100.1190527447266,0.0,0.0,39100.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,39100.0,5,0,5,5_1 -9659,7.0,8.0,44.0,112,68,50,0.0,9031,0.0,300.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3220.1381596998435,0.0,0.0,39973.0,1,2,10,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,26648.666666666668,4,0,4_0,4_0 -9660,2.0,2.0,63.0,400,22,50,0.0,9032,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1337.452221014774,4237.0,0.0,16022.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10681.333333333334,1,0,1_0,1_1 -9661,0.0,0.0,60.0,111,75,70,0.0,9037,0.0,0.0,0.0,317.0,0.0,3.0,0.0,1.0,1.0,3167.2620891075053,0.0,0.0,14352.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14352.0,2,0,2_0,2_0 -9662,4.0,4.0,50.0,111,45,50,0.0,9042,0.0,150.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,792.8559949843878,0.0,0.0,65514.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,26205.6,4,0,4_0,4_0 -9663,4.0,4.0,62.0,211,78,70,0.0,9043,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1247.7714725209783,0.0,0.0,38932.0,5,1,3,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25954.666666666668,4,0,4_0,4_0 -9664,11.0,19.0,39.0,120,21,50,0.0,9044,0.0,400.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4488.676887240353,2860.0,0.0,50362.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23981.90476190476,4,0,4_0,4_1 -9665,2.0,2.0,39.0,112,38,31,0.0,9048,0.0,350.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2804.772907438263,0.0,0.0,51330.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28516.666666666664,4,0,4_0,4_1 -9666,4.0,7.0,56.0,300,64,50,0.0,9049,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1003.2194260375645,2080.0,0.0,25931.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17287.333333333332,3,0,3_0,3_1 -9667,3.0,6.0,25.0,111,42,20,0.0,9050,0.0,300.0,120.0,573.0,2.0,3.0,1.0,3.0,1.8,1592.5184560999398,0.0,0.0,42905.0,1,3,7,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,23836.11111111111,4,0,4_0,4_0 -9668,4.0,5.0,24.0,400,69,43,0.0,9053,0.0,150.0,40.0,408.0,2.0,5.0,0.0,2.0,1.5,2561.881982563342,11180.0,0.0,29125.0,1,3,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,19416.666666666668,3,0,3_0,3_1 -9669,9.0,11.0,39.0,111,34,10,0.0,9054,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1961.5718300723088,0.0,0.0,62992.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,29996.190476190473,5,0,5,5_0 -9670,5.0,5.0,57.0,111,43,20,0.0,9055,0.0,0.0,250.0,0.0,2.0,5.0,0.0,2.0,1.5,2223.042514047571,0.0,0.0,77923.0,1,1,10,8.0,3,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,51948.666666666664,5,0,5,5_0 -9671,4.0,13.0,32.0,120,11,50,0.0,9056,0.0,0.0,200.0,0.0,1.0,4.0,2.0,4.0,2.5,2706.8874001020577,3120.0,0.0,22940.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,9176.0,1,0,1_0,1_1 -9672,0.0,0.0,23.0,111,47,43,0.0,9057,0.0,0.0,0.0,200.0,1.0,2.0,0.0,1.0,1.0,3712.8338666181603,0.0,0.0,18730.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18730.0,3,0,3_0,3_0 -9673,2.0,2.0,66.0,112,78,71,0.0,9058,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,2788.366696185371,1040.0,0.0,37087.0,5,1,9,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,18543.5,3,0,3_0,3_1 -9674,11.0,14.0,48.0,111,47,41,0.0,906,0.0,0.0,250.0,0.0,2.0,5.0,0.0,2.0,1.5,2447.7527277778395,5835.0,0.0,60920.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,40613.333333333336,5,0,5,5_0 -9675,6.0,13.0,62.0,300,62,50,0.0,9060,0.0,450.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,989.0693486649923,12151.0,0.0,58749.0,1,1,0,1.0,3,4.0,0.0,0.0,0,1,0,0,0,0,2.0,2.0,39166.0,5,0,5,5_0 -9676,7.0,7.0,80.0,111,74,70,0.0,9061,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1641.1619458845717,0.0,0.0,36893.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24595.333333333332,4,0,4_0,4_0 -9677,10.0,15.0,44.0,221,54,50,0.0,9062,0.0,150.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2170.442944098911,0.0,0.0,68220.0,1,3,1,2.0,5,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,34110.0,5,0,5,5_0 -9678,7.0,7.0,72.0,111,77,71,0.0,9063,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2587.334111633786,0.0,0.0,18245.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18245.0,3,0,3_0,3_0 -9679,0.0,3.0,35.0,112,38,12,0.0,9064,0.0,400.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1376.7369523434988,0.0,0.0,61602.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29334.285714285714,5,0,5,5_1 -9680,2.0,17.0,23.0,111,46,42,0.0,9065,0.0,0.0,0.0,427.0,1.0,2.0,0.0,1.0,1.0,2830.2384109326117,4680.0,0.0,16724.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,16724.0,2,0,2_0,2_0 -9681,1.0,4.0,54.0,111,48,50,2.0,9066,0.0,0.0,0.0,562.0,2.0,5.0,1.0,3.0,2.0,1258.4947485637922,2080.0,7000.0,47356.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,23678.0,4,0,4_0,4_0 -9682,4.0,4.0,60.0,111,74,20,0.0,9067,0.0,250.0,0.0,0.0,1.0,6.0,2.0,4.0,2.5,1971.7975949610768,3130.0,0.0,79126.0,5,1,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,31650.4,5,0,5,5_0 -9683,1.0,11.0,42.0,111,35,31,0.0,9068,0.0,0.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.1,2310.121469146554,3174.0,0.0,46200.0,1,1,9,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,22000.0,4,0,4_0,4_0 -9684,15.0,15.0,35.0,111,53,71,0.0,9069,0.0,0.0,0.0,0.0,1.0,3.0,4.0,6.0,2.7,3294.7223054533374,0.0,0.0,37921.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14044.814814814814,2,0,2_1,2_0 -9685,0.0,8.0,30.0,111,62,41,0.0,9070,0.0,160.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1677.1448898222818,0.0,0.0,52023.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,28901.666666666664,4,0,4_0,4_0 -9686,1.0,1.0,54.0,111,55,41,1.0,9072,0.0,0.0,20.0,0.0,1.0,2.0,0.0,1.0,1.0,2488.0876431848988,0.0,16200.0,14411.0,4,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14411.0,2,0,2_0,2_0 -9687,5.0,8.0,50.0,112,52,43,0.0,9074,0.0,3541.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1269.6434413225581,0.0,0.0,19519.0,1,1,8,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,13012.666666666666,2,0,2_0,2_0 -9688,9.0,9.0,57.0,111,46,60,0.0,9075,0.0,0.0,99999.0,436.0,2.0,3.0,1.0,2.0,1.5,2527.5590956218707,0.0,0.0,47379.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,31586.0,5,0,5,5_0 -9689,6.0,6.0,63.0,111,77,50,0.0,9076,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1168.8908195504234,0.0,0.0,31380.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,20920.0,3,0,3_0,3_0 -9690,8.0,11.0,84.0,111,77,70,0.0,9077,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2729.1242262154283,0.0,0.0,10490.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10490.0,1,0,1_1,1_0 -9691,4.0,4.0,78.0,112,11,50,0.0,9078,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1131.873760383375,2080.0,0.0,29710.0,5,4,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19806.666666666668,3,0,3_0,3_1 -9692,1.0,1.0,66.0,111,75,31,1.0,9079,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2939.6380580451123,1162.0,50000.0,135476.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,135476.0,5,0,5,5_0 -9693,2.0,5.0,53.0,111,75,50,0.0,908,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,3473.6312830874704,0.0,0.0,51308.0,5,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,25654.0,4,0,4_0,4_0 -9694,8.0,8.0,47.0,111,64,41,0.0,9081,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2893.190625366038,0.0,0.0,6060.0,4,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,6060.0,1,0,1_0,1_0 -9695,1.0,1.0,62.0,111,74,41,1.0,9082,0.0,0.0,0.0,0.0,1.0,5.0,0.0,3.0,2.0,1801.0757091273292,0.0,1800.0,72937.0,5,1,10,8.0,5,3.0,1.0,1.0,0,0,0,0,1,0,1.0,2.0,36468.5,5,0,5,5_0 -9696,6.0,13.0,49.0,112,47,42,0.0,9083,0.0,100.0,210.0,0.0,3.0,6.0,2.0,4.0,2.5,1396.1762116943876,4832.0,0.0,86516.0,1,1,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,34606.4,5,0,5,5_1 -9697,6.0,15.0,28.0,120,62,50,0.0,9084,0.0,0.0,0.0,300.0,2.0,4.0,1.0,2.0,1.5,5404.982348337376,0.0,0.0,28954.0,4,3,0,2.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19302.666666666668,3,0,3_0,3_0 -9698,10.0,38.0,69.0,112,72,50,0.0,9085,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,740.0851935236448,0.0,0.0,22888.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15258.666666666666,2,0,2_0,2_1 -9699,5.0,5.0,67.0,400,78,70,0.0,9086,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3077.044342585813,1560.0,0.0,24531.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16354.0,2,0,2_0,2_1 -9700,11.0,11.0,49.0,111,38,20,0.0,9087,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2742.796054962939,0.0,0.0,39605.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,39605.0,5,0,5,5_0 -9701,8.0,9.0,47.0,400,21,50,0.0,9088,0.0,460.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1492.553184629046,0.0,0.0,63369.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27551.739130434784,4,0,4_0,4_1 -9702,1.0,3.0,63.0,111,22,50,0.0,9090,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,3906.031600769207,0.0,0.0,22314.0,1,1,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11157.0,1,0,1_0,1_0 -9703,10.0,10.0,70.0,112,75,71,0.0,9091,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2469.1132008834506,0.0,0.0,23126.0,5,1,10,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15417.333333333334,2,0,2_0,2_0 -9704,3.0,7.0,35.0,112,34,10,0.0,9092,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1549.0221938781458,0.0,0.0,66694.0,1,2,9,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,31759.04761904762,5,0,5,5_0 -9705,0.0,21.0,47.0,120,69,50,0.0,9093,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,3552.1907411402353,0.0,0.0,14285.0,4,4,0,2.0,2,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,10988.461538461537,1,0,1_0,1_0 -9706,0.0,0.0,38.0,111,37,10,0.0,9096,0.0,0.0,0.0,118.0,1.0,1.0,0.0,1.0,1.0,3148.5605964691013,0.0,0.0,20172.0,1,4,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,20172.0,3,0,3_1,3_0 -9707,2.0,2.0,44.0,111,47,31,0.0,9097,0.0,0.0,35.0,0.0,2.0,4.0,2.0,4.0,2.1,3300.0434825745015,0.0,0.0,45465.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21650.0,3,0,3_0,3_0 -9708,5.0,5.0,69.0,111,74,20,0.0,9098,0.0,0.0,170.0,0.0,1.0,7.0,0.0,2.0,1.5,3210.3080133094877,0.0,0.0,15500.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,10333.333333333334,1,0,1_0,1_0 -9709,0.0,0.0,67.0,111,77,70,0.0,9099,0.0,0.0,0.0,374.0,0.0,1.0,0.0,1.0,1.0,3629.785993591481,0.0,0.0,15022.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15022.0,2,0,2_1,2_0 -9710,0.0,0.0,66.0,111,77,70,0.0,91,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2776.4086314035167,0.0,0.0,15365.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15365.0,2,0,2_0,2_0 -9711,1.0,18.0,34.0,300,52,20,2.0,910,0.0,700.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2693.746434937924,3756.0,800.0,17578.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13521.538461538461,2,0,2_0,2_1 -9712,3.0,3.0,34.0,111,38,12,0.0,9101,0.0,270.0,350.0,0.0,2.0,4.0,0.0,2.0,1.5,2541.9578880137487,6194.0,0.0,83451.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,55634.0,5,0,5,5_0 -9713,0.0,15.0,28.0,111,45,20,0.0,9103,0.0,200.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3289.0077484792064,4940.0,0.0,47426.0,1,3,10,8.0,3,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,31617.333333333332,5,0,5,5_0 -9714,7.0,20.0,48.0,111,48,42,0.0,9104,0.0,0.0,200.0,0.0,3.0,4.0,2.0,4.0,2.5,2156.3358503348013,1560.0,0.0,74348.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,29739.2,5,0,5,5_0 -9715,0.0,0.0,68.0,111,75,50,0.0,9107,0.0,0.0,0.0,275.0,0.0,2.0,0.0,1.0,1.0,3013.0996484178395,0.0,0.0,14097.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14097.0,2,0,2_1,2_0 -9716,9.0,13.0,85.0,300,75,50,0.0,9108,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2210.6957025194215,0.0,0.0,27993.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18662.0,3,0,3_0,3_1 -9717,11.0,11.0,50.0,111,56,71,0.0,9109,0.0,0.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,3302.7518336654384,0.0,0.0,13558.0,4,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9038.666666666666,1,0,1_1,1_0 -9718,1.0,1.0,45.0,111,63,50,2.0,911,0.0,40.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1742.4263190633228,0.0,16300.0,23390.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23390.0,4,0,4_0,4_0 -9719,0.0,3.0,65.0,120,74,31,2.0,9110,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3043.142676754239,2549.0,5000.0,46230.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,30820.0,5,0,5,5_1 -9720,0.0,4.0,49.0,111,85,50,0.0,9114,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3350.9240569812646,3276.0,0.0,10764.0,7,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,10764.0,1,0,1_1,1_0 -9721,0.0,0.0,48.0,300,42,50,2.0,9115,0.0,608.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2595.4950968745866,2134.0,14000.0,40290.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26860.0,4,0,4_0,4_1 -9722,2.0,17.0,60.0,221,78,60,0.0,9116,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2428.7803290963743,2080.0,0.0,14283.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14283.0,2,0,2_0,2_0 -9723,4.0,4.0,64.0,111,75,60,0.0,912,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1924.9468149230215,0.0,0.0,42980.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,28653.333333333332,4,0,4_0,4_0 -9724,1.0,2.0,55.0,300,43,42,2.0,9120,0.0,900.0,250.0,0.0,2.0,6.0,0.0,2.0,1.5,1390.957758919735,7047.0,18100.0,57016.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,38010.666666666664,5,0,5,5_1 -9725,5.0,10.0,69.0,221,74,10,0.0,9122,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2329.7279047505826,0.0,0.0,87568.0,5,1,1,2.0,3,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,58378.666666666664,5,0,5,5_0 -9726,5.0,5.0,55.0,112,42,42,0.0,9125,0.0,99999.0,20.0,0.0,2.0,8.0,0.0,2.0,1.5,1257.2643285204247,2340.0,0.0,60731.0,1,1,8,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,40487.333333333336,5,0,5,5_0 -9727,9.0,9.0,68.0,120,75,41,0.0,9127,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1930.54085714713,0.0,0.0,23747.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23747.0,4,0,4_0,4_0 -9728,7.0,7.0,38.0,111,34,10,0.0,9128,0.0,0.0,310.0,0.0,1.0,4.0,0.0,1.0,1.0,3379.103075061501,0.0,0.0,61370.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,61370.0,5,0,5,5_0 -9729,4.0,9.0,54.0,300,62,50,0.0,9129,0.0,0.0,130.0,0.0,1.0,3.0,0.0,2.0,1.5,2211.58090884243,3276.0,0.0,35840.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23893.333333333332,4,0,4_0,4_1 -9730,12.0,16.0,47.0,400,63,50,0.0,913,0.0,168.0,0.0,0.0,3.0,5.0,3.0,5.0,2.8,2013.3569502353123,0.0,0.0,42453.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15161.785714285716,2,0,2_0,2_1 -9731,0.0,0.0,51.0,111,56,71,0.0,9133,0.0,0.0,0.0,529.0,2.0,2.0,1.0,3.0,1.8,3374.818599754281,0.0,0.0,38709.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21505.0,3,0,3_0,3_0 -9732,9.0,9.0,70.0,400,72,70,0.0,9135,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2736.8972980542662,1925.0,0.0,35391.0,5,1,0,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23594.0,4,0,4_0,4_0 -9733,0.0,0.0,80.0,111,77,71,0.0,9136,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3513.0292283341882,0.0,0.0,19380.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19380.0,3,0,3_0,3_0 -9734,0.0,0.0,46.0,111,85,20,0.0,9137,0.0,0.0,0.0,354.0,0.0,1.0,0.0,1.0,1.0,3073.5641653160023,0.0,0.0,11527.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11527.0,1,0,1_1,1_0 -9735,4.0,4.0,70.0,111,74,50,0.0,9138,0.0,0.0,250.0,0.0,1.0,6.0,1.0,3.0,2.0,1263.6984071178838,0.0,0.0,62680.0,5,1,6,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,31340.0,5,0,5,5_0 -9736,3.0,21.0,65.0,111,78,50,0.0,9140,0.0,0.0,0.0,424.0,0.0,4.0,0.0,2.0,1.5,1005.9883904251251,3612.0,0.0,47540.0,5,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31693.333333333332,5,0,5,5_0 -9737,2.0,19.0,64.0,112,77,50,0.0,9141,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1428.4337135298626,1040.0,0.0,19885.0,5,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19885.0,3,0,3_0,3_0 -9738,4.0,11.0,68.0,112,74,70,0.0,9142,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1717.640570102441,1820.0,0.0,45902.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,30601.333333333332,5,0,5,5_1 -9739,3.0,4.0,64.0,111,77,50,0.0,9143,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1463.8352872437097,0.0,0.0,32101.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21400.666666666668,3,0,3_0,3_0 -9740,7.0,11.0,53.0,221,22,60,0.0,9145,0.0,350.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,5123.596104316928,0.0,0.0,50198.0,1,2,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,50198.0,5,0,5,5_0 -9741,5.0,5.0,40.0,120,67,50,0.0,9147,0.0,300.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3267.459713595919,0.0,0.0,38445.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16715.217391304348,2,0,2_0,2_1 -9742,15.0,17.0,73.0,111,72,70,0.0,9148,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1927.184128789057,0.0,0.0,12953.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12953.0,2,0,2_0,2_0 -9743,8.0,51.0,41.0,111,23,10,0.0,9149,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3205.876339042845,1043.0,0.0,78576.0,1,4,9,7.0,4,5.0,0.0,0.0,0,0,0,1,0,0,2.0,3.0,37417.142857142855,5,0,5,5_0 -9744,1.0,3.0,28.0,111,46,43,2.0,915,0.0,150.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1672.4842978902323,2878.0,11000.0,16014.0,1,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16014.0,2,0,2_0,2_0 -9745,0.0,9.0,51.0,111,42,41,0.0,9150,0.0,0.0,500.0,0.0,1.0,5.0,0.0,1.0,1.0,2006.466206919139,0.0,0.0,28513.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,28513.0,4,0,4_0,4_0 -9746,4.0,12.0,35.0,111,47,43,0.0,9151,0.0,0.0,100.0,0.0,2.0,3.0,2.0,4.0,2.1,4151.8748200796945,3638.0,0.0,45845.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21830.95238095238,4,0,4_0,4_0 -9747,8.0,11.0,49.0,111,55,50,0.0,9152,0.0,0.0,120.0,0.0,2.0,4.0,2.0,4.0,2.5,2228.9997180124283,1591.0,0.0,41681.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,16672.4,2,0,2_0,2_0 -9748,4.0,21.0,36.0,211,68,60,0.0,9153,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3155.3553958077255,1560.0,0.0,11192.0,1,3,2,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,11192.0,1,0,1_1,1_0 -9749,5.0,7.0,77.0,112,78,70,0.0,9157,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3079.99543980459,1631.0,0.0,17419.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17419.0,3,0,3_0,3_1 -9750,12.0,12.0,64.0,111,78,71,0.0,9158,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2663.5000149049815,855.0,0.0,25037.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16691.333333333332,2,0,2_0,2_0 -9751,1.0,1.0,67.0,112,75,50,0.0,9159,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2785.575518619775,0.0,0.0,33707.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22471.333333333332,4,0,4_0,4_1 -9752,10.0,25.0,62.0,112,72,41,0.0,916,0.0,0.0,230.0,0.0,1.0,5.0,0.0,2.0,1.5,2915.254813118674,0.0,0.0,47827.0,5,3,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,31884.666666666668,5,0,5,5_1 -9753,15.0,25.0,73.0,111,77,70,0.0,9160,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1592.4929051465635,0.0,0.0,30860.0,5,4,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,20573.333333333332,3,0,3_0,3_0 -9754,0.0,0.0,26.0,111,85,60,0.0,9162,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,1.9,2316.262352665902,0.0,0.0,17352.0,6,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9132.631578947368,1,0,1_1,1_0 -9755,14.0,20.0,60.0,112,13,71,0.0,9163,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2707.4432376374803,1821.0,0.0,18790.0,1,4,9,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,18790.0,3,0,3_0,3_1 -9756,0.0,0.0,34.0,111,42,20,0.0,9164,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3308.421720398462,0.0,0.0,22598.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22598.0,4,0,4_0,4_0 -9757,0.0,22.0,61.0,112,37,41,0.0,9165,0.0,500.0,120.0,0.0,2.0,8.0,3.0,5.0,3.0,1213.5406670840962,5197.0,0.0,62492.0,1,1,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,20830.666666666668,3,0,3_0,3_1 -9758,13.0,21.0,62.0,112,75,60,0.0,9166,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3360.774006273475,1559.0,0.0,20885.0,5,1,9,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13923.333333333334,2,0,2_0,2_0 -9759,6.0,8.0,48.0,112,67,50,0.0,9167,0.0,0.0,0.0,570.0,2.0,4.0,1.0,3.0,2.0,3161.659676760112,3058.0,0.0,29973.0,1,3,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14986.5,2,0,2_0,2_1 -9760,10.0,10.0,64.0,120,77,71,0.0,9168,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3374.8445456433465,2707.0,0.0,26949.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17966.0,3,0,3_0,3_1 -9761,6.0,19.0,44.0,111,85,70,0.0,9170,0.0,0.0,0.0,0.0,0.0,4.0,5.0,6.0,2.5,1581.961867998404,791.0,0.0,26010.0,6,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,10404.0,1,0,1_1,1_0 -9762,5.0,6.0,47.0,111,38,31,0.0,9172,0.0,125.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3076.031503100257,0.0,0.0,45404.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,21620.95238095238,3,0,3_0,3_0 -9763,1.0,11.0,52.0,111,56,70,0.0,9174,0.0,0.0,220.0,0.0,1.0,5.0,3.0,5.0,2.4,1965.5631692181255,2600.0,0.0,34980.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14575.0,2,0,2_0,2_0 -9764,5.0,6.0,52.0,111,33,20,0.0,9176,0.0,300.0,220.0,770.0,2.0,8.0,1.0,3.0,2.0,1580.7245840823223,2080.0,0.0,79193.0,1,3,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,39596.5,5,0,5,5_0 -9765,1.0,8.0,30.0,112,38,12,0.0,9178,0.0,675.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2363.5434166542013,0.0,0.0,63220.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,35122.22222222222,5,0,5,5_1 -9766,2.0,2.0,83.0,111,86,41,0.0,9181,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2202.8143057935818,2862.0,0.0,55270.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,36846.666666666664,5,0,5,5_0 -9767,15.0,15.0,56.0,112,33,20,0.0,9183,0.0,1020.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,1152.4981802496866,2688.0,0.0,74404.0,1,1,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,29761.6,5,0,5,5_1 -9768,0.0,0.0,84.0,211,78,50,0.0,9184,0.0,0.0,0.0,183.0,0.0,3.0,0.0,1.0,1.0,2564.6954859681055,0.0,0.0,12884.0,5,3,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12884.0,2,0,2_1,2_0 -9769,1.0,11.0,35.0,112,37,20,0.0,9185,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2954.3733021684798,15499.0,0.0,40391.0,1,2,10,3.0,3,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,26927.333333333332,4,0,4_0,4_0 -9770,4.0,13.0,31.0,212,64,50,0.0,9186,0.0,170.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1202.38401970529,0.0,0.0,44672.0,1,2,2,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,21272.38095238095,3,0,3_0,3_1 -9771,3.0,7.0,48.0,112,52,50,0.0,9187,0.0,310.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1628.3414222312508,0.0,0.0,52256.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20902.4,3,0,3_0,3_1 -9772,19.0,19.0,60.0,112,78,43,0.0,919,0.0,0.0,0.0,761.0,0.0,5.0,0.0,1.0,1.0,2667.145683679604,2010.0,0.0,31222.0,5,3,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31222.0,5,0,5,5_0 -9773,10.0,14.0,47.0,111,54,10,0.0,9190,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2543.979209911202,0.0,0.0,19954.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,9501.904761904761,1,0,1_1,1_0 -9774,0.0,15.0,49.0,112,63,50,0.0,9191,0.0,250.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1299.3856746075744,0.0,0.0,41603.0,1,1,9,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,20801.5,3,0,3_0,3_1 -9775,0.0,9.0,50.0,300,12,71,0.0,9192,0.0,1468.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2441.6014085487395,2860.0,0.0,19900.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,8652.173913043478,1,0,1_0,1_1 -9776,5.0,7.0,29.0,120,33,10,0.0,9193,0.0,600.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1685.564633506919,0.0,0.0,44603.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,21239.52380952381,3,0,3_0,3_1 -9777,0.0,1.0,27.0,112,38,31,2.0,9194,0.0,0.0,700.0,0.0,1.0,2.0,0.0,1.0,1.0,3192.743415564457,2600.0,18700.0,27100.0,1,2,10,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,27100.0,4,0,4_0,4_0 -9778,0.0,0.0,20.0,111,84,71,0.0,9195,0.0,0.0,0.0,192.0,0.0,2.0,0.0,1.0,1.0,4986.1515497186565,0.0,0.0,1896.0,3,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,1896.0,1,0,1_1,1_0 -9779,3.0,4.0,71.0,111,78,50,0.0,9197,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1334.0079849820631,0.0,0.0,28667.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19111.333333333332,3,0,3_0,3_0 -9780,4.0,16.0,45.0,300,63,50,0.0,9198,0.0,360.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,2186.8600516535435,5772.0,0.0,41676.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18120.0,3,0,3_0,3_1 -9781,2.0,3.0,47.0,111,37,20,0.0,9199,0.0,150.0,0.0,0.0,1.0,9.0,3.0,5.0,2.8,1496.8595505374842,0.0,0.0,75470.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26953.57142857143,4,0,4_0,4_0 -9782,1.0,3.0,42.0,300,43,43,0.0,92,0.0,100.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1857.7744855834196,0.0,0.0,25264.0,1,2,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,14035.555555555555,2,0,2_1,2_1 -9783,5.0,7.0,76.0,221,78,70,0.0,920,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3649.758531772263,0.0,0.0,30265.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20176.666666666668,3,0,3_0,3_0 -9784,3.0,17.0,54.0,111,43,50,0.0,9200,0.0,99999.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,1996.6983383216132,2103.0,0.0,35578.0,1,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,23718.666666666668,4,0,4_1,4_0 -9785,6.0,6.0,55.0,111,56,50,0.0,9203,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2271.1385333591857,0.0,0.0,16510.0,1,1,4,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,8255.0,1,0,1_0,1_0 -9786,1.0,6.0,26.0,112,63,50,0.0,9205,0.0,200.0,40.0,0.0,2.0,3.0,1.0,3.0,1.8,1938.018577705276,421.0,0.0,32861.0,1,3,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,18256.11111111111,3,0,3_1,3_0 -9787,8.0,8.0,29.0,120,47,31,0.0,9206,0.0,174.0,0.0,500.0,2.0,3.0,0.0,2.0,1.5,2948.9739233512164,2600.0,0.0,43336.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28890.666666666668,4,0,4_0,4_1 -9788,0.0,17.0,38.0,112,67,50,0.0,9207,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,5046.1415472735325,0.0,0.0,11177.0,4,3,7,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,8597.692307692307,1,0,1_1,1_1 -9789,2.0,19.0,47.0,111,52,50,0.0,9209,0.0,0.0,100.0,489.0,2.0,3.0,0.0,2.0,1.5,2196.9268162858916,1560.0,0.0,29330.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19553.333333333332,3,0,3_0,3_0 -9790,1.0,12.0,28.0,111,67,42,0.0,921,0.0,0.0,500.0,0.0,2.0,3.0,0.0,2.0,1.5,2197.742703821061,2602.0,0.0,26441.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,17627.333333333332,3,0,3_1,3_0 -9791,5.0,5.0,65.0,112,78,70,0.0,9211,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2495.886365675182,0.0,0.0,32768.0,5,1,7,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,21845.333333333332,4,0,4_0,4_0 -9792,7.0,18.0,53.0,300,52,50,0.0,9212,0.0,0.0,160.0,0.0,1.0,6.0,0.0,1.0,1.0,1358.9827933874576,2396.0,0.0,19854.0,1,1,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19854.0,3,0,3_0,3_0 -9793,6.0,10.0,29.0,111,85,60,0.0,9213,0.0,30.0,0.0,202.0,1.0,3.0,2.0,4.0,2.1,2902.281401717202,2600.0,0.0,22940.0,4,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10923.809523809523,1,0,1_1,1_0 -9794,1.0,12.0,58.0,111,77,60,2.0,9217,0.0,0.0,0.0,214.0,0.0,2.0,0.0,1.0,1.0,2558.3640616757825,3169.0,3800.0,12780.0,4,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12780.0,2,0,2_1,2_0 -9795,3.0,8.0,64.0,300,78,50,0.0,9218,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2541.2811223352205,3122.0,0.0,13560.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13560.0,2,0,2_0,2_1 -9796,7.0,15.0,49.0,112,42,20,0.0,922,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1579.7918964982534,6627.0,0.0,23210.0,1,4,4,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15473.333333333334,2,0,2_0,2_1 -9797,6.0,6.0,80.0,112,74,10,0.0,9221,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2865.931281206244,0.0,0.0,59393.0,5,1,5,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,59393.0,5,0,5,5_1 -9798,0.0,0.0,61.0,111,78,71,0.0,9222,0.0,0.0,0.0,220.0,0.0,2.0,0.0,1.0,1.0,2799.344108397404,0.0,0.0,12083.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12083.0,1,0,1_1,1_0 -9799,6.0,6.0,61.0,111,72,50,0.0,9224,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3675.751531526985,3188.0,0.0,26557.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17704.666666666668,3,0,3_0,3_0 -9800,14.0,14.0,88.0,112,78,71,0.0,9225,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3133.1617990444947,0.0,0.0,11165.0,5,4,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11165.0,1,0,1_0,1_1 -9801,4.0,4.0,53.0,111,37,10,0.0,9228,0.0,0.0,80.0,0.0,2.0,4.0,0.0,2.0,1.5,2700.0061965890336,1369.0,0.0,114652.0,4,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,76434.66666666667,5,0,5,5_0 -9802,1.0,2.0,62.0,300,75,41,2.0,9231,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2155.43163087267,0.0,13000.0,30518.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20345.333333333332,3,0,3_0,3_1 -9803,1.0,5.0,45.0,111,54,50,2.0,9237,0.0,1000.0,144.0,0.0,4.0,5.0,2.0,4.0,2.5,1094.5068093941636,4317.0,19000.0,61104.0,1,2,3,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,24441.6,4,0,4_0,4_0 -9804,17.0,17.0,75.0,112,75,50,0.0,9238,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2076.1536560913396,62.0,0.0,29199.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19466.0,3,0,3_0,3_0 -9805,15.0,19.0,88.0,111,77,70,0.0,9239,0.0,0.0,0.0,640.0,0.0,1.0,0.0,1.0,1.0,4303.260605708033,1669.0,0.0,23402.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23402.0,4,0,4_0,4_0 -9806,0.0,0.0,81.0,300,78,70,0.0,9242,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2207.6933030290525,0.0,0.0,52395.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,34930.0,5,0,5,5_1 -9807,10.0,10.0,39.0,111,64,42,0.0,9246,0.0,250.0,0.0,0.0,1.0,4.0,4.0,7.0,3.2,903.7587243143292,4940.0,0.0,38926.0,1,2,9,7.0,5,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,12164.375,1,0,1_1,1_0 -9808,0.0,12.0,42.0,111,46,50,2.0,9247,0.0,0.0,0.0,371.0,1.0,3.0,1.0,2.0,1.5,3297.357866710015,0.0,600.0,16715.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11143.333333333334,1,0,1_1,1_0 -9809,0.0,0.0,70.0,300,74,41,0.0,9248,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2660.3781499410115,0.0,0.0,31080.0,5,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20720.0,3,0,3_0,3_1 -9810,1.0,1.0,40.0,111,63,71,1.0,925,0.0,110.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,3149.920890625272,2080.0,16000.0,47163.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,20505.652173913044,3,0,3_0,3_0 -9811,4.0,5.0,69.0,111,75,60,0.0,9250,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2313.971027686766,0.0,0.0,19803.0,5,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19803.0,3,0,3_0,3_0 -9812,0.0,7.0,56.0,120,63,71,0.0,9252,0.0,200.0,0.0,210.0,2.0,4.0,1.0,3.0,2.0,3622.0582086304426,3536.0,0.0,23536.0,1,3,0,3.0,5,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,11768.0,1,0,1_1,1_0 -9813,0.0,0.0,49.0,111,42,41,0.0,9253,0.0,0.0,0.0,420.0,2.0,2.0,2.0,3.0,2.0,2991.62335730741,0.0,0.0,31960.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15980.0,2,0,2_0,2_0 -9814,5.0,7.0,77.0,112,72,71,0.0,9256,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4153.924223358069,4371.0,0.0,36891.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24594.0,4,0,4_0,4_1 -9815,2.0,2.0,50.0,111,64,50,0.0,9258,0.0,450.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1742.7749651502306,2461.0,0.0,25893.0,1,1,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,12946.5,2,0,2_0,2_0 -9816,1.0,1.0,72.0,211,77,70,0.0,9259,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3406.3001825731767,2087.0,0.0,6210.0,5,1,3,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,6210.0,1,0,1_0,1_0 -9817,2.0,4.0,77.0,300,75,41,0.0,926,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2126.790921433479,1888.0,0.0,25092.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16728.0,2,0,2_0,2_1 -9818,1.0,10.0,48.0,111,42,50,2.0,9260,0.0,0.0,99999.0,0.0,3.0,4.0,1.0,3.0,2.0,951.1345822455543,0.0,3800.0,37653.0,1,2,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,18826.5,3,0,3_0,3_0 -9819,4.0,4.0,49.0,111,33,12,0.0,9261,0.0,550.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1798.5124175651538,3250.0,0.0,85098.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,34039.2,5,0,5,5_0 -9820,4.0,6.0,49.0,112,62,50,0.0,9263,0.0,170.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,1051.4071152333747,4472.0,0.0,45128.0,1,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18051.2,3,0,3_0,3_1 -9821,0.0,0.0,55.0,111,78,70,0.0,9264,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2710.61151589738,0.0,0.0,35954.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,35954.0,5,0,5,5_0 -9822,7.0,11.0,39.0,120,12,50,0.0,9265,0.0,0.0,30.0,0.0,1.0,5.0,0.0,3.0,2.0,2698.3578534230815,0.0,0.0,27535.0,1,1,0,2.0,5,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,13767.5,2,0,2_0,2_0 -9823,1.0,6.0,42.0,111,52,50,0.0,9267,0.0,99999.0,0.0,0.0,1.0,5.0,3.0,4.0,2.5,1458.7397391242157,1040.0,0.0,40304.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,16121.6,2,0,2_1,2_0 -9824,4.0,5.0,32.0,112,37,10,0.0,927,0.0,500.0,0.0,885.0,2.0,5.0,2.0,4.0,2.1,2021.4964196870606,1144.0,0.0,62758.0,1,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29884.761904761905,5,0,5,5_1 -9825,1.0,2.0,58.0,112,56,70,2.0,9271,0.0,40.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1158.025125085126,4540.0,12450.0,29300.0,1,1,6,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19533.333333333332,3,0,3_0,3_0 -9826,6.0,7.0,54.0,111,46,41,0.0,9273,0.0,100.0,0.0,395.0,1.0,6.0,0.0,1.0,1.0,1613.1139315211783,0.0,0.0,24572.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24572.0,4,0,4_0,4_0 -9827,7.0,7.0,76.0,111,74,41,0.0,9274,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1297.287467323464,0.0,0.0,31413.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20942.0,3,0,3_0,3_0 -9828,2.0,10.0,64.0,112,77,70,0.0,9275,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4292.029460392174,0.0,0.0,41797.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,27864.666666666668,4,0,4_0,4_1 -9829,5.0,5.0,66.0,400,78,60,0.0,9276,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2814.272340923062,1717.0,0.0,18438.0,5,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,12292.0,1,0,1_0,1_1 -9830,3.0,7.0,53.0,212,77,31,0.0,9277,0.0,130.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,4427.918059973954,2572.0,0.0,43843.0,5,1,3,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,21921.5,4,0,4_0,4_1 -9831,0.0,16.0,57.0,112,52,50,0.0,9278,0.0,0.0,20.0,347.0,2.0,3.0,1.0,2.0,1.5,3288.2651444496973,0.0,0.0,23480.0,1,3,9,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15653.333333333334,2,0,2_0,2_0 -9832,7.0,11.0,37.0,111,46,31,0.0,9279,0.0,90.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,4057.5289114351717,1041.0,0.0,50346.0,1,2,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,23974.285714285714,4,0,4_0,4_0 -9833,7.0,8.0,39.0,111,22,10,0.0,928,0.0,80.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3527.111787126196,0.0,0.0,36999.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,36999.0,5,0,5,5_0 -9834,1.0,20.0,47.0,221,85,71,2.0,9281,0.0,0.0,0.0,0.0,0.0,7.0,1.0,2.0,1.5,3188.539186535929,523.0,400.0,11510.0,7,2,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,7673.333333333333,1,0,1_1,1_0 -9835,10.0,10.0,50.0,221,63,50,0.0,9282,0.0,10.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2072.8951175739485,1196.0,0.0,39576.0,1,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,26384.0,4,0,4_0,4_0 -9836,0.0,1.0,46.0,111,52,41,2.0,9283,0.0,250.0,0.0,413.0,1.0,5.0,0.0,1.0,1.0,2532.584428628583,2080.0,11200.0,25506.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25506.0,4,0,4_0,4_0 -9837,8.0,8.0,68.0,111,72,50,0.0,9284,0.0,0.0,0.0,1414.0,0.0,3.0,0.0,2.0,1.5,3664.4409679431487,0.0,0.0,57811.0,5,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,38540.666666666664,5,0,5,5_0 -9838,0.0,6.0,19.0,111,84,41,0.0,9286,0.0,250.0,0.0,300.0,0.0,1.0,0.0,1.0,1.0,4041.596328885096,0.0,0.0,3890.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,3890.0,1,0,1_0,1_0 -9839,2.0,2.0,78.0,111,71,70,0.0,9287,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3116.712233152984,0.0,0.0,12473.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12473.0,1,0,1_0,1_0 -9840,6.0,15.0,53.0,111,56,50,0.0,9288,0.0,0.0,0.0,344.0,1.0,5.0,0.0,1.0,1.0,1781.837044839732,2132.0,0.0,18741.0,1,3,7,5.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,18741.0,3,0,3_0,3_0 -9841,10.0,11.0,50.0,112,56,60,0.0,9290,0.0,0.0,200.0,0.0,1.0,3.0,0.0,1.0,1.0,1925.3885602909638,1560.0,0.0,15630.0,1,3,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15630.0,2,0,2_0,2_0 -9842,3.0,7.0,58.0,111,52,31,0.0,9291,0.0,800.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2542.3428151979974,3120.0,0.0,33866.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22577.333333333332,4,0,4_0,4_0 -9843,0.0,0.0,85.0,400,71,70,0.0,9292,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2287.7028821442213,0.0,0.0,12376.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12376.0,1,0,1_0,1_1 -9844,0.0,0.0,36.0,111,22,31,0.0,9296,0.0,0.0,0.0,306.0,1.0,2.0,0.0,1.0,1.0,3253.0123736991254,0.0,0.0,22888.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22888.0,4,0,4_0,4_0 -9845,0.0,0.0,59.0,111,45,60,1.0,93,0.0,70.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2881.0858154527255,2030.0,13762.0,35094.0,1,1,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,35094.0,5,0,5,5_0 -9846,1.0,1.0,64.0,111,75,31,0.0,9301,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3941.085618345084,0.0,0.0,41476.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27650.666666666668,4,0,4_0,4_0 -9847,0.0,12.0,30.0,111,63,44,0.0,9302,0.0,99999.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3339.424905406004,1040.0,0.0,21616.0,1,2,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21616.0,3,0,3_0,3_0 -9848,6.0,10.0,38.0,112,55,30,0.0,9305,0.0,330.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2874.622134460422,3848.0,0.0,39342.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18734.285714285714,3,0,3_0,3_1 -9849,3.0,11.0,41.0,111,55,50,0.0,9307,0.0,0.0,0.0,251.0,1.0,3.0,2.0,3.0,1.6,1049.6871090828722,2350.0,0.0,20418.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12761.25,2,0,2_1,2_0 -9850,4.0,7.0,73.0,111,74,12,0.0,9309,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1769.7029039097845,0.0,0.0,49012.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,32674.666666666668,5,0,5,5_0 -9851,1.0,9.0,29.0,111,43,33,2.0,931,0.0,0.0,0.0,217.0,1.0,1.0,0.0,1.0,1.0,2786.265892811788,3120.0,3000.0,21537.0,1,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21537.0,3,0,3_0,3_0 -9852,0.0,17.0,43.0,111,52,50,0.0,9313,0.0,300.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3344.515050042832,0.0,0.0,20049.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20049.0,3,0,3_0,3_0 -9853,0.0,0.0,28.0,111,43,41,0.0,9314,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4187.525312323654,0.0,0.0,16060.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16060.0,2,0,2_0,2_0 -9854,2.0,7.0,29.0,111,54,31,0.0,9315,0.0,300.0,0.0,401.0,1.0,3.0,1.0,2.0,1.3,2730.005144992034,4337.0,0.0,20108.0,1,3,8,6.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,15467.692307692307,2,0,2_1,2_0 -9855,0.0,0.0,65.0,111,74,20,0.0,9316,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3829.5191035162215,0.0,0.0,38132.0,5,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38132.0,5,0,5,5_0 -9856,5.0,15.0,79.0,221,86,71,0.0,9319,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2831.9025486487844,1343.0,0.0,13751.0,6,4,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13751.0,2,0,2_0,2_0 -9857,3.0,5.0,54.0,112,52,71,0.0,932,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1835.1465676732596,3496.0,0.0,21781.0,1,1,9,2.0,1,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,21781.0,4,0,4_0,4_0 -9858,1.0,14.0,50.0,400,63,50,2.0,9320,0.0,300.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2691.452597608036,3692.0,1500.0,17729.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,11819.333333333334,1,0,1_0,1_1 -9859,6.0,6.0,48.0,111,46,20,0.0,9321,0.0,0.0,175.0,0.0,2.0,4.0,1.0,3.0,1.8,3129.0444286150664,6240.0,0.0,37089.0,1,1,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,20605.0,3,0,3_0,3_0 -9860,11.0,11.0,78.0,112,78,71,0.0,9322,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3114.9600700712363,1300.0,0.0,19401.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12934.0,2,0,2_0,2_1 -9861,6.0,14.0,44.0,221,52,71,0.0,9323,0.0,50.0,25.0,0.0,2.0,5.0,2.0,4.0,2.3,3017.3663361735594,1560.0,0.0,32780.0,1,1,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,14252.17391304348,2,0,2_0,2_0 -9862,5.0,7.0,34.0,111,55,50,0.0,9324,0.0,280.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1228.2911481370036,4517.0,0.0,38210.0,1,2,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15920.833333333334,2,0,2_0,2_0 -9863,2.0,6.0,28.0,111,46,10,0.0,9325,0.0,8.0,0.0,524.0,1.0,2.0,0.0,1.0,1.0,4049.418978749235,2455.0,0.0,25072.0,1,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,25072.0,4,0,4_0,4_0 -9864,11.0,14.0,72.0,111,77,71,0.0,9327,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3119.4185419645855,1898.0,0.0,19130.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12753.333333333334,2,0,2_0,2_0 -9865,8.0,8.0,54.0,112,22,50,0.0,9328,0.0,0.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,1648.674674278789,0.0,0.0,81582.0,1,1,8,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,54388.0,5,0,5,5_0 -9866,0.0,24.0,37.0,111,31,10,0.0,933,0.0,670.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1701.4035252929575,3328.0,0.0,63511.0,1,1,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,26462.916666666668,4,0,4_0,4_0 -9867,6.0,6.0,41.0,111,31,10,0.0,9331,0.0,600.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1060.2686792069246,0.0,0.0,328562.0,1,1,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,156458.09523809524,5,0,5,5_0 -9868,1.0,1.0,42.0,120,63,50,0.0,9333,0.0,260.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2147.3897827553983,4368.0,0.0,43718.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20818.095238095237,3,0,3_0,3_1 -9869,2.0,2.0,47.0,111,69,71,0.0,9335,0.0,150.0,0.0,0.0,2.0,7.0,2.0,3.0,2.0,1448.4760280249693,0.0,0.0,37312.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,18656.0,3,0,3_1,3_0 -9870,1.0,22.0,48.0,111,54,71,2.0,9336,0.0,60.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2565.221682718658,1300.0,300.0,20590.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15838.461538461537,2,0,2_0,2_0 -9871,0.0,0.0,42.0,111,85,50,0.0,9337,0.0,0.0,0.0,0.0,0.0,6.0,1.0,2.0,1.3,2491.5211976247174,0.0,0.0,11970.0,6,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9207.692307692307,1,0,1_1,1_0 -9872,11.0,11.0,47.0,112,34,20,0.0,9338,0.0,150.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1914.6434259048356,0.0,0.0,190540.0,1,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,190540.0,5,0,5,5_1 -9873,10.0,13.0,66.0,400,13,42,0.0,9339,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1511.4590260249852,0.0,0.0,41550.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27700.0,4,0,4_0,4_1 -9874,7.0,9.0,33.0,111,63,50,0.0,9340,0.0,0.0,314.0,0.0,2.0,3.0,1.0,3.0,1.8,2316.716898791682,5312.0,0.0,28471.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,15817.222222222223,2,0,2_0,2_0 -9875,3.0,3.0,67.0,111,71,70,0.0,9343,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1923.8155526858318,0.0,0.0,9838.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,9838.0,1,0,1_0,1_0 -9876,2.0,22.0,32.0,212,42,20,0.0,9344,0.0,300.0,80.0,0.0,2.0,6.0,2.0,4.0,2.1,1680.268799777773,1560.0,0.0,26216.0,1,2,1,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,12483.809523809523,1,0,1_0,1_1 -9877,11.0,16.0,61.0,111,65,50,0.0,9346,0.0,0.0,70.0,320.0,1.0,2.0,0.0,2.0,1.5,2051.212928924484,3484.0,0.0,32077.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,21384.666666666668,3,0,3_0,3_0 -9878,0.0,0.0,75.0,300,77,70,0.0,9349,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2532.6993998445646,0.0,0.0,17380.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17380.0,3,0,3_0,3_1 -9879,21.0,21.0,46.0,111,46,50,0.0,9351,0.0,90.0,0.0,358.0,1.0,4.0,1.0,2.0,1.3,3803.3024105464674,2824.0,0.0,21578.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16598.46153846154,2,0,2_0,2_0 -9880,0.0,0.0,75.0,111,74,10,0.0,9354,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2438.7345209746863,0.0,0.0,124598.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,83065.33333333333,5,0,5,5_0 -9881,2.0,2.0,55.0,112,63,50,0.0,9355,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1040.323198464841,3328.0,0.0,41503.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27668.666666666668,4,0,4_0,4_1 -9882,5.0,12.0,33.0,300,85,42,0.0,9356,0.0,0.0,80.0,0.0,1.0,3.0,2.0,4.0,2.1,2124.9700512146137,1041.0,0.0,24815.0,6,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,11816.666666666666,1,0,1_1,1_1 -9883,0.0,0.0,35.0,111,31,12,1.0,9357,0.0,0.0,0.0,2350.0,2.0,4.0,2.0,4.0,2.1,3696.0662195078467,3478.0,27000.0,28907.0,1,3,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,13765.238095238095,2,0,2_0,2_0 -9884,1.0,1.0,73.0,112,78,71,1.0,9358,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2443.970234234172,0.0,15400.0,31710.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,21140.0,3,0,3_0,3_0 -9885,14.0,14.0,43.0,111,37,10,0.0,9359,96.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,2002.2899215752345,6864.0,0.0,64571.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,0.0,23061.07142857143,4,0,4_0,4_0 -9886,3.0,3.0,37.0,111,33,10,0.0,9360,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2590.881186491574,2083.0,0.0,34904.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,16620.95238095238,2,0,2_0,2_0 -9887,6.0,16.0,44.0,111,63,71,0.0,9362,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3179.029638331835,0.0,0.0,50528.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25264.0,4,0,4_0,4_0 -9888,0.0,0.0,52.0,111,35,10,0.0,9363,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2546.1741271211777,0.0,0.0,80738.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,53825.333333333336,5,0,5,5_0 -9889,0.0,15.0,29.0,221,62,41,0.0,9364,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4637.397939584951,0.0,0.0,16660.0,1,2,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,16660.0,2,0,2_0,2_0 -9890,1.0,1.0,51.0,112,43,10,1.0,9366,0.0,300.0,400.0,0.0,2.0,7.0,0.0,2.0,1.5,977.3071857849767,0.0,29500.0,72245.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,48163.333333333336,5,0,5,5_1 -9891,8.0,16.0,52.0,400,69,50,0.0,9367,0.0,300.0,600.0,0.0,2.0,4.0,2.0,4.0,2.5,1042.0839383592224,7280.0,0.0,23760.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,9504.0,1,0,1_0,1_1 -9892,3.0,8.0,55.0,111,43,31,0.0,9368,0.0,300.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3151.4156894001494,0.0,0.0,72175.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,48116.666666666664,5,0,5,5_0 -9893,7.0,17.0,35.0,112,63,42,0.0,937,0.0,200.0,200.0,0.0,2.0,5.0,3.0,5.0,2.4,2267.171865049829,2608.0,0.0,41863.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,17442.916666666668,3,0,3_1,3_1 -9894,7.0,16.0,39.0,111,69,30,0.0,9371,0.0,150.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4431.404260794275,1044.0,0.0,15163.0,1,3,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,15163.0,2,0,2_1,2_0 -9895,9.0,9.0,49.0,111,34,10,0.0,9372,0.0,350.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3307.1848344110535,2002.0,0.0,40500.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,40500.0,5,0,5,5_0 -9896,7.0,11.0,48.0,111,56,50,0.0,9373,0.0,0.0,45.0,389.0,2.0,5.0,1.0,2.0,1.5,1816.0209681264635,260.0,0.0,22160.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,14773.333333333334,2,0,2_0,2_0 -9897,0.0,0.0,50.0,211,85,50,0.0,9374,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1675.0411568617649,0.0,0.0,9930.0,7,4,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,9930.0,1,0,1_0,1_0 -9898,11.0,15.0,36.0,111,35,42,0.0,9375,0.0,60.0,0.0,619.0,2.0,3.0,0.0,2.0,1.5,3177.8481493266804,0.0,0.0,41973.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27982.0,4,0,4_0,4_0 -9899,1.0,1.0,53.0,111,38,41,1.0,9376,0.0,685.0,150.0,0.0,2.0,5.0,2.0,4.0,2.5,2218.8755321132667,1040.0,7200.0,68233.0,1,1,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,27293.2,4,0,4_0,4_0 -9900,1.0,1.0,37.0,120,38,10,1.0,9377,0.0,250.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3044.1997088258126,0.0,19000.0,63570.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,35316.666666666664,5,0,5,5_1 -9901,3.0,9.0,55.0,112,22,50,0.0,9378,0.0,350.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,1425.045532902681,2913.0,0.0,35715.0,1,1,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,14286.0,2,0,2_0,2_0 -9902,5.0,5.0,69.0,112,77,70,0.0,9379,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1965.501672023463,2656.0,0.0,31796.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,21197.333333333332,3,0,3_0,3_1 -9903,0.0,2.0,46.0,111,23,43,2.0,938,0.0,100029.0,50.0,0.0,3.0,7.0,3.0,5.0,2.8,1131.428551458379,208.0,7400.0,70821.0,1,1,7,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,25293.214285714286,4,0,4_0,4_0 -9904,1.0,7.0,55.0,120,45,42,2.0,9380,0.0,150.0,50.0,0.0,3.0,7.0,1.0,3.0,2.0,1630.6514432708182,0.0,3000.0,70585.0,1,1,0,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,35292.5,5,0,5,5_0 -9905,0.0,0.0,26.0,111,46,31,0.0,9382,0.0,0.0,150.0,837.0,2.0,2.0,0.0,2.0,1.5,3248.1694433961325,2098.0,0.0,37250.0,1,3,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,24833.333333333332,4,0,4_0,4_0 -9906,7.0,8.0,74.0,111,77,70,0.0,9383,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2240.5710384142476,4085.0,0.0,27933.0,5,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18622.0,3,0,3_0,3_0 -9907,4.0,4.0,57.0,211,45,50,0.0,9384,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1498.0578833106701,2713.0,0.0,49720.0,1,1,2,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,33146.666666666664,5,0,5,5_0 -9908,1.0,12.0,39.0,221,11,50,2.0,9385,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2913.485777283858,0.0,700.0,37106.0,1,2,1,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17669.52380952381,3,0,3_0,3_0 -9909,2.0,8.0,63.0,111,78,70,0.0,9387,0.0,700.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,2243.842608910435,2485.0,0.0,27959.0,5,2,6,4.0,4,3.0,0.0,0.0,0,0,1,0,0,1,1.0,2.0,11183.6,1,0,1_1,1_0 -9910,11.0,16.0,85.0,112,78,70,0.0,9388,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1457.2427894606244,0.0,0.0,18577.0,5,1,6,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18577.0,3,0,3_0,3_0 -9911,11.0,11.0,53.0,221,23,50,0.0,9389,0.0,0.0,160.0,0.0,1.0,5.0,0.0,2.0,1.5,2260.7690903695166,0.0,0.0,33300.0,1,1,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,22200.0,4,0,4_0,4_0 -9912,4.0,20.0,25.0,111,46,43,0.0,939,0.0,0.0,0.0,265.0,1.0,2.0,0.0,1.0,1.0,3348.5388639514545,2600.0,0.0,15725.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,15725.0,2,0,2_1,2_0 -9913,0.0,21.0,45.0,112,68,71,0.0,9390,0.0,550.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1881.8062315624525,5694.0,0.0,36007.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17146.190476190477,3,0,3_0,3_0 -9914,3.0,3.0,31.0,111,67,43,0.0,9391,0.0,250.0,0.0,310.0,1.0,2.0,0.0,1.0,1.0,3026.9259840970935,1300.0,0.0,14974.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,14974.0,2,0,2_0,2_0 -9915,14.0,14.0,74.0,400,74,10,0.0,9392,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1591.9423314637368,0.0,0.0,28489.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,18992.666666666668,3,0,3_0,3_1 -9916,0.0,11.0,50.0,111,43,33,0.0,9393,0.0,0.0,40.0,262.0,1.0,2.0,1.0,2.0,1.5,2877.274814752862,2248.0,0.0,25102.0,1,3,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,16734.666666666668,2,0,2_0,2_0 -9917,8.0,10.0,72.0,300,71,70,0.0,9395,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1810.9953949754406,0.0,0.0,7964.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,7964.0,1,0,1_0,1_1 -9918,3.0,3.0,50.0,111,46,60,0.0,9396,0.0,180.0,0.0,276.0,1.0,3.0,0.0,1.0,1.0,3112.7079862092555,0.0,0.0,24269.0,1,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,24269.0,4,0,4_0,4_0 -9919,5.0,5.0,74.0,212,71,71,0.0,9399,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1730.5618312695328,0.0,0.0,18390.0,5,1,3,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12260.0,1,0,1_0,1_1 -9920,8.0,11.0,58.0,112,22,50,0.0,9400,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1220.4763768978976,0.0,0.0,68702.0,1,3,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,45801.333333333336,5,0,5,5_0 -9921,2.0,2.0,79.0,111,74,30,0.0,9403,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2933.1849696093886,0.0,0.0,39517.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,39517.0,5,0,5,5_0 -9922,0.0,0.0,71.0,112,86,70,0.0,9405,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1214.2080491177417,0.0,0.0,6300.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,6300.0,1,0,1_0,1_1 -9923,15.0,15.0,72.0,300,78,71,0.0,9407,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3753.941333461568,0.0,0.0,19433.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19433.0,3,0,3_0,3_1 -9924,1.0,5.0,58.0,111,78,50,2.0,9408,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1909.8533291516023,7074.0,14000.0,25492.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16994.666666666668,3,0,3_0,3_0 -9925,0.0,0.0,44.0,111,85,50,0.0,9410,0.0,0.0,0.0,64.0,0.0,1.0,0.0,1.0,1.0,3851.922306701764,0.0,0.0,12062.0,7,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12062.0,1,0,1_1,1_0 -9926,0.0,0.0,76.0,111,77,70,0.0,9411,0.0,0.0,0.0,256.0,1.0,3.0,0.0,2.0,1.5,3431.3111155725624,0.0,0.0,21610.0,5,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14406.666666666666,2,0,2_0,2_0 -9927,6.0,12.0,40.0,300,48,50,0.0,9413,0.0,300.0,150.0,0.0,2.0,6.0,3.0,5.0,2.4,3774.9321720968264,0.0,0.0,37152.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,15480.0,2,0,2_1,2_1 -9928,2.0,11.0,27.0,300,64,50,0.0,9414,0.0,210.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1964.5239211896703,0.0,0.0,30643.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,14591.904761904761,2,0,2_1,2_1 -9929,7.0,12.0,38.0,112,62,71,0.0,9415,0.0,0.0,200.0,0.0,1.0,5.0,3.0,5.0,2.6,1664.9660900691829,0.0,0.0,43554.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16751.53846153846,2,0,2_0,2_1 -9930,3.0,6.0,44.0,111,56,10,0.0,9419,0.0,300.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3048.8023886191645,0.0,0.0,55711.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,37140.666666666664,5,0,5,5_0 -9931,1.0,10.0,34.0,300,64,60,2.0,942,0.0,0.0,60.0,0.0,1.0,7.0,3.0,5.0,2.4,4138.528704868562,0.0,3700.0,26331.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,10971.25,1,0,1_0,1_1 -9932,0.0,0.0,35.0,400,68,41,0.0,9423,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.3,2432.660996899435,4152.0,0.0,14734.0,1,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11333.846153846154,1,0,1_0,1_1 -9933,1.0,14.0,29.0,111,85,71,2.0,9424,0.0,0.0,200.0,162.0,1.0,4.0,3.0,5.0,2.4,3086.4697081708055,2080.0,1200.0,22872.0,6,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,9530.0,1,0,1_1,1_0 -9934,6.0,6.0,68.0,111,78,50,0.0,9425,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1218.079134089168,0.0,0.0,34368.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22912.0,4,0,4_0,4_0 -9935,1.0,13.0,32.0,112,62,50,2.0,9426,0.0,0.0,250.0,503.0,1.0,2.0,0.0,1.0,1.0,3731.925341907606,0.0,1000.0,21317.0,1,3,10,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21317.0,3,0,3_0,3_0 -9936,0.0,0.0,50.0,111,54,50,0.0,9431,0.0,0.0,0.0,260.0,1.0,2.0,0.0,1.0,1.0,2813.7322121994403,0.0,0.0,8550.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8550.0,1,0,1_1,1_0 -9937,2.0,7.0,45.0,300,46,50,0.0,9433,0.0,400.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2885.0997075930704,3968.0,0.0,42598.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23665.555555555555,4,0,4_0,4_1 -9938,11.0,14.0,35.0,112,46,50,0.0,9434,0.0,0.0,0.0,169.0,1.0,3.0,1.0,2.0,1.3,4404.772419512655,0.0,0.0,21605.0,1,3,9,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,16619.23076923077,2,0,2_1,2_0 -9939,0.0,0.0,85.0,111,72,70,0.0,9436,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,7311.642298879587,0.0,0.0,15624.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15624.0,2,0,2_0,2_0 -9940,0.0,0.0,20.0,111,55,41,0.0,9437,0.0,0.0,0.0,479.0,1.0,3.0,0.0,1.0,1.0,4584.898940695614,0.0,0.0,7904.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7904.0,1,0,1_1,1_0 -9941,7.0,7.0,61.0,111,75,50,0.0,9439,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2400.467393321078,2084.0,0.0,32262.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21508.0,3,0,3_0,3_0 -9942,0.0,0.0,76.0,111,72,70,0.0,9440,0.0,0.0,0.0,470.0,0.0,3.0,0.0,1.0,1.0,3399.5164794648917,0.0,0.0,19440.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19440.0,3,0,3_0,3_0 -9943,4.0,4.0,54.0,112,46,50,0.0,9441,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1905.3659718488311,0.0,0.0,52567.0,4,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,35044.666666666664,5,0,5,5_0 -9944,0.0,0.0,70.0,111,78,71,0.0,9442,0.0,0.0,0.0,417.0,0.0,2.0,0.0,1.0,1.0,3643.6948336562314,0.0,0.0,14980.0,5,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14980.0,2,0,2_0,2_0 -9945,0.0,9.0,68.0,112,78,50,0.0,9443,0.0,0.0,0.0,238.0,0.0,1.0,0.0,1.0,1.0,4706.152628059064,0.0,0.0,12198.0,5,3,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,12198.0,1,0,1_1,1_1 -9946,17.0,18.0,55.0,112,67,71,0.0,9444,0.0,120.0,370.0,0.0,2.0,3.0,0.0,2.0,1.5,1609.3427355967945,0.0,0.0,26095.0,1,1,8,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17396.666666666668,3,0,3_0,3_0 -9947,8.0,10.0,52.0,112,54,50,0.0,9445,0.0,150.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2566.4356737203607,2470.0,0.0,60449.0,1,2,8,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,40299.333333333336,5,0,5,5_1 -9948,7.0,9.0,39.0,111,38,44,0.0,9447,0.0,570.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3153.7396134359933,1716.0,0.0,63278.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,30132.38095238095,5,0,5,5_0 -9949,0.0,10.0,35.0,112,48,43,2.0,945,0.0,500.0,120.0,0.0,2.0,4.0,2.0,4.0,2.1,3105.8130184001175,2600.0,5000.0,44147.0,1,2,9,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,21022.38095238095,3,0,3_0,3_1 -9950,8.0,8.0,59.0,111,75,50,0.0,9450,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1572.4770807712298,1821.0,0.0,28927.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19284.666666666668,3,0,3_0,3_0 -9951,7.0,11.0,65.0,111,86,41,0.0,9451,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3303.3894682927234,1562.0,0.0,9114.0,6,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,9114.0,1,0,1_0,1_0 -9952,4.0,14.0,57.0,221,47,50,0.0,9452,0.0,600.0,450.0,0.0,3.0,7.0,1.0,3.0,2.0,3523.0588550679913,3276.0,0.0,52399.0,1,1,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,26199.5,4,0,4_0,4_0 -9953,6.0,6.0,48.0,111,37,50,0.0,9453,0.0,0.0,200.0,550.0,1.0,2.0,0.0,1.0,1.0,2716.017482698935,2449.0,0.0,29153.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,29153.0,5,0,5,5_0 -9954,0.0,0.0,69.0,120,74,30,1.0,9457,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2263.9974902246777,2340.0,13000.0,61580.0,5,1,0,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,41053.333333333336,5,0,5,5_0 -9955,0.0,0.0,79.0,111,77,70,0.0,946,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3096.5282000273583,0.0,0.0,25105.0,5,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25105.0,4,0,4_0,4_0 -9956,0.0,2.0,57.0,221,46,31,0.0,9460,0.0,2020.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3865.9069567735537,0.0,0.0,46444.0,1,3,1,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,30962.666666666668,5,0,5,5_0 -9957,1.0,2.0,66.0,111,74,30,1.0,9463,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2140.6717120236262,0.0,11606.0,36805.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24536.666666666668,4,0,4_0,4_0 -9958,6.0,14.0,52.0,111,52,50,0.0,9464,0.0,0.0,300.0,0.0,3.0,7.0,1.0,3.0,2.0,1049.6430024708436,5200.0,0.0,51724.0,1,2,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,25862.0,4,0,4_0,4_0 -9959,3.0,3.0,68.0,111,75,70,0.0,9466,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1365.508626394744,2652.0,0.0,19123.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19123.0,3,0,3_0,3_0 -9960,5.0,16.0,32.0,111,54,71,0.0,9469,0.0,0.0,250.0,294.0,1.0,1.0,0.0,1.0,1.0,3228.6119657811014,1560.0,0.0,17368.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,17368.0,3,0,3_0,3_0 -9961,4.0,4.0,48.0,120,54,41,0.0,9470,0.0,0.0,200.0,0.0,2.0,8.0,1.0,3.0,2.0,1920.1822222906922,2557.0,0.0,30534.0,1,1,0,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15267.0,2,0,2_0,2_0 -9962,4.0,10.0,37.0,112,12,31,0.0,9471,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1505.7694656948588,520.0,0.0,33013.0,1,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22008.666666666668,4,0,4_0,4_1 -9963,10.0,10.0,64.0,120,78,50,0.0,9474,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2514.082729121207,3030.0,0.0,63179.0,5,1,0,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,42119.333333333336,5,0,5,5_0 -9964,0.0,21.0,56.0,112,56,50,0.0,9476,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,1293.0734871429433,0.0,0.0,8208.0,5,2,9,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,5472.0,1,0,1_0,1_1 -9965,0.0,0.0,63.0,111,75,41,0.0,9477,0.0,0.0,0.0,259.0,0.0,2.0,0.0,1.0,1.0,3350.649604581899,0.0,0.0,13382.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13382.0,2,0,2_1,2_0 -9966,12.0,12.0,43.0,300,13,31,0.0,9478,0.0,250.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,1439.4357575110125,0.0,0.0,38702.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,18429.52380952381,3,0,3_0,3_1 -9967,4.0,9.0,29.0,111,47,31,0.0,9479,0.0,150.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2311.0033641846035,0.0,0.0,39097.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21720.555555555555,4,0,4_0,4_0 -9968,3.0,5.0,77.0,111,86,70,0.0,9480,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2413.2531421212325,0.0,0.0,24975.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16650.0,2,0,2_0,2_0 -9969,1.0,16.0,40.0,112,69,50,0.0,9481,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,2770.78335513172,0.0,0.0,39870.0,1,3,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17334.782608695652,3,0,3_0,3_0 -9970,3.0,9.0,28.0,111,38,20,0.0,9482,0.0,0.0,0.0,800.0,1.0,1.0,0.0,1.0,1.0,4408.997698407426,0.0,0.0,27511.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27511.0,4,0,4_0,4_0 -9971,0.0,11.0,49.0,111,52,50,2.0,9483,0.0,440.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1111.7074646333238,4559.0,5400.0,43601.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20762.38095238095,3,0,3_0,3_0 -9972,4.0,18.0,49.0,112,38,42,0.0,9484,0.0,200098.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2757.887112139204,1040.0,0.0,56501.0,1,1,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,28250.5,4,0,4_0,4_1 -9973,0.0,0.0,64.0,111,75,70,0.0,9485,0.0,0.0,0.0,286.0,0.0,2.0,0.0,1.0,1.0,2515.062053157898,0.0,0.0,12370.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12370.0,1,0,1_1,1_0 -9974,14.0,14.0,79.0,111,74,20,0.0,9487,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2654.0495765864416,2911.0,0.0,51286.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,34190.666666666664,5,0,5,5_0 -9975,2.0,15.0,46.0,112,33,31,0.0,9488,0.0,450.0,420.0,0.0,3.0,5.0,3.0,5.0,2.6,1374.1941459947514,4472.0,0.0,53790.0,1,2,7,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,20688.46153846154,3,0,3_0,3_1 -9976,0.0,11.0,39.0,111,52,41,0.0,9489,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2230.1655439622955,0.0,0.0,17557.0,4,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,17557.0,3,0,3_1,3_0 -9977,0.0,6.0,69.0,111,77,50,2.0,949,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1832.240704282506,1040.0,5000.0,57220.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,38146.666666666664,5,0,5,5_0 -9978,3.0,3.0,42.0,111,52,50,0.0,9490,0.0,0.0,99999.0,605.0,3.0,4.0,3.0,6.0,3.1,1264.3927638796843,0.0,0.0,72735.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,23462.90322580645,4,0,4_0,4_0 -9979,4.0,4.0,62.0,112,75,41,0.0,9491,0.0,0.0,0.0,710.0,0.0,3.0,0.0,1.0,1.0,3231.9428984241636,0.0,0.0,16679.0,5,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16679.0,2,0,2_0,2_1 -9980,2.0,2.0,30.0,120,42,10,0.0,9492,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,5309.685253613396,1561.0,0.0,20464.0,1,3,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20464.0,3,0,3_0,3_0 -9981,4.0,9.0,63.0,111,34,10,0.0,9494,0.0,0.0,250.0,0.0,3.0,5.0,1.0,3.0,2.0,1499.391333332774,7125.0,0.0,133374.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,66687.0,5,0,5,5_0 -9982,2.0,11.0,59.0,111,78,71,0.0,9495,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3454.5625178048235,1560.0,0.0,4888.0,7,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,4888.0,1,0,1_1,1_0 -9983,7.0,7.0,30.0,300,47,31,0.0,9497,0.0,250.0,60.0,0.0,2.0,5.0,3.0,5.0,2.4,1246.9428415626523,6156.0,0.0,48900.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20375.0,3,0,3_0,3_1 -9984,1.0,1.0,30.0,111,63,42,1.0,950,0.0,60.0,0.0,657.0,2.0,3.0,1.0,3.0,1.8,2344.6985124822904,2839.0,16500.0,33725.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18736.11111111111,3,0,3_0,3_0 -9985,3.0,5.0,63.0,112,74,60,0.0,9500,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,1658.038719933364,0.0,0.0,62093.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,41395.333333333336,5,0,5,5_0 -9986,2.0,4.0,58.0,300,43,50,0.0,9501,0.0,0.0,40.0,0.0,2.0,4.0,0.0,2.0,1.5,1937.1535767945352,0.0,0.0,33052.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22034.666666666668,4,0,4_0,4_1 -9987,4.0,4.0,58.0,120,75,43,0.0,9502,0.0,100799.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1036.1800290344552,7119.0,0.0,54757.0,5,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,27378.5,4,0,4_0,4_1 -9988,2.0,2.0,63.0,212,71,44,0.0,9504,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1453.2420533688376,3919.0,0.0,18664.0,5,1,2,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18664.0,3,0,3_0,3_1 -9989,2.0,2.0,52.0,111,37,31,0.0,9505,0.0,200.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,4419.102764584493,0.0,0.0,28040.0,1,2,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28040.0,4,0,4_0,4_0 -9990,7.0,10.0,48.0,112,62,43,0.0,9506,0.0,99999.0,0.0,0.0,2.0,10.0,3.0,5.0,2.8,1235.8091227133023,0.0,0.0,43127.0,1,2,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15402.500000000002,2,0,2_0,2_1 -9991,5.0,7.0,48.0,112,45,31,0.0,9507,0.0,0.0,130.0,0.0,2.0,5.0,1.0,2.0,1.5,2176.0538375408096,6235.0,0.0,40097.0,1,2,6,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,26731.333333333332,4,0,4_0,4_1 -9992,1.0,5.0,46.0,111,47,50,2.0,9508,0.0,0.0,99999.0,380.0,2.0,4.0,1.0,3.0,2.0,5070.8178041521705,6165.0,7000.0,51343.0,1,3,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,25671.5,4,0,4_0,4_0 -9993,1.0,13.0,35.0,111,67,71,2.0,9509,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,2861.544652211766,0.0,2000.0,23696.0,4,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14810.0,2,0,2_1,2_0 -9994,9.0,11.0,45.0,111,64,71,0.0,951,0.0,0.0,300.0,0.0,2.0,4.0,0.0,2.0,1.5,3477.0465417284154,1560.0,0.0,44482.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,29654.666666666668,5,0,5,5_0 -9995,0.0,7.0,46.0,112,62,50,2.0,9510,0.0,199998.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,4391.2420108532015,3120.0,8000.0,41735.0,1,3,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18145.652173913044,3,0,3_0,3_0 -9996,8.0,8.0,69.0,111,74,30,0.0,9513,0.0,0.0,0.0,783.0,0.0,2.0,0.0,1.0,1.0,3966.623143313943,0.0,0.0,48640.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,48640.0,5,0,5,5_0 -9997,2.0,6.0,33.0,111,22,50,0.0,9514,0.0,99999.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2278.453384400088,0.0,0.0,88130.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,48961.11111111111,5,0,5,5_0 -9998,9.0,9.0,49.0,111,47,50,0.0,9515,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3443.2587347760004,1560.0,0.0,20528.0,1,4,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11404.444444444443,1,0,1_0,1_0 -9999,0.0,0.0,43.0,111,55,71,0.0,9516,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3490.826210642764,468.0,0.0,32446.0,1,4,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21630.666666666668,3,0,3_0,3_0 -10000,10.0,10.0,58.0,111,54,50,0.0,9517,0.0,0.0,99999.0,0.0,1.0,8.0,0.0,2.0,1.5,4110.50883406967,2157.0,0.0,109620.0,1,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,73080.0,5,0,5,5_0 -10001,1.0,19.0,68.0,111,22,71,0.0,9519,0.0,400.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3361.681431082472,3640.0,0.0,14473.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,9648.666666666666,1,0,1_0,1_0 -10002,3.0,3.0,64.0,112,77,70,0.0,9520,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2706.5051826469617,0.0,0.0,31736.0,5,1,4,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21157.333333333332,3,0,3_0,3_1 -10003,3.0,3.0,39.0,112,43,10,0.0,9522,0.0,500.0,200.0,0.0,2.0,5.0,1.0,3.0,1.8,1698.9016784450907,0.0,0.0,78222.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,43456.666666666664,5,0,5,5_1 -10004,5.0,11.0,32.0,120,48,50,0.0,9523,0.0,50.0,230.0,0.0,2.0,4.0,1.0,3.0,1.8,2306.7883127189584,0.0,0.0,43580.0,1,2,0,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,24211.11111111111,4,0,4_0,4_0 -10005,3.0,8.0,60.0,111,78,60,0.0,9525,0.0,0.0,0.0,117.0,1.0,5.0,2.0,4.0,2.5,2721.1813676479896,5200.0,0.0,34598.0,5,3,7,6.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,13839.2,2,0,2_1,2_0 -10006,12.0,12.0,68.0,111,72,71,0.0,9526,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3212.7545069308776,1820.0,0.0,9840.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,9840.0,1,0,1_0,1_0 -10007,0.0,0.0,51.0,120,46,41,1.0,9528,0.0,0.0,600.0,0.0,2.0,5.0,1.0,3.0,1.8,2971.3585892202013,2184.0,11500.0,32536.0,1,1,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,18075.555555555555,3,0,3_0,3_0 -10008,0.0,0.0,43.0,211,68,50,0.0,9529,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3243.2775823805855,0.0,0.0,18124.0,1,3,2,3.0,3,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12082.666666666666,1,0,1_1,1_0 -10009,5.0,8.0,40.0,112,45,60,0.0,953,0.0,500.0,0.0,0.0,1.0,5.0,4.0,6.0,2.7,2505.927581616439,3536.0,0.0,45743.0,1,2,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,16941.85185185185,3,0,3_0,3_1 -10010,5.0,11.0,46.0,221,62,50,0.0,9530,0.0,0.0,500.0,0.0,1.0,5.0,0.0,1.0,1.0,3243.853953527018,3718.0,0.0,32011.0,1,3,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,32011.0,5,0,5,5_0 -10011,0.0,0.0,23.0,111,84,20,0.0,9535,0.0,0.0,0.0,485.0,0.0,2.0,0.0,2.0,1.5,4087.9011482326614,0.0,0.0,11640.0,3,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,7760.0,1,0,1_1,1_0 -10012,5.0,11.0,26.0,111,56,41,0.0,9537,0.0,0.0,300.0,0.0,2.0,2.0,1.0,3.0,1.8,4821.718755963107,0.0,0.0,12540.0,1,3,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,6966.666666666666,1,0,1_1,1_0 -10013,6.0,6.0,47.0,111,54,42,0.0,9538,0.0,300.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2064.4122123975517,4327.0,0.0,44418.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22209.0,4,0,4_0,4_0 -10014,0.0,1.0,30.0,112,47,31,2.0,9539,0.0,400.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1880.2471223345592,3575.0,21000.0,56919.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,31621.666666666664,5,0,5,5_0 -10015,11.0,11.0,74.0,111,74,20,0.0,9541,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1372.4384317194563,1667.0,0.0,62081.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,41387.333333333336,5,0,5,5_0 -10016,3.0,3.0,49.0,400,48,60,0.0,9542,0.0,336.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2695.678739180564,3120.0,0.0,31015.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14769.047619047618,2,0,2_0,2_0 -10017,12.0,12.0,47.0,111,62,50,0.0,9545,0.0,0.0,220.0,0.0,3.0,3.0,2.0,4.0,2.3,2668.1483531345443,3570.0,0.0,101274.0,1,4,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,44032.17391304348,5,0,5,5_0 -10018,0.0,11.0,47.0,111,43,10,0.0,9547,0.0,0.0,600.0,0.0,1.0,10.0,3.0,4.0,2.5,1073.1949173536864,0.0,0.0,72614.0,1,1,9,7.0,2,4.0,0.0,1.0,0,0,0,1,0,0,3.0,1.0,29045.6,5,0,5,5_0 -10019,2.0,4.0,39.0,120,62,71,0.0,9548,0.0,12.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,3008.6103766298384,0.0,0.0,20013.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11118.333333333334,1,0,1_0,1_1 -10020,1.0,1.0,39.0,112,47,43,2.0,9549,0.0,99999.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1667.2173385270871,5460.0,23000.0,25709.0,4,3,9,1.0,4,2.0,1.0,1.0,0,1,0,0,0,1,1.0,1.0,10712.083333333334,1,0,1_1,1_0 -10021,0.0,0.0,65.0,111,74,50,0.0,955,0.0,0.0,0.0,323.0,0.0,3.0,0.0,1.0,1.0,2683.1367237560535,0.0,0.0,22528.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22528.0,4,0,4_0,4_0 -10022,0.0,22.0,73.0,112,75,50,0.0,9550,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2036.5332818314043,0.0,0.0,35310.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,23540.0,4,0,4_0,4_1 -10023,2.0,16.0,53.0,400,64,71,0.0,9552,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2139.5610713157707,1560.0,0.0,8550.0,4,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,5700.0,1,0,1_0,1_1 -10024,8.0,11.0,43.0,111,37,50,0.0,9553,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1787.607350429935,0.0,0.0,69797.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,30346.521739130436,5,0,5,5_0 -10025,1.0,4.0,52.0,221,47,50,2.0,9557,0.0,0.0,0.0,239.0,1.0,3.0,0.0,2.0,1.5,5037.905773004378,1567.0,8500.0,28405.0,1,3,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18936.666666666668,3,0,3_0,3_0 -10026,0.0,0.0,72.0,111,86,71,0.0,9560,0.0,0.0,0.0,63.0,2.0,2.0,1.0,3.0,2.0,3495.2484220380957,0.0,0.0,20780.0,5,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10390.0,1,0,1_1,1_0 -10027,6.0,17.0,45.0,111,54,43,0.0,9561,0.0,0.0,253.0,120.0,1.0,4.0,2.0,3.0,2.0,3033.230013614267,1300.0,0.0,18326.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,9163.0,1,0,1_1,1_0 -10028,2.0,2.0,32.0,112,43,33,1.0,9562,0.0,100.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3045.059578166122,0.0,28000.0,62359.0,1,2,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29694.761904761905,5,0,5,5_1 -10029,7.0,8.0,58.0,111,46,50,0.0,9563,0.0,0.0,300.0,510.0,1.0,2.0,0.0,1.0,1.0,5521.840682582542,1942.0,0.0,21850.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21850.0,4,0,4_0,4_0 -10030,0.0,0.0,39.0,111,38,12,0.0,9564,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4024.0198757661997,0.0,0.0,37047.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37047.0,5,0,5,5_0 -10031,9.0,9.0,43.0,300,21,41,0.0,9565,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2655.2050396849827,0.0,0.0,47540.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20669.565217391308,3,0,3_0,3_1 -10032,3.0,6.0,60.0,111,34,20,0.0,9566,0.0,0.0,99999.0,0.0,1.0,1.0,0.0,1.0,1.0,2744.7312950668406,3020.0,0.0,46989.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,46989.0,5,0,5,5_0 -10033,13.0,14.0,48.0,111,21,50,0.0,9567,0.0,100.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1813.5182091250701,1221.0,0.0,47414.0,1,2,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26341.11111111111,4,0,4_0,4_0 -10034,1.0,1.0,49.0,112,48,50,2.0,9569,0.0,256.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1695.8430424079843,1560.0,18000.0,40139.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17451.739130434784,3,0,3_0,3_0 -10035,5.0,5.0,50.0,112,47,50,0.0,957,0.0,320.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2965.2853194268487,5200.0,0.0,66947.0,1,2,8,0.0,3,4.0,0.0,1.0,1,0,0,0,0,0,2.0,2.0,44631.333333333336,5,0,5,5_1 -10036,12.0,12.0,78.0,111,72,50,0.0,9570,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2750.397769375285,0.0,0.0,19045.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19045.0,3,0,3_0,3_0 -10037,1.0,1.0,42.0,111,21,50,1.0,9571,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2532.888045715898,0.0,54253.0,23339.0,1,2,4,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,23339.0,4,0,4_0,4_0 -10038,1.0,5.0,42.0,111,65,41,0.0,9573,0.0,0.0,50.0,356.0,2.0,3.0,2.0,4.0,2.1,3372.7278674850904,1560.0,0.0,35838.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,17065.714285714286,3,0,3_0,3_0 -10039,1.0,3.0,23.0,111,35,41,2.0,9574,0.0,0.0,0.0,500.0,1.0,1.0,0.0,1.0,1.0,3887.5105520394945,0.0,3500.0,30633.0,1,3,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,30633.0,5,0,5,5_0 -10040,12.0,12.0,88.0,111,77,60,0.0,9575,0.0,0.0,0.0,311.0,0.0,3.0,0.0,1.0,1.0,2710.6493966388093,0.0,0.0,18374.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18374.0,3,0,3_0,3_0 -10041,10.0,20.0,39.0,111,21,50,0.0,9576,0.0,0.0,60.0,0.0,1.0,1.0,0.0,1.0,1.0,3972.723575313286,786.0,0.0,9881.0,1,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,9881.0,1,0,1_0,1_0 -10042,9.0,9.0,74.0,111,74,10,0.0,9577,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,2625.0061434305067,0.0,0.0,71060.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,47373.333333333336,5,0,5,5_0 -10043,3.0,5.0,63.0,400,75,33,0.0,9578,0.0,0.0,0.0,461.0,0.0,3.0,0.0,1.0,1.0,6906.1226156151215,0.0,0.0,23295.0,5,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23295.0,4,0,4_0,4_0 -10044,2.0,2.0,62.0,221,77,70,0.0,958,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2273.281311832342,0.0,0.0,10903.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,10903.0,1,0,1_0,1_0 -10045,0.0,0.0,81.0,221,72,50,0.0,9580,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2522.9897209030173,2933.0,0.0,19827.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13218.0,2,0,2_0,2_0 -10046,2.0,10.0,33.0,300,47,50,0.0,9581,0.0,0.0,0.0,0.0,2.0,5.0,5.0,7.0,3.0,1122.4132012020339,2478.0,0.0,45911.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,15303.666666666666,2,0,2_1,2_1 -10047,0.0,0.0,45.0,111,63,50,0.0,9582,0.0,0.0,0.0,681.0,1.0,2.0,0.0,1.0,1.0,2599.9978880559943,0.0,0.0,17480.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17480.0,3,0,3_0,3_0 -10048,2.0,4.0,38.0,221,34,33,0.0,9583,0.0,375.0,0.0,650.0,2.0,4.0,3.0,5.0,2.4,1231.5871235439763,1560.0,0.0,52479.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21866.25,4,0,4_0,4_0 -10049,11.0,11.0,65.0,300,78,50,0.0,9584,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1214.7642979187651,1040.0,0.0,23649.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15766.0,2,0,2_0,2_1 -10050,5.0,11.0,57.0,120,68,50,0.0,9585,0.0,350.0,70.0,0.0,2.0,4.0,0.0,2.0,1.5,2247.72755854121,2681.0,0.0,36568.0,1,1,0,2.0,3,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,24378.666666666668,4,0,4_0,4_0 -10051,0.0,0.0,57.0,111,77,60,0.0,9586,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3507.657053785123,0.0,0.0,11840.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11840.0,1,0,1_1,1_0 -10052,0.0,0.0,45.0,111,54,20,0.0,9589,0.0,0.0,0.0,450.0,1.0,1.0,0.0,1.0,1.0,3078.2569203330663,0.0,0.0,20822.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20822.0,3,0,3_0,3_0 -10053,1.0,9.0,68.0,221,78,70,2.0,959,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2873.0486761245834,1560.0,2000.0,20792.0,5,3,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,13861.333333333334,2,0,2_1,2_0 -10054,3.0,3.0,80.0,111,75,50,0.0,9591,0.0,0.0,0.0,483.0,0.0,3.0,0.0,2.0,1.5,2630.884284128182,2392.0,0.0,43649.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29099.333333333332,5,0,5,5_0 -10055,6.0,6.0,54.0,111,21,41,0.0,9593,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3406.4656365410397,0.0,0.0,23217.0,1,1,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15478.0,2,0,2_0,2_0 -10056,0.0,0.0,85.0,111,77,70,0.0,9594,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3522.0556172911874,0.0,0.0,23194.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23194.0,4,0,4_0,4_0 -10057,4.0,6.0,53.0,112,53,50,0.0,9595,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1965.1601759972812,0.0,0.0,65244.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,32622.0,5,0,5,5_1 -10058,7.0,7.0,39.0,111,33,20,0.0,9596,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2404.2340229733913,1300.0,0.0,27667.0,1,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27667.0,4,0,4_0,4_0 -10059,3.0,29.0,56.0,111,54,42,0.0,96,0.0,0.0,0.0,478.0,2.0,3.0,0.0,2.0,1.5,3653.0506970917563,0.0,0.0,76054.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,50702.666666666664,5,0,5,5_0 -10060,5.0,19.0,26.0,400,43,10,0.0,9601,0.0,350.0,200.0,0.0,2.0,3.0,0.0,2.0,1.5,2710.272854336774,0.0,0.0,29383.0,1,3,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,19588.666666666668,3,0,3_0,3_1 -10061,0.0,0.0,65.0,111,78,71,0.0,9605,0.0,0.0,0.0,116.0,0.0,2.0,0.0,1.0,1.0,3112.2465664145657,0.0,0.0,10310.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10310.0,1,0,1_1,1_0 -10062,2.0,6.0,36.0,111,67,50,0.0,9608,0.0,100.0,110.0,161.0,2.0,4.0,1.0,3.0,1.8,1407.1627416659596,1820.0,0.0,39965.0,1,3,8,7.0,5,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,22202.777777777777,4,0,4_1,4_0 -10063,2.0,7.0,26.0,300,52,42,0.0,961,0.0,400.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,2294.477944058063,6074.0,0.0,32682.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18156.666666666668,3,0,3_0,3_1 -10064,5.0,5.0,26.0,111,42,20,0.0,9610,0.0,80.0,300.0,252.0,2.0,3.0,1.0,3.0,1.8,5405.403899979574,0.0,0.0,48810.0,1,3,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,27116.666666666664,4,0,4_0,4_0 -10065,0.0,0.0,93.0,112,71,71,0.0,9611,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3745.431679425404,0.0,0.0,8350.0,5,4,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8350.0,1,0,1_0,1_1 -10066,0.0,0.0,58.0,111,56,71,0.0,9612,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,8512.853458475114,0.0,0.0,17606.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17606.0,3,0,3_0,3_0 -10067,0.0,0.0,21.0,111,84,41,0.0,9613,0.0,0.0,0.0,671.0,0.0,4.0,0.0,3.0,2.0,3501.2487045109374,0.0,0.0,11868.0,3,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,5934.0,1,0,1_1,1_0 -10068,8.0,21.0,57.0,120,63,71,0.0,9614,0.0,0.0,0.0,539.0,1.0,2.0,0.0,2.0,1.5,3074.645676893529,3994.0,0.0,24552.0,1,3,0,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16368.0,2,0,2_0,2_0 -10069,1.0,13.0,47.0,111,48,71,2.0,9615,0.0,0.0,0.0,0.0,2.0,12.0,5.0,7.0,3.0,1234.3232136901242,0.0,500.0,63702.0,1,2,7,5.0,4,4.0,0.0,0.0,0,0,1,0,0,0,1.0,3.0,21234.0,3,0,3_0,3_0 -10070,0.0,0.0,46.0,111,64,71,0.0,9616,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3075.674173649823,1238.0,0.0,7662.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7662.0,1,0,1_1,1_0 -10071,0.0,0.0,35.0,111,62,43,0.0,9617,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.5,8689.650002251725,0.0,0.0,22020.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14680.0,2,0,2_0,2_0 -10072,13.0,13.0,48.0,111,67,71,0.0,9618,0.0,0.0,0.0,270.0,1.0,3.0,1.0,2.0,1.5,2972.3298692493368,0.0,0.0,22208.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,14805.333333333334,2,0,2_1,2_0 -10073,2.0,2.0,53.0,112,47,31,0.0,962,0.0,700.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1662.755402749213,2692.0,0.0,90527.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,45263.5,5,0,5,5_0 -10074,2.0,2.0,49.0,112,53,71,0.0,9620,0.0,0.0,150.0,0.0,1.0,5.0,3.0,5.0,2.8,1898.5128908703778,2480.0,0.0,37205.0,1,1,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,13287.5,2,0,2_0,2_0 -10075,4.0,12.0,23.0,111,42,43,0.0,9623,0.0,20.0,250.0,0.0,1.0,2.0,0.0,2.0,1.5,5838.478499559193,0.0,0.0,15702.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,10468.0,1,0,1_1,1_0 -10076,0.0,1.0,29.0,221,43,33,2.0,9624,0.0,450.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,5079.233931440672,0.0,12500.0,46683.0,1,2,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25935.0,4,0,4_0,4_0 -10077,1.0,6.0,30.0,221,85,50,0.0,9626,0.0,0.0,0.0,467.0,0.0,4.0,2.0,3.0,1.6,3486.3609934452193,1561.0,0.0,18362.0,6,3,1,2.0,2,1.0,1.0,0.0,0,1,0,0,0,1,1.0,0.0,11476.25,1,0,1_1,1_0 -10078,6.0,7.0,80.0,111,78,70,0.0,9627,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,5829.125145592609,0.0,0.0,20073.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13382.0,2,0,2_0,2_0 -10079,2.0,2.0,65.0,111,75,50,0.0,9629,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3132.637187454727,6659.0,0.0,56103.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,37402.0,5,0,5,5_0 -10080,4.0,16.0,40.0,112,46,31,0.0,963,0.0,1100.0,0.0,0.0,1.0,6.0,3.0,4.0,1.9,1505.3423666208494,6656.0,0.0,36444.0,1,2,10,0.0,2,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,19181.052631578947,3,0,3_1,3_1 -10081,0.0,0.0,22.0,112,68,50,0.0,9630,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2410.3203333751353,0.0,0.0,18738.0,2,3,6,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,18738.0,3,0,3_1,3_0 -10082,5.0,5.0,38.0,112,21,71,0.0,9631,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3708.0558515360954,0.0,0.0,4241.0,1,2,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,4241.0,1,0,1_0,1_0 -10083,4.0,15.0,40.0,111,56,50,0.0,9632,0.0,0.0,270.0,290.0,1.0,4.0,1.0,2.0,1.3,2359.8387005854615,1560.0,0.0,20754.0,1,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,15964.615384615385,2,0,2_0,2_0 -10084,0.0,0.0,19.0,111,67,50,0.0,9633,0.0,0.0,0.0,124.0,1.0,1.0,0.0,2.0,1.5,2268.7311892650478,0.0,0.0,8168.0,2,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,5445.333333333333,1,0,1_1,1_0 -10085,7.0,7.0,40.0,111,42,20,0.0,9634,0.0,0.0,99999.0,0.0,1.0,4.0,1.0,2.0,1.3,5175.946646625722,0.0,0.0,28690.0,1,2,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22069.23076923077,4,0,4_0,4_0 -10086,4.0,8.0,38.0,300,21,41,0.0,9635,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2653.290420843932,2600.0,0.0,43044.0,1,4,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20497.142857142855,3,0,3_0,3_1 -10087,4.0,4.0,62.0,111,75,41,0.0,9637,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2212.184494876542,1924.0,0.0,50767.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,33844.666666666664,5,0,5,5_0 -10088,0.0,0.0,81.0,111,77,70,0.0,9638,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3160.914090791495,0.0,0.0,15968.0,5,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15968.0,2,0,2_0,2_0 -10089,2.0,2.0,35.0,112,48,20,0.0,964,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1760.5840900559094,4117.0,0.0,60899.0,1,4,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25374.583333333336,4,0,4_0,4_1 -10090,1.0,6.0,47.0,112,62,71,0.0,9641,0.0,0.0,70.0,0.0,3.0,5.0,4.0,6.0,3.3,1741.1390194183725,0.0,0.0,36440.0,1,1,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,11042.424242424244,1,0,1_0,1_0 -10091,15.0,15.0,78.0,111,75,71,0.0,9642,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3688.318240485564,0.0,0.0,4345.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,4345.0,1,0,1_0,1_0 -10092,3.0,6.0,45.0,111,56,42,0.0,9643,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.3,2216.867108030787,0.0,0.0,31520.0,1,3,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,13704.347826086958,2,0,2_1,2_0 -10093,0.0,0.0,46.0,120,13,42,0.0,9644,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1610.6133339247665,0.0,0.0,51023.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22183.913043478264,4,0,4_0,4_0 -10094,1.0,5.0,76.0,111,75,33,2.0,9645,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3528.407118712566,0.0,7000.0,15514.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15514.0,2,0,2_0,2_0 -10095,0.0,0.0,78.0,112,72,70,0.0,9646,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2854.570610842935,0.0,0.0,9763.0,5,4,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9763.0,1,0,1_0,1_1 -10096,5.0,5.0,68.0,111,74,30,0.0,9650,0.0,0.0,0.0,0.0,0.0,5.0,0.0,3.0,2.0,2246.8229092037645,2600.0,0.0,63366.0,5,1,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,31683.0,5,0,5,5_0 -10097,14.0,26.0,55.0,111,63,50,0.0,9651,0.0,100059.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1325.6845811589292,0.0,0.0,24768.0,1,1,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,16512.0,2,0,2_0,2_0 -10098,0.0,7.0,37.0,111,54,60,2.0,9652,0.0,100.0,100.0,0.0,2.0,5.0,3.0,5.0,2.6,2866.8823013525134,5720.0,45000.0,28986.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,11148.461538461537,1,0,1_0,1_0 -10099,2.0,9.0,31.0,111,47,31,0.0,9653,0.0,400.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3078.170070304046,2756.0,0.0,32829.0,1,2,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,21886.0,4,0,4_0,4_0 -10100,6.0,11.0,43.0,111,69,60,0.0,9654,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2950.9088568834754,0.0,0.0,33660.0,1,1,5,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,18700.0,3,0,3_0,3_0 -10101,0.0,0.0,58.0,400,78,50,0.0,9655,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2770.2976854161593,0.0,0.0,12822.0,7,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12822.0,2,0,2_1,2_1 -10102,10.0,12.0,59.0,211,62,60,0.0,9657,0.0,0.0,0.0,299.0,1.0,4.0,0.0,2.0,1.5,4980.320447834256,0.0,0.0,25991.0,1,3,2,3.0,3,2.0,1.0,0.0,0,1,0,0,0,0,2.0,0.0,17327.333333333332,3,0,3_0,3_0 -10103,1.0,3.0,31.0,111,55,41,0.0,9658,0.0,0.0,10.0,0.0,1.0,5.0,2.0,3.0,1.6,1665.4812622913498,0.0,0.0,24607.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,15379.375,2,0,2_1,2_0 -10104,2.0,13.0,47.0,112,21,50,0.0,9659,0.0,0.0,200.0,0.0,2.0,5.0,1.0,2.0,1.5,2531.682352281331,0.0,0.0,36805.0,1,2,7,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,24536.666666666668,4,0,4_0,4_1 -10105,1.0,2.0,58.0,111,34,41,2.0,966,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3910.5180374252227,2600.0,20300.0,40962.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,40962.0,5,0,5,5_0 -10106,2.0,19.0,39.0,112,52,50,0.0,9661,0.0,300.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1609.067392522639,3448.0,0.0,46288.0,1,2,10,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,19286.666666666668,3,0,3_0,3_1 -10107,6.0,7.0,63.0,212,78,50,0.0,9662,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3315.4582781800223,0.0,0.0,22762.0,5,1,3,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15174.666666666666,2,0,2_0,2_1 -10108,3.0,3.0,40.0,111,45,31,0.0,9663,0.0,450.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1600.7058980112763,4680.0,0.0,54888.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,23864.34782608696,4,0,4_0,4_0 -10109,4.0,6.0,35.0,112,63,44,0.0,9667,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2882.3595219920053,0.0,0.0,5810.0,4,3,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,5810.0,1,0,1_0,1_1 -10110,4.0,4.0,70.0,112,78,71,0.0,9668,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2292.4474308022473,1997.0,0.0,26392.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17594.666666666668,3,0,3_0,3_1 -10111,4.0,13.0,29.0,111,45,43,0.0,9669,0.0,0.0,0.0,338.0,1.0,2.0,0.0,1.0,1.0,2667.6935234073944,0.0,0.0,18260.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18260.0,3,0,3_0,3_0 -10112,5.0,7.0,56.0,120,52,44,0.0,967,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2189.104497232882,3572.0,0.0,19292.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19292.0,3,0,3_0,3_1 -10113,0.0,16.0,22.0,111,81,50,0.0,9670,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,2467.8734011364254,2080.0,0.0,12321.0,4,3,5,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,9477.692307692307,1,0,1_1,1_0 -10114,9.0,13.0,36.0,111,62,50,0.0,9672,0.0,0.0,120.0,0.0,2.0,4.0,0.0,2.0,1.5,4439.382629091538,4802.0,0.0,63094.0,1,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,42062.666666666664,5,0,5,5_0 -10115,0.0,0.0,19.0,111,68,60,0.0,9673,0.0,0.0,0.0,432.0,2.0,2.0,0.0,2.0,1.5,3179.925790888836,780.0,0.0,10146.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6764.0,1,0,1_1,1_0 -10116,0.0,8.0,43.0,111,54,50,2.0,9674,0.0,100.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2703.1121642606236,0.0,10000.0,52420.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24961.90476190476,4,0,4_0,4_0 -10117,3.0,29.0,42.0,111,38,12,0.0,9676,0.0,0.0,280.0,0.0,1.0,4.0,1.0,4.0,2.5,1805.4417219600734,4160.0,0.0,68531.0,1,2,10,8.0,5,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,27412.4,4,0,4_0,4_0 -10118,2.0,2.0,40.0,112,63,50,0.0,9677,0.0,300.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,1862.370272937953,0.0,0.0,18031.0,1,2,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,10017.222222222223,1,0,1_0,1_0 -10119,2.0,2.0,59.0,120,31,10,0.0,968,0.0,370.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1395.3213122360849,2813.0,0.0,92596.0,1,1,0,1.0,3,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,61730.666666666664,5,0,5,5_0 -10120,0.0,27.0,44.0,111,31,10,0.0,9680,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3365.652977676614,2964.0,0.0,133543.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,63591.904761904756,5,0,5,5_0 -10121,0.0,0.0,57.0,120,68,71,0.0,9681,0.0,0.0,0.0,279.0,2.0,4.0,1.0,2.0,1.5,8250.055575256663,0.0,0.0,28340.0,1,3,0,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18893.333333333332,3,0,3_0,3_0 -10122,4.0,4.0,31.0,112,54,31,0.0,9682,0.0,300.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2072.656765551249,3724.0,0.0,51493.0,1,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,28607.222222222223,4,0,4_0,4_0 -10123,1.0,1.0,58.0,111,33,41,0.0,9684,0.0,200.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2546.6267216881765,5694.0,0.0,63941.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,31970.5,5,0,5,5_0 -10124,0.0,0.0,45.0,111,42,41,0.0,9685,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2860.824664194513,0.0,0.0,40.0,4,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40.0,1,0,1_0,1_0 -10125,7.0,7.0,62.0,221,75,50,0.0,9687,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2488.168671680281,0.0,0.0,28180.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18786.666666666668,3,0,3_0,3_0 -10126,7.0,7.0,71.0,300,74,44,0.0,9689,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1948.9530284710288,2335.0,0.0,45627.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,30418.0,5,0,5,5_1 -10127,5.0,5.0,52.0,112,34,10,0.0,969,0.0,600.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,916.6009787147252,2600.0,0.0,97366.0,1,1,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,38946.4,5,0,5,5_1 -10128,1.0,11.0,45.0,111,85,60,2.0,9690,0.0,0.0,0.0,0.0,0.0,5.0,4.0,5.0,2.6,2471.0738446334085,5200.0,17000.0,20141.0,4,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,7746.538461538461,1,0,1_1,1_0 -10129,3.0,3.0,63.0,111,56,70,0.0,9692,0.0,50.0,0.0,290.0,1.0,3.0,0.0,1.0,1.0,2246.7978585869787,0.0,0.0,15880.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15880.0,2,0,2_0,2_0 -10130,1.0,6.0,28.0,111,43,10,2.0,9693,0.0,200.0,0.0,534.0,2.0,3.0,0.0,2.0,1.5,2217.3522743480708,1300.0,4000.0,33985.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22656.666666666668,4,0,4_0,4_0 -10131,0.0,4.0,35.0,112,38,12,2.0,9698,0.0,200.0,150.0,0.0,2.0,8.0,4.0,6.0,2.7,1697.9755035997434,2418.0,18000.0,68220.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25266.666666666664,4,0,4_0,4_1 -10132,1.0,2.0,65.0,112,56,70,0.0,9699,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1264.8419162431715,2080.0,0.0,29135.0,5,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,29135.0,5,0,5,5_0 -10133,0.0,3.0,45.0,111,37,20,2.0,97,0.0,0.0,67.0,0.0,2.0,6.0,3.0,5.0,2.6,1747.405482566283,0.0,13000.0,141614.0,4,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,54466.92307692308,5,0,5,5_0 -10134,0.0,0.0,67.0,400,78,71,0.0,9701,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2600.8761566339954,0.0,0.0,10320.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10320.0,1,0,1_0,1_1 -10135,2.0,2.0,38.0,111,37,20,0.0,9702,0.0,200.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1077.7458331995254,3120.0,0.0,5910.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,2462.5,1,0,1_1,1_0 -10136,1.0,1.0,55.0,112,37,60,2.0,9703,0.0,60.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,1078.2090734801209,13000.0,15200.0,147020.0,1,1,6,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,58808.0,5,0,5,5_1 -10137,7.0,8.0,31.0,111,37,10,0.0,9704,0.0,0.0,550.0,0.0,2.0,2.0,0.0,2.0,1.5,3149.1585124676844,4627.0,0.0,107807.0,1,2,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,71871.33333333333,5,0,5,5_0 -10138,5.0,5.0,53.0,112,47,50,0.0,9708,0.0,0.0,420.0,0.0,2.0,5.0,0.0,2.0,1.5,1404.7219323751206,2954.0,0.0,60900.0,1,1,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,40600.0,5,0,5,5_1 -10139,3.0,10.0,48.0,112,35,50,0.0,9709,0.0,100.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,2665.5121558362184,0.0,0.0,53503.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25477.619047619046,4,0,4_0,4_1 -10140,11.0,11.0,63.0,120,22,31,0.0,971,0.0,700.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3171.1675935602066,2080.0,0.0,122447.0,1,1,0,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,81631.33333333333,5,0,5,5_0 -10141,1.0,2.0,56.0,112,62,71,0.0,9710,0.0,200.0,30.0,0.0,2.0,4.0,0.0,2.0,1.5,2275.8017135354526,3860.0,0.0,49132.0,1,1,5,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,32754.666666666668,5,0,5,5_1 -10142,3.0,15.0,19.0,111,84,41,0.0,9713,0.0,0.0,0.0,235.0,0.0,2.0,0.0,1.0,1.0,3686.2319545448986,0.0,0.0,1804.0,3,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,1804.0,1,0,1_0,1_0 -10143,4.0,21.0,56.0,111,52,50,0.0,9714,0.0,150.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2488.6568221300104,2080.0,0.0,14166.0,1,1,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,7083.0,1,0,1_0,1_0 -10144,10.0,10.0,75.0,111,78,70,0.0,9715,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2214.0455310873103,0.0,0.0,15352.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10234.666666666666,1,0,1_0,1_0 -10145,2.0,3.0,59.0,111,62,70,0.0,9718,0.0,0.0,0.0,308.0,1.0,3.0,0.0,2.0,1.5,2234.1658586341237,1040.0,0.0,44928.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29952.0,5,0,5,5_0 -10146,11.0,18.0,39.0,400,11,31,0.0,9719,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2792.571557552719,3642.0,0.0,12506.0,1,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12506.0,1,0,1_0,1_1 -10147,6.0,15.0,31.0,111,52,31,0.0,972,0.0,0.0,400.0,356.0,1.0,2.0,2.0,4.0,2.1,2892.1699052612553,5200.0,0.0,23667.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,11270.0,1,0,1_1,1_0 -10148,0.0,0.0,77.0,112,78,70,0.0,9720,0.0,0.0,0.0,282.0,0.0,3.0,0.0,2.0,1.5,2395.983523553841,0.0,0.0,19655.0,5,3,10,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13103.333333333334,2,0,2_0,2_0 -10149,2.0,10.0,32.0,111,67,50,0.0,9724,0.0,250.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2905.1158242516917,0.0,0.0,34293.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19051.666666666668,3,0,3_0,3_0 -10150,0.0,0.0,76.0,111,77,71,0.0,9726,0.0,0.0,0.0,334.0,0.0,4.0,0.0,1.0,1.0,3114.5046996495494,0.0,0.0,20837.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20837.0,3,0,3_0,3_0 -10151,9.0,9.0,61.0,111,33,10,0.0,9728,0.0,99999.0,99999.0,0.0,2.0,4.0,1.0,3.0,2.0,2096.2413526978103,1144.0,0.0,72385.0,1,1,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,36192.5,5,0,5,5_0 -10152,4.0,17.0,54.0,400,46,60,0.0,9729,0.0,257.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2598.346593845848,3292.0,0.0,19914.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19914.0,3,0,3_0,3_1 -10153,2.0,2.0,56.0,111,52,41,0.0,9730,0.0,0.0,250.0,0.0,1.0,7.0,0.0,2.0,1.5,3113.195739116531,5200.0,0.0,39462.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,26308.0,4,0,4_0,4_0 -10154,1.0,1.0,62.0,111,38,10,1.0,9733,0.0,1350.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2935.6939521976688,4108.0,60000.0,256695.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,171130.0,5,0,5,5_0 -10155,0.0,0.0,39.0,111,43,60,0.0,9734,0.0,0.0,0.0,393.0,2.0,3.0,3.0,5.0,2.4,5858.183720490978,0.0,0.0,33090.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13787.5,2,0,2_1,2_0 -10156,2.0,2.0,67.0,111,75,50,0.0,9736,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1048.4406059154492,0.0,0.0,41355.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,27570.0,4,0,4_0,4_0 -10157,0.0,0.0,38.0,111,56,43,0.0,9739,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,3228.458958926181,0.0,0.0,18286.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14066.153846153846,2,0,2_1,2_0 -10158,3.0,4.0,27.0,111,53,50,0.0,9740,0.0,99999.0,0.0,822.0,2.0,5.0,2.0,4.0,2.1,1257.7841256143722,0.0,0.0,33702.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,16048.571428571428,2,0,2_0,2_0 -10159,0.0,0.0,53.0,111,77,50,0.0,9743,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,3270.26873193351,0.0,0.0,11006.0,7,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7337.333333333333,1,0,1_1,1_0 -10160,7.0,7.0,69.0,112,74,12,0.0,9746,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,2350.5290682907835,1545.0,0.0,55102.0,5,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,36734.666666666664,5,0,5,5_0 -10161,5.0,5.0,55.0,112,42,50,0.0,9747,0.0,95.0,0.0,500.0,1.0,4.0,0.0,2.0,1.5,2023.7329516130299,1300.0,0.0,29221.0,1,3,4,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19480.666666666668,3,0,3_0,3_1 -10162,0.0,0.0,30.0,111,47,10,0.0,9748,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3206.9022762808086,0.0,0.0,44887.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,44887.0,5,0,5,5_0 -10163,8.0,8.0,74.0,400,78,71,0.0,9749,0.0,0.0,0.0,346.0,0.0,2.0,0.0,2.0,1.5,3138.097080960621,0.0,0.0,23397.0,5,3,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15598.0,2,0,2_0,2_0 -10164,2.0,2.0,65.0,111,75,50,0.0,9750,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1079.0157022900469,0.0,0.0,19636.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13090.666666666666,2,0,2_0,2_0 -10165,21.0,26.0,58.0,111,62,70,0.0,9751,0.0,250.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3102.5203821354276,4680.0,0.0,35229.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,23486.0,4,0,4_0,4_0 -10166,9.0,11.0,54.0,211,62,71,0.0,9752,0.0,0.0,20.0,308.0,1.0,4.0,0.0,2.0,1.5,3333.878836392003,0.0,0.0,32882.0,1,3,4,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21921.333333333332,4,0,4_0,4_0 -10167,3.0,6.0,37.0,112,47,20,0.0,9753,0.0,650.0,40.0,0.0,2.0,6.0,0.0,2.0,1.5,1717.7772222523727,0.0,0.0,38189.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25459.333333333332,4,0,4_0,4_1 -10168,8.0,8.0,45.0,111,54,30,0.0,9754,0.0,0.0,99999.0,0.0,1.0,4.0,3.0,4.0,2.5,2748.354431027829,1040.0,0.0,21307.0,1,1,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,8522.8,1,0,1_0,1_0 -10169,4.0,18.0,63.0,111,75,50,0.0,9756,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2025.5253972094688,2080.0,0.0,32762.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21841.333333333332,4,0,4_0,4_0 -10170,6.0,6.0,38.0,112,46,50,0.0,9759,0.0,0.0,0.0,0.0,1.0,5.0,1.0,4.0,2.5,1064.9577860233987,1560.0,0.0,39810.0,1,1,6,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15924.0,2,0,2_0,2_1 -10171,4.0,4.0,88.0,111,74,70,0.0,976,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2638.1554158484814,0.0,0.0,37340.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24893.333333333332,4,0,4_0,4_0 -10172,6.0,6.0,62.0,211,31,10,0.0,9760,0.0,0.0,199998.0,0.0,1.0,8.0,0.0,2.0,1.5,2147.280168221437,6325.0,0.0,396116.0,1,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,264077.3333333333,5,0,5,5_0 -10173,15.0,15.0,74.0,112,72,43,0.0,9761,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2512.606317099785,0.0,0.0,18185.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12123.333333333334,1,0,1_0,1_1 -10174,2.0,22.0,64.0,112,77,70,0.0,9762,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2746.230979605522,1825.0,0.0,43034.0,5,3,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,28689.333333333332,4,0,4_0,4_1 -10175,11.0,12.0,34.0,111,47,31,0.0,9764,0.0,210.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1023.2699066202188,2600.0,0.0,76120.0,1,1,4,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,30448.0,5,0,5,5_0 -10176,2.0,2.0,79.0,111,77,71,0.0,9765,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2914.814894944538,0.0,0.0,13788.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13788.0,2,0,2_0,2_0 -10177,0.0,0.0,38.0,111,37,12,1.0,9767,0.0,0.0,250.0,0.0,2.0,6.0,2.0,4.0,2.1,1788.4820489831513,0.0,22500.0,122728.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,58441.904761904756,5,0,5,5_0 -10178,4.0,4.0,73.0,221,72,71,0.0,9768,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2679.040001859617,5979.0,0.0,41470.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,27646.666666666668,4,0,4_0,4_0 -10179,11.0,17.0,63.0,111,11,70,0.0,9769,0.0,100.0,100.0,0.0,2.0,4.0,2.0,4.0,2.3,2222.1602022058973,4012.0,0.0,30800.0,5,1,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,13391.304347826088,2,0,2_0,2_0 -10180,2.0,10.0,40.0,111,63,71,0.0,977,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,5331.4345794401015,0.0,0.0,20130.0,1,3,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15484.615384615385,2,0,2_0,2_0 -10181,0.0,0.0,79.0,111,78,71,0.0,9770,0.0,0.0,0.0,341.0,0.0,4.0,0.0,2.0,1.5,3640.2958321140295,0.0,0.0,17214.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11476.0,1,0,1_0,1_0 -10182,1.0,9.0,41.0,112,54,50,0.0,9774,0.0,100849.0,99999.0,0.0,1.0,3.0,1.0,2.0,1.3,2520.7086405349078,2964.0,0.0,21291.0,1,3,10,0.0,2,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,16377.692307692307,2,0,2_0,2_1 -10183,5.0,5.0,49.0,111,46,41,0.0,9775,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.3,1866.7839123911267,0.0,0.0,29674.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12901.739130434784,2,0,2_0,2_0 -10184,7.0,8.0,50.0,112,54,50,0.0,9777,0.0,500.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1403.6215035407013,780.0,0.0,27614.0,1,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18409.333333333332,3,0,3_0,3_1 -10185,3.0,5.0,37.0,111,64,71,0.0,9778,0.0,350.0,0.0,622.0,2.0,3.0,2.0,4.0,2.1,4651.4976324626,1092.0,0.0,38750.0,1,3,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18452.38095238095,3,0,3_0,3_0 -10186,0.0,0.0,76.0,111,77,50,0.0,9779,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2125.0312678049063,0.0,0.0,18160.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18160.0,3,0,3_0,3_0 -10187,1.0,6.0,38.0,111,48,43,2.0,978,0.0,0.0,330.0,476.0,2.0,4.0,2.0,4.0,2.1,6149.039262143416,3858.0,7000.0,34454.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,16406.666666666664,2,0,2_0,2_0 -10188,0.0,0.0,70.0,111,78,70,0.0,9780,0.0,0.0,0.0,805.0,0.0,4.0,1.0,3.0,2.0,2627.272259556786,0.0,0.0,15640.0,5,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7820.0,1,0,1_0,1_0 -10189,10.0,16.0,37.0,300,42,20,0.0,9781,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,1279.905940929834,2943.0,0.0,33575.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,15988.095238095237,2,0,2_0,2_1 -10190,0.0,14.0,22.0,300,85,50,0.0,9783,0.0,400.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2642.8227831615736,2392.0,0.0,10822.0,4,3,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,7214.666666666667,1,0,1_1,1_1 -10191,13.0,13.0,74.0,111,75,50,0.0,9786,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1797.10808877398,2701.0,0.0,48264.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,32176.0,5,0,5,5_0 -10192,2.0,8.0,45.0,300,64,71,0.0,9787,0.0,950.0,0.0,0.0,3.0,5.0,3.0,5.0,2.8,1439.7471602251517,3120.0,0.0,40449.0,1,2,0,0.0,4,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,14446.07142857143,2,0,2_0,2_1 -10193,1.0,6.0,27.0,111,43,33,2.0,9789,0.0,900.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3345.883223617786,9393.0,7900.0,41300.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22944.444444444445,4,0,4_0,4_0 -10194,0.0,0.0,28.0,111,54,50,0.0,9790,0.0,0.0,0.0,260.0,2.0,2.0,0.0,2.0,1.5,3462.5661828428856,0.0,0.0,16499.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10999.333333333334,1,0,1_1,1_0 -10195,0.0,0.0,44.0,111,63,50,0.0,9791,0.0,0.0,0.0,190.0,1.0,1.0,0.0,1.0,1.0,3251.136798681486,0.0,0.0,11210.0,4,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11210.0,1,0,1_0,1_0 -10196,8.0,8.0,68.0,111,72,50,0.0,9793,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,3994.7680225166987,3992.0,0.0,50353.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,33568.666666666664,5,0,5,5_0 -10197,3.0,5.0,38.0,111,22,31,0.0,9798,0.0,150.0,200.0,0.0,2.0,9.0,2.0,4.0,2.1,3346.5922034574683,6636.0,0.0,88281.0,4,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,42038.57142857143,5,0,5,5_0 -10198,6.0,8.0,62.0,300,11,50,0.0,9799,0.0,60.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2073.922479231881,0.0,0.0,33106.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22070.666666666668,4,0,4_0,4_1 -10199,2.0,20.0,31.0,111,46,10,0.0,980,0.0,0.0,0.0,755.0,2.0,2.0,0.0,2.0,1.5,2827.5700626174707,6793.0,0.0,52476.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,34984.0,5,0,5,5_0 -10200,0.0,0.0,80.0,111,74,10,0.0,9800,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3173.1601835906563,0.0,0.0,41553.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,41553.0,5,0,5,5_0 -10201,9.0,9.0,70.0,112,74,70,0.0,9802,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2794.0232705483495,1040.0,0.0,26960.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17973.333333333332,3,0,3_0,3_1 -10202,2.0,10.0,41.0,221,67,50,0.0,9803,0.0,0.0,0.0,24.0,1.0,5.0,3.0,4.0,2.1,2678.4638731292707,0.0,0.0,26713.0,1,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,12720.47619047619,2,0,2_1,2_0 -10203,0.0,0.0,40.0,221,63,50,0.0,9804,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2186.4354965569064,0.0,0.0,11600.0,4,3,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,6444.444444444444,1,0,1_1,1_0 -10204,0.0,0.0,87.0,112,86,71,0.0,9805,0.0,0.0,0.0,332.0,0.0,2.0,0.0,1.0,1.0,6640.416914858249,0.0,0.0,13927.0,5,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13927.0,2,0,2_1,2_0 -10205,0.0,7.0,42.0,111,52,71,0.0,9807,0.0,100.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,5843.136120071969,1300.0,0.0,38560.0,1,1,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25706.666666666668,4,0,4_0,4_0 -10206,2.0,5.0,45.0,111,52,50,0.0,9808,0.0,50.0,0.0,660.0,1.0,5.0,3.0,4.0,2.1,1516.680053698544,2860.0,0.0,25950.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12357.142857142857,1,0,1_1,1_0 -10207,6.0,11.0,50.0,221,12,50,0.0,9810,0.0,200.0,240.0,0.0,4.0,4.0,2.0,4.0,2.5,1215.1578762552424,4056.0,0.0,21480.0,1,2,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,8592.0,1,0,1_0,1_0 -10208,6.0,11.0,58.0,221,56,50,0.0,9811,0.0,0.0,100.0,85.0,1.0,3.0,0.0,1.0,1.0,1965.0847141005443,0.0,0.0,14419.0,1,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,14419.0,2,0,2_1,2_0 -10209,9.0,13.0,34.0,112,54,41,0.0,9812,0.0,600.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1866.4673542539315,0.0,0.0,43395.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20664.285714285714,3,0,3_0,3_1 -10210,6.0,6.0,56.0,212,47,50,0.0,9813,0.0,50.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2617.5014704548016,3385.0,0.0,39030.0,1,1,3,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19515.0,3,0,3_0,3_1 -10211,11.0,18.0,44.0,111,52,60,0.0,9815,0.0,0.0,0.0,115.0,1.0,5.0,1.0,3.0,2.0,3159.7227933603185,0.0,0.0,19102.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,9551.0,1,0,1_1,1_0 -10212,1.0,7.0,57.0,111,68,50,2.0,9816,0.0,320.0,0.0,569.0,2.0,4.0,1.0,3.0,2.0,1215.1508341734227,4161.0,4400.0,34262.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17131.0,3,0,3_0,3_0 -10213,1.0,1.0,73.0,112,78,71,0.0,9817,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,4187.395991575494,2080.0,0.0,25558.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17038.666666666668,3,0,3_0,3_1 -10214,7.0,7.0,62.0,111,75,50,0.0,9818,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1896.280824927639,1820.0,0.0,23985.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23985.0,4,0,4_0,4_0 -10215,2.0,10.0,28.0,111,47,50,0.0,9819,0.0,500.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4116.156563052269,3640.0,0.0,43351.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24083.888888888887,4,0,4_0,4_0 -10216,1.0,15.0,38.0,300,47,31,2.0,9821,0.0,400.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,3033.933207678987,0.0,1600.0,38968.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,14432.592592592591,2,0,2_1,2_1 -10217,2.0,5.0,47.0,300,52,42,0.0,9823,0.0,750.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2439.203196330132,5489.0,0.0,30498.0,1,2,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,20332.0,3,0,3_0,3_1 -10218,0.0,19.0,41.0,111,52,31,0.0,9826,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3922.71432151257,0.0,0.0,36407.0,1,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24271.333333333332,4,0,4_0,4_0 -10219,3.0,6.0,38.0,111,37,20,0.0,9827,0.0,0.0,100.0,0.0,2.0,5.0,2.0,4.0,2.1,1610.5123884895934,0.0,0.0,59328.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,28251.42857142857,4,0,4_0,4_0 -10220,0.0,10.0,57.0,112,65,70,0.0,9828,0.0,0.0,0.0,0.0,2.0,7.0,1.0,4.0,2.5,1829.7920459951017,4940.0,0.0,47803.0,4,1,8,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19121.2,3,0,3_0,3_1 -10221,15.0,20.0,50.0,111,85,50,0.0,983,0.0,0.0,0.0,240.0,0.0,2.0,0.0,1.0,1.0,2988.369123079228,5541.0,0.0,12354.0,7,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12354.0,1,0,1_1,1_0 -10222,0.0,0.0,83.0,111,77,71,0.0,9830,0.0,0.0,0.0,516.0,0.0,2.0,0.0,1.0,1.0,3611.7879747911625,0.0,0.0,18960.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18960.0,3,0,3_0,3_0 -10223,2.0,2.0,27.0,112,53,43,0.0,9831,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2338.160887137225,0.0,0.0,30390.0,1,3,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20260.0,3,0,3_0,3_1 -10224,12.0,12.0,79.0,120,75,71,0.0,9833,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2874.221665905854,1563.0,0.0,33230.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,22153.333333333332,4,0,4_0,4_0 -10225,0.0,0.0,29.0,111,63,50,0.0,9835,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,3793.6367919641643,0.0,0.0,17984.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11989.333333333334,1,0,1_1,1_0 -10226,9.0,14.0,20.0,111,62,60,0.0,9836,0.0,0.0,99999.0,219.0,2.0,3.0,1.0,2.0,1.5,2667.1794343187903,0.0,0.0,27814.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,18542.666666666668,3,0,3_1,3_0 -10227,1.0,16.0,61.0,300,78,50,2.0,9838,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2294.220809012702,2012.0,900.0,17184.0,5,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,11456.0,1,0,1_0,1_1 -10228,5.0,18.0,44.0,111,38,20,0.0,9841,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2784.9520878292483,1300.0,0.0,22760.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,22760.0,4,0,4_1,4_0 -10229,3.0,4.0,38.0,111,43,12,0.0,9843,0.0,750.0,35.0,0.0,2.0,5.0,2.0,4.0,2.1,1214.553067367725,4426.0,0.0,47430.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22585.714285714286,4,0,4_0,4_0 -10230,3.0,6.0,46.0,111,63,50,0.0,9845,0.0,0.0,200.0,0.0,2.0,6.0,3.0,5.0,2.8,1871.1543390108686,1561.0,0.0,36130.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,12903.57142857143,2,0,2_1,2_0 -10231,6.0,11.0,61.0,111,77,70,0.0,9846,0.0,0.0,0.0,185.0,0.0,2.0,0.0,1.0,1.0,2742.572433582973,1040.0,0.0,10055.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,10055.0,1,0,1_0,1_0 -10232,1.0,1.0,63.0,111,75,31,1.0,9849,0.0,0.0,0.0,0.0,0.0,12.0,0.0,2.0,1.5,1374.458880211914,2912.0,16000.0,54068.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,36045.333333333336,5,0,5,5_0 -10233,0.0,13.0,27.0,111,38,20,0.0,9851,0.0,0.0,0.0,760.0,2.0,3.0,0.0,3.0,2.0,2764.6042212049465,0.0,0.0,36707.0,1,3,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,18353.5,3,0,3_1,3_0 -10234,6.0,11.0,41.0,112,47,31,0.0,9853,0.0,0.0,350.0,0.0,2.0,4.0,1.0,3.0,1.8,1976.7938405806271,0.0,0.0,42042.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23356.666666666668,4,0,4_0,4_1 -10235,0.0,0.0,38.0,112,63,50,0.0,9854,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3679.688090872491,520.0,0.0,19880.0,1,3,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19880.0,3,0,3_0,3_1 -10236,0.0,0.0,26.0,111,34,10,1.0,9855,0.0,30.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2050.1606953452683,2458.0,9990.0,72966.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,40536.666666666664,5,0,5,5_0 -10237,18.0,18.0,80.0,300,74,12,0.0,9856,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2188.313853335786,0.0,0.0,32213.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21475.333333333332,3,0,3_0,3_1 -10238,11.0,12.0,60.0,111,74,50,0.0,9857,0.0,0.0,0.0,630.0,0.0,3.0,0.0,1.0,1.0,2325.9522322052744,0.0,0.0,25944.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25944.0,4,0,4_0,4_0 -10239,2.0,3.0,75.0,111,75,60,0.0,9859,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1992.160824231063,0.0,0.0,41585.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27723.333333333332,4,0,4_0,4_0 -10240,6.0,7.0,50.0,112,46,50,0.0,986,0.0,99999.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2525.562897662468,8580.0,0.0,44407.0,1,1,9,2.0,4,3.0,1.0,1.0,0,1,0,0,0,0,1.0,2.0,24670.555555555555,4,0,4_0,4_0 -10241,0.0,0.0,26.0,111,55,71,0.0,9860,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.5,3335.3031224780043,0.0,0.0,28604.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19069.333333333332,3,0,3_1,3_0 -10242,1.0,3.0,47.0,111,53,41,2.0,9863,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2903.498881330442,0.0,8000.0,29412.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22624.615384615383,4,0,4_0,4_0 -10243,9.0,14.0,37.0,300,63,42,0.0,9864,0.0,0.0,250.0,0.0,2.0,5.0,0.0,2.0,1.5,2253.2936701832296,212.0,0.0,30683.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20455.333333333332,3,0,3_0,3_1 -10244,14.0,14.0,86.0,111,86,41,0.0,9865,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1569.7101916960119,0.0,0.0,6140.0,6,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,6140.0,1,0,1_0,1_0 -10245,17.0,17.0,77.0,111,75,41,0.0,9869,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3218.1567343321803,0.0,0.0,35558.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23705.333333333332,4,0,4_0,4_0 -10246,5.0,5.0,82.0,211,77,41,0.0,9870,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5120.222869350904,0.0,0.0,21210.0,5,1,3,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21210.0,3,0,3_0,3_0 -10247,14.0,14.0,40.0,111,64,42,0.0,9871,0.0,0.0,0.0,274.0,1.0,3.0,5.0,7.0,3.0,5404.194908853979,0.0,0.0,51805.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,17268.333333333332,3,0,3_1,3_0 -10248,1.0,3.0,71.0,400,74,20,2.0,9873,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2073.7071709900733,1594.0,15000.0,24824.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16549.333333333332,2,0,2_0,2_1 -10249,3.0,3.0,78.0,111,72,50,0.0,9875,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1685.0640311654513,0.0,0.0,26536.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17690.666666666668,3,0,3_0,3_0 -10250,10.0,23.0,64.0,111,78,70,0.0,9876,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4921.575788678538,0.0,0.0,13783.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13783.0,2,0,2_0,2_0 -10251,4.0,11.0,50.0,112,48,50,0.0,9878,0.0,700.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2577.147132776791,2236.0,0.0,42092.0,1,1,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,16836.8,2,0,2_0,2_1 -10252,16.0,16.0,52.0,112,46,50,0.0,9879,0.0,0.0,50.0,0.0,1.0,4.0,0.0,2.0,1.5,1261.332113721404,3640.0,0.0,39920.0,1,1,10,2.0,3,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,26613.333333333332,4,0,4_0,4_0 -10253,4.0,12.0,59.0,111,78,71,0.0,988,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,1896.8499899796907,3276.0,0.0,45229.0,4,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,22614.5,4,0,4_0,4_0 -10254,3.0,3.0,56.0,221,22,41,0.0,9881,0.0,2000.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,4700.850538480906,2586.0,0.0,76411.0,1,1,1,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,50940.666666666664,5,0,5,5_0 -10255,4.0,4.0,44.0,112,46,50,0.0,9882,0.0,120.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2611.789432944048,0.0,0.0,69515.0,1,1,9,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27806.0,4,0,4_0,4_0 -10256,0.0,0.0,43.0,112,22,50,0.0,9883,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1825.7576832951324,0.0,0.0,51946.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22585.217391304348,4,0,4_0,4_1 -10257,9.0,12.0,32.0,111,62,41,0.0,9884,0.0,0.0,40.0,399.0,2.0,3.0,1.0,3.0,1.8,2882.8005010157704,2341.0,0.0,29356.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16308.888888888889,2,0,2_0,2_0 -10258,0.0,0.0,63.0,400,86,70,0.0,9886,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2612.003830078426,0.0,0.0,13604.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13604.0,2,0,2_1,2_1 -10259,4.0,4.0,83.0,111,72,70,0.0,9887,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1714.9889029230576,2979.0,0.0,25511.0,5,1,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17007.333333333332,3,0,3_0,3_0 -10260,10.0,11.0,58.0,111,52,50,0.0,9888,0.0,160.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1894.7077824796718,2808.0,0.0,28645.0,5,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28645.0,4,0,4_0,4_0 -10261,0.0,0.0,81.0,300,86,71,0.0,989,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4354.740321472928,0.0,0.0,11870.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11870.0,1,0,1_0,1_1 -10262,0.0,0.0,45.0,111,56,71,0.0,9892,0.0,0.0,0.0,200.0,1.0,1.0,2.0,3.0,1.8,2993.3294980417836,0.0,0.0,23932.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13295.555555555555,2,0,2_1,2_0 -10263,3.0,5.0,80.0,111,75,42,0.0,9893,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2884.4082889836077,0.0,0.0,38771.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25847.333333333332,4,0,4_0,4_0 -10264,9.0,14.0,64.0,111,37,10,0.0,9894,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3015.148319633944,3297.0,0.0,57095.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,57095.0,5,0,5,5_0 -10265,0.0,0.0,63.0,111,75,50,0.0,9895,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,1948.023109780933,0.0,0.0,29250.0,5,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,19500.0,3,0,3_1,3_0 -10266,4.0,11.0,46.0,211,56,71,0.0,9896,0.0,0.0,0.0,105.0,1.0,4.0,1.0,2.0,1.3,3199.7691459236307,1576.0,0.0,10869.0,4,3,4,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,8360.76923076923,1,0,1_1,1_0 -10267,7.0,8.0,51.0,120,42,30,0.0,9898,0.0,300.0,150.0,0.0,3.0,6.0,1.0,3.0,2.0,1785.483533208623,1337.0,0.0,47143.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23571.5,4,0,4_0,4_1 -10268,3.0,11.0,46.0,211,62,50,0.0,9899,0.0,0.0,80.0,601.0,1.0,4.0,0.0,1.0,1.0,3615.721501191918,0.0,0.0,26849.0,1,3,3,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,26849.0,4,0,4_0,4_0 -10269,1.0,1.0,60.0,120,78,50,1.0,99,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2204.1536847489615,0.0,15943.0,25910.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17273.333333333332,3,0,3_0,3_1 -10270,6.0,8.0,60.0,112,78,70,0.0,9900,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1822.0137381331672,2080.0,0.0,20740.0,5,3,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13826.666666666666,2,0,2_0,2_1 -10271,7.0,7.0,68.0,111,74,20,0.0,9901,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,904.9884178945869,3380.0,0.0,56688.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,37792.0,5,0,5,5_0 -10272,0.0,0.0,23.0,111,63,50,0.0,9902,0.0,0.0,0.0,313.0,2.0,4.0,1.0,3.0,1.8,2776.768838152278,0.0,0.0,33418.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18565.555555555555,3,0,3_0,3_0 -10273,0.0,0.0,20.0,111,84,41,0.0,9903,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3742.414242050222,0.0,0.0,2054.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2054.0,1,0,1_1,1_0 -10274,4.0,9.0,27.0,111,38,12,0.0,9905,0.0,100.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2362.976694481335,0.0,0.0,59394.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,32996.666666666664,5,0,5,5_0 -10275,5.0,5.0,72.0,112,75,71,0.0,9906,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4018.284644434825,0.0,0.0,41886.0,5,1,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27924.0,4,0,4_0,4_0 -10276,9.0,14.0,40.0,221,47,31,0.0,9907,0.0,650.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3739.597036549181,3640.0,0.0,60561.0,1,2,1,1.0,4,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,28838.571428571428,4,0,4_0,4_0 -10277,5.0,19.0,63.0,120,77,71,0.0,9908,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3626.6319591393453,3120.0,0.0,36662.0,5,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18331.0,3,0,3_0,3_1 -10278,0.0,0.0,26.0,111,69,60,0.0,9909,0.0,0.0,0.0,85.0,1.0,3.0,1.0,2.0,1.3,3101.4157540072247,0.0,0.0,12080.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9292.307692307691,1,0,1_1,1_0 -10279,1.0,11.0,31.0,111,64,50,0.0,9910,0.0,0.0,50.0,650.0,2.0,4.0,2.0,4.0,2.1,3471.3379592714,0.0,0.0,33224.0,1,3,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,15820.95238095238,2,0,2_0,2_0 -10280,2.0,7.0,51.0,212,42,20,0.0,9911,0.0,99999.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2491.2708958240996,0.0,0.0,51601.0,1,1,3,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20640.4,3,0,3_0,3_1 -10281,8.0,12.0,43.0,111,33,20,0.0,9912,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2812.5959074416405,0.0,0.0,30849.0,1,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30849.0,5,0,5,5_0 -10282,0.0,0.0,88.0,221,75,71,0.0,9914,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4413.289641846889,0.0,0.0,28828.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28828.0,4,0,4_0,4_0 -10283,2.0,17.0,45.0,120,52,42,0.0,9915,0.0,326.0,180.0,0.0,3.0,4.0,2.0,4.0,2.5,1994.5389442086807,6240.0,0.0,51089.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,20435.6,3,0,3_0,3_1 -10284,8.0,8.0,76.0,400,71,71,0.0,9918,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1699.3390331198252,0.0,0.0,16987.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11324.666666666666,1,0,1_0,1_1 -10285,5.0,16.0,75.0,400,78,71,0.0,9919,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3062.8911350240724,4316.0,0.0,21550.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,14366.666666666666,2,0,2_0,2_0 -10286,3.0,5.0,74.0,111,78,50,0.0,992,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1838.3963954695414,2578.0,0.0,26420.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17613.333333333332,3,0,3_0,3_0 -10287,2.0,2.0,63.0,111,74,60,0.0,9920,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2595.696827539928,1040.0,0.0,74550.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,49700.0,5,0,5,5_0 -10288,21.0,21.0,74.0,221,78,71,0.0,9921,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4114.982012004647,1300.0,0.0,10488.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,10488.0,1,0,1_0,1_0 -10289,5.0,5.0,74.0,111,75,33,0.0,9923,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2441.325637493595,0.0,0.0,34060.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22706.666666666668,4,0,4_0,4_0 -10290,5.0,14.0,47.0,111,68,31,0.0,9924,0.0,0.0,0.0,76.0,1.0,3.0,0.0,1.0,1.0,6506.84575813539,0.0,0.0,13555.0,1,3,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,13555.0,2,0,2_1,2_0 -10291,15.0,15.0,78.0,111,75,70,0.0,9925,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,989.0551717470934,0.0,0.0,17171.0,5,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11447.333333333334,1,0,1_0,1_0 -10292,13.0,18.0,53.0,400,63,50,0.0,9926,0.0,850.0,800.0,0.0,3.0,4.0,1.0,4.0,2.5,1332.9306367337208,4373.0,0.0,38237.0,1,4,0,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,15294.8,2,0,2_0,2_1 -10293,2.0,2.0,55.0,112,52,41,0.0,9927,0.0,370.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2652.82248520494,0.0,0.0,23730.0,1,1,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23730.0,4,0,4_0,4_1 -10294,4.0,10.0,48.0,111,64,50,0.0,9929,0.0,40.0,0.0,520.0,2.0,3.0,1.0,3.0,2.0,2749.6019661359037,0.0,0.0,32464.0,1,3,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16232.0,2,0,2_0,2_0 -10295,5.0,7.0,70.0,111,77,71,0.0,993,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3082.3578390116872,2494.0,0.0,14652.0,5,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,14652.0,2,0,2_1,2_0 -10296,9.0,10.0,66.0,300,72,50,0.0,9930,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1603.0131693891037,0.0,0.0,7496.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,7496.0,1,0,1_1,1_1 -10297,4.0,4.0,36.0,111,37,10,0.0,9932,0.0,540.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1685.728746125872,6477.0,0.0,72907.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,34717.619047619046,5,0,5,5_0 -10298,5.0,9.0,52.0,400,21,60,0.0,9934,0.0,0.0,280.0,0.0,2.0,3.0,0.0,2.0,1.5,2353.8284385117386,3290.0,0.0,33969.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22646.0,4,0,4_0,4_1 -10299,9.0,13.0,41.0,112,21,44,0.0,9936,0.0,250.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2903.634770398873,0.0,0.0,68015.0,1,2,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28339.583333333336,4,0,4_0,4_1 -10300,2.0,2.0,43.0,400,22,12,0.0,9937,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,2267.5100284969812,2689.0,0.0,23430.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11157.142857142857,1,0,1_0,1_1 -10301,8.0,8.0,45.0,111,52,41,0.0,9938,0.0,99999.0,160.0,0.0,2.0,5.0,1.0,3.0,2.0,4508.072687761956,0.0,0.0,41485.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,20742.5,3,0,3_0,3_0 -10302,2.0,11.0,31.0,111,56,50,0.0,9939,0.0,99999.0,0.0,516.0,1.0,4.0,3.0,5.0,2.4,3296.7222346903727,2600.0,0.0,26936.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,11223.333333333334,1,0,1_1,1_0 -10303,0.0,0.0,77.0,111,77,70,0.0,994,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3307.6091748584113,0.0,0.0,16196.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16196.0,2,0,2_0,2_0 -10304,0.0,0.0,39.0,221,56,60,0.0,9940,0.0,0.0,0.0,0.0,2.0,5.0,3.0,4.0,2.3,1866.8498159194332,0.0,0.0,20809.0,4,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9047.391304347826,1,0,1_1,1_0 -10305,0.0,0.0,24.0,111,46,10,0.0,9941,0.0,0.0,0.0,199.0,1.0,2.0,0.0,1.0,1.0,3748.777983820997,0.0,0.0,17442.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17442.0,3,0,3_1,3_0 -10306,2.0,2.0,61.0,111,74,20,0.0,9942,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,3516.1702739178004,4264.0,0.0,45669.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,30446.0,5,0,5,5_0 -10307,2.0,2.0,39.0,111,37,10,0.0,9943,0.0,99999.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3116.626800340391,1664.0,0.0,79690.0,1,2,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,53126.666666666664,5,0,5,5_0 -10308,3.0,3.0,73.0,111,75,41,0.0,9945,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1151.2742548320143,0.0,0.0,40454.0,5,4,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26969.333333333332,4,0,4_0,4_0 -10309,11.0,13.0,50.0,112,65,43,0.0,9949,0.0,392.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1720.4032435844454,0.0,0.0,46199.0,1,3,9,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,30799.333333333332,5,0,5,5_0 -10310,8.0,8.0,60.0,112,74,31,0.0,995,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1747.780548178962,0.0,0.0,31292.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20861.333333333332,3,0,3_0,3_0 -10311,13.0,13.0,63.0,112,54,70,0.0,9955,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1593.0182135855302,0.0,0.0,32764.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21842.666666666668,4,0,4_0,4_1 -10312,8.0,8.0,56.0,400,53,71,0.0,9956,0.0,498.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3571.5356404384856,2080.0,0.0,46690.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,31126.666666666668,5,0,5,5_1 -10313,9.0,13.0,59.0,111,54,50,0.0,9957,0.0,150.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1988.1553695922178,1196.0,0.0,73737.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,36868.5,5,0,5,5_0 -10314,5.0,5.0,50.0,221,11,20,0.0,9958,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1645.4265673193659,3052.0,0.0,25829.0,1,1,1,2.0,3,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,17219.333333333332,3,0,3_0,3_0 -10315,20.0,22.0,52.0,221,47,50,0.0,9959,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1543.9349579812388,0.0,0.0,16770.0,1,2,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16770.0,2,0,2_0,2_0 -10316,3.0,4.0,48.0,300,42,20,0.0,9960,0.0,650.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1540.8036170774267,6203.0,0.0,67048.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,31927.619047619046,5,0,5,5_1 -10317,0.0,0.0,59.0,111,52,50,0.0,9961,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2435.326873500937,0.0,0.0,9877.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9877.0,1,0,1_0,1_0 -10318,2.0,2.0,46.0,111,65,50,0.0,9963,0.0,150.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,3099.9259344083066,1560.0,0.0,32679.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21786.0,4,0,4_0,4_0 -10319,5.0,5.0,69.0,111,71,50,0.0,9964,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1435.638456207352,2080.0,0.0,18872.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12581.333333333334,2,0,2_0,2_0 -10320,0.0,0.0,90.0,111,77,71,0.0,9967,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3475.379596062957,0.0,0.0,14892.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14892.0,2,0,2_0,2_0 -10321,13.0,13.0,84.0,111,77,70,0.0,997,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2543.827403874301,0.0,0.0,14605.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14605.0,2,0,2_0,2_0 -10322,0.0,0.0,84.0,111,78,70,0.0,9971,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2903.2883106784448,0.0,0.0,20485.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13656.666666666666,2,0,2_0,2_0 -10323,1.0,1.0,25.0,111,54,31,1.0,9972,0.0,50.0,0.0,397.0,1.0,2.0,0.0,1.0,1.0,5157.82256686832,0.0,12000.0,18276.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18276.0,3,0,3_0,3_0 -10324,17.0,21.0,73.0,221,75,70,0.0,9974,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2793.138576310881,3121.0,0.0,34078.0,5,4,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,22718.666666666668,4,0,4_0,4_0 -10325,2.0,7.0,48.0,211,47,42,0.0,9975,0.0,40.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3819.0763408368075,0.0,0.0,35610.0,1,1,2,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15482.608695652176,2,0,2_0,2_0 -10326,1.0,1.0,81.0,111,74,10,0.0,9976,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1063.593709641607,0.0,0.0,84170.0,5,1,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,56113.333333333336,5,0,5,5_0 -10327,2.0,2.0,51.0,111,37,41,0.0,9977,0.0,100.0,170.0,0.0,2.0,5.0,0.0,2.0,1.5,1862.1221385889924,2600.0,0.0,70741.0,1,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,47160.666666666664,5,0,5,5_0 -10328,8.0,16.0,50.0,111,69,71,0.0,9978,0.0,99999.0,0.0,0.0,2.0,3.0,4.0,6.0,3.1,5192.868054137692,2080.0,0.0,26936.0,1,3,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,8689.032258064515,1,0,1_1,1_0 -10329,6.0,6.0,61.0,112,75,20,0.0,998,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1304.3446412294395,0.0,0.0,55325.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,36883.333333333336,5,0,5,5_1 -10330,0.0,11.0,25.0,111,84,20,0.0,9980,0.0,0.0,0.0,485.0,0.0,2.0,0.0,1.0,1.0,3592.551690879113,0.0,0.0,5515.0,3,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,5515.0,1,0,1_1,1_0 -10331,2.0,5.0,59.0,120,75,50,0.0,9984,0.0,480.0,0.0,0.0,1.0,8.0,1.0,3.0,2.0,1211.034561485327,0.0,0.0,58820.0,5,2,0,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,29410.0,5,0,5,5_0 -10332,15.0,15.0,64.0,112,78,50,0.0,9985,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2884.2732400311625,3208.0,0.0,23146.0,5,1,7,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23146.0,4,0,4_0,4_1 -10333,4.0,11.0,53.0,400,64,50,0.0,9988,0.0,80.0,0.0,281.0,2.0,3.0,0.0,2.0,1.5,1864.8501493422086,0.0,0.0,31710.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21140.0,3,0,3_0,3_1 -10334,13.0,13.0,38.0,112,11,42,0.0,9989,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3076.025104121003,2549.0,0.0,23859.0,1,4,8,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,11361.42857142857,1,0,1_0,1_1 -10335,0.0,0.0,39.0,111,56,31,0.0,999,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4184.95025133781,0.0,0.0,11370.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11370.0,1,0,1_0,1_0 -10336,1.0,2.0,64.0,111,75,50,1.0,9990,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1860.065109392472,0.0,20158.0,43272.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,28848.0,4,0,4_0,4_0 -10337,2.0,2.0,59.0,212,74,70,0.0,9991,0.0,260.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1429.0817574769894,1147.0,0.0,38271.0,5,2,2,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25514.0,4,0,4_0,4_1 -10338,0.0,0.0,27.0,111,56,42,0.0,9994,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,3079.555206322016,0.0,0.0,11478.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8829.23076923077,1,0,1_1,1_0 -10339,10.0,10.0,58.0,111,65,70,0.0,9996,0.0,0.0,120.0,0.0,1.0,4.0,1.0,2.0,1.5,1952.952893906848,0.0,0.0,32765.0,1,1,4,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21843.333333333332,4,0,4_0,4_0 -10340,13.0,13.0,57.0,300,78,71,0.0,9997,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1179.3217769776227,0.0,0.0,23220.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15480.0,2,0,2_0,2_1 -10341,1.0,10.0,28.0,112,85,50,2.0,9998,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,1473.9716699204291,2392.0,4500.0,17344.0,7,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,8259.047619047618,1,0,1_0,1_1 +0,3.0,5.0,73.0,112,71,71,0.0,1,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1443.2610177173326,1585.48,0.0,35243.0,5,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23495.333333333332,3,0,3_0,3_1 +1,12.0,12.0,45.0,111,37,12,0.0,100,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2769.2862169113164,3120.0,0.0,107062.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,59478.88888888889,5,0,5,5_0 +2,3.0,8.0,54.0,111,45,41,0.0,1000,0.0,600.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2682.038149509965,0.0,0.0,51770.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,25885.0,4,0,4_0,4_0 +3,0.0,0.0,44.0,111,85,60,0.0,10001,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,12125.921549462557,0.0,0.0,12986.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12986.0,1,0,1_1,1_0 +4,2.0,14.0,47.0,111,63,71,0.0,10003,0.0,0.0,120.0,0.0,3.0,5.0,1.0,3.0,2.0,3320.293532673264,0.0,0.0,48481.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,24240.5,4,0,4_0,4_0 +5,10.0,21.0,44.0,112,38,12,0.0,10005,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,4103.151020986681,3465.28,0.0,93808.0,1,2,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,40786.08695652174,5,0,5,5_0 +6,11.0,11.0,35.0,111,33,12,0.0,10007,0.0,0.0,0.0,1132.0,2.0,3.0,0.0,2.0,1.5,3812.108337325521,0.0,0.0,74204.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,49469.333333333336,5,0,5,5_0 +7,2.0,2.0,60.0,112,22,50,0.0,10009,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3079.940945500461,9193.08,0.0,31815.0,1,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21210.0,3,0,3_0,3_1 +8,0.0,0.0,49.0,111,64,71,0.0,1001,0.0,0.0,0.0,273.0,2.0,3.0,0.0,2.0,1.5,1518.3133034450746,0.0,0.0,24138.0,1,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16092.0,2,0,2_0,2_0 +9,9.0,12.0,63.0,111,46,30,0.0,10010,0.0,0.0,250.0,0.0,1.0,3.0,0.0,1.0,1.0,2678.775772033954,2326.48,0.0,28228.0,1,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,28228.0,4,0,4_0,4_0 +10,0.0,0.0,80.0,111,77,71,0.0,10011,0.0,0.0,0.0,283.0,0.0,2.0,0.0,1.0,1.0,6662.519627452481,0.0,0.0,15253.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15253.0,2,0,2_1,2_0 +11,0.0,0.0,66.0,112,78,50,0.0,10012,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1763.0747419468726,0.0,0.0,24648.0,5,1,9,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16432.0,2,0,2_0,2_0 +12,4.0,4.0,67.0,300,78,50,0.0,10013,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1863.0369579434346,0.0,0.0,30189.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20126.0,3,0,3_0,3_1 +13,5.0,21.0,37.0,111,85,60,0.0,10014,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,1.9,687.6484267243248,1571.44,0.0,24376.0,4,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,12829.473684210527,1,0,1_1,1_0 +14,0.0,0.0,69.0,400,78,50,0.0,10015,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3623.2220050278797,0.0,0.0,13114.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13114.0,1,0,1_1,1_1 +15,0.0,0.0,39.0,112,33,41,0.0,10018,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1704.1088085218407,2848.04,0.0,54700.0,1,3,10,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,54700.0,5,0,5,5_0 +16,17.0,17.0,23.0,111,43,33,0.0,10019,0.0,0.0,0.0,298.0,1.0,2.0,0.0,1.0,1.0,3903.0258477400894,0.0,0.0,20064.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,20064.0,3,0,3_1,3_0 +17,7.0,13.0,67.0,111,74,10,0.0,10020,0.0,0.0,150.0,0.0,0.0,4.0,0.0,1.0,1.0,2843.5900198292957,0.0,0.0,22730.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22730.0,3,0,3_0,3_0 +18,1.0,10.0,38.0,111,46,31,2.0,10021,0.0,0.0,0.0,725.0,1.0,5.0,1.0,2.0,1.3,749.0997245369051,0.0,5300.0,33447.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,25728.46153846154,4,0,4_0,4_0 +19,10.0,15.0,72.0,111,78,60,0.0,10022,0.0,0.0,0.0,231.0,0.0,3.0,0.0,1.0,1.0,3037.687022917809,0.0,0.0,12710.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12710.0,1,0,1_1,1_0 +20,2.0,3.0,80.0,112,75,41,0.0,10023,0.0,99999.0,84.0,0.0,0.0,4.0,0.0,2.0,1.5,2358.517384134897,0.0,0.0,36047.0,5,1,6,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,24031.333333333332,4,0,4_0,4_1 +21,4.0,5.0,57.0,111,46,41,0.0,10024,0.0,24.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1183.8782637373797,1303.12,0.0,27200.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27200.0,4,0,4_0,4_0 +22,17.0,21.0,67.0,400,75,44,0.0,10025,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1489.0665280073092,0.0,0.0,49124.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,32749.333333333332,5,0,5,5_0 +23,2.0,2.0,61.0,400,21,50,0.0,10027,0.0,0.0,15.0,0.0,2.0,7.0,0.0,2.0,1.5,1826.9007474498637,0.0,0.0,23309.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15539.333333333334,2,0,2_0,2_1 +24,2.0,5.0,94.0,111,77,41,0.0,10028,0.0,180.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3099.0424474992815,0.0,0.0,23951.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23951.0,4,0,4_0,4_0 +25,3.0,3.0,83.0,111,71,71,0.0,10029,0.0,108.0,280.0,0.0,0.0,4.0,0.0,1.0,1.0,2319.6124029501498,0.0,0.0,13330.0,5,4,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,13330.0,1,0,1_0,1_0 +26,0.0,0.0,75.0,300,74,20,0.0,1003,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2502.8744272918652,2413.84,0.0,86138.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,57425.333333333336,5,0,5,5_1 +27,3.0,8.0,40.0,111,38,31,0.0,10031,0.0,400.0,0.0,700.0,1.0,1.0,0.0,1.0,1.0,3084.972843542195,0.0,0.0,9115.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,9115.0,1,0,1_0,1_0 +28,1.0,6.0,67.0,211,72,70,2.0,10032,0.0,40.0,150.0,0.0,1.0,4.0,0.0,2.0,1.5,1692.7512095508978,2340.0,4000.0,31748.0,5,1,1,2.0,3,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,21165.333333333332,3,0,3_0,3_0 +29,1.0,1.0,38.0,112,63,41,2.0,10034,0.0,200.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1529.016562525534,0.0,18400.0,33099.0,1,2,8,1.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,13791.25,1,0,1_0,1_0 +30,6.0,6.0,63.0,111,75,71,0.0,10036,0.0,0.0,0.0,387.0,0.0,3.0,0.0,2.0,1.5,3514.5957672638388,2600.0,0.0,26874.0,5,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17916.0,2,0,2_0,2_0 +31,2.0,13.0,49.0,111,38,71,0.0,10037,0.0,0.0,35.0,0.0,2.0,5.0,2.0,4.0,2.5,2190.69409774816,0.0,0.0,51315.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20526.0,3,0,3_0,3_0 +32,10.0,10.0,42.0,111,63,50,0.0,10038,0.0,0.0,0.0,0.0,1.0,8.0,2.0,4.0,2.3,1868.264480113215,2756.0,0.0,24506.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,10654.782608695654,1,0,1_1,1_0 +33,2.0,2.0,65.0,111,77,60,0.0,10039,0.0,600.0,300.0,0.0,0.0,3.0,0.0,1.0,1.0,2540.603557327796,0.0,0.0,25343.0,5,1,9,7.0,1,3.0,1.0,1.0,0,0,0,1,0,0,2.0,1.0,25343.0,4,0,4_0,4_0 +34,2.0,4.0,60.0,111,75,41,0.0,10040,0.0,0.0,0.0,395.0,0.0,3.0,0.0,1.0,1.0,3508.155857094905,0.0,0.0,20585.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20585.0,3,0,3_0,3_0 +35,0.0,0.0,44.0,111,63,50,0.0,10041,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,402.92969961868374,2329.6,0.0,29186.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16214.444444444443,2,0,2_0,2_0 +36,0.0,0.0,55.0,111,45,31,0.0,10042,0.0,0.0,0.0,797.0,1.0,3.0,1.0,2.0,1.5,2768.1152946810003,2766.92,0.0,26556.0,1,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17704.0,2,0,2_0,2_0 +37,3.0,3.0,75.0,112,74,44,0.0,10045,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1982.4732892881732,3120.0,0.0,69977.0,5,4,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,69977.0,5,0,5,5_0 +38,0.0,11.0,61.0,211,43,33,0.0,10046,0.0,0.0,60.0,0.0,1.0,9.0,0.0,2.0,1.5,2106.844990745761,0.0,0.0,65891.0,1,1,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,43927.333333333336,5,0,5,5_0 +39,0.0,0.0,40.0,111,37,31,0.0,10047,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1749.9590806633125,5460.0,0.0,95490.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,39787.5,5,0,5,5_0 +40,3.0,3.0,57.0,111,54,71,0.0,10048,0.0,650.0,30.0,350.0,1.0,3.0,0.0,1.0,1.0,2331.635467767904,0.0,0.0,20300.0,1,3,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,20300.0,3,0,3_0,3_0 +41,0.0,3.0,30.0,120,46,41,0.0,1005,0.0,0.0,100.0,0.0,2.0,5.0,1.0,3.0,1.8,3939.9591465186904,2851.6800000000003,0.0,35636.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19797.777777777777,3,0,3_0,3_1 +42,5.0,13.0,68.0,111,77,50,0.0,10051,0.0,650.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1642.3934372333263,0.0,0.0,76159.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,50772.666666666664,5,0,5,5_0 +43,1.0,2.0,60.0,120,71,42,0.0,10053,0.0,300.0,50.0,0.0,1.0,6.0,0.0,2.0,1.5,1437.0924605434077,0.0,0.0,39192.0,5,1,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,26128.0,4,0,4_0,4_0 +44,1.0,2.0,37.0,111,68,71,2.0,10056,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3455.2014622195043,0.0,9000.0,16820.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16820.0,2,0,2_0,2_0 +45,7.0,9.0,21.0,111,38,30,0.0,10057,0.0,300.0,0.0,370.0,1.0,1.0,0.0,1.0,1.0,3471.6880240202177,2080.0,0.0,1584.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,1584.0,1,0,1_0,1_0 +46,2.0,9.0,43.0,111,55,41,0.0,10058,0.0,0.0,300.0,186.0,1.0,3.0,1.0,2.0,1.5,605.2247085054493,0.0,0.0,23184.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,15456.0,2,0,2_1,2_0 +47,12.0,12.0,58.0,111,78,60,0.0,10059,0.0,600.0,0.0,0.0,1.0,2.0,1.0,2.0,1.5,4395.006256150831,0.0,0.0,16849.0,7,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,11232.666666666666,1,0,1_1,1_0 +48,2.0,3.0,59.0,111,64,70,0.0,1006,0.0,750.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2494.33043592433,0.0,0.0,28206.0,1,1,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,28206.0,4,0,4_0,4_0 +49,0.0,0.0,72.0,111,75,33,0.0,10060,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3234.2373569357683,0.0,0.0,45095.0,5,2,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,45095.0,5,0,5,5_0 +50,0.0,0.0,23.0,111,68,31,0.0,10061,0.0,0.0,0.0,370.0,1.0,3.0,0.0,1.0,1.0,3497.7509412552745,0.0,0.0,14300.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14300.0,2,0,2_0,2_0 +51,2.0,2.0,40.0,111,62,50,0.0,10062,0.0,105.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,471.93539708535263,0.0,0.0,19621.0,1,1,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,15093.076923076922,2,0,2_0,2_0 +52,10.0,10.0,44.0,120,62,50,0.0,10063,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,2987.809629997056,0.0,0.0,27230.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,10892.0,1,0,1_1,1_1 +53,0.0,0.0,79.0,111,86,71,0.0,10065,0.0,0.0,0.0,500.0,0.0,2.0,0.0,1.0,1.0,2258.1014370538405,0.0,0.0,18569.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18569.0,2,0,2_0,2_0 +54,5.0,12.0,66.0,111,68,71,0.0,10066,0.0,100.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2846.500496675066,0.0,0.0,37980.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,25320.0,4,0,4_0,4_0 +55,0.0,0.0,41.0,112,48,43,0.0,10067,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1691.8676849306687,1560.0,0.0,52208.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20080.0,3,0,3_0,3_1 +56,7.0,10.0,57.0,111,43,50,0.0,10068,0.0,900.0,0.0,488.0,2.0,3.0,1.0,2.0,1.5,3633.364129354941,0.0,0.0,34976.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23317.333333333332,3,0,3_0,3_0 +57,4.0,5.0,50.0,111,62,50,0.0,10069,0.0,0.0,100.0,0.0,2.0,9.0,0.0,2.0,1.5,2234.3864538774574,2082.6000000000004,0.0,40228.0,1,1,4,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,26818.666666666668,4,0,4_0,4_0 +58,11.0,14.0,72.0,120,74,41,0.0,1007,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1828.9864530314114,2974.92,0.0,33446.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,33446.0,5,0,5,5_1 +59,2.0,2.0,66.0,300,33,71,0.0,10070,0.0,99999.0,99999.0,0.0,1.0,4.0,0.0,2.0,1.5,1777.3870729197085,2860.52,0.0,30857.0,5,1,0,1.0,3,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,20571.333333333332,3,0,3_0,3_0 +60,1.0,11.0,65.0,111,75,50,2.0,10071,0.0,0.0,130.0,0.0,1.0,4.0,1.0,3.0,2.0,1338.8434599887648,4701.32,2100.0,60484.0,5,1,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,30242.0,4,0,4_0,4_0 +61,1.0,8.0,73.0,111,74,41,2.0,10074,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2157.0197471960896,0.0,2000.0,79463.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,79463.0,5,0,5,5_0 +62,0.0,0.0,41.0,400,48,43,0.0,10075,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3557.112031955093,3844.3599999999997,0.0,47939.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22828.095238095237,3,0,3_0,3_1 +63,0.0,0.0,43.0,211,68,71,0.0,10076,0.0,0.0,0.0,0.0,2.0,4.0,2.0,5.0,3.0,1762.7902480673902,2600.0,0.0,45145.0,1,1,3,3.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15048.333333333334,2,0,2_0,2_0 +64,9.0,9.0,78.0,111,86,71,0.0,10077,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1235.509561828703,0.0,0.0,14884.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14884.0,2,0,2_0,2_0 +65,10.0,10.0,45.0,111,56,71,0.0,10078,0.0,0.0,0.0,120.0,2.0,3.0,1.0,3.0,1.8,2520.407038918176,2080.0,0.0,28030.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,15572.222222222223,2,0,2_1,2_0 +66,3.0,12.0,72.0,111,77,60,0.0,10079,0.0,199998.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2594.7075530606417,0.0,0.0,12690.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,12690.0,1,0,1_0,1_0 +67,17.0,24.0,75.0,111,75,50,0.0,1008,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1635.4387749817442,0.0,0.0,29703.0,5,1,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19802.0,3,0,3_0,3_0 +68,1.0,6.0,51.0,120,46,42,0.0,10080,0.0,0.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,358.08641955003577,3380.0,0.0,60083.0,1,1,0,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,24033.2,4,0,4_0,4_0 +69,6.0,6.0,39.0,112,38,30,0.0,10081,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3214.941339788412,0.0,0.0,67290.0,1,2,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32042.85714285714,5,0,5,5_0 +70,0.0,0.0,71.0,111,78,70,0.0,10082,0.0,0.0,0.0,210.0,0.0,3.0,0.0,1.0,1.0,2600.5985346966913,0.0,0.0,14602.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14602.0,2,0,2_0,2_0 +71,0.0,15.0,63.0,111,64,50,0.0,10083,0.0,0.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,2480.990648644,0.0,0.0,28948.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,19298.666666666668,3,0,3_0,3_0 +72,2.0,2.0,46.0,111,52,42,0.0,10085,0.0,0.0,38.0,331.0,1.0,2.0,0.0,1.0,1.0,2062.6763482628235,1099.8,0.0,21151.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21151.0,3,0,3_0,3_0 +73,6.0,8.0,55.0,111,63,50,0.0,10086,0.0,0.0,99999.0,0.0,2.0,5.0,0.0,2.0,1.5,1459.0828421738117,0.0,0.0,41989.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,27992.666666666668,4,0,4_0,4_0 +74,1.0,1.0,89.0,111,74,12,1.0,10087,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2539.1147948594958,0.0,24500.0,74408.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,49605.333333333336,5,0,5,5_0 +75,5.0,7.0,48.0,111,37,31,0.0,10088,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1860.8662096467842,2987.4,0.0,56280.0,1,1,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22512.0,3,0,3_0,3_0 +76,5.0,17.0,25.0,111,43,33,0.0,1009,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,6139.359698886959,0.0,0.0,43640.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,43640.0,5,0,5,5_0 +77,4.0,9.0,46.0,111,54,41,0.0,10090,0.0,0.0,444.0,118.0,1.0,3.0,1.0,2.0,1.5,4240.0765552183,0.0,0.0,13728.0,4,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,9152.0,1,0,1_1,1_0 +78,16.0,21.0,48.0,111,62,50,0.0,10091,0.0,50.0,150.0,0.0,1.0,1.0,0.0,1.0,1.0,1656.1597339509485,0.0,0.0,9039.0,4,3,6,5.0,1,3.0,0.0,1.0,0,0,1,0,0,1,2.0,1.0,9039.0,1,0,1_1,1_0 +79,0.0,0.0,52.0,300,67,71,0.0,10092,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1808.6940586899839,2327.0,0.0,25200.0,4,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16800.0,2,0,2_0,2_1 +80,0.0,19.0,47.0,112,65,50,0.0,10093,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,2304.5418211525275,0.0,0.0,50794.0,1,2,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18140.714285714286,2,0,2_0,2_1 +81,9.0,10.0,29.0,111,53,50,0.0,10094,0.0,0.0,0.0,600.0,2.0,4.0,0.0,2.0,1.5,2405.0808898276687,2759.12,0.0,39453.0,1,3,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,26302.0,4,0,4_0,4_0 +82,6.0,6.0,51.0,111,85,71,0.0,10095,0.0,0.0,0.0,0.0,2.0,6.0,2.0,3.0,2.0,1577.029406722562,0.0,0.0,16330.0,6,4,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,8165.0,1,0,1_0,1_0 +83,10.0,11.0,32.0,111,85,33,0.0,10096,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,666.1169014360638,0.0,0.0,14400.0,6,3,6,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,9000.0,1,0,1_0,1_0 +84,6.0,10.0,38.0,111,64,50,0.0,10097,0.0,0.0,0.0,395.0,2.0,3.0,2.0,4.0,2.3,1007.0265695100264,1560.0,0.0,48348.0,1,3,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21020.869565217392,3,0,3_0,3_0 +85,1.0,11.0,86.0,111,77,50,0.0,10098,0.0,16.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4473.762496813156,0.0,0.0,17727.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17727.0,2,0,2_0,2_0 +86,17.0,17.0,39.0,112,42,30,0.0,101,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2661.087939501533,1872.0,0.0,53632.0,1,2,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25539.04761904762,4,0,4_0,4_0 +87,4.0,10.0,65.0,112,75,50,0.0,10100,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2642.0497339899607,0.0,0.0,40629.0,5,1,8,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,40629.0,5,0,5,5_0 +88,0.0,0.0,64.0,111,75,44,0.0,10101,0.0,0.0,0.0,0.0,0.0,7.0,1.0,3.0,2.0,2305.336001195742,0.0,0.0,36833.0,5,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18416.5,2,0,2_0,2_0 +89,0.0,0.0,46.0,111,85,71,0.0,10102,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3774.201190610858,1658.8,0.0,12236.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12236.0,1,0,1_1,1_0 +90,0.0,7.0,80.0,112,75,44,0.0,10105,0.0,430.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1623.8220538422838,1043.12,0.0,30202.0,5,1,9,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,20134.666666666668,3,0,3_0,3_0 +91,0.0,0.0,59.0,111,64,50,0.0,10106,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,4500.514980285526,9620.0,0.0,28387.0,1,4,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18924.666666666668,3,0,3_0,3_0 +92,5.0,10.0,57.0,112,63,71,0.0,10107,0.0,0.0,230.0,0.0,4.0,6.0,2.0,4.0,2.5,2420.3360260513873,4165.72,0.0,55449.0,1,1,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,22179.6,3,0,3_0,3_1 +93,0.0,0.0,19.0,211,68,60,0.0,10108,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,683.6193099243549,520.0,0.0,14065.0,1,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14065.0,2,0,2_1,2_0 +94,2.0,6.0,56.0,120,62,71,0.0,1011,0.0,50.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2132.390662656699,3122.08,0.0,36974.0,1,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24649.333333333332,4,0,4_0,4_0 +95,9.0,11.0,27.0,111,55,30,0.0,10111,0.0,0.0,0.0,272.0,1.0,2.0,0.0,1.0,1.0,3741.482365773435,2268.76,0.0,14790.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14790.0,2,0,2_1,2_0 +96,0.0,0.0,50.0,120,47,50,0.0,10113,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,1496.463556947867,5408.0,0.0,54111.0,1,1,0,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19325.357142857145,3,0,3_0,3_0 +97,8.0,8.0,28.0,111,43,33,0.0,10115,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,3960.545594084798,0.0,0.0,30600.0,1,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,30600.0,4,0,4_0,4_0 +98,0.0,12.0,34.0,400,69,43,2.0,10116,0.0,140.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1810.2257524180866,6240.52,1500.0,33370.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,18538.888888888887,2,0,2_0,2_1 +99,4.0,4.0,76.0,111,86,71,0.0,10117,0.0,320.0,0.0,482.0,2.0,4.0,2.0,5.0,2.8,1975.3334405813011,0.0,0.0,52540.0,5,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,18764.285714285714,3,0,3_0,3_0 +100,7.0,12.0,56.0,111,52,20,0.0,10118,15.0,33.0,0.0,118.0,1.0,3.0,2.0,3.0,2.0,1007.8264314621658,520.0,0.0,22916.0,4,3,9,7.0,2,3.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,11458.0,1,0,1_1,1_0 +101,1.0,9.0,32.0,111,85,71,0.0,10119,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,1379.5245978111302,0.0,0.0,12774.0,6,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,9826.153846153846,1,0,1_1,1_0 +102,0.0,0.0,70.0,111,78,50,0.0,1012,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1930.0735812659384,0.0,0.0,27700.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18466.666666666668,2,0,2_0,2_0 +103,4.0,20.0,35.0,112,52,41,0.0,10120,0.0,0.0,130.0,44.0,1.0,3.0,3.0,5.0,2.4,853.4188959047872,2340.0,0.0,30794.0,1,3,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,12830.833333333334,1,0,1_1,1_0 +104,10.0,10.0,48.0,111,63,50,0.0,10122,0.0,0.0,50.0,721.0,1.0,4.0,2.0,4.0,2.5,907.5893930263255,0.0,0.0,36344.0,1,3,8,7.0,5,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,14537.6,2,0,2_1,2_0 +105,0.0,0.0,30.0,211,55,60,0.0,10123,0.0,0.0,0.0,0.0,1.0,6.0,3.0,4.0,1.9,87.05917586919806,2080.0,0.0,9170.0,4,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,4826.315789473684,1,0,1_0,1_0 +106,11.0,11.0,62.0,111,75,31,0.0,10124,0.0,220.0,0.0,500.0,0.0,3.0,0.0,1.0,1.0,3233.1469147304665,0.0,0.0,31280.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,31280.0,4,0,4_0,4_0 +107,3.0,4.0,48.0,112,54,31,0.0,10128,0.0,284.0,16.0,0.0,1.0,4.0,1.0,2.0,1.3,791.8136849031512,0.0,0.0,31250.0,1,2,10,2.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,24038.46153846154,4,0,4_0,4_0 +108,14.0,14.0,36.0,111,53,50,0.0,1013,0.0,0.0,125.0,366.0,1.0,5.0,3.0,5.0,2.4,2018.1120360256216,3645.72,0.0,34934.0,1,3,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,14555.833333333334,2,0,2_1,2_0 +109,0.0,0.0,29.0,111,54,60,0.0,10132,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,4293.901232279452,0.0,0.0,19923.0,4,3,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12451.875,1,0,1_1,1_0 +110,4.0,4.0,69.0,111,74,10,0.0,10133,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1134.870045583239,0.0,0.0,50987.0,5,4,7,6.0,1,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,50987.0,5,0,5,5_0 +111,7.0,12.0,49.0,111,84,31,0.0,10134,130.0,30.0,0.0,0.0,2.0,5.0,3.0,4.0,2.5,1564.930463863592,0.0,0.0,39078.0,3,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,15631.2,2,0,2_1,2_0 +112,13.0,13.0,93.0,111,77,41,0.0,10135,0.0,100.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3452.337748423046,0.0,0.0,21290.0,5,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21290.0,3,0,3_0,3_0 +113,5.0,15.0,66.0,111,78,71,0.0,1014,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3342.582797331936,3328.0,0.0,48821.0,5,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24410.5,4,0,4_0,4_0 +114,0.0,0.0,36.0,111,38,12,0.0,10140,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3477.152734334016,0.0,0.0,68639.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32685.238095238095,5,0,5,5_0 +115,1.0,1.0,24.0,300,69,71,0.0,10142,0.0,550.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,1218.6177349486304,2600.0,0.0,24402.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,15251.25,2,0,2_1,2_1 +116,4.0,8.0,45.0,111,34,10,0.0,10143,0.0,0.0,250.0,0.0,2.0,5.0,1.0,3.0,2.0,4471.828489796644,2842.32,0.0,92018.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,46009.0,5,0,5,5_0 +117,5.0,5.0,42.0,112,54,31,0.0,10144,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2671.9653489540365,2392.0,0.0,49785.0,1,3,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27658.333333333332,4,0,4_0,4_1 +118,14.0,14.0,40.0,111,34,10,0.0,10146,0.0,0.0,0.0,0.0,2.0,10.0,3.0,5.0,2.4,2757.4276802204745,0.0,0.0,323578.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,134824.1666666667,5,0,5,5_0 +119,0.0,0.0,72.0,112,72,70,0.0,10147,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1532.8046038194684,2010.8400000000001,0.0,36286.0,5,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24190.666666666668,4,0,4_0,4_0 +120,0.0,0.0,42.0,111,56,50,0.0,10149,0.0,0.0,0.0,0.0,1.0,5.0,4.0,5.0,2.6,505.43766028523106,0.0,0.0,32510.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12503.846153846154,1,0,1_1,1_0 +121,0.0,0.0,77.0,112,78,50,0.0,1015,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1406.5906122291747,0.0,0.0,26326.0,5,4,9,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17550.666666666668,2,0,2_0,2_0 +122,11.0,11.0,89.0,111,75,33,0.0,10150,0.0,0.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,3462.60595030431,0.0,0.0,37870.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,37870.0,5,0,5,5_0 +123,1.0,10.0,63.0,300,78,50,0.0,10151,0.0,450.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2248.753307699962,0.0,0.0,32737.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21824.666666666668,3,0,3_0,3_1 +124,0.0,0.0,76.0,120,78,50,0.0,10152,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1625.043157750176,0.0,0.0,21197.0,5,1,0,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14131.333333333334,2,0,2_0,2_0 +125,2.0,2.0,72.0,300,77,70,0.0,10153,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2366.568838655854,0.0,0.0,11918.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11918.0,1,0,1_0,1_0 +126,6.0,11.0,48.0,211,53,50,0.0,10154,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1094.658919703865,0.0,0.0,48253.0,1,2,2,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,17233.214285714286,2,0,2_1,2_0 +127,0.0,0.0,52.0,112,53,50,0.0,10155,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1621.0591074278195,5408.0,0.0,72207.0,1,1,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,34384.28571428571,5,0,5,5_1 +128,6.0,11.0,33.0,111,43,30,0.0,10157,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1860.1737447613964,0.0,0.0,57081.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23783.75,3,0,3_0,3_0 +129,8.0,8.0,49.0,111,56,60,0.0,1016,0.0,498.0,0.0,205.0,2.0,4.0,4.0,6.0,3.1,1640.5759583929218,0.0,0.0,35615.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,11488.709677419354,1,0,1_1,1_0 +130,0.0,0.0,50.0,221,65,50,0.0,10160,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1713.2546890871151,1924.0,0.0,41663.0,1,2,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27775.333333333332,4,0,4_0,4_0 +131,2.0,2.0,37.0,112,46,43,0.0,10161,0.0,0.0,200.0,0.0,2.0,4.0,3.0,5.0,2.4,2566.509707076367,462.8,0.0,43738.0,1,3,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,18224.166666666668,2,0,2_1,2_1 +132,1.0,9.0,41.0,112,52,71,0.0,10162,0.0,0.0,0.0,474.0,2.0,4.0,4.0,6.0,3.3,2477.3624090048966,3120.0,0.0,61126.0,1,3,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,18523.030303030304,2,0,2_0,2_1 +133,0.0,0.0,46.0,111,52,71,0.0,10163,0.0,0.0,0.0,570.0,2.0,3.0,1.0,3.0,1.8,2019.4480610558387,0.0,0.0,47420.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26344.444444444445,4,0,4_0,4_0 +134,3.0,11.0,42.0,112,38,31,0.0,10167,0.0,400.0,0.0,0.0,2.0,13.0,4.0,6.0,2.9,1919.5584983753738,2372.24,0.0,68330.0,1,2,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23562.068965517243,3,0,3_0,3_1 +135,3.0,10.0,43.0,111,38,12,0.0,10170,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,800.1545428853863,0.0,0.0,75060.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,35742.857142857145,5,0,5,5_0 +136,9.0,9.0,28.0,111,52,43,0.0,10173,0.0,500.0,0.0,680.0,2.0,3.0,1.0,3.0,1.8,3352.5595969397145,0.0,0.0,41036.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22797.777777777777,3,0,3_0,3_0 +137,6.0,8.0,37.0,111,46,30,0.0,10174,0.0,80.0,0.0,529.0,1.0,2.0,0.0,1.0,1.0,2613.634160541196,0.0,0.0,29926.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,29926.0,4,0,4_0,4_0 +138,0.0,0.0,74.0,111,77,71,0.0,10176,0.0,0.0,0.0,229.0,0.0,2.0,0.0,1.0,1.0,3203.572625473127,0.0,0.0,16220.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16220.0,2,0,2_0,2_0 +139,0.0,13.0,65.0,112,68,70,0.0,10177,0.0,20.0,0.0,0.0,2.0,5.0,1.0,2.0,1.5,2545.6804893932904,0.0,0.0,14960.0,1,1,9,1.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,9973.333333333334,1,0,1_0,1_0 +140,6.0,6.0,28.0,112,62,31,0.0,1018,0.0,150.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3005.0101186381066,3218.7999999999997,0.0,57943.0,1,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,32190.555555555555,5,0,5,5_0 +141,3.0,5.0,44.0,111,85,71,0.0,10180,0.0,50.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,920.6194140062084,0.0,0.0,14015.0,6,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10780.76923076923,1,0,1_1,1_0 +142,0.0,12.0,46.0,112,46,31,2.0,10181,0.0,0.0,60.0,0.0,2.0,5.0,2.0,4.0,2.3,2246.7561799071623,0.0,3000.0,46086.0,4,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,20037.391304347828,3,0,3_0,3_1 +143,2.0,8.0,39.0,300,45,42,0.0,10182,0.0,400.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1842.6271463392804,0.0,0.0,41570.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19795.238095238095,3,0,3_0,3_1 +144,5.0,5.0,52.0,111,22,30,0.0,10185,0.0,500.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2324.735913755466,0.0,0.0,14837.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,14837.0,2,0,2_1,2_0 +145,12.0,12.0,77.0,111,86,71,0.0,10187,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1785.1053780360467,0.0,0.0,12855.0,5,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12855.0,1,0,1_0,1_0 +146,10.0,10.0,48.0,111,68,71,0.0,10188,0.0,0.0,100.0,336.0,1.0,3.0,0.0,1.0,1.0,10020.30318305883,1559.48,0.0,10632.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,10632.0,1,0,1_1,1_0 +147,0.0,0.0,30.0,111,55,41,0.0,10189,0.0,0.0,0.0,110.0,1.0,2.0,0.0,1.0,1.0,2883.3076264920505,2132.0,0.0,15210.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15210.0,2,0,2_1,2_0 +148,12.0,17.0,81.0,111,77,71,0.0,1019,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1876.3505574242597,0.0,0.0,23478.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,23478.0,3,0,3_0,3_0 +149,5.0,15.0,77.0,112,77,71,0.0,10190,0.0,0.0,170.0,0.0,0.0,5.0,0.0,1.0,1.0,3667.159013928598,0.0,0.0,29200.0,5,1,6,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,29200.0,4,0,4_0,4_1 +150,11.0,11.0,28.0,111,43,30,0.0,10191,0.0,0.0,0.0,513.0,1.0,3.0,0.0,1.0,1.0,2995.343390765195,0.0,0.0,16366.0,1,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,16366.0,2,0,2_0,2_0 +151,17.0,17.0,39.0,112,22,50,0.0,10192,0.0,100.0,70.0,0.0,2.0,4.0,1.0,3.0,1.8,774.2497811570389,5488.6,0.0,32270.0,1,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17927.777777777777,2,0,2_0,2_1 +152,4.0,4.0,32.0,111,43,30,0.0,10193,0.0,0.0,0.0,580.0,1.0,1.0,0.0,1.0,1.0,4194.611994640937,0.0,0.0,37574.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,37574.0,5,0,5,5_0 +153,4.0,9.0,34.0,221,67,50,0.0,10194,0.0,100.0,0.0,58.0,1.0,5.0,3.0,4.0,2.1,301.75618885560715,780.0,0.0,27055.0,4,3,1,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,12883.333333333332,1,0,1_1,1_0 +154,8.0,8.0,28.0,111,47,31,0.0,10195,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4142.90848521982,1560.0,0.0,22014.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22014.0,3,0,3_0,3_0 +155,4.0,5.0,41.0,112,85,30,0.0,10196,0.0,1000.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,2067.574466026947,3120.0,0.0,40361.0,6,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19219.52380952381,3,0,3_0,3_1 +156,1.0,3.0,83.0,112,78,71,2.0,10198,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2077.3994921580215,0.0,7500.0,30020.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20013.333333333332,3,0,3_0,3_0 +157,0.0,0.0,71.0,300,74,30,0.0,10199,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1483.6921283914633,0.0,0.0,55400.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,36933.333333333336,5,0,5,5_1 +158,11.0,12.0,46.0,111,54,31,0.0,1020,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,1402.9080204206393,0.0,0.0,39918.0,1,2,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19959.0,3,0,3_0,3_0 +159,0.0,0.0,35.0,111,37,20,0.0,10200,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2073.4861279589263,2000.96,0.0,78207.0,1,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,37241.42857142857,5,0,5,5_0 +160,0.0,0.0,24.0,111,69,42,0.0,10201,0.0,0.0,0.0,536.0,1.0,2.0,0.0,1.0,1.0,5172.728678721696,0.0,0.0,15389.0,1,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15389.0,2,0,2_1,2_0 +161,2.0,2.0,19.0,111,84,41,0.0,10202,0.0,450.0,0.0,380.0,0.0,1.0,0.0,1.0,1.0,4968.874988690112,0.0,0.0,6400.0,3,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,6400.0,1,0,1_1,1_0 +162,10.0,14.0,50.0,111,43,33,0.0,10203,0.0,70.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2175.700139696581,0.0,0.0,61488.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,40992.0,5,0,5,5_0 +163,1.0,13.0,82.0,120,71,70,0.0,10204,0.0,0.0,80.0,0.0,0.0,2.0,0.0,2.0,1.5,1786.386257902802,0.0,0.0,24260.0,5,4,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,16173.333333333334,2,0,2_0,2_1 +164,9.0,11.0,72.0,111,74,60,0.0,10206,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1365.4101779625578,0.0,0.0,48262.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,32174.666666666668,5,0,5,5_0 +165,3.0,4.0,22.0,111,46,30,0.0,10207,0.0,0.0,800.0,0.0,2.0,3.0,0.0,2.0,1.5,4241.278320541291,0.0,0.0,41358.0,1,2,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,27572.0,4,0,4_0,4_0 +166,3.0,4.0,21.0,120,68,50,0.0,10208,0.0,0.0,0.0,197.0,1.0,1.0,0.0,1.0,1.0,4190.226883177627,0.0,0.0,5441.0,4,3,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,1,1.0,0.0,5441.0,1,0,1_1,1_1 +167,0.0,0.0,29.0,111,47,30,0.0,10210,0.0,0.0,0.0,700.0,2.0,3.0,0.0,2.0,1.5,2502.888646292844,0.0,0.0,33091.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22060.666666666668,3,0,3_0,3_0 +168,16.0,16.0,27.0,112,52,43,0.0,10213,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3890.883673638952,3351.4,0.0,42251.0,1,2,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28167.333333333332,4,0,4_0,4_0 +169,0.0,0.0,70.0,120,72,70,0.0,10214,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1982.0205678996333,0.0,0.0,20288.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20288.0,3,0,3_0,3_1 +170,3.0,3.0,32.0,112,43,50,0.0,10215,0.0,750.0,0.0,52.0,1.0,3.0,1.0,2.0,1.3,599.8566296179605,0.0,0.0,14056.0,4,3,9,3.0,2,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,10812.307692307691,1,0,1_1,1_0 +171,10.0,35.0,64.0,111,74,50,0.0,10217,0.0,0.0,320.0,0.0,0.0,6.0,0.0,2.0,1.5,1424.3298168811832,0.0,0.0,27141.0,5,1,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,18094.0,2,0,2_0,2_0 +172,0.0,0.0,66.0,120,78,70,0.0,10218,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,1904.2820273684895,0.0,0.0,34023.0,5,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22682.0,3,0,3_0,3_1 +173,0.0,0.0,43.0,111,23,43,0.0,10219,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2262.768529568752,1560.0,0.0,73730.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32056.521739130436,5,0,5,5_0 +174,7.0,7.0,73.0,111,77,60,0.0,10220,0.0,0.0,350.0,0.0,0.0,4.0,0.0,2.0,1.5,3383.8670598928666,0.0,0.0,27870.0,5,1,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18580.0,2,0,2_0,2_0 +175,1.0,9.0,50.0,112,38,31,0.0,10221,0.0,900.0,500.0,0.0,2.0,5.0,2.0,4.0,2.5,1920.6616266759324,3380.0,0.0,98485.0,1,3,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,39394.0,5,0,5,5_1 +176,1.0,2.0,64.0,120,56,71,0.0,10222,0.0,35.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2853.8241128679297,1768.0,0.0,29010.0,1,1,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19340.0,3,0,3_0,3_1 +177,11.0,11.0,49.0,111,43,33,0.0,10223,0.0,600.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,1785.8341048669763,0.0,0.0,55011.0,1,2,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,36674.0,5,0,5,5_0 +178,0.0,16.0,27.0,111,54,30,0.0,10226,0.0,0.0,0.0,657.0,1.0,2.0,0.0,1.0,1.0,7518.533888828364,0.0,0.0,24704.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,24704.0,4,0,4_0,4_0 +179,0.0,0.0,54.0,300,69,50,0.0,10227,0.0,0.0,0.0,0.0,3.0,5.0,0.0,4.0,2.5,4119.921251337953,0.0,0.0,44240.0,1,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17696.0,2,0,2_0,2_1 +180,25.0,25.0,39.0,111,63,43,0.0,10228,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1656.007986083386,2080.0,0.0,32211.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11503.928571428572,1,0,1_1,1_0 +181,2.0,7.0,57.0,111,34,30,0.0,10229,0.0,490.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2253.1632355339143,2444.0,0.0,39855.0,1,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,39855.0,5,0,5,5_0 +182,4.0,4.0,44.0,111,34,10,0.0,1023,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2757.1509139153222,621.4,0.0,170355.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,81121.42857142857,5,0,5,5_0 +183,0.0,0.0,76.0,300,75,70,0.0,10230,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1879.6670185885189,3120.0,0.0,20959.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13972.666666666666,2,0,2_0,2_1 +184,0.0,16.0,102.0,111,78,71,0.0,10232,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1762.2216274524117,0.0,0.0,37937.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25291.333333333332,4,0,4_0,4_0 +185,5.0,6.0,69.0,112,78,70,0.0,10233,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2992.4453091763935,2080.0,0.0,23168.0,5,1,7,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,15445.333333333334,2,0,2_0,2_1 +186,7.0,7.0,61.0,111,56,50,0.0,10235,0.0,99999.0,145.0,0.0,2.0,3.0,1.0,3.0,2.0,1897.1538615593565,440.96000000000004,0.0,10130.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,5065.0,1,0,1_0,1_0 +187,8.0,11.0,43.0,111,54,31,0.0,10236,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2182.0055073278677,2236.0,0.0,49096.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23379.04761904762,3,0,3_0,3_0 +188,0.0,0.0,41.0,111,38,12,0.0,10237,0.0,0.0,0.0,770.0,2.0,4.0,2.0,4.0,2.1,3016.2043565295844,2215.2000000000003,0.0,61631.0,1,3,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29348.095238095237,4,0,4_0,4_0 +189,0.0,0.0,39.0,111,21,43,0.0,10239,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2843.9301216516296,3276.0,0.0,58240.0,1,1,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27733.333333333332,4,0,4_0,4_0 +190,2.0,21.0,67.0,111,75,33,0.0,1024,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,1.0,1.0,3143.044092806222,1562.08,0.0,24003.0,5,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,24003.0,4,0,4_0,4_0 +191,6.0,12.0,62.0,120,,71,0.0,10240,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1263.921151238287,2945.7999999999997,0.0,18860.0,5,1,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18860.0,3,0,3_0,3_0 +192,7.0,9.0,28.0,112,63,50,0.0,10242,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3398.7367650638703,6048.12,0.0,46875.0,1,2,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26041.666666666664,4,0,4_0,4_1 +193,4.0,5.0,21.0,300,62,43,0.0,10243,0.0,300.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2473.473178302656,6522.880000000001,0.0,25783.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,14323.888888888889,2,0,2_1,2_1 +194,1.0,5.0,47.0,112,56,50,2.0,10244,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1738.644544467279,1040.0,8200.0,13500.0,4,3,9,3.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,9000.0,1,0,1_0,1_0 +195,7.0,7.0,69.0,111,78,50,0.0,10248,0.0,0.0,400.0,175.0,0.0,3.0,0.0,1.0,1.0,5260.09581077716,442.0,0.0,11694.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,11694.0,1,0,1_1,1_0 +196,0.0,0.0,79.0,112,75,71,0.0,1025,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2892.610042007454,1820.0,0.0,31065.0,5,1,7,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20710.0,3,0,3_0,3_0 +197,14.0,14.0,48.0,111,56,30,0.0,10250,0.0,0.0,0.0,760.0,2.0,2.0,0.0,2.0,1.5,3943.8580042840467,0.0,0.0,35328.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,23552.0,3,0,3_0,3_0 +198,0.0,0.0,60.0,111,52,70,0.0,10252,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1975.4333925206915,1163.76,0.0,23960.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23960.0,4,0,4_0,4_0 +199,0.0,0.0,24.0,111,67,70,0.0,10253,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,2388.4697605818283,0.0,0.0,24864.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11840.0,1,0,1_1,1_0 +200,4.0,4.0,50.0,111,37,31,0.0,10254,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2402.1019308756836,3066.96,0.0,63009.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,31504.5,4,0,4_0,4_0 +201,7.0,7.0,68.0,111,75,50,0.0,10256,0.0,150.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2034.784492146265,2420.08,0.0,32806.0,5,1,8,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,21870.666666666668,3,0,3_0,3_0 +202,0.0,0.0,61.0,212,72,71,0.0,10257,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1015.210620408887,3221.4,0.0,24636.0,5,1,4,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16424.0,2,0,2_0,2_1 +203,0.0,13.0,21.0,111,52,50,0.0,1026,0.0,200.0,0.0,87.0,2.0,3.0,0.0,2.0,1.5,3138.733515029942,4629.04,0.0,27781.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,18520.666666666668,2,0,2_1,2_0 +204,6.0,29.0,64.0,111,77,71,0.0,10260,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1054.169928116274,0.0,0.0,19740.0,5,1,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,19740.0,3,0,3_0,3_0 +205,2.0,2.0,39.0,400,85,30,0.0,10262,0.0,0.0,0.0,0.0,1.0,5.0,5.0,7.0,3.0,1809.2095938240618,0.0,0.0,13612.0,6,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,4537.333333333333,1,0,1_0,1_1 +206,5.0,5.0,69.0,111,75,70,0.0,10263,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1986.1575832385633,2501.2000000000003,0.0,35220.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23480.0,3,0,3_0,3_0 +207,4.0,8.0,49.0,300,85,42,0.0,10264,0.0,0.0,100149.0,0.0,0.0,4.0,0.0,1.0,1.0,1870.9359086988052,2132.52,0.0,481.0,4,4,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,481.0,1,0,1_0,1_0 +208,13.0,13.0,45.0,211,69,71,0.0,10265,0.0,410.0,0.0,86.0,1.0,4.0,4.0,6.0,3.1,3723.5739297642217,2080.0,0.0,31821.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10264.838709677419,1,0,1_1,1_0 +209,10.0,10.0,52.0,120,43,33,0.0,10266,0.0,0.0,20.0,0.0,2.0,6.0,1.0,3.0,1.8,857.4839754852487,11977.16,0.0,57340.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,31855.555555555555,5,0,5,5_1 +210,6.0,6.0,85.0,300,78,71,0.0,10268,0.0,450.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1800.5574361495426,0.0,0.0,11013.0,5,1,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,11013.0,1,0,1_0,1_0 +211,6.0,26.0,78.0,111,78,71,0.0,10269,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2299.2701939434996,0.0,0.0,18508.0,5,1,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,18508.0,2,0,2_0,2_0 +212,14.0,16.0,49.0,111,37,31,0.0,10272,0.0,0.0,65.0,0.0,2.0,7.0,2.0,4.0,2.1,2570.6588206331066,0.0,0.0,112791.0,1,2,10,8.0,4,7.0,0.0,0.0,0,0,0,0,1,0,7.0,0.0,53710.0,5,0,5,5_0 +213,11.0,11.0,37.0,111,55,42,0.0,10273,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,478.8053774821827,2471.04,0.0,23878.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14923.75,2,0,2_0,2_0 +214,1.0,1.0,77.0,111,78,71,0.0,10276,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3889.33420642497,0.0,0.0,11588.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11588.0,1,0,1_1,1_0 +215,4.0,4.0,50.0,111,34,30,0.0,10277,0.0,0.0,75.0,0.0,1.0,6.0,1.0,2.0,1.3,823.5575070087922,5024.24,0.0,28031.0,1,1,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21562.30769230769,3,0,3_0,3_0 +216,1.0,3.0,54.0,120,11,50,0.0,10278,0.0,0.0,0.0,0.0,3.0,6.0,0.0,3.0,2.0,1860.9522767474853,0.0,0.0,84320.0,1,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,42160.0,5,0,5,5_1 +217,2.0,2.0,64.0,400,74,41,0.0,10279,0.0,300.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3116.5569625099006,1956.2399999999998,0.0,45581.0,5,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,30387.333333333332,4,0,4_0,4_1 +218,0.0,0.0,44.0,111,38,31,0.0,10280,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,774.5302336231052,0.0,0.0,46698.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22237.142857142855,3,0,3_0,3_0 +219,0.0,0.0,35.0,120,52,42,0.0,10281,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2295.4229923360285,3429.9199999999996,0.0,50920.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33946.666666666664,5,0,5,5_1 +220,12.0,12.0,61.0,111,78,60,0.0,10282,0.0,0.0,0.0,138.0,0.0,4.0,0.0,1.0,1.0,4752.3793262473955,0.0,0.0,25224.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,25224.0,4,0,4_1,4_0 +221,5.0,6.0,42.0,111,43,33,0.0,10283,0.0,100149.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1864.6196728985533,2756.0,0.0,33732.0,1,2,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25947.69230769231,4,0,4_0,4_0 +222,3.0,3.0,53.0,111,68,71,0.0,10285,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,975.6504765732057,0.0,0.0,15933.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12256.153846153846,1,0,1_1,1_0 +223,2.0,2.0,46.0,112,43,33,0.0,10286,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,891.0309850072957,3120.0,0.0,31440.0,1,1,10,0.0,2,2.0,1.0,0.0,1,0,0,0,0,0,2.0,0.0,15720.0,2,0,2_0,2_1 +224,0.0,0.0,93.0,111,74,31,0.0,10287,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,2918.1629777622006,1768.0,0.0,33420.0,6,1,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22280.0,3,0,3_0,3_0 +225,7.0,18.0,30.0,111,48,43,0.0,10289,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4449.835149559792,0.0,0.0,17591.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,17591.0,2,0,2_0,2_0 +226,7.0,13.0,66.0,211,75,70,0.0,1029,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,958.7960685075917,0.0,0.0,17636.0,6,1,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17636.0,2,0,2_0,2_0 +227,13.0,13.0,70.0,111,75,30,0.0,10290,0.0,0.0,40.0,0.0,0.0,1.0,0.0,1.0,1.0,3433.204469442811,0.0,0.0,15057.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,15057.0,2,0,2_0,2_0 +228,0.0,0.0,54.0,111,65,71,0.0,10291,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2165.597533158277,1565.2,0.0,20994.0,1,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20994.0,3,0,3_0,3_0 +229,3.0,19.0,69.0,111,77,70,0.0,10292,0.0,400.0,125.0,384.0,1.0,5.0,0.0,2.0,1.5,1825.8849868759967,0.0,0.0,25185.0,5,3,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,16790.0,2,0,2_0,2_0 +230,0.0,0.0,43.0,112,68,71,0.0,10293,0.0,0.0,0.0,0.0,2.0,8.0,4.0,6.0,3.1,2182.697244665381,2600.0,0.0,47730.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15396.774193548386,2,0,2_0,2_1 +231,0.0,0.0,48.0,112,54,31,0.0,10294,0.0,0.0,0.0,623.0,1.0,2.0,0.0,1.0,1.0,2050.522372278604,2704.52,0.0,24467.0,1,3,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24467.0,4,0,4_0,4_0 +232,0.0,0.0,44.0,111,38,20,0.0,10295,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1744.5224219175973,2602.08,0.0,98717.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,41132.083333333336,5,0,5,5_0 +233,0.0,0.0,45.0,400,67,43,0.0,10297,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2031.0422520518705,940.6800000000001,0.0,42616.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17046.4,2,0,2_0,2_1 +234,4.0,4.0,47.0,111,31,10,0.0,10298,0.0,0.0,150.0,0.0,2.0,4.0,2.0,4.0,2.1,1984.0629889374184,0.0,0.0,68870.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,32795.23809523809,5,0,5,5_0 +235,2.0,2.0,22.0,111,34,30,0.0,10299,0.0,0.0,0.0,78.0,2.0,3.0,0.0,2.0,1.5,5073.644174245161,0.0,0.0,8672.0,3,3,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,5781.333333333333,1,0,1_1,1_0 +236,3.0,8.0,18.0,111,84,43,0.0,103,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2129.212024759391,0.0,0.0,2211.0,3,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,2211.0,1,0,1_1,1_0 +237,0.0,0.0,60.0,112,47,31,0.0,10300,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2165.959292006826,0.0,0.0,18976.0,1,3,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18976.0,3,0,3_0,3_0 +238,0.0,0.0,62.0,111,,50,0.0,10301,0.0,0.0,0.0,350.0,0.0,4.0,0.0,1.0,1.0,1522.2445904164763,0.0,0.0,17060.0,8,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17060.0,2,0,2_0,2_0 +239,12.0,23.0,32.0,111,37,31,0.0,10302,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2901.2510620448847,0.0,0.0,38880.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38880.0,5,0,5,5_0 +240,0.0,23.0,31.0,111,63,71,0.0,10303,0.0,99999.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3742.013952955282,0.0,0.0,39318.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,26212.0,4,0,4_0,4_0 +241,4.0,16.0,46.0,111,68,71,0.0,10306,0.0,0.0,0.0,0.0,4.0,4.0,3.0,4.0,2.5,4626.392795315962,1040.0,0.0,45280.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,18112.0,2,0,2_1,2_0 +242,1.0,1.0,57.0,112,47,70,2.0,10308,0.0,0.0,0.0,465.0,1.0,4.0,0.0,1.0,1.0,2138.048927219983,0.0,15300.0,18714.0,1,3,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18714.0,2,0,2_0,2_0 +243,1.0,4.0,66.0,111,78,71,2.0,10309,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2766.8297884795707,0.0,10000.0,42030.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,28020.0,4,0,4_0,4_0 +244,3.0,9.0,62.0,111,74,42,0.0,10310,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3118.132964142362,0.0,0.0,40736.0,4,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,27157.333333333332,4,0,4_0,4_0 +245,4.0,4.0,45.0,221,21,44,0.0,10311,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1424.6725530356227,1691.56,0.0,3404.0,1,2,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,3404.0,1,0,1_0,1_0 +246,6.0,12.0,20.0,111,62,43,0.0,10312,0.0,0.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,2550.411528783309,581.36,0.0,79704.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,31881.6,5,0,5,5_0 +247,2.0,2.0,45.0,111,85,71,0.0,10313,0.0,500.0,400.0,0.0,0.0,4.0,3.0,4.0,1.9,765.9038089500895,0.0,0.0,19248.0,6,3,8,6.0,2,2.0,1.0,1.0,0,0,1,0,0,1,1.0,1.0,10130.526315789473,1,0,1_1,1_0 +248,0.0,0.0,70.0,300,78,70,0.0,10318,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1626.0248039160563,3719.56,0.0,26823.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17882.0,2,0,2_0,2_1 +249,0.0,0.0,40.0,111,38,12,0.0,1032,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2053.0431181361314,2132.0,0.0,60644.0,1,2,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,33691.11111111111,5,0,5,5_0 +250,5.0,5.0,43.0,300,67,71,0.0,10322,0.0,0.0,0.0,163.0,1.0,4.0,3.0,4.0,2.1,464.36740085512264,2600.0,0.0,17489.0,4,3,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,8328.095238095239,1,0,1_1,1_1 +251,8.0,10.0,54.0,111,77,60,0.0,10323,0.0,0.0,0.0,440.0,0.0,2.0,0.0,1.0,1.0,3772.6487882210126,0.0,0.0,12608.0,7,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,12608.0,1,0,1_0,1_0 +252,2.0,5.0,40.0,111,22,71,0.0,10324,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,5649.7654188242095,0.0,0.0,75000.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,41666.666666666664,5,0,5,5_0 +253,13.0,22.0,56.0,211,48,60,0.0,10325,0.0,640.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2904.79576255914,2600.0,0.0,42900.0,1,2,1,3.0,1,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,42900.0,5,0,5,5_0 +254,0.0,11.0,43.0,300,43,33,2.0,10327,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1746.855853874807,2600.52,1400.0,63275.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,22598.214285714286,3,0,3_0,3_1 +255,8.0,8.0,43.0,400,45,20,0.0,10328,0.0,0.0,0.0,0.0,2.0,10.0,4.0,6.0,2.9,2153.437604806757,2536.56,0.0,72392.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24962.758620689656,4,0,4_0,4_1 +256,3.0,3.0,58.0,112,52,50,0.0,10329,0.0,100.0,50.0,460.0,1.0,3.0,0.0,1.0,1.0,3734.9494501992,0.0,0.0,24311.0,1,3,10,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,24311.0,4,0,4_0,4_0 +257,0.0,0.0,55.0,112,67,71,0.0,1033,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3467.4019257284713,0.0,0.0,9189.0,4,3,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9189.0,1,0,1_1,1_1 +258,0.0,13.0,62.0,400,23,71,0.0,10330,0.0,0.0,600.0,0.0,3.0,3.0,1.0,3.0,2.0,2976.7151923384245,0.0,0.0,152840.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,76420.0,5,0,5,5_0 +259,0.0,0.0,46.0,111,67,71,0.0,10331,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1493.0446050565665,0.0,0.0,23613.0,4,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9838.75,1,0,1_1,1_0 +260,3.0,11.0,60.0,112,23,44,0.0,10332,0.0,99999.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2340.51728820757,0.0,0.0,123844.0,1,1,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,82562.66666666667,5,0,5,5_1 +261,0.0,3.0,93.0,400,78,70,2.0,10333,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2307.063209700006,0.0,7900.0,35871.0,5,1,0,0.0,5,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,23914.0,4,0,4_0,4_1 +262,2.0,10.0,51.0,111,85,71,0.0,10334,0.0,0.0,250.0,0.0,0.0,4.0,7.0,8.0,4.1,721.0589669286533,0.0,0.0,37206.0,6,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,9074.634146341465,1,0,1_1,1_0 +263,15.0,15.0,40.0,112,33,31,0.0,10335,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2445.0751754852154,6191.639999999999,0.0,86093.0,1,2,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,40996.666666666664,5,0,5,5_1 +264,0.0,0.0,51.0,111,54,50,0.0,10336,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1073.007447304568,0.0,0.0,33001.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25385.384615384613,4,0,4_0,4_0 +265,0.0,0.0,44.0,111,52,42,0.0,10338,0.0,0.0,0.0,342.0,1.0,3.0,1.0,2.0,1.5,761.2777702007833,1922.44,0.0,24540.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16360.0,2,0,2_1,2_0 +266,0.0,0.0,68.0,112,74,30,0.0,10339,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2311.817045856645,3493.3600000000006,0.0,49070.0,5,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32713.333333333332,5,0,5,5_1 +267,7.0,7.0,62.0,111,77,70,0.0,1034,0.0,0.0,0.0,114.0,0.0,1.0,0.0,1.0,1.0,4387.2626440963795,0.0,0.0,9473.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,9473.0,1,0,1_1,1_0 +268,1.0,21.0,55.0,111,23,30,2.0,10342,0.0,30.0,300.0,0.0,1.0,6.0,0.0,1.0,1.0,2469.339782975597,0.0,200.0,94324.0,1,1,7,5.0,1,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,94324.0,5,0,5,5_0 +269,4.0,17.0,84.0,111,78,71,0.0,10343,0.0,230.0,0.0,376.0,0.0,3.0,0.0,1.0,1.0,3111.7745386516162,1040.0,0.0,16968.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16968.0,2,0,2_0,2_0 +270,7.0,7.0,51.0,111,40,31,0.0,10345,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,701.4465299732669,0.0,0.0,28548.0,1,2,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,28548.0,4,0,4_0,4_0 +271,0.0,0.0,39.0,120,46,31,0.0,10346,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2311.2854177596,0.0,0.0,50950.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22152.17391304348,3,0,3_0,3_0 +272,3.0,18.0,45.0,111,37,12,0.0,10347,0.0,410.0,0.0,0.0,1.0,5.0,4.0,6.0,3.3,4023.196547067734,0.0,0.0,248302.0,1,3,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,75243.0303030303,5,0,5,5_0 +273,1.0,5.0,59.0,300,43,33,0.0,10348,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2065.3012685372223,2288.0,0.0,24415.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24415.0,4,0,4_0,4_1 +274,2.0,3.0,44.0,111,64,50,0.0,10349,0.0,200.0,0.0,333.0,3.0,3.0,1.0,3.0,2.0,2709.1773460393874,0.0,0.0,28408.0,1,3,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,14204.0,2,0,2_0,2_0 +275,11.0,11.0,52.0,111,34,30,0.0,1035,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,10345.475545905016,4680.0,0.0,83734.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,41867.0,5,0,5,5_0 +276,0.0,0.0,54.0,300,55,60,0.0,10350,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1626.0755863142233,1092.0,0.0,21970.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14646.666666666666,2,0,2_0,2_1 +277,0.0,6.0,34.0,111,53,41,0.0,10351,0.0,90.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,547.4293764703161,0.0,0.0,21590.0,1,2,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16607.69230769231,2,0,2_0,2_0 +278,0.0,0.0,52.0,112,63,50,0.0,10352,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3247.926714142741,2080.0,0.0,24060.0,1,1,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24060.0,4,0,4_0,4_0 +279,2.0,2.0,86.0,111,72,70,0.0,10353,0.0,600.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3426.7617213699127,0.0,0.0,10570.0,5,4,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,10570.0,1,0,1_0,1_0 +280,8.0,12.0,34.0,112,43,33,0.0,10354,0.0,99999.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,1577.80688484844,0.0,0.0,25143.0,4,2,7,1.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,15714.375,2,0,2_1,2_0 +281,4.0,16.0,40.0,221,43,50,0.0,10356,0.0,99999.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2122.1992037141927,1040.0,0.0,12218.0,4,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,12218.0,1,0,1_1,1_0 +282,0.0,0.0,57.0,111,47,60,0.0,10357,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1731.2211199660283,0.0,0.0,31905.0,1,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21270.0,3,0,3_0,3_0 +283,7.0,8.0,40.0,112,43,31,0.0,10360,0.0,300.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2317.9998266256766,0.0,0.0,45177.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21512.85714285714,3,0,3_0,3_1 +284,2.0,9.0,60.0,112,22,30,0.0,10361,0.0,300.0,0.0,0.0,3.0,4.0,0.0,3.0,2.0,3341.6176210006165,2340.0,0.0,58110.0,1,1,9,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,29055.0,4,0,4_0,4_1 +285,0.0,0.0,74.0,111,72,50,0.0,10362,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2930.4700372606817,0.0,0.0,16782.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11188.0,1,0,1_0,1_0 +286,3.0,5.0,73.0,211,78,70,0.0,10363,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1853.6009927543396,0.0,0.0,23800.0,5,3,3,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23800.0,3,0,3_0,3_0 +287,8.0,21.0,62.0,300,43,33,0.0,10364,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1719.2372143745383,0.0,0.0,70075.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,35037.5,5,0,5,5_1 +288,0.0,0.0,59.0,112,37,30,0.0,10365,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1697.5899643410112,985.9199999999998,0.0,94018.0,4,2,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,62678.666666666664,5,0,5,5_1 +289,2.0,2.0,35.0,111,54,20,0.0,10368,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3900.955455340335,520.0,0.0,18814.0,4,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18814.0,3,0,3_0,3_0 +290,0.0,20.0,65.0,120,75,50,0.0,1037,0.0,0.0,500.0,0.0,1.0,4.0,0.0,2.0,1.5,2394.8830436153135,3335.8,0.0,30017.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20011.333333333332,3,0,3_0,3_1 +291,8.0,8.0,44.0,111,62,50,0.0,10370,0.0,0.0,70.0,555.0,1.0,3.0,0.0,1.0,1.0,3929.748530674971,1300.0,0.0,28330.0,1,3,6,5.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,28330.0,4,0,4_0,4_0 +292,5.0,8.0,86.0,211,78,70,0.0,10371,0.0,99999.0,0.0,352.0,0.0,2.0,0.0,1.0,1.0,1948.7635957118423,0.0,0.0,18102.0,5,3,3,3.0,1,3.0,1.0,0.0,0,1,0,0,0,0,0.0,3.0,18102.0,2,0,2_0,2_0 +293,2.0,39.0,21.0,211,52,50,0.0,10372,0.0,700.0,0.0,58.0,2.0,3.0,0.0,2.0,1.5,1155.1022989662133,0.0,0.0,19667.0,1,3,4,3.0,3,4.0,0.0,0.0,0,1,0,0,0,1,2.0,2.0,13111.333333333334,1,0,1_1,1_0 +294,12.0,15.0,41.0,112,53,60,0.0,10373,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1847.8396560410836,1586.52,0.0,34932.0,1,2,9,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16634.285714285714,2,0,2_0,2_0 +295,0.0,6.0,66.0,112,78,50,2.0,10374,0.0,250.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1743.587643180839,1820.0,4800.0,34127.0,5,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22751.333333333332,3,0,3_0,3_1 +296,0.0,17.0,62.0,111,33,30,0.0,10375,0.0,350.0,0.0,527.0,1.0,2.0,0.0,1.0,1.0,2462.545329134732,0.0,0.0,37444.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,37444.0,5,0,5,5_0 +297,4.0,4.0,66.0,120,78,70,0.0,10377,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,465.422914804645,2340.0,0.0,14620.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9746.666666666666,1,0,1_0,1_1 +298,0.0,0.0,39.0,111,85,43,0.0,10378,0.0,0.0,0.0,30.0,0.0,4.0,2.0,4.0,2.1,2955.7941327287317,1560.0,0.0,12136.0,7,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,5779.047619047618,1,0,1_1,1_0 +299,7.0,11.0,65.0,111,78,50,0.0,10379,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2823.3605459446694,2080.0,0.0,14057.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,14057.0,2,0,2_0,2_0 +300,7.0,10.0,33.0,400,13,30,0.0,1038,0.0,250.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2685.410763571299,0.0,0.0,1925.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,1925.0,1,0,1_0,1_1 +301,1.0,1.0,49.0,112,65,50,1.0,10381,0.0,125.0,280.0,0.0,1.0,3.0,1.0,2.0,1.5,383.9825802976863,0.0,8000.0,26231.0,1,3,10,1.0,2,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,17487.333333333332,2,0,2_1,2_0 +302,0.0,0.0,86.0,400,86,50,0.0,10382,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1347.6780975807842,0.0,0.0,14886.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14886.0,2,0,2_0,2_0 +303,1.0,1.0,72.0,112,74,20,1.0,10383,0.0,670.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1419.7132841984408,5637.84,22600.0,74728.0,5,1,8,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,49818.666666666664,5,0,5,5_0 +304,7.0,13.0,46.0,111,37,31,0.0,10384,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.3,2435.65471361413,0.0,0.0,77574.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,33727.82608695653,5,0,5,5_0 +305,2.0,2.0,48.0,400,67,31,0.0,10387,0.0,0.0,0.0,329.0,2.0,4.0,1.0,3.0,2.0,2304.2974627266317,1597.44,0.0,39013.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19506.5,3,0,3_0,3_0 +306,0.0,0.0,71.0,111,74,44,0.0,10388,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2619.0304362810725,0.0,0.0,37514.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25009.333333333332,4,0,4_0,4_0 +307,22.0,23.0,75.0,300,86,71,0.0,10389,0.0,80.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2573.1485392385225,2600.0,0.0,10574.0,5,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,7049.333333333333,1,0,1_1,1_1 +308,3.0,5.0,19.0,111,85,60,0.0,1039,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,1430.4029414271427,0.0,0.0,12256.0,6,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9427.692307692307,1,0,1_1,1_0 +309,7.0,10.0,22.0,111,84,41,0.0,10390,0.0,0.0,0.0,255.0,0.0,2.0,0.0,1.0,1.0,2153.404244433419,0.0,0.0,2724.0,3,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,2724.0,1,0,1_1,1_0 +310,4.0,8.0,43.0,111,45,30,0.0,10392,0.0,0.0,200.0,374.0,2.0,5.0,1.0,3.0,1.8,3787.134568381349,2356.12,0.0,48212.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,26784.444444444445,4,0,4_0,4_0 +311,0.0,11.0,33.0,300,23,60,0.0,10393,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2632.182423711934,1575.6000000000001,0.0,54433.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,22680.416666666668,3,0,3_0,3_1 +312,0.0,0.0,90.0,112,74,71,0.0,10394,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2593.88035306943,0.0,0.0,24180.0,5,1,10,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24180.0,4,0,4_0,4_0 +313,3.0,25.0,67.0,111,72,31,0.0,10396,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1838.9827148053673,2704.0,0.0,32174.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21449.333333333332,3,0,3_0,3_0 +314,0.0,0.0,38.0,400,64,60,0.0,10397,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2772.0436998118303,2430.48,0.0,21735.0,1,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21735.0,3,0,3_0,3_1 +315,17.0,20.0,73.0,111,75,50,0.0,10398,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1361.0351141434012,3016.0,0.0,39961.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,26640.666666666668,4,0,4_0,4_0 +316,0.0,0.0,27.0,111,47,31,0.0,104,0.0,0.0,0.0,287.0,1.0,1.0,0.0,1.0,1.0,5863.394312347439,0.0,0.0,25950.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25950.0,4,0,4_0,4_0 +317,1.0,10.0,43.0,111,47,31,2.0,10401,0.0,1250.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,6455.135705246362,0.0,1800.0,35007.0,1,2,9,7.0,2,3.0,1.0,0.0,0,0,0,1,0,0,1.0,2.0,26928.46153846154,4,0,4_0,4_0 +318,10.0,10.0,76.0,111,72,31,0.0,10402,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4978.9753810730235,0.0,0.0,71369.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,71369.0,5,0,5,5_0 +319,3.0,4.0,45.0,111,85,31,0.0,10403,0.0,0.0,500.0,331.0,0.0,4.0,1.0,2.0,1.3,1365.1143803991113,0.0,0.0,24409.0,4,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,18776.153846153844,3,0,3_1,3_0 +320,0.0,13.0,63.0,111,34,30,0.0,10404,0.0,0.0,60.0,0.0,1.0,2.0,0.0,1.0,1.0,2159.7555110686094,2392.0,0.0,43533.0,1,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,43533.0,5,0,5,5_0 +321,9.0,14.0,43.0,111,52,50,0.0,10406,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1786.9133412974754,2600.0,0.0,40705.0,1,1,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16282.0,2,0,2_0,2_0 +322,11.0,11.0,34.0,112,52,50,0.0,10407,0.0,0.0,500.0,0.0,1.0,4.0,2.0,3.0,1.8,626.6430001573256,2133.04,0.0,21464.0,1,2,10,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,11924.444444444443,1,0,1_1,1_1 +323,9.0,9.0,62.0,111,34,10,0.0,10409,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1994.0843865544716,0.0,0.0,67412.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,44941.333333333336,5,0,5,5_0 +324,4.0,11.0,42.0,111,55,31,0.0,1041,0.0,1000.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,791.3445970358434,1255.28,0.0,28576.0,1,3,7,5.0,2,2.0,1.0,1.0,0,0,1,0,0,1,0.0,2.0,15875.555555555555,2,0,2_1,2_0 +325,0.0,0.0,28.0,300,34,12,0.0,10410,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2836.7253847692305,2132.0,0.0,46365.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,46365.0,5,0,5,5_1 +326,4.0,8.0,53.0,111,31,30,0.0,10411,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1536.9940723301947,0.0,0.0,72960.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,72960.0,5,0,5,5_0 +327,0.0,15.0,39.0,112,46,50,0.0,10413,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2463.2043924116388,0.0,0.0,50086.0,1,2,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27825.555555555555,4,0,4_0,4_0 +328,0.0,0.0,41.0,400,12,60,0.0,10414,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1741.627258468246,0.0,0.0,93472.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,37388.8,5,0,5,5_0 +329,5.0,10.0,75.0,112,78,71,0.0,10415,0.0,300.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4381.751399410142,2340.0,0.0,19975.0,5,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,13316.666666666666,1,0,1_0,1_1 +330,0.0,0.0,51.0,112,85,50,0.0,10417,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2783.7030005708625,2340.0,0.0,17840.0,7,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17840.0,2,0,2_0,2_1 +331,0.0,0.0,51.0,112,54,31,0.0,10418,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,2502.676245731972,0.0,0.0,26522.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10608.8,1,0,1_0,1_1 +332,2.0,2.0,37.0,111,54,71,0.0,10423,0.0,200.0,0.0,248.0,1.0,4.0,0.0,1.0,1.0,3406.67356146426,0.0,0.0,15936.0,4,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,15936.0,2,0,2_1,2_0 +333,8.0,8.0,37.0,120,62,31,0.0,10424,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,387.25892339212317,1563.64,0.0,45832.0,1,2,0,2.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28645.0,4,0,4_0,4_0 +334,4.0,4.0,54.0,112,46,50,0.0,10425,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.5,903.6886567648847,0.0,0.0,18298.0,4,3,8,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,12198.666666666666,1,0,1_1,1_1 +335,0.0,0.0,52.0,111,46,50,0.0,10427,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1876.8796302008316,2460.12,0.0,59389.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23755.6,3,0,3_0,3_0 +336,0.0,0.0,21.0,111,65,43,0.0,10428,0.0,0.0,0.0,179.0,1.0,1.0,0.0,1.0,1.0,3574.538610798524,0.0,0.0,20091.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,20091.0,3,0,3_1,3_0 +337,12.0,17.0,29.0,111,37,12,0.0,10429,0.0,200.0,0.0,316.0,2.0,3.0,0.0,2.0,1.5,3263.8968846139433,0.0,0.0,44700.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,29800.0,4,0,4_0,4_0 +338,2.0,2.0,49.0,221,68,50,0.0,1043,0.0,60.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2546.2909972944835,3191.76,0.0,22696.0,1,2,1,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9867.826086956522,1,0,1_1,1_0 +339,2.0,2.0,26.0,111,45,31,0.0,10430,0.0,400.0,0.0,276.0,1.0,2.0,0.0,1.0,1.0,5498.626478575132,1264.12,0.0,22253.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,22253.0,3,0,3_0,3_0 +340,3.0,4.0,39.0,111,21,31,0.0,10434,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,4580.594649094572,2100.7999999999997,0.0,49822.0,1,2,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27678.888888888887,4,0,4_0,4_0 +341,7.0,13.0,83.0,111,78,70,0.0,10435,0.0,0.0,0.0,355.0,0.0,3.0,0.0,1.0,1.0,3785.0982232904125,0.0,0.0,15660.0,5,3,9,7.0,1,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,15660.0,2,0,2_0,2_0 +342,6.0,11.0,44.0,112,38,20,0.0,10436,0.0,0.0,30.0,0.0,2.0,6.0,2.0,4.0,2.3,2418.6703453920923,4681.04,0.0,65573.0,1,1,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,28510.000000000004,4,0,4_0,4_0 +343,6.0,6.0,38.0,120,52,50,0.0,10437,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,820.0963099361169,1300.0,0.0,36160.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15721.739130434784,2,0,2_0,2_1 +344,0.0,0.0,36.0,111,38,12,0.0,10440,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2875.277970716586,2730.0,0.0,103514.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,57507.777777777774,5,0,5,5_0 +345,0.0,0.0,69.0,111,74,20,0.0,10441,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,857.5656416193651,0.0,0.0,48662.0,5,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,32441.333333333332,5,0,5,5_0 +346,11.0,18.0,50.0,111,38,31,0.0,10442,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2173.5732121224637,0.0,0.0,56581.0,1,1,6,5.0,4,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,22632.4,3,0,3_0,3_0 +347,0.0,0.0,42.0,111,37,20,0.0,10444,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3946.3169804642885,0.0,0.0,126489.0,1,4,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,60232.85714285714,5,0,5,5_0 +348,5.0,12.0,38.0,111,37,12,0.0,10445,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,3083.4701484436778,0.0,0.0,94856.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,52697.777777777774,5,0,5,5_0 +349,0.0,0.0,36.0,221,52,50,0.0,10446,0.0,0.0,0.0,450.0,1.0,3.0,2.0,3.0,1.6,827.6531159010174,1060.8,0.0,23080.0,1,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14425.0,2,0,2_0,2_0 +350,0.0,0.0,32.0,112,55,71,0.0,10447,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2055.4382145622976,5231.2,0.0,38170.0,1,3,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21205.555555555555,3,0,3_0,3_1 +351,0.0,14.0,66.0,112,74,70,0.0,1045,0.0,0.0,80.0,0.0,0.0,4.0,0.0,2.0,1.5,1677.1174023597987,2205.84,0.0,43948.0,5,1,5,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,29298.666666666668,4,0,4_0,4_1 +352,4.0,5.0,68.0,111,75,50,0.0,10451,0.0,0.0,250.0,0.0,0.0,4.0,0.0,2.0,1.5,1725.950962603352,0.0,0.0,34697.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23131.333333333332,3,0,3_0,3_0 +353,0.0,0.0,51.0,111,55,60,0.0,10453,0.0,0.0,0.0,324.0,2.0,4.0,4.0,6.0,3.1,3228.931822192878,0.0,0.0,28433.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9171.935483870968,1,0,1_1,1_0 +354,4.0,16.0,65.0,300,13,50,0.0,10455,0.0,550.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2617.468528473164,0.0,0.0,2584.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,2584.0,1,0,1_0,1_1 +355,8.0,11.0,41.0,111,33,12,0.0,10456,0.0,0.0,99999.0,0.0,2.0,5.0,3.0,5.0,2.4,2459.1955831238033,0.0,0.0,64456.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,26856.666666666668,4,0,4_0,4_0 +356,3.0,3.0,22.0,111,84,41,0.0,10457,0.0,400.0,130.0,260.0,0.0,1.0,0.0,1.0,1.0,4575.506928763283,0.0,0.0,8130.0,3,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,8130.0,1,0,1_1,1_0 +357,4.0,5.0,81.0,300,71,71,0.0,10458,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2269.6942280391927,1903.72,0.0,15280.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10186.666666666666,1,0,1_0,1_1 +358,0.0,0.0,29.0,112,56,43,0.0,1046,0.0,0.0,0.0,74.0,1.0,3.0,1.0,2.0,1.3,504.3293358238149,0.0,0.0,20067.0,4,3,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,15436.153846153846,2,0,2_1,2_1 +359,0.0,9.0,89.0,111,78,71,0.0,10461,0.0,0.0,0.0,379.0,0.0,3.0,0.0,2.0,1.5,3250.0410764641892,0.0,0.0,19602.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,13068.0,1,0,1_0,1_0 +360,1.0,12.0,44.0,112,56,71,2.0,10462,0.0,0.0,99999.0,0.0,2.0,5.0,3.0,4.0,2.5,501.690983144713,1040.0,1500.0,19950.0,1,2,8,1.0,2,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,7980.0,1,0,1_1,1_0 +361,0.0,0.0,77.0,120,74,12,0.0,10464,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2313.2855300315073,0.0,0.0,28358.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18905.333333333332,3,0,3_0,3_1 +362,7.0,29.0,51.0,111,48,71,0.0,10465,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2471.512331731618,0.0,0.0,35370.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,17685.0,2,0,2_0,2_0 +363,0.0,0.0,39.0,111,37,12,0.0,10468,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2465.1391983928092,2496.0,0.0,55890.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31050.0,4,0,4_0,4_0 +364,1.0,13.0,69.0,120,77,70,1.0,10469,0.0,380.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2017.0311797344827,0.0,4200.0,23064.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23064.0,3,0,3_0,3_1 +365,5.0,8.0,42.0,400,52,50,0.0,1047,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2045.0030930904932,4795.44,0.0,37403.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17810.95238095238,2,0,2_0,2_1 +366,0.0,0.0,47.0,112,67,71,0.0,10472,0.0,0.0,0.0,0.0,1.0,4.0,4.0,5.0,2.8,1269.979698203973,1040.0,0.0,28614.0,1,3,10,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10219.285714285716,1,0,1_1,1_0 +367,6.0,20.0,62.0,300,22,60,0.0,10475,0.0,0.0,60.0,0.0,2.0,4.0,0.0,2.0,1.5,1915.9470525365043,0.0,0.0,60002.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,40001.333333333336,5,0,5,5_1 +368,2.0,2.0,86.0,400,71,71,0.0,10476,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1755.9497162224432,0.0,0.0,18764.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12509.333333333334,1,0,1_0,1_1 +369,3.0,22.0,53.0,111,47,71,0.0,10477,0.0,0.0,125.0,480.0,1.0,3.0,1.0,2.0,1.5,4743.302786257167,0.0,0.0,24210.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,16140.0,2,0,2_0,2_0 +370,8.0,10.0,48.0,120,85,71,0.0,10478,0.0,350.0,250.0,0.0,2.0,6.0,3.0,5.0,3.0,888.9368092694632,8684.0,0.0,42657.0,5,1,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,14219.0,2,0,2_0,2_1 +371,1.0,1.0,63.0,211,77,50,1.0,10479,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1543.9148810516256,0.0,15311.0,15152.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15152.0,2,0,2_0,2_0 +372,1.0,19.0,48.0,111,65,60,2.0,10480,0.0,336.0,250.0,243.0,2.0,3.0,0.0,2.0,1.5,1458.1972760839813,2605.72,2000.0,28784.0,4,3,6,5.0,3,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,19189.333333333332,3,0,3_0,3_0 +373,0.0,0.0,36.0,112,63,50,0.0,10481,0.0,0.0,0.0,0.0,2.0,4.0,4.0,6.0,2.7,2443.619261645336,0.0,0.0,45730.0,1,2,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16937.037037037036,2,0,2_0,2_0 +374,1.0,2.0,27.0,111,55,42,0.0,10482,0.0,0.0,99999.0,324.0,2.0,3.0,0.0,2.0,1.5,1579.7243466889784,0.0,0.0,16630.0,4,3,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,11086.666666666666,1,0,1_1,1_0 +375,0.0,0.0,32.0,112,46,42,0.0,10483,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2428.1054133716443,0.0,0.0,42769.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23760.555555555555,3,0,3_0,3_1 +376,0.0,12.0,28.0,120,69,60,2.0,10485,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,2918.280242238542,603.1999999999999,1800.0,17800.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,8476.190476190475,1,0,1_1,1_1 +377,5.0,11.0,43.0,111,85,71,0.0,10486,0.0,0.0,0.0,0.0,0.0,3.0,2.0,4.0,2.1,4081.4912744483236,0.0,0.0,21454.0,4,3,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,1,1.0,2.0,10216.190476190475,1,0,1_1,1_0 +378,2.0,2.0,76.0,111,78,50,0.0,10487,0.0,0.0,99999.0,978.0,0.0,4.0,0.0,2.0,1.5,3505.2450295517765,2603.64,0.0,19580.0,5,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,13053.333333333334,1,0,1_0,1_0 +379,1.0,1.0,79.0,112,77,70,1.0,10489,0.0,0.0,350.0,0.0,0.0,5.0,0.0,2.0,1.5,3907.812240192199,1768.52,34000.0,53784.0,5,1,8,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,35856.0,5,0,5,5_1 +380,0.0,11.0,72.0,111,74,12,0.0,1049,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1729.5329944217613,0.0,0.0,51295.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,34196.666666666664,5,0,5,5_0 +381,4.0,5.0,60.0,111,81,71,0.0,10490,0.0,400.0,0.0,252.0,1.0,3.0,0.0,2.0,1.5,1684.3608403511794,0.0,0.0,23424.0,4,3,8,7.0,5,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,15616.0,2,0,2_1,2_0 +382,0.0,7.0,83.0,111,86,71,0.0,10491,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1811.335345156005,0.0,0.0,14270.0,5,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14270.0,2,0,2_0,2_0 +383,9.0,9.0,72.0,111,78,71,0.0,10492,0.0,325.0,0.0,117.0,0.0,4.0,0.0,2.0,1.5,2413.042625135539,0.0,0.0,17587.0,5,3,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,11724.666666666666,1,0,1_1,1_0 +384,3.0,3.0,34.0,120,43,30,0.0,10494,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1791.778360413101,3536.5200000000004,0.0,68677.0,1,2,0,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,32703.333333333332,5,0,5,5_0 +385,11.0,11.0,46.0,112,21,50,0.0,10495,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,7174.938424894469,3057.6,0.0,44321.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21105.238095238095,3,0,3_0,3_1 +386,2.0,2.0,42.0,112,37,20,0.0,10496,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2044.8371664399199,4636.84,0.0,56068.0,1,2,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,37378.666666666664,5,0,5,5_0 +387,9.0,9.0,40.0,111,56,50,0.0,10498,0.0,99999.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2950.1384576649425,0.0,0.0,11800.0,4,3,8,7.0,1,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,11800.0,1,0,1_1,1_0 +388,3.0,5.0,56.0,400,75,33,0.0,10499,0.0,450.0,0.0,0.0,1.0,20.0,0.0,2.0,1.5,1444.5535424397276,0.0,0.0,25967.0,7,2,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,17311.333333333332,2,0,2_0,2_1 +389,0.0,0.0,55.0,400,85,50,0.0,105,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1757.335482854578,0.0,0.0,1361.0,7,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,1361.0,1,0,1_0,1_0 +390,2.0,11.0,51.0,111,63,50,0.0,1050,0.0,0.0,0.0,168.0,1.0,2.0,0.0,1.0,1.0,2613.593358844212,0.0,0.0,9214.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,9214.0,1,0,1_1,1_0 +391,8.0,9.0,64.0,111,22,12,0.0,10500,0.0,99999.0,110.0,0.0,2.0,7.0,0.0,2.0,1.5,1726.1072713651602,5167.76,0.0,55481.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,36987.333333333336,5,0,5,5_0 +392,1.0,1.0,49.0,211,62,50,1.0,10501,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1689.708602104338,0.0,36500.0,64719.0,1,2,3,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,43146.0,5,0,5,5_0 +393,2.0,2.0,29.0,111,43,33,0.0,10505,0.0,0.0,0.0,315.0,2.0,2.0,0.0,2.0,1.5,3334.8471343477104,2860.0,0.0,34804.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23202.666666666668,3,0,3_0,3_0 +394,0.0,0.0,29.0,112,46,31,0.0,10506,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1943.8664269770898,3250.52,0.0,52008.0,1,2,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28893.333333333332,4,0,4_0,4_0 +395,0.0,0.0,53.0,111,46,50,0.0,10508,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1284.9109228153911,2600.52,0.0,65168.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,43445.333333333336,5,0,5,5_0 +396,5.0,5.0,79.0,112,75,70,0.0,10509,0.0,150.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2042.5433150441422,0.0,0.0,28995.0,5,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19330.0,3,0,3_0,3_0 +397,1.0,4.0,32.0,112,38,12,0.0,1051,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2213.9914324679153,2878.72,0.0,70868.0,1,2,6,1.0,4,1.0,1.0,0.0,0,1,0,0,0,0,0.0,0.0,39371.11111111111,5,0,5,5_0 +398,0.0,0.0,45.0,112,43,30,0.0,10510,0.0,0.0,0.0,0.0,1.0,6.0,1.0,4.0,2.5,4898.817446664678,0.0,0.0,60631.0,1,1,10,4.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24252.4,4,0,4_0,4_0 +399,1.0,4.0,25.0,111,55,50,2.0,10511,0.0,0.0,0.0,104.0,1.0,2.0,0.0,1.0,1.0,6931.040379461441,1040.0,3000.0,15676.0,1,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,15676.0,2,0,2_1,2_0 +400,0.0,17.0,69.0,111,78,50,0.0,10512,0.0,0.0,0.0,0.0,2.0,4.0,1.0,5.0,3.0,1151.0978563435792,2600.0,0.0,51633.0,5,1,8,6.0,5,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17211.0,2,0,2_0,2_0 +401,1.0,24.0,28.0,111,52,60,0.0,10513,0.0,50.0,0.0,172.0,2.0,3.0,2.0,4.0,2.1,4087.614057512942,0.0,0.0,36654.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,17454.285714285714,2,0,2_1,2_0 +402,0.0,0.0,67.0,111,75,44,0.0,10514,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1766.500454210674,0.0,0.0,29886.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19924.0,3,0,3_0,3_0 +403,0.0,0.0,81.0,111,77,71,0.0,10515,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3420.971812942615,0.0,0.0,33748.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33748.0,5,0,5,5_0 +404,0.0,0.0,43.0,111,37,20,0.0,10516,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.3,851.3055464664973,772.1999999999999,0.0,86521.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,66554.61538461538,5,0,5,5_0 +405,18.0,21.0,68.0,400,72,70,0.0,10517,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1986.6181216316838,0.0,0.0,33129.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22086.0,3,0,3_0,3_0 +406,5.0,5.0,31.0,112,85,33,0.0,10518,0.0,0.0,0.0,0.0,1.0,6.0,4.0,6.0,2.7,1883.1239503191255,1057.68,0.0,41520.0,6,3,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,15377.777777777777,2,0,2_1,2_1 +407,0.0,0.0,68.0,111,77,50,0.0,10519,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1952.2910597523992,1245.92,0.0,17919.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17919.0,2,0,2_0,2_0 +408,10.0,10.0,47.0,112,48,50,0.0,1052,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2486.808557567914,0.0,0.0,23670.0,1,2,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23670.0,3,0,3_0,3_1 +409,1.0,3.0,53.0,120,56,41,0.0,10521,0.0,250.0,150.0,0.0,2.0,6.0,0.0,2.0,1.5,2706.820631115202,2600.0,0.0,29785.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19856.666666666668,3,0,3_0,3_1 +410,3.0,11.0,64.0,111,75,31,0.0,10522,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1878.612477411341,0.0,0.0,58389.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,38926.0,5,0,5,5_0 +411,6.0,9.0,51.0,111,34,10,0.0,10523,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.3,2001.357484009101,2668.12,0.0,102741.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,44670.0,5,0,5,5_0 +412,4.0,4.0,38.0,112,38,12,0.0,10525,0.0,350.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2871.495087208637,2149.16,0.0,81520.0,1,1,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,38819.04761904762,5,0,5,5_1 +413,0.0,0.0,70.0,111,74,44,0.0,10526,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,3756.113191478534,2080.52,0.0,64478.0,5,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25791.2,4,0,4_0,4_0 +414,0.0,0.0,85.0,300,86,71,0.0,10529,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2028.3631310320495,2600.0,0.0,16520.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16520.0,2,0,2_0,2_1 +415,1.0,4.0,35.0,112,65,50,2.0,1053,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2462.636121888003,2266.6800000000003,5000.0,40930.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19490.47619047619,3,0,3_0,3_1 +416,3.0,3.0,38.0,111,38,12,0.0,10531,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2345.2308496474275,572.0,0.0,68860.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,68860.0,5,0,5,5_0 +417,9.0,12.0,52.0,111,35,50,0.0,10532,0.0,0.0,0.0,0.0,2.0,6.0,1.0,2.0,1.5,2005.9764076841082,0.0,0.0,21038.0,1,1,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14025.333333333334,2,0,2_0,2_0 +418,1.0,20.0,51.0,111,43,20,2.0,10533,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,345.8330492145361,0.0,1800.0,38479.0,1,1,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24049.375,4,0,4_0,4_0 +419,4.0,6.0,49.0,111,63,31,0.0,10534,0.0,620.0,0.0,482.0,1.0,2.0,0.0,1.0,1.0,4439.355300284522,1903.2,0.0,23880.0,1,3,10,8.0,1,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,23880.0,4,0,4_0,4_0 +420,6.0,8.0,61.0,120,77,50,0.0,10535,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2544.50741835583,0.0,0.0,34802.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23201.333333333332,3,0,3_0,3_1 +421,3.0,3.0,38.0,111,31,20,0.0,10536,0.0,0.0,0.0,185.0,2.0,4.0,2.0,4.0,2.5,1353.389300996806,0.0,0.0,25320.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,10128.0,1,0,1_1,1_0 +422,11.0,11.0,33.0,211,47,42,0.0,10537,0.0,20.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2387.6958535312165,3900.5200000000004,0.0,39747.0,1,2,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22081.666666666668,3,0,3_0,3_0 +423,2.0,2.0,79.0,112,78,71,0.0,10538,0.0,450.0,144.0,0.0,0.0,5.0,0.0,2.0,1.5,1881.001899919787,1300.0,0.0,44575.0,5,1,8,2.0,3,3.0,1.0,1.0,0,1,0,0,0,0,2.0,1.0,29716.666666666668,4,0,4_0,4_0 +424,0.0,0.0,46.0,111,62,71,0.0,1054,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2306.6214266296056,2340.52,0.0,38168.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15267.2,2,0,2_0,2_0 +425,2.0,3.0,39.0,111,63,50,0.0,10540,0.0,0.0,0.0,341.0,2.0,3.0,1.0,3.0,1.8,2609.7688070555505,0.0,0.0,21137.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11742.777777777777,1,0,1_0,1_0 +426,9.0,9.0,62.0,111,56,71,0.0,10541,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2958.031345042562,0.0,0.0,10726.0,1,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,10726.0,1,0,1_0,1_0 +427,4.0,7.0,30.0,111,54,50,0.0,10542,0.0,130.0,0.0,0.0,1.0,3.0,3.0,4.0,1.9,946.9162191951028,0.0,0.0,27430.0,4,4,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,14436.842105263158,2,0,2_0,2_0 +428,1.0,6.0,20.0,111,47,31,0.0,10543,0.0,200.0,0.0,180.0,1.0,2.0,0.0,1.0,1.0,4900.219983699868,0.0,0.0,27530.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,27530.0,4,0,4_1,4_0 +429,2.0,2.0,48.0,111,46,31,0.0,10544,0.0,99999.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1512.7400253289268,4367.48,0.0,48105.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17180.357142857145,2,0,2_0,2_0 +430,0.0,0.0,38.0,111,67,50,0.0,10545,0.0,0.0,0.0,450.0,1.0,6.0,5.0,7.0,3.4,557.001298906416,2600.0,0.0,35894.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10557.058823529413,1,0,1_0,1_0 +431,0.0,0.0,56.0,400,34,30,0.0,10546,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1953.3853974178903,2619.24,0.0,35963.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23975.333333333332,4,0,4_0,4_1 +432,1.0,3.0,47.0,111,31,20,2.0,10547,0.0,40.0,0.0,0.0,1.0,8.0,6.0,8.0,3.9,3698.577510649526,0.0,27000.0,122800.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,31487.17948717949,4,0,4_0,4_0 +433,21.0,22.0,38.0,111,31,20,0.0,10549,0.0,0.0,0.0,37.0,1.0,2.0,1.0,2.0,1.3,920.127541835463,0.0,0.0,14446.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11112.307692307691,1,0,1_1,1_0 +434,18.0,24.0,42.0,111,37,20,0.0,1055,0.0,0.0,36.0,0.0,1.0,4.0,1.0,2.0,1.3,2606.110046001283,2600.0,0.0,38133.0,1,2,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,29333.076923076922,4,0,4_0,4_0 +435,0.0,0.0,50.0,111,22,50,0.0,10550,0.0,0.0,0.0,53.0,1.0,2.0,0.0,1.0,1.0,3028.0310977429353,2942.6800000000003,0.0,20544.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,20544.0,3,0,3_1,3_0 +436,15.0,15.0,79.0,300,78,71,0.0,10551,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3596.825993077804,0.0,0.0,20596.0,5,3,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20596.0,3,0,3_0,3_1 +437,0.0,11.0,38.0,221,65,71,0.0,10552,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1069.8678044775322,0.0,0.0,37860.0,1,3,1,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21033.333333333332,3,0,3_0,3_0 +438,0.0,0.0,64.0,400,71,50,0.0,10553,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1800.4797645613426,1735.2399999999998,0.0,14544.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14544.0,2,0,2_0,2_1 +439,1.0,6.0,61.0,111,77,50,2.0,10554,0.0,0.0,5.0,0.0,0.0,4.0,0.0,2.0,1.5,1681.9742384036872,5486.52,12000.0,37733.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,25155.333333333332,4,0,4_0,4_0 +440,0.0,0.0,36.0,112,38,12,0.0,10555,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,3740.1398965963867,3283.28,0.0,94158.0,1,2,9,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,62772.0,5,0,5,5_0 +441,1.0,10.0,70.0,120,71,70,2.0,10557,0.0,0.0,30.0,0.0,0.0,3.0,0.0,2.0,1.5,1387.8849268680472,0.0,5000.0,28640.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19093.333333333332,3,0,3_0,3_1 +442,1.0,1.0,71.0,221,47,50,0.0,10559,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2387.873725389017,2600.0,0.0,43216.0,1,4,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,28810.666666666668,4,0,4_0,4_0 +443,2.0,9.0,60.0,400,31,10,0.0,1056,0.0,1100.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,3275.4715048198905,416.0,0.0,1580.0,4,4,0,0.0,2,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,1215.3846153846152,1,0,1_0,1_1 +444,5.0,11.0,71.0,112,72,50,0.0,10562,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1807.6107544296099,2624.96,0.0,30850.0,5,2,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20566.666666666668,3,0,3_0,3_1 +445,0.0,0.0,60.0,112,54,50,0.0,10563,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2102.2863900113316,0.0,0.0,26358.0,1,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26358.0,4,0,4_0,4_1 +446,0.0,0.0,31.0,111,46,20,0.0,10564,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1856.5839702155379,4848.48,0.0,45341.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25189.444444444445,4,0,4_0,4_0 +447,9.0,9.0,37.0,111,37,20,0.0,10566,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4532.503702065465,2080.0,0.0,11973.0,4,2,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,11973.0,1,0,1_0,1_0 +448,1.0,1.0,27.0,111,55,71,0.0,10567,0.0,0.0,99999.0,0.0,1.0,4.0,2.0,3.0,1.6,1720.967988975323,0.0,0.0,14348.0,4,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,8967.5,1,0,1_1,1_0 +449,0.0,0.0,54.0,111,37,31,0.0,10569,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2102.4832455058986,2704.0,0.0,50130.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,50130.0,5,0,5,5_0 +450,1.0,1.0,59.0,112,77,70,1.0,1057,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,5161.822895095133,2796.56,7000.0,28834.0,4,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19222.666666666668,3,0,3_0,3_1 +451,1.0,1.0,67.0,111,75,20,1.0,10571,0.0,140.0,100.0,392.0,0.0,2.0,0.0,1.0,1.0,3013.4124545202803,0.0,8000.0,32338.0,5,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,32338.0,5,0,5,5_0 +452,1.0,3.0,35.0,111,63,71,0.0,10572,0.0,0.0,200.0,0.0,2.0,5.0,2.0,4.0,2.1,3129.2520090200264,2704.0,0.0,38660.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18409.52380952381,2,0,2_0,2_0 +453,5.0,5.0,60.0,111,62,50,0.0,10574,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2100.1350749364387,2600.0,0.0,16389.0,5,1,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,16389.0,2,0,2_0,2_0 +454,4.0,4.0,25.0,111,46,43,0.0,10576,0.0,300.0,250.0,244.0,1.0,3.0,1.0,2.0,1.3,2334.620831190272,0.0,0.0,16827.0,1,3,10,8.0,2,3.0,0.0,1.0,0,0,0,0,1,1,2.0,1.0,12943.846153846154,1,0,1_1,1_0 +455,1.0,1.0,44.0,120,56,71,0.0,10577,0.0,0.0,0.0,0.0,1.0,4.0,3.0,6.0,2.9,3580.815825893806,800.28,0.0,22520.0,4,1,0,0.0,5,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,7765.517241379311,1,0,1_0,1_1 +456,0.0,0.0,23.0,111,37,30,1.0,10578,0.0,1000.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4314.451980905668,0.0,12000.0,18767.0,2,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,18767.0,3,0,3_1,3_0 +457,10.0,22.0,35.0,300,64,44,0.0,1058,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3433.4825231410864,0.0,0.0,8490.0,4,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,8490.0,1,0,1_1,1_1 +458,1.0,4.0,26.0,120,62,50,2.0,10580,0.0,90.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,3190.8870683927476,6198.4,14800.0,34186.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,16279.047619047618,2,0,2_1,2_1 +459,4.0,13.0,64.0,111,75,33,0.0,10582,0.0,0.0,400.0,550.0,0.0,2.0,0.0,1.0,1.0,3776.5416841130163,0.0,0.0,25976.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,25976.0,4,0,4_0,4_0 +460,8.0,8.0,33.0,111,62,71,0.0,10583,0.0,150.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2194.7268730679025,4529.200000000001,0.0,35996.0,1,3,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14398.4,2,0,2_0,2_0 +461,5.0,21.0,59.0,111,53,50,0.0,10586,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1725.015669167612,1872.0,0.0,55344.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36896.0,5,0,5,5_0 +462,0.0,0.0,64.0,111,74,50,0.0,10588,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2012.1917950977652,0.0,0.0,99654.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,66436.0,5,0,5,5_0 +463,3.0,14.0,77.0,120,78,71,0.0,10590,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3558.1798679902636,1560.52,0.0,11640.0,5,4,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,11640.0,1,0,1_0,1_1 +464,0.0,17.0,30.0,211,54,50,0.0,10591,0.0,0.0,1200.0,120.0,2.0,3.0,2.0,4.0,2.1,859.5121535330993,1560.0,0.0,47848.0,1,3,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,22784.761904761905,3,0,3_1,3_0 +465,4.0,11.0,28.0,112,63,50,0.0,10592,0.0,0.0,60.0,0.0,2.0,5.0,0.0,2.0,1.5,4021.6409113097016,2340.0,0.0,29620.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19746.666666666668,3,0,3_0,3_1 +466,2.0,2.0,63.0,400,37,31,0.0,10593,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1465.7934602669973,0.0,0.0,16027.0,1,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,16027.0,2,0,2_0,2_1 +467,0.0,0.0,55.0,111,45,42,0.0,10594,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1814.612236008768,4231.76,0.0,29478.0,1,2,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29478.0,4,0,4_0,4_0 +468,3.0,9.0,45.0,111,56,31,0.0,10595,0.0,1000.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,1598.6858313482287,1560.0,0.0,23106.0,1,3,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,12836.666666666666,1,0,1_1,1_0 +469,12.0,12.0,28.0,300,47,43,0.0,10597,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3536.7253992044007,0.0,0.0,42434.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20206.666666666664,3,0,3_0,3_1 +470,12.0,12.0,48.0,111,63,71,0.0,10598,0.0,0.0,0.0,0.0,4.0,5.0,2.0,4.0,2.5,1834.3744568129923,1040.0,0.0,53349.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21339.6,3,0,3_0,3_0 +471,9.0,9.0,35.0,111,63,71,0.0,10599,0.0,0.0,0.0,200.0,1.0,3.0,3.0,5.0,2.4,3227.783557465468,0.0,0.0,17901.0,4,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,7458.75,1,0,1_1,1_0 +472,3.0,5.0,44.0,111,62,50,0.0,106,0.0,1000.0,0.0,0.0,2.0,4.0,4.0,6.0,2.9,2711.8576827987695,3148.6,0.0,19470.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,6713.793103448276,1,0,1_0,1_0 +473,3.0,3.0,29.0,300,85,12,0.0,1060,0.0,99999.0,0.0,550.0,1.0,3.0,0.0,2.0,1.5,4001.0895504868536,3120.0,0.0,54620.0,4,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,36413.333333333336,5,0,5,5_1 +474,7.0,7.0,57.0,111,52,42,0.0,10602,0.0,0.0,70.0,459.0,2.0,3.0,1.0,3.0,2.0,1898.3364242359935,2704.0,0.0,52437.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,26218.5,4,0,4_0,4_0 +475,3.0,7.0,53.0,211,47,50,0.0,10603,0.0,199998.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3046.1758109462694,3076.84,0.0,19150.0,1,3,2,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19150.0,3,0,3_0,3_0 +476,0.0,0.0,61.0,111,75,50,2.0,10604,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3931.8517374447756,0.0,1300.0,19380.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19380.0,3,0,3_0,3_0 +477,1.0,1.0,83.0,111,75,50,1.0,10608,0.0,250.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2363.7562151898933,1015.04,10000.0,61685.0,5,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,30842.5,4,0,4_0,4_0 +478,5.0,7.0,56.0,111,38,30,0.0,10609,0.0,200.0,0.0,664.0,3.0,5.0,2.0,4.0,2.5,740.9900149750391,3536.0,0.0,107161.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,42864.4,5,0,5,5_0 +479,4.0,21.0,45.0,111,67,71,0.0,1061,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2806.1607872994487,0.0,0.0,10320.0,4,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,10320.0,1,0,1_1,1_0 +480,3.0,3.0,63.0,111,38,41,0.0,10610,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2909.177417181647,2766.4,0.0,63062.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,42041.333333333336,5,0,5,5_0 +481,3.0,5.0,75.0,111,74,30,0.0,10612,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1738.543683713299,1716.52,0.0,84741.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,56494.0,5,0,5,5_0 +482,1.0,2.0,37.0,111,43,33,1.0,10614,0.0,199998.0,0.0,0.0,1.0,2.0,2.0,3.0,1.6,851.8712387341592,0.0,11000.0,27326.0,1,2,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,17078.75,2,0,2_0,2_0 +483,4.0,13.0,27.0,111,63,71,0.0,10615,0.0,0.0,200.0,0.0,2.0,3.0,1.0,3.0,1.8,1298.6153061669336,2704.0,0.0,34328.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19071.11111111111,3,0,3_0,3_0 +484,0.0,0.0,28.0,112,56,41,0.0,10616,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1569.2107359887789,0.0,0.0,37230.0,1,3,8,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20683.333333333332,3,0,3_0,3_0 +485,1.0,1.0,50.0,111,63,70,1.0,10618,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1746.4858673536544,2302.56,19000.0,46158.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18463.2,2,0,2_0,2_0 +486,7.0,15.0,49.0,111,38,10,0.0,10619,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,3.0,1566.3392190751683,0.0,0.0,96954.0,1,1,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,32318.0,5,0,5,5_0 +487,5.0,5.0,32.0,111,47,31,0.0,1062,0.0,80.0,120.0,140.0,1.0,3.0,1.0,2.0,1.3,936.6084785072811,5694.0,0.0,29963.0,1,3,7,6.0,2,2.0,1.0,1.0,0,0,1,0,0,1,1.0,1.0,23048.46153846154,3,0,3_1,3_0 +488,3.0,3.0,74.0,111,75,50,0.0,10621,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2040.8054153519981,0.0,0.0,31060.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,20706.666666666668,3,0,3_0,3_0 +489,3.0,3.0,81.0,120,71,70,0.0,10622,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1931.8374397469104,0.0,0.0,12807.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12807.0,1,0,1_0,1_0 +490,4.0,4.0,77.0,120,71,12,0.0,10623,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1685.6702078424669,1353.04,0.0,31573.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21048.666666666668,3,0,3_0,3_1 +491,1.0,1.0,52.0,212,43,33,1.0,10624,0.0,150.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2856.771358195047,2819.44,15000.0,71296.0,1,1,4,0.0,5,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,28518.4,4,0,4_0,4_1 +492,0.0,23.0,30.0,111,48,43,0.0,10626,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3357.365420985412,0.0,0.0,41775.0,1,2,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27850.0,4,0,4_0,4_0 +493,4.0,6.0,49.0,112,52,31,0.0,10627,0.0,0.0,400.0,0.0,2.0,6.0,2.0,4.0,2.5,1840.9239290625594,0.0,0.0,53895.0,1,1,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21558.0,3,0,3_0,3_0 +494,0.0,0.0,30.0,111,56,50,0.0,10628,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,706.0240289373702,0.0,0.0,25474.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15921.25,2,0,2_1,2_0 +495,15.0,18.0,71.0,112,74,30,0.0,10632,0.0,0.0,150.0,0.0,0.0,5.0,0.0,1.0,1.0,2539.242985817647,0.0,0.0,41903.0,5,1,10,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,41903.0,5,0,5,5_0 +496,0.0,0.0,24.0,111,52,50,0.0,10633,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3996.5783419694176,1948.9599999999998,0.0,2498.0,4,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,2498.0,1,0,1_1,1_0 +497,2.0,3.0,28.0,120,21,50,0.0,10634,0.0,10.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2437.235200033867,9401.599999999999,0.0,52456.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,21856.666666666668,3,0,3_1,3_0 +498,2.0,2.0,66.0,400,77,50,0.0,10635,0.0,199998.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2170.5518353300636,0.0,0.0,18750.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18750.0,3,0,3_0,3_1 +499,8.0,8.0,21.0,112,55,50,0.0,10636,0.0,10.0,0.0,560.0,2.0,1.0,0.0,2.0,1.5,6500.163121790226,1873.56,0.0,16829.0,4,3,10,4.0,5,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,11219.333333333334,1,0,1_0,1_0 +500,3.0,10.0,53.0,120,47,50,0.0,10638,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1709.663985831048,0.0,0.0,58414.0,1,4,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,38942.666666666664,5,0,5,5_0 +501,12.0,12.0,30.0,111,63,71,0.0,10639,0.0,199998.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,6455.340540148655,0.0,0.0,0.0,4,3,8,6.0,1,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,0.0,1,0,1_0,1_0 +502,4.0,4.0,20.0,111,84,41,0.0,10640,0.0,60.0,0.0,203.0,0.0,1.0,0.0,1.0,1.0,3262.4387122488106,0.0,0.0,9344.0,3,3,9,7.0,1,3.0,1.0,1.0,0,0,0,1,0,1,0.0,3.0,9344.0,1,0,1_1,1_0 +503,1.0,1.0,25.0,112,62,31,0.0,10641,0.0,0.0,140.0,0.0,2.0,4.0,0.0,2.0,1.5,2464.789287693827,3536.0,0.0,34979.0,1,3,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23319.333333333332,3,0,3_0,3_1 +504,1.0,1.0,63.0,111,75,50,1.0,10642,0.0,70.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2711.865921140516,3522.4799999999996,30000.0,44113.0,5,1,4,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,29408.666666666668,4,0,4_0,4_0 +505,0.0,10.0,53.0,111,35,31,0.0,10643,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1648.6276882239003,2600.0,0.0,50920.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,24247.619047619046,4,0,4_0,4_0 +506,4.0,12.0,65.0,111,78,50,0.0,10645,0.0,0.0,0.0,480.0,1.0,3.0,0.0,2.0,1.5,1926.2155975094354,0.0,0.0,31100.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20733.333333333332,3,0,3_0,3_0 +507,0.0,0.0,41.0,111,38,30,0.0,10646,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5088.358085935655,0.0,0.0,21580.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21580.0,3,0,3_0,3_0 +508,2.0,10.0,47.0,112,65,50,0.0,10647,0.0,0.0,0.0,480.0,2.0,3.0,0.0,2.0,1.5,1707.152735598044,2132.0,0.0,54190.0,1,3,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,36126.666666666664,5,0,5,5_0 +509,0.0,0.0,45.0,111,33,20,0.0,10648,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1767.0421990291995,2244.84,0.0,69908.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30394.782608695656,4,0,4_0,4_0 +510,2.0,4.0,29.0,111,63,43,0.0,10649,0.0,20.0,0.0,429.0,1.0,2.0,0.0,1.0,1.0,3745.5932929939413,0.0,0.0,25931.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25931.0,4,0,4_0,4_0 +511,0.0,0.0,37.0,112,63,50,0.0,10650,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2475.894722642696,1636.44,0.0,40640.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22577.777777777777,3,0,3_0,3_1 +512,4.0,13.0,42.0,111,38,20,0.0,10651,0.0,150.0,250.0,0.0,1.0,4.0,1.0,3.0,2.0,1500.9703342785988,1792.44,0.0,38884.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,19442.0,3,0,3_0,3_0 +513,6.0,30.0,50.0,111,53,30,0.0,10652,0.0,0.0,80.0,0.0,2.0,5.0,4.0,6.0,2.9,1614.0605514203198,0.0,0.0,42969.0,1,1,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,14816.896551724138,2,0,2_1,2_0 +514,0.0,0.0,68.0,111,72,41,0.0,10653,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2080.8931495723464,0.0,0.0,62949.0,5,2,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,41966.0,5,0,5,5_0 +515,8.0,8.0,31.0,111,43,30,0.0,10654,0.0,0.0,0.0,743.0,2.0,3.0,1.0,3.0,1.8,2558.29831448276,0.0,0.0,33419.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18566.11111111111,2,0,2_0,2_0 +516,6.0,8.0,63.0,112,77,60,0.0,10656,0.0,99999.0,99999.0,0.0,0.0,3.0,0.0,2.0,1.5,3319.0755760582133,0.0,0.0,32256.0,5,1,8,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,21504.0,3,0,3_0,3_0 +517,0.0,0.0,84.0,111,72,50,0.0,10657,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3526.676483838534,2022.8,0.0,23804.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15869.333333333334,2,0,2_0,2_0 +518,7.0,7.0,69.0,112,74,33,0.0,1066,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1592.4023187189807,0.0,0.0,43577.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,29051.333333333332,4,0,4_0,4_1 +519,4.0,9.0,75.0,211,78,50,0.0,10660,0.0,480.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2611.9398440437876,0.0,0.0,24410.0,5,1,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16273.333333333334,2,0,2_0,2_0 +520,4.0,7.0,44.0,112,54,43,0.0,10661,0.0,0.0,80.0,0.0,1.0,4.0,2.0,4.0,2.5,3520.4146902050265,3120.0,0.0,24618.0,1,1,9,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,9847.2,1,0,1_0,1_1 +521,8.0,9.0,46.0,111,37,42,0.0,10662,0.0,200.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1734.6377265497265,0.0,0.0,64988.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25995.2,4,0,4_0,4_0 +522,2.0,10.0,38.0,112,53,42,0.0,10663,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3354.4352621601747,2745.08,0.0,54227.0,1,2,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25822.38095238095,4,0,4_0,4_0 +523,2.0,2.0,61.0,111,72,71,0.0,10665,0.0,300.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2636.6872398085707,0.0,0.0,33877.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22584.666666666668,3,0,3_0,3_0 +524,2.0,5.0,89.0,112,77,71,0.0,10666,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2857.6651541232745,0.0,0.0,15423.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15423.0,2,0,2_0,2_1 +525,4.0,13.0,55.0,300,81,50,0.0,10667,0.0,150.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1433.9643837927792,520.0,0.0,12132.0,4,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12132.0,1,0,1_1,1_1 +526,14.0,14.0,33.0,111,67,50,0.0,10668,0.0,0.0,0.0,300.0,1.0,2.0,0.0,1.0,1.0,4033.7242840797053,0.0,0.0,11700.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11700.0,1,0,1_0,1_0 +527,4.0,15.0,35.0,111,48,50,0.0,10669,0.0,0.0,0.0,446.0,1.0,2.0,1.0,2.0,1.3,4136.634806474414,3042.0,0.0,23549.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18114.615384615383,2,0,2_0,2_0 +528,0.0,0.0,55.0,111,46,31,0.0,1067,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2252.0439316754764,520.0,0.0,42867.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28578.0,4,0,4_0,4_0 +529,2.0,2.0,60.0,111,56,71,0.0,10670,0.0,0.0,220.0,0.0,1.0,4.0,0.0,2.0,1.5,2356.639169021742,2080.0,0.0,32810.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21873.333333333332,3,0,3_0,3_0 +530,23.0,23.0,76.0,111,78,50,0.0,10671,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2883.0825517081503,0.0,0.0,22920.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22920.0,3,0,3_0,3_0 +531,0.0,2.0,49.0,111,52,71,2.0,10672,0.0,0.0,30.0,165.0,1.0,2.0,0.0,1.0,1.0,2447.270964751875,0.0,7000.0,13092.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,13092.0,1,0,1_1,1_0 +532,0.0,0.0,46.0,111,85,71,0.0,10674,0.0,0.0,0.0,22.0,0.0,3.0,0.0,1.0,1.0,3181.300332912007,1040.0,0.0,14052.0,7,3,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14052.0,2,0,2_1,2_0 +533,6.0,6.0,57.0,111,23,50,0.0,10675,0.0,600.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1885.1630352191169,0.0,0.0,96557.0,1,2,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,64371.333333333336,5,0,5,5_0 +534,11.0,15.0,64.0,111,54,60,0.0,10677,0.0,0.0,220.0,0.0,1.0,4.0,0.0,1.0,1.0,2007.1282728285476,0.0,0.0,12770.0,5,4,5,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,12770.0,1,0,1_0,1_0 +535,1.0,20.0,44.0,300,63,50,2.0,10679,0.0,400.0,200.0,0.0,1.0,5.0,0.0,1.0,1.0,2393.4239532830384,3120.0,2000.0,31208.0,1,1,0,0.0,1,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,31208.0,4,0,4_0,4_1 +536,7.0,7.0,62.0,112,77,50,0.0,1068,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2869.89954566349,2080.0,0.0,46180.0,5,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,30786.666666666668,4,0,4_0,4_0 +537,0.0,0.0,81.0,211,86,70,0.0,10681,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2596.534321997755,0.0,0.0,12710.0,5,1,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12710.0,1,0,1_0,1_0 +538,3.0,10.0,47.0,112,54,43,0.0,10682,0.0,0.0,70.0,0.0,1.0,5.0,3.0,4.0,2.5,1802.1891181390224,0.0,0.0,15971.0,4,1,9,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,6388.4,1,0,1_0,1_0 +539,0.0,0.0,77.0,300,78,71,0.0,10683,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2955.015041765047,0.0,0.0,25000.0,5,4,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16666.666666666668,2,0,2_0,2_1 +540,0.0,0.0,48.0,112,42,43,0.0,10684,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,1861.3123855529025,3640.0,0.0,25175.0,1,1,8,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16783.333333333332,2,0,2_0,2_0 +541,7.0,7.0,32.0,111,54,31,0.0,10685,0.0,150.0,150.0,0.0,1.0,1.0,0.0,1.0,1.0,2993.9913344516003,676.0,0.0,19735.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,19735.0,3,0,3_1,3_0 +542,5.0,5.0,32.0,111,55,44,0.0,10686,0.0,0.0,0.0,0.0,2.0,3.0,3.0,5.0,2.4,2414.1838129437806,2600.0,0.0,34932.0,4,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14555.0,2,0,2_1,2_0 +543,13.0,14.0,65.0,221,77,71,0.0,10687,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2114.398311435161,2238.08,0.0,15011.0,5,4,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15011.0,2,0,2_0,2_0 +544,10.0,14.0,48.0,112,34,30,0.0,10688,0.0,0.0,400.0,0.0,2.0,4.0,0.0,2.0,1.5,2053.812556584008,2080.0,0.0,183689.0,1,1,9,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,122459.33333333333,5,0,5,5_0 +545,11.0,11.0,53.0,111,68,50,0.0,10689,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3736.3377733377597,1040.52,0.0,10605.0,4,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10605.0,1,0,1_1,1_0 +546,0.0,0.0,44.0,111,33,20,0.0,1069,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,832.9469925082111,3033.6800000000003,0.0,21841.0,1,2,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16800.76923076923,2,0,2_0,2_0 +547,12.0,12.0,39.0,111,56,71,0.0,10690,0.0,0.0,0.0,0.0,1.0,2.0,3.0,4.0,2.1,1311.3538452859605,0.0,0.0,13469.0,4,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,6413.809523809524,1,0,1_1,1_0 +548,2.0,9.0,53.0,112,47,43,0.0,10691,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2454.126153435705,0.0,0.0,79368.0,1,1,9,1.0,4,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,39684.0,5,0,5,5_0 +549,2.0,2.0,44.0,111,64,41,0.0,10695,0.0,400.0,80.0,0.0,2.0,4.0,4.0,6.0,3.1,1433.3516969676173,0.0,0.0,56536.0,1,2,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,1,2.0,1.0,18237.41935483871,2,0,2_1,2_0 +550,0.0,0.0,25.0,111,43,30,0.0,10699,0.0,0.0,0.0,0.0,4.0,4.0,3.0,6.0,3.5,2369.4024625102297,2860.0,0.0,57815.0,1,2,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16518.571428571428,2,0,2_0,2_0 +551,0.0,0.0,25.0,111,67,50,0.0,107,0.0,0.0,0.0,303.0,1.0,2.0,0.0,1.0,1.0,4912.60252899729,1300.0,0.0,7528.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7528.0,1,0,1_1,1_0 +552,1.0,19.0,59.0,111,63,50,2.0,10701,0.0,600.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1756.765555297577,2617.16,500.0,43393.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,28928.666666666668,4,0,4_0,4_0 +553,5.0,5.0,90.0,111,74,71,0.0,10702,0.0,0.0,99999.0,600.0,0.0,2.0,0.0,1.0,1.0,2627.878915296126,0.0,0.0,43217.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,43217.0,5,0,5,5_0 +554,4.0,4.0,49.0,300,52,50,0.0,10703,0.0,400.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,554.3789707023258,1995.7600000000002,0.0,24101.0,1,3,0,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,16067.333333333334,2,0,2_1,2_0 +555,0.0,0.0,32.0,111,55,12,0.0,10704,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3345.027616909617,0.0,0.0,25868.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25868.0,4,0,4_0,4_0 +556,2.0,2.0,72.0,300,71,60,0.0,10705,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1405.4520062227582,0.0,0.0,32620.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21746.666666666668,3,0,3_0,3_1 +557,3.0,9.0,27.0,111,56,43,0.0,10706,0.0,20.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1051.3840189378789,0.0,0.0,5638.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,4336.923076923077,1,0,1_1,1_0 +558,5.0,6.0,80.0,111,77,60,0.0,10707,0.0,0.0,0.0,252.0,0.0,2.0,0.0,1.0,1.0,6072.350858211181,0.0,0.0,24708.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24708.0,4,0,4_0,4_0 +559,0.0,0.0,74.0,111,77,50,0.0,10708,0.0,0.0,0.0,301.0,0.0,3.0,0.0,2.0,1.5,4934.6298935136,0.0,0.0,34940.0,5,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23293.333333333332,3,0,3_0,3_0 +560,0.0,0.0,63.0,111,77,70,0.0,10709,0.0,0.0,0.0,330.0,0.0,3.0,0.0,1.0,1.0,3812.8115486247484,0.0,0.0,23140.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23140.0,3,0,3_0,3_0 +561,6.0,19.0,37.0,111,65,60,0.0,1071,0.0,50.0,0.0,58.0,1.0,4.0,5.0,7.0,3.0,2010.3569070281853,0.0,0.0,36310.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,12103.333333333334,1,0,1_1,1_0 +562,2.0,3.0,44.0,111,67,60,0.0,10710,0.0,50.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,793.3632207862638,2340.0,0.0,21190.0,1,2,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,14126.666666666666,2,0,2_0,2_0 +563,10.0,10.0,29.0,111,46,20,0.0,10711,0.0,0.0,99999.0,0.0,1.0,2.0,0.0,1.0,1.0,2596.8215159016995,3108.04,0.0,23542.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23542.0,3,0,3_0,3_0 +564,11.0,12.0,26.0,111,54,42,0.0,10714,0.0,0.0,0.0,328.0,1.0,2.0,0.0,1.0,1.0,3608.367724060332,0.0,0.0,17182.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,17182.0,2,0,2_1,2_0 +565,1.0,1.0,39.0,111,46,50,1.0,10717,0.0,0.0,99999.0,0.0,1.0,4.0,2.0,3.0,2.0,652.9913679143556,1300.0,7490.0,21941.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,10970.5,1,0,1_1,1_0 +566,9.0,9.0,56.0,400,22,30,0.0,10719,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2510.3443218403218,0.0,0.0,8387.0,1,4,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,5591.333333333333,1,0,1_0,1_1 +567,1.0,1.0,42.0,221,47,41,1.0,10720,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2619.8979276002383,0.0,15500.0,27702.0,1,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18468.0,2,0,2_0,2_0 +568,9.0,9.0,59.0,111,72,31,0.0,10722,0.0,0.0,0.0,69.0,0.0,1.0,0.0,1.0,1.0,3691.362711336551,520.0,0.0,9970.0,7,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,9970.0,1,0,1_1,1_0 +569,5.0,5.0,44.0,120,64,50,0.0,10723,0.0,99999.0,0.0,0.0,3.0,5.0,2.0,5.0,2.8,3370.907086673958,1560.52,0.0,39688.0,4,3,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,14174.285714285716,2,0,2_1,2_1 +570,0.0,0.0,78.0,111,77,60,0.0,10724,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2074.039508879834,0.0,0.0,20963.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13975.333333333334,2,0,2_0,2_0 +571,11.0,18.0,31.0,112,64,43,0.0,10725,0.0,100.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2373.963707061008,2912.0,0.0,43972.0,1,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20939.04761904762,3,0,3_0,3_1 +572,0.0,0.0,52.0,111,62,50,0.0,10726,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2313.616339225476,2549.04,0.0,68993.0,1,2,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,45995.333333333336,5,0,5,5_0 +573,0.0,5.0,56.0,111,43,33,2.0,10728,0.0,300.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1682.3682676390256,2314.0,6000.0,56781.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,37854.0,5,0,5,5_0 +574,4.0,12.0,46.0,111,48,71,0.0,10729,0.0,10.0,25.0,0.0,2.0,3.0,1.0,3.0,2.0,3326.1866152351326,0.0,0.0,70765.0,1,2,8,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,35382.5,5,0,5,5_0 +575,9.0,11.0,51.0,300,52,50,0.0,1073,0.0,230.0,50.0,500.0,2.0,3.0,1.0,2.0,1.5,2742.247295457425,0.0,0.0,22454.0,1,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14969.333333333334,2,0,2_0,2_1 +576,11.0,11.0,64.0,111,77,71,0.0,10733,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,700.5331918174446,0.0,0.0,28555.0,5,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21965.384615384613,3,0,3_0,3_0 +577,4.0,9.0,24.0,111,63,50,0.0,10734,0.0,199998.0,0.0,495.0,2.0,1.0,0.0,2.0,1.5,4406.5180386411375,0.0,0.0,28365.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18910.0,3,0,3_0,3_0 +578,7.0,7.0,43.0,111,46,31,0.0,10735,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1485.796477224314,2600.0,0.0,23921.0,1,2,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23921.0,4,0,4_0,4_0 +579,0.0,14.0,87.0,300,86,71,0.0,10736,0.0,200.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2214.2836783602124,0.0,0.0,14186.0,5,1,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,14186.0,2,0,2_0,2_0 +580,0.0,0.0,42.0,111,46,42,0.0,10739,0.0,0.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,1459.25345543522,520.0,0.0,61670.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30835.0,4,0,4_0,4_0 +581,0.0,0.0,68.0,400,77,70,0.0,10740,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2600.3752106928528,0.0,0.0,7835.0,5,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,7835.0,1,0,1_0,1_1 +582,2.0,19.0,47.0,111,45,42,0.0,10741,0.0,0.0,200.0,0.0,1.0,4.0,2.0,3.0,1.8,592.0325001384591,1872.0,0.0,27852.0,1,3,6,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,15473.333333333332,2,0,2_0,2_0 +583,9.0,9.0,60.0,212,13,50,0.0,10742,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2279.924979162412,2121.6,0.0,12060.0,1,1,2,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8040.0,1,0,1_0,1_1 +584,13.0,13.0,57.0,111,56,41,0.0,10745,0.0,0.0,0.0,0.0,1.0,10.0,1.0,3.0,1.8,1469.3462582780946,0.0,0.0,30715.0,4,1,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17063.888888888887,2,0,2_0,2_0 +585,0.0,0.0,67.0,300,74,30,0.0,10747,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1802.4494272951508,0.0,0.0,68366.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,45577.333333333336,5,0,5,5_1 +586,0.0,0.0,48.0,112,43,33,0.0,10748,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1962.6729503471217,3263.0,0.0,43108.0,1,2,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28738.666666666668,4,0,4_0,4_1 +587,15.0,15.0,48.0,111,54,50,0.0,10749,0.0,0.0,0.0,124.0,1.0,4.0,2.0,3.0,1.6,863.57341636899,2080.0,0.0,16224.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10140.0,1,0,1_1,1_0 +588,19.0,19.0,55.0,112,68,50,0.0,1075,0.0,0.0,0.0,180.0,1.0,2.0,0.0,1.0,1.0,2761.34914541298,1093.56,0.0,23330.0,1,3,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,23330.0,3,0,3_1,3_0 +589,20.0,20.0,78.0,112,,70,0.0,10751,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2232.003735805185,0.0,0.0,14420.0,5,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14420.0,2,0,2_0,2_0 +590,10.0,10.0,45.0,112,48,50,0.0,10754,0.0,0.0,100.0,600.0,2.0,3.0,0.0,2.0,1.5,2343.4653613540127,2916.16,0.0,34465.0,4,3,9,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,22976.666666666668,3,0,3_0,3_1 +591,0.0,0.0,57.0,112,54,50,0.0,10755,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2635.8992856362092,0.0,0.0,32984.0,1,3,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21989.333333333332,3,0,3_0,3_1 +592,9.0,11.0,56.0,112,85,50,0.0,10756,0.0,0.0,180.0,0.0,0.0,4.0,2.0,4.0,2.3,1106.2879919478394,0.0,0.0,10442.0,7,3,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,1,3.0,0.0,4540.0,1,0,1_1,1_1 +593,2.0,9.0,73.0,400,74,31,0.0,10757,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2211.831137814675,0.0,0.0,27240.0,5,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,27240.0,4,0,4_0,4_1 +594,2.0,2.0,25.0,211,63,50,0.0,10758,0.0,400.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,596.6584222889016,0.0,0.0,19701.0,1,3,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,13134.0,1,0,1_0,1_0 +595,17.0,17.0,56.0,111,52,50,0.0,1076,0.0,200.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1429.4661456101728,1257.88,0.0,33055.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22036.666666666668,3,0,3_0,3_0 +596,3.0,16.0,41.0,221,52,42,0.0,10760,0.0,500.0,0.0,0.0,3.0,7.0,4.0,6.0,3.3,2219.5291967497196,0.0,0.0,32427.0,1,1,3,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,9826.363636363636,1,0,1_0,1_0 +597,0.0,0.0,41.0,111,62,31,0.0,10761,0.0,0.0,0.0,0.0,1.0,6.0,4.0,6.0,2.9,1918.8267538589557,3120.0,0.0,39403.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13587.241379310346,1,0,1_1,1_0 +598,0.0,0.0,40.0,300,67,42,0.0,10762,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,2908.3224255907317,4940.52,0.0,42733.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18579.565217391304,2,0,2_0,2_1 +599,6.0,11.0,56.0,112,75,44,0.0,10765,0.0,100.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3139.215473360514,0.0,0.0,44868.0,7,1,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,22434.0,3,0,3_0,3_0 +600,6.0,7.0,29.0,111,85,71,0.0,10767,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,1.9,1094.0315920040705,0.0,0.0,25580.0,6,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13463.157894736843,1,0,1_1,1_0 +601,0.0,0.0,36.0,211,46,31,1.0,10768,0.0,0.0,99999.0,0.0,2.0,6.0,2.0,4.0,2.1,2924.22337511208,0.0,16300.0,53110.0,1,2,1,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,25290.47619047619,4,0,4_0,4_0 +602,9.0,13.0,35.0,111,33,30,0.0,10769,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2377.298717800243,2042.56,0.0,51370.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28538.888888888887,4,0,4_0,4_0 +603,0.0,0.0,26.0,111,56,10,0.0,10770,0.0,0.0,0.0,380.0,1.0,2.0,0.0,1.0,1.0,5308.199297776478,0.0,0.0,16252.0,1,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16252.0,2,0,2_0,2_0 +604,2.0,3.0,53.0,111,43,33,0.0,10771,0.0,170.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2242.4757159931023,6448.52,0.0,63913.0,1,1,9,7.0,3,4.0,0.0,1.0,0,0,0,1,0,0,0.0,4.0,42608.666666666664,5,0,5,5_0 +605,8.0,12.0,33.0,111,22,31,0.0,10772,0.0,180.0,600.0,0.0,2.0,7.0,0.0,2.0,1.5,3560.3908776477792,4051.84,0.0,33126.0,1,3,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,22084.0,3,0,3_0,3_0 +606,0.0,0.0,49.0,211,85,50,0.0,10773,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1725.0230853298665,0.0,0.0,20700.0,7,3,2,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13800.0,1,0,1_0,1_0 +607,7.0,18.0,66.0,111,74,12,0.0,10776,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1449.2297360039531,0.0,0.0,45431.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,30287.333333333332,4,0,4_0,4_0 +608,5.0,5.0,59.0,112,56,60,0.0,10778,0.0,350.0,0.0,883.0,1.0,5.0,0.0,1.0,1.0,1765.2839774170711,0.0,0.0,22270.0,1,3,5,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22270.0,3,0,3_0,3_1 +609,11.0,11.0,85.0,111,77,71,0.0,10779,0.0,150.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3425.443946135137,0.0,0.0,31109.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20739.333333333332,3,0,3_0,3_0 +610,2.0,3.0,49.0,111,33,31,0.0,10780,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,855.9898649382349,2489.24,0.0,22698.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,17460.0,2,0,2_0,2_0 +611,1.0,1.0,48.0,111,31,10,0.0,10781,0.0,100.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,678.6591514876108,0.0,0.0,53345.0,1,2,5,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,29636.11111111111,4,0,4_0,4_0 +612,3.0,21.0,61.0,111,43,33,0.0,10782,0.0,0.0,0.0,685.0,1.0,3.0,0.0,1.0,1.0,3346.4291358756745,0.0,0.0,41866.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,41866.0,5,0,5,5_0 +613,13.0,24.0,58.0,111,63,44,0.0,10783,0.0,176.0,0.0,345.0,1.0,3.0,0.0,2.0,1.5,1470.2337003208904,2080.0,0.0,20870.0,1,3,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,13913.333333333334,2,0,2_0,2_0 +614,0.0,0.0,65.0,112,42,31,0.0,10784,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2010.5182312947852,5120.96,0.0,78019.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,52012.666666666664,5,0,5,5_1 +615,3.0,3.0,31.0,112,42,30,0.0,10785,0.0,450.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2933.4342815879163,0.0,0.0,36156.0,1,4,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17217.142857142855,2,0,2_0,2_1 +616,0.0,0.0,66.0,300,74,30,0.0,10787,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2365.42237344427,3598.4,0.0,43920.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29280.0,4,0,4_0,4_1 +617,0.0,0.0,41.0,112,43,41,0.0,10788,0.0,0.0,0.0,580.0,1.0,3.0,2.0,3.0,1.6,1812.804035304123,1238.64,0.0,9400.0,4,3,10,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,5875.0,1,0,1_0,1_0 +618,1.0,1.0,55.0,111,33,0,0.0,10789,0.0,410.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2307.3608679917875,0.0,0.0,83293.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,55528.666666666664,5,0,5,5_0 +619,5.0,5.0,40.0,300,34,30,0.0,1079,0.0,540.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2424.6203724467864,0.0,0.0,51600.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,34400.0,5,0,5,5_1 +620,11.0,11.0,59.0,111,56,50,0.0,10790,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2269.4128156471115,0.0,0.0,23068.0,1,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15378.666666666666,2,0,2_0,2_0 +621,0.0,0.0,39.0,111,22,71,0.0,10791,0.0,0.0,0.0,0.0,2.0,10.0,3.0,5.0,2.4,2507.5307875688345,0.0,0.0,71254.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29689.166666666668,4,0,4_0,4_0 +622,16.0,16.0,34.0,112,31,10,0.0,10792,0.0,0.0,0.0,0.0,1.0,8.0,1.0,3.0,1.8,2789.6406005921267,2751.84,0.0,229622.0,1,3,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,127567.77777777778,5,0,5,5_1 +623,2.0,13.0,70.0,112,74,12,0.0,10793,0.0,99999.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,705.537109428312,3683.6800000000003,0.0,94054.0,5,1,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,62702.666666666664,5,0,5,5_1 +624,6.0,6.0,42.0,112,45,31,0.0,10794,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2112.6212017535163,3174.6,0.0,52900.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23000.0,3,0,3_0,3_1 +625,0.0,19.0,62.0,111,75,50,2.0,10795,0.0,180.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2418.72780620321,3314.48,1200.0,58060.0,5,1,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,58060.0,5,0,5,5_0 +626,6.0,6.0,43.0,111,43,33,0.0,10796,0.0,450.0,0.0,0.0,2.0,12.0,2.0,4.0,2.1,2277.8840802001955,2600.0,0.0,95043.0,1,2,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,45258.57142857143,5,0,5,5_0 +627,2.0,2.0,58.0,111,85,71,0.0,10798,0.0,380.0,200.0,0.0,0.0,3.0,0.0,2.0,1.5,1863.9694739531394,0.0,0.0,9860.0,7,1,9,7.0,5,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,6573.333333333333,1,0,1_0,1_0 +628,5.0,10.0,51.0,111,37,31,0.0,10799,0.0,0.0,220.0,423.0,2.0,3.0,0.0,2.0,1.5,1505.4345249792018,234.0,0.0,39911.0,1,3,6,5.0,3,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,26607.333333333332,4,0,4_0,4_0 +629,2.0,8.0,75.0,111,75,50,0.0,1080,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,6387.812713105924,0.0,0.0,19913.0,5,1,6,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,13275.333333333334,1,0,1_0,1_0 +630,1.0,1.0,39.0,111,47,20,0.0,10800,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2827.2888369678594,0.0,0.0,77791.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,51860.666666666664,5,0,5,5_0 +631,9.0,16.0,64.0,111,75,44,0.0,10802,0.0,350.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1387.7873451712476,1300.0,0.0,30100.0,5,1,7,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20066.666666666668,3,0,3_0,3_0 +632,2.0,16.0,30.0,211,56,41,0.0,10803,0.0,250.0,0.0,0.0,1.0,7.0,2.0,4.0,2.1,646.6659505697883,0.0,0.0,27964.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,13316.190476190475,1,0,1_1,1_0 +633,2.0,2.0,78.0,111,78,71,0.0,10804,0.0,350.0,0.0,261.0,0.0,3.0,0.0,2.0,1.5,4791.803167515332,0.0,0.0,19030.0,5,3,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,12686.666666666666,1,0,1_0,1_0 +634,0.0,0.0,49.0,300,62,50,0.0,10805,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3271.2078955968077,0.0,0.0,14387.0,4,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14387.0,2,0,2_0,2_1 +635,1.0,4.0,55.0,300,21,71,0.0,10806,0.0,80.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2208.9701244492394,2080.0,0.0,59629.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23851.6,4,0,4_0,4_1 +636,3.0,28.0,34.0,112,54,31,0.0,10807,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,548.2247923674795,2570.88,0.0,21210.0,1,3,9,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,16315.384615384615,2,0,2_1,2_0 +637,0.0,0.0,52.0,120,67,50,0.0,10808,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2540.0520995989705,2602.6000000000004,0.0,44380.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22190.0,3,0,3_0,3_1 +638,6.0,6.0,46.0,400,63,50,0.0,10809,0.0,0.0,200.0,0.0,2.0,4.0,1.0,3.0,1.8,1850.6637464146872,343.2,0.0,44700.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,24833.333333333332,4,0,4_0,4_1 +639,0.0,0.0,32.0,111,35,30,0.0,1081,0.0,0.0,0.0,851.0,1.0,1.0,0.0,1.0,1.0,3435.793376064777,0.0,0.0,14311.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14311.0,2,0,2_0,2_0 +640,0.0,0.0,48.0,120,38,12,0.0,10810,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2015.4850993122254,4687.280000000001,0.0,131848.0,1,1,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,52739.2,5,0,5,5_0 +641,0.0,1.0,37.0,111,43,33,2.0,10811,0.0,200.0,0.0,1005.0,2.0,3.0,2.0,4.0,2.1,2214.1432245817045,2080.0,14000.0,71844.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,34211.42857142857,5,0,5,5_0 +642,4.0,5.0,63.0,111,56,71,0.0,10813,0.0,150.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2578.7473779911775,1040.0,0.0,25210.0,5,1,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16806.666666666668,2,0,2_0,2_0 +643,0.0,0.0,38.0,112,37,31,0.0,10814,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2575.9308887809293,6685.119999999999,0.0,66921.0,1,2,5,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31867.142857142855,5,0,5,5_1 +644,8.0,11.0,45.0,111,35,41,0.0,10816,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2655.040789992086,0.0,0.0,142407.0,1,1,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,67812.85714285714,5,0,5,5_0 +645,5.0,5.0,31.0,111,47,20,0.0,10817,0.0,0.0,30.0,370.0,1.0,2.0,0.0,1.0,1.0,4137.612656420772,3359.7200000000003,0.0,17639.0,1,3,5,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17639.0,2,0,2_0,2_0 +646,13.0,13.0,33.0,111,46,31,0.0,10818,0.0,0.0,99999.0,0.0,1.0,3.0,1.0,2.0,1.3,777.0258420452983,0.0,0.0,25608.0,1,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,19698.46153846154,3,0,3_1,3_0 +647,0.0,0.0,35.0,111,46,50,0.0,10819,0.0,0.0,0.0,153.0,1.0,3.0,1.0,2.0,1.3,983.0378166297932,0.0,0.0,19451.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14962.307692307691,2,0,2_1,2_0 +648,9.0,9.0,85.0,111,71,71,0.0,1082,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2129.273436059946,0.0,0.0,22080.0,5,1,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22080.0,3,0,3_0,3_0 +649,0.0,0.0,71.0,111,75,31,0.0,10820,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2215.1953823812023,0.0,0.0,64803.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,43202.0,5,0,5,5_0 +650,7.0,9.0,80.0,112,72,70,0.0,10821,0.0,300.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2567.93737175279,0.0,0.0,29715.0,5,1,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19810.0,3,0,3_0,3_1 +651,11.0,12.0,77.0,221,78,71,0.0,10824,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2463.501608936665,0.0,0.0,18746.0,5,1,1,2.0,1,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,18746.0,3,0,3_0,3_0 +652,10.0,11.0,82.0,111,86,71,0.0,10826,0.0,50.0,0.0,780.0,0.0,6.0,0.0,3.0,2.0,3096.3018025024767,0.0,0.0,46470.0,5,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23235.0,3,0,3_0,3_0 +653,0.0,13.0,58.0,112,56,71,2.0,10828,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2468.112664876009,3120.0,1000.0,27870.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18580.0,2,0,2_0,2_1 +654,0.0,0.0,75.0,400,78,71,0.0,10829,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2999.994111788371,2043.6,0.0,35203.0,5,4,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23468.666666666668,3,0,3_0,3_1 +655,0.0,0.0,59.0,111,78,71,0.0,1083,0.0,0.0,0.0,14.0,0.0,2.0,1.0,3.0,1.8,2088.139495791512,0.0,0.0,15762.0,7,3,5,4.0,5,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8756.666666666666,1,0,1_1,1_0 +656,0.0,0.0,37.0,111,68,50,0.0,10830,0.0,0.0,0.0,243.0,3.0,5.0,2.0,4.0,2.3,3683.192667968707,1560.0,0.0,36874.0,1,3,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16032.17391304348,2,0,2_1,2_0 +657,0.0,0.0,56.0,111,47,31,0.0,10832,0.0,0.0,0.0,0.0,3.0,7.0,4.0,6.0,3.5,2145.168468000718,4678.96,0.0,73027.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20864.85714285714,3,0,3_0,3_0 +658,3.0,5.0,37.0,111,63,43,0.0,10836,0.0,130.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1942.7778167750207,0.0,0.0,44877.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,21370.0,3,0,3_0,3_0 +659,6.0,10.0,67.0,111,75,50,0.0,10839,0.0,0.0,90.0,0.0,0.0,7.0,0.0,1.0,1.0,3554.029197594626,2751.84,0.0,27928.0,5,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,27928.0,4,0,4_0,4_0 +660,0.0,3.0,68.0,111,75,30,2.0,10840,0.0,199998.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2209.3247530674307,0.0,7500.0,32336.0,5,2,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,32336.0,5,0,5,5_0 +661,0.0,0.0,61.0,111,48,71,0.0,10843,0.0,0.0,0.0,0.0,3.0,3.0,2.0,4.0,2.5,2735.8249358180005,780.0,0.0,60056.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24022.4,4,0,4_0,4_0 +662,3.0,16.0,85.0,111,77,71,0.0,10844,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3292.560075617551,0.0,0.0,21710.0,5,1,9,7.0,1,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,21710.0,3,0,3_0,3_0 +663,0.0,10.0,52.0,111,38,41,2.0,10845,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,1320.8788114745453,1976.0,400.0,45556.0,1,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,30370.666666666668,4,0,4_0,4_0 +664,9.0,9.0,43.0,111,64,50,0.0,10848,0.0,262.0,0.0,342.0,1.0,4.0,2.0,3.0,1.8,870.3315435826366,3640.0,0.0,20643.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,11468.333333333334,1,0,1_1,1_0 +665,5.0,8.0,31.0,111,47,12,0.0,10849,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1861.5224751724975,1888.6399999999999,0.0,44819.0,1,2,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24899.444444444445,4,0,4_0,4_0 +666,14.0,14.0,56.0,111,52,50,0.0,10850,0.0,0.0,0.0,503.0,3.0,4.0,2.0,3.0,2.0,2070.5061187290485,2080.0,0.0,39303.0,1,3,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19651.5,3,0,3_0,3_0 +667,0.0,0.0,39.0,111,64,50,0.0,10851,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2916.541328580203,0.0,0.0,50913.0,1,2,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24244.285714285714,4,0,4_0,4_0 +668,0.0,0.0,43.0,300,54,60,0.0,10852,0.0,0.0,0.0,0.0,1.0,8.0,0.0,1.0,1.0,2477.7879597610286,2080.0,0.0,35491.0,1,1,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,35491.0,5,0,5,5_0 +669,2.0,6.0,42.0,111,52,50,0.0,10853,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1177.6466422047124,793.52,0.0,30530.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14538.095238095237,2,0,2_1,2_0 +670,4.0,6.0,30.0,111,46,30,0.0,10855,0.0,20.0,20.0,0.0,2.0,5.0,3.0,5.0,2.4,2231.042210398731,2080.0,0.0,44488.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,18536.666666666668,2,0,2_0,2_0 +671,3.0,6.0,53.0,111,62,50,0.0,10857,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1627.9946458564593,2444.0,0.0,64553.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,32276.5,5,0,5,5_0 +672,6.0,6.0,51.0,111,35,41,0.0,10858,0.0,99999.0,300.0,0.0,2.0,2.0,1.0,3.0,1.8,3230.4939836121334,556.4,0.0,96296.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,53497.777777777774,5,0,5,5_0 +673,0.0,3.0,45.0,120,56,41,0.0,1086,0.0,0.0,0.0,246.0,1.0,4.0,2.0,3.0,2.0,1336.9401309622533,1300.0,0.0,19316.0,1,3,0,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,9658.0,1,0,1_1,1_0 +674,7.0,8.0,52.0,111,64,50,0.0,10860,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3450.1666868464417,1224.08,0.0,29505.0,1,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29505.0,4,0,4_0,4_0 +675,6.0,6.0,31.0,211,64,50,0.0,10862,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2608.307858264719,0.0,0.0,46003.0,1,2,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25557.222222222223,4,0,4_0,4_0 +676,6.0,9.0,41.0,111,37,20,0.0,10863,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2248.010144929688,1301.04,0.0,95921.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,53289.444444444445,5,0,5,5_0 +677,5.0,6.0,39.0,111,63,43,0.0,10864,0.0,0.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.3,2084.407322500619,0.0,0.0,25599.0,1,2,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,11130.0,1,0,1_0,1_0 +678,0.0,0.0,47.0,112,62,50,0.0,10865,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2513.2182029181236,0.0,0.0,30785.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15392.5,2,0,2_0,2_1 +679,1.0,15.0,42.0,111,46,31,2.0,10867,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2271.218177665208,0.0,1400.0,32425.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21616.666666666668,3,0,3_0,3_0 +680,8.0,21.0,53.0,221,62,60,0.0,10868,0.0,410.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2522.3914251445267,1300.0,0.0,21777.0,1,1,1,1.0,3,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,14518.0,2,0,2_0,2_0 +681,5.0,5.0,74.0,120,78,70,0.0,10869,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2158.9692143996676,0.0,0.0,19119.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,19119.0,3,0,3_1,3_1 +682,3.0,3.0,73.0,300,78,70,0.0,1087,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2388.1925405583243,3810.56,0.0,27486.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18324.0,2,0,2_0,2_1 +683,6.0,14.0,66.0,111,31,10,0.0,10871,0.0,99999.0,150.0,0.0,1.0,6.0,0.0,2.0,1.5,1962.520673864295,3125.2,0.0,147059.0,1,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,98039.33333333333,5,0,5,5_0 +684,7.0,7.0,77.0,221,78,50,0.0,10872,0.0,300.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2102.2895391936645,0.0,0.0,26833.0,5,1,1,2.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,17888.666666666668,2,0,2_0,2_0 +685,6.0,12.0,88.0,111,86,60,0.0,10873,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2391.7654294913805,0.0,0.0,25310.0,6,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25310.0,4,0,4_0,4_0 +686,8.0,8.0,65.0,111,31,31,0.0,10874,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1731.382441976091,0.0,0.0,57547.0,5,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,38364.666666666664,5,0,5,5_0 +687,3.0,6.0,79.0,111,78,71,0.0,10875,0.0,50.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2602.430392819102,0.0,0.0,22891.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22891.0,3,0,3_0,3_0 +688,0.0,0.0,29.0,112,46,43,0.0,10877,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2387.7898799498907,2444.0,0.0,46445.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25802.777777777777,4,0,4_0,4_1 +689,4.0,4.0,60.0,400,69,50,0.0,10879,0.0,240.0,200.0,0.0,1.0,4.0,0.0,1.0,1.0,1899.9204523614928,1040.0,0.0,13670.0,1,3,0,0.0,1,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,13670.0,1,0,1_0,1_1 +690,6.0,8.0,23.0,111,46,71,0.0,1088,0.0,300.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,605.3304288070107,0.0,0.0,27313.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,11875.217391304348,1,0,1_1,1_0 +691,5.0,5.0,48.0,112,65,44,0.0,10880,0.0,0.0,0.0,0.0,2.0,6.0,4.0,6.0,3.3,2021.2697695130378,0.0,0.0,39186.0,1,1,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11874.545454545456,1,0,1_0,1_1 +692,0.0,0.0,68.0,111,78,71,0.0,10881,0.0,0.0,0.0,570.0,0.0,2.0,0.0,1.0,1.0,3823.8708048959725,0.0,0.0,15960.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15960.0,2,0,2_0,2_0 +693,6.0,6.0,47.0,111,53,30,0.0,10882,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,3725.702126819642,2601.04,0.0,54111.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,36074.0,5,0,5,5_0 +694,6.0,6.0,95.0,111,72,71,0.0,10883,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3639.2983118075767,0.0,0.0,20440.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,20440.0,3,0,3_0,3_0 +695,0.0,0.0,31.0,111,68,20,0.0,10884,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2817.292751629676,0.0,0.0,36998.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,17618.095238095237,2,0,2_1,2_0 +696,0.0,0.0,41.0,400,21,44,0.0,10885,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3931.428104728113,0.0,0.0,13445.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13445.0,1,0,1_0,1_1 +697,0.0,0.0,30.0,212,52,50,0.0,10886,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2027.0142827626287,0.0,0.0,29634.0,1,1,3,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16463.333333333332,2,0,2_0,2_1 +698,2.0,9.0,42.0,111,37,20,0.0,10887,0.0,350.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,3074.0625549099336,965.1199999999999,0.0,85560.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,35650.0,5,0,5,5_0 +699,4.0,4.0,80.0,112,77,44,0.0,10889,0.0,0.0,320.0,0.0,0.0,4.0,0.0,1.0,1.0,2606.0594484397448,0.0,0.0,35813.0,5,1,8,1.0,1,3.0,0.0,1.0,0,1,0,0,0,0,3.0,0.0,35813.0,5,0,5,5_0 +700,2.0,7.0,44.0,111,46,43,0.0,1089,0.0,180.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2490.497256259555,3672.7599999999998,0.0,62787.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,34881.666666666664,5,0,5,5_0 +701,0.0,0.0,61.0,112,52,50,0.0,10890,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1422.249245551726,5600.4,0.0,46646.0,1,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31097.333333333332,4,0,4_0,4_1 +702,8.0,8.0,68.0,111,74,10,0.0,10891,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3505.6321122631834,0.0,0.0,23915.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23915.0,4,0,4_0,4_0 +703,7.0,10.0,44.0,112,54,41,0.0,10892,0.0,0.0,99999.0,0.0,2.0,6.0,2.0,4.0,2.1,1244.539732828106,3314.48,0.0,48768.0,1,2,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,23222.85714285714,3,0,3_0,3_0 +704,0.0,0.0,87.0,111,86,71,0.0,10893,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1718.154768529673,0.0,0.0,13445.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13445.0,1,0,1_0,1_0 +705,15.0,22.0,63.0,400,78,70,0.0,10894,0.0,110.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4096.481966888372,0.0,0.0,9842.0,5,1,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,9842.0,1,0,1_0,1_1 +706,10.0,10.0,59.0,112,54,42,0.0,10895,0.0,99999.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1646.4133475870967,6292.0,0.0,34743.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,13897.2,1,0,1_0,1_1 +707,14.0,18.0,49.0,111,42,30,0.0,10896,0.0,0.0,0.0,459.0,1.0,2.0,1.0,2.0,1.3,994.480718101314,0.0,0.0,44770.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,34438.46153846154,5,0,5,5_0 +708,0.0,0.0,61.0,400,78,60,0.0,10897,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1741.5314431160775,0.0,0.0,12830.0,5,4,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12830.0,1,0,1_0,1_0 +709,9.0,18.0,35.0,111,47,50,0.0,109,0.0,1000.0,64.0,18.0,1.0,6.0,6.0,8.0,3.5,587.4758010200029,890.76,0.0,39335.0,1,3,8,6.0,4,3.0,0.0,1.0,0,0,1,0,0,1,2.0,1.0,11238.57142857143,1,0,1_1,1_0 +710,15.0,15.0,52.0,120,85,71,0.0,10902,0.0,0.0,350.0,0.0,1.0,4.0,1.0,2.0,1.5,1525.8516360412693,780.0,0.0,11707.0,6,3,0,1.0,2,2.0,0.0,1.0,0,1,0,0,0,1,2.0,0.0,7804.666666666667,1,0,1_1,1_0 +711,1.0,1.0,64.0,120,74,31,1.0,10903,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1806.6133146542927,2104.44,16000.0,57790.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38526.666666666664,5,0,5,5_1 +712,16.0,16.0,79.0,111,78,71,0.0,10905,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2379.1924278586516,0.0,0.0,36401.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,24267.333333333332,4,0,4_0,4_0 +713,1.0,1.0,75.0,111,77,70,1.0,10907,0.0,600.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1176.5534182086192,2756.0,31000.0,25403.0,5,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16935.333333333332,2,0,2_0,2_0 +714,7.0,7.0,36.0,111,52,42,0.0,1091,0.0,100.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,2127.1596087825637,1196.0,0.0,10630.0,1,4,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,8176.923076923076,1,0,1_0,1_0 +715,0.0,0.0,51.0,111,52,50,0.0,10910,0.0,0.0,0.0,493.0,2.0,5.0,1.0,3.0,2.0,2740.5470474467215,0.0,0.0,43982.0,1,3,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21991.0,3,0,3_0,3_0 +716,0.0,14.0,23.0,111,46,20,0.0,10912,0.0,0.0,300.0,385.0,1.0,2.0,0.0,1.0,1.0,4026.6026226125405,1794.0,0.0,26207.0,1,3,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,26207.0,4,0,4_0,4_0 +717,11.0,11.0,65.0,111,22,50,0.0,10913,0.0,200.0,0.0,276.0,1.0,2.0,0.0,1.0,1.0,1948.2701926919888,0.0,0.0,12829.0,1,3,7,5.0,1,3.0,0.0,1.0,0,0,1,0,0,1,0.0,3.0,12829.0,1,0,1_1,1_0 +718,0.0,0.0,69.0,112,71,50,0.0,10914,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1953.2841200368703,0.0,0.0,9613.0,5,1,4,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9613.0,1,0,1_0,1_1 +719,0.0,0.0,44.0,112,31,30,0.0,10915,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2289.9679573962662,3357.12,0.0,257272.0,1,2,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,111857.39130434784,5,0,5,5_0 +720,0.0,0.0,45.0,111,12,50,0.0,10917,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3653.5627206391264,5008.639999999999,0.0,50328.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23965.714285714286,4,0,4_0,4_0 +721,5.0,5.0,23.0,111,63,43,0.0,10919,0.0,4.0,0.0,320.0,1.0,2.0,0.0,1.0,1.0,3322.85406639068,2600.0,0.0,13904.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,13904.0,2,0,2_0,2_0 +722,12.0,12.0,34.0,112,46,50,0.0,1092,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2217.693386909409,2600.0,0.0,58864.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28030.47619047619,4,0,4_0,4_0 +723,2.0,12.0,53.0,112,62,50,0.0,10921,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1726.5492395648612,0.0,0.0,36202.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24134.666666666668,4,0,4_0,4_1 +724,0.0,0.0,27.0,111,46,20,0.0,10923,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5893.846360020543,0.0,0.0,12570.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12570.0,1,0,1_1,1_0 +725,0.0,0.0,83.0,111,74,30,0.0,10924,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2817.272747585113,0.0,0.0,37327.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,37327.0,5,0,5,5_0 +726,3.0,3.0,83.0,120,75,44,0.0,10925,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1632.0584003790977,2080.0,0.0,46560.0,5,3,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,31040.0,4,0,4_0,4_0 +727,0.0,3.0,31.0,112,52,30,0.0,10927,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,274.6852019970618,2427.36,0.0,25618.0,1,3,9,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,16011.25,2,0,2_1,2_1 +728,2.0,3.0,62.0,300,78,71,0.0,10928,0.0,99999.0,99999.0,0.0,0.0,5.0,0.0,1.0,1.0,2666.672969500426,0.0,0.0,16860.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16860.0,2,0,2_0,2_1 +729,11.0,13.0,34.0,111,37,20,0.0,10929,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,4538.060065420414,0.0,0.0,22006.0,4,2,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16927.69230769231,2,0,2_0,2_0 +730,0.0,7.0,33.0,111,31,10,0.0,1093,0.0,0.0,0.0,760.0,1.0,3.0,0.0,1.0,1.0,4151.0799079920835,0.0,0.0,28208.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28208.0,4,0,4_0,4_0 +731,2.0,2.0,40.0,111,37,20,0.0,10930,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2650.3545078295547,0.0,0.0,90530.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,45265.0,5,0,5,5_0 +732,1.0,1.0,60.0,112,42,41,0.0,10931,0.0,0.0,350.0,0.0,2.0,7.0,0.0,2.0,1.5,2326.4174200665775,3531.3199999999997,0.0,45149.0,1,2,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,30099.333333333332,4,0,4_0,4_1 +733,1.0,11.0,27.0,111,47,31,2.0,10932,0.0,360.0,0.0,465.0,1.0,2.0,0.0,1.0,1.0,3768.3382018851703,0.0,4000.0,24558.0,1,3,8,6.0,1,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,24558.0,4,0,4_0,4_0 +734,2.0,6.0,42.0,111,85,50,0.0,10934,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,2.1,1169.4159091501015,0.0,0.0,20630.0,6,3,7,6.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,9823.809523809523,1,0,1_1,1_0 +735,4.0,4.0,50.0,111,38,20,0.0,10935,0.0,0.0,0.0,980.0,1.0,4.0,2.0,3.0,2.0,1477.1729540465542,2602.08,0.0,59880.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,29940.0,4,0,4_0,4_0 +736,0.0,0.0,63.0,112,74,42,0.0,10936,0.0,0.0,0.0,0.0,0.0,7.0,1.0,3.0,2.0,2240.1453471764257,4179.24,0.0,79813.0,5,1,8,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,39906.5,5,0,5,5_0 +737,6.0,19.0,53.0,300,67,71,0.0,10937,0.0,0.0,0.0,231.0,2.0,3.0,2.0,3.0,2.0,513.9497401092398,1661.4,0.0,27860.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,13930.0,2,0,2_1,2_1 +738,0.0,0.0,60.0,400,55,60,0.0,10938,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2031.7286319532163,4680.0,0.0,10917.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,5458.5,1,0,1_0,1_1 +739,2.0,2.0,79.0,111,75,70,0.0,1094,0.0,350.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3004.739930334547,4052.3600000000006,0.0,31534.0,5,1,10,8.0,5,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,21022.666666666668,3,0,3_0,3_0 +740,1.0,3.0,48.0,111,46,31,2.0,10941,0.0,0.0,0.0,466.0,1.0,3.0,0.0,1.0,1.0,2541.7175957442423,0.0,11000.0,29351.0,1,3,5,4.0,1,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,29351.0,4,0,4_0,4_0 +741,6.0,6.0,70.0,112,78,71,0.0,10942,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2063.6904068477015,1274.52,0.0,27500.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18333.333333333332,2,0,2_0,2_1 +742,1.0,1.0,41.0,111,46,31,0.0,10944,0.0,300.0,0.0,610.0,1.0,3.0,0.0,1.0,1.0,3792.177422213736,0.0,0.0,32048.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,32048.0,5,0,5,5_0 +743,4.0,15.0,24.0,111,38,20,0.0,10945,0.0,150.0,0.0,512.0,3.0,3.0,1.0,4.0,2.5,5349.062883335197,2013.9599999999998,0.0,76225.0,1,3,9,7.0,5,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,30490.0,4,0,4_0,4_0 +744,5.0,15.0,60.0,111,47,31,0.0,10946,0.0,50.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1536.8532037561745,4681.04,0.0,97370.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,48685.0,5,0,5,5_0 +745,7.0,8.0,37.0,112,21,43,0.0,10947,0.0,320.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2490.721614279554,0.0,0.0,80828.0,1,2,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,38489.52380952381,5,0,5,5_1 +746,4.0,4.0,44.0,111,46,31,0.0,10948,0.0,265.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2319.0576408946217,0.0,0.0,49038.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27243.333333333332,4,0,4_0,4_0 +747,0.0,0.0,59.0,111,56,50,0.0,10949,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1868.662496328181,2184.0,0.0,28395.0,1,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18930.0,3,0,3_0,3_0 +748,9.0,10.0,51.0,112,69,50,0.0,1095,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1768.464753913379,1040.0,0.0,48482.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19392.8,3,0,3_0,3_1 +749,0.0,7.0,50.0,111,54,31,0.0,10950,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3014.137527895068,0.0,0.0,13964.0,1,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,13964.0,2,0,2_0,2_0 +750,6.0,25.0,49.0,112,37,44,0.0,10952,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,766.802848731281,7677.8,0.0,51295.0,1,1,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20518.0,3,0,3_0,3_1 +751,18.0,18.0,46.0,112,22,50,0.0,10953,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2867.8307116929304,2184.0,0.0,25061.0,1,3,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10896.08695652174,1,0,1_0,1_1 +752,1.0,1.0,72.0,111,75,44,0.0,10955,0.0,1200.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2077.8595818094304,0.0,0.0,19363.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19363.0,3,0,3_0,3_0 +753,2.0,5.0,49.0,300,62,50,0.0,10956,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1935.3232097458556,1820.0,0.0,66346.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,33173.0,5,0,5,5_1 +754,4.0,4.0,78.0,112,74,50,0.0,10957,0.0,200.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1917.1424458158683,0.0,0.0,32070.0,5,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21380.0,3,0,3_0,3_1 +755,0.0,0.0,32.0,111,56,50,0.0,10959,0.0,0.0,0.0,75.0,1.0,5.0,4.0,5.0,2.2,748.491911428058,3120.0,0.0,25290.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11495.454545454544,1,0,1_1,1_0 +756,4.0,13.0,45.0,111,37,20,0.0,1096,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,633.9419581166039,3120.0,0.0,140290.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,58454.16666666667,5,0,5,5_0 +757,3.0,7.0,50.0,111,64,71,0.0,10961,0.0,200.0,150.0,131.0,2.0,4.0,1.0,3.0,1.8,2676.684656882141,1560.0,0.0,26185.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,14547.222222222223,2,0,2_1,2_0 +758,10.0,11.0,43.0,111,63,43,0.0,10962,0.0,40.0,0.0,710.0,1.0,2.0,0.0,1.0,1.0,5577.2927908022875,0.0,0.0,42057.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,42057.0,5,0,5,5_0 +759,3.0,3.0,57.0,111,47,42,0.0,10963,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3091.3958124818946,2173.6,0.0,45824.0,1,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,45824.0,5,0,5,5_0 +760,0.0,0.0,28.0,111,37,30,0.0,10964,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4274.570526399001,3942.12,0.0,62692.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,41794.666666666664,5,0,5,5_0 +761,0.0,3.0,34.0,112,31,10,0.0,10965,0.0,170.0,300.0,0.0,1.0,2.0,0.0,2.0,1.5,1672.0192302357332,0.0,0.0,5060.0,1,1,8,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,3373.3333333333335,1,0,1_0,1_1 +762,1.0,1.0,62.0,111,74,30,1.0,10967,0.0,333.0,0.0,732.0,0.0,4.0,0.0,1.0,1.0,4387.978155703259,5107.44,27163.0,27620.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,27620.0,4,0,4_0,4_0 +763,0.0,0.0,33.0,112,33,31,0.0,10968,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1687.6972265305867,2340.0,0.0,42115.0,1,2,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20054.761904761905,3,0,3_0,3_0 +764,0.0,0.0,65.0,112,74,31,0.0,10969,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1340.8067272114076,1872.0,0.0,46458.0,5,1,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30972.0,4,0,4_0,4_0 +765,3.0,10.0,71.0,112,77,71,0.0,1097,0.0,250.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2885.883506092114,0.0,0.0,20180.0,5,1,9,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,20180.0,3,0,3_0,3_0 +766,0.0,0.0,54.0,400,13,50,0.0,10970,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1448.3112841058698,1564.1599999999999,0.0,8596.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,5730.666666666667,1,0,1_0,1_1 +767,0.0,31.0,52.0,111,45,33,0.0,10971,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1526.611587494897,150.28,0.0,70396.0,1,2,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,28158.4,4,0,4_0,4_0 +768,6.0,15.0,53.0,400,46,50,0.0,10974,0.0,0.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,1489.397098877469,2600.0,0.0,22322.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14881.333333333334,2,0,2_0,2_1 +769,0.0,0.0,72.0,111,77,60,0.0,10975,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1526.43030918048,0.0,0.0,25498.0,5,2,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16998.666666666668,2,0,2_0,2_0 +770,5.0,9.0,55.0,111,56,50,0.0,10979,0.0,0.0,0.0,555.0,1.0,4.0,0.0,1.0,1.0,2249.069204301853,0.0,0.0,21414.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21414.0,3,0,3_0,3_0 +771,0.0,0.0,37.0,111,38,31,0.0,1098,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1895.168339888074,3698.7599999999998,0.0,60489.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33605.0,5,0,5,5_0 +772,0.0,0.0,61.0,112,77,50,0.0,10980,0.0,0.0,0.0,310.0,0.0,3.0,0.0,2.0,1.5,1495.5616289374877,1564.1599999999999,0.0,34831.0,5,3,10,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23220.666666666668,3,0,3_0,3_0 +773,9.0,9.0,66.0,111,77,42,0.0,10982,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,6564.7411870495425,0.0,0.0,13046.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13046.0,1,0,1_1,1_0 +774,17.0,17.0,38.0,111,63,50,0.0,10984,0.0,0.0,0.0,185.0,2.0,4.0,2.0,4.0,2.3,2977.416382561204,0.0,0.0,34950.0,4,3,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,15195.652173913044,2,0,2_1,2_0 +775,22.0,25.0,54.0,300,65,50,0.0,10985,0.0,26.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1950.2991743561076,3538.0800000000004,0.0,42745.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28496.666666666668,4,0,4_0,4_1 +776,0.0,0.0,85.0,111,75,60,0.0,10990,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2727.5345462969212,0.0,0.0,43233.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,43233.0,5,0,5,5_0 +777,5.0,9.0,54.0,300,37,50,0.0,10991,0.0,80.0,340.0,0.0,2.0,6.0,2.0,4.0,2.3,1154.940596590933,3380.0,0.0,52006.0,1,3,0,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,22611.304347826088,3,0,3_0,3_0 +778,2.0,6.0,85.0,111,78,71,0.0,10993,0.0,700.0,0.0,640.0,0.0,3.0,0.0,1.0,1.0,2462.7540625983925,0.0,0.0,17180.0,5,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17180.0,2,0,2_0,2_0 +779,7.0,12.0,78.0,211,71,71,0.0,10994,0.0,385.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3296.198884668801,2080.0,0.0,19926.0,5,1,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,13284.0,1,0,1_0,1_0 +780,0.0,0.0,42.0,120,54,31,0.0,10995,0.0,0.0,0.0,0.0,2.0,8.0,5.0,7.0,3.4,2229.541166822813,0.0,0.0,44104.0,4,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12971.764705882353,1,0,1_0,1_1 +781,4.0,9.0,34.0,112,37,31,0.0,10996,0.0,220.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2140.03837508703,0.0,0.0,57502.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,27381.90476190476,4,0,4_0,4_1 +782,2.0,4.0,72.0,112,78,50,0.0,10997,0.0,560.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2084.4058061282158,0.0,0.0,33732.0,5,3,9,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22488.0,3,0,3_0,3_1 +783,0.0,0.0,37.0,120,48,31,0.0,10998,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1836.1434847366627,1560.0,0.0,52970.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22070.833333333336,3,0,3_0,3_1 +784,12.0,12.0,86.0,211,74,70,0.0,10999,0.0,300.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,908.8888413019479,0.0,0.0,28460.0,5,1,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,28460.0,4,0,4_0,4_0 +785,6.0,6.0,39.0,111,47,30,0.0,110,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3971.2439281637617,0.0,0.0,19946.0,4,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19946.0,3,0,3_0,3_0 +786,7.0,11.0,50.0,111,68,71,0.0,1100,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2073.379599799356,0.0,0.0,10606.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10606.0,1,0,1_1,1_0 +787,7.0,7.0,22.0,300,56,43,0.0,11003,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,589.7064158376221,0.0,0.0,19107.0,1,1,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,7642.8,1,0,1_0,1_0 +788,0.0,0.0,51.0,111,31,33,0.0,11004,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.3,659.7184833032657,0.0,0.0,60150.0,1,1,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,46269.230769230766,5,0,5,5_0 +789,0.0,18.0,33.0,111,38,0,0.0,11005,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3491.211443602407,1609.92,0.0,49780.0,1,2,5,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,49780.0,5,0,5,5_0 +790,0.0,0.0,26.0,111,31,30,0.0,11006,0.0,0.0,0.0,212.0,1.0,2.0,0.0,1.0,1.0,4470.823556723427,0.0,0.0,11363.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11363.0,1,0,1_1,1_0 +791,0.0,0.0,46.0,111,47,71,0.0,11007,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,730.599404450461,0.0,0.0,60868.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26464.34782608696,4,0,4_0,4_0 +792,6.0,9.0,34.0,112,55,50,0.0,11008,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,668.1066318945052,1300.0,0.0,12994.0,4,3,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,8121.25,1,0,1_1,1_1 +793,6.0,10.0,64.0,111,78,70,0.0,1101,0.0,0.0,330.0,0.0,0.0,2.0,0.0,1.0,1.0,5966.4405478159115,0.0,0.0,12664.0,5,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,12664.0,1,0,1_1,1_0 +794,1.0,15.0,41.0,111,46,42,2.0,11010,0.0,450.0,0.0,261.0,1.0,4.0,4.0,5.0,2.6,1011.2727865354877,0.0,2000.0,35108.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,13503.076923076922,1,0,1_1,1_0 +795,5.0,5.0,70.0,111,74,10,0.0,11012,0.0,0.0,0.0,0.0,0.0,6.0,0.0,3.0,1.8,3957.495498779086,0.0,0.0,47144.0,5,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,26191.11111111111,4,0,4_0,4_0 +796,4.0,11.0,29.0,111,81,71,0.0,11013,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,1547.4024958014493,0.0,0.0,24448.0,4,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13582.222222222223,1,0,1_1,1_0 +797,16.0,16.0,40.0,120,46,31,0.0,11015,0.0,0.0,120.0,608.0,1.0,3.0,1.0,2.0,1.3,1947.5833974850514,2145.0,0.0,46253.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,35579.230769230766,5,0,5,5_1 +798,3.0,7.0,39.0,211,43,41,0.0,11016,0.0,212.0,80.0,0.0,1.0,4.0,1.0,2.0,1.3,1212.1613730999345,1563.64,0.0,14352.0,1,3,4,3.0,2,2.0,1.0,1.0,0,1,0,0,0,1,1.0,1.0,11040.0,1,0,1_1,1_0 +799,0.0,9.0,47.0,112,64,50,2.0,11017,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2082.311492544405,4680.0,5000.0,53704.0,1,1,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26852.0,4,0,4_0,4_1 +800,3.0,9.0,45.0,120,65,50,0.0,11018,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1855.1388230630237,3588.0,0.0,40399.0,1,2,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,26932.666666666668,4,0,4_0,4_1 +801,0.0,0.0,61.0,400,72,30,0.0,11019,0.0,0.0,0.0,0.0,0.0,10.0,0.0,1.0,1.0,2027.6364027604052,3328.0,0.0,15536.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15536.0,2,0,2_0,2_0 +802,3.0,3.0,53.0,111,52,60,0.0,1102,0.0,20.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1399.3975191854388,3484.0,0.0,51556.0,1,2,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,20622.4,3,0,3_0,3_0 +803,0.0,0.0,61.0,112,75,60,0.0,11021,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2322.2130993593432,0.0,0.0,30302.0,5,1,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30302.0,4,0,4_0,4_1 +804,0.0,0.0,59.0,111,52,71,0.0,11023,0.0,0.0,0.0,606.0,1.0,4.0,1.0,3.0,2.0,3318.4126491634656,1301.56,0.0,27223.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13611.5,1,0,1_0,1_0 +805,5.0,5.0,54.0,111,43,33,0.0,11025,0.0,0.0,20.0,0.0,1.0,4.0,0.0,2.0,1.5,1684.318957707618,4611.360000000001,0.0,61135.0,1,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,40756.666666666664,5,0,5,5_0 +806,2.0,3.0,61.0,112,77,70,0.0,11026,0.0,50.0,2525.0,0.0,2.0,3.0,1.0,3.0,2.0,3412.37087706882,2600.0,0.0,59445.0,5,1,7,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,29722.5,4,0,4_0,4_1 +807,2.0,2.0,86.0,112,86,70,0.0,11027,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1352.5538966713339,0.0,0.0,13226.0,5,4,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13226.0,1,0,1_0,1_1 +808,3.0,3.0,54.0,111,47,50,0.0,11028,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2811.157139649124,1579.24,0.0,24182.0,1,2,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,24182.0,4,0,4_0,4_0 +809,0.0,0.0,58.0,300,56,50,0.0,1103,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2395.3074705155555,2469.48,0.0,21950.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14633.333333333334,2,0,2_0,2_1 +810,6.0,6.0,30.0,111,54,30,0.0,11030,0.0,0.0,99998.0,877.0,2.0,4.0,1.0,3.0,1.8,2301.1656219629544,0.0,0.0,42672.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23706.666666666668,3,0,3_0,3_0 +811,5.0,5.0,64.0,111,74,12,0.0,11031,0.0,0.0,0.0,770.0,0.0,4.0,0.0,1.0,1.0,4093.1090908755377,0.0,0.0,36210.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,36210.0,5,0,5,5_0 +812,7.0,8.0,31.0,112,52,30,0.0,11032,0.0,200.0,150.0,0.0,1.0,5.0,1.0,2.0,1.3,2079.6678941911396,2704.0,0.0,22370.0,1,2,7,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17207.69230769231,2,0,2_0,2_1 +813,0.0,0.0,66.0,300,78,50,0.0,11033,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2210.141561659041,4992.0,0.0,25060.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16706.666666666668,2,0,2_0,2_1 +814,0.0,15.0,42.0,112,43,20,0.0,11035,0.0,0.0,500.0,0.0,1.0,2.0,1.0,2.0,1.3,887.0575143452635,0.0,0.0,45584.0,1,1,9,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,35064.61538461538,5,0,5,5_0 +815,5.0,5.0,52.0,112,37,31,0.0,11036,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1743.700858540787,7020.0,0.0,54876.0,1,1,4,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,36584.0,5,0,5,5_1 +816,0.0,0.0,28.0,111,46,41,0.0,11037,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2701.610329415148,6032.0,0.0,51910.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34606.666666666664,5,0,5,5_0 +817,1.0,20.0,47.0,111,22,50,2.0,11038,0.0,0.0,0.0,177.0,1.0,2.0,1.0,2.0,1.5,3428.7018606596716,0.0,3000.0,6830.0,1,3,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,4553.333333333333,1,0,1_1,1_0 +818,6.0,25.0,32.0,112,38,12,0.0,1104,0.0,0.0,5000.0,745.0,2.0,4.0,2.0,4.0,2.1,4089.343744538987,2446.08,0.0,57452.0,1,3,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,27358.095238095237,4,0,4_0,4_0 +819,10.0,10.0,81.0,111,78,70,0.0,11040,0.0,68.0,30.0,0.0,0.0,3.0,0.0,2.0,1.5,2331.2410221601026,1835.6,0.0,23430.0,5,4,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,15620.0,2,0,2_0,2_0 +820,0.0,0.0,46.0,400,47,31,0.0,11042,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2395.969137082023,1820.0,0.0,31677.0,1,2,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31677.0,4,0,4_0,4_0 +821,3.0,5.0,31.0,111,47,43,0.0,11043,0.0,500.0,0.0,223.0,2.0,3.0,1.0,3.0,1.8,1235.832709957424,1300.0,0.0,26371.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,14650.555555555555,2,0,2_1,2_0 +822,0.0,3.0,81.0,111,72,71,0.0,11044,0.0,230.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2372.130260746705,0.0,0.0,26763.0,5,1,7,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,17842.0,2,0,2_0,2_0 +823,4.0,17.0,53.0,111,77,71,0.0,11045,0.0,120.0,0.0,12.0,1.0,4.0,2.0,3.0,1.8,1160.050661763684,0.0,0.0,25456.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,14142.222222222223,2,0,2_1,2_0 +824,1.0,2.0,79.0,112,78,70,2.0,11050,0.0,300.0,0.0,510.0,0.0,2.0,0.0,1.0,1.0,3156.9620139394524,0.0,25000.0,16380.0,5,3,9,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16380.0,2,0,2_0,2_0 +825,0.0,0.0,62.0,112,77,60,0.0,11051,0.0,0.0,0.0,640.0,0.0,5.0,0.0,2.0,1.5,2715.160412586324,1040.0,0.0,24890.0,5,3,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16593.333333333332,2,0,2_0,2_1 +826,0.0,0.0,44.0,112,55,50,0.0,11052,0.0,0.0,0.0,407.0,1.0,3.0,1.0,2.0,1.5,800.8964606154908,1561.56,0.0,22847.0,1,3,8,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15231.333333333334,2,0,2_1,2_0 +827,6.0,9.0,38.0,112,34,30,0.0,11053,0.0,0.0,150.0,0.0,2.0,5.0,2.0,4.0,2.1,1841.5788755289582,0.0,0.0,25344.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12068.571428571428,1,0,1_0,1_1 +828,6.0,6.0,26.0,111,43,30,0.0,11054,0.0,150.0,0.0,535.0,2.0,2.0,0.0,2.0,1.5,3549.169996460011,0.0,0.0,39853.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,26568.666666666668,4,0,4_0,4_0 +829,16.0,16.0,35.0,300,62,44,0.0,11055,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1763.3525250402492,4160.0,0.0,36563.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,15234.583333333334,2,0,2_1,2_1 +830,8.0,8.0,82.0,111,74,60,0.0,11056,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1418.01750960479,0.0,0.0,111593.0,5,4,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,74395.33333333333,5,0,5,5_0 +831,3.0,7.0,51.0,111,35,20,0.0,11057,0.0,450.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,626.8689008934341,2775.76,0.0,43521.0,1,1,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,33477.692307692305,5,0,5,5_0 +832,3.0,3.0,45.0,112,43,33,0.0,11058,0.0,220.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1404.6818045910425,2080.0,0.0,53870.0,1,2,6,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25652.38095238095,4,0,4_0,4_0 +833,4.0,7.0,39.0,111,43,33,0.0,1106,0.0,0.0,0.0,493.0,2.0,4.0,2.0,4.0,2.3,2230.5635032527084,1560.0,0.0,46330.0,1,3,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,20143.478260869568,3,0,3_0,3_0 +834,2.0,2.0,40.0,111,47,50,0.0,11061,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1391.5012850813382,0.0,0.0,18570.0,4,3,10,8.0,2,1.0,1.0,0.0,0,0,0,0,1,0,0.0,0.0,14284.615384615385,2,0,2_0,2_0 +835,1.0,10.0,70.0,111,77,41,2.0,11062,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2122.9111101556673,0.0,2200.0,19036.0,5,1,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,19036.0,3,0,3_0,3_0 +836,0.0,0.0,57.0,400,13,42,0.0,11063,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1576.547851026535,1508.0,0.0,29110.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19406.666666666668,3,0,3_0,3_1 +837,19.0,24.0,54.0,120,62,70,0.0,11065,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1592.2006536589538,0.0,0.0,29489.0,1,3,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19659.333333333332,3,0,3_0,3_0 +838,5.0,5.0,78.0,111,77,50,0.0,11066,0.0,0.0,20.0,0.0,0.0,5.0,0.0,1.0,1.0,6588.835797877753,0.0,0.0,33550.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,33550.0,5,0,5,5_0 +839,0.0,0.0,36.0,112,48,50,0.0,11069,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1876.9431701226483,3900.0,0.0,35740.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17019.04761904762,2,0,2_0,2_1 +840,0.0,1.0,76.0,111,74,30,0.0,11070,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1831.2918686948965,0.0,0.0,66400.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,44266.666666666664,5,0,5,5_0 +841,11.0,11.0,57.0,111,52,50,0.0,11071,0.0,99999.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1983.2696712799993,3109.08,0.0,32065.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21376.666666666668,3,0,3_0,3_0 +842,16.0,16.0,74.0,111,74,31,0.0,11072,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1971.7656422656858,2704.0,0.0,90917.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,60611.333333333336,5,0,5,5_0 +843,16.0,16.0,72.0,300,77,50,0.0,11073,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1854.4445830810957,2496.0,0.0,33682.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,22454.666666666668,3,0,3_0,3_0 +844,5.0,5.0,57.0,111,75,30,0.0,11075,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,1661.1172681481185,0.0,0.0,6260.0,7,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,4815.384615384615,1,0,1_0,1_0 +845,12.0,17.0,35.0,112,38,12,0.0,11077,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1950.9989649152199,0.0,0.0,67399.0,1,2,8,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,32094.761904761905,5,0,5,5_0 +846,3.0,3.0,42.0,111,37,43,0.0,11078,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1043.3825311541648,0.0,0.0,18670.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14361.538461538461,2,0,2_1,2_0 +847,1.0,1.0,78.0,111,74,12,0.0,11079,0.0,200.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2752.418340633501,2184.0,0.0,34926.0,5,1,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,34926.0,5,0,5,5_0 +848,5.0,7.0,69.0,111,86,71,0.0,1108,0.0,300.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1832.9990867398287,0.0,0.0,12450.0,5,3,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,12450.0,1,0,1_1,1_0 +849,0.0,0.0,71.0,111,77,71,0.0,11080,0.0,0.0,0.0,176.0,0.0,4.0,0.0,2.0,1.5,2430.2689596893856,0.0,0.0,18770.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12513.333333333334,1,0,1_1,1_0 +850,0.0,0.0,43.0,111,52,50,0.0,11082,0.0,0.0,0.0,464.0,1.0,3.0,1.0,2.0,1.3,1103.9556587194088,0.0,0.0,20071.0,1,3,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15439.23076923077,2,0,2_0,2_0 +851,0.0,0.0,36.0,111,43,50,0.0,11083,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1325.0706888708619,0.0,0.0,17872.0,4,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11914.666666666666,1,0,1_1,1_0 +852,5.0,7.0,48.0,111,63,50,0.0,11084,0.0,199998.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2915.7032813841447,0.0,0.0,11130.0,4,1,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,11130.0,1,0,1_0,1_0 +853,0.0,0.0,64.0,111,75,50,0.0,11085,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,1481.826215598969,0.0,0.0,55754.0,5,1,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37169.333333333336,5,0,5,5_0 +854,4.0,4.0,47.0,111,43,31,0.0,11086,0.0,99999.0,0.0,229.0,1.0,4.0,3.0,5.0,2.6,2839.3927879920802,0.0,0.0,34380.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,13223.076923076922,1,0,1_1,1_0 +855,0.0,3.0,33.0,111,38,12,2.0,11087,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3105.4035930906816,0.0,17000.0,71799.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,39888.333333333336,5,0,5,5_0 +856,0.0,0.0,77.0,111,75,71,0.0,11088,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3200.2566268010282,0.0,0.0,18630.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18630.0,2,0,2_0,2_0 +857,0.0,0.0,53.0,400,43,33,0.0,1109,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1619.549584822381,7124.52,0.0,68224.0,1,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,34112.0,5,0,5,5_0 +858,3.0,3.0,64.0,400,78,50,0.0,11092,0.0,0.0,450.0,0.0,0.0,3.0,0.0,1.0,1.0,2380.4417832808203,1562.08,0.0,12252.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,12252.0,1,0,1_0,1_1 +859,3.0,9.0,56.0,111,75,60,0.0,11093,0.0,0.0,0.0,509.0,1.0,3.0,1.0,3.0,2.0,2566.709571289812,1560.0,0.0,26488.0,7,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,13244.0,1,0,1_0,1_0 +860,2.0,12.0,73.0,400,78,50,0.0,11094,0.0,850.0,0.0,260.0,0.0,4.0,0.0,2.0,1.5,1668.7478629795849,2043.6,0.0,25800.0,5,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17200.0,2,0,2_0,2_1 +861,0.0,0.0,44.0,112,33,31,0.0,11095,0.0,0.0,0.0,0.0,2.0,10.0,2.0,4.0,2.1,2710.408690885725,0.0,0.0,56521.0,1,2,8,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26914.761904761905,4,0,4_0,4_0 +862,0.0,0.0,58.0,400,67,70,0.0,11096,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2288.9351839824526,0.0,0.0,38449.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25632.666666666668,4,0,4_0,4_0 +863,0.0,0.0,69.0,111,78,70,0.0,11097,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2919.77636996061,2601.56,0.0,24350.0,5,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16233.333333333334,2,0,2_0,2_0 +864,6.0,6.0,26.0,111,54,31,0.0,11098,0.0,0.0,0.0,750.0,2.0,2.0,0.0,2.0,1.5,4230.614393792261,0.0,0.0,29626.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,19750.666666666668,3,0,3_0,3_0 +865,0.0,0.0,54.0,112,22,44,0.0,1110,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1921.0776439787896,520.0,0.0,10960.0,1,1,6,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,6088.888888888889,1,0,1_0,1_0 +866,6.0,11.0,52.0,300,34,31,0.0,11101,0.0,0.0,550.0,0.0,2.0,6.0,0.0,2.0,1.5,1751.0090574688209,1560.0,0.0,40790.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,27193.333333333332,4,0,4_0,4_1 +867,3.0,18.0,28.0,120,54,20,0.0,11103,0.0,0.0,350.0,0.0,2.0,3.0,0.0,2.0,1.5,1460.5130813121648,0.0,0.0,24140.0,1,1,0,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,16093.333333333334,2,0,2_0,2_0 +868,4.0,6.0,44.0,112,38,12,0.0,11104,0.0,0.0,99999.0,0.0,2.0,7.0,2.0,4.0,2.3,2761.8171956043557,0.0,0.0,68601.0,1,2,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,29826.521739130436,4,0,4_0,4_0 +869,0.0,0.0,71.0,111,77,70,0.0,11105,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2367.051166999982,0.0,0.0,21140.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21140.0,3,0,3_0,3_0 +870,0.0,0.0,68.0,111,78,71,0.0,11106,0.0,0.0,0.0,234.0,2.0,4.0,2.0,4.0,2.5,3852.747580543864,0.0,0.0,37214.0,5,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14885.6,2,0,2_1,2_0 +871,8.0,14.0,68.0,111,77,50,0.0,11107,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2236.5039155848667,0.0,0.0,10558.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,10558.0,1,0,1_0,1_0 +872,0.0,0.0,41.0,111,45,31,0.0,11109,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3261.0276728089616,2808.0,0.0,25928.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25928.0,4,0,4_0,4_0 +873,13.0,13.0,44.0,300,85,50,0.0,11110,0.0,0.0,0.0,144.0,0.0,2.0,0.0,1.0,1.0,5147.101868081589,798.1999999999999,0.0,3274.0,7,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,3274.0,1,0,1_1,1_1 +874,6.0,6.0,57.0,300,42,50,0.0,11113,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1841.2958873765488,3152.24,0.0,17263.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17263.0,2,0,2_0,2_1 +875,0.0,0.0,52.0,111,84,31,0.0,11114,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1271.1168139899355,0.0,0.0,13929.0,3,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13929.0,2,0,2_0,2_0 +876,0.0,0.0,38.0,112,64,60,0.0,11117,0.0,0.0,0.0,490.0,1.0,2.0,0.0,1.0,1.0,1374.6194941488964,0.0,0.0,18650.0,1,3,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18650.0,2,0,2_0,2_0 +877,0.0,0.0,52.0,112,65,71,0.0,11119,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2058.966092551073,0.0,0.0,37744.0,1,3,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37744.0,5,0,5,5_1 +878,3.0,3.0,79.0,112,77,71,0.0,1112,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2319.484011053828,0.0,0.0,19800.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19800.0,3,0,3_0,3_1 +879,4.0,16.0,39.0,111,46,43,0.0,11121,0.0,0.0,340.0,0.0,2.0,6.0,2.0,4.0,2.1,2047.4720728645218,6039.280000000001,0.0,53860.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,25647.619047619046,4,0,4_0,4_0 +880,0.0,0.0,45.0,111,23,41,0.0,11123,0.0,0.0,0.0,0.0,2.0,3.0,3.0,5.0,2.4,2493.794157249781,1874.6,0.0,122780.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,51158.333333333336,5,0,5,5_0 +881,5.0,5.0,47.0,111,47,31,0.0,11125,0.0,620.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1982.5669944145093,3540.6800000000003,0.0,90359.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,45179.5,5,0,5,5_0 +882,7.0,20.0,68.0,400,71,50,0.0,11126,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2095.295168009118,2809.04,0.0,31496.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20997.333333333332,3,0,3_0,3_1 +883,16.0,16.0,75.0,111,74,12,0.0,11127,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2886.4951018377537,3068.52,0.0,72635.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,48423.333333333336,5,0,5,5_0 +884,3.0,3.0,34.0,112,43,33,0.0,11129,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1781.9446094191892,2464.28,0.0,48478.0,1,2,8,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23084.761904761905,3,0,3_0,3_0 +885,4.0,4.0,81.0,111,77,50,0.0,1113,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3328.960819880664,0.0,0.0,10640.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10640.0,1,0,1_0,1_0 +886,4.0,17.0,55.0,111,33,20,0.0,11130,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1366.5261170913452,6240.0,0.0,54681.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,36454.0,5,0,5,5_0 +887,17.0,17.0,53.0,111,37,12,0.0,11132,0.0,0.0,0.0,0.0,2.0,9.0,3.0,5.0,2.6,2245.6654394087122,705.12,0.0,236756.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,91060.0,5,0,5,5_0 +888,2.0,2.0,58.0,300,38,12,0.0,11133,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2213.161574419875,6269.12,0.0,115900.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,77266.66666666667,5,0,5,5_1 +889,0.0,0.0,41.0,111,85,70,0.0,11134,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3991.9178137339477,0.0,0.0,12954.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12954.0,1,0,1_1,1_0 +890,0.0,0.0,35.0,111,37,10,0.0,11135,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4782.799771129045,0.0,0.0,26110.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26110.0,4,0,4_0,4_0 +891,2.0,5.0,33.0,111,46,50,2.0,11136,0.0,0.0,0.0,496.0,1.0,4.0,2.0,4.0,2.1,4422.693659712482,3455.9199999999996,7500.0,35604.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,16954.285714285714,2,0,2_1,2_0 +892,0.0,0.0,58.0,300,43,50,0.0,11137,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2258.1880083151195,780.0,0.0,49961.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33307.333333333336,5,0,5,5_1 +893,3.0,3.0,59.0,111,77,50,0.0,11138,0.0,0.0,0.0,122.0,0.0,2.0,0.0,1.0,1.0,3497.197383916862,0.0,0.0,16438.0,7,3,8,7.0,1,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,16438.0,2,0,2_1,2_0 +894,0.0,0.0,57.0,111,62,50,0.0,1114,0.0,0.0,0.0,418.0,2.0,4.0,0.0,2.0,1.5,1579.519832466421,2340.0,0.0,20981.0,1,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13987.333333333334,2,0,2_0,2_0 +895,0.0,17.0,80.0,300,71,70,0.0,11141,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2799.535926477656,0.0,0.0,10860.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,10860.0,1,0,1_0,1_1 +896,0.0,8.0,84.0,111,75,70,0.0,11142,0.0,110.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1866.8443327997957,0.0,0.0,31323.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20882.0,3,0,3_0,3_0 +897,5.0,25.0,82.0,400,78,71,0.0,11143,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2210.205096884802,0.0,0.0,24977.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16651.333333333332,2,0,2_0,2_1 +898,0.0,21.0,56.0,111,52,71,0.0,11144,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2877.978530449322,1300.0,0.0,8591.0,1,4,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,8591.0,1,0,1_0,1_0 +899,1.0,17.0,77.0,111,77,70,2.0,11145,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3270.644761010284,0.0,1880.0,22864.0,5,4,7,5.0,1,3.0,1.0,0.0,0,0,1,0,0,0,1.0,2.0,22864.0,3,0,3_0,3_0 +900,0.0,0.0,47.0,111,85,50,0.0,11147,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,832.4837275232622,1040.0,0.0,6076.0,7,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,4050.6666666666665,1,0,1_1,1_0 +901,0.0,0.0,33.0,111,63,43,0.0,11149,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2212.4692080341433,0.0,0.0,39114.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,16297.5,2,0,2_1,2_0 +902,0.0,15.0,62.0,112,37,30,0.0,1115,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2325.3309471680914,3874.0,0.0,96308.0,1,1,9,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,64205.333333333336,5,0,5,5_1 +903,5.0,5.0,43.0,112,46,60,0.0,11150,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2096.470883985775,1300.52,0.0,75404.0,1,3,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,50269.333333333336,5,0,5,5_0 +904,3.0,25.0,85.0,400,77,70,0.0,11151,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3053.535037368886,0.0,0.0,22681.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22681.0,3,0,3_0,3_1 +905,0.0,0.0,33.0,111,22,41,0.0,11156,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3756.940722955839,0.0,0.0,30153.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30153.0,4,0,4_0,4_0 +906,0.0,0.0,34.0,111,38,12,0.0,11158,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3481.2943521971497,3120.0,0.0,64481.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,35822.777777777774,5,0,5,5_0 +907,4.0,4.0,40.0,111,35,30,0.0,11159,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2241.994383482015,0.0,0.0,25210.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25210.0,4,0,4_0,4_0 +908,9.0,9.0,27.0,111,35,12,0.0,1116,0.0,0.0,0.0,800.0,2.0,2.0,0.0,2.0,1.5,4220.45889472339,3590.08,0.0,58926.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,39284.0,5,0,5,5_0 +909,0.0,0.0,58.0,211,54,50,0.0,11160,0.0,0.0,0.0,332.0,1.0,5.0,0.0,1.0,1.0,1291.0173233598227,0.0,0.0,17639.0,1,3,2,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17639.0,2,0,2_0,2_0 +910,3.0,3.0,36.0,111,31,31,0.0,11161,0.0,0.0,560.0,0.0,2.0,4.0,1.0,3.0,1.8,3974.452649980032,0.0,0.0,107386.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,59658.88888888889,5,0,5,5_0 +911,0.0,0.0,83.0,300,71,71,0.0,11165,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1873.3777742095651,0.0,0.0,18420.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18420.0,2,0,2_0,2_1 +912,0.0,0.0,53.0,111,48,60,0.0,11166,0.0,0.0,0.0,0.0,3.0,6.0,3.0,5.0,2.8,1843.1305722836096,0.0,0.0,51812.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18504.285714285714,2,0,2_0,2_0 +913,0.0,0.0,66.0,111,78,50,0.0,11167,0.0,0.0,0.0,317.0,0.0,3.0,0.0,2.0,1.5,1710.4626260398281,0.0,0.0,16509.0,5,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11006.0,1,0,1_1,1_0 +914,0.0,14.0,71.0,221,71,44,0.0,11169,0.0,140.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1563.3529661591729,0.0,0.0,23340.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15560.0,2,0,2_0,2_0 +915,11.0,11.0,52.0,112,37,12,0.0,1117,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,2530.7724666678273,546.0,0.0,93055.0,1,2,10,2.0,2,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,62036.666666666664,5,0,5,5_0 +916,0.0,0.0,54.0,120,74,44,0.0,11172,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2053.1076396736667,5589.48,0.0,23717.0,7,1,0,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15811.333333333334,2,0,2_0,2_0 +917,0.0,0.0,47.0,112,55,30,0.0,11173,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2414.6943865864932,2558.4,0.0,29952.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14262.857142857143,2,0,2_0,2_1 +918,5.0,9.0,47.0,111,52,50,0.0,11175,0.0,75.0,0.0,436.0,1.0,5.0,1.0,2.0,1.3,706.9677654137446,0.0,0.0,22680.0,1,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,17446.153846153844,2,0,2_1,2_0 +919,0.0,0.0,36.0,112,48,50,0.0,11176,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.4,1833.2866547684823,8205.6,0.0,64097.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26707.083333333336,4,0,4_0,4_1 +920,2.0,5.0,48.0,111,85,71,0.0,11178,0.0,180.0,0.0,0.0,0.0,4.0,2.0,3.0,2.0,1786.0020404533843,0.0,0.0,26984.0,4,3,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,13492.0,1,0,1_1,1_0 +921,2.0,4.0,43.0,120,34,30,0.0,11179,0.0,560.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2884.9965109866957,5033.08,0.0,52191.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22691.739130434784,3,0,3_0,3_1 +922,18.0,20.0,65.0,112,75,50,0.0,1118,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1912.9854274439533,1847.0400000000002,0.0,33462.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22308.0,3,0,3_0,3_1 +923,1.0,3.0,54.0,211,38,50,2.0,11180,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,760.5097243703086,0.0,6300.0,23660.0,1,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23660.0,3,0,3_0,3_0 +924,13.0,13.0,36.0,111,48,43,0.0,11183,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5405.407087352335,0.0,0.0,30396.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30396.0,4,0,4_0,4_0 +925,10.0,16.0,58.0,111,37,30,0.0,11184,0.0,99999.0,80.0,510.0,1.0,4.0,1.0,3.0,2.0,2783.9033888989848,0.0,0.0,58135.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,29067.5,4,0,4_0,4_0 +926,4.0,4.0,20.0,120,63,50,0.0,11185,0.0,100.0,0.0,320.0,3.0,4.0,2.0,3.0,2.0,351.99763690786887,0.0,0.0,30800.0,1,3,0,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,15400.0,2,0,2_1,2_0 +927,8.0,11.0,44.0,211,48,31,0.0,11186,0.0,500.0,500.0,0.0,1.0,2.0,0.0,1.0,1.0,1063.5593928113512,2600.0,0.0,25094.0,1,2,4,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,25094.0,4,0,4_0,4_0 +928,8.0,8.0,53.0,111,56,50,0.0,11187,0.0,400.0,300.0,429.0,1.0,4.0,1.0,2.0,1.5,648.208043439591,0.0,0.0,24060.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16040.0,2,0,2_0,2_0 +929,4.0,4.0,46.0,111,46,31,0.0,11188,0.0,60.0,0.0,0.0,1.0,6.0,2.0,3.0,2.0,159.55159501875946,2600.0,0.0,40342.0,1,1,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20171.0,3,0,3_0,3_0 +930,4.0,9.0,44.0,112,46,42,0.0,11189,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2285.8390133732505,2600.0,0.0,40491.0,1,2,10,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20245.5,3,0,3_0,3_0 +931,4.0,17.0,50.0,221,47,31,0.0,1119,0.0,0.0,0.0,515.0,2.0,4.0,3.0,5.0,2.6,3494.794196359813,0.0,0.0,47815.0,1,3,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18390.384615384613,2,0,2_0,2_0 +932,0.0,0.0,48.0,300,22,71,0.0,11190,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2922.7654368431054,5720.0,0.0,23530.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11204.761904761905,1,0,1_0,1_1 +933,1.0,10.0,71.0,111,77,50,2.0,11191,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1738.6948592593499,1853.8,2000.0,39577.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,26384.666666666668,4,0,4_0,4_0 +934,4.0,7.0,44.0,111,21,50,0.0,11192,0.0,700.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2726.154153158057,0.0,0.0,31315.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,12526.0,1,0,1_0,1_0 +935,0.0,0.0,41.0,112,54,43,0.0,11194,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1897.2308320619268,1893.3199999999997,0.0,45420.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25233.333333333332,4,0,4_0,4_1 +936,3.0,6.0,47.0,111,46,31,0.0,11195,0.0,0.0,99999.0,254.0,1.0,3.0,2.0,3.0,1.6,1079.0425109158512,2452.3199999999997,0.0,26087.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,16304.375,2,0,2_1,2_0 +937,8.0,18.0,85.0,111,75,44,0.0,11196,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2983.667044259145,0.0,0.0,32210.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21473.333333333332,3,0,3_0,3_0 +938,0.0,11.0,51.0,221,47,41,2.0,11197,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.5,2104.7260511108666,2797.6,2500.0,55017.0,1,2,1,2.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,22006.8,3,0,3_0,3_0 +939,2.0,9.0,31.0,111,67,50,0.0,11198,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2081.471868341944,2600.0,0.0,39634.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18873.333333333332,3,0,3_0,3_0 +940,1.0,10.0,62.0,111,52,30,2.0,11199,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2561.056891390151,0.0,8900.0,47836.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,47836.0,5,0,5,5_0 +941,0.0,0.0,37.0,111,37,30,0.0,11200,0.0,0.0,0.0,758.0,1.0,3.0,1.0,2.0,1.3,891.4996833339874,2598.44,0.0,33150.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25500.0,4,0,4_0,4_0 +942,3.0,11.0,65.0,111,75,60,0.0,11201,0.0,250.0,0.0,415.0,0.0,4.0,0.0,1.0,1.0,2935.3870685443435,3447.0800000000004,0.0,17490.0,5,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17490.0,2,0,2_0,2_0 +943,11.0,13.0,50.0,400,85,71,0.0,11202,0.0,0.0,0.0,90.0,0.0,2.0,1.0,2.0,1.3,991.5646280398689,0.0,0.0,12802.0,4,3,0,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,9847.692307692307,1,0,1_1,1_0 +944,6.0,6.0,45.0,112,37,20,0.0,11203,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,4027.4881215114865,2712.3199999999997,0.0,40870.0,1,2,6,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,40870.0,5,0,5,5_0 +945,0.0,0.0,66.0,111,78,71,0.0,11204,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2527.7210441857083,0.0,0.0,17599.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17599.0,2,0,2_0,2_0 +946,6.0,18.0,38.0,300,43,33,0.0,11205,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2442.521083101934,778.96,0.0,54531.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25967.142857142855,4,0,4_0,4_1 +947,1.0,1.0,84.0,111,77,70,1.0,11208,0.0,0.0,120.0,478.0,0.0,1.0,0.0,1.0,1.0,4760.770414296806,0.0,12000.0,18310.0,5,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,18310.0,2,0,2_0,2_0 +948,11.0,19.0,78.0,300,78,70,0.0,11209,0.0,0.0,300.0,0.0,0.0,5.0,0.0,1.0,1.0,2418.9850528116935,0.0,0.0,11086.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,11086.0,1,0,1_0,1_1 +949,11.0,11.0,63.0,111,72,50,0.0,1121,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2181.7831210828904,0.0,0.0,48731.0,5,1,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23205.238095238095,3,0,3_0,3_0 +950,1.0,8.0,70.0,400,71,70,2.0,11210,0.0,550.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1820.2222585119187,0.0,7250.0,17831.0,5,1,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,11887.333333333334,1,0,1_0,1_1 +951,2.0,2.0,53.0,112,45,41,0.0,11211,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2316.491351936053,2828.7999999999997,0.0,50728.0,1,2,6,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,33818.666666666664,5,0,5,5_0 +952,2.0,4.0,42.0,400,48,43,0.0,11212,0.0,120.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,188.3977306193087,0.0,0.0,35979.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19988.333333333332,3,0,3_0,3_1 +953,14.0,15.0,71.0,111,75,33,0.0,11214,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,1.5,2904.871164480948,0.0,0.0,31690.0,5,1,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,21126.666666666668,3,0,3_0,3_0 +954,0.0,0.0,46.0,111,52,71,0.0,11215,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3062.81510584659,0.0,0.0,19440.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19440.0,3,0,3_0,3_0 +955,0.0,16.0,46.0,111,46,31,0.0,11216,0.0,120.0,320.0,0.0,2.0,5.0,2.0,4.0,2.1,1857.9333790463693,3644.6800000000003,0.0,81400.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,38761.90476190476,5,0,5,5_0 +956,2.0,11.0,39.0,112,43,33,0.0,11217,0.0,0.0,0.0,0.0,2.0,6.0,4.0,6.0,2.9,1970.8247529524265,0.0,0.0,56260.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19400.0,3,0,3_0,3_1 +957,0.0,14.0,32.0,221,69,50,0.0,11218,0.0,0.0,120.0,0.0,1.0,3.0,0.0,1.0,1.0,3434.618227787455,811.1999999999999,0.0,13964.0,1,3,3,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,13964.0,2,0,2_0,2_0 +958,0.0,0.0,42.0,111,54,31,0.0,11219,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1774.5489097976233,0.0,0.0,53911.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29950.555555555555,4,0,4_0,4_0 +959,1.0,1.0,30.0,111,43,30,1.0,11220,0.0,99999.0,0.0,260.0,1.0,2.0,2.0,3.0,1.6,1042.8117678947135,0.0,50600.0,28147.0,1,3,10,8.0,2,2.0,1.0,1.0,0,0,0,0,1,1,0.0,2.0,17591.875,2,0,2_1,2_0 +960,5.0,5.0,28.0,112,62,50,0.0,11222,0.0,299997.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,3801.9724334985785,1040.0,0.0,33041.0,1,2,3,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,18356.11111111111,2,0,2_0,2_1 +961,14.0,14.0,54.0,112,37,50,0.0,11223,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1241.9408171003358,1872.0,0.0,74450.0,1,1,6,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,49633.333333333336,5,0,5,5_1 +962,8.0,11.0,53.0,111,52,71,0.0,11224,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2807.4249518269326,0.0,0.0,39710.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26473.333333333332,4,0,4_0,4_0 +963,0.0,0.0,59.0,400,68,50,0.0,11225,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,5042.683281295263,2199.6,0.0,38269.0,1,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25512.666666666668,4,0,4_0,4_1 +964,0.0,0.0,68.0,300,75,44,0.0,11229,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1898.841195690467,0.0,0.0,33823.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22548.666666666668,3,0,3_0,3_1 +965,1.0,3.0,20.0,111,84,41,2.0,1123,0.0,99999.0,70.0,317.0,0.0,2.0,0.0,1.0,1.0,3796.6821814191785,0.0,26300.0,5067.0,3,3,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,1,1.0,2.0,5067.0,1,0,1_1,1_0 +966,0.0,11.0,76.0,111,72,50,0.0,11230,0.0,250.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4681.810128357907,0.0,0.0,19027.0,5,1,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19027.0,3,0,3_0,3_0 +967,0.0,0.0,86.0,400,72,70,0.0,11232,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2748.092216523524,0.0,0.0,25050.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25050.0,4,0,4_0,4_0 +968,3.0,16.0,46.0,112,13,50,0.0,11233,0.0,0.0,99999.0,0.0,1.0,8.0,2.0,3.0,2.0,1040.212074139479,0.0,0.0,20938.0,1,1,8,0.0,2,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,10469.0,1,0,1_0,1_1 +969,3.0,3.0,70.0,111,78,71,0.0,11234,0.0,305.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2403.627658131416,1458.6000000000001,0.0,15207.0,5,1,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15207.0,2,0,2_0,2_0 +970,1.0,16.0,44.0,112,38,31,2.0,11235,0.0,100.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2268.6765243442333,2284.88,5000.0,73064.0,1,2,8,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,31766.956521739132,5,0,5,5_1 +971,4.0,4.0,65.0,111,77,60,0.0,11236,0.0,100.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2634.039919784731,0.0,0.0,55227.0,5,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,27613.5,4,0,4_0,4_0 +972,9.0,9.0,63.0,111,74,20,0.0,11238,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1925.6031330834605,1560.0,0.0,63770.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,42513.333333333336,5,0,5,5_0 +973,3.0,13.0,32.0,112,21,50,0.0,11239,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2935.669583125153,0.0,0.0,45775.0,1,2,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,21797.619047619046,3,0,3_0,3_0 +974,0.0,0.0,60.0,300,52,70,0.0,1124,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1593.3078771573787,0.0,0.0,40430.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26953.333333333332,4,0,4_0,4_1 +975,0.0,2.0,24.0,111,85,50,0.0,11241,0.0,100149.0,0.0,0.0,0.0,3.0,2.0,4.0,2.1,882.9915040847304,0.0,0.0,17958.0,6,3,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,8551.42857142857,1,0,1_1,1_0 +976,0.0,0.0,26.0,111,56,50,0.0,11245,0.0,0.0,0.0,725.0,2.0,3.0,1.0,3.0,1.8,1562.804541464502,1040.0,0.0,29990.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16661.11111111111,2,0,2_0,2_0 +977,8.0,12.0,64.0,111,21,50,0.0,11246,0.0,80.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1614.79371222094,0.0,0.0,15557.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,10371.333333333334,1,0,1_0,1_0 +978,0.0,4.0,52.0,112,56,50,2.0,11247,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2328.447961514556,3382.08,7000.0,31434.0,1,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20956.0,3,0,3_0,3_0 +979,3.0,4.0,65.0,111,77,50,0.0,1125,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2094.4848776969657,0.0,0.0,22436.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22436.0,3,0,3_0,3_0 +980,1.0,6.0,54.0,111,37,71,2.0,11250,0.0,0.0,0.0,344.0,3.0,3.0,2.0,4.0,2.5,3760.2647633645342,0.0,9000.0,74620.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,29848.0,4,0,4_0,4_0 +981,4.0,4.0,57.0,111,77,31,0.0,11251,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1915.5568640554716,2133.04,0.0,95440.0,5,1,8,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,2.0,0.0,63626.666666666664,5,0,5,5_0 +982,10.0,10.0,53.0,112,34,0,0.0,11252,0.0,0.0,99999.0,0.0,1.0,3.0,0.0,1.0,1.0,2347.341458933378,2091.96,0.0,40320.0,1,1,7,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,40320.0,5,0,5,5_0 +983,0.0,0.0,65.0,221,77,60,0.0,11253,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2253.5271674932033,0.0,0.0,33956.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22637.333333333332,3,0,3_0,3_0 +984,12.0,12.0,31.0,111,37,30,0.0,11254,0.0,0.0,0.0,675.0,2.0,4.0,0.0,2.0,1.5,2386.1905964557445,1331.2,0.0,48284.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,32189.333333333332,5,0,5,5_0 +985,1.0,10.0,66.0,111,72,70,2.0,11255,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1411.2551117086634,519.48,4000.0,36259.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24172.666666666668,4,0,4_0,4_0 +986,0.0,0.0,75.0,111,77,60,0.0,11257,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3309.9023751385675,0.0,0.0,17580.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17580.0,2,0,2_0,2_0 +987,4.0,8.0,55.0,120,48,44,0.0,11258,0.0,300.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1766.206862835414,3353.48,0.0,44369.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22184.5,3,0,3_0,3_1 +988,0.0,0.0,51.0,300,42,31,0.0,11259,0.0,0.0,0.0,81.0,1.0,3.0,1.0,2.0,1.5,1185.9085158650178,2096.12,0.0,20403.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13602.0,1,0,1_1,1_1 +989,0.0,6.0,53.0,112,42,50,2.0,1126,0.0,700.0,500.0,508.0,2.0,3.0,1.0,3.0,1.8,2844.9564592486495,3912.4799999999996,4000.0,42702.0,1,3,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,23723.333333333332,3,0,3_0,3_0 +990,0.0,0.0,75.0,111,77,60,0.0,11260,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3810.7005511363686,0.0,0.0,18604.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18604.0,2,0,2_0,2_0 +991,1.0,1.0,53.0,111,65,71,1.0,11263,0.0,99999.0,0.0,654.0,2.0,2.0,2.0,3.0,2.0,4131.140087687407,0.0,19500.0,12190.0,4,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,6095.0,1,0,1_0,1_0 +992,6.0,6.0,54.0,111,68,71,0.0,11265,0.0,0.0,0.0,188.0,2.0,3.0,3.0,5.0,2.4,851.7356405363842,1040.0,0.0,26338.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,10974.166666666668,1,0,1_1,1_0 +993,0.0,8.0,59.0,400,75,50,0.0,11267,0.0,120.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2719.2277821760126,2190.76,0.0,69758.0,5,1,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,34879.0,5,0,5,5_0 +994,0.0,0.0,35.0,111,46,30,0.0,11268,0.0,0.0,0.0,29.0,1.0,3.0,3.0,5.0,2.4,3105.5247606243165,0.0,0.0,36852.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15355.0,2,0,2_1,2_0 +995,7.0,18.0,68.0,112,75,50,0.0,11269,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1636.2001649519107,0.0,0.0,32057.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21371.333333333332,3,0,3_0,3_1 +996,2.0,10.0,60.0,111,52,60,0.0,1127,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2878.1545475181206,2036.3199999999997,0.0,44580.0,1,2,10,8.0,3,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,29720.0,4,0,4_0,4_0 +997,0.0,15.0,80.0,120,78,70,2.0,11270,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2222.370832487878,1872.0,3000.0,17532.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,11688.0,1,0,1_0,1_1 +998,2.0,8.0,70.0,120,74,50,0.0,11271,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1436.1637057747275,2610.92,0.0,55293.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,36862.0,5,0,5,5_0 +999,1.0,1.0,38.0,111,85,71,1.0,11272,0.0,0.0,200.0,47.0,0.0,4.0,2.0,3.0,2.0,1207.8755614169113,0.0,12800.0,12684.0,6,3,4,4.0,2,3.0,0.0,0.0,0,0,1,0,0,1,3.0,0.0,6342.0,1,0,1_1,1_0 +1000,4.0,4.0,60.0,300,52,71,0.0,11273,0.0,250.0,200.0,7.0,1.0,2.0,0.0,1.0,1.0,2720.1462667822902,0.0,0.0,8782.0,4,3,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,8782.0,1,0,1_1,1_1 +1001,2.0,18.0,68.0,120,78,71,0.0,11274,0.0,330.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2240.61958968272,0.0,0.0,42522.0,7,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,28348.0,4,0,4_0,4_0 +1002,1.0,6.0,74.0,111,74,10,2.0,11275,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1617.0190626913538,2180.88,3900.0,93170.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,62113.333333333336,5,0,5,5_0 +1003,3.0,3.0,31.0,111,55,42,0.0,11276,0.0,50.0,0.0,73.0,1.0,5.0,2.0,3.0,2.0,906.3641285894652,2340.0,0.0,32919.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,16459.5,2,0,2_1,2_0 +1004,3.0,15.0,55.0,112,48,50,0.0,11277,0.0,350.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2333.0820041329607,0.0,0.0,32098.0,1,2,9,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24690.76923076923,4,0,4_0,4_1 +1005,6.0,8.0,67.0,112,71,71,0.0,11278,0.0,0.0,675.0,0.0,0.0,4.0,0.0,2.0,1.5,1596.940195032864,2602.6,0.0,20349.0,5,2,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,13566.0,1,0,1_0,1_1 +1006,0.0,0.0,37.0,111,85,30,0.0,11279,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,2499.8772620845157,0.0,0.0,12991.0,7,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,7217.222222222222,1,0,1_0,1_0 +1007,7.0,13.0,66.0,111,77,50,0.0,1128,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2103.1854373530105,0.0,0.0,35640.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23760.0,3,0,3_0,3_0 +1008,7.0,7.0,53.0,112,52,50,0.0,11280,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2759.321115465689,1976.0,0.0,37930.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25286.666666666668,4,0,4_0,4_1 +1009,2.0,2.0,57.0,112,52,71,0.0,11281,0.0,0.0,0.0,437.0,1.0,3.0,0.0,2.0,1.5,2219.7069429967332,0.0,0.0,32420.0,1,3,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21613.333333333332,3,0,3_0,3_0 +1010,2.0,4.0,40.0,111,85,50,0.0,11284,0.0,800.0,0.0,600.0,0.0,4.0,3.0,4.0,2.3,1037.4014593037714,2080.0,0.0,20119.0,4,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,8747.391304347826,1,0,1_0,1_0 +1011,1.0,9.0,67.0,111,74,12,2.0,11285,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1712.5014564940846,3430.96,10000.0,69508.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,46338.666666666664,5,0,5,5_0 +1012,13.0,13.0,34.0,111,34,10,0.0,11287,0.0,0.0,34.0,0.0,2.0,2.0,0.0,2.0,1.5,4540.037957236892,0.0,0.0,79456.0,1,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,52970.666666666664,5,0,5,5_0 +1013,2.0,2.0,69.0,111,74,12,0.0,1129,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1710.875992316539,2215.2000000000003,0.0,72558.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,48372.0,5,0,5,5_0 +1014,2.0,2.0,80.0,111,78,71,0.0,11290,0.0,350.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2529.755056729056,0.0,0.0,24513.0,5,4,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,16342.0,2,0,2_0,2_0 +1015,5.0,5.0,75.0,111,75,71,0.0,11292,0.0,0.0,100.0,0.0,0.0,4.0,0.0,1.0,1.0,3730.6869878815987,0.0,0.0,20354.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,20354.0,3,0,3_0,3_0 +1016,0.0,0.0,41.0,300,68,50,0.0,11293,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3795.231865556561,0.0,0.0,24980.0,1,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10860.869565217392,1,0,1_0,1_0 +1017,2.0,2.0,47.0,111,63,50,0.0,11294,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1927.8674896364423,0.0,0.0,53289.0,1,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,35526.0,5,0,5,5_0 +1018,0.0,0.0,58.0,111,65,70,0.0,11297,0.0,0.0,0.0,303.0,1.0,1.0,0.0,1.0,1.0,2501.9886653736826,520.0,0.0,19390.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19390.0,3,0,3_0,3_0 +1019,5.0,5.0,26.0,400,85,50,0.0,11298,0.0,0.0,0.0,0.0,0.0,2.0,2.0,3.0,1.6,3986.1474402224853,1612.52,0.0,17515.0,4,3,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,10946.875,1,0,1_1,1_1 +1020,14.0,16.0,33.0,111,43,30,0.0,11299,0.0,0.0,0.0,541.0,2.0,4.0,3.0,5.0,2.4,851.477396820868,3380.0,0.0,47960.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19983.333333333336,3,0,3_0,3_0 +1021,0.0,16.0,29.0,111,46,31,2.0,113,0.0,99999.0,0.0,600.0,2.0,3.0,0.0,2.0,1.5,4233.29975051451,2081.04,500.0,50815.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,33876.666666666664,5,0,5,5_0 +1022,1.0,1.0,84.0,111,77,70,1.0,1130,0.0,321.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3565.650114904408,0.0,27500.0,10197.0,5,4,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,10197.0,1,0,1_0,1_0 +1023,4.0,4.0,79.0,111,78,71,0.0,11301,0.0,0.0,0.0,246.0,0.0,5.0,1.0,3.0,2.0,3434.1290135610834,0.0,0.0,27566.0,5,3,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,13783.0,1,0,1_1,1_0 +1024,6.0,24.0,43.0,111,56,71,0.0,11302,0.0,0.0,99999.0,0.0,4.0,5.0,3.0,5.0,2.8,1718.1019240727549,4004.0,0.0,45117.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,16113.214285714286,2,0,2_1,2_0 +1025,0.0,0.0,47.0,112,46,71,0.0,11303,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,510.0713605913938,1040.0,0.0,20868.0,1,3,6,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,16052.307692307691,2,0,2_1,2_0 +1026,1.0,1.0,86.0,111,86,71,1.0,11304,0.0,800.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1606.961640641562,0.0,21000.0,13900.0,6,4,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,13900.0,1,0,1_0,1_0 +1027,0.0,0.0,26.0,112,55,43,0.0,11306,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3715.9592927640633,2080.0,0.0,36011.0,1,3,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24007.333333333332,4,0,4_0,4_1 +1028,0.0,2.0,67.0,221,74,41,0.0,11307,0.0,0.0,300.0,0.0,0.0,6.0,0.0,2.0,1.5,2920.4074653828725,6065.28,0.0,39790.0,5,1,1,2.0,3,4.0,1.0,0.0,0,1,0,0,0,0,2.0,2.0,26526.666666666668,4,0,4_0,4_0 +1029,0.0,10.0,68.0,111,64,70,0.0,11309,0.0,0.0,150.0,0.0,1.0,5.0,0.0,2.0,1.5,1582.1696417265966,3328.0,0.0,37660.0,1,3,7,5.0,3,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,25106.666666666668,4,0,4_0,4_0 +1030,7.0,13.0,20.0,111,55,41,0.0,11310,0.0,0.0,100.0,153.0,1.0,1.0,0.0,1.0,1.0,3075.4997405319364,0.0,0.0,8583.0,3,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,8583.0,1,0,1_1,1_0 +1031,7.0,7.0,67.0,111,35,30,0.0,11311,0.0,0.0,50.0,0.0,1.0,1.0,0.0,1.0,1.0,3053.038950458097,0.0,0.0,42369.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,42369.0,5,0,5,5_0 +1032,2.0,3.0,40.0,111,54,31,0.0,11313,0.0,0.0,0.0,589.0,1.0,3.0,2.0,3.0,1.6,639.0647373320877,0.0,0.0,21310.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13318.75,1,0,1_0,1_0 +1033,8.0,12.0,52.0,111,67,71,0.0,11314,0.0,99999.0,0.0,258.0,1.0,3.0,0.0,1.0,1.0,3738.690159234786,1560.0,0.0,19320.0,1,3,7,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19320.0,3,0,3_0,3_0 +1034,7.0,7.0,43.0,112,46,31,0.0,11315,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,844.3228638518725,2496.0,0.0,44130.0,1,2,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,29420.0,4,0,4_0,4_1 +1035,1.0,11.0,26.0,112,64,50,2.0,11316,0.0,500.0,110.0,630.0,2.0,3.0,0.0,2.0,1.5,2537.314177909273,0.0,1600.0,43400.0,1,3,9,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28933.333333333332,4,0,4_0,4_0 +1036,0.0,0.0,60.0,111,72,71,0.0,11317,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,7317.884804514402,0.0,0.0,64024.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,42682.666666666664,5,0,5,5_0 +1037,1.0,15.0,77.0,300,78,71,2.0,11318,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2547.10858385354,2098.72,3500.0,14850.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,9900.0,1,0,1_0,1_1 +1038,0.0,0.0,80.0,112,77,70,0.0,11319,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2867.5074893886313,1308.8400000000001,0.0,16573.0,5,4,6,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16573.0,2,0,2_0,2_0 +1039,3.0,3.0,38.0,111,37,30,0.0,1132,0.0,70.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1864.326710120449,0.0,0.0,65526.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,31202.85714285714,4,0,4_0,4_0 +1040,10.0,10.0,89.0,112,78,70,0.0,11320,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2209.1971568046274,0.0,0.0,42253.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28168.666666666668,4,0,4_0,4_0 +1041,0.0,0.0,46.0,112,46,50,0.0,11321,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,659.8139382920443,0.0,0.0,46302.0,1,2,6,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20131.304347826088,3,0,3_0,3_0 +1042,2.0,2.0,27.0,111,55,43,0.0,11322,0.0,0.0,0.0,95.0,1.0,1.0,0.0,1.0,1.0,3940.1945782019625,1300.52,0.0,20484.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,20484.0,3,0,3_1,3_0 +1043,8.0,20.0,51.0,111,55,20,0.0,11323,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1840.8969919359956,1355.12,0.0,22029.0,1,1,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14686.0,2,0,2_0,2_0 +1044,0.0,8.0,29.0,111,46,60,2.0,11324,0.0,0.0,0.0,77.0,1.0,3.0,1.0,2.0,1.3,1905.1247347629455,3121.56,14700.0,24824.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,19095.384615384613,3,0,3_1,3_0 +1045,0.0,0.0,54.0,300,46,44,0.0,11325,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1504.767010844218,0.0,0.0,44448.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29632.0,4,0,4_0,4_1 +1046,2.0,2.0,79.0,300,75,50,0.0,11326,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2886.3124601648515,1976.0,0.0,29422.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,29422.0,4,0,4_0,4_1 +1047,5.0,7.0,64.0,111,74,31,0.0,11328,0.0,99999.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1348.2448010505882,0.0,0.0,48760.0,5,1,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,32506.666666666668,5,0,5,5_0 +1048,0.0,5.0,73.0,111,78,70,0.0,11329,0.0,0.0,0.0,200.0,0.0,3.0,0.0,1.0,1.0,2106.552366978226,0.0,0.0,16104.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16104.0,2,0,2_0,2_0 +1049,2.0,2.0,56.0,120,47,44,0.0,11330,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2020.4572286140012,3822.0,0.0,81474.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,32589.6,5,0,5,5_1 +1050,0.0,1.0,72.0,111,78,71,2.0,11331,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,2991.5140215814317,1040.0,10200.0,39760.0,5,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,19880.0,3,0,3_0,3_0 +1051,4.0,4.0,63.0,112,74,42,0.0,11332,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,2050.5707215682246,2548.0,0.0,57521.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38347.333333333336,5,0,5,5_1 +1052,5.0,12.0,20.0,111,56,42,0.0,11333,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,1243.7147732215424,2604.6800000000003,0.0,15314.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,11780.0,1,0,1_1,1_0 +1053,2.0,2.0,48.0,111,56,50,0.0,11334,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1129.1554537925579,0.0,0.0,12448.0,1,1,9,7.0,2,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,9575.384615384615,1,0,1_0,1_0 +1054,4.0,4.0,46.0,111,46,42,0.0,11335,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1756.9724051071355,0.0,0.0,42590.0,1,2,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,28393.333333333332,4,0,4_0,4_0 +1055,15.0,16.0,73.0,111,72,20,0.0,11336,0.0,50.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3148.2884096785538,0.0,0.0,20161.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,13440.666666666666,1,0,1_0,1_0 +1056,1.0,6.0,69.0,112,78,50,2.0,11337,0.0,770.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1211.1656569228085,1476.8,5500.0,47323.0,5,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,31548.666666666668,4,0,4_0,4_0 +1057,0.0,0.0,62.0,111,75,50,0.0,11338,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2306.794196314166,0.0,0.0,14500.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14500.0,2,0,2_0,2_0 +1058,5.0,5.0,75.0,111,77,50,0.0,1134,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4493.925442916485,0.0,0.0,19534.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19534.0,3,0,3_0,3_0 +1059,7.0,7.0,34.0,111,68,50,0.0,11340,0.0,0.0,0.0,312.0,2.0,3.0,0.0,2.0,1.5,2369.8512854604937,2184.0,0.0,28024.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18682.666666666668,2,0,2_0,2_0 +1060,2.0,9.0,37.0,112,64,50,0.0,11342,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2962.858601705305,0.0,0.0,25476.0,1,2,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,25476.0,4,0,4_0,4_1 +1061,0.0,0.0,72.0,112,74,41,0.0,11343,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1424.3661843414507,0.0,0.0,35940.0,5,1,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,35940.0,5,0,5,5_0 +1062,11.0,11.0,76.0,300,74,12,0.0,11344,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2406.4628289439056,0.0,0.0,99924.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,66616.0,5,0,5,5_0 +1063,1.0,1.0,76.0,111,75,20,1.0,11345,0.0,0.0,50.0,0.0,0.0,8.0,0.0,2.0,1.5,1953.2837447221448,0.0,6500.0,63269.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,42179.333333333336,5,0,5,5_0 +1064,4.0,4.0,26.0,120,62,31,0.0,11346,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3813.6196130616304,5460.0,0.0,69897.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38831.666666666664,5,0,5,5_1 +1065,11.0,11.0,96.0,112,72,71,0.0,11347,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1943.4678522148938,0.0,0.0,36615.0,5,4,7,0.0,5,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,24410.0,4,0,4_0,4_1 +1066,8.0,14.0,50.0,111,38,20,0.0,11348,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,1814.6293358409914,3478.7999999999997,0.0,92097.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,30699.0,4,0,4_0,4_0 +1067,3.0,3.0,45.0,111,85,50,0.0,11349,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,1159.3932640863402,520.52,0.0,17976.0,4,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11235.0,1,0,1_1,1_0 +1068,0.0,9.0,53.0,120,53,50,0.0,1135,0.0,99999.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1992.368377201768,3120.0,0.0,52610.0,1,1,0,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,35073.333333333336,5,0,5,5_0 +1069,0.0,0.0,35.0,112,34,20,0.0,11355,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1861.169852849454,0.0,0.0,18316.0,1,4,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18316.0,2,0,2_0,2_0 +1070,2.0,21.0,52.0,111,31,30,0.0,11356,0.0,0.0,0.0,0.0,2.0,7.0,4.0,6.0,3.5,2709.7750177685966,1010.36,0.0,203360.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,58102.857142857145,5,0,5,5_0 +1071,0.0,0.0,71.0,300,77,50,0.0,11357,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3339.4380338060114,0.0,0.0,27428.0,5,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18285.333333333332,2,0,2_0,2_1 +1072,3.0,6.0,69.0,120,78,71,0.0,11359,0.0,0.0,99999.0,0.0,0.0,2.0,0.0,1.0,1.0,3279.64752251218,0.0,0.0,11240.0,5,3,0,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,11240.0,1,0,1_1,1_0 +1073,4.0,4.0,55.0,111,52,71,0.0,1136,0.0,0.0,0.0,530.0,1.0,3.0,0.0,1.0,1.0,2581.154971724889,0.0,0.0,26780.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,26780.0,4,0,4_0,4_0 +1074,6.0,11.0,73.0,111,56,50,0.0,11360,0.0,100.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,823.7767071866787,0.0,0.0,20603.0,1,2,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20603.0,3,0,3_0,3_0 +1075,3.0,7.0,58.0,111,37,20,0.0,11361,0.0,150.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1938.4348575424158,0.0,0.0,149762.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,99841.33333333333,5,0,5,5_0 +1076,0.0,0.0,78.0,112,75,50,0.0,11363,0.0,0.0,0.0,0.0,0.0,11.0,0.0,2.0,1.5,2246.8835066441957,0.0,0.0,33902.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22601.333333333332,3,0,3_0,3_1 +1077,7.0,9.0,34.0,111,38,12,0.0,11366,0.0,20.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2630.5015977118965,3536.0,0.0,42200.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28133.333333333332,4,0,4_0,4_0 +1078,5.0,5.0,20.0,111,84,31,0.0,11367,0.0,0.0,0.0,188.0,0.0,1.0,0.0,1.0,1.0,3649.059860711837,0.0,0.0,2737.0,3,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,2737.0,1,0,1_1,1_0 +1079,3.0,8.0,70.0,112,74,60,0.0,11369,0.0,0.0,0.0,302.0,0.0,2.0,0.0,1.0,1.0,1761.9548796846639,0.0,0.0,17303.0,5,3,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17303.0,2,0,2_0,2_0 +1080,8.0,8.0,58.0,221,38,12,0.0,11371,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2525.2260082192747,0.0,0.0,124919.0,1,1,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,83279.33333333333,5,0,5,5_0 +1081,4.0,7.0,84.0,400,78,71,0.0,11372,0.0,50.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2023.6286342864755,1300.0,0.0,24538.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16358.666666666666,2,0,2_0,2_1 +1082,1.0,1.0,69.0,120,77,60,1.0,11373,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1431.4947811928778,2080.0,11200.0,21625.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21625.0,3,0,3_0,3_0 +1083,15.0,15.0,29.0,112,56,31,0.0,11374,0.0,0.0,0.0,0.0,1.0,1.0,2.0,3.0,1.6,2567.8349974567236,1560.0,0.0,20465.0,1,3,9,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,12790.625,1,0,1_1,1_0 +1084,0.0,0.0,23.0,111,84,30,0.0,11375,0.0,0.0,0.0,340.0,0.0,1.0,0.0,1.0,1.0,5896.386364479472,0.0,0.0,3610.0,3,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,3610.0,1,0,1_1,1_0 +1085,1.0,12.0,46.0,112,37,31,2.0,11377,0.0,0.0,100.0,0.0,2.0,6.0,3.0,5.0,2.6,1528.6813311926787,0.0,1000.0,101045.0,1,1,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,38863.46153846154,5,0,5,5_0 +1086,9.0,10.0,62.0,111,75,50,0.0,11378,0.0,0.0,110.0,0.0,0.0,4.0,0.0,2.0,1.5,1940.0200019303825,0.0,0.0,42931.0,5,1,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,28620.666666666668,4,0,4_0,4_0 +1087,12.0,17.0,77.0,111,86,70,0.0,11379,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1629.8692125841942,0.0,0.0,25030.0,5,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16686.666666666668,2,0,2_0,2_0 +1088,0.0,0.0,81.0,111,,70,0.0,1138,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,830.3619798704246,0.0,0.0,17220.0,8,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17220.0,2,0,2_0,2_0 +1089,7.0,8.0,74.0,400,77,50,0.0,11384,0.0,0.0,40.0,0.0,0.0,4.0,0.0,2.0,1.5,1770.0252671181556,0.0,0.0,26602.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17734.666666666668,2,0,2_0,2_1 +1090,7.0,9.0,43.0,112,21,50,0.0,11386,0.0,0.0,0.0,732.0,1.0,5.0,4.0,6.0,2.7,2593.2403915286227,0.0,0.0,54370.0,1,3,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20137.037037037036,3,0,3_0,3_0 +1091,7.0,7.0,56.0,112,43,33,0.0,11387,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,703.251860626367,2932.7999999999997,0.0,27239.0,1,1,9,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18159.333333333332,2,0,2_0,2_1 +1092,0.0,0.0,65.0,300,71,70,0.0,11389,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1970.6137237512532,1040.0,0.0,21360.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14240.0,2,0,2_0,2_1 +1093,1.0,1.0,33.0,112,37,10,2.0,11390,0.0,0.0,484.0,790.0,2.0,5.0,1.0,3.0,1.8,2657.396144301733,2732.08,11400.0,85600.0,1,3,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,47555.555555555555,5,0,5,5_1 +1094,22.0,22.0,27.0,111,52,43,0.0,11391,0.0,0.0,0.0,301.0,1.0,2.0,1.0,2.0,1.3,1661.1514495425822,0.0,0.0,26566.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,20435.384615384613,3,0,3_1,3_0 +1095,0.0,0.0,71.0,111,78,71,0.0,11392,0.0,0.0,0.0,357.0,2.0,4.0,1.0,3.0,2.0,2480.5132854504873,0.0,0.0,50518.0,5,3,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25259.0,4,0,4_0,4_0 +1096,8.0,8.0,46.0,212,37,20,0.0,11393,0.0,0.0,60.0,0.0,2.0,8.0,2.0,4.0,2.1,1983.9778528663496,0.0,0.0,62049.0,1,1,2,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,29547.142857142855,4,0,4_0,4_1 +1097,1.0,9.0,37.0,111,47,12,0.0,11394,0.0,0.0,200.0,0.0,1.0,5.0,0.0,1.0,1.0,2715.8285902981456,2080.0,0.0,28359.0,1,2,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,28359.0,4,0,4_0,4_0 +1098,8.0,10.0,24.0,111,46,30,0.0,11395,0.0,680.0,0.0,475.0,2.0,2.0,0.0,2.0,1.5,5301.31555856331,2641.6,0.0,36504.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24336.0,4,0,4_0,4_0 +1099,0.0,0.0,72.0,300,75,50,0.0,11397,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1783.173333488469,0.0,0.0,41692.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27794.666666666668,4,0,4_0,4_1 +1100,7.0,8.0,82.0,120,71,50,0.0,11398,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1689.1856585823148,0.0,0.0,18300.0,5,1,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,12200.0,1,0,1_0,1_1 +1101,9.0,9.0,87.0,400,86,71,0.0,11399,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1580.1036934185433,0.0,0.0,10978.0,5,4,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,10978.0,1,0,1_0,1_0 +1102,1.0,1.0,61.0,112,77,60,1.0,114,0.0,500.0,300.0,0.0,1.0,5.0,0.0,2.0,1.5,3699.4169545860764,4069.52,9000.0,31730.0,5,2,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21153.333333333332,3,0,3_0,3_1 +1103,0.0,0.0,53.0,111,47,31,1.0,1140,0.0,0.0,0.0,900.0,1.0,3.0,0.0,1.0,1.0,2647.264835662464,0.0,83388.0,55486.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,55486.0,5,0,5,5_0 +1104,10.0,3.0,39.0,111,63,50,0.0,11401,0.0,0.0,0.0,276.0,2.0,4.0,2.0,4.0,2.3,3512.4595873315297,2652.52,0.0,38036.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,16537.391304347828,2,0,2_1,2_0 +1105,1.0,1.0,38.0,112,47,43,1.0,11402,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1755.950895619572,1562.08,16000.0,37652.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15688.333333333334,2,0,2_0,2_1 +1106,3.0,3.0,50.0,221,63,50,0.0,11403,0.0,350.0,0.0,450.0,1.0,2.0,0.0,1.0,1.0,3199.0025784489753,0.0,0.0,17569.0,4,3,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17569.0,2,0,2_0,2_0 +1107,2.0,2.0,47.0,111,63,50,0.0,11404,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1572.7712207733598,0.0,0.0,19160.0,1,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19160.0,3,0,3_0,3_0 +1108,10.0,10.0,75.0,111,74,10,0.0,11406,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2240.1492810290115,0.0,0.0,69847.0,5,1,10,8.0,3,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,46564.666666666664,5,0,5,5_0 +1109,2.0,2.0,38.0,111,34,10,0.0,11409,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2209.2271045896855,0.0,0.0,47593.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,36610.0,5,0,5,5_0 +1110,1.0,12.0,36.0,111,53,60,0.0,1141,0.0,0.0,400.0,0.0,2.0,4.0,2.0,4.0,2.1,2695.5516920450714,3623.3599999999997,0.0,57870.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,27557.142857142855,4,0,4_0,4_0 +1111,4.0,4.0,42.0,111,35,12,0.0,11410,0.0,99999.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,4426.0011472196575,5197.400000000001,0.0,114986.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,54755.23809523809,5,0,5,5_0 +1112,6.0,13.0,29.0,111,54,42,0.0,11411,0.0,0.0,0.0,440.0,1.0,2.0,0.0,1.0,1.0,2515.2615722152555,3146.0,0.0,19998.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19998.0,3,0,3_0,3_0 +1113,6.0,8.0,78.0,111,75,50,0.0,11413,0.0,120.0,0.0,340.0,0.0,3.0,0.0,2.0,1.5,2026.5077903565523,2601.04,0.0,35345.0,5,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,23563.333333333332,3,0,3_0,3_0 +1114,0.0,1.0,50.0,111,85,41,0.0,11414,0.0,300.0,0.0,1078.0,1.0,4.0,2.0,4.0,2.5,2625.4310712587285,1294.8,0.0,54927.0,5,3,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,21970.8,3,0,3_0,3_0 +1115,0.0,0.0,69.0,111,77,71,1.0,11416,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2434.422834387248,1884.48,22500.0,15754.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15754.0,2,0,2_0,2_0 +1116,1.0,1.0,47.0,111,52,50,1.0,11417,0.0,0.0,350.0,0.0,1.0,4.0,2.0,3.0,1.6,580.1895252520793,0.0,20000.0,24025.0,1,2,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,15015.625,2,0,2_1,2_0 +1117,15.0,15.0,34.0,112,56,50,0.0,11418,0.0,0.0,0.0,115.0,1.0,2.0,1.0,2.0,1.3,935.4625385534442,0.0,0.0,16684.0,4,3,10,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,12833.846153846154,1,0,1_1,1_0 +1118,0.0,0.0,49.0,112,68,50,0.0,1142,0.0,0.0,0.0,0.0,1.0,4.0,5.0,7.0,3.0,1283.1908162285458,0.0,0.0,33490.0,1,3,10,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11163.333333333334,1,0,1_1,1_0 +1119,3.0,12.0,67.0,111,75,33,0.0,11421,0.0,0.0,250.0,0.0,0.0,4.0,0.0,1.0,1.0,1599.3891106975298,0.0,0.0,34482.0,5,1,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,34482.0,5,0,5,5_0 +1120,0.0,0.0,22.0,111,67,60,0.0,11422,0.0,0.0,0.0,330.0,2.0,4.0,1.0,3.0,1.8,1284.7715274764453,0.0,0.0,18252.0,4,3,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10140.0,1,0,1_1,1_0 +1121,4.0,8.0,44.0,111,53,20,0.0,11423,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3487.045404720339,0.0,0.0,39960.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19028.571428571428,3,0,3_0,3_0 +1122,2.0,9.0,42.0,111,38,30,0.0,11424,0.0,120.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2347.203372650534,0.0,0.0,93583.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,44563.33333333333,5,0,5,5_0 +1123,7.0,7.0,69.0,111,77,50,0.0,11426,0.0,190.0,30.0,497.0,0.0,4.0,0.0,2.0,1.5,2139.69769689479,0.0,0.0,40051.0,5,3,10,8.0,3,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,26700.666666666668,4,0,4_0,4_0 +1124,1.0,8.0,84.0,112,78,71,0.0,11427,0.0,100.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2815.7204205843227,1847.56,0.0,25149.0,5,1,8,3.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,16766.0,2,0,2_0,2_0 +1125,11.0,11.0,59.0,112,75,70,0.0,1143,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2302.16668949697,3380.5200000000004,0.0,41470.0,5,3,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27646.666666666668,4,0,4_0,4_0 +1126,16.0,19.0,76.0,112,75,41,0.0,11431,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2965.6514246647425,0.0,0.0,25502.0,5,1,9,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,25502.0,4,0,4_0,4_0 +1127,0.0,0.0,35.0,112,63,50,0.0,11432,0.0,0.0,0.0,690.0,2.0,3.0,1.0,3.0,1.8,1106.6403172726539,2080.0,0.0,36604.0,4,3,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20335.555555555555,3,0,3_0,3_1 +1128,0.0,0.0,44.0,221,54,30,0.0,11433,0.0,0.0,0.0,610.0,2.0,3.0,0.0,2.0,1.5,4594.82146525209,0.0,0.0,43309.0,1,3,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28872.666666666668,4,0,4_0,4_0 +1129,2.0,2.0,48.0,111,52,50,0.0,11434,0.0,0.0,0.0,450.0,2.0,3.0,2.0,3.0,2.0,1596.2859131275368,2600.0,0.0,25968.0,1,3,5,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12984.0,1,0,1_0,1_0 +1130,1.0,2.0,38.0,111,38,12,2.0,11435,0.0,0.0,320.0,380.0,1.0,3.0,0.0,1.0,1.0,3834.1894089457405,3586.96,6500.0,38930.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,38930.0,5,0,5,5_0 +1131,1.0,15.0,69.0,120,75,31,2.0,11437,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1901.8474696058142,2557.88,3500.0,48097.0,5,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,48097.0,5,0,5,5_1 +1132,0.0,0.0,73.0,111,75,50,0.0,11439,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1555.1429130288238,0.0,0.0,22454.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22454.0,3,0,3_0,3_0 +1133,0.0,0.0,71.0,111,46,71,0.0,11440,0.0,0.0,0.0,412.0,1.0,4.0,0.0,1.0,1.0,2982.0626106549294,0.0,0.0,21988.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21988.0,3,0,3_0,3_0 +1134,3.0,4.0,61.0,111,56,41,0.0,11441,0.0,120.0,0.0,301.0,1.0,2.0,0.0,1.0,1.0,2448.126797685809,0.0,0.0,10628.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,10628.0,1,0,1_1,1_0 +1135,4.0,4.0,49.0,111,48,71,0.0,11442,0.0,50.0,0.0,0.0,3.0,5.0,4.0,6.0,3.3,2749.3377383015736,2080.0,0.0,52543.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,15922.121212121214,2,0,2_0,2_0 +1136,10.0,10.0,44.0,300,67,31,0.0,11443,0.0,250.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1988.1348326687653,3380.0,0.0,43286.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15459.285714285716,2,0,2_0,2_1 +1137,0.0,0.0,46.0,112,34,20,0.0,11445,0.0,0.0,0.0,811.0,1.0,4.0,2.0,3.0,1.8,1624.2726833023858,0.0,0.0,47818.0,1,3,10,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26565.555555555555,4,0,4_0,4_0 +1138,2.0,5.0,53.0,111,56,70,0.0,11447,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,844.3409104128508,0.0,0.0,15126.0,1,4,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,10084.0,1,0,1_0,1_0 +1139,0.0,0.0,39.0,211,65,50,0.0,11448,0.0,0.0,0.0,0.0,1.0,6.0,4.0,6.0,3.1,3098.738771988792,2600.0,0.0,28978.0,4,3,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9347.741935483871,1,0,1_1,1_0 +1140,2.0,2.0,27.0,111,84,20,0.0,11449,0.0,99999.0,0.0,428.0,0.0,2.0,0.0,1.0,1.0,3370.0434006627506,0.0,0.0,6624.0,3,3,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,6624.0,1,0,1_1,1_0 +1141,11.0,11.0,39.0,211,62,50,0.0,1145,0.0,0.0,280.0,0.0,1.0,5.0,3.0,5.0,2.4,507.17287376211294,780.0,0.0,33801.0,1,2,2,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,14083.75,2,0,2_0,2_0 +1142,12.0,19.0,63.0,211,75,70,0.0,11450,0.0,0.0,130.0,0.0,0.0,4.0,0.0,1.0,1.0,3185.9761150974855,0.0,0.0,17090.0,5,1,1,3.0,1,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,17090.0,2,0,2_0,2_0 +1143,4.0,16.0,57.0,111,77,50,0.0,11451,0.0,0.0,300.0,98.0,0.0,3.0,0.0,1.0,1.0,3671.3772810445944,0.0,0.0,9084.0,7,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,9084.0,1,0,1_1,1_0 +1144,8.0,10.0,50.0,111,33,20,0.0,11452,0.0,1000.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1140.539709850656,0.0,0.0,49685.0,1,2,8,7.0,2,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,33123.333333333336,5,0,5,5_0 +1145,0.0,10.0,63.0,111,77,60,2.0,11453,0.0,0.0,150.0,355.0,0.0,2.0,0.0,1.0,1.0,4034.457532469084,0.0,500.0,13306.0,5,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,13306.0,1,0,1_0,1_0 +1146,0.0,2.0,50.0,112,46,31,2.0,11454,0.0,1000.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1447.9372570718524,0.0,17500.0,60570.0,1,1,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,26334.782608695656,4,0,4_0,4_1 +1147,5.0,6.0,82.0,221,78,71,0.0,11455,0.0,0.0,150.0,0.0,0.0,3.0,0.0,2.0,1.5,2764.100356435177,0.0,0.0,19672.0,5,1,1,3.0,5,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,13114.666666666666,1,0,1_0,1_0 +1148,0.0,0.0,60.0,111,68,71,0.0,11456,0.0,0.0,0.0,43.0,1.0,4.0,0.0,1.0,1.0,2081.564847615,2085.72,0.0,10642.0,1,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10642.0,1,0,1_1,1_0 +1149,1.0,5.0,82.0,111,78,70,2.0,11457,0.0,0.0,250.0,0.0,0.0,3.0,0.0,1.0,1.0,2542.4795661547,1014.0,15000.0,19745.0,5,1,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19745.0,3,0,3_0,3_0 +1150,18.0,19.0,39.0,300,63,50,0.0,11458,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1730.8332684026996,0.0,0.0,45726.0,1,2,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,17586.923076923078,2,0,2_0,2_0 +1151,16.0,16.0,26.0,111,52,50,0.0,11459,0.0,0.0,0.0,407.0,1.0,2.0,0.0,1.0,1.0,4795.922286637998,0.0,0.0,15859.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15859.0,2,0,2_0,2_0 +1152,0.0,0.0,47.0,111,38,31,0.0,1146,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1953.085871706725,0.0,0.0,74869.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,49912.666666666664,5,0,5,5_0 +1153,0.0,0.0,39.0,111,46,41,0.0,11463,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1391.8879093357064,1560.0,0.0,66525.0,1,2,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,36958.333333333336,5,0,5,5_0 +1154,1.0,17.0,41.0,111,34,0,0.0,11467,0.0,150.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,2246.6774617858523,4732.0,0.0,51041.0,1,4,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18228.928571428572,2,0,2_0,2_0 +1155,4.0,4.0,52.0,300,52,50,0.0,11468,0.0,150.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1457.8197509572542,6916.0,0.0,36190.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24126.666666666668,4,0,4_0,4_1 +1156,4.0,10.0,58.0,112,37,50,0.0,11469,0.0,750.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1760.7052399906809,1851.72,0.0,81612.0,1,1,10,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,40806.0,5,0,5,5_0 +1157,0.0,0.0,63.0,111,78,50,0.0,11470,0.0,0.0,0.0,259.0,0.0,3.0,0.0,1.0,1.0,3327.9297278068216,0.0,0.0,14390.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14390.0,2,0,2_0,2_0 +1158,2.0,32.0,79.0,111,78,70,0.0,11472,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3142.7270712794957,0.0,0.0,15120.0,5,1,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,15120.0,2,0,2_0,2_0 +1159,0.0,6.0,33.0,211,85,60,0.0,11473,0.0,0.0,0.0,18.0,1.0,4.0,0.0,2.0,1.5,3866.779028141451,0.0,0.0,16764.0,8,3,1,2.0,5,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,11176.0,1,0,1_1,1_0 +1160,0.0,0.0,37.0,221,85,50,1.0,11474,0.0,450.0,0.0,60.0,0.0,5.0,2.0,3.0,2.0,527.346956092812,2600.0,18000.0,20926.0,7,3,1,2.0,2,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,10463.0,1,0,1_1,1_0 +1161,11.0,11.0,42.0,111,68,43,0.0,11475,0.0,0.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,3571.923129537866,3120.0,0.0,34385.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17192.5,2,0,2_0,2_0 +1162,1.0,3.0,43.0,111,38,60,2.0,11477,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2376.771829743934,1040.0,17400.0,52749.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,25118.571428571428,4,0,4_0,4_0 +1163,0.0,0.0,31.0,112,47,30,0.0,11478,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,2890.510653421023,0.0,0.0,20855.0,1,3,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20855.0,3,0,3_0,3_0 +1164,2.0,2.0,88.0,111,75,41,0.0,1148,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3411.727574763348,0.0,0.0,43315.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,43315.0,5,0,5,5_0 +1165,2.0,8.0,39.0,111,55,31,0.0,11483,0.0,380.0,0.0,243.0,1.0,5.0,2.0,3.0,1.6,698.5194438936821,0.0,0.0,20505.0,1,3,5,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,12815.625,1,0,1_1,1_0 +1166,2.0,15.0,38.0,112,85,71,0.0,11484,0.0,0.0,80.0,700.0,0.0,5.0,3.0,5.0,2.4,1043.113241403814,1362.4,0.0,39390.0,6,3,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,16412.5,2,0,2_1,2_1 +1167,1.0,1.0,42.0,111,21,31,0.0,11485,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.1,1910.259331878858,0.0,0.0,29952.0,1,2,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,14262.857142857143,2,0,2_0,2_0 +1168,11.0,11.0,53.0,112,63,50,0.0,11487,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1709.9217424530411,6431.879999999999,0.0,73990.0,1,2,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,49326.666666666664,5,0,5,5_1 +1169,11.0,11.0,59.0,221,67,71,0.0,11489,0.0,30.0,0.0,45.0,1.0,2.0,0.0,1.0,1.0,2627.192080262118,2357.68,0.0,11191.0,4,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,11191.0,1,0,1_1,1_0 +1170,0.0,6.0,55.0,112,43,0,2.0,11490,0.0,100.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1970.5387313686047,2080.0,15500.0,72801.0,1,1,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36400.5,5,0,5,5_1 +1171,4.0,4.0,75.0,112,72,50,0.0,11491,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1851.0321952397612,0.0,0.0,25180.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16786.666666666668,2,0,2_0,2_1 +1172,20.0,20.0,61.0,112,78,71,0.0,11492,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3546.066891322128,780.0,0.0,23561.0,5,3,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23561.0,3,0,3_0,3_0 +1173,2.0,2.0,49.0,111,52,41,0.0,11497,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,2029.8181931949987,0.0,0.0,67271.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26908.4,4,0,4_0,4_0 +1174,14.0,14.0,69.0,111,86,41,0.0,11498,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1487.8873825938165,0.0,0.0,44042.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,29361.333333333332,4,0,4_0,4_0 +1175,4.0,10.0,65.0,120,77,71,0.0,11499,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,2219.331958816971,3224.0,0.0,25569.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17046.0,2,0,2_0,2_1 +1176,2.0,2.0,52.0,111,56,50,0.0,115,0.0,850.0,1052.0,0.0,1.0,4.0,1.0,2.0,1.3,714.1756916809048,0.0,0.0,12756.0,4,3,7,6.0,2,4.0,0.0,1.0,0,0,1,0,0,1,3.0,1.0,9812.307692307691,1,0,1_1,1_0 +1177,0.0,0.0,28.0,111,48,50,0.0,1150,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3782.328536553669,4940.0,0.0,36343.0,1,1,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24228.666666666668,4,0,4_0,4_0 +1178,6.0,20.0,33.0,111,63,20,0.0,11500,0.0,0.0,150.0,0.0,2.0,3.0,2.0,4.0,2.1,3962.4620127183557,1560.0,0.0,26470.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,12604.761904761905,1,0,1_1,1_0 +1179,0.0,0.0,51.0,111,37,31,1.0,11501,0.0,0.0,150.0,0.0,1.0,4.0,1.0,2.0,1.5,2535.082740520413,0.0,12000.0,49810.0,1,1,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,33206.666666666664,5,0,5,5_0 +1180,0.0,0.0,70.0,211,75,31,0.0,11503,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,957.0334634175739,0.0,0.0,36907.0,5,1,2,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24604.666666666668,4,0,4_0,4_0 +1181,1.0,9.0,53.0,112,,71,2.0,11505,0.0,300.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2267.0929969705476,0.0,6500.0,8940.0,8,3,8,1.0,1,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,8940.0,1,0,1_1,1_0 +1182,4.0,4.0,35.0,111,63,70,0.0,11506,0.0,0.0,0.0,1.0,1.0,3.0,1.0,2.0,1.3,968.2561433635423,0.0,0.0,18148.0,1,3,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,13960.0,2,0,2_1,2_0 +1183,1.0,11.0,48.0,212,52,30,0.0,11507,0.0,0.0,99999.0,0.0,1.0,9.0,2.0,3.0,1.8,725.1424044630271,0.0,0.0,43850.0,1,2,1,0.0,2,1.0,1.0,1.0,1,0,0,0,0,1,1.0,0.0,24361.11111111111,4,0,4_1,4_1 +1184,2.0,2.0,59.0,111,45,50,0.0,11508,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1998.6720947253327,0.0,0.0,28113.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28113.0,4,0,4_0,4_0 +1185,8.0,13.0,59.0,111,38,31,0.0,1151,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1545.2247861121484,0.0,0.0,63932.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,42621.333333333336,5,0,5,5_0 +1186,3.0,7.0,36.0,111,38,20,0.0,11510,0.0,700.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2371.9549782359204,3016.0,0.0,80634.0,1,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,38397.142857142855,5,0,5,5_0 +1187,0.0,14.0,27.0,211,64,50,0.0,11513,0.0,50.0,300.0,0.0,1.0,3.0,0.0,1.0,1.0,3493.014303891631,0.0,0.0,28094.0,1,2,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28094.0,4,0,4_0,4_0 +1188,0.0,0.0,39.0,112,63,44,0.0,11514,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2140.391513297926,4053.4,0.0,39188.0,1,2,7,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18660.95238095238,2,0,2_0,2_0 +1189,7.0,7.0,25.0,400,43,44,0.0,11515,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4865.247873083666,1856.4,0.0,21028.0,1,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,21028.0,3,0,3_1,3_0 +1190,2.0,9.0,36.0,111,85,50,0.0,11516,0.0,0.0,0.0,0.0,0.0,5.0,2.0,3.0,1.6,730.6931681284863,0.0,0.0,17607.0,6,3,6,4.0,2,1.0,1.0,0.0,0,0,1,0,0,1,0.0,1.0,11004.375,1,0,1_1,1_0 +1191,1.0,2.0,53.0,111,54,50,2.0,11517,0.0,60.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,813.6402352361328,4082.0,11600.0,35117.0,1,1,4,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23411.333333333332,3,0,3_0,3_0 +1192,0.0,0.0,61.0,111,54,42,0.0,11518,0.0,0.0,0.0,570.0,1.0,4.0,0.0,1.0,1.0,2562.8440302962235,2808.52,0.0,18992.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18992.0,3,0,3_0,3_0 +1193,0.0,0.0,32.0,112,85,50,0.0,1152,0.0,0.0,0.0,64.0,0.0,4.0,2.0,3.0,1.6,1424.878700366469,0.0,0.0,18346.0,6,3,8,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11466.25,1,0,1_1,1_0 +1194,0.0,0.0,27.0,112,46,42,0.0,11520,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,4418.094606718698,3328.0,0.0,46872.0,1,2,10,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31248.0,4,0,4_0,4_0 +1195,0.0,0.0,74.0,112,74,30,0.0,11521,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1784.9848658278336,0.0,0.0,40207.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26804.666666666668,4,0,4_0,4_1 +1196,2.0,2.0,35.0,111,52,43,0.0,11522,400.0,500.0,0.0,266.0,1.0,3.0,1.0,2.0,1.3,1074.2116227872532,1571.44,0.0,22888.0,1,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,17606.153846153844,2,0,2_1,2_0 +1197,0.0,0.0,67.0,112,78,70,0.0,11524,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1784.766123685571,1040.0,0.0,29543.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19695.333333333332,3,0,3_0,3_1 +1198,0.0,0.0,52.0,111,48,50,0.0,11525,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2068.685494770761,676.0,0.0,26650.0,1,2,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17766.666666666668,2,0,2_0,2_0 +1199,3.0,5.0,54.0,111,62,50,0.0,11526,0.0,0.0,0.0,423.0,4.0,4.0,2.0,4.0,2.5,1838.6109556367715,3120.0,0.0,70109.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28043.6,4,0,4_0,4_0 +1200,4.0,4.0,64.0,400,33,50,0.0,11527,0.0,400.0,600.0,0.0,2.0,6.0,0.0,2.0,1.5,1568.3808120196722,2496.0,0.0,24268.0,5,1,0,0.0,3,4.0,0.0,1.0,1,0,0,0,0,0,3.0,1.0,16178.666666666666,2,0,2_0,2_1 +1201,1.0,18.0,59.0,300,46,50,2.0,11528,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2647.9859769870427,1560.0,2000.0,102206.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,40882.4,5,0,5,5_1 +1202,1.0,3.0,57.0,111,37,41,2.0,11529,0.0,0.0,50.0,671.0,1.0,3.0,0.0,1.0,1.0,2163.6315445815003,0.0,21200.0,44210.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,44210.0,5,0,5,5_0 +1203,4.0,6.0,82.0,300,78,50,0.0,1153,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2205.6467262696115,2808.52,0.0,17771.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11847.333333333334,1,0,1_0,1_1 +1204,5.0,5.0,50.0,112,62,71,0.0,11530,0.0,0.0,0.0,461.0,2.0,4.0,1.0,2.0,1.5,3193.01626546262,3721.12,0.0,37488.0,1,3,10,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,24992.0,4,0,4_1,4_0 +1205,10.0,10.0,29.0,111,38,12,0.0,11531,0.0,0.0,0.0,570.0,2.0,2.0,0.0,2.0,1.5,3422.224463660273,1676.48,0.0,57851.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,38567.333333333336,5,0,5,5_0 +1206,6.0,13.0,34.0,111,54,31,0.0,11533,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1420.9755533663238,4747.6,0.0,58805.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28002.38095238095,4,0,4_0,4_0 +1207,0.0,0.0,49.0,111,67,50,0.0,11535,0.0,0.0,0.0,615.0,1.0,2.0,0.0,1.0,1.0,5967.35923252851,624.0,0.0,22439.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22439.0,3,0,3_0,3_0 +1208,0.0,13.0,49.0,111,22,31,0.0,11536,0.0,0.0,120.0,854.0,1.0,5.0,1.0,2.0,1.3,604.7022368835704,0.0,0.0,44522.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,34247.692307692305,5,0,5,5_0 +1209,12.0,14.0,29.0,112,47,43,0.0,11538,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2543.618140608171,1560.0,0.0,32219.0,1,2,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21479.333333333332,3,0,3_0,3_0 +1210,2.0,2.0,56.0,400,13,71,0.0,11539,0.0,0.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,1586.9431672522467,0.0,0.0,13164.0,1,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,8776.0,1,0,1_0,1_1 +1211,2.0,7.0,55.0,111,64,50,0.0,1154,0.0,150.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1530.0207457121119,0.0,0.0,36260.0,1,3,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14504.0,2,0,2_1,2_0 +1212,14.0,14.0,81.0,112,71,70,0.0,11541,0.0,200.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2113.7109817957307,2080.0,0.0,13778.0,5,1,4,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13778.0,1,0,1_0,1_1 +1213,3.0,3.0,32.0,221,67,50,0.0,11545,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2599.6110549150753,0.0,0.0,46863.0,1,2,1,2.0,4,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,26035.0,4,0,4_0,4_0 +1214,11.0,12.0,83.0,111,77,60,0.0,11546,0.0,0.0,0.0,500.0,0.0,2.0,0.0,1.0,1.0,3660.3135490454442,0.0,0.0,38048.0,5,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,38048.0,5,0,5,5_0 +1215,0.0,0.0,38.0,111,43,60,0.0,11547,0.0,0.0,0.0,212.0,1.0,3.0,2.0,3.0,1.6,782.6994468074272,0.0,0.0,25170.0,1,3,7,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15731.25,2,0,2_1,2_0 +1216,0.0,3.0,66.0,111,75,60,0.0,11548,0.0,120.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1792.3010748797167,0.0,0.0,62751.0,5,1,10,8.0,3,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,41834.0,5,0,5,5_0 +1217,2.0,12.0,39.0,111,47,31,0.0,11549,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,6333.971555440909,0.0,0.0,56290.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26804.761904761905,4,0,4_0,4_0 +1218,5.0,6.0,80.0,112,75,50,0.0,1155,0.0,600.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2297.15896060553,2236.52,0.0,45040.0,5,3,8,1.0,3,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,30026.666666666668,4,0,4_1,4_0 +1219,1.0,1.0,44.0,211,63,71,0.0,11550,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1027.2301475486947,0.0,0.0,23268.0,4,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,23268.0,3,0,3_1,3_0 +1220,0.0,0.0,62.0,111,43,31,0.0,11551,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2308.448604066965,2860.0,0.0,63730.0,1,1,7,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,42486.666666666664,5,0,5,5_0 +1221,0.0,9.0,53.0,400,56,71,0.0,11553,0.0,0.0,9.0,30.0,1.0,4.0,2.0,3.0,2.0,863.152376180874,1404.0,0.0,21383.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,10691.5,1,0,1_1,1_1 +1222,4.0,7.0,57.0,112,22,31,0.0,11554,0.0,0.0,0.0,0.0,2.0,9.0,2.0,4.0,2.5,1677.7625920556734,0.0,0.0,161404.0,1,1,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,64561.6,5,0,5,5_0 +1223,3.0,3.0,39.0,111,56,71,0.0,11555,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,1221.1139824936927,0.0,0.0,12012.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,6673.333333333333,1,0,1_1,1_0 +1224,4.0,4.0,63.0,111,74,20,0.0,11556,0.0,600.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1906.9183605450698,0.0,0.0,68536.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,45690.666666666664,5,0,5,5_0 +1225,2.0,2.0,60.0,112,45,31,0.0,11557,0.0,350.0,0.0,0.0,4.0,5.0,2.0,4.0,2.5,1272.1864306729951,4992.0,0.0,52818.0,1,1,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21127.2,3,0,3_0,3_0 +1226,0.0,0.0,27.0,111,85,50,0.0,11558,0.0,0.0,0.0,0.0,0.0,2.0,3.0,4.0,1.9,1147.689189308051,1560.0,0.0,12870.0,6,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,6773.684210526316,1,0,1_0,1_0 +1227,2.0,5.0,26.0,120,85,60,0.0,11560,0.0,150.0,0.0,53.0,1.0,4.0,3.0,5.0,2.4,2563.4019113096383,2081.04,0.0,24153.0,6,3,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10063.75,1,0,1_1,1_0 +1228,2.0,6.0,59.0,112,62,50,0.0,11561,0.0,130.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2936.814307312101,2808.0,0.0,61847.0,1,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,41231.333333333336,5,0,5,5_1 +1229,0.0,11.0,23.0,111,84,30,2.0,11562,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,5345.594608003195,0.0,5500.0,19221.0,3,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,19221.0,3,0,3_1,3_0 +1230,10.0,11.0,63.0,300,77,50,0.0,11563,0.0,0.0,0.0,0.0,0.0,6.0,0.0,3.0,1.8,3338.055962485589,3484.0,0.0,31647.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17581.666666666668,2,0,2_0,2_1 +1231,0.0,0.0,59.0,111,64,50,0.0,11564,0.0,0.0,0.0,623.0,1.0,5.0,2.0,3.0,1.8,717.8093887075388,0.0,0.0,22180.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12322.222222222223,1,0,1_0,1_0 +1232,6.0,6.0,56.0,111,52,41,0.0,11566,0.0,350.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1409.9343906510067,0.0,0.0,21142.0,1,4,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21142.0,3,0,3_0,3_0 +1233,13.0,19.0,91.0,111,86,71,0.0,11568,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1416.1461923756146,0.0,0.0,13300.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13300.0,1,0,1_0,1_0 +1234,1.0,6.0,29.0,111,85,50,2.0,11569,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.3,1071.7211177616423,0.0,16500.0,15136.0,7,3,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,11643.076923076922,1,0,1_1,1_0 +1235,1.0,4.0,48.0,120,65,71,2.0,11570,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2537.552458756815,3172.0,7800.0,33170.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16585.0,2,0,2_0,2_1 +1236,15.0,15.0,31.0,111,38,12,0.0,11571,0.0,100.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1833.1791766678302,2634.84,0.0,55413.0,1,2,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,36942.0,5,0,5,5_0 +1237,8.0,8.0,50.0,112,64,71,0.0,11572,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1787.9597701511657,0.0,0.0,39070.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,19535.0,3,0,3_0,3_1 +1238,10.0,10.0,81.0,221,75,31,0.0,11574,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2647.669909313587,0.0,0.0,29578.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19718.666666666668,3,0,3_0,3_0 +1239,16.0,20.0,63.0,111,74,60,0.0,11576,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2403.3461745348795,0.0,0.0,44312.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29541.333333333332,4,0,4_0,4_0 +1240,1.0,10.0,73.0,221,72,71,2.0,11577,0.0,100.0,30.0,0.0,0.0,4.0,0.0,2.0,1.5,1514.4278195403879,1301.56,2300.0,35639.0,5,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,23759.333333333332,3,0,3_0,3_0 +1241,2.0,5.0,34.0,111,63,71,0.0,11578,0.0,50.0,0.0,0.0,1.0,5.0,4.0,6.0,2.9,3389.4257046691014,2171.0,0.0,38612.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13314.48275862069,1,0,1_1,1_0 +1242,1.0,9.0,75.0,112,71,71,2.0,11579,0.0,0.0,190.0,0.0,0.0,3.0,0.0,1.0,1.0,3206.6939563186825,0.0,3000.0,9280.0,5,4,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,9280.0,1,0,1_0,1_1 +1243,4.0,12.0,19.0,111,84,42,0.0,11580,0.0,970.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3454.0293921443217,0.0,0.0,2580.0,3,3,8,7.0,1,4.0,0.0,0.0,0,0,0,1,0,1,0.0,4.0,2580.0,1,0,1_1,1_0 +1244,4.0,7.0,65.0,111,77,50,0.0,11582,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,844.8413496566989,0.0,0.0,20641.0,5,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20641.0,3,0,3_0,3_0 +1245,2.0,12.0,37.0,111,37,0,0.0,11584,0.0,0.0,0.0,750.0,1.0,3.0,1.0,2.0,1.3,860.1898863744741,0.0,0.0,35060.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26969.23076923077,4,0,4_0,4_0 +1246,10.0,10.0,58.0,112,21,50,0.0,11585,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1929.36970706069,0.0,0.0,54672.0,1,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,36448.0,5,0,5,5_0 +1247,0.0,0.0,45.0,300,62,50,0.0,11586,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,2513.147396171318,1274.0,0.0,32188.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13994.782608695654,2,0,2_0,2_1 +1248,0.0,0.0,43.0,111,56,71,0.0,11587,0.0,0.0,0.0,0.0,2.0,1.0,2.0,3.0,1.8,1875.5012005938186,0.0,0.0,12350.0,1,4,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,6861.111111111111,1,0,1_0,1_0 +1249,0.0,0.0,49.0,111,43,41,0.0,11588,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2158.4889216022552,0.0,0.0,66933.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29101.304347826088,4,0,4_0,4_0 +1250,6.0,7.0,72.0,112,74,20,0.0,11591,0.0,250.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4487.341508954506,5010.72,0.0,79469.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,52979.333333333336,5,0,5,5_0 +1251,0.0,0.0,81.0,111,74,41,0.0,11592,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1692.2476315017639,0.0,0.0,75637.0,5,4,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,50424.666666666664,5,0,5,5_0 +1252,1.0,1.0,35.0,112,62,50,0.0,11593,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,2720.857066897835,0.0,0.0,24420.0,1,3,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,11628.571428571428,1,0,1_1,1_0 +1253,10.0,10.0,36.0,300,69,60,0.0,11594,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2527.712846680545,6869.72,0.0,39700.0,1,2,0,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18904.761904761905,3,0,3_0,3_0 +1254,0.0,0.0,48.0,111,35,20,0.0,11595,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2339.8975736798557,0.0,0.0,27050.0,1,2,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27050.0,4,0,4_0,4_0 +1255,0.0,0.0,66.0,112,33,41,1.0,11596,0.0,0.0,50.0,0.0,2.0,7.0,0.0,2.0,1.5,1429.230810409325,3532.88,13450.0,42746.0,5,1,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,28497.333333333332,4,0,4_0,4_1 +1256,5.0,17.0,25.0,111,46,50,0.0,11599,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,823.735993158461,0.0,0.0,29690.0,1,3,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,19793.333333333332,3,0,3_1,3_0 +1257,0.0,0.0,60.0,120,71,50,0.0,116,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1796.199623065384,0.0,0.0,39610.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26406.666666666668,4,0,4_0,4_1 +1258,13.0,22.0,54.0,112,43,33,0.0,1160,0.0,220.0,150.0,474.0,1.0,4.0,0.0,1.0,1.0,1385.6580436539036,0.0,0.0,28892.0,1,3,8,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28892.0,4,0,4_0,4_0 +1259,0.0,0.0,70.0,111,31,12,0.0,11600,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2361.713695064919,0.0,0.0,55200.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,55200.0,5,0,5,5_0 +1260,0.0,0.0,57.0,112,34,30,0.0,11601,0.0,0.0,0.0,0.0,2.0,7.0,0.0,3.0,2.0,3111.6618299499355,2633.7999999999997,0.0,111491.0,1,1,9,2.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,55745.5,5,0,5,5_0 +1261,0.0,0.0,65.0,112,37,10,0.0,11602,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1931.852077534972,670.8000000000001,0.0,109895.0,1,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,73263.33333333333,5,0,5,5_1 +1262,0.0,9.0,75.0,111,75,50,0.0,11606,0.0,0.0,10.0,0.0,0.0,4.0,0.0,2.0,1.5,2237.0268744427317,2964.0,0.0,58589.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,39059.333333333336,5,0,5,5_0 +1263,1.0,4.0,88.0,111,74,70,0.0,11607,0.0,199998.0,0.0,379.0,0.0,1.0,0.0,1.0,1.0,2878.7879201349283,0.0,0.0,32536.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,32536.0,5,0,5,5_0 +1264,0.0,0.0,30.0,111,47,20,0.0,11608,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4128.713037494104,2726.88,0.0,59075.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39383.333333333336,5,0,5,5_0 +1265,14.0,21.0,49.0,112,63,31,0.0,11609,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1528.295508119337,1665.56,0.0,17193.0,1,4,10,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17193.0,2,0,2_0,2_0 +1266,2.0,13.0,45.0,111,46,71,0.0,11610,0.0,150.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1151.3148679439364,2080.0,0.0,11768.0,4,3,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,9052.307692307691,1,0,1_1,1_0 +1267,9.0,16.0,57.0,112,74,60,0.0,11612,0.0,200.0,0.0,817.0,1.0,5.0,0.0,2.0,1.5,1649.3349544705993,2753.92,0.0,62939.0,5,3,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,41959.333333333336,5,0,5,5_0 +1268,0.0,0.0,51.0,111,63,71,0.0,11614,0.0,0.0,0.0,270.0,3.0,4.0,2.0,4.0,2.3,2100.2960658888633,1040.0,0.0,40823.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17749.13043478261,2,0,2_1,2_0 +1269,4.0,7.0,63.0,111,78,50,0.0,11615,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1517.081510626551,0.0,0.0,16020.0,5,2,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16020.0,2,0,2_0,2_0 +1270,16.0,16.0,64.0,112,75,50,0.0,11616,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1299.8286166222153,5521.360000000001,0.0,71719.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,47812.666666666664,5,0,5,5_0 +1271,1.0,1.0,63.0,111,52,71,2.0,11617,0.0,220.0,0.0,500.0,2.0,4.0,0.0,3.0,2.0,5073.780078298813,2600.0,14402.0,37850.0,1,3,9,7.0,5,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,18925.0,3,0,3_0,3_0 +1272,10.0,10.0,57.0,111,46,50,0.0,11618,0.0,0.0,0.0,0.0,2.0,5.0,1.0,2.0,1.5,2061.1419723766744,5703.36,0.0,34084.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22722.666666666668,3,0,3_0,3_0 +1273,2.0,9.0,40.0,111,52,44,0.0,1162,0.0,400.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1713.4104563738465,2652.0,0.0,44567.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,21222.38095238095,3,0,3_0,3_0 +1274,0.0,15.0,61.0,111,33,71,0.0,11620,0.0,0.0,50.0,693.0,2.0,4.0,0.0,2.0,1.5,2797.892121914022,0.0,0.0,86926.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,57950.666666666664,5,0,5,5_0 +1275,0.0,0.0,33.0,111,64,31,0.0,11621,0.0,0.0,0.0,0.0,2.0,1.0,1.0,3.0,1.8,2945.9358710515417,1564.68,0.0,42166.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23425.555555555555,3,0,3_0,3_0 +1276,0.0,0.0,46.0,221,38,20,0.0,11622,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1979.9385090674705,2808.0,0.0,60715.0,1,1,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21683.928571428572,3,0,3_0,3_0 +1277,13.0,13.0,28.0,111,34,10,0.0,11625,0.0,100.0,0.0,900.0,2.0,2.0,0.0,2.0,1.5,5370.3254889634445,0.0,0.0,64100.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,42733.333333333336,5,0,5,5_0 +1278,3.0,3.0,60.0,112,56,70,0.0,11626,0.0,450.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2478.517823404605,2704.0,0.0,42157.0,1,2,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28104.666666666668,4,0,4_0,4_1 +1279,6.0,6.0,57.0,111,65,50,0.0,11627,0.0,0.0,0.0,970.0,2.0,3.0,1.0,3.0,2.0,719.3816024778398,1040.0,0.0,41073.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,20536.5,3,0,3_0,3_0 +1280,0.0,0.0,31.0,111,55,50,0.0,11628,0.0,0.0,0.0,414.0,2.0,4.0,0.0,2.0,1.5,1966.7234457441118,0.0,0.0,26463.0,4,3,7,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17642.0,2,0,2_0,2_0 +1281,11.0,11.0,71.0,111,75,50,0.0,11629,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2829.072757357721,0.0,0.0,37923.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25282.0,4,0,4_0,4_0 +1282,6.0,10.0,77.0,211,77,70,0.0,1163,0.0,1140.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4146.550490511735,0.0,0.0,15010.0,5,1,1,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,15010.0,2,0,2_0,2_0 +1283,0.0,5.0,78.0,111,74,70,0.0,11630,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3286.5180190192964,0.0,0.0,34696.0,5,4,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,34696.0,5,0,5,5_0 +1284,0.0,0.0,44.0,112,65,50,0.0,11631,0.0,0.0,0.0,250.0,1.0,4.0,2.0,4.0,2.3,4745.999149079469,0.0,0.0,32510.0,4,3,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14134.782608695654,2,0,2_1,2_1 +1285,0.0,0.0,32.0,300,63,50,0.0,11633,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2771.1348980402895,1560.0,0.0,32917.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15674.761904761905,2,0,2_0,2_1 +1286,7.0,7.0,41.0,111,56,42,0.0,11634,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,460.4067713299777,87.88000000000001,0.0,12208.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,6782.222222222222,1,0,1_1,1_0 +1287,0.0,0.0,68.0,111,78,70,0.0,11635,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1212.974100592212,0.0,0.0,27070.0,6,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18046.666666666668,2,0,2_0,2_0 +1288,0.0,0.0,72.0,221,71,50,0.0,11636,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2273.467199015603,2080.0,0.0,23550.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15700.0,2,0,2_0,2_0 +1289,4.0,6.0,31.0,111,47,31,0.0,11637,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2832.489580700536,0.0,0.0,21960.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21960.0,3,0,3_0,3_0 +1290,0.0,0.0,69.0,111,75,60,0.0,11638,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2561.969080604218,0.0,0.0,25490.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25490.0,4,0,4_0,4_0 +1291,0.0,0.0,54.0,111,31,10,0.0,11639,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,1052.2429738945016,3176.6800000000003,0.0,69482.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34741.0,5,0,5,5_0 +1292,19.0,19.0,19.0,111,84,41,0.0,1164,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2632.337132845234,0.0,0.0,203.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,203.0,1,0,1_0,1_0 +1293,0.0,0.0,54.0,112,21,60,0.0,11641,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2379.8488268610527,2600.0,0.0,9740.0,1,1,7,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,9740.0,1,0,1_0,1_0 +1294,6.0,6.0,45.0,111,52,43,0.0,11642,0.0,0.0,600.0,39.0,1.0,2.0,1.0,2.0,1.3,2463.919412108091,0.0,0.0,17808.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,13698.461538461537,1,0,1_1,1_0 +1295,0.0,10.0,37.0,221,67,41,0.0,11643,0.0,160.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2541.091122247045,0.0,0.0,51170.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,24366.666666666664,4,0,4_1,4_0 +1296,4.0,6.0,31.0,112,55,43,0.0,11644,0.0,670.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1895.8017069192085,0.0,0.0,46581.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25878.333333333332,4,0,4_0,4_1 +1297,14.0,17.0,20.0,111,84,42,0.0,11647,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3932.1660387602533,0.0,0.0,4848.0,3,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,4848.0,1,0,1_0,1_0 +1298,4.0,4.0,67.0,111,78,71,0.0,1165,0.0,0.0,0.0,25.0,0.0,4.0,0.0,2.0,1.5,2628.9387770421176,0.0,0.0,14882.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9921.333333333334,1,0,1_1,1_0 +1299,1.0,2.0,53.0,112,52,42,2.0,11650,0.0,500.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1800.1548913277784,2236.52,10900.0,55365.0,1,2,9,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27682.5,4,0,4_0,4_0 +1300,0.0,0.0,34.0,111,43,30,0.0,11651,0.0,0.0,0.0,80.0,1.0,3.0,1.0,2.0,1.3,1516.023355172325,0.0,0.0,22400.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,17230.76923076923,2,0,2_1,2_0 +1301,3.0,3.0,40.0,111,38,12,0.0,11652,0.0,0.0,350.0,0.0,2.0,6.0,1.0,3.0,1.8,660.2997874227246,6916.0,0.0,79310.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,44061.11111111111,5,0,5,5_0 +1302,14.0,14.0,29.0,111,56,71,0.0,11654,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1234.4585658433705,0.0,0.0,23060.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,17738.46153846154,2,0,2_1,2_0 +1303,1.0,11.0,37.0,112,47,43,0.0,11655,0.0,0.0,150.0,0.0,2.0,4.0,2.0,4.0,2.1,2855.1908741972225,0.0,0.0,53220.0,1,2,6,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,1.0,2.0,25342.85714285714,4,0,4_0,4_1 +1304,2.0,3.0,47.0,111,38,31,0.0,11658,0.0,0.0,200.0,650.0,2.0,2.0,0.0,2.0,1.5,1929.8247045342537,7949.76,0.0,33646.0,1,3,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,22430.666666666668,3,0,3_0,3_0 +1305,5.0,5.0,52.0,120,67,50,0.0,11660,0.0,20.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2185.5392924098546,780.0,0.0,15040.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,7520.0,1,0,1_0,1_1 +1306,0.0,14.0,39.0,120,37,20,2.0,11661,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2990.0942061520063,0.0,1100.0,73429.0,1,1,0,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,34966.19047619047,5,0,5,5_0 +1307,0.0,0.0,87.0,300,77,70,0.0,11662,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2667.7693072515835,0.0,0.0,24703.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16468.666666666668,2,0,2_0,2_1 +1308,0.0,0.0,72.0,120,71,70,0.0,11665,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1266.2600470410312,3515.2,0.0,26872.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17914.666666666668,2,0,2_0,2_0 +1309,3.0,3.0,34.0,300,67,43,0.0,11666,0.0,0.0,0.0,30.0,2.0,4.0,2.0,4.0,2.1,672.5127226420707,1560.0,0.0,38600.0,1,3,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,18380.95238095238,2,0,2_1,2_1 +1310,0.0,0.0,44.0,111,68,71,0.0,11667,0.0,0.0,0.0,216.0,1.0,3.0,3.0,5.0,2.6,1393.1363921017878,1560.0,0.0,28345.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10901.923076923076,1,0,1_1,1_0 +1311,10.0,10.0,51.0,112,45,41,0.0,11671,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,2212.0803918020706,1562.08,0.0,46035.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25575.0,4,0,4_0,4_1 +1312,0.0,2.0,45.0,112,46,41,0.0,11672,0.0,70.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2043.6192897805,0.0,0.0,118344.0,1,1,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,47337.6,5,0,5,5_0 +1313,3.0,6.0,45.0,300,67,50,0.0,11673,0.0,0.0,40.0,0.0,2.0,5.0,2.0,4.0,2.5,2098.3339049531696,0.0,0.0,42747.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17098.8,2,0,2_0,2_1 +1314,7.0,7.0,70.0,112,71,71,0.0,11675,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1604.9449981973487,0.0,0.0,22884.0,5,1,7,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,15256.0,2,0,2_0,2_1 +1315,1.0,18.0,79.0,111,78,70,2.0,11677,0.0,325.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2362.0671523870087,0.0,1500.0,11524.0,5,3,5,4.0,1,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,11524.0,1,0,1_1,1_0 +1316,0.0,0.0,73.0,112,74,20,0.0,11678,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1710.5031415760288,2080.0,0.0,52543.0,5,4,4,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35028.666666666664,5,0,5,5_1 +1317,3.0,16.0,70.0,112,75,50,0.0,11679,0.0,240.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2679.326692223657,1924.52,0.0,14890.0,5,3,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14890.0,2,0,2_0,2_1 +1318,6.0,6.0,56.0,111,38,30,0.0,1168,0.0,750.0,100.0,0.0,1.0,5.0,0.0,2.0,1.5,1830.5084367534585,0.0,0.0,88554.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,59036.0,5,0,5,5_0 +1319,12.0,12.0,46.0,111,21,41,0.0,11680,0.0,0.0,90.0,0.0,1.0,5.0,4.0,6.0,2.9,1603.6119983227436,2080.0,0.0,24958.0,1,3,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,8606.206896551725,1,0,1_1,1_0 +1320,0.0,0.0,59.0,211,69,71,0.0,11682,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2930.900547316473,0.0,0.0,22480.0,1,1,1,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14986.666666666666,2,0,2_0,2_0 +1321,1.0,1.0,69.0,211,74,50,1.0,11683,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1161.2510157849806,0.0,12000.0,38449.0,5,1,3,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,25632.666666666668,4,0,4_0,4_0 +1322,5.0,22.0,57.0,120,13,50,0.0,11684,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1572.038559295607,1974.9599999999998,0.0,28829.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19219.333333333332,3,0,3_0,3_1 +1323,0.0,24.0,48.0,111,54,50,2.0,11685,0.0,310.0,0.0,390.0,1.0,4.0,2.0,3.0,1.8,1114.0314709965,0.0,5000.0,28953.0,1,3,10,8.0,2,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,16085.0,2,0,2_0,2_0 +1324,5.0,9.0,45.0,112,62,41,0.0,11687,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2285.096890856492,0.0,0.0,18601.0,1,3,8,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18601.0,2,0,2_0,2_0 +1325,9.0,22.0,64.0,112,78,71,0.0,11688,0.0,99999.0,99999.0,384.0,0.0,3.0,0.0,2.0,1.5,2598.069285673522,0.0,0.0,21860.0,5,3,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,14573.333333333334,2,0,2_0,2_0 +1326,1.0,7.0,42.0,111,37,30,2.0,1169,0.0,0.0,0.0,0.0,2.0,9.0,2.0,4.0,2.1,1064.2988743582061,0.0,9900.0,68587.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32660.47619047619,5,0,5,5_0 +1327,0.0,5.0,65.0,111,22,41,0.0,11690,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1698.1405654081675,0.0,0.0,63387.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,42258.0,5,0,5,5_0 +1328,0.0,0.0,48.0,111,55,50,0.0,11691,0.0,0.0,0.0,134.0,2.0,3.0,2.0,3.0,1.8,2820.3172646487037,0.0,0.0,30298.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,16832.222222222223,2,0,2_1,2_0 +1329,5.0,13.0,50.0,111,37,31,0.0,11692,0.0,400.0,0.0,535.0,2.0,4.0,0.0,2.0,1.5,2443.2280552280513,0.0,0.0,57265.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,38176.666666666664,5,0,5,5_0 +1330,2.0,8.0,59.0,111,85,50,0.0,11693,0.0,99999.0,0.0,11.0,1.0,3.0,1.0,2.0,1.5,1699.3613965493296,0.0,0.0,17878.0,7,3,7,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,11918.666666666666,1,0,1_1,1_0 +1331,7.0,15.0,45.0,300,34,20,0.0,11694,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1659.9309104857962,0.0,0.0,36923.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,20512.777777777777,3,0,3_0,3_1 +1332,21.0,21.0,44.0,120,55,71,0.0,11696,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,592.0462400158411,208.0,0.0,21526.0,4,3,0,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,16558.46153846154,2,0,2_1,2_0 +1333,0.0,0.0,37.0,111,38,12,0.0,11698,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2121.5761546247,6219.2,0.0,65683.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31277.619047619046,4,0,4_0,4_0 +1334,11.0,11.0,66.0,211,75,33,0.0,117,0.0,0.0,0.0,470.0,0.0,3.0,0.0,1.0,1.0,4525.742995851306,0.0,0.0,26770.0,5,3,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,26770.0,4,0,4_0,4_0 +1335,0.0,21.0,79.0,111,75,44,0.0,11700,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1908.198211459308,0.0,0.0,48473.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,32315.333333333332,5,0,5,5_0 +1336,16.0,16.0,33.0,111,34,10,0.0,11704,0.0,0.0,0.0,660.0,2.0,4.0,2.0,4.0,2.1,2353.1205163607196,3120.0,0.0,74472.0,1,3,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,35462.857142857145,5,0,5,5_0 +1337,13.0,13.0,45.0,111,65,50,0.0,11706,0.0,0.0,0.0,1042.0,1.0,5.0,1.0,4.0,2.3,1284.746891975362,2394.08,0.0,45981.0,1,3,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,19991.739130434784,3,0,3_1,3_0 +1338,0.0,0.0,45.0,300,56,50,0.0,11707,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1867.5048931961735,2600.0,0.0,31420.0,1,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12568.0,1,0,1_0,1_0 +1339,4.0,4.0,71.0,112,77,41,0.0,11708,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1536.5145573284938,0.0,0.0,33894.0,5,1,9,2.0,3,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,22596.0,3,0,3_0,3_0 +1340,1.0,4.0,40.0,111,63,60,0.0,11709,0.0,120.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2477.1738616468583,1040.0,0.0,28350.0,1,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,17718.75,2,0,2_1,2_0 +1341,0.0,0.0,51.0,112,63,71,0.0,1171,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3081.0957342787024,0.0,0.0,32931.0,4,1,8,2.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21954.0,3,0,3_0,3_0 +1342,0.0,0.0,35.0,111,34,10,0.0,11710,0.0,0.0,0.0,480.0,1.0,3.0,1.0,2.0,1.3,1329.137625943333,0.0,0.0,28953.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22271.53846153846,3,0,3_0,3_0 +1343,8.0,9.0,59.0,112,38,42,0.0,11711,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2420.070577636135,2341.04,0.0,44958.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,29972.0,4,0,4_0,4_1 +1344,6.0,6.0,33.0,111,46,20,0.0,11713,0.0,0.0,99999.0,0.0,2.0,4.0,0.0,2.0,1.5,2149.4127395489563,0.0,0.0,45103.0,4,3,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,30068.666666666668,4,0,4_0,4_0 +1345,7.0,7.0,70.0,111,75,33,0.0,11714,0.0,515.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1707.8966230874805,0.0,0.0,31423.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,31423.0,4,0,4_0,4_0 +1346,3.0,8.0,53.0,111,42,60,0.0,11715,0.0,0.0,0.0,196.0,2.0,3.0,1.0,3.0,1.8,2705.6279508440525,0.0,0.0,25424.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,14124.444444444443,2,0,2_1,2_0 +1347,9.0,9.0,66.0,400,77,70,0.0,11718,0.0,0.0,206.0,0.0,0.0,4.0,0.0,1.0,1.0,2345.621956567979,2081.04,0.0,16471.0,5,3,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,16471.0,2,0,2_0,2_1 +1348,4.0,4.0,49.0,111,54,50,0.0,11719,0.0,2000.0,40.0,0.0,2.0,5.0,2.0,4.0,2.1,1788.1702947573474,3120.0,0.0,52260.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,24885.714285714286,4,0,4_0,4_0 +1349,5.0,5.0,43.0,400,43,33,0.0,1172,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2108.641810901765,1560.0,0.0,63307.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30146.190476190473,4,0,4_0,4_1 +1350,0.0,0.0,86.0,111,75,60,0.0,11722,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3042.571950668014,1924.0,0.0,46766.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31177.333333333332,4,0,4_0,4_0 +1351,3.0,6.0,35.0,112,52,50,0.0,11723,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2583.8665873719597,2881.3199999999997,0.0,46603.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19417.916666666668,3,0,3_0,3_1 +1352,0.0,0.0,89.0,211,74,30,0.0,11724,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2598.9514485223926,0.0,0.0,35470.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23646.666666666668,3,0,3_0,3_0 +1353,13.0,13.0,54.0,221,69,50,0.0,11726,0.0,0.0,360.0,289.0,2.0,3.0,1.0,2.0,1.5,3842.0577950654933,2022.8,0.0,43528.0,1,3,3,4.0,2,3.0,0.0,1.0,0,0,1,0,0,1,3.0,0.0,29018.666666666668,4,0,4_1,4_0 +1354,2.0,2.0,29.0,400,85,50,0.0,11728,0.0,99999.0,0.0,324.0,1.0,3.0,0.0,2.0,1.5,3253.7115343652417,0.0,0.0,38714.0,4,3,0,1.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,25809.333333333332,4,0,4_0,4_0 +1355,7.0,7.0,33.0,112,22,31,0.0,11729,0.0,0.0,99999.0,0.0,2.0,4.0,1.0,3.0,1.8,2575.713125818132,0.0,0.0,69756.0,1,2,10,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,38753.333333333336,5,0,5,5_1 +1356,0.0,0.0,59.0,112,67,50,0.0,1173,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2450.6183915460474,1856.4,0.0,15102.0,1,3,6,2.0,3,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10068.0,1,0,1_1,1_0 +1357,20.0,20.0,53.0,111,65,71,0.0,11730,0.0,0.0,0.0,402.0,3.0,3.0,1.0,3.0,2.0,2934.119229483786,2184.0,0.0,47065.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23532.5,3,0,3_0,3_0 +1358,0.0,0.0,85.0,111,78,70,0.0,11733,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2054.1766514001783,1560.0,0.0,14210.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14210.0,2,0,2_0,2_0 +1359,6.0,16.0,53.0,112,67,50,0.0,1174,0.0,0.0,0.0,359.0,1.0,3.0,1.0,3.0,1.8,2051.7223806632064,2600.52,0.0,33410.0,4,3,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18561.11111111111,2,0,2_0,2_0 +1360,2.0,2.0,60.0,111,46,50,0.0,11740,0.0,0.0,100.0,7.0,1.0,2.0,0.0,1.0,1.0,1773.6576309643547,0.0,0.0,9022.0,4,3,5,4.0,1,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,9022.0,1,0,1_1,1_0 +1361,3.0,3.0,69.0,300,71,70,0.0,11741,0.0,120.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2205.1947529053864,0.0,0.0,12895.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,12895.0,1,0,1_0,1_1 +1362,5.0,5.0,82.0,111,74,12,0.0,11742,0.0,900.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1679.5584951189032,0.0,0.0,121208.0,5,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,80805.33333333333,5,0,5,5_0 +1363,5.0,10.0,56.0,111,46,20,0.0,11743,0.0,10.0,0.0,530.0,1.0,3.0,1.0,2.0,1.5,2856.3499296455466,0.0,0.0,29878.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,19918.666666666668,3,0,3_0,3_0 +1364,5.0,5.0,43.0,111,48,43,0.0,11744,0.0,0.0,0.0,617.0,1.0,3.0,1.0,2.0,1.5,894.7907268999087,0.0,0.0,42238.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28158.666666666668,4,0,4_0,4_0 +1365,0.0,0.0,39.0,120,55,50,0.0,11745,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.6,342.92186405635573,1040.0,0.0,23766.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14853.75,2,0,2_1,2_1 +1366,1.0,12.0,53.0,111,47,31,2.0,11748,0.0,0.0,5.0,0.0,2.0,7.0,2.0,4.0,2.3,1915.6658400347794,3377.4,3000.0,110867.0,1,1,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,48203.04347826087,5,0,5,5_0 +1367,2.0,2.0,29.0,221,67,71,0.0,11749,0.0,0.0,0.0,31.0,1.0,3.0,1.0,2.0,1.3,827.2047971092543,0.0,0.0,15820.0,4,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,12169.23076923077,1,0,1_1,1_0 +1368,2.0,6.0,45.0,300,67,44,0.0,1175,0.0,150.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2662.653107569913,3640.0,0.0,20440.0,1,2,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15723.076923076922,2,0,2_0,2_1 +1369,8.0,8.0,68.0,111,77,42,0.0,11750,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1480.5647856084959,0.0,0.0,32482.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21654.666666666668,3,0,3_0,3_0 +1370,5.0,5.0,70.0,400,75,71,0.0,11751,0.0,50.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2690.0078792252557,358.8,0.0,24201.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16134.0,2,0,2_0,2_1 +1371,4.0,6.0,59.0,211,48,70,0.0,11752,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2944.3136998845753,0.0,0.0,33991.0,1,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22660.666666666668,3,0,3_0,3_0 +1372,6.0,6.0,52.0,111,56,41,0.0,11753,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1596.8500334092982,6188.0,0.0,45700.0,1,1,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22850.0,3,0,3_0,3_0 +1373,2.0,2.0,65.0,111,75,41,0.0,11754,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1519.106283593293,1964.0400000000002,0.0,22456.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14970.666666666666,2,0,2_0,2_0 +1374,7.0,9.0,22.0,111,38,41,0.0,11755,0.0,150.0,25.0,0.0,2.0,3.0,0.0,2.0,1.5,3991.5473475595345,2288.0,0.0,56894.0,1,4,10,8.0,5,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,37929.333333333336,5,0,5,5_0 +1375,0.0,0.0,31.0,112,55,50,1.0,11756,0.0,0.0,0.0,0.0,1.0,3.0,3.0,4.0,1.9,735.5707136303129,1040.0,27500.0,23410.0,4,3,9,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,12321.052631578948,1,0,1_1,1_1 +1376,2.0,2.0,89.0,111,78,70,0.0,11757,0.0,450.0,300.0,196.0,0.0,2.0,0.0,1.0,1.0,5395.75721847579,0.0,0.0,22769.0,5,3,10,8.0,1,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,22769.0,3,0,3_0,3_0 +1377,4.0,13.0,36.0,111,33,12,0.0,11758,0.0,0.0,15.0,371.0,1.0,2.0,0.0,1.0,1.0,3780.052583995559,0.0,0.0,28930.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,28930.0,4,0,4_0,4_0 +1378,0.0,6.0,33.0,111,85,71,0.0,1176,0.0,200.0,0.0,0.0,0.0,4.0,3.0,4.0,2.1,635.8726668636689,2681.12,0.0,27500.0,6,1,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,13095.238095238095,1,0,1_0,1_0 +1379,4.0,10.0,54.0,111,47,42,0.0,11760,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1792.2801223092733,1300.0,0.0,25280.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12640.0,1,0,1_0,1_0 +1380,2.0,2.0,83.0,111,75,71,0.0,11761,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1741.1919155505059,0.0,0.0,35766.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23844.0,4,0,4_0,4_0 +1381,11.0,11.0,66.0,400,75,31,0.0,11762,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1606.7035046184521,1704.56,0.0,27430.0,5,1,0,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,27430.0,4,0,4_0,4_0 +1382,5.0,6.0,65.0,400,77,50,0.0,11763,0.0,240.0,650.0,0.0,0.0,4.0,0.0,2.0,1.5,1780.9949391419102,0.0,0.0,31394.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20929.333333333332,3,0,3_0,3_1 +1383,18.0,18.0,48.0,111,47,50,0.0,11765,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3767.1980303040796,0.0,0.0,13450.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,13450.0,1,0,1_0,1_0 +1384,5.0,6.0,65.0,111,77,42,0.0,11766,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2253.1638318935934,0.0,0.0,16554.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16554.0,2,0,2_0,2_0 +1385,14.0,14.0,58.0,211,56,70,0.0,11767,0.0,50.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2768.484152287927,0.0,0.0,12354.0,1,1,1,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,12354.0,1,0,1_0,1_0 +1386,1.0,3.0,50.0,112,53,60,2.0,11768,0.0,235.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1741.5484893606056,0.0,17300.0,56903.0,1,2,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,37935.333333333336,5,0,5,5_1 +1387,4.0,4.0,59.0,120,74,44,0.0,11769,0.0,99999.0,0.0,0.0,1.0,4.0,2.0,4.0,2.3,2032.580949858586,3865.68,0.0,50942.0,5,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22148.695652173916,3,0,3_0,3_1 +1388,0.0,1.0,90.0,112,86,71,0.0,11772,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1556.514524694655,0.0,0.0,17506.0,5,1,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,17506.0,2,0,2_0,2_1 +1389,6.0,6.0,50.0,221,38,50,0.0,11773,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3865.0360782481507,6936.8,0.0,44528.0,1,1,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,29685.333333333332,4,0,4_0,4_0 +1390,2.0,2.0,29.0,111,56,50,0.0,11775,0.0,0.0,0.0,397.0,2.0,2.0,0.0,2.0,1.5,2642.0005627718015,1040.0,0.0,21588.0,1,3,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,14392.0,2,0,2_1,2_0 +1391,2.0,3.0,50.0,111,31,10,0.0,11776,0.0,0.0,100.0,0.0,1.0,3.0,1.0,2.0,1.5,840.3832270936367,1040.0,0.0,13712.0,4,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,9141.333333333334,1,0,1_1,1_0 +1392,5.0,7.0,72.0,111,75,41,0.0,11777,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2754.2235197512673,0.0,0.0,15799.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15799.0,2,0,2_0,2_0 +1393,11.0,11.0,88.0,300,77,70,0.0,11778,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2799.8791491511556,0.0,0.0,22436.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22436.0,3,0,3_0,3_1 +1394,17.0,17.0,71.0,111,56,70,0.0,11781,0.0,0.0,0.0,472.0,2.0,4.0,1.0,2.0,1.5,2911.07673727539,1040.0,0.0,35161.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23440.666666666668,3,0,3_0,3_0 +1395,4.0,5.0,67.0,111,74,10,0.0,11782,0.0,0.0,50.0,0.0,0.0,9.0,0.0,2.0,1.5,1949.629164022006,2756.0,0.0,68368.0,5,1,5,4.0,3,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,45578.666666666664,5,0,5,5_0 +1396,4.0,4.0,75.0,111,72,30,0.0,11783,0.0,300.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2622.4153556276624,0.0,0.0,33173.0,5,1,8,6.0,3,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,22115.333333333332,3,0,3_0,3_0 +1397,16.0,18.0,53.0,111,52,50,0.0,11785,0.0,390.0,780.0,0.0,2.0,3.0,0.0,2.0,1.5,3354.791345394443,3640.0,0.0,26170.0,1,3,8,7.0,5,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,17446.666666666668,2,0,2_0,2_0 +1398,0.0,10.0,44.0,111,68,71,0.0,11787,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3821.0694434546554,650.0,0.0,14292.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14292.0,2,0,2_0,2_0 +1399,2.0,2.0,40.0,111,81,71,0.0,11789,0.0,0.0,205.0,32.0,1.0,5.0,1.0,3.0,2.0,895.7104339231283,0.0,0.0,25101.0,4,4,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,1,3.0,0.0,12550.5,1,0,1_1,1_0 +1400,0.0,21.0,66.0,111,56,41,0.0,11790,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2516.985288128388,0.0,0.0,35238.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,35238.0,5,0,5,5_0 +1401,2.0,5.0,23.0,111,55,44,0.0,11791,0.0,200.0,150.0,500.0,1.0,3.0,0.0,1.0,1.0,2304.9576641239187,0.0,0.0,16089.0,1,3,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,16089.0,2,0,2_0,2_0 +1402,0.0,0.0,49.0,111,38,31,0.0,11793,0.0,0.0,0.0,908.0,3.0,4.0,2.0,4.0,2.5,4610.412169148974,0.0,0.0,106320.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42528.0,5,0,5,5_0 +1403,10.0,13.0,56.0,111,85,71,0.0,11794,0.0,0.0,0.0,191.0,0.0,3.0,0.0,1.0,1.0,1580.9786038205762,0.0,0.0,11305.0,7,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11305.0,1,0,1_1,1_0 +1404,1.0,4.0,71.0,112,74,70,0.0,11795,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2669.2894108456926,0.0,0.0,37368.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24912.0,4,0,4_0,4_1 +1405,8.0,15.0,66.0,112,77,70,0.0,11796,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2454.720363846409,0.0,0.0,16957.0,5,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16957.0,2,0,2_0,2_1 +1406,4.0,4.0,28.0,112,62,50,0.0,11797,0.0,210.0,2.0,0.0,2.0,4.0,1.0,3.0,1.8,3131.1081448544196,4160.52,0.0,40720.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22622.222222222223,3,0,3_0,3_1 +1407,1.0,4.0,81.0,111,77,44,0.0,11798,0.0,250.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2158.2370932269623,0.0,0.0,18531.0,5,1,7,5.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,18531.0,2,0,2_0,2_0 +1408,5.0,5.0,35.0,111,37,30,0.0,118,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,1588.368633190437,2932.28,0.0,50098.0,1,1,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18554.814814814814,2,0,2_0,2_0 +1409,3.0,4.0,54.0,300,48,50,0.0,1180,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1994.7643063872977,0.0,0.0,59030.0,1,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,39353.333333333336,5,0,5,5_0 +1410,0.0,19.0,42.0,112,54,31,0.0,11800,0.0,0.0,0.0,750.0,1.0,3.0,2.0,3.0,1.6,1034.4235314957914,0.0,0.0,36472.0,1,3,10,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22795.0,3,0,3_0,3_0 +1411,0.0,5.0,18.0,111,84,41,0.0,11801,0.0,100.0,0.0,383.0,0.0,1.0,0.0,1.0,1.0,2968.0442693836108,0.0,0.0,2124.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,2124.0,1,0,1_1,1_0 +1412,7.0,11.0,62.0,111,37,41,0.0,11802,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2306.203734463902,0.0,0.0,51621.0,1,1,10,8.0,1,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,51621.0,5,0,5,5_0 +1413,15.0,20.0,46.0,112,62,50,0.0,11804,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1836.4260060412187,0.0,0.0,52651.0,1,2,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22891.739130434784,3,0,3_0,3_1 +1414,8.0,8.0,60.0,111,78,60,0.0,11806,0.0,750.0,0.0,140.0,0.0,3.0,0.0,1.0,1.0,3477.8041664148623,0.0,0.0,13021.0,7,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13021.0,1,0,1_1,1_0 +1415,7.0,9.0,46.0,111,65,71,0.0,11807,0.0,500.0,0.0,685.0,2.0,3.0,0.0,2.0,1.5,2073.2380466297554,520.0,0.0,47466.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,31644.0,4,0,4_0,4_0 +1416,2.0,2.0,61.0,111,,42,0.0,11809,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1610.4474447907935,2812.1600000000003,0.0,47760.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,31840.0,5,0,5,5_0 +1417,16.0,16.0,77.0,111,77,50,0.0,11811,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2134.4307352123847,0.0,0.0,17530.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17530.0,2,0,2_0,2_0 +1418,0.0,0.0,58.0,300,78,71,0.0,11813,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2290.2464306303823,1282.3200000000002,0.0,12772.0,4,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12772.0,1,0,1_0,1_1 +1419,0.0,0.0,43.0,111,00,20,0.0,11814,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1714.3175198299696,0.0,0.0,67260.0,4,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,44840.0,5,0,5,5_0 +1420,3.0,7.0,44.0,211,54,43,0.0,11815,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,1151.850844264685,0.0,0.0,12272.0,1,3,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,8181.333333333333,1,0,1_1,1_0 +1421,6.0,7.0,40.0,111,45,12,0.0,11816,0.0,200.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,751.6841846341932,2480.92,0.0,31513.0,1,4,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19695.625,3,0,3_0,3_0 +1422,2.0,13.0,36.0,120,62,50,0.0,11818,0.0,350.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2088.518556539422,0.0,0.0,42206.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23447.777777777777,3,0,3_0,3_1 +1423,4.0,11.0,62.0,111,56,50,0.0,11819,0.0,0.0,200.0,68.0,1.0,3.0,0.0,1.0,1.0,2060.6140552426414,0.0,0.0,13428.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,13428.0,1,0,1_1,1_0 +1424,5.0,5.0,43.0,111,37,12,0.0,1182,0.0,30.0,0.0,0.0,1.0,7.0,2.0,3.0,1.6,860.577421045529,0.0,0.0,86000.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,53750.0,5,0,5,5_0 +1425,1.0,13.0,84.0,112,71,71,2.0,11822,0.0,120.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2151.306463177048,0.0,3000.0,10376.0,5,1,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10376.0,1,0,1_0,1_1 +1426,4.0,4.0,60.0,111,62,50,0.0,11823,0.0,900.0,0.0,424.0,1.0,3.0,0.0,2.0,1.5,2296.624349044013,2805.92,0.0,24959.0,4,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,16639.333333333332,2,0,2_0,2_0 +1427,2.0,5.0,52.0,221,64,71,0.0,11824,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2424.7372634657977,0.0,0.0,48244.0,1,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,32162.666666666668,5,0,5,5_0 +1428,0.0,0.0,33.0,300,43,33,0.0,11828,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,2.4,2903.0663913216626,8593.0,0.0,93401.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,38917.083333333336,5,0,5,5_0 +1429,8.0,8.0,70.0,111,74,20,0.0,11829,0.0,0.0,99999.0,0.0,0.0,7.0,0.0,2.0,1.5,1477.6740407125,0.0,0.0,89265.0,5,2,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,59510.0,5,0,5,5_0 +1430,5.0,9.0,40.0,111,46,20,0.0,1183,0.0,0.0,50.0,0.0,1.0,3.0,0.0,1.0,1.0,2962.466802827387,0.0,0.0,28630.0,1,2,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,28630.0,4,0,4_0,4_0 +1431,5.0,5.0,26.0,400,62,31,0.0,11830,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3447.5060795281643,0.0,0.0,32948.0,1,3,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,21965.333333333332,3,0,3_0,3_1 +1432,2.0,10.0,54.0,120,42,31,0.0,11831,0.0,0.0,200.0,0.0,2.0,5.0,1.0,3.0,2.0,1947.060740583964,0.0,0.0,47446.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23723.0,3,0,3_0,3_1 +1433,3.0,3.0,76.0,211,78,71,0.0,11833,0.0,1700.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1936.1262824161395,197.6,0.0,14180.0,5,1,2,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,14180.0,2,0,2_0,2_0 +1434,0.0,0.0,42.0,111,68,71,0.0,11834,0.0,0.0,0.0,38.0,1.0,4.0,3.0,5.0,2.4,4002.963906882796,0.0,0.0,20775.0,4,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8656.25,1,0,1_1,1_0 +1435,0.0,0.0,42.0,111,37,20,0.0,11837,0.0,0.0,0.0,1650.0,2.0,4.0,2.0,4.0,2.1,3809.482895691584,2982.2000000000003,0.0,105142.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,50067.619047619046,5,0,5,5_0 +1436,2.0,2.0,52.0,111,62,71,0.0,11839,0.0,150.0,80.0,0.0,3.0,3.0,2.0,4.0,2.5,1728.2821060769318,0.0,0.0,24353.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,9741.2,1,0,1_0,1_0 +1437,6.0,7.0,38.0,111,53,44,0.0,1184,0.0,450.0,0.0,313.0,2.0,4.0,2.0,4.0,2.1,3613.0846449268956,3952.0,0.0,31201.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,14857.619047619048,2,0,2_1,2_0 +1438,26.0,26.0,67.0,111,75,31,0.0,11840,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1908.1506866752954,0.0,0.0,47607.0,5,1,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,47607.0,5,0,5,5_0 +1439,6.0,19.0,68.0,112,77,70,0.0,11842,0.0,0.0,25.0,0.0,0.0,6.0,1.0,2.0,1.5,2661.4820534059777,0.0,0.0,32633.0,5,1,4,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21755.333333333332,3,0,3_0,3_1 +1440,2.0,11.0,67.0,112,75,33,0.0,11844,0.0,0.0,0.0,573.0,0.0,4.0,0.0,1.0,1.0,2198.3903895372814,1040.0,0.0,24338.0,5,3,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,24338.0,4,0,4_0,4_0 +1441,0.0,0.0,55.0,111,13,44,0.0,11845,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2540.105821011304,0.0,0.0,27148.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27148.0,4,0,4_0,4_0 +1442,11.0,14.0,42.0,112,34,30,0.0,11847,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1930.5435523771607,4992.0,0.0,57947.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24144.583333333336,4,0,4_0,4_1 +1443,0.0,0.0,30.0,112,38,20,0.0,11849,0.0,0.0,0.0,736.0,2.0,3.0,1.0,3.0,1.8,3314.35666846056,0.0,0.0,50223.0,1,3,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27901.666666666664,4,0,4_0,4_0 +1444,9.0,9.0,24.0,111,46,43,0.0,1185,0.0,0.0,0.0,351.0,1.0,3.0,0.0,2.0,1.5,3870.1442447799686,520.0,0.0,13358.0,4,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,8905.333333333334,1,0,1_1,1_0 +1445,16.0,19.0,65.0,112,75,33,0.0,11850,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,1130.286871772044,0.0,0.0,52378.0,5,1,10,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,26189.0,4,0,4_0,4_0 +1446,0.0,0.0,60.0,120,75,41,0.0,11851,0.0,0.0,0.0,425.0,0.0,3.0,0.0,1.0,1.0,3543.6373058870513,0.0,0.0,373.0,7,3,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,373.0,1,0,1_0,1_0 +1447,0.0,4.0,52.0,111,37,12,2.0,11852,0.0,0.0,320.0,0.0,1.0,7.0,2.0,4.0,2.5,1500.101558959089,0.0,6000.0,87496.0,1,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,34998.4,5,0,5,5_0 +1448,3.0,18.0,48.0,111,52,50,0.0,11853,0.0,10.0,0.0,170.0,1.0,6.0,3.0,4.0,2.1,541.4748493836719,1040.0,0.0,31160.0,1,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,14838.095238095237,2,0,2_1,2_0 +1449,9.0,11.0,40.0,111,53,50,0.0,11854,0.0,0.0,500.0,800.0,2.0,4.0,2.0,4.0,2.1,2171.715544171445,2600.0,0.0,39480.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,18800.0,3,0,3_0,3_0 +1450,2.0,3.0,67.0,400,77,71,0.0,11856,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1473.1758073815643,1216.8,0.0,26048.0,5,1,0,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,17365.333333333332,2,0,2_0,2_0 +1451,5.0,20.0,29.0,111,43,30,0.0,11858,0.0,100.0,100.0,512.0,1.0,2.0,0.0,1.0,1.0,3651.684737155977,0.0,0.0,27924.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27924.0,4,0,4_0,4_0 +1452,0.0,0.0,71.0,120,77,71,1.0,11859,290.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1251.6245408113502,3380.0,9947.0,24620.0,5,1,0,3.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,0.0,16413.333333333332,2,0,2_0,2_0 +1453,6.0,15.0,47.0,111,46,71,0.0,1186,0.0,110.0,0.0,374.0,2.0,4.0,3.0,4.0,2.5,806.3964314557735,0.0,0.0,77491.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30996.4,4,0,4_0,4_0 +1454,6.0,6.0,75.0,211,77,50,0.0,11861,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2092.2802455718333,1576.12,0.0,22553.0,5,1,2,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22553.0,3,0,3_0,3_0 +1455,0.0,0.0,26.0,111,43,33,0.0,11862,0.0,0.0,0.0,152.0,1.0,2.0,0.0,1.0,1.0,1764.6393113896397,0.0,0.0,20331.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,20331.0,3,0,3_1,3_0 +1456,4.0,4.0,49.0,111,31,31,0.0,11863,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3009.659119367908,0.0,0.0,34806.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,34806.0,5,0,5,5_0 +1457,4.0,8.0,74.0,300,78,71,0.0,11864,0.0,0.0,290.0,0.0,0.0,7.0,0.0,1.0,1.0,6375.094449048539,0.0,0.0,26504.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26504.0,4,0,4_0,4_1 +1458,4.0,14.0,64.0,111,75,71,0.0,11865,0.0,130.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3482.471921255735,0.0,0.0,37268.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24845.333333333332,4,0,4_0,4_0 +1459,0.0,0.0,26.0,112,42,20,0.0,11866,0.0,0.0,0.0,480.0,2.0,2.0,0.0,2.0,1.5,2820.2959766471217,526.76,0.0,33281.0,1,3,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22187.333333333332,3,0,3_0,3_0 +1460,15.0,15.0,58.0,112,54,41,0.0,11867,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2113.959662838871,0.0,0.0,28059.0,1,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18706.0,2,0,2_0,2_1 +1461,0.0,0.0,27.0,112,53,43,0.0,11868,0.0,0.0,0.0,397.0,2.0,3.0,1.0,3.0,1.8,1016.3472575364161,0.0,0.0,46770.0,1,3,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25983.333333333332,4,0,4_0,4_0 +1462,0.0,0.0,50.0,111,63,71,0.0,11869,0.0,0.0,0.0,335.0,2.0,4.0,1.0,3.0,2.0,1200.452817510203,3640.0,0.0,32024.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16012.0,2,0,2_0,2_0 +1463,0.0,3.0,42.0,112,54,50,0.0,1187,0.0,650.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2115.1053576444438,0.0,0.0,16610.0,1,1,9,3.0,1,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,16610.0,2,0,2_0,2_0 +1464,0.0,12.0,62.0,112,78,70,2.0,11871,0.0,0.0,600.0,704.0,1.0,4.0,1.0,3.0,2.0,2358.0870730949505,0.0,1300.0,71920.0,5,3,10,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,3.0,0.0,35960.0,5,0,5,5_0 +1465,4.0,4.0,33.0,111,52,50,0.0,11872,0.0,120.0,100.0,0.0,2.0,3.0,0.0,2.0,1.5,2838.793860084293,2870.4,0.0,47421.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,31614.0,4,0,4_0,4_0 +1466,7.0,7.0,36.0,120,45,20,0.0,11873,0.0,0.0,245.0,0.0,2.0,8.0,2.0,4.0,2.1,2325.196776783433,0.0,0.0,61393.0,1,2,0,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,29234.761904761905,4,0,4_0,4_0 +1467,0.0,0.0,18.0,111,84,41,0.0,11874,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3375.3487043907044,0.0,0.0,10557.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10557.0,1,0,1_1,1_0 +1468,9.0,9.0,52.0,111,37,31,0.0,11875,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1621.1206788446077,3083.6000000000004,0.0,101842.0,1,2,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,40736.8,5,0,5,5_0 +1469,5.0,13.0,34.0,111,68,71,0.0,11876,0.0,0.0,0.0,0.0,2.0,7.0,4.0,6.0,2.9,1714.1565106292965,6791.2,0.0,38707.0,1,1,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13347.241379310346,1,0,1_0,1_0 +1470,0.0,13.0,38.0,111,46,30,0.0,11878,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1772.5101162522271,0.0,0.0,17823.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17823.0,2,0,2_0,2_0 +1471,5.0,16.0,53.0,111,34,20,0.0,11879,0.0,300.0,200.0,0.0,1.0,3.0,0.0,1.0,1.0,2868.767274791349,1774.2399999999998,0.0,77052.0,1,2,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,77052.0,5,0,5,5_0 +1472,3.0,3.0,91.0,112,78,50,0.0,1188,0.0,800.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3257.1633161737054,0.0,0.0,30512.0,5,1,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20341.333333333332,3,0,3_0,3_0 +1473,0.0,0.0,57.0,111,52,41,0.0,11880,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1424.13267418556,1560.0,0.0,41839.0,1,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27892.666666666668,4,0,4_0,4_0 +1474,8.0,8.0,29.0,111,52,42,0.0,11883,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3488.056840897929,0.0,0.0,30060.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16700.0,2,0,2_0,2_0 +1475,5.0,8.0,44.0,111,52,50,0.0,11884,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1592.9783971343566,0.0,0.0,21471.0,1,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21471.0,3,0,3_0,3_0 +1476,2.0,3.0,59.0,112,75,50,0.0,11885,0.0,0.0,150.0,0.0,1.0,4.0,0.0,2.0,1.5,1961.0837385842387,1228.24,0.0,44343.0,5,1,8,1.0,3,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,29562.0,4,0,4_0,4_0 +1477,7.0,7.0,63.0,211,43,30,0.0,11886,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1244.187481371308,0.0,0.0,35705.0,5,3,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,35705.0,5,0,5,5_0 +1478,0.0,1.0,59.0,111,37,12,1.0,11887,0.0,100.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,3005.101056924753,0.0,31400.0,572804.0,1,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,381869.3333333333,5,0,5,5_0 +1479,6.0,7.0,86.0,111,72,70,0.0,11888,0.0,400.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2536.275483020892,0.0,0.0,19596.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19596.0,3,0,3_0,3_0 +1480,11.0,11.0,85.0,111,86,71,0.0,1189,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,1830.826392674343,0.0,0.0,33540.0,5,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22360.0,3,0,3_0,3_0 +1481,1.0,11.0,51.0,111,85,50,2.0,11891,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3396.6189878814334,1040.0,1000.0,8737.0,4,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,8737.0,1,0,1_1,1_0 +1482,8.0,8.0,60.0,111,52,71,0.0,11892,0.0,0.0,0.0,202.0,1.0,4.0,0.0,2.0,1.5,2668.335805040944,0.0,0.0,16408.0,4,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10938.666666666666,1,0,1_1,1_0 +1483,2.0,5.0,34.0,111,45,31,0.0,11893,0.0,0.0,300.0,400.0,1.0,2.0,0.0,1.0,1.0,2682.185210179056,2964.0,0.0,21653.0,1,3,7,5.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,21653.0,3,0,3_0,3_0 +1484,0.0,0.0,36.0,111,68,50,0.0,11894,0.0,0.0,0.0,620.0,1.0,3.0,1.0,2.0,1.5,1532.5455792409643,0.0,0.0,15194.0,1,3,7,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10129.333333333334,1,0,1_1,1_0 +1485,0.0,0.0,67.0,112,74,60,0.0,11895,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1905.9809662244836,0.0,0.0,45450.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,45450.0,5,0,5,5_0 +1486,2.0,7.0,40.0,111,48,12,0.0,11897,0.0,0.0,0.0,351.0,1.0,3.0,2.0,4.0,2.1,2455.521631425085,0.0,0.0,26146.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12450.47619047619,1,0,1_1,1_0 +1487,4.0,13.0,21.0,111,54,41,0.0,11898,0.0,0.0,0.0,507.0,1.0,2.0,0.0,2.0,1.5,2701.4148096797107,0.0,0.0,11335.0,3,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,7556.666666666667,1,0,1_1,1_0 +1488,0.0,0.0,69.0,111,75,71,0.0,11899,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2005.2242727341015,0.0,0.0,44030.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29353.333333333332,4,0,4_0,4_0 +1489,0.0,0.0,66.0,111,74,60,1.0,119,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2809.405389198291,0.0,30500.0,58479.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,38986.0,5,0,5,5_0 +1490,0.0,0.0,50.0,112,54,42,0.0,1190,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1699.9191181499864,1040.0,0.0,15920.0,1,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15920.0,2,0,2_0,2_1 +1491,2.0,2.0,53.0,111,37,42,0.0,11900,0.0,0.0,0.0,671.0,1.0,4.0,0.0,1.0,1.0,2680.9670103780763,2548.0,0.0,85076.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,85076.0,5,0,5,5_0 +1492,0.0,0.0,46.0,111,46,71,0.0,11901,0.0,0.0,0.0,265.0,1.0,4.0,1.0,2.0,1.5,3909.3291132112663,0.0,0.0,21010.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14006.666666666666,2,0,2_0,2_0 +1493,0.0,0.0,44.0,111,85,50,0.0,11906,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2608.5748290643737,2366.0,0.0,21256.0,8,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21256.0,3,0,3_0,3_0 +1494,0.0,0.0,50.0,111,46,31,0.0,11907,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1903.8228522561815,0.0,0.0,60929.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24371.6,4,0,4_0,4_0 +1495,12.0,12.0,22.0,120,67,50,0.0,11909,0.0,180.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,918.1616935939106,0.0,0.0,39371.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,18748.095238095237,3,0,3_1,3_1 +1496,3.0,11.0,20.0,111,84,41,0.0,1191,0.0,880.0,0.0,185.0,0.0,1.0,0.0,1.0,1.0,2518.6763245618968,0.0,0.0,5872.0,3,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,5872.0,1,0,1_1,1_0 +1497,2.0,6.0,46.0,111,31,30,0.0,11912,0.0,99999.0,0.0,0.0,1.0,8.0,1.0,3.0,2.0,2616.7627292820102,0.0,0.0,128128.0,1,1,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,64064.0,5,0,5,5_0 +1498,0.0,13.0,51.0,111,63,50,0.0,11913,0.0,0.0,150.0,0.0,2.0,5.0,2.0,4.0,2.5,2313.5528436458867,1545.44,0.0,43170.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,17268.0,2,0,2_0,2_0 +1499,0.0,0.0,38.0,111,67,50,0.0,11914,0.0,0.0,0.0,60.0,1.0,5.0,5.0,7.0,3.2,1335.470046182222,0.0,0.0,28638.0,4,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8949.375,1,0,1_1,1_0 +1500,2.0,2.0,42.0,111,33,30,0.0,11915,0.0,580.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,1236.857277534538,5221.84,0.0,40842.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22690.0,3,0,3_0,3_0 +1501,6.0,6.0,47.0,112,55,50,0.0,11916,0.0,0.0,0.0,587.0,2.0,3.0,0.0,2.0,1.5,1798.9280914090016,832.0,0.0,46320.0,1,3,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,30880.0,4,0,4_0,4_0 +1502,7.0,10.0,60.0,112,77,60,0.0,11917,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3171.7257791763695,0.0,0.0,23860.0,5,2,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,15906.666666666666,2,0,2_0,2_1 +1503,0.0,0.0,81.0,111,72,71,0.0,11918,0.0,0.0,0.0,247.0,0.0,1.0,0.0,1.0,1.0,5003.819413085821,0.0,0.0,12764.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12764.0,1,0,1_1,1_0 +1504,0.0,0.0,38.0,111,37,20,0.0,11919,0.0,0.0,0.0,865.0,1.0,3.0,2.0,3.0,1.6,814.5030407289534,0.0,0.0,39257.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24535.625,4,0,4_0,4_0 +1505,0.0,2.0,28.0,111,45,20,2.0,1192,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4228.568475994637,1560.0,26400.0,18271.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18271.0,2,0,2_0,2_0 +1506,0.0,1.0,88.0,112,78,71,2.0,11920,0.0,650.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3322.771400628261,0.0,11000.0,16837.0,5,1,8,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16837.0,2,0,2_0,2_0 +1507,0.0,0.0,50.0,111,31,30,0.0,11921,0.0,0.0,0.0,760.0,1.0,1.0,0.0,1.0,1.0,3989.308902451724,0.0,0.0,25127.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25127.0,4,0,4_0,4_0 +1508,17.0,17.0,40.0,111,65,42,0.0,11922,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2670.6778747599174,3489.2,0.0,19816.0,1,4,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,19816.0,3,0,3_0,3_0 +1509,0.0,0.0,46.0,112,52,71,0.0,11923,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3406.5580393431537,1040.0,0.0,24540.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13633.333333333332,1,0,1_1,1_1 +1510,1.0,2.0,83.0,112,74,60,2.0,11924,0.0,50.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3643.490831622066,0.0,16500.0,23193.0,5,1,10,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23193.0,3,0,3_0,3_0 +1511,7.0,10.0,76.0,400,71,70,0.0,11927,0.0,0.0,25.0,0.0,0.0,4.0,0.0,2.0,1.5,1823.8095630078421,0.0,0.0,32700.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21800.0,3,0,3_0,3_1 +1512,2.0,16.0,28.0,112,63,50,0.0,11928,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3084.2099720422775,1560.0,0.0,29948.0,1,3,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19965.333333333332,3,0,3_0,3_1 +1513,16.0,16.0,42.0,111,68,71,0.0,11929,0.0,0.0,0.0,0.0,1.0,3.0,4.0,6.0,2.7,2903.730312530282,0.0,0.0,30354.0,4,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,11242.22222222222,1,0,1_1,1_0 +1514,14.0,17.0,75.0,111,75,30,0.0,1193,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2584.306262180536,0.0,0.0,11281.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,11281.0,1,0,1_0,1_0 +1515,1.0,10.0,83.0,111,77,41,2.0,11933,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3625.8693130487763,0.0,5000.0,41476.0,5,1,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,41476.0,5,0,5,5_0 +1516,8.0,11.0,34.0,111,85,50,0.0,11935,0.0,0.0,0.0,18.0,0.0,5.0,3.0,4.0,2.5,1091.3263275965235,0.0,0.0,23834.0,7,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9533.6,1,0,1_1,1_0 +1517,0.0,13.0,45.0,111,38,20,0.0,11936,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,1178.7099979148377,0.0,0.0,44605.0,1,2,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,34311.53846153846,5,0,5,5_0 +1518,3.0,18.0,39.0,111,37,20,0.0,11937,0.0,0.0,99999.0,1280.0,2.0,5.0,0.0,2.0,1.5,2748.0287037757066,0.0,0.0,89358.0,1,3,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,59572.0,5,0,5,5_0 +1519,1.0,1.0,52.0,111,63,50,1.0,11938,0.0,250.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2184.09429772083,2496.52,10000.0,23186.0,1,2,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,23186.0,3,0,3_0,3_0 +1520,0.0,0.0,52.0,120,63,70,0.0,1194,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.3,2753.394856527395,0.0,0.0,25890.0,1,2,0,3.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19915.384615384613,3,0,3_0,3_0 +1521,4.0,13.0,42.0,112,43,33,0.0,11941,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2349.897275593397,0.0,0.0,60211.0,1,2,4,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24084.4,4,0,4_0,4_1 +1522,1.0,23.0,49.0,111,63,41,0.0,11942,0.0,0.0,0.0,43.0,1.0,5.0,5.0,7.0,3.4,2860.8598624778315,3066.96,0.0,34084.0,4,3,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10024.70588235294,1,0,1_1,1_0 +1523,9.0,9.0,65.0,111,63,71,0.0,11943,0.0,750.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2521.1902647113225,0.0,0.0,65375.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,32687.5,5,0,5,5_0 +1524,2.0,2.0,73.0,111,78,50,0.0,11945,0.0,60.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2215.9613253737853,2081.04,0.0,22011.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,14674.0,2,0,2_0,2_0 +1525,5.0,12.0,80.0,112,74,50,0.0,11946,0.0,100.0,350.0,0.0,0.0,6.0,0.0,2.0,1.5,1821.6117914861418,0.0,0.0,51107.0,5,1,10,4.0,3,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,34071.333333333336,5,0,5,5_0 +1526,0.0,35.0,51.0,112,21,50,0.0,11947,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1365.9442885055835,3042.0,0.0,35862.0,1,2,10,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,23908.0,4,0,4_0,4_0 +1527,1.0,3.0,39.0,111,22,31,0.0,11948,0.0,50.0,70.0,0.0,2.0,3.0,2.0,4.0,2.1,3229.4992410512996,3126.76,0.0,19022.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,9058.095238095239,1,0,1_1,1_0 +1528,5.0,5.0,52.0,111,69,50,0.0,11949,0.0,0.0,0.0,41.0,1.0,5.0,1.0,2.0,1.5,2519.8859187621933,2080.0,0.0,13282.0,4,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,8854.666666666666,1,0,1_1,1_0 +1529,3.0,4.0,54.0,111,54,60,0.0,1195,0.0,0.0,100.0,0.0,1.0,3.0,0.0,2.0,1.5,2532.9781262316947,0.0,0.0,44858.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,29905.333333333332,4,0,4_0,4_0 +1530,0.0,0.0,55.0,111,78,50,0.0,11952,0.0,0.0,0.0,272.0,0.0,3.0,1.0,2.0,1.5,1312.0421285341013,0.0,0.0,20937.0,5,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13958.0,2,0,2_1,2_0 +1531,8.0,10.0,55.0,112,54,41,0.0,11953,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1941.914488500117,0.0,0.0,64570.0,1,1,7,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,43046.666666666664,5,0,5,5_0 +1532,9.0,9.0,43.0,112,64,50,0.0,11954,0.0,0.0,400.0,0.0,1.0,3.0,0.0,1.0,1.0,4436.056741960456,0.0,0.0,21756.0,1,2,8,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,21756.0,3,0,3_0,3_0 +1533,10.0,15.0,84.0,111,74,60,0.0,11956,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2780.4448205505323,0.0,0.0,34680.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23120.0,3,0,3_0,3_0 +1534,2.0,10.0,67.0,400,72,50,0.0,11958,0.0,178.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2440.87006129073,2693.6,0.0,69642.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,46428.0,5,0,5,5_1 +1535,4.0,4.0,48.0,120,47,31,0.0,11959,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1887.032081341695,3095.56,0.0,54849.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,27424.5,4,0,4_0,4_1 +1536,5.0,8.0,60.0,112,74,42,0.0,11960,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1611.5085123745139,514.8000000000001,0.0,40693.0,5,1,6,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,27128.666666666668,4,0,4_0,4_1 +1537,0.0,0.0,61.0,111,37,20,0.0,11961,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3112.1471863812876,1820.52,0.0,9827.0,4,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,9827.0,1,0,1_0,1_0 +1538,4.0,4.0,30.0,120,52,71,0.0,11963,0.0,255.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,731.3175874501584,2080.0,0.0,25300.0,1,3,0,1.0,2,1.0,1.0,1.0,0,1,0,0,0,1,0.0,1.0,15812.5,2,0,2_1,2_0 +1539,0.0,0.0,27.0,111,47,20,0.0,11964,0.0,0.0,0.0,395.0,1.0,2.0,0.0,1.0,1.0,4570.255451565407,0.0,0.0,26385.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26385.0,4,0,4_0,4_0 +1540,12.0,13.0,47.0,111,43,20,0.0,11965,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1502.4912351972323,1404.0,0.0,44665.0,1,2,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19419.565217391304,3,0,3_0,3_0 +1541,0.0,0.0,23.0,111,84,30,0.0,11966,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3612.0072712887663,0.0,0.0,8642.0,3,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8642.0,1,0,1_0,1_0 +1542,5.0,5.0,58.0,300,78,50,0.0,11967,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1940.9458923179475,2185.56,0.0,30961.0,5,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20640.666666666668,3,0,3_0,3_1 +1543,11.0,13.0,23.0,111,55,42,0.0,11968,0.0,0.0,0.0,390.0,1.0,2.0,0.0,1.0,1.0,2814.1496874454415,2080.0,0.0,15666.0,1,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15666.0,2,0,2_0,2_0 +1544,0.0,0.0,32.0,111,38,12,0.0,11970,0.0,0.0,0.0,780.0,1.0,2.0,1.0,2.0,1.3,1379.6041799353472,4680.0,0.0,49050.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,37730.76923076923,5,0,5,5_0 +1545,1.0,1.0,49.0,300,52,60,1.0,11971,0.0,355.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,1049.8386672191093,0.0,26000.0,17244.0,4,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,13264.615384615385,1,0,1_1,1_1 +1546,3.0,3.0,93.0,111,75,41,0.0,11973,0.0,0.0,100.0,0.0,1.0,4.0,1.0,2.0,1.5,6904.503514885956,0.0,0.0,24629.0,5,1,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,16419.333333333332,2,0,2_0,2_0 +1547,2.0,5.0,66.0,400,34,10,0.0,11974,0.0,1250.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1352.3055178076302,3216.72,0.0,89278.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,59518.666666666664,5,0,5,5_1 +1548,0.0,0.0,67.0,400,77,50,0.0,11975,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,3427.9257318523323,1820.0,0.0,47007.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31338.0,4,0,4_0,4_1 +1549,0.0,0.0,64.0,400,77,70,0.0,11977,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1754.060672450364,0.0,0.0,23030.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23030.0,3,0,3_0,3_1 +1550,1.0,4.0,42.0,111,85,30,2.0,11978,0.0,0.0,0.0,0.0,0.0,7.0,4.0,5.0,2.2,781.8947478848013,3187.6,16500.0,92572.0,6,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,42078.181818181816,5,0,5,5_0 +1551,0.0,1.0,41.0,111,85,12,0.0,11979,0.0,70.0,0.0,39.0,0.0,4.0,3.0,4.0,1.9,560.1768876930628,1834.0400000000002,0.0,28073.0,6,3,6,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,14775.263157894737,2,0,2_1,2_0 +1552,3.0,3.0,55.0,111,67,44,0.0,1198,0.0,0.0,70.0,0.0,1.0,3.0,0.0,1.0,1.0,3888.9821951154613,0.0,0.0,15751.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,15751.0,2,0,2_1,2_0 +1553,11.0,11.0,75.0,111,78,50,0.0,11981,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2544.0843524192437,0.0,0.0,43362.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28908.0,4,0,4_0,4_0 +1554,0.0,0.0,38.0,300,23,44,0.0,11982,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2958.1126579347974,3653.5200000000004,0.0,179572.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,85510.47619047618,5,0,5,5_1 +1555,7.0,11.0,74.0,112,75,31,0.0,11983,0.0,0.0,192.0,0.0,2.0,6.0,3.0,5.0,3.0,3705.190024625745,0.0,0.0,121725.0,5,1,10,2.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,40575.0,5,0,5,5_0 +1556,0.0,0.0,62.0,221,78,71,0.0,11984,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2902.6611641965783,1560.52,0.0,14295.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14295.0,2,0,2_0,2_0 +1557,0.0,0.0,50.0,111,65,50,0.0,11987,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,632.1249926647974,2867.7999999999997,0.0,29484.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29484.0,4,0,4_0,4_0 +1558,1.0,1.0,41.0,400,56,43,1.0,11988,0.0,0.0,150.0,0.0,1.0,4.0,2.0,3.0,1.8,685.5178500456965,2184.0,14000.0,19232.0,1,3,0,1.0,2,1.0,1.0,1.0,0,1,0,0,0,1,1.0,0.0,10684.444444444443,1,0,1_1,1_0 +1559,0.0,0.0,26.0,111,47,31,0.0,11989,0.0,0.0,0.0,480.0,1.0,2.0,0.0,1.0,1.0,3975.988218537444,0.0,0.0,13596.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13596.0,1,0,1_0,1_0 +1560,0.0,0.0,35.0,400,12,31,0.0,1199,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1747.9798627704567,0.0,0.0,57811.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27529.04761904762,4,0,4_0,4_1 +1561,11.0,17.0,47.0,111,38,31,0.0,11990,0.0,250.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2138.050292190659,0.0,0.0,73111.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,48740.666666666664,5,0,5,5_0 +1562,5.0,6.0,54.0,112,65,60,0.0,11992,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2595.789085396679,0.0,0.0,26041.0,1,2,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,26041.0,4,0,4_0,4_0 +1563,0.0,0.0,66.0,111,78,50,0.0,11993,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2476.8453678432297,0.0,0.0,26760.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17840.0,2,0,2_0,2_0 +1564,0.0,0.0,63.0,111,74,31,0.0,11995,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2519.606989348165,4953.52,0.0,91717.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,61144.666666666664,5,0,5,5_0 +1565,1.0,11.0,70.0,300,78,71,2.0,11996,0.0,100.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1970.2335623669858,11977.16,800.0,22470.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14980.0,2,0,2_0,2_1 +1566,9.0,9.0,74.0,300,74,30,0.0,11997,0.0,280.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1836.8591865787475,2615.6,0.0,54059.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36039.333333333336,5,0,5,5_1 +1567,0.0,0.0,61.0,111,62,70,0.0,12,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2461.4647651619143,3045.12,0.0,51184.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25592.0,4,0,4_0,4_0 +1568,2.0,3.0,46.0,111,56,50,0.0,120,0.0,270.0,0.0,363.0,1.0,1.0,0.0,1.0,1.0,2443.7408944133117,0.0,0.0,13544.0,1,3,8,6.0,1,3.0,0.0,1.0,0,0,1,0,0,1,0.0,3.0,13544.0,1,0,1_1,1_0 +1569,9.0,9.0,49.0,211,68,71,0.0,1200,0.0,0.0,0.0,56.0,1.0,2.0,0.0,1.0,1.0,1439.2339837413335,0.0,0.0,9982.0,1,3,2,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,9982.0,1,0,1_1,1_0 +1570,0.0,0.0,46.0,211,52,71,0.0,12002,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,698.5518822182947,0.0,0.0,24905.0,1,2,4,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15565.625,2,0,2_1,2_0 +1571,0.0,0.0,35.0,111,38,12,0.0,12003,0.0,0.0,0.0,200.0,1.0,2.0,0.0,1.0,1.0,4955.208693305772,0.0,0.0,30162.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30162.0,4,0,4_0,4_0 +1572,0.0,0.0,58.0,120,43,50,0.0,12004,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,695.969640129518,1040.0,0.0,22040.0,4,2,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11020.0,1,0,1_1,1_1 +1573,5.0,10.0,20.0,111,55,50,0.0,12005,0.0,0.0,0.0,99.0,1.0,3.0,0.0,1.0,1.0,1372.9044878210564,0.0,0.0,11883.0,4,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11883.0,1,0,1_1,1_0 +1574,0.0,0.0,37.0,111,34,30,0.0,12006,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1997.9454875207139,2496.0,0.0,26610.0,1,3,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17740.0,2,0,2_0,2_0 +1575,8.0,8.0,49.0,111,35,50,0.0,12007,0.0,0.0,85.0,0.0,1.0,4.0,2.0,3.0,1.6,1734.4042999439257,2444.0,0.0,49373.0,4,1,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,30858.125,4,0,4_0,4_0 +1576,1.0,13.0,40.0,111,37,20,2.0,12008,0.0,0.0,100.0,0.0,1.0,6.0,3.0,5.0,2.4,1846.2260208824007,0.0,2000.0,65541.0,1,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,27308.75,4,0,4_0,4_0 +1577,2.0,23.0,46.0,111,37,50,0.0,12009,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,2789.003266993276,2515.76,0.0,96342.0,1,1,9,7.0,4,4.0,0.0,0.0,0,0,0,1,0,0,1.0,3.0,38536.8,5,0,5,5_0 +1578,2.0,2.0,60.0,112,78,71,0.0,1201,0.0,0.0,0.0,429.0,0.0,3.0,0.0,1.0,1.0,4753.341101499035,0.0,0.0,32610.0,5,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,32610.0,5,0,5,5_1 +1579,0.0,0.0,30.0,111,85,60,1.0,12012,0.0,6.0,0.0,0.0,0.0,2.0,1.0,2.0,1.3,2151.028113736343,0.0,17500.0,16558.0,7,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,12736.923076923076,1,0,1_1,1_0 +1580,3.0,3.0,49.0,112,52,42,0.0,12013,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,7875.652103185991,3432.0,0.0,15376.0,1,3,7,0.0,1,2.0,1.0,0.0,1,0,0,0,0,1,0.0,2.0,15376.0,2,0,2_1,2_1 +1581,5.0,7.0,27.0,111,38,30,0.0,12014,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2959.993207525575,2936.96,0.0,35277.0,1,4,4,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,35277.0,5,0,5,5_0 +1582,14.0,19.0,47.0,400,55,50,0.0,12015,0.0,0.0,0.0,0.0,2.0,6.0,2.0,3.0,1.8,547.4354169019882,3120.0,0.0,20539.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11410.555555555555,1,0,1_0,1_1 +1583,0.0,0.0,43.0,111,52,71,0.0,12016,0.0,0.0,0.0,0.0,2.0,4.0,5.0,6.0,3.1,897.7767871598702,0.0,0.0,32701.0,4,3,7,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10548.709677419354,1,0,1_1,1_0 +1584,2.0,4.0,61.0,400,52,70,0.0,12017,0.0,0.0,633.0,0.0,1.0,3.0,0.0,1.0,1.0,2656.4739137245933,4797.0,0.0,14806.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,14806.0,2,0,2_0,2_1 +1585,8.0,8.0,44.0,112,37,20,0.0,12018,0.0,0.0,50.0,0.0,2.0,5.0,2.0,4.0,2.1,189.8662315939369,0.0,0.0,71123.0,1,2,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,33868.09523809524,5,0,5,5_0 +1586,9.0,23.0,43.0,112,85,50,0.0,1202,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,1858.4384235256646,0.0,0.0,49029.0,6,1,10,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23347.142857142855,3,0,3_0,3_0 +1587,0.0,0.0,39.0,112,52,50,0.0,12020,0.0,0.0,0.0,425.0,2.0,4.0,3.0,5.0,2.8,1910.5529419866696,1560.0,0.0,26772.0,1,3,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9561.428571428572,1,0,1_1,1_0 +1588,0.0,0.0,51.0,111,33,20,0.0,12021,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2610.9512821371886,0.0,0.0,45060.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,45060.0,5,0,5,5_0 +1589,0.0,0.0,68.0,112,78,50,0.0,12022,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1774.7561247954548,0.0,0.0,18331.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12220.666666666666,1,0,1_0,1_1 +1590,3.0,15.0,51.0,111,46,60,0.0,12023,0.0,0.0,0.0,538.0,3.0,5.0,2.0,4.0,2.5,3359.3200207973473,0.0,0.0,48366.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19346.4,3,0,3_0,3_0 +1591,0.0,0.0,44.0,120,85,44,0.0,12024,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,633.9275578910663,1820.0,0.0,4451.0,6,1,0,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,3423.846153846154,1,0,1_0,1_0 +1592,0.0,0.0,49.0,111,38,71,0.0,12025,0.0,0.0,0.0,755.0,1.0,3.0,1.0,2.0,1.3,1426.9324925201731,2542.7999999999997,0.0,37801.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29077.692307692305,4,0,4_0,4_0 +1593,0.0,0.0,67.0,300,75,42,0.0,12026,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2057.2735276852572,0.0,0.0,40050.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26700.0,4,0,4_0,4_1 +1594,1.0,1.0,78.0,111,74,12,0.0,12027,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1996.6246413712101,0.0,0.0,35919.0,5,1,7,5.0,3,5.0,0.0,0.0,0,0,1,0,0,0,0.0,5.0,23946.0,4,0,4_0,4_0 +1595,0.0,16.0,63.0,111,78,44,0.0,12029,0.0,80.0,0.0,336.0,0.0,5.0,1.0,4.0,2.5,4745.622174374636,0.0,0.0,57273.0,5,3,10,8.0,5,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,22909.2,3,0,3_0,3_0 +1596,5.0,5.0,68.0,112,71,50,0.0,1203,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1252.9393629569017,1560.0,0.0,20813.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13875.333333333334,1,0,1_0,1_0 +1597,2.0,9.0,62.0,111,75,50,0.0,12032,0.0,560.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1808.60959430124,0.0,0.0,52678.0,5,1,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,35118.666666666664,5,0,5,5_0 +1598,7.0,11.0,58.0,300,69,71,0.0,12033,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1603.9107335192289,2600.0,0.0,29164.0,1,1,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,19442.666666666668,3,0,3_0,3_1 +1599,3.0,9.0,71.0,111,77,70,0.0,12034,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1491.5913281114213,1880.8400000000001,0.0,18954.0,5,1,8,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,18954.0,3,0,3_0,3_0 +1600,4.0,11.0,38.0,112,43,20,0.0,12036,0.0,50.0,60.0,0.0,2.0,7.0,2.0,4.0,2.1,2771.6770574864436,173.68,0.0,51852.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24691.42857142857,4,0,4_0,4_1 +1601,5.0,6.0,81.0,300,72,71,0.0,12037,0.0,320.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2104.9131051660756,2600.0,0.0,22952.0,5,4,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15301.333333333334,2,0,2_0,2_1 +1602,5.0,5.0,42.0,111,46,31,0.0,12038,0.0,650.0,0.0,800.0,1.0,2.0,0.0,1.0,1.0,4899.689014814601,0.0,0.0,40546.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,40546.0,5,0,5,5_0 +1603,0.0,0.0,43.0,111,63,43,0.0,12039,0.0,0.0,0.0,414.0,2.0,4.0,2.0,4.0,2.5,1942.2014184501563,0.0,0.0,34673.0,1,3,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13869.2,1,0,1_0,1_0 +1604,2.0,3.0,37.0,221,22,31,0.0,1204,0.0,300.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,621.1197423211709,0.0,0.0,22120.0,1,3,1,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,9216.666666666668,1,0,1_0,1_0 +1605,1.0,1.0,58.0,112,52,71,1.0,12040,0.0,809.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1418.5554361074544,0.0,18800.0,11781.0,1,4,8,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,11781.0,1,0,1_0,1_1 +1606,4.0,4.0,51.0,111,43,50,0.0,12041,0.0,160.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2105.0146836187455,3372.7200000000003,0.0,46460.0,1,3,7,5.0,3,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,30973.333333333332,4,0,4_0,4_0 +1607,4.0,4.0,59.0,211,68,71,0.0,12042,0.0,0.0,0.0,358.0,2.0,4.0,1.0,2.0,1.5,5025.500626235969,0.0,0.0,18423.0,1,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12282.0,1,0,1_0,1_0 +1608,0.0,0.0,77.0,111,78,70,0.0,12043,0.0,0.0,0.0,347.0,0.0,4.0,0.0,1.0,1.0,5174.285316629702,0.0,0.0,14976.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14976.0,2,0,2_1,2_0 +1609,0.0,0.0,66.0,111,77,50,0.0,12044,0.0,0.0,0.0,283.0,0.0,2.0,0.0,1.0,1.0,2083.2871930589044,0.0,0.0,13256.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13256.0,1,0,1_1,1_0 +1610,0.0,0.0,47.0,111,63,50,0.0,12046,0.0,0.0,0.0,0.0,2.0,5.0,3.0,4.0,2.5,1159.4050408188486,2340.0,0.0,17070.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,6828.0,1,0,1_0,1_0 +1611,9.0,12.0,20.0,111,84,41,0.0,12047,0.0,600.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2851.9676813104757,1821.0400000000002,0.0,2402.0,3,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,2402.0,1,0,1_1,1_0 +1612,4.0,5.0,34.0,111,42,31,0.0,12049,0.0,200.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,3347.641011433004,2600.0,0.0,34261.0,1,2,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22840.666666666668,3,0,3_0,3_0 +1613,0.0,0.0,82.0,111,77,70,0.0,1205,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3075.9420467625346,0.0,0.0,28055.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28055.0,4,0,4_0,4_0 +1614,2.0,2.0,62.0,111,31,20,0.0,12050,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1720.7403583601458,0.0,0.0,61310.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,61310.0,5,0,5,5_0 +1615,2.0,14.0,44.0,120,64,71,0.0,12051,0.0,25.0,70.0,378.0,1.0,2.0,0.0,1.0,1.0,3923.2917451328144,0.0,0.0,26718.0,1,3,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26718.0,4,0,4_0,4_1 +1616,2.0,13.0,33.0,111,85,71,0.0,12053,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,667.8467278361759,0.0,0.0,14202.0,6,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8876.25,1,0,1_1,1_0 +1617,4.0,4.0,79.0,112,77,33,0.0,12054,0.0,0.0,0.0,508.0,0.0,2.0,0.0,2.0,1.5,2093.938781191222,0.0,0.0,44326.0,5,3,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29550.666666666668,4,0,4_0,4_0 +1618,1.0,1.0,25.0,111,56,50,0.0,12056,0.0,170.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2309.315585430308,0.0,0.0,18212.0,4,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,14009.23076923077,2,0,2_1,2_0 +1619,0.0,0.0,52.0,111,46,41,0.0,12057,0.0,0.0,0.0,349.0,1.0,2.0,0.0,1.0,1.0,3200.9438999833383,0.0,0.0,26700.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26700.0,4,0,4_0,4_0 +1620,3.0,11.0,63.0,111,78,71,0.0,12058,0.0,500.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2144.597886424439,0.0,0.0,39614.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,26409.333333333332,4,0,4_0,4_0 +1621,5.0,8.0,56.0,112,38,31,0.0,12059,0.0,150.0,250.0,0.0,2.0,5.0,0.0,2.0,1.5,1426.24765919985,2472.6,0.0,70980.0,1,2,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,47320.0,5,0,5,5_1 +1622,5.0,5.0,71.0,400,56,70,0.0,1206,0.0,0.0,170.0,0.0,1.0,6.0,0.0,2.0,1.5,1779.9591416753422,0.0,0.0,24442.0,1,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,16294.666666666666,2,0,2_0,2_1 +1623,10.0,10.0,29.0,221,62,43,0.0,12061,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4416.578669078964,1679.08,0.0,17561.0,1,3,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17561.0,2,0,2_0,2_0 +1624,13.0,26.0,69.0,111,77,71,0.0,12062,0.0,0.0,0.0,649.0,0.0,1.0,0.0,1.0,1.0,3905.573599333034,0.0,0.0,32790.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,32790.0,5,0,5,5_0 +1625,0.0,0.0,52.0,111,37,31,0.0,12063,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2124.4985518143117,0.0,0.0,16791.0,4,4,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16791.0,2,0,2_0,2_0 +1626,6.0,6.0,46.0,111,85,71,0.0,12064,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,1099.1613629867663,0.0,0.0,13428.0,6,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,8952.0,1,0,1_1,1_0 +1627,0.0,0.0,61.0,221,75,50,0.0,12067,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2446.930383566891,3530.28,0.0,57584.0,5,1,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,38389.333333333336,5,0,5,5_0 +1628,3.0,10.0,66.0,111,75,33,0.0,12068,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2083.819130304693,2372.76,0.0,30784.0,5,4,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30784.0,4,0,4_0,4_0 +1629,10.0,11.0,39.0,400,52,50,0.0,1207,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,2573.2963042125803,3120.0,0.0,47106.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,18842.4,3,0,3_1,3_0 +1630,0.0,21.0,71.0,111,75,33,0.0,12070,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2142.3823268108317,2440.36,0.0,43180.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28786.666666666668,4,0,4_0,4_0 +1631,4.0,6.0,36.0,111,69,60,0.0,12071,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1868.223623230175,0.0,0.0,36970.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,17604.761904761905,2,0,2_0,2_0 +1632,0.0,0.0,57.0,112,52,71,0.0,12072,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2596.578513335828,0.0,0.0,29366.0,1,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19577.333333333332,3,0,3_0,3_1 +1633,3.0,10.0,62.0,211,37,30,0.0,12074,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,1098.2084683264136,0.0,0.0,133530.0,1,4,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,74183.33333333333,5,0,5,5_0 +1634,3.0,3.0,90.0,111,86,70,0.0,12078,0.0,0.0,50.0,0.0,0.0,4.0,0.0,1.0,1.0,1831.9423862233,0.0,0.0,16190.0,6,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,16190.0,2,0,2_0,2_0 +1635,1.0,5.0,84.0,300,71,70,1.0,12079,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2190.9659371662415,2600.0,8000.0,13260.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13260.0,1,0,1_0,1_1 +1636,0.0,0.0,34.0,111,38,30,0.0,1208,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,6015.075845083256,0.0,0.0,37933.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37933.0,5,0,5,5_0 +1637,0.0,0.0,53.0,300,54,31,0.0,12080,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1534.0865793837406,0.0,0.0,5820.0,4,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,5820.0,1,0,1_0,1_1 +1638,0.0,1.0,39.0,111,52,71,0.0,12081,0.0,199998.0,0.0,0.0,1.0,4.0,4.0,5.0,2.6,599.8531031792413,0.0,0.0,35162.0,1,3,10,8.0,2,2.0,1.0,1.0,0,0,0,0,1,1,0.0,2.0,13523.846153846154,1,0,1_1,1_0 +1639,3.0,3.0,88.0,111,77,70,0.0,12082,0.0,100.0,100.0,495.0,0.0,3.0,0.0,1.0,1.0,2931.881905529658,0.0,0.0,24040.0,5,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,24040.0,4,0,4_0,4_0 +1640,6.0,6.0,35.0,111,47,31,0.0,12086,0.0,470.0,0.0,0.0,2.0,5.0,4.0,6.0,3.5,1753.9532331564724,2392.0,0.0,64660.0,1,1,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,18474.285714285714,2,0,2_0,2_0 +1641,0.0,7.0,75.0,112,74,44,2.0,12087,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1581.3981779044648,0.0,7500.0,62033.0,5,2,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,41355.333333333336,5,0,5,5_1 +1642,1.0,12.0,55.0,400,31,10,2.0,12089,0.0,0.0,300.0,0.0,2.0,6.0,2.0,4.0,2.5,1994.407047449044,3654.04,2000.0,313410.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,125364.0,5,0,5,5_1 +1643,0.0,0.0,66.0,111,75,50,0.0,12091,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2371.513650334878,0.0,0.0,28440.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28440.0,4,0,4_0,4_0 +1644,11.0,12.0,79.0,111,86,60,0.0,12092,0.0,300.0,100.0,0.0,0.0,6.0,0.0,1.0,1.0,1197.4245324755545,0.0,0.0,9679.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,9679.0,1,0,1_0,1_0 +1645,3.0,3.0,83.0,111,74,41,0.0,12093,0.0,180.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3077.053931093269,3224.0,0.0,42083.0,5,1,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,42083.0,5,0,5,5_0 +1646,9.0,16.0,67.0,111,77,50,0.0,12094,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,846.8363008862851,3356.08,0.0,36451.0,5,1,4,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24300.666666666668,4,0,4_0,4_0 +1647,2.0,2.0,60.0,112,78,71,0.0,12095,0.0,0.0,225.0,143.0,0.0,2.0,0.0,1.0,1.0,8565.899242514408,0.0,0.0,14954.0,7,3,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,14954.0,2,0,2_1,2_0 +1648,4.0,10.0,50.0,111,37,31,0.0,12097,0.0,199998.0,199998.0,0.0,2.0,8.0,5.0,7.0,3.6,1288.8238444773417,2861.56,0.0,87071.0,1,1,7,6.0,4,4.0,0.0,1.0,0,0,1,0,0,0,2.0,2.0,24186.388888888887,4,0,4_0,4_0 +1649,0.0,17.0,56.0,111,47,41,2.0,12098,0.0,0.0,300.0,0.0,2.0,3.0,0.0,2.0,1.5,1636.9739761147612,0.0,800.0,27540.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,18360.0,2,0,2_0,2_0 +1650,3.0,11.0,68.0,112,78,70,0.0,12099,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2245.9326434464924,0.0,0.0,21755.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14503.333333333334,2,0,2_0,2_0 +1651,3.0,9.0,60.0,112,78,50,0.0,121,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2478.5925457114813,4363.32,0.0,43180.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28786.666666666668,4,0,4_0,4_1 +1652,7.0,7.0,36.0,111,34,20,0.0,1210,0.0,0.0,0.0,340.0,1.0,2.0,0.0,1.0,1.0,3481.9114150657165,0.0,0.0,50197.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,50197.0,5,0,5,5_0 +1653,1.0,1.0,68.0,112,64,50,1.0,12100,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3000.1751935127495,3900.0,12000.0,8955.0,5,1,7,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,8955.0,1,0,1_0,1_1 +1654,0.0,0.0,51.0,111,52,41,0.0,12101,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,910.0442599144872,1300.0,0.0,14226.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9484.0,1,0,1_1,1_0 +1655,5.0,11.0,88.0,112,74,70,0.0,12103,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2284.0374412612014,0.0,0.0,40348.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,26898.666666666668,4,0,4_0,4_0 +1656,8.0,11.0,50.0,112,53,60,0.0,12106,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1767.6780362022475,2381.6,0.0,62016.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24806.4,4,0,4_0,4_1 +1657,5.0,9.0,23.0,111,43,44,0.0,12109,0.0,520.0,0.0,384.0,1.0,3.0,0.0,1.0,1.0,3694.0842613822388,0.0,0.0,17947.0,1,3,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,17947.0,2,0,2_1,2_0 +1658,4.0,4.0,44.0,112,47,31,0.0,1211,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2480.6480152969675,6535.360000000001,0.0,45105.0,1,2,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,30070.0,4,0,4_0,4_0 +1659,0.0,0.0,45.0,111,64,71,0.0,12110,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1534.6949991276954,0.0,0.0,44575.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24763.888888888887,4,0,4_0,4_0 +1660,0.0,0.0,63.0,111,78,70,0.0,12111,0.0,0.0,0.0,315.0,0.0,3.0,0.0,2.0,1.5,2037.6155595524035,0.0,0.0,32078.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21385.333333333332,3,0,3_0,3_0 +1661,0.0,0.0,38.0,111,56,43,0.0,12112,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1819.116192815803,0.0,0.0,39848.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18975.238095238095,3,0,3_0,3_0 +1662,0.0,0.0,46.0,211,43,33,0.0,12113,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,512.9247599797911,7156.24,0.0,39039.0,1,2,2,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18590.0,2,0,2_0,2_0 +1663,0.0,0.0,24.0,112,52,42,0.0,12114,0.0,0.0,0.0,0.0,2.0,4.0,3.0,6.0,2.9,1142.8770554959615,2080.0,0.0,32272.0,1,3,4,0.0,5,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11128.275862068966,1,0,1_1,1_1 +1664,7.0,9.0,56.0,111,47,50,0.0,12115,0.0,0.0,0.0,0.0,2.0,7.0,2.0,5.0,3.0,3503.785051602775,0.0,0.0,87530.0,1,2,8,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29176.666666666668,4,0,4_0,4_0 +1665,1.0,17.0,45.0,111,85,50,0.0,12119,0.0,0.0,0.0,0.0,0.0,7.0,1.0,2.0,1.5,3225.091234740422,0.0,0.0,42460.0,1,2,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,28306.666666666668,4,0,4_0,4_0 +1666,0.0,15.0,84.0,400,71,50,0.0,1212,0.0,120.0,100.0,0.0,0.0,4.0,0.0,1.0,1.0,2326.6426300171047,0.0,0.0,9620.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,9620.0,1,0,1_0,1_1 +1667,2.0,2.0,52.0,120,67,70,0.0,12120,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3465.301712297551,2027.48,0.0,17814.0,1,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17814.0,2,0,2_0,2_1 +1668,7.0,7.0,38.0,111,62,60,0.0,12122,0.0,0.0,0.0,295.0,1.0,2.0,0.0,1.0,1.0,2514.6548775469546,0.0,0.0,14009.0,4,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,14009.0,2,0,2_1,2_0 +1669,18.0,20.0,37.0,112,48,50,0.0,12123,0.0,400.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4816.421630510628,0.0,0.0,58902.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28048.571428571428,4,0,4_0,4_1 +1670,0.0,0.0,72.0,111,78,71,0.0,12125,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1392.3828907429013,0.0,0.0,25188.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16792.0,2,0,2_0,2_0 +1671,4.0,12.0,38.0,111,62,50,0.0,12126,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,614.1738241892683,0.0,0.0,34553.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21595.625,3,0,3_0,3_0 +1672,0.0,16.0,48.0,111,63,50,0.0,12129,0.0,0.0,0.0,309.0,2.0,4.0,3.0,5.0,2.4,1801.2539942789838,0.0,0.0,37830.0,1,3,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,15762.5,2,0,2_1,2_0 +1673,1.0,2.0,40.0,112,46,43,1.0,1213,0.0,0.0,70.0,0.0,1.0,3.0,2.0,3.0,2.0,1324.61400636433,1560.0,10000.0,24595.0,4,2,10,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,12297.5,1,0,1_1,1_0 +1674,0.0,0.0,33.0,111,47,43,0.0,12130,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1868.3630758058841,2600.52,0.0,43822.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20867.619047619046,3,0,3_0,3_0 +1675,0.0,0.0,54.0,300,13,50,0.0,12131,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2090.4745469878394,2600.0,0.0,12470.0,1,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8313.333333333334,1,0,1_0,1_1 +1676,1.0,1.0,46.0,111,21,12,0.0,12132,0.0,600.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,2793.088205587105,1565.2,0.0,23469.0,1,1,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,13038.333333333332,1,0,1_0,1_0 +1677,7.0,14.0,55.0,211,78,60,0.0,12134,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1512.6595073934077,0.0,0.0,47936.0,5,2,2,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19174.4,3,0,3_0,3_0 +1678,0.0,0.0,60.0,120,56,70,0.0,12135,0.0,0.0,0.0,183.0,1.0,3.0,0.0,1.0,1.0,1499.5628385606367,0.0,0.0,6662.0,1,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,6662.0,1,0,1_1,1_0 +1679,0.0,0.0,49.0,221,56,60,0.0,12136,0.0,0.0,0.0,0.0,2.0,7.0,1.0,2.0,1.5,1541.8802523439062,1560.0,0.0,23885.0,1,1,1,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15923.333333333334,2,0,2_0,2_0 +1680,2.0,12.0,41.0,111,47,31,0.0,12138,0.0,0.0,150.0,0.0,2.0,4.0,1.0,3.0,2.0,3167.386555555311,0.0,0.0,57810.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,28905.0,4,0,4_0,4_0 +1681,0.0,0.0,72.0,111,74,12,1.0,12139,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1783.7465580393266,1560.0,25900.0,13617.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,9078.0,1,0,1_0,1_0 +1682,0.0,0.0,70.0,111,77,50,0.0,1214,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,607.4287038289672,0.0,0.0,24790.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24790.0,4,0,4_0,4_0 +1683,17.0,17.0,44.0,111,34,30,0.0,12140,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,1674.1004574357676,3982.16,0.0,55416.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21313.846153846152,3,0,3_0,3_0 +1684,3.0,3.0,51.0,111,85,71,0.0,12141,0.0,70.0,0.0,164.0,0.0,4.0,0.0,1.0,1.0,2005.2609724868028,0.0,0.0,9084.0,8,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9084.0,1,0,1_1,1_0 +1685,0.0,0.0,47.0,111,46,31,0.0,12142,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2297.361139996526,0.0,0.0,37209.0,1,2,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17718.571428571428,2,0,2_0,2_0 +1686,1.0,1.0,62.0,111,78,50,2.0,12143,0.0,200.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1937.3498482966422,2600.0,5000.0,17790.0,5,3,7,5.0,3,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,11860.0,1,0,1_0,1_0 +1687,8.0,12.0,37.0,300,46,31,0.0,12145,0.0,150.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1670.2260280387968,0.0,0.0,25330.0,1,2,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,14072.222222222223,2,0,2_0,2_0 +1688,6.0,6.0,71.0,112,78,70,0.0,12146,0.0,0.0,60.0,0.0,0.0,2.0,0.0,1.0,1.0,3586.97034708826,1068.6000000000001,0.0,21985.0,5,3,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21985.0,3,0,3_0,3_0 +1689,7.0,16.0,70.0,112,75,44,0.0,12147,0.0,330.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,1829.1589240655458,0.0,0.0,21188.0,5,1,8,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21188.0,3,0,3_0,3_1 +1690,2.0,9.0,38.0,111,65,43,0.0,12149,0.0,400.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1014.8933776629663,2860.0,0.0,49877.0,1,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23750.95238095238,3,0,3_0,3_0 +1691,0.0,0.0,62.0,111,74,31,0.0,1215,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1724.4851029103143,3388.84,0.0,77120.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,51413.333333333336,5,0,5,5_0 +1692,0.0,0.0,48.0,300,33,31,0.0,12150,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2241.277654513497,0.0,0.0,46977.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18790.8,3,0,3_0,3_0 +1693,5.0,5.0,45.0,120,43,33,0.0,12151,0.0,180.0,180.0,0.0,2.0,5.0,2.0,4.0,2.3,1838.121628791608,3874.0,0.0,60397.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26259.565217391308,4,0,4_0,4_1 +1694,8.0,23.0,45.0,111,53,31,0.0,12152,0.0,0.0,60.0,210.0,1.0,4.0,4.0,6.0,3.1,2140.167169468846,0.0,0.0,42083.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,13575.16129032258,1,0,1_1,1_0 +1695,5.0,5.0,82.0,400,78,70,0.0,12153,0.0,0.0,0.0,214.0,0.0,2.0,0.0,1.0,1.0,2779.2463074329194,0.0,0.0,13228.0,5,3,0,0.0,1,2.0,1.0,0.0,1,0,0,0,0,1,0.0,2.0,13228.0,1,0,1_1,1_1 +1696,7.0,7.0,40.0,111,56,43,0.0,12155,0.0,99999.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,524.7846236637427,0.0,0.0,16144.0,4,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,8968.888888888889,1,0,1_1,1_0 +1697,3.0,3.0,59.0,111,46,71,0.0,12156,0.0,650.0,0.0,479.0,2.0,3.0,4.0,6.0,3.1,1010.8157559009303,0.0,0.0,50463.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,16278.387096774193,2,0,2_1,2_0 +1698,8.0,16.0,70.0,112,75,50,0.0,12157,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3785.075735372021,1044.68,0.0,24280.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16186.666666666666,2,0,2_0,2_1 +1699,0.0,0.0,79.0,111,75,50,0.0,12158,0.0,0.0,0.0,393.0,0.0,3.0,0.0,1.0,1.0,4352.657398372718,0.0,0.0,32816.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32816.0,5,0,5,5_0 +1700,0.0,11.0,20.0,111,54,42,0.0,1216,0.0,140.0,100.0,0.0,1.0,1.0,0.0,1.0,1.0,4515.018451357805,0.0,0.0,19205.0,1,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,19205.0,3,0,3_1,3_0 +1701,0.0,0.0,53.0,120,56,50,0.0,12160,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1889.6244766588989,2080.0,0.0,11687.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11687.0,1,0,1_0,1_1 +1702,8.0,8.0,49.0,112,63,50,0.0,12161,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,1058.952898640886,0.0,0.0,49797.0,1,2,9,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16599.0,2,0,2_0,2_0 +1703,0.0,0.0,70.0,112,77,60,0.0,12163,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2843.0534675249914,0.0,0.0,38570.0,5,4,8,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25713.333333333332,4,0,4_0,4_0 +1704,3.0,11.0,37.0,111,63,43,0.0,12164,0.0,160.0,0.0,203.0,1.0,2.0,1.0,2.0,1.3,1059.443705900385,0.0,0.0,24007.0,1,3,9,7.0,2,3.0,0.0,0.0,0,0,0,1,0,1,0.0,3.0,18466.923076923078,2,0,2_1,2_0 +1705,15.0,15.0,23.0,111,63,60,0.0,12168,0.0,0.0,0.0,7.0,1.0,3.0,1.0,3.0,1.8,3092.2495611283525,0.0,0.0,16748.0,4,3,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,9304.444444444443,1,0,1_1,1_0 +1706,0.0,4.0,28.0,300,64,71,0.0,12169,0.0,1500.0,0.0,179.0,1.0,5.0,2.0,4.0,2.1,3494.352329394875,1820.0,0.0,34402.0,1,3,0,1.0,4,2.0,1.0,1.0,0,1,0,0,0,1,1.0,1.0,16381.904761904761,2,0,2_1,2_0 +1707,0.0,0.0,49.0,300,54,50,0.0,12170,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1520.6963289429164,0.0,0.0,45348.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22674.0,3,0,3_0,3_1 +1708,2.0,14.0,40.0,211,63,50,0.0,12171,0.0,80.0,0.0,152.0,1.0,4.0,3.0,5.0,2.4,2485.7380381805365,0.0,0.0,25853.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10772.083333333334,1,0,1_1,1_0 +1709,5.0,6.0,29.0,111,55,30,0.0,12172,0.0,0.0,0.0,300.0,1.0,1.0,0.0,1.0,1.0,2324.1568729477476,0.0,0.0,16309.0,1,3,6,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,16309.0,2,0,2_0,2_0 +1710,0.0,0.0,48.0,111,37,12,0.0,12173,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2066.766123483793,3578.12,0.0,67541.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27016.4,4,0,4_0,4_0 +1711,1.0,1.0,67.0,112,74,60,0.0,12174,0.0,200.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1970.3595029487187,2080.0,0.0,33400.0,5,1,9,2.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,33400.0,5,0,5,5_0 +1712,7.0,9.0,60.0,120,78,71,0.0,12175,0.0,215.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2526.1056244187944,0.0,0.0,14790.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,9860.0,1,0,1_0,1_1 +1713,0.0,0.0,35.0,111,47,71,0.0,12176,0.0,0.0,0.0,315.0,2.0,5.0,4.0,6.0,2.7,2680.312800800569,0.0,0.0,40128.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14862.22222222222,2,0,2_1,2_0 +1714,1.0,4.0,81.0,111,74,41,2.0,12177,0.0,100.0,190.0,635.0,0.0,4.0,0.0,2.0,1.5,1697.5013283272224,0.0,5500.0,62038.0,5,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,41358.666666666664,5,0,5,5_0 +1715,4.0,4.0,41.0,111,55,42,0.0,12178,0.0,99999.0,0.0,248.0,1.0,3.0,2.0,3.0,1.6,730.3918646876635,2348.32,0.0,29820.0,4,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,18637.5,2,0,2_1,2_0 +1716,0.0,0.0,59.0,111,56,31,0.0,1218,0.0,0.0,0.0,629.0,2.0,3.0,1.0,2.0,1.5,3089.9208946019694,2618.72,0.0,28960.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19306.666666666668,3,0,3_0,3_0 +1717,9.0,10.0,23.0,111,55,31,0.0,12180,0.0,270.0,0.0,128.0,1.0,2.0,0.0,1.0,1.0,2638.4135831817366,0.0,0.0,9148.0,2,3,7,6.0,1,2.0,1.0,1.0,0,0,1,0,0,1,0.0,2.0,9148.0,1,0,1_1,1_0 +1718,8.0,8.0,50.0,120,37,41,0.0,12183,0.0,0.0,99999.0,0.0,1.0,5.0,1.0,2.0,1.5,1545.0775229041542,1560.52,0.0,93018.0,1,3,0,0.0,2,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,62012.0,5,0,5,5_1 +1719,0.0,0.0,32.0,111,33,31,0.0,12187,0.0,0.0,0.0,657.0,2.0,3.0,1.0,3.0,1.8,2361.158232553336,0.0,0.0,40706.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22614.444444444445,3,0,3_0,3_0 +1720,0.0,0.0,37.0,111,37,20,0.0,12189,0.0,0.0,0.0,720.0,1.0,3.0,1.0,3.0,1.8,755.8457702996251,0.0,0.0,38964.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21646.666666666668,3,0,3_0,3_0 +1721,19.0,19.0,28.0,112,62,43,0.0,1219,0.0,0.0,120.0,0.0,2.0,4.0,1.0,3.0,1.8,2815.65221153074,0.0,0.0,32318.0,4,3,8,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,2.0,0.0,17954.444444444445,2,0,2_1,2_0 +1722,3.0,13.0,49.0,111,23,31,0.0,12190,0.0,0.0,150.0,0.0,2.0,6.0,2.0,4.0,2.3,3139.47030662645,3276.0,0.0,90193.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,39214.34782608696,5,0,5,5_0 +1723,19.0,19.0,68.0,111,75,44,0.0,12191,0.0,99999.0,0.0,460.0,0.0,2.0,0.0,1.0,1.0,3204.918144131921,0.0,0.0,28153.0,5,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28153.0,4,0,4_0,4_0 +1724,0.0,0.0,68.0,300,78,50,0.0,12193,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1668.9124916547187,780.52,0.0,22289.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14859.333333333334,2,0,2_0,2_1 +1725,8.0,8.0,46.0,111,85,71,0.0,12195,0.0,0.0,0.0,130.0,0.0,3.0,0.0,1.0,1.0,944.3118675288058,0.0,0.0,15924.0,7,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,15924.0,2,0,2_1,2_0 +1726,2.0,2.0,56.0,111,38,10,0.0,12196,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3015.952883833144,2858.96,0.0,130797.0,1,1,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,87198.0,5,0,5,5_0 +1727,6.0,6.0,35.0,111,52,43,0.0,12197,0.0,102.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1195.9271346889666,0.0,0.0,14076.0,4,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,10827.692307692307,1,0,1_1,1_0 +1728,0.0,0.0,55.0,300,37,60,0.0,12198,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2513.476210791048,3827.2,0.0,2820.0,4,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,1880.0,1,0,1_0,1_1 +1729,0.0,0.0,72.0,120,74,31,0.0,12200,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1251.2397910801392,2971.8,0.0,71319.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,47546.0,5,0,5,5_0 +1730,30.0,30.0,84.0,300,71,70,0.0,12201,0.0,540.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1726.966565597382,2600.0,0.0,20730.0,5,3,0,0.0,3,5.0,0.0,0.0,1,0,0,0,0,0,3.0,2.0,13820.0,1,0,1_0,1_1 +1731,0.0,0.0,73.0,112,74,10,0.0,12203,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2002.7821818353675,5304.0,0.0,106048.0,5,2,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,70698.66666666667,5,0,5,5_1 +1732,0.0,6.0,33.0,111,46,20,2.0,12205,0.0,500.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1882.233333939569,0.0,8000.0,32858.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,20536.25,3,0,3_0,3_0 +1733,2.0,16.0,67.0,112,56,50,0.0,12206,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1910.5035273470644,2910.44,0.0,12291.0,1,1,7,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12291.0,1,0,1_0,1_1 +1734,0.0,0.0,32.0,111,56,71,0.0,12207,0.0,0.0,0.0,38.0,1.0,4.0,2.0,3.0,1.6,641.6677241943141,1300.0,0.0,22156.0,1,3,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13847.5,1,0,1_1,1_0 +1735,9.0,12.0,53.0,112,37,30,0.0,12208,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1917.9798191795808,0.0,0.0,25025.0,1,2,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16683.333333333332,2,0,2_0,2_1 +1736,2.0,11.0,21.0,111,84,30,0.0,12209,0.0,0.0,40.0,0.0,0.0,1.0,0.0,1.0,1.0,3342.5903696983946,0.0,0.0,7087.0,3,3,9,7.0,1,2.0,1.0,0.0,0,0,0,1,0,1,1.0,1.0,7087.0,1,0,1_1,1_0 +1737,7.0,12.0,53.0,111,52,50,0.0,1221,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2452.208476315171,0.0,0.0,25680.0,1,1,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,25680.0,4,0,4_0,4_0 +1738,8.0,8.0,48.0,112,63,44,0.0,12210,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,2156.6843317716616,0.0,0.0,41962.0,1,2,8,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18244.34782608696,2,0,2_0,2_0 +1739,1.0,12.0,42.0,111,21,50,0.0,12212,0.0,0.0,0.0,246.0,1.0,4.0,2.0,3.0,1.8,858.1128794899774,0.0,0.0,17174.0,1,3,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,9541.111111111111,1,0,1_1,1_0 +1740,8.0,15.0,34.0,112,55,43,0.0,12213,0.0,0.0,0.0,112.0,1.0,3.0,2.0,3.0,1.6,692.8898403526008,0.0,0.0,24810.0,4,3,10,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,15506.25,2,0,2_1,2_0 +1741,8.0,18.0,51.0,111,63,31,0.0,12214,0.0,42.0,48.0,611.0,1.0,3.0,3.0,4.0,2.5,974.1516202923862,0.0,0.0,26465.0,4,3,9,7.0,2,3.0,0.0,0.0,0,0,0,1,0,1,1.0,2.0,10586.0,1,0,1_1,1_0 +1742,0.0,0.0,29.0,120,43,33,0.0,12215,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2477.0221036450944,2085.2000000000003,0.0,47311.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22529.04761904762,3,0,3_0,3_1 +1743,3.0,14.0,36.0,221,21,44,0.0,12216,0.0,0.0,20.0,0.0,2.0,6.0,2.0,4.0,2.1,2456.3810313114122,0.0,0.0,30230.0,1,2,3,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,14395.238095238095,2,0,2_0,2_0 +1744,4.0,4.0,43.0,400,21,31,0.0,12217,0.0,300.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,2032.6830648534574,3172.0,0.0,27387.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,9781.07142857143,1,0,1_0,1_1 +1745,9.0,9.0,48.0,112,31,20,0.0,12219,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1708.6605895969376,0.0,0.0,29645.0,1,1,5,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,29645.0,4,0,4_0,4_1 +1746,4.0,4.0,42.0,112,68,50,0.0,12220,0.0,0.0,0.0,440.0,2.0,3.0,1.0,3.0,1.8,2453.210645568296,0.0,0.0,35314.0,1,3,6,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19618.888888888887,3,0,3_0,3_0 +1747,11.0,14.0,47.0,400,11,50,0.0,12221,0.0,590.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3079.8004320588943,2485.6,0.0,12978.0,1,4,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,12978.0,1,0,1_0,1_1 +1748,2.0,8.0,87.0,111,75,70,0.0,12222,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1845.054809614611,0.0,0.0,24490.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16326.666666666666,2,0,2_0,2_0 +1749,27.0,27.0,55.0,111,37,42,0.0,12223,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3680.652600908933,2416.44,0.0,58076.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38717.333333333336,5,0,5,5_0 +1750,5.0,14.0,22.0,111,52,42,0.0,12224,0.0,0.0,0.0,540.0,1.0,1.0,0.0,1.0,1.0,6347.308771172601,0.0,0.0,9372.0,3,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,9372.0,1,0,1_1,1_0 +1751,20.0,22.0,25.0,111,43,30,0.0,12225,0.0,150.0,0.0,345.0,1.0,2.0,0.0,1.0,1.0,3145.243716218716,0.0,0.0,25168.0,1,3,6,4.0,1,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,25168.0,4,0,4_0,4_0 +1752,2.0,13.0,43.0,111,31,30,0.0,12226,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,937.029107915648,0.0,0.0,36272.0,1,2,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,27901.53846153846,4,0,4_0,4_0 +1753,11.0,11.0,50.0,111,55,71,0.0,12227,0.0,99999.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1251.9672795112951,0.0,0.0,15804.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,10536.0,1,0,1_1,1_0 +1754,14.0,14.0,55.0,111,52,33,0.0,12229,0.0,0.0,0.0,490.0,2.0,3.0,0.0,2.0,1.5,2475.8284307328877,2847.0,0.0,37913.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25275.333333333332,4,0,4_0,4_0 +1755,7.0,10.0,65.0,111,77,50,0.0,1223,0.0,250.0,0.0,51.0,0.0,2.0,0.0,1.0,1.0,3048.3762197971046,0.0,0.0,13424.0,5,3,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,13424.0,1,0,1_1,1_0 +1756,0.0,0.0,55.0,400,67,71,0.0,12230,0.0,0.0,0.0,334.0,2.0,4.0,3.0,5.0,2.8,1996.9169622388144,2080.0,0.0,47131.0,1,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16832.5,2,0,2_0,2_0 +1757,12.0,12.0,78.0,111,74,60,0.0,12231,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1605.7550317783523,5894.200000000001,0.0,51999.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,34666.0,5,0,5,5_0 +1758,6.0,6.0,54.0,111,77,50,0.0,12232,0.0,400.0,100.0,450.0,1.0,3.0,0.0,2.0,1.5,2257.868418625566,0.0,0.0,18198.0,7,3,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,12132.0,1,0,1_0,1_0 +1759,0.0,14.0,67.0,120,78,70,0.0,12233,0.0,300.0,150.0,0.0,0.0,3.0,0.0,2.0,1.5,1781.7068921725702,0.0,0.0,23263.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15508.666666666666,2,0,2_0,2_1 +1760,0.0,0.0,53.0,111,33,41,0.0,12234,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2022.1401651914641,2587.0,0.0,37335.0,1,1,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24890.0,4,0,4_0,4_0 +1761,1.0,1.0,76.0,111,77,50,0.0,12235,0.0,0.0,0.0,108.0,1.0,4.0,1.0,2.0,1.5,2229.561739468717,1040.52,0.0,36780.0,5,3,6,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,24520.0,4,0,4_1,4_0 +1762,0.0,0.0,72.0,111,77,60,0.0,12236,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1739.047965877697,0.0,0.0,13440.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13440.0,1,0,1_0,1_0 +1763,0.0,0.0,53.0,300,69,71,0.0,12237,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3050.7592510947843,0.0,0.0,8700.0,4,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8700.0,1,0,1_1,1_1 +1764,1.0,4.0,58.0,221,47,50,0.0,1224,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,3776.7780411351405,2600.0,0.0,23358.0,1,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23358.0,3,0,3_0,3_0 +1765,0.0,0.0,84.0,111,77,41,0.0,12240,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3569.94667745414,0.0,0.0,22362.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22362.0,3,0,3_0,3_0 +1766,0.0,0.0,77.0,300,78,71,0.0,12241,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1780.3725145271378,1872.52,0.0,35441.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23627.333333333332,3,0,3_0,3_1 +1767,2.0,2.0,26.0,111,53,43,0.0,12242,0.0,99999.0,0.0,580.0,1.0,2.0,0.0,2.0,1.5,4495.75393655268,780.0,0.0,28468.0,1,3,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,18978.666666666668,3,0,3_0,3_0 +1768,1.0,13.0,87.0,211,77,70,0.0,12243,0.0,0.0,200.0,0.0,0.0,3.0,0.0,1.0,1.0,2772.8795182298804,0.0,0.0,15654.0,5,3,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,15654.0,2,0,2_1,2_0 +1769,0.0,0.0,68.0,111,78,71,0.0,12244,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1238.1032936992092,0.0,0.0,44360.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29573.333333333332,4,0,4_0,4_0 +1770,0.0,0.0,28.0,111,34,41,0.0,12245,0.0,0.0,0.0,900.0,2.0,2.0,0.0,2.0,1.5,4582.903146650859,0.0,0.0,68414.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,45609.333333333336,5,0,5,5_0 +1771,0.0,0.0,70.0,111,78,70,0.0,12246,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2025.4414113607893,0.0,0.0,19070.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19070.0,3,0,3_0,3_0 +1772,11.0,11.0,54.0,111,46,50,0.0,12248,0.0,0.0,0.0,235.0,1.0,2.0,0.0,1.0,1.0,2458.0440291442496,0.0,0.0,24679.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24679.0,4,0,4_0,4_0 +1773,1.0,7.0,61.0,111,37,31,2.0,12249,0.0,1062.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1560.9289111877981,0.0,7000.0,131179.0,1,4,5,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,65589.5,5,0,5,5_0 +1774,0.0,0.0,49.0,300,52,41,0.0,1225,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3541.636243736888,0.0,0.0,24015.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24015.0,4,0,4_0,4_1 +1775,3.0,4.0,45.0,112,21,43,0.0,12250,0.0,550.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,2369.0576376400736,0.0,0.0,57073.0,1,2,5,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19024.333333333332,3,0,3_0,3_1 +1776,0.0,0.0,44.0,111,37,20,0.0,12253,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1913.7255042295365,0.0,0.0,67562.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32172.38095238095,5,0,5,5_0 +1777,0.0,0.0,35.0,221,55,71,0.0,12255,0.0,0.0,0.0,234.0,1.0,5.0,0.0,1.0,1.0,1925.643198688874,0.0,0.0,8893.0,4,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8893.0,1,0,1_1,1_0 +1778,0.0,0.0,30.0,112,46,30,0.0,12256,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2882.0821956198843,4940.0,0.0,63147.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35081.666666666664,5,0,5,5_1 +1779,6.0,6.0,35.0,111,63,50,0.0,12257,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2634.3046418994454,0.0,0.0,20957.0,1,2,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20957.0,3,0,3_0,3_0 +1780,7.0,7.0,30.0,111,62,50,0.0,12258,0.0,0.0,0.0,277.0,2.0,4.0,3.0,5.0,2.4,2325.5430680177174,1300.0,0.0,34018.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14174.166666666668,2,0,2_1,2_0 +1781,0.0,0.0,71.0,300,78,60,0.0,12259,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2463.922136933563,0.0,0.0,15313.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15313.0,2,0,2_0,2_1 +1782,0.0,0.0,86.0,111,75,71,0.0,1226,0.0,0.0,0.0,64.0,0.0,2.0,0.0,1.0,1.0,4136.235589702767,0.0,0.0,12512.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12512.0,1,0,1_1,1_0 +1783,3.0,10.0,68.0,221,77,70,0.0,12260,0.0,0.0,40.0,0.0,0.0,6.0,0.0,1.0,1.0,1879.7904847847342,0.0,0.0,18830.0,5,1,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18830.0,3,0,3_0,3_0 +1784,4.0,5.0,58.0,300,47,31,0.0,12261,0.0,240.0,0.0,0.0,2.0,5.0,1.0,4.0,2.3,2908.8163019072404,3379.48,0.0,61525.0,1,2,0,1.0,5,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26750.000000000004,4,0,4_0,4_0 +1785,6.0,6.0,56.0,111,47,50,0.0,12267,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1356.4127213958723,2960.36,0.0,53286.0,1,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,26643.0,4,0,4_0,4_0 +1786,0.0,20.0,22.0,300,69,71,0.0,12268,0.0,0.0,90.0,0.0,2.0,3.0,4.0,6.0,2.7,1997.0539385557306,1560.0,0.0,25590.0,4,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,9477.777777777777,1,0,1_1,1_1 +1787,10.0,15.0,34.0,111,33,12,0.0,12269,0.0,0.0,0.0,780.0,2.0,5.0,2.0,4.0,2.1,2591.9368937605127,2526.6800000000003,0.0,62256.0,1,3,8,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,29645.714285714286,4,0,4_0,4_0 +1788,0.0,0.0,93.0,400,77,60,0.0,1227,0.0,0.0,0.0,414.0,0.0,1.0,0.0,2.0,1.5,2709.112131321798,0.0,0.0,32514.0,5,3,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21676.0,3,0,3_0,3_0 +1789,8.0,14.0,48.0,120,21,50,0.0,12270,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,2424.180151808618,5200.0,0.0,27186.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,11820.000000000002,1,0,1_1,1_1 +1790,0.0,0.0,52.0,112,21,50,0.0,12271,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,4506.0780256181815,2600.0,0.0,61470.0,1,2,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,61470.0,5,0,5,5_1 +1791,0.0,0.0,77.0,400,72,70,0.0,12273,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2162.141350574943,1019.2,0.0,21417.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14278.0,2,0,2_0,2_1 +1792,0.0,0.0,61.0,111,52,50,0.0,12274,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,538.471995184801,0.0,0.0,32767.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21844.666666666668,3,0,3_0,3_0 +1793,0.0,21.0,26.0,111,56,42,0.0,12275,0.0,0.0,0.0,156.0,1.0,2.0,0.0,1.0,1.0,3477.206982345569,0.0,0.0,12492.0,4,3,6,4.0,1,3.0,0.0,0.0,0,0,1,0,0,1,3.0,0.0,12492.0,1,0,1_1,1_0 +1794,5.0,10.0,69.0,111,72,50,0.0,12276,0.0,0.0,100.0,0.0,0.0,6.0,0.0,2.0,1.5,1312.6285253822684,4826.12,0.0,38515.0,5,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,25676.666666666668,4,0,4_0,4_0 +1795,7.0,7.0,54.0,111,46,30,0.0,12277,0.0,84.0,0.0,0.0,2.0,5.0,2.0,3.0,2.0,2446.7633828317953,0.0,0.0,28210.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,14105.0,2,0,2_0,2_0 +1796,11.0,11.0,66.0,112,72,71,0.0,12282,0.0,0.0,490.0,0.0,0.0,5.0,0.0,1.0,1.0,5061.900023381868,2796.04,0.0,19972.0,5,1,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19972.0,3,0,3_0,3_1 +1797,1.0,21.0,81.0,111,75,31,0.0,12286,0.0,0.0,0.0,378.0,0.0,3.0,0.0,1.0,1.0,4059.8926722436977,2543.3199999999997,0.0,31170.0,5,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,31170.0,4,0,4_0,4_0 +1798,11.0,11.0,83.0,211,86,60,0.0,12287,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1374.0631569815996,0.0,0.0,18538.0,6,4,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18538.0,2,0,2_0,2_0 +1799,0.0,0.0,79.0,400,71,71,0.0,12288,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2009.4294841744231,0.0,0.0,21143.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14095.333333333334,2,0,2_0,2_1 +1800,9.0,10.0,45.0,111,52,60,0.0,12289,0.0,0.0,0.0,686.0,1.0,3.0,3.0,4.0,2.3,666.2831533588529,0.0,0.0,21520.0,1,3,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,9356.521739130436,1,0,1_0,1_0 +1801,1.0,10.0,41.0,111,35,41,2.0,1229,0.0,0.0,288.0,0.0,1.0,4.0,2.0,4.0,2.1,3093.9426680025936,2472.6,1300.0,110470.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,52604.7619047619,5,0,5,5_0 +1802,3.0,4.0,31.0,221,21,43,0.0,12290,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1373.3784128748396,2080.0,0.0,30153.0,1,3,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20102.0,3,0,3_0,3_0 +1803,4.0,8.0,55.0,211,78,50,0.0,12292,0.0,340.0,0.0,449.0,0.0,3.0,0.0,2.0,1.5,1080.2608502238625,0.0,0.0,14741.0,7,3,4,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,9827.333333333334,1,0,1_0,1_0 +1804,0.0,0.0,56.0,111,31,30,0.0,12293,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1966.3175736641956,0.0,0.0,121054.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,60527.0,5,0,5,5_0 +1805,2.0,4.0,88.0,111,75,60,0.0,12294,30.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2626.4529142633237,0.0,0.0,46817.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,46817.0,5,0,5,5_0 +1806,0.0,22.0,36.0,111,31,20,0.0,12297,0.0,0.0,99999.0,0.0,2.0,4.0,1.0,3.0,1.8,2559.1121358207324,0.0,0.0,53440.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,29688.888888888887,4,0,4_0,4_0 +1807,10.0,13.0,28.0,300,68,50,0.0,12298,0.0,99999.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2366.362811159689,0.0,0.0,15420.0,1,4,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,11861.538461538461,1,0,1_0,1_1 +1808,0.0,0.0,78.0,111,54,60,0.0,12299,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2660.8657334554255,0.0,0.0,22558.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22558.0,3,0,3_0,3_0 +1809,2.0,11.0,64.0,221,21,41,0.0,123,0.0,650.0,200.0,1222.0,1.0,4.0,0.0,1.0,1.0,1203.2534858955178,0.0,0.0,24675.0,1,3,1,3.0,1,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,24675.0,4,0,4_0,4_0 +1810,1.0,16.0,70.0,112,74,10,2.0,1230,0.0,120.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1720.8167277515984,2774.7200000000003,1000.0,71077.0,5,1,9,3.0,3,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,47384.666666666664,5,0,5,5_0 +1811,1.0,9.0,69.0,111,77,50,0.0,12301,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1698.913843639179,0.0,0.0,22455.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22455.0,3,0,3_0,3_0 +1812,11.0,11.0,47.0,112,56,30,0.0,12302,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2023.693944607977,4108.0,0.0,25900.0,1,2,9,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10360.0,1,0,1_0,1_0 +1813,1.0,3.0,44.0,211,56,50,2.0,12303,0.0,100.0,0.0,172.0,1.0,5.0,2.0,3.0,1.8,1084.619328479818,1560.0,11000.0,21636.0,1,3,2,3.0,2,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,12020.0,1,0,1_1,1_0 +1814,4.0,6.0,63.0,221,75,70,0.0,12304,0.0,600.0,0.0,0.0,1.0,6.0,3.0,5.0,3.0,1713.651792422971,2600.0,0.0,43865.0,5,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,14621.666666666666,2,0,2_0,2_0 +1815,0.0,0.0,23.0,111,85,50,0.0,12307,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,1778.1620406780175,0.0,0.0,17102.0,6,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10688.75,1,0,1_1,1_0 +1816,0.0,17.0,55.0,111,55,41,0.0,12308,0.0,0.0,375.0,0.0,2.0,5.0,0.0,2.0,1.5,1849.3938976970865,2601.04,0.0,39104.0,1,1,6,5.0,3,6.0,0.0,0.0,0,0,1,0,0,0,6.0,0.0,26069.333333333332,4,0,4_0,4_0 +1817,7.0,10.0,54.0,300,62,50,0.0,12309,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2715.033658342364,0.0,0.0,17878.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17878.0,2,0,2_0,2_1 +1818,3.0,5.0,36.0,112,43,33,0.0,1231,0.0,150.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2239.6937506181966,5902.0,0.0,42515.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23619.444444444445,3,0,3_0,3_1 +1819,2.0,2.0,37.0,111,37,20,0.0,12310,0.0,0.0,120.0,0.0,2.0,3.0,0.0,2.0,1.5,3784.5655551189866,0.0,0.0,94678.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,63118.666666666664,5,0,5,5_0 +1820,5.0,14.0,55.0,211,56,71,0.0,12311,0.0,600.0,0.0,274.0,1.0,4.0,0.0,1.0,1.0,1333.6163658595547,1492.3999999999999,0.0,18280.0,1,3,2,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18280.0,2,0,2_0,2_0 +1821,3.0,3.0,58.0,111,75,31,0.0,12312,0.0,1086.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3217.214924936239,0.0,0.0,29368.0,5,2,8,6.0,1,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,29368.0,4,0,4_0,4_0 +1822,0.0,18.0,53.0,111,46,20,0.0,12313,0.0,0.0,370.0,0.0,1.0,3.0,0.0,2.0,1.5,1975.498196989049,0.0,0.0,18929.0,1,3,6,4.0,3,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,12619.333333333334,1,0,1_0,1_0 +1823,4.0,6.0,49.0,111,34,30,0.0,12314,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1889.9684005317326,0.0,0.0,48437.0,1,2,9,7.0,2,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,24218.5,4,0,4_0,4_0 +1824,1.0,3.0,54.0,120,45,42,0.0,12315,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1959.7164636594146,2080.0,0.0,36732.0,1,1,0,0.0,3,4.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,24488.0,4,0,4_0,4_1 +1825,3.0,7.0,51.0,111,47,31,0.0,12316,0.0,150.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1472.6287672281353,0.0,0.0,47426.0,1,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,31617.333333333332,4,0,4_0,4_0 +1826,16.0,16.0,58.0,111,63,71,0.0,12319,0.0,0.0,0.0,254.0,3.0,4.0,4.0,6.0,3.3,2187.0312331124874,3962.3999999999996,0.0,39368.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11929.69696969697,1,0,1_1,1_0 +1827,6.0,6.0,42.0,112,52,42,0.0,12321,0.0,0.0,100.0,0.0,1.0,7.0,3.0,5.0,2.8,1345.3216311157523,6708.0,0.0,29069.0,1,1,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,10381.785714285716,1,0,1_0,1_0 +1828,6.0,27.0,59.0,112,52,50,0.0,12322,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1916.4522126512243,0.0,0.0,38036.0,1,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25357.333333333332,4,0,4_0,4_1 +1829,0.0,0.0,58.0,111,38,31,0.0,12324,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1820.2020847165156,0.0,0.0,72545.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,48363.333333333336,5,0,5,5_0 +1830,15.0,15.0,80.0,120,71,71,0.0,12327,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1606.3103449067614,0.0,0.0,13891.0,5,4,0,3.0,1,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,13891.0,1,0,1_0,1_0 +1831,0.0,25.0,69.0,111,75,31,0.0,12329,0.0,0.0,0.0,274.0,0.0,2.0,0.0,1.0,1.0,6219.9995780047975,0.0,0.0,38982.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,38982.0,5,0,5,5_0 +1832,4.0,10.0,48.0,111,46,42,0.0,1233,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,3472.4696613704823,0.0,0.0,62219.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,31109.5,4,0,4_0,4_0 +1833,1.0,1.0,59.0,221,68,71,1.0,12330,0.0,0.0,119.0,520.0,1.0,3.0,0.0,1.0,1.0,4149.345875404117,0.0,10000.0,14520.0,1,3,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,14520.0,2,0,2_1,2_0 +1834,21.0,21.0,20.0,111,84,31,0.0,12331,0.0,0.0,0.0,440.0,0.0,2.0,0.0,1.0,1.0,3708.9741023281695,0.0,0.0,12010.0,3,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12010.0,1,0,1_0,1_0 +1835,5.0,5.0,48.0,111,68,50,0.0,12333,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1071.3369441663083,3796.0,0.0,15954.0,4,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,10636.0,1,0,1_1,1_0 +1836,1.0,14.0,76.0,400,,50,0.0,12334,0.0,300.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1866.9784741955857,2343.12,0.0,14180.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14180.0,2,0,2_0,2_1 +1837,0.0,6.0,32.0,111,55,44,2.0,12335,0.0,120.0,0.0,621.0,2.0,3.0,0.0,2.0,1.5,3338.9732263869737,0.0,4800.0,56926.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,37950.666666666664,5,0,5,5_0 +1838,0.0,10.0,31.0,112,53,31,0.0,12336,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3328.83269493221,1612.0,0.0,19219.0,1,3,5,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19219.0,3,0,3_0,3_1 +1839,13.0,13.0,57.0,112,,71,0.0,12338,0.0,199998.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1342.1328435291346,0.0,0.0,14954.0,8,3,9,3.0,1,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,14954.0,2,0,2_1,2_0 +1840,0.0,0.0,38.0,211,37,30,0.0,12339,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1678.13381951933,2080.52,0.0,30806.0,1,2,2,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23696.923076923074,3,0,3_0,3_0 +1841,3.0,6.0,67.0,111,77,50,0.0,12340,0.0,99999.0,0.0,270.0,0.0,4.0,0.0,2.0,1.5,2776.90936061925,0.0,0.0,23771.0,5,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,15847.333333333334,2,0,2_0,2_0 +1842,21.0,22.0,39.0,111,42,10,0.0,12342,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2431.8789900578645,0.0,0.0,64740.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26975.0,4,0,4_0,4_0 +1843,0.0,0.0,36.0,211,52,50,0.0,12344,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,196.0029346597453,0.0,0.0,21884.0,1,2,3,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,16833.846153846152,2,0,2_1,2_0 +1844,4.0,4.0,38.0,111,45,41,0.0,12345,0.0,250.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1940.063142059374,0.0,0.0,53176.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,25321.90476190476,4,0,4_1,4_0 +1845,3.0,7.0,92.0,400,71,70,0.0,12348,0.0,20.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2478.436436606674,0.0,0.0,11210.0,5,4,0,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,11210.0,1,0,1_0,1_1 +1846,12.0,12.0,67.0,111,75,60,0.0,12349,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2719.97298200804,1823.1200000000001,0.0,27870.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27870.0,4,0,4_0,4_0 +1847,0.0,0.0,43.0,111,37,20,0.0,1235,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,3928.756152817924,0.0,0.0,76158.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,42310.0,5,0,5,5_0 +1848,4.0,13.0,25.0,120,63,43,0.0,12350,0.0,0.0,0.0,0.0,3.0,6.0,2.0,5.0,2.6,3430.7040019901,590.72,0.0,84369.0,1,1,0,2.0,5,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32449.615384615383,5,0,5,5_0 +1849,0.0,14.0,74.0,111,74,30,0.0,12352,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1449.2745133340043,1300.0,0.0,49630.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,33086.666666666664,5,0,5,5_0 +1850,4.0,16.0,63.0,112,31,10,0.0,12353,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1974.5846540008663,0.0,0.0,85495.0,1,1,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,42747.5,5,0,5,5_0 +1851,29.0,29.0,44.0,112,62,60,0.0,12354,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3346.179569641074,1040.0,0.0,56490.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26900.0,4,0,4_0,4_1 +1852,1.0,13.0,44.0,120,65,50,2.0,12355,0.0,100.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2427.096220071651,3224.0,1700.0,52090.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20836.0,3,0,3_0,3_1 +1853,13.0,14.0,42.0,300,64,71,0.0,12357,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2717.08076838319,0.0,0.0,15183.0,1,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15183.0,2,0,2_0,2_0 +1854,1.0,1.0,54.0,400,12,50,0.0,12358,0.0,350.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2709.8524481846384,0.0,0.0,21062.0,1,1,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14041.333333333334,2,0,2_0,2_1 +1855,0.0,0.0,76.0,112,74,50,0.0,12359,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2230.4546604246448,1876.6800000000003,0.0,52211.0,5,1,10,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,34807.333333333336,5,0,5,5_0 +1856,0.0,0.0,54.0,111,56,50,0.0,1236,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1949.4518730017694,0.0,0.0,14109.0,1,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14109.0,2,0,2_0,2_0 +1857,0.0,0.0,41.0,221,52,50,0.0,12360,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,450.95226223616316,0.0,0.0,24294.0,1,2,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,18687.69230769231,2,0,2_1,2_0 +1858,0.0,9.0,29.0,112,43,44,0.0,12361,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2336.6998710178364,0.0,0.0,42124.0,1,3,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28082.666666666668,4,0,4_0,4_0 +1859,5.0,13.0,87.0,120,74,10,0.0,12362,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1989.9602392580741,0.0,0.0,52558.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,35038.666666666664,5,0,5,5_1 +1860,0.0,0.0,69.0,111,74,41,0.0,12363,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1634.5483816818135,0.0,0.0,67760.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,45173.333333333336,5,0,5,5_0 +1861,0.0,0.0,52.0,400,56,50,0.0,12364,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,2.0,168.46211417272835,0.0,0.0,14696.0,4,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,7348.0,1,0,1_1,1_1 +1862,3.0,3.0,56.0,300,52,50,0.0,12365,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1300.6029593737046,0.0,0.0,27462.0,1,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18308.0,2,0,2_0,2_0 +1863,0.0,2.0,36.0,111,37,20,2.0,12366,0.0,400.0,0.0,2050.0,2.0,6.0,1.0,3.0,1.8,1960.9857424330942,0.0,10400.0,108593.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,60329.444444444445,5,0,5,5_0 +1864,0.0,0.0,61.0,112,78,60,0.0,12367,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1500.3273138779348,1820.0,0.0,42040.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28026.666666666668,4,0,4_0,4_0 +1865,2.0,8.0,61.0,111,54,70,0.0,12368,0.0,950.0,0.0,431.0,2.0,4.0,2.0,3.0,2.0,4373.905005825543,780.0,0.0,26385.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,13192.5,1,0,1_1,1_0 +1866,0.0,0.0,38.0,300,63,50,0.0,12369,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,421.5767140740955,0.0,0.0,35386.0,1,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15385.21739130435,2,0,2_1,2_0 +1867,0.0,0.0,38.0,111,56,30,0.0,1237,0.0,0.0,0.0,685.0,1.0,1.0,0.0,1.0,1.0,3998.5794434115737,0.0,0.0,14321.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14321.0,2,0,2_0,2_0 +1868,1.0,2.0,79.0,112,78,50,2.0,12370,0.0,99999.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2650.5701022228673,2652.0,26500.0,28002.0,5,4,9,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,18668.0,2,0,2_0,2_1 +1869,5.0,5.0,53.0,300,62,50,0.0,12372,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1880.6489714953962,2873.0,0.0,44867.0,1,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,29911.333333333332,4,0,4_0,4_0 +1870,1.0,8.0,85.0,111,78,60,2.0,12373,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2271.190871007756,0.0,4000.0,43958.0,5,1,10,8.0,3,3.0,1.0,0.0,0,0,0,0,1,0,0.0,3.0,29305.333333333332,4,0,4_0,4_0 +1871,4.0,13.0,35.0,300,43,33,0.0,12376,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1738.9313447700672,0.0,0.0,22390.0,1,2,0,1.0,2,3.0,0.0,0.0,0,1,0,0,0,1,3.0,0.0,17223.076923076922,2,0,2_1,2_0 +1872,12.0,12.0,44.0,111,31,20,0.0,12377,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1654.4860898823806,2380.04,0.0,45678.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19860.0,3,0,3_0,3_0 +1873,11.0,11.0,71.0,400,77,71,0.0,12378,0.0,0.0,120.0,0.0,0.0,3.0,0.0,1.0,1.0,3295.10561880682,0.0,0.0,14711.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14711.0,2,0,2_0,2_1 +1874,0.0,0.0,62.0,120,34,10,0.0,1238,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1799.4216061570958,6923.280000000001,0.0,64632.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,43088.0,5,0,5,5_1 +1875,5.0,5.0,72.0,111,75,60,0.0,12380,0.0,120.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3070.374025176418,0.0,0.0,19983.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19983.0,3,0,3_0,3_0 +1876,18.0,18.0,63.0,111,54,30,0.0,12381,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2087.2199152965945,0.0,0.0,31652.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,31652.0,4,0,4_0,4_0 +1877,4.0,8.0,55.0,112,37,30,0.0,12382,0.0,550.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2503.6316069032596,5236.4,0.0,56088.0,1,1,10,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,56088.0,5,0,5,5_1 +1878,5.0,5.0,37.0,112,55,50,0.0,12384,0.0,60.0,95.0,0.0,2.0,5.0,0.0,2.0,1.5,3284.097822916345,2127.84,0.0,36690.0,1,2,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24460.0,4,0,4_0,4_1 +1879,0.0,0.0,23.0,221,63,44,0.0,12385,0.0,0.0,0.0,624.0,1.0,2.0,1.0,2.0,1.3,2384.7134792264496,0.0,0.0,18230.0,1,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14023.076923076922,2,0,2_0,2_0 +1880,0.0,0.0,26.0,112,43,30,0.0,12387,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3572.159099637283,0.0,0.0,71513.0,1,2,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,39729.444444444445,5,0,5,5_0 +1881,9.0,9.0,82.0,300,78,71,0.0,12389,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2595.322634025255,1040.0,0.0,21170.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14113.333333333334,2,0,2_0,2_1 +1882,0.0,0.0,71.0,300,74,41,0.0,1239,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1518.6033731964571,1560.0,0.0,59410.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,39606.666666666664,5,0,5,5_1 +1883,7.0,7.0,40.0,111,37,12,0.0,12390,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3098.444503978624,0.0,0.0,101739.0,1,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,67826.0,5,0,5,5_0 +1884,11.0,12.0,35.0,120,65,50,0.0,12391,0.0,690.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2645.2479599500653,1559.9999999999998,0.0,22901.0,1,3,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,22901.0,3,0,3_1,3_0 +1885,10.0,17.0,51.0,112,48,50,0.0,12392,0.0,0.0,50.0,0.0,3.0,5.0,2.0,4.0,2.3,1975.452901700837,2080.0,0.0,56170.0,1,2,8,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,24421.739130434784,4,0,4_0,4_0 +1886,7.0,13.0,32.0,111,52,50,0.0,12393,0.0,0.0,60.0,341.0,2.0,3.0,1.0,3.0,1.8,1102.9946950299643,0.0,0.0,53116.0,1,3,7,4.0,4,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,29508.888888888887,4,0,4_1,4_0 +1887,4.0,6.0,54.0,221,13,60,0.0,12394,0.0,320.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1322.6354393056104,0.0,0.0,9100.0,1,2,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,9100.0,1,0,1_0,1_0 +1888,0.0,0.0,52.0,120,43,50,0.0,12398,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,684.6082480162374,0.0,0.0,30626.0,1,2,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23558.46153846154,3,0,3_0,3_1 +1889,11.0,11.0,42.0,111,42,20,0.0,12399,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2182.277516673871,2589.6,0.0,56430.0,1,2,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,26871.42857142857,4,0,4_0,4_0 +1890,9.0,12.0,39.0,111,54,50,0.0,124,0.0,730.0,40.0,0.0,1.0,3.0,0.0,1.0,1.0,2311.589752088853,0.0,0.0,16028.0,1,3,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,16028.0,2,0,2_0,2_0 +1891,2.0,3.0,79.0,112,78,70,0.0,1240,0.0,600.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1629.503262941474,2340.0,0.0,23056.0,5,1,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23056.0,3,0,3_0,3_0 +1892,0.0,0.0,56.0,112,31,10,0.0,12400,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2184.45941767579,0.0,0.0,100653.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,67102.0,5,0,5,5_1 +1893,15.0,15.0,42.0,400,67,43,0.0,12401,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3034.4663772209565,2047.76,0.0,22973.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22973.0,3,0,3_0,3_1 +1894,1.0,4.0,62.0,111,78,50,2.0,12402,0.0,50.0,0.0,360.0,1.0,5.0,1.0,3.0,1.8,2340.1382017329156,0.0,15000.0,23091.0,5,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12828.333333333332,1,0,1_1,1_0 +1895,3.0,6.0,47.0,111,35,20,0.0,12403,0.0,0.0,99999.0,0.0,2.0,6.0,2.0,4.0,2.1,1687.5727059579324,1685.3199999999997,0.0,40848.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19451.42857142857,3,0,3_0,3_0 +1896,0.0,0.0,54.0,111,56,50,0.0,12404,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2712.750228027621,0.0,0.0,12786.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12786.0,1,0,1_1,1_0 +1897,19.0,19.0,75.0,111,77,50,0.0,12405,0.0,0.0,0.0,480.0,0.0,3.0,0.0,1.0,1.0,4265.170114400881,0.0,0.0,17750.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,17750.0,2,0,2_0,2_0 +1898,8.0,9.0,79.0,400,77,70,0.0,12407,0.0,230.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2850.29192291837,0.0,0.0,15943.0,5,1,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15943.0,2,0,2_0,2_0 +1899,11.0,11.0,71.0,112,77,60,0.0,12408,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2312.298082520903,0.0,0.0,32062.0,5,1,8,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,32062.0,5,0,5,5_0 +1900,0.0,0.0,32.0,111,38,10,0.0,1241,0.0,0.0,0.0,595.0,1.0,1.0,0.0,1.0,1.0,4400.378723347909,0.0,0.0,27020.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27020.0,4,0,4_0,4_0 +1901,4.0,5.0,63.0,120,75,33,0.0,12411,0.0,99999.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1861.186187918743,1560.0,0.0,75364.0,5,2,0,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,50242.666666666664,5,0,5,5_0 +1902,11.0,11.0,66.0,111,78,50,0.0,12414,0.0,220.0,30.0,0.0,0.0,4.0,0.0,1.0,1.0,2787.5983140895187,0.0,0.0,15907.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,15907.0,2,0,2_0,2_0 +1903,6.0,6.0,54.0,111,,71,0.0,12415,0.0,1210.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,947.2381905122194,0.0,0.0,23269.0,8,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,11080.47619047619,1,0,1_0,1_0 +1904,2.0,2.0,52.0,221,21,60,0.0,12416,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1627.8949090044107,0.0,0.0,69080.0,1,1,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27632.0,4,0,4_0,4_0 +1905,2.0,10.0,42.0,111,37,20,0.0,12417,0.0,100099.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,563.377842559072,0.0,0.0,38550.0,1,2,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18357.142857142855,2,0,2_0,2_0 +1906,3.0,3.0,39.0,120,47,31,0.0,1242,0.0,0.0,180.0,0.0,2.0,7.0,3.0,5.0,2.4,1983.1571860012243,3040.96,0.0,52453.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21855.416666666668,3,0,3_0,3_1 +1907,0.0,0.0,47.0,112,56,50,0.0,12420,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1411.7774237493566,2340.0,0.0,17730.0,1,1,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13638.461538461537,1,0,1_0,1_1 +1908,8.0,28.0,73.0,211,77,50,0.0,12421,0.0,0.0,0.0,239.0,0.0,2.0,0.0,1.0,1.0,1849.0565437687867,0.0,0.0,9726.0,5,3,3,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,9726.0,1,0,1_0,1_0 +1909,2.0,2.0,77.0,300,75,70,0.0,12422,0.0,0.0,0.0,0.0,0.0,6.0,1.0,2.0,1.5,3274.678341585788,0.0,0.0,33401.0,5,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22267.333333333332,3,0,3_0,3_1 +1910,3.0,4.0,46.0,111,68,50,0.0,12423,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,760.0372621503589,0.0,0.0,42130.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26331.25,4,0,4_0,4_0 +1911,6.0,9.0,38.0,211,85,43,0.0,12426,0.0,800.0,0.0,235.0,1.0,5.0,3.0,5.0,2.4,785.6594905651989,6353.88,0.0,46132.0,4,3,1,3.0,4,1.0,1.0,1.0,0,1,0,0,0,1,0.0,1.0,19221.666666666668,3,0,3_1,3_0 +1912,2.0,2.0,27.0,112,55,50,0.0,12428,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1905.622450346592,0.0,0.0,20484.0,1,3,9,1.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,15756.923076923076,2,0,2_1,2_0 +1913,11.0,11.0,74.0,112,75,60,0.0,12429,0.0,0.0,230.0,0.0,0.0,6.0,0.0,2.0,1.5,1871.6393079413037,1560.0,0.0,26793.0,5,1,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17862.0,2,0,2_0,2_1 +1914,2.0,14.0,69.0,111,77,50,0.0,1243,0.0,300.0,300.0,0.0,0.0,5.0,0.0,2.0,1.5,2180.499412242681,0.0,0.0,31684.0,5,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,21122.666666666668,3,0,3_0,3_0 +1915,18.0,18.0,59.0,112,63,50,0.0,12430,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1905.2223763923273,2601.04,0.0,32349.0,1,1,7,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21566.0,3,0,3_0,3_0 +1916,0.0,0.0,81.0,120,75,31,0.0,12431,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1578.4292362307738,0.0,0.0,34738.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23158.666666666668,3,0,3_0,3_0 +1917,2.0,2.0,61.0,111,77,50,0.0,12432,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3532.8722418020943,0.0,0.0,10364.0,7,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10364.0,1,0,1_1,1_0 +1918,0.0,0.0,45.0,111,65,43,0.0,12434,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1633.4024616101547,4004.0,0.0,6799.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,6799.0,1,0,1_0,1_0 +1919,0.0,0.0,20.0,111,84,41,1.0,12435,0.0,0.0,0.0,275.0,0.0,2.0,0.0,1.0,1.0,3246.054999305643,0.0,22000.0,6900.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,6900.0,1,0,1_1,1_0 +1920,11.0,11.0,87.0,111,77,71,0.0,12436,0.0,0.0,99999.0,0.0,0.0,2.0,0.0,1.0,1.0,3870.245955702132,0.0,0.0,17721.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,17721.0,2,0,2_0,2_0 +1921,1.0,13.0,69.0,112,78,71,2.0,12438,0.0,0.0,0.0,212.0,0.0,2.0,0.0,1.0,1.0,4952.4937034364975,2600.0,1200.0,16141.0,5,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,16141.0,2,0,2_1,2_0 +1922,3.0,3.0,26.0,300,67,60,0.0,12439,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,3122.8598509225812,2080.0,0.0,22966.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,10936.190476190475,1,0,1_1,1_1 +1923,6.0,9.0,27.0,111,54,43,0.0,1244,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,1262.7104733214721,780.0,0.0,12414.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,7758.75,1,0,1_1,1_0 +1924,0.0,0.0,51.0,300,67,71,0.0,12441,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,1962.8090277798046,2080.0,0.0,24057.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8019.0,1,0,1_1,1_1 +1925,4.0,4.0,35.0,300,62,50,0.0,12445,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,607.3261392553995,1042.08,0.0,37646.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,15685.833333333334,2,0,2_1,2_0 +1926,0.0,0.0,34.0,112,37,12,1.0,12446,0.0,275.0,0.0,700.0,2.0,3.0,0.0,2.0,1.5,4014.059276542275,2289.56,23900.0,35252.0,4,3,9,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,23501.333333333332,3,0,3_0,3_0 +1927,1.0,1.0,74.0,112,74,30,1.0,12447,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2361.997403862753,3017.04,16500.0,78629.0,5,1,10,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,52419.333333333336,5,0,5,5_1 +1928,2.0,2.0,61.0,112,74,30,0.0,12448,0.0,0.0,99999.0,0.0,0.0,6.0,0.0,1.0,1.0,2591.8349644047935,0.0,0.0,23023.0,5,1,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23023.0,3,0,3_0,3_1 +1929,1.0,14.0,27.0,112,55,41,0.0,12449,0.0,0.0,100.0,0.0,2.0,2.0,0.0,2.0,1.5,2122.3527020110278,3172.0,0.0,23092.0,1,3,10,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,15394.666666666666,2,0,2_0,2_0 +1930,3.0,22.0,23.0,111,53,30,0.0,1245,0.0,380.0,230.0,300.0,1.0,1.0,0.0,1.0,1.0,3853.952449824754,243.88000000000002,0.0,25181.0,1,3,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,1,1.0,2.0,25181.0,4,0,4_1,4_0 +1931,0.0,18.0,35.0,111,63,43,0.0,12451,0.0,0.0,130.0,570.0,2.0,2.0,0.0,2.0,1.5,3648.515440067982,0.0,0.0,36420.0,1,3,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,24280.0,4,0,4_0,4_0 +1932,0.0,0.0,42.0,111,68,71,0.0,12453,0.0,0.0,0.0,354.0,1.0,4.0,1.0,3.0,2.0,3309.704637313933,0.0,0.0,12100.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,6050.0,1,0,1_0,1_0 +1933,3.0,11.0,25.0,111,55,42,0.0,12454,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2479.7400099514734,4160.0,0.0,34296.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22864.0,3,0,3_0,3_0 +1934,0.0,45.0,61.0,111,68,71,0.0,12456,0.0,200.0,0.0,0.0,4.0,4.0,5.0,7.0,3.8,879.864016342915,0.0,0.0,27870.0,1,2,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,1,1.0,2.0,7334.21052631579,1,0,1_1,1_0 +1935,8.0,8.0,71.0,111,31,20,0.0,12457,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3659.543686157287,2257.3199999999997,0.0,52122.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34748.0,5,0,5,5_0 +1936,2.0,8.0,82.0,112,77,50,0.0,12458,0.0,0.0,0.0,322.0,0.0,2.0,0.0,1.0,1.0,2791.184618772047,0.0,0.0,22703.0,5,3,10,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22703.0,3,0,3_0,3_0 +1937,4.0,4.0,33.0,111,64,71,0.0,12462,0.0,99999.0,0.0,0.0,2.0,3.0,3.0,5.0,2.4,1700.260984265387,520.52,0.0,38638.0,1,2,8,7.0,4,2.0,1.0,0.0,0,0,0,1,0,1,1.0,1.0,16099.166666666668,2,0,2_1,2_0 +1938,7.0,8.0,46.0,111,85,50,0.0,12463,0.0,0.0,0.0,250.0,0.0,4.0,4.0,5.0,3.0,1147.0695458149069,0.0,0.0,32710.0,8,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,10903.333333333334,1,0,1_1,1_0 +1939,12.0,12.0,33.0,111,52,50,0.0,12466,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2545.4478976626815,914.1599999999999,0.0,22793.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22793.0,3,0,3_0,3_0 +1940,5.0,5.0,51.0,111,43,33,0.0,12467,0.0,120.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1624.2263156161678,2600.0,0.0,25947.0,1,4,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19959.23076923077,3,0,3_0,3_0 +1941,0.0,0.0,36.0,112,21,43,0.0,12468,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3850.274790214545,0.0,0.0,17760.0,1,3,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17760.0,2,0,2_0,2_1 +1942,18.0,23.0,43.0,112,53,60,0.0,12469,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1772.5267248131709,0.0,0.0,42178.0,1,2,6,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,16222.307692307691,2,0,2_0,2_0 +1943,3.0,3.0,58.0,211,43,50,0.0,1247,0.0,0.0,30.0,0.0,2.0,7.0,0.0,2.0,1.5,2198.3139686822487,2292.16,0.0,39072.0,1,1,2,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,26048.0,4,0,4_0,4_0 +1944,2.0,2.0,53.0,111,43,41,0.0,12470,0.0,0.0,0.0,287.0,3.0,3.0,2.0,3.0,2.0,2361.0462267279227,0.0,0.0,62689.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,31344.5,4,0,4_0,4_0 +1945,16.0,16.0,74.0,111,74,12,0.0,12471,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2575.2422637885315,0.0,0.0,57641.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38427.333333333336,5,0,5,5_0 +1946,5.0,5.0,36.0,111,68,31,0.0,12472,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,3488.701236381124,2601.56,0.0,28120.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,11716.666666666668,1,0,1_1,1_0 +1947,5.0,5.0,40.0,400,62,42,0.0,12473,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2868.45067412241,2773.6800000000003,0.0,62045.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,29545.238095238095,4,0,4_0,4_1 +1948,2.0,2.0,66.0,111,74,30,0.0,12474,0.0,150.0,0.0,32.0,0.0,2.0,0.0,1.0,1.0,4379.637170414238,0.0,0.0,14048.0,5,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,14048.0,2,0,2_1,2_0 +1949,12.0,12.0,63.0,111,74,20,0.0,12475,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2211.278110999215,0.0,0.0,33656.0,5,3,4,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,33656.0,5,0,5,5_0 +1950,3.0,6.0,55.0,111,45,20,0.0,12476,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1370.1406861902956,4317.04,0.0,65509.0,1,2,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,43672.666666666664,5,0,5,5_0 +1951,0.0,0.0,62.0,111,56,71,0.0,12478,0.0,0.0,0.0,768.0,2.0,6.0,4.0,7.0,3.8,1652.0276910217929,3805.36,0.0,76630.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20165.78947368421,3,0,3_0,3_0 +1952,0.0,5.0,60.0,111,52,71,0.0,12479,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1840.3855787985508,1560.0,0.0,20425.0,1,2,7,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,20425.0,3,0,3_0,3_0 +1953,13.0,13.0,53.0,211,77,50,0.0,12481,0.0,0.0,0.0,574.0,0.0,5.0,0.0,2.0,1.5,1463.9136814789063,0.0,0.0,9767.0,7,3,3,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,6511.333333333333,1,0,1_0,1_0 +1954,0.0,0.0,32.0,112,54,31,0.0,12482,0.0,0.0,0.0,3.0,1.0,3.0,1.0,2.0,1.3,468.23952134251795,1040.0,0.0,20033.0,4,3,8,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15410.0,2,0,2_1,2_0 +1955,0.0,0.0,67.0,400,74,20,0.0,12486,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2322.614401843794,0.0,0.0,26866.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17910.666666666668,2,0,2_0,2_1 +1956,2.0,8.0,67.0,111,77,70,0.0,12487,0.0,130.0,0.0,470.0,1.0,5.0,0.0,2.0,1.5,2509.6201455408036,0.0,0.0,45240.0,5,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,30160.0,4,0,4_0,4_0 +1957,0.0,0.0,78.0,112,74,31,0.0,12488,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1746.2698998101691,0.0,0.0,56425.0,5,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,37616.666666666664,5,0,5,5_0 +1958,8.0,13.0,33.0,111,37,31,0.0,12489,0.0,30.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1829.6326255461508,1820.0,0.0,70453.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,46968.666666666664,5,0,5,5_0 +1959,10.0,12.0,45.0,111,35,41,0.0,1249,0.0,0.0,99999.0,0.0,1.0,5.0,3.0,5.0,2.8,1542.6114682449927,0.0,0.0,26836.0,1,3,7,5.0,4,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,9584.285714285716,1,0,1_1,1_0 +1960,0.0,0.0,54.0,111,56,50,0.0,12491,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,482.75304834494966,0.0,0.0,21723.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14482.0,2,0,2_0,2_0 +1961,0.0,0.0,42.0,300,62,50,0.0,12493,0.0,0.0,0.0,13.0,2.0,4.0,2.0,4.0,2.5,1950.1917673998162,0.0,0.0,22368.0,4,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8947.2,1,0,1_1,1_0 +1962,6.0,11.0,60.0,111,78,50,0.0,12494,0.0,80.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3148.432782605184,0.0,0.0,19595.0,7,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,13063.333333333334,1,0,1_1,1_0 +1963,7.0,11.0,24.0,111,56,43,0.0,12495,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2298.3436884385037,1040.0,0.0,19040.0,1,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19040.0,3,0,3_0,3_0 +1964,1.0,2.0,48.0,120,46,30,0.0,12497,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,1589.3002180925703,9403.68,0.0,89527.0,1,2,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,29842.333333333332,4,0,4_0,4_0 +1965,5.0,5.0,39.0,221,56,71,0.0,12498,0.0,120.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2666.8287820162814,0.0,0.0,21744.0,4,4,3,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9060.0,1,0,1_1,1_0 +1966,6.0,11.0,64.0,112,77,30,0.0,12499,0.0,150.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2145.359810237709,4609.280000000001,0.0,28227.0,5,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18818.0,3,0,3_0,3_0 +1967,2.0,21.0,48.0,111,43,33,0.0,1250,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1680.9274511767046,0.0,0.0,47167.0,1,2,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,20507.391304347828,3,0,3_0,3_0 +1968,9.0,9.0,54.0,120,63,71,0.0,12501,0.0,2000.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2532.166655970461,1144.0,0.0,55892.0,1,1,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,22356.8,3,0,3_0,3_1 +1969,10.0,11.0,38.0,300,38,0,0.0,12502,0.0,0.0,0.0,800.0,2.0,3.0,1.0,3.0,1.8,3287.638293667249,0.0,0.0,31720.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17622.222222222223,2,0,2_0,2_1 +1970,0.0,0.0,55.0,111,52,50,0.0,12504,0.0,0.0,0.0,300.0,1.0,4.0,2.0,4.0,2.5,4653.699446649824,0.0,0.0,35760.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14304.0,2,0,2_1,2_0 +1971,0.0,0.0,56.0,112,78,71,0.0,12506,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2398.3333821166502,0.0,0.0,43494.0,5,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21747.0,3,0,3_0,3_1 +1972,6.0,6.0,42.0,111,85,43,0.0,12507,0.0,0.0,160.0,200.0,0.0,2.0,0.0,1.0,1.0,3510.868661975198,0.0,0.0,6250.0,7,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,6250.0,1,0,1_0,1_0 +1973,0.0,6.0,51.0,112,65,50,0.0,12509,0.0,500.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2650.176907720072,3432.0,0.0,17037.0,4,1,7,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17037.0,2,0,2_0,2_1 +1974,0.0,0.0,34.0,112,43,33,0.0,12510,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2388.9910885741433,0.0,0.0,31844.0,1,2,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31844.0,5,0,5,5_0 +1975,0.0,0.0,69.0,120,75,41,0.0,12511,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2055.1048085349616,0.0,0.0,24257.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24257.0,4,0,4_0,4_0 +1976,5.0,5.0,55.0,111,52,50,0.0,12512,0.0,0.0,0.0,418.0,1.0,3.0,0.0,1.0,1.0,3543.576693795907,0.0,0.0,22009.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,22009.0,3,0,3_0,3_0 +1977,1.0,12.0,73.0,112,74,10,2.0,12514,0.0,0.0,200.0,0.0,0.0,5.0,0.0,2.0,1.5,2372.844913597715,3328.0,2200.0,86248.0,5,1,7,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,57498.666666666664,5,0,5,5_0 +1978,10.0,10.0,78.0,221,77,60,0.0,12515,0.0,910.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1661.4727137571058,0.0,0.0,29211.0,5,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19474.0,3,0,3_0,3_0 +1979,3.0,4.0,65.0,221,75,50,0.0,12517,0.0,150.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1888.1154066729923,1052.48,0.0,35602.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23734.666666666668,3,0,3_0,3_0 +1980,1.0,5.0,48.0,112,34,31,2.0,12518,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2297.693783979822,2808.0,12500.0,74686.0,1,1,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,37343.0,5,0,5,5_1 +1981,15.0,19.0,68.0,111,74,31,0.0,12519,0.0,100149.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1389.2162887038646,3120.0,0.0,33797.0,5,1,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,33797.0,5,0,5,5_0 +1982,3.0,18.0,25.0,111,54,71,0.0,1252,0.0,220.0,0.0,10.0,1.0,3.0,1.0,2.0,1.3,1076.510417731185,0.0,0.0,13286.0,4,3,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,10220.0,1,0,1_1,1_0 +1983,13.0,13.0,57.0,111,21,44,0.0,12520,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2356.9066719694665,0.0,0.0,17031.0,1,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17031.0,2,0,2_0,2_0 +1984,0.0,0.0,65.0,112,77,60,0.0,12527,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1339.825208857846,3004.56,0.0,46360.0,5,1,10,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30906.666666666668,4,0,4_0,4_0 +1985,2.0,9.0,65.0,112,78,50,0.0,12528,0.0,500.0,0.0,380.0,0.0,2.0,0.0,1.0,1.0,2648.0145211889007,0.0,0.0,16226.0,5,3,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16226.0,2,0,2_0,2_0 +1986,13.0,20.0,25.0,111,37,20,0.0,12529,0.0,400.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4769.398912456687,0.0,0.0,13108.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,13108.0,1,0,1_0,1_0 +1987,0.0,15.0,70.0,221,77,50,0.0,12530,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2351.338595591577,3588.0,0.0,23396.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23396.0,3,0,3_0,3_0 +1988,0.0,0.0,45.0,120,85,43,0.0,12531,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,3.0,1530.259145772479,0.0,0.0,38008.0,6,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12669.333333333334,1,0,1_0,1_0 +1989,3.0,10.0,67.0,111,78,71,0.0,12533,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,2.0,3017.6762364096385,0.0,0.0,31934.0,5,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,15967.0,2,0,2_1,2_0 +1990,3.0,5.0,65.0,111,74,20,0.0,12535,0.0,0.0,460.0,0.0,0.0,3.0,0.0,1.0,1.0,3799.828362279292,0.0,0.0,35844.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,35844.0,5,0,5,5_0 +1991,2.0,2.0,48.0,111,43,30,1.0,12536,0.0,0.0,0.0,447.0,1.0,3.0,1.0,2.0,1.5,3612.9234202661037,0.0,29000.0,41964.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27976.0,4,0,4_0,4_0 +1992,1.0,13.0,30.0,111,38,31,0.0,12537,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2120.6515266594483,2662.4,0.0,51850.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24690.47619047619,4,0,4_0,4_0 +1993,2.0,9.0,48.0,111,38,31,0.0,12538,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,712.9903463865157,0.0,0.0,101727.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,50863.5,5,0,5,5_0 +1994,2.0,2.0,56.0,111,54,71,0.0,12539,0.0,0.0,0.0,650.0,1.0,5.0,0.0,1.0,1.0,1651.4360011755368,1089.3999999999999,0.0,23440.0,4,3,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,23440.0,3,0,3_0,3_0 +1995,7.0,14.0,68.0,300,74,44,0.0,1254,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2115.120411531525,0.0,0.0,29290.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,19526.666666666668,3,0,3_0,3_1 +1996,14.0,14.0,43.0,111,67,50,0.0,12542,0.0,0.0,0.0,353.0,1.0,4.0,0.0,1.0,1.0,2791.355135056925,1040.0,0.0,26448.0,1,3,8,7.0,1,4.0,0.0,0.0,0,0,0,1,0,0,4.0,0.0,26448.0,4,0,4_0,4_0 +1997,2.0,5.0,61.0,111,78,50,0.0,12543,0.0,300.0,0.0,382.0,0.0,3.0,0.0,2.0,1.5,2251.104494254732,0.0,0.0,30127.0,5,3,7,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20084.666666666668,3,0,3_0,3_0 +1998,0.0,0.0,59.0,112,43,33,0.0,12546,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1859.9076684360614,0.0,0.0,37603.0,4,2,8,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16349.13043478261,2,0,2_0,2_0 +1999,3.0,3.0,47.0,111,56,71,0.0,12547,0.0,0.0,0.0,55.0,1.0,5.0,3.0,4.0,2.3,555.740339110149,1560.0,0.0,28690.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12473.913043478262,1,0,1_1,1_0 +2000,1.0,1.0,36.0,111,37,20,2.0,12549,0.0,60.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,632.3609056043576,2692.04,12000.0,36034.0,1,2,8,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,22521.25,3,0,3_0,3_0 +2001,11.0,18.0,86.0,111,74,41,0.0,1255,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2711.6016854767377,0.0,0.0,39231.0,5,4,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,26154.0,4,0,4_0,4_0 +2002,3.0,5.0,32.0,111,46,31,0.0,12552,0.0,99999.0,0.0,455.0,1.0,3.0,1.0,2.0,1.3,1404.8583050431384,520.0,0.0,25740.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,19800.0,3,0,3_0,3_0 +2003,4.0,18.0,66.0,120,74,31,0.0,12553,0.0,0.0,100.0,0.0,0.0,8.0,0.0,2.0,1.5,1251.2397910801392,1924.0,0.0,51891.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,34594.0,5,0,5,5_0 +2004,0.0,0.0,61.0,112,74,50,0.0,12554,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1755.6329037726787,2097.6800000000003,0.0,75851.0,5,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37925.5,5,0,5,5_1 +2005,0.0,3.0,51.0,111,37,30,0.0,12555,0.0,100.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2207.1418135372082,0.0,0.0,74178.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,35322.857142857145,5,0,5,5_0 +2006,0.0,0.0,43.0,300,56,50,0.0,12556,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1204.6777428196958,0.0,0.0,26355.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,20273.076923076922,3,0,3_1,3_1 +2007,11.0,16.0,47.0,112,46,43,0.0,12557,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1353.0758166694839,2392.0,0.0,44931.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24961.666666666664,4,0,4_0,4_1 +2008,5.0,20.0,30.0,111,56,50,0.0,12559,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2060.0105833922544,0.0,0.0,38004.0,1,2,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21113.333333333332,3,0,3_0,3_0 +2009,15.0,23.0,43.0,111,38,20,0.0,1256,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1971.7089371126458,0.0,0.0,62384.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22280.0,3,0,3_0,3_0 +2010,3.0,11.0,33.0,111,85,71,0.0,12560,0.0,280.0,0.0,46.0,0.0,3.0,2.0,3.0,1.6,1435.1234650018648,0.0,0.0,15464.0,6,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,9665.0,1,0,1_1,1_0 +2011,1.0,5.0,55.0,111,34,20,2.0,12561,0.0,600.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1634.2916338146122,3257.28,9000.0,100147.0,1,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,66764.66666666667,5,0,5,5_0 +2012,1.0,1.0,38.0,111,31,10,1.0,12563,0.0,0.0,0.0,0.0,1.0,7.0,2.0,4.0,2.1,3981.7220876207116,3952.0,23000.0,222005.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,105716.66666666666,5,0,5,5_0 +2013,1.0,1.0,42.0,111,43,33,1.0,12564,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,3750.1977428966898,3328.0,21594.0,50730.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22056.521739130436,3,0,3_0,3_0 +2014,5.0,11.0,70.0,111,77,71,0.0,12565,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2872.6617012368097,0.0,0.0,13742.0,5,3,9,7.0,1,4.0,0.0,0.0,0,0,0,1,0,1,1.0,3.0,13742.0,1,0,1_1,1_0 +2015,0.0,10.0,71.0,400,78,71,0.0,12566,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2755.2161036167745,0.0,0.0,20040.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20040.0,3,0,3_0,3_1 +2016,4.0,4.0,57.0,120,43,33,0.0,12567,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2214.394849353021,0.0,0.0,57020.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38013.333333333336,5,0,5,5_1 +2017,0.0,0.0,40.0,112,54,31,0.0,12568,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,8.805595705892259,1039.48,0.0,29587.0,1,3,10,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18491.875,2,0,2_0,2_1 +2018,0.0,0.0,78.0,111,74,12,0.0,12569,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1536.5793869892868,3889.0800000000004,0.0,71130.0,5,1,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,47420.0,5,0,5,5_0 +2019,0.0,0.0,42.0,211,48,50,0.0,1257,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,1.8,291.0013835219537,2303.6,0.0,28864.0,1,3,4,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16035.555555555555,2,0,2_0,2_0 +2020,1.0,7.0,60.0,211,77,50,0.0,12570,0.0,230.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,818.6284517206147,0.0,0.0,42411.0,5,1,4,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,28274.0,4,0,4_0,4_0 +2021,1.0,3.0,63.0,111,78,71,2.0,12571,0.0,0.0,200.0,0.0,0.0,1.0,0.0,1.0,1.0,3734.2842144432625,0.0,8000.0,9678.0,4,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,9678.0,1,0,1_1,1_0 +2022,3.0,10.0,57.0,112,37,42,0.0,12572,0.0,99999.0,0.0,450.0,2.0,4.0,0.0,2.0,1.5,1819.626163335585,0.0,0.0,81395.0,1,3,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,54263.333333333336,5,0,5,5_0 +2023,1.0,1.0,44.0,111,54,50,1.0,12573,0.0,0.0,0.0,528.0,1.0,4.0,1.0,2.0,1.3,807.1311937971963,1560.0,16000.0,21760.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,16738.46153846154,2,0,2_0,2_0 +2024,0.0,0.0,46.0,111,43,20,0.0,12574,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3779.196675747025,0.0,0.0,62210.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27047.826086956524,4,0,4_0,4_0 +2025,0.0,0.0,71.0,300,71,50,0.0,12575,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1583.128382832209,2704.0,0.0,16995.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16995.0,2,0,2_0,2_1 +2026,11.0,13.0,55.0,111,62,60,0.0,12577,0.0,0.0,0.0,269.0,1.0,4.0,1.0,2.0,1.5,2170.4484990410497,0.0,0.0,20904.0,4,3,4,4.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,13936.0,2,0,2_1,2_0 +2027,16.0,16.0,53.0,111,67,71,0.0,12578,0.0,100.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1991.7348289538145,0.0,0.0,13450.0,4,3,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,13450.0,1,0,1_1,1_0 +2028,0.0,11.0,54.0,111,46,60,2.0,12580,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,2339.272704538186,0.0,5000.0,50547.0,1,1,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,50547.0,5,0,5,5_0 +2029,0.0,0.0,29.0,111,69,71,0.0,12581,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,4368.855005582772,1040.0,0.0,15318.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8510.0,1,0,1_1,1_0 +2030,0.0,0.0,24.0,111,47,31,0.0,12582,0.0,0.0,0.0,575.0,2.0,3.0,0.0,2.0,1.5,3392.3947938439374,0.0,0.0,28517.0,1,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19011.333333333332,3,0,3_0,3_0 +2031,4.0,5.0,43.0,111,52,50,0.0,12583,0.0,0.0,0.0,247.0,1.0,3.0,1.0,2.0,1.5,2337.8326088203535,2551.12,0.0,19462.0,1,3,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12974.666666666666,1,0,1_1,1_0 +2032,0.0,0.0,63.0,400,75,50,0.0,12585,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1875.3568890342174,2050.36,0.0,39910.0,5,3,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26606.666666666668,4,0,4_0,4_0 +2033,0.0,0.0,22.0,111,37,30,0.0,12586,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5488.56419519418,0.0,0.0,32472.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,32472.0,5,0,5,5_0 +2034,1.0,13.0,34.0,111,52,71,2.0,12588,0.0,0.0,0.0,179.0,2.0,6.0,4.0,6.0,3.1,3117.472731920005,1040.0,500.0,61187.0,1,3,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,19737.74193548387,3,0,3_1,3_0 +2035,3.0,6.0,87.0,111,74,41,0.0,1259,0.0,450.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2047.1631775205474,1560.0,0.0,66313.0,5,1,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,44208.666666666664,5,0,5,5_0 +2036,3.0,3.0,35.0,111,46,20,0.0,12591,0.0,0.0,0.0,649.0,2.0,3.0,0.0,2.0,1.5,2714.5526706796672,0.0,0.0,56936.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,37957.333333333336,5,0,5,5_0 +2037,0.0,0.0,39.0,111,48,71,0.0,12592,0.0,0.0,0.0,249.0,2.0,2.0,1.0,3.0,1.8,2994.762018459895,0.0,0.0,46621.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25900.555555555555,4,0,4_0,4_0 +2038,2.0,12.0,88.0,111,78,50,0.0,12593,0.0,0.0,350.0,696.0,0.0,4.0,0.0,2.0,1.5,2254.9040369020154,0.0,0.0,26410.0,5,3,4,4.0,3,4.0,1.0,0.0,0,0,1,0,0,0,4.0,0.0,17606.666666666668,2,0,2_0,2_0 +2039,0.0,0.0,46.0,300,54,31,0.0,12596,0.0,0.0,0.0,355.0,1.0,5.0,2.0,3.0,1.8,229.30862144161568,2444.0,0.0,17341.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9633.888888888889,1,0,1_0,1_1 +2040,3.0,3.0,88.0,111,72,60,0.0,12599,0.0,0.0,0.0,551.0,0.0,2.0,0.0,1.0,1.0,4415.517989401603,0.0,0.0,18373.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18373.0,2,0,2_0,2_0 +2041,0.0,0.0,52.0,221,69,50,0.0,126,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1742.35951167583,3456.44,0.0,40592.0,1,2,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,40592.0,5,0,5,5_0 +2042,4.0,5.0,63.0,112,78,50,0.0,1260,0.0,400.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,2085.540778084674,2340.0,0.0,20279.0,5,3,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10139.5,1,0,1_0,1_1 +2043,0.0,0.0,71.0,111,74,20,0.0,12600,0.0,0.0,0.0,1354.0,0.0,3.0,0.0,1.0,1.0,1119.647929204291,0.0,0.0,41400.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41400.0,5,0,5,5_0 +2044,6.0,6.0,58.0,112,31,44,0.0,12601,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1936.5489242771748,0.0,0.0,38037.0,1,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,38037.0,5,0,5,5_1 +2045,0.0,2.0,91.0,112,71,70,2.0,12602,0.0,150.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1874.1228807105122,0.0,16200.0,13995.0,5,4,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13995.0,2,0,2_0,2_1 +2046,3.0,4.0,92.0,111,77,71,0.0,12603,0.0,150.0,28.0,0.0,0.0,3.0,0.0,1.0,1.0,3581.433453589099,0.0,0.0,16630.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16630.0,2,0,2_0,2_0 +2047,6.0,6.0,94.0,111,75,60,0.0,12604,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3809.732290648655,0.0,0.0,42505.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,42505.0,5,0,5,5_0 +2048,2.0,2.0,42.0,112,37,20,0.0,12605,0.0,447.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3241.287265643086,0.0,0.0,28567.0,1,4,8,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,28567.0,4,0,4_0,4_0 +2049,0.0,0.0,60.0,211,77,60,0.0,12606,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4186.131388172948,2548.0,0.0,5312.0,7,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,5312.0,1,0,1_0,1_0 +2050,0.0,0.0,53.0,221,22,31,0.0,12607,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,5024.524505988652,6598.799999999999,0.0,65232.0,1,2,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26092.8,4,0,4_0,4_0 +2051,2.0,2.0,40.0,211,38,12,0.0,12608,0.0,320.0,200.0,0.0,2.0,5.0,3.0,5.0,2.8,2508.7138541344143,2341.56,0.0,50130.0,1,2,2,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17903.57142857143,2,0,2_0,2_0 +2052,24.0,24.0,81.0,111,78,71,0.0,12609,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4050.7977607470734,0.0,0.0,13937.0,5,3,5,4.0,1,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,13937.0,2,0,2_1,2_0 +2053,5.0,10.0,56.0,111,75,71,0.0,1261,0.0,200.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2335.5029545638367,0.0,0.0,33987.0,5,1,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,22658.0,3,0,3_0,3_0 +2054,3.0,3.0,48.0,300,55,50,0.0,12610,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,2014.3709755501884,2418.0,0.0,52120.0,1,1,0,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,26060.0,4,0,4_0,4_0 +2055,0.0,0.0,25.0,111,46,20,0.0,12612,0.0,0.0,0.0,128.0,1.0,1.0,0.0,1.0,1.0,3891.3091971760086,0.0,0.0,19320.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19320.0,3,0,3_1,3_0 +2056,26.0,26.0,48.0,111,85,50,0.0,12613,0.0,500.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2946.071142561778,1560.0,0.0,6706.0,7,2,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,4470.666666666667,1,0,1_0,1_0 +2057,0.0,0.0,70.0,400,77,70,0.0,12615,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2976.941717728889,0.0,0.0,12902.0,6,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12902.0,1,0,1_0,1_1 +2058,2.0,3.0,37.0,211,46,43,0.0,12616,0.0,650.0,0.0,0.0,1.0,6.0,4.0,5.0,2.2,585.6286618569487,2824.12,0.0,32180.0,1,3,2,3.0,2,3.0,0.0,1.0,0,1,0,0,0,1,0.0,3.0,14627.272727272726,2,0,2_1,2_0 +2059,10.0,10.0,57.0,112,47,50,0.0,12617,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1414.0428255362942,4732.0,0.0,78790.0,1,2,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31516.0,4,0,4_0,4_0 +2060,0.0,0.0,49.0,111,52,33,0.0,12618,0.0,0.0,0.0,461.0,1.0,4.0,0.0,1.0,1.0,1970.9890655855525,0.0,0.0,7272.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,7272.0,1,0,1_0,1_0 +2061,8.0,8.0,60.0,112,77,50,0.0,1262,0.0,0.0,500.0,145.0,0.0,5.0,0.0,1.0,1.0,3813.496847356085,783.12,0.0,19214.0,5,3,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,19214.0,3,0,3_1,3_0 +2062,7.0,7.0,72.0,400,78,71,0.0,12620,0.0,0.0,150.0,320.0,0.0,3.0,0.0,2.0,1.5,4813.850603551564,0.0,0.0,31150.0,5,3,0,1.0,3,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,20766.666666666668,3,0,3_0,3_0 +2063,3.0,5.0,54.0,112,52,50,0.0,12624,0.0,99999.0,0.0,612.0,2.0,5.0,1.0,3.0,2.0,2677.1240090442016,0.0,0.0,47609.0,1,3,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23804.5,4,0,4_0,4_0 +2064,1.0,8.0,45.0,111,52,50,2.0,12625,0.0,0.0,99999.0,300.0,1.0,3.0,3.0,4.0,2.3,504.880064467916,0.0,2000.0,28674.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,12466.956521739132,1,0,1_1,1_0 +2065,2.0,2.0,60.0,111,46,71,0.0,12627,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,3088.9354103162277,0.0,0.0,64231.0,1,1,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,42820.666666666664,5,0,5,5_0 +2066,1.0,14.0,59.0,111,74,31,2.0,12628,0.0,0.0,0.0,301.0,1.0,4.0,2.0,3.0,2.0,2828.8742082133567,0.0,2300.0,40769.0,7,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20384.5,3,0,3_0,3_0 +2067,2.0,7.0,66.0,111,74,60,0.0,12629,0.0,340.0,0.0,550.0,1.0,3.0,0.0,2.0,1.5,2349.2394245526657,1560.0,0.0,45893.0,5,3,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,30595.333333333332,4,0,4_0,4_0 +2068,7.0,7.0,54.0,221,62,60,0.0,1263,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,5516.40422986154,3120.0,0.0,47625.0,1,1,1,2.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,31750.0,4,0,4_0,4_0 +2069,1.0,10.0,85.0,111,78,50,0.0,12630,0.0,20.0,80.0,0.0,0.0,3.0,0.0,1.0,1.0,2700.487229811481,0.0,0.0,17630.0,5,4,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,17630.0,2,0,2_0,2_0 +2070,0.0,0.0,42.0,112,54,41,0.0,12633,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1998.0813903022308,2860.0,0.0,46668.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22222.85714285714,3,0,3_0,3_1 +2071,1.0,1.0,63.0,111,74,12,1.0,12634,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2333.918074691368,5877.04,19000.0,182424.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,121616.0,5,0,5,5_0 +2072,0.0,0.0,64.0,300,75,42,0.0,12635,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2065.83119625688,3120.0,0.0,29330.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19553.333333333332,3,0,3_0,3_1 +2073,0.0,0.0,68.0,111,74,12,0.0,12636,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1760.8584112024348,1040.0,0.0,46361.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30907.333333333332,4,0,4_0,4_0 +2074,1.0,13.0,53.0,112,54,50,2.0,12637,0.0,124.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2186.9299378622836,1563.64,3000.0,15476.0,1,1,9,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15476.0,2,0,2_0,2_0 +2075,0.0,0.0,20.0,111,84,42,0.0,12638,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2693.477884574197,2641.6,0.0,10393.0,3,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10393.0,1,0,1_1,1_0 +2076,0.0,5.0,39.0,112,37,30,2.0,12639,0.0,400.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2332.89770615861,8051.16,10900.0,77553.0,1,3,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,43085.0,5,0,5,5_0 +2077,0.0,0.0,69.0,211,71,50,0.0,12640,0.0,0.0,0.0,0.0,1.0,9.0,1.0,3.0,2.0,2216.5625764529846,0.0,0.0,42927.0,5,1,1,3.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21463.5,3,0,3_0,3_0 +2078,0.0,0.0,39.0,112,64,43,0.0,12641,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1235.7593190065213,0.0,0.0,57716.0,1,2,10,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27483.809523809523,4,0,4_0,4_0 +2079,0.0,0.0,77.0,111,75,31,0.0,12642,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2482.0541846235847,884.0,0.0,49421.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32947.333333333336,5,0,5,5_0 +2080,15.0,15.0,29.0,111,52,43,0.0,12643,0.0,0.0,99999.0,0.0,1.0,2.0,0.0,1.0,1.0,3041.1110128318237,2860.0,0.0,17396.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17396.0,2,0,2_0,2_0 +2081,0.0,0.0,35.0,111,47,31,0.0,12645,0.0,0.0,0.0,460.0,2.0,3.0,3.0,5.0,2.4,4359.290282947197,231.92,0.0,58140.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24225.0,4,0,4_0,4_0 +2082,0.0,0.0,37.0,111,47,31,0.0,12646,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2841.3685399603983,0.0,0.0,59604.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,33113.333333333336,5,0,5,5_0 +2083,3.0,11.0,41.0,111,54,31,0.0,12647,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1349.7785592280663,2598.96,0.0,51380.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,39523.07692307692,5,0,5,5_0 +2084,2.0,12.0,37.0,221,37,30,0.0,12649,0.0,0.0,450.0,20.0,1.0,3.0,1.0,2.0,1.3,1395.3728440426528,0.0,0.0,12595.0,4,3,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,9688.461538461539,1,0,1_1,1_0 +2085,0.0,0.0,54.0,111,37,42,0.0,1265,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1738.2117605494836,2185.04,0.0,63845.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31922.5,5,0,5,5_0 +2086,8.0,8.0,60.0,120,33,20,0.0,12650,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1504.8257831102644,0.0,0.0,87422.0,1,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,58281.333333333336,5,0,5,5_0 +2087,21.0,21.0,47.0,111,33,20,0.0,12651,0.0,0.0,0.0,660.0,1.0,3.0,0.0,1.0,1.0,2684.932735170816,0.0,0.0,58275.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,58275.0,5,0,5,5_0 +2088,3.0,3.0,62.0,111,46,31,0.0,12653,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2159.9968061216837,0.0,0.0,35381.0,1,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,35381.0,5,0,5,5_0 +2089,8.0,31.0,40.0,112,54,30,0.0,12654,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2963.121894495673,3269.76,0.0,76521.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,36438.57142857143,5,0,5,5_1 +2090,5.0,5.0,28.0,111,52,50,0.0,12655,0.0,0.0,570.0,170.0,1.0,3.0,1.0,2.0,1.3,3989.089637356398,2600.0,0.0,20410.0,1,3,4,3.0,2,2.0,0.0,1.0,0,1,0,0,0,1,2.0,0.0,15700.0,2,0,2_1,2_0 +2091,21.0,21.0,48.0,111,67,50,0.0,12657,0.0,199998.0,99999.0,580.0,2.0,5.0,2.0,4.0,2.1,966.749107315063,1040.0,0.0,30130.0,1,3,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,14347.619047619048,2,0,2_0,2_0 +2092,9.0,11.0,33.0,300,21,71,0.0,12658,0.0,100029.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3647.8041711924957,0.0,0.0,17394.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,8282.857142857143,1,0,1_0,1_1 +2093,7.0,16.0,30.0,111,85,50,0.0,12659,0.0,100.0,75.0,0.0,0.0,2.0,1.0,2.0,1.3,1439.6482159957711,0.0,0.0,14290.0,4,3,10,8.0,2,3.0,0.0,1.0,0,0,0,0,1,1,1.0,2.0,10992.307692307691,1,0,1_1,1_0 +2094,5.0,13.0,54.0,112,47,42,0.0,1266,0.0,100.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2218.9395559395916,3018.6,0.0,39006.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26004.0,4,0,4_0,4_1 +2095,3.0,3.0,59.0,111,37,41,0.0,12660,0.0,900.0,140.0,0.0,1.0,6.0,0.0,1.0,1.0,1467.665742539019,2320.76,0.0,58676.0,1,2,6,4.0,1,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,58676.0,5,0,5,5_0 +2096,9.0,9.0,60.0,112,46,44,0.0,12661,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2009.1564806174297,1820.0,0.0,41503.0,1,3,7,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16601.2,2,0,2_0,2_0 +2097,1.0,1.0,50.0,221,37,60,1.0,12663,0.0,150.0,30.0,0.0,1.0,4.0,0.0,2.0,1.5,1163.6937237915886,1560.0,13000.0,58162.0,1,2,1,3.0,3,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,38774.666666666664,5,0,5,5_0 +2098,0.0,7.0,56.0,112,37,41,0.0,12665,0.0,430.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2593.5852769066973,2340.0,0.0,20445.0,4,1,7,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,20445.0,3,0,3_0,3_1 +2099,6.0,6.0,76.0,112,74,70,0.0,12666,0.0,199998.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1632.4976500889784,0.0,0.0,53550.0,5,1,10,3.0,3,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,35700.0,5,0,5,5_0 +2100,7.0,11.0,64.0,111,77,70,0.0,12668,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1927.3981694498818,0.0,0.0,27285.0,5,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18190.0,2,0,2_0,2_0 +2101,0.0,0.0,47.0,300,47,41,0.0,12669,0.0,0.0,0.0,0.0,2.0,8.0,5.0,7.0,3.6,295.8200104033064,3640.0,0.0,46180.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12827.777777777777,1,0,1_0,1_1 +2102,2.0,9.0,57.0,111,54,50,0.0,1267,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,3935.3007799026354,2080.0,0.0,65179.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,26071.6,4,0,4_0,4_0 +2103,7.0,19.0,21.0,111,84,41,0.0,12671,0.0,0.0,150.0,484.0,0.0,4.0,0.0,2.0,1.5,1647.0173240687166,4497.48,0.0,11062.0,3,3,8,7.0,5,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,7374.666666666667,1,0,1_1,1_0 +2104,17.0,17.0,32.0,111,55,50,0.0,12672,0.0,0.0,90.0,260.0,1.0,2.0,1.0,2.0,1.3,3881.144953977651,0.0,0.0,14821.0,1,3,9,7.0,2,4.0,0.0,0.0,0,0,0,1,0,1,3.0,1.0,11400.76923076923,1,0,1_1,1_0 +2105,16.0,16.0,33.0,111,55,60,0.0,12673,0.0,0.0,0.0,0.0,1.0,5.0,4.0,5.0,2.4,458.6622343004108,1040.0,0.0,26214.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,10922.5,1,0,1_0,1_0 +2106,0.0,0.0,35.0,111,56,60,0.0,12674,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1383.8685602815474,0.0,0.0,19064.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14664.615384615385,2,0,2_1,2_0 +2107,5.0,5.0,38.0,120,46,43,0.0,12676,0.0,150.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2545.146579059531,972.4,0.0,46135.0,1,2,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,21969.04761904762,3,0,3_0,3_1 +2108,0.0,0.0,34.0,111,85,31,0.0,12677,0.0,0.0,0.0,128.0,0.0,7.0,2.0,3.0,1.6,362.99426935442904,1560.52,0.0,20156.0,8,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12597.5,1,0,1_1,1_0 +2109,8.0,8.0,75.0,400,75,41,0.0,12678,0.0,270.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3104.6990993204545,1774.2399999999998,0.0,21411.0,5,4,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21411.0,3,0,3_0,3_1 +2110,4.0,4.0,72.0,112,74,30,0.0,12679,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2157.7579198798085,3156.4,0.0,66050.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,44033.333333333336,5,0,5,5_1 +2111,0.0,3.0,75.0,111,78,71,0.0,12680,0.0,0.0,880.0,514.0,2.0,3.0,2.0,3.0,2.0,4219.146962525339,0.0,0.0,33755.0,5,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,16877.5,2,0,2_0,2_0 +2112,1.0,32.0,19.0,111,84,41,2.0,12681,0.0,300.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2450.285522133195,0.0,4500.0,10302.0,3,3,8,7.0,1,3.0,0.0,0.0,0,0,0,1,0,1,1.0,2.0,10302.0,1,0,1_1,1_0 +2113,0.0,0.0,47.0,400,48,31,0.0,12682,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2068.0975552943178,3276.0,0.0,66514.0,1,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28919.13043478261,4,0,4_0,4_0 +2114,0.0,16.0,52.0,111,54,50,0.0,12683,0.0,30.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1762.165885504764,0.0,0.0,30868.0,1,3,4,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15434.0,2,0,2_0,2_0 +2115,2.0,3.0,42.0,111,68,71,0.0,12684,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,471.1565052908861,0.0,0.0,19630.0,4,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12268.75,1,0,1_1,1_0 +2116,2.0,19.0,56.0,221,34,20,0.0,12685,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.8,1512.8787512245883,2080.0,0.0,70651.0,1,2,3,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25232.5,4,0,4_0,4_0 +2117,0.0,0.0,49.0,111,37,60,0.0,12687,0.0,0.0,0.0,0.0,2.0,7.0,5.0,6.0,3.1,520.4935803144494,1095.64,0.0,44950.0,4,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14500.0,2,0,2_0,2_0 +2118,16.0,19.0,46.0,111,42,30,0.0,12688,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1153.2414690446553,962.0,0.0,36152.0,1,2,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,18076.0,2,0,2_0,2_0 +2119,0.0,0.0,61.0,112,75,41,0.0,12689,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1848.213775127059,2600.0,0.0,53734.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35822.666666666664,5,0,5,5_1 +2120,4.0,7.0,46.0,111,63,50,0.0,1269,0.0,0.0,0.0,333.0,1.0,2.0,0.0,1.0,1.0,2969.606548967073,0.0,0.0,10710.0,4,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,10710.0,1,0,1_0,1_0 +2121,3.0,15.0,70.0,221,78,70,0.0,12690,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3965.9346165382067,0.0,0.0,22610.0,5,4,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22610.0,3,0,3_0,3_0 +2122,0.0,0.0,75.0,221,74,12,0.0,12691,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2146.191357497023,0.0,0.0,43679.0,5,1,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29119.333333333332,4,0,4_0,4_0 +2123,2.0,4.0,34.0,111,38,12,0.0,12692,0.0,150.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3416.989846681299,0.0,0.0,37503.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,37503.0,5,0,5,5_0 +2124,17.0,17.0,54.0,111,52,60,0.0,12694,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1395.804774961724,4414.8,0.0,52233.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26116.5,4,0,4_0,4_0 +2125,6.0,10.0,79.0,111,74,60,0.0,12695,0.0,150.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1487.4346500681083,0.0,0.0,73410.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,48940.0,5,0,5,5_0 +2126,3.0,16.0,64.0,221,65,50,0.0,12697,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2490.0298843582946,0.0,0.0,31007.0,1,3,1,3.0,5,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20671.333333333332,3,0,3_0,3_0 +2127,4.0,11.0,22.0,111,84,41,0.0,12698,0.0,0.0,0.0,530.0,0.0,3.0,0.0,1.0,1.0,2052.59831740729,0.0,0.0,4203.0,3,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,4203.0,1,0,1_1,1_0 +2128,12.0,12.0,74.0,112,78,70,0.0,12699,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2408.2253168706993,0.0,0.0,14560.0,5,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14560.0,2,0,2_0,2_1 +2129,0.0,0.0,23.0,112,85,50,0.0,127,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,6633.094411014925,1040.0,0.0,13111.0,4,3,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8740.666666666666,1,0,1_1,1_0 +2130,1.0,5.0,76.0,112,71,70,2.0,1270,0.0,0.0,0.0,417.0,0.0,3.0,0.0,2.0,1.5,2053.7745417806136,0.0,11000.0,18391.0,5,3,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12260.666666666666,1,0,1_0,1_1 +2131,7.0,21.0,76.0,300,78,70,0.0,12700,0.0,200.0,15.0,0.0,0.0,3.0,0.0,1.0,1.0,2494.2707741549234,1404.0,0.0,14740.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14740.0,2,0,2_0,2_1 +2132,21.0,21.0,67.0,111,78,50,0.0,12701,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1802.4773485605963,2324.4,0.0,14671.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14671.0,2,0,2_0,2_0 +2133,1.0,1.0,34.0,111,85,60,1.0,12702,0.0,200.0,0.0,262.0,0.0,3.0,1.0,2.0,1.3,3042.412203038395,0.0,12000.0,18986.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,14604.615384615385,2,0,2_1,2_0 +2134,8.0,8.0,83.0,112,72,70,0.0,12703,0.0,0.0,0.0,348.0,0.0,4.0,1.0,2.0,1.5,4977.945554577572,0.0,0.0,15897.0,5,3,8,1.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,10598.0,1,0,1_1,1_0 +2135,0.0,0.0,66.0,120,72,50,0.0,12704,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1523.8145086885427,2080.0,0.0,34875.0,5,1,0,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23250.0,3,0,3_0,3_0 +2136,0.0,0.0,38.0,112,68,71,1.0,12706,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,555.6370462094688,0.0,13129.0,16678.0,1,3,4,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,11118.666666666666,1,0,1_1,1_1 +2137,2.0,8.0,72.0,300,75,41,0.0,12709,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1510.0965626796292,2544.36,0.0,36755.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24503.333333333332,4,0,4_0,4_0 +2138,0.0,0.0,79.0,111,77,60,1.0,1271,0.0,130.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1797.8921870234851,0.0,33000.0,34914.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23276.0,3,0,3_0,3_0 +2139,5.0,5.0,32.0,112,43,30,0.0,12710,0.0,0.0,99999.0,649.0,2.0,3.0,1.0,3.0,1.8,1248.9146311890863,1560.0,0.0,43485.0,1,3,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,24158.333333333332,4,0,4_0,4_0 +2140,5.0,5.0,36.0,112,21,42,0.0,12711,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2685.6825381414087,0.0,0.0,8842.0,1,1,7,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,8842.0,1,0,1_0,1_0 +2141,3.0,3.0,87.0,400,86,30,0.0,12712,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1661.2083609910876,0.0,0.0,19018.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,19018.0,3,0,3_0,3_1 +2142,4.0,4.0,28.0,120,42,30,0.0,12713,0.0,100.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2419.9948388354496,3147.04,0.0,47882.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,31921.333333333332,5,0,5,5_1 +2143,1.0,1.0,29.0,112,63,31,1.0,12715,0.0,540.0,0.0,369.0,1.0,3.0,2.0,4.0,2.1,2905.7295997601905,2080.52,20400.0,22838.0,1,3,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,10875.238095238095,1,0,1_1,1_0 +2144,17.0,17.0,60.0,111,46,71,0.0,12716,0.0,0.0,0.0,553.0,2.0,4.0,1.0,3.0,2.0,3801.098544572886,1300.0,0.0,29220.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,14610.0,2,0,2_0,2_0 +2145,3.0,10.0,94.0,111,86,70,0.0,12717,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3390.5124884802062,0.0,0.0,6650.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,6650.0,1,0,1_0,1_0 +2146,5.0,7.0,26.0,211,65,50,0.0,1272,0.0,500.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2212.6939944145906,0.0,0.0,18100.0,1,3,3,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18100.0,2,0,2_0,2_0 +2147,6.0,6.0,39.0,111,67,50,0.0,12721,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2080.26523389094,0.0,0.0,12528.0,4,4,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,12528.0,1,0,1_0,1_0 +2148,3.0,14.0,42.0,300,12,44,0.0,12722,0.0,364.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1569.2289531835129,5405.92,0.0,130964.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,50370.76923076923,5,0,5,5_0 +2149,12.0,14.0,63.0,300,77,50,0.0,12724,0.0,120.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1341.7883574842451,4212.0,0.0,38240.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25493.333333333332,4,0,4_0,4_1 +2150,1.0,1.0,26.0,111,46,41,1.0,12725,0.0,0.0,50.0,0.0,1.0,2.0,0.0,1.0,1.0,3426.4339648132504,0.0,12100.0,28415.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,28415.0,4,0,4_0,4_0 +2151,2.0,13.0,56.0,211,37,12,0.0,12726,0.0,0.0,550.0,0.0,1.0,7.0,0.0,2.0,1.5,2706.9695948674507,2602.08,0.0,84163.0,1,2,1,3.0,3,3.0,0.0,1.0,0,1,0,0,0,0,3.0,0.0,56108.666666666664,5,0,5,5_0 +2152,0.0,3.0,42.0,112,64,50,0.0,12727,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,3095.913610464819,1040.0,0.0,49210.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18926.923076923078,3,0,3_0,3_1 +2153,0.0,0.0,72.0,111,75,71,0.0,12728,0.0,0.0,0.0,313.0,0.0,3.0,0.0,1.0,1.0,1967.679126386676,0.0,0.0,24345.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24345.0,4,0,4_0,4_0 +2154,0.0,0.0,69.0,111,74,60,0.0,12729,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4498.994950379687,0.0,0.0,24019.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24019.0,4,0,4_0,4_0 +2155,6.0,6.0,54.0,111,33,20,0.0,1273,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1841.8775849966255,3956.16,0.0,74192.0,1,4,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,37096.0,5,0,5,5_0 +2156,0.0,0.0,79.0,221,78,70,0.0,12730,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,4493.329097806238,0.0,0.0,17893.0,5,4,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17893.0,2,0,2_0,2_0 +2157,2.0,8.0,34.0,112,42,30,0.0,12731,0.0,900.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2755.840032187494,995.8,0.0,55640.0,1,1,10,3.0,5,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,37093.333333333336,5,0,5,5_0 +2158,2.0,2.0,30.0,111,69,50,0.0,12732,0.0,240.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1918.72212498157,5721.04,0.0,34021.0,1,3,7,6.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,18900.555555555555,3,0,3_0,3_0 +2159,4.0,11.0,67.0,111,78,70,0.0,12734,0.0,200.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1960.6997895056013,0.0,0.0,26210.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26210.0,4,0,4_0,4_0 +2160,5.0,5.0,21.0,111,54,41,0.0,12735,0.0,0.0,100.0,0.0,1.0,1.0,0.0,1.0,1.0,2824.651720027512,0.0,0.0,10485.0,3,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,10485.0,1,0,1_0,1_0 +2161,8.0,9.0,21.0,111,52,41,0.0,12736,0.0,60.0,0.0,490.0,2.0,3.0,0.0,2.0,1.5,9688.330151410568,4134.52,0.0,25560.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,17040.0,2,0,2_1,2_0 +2162,2.0,4.0,38.0,111,33,31,2.0,12737,0.0,700.0,150.0,850.0,1.0,3.0,2.0,3.0,1.6,2516.022663246856,0.0,16000.0,35417.0,1,3,9,7.0,2,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,22135.625,3,0,3_0,3_0 +2163,0.0,0.0,24.0,111,56,43,0.0,12738,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2789.550693162292,2600.0,0.0,35395.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23596.666666666668,3,0,3_0,3_0 +2164,2.0,2.0,65.0,111,46,30,0.0,12739,0.0,0.0,300.0,0.0,2.0,3.0,0.0,2.0,1.5,2108.7937553785614,0.0,0.0,35680.0,1,4,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,23786.666666666668,3,0,3_0,3_0 +2165,0.0,2.0,71.0,111,78,70,2.0,1274,0.0,400.0,120.0,435.0,0.0,3.0,0.0,2.0,1.5,1464.9343596288552,1926.6,14000.0,29034.0,5,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,19356.0,3,0,3_0,3_0 +2166,1.0,1.0,34.0,112,52,42,1.0,12740,0.0,1200.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1831.3925168951343,0.0,13300.0,41971.0,1,4,8,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,27980.666666666668,4,0,4_0,4_1 +2167,4.0,4.0,42.0,111,31,20,0.0,12741,0.0,0.0,99999.0,0.0,2.0,9.0,2.0,4.0,2.1,2050.0608860936677,0.0,0.0,121350.0,1,1,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,57785.71428571428,5,0,5,5_0 +2168,5.0,5.0,71.0,112,74,12,0.0,12742,0.0,360.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2130.7241901499915,2808.0,0.0,53549.0,5,1,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,35699.333333333336,5,0,5,5_1 +2169,0.0,0.0,30.0,111,34,10,0.0,12743,0.0,0.0,0.0,700.0,2.0,2.0,0.0,2.0,1.5,774.1983354425284,0.0,0.0,63501.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,42334.0,5,0,5,5_0 +2170,13.0,13.0,21.0,111,37,30,0.0,12745,0.0,0.0,0.0,680.0,2.0,2.0,0.0,2.0,1.5,3073.236848848018,4420.0,0.0,48574.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,32382.666666666668,5,0,5,5_0 +2171,0.0,0.0,70.0,111,75,60,0.0,12747,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1633.535404286285,1560.0,0.0,16715.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16715.0,2,0,2_0,2_0 +2172,5.0,5.0,46.0,111,47,20,0.0,12748,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2652.490262166705,0.0,0.0,66239.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26495.6,4,0,4_0,4_0 +2173,0.0,0.0,72.0,112,74,44,1.0,12749,0.0,0.0,600.0,0.0,0.0,4.0,0.0,2.0,1.5,1677.2760752063357,0.0,21500.0,54200.0,5,1,9,1.0,3,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,36133.333333333336,5,0,5,5_0 +2174,0.0,16.0,77.0,400,75,50,0.0,1275,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,2011.9575552262231,2297.36,0.0,44097.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,29398.0,4,0,4_0,4_1 +2175,6.0,6.0,36.0,111,33,20,0.0,12751,0.0,0.0,0.0,692.0,1.0,1.0,0.0,1.0,1.0,3424.95431618561,0.0,0.0,30164.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30164.0,4,0,4_0,4_0 +2176,3.0,9.0,61.0,111,77,50,0.0,12752,0.0,840.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3005.1284669288198,2174.12,0.0,20966.0,5,1,7,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20966.0,3,0,3_0,3_0 +2177,5.0,10.0,49.0,111,22,60,0.0,12753,0.0,200.0,0.0,0.0,1.0,5.0,3.0,5.0,3.0,487.48403299704165,2340.0,0.0,85904.0,1,1,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28634.666666666668,4,0,4_0,4_0 +2178,7.0,7.0,68.0,111,75,33,0.0,12754,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1422.6405260185481,0.0,0.0,39064.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26042.666666666668,4,0,4_0,4_0 +2179,2.0,11.0,74.0,111,86,71,0.0,12756,0.0,0.0,0.0,431.0,0.0,5.0,0.0,1.0,1.0,2732.183669844476,0.0,0.0,17470.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,17470.0,2,0,2_0,2_0 +2180,9.0,9.0,58.0,211,42,41,0.0,12757,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1231.0907173469086,0.0,0.0,65403.0,1,1,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,32701.5,5,0,5,5_0 +2181,6.0,6.0,91.0,111,77,70,0.0,12758,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2969.7845421724737,0.0,0.0,26167.0,5,4,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26167.0,4,0,4_0,4_0 +2182,0.0,0.0,65.0,111,74,44,0.0,12760,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2016.288965469617,2964.0,0.0,41661.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27774.0,4,0,4_0,4_0 +2183,2.0,2.0,27.0,111,54,30,0.0,12762,0.0,400.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3632.8046524600104,0.0,0.0,45082.0,1,2,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30054.666666666668,4,0,4_0,4_0 +2184,0.0,0.0,56.0,111,63,70,0.0,12763,0.0,0.0,0.0,360.0,1.0,3.0,0.0,1.0,1.0,2269.2567029844727,0.0,0.0,17310.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17310.0,2,0,2_0,2_0 +2185,10.0,16.0,32.0,212,48,43,0.0,12767,0.0,180.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2641.873145485674,3380.0,0.0,39850.0,1,2,4,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,22138.888888888887,3,0,3_0,3_1 +2186,17.0,17.0,65.0,111,77,33,0.0,12768,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3555.348868532065,0.0,0.0,9593.0,5,1,10,8.0,1,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,9593.0,1,0,1_0,1_0 +2187,3.0,3.0,38.0,111,62,50,0.0,1277,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,1367.4521016084732,0.0,0.0,39520.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,16466.666666666668,2,0,2_1,2_0 +2188,9.0,9.0,37.0,400,65,71,0.0,12770,0.0,0.0,350.0,0.0,2.0,4.0,1.0,3.0,2.0,2085.6686387496275,0.0,0.0,28075.0,1,2,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,1,1.0,0.0,14037.5,2,0,2_1,2_1 +2189,14.0,14.0,78.0,111,31,10,0.0,12771,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2479.283802949278,2340.0,0.0,94750.0,1,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,63166.666666666664,5,0,5,5_0 +2190,16.0,22.0,81.0,111,78,71,0.0,12772,0.0,0.0,0.0,301.0,0.0,2.0,0.0,2.0,1.5,1992.4912859611968,0.0,0.0,24074.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16049.333333333334,2,0,2_0,2_0 +2191,11.0,16.0,70.0,111,72,31,0.0,12773,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2309.3815753694607,0.0,0.0,72125.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,72125.0,5,0,5,5_0 +2192,0.0,0.0,48.0,112,52,50,0.0,12775,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,970.5050682385515,0.0,0.0,24258.0,1,3,10,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,18660.0,2,0,2_1,2_0 +2193,0.0,0.0,54.0,300,52,50,0.0,12777,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2396.2221370317443,5499.0,0.0,48983.0,1,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24491.5,4,0,4_0,4_0 +2194,1.0,1.0,76.0,111,77,70,1.0,12778,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5280.341411585762,4420.0,24900.0,13480.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13480.0,1,0,1_0,1_0 +2195,5.0,7.0,81.0,111,72,50,0.0,1278,0.0,200.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2256.807065501708,2079.48,0.0,41253.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27502.0,4,0,4_0,4_0 +2196,9.0,14.0,46.0,300,54,31,0.0,12780,0.0,0.0,750.0,0.0,1.0,6.0,1.0,4.0,2.3,3472.601580303891,0.0,0.0,68543.0,1,2,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,29801.304347826088,4,0,4_0,4_1 +2197,1.0,15.0,89.0,400,86,70,0.0,12782,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,2479.594364929587,0.0,0.0,24920.0,5,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16613.333333333332,2,0,2_0,2_1 +2198,3.0,4.0,47.0,111,56,42,0.0,12783,0.0,0.0,0.0,18.0,1.0,2.0,0.0,1.0,1.0,3449.714966937154,0.0,0.0,13728.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,13728.0,1,0,1_1,1_0 +2199,4.0,4.0,84.0,111,71,70,0.0,12784,0.0,500.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2046.0994334099141,0.0,0.0,13797.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,13797.0,1,0,1_0,1_0 +2200,0.0,0.0,49.0,111,21,50,0.0,12785,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2358.289001978993,0.0,0.0,20993.0,1,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13995.333333333334,2,0,2_0,2_0 +2201,1.0,2.0,45.0,111,62,50,2.0,12786,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1673.015260152109,1040.0,15800.0,48693.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,24346.5,4,0,4_0,4_0 +2202,3.0,14.0,70.0,300,75,31,0.0,12788,0.0,300.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2604.3336746510377,2706.08,0.0,54386.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36257.333333333336,5,0,5,5_1 +2203,0.0,0.0,71.0,111,78,50,0.0,1279,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2862.5900120179067,0.0,0.0,35340.0,5,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23560.0,3,0,3_0,3_0 +2204,0.0,0.0,57.0,111,46,41,0.0,12791,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3809.6497552927262,0.0,0.0,30017.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30017.0,4,0,4_0,4_0 +2205,11.0,13.0,59.0,211,12,50,0.0,12793,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1947.3697913822932,3680.56,0.0,18395.0,1,1,2,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,12263.333333333334,1,0,1_0,1_0 +2206,10.0,11.0,86.0,111,86,71,0.0,12794,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1874.07138887693,0.0,0.0,11103.0,5,1,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,11103.0,1,0,1_0,1_0 +2207,0.0,0.0,51.0,120,54,50,0.0,12795,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1962.0932372786876,0.0,0.0,20964.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13976.0,2,0,2_0,2_0 +2208,3.0,5.0,58.0,112,52,42,0.0,12796,0.0,200.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,735.1966337847206,0.0,0.0,27014.0,1,1,9,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18009.333333333332,2,0,2_0,2_1 +2209,18.0,20.0,64.0,111,75,31,0.0,12798,0.0,0.0,350.0,0.0,0.0,4.0,1.0,2.0,1.3,1637.8403935558874,0.0,0.0,30025.0,5,1,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,23096.153846153844,3,0,3_0,3_0 +2210,4.0,4.0,48.0,111,37,20,0.0,128,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2670.3503228078616,0.0,0.0,65902.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,65902.0,5,0,5,5_0 +2211,5.0,15.0,45.0,111,68,50,0.0,12805,0.0,0.0,220.0,0.0,1.0,4.0,0.0,1.0,1.0,1377.6275779306109,0.0,0.0,24061.0,1,2,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,24061.0,4,0,4_0,4_0 +2212,6.0,6.0,33.0,0,33,33,0.0,12807,0.0,0.0,0.0,392.0,1.0,3.0,1.0,2.0,1.3,240.73590250522656,2129.92,0.0,25435.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19565.384615384613,3,0,3_0,3_1 +2213,0.0,0.0,59.0,112,52,71,0.0,12808,0.0,0.0,0.0,0.0,1.0,4.0,4.0,5.0,3.0,771.0171574158828,0.0,0.0,36401.0,1,3,10,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12133.666666666666,1,0,1_1,1_0 +2214,1.0,24.0,38.0,111,63,50,2.0,12809,0.0,700.0,100069.0,764.0,2.0,5.0,3.0,5.0,2.6,1991.673048237992,1450.7999999999997,500.0,51678.0,1,3,4,4.0,4,3.0,0.0,1.0,0,0,1,0,0,1,2.0,1.0,19876.153846153844,3,0,3_1,3_0 +2215,0.0,0.0,54.0,120,54,31,0.0,12810,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1699.2525636749397,2600.52,0.0,61697.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,41131.333333333336,5,0,5,5_1 +2216,6.0,6.0,49.0,111,63,50,0.0,12811,0.0,99999.0,99999.0,0.0,2.0,4.0,0.0,2.0,1.5,2335.0118947116257,0.0,0.0,51561.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,34374.0,5,0,5,5_0 +2217,3.0,3.0,27.0,112,37,50,0.0,12814,0.0,0.0,0.0,410.0,1.0,2.0,0.0,1.0,1.0,5975.576345490203,0.0,0.0,20392.0,1,3,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20392.0,3,0,3_0,3_0 +2218,2.0,18.0,59.0,111,77,41,0.0,12816,0.0,100.0,300.0,0.0,3.0,6.0,3.0,5.0,3.0,3302.4810753165953,1040.0,0.0,28027.0,5,1,4,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,9342.333333333334,1,0,1_0,1_0 +2219,0.0,0.0,47.0,111,21,50,0.0,12817,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,957.706175482557,1055.6000000000001,0.0,17834.0,1,1,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,9907.777777777777,1,0,1_0,1_0 +2220,4.0,10.0,33.0,112,56,50,0.0,12818,0.0,150.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,962.4389135591521,1040.0,0.0,19378.0,1,2,9,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,14906.153846153846,2,0,2_1,2_0 +2221,6.0,16.0,51.0,111,38,41,0.0,12819,0.0,160.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2260.0595419682004,7543.639999999999,0.0,53936.0,1,1,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,21574.4,3,0,3_0,3_0 +2222,0.0,0.0,76.0,111,74,30,0.0,1282,0.0,700.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3541.71231247238,0.0,0.0,82310.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,54873.333333333336,5,0,5,5_0 +2223,2.0,2.0,30.0,112,38,12,0.0,12821,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2431.2269393638,3546.4,0.0,55526.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,37017.333333333336,5,0,5,5_1 +2224,2.0,4.0,44.0,221,56,43,0.0,12822,0.0,0.0,0.0,90.0,2.0,3.0,2.0,3.0,2.0,785.6655436265721,2340.0,0.0,16460.0,4,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,8230.0,1,0,1_1,1_0 +2225,0.0,0.0,58.0,111,46,60,0.0,12824,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2625.7687337542266,0.0,0.0,24160.0,1,2,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24160.0,4,0,4_0,4_0 +2226,11.0,16.0,58.0,111,52,50,0.0,12825,0.0,0.0,0.0,392.0,3.0,1.0,1.0,3.0,2.0,2302.4854633699542,2600.0,0.0,57853.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,28926.5,4,0,4_0,4_0 +2227,2.0,5.0,32.0,221,21,50,0.0,12826,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3112.2464078031567,7113.6,0.0,50881.0,1,3,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,28267.222222222223,4,0,4_0,4_0 +2228,0.0,0.0,37.0,111,33,20,1.0,12828,0.0,0.0,0.0,385.0,1.0,1.0,0.0,1.0,1.0,5535.511499567206,0.0,19450.0,40380.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,40380.0,5,0,5,5_0 +2229,2.0,6.0,78.0,111,75,44,0.0,12829,0.0,100.0,150.0,0.0,0.0,4.0,0.0,2.0,1.5,1800.43963192022,1144.0,0.0,62820.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,41880.0,5,0,5,5_0 +2230,0.0,0.0,93.0,112,77,71,0.0,1283,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3542.8983750129773,0.0,0.0,15110.0,5,4,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10073.333333333334,1,0,1_0,1_1 +2231,2.0,2.0,44.0,120,63,50,0.0,12830,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1786.0598279597361,0.0,0.0,18843.0,1,2,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,9421.5,1,0,1_0,1_0 +2232,3.0,11.0,73.0,111,75,60,0.0,12831,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3098.597246126758,0.0,0.0,33384.0,5,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22256.0,3,0,3_0,3_0 +2233,0.0,0.0,58.0,111,74,12,0.0,12832,0.0,0.0,0.0,0.0,1.0,7.0,2.0,4.0,2.5,3227.2756704356802,1716.0,0.0,95149.0,5,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38059.6,5,0,5,5_0 +2234,2.0,3.0,51.0,112,68,71,0.0,12833,0.0,250.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,907.8225821630324,0.0,0.0,15660.0,4,3,8,2.0,2,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,7830.0,1,0,1_0,1_0 +2235,0.0,0.0,81.0,111,78,71,0.0,12834,0.0,0.0,0.0,340.0,0.0,2.0,0.0,2.0,1.5,3659.6869919968026,812.24,0.0,27080.0,5,3,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18053.333333333332,2,0,2_0,2_0 +2236,0.0,0.0,31.0,112,35,31,0.0,12835,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2463.3632505590085,0.0,0.0,38383.0,1,2,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25588.666666666668,4,0,4_0,4_0 +2237,19.0,19.0,38.0,112,48,43,0.0,12836,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2130.290792534861,0.0,0.0,51779.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24656.666666666664,4,0,4_0,4_1 +2238,4.0,4.0,59.0,211,52,50,0.0,12837,0.0,0.0,50.0,0.0,1.0,3.0,0.0,1.0,1.0,639.8923849080502,0.0,0.0,12834.0,1,3,3,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,12834.0,1,0,1_0,1_0 +2239,4.0,4.0,53.0,112,52,50,0.0,12839,0.0,30.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1988.6228918852848,3036.28,0.0,44319.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22159.5,3,0,3_0,3_1 +2240,0.0,0.0,58.0,111,75,50,0.0,1284,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2521.7624039066577,0.0,0.0,21302.0,7,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14201.333333333334,2,0,2_1,2_0 +2241,4.0,4.0,62.0,112,37,30,0.0,12841,0.0,300.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1783.506786651142,2123.6800000000003,0.0,67283.0,5,1,7,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,44855.333333333336,5,0,5,5_0 +2242,5.0,7.0,61.0,111,56,44,0.0,12842,0.0,0.0,49.0,562.0,1.0,2.0,0.0,1.0,1.0,3925.056207342637,0.0,0.0,19830.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,19830.0,3,0,3_0,3_0 +2243,4.0,4.0,61.0,111,78,71,0.0,12844,0.0,370.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2259.76136278492,0.0,0.0,18540.0,5,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12360.0,1,0,1_1,1_0 +2244,0.0,0.0,25.0,112,81,60,0.0,12845,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,1.9,2464.5368639374988,0.0,0.0,15390.0,4,3,6,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8100.0,1,0,1_1,1_1 +2245,0.0,0.0,60.0,120,74,31,0.0,12846,0.0,0.0,0.0,0.0,0.0,14.0,1.0,3.0,2.0,2520.5896293051433,2152.7999999999997,0.0,37074.0,7,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18537.0,2,0,2_0,2_0 +2246,0.0,0.0,35.0,111,52,43,0.0,12849,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,689.8931327813644,0.0,0.0,24310.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15193.75,2,0,2_1,2_0 +2247,0.0,11.0,58.0,112,47,31,0.0,12850,0.0,200.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1490.0205638956725,0.0,0.0,63539.0,1,1,7,1.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,42359.333333333336,5,0,5,5_0 +2248,3.0,20.0,40.0,111,47,31,0.0,12851,0.0,99999.0,99999.0,450.0,1.0,2.0,0.0,1.0,1.0,3076.380900119075,2082.6,0.0,24002.0,1,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,24002.0,4,0,4_0,4_0 +2249,0.0,16.0,50.0,111,56,71,0.0,12852,0.0,0.0,0.0,530.0,4.0,5.0,3.0,4.0,2.5,1709.404079880477,579.28,0.0,52143.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20857.2,3,0,3_0,3_0 +2250,7.0,7.0,68.0,111,75,42,0.0,12853,0.0,200.0,100.0,0.0,0.0,4.0,0.0,2.0,1.5,1452.4751074333642,0.0,0.0,57055.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,38036.666666666664,5,0,5,5_0 +2251,5.0,10.0,32.0,111,38,12,0.0,12854,0.0,0.0,0.0,927.0,2.0,2.0,0.0,2.0,1.5,3547.6067518715054,2229.24,0.0,51380.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34253.333333333336,5,0,5,5_0 +2252,11.0,11.0,70.0,111,77,70,0.0,12856,0.0,0.0,32.0,0.0,0.0,5.0,0.0,1.0,1.0,2386.8988703875516,0.0,0.0,18632.0,5,1,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18632.0,2,0,2_0,2_0 +2253,5.0,16.0,60.0,221,78,71,0.0,12860,0.0,500.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2278.8503614459883,0.0,0.0,30452.0,5,1,3,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,20301.333333333332,3,0,3_0,3_0 +2254,10.0,10.0,67.0,221,75,30,0.0,12861,0.0,250.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1954.8430790179605,2698.28,0.0,33616.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22410.666666666668,3,0,3_0,3_0 +2255,0.0,0.0,53.0,111,42,30,0.0,12862,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2043.583857974745,1560.0,0.0,76706.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30682.4,4,0,4_0,4_0 +2256,0.0,4.0,23.0,111,46,30,0.0,12863,0.0,100.0,0.0,250.0,1.0,3.0,0.0,1.0,1.0,3546.7779410853973,0.0,0.0,20469.0,2,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,20469.0,3,0,3_1,3_0 +2257,6.0,6.0,48.0,111,85,20,0.0,12866,0.0,700.0,0.0,0.0,0.0,6.0,2.0,3.0,1.6,647.8069646732304,0.0,0.0,32843.0,8,1,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20526.875,3,0,3_0,3_0 +2258,15.0,19.0,69.0,111,78,71,0.0,12867,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2236.3305580018505,2459.6,0.0,18962.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,12641.333333333334,1,0,1_0,1_0 +2259,4.0,4.0,27.0,112,63,71,0.0,12868,0.0,0.0,100.0,0.0,2.0,4.0,1.0,3.0,1.8,3476.9371120799874,2052.44,0.0,45248.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,25137.777777777777,4,0,4_0,4_1 +2260,11.0,11.0,52.0,111,55,31,0.0,12869,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2807.247293648325,2043.6,0.0,26207.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26207.0,4,0,4_0,4_0 +2261,0.0,31.0,20.0,111,84,31,0.0,1287,0.0,1000.0,0.0,600.0,0.0,3.0,0.0,2.0,1.5,5295.625269741336,0.0,0.0,2700.0,3,3,9,7.0,5,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,1800.0,1,0,1_0,1_0 +2262,4.0,4.0,46.0,112,21,50,0.0,12870,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2482.835459409211,9100.0,0.0,53275.0,1,2,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21310.0,3,0,3_0,3_1 +2263,0.0,10.0,23.0,111,67,71,0.0,12871,0.0,250.0,0.0,154.0,2.0,2.0,0.0,2.0,1.5,2574.5379697564144,2028.0,0.0,27424.0,1,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,18282.666666666668,2,0,2_1,2_0 +2264,0.0,12.0,34.0,111,68,71,2.0,12874,0.0,550.0,0.0,0.0,1.0,1.0,1.0,2.0,1.3,2326.7112197304277,0.0,2500.0,12400.0,1,3,10,8.0,2,4.0,1.0,0.0,0,0,0,0,1,0,0.0,4.0,9538.461538461539,1,0,1_0,1_0 +2265,0.0,9.0,58.0,111,43,33,0.0,12875,0.0,250.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,2194.389532372277,0.0,0.0,53059.0,1,1,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,35372.666666666664,5,0,5,5_0 +2266,1.0,13.0,38.0,111,69,71,0.0,12876,0.0,0.0,0.0,138.0,1.0,4.0,5.0,6.0,2.9,782.8250166258678,0.0,0.0,27924.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9628.96551724138,1,0,1_1,1_0 +2267,7.0,7.0,54.0,300,77,71,0.0,12877,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2438.037560851009,0.0,0.0,12780.0,4,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,12780.0,1,0,1_0,1_0 +2268,0.0,0.0,46.0,111,37,20,0.0,12878,0.0,0.0,0.0,1216.0,2.0,2.0,0.0,2.0,1.5,3036.8995925307895,0.0,0.0,56967.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,37978.0,5,0,5,5_0 +2269,0.0,14.0,47.0,111,56,50,2.0,12879,0.0,0.0,0.0,468.0,1.0,3.0,1.0,2.0,1.5,777.7182896651397,0.0,2000.0,22549.0,1,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,15032.666666666666,2,0,2_0,2_0 +2270,0.0,0.0,39.0,112,38,12,0.0,1288,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2263.9848220338,398.84,0.0,29673.0,1,2,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29673.0,4,0,4_0,4_0 +2271,0.0,8.0,73.0,112,72,30,0.0,12881,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2659.57070432437,1528.28,0.0,33768.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,33768.0,5,0,5,5_0 +2272,13.0,13.0,52.0,111,56,60,0.0,12883,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1464.575416775062,0.0,0.0,7480.0,1,1,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,4986.666666666667,1,0,1_0,1_0 +2273,3.0,4.0,54.0,111,31,10,0.0,12884,0.0,0.0,452.0,0.0,2.0,7.0,4.0,6.0,3.1,2075.230360714357,0.0,0.0,215930.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,69654.83870967742,5,0,5,5_0 +2274,0.0,0.0,30.0,300,21,43,0.0,12885,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2516.3122503661825,0.0,0.0,61554.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29311.42857142857,4,0,4_0,4_0 +2275,3.0,12.0,61.0,300,63,31,0.0,12886,0.0,0.0,0.0,336.0,1.0,4.0,0.0,1.0,1.0,1940.3683040831952,0.0,0.0,18716.0,4,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,18716.0,2,0,2_1,2_0 +2276,0.0,0.0,63.0,112,75,50,0.0,12888,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2736.491428165274,1612.52,0.0,37200.0,5,1,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18600.0,2,0,2_0,2_0 +2277,0.0,0.0,52.0,120,52,42,0.0,12889,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2484.4370305311736,3069.04,0.0,15399.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10266.0,1,0,1_0,1_1 +2278,2.0,15.0,27.0,111,62,50,0.0,12890,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1862.5577966104738,1560.0,0.0,17879.0,4,3,8,7.0,2,3.0,1.0,0.0,0,0,0,1,0,1,2.0,1.0,11174.375,1,0,1_1,1_0 +2279,5.0,5.0,25.0,111,55,30,0.0,12891,0.0,0.0,99999.0,299.0,1.0,2.0,0.0,1.0,1.0,3253.3351321503433,0.0,0.0,16719.0,4,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,16719.0,2,0,2_1,2_0 +2280,0.0,0.0,79.0,111,72,50,0.0,12892,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1526.1330095800672,0.0,0.0,32013.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21342.0,3,0,3_0,3_0 +2281,18.0,21.0,33.0,112,54,50,0.0,12896,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2079.761847775965,1560.0,0.0,26628.0,1,2,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,12680.0,1,0,1_1,1_0 +2282,0.0,0.0,40.0,300,21,43,0.0,12897,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2084.416565049398,4680.0,0.0,57766.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24069.166666666668,4,0,4_0,4_1 +2283,16.0,16.0,75.0,111,,70,0.0,12898,0.0,0.0,0.0,445.0,0.0,1.0,0.0,1.0,1.0,4030.9129999381353,0.0,0.0,18520.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,18520.0,2,0,2_0,2_0 +2284,10.0,11.0,25.0,111,67,71,0.0,12899,0.0,0.0,30.0,28.0,1.0,3.0,2.0,3.0,1.6,2152.856879558526,1040.0,0.0,20346.0,4,3,7,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,12716.25,1,0,1_1,1_0 +2285,12.0,12.0,77.0,111,78,71,0.0,129,0.0,0.0,0.0,280.0,0.0,3.0,0.0,2.0,1.5,2383.4659165856656,1040.0,0.0,18933.0,5,3,7,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12622.0,1,0,1_0,1_0 +2286,2.0,2.0,28.0,111,47,31,0.0,12901,0.0,400.0,120.0,0.0,2.0,3.0,1.0,3.0,1.8,3970.8910718217476,0.0,0.0,51013.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,28340.555555555555,4,0,4_0,4_0 +2287,2.0,3.0,33.0,111,22,20,0.0,12903,0.0,0.0,100179.0,0.0,1.0,3.0,1.0,2.0,1.5,2364.419680812292,3120.0,0.0,43745.0,1,2,7,4.0,2,3.0,0.0,1.0,0,0,1,0,0,0,3.0,0.0,29163.333333333332,4,0,4_0,4_0 +2288,5.0,5.0,52.0,111,43,44,0.0,12905,0.0,0.0,0.0,0.0,3.0,6.0,3.0,5.0,2.8,1913.9970797021736,0.0,0.0,54603.0,1,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19501.07142857143,3,0,3_0,3_0 +2289,0.0,0.0,56.0,300,63,50,0.0,12906,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2630.8466808628714,0.0,0.0,9078.0,4,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9078.0,1,0,1_1,1_1 +2290,7.0,7.0,58.0,111,31,31,0.0,12907,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1523.9965755366443,1052.48,0.0,23306.0,1,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23306.0,3,0,3_0,3_0 +2291,0.0,0.0,38.0,111,38,10,0.0,12908,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1639.9858822057868,2600.0,0.0,51789.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21578.75,3,0,3_0,3_0 +2292,0.0,0.0,54.0,111,37,50,0.0,12909,0.0,0.0,0.0,513.0,2.0,6.0,0.0,2.0,1.5,2268.4850759238752,2496.0,0.0,42995.0,1,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28663.333333333332,4,0,4_0,4_0 +2293,8.0,8.0,40.0,111,52,30,0.0,12910,0.0,0.0,0.0,404.0,1.0,3.0,1.0,2.0,1.5,1209.518916923684,1820.0,0.0,21518.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14345.333333333334,2,0,2_1,2_0 +2294,14.0,16.0,41.0,111,48,31,0.0,12911,0.0,40.0,0.0,520.0,1.0,4.0,2.0,3.0,1.6,1656.818822036417,0.0,0.0,33450.0,1,3,7,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,20906.25,3,0,3_0,3_0 +2295,10.0,10.0,62.0,112,77,70,0.0,12915,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2328.1967187925934,722.8000000000001,0.0,17597.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17597.0,2,0,2_0,2_1 +2296,2.0,21.0,38.0,111,56,50,0.0,12916,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,1116.9082014072335,2080.0,0.0,18728.0,4,3,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8142.608695652175,1,0,1_1,1_0 +2297,5.0,11.0,29.0,112,37,30,0.0,12917,0.0,1000.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2254.6435266515628,0.0,0.0,77234.0,1,2,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,42907.777777777774,5,0,5,5_0 +2298,0.0,6.0,73.0,111,74,12,0.0,12919,0.0,150.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2718.639292259855,0.0,0.0,78943.0,5,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,52628.666666666664,5,0,5,5_0 +2299,4.0,8.0,81.0,111,43,33,0.0,1292,0.0,150.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,828.9657775394654,0.0,0.0,25122.0,5,1,7,5.0,1,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,25122.0,4,0,4_0,4_0 +2300,6.0,6.0,87.0,111,77,71,0.0,12921,0.0,0.0,99999.0,0.0,0.0,6.0,0.0,1.0,1.0,2071.422041122687,0.0,0.0,19860.0,5,1,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19860.0,3,0,3_0,3_0 +2301,0.0,1.0,52.0,211,43,33,1.0,12922,0.0,600.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1669.7144473919357,3317.08,9369.0,49995.0,1,2,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,49995.0,5,0,5,5_0 +2302,10.0,13.0,75.0,112,77,41,0.0,12924,234.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2576.4645240388973,0.0,0.0,55120.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,0.0,36746.666666666664,5,0,5,5_1 +2303,6.0,9.0,54.0,400,22,50,0.0,12925,0.0,330.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3489.0787770170678,0.0,0.0,3540.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,3540.0,1,0,1_0,1_1 +2304,1.0,4.0,68.0,111,54,41,0.0,12926,0.0,200.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1117.6096060057168,3659.7599999999998,0.0,27232.0,5,1,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18154.666666666668,2,0,2_0,2_0 +2305,21.0,27.0,35.0,112,37,12,0.0,12927,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,2.4,1938.4922137259246,0.0,0.0,86499.0,1,2,9,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,36041.25,5,0,5,5_0 +2306,0.0,0.0,27.0,111,53,43,0.0,12928,0.0,0.0,0.0,233.0,2.0,3.0,0.0,2.0,1.5,2368.7652376678157,0.0,0.0,15920.0,1,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10613.333333333334,1,0,1_1,1_0 +2307,1.0,7.0,31.0,111,38,12,2.0,12929,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2232.0565496642225,0.0,45000.0,91574.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,61049.333333333336,5,0,5,5_0 +2308,3.0,26.0,43.0,112,63,31,0.0,1293,0.0,0.0,0.0,0.0,2.0,4.0,5.0,7.0,3.6,2374.9000426186126,2600.0,0.0,55743.0,1,3,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,15484.166666666666,2,0,2_1,2_0 +2309,1.0,6.0,62.0,112,78,50,0.0,12930,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,1.0,1.0,2454.6427562292174,2362.36,0.0,8586.0,5,3,7,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,8586.0,1,0,1_0,1_1 +2310,15.0,15.0,63.0,112,75,70,0.0,12931,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1338.4236044726583,0.0,0.0,42887.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28591.333333333332,4,0,4_0,4_0 +2311,9.0,9.0,53.0,221,22,71,0.0,12933,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,2611.4758667855467,3090.36,0.0,48579.0,1,1,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19431.6,3,0,3_0,3_0 +2312,2.0,2.0,82.0,112,77,71,0.0,12934,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2537.8124386439895,0.0,0.0,11289.0,5,1,9,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,11289.0,1,0,1_0,1_0 +2313,0.0,0.0,54.0,211,85,71,0.0,12935,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,739.8225162116069,0.0,0.0,30470.0,7,3,2,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12695.833333333334,1,0,1_1,1_0 +2314,1.0,1.0,37.0,111,43,31,1.0,12936,0.0,70.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,584.9360400249152,0.0,14100.0,28120.0,1,3,5,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,17575.0,2,0,2_1,2_0 +2315,2.0,2.0,82.0,120,74,70,1.0,12938,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2848.958435035458,0.0,21500.0,38150.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38150.0,5,0,5,5_1 +2316,22.0,22.0,64.0,400,78,50,0.0,1294,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1569.3255957532997,0.0,0.0,18774.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12516.0,1,0,1_0,1_1 +2317,0.0,0.0,45.0,300,43,50,0.0,12941,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2179.973788650609,0.0,0.0,25601.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11130.869565217392,1,0,1_1,1_1 +2318,1.0,14.0,30.0,112,67,42,2.0,12942,0.0,100.0,0.0,368.0,1.0,2.0,0.0,1.0,1.0,4944.472175606415,1820.0,1700.0,23110.0,1,3,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23110.0,3,0,3_0,3_1 +2319,0.0,14.0,65.0,111,78,71,2.0,12943,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1710.2723842202138,0.0,9500.0,23053.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15368.666666666666,2,0,2_0,2_0 +2320,5.0,5.0,64.0,111,77,71,0.0,12944,0.0,0.0,0.0,0.0,0.0,5.0,4.0,6.0,2.7,1511.3969010854494,2080.0,0.0,35650.0,5,4,10,8.0,5,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,13203.703703703703,1,0,1_0,1_0 +2321,0.0,0.0,55.0,112,43,33,0.0,12945,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,2.0,1786.4478766544655,3009.24,0.0,51537.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25768.5,4,0,4_0,4_1 +2322,10.0,20.0,49.0,400,63,71,0.0,12946,0.0,0.0,0.0,0.0,2.0,6.0,1.0,2.0,1.5,2799.9515290540753,436.28000000000003,0.0,36540.0,1,2,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24360.0,4,0,4_0,4_1 +2323,0.0,0.0,53.0,111,56,50,0.0,12947,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,1.8,2237.6104749139954,0.0,0.0,47930.0,1,3,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26627.777777777777,4,0,4_0,4_0 +2324,2.0,2.0,31.0,111,47,30,0.0,12948,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3168.545777891285,2549.04,0.0,53852.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29917.777777777777,4,0,4_0,4_0 +2325,2.0,9.0,61.0,111,33,20,0.0,12949,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2974.0998215194245,4313.400000000001,0.0,160243.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,106828.66666666667,5,0,5,5_0 +2326,0.0,0.0,76.0,111,78,70,1.0,12950,0.0,99999.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,4409.672752053882,1451.8400000000001,10500.0,13122.0,5,1,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,13122.0,1,0,1_0,1_0 +2327,6.0,6.0,49.0,111,22,50,0.0,12952,0.0,0.0,105.0,0.0,3.0,6.0,2.0,4.0,2.5,3220.1484100110024,0.0,0.0,80180.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,32072.0,5,0,5,5_0 +2328,0.0,26.0,52.0,111,64,50,0.0,12953,0.0,0.0,0.0,0.0,3.0,4.0,3.0,5.0,3.0,1646.2080184588385,0.0,0.0,40555.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,13518.333333333334,1,0,1_0,1_0 +2329,0.0,0.0,84.0,300,74,41,0.0,12954,0.0,0.0,0.0,0.0,0.0,20.0,0.0,1.0,1.0,3412.267836210967,0.0,0.0,22597.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22597.0,3,0,3_0,3_1 +2330,0.0,0.0,45.0,111,52,43,0.0,12955,0.0,0.0,0.0,242.0,1.0,3.0,0.0,1.0,1.0,2730.0921065228476,2600.52,0.0,22849.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22849.0,3,0,3_0,3_0 +2331,6.0,8.0,70.0,112,74,30,0.0,12956,0.0,20.0,200.0,0.0,0.0,6.0,0.0,2.0,1.5,1452.6480569085613,0.0,0.0,50162.0,5,1,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,33441.333333333336,5,0,5,5_1 +2332,2.0,13.0,50.0,111,35,42,0.0,12957,0.0,0.0,490.0,556.0,2.0,4.0,1.0,3.0,1.8,2224.1729951059224,1799.2,0.0,40920.0,4,3,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,22733.333333333332,3,0,3_0,3_0 +2333,0.0,0.0,77.0,111,78,50,0.0,12959,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1597.1800656873859,0.0,0.0,44721.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29814.0,4,0,4_0,4_0 +2334,1.0,3.0,74.0,111,75,31,2.0,1296,175.0,240.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2367.190555738297,0.0,9000.0,18345.0,5,1,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18345.0,2,0,2_0,2_0 +2335,0.0,0.0,63.0,111,77,42,0.0,12960,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1794.7562251430015,0.0,0.0,46894.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31262.666666666668,4,0,4_0,4_0 +2336,6.0,12.0,44.0,111,37,30,0.0,12961,0.0,300.0,0.0,0.0,1.0,9.0,7.0,9.0,4.0,1629.9342551614402,0.0,0.0,51155.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,12788.75,1,0,1_0,1_0 +2337,3.0,9.0,65.0,111,77,50,0.0,12962,0.0,100.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2733.4083410043995,0.0,0.0,35700.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,35700.0,5,0,5,5_0 +2338,3.0,10.0,77.0,111,74,12,0.0,12963,0.0,45.0,0.0,0.0,0.0,6.0,0.0,3.0,2.0,2437.1180304380846,5186.48,0.0,69244.0,5,1,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,34622.0,5,0,5,5_0 +2339,3.0,3.0,78.0,300,75,50,0.0,12964,0.0,480.0,150.0,0.0,0.0,4.0,0.0,2.0,1.5,1829.205046848411,0.0,0.0,27640.0,5,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,18426.666666666668,2,0,2_0,2_1 +2340,0.0,18.0,64.0,111,74,20,2.0,12965,0.0,400.0,0.0,0.0,0.0,7.0,1.0,3.0,2.0,1770.881220602448,2080.0,350.0,99112.0,5,1,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,49556.0,5,0,5,5_0 +2341,0.0,0.0,70.0,111,77,50,0.0,12966,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2103.915613585286,0.0,0.0,28060.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18706.666666666668,2,0,2_0,2_0 +2342,9.0,9.0,69.0,300,78,71,0.0,12967,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2657.973551857835,1560.0,0.0,20560.0,5,3,0,1.0,3,3.0,0.0,0.0,0,1,0,0,0,1,2.0,1.0,13706.666666666666,1,0,1_1,1_0 +2343,6.0,10.0,25.0,111,84,41,0.0,12969,0.0,60.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3495.6855416744093,0.0,0.0,7633.0,3,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,7633.0,1,0,1_0,1_0 +2344,9.0,9.0,76.0,111,75,50,0.0,12971,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2993.9080270635022,2080.0,0.0,25049.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,25049.0,4,0,4_0,4_0 +2345,2.0,3.0,45.0,112,69,50,0.0,12972,0.0,0.0,160.0,0.0,2.0,6.0,2.0,4.0,2.5,1950.3275715989994,6240.0,0.0,47972.0,1,2,8,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,19188.8,3,0,3_0,3_1 +2346,4.0,4.0,83.0,300,71,70,0.0,12973,0.0,260.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2243.672540249253,0.0,0.0,18771.0,5,1,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,12514.0,1,0,1_0,1_0 +2347,0.0,0.0,27.0,111,63,20,0.0,12974,0.0,0.0,0.0,95.0,2.0,1.0,1.0,3.0,1.8,4294.289235338693,0.0,0.0,15634.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8685.555555555555,1,0,1_1,1_0 +2348,0.0,0.0,30.0,111,85,50,0.0,12976,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,860.2992692719307,0.0,0.0,14738.0,6,3,7,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11336.923076923076,1,0,1_1,1_0 +2349,6.0,7.0,65.0,112,75,44,0.0,12977,0.0,500.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4399.527473212644,1250.6000000000001,0.0,32830.0,5,1,7,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,32830.0,5,0,5,5_1 +2350,6.0,13.0,69.0,111,77,60,0.0,1298,0.0,0.0,320.0,389.0,0.0,4.0,0.0,1.0,1.0,4771.2574537846685,0.0,0.0,31304.0,5,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,31304.0,4,0,4_0,4_0 +2351,8.0,8.0,20.0,111,56,30,0.0,12982,0.0,0.0,99999.0,0.0,1.0,1.0,0.0,1.0,1.0,6256.568029765211,0.0,0.0,10417.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,10417.0,1,0,1_1,1_0 +2352,15.0,19.0,56.0,112,53,50,0.0,12984,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2174.0482379049613,2236.0,0.0,51356.0,1,1,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22328.695652173916,3,0,3_0,3_0 +2353,4.0,6.0,61.0,111,75,50,0.0,12985,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3332.559561484564,0.0,0.0,21010.0,5,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,14006.666666666666,2,0,2_0,2_0 +2354,8.0,8.0,80.0,111,75,44,0.0,12986,0.0,300.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4011.1688725603854,0.0,0.0,23560.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,23560.0,3,0,3_0,3_0 +2355,2.0,21.0,34.0,111,65,31,0.0,12987,0.0,0.0,99999.0,0.0,2.0,3.0,0.0,2.0,1.5,2392.5787332607533,0.0,0.0,47016.0,1,1,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,31344.0,4,0,4_0,4_0 +2356,6.0,6.0,60.0,120,13,50,0.0,12988,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1426.9828011327552,2736.24,0.0,25860.0,1,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17240.0,2,0,2_0,2_1 +2357,0.0,0.0,40.0,400,85,50,0.0,12989,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,3.1,2175.0441467194446,0.0,0.0,21422.0,6,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,6910.322580645161,1,0,1_1,1_1 +2358,5.0,5.0,55.0,112,43,33,0.0,1299,0.0,800.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,2079.7470688435064,1976.0,0.0,77495.0,1,1,7,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,30998.0,4,0,4_0,4_1 +2359,8.0,10.0,33.0,211,63,41,0.0,12990,0.0,200.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,6454.13493810465,0.0,0.0,32921.0,1,2,2,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,15676.666666666666,2,0,2_0,2_0 +2360,2.0,20.0,61.0,111,56,60,0.0,12991,0.0,80.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2574.072767621163,3640.0,0.0,24685.0,4,2,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,16456.666666666668,2,0,2_0,2_0 +2361,0.0,0.0,42.0,112,37,12,0.0,12992,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2173.5205096489544,0.0,0.0,81034.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33764.16666666667,5,0,5,5_1 +2362,0.0,0.0,49.0,111,85,50,0.0,12993,0.0,0.0,0.0,0.0,0.0,5.0,3.0,4.0,2.5,596.7298529838141,0.0,0.0,9664.0,7,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,3865.6,1,0,1_1,1_0 +2363,3.0,3.0,31.0,111,63,41,0.0,12994,0.0,0.0,0.0,500.0,1.0,3.0,1.0,3.0,1.8,2794.7248764446417,1040.0,0.0,31652.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,17584.444444444445,2,0,2_1,2_0 +2364,0.0,10.0,65.0,111,78,71,2.0,12995,0.0,0.0,80.0,0.0,0.0,4.0,0.0,2.0,1.5,2482.8509034608323,2601.04,10000.0,20046.0,5,1,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,13364.0,1,0,1_0,1_0 +2365,9.0,9.0,41.0,112,55,44,0.0,12996,0.0,300.0,150.0,0.0,2.0,6.0,2.0,4.0,2.1,2061.244291609399,1560.0,0.0,42703.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20334.761904761905,3,0,3_0,3_0 +2366,8.0,14.0,80.0,111,74,41,0.0,12997,0.0,150.0,0.0,340.0,0.0,4.0,0.0,2.0,1.5,2731.6697920292804,0.0,0.0,4320.0,5,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,2880.0,1,0,1_1,1_0 +2367,0.0,0.0,33.0,112,33,0,0.0,12999,0.0,0.0,0.0,0.0,1.0,7.0,2.0,4.0,2.1,2277.1558079900155,3821.4799999999996,0.0,48245.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22973.809523809523,3,0,3_0,3_1 +2368,0.0,15.0,42.0,111,56,50,0.0,13,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,755.8603817739759,0.0,0.0,37260.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17742.85714285714,2,0,2_0,2_0 +2369,4.0,4.0,47.0,120,56,50,0.0,130,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1967.0233411951458,0.0,0.0,15165.0,1,4,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,15165.0,2,0,2_0,2_1 +2370,7.0,9.0,59.0,111,54,31,0.0,1300,0.0,0.0,250.0,0.0,2.0,8.0,0.0,2.0,1.5,1712.940047468345,2553.72,0.0,90146.0,1,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,60097.333333333336,5,0,5,5_0 +2371,0.0,11.0,47.0,111,52,50,0.0,13001,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1944.548164855493,2600.0,0.0,48140.0,1,4,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19256.0,3,0,3_0,3_0 +2372,0.0,0.0,35.0,300,56,50,0.0,13002,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,367.8425894987804,1560.0,0.0,22989.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14368.125,2,0,2_1,2_1 +2373,9.0,9.0,44.0,111,47,31,0.0,13003,0.0,0.0,99999.0,0.0,2.0,3.0,1.0,3.0,1.8,3122.7099139448414,1566.76,0.0,50334.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,27963.333333333332,4,0,4_0,4_0 +2374,11.0,15.0,50.0,112,56,50,0.0,13004,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1764.899932797034,0.0,0.0,2591.0,1,2,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,2591.0,1,0,1_0,1_1 +2375,0.0,0.0,59.0,112,72,71,0.0,13005,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4561.7089136745235,0.0,0.0,7335.0,4,2,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,7335.0,1,0,1_0,1_0 +2376,7.0,6.0,31.0,111,62,71,0.0,13006,0.0,0.0,0.0,219.0,1.0,3.0,1.0,3.0,1.8,2459.7990902710735,1040.0,0.0,29920.0,1,3,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,16622.222222222223,2,0,2_1,2_0 +2377,0.0,0.0,68.0,112,75,44,0.0,1301,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2515.0964775330576,0.0,0.0,23050.0,5,1,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23050.0,3,0,3_0,3_0 +2378,0.0,0.0,31.0,111,38,31,0.0,13010,0.0,0.0,0.0,990.0,2.0,3.0,1.0,3.0,1.8,4895.6586150887315,3142.88,0.0,53916.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29953.333333333332,4,0,4_0,4_0 +2379,0.0,0.0,64.0,111,74,31,0.0,13011,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1977.5227311404835,0.0,0.0,101998.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,67998.66666666667,5,0,5,5_0 +2380,1.0,1.0,74.0,111,78,71,1.0,13012,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2233.851120814559,0.0,10900.0,26772.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,17848.0,2,0,2_0,2_0 +2381,6.0,13.0,71.0,111,75,71,0.0,13014,0.0,0.0,300.0,0.0,0.0,3.0,0.0,1.0,1.0,3936.4158959162323,0.0,0.0,19820.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,19820.0,3,0,3_0,3_0 +2382,11.0,11.0,29.0,111,63,30,0.0,13015,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2901.8838041027493,1560.0,0.0,11950.0,4,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,9192.307692307691,1,0,1_1,1_0 +2383,0.0,11.0,82.0,120,78,70,0.0,13016,0.0,0.0,99999.0,0.0,0.0,7.0,0.0,2.0,1.5,2429.4003060370496,2935.4,0.0,28035.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18690.0,2,0,2_0,2_1 +2384,9.0,9.0,35.0,112,67,50,0.0,13017,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,547.9317140308119,2600.0,0.0,23614.0,1,2,7,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,14758.75,2,0,2_1,2_0 +2385,0.0,14.0,59.0,111,,31,0.0,13018,0.0,0.0,300.0,0.0,0.0,3.0,0.0,1.0,1.0,2813.1881535021885,0.0,0.0,20150.0,8,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,20150.0,3,0,3_0,3_0 +2386,0.0,0.0,62.0,111,52,70,2.0,13019,0.0,0.0,0.0,552.0,1.0,4.0,0.0,1.0,1.0,3362.7668282482914,0.0,15300.0,34863.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34863.0,5,0,5,5_0 +2387,6.0,13.0,49.0,300,64,60,0.0,13020,0.0,0.0,0.0,0.0,2.0,5.0,2.0,3.0,2.0,4266.1426679903825,0.0,0.0,57809.0,1,1,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,28904.5,4,0,4_0,4_1 +2388,1.0,12.0,27.0,112,48,50,0.0,13021,0.0,0.0,100399.0,0.0,1.0,3.0,0.0,2.0,1.5,3981.584574044891,3640.0,0.0,24705.0,1,1,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,16470.0,2,0,2_0,2_1 +2389,0.0,6.0,43.0,112,43,31,2.0,13022,0.0,400.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1921.335330831328,2860.52,4800.0,39653.0,1,1,4,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,39653.0,5,0,5,5_1 +2390,3.0,10.0,39.0,112,38,20,0.0,13023,0.0,0.0,100.0,1000.0,2.0,5.0,1.0,3.0,1.8,1981.3990465403517,2837.64,0.0,83853.0,1,3,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,46585.0,5,0,5,5_0 +2391,6.0,6.0,35.0,111,81,50,0.0,13025,0.0,250.0,0.0,0.0,1.0,5.0,3.0,4.0,1.9,529.8854431692197,0.0,0.0,20820.0,4,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,10957.894736842105,1,0,1_1,1_0 +2392,3.0,8.0,62.0,112,72,60,0.0,13026,0.0,0.0,170.0,0.0,0.0,4.0,0.0,2.0,1.5,2169.5260888550897,1999.92,0.0,34889.0,5,1,8,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,23259.333333333332,3,0,3_0,3_0 +2393,5.0,5.0,51.0,111,46,42,0.0,13027,0.0,1250.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,696.247694838501,0.0,0.0,20310.0,1,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,11283.333333333334,1,0,1_1,1_0 +2394,5.0,5.0,36.0,221,63,50,0.0,13029,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,633.3387540197072,0.0,0.0,28625.0,4,3,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,13630.95238095238,1,0,1_1,1_0 +2395,10.0,10.0,25.0,400,42,31,0.0,1303,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4323.4948621145895,2912.0,0.0,17480.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17480.0,2,0,2_0,2_1 +2396,11.0,11.0,55.0,111,46,50,0.0,13030,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2022.7226409546424,0.0,0.0,57610.0,4,1,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28805.0,4,0,4_0,4_0 +2397,4.0,4.0,63.0,111,43,70,0.0,13031,0.0,0.0,0.0,320.0,1.0,3.0,0.0,2.0,1.5,1833.9821249916135,2600.0,0.0,34200.0,1,3,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22800.0,3,0,3_0,3_0 +2398,21.0,23.0,63.0,112,74,50,0.0,13036,0.0,150.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1501.3613806328547,2340.0,0.0,90627.0,5,1,8,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,60418.0,5,0,5,5_1 +2399,4.0,4.0,43.0,111,21,71,0.0,13037,0.0,500.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3574.878507102419,2875.6000000000004,0.0,37390.0,1,2,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17804.761904761905,2,0,2_0,2_0 +2400,0.0,0.0,60.0,112,78,50,0.0,13038,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1911.4570632557081,0.0,0.0,28424.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18949.333333333332,3,0,3_0,3_1 +2401,7.0,7.0,65.0,112,78,41,0.0,13039,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2146.661855823171,0.0,0.0,33802.0,5,2,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22534.666666666668,3,0,3_0,3_1 +2402,2.0,2.0,79.0,112,86,70,0.0,13041,0.0,350.0,150.0,0.0,0.0,4.0,0.0,1.0,1.0,1541.25521785548,0.0,0.0,13680.0,5,1,10,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,13680.0,1,0,1_0,1_0 +2403,5.0,5.0,33.0,112,68,50,0.0,13042,0.0,0.0,80.0,27.0,1.0,4.0,3.0,4.0,2.1,800.3737914292626,0.0,0.0,28388.0,1,3,10,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,13518.095238095237,1,0,1_1,1_0 +2404,11.0,11.0,36.0,112,38,20,0.0,13043,0.0,30.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,3141.023379735127,0.0,0.0,46096.0,1,1,9,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19206.666666666668,3,0,3_0,3_0 +2405,0.0,0.0,27.0,112,56,50,0.0,13044,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1283.3978021042874,0.0,0.0,12966.0,4,3,8,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9973.846153846154,1,0,1_1,1_0 +2406,6.0,6.0,47.0,112,62,30,0.0,13045,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,2364.1545063326353,0.0,0.0,26770.0,4,2,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,10296.153846153846,1,0,1_1,1_0 +2407,1.0,1.0,74.0,300,77,71,1.0,13046,0.0,200.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2765.2697667904345,0.0,21000.0,25631.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17087.333333333332,2,0,2_0,2_1 +2408,5.0,5.0,55.0,112,65,60,0.0,13048,0.0,0.0,0.0,70.0,1.0,3.0,1.0,2.0,1.5,1404.906467411858,0.0,0.0,27620.0,1,3,9,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,18413.333333333332,2,0,2_1,2_0 +2409,0.0,0.0,36.0,111,53,42,0.0,13054,0.0,0.0,0.0,681.0,1.0,6.0,3.0,5.0,2.4,1622.38259023896,2600.0,0.0,35501.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14792.083333333334,2,0,2_0,2_0 +2410,3.0,3.0,54.0,112,52,44,0.0,13057,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1685.6208403593262,0.0,0.0,57405.0,1,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,38270.0,5,0,5,5_0 +2411,1.0,14.0,36.0,111,56,50,2.0,13059,0.0,0.0,0.0,220.0,1.0,3.0,1.0,2.0,1.3,813.1225582539811,0.0,3400.0,19410.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14930.76923076923,2,0,2_1,2_0 +2412,1.0,25.0,50.0,111,38,12,2.0,13060,0.0,400.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1621.7877629697464,2600.0,300.0,55631.0,1,1,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,24187.391304347828,4,0,4_0,4_0 +2413,2.0,2.0,37.0,111,54,50,0.0,13062,0.0,0.0,120.0,136.0,1.0,3.0,2.0,3.0,1.6,713.1276509539458,0.0,0.0,10150.0,4,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,6343.75,1,0,1_0,1_0 +2414,0.0,0.0,49.0,120,21,50,0.0,13063,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3746.210344789915,0.0,0.0,45651.0,1,1,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19848.26086956522,3,0,3_0,3_0 +2415,2.0,3.0,51.0,221,46,50,0.0,13064,0.0,330.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1654.155322027367,4108.0,0.0,81494.0,1,1,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,32597.6,5,0,5,5_0 +2416,4.0,8.0,43.0,222,63,50,0.0,13066,0.0,280.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2033.3231526960383,0.0,0.0,30796.0,1,1,1,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,12318.4,1,0,1_0,1_1 +2417,1.0,1.0,44.0,111,31,20,0.0,13067,0.0,200.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,582.646873216657,0.0,0.0,39363.0,1,2,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21868.333333333332,3,0,3_0,3_0 +2418,1.0,1.0,48.0,111,43,33,1.0,13068,0.0,0.0,150.0,0.0,1.0,6.0,1.0,2.0,1.5,611.9842267629291,7284.16,23800.0,534.0,4,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,356.0,1,0,1_0,1_0 +2419,2.0,2.0,49.0,111,37,30,0.0,13069,0.0,40.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2342.8461103824848,0.0,0.0,65710.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,36505.555555555555,5,0,5,5_0 +2420,2.0,2.0,69.0,112,71,70,0.0,13070,0.0,750.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2772.1930494581025,0.0,0.0,11892.0,5,1,8,0.0,1,3.0,1.0,1.0,1,0,0,0,0,0,1.0,2.0,11892.0,1,0,1_0,1_1 +2421,5.0,5.0,70.0,112,74,70,0.0,13071,0.0,150.0,80.0,0.0,0.0,5.0,0.0,2.0,1.5,2159.3894673780924,0.0,0.0,49713.0,5,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,33142.0,5,0,5,5_1 +2422,0.0,0.0,47.0,400,46,50,0.0,13074,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2199.642839754852,6916.0,0.0,43778.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17511.2,2,0,2_0,2_1 +2423,0.0,0.0,87.0,111,,70,0.0,13079,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2387.1526407176143,0.0,0.0,47295.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31530.0,4,0,4_0,4_0 +2424,0.0,0.0,53.0,211,63,50,0.0,1308,0.0,0.0,0.0,197.0,2.0,3.0,1.0,3.0,2.0,1950.9013793296047,2600.0,0.0,59628.0,1,3,3,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,29814.0,4,0,4_1,4_0 +2425,0.0,0.0,17.0,400,43,30,0.0,13080,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1941.6498121772208,5739.24,0.0,21576.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11986.666666666666,1,0,1_0,1_1 +2426,1.0,11.0,84.0,111,75,44,0.0,13081,0.0,140.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1173.3797130039773,0.0,0.0,46284.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,30856.0,4,0,4_0,4_0 +2427,7.0,7.0,49.0,111,46,31,0.0,13085,0.0,0.0,0.0,1090.0,1.0,3.0,2.0,3.0,2.0,3148.335892000008,0.0,0.0,46345.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23172.5,3,0,3_0,3_0 +2428,2.0,3.0,79.0,112,72,60,0.0,13086,0.0,0.0,650.0,0.0,0.0,6.0,0.0,1.0,1.0,2195.692165266707,0.0,0.0,26280.0,5,1,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,26280.0,4,0,4_0,4_0 +2429,1.0,6.0,44.0,111,63,71,2.0,13088,0.0,550.0,0.0,162.0,2.0,4.0,3.0,5.0,2.4,1108.728799642561,1786.1999999999998,6900.0,39510.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,16462.5,2,0,2_1,2_0 +2430,12.0,14.0,79.0,111,72,50,0.0,13089,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2388.852013514391,0.0,0.0,27284.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,27284.0,4,0,4_0,4_0 +2431,6.0,6.0,39.0,111,62,50,0.0,1309,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2567.9271773714213,0.0,0.0,46650.0,1,4,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25916.666666666664,4,0,4_0,4_0 +2432,0.0,7.0,40.0,111,63,50,2.0,13090,0.0,0.0,680.0,0.0,2.0,5.0,3.0,5.0,2.6,1557.1138546624766,0.0,4000.0,39855.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,15328.846153846152,2,0,2_0,2_0 +2433,0.0,0.0,42.0,120,84,42,0.0,13091,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,2150.553868644904,1587.04,0.0,50419.0,3,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28010.555555555555,4,0,4_0,4_1 +2434,2.0,2.0,39.0,111,38,30,0.0,13095,0.0,500.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2794.6851377663606,0.0,0.0,46517.0,1,2,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25842.777777777777,4,0,4_0,4_0 +2435,10.0,10.0,56.0,112,21,50,0.0,13096,0.0,0.0,458.0,0.0,2.0,7.0,0.0,2.0,1.5,1500.0341278268133,0.0,0.0,42250.0,1,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,28166.666666666668,4,0,4_0,4_1 +2436,1.0,19.0,84.0,111,78,71,2.0,13097,0.0,110.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2571.1180574898453,0.0,700.0,40022.0,5,1,10,8.0,3,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,26681.333333333332,4,0,4_0,4_0 +2437,0.0,0.0,77.0,112,72,71,0.0,13098,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2341.8336334935098,0.0,0.0,19533.0,5,1,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19533.0,3,0,3_0,3_0 +2438,0.0,11.0,66.0,111,64,60,0.0,13099,0.0,0.0,0.0,652.0,1.0,1.0,0.0,2.0,1.5,4085.8596843385094,1248.0,0.0,38152.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,25434.666666666668,4,0,4_0,4_0 +2439,4.0,6.0,86.0,211,78,70,0.0,131,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1695.2231928318872,0.0,0.0,35563.0,5,1,1,3.0,3,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,23708.666666666668,3,0,3_0,3_0 +2440,2.0,2.0,76.0,111,77,70,0.0,1310,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1396.480409154847,0.0,0.0,23598.0,5,1,4,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,23598.0,3,0,3_0,3_0 +2441,16.0,16.0,56.0,300,75,31,0.0,13100,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2517.7937160629745,0.0,0.0,39336.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,39336.0,5,0,5,5_1 +2442,0.0,0.0,47.0,111,56,42,0.0,13104,0.0,0.0,0.0,196.0,1.0,3.0,3.0,4.0,2.5,890.3805871019326,0.0,0.0,25805.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10322.0,1,0,1_1,1_0 +2443,0.0,0.0,72.0,111,75,60,0.0,13105,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3909.8810164329893,0.0,0.0,15195.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15195.0,2,0,2_0,2_0 +2444,0.0,0.0,36.0,111,65,50,0.0,13107,0.0,0.0,0.0,621.0,2.0,3.0,2.0,4.0,2.1,2993.5385546649427,0.0,0.0,46036.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21921.90476190476,3,0,3_0,3_0 +2445,2.0,14.0,60.0,111,47,42,0.0,13108,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2987.72765557702,0.0,0.0,31849.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,31849.0,5,0,5,5_0 +2446,19.0,19.0,68.0,111,72,44,0.0,13109,0.0,0.0,0.0,258.0,0.0,3.0,0.0,1.0,1.0,1672.5167605531117,0.0,0.0,12830.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12830.0,1,0,1_1,1_0 +2447,0.0,0.0,43.0,400,64,71,0.0,1311,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2544.6688661118064,3536.5200000000004,0.0,29337.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11734.8,1,0,1_0,1_1 +2448,1.0,16.0,45.0,112,47,44,0.0,13111,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2395.598408204442,5855.2,0.0,45955.0,1,2,6,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,18382.0,2,0,2_0,2_1 +2449,0.0,0.0,37.0,111,47,31,0.0,13112,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2237.4141929104267,7145.32,0.0,51993.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24758.571428571428,4,0,4_0,4_0 +2450,0.0,6.0,52.0,111,48,50,0.0,13113,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2591.958598898984,4582.24,0.0,65677.0,1,1,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,32838.5,5,0,5,5_0 +2451,5.0,12.0,52.0,120,64,50,0.0,13114,0.0,0.0,700.0,697.0,1.0,3.0,0.0,2.0,1.5,2075.008568457854,0.0,0.0,32410.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,21606.666666666668,3,0,3_0,3_1 +2452,0.0,0.0,76.0,400,78,70,0.0,13115,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2191.1382202827613,0.0,0.0,29651.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19767.333333333332,3,0,3_0,3_1 +2453,0.0,0.0,53.0,112,48,50,0.0,13117,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1645.7588932060037,0.0,0.0,41747.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20873.5,3,0,3_0,3_1 +2454,0.0,0.0,66.0,111,78,71,0.0,13120,0.0,0.0,0.0,224.0,2.0,4.0,2.0,4.0,2.5,3401.6720809754415,0.0,0.0,52778.0,5,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,21111.2,3,0,3_1,3_0 +2455,1.0,1.0,63.0,111,78,50,1.0,13122,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,3687.0761382318724,2560.48,12100.0,40530.0,5,2,4,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20265.0,3,0,3_0,3_0 +2456,0.0,0.0,68.0,112,75,50,0.0,13125,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1578.3777599209411,3523.0,0.0,32404.0,5,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21602.666666666668,3,0,3_0,3_1 +2457,1.0,1.0,38.0,111,63,60,1.0,13128,0.0,500.0,0.0,1180.0,2.0,4.0,0.0,2.0,1.5,3742.9525302190486,0.0,14000.0,64740.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,43160.0,5,0,5,5_0 +2458,3.0,7.0,41.0,221,46,60,0.0,13129,0.0,70.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2754.8001988175924,0.0,0.0,29324.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,13963.809523809523,2,0,2_0,2_0 +2459,0.0,0.0,44.0,120,62,50,0.0,13130,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1947.7332637698357,0.0,0.0,27050.0,1,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27050.0,4,0,4_0,4_1 +2460,0.0,0.0,67.0,120,69,50,0.0,13131,0.0,0.0,0.0,0.0,1.0,5.0,0.0,3.0,2.0,3813.5389305917806,0.0,0.0,38900.0,5,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19450.0,3,0,3_0,3_1 +2461,15.0,16.0,78.0,400,71,71,0.0,13133,0.0,350.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2664.3711224410167,1491.8799999999999,0.0,18350.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18350.0,2,0,2_0,2_1 +2462,3.0,6.0,65.0,112,75,70,0.0,13134,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1703.070623049541,0.0,0.0,40237.0,5,1,9,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,26824.666666666668,4,0,4_0,4_0 +2463,1.0,2.0,39.0,111,53,43,0.0,13135,0.0,1050.0,0.0,146.0,1.0,4.0,2.0,4.0,2.1,2016.3967305368878,4160.0,0.0,27397.0,1,3,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,1,0.0,2.0,13046.190476190475,1,0,1_1,1_0 +2464,0.0,0.0,75.0,112,74,20,0.0,13138,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2346.3048490259866,3035.24,0.0,24337.0,5,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24337.0,4,0,4_0,4_1 +2465,7.0,11.0,70.0,112,75,71,0.0,13140,0.0,400.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2179.653599937067,1583.3999999999999,0.0,15211.0,5,1,9,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15211.0,2,0,2_0,2_0 +2466,1.0,1.0,66.0,111,77,60,2.0,13141,0.0,1000.0,0.0,450.0,0.0,4.0,0.0,2.0,1.5,2784.2715750831603,0.0,50000.0,45634.0,5,3,10,8.0,3,3.0,1.0,1.0,0,0,0,0,1,0,1.0,2.0,30422.666666666668,4,0,4_0,4_0 +2467,2.0,8.0,79.0,111,74,41,0.0,13143,0.0,109.0,0.0,396.0,1.0,3.0,0.0,2.0,1.5,3142.9630922684146,0.0,0.0,39090.0,5,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,26060.0,4,0,4_0,4_0 +2468,7.0,7.0,75.0,120,74,41,0.0,13144,0.0,350.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1696.2647916418116,0.0,0.0,54592.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36394.666666666664,5,0,5,5_1 +2469,11.0,13.0,60.0,111,69,71,0.0,13147,0.0,99999.0,0.0,0.0,3.0,6.0,5.0,7.0,4.0,2612.5573741099206,2080.0,0.0,36230.0,1,1,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,9057.5,1,0,1_0,1_0 +2470,2.0,7.0,70.0,111,77,70,0.0,13148,0.0,0.0,0.0,496.0,0.0,3.0,0.0,1.0,1.0,3482.6746491101517,2184.0,0.0,15535.0,5,3,8,6.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,15535.0,2,0,2_0,2_0 +2471,0.0,0.0,61.0,112,78,71,0.0,13149,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3475.9114258148443,0.0,0.0,31650.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21100.0,3,0,3_0,3_1 +2472,7.0,19.0,73.0,111,72,71,0.0,13151,0.0,0.0,100.0,0.0,0.0,5.0,0.0,2.0,1.5,2261.8303850350803,0.0,0.0,21735.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,14490.0,2,0,2_0,2_0 +2473,1.0,1.0,36.0,111,68,71,2.0,13152,0.0,350.0,150.0,107.0,2.0,3.0,4.0,6.0,2.7,1191.3941277818449,0.0,20700.0,34822.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,12897.037037037036,1,0,1_1,1_0 +2474,6.0,6.0,49.0,111,52,50,0.0,13153,0.0,100139.0,0.0,427.0,1.0,4.0,3.0,4.0,2.3,527.7703940620147,1560.0,0.0,34180.0,1,3,7,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,14860.869565217392,2,0,2_0,2_0 +2475,6.0,6.0,46.0,120,37,31,0.0,13154,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2781.9384552078045,0.0,0.0,57609.0,1,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,57609.0,5,0,5,5_1 +2476,3.0,11.0,81.0,300,71,70,0.0,13155,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1766.8602779110286,0.0,0.0,27132.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18088.0,2,0,2_0,2_1 +2477,0.0,0.0,74.0,211,75,71,0.0,13156,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1799.0192813558342,0.0,0.0,27996.0,5,3,2,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18664.0,2,0,2_0,2_0 +2478,0.0,0.0,29.0,300,69,50,0.0,13158,0.0,0.0,0.0,0.0,2.0,9.0,0.0,2.0,1.5,2710.3059970815707,0.0,0.0,26565.0,1,4,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17710.0,2,0,2_0,2_1 +2479,2.0,14.0,30.0,111,55,31,0.0,13160,0.0,500.0,0.0,530.0,1.0,1.0,1.0,2.0,1.3,948.0363548807845,0.0,0.0,26843.0,4,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,20648.46153846154,3,0,3_1,3_0 +2480,1.0,4.0,60.0,112,75,50,2.0,13162,0.0,0.0,500.0,0.0,0.0,5.0,0.0,2.0,1.5,2275.2244828808707,0.0,8000.0,40329.0,5,1,9,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,26886.0,4,0,4_0,4_0 +2481,16.0,17.0,85.0,111,74,20,0.0,13163,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1926.6932766761365,0.0,0.0,62898.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,41932.0,5,0,5,5_0 +2482,0.0,0.0,82.0,120,71,60,0.0,13164,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2635.8480375646072,0.0,0.0,18226.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18226.0,2,0,2_0,2_1 +2483,0.0,0.0,48.0,111,21,50,0.0,13165,0.0,0.0,0.0,146.0,2.0,6.0,5.0,8.0,4.1,3015.392962774096,3120.0,0.0,57531.0,1,3,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14031.951219512197,2,0,2_1,2_0 +2484,19.0,19.0,26.0,400,63,44,0.0,13168,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1392.991780775827,3016.0,0.0,43080.0,1,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,28720.0,4,0,4_0,4_1 +2485,0.0,0.0,57.0,112,52,31,0.0,13169,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2723.47808208003,0.0,0.0,9971.0,1,1,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9971.0,1,0,1_0,1_1 +2486,0.0,0.0,44.0,111,38,12,2.0,13171,0.0,200.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3452.5980147447754,0.0,9500.0,36200.0,1,2,9,7.0,1,3.0,1.0,0.0,0,0,0,1,0,0,0.0,3.0,36200.0,5,0,5,5_0 +2487,7.0,8.0,24.0,111,46,31,0.0,13172,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3004.9318386621458,2600.0,0.0,26374.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,17582.666666666668,2,0,2_1,2_0 +2488,0.0,0.0,83.0,211,77,50,0.0,13174,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1283.722733331376,0.0,0.0,20590.0,5,1,3,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20590.0,3,0,3_0,3_0 +2489,0.0,0.0,40.0,300,47,31,0.0,13175,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1715.7684694997345,6760.52,0.0,58194.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27711.42857142857,4,0,4_0,4_1 +2490,4.0,13.0,34.0,112,62,50,0.0,13176,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2166.946093588734,0.0,0.0,29330.0,1,4,8,2.0,2,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,22561.53846153846,3,0,3_0,3_0 +2491,1.0,1.0,62.0,111,31,12,0.0,13179,0.0,0.0,930.0,0.0,1.0,6.0,2.0,4.0,2.5,3382.9427578571213,0.0,0.0,17158.0,1,1,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,6863.2,1,0,1_0,1_0 +2492,17.0,17.0,41.0,111,46,30,0.0,1318,0.0,0.0,0.0,0.0,2.0,3.0,3.0,5.0,2.6,2815.0681297952437,0.0,0.0,27909.0,1,4,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,10734.23076923077,1,0,1_0,1_0 +2493,0.0,0.0,52.0,111,46,42,0.0,13181,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2369.9719442762175,0.0,0.0,57778.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38518.666666666664,5,0,5,5_0 +2494,1.0,1.0,68.0,111,72,50,0.0,13183,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1801.3654528651182,3235.44,0.0,48980.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32653.333333333332,5,0,5,5_0 +2495,2.0,19.0,67.0,112,77,42,0.0,13184,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2064.2867287192284,0.0,0.0,32302.0,5,1,10,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,32302.0,5,0,5,5_0 +2496,0.0,0.0,74.0,400,75,41,0.0,13186,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1671.7951706023346,1505.92,0.0,38531.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25687.333333333332,4,0,4_0,4_1 +2497,0.0,17.0,30.0,111,34,10,0.0,13187,0.0,0.0,0.0,480.0,1.0,2.0,0.0,1.0,1.0,1090.288232180462,0.0,0.0,42159.0,1,3,7,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,42159.0,5,0,5,5_0 +2498,2.0,2.0,78.0,111,75,70,0.0,13189,0.0,300.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2273.145732814475,0.0,0.0,29822.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19881.333333333332,3,0,3_0,3_0 +2499,11.0,12.0,61.0,211,75,20,0.0,1319,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2264.7753460684635,0.0,0.0,48517.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,32344.666666666668,5,0,5,5_0 +2500,0.0,0.0,69.0,111,77,70,0.0,13191,0.0,0.0,0.0,489.0,0.0,3.0,0.0,2.0,1.5,2068.715923245885,0.0,0.0,30213.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20142.0,3,0,3_0,3_0 +2501,6.0,6.0,56.0,112,42,50,0.0,13192,0.0,600.0,0.0,0.0,2.0,6.0,0.0,3.0,2.0,2769.5560935475737,0.0,0.0,41260.0,1,1,8,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20630.0,3,0,3_0,3_1 +2502,11.0,11.0,49.0,112,62,50,0.0,13194,0.0,0.0,2.0,0.0,2.0,3.0,1.0,3.0,2.0,1601.1306049493303,4984.200000000001,0.0,41203.0,1,1,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,20601.5,3,0,3_0,3_0 +2503,2.0,2.0,81.0,111,78,70,0.0,13195,0.0,162.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2968.312041331562,0.0,0.0,16117.0,5,1,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16117.0,2,0,2_0,2_0 +2504,0.0,0.0,64.0,111,74,20,0.0,13196,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3744.134201567442,3640.0,0.0,125156.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,83437.33333333333,5,0,5,5_0 +2505,0.0,0.0,25.0,112,68,43,0.0,13197,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3491.0649071010885,3380.0,0.0,16195.0,1,3,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,16195.0,2,0,2_1,2_1 +2506,0.0,0.0,60.0,120,78,50,0.0,13198,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2006.3898896317512,1873.04,0.0,58945.0,5,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29472.5,4,0,4_0,4_1 +2507,0.0,0.0,50.0,111,34,30,0.0,13199,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,631.1267259081679,0.0,0.0,31274.0,1,4,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24056.923076923074,4,0,4_0,4_0 +2508,10.0,11.0,27.0,111,47,50,0.0,132,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2611.6522339262924,3016.0,0.0,37061.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20589.444444444445,3,0,3_0,3_0 +2509,0.0,0.0,49.0,112,47,31,0.0,1320,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1458.8099389467002,5486.52,0.0,34089.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17044.5,2,0,2_0,2_1 +2510,0.0,11.0,55.0,111,67,41,0.0,13200,0.0,70.0,0.0,0.0,2.0,5.0,4.0,6.0,3.1,1713.1169960304987,1304.68,0.0,31290.0,4,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,10093.548387096775,1,0,1_1,1_0 +2511,0.0,0.0,71.0,112,75,70,0.0,13202,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3206.518664007879,2597.3999999999996,0.0,42805.0,5,4,10,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,42805.0,5,0,5,5_1 +2512,2.0,2.0,49.0,111,85,44,0.0,13204,0.0,100.0,210.0,0.0,1.0,5.0,2.0,4.0,2.1,3689.407475546225,1583.3999999999999,0.0,8210.0,7,4,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,3909.523809523809,1,0,1_0,1_0 +2513,0.0,0.0,65.0,300,78,50,0.0,13205,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2835.5488604229245,0.0,0.0,19973.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13315.333333333334,1,0,1_0,1_1 +2514,0.0,0.0,50.0,112,34,12,0.0,13206,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,271.31044633346636,1294.8,0.0,42442.0,1,1,10,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23578.888888888887,3,0,3_0,3_0 +2515,0.0,0.0,45.0,211,43,50,0.0,13209,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,738.0464822450191,5200.0,0.0,30710.0,1,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,23623.076923076922,3,0,3_1,3_0 +2516,7.0,9.0,37.0,120,62,71,0.0,13210,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,3668.8811821409377,3674.84,0.0,18604.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18604.0,2,0,2_0,2_1 +2517,7.0,13.0,82.0,111,72,71,0.0,13211,0.0,250.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2788.2748769344034,2080.0,0.0,15290.0,5,1,8,6.0,1,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,15290.0,2,0,2_0,2_0 +2518,2.0,20.0,35.0,111,46,31,0.0,13212,0.0,0.0,0.0,165.0,1.0,4.0,1.0,2.0,1.3,981.9366300852306,0.0,0.0,26080.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,20061.53846153846,3,0,3_1,3_0 +2519,5.0,6.0,37.0,111,52,50,0.0,13213,0.0,0.0,0.0,585.0,2.0,3.0,0.0,2.0,1.5,2352.4114792692835,0.0,0.0,30097.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,20064.666666666668,3,0,3_0,3_0 +2520,9.0,9.0,65.0,300,74,12,0.0,13214,0.0,250.0,100.0,0.0,0.0,5.0,0.0,2.0,1.5,1960.2654953190297,0.0,0.0,37061.0,5,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,24707.333333333332,4,0,4_0,4_1 +2521,0.0,0.0,36.0,111,47,43,0.0,13215,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2781.980618709822,0.0,0.0,46370.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30913.333333333332,4,0,4_0,4_0 +2522,1.0,4.0,49.0,111,37,42,2.0,13216,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1967.445748680653,0.0,12500.0,49798.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19153.076923076922,3,0,3_0,3_0 +2523,0.0,0.0,78.0,111,78,71,0.0,13217,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4040.2021999639264,0.0,0.0,24470.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16313.333333333334,2,0,2_0,2_0 +2524,15.0,15.0,70.0,300,75,70,0.0,13221,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2032.0386230865088,0.0,0.0,27583.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18388.666666666668,2,0,2_0,2_1 +2525,5.0,8.0,31.0,111,37,30,0.0,13222,0.0,0.0,0.0,730.0,2.0,2.0,0.0,2.0,1.5,3120.024818699688,3181.88,0.0,77309.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,51539.333333333336,5,0,5,5_0 +2526,1.0,11.0,53.0,111,42,41,2.0,13223,0.0,0.0,300.0,0.0,1.0,2.0,0.0,1.0,1.0,3388.4138606457573,1560.0,8000.0,28624.0,1,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,28624.0,4,0,4_0,4_0 +2527,9.0,10.0,63.0,400,75,31,0.0,13224,0.0,100.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1990.8183377944322,1560.0,0.0,30798.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20532.0,3,0,3_0,3_1 +2528,0.0,0.0,23.0,111,84,31,0.0,13225,0.0,0.0,0.0,265.0,0.0,2.0,0.0,1.0,1.0,2707.968106775668,0.0,0.0,10965.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10965.0,1,0,1_1,1_0 +2529,12.0,13.0,60.0,400,75,31,0.0,13226,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2107.483710725954,1560.0,0.0,45337.0,5,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,30224.666666666668,4,0,4_0,4_1 +2530,7.0,7.0,32.0,111,52,42,0.0,13227,0.0,0.0,0.0,139.0,2.0,3.0,3.0,5.0,2.4,2942.6861756026246,0.0,0.0,44288.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,18453.333333333336,2,0,2_1,2_0 +2531,1.0,4.0,32.0,111,62,50,2.0,1323,0.0,620.0,0.0,0.0,3.0,4.0,2.0,3.0,2.0,2201.215900097204,0.0,14500.0,68704.0,1,3,6,4.0,2,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,34352.0,5,0,5,5_0 +2532,0.0,0.0,72.0,111,77,41,0.0,13230,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2282.983972687205,0.0,0.0,56805.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37870.0,5,0,5,5_0 +2533,0.0,0.0,67.0,111,56,33,0.0,13231,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.3,4676.122929865849,0.0,0.0,11930.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9176.923076923076,1,0,1_1,1_0 +2534,0.0,0.0,38.0,111,62,30,0.0,13232,0.0,0.0,0.0,55.0,1.0,3.0,1.0,2.0,1.3,902.0167790604467,0.0,0.0,19340.0,4,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14876.923076923076,2,0,2_1,2_0 +2535,3.0,8.0,76.0,111,78,71,0.0,13233,0.0,500.0,0.0,296.0,0.0,3.0,0.0,1.0,1.0,3393.9815669719933,0.0,0.0,19560.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19560.0,3,0,3_0,3_0 +2536,0.0,0.0,34.0,120,85,71,0.0,13236,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4929.50138244525,0.0,0.0,28650.0,7,3,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,28650.0,4,0,4_1,4_0 +2537,7.0,11.0,56.0,111,45,50,0.0,13238,0.0,0.0,70.0,584.0,1.0,3.0,1.0,2.0,1.5,4340.494929971803,0.0,0.0,29525.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,19683.333333333332,3,0,3_0,3_0 +2538,11.0,11.0,91.0,111,77,70,0.0,1324,0.0,0.0,150.0,0.0,0.0,5.0,0.0,1.0,1.0,2797.13565919869,0.0,0.0,18570.0,5,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18570.0,2,0,2_0,2_0 +2539,5.0,8.0,22.0,111,81,50,0.0,13240,0.0,320.0,0.0,3.0,1.0,3.0,2.0,3.0,1.6,603.8966799665988,0.0,0.0,16538.0,4,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,10336.25,1,0,1_1,1_0 +2540,0.0,0.0,56.0,112,37,42,0.0,13241,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1372.5301083976608,2108.6,0.0,72370.0,1,2,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,48246.666666666664,5,0,5,5_1 +2541,0.0,0.0,72.0,111,74,71,0.0,13242,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1759.2768728403137,0.0,0.0,72180.0,5,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,48120.0,5,0,5,5_0 +2542,1.0,4.0,60.0,221,38,60,2.0,13243,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2693.325927844125,3166.7999999999997,9200.0,56110.0,4,3,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28055.0,4,0,4_0,4_0 +2543,5.0,7.0,32.0,111,37,20,0.0,13245,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,4702.963392365706,0.0,0.0,82680.0,4,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,55120.0,5,0,5,5_0 +2544,0.0,0.0,24.0,111,43,30,0.0,13246,0.0,0.0,0.0,500.0,2.0,2.0,0.0,2.0,1.5,9771.175217327645,2600.0,0.0,40362.0,1,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26908.0,4,0,4_0,4_0 +2545,3.0,18.0,51.0,112,38,12,0.0,13248,0.0,99999.0,0.0,0.0,3.0,10.0,1.0,3.0,2.0,2412.7356213450685,5366.400000000001,0.0,67157.0,1,1,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,33578.5,5,0,5,5_0 +2546,19.0,19.0,43.0,211,37,31,0.0,13249,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1647.8407520679516,4184.44,0.0,55074.0,1,1,2,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,55074.0,5,0,5,5_0 +2547,1.0,5.0,80.0,111,72,70,2.0,1325,0.0,150.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3581.567860768808,0.0,5000.0,8911.0,5,4,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,8911.0,1,0,1_0,1_0 +2548,4.0,4.0,58.0,112,64,50,0.0,13250,0.0,0.0,320.0,0.0,2.0,6.0,0.0,2.0,1.5,1183.3054639798029,0.0,0.0,51770.0,1,1,10,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,34513.333333333336,5,0,5,5_0 +2549,2.0,13.0,43.0,112,46,31,0.0,13251,0.0,99999.0,0.0,0.0,2.0,7.0,3.0,6.0,3.3,2585.848096198455,5879.639999999999,0.0,74030.0,1,2,8,1.0,5,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,22433.333333333336,3,0,3_0,3_0 +2550,0.0,12.0,36.0,111,43,33,0.0,13252,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2812.392903307429,3562.5200000000004,0.0,44228.0,1,2,4,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,24571.11111111111,4,0,4_0,4_0 +2551,21.0,21.0,59.0,112,37,41,0.0,13256,0.0,0.0,0.0,565.0,1.0,3.0,0.0,2.0,1.5,1713.8456749351253,3641.56,0.0,53710.0,1,3,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,35806.666666666664,5,0,5,5_0 +2552,24.0,24.0,48.0,111,37,50,0.0,13257,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2133.3671843898255,1300.0,0.0,59037.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,39358.0,5,0,5,5_0 +2553,1.0,6.0,39.0,111,85,71,2.0,13258,0.0,150.0,0.0,0.0,0.0,3.0,3.0,5.0,2.4,1602.5703855644917,0.0,8900.0,20070.0,4,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,8362.5,1,0,1_1,1_0 +2554,2.0,2.0,63.0,111,74,71,0.0,13259,0.0,0.0,120.0,0.0,0.0,5.0,0.0,2.0,1.5,3487.055030998721,3806.92,0.0,50676.0,5,1,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,33784.0,5,0,5,5_0 +2555,0.0,0.0,59.0,400,45,50,0.0,1326,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1713.4225029043332,0.0,0.0,36020.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,36020.0,5,0,5,5_1 +2556,0.0,22.0,27.0,111,37,31,0.0,13260,0.0,0.0,0.0,745.0,2.0,3.0,0.0,2.0,1.5,4264.743768394269,0.0,0.0,54296.0,1,3,10,8.0,3,4.0,0.0,0.0,0,0,0,0,1,0,2.0,2.0,36197.333333333336,5,0,5,5_0 +2557,0.0,0.0,59.0,111,52,50,0.0,13261,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2220.0454474941557,0.0,0.0,8979.0,4,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8979.0,1,0,1_1,1_0 +2558,0.0,0.0,63.0,400,75,50,0.0,13262,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1860.578475552656,3224.0,0.0,28405.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18936.666666666668,3,0,3_0,3_1 +2559,4.0,12.0,79.0,400,78,71,0.0,13263,0.0,280.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2920.603261561231,2080.0,0.0,24659.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16439.333333333332,2,0,2_0,2_1 +2560,9.0,10.0,34.0,400,38,20,0.0,13264,0.0,12.0,10.0,0.0,2.0,4.0,1.0,3.0,1.8,2384.999333789167,2340.0,0.0,60920.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,33844.444444444445,5,0,5,5_1 +2561,5.0,5.0,34.0,111,37,20,0.0,13267,0.0,450.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2927.6495989353807,2134.08,0.0,97505.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,54169.444444444445,5,0,5,5_0 +2562,2.0,2.0,53.0,300,21,50,0.0,13268,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2270.4220351931535,0.0,0.0,51531.0,1,3,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24538.571428571428,4,0,4_0,4_0 +2563,1.0,2.0,74.0,111,78,71,0.0,13269,0.0,350.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1935.6350406416266,0.0,0.0,22433.0,5,1,6,5.0,1,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,22433.0,3,0,3_0,3_0 +2564,0.0,0.0,83.0,111,77,50,0.0,1327,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1866.7730779785925,0.0,0.0,45295.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30196.666666666668,4,0,4_0,4_0 +2565,7.0,14.0,24.0,221,62,43,0.0,13270,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2263.991876032894,3276.0,0.0,36287.0,1,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,24191.333333333332,4,0,4_0,4_0 +2566,4.0,10.0,49.0,111,38,12,0.0,13271,0.0,0.0,900.0,0.0,3.0,11.0,5.0,7.0,3.8,1216.4845868797888,4001.9199999999996,0.0,126770.0,1,1,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,33360.52631578947,5,0,5,5_0 +2567,0.0,0.0,32.0,111,63,50,0.0,13272,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1253.306265269051,520.0,0.0,43227.0,1,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28818.0,4,0,4_0,4_0 +2568,8.0,8.0,46.0,111,38,30,0.0,13273,0.0,50.0,50.0,0.0,1.0,4.0,2.0,3.0,1.8,714.8965969158098,0.0,0.0,38678.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21487.777777777777,3,0,3_0,3_0 +2569,0.0,0.0,59.0,400,38,31,0.0,13274,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1823.0302755355808,2913.56,0.0,38134.0,4,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25422.666666666668,4,0,4_0,4_1 +2570,6.0,8.0,37.0,111,68,60,0.0,13275,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,869.0462306636359,0.0,0.0,13960.0,4,3,7,5.0,2,1.0,1.0,0.0,0,0,1,0,0,1,0.0,1.0,10738.461538461537,1,0,1_1,1_0 +2571,0.0,20.0,45.0,111,34,20,0.0,13276,0.0,0.0,0.0,255.0,1.0,3.0,1.0,2.0,1.5,650.8140165356592,0.0,0.0,29423.0,2,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,19615.333333333332,3,0,3_1,3_0 +2572,0.0,0.0,60.0,111,78,50,0.0,13277,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2577.989203211663,0.0,0.0,38669.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,38669.0,5,0,5,5_0 +2573,6.0,10.0,47.0,221,56,42,0.0,13278,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2519.335102822142,0.0,0.0,18335.0,1,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,18335.0,2,0,2_1,2_0 +2574,2.0,2.0,38.0,111,85,50,0.0,13281,0.0,200.0,0.0,74.0,0.0,1.0,0.0,1.0,1.0,5073.378980739391,0.0,0.0,12792.0,7,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,12792.0,1,0,1_1,1_0 +2575,10.0,11.0,77.0,112,75,44,0.0,13282,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,3278.218857157631,2111.2000000000003,0.0,68606.0,5,1,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,34303.0,5,0,5,5_0 +2576,0.0,0.0,58.0,300,22,41,0.0,13284,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2818.391421112363,3099.2000000000003,0.0,9933.0,4,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,4966.5,1,0,1_0,1_1 +2577,4.0,9.0,41.0,111,56,50,0.0,13285,0.0,0.0,150.0,82.0,1.0,4.0,2.0,3.0,1.8,192.1886694566594,0.0,0.0,15040.0,1,3,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,8355.555555555555,1,0,1_0,1_0 +2578,0.0,0.0,61.0,112,75,60,0.0,13286,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2398.5446478520585,3344.6399999999994,0.0,37740.0,5,1,10,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37740.0,5,0,5,5_1 +2579,0.0,0.0,58.0,111,21,50,0.0,13287,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,3021.9053299811185,3744.0,0.0,70807.0,1,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28322.8,4,0,4_0,4_0 +2580,2.0,2.0,40.0,111,34,30,0.0,13289,0.0,350.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,2664.3482510950107,3060.2000000000003,0.0,65000.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25000.0,4,0,4_0,4_0 +2581,9.0,19.0,50.0,111,34,10,0.0,1329,0.0,0.0,50.0,0.0,2.0,6.0,3.0,5.0,3.0,1892.410430594295,0.0,0.0,88775.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,29591.666666666668,4,0,4_0,4_0 +2582,2.0,8.0,59.0,111,43,33,0.0,13290,0.0,0.0,60.0,502.0,1.0,3.0,0.0,1.0,1.0,2353.7810992290306,0.0,0.0,32981.0,1,3,5,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,32981.0,5,0,5,5_0 +2583,0.0,0.0,53.0,111,45,41,0.0,13291,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,1747.9248936949643,2440.88,0.0,44300.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29533.333333333332,4,0,4_0,4_0 +2584,0.0,0.0,34.0,120,37,12,0.0,13292,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1774.3992471495799,2899.0,0.0,67041.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27933.75,4,0,4_0,4_1 +2585,10.0,10.0,32.0,112,35,20,0.0,13293,0.0,0.0,0.0,720.0,2.0,5.0,0.0,2.0,1.5,1882.481426555778,0.0,0.0,52788.0,1,3,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,35192.0,5,0,5,5_0 +2586,2.0,20.0,50.0,120,63,71,0.0,13294,0.0,80.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1563.779408045804,0.0,0.0,26720.0,4,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17813.333333333332,2,0,2_0,2_0 +2587,0.0,0.0,56.0,111,64,50,0.0,13295,0.0,0.0,0.0,404.0,2.0,5.0,2.0,5.0,2.6,1990.7094797358866,0.0,0.0,49770.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19142.30769230769,3,0,3_0,3_0 +2588,2.0,8.0,54.0,111,63,44,0.0,13297,0.0,0.0,0.0,296.0,1.0,3.0,2.0,4.0,2.1,868.3060339310598,0.0,0.0,35029.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,16680.47619047619,2,0,2_1,2_0 +2589,4.0,9.0,47.0,111,42,30,0.0,13298,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,727.5299800964822,0.0,0.0,19289.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14837.692307692307,2,0,2_1,2_0 +2590,8.0,11.0,58.0,111,52,71,0.0,13299,0.0,450.0,0.0,500.0,1.0,3.0,0.0,1.0,1.0,2795.4946511156336,0.0,0.0,18784.0,1,3,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18784.0,3,0,3_0,3_0 +2591,0.0,0.0,54.0,400,37,50,0.0,133,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1793.8290676411277,2600.0,0.0,67044.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,33522.0,5,0,5,5_0 +2592,7.0,10.0,45.0,221,52,31,0.0,1330,0.0,0.0,0.0,0.0,1.0,6.0,3.0,4.0,2.3,348.0543171542288,0.0,0.0,32207.0,3,2,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,14003.04347826087,2,0,2_1,2_0 +2593,0.0,13.0,46.0,112,85,50,0.0,13301,0.0,0.0,0.0,848.0,1.0,5.0,2.0,4.0,2.5,3284.0150238316046,1040.0,0.0,21171.0,4,3,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,8468.4,1,0,1_0,1_1 +2594,6.0,6.0,49.0,400,13,50,0.0,13302,0.0,0.0,0.0,0.0,3.0,6.0,3.0,4.0,2.5,874.5326624512139,0.0,0.0,16995.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,6798.0,1,0,1_0,1_1 +2595,0.0,0.0,71.0,120,74,50,0.0,13303,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2764.8933952965754,1694.6800000000003,0.0,42550.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28366.666666666668,4,0,4_0,4_1 +2596,0.0,0.0,64.0,111,75,50,0.0,13304,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3081.6708123974277,2080.0,0.0,21094.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21094.0,3,0,3_0,3_0 +2597,0.0,20.0,48.0,300,65,50,0.0,13305,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2553.065913674839,3380.0,0.0,18114.0,1,2,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,18114.0,2,0,2_0,2_1 +2598,3.0,3.0,74.0,112,78,50,0.0,13307,0.0,0.0,60.0,0.0,0.0,4.0,0.0,2.0,1.5,1902.481352615478,2757.56,0.0,28429.0,5,1,8,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,18952.666666666668,3,0,3_0,3_1 +2599,6.0,6.0,39.0,111,37,12,0.0,1331,0.0,0.0,450.0,0.0,2.0,7.0,3.0,5.0,2.4,1114.618957429261,3087.76,0.0,53436.0,4,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22265.0,3,0,3_0,3_0 +2600,14.0,14.0,69.0,300,74,44,0.0,13312,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1612.7322394167536,2214.6800000000003,0.0,68816.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,45877.333333333336,5,0,5,5_1 +2601,0.0,0.0,47.0,111,53,42,0.0,13315,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2624.397053189314,0.0,0.0,77659.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,36980.47619047619,5,0,5,5_0 +2602,1.0,1.0,44.0,111,63,50,1.0,13316,0.0,0.0,550.0,0.0,2.0,4.0,2.0,4.0,2.1,11513.269802619003,8840.0,20500.0,38050.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,18119.04761904762,2,0,2_1,2_0 +2603,4.0,14.0,23.0,111,63,43,0.0,13317,0.0,0.0,0.0,650.0,2.0,3.0,0.0,2.0,1.5,1333.4966441226243,3120.0,0.0,33604.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,22402.666666666668,3,0,3_0,3_0 +2604,2.0,3.0,38.0,211,38,31,0.0,13319,0.0,750.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2439.7561983157975,3292.12,0.0,66808.0,1,2,2,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,31813.333333333332,5,0,5,5_0 +2605,6.0,6.0,82.0,300,77,70,0.0,1332,0.0,400.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2663.2874974268707,1560.0,0.0,21176.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21176.0,3,0,3_0,3_1 +2606,6.0,6.0,63.0,111,55,44,0.0,13320,0.0,600.0,0.0,1070.0,2.0,3.0,1.0,3.0,2.0,2504.512060812597,1820.0,0.0,47808.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,23904.0,4,0,4_0,4_0 +2607,8.0,8.0,59.0,112,31,10,0.0,13321,0.0,600.0,180.0,0.0,1.0,7.0,1.0,2.0,1.5,887.9008631975457,926.1199999999999,0.0,69402.0,1,1,10,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,46268.0,5,0,5,5_1 +2608,9.0,9.0,29.0,300,69,50,0.0,13322,0.0,70.0,0.0,270.0,2.0,4.0,1.0,3.0,1.8,2191.3330012620645,3395.6,0.0,24251.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,13472.777777777777,1,0,1_1,1_1 +2609,6.0,9.0,87.0,111,86,70,0.0,13323,0.0,0.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,1892.0296485997221,0.0,0.0,17186.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17186.0,2,0,2_0,2_0 +2610,5.0,6.0,42.0,112,22,50,0.0,13325,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,3499.268872581812,0.0,0.0,52771.0,1,2,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,40593.07692307692,5,0,5,5_1 +2611,0.0,0.0,24.0,111,84,41,0.0,13326,0.0,0.0,0.0,664.0,0.0,2.0,0.0,2.0,1.5,3374.3546091857665,0.0,0.0,20541.0,3,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13694.0,1,0,1_1,1_0 +2612,0.0,0.0,34.0,120,69,50,0.0,13327,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1617.1806110160323,6223.359999999999,0.0,42783.0,1,2,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21391.5,3,0,3_0,3_0 +2613,5.0,8.0,37.0,111,45,20,0.0,13328,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2062.111830979402,694.1999999999999,0.0,46656.0,1,1,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19440.0,3,0,3_0,3_0 +2614,4.0,6.0,78.0,120,72,50,0.0,13329,0.0,150.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1911.1709410051164,0.0,0.0,14370.0,5,1,0,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,14370.0,2,0,2_0,2_0 +2615,2.0,9.0,34.0,111,47,50,0.0,13330,0.0,0.0,110.0,0.0,1.0,3.0,0.0,1.0,1.0,4828.089551573481,3027.44,0.0,27984.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,27984.0,4,0,4_0,4_0 +2616,10.0,11.0,86.0,111,75,50,0.0,13331,0.0,150.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1389.4773716852683,0.0,0.0,33238.0,5,1,7,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22158.666666666668,3,0,3_0,3_0 +2617,1.0,9.0,46.0,111,65,71,2.0,13332,0.0,0.0,10.0,78.0,1.0,3.0,3.0,5.0,2.4,2977.8285464283754,0.0,3800.0,21792.0,4,3,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,1,1.0,2.0,9080.0,1,0,1_1,1_0 +2618,4.0,4.0,85.0,111,77,44,0.0,13333,0.0,70.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2600.9979133248835,0.0,0.0,33748.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,33748.0,5,0,5,5_0 +2619,0.0,0.0,46.0,400,63,50,0.0,13334,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1873.1521240651605,1560.0,0.0,38300.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14730.76923076923,2,0,2_0,2_1 +2620,7.0,7.0,50.0,300,64,50,0.0,13336,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2109.8134087562544,3640.0,0.0,62142.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,31071.0,4,0,4_0,4_1 +2621,2.0,4.0,46.0,111,56,41,0.0,13337,0.0,0.0,0.0,294.0,1.0,2.0,1.0,2.0,1.3,1893.6843928698897,0.0,0.0,10481.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,8062.307692307692,1,0,1_0,1_0 +2622,0.0,0.0,88.0,111,77,70,0.0,13338,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3842.397544163578,0.0,0.0,28770.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28770.0,4,0,4_0,4_0 +2623,0.0,0.0,40.0,111,65,71,0.0,13339,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.3,2921.2655914430193,1040.0,0.0,39138.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17016.521739130436,2,0,2_1,2_0 +2624,3.0,3.0,68.0,120,75,41,0.0,13341,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1466.0530745880658,1976.52,0.0,22970.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,15313.333333333334,2,0,2_0,2_0 +2625,4.0,4.0,73.0,111,75,41,0.0,13343,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,6568.975811611403,0.0,0.0,37933.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,37933.0,5,0,5,5_0 +2626,13.0,13.0,28.0,111,67,42,0.0,13346,0.0,0.0,0.0,64.0,1.0,2.0,1.0,2.0,1.3,1298.573893680894,0.0,0.0,19700.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,15153.846153846152,2,0,2_1,2_0 +2627,10.0,10.0,83.0,111,74,50,0.0,13347,0.0,400.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3885.3136441996007,0.0,0.0,28900.0,5,4,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,19266.666666666668,3,0,3_0,3_0 +2628,2.0,9.0,45.0,120,43,33,0.0,13352,0.0,150.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1670.98281803049,3432.0,0.0,70830.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,39350.0,5,0,5,5_0 +2629,12.0,21.0,33.0,112,38,12,0.0,13353,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3653.112420233785,2055.04,0.0,34249.0,1,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,34249.0,5,0,5,5_1 +2630,0.0,2.0,36.0,300,46,71,0.0,13354,0.0,1350.0,0.0,0.0,1.0,2.0,1.0,2.0,1.5,536.3271828972048,0.0,0.0,17258.0,1,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,11505.333333333334,1,0,1_1,1_1 +2631,0.0,15.0,39.0,111,55,50,2.0,13355,0.0,300.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,953.5919405187994,0.0,500.0,12952.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,9963.076923076922,1,0,1_1,1_0 +2632,4.0,4.0,42.0,111,85,30,0.0,13357,0.0,0.0,0.0,0.0,0.0,5.0,3.0,4.0,2.3,1070.621887445499,0.0,0.0,32037.0,7,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13929.13043478261,2,0,2_1,2_0 +2633,0.0,0.0,42.0,211,64,50,1.0,13358,0.0,0.0,150.0,0.0,2.0,6.0,2.0,4.0,2.3,106.6784646360265,1562.6000000000001,41000.0,47788.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20777.391304347828,3,0,3_0,3_0 +2634,11.0,12.0,23.0,111,22,71,0.0,13359,0.0,0.0,0.0,213.0,2.0,4.0,3.0,5.0,2.6,1274.3063562801121,1040.0,0.0,46183.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,17762.69230769231,2,0,2_1,2_0 +2635,10.0,10.0,36.0,111,67,50,0.0,1336,0.0,300.0,0.0,94.0,1.0,1.0,0.0,1.0,1.0,3455.662147627409,1300.0,0.0,13056.0,4,3,4,4.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,13056.0,1,0,1_1,1_0 +2636,0.0,0.0,54.0,111,38,31,0.0,13360,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1919.583309869301,0.0,0.0,100846.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40338.4,5,0,5,5_0 +2637,3.0,7.0,69.0,400,78,50,0.0,13361,0.0,420.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2171.7334839603304,0.0,0.0,11040.0,5,3,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,11040.0,1,0,1_1,1_0 +2638,7.0,7.0,47.0,112,56,71,0.0,13362,0.0,400.0,0.0,0.0,2.0,6.0,1.0,4.0,2.5,3737.1651134187427,2080.0,0.0,31890.0,1,1,5,0.0,5,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,12756.0,1,0,1_0,1_1 +2639,0.0,0.0,89.0,211,75,33,0.0,13366,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2473.5450094082757,0.0,0.0,30560.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30560.0,4,0,4_0,4_0 +2640,4.0,4.0,78.0,111,75,70,0.0,13367,0.0,100.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2394.12818944207,0.0,0.0,32814.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21876.0,3,0,3_0,3_0 +2641,0.0,0.0,35.0,111,52,50,0.0,13368,0.0,0.0,0.0,267.0,1.0,2.0,0.0,1.0,1.0,2660.7255251127676,2870.92,0.0,22363.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22363.0,3,0,3_0,3_0 +2642,5.0,10.0,46.0,120,21,44,0.0,13369,0.0,0.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,2565.202088778546,0.0,0.0,23253.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15502.0,2,0,2_0,2_1 +2643,6.0,10.0,59.0,400,77,71,0.0,13372,0.0,0.0,300.0,0.0,0.0,3.0,0.0,1.0,1.0,4494.941503543521,0.0,0.0,13947.0,7,3,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,13947.0,2,0,2_1,2_0 +2644,0.0,0.0,44.0,111,56,41,0.0,13373,0.0,0.0,0.0,690.0,2.0,6.0,2.0,4.0,2.5,3487.1098788830022,0.0,0.0,33655.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13462.0,1,0,1_0,1_0 +2645,2.0,7.0,79.0,221,77,50,2.0,13375,0.0,50.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1341.0650611953256,0.0,11000.0,20183.0,5,1,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20183.0,3,0,3_0,3_0 +2646,3.0,13.0,52.0,112,48,12,0.0,13376,0.0,460.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1486.690038797884,0.0,0.0,54007.0,1,2,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36004.666666666664,5,0,5,5_1 +2647,5.0,5.0,55.0,300,13,44,0.0,13377,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1708.6179594882371,0.0,0.0,61643.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,41095.333333333336,5,0,5,5_1 +2648,10.0,10.0,68.0,111,78,70,0.0,13378,0.0,0.0,0.0,287.0,0.0,3.0,0.0,2.0,1.5,2023.7518280076818,0.0,0.0,24970.0,5,3,6,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,16646.666666666668,2,0,2_0,2_0 +2649,6.0,6.0,35.0,120,85,50,0.0,13380,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,578.0952693967408,0.0,0.0,14351.0,6,3,0,2.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,8969.375,1,0,1_1,1_0 +2650,0.0,2.0,44.0,120,21,50,0.0,13381,0.0,210.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,3304.090392468289,0.0,0.0,83787.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,29923.928571428572,4,0,4_0,4_1 +2651,1.0,5.0,40.0,400,63,71,2.0,13382,0.0,140.0,0.0,0.0,2.0,5.0,4.0,5.0,2.6,617.3898334716666,1040.0,6200.0,39854.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,15328.461538461537,2,0,2_1,2_1 +2652,2.0,21.0,80.0,211,74,42,0.0,13383,0.0,250.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1256.017045879379,0.0,0.0,54540.0,5,1,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,36360.0,5,0,5,5_0 +2653,0.0,21.0,40.0,112,68,71,0.0,13384,0.0,0.0,99999.0,0.0,1.0,6.0,1.0,2.0,1.3,892.0214104859155,0.0,0.0,14617.0,1,3,10,0.0,2,1.0,1.0,1.0,1,0,0,0,0,1,1.0,0.0,11243.846153846154,1,0,1_1,1_1 +2654,0.0,0.0,25.0,111,67,71,0.0,13385,0.0,0.0,0.0,415.0,1.0,2.0,0.0,1.0,1.0,4539.187198352444,3900.0,0.0,21833.0,1,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21833.0,3,0,3_0,3_0 +2655,1.0,1.0,77.0,112,78,70,1.0,13386,0.0,500.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3324.25772431711,0.0,25000.0,22730.0,5,1,8,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,22730.0,3,0,3_0,3_0 +2656,0.0,18.0,77.0,112,74,12,0.0,13387,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2266.9873441822533,3062.7999999999997,0.0,57313.0,5,1,7,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,38208.666666666664,5,0,5,5_0 +2657,1.0,13.0,35.0,112,43,30,2.0,13388,0.0,500.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,1815.253199140971,2080.0,330.0,47416.0,1,3,8,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,17561.48148148148,2,0,2_0,2_0 +2658,23.0,23.0,28.0,111,52,42,0.0,13389,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3502.4289627163707,0.0,0.0,23678.0,1,2,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,23678.0,3,0,3_1,3_0 +2659,3.0,3.0,38.0,111,56,50,0.0,13391,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2871.68783175709,0.0,0.0,26250.0,1,4,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14583.333333333332,2,0,2_0,2_0 +2660,7.0,7.0,68.0,211,78,50,0.0,13393,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1291.2177157348808,0.0,0.0,28101.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18734.0,3,0,3_0,3_0 +2661,0.0,0.0,46.0,120,38,20,0.0,13394,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1755.4184180923692,0.0,0.0,68040.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37800.0,5,0,5,5_1 +2662,0.0,0.0,43.0,111,45,20,0.0,13396,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2841.3589038160626,0.0,0.0,34955.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34955.0,5,0,5,5_0 +2663,6.0,17.0,35.0,111,63,43,0.0,13397,0.0,99999.0,0.0,0.0,2.0,3.0,4.0,6.0,2.7,1043.112022427467,0.0,0.0,43594.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,16145.925925925925,2,0,2_1,2_0 +2664,2.0,14.0,86.0,111,77,70,0.0,13398,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4390.049185832566,0.0,0.0,16597.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16597.0,2,0,2_0,2_0 +2665,7.0,7.0,48.0,120,56,50,0.0,1340,0.0,0.0,0.0,203.0,1.0,4.0,2.0,3.0,1.8,401.7415567580154,1574.56,0.0,24150.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,13416.666666666666,1,0,1_1,1_1 +2666,6.0,14.0,45.0,111,35,12,0.0,13400,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2717.786125187066,0.0,0.0,-3561.0,1,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,-3561.0,1,0,1_0,1_0 +2667,13.0,20.0,33.0,111,38,20,0.0,13401,0.0,0.0,0.0,644.0,2.0,3.0,2.0,4.0,2.1,1049.9990366093134,0.0,0.0,29580.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14085.714285714284,2,0,2_0,2_0 +2668,0.0,0.0,39.0,111,67,50,0.0,13402,0.0,0.0,0.0,380.0,2.0,4.0,2.0,4.0,2.1,2265.314405587887,0.0,0.0,40003.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19049.04761904762,3,0,3_0,3_0 +2669,0.0,0.0,43.0,111,48,50,0.0,13404,0.0,0.0,0.0,411.0,1.0,3.0,2.0,3.0,2.0,2074.9320745718073,2102.36,0.0,19682.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9841.0,1,0,1_1,1_0 +2670,0.0,0.0,73.0,111,31,10,0.0,13405,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2040.63137070062,0.0,0.0,105640.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,70426.66666666667,5,0,5,5_0 +2671,3.0,6.0,45.0,112,63,50,0.0,13406,0.0,230.0,0.0,491.0,1.0,4.0,2.0,4.0,2.5,1886.2299994580806,0.0,0.0,37703.0,1,3,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15081.2,2,0,2_0,2_0 +2672,2.0,2.0,67.0,111,77,71,0.0,13407,0.0,200.0,0.0,252.0,0.0,1.0,0.0,1.0,1.0,2919.8741931605646,0.0,0.0,17662.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17662.0,2,0,2_0,2_0 +2673,2.0,17.0,47.0,112,85,60,0.0,13408,0.0,0.0,99999.0,0.0,0.0,4.0,3.0,5.0,2.4,1127.221519050678,0.0,0.0,29861.0,7,3,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,12442.083333333334,1,0,1_1,1_0 +2674,6.0,13.0,83.0,211,74,42,0.0,13409,0.0,200.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1113.0832814703695,0.0,0.0,35500.0,5,1,2,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23666.666666666668,3,0,3_0,3_0 +2675,0.0,0.0,36.0,111,38,12,0.0,1341,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,4399.771232950579,2883.92,0.0,48304.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23001.90476190476,3,0,3_0,3_0 +2676,0.0,0.0,23.0,221,67,70,0.0,13410,0.0,0.0,0.0,90.0,1.0,2.0,0.0,1.0,1.0,6858.558112987303,0.0,0.0,14147.0,1,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14147.0,2,0,2_1,2_0 +2677,6.0,6.0,30.0,111,55,41,0.0,13411,0.0,0.0,0.0,175.0,1.0,2.0,1.0,2.0,1.3,817.9875860973482,0.0,0.0,23275.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,17903.846153846152,2,0,2_1,2_0 +2678,2.0,2.0,29.0,112,46,31,0.0,13413,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2448.811158457914,1301.04,0.0,71392.0,1,2,8,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,39662.22222222222,5,0,5,5_0 +2679,1.0,12.0,69.0,111,77,50,2.0,13414,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2261.9474171238103,1664.0,4500.0,42585.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28390.0,4,0,4_0,4_0 +2680,0.0,0.0,64.0,400,21,50,1.0,13415,0.0,0.0,60.0,0.0,1.0,7.0,0.0,1.0,1.0,3014.5256361062998,2236.0,20000.0,54840.0,1,1,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,54840.0,5,0,5,5_1 +2681,0.0,0.0,26.0,111,34,20,0.0,13416,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1245.2475029959196,1560.0,0.0,41599.0,1,2,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27732.666666666668,4,0,4_0,4_0 +2682,0.0,2.0,37.0,112,43,41,2.0,13417,0.0,0.0,100.0,0.0,2.0,6.0,3.0,5.0,2.4,2345.1417951022568,4002.96,3000.0,37201.0,1,2,4,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,15500.416666666668,2,0,2_0,2_1 +2683,0.0,0.0,64.0,120,78,70,0.0,13418,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2000.914114316329,0.0,0.0,25450.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16966.666666666668,2,0,2_0,2_1 +2684,0.0,0.0,22.0,111,63,50,0.0,1342,0.0,0.0,0.0,74.0,2.0,5.0,1.0,2.0,1.5,1989.315813006514,1040.0,0.0,26834.0,1,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17889.333333333332,2,0,2_1,2_0 +2685,9.0,9.0,50.0,112,69,50,0.0,13420,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1455.636275543,0.0,0.0,84691.0,1,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,56460.666666666664,5,0,5,5_1 +2686,0.0,0.0,42.0,111,46,41,0.0,13421,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1806.36783402037,0.0,0.0,54982.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23905.217391304348,4,0,4_0,4_0 +2687,2.0,4.0,28.0,111,52,50,0.0,13424,0.0,0.0,0.0,179.0,1.0,3.0,1.0,2.0,1.3,5481.053447633084,0.0,0.0,16184.0,4,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,12449.23076923077,1,0,1_1,1_0 +2688,3.0,15.0,79.0,111,74,31,0.0,13428,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2186.1201546599273,2374.3199999999997,0.0,60496.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,40330.666666666664,5,0,5,5_0 +2689,6.0,11.0,54.0,111,34,10,0.0,13429,0.0,99999.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1719.7819639868867,1560.0,0.0,132860.0,1,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,88573.33333333333,5,0,5,5_0 +2690,7.0,7.0,48.0,112,52,43,0.0,13431,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1325.1428478023747,8739.64,0.0,43580.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15564.285714285716,2,0,2_0,2_1 +2691,0.0,0.0,76.0,112,75,60,0.0,13433,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2469.2328712307,0.0,0.0,16765.0,5,4,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16765.0,2,0,2_0,2_0 +2692,0.0,0.0,63.0,112,75,33,0.0,13435,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2480.86241877602,0.0,0.0,33638.0,5,2,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33638.0,5,0,5,5_1 +2693,2.0,7.0,51.0,300,34,20,0.0,13437,0.0,600.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,3035.247861350726,2612.48,0.0,52339.0,1,1,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,34892.666666666664,5,0,5,5_1 +2694,0.0,0.0,39.0,111,38,12,0.0,1344,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,4371.79471694727,5633.16,0.0,80113.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38149.04761904762,5,0,5,5_0 +2695,0.0,0.0,31.0,112,31,30,0.0,13440,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2970.342595525493,3120.0,0.0,43425.0,1,2,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24125.0,4,0,4_0,4_0 +2696,0.0,0.0,86.0,111,77,70,0.0,13441,0.0,0.0,0.0,430.0,0.0,3.0,0.0,2.0,1.5,2908.715365314126,0.0,0.0,28814.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19209.333333333332,3,0,3_0,3_0 +2697,1.0,1.0,31.0,111,46,30,0.0,13442,0.0,80.0,0.0,304.0,2.0,4.0,0.0,2.0,1.5,1016.2207172366723,1300.0,0.0,17554.0,1,3,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11702.666666666666,1,0,1_1,1_0 +2698,3.0,3.0,62.0,400,78,50,0.0,13443,0.0,760.0,58.0,0.0,0.0,5.0,0.0,1.0,1.0,2636.1021981349336,0.0,0.0,9543.0,5,1,0,1.0,1,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,9543.0,1,0,1_0,1_0 +2699,2.0,2.0,34.0,111,56,31,0.0,13444,0.0,300.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2792.6649699249383,780.52,0.0,16173.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,16173.0,2,0,2_1,2_0 +2700,1.0,10.0,32.0,111,85,71,2.0,13445,0.0,0.0,15.0,0.0,0.0,3.0,3.0,4.0,1.9,946.153267324015,0.0,4000.0,21538.0,6,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,11335.789473684212,1,0,1_1,1_0 +2701,0.0,8.0,27.0,111,33,20,0.0,13447,0.0,311.0,0.0,565.0,1.0,2.0,0.0,1.0,1.0,3679.6853509410303,0.0,0.0,27278.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27278.0,4,0,4_0,4_0 +2702,1.0,1.0,38.0,120,42,20,1.0,13448,0.0,200.0,120.0,0.0,2.0,8.0,3.0,5.0,2.4,1891.4424290192296,0.0,11900.0,41304.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17210.0,2,0,2_0,2_1 +2703,2.0,2.0,48.0,111,37,43,0.0,13449,0.0,350.0,160.0,0.0,1.0,3.0,1.0,2.0,1.5,2579.3426603259054,0.0,0.0,65133.0,1,1,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,43422.0,5,0,5,5_0 +2704,1.0,1.0,36.0,120,43,30,0.0,13450,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,3336.9028421406833,0.0,0.0,28056.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15586.666666666666,2,0,2_0,2_1 +2705,0.0,0.0,30.0,111,63,71,0.0,13452,0.0,0.0,0.0,601.0,2.0,5.0,3.0,5.0,2.4,3011.3514114900822,2340.0,0.0,39117.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16298.75,2,0,2_0,2_0 +2706,4.0,13.0,70.0,111,75,50,0.0,13453,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3375.5822048125806,0.0,0.0,27028.0,5,1,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,27028.0,4,0,4_0,4_0 +2707,9.0,11.0,51.0,111,37,10,0.0,13454,0.0,0.0,0.0,530.0,1.0,3.0,0.0,1.0,1.0,2225.756187715076,0.0,0.0,36230.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,36230.0,5,0,5,5_0 +2708,1.0,1.0,59.0,300,52,50,1.0,13455,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,344.8174931689719,2600.0,30513.0,26572.0,1,1,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14762.222222222223,2,0,2_0,2_1 +2709,2.0,3.0,58.0,111,69,60,0.0,13456,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2990.9036169213173,0.0,0.0,124939.0,1,1,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,83292.66666666667,5,0,5,5_0 +2710,0.0,0.0,82.0,300,71,71,0.0,13457,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1727.0340708798606,0.0,0.0,19931.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13287.333333333334,1,0,1_0,1_1 +2711,13.0,13.0,68.0,111,74,31,0.0,13458,0.0,300.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2236.1692811686985,3279.12,0.0,33715.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,33715.0,5,0,5,5_0 +2712,6.0,6.0,73.0,300,78,50,0.0,13459,0.0,0.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,2704.5650378473624,1872.52,0.0,12040.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12040.0,1,0,1_0,1_1 +2713,2.0,29.0,67.0,400,77,44,0.0,13460,0.0,0.0,200.0,0.0,0.0,3.0,0.0,1.0,1.0,1810.3011264553402,0.0,0.0,18614.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18614.0,2,0,2_0,2_1 +2714,5.0,7.0,76.0,111,72,12,0.0,13461,0.0,0.0,320.0,0.0,0.0,9.0,0.0,2.0,1.5,1499.1998507331575,0.0,0.0,102101.0,5,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,68067.33333333333,5,0,5,5_0 +2715,0.0,0.0,32.0,111,22,41,0.0,13462,0.0,0.0,0.0,35.0,1.0,5.0,4.0,5.0,2.2,1382.3978101333748,0.0,0.0,33920.0,1,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15418.181818181816,2,0,2_1,2_0 +2716,0.0,0.0,50.0,112,45,31,0.0,13464,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1302.726807644441,0.0,0.0,47084.0,1,1,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23542.0,3,0,3_0,3_1 +2717,0.0,0.0,89.0,400,86,70,0.0,13466,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2248.181996126689,0.0,0.0,17488.0,6,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17488.0,2,0,2_0,2_1 +2718,4.0,4.0,52.0,111,38,50,0.0,13467,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1725.661310015958,2357.6800000000003,0.0,60819.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,33788.333333333336,5,0,5,5_0 +2719,2.0,7.0,76.0,111,77,71,0.0,13468,0.0,350.0,0.0,327.0,0.0,4.0,0.0,1.0,1.0,2856.6747473965393,0.0,0.0,14105.0,5,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,14105.0,2,0,2_1,2_0 +2720,15.0,15.0,50.0,111,85,30,0.0,13469,0.0,0.0,90.0,750.0,0.0,3.0,0.0,1.0,1.0,2719.264893491382,0.0,0.0,18471.0,4,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18471.0,2,0,2_0,2_0 +2721,0.0,0.0,24.0,111,54,20,0.0,1347,0.0,0.0,0.0,325.0,1.0,3.0,0.0,1.0,1.0,4201.519167962021,0.0,0.0,22642.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22642.0,3,0,3_0,3_0 +2722,1.0,11.0,63.0,111,22,50,0.0,13470,0.0,0.0,99999.0,0.0,1.0,5.0,1.0,2.0,1.5,785.3995610365353,0.0,0.0,9544.0,4,1,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,6362.666666666667,1,0,1_0,1_0 +2723,0.0,0.0,52.0,111,52,42,0.0,13472,0.0,0.0,0.0,0.0,2.0,4.0,3.0,4.0,2.5,2169.2082786559045,0.0,0.0,83740.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33496.0,5,0,5,5_0 +2724,6.0,6.0,39.0,111,22,50,0.0,13474,0.0,80.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,990.1830430414612,0.0,0.0,17707.0,1,3,8,7.0,2,3.0,0.0,1.0,0,0,0,1,0,1,1.0,2.0,11804.666666666666,1,0,1_1,1_0 +2725,1.0,5.0,23.0,111,84,30,2.0,13476,0.0,200.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4775.58217560235,0.0,3400.0,9754.0,3,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,9754.0,1,0,1_1,1_0 +2726,4.0,9.0,68.0,221,72,41,0.0,13477,0.0,0.0,99999.0,0.0,0.0,6.0,0.0,2.0,1.5,2540.730143306546,2080.0,0.0,91414.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,60942.666666666664,5,0,5,5_0 +2727,5.0,6.0,68.0,111,74,31,0.0,13478,0.0,0.0,0.0,210.0,0.0,1.0,0.0,1.0,1.0,1894.1949638909598,0.0,0.0,22374.0,5,3,7,6.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,22374.0,3,0,3_0,3_0 +2728,1.0,1.0,62.0,112,74,42,1.0,1348,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2105.163872592262,1944.8,22500.0,26944.0,5,3,8,3.0,1,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,26944.0,4,0,4_0,4_0 +2729,5.0,5.0,54.0,111,45,42,0.0,13480,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2003.4351363959222,0.0,0.0,41805.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20902.5,3,0,3_0,3_0 +2730,0.0,0.0,60.0,300,78,50,0.0,13481,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2597.513039685947,0.0,0.0,4337.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,4337.0,1,0,1_0,1_1 +2731,5.0,9.0,36.0,111,56,71,0.0,13482,0.0,0.0,0.0,55.0,2.0,3.0,4.0,6.0,2.9,3794.979926660638,0.0,0.0,48787.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,16823.103448275862,2,0,2_1,2_0 +2732,0.0,0.0,41.0,221,46,43,0.0,13483,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2644.355742049113,0.0,0.0,18110.0,1,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18110.0,2,0,2_0,2_0 +2733,1.0,1.0,56.0,112,38,50,1.0,13484,0.0,20.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1264.483512569244,0.0,26000.0,64888.0,4,1,10,1.0,4,3.0,1.0,1.0,0,1,0,0,0,0,1.0,2.0,25955.2,4,0,4_0,4_0 +2734,14.0,16.0,72.0,400,77,41,0.0,13485,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1414.5952812028727,0.0,0.0,27414.0,5,1,0,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,18276.0,2,0,2_0,2_0 +2735,4.0,4.0,43.0,112,55,43,0.0,13486,0.0,0.0,350.0,0.0,2.0,6.0,1.0,3.0,1.8,1929.3718504173266,3458.0,0.0,33372.0,1,1,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18540.0,2,0,2_0,2_1 +2736,2.0,7.0,43.0,111,45,20,0.0,13487,0.0,0.0,99999.0,677.0,1.0,1.0,0.0,1.0,1.0,4131.874296506831,0.0,0.0,43580.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,43580.0,5,0,5,5_0 +2737,0.0,11.0,48.0,111,52,50,2.0,13488,0.0,0.0,240.0,655.0,2.0,5.0,2.0,4.0,2.3,696.6671128047485,2862.08,2000.0,51115.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22223.913043478264,3,0,3_0,3_0 +2738,2.0,9.0,40.0,300,37,31,0.0,1349,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,1933.198729337801,0.0,0.0,36397.0,1,2,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22748.125,3,0,3_0,3_1 +2739,11.0,11.0,49.0,112,56,31,0.0,13490,0.0,0.0,0.0,0.0,1.0,10.0,4.0,5.0,2.4,451.59173939491654,2379.0,0.0,39718.0,1,1,9,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16549.166666666668,2,0,2_0,2_1 +2740,0.0,3.0,47.0,112,46,31,0.0,13491,0.0,0.0,0.0,0.0,3.0,5.0,4.0,6.0,3.5,1814.095309316212,1561.04,0.0,42716.0,4,1,8,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,12204.57142857143,1,0,1_0,1_1 +2741,11.0,25.0,75.0,300,75,50,0.0,13493,0.0,0.0,0.0,320.0,0.0,3.0,0.0,1.0,1.0,3188.9695760629284,0.0,0.0,15462.0,5,3,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15462.0,2,0,2_0,2_1 +2742,10.0,11.0,47.0,111,34,30,0.0,13496,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2862.040847381913,0.0,0.0,79911.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,39955.5,5,0,5,5_0 +2743,0.0,0.0,62.0,300,77,41,0.0,13497,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3089.7266940846525,0.0,0.0,10869.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10869.0,1,0,1_0,1_1 +2744,2.0,4.0,59.0,111,48,50,0.0,135,0.0,460.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2830.521266788431,1097.2,0.0,53616.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,35744.0,5,0,5,5_0 +2745,2.0,12.0,59.0,111,38,31,0.0,1350,0.0,0.0,300.0,0.0,1.0,6.0,0.0,2.0,1.5,1191.973887706299,2621.3199999999997,0.0,31787.0,4,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,21191.333333333332,3,0,3_0,3_0 +2746,0.0,0.0,59.0,120,21,50,0.0,13502,0.0,0.0,0.0,0.0,1.0,11.0,0.0,1.0,1.0,1940.5149901183268,0.0,0.0,113267.0,1,1,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,113267.0,5,0,5,5_0 +2747,0.0,0.0,88.0,211,78,70,0.0,13504,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1446.3225434362193,0.0,0.0,18199.0,5,4,2,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18199.0,2,0,2_0,2_0 +2748,0.0,0.0,67.0,111,78,70,0.0,13505,0.0,0.0,0.0,233.0,0.0,2.0,0.0,1.0,1.0,2007.2610333125915,0.0,0.0,14356.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14356.0,2,0,2_1,2_0 +2749,6.0,8.0,50.0,300,67,50,0.0,13506,0.0,350.0,120.0,644.0,2.0,4.0,0.0,2.0,1.5,1717.083090445609,4160.0,0.0,36302.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24201.333333333332,4,0,4_0,4_1 +2750,2.0,9.0,43.0,112,22,71,0.0,13507,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,3043.9721356993764,2080.0,0.0,48660.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20275.0,3,0,3_0,3_1 +2751,9.0,13.0,57.0,111,37,70,0.0,13509,0.0,200.0,0.0,0.0,1.0,8.0,1.0,3.0,2.0,1484.4283014377716,0.0,0.0,322898.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,161449.0,5,0,5,5_0 +2752,1.0,2.0,46.0,112,53,42,2.0,1351,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,3443.1306962629997,0.0,12500.0,61463.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24585.2,4,0,4_0,4_1 +2753,3.0,6.0,69.0,300,75,33,0.0,13510,0.0,440.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2077.7709735575136,1768.52,0.0,48358.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,32238.666666666668,5,0,5,5_1 +2754,8.0,8.0,69.0,111,78,70,0.0,13512,0.0,400.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4322.646016390748,0.0,0.0,14080.0,5,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14080.0,2,0,2_0,2_0 +2755,25.0,25.0,23.0,111,53,31,0.0,13515,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2359.4502481426484,1424.8,0.0,18552.0,1,3,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,12368.0,1,0,1_1,1_0 +2756,1.0,13.0,41.0,120,62,42,2.0,13516,0.0,0.0,130.0,0.0,1.0,5.0,2.0,4.0,2.1,2347.8508334318312,0.0,1500.0,33385.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,15897.619047619048,2,0,2_1,2_1 +2757,3.0,8.0,36.0,111,55,71,0.0,13517,0.0,0.0,0.0,143.0,1.0,4.0,3.0,4.0,1.9,553.671275260496,1560.0,0.0,34900.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,18368.42105263158,2,0,2_1,2_0 +2758,0.0,0.0,49.0,112,54,42,0.0,13518,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2582.9210390676726,2736.76,0.0,41100.0,1,2,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20550.0,3,0,3_0,3_0 +2759,14.0,19.0,51.0,111,46,42,0.0,1352,0.0,0.0,530.0,580.0,1.0,3.0,0.0,1.0,1.0,2026.621089226855,0.0,0.0,36108.0,1,3,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,36108.0,5,0,5,5_0 +2760,0.0,0.0,48.0,112,45,43,0.0,13520,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1944.7774637607267,0.0,0.0,53027.0,1,1,5,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23055.217391304348,3,0,3_0,3_1 +2761,0.0,0.0,65.0,111,78,50,0.0,13521,0.0,0.0,0.0,560.0,0.0,5.0,0.0,2.0,1.5,2045.5049054617398,1560.0,0.0,18319.0,5,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12212.666666666666,1,0,1_1,1_0 +2762,5.0,7.0,67.0,111,77,42,0.0,13523,0.0,690.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1502.2705282342995,0.0,0.0,36620.0,5,1,6,4.0,1,4.0,0.0,1.0,0,0,1,0,0,0,1.0,3.0,36620.0,5,0,5,5_0 +2763,2.0,2.0,69.0,112,72,31,0.0,13524,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3022.1871195832837,0.0,0.0,98310.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,65540.0,5,0,5,5_0 +2764,0.0,0.0,33.0,111,65,50,0.0,13525,0.0,0.0,0.0,540.0,1.0,2.0,0.0,1.0,1.0,4135.559843614541,0.0,0.0,18944.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18944.0,3,0,3_0,3_0 +2765,4.0,6.0,61.0,111,56,70,0.0,13526,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2388.456131392098,0.0,0.0,7621.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,7621.0,1,0,1_1,1_0 +2766,2.0,2.0,70.0,111,33,30,0.0,13527,0.0,500.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2831.1768174838753,0.0,0.0,198593.0,1,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,99296.5,5,0,5,5_0 +2767,0.0,21.0,56.0,300,38,50,2.0,13528,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1612.3922148785448,0.0,3500.0,108696.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,72464.0,5,0,5,5_1 +2768,1.0,7.0,62.0,112,42,20,2.0,13529,0.0,0.0,100.0,0.0,1.0,7.0,0.0,2.0,1.5,1914.899480685976,0.0,8000.0,66971.0,5,1,7,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,44647.333333333336,5,0,5,5_0 +2769,10.0,10.0,56.0,400,77,71,0.0,1353,0.0,0.0,0.0,69.0,0.0,3.0,0.0,1.0,1.0,2544.3570500667456,1300.0,0.0,3072.0,7,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,3072.0,1,0,1_1,1_1 +2770,8.0,8.0,49.0,111,56,71,0.0,13530,0.0,0.0,0.0,230.0,1.0,3.0,1.0,2.0,1.3,1067.3168968969264,2132.0,0.0,15133.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11640.76923076923,1,0,1_1,1_0 +2771,0.0,1.0,47.0,111,21,31,0.0,13531,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,5167.460717321289,0.0,0.0,39194.0,1,1,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21774.444444444445,3,0,3_0,3_0 +2772,0.0,0.0,35.0,300,38,12,0.0,13532,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2488.3481000075126,5921.24,0.0,79779.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,53186.0,5,0,5,5_1 +2773,0.0,0.0,31.0,112,43,30,0.0,13533,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2590.896075673788,0.0,0.0,15213.0,1,3,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15213.0,2,0,2_0,2_1 +2774,1.0,11.0,30.0,111,22,43,0.0,13535,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3048.821069395933,0.0,0.0,2365.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,2365.0,1,0,1_0,1_0 +2775,3.0,6.0,63.0,112,75,33,0.0,13536,0.0,20.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1813.7439155320478,6445.92,0.0,54343.0,5,1,10,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,36228.666666666664,5,0,5,5_1 +2776,1.0,1.0,67.0,112,77,50,1.0,13538,0.0,0.0,180.0,0.0,0.0,5.0,0.0,1.0,1.0,2249.6016441862594,0.0,8200.0,30575.0,5,1,10,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,30575.0,4,0,4_0,4_0 +2777,0.0,0.0,77.0,211,86,70,0.0,13539,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2906.582490383243,0.0,0.0,16576.0,5,1,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16576.0,2,0,2_0,2_0 +2778,5.0,15.0,69.0,300,78,50,0.0,1354,0.0,0.0,390.0,0.0,1.0,6.0,1.0,3.0,2.0,2670.3293120239987,2080.52,0.0,47234.0,5,1,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,23617.0,3,0,3_0,3_1 +2779,10.0,21.0,59.0,400,34,10,0.0,13540,0.0,0.0,160.0,0.0,1.0,4.0,0.0,2.0,1.5,1562.1545906886831,2574.0,0.0,51394.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,34262.666666666664,5,0,5,5_1 +2780,3.0,5.0,31.0,112,38,12,0.0,13543,0.0,500.0,0.0,840.0,2.0,3.0,0.0,2.0,1.5,2248.73983822271,0.0,0.0,59832.0,1,3,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,39888.0,5,0,5,5_0 +2781,8.0,10.0,67.0,211,75,50,0.0,13544,0.0,250.0,0.0,449.0,0.0,3.0,0.0,1.0,1.0,7774.582331802916,1040.52,0.0,19180.0,5,3,2,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19180.0,3,0,3_0,3_0 +2782,2.0,2.0,29.0,111,68,43,0.0,13545,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,4429.778241779898,0.0,0.0,31910.0,1,1,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,12764.0,1,0,1_0,1_0 +2783,4.0,4.0,40.0,111,37,31,0.0,13547,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3519.8760512030026,4914.0,0.0,543.0,1,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,543.0,1,0,1_0,1_0 +2784,14.0,14.0,64.0,112,75,42,0.0,13548,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1514.0705841052666,2541.24,0.0,39264.0,5,1,6,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,26176.0,4,0,4_0,4_1 +2785,5.0,5.0,69.0,111,77,50,0.0,13549,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3746.633115499566,0.0,0.0,56153.0,5,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,28076.5,4,0,4_0,4_0 +2786,5.0,8.0,42.0,111,48,50,0.0,13550,0.0,0.0,785.0,0.0,2.0,4.0,2.0,4.0,2.1,1160.1582799082755,1040.0,0.0,43990.0,1,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,20947.619047619046,3,0,3_0,3_0 +2787,6.0,6.0,32.0,111,35,20,0.0,13552,0.0,0.0,180.0,980.0,1.0,2.0,0.0,1.0,1.0,4814.738371764299,0.0,0.0,39667.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,39667.0,5,0,5,5_0 +2788,0.0,0.0,87.0,111,77,70,0.0,13554,0.0,0.0,0.0,420.0,0.0,1.0,0.0,1.0,1.0,4274.172965808989,0.0,0.0,18185.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18185.0,2,0,2_0,2_0 +2789,0.0,0.0,32.0,111,31,30,0.0,13555,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2339.5913883557414,0.0,0.0,69573.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,38651.666666666664,5,0,5,5_0 +2790,2.0,3.0,60.0,111,52,31,0.0,13556,0.0,0.0,580.0,0.0,4.0,5.0,3.0,5.0,2.8,1150.582531274498,3039.4,0.0,74495.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,26605.357142857145,4,0,4_1,4_0 +2791,1.0,1.0,47.0,111,67,71,1.0,13557,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1903.4660113359425,4089.8,15418.0,30320.0,1,1,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13182.608695652176,1,0,1_0,1_0 +2792,3.0,3.0,33.0,120,47,31,0.0,13558,0.0,50.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1822.7974740784146,1040.0,0.0,36803.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20446.11111111111,3,0,3_0,3_0 +2793,2.0,2.0,47.0,111,46,31,0.0,13559,0.0,99999.0,0.0,0.0,1.0,5.0,3.0,4.0,2.5,724.6897225652007,3640.0,0.0,31750.0,1,2,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12700.0,1,0,1_1,1_0 +2794,0.0,0.0,55.0,221,43,33,0.0,1356,0.0,0.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,1883.9540222294142,0.0,0.0,45160.0,1,1,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18064.0,2,0,2_0,2_0 +2795,7.0,18.0,45.0,400,54,30,0.0,13560,0.0,32.0,275.0,0.0,2.0,4.0,1.0,3.0,2.0,1789.032798459815,3328.0,0.0,16292.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,1,2.0,1.0,8146.0,1,0,1_1,1_1 +2796,3.0,3.0,66.0,112,56,70,0.0,13561,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1081.1147472561447,1560.0,0.0,27533.0,1,1,10,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18355.333333333332,2,0,2_0,2_0 +2797,6.0,6.0,49.0,112,46,31,0.0,13562,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2688.1808932065255,4680.0,0.0,66941.0,1,1,4,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26776.4,4,0,4_0,4_1 +2798,0.0,0.0,57.0,211,43,30,0.0,13565,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1835.144047029968,0.0,0.0,58072.0,1,1,1,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,38714.666666666664,5,0,5,5_0 +2799,2.0,2.0,58.0,111,38,31,0.0,13566,0.0,50.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,1720.0227107620835,0.0,0.0,38170.0,1,2,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25446.666666666668,4,0,4_0,4_0 +2800,1.0,1.0,72.0,120,75,33,1.0,13567,0.0,100399.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1332.269725190608,0.0,18000.0,28076.0,5,1,0,3.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,18717.333333333332,3,0,3_0,3_0 +2801,0.0,0.0,56.0,112,56,71,0.0,13569,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1330.849149909278,2600.0,0.0,12155.0,1,3,10,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12155.0,1,0,1_0,1_1 +2802,0.0,0.0,28.0,111,54,20,0.0,13572,0.0,0.0,0.0,590.0,1.0,1.0,0.0,1.0,1.0,6106.629756960473,0.0,0.0,23057.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23057.0,3,0,3_0,3_0 +2803,8.0,8.0,44.0,111,52,33,0.0,13573,0.0,0.0,50.0,0.0,1.0,6.0,4.0,5.0,2.6,705.2915069272296,1560.0,0.0,51126.0,1,2,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,19663.846153846152,3,0,3_0,3_0 +2804,2.0,23.0,29.0,111,31,10,0.0,13574,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3584.513591750321,0.0,0.0,31788.0,1,3,9,7.0,1,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,31788.0,5,0,5,5_0 +2805,0.0,0.0,55.0,111,67,71,0.0,13576,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,730.3338071513846,0.0,0.0,13426.0,4,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7458.888888888889,1,0,1_1,1_0 +2806,0.0,0.0,45.0,111,84,44,0.0,13577,0.0,0.0,0.0,185.0,0.0,3.0,0.0,1.0,1.0,1121.8083638185378,0.0,0.0,10500.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10500.0,1,0,1_1,1_0 +2807,2.0,2.0,59.0,111,45,50,0.0,13578,0.0,130.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2034.8865963630312,0.0,0.0,73340.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,48893.333333333336,5,0,5,5_0 +2808,0.0,0.0,82.0,111,75,70,0.0,1358,0.0,0.0,0.0,307.0,0.0,2.0,0.0,1.0,1.0,3328.1866624126037,0.0,0.0,17341.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17341.0,2,0,2_0,2_0 +2809,0.0,0.0,29.0,111,43,30,0.0,13580,0.0,0.0,0.0,523.0,1.0,3.0,0.0,1.0,1.0,4896.166682606007,0.0,0.0,23211.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23211.0,3,0,3_0,3_0 +2810,9.0,12.0,70.0,300,75,41,0.0,13581,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2075.981272103931,1040.0,0.0,29507.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,19671.333333333332,3,0,3_0,3_1 +2811,3.0,4.0,66.0,112,77,44,0.0,13582,0.0,0.0,800.0,0.0,0.0,5.0,0.0,1.0,1.0,1883.2039104569365,1144.52,0.0,9663.0,5,1,9,2.0,1,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,9663.0,1,0,1_0,1_0 +2812,2.0,15.0,49.0,111,55,50,0.0,13583,0.0,100.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3302.5815669901185,0.0,0.0,8964.0,4,3,8,7.0,1,2.0,1.0,0.0,0,0,0,1,0,1,1.0,1.0,8964.0,1,0,1_1,1_0 +2813,0.0,0.0,30.0,221,85,60,0.0,13584,0.0,0.0,0.0,22.0,0.0,4.0,2.0,3.0,1.6,1182.785044051917,0.0,0.0,16236.0,6,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10147.5,1,0,1_1,1_0 +2814,1.0,1.0,53.0,112,46,50,1.0,13585,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,1591.0487679083421,5239.0,11315.0,55355.0,1,1,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18451.666666666668,2,0,2_0,2_0 +2815,0.0,0.0,81.0,111,74,20,0.0,13586,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2754.124391770152,0.0,0.0,52587.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,52587.0,5,0,5,5_0 +2816,3.0,9.0,23.0,211,42,31,0.0,13587,0.0,102.0,0.0,202.0,1.0,2.0,0.0,1.0,1.0,3183.0552602776065,2600.0,0.0,14479.0,1,3,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,14479.0,2,0,2_0,2_0 +2817,6.0,6.0,56.0,221,52,50,0.0,13588,0.0,0.0,500.0,0.0,2.0,5.0,1.0,3.0,2.0,13207.053646243194,3120.0,0.0,46236.0,1,1,1,3.0,4,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,23118.0,3,0,3_0,3_0 +2818,0.0,0.0,46.0,111,33,31,0.0,13589,0.0,0.0,0.0,1130.0,2.0,5.0,2.0,4.0,2.5,2297.825259764484,0.0,0.0,69295.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27718.0,4,0,4_0,4_0 +2819,10.0,17.0,83.0,111,72,60,0.0,13590,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3070.806286245945,1566.76,0.0,50046.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,50046.0,5,0,5,5_0 +2820,0.0,3.0,85.0,211,78,71,2.0,13591,0.0,300.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2585.9926282740744,1957.28,8800.0,26050.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,17366.666666666668,2,0,2_0,2_0 +2821,7.0,7.0,76.0,111,78,71,0.0,13592,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2074.0300082939507,0.0,0.0,24630.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,16420.0,2,0,2_0,2_0 +2822,0.0,0.0,51.0,120,62,71,0.0,13593,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1686.8000592235026,3919.24,0.0,56620.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28310.0,4,0,4_0,4_1 +2823,11.0,13.0,21.0,111,56,41,0.0,13594,0.0,0.0,100.0,230.0,1.0,1.0,0.0,1.0,1.0,4283.419458197052,0.0,0.0,8333.0,3,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,8333.0,1,0,1_1,1_0 +2824,0.0,0.0,49.0,111,21,50,0.0,13595,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2918.354122953596,3146.0,0.0,55788.0,1,2,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24255.652173913044,4,0,4_0,4_0 +2825,5.0,5.0,57.0,111,56,71,0.0,13596,0.0,60.0,0.0,530.0,2.0,3.0,1.0,3.0,2.0,3127.4407210749614,4134.0,0.0,74217.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,37108.5,5,0,5,5_0 +2826,6.0,6.0,38.0,112,42,30,0.0,13598,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3392.0887741771094,2519.4,0.0,24817.0,1,2,9,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24817.0,4,0,4_0,4_1 +2827,1.0,2.0,85.0,111,78,70,2.0,136,0.0,120.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,3199.4274680372923,2817.88,18900.0,70537.0,5,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,28214.8,4,0,4_0,4_0 +2828,2.0,2.0,50.0,111,43,33,0.0,1360,0.0,0.0,50.0,0.0,1.0,3.0,1.0,2.0,1.3,2069.5684940359233,3120.0,0.0,17360.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,13353.846153846154,1,0,1_1,1_0 +2829,7.0,21.0,49.0,111,34,10,0.0,13600,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2002.9716102273599,5408.0,0.0,80612.0,1,2,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,35048.69565217392,5,0,5,5_0 +2830,8.0,10.0,47.0,112,42,20,0.0,13602,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,573.4106691072999,3447.0800000000004,0.0,32348.0,1,1,10,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16174.0,2,0,2_0,2_1 +2831,2.0,3.0,67.0,221,77,50,0.0,13603,0.0,250.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2203.8790668626484,0.0,0.0,17937.0,5,1,1,2.0,1,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,17937.0,2,0,2_0,2_0 +2832,0.0,0.0,76.0,111,86,30,0.0,13604,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1646.009432378277,2476.76,0.0,57067.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38044.666666666664,5,0,5,5_0 +2833,0.0,0.0,80.0,111,75,50,1.0,13605,0.0,0.0,0.0,508.0,0.0,3.0,0.0,1.0,1.0,3363.441427580399,0.0,14799.0,32230.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,32230.0,5,0,5,5_0 +2834,13.0,17.0,52.0,111,62,50,0.0,13606,0.0,0.0,710.0,490.0,1.0,4.0,0.0,1.0,1.0,2771.5735481281326,2642.64,0.0,29383.0,1,3,4,4.0,1,3.0,0.0,0.0,0,0,1,0,0,0,3.0,0.0,29383.0,4,0,4_0,4_0 +2835,2.0,2.0,65.0,112,74,50,0.0,13608,0.0,400.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1761.6765814905484,2080.0,0.0,48852.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,32568.0,5,0,5,5_1 +2836,4.0,4.0,86.0,400,77,70,0.0,1361,0.0,400.0,300.0,0.0,0.0,4.0,0.0,1.0,1.0,4055.712622187784,1639.56,0.0,27961.0,5,1,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,27961.0,4,0,4_0,4_0 +2837,1.0,10.0,36.0,112,63,44,2.0,13610,0.0,450.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2245.9109733888445,0.0,4000.0,33994.0,4,2,5,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16187.619047619048,2,0,2_0,2_1 +2838,13.0,13.0,62.0,112,77,50,0.0,13611,0.0,700.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1533.357771540625,3560.96,0.0,23721.0,5,1,8,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,15814.0,2,0,2_0,2_1 +2839,0.0,5.0,35.0,111,38,12,2.0,13612,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3141.5644299600494,0.0,6000.0,48740.0,1,2,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,48740.0,5,0,5,5_0 +2840,3.0,15.0,50.0,111,56,71,0.0,13614,0.0,0.0,40.0,150.0,1.0,3.0,0.0,1.0,1.0,587.3899696631195,1560.0,0.0,8994.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,8994.0,1,0,1_1,1_0 +2841,2.0,4.0,79.0,111,75,31,0.0,13616,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3840.3264541829267,0.0,0.0,12706.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,12706.0,1,0,1_0,1_0 +2842,3.0,14.0,74.0,112,72,50,0.0,13617,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2179.893042712193,0.0,0.0,15449.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15449.0,2,0,2_0,2_0 +2843,5.0,10.0,39.0,112,56,50,0.0,13618,0.0,400.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,869.632775844794,1040.0,0.0,8237.0,1,2,9,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,6336.153846153846,1,0,1_1,1_0 +2844,3.0,3.0,82.0,112,75,71,0.0,13620,0.0,0.0,99999.0,0.0,0.0,4.0,1.0,2.0,1.5,1225.543407298019,0.0,0.0,31550.0,5,1,10,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21033.333333333332,3,0,3_0,3_0 +2845,6.0,6.0,60.0,221,31,44,0.0,13622,0.0,0.0,0.0,0.0,1.0,9.0,0.0,1.0,1.0,2090.308864668283,766.48,0.0,40699.0,1,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,40699.0,5,0,5,5_0 +2846,7.0,7.0,24.0,111,54,30,0.0,13624,0.0,1600.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1105.5072134089512,0.0,0.0,28552.0,1,3,6,4.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,21963.076923076922,3,0,3_1,3_0 +2847,10.0,10.0,36.0,111,43,33,0.0,13625,0.0,0.0,0.0,395.0,1.0,4.0,1.0,2.0,1.5,729.7956315183172,0.0,0.0,21628.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14418.666666666666,2,0,2_1,2_0 +2848,14.0,14.0,43.0,400,62,50,0.0,13626,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2434.445638818711,1664.0,0.0,50946.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22150.434782608696,3,0,3_0,3_1 +2849,0.0,5.0,35.0,400,52,43,0.0,13628,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,555.1000017645476,0.0,0.0,23246.0,1,3,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,17881.53846153846,2,0,2_1,2_1 +2850,4.0,4.0,42.0,111,46,31,0.0,13629,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2135.1765915529554,3164.72,0.0,65304.0,1,1,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26121.6,4,0,4_0,4_0 +2851,0.0,0.0,59.0,111,35,41,0.0,1363,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1957.788318994955,0.0,0.0,18022.0,4,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18022.0,2,0,2_0,2_0 +2852,0.0,0.0,71.0,221,72,50,0.0,13630,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1915.1280543702496,1040.0,0.0,29801.0,5,3,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19867.333333333332,3,0,3_0,3_0 +2853,1.0,11.0,39.0,111,38,12,2.0,13631,0.0,0.0,500.0,0.0,2.0,4.0,2.0,4.0,2.1,1957.1254307528686,0.0,900.0,52952.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,25215.238095238095,4,0,4_0,4_0 +2854,1.0,9.0,65.0,111,74,20,0.0,13632,0.0,20.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1749.646286236274,0.0,0.0,56572.0,5,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,37714.666666666664,5,0,5,5_0 +2855,2.0,2.0,32.0,400,62,50,0.0,13634,0.0,40.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2627.9796865562025,2080.0,0.0,44344.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21116.190476190477,3,0,3_0,3_0 +2856,13.0,13.0,34.0,112,37,31,0.0,13635,0.0,99999.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.1,2285.4490630991654,0.0,0.0,57276.0,1,1,10,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,27274.285714285714,4,0,4_0,4_0 +2857,11.0,19.0,50.0,120,52,60,0.0,13636,0.0,0.0,0.0,143.0,1.0,4.0,0.0,1.0,1.0,2693.1443679290437,728.52,0.0,13744.0,1,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,13744.0,1,0,1_1,1_0 +2858,5.0,5.0,51.0,111,37,41,0.0,13637,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1896.4532960021854,0.0,0.0,38710.0,1,2,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25806.666666666668,4,0,4_0,4_0 +2859,1.0,6.0,58.0,111,77,50,2.0,13638,0.0,100449.0,0.0,0.0,1.0,5.0,2.0,5.0,3.0,1192.2708402387902,1050.92,14000.0,68486.0,5,1,9,7.0,5,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,22828.666666666668,3,0,3_0,3_0 +2860,12.0,12.0,85.0,221,78,71,0.0,1364,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2513.8240376662443,0.0,0.0,27450.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18300.0,2,0,2_0,2_0 +2861,0.0,0.0,40.0,112,54,31,0.0,13640,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,824.6726244769511,0.0,0.0,26758.0,1,2,8,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,20583.076923076922,3,0,3_1,3_0 +2862,0.0,0.0,57.0,111,67,50,0.0,13642,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2307.617412638099,2696.72,0.0,22431.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22431.0,3,0,3_0,3_0 +2863,4.0,4.0,56.0,111,47,50,0.0,13643,0.0,99999.0,99999.0,0.0,1.0,5.0,0.0,2.0,1.5,5714.442679555544,2683.2,0.0,28900.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,19266.666666666668,3,0,3_0,3_0 +2864,17.0,18.0,36.0,111,56,43,0.0,13644,0.0,0.0,0.0,0.0,1.0,4.0,4.0,5.0,2.2,463.9972830905568,0.0,0.0,38847.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,17657.727272727272,2,0,2_1,2_0 +2865,5.0,5.0,62.0,111,78,50,0.0,13647,0.0,0.0,99999.0,312.0,1.0,3.0,1.0,3.0,2.0,2678.458175933978,3372.2,0.0,52486.0,5,3,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,26243.0,4,0,4_0,4_0 +2866,0.0,0.0,26.0,111,34,0,0.0,13648,0.0,0.0,0.0,246.0,1.0,3.0,0.0,1.0,1.0,4173.801166592862,0.0,0.0,19888.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19888.0,3,0,3_1,3_0 +2867,3.0,22.0,47.0,221,62,43,0.0,13649,0.0,600.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,654.1283615962707,2766.4,0.0,30394.0,1,3,1,2.0,2,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,16885.555555555555,2,0,2_0,2_0 +2868,18.0,18.0,28.0,120,47,43,0.0,13650,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2361.215102746064,4446.0,0.0,27306.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,13002.857142857143,1,0,1_1,1_0 +2869,5.0,5.0,41.0,112,46,30,0.0,13651,0.0,0.0,200.0,0.0,2.0,5.0,0.0,2.0,1.5,2380.955891680948,0.0,0.0,55884.0,1,2,8,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,37256.0,5,0,5,5_0 +2870,0.0,0.0,56.0,111,46,60,0.0,13652,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1682.2821003333092,2037.8799999999999,0.0,55101.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,36734.0,5,0,5,5_0 +2871,3.0,22.0,41.0,111,52,42,0.0,13653,0.0,0.0,20.0,0.0,1.0,5.0,0.0,2.0,1.5,2247.5459904709155,2982.2000000000003,0.0,37863.0,1,1,6,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,25242.0,4,0,4_0,4_0 +2872,0.0,0.0,27.0,112,68,50,1.0,13654,0.0,199998.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2111.1233991671147,0.0,20000.0,28680.0,1,3,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,11950.0,1,0,1_1,1_0 +2873,12.0,21.0,49.0,400,55,42,0.0,13656,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2350.5000862505453,0.0,0.0,33782.0,1,4,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13512.8,1,0,1_0,1_1 +2874,0.0,0.0,58.0,111,77,41,0.0,13657,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2420.7322115927645,2230.7999999999997,0.0,31110.0,5,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20740.0,3,0,3_0,3_0 +2875,7.0,16.0,41.0,111,38,30,0.0,13658,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2087.2186414569533,2997.28,0.0,69753.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33215.71428571428,5,0,5,5_0 +2876,3.0,6.0,81.0,112,86,50,0.0,13659,0.0,500.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2266.3264385574444,0.0,0.0,14480.0,5,1,8,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,14480.0,2,0,2_0,2_1 +2877,9.0,9.0,67.0,112,46,31,0.0,13660,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2561.9991110518,1300.0,0.0,42568.0,1,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28378.666666666668,4,0,4_0,4_0 +2878,6.0,6.0,62.0,112,77,50,0.0,13661,0.0,99999.0,300.0,0.0,1.0,3.0,0.0,2.0,1.5,1877.717347068447,2307.76,0.0,21797.0,5,1,10,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,14531.333333333334,2,0,2_0,2_1 +2879,0.0,0.0,36.0,111,37,20,0.0,13662,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3726.445268648413,1768.0,0.0,39672.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,39672.0,5,0,5,5_0 +2880,11.0,11.0,79.0,111,77,70,0.0,13663,0.0,0.0,0.0,390.0,0.0,5.0,0.0,1.0,1.0,3488.429101776137,0.0,0.0,20134.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20134.0,3,0,3_0,3_0 +2881,0.0,0.0,28.0,111,34,20,0.0,13666,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,5491.651234601228,0.0,0.0,18024.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12016.0,1,0,1_0,1_0 +2882,10.0,12.0,56.0,111,63,50,0.0,13667,0.0,0.0,0.0,338.0,2.0,6.0,3.0,5.0,3.0,5620.505263043857,0.0,0.0,53144.0,1,3,8,6.0,5,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,17714.666666666668,2,0,2_0,2_0 +2883,9.0,22.0,62.0,112,78,41,0.0,13668,0.0,150.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2459.841014912071,4888.0,0.0,61060.0,5,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,40706.666666666664,5,0,5,5_1 +2884,0.0,0.0,19.0,111,84,42,0.0,13669,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2814.122961090538,0.0,0.0,4045.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4045.0,1,0,1_1,1_0 +2885,0.0,18.0,23.0,112,63,43,0.0,1367,0.0,500.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2050.0285984989973,0.0,0.0,17613.0,4,3,8,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17613.0,2,0,2_0,2_1 +2886,0.0,0.0,66.0,211,77,50,0.0,13670,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1368.4342074782526,0.0,0.0,32324.0,5,1,2,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21549.333333333332,3,0,3_0,3_0 +2887,1.0,10.0,54.0,111,78,71,0.0,13671,0.0,400.0,0.0,152.0,1.0,4.0,1.0,2.0,1.5,3715.955760865202,0.0,0.0,26312.0,7,3,5,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,17541.333333333332,2,0,2_1,2_0 +2888,0.0,0.0,27.0,112,42,42,0.0,13672,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3794.2487710333185,2080.0,0.0,27660.0,1,2,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13171.42857142857,1,0,1_0,1_0 +2889,3.0,5.0,37.0,111,46,31,0.0,13673,0.0,0.0,180.0,370.0,2.0,4.0,2.0,4.0,2.1,2469.5814462661288,0.0,0.0,32183.0,1,3,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,15325.238095238095,2,0,2_1,2_0 +2890,4.0,4.0,48.0,111,52,50,0.0,13674,0.0,300.0,0.0,493.0,2.0,3.0,1.0,3.0,1.8,2509.029339253388,0.0,0.0,24890.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,13827.777777777777,1,0,1_0,1_0 +2891,10.0,10.0,30.0,211,48,44,0.0,13675,0.0,51.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2774.1223931755108,0.0,0.0,27077.0,1,3,1,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,20828.46153846154,3,0,3_1,3_0 +2892,3.0,11.0,43.0,112,46,30,0.0,13678,0.0,800.0,0.0,300.0,1.0,3.0,1.0,2.0,1.3,1176.9514680819934,1045.2,0.0,29968.0,1,3,10,4.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,23052.30769230769,3,0,3_0,3_0 +2893,3.0,4.0,69.0,300,78,71,0.0,1368,0.0,100059.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1940.5766465404927,0.0,0.0,20311.0,5,1,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20311.0,3,0,3_0,3_0 +2894,0.0,0.0,67.0,111,75,60,0.0,13681,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2248.235462590958,0.0,0.0,23106.0,5,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23106.0,3,0,3_0,3_0 +2895,0.0,11.0,43.0,111,37,33,0.0,13682,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2882.1713657192313,1560.0,0.0,19560.0,4,2,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15046.153846153846,2,0,2_0,2_0 +2896,17.0,21.0,49.0,111,63,71,0.0,13683,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,2674.6184272373002,0.0,0.0,34747.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12409.642857142859,1,0,1_0,1_0 +2897,1.0,5.0,41.0,111,64,60,2.0,13684,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,564.7858314148876,0.0,5500.0,11096.0,4,3,5,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,7397.333333333333,1,0,1_1,1_0 +2898,3.0,3.0,70.0,111,74,20,0.0,13685,0.0,0.0,0.0,900.0,0.0,4.0,0.0,1.0,1.0,2386.3570451693945,1041.04,0.0,36040.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,36040.0,5,0,5,5_0 +2899,1.0,12.0,60.0,112,78,50,2.0,13687,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2334.0979459987816,1934.4,3450.0,20326.0,5,4,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20326.0,3,0,3_0,3_1 +2900,0.0,0.0,55.0,111,31,30,0.0,13689,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,4297.61356560562,2652.0,0.0,121795.0,1,1,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,48718.0,5,0,5,5_0 +2901,5.0,22.0,40.0,120,64,50,0.0,1369,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2858.9275092849634,11057.8,0.0,16246.0,1,3,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,16246.0,2,0,2_1,2_0 +2902,0.0,0.0,35.0,111,68,50,0.0,13690,0.0,0.0,0.0,90.0,1.0,4.0,2.0,3.0,1.6,819.9727008213373,1560.0,0.0,16314.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10196.25,1,0,1_1,1_0 +2903,2.0,2.0,67.0,112,75,33,0.0,13691,0.0,350.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1385.324234125755,1872.0,0.0,20245.0,5,1,8,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20245.0,3,0,3_0,3_0 +2904,0.0,1.0,29.0,120,63,43,0.0,13693,0.0,0.0,810.0,400.0,2.0,3.0,1.0,3.0,1.8,2663.5468838824477,2082.6,0.0,26201.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,14556.111111111111,2,0,2_1,2_1 +2905,0.0,0.0,58.0,300,75,50,0.0,13694,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3173.0511260269554,1456.0,0.0,32030.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21353.333333333332,3,0,3_0,3_1 +2906,0.0,0.0,73.0,111,74,12,0.0,13695,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3478.97713440102,4472.0,0.0,66225.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,66225.0,5,0,5,5_0 +2907,1.0,1.0,63.0,211,74,60,1.0,13696,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1616.6284609899485,0.0,17468.0,43657.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,29104.666666666668,4,0,4_0,4_0 +2908,0.0,16.0,71.0,112,78,70,0.0,137,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1652.352072995406,1440.92,0.0,29548.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19698.666666666668,3,0,3_0,3_1 +2909,0.0,0.0,55.0,111,64,71,0.0,1370,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1718.252843887662,2080.0,0.0,31690.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15845.0,2,0,2_0,2_0 +2910,4.0,8.0,72.0,111,77,70,0.0,13702,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3611.2098656069998,0.0,0.0,20080.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20080.0,3,0,3_0,3_0 +2911,6.0,19.0,50.0,111,85,20,0.0,13703,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.3,2373.925631986176,1125.8,0.0,90300.0,4,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,39260.86956521739,5,0,5,5_0 +2912,5.0,9.0,34.0,111,43,71,0.0,13705,0.0,99999.0,0.0,116.0,1.0,4.0,2.0,4.0,2.1,2887.9200616463513,1300.0,0.0,21480.0,4,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,10228.571428571428,1,0,1_1,1_0 +2913,4.0,6.0,39.0,112,56,50,0.0,13708,0.0,0.0,150.0,0.0,1.0,3.0,0.0,1.0,1.0,3073.716728262276,0.0,0.0,12770.0,1,3,8,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,12770.0,1,0,1_1,1_0 +2914,4.0,17.0,72.0,111,78,71,0.0,13712,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1693.925124685004,2983.24,0.0,31800.0,5,3,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21200.0,3,0,3_0,3_0 +2915,10.0,10.0,49.0,111,85,71,0.0,13713,0.0,199998.0,0.0,0.0,0.0,5.0,3.0,4.0,2.1,1097.6006710534566,0.0,0.0,14054.0,6,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,6692.380952380952,1,0,1_1,1_0 +2916,0.0,0.0,40.0,111,46,31,1.0,13714,0.0,450.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,3067.7573561570866,780.0,20000.0,70198.0,1,1,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,0.0,3.0,30520.869565217392,4,0,4_0,4_0 +2917,1.0,2.0,37.0,111,33,31,0.0,13715,0.0,250.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2631.0902166843844,2208.44,0.0,57558.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,38372.0,5,0,5,5_0 +2918,1.0,1.0,30.0,111,37,20,2.0,13716,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3787.67641267602,0.0,24500.0,43305.0,1,2,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,43305.0,5,0,5,5_0 +2919,3.0,4.0,52.0,111,37,31,0.0,13717,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1316.2674995483915,0.0,0.0,82057.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,45587.22222222222,5,0,5,5_0 +2920,8.0,8.0,73.0,120,72,50,0.0,13718,0.0,0.0,199998.0,0.0,0.0,5.0,0.0,1.0,1.0,2114.1705089091984,0.0,0.0,17711.0,5,4,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,17711.0,2,0,2_0,2_1 +2921,2.0,2.0,84.0,111,77,60,0.0,13719,0.0,0.0,570.0,0.0,0.0,4.0,0.0,1.0,1.0,2323.7762382924743,0.0,0.0,18668.0,5,1,8,7.0,1,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,18668.0,2,0,2_0,2_0 +2922,4.0,14.0,68.0,120,75,50,0.0,13720,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1622.6703267795772,0.0,0.0,47574.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,31716.0,4,0,4_0,4_1 +2923,1.0,1.0,55.0,111,54,60,0.0,13721,0.0,280.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1946.5197925520508,0.0,0.0,18826.0,1,1,8,7.0,1,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,18826.0,3,0,3_0,3_0 +2924,0.0,0.0,79.0,111,74,50,0.0,13722,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2527.4655320819875,0.0,0.0,19744.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19744.0,3,0,3_0,3_0 +2925,1.0,1.0,84.0,111,77,70,1.0,13723,0.0,280.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,6016.58988753002,0.0,21856.0,23863.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,23863.0,4,0,4_0,4_0 +2926,0.0,15.0,69.0,112,75,50,0.0,13725,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,1.0,1.0,2831.912092722013,3271.3199999999997,0.0,28463.0,5,1,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,28463.0,4,0,4_0,4_0 +2927,2.0,13.0,50.0,120,43,33,0.0,13726,0.0,0.0,2000.0,0.0,2.0,5.0,1.0,3.0,1.8,1874.684459265648,2633.7999999999997,0.0,46633.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,25907.222222222223,4,0,4_0,4_0 +2928,10.0,10.0,55.0,221,52,60,0.0,13728,0.0,0.0,99999.0,539.0,1.0,2.0,0.0,1.0,1.0,4379.270376423364,0.0,0.0,18372.0,1,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,18372.0,2,0,2_0,2_0 +2929,4.0,18.0,65.0,111,75,31,0.0,1373,0.0,0.0,100.0,0.0,0.0,2.0,0.0,1.0,1.0,3259.301448390768,1767.48,0.0,37865.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,37865.0,5,0,5,5_0 +2930,2.0,4.0,70.0,111,74,10,0.0,13731,0.0,700.0,300.0,0.0,0.0,4.0,0.0,1.0,1.0,2555.7265476511343,0.0,0.0,27098.0,5,1,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,27098.0,4,0,4_0,4_0 +2931,0.0,5.0,47.0,111,63,44,0.0,13733,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2130.7502801861556,0.0,0.0,27674.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18449.333333333332,2,0,2_0,2_0 +2932,5.0,8.0,41.0,111,42,30,0.0,13734,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1935.087565226309,0.0,0.0,46143.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20062.17391304348,3,0,3_0,3_0 +2933,2.0,2.0,35.0,400,63,50,0.0,13735,0.0,0.0,0.0,0.0,2.0,4.0,4.0,6.0,3.1,1711.6287708689254,1820.0,0.0,35683.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11510.645161290322,1,0,1_0,1_1 +2934,16.0,16.0,55.0,111,43,60,0.0,13737,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2334.832685220392,0.0,0.0,57681.0,1,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28840.5,4,0,4_0,4_0 +2935,3.0,12.0,39.0,111,52,50,0.0,13738,0.0,600.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2356.1338927792667,2600.52,0.0,22901.0,1,3,8,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,15267.333333333334,2,0,2_1,2_0 +2936,2.0,2.0,47.0,300,52,50,0.0,13739,0.0,90.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2165.589627389012,3484.0,0.0,40750.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17717.391304347828,2,0,2_0,2_0 +2937,4.0,4.0,73.0,300,78,71,0.0,13741,0.0,600.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1878.4099049956521,0.0,0.0,27168.0,5,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,18112.0,2,0,2_0,2_1 +2938,7.0,7.0,37.0,112,64,50,0.0,13742,0.0,70.0,0.0,0.0,1.0,7.0,1.0,2.0,1.3,4857.355096566322,2011.36,0.0,25590.0,1,2,8,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19684.615384615383,3,0,3_0,3_1 +2939,0.0,14.0,49.0,111,62,50,2.0,13743,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1457.9152172688905,0.0,7000.0,17295.0,1,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17295.0,2,0,2_0,2_0 +2940,0.0,0.0,63.0,112,72,31,0.0,13744,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1857.1672224371403,5980.0,0.0,43116.0,5,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28744.0,4,0,4_0,4_1 +2941,4.0,15.0,70.0,111,77,70,0.0,13745,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1888.98094567913,2340.0,0.0,20579.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,13719.333333333334,1,0,1_0,1_0 +2942,0.0,0.0,35.0,112,69,50,0.0,13746,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2324.794323451635,1856.4,0.0,21010.0,1,3,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21010.0,3,0,3_0,3_1 +2943,0.0,0.0,58.0,111,54,42,0.0,13747,0.0,0.0,0.0,680.0,1.0,6.0,0.0,2.0,1.5,1994.522870554317,0.0,0.0,33490.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22326.666666666668,3,0,3_0,3_0 +2944,0.0,0.0,45.0,111,52,42,0.0,13748,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,590.5857245355346,0.0,0.0,33756.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,21097.5,3,0,3_1,3_0 +2945,0.0,0.0,29.0,111,54,31,0.0,1375,0.0,0.0,0.0,280.0,1.0,1.0,0.0,1.0,1.0,4788.507415098231,0.0,0.0,34490.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34490.0,5,0,5,5_0 +2946,1.0,1.0,55.0,111,75,42,1.0,13750,0.0,1030.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3371.6437221302913,1856.4,12000.0,46660.0,5,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,46660.0,5,0,5,5_0 +2947,3.0,6.0,48.0,111,37,20,0.0,13751,0.0,184.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2300.3936639627964,0.0,0.0,47805.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26558.333333333332,4,0,4_0,4_0 +2948,0.0,0.0,68.0,111,78,71,0.0,13754,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1157.1425131562366,3120.0,0.0,36344.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24229.333333333332,4,0,4_0,4_0 +2949,6.0,7.0,69.0,300,77,50,0.0,13755,0.0,0.0,40.0,0.0,0.0,5.0,0.0,2.0,1.5,1927.6534807239823,3952.5200000000004,0.0,36122.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,24081.333333333332,4,0,4_0,4_1 +2950,0.0,0.0,24.0,111,47,20,0.0,13756,0.0,0.0,0.0,171.0,2.0,2.0,0.0,2.0,1.5,3374.9408532500393,0.0,0.0,41315.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,27543.333333333332,4,0,4_1,4_0 +2951,3.0,12.0,62.0,111,72,50,0.0,13757,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1924.3688213822054,0.0,0.0,23540.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23540.0,3,0,3_0,3_0 +2952,0.0,0.0,51.0,112,37,42,0.0,13758,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2134.7104594635694,0.0,0.0,68950.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,38305.555555555555,5,0,5,5_1 +2953,1.0,1.0,82.0,111,74,10,0.0,1376,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3168.311821591548,0.0,0.0,105004.0,5,4,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,105004.0,5,0,5,5_0 +2954,2.0,2.0,86.0,111,75,50,0.0,13760,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2043.0301995693387,0.0,0.0,39650.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26433.333333333332,4,0,4_0,4_0 +2955,0.0,16.0,57.0,112,31,10,0.0,13761,0.0,660.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1724.0856791369622,1103.96,0.0,165838.0,1,1,8,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,110558.66666666667,5,0,5,5_1 +2956,0.0,0.0,50.0,112,47,31,0.0,13762,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1522.3693589186823,1300.0,0.0,28478.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14239.0,2,0,2_0,2_1 +2957,0.0,0.0,46.0,211,34,30,0.0,13764,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1237.9059104166863,0.0,0.0,60591.0,1,2,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26343.913043478264,4,0,4_0,4_0 +2958,0.0,0.0,40.0,111,33,43,0.0,13765,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,616.4401498961795,0.0,0.0,35484.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,16897.142857142855,2,0,2_1,2_0 +2959,2.0,2.0,44.0,111,46,43,0.0,13766,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1796.331567291297,3489.2000000000003,0.0,50086.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,20034.4,3,0,3_0,3_0 +2960,0.0,0.0,62.0,111,77,50,0.0,13767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.5,4501.732835193388,0.0,0.0,23515.0,5,1,7,5.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15676.666666666666,2,0,2_0,2_0 +2961,11.0,11.0,82.0,111,77,71,0.0,13768,0.0,0.0,0.0,306.0,0.0,3.0,0.0,1.0,1.0,5009.143215803984,0.0,0.0,16240.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16240.0,2,0,2_0,2_0 +2962,1.0,8.0,61.0,111,75,33,2.0,13769,0.0,100.0,0.0,268.0,0.0,3.0,0.0,1.0,1.0,3377.4623999499177,0.0,8300.0,4286.0,7,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,4286.0,1,0,1_0,1_0 +2963,14.0,16.0,41.0,211,56,43,0.0,13770,0.0,0.0,50.0,243.0,1.0,5.0,2.0,3.0,2.0,380.86864175807955,1300.0,0.0,25301.0,4,3,2,3.0,2,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,12650.5,1,0,1_1,1_0 +2964,0.0,0.0,50.0,112,56,50,0.0,13771,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,505.30482466367,0.0,0.0,32943.0,1,1,6,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16471.5,2,0,2_0,2_0 +2965,0.0,0.0,56.0,112,11,50,0.0,13772,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1995.1203741024412,0.0,0.0,-3144.0,1,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,-2096.0,1,0,1_0,1_1 +2966,0.0,0.0,70.0,111,78,70,0.0,13773,0.0,0.0,0.0,293.0,0.0,2.0,0.0,1.0,1.0,2512.2465906319367,0.0,0.0,14014.0,6,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14014.0,2,0,2_0,2_0 +2967,1.0,7.0,46.0,400,46,31,0.0,13775,0.0,1440.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2579.0164717516836,2528.24,0.0,43813.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,43813.0,5,0,5,5_1 +2968,8.0,9.0,63.0,111,77,71,0.0,13776,0.0,170.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4012.533455426193,0.0,0.0,18710.0,5,1,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18710.0,2,0,2_0,2_0 +2969,0.0,11.0,27.0,112,43,44,0.0,13778,0.0,0.0,150.0,0.0,2.0,3.0,0.0,2.0,1.5,5117.901284012742,3946.28,0.0,35920.0,1,2,10,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23946.666666666668,4,0,4_0,4_0 +2970,0.0,0.0,20.0,111,84,41,0.0,13779,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,2.0,3744.4921675444075,0.0,0.0,4555.0,3,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2277.5,1,0,1_1,1_0 +2971,2.0,4.0,29.0,112,52,30,0.0,1378,0.0,400.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1800.3839994969157,0.0,0.0,47842.0,1,2,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,31894.666666666668,5,0,5,5_0 +2972,5.0,5.0,48.0,111,37,20,0.0,13780,0.0,0.0,0.0,355.0,1.0,3.0,2.0,3.0,2.0,673.6519597073216,0.0,0.0,32056.0,1,3,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,16028.0,2,0,2_0,2_0 +2973,7.0,7.0,31.0,112,67,43,0.0,13781,0.0,0.0,0.0,175.0,1.0,2.0,0.0,1.0,1.0,3002.868155971684,4680.0,0.0,9280.0,4,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,9280.0,1,0,1_1,1_1 +2974,9.0,11.0,66.0,111,21,71,0.0,13784,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3429.438711211645,0.0,0.0,11800.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,7866.666666666667,1,0,1_0,1_0 +2975,0.0,0.0,65.0,112,75,31,0.0,13786,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2209.960605324412,0.0,0.0,44726.0,5,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29817.333333333332,4,0,4_0,4_1 +2976,1.0,11.0,53.0,211,54,50,2.0,13788,0.0,1800.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1105.5993858836764,0.0,5000.0,45942.0,1,2,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,30628.0,4,0,4_0,4_0 +2977,8.0,8.0,52.0,111,46,31,0.0,1379,0.0,0.0,0.0,590.0,1.0,2.0,0.0,1.0,1.0,3055.5065006590207,0.0,0.0,23369.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23369.0,3,0,3_0,3_0 +2978,15.0,15.0,38.0,111,42,20,0.0,13790,0.0,0.0,40.0,0.0,2.0,5.0,2.0,4.0,2.1,2024.6032411696506,0.0,0.0,52129.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24823.333333333332,4,0,4_0,4_0 +2979,0.0,0.0,62.0,400,78,70,0.0,13792,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2915.8055455350204,0.0,0.0,13903.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13903.0,2,0,2_0,2_1 +2980,11.0,11.0,52.0,111,85,42,0.0,13794,0.0,0.0,0.0,167.0,1.0,4.0,2.0,3.0,2.0,3055.513624156715,3539.12,0.0,20778.0,7,3,9,7.0,2,3.0,0.0,0.0,0,0,0,1,0,1,3.0,0.0,10389.0,1,0,1_1,1_0 +2981,3.0,3.0,60.0,212,64,31,0.0,13795,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2284.5160746243314,0.0,0.0,55758.0,1,1,1,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,27879.0,4,0,4_0,4_1 +2982,0.0,0.0,65.0,112,78,50,0.0,13796,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1854.2409170076423,1560.0,0.0,27431.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18287.333333333332,2,0,2_0,2_0 +2983,0.0,0.0,56.0,112,38,31,0.0,13797,0.0,0.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,2364.3482733810906,0.0,0.0,61795.0,1,1,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30897.5,4,0,4_0,4_0 +2984,3.0,3.0,52.0,112,64,50,0.0,13798,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1664.1146937813755,0.0,0.0,25420.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16946.666666666668,2,0,2_0,2_1 +2985,18.0,18.0,41.0,300,68,31,0.0,13799,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3680.132995537909,1040.0,0.0,31650.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,15071.42857142857,2,0,2_1,2_1 +2986,0.0,15.0,37.0,111,48,31,0.0,138,0.0,300.0,250.0,0.0,3.0,5.0,1.0,3.0,2.0,1168.7074700346052,2860.0,0.0,70961.0,1,2,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,35480.5,5,0,5,5_0 +2987,0.0,0.0,23.0,112,53,71,0.0,1380,0.0,0.0,0.0,510.0,1.0,4.0,3.0,5.0,2.4,1670.8637100908547,0.0,0.0,26670.0,1,3,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11112.5,1,0,1_0,1_0 +2988,3.0,4.0,78.0,111,74,60,0.0,13800,0.0,250.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1825.8019216813252,1196.0,0.0,50865.0,5,1,7,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,33910.0,5,0,5,5_0 +2989,4.0,4.0,58.0,111,33,44,0.0,13801,0.0,650.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1759.2202212089499,1268.8,0.0,61061.0,1,2,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,40707.333333333336,5,0,5,5_0 +2990,1.0,2.0,24.0,221,46,42,2.0,13802,0.0,0.0,0.0,27.0,1.0,4.0,2.0,3.0,1.6,709.3552094228908,0.0,7850.0,24575.0,1,3,1,2.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,15359.375,2,0,2_1,2_0 +2991,6.0,13.0,42.0,221,48,50,0.0,13804,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.4,2137.2422371796683,0.0,0.0,35300.0,4,2,3,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14708.333333333334,2,0,2_0,2_0 +2992,2.0,9.0,45.0,111,64,41,0.0,13805,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2558.0998725587306,2600.0,0.0,38892.0,1,2,4,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,18520.0,2,0,2_0,2_0 +2993,6.0,8.0,62.0,111,37,20,0.0,13806,0.0,50.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2002.5465637368402,1924.0,0.0,99657.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,66438.0,5,0,5,5_0 +2994,2.0,3.0,68.0,400,13,71,0.0,13807,0.0,0.0,60.0,0.0,1.0,6.0,0.0,1.0,1.0,1592.302377171673,0.0,0.0,43676.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,43676.0,5,0,5,5_1 +2995,3.0,8.0,38.0,111,52,44,0.0,13808,0.0,99999.0,0.0,0.0,3.0,3.0,2.0,4.0,2.5,1715.5491049133122,2132.0,0.0,20772.0,4,3,6,5.0,4,9.0,0.0,0.0,0,0,1,0,0,1,2.0,7.0,8308.8,1,0,1_1,1_0 +2996,2.0,3.0,81.0,111,77,70,0.0,13809,0.0,200.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3396.2026925471564,2627.04,0.0,34325.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,34325.0,5,0,5,5_0 +2997,1.0,1.0,59.0,120,46,60,1.0,1381,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2085.578650807575,3290.56,14000.0,56220.0,1,1,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,0.0,28110.0,4,0,4_0,4_1 +2998,4.0,4.0,67.0,111,74,12,0.0,13811,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1944.6427676391681,4620.2,0.0,63444.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,42296.0,5,0,5,5_0 +2999,0.0,3.0,46.0,400,62,50,0.0,13813,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1936.5932881764436,0.0,0.0,17070.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17070.0,2,0,2_0,2_1 +3000,1.0,6.0,70.0,111,75,50,0.0,13814,0.0,350.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2093.5759224142594,0.0,0.0,33757.0,5,4,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,33757.0,5,0,5,5_0 +3001,0.0,0.0,51.0,221,46,31,0.0,13815,0.0,0.0,0.0,753.0,1.0,3.0,0.0,2.0,1.5,4471.791579362062,930.8,0.0,14223.0,1,3,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9482.0,1,0,1_1,1_0 +3002,0.0,2.0,63.0,112,78,71,0.0,13816,0.0,560.0,0.0,303.0,1.0,4.0,5.0,7.0,3.8,1453.4790292620671,0.0,0.0,22376.0,5,3,10,5.0,4,3.0,1.0,1.0,0,0,1,0,0,1,1.0,2.0,5888.421052631579,1,0,1_1,1_0 +3003,0.0,0.0,27.0,111,42,20,0.0,13817,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3962.8587298911802,2305.6800000000003,0.0,61252.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34028.88888888889,5,0,5,5_0 +3004,1.0,1.0,83.0,120,86,71,1.0,13818,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1776.8473658977648,0.0,14000.0,40654.0,5,1,0,3.0,5,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27102.666666666668,4,0,4_0,4_0 +3005,1.0,2.0,57.0,112,45,42,2.0,13820,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2863.0898896419335,0.0,17000.0,51133.0,1,1,9,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,34088.666666666664,5,0,5,5_1 +3006,1.0,13.0,49.0,120,85,71,0.0,13821,0.0,250.0,690.0,0.0,0.0,6.0,0.0,2.0,1.5,2668.7075430319196,0.0,0.0,22390.0,7,4,0,1.0,5,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,14926.666666666666,2,0,2_0,2_0 +3007,15.0,15.0,67.0,111,78,71,0.0,13822,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,1959.3682942092134,780.0,0.0,12300.0,5,3,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,6150.0,1,0,1_0,1_0 +3008,4.0,6.0,81.0,111,74,20,0.0,13823,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2598.1798797768547,0.0,0.0,74695.0,5,4,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,49796.666666666664,5,0,5,5_0 +3009,2.0,6.0,53.0,111,78,50,0.0,13825,0.0,500.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3344.5325242255662,0.0,0.0,14437.0,4,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,14437.0,2,0,2_0,2_0 +3010,0.0,0.0,49.0,111,33,12,0.0,13826,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1708.4849969499494,2896.92,0.0,69932.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34966.0,5,0,5,5_0 +3011,0.0,0.0,41.0,111,34,20,0.0,13827,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2429.7892054302765,4919.72,0.0,69275.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32988.09523809524,5,0,5,5_0 +3012,2.0,11.0,37.0,111,84,50,0.0,13829,0.0,0.0,500.0,68.0,0.0,3.0,4.0,5.0,2.2,778.4706902136288,0.0,0.0,23475.0,3,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,10670.454545454544,1,0,1_1,1_0 +3013,3.0,4.0,48.0,111,85,41,0.0,1383,0.0,550.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2641.6972132968604,0.0,0.0,9700.0,7,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,9700.0,1,0,1_0,1_0 +3014,2.0,2.0,50.0,111,53,42,0.0,13831,0.0,750.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1540.5964643928992,1658.28,0.0,50883.0,1,1,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25441.5,4,0,4_0,4_0 +3015,5.0,5.0,54.0,111,33,42,0.0,13832,0.0,300.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2422.868339474937,0.0,0.0,40017.0,1,1,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,26678.0,4,0,4_0,4_0 +3016,0.0,0.0,44.0,211,63,43,0.0,13835,0.0,0.0,0.0,328.0,1.0,5.0,2.0,4.0,2.3,1353.2547619384927,1300.0,0.0,28648.0,1,3,2,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12455.652173913044,1,0,1_1,1_0 +3017,2.0,9.0,48.0,111,68,42,0.0,13836,0.0,100.0,0.0,37.0,2.0,3.0,2.0,4.0,2.1,2353.1711716395857,0.0,0.0,15704.0,4,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,7478.095238095238,1,0,1_1,1_0 +3018,0.0,0.0,32.0,400,85,50,0.0,13837,0.0,0.0,0.0,0.0,0.0,4.0,5.0,6.0,2.5,552.5703544109418,0.0,0.0,19900.0,6,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,7960.0,1,0,1_1,1_1 +3019,3.0,8.0,82.0,112,77,71,0.0,13838,0.0,200.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2401.5109778217957,0.0,0.0,23970.0,5,1,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23970.0,4,0,4_0,4_1 +3020,0.0,0.0,30.0,211,62,50,0.0,13839,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2306.181370387523,3238.56,0.0,46739.0,1,2,2,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22256.666666666664,3,0,3_0,3_0 +3021,1.0,3.0,52.0,112,67,71,2.0,1384,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1607.9926184159178,0.0,14600.0,8714.0,1,3,8,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,8714.0,1,0,1_0,1_0 +3022,14.0,14.0,49.0,111,52,42,0.0,13841,0.0,90.0,130.0,0.0,1.0,3.0,1.0,2.0,1.3,906.7568356333899,0.0,0.0,31213.0,1,1,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,24010.0,4,0,4_0,4_0 +3023,5.0,6.0,80.0,400,74,33,0.0,13842,0.0,0.0,100.0,0.0,0.0,6.0,0.0,2.0,1.5,1706.8321373323938,0.0,0.0,88522.0,5,4,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,59014.666666666664,5,0,5,5_1 +3024,5.0,6.0,59.0,111,56,71,0.0,13844,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2557.3281579739555,0.0,0.0,15715.0,1,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15715.0,2,0,2_0,2_0 +3025,2.0,10.0,39.0,112,47,43,0.0,13845,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1860.2670438145421,0.0,0.0,35090.0,1,2,8,2.0,4,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,16709.52380952381,2,0,2_0,2_0 +3026,7.0,7.0,67.0,111,77,50,0.0,13846,0.0,0.0,0.0,601.0,1.0,3.0,1.0,3.0,1.8,3306.756035963258,1029.6000000000001,0.0,31078.0,5,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,17265.555555555555,2,0,2_1,2_0 +3027,1.0,1.0,61.0,111,56,50,1.0,13849,0.0,0.0,0.0,390.0,1.0,3.0,0.0,1.0,1.0,2188.126048959506,0.0,23000.0,20685.0,1,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,20685.0,3,0,3_0,3_0 +3028,1.0,1.0,62.0,400,72,50,1.0,13852,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2838.4571878590054,0.0,21000.0,23800.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15866.666666666666,2,0,2_0,2_0 +3029,0.0,44.0,49.0,111,22,20,0.0,13853,0.0,0.0,500.0,0.0,2.0,8.0,0.0,2.0,1.5,2091.000937974321,0.0,0.0,73558.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,49038.666666666664,5,0,5,5_0 +3030,0.0,0.0,47.0,111,43,42,0.0,13854,0.0,0.0,0.0,470.0,1.0,4.0,1.0,2.0,1.5,868.882592433754,1040.0,0.0,21870.0,1,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14580.0,2,0,2_0,2_0 +3031,1.0,7.0,42.0,111,63,71,2.0,13855,0.0,0.0,0.0,275.0,1.0,6.0,2.0,3.0,1.6,1205.9285492256752,0.0,4000.0,25878.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,16173.75,2,0,2_1,2_0 +3032,0.0,0.0,43.0,112,53,41,0.0,13856,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2082.796437506081,0.0,0.0,60512.0,1,1,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,33617.777777777774,5,0,5,5_0 +3033,0.0,0.0,36.0,111,68,71,0.0,13861,0.0,0.0,0.0,243.0,1.0,4.0,2.0,3.0,1.8,1184.5778738290778,0.0,0.0,18554.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10307.777777777777,1,0,1_1,1_0 +3034,18.0,22.0,44.0,111,55,31,0.0,13862,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,645.2180197654143,3016.0,0.0,19260.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19260.0,3,0,3_0,3_0 +3035,3.0,10.0,72.0,112,33,41,0.0,13863,0.0,0.0,180.0,0.0,1.0,5.0,0.0,2.0,1.5,1297.7589327155422,4554.16,0.0,56232.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,37488.0,5,0,5,5_1 +3036,0.0,0.0,83.0,111,78,70,0.0,13864,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4350.358236565358,0.0,0.0,17174.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17174.0,2,0,2_0,2_0 +3037,0.0,0.0,20.0,111,84,41,0.0,13865,0.0,0.0,0.0,288.0,0.0,2.0,0.0,1.0,1.0,2087.961550528549,0.0,0.0,9422.0,3,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9422.0,1,0,1_1,1_0 +3038,0.0,0.0,87.0,221,77,70,0.0,13866,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2357.681263558878,0.0,0.0,15544.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15544.0,2,0,2_1,2_0 +3039,3.0,6.0,42.0,111,38,31,0.0,13867,0.0,200.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1959.8699850105656,1043.12,0.0,29590.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,12865.217391304348,1,0,1_0,1_0 +3040,0.0,0.0,56.0,111,47,42,0.0,13868,0.0,0.0,0.0,318.0,2.0,3.0,1.0,2.0,1.5,940.9087315382038,1287.0,0.0,27875.0,1,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18583.333333333332,2,0,2_0,2_0 +3041,8.0,10.0,28.0,112,38,30,0.0,13869,0.0,0.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,2972.2384781031574,6019.0,0.0,114956.0,1,1,10,2.0,4,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,45982.4,5,0,5,5_0 +3042,0.0,0.0,25.0,211,55,20,0.0,1387,0.0,0.0,0.0,680.0,2.0,4.0,0.0,2.0,1.5,2414.916440737472,0.0,0.0,32380.0,1,3,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21586.666666666668,3,0,3_0,3_0 +3043,1.0,12.0,46.0,111,56,50,2.0,13870,0.0,0.0,400.0,0.0,1.0,3.0,0.0,1.0,1.0,2497.0979198855675,1915.6800000000003,1000.0,11485.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,11485.0,1,0,1_0,1_0 +3044,0.0,0.0,48.0,120,62,44,0.0,13871,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2779.8376167537685,0.0,0.0,28484.0,4,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14242.0,2,0,2_0,2_0 +3045,3.0,3.0,43.0,111,53,43,0.0,13872,0.0,130.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2262.7977711161366,2080.0,0.0,40505.0,1,2,8,6.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,16877.083333333336,2,0,2_0,2_0 +3046,0.0,12.0,54.0,111,43,50,0.0,13873,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2672.210476428381,0.0,0.0,1440.0,7,3,6,4.0,1,1.0,1.0,0.0,0,0,1,0,0,1,1.0,0.0,1440.0,1,0,1_1,1_0 +3047,2.0,2.0,49.0,112,38,31,0.0,13874,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,2466.581407914597,1976.0,0.0,6730.0,4,1,9,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,3738.8888888888887,1,0,1_0,1_1 +3048,8.0,13.0,47.0,300,47,50,0.0,13875,0.0,80.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1909.362337555109,0.0,0.0,22369.0,1,2,0,1.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,8947.6,1,0,1_0,1_0 +3049,5.0,5.0,47.0,111,54,43,0.0,13877,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,792.1885146737636,379.08,0.0,26546.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,13273.0,1,0,1_0,1_0 +3050,1.0,12.0,25.0,111,64,60,2.0,13879,0.0,0.0,0.0,203.0,2.0,2.0,0.0,2.0,1.5,2971.2842068533123,780.0,3000.0,29431.0,1,3,7,4.0,3,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,19620.666666666668,3,0,3_1,3_0 +3051,4.0,7.0,47.0,111,21,50,0.0,1388,0.0,0.0,99999.0,432.0,1.0,3.0,0.0,1.0,1.0,3758.2562244560754,0.0,0.0,18768.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18768.0,3,0,3_0,3_0 +3052,0.0,0.0,53.0,112,13,50,0.0,13880,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1642.6615470640747,0.0,0.0,3419.0,1,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,1709.5,1,0,1_0,1_1 +3053,15.0,15.0,52.0,211,46,30,0.0,13881,0.0,0.0,130.0,0.0,2.0,6.0,1.0,2.0,1.5,1139.0707288535007,0.0,0.0,62681.0,1,1,2,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,41787.333333333336,5,0,5,5_0 +3054,6.0,12.0,35.0,111,46,42,0.0,13882,0.0,600.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2344.911927001432,0.0,0.0,38137.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18160.47619047619,2,0,2_0,2_0 +3055,15.0,15.0,65.0,300,78,50,0.0,13883,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2204.955473647623,0.0,0.0,17019.0,5,1,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,11346.0,1,0,1_0,1_1 +3056,0.0,0.0,48.0,112,63,50,0.0,13884,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1992.8244302078892,1066.0,0.0,44434.0,1,2,4,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15869.285714285716,2,0,2_0,2_1 +3057,6.0,7.0,32.0,111,38,50,0.0,13888,0.0,350.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2704.1643390214062,3120.52,0.0,70037.0,1,2,10,8.0,3,3.0,0.0,1.0,0,0,0,0,1,0,0.0,3.0,46691.333333333336,5,0,5,5_0 +3058,0.0,0.0,54.0,300,22,31,0.0,13889,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2898.555224083133,0.0,0.0,85072.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,56714.666666666664,5,0,5,5_1 +3059,7.0,10.0,31.0,111,34,10,0.0,1389,0.0,0.0,300.0,401.0,2.0,2.0,0.0,2.0,1.5,3184.937437560768,0.0,0.0,71773.0,1,3,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,47848.666666666664,5,0,5,5_0 +3060,6.0,6.0,64.0,120,75,41,0.0,13890,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2335.3649795361066,4680.52,0.0,35763.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23842.0,4,0,4_0,4_1 +3061,1.0,6.0,29.0,111,52,43,2.0,13891,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,5399.163224603289,0.0,7500.0,19088.0,4,4,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,14683.076923076922,2,0,2_0,2_0 +3062,2.0,4.0,81.0,111,74,70,0.0,13892,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,615.2796989329306,0.0,0.0,42746.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28497.333333333332,4,0,4_0,4_0 +3063,6.0,6.0,59.0,111,37,31,0.0,13893,0.0,100.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1746.9836880490434,2537.6,0.0,81115.0,1,1,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,54076.666666666664,5,0,5,5_0 +3064,0.0,0.0,64.0,300,78,50,0.0,13894,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3224.410183882017,0.0,0.0,21037.0,4,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14024.666666666666,2,0,2_0,2_0 +3065,9.0,12.0,24.0,111,46,31,0.0,13895,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,5128.056226913647,0.0,0.0,24482.0,1,3,10,8.0,5,2.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,16321.333333333334,2,0,2_1,2_0 +3066,3.0,4.0,62.0,300,78,50,0.0,13896,0.0,400.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,2039.278863873243,0.0,0.0,22540.0,5,1,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,22540.0,3,0,3_0,3_0 +3067,0.0,0.0,58.0,400,35,20,0.0,13898,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1749.3071205840354,0.0,0.0,430.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,430.0,1,0,1_0,1_1 +3068,6.0,6.0,66.0,111,78,71,0.0,13899,0.0,99999.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2375.314186621106,0.0,0.0,48353.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,32235.333333333332,5,0,5,5_0 +3069,15.0,22.0,69.0,111,75,44,0.0,139,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2603.316122180565,447.2,0.0,48605.0,5,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32403.333333333332,5,0,5,5_0 +3070,7.0,7.0,45.0,111,62,50,0.0,13902,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,2044.3254784727817,1560.52,0.0,31354.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11197.857142857143,1,0,1_0,1_0 +3071,0.0,0.0,54.0,300,63,50,0.0,13904,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1509.8939726433334,4056.0,0.0,34004.0,1,2,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22669.333333333332,3,0,3_0,3_0 +3072,20.0,20.0,68.0,111,75,50,0.0,13905,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1478.8652150105104,0.0,0.0,24685.0,5,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16456.666666666668,2,0,2_0,2_0 +3073,0.0,0.0,44.0,221,45,20,0.0,13906,0.0,0.0,250.0,0.0,1.0,4.0,2.0,3.0,1.8,689.520331742736,0.0,0.0,38279.0,1,2,1,2.0,2,3.0,1.0,0.0,0,1,0,0,0,0,1.0,2.0,21266.11111111111,3,0,3_0,3_0 +3074,5.0,8.0,81.0,111,72,70,0.0,13907,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2403.0910852738693,306.8,0.0,18900.0,5,3,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,12600.0,1,0,1_0,1_0 +3075,2.0,2.0,39.0,111,37,31,0.0,13908,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3027.8175406859186,7495.28,0.0,56770.0,1,2,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,27033.333333333332,4,0,4_0,4_0 +3076,11.0,15.0,46.0,300,63,50,0.0,13909,0.0,0.0,0.0,0.0,2.0,7.0,3.0,4.0,2.5,1327.163202880999,3126.76,0.0,30693.0,1,2,0,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,12277.2,1,0,1_1,1_0 +3077,6.0,17.0,43.0,111,31,10,0.0,13910,0.0,0.0,48.0,475.0,1.0,4.0,1.0,3.0,1.8,2311.712980200055,3120.0,0.0,29860.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16588.888888888887,2,0,2_0,2_0 +3078,0.0,0.0,35.0,111,55,31,0.0,13911,0.0,0.0,0.0,665.0,1.0,2.0,0.0,1.0,1.0,3497.117391409379,1318.72,0.0,35140.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35140.0,5,0,5,5_0 +3079,0.0,0.0,55.0,111,68,50,0.0,13912,0.0,0.0,0.0,356.0,1.0,1.0,0.0,1.0,1.0,2781.8371327024684,3640.0,0.0,29908.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29908.0,4,0,4_0,4_0 +3080,0.0,9.0,49.0,111,52,60,0.0,13913,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,1508.19409239991,1560.0,0.0,30960.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,10320.0,1,0,1_0,1_0 +3081,0.0,1.0,72.0,120,86,70,2.0,13914,0.0,0.0,90.0,0.0,0.0,4.0,0.0,1.0,1.0,1909.1864950356735,3395.6,14500.0,11740.0,5,1,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,11740.0,1,0,1_0,1_1 +3082,6.0,6.0,46.0,111,63,50,0.0,13915,0.0,0.0,0.0,432.0,3.0,2.0,4.0,6.0,3.1,2959.1387730195243,0.0,0.0,61634.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19881.935483870966,3,0,3_0,3_0 +3083,0.0,0.0,84.0,111,77,71,0.0,13916,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4049.7243641784758,0.0,0.0,13415.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13415.0,1,0,1_0,1_0 +3084,3.0,5.0,31.0,111,67,43,0.0,13917,0.0,0.0,0.0,520.0,1.0,3.0,0.0,1.0,1.0,2668.8527793997555,2119.0,0.0,19926.0,1,3,6,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19926.0,3,0,3_0,3_0 +3085,0.0,0.0,30.0,120,85,50,0.0,13918,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1682.1985852330672,0.0,0.0,14065.0,7,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14065.0,2,0,2_1,2_0 +3086,5.0,5.0,74.0,111,72,71,0.0,13919,0.0,364.0,250.0,0.0,0.0,15.0,0.0,1.0,1.0,2746.847010086156,1560.0,0.0,31305.0,5,1,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,31305.0,4,0,4_0,4_0 +3087,0.0,0.0,39.0,111,85,41,0.0,1392,0.0,0.0,0.0,27.0,0.0,2.0,0.0,1.0,1.0,2623.899376163829,0.0,0.0,15118.0,7,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15118.0,2,0,2_1,2_0 +3088,9.0,9.0,56.0,112,42,31,0.0,13920,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1627.3452430934776,0.0,0.0,58065.0,1,1,6,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,38710.0,5,0,5,5_0 +3089,8.0,8.0,36.0,111,52,20,0.0,13922,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,670.6529265149567,1040.0,0.0,23334.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12281.052631578948,1,0,1_1,1_0 +3090,6.0,14.0,50.0,111,55,50,0.0,13924,0.0,830.0,0.0,0.0,1.0,3.0,3.0,4.0,2.1,1091.3566375851242,2080.0,0.0,21233.0,4,3,10,8.0,2,4.0,0.0,1.0,0,0,0,0,1,1,0.0,4.0,10110.95238095238,1,0,1_1,1_0 +3091,0.0,0.0,57.0,112,69,71,0.0,13925,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1856.5035864635104,1040.0,0.0,19931.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13287.333333333334,1,0,1_0,1_1 +3092,10.0,12.0,31.0,120,62,50,0.0,13928,0.0,20.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1743.7801528122404,6646.639999999999,0.0,41601.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19810.0,3,0,3_0,3_1 +3093,0.0,0.0,33.0,112,37,42,0.0,13929,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2177.400770696595,0.0,0.0,50265.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23935.714285714286,4,0,4_0,4_1 +3094,0.0,0.0,42.0,111,37,20,0.0,1393,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,959.3184600603333,1040.0,0.0,69599.0,1,3,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38666.11111111111,5,0,5,5_0 +3095,2.0,8.0,71.0,111,74,44,0.0,13930,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2328.3206324827142,1862.64,0.0,21488.0,5,1,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,21488.0,3,0,3_0,3_0 +3096,0.0,0.0,70.0,112,74,10,0.0,13933,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2535.2073088312213,2080.0,0.0,52939.0,5,1,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,52939.0,5,0,5,5_0 +3097,1.0,3.0,31.0,111,65,50,0.0,13934,0.0,210.0,0.0,554.0,2.0,3.0,2.0,4.0,2.1,3147.2277895226052,1820.0,0.0,48905.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23288.095238095237,3,0,3_0,3_0 +3098,5.0,6.0,32.0,111,37,12,0.0,13935,0.0,0.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,2762.014856952115,0.0,0.0,34743.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,34743.0,5,0,5,5_0 +3099,2.0,2.0,34.0,112,37,30,0.0,13936,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,714.4411373083445,0.0,0.0,47580.0,1,1,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26433.333333333332,4,0,4_0,4_1 +3100,15.0,15.0,54.0,111,52,41,0.0,13937,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1839.7549041834245,2671.76,0.0,22149.0,1,2,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22149.0,3,0,3_0,3_0 +3101,10.0,11.0,65.0,300,78,70,0.0,13938,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1804.5480477044882,0.0,0.0,20828.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20828.0,3,0,3_0,3_0 +3102,7.0,9.0,45.0,112,46,41,0.0,1394,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1726.3837886643398,0.0,0.0,47440.0,1,2,7,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19766.666666666668,3,0,3_0,3_0 +3103,3.0,8.0,45.0,112,56,42,0.0,13940,0.0,30.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1314.6658893015217,4336.28,0.0,48250.0,1,2,10,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20978.26086956522,3,0,3_0,3_0 +3104,1.0,1.0,34.0,300,55,50,1.0,13942,0.0,100409.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3367.2616826421727,2080.0,15000.0,40725.0,1,3,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,19392.85714285714,3,0,3_0,3_1 +3105,2.0,2.0,67.0,111,75,33,0.0,13943,0.0,0.0,400.0,0.0,1.0,6.0,1.0,3.0,2.0,3375.869145376922,3224.0,0.0,89617.0,5,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,44808.5,5,0,5,5_0 +3106,1.0,5.0,62.0,111,75,71,0.0,13944,0.0,0.0,200.0,264.0,0.0,2.0,0.0,1.0,1.0,2860.558549631964,0.0,0.0,21640.0,5,3,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,21640.0,3,0,3_0,3_0 +3107,0.0,0.0,85.0,111,78,71,0.0,13946,0.0,0.0,0.0,436.0,0.0,3.0,0.0,2.0,1.5,2082.7888043562525,0.0,0.0,21350.0,5,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14233.333333333334,2,0,2_0,2_0 +3108,8.0,19.0,64.0,111,77,60,0.0,13948,0.0,30.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2139.3039668686424,1560.0,0.0,11003.0,5,1,6,4.0,1,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,11003.0,1,0,1_0,1_0 +3109,9.0,11.0,37.0,300,64,50,0.0,13949,0.0,0.0,300.0,0.0,2.0,6.0,3.0,5.0,2.4,2583.9945793556594,0.0,0.0,42571.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17737.916666666668,2,0,2_0,2_1 +3110,2.0,2.0,66.0,111,54,41,0.0,1395,0.0,0.0,0.0,754.0,1.0,3.0,0.0,1.0,1.0,2347.488786048304,0.0,0.0,46614.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,46614.0,5,0,5,5_0 +3111,3.0,16.0,42.0,111,38,50,0.0,13951,0.0,99999.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2186.6122337394963,2860.0,0.0,57951.0,1,1,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23180.4,3,0,3_0,3_0 +3112,0.0,0.0,51.0,111,54,43,0.0,13952,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,2.0,1648.4294003196098,0.0,0.0,17797.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8898.5,1,0,1_1,1_0 +3113,3.0,3.0,55.0,111,37,30,0.0,13953,0.0,200.0,0.0,560.0,1.0,2.0,0.0,1.0,1.0,2637.61356805889,1352.0,0.0,29730.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,29730.0,4,0,4_0,4_0 +3114,3.0,3.0,58.0,111,54,50,0.0,13958,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2491.924733983158,0.0,0.0,44888.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29925.333333333332,4,0,4_0,4_0 +3115,0.0,0.0,51.0,111,47,71,0.0,13959,0.0,0.0,0.0,286.0,1.0,3.0,0.0,1.0,1.0,1464.0814079641445,0.0,0.0,18320.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18320.0,2,0,2_0,2_0 +3116,10.0,10.0,53.0,111,64,50,0.0,1396,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2749.8087030190245,1561.04,0.0,24595.0,1,2,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24595.0,4,0,4_0,4_0 +3117,2.0,2.0,32.0,112,63,50,0.0,13960,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2137.9699043946243,0.0,0.0,51506.0,1,2,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,24526.666666666664,4,0,4_0,4_0 +3118,11.0,11.0,60.0,111,38,50,0.0,13962,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1513.5485890232799,0.0,0.0,54920.0,1,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,36613.333333333336,5,0,5,5_0 +3119,9.0,24.0,69.0,111,78,70,0.0,13963,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1674.0442816520451,3120.0,0.0,20790.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,13860.0,1,0,1_0,1_0 +3120,2.0,3.0,26.0,112,47,31,0.0,13966,0.0,250.0,0.0,133.0,1.0,2.0,0.0,1.0,1.0,4522.732597594864,2385.24,0.0,11165.0,4,3,8,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,11165.0,1,0,1_1,1_0 +3121,3.0,9.0,66.0,300,71,50,0.0,13969,0.0,630.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1769.5084681974677,2604.16,0.0,25800.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17200.0,2,0,2_0,2_1 +3122,3.0,10.0,75.0,111,74,50,0.0,1397,0.0,50.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3150.9790928275393,0.0,0.0,40560.0,5,1,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27040.0,4,0,4_0,4_0 +3123,3.0,4.0,44.0,112,55,41,0.0,13971,0.0,750.0,600.0,0.0,1.0,5.0,1.0,2.0,1.5,619.0149392705737,5060.64,0.0,30310.0,1,3,9,2.0,2,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,20206.666666666668,3,0,3_0,3_0 +3124,1.0,8.0,46.0,111,48,31,2.0,13972,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2468.002551779604,4942.6,3500.0,65371.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28422.17391304348,4,0,4_0,4_0 +3125,0.0,0.0,74.0,120,77,70,0.0,13974,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2231.80779012707,0.0,0.0,37611.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25074.0,4,0,4_0,4_1 +3126,3.0,28.0,34.0,111,62,43,0.0,13977,0.0,0.0,0.0,566.0,2.0,5.0,2.0,4.0,2.1,1819.6745470053963,0.0,0.0,37470.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17842.85714285714,2,0,2_0,2_0 +3127,6.0,6.0,44.0,111,63,43,0.0,13978,0.0,200.0,150.0,0.0,2.0,2.0,0.0,2.0,1.5,2209.2320798402493,0.0,0.0,45940.0,1,3,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,30626.666666666668,4,0,4_0,4_0 +3128,8.0,9.0,53.0,111,78,50,0.0,13981,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2402.5615377830277,1305.2,0.0,45380.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,30253.333333333332,4,0,4_0,4_0 +3129,11.0,21.0,72.0,120,74,31,0.0,13982,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2325.5837630543615,0.0,0.0,31710.0,5,4,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31710.0,4,0,4_0,4_0 +3130,9.0,10.0,72.0,111,77,71,0.0,13983,0.0,400.0,0.0,274.0,0.0,4.0,0.0,1.0,1.0,3197.1127978208783,0.0,0.0,18680.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18680.0,2,0,2_0,2_0 +3131,2.0,2.0,24.0,111,63,31,0.0,13985,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5048.135831197456,1560.0,0.0,21349.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,21349.0,3,0,3_1,3_0 +3132,1.0,1.0,69.0,111,75,70,1.0,13986,0.0,20.0,150.0,0.0,0.0,8.0,0.0,2.0,1.5,2357.54031944893,0.0,13780.0,56124.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,37416.0,5,0,5,5_0 +3133,4.0,8.0,71.0,112,75,33,0.0,13987,0.0,0.0,0.0,420.0,0.0,2.0,0.0,1.0,1.0,2785.0835209745755,0.0,0.0,21340.0,5,3,10,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21340.0,3,0,3_0,3_0 +3134,5.0,5.0,42.0,111,46,41,0.0,13988,0.0,310.0,0.0,957.0,1.0,4.0,0.0,1.0,1.0,2463.194125106807,4160.0,0.0,30779.0,1,3,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,1,0.0,3.0,30779.0,4,0,4_1,4_0 +3135,0.0,0.0,51.0,211,53,50,0.0,13989,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,229.1991870536213,2340.0,0.0,57423.0,1,2,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22969.2,3,0,3_0,3_0 +3136,6.0,6.0,52.0,111,85,30,0.0,13990,0.0,180.0,50.0,0.0,1.0,3.0,2.0,3.0,2.0,3856.522474291113,0.0,0.0,27088.0,7,1,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,13544.0,1,0,1_0,1_0 +3137,0.0,3.0,75.0,111,74,20,2.0,13991,0.0,700.0,0.0,550.0,0.0,3.0,0.0,1.0,1.0,3386.277840085516,0.0,13000.0,25793.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25793.0,4,0,4_0,4_0 +3138,4.0,4.0,49.0,221,81,71,0.0,13993,0.0,0.0,0.0,0.0,2.0,5.0,3.0,4.0,2.3,515.2756369875959,0.0,0.0,18160.0,4,3,1,3.0,2,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,7895.652173913044,1,0,1_1,1_0 +3139,0.0,4.0,45.0,221,52,71,2.0,13994,0.0,250.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3020.9323078754246,0.0,6500.0,13604.0,1,4,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,13604.0,1,0,1_0,1_0 +3140,0.0,0.0,79.0,111,75,60,0.0,13995,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3837.9248165152535,2090.4,0.0,23397.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15598.0,2,0,2_0,2_0 +3141,12.0,12.0,58.0,120,75,50,0.0,13997,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2415.4140202273397,0.0,0.0,16285.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16285.0,2,0,2_0,2_1 +3142,1.0,8.0,62.0,111,74,31,2.0,13998,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2854.9569537356356,5200.0,10000.0,71414.0,5,1,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,47609.333333333336,5,0,5,5_0 +3143,0.0,0.0,63.0,111,75,33,0.0,13999,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2376.509342278132,0.0,0.0,21188.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21188.0,3,0,3_0,3_0 +3144,5.0,19.0,40.0,111,47,60,0.0,14,0.0,500.0,200.0,0.0,1.0,3.0,0.0,1.0,1.0,2035.2929129067068,0.0,0.0,30236.0,1,2,6,4.0,1,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,30236.0,4,0,4_0,4_0 +3145,21.0,22.0,70.0,120,78,71,0.0,1400,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1709.5647440453595,0.0,0.0,18309.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18309.0,2,0,2_0,2_1 +3146,0.0,0.0,73.0,120,75,33,0.0,14001,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1738.7895448512222,0.0,0.0,34111.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22740.666666666668,3,0,3_0,3_0 +3147,3.0,17.0,23.0,111,55,31,0.0,14002,0.0,0.0,20.0,220.0,2.0,2.0,0.0,2.0,1.5,3427.9763555680893,0.0,0.0,33790.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,22526.666666666668,3,0,3_1,3_0 +3148,5.0,5.0,50.0,111,37,20,0.0,14003,0.0,0.0,140.0,980.0,1.0,4.0,3.0,4.0,2.3,751.9149386680634,1612.52,0.0,91876.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,39946.08695652174,5,0,5,5_0 +3149,2.0,3.0,31.0,221,53,71,0.0,14005,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,4363.491778087308,1622.92,0.0,48160.0,4,3,1,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,24080.0,4,0,4_1,4_0 +3150,0.0,0.0,34.0,111,47,42,0.0,14006,0.0,0.0,0.0,336.0,1.0,3.0,1.0,3.0,1.8,3696.0316095056105,0.0,0.0,21267.0,4,4,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11815.0,1,0,1_1,1_0 +3151,0.0,0.0,55.0,111,47,31,0.0,14007,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1598.7744810254337,0.0,0.0,46584.0,1,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31056.0,4,0,4_0,4_0 +3152,4.0,11.0,72.0,111,75,50,0.0,14009,0.0,0.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,2274.7746099779924,0.0,0.0,34483.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,34483.0,5,0,5,5_0 +3153,0.0,0.0,63.0,300,75,42,0.0,1401,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1954.9716215360647,1456.0,0.0,22378.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14918.666666666666,2,0,2_0,2_1 +3154,5.0,5.0,68.0,111,75,71,0.0,14011,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1222.355798212643,2695.6800000000003,0.0,41250.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27500.0,4,0,4_0,4_0 +3155,2.0,5.0,66.0,112,64,70,0.0,14012,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1558.8915493261177,1619.28,0.0,30336.0,5,3,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20224.0,3,0,3_0,3_1 +3156,5.0,15.0,47.0,111,45,30,0.0,14013,0.0,0.0,25.0,0.0,1.0,4.0,3.0,4.0,2.3,698.7093222393687,0.0,0.0,40336.0,1,1,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,17537.391304347828,2,0,2_1,2_0 +3157,3.0,7.0,42.0,111,55,42,0.0,14014,0.0,0.0,0.0,185.0,1.0,2.0,0.0,1.0,1.0,2634.211692131291,925.6,0.0,13936.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13936.0,2,0,2_1,2_0 +3158,0.0,0.0,65.0,112,78,50,0.0,14015,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1928.5509934738257,0.0,0.0,25520.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17013.333333333332,2,0,2_0,2_1 +3159,6.0,8.0,56.0,111,46,42,0.0,14017,0.0,450.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1659.2349433030738,0.0,0.0,57035.0,1,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,38023.333333333336,5,0,5,5_0 +3160,1.0,1.0,80.0,112,77,71,1.0,14018,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2126.591801336852,0.0,18000.0,13750.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13750.0,1,0,1_0,1_0 +3161,8.0,8.0,72.0,211,75,50,0.0,1402,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2514.4766150556266,1560.0,0.0,32590.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,21726.666666666668,3,0,3_0,3_0 +3162,15.0,15.0,53.0,112,62,50,0.0,14020,0.0,0.0,0.0,320.0,1.0,1.0,0.0,1.0,1.0,3183.0049862151964,3440.84,0.0,18976.0,1,3,7,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,18976.0,3,0,3_0,3_0 +3163,3.0,4.0,59.0,111,21,12,0.0,14021,0.0,0.0,250.0,0.0,1.0,6.0,1.0,3.0,2.0,1749.0935979254675,2636.92,0.0,68612.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,34306.0,5,0,5,5_0 +3164,16.0,16.0,55.0,112,47,50,0.0,14022,0.0,0.0,99999.0,0.0,2.0,5.0,0.0,2.0,1.5,1712.1525878562752,0.0,0.0,21244.0,1,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14162.666666666666,2,0,2_0,2_1 +3165,4.0,8.0,39.0,112,34,30,0.0,14023,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1927.9967773082724,5241.6,0.0,64653.0,1,2,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,26938.75,4,0,4_0,4_0 +3166,9.0,9.0,44.0,400,47,43,0.0,14024,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1674.8728682117335,3640.0,0.0,40753.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27168.666666666668,4,0,4_0,4_1 +3167,5.0,9.0,73.0,111,78,71,0.0,14025,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1737.6786806578016,1708.2,0.0,17523.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11682.0,1,0,1_0,1_0 +3168,4.0,12.0,44.0,112,54,31,0.0,14026,0.0,300.0,100.0,0.0,2.0,6.0,2.0,4.0,2.5,2219.365231608072,0.0,0.0,52863.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21145.2,3,0,3_0,3_1 +3169,0.0,0.0,86.0,112,77,70,0.0,14027,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3306.8196276353697,2927.6,0.0,28979.0,5,4,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28979.0,4,0,4_0,4_1 +3170,9.0,12.0,82.0,111,86,31,0.0,1403,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1697.59964454455,0.0,0.0,43586.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29057.333333333332,4,0,4_0,4_0 +3171,0.0,16.0,85.0,400,71,70,0.0,14031,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2670.270036271699,0.0,0.0,18409.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18409.0,2,0,2_0,2_1 +3172,7.0,9.0,40.0,111,23,44,0.0,14032,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1040.322038874346,4160.0,0.0,82397.0,1,2,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,82397.0,5,0,5,5_0 +3173,3.0,12.0,47.0,111,43,33,0.0,14033,0.0,0.0,20.0,0.0,2.0,4.0,2.0,3.0,1.8,725.0715955318626,0.0,0.0,28653.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,15918.333333333332,2,0,2_0,2_0 +3174,5.0,5.0,68.0,111,77,50,0.0,14034,0.0,0.0,100.0,0.0,0.0,5.0,0.0,1.0,1.0,3076.8531279088625,0.0,0.0,24094.0,5,1,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,24094.0,4,0,4_0,4_0 +3175,0.0,0.0,66.0,111,37,12,0.0,14036,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,4241.379801445682,2166.3199999999997,0.0,125696.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,83797.33333333333,5,0,5,5_0 +3176,0.0,0.0,57.0,112,45,42,0.0,14037,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1548.2283823672228,0.0,0.0,31187.0,1,1,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31187.0,4,0,4_0,4_0 +3177,0.0,0.0,66.0,211,77,70,0.0,14039,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2135.8682206067897,0.0,0.0,17316.0,5,4,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17316.0,2,0,2_0,2_0 +3178,0.0,0.0,54.0,112,37,31,0.0,1404,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1653.410398779923,2604.16,0.0,91533.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,39796.956521739135,5,0,5,5_1 +3179,2.0,12.0,24.0,300,52,44,0.0,14042,0.0,140.0,0.0,366.0,2.0,3.0,0.0,2.0,1.5,3269.990666012534,2362.88,0.0,33007.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22004.666666666668,3,0,3_0,3_1 +3180,2.0,2.0,66.0,111,78,71,0.0,14044,0.0,0.0,0.0,144.0,0.0,4.0,0.0,2.0,1.5,2852.128433341499,0.0,0.0,17194.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,11462.666666666666,1,0,1_1,1_0 +3181,0.0,0.0,45.0,211,85,42,0.0,14047,0.0,0.0,0.0,283.0,1.0,5.0,2.0,4.0,2.5,2620.276314643578,1820.0,0.0,16273.0,8,3,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,6509.2,1,0,1_1,1_0 +3182,2.0,2.0,50.0,112,62,31,0.0,14049,0.0,199998.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,3195.044791928449,2965.04,0.0,39211.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15684.4,2,0,2_0,2_0 +3183,3.0,4.0,37.0,111,38,12,0.0,1405,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2838.948664998872,0.0,0.0,54210.0,1,1,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36140.0,5,0,5,5_0 +3184,0.0,0.0,70.0,111,75,50,1.0,14050,0.0,40.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3143.175162591314,0.0,25344.0,38160.0,5,1,7,6.0,3,3.0,1.0,1.0,0,0,1,0,0,0,1.0,2.0,25440.0,4,0,4_0,4_0 +3185,20.0,20.0,29.0,111,62,41,0.0,14051,0.0,0.0,180.0,57.0,2.0,4.0,2.0,3.0,2.0,1216.0103052327895,0.0,0.0,30577.0,1,3,8,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,15288.5,2,0,2_1,2_0 +3186,11.0,14.0,85.0,221,78,71,0.0,14052,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3138.4204386748033,0.0,0.0,14345.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14345.0,2,0,2_0,2_0 +3187,0.0,0.0,40.0,111,52,41,0.0,14054,0.0,0.0,0.0,320.0,1.0,2.0,0.0,1.0,1.0,3763.8191706929356,2080.0,0.0,18040.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18040.0,2,0,2_0,2_0 +3188,9.0,12.0,60.0,112,42,41,0.0,14056,0.0,120.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1529.361812289187,0.0,0.0,68901.0,1,1,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,29956.956521739132,4,0,4_0,4_1 +3189,0.0,0.0,48.0,111,63,50,0.0,14057,0.0,0.0,0.0,206.0,1.0,3.0,0.0,1.0,1.0,2846.076579293981,1560.0,0.0,18050.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18050.0,2,0,2_0,2_0 +3190,0.0,0.0,53.0,300,67,50,0.0,14058,0.0,0.0,0.0,0.0,4.0,5.0,2.0,5.0,2.8,1774.3227570708113,8115.12,0.0,53069.0,1,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18953.214285714286,3,0,3_0,3_1 +3191,1.0,3.0,28.0,111,48,31,2.0,14059,0.0,0.0,0.0,320.0,1.0,5.0,0.0,2.0,1.5,3204.474986225781,0.0,17000.0,49110.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,32740.0,5,0,5,5_0 +3192,0.0,0.0,63.0,400,74,31,0.0,1406,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1601.589271992214,0.0,0.0,50188.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,33458.666666666664,5,0,5,5_0 +3193,5.0,5.0,54.0,211,65,71,0.0,14060,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2507.574971652161,1300.0,0.0,54751.0,1,1,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27375.5,4,0,4_0,4_0 +3194,0.0,0.0,29.0,111,55,43,0.0,14061,0.0,0.0,0.0,247.0,1.0,2.0,0.0,1.0,1.0,3529.9128362975584,0.0,0.0,13687.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13687.0,1,0,1_1,1_0 +3195,1.0,1.0,30.0,300,47,43,1.0,14062,0.0,0.0,30.0,0.0,2.0,4.0,0.0,2.0,1.5,2475.540084845863,2496.0,11546.0,34653.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23102.0,3,0,3_0,3_1 +3196,0.0,0.0,49.0,300,62,50,0.0,14064,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2319.5868133309214,0.0,0.0,28230.0,1,2,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18820.0,3,0,3_0,3_1 +3197,0.0,13.0,66.0,111,75,44,0.0,14065,0.0,0.0,0.0,142.0,0.0,1.0,0.0,1.0,1.0,4221.519331362319,0.0,0.0,14020.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,14020.0,2,0,2_1,2_0 +3198,0.0,0.0,45.0,112,37,31,0.0,14066,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2226.1647374097493,0.0,0.0,80330.0,1,2,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40165.0,5,0,5,5_0 +3199,12.0,18.0,43.0,111,23,20,0.0,14067,0.0,0.0,0.0,616.0,1.0,4.0,0.0,1.0,1.0,6486.636739404945,0.0,0.0,49126.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,49126.0,5,0,5,5_0 +3200,2.0,8.0,75.0,111,74,41,0.0,14069,0.0,1000.0,280.0,523.0,0.0,3.0,0.0,2.0,1.5,3842.3976367946,0.0,0.0,35628.0,5,3,10,8.0,3,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,23752.0,3,0,3_0,3_0 +3201,0.0,5.0,69.0,111,77,42,2.0,1407,0.0,200.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1577.9494164683215,1820.0,4000.0,43762.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,29174.666666666668,4,0,4_0,4_0 +3202,14.0,15.0,54.0,111,54,42,0.0,14070,0.0,0.0,30.0,0.0,2.0,3.0,0.0,2.0,1.5,3229.7666048195724,2262.0,0.0,56186.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,37457.333333333336,5,0,5,5_0 +3203,3.0,3.0,36.0,112,21,31,0.0,14071,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,789.9692535180349,4264.0,0.0,39499.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21943.888888888887,3,0,3_0,3_1 +3204,5.0,5.0,83.0,111,74,60,0.0,14073,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2240.386170030627,0.0,0.0,48226.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32150.666666666668,5,0,5,5_0 +3205,13.0,13.0,65.0,111,77,50,0.0,14076,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1664.5155365797143,0.0,0.0,22822.0,5,4,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22822.0,3,0,3_0,3_0 +3206,0.0,0.0,68.0,120,77,41,0.0,14077,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1303.8070156663555,0.0,0.0,43618.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29078.666666666668,4,0,4_0,4_0 +3207,1.0,14.0,75.0,111,74,31,2.0,14078,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1398.7336643305825,624.0,1200.0,42932.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28621.333333333332,4,0,4_0,4_0 +3208,0.0,0.0,49.0,221,22,50,0.0,14079,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1130.075177662349,0.0,0.0,12786.0,4,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8524.0,1,0,1_1,1_0 +3209,5.0,11.0,65.0,112,78,50,0.0,1408,0.0,0.0,350.0,0.0,0.0,3.0,0.0,1.0,1.0,2043.1927517040153,3813.16,0.0,11354.0,5,3,9,3.0,1,1.0,1.0,1.0,0,1,0,0,0,1,1.0,0.0,11354.0,1,0,1_1,1_0 +3210,9.0,10.0,87.0,112,78,70,0.0,14080,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1922.101417996543,2600.0,0.0,27336.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18224.0,2,0,2_0,2_0 +3211,2.0,2.0,50.0,300,56,42,1.0,14082,0.0,300.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1707.2131929433535,2860.52,15000.0,13539.0,4,2,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9026.0,1,0,1_1,1_0 +3212,0.0,0.0,55.0,112,52,71,1.0,14083,0.0,360.0,0.0,256.0,3.0,4.0,2.0,3.0,2.0,1315.885437086735,1300.0,29000.0,32434.0,1,3,8,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,16217.0,2,0,2_1,2_0 +3213,0.0,0.0,67.0,111,75,50,0.0,14084,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3094.7670635958966,0.0,0.0,21872.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21872.0,3,0,3_0,3_0 +3214,4.0,7.0,53.0,111,56,50,0.0,14086,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2672.201179891837,0.0,0.0,20328.0,1,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20328.0,3,0,3_0,3_0 +3215,3.0,16.0,57.0,112,34,33,0.0,14089,0.0,0.0,0.0,0.0,3.0,8.0,1.0,3.0,2.0,1671.8704174496638,4233.84,0.0,168567.0,1,1,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,84283.5,5,0,5,5_0 +3216,0.0,0.0,34.0,111,37,20,0.0,1409,0.0,0.0,0.0,1174.0,2.0,3.0,0.0,2.0,1.5,4053.0781945054055,646.88,0.0,47314.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31542.666666666668,4,0,4_0,4_0 +3217,8.0,15.0,93.0,111,77,60,0.0,14090,0.0,80.0,80.0,0.0,0.0,2.0,0.0,1.0,1.0,4369.436499268793,0.0,0.0,29939.0,5,4,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,29939.0,4,0,4_0,4_0 +3218,0.0,0.0,33.0,112,46,60,0.0,14091,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2435.8574587715066,0.0,0.0,50389.0,1,2,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23994.761904761905,4,0,4_0,4_0 +3219,0.0,24.0,78.0,111,75,70,0.0,14092,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1993.649683903639,0.0,0.0,43016.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28677.333333333332,4,0,4_0,4_0 +3220,14.0,14.0,78.0,112,78,41,0.0,14093,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1985.956745537229,2600.0,0.0,44995.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29996.666666666668,4,0,4_0,4_1 +3221,6.0,7.0,60.0,111,56,20,0.0,14096,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,3615.864526138281,0.0,0.0,19487.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,19487.0,3,0,3_1,3_0 +3222,0.0,12.0,29.0,111,43,33,2.0,14098,0.0,0.0,422.0,0.0,2.0,4.0,1.0,3.0,1.8,628.4985063505613,2184.0,2000.0,52271.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,3.0,0.0,29039.444444444445,4,0,4_0,4_0 +3223,0.0,0.0,54.0,400,64,50,0.0,14099,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1529.6970713189496,3172.0,0.0,56327.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28163.5,4,0,4_0,4_1 +3224,3.0,3.0,49.0,120,64,50,0.0,141,0.0,199998.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,1018.8348371952153,1560.0,0.0,27490.0,1,2,0,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,10996.0,1,0,1_0,1_0 +3225,2.0,13.0,78.0,300,72,50,0.0,1410,0.0,65.0,52.0,0.0,0.0,3.0,0.0,2.0,1.5,2601.7994065436883,0.0,0.0,14530.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,9686.666666666666,1,0,1_0,1_1 +3226,3.0,16.0,56.0,111,64,71,0.0,14101,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2334.8080321918596,0.0,0.0,29333.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14666.5,2,0,2_0,2_0 +3227,9.0,9.0,74.0,112,75,33,0.0,14102,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1701.6465047828333,0.0,0.0,57824.0,5,4,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,38549.333333333336,5,0,5,5_1 +3228,0.0,0.0,50.0,111,33,30,0.0,14103,0.0,0.0,0.0,750.0,2.0,3.0,1.0,3.0,2.0,2698.8502971797957,0.0,0.0,68260.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34130.0,5,0,5,5_0 +3229,4.0,4.0,71.0,120,78,70,0.0,14107,0.0,199998.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1574.8964470853487,0.0,0.0,25989.0,4,1,0,3.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,17326.0,2,0,2_0,2_0 +3230,9.0,22.0,60.0,112,63,50,0.0,14109,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3287.2676818622085,0.0,0.0,42487.0,1,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28324.666666666668,4,0,4_0,4_1 +3231,3.0,6.0,42.0,111,52,50,0.0,1411,0.0,480.0,20.0,0.0,1.0,3.0,1.0,3.0,2.0,2015.9285982488109,1282.32,0.0,48150.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24075.0,4,0,4_0,4_0 +3232,13.0,13.0,65.0,111,72,71,0.0,14112,0.0,0.0,99999.0,0.0,0.0,2.0,0.0,1.0,1.0,3904.293257761828,0.0,0.0,10790.0,5,1,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,0,3.0,0.0,10790.0,1,0,1_0,1_0 +3233,4.0,4.0,69.0,112,75,41,0.0,14113,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1530.4585155034756,2225.08,0.0,52517.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,35011.333333333336,5,0,5,5_0 +3234,0.0,12.0,50.0,111,37,12,0.0,14114,0.0,100.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3485.7897860154235,353.59999999999997,0.0,158992.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,75710.47619047618,5,0,5,5_0 +3235,0.0,0.0,82.0,120,77,71,0.0,14117,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2510.9155430257865,0.0,0.0,18031.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18031.0,2,0,2_0,2_0 +3236,2.0,20.0,71.0,111,75,33,0.0,1412,0.0,80.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1840.5441727939087,0.0,0.0,22376.0,5,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,22376.0,3,0,3_0,3_0 +3237,0.0,2.0,45.0,111,48,50,0.0,14122,0.0,99998.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1760.6577194576557,0.0,0.0,50975.0,1,2,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25487.5,4,0,4_0,4_0 +3238,2.0,3.0,70.0,221,75,31,0.0,14124,0.0,110.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1384.2637463825376,1749.28,0.0,57336.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,38224.0,5,0,5,5_0 +3239,4.0,13.0,47.0,111,54,42,0.0,14125,0.0,0.0,0.0,530.0,3.0,4.0,2.0,3.0,2.0,1732.2373802079846,0.0,0.0,28100.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14050.0,2,0,2_0,2_0 +3240,0.0,0.0,37.0,112,48,44,0.0,14126,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2335.0736248226685,3759.0800000000004,0.0,53981.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22492.083333333336,3,0,3_0,3_1 +3241,4.0,20.0,42.0,112,53,31,0.0,14127,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1971.8234054205097,0.0,0.0,33638.0,1,2,8,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,2.0,0.0,18687.777777777777,2,0,2_0,2_1 +3242,8.0,8.0,52.0,112,37,41,0.0,14128,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2939.3498499326115,4167.799999999999,0.0,58414.0,1,2,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,38942.666666666664,5,0,5,5_0 +3243,2.0,3.0,45.0,111,37,31,0.0,14129,0.0,610.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,1125.927119701148,3308.76,0.0,40382.0,1,1,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25238.75,4,0,4_0,4_0 +3244,2.0,14.0,79.0,300,77,50,0.0,1413,0.0,400.0,100.0,0.0,0.0,2.0,0.0,1.0,1.0,2615.72808081978,0.0,0.0,18340.0,5,3,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,18340.0,2,0,2_1,2_1 +3245,0.0,0.0,42.0,111,68,71,0.0,14132,0.0,0.0,0.0,0.0,1.0,3.0,4.0,6.0,2.9,2467.751937823347,1307.8,0.0,26738.0,4,3,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9220.0,1,0,1_1,1_0 +3246,19.0,23.0,56.0,112,22,30,0.0,14133,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,3733.1855437457843,0.0,0.0,18519.0,1,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18519.0,2,0,2_0,2_1 +3247,6.0,7.0,76.0,211,75,50,0.0,14134,0.0,20.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1828.1171934915212,0.0,0.0,26241.0,5,1,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,17494.0,2,0,2_0,2_0 +3248,5.0,8.0,56.0,111,62,50,0.0,14135,0.0,0.0,170.0,432.0,1.0,2.0,0.0,1.0,1.0,2642.330382505037,0.0,0.0,18958.0,1,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,18958.0,3,0,3_0,3_0 +3249,1.0,6.0,70.0,111,77,70,0.0,14136,0.0,0.0,150.0,414.0,0.0,2.0,0.0,1.0,1.0,2521.3020873567134,0.0,0.0,23432.0,5,3,7,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,23432.0,3,0,3_1,3_0 +3250,4.0,13.0,78.0,300,75,60,0.0,14137,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1664.018140920778,0.0,0.0,58060.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,38706.666666666664,5,0,5,5_0 +3251,0.0,0.0,43.0,111,85,71,0.0,14138,0.0,0.0,0.0,50.0,0.0,2.0,0.0,1.0,1.0,3322.776730519688,0.0,0.0,13360.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13360.0,1,0,1_1,1_0 +3252,2.0,2.0,65.0,112,64,71,0.0,14139,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1503.4314213067219,0.0,0.0,33211.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22140.666666666668,3,0,3_0,3_1 +3253,3.0,3.0,58.0,111,37,71,0.0,1414,0.0,160.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2533.2863171495546,2242.24,0.0,83900.0,1,1,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,55933.333333333336,5,0,5,5_0 +3254,12.0,12.0,33.0,111,42,30,0.0,14141,0.0,132.0,0.0,310.0,1.0,1.0,0.0,1.0,1.0,3105.553058464957,0.0,0.0,28540.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,28540.0,4,0,4_0,4_0 +3255,2.0,2.0,82.0,111,78,71,0.0,14142,0.0,0.0,0.0,650.0,0.0,3.0,0.0,2.0,1.5,3542.613108909741,0.0,0.0,20476.0,5,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,13650.666666666666,1,0,1_0,1_0 +3256,2.0,2.0,28.0,112,63,50,0.0,14143,0.0,0.0,180.0,0.0,2.0,4.0,0.0,2.0,1.5,497.3259032142721,0.0,0.0,44515.0,1,2,9,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,29676.666666666668,4,0,4_0,4_1 +3257,3.0,3.0,34.0,111,63,50,0.0,14144,0.0,0.0,99999.0,0.0,1.0,3.0,0.0,1.0,1.0,2523.492542253864,2496.0,0.0,17140.0,1,2,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17140.0,2,0,2_0,2_0 +3258,2.0,2.0,54.0,111,42,31,0.0,14145,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,1150.2024288615012,1561.04,0.0,59403.0,1,2,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23761.2,3,0,3_0,3_0 +3259,11.0,11.0,52.0,112,38,60,0.0,14146,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1588.0070404208818,2496.52,0.0,72712.0,1,1,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,36356.0,5,0,5,5_0 +3260,0.0,15.0,54.0,112,48,50,2.0,14147,0.0,0.0,100.0,0.0,4.0,6.0,2.0,4.0,2.5,2431.7808954600855,4279.6,1500.0,83123.0,1,1,10,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,33249.2,5,0,5,5_0 +3261,2.0,2.0,35.0,300,56,43,0.0,14148,0.0,0.0,90.0,0.0,2.0,3.0,1.0,3.0,1.8,1991.5920408870345,3484.0,0.0,32923.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,18290.555555555555,2,0,2_0,2_1 +3262,5.0,10.0,55.0,111,68,50,0.0,14149,0.0,100199.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2240.4249775902003,2340.0,0.0,54580.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,27290.0,4,0,4_0,4_0 +3263,0.0,0.0,45.0,120,13,12,0.0,1415,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1786.1825974703575,0.0,0.0,52275.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20910.0,3,0,3_0,3_1 +3264,13.0,13.0,53.0,400,52,50,0.0,14150,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2492.417441188043,0.0,0.0,22770.0,1,2,0,0.0,1,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,22770.0,3,0,3_0,3_1 +3265,15.0,15.0,51.0,112,52,50,0.0,14151,0.0,600.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,644.3034145716114,1560.0,0.0,22308.0,1,3,9,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,17160.0,2,0,2_1,2_1 +3266,4.0,10.0,89.0,112,71,70,0.0,14153,0.0,0.0,150.0,479.0,0.0,2.0,0.0,1.0,1.0,3549.1051633404477,0.0,0.0,14613.0,5,3,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14613.0,2,0,2_0,2_1 +3267,6.0,6.0,73.0,112,75,50,0.0,14155,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1211.9224635637258,2080.0,0.0,33590.0,5,1,6,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,22393.333333333332,3,0,3_0,3_1 +3268,3.0,6.0,43.0,112,62,42,0.0,14156,0.0,0.0,75.0,0.0,1.0,5.0,3.0,5.0,2.6,1910.470677580077,4004.52,0.0,34597.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,13306.538461538461,1,0,1_1,1_1 +3269,4.0,16.0,24.0,111,47,20,0.0,14157,0.0,0.0,0.0,420.0,4.0,5.0,3.0,5.0,3.0,1846.4678532669775,3900.0,0.0,51219.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,17073.0,2,0,2_1,2_0 +3270,0.0,0.0,76.0,111,78,71,0.0,14158,0.0,0.0,0.0,13.0,0.0,1.0,0.0,1.0,1.0,2817.5617159291332,0.0,0.0,12774.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12774.0,1,0,1_1,1_0 +3271,2.0,5.0,77.0,111,72,50,0.0,14160,0.0,0.0,140.0,0.0,0.0,4.0,0.0,2.0,1.5,3560.0365798450157,0.0,0.0,28311.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,18874.0,3,0,3_0,3_0 +3272,14.0,14.0,67.0,300,78,70,0.0,14162,0.0,60.0,50.0,300.0,0.0,2.0,0.0,2.0,1.5,3243.6788426335934,2704.0,0.0,18875.0,5,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,12583.333333333334,1,0,1_0,1_1 +3273,0.0,0.0,55.0,111,47,12,0.0,14164,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2225.6076868297587,0.0,0.0,75275.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30110.0,4,0,4_0,4_0 +3274,0.0,0.0,56.0,400,47,50,0.0,14165,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2127.6443764584133,2600.0,0.0,13080.0,4,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13080.0,1,0,1_0,1_1 +3275,8.0,8.0,40.0,111,56,71,0.0,14166,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,2.0,843.2090329271548,0.0,0.0,23904.0,4,3,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,11952.0,1,0,1_1,1_0 +3276,8.0,8.0,49.0,120,62,50,0.0,14168,0.0,70.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2113.7042710620262,0.0,0.0,59932.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,39954.666666666664,5,0,5,5_1 +3277,0.0,0.0,79.0,112,77,50,0.0,14169,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2672.605915960271,0.0,0.0,25547.0,5,1,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25547.0,4,0,4_0,4_0 +3278,0.0,0.0,55.0,112,64,50,0.0,1417,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2426.978008008175,3061.76,0.0,20580.0,1,2,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20580.0,3,0,3_0,3_1 +3279,6.0,9.0,37.0,111,37,31,0.0,14170,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1532.7036939626446,0.0,0.0,81590.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,45327.777777777774,5,0,5,5_0 +3280,9.0,9.0,55.0,111,56,50,0.0,14173,0.0,300.0,0.0,119.0,1.0,3.0,1.0,2.0,1.5,756.6149942903805,1040.0,0.0,15801.0,1,3,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,10534.0,1,0,1_1,1_0 +3281,15.0,15.0,62.0,111,77,50,0.0,14174,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2388.7200174667946,0.0,0.0,37761.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25174.0,4,0,4_0,4_0 +3282,0.0,0.0,78.0,112,75,70,0.0,14176,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2664.701278371235,3278.08,0.0,62920.0,5,1,9,2.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,41946.666666666664,5,0,5,5_0 +3283,4.0,6.0,31.0,111,54,30,0.0,14178,0.0,260.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3729.778562961974,0.0,0.0,17126.0,4,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,17126.0,2,0,2_1,2_0 +3284,0.0,0.0,24.0,111,52,43,0.0,1418,0.0,0.0,0.0,565.0,2.0,2.0,0.0,2.0,1.5,1400.0773737919098,2600.0,0.0,35390.0,1,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23593.333333333332,3,0,3_0,3_0 +3285,12.0,12.0,66.0,111,77,70,0.0,14182,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2248.2103202558847,0.0,0.0,12741.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12741.0,1,0,1_1,1_0 +3286,0.0,0.0,60.0,112,45,42,0.0,14186,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2083.505971697931,4208.360000000001,0.0,36678.0,1,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24452.0,4,0,4_0,4_1 +3287,3.0,12.0,31.0,111,38,12,0.0,14188,0.0,0.0,630.0,600.0,1.0,1.0,0.0,1.0,1.0,5948.244140572187,0.0,0.0,63117.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,63117.0,5,0,5,5_0 +3288,3.0,4.0,34.0,111,38,20,0.0,14189,0.0,220.0,0.0,490.0,2.0,2.0,0.0,2.0,1.5,4194.1945098169945,0.0,0.0,24710.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,16473.333333333332,2,0,2_0,2_0 +3289,0.0,0.0,57.0,211,63,31,0.0,1419,0.0,0.0,0.0,577.0,1.0,3.0,0.0,2.0,1.5,2764.8474825309327,0.0,0.0,51731.0,1,3,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,34487.333333333336,5,0,5,5_0 +3290,1.0,11.0,48.0,111,38,31,0.0,14190,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1807.7797130120955,5198.4400000000005,0.0,86715.0,1,1,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,43357.5,5,0,5,5_0 +3291,0.0,0.0,69.0,111,78,50,0.0,14191,0.0,0.0,0.0,410.0,0.0,4.0,0.0,2.0,1.5,2723.7365092738337,0.0,0.0,31387.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20924.666666666668,3,0,3_0,3_0 +3292,0.0,0.0,42.0,111,46,41,0.0,14192,0.0,0.0,0.0,600.0,1.0,3.0,0.0,1.0,1.0,2972.3045310339876,0.0,0.0,122240.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,122240.0,5,0,5,5_0 +3293,7.0,10.0,89.0,300,78,41,0.0,14193,0.0,75.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2946.044596634848,1560.0,0.0,22456.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22456.0,3,0,3_0,3_1 +3294,2.0,5.0,72.0,112,72,41,0.0,14195,0.0,99999.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1516.675849033005,3595.8,0.0,45117.0,5,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,30078.0,4,0,4_0,4_1 +3295,10.0,10.0,50.0,221,34,10,0.0,14196,0.0,0.0,250.0,0.0,1.0,4.0,1.0,2.0,1.5,3121.0141362040786,2080.0,0.0,154487.0,1,1,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,102991.33333333333,5,0,5,5_0 +3296,0.0,0.0,30.0,112,56,71,0.0,14197,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1165.106506796124,1040.0,0.0,13840.0,1,3,9,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10646.153846153846,1,0,1_1,1_0 +3297,3.0,7.0,53.0,111,52,71,0.0,14198,0.0,0.0,0.0,651.0,1.0,6.0,2.0,4.0,2.3,2321.2905258851115,0.0,0.0,31398.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13651.304347826088,1,0,1_1,1_0 +3298,12.0,12.0,52.0,111,37,31,0.0,14199,0.0,0.0,0.0,650.0,1.0,1.0,0.0,1.0,1.0,4881.391993686936,7113.6,0.0,35680.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,35680.0,5,0,5,5_0 +3299,1.0,7.0,76.0,111,77,50,0.0,142,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2147.6121337352038,2265.64,0.0,32853.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21902.0,3,0,3_0,3_0 +3300,3.0,7.0,77.0,112,86,41,0.0,1420,0.0,1350.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2154.414378168639,0.0,0.0,30442.0,6,1,8,3.0,1,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,30442.0,4,0,4_0,4_0 +3301,2.0,7.0,18.0,111,67,50,0.0,14201,0.0,150.0,0.0,0.0,1.0,4.0,4.0,6.0,3.1,658.2109355729317,0.0,0.0,39765.0,1,3,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,12827.41935483871,1,0,1_1,1_0 +3302,1.0,1.0,39.0,112,55,43,2.0,14202,0.0,100.0,0.0,0.0,1.0,6.0,3.0,4.0,2.1,510.5325720843878,3640.0,4000.0,31874.0,1,2,6,0.0,2,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,15178.095238095237,2,0,2_1,2_1 +3303,11.0,11.0,65.0,111,77,70,0.0,14204,0.0,0.0,0.0,42.0,0.0,5.0,0.0,1.0,1.0,2208.4707461425605,0.0,0.0,19204.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,19204.0,3,0,3_1,3_0 +3304,0.0,0.0,86.0,300,78,71,0.0,14205,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2568.182540940156,1770.6,0.0,17740.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17740.0,2,0,2_0,2_1 +3305,2.0,11.0,45.0,111,63,50,0.0,14206,0.0,250.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3860.9955639683403,0.0,0.0,9006.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,9006.0,1,0,1_1,1_0 +3306,5.0,7.0,80.0,111,77,71,0.0,14207,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,2890.527232477737,0.0,0.0,37120.0,5,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14848.0,2,0,2_0,2_0 +3307,2.0,2.0,51.0,112,22,41,0.0,14209,0.0,0.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,4066.0762519884597,0.0,0.0,55156.0,1,1,8,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27578.0,4,0,4_0,4_1 +3308,3.0,6.0,51.0,111,52,41,0.0,14210,0.0,300.0,0.0,273.0,1.0,3.0,1.0,2.0,1.3,597.7646812579105,587.6,0.0,22814.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,17549.23076923077,2,0,2_1,2_0 +3309,1.0,1.0,56.0,111,55,50,1.0,14211,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2103.488950575897,3121.04,33200.0,12250.0,1,4,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,8166.666666666667,1,0,1_0,1_0 +3310,4.0,6.0,72.0,111,22,10,0.0,14213,0.0,15.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2063.7729679295944,0.0,0.0,15563.0,1,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,10375.333333333334,1,0,1_0,1_0 +3311,0.0,0.0,73.0,111,72,44,0.0,14215,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1465.794013338227,0.0,0.0,38957.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25971.333333333332,4,0,4_0,4_0 +3312,8.0,10.0,85.0,300,75,33,0.0,14216,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4415.893713079842,0.0,0.0,11523.0,5,3,0,1.0,1,3.0,0.0,0.0,0,1,0,0,0,1,1.0,2.0,11523.0,1,0,1_1,1_0 +3313,1.0,8.0,54.0,112,63,31,2.0,14217,0.0,0.0,0.0,550.0,1.0,1.0,0.0,1.0,1.0,3458.8609298920187,0.0,6500.0,17480.0,1,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17480.0,2,0,2_0,2_0 +3314,0.0,0.0,27.0,300,52,50,0.0,14218,0.0,0.0,0.0,500.0,1.0,3.0,0.0,1.0,1.0,1608.691057897458,2854.7999999999997,0.0,22587.0,1,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22587.0,3,0,3_0,3_0 +3315,3.0,8.0,62.0,111,78,50,0.0,14219,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2710.3153404972436,0.0,0.0,9624.0,5,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,9624.0,1,0,1_1,1_0 +3316,15.0,15.0,60.0,112,77,50,0.0,1422,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,6933.947625356833,0.0,0.0,9722.0,7,1,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,9722.0,1,0,1_0,1_0 +3317,1.0,1.0,88.0,112,75,60,1.0,14220,0.0,300.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2135.9995022880557,0.0,18700.0,42917.0,5,1,10,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28611.333333333332,4,0,4_0,4_0 +3318,4.0,10.0,37.0,111,37,50,0.0,14222,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2252.6818363407606,4028.44,0.0,51753.0,1,2,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,34502.0,5,0,5,5_0 +3319,8.0,9.0,34.0,112,46,50,0.0,14223,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3120.2840605298466,3135.6000000000004,0.0,52733.0,1,2,5,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,29296.11111111111,4,0,4_0,4_1 +3320,5.0,9.0,23.0,111,55,31,0.0,14224,0.0,0.0,0.0,160.0,1.0,1.0,0.0,1.0,1.0,3681.5108733417583,3402.88,0.0,19562.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,19562.0,3,0,3_1,3_0 +3321,0.0,0.0,40.0,111,34,30,0.0,14225,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,525.7099012127733,2600.0,0.0,26487.0,1,2,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16554.375,2,0,2_0,2_0 +3322,15.0,15.0,28.0,111,47,31,0.0,14227,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3022.5582761577834,0.0,0.0,49844.0,1,2,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,33229.333333333336,5,0,5,5_0 +3323,0.0,0.0,56.0,111,37,12,0.0,14228,0.0,0.0,0.0,0.0,2.0,10.0,0.0,2.0,1.5,2270.0849995064714,0.0,0.0,462602.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,308401.3333333333,5,0,5,5_0 +3324,7.0,7.0,42.0,111,37,44,0.0,14229,0.0,450.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2984.256783112631,1040.0,0.0,28047.0,1,2,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,28047.0,4,0,4_0,4_0 +3325,6.0,6.0,46.0,111,47,31,0.0,1423,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2237.5516765281814,1575.6000000000001,0.0,62085.0,1,2,9,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,31042.5,4,0,4_0,4_0 +3326,4.0,6.0,32.0,111,38,31,0.0,14230,0.0,200.0,0.0,800.0,2.0,5.0,0.0,2.0,1.5,3177.689861031322,2080.0,0.0,48483.0,1,3,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,32322.0,5,0,5,5_0 +3327,1.0,11.0,74.0,111,75,71,2.0,14231,0.0,0.0,0.0,712.0,0.0,1.0,0.0,1.0,1.0,6505.333405407951,0.0,3000.0,25423.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25423.0,4,0,4_0,4_0 +3328,0.0,10.0,71.0,300,77,30,0.0,14232,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2975.1801066400794,0.0,0.0,12175.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12175.0,1,0,1_0,1_1 +3329,1.0,3.0,32.0,111,85,60,2.0,14233,0.0,700.0,0.0,0.0,0.0,4.0,3.0,4.0,1.9,472.3459846983957,0.0,8300.0,15320.0,6,2,7,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,8063.1578947368425,1,0,1_1,1_0 +3330,12.0,21.0,61.0,300,62,70,0.0,14234,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2046.885949102992,0.0,0.0,20820.0,1,2,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,20820.0,3,0,3_0,3_1 +3331,1.0,1.0,36.0,111,55,42,0.0,14235,0.0,800.0,0.0,33.0,1.0,3.0,1.0,2.0,1.3,976.8200042388605,1221.48,0.0,24940.0,1,3,7,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,19184.615384615383,3,0,3_1,3_0 +3332,1.0,9.0,68.0,111,74,60,0.0,14237,0.0,0.0,50.0,0.0,0.0,6.0,0.0,2.0,1.5,1549.545670986333,2177.24,0.0,55217.0,5,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,36811.333333333336,5,0,5,5_0 +3333,0.0,0.0,22.0,111,63,50,0.0,14238,0.0,0.0,0.0,174.0,1.0,2.0,0.0,1.0,1.0,3101.109066721213,0.0,0.0,17544.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17544.0,2,0,2_1,2_0 +3334,2.0,7.0,59.0,300,78,50,0.0,1424,0.0,299997.0,0.0,0.0,0.0,5.0,1.0,3.0,1.8,2889.3898260652772,2080.0,0.0,39220.0,5,3,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,21788.888888888887,3,0,3_0,3_1 +3335,0.0,0.0,41.0,111,33,31,0.0,14242,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1757.4083585219946,4453.8,0.0,74274.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,35368.57142857143,5,0,5,5_0 +3336,2.0,3.0,52.0,400,22,50,0.0,14243,0.0,520.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1944.1585349853315,0.0,0.0,29089.0,1,2,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29089.0,4,0,4_0,4_1 +3337,3.0,3.0,24.0,111,42,44,0.0,14244,0.0,0.0,0.0,661.0,1.0,2.0,0.0,2.0,1.5,5703.476051548948,2773.6800000000003,0.0,40866.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,27244.0,4,0,4_1,4_0 +3338,4.0,4.0,36.0,111,31,10,0.0,14247,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2099.1168543991166,0.0,0.0,85531.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,40729.04761904762,5,0,5,5_0 +3339,1.0,11.0,69.0,221,77,71,2.0,14248,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1819.619152899902,0.0,2000.0,33435.0,5,1,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22290.0,3,0,3_0,3_0 +3340,0.0,0.0,31.0,111,52,43,0.0,1425,0.0,0.0,0.0,0.0,1.0,1.0,2.0,3.0,1.6,1693.4592965452412,0.0,0.0,24630.0,1,4,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15393.75,2,0,2_0,2_0 +3341,0.0,0.0,40.0,111,47,50,0.0,14250,0.0,0.0,0.0,385.0,1.0,3.0,0.0,1.0,1.0,3473.143100300706,0.0,0.0,18861.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18861.0,3,0,3_0,3_0 +3342,5.0,5.0,68.0,111,75,50,0.0,14251,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2650.3641762413417,0.0,0.0,37810.0,5,1,8,6.0,4,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,18905.0,3,0,3_0,3_0 +3343,2.0,2.0,67.0,211,74,41,0.0,14255,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1534.925616143607,1560.0,0.0,42028.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28018.666666666668,4,0,4_0,4_0 +3344,1.0,1.0,39.0,112,46,31,0.0,14256,0.0,1300.0,30.0,0.0,1.0,3.0,1.0,2.0,1.3,469.76021580775665,0.0,0.0,18548.0,1,2,8,2.0,2,2.0,1.0,1.0,0,1,0,0,0,1,1.0,1.0,14267.692307692307,2,0,2_1,2_0 +3345,11.0,14.0,54.0,111,42,20,0.0,14257,0.0,120.0,50.0,0.0,1.0,4.0,2.0,3.0,2.0,1378.044724455896,1242.8,0.0,36282.0,1,2,7,5.0,2,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,18141.0,2,0,2_0,2_0 +3346,0.0,6.0,34.0,400,13,12,2.0,14258,0.0,99999.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3180.8260899389593,0.0,9000.0,-2140.0,1,3,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,-2140.0,1,0,1_0,1_1 +3347,0.0,0.0,28.0,111,63,71,0.0,14259,0.0,0.0,0.0,267.0,1.0,2.0,1.0,2.0,1.3,4217.943988354962,0.0,0.0,14141.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10877.692307692307,1,0,1_1,1_0 +3348,0.0,0.0,49.0,111,48,50,0.0,1426,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1394.3536426629225,1820.0,0.0,42114.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20054.285714285714,3,0,3_0,3_0 +3349,4.0,4.0,56.0,111,22,50,0.0,14261,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,3278.9882436538305,0.0,0.0,24770.0,1,1,4,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24770.0,4,0,4_0,4_0 +3350,2.0,11.0,35.0,111,46,20,0.0,14263,0.0,1140.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3480.0870508742537,0.0,0.0,26498.0,1,3,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,17665.333333333332,2,0,2_0,2_0 +3351,5.0,11.0,72.0,221,74,44,0.0,14264,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1813.462821519107,3102.3199999999997,0.0,49977.0,5,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,33318.0,5,0,5,5_0 +3352,1.0,1.0,53.0,111,43,10,1.0,14265,0.0,600.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3099.8021941390807,1040.0,18500.0,27946.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,18630.666666666668,2,0,2_0,2_0 +3353,2.0,6.0,52.0,112,63,71,0.0,14266,0.0,200.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2706.9996353106762,0.0,0.0,30754.0,1,2,9,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20502.666666666668,3,0,3_0,3_1 +3354,4.0,4.0,51.0,111,33,60,0.0,14267,0.0,0.0,1300.0,0.0,1.0,6.0,1.0,3.0,1.8,2263.2907331573692,0.0,0.0,73599.0,1,1,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,40888.333333333336,5,0,5,5_0 +3355,2.0,7.0,51.0,111,85,71,0.0,14268,0.0,0.0,0.0,65.0,0.0,2.0,0.0,1.0,1.0,3609.0858137184728,0.0,0.0,14942.0,7,3,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,14942.0,2,0,2_1,2_0 +3356,4.0,19.0,71.0,111,77,70,0.0,14269,0.0,0.0,0.0,438.0,0.0,2.0,0.0,1.0,1.0,2924.7890909581024,0.0,0.0,14683.0,5,3,6,5.0,1,3.0,0.0,0.0,0,0,1,0,0,1,2.0,1.0,14683.0,2,0,2_1,2_0 +3357,11.0,11.0,26.0,400,54,31,0.0,1427,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2918.4050591560895,0.0,0.0,12243.0,1,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8162.0,1,0,1_0,1_1 +3358,0.0,0.0,43.0,120,69,50,0.0,14270,0.0,0.0,0.0,57.0,5.0,4.0,4.0,6.0,3.5,1779.0202014026113,3120.0,0.0,37200.0,4,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10628.57142857143,1,0,1_1,1_0 +3359,7.0,9.0,69.0,111,77,71,0.0,14271,0.0,70.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4308.702611802013,0.0,0.0,17967.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,17967.0,2,0,2_0,2_0 +3360,4.0,6.0,37.0,111,62,50,0.0,14272,0.0,100.0,0.0,520.0,2.0,3.0,2.0,4.0,2.1,3085.957813357209,0.0,0.0,28548.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13594.285714285714,1,0,1_1,1_0 +3361,6.0,10.0,52.0,111,62,50,0.0,14274,0.0,0.0,0.0,449.0,1.0,5.0,1.0,2.0,1.5,597.8133379388727,0.0,0.0,25511.0,1,3,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,17007.333333333332,2,0,2_1,2_0 +3362,15.0,21.0,35.0,111,46,20,0.0,14275,0.0,0.0,50.0,376.0,2.0,3.0,1.0,3.0,1.8,3054.7998408243434,2366.0,0.0,46185.0,1,3,7,6.0,4,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,25658.333333333332,4,0,4_0,4_0 +3363,3.0,3.0,33.0,111,46,71,0.0,14276,0.0,300.0,0.0,253.0,1.0,1.0,0.0,1.0,1.0,6458.292869316716,0.0,0.0,18180.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,18180.0,2,0,2_0,2_0 +3364,0.0,0.0,70.0,400,31,31,0.0,14278,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1313.5492836428482,0.0,0.0,47573.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31715.333333333332,4,0,4_0,4_0 +3365,3.0,4.0,42.0,111,43,33,0.0,14279,0.0,0.0,0.0,390.0,1.0,2.0,0.0,1.0,1.0,2661.881875877781,0.0,0.0,30929.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30929.0,4,0,4_0,4_0 +3366,12.0,12.0,43.0,112,21,31,0.0,14280,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2148.781142962786,0.0,0.0,146206.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,69621.90476190476,5,0,5,5_1 +3367,1.0,17.0,45.0,111,63,71,0.0,14281,0.0,0.0,0.0,0.0,1.0,1.0,1.0,3.0,1.8,3731.613998077194,0.0,0.0,23710.0,4,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,13172.222222222223,1,0,1_1,1_0 +3368,3.0,3.0,35.0,111,64,50,0.0,14283,0.0,0.0,300.0,0.0,2.0,5.0,2.0,4.0,2.1,1944.134482723508,0.0,0.0,36415.0,1,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17340.47619047619,2,0,2_0,2_0 +3369,0.0,0.0,76.0,111,78,50,0.0,14284,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2386.143589702262,2635.88,0.0,15392.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15392.0,2,0,2_0,2_0 +3370,12.0,12.0,40.0,112,54,42,0.0,14285,0.0,0.0,0.0,231.0,1.0,4.0,2.0,3.0,1.8,1184.0341932847698,2184.0,0.0,39994.0,1,3,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,22218.888888888887,3,0,3_1,3_1 +3371,9.0,9.0,74.0,111,74,44,0.0,14286,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2374.295183132822,0.0,0.0,35667.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,35667.0,5,0,5,5_0 +3372,3.0,3.0,64.0,111,77,50,0.0,14287,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1849.648617991438,0.0,0.0,32672.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21781.333333333332,3,0,3_0,3_0 +3373,0.0,0.0,84.0,111,78,71,0.0,14288,0.0,0.0,0.0,190.0,0.0,3.0,0.0,1.0,1.0,3645.332132007905,0.0,0.0,12651.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12651.0,1,0,1_1,1_0 +3374,2.0,3.0,59.0,120,37,50,0.0,14289,0.0,0.0,125.0,0.0,2.0,5.0,0.0,2.0,1.5,1762.6953326562823,2236.0,0.0,56762.0,1,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,37841.333333333336,5,0,5,5_0 +3375,0.0,0.0,70.0,112,78,50,0.0,14290,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3165.2179297143293,0.0,0.0,24410.0,5,1,6,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24410.0,4,0,4_0,4_0 +3376,1.0,15.0,80.0,112,75,41,2.0,14291,0.0,0.0,350.0,0.0,0.0,9.0,0.0,1.0,1.0,2183.403629003215,0.0,700.0,9830.0,5,4,7,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,9830.0,1,0,1_0,1_1 +3377,12.0,12.0,76.0,112,86,70,0.0,14295,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1448.359979793216,0.0,0.0,17158.0,5,1,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17158.0,2,0,2_0,2_0 +3378,5.0,5.0,40.0,300,64,50,0.0,14299,0.0,0.0,0.0,689.0,2.0,6.0,2.0,4.0,2.1,2547.063079984532,3380.0,0.0,38219.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18199.52380952381,2,0,2_0,2_1 +3379,6.0,6.0,44.0,111,37,31,0.0,143,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1874.2153931630617,0.0,0.0,63781.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,42520.666666666664,5,0,5,5_0 +3380,7.0,7.0,39.0,111,68,71,0.0,1430,0.0,520.0,0.0,5.0,3.0,4.0,3.0,4.0,2.5,775.9540567623944,3902.6,0.0,23820.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,9528.0,1,0,1_1,1_0 +3381,0.0,0.0,56.0,111,37,12,0.0,14302,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1342.2197675460852,0.0,0.0,76066.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,50710.666666666664,5,0,5,5_0 +3382,0.0,1.0,64.0,111,46,20,0.0,14304,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,2149.6083158134293,3952.0,0.0,73504.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,49002.666666666664,5,0,5,5_0 +3383,2.0,6.0,62.0,111,34,10,0.0,14305,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1844.6913122816425,0.0,0.0,56670.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22668.0,3,0,3_0,3_0 +3384,0.0,0.0,36.0,120,56,50,0.0,14307,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,533.8547659296314,0.0,0.0,21800.0,1,3,0,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9478.260869565218,1,0,1_0,1_0 +3385,3.0,10.0,76.0,111,78,50,0.0,14308,0.0,500.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,2186.543899717598,0.0,0.0,21590.0,5,1,6,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,14393.333333333334,2,0,2_0,2_0 +3386,0.0,0.0,88.0,111,78,70,0.0,14309,0.0,0.0,0.0,210.0,0.0,1.0,0.0,1.0,1.0,2820.8685397010227,0.0,0.0,15610.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15610.0,2,0,2_0,2_0 +3387,2.0,7.0,53.0,112,55,50,0.0,14310,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3054.799485256654,3559.3999999999996,0.0,37430.0,1,3,9,1.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,18715.0,2,0,2_0,2_0 +3388,0.0,0.0,39.0,111,63,50,0.0,14311,0.0,0.0,0.0,597.0,2.0,4.0,3.0,5.0,2.6,1512.5628536272516,0.0,0.0,41292.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15881.538461538461,2,0,2_1,2_0 +3389,5.0,13.0,45.0,112,34,20,0.0,14312,0.0,50.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1733.2763074081238,2808.0,0.0,57112.0,1,1,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24831.304347826088,4,0,4_0,4_1 +3390,2.0,11.0,53.0,111,45,42,0.0,14313,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1809.6276730153716,2446.08,0.0,52915.0,1,2,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,35276.666666666664,5,0,5,5_0 +3391,4.0,4.0,66.0,300,75,41,0.0,14314,0.0,1200.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1592.9793900620816,0.0,0.0,26603.0,5,1,0,1.0,1,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,26603.0,4,0,4_0,4_0 +3392,0.0,22.0,81.0,300,71,71,0.0,14315,0.0,100.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2945.5473506441303,1456.0,0.0,14622.0,5,4,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,14622.0,2,0,2_0,2_1 +3393,3.0,3.0,68.0,111,78,70,0.0,14317,0.0,60.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1744.6394377355389,0.0,0.0,30842.0,5,1,5,4.0,3,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,20561.333333333332,3,0,3_0,3_0 +3394,6.0,8.0,28.0,120,47,30,0.0,1432,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3810.4454501130595,0.0,0.0,21001.0,1,2,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21001.0,3,0,3_0,3_0 +3395,13.0,13.0,68.0,111,77,71,0.0,14321,0.0,0.0,0.0,312.0,0.0,3.0,0.0,1.0,1.0,3391.8334352517763,0.0,0.0,17634.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,17634.0,2,0,2_0,2_0 +3396,2.0,2.0,47.0,111,64,43,0.0,14322,0.0,370.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,3051.7210874327434,0.0,0.0,47160.0,1,2,6,4.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,16842.857142857145,2,0,2_0,2_0 +3397,2.0,7.0,30.0,111,48,43,2.0,14323,0.0,500.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1055.2969555364512,0.0,6500.0,48354.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,26863.333333333332,4,0,4_0,4_0 +3398,2.0,2.0,45.0,112,54,41,0.0,14324,0.0,600.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,754.6291282019648,0.0,0.0,43385.0,1,3,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21692.5,3,0,3_0,3_0 +3399,2.0,5.0,29.0,111,22,20,0.0,14325,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2949.173861640881,0.0,0.0,26325.0,1,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,26325.0,4,0,4_1,4_0 +3400,1.0,4.0,51.0,111,48,50,2.0,14328,0.0,1820.0,0.0,284.0,2.0,2.0,1.0,3.0,2.0,965.5732296930511,2340.0,9500.0,44688.0,1,3,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,22344.0,3,0,3_0,3_0 +3401,3.0,7.0,30.0,111,67,43,0.0,14329,0.0,150.0,0.0,161.0,2.0,4.0,2.0,4.0,2.1,2102.971435263824,0.0,0.0,42236.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,20112.38095238095,3,0,3_1,3_0 +3402,9.0,9.0,80.0,111,74,31,0.0,1433,0.0,140.0,0.0,811.0,1.0,4.0,0.0,2.0,1.5,1528.76291101148,0.0,0.0,18757.0,5,3,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,12504.666666666666,1,0,1_1,1_0 +3403,3.0,3.0,45.0,111,52,50,0.0,14330,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,2390.403025908351,2083.12,0.0,34393.0,1,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19107.222222222223,3,0,3_0,3_0 +3404,4.0,4.0,52.0,111,38,12,0.0,14331,0.0,0.0,750.0,0.0,2.0,2.0,2.0,4.0,2.5,2381.9840145632456,0.0,0.0,148073.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,59229.2,5,0,5,5_0 +3405,5.0,12.0,49.0,111,34,10,0.0,14332,0.0,100239.0,0.0,390.0,2.0,3.0,1.0,3.0,2.0,1387.460405926735,1041.04,0.0,89907.0,1,3,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,0.0,3.0,44953.5,5,0,5,5_0 +3406,6.0,6.0,47.0,111,85,71,0.0,14333,0.0,0.0,0.0,23.0,1.0,6.0,6.0,8.0,3.7,2605.0034452389136,1040.0,0.0,48206.0,6,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,13028.648648648648,1,0,1_1,1_0 +3407,6.0,15.0,83.0,111,86,70,0.0,14334,0.0,0.0,99999.0,0.0,0.0,5.0,1.0,2.0,1.5,1463.7651001169115,0.0,0.0,11382.0,5,1,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,7588.0,1,0,1_0,1_0 +3408,7.0,9.0,43.0,111,47,31,0.0,14335,0.0,0.0,100.0,0.0,2.0,4.0,2.0,4.0,2.1,2630.846764928927,0.0,0.0,47817.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,22770.0,3,0,3_0,3_0 +3409,4.0,8.0,52.0,400,69,50,0.0,14336,0.0,0.0,100.0,137.0,1.0,3.0,1.0,2.0,1.3,905.2257043672322,1040.0,0.0,15610.0,4,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,12007.692307692307,1,0,1_1,1_1 +3410,7.0,7.0,24.0,300,62,30,0.0,14338,0.0,0.0,0.0,144.0,1.0,3.0,0.0,1.0,1.0,923.6542147868479,1951.56,0.0,7424.0,2,3,0,1.0,1,3.0,0.0,0.0,0,1,0,0,0,1,1.0,2.0,7424.0,1,0,1_1,1_0 +3411,3.0,3.0,67.0,112,22,31,0.0,14339,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1451.6464270747244,0.0,0.0,34730.0,1,2,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23153.333333333332,3,0,3_0,3_1 +3412,3.0,7.0,64.0,112,77,60,0.0,14340,0.0,400.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1868.0632399236065,3718.0,0.0,27992.0,5,1,4,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18661.333333333332,2,0,2_0,2_1 +3413,0.0,0.0,46.0,112,67,71,0.0,14343,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3682.7127249606965,1300.0,0.0,25790.0,1,2,8,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17193.333333333332,2,0,2_0,2_0 +3414,2.0,2.0,83.0,111,75,70,0.0,14345,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1817.7402288400917,0.0,0.0,17491.0,5,1,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17491.0,2,0,2_0,2_0 +3415,0.0,0.0,80.0,111,77,71,0.0,14346,0.0,0.0,0.0,336.0,0.0,2.0,0.0,1.0,1.0,4572.638910638561,0.0,0.0,15039.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15039.0,2,0,2_0,2_0 +3416,0.0,0.0,39.0,111,23,20,0.0,14347,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2124.1211896423447,0.0,0.0,209950.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,87479.16666666667,5,0,5,5_0 +3417,0.0,0.0,46.0,111,23,12,0.0,14348,0.0,0.0,0.0,1900.0,1.0,11.0,4.0,6.0,3.3,2462.4772235659616,2080.0,0.0,166064.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,50322.42424242425,5,0,5,5_0 +3418,0.0,0.0,39.0,111,43,33,1.0,14349,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,752.840157445419,2900.04,18400.0,36660.0,1,3,8,7.0,2,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,22912.5,3,0,3_0,3_0 +3419,6.0,8.0,65.0,111,77,50,0.0,1435,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4287.517243170275,0.0,0.0,35213.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23475.333333333332,3,0,3_0,3_0 +3420,0.0,0.0,46.0,111,21,50,0.0,14350,0.0,0.0,0.0,81.0,2.0,4.0,3.0,5.0,2.8,5944.467706886284,1040.0,0.0,14534.0,1,4,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,5190.714285714286,1,0,1_1,1_0 +3421,4.0,4.0,48.0,111,54,31,0.0,14351,0.0,0.0,10.0,0.0,2.0,5.0,1.0,2.0,1.5,1969.290471200539,0.0,0.0,50758.0,1,1,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,33838.666666666664,5,0,5,5_0 +3422,3.0,10.0,79.0,111,74,31,0.0,14352,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2257.356193920611,0.0,0.0,59110.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,39406.666666666664,5,0,5,5_0 +3423,0.0,0.0,33.0,112,48,30,0.0,14355,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,3154.29529030598,0.0,0.0,53698.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25570.47619047619,4,0,4_0,4_1 +3424,0.0,0.0,57.0,111,52,50,0.0,14356,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1886.2817146654006,1946.36,0.0,38782.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25854.666666666668,4,0,4_0,4_0 +3425,7.0,7.0,26.0,111,52,50,0.0,14357,0.0,700.0,50.0,45.0,1.0,3.0,1.0,2.0,1.3,1485.712947728275,2080.0,0.0,17660.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,13584.615384615385,1,0,1_1,1_0 +3426,6.0,6.0,58.0,400,52,70,0.0,14358,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1765.499698030061,2028.0,0.0,41150.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27433.333333333332,4,0,4_0,4_1 +3427,5.0,5.0,34.0,221,22,43,0.0,14359,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1084.7568741543437,1040.0,0.0,17006.0,1,3,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,13081.538461538461,1,0,1_1,1_0 +3428,2.0,2.0,50.0,111,34,20,0.0,1436,0.0,850.0,100.0,0.0,1.0,4.0,2.0,3.0,2.0,890.968185454743,0.0,0.0,18376.0,1,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,9188.0,1,0,1_1,1_0 +3429,0.0,0.0,49.0,400,46,42,0.0,14363,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2093.025454288489,2288.0,0.0,45210.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18084.0,2,0,2_0,2_1 +3430,3.0,3.0,37.0,111,52,20,0.0,14364,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2073.4592102170586,0.0,0.0,33507.0,1,4,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22338.0,3,0,3_0,3_0 +3431,1.0,25.0,35.0,111,52,50,2.0,14365,0.0,180.0,0.0,404.0,2.0,4.0,2.0,4.0,2.1,717.9002413256995,2132.0,7500.0,54184.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,25801.90476190476,4,0,4_1,4_0 +3432,0.0,0.0,65.0,111,74,10,0.0,14366,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1665.4066240548873,3132.48,0.0,14865.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9910.0,1,0,1_0,1_0 +3433,2.0,2.0,34.0,112,33,31,0.0,14367,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1982.9638175234982,0.0,0.0,57991.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27614.761904761905,4,0,4_0,4_0 +3434,0.0,0.0,48.0,111,67,71,0.0,14369,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,741.2214049392009,1040.0,0.0,20320.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11288.888888888889,1,0,1_0,1_0 +3435,0.0,0.0,35.0,111,56,42,0.0,1437,0.0,0.0,0.0,0.0,1.0,2.0,3.0,4.0,1.9,2087.333215016682,0.0,0.0,22694.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11944.21052631579,1,0,1_1,1_0 +3436,10.0,14.0,33.0,120,42,20,0.0,14370,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1896.1787525279997,0.0,0.0,30164.0,1,2,0,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,30164.0,4,0,4_0,4_0 +3437,0.0,0.0,36.0,300,62,50,0.0,14371,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2500.9036425263143,3320.2000000000003,0.0,51813.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24672.85714285714,4,0,4_0,4_1 +3438,3.0,3.0,86.0,111,86,71,0.0,14373,0.0,0.0,0.0,127.0,1.0,3.0,1.0,2.0,1.5,1820.3729246878934,0.0,0.0,20480.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13653.333333333334,1,0,1_1,1_0 +3439,1.0,2.0,68.0,112,74,41,0.0,14375,0.0,150.0,700.0,0.0,0.0,7.0,0.0,2.0,1.5,1967.9611593006036,2470.52,0.0,31307.0,5,1,7,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,20871.333333333332,3,0,3_0,3_0 +3440,5.0,10.0,51.0,112,47,50,0.0,14376,0.0,0.0,100199.0,0.0,2.0,7.0,2.0,4.0,2.5,1687.3516301228356,0.0,0.0,41718.0,1,2,6,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,16687.2,2,0,2_0,2_0 +3441,14.0,16.0,64.0,111,77,50,0.0,14377,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2383.664809184521,0.0,0.0,57473.0,6,1,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,28736.5,4,0,4_0,4_0 +3442,8.0,11.0,22.0,111,55,50,0.0,14378,0.0,0.0,0.0,154.0,2.0,3.0,2.0,4.0,2.1,1380.7457145542003,1040.0,0.0,22634.0,4,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,10778.095238095239,1,0,1_1,1_0 +3443,7.0,9.0,28.0,111,85,71,0.0,1438,0.0,350.0,0.0,249.0,0.0,3.0,2.0,3.0,1.6,1115.1382670125347,0.0,0.0,18204.0,6,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,11377.5,1,0,1_1,1_0 +3444,5.0,17.0,52.0,111,64,44,0.0,14380,0.0,0.0,99999.0,680.0,2.0,5.0,2.0,4.0,2.5,1733.5728673736405,0.0,0.0,49350.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19740.0,3,0,3_0,3_0 +3445,0.0,0.0,66.0,111,78,71,1.0,14381,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1923.6222038881936,2080.0,22000.0,27140.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18093.333333333332,2,0,2_0,2_0 +3446,2.0,6.0,52.0,111,52,50,0.0,14382,0.0,0.0,100049.0,0.0,1.0,4.0,0.0,1.0,1.0,1830.2716421448047,1560.0,0.0,5950.0,4,1,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,5950.0,1,0,1_0,1_0 +3447,1.0,5.0,73.0,221,78,71,2.0,14383,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4064.4720528022285,0.0,9000.0,15619.0,5,3,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15619.0,2,0,2_0,2_0 +3448,3.0,12.0,78.0,111,78,70,0.0,14384,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2464.9265134031016,0.0,0.0,28082.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18721.333333333332,3,0,3_0,3_0 +3449,2.0,17.0,78.0,111,75,50,0.0,14385,0.0,170.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2064.750379126362,0.0,0.0,30352.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20234.666666666668,3,0,3_0,3_0 +3450,3.0,4.0,75.0,111,74,30,0.0,14389,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1772.0222741292705,0.0,0.0,28766.0,5,1,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,28766.0,4,0,4_0,4_0 +3451,0.0,9.0,54.0,112,67,71,0.0,1439,0.0,0.0,200.0,0.0,1.0,4.0,0.0,1.0,1.0,2737.0684101321176,0.0,0.0,17121.0,1,2,8,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,17121.0,2,0,2_0,2_0 +3452,0.0,0.0,57.0,111,46,60,0.0,14392,0.0,0.0,0.0,207.0,1.0,3.0,0.0,1.0,1.0,2136.206491945319,3036.7999999999997,0.0,27178.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27178.0,4,0,4_0,4_0 +3453,6.0,6.0,37.0,112,46,41,0.0,14394,0.0,210.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1993.6354210845263,1040.0,0.0,37228.0,1,2,7,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,17727.619047619046,2,0,2_0,2_0 +3454,6.0,7.0,17.0,111,46,60,0.0,14396,0.0,0.0,150.0,168.0,1.0,2.0,0.0,2.0,1.5,3259.543096197361,0.0,0.0,24326.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,16217.333333333334,2,0,2_1,2_0 +3455,0.0,0.0,40.0,120,13,31,0.0,14397,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2017.9719069910166,0.0,0.0,16071.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,6696.25,1,0,1_0,1_1 +3456,1.0,1.0,80.0,111,77,50,0.0,14398,0.0,0.0,240.0,0.0,0.0,4.0,0.0,1.0,1.0,2757.785617623092,0.0,0.0,22720.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22720.0,3,0,3_0,3_0 +3457,8.0,15.0,53.0,212,53,60,0.0,14399,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1617.280943803361,4867.719999999999,0.0,75607.0,1,2,2,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,37803.5,5,0,5,5_1 +3458,7.0,7.0,48.0,400,62,50,0.0,144,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2097.865774306535,0.0,0.0,19040.0,1,2,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19040.0,3,0,3_0,3_0 +3459,0.0,2.0,30.0,111,46,20,0.0,14400,0.0,200.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,4171.70971657427,0.0,0.0,52967.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,29426.11111111111,4,0,4_0,4_0 +3460,4.0,11.0,35.0,111,52,60,0.0,14402,0.0,0.0,280.0,210.0,2.0,3.0,2.0,4.0,2.3,2563.2922770478563,2600.0,0.0,25670.0,1,3,6,5.0,4,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,11160.869565217392,1,0,1_1,1_0 +3461,0.0,0.0,35.0,111,68,50,0.0,14404,0.0,0.0,0.0,130.0,1.0,2.0,0.0,1.0,1.0,3533.370559014689,6240.0,0.0,13020.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13020.0,1,0,1_1,1_0 +3462,1.0,4.0,45.0,112,37,31,2.0,14405,0.0,140.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,601.1736832393532,2912.0,17000.0,61767.0,1,1,10,2.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,26855.21739130435,4,0,4_0,4_0 +3463,2.0,11.0,64.0,111,74,30,0.0,14407,0.0,50.0,40.0,0.0,1.0,6.0,0.0,2.0,1.5,2975.0652377170186,0.0,0.0,132570.0,5,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,88380.0,5,0,5,5_0 +3464,0.0,0.0,49.0,111,52,71,0.0,14408,0.0,0.0,0.0,366.0,1.0,2.0,0.0,1.0,1.0,3139.411718100267,0.0,0.0,13053.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13053.0,1,0,1_0,1_0 +3465,0.0,0.0,67.0,111,74,30,0.0,14410,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1309.077643718604,0.0,0.0,37107.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24738.0,4,0,4_0,4_0 +3466,7.0,14.0,42.0,111,62,43,0.0,14411,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3018.6445881050827,0.0,0.0,35796.0,1,2,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15563.478260869566,2,0,2_0,2_0 +3467,1.0,1.0,58.0,400,13,50,0.0,14413,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1801.6434163089898,0.0,0.0,7925.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,5283.333333333333,1,0,1_0,1_1 +3468,6.0,17.0,48.0,111,55,31,0.0,14415,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1750.313184731253,0.0,0.0,8043.0,4,1,10,8.0,2,3.0,1.0,0.0,0,0,0,0,1,0,1.0,2.0,4021.5,1,0,1_0,1_0 +3469,5.0,5.0,24.0,111,43,30,0.0,14416,0.0,300.0,0.0,400.0,2.0,3.0,0.0,2.0,1.5,3902.065904573417,4160.0,0.0,54204.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,36136.0,5,0,5,5_0 +3470,9.0,13.0,30.0,111,31,12,0.0,14418,0.0,0.0,0.0,1791.0,2.0,4.0,2.0,4.0,2.1,3842.843259310571,3328.0,0.0,64469.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30699.52380952381,4,0,4_0,4_0 +3471,0.0,0.0,44.0,111,47,31,0.0,14419,0.0,0.0,0.0,433.0,2.0,4.0,2.0,4.0,2.1,5109.308124714551,0.0,0.0,51792.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24662.85714285714,4,0,4_0,4_0 +3472,1.0,1.0,60.0,300,78,71,1.0,1442,0.0,0.0,300.0,0.0,0.0,5.0,0.0,1.0,1.0,2624.526783239656,2600.0,11200.0,23087.0,5,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23087.0,3,0,3_0,3_1 +3473,7.0,7.0,42.0,111,62,43,0.0,14420,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,3474.5138526433498,0.0,0.0,23390.0,1,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23390.0,3,0,3_0,3_0 +3474,0.0,0.0,71.0,400,75,60,0.0,14421,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1429.0788919397273,1831.44,0.0,23000.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15333.333333333334,2,0,2_0,2_0 +3475,0.0,0.0,24.0,112,43,50,0.0,14423,0.0,0.0,0.0,257.0,1.0,3.0,0.0,2.0,1.5,2604.4169735694427,3432.0,0.0,32379.0,1,3,10,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21586.0,3,0,3_0,3_0 +3476,9.0,9.0,44.0,211,62,50,0.0,14425,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2535.800037049131,0.0,0.0,39548.0,1,2,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17194.782608695652,2,0,2_0,2_0 +3477,0.0,0.0,47.0,111,43,33,0.0,14426,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,1.6,2115.660166669575,546.0,0.0,39900.0,1,2,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24937.5,4,0,4_0,4_0 +3478,3.0,16.0,64.0,111,75,33,0.0,1443,0.0,0.0,60.0,0.0,0.0,3.0,0.0,1.0,1.0,3690.2665723539,0.0,0.0,31391.0,5,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,31391.0,4,0,4_0,4_0 +3479,6.0,11.0,56.0,300,56,42,0.0,14430,0.0,156.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2712.1773671217434,0.0,0.0,13784.0,4,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,9189.333333333334,1,0,1_0,1_1 +3480,4.0,4.0,52.0,112,22,50,0.0,14431,0.0,670.0,0.0,0.0,2.0,6.0,4.0,6.0,3.1,1821.8258096729191,0.0,0.0,43455.0,1,2,8,1.0,4,3.0,1.0,1.0,0,1,0,0,0,0,0.0,3.0,14017.741935483871,2,0,2_0,2_0 +3481,3.0,3.0,66.0,111,78,71,0.0,14432,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2423.3940729774145,0.0,0.0,22441.0,5,1,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,14960.666666666666,2,0,2_0,2_0 +3482,3.0,14.0,53.0,112,68,50,0.0,14433,0.0,0.0,99999.0,0.0,1.0,3.0,0.0,1.0,1.0,1973.3650640017738,2080.0,0.0,18312.0,1,1,8,2.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,18312.0,2,0,2_0,2_0 +3483,3.0,3.0,73.0,300,75,50,0.0,14435,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2020.0073336455594,0.0,0.0,24630.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,24630.0,4,0,4_0,4_0 +3484,4.0,5.0,19.0,111,84,41,0.0,14436,0.0,0.0,100.0,349.0,0.0,2.0,0.0,1.0,1.0,4136.820879720228,0.0,0.0,4589.0,3,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,4589.0,1,0,1_1,1_0 +3485,3.0,3.0,65.0,300,34,31,0.0,14440,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1551.2737344402783,0.0,0.0,42805.0,1,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,42805.0,5,0,5,5_1 +3486,3.0,8.0,59.0,111,77,60,0.0,14442,0.0,1050.0,0.0,773.0,2.0,4.0,2.0,6.0,3.3,5218.147683352292,0.0,0.0,52180.0,5,3,10,8.0,5,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,15812.121212121214,2,0,2_0,2_0 +3487,0.0,0.0,40.0,111,54,31,0.0,14443,0.0,0.0,0.0,280.0,1.0,2.0,2.0,3.0,1.6,809.5566400580077,0.0,0.0,25744.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16090.0,2,0,2_1,2_0 +3488,0.0,0.0,81.0,111,78,71,0.0,14444,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2152.0208831111067,0.0,0.0,21976.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21976.0,3,0,3_0,3_0 +3489,3.0,13.0,58.0,400,21,50,0.0,14446,0.0,0.0,150.0,0.0,2.0,5.0,0.0,2.0,1.5,1734.9250092272225,0.0,0.0,61205.0,1,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,40803.333333333336,5,0,5,5_0 +3490,11.0,11.0,48.0,112,52,71,0.0,14448,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,11447.677505751144,0.0,0.0,18909.0,1,3,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18909.0,3,0,3_0,3_0 +3491,0.0,0.0,49.0,300,47,71,0.0,1445,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1635.3422785891405,4888.0,0.0,52020.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26010.0,4,0,4_0,4_1 +3492,0.0,0.0,56.0,112,55,42,0.0,14451,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2360.7501723779746,2912.0,0.0,81288.0,1,2,10,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,32515.2,5,0,5,5_0 +3493,0.0,0.0,48.0,111,56,50,0.0,14452,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,696.4177514724779,1703.0,0.0,24843.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10801.304347826088,1,0,1_1,1_0 +3494,4.0,4.0,30.0,111,43,33,0.0,14454,0.0,0.0,0.0,590.0,2.0,3.0,0.0,2.0,1.5,1219.3432563075637,0.0,0.0,47378.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,31585.333333333332,4,0,4_0,4_0 +3495,1.0,4.0,53.0,111,37,20,2.0,14455,0.0,280.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2639.9794939976196,0.0,11300.0,94947.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,37978.8,5,0,5,5_0 +3496,0.0,0.0,63.0,111,77,50,0.0,14456,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,3711.39281285057,0.0,0.0,21060.0,5,3,6,4.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14040.0,2,0,2_0,2_0 +3497,3.0,3.0,72.0,111,77,70,0.0,14457,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2551.399395009463,1952.6,0.0,44661.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29774.0,4,0,4_0,4_0 +3498,15.0,15.0,37.0,112,55,43,0.0,14458,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,195.11042161977784,0.0,0.0,22647.0,1,3,9,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,14154.375,2,0,2_1,2_1 +3499,0.0,0.0,48.0,111,56,71,0.0,1446,0.0,0.0,0.0,600.0,1.0,3.0,0.0,1.0,1.0,3197.204481220228,0.0,0.0,16934.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16934.0,2,0,2_0,2_0 +3500,0.0,0.0,49.0,111,31,71,0.0,14460,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2640.305286026847,0.0,0.0,22208.0,1,2,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22208.0,3,0,3_0,3_0 +3501,1.0,5.0,34.0,111,63,41,2.0,14461,0.0,0.0,0.0,405.0,2.0,2.0,1.0,3.0,2.0,3412.390932589305,3130.92,32000.0,39430.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,19715.0,3,0,3_1,3_0 +3502,0.0,0.0,46.0,112,63,41,0.0,14463,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3065.3194989376043,1820.0,0.0,13088.0,4,1,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13088.0,1,0,1_0,1_1 +3503,0.0,0.0,85.0,112,77,71,0.0,14464,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3501.937125348278,0.0,0.0,18580.0,5,1,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18580.0,2,0,2_0,2_0 +3504,6.0,6.0,75.0,112,77,50,0.0,14465,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3348.1958913310705,0.0,0.0,19281.0,5,3,9,0.0,1,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,19281.0,3,0,3_1,3_1 +3505,0.0,0.0,57.0,111,34,20,0.0,14468,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2097.7534179562517,2484.04,0.0,47489.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,47489.0,5,0,5,5_0 +3506,15.0,17.0,59.0,111,52,71,0.0,14469,0.0,170.0,0.0,0.0,1.0,5.0,1.0,4.0,2.5,4153.194731228652,2080.0,0.0,58467.0,1,1,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23386.8,3,0,3_0,3_0 +3507,1.0,3.0,62.0,111,74,10,0.0,1447,0.0,0.0,0.0,0.0,0.0,9.0,0.0,1.0,1.0,2225.4229886061466,2771.6,0.0,42855.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,42855.0,5,0,5,5_0 +3508,6.0,6.0,24.0,111,63,43,0.0,14471,0.0,0.0,99999.0,480.0,2.0,2.0,0.0,2.0,1.5,3149.3786916692566,1044.6799999999998,0.0,33423.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,22282.0,3,0,3_0,3_0 +3509,23.0,23.0,79.0,111,78,50,0.0,14472,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4615.137026759286,0.0,0.0,23736.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23736.0,3,0,3_0,3_0 +3510,3.0,3.0,58.0,111,31,50,0.0,14474,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3236.746285592281,0.0,0.0,76340.0,1,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,76340.0,5,0,5,5_0 +3511,2.0,3.0,57.0,111,63,50,0.0,14476,0.0,0.0,0.0,272.0,2.0,3.0,0.0,2.0,1.5,2513.786018848508,1560.52,0.0,48160.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32106.666666666668,5,0,5,5_0 +3512,7.0,7.0,62.0,112,33,31,0.0,14477,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2105.132030305372,2548.0,0.0,52714.0,1,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,35142.666666666664,5,0,5,5_0 +3513,1.0,1.0,42.0,111,64,43,1.0,14478,0.0,0.0,150.0,0.0,3.0,5.0,2.0,4.0,2.3,2148.3770941424127,2085.7200000000003,10200.0,33134.0,1,2,4,3.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,14406.08695652174,2,0,2_1,2_0 +3514,0.0,0.0,68.0,111,75,60,0.0,14482,0.0,0.0,0.0,550.0,0.0,4.0,1.0,2.0,1.5,892.9494712920274,2785.12,0.0,25970.0,5,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17313.333333333332,2,0,2_1,2_0 +3515,15.0,15.0,25.0,111,84,30,0.0,14483,0.0,0.0,0.0,77.0,0.0,1.0,0.0,1.0,1.0,3226.8871655981366,0.0,0.0,2936.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2936.0,1,0,1_1,1_0 +3516,0.0,0.0,68.0,112,78,71,0.0,14484,0.0,0.0,0.0,790.0,0.0,3.0,0.0,2.0,1.5,4025.9703614533187,2444.0,0.0,35844.0,5,3,10,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23896.0,4,0,4_0,4_0 +3517,16.0,16.0,50.0,111,63,50,0.0,14488,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1821.381495890519,0.0,0.0,46501.0,1,2,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31000.666666666668,4,0,4_0,4_0 +3518,7.0,7.0,37.0,111,55,71,0.0,14489,0.0,400.0,150.0,320.0,1.0,3.0,1.0,2.0,1.3,931.3533930835688,1040.0,0.0,12040.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,9261.538461538461,1,0,1_1,1_0 +3519,0.0,0.0,70.0,120,78,70,0.0,14490,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2377.6881818841,1721.2,0.0,28286.0,5,1,0,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18857.333333333332,3,0,3_0,3_0 +3520,3.0,3.0,33.0,111,52,50,0.0,14491,0.0,200.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,927.2344630626847,2678.52,0.0,23562.0,1,2,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18124.615384615383,2,0,2_0,2_0 +3521,1.0,4.0,47.0,120,34,30,2.0,14492,0.0,60.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2138.4640362254104,0.0,12000.0,63645.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,30307.142857142855,4,0,4_0,4_1 +3522,11.0,11.0,69.0,221,77,50,0.0,14495,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,17155.476657239302,0.0,0.0,18833.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18833.0,3,0,3_0,3_0 +3523,16.0,19.0,61.0,111,34,31,0.0,14497,0.0,500.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1172.8721513821906,0.0,0.0,37466.0,1,1,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,37466.0,5,0,5,5_0 +3524,0.0,0.0,42.0,111,54,43,0.0,14498,0.0,0.0,0.0,242.0,1.0,3.0,1.0,2.0,1.3,1140.7203397035848,2802.7999999999997,0.0,22826.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17558.46153846154,2,0,2_1,2_0 +3525,0.0,0.0,20.0,111,84,31,0.0,14499,0.0,0.0,0.0,383.0,1.0,2.0,0.0,2.0,1.5,2317.4462821619145,0.0,0.0,5253.0,3,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,3502.0,1,0,1_1,1_0 +3526,12.0,16.0,51.0,221,67,71,0.0,145,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4808.2587950648485,0.0,0.0,9364.0,1,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,9364.0,1,0,1_1,1_0 +3527,1.0,1.0,67.0,400,72,50,2.0,1450,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1511.1313473300668,0.0,9100.0,20771.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13847.333333333334,1,0,1_0,1_1 +3528,0.0,0.0,52.0,111,38,31,0.0,14500,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,6351.116436308121,0.0,0.0,54620.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,54620.0,5,0,5,5_0 +3529,3.0,3.0,46.0,111,46,42,0.0,14501,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1620.2976284109536,2359.24,0.0,72236.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28894.4,4,0,4_0,4_0 +3530,9.0,9.0,60.0,111,37,31,0.0,14502,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2615.8752520440935,0.0,0.0,84623.0,1,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,56415.333333333336,5,0,5,5_0 +3531,11.0,12.0,35.0,112,63,50,0.0,14503,0.0,0.0,0.0,234.0,1.0,4.0,3.0,5.0,2.4,539.9460498450986,0.0,0.0,31401.0,1,3,10,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,13083.75,1,0,1_1,1_0 +3532,0.0,12.0,65.0,111,74,31,0.0,14504,0.0,0.0,90.0,0.0,0.0,5.0,0.0,2.0,1.5,499.624805244449,0.0,0.0,42463.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,28308.666666666668,4,0,4_0,4_0 +3533,3.0,13.0,21.0,111,67,50,0.0,14505,0.0,350.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1447.9259956482128,1040.0,0.0,11966.0,4,3,4,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9204.615384615385,1,0,1_1,1_0 +3534,0.0,0.0,81.0,300,78,71,0.0,14508,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2282.980541173639,0.0,0.0,24089.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16059.333333333334,2,0,2_0,2_0 +3535,3.0,12.0,68.0,112,64,70,0.0,1451,0.0,560.0,0.0,240.0,1.0,1.0,0.0,1.0,1.0,2850.0948091466507,3718.5199999999995,0.0,15230.0,5,3,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15230.0,2,0,2_0,2_1 +3536,6.0,6.0,21.0,112,67,31,0.0,14511,0.0,400.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,477.465840030801,0.0,0.0,15414.0,1,3,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,15414.0,2,0,2_1,2_1 +3537,2.0,2.0,27.0,111,85,71,0.0,14514,0.0,850.0,0.0,120.0,0.0,3.0,1.0,2.0,1.3,1119.41765813863,0.0,0.0,13190.0,7,4,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,10146.153846153846,1,0,1_1,1_0 +3538,5.0,13.0,61.0,111,77,71,0.0,14515,0.0,0.0,0.0,225.0,0.0,3.0,0.0,1.0,1.0,3550.542432383518,0.0,0.0,3390.0,7,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,3390.0,1,0,1_1,1_0 +3539,0.0,10.0,44.0,212,21,50,0.0,14516,0.0,100.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3131.4612510223064,2600.0,0.0,23550.0,1,1,2,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13083.333333333332,1,0,1_0,1_1 +3540,0.0,0.0,91.0,112,77,70,0.0,14517,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2726.3155176112978,0.0,0.0,22838.0,5,1,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22838.0,3,0,3_0,3_0 +3541,0.0,0.0,62.0,111,78,50,0.0,14518,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2834.4119444198263,2912.52,0.0,28948.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19298.666666666668,3,0,3_0,3_0 +3542,2.0,15.0,41.0,120,68,31,0.0,14519,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,2084.923748540859,5761.08,0.0,46142.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16479.285714285714,2,0,2_0,2_1 +3543,3.0,3.0,75.0,221,72,70,0.0,14520,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2452.818970078391,2080.0,0.0,15828.0,5,1,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,15828.0,2,0,2_0,2_0 +3544,0.0,0.0,71.0,111,75,20,0.0,14521,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2589.4672360485856,0.0,0.0,31870.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31870.0,5,0,5,5_0 +3545,11.0,11.0,56.0,111,55,50,0.0,14522,0.0,0.0,99999.0,0.0,2.0,5.0,0.0,2.0,1.5,1851.878176298586,0.0,0.0,41657.0,1,2,7,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,27771.333333333332,4,0,4_0,4_0 +3546,7.0,7.0,47.0,111,46,43,0.0,14523,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2145.9248461902985,2600.0,0.0,97000.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38800.0,5,0,5,5_0 +3547,10.0,10.0,37.0,111,46,31,0.0,14524,0.0,0.0,0.0,300.0,2.0,6.0,1.0,3.0,1.8,2408.9878552751707,4521.4,0.0,53408.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29671.11111111111,4,0,4_0,4_0 +3548,5.0,8.0,34.0,111,85,71,0.0,14525,0.0,100.0,0.0,163.0,0.0,3.0,0.0,1.0,1.0,2199.8494814722962,0.0,0.0,15321.0,8,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,15321.0,2,0,2_1,2_0 +3549,6.0,8.0,76.0,221,75,50,0.0,14529,0.0,590.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2687.6647925729776,2605.2000000000003,0.0,26327.0,5,1,1,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17551.333333333332,2,0,2_0,2_0 +3550,2.0,6.0,63.0,112,75,70,0.0,1453,0.0,10.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1811.126174921475,0.0,0.0,20560.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13706.666666666666,1,0,1_0,1_1 +3551,0.0,21.0,44.0,111,56,71,0.0,14530,0.0,0.0,0.0,343.0,1.0,3.0,0.0,2.0,1.5,2691.2111105105714,0.0,0.0,18092.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,12061.333333333334,1,0,1_0,1_0 +3552,12.0,12.0,31.0,111,56,50,0.0,14531,0.0,0.0,0.0,456.0,1.0,5.0,0.0,1.0,1.0,3024.998033426259,0.0,0.0,22625.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22625.0,3,0,3_0,3_0 +3553,3.0,8.0,63.0,111,33,60,0.0,14533,0.0,0.0,84.0,1073.0,2.0,5.0,0.0,2.0,1.5,1818.0162900600928,0.0,0.0,38333.0,1,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,25555.333333333332,4,0,4_0,4_0 +3554,0.0,0.0,36.0,111,55,50,0.0,14534,0.0,0.0,0.0,0.0,1.0,3.0,3.0,4.0,1.9,876.7960278253839,0.0,0.0,18692.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9837.894736842105,1,0,1_1,1_0 +3555,5.0,23.0,78.0,111,75,44,0.0,14535,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2141.307712233528,0.0,0.0,49885.0,4,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33256.666666666664,5,0,5,5_0 +3556,8.0,8.0,68.0,111,72,50,0.0,14536,0.0,250.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2980.0414518575326,0.0,0.0,33442.0,5,1,8,7.0,2,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,22294.666666666668,3,0,3_0,3_0 +3557,2.0,3.0,79.0,212,78,50,0.0,14539,0.0,350.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2272.851362870571,0.0,0.0,55309.0,5,1,2,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36872.666666666664,5,0,5,5_1 +3558,10.0,12.0,85.0,111,78,71,0.0,14540,0.0,299997.0,0.0,280.0,0.0,4.0,0.0,1.0,1.0,3719.249542579526,0.0,0.0,20658.0,5,3,8,6.0,1,3.0,0.0,1.0,0,0,1,0,0,1,0.0,3.0,20658.0,3,0,3_1,3_0 +3559,0.0,0.0,78.0,112,75,41,1.0,14541,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2808.0321283841886,0.0,72000.0,20599.0,5,1,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20599.0,3,0,3_0,3_1 +3560,13.0,21.0,23.0,111,84,30,0.0,14542,0.0,300.0,0.0,253.0,0.0,1.0,0.0,1.0,1.0,3724.042560892672,0.0,0.0,6935.0,3,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,6935.0,1,0,1_1,1_0 +3561,0.0,11.0,58.0,111,53,50,0.0,14543,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1283.598677059628,0.0,0.0,65758.0,1,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,43838.666666666664,5,0,5,5_0 +3562,0.0,0.0,43.0,111,37,20,0.0,14544,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2597.3078444048,0.0,0.0,60895.0,1,4,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26476.08695652174,4,0,4_0,4_0 +3563,0.0,0.0,49.0,111,54,50,0.0,14545,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1611.9832589688838,0.0,0.0,75500.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37750.0,5,0,5,5_0 +3564,0.0,0.0,24.0,111,56,43,0.0,14546,0.0,0.0,0.0,0.0,2.0,5.0,1.0,2.0,1.5,2623.9990632602635,3484.0,0.0,31491.0,1,1,7,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20994.0,3,0,3_0,3_0 +3565,0.0,25.0,57.0,111,78,50,2.0,14548,0.0,0.0,60.0,120.0,0.0,1.0,0.0,1.0,1.0,4242.77523528972,0.0,4000.0,3245.0,7,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,3245.0,1,0,1_1,1_0 +3566,0.0,0.0,39.0,111,43,50,0.0,14549,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3174.8735510920915,0.0,0.0,29190.0,1,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13900.0,2,0,2_0,2_0 +3567,14.0,14.0,60.0,112,75,31,0.0,14551,0.0,100.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,3107.314001513339,1976.0,0.0,28002.0,5,2,9,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18668.0,2,0,2_0,2_1 +3568,0.0,0.0,55.0,400,63,71,0.0,14552,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2391.6602303573654,0.0,0.0,43265.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28843.333333333332,4,0,4_0,4_0 +3569,0.0,15.0,73.0,111,78,70,0.0,14553,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,917.1476342227511,0.0,0.0,27381.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18254.0,2,0,2_0,2_0 +3570,2.0,2.0,35.0,111,42,30,0.0,14554,0.0,0.0,250.0,0.0,2.0,5.0,1.0,3.0,1.8,3047.0276719897097,2080.52,0.0,44054.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24474.444444444445,4,0,4_0,4_0 +3571,11.0,12.0,30.0,221,85,71,0.0,14555,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,1.9,1082.1984540586127,1508.0,0.0,19654.0,6,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,10344.21052631579,1,0,1_1,1_0 +3572,7.0,7.0,40.0,400,21,71,0.0,14557,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,3485.716977290394,0.0,0.0,37208.0,1,1,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16177.391304347828,2,0,2_0,2_0 +3573,4.0,9.0,53.0,300,62,44,0.0,14558,0.0,200.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1930.6702607504606,0.0,0.0,48259.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24129.5,4,0,4_0,4_1 +3574,4.0,7.0,71.0,112,77,30,0.0,1456,0.0,199998.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2468.56750069645,0.0,0.0,25890.0,5,3,7,4.0,1,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,25890.0,4,0,4_0,4_0 +3575,3.0,20.0,43.0,111,65,43,0.0,14561,0.0,0.0,0.0,164.0,1.0,5.0,4.0,7.0,3.2,3503.4911909404977,0.0,0.0,33716.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,10536.25,1,0,1_1,1_0 +3576,3.0,3.0,44.0,111,47,31,0.0,14562,0.0,400.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4945.719062485688,0.0,0.0,30290.0,1,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,30290.0,4,0,4_0,4_0 +3577,4.0,4.0,54.0,211,78,71,0.0,14564,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,1553.178797246026,0.0,0.0,27670.0,5,4,2,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,13835.0,1,0,1_0,1_0 +3578,2.0,5.0,67.0,400,72,50,0.0,14565,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1631.6971169114593,0.0,0.0,27310.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18206.666666666668,2,0,2_0,2_1 +3579,0.0,0.0,82.0,111,86,50,1.0,14568,0.0,400.0,160.0,0.0,0.0,4.0,0.0,2.0,1.5,2669.181472235918,2600.0,15131.0,20220.0,5,1,6,5.0,3,4.0,0.0,1.0,0,0,1,0,0,0,1.0,3.0,13480.0,1,0,1_0,1_0 +3580,0.0,0.0,63.0,111,75,31,0.0,14569,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1866.7606727065627,0.0,0.0,31811.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31811.0,5,0,5,5_0 +3581,3.0,3.0,45.0,111,37,20,0.0,1457,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,701.6061289203409,1694.6800000000003,0.0,42797.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,42797.0,5,0,5,5_0 +3582,1.0,1.0,73.0,300,72,50,0.0,14570,0.0,200.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1372.444991258734,0.0,0.0,32700.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21800.0,3,0,3_0,3_1 +3583,1.0,2.0,34.0,111,53,50,1.0,14571,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2993.9178036666385,2947.88,19000.0,110906.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,52812.38095238095,5,0,5,5_0 +3584,1.0,1.0,64.0,111,77,50,1.0,14572,0.0,0.0,0.0,374.0,0.0,2.0,0.0,1.0,1.0,4536.362295189661,0.0,25500.0,18434.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,18434.0,2,0,2_0,2_0 +3585,11.0,11.0,66.0,112,78,70,0.0,14573,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2086.3852990255177,4641.0,0.0,28450.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18966.666666666668,3,0,3_0,3_1 +3586,16.0,16.0,37.0,120,85,41,0.0,14575,0.0,300.0,0.0,55.0,0.0,1.0,0.0,1.0,1.0,5188.97028514058,0.0,0.0,13904.0,7,3,0,3.0,1,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,13904.0,2,0,2_1,2_0 +3587,5.0,5.0,59.0,111,42,31,0.0,14576,0.0,500.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1992.3341784966753,0.0,0.0,63375.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,42250.0,5,0,5,5_0 +3588,0.0,0.0,45.0,111,67,43,0.0,14577,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,1803.3397870708557,93.60000000000001,0.0,31445.0,1,2,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14973.809523809523,2,0,2_0,2_0 +3589,15.0,15.0,57.0,111,62,50,0.0,14578,0.0,200.0,0.0,297.0,2.0,3.0,0.0,2.0,1.5,1226.179370885625,2600.0,0.0,42342.0,4,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28228.0,4,0,4_0,4_0 +3590,9.0,9.0,57.0,111,48,50,0.0,14581,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2551.2247630803263,4212.0,0.0,35557.0,1,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23704.666666666668,3,0,3_0,3_0 +3591,7.0,7.0,29.0,111,62,42,0.0,14582,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,5604.589429106195,0.0,0.0,35753.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,17025.238095238095,2,0,2_1,2_0 +3592,1.0,2.0,55.0,120,13,44,2.0,14583,0.0,440.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2278.555414922775,3640.0,12000.0,18577.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18577.0,2,0,2_0,2_1 +3593,3.0,3.0,25.0,111,64,71,0.0,14585,0.0,30.0,0.0,998.0,2.0,5.0,0.0,2.0,1.5,4107.905712263901,0.0,0.0,48127.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,32084.666666666668,5,0,5,5_0 +3594,3.0,7.0,68.0,111,72,70,0.0,14587,0.0,0.0,125.0,319.0,0.0,2.0,0.0,1.0,1.0,1826.397121605743,1040.52,0.0,15318.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,15318.0,2,0,2_0,2_0 +3595,6.0,7.0,42.0,111,68,50,0.0,14589,0.0,450.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,2612.9494418981008,2340.0,0.0,19140.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,19140.0,3,0,3_1,3_0 +3596,4.0,7.0,43.0,120,22,42,0.0,14590,0.0,0.0,70.0,0.0,2.0,7.0,4.0,6.0,2.7,2476.396849590769,4316.0,0.0,270886.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,100328.14814814815,5,0,5,5_1 +3597,8.0,8.0,69.0,112,75,50,0.0,14591,0.0,99999.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1549.4772380168356,1526.2,0.0,37827.0,5,1,5,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,25218.0,4,0,4_0,4_1 +3598,5.0,5.0,43.0,111,48,31,0.0,14592,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2632.2384554368905,2966.08,0.0,66119.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33059.5,5,0,5,5_0 +3599,0.0,0.0,80.0,111,77,60,0.0,14593,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2503.7649215956685,3068.52,0.0,24386.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24386.0,4,0,4_0,4_0 +3600,6.0,11.0,56.0,111,37,31,0.0,14595,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3361.655268747173,2704.0,0.0,25635.0,1,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,17090.0,2,0,2_0,2_0 +3601,1.0,11.0,39.0,111,31,10,0.0,14597,0.0,0.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.1,2677.635637728193,0.0,0.0,277610.0,1,2,4,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,132195.23809523808,5,0,5,5_0 +3602,0.0,0.0,34.0,221,45,20,0.0,14598,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2840.155972670731,2600.0,0.0,44249.0,1,2,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21070.95238095238,3,0,3_0,3_0 +3603,1.0,12.0,31.0,111,37,12,2.0,146,0.0,20.0,200.0,751.0,2.0,3.0,0.0,2.0,1.5,3019.0930477967136,0.0,700.0,66877.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,44584.666666666664,5,0,5,5_0 +3604,3.0,16.0,28.0,300,43,30,0.0,1460,0.0,0.0,30.0,0.0,2.0,5.0,1.0,3.0,1.8,2874.4068169026864,1040.0,0.0,47567.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,26426.11111111111,4,0,4_0,4_1 +3605,0.0,9.0,23.0,111,34,41,2.0,14600,0.0,0.0,65.0,0.0,1.0,1.0,0.0,1.0,1.0,2849.5512446232015,0.0,2000.0,29551.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,29551.0,4,0,4_1,4_0 +3606,10.0,10.0,45.0,111,54,42,0.0,14601,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2616.658635944736,3952.0,0.0,34514.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,16435.238095238095,2,0,2_0,2_0 +3607,6.0,6.0,59.0,211,77,50,0.0,14602,0.0,199998.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2126.378446401001,0.0,0.0,15062.0,7,3,3,3.0,1,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,15062.0,2,0,2_1,2_0 +3608,0.0,0.0,47.0,112,56,71,1.0,14604,0.0,0.0,0.0,289.0,1.0,2.0,0.0,1.0,1.0,2553.9012690370582,0.0,15200.0,12710.0,1,3,10,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,12710.0,1,0,1_0,1_1 +3609,0.0,0.0,32.0,111,63,71,0.0,14605,0.0,0.0,0.0,137.0,1.0,2.0,1.0,2.0,1.3,5301.603487486732,0.0,0.0,24610.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,18930.76923076923,3,0,3_1,3_0 +3610,2.0,7.0,25.0,111,46,30,0.0,14607,0.0,99999.0,0.0,500.0,2.0,1.0,0.0,2.0,1.5,7328.29150809781,0.0,0.0,54328.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,36218.666666666664,5,0,5,5_0 +3611,17.0,17.0,58.0,221,47,42,0.0,14608,0.0,650.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1818.9632334808373,2080.52,0.0,44834.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24907.777777777777,4,0,4_0,4_0 +3612,0.0,0.0,49.0,120,52,50,0.0,14609,0.0,0.0,0.0,147.0,2.0,4.0,1.0,2.0,1.5,2370.6544664659873,0.0,0.0,25290.0,4,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,16860.0,2,0,2_1,2_1 +3613,0.0,0.0,57.0,111,48,71,0.0,1461,0.0,0.0,0.0,500.0,3.0,4.0,1.0,4.0,2.3,4236.088997008127,2912.0,0.0,73030.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31752.17391304348,4,0,4_0,4_0 +3614,3.0,3.0,22.0,111,84,41,0.0,14610,0.0,0.0,0.0,74.0,0.0,1.0,0.0,1.0,1.0,4178.180641131561,0.0,0.0,8201.0,3,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,8201.0,1,0,1_1,1_0 +3615,5.0,13.0,59.0,111,38,20,0.0,14611,0.0,200.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1758.0530546650834,0.0,0.0,82063.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,54708.666666666664,5,0,5,5_0 +3616,4.0,4.0,42.0,300,47,31,0.0,14612,0.0,0.0,40.0,0.0,2.0,4.0,1.0,3.0,2.0,2674.4735993706117,4888.0,0.0,47920.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23960.0,4,0,4_0,4_1 +3617,5.0,10.0,35.0,221,63,43,0.0,14613,0.0,0.0,40.0,0.0,2.0,6.0,1.0,3.0,1.8,1521.2212821442201,0.0,0.0,43793.0,1,2,1,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,24329.444444444445,4,0,4_0,4_0 +3618,1.0,7.0,65.0,300,78,50,2.0,14614,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1731.8176990052068,3224.0,4290.0,21244.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14162.666666666666,2,0,2_0,2_1 +3619,10.0,18.0,52.0,111,85,50,0.0,14615,0.0,0.0,220.0,0.0,0.0,3.0,1.0,2.0,1.5,941.0690878897824,0.0,0.0,13033.0,6,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,8688.666666666666,1,0,1_1,1_0 +3620,0.0,0.0,27.0,111,43,33,0.0,14616,0.0,0.0,0.0,390.0,1.0,1.0,0.0,1.0,1.0,4574.926924969675,1562.08,0.0,25330.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25330.0,4,0,4_0,4_0 +3621,0.0,0.0,69.0,300,78,70,0.0,14618,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3867.6114702498676,4493.32,0.0,20940.0,5,4,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13960.0,2,0,2_0,2_1 +3622,6.0,6.0,49.0,111,33,20,0.0,14620,0.0,200.0,10.0,266.0,2.0,3.0,0.0,2.0,1.5,4005.075381240393,0.0,0.0,38428.0,1,3,9,7.0,5,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,25618.666666666668,4,0,4_1,4_0 +3623,12.0,12.0,88.0,111,75,44,0.0,14622,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2089.460175098178,0.0,0.0,23804.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15869.333333333334,2,0,2_0,2_0 +3624,9.0,9.0,57.0,300,62,71,0.0,14623,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2270.136043026229,3748.6800000000003,0.0,48553.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24276.5,4,0,4_0,4_1 +3625,6.0,9.0,36.0,111,85,50,0.0,14624,0.0,0.0,0.0,169.0,0.0,4.0,3.0,4.0,1.9,887.0749054060926,1040.0,0.0,20961.0,6,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11032.105263157895,1,0,1_1,1_0 +3626,6.0,7.0,88.0,112,77,70,0.0,14625,0.0,72.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2653.3183657820377,0.0,0.0,24065.0,5,1,10,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24065.0,4,0,4_0,4_0 +3627,2.0,16.0,41.0,111,62,44,0.0,14626,0.0,100549.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2485.152017396304,0.0,0.0,22835.0,1,2,7,5.0,1,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,22835.0,3,0,3_0,3_0 +3628,0.0,21.0,70.0,212,72,71,0.0,14627,0.0,0.0,40.0,0.0,0.0,16.0,0.0,1.0,1.0,2068.215236286948,2652.0,0.0,24940.0,5,1,2,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24940.0,4,0,4_0,4_1 +3629,10.0,14.0,35.0,111,22,60,0.0,14628,0.0,150.0,0.0,800.0,1.0,2.0,0.0,1.0,1.0,6480.229340861202,0.0,0.0,18925.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,18925.0,3,0,3_0,3_0 +3630,0.0,7.0,83.0,112,75,31,0.0,14629,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3411.003625693954,0.0,0.0,22519.0,5,4,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22519.0,3,0,3_0,3_1 +3631,0.0,0.0,48.0,111,54,31,0.0,14630,0.0,0.0,0.0,121.0,2.0,3.0,1.0,2.0,1.5,2688.6665015629187,1560.0,0.0,16720.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11146.666666666666,1,0,1_1,1_0 +3632,0.0,0.0,47.0,112,13,50,0.0,14632,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,1754.9607694733427,1872.0,0.0,61731.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22046.785714285717,3,0,3_0,3_1 +3633,11.0,14.0,44.0,111,43,33,0.0,14634,0.0,0.0,99999.0,0.0,1.0,4.0,2.0,3.0,1.8,2467.482369056479,1560.52,0.0,26585.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14769.444444444443,2,0,2_0,2_0 +3634,3.0,3.0,65.0,111,77,31,0.0,14635,0.0,120.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1811.3606151485967,0.0,0.0,41496.0,5,1,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,27664.0,4,0,4_0,4_0 +3635,1.0,1.0,81.0,221,86,71,1.0,14636,0.0,500.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,11746.123764311962,0.0,24000.0,13411.0,5,3,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,13411.0,1,0,1_0,1_0 +3636,2.0,16.0,42.0,112,38,20,0.0,14637,0.0,40.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1618.8507595361816,0.0,0.0,117567.0,1,1,8,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,45218.07692307692,5,0,5,5_0 +3637,8.0,8.0,69.0,112,75,41,0.0,14638,0.0,20.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1578.1035554810485,0.0,0.0,49124.0,5,1,7,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,32749.333333333332,5,0,5,5_0 +3638,1.0,1.0,39.0,111,37,30,1.0,14640,0.0,1000.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2463.7918637982916,2444.0,29000.0,79299.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,37761.42857142857,5,0,5,5_0 +3639,0.0,0.0,36.0,112,33,20,0.0,14641,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1010.0087654212392,4160.0,0.0,47697.0,1,3,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26498.333333333332,4,0,4_0,4_0 +3640,6.0,9.0,53.0,221,48,50,0.0,14642,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2246.451522009015,7286.24,0.0,75433.0,1,1,1,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,37716.5,5,0,5,5_0 +3641,0.0,10.0,40.0,111,63,71,2.0,14643,0.0,0.0,0.0,0.0,2.0,4.0,6.0,8.0,3.7,810.2020035497546,0.0,3000.0,33570.0,4,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,9072.972972972973,1,0,1_1,1_0 +3642,1.0,22.0,74.0,111,86,71,2.0,14644,0.0,0.0,0.0,150.0,0.0,2.0,0.0,1.0,1.0,2442.4775053202825,0.0,1500.0,11720.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,11720.0,1,0,1_1,1_0 +3643,1.0,1.0,55.0,300,13,50,0.0,14645,0.0,400.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1653.4306191512737,2600.0,0.0,62860.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,41906.666666666664,5,0,5,5_1 +3644,0.0,0.0,80.0,111,74,60,0.0,14646,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2517.366880286185,0.0,0.0,77088.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,51392.0,5,0,5,5_0 +3645,0.0,0.0,40.0,111,47,42,0.0,14648,0.0,0.0,0.0,230.0,1.0,2.0,0.0,1.0,1.0,2985.836460874774,0.0,0.0,21970.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21970.0,3,0,3_0,3_0 +3646,0.0,0.0,78.0,211,74,12,0.0,14649,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1063.0887959850138,0.0,0.0,40175.0,5,1,2,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26783.333333333332,4,0,4_0,4_0 +3647,0.0,0.0,88.0,111,74,71,0.0,1465,0.0,0.0,0.0,700.0,0.0,3.0,0.0,2.0,1.5,2081.1132455450743,0.0,0.0,57220.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38146.666666666664,5,0,5,5_0 +3648,0.0,0.0,34.0,112,43,33,0.0,14650,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,194.8773955283204,2895.36,0.0,41279.0,1,3,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31753.076923076922,4,0,4_0,4_1 +3649,4.0,15.0,25.0,111,52,50,0.0,14651,0.0,235.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1665.785245684069,2605.2000000000003,0.0,21230.0,1,3,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,1,0.0,1.0,16330.76923076923,2,0,2_1,2_0 +3650,7.0,7.0,53.0,111,43,33,0.0,14653,0.0,200.0,0.0,0.0,1.0,4.0,3.0,4.0,2.5,446.7629271196281,0.0,0.0,43390.0,1,2,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,17356.0,2,0,2_0,2_0 +3651,5.0,11.0,34.0,111,38,31,0.0,14656,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3285.950703283837,3736.2,0.0,70700.0,1,3,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,47133.333333333336,5,0,5,5_0 +3652,2.0,2.0,40.0,112,33,41,0.0,14657,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,719.6331947244167,2600.0,0.0,33738.0,1,3,10,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22492.0,3,0,3_0,3_0 +3653,8.0,8.0,27.0,111,63,43,0.0,14659,0.0,0.0,100.0,0.0,1.0,3.0,0.0,1.0,1.0,1374.0739312812568,1560.0,0.0,3240.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,3240.0,1,0,1_0,1_0 +3654,0.0,0.0,56.0,400,45,50,0.0,14661,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3523.9992537678263,2236.52,0.0,19820.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13213.333333333334,1,0,1_0,1_1 +3655,6.0,6.0,63.0,112,75,50,0.0,14662,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2564.672141222266,1924.0,0.0,35200.0,5,1,7,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23466.666666666668,3,0,3_0,3_0 +3656,4.0,4.0,70.0,111,72,50,0.0,14663,0.0,40.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1304.7618203460497,1976.0,0.0,57782.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,38521.333333333336,5,0,5,5_0 +3657,11.0,13.0,22.0,111,67,71,0.0,14665,0.0,0.0,0.0,13.0,1.0,4.0,2.0,4.0,2.1,3213.637957662411,0.0,0.0,21544.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10259.047619047618,1,0,1_1,1_0 +3658,4.0,13.0,39.0,111,47,43,0.0,14666,0.0,0.0,60.0,0.0,2.0,3.0,0.0,2.0,1.5,2139.076763602812,3120.0,0.0,124658.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,83105.33333333333,5,0,5,5_0 +3659,0.0,0.0,44.0,120,56,71,0.0,14668,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,425.45912213811124,3120.0,0.0,19811.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9905.5,1,0,1_1,1_1 +3660,1.0,1.0,56.0,300,62,50,1.0,14669,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1898.5708886151479,0.0,19500.0,29221.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19480.666666666668,3,0,3_0,3_1 +3661,2.0,9.0,71.0,111,74,30,0.0,1467,0.0,99999.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2264.14711571556,0.0,0.0,60714.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,60714.0,5,0,5,5_0 +3662,6.0,6.0,59.0,111,38,31,0.0,14670,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1488.377363810035,2386.7999999999997,0.0,144656.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,96437.33333333333,5,0,5,5_0 +3663,0.0,0.0,36.0,112,47,31,0.0,14671,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1442.585692092146,0.0,0.0,32821.0,1,2,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20513.125,3,0,3_0,3_1 +3664,4.0,4.0,58.0,111,52,50,0.0,14672,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3968.699789624086,0.0,0.0,24145.0,1,4,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,24145.0,4,0,4_0,4_0 +3665,3.0,7.0,52.0,211,33,44,0.0,14673,0.0,0.0,190.0,0.0,2.0,7.0,2.0,4.0,2.3,1309.535958579001,0.0,0.0,48131.0,1,2,4,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,20926.521739130436,3,0,3_0,3_0 +3666,4.0,16.0,73.0,300,77,50,0.0,14675,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2183.559758511106,0.0,0.0,13290.0,5,4,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,13290.0,1,0,1_0,1_1 +3667,0.0,3.0,50.0,111,35,41,0.0,14676,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2056.6329954941216,3640.0,0.0,43580.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29053.333333333332,4,0,4_0,4_0 +3668,4.0,12.0,53.0,111,37,30,0.0,14677,0.0,400.0,0.0,166.0,1.0,2.0,0.0,3.0,1.8,4992.427153383707,2094.56,0.0,23496.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,13053.333333333332,1,0,1_1,1_0 +3669,0.0,0.0,33.0,111,56,41,0.0,14678,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1166.364265883547,0.0,0.0,20570.0,4,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12856.25,1,0,1_1,1_0 +3670,1.0,1.0,37.0,111,37,10,1.0,14679,0.0,150.0,100.0,1035.0,2.0,2.0,0.0,2.0,1.5,4049.030489860402,0.0,16400.0,153920.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,102613.33333333333,5,0,5,5_0 +3671,1.0,1.0,45.0,112,64,50,1.0,14680,0.0,150.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2186.897056754675,1820.0,20312.0,41706.0,1,2,8,1.0,4,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,20853.0,3,0,3_0,3_0 +3672,3.0,16.0,63.0,111,78,50,0.0,14681,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2164.6172684859534,0.0,0.0,23498.0,5,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,15665.333333333334,2,0,2_1,2_0 +3673,0.0,0.0,43.0,111,53,44,0.0,14683,0.0,0.0,0.0,535.0,1.0,2.0,0.0,1.0,1.0,3479.1294930027425,0.0,0.0,30303.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30303.0,4,0,4_0,4_0 +3674,2.0,2.0,42.0,111,85,31,0.0,14684,0.0,0.0,100.0,247.0,0.0,3.0,1.0,2.0,1.5,1003.7031782456744,0.0,0.0,17811.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,11874.0,1,0,1_1,1_0 +3675,1.0,20.0,51.0,112,37,50,0.0,14685,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4598.0143159486415,0.0,0.0,53420.0,1,3,10,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,53420.0,5,0,5,5_0 +3676,0.0,0.0,52.0,112,48,50,0.0,14687,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2633.533678071133,3900.52,0.0,42712.0,1,1,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17084.8,2,0,2_0,2_1 +3677,1.0,1.0,44.0,300,46,42,1.0,14689,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2181.498447246563,520.0,29900.0,27558.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27558.0,4,0,4_0,4_1 +3678,2.0,2.0,65.0,400,74,31,0.0,14690,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1510.5229538708354,4524.0,0.0,51873.0,5,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,34582.0,5,0,5,5_1 +3679,2.0,2.0,46.0,111,38,20,0.0,14691,0.0,80.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3023.0370600579167,0.0,0.0,57669.0,1,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,57669.0,5,0,5,5_0 +3680,0.0,0.0,68.0,112,86,33,0.0,14696,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1245.543859957163,2705.56,0.0,55309.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,36872.666666666664,5,0,5,5_1 +3681,0.0,0.0,67.0,111,75,31,0.0,14698,0.0,0.0,0.0,627.0,0.0,2.0,0.0,1.0,1.0,2474.9074494928846,0.0,0.0,23202.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23202.0,3,0,3_0,3_0 +3682,12.0,12.0,49.0,112,85,71,0.0,14699,0.0,70.0,100.0,0.0,2.0,5.0,3.0,4.0,2.3,429.8812518161268,0.0,0.0,23388.0,6,3,7,2.0,2,4.0,1.0,1.0,0,1,0,0,0,1,2.0,2.0,10168.695652173914,1,0,1_1,1_0 +3683,6.0,6.0,57.0,111,55,71,0.0,147,0.0,40.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,2033.057984061535,3432.0,0.0,21510.0,4,1,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,14340.0,2,0,2_0,2_0 +3684,0.0,0.0,74.0,112,74,10,0.0,1470,0.0,0.0,0.0,681.0,0.0,3.0,0.0,1.0,1.0,5181.660999995344,0.0,0.0,37400.0,5,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,37400.0,5,0,5,5_0 +3685,7.0,7.0,44.0,111,52,50,0.0,14700,0.0,700.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1875.9820124554788,0.0,0.0,46248.0,1,2,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,22022.85714285714,3,0,3_0,3_0 +3686,0.0,0.0,32.0,300,34,30,0.0,14701,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3091.132477206951,3120.0,0.0,38670.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18414.285714285714,2,0,2_0,2_1 +3687,2.0,2.0,84.0,111,77,70,0.0,14703,0.0,350.0,0.0,307.0,0.0,4.0,0.0,1.0,1.0,4256.786531548971,0.0,0.0,14830.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,14830.0,2,0,2_0,2_0 +3688,11.0,16.0,59.0,111,62,50,0.0,14705,0.0,500.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1705.9887570251617,238.68,0.0,25530.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25530.0,4,0,4_0,4_0 +3689,2.0,19.0,80.0,111,71,50,0.0,14706,0.0,250.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1293.9379957676572,0.0,0.0,20826.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,13884.0,1,0,1_0,1_0 +3690,0.0,5.0,61.0,111,42,30,2.0,14709,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2151.7003123757518,0.0,3000.0,27467.0,1,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27467.0,4,0,4_0,4_0 +3691,12.0,12.0,44.0,111,63,50,0.0,1471,0.0,0.0,0.0,72.0,1.0,4.0,3.0,5.0,2.4,922.537495804718,0.0,0.0,28438.0,4,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,11849.166666666668,1,0,1_1,1_0 +3692,0.0,0.0,76.0,111,74,20,0.0,14710,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2919.9710416666676,0.0,0.0,30180.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30180.0,4,0,4_0,4_0 +3693,3.0,3.0,58.0,111,63,50,0.0,14711,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2457.3740046161333,0.0,0.0,7453.0,4,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,7453.0,1,0,1_1,1_0 +3694,13.0,15.0,42.0,111,56,60,0.0,14712,0.0,360.0,80.0,0.0,2.0,3.0,2.0,4.0,2.1,4466.723558631738,4680.0,0.0,40026.0,1,4,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,19060.0,3,0,3_0,3_0 +3695,1.0,11.0,30.0,111,62,50,2.0,14713,0.0,200133.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3439.9095625574105,3120.0,5900.0,42470.0,1,2,6,5.0,4,4.0,0.0,1.0,0,0,1,0,0,0,0.0,4.0,20223.809523809523,3,0,3_0,3_0 +3696,0.0,0.0,66.0,111,35,70,0.0,14714,0.0,0.0,0.0,1201.0,2.0,4.0,0.0,2.0,1.5,1723.7830359355203,2339.48,0.0,16878.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11252.0,1,0,1_0,1_0 +3697,1.0,7.0,35.0,111,38,12,2.0,14718,0.0,410.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2888.321629742432,0.0,9000.0,89120.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,42438.09523809524,5,0,5,5_0 +3698,1.0,1.0,50.0,120,52,50,1.0,1472,0.0,200.0,180.0,0.0,1.0,4.0,2.0,3.0,2.0,910.0875331521262,1560.0,11000.0,31466.0,1,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,15733.0,2,0,2_1,2_1 +3699,11.0,14.0,59.0,111,77,44,0.0,14720,0.0,200.0,80.0,0.0,0.0,4.0,0.0,1.0,1.0,2649.6058173015945,0.0,0.0,12662.0,7,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,12662.0,1,0,1_1,1_0 +3700,0.0,0.0,31.0,111,54,41,0.0,14722,0.0,0.0,0.0,600.0,1.0,3.0,0.0,1.0,1.0,2422.0122355624444,0.0,0.0,8030.0,4,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,8030.0,1,0,1_0,1_0 +3701,0.0,0.0,51.0,221,52,50,0.0,14723,0.0,0.0,0.0,190.0,1.0,3.0,1.0,2.0,1.3,596.8132098708564,0.0,0.0,20976.0,1,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16135.384615384615,2,0,2_0,2_0 +3702,0.0,0.0,37.0,111,46,31,0.0,14724,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3044.8396950312153,0.0,0.0,27630.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27630.0,4,0,4_0,4_0 +3703,3.0,3.0,56.0,111,52,41,0.0,14725,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1486.9854447894452,0.0,0.0,15980.0,1,1,4,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,15980.0,2,0,2_0,2_0 +3704,20.0,20.0,37.0,111,85,50,0.0,14727,0.0,0.0,0.0,40.0,0.0,3.0,4.0,6.0,2.9,1126.4956241674433,0.0,0.0,30145.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10394.827586206897,1,0,1_1,1_0 +3705,5.0,7.0,43.0,120,65,50,0.0,14729,0.0,160.0,0.0,0.0,1.0,4.0,3.0,5.0,2.6,1823.6972569460759,1560.0,0.0,33101.0,1,3,0,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,12731.153846153846,1,0,1_1,1_0 +3706,5.0,11.0,79.0,400,78,71,0.0,1473,0.0,670.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2322.9532094123556,0.0,0.0,18379.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18379.0,2,0,2_0,2_1 +3707,2.0,2.0,26.0,111,34,20,0.0,14730,0.0,0.0,0.0,750.0,2.0,4.0,0.0,2.0,1.5,3502.5193352439364,0.0,0.0,61786.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,41190.666666666664,5,0,5,5_0 +3708,2.0,3.0,44.0,400,31,30,0.0,14731,0.0,350.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2558.6814210921443,1300.0,0.0,70410.0,1,1,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,46940.0,5,0,5,5_1 +3709,4.0,4.0,52.0,112,38,31,0.0,14733,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1631.214765922992,0.0,0.0,77825.0,1,1,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38912.5,5,0,5,5_1 +3710,11.0,11.0,31.0,111,31,30,0.0,14734,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2812.626466308352,0.0,0.0,40120.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26746.666666666668,4,0,4_0,4_0 +3711,2.0,2.0,41.0,400,85,50,0.0,14735,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,667.2561057664201,0.0,0.0,22549.0,4,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,12527.222222222223,1,0,1_1,1_1 +3712,8.0,10.0,62.0,112,53,71,0.0,14736,0.0,700.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2737.6737839166867,0.0,0.0,6425.0,1,4,10,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,6425.0,1,0,1_0,1_1 +3713,10.0,10.0,75.0,111,75,70,0.0,14738,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2170.942444294793,0.0,0.0,16820.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16820.0,2,0,2_0,2_0 +3714,2.0,9.0,62.0,111,34,20,0.0,1474,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1866.1522311609438,0.0,0.0,36116.0,1,1,7,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,36116.0,5,0,5,5_0 +3715,3.0,6.0,81.0,111,72,50,0.0,14740,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3450.8884516326543,0.0,0.0,17804.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17804.0,2,0,2_0,2_0 +3716,2.0,16.0,43.0,112,54,31,0.0,14741,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1881.5344152208575,0.0,0.0,50517.0,1,2,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21963.913043478264,3,0,3_0,3_0 +3717,0.0,0.0,76.0,112,77,70,0.0,14742,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5624.551807904083,0.0,0.0,9301.0,5,1,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9301.0,1,0,1_0,1_0 +3718,4.0,7.0,60.0,111,33,20,0.0,14743,0.0,0.0,35.0,0.0,1.0,5.0,0.0,2.0,1.5,1857.4745708889639,0.0,0.0,101899.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,67932.66666666667,5,0,5,5_0 +3719,0.0,0.0,53.0,111,37,41,0.0,14744,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1829.3043473282294,2964.52,0.0,72497.0,1,2,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,48331.333333333336,5,0,5,5_0 +3720,5.0,5.0,51.0,112,47,50,0.0,14745,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1699.7032883384104,2782.0,0.0,65732.0,1,2,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36517.777777777774,5,0,5,5_1 +3721,0.0,0.0,45.0,120,21,50,0.0,14746,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,4077.5783197447045,3656.12,0.0,70940.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35470.0,5,0,5,5_1 +3722,14.0,18.0,49.0,211,46,31,0.0,14747,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2275.8450930686963,1560.0,0.0,37811.0,1,3,3,4.0,4,4.0,0.0,0.0,0,0,1,0,0,0,4.0,0.0,18905.5,3,0,3_0,3_0 +3723,0.0,0.0,52.0,111,62,41,0.0,14748,0.0,0.0,0.0,555.0,2.0,3.0,0.0,2.0,1.5,4174.718391405836,182.0,0.0,41890.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27926.666666666668,4,0,4_0,4_0 +3724,11.0,15.0,90.0,111,72,70,0.0,14749,0.0,440.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2384.7204438580025,0.0,0.0,18310.0,5,4,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18310.0,2,0,2_0,2_0 +3725,3.0,11.0,51.0,111,46,71,0.0,14751,0.0,0.0,500.0,0.0,2.0,5.0,0.0,2.0,1.5,1512.9664446378133,0.0,0.0,45480.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,30320.0,4,0,4_0,4_0 +3726,8.0,15.0,77.0,112,78,70,0.0,14752,0.0,0.0,150.0,0.0,0.0,7.0,0.0,2.0,1.5,2690.7418108471693,0.0,0.0,34030.0,5,1,8,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22686.666666666668,3,0,3_0,3_0 +3727,4.0,17.0,58.0,300,63,60,0.0,14753,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2072.0160928158793,3291.08,0.0,44897.0,4,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22448.5,3,0,3_0,3_1 +3728,0.0,0.0,81.0,300,71,71,0.0,14755,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2455.909219841929,1717.56,0.0,10835.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10835.0,1,0,1_0,1_1 +3729,0.0,0.0,28.0,111,38,0,0.0,14756,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3800.719711928588,0.0,0.0,41870.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41870.0,5,0,5,5_0 +3730,0.0,5.0,46.0,111,64,43,2.0,14757,0.0,0.0,180.0,688.0,2.0,3.0,1.0,3.0,2.0,2433.561554192182,832.0,1500.0,48610.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24305.0,4,0,4_0,4_0 +3731,0.0,0.0,29.0,112,64,43,0.0,14758,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,1720.901201898867,0.0,0.0,44520.0,1,3,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29680.0,4,0,4_0,4_1 +3732,0.0,0.0,54.0,112,37,42,0.0,14759,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1996.257883903427,0.0,0.0,36720.0,1,2,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24480.0,4,0,4_0,4_1 +3733,0.0,0.0,28.0,300,62,50,0.0,14760,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,875.5225702721634,0.0,0.0,33045.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18358.333333333332,2,0,2_0,2_1 +3734,2.0,2.0,38.0,111,46,31,0.0,14761,0.0,99999.0,0.0,530.0,1.0,3.0,1.0,2.0,1.3,680.8381196309589,0.0,0.0,24600.0,1,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,18923.076923076922,3,0,3_0,3_0 +3735,17.0,23.0,57.0,111,55,70,0.0,14762,0.0,500.0,0.0,316.0,2.0,4.0,0.0,2.0,1.5,2437.19648741115,2392.0,0.0,37964.0,1,3,5,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,25309.333333333332,4,0,4_0,4_0 +3736,1.0,3.0,63.0,111,75,71,0.0,14763,0.0,0.0,300.0,0.0,0.0,5.0,0.0,2.0,1.5,2010.4102103141659,0.0,0.0,34604.0,5,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23069.333333333332,3,0,3_0,3_0 +3737,0.0,15.0,45.0,111,46,31,0.0,14764,0.0,0.0,260.0,0.0,1.0,4.0,0.0,1.0,1.0,2821.5829638688006,0.0,0.0,33822.0,1,2,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,33822.0,5,0,5,5_0 +3738,8.0,10.0,86.0,111,74,10,0.0,14765,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2640.134822762633,1557.3999999999999,0.0,47918.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,31945.333333333332,5,0,5,5_0 +3739,0.0,0.0,71.0,111,74,20,0.0,14767,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1600.0369450501366,1589.64,0.0,59599.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39732.666666666664,5,0,5,5_0 +3740,1.0,6.0,43.0,111,68,71,2.0,14768,0.0,100019.0,0.0,280.0,1.0,2.0,0.0,1.0,1.0,2412.684732724771,1040.0,9000.0,9195.0,1,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,9195.0,1,0,1_1,1_0 +3741,6.0,6.0,92.0,111,86,70,0.0,14769,0.0,99999.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1776.2731594371262,0.0,0.0,34342.0,5,4,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,34342.0,5,0,5,5_0 +3742,8.0,8.0,73.0,111,74,31,0.0,1477,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2138.7043038122824,2445.04,0.0,23255.0,5,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23255.0,3,0,3_0,3_0 +3743,2.0,3.0,62.0,111,38,12,0.0,14771,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1707.9230314951706,0.0,0.0,109080.0,1,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,72720.0,5,0,5,5_0 +3744,0.0,0.0,69.0,111,75,50,0.0,14772,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2176.4133707192373,0.0,0.0,19946.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13297.333333333334,1,0,1_0,1_0 +3745,0.0,0.0,78.0,111,72,50,2.0,14774,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3339.058426929462,0.0,5700.0,16407.0,5,1,7,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,16407.0,2,0,2_0,2_0 +3746,6.0,8.0,32.0,111,55,71,0.0,14775,0.0,0.0,0.0,92.0,1.0,4.0,2.0,3.0,1.6,782.2099840877812,0.0,0.0,20616.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12885.0,1,0,1_1,1_0 +3747,1.0,11.0,41.0,111,62,50,2.0,14776,0.0,0.0,120.0,429.0,1.0,2.0,0.0,1.0,1.0,4188.364089735429,0.0,3500.0,22560.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22560.0,3,0,3_0,3_0 +3748,0.0,0.0,51.0,300,13,31,0.0,14777,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1526.974952905222,0.0,0.0,36910.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18455.0,2,0,2_0,2_1 +3749,5.0,5.0,47.0,111,56,71,0.0,14778,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3479.9270044778086,0.0,0.0,11194.0,4,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11194.0,1,0,1_1,1_0 +3750,0.0,0.0,47.0,111,42,30,0.0,14779,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1178.482445629905,0.0,0.0,44990.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28118.75,4,0,4_0,4_0 +3751,7.0,11.0,54.0,111,75,42,0.0,1478,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2041.939112933377,2624.96,0.0,90211.0,5,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,45105.5,5,0,5,5_0 +3752,0.0,0.0,36.0,111,54,42,0.0,14780,0.0,0.0,0.0,620.0,2.0,4.0,2.0,4.0,2.1,1049.0840338701225,6169.280000000001,0.0,61620.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29342.85714285714,4,0,4_0,4_0 +3753,0.0,0.0,44.0,111,55,50,0.0,14781,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1551.2481979686713,0.0,0.0,44623.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29748.666666666668,4,0,4_0,4_0 +3754,7.0,7.0,60.0,111,62,50,0.0,14784,0.0,99999.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2024.2219363403754,2600.0,0.0,41358.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27572.0,4,0,4_0,4_0 +3755,12.0,13.0,36.0,111,52,50,0.0,14785,0.0,0.0,350.0,284.0,1.0,4.0,2.0,3.0,1.6,661.0396961934069,0.0,0.0,25058.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,15661.25,2,0,2_1,2_0 +3756,7.0,7.0,27.0,112,67,71,0.0,14787,0.0,620.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,1689.440456276128,0.0,0.0,26080.0,1,1,10,4.0,5,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,10866.666666666668,1,0,1_0,1_0 +3757,10.0,13.0,61.0,111,75,31,0.0,1479,0.0,140.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2620.600205651358,10809.24,0.0,83013.0,5,1,8,6.0,4,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,33205.2,5,0,5,5_0 +3758,1.0,11.0,44.0,112,65,50,2.0,14790,0.0,0.0,0.0,297.0,1.0,3.0,2.0,3.0,1.8,775.4570320392926,0.0,1000.0,29796.0,1,3,10,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,16553.333333333332,2,0,2_1,2_0 +3759,1.0,16.0,33.0,111,37,20,2.0,14791,0.0,40.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2614.631987625085,3041.48,1200.0,90814.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,43244.7619047619,5,0,5,5_0 +3760,2.0,2.0,26.0,112,85,42,0.0,14792,0.0,99999.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,3555.5943712963526,0.0,0.0,16590.0,8,4,10,0.0,2,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,10368.75,1,0,1_0,1_1 +3761,0.0,0.0,28.0,112,42,43,0.0,14793,0.0,0.0,0.0,500.0,2.0,3.0,1.0,3.0,1.8,2578.0859092720843,0.0,0.0,31879.0,1,3,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17710.555555555555,2,0,2_0,2_1 +3762,14.0,14.0,84.0,211,77,70,0.0,14794,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1780.7511841532285,0.0,0.0,41263.0,5,1,2,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27508.666666666668,4,0,4_0,4_0 +3763,0.0,7.0,31.0,111,85,71,0.0,14796,0.0,0.0,0.0,0.0,0.0,4.0,4.0,5.0,2.2,2684.5062160956904,0.0,0.0,24735.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11243.181818181818,1,0,1_1,1_0 +3764,10.0,10.0,47.0,221,38,50,0.0,14798,0.0,180.0,60.0,0.0,2.0,5.0,0.0,2.0,1.5,2097.713481773097,0.0,0.0,53634.0,1,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,35756.0,5,0,5,5_0 +3765,11.0,11.0,30.0,111,46,20,0.0,14799,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2771.9629016829426,2262.0,0.0,27890.0,1,3,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,18593.333333333332,2,0,2_1,2_0 +3766,0.0,2.0,60.0,112,78,70,2.0,148,0.0,50.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5023.5508779932015,0.0,14500.0,15747.0,5,1,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15747.0,2,0,2_0,2_0 +3767,0.0,0.0,64.0,112,77,71,0.0,1480,0.0,0.0,0.0,105.0,0.0,4.0,0.0,1.0,1.0,2515.5463989962063,0.0,0.0,14052.0,5,3,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14052.0,2,0,2_1,2_0 +3768,0.0,0.0,34.0,111,63,50,0.0,14800,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2421.0282255125117,1159.6000000000001,0.0,35019.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16675.714285714286,2,0,2_0,2_0 +3769,0.0,0.0,58.0,300,54,41,0.0,14801,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2397.5750663201266,0.0,0.0,47078.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31385.333333333332,4,0,4_0,4_1 +3770,1.0,11.0,43.0,120,65,50,2.0,14802,0.0,99999.0,0.0,0.0,2.0,6.0,6.0,8.0,3.7,1668.0001348018059,5221.84,6500.0,39460.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10664.864864864865,1,0,1_0,1_1 +3771,1.0,8.0,93.0,111,77,70,0.0,14803,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,5125.379912038388,0.0,0.0,10376.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,10376.0,1,0,1_0,1_0 +3772,6.0,6.0,75.0,111,21,50,0.0,14809,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2147.3712988733837,0.0,0.0,20515.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20515.0,3,0,3_0,3_0 +3773,12.0,12.0,29.0,211,85,71,0.0,1481,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,1.9,608.6442122306563,0.0,0.0,16482.0,6,3,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,8674.736842105263,1,0,1_1,1_0 +3774,1.0,1.0,59.0,300,69,71,0.0,14813,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2437.385910778981,2080.0,0.0,32022.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21348.0,3,0,3_0,3_1 +3775,0.0,0.0,77.0,112,86,70,0.0,14816,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2151.6065377070395,0.0,0.0,13800.0,5,1,6,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13800.0,1,0,1_0,1_0 +3776,5.0,5.0,54.0,111,67,71,0.0,14817,0.0,511.0,0.0,400.0,2.0,5.0,0.0,2.0,1.5,2381.2234141498825,0.0,0.0,31330.0,1,3,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,20886.666666666668,3,0,3_0,3_0 +3777,3.0,19.0,64.0,111,77,41,0.0,14818,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1619.7725420523236,2028.0,0.0,13290.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,13290.0,1,0,1_0,1_0 +3778,0.0,0.0,65.0,112,21,44,0.0,14820,0.0,0.0,0.0,324.0,1.0,3.0,0.0,1.0,1.0,2562.625893423558,1055.6000000000001,0.0,12903.0,1,3,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12903.0,1,0,1_1,1_0 +3779,0.0,2.0,30.0,112,47,20,0.0,14821,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3148.5907743259327,3009.76,0.0,25581.0,1,3,9,1.0,1,4.0,0.0,1.0,0,1,0,0,0,0,3.0,1.0,25581.0,4,0,4_0,4_0 +3780,0.0,0.0,38.0,111,52,41,0.0,14822,0.0,0.0,0.0,63.0,1.0,3.0,2.0,3.0,1.6,1157.10988836701,0.0,0.0,24098.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15061.25,2,0,2_1,2_0 +3781,6.0,6.0,53.0,112,46,50,0.0,14823,0.0,199998.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3212.2355207740784,0.0,0.0,25260.0,1,2,9,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25260.0,4,0,4_0,4_0 +3782,0.0,0.0,51.0,111,64,71,0.0,14824,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2593.8140819113974,0.0,0.0,19759.0,1,2,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19759.0,3,0,3_0,3_0 +3783,11.0,16.0,89.0,300,78,71,0.0,14825,0.0,1550.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1808.34562075228,1498.64,0.0,22280.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14853.333333333334,2,0,2_0,2_1 +3784,3.0,3.0,69.0,111,74,31,0.0,14826,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3208.6212294328584,3641.04,0.0,53400.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,35600.0,5,0,5,5_0 +3785,16.0,16.0,70.0,111,72,50,0.0,14828,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,2077.060278126936,626.6,0.0,19707.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13138.0,1,0,1_0,1_0 +3786,2.0,11.0,69.0,111,75,70,0.0,14829,0.0,0.0,10.0,0.0,0.0,5.0,0.0,2.0,1.5,1538.9707430549013,0.0,0.0,36633.0,5,1,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,24422.0,4,0,4_0,4_0 +3787,0.0,2.0,72.0,111,75,30,0.0,14830,0.0,0.0,30.0,0.0,0.0,4.0,0.0,1.0,1.0,1899.289607600999,0.0,0.0,32019.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,32019.0,5,0,5,5_0 +3788,0.0,0.0,60.0,111,47,42,0.0,14832,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1221.8020374041403,4342.52,0.0,64299.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,42866.0,5,0,5,5_0 +3789,6.0,9.0,66.0,111,74,70,0.0,14833,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2135.5810110553034,0.0,0.0,23260.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15506.666666666666,2,0,2_0,2_0 +3790,0.0,0.0,22.0,111,34,41,0.0,14834,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3309.0317288030406,0.0,0.0,22320.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,22320.0,3,0,3_1,3_0 +3791,4.0,9.0,51.0,111,52,50,0.0,14836,0.0,600.0,0.0,384.0,2.0,4.0,0.0,2.0,1.5,2907.662925027307,1820.0,0.0,25113.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16742.0,2,0,2_0,2_0 +3792,1.0,1.0,66.0,211,72,50,1.0,14837,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2092.399181215357,0.0,11500.0,39712.0,5,2,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19856.0,3,0,3_0,3_0 +3793,0.0,0.0,30.0,111,38,12,0.0,14838,0.0,0.0,0.0,850.0,2.0,4.0,0.0,2.0,1.5,2111.810896615812,0.0,0.0,55324.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,36882.666666666664,5,0,5,5_0 +3794,5.0,15.0,54.0,111,56,71,0.0,14839,0.0,0.0,99999.0,500.0,2.0,4.0,0.0,2.0,1.5,1528.9612366672384,3900.0,0.0,22151.0,1,3,7,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,14767.333333333334,2,0,2_0,2_0 +3795,7.0,7.0,70.0,211,74,50,0.0,1484,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4947.744731213622,728.0,0.0,28603.0,5,2,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28603.0,4,0,4_0,4_0 +3796,2.0,2.0,88.0,111,75,70,1.0,14840,0.0,0.0,100.0,0.0,0.0,4.0,0.0,2.0,1.5,2751.4850915254137,1560.0,20850.0,51286.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,34190.666666666664,5,0,5,5_0 +3797,0.0,0.0,59.0,111,46,60,1.0,14841,0.0,90.0,120.0,0.0,2.0,4.0,1.0,3.0,2.0,2317.124083821823,3759.08,12500.0,28263.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,14131.5,2,0,2_0,2_0 +3798,10.0,10.0,57.0,111,37,20,0.0,14842,0.0,420.0,0.0,810.0,2.0,3.0,1.0,2.0,1.5,1545.776436762866,4676.36,0.0,47214.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,31476.0,4,0,4_0,4_0 +3799,6.0,7.0,35.0,111,63,71,0.0,14843,0.0,40.0,30.0,500.0,1.0,2.0,0.0,1.0,1.0,4512.941857143431,0.0,0.0,17300.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,17300.0,2,0,2_0,2_0 +3800,0.0,0.0,81.0,111,75,50,0.0,14844,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2014.6699097253324,0.0,0.0,27222.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18148.0,2,0,2_0,2_0 +3801,1.0,3.0,65.0,111,75,50,2.0,14845,0.0,0.0,0.0,364.0,0.0,3.0,0.0,1.0,1.0,2397.8316923996954,0.0,8000.0,25595.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25595.0,4,0,4_0,4_0 +3802,0.0,0.0,80.0,111,86,70,0.0,14846,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2286.858548671719,2611.44,0.0,28605.0,5,1,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19070.0,3,0,3_0,3_0 +3803,0.0,0.0,46.0,120,56,60,0.0,14847,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,57.25013384482004,4693.52,0.0,18610.0,6,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9305.0,1,0,1_0,1_1 +3804,1.0,1.0,28.0,111,54,31,0.0,14848,0.0,0.0,250.0,0.0,1.0,2.0,0.0,1.0,1.0,3437.0111018291386,2860.0,0.0,21656.0,1,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21656.0,3,0,3_0,3_0 +3805,4.0,4.0,62.0,111,78,70,0.0,14849,0.0,360.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2991.9875650251033,2080.0,0.0,14360.0,5,3,8,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,14360.0,2,0,2_0,2_0 +3806,1.0,5.0,40.0,400,47,31,0.0,1485,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2239.415018195367,6157.32,0.0,55360.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26361.90476190476,4,0,4_0,4_1 +3807,0.0,0.0,45.0,120,62,50,0.0,14850,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2232.290146840436,6014.32,0.0,71561.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31113.478260869568,4,0,4_0,4_1 +3808,21.0,21.0,82.0,111,77,50,0.0,14851,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3395.4568287170673,0.0,0.0,19817.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19817.0,3,0,3_0,3_0 +3809,3.0,3.0,41.0,111,43,50,0.0,14852,0.0,0.0,0.0,333.0,1.0,4.0,2.0,3.0,2.0,817.1298920919539,520.0,0.0,29491.0,1,3,4,3.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,14745.5,2,0,2_1,2_0 +3810,6.0,10.0,67.0,400,11,50,0.0,14853,0.0,80.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1744.9242197445476,0.0,0.0,-26236.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,-17490.666666666668,1,0,1_0,1_1 +3811,12.0,12.0,81.0,112,86,71,0.0,14854,0.0,0.0,150.0,0.0,0.0,5.0,0.0,1.0,1.0,2070.5311373631703,0.0,0.0,13810.0,5,1,7,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13810.0,1,0,1_0,1_1 +3812,6.0,6.0,67.0,111,75,41,0.0,14855,0.0,0.0,600.0,0.0,0.0,8.0,0.0,2.0,1.5,1681.0002267585883,1691.0400000000002,0.0,41430.0,5,1,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,27620.0,4,0,4_0,4_0 +3813,3.0,3.0,48.0,111,52,50,0.0,14856,0.0,0.0,10.0,236.0,1.0,4.0,3.0,5.0,2.6,2527.3670775784954,0.0,0.0,34455.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,13251.923076923076,1,0,1_1,1_0 +3814,2.0,2.0,43.0,120,38,31,0.0,14858,0.0,150.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2376.9804594321567,4160.0,0.0,66185.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28776.08695652174,4,0,4_0,4_1 +3815,0.0,10.0,48.0,112,55,43,0.0,14859,0.0,200.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1488.9519025323589,2607.28,0.0,63380.0,1,1,10,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,25352.0,4,0,4_0,4_0 +3816,6.0,6.0,59.0,111,52,44,0.0,1486,0.0,199998.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2245.61948380123,0.0,0.0,17453.0,1,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,11635.333333333334,1,0,1_1,1_0 +3817,6.0,6.0,65.0,111,78,50,0.0,14860,0.0,0.0,150.0,0.0,1.0,3.0,0.0,2.0,1.5,2349.111058443521,0.0,0.0,52750.0,5,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,35166.666666666664,5,0,5,5_0 +3818,0.0,0.0,44.0,112,37,12,0.0,14862,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2187.743974361411,1875.64,0.0,67038.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31922.85714285714,5,0,5,5_1 +3819,7.0,8.0,66.0,111,75,60,0.0,14863,0.0,0.0,0.0,600.0,0.0,3.0,0.0,1.0,1.0,2108.0911622283425,0.0,0.0,29343.0,5,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,29343.0,4,0,4_0,4_0 +3820,13.0,13.0,38.0,111,54,30,0.0,14864,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.1,2238.395960493727,2600.0,0.0,49110.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23385.714285714286,3,0,3_0,3_0 +3821,0.0,14.0,69.0,111,74,12,0.0,14865,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1910.757160684263,4957.16,0.0,52910.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,35273.333333333336,5,0,5,5_0 +3822,0.0,0.0,27.0,111,47,50,0.0,14866,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3160.8413058665346,0.0,0.0,34607.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23071.333333333332,3,0,3_0,3_0 +3823,0.0,3.0,70.0,211,77,71,0.0,14867,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1409.717172653112,1648.3999999999999,0.0,33275.0,5,1,2,3.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,22183.333333333332,3,0,3_0,3_0 +3824,7.0,9.0,77.0,111,78,50,0.0,14869,0.0,180.0,50.0,0.0,0.0,3.0,0.0,1.0,1.0,3157.6463344842577,1911.0,0.0,24929.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24929.0,4,0,4_0,4_0 +3825,0.0,8.0,44.0,111,46,20,0.0,1487,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,1704.7137600745884,2420.6,0.0,28230.0,1,1,7,6.0,2,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21715.384615384613,3,0,3_0,3_0 +3826,0.0,0.0,75.0,112,34,10,0.0,14871,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2392.9712191284734,0.0,0.0,122162.0,1,1,10,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,122162.0,5,0,5,5_1 +3827,15.0,15.0,51.0,211,52,50,0.0,14873,0.0,0.0,99999.0,0.0,1.0,6.0,0.0,2.0,1.5,1666.032832062275,780.0,0.0,26940.0,1,1,2,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17960.0,2,0,2_0,2_0 +3828,0.0,0.0,69.0,120,78,71,0.0,14874,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3067.762147853628,0.0,0.0,23343.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23343.0,3,0,3_0,3_1 +3829,7.0,10.0,53.0,112,74,31,0.0,14875,0.0,0.0,0.0,0.0,0.0,5.0,2.0,3.0,2.0,661.7742263140207,1305.2,0.0,29640.0,7,1,10,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14820.0,2,0,2_0,2_1 +3830,2.0,24.0,90.0,400,71,71,0.0,14878,0.0,0.0,16.0,0.0,0.0,4.0,0.0,2.0,1.5,1601.910670501488,0.0,0.0,15927.0,5,4,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,10618.0,1,0,1_0,1_1 +3831,4.0,4.0,65.0,112,78,70,0.0,14879,0.0,0.0,60.0,354.0,1.0,4.0,0.0,2.0,1.5,3527.7436886574524,0.0,0.0,20654.0,5,3,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,13769.333333333334,1,0,1_1,1_1 +3832,1.0,1.0,86.0,111,75,70,0.0,1488,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1834.1199864806956,0.0,0.0,54530.0,5,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,36353.333333333336,5,0,5,5_0 +3833,1.0,1.0,68.0,112,72,31,1.0,14881,0.0,0.0,310.0,0.0,0.0,6.0,0.0,2.0,1.5,1212.8104295680403,0.0,36214.0,42437.0,5,1,6,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,28291.333333333332,4,0,4_0,4_1 +3834,1.0,2.0,35.0,112,54,31,2.0,14882,0.0,400.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2038.019348221739,0.0,13985.0,26631.0,1,1,10,1.0,2,1.0,1.0,1.0,0,1,0,0,0,1,0.0,1.0,20485.384615384613,3,0,3_1,3_0 +3835,0.0,0.0,37.0,112,64,50,0.0,14884,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2921.3830418185544,1040.52,0.0,31541.0,1,2,6,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15019.52380952381,2,0,2_0,2_0 +3836,0.0,6.0,24.0,111,62,50,0.0,14885,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2528.2091195483454,0.0,0.0,17662.0,1,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,17662.0,2,0,2_1,2_0 +3837,0.0,0.0,58.0,111,54,43,0.0,14886,0.0,0.0,0.0,386.0,1.0,3.0,1.0,2.0,1.5,714.2282920385456,0.0,0.0,24369.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16246.0,2,0,2_0,2_0 +3838,6.0,6.0,68.0,211,77,70,0.0,14887,0.0,0.0,0.0,530.0,0.0,3.0,0.0,1.0,1.0,4775.011726688963,0.0,0.0,14116.0,5,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14116.0,2,0,2_0,2_0 +3839,0.0,0.0,47.0,112,45,20,0.0,14888,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,804.657881907564,3225.04,0.0,46298.0,1,1,9,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30865.333333333332,4,0,4_0,4_0 +3840,2.0,14.0,86.0,112,72,70,0.0,1489,0.0,0.0,540.0,0.0,0.0,3.0,0.0,1.0,1.0,3730.422520773693,1738.8799999999999,0.0,20140.0,5,3,6,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,20140.0,3,0,3_0,3_1 +3841,7.0,7.0,83.0,111,77,70,0.0,14890,0.0,100.0,0.0,230.0,0.0,2.0,0.0,1.0,1.0,2815.038681388092,0.0,0.0,14820.0,5,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,14820.0,2,0,2_0,2_0 +3842,6.0,9.0,42.0,112,43,33,0.0,14892,0.0,250.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1874.3619627550888,4576.0,0.0,57316.0,1,1,4,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28658.0,4,0,4_0,4_1 +3843,2.0,2.0,82.0,111,75,70,0.0,14895,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3735.010069162234,0.0,0.0,23966.0,5,1,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,23966.0,4,0,4_0,4_0 +3844,0.0,0.0,67.0,112,74,31,0.0,14896,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1810.3811156268407,0.0,0.0,42759.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28506.0,4,0,4_0,4_1 +3845,0.0,0.0,65.0,112,78,60,0.0,14897,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1647.9700615255272,0.0,0.0,12788.0,5,2,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12788.0,1,0,1_0,1_1 +3846,5.0,7.0,69.0,111,78,50,0.0,14898,0.0,600.0,50.0,0.0,0.0,4.0,0.0,2.0,1.5,1923.7309714673286,0.0,0.0,32839.0,5,1,10,8.0,3,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,21892.666666666668,3,0,3_0,3_0 +3847,11.0,11.0,63.0,111,,50,0.0,14899,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1695.5582673590875,2149.6800000000003,0.0,21330.0,8,1,8,6.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,21330.0,3,0,3_0,3_0 +3848,1.0,1.0,63.0,111,75,70,0.0,14900,0.0,0.0,100.0,0.0,0.0,4.0,0.0,2.0,1.5,2067.883950253183,2340.0,0.0,20160.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,13440.0,1,0,1_0,1_0 +3849,1.0,3.0,72.0,111,74,10,0.0,14901,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2641.764408426064,4004.5200000000004,0.0,115525.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,77016.66666666667,5,0,5,5_0 +3850,7.0,7.0,45.0,300,85,43,0.0,14902,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,864.7922164810271,0.0,0.0,8126.0,7,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,6250.7692307692305,1,0,1_1,1_1 +3851,9.0,10.0,51.0,111,54,31,0.0,14904,0.0,300.0,100.0,0.0,1.0,4.0,0.0,1.0,1.0,1313.3032548242031,2419.56,0.0,29695.0,1,1,7,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,29695.0,4,0,4_0,4_0 +3852,1.0,56.0,25.0,111,56,41,2.0,14905,0.0,280.0,0.0,238.0,2.0,2.0,0.0,2.0,1.5,3893.2900515477504,2747.16,6000.0,37460.0,1,3,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,1,1.0,2.0,24973.333333333332,4,0,4_1,4_0 +3853,8.0,8.0,39.0,111,63,50,0.0,14906,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,3647.31114163968,0.0,0.0,19710.0,1,3,6,4.0,1,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,19710.0,3,0,3_0,3_0 +3854,6.0,10.0,79.0,111,77,50,0.0,14908,0.0,0.0,40.0,0.0,0.0,4.0,0.0,1.0,1.0,2096.6973258229627,0.0,0.0,18230.0,5,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18230.0,2,0,2_0,2_0 +3855,0.0,5.0,81.0,111,74,41,2.0,14909,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2004.3709332495307,3540.16,13850.0,51948.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,34632.0,5,0,5,5_0 +3856,7.0,9.0,38.0,112,46,31,0.0,14911,0.0,400.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2425.2780680833316,0.0,0.0,39826.0,1,3,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26550.666666666668,4,0,4_0,4_1 +3857,12.0,13.0,46.0,111,68,50,0.0,14912,0.0,0.0,0.0,70.0,1.0,2.0,1.0,2.0,1.5,844.2874179321636,2693.6,0.0,21551.0,4,3,5,4.0,2,3.0,0.0,0.0,0,0,1,0,0,1,1.0,2.0,14367.333333333334,2,0,2_1,2_0 +3858,3.0,5.0,41.0,111,37,41,0.0,14913,0.0,0.0,0.0,378.0,2.0,2.0,1.0,2.0,1.5,5130.925550917156,0.0,0.0,24937.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,16624.666666666668,2,0,2_1,2_0 +3859,2.0,3.0,60.0,111,34,30,0.0,14914,0.0,0.0,40.0,0.0,2.0,5.0,0.0,2.0,1.5,1816.8003523498758,2366.52,0.0,51119.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,34079.333333333336,5,0,5,5_0 +3860,9.0,11.0,66.0,211,78,50,0.0,14916,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,3633.448775227638,0.0,0.0,48892.0,5,3,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19556.8,3,0,3_0,3_0 +3861,0.0,0.0,64.0,120,75,71,0.0,14917,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1166.7416376007584,0.0,0.0,37040.0,5,1,0,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24693.333333333332,4,0,4_0,4_0 +3862,3.0,3.0,31.0,112,43,33,0.0,14920,0.0,99999.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2002.9493596019265,0.0,0.0,44925.0,1,2,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,24958.333333333332,4,0,4_0,4_0 +3863,3.0,11.0,70.0,111,75,70,0.0,14921,0.0,500.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3895.6668868711035,0.0,0.0,34492.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,34492.0,5,0,5,5_0 +3864,5.0,5.0,89.0,300,72,71,0.0,14922,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3372.3987823609045,1773.2,0.0,12154.0,5,4,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,12154.0,1,0,1_0,1_1 +3865,3.0,3.0,59.0,111,46,70,0.0,14925,0.0,0.0,500.0,388.0,1.0,3.0,0.0,1.0,1.0,2181.568347741124,0.0,0.0,16763.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,16763.0,2,0,2_0,2_0 +3866,4.0,4.0,49.0,112,68,50,0.0,14926,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1980.8755135309843,0.0,0.0,35100.0,1,2,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23400.0,3,0,3_0,3_1 +3867,0.0,0.0,69.0,300,75,50,0.0,14927,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1783.076272996516,2652.0,0.0,43642.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29094.666666666668,4,0,4_0,4_1 +3868,8.0,8.0,59.0,112,64,60,0.0,14928,0.0,0.0,0.0,0.0,4.0,5.0,0.0,4.0,2.5,3471.65931532046,0.0,0.0,111620.0,1,1,10,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,44648.0,5,0,5,5_1 +3869,14.0,14.0,70.0,400,71,71,0.0,14929,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1347.2301893352512,4153.76,0.0,21030.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14020.0,2,0,2_0,2_1 +3870,0.0,0.0,57.0,112,78,50,0.0,1493,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1999.136607527482,0.0,0.0,31230.0,4,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15615.0,2,0,2_0,2_1 +3871,0.0,0.0,76.0,111,74,50,0.0,14930,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2183.491079576264,1988.48,0.0,58907.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,39271.333333333336,5,0,5,5_0 +3872,1.0,1.0,39.0,300,52,42,0.0,14931,0.0,60.0,0.0,406.0,1.0,3.0,2.0,3.0,1.8,923.1819394723708,1976.0,0.0,28119.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,15621.666666666666,2,0,2_1,2_1 +3873,10.0,10.0,92.0,300,71,70,0.0,14932,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2636.736657028074,0.0,0.0,8864.0,5,4,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,8864.0,1,0,1_0,1_1 +3874,6.0,8.0,66.0,111,78,70,0.0,14934,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2203.698449465945,0.0,0.0,24049.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24049.0,4,0,4_0,4_0 +3875,4.0,15.0,67.0,112,74,10,0.0,14935,0.0,0.0,445.0,0.0,0.0,8.0,0.0,2.0,1.5,1696.1675206207462,5274.879999999999,0.0,88525.0,5,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,59016.666666666664,5,0,5,5_1 +3876,0.0,0.0,37.0,112,56,43,0.0,14936,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,2.7,3057.4474902974,3120.0,0.0,22280.0,1,2,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8251.851851851852,1,0,1_1,1_0 +3877,1.0,1.0,63.0,120,74,31,1.0,14937,0.0,75.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2005.705915856296,0.0,16000.0,53085.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,35390.0,5,0,5,5_1 +3878,2.0,2.0,49.0,111,46,42,0.0,14938,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1727.2686750030625,0.0,0.0,23289.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,11644.5,1,0,1_0,1_0 +3879,12.0,17.0,54.0,120,65,50,0.0,1494,0.0,0.0,120.0,0.0,2.0,3.0,0.0,2.0,1.5,1960.3965408526794,0.0,0.0,36269.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,24179.333333333332,4,0,4_0,4_1 +3880,0.0,0.0,33.0,112,63,60,0.0,14940,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3571.113551008423,3452.8,0.0,28545.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13592.857142857143,1,0,1_0,1_1 +3881,4.0,4.0,40.0,111,46,30,0.0,14941,0.0,0.0,99999.0,0.0,1.0,3.0,0.0,1.0,1.0,3723.427748636164,0.0,0.0,18490.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18490.0,2,0,2_0,2_0 +3882,2.0,5.0,78.0,111,75,41,0.0,14942,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2144.926571423382,2600.0,0.0,47376.0,5,3,7,5.0,5,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23688.0,3,0,3_0,3_0 +3883,10.0,10.0,81.0,111,75,44,0.0,14943,0.0,350.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3166.609383908686,1040.0,0.0,29236.0,5,1,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,29236.0,4,0,4_0,4_0 +3884,3.0,6.0,63.0,400,77,50,0.0,14944,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1541.7493672634175,0.0,0.0,28070.0,5,3,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18713.333333333332,2,0,2_0,2_0 +3885,0.0,0.0,39.0,111,64,71,0.0,14945,0.0,0.0,0.0,391.0,1.0,3.0,2.0,4.0,2.1,1345.0760120602013,0.0,0.0,29588.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14089.52380952381,2,0,2_1,2_0 +3886,1.0,8.0,31.0,111,55,50,2.0,14946,0.0,300.0,0.0,140.0,1.0,2.0,1.0,2.0,1.3,3111.5447121430743,0.0,6400.0,17720.0,1,3,9,7.0,2,5.0,0.0,0.0,0,0,0,1,0,1,0.0,5.0,13630.76923076923,1,0,1_1,1_0 +3887,0.0,0.0,71.0,111,77,70,0.0,14947,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1760.0076285607486,1040.0,0.0,21766.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14510.666666666666,2,0,2_0,2_0 +3888,1.0,1.0,57.0,111,37,20,1.0,14948,0.0,0.0,0.0,0.0,3.0,5.0,3.0,5.0,3.0,2620.751594840683,2080.0,11500.0,128675.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,42891.666666666664,5,0,5,5_0 +3889,3.0,3.0,48.0,111,46,20,0.0,1495,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2716.373134627238,0.0,0.0,54074.0,1,1,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30041.11111111111,4,0,4_0,4_0 +3890,1.0,14.0,31.0,111,52,50,2.0,14950,0.0,0.0,20.0,340.0,1.0,2.0,0.0,1.0,1.0,4020.683716373545,0.0,2500.0,21024.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,21024.0,3,0,3_0,3_0 +3891,0.0,0.0,65.0,111,77,50,0.0,14951,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1915.6238197211767,0.0,0.0,16818.0,5,1,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16818.0,2,0,2_0,2_0 +3892,0.0,0.0,85.0,211,77,60,0.0,14953,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3587.1483064787194,1300.0,0.0,28632.0,5,1,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28632.0,4,0,4_0,4_0 +3893,0.0,0.0,71.0,400,77,71,0.0,14955,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2201.6984458641796,0.0,0.0,16836.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16836.0,2,0,2_0,2_1 +3894,1.0,1.0,43.0,112,62,43,0.0,14957,0.0,580.0,100249.0,477.0,2.0,4.0,2.0,4.0,2.1,3046.101234810846,3660.8,0.0,44776.0,1,3,10,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,21321.90476190476,3,0,3_0,3_0 +3895,0.0,0.0,41.0,221,63,50,0.0,14958,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1673.4031087083579,0.0,0.0,47124.0,4,2,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18849.6,3,0,3_0,3_0 +3896,0.0,0.0,67.0,111,75,33,0.0,14959,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1337.0074210047458,0.0,0.0,47911.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31940.666666666668,5,0,5,5_0 +3897,0.0,0.0,49.0,111,63,50,0.0,1496,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2330.209149908568,0.0,0.0,38830.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16882.608695652176,2,0,2_0,2_0 +3898,0.0,0.0,43.0,111,45,31,0.0,14960,0.0,0.0,0.0,571.0,1.0,2.0,0.0,1.0,1.0,3285.286980128814,0.0,0.0,34638.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34638.0,5,0,5,5_0 +3899,11.0,11.0,70.0,111,72,70,0.0,14961,0.0,50.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1984.1499176447664,0.0,0.0,25833.0,5,4,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17222.0,2,0,2_0,2_0 +3900,3.0,3.0,65.0,400,72,12,0.0,14962,0.0,0.0,0.0,0.0,1.0,9.0,0.0,2.0,1.5,1471.553906720822,0.0,0.0,51966.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,34644.0,5,0,5,5_0 +3901,4.0,14.0,65.0,111,77,44,0.0,14963,0.0,510.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1532.1505743561063,1560.52,0.0,10278.0,5,1,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,10278.0,1,0,1_0,1_0 +3902,5.0,5.0,27.0,112,34,20,0.0,14964,0.0,140.0,0.0,650.0,2.0,2.0,0.0,2.0,1.5,3706.134425668571,2986.36,0.0,39260.0,1,3,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,26173.333333333332,4,0,4_0,4_0 +3903,0.0,0.0,58.0,111,52,50,0.0,14965,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1257.8366985509742,0.0,0.0,25546.0,1,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25546.0,4,0,4_0,4_0 +3904,0.0,15.0,64.0,111,75,20,2.0,14966,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2641.5467322908353,2345.2000000000003,1500.0,29470.0,5,2,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19646.666666666668,3,0,3_0,3_0 +3905,3.0,3.0,42.0,111,37,12,0.0,14969,0.0,0.0,100.0,0.0,1.0,5.0,2.0,3.0,1.6,899.8030883761138,1560.0,0.0,43960.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,27475.0,4,0,4_0,4_0 +3906,5.0,10.0,51.0,111,46,31,0.0,1497,0.0,0.0,90.0,0.0,2.0,5.0,2.0,4.0,2.1,615.4124303260835,774.28,0.0,34358.0,1,3,8,7.0,4,4.0,0.0,0.0,0,0,0,1,0,1,2.0,2.0,16360.95238095238,2,0,2_1,2_0 +3907,0.0,0.0,62.0,111,34,10,0.0,14970,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2123.716350919694,1300.0,0.0,134626.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,89750.66666666667,5,0,5,5_0 +3908,6.0,6.0,25.0,111,85,50,0.0,14972,0.0,0.0,0.0,140.0,0.0,4.0,1.0,2.0,1.3,847.787644578333,0.0,0.0,14030.0,6,3,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,10792.307692307691,1,0,1_1,1_0 +3909,4.0,4.0,65.0,112,78,70,0.0,14973,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2264.740956287808,0.0,0.0,40855.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,27236.666666666668,4,0,4_0,4_1 +3910,9.0,9.0,60.0,112,21,50,0.0,14974,0.0,150.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2617.030437727325,0.0,0.0,39803.0,1,1,9,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,26535.333333333332,4,0,4_0,4_0 +3911,0.0,0.0,51.0,111,46,31,0.0,14977,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2222.5064250981773,0.0,0.0,50595.0,1,1,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33730.0,5,0,5,5_0 +3912,9.0,11.0,49.0,111,63,20,0.0,14978,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2727.324332172108,0.0,0.0,18193.0,1,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18193.0,2,0,2_0,2_0 +3913,0.0,0.0,80.0,400,72,60,0.0,1498,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2420.667071495164,0.0,0.0,12226.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12226.0,1,0,1_0,1_1 +3914,2.0,2.0,46.0,120,63,50,0.0,14980,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2339.51563144068,0.0,0.0,22637.0,1,1,0,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,22637.0,3,0,3_0,3_0 +3915,8.0,8.0,56.0,111,62,50,0.0,14981,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2775.46294361636,0.0,0.0,14280.0,1,1,10,8.0,1,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,14280.0,2,0,2_0,2_0 +3916,0.0,0.0,27.0,111,35,50,0.0,14982,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4085.747997747094,4844.84,0.0,30279.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20186.0,3,0,3_0,3_0 +3917,5.0,9.0,69.0,300,74,31,0.0,14983,0.0,80.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1818.3547470037067,0.0,0.0,53418.0,5,1,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,35612.0,5,0,5,5_0 +3918,1.0,1.0,61.0,112,48,71,0.0,14984,0.0,250.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,2456.667644562691,2243.28,0.0,44312.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,29541.333333333332,4,0,4_0,4_1 +3919,7.0,11.0,48.0,211,64,50,0.0,14985,0.0,0.0,90.0,220.0,2.0,5.0,1.0,3.0,2.0,2456.3212029783817,0.0,0.0,44219.0,4,3,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,2.0,0.0,22109.5,3,0,3_1,3_0 +3920,0.0,28.0,76.0,111,77,70,0.0,1499,0.0,0.0,20.0,0.0,0.0,5.0,0.0,1.0,1.0,4287.203383018271,0.0,0.0,23577.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,23577.0,3,0,3_0,3_0 +3921,2.0,2.0,68.0,300,77,50,0.0,14991,0.0,0.0,30.0,0.0,0.0,5.0,0.0,2.0,1.5,1821.210589889596,2730.0,0.0,35417.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23611.333333333332,3,0,3_0,3_1 +3922,7.0,9.0,50.0,111,67,50,0.0,14992,0.0,200.0,0.0,0.0,3.0,3.0,2.0,4.0,2.5,1537.8972439936904,9149.92,0.0,60329.0,1,4,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24131.6,4,0,4_0,4_0 +3923,3.0,3.0,72.0,120,77,50,0.0,14993,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1845.119493156445,2601.56,0.0,23858.0,5,3,0,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23858.0,4,0,4_0,4_0 +3924,4.0,9.0,73.0,111,77,70,0.0,14994,0.0,0.0,0.0,454.0,0.0,4.0,0.0,1.0,1.0,2319.0495161771046,0.0,0.0,24480.0,5,3,7,5.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,24480.0,4,0,4_0,4_0 +3925,0.0,0.0,21.0,112,67,71,0.0,14996,0.0,0.0,0.0,69.0,1.0,1.0,0.0,1.0,1.0,2638.95031053554,0.0,0.0,14892.0,4,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14892.0,2,0,2_1,2_0 +3926,0.0,0.0,44.0,111,33,20,0.0,14997,0.0,0.0,0.0,0.0,1.0,8.0,3.0,4.0,2.1,803.109792002887,0.0,0.0,67746.0,1,2,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32260.0,5,0,5,5_0 +3927,10.0,10.0,53.0,112,48,31,0.0,14998,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1350.6302492705972,0.0,0.0,32401.0,1,2,10,1.0,1,3.0,0.0,0.0,0,1,0,0,0,0,3.0,0.0,32401.0,5,0,5,5_0 +3928,11.0,11.0,41.0,111,85,10,0.0,14999,0.0,0.0,0.0,65.0,0.0,3.0,3.0,5.0,2.4,3153.6003689967656,1174.8148148148148,0.0,34048.0,4,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14186.666666666668,2,0,2_1,2_0 +3929,9.0,9.0,77.0,111,72,71,0.0,15000,0.0,0.0,0.0,94.0,0.0,4.0,0.0,2.0,1.5,1808.694952304157,0.0,0.0,27380.0,5,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,18253.333333333332,2,0,2_1,2_0 +3930,0.0,3.0,60.0,111,75,31,0.0,15001,0.0,199998.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4635.250764901914,2548.0,0.0,11873.0,7,1,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,11873.0,1,0,1_0,1_0 +3931,3.0,8.0,39.0,211,33,10,0.0,15002,0.0,460.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,3620.1879934141743,1433.64,0.0,54980.0,1,2,1,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23904.34782608696,4,0,4_0,4_0 +3932,2.0,2.0,77.0,111,74,41,0.0,15004,0.0,0.0,400.0,0.0,0.0,5.0,0.0,1.0,1.0,2835.139263453955,0.0,0.0,32654.0,5,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,32654.0,5,0,5,5_0 +3933,11.0,16.0,47.0,111,43,33,0.0,15005,0.0,0.0,150.0,0.0,1.0,3.0,1.0,2.0,1.5,3555.621735971977,3388.3199999999997,0.0,86292.0,1,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,57528.0,5,0,5,5_0 +3934,0.0,0.0,23.0,111,47,31,0.0,15006,0.0,0.0,0.0,389.0,2.0,4.0,2.0,3.0,2.0,1753.3289588144269,1560.0,0.0,37832.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,18916.0,3,0,3_1,3_0 +3935,0.0,0.0,35.0,111,31,10,0.0,15007,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3102.583678420781,5484.44,0.0,92608.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,44099.04761904762,5,0,5,5_0 +3936,19.0,19.0,93.0,111,74,10,0.0,15009,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1952.4961413889164,0.0,0.0,20302.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20302.0,3,0,3_0,3_0 +3937,12.0,12.0,73.0,111,74,20,0.0,1501,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2690.4194745130253,0.0,0.0,67882.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,45254.666666666664,5,0,5,5_0 +3938,7.0,15.0,61.0,111,52,70,0.0,15010,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2018.853515117546,2080.0,0.0,25762.0,1,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,17174.666666666668,2,0,2_0,2_0 +3939,8.0,17.0,53.0,112,65,50,0.0,15011,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1779.544505835332,2600.0,0.0,21920.0,1,2,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21920.0,3,0,3_0,3_1 +3940,0.0,0.0,52.0,400,21,71,0.0,15012,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,3051.443318176554,0.0,0.0,15171.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,6068.4,1,0,1_0,1_1 +3941,2.0,1.0,44.0,111,63,71,0.0,15013,0.0,0.0,197.0,0.0,1.0,4.0,1.0,3.0,1.8,685.1534591401244,3120.0,0.0,19780.0,4,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,10988.888888888889,1,0,1_1,1_0 +3942,1.0,16.0,60.0,111,37,20,2.0,15014,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2657.2320779789793,3525.6,150.0,104283.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,69522.0,5,0,5,5_0 +3943,11.0,13.0,33.0,111,68,71,0.0,15015,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,638.0702715890193,0.0,0.0,24026.0,4,3,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,10446.08695652174,1,0,1_1,1_0 +3944,6.0,15.0,24.0,111,62,31,0.0,15017,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3168.7789216472925,1040.0,0.0,8377.0,4,3,7,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,8377.0,1,0,1_0,1_0 +3945,5.0,21.0,39.0,112,37,43,0.0,15018,0.0,0.0,100.0,0.0,2.0,4.0,2.0,4.0,2.1,2090.460194869913,2271.36,0.0,93855.0,1,2,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,44692.85714285714,5,0,5,5_0 +3946,0.0,19.0,50.0,111,64,71,0.0,15019,0.0,0.0,22.0,0.0,2.0,4.0,0.0,2.0,1.5,1941.1875106810664,0.0,0.0,32882.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,21921.333333333332,3,0,3_0,3_0 +3947,0.0,11.0,53.0,211,21,42,0.0,15020,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1235.3631089665512,0.0,0.0,50195.0,1,1,2,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20078.0,3,0,3_0,3_0 +3948,3.0,3.0,34.0,112,64,50,0.0,15021,0.0,99998.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2385.7681388434444,0.0,0.0,24474.0,1,3,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,13596.666666666666,1,0,1_1,1_0 +3949,1.0,1.0,82.0,111,75,70,1.0,15023,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2410.1081107326986,0.0,10787.0,30652.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20434.666666666668,3,0,3_0,3_0 +3950,7.0,8.0,49.0,111,53,60,0.0,15024,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,2.9,1301.9523310690493,1040.0,0.0,37173.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,12818.275862068966,1,0,1_1,1_0 +3951,12.0,12.0,34.0,111,67,71,0.0,15025,0.0,0.0,0.0,108.0,1.0,2.0,0.0,1.0,1.0,3219.0173496999428,0.0,0.0,8892.0,4,3,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8892.0,1,0,1_1,1_0 +3952,0.0,12.0,67.0,111,75,30,0.0,15026,0.0,0.0,200.0,0.0,1.0,9.0,2.0,3.0,2.0,1356.6876043509099,0.0,0.0,68910.0,5,1,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,34455.0,5,0,5,5_0 +3953,7.0,12.0,81.0,400,71,70,0.0,15028,0.0,350.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3624.171706601239,0.0,0.0,21016.0,5,1,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14010.666666666666,2,0,2_0,2_1 +3954,0.0,0.0,68.0,112,78,71,0.0,15029,0.0,0.0,0.0,385.0,0.0,2.0,0.0,1.0,1.0,2364.9364693434786,1404.0,0.0,17572.0,5,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17572.0,2,0,2_0,2_0 +3955,9.0,9.0,48.0,112,43,33,0.0,15030,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2080.247883117967,0.0,0.0,60968.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,29032.38095238095,4,0,4_0,4_1 +3956,0.0,3.0,22.0,111,43,42,0.0,15031,0.0,0.0,0.0,232.0,1.0,3.0,0.0,1.0,1.0,2496.581240389972,0.0,0.0,16868.0,1,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,16868.0,2,0,2_1,2_0 +3957,2.0,13.0,65.0,112,75,70,0.0,15032,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1768.458307187209,3307.72,0.0,44850.0,5,1,8,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,44850.0,5,0,5,5_0 +3958,8.0,22.0,28.0,111,56,44,0.0,15033,0.0,100.0,0.0,471.0,2.0,1.0,0.0,2.0,1.5,2578.9301462148123,0.0,0.0,24447.0,4,3,8,6.0,3,3.0,0.0,0.0,0,0,1,0,0,1,1.0,2.0,16298.0,2,0,2_1,2_0 +3959,0.0,0.0,35.0,111,43,33,0.0,15036,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2403.4965579369446,2600.0,0.0,54844.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36562.666666666664,5,0,5,5_0 +3960,4.0,12.0,77.0,111,74,60,0.0,15039,0.0,400.0,0.0,1330.0,0.0,5.0,0.0,2.0,1.5,1992.607281351953,0.0,0.0,64834.0,5,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,43222.666666666664,5,0,5,5_0 +3961,0.0,0.0,69.0,112,78,71,0.0,1504,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3317.05981827612,0.0,0.0,9211.0,5,1,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9211.0,1,0,1_0,1_1 +3962,0.0,0.0,78.0,111,86,70,0.0,15040,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1677.6925950566476,1684.8,0.0,47246.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31497.333333333332,4,0,4_0,4_0 +3963,11.0,15.0,71.0,400,71,50,0.0,15041,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1318.7369792441482,2600.0,0.0,25859.0,5,1,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,17239.333333333332,2,0,2_0,2_1 +3964,2.0,2.0,59.0,111,38,12,0.0,15042,0.0,250.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1280.4103090636897,3380.0,0.0,90560.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,60373.333333333336,5,0,5,5_0 +3965,3.0,17.0,44.0,111,43,33,0.0,15043,0.0,500.0,0.0,810.0,1.0,4.0,2.0,3.0,1.6,623.8196902760725,0.0,0.0,23553.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,14720.625,2,0,2_0,2_0 +3966,2.0,2.0,48.0,111,85,71,0.0,15045,0.0,0.0,0.0,150.0,0.0,4.0,3.0,4.0,2.1,1499.9994090846085,0.0,0.0,21490.0,6,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,10233.333333333332,1,0,1_1,1_0 +3967,3.0,3.0,31.0,111,35,30,0.0,15048,0.0,100.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4183.9672653263515,0.0,0.0,24042.0,1,2,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,24042.0,4,0,4_0,4_0 +3968,0.0,0.0,81.0,111,77,70,0.0,15051,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2784.286019248852,0.0,0.0,31410.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20940.0,3,0,3_0,3_0 +3969,5.0,9.0,36.0,111,34,0,0.0,15054,0.0,0.0,0.0,548.0,1.0,2.0,0.0,1.0,1.0,6638.088610219797,0.0,0.0,41320.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,41320.0,5,0,5,5_0 +3970,5.0,5.0,27.0,111,52,43,0.0,15057,0.0,0.0,0.0,579.0,2.0,3.0,0.0,2.0,1.5,3069.88763113608,3192.28,0.0,28615.0,1,3,4,4.0,3,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,19076.666666666668,3,0,3_0,3_0 +3971,1.0,1.0,27.0,111,46,0,0.0,15058,1200.0,0.0,250.0,451.0,1.0,2.0,0.0,1.0,1.0,6293.448292676317,0.0,0.0,21808.0,1,3,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,1,1.0,0.0,21808.0,3,0,3_1,3_0 +3972,3.0,4.0,36.0,111,53,42,0.0,15059,0.0,0.0,150.0,463.0,1.0,4.0,3.0,5.0,2.4,2686.8721133586846,0.0,0.0,24540.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,10225.0,1,0,1_0,1_0 +3973,10.0,10.0,33.0,111,64,31,0.0,1506,0.0,0.0,200.0,299.0,1.0,4.0,2.0,4.0,2.1,2981.9640770939077,1560.0,0.0,43570.0,1,3,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,20747.619047619046,3,0,3_0,3_0 +3974,0.0,0.0,79.0,400,71,70,0.0,15060,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1420.5725732125686,0.0,0.0,24791.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16527.333333333332,2,0,2_0,2_1 +3975,3.0,3.0,36.0,111,55,50,0.0,15061,0.0,0.0,0.0,548.0,1.0,3.0,2.0,3.0,1.6,719.7613566931743,0.0,0.0,24994.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,15621.25,2,0,2_1,2_0 +3976,10.0,10.0,48.0,112,64,70,0.0,15062,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2028.3068765940793,0.0,0.0,34175.0,1,2,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22783.333333333332,3,0,3_0,3_0 +3977,1.0,5.0,64.0,120,72,70,0.0,15065,0.0,0.0,200.0,0.0,0.0,7.0,0.0,2.0,1.5,1464.5798999146896,0.0,0.0,41950.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,27966.666666666668,4,0,4_0,4_1 +3978,3.0,5.0,70.0,211,75,70,0.0,15066,0.0,0.0,440.0,0.0,0.0,4.0,0.0,2.0,1.5,2839.710980460843,4271.8,0.0,27420.0,5,1,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,18280.0,2,0,2_0,2_0 +3979,5.0,7.0,75.0,111,75,60,0.0,15067,0.0,200.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1708.8238589858208,0.0,0.0,29938.0,5,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19958.666666666668,3,0,3_0,3_0 +3980,0.0,0.0,60.0,111,67,71,0.0,15068,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,3.0,1552.0038365670687,1820.0,0.0,34919.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,11639.666666666666,1,0,1_0,1_0 +3981,0.0,0.0,51.0,112,13,31,0.0,1507,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1404.579137657842,0.0,0.0,20642.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13761.333333333334,1,0,1_0,1_1 +3982,0.0,0.0,59.0,111,74,41,0.0,15072,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2054.0747501005744,1040.52,0.0,68409.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,45606.0,5,0,5,5_0 +3983,3.0,23.0,44.0,300,46,31,0.0,15073,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1755.7936924503051,3581.2400000000002,0.0,62673.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,34818.333333333336,5,0,5,5_1 +3984,0.0,0.0,53.0,111,53,50,0.0,15074,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1940.2798095855394,0.0,0.0,51307.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,25653.5,4,0,4_1,4_0 +3985,6.0,7.0,79.0,111,74,20,0.0,15076,0.0,300.0,250.0,0.0,0.0,3.0,0.0,1.0,1.0,3532.9347339272235,0.0,0.0,32859.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,32859.0,5,0,5,5_0 +3986,0.0,0.0,61.0,300,78,71,0.0,15077,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2118.520025998708,3380.0,0.0,43134.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28756.0,4,0,4_0,4_1 +3987,0.0,0.0,72.0,111,72,41,0.0,15078,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1887.8605167276635,3903.12,0.0,87220.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,58146.666666666664,5,0,5,5_0 +3988,0.0,0.0,69.0,111,74,20,0.0,15079,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2191.6070124487073,2133.56,0.0,104359.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,69572.66666666667,5,0,5,5_0 +3989,0.0,0.0,80.0,111,78,71,0.0,1508,0.0,0.0,0.0,309.0,0.0,4.0,0.0,1.0,1.0,3382.9538560184924,0.0,0.0,21143.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,21143.0,3,0,3_1,3_0 +3990,1.0,1.0,65.0,111,43,31,1.0,15080,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2009.2857623217417,2978.56,18500.0,61924.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,41282.666666666664,5,0,5,5_0 +3991,8.0,9.0,63.0,111,78,60,0.0,15081,0.0,0.0,120.0,231.0,0.0,5.0,0.0,1.0,1.0,2111.0724525992073,0.0,0.0,13804.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,13804.0,1,0,1_1,1_0 +3992,0.0,0.0,37.0,111,42,42,0.0,15082,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,997.5819307648891,2860.0,0.0,14301.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8938.125,1,0,1_1,1_0 +3993,0.0,0.0,58.0,112,33,50,0.0,15083,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1547.0634246831016,0.0,0.0,31292.0,5,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20861.333333333332,3,0,3_0,3_1 +3994,0.0,21.0,27.0,111,85,71,0.0,15084,0.0,750.0,0.0,0.0,0.0,3.0,3.0,4.0,1.9,955.8847897197896,0.0,0.0,21780.0,6,3,9,7.0,2,3.0,1.0,1.0,0,0,0,1,0,1,0.0,3.0,11463.157894736843,1,0,1_1,1_0 +3995,1.0,12.0,86.0,111,74,30,2.0,15085,0.0,99999.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3559.450788491742,0.0,1500.0,74257.0,5,1,10,8.0,3,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,49504.666666666664,5,0,5,5_0 +3996,3.0,3.0,65.0,111,75,30,0.0,15086,0.0,0.0,0.0,0.0,0.0,8.0,1.0,2.0,1.5,2727.740796348054,2385.76,0.0,14040.0,5,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,9360.0,1,0,1_0,1_0 +3997,4.0,4.0,67.0,111,75,42,0.0,15087,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1781.1378722956342,2704.0,0.0,32983.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32983.0,5,0,5,5_0 +3998,6.0,6.0,36.0,111,46,12,0.0,15089,0.0,350.0,0.0,800.0,2.0,2.0,1.0,3.0,1.8,3791.3896738796147,0.0,0.0,40570.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,22538.888888888887,3,0,3_0,3_0 +3999,0.0,0.0,45.0,112,54,31,0.0,1509,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,346.1295198924457,0.0,0.0,25627.0,1,3,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12813.5,1,0,1_1,1_1 +4000,1.0,1.0,82.0,211,72,50,1.0,15090,0.0,99999.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,5707.458892007504,0.0,12000.0,30466.0,5,1,2,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20310.666666666668,3,0,3_0,3_0 +4001,11.0,11.0,78.0,120,86,50,0.0,15091,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1924.0570461872887,0.0,0.0,18468.0,6,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18468.0,2,0,2_0,2_0 +4002,5.0,7.0,66.0,112,74,50,0.0,15092,0.0,1000.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2906.401952245998,2080.0,0.0,34740.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23160.0,3,0,3_0,3_1 +4003,0.0,0.0,48.0,400,46,30,0.0,15093,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2064.562964139338,1040.0,0.0,21400.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8916.666666666668,1,0,1_0,1_1 +4004,9.0,9.0,49.0,111,34,20,0.0,15095,0.0,600.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3271.3040655863556,2010.3199999999997,0.0,35407.0,1,1,7,5.0,1,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,35407.0,5,0,5,5_0 +4005,1.0,3.0,52.0,300,21,50,0.0,15096,0.0,320.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3826.527655052524,2080.0,0.0,5730.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,5730.0,1,0,1_0,1_1 +4006,3.0,6.0,51.0,111,64,50,0.0,15097,0.0,370.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,3352.125006213321,2600.0,0.0,41129.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20564.5,3,0,3_0,3_0 +4007,0.0,15.0,39.0,111,52,50,0.0,15099,0.0,0.0,250.0,242.0,1.0,4.0,2.0,3.0,1.8,537.4024226084574,0.0,0.0,26413.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,14673.888888888889,2,0,2_1,2_0 +4008,1.0,5.0,36.0,111,38,31,2.0,151,0.0,250.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,3093.515350462144,3640.0,7000.0,72393.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,34472.857142857145,5,0,5,5_0 +4009,8.0,8.0,48.0,111,63,71,0.0,15100,0.0,100.0,0.0,0.0,2.0,3.0,3.0,5.0,2.6,2115.504391761465,0.0,0.0,31006.0,4,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11925.384615384615,1,0,1_1,1_0 +4010,0.0,11.0,47.0,300,38,12,0.0,15101,0.0,850.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2041.8782578884523,338.0,0.0,75277.0,1,2,0,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,31365.416666666668,4,0,4_0,4_0 +4011,0.0,0.0,23.0,111,84,31,0.0,15102,0.0,0.0,0.0,357.0,0.0,2.0,0.0,2.0,1.5,2447.7120514966423,0.0,0.0,14316.0,3,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9544.0,1,0,1_1,1_0 +4012,0.0,0.0,32.0,300,46,31,0.0,15103,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1939.4948246978265,2361.84,0.0,35573.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19762.777777777777,3,0,3_0,3_1 +4013,15.0,19.0,56.0,111,78,71,0.0,15105,0.0,0.0,100.0,0.0,0.0,4.0,2.0,3.0,1.8,759.0336571556629,0.0,0.0,15584.0,6,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,8657.777777777777,1,0,1_1,1_0 +4014,5.0,5.0,70.0,111,74,10,0.0,15106,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2294.8098202477217,0.0,0.0,193664.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,129109.33333333333,5,0,5,5_0 +4015,0.0,6.0,47.0,112,13,50,2.0,15107,0.0,380.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2030.732875034438,0.0,10000.0,43362.0,1,1,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,17344.8,2,0,2_0,2_1 +4016,27.0,29.0,47.0,111,62,50,0.0,15108,0.0,0.0,0.0,150.0,1.0,1.0,0.0,1.0,1.0,6842.508306143383,0.0,0.0,9422.0,4,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,9422.0,1,0,1_1,1_0 +4017,1.0,11.0,31.0,112,68,71,2.0,15109,0.0,150.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2060.426346210315,0.0,2000.0,35343.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,14726.25,2,0,2_0,2_1 +4018,0.0,0.0,69.0,111,74,20,0.0,1511,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2919.7709558304555,0.0,0.0,40707.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40707.0,5,0,5,5_0 +4019,0.0,0.0,48.0,111,64,71,0.0,15110,0.0,0.0,0.0,0.0,3.0,4.0,5.0,7.0,3.6,2528.344253091067,1950.0,0.0,27159.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7544.166666666666,1,0,1_1,1_0 +4020,0.0,0.0,63.0,300,75,70,1.0,15111,0.0,150.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2177.8554089181957,0.0,33000.0,63813.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,42542.0,5,0,5,5_0 +4021,11.0,11.0,72.0,111,75,60,0.0,15112,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2723.1177594085616,0.0,0.0,27633.0,5,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27633.0,4,0,4_0,4_0 +4022,2.0,7.0,74.0,211,77,50,0.0,15114,0.0,100.0,0.0,0.0,0.0,9.0,0.0,1.0,1.0,1263.3590584259857,0.0,0.0,23375.0,5,1,2,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23375.0,3,0,3_0,3_0 +4023,10.0,10.0,46.0,111,52,60,0.0,15115,0.0,0.0,250.0,454.0,3.0,6.0,1.0,3.0,2.0,2643.2417379736535,1820.0,0.0,42910.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21455.0,3,0,3_0,3_0 +4024,0.0,0.0,52.0,111,22,12,0.0,15116,0.0,0.0,0.0,0.0,2.0,10.0,2.0,4.0,2.5,1870.5236905119637,7280.0,0.0,117015.0,1,1,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,46806.0,5,0,5,5_0 +4025,8.0,9.0,51.0,112,47,31,0.0,15117,0.0,600.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1670.6969999140306,5309.200000000001,0.0,57045.0,1,1,9,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,28522.5,4,0,4_0,4_0 +4026,0.0,0.0,69.0,211,74,31,0.0,15118,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2199.8569674363,0.0,0.0,41008.0,5,1,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,41008.0,5,0,5,5_0 +4027,13.0,13.0,59.0,111,77,70,0.0,15119,0.0,1000.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2852.250217798627,0.0,0.0,22769.0,6,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,15179.333333333334,2,0,2_1,2_0 +4028,2.0,2.0,49.0,112,85,71,0.0,1512,0.0,0.0,0.0,0.0,0.0,5.0,7.0,8.0,3.9,385.93258802855826,0.0,0.0,36122.0,6,4,10,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,9262.051282051283,1,0,1_0,1_0 +4029,4.0,11.0,76.0,400,72,70,0.0,15120,0.0,112.0,14.0,0.0,0.0,4.0,0.0,1.0,1.0,2279.0126661734666,0.0,0.0,14470.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14470.0,2,0,2_0,2_1 +4030,4.0,7.0,41.0,111,22,12,0.0,15121,0.0,99999.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,4243.834053269211,0.0,0.0,35443.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,16877.619047619046,2,0,2_0,2_0 +4031,10.0,10.0,70.0,111,74,31,0.0,15122,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1502.613782451383,3520.9199999999996,0.0,45071.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,45071.0,5,0,5,5_0 +4032,7.0,15.0,36.0,111,46,42,0.0,15123,0.0,300.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,779.3299543959217,0.0,0.0,29417.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,16342.777777777777,2,0,2_1,2_0 +4033,0.0,0.0,53.0,111,42,20,0.0,15125,0.0,0.0,0.0,450.0,1.0,2.0,0.0,1.0,1.0,2594.250565206784,0.0,0.0,23144.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23144.0,3,0,3_0,3_0 +4034,6.0,7.0,67.0,112,75,50,0.0,15126,0.0,450.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2153.812026721932,0.0,0.0,26944.0,5,1,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,26944.0,4,0,4_0,4_0 +4035,7.0,10.0,91.0,221,72,12,0.0,15129,0.0,96.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1531.7160199557777,0.0,0.0,41800.0,5,4,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27866.666666666668,4,0,4_0,4_0 +4036,0.0,0.0,61.0,111,46,31,0.0,1513,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2790.275740542646,0.0,0.0,70610.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,47073.333333333336,5,0,5,5_0 +4037,0.0,0.0,56.0,111,46,50,0.0,15131,0.0,0.0,0.0,375.0,1.0,4.0,1.0,2.0,1.5,819.1170193565212,520.0,0.0,12898.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8598.666666666666,1,0,1_1,1_0 +4038,5.0,5.0,62.0,111,53,30,0.0,15132,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4659.401414070457,0.0,0.0,26210.0,1,1,6,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,26210.0,4,0,4_0,4_0 +4039,0.0,3.0,69.0,211,75,31,2.0,15133,0.0,300.0,0.0,366.0,0.0,4.0,0.0,1.0,1.0,1559.0743443068106,0.0,5000.0,11068.0,5,3,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,11068.0,1,0,1_1,1_0 +4040,0.0,10.0,45.0,120,54,31,2.0,15134,0.0,0.0,210.0,0.0,2.0,5.0,1.0,3.0,2.0,2210.5807126326727,0.0,3000.0,53554.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,26777.0,4,0,4_0,4_1 +4041,0.0,0.0,63.0,112,75,60,0.0,15136,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3446.531853504975,2600.0,0.0,42112.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,42112.0,5,0,5,5_0 +4042,0.0,0.0,49.0,111,85,31,0.0,15137,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,1.8,901.510994198888,2603.6400000000003,0.0,370.0,7,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,205.55555555555554,1,0,1_0,1_0 +4043,7.0,9.0,38.0,111,56,31,0.0,15138,0.0,0.0,0.0,229.0,1.0,1.0,0.0,1.0,1.0,3736.0568813726813,0.0,0.0,3736.0,4,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,3736.0,1,0,1_1,1_0 +4044,0.0,14.0,56.0,112,63,50,0.0,15139,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1365.2435866522192,0.0,0.0,21784.0,4,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14522.666666666666,2,0,2_0,2_1 +4045,2.0,2.0,59.0,112,78,71,0.0,1514,0.0,610.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2689.4621108580222,4160.0,0.0,8780.0,7,1,5,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,5853.333333333333,1,0,1_0,1_1 +4046,0.0,10.0,59.0,111,43,33,0.0,15140,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2305.4414939620306,1560.0,0.0,110002.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,61112.22222222222,5,0,5,5_0 +4047,5.0,5.0,59.0,111,62,50,0.0,15141,0.0,200.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2868.4143288631294,0.0,0.0,34101.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,22734.0,3,0,3_0,3_0 +4048,4.0,4.0,36.0,300,21,44,0.0,15142,0.0,220.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2743.540013180422,0.0,0.0,45230.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21538.095238095237,3,0,3_0,3_1 +4049,5.0,9.0,72.0,111,78,71,0.0,15143,0.0,0.0,0.0,20.0,0.0,3.0,0.0,2.0,1.5,919.965637398846,0.0,0.0,29590.0,5,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,19726.666666666668,3,0,3_1,3_0 +4050,3.0,9.0,43.0,112,37,41,0.0,15144,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2209.296348134869,0.0,0.0,61234.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,29159.04761904762,4,0,4_0,4_1 +4051,0.0,0.0,69.0,111,72,50,0.0,15146,0.0,0.0,0.0,316.0,0.0,3.0,0.0,2.0,1.5,1976.6758932558585,0.0,0.0,26062.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17374.666666666668,2,0,2_0,2_0 +4052,3.0,5.0,42.0,111,62,43,0.0,15147,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4048.104831225262,1300.0,0.0,36470.0,1,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,36470.0,5,0,5,5_0 +4053,11.0,14.0,63.0,111,74,20,0.0,15149,0.0,200.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2091.7584071678825,1040.52,0.0,33040.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22026.666666666668,3,0,3_0,3_0 +4054,10.0,12.0,70.0,112,75,44,0.0,1515,0.0,450.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2422.2792519917284,0.0,0.0,30424.0,5,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20282.666666666668,3,0,3_0,3_0 +4055,0.0,0.0,76.0,111,47,44,0.0,15150,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2293.6114270175517,0.0,0.0,50860.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,50860.0,5,0,5,5_0 +4056,13.0,13.0,46.0,111,21,50,0.0,15151,0.0,0.0,99999.0,0.0,3.0,4.0,3.0,5.0,2.8,2140.4325739803076,2860.0,0.0,71570.0,1,3,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,25560.714285714286,4,0,4_0,4_0 +4057,11.0,11.0,34.0,111,21,60,0.0,15152,0.0,0.0,55.0,0.0,1.0,3.0,0.0,1.0,1.0,3429.72050579032,0.0,0.0,34022.0,1,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,34022.0,5,0,5,5_0 +4058,3.0,3.0,43.0,111,53,42,0.0,15155,0.0,250.0,200.0,0.0,2.0,3.0,1.0,2.0,1.5,1334.8124284232774,2957.24,0.0,22656.0,1,3,6,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,15104.0,2,0,2_1,2_0 +4059,2.0,7.0,63.0,120,78,50,0.0,15156,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4441.351763657285,1300.0,0.0,17250.0,5,2,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17250.0,2,0,2_0,2_1 +4060,0.0,0.0,35.0,300,46,31,0.0,15157,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2381.4242095194477,5639.4,0.0,45036.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21445.714285714286,3,0,3_0,3_1 +4061,0.0,14.0,30.0,111,37,20,0.0,15158,0.0,0.0,0.0,850.0,2.0,4.0,1.0,3.0,1.8,3530.459836709385,0.0,0.0,72235.0,1,3,6,5.0,4,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,40130.555555555555,5,0,5,5_0 +4062,0.0,0.0,46.0,111,31,20,0.0,1516,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2474.5169139131135,0.0,0.0,68581.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,68581.0,5,0,5,5_0 +4063,1.0,1.0,95.0,222,77,71,0.0,15160,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3152.689112830364,0.0,0.0,25256.0,5,1,1,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25256.0,4,0,4_0,4_1 +4064,1.0,6.0,59.0,120,21,71,2.0,15161,0.0,750.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2554.0207353131555,0.0,8000.0,26845.0,1,3,0,1.0,1,4.0,0.0,1.0,0,1,0,0,0,1,1.0,3.0,26845.0,4,0,4_1,4_0 +4065,1.0,11.0,45.0,400,63,50,2.0,15162,0.0,0.0,99999.0,0.0,1.0,3.0,1.0,2.0,1.5,208.81274722588537,3120.0,2500.0,15927.0,1,4,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,10618.0,1,0,1_0,1_1 +4066,11.0,11.0,32.0,221,63,44,0.0,15163,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2475.824396111133,2986.3600000000006,0.0,40711.0,1,2,1,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22617.222222222223,3,0,3_0,3_0 +4067,3.0,8.0,36.0,112,47,31,0.0,15164,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2290.719407080781,3380.0,0.0,40129.0,1,2,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22293.888888888887,3,0,3_0,3_0 +4068,1.0,1.0,59.0,111,33,20,1.0,15165,0.0,0.0,200.0,0.0,2.0,3.0,0.0,2.0,1.5,2593.283177454242,3911.44,13000.0,71530.0,1,4,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,47686.666666666664,5,0,5,5_0 +4069,0.0,0.0,24.0,111,46,20,0.0,15166,0.0,0.0,0.0,700.0,2.0,2.0,0.0,2.0,1.5,4677.517021275039,6137.04,0.0,65787.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,43858.0,5,0,5,5_0 +4070,11.0,17.0,75.0,112,74,12,0.0,15168,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1397.2528702737636,0.0,0.0,58044.0,5,1,10,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,38696.0,5,0,5,5_0 +4071,0.0,24.0,50.0,400,38,31,0.0,15169,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1681.8390186011843,1560.0,0.0,56267.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,37511.333333333336,5,0,5,5_1 +4072,5.0,5.0,60.0,112,78,50,0.0,15171,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3005.782589946032,0.0,0.0,34813.0,5,1,3,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17406.5,2,0,2_0,2_1 +4073,4.0,14.0,54.0,112,63,50,0.0,15172,0.0,100.0,90.0,0.0,3.0,7.0,2.0,4.0,2.3,1922.6262759975716,3203.2,0.0,39906.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17350.434782608696,2,0,2_0,2_0 +4074,4.0,4.0,68.0,111,78,70,0.0,15174,0.0,0.0,130.0,0.0,0.0,5.0,0.0,1.0,1.0,944.6245665919178,0.0,0.0,18105.0,5,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18105.0,2,0,2_0,2_0 +4075,8.0,10.0,87.0,111,77,70,0.0,15175,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2157.0953288711194,0.0,0.0,36562.0,5,4,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,24374.666666666668,4,0,4_0,4_0 +4076,12.0,19.0,28.0,300,52,50,0.0,15177,0.0,0.0,400.0,0.0,2.0,3.0,2.0,3.0,2.0,2818.6013610000177,5200.0,0.0,43520.0,1,3,0,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,21760.0,3,0,3_1,3_0 +4077,0.0,0.0,71.0,112,43,33,0.0,15179,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1466.0716337533418,1962.48,0.0,87576.0,1,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,58384.0,5,0,5,5_0 +4078,3.0,8.0,43.0,111,31,30,0.0,1518,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,4872.69443154902,0.0,0.0,21030.0,1,2,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13143.75,1,0,1_0,1_0 +4079,0.0,0.0,60.0,111,22,41,0.0,15180,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4522.660459907611,0.0,0.0,10620.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10620.0,1,0,1_0,1_0 +4080,4.0,4.0,58.0,111,63,50,0.0,15181,0.0,30.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,1759.175883356704,0.0,0.0,39725.0,1,2,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,26483.333333333332,4,0,4_0,4_0 +4081,5.0,9.0,70.0,111,74,20,0.0,15182,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2426.363043483802,2511.6,0.0,73233.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,48822.0,5,0,5,5_0 +4082,1.0,1.0,53.0,111,38,12,0.0,15183,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,741.362065960451,3012.88,0.0,56576.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28288.0,4,0,4_0,4_0 +4083,8.0,8.0,87.0,111,77,70,0.0,15184,0.0,200.0,0.0,186.0,0.0,1.0,0.0,1.0,1.0,4340.8659801118265,0.0,0.0,15754.0,5,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,15754.0,2,0,2_1,2_0 +4084,0.0,0.0,67.0,111,75,33,0.0,15185,0.0,0.0,0.0,185.0,1.0,5.0,1.0,3.0,2.0,5889.240061833443,1040.0,0.0,42940.0,5,3,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,21470.0,3,0,3_1,3_0 +4085,0.0,0.0,67.0,111,77,70,0.0,15186,0.0,0.0,0.0,321.0,0.0,3.0,0.0,1.0,1.0,2992.9937530335205,2340.0,0.0,16620.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16620.0,2,0,2_0,2_0 +4086,1.0,1.0,36.0,111,85,50,1.0,15188,0.0,400.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,1074.493177183958,0.0,28000.0,21316.0,7,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,13322.5,1,0,1_1,1_0 +4087,6.0,17.0,52.0,120,52,71,0.0,15189,0.0,0.0,50.0,0.0,1.0,3.0,0.0,1.0,1.0,2845.846513620418,0.0,0.0,11230.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,11230.0,1,0,1_0,1_1 +4088,4.0,9.0,69.0,112,78,50,0.0,1519,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2065.6002862769046,0.0,0.0,32387.0,5,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21591.333333333332,3,0,3_0,3_1 +4089,7.0,11.0,36.0,120,46,42,0.0,15190,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,931.9179531944396,1560.0,0.0,59042.0,1,2,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,24600.833333333336,4,0,4_0,4_0 +4090,2.0,2.0,51.0,111,68,71,0.0,15191,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3157.051422897874,2600.0,0.0,34797.0,1,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23198.0,3,0,3_0,3_0 +4091,4.0,4.0,21.0,112,69,43,0.0,15195,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,565.9022751304022,1300.0,0.0,29200.0,1,3,6,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19466.666666666668,3,0,3_0,3_0 +4092,1.0,6.0,55.0,112,63,50,2.0,15196,0.0,0.0,350.0,0.0,2.0,6.0,0.0,2.0,1.5,1961.682728615706,5022.159999999999,8400.0,22340.0,1,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14893.333333333334,2,0,2_0,2_1 +4093,0.0,11.0,77.0,111,72,41,0.0,15197,0.0,400.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2391.455838078998,0.0,0.0,10870.0,5,1,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,10870.0,1,0,1_0,1_0 +4094,0.0,0.0,41.0,111,38,30,0.0,15198,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,765.8074520267152,0.0,0.0,36200.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20111.11111111111,3,0,3_0,3_0 +4095,6.0,6.0,76.0,111,75,44,0.0,152,0.0,770.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3743.735372296475,0.0,0.0,36401.0,5,1,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,24267.333333333332,4,0,4_0,4_0 +4096,0.0,3.0,58.0,111,63,71,2.0,15200,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1554.1969862598917,0.0,19300.0,26230.0,1,3,8,6.0,3,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,17486.666666666668,2,0,2_0,2_0 +4097,4.0,22.0,68.0,111,68,71,0.0,15201,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1727.1112037615003,2236.0,0.0,29320.0,1,1,7,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,19546.666666666668,3,0,3_0,3_0 +4098,5.0,5.0,43.0,112,37,30,0.0,15202,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1537.3174366083997,0.0,0.0,105077.0,1,1,10,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,37527.5,5,0,5,5_1 +4099,2.0,2.0,37.0,111,45,20,0.0,15204,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,502.5591960858014,2340.0,0.0,52045.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,24783.333333333332,4,0,4_0,4_0 +4100,4.0,6.0,25.0,300,62,60,0.0,15205,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3070.589146653539,0.0,0.0,51488.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28604.444444444445,4,0,4_0,4_0 +4101,0.0,0.0,41.0,111,33,12,0.0,15206,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1609.4865380346055,2808.0,0.0,95309.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,39712.083333333336,5,0,5,5_0 +4102,0.0,11.0,60.0,112,74,31,0.0,15207,0.0,0.0,295.0,0.0,0.0,6.0,0.0,2.0,1.5,1709.0532840272408,3120.0,0.0,58530.0,5,1,10,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,39020.0,5,0,5,5_0 +4103,1.0,4.0,45.0,111,63,71,2.0,15208,0.0,0.0,500.0,0.0,3.0,4.0,1.0,3.0,2.0,3034.4293995822118,2652.0,7226.0,44138.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,22069.0,3,0,3_0,3_0 +4104,2.0,2.0,63.0,211,78,71,0.0,15209,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,953.162667781887,0.0,0.0,33805.0,5,3,4,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,22536.666666666668,3,0,3_0,3_0 +4105,16.0,16.0,36.0,221,56,71,0.0,1521,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,774.7348976698121,1040.0,0.0,16326.0,4,3,1,2.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,9070.0,1,0,1_1,1_0 +4106,2.0,2.0,36.0,112,22,30,0.0,15210,0.0,950.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2303.2409370582395,0.0,0.0,26340.0,4,3,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,10975.0,1,0,1_1,1_1 +4107,0.0,0.0,65.0,111,74,30,0.0,15213,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,6540.01572928357,0.0,0.0,101401.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,67600.66666666667,5,0,5,5_0 +4108,8.0,8.0,77.0,400,77,41,0.0,15214,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2121.577578663917,0.0,0.0,20510.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20510.0,3,0,3_0,3_1 +4109,0.0,0.0,54.0,400,69,50,0.0,15215,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1615.1331874686311,1962.48,0.0,21404.0,1,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14269.333333333334,2,0,2_1,2_1 +4110,0.0,0.0,42.0,112,43,31,0.0,15216,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2443.8018765551055,0.0,0.0,20727.0,1,2,4,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20727.0,3,0,3_0,3_1 +4111,0.0,0.0,45.0,211,67,50,0.0,15217,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2836.2136575956,2394.08,0.0,32677.0,1,3,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14207.391304347828,2,0,2_1,2_0 +4112,5.0,15.0,25.0,111,43,50,0.0,15218,0.0,0.0,0.0,426.0,1.0,2.0,0.0,1.0,1.0,3875.5916422797854,261.03999999999996,0.0,20948.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,20948.0,3,0,3_1,3_0 +4113,15.0,15.0,59.0,112,34,30,0.0,15219,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1809.3884862172101,2860.0,0.0,58576.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,39050.666666666664,5,0,5,5_1 +4114,3.0,3.0,73.0,111,72,41,0.0,1522,0.0,0.0,0.0,1200.0,0.0,2.0,0.0,1.0,1.0,4472.68508729661,0.0,0.0,29365.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,29365.0,4,0,4_0,4_0 +4115,0.0,1.0,61.0,111,37,41,0.0,15221,0.0,5.0,0.0,850.0,1.0,3.0,0.0,2.0,1.5,2706.7898610392185,2600.0,0.0,69310.0,1,3,6,5.0,3,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,46206.666666666664,5,0,5,5_0 +4116,4.0,8.0,38.0,112,68,50,0.0,15222,0.0,400.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2235.1410161537137,0.0,0.0,40143.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19115.714285714286,3,0,3_0,3_1 +4117,0.0,0.0,56.0,111,42,50,0.0,15224,0.0,0.0,0.0,680.0,1.0,2.0,0.0,1.0,1.0,2566.0824070868593,0.0,0.0,30267.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30267.0,4,0,4_0,4_0 +4118,0.0,0.0,62.0,112,78,50,0.0,15227,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2694.2072864890224,3848.52,0.0,35481.0,5,4,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23654.0,3,0,3_0,3_1 +4119,2.0,8.0,51.0,400,38,50,0.0,15228,0.0,810.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1999.5202629284888,2080.0,0.0,48730.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,32486.666666666668,5,0,5,5_1 +4120,0.0,11.0,53.0,111,54,50,2.0,15229,0.0,30.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2203.995651112763,0.0,9990.0,51814.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,34542.666666666664,5,0,5,5_0 +4121,2.0,2.0,37.0,111,47,31,0.0,1523,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4133.115367294492,0.0,0.0,25521.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,25521.0,4,0,4_0,4_0 +4122,24.0,24.0,24.0,111,81,71,0.0,15230,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3758.348768826872,0.0,0.0,13371.0,4,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,8914.0,1,0,1_1,1_0 +4123,1.0,5.0,55.0,120,42,31,0.0,15231,0.0,199998.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1953.6708396649758,4316.0,0.0,61653.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,24661.2,4,0,4_0,4_1 +4124,0.0,0.0,41.0,111,37,0,0.0,15233,0.0,0.0,0.0,500.0,2.0,3.0,2.0,4.0,2.1,1402.5882876127089,0.0,0.0,62370.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29700.0,4,0,4_0,4_0 +4125,0.0,0.0,67.0,111,78,70,0.0,15234,0.0,0.0,0.0,299.0,0.0,4.0,0.0,1.0,1.0,2953.7171138047806,0.0,0.0,13037.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13037.0,1,0,1_1,1_0 +4126,0.0,23.0,29.0,400,45,41,0.0,15235,0.0,0.0,0.0,620.0,1.0,6.0,0.0,2.0,1.5,3349.78416244141,0.0,0.0,50860.0,1,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,33906.666666666664,5,0,5,5_1 +4127,4.0,4.0,55.0,111,56,71,0.0,15236,0.0,0.0,99999.0,379.0,1.0,3.0,0.0,1.0,1.0,2150.294466476289,2265.12,0.0,11675.0,1,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,11675.0,1,0,1_1,1_0 +4128,4.0,7.0,32.0,111,46,41,0.0,15237,0.0,240.0,554.0,152.0,1.0,5.0,3.0,4.0,1.9,1048.0904436193919,2199.6,0.0,36222.0,1,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,19064.21052631579,3,0,3_1,3_0 +4129,7.0,7.0,46.0,112,65,71,0.0,15238,0.0,0.0,0.0,760.0,2.0,4.0,1.0,3.0,2.0,1913.3353593480972,1560.0,0.0,44166.0,1,3,10,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22083.0,3,0,3_0,3_0 +4130,8.0,12.0,41.0,111,64,71,0.0,1524,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.1,1656.806990646387,2600.0,0.0,42886.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20421.90476190476,3,0,3_0,3_0 +4131,2.0,11.0,54.0,111,55,71,0.0,15240,0.0,0.0,400.0,312.0,1.0,2.0,0.0,1.0,1.0,2362.854620880622,2106.0,0.0,12150.0,4,3,7,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,12150.0,1,0,1_0,1_0 +4132,13.0,13.0,40.0,111,85,71,0.0,15241,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,2.3,924.6252432241438,0.0,0.0,20022.0,6,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,8705.217391304348,1,0,1_1,1_0 +4133,0.0,0.0,62.0,300,77,60,0.0,15242,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2252.155917121633,2548.0,0.0,31039.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20692.666666666668,3,0,3_0,3_1 +4134,12.0,12.0,33.0,112,47,43,0.0,15245,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1737.9391569449485,2227.16,0.0,67231.0,1,2,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,37350.555555555555,5,0,5,5_0 +4135,3.0,3.0,81.0,111,74,42,0.0,15246,0.0,200.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1981.1834110779143,0.0,0.0,63559.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,42372.666666666664,5,0,5,5_0 +4136,3.0,4.0,37.0,300,33,20,0.0,15247,0.0,0.0,100449.0,0.0,2.0,4.0,2.0,4.0,2.1,2177.938192832712,1821.56,0.0,41550.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,19785.714285714286,3,0,3_0,3_1 +4137,2.0,2.0,69.0,111,74,30,0.0,15248,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2176.2307048984258,0.0,0.0,98062.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,65374.666666666664,5,0,5,5_0 +4138,1.0,10.0,60.0,400,35,41,2.0,1525,0.0,200.0,100.0,0.0,1.0,5.0,0.0,1.0,1.0,2460.9771844918073,0.0,8000.0,21118.0,1,1,0,0.0,1,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,21118.0,3,0,3_0,3_1 +4139,2.0,2.0,38.0,300,62,43,0.0,15250,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,1858.1720647628456,1560.0,0.0,45363.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16201.07142857143,2,0,2_0,2_1 +4140,4.0,13.0,64.0,111,75,50,0.0,15251,0.0,872.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2013.40894154291,0.0,0.0,23310.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15540.0,2,0,2_0,2_0 +4141,7.0,15.0,31.0,111,34,0,0.0,15252,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2416.318903156734,0.0,0.0,53090.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,25280.95238095238,4,0,4_0,4_0 +4142,0.0,0.0,68.0,112,74,20,0.0,15253,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,5855.376543486983,0.0,0.0,60875.0,5,1,7,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,40583.333333333336,5,0,5,5_0 +4143,3.0,3.0,45.0,112,38,12,0.0,15254,0.0,99999.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1705.1654134328637,0.0,0.0,104116.0,1,1,9,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,40044.61538461538,5,0,5,5_0 +4144,5.0,5.0,73.0,112,71,44,0.0,15255,0.0,0.0,80.0,0.0,0.0,9.0,0.0,2.0,1.5,1347.0570323414456,0.0,0.0,45919.0,5,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,30612.666666666668,4,0,4_0,4_1 +4145,1.0,7.0,33.0,111,67,71,2.0,15256,0.0,0.0,0.0,510.0,1.0,3.0,1.0,2.0,1.3,874.2372023139209,0.0,9000.0,17390.0,1,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,13376.923076923076,1,0,1_0,1_0 +4146,5.0,13.0,46.0,300,13,31,0.0,15257,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1939.2557177564772,3712.28,0.0,66740.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,37077.777777777774,5,0,5,5_1 +4147,0.0,0.0,27.0,111,63,44,0.0,15258,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,12390.08227183443,0.0,0.0,29950.0,1,2,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29950.0,4,0,4_0,4_0 +4148,16.0,17.0,50.0,111,21,50,0.0,15259,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3159.4835774600524,3120.0,0.0,42239.0,4,2,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,42239.0,5,0,5,5_0 +4149,0.0,1.0,53.0,111,48,31,2.0,15260,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.3,1694.4956162276308,3640.0,17600.0,53053.0,1,1,8,6.0,4,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,23066.521739130436,3,0,3_0,3_0 +4150,3.0,3.0,56.0,120,67,50,0.0,15261,0.0,500.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1603.168185312215,2938.0,0.0,40133.0,1,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,26755.333333333332,4,0,4_0,4_1 +4151,12.0,12.0,37.0,111,43,33,0.0,15262,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2801.14769393117,1144.0,0.0,56598.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26951.42857142857,4,0,4_0,4_0 +4152,6.0,6.0,40.0,120,23,31,0.0,15263,0.0,650.0,0.0,0.0,2.0,10.0,2.0,4.0,2.1,2495.4911224675657,0.0,0.0,180743.0,1,2,0,1.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,86068.09523809524,5,0,5,5_0 +4153,0.0,0.0,26.0,300,62,43,0.0,15264,0.0,0.0,0.0,554.0,1.0,4.0,0.0,1.0,1.0,3659.710874148012,1560.0,0.0,28810.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28810.0,4,0,4_0,4_1 +4154,0.0,0.0,62.0,400,77,70,0.0,15266,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2370.1158959939103,2341.56,0.0,46988.0,5,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31325.333333333332,4,0,4_0,4_1 +4155,31.0,35.0,57.0,112,38,31,0.0,15267,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1492.4498455855744,2340.0,0.0,137356.0,1,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,91570.66666666667,5,0,5,5_1 +4156,0.0,0.0,32.0,111,85,71,0.0,15269,0.0,0.0,0.0,0.0,0.0,3.0,3.0,4.0,1.9,978.6623379154355,0.0,0.0,25500.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13421.052631578948,1,0,1_1,1_0 +4157,1.0,1.0,67.0,300,86,50,1.0,1527,0.0,1560.0,0.0,0.0,1.0,6.0,2.0,5.0,2.6,803.6845868372125,0.0,19150.0,31591.0,5,3,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,12150.384615384615,1,0,1_1,1_1 +4158,1.0,13.0,77.0,400,75,70,2.0,15270,0.0,0.0,350.0,0.0,0.0,7.0,0.0,2.0,1.5,1887.2727447560226,0.0,200.0,49305.0,5,4,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,32870.0,5,0,5,5_1 +4159,1.0,1.0,46.0,111,34,10,1.0,15271,0.0,0.0,0.0,80.0,2.0,2.0,0.0,2.0,1.5,2677.4507675249674,0.0,16000.0,11930.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,7953.333333333333,1,0,1_0,1_0 +4160,0.0,0.0,36.0,111,68,43,0.0,15274,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2717.090005880916,0.0,0.0,17815.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17815.0,2,0,2_0,2_0 +4161,2.0,4.0,89.0,111,77,60,0.0,15275,0.0,199998.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2341.1113330675785,0.0,0.0,25896.0,5,1,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25896.0,4,0,4_0,4_0 +4162,4.0,6.0,42.0,112,46,20,0.0,15276,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.1,2605.402923684446,0.0,0.0,38460.0,1,2,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18314.285714285714,2,0,2_0,2_1 +4163,0.0,8.0,26.0,111,69,50,2.0,15277,0.0,0.0,20.0,384.0,2.0,5.0,3.0,5.0,2.4,2426.3622787359877,2600.0,1500.0,24033.0,1,3,5,4.0,4,3.0,0.0,0.0,0,0,1,0,0,1,2.0,1.0,10013.75,1,0,1_1,1_0 +4164,3.0,11.0,37.0,111,46,31,0.0,15279,0.0,0.0,25.0,0.0,1.0,4.0,1.0,2.0,1.3,2605.4892660589517,0.0,0.0,30820.0,1,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23707.69230769231,3,0,3_0,3_0 +4165,4.0,13.0,71.0,112,78,71,0.0,1528,0.0,750.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2202.4601815813767,0.0,0.0,21620.0,5,1,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21620.0,3,0,3_0,3_0 +4166,0.0,0.0,47.0,111,34,20,0.0,15280,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1389.6894840463615,3199.56,0.0,98989.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,47137.619047619046,5,0,5,5_0 +4167,9.0,9.0,86.0,111,78,71,0.0,15281,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3372.376806908434,0.0,0.0,15041.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15041.0,2,0,2_0,2_0 +4168,2.0,2.0,42.0,221,22,20,0.0,15282,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2866.041267759299,0.0,0.0,16849.0,1,2,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16849.0,2,0,2_0,2_0 +4169,1.0,5.0,41.0,400,43,30,0.0,15283,0.0,500.0,100.0,0.0,2.0,10.0,1.0,3.0,2.0,3013.3053103424245,0.0,0.0,66528.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,33264.0,5,0,5,5_0 +4170,0.0,0.0,65.0,111,78,71,0.0,15286,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1139.2438934485936,0.0,0.0,28330.0,5,4,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18886.666666666668,3,0,3_0,3_0 +4171,0.0,18.0,46.0,111,12,43,0.0,15287,0.0,0.0,800.0,0.0,1.0,4.0,1.0,3.0,1.8,3547.789698042163,8574.8,0.0,36252.0,1,2,6,4.0,5,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,20140.0,3,0,3_0,3_0 +4172,8.0,9.0,43.0,112,45,30,0.0,15288,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,3075.7702465950224,2496.0,0.0,56051.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,24370.000000000004,4,0,4_0,4_1 +4173,1.0,1.0,41.0,111,53,71,1.0,15289,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4524.369311703898,0.0,12000.0,28928.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,28928.0,4,0,4_1,4_0 +4174,0.0,0.0,44.0,112,53,30,0.0,1529,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3306.837293024762,0.0,0.0,23799.0,1,2,8,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23799.0,3,0,3_0,3_0 +4175,4.0,20.0,53.0,112,46,50,0.0,15290,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1887.4329286316056,3722.16,0.0,44420.0,1,4,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22210.0,3,0,3_0,3_1 +4176,3.0,16.0,20.0,111,84,41,0.0,15291,0.0,630.0,0.0,393.0,0.0,1.0,0.0,1.0,1.0,4865.491997500476,0.0,0.0,4200.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,4200.0,1,0,1_1,1_0 +4177,0.0,17.0,59.0,112,78,50,0.0,15292,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1795.2421862714846,0.0,0.0,40998.0,5,1,8,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,27332.0,4,0,4_0,4_0 +4178,3.0,12.0,29.0,111,38,12,0.0,15293,0.0,0.0,99999.0,595.0,1.0,2.0,0.0,1.0,1.0,3445.2708319580474,0.0,0.0,40909.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,40909.0,5,0,5,5_0 +4179,11.0,11.0,70.0,400,75,71,0.0,15295,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2364.2127644887773,0.0,0.0,19992.0,5,3,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,19992.0,3,0,3_0,3_1 +4180,0.0,0.0,52.0,111,63,50,0.0,15297,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,3.1,1887.0042989219435,0.0,0.0,35782.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11542.58064516129,1,0,1_1,1_0 +4181,7.0,8.0,47.0,112,11,44,0.0,15298,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,1898.017608045036,3159.52,0.0,-7051.0,1,1,7,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,-5423.846153846153,1,0,1_0,1_1 +4182,2.0,2.0,44.0,111,52,71,0.0,153,0.0,0.0,0.0,503.0,1.0,2.0,0.0,1.0,1.0,1907.071027175745,1040.52,0.0,14313.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14313.0,2,0,2_1,2_0 +4183,5.0,6.0,89.0,120,86,71,0.0,1530,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1536.8649782673367,0.0,0.0,7673.0,5,1,0,0.0,1,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,7673.0,1,0,1_0,1_1 +4184,14.0,21.0,60.0,112,35,41,0.0,15300,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2869.5397428279466,3920.8,0.0,34202.0,1,3,8,1.0,3,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,22801.333333333332,3,0,3_0,3_0 +4185,1.0,3.0,19.0,111,55,41,0.0,15301,0.0,190.0,0.0,154.0,1.0,2.0,0.0,1.0,1.0,3629.274926791623,0.0,0.0,17062.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,17062.0,2,0,2_1,2_0 +4186,2.0,8.0,51.0,111,68,71,0.0,15303,0.0,0.0,2000.0,249.0,1.0,3.0,1.0,2.0,1.3,1538.0637894336853,0.0,0.0,24442.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,18801.53846153846,3,0,3_1,3_0 +4187,0.0,0.0,67.0,111,75,31,0.0,15304,0.0,0.0,0.0,0.0,2.0,6.0,2.0,3.0,2.0,1004.1693938395198,0.0,0.0,56310.0,5,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28155.0,4,0,4_0,4_0 +4188,0.0,0.0,56.0,111,75,12,0.0,15305,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1813.5463544342824,0.0,0.0,73337.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,48891.333333333336,5,0,5,5_0 +4189,10.0,10.0,35.0,112,53,41,0.0,15306,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2084.3469042543516,0.0,0.0,59122.0,1,1,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29561.0,4,0,4_0,4_0 +4190,0.0,0.0,50.0,111,37,12,0.0,15307,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3101.714726733425,0.0,0.0,191353.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,83196.95652173914,5,0,5,5_0 +4191,7.0,7.0,44.0,111,46,30,0.0,15308,0.0,250.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,3065.9403701544857,785.1999999999999,0.0,47958.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,20851.304347826088,3,0,3_0,3_0 +4192,13.0,13.0,54.0,111,63,20,0.0,1531,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5359.074745552216,0.0,0.0,25520.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,25520.0,4,0,4_0,4_0 +4193,0.0,0.0,49.0,111,85,71,0.0,15310,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,763.658984933196,0.0,0.0,114912.0,7,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,63840.0,5,0,5,5_0 +4194,4.0,5.0,74.0,111,77,50,0.0,15312,0.0,316.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2911.320825355426,0.0,0.0,18323.0,5,1,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18323.0,2,0,2_0,2_0 +4195,0.0,6.0,85.0,111,78,70,0.0,15313,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1395.7419213657715,0.0,0.0,19408.0,5,1,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19408.0,3,0,3_0,3_0 +4196,6.0,18.0,56.0,111,68,50,0.0,15317,0.0,200.0,0.0,278.0,1.0,3.0,0.0,1.0,1.0,1847.146228346729,2568.7999999999997,0.0,16999.0,1,3,8,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,16999.0,2,0,2_0,2_0 +4197,2.0,2.0,59.0,400,68,50,0.0,15318,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2376.3222070378715,1560.0,0.0,21090.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,21090.0,3,0,3_1,3_1 +4198,7.0,18.0,48.0,111,52,31,0.0,15319,0.0,0.0,140.0,0.0,1.0,5.0,1.0,3.0,2.0,1538.4472048973864,1196.0,0.0,42360.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,21180.0,3,0,3_0,3_0 +4199,6.0,9.0,56.0,111,68,60,0.0,1532,0.0,0.0,0.0,362.0,2.0,4.0,0.0,2.0,1.5,2630.117025511763,0.0,0.0,42330.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,28220.0,4,0,4_0,4_0 +4200,7.0,9.0,67.0,111,78,71,0.0,15320,0.0,99999.0,0.0,275.0,0.0,2.0,0.0,1.0,1.0,2144.427344694248,1159.6000000000001,0.0,9930.0,5,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,9930.0,1,0,1_0,1_0 +4201,1.0,14.0,82.0,112,74,70,2.0,15321,0.0,0.0,216.0,0.0,0.0,4.0,0.0,1.0,1.0,2851.8332960877015,2116.92,800.0,21590.0,5,1,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21590.0,3,0,3_0,3_0 +4202,2.0,16.0,33.0,300,65,60,0.0,15322,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2451.4334259556545,778.44,0.0,55622.0,1,2,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,26486.666666666664,4,0,4_0,4_0 +4203,1.0,1.0,65.0,300,78,70,0.0,15324,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1893.1132580339172,2704.0,0.0,25560.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17040.0,2,0,2_0,2_1 +4204,8.0,8.0,51.0,111,68,71,0.0,15325,0.0,0.0,380.0,79.0,2.0,3.0,1.0,3.0,1.8,3417.7573301490274,0.0,0.0,19426.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10792.222222222223,1,0,1_1,1_0 +4205,4.0,9.0,63.0,400,77,50,0.0,15327,0.0,0.0,0.0,650.0,1.0,6.0,0.0,2.0,1.5,2032.4557125698307,3432.0,0.0,38710.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25806.666666666668,4,0,4_0,4_1 +4206,1.0,13.0,86.0,111,77,60,0.0,15328,0.0,0.0,452.0,0.0,0.0,4.0,0.0,1.0,1.0,2547.1203939351,0.0,0.0,16183.0,5,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16183.0,2,0,2_0,2_0 +4207,17.0,17.0,50.0,120,65,50,0.0,1533,0.0,790.0,0.0,0.0,3.0,4.0,3.0,5.0,2.8,2002.3393165167292,1560.0,0.0,59379.0,1,2,0,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,1.0,3.0,21206.785714285717,3,0,3_0,3_1 +4208,4.0,4.0,25.0,112,85,71,0.0,15330,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,1.3,898.1257047684124,0.0,0.0,8330.0,6,1,9,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,6407.692307692308,1,0,1_0,1_1 +4209,10.0,15.0,70.0,112,77,71,0.0,15332,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2406.2830170900734,0.0,0.0,22314.0,5,1,8,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22314.0,3,0,3_0,3_0 +4210,0.0,0.0,79.0,400,74,50,0.0,15333,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2198.1480055289762,1040.0,0.0,38310.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25540.0,4,0,4_0,4_0 +4211,0.0,0.0,66.0,111,75,50,0.0,15335,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1637.2112843402253,3588.0,0.0,34987.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23324.666666666668,3,0,3_0,3_0 +4212,3.0,14.0,58.0,111,52,71,0.0,15336,0.0,0.0,0.0,584.0,1.0,4.0,0.0,1.0,1.0,2518.2854732262163,2288.0,0.0,17548.0,1,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,17548.0,2,0,2_1,2_0 +4213,8.0,8.0,32.0,112,35,30,0.0,15337,0.0,500.0,0.0,890.0,1.0,3.0,0.0,1.0,1.0,3490.547924959537,3588.5200000000004,0.0,22756.0,1,3,8,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22756.0,3,0,3_0,3_0 +4214,0.0,12.0,49.0,221,47,50,0.0,15338,0.0,1000.0,80.0,0.0,3.0,6.0,1.0,3.0,2.0,1753.5739366538985,2392.0,0.0,55825.0,1,1,1,2.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,27912.5,4,0,4_0,4_0 +4215,6.0,6.0,29.0,111,85,50,0.0,15339,0.0,0.0,0.0,7.0,1.0,4.0,2.0,4.0,2.1,2629.112027007087,0.0,0.0,25135.0,6,3,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,11969.047619047618,1,0,1_1,1_0 +4216,0.0,0.0,65.0,111,77,70,0.0,1534,0.0,0.0,0.0,480.0,0.0,3.0,0.0,1.0,1.0,3776.5687214420955,0.0,0.0,11064.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11064.0,1,0,1_1,1_0 +4217,8.0,10.0,32.0,111,46,31,0.0,15340,0.0,100.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1892.683815848492,2080.0,0.0,42057.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28038.0,4,0,4_0,4_0 +4218,0.0,0.0,37.0,111,37,31,0.0,15342,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3212.8580943648026,0.0,0.0,81414.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,45230.0,5,0,5,5_0 +4219,1.0,7.0,27.0,111,46,43,0.0,15343,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3462.231074460797,1300.0,0.0,18920.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18920.0,3,0,3_0,3_0 +4220,2.0,2.0,43.0,111,55,43,0.0,15344,0.0,200.0,0.0,156.0,1.0,4.0,2.0,3.0,1.6,1235.4568185655432,2080.0,0.0,18104.0,4,3,5,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,11315.0,1,0,1_1,1_0 +4221,7.0,8.0,40.0,111,54,43,0.0,15346,0.0,550.0,0.0,153.0,1.0,4.0,1.0,2.0,1.3,789.1588701816867,0.0,0.0,15774.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,12133.846153846154,1,0,1_1,1_0 +4222,6.0,23.0,24.0,111,55,31,0.0,15347,0.0,0.0,0.0,465.0,2.0,2.0,0.0,2.0,1.5,3261.7179133656396,0.0,0.0,38685.0,1,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25790.0,4,0,4_0,4_0 +4223,2.0,2.0,53.0,112,56,50,0.0,15348,0.0,0.0,450.0,450.0,1.0,6.0,0.0,1.0,1.0,2077.54886301316,2104.44,0.0,14833.0,1,3,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14833.0,2,0,2_0,2_1 +4224,0.0,0.0,36.0,112,47,31,0.0,1535,0.0,0.0,0.0,387.0,1.0,3.0,2.0,3.0,1.6,1222.2697366998348,0.0,0.0,28209.0,1,3,9,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,17630.625,2,0,2_1,2_0 +4225,0.0,0.0,46.0,111,52,71,0.0,15350,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,858.7208618266832,1040.0,0.0,24079.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16052.666666666666,2,0,2_0,2_0 +4226,5.0,5.0,72.0,111,78,50,0.0,15351,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2144.964179344761,0.0,0.0,37236.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24824.0,4,0,4_0,4_0 +4227,2.0,2.0,53.0,120,62,71,0.0,15352,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3093.6380986428517,0.0,0.0,26182.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26182.0,4,0,4_0,4_1 +4228,2.0,3.0,61.0,111,78,71,0.0,15353,0.0,0.0,0.0,385.0,0.0,3.0,0.0,2.0,1.5,2649.918071064489,0.0,0.0,19120.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12746.666666666666,1,0,1_0,1_0 +4229,0.0,0.0,78.0,120,77,41,0.0,15356,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2424.916045441822,0.0,0.0,15840.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15840.0,2,0,2_0,2_1 +4230,2.0,15.0,34.0,120,55,31,0.0,15357,0.0,0.0,0.0,636.0,1.0,2.0,0.0,1.0,1.0,2925.1356713117148,2141.88,0.0,28922.0,1,3,0,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,28922.0,4,0,4_0,4_0 +4231,0.0,0.0,27.0,111,43,50,0.0,15358,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1235.6493514435433,0.0,0.0,15118.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11629.23076923077,1,0,1_1,1_0 +4232,21.0,21.0,71.0,111,75,50,0.0,15359,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2718.4796473522483,1926.6,0.0,37330.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24886.666666666668,4,0,4_0,4_0 +4233,2.0,2.0,57.0,111,45,42,0.0,1536,0.0,150.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2285.2003905443366,0.0,0.0,41768.0,1,1,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27845.333333333332,4,0,4_0,4_0 +4234,0.0,0.0,84.0,111,74,30,0.0,15360,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4171.535973331007,0.0,0.0,17312.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17312.0,2,0,2_0,2_0 +4235,4.0,5.0,55.0,111,65,71,0.0,15363,0.0,150.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2499.820002018549,3848.0,0.0,21602.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,14401.333333333334,2,0,2_0,2_0 +4236,0.0,0.0,54.0,111,63,50,1.0,15364,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1578.9045255305798,4160.0,9134.0,57317.0,1,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,38211.333333333336,5,0,5,5_0 +4237,11.0,11.0,36.0,300,64,71,0.0,15365,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2671.740154686904,1612.0,0.0,29224.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13916.190476190475,2,0,2_0,2_1 +4238,4.0,14.0,47.0,111,42,41,0.0,15367,0.0,0.0,0.0,600.0,1.0,5.0,2.0,3.0,2.0,562.7206618618852,0.0,0.0,37938.0,1,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,18969.0,3,0,3_0,3_0 +4239,2.0,2.0,39.0,111,56,42,0.0,15368,0.0,300.0,60.0,0.0,1.0,0.0,3.0,4.0,2.1,801.4497917636215,2080.52,0.0,25489.0,4,4,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,12137.619047619048,1,0,1_0,1_0 +4240,0.0,0.0,77.0,300,71,70,0.0,15369,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2271.0442630103785,2421.12,0.0,18870.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12580.0,1,0,1_0,1_1 +4241,0.0,0.0,31.0,400,62,50,0.0,1537,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2134.9309674794995,0.0,0.0,19297.0,1,2,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19297.0,3,0,3_0,3_0 +4242,1.0,1.0,42.0,112,37,31,2.0,15370,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2370.5845457252776,3172.0,17800.0,66621.0,1,3,7,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28965.652173913044,4,0,4_0,4_0 +4243,5.0,5.0,35.0,300,62,60,0.0,15373,0.0,0.0,0.0,528.0,2.0,3.0,0.0,2.0,1.5,3202.259509375445,1040.0,0.0,34074.0,1,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22716.0,3,0,3_0,3_1 +4244,0.0,0.0,74.0,300,77,50,0.0,15374,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2196.556884209956,0.0,0.0,28751.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28751.0,4,0,4_0,4_1 +4245,0.0,0.0,20.0,111,84,41,0.0,15375,0.0,0.0,0.0,196.0,0.0,1.0,0.0,1.0,1.0,2193.4203080908883,0.0,0.0,1849.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,1849.0,1,0,1_1,1_0 +4246,0.0,0.0,65.0,120,71,44,0.0,15376,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1593.186367122397,1045.2,0.0,9838.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9838.0,1,0,1_0,1_1 +4247,7.0,11.0,77.0,300,78,50,0.0,15377,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2402.310627875867,0.0,0.0,30390.0,5,1,0,2.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,20260.0,3,0,3_0,3_0 +4248,0.0,25.0,32.0,221,54,0,2.0,15378,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3611.773636081911,0.0,760.0,65060.0,1,2,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,43373.333333333336,5,0,5,5_0 +4249,13.0,13.0,74.0,211,77,60,0.0,15379,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2457.126506233459,0.0,0.0,10650.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,10650.0,1,0,1_0,1_0 +4250,6.0,6.0,54.0,111,37,20,0.0,1538,0.0,0.0,0.0,0.0,1.0,9.0,0.0,1.0,1.0,1564.204192710253,2340.0,0.0,44020.0,1,2,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,44020.0,5,0,5,5_0 +4251,12.0,12.0,81.0,111,77,44,0.0,15381,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2442.8872737374245,0.0,0.0,49689.0,5,4,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,49689.0,5,0,5,5_0 +4252,6.0,11.0,48.0,111,22,41,0.0,15382,0.0,0.0,0.0,1000.0,2.0,4.0,2.0,4.0,2.1,3008.6612963005173,0.0,0.0,85440.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,40685.71428571428,5,0,5,5_0 +4253,5.0,16.0,62.0,112,75,50,0.0,15383,0.0,350.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2870.498272359893,1549.6000000000001,0.0,57205.0,5,1,7,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22882.0,3,0,3_0,3_1 +4254,6.0,6.0,35.0,111,62,50,0.0,15384,0.0,0.0,0.0,291.0,2.0,1.0,0.0,2.0,1.5,2151.5739279448526,0.0,0.0,38431.0,1,3,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,1,0.0,3.0,25620.666666666668,4,0,4_1,4_0 +4255,0.0,0.0,70.0,111,75,41,0.0,15385,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1552.8142338054886,0.0,0.0,51240.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34160.0,5,0,5,5_0 +4256,5.0,7.0,70.0,111,75,33,0.0,15386,0.0,20.0,20.0,0.0,0.0,6.0,0.0,2.0,1.5,1391.7382539802038,2786.16,0.0,53943.0,5,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,35962.0,5,0,5,5_0 +4257,2.0,6.0,26.0,111,55,41,0.0,15387,0.0,0.0,130.0,115.0,1.0,3.0,2.0,3.0,1.6,1554.490815285834,0.0,0.0,23169.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,14480.625,2,0,2_1,2_0 +4258,1.0,14.0,69.0,120,75,50,2.0,15388,0.0,0.0,900.0,0.0,0.0,5.0,0.0,2.0,1.5,1623.066387997777,0.0,1700.0,22556.0,5,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,15037.333333333334,2,0,2_0,2_1 +4259,3.0,3.0,44.0,211,64,50,0.0,1539,0.0,0.0,200.0,0.0,2.0,6.0,3.0,5.0,2.8,2373.502529500271,0.0,0.0,41723.0,1,1,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,2.0,0.0,14901.07142857143,2,0,2_1,2_0 +4260,13.0,13.0,65.0,111,77,50,0.0,15390,0.0,0.0,0.0,360.0,1.0,3.0,1.0,3.0,2.0,3597.9950000187514,0.0,0.0,39470.0,5,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,19735.0,3,0,3_0,3_0 +4261,1.0,1.0,20.0,111,84,41,2.0,15392,0.0,60.0,100.0,220.0,0.0,2.0,0.0,1.0,1.0,3492.6020909130357,0.0,22000.0,7589.0,3,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,7589.0,1,0,1_1,1_0 +4262,6.0,13.0,46.0,111,42,31,0.0,15393,0.0,0.0,120.0,0.0,2.0,5.0,2.0,4.0,2.3,2309.2948515856806,0.0,0.0,36167.0,1,2,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,15724.782608695654,2,0,2_0,2_0 +4263,1.0,3.0,40.0,111,21,44,2.0,15394,0.0,0.0,0.0,113.0,1.0,5.0,3.0,4.0,1.9,779.6384645084042,1560.0,9000.0,32534.0,1,3,6,4.0,2,3.0,0.0,0.0,0,0,1,0,0,1,0.0,3.0,17123.157894736843,2,0,2_1,2_0 +4264,0.0,0.0,68.0,111,77,50,0.0,15395,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1240.9610769049577,0.0,0.0,46983.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31322.0,4,0,4_0,4_0 +4265,8.0,11.0,70.0,111,78,71,0.0,15397,0.0,0.0,120.0,0.0,1.0,4.0,2.0,4.0,2.5,1993.9262417655566,0.0,0.0,41420.0,5,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16568.0,2,0,2_0,2_0 +4266,2.0,17.0,83.0,111,78,50,0.0,15398,0.0,750.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3101.771198367769,0.0,0.0,30449.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20299.333333333332,3,0,3_0,3_0 +4267,4.0,4.0,45.0,111,34,71,0.0,15399,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1285.5624528021344,0.0,0.0,35653.0,1,2,9,7.0,2,2.0,1.0,0.0,0,0,0,1,0,0,2.0,0.0,23768.666666666668,3,0,3_0,3_0 +4268,3.0,3.0,52.0,112,65,50,0.0,15401,0.0,0.0,100.0,0.0,2.0,6.0,3.0,5.0,2.8,1407.073860257709,0.0,0.0,37592.0,1,1,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,13425.714285714286,1,0,1_0,1_1 +4269,0.0,0.0,23.0,111,21,50,0.0,15405,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1063.855545647467,0.0,0.0,15180.0,1,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,7228.571428571428,1,0,1_0,1_0 +4270,0.0,20.0,52.0,111,38,12,0.0,15406,0.0,680.0,0.0,0.0,1.0,7.0,2.0,4.0,2.5,2085.0910830520115,0.0,0.0,65881.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,26352.4,4,0,4_0,4_0 +4271,0.0,0.0,50.0,111,33,10,0.0,15407,0.0,0.0,0.0,0.0,2.0,10.0,3.0,5.0,2.6,1739.427454004162,5594.16,0.0,170083.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,65416.53846153846,5,0,5,5_0 +4272,6.0,8.0,43.0,112,52,41,0.0,15408,0.0,99999.0,0.0,500.0,2.0,2.0,0.0,2.0,1.5,3194.1157298485123,0.0,0.0,34660.0,1,3,10,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23106.666666666668,3,0,3_0,3_0 +4273,6.0,19.0,47.0,111,37,20,0.0,15410,0.0,0.0,80.0,0.0,1.0,2.0,0.0,1.0,1.0,2092.713068043627,0.0,0.0,19424.0,4,3,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,19424.0,3,0,3_0,3_0 +4274,18.0,18.0,41.0,111,34,10,0.0,15411,0.0,850.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,1195.7169703935447,0.0,0.0,29900.0,1,3,6,5.0,5,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,16611.11111111111,2,0,2_0,2_0 +4275,6.0,6.0,51.0,112,31,30,0.0,15412,0.0,70.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2308.991944914392,0.0,0.0,313910.0,1,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,156955.0,5,0,5,5_0 +4276,0.0,0.0,69.0,112,74,10,0.0,15413,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1343.2627541256575,2156.44,0.0,127652.0,5,1,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,85101.33333333333,5,0,5,5_0 +4277,1.0,14.0,26.0,111,56,50,0.0,15414,0.0,630.0,0.0,520.0,1.0,2.0,0.0,1.0,1.0,3882.439900980604,1349.3999999999999,0.0,19127.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19127.0,3,0,3_0,3_0 +4278,4.0,4.0,75.0,111,77,71,0.0,15415,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3410.2418217650043,0.0,0.0,15105.0,5,3,5,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,15105.0,2,0,2_0,2_0 +4279,9.0,9.0,57.0,111,52,33,0.0,15419,0.0,0.0,0.0,460.0,1.0,3.0,0.0,2.0,1.5,3120.2381075460007,0.0,0.0,22970.0,1,3,10,8.0,3,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,15313.333333333334,2,0,2_0,2_0 +4280,8.0,12.0,75.0,111,52,12,0.0,15420,0.0,0.0,99999.0,0.0,1.0,6.0,0.0,2.0,1.5,1223.3760543833678,5980.0,0.0,87266.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,58177.333333333336,5,0,5,5_0 +4281,0.0,13.0,59.0,111,78,50,0.0,15422,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2954.79385355141,0.0,0.0,12984.0,7,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,12984.0,1,0,1_1,1_0 +4282,0.0,0.0,55.0,112,37,31,0.0,15424,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1594.0749260469217,0.0,0.0,97698.0,1,2,8,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,42477.39130434783,5,0,5,5_0 +4283,0.0,0.0,32.0,111,22,71,0.0,15426,0.0,0.0,0.0,2600.0,1.0,2.0,0.0,2.0,1.5,1953.3672219441135,0.0,0.0,21181.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14120.666666666666,2,0,2_0,2_0 +4284,1.0,1.0,75.0,111,75,41,2.0,15427,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2817.928577666446,0.0,22000.0,21059.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21059.0,3,0,3_0,3_0 +4285,2.0,2.0,55.0,111,43,33,0.0,15429,0.0,99999.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2158.6749018924775,0.0,0.0,47640.0,1,1,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,31760.0,4,0,4_0,4_0 +4286,11.0,11.0,82.0,212,86,70,0.0,1543,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1951.2711874123318,0.0,0.0,19333.0,5,1,1,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19333.0,3,0,3_0,3_1 +4287,7.0,12.0,31.0,111,55,41,0.0,15430,0.0,500.0,0.0,300.0,1.0,4.0,3.0,4.0,1.9,900.9003364045763,0.0,0.0,26540.0,4,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,13968.42105263158,2,0,2_1,2_0 +4288,2.0,2.0,61.0,300,64,50,0.0,15431,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1694.3960130386645,2927.6,0.0,11960.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11960.0,1,0,1_0,1_1 +4289,0.0,0.0,53.0,222,21,50,0.0,15432,0.0,0.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,2266.3740941138767,0.0,0.0,43740.0,1,1,1,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17496.0,2,0,2_0,2_1 +4290,1.0,6.0,40.0,111,67,43,2.0,15434,0.0,0.0,0.0,16.0,1.0,3.0,1.0,2.0,1.3,1639.9709289731707,1040.0,11000.0,7138.0,1,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,5490.7692307692305,1,0,1_1,1_0 +4291,0.0,0.0,61.0,400,77,71,0.0,15435,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2770.54230233421,936.0,0.0,13971.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13971.0,2,0,2_0,2_0 +4292,4.0,5.0,76.0,111,78,50,0.0,15437,0.0,0.0,0.0,475.0,0.0,3.0,0.0,1.0,1.0,5664.146387163326,0.0,0.0,12810.0,5,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,12810.0,1,0,1_1,1_0 +4293,10.0,11.0,27.0,111,43,30,0.0,15439,0.0,400.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3907.5371417426736,0.0,0.0,25804.0,1,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,25804.0,4,0,4_0,4_0 +4294,1.0,1.0,57.0,112,37,30,1.0,1544,0.0,500.0,500.0,0.0,2.0,5.0,0.0,2.0,1.5,2120.220988651074,0.0,30000.0,54069.0,1,1,9,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,36046.0,5,0,5,5_1 +4295,0.0,0.0,55.0,111,56,71,0.0,15441,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,6931.155510602826,0.0,0.0,5900.0,4,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,5900.0,1,0,1_0,1_0 +4296,20.0,20.0,50.0,111,37,20,0.0,15444,0.0,0.0,0.0,870.0,1.0,3.0,1.0,2.0,1.5,1356.4472476311437,2724.7999999999997,0.0,59150.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,39433.333333333336,5,0,5,5_0 +4297,0.0,0.0,28.0,111,33,30,1.0,15445,0.0,120.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3437.1324635328515,1881.8799999999999,14000.0,18876.0,1,4,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18876.0,3,0,3_0,3_0 +4298,10.0,11.0,32.0,111,42,30,0.0,15446,0.0,0.0,0.0,787.0,2.0,3.0,1.0,3.0,1.8,5066.565775308138,0.0,0.0,49219.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27343.888888888887,4,0,4_0,4_0 +4299,2.0,2.0,77.0,111,74,31,0.0,15447,0.0,300.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1519.0885988159591,0.0,0.0,68397.0,5,4,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,45598.0,5,0,5,5_0 +4300,13.0,13.0,84.0,221,75,71,0.0,15448,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4208.324780965725,0.0,0.0,11058.0,5,4,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11058.0,1,0,1_0,1_0 +4301,3.0,12.0,50.0,111,47,71,0.0,15450,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2978.0112938384004,442.0,0.0,20660.0,1,2,7,6.0,1,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,20660.0,3,0,3_0,3_0 +4302,2.0,2.0,66.0,221,78,71,0.0,15451,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,2.0,2451.3457016241955,2080.0,0.0,49503.0,5,2,1,3.0,5,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,24751.5,4,0,4_0,4_0 +4303,0.0,0.0,34.0,111,38,20,0.0,15452,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2617.831171224649,0.0,0.0,60111.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28624.285714285714,4,0,4_0,4_0 +4304,4.0,8.0,88.0,111,72,71,0.0,15453,0.0,803.0,0.0,1400.0,0.0,2.0,0.0,2.0,1.5,3655.203867563354,0.0,0.0,31362.0,5,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20908.0,3,0,3_0,3_0 +4305,0.0,0.0,72.0,211,75,60,0.0,15455,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1393.8164300726569,0.0,0.0,38766.0,5,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25844.0,4,0,4_0,4_0 +4306,7.0,7.0,40.0,111,38,31,0.0,15456,0.0,350.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3907.0200644440683,0.0,0.0,70567.0,1,2,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,33603.33333333333,5,0,5,5_0 +4307,7.0,7.0,31.0,111,38,12,0.0,15457,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2661.4170043364893,0.0,0.0,62789.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,34882.777777777774,5,0,5,5_0 +4308,6.0,6.0,84.0,111,75,44,0.0,15458,0.0,0.0,100.0,0.0,0.0,4.0,0.0,2.0,1.5,2011.1737243309626,0.0,0.0,24675.0,5,1,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16450.0,2,0,2_0,2_0 +4309,1.0,18.0,44.0,111,42,20,2.0,15459,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4975.824004752288,620.36,750.0,27451.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27451.0,4,0,4_0,4_0 +4310,2.0,2.0,62.0,111,52,50,0.0,1546,0.0,0.0,0.0,523.0,1.0,3.0,0.0,1.0,1.0,1485.2202762564982,2184.0,0.0,23640.0,1,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23640.0,3,0,3_0,3_0 +4311,11.0,11.0,74.0,300,75,70,0.0,15462,0.0,99999.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3159.565295498356,2756.0,0.0,27270.0,5,1,0,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,27270.0,4,0,4_0,4_1 +4312,1.0,3.0,66.0,120,78,50,2.0,15463,0.0,400.0,100.0,0.0,1.0,6.0,1.0,4.0,2.3,946.6636005818367,2080.0,19000.0,41720.0,5,4,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18139.13043478261,2,0,2_0,2_1 +4313,13.0,13.0,46.0,221,54,31,0.0,15464,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,3716.624438222913,1302.6000000000001,0.0,39091.0,1,1,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19545.5,3,0,3_0,3_0 +4314,11.0,11.0,57.0,111,43,33,0.0,15466,0.0,0.0,0.0,285.0,1.0,4.0,2.0,3.0,1.8,583.8513715892943,0.0,0.0,26586.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14770.0,2,0,2_1,2_0 +4315,0.0,0.0,46.0,112,52,70,1.0,15467,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1811.8744042517696,0.0,16217.0,41440.0,1,1,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20720.0,3,0,3_0,3_0 +4316,0.0,0.0,36.0,111,64,60,0.0,15468,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,4254.981567348608,2080.0,0.0,46791.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31194.0,4,0,4_0,4_0 +4317,3.0,13.0,55.0,111,47,43,0.0,15469,0.0,150.0,50.0,0.0,3.0,4.0,1.0,3.0,2.0,2070.6703334500608,3640.0,0.0,64181.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,32090.5,5,0,5,5_0 +4318,0.0,0.0,70.0,400,77,60,1.0,15470,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1697.146157716506,2080.0,20000.0,37044.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24696.0,4,0,4_0,4_1 +4319,7.0,11.0,82.0,112,78,71,0.0,15471,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2494.218525187159,1634.8799999999999,0.0,24001.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16000.666666666666,2,0,2_0,2_0 +4320,3.0,14.0,43.0,111,48,12,0.0,15473,0.0,70.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,4132.13488553533,0.0,0.0,76757.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,36550.95238095238,5,0,5,5_0 +4321,2.0,3.0,68.0,111,78,50,0.0,15475,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1836.7086172255072,0.0,0.0,24490.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,16326.666666666666,2,0,2_0,2_0 +4322,8.0,10.0,36.0,111,22,43,0.0,15478,0.0,70.0,0.0,690.0,1.0,3.0,0.0,1.0,1.0,3681.029444699072,0.0,0.0,33853.0,1,4,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,33853.0,5,0,5,5_0 +4323,0.0,0.0,59.0,112,37,60,0.0,15479,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1524.746508682421,3716.44,0.0,41504.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27669.333333333332,4,0,4_0,4_1 +4324,0.0,0.0,68.0,112,72,50,0.0,15481,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3030.2807233973745,0.0,0.0,14804.0,5,1,7,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14804.0,2,0,2_0,2_0 +4325,0.0,0.0,27.0,111,34,20,0.0,15482,0.0,0.0,0.0,573.0,2.0,2.0,1.0,3.0,1.8,3243.692932262884,1560.0,0.0,25344.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14080.0,2,0,2_1,2_0 +4326,6.0,11.0,72.0,400,75,71,0.0,15484,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2342.983089950043,0.0,0.0,24176.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,24176.0,4,0,4_0,4_0 +4327,0.0,4.0,64.0,112,75,33,0.0,15486,0.0,300.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2611.7843525313265,0.0,0.0,17770.0,5,1,4,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,17770.0,2,0,2_0,2_1 +4328,4.0,4.0,52.0,400,46,71,0.0,15487,0.0,0.0,90.0,0.0,2.0,4.0,0.0,2.0,1.5,2341.0149423421553,0.0,0.0,31611.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,21074.0,3,0,3_0,3_1 +4329,2.0,20.0,39.0,111,65,43,0.0,15488,0.0,0.0,70.0,0.0,2.0,7.0,3.0,5.0,3.0,619.9510957440218,0.0,0.0,63912.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21304.0,3,0,3_0,3_0 +4330,7.0,16.0,65.0,111,74,60,0.0,15489,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1940.7151604340925,0.0,0.0,22056.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22056.0,3,0,3_0,3_0 +4331,0.0,0.0,82.0,112,78,71,0.0,15490,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3983.5302105290093,0.0,0.0,10540.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10540.0,1,0,1_0,1_0 +4332,2.0,2.0,44.0,120,13,44,0.0,15494,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3004.280192345044,0.0,0.0,1834.0,1,4,0,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,1834.0,1,0,1_0,1_0 +4333,0.0,0.0,65.0,111,86,33,0.0,15495,0.0,0.0,0.0,309.0,0.0,3.0,0.0,1.0,1.0,1735.4334175223644,0.0,0.0,23280.0,5,3,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23280.0,3,0,3_0,3_0 +4334,5.0,5.0,70.0,120,78,70,0.0,15499,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2185.8264360650323,0.0,0.0,22773.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,15182.0,2,0,2_0,2_1 +4335,12.0,13.0,66.0,112,75,31,0.0,15500,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,1243.1176393797455,0.0,0.0,25190.0,5,1,10,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,25190.0,4,0,4_0,4_0 +4336,2.0,2.0,38.0,111,37,20,0.0,15501,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3352.1593892535557,2600.0,0.0,59410.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,28290.47619047619,4,0,4_0,4_0 +4337,0.0,0.0,33.0,221,56,44,0.0,15502,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2036.763364002883,1302.6000000000001,0.0,33050.0,1,3,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15738.095238095237,2,0,2_0,2_0 +4338,3.0,22.0,78.0,111,78,50,0.0,15504,0.0,120.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1691.5786053339848,0.0,0.0,23450.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,23450.0,3,0,3_0,3_0 +4339,0.0,0.0,65.0,120,75,41,0.0,15505,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1431.0965987701222,0.0,0.0,35625.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23750.0,3,0,3_0,3_0 +4340,0.0,0.0,34.0,111,38,12,1.0,15506,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,3170.7465811744555,0.0,18000.0,102521.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,56956.11111111111,5,0,5,5_0 +4341,2.0,2.0,46.0,111,55,71,0.0,15507,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3181.8539252374812,0.0,0.0,15790.0,1,3,10,8.0,3,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,10526.666666666666,1,0,1_0,1_0 +4342,2.0,5.0,35.0,111,21,50,0.0,15508,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,961.094497315244,0.0,0.0,13790.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,10607.692307692307,1,0,1_1,1_0 +4343,11.0,17.0,54.0,111,64,71,0.0,1551,0.0,760.0,0.0,378.0,3.0,4.0,1.0,3.0,2.0,1840.4986855017507,1040.0,0.0,35114.0,4,3,9,7.0,4,4.0,0.0,1.0,0,0,0,1,0,1,1.0,3.0,17557.0,2,0,2_1,2_0 +4344,7.0,19.0,63.0,112,77,31,0.0,15510,0.0,1000.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2172.1245273321006,0.0,0.0,34685.0,5,1,7,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,34685.0,5,0,5,5_0 +4345,8.0,10.0,53.0,111,43,33,0.0,15512,0.0,0.0,400.0,0.0,1.0,6.0,1.0,2.0,1.5,1408.5763774917145,1040.0,0.0,25739.0,1,2,5,4.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17159.333333333332,2,0,2_0,2_0 +4346,3.0,14.0,54.0,111,52,50,0.0,15513,0.0,400.0,0.0,369.0,2.0,3.0,1.0,3.0,1.8,2174.0519430743807,0.0,0.0,33276.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18486.666666666668,2,0,2_0,2_0 +4347,0.0,3.0,84.0,111,75,60,0.0,15514,0.0,0.0,99999.0,430.0,0.0,3.0,0.0,2.0,1.5,2499.7212152280676,780.0,0.0,30686.0,5,3,9,7.0,3,3.0,1.0,1.0,0,0,0,1,0,0,1.0,2.0,20457.333333333332,3,0,3_0,3_0 +4348,8.0,8.0,84.0,211,77,50,0.0,15515,0.0,0.0,99999.0,263.0,0.0,2.0,0.0,1.0,1.0,2020.2219449671331,0.0,0.0,13097.0,5,3,1,3.0,1,1.0,1.0,1.0,0,1,0,0,0,1,1.0,0.0,13097.0,1,0,1_1,1_0 +4349,6.0,6.0,32.0,112,64,43,0.0,15517,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2396.5459867956924,1560.0,0.0,27913.0,4,3,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15507.222222222223,2,0,2_0,2_1 +4350,8.0,8.0,73.0,111,77,50,0.0,15518,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2675.51623603079,0.0,0.0,16380.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16380.0,2,0,2_0,2_0 +4351,6.0,19.0,44.0,111,37,42,0.0,15519,0.0,50.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,3022.9447482406954,0.0,0.0,59763.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23905.2,4,0,4_0,4_0 +4352,2.0,21.0,61.0,111,72,70,0.0,15520,0.0,800.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,582.7772363041388,1040.0,0.0,5760.0,6,4,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,5760.0,1,0,1_0,1_0 +4353,0.0,0.0,37.0,211,43,33,0.0,15521,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,722.7043771114596,0.0,0.0,56766.0,1,2,3,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27031.42857142857,4,0,4_0,4_0 +4354,0.0,0.0,71.0,111,75,33,0.0,15522,0.0,0.0,0.0,431.0,1.0,3.0,1.0,2.0,1.5,5216.573665060922,0.0,0.0,21290.0,5,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14193.333333333334,2,0,2_0,2_0 +4355,7.0,9.0,32.0,111,55,31,0.0,15523,0.0,0.0,0.0,630.0,2.0,3.0,1.0,3.0,1.8,3748.714398642439,0.0,0.0,36854.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,20474.444444444445,3,0,3_0,3_0 +4356,5.0,5.0,61.0,111,46,42,0.0,15524,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3268.8286828769055,2243.7999999999997,0.0,37069.0,1,2,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,37069.0,5,0,5,5_0 +4357,1.0,12.0,66.0,120,75,41,2.0,15526,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1586.2491031230682,3505.84,2000.0,32648.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21765.333333333332,3,0,3_0,3_1 +4358,0.0,0.0,62.0,111,54,50,0.0,15529,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1731.5041127101877,0.0,0.0,66218.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,44145.333333333336,5,0,5,5_0 +4359,3.0,12.0,59.0,111,64,42,0.0,1553,0.0,60.0,180.0,0.0,2.0,4.0,0.0,2.0,1.5,1982.3044848640047,0.0,0.0,29070.0,1,2,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,19380.0,3,0,3_0,3_0 +4360,3.0,7.0,61.0,111,78,50,0.0,15530,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3239.1134585099753,0.0,0.0,15387.0,5,3,5,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,15387.0,2,0,2_0,2_0 +4361,2.0,2.0,40.0,111,21,43,0.0,15531,0.0,150.0,0.0,335.0,1.0,4.0,0.0,1.0,1.0,5134.3804946899245,0.0,0.0,17949.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,17949.0,2,0,2_1,2_0 +4362,4.0,4.0,49.0,111,53,60,0.0,15532,0.0,0.0,0.0,150.0,1.0,3.0,2.0,4.0,2.3,2161.2042704161413,0.0,0.0,24450.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10630.434782608696,1,0,1_1,1_0 +4363,0.0,5.0,31.0,111,38,12,2.0,15533,0.0,60.0,260.0,0.0,2.0,3.0,0.0,2.0,1.5,3611.4127275461524,0.0,7900.0,60589.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,40392.666666666664,5,0,5,5_0 +4364,0.0,0.0,69.0,111,78,41,0.0,15534,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1527.7259794316712,1300.0,0.0,46789.0,5,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31192.666666666668,4,0,4_0,4_0 +4365,3.0,8.0,24.0,120,52,43,0.0,15535,0.0,5.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,2371.0669996519077,1560.0,0.0,22208.0,1,1,0,3.0,2,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,14805.333333333334,2,0,2_0,2_0 +4366,2.0,4.0,36.0,111,34,30,0.0,15538,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3411.01863139055,0.0,0.0,38190.0,1,3,6,4.0,3,3.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,25460.0,4,0,4_1,4_0 +4367,11.0,11.0,56.0,111,37,31,0.0,1554,0.0,0.0,0.0,0.0,2.0,6.0,1.0,2.0,1.5,2050.701435600058,0.0,0.0,48851.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32567.333333333332,5,0,5,5_0 +4368,0.0,0.0,37.0,111,46,31,0.0,15540,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1992.6001358244607,2093.52,0.0,57262.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27267.619047619046,4,0,4_0,4_0 +4369,7.0,7.0,63.0,111,77,70,0.0,15541,0.0,199998.0,0.0,42.0,0.0,2.0,0.0,1.0,1.0,4945.453428756019,0.0,0.0,9784.0,5,3,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,1,0.0,2.0,9784.0,1,0,1_1,1_0 +4370,3.0,3.0,82.0,111,77,70,0.0,15543,0.0,0.0,0.0,540.0,0.0,2.0,0.0,1.0,1.0,5313.281888363265,0.0,0.0,17472.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17472.0,2,0,2_0,2_0 +4371,0.0,0.0,55.0,111,77,60,0.0,15544,0.0,0.0,0.0,197.0,0.0,2.0,0.0,1.0,1.0,4227.276232214978,0.0,0.0,14244.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14244.0,2,0,2_1,2_0 +4372,0.0,0.0,38.0,111,43,44,0.0,15545,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2206.584403538071,1638.0,0.0,40752.0,1,2,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27168.0,4,0,4_0,4_0 +4373,0.0,0.0,38.0,120,46,31,0.0,15546,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1963.2885008943824,4160.0,0.0,75219.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,32703.913043478264,5,0,5,5_0 +4374,4.0,13.0,60.0,211,52,50,0.0,15548,0.0,180.0,0.0,430.0,2.0,3.0,1.0,2.0,1.5,1812.3662620368889,2600.0,0.0,35176.0,1,3,1,3.0,2,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,23450.666666666668,3,0,3_0,3_0 +4375,12.0,17.0,39.0,111,52,43,0.0,15549,0.0,0.0,1000.0,227.0,1.0,3.0,1.0,2.0,1.3,791.2116871277666,0.0,0.0,17618.0,1,3,6,5.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,13552.307692307691,1,0,1_1,1_0 +4376,5.0,5.0,44.0,300,69,31,0.0,15551,0.0,264.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,2345.0290521956226,4160.0,0.0,37090.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14836.0,2,0,2_0,2_1 +4377,5.0,5.0,39.0,111,55,20,0.0,15552,0.0,0.0,0.0,231.0,1.0,3.0,1.0,2.0,1.3,603.400930114788,0.0,0.0,23564.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,18126.153846153844,2,0,2_1,2_0 +4378,0.0,0.0,55.0,112,56,31,0.0,15554,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,3429.6570880147824,1040.0,0.0,15252.0,1,1,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15252.0,2,0,2_0,2_0 +4379,1.0,4.0,47.0,111,38,31,2.0,15556,0.0,250.0,0.0,0.0,2.0,3.0,3.0,5.0,2.8,2444.1576247035305,2600.0,12500.0,69663.0,1,2,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,24879.64285714286,4,0,4_0,4_0 +4380,2.0,2.0,22.0,111,47,31,0.0,15557,0.0,0.0,199998.0,400.0,1.0,2.0,0.0,1.0,1.0,3234.6818454182408,0.0,0.0,19596.0,1,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,19596.0,3,0,3_0,3_0 +4381,0.0,0.0,72.0,300,74,10,0.0,1556,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1897.7020047847302,0.0,0.0,78761.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,52507.333333333336,5,0,5,5_0 +4382,1.0,1.0,28.0,111,64,60,1.0,15560,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3796.614874351482,2340.0,8591.0,38057.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21142.777777777777,3,0,3_0,3_0 +4383,16.0,16.0,50.0,112,12,50,0.0,15561,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1865.7452335412866,2607.28,0.0,109801.0,1,2,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,73200.66666666667,5,0,5,5_1 +4384,0.0,19.0,83.0,112,75,50,0.0,15562,0.0,0.0,200.0,0.0,1.0,4.0,0.0,2.0,1.5,3087.55086192681,0.0,0.0,33100.0,5,1,10,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,22066.666666666668,3,0,3_0,3_0 +4385,0.0,5.0,69.0,111,23,20,2.0,15563,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1944.6918523034565,0.0,6300.0,87646.0,1,3,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,48692.22222222222,5,0,5,5_0 +4386,3.0,12.0,84.0,112,74,41,0.0,15565,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2633.5425736128923,0.0,0.0,30512.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,30512.0,4,0,4_0,4_0 +4387,2.0,2.0,94.0,111,75,41,0.0,15566,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2049.5508130563626,0.0,0.0,21346.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,21346.0,3,0,3_0,3_0 +4388,6.0,19.0,66.0,112,74,12,0.0,15568,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2124.280954776712,3699.8,0.0,56790.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,37860.0,5,0,5,5_1 +4389,0.0,16.0,55.0,111,52,71,0.0,15569,0.0,0.0,0.0,440.0,2.0,4.0,0.0,2.0,1.5,2192.521186124159,0.0,0.0,37400.0,1,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24933.333333333332,4,0,4_0,4_0 +4390,3.0,6.0,54.0,111,56,71,0.0,1557,0.0,25.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,3499.6145511044915,2253.16,0.0,9301.0,4,1,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,4650.5,1,0,1_0,1_0 +4391,6.0,6.0,54.0,112,37,20,0.0,15572,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1864.4977513640201,3641.04,0.0,95295.0,1,1,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,47647.5,5,0,5,5_0 +4392,2.0,3.0,43.0,111,53,71,0.0,15573,0.0,1350.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,917.2346211513211,3016.0,0.0,49399.0,1,2,9,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,0.0,4.0,27443.888888888887,4,0,4_0,4_0 +4393,8.0,8.0,50.0,111,38,20,0.0,15575,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,1559.3837720984461,0.0,0.0,151306.0,1,1,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,60522.4,5,0,5,5_0 +4394,0.0,0.0,62.0,112,31,10,0.0,15576,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2885.63410072689,0.0,0.0,83760.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,55840.0,5,0,5,5_1 +4395,11.0,11.0,67.0,111,78,70,0.0,15577,0.0,400.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1817.8479196220505,1040.0,0.0,17710.0,5,1,5,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,17710.0,2,0,2_0,2_0 +4396,2.0,17.0,40.0,111,31,30,0.0,15579,0.0,300.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4479.877300512806,0.0,0.0,34386.0,1,4,10,8.0,1,4.0,0.0,0.0,0,0,0,0,1,0,2.0,2.0,34386.0,5,0,5,5_0 +4397,1.0,1.0,85.0,111,72,70,1.0,1558,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1500.5325487753632,0.0,7470.0,21170.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14113.333333333334,2,0,2_0,2_0 +4398,2.0,2.0,54.0,111,45,60,0.0,15580,0.0,0.0,140.0,0.0,1.0,1.0,0.0,1.0,1.0,3795.1563666665475,0.0,0.0,23712.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,23712.0,3,0,3_0,3_0 +4399,15.0,15.0,32.0,221,63,43,0.0,15581,0.0,0.0,30.0,0.0,1.0,4.0,0.0,1.0,1.0,3382.867307598426,3268.72,0.0,22583.0,1,3,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22583.0,3,0,3_0,3_0 +4400,8.0,8.0,27.0,111,48,20,0.0,15582,0.0,0.0,0.0,620.0,1.0,2.0,0.0,1.0,1.0,3528.4357179220337,2600.0,0.0,30487.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,30487.0,4,0,4_0,4_0 +4401,8.0,11.0,46.0,120,64,50,0.0,15583,0.0,99999.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,966.9752027413568,0.0,0.0,39936.0,1,2,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17363.478260869568,2,0,2_0,2_0 +4402,0.0,0.0,39.0,112,85,60,0.0,15584,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,254.45069288700543,0.0,0.0,10320.0,6,1,5,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,6880.0,1,0,1_0,1_1 +4403,2.0,9.0,50.0,300,55,50,0.0,15585,0.0,120.0,0.0,400.0,1.0,4.0,0.0,1.0,1.0,2939.8751416918785,1309.88,0.0,20257.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20257.0,3,0,3_0,3_1 +4404,0.0,0.0,21.0,111,84,41,0.0,15586,0.0,0.0,0.0,201.0,0.0,2.0,0.0,2.0,1.5,2438.314175191465,1820.0,0.0,3990.0,3,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,2660.0,1,0,1_1,1_0 +4405,0.0,0.0,52.0,111,42,30,0.0,15587,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,3.0,1810.9555273462852,0.0,0.0,64085.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21361.666666666668,3,0,3_0,3_0 +4406,2.0,2.0,35.0,111,37,20,0.0,15589,0.0,260.0,0.0,1200.0,1.0,2.0,0.0,1.0,1.0,3053.5126370947114,0.0,0.0,55013.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,55013.0,5,0,5,5_0 +4407,4.0,4.0,61.0,112,13,12,0.0,1559,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1372.9933610989065,0.0,0.0,7160.0,1,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,4773.333333333333,1,0,1_0,1_0 +4408,2.0,15.0,71.0,112,74,31,0.0,15590,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,2244.4515629108873,1876.6800000000003,0.0,70759.0,5,1,9,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,47172.666666666664,5,0,5,5_0 +4409,16.0,16.0,48.0,120,64,50,0.0,15591,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2560.8071099060794,1820.52,0.0,41381.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20690.5,3,0,3_0,3_1 +4410,2.0,22.0,68.0,111,78,71,0.0,15594,0.0,0.0,100.0,87.0,1.0,3.0,0.0,2.0,1.5,1592.2126076228967,0.0,0.0,13180.0,5,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,8786.666666666666,1,0,1_1,1_0 +4411,6.0,6.0,38.0,111,62,50,0.0,15596,0.0,100199.0,0.0,504.0,1.0,4.0,2.0,4.0,2.1,1496.0508974700742,858.0,0.0,25822.0,1,3,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,12296.190476190475,1,0,1_1,1_0 +4412,0.0,0.0,19.0,112,65,42,0.0,15597,0.0,0.0,0.0,300.0,1.0,2.0,0.0,1.0,1.0,1469.1743052852967,0.0,0.0,18001.0,1,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18001.0,2,0,2_0,2_0 +4413,1.0,15.0,33.0,221,43,31,2.0,15598,0.0,0.0,350.0,0.0,1.0,3.0,0.0,1.0,1.0,1973.769920457475,0.0,3000.0,22026.0,1,2,1,3.0,1,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,22026.0,3,0,3_0,3_0 +4414,6.0,8.0,80.0,112,74,30,0.0,15599,0.0,99999.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,2340.7784262329224,0.0,0.0,33801.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22534.0,3,0,3_0,3_1 +4415,0.0,0.0,58.0,300,56,50,0.0,156,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2019.616769541452,3536.5200000000004,0.0,26310.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17540.0,2,0,2_0,2_1 +4416,0.0,0.0,70.0,112,72,71,0.0,1560,0.0,0.0,0.0,191.0,0.0,2.0,0.0,1.0,1.0,2898.3812637650676,0.0,0.0,11422.0,5,3,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11422.0,1,0,1_1,1_1 +4417,0.0,6.0,81.0,300,74,30,2.0,15600,0.0,1000.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3453.479368756559,0.0,8000.0,30732.0,5,1,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,30732.0,4,0,4_0,4_0 +4418,5.0,5.0,29.0,111,37,20,0.0,15605,0.0,0.0,200.0,500.0,1.0,1.0,0.0,1.0,1.0,2778.1181023226927,0.0,0.0,24497.0,4,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,24497.0,4,0,4_0,4_0 +4419,21.0,21.0,28.0,111,43,33,0.0,15608,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2431.373288830856,3424.2,0.0,98816.0,1,2,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,65877.33333333333,5,0,5,5_0 +4420,0.0,0.0,59.0,111,52,50,0.0,15609,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2072.926659657586,0.0,0.0,21356.0,1,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21356.0,3,0,3_0,3_0 +4421,13.0,16.0,49.0,112,63,50,0.0,15610,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,2017.8333676338427,2080.0,0.0,78989.0,1,1,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,34343.04347826087,5,0,5,5_1 +4422,23.0,23.0,64.0,300,78,60,0.0,15611,0.0,0.0,0.0,266.0,0.0,5.0,0.0,1.0,1.0,3062.258598094825,2132.0,0.0,15590.0,5,3,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,1,0.0,3.0,15590.0,2,0,2_1,2_1 +4423,7.0,13.0,50.0,111,21,30,0.0,15612,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.3,458.5146255077236,0.0,0.0,29693.0,7,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,12910.000000000002,1,0,1_1,1_0 +4424,8.0,8.0,31.0,111,37,20,0.0,15613,0.0,0.0,0.0,730.0,2.0,3.0,0.0,2.0,1.5,2746.907025194853,0.0,0.0,51237.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,34158.0,5,0,5,5_0 +4425,1.0,4.0,65.0,112,74,30,0.0,15614,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1592.1169463338015,0.0,0.0,70457.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,46971.333333333336,5,0,5,5_1 +4426,0.0,0.0,53.0,111,54,41,0.0,15615,0.0,0.0,0.0,511.0,3.0,4.0,1.0,3.0,2.0,2644.639483527189,0.0,0.0,65481.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32740.5,5,0,5,5_0 +4427,0.0,13.0,49.0,111,54,43,0.0,15616,0.0,0.0,0.0,286.0,1.0,4.0,0.0,1.0,1.0,2090.875392322014,2705.56,0.0,23163.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23163.0,3,0,3_0,3_0 +4428,0.0,1.0,55.0,111,38,50,2.0,15617,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1933.0159753270868,3900.0,18200.0,41748.0,1,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20874.0,3,0,3_0,3_0 +4429,0.0,0.0,72.0,111,75,41,0.0,15618,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2439.1173157055414,0.0,0.0,22336.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22336.0,3,0,3_0,3_0 +4430,7.0,27.0,39.0,111,54,31,0.0,15619,0.0,300.0,0.0,370.0,1.0,5.0,2.0,3.0,1.6,637.0464896001016,3443.44,0.0,24718.0,1,3,6,5.0,2,3.0,0.0,1.0,0,0,1,0,0,1,0.0,3.0,15448.75,2,0,2_1,2_0 +4431,13.0,13.0,49.0,111,56,41,0.0,1562,0.0,150.0,60.0,0.0,1.0,3.0,2.0,3.0,1.8,576.4017178373441,1581.8400000000001,0.0,26048.0,1,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,14471.111111111111,2,0,2_1,2_0 +4432,4.0,18.0,58.0,221,52,71,0.0,15620,0.0,388.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,3279.7893998055356,3640.0,0.0,22496.0,1,3,1,2.0,2,4.0,0.0,0.0,0,1,0,0,0,1,1.0,3.0,14997.333333333334,2,0,2_1,2_0 +4433,9.0,9.0,61.0,111,68,70,0.0,15622,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1111.244150538702,4686.24,0.0,46340.0,1,2,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30893.333333333332,4,0,4_0,4_0 +4434,0.0,0.0,64.0,111,34,10,0.0,15624,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1636.3608091482322,309.40000000000003,0.0,199645.0,1,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,133096.66666666666,5,0,5,5_0 +4435,2.0,12.0,32.0,111,54,20,0.0,15625,0.0,100.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3213.6497680788443,1692.08,0.0,30241.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,30241.0,4,0,4_0,4_0 +4436,12.0,15.0,58.0,111,52,71,0.0,15626,0.0,180.0,0.0,286.0,3.0,5.0,2.0,3.0,2.0,805.1819535779729,1040.0,0.0,56606.0,1,3,7,5.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,28303.0,4,0,4_1,4_0 +4437,2.0,2.0,52.0,400,12,50,0.0,15627,0.0,0.0,260.0,0.0,2.0,6.0,0.0,2.0,1.5,1297.2895749035174,3588.0,0.0,19189.0,1,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,12792.666666666666,1,0,1_0,1_0 +4438,1.0,1.0,37.0,111,34,20,1.0,15628,0.0,410.0,0.0,319.0,1.0,1.0,0.0,1.0,1.0,3234.1882892517606,0.0,19000.0,12812.0,4,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,12812.0,1,0,1_1,1_0 +4439,6.0,6.0,40.0,111,38,31,0.0,15629,0.0,90.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1809.4963268981498,0.0,0.0,71868.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,34222.857142857145,5,0,5,5_0 +4440,7.0,7.0,63.0,300,75,44,0.0,1563,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2397.716496998863,3016.0,0.0,48706.0,5,1,0,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32470.666666666668,5,0,5,5_0 +4441,0.0,0.0,64.0,211,74,20,0.0,15631,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2674.6071043579714,2639.0,0.0,94840.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,63226.666666666664,5,0,5,5_0 +4442,8.0,10.0,41.0,112,35,30,0.0,15632,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,2022.0840890019774,2031.64,0.0,79669.0,1,2,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,30641.923076923074,4,0,4_0,4_1 +4443,0.0,0.0,58.0,111,35,60,0.0,15633,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4094.749284761798,0.0,0.0,36810.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36810.0,5,0,5,5_0 +4444,0.0,0.0,60.0,112,54,71,0.0,15634,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3092.741002315543,0.0,0.0,11522.0,4,3,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11522.0,1,0,1_1,1_1 +4445,7.0,9.0,72.0,112,78,50,0.0,15635,0.0,122.0,72.0,0.0,0.0,5.0,0.0,2.0,1.5,2193.7671668010553,3380.0,0.0,25599.0,5,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17066.0,2,0,2_0,2_1 +4446,11.0,14.0,86.0,400,86,71,0.0,15639,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1638.0153315027649,0.0,0.0,18980.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12653.333333333334,1,0,1_0,1_1 +4447,13.0,13.0,82.0,112,86,41,0.0,1564,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1388.3484240624073,0.0,0.0,32821.0,6,4,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32821.0,5,0,5,5_0 +4448,9.0,9.0,59.0,112,52,60,0.0,15640,0.0,99999.0,0.0,407.0,1.0,2.0,0.0,1.0,1.0,3321.48261111906,0.0,0.0,30306.0,1,3,10,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,30306.0,4,0,4_0,4_0 +4449,1.0,4.0,62.0,300,77,50,2.0,15642,0.0,0.0,36.0,0.0,0.0,5.0,0.0,2.0,1.5,1775.2284160498034,2277.6,7500.0,41152.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27434.666666666668,4,0,4_0,4_1 +4450,2.0,2.0,55.0,111,46,41,0.0,15643,0.0,200.0,0.0,410.0,1.0,3.0,0.0,1.0,1.0,6839.58271463934,780.0,0.0,22550.0,1,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22550.0,3,0,3_0,3_0 +4451,0.0,0.0,46.0,111,37,31,0.0,15644,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1678.2670920646626,2332.2000000000003,0.0,82700.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39380.95238095238,5,0,5,5_0 +4452,7.0,7.0,30.0,112,85,70,0.0,15645,0.0,0.0,0.0,163.0,0.0,2.0,1.0,2.0,1.3,1705.4562376362023,0.0,0.0,13130.0,8,3,8,2.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,10100.0,1,0,1_1,1_0 +4453,0.0,0.0,72.0,111,77,50,0.0,15646,0.0,0.0,0.0,263.0,0.0,4.0,0.0,1.0,1.0,4722.269005122001,0.0,0.0,10307.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10307.0,1,0,1_1,1_0 +4454,2.0,12.0,25.0,111,84,43,0.0,15647,0.0,50.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3381.457681183938,0.0,0.0,6384.0,3,3,7,5.0,1,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,6384.0,1,0,1_1,1_0 +4455,2.0,2.0,50.0,112,47,42,0.0,15648,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2059.177421079408,1040.0,0.0,42100.0,1,1,7,4.0,4,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,16840.0,2,0,2_0,2_0 +4456,0.0,0.0,52.0,112,64,71,0.0,15649,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2689.1625414114146,3101.8,0.0,28550.0,1,2,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28550.0,4,0,4_0,4_1 +4457,4.0,4.0,58.0,111,62,71,0.0,1565,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1300.0585174917621,1872.0,0.0,73245.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,36622.5,5,0,5,5_0 +4458,3.0,6.0,44.0,112,56,50,0.0,15651,0.0,280.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,322.7123815925281,3900.0,0.0,27680.0,4,3,4,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,13840.0,1,0,1_0,1_1 +4459,5.0,5.0,74.0,300,78,71,0.0,15652,0.0,0.0,99999.0,0.0,0.0,7.0,0.0,2.0,1.5,2068.0402238138963,0.0,0.0,24324.0,5,4,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,16216.0,2,0,2_0,2_1 +4460,5.0,12.0,35.0,111,52,31,0.0,15653,0.0,10.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2966.333399600295,1450.8,0.0,24736.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24736.0,4,0,4_0,4_0 +4461,0.0,0.0,30.0,300,63,50,0.0,15654,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2712.5797201943747,3120.0,0.0,37007.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17622.38095238095,2,0,2_0,2_1 +4462,7.0,7.0,27.0,111,52,71,0.0,15655,0.0,2000.0,0.0,221.0,1.0,2.0,0.0,1.0,1.0,4076.5997769594783,0.0,0.0,13216.0,4,3,7,5.0,1,2.0,1.0,1.0,0,0,1,0,0,1,0.0,2.0,13216.0,1,0,1_1,1_0 +4463,0.0,11.0,66.0,211,78,71,0.0,15656,0.0,45.0,0.0,327.0,0.0,4.0,0.0,2.0,1.5,2356.911020761467,0.0,0.0,20620.0,5,3,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,13746.666666666666,1,0,1_0,1_0 +4464,10.0,10.0,29.0,112,62,50,0.0,15657,0.0,600.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2684.3180932169544,0.0,0.0,19428.0,1,1,9,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,19428.0,3,0,3_0,3_1 +4465,6.0,6.0,26.0,111,46,31,0.0,15659,0.0,0.0,0.0,703.0,1.0,2.0,0.0,1.0,1.0,3904.717819150059,0.0,0.0,15355.0,2,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15355.0,2,0,2_0,2_0 +4466,0.0,0.0,66.0,111,72,44,0.0,1566,0.0,0.0,0.0,0.0,0.0,9.0,2.0,4.0,2.5,1331.977206126609,3529.7599999999998,0.0,128476.0,5,1,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,51390.4,5,0,5,5_0 +4467,3.0,15.0,49.0,111,47,31,0.0,15661,0.0,700.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1563.5584342685165,4620.72,0.0,37720.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,20955.555555555555,3,0,3_0,3_0 +4468,3.0,3.0,43.0,112,63,50,0.0,15662,0.0,0.0,99999.0,0.0,1.0,5.0,2.0,4.0,2.5,2239.840895159904,0.0,0.0,30099.0,1,2,7,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,12039.6,1,0,1_0,1_1 +4469,1.0,11.0,47.0,112,55,31,2.0,15664,0.0,200.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,2653.241657781388,0.0,5000.0,21940.0,1,2,8,1.0,2,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,12188.888888888889,1,0,1_0,1_0 +4470,0.0,6.0,46.0,111,64,50,0.0,15665,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2032.9353640577651,1310.4,0.0,27030.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13515.0,1,0,1_0,1_0 +4471,0.0,0.0,50.0,111,48,42,0.0,15666,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2241.742413719491,2903.16,0.0,58660.0,1,1,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23464.0,3,0,3_0,3_0 +4472,4.0,8.0,78.0,111,75,50,0.0,15667,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1481.9278443655817,1924.0,0.0,40580.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,27053.333333333332,4,0,4_0,4_0 +4473,0.0,0.0,51.0,112,47,50,1.0,15669,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4323.75026898035,1820.0,17000.0,11730.0,1,3,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11730.0,1,0,1_0,1_1 +4474,1.0,1.0,36.0,111,62,43,1.0,15671,0.0,200.0,0.0,356.0,1.0,3.0,3.0,5.0,2.4,3597.9736549400695,0.0,12200.0,26195.0,4,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10914.583333333334,1,0,1_1,1_0 +4475,0.0,0.0,48.0,221,22,50,0.0,15672,0.0,0.0,0.0,246.0,1.0,3.0,0.0,1.0,1.0,3575.4597305914176,0.0,0.0,43050.0,1,3,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,43050.0,5,0,5,5_0 +4476,7.0,7.0,73.0,221,75,50,0.0,15673,0.0,250.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4191.680380778605,2083.12,0.0,31533.0,5,3,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21022.0,3,0,3_0,3_0 +4477,0.0,0.0,37.0,221,21,31,0.0,15674,0.0,0.0,0.0,526.0,1.0,2.0,0.0,1.0,1.0,2854.4113895852206,1846.0,0.0,16340.0,1,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16340.0,2,0,2_0,2_0 +4478,0.0,0.0,78.0,300,78,71,0.0,15675,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2068.3308499871496,1664.0,0.0,32433.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21622.0,3,0,3_0,3_0 +4479,0.0,0.0,79.0,400,72,71,0.0,15676,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2201.70502861617,754.0,0.0,25023.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16682.0,2,0,2_0,2_1 +4480,0.0,0.0,77.0,111,78,71,0.0,15678,0.0,0.0,0.0,282.0,0.0,3.0,0.0,2.0,1.5,2010.4515551259922,1560.0,0.0,18200.0,5,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12133.333333333334,1,0,1_0,1_0 +4481,2.0,14.0,67.0,221,78,70,0.0,15679,0.0,0.0,0.0,104.0,0.0,2.0,0.0,1.0,1.0,3166.1321704211505,0.0,0.0,14072.0,5,3,1,2.0,1,1.0,1.0,0.0,0,1,0,0,0,1,0.0,1.0,14072.0,2,0,2_1,2_0 +4482,9.0,11.0,86.0,111,71,70,0.0,1568,0.0,410.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2169.200692323002,0.0,0.0,11030.0,5,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11030.0,1,0,1_0,1_0 +4483,1.0,1.0,67.0,111,77,70,0.0,15680,0.0,200.0,500.0,620.0,0.0,3.0,0.0,1.0,1.0,2870.373759985216,0.0,0.0,24443.0,5,3,6,5.0,1,3.0,1.0,1.0,0,0,1,0,0,0,2.0,1.0,24443.0,4,0,4_0,4_0 +4484,2.0,13.0,44.0,120,85,71,2.0,15683,0.0,0.0,0.0,225.0,0.0,4.0,1.0,2.0,1.5,1252.1924905313736,0.0,1400.0,9120.0,6,3,0,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,6080.0,1,0,1_1,1_0 +4485,5.0,5.0,67.0,212,71,43,0.0,15685,0.0,0.0,99999.0,0.0,1.0,5.0,1.0,3.0,1.8,2006.2365209492223,2371.2000000000003,0.0,28824.0,5,1,2,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,16013.333333333332,2,0,2_0,2_1 +4486,0.0,5.0,87.0,400,,60,0.0,15687,0.0,400.0,0.0,0.0,0.0,10.0,0.0,1.0,1.0,2152.576209919696,0.0,0.0,25280.0,8,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25280.0,4,0,4_0,4_1 +4487,1.0,1.0,50.0,112,48,50,1.0,15688,0.0,0.0,200.0,0.0,2.0,4.0,1.0,3.0,2.0,1803.1200378003327,3120.0,12976.0,58118.0,1,3,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,29059.0,4,0,4_0,4_1 +4488,0.0,0.0,73.0,111,78,70,0.0,15689,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2573.2352446527507,4221.88,0.0,24824.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16549.333333333332,2,0,2_0,2_0 +4489,4.0,11.0,47.0,111,33,12,0.0,1569,0.0,200.0,0.0,1460.0,2.0,5.0,3.0,5.0,2.8,2311.0931983937717,3130.92,0.0,69687.0,1,4,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24888.214285714286,4,0,4_0,4_0 +4490,20.0,20.0,32.0,111,47,43,0.0,15690,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1891.004999644664,2817.88,0.0,40843.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22690.555555555555,3,0,3_0,3_0 +4491,2.0,14.0,45.0,112,52,41,0.0,15692,0.0,100.0,50.0,352.0,1.0,5.0,2.0,3.0,1.6,564.4554179846224,0.0,0.0,26003.0,1,3,9,1.0,2,4.0,0.0,1.0,0,1,0,0,0,1,1.0,3.0,16251.875,2,0,2_1,2_0 +4492,6.0,6.0,84.0,112,72,50,0.0,15694,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2240.1595321262976,0.0,0.0,21471.0,5,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14314.0,2,0,2_0,2_1 +4493,4.0,4.0,74.0,111,75,50,0.0,15695,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3028.3930543848364,0.0,0.0,47526.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,47526.0,5,0,5,5_0 +4494,0.0,0.0,71.0,400,75,50,0.0,15697,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2436.895088670666,2809.04,0.0,24380.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24380.0,4,0,4_0,4_1 +4495,3.0,5.0,39.0,400,55,43,0.0,15698,0.0,246.0,0.0,0.0,1.0,6.0,1.0,2.0,1.3,956.9239330974101,0.0,0.0,11136.0,1,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,8566.153846153846,1,0,1_1,1_1 +4496,0.0,0.0,58.0,111,34,20,0.0,157,0.0,0.0,0.0,465.0,1.0,2.0,0.0,1.0,1.0,1766.502956550528,0.0,0.0,37270.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,37270.0,5,0,5,5_0 +4497,0.0,0.0,32.0,112,63,70,0.0,15700,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3677.331123746501,0.0,0.0,8790.0,4,3,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8790.0,1,0,1_0,1_1 +4498,1.0,12.0,52.0,111,45,31,0.0,15703,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,2236.492709508308,3226.6,0.0,87362.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,43681.0,5,0,5,5_0 +4499,9.0,9.0,73.0,111,78,50,0.0,15704,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2086.219257263483,1674.4,0.0,27124.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18082.666666666668,2,0,2_0,2_0 +4500,0.0,0.0,51.0,111,62,71,0.0,15705,0.0,0.0,0.0,206.0,1.0,3.0,1.0,2.0,1.3,728.0360909564041,0.0,0.0,20394.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15687.692307692307,2,0,2_1,2_0 +4501,0.0,0.0,43.0,111,47,31,0.0,15706,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1825.1971679787187,0.0,0.0,49214.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23435.238095238095,3,0,3_0,3_0 +4502,12.0,12.0,66.0,111,77,71,0.0,15707,0.0,0.0,200.0,120.0,0.0,1.0,0.0,1.0,1.0,3553.8041924293047,0.0,0.0,10848.0,5,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10848.0,1,0,1_1,1_0 +4503,34.0,34.0,83.0,111,72,71,0.0,15708,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1340.0374157864383,3120.0,0.0,22840.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15226.666666666666,2,0,2_0,2_0 +4504,11.0,11.0,76.0,300,75,50,0.0,15709,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2142.1147813266425,1300.0,0.0,36879.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,24586.0,4,0,4_0,4_1 +4505,3.0,7.0,65.0,120,77,50,0.0,1571,0.0,0.0,3.0,0.0,0.0,5.0,0.0,2.0,1.5,1545.6046144839743,5442.32,0.0,79949.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,53299.333333333336,5,0,5,5_1 +4506,5.0,20.0,87.0,211,78,70,0.0,15710,0.0,0.0,100.0,183.0,0.0,2.0,0.0,1.0,1.0,3680.035697116935,1040.0,0.0,17446.0,5,3,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17446.0,2,0,2_0,2_0 +4507,0.0,7.0,36.0,111,37,12,0.0,15711,0.0,300.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,7927.299923713453,0.0,0.0,33535.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,33535.0,5,0,5,5_0 +4508,0.0,0.0,79.0,212,74,50,0.0,15712,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1879.3862846503923,2080.0,0.0,33134.0,5,1,3,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22089.333333333332,3,0,3_0,3_1 +4509,0.0,0.0,56.0,120,48,60,0.0,15714,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2586.1185502055478,0.0,0.0,64504.0,1,1,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,32252.0,5,0,5,5_0 +4510,0.0,0.0,59.0,111,63,50,0.0,15716,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1436.322003562706,0.0,0.0,29724.0,1,2,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19816.0,3,0,3_0,3_0 +4511,10.0,10.0,56.0,111,43,33,0.0,15717,0.0,99999.0,0.0,0.0,1.0,3.0,2.0,3.0,2.0,1807.4636308803408,793.0,0.0,20934.0,1,4,9,7.0,2,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,10467.0,1,0,1_0,1_0 +4512,2.0,3.0,35.0,112,67,42,0.0,15718,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1875.182749126463,0.0,0.0,31769.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,15128.095238095237,2,0,2_1,2_1 +4513,21.0,21.0,47.0,111,21,71,0.0,15719,0.0,450.0,250.0,279.0,1.0,4.0,2.0,4.0,2.1,1127.0015690403857,1040.0,0.0,17524.0,4,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,8344.761904761905,1,0,1_1,1_0 +4514,0.0,25.0,39.0,111,43,30,0.0,15720,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2258.778478297481,0.0,0.0,53721.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23356.956521739132,3,0,3_0,3_0 +4515,0.0,4.0,67.0,400,78,70,0.0,15721,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,2.0,1.5,2423.861064448734,2346.24,0.0,21800.0,5,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,14533.333333333334,2,0,2_0,2_1 +4516,0.0,0.0,70.0,112,72,50,0.0,15722,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1332.4884981569098,0.0,0.0,26200.0,5,1,10,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17466.666666666668,2,0,2_0,2_0 +4517,3.0,4.0,42.0,112,63,71,0.0,15723,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,1500.3513457986053,0.0,0.0,64278.0,1,2,10,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24722.30769230769,4,0,4_0,4_0 +4518,3.0,10.0,30.0,111,45,30,0.0,15724,0.0,0.0,0.0,450.0,1.0,2.0,0.0,1.0,1.0,3283.9582832718065,890.76,0.0,23157.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23157.0,3,0,3_0,3_0 +4519,9.0,20.0,30.0,111,46,30,0.0,15725,0.0,0.0,0.0,360.0,1.0,3.0,1.0,2.0,1.3,1005.1087141972782,0.0,0.0,24141.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,18570.0,2,0,2_1,2_0 +4520,0.0,0.0,43.0,120,22,50,0.0,15726,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,3185.481213634276,0.0,0.0,47317.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22531.90476190476,3,0,3_0,3_1 +4521,0.0,0.0,45.0,300,46,31,1.0,15727,0.0,1110.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2088.3979236685987,0.0,20200.0,36401.0,1,2,0,1.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,20222.777777777777,3,0,3_0,3_0 +4522,0.0,0.0,65.0,111,74,41,0.0,15729,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1224.585160622689,3588.0,0.0,43836.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29224.0,4,0,4_0,4_0 +4523,13.0,21.0,70.0,111,74,31,0.0,1573,0.0,300.0,0.0,550.0,0.0,3.0,0.0,2.0,1.5,2934.4835335729895,1534.0,0.0,35245.0,5,3,6,5.0,3,3.0,1.0,0.0,0,0,1,0,0,0,0.0,3.0,23496.666666666668,3,0,3_0,3_0 +4524,1.0,1.0,22.0,300,13,43,0.0,15730,0.0,150.0,99999.0,0.0,2.0,2.0,0.0,2.0,1.5,2781.4770417637806,4160.0,0.0,11000.0,1,3,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,7333.333333333333,1,0,1_0,1_1 +4525,2.0,15.0,59.0,112,22,71,0.0,15731,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1327.3037126847353,1560.0,0.0,0.0,1,1,10,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,0.0,1,0,1_0,1_0 +4526,0.0,0.0,48.0,111,56,50,0.0,15734,0.0,0.0,0.0,438.0,1.0,5.0,1.0,2.0,1.3,607.4534853375508,520.52,0.0,23453.0,1,3,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,18040.76923076923,2,0,2_1,2_0 +4527,7.0,7.0,63.0,112,78,50,0.0,15736,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1933.711856870861,2194.4,0.0,27997.0,5,1,7,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,18664.666666666668,2,0,2_0,2_0 +4528,10.0,12.0,53.0,111,68,71,0.0,15738,0.0,0.0,0.0,18.0,1.0,2.0,0.0,1.0,1.0,2662.301745205565,0.0,0.0,10611.0,1,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10611.0,1,0,1_1,1_0 +4529,4.0,4.0,43.0,111,38,30,0.0,15739,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.3,1974.9825113055451,2917.2000000000003,0.0,41446.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18020.0,2,0,2_0,2_0 +4530,6.0,6.0,79.0,300,75,41,0.0,1574,0.0,99999.0,99999.0,0.0,0.0,7.0,0.0,2.0,1.5,1533.108810554345,1769.0400000000002,0.0,52731.0,5,1,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,35154.0,5,0,5,5_0 +4531,6.0,7.0,72.0,111,77,41,0.0,15740,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4163.5817160269,0.0,0.0,23749.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23749.0,3,0,3_0,3_0 +4532,0.0,0.0,68.0,111,77,60,0.0,15741,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3688.89642470997,0.0,0.0,23040.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23040.0,3,0,3_0,3_0 +4533,14.0,14.0,32.0,111,63,50,0.0,15742,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1767.5217044120814,1528.8,0.0,55408.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,26384.761904761905,4,0,4_1,4_0 +4534,11.0,12.0,22.0,111,43,31,0.0,15743,0.0,0.0,0.0,110.0,1.0,2.0,0.0,1.0,1.0,10335.82279527833,1820.0,0.0,23485.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,23485.0,3,0,3_1,3_0 +4535,8.0,8.0,70.0,111,78,70,0.0,15744,0.0,0.0,0.0,294.0,1.0,2.0,0.0,2.0,1.5,1613.9971599984976,2083.12,0.0,27951.0,5,3,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18634.0,2,0,2_0,2_0 +4536,3.0,3.0,45.0,111,48,31,0.0,15746,0.0,1000.0,200.0,0.0,2.0,7.0,1.0,3.0,2.0,2156.9806067443615,2539.6800000000003,0.0,62177.0,1,2,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,31088.5,4,0,4_0,4_0 +4537,4.0,8.0,40.0,111,42,33,0.0,15748,0.0,835.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,542.8212879240174,520.0,0.0,32470.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,18038.888888888887,2,0,2_1,2_0 +4538,13.0,16.0,58.0,111,47,50,0.0,1575,0.0,0.0,0.0,322.0,2.0,5.0,0.0,2.0,1.5,1710.8404945598745,2652.0,0.0,50160.0,1,3,7,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,33440.0,5,0,5,5_0 +4539,3.0,3.0,58.0,111,31,10,0.0,15750,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2949.795120118421,0.0,0.0,237650.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,118825.0,5,0,5,5_0 +4540,10.0,10.0,42.0,111,42,20,0.0,15751,0.0,700.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2538.6110891789112,1820.52,0.0,58669.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,27937.619047619046,4,0,4_0,4_0 +4541,0.0,5.0,69.0,111,77,60,0.0,15753,0.0,0.0,30.0,0.0,0.0,4.0,0.0,1.0,1.0,1854.2286390841796,0.0,0.0,4007.0,5,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,4007.0,1,0,1_0,1_0 +4542,18.0,18.0,81.0,211,74,50,0.0,15754,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1966.1746392179382,5322.2,0.0,45605.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,30403.333333333332,4,0,4_0,4_0 +4543,3.0,6.0,58.0,112,46,50,0.0,15756,0.0,0.0,360.0,0.0,2.0,3.0,1.0,2.0,1.5,863.7601511955505,5639.4,0.0,44160.0,1,2,10,2.0,2,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,29440.0,4,0,4_0,4_0 +4544,0.0,17.0,33.0,112,63,44,2.0,15757,0.0,0.0,99999.0,0.0,2.0,6.0,2.0,4.0,2.1,1935.901981703924,1880.3199999999997,3400.0,45300.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21571.42857142857,3,0,3_0,3_1 +4545,10.0,15.0,83.0,111,75,60,0.0,15759,0.0,0.0,258.0,0.0,0.0,3.0,0.0,1.0,1.0,3130.891530772468,1722.7600000000002,0.0,41586.0,5,1,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,41586.0,5,0,5,5_0 +4546,0.0,0.0,47.0,112,34,20,0.0,1576,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,763.943086168642,0.0,0.0,42650.0,1,1,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21325.0,3,0,3_0,3_1 +4547,4.0,4.0,68.0,211,75,30,0.0,15762,0.0,300.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,761.7126164952273,0.0,0.0,32818.0,5,1,4,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,32818.0,5,0,5,5_0 +4548,7.0,8.0,53.0,112,54,60,0.0,15763,0.0,0.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,2920.436059198482,2600.52,0.0,35693.0,1,3,7,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23795.333333333332,3,0,3_0,3_0 +4549,5.0,11.0,32.0,120,35,50,0.0,15764,0.0,0.0,99999.0,0.0,1.0,3.0,1.0,2.0,1.3,1595.5550703516735,0.0,0.0,29010.0,1,3,0,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,22315.384615384613,3,0,3_1,3_0 +4550,3.0,5.0,72.0,300,71,50,0.0,15765,0.0,80.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1492.619869438951,0.0,0.0,21679.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14452.666666666666,2,0,2_0,2_1 +4551,1.0,1.0,47.0,111,64,50,1.0,15766,0.0,20.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1519.0635495878576,3098.6800000000003,29000.0,21017.0,1,2,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14011.333333333334,2,0,2_0,2_0 +4552,7.0,7.0,30.0,111,46,43,0.0,15768,0.0,0.0,0.0,28.0,2.0,2.0,2.0,4.0,2.1,2315.311167246918,0.0,0.0,22551.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,1,0.0,1.0,10738.571428571428,1,0,1_1,1_0 +4553,0.0,11.0,36.0,111,47,31,0.0,15769,0.0,0.0,0.0,596.0,2.0,4.0,2.0,4.0,2.1,1854.3537270863271,0.0,0.0,33190.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15804.761904761905,2,0,2_0,2_0 +4554,2.0,2.0,39.0,112,13,31,0.0,1577,0.0,800.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2285.5614060018943,3996.2,0.0,14530.0,1,1,7,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,14530.0,2,0,2_0,2_1 +4555,5.0,9.0,41.0,111,37,30,0.0,15770,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1818.690368603898,1560.0,0.0,35812.0,1,2,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23874.666666666668,4,0,4_0,4_0 +4556,0.0,0.0,62.0,111,34,20,0.0,15771,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1898.285260642429,0.0,0.0,54291.0,1,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,54291.0,5,0,5,5_0 +4557,1.0,10.0,79.0,111,78,70,2.0,15772,0.0,99999.0,600.0,330.0,0.0,3.0,0.0,2.0,1.5,3033.486210665706,0.0,3400.0,25520.0,5,3,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,17013.333333333332,2,0,2_0,2_0 +4558,1.0,8.0,58.0,112,65,70,0.0,15773,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4346.06464394624,0.0,0.0,9242.0,4,3,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,9242.0,1,0,1_1,1_0 +4559,1.0,1.0,60.0,111,37,12,2.0,15774,0.0,0.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,1607.1688526717066,3276.0,4150.0,100900.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,67266.66666666667,5,0,5,5_0 +4560,1.0,1.0,60.0,111,78,71,0.0,15775,140.0,0.0,0.0,172.0,0.0,4.0,1.0,3.0,2.0,3386.621815007647,0.0,0.0,21298.0,5,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,0.0,10649.0,1,0,1_1,1_0 +4561,2.0,2.0,82.0,112,78,70,0.0,15777,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2750.495868920354,0.0,0.0,11156.0,5,4,9,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,11156.0,1,0,1_0,1_1 +4562,3.0,3.0,76.0,112,75,33,0.0,15779,0.0,200.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2126.7387062859716,0.0,0.0,43842.0,5,4,9,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,29228.0,4,0,4_0,4_1 +4563,0.0,0.0,36.0,211,46,31,0.0,1578,0.0,0.0,0.0,350.0,2.0,6.0,1.0,3.0,1.8,1630.4443508600366,0.0,0.0,38760.0,1,3,1,3.0,5,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,21533.333333333332,3,0,3_1,3_0 +4564,0.0,0.0,44.0,120,34,30,0.0,15780,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2231.6709275001563,2340.0,0.0,46431.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20187.391304347828,3,0,3_0,3_1 +4565,3.0,16.0,68.0,111,77,71,0.0,15782,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2204.1392369819323,0.0,0.0,17280.0,5,1,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,8640.0,1,0,1_0,1_0 +4566,3.0,7.0,31.0,111,43,33,0.0,15784,0.0,450.0,0.0,313.0,1.0,3.0,0.0,1.0,1.0,2225.6512455719567,3081.0,0.0,25256.0,1,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,25256.0,4,0,4_0,4_0 +4567,0.0,0.0,70.0,111,,71,0.0,15785,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1533.78208464363,0.0,0.0,11450.0,8,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11450.0,1,0,1_0,1_0 +4568,1.0,1.0,36.0,112,43,33,2.0,15786,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,122.07336483105873,0.0,18000.0,31337.0,1,1,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19585.625,3,0,3_0,3_1 +4569,11.0,11.0,41.0,112,53,41,0.0,15787,0.0,0.0,0.0,600.0,1.0,6.0,4.0,6.0,2.9,2618.74673103993,0.0,0.0,25530.0,1,3,4,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,8803.448275862069,1,0,1_0,1_1 +4570,6.0,17.0,51.0,111,43,31,0.0,15788,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3653.718904398592,0.0,0.0,12145.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,12145.0,1,0,1_1,1_0 +4571,3.0,4.0,54.0,111,78,71,0.0,1579,0.0,100.0,0.0,438.0,0.0,2.0,0.0,1.0,1.0,4038.4947047585983,0.0,0.0,12050.0,7,3,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,12050.0,1,0,1_0,1_0 +4572,10.0,10.0,44.0,111,38,12,0.0,15791,0.0,50.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,4612.161423998546,0.0,0.0,140495.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,78052.77777777778,5,0,5,5_0 +4573,8.0,20.0,65.0,111,75,71,0.0,15792,0.0,50.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2142.2556107700248,4014.4,0.0,51392.0,5,1,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25696.0,4,0,4_0,4_0 +4574,0.0,0.0,91.0,211,74,70,0.0,15794,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4052.9669569748053,0.0,0.0,21456.0,5,4,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21456.0,3,0,3_0,3_0 +4575,8.0,11.0,46.0,111,68,71,0.0,15795,0.0,0.0,0.0,0.0,2.0,5.0,4.0,5.0,2.6,596.874770941846,0.0,0.0,26904.0,4,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,10347.692307692307,1,0,1_1,1_0 +4576,9.0,15.0,80.0,112,75,71,0.0,15797,0.0,200.0,140.0,0.0,0.0,5.0,0.0,2.0,1.5,1824.0239700230386,1409.72,0.0,30659.0,5,3,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20439.333333333332,3,0,3_0,3_1 +4577,0.0,0.0,52.0,111,63,71,0.0,15799,0.0,0.0,0.0,4.0,1.0,2.0,1.0,2.0,1.5,745.0594014661456,0.0,0.0,15144.0,4,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10096.0,1,0,1_1,1_0 +4578,2.0,2.0,58.0,120,56,42,0.0,1580,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1941.323907386186,1825.2,0.0,9976.0,1,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,9976.0,1,0,1_0,1_1 +4579,0.0,0.0,57.0,112,55,50,0.0,15800,0.0,0.0,0.0,457.0,3.0,5.0,2.0,4.0,2.5,1540.116493577979,3609.3199999999997,0.0,43330.0,1,3,4,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17332.0,2,0,2_0,2_1 +4580,0.0,0.0,60.0,120,78,70,0.0,15801,0.0,0.0,0.0,268.0,0.0,4.0,1.0,2.0,1.5,2452.8242926588537,0.0,0.0,20304.0,7,3,0,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13536.0,1,0,1_1,1_0 +4581,0.0,0.0,44.0,112,37,20,0.0,15802,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2893.1135968111175,1791.92,0.0,95138.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,45303.80952380952,5,0,5,5_1 +4582,0.0,0.0,69.0,111,78,70,0.0,15803,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2613.4853147786826,1820.52,0.0,21153.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14102.0,2,0,2_0,2_0 +4583,0.0,0.0,54.0,211,53,42,0.0,15804,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1079.2476411076022,3346.72,0.0,50852.0,1,2,3,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25426.0,4,0,4_0,4_0 +4584,0.0,0.0,44.0,111,55,31,0.0,15805,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,4778.058822069955,0.0,0.0,50898.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28276.666666666664,4,0,4_0,4_0 +4585,0.0,0.0,56.0,112,68,50,0.0,15806,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1913.4959459688032,0.0,0.0,23031.0,1,3,8,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15354.0,2,0,2_0,2_0 +4586,0.0,0.0,60.0,111,86,71,0.0,15807,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,950.6756452634388,0.0,0.0,22217.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14811.333333333334,2,0,2_0,2_0 +4587,0.0,0.0,45.0,120,46,60,0.0,15808,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2043.3412164592542,0.0,0.0,35490.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15430.434782608696,2,0,2_0,2_1 +4588,0.0,0.0,40.0,111,43,30,0.0,15809,0.0,0.0,0.0,484.0,1.0,3.0,0.0,1.0,1.0,4092.183639174973,3017.04,0.0,24371.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24371.0,4,0,4_0,4_0 +4589,0.0,0.0,48.0,111,45,42,0.0,15812,0.0,0.0,0.0,624.0,2.0,2.0,0.0,2.0,1.5,2469.7680891745867,0.0,0.0,48620.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32413.333333333332,5,0,5,5_0 +4590,0.0,0.0,49.0,111,53,41,0.0,15813,0.0,0.0,0.0,365.0,1.0,4.0,0.0,1.0,1.0,2555.3362656307395,540.8000000000001,0.0,18496.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18496.0,2,0,2_0,2_0 +4591,0.0,0.0,34.0,112,46,30,0.0,15814,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2400.3570577880987,2764.3199999999997,0.0,34428.0,1,2,7,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,34428.0,5,0,5,5_0 +4592,0.0,0.0,51.0,111,54,50,0.0,15815,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2110.716074974384,0.0,0.0,43735.0,1,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21867.5,3,0,3_0,3_0 +4593,0.0,0.0,39.0,300,69,43,0.0,15816,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2544.7035232177873,2860.52,0.0,39179.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17034.347826086956,2,0,2_0,2_1 +4594,0.0,0.0,52.0,111,43,33,0.0,15818,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2080.4139404835023,0.0,0.0,29945.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19963.333333333332,3,0,3_0,3_0 +4595,0.0,0.0,56.0,400,13,50,0.0,1582,0.0,0.0,0.0,0.0,3.0,5.0,2.0,3.0,2.0,2230.085784738989,0.0,0.0,42109.0,1,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21054.5,3,0,3_0,3_1 +4596,0.0,0.0,25.0,111,47,60,0.0,15820,0.0,0.0,0.0,265.0,2.0,2.0,0.0,2.0,1.5,3146.0881964108135,0.0,0.0,16534.0,4,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11022.666666666666,1,0,1_0,1_0 +4597,0.0,0.0,51.0,111,48,44,0.0,15821,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1367.5684857766291,2808.0,0.0,112272.0,1,2,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,74848.0,5,0,5,5_0 +4598,0.0,0.0,37.0,112,65,41,0.0,15822,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2878.563868672215,0.0,0.0,39070.0,1,3,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18604.761904761905,2,0,2_0,2_1 +4599,0.0,0.0,44.0,111,47,30,0.0,15823,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2992.142045335609,2450.76,0.0,32740.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32740.0,5,0,5,5_0 +4600,0.0,0.0,45.0,400,43,33,0.0,15824,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,1822.3375184867616,0.0,0.0,37058.0,1,1,0,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28506.153846153844,4,0,4_0,4_0 +4601,0.0,0.0,45.0,111,35,12,0.0,15825,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,3315.481641401368,0.0,0.0,16932.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13024.615384615385,1,0,1_0,1_0 +4602,0.0,0.0,47.0,111,34,20,0.0,15826,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1956.7785853521275,2514.2000000000003,0.0,65690.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23460.714285714286,3,0,3_0,3_0 +4603,0.0,0.0,35.0,112,56,41,0.0,15829,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,1040.0400005782828,3172.0,0.0,20412.0,1,4,9,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15701.538461538461,2,0,2_0,2_0 +4604,0.0,0.0,64.0,400,75,50,0.0,15830,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1762.6544608400648,2782.0,0.0,43891.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29260.666666666668,4,0,4_0,4_1 +4605,0.0,0.0,64.0,111,86,12,0.0,15832,0.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,2.0,1813.6643950437415,4208.36,0.0,64681.0,5,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32340.5,5,0,5,5_0 +4606,0.0,0.0,56.0,221,38,30,0.0,15834,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,4250.452952911322,2912.52,0.0,41255.0,1,2,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,41255.0,5,0,5,5_0 +4607,0.0,0.0,58.0,111,46,41,0.0,15835,0.0,0.0,0.0,155.0,1.0,4.0,0.0,1.0,1.0,3568.5762037313625,2600.0,0.0,26143.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26143.0,4,0,4_0,4_0 +4608,0.0,0.0,30.0,111,63,44,0.0,15836,0.0,0.0,0.0,427.0,1.0,2.0,0.0,1.0,1.0,4036.320409772001,3276.0,0.0,35635.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35635.0,5,0,5,5_0 +4609,0.0,0.0,39.0,111,52,30,0.0,15837,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2829.298554633024,3338.4,0.0,47221.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22486.190476190477,3,0,3_0,3_0 +4610,0.0,0.0,50.0,111,68,50,0.0,15838,0.0,0.0,0.0,26.0,1.0,3.0,1.0,2.0,1.3,608.7410487186598,1560.0,0.0,15930.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12253.846153846154,1,0,1_1,1_0 +4611,0.0,0.0,43.0,111,31,31,0.0,15839,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2847.417310964934,0.0,0.0,54530.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25966.666666666664,4,0,4_0,4_0 +4612,0.0,0.0,67.0,300,75,33,0.0,1584,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1462.13653158476,0.0,0.0,31197.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20798.0,3,0,3_0,3_1 +4613,0.0,0.0,80.0,111,75,70,0.0,15840,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1969.098196643177,0.0,0.0,40507.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27004.666666666668,4,0,4_0,4_0 +4614,0.0,0.0,36.0,112,47,30,0.0,15841,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3580.3501825584567,1318.2,0.0,33393.0,1,3,6,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18551.666666666668,2,0,2_0,2_0 +4615,0.0,0.0,36.0,111,63,71,0.0,15842,0.0,0.0,0.0,0.0,1.0,3.0,3.0,4.0,2.3,713.5517958639749,1820.0,0.0,27896.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12128.695652173914,1,0,1_1,1_0 +4616,0.0,0.0,38.0,120,47,31,0.0,15845,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2633.258467521157,6270.16,0.0,29380.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13990.476190476189,2,0,2_0,2_1 +4617,0.0,0.0,48.0,112,85,50,0.0,15846,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,2273.575559110187,1586.0,0.0,18700.0,7,1,6,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12466.666666666666,1,0,1_0,1_0 +4618,0.0,0.0,44.0,111,63,50,0.0,15847,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2307.4931702988756,0.0,0.0,33860.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14108.333333333334,2,0,2_1,2_0 +4619,0.0,0.0,72.0,111,75,30,0.0,15848,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1594.7073273220187,2548.0,0.0,51241.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34160.666666666664,5,0,5,5_0 +4620,0.0,0.0,40.0,111,46,43,0.0,15849,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,746.0189599567392,1040.0,0.0,25480.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19600.0,3,0,3_0,3_0 +4621,0.0,0.0,63.0,111,78,50,0.0,15850,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3195.6351860986174,3068.0,0.0,63337.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,42224.666666666664,5,0,5,5_0 +4622,0.0,0.0,75.0,111,74,30,0.0,15851,0.0,0.0,0.0,675.0,0.0,3.0,1.0,3.0,2.0,2694.423971336249,0.0,0.0,67017.0,5,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33508.5,5,0,5,5_0 +4623,0.0,0.0,38.0,111,46,30,0.0,15853,0.0,0.0,0.0,271.0,2.0,2.0,1.0,3.0,1.8,1226.952426819737,2522.0,0.0,31258.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,17365.555555555555,2,0,2_1,2_0 +4624,0.0,0.0,52.0,400,62,50,0.0,15854,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2949.176220245393,0.0,0.0,43828.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21914.0,3,0,3_0,3_1 +4625,0.0,0.0,43.0,111,46,31,0.0,15855,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2320.474394702274,0.0,0.0,22367.0,1,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22367.0,3,0,3_0,3_0 +4626,0.0,0.0,26.0,300,52,71,0.0,15857,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2928.7477492080343,1040.0,0.0,31577.0,1,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17542.777777777777,2,0,2_0,2_0 +4627,0.0,0.0,51.0,111,85,71,0.0,15858,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,2.5,633.999462894763,0.0,0.0,23892.0,4,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9556.8,1,0,1_1,1_0 +4628,0.0,0.0,36.0,211,55,41,0.0,15859,0.0,0.0,0.0,218.0,1.0,4.0,2.0,3.0,1.6,1291.0139924845862,0.0,0.0,23275.0,1,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14546.875,2,0,2_1,2_0 +4629,0.0,0.0,26.0,111,43,30,0.0,15863,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,2576.4159099609997,0.0,0.0,45790.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30526.666666666668,4,0,4_0,4_0 +4630,0.0,0.0,46.0,120,64,50,0.0,15866,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1931.2061214245828,4181.84,0.0,50663.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25331.5,4,0,4_0,4_1 +4631,0.0,0.0,77.0,111,68,71,0.0,15867,0.0,0.0,0.0,248.0,1.0,2.0,0.0,2.0,1.5,2020.218548705258,0.0,0.0,18710.0,5,3,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12473.333333333334,1,0,1_0,1_0 +4632,0.0,0.0,39.0,112,54,31,0.0,15869,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2598.3220005800476,0.0,0.0,39181.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21767.222222222223,3,0,3_0,3_1 +4633,6.0,22.0,85.0,111,78,70,0.0,1587,0.0,350.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2652.0983626483767,0.0,0.0,25190.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16793.333333333332,2,0,2_0,2_0 +4634,0.0,0.0,35.0,112,52,50,0.0,15870,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2573.0391414104643,2080.0,0.0,46580.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25877.777777777777,4,0,4_0,4_1 +4635,0.0,0.0,31.0,400,23,31,0.0,15871,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2519.3396540320314,3484.5200000000004,0.0,55347.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30748.333333333332,4,0,4_0,4_1 +4636,0.0,0.0,51.0,111,55,31,0.0,15872,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3043.161498695115,0.0,0.0,27147.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27147.0,4,0,4_0,4_0 +4637,0.0,0.0,50.0,112,52,71,0.0,15873,0.0,0.0,0.0,749.0,1.0,3.0,1.0,2.0,1.5,3203.3287848479144,0.0,0.0,31750.0,1,3,10,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21166.666666666668,3,0,3_0,3_0 +4638,0.0,0.0,61.0,112,72,50,0.0,15875,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2050.428061356769,1055.6000000000001,0.0,19119.0,5,1,7,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12746.0,1,0,1_0,1_0 +4639,0.0,0.0,71.0,112,74,50,0.0,15876,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1861.778011623147,2600.0,0.0,60708.0,5,1,7,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40472.0,5,0,5,5_0 +4640,0.0,0.0,32.0,112,64,50,0.0,15878,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2744.050074030107,2104.44,0.0,47675.0,1,2,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22702.38095238095,3,0,3_0,3_0 +4641,0.0,0.0,45.0,111,37,31,0.0,15879,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1745.4270046538822,0.0,0.0,68854.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,34427.0,5,0,5,5_0 +4642,0.0,0.0,68.0,111,74,12,0.0,1588,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1659.484887506127,0.0,0.0,95759.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,63839.333333333336,5,0,5,5_0 +4643,0.0,0.0,45.0,112,21,50,0.0,15880,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2323.2901399553134,2874.56,0.0,32635.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16317.5,2,0,2_0,2_1 +4644,0.0,0.0,27.0,111,42,20,0.0,15881,0.0,0.0,0.0,455.0,1.0,3.0,1.0,3.0,1.8,2148.351446150223,0.0,0.0,24249.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13471.666666666666,1,0,1_0,1_0 +4645,0.0,0.0,48.0,111,33,30,0.0,15882,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,884.003199264708,0.0,0.0,45665.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25369.444444444445,4,0,4_0,4_0 +4646,0.0,0.0,28.0,111,38,12,0.0,15885,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3232.048863244632,2446.6,0.0,58426.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38950.666666666664,5,0,5,5_0 +4647,0.0,0.0,26.0,111,64,71,0.0,15886,0.0,0.0,0.0,14.0,1.0,3.0,0.0,1.0,1.0,2725.4809477289245,0.0,0.0,34149.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,34149.0,5,0,5,5_0 +4648,0.0,0.0,39.0,111,46,41,0.0,15888,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3210.677632985805,0.0,0.0,23760.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23760.0,3,0,3_0,3_0 +4649,0.0,0.0,57.0,112,75,71,0.0,15889,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2294.3756936144255,2730.52,0.0,9880.0,7,1,10,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9880.0,1,0,1_0,1_0 +4650,1.0,4.0,52.0,300,56,50,2.0,1589,0.0,0.0,0.0,465.0,2.0,5.0,0.0,2.0,1.5,1747.6796618060866,3166.7999999999997,17400.0,33524.0,1,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22349.333333333332,3,0,3_0,3_1 +4651,0.0,0.0,83.0,111,75,70,0.0,15892,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2953.394750853718,3120.0,0.0,33135.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22090.0,3,0,3_0,3_0 +4652,0.0,0.0,50.0,400,67,50,0.0,15896,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1687.2834593946138,0.0,0.0,41755.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27836.666666666668,4,0,4_0,4_0 +4653,0.0,0.0,30.0,300,21,44,0.0,15897,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,838.0546981832944,0.0,0.0,26253.0,1,2,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,16408.125,2,0,2_1,2_1 +4654,0.0,0.0,71.0,120,63,50,0.0,15899,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1319.3280574213343,3056.56,0.0,25423.0,5,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16948.666666666668,2,0,2_0,2_1 +4655,0.0,15.0,42.0,111,35,20,0.0,1590,0.0,0.0,0.0,730.0,2.0,3.0,1.0,3.0,1.8,3762.659696719215,0.0,0.0,30274.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,16818.888888888887,2,0,2_1,2_0 +4656,0.0,0.0,55.0,111,21,44,0.0,15900,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2534.793028575904,3281.2,0.0,16022.0,1,3,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10681.333333333334,1,0,1_0,1_0 +4657,0.0,0.0,46.0,111,85,50,0.0,15901,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,2.0,3676.4866113928015,0.0,0.0,19125.0,7,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9562.5,1,0,1_0,1_0 +4658,0.0,0.0,48.0,120,46,31,0.0,15903,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1376.6662881544355,2887.56,0.0,55591.0,1,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24170.000000000004,4,0,4_0,4_0 +4659,0.0,0.0,26.0,111,63,31,0.0,15904,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4423.002384832963,0.0,0.0,35920.0,1,2,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19955.555555555555,3,0,3_0,3_0 +4660,0.0,0.0,37.0,112,65,50,0.0,15905,0.0,0.0,0.0,288.0,1.0,2.0,0.0,1.0,1.0,2415.2528050562482,0.0,0.0,13530.0,4,3,10,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13530.0,1,0,1_0,1_0 +4661,0.0,0.0,63.0,111,77,71,0.0,15907,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3551.9688189025605,0.0,0.0,15756.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10504.0,1,0,1_0,1_0 +4662,0.0,0.0,55.0,111,54,42,0.0,15908,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3102.3222935664644,0.0,0.0,27437.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27437.0,4,0,4_0,4_0 +4663,0.0,0.0,80.0,111,72,71,0.0,15909,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2789.7982109560544,0.0,0.0,37994.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37994.0,5,0,5,5_0 +4664,0.0,0.0,50.0,111,85,60,0.0,15910,0.0,0.0,0.0,107.0,0.0,4.0,1.0,2.0,1.5,867.0756618429743,0.0,0.0,14816.0,6,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9877.333333333334,1,0,1_1,1_0 +4665,0.0,0.0,56.0,120,56,30,0.0,15911,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2101.855603408552,1781.0,0.0,4883.0,4,1,0,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,3255.3333333333335,1,0,1_0,1_0 +4666,0.0,0.0,53.0,112,43,33,0.0,15912,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1406.9050939454146,4544.799999999999,0.0,56100.0,1,1,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28050.0,4,0,4_0,4_1 +4667,0.0,0.0,31.0,111,34,30,0.0,15913,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3380.28854392472,691.6,0.0,42977.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23876.11111111111,4,0,4_0,4_0 +4668,0.0,0.0,46.0,112,46,31,0.0,15914,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2446.886615033114,2990.0,0.0,65426.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27260.833333333336,4,0,4_0,4_1 +4669,0.0,0.0,48.0,120,38,41,0.0,15915,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1605.9693812220376,2602.08,0.0,59334.0,1,2,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,39556.0,5,0,5,5_0 +4670,0.0,0.0,86.0,300,71,71,0.0,15916,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2733.897444588863,0.0,0.0,17316.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11544.0,1,0,1_0,1_1 +4671,0.0,0.0,40.0,111,43,33,0.0,15918,0.0,0.0,0.0,0.0,2.0,2.0,2.0,4.0,2.1,1994.1770702516865,2080.0,0.0,35353.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16834.761904761905,2,0,2_0,2_0 +4672,0.0,0.0,37.0,111,67,50,0.0,1592,0.0,0.0,0.0,427.0,1.0,3.0,1.0,2.0,1.5,1887.9609082574634,1040.0,0.0,27800.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18533.333333333332,2,0,2_0,2_0 +4673,0.0,0.0,43.0,112,45,31,0.0,15920,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2273.2389011148084,0.0,0.0,49967.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21724.782608695656,3,0,3_0,3_1 +4674,0.0,0.0,24.0,111,54,0,0.0,15921,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,4079.392868022732,1044.68,0.0,17310.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17310.0,2,0,2_0,2_0 +4675,0.0,0.0,90.0,111,74,50,0.0,15922,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2842.685956932305,0.0,0.0,50051.0,5,4,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,50051.0,5,0,5,5_0 +4676,0.0,0.0,50.0,111,85,31,0.0,15923,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,8956.7734254313,0.0,0.0,4695.0,7,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,4695.0,1,0,1_0,1_0 +4677,0.0,0.0,87.0,211,75,71,0.0,15925,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,968.6651192556319,0.0,0.0,35256.0,5,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23504.0,3,0,3_0,3_0 +4678,0.0,0.0,77.0,111,77,60,0.0,15926,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,6687.7700725790855,0.0,0.0,42644.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,42644.0,5,0,5,5_0 +4679,0.0,0.0,45.0,111,53,60,0.0,15927,0.0,0.0,0.0,478.0,2.0,5.0,4.0,5.0,2.6,687.23861290888,0.0,0.0,34815.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13390.384615384615,1,0,1_1,1_0 +4680,0.0,0.0,76.0,211,78,71,0.0,15929,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1327.8733000775926,0.0,0.0,21447.0,5,1,1,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14298.0,2,0,2_0,2_0 +4681,0.0,0.0,35.0,211,68,71,0.0,15932,0.0,0.0,0.0,125.0,1.0,3.0,3.0,5.0,2.4,5055.206390007532,1040.0,0.0,21811.0,4,3,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9087.916666666668,1,0,1_1,1_0 +4682,0.0,0.0,80.0,400,74,60,0.0,15935,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3585.417669888173,0.0,0.0,27430.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18286.666666666668,2,0,2_0,2_0 +4683,0.0,0.0,79.0,111,77,70,0.0,15936,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2709.2557921263506,0.0,0.0,24754.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24754.0,4,0,4_0,4_0 +4684,0.0,0.0,39.0,400,48,41,0.0,15937,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1561.2057371029398,0.0,0.0,56369.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21680.384615384613,3,0,3_0,3_1 +4685,0.0,0.0,36.0,111,63,71,0.0,15938,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2873.084079375354,0.0,0.0,20740.0,1,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13826.666666666666,1,0,1_1,1_0 +4686,1.0,1.0,33.0,111,47,31,1.0,1594,0.0,0.0,0.0,340.0,1.0,2.0,0.0,1.0,1.0,2911.5729073888674,0.0,10933.0,22626.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22626.0,3,0,3_0,3_0 +4687,0.0,0.0,31.0,111,47,41,0.0,15940,0.0,0.0,0.0,320.0,1.0,2.0,0.0,2.0,1.5,3083.931664981582,2085.2000000000003,0.0,42924.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28616.0,4,0,4_0,4_0 +4688,0.0,0.0,44.0,111,52,50,0.0,15941,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.3,512.1709431994104,2957.24,0.0,28612.0,1,2,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12440.000000000002,1,0,1_1,1_0 +4689,0.0,0.0,69.0,111,78,71,0.0,15942,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2090.033440090409,0.0,0.0,20213.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20213.0,3,0,3_0,3_0 +4690,0.0,0.0,56.0,112,47,60,0.0,15943,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1514.0804516134476,1711.8400000000001,0.0,75708.0,1,2,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30283.2,4,0,4_0,4_0 +4691,0.0,0.0,72.0,400,78,50,0.0,15946,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1705.6284276896038,1560.0,0.0,18185.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12123.333333333334,1,0,1_0,1_1 +4692,0.0,0.0,67.0,300,78,71,0.0,15947,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4616.757996674287,0.0,0.0,11740.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11740.0,1,0,1_0,1_1 +4693,0.0,0.0,26.0,221,56,50,0.0,15948,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,846.9037813485495,0.0,0.0,14106.0,4,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10850.76923076923,1,0,1_1,1_0 +4694,0.0,0.0,46.0,211,54,31,0.0,15950,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1522.987470969364,2652.0,0.0,33975.0,1,2,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22650.0,3,0,3_0,3_0 +4695,0.0,0.0,53.0,112,38,31,0.0,15951,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1062.7849876297316,2340.52,0.0,86682.0,1,2,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,34672.8,5,0,5,5_0 +4696,0.0,0.0,40.0,112,43,41,0.0,15953,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1386.6143983577315,5652.92,0.0,51414.0,1,2,10,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28563.333333333332,4,0,4_0,4_0 +4697,0.0,0.0,74.0,111,77,50,0.0,15957,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1964.7318142481938,0.0,0.0,17747.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11831.333333333334,1,0,1_0,1_0 +4698,0.0,0.0,23.0,120,43,31,0.0,15958,0.0,0.0,0.0,580.0,1.0,3.0,0.0,1.0,1.0,3324.402780716059,0.0,0.0,29240.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29240.0,4,0,4_0,4_1 +4699,0.0,0.0,55.0,111,38,42,0.0,15959,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1913.1492191214923,2265.64,0.0,171475.0,1,1,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,85737.5,5,0,5,5_0 +4700,0.0,0.0,24.0,111,54,30,0.0,15962,0.0,0.0,0.0,600.0,2.0,2.0,0.0,2.0,1.5,3545.685251720782,1300.0,0.0,43742.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29161.333333333332,4,0,4_0,4_0 +4701,0.0,0.0,40.0,111,52,50,0.0,15963,0.0,0.0,0.0,0.0,2.0,10.0,1.0,3.0,1.8,1024.22377954147,0.0,0.0,36880.0,1,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20488.888888888887,3,0,3_0,3_0 +4702,0.0,0.0,50.0,112,46,31,0.0,15964,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.3,736.551825779513,4568.72,0.0,32457.0,1,2,9,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14111.739130434784,2,0,2_0,2_0 +4703,0.0,0.0,30.0,120,21,50,0.0,15965,0.0,0.0,0.0,480.0,1.0,3.0,0.0,1.0,1.0,3453.8546495865753,0.0,0.0,15894.0,1,3,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15894.0,2,0,2_0,2_0 +4704,0.0,0.0,48.0,111,37,31,0.0,15966,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,712.3597004503749,0.0,0.0,38164.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21202.222222222223,3,0,3_0,3_0 +4705,0.0,0.0,59.0,111,37,71,0.0,15967,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2128.0469901212655,2600.0,0.0,70789.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,47192.666666666664,5,0,5,5_0 +4706,0.0,0.0,36.0,112,54,50,0.0,15968,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2586.195841111558,0.0,0.0,16899.0,1,3,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12999.23076923077,1,0,1_0,1_1 +4707,2.0,2.0,38.0,111,37,20,0.0,1597,0.0,99999.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2499.190503551927,538.1999999999999,0.0,100615.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,55897.22222222222,5,0,5,5_0 +4708,0.0,0.0,65.0,111,74,30,0.0,15970,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1487.61556016353,3958.24,0.0,106435.0,5,2,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,70956.66666666667,5,0,5,5_0 +4709,0.0,0.0,37.0,111,64,43,0.0,15972,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2421.990043825721,0.0,0.0,38120.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,18152.38095238095,2,0,2_1,2_0 +4710,0.0,0.0,55.0,111,37,12,0.0,15973,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2434.232280630268,1697.28,0.0,188044.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,125362.66666666667,5,0,5,5_0 +4711,0.0,0.0,37.0,111,38,20,0.0,15974,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2029.0193031809608,780.0,0.0,67590.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32185.714285714283,5,0,5,5_0 +4712,0.0,0.0,64.0,111,78,71,0.0,15975,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2139.132444865652,0.0,0.0,104876.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,69917.33333333333,5,0,5,5_0 +4713,0.0,0.0,80.0,111,77,70,0.0,15977,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2104.651570309892,0.0,0.0,33151.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33151.0,5,0,5,5_0 +4714,0.0,0.0,79.0,111,77,60,0.0,15979,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3694.156883082245,0.0,0.0,12589.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12589.0,1,0,1_0,1_0 +4715,5.0,10.0,55.0,111,45,50,0.0,1598,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1238.5732840276935,0.0,0.0,30335.0,1,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30335.0,4,0,4_0,4_0 +4716,0.0,0.0,32.0,111,38,12,0.0,15981,0.0,0.0,0.0,490.0,1.0,2.0,0.0,1.0,1.0,3199.5065664056287,0.0,0.0,55088.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,55088.0,5,0,5,5_0 +4717,0.0,0.0,66.0,111,78,70,0.0,15982,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2528.4971998356295,0.0,0.0,15393.0,5,2,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15393.0,2,0,2_0,2_0 +4718,0.0,0.0,43.0,211,22,30,0.0,15983,0.0,0.0,0.0,220.0,1.0,3.0,0.0,1.0,1.0,4698.626328748604,0.0,0.0,15137.0,1,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15137.0,2,0,2_0,2_0 +4719,0.0,0.0,27.0,111,68,60,0.0,15985,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,1611.6516676927145,0.0,0.0,26454.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,16533.75,2,0,2_1,2_0 +4720,0.0,0.0,47.0,112,13,31,0.0,15986,0.0,0.0,0.0,0.0,1.0,8.0,3.0,5.0,2.8,1993.2484116742075,2716.48,0.0,40755.0,1,1,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14555.357142857143,2,0,2_0,2_0 +4721,0.0,0.0,71.0,111,77,60,0.0,15987,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2705.075428489783,0.0,0.0,28205.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28205.0,4,0,4_0,4_0 +4722,0.0,0.0,55.0,111,53,41,0.0,15989,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1327.921938765928,0.0,0.0,41067.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27378.0,4,0,4_0,4_0 +4723,0.0,0.0,70.0,111,77,71,0.0,15990,0.0,0.0,0.0,363.0,0.0,3.0,0.0,2.0,1.5,2059.8386257005304,2340.0,0.0,19668.0,5,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13112.0,1,0,1_1,1_0 +4724,0.0,0.0,56.0,111,31,44,0.0,15991,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1872.7755071396841,0.0,0.0,87839.0,1,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,35135.6,5,0,5,5_0 +4725,0.0,0.0,32.0,111,33,30,0.0,15992,0.0,0.0,0.0,581.0,2.0,3.0,0.0,2.0,1.5,833.4670479509153,1722.7600000000002,0.0,31854.0,1,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21236.0,3,0,3_0,3_0 +4726,0.0,0.0,54.0,400,78,50,0.0,15993,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,5170.6278276485655,0.0,0.0,21515.0,7,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,21515.0,3,0,3_1,3_1 +4727,0.0,0.0,44.0,111,52,71,0.0,15994,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1496.3744346714966,1560.0,0.0,12860.0,4,3,4,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9892.307692307691,1,0,1_1,1_0 +4728,0.0,0.0,39.0,111,35,20,0.0,15996,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2915.9577945565716,2386.7999999999997,0.0,44092.0,1,1,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20996.190476190477,3,0,3_0,3_0 +4729,0.0,0.0,43.0,111,64,60,0.0,15997,0.0,0.0,0.0,110.0,1.0,4.0,1.0,3.0,1.8,2320.2627921136295,0.0,0.0,22872.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12706.666666666666,1,0,1_1,1_0 +4730,0.0,0.0,44.0,111,64,41,0.0,15998,0.0,0.0,0.0,469.0,2.0,4.0,2.0,4.0,2.1,5165.892786322087,2080.0,0.0,27340.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13019.047619047618,1,0,1_0,1_0 +4731,0.0,0.0,53.0,111,63,50,0.0,15999,0.0,0.0,0.0,750.0,1.0,3.0,0.0,1.0,1.0,3900.6383124655445,6760.0,0.0,2712.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,2712.0,1,0,1_0,1_0 +4732,4.0,4.0,60.0,112,33,60,0.0,16,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1403.9672542002645,3122.08,0.0,38487.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25658.0,4,0,4_0,4_1 +4733,0.0,0.0,52.0,221,43,33,0.0,160,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1691.7131201298432,2392.0,0.0,68931.0,1,1,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27572.4,4,0,4_0,4_0 +4734,0.0,21.0,66.0,111,75,42,0.0,1600,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1605.3914944939986,0.0,0.0,45583.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,30388.666666666668,4,0,4_0,4_0 +4735,0.0,0.0,69.0,111,74,12,0.0,16000,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2391.1760449591957,0.0,0.0,15073.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10048.666666666666,1,0,1_0,1_0 +4736,0.0,0.0,52.0,111,34,10,0.0,16001,0.0,0.0,0.0,0.0,2.0,7.0,4.0,6.0,3.5,1997.0810306164308,5881.200000000001,0.0,112890.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32254.285714285714,5,0,5,5_0 +4737,0.0,0.0,34.0,111,63,0,0.0,16003,0.0,0.0,0.0,280.0,1.0,1.0,0.0,1.0,1.0,3386.229162811187,0.0,0.0,15240.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15240.0,2,0,2_1,2_0 +4738,0.0,0.0,54.0,111,78,71,0.0,16005,0.0,0.0,0.0,0.0,0.0,3.0,3.0,5.0,2.4,1920.9729468750152,0.0,0.0,33912.0,4,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14130.0,2,0,2_1,2_0 +4739,0.0,0.0,54.0,211,65,70,0.0,16006,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2571.873859852319,2184.0,0.0,29685.0,1,2,1,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19790.0,3,0,3_0,3_0 +4740,0.0,0.0,52.0,111,43,30,0.0,16007,0.0,0.0,0.0,0.0,2.0,5.0,3.0,4.0,2.3,631.0186470163168,0.0,0.0,39085.0,1,2,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16993.478260869568,2,0,2_0,2_0 +4741,0.0,0.0,43.0,400,54,31,0.0,16008,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2332.958250798212,0.0,0.0,22896.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10902.857142857143,1,0,1_0,1_1 +4742,0.0,0.0,45.0,112,23,42,0.0,16011,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2613.3915706197013,0.0,0.0,123468.0,1,1,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,53681.739130434784,5,0,5,5_0 +4743,0.0,0.0,68.0,112,78,70,0.0,16012,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2472.0116200843368,0.0,0.0,16335.0,5,1,6,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16335.0,2,0,2_0,2_0 +4744,0.0,0.0,35.0,111,37,31,0.0,16015,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2234.5451835941503,0.0,0.0,67600.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32190.47619047619,5,0,5,5_0 +4745,0.0,0.0,48.0,111,47,50,0.0,16016,0.0,0.0,0.0,450.0,1.0,4.0,1.0,2.0,1.3,232.59431393033222,3640.0,0.0,25741.0,1,3,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19800.76923076923,3,0,3_0,3_0 +4746,0.0,0.0,26.0,111,53,43,0.0,16018,0.0,0.0,0.0,800.0,2.0,4.0,0.0,2.0,1.5,3959.8906982682693,0.0,0.0,41992.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27994.666666666668,4,0,4_0,4_0 +4747,0.0,0.0,80.0,111,74,30,0.0,16019,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1674.11074962326,0.0,0.0,34733.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23155.333333333332,3,0,3_0,3_0 +4748,14.0,17.0,62.0,111,78,50,0.0,1602,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2208.482432902322,0.0,0.0,4570.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,4570.0,1,0,1_0,1_0 +4749,0.0,0.0,78.0,111,75,31,0.0,16020,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2469.891160676441,1773.2,0.0,31030.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31030.0,4,0,4_0,4_0 +4750,0.0,0.0,25.0,111,56,50,0.0,16021,0.0,0.0,0.0,142.0,1.0,5.0,2.0,3.0,1.6,2127.875853308508,0.0,0.0,17066.0,4,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10666.25,1,0,1_1,1_0 +4751,0.0,0.0,34.0,400,63,31,0.0,16023,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2296.9857978033783,0.0,0.0,35880.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17085.714285714286,2,0,2_0,2_1 +4752,0.0,0.0,44.0,112,47,31,0.0,16024,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2364.671652205018,3120.0,0.0,27032.0,1,1,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27032.0,4,0,4_0,4_0 +4753,0.0,0.0,62.0,111,77,71,0.0,16026,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,5452.427883826127,0.0,0.0,15539.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15539.0,2,0,2_1,2_0 +4754,0.0,0.0,62.0,112,31,30,0.0,16027,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2819.640062353932,0.0,0.0,99422.0,1,1,9,1.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,49711.0,5,0,5,5_0 +4755,0.0,0.0,68.0,111,75,70,0.0,16028,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1723.0793608926192,0.0,0.0,22620.0,5,3,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15080.0,2,0,2_0,2_0 +4756,0.0,0.0,27.0,111,48,31,0.0,16029,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3786.307542095621,2080.0,0.0,43516.0,1,2,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24175.555555555555,4,0,4_0,4_0 +4757,0.0,0.0,53.0,111,64,60,0.0,16032,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2415.1135836021167,0.0,0.0,24115.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24115.0,4,0,4_0,4_0 +4758,0.0,0.0,31.0,111,37,20,0.0,16033,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3999.9642754381025,0.0,0.0,26567.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26567.0,4,0,4_0,4_0 +4759,0.0,0.0,30.0,111,37,31,0.0,16034,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2187.2215388402014,0.0,0.0,68035.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32397.619047619046,5,0,5,5_0 +4760,0.0,0.0,67.0,111,53,30,0.0,16037,0.0,0.0,0.0,313.0,3.0,5.0,4.0,6.0,3.3,1853.5767406436287,3083.6,0.0,80166.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,24292.727272727276,4,0,4_1,4_0 +4761,0.0,0.0,34.0,111,55,31,0.0,16038,0.0,0.0,0.0,857.0,2.0,4.0,3.0,5.0,2.4,1188.7238646248477,4248.4,0.0,57964.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24151.666666666668,4,0,4_0,4_0 +4762,0.0,0.0,43.0,111,45,30,0.0,16039,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,700.4950068288363,0.0,0.0,29829.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,16571.666666666668,2,0,2_1,2_0 +4763,4.0,4.0,54.0,111,62,71,0.0,1604,0.0,0.0,0.0,400.0,1.0,3.0,0.0,1.0,1.0,2706.4233188628436,2600.0,0.0,24981.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24981.0,4,0,4_0,4_0 +4764,0.0,0.0,71.0,111,74,31,0.0,16042,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1747.3125141897717,0.0,0.0,39894.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,39894.0,5,0,5,5_0 +4765,0.0,0.0,51.0,111,48,50,0.0,16043,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2404.5466068340347,1300.0,0.0,45202.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30134.666666666668,4,0,4_0,4_0 +4766,0.0,0.0,39.0,111,52,50,0.0,16044,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,682.6445050283982,3654.56,0.0,29240.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16244.444444444443,2,0,2_0,2_0 +4767,0.0,0.0,38.0,111,63,31,0.0,16045,0.0,0.0,0.0,655.0,1.0,5.0,1.0,2.0,1.3,3341.369315956128,0.0,0.0,18629.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14330.0,2,0,2_1,2_0 +4768,0.0,0.0,43.0,111,43,31,0.0,16046,0.0,0.0,0.0,0.0,2.0,4.0,4.0,6.0,2.9,2046.098485665618,0.0,0.0,127280.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,43889.6551724138,5,0,5,5_0 +4769,0.0,0.0,43.0,111,67,50,0.0,16047,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2430.9791005568904,1458.6000000000001,0.0,33764.0,1,2,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16078.095238095237,2,0,2_0,2_0 +4770,0.0,0.0,19.0,111,55,43,0.0,1605,0.0,0.0,0.0,44.0,1.0,2.0,0.0,1.0,1.0,3720.4770634748043,0.0,0.0,18942.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18942.0,3,0,3_1,3_0 +4771,0.0,0.0,75.0,111,75,60,0.0,16050,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1749.5503264435001,2080.52,0.0,31810.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21206.666666666668,3,0,3_0,3_0 +4772,0.0,0.0,81.0,111,72,50,0.0,16051,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2457.100573166096,0.0,0.0,15089.0,5,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15089.0,2,0,2_0,2_0 +4773,0.0,0.0,45.0,300,67,50,0.0,16052,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1956.3775728767991,1560.0,0.0,20458.0,4,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13638.666666666666,1,0,1_1,1_1 +4774,0.0,0.0,46.0,111,52,41,0.0,16053,0.0,0.0,0.0,386.0,2.0,4.0,1.0,2.0,1.5,667.3075989344487,0.0,0.0,27290.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18193.333333333332,2,0,2_0,2_0 +4775,0.0,0.0,42.0,111,38,12,0.0,16055,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3514.40913489485,0.0,0.0,104399.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,49713.80952380952,5,0,5,5_0 +4776,0.0,0.0,24.0,111,52,41,0.0,16056,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1568.4501999747902,0.0,0.0,30689.0,1,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20459.333333333332,3,0,3_0,3_0 +4777,0.0,0.0,49.0,221,63,71,0.0,16057,0.0,0.0,0.0,0.0,1.0,7.0,0.0,3.0,2.0,2260.3684124778415,0.0,0.0,37873.0,1,1,1,3.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18936.5,3,0,3_0,3_0 +4778,0.0,0.0,78.0,111,78,70,0.0,1606,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2041.7417344570893,2165.7999999999997,0.0,15980.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15980.0,2,0,2_0,2_0 +4779,0.0,0.0,45.0,111,47,50,0.0,16060,0.0,0.0,0.0,555.0,2.0,4.0,2.0,4.0,2.5,3670.016984929251,780.0,0.0,49580.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19832.0,3,0,3_0,3_0 +4780,0.0,0.0,61.0,112,75,41,0.0,16061,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1661.1647612302136,1866.28,0.0,32680.0,7,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21786.666666666668,3,0,3_0,3_0 +4781,0.0,0.0,24.0,111,38,12,0.0,16062,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3269.961451817243,0.0,0.0,63726.0,1,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,42484.0,5,0,5,5_0 +4782,0.0,0.0,25.0,111,54,41,0.0,16063,0.0,0.0,0.0,502.0,2.0,3.0,0.0,2.0,1.5,4618.4103255380005,3277.04,0.0,29704.0,2,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,19802.666666666668,3,0,3_1,3_0 +4783,0.0,0.0,29.0,112,38,12,0.0,16065,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2194.2885570578733,2085.72,0.0,53003.0,1,2,9,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,35335.333333333336,5,0,5,5_0 +4784,0.0,0.0,83.0,112,86,71,0.0,16066,0.0,0.0,0.0,450.0,0.0,1.0,0.0,1.0,1.0,5106.259878333436,3144.96,0.0,11582.0,5,3,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11582.0,1,0,1_0,1_0 +4785,0.0,0.0,80.0,111,78,70,0.0,16067,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2221.6015801777503,0.0,0.0,9571.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9571.0,1,0,1_0,1_0 +4786,0.0,0.0,54.0,222,43,33,0.0,16068,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2839.429655713312,0.0,0.0,33930.0,1,1,1,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33930.0,5,0,5,5_1 +4787,0.0,0.0,30.0,211,63,50,0.0,16069,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,1588.9002481582806,1040.0,0.0,25027.0,1,3,3,3.0,3,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,16684.666666666668,2,0,2_1,2_0 +4788,0.0,0.0,70.0,400,74,71,0.0,16072,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1716.4371540714758,2410.2000000000003,0.0,47070.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31380.0,4,0,4_0,4_1 +4789,0.0,0.0,77.0,111,77,71,0.0,16073,0.0,0.0,0.0,434.0,0.0,2.0,0.0,1.0,1.0,5105.252268823024,0.0,0.0,21986.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21986.0,3,0,3_0,3_0 +4790,0.0,0.0,56.0,111,56,31,0.0,16074,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,2904.891689567124,4343.04,0.0,63638.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31819.0,5,0,5,5_0 +4791,0.0,0.0,57.0,112,75,33,0.0,16075,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1531.8729578908412,0.0,0.0,19967.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13311.333333333334,1,0,1_0,1_1 +4792,0.0,0.0,45.0,111,63,50,0.0,16076,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,3044.2814388791962,1560.0,0.0,28440.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13542.857142857143,1,0,1_0,1_0 +4793,0.0,0.0,62.0,300,77,60,0.0,16078,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2545.933348589927,2163.2,0.0,28692.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28692.0,4,0,4_0,4_1 +4794,0.0,0.0,42.0,112,37,12,0.0,16079,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2597.442078041682,0.0,0.0,107069.0,1,2,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,50985.23809523809,5,0,5,5_0 +4795,0.0,0.0,82.0,112,72,50,0.0,1608,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2412.747549363903,1824.1599999999999,0.0,16600.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11066.666666666666,1,0,1_0,1_1 +4796,0.0,0.0,86.0,112,78,71,0.0,16080,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4467.7742179913985,2080.0,0.0,29611.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19740.666666666668,3,0,3_0,3_1 +4797,0.0,0.0,54.0,112,38,50,0.0,16082,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1491.0636163188822,4080.96,0.0,53412.0,1,3,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26706.0,4,0,4_0,4_0 +4798,0.0,0.0,59.0,111,78,41,0.0,16083,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4642.807383449009,0.0,0.0,14184.0,7,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14184.0,2,0,2_1,2_0 +4799,0.0,0.0,67.0,111,74,20,0.0,16084,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,2022.513713301057,3042.0,0.0,64866.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,43244.0,5,0,5,5_0 +4800,0.0,0.0,69.0,300,74,20,0.0,16085,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1909.675655965255,2351.96,0.0,14090.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14090.0,2,0,2_0,2_1 +4801,0.0,0.0,64.0,111,75,44,0.0,16087,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3851.8075756891367,0.0,0.0,33256.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33256.0,5,0,5,5_0 +4802,0.0,0.0,38.0,112,85,50,0.0,16089,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,2.4,3283.0258290969323,1560.0,0.0,37340.0,4,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,15558.333333333334,2,0,2_1,2_1 +4803,0.0,0.0,74.0,112,75,60,0.0,16091,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2930.9044059488774,2600.0,0.0,33070.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22046.666666666668,3,0,3_0,3_1 +4804,0.0,0.0,63.0,111,31,12,0.0,16092,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3507.215877277225,2080.0,0.0,444902.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,296601.3333333333,5,0,5,5_0 +4805,0.0,0.0,34.0,300,21,50,0.0,16093,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3111.6692302314905,0.0,0.0,21007.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10003.333333333332,1,0,1_0,1_1 +4806,0.0,0.0,62.0,300,31,10,0.0,16094,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,3280.3531642734,0.0,0.0,39410.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,39410.0,5,0,5,5_1 +4807,0.0,0.0,43.0,111,52,50,0.0,161,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1783.5918067039086,0.0,0.0,49697.0,1,4,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20707.083333333336,3,0,3_0,3_0 +4808,8.0,8.0,47.0,300,52,50,0.0,1610,0.0,0.0,30.0,0.0,1.0,4.0,0.0,2.0,1.5,1782.8731307174285,2600.0,0.0,35900.0,1,4,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23933.333333333332,4,0,4_0,4_1 +4809,0.0,0.0,59.0,111,43,33,0.0,16100,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2138.9179527330616,0.0,0.0,65130.0,1,2,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,43420.0,5,0,5,5_0 +4810,0.0,0.0,43.0,111,65,43,0.0,16101,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1884.7600171428164,0.0,0.0,58805.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25567.391304347828,4,0,4_0,4_0 +4811,0.0,0.0,63.0,111,31,10,0.0,16102,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1551.122594724192,10920.0,0.0,98558.0,1,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,65705.33333333333,5,0,5,5_0 +4812,0.0,0.0,71.0,111,74,44,0.0,16103,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2101.31036767376,0.0,0.0,45945.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30630.0,4,0,4_0,4_0 +4813,0.0,0.0,64.0,111,77,71,0.0,16104,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3551.093974569288,0.0,0.0,21425.0,5,1,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14283.333333333334,2,0,2_0,2_0 +4814,0.0,0.0,70.0,400,74,20,0.0,16106,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2078.1299975048996,0.0,0.0,38089.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,38089.0,5,0,5,5_1 +4815,0.0,0.0,78.0,111,75,50,0.0,16107,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2805.7424617531506,0.0,0.0,38808.0,5,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25872.0,4,0,4_0,4_0 +4816,0.0,0.0,79.0,111,74,50,0.0,16108,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2178.967177062122,0.0,0.0,22155.0,5,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22155.0,3,0,3_0,3_0 +4817,0.0,0.0,68.0,111,72,50,0.0,16109,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1787.3890545879447,2880.7999999999997,0.0,40196.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26797.333333333332,4,0,4_0,4_0 +4818,0.0,0.0,62.0,112,75,42,0.0,16110,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1721.8301850280245,0.0,0.0,40820.0,5,1,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27213.333333333332,4,0,4_0,4_0 +4819,0.0,0.0,36.0,112,45,20,0.0,16111,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2087.893503287841,0.0,0.0,49775.0,1,2,8,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23702.38095238095,3,0,3_0,3_0 +4820,0.0,0.0,34.0,400,46,20,0.0,16112,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2565.3983346608334,2325.44,0.0,56327.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,37551.333333333336,5,0,5,5_0 +4821,0.0,0.0,48.0,112,63,50,0.0,16113,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,3653.275516650652,0.0,0.0,46572.0,1,1,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23286.0,3,0,3_0,3_0 +4822,0.0,0.0,64.0,120,71,71,0.0,16114,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2296.7972957357138,1560.0,0.0,11694.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11694.0,1,0,1_0,1_1 +4823,0.0,0.0,26.0,111,21,60,0.0,16115,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1381.5122151105006,5136.04,0.0,42096.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,28064.0,4,0,4_1,4_0 +4824,0.0,0.0,85.0,300,75,70,0.0,16116,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1969.0025695802342,0.0,0.0,34492.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22994.666666666668,3,0,3_0,3_1 +4825,0.0,0.0,49.0,211,85,71,0.0,16117,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,1351.5155653794054,0.0,0.0,17288.0,7,3,2,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13298.461538461537,1,0,1_1,1_0 +4826,0.0,0.0,46.0,111,46,30,0.0,16118,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2429.0376669857287,3120.0,0.0,60048.0,1,1,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24019.2,4,0,4_0,4_0 +4827,0.0,0.0,58.0,111,13,31,0.0,16119,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1935.8446390851486,3901.56,0.0,50468.0,1,1,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25234.0,4,0,4_0,4_0 +4828,3.0,15.0,82.0,112,71,70,0.0,1612,0.0,0.0,20.0,0.0,0.0,5.0,0.0,1.0,1.0,2790.8392170245893,0.0,0.0,20651.0,5,1,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,20651.0,3,0,3_0,3_1 +4829,0.0,0.0,53.0,112,38,50,0.0,16122,0.0,0.0,0.0,458.0,1.0,4.0,0.0,2.0,1.5,2338.436040332425,5727.28,0.0,31599.0,1,3,4,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21066.0,3,0,3_0,3_1 +4830,0.0,0.0,42.0,112,47,50,0.0,16125,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1678.132167480164,5200.0,0.0,46940.0,1,3,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,18776.0,3,0,3_1,3_0 +4831,0.0,0.0,56.0,112,68,71,0.0,16126,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2696.313585432273,0.0,0.0,15511.0,1,1,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15511.0,2,0,2_0,2_0 +4832,0.0,0.0,25.0,111,52,50,0.0,16127,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3733.966885583835,0.0,0.0,52047.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34698.0,5,0,5,5_0 +4833,0.0,0.0,43.0,111,31,0,0.0,16129,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3091.6458083061193,1560.0,0.0,25790.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25790.0,4,0,4_0,4_0 +4834,8.0,8.0,40.0,300,62,50,0.0,1613,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,866.0647209165775,2085.2,0.0,53870.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25652.38095238095,4,0,4_0,4_1 +4835,0.0,0.0,60.0,111,75,50,0.0,16130,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2611.301261083418,2599.48,0.0,56993.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,37995.333333333336,5,0,5,5_0 +4836,0.0,0.0,62.0,111,75,50,0.0,16131,0.0,0.0,0.0,470.0,0.0,2.0,0.0,2.0,1.5,3614.783700570075,0.0,0.0,21304.0,5,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14202.666666666666,2,0,2_0,2_0 +4837,0.0,0.0,56.0,112,62,71,0.0,16132,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1822.239141833212,1581.8400000000001,0.0,34900.0,1,2,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23266.666666666668,3,0,3_0,3_1 +4838,0.0,0.0,75.0,111,74,20,0.0,16133,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3255.747101753873,0.0,0.0,32883.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21922.0,3,0,3_0,3_0 +4839,0.0,0.0,61.0,111,52,50,0.0,16134,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1945.9660655585833,1040.0,0.0,19112.0,4,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19112.0,3,0,3_0,3_0 +4840,0.0,0.0,55.0,120,37,60,0.0,16135,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2162.733458829206,0.0,0.0,44049.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29366.0,4,0,4_0,4_1 +4841,0.0,0.0,79.0,111,77,70,0.0,16136,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2912.8662325605746,0.0,0.0,16950.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16950.0,2,0,2_0,2_0 +4842,0.0,0.0,36.0,112,37,42,0.0,16138,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1935.1025245803428,1560.52,0.0,72557.0,1,2,9,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30232.083333333336,4,0,4_0,4_0 +4843,0.0,0.0,79.0,111,74,30,0.0,16139,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4009.553330119301,0.0,0.0,46132.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,46132.0,5,0,5,5_0 +4844,0.0,0.0,49.0,400,53,71,0.0,16140,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2061.66983940201,343.2,0.0,22063.0,4,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8825.2,1,0,1_1,1_1 +4845,0.0,0.0,46.0,400,42,30,0.0,16141,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1848.570196583703,2600.0,0.0,56295.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37530.0,5,0,5,5_1 +4846,0.0,0.0,76.0,120,12,71,0.0,16142,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1777.468571830308,2600.0,0.0,9198.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9198.0,1,0,1_0,1_0 +4847,0.0,0.0,58.0,112,75,42,0.0,16143,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1878.0189753306465,1824.6800000000003,0.0,34965.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23310.0,3,0,3_0,3_1 +4848,0.0,0.0,45.0,111,46,31,0.0,16144,0.0,0.0,0.0,578.0,1.0,3.0,2.0,3.0,1.6,666.357876285064,0.0,0.0,27644.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17277.5,2,0,2_0,2_0 +4849,0.0,0.0,63.0,112,78,70,0.0,16145,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4586.232193013777,0.0,0.0,14916.0,5,1,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14916.0,2,0,2_0,2_0 +4850,0.0,0.0,21.0,112,67,50,0.0,16147,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2896.8282606224175,2777.84,0.0,22800.0,1,3,7,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15200.0,2,0,2_0,2_0 +4851,0.0,0.0,45.0,400,67,50,0.0,16148,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,729.6111582034238,938.0799999999999,0.0,32152.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16076.0,2,0,2_0,2_1 +4852,0.0,0.0,71.0,400,75,70,0.0,16149,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2342.983089950043,0.0,0.0,20275.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20275.0,3,0,3_0,3_0 +4853,0.0,0.0,32.0,111,22,30,0.0,16150,0.0,0.0,0.0,470.0,1.0,2.0,0.0,1.0,1.0,3289.5313100110175,0.0,0.0,18658.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18658.0,2,0,2_0,2_0 +4854,0.0,0.0,44.0,211,56,43,0.0,16151,0.0,0.0,0.0,34.0,1.0,4.0,2.0,3.0,1.8,221.08156725365833,1820.0,0.0,12065.0,4,3,3,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,6702.777777777777,1,0,1_1,1_0 +4855,0.0,0.0,78.0,211,77,50,0.0,16153,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2470.299276018292,0.0,0.0,17010.0,5,3,2,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17010.0,2,0,2_0,2_0 +4856,0.0,0.0,69.0,112,74,10,0.0,16154,0.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,2.0,3178.827909617357,2409.16,0.0,62891.0,5,1,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31445.5,4,0,4_0,4_0 +4857,0.0,0.0,39.0,111,63,50,0.0,16156,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2413.2862332969303,0.0,0.0,37862.0,1,2,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25241.333333333332,4,0,4_0,4_0 +4858,0.0,0.0,60.0,300,38,44,0.0,16157,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1355.5208272607579,0.0,0.0,47203.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31468.666666666668,4,0,4_0,4_0 +4859,0.0,0.0,46.0,111,52,50,0.0,16158,0.0,0.0,0.0,394.0,1.0,4.0,2.0,3.0,1.6,652.254777585402,0.0,0.0,28605.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17878.125,2,0,2_1,2_0 +4860,0.0,0.0,34.0,111,64,60,0.0,16159,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2280.1353596931654,0.0,0.0,60520.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25216.666666666668,4,0,4_0,4_0 +4861,5.0,5.0,70.0,112,12,50,0.0,1616,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2315.2284464012837,0.0,0.0,30157.0,1,3,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,20104.666666666668,3,0,3_0,3_1 +4862,0.0,0.0,71.0,111,75,31,0.0,16160,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2088.1991138626518,0.0,0.0,27660.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27660.0,4,0,4_0,4_0 +4863,0.0,0.0,25.0,111,56,31,0.0,16161,0.0,0.0,0.0,804.0,1.0,3.0,0.0,1.0,1.0,3916.4505728906133,0.0,0.0,19061.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19061.0,3,0,3_0,3_0 +4864,0.0,0.0,40.0,112,33,71,0.0,16162,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2867.6059846998182,2948.4,0.0,37544.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16323.478260869566,2,0,2_0,2_1 +4865,0.0,0.0,67.0,111,74,50,0.0,16163,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,1470.400523723398,1705.6,0.0,37833.0,5,1,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18916.5,3,0,3_0,3_0 +4866,0.0,0.0,61.0,112,74,42,0.0,16164,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1610.8861871527356,4733.04,0.0,27310.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18206.666666666668,2,0,2_0,2_1 +4867,0.0,0.0,62.0,112,74,20,0.0,16168,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2309.756440943099,2084.16,0.0,38519.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,38519.0,5,0,5,5_1 +4868,0.0,0.0,81.0,112,71,70,0.0,16169,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1530.7703614883471,0.0,0.0,22420.0,5,1,8,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14946.666666666666,2,0,2_0,2_0 +4869,1.0,6.0,55.0,111,55,42,0.0,1617,0.0,99999.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1604.9044911336684,0.0,0.0,48008.0,1,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,32005.333333333332,5,0,5,5_0 +4870,0.0,0.0,77.0,111,77,70,0.0,16170,0.0,0.0,0.0,404.0,0.0,4.0,0.0,2.0,1.5,2771.935346764864,0.0,0.0,29570.0,5,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19713.333333333332,3,0,3_0,3_0 +4871,0.0,0.0,37.0,300,47,43,0.0,16171,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2772.3900676584904,1300.0,0.0,21156.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21156.0,3,0,3_0,3_1 +4872,0.0,0.0,69.0,111,77,50,0.0,16172,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5408.193500967685,0.0,0.0,14740.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14740.0,2,0,2_0,2_0 +4873,0.0,0.0,27.0,111,67,30,0.0,16173,0.0,0.0,0.0,820.0,2.0,3.0,1.0,3.0,1.8,3973.1852214318674,780.0,0.0,41036.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22797.777777777777,3,0,3_0,3_0 +4874,0.0,0.0,57.0,112,46,31,0.0,16174,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1891.3658652366169,1701.9599999999998,0.0,36061.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24040.666666666668,4,0,4_0,4_1 +4875,0.0,0.0,31.0,112,65,60,0.0,16175,0.0,0.0,0.0,389.0,2.0,3.0,1.0,3.0,1.8,2976.9127988894875,4160.0,0.0,39539.0,1,3,5,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21966.11111111111,3,0,3_0,3_1 +4876,0.0,0.0,37.0,112,38,20,0.0,16176,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2336.520865785216,0.0,0.0,55785.0,1,1,7,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26564.285714285714,4,0,4_0,4_0 +4877,0.0,0.0,64.0,112,75,50,0.0,16177,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2068.6907591300555,0.0,0.0,30405.0,5,1,7,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30405.0,4,0,4_0,4_0 +4878,0.0,0.0,76.0,111,78,50,0.0,16178,0.0,0.0,0.0,346.0,0.0,4.0,0.0,1.0,1.0,3248.6328048207142,0.0,0.0,18722.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18722.0,3,0,3_0,3_0 +4879,2.0,2.0,34.0,120,38,31,0.0,1618,0.0,40.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2632.3013566456566,2441.4,0.0,78676.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,43708.88888888889,5,0,5,5_0 +4880,0.0,0.0,48.0,111,52,50,0.0,16180,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3140.349267140644,1565.2,0.0,27074.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,18049.333333333332,2,0,2_1,2_0 +4881,0.0,0.0,49.0,111,52,50,0.0,16181,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1887.4817443328432,4472.0,0.0,39221.0,1,2,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17052.608695652176,2,0,2_0,2_0 +4882,0.0,0.0,43.0,112,64,71,0.0,16182,0.0,0.0,0.0,759.0,2.0,4.0,1.0,3.0,1.8,713.1074989727903,0.0,0.0,33731.0,1,3,9,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18739.444444444445,3,0,3_0,3_0 +4883,0.0,0.0,60.0,111,55,71,0.0,16184,0.0,0.0,0.0,336.0,1.0,2.0,0.0,1.0,1.0,2535.3459143099058,0.0,0.0,22203.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22203.0,3,0,3_0,3_0 +4884,0.0,0.0,60.0,111,78,50,0.0,16185,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1927.3225246568688,0.0,0.0,23789.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15859.333333333334,2,0,2_0,2_0 +4885,0.0,0.0,52.0,111,52,71,0.0,16186,0.0,0.0,0.0,384.0,1.0,4.0,1.0,3.0,2.0,2940.7086829634936,0.0,0.0,6455.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,3227.5,1,0,1_0,1_0 +4886,0.0,0.0,21.0,111,63,50,0.0,16187,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,3677.0431204373813,0.0,0.0,37648.0,4,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17927.619047619046,2,0,2_1,2_0 +4887,0.0,0.0,38.0,111,46,50,0.0,16189,0.0,0.0,0.0,60.0,1.0,3.0,2.0,3.0,2.0,458.2064471280395,3250.52,0.0,36300.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,18150.0,2,0,2_1,2_0 +4888,2.0,2.0,83.0,111,75,50,0.0,1619,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2064.335247822602,0.0,0.0,40125.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26750.0,4,0,4_0,4_0 +4889,0.0,0.0,69.0,111,78,50,0.0,16190,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2901.601841436508,0.0,0.0,32030.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21353.333333333332,3,0,3_0,3_0 +4890,0.0,0.0,52.0,112,34,20,0.0,16191,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1137.897640173917,520.0,0.0,67693.0,1,2,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29431.739130434784,4,0,4_0,4_0 +4891,0.0,0.0,22.0,111,43,42,0.0,16192,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3741.348263617455,1300.0,0.0,12028.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12028.0,1,0,1_1,1_0 +4892,0.0,0.0,66.0,111,75,70,0.0,16193,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3310.487385072111,0.0,0.0,33884.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22589.333333333332,3,0,3_0,3_0 +4893,0.0,0.0,50.0,111,85,71,0.0,16194,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.8,1533.179919948976,0.0,0.0,19104.0,7,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10613.333333333334,1,0,1_1,1_0 +4894,0.0,0.0,54.0,111,56,70,0.0,16195,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,575.3322319536204,2756.0,0.0,24755.571428571428,1,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12377.785714285714,1,0,1_1,1_0 +4895,0.0,0.0,49.0,111,85,71,0.0,16196,0.0,0.0,0.0,0.0,1.0,4.0,4.0,6.0,3.1,2373.0891836162427,0.0,0.0,29540.0,6,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9529.032258064515,1,0,1_1,1_0 +4896,0.0,0.0,45.0,111,34,20,0.0,16197,0.0,0.0,0.0,564.0,1.0,4.0,2.0,3.0,2.0,1110.0746147450718,0.0,0.0,37117.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18558.5,2,0,2_0,2_0 +4897,0.0,0.0,57.0,300,00,60,0.0,16199,0.0,0.0,0.0,263.0,1.0,2.0,0.0,1.0,1.0,2123.446974921782,1300.0,0.0,12974.0,4,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12974.0,1,0,1_1,1_0 +4898,1.0,7.0,45.0,300,12,31,2.0,162,0.0,20.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2264.879043881927,0.0,4500.0,6593.0,1,1,0,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,4395.333333333333,1,0,1_0,1_0 +4899,3.0,3.0,65.0,111,75,71,0.0,1620,0.0,0.0,250.0,0.0,0.0,5.0,0.0,2.0,1.5,1495.874253920791,0.0,0.0,27090.0,5,1,7,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18060.0,2,0,2_0,2_0 +4900,0.0,0.0,47.0,400,62,71,0.0,16200,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1687.1721945702677,1569.88,0.0,21160.0,1,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21160.0,3,0,3_0,3_1 +4901,0.0,0.0,36.0,111,63,50,0.0,16201,0.0,0.0,0.0,30.0,1.0,3.0,2.0,3.0,1.6,1399.3899042967025,0.0,0.0,26536.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,16585.0,2,0,2_1,2_0 +4902,0.0,0.0,28.0,111,68,43,0.0,16202,0.0,0.0,0.0,340.0,1.0,1.0,0.0,1.0,1.0,3749.554040994681,0.0,0.0,14101.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14101.0,2,0,2_0,2_0 +4903,0.0,0.0,72.0,111,75,31,0.0,16203,0.0,0.0,0.0,850.0,0.0,2.0,0.0,1.0,1.0,2590.6619654647398,0.0,0.0,25670.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25670.0,4,0,4_0,4_0 +4904,0.0,0.0,39.0,111,21,71,0.0,16204,0.0,0.0,0.0,0.0,1.0,2.0,3.0,5.0,2.4,1994.8112237697912,0.0,0.0,21830.0,4,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9095.833333333334,1,0,1_1,1_0 +4905,0.0,0.0,85.0,111,77,71,0.0,16206,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4438.038407876759,0.0,0.0,13950.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13950.0,2,0,2_0,2_0 +4906,0.0,0.0,65.0,112,72,33,0.0,16208,0.0,0.0,0.0,0.0,0.0,7.0,1.0,2.0,1.5,1886.468879899746,0.0,0.0,54520.0,5,1,10,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,36346.666666666664,5,0,5,5_1 +4907,0.0,0.0,32.0,111,21,20,0.0,16209,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,3083.2159091592966,3322.8,0.0,50891.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33927.333333333336,5,0,5,5_0 +4908,0.0,0.0,32.0,211,22,31,0.0,16210,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3276.8652883715617,3744.0,0.0,41427.0,1,2,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23015.0,3,0,3_0,3_0 +4909,0.0,0.0,65.0,111,74,71,0.0,16211,0.0,0.0,0.0,0.0,1.0,14.0,0.0,2.0,1.5,1701.4223136472467,5753.8,0.0,6563.0,5,1,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,4375.333333333333,1,0,1_0,1_0 +4910,0.0,0.0,36.0,111,47,20,0.0,16213,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2500.4958752382863,2329.6,0.0,53811.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29895.0,4,0,4_0,4_0 +4911,0.0,0.0,37.0,221,13,30,0.0,16215,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1983.6712048145096,2719.08,0.0,118460.0,1,2,1,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,49358.333333333336,5,0,5,5_0 +4912,0.0,0.0,71.0,112,77,70,0.0,16216,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2875.715070176834,1004.64,0.0,11380.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11380.0,1,0,1_0,1_1 +4913,0.0,0.0,40.0,300,67,50,0.0,16218,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2455.1925390279075,3120.0,0.0,43160.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18765.217391304348,3,0,3_0,3_1 +4914,0.0,0.0,70.0,400,74,30,0.0,16219,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2834.4770535000875,2135.12,0.0,65306.0,5,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,43537.333333333336,5,0,5,5_1 +4915,0.0,0.0,46.0,111,43,41,0.0,16220,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.3,2434.0822466011373,3070.08,0.0,10722.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8247.692307692307,1,0,1_0,1_0 +4916,0.0,0.0,34.0,300,48,50,0.0,16221,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2820.1411916609613,0.0,0.0,54408.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25908.571428571428,4,0,4_0,4_1 +4917,0.0,0.0,64.0,112,72,50,0.0,16222,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1318.9679020873257,2444.0,0.0,30531.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20354.0,3,0,3_0,3_0 +4918,0.0,0.0,69.0,111,74,60,0.0,16223,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1906.239330737859,0.0,0.0,59708.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,39805.333333333336,5,0,5,5_0 +4919,0.0,0.0,54.0,111,46,50,0.0,16226,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1639.5095187773413,1560.0,0.0,25961.0,1,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25961.0,4,0,4_0,4_0 +4920,0.0,0.0,27.0,211,52,71,0.0,16227,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,687.255926786468,0.0,0.0,13676.0,4,3,2,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8547.5,1,0,1_1,1_0 +4921,0.0,0.0,47.0,111,56,50,0.0,16229,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.3,1156.472078168349,0.0,0.0,12026.0,4,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9250.76923076923,1,0,1_1,1_0 +4922,0.0,0.0,38.0,111,48,43,0.0,1623,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3721.6372761160515,3120.0,0.0,45703.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25390.555555555555,4,0,4_0,4_0 +4923,0.0,0.0,43.0,112,53,31,0.0,16231,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1511.429474884384,0.0,0.0,65445.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28454.34782608696,4,0,4_0,4_1 +4924,0.0,0.0,43.0,111,55,50,0.0,16232,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1110.0783634851261,0.0,0.0,12177.0,1,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8118.0,1,0,1_1,1_0 +4925,0.0,0.0,41.0,111,85,71,0.0,16234,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,415.8779173087288,0.0,0.0,16304.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10190.0,1,0,1_1,1_0 +4926,0.0,0.0,78.0,112,78,70,0.0,16235,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2530.352391567363,1258.3999999999999,0.0,36553.0,5,3,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24368.666666666668,4,0,4_0,4_1 +4927,0.0,0.0,40.0,112,53,31,0.0,16236,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1953.4987969346266,2236.0,0.0,39732.0,1,2,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18920.0,3,0,3_0,3_0 +4928,0.0,0.0,54.0,112,52,60,0.0,16237,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2474.877023076435,1178.32,0.0,35967.0,1,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23978.0,4,0,4_0,4_0 +4929,0.0,0.0,41.0,111,37,20,0.0,16238,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3580.180816013873,0.0,0.0,75198.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,37599.0,5,0,5,5_0 +4930,0.0,0.0,74.0,221,78,70,0.0,16239,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2902.26243048335,1537.64,0.0,16173.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16173.0,2,0,2_0,2_0 +4931,13.0,13.0,56.0,111,47,41,0.0,1624,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1511.6660102540338,0.0,0.0,42276.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,23486.666666666668,3,0,3_0,3_0 +4932,0.0,0.0,54.0,112,48,31,0.0,16240,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,3.0,1751.5430051211465,10267.4,0.0,61087.0,1,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20362.333333333332,3,0,3_0,3_1 +4933,0.0,0.0,87.0,400,78,71,0.0,16241,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3244.2527906032883,1341.6000000000001,0.0,16429.0,5,4,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10952.666666666666,1,0,1_0,1_1 +4934,0.0,0.0,72.0,400,72,44,0.0,16243,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2208.403323695203,4122.56,0.0,9628.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9628.0,1,0,1_0,1_1 +4935,0.0,0.0,43.0,111,52,71,0.0,16245,0.0,0.0,0.0,550.0,2.0,2.0,2.0,4.0,2.1,3882.673997584865,2600.0,0.0,32230.0,4,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15347.619047619048,2,0,2_0,2_0 +4936,0.0,0.0,49.0,112,67,50,0.0,16248,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.8,1904.7070680542831,1560.52,0.0,39264.0,1,3,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14022.857142857143,2,0,2_1,2_1 +4937,0.0,0.0,61.0,111,52,70,0.0,16249,0.0,0.0,0.0,543.0,2.0,3.0,1.0,2.0,1.5,3190.33686508367,0.0,0.0,40900.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27266.666666666668,4,0,4_0,4_0 +4938,0.0,0.0,49.0,111,37,31,0.0,1625,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2547.4258110078326,3312.92,0.0,100475.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,40190.0,5,0,5,5_0 +4939,0.0,0.0,63.0,112,77,50,0.0,16250,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2091.3703133700437,0.0,0.0,21560.0,5,3,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21560.0,3,0,3_0,3_1 +4940,0.0,0.0,23.0,111,81,31,0.0,16251,0.0,0.0,0.0,21.0,1.0,1.0,0.0,1.0,1.0,2122.3883385638173,0.0,0.0,14644.0,4,3,7,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14644.0,2,0,2_1,2_0 +4941,0.0,0.0,28.0,112,56,50,0.0,16253,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3299.602748230569,0.0,0.0,15513.0,1,2,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,7387.142857142857,1,0,1_0,1_0 +4942,0.0,0.0,46.0,112,47,42,0.0,16254,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2765.4859615189516,0.0,0.0,60040.0,1,2,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,33355.555555555555,5,0,5,5_0 +4943,0.0,0.0,63.0,111,77,50,0.0,16258,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2502.2765176618227,0.0,0.0,15120.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15120.0,2,0,2_0,2_0 +4944,0.0,0.0,54.0,111,34,10,0.0,16259,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2247.346123154915,2340.0,0.0,68578.0,1,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,68578.0,5,0,5,5_0 +4945,3.0,10.0,37.0,111,55,43,0.0,1626,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1876.0027623953972,2667.08,0.0,78226.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,34011.30434782609,5,0,5,5_0 +4946,0.0,0.0,64.0,111,75,31,0.0,16260,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2539.164335753992,0.0,0.0,39392.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26261.333333333332,4,0,4_0,4_0 +4947,0.0,0.0,58.0,111,48,42,0.0,16261,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1683.4618029118587,2104.96,0.0,36467.0,1,2,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,36467.0,5,0,5,5_0 +4948,0.0,0.0,78.0,300,77,70,0.0,16262,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3717.7951007679794,0.0,0.0,42067.0,5,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28044.666666666668,4,0,4_0,4_1 +4949,0.0,0.0,36.0,111,52,71,0.0,16263,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,977.1412200280074,3386.76,0.0,41253.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19644.285714285714,3,0,3_1,3_0 +4950,0.0,0.0,63.0,111,75,33,0.0,16264,0.0,0.0,0.0,615.0,0.0,2.0,0.0,1.0,1.0,4139.581835601173,0.0,0.0,22136.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22136.0,3,0,3_0,3_0 +4951,0.0,0.0,51.0,300,62,50,0.0,16265,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1620.0667685626595,1300.52,0.0,37943.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15177.2,2,0,2_0,2_1 +4952,0.0,0.0,32.0,120,47,31,0.0,16266,0.0,0.0,0.0,0.0,2.0,7.0,1.0,4.0,2.3,2630.715821693493,5621.2,0.0,86160.0,1,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37460.86956521739,5,0,5,5_1 +4953,0.0,0.0,44.0,111,68,71,0.0,16267,0.0,0.0,0.0,364.0,1.0,5.0,3.0,5.0,2.4,2969.8982487898097,1924.0,0.0,28790.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11995.833333333334,1,0,1_1,1_0 +4954,0.0,0.0,64.0,111,74,12,0.0,16268,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2230.3886247291116,0.0,0.0,677341.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,451560.6666666667,5,0,5,5_0 +4955,0.0,0.0,45.0,112,48,71,0.0,16269,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3115.0666388711848,0.0,0.0,29138.0,1,3,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29138.0,4,0,4_0,4_1 +4956,3.0,13.0,29.0,111,38,20,0.0,1627,0.0,0.0,110.0,170.0,2.0,2.0,0.0,2.0,1.5,2793.5461206514565,0.0,0.0,46814.0,1,3,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,1,1.0,2.0,31209.333333333332,4,0,4_1,4_0 +4957,0.0,0.0,64.0,112,77,70,0.0,16272,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1117.0001915314442,0.0,0.0,29648.0,5,1,10,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19765.333333333332,3,0,3_0,3_0 +4958,0.0,0.0,41.0,111,46,30,0.0,16273,0.0,0.0,0.0,0.0,2.0,1.0,2.0,4.0,2.1,3207.523322010513,1539.72,0.0,43561.0,1,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20743.333333333332,3,0,3_0,3_0 +4959,0.0,0.0,67.0,111,75,71,0.0,16275,0.0,0.0,0.0,394.0,0.0,5.0,0.0,2.0,1.5,2693.820132996913,0.0,0.0,23322.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15548.0,2,0,2_0,2_0 +4960,0.0,0.0,41.0,400,85,50,0.0,16276,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5270.46549830006,0.0,0.0,12780.0,7,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12780.0,1,0,1_1,1_0 +4961,0.0,0.0,42.0,111,43,33,0.0,16277,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,555.2315659201269,2080.0,0.0,35859.0,1,2,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19921.666666666668,3,0,3_0,3_0 +4962,0.0,0.0,55.0,111,44,31,0.0,16278,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1820.5744955086525,1982.7599999999998,0.0,5562.0,1,4,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,3708.0,1,0,1_0,1_0 +4963,0.0,0.0,66.0,111,78,50,0.0,16279,0.0,0.0,0.0,314.0,0.0,3.0,0.0,1.0,1.0,4599.061512179116,0.0,0.0,16967.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16967.0,2,0,2_0,2_0 +4964,4.0,6.0,82.0,111,72,44,0.0,1628,0.0,0.0,0.0,44.0,0.0,4.0,0.0,1.0,1.0,2351.740306950984,0.0,0.0,25785.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,25785.0,4,0,4_1,4_0 +4965,0.0,0.0,63.0,111,75,31,0.0,16280,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2330.2945804534374,3848.0,0.0,54215.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,36143.333333333336,5,0,5,5_0 +4966,0.0,0.0,81.0,111,74,12,0.0,16281,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1961.3703274848976,3536.0,0.0,63157.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42104.666666666664,5,0,5,5_0 +4967,0.0,0.0,52.0,111,64,71,0.0,16283,0.0,0.0,0.0,0.0,1.0,3.0,0.0,3.0,2.0,4177.919175706803,0.0,0.0,43611.0,1,2,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21805.5,3,0,3_0,3_0 +4968,0.0,0.0,63.0,111,48,41,0.0,16285,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,2.9,1501.1538531326019,0.0,0.0,32566.0,1,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11229.655172413793,1,0,1_1,1_0 +4969,0.0,0.0,31.0,111,46,31,0.0,16286,0.0,0.0,0.0,433.0,1.0,3.0,1.0,2.0,1.3,1185.6034068530867,0.0,0.0,28967.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22282.30769230769,3,0,3_0,3_0 +4970,0.0,0.0,47.0,221,37,31,0.0,16287,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1845.3068611893327,0.0,0.0,45260.0,1,1,3,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18104.0,2,0,2_0,2_0 +4971,0.0,0.0,61.0,400,74,30,0.0,16290,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2203.421632647435,0.0,0.0,44571.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29714.0,4,0,4_0,4_1 +4972,0.0,0.0,83.0,111,77,70,0.0,16291,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4177.422805891386,0.0,0.0,21010.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21010.0,3,0,3_0,3_0 +4973,0.0,0.0,66.0,300,78,70,0.0,16292,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2103.400037596333,2184.0,0.0,30060.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20040.0,3,0,3_0,3_1 +4974,0.0,0.0,49.0,111,85,71,0.0,16294,0.0,0.0,0.0,134.0,0.0,4.0,5.0,7.0,3.6,1209.1828231919237,1300.0,0.0,41640.0,7,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11566.666666666666,1,0,1_1,1_0 +4975,0.0,0.0,60.0,111,34,10,0.0,16295,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2139.681775533007,3120.0,0.0,96247.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,64164.666666666664,5,0,5,5_0 +4976,0.0,0.0,53.0,111,52,50,0.0,16296,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,791.5338429471196,1040.0,0.0,37181.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24787.333333333332,4,0,4_0,4_0 +4977,0.0,0.0,61.0,111,,71,0.0,16297,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4413.451354117976,0.0,0.0,3786.0,8,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,3786.0,1,0,1_1,1_0 +4978,0.0,0.0,82.0,111,75,31,0.0,16298,0.0,0.0,0.0,706.0,0.0,2.0,0.0,1.0,1.0,2479.302383032854,0.0,0.0,21371.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21371.0,3,0,3_0,3_0 +4979,5.0,7.0,36.0,111,46,43,0.0,163,0.0,80.0,400.0,210.0,1.0,3.0,1.0,2.0,1.3,1026.4341607798979,0.0,0.0,25485.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,19603.846153846152,3,0,3_1,3_0 +4980,0.0,0.0,26.0,111,85,71,0.0,1630,0.0,0.0,0.0,200.0,0.0,3.0,2.0,3.0,1.6,1152.257648202532,0.0,0.0,16797.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10498.125,1,0,1_1,1_0 +4981,0.0,0.0,19.0,111,84,41,0.0,16300,0.0,0.0,0.0,256.0,0.0,2.0,0.0,1.0,1.0,2553.0532635315903,0.0,0.0,10954.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10954.0,1,0,1_1,1_0 +4982,0.0,0.0,64.0,112,42,60,0.0,16302,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1766.1923261811273,5844.28,0.0,52307.0,1,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,34871.333333333336,5,0,5,5_1 +4983,0.0,0.0,57.0,111,47,60,0.0,16306,0.0,0.0,0.0,400.0,1.0,1.0,0.0,1.0,1.0,3118.80228889234,0.0,0.0,16134.0,4,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16134.0,2,0,2_0,2_0 +4984,0.0,0.0,25.0,111,47,43,0.0,16308,0.0,0.0,0.0,420.0,1.0,2.0,0.0,1.0,1.0,4815.7905546573265,0.0,0.0,23613.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23613.0,3,0,3_0,3_0 +4985,0.0,0.0,76.0,111,78,71,0.0,16309,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3625.15886001928,1826.2399999999998,0.0,23330.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15553.333333333334,2,0,2_0,2_0 +4986,0.0,10.0,72.0,111,74,20,0.0,1631,0.0,0.0,0.0,480.0,0.0,5.0,0.0,2.0,1.5,2146.456237035951,0.0,0.0,40420.0,5,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26946.666666666668,4,0,4_0,4_0 +4987,0.0,0.0,28.0,111,56,43,0.0,16315,0.0,0.0,0.0,220.0,1.0,3.0,0.0,1.0,1.0,6615.899418470609,0.0,0.0,14250.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14250.0,2,0,2_1,2_0 +4988,0.0,0.0,29.0,221,81,71,0.0,16316,0.0,0.0,0.0,12.0,1.0,2.0,2.0,3.0,1.6,24453.781779600886,0.0,0.0,14796.0,4,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9247.5,1,0,1_1,1_0 +4989,0.0,0.0,53.0,111,63,50,0.0,16318,0.0,0.0,0.0,288.0,1.0,3.0,0.0,1.0,1.0,2474.449205042402,732.16,0.0,21776.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21776.0,3,0,3_0,3_0 +4990,0.0,0.0,36.0,111,62,42,0.0,16319,0.0,0.0,0.0,127.0,1.0,4.0,4.0,6.0,2.7,1981.079296820757,0.0,0.0,36707.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13595.185185185184,1,0,1_1,1_0 +4991,0.0,0.0,76.0,111,78,70,0.0,16321,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3655.2451813523826,2329.08,0.0,12840.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12840.0,1,0,1_0,1_0 +4992,0.0,0.0,33.0,111,63,31,0.0,16322,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2360.7030030992896,0.0,0.0,41700.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19857.142857142855,3,0,3_0,3_0 +4993,0.0,0.0,58.0,111,64,50,0.0,16324,0.0,0.0,0.0,512.0,1.0,5.0,0.0,1.0,1.0,3295.984589239723,0.0,0.0,31279.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31279.0,4,0,4_0,4_0 +4994,0.0,0.0,61.0,111,46,41,0.0,16326,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1632.1970747238954,0.0,0.0,70114.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,46742.666666666664,5,0,5,5_0 +4995,0.0,0.0,49.0,112,47,50,0.0,16328,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1849.2902788900876,0.0,0.0,39832.0,1,1,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22128.888888888887,3,0,3_0,3_1 +4996,0.0,0.0,36.0,300,45,41,0.0,16329,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2617.3858009747823,7500.4800000000005,0.0,48847.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32564.666666666668,5,0,5,5_1 +4997,3.0,3.0,74.0,111,74,41,0.0,1633,0.0,200.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2177.9709467064645,0.0,0.0,43312.0,5,1,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28874.666666666668,4,0,4_0,4_0 +4998,0.0,0.0,51.0,111,85,60,0.0,16330,0.0,0.0,0.0,225.0,0.0,3.0,0.0,1.0,1.0,6409.186220842072,0.0,0.0,16506.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,16506.0,2,0,2_1,2_0 +4999,0.0,0.0,35.0,111,34,30,0.0,16331,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1178.5681364804761,0.0,0.0,90738.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,60492.0,5,0,5,5_0 +5000,0.0,0.0,57.0,111,54,50,0.0,16332,0.0,0.0,0.0,413.0,1.0,2.0,0.0,1.0,1.0,1743.6876911812763,0.0,0.0,16887.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16887.0,2,0,2_0,2_0 +5001,0.0,0.0,59.0,211,77,70,0.0,16333,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2837.5698435077375,0.0,0.0,8820.0,4,3,2,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8820.0,1,0,1_1,1_0 +5002,0.0,0.0,68.0,221,75,50,0.0,16336,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1652.1565653299754,0.0,0.0,28255.0,5,1,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18836.666666666668,3,0,3_0,3_0 +5003,0.0,0.0,66.0,111,75,33,0.0,16337,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2348.407748208665,0.0,0.0,36290.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,36290.0,5,0,5,5_0 +5004,0.0,0.0,43.0,111,38,30,0.0,16338,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2838.9216552998864,2704.52,0.0,63021.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27400.434782608696,4,0,4_0,4_0 +5005,0.0,0.0,68.0,111,86,30,0.0,16339,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1428.9071661192597,0.0,0.0,64908.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,43272.0,5,0,5,5_0 +5006,17.0,17.0,64.0,300,43,20,0.0,1634,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1811.9250944309722,0.0,0.0,34837.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,34837.0,5,0,5,5_1 +5007,0.0,0.0,45.0,111,52,31,0.0,16341,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,338.28779178497297,2860.0,0.0,18293.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10162.777777777777,1,0,1_0,1_0 +5008,0.0,0.0,50.0,111,23,31,0.0,16342,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2005.4389909422407,1040.0,0.0,92748.0,1,4,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,61832.0,5,0,5,5_0 +5009,0.0,0.0,59.0,112,21,50,0.0,16343,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,3108.1719338424186,0.0,0.0,22856.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11428.0,1,0,1_0,1_1 +5010,0.0,0.0,30.0,111,63,50,0.0,16348,0.0,0.0,0.0,112.0,1.0,4.0,2.0,4.0,2.1,1348.2866274261003,1976.0,0.0,27810.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13242.857142857143,1,0,1_1,1_0 +5011,0.0,0.0,39.0,112,47,12,0.0,16349,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2367.911844498738,0.0,0.0,81904.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,45502.22222222222,5,0,5,5_1 +5012,6.0,8.0,45.0,211,48,42,0.0,1635,0.0,99999.0,270.0,0.0,2.0,6.0,2.0,4.0,2.3,1448.3272715944645,3668.6,0.0,58912.0,1,2,2,3.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,25613.913043478264,4,0,4_0,4_0 +5013,0.0,0.0,59.0,300,42,30,0.0,16351,0.0,0.0,0.0,650.0,2.0,6.0,0.0,2.0,1.5,421.01513833799936,3120.0,0.0,55793.0,1,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37195.333333333336,5,0,5,5_1 +5014,0.0,0.0,56.0,400,62,71,0.0,16353,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1754.2314507795938,0.0,0.0,740.0,1,3,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,493.3333333333333,1,0,1_0,1_0 +5015,0.0,0.0,49.0,400,69,50,0.0,16354,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3162.675903286709,0.0,0.0,14707.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14707.0,2,0,2_0,2_1 +5016,0.0,0.0,43.0,111,52,30,0.0,16355,0.0,0.0,0.0,320.0,1.0,2.0,0.0,1.0,1.0,6479.781234933992,2600.0,0.0,19400.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19400.0,3,0,3_0,3_0 +5017,0.0,0.0,32.0,111,48,50,0.0,16356,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,2.7,2325.954624761662,1560.0,0.0,26340.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9755.555555555555,1,0,1_1,1_0 +5018,0.0,0.0,53.0,111,52,50,0.0,16357,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.8,2493.9507935489783,0.0,0.0,28286.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10102.142857142857,1,0,1_0,1_0 +5019,0.0,0.0,53.0,211,68,71,0.0,16358,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,900.8297356844881,0.0,0.0,9337.0,4,3,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9337.0,1,0,1_1,1_0 +5020,0.0,0.0,72.0,111,75,60,0.0,16359,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2773.9404821870116,0.0,0.0,31010.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20673.333333333332,3,0,3_0,3_0 +5021,0.0,0.0,72.0,300,72,70,0.0,16360,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1970.2720839770411,0.0,0.0,25340.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16893.333333333332,2,0,2_0,2_1 +5022,0.0,0.0,56.0,111,38,50,0.0,16362,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1667.7015117389576,0.0,0.0,64467.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32233.5,5,0,5,5_0 +5023,0.0,0.0,24.0,111,54,42,0.0,16363,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,4339.386173260593,1303.12,0.0,22365.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22365.0,3,0,3_0,3_0 +5024,0.0,0.0,61.0,112,56,70,0.0,16365,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2344.671644088768,0.0,0.0,47030.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23515.0,3,0,3_0,3_1 +5025,0.0,0.0,77.0,112,74,71,0.0,16366,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1672.704859948196,0.0,0.0,45379.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30252.666666666668,4,0,4_0,4_1 +5026,0.0,0.0,42.0,111,52,50,0.0,16367,0.0,0.0,0.0,330.0,1.0,2.0,0.0,1.0,1.0,2868.769056015798,0.0,0.0,22022.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22022.0,3,0,3_0,3_0 +5027,0.0,0.0,36.0,111,54,42,0.0,16369,0.0,0.0,0.0,127.0,1.0,4.0,3.0,4.0,1.9,619.2719245977947,0.0,0.0,36389.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19152.105263157897,3,0,3_1,3_0 +5028,0.0,0.0,79.0,111,77,71,0.0,1637,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,6022.838919055054,0.0,0.0,13828.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13828.0,1,0,1_1,1_0 +5029,0.0,0.0,30.0,111,56,20,0.0,16370,0.0,0.0,0.0,565.0,1.0,1.0,0.0,1.0,1.0,4699.908336830679,0.0,0.0,7740.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,7740.0,1,0,1_0,1_0 +5030,0.0,0.0,67.0,111,78,70,0.0,16372,0.0,0.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,2985.657976437696,0.0,0.0,45496.0,5,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22748.0,3,0,3_0,3_0 +5031,0.0,0.0,33.0,300,63,43,0.0,16374,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2299.2430109771985,0.0,0.0,42665.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20316.666666666664,3,0,3_0,3_1 +5032,0.0,0.0,65.0,111,31,10,0.0,16375,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1849.4820714191164,0.0,0.0,126819.0,1,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,84546.0,5,0,5,5_0 +5033,0.0,0.0,60.0,111,43,33,0.0,16376,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2277.6060233866856,0.0,0.0,60386.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,40257.333333333336,5,0,5,5_0 +5034,0.0,0.0,55.0,111,78,50,0.0,16377,0.0,0.0,0.0,607.0,0.0,3.0,0.0,1.0,1.0,2774.599059493658,0.0,0.0,33622.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33622.0,5,0,5,5_0 +5035,0.0,0.0,64.0,112,52,50,0.0,16378,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1483.5265214018455,1580.8000000000002,0.0,40087.0,1,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26724.666666666668,4,0,4_0,4_1 +5036,0.0,0.0,68.0,300,68,70,0.0,16379,0.0,0.0,0.0,253.0,1.0,2.0,0.0,1.0,1.0,1645.585865661505,0.0,0.0,21050.0,1,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21050.0,3,0,3_0,3_0 +5037,0.0,0.0,83.0,111,74,10,0.0,16381,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3068.0148259958387,0.0,0.0,40230.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40230.0,5,0,5,5_0 +5038,0.0,0.0,32.0,112,52,41,0.0,16382,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3062.865008676371,1300.0,0.0,35446.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19692.222222222223,3,0,3_0,3_1 +5039,0.0,0.0,43.0,111,42,30,0.0,16383,0.0,0.0,0.0,355.0,1.0,4.0,1.0,2.0,1.5,3113.439917792602,0.0,0.0,35530.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23686.666666666668,3,0,3_0,3_0 +5040,0.0,0.0,40.0,111,22,43,0.0,16385,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2578.9831581756794,2898.48,0.0,57024.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38016.0,5,0,5,5_0 +5041,0.0,0.0,59.0,112,47,50,0.0,16387,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1485.1197176255016,257.40000000000003,0.0,34806.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23204.0,3,0,3_0,3_1 +5042,0.0,0.0,39.0,300,47,20,0.0,16388,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2514.168217923985,0.0,0.0,52551.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29195.0,4,0,4_0,4_1 +5043,0.0,0.0,58.0,111,34,10,0.0,16389,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1824.8566516144188,0.0,0.0,36507.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24338.0,4,0,4_0,4_0 +5044,0.0,0.0,44.0,111,63,71,0.0,1639,0.0,0.0,0.0,787.0,2.0,3.0,2.0,4.0,2.3,4068.901178032733,0.0,0.0,35928.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15620.869565217392,2,0,2_0,2_0 +5045,0.0,0.0,33.0,111,69,43,0.0,16391,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1768.4499625694605,2714.92,0.0,46692.0,1,2,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19455.0,3,0,3_0,3_0 +5046,0.0,0.0,75.0,111,86,71,0.0,16392,0.0,0.0,0.0,327.0,0.0,5.0,0.0,1.0,1.0,3282.781591821071,0.0,0.0,16239.0,6,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16239.0,2,0,2_0,2_0 +5047,0.0,0.0,54.0,111,77,70,0.0,16393,0.0,0.0,0.0,57.0,1.0,3.0,1.0,2.0,1.5,3414.64381490344,0.0,0.0,9364.0,7,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,6242.666666666667,1,0,1_1,1_0 +5048,0.0,0.0,82.0,111,75,71,0.0,16394,0.0,0.0,0.0,463.0,0.0,2.0,0.0,1.0,1.0,4917.518191288829,0.0,0.0,21281.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21281.0,3,0,3_0,3_0 +5049,0.0,0.0,54.0,111,48,50,0.0,16395,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2509.751889722634,0.0,0.0,63081.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25232.4,4,0,4_0,4_0 +5050,0.0,0.0,40.0,111,21,20,0.0,16396,0.0,0.0,0.0,467.0,2.0,3.0,1.0,3.0,1.8,7192.0306340649495,0.0,0.0,32746.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,18192.222222222223,2,0,2_1,2_0 +5051,0.0,0.0,36.0,111,34,20,0.0,16397,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,804.3720443090043,0.0,0.0,36813.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23008.125,3,0,3_0,3_0 +5052,0.0,0.0,55.0,111,45,41,0.0,16398,0.0,0.0,0.0,79.0,1.0,3.0,0.0,1.0,1.0,1945.8566753166072,1590.1599999999999,0.0,12838.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12838.0,1,0,1_1,1_0 +5053,0.0,0.0,32.0,111,53,50,0.0,16399,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,1782.115569382494,0.0,0.0,30036.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11552.307692307691,1,0,1_1,1_0 +5054,11.0,11.0,33.0,111,68,71,0.0,164,0.0,0.0,0.0,0.0,1.0,2.0,2.0,3.0,1.6,727.6728703952124,0.0,0.0,20358.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12723.75,1,0,1_1,1_0 +5055,4.0,4.0,60.0,111,42,30,0.0,1640,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1839.8808378050621,2097.16,0.0,61800.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,41200.0,5,0,5,5_0 +5056,0.0,0.0,52.0,111,37,31,0.0,16401,0.0,0.0,0.0,1100.0,2.0,4.0,1.0,2.0,1.5,1453.644872340171,0.0,0.0,79751.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,53167.333333333336,5,0,5,5_0 +5057,0.0,0.0,58.0,111,65,41,0.0,16402,0.0,0.0,0.0,471.0,2.0,2.0,0.0,2.0,1.5,2737.8774188843227,0.0,0.0,23580.0,1,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15720.0,2,0,2_0,2_0 +5058,0.0,0.0,32.0,111,45,20,0.0,16403,0.0,0.0,0.0,301.0,1.0,3.0,0.0,1.0,1.0,5812.479810557637,0.0,0.0,27836.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27836.0,4,0,4_0,4_0 +5059,0.0,0.0,55.0,120,67,50,0.0,16404,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2909.251349065615,2080.0,0.0,24090.0,1,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24090.0,4,0,4_0,4_0 +5060,0.0,0.0,80.0,111,75,71,0.0,16405,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2434.7855784390995,0.0,0.0,27553.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18368.666666666668,2,0,2_0,2_0 +5061,0.0,0.0,67.0,112,75,31,0.0,16408,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2122.160407098327,4235.4,0.0,55330.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,36886.666666666664,5,0,5,5_1 +5062,0.0,0.0,47.0,111,52,41,0.0,16410,0.0,0.0,0.0,38.0,1.0,3.0,1.0,2.0,1.3,569.0698535467129,0.0,0.0,19510.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15007.692307692307,2,0,2_1,2_0 +5063,0.0,0.0,39.0,111,47,31,0.0,16413,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4054.2407225378715,0.0,0.0,31929.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,31929.0,5,0,5,5_0 +5064,0.0,0.0,56.0,111,43,33,0.0,16414,0.0,0.0,0.0,784.0,2.0,3.0,0.0,2.0,1.5,3167.6167201891253,0.0,0.0,104749.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,69832.66666666667,5,0,5,5_0 +5065,0.0,0.0,64.0,111,31,30,0.0,16415,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2850.5846584118335,0.0,0.0,82817.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,55211.333333333336,5,0,5,5_0 +5066,0.0,0.0,47.0,111,47,50,0.0,16416,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2098.6492324873525,3016.0,0.0,101126.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42135.833333333336,5,0,5,5_0 +5067,0.0,0.0,62.0,112,77,50,0.0,16418,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1966.3398886729894,0.0,0.0,21972.0,5,2,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21972.0,3,0,3_0,3_1 +5068,0.0,0.0,33.0,111,46,20,0.0,16421,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2830.8504985795666,0.0,0.0,51098.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28387.777777777777,4,0,4_0,4_0 +5069,0.0,0.0,67.0,111,74,20,0.0,16423,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2988.61955382302,2496.0,0.0,91500.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,61000.0,5,0,5,5_0 +5070,0.0,0.0,22.0,111,54,41,0.0,16427,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3133.103926115992,0.0,0.0,7600.0,2,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,7600.0,1,0,1_0,1_0 +5071,0.0,0.0,47.0,112,56,50,0.0,16428,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2311.281086326827,0.0,0.0,26880.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10752.0,1,0,1_0,1_1 +5072,0.0,0.0,69.0,111,86,71,0.0,1643,0.0,0.0,0.0,490.0,1.0,4.0,2.0,4.0,2.1,1629.2272766969527,0.0,0.0,34914.0,5,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16625.714285714286,2,0,2_0,2_0 +5073,0.0,0.0,60.0,300,77,71,0.0,16430,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3092.3314845686305,2714.4,0.0,73768.0,5,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,49178.666666666664,5,0,5,5_1 +5074,0.0,0.0,37.0,111,63,71,0.0,16432,0.0,0.0,0.0,0.0,1.0,3.0,4.0,6.0,2.7,3432.407383688559,1872.0,0.0,17560.0,4,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,6503.7037037037035,1,0,1_0,1_0 +5075,0.0,0.0,51.0,111,45,42,0.0,16433,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1839.784236400497,0.0,0.0,46820.0,1,1,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26011.11111111111,4,0,4_0,4_0 +5076,0.0,0.0,43.0,111,52,31,0.0,16435,0.0,0.0,0.0,458.0,1.0,4.0,2.0,3.0,1.8,705.8762494492364,0.0,0.0,37467.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,20815.0,3,0,3_1,3_0 +5077,0.0,0.0,71.0,111,75,33,0.0,16436,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2122.348915662259,0.0,0.0,28907.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28907.0,4,0,4_0,4_0 +5078,0.0,0.0,57.0,112,31,20,0.0,16437,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2521.9972653499003,0.0,0.0,75292.0,1,1,10,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,50194.666666666664,5,0,5,5_0 +5079,0.0,0.0,70.0,111,77,41,0.0,16439,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2343.108862877311,0.0,0.0,32209.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32209.0,5,0,5,5_0 +5080,8.0,8.0,79.0,111,86,50,0.0,1644,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1700.3577126118996,2652.0,0.0,24424.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16282.666666666666,2,0,2_0,2_0 +5081,0.0,0.0,72.0,400,72,71,0.0,16440,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2155.39753077563,0.0,0.0,14890.0,5,4,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9926.666666666666,1,0,1_0,1_1 +5082,0.0,0.0,24.0,111,63,44,0.0,16442,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3459.03047103771,0.0,0.0,35400.0,1,2,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23600.0,3,0,3_0,3_0 +5083,0.0,0.0,44.0,111,22,30,0.0,16443,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3613.4001706328872,0.0,0.0,54968.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,54968.0,5,0,5,5_0 +5084,0.0,0.0,39.0,111,56,33,0.0,16445,0.0,0.0,0.0,315.0,1.0,4.0,2.0,3.0,1.6,734.8765214910516,0.0,0.0,26190.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16368.75,2,0,2_0,2_0 +5085,0.0,0.0,21.0,111,84,43,0.0,16447,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3362.1672631480815,3243.76,0.0,3116.0,3,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,3116.0,1,0,1_0,1_0 +5086,0.0,0.0,54.0,112,48,50,0.0,16448,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2189.3881060504455,0.0,0.0,55060.0,1,2,10,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27530.0,4,0,4_0,4_0 +5087,0.0,0.0,32.0,111,37,12,0.0,16449,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3360.1305160748775,0.0,0.0,90762.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,50423.33333333333,5,0,5,5_0 +5088,0.0,0.0,75.0,112,75,30,0.0,16450,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1473.0733720433655,2293.2000000000003,0.0,87692.0,5,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,58461.333333333336,5,0,5,5_1 +5089,0.0,0.0,56.0,111,34,10,0.0,16452,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1091.523164593775,0.0,0.0,82340.0,1,2,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31669.23076923077,4,0,4_0,4_0 +5090,0.0,0.0,33.0,111,37,20,0.0,16454,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2594.6246068346873,0.0,0.0,59970.0,1,2,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39980.0,5,0,5,5_0 +5091,0.0,0.0,90.0,112,78,50,0.0,16455,0.0,0.0,0.0,1376.0,0.0,3.0,0.0,1.0,1.0,3255.7741979304324,0.0,0.0,9134.0,5,3,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9134.0,1,0,1_0,1_0 +5092,0.0,0.0,67.0,111,74,41,0.0,16456,0.0,0.0,0.0,478.0,0.0,2.0,0.0,1.0,1.0,2493.127861127673,0.0,0.0,25051.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25051.0,4,0,4_0,4_0 +5093,0.0,0.0,40.0,112,67,50,0.0,16457,0.0,0.0,0.0,95.0,1.0,3.0,1.0,2.0,1.5,460.9142046650603,0.0,0.0,21434.0,1,3,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14289.333333333334,2,0,2_1,2_1 +5094,0.0,0.0,54.0,111,68,41,0.0,16458,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2433.8159805071236,0.0,0.0,17795.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8897.5,1,0,1_0,1_0 +5095,0.0,0.0,52.0,111,38,44,0.0,16459,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1955.5790552667982,0.0,0.0,71477.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,47651.333333333336,5,0,5,5_0 +5096,0.0,0.0,39.0,300,85,50,0.0,1646,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,3222.0575872607433,1300.0,0.0,30126.0,4,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12552.5,1,0,1_1,1_1 +5097,0.0,0.0,74.0,111,77,70,0.0,16460,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3455.1641538296485,1449.76,0.0,18124.0,5,1,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18124.0,2,0,2_0,2_0 +5098,0.0,0.0,69.0,112,75,50,0.0,16462,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1939.5219865544295,0.0,0.0,41121.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27414.0,4,0,4_0,4_0 +5099,0.0,0.0,40.0,112,46,20,0.0,16465,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,438.4083081617234,0.0,0.0,33574.0,1,2,7,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25826.153846153844,4,0,4_0,4_0 +5100,0.0,0.0,82.0,111,72,70,0.0,16466,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5402.359997514594,0.0,0.0,23021.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23021.0,3,0,3_0,3_0 +5101,0.0,0.0,24.0,111,54,0,0.0,16467,0.0,0.0,0.0,440.0,1.0,3.0,0.0,1.0,1.0,5135.350567943196,0.0,0.0,22524.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,22524.0,3,0,3_1,3_0 +5102,0.0,0.0,37.0,112,48,31,0.0,16468,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3737.2314656399512,2458.04,0.0,29932.0,1,3,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29932.0,4,0,4_0,4_1 +5103,0.0,0.0,45.0,111,85,50,0.0,1647,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5125.332342340908,0.0,0.0,15892.0,7,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15892.0,2,0,2_0,2_0 +5104,0.0,0.0,29.0,300,47,42,0.0,16470,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2278.450299750959,3978.0,0.0,50758.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33838.666666666664,5,0,5,5_1 +5105,0.0,0.0,80.0,111,75,60,0.0,16471,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3342.384372256095,0.0,0.0,23019.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23019.0,3,0,3_0,3_0 +5106,0.0,0.0,76.0,111,78,70,0.0,16472,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1646.4656839833967,0.0,0.0,19129.0,5,3,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19129.0,3,0,3_0,3_0 +5107,0.0,0.0,48.0,112,85,71,0.0,16473,0.0,0.0,0.0,100.0,0.0,4.0,3.0,4.0,2.1,335.31252002013997,2106.0,0.0,28188.0,4,3,6,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13422.857142857143,1,0,1_1,1_1 +5108,0.0,0.0,51.0,111,43,33,0.0,16474,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,648.579796625198,0.0,0.0,28125.0,1,2,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,21634.615384615383,3,0,3_1,3_0 +5109,0.0,0.0,38.0,111,43,50,0.0,16475,0.0,0.0,0.0,365.0,1.0,4.0,1.0,2.0,1.3,2905.6819855488993,520.0,0.0,22428.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17252.30769230769,2,0,2_0,2_0 +5110,0.0,0.0,69.0,111,74,71,0.0,16476,0.0,0.0,0.0,698.0,0.0,2.0,0.0,1.0,1.0,3816.709404945862,0.0,0.0,28650.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28650.0,4,0,4_0,4_0 +5111,0.0,0.0,44.0,111,52,33,0.0,16478,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,1064.978688389151,0.0,0.0,14035.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10796.153846153846,1,0,1_1,1_0 +5112,0.0,0.0,36.0,300,12,71,0.0,16481,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2623.8501433422716,0.0,0.0,33476.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12875.384615384615,1,0,1_0,1_1 +5113,0.0,0.0,77.0,111,77,50,0.0,16482,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2101.199479226998,260.0,0.0,28340.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18893.333333333332,3,0,3_0,3_0 +5114,0.0,0.0,56.0,111,47,41,0.0,16483,0.0,0.0,0.0,903.0,2.0,4.0,1.0,3.0,2.0,2446.727218394169,2226.64,0.0,61167.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30583.5,4,0,4_0,4_0 +5115,0.0,0.0,45.0,111,46,31,0.0,16484,0.0,0.0,0.0,214.0,1.0,3.0,1.0,2.0,1.3,3438.2108925395905,0.0,0.0,22556.0,1,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17350.76923076923,2,0,2_1,2_0 +5116,0.0,0.0,48.0,111,31,30,0.0,16485,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,4338.316936809469,0.0,0.0,30540.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16966.666666666668,2,0,2_0,2_0 +5117,0.0,0.0,45.0,111,46,31,0.0,16488,0.0,0.0,0.0,465.0,2.0,5.0,1.0,3.0,1.8,1729.832822127644,0.0,0.0,70458.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39143.333333333336,5,0,5,5_0 +5118,0.0,0.0,78.0,111,74,70,0.0,16489,0.0,0.0,0.0,89.0,0.0,1.0,0.0,1.0,1.0,4068.9541777354766,0.0,0.0,12722.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12722.0,1,0,1_1,1_0 +5119,0.0,7.0,63.0,111,78,71,0.0,1649,0.0,0.0,0.0,550.0,0.0,3.0,0.0,1.0,1.0,5575.114681143738,0.0,0.0,13050.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13050.0,1,0,1_0,1_0 +5120,0.0,0.0,45.0,111,34,30,0.0,16490,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,668.7125085122767,1723.28,0.0,33130.0,1,2,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20706.25,3,0,3_0,3_0 +5121,0.0,0.0,28.0,300,52,43,0.0,16491,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3073.605989478028,0.0,0.0,15843.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,15843.0,2,0,2_1,2_1 +5122,0.0,0.0,80.0,112,78,70,0.0,16492,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3420.1056660099052,783.12,0.0,11329.0,5,4,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11329.0,1,0,1_0,1_1 +5123,0.0,0.0,51.0,300,52,50,0.0,16493,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2634.137863221785,0.0,0.0,10730.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10730.0,1,0,1_0,1_1 +5124,0.0,0.0,69.0,111,75,50,0.0,16495,0.0,0.0,0.0,558.0,0.0,4.0,0.0,2.0,1.5,2607.477064810774,2603.12,0.0,24339.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16226.0,2,0,2_0,2_0 +5125,0.0,0.0,35.0,111,56,71,0.0,16498,0.0,0.0,0.0,25.0,2.0,4.0,2.0,4.0,2.3,4659.46292209198,1300.0,0.0,20019.0,4,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8703.913043478262,1,0,1_1,1_0 +5126,0.0,0.0,24.0,111,52,43,0.0,16499,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2938.4187144032144,0.0,0.0,24851.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24851.0,4,0,4_0,4_0 +5127,6.0,6.0,42.0,211,85,71,0.0,1650,0.0,99999.0,99999.0,0.0,2.0,6.0,8.0,10.0,4.7,555.2844459439813,4160.0,0.0,51888.0,6,3,2,3.0,5,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,11040.0,1,0,1_1,1_0 +5128,0.0,0.0,62.0,112,74,50,0.0,16500,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1636.8121051351654,2277.08,0.0,26488.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17658.666666666668,2,0,2_0,2_1 +5129,0.0,0.0,61.0,221,46,12,0.0,16501,0.0,0.0,0.0,0.0,1.0,8.0,0.0,1.0,1.0,3300.113289050684,1907.36,0.0,66678.0,1,1,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,66678.0,5,0,5,5_0 +5130,0.0,0.0,84.0,300,74,41,0.0,16502,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2182.12082931686,0.0,0.0,34231.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22820.666666666668,3,0,3_0,3_1 +5131,0.0,0.0,46.0,221,85,71,0.0,16503,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,658.0494257432196,1040.0,0.0,11060.0,4,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,7373.333333333333,1,0,1_1,1_0 +5132,0.0,0.0,32.0,120,22,50,0.0,16505,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4238.17039558632,0.0,0.0,13410.0,1,3,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13410.0,1,0,1_0,1_0 +5133,0.0,0.0,21.0,111,84,41,0.0,16507,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3392.848501344154,0.0,0.0,3929.0,3,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,3929.0,1,0,1_0,1_0 +5134,0.0,0.0,70.0,111,86,71,0.0,16508,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1568.0500538879633,0.0,0.0,12472.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12472.0,1,0,1_1,1_0 +5135,0.0,0.0,64.0,112,72,41,0.0,16509,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2661.5459719867654,0.0,0.0,27641.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18427.333333333332,2,0,2_0,2_1 +5136,0.0,0.0,56.0,111,62,20,0.0,1651,0.0,0.0,0.0,390.0,2.0,4.0,0.0,2.0,1.5,4014.2091012946107,1040.0,0.0,22655.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15103.333333333334,2,0,2_0,2_0 +5137,0.0,0.0,55.0,120,34,20,0.0,16510,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1659.802713825052,0.0,0.0,45057.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30038.0,4,0,4_0,4_1 +5138,0.0,0.0,34.0,300,85,50,0.0,16511,0.0,0.0,0.0,0.0,0.0,3.0,4.0,5.0,2.2,244.2293172583845,2704.0,0.0,20432.0,6,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9287.272727272726,1,0,1_1,1_1 +5139,0.0,0.0,33.0,111,45,60,0.0,16512,0.0,0.0,0.0,875.0,2.0,5.0,2.0,4.0,2.1,2859.6197857866123,3692.52,0.0,46102.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21953.333333333332,3,0,3_0,3_0 +5140,0.0,0.0,33.0,111,47,20,0.0,16513,0.0,0.0,0.0,308.0,1.0,2.0,0.0,1.0,1.0,3392.442615584708,0.0,0.0,19200.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19200.0,3,0,3_1,3_0 +5141,0.0,0.0,52.0,111,42,31,0.0,16514,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2331.1038094231567,0.0,0.0,24310.0,1,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24310.0,4,0,4_0,4_0 +5142,0.0,0.0,22.0,300,52,50,0.0,16515,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2273.9840371167325,2132.0,0.0,34310.0,1,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22873.333333333332,3,0,3_0,3_1 +5143,0.0,0.0,79.0,111,78,71,0.0,16516,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4051.6299117194512,0.0,0.0,19692.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19692.0,3,0,3_0,3_0 +5144,0.0,0.0,64.0,300,78,70,0.0,16518,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2794.8591216220525,1560.0,0.0,21550.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14366.666666666666,2,0,2_0,2_1 +5145,0.0,0.0,62.0,112,78,50,0.0,16519,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3573.0981525418943,0.0,0.0,15500.0,5,1,8,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10333.333333333334,1,0,1_0,1_0 +5146,3.0,17.0,46.0,111,48,43,0.0,1652,0.0,0.0,45.0,390.0,2.0,4.0,1.0,3.0,2.0,2503.633404655289,0.0,0.0,43483.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21741.5,3,0,3_0,3_0 +5147,0.0,0.0,55.0,111,54,50,0.0,16523,0.0,0.0,0.0,826.0,1.0,2.0,0.0,1.0,1.0,3703.342523979541,0.0,0.0,35837.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35837.0,5,0,5,5_0 +5148,0.0,0.0,81.0,112,72,70,0.0,16524,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,2579.370570631053,0.0,0.0,23432.0,5,1,10,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15621.333333333334,2,0,2_0,2_0 +5149,0.0,0.0,30.0,111,85,31,0.0,16525,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2792.8995872467913,0.0,0.0,10652.0,8,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10652.0,1,0,1_1,1_0 +5150,0.0,0.0,35.0,111,63,71,0.0,16526,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2208.9537784568147,2204.28,0.0,21843.0,1,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10401.42857142857,1,0,1_0,1_0 +5151,0.0,0.0,52.0,111,22,31,0.0,16527,0.0,0.0,0.0,0.0,2.0,10.0,2.0,4.0,2.3,3154.0230492131786,6708.0,0.0,29030.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12621.739130434784,1,0,1_0,1_0 +5152,0.0,0.0,46.0,111,52,41,0.0,16528,0.0,0.0,0.0,439.0,2.0,4.0,2.0,3.0,2.0,1189.0911993386972,1812.72,0.0,30946.0,1,3,7,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15473.0,2,0,2_0,2_0 +5153,0.0,0.0,42.0,300,55,43,0.0,16529,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,295.94287351370036,1560.0,0.0,20336.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12710.0,1,0,1_1,1_1 +5154,1.0,1.0,62.0,400,75,50,1.0,1653,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1940.2174158600349,0.0,14095.0,24643.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16428.666666666668,2,0,2_0,2_1 +5155,0.0,0.0,44.0,221,55,71,0.0,16530,0.0,0.0,0.0,585.0,2.0,6.0,2.0,4.0,2.3,2525.4943834661817,0.0,0.0,38260.0,1,3,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16634.782608695652,2,0,2_0,2_0 +5156,0.0,0.0,85.0,111,78,70,0.0,16531,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2719.768033152916,1606.8,0.0,38893.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25928.666666666668,4,0,4_0,4_0 +5157,0.0,0.0,35.0,111,62,41,0.0,16532,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,2.9,625.9916836303502,0.0,0.0,69174.0,1,3,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23853.103448275862,4,0,4_0,4_0 +5158,0.0,0.0,61.0,111,74,50,0.0,16533,0.0,0.0,0.0,680.0,0.0,2.0,0.0,1.0,1.0,3129.2985581098164,0.0,0.0,19463.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19463.0,3,0,3_0,3_0 +5159,0.0,0.0,54.0,111,75,60,0.0,16534,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3464.728761440415,2156.96,0.0,40080.0,5,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26720.0,4,0,4_0,4_0 +5160,0.0,0.0,52.0,111,64,71,0.0,16537,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1897.4480226930186,0.0,0.0,27055.0,1,2,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18036.666666666668,2,0,2_0,2_0 +5161,0.0,0.0,37.0,111,54,12,0.0,16538,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3292.429803565126,1564.1599999999999,0.0,97195.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,53997.22222222222,5,0,5,5_0 +5162,0.0,0.0,42.0,111,68,71,0.0,1654,0.0,0.0,0.0,97.0,1.0,3.0,3.0,5.0,2.4,3639.022585709135,0.0,0.0,22960.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9566.666666666668,1,0,1_1,1_0 +5163,0.0,0.0,32.0,111,54,31,0.0,16540,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,4950.684487875325,0.0,0.0,29854.0,1,3,8,6.0,5,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,19902.666666666668,3,0,3_1,3_0 +5164,0.0,0.0,57.0,111,62,43,0.0,16541,0.0,0.0,0.0,518.0,2.0,4.0,4.0,6.0,3.3,1593.2956158211796,1560.0,0.0,35108.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10638.78787878788,1,0,1_1,1_0 +5165,0.0,0.0,50.0,111,46,44,0.0,16542,0.0,0.0,0.0,343.0,1.0,3.0,1.0,2.0,1.3,901.7659545952417,0.0,0.0,22930.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17638.46153846154,2,0,2_0,2_0 +5166,0.0,0.0,58.0,111,54,42,0.0,16543,0.0,0.0,0.0,0.0,3.0,4.0,2.0,3.0,2.0,1974.2422292912202,2355.6,0.0,47770.0,1,1,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23885.0,4,0,4_0,4_0 +5167,0.0,0.0,87.0,111,75,44,0.0,16545,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3147.2414805416092,0.0,0.0,12671.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12671.0,1,0,1_1,1_0 +5168,0.0,0.0,33.0,111,37,43,0.0,16546,0.0,0.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,3001.3848072023784,0.0,0.0,19088.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19088.0,3,0,3_0,3_0 +5169,0.0,0.0,32.0,112,85,60,0.0,16547,0.0,0.0,0.0,0.0,1.0,2.0,1.0,3.0,1.8,988.2223790725295,520.0,0.0,13994.0,7,3,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,7774.444444444444,1,0,1_1,1_0 +5170,0.0,0.0,30.0,111,52,42,0.0,16548,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1977.9601965042352,3124.6800000000003,0.0,46903.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31268.666666666668,4,0,4_0,4_0 +5171,0.0,0.0,56.0,111,53,50,0.0,1655,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1332.579037285904,2347.7999999999997,0.0,55027.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,36684.666666666664,5,0,5,5_0 +5172,0.0,0.0,85.0,111,75,70,0.0,16551,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4512.335884887072,1040.0,0.0,46430.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,46430.0,5,0,5,5_0 +5173,0.0,0.0,59.0,211,78,50,0.0,16552,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,736.9603355103272,2840.24,0.0,18871.0,4,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12580.666666666666,1,0,1_0,1_0 +5174,0.0,0.0,57.0,112,74,30,0.0,16554,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2298.504840096311,0.0,0.0,51900.0,5,1,7,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,34600.0,5,0,5,5_0 +5175,0.0,0.0,87.0,111,78,71,0.0,16555,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2301.3578041192413,0.0,0.0,29871.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19914.0,3,0,3_0,3_0 +5176,0.0,0.0,82.0,111,75,31,0.0,16557,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4230.342247362673,0.0,0.0,19598.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19598.0,3,0,3_0,3_0 +5177,0.0,0.0,60.0,112,37,31,0.0,16558,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1542.9250644418455,2085.2000000000003,0.0,39787.0,1,1,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,39787.0,5,0,5,5_0 +5178,0.0,0.0,54.0,111,78,71,0.0,16559,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2129.9958141567045,0.0,0.0,13353.0,7,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8902.0,1,0,1_1,1_0 +5179,15.0,20.0,25.0,111,54,30,0.0,1656,0.0,75.0,0.0,420.0,2.0,3.0,0.0,2.0,1.5,3684.2589245383106,2461.16,0.0,35467.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,23644.666666666668,3,0,3_1,3_0 +5180,0.0,0.0,58.0,111,31,10,0.0,16560,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2618.8417705654583,0.0,0.0,136569.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,68284.5,5,0,5,5_0 +5181,0.0,0.0,53.0,111,53,30,0.0,16562,0.0,0.0,0.0,146.0,1.0,6.0,6.0,8.0,3.9,2451.521093975057,0.0,0.0,38388.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9843.076923076924,1,0,1_1,1_0 +5182,0.0,0.0,55.0,111,34,10,0.0,16564,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,737.2978340261153,2808.0,0.0,106888.0,1,2,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,82221.53846153845,5,0,5,5_0 +5183,0.0,0.0,74.0,111,74,31,0.0,16565,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1930.879998073692,0.0,0.0,40670.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27113.333333333332,4,0,4_0,4_0 +5184,0.0,0.0,51.0,221,65,71,0.0,16566,0.0,0.0,0.0,133.0,1.0,4.0,0.0,1.0,1.0,877.4681841584319,0.0,0.0,15823.0,1,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15823.0,2,0,2_1,2_0 +5185,0.0,0.0,63.0,112,78,50,0.0,16568,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1990.7970784614731,0.0,0.0,24084.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16056.0,2,0,2_0,2_1 +5186,0.0,0.0,86.0,111,74,31,0.0,16569,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2530.4732568278196,0.0,0.0,30080.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30080.0,4,0,4_0,4_0 +5187,0.0,0.0,59.0,111,78,71,0.0,16570,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2309.275367659439,0.0,0.0,14668.0,7,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7334.0,1,0,1_1,1_0 +5188,0.0,0.0,60.0,111,78,60,0.0,16571,0.0,0.0,0.0,45.0,0.0,3.0,1.0,2.0,1.5,2986.7497255480807,520.0,0.0,12966.0,7,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8644.0,1,0,1_1,1_0 +5189,0.0,0.0,77.0,111,74,50,0.0,16572,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1943.1554370387344,0.0,0.0,40328.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26885.333333333332,4,0,4_0,4_0 +5190,0.0,0.0,49.0,221,68,71,0.0,16575,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,673.3030888127446,0.0,0.0,18987.0,1,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10548.333333333334,1,0,1_1,1_0 +5191,0.0,0.0,81.0,112,77,70,0.0,16576,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2931.5871451391085,1834.56,0.0,16343.0,5,1,8,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16343.0,2,0,2_0,2_0 +5192,0.0,0.0,32.0,120,85,31,0.0,16577,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,1.3,4503.3786234986155,2747.6800000000003,0.0,23570.0,4,2,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18130.76923076923,2,0,2_0,2_1 +5193,0.0,0.0,47.0,111,56,43,0.0,16578,0.0,0.0,0.0,219.0,2.0,4.0,3.0,4.0,2.3,623.3807717779354,1040.0,0.0,41998.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18260.0,2,0,2_1,2_0 +5194,0.0,0.0,42.0,112,52,71,0.0,16581,0.0,0.0,0.0,183.0,1.0,2.0,0.0,1.0,1.0,2301.736367093443,0.0,0.0,14674.0,1,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14674.0,2,0,2_0,2_0 +5195,0.0,0.0,68.0,112,77,70,0.0,16582,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3697.804318520147,0.0,0.0,29579.0,5,3,9,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19719.333333333332,3,0,3_0,3_0 +5196,0.0,0.0,58.0,111,37,41,0.0,16584,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2272.938411578205,3042.0,0.0,60266.0,1,2,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40177.333333333336,5,0,5,5_0 +5197,0.0,0.0,39.0,112,53,50,0.0,16585,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2052.249075593559,2132.0,0.0,42771.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20367.142857142855,3,0,3_0,3_1 +5198,0.0,0.0,50.0,111,43,20,0.0,16588,0.0,0.0,0.0,572.0,1.0,3.0,1.0,2.0,1.3,774.7776600908666,0.0,0.0,21538.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16567.69230769231,2,0,2_1,2_0 +5199,0.0,0.0,64.0,400,67,70,0.0,16589,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1345.3181382317648,1560.0,0.0,29140.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19426.666666666668,3,0,3_0,3_0 +5200,8.0,8.0,89.0,300,78,70,0.0,1659,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2517.5771957029588,1951.0400000000002,0.0,19907.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19907.0,3,0,3_0,3_1 +5201,0.0,0.0,48.0,112,63,50,0.0,16590,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,4500.510927191081,2860.0,0.0,52975.0,1,1,9,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35316.666666666664,5,0,5,5_1 +5202,0.0,0.0,71.0,111,72,70,0.0,16591,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3429.280933167285,2861.04,0.0,30620.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20413.333333333332,3,0,3_0,3_0 +5203,0.0,0.0,74.0,112,74,12,0.0,16592,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1893.9278258902818,0.0,0.0,100878.0,5,1,8,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,67252.0,5,0,5,5_0 +5204,0.0,0.0,36.0,300,54,31,0.0,16593,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1790.1474662371006,0.0,0.0,38781.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14915.76923076923,2,0,2_0,2_1 +5205,0.0,0.0,33.0,111,85,60,0.0,16595,0.0,0.0,0.0,0.0,0.0,6.0,4.0,5.0,2.4,637.2346274105024,2600.0,0.0,25617.0,6,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10673.75,1,0,1_1,1_0 +5206,0.0,0.0,45.0,111,56,71,0.0,16597,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3634.5402076598025,2080.52,0.0,28509.0,1,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13575.714285714284,1,0,1_1,1_0 +5207,0.0,0.0,36.0,112,38,30,0.0,16598,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1265.7216640395768,0.0,0.0,96886.0,1,3,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,46136.19047619047,5,0,5,5_0 +5208,0.0,0.0,41.0,211,48,50,0.0,16599,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3365.1515549748874,1040.0,0.0,9072.0,4,3,3,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9072.0,1,0,1_1,1_0 +5209,2.0,6.0,78.0,112,77,70,0.0,166,0.0,2600.0,0.0,78.0,0.0,3.0,1.0,2.0,1.5,2723.046476433052,0.0,0.0,15195.0,5,3,8,2.0,2,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,10130.0,1,0,1_1,1_0 +5210,0.0,0.0,56.0,300,78,50,0.0,16600,0.0,0.0,0.0,0.0,3.0,5.0,1.0,5.0,3.0,2542.268661362404,4680.0,0.0,56802.0,5,1,0,1.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18934.0,3,0,3_0,3_0 +5211,0.0,0.0,44.0,111,55,50,0.0,16602,0.0,0.0,0.0,164.0,1.0,4.0,2.0,3.0,1.8,587.0368326712191,0.0,0.0,25812.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14340.0,2,0,2_1,2_0 +5212,0.0,0.0,61.0,300,37,20,0.0,16603,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2365.8685577618885,0.0,0.0,90718.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,45359.0,5,0,5,5_1 +5213,0.0,0.0,47.0,111,37,31,0.0,16605,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,2055.6722726404964,0.0,0.0,83560.0,1,2,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,46422.22222222222,5,0,5,5_0 +5214,0.0,0.0,66.0,112,23,50,0.0,16607,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1576.5278372880105,0.0,0.0,105210.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,70140.0,5,0,5,5_1 +5215,0.0,0.0,86.0,120,86,71,0.0,16609,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1919.330744866761,0.0,0.0,15068.0,6,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,15068.0,2,0,2_1,2_1 +5216,3.0,13.0,45.0,111,52,50,0.0,1661,0.0,750.0,125.0,0.0,1.0,5.0,0.0,1.0,1.0,1685.7449917787173,2496.0,0.0,18544.0,1,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,18544.0,2,0,2_0,2_0 +5217,0.0,0.0,71.0,111,77,70,0.0,16610,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1558.7932307684525,1144.52,0.0,38911.0,5,1,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25940.666666666668,4,0,4_0,4_0 +5218,0.0,0.0,33.0,112,64,60,0.0,16612,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2328.440611439469,1040.0,0.0,29587.0,1,3,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12327.916666666668,1,0,1_1,1_1 +5219,0.0,0.0,68.0,111,74,30,0.0,16614,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2273.3452074208085,1755.52,0.0,19794.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19794.0,3,0,3_0,3_0 +5220,0.0,0.0,43.0,112,85,50,0.0,16615,0.0,0.0,0.0,0.0,0.0,5.0,4.0,5.0,2.6,658.5505143585605,1924.0,0.0,24405.0,6,2,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9386.538461538461,1,0,1_1,1_1 +5221,0.0,0.0,81.0,300,72,50,0.0,16617,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2240.1980302431075,0.0,0.0,15691.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15691.0,2,0,2_0,2_0 +5222,0.0,0.0,31.0,111,85,50,0.0,16618,0.0,0.0,0.0,306.0,0.0,4.0,3.0,4.0,1.9,886.142036687957,0.0,0.0,13220.0,6,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,6957.894736842106,1,0,1_0,1_0 +5223,0.0,0.0,30.0,111,65,71,0.0,16619,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2309.2936175146174,1560.0,0.0,52495.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29163.888888888887,4,0,4_0,4_0 +5224,9.0,24.0,31.0,111,63,71,0.0,1662,0.0,300.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,703.4783988502334,0.0,0.0,18670.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,14361.538461538461,2,0,2_1,2_0 +5225,0.0,0.0,58.0,112,46,60,0.0,16621,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2449.6176495820837,0.0,0.0,49876.0,1,1,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24938.0,4,0,4_0,4_1 +5226,0.0,0.0,64.0,120,75,31,0.0,16623,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1775.3959635477,1566.24,0.0,27153.0,5,1,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27153.0,4,0,4_0,4_0 +5227,0.0,0.0,55.0,111,45,41,0.0,16624,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,3013.566164177408,0.0,0.0,34640.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13856.0,1,0,1_0,1_0 +5228,0.0,0.0,48.0,112,65,44,0.0,16625,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,2198.560226333559,3273.92,0.0,59793.0,1,2,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21354.64285714286,3,0,3_0,3_0 +5229,0.0,0.0,44.0,111,55,42,0.0,16626,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1741.9587433081526,1304.1599999999999,0.0,20055.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10027.5,1,0,1_0,1_0 +5230,0.0,0.0,30.0,111,67,71,0.0,16627,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,683.9633735089636,0.0,0.0,20669.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12918.125,1,0,1_1,1_0 +5231,0.0,0.0,44.0,300,56,41,0.0,16628,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,1.8,867.4890502589247,2860.0,0.0,32237.0,1,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17909.444444444445,2,0,2_0,2_1 +5232,0.0,0.0,74.0,111,75,60,0.0,16629,0.0,0.0,0.0,230.0,1.0,5.0,2.0,4.0,2.3,667.2437551113518,0.0,0.0,38538.0,5,4,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16755.652173913044,2,0,2_1,2_0 +5233,3.0,3.0,41.0,111,21,43,0.0,1663,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2264.4239750024526,780.52,0.0,65042.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,30972.38095238095,4,0,4_0,4_0 +5234,0.0,0.0,60.0,112,75,42,0.0,16630,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,3854.431554501941,0.0,0.0,74902.0,5,2,10,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,37451.0,5,0,5,5_0 +5235,0.0,0.0,42.0,111,45,42,0.0,16631,0.0,0.0,0.0,517.0,2.0,4.0,1.0,3.0,1.8,2162.4504190760467,0.0,0.0,38653.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21473.888888888887,3,0,3_0,3_0 +5236,0.0,0.0,44.0,111,33,20,0.0,16633,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2780.7594480169532,0.0,0.0,80756.0,1,2,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28841.428571428572,4,0,4_0,4_0 +5237,0.0,0.0,69.0,111,74,30,0.0,16634,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1437.0972646070043,0.0,0.0,63442.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,42294.666666666664,5,0,5,5_0 +5238,0.0,0.0,90.0,111,86,71,0.0,16635,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,13160.42532713696,0.0,0.0,24789.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24789.0,4,0,4_0,4_0 +5239,0.0,0.0,77.0,111,77,70,0.0,16636,0.0,0.0,0.0,1210.0,0.0,2.0,0.0,1.0,1.0,4640.080953670883,0.0,0.0,15480.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15480.0,2,0,2_0,2_0 +5240,0.0,0.0,52.0,111,67,50,0.0,16638,0.0,0.0,0.0,809.0,1.0,4.0,2.0,3.0,1.8,720.2524503687755,3640.0,0.0,40478.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22487.777777777777,3,0,3_0,3_0 +5241,0.0,0.0,57.0,111,33,30,0.0,16639,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1749.9642318082017,2808.0,0.0,48551.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32367.333333333332,5,0,5,5_0 +5242,11.0,16.0,66.0,112,78,70,0.0,1664,0.0,200.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1566.5645202956011,1976.0,0.0,31289.0,5,1,5,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,20859.333333333332,3,0,3_0,3_1 +5243,0.0,0.0,28.0,111,84,20,0.0,16642,0.0,0.0,0.0,126.0,1.0,3.0,0.0,2.0,1.5,991.5525960443227,0.0,0.0,26659.0,3,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17772.666666666668,2,0,2_1,2_0 +5244,0.0,0.0,57.0,111,46,31,0.0,16643,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2035.6562220502235,3596.84,0.0,21760.0,1,4,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21760.0,3,0,3_0,3_0 +5245,0.0,0.0,38.0,111,55,42,0.0,16645,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1489.2634210330955,0.0,0.0,6700.0,4,4,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,5153.846153846153,1,0,1_0,1_0 +5246,0.0,0.0,72.0,400,78,70,0.0,16646,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1874.6164603584286,832.0,0.0,24767.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16511.333333333332,2,0,2_0,2_1 +5247,0.0,0.0,34.0,111,46,0,0.0,16647,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2995.70939161484,0.0,0.0,26810.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26810.0,4,0,4_0,4_0 +5248,0.0,0.0,76.0,112,74,41,0.0,16648,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2046.0138452459498,2919.7999999999997,0.0,60723.0,5,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,40482.0,5,0,5,5_1 +5249,0.0,0.0,49.0,400,62,50,0.0,16649,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1779.6733270475563,4737.72,0.0,40866.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16346.4,2,0,2_0,2_1 +5250,0.0,0.0,68.0,111,74,70,0.0,16651,0.0,0.0,0.0,543.0,1.0,2.0,0.0,2.0,1.5,2998.759744478049,0.0,0.0,39493.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26328.666666666668,4,0,4_0,4_0 +5251,0.0,0.0,66.0,111,77,50,0.0,16652,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1886.6387199211542,0.0,0.0,23853.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23853.0,4,0,4_0,4_0 +5252,0.0,0.0,70.0,111,46,41,0.0,16653,0.0,0.0,0.0,1724.0,1.0,4.0,0.0,1.0,1.0,3280.4965548923233,0.0,0.0,52926.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,52926.0,5,0,5,5_0 +5253,0.0,0.0,43.0,120,67,42,0.0,16654,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1915.1522151548843,1887.08,0.0,24240.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16160.0,2,0,2_0,2_1 +5254,0.0,0.0,63.0,111,21,42,0.0,16655,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2635.378192474431,0.0,0.0,72300.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,36150.0,5,0,5,5_0 +5255,0.0,0.0,70.0,111,22,12,0.0,16658,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2053.000387350336,780.0,0.0,80977.0,5,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,44987.22222222222,5,0,5,5_0 +5256,0.0,0.0,63.0,111,56,50,0.0,16659,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3373.5189204709363,0.0,0.0,9040.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9040.0,1,0,1_0,1_0 +5257,8.0,8.0,62.0,111,74,71,0.0,1666,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,5141.862957887636,0.0,0.0,65001.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,43334.0,5,0,5,5_0 +5258,0.0,0.0,45.0,111,63,60,0.0,16660,0.0,0.0,0.0,412.0,1.0,3.0,0.0,1.0,1.0,3241.606486916171,1897.4799999999998,0.0,21320.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21320.0,3,0,3_0,3_0 +5259,0.0,0.0,31.0,112,34,20,0.0,16661,0.0,0.0,0.0,530.0,1.0,4.0,1.0,2.0,1.3,497.58532237756936,2288.0,0.0,28475.0,1,3,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21903.846153846152,3,0,3_0,3_1 +5260,0.0,0.0,32.0,111,55,41,0.0,16663,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3027.734140005127,2766.4,0.0,46780.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22276.190476190477,3,0,3_0,3_0 +5261,0.0,0.0,43.0,111,64,71,0.0,16666,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3242.6831574222597,1040.0,0.0,36270.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17271.428571428572,2,0,2_0,2_0 +5262,0.0,0.0,63.0,120,74,60,0.0,16667,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1935.0619084851778,2236.52,0.0,48981.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32654.0,5,0,5,5_1 +5263,0.0,0.0,63.0,111,78,50,0.0,16669,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2021.8323211887835,0.0,0.0,43364.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28909.333333333332,4,0,4_0,4_0 +5264,0.0,0.0,35.0,111,52,41,0.0,1667,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1742.3122054272253,0.0,0.0,30677.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17042.777777777777,2,0,2_0,2_0 +5265,0.0,0.0,56.0,111,52,50,0.0,16670,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2342.983162657141,1040.0,0.0,50229.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33486.0,5,0,5,5_0 +5266,0.0,0.0,46.0,300,37,12,0.0,16672,0.0,0.0,0.0,0.0,1.0,9.0,3.0,4.0,2.1,172.9719392899623,2327.0,0.0,31014.0,1,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14768.571428571428,2,0,2_0,2_1 +5267,0.0,0.0,60.0,111,64,60,0.0,16673,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1985.8230889344613,2424.76,0.0,34880.0,1,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23253.333333333332,3,0,3_0,3_0 +5268,0.0,0.0,61.0,112,74,12,0.0,16674,0.0,0.0,0.0,0.0,0.0,11.0,0.0,2.0,1.5,1801.0753065489907,2852.72,0.0,48210.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32140.0,5,0,5,5_1 +5269,0.0,0.0,65.0,111,74,50,0.0,16675,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2332.3289010650888,0.0,0.0,32410.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32410.0,5,0,5,5_0 +5270,0.0,0.0,61.0,300,75,50,0.0,16676,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1988.725821134212,0.0,0.0,29551.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19700.666666666668,3,0,3_0,3_1 +5271,0.0,0.0,81.0,111,72,71,0.0,16677,0.0,0.0,0.0,202.0,0.0,3.0,0.0,1.0,1.0,5114.352958230086,0.0,0.0,13218.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13218.0,1,0,1_1,1_0 +5272,0.0,0.0,68.0,112,77,50,0.0,16678,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1642.4900293756918,0.0,0.0,15645.0,5,4,6,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15645.0,2,0,2_0,2_0 +5273,0.0,0.0,26.0,300,85,60,0.0,16679,0.0,0.0,0.0,123.0,0.0,1.0,0.0,1.0,1.0,4499.257003902511,0.0,0.0,11234.0,8,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11234.0,1,0,1_1,1_1 +5274,0.0,0.0,47.0,111,54,50,0.0,16681,0.0,0.0,0.0,0.0,2.0,4.0,3.0,4.0,2.5,925.9520626759279,4913.48,0.0,48835.0,4,2,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19534.0,3,0,3_0,3_0 +5275,0.0,0.0,56.0,112,46,50,0.0,16682,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2037.6543966718764,6734.0,0.0,73350.0,1,1,9,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,36675.0,5,0,5,5_0 +5276,0.0,0.0,47.0,112,52,70,0.0,16683,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1525.284401743357,1716.0,0.0,36330.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15795.652173913044,2,0,2_0,2_1 +5277,0.0,0.0,72.0,211,86,71,0.0,16684,0.0,0.0,0.0,150.0,0.0,2.0,0.0,1.0,1.0,1684.5293111500516,0.0,0.0,11498.0,6,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11498.0,1,0,1_1,1_0 +5278,0.0,0.0,55.0,111,33,20,0.0,16685,0.0,0.0,0.0,550.0,1.0,2.0,0.0,1.0,1.0,3388.647382612008,1763.8400000000001,0.0,62666.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,62666.0,5,0,5,5_0 +5279,0.0,0.0,63.0,111,75,33,0.0,16686,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3189.6139762636362,0.0,0.0,27160.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27160.0,4,0,4_0,4_0 +5280,0.0,0.0,27.0,111,47,31,0.0,16687,0.0,0.0,0.0,633.0,1.0,5.0,0.0,2.0,1.5,4108.67261856172,0.0,0.0,57623.0,1,3,8,6.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,38415.333333333336,5,0,5,5_0 +5281,0.0,0.0,60.0,111,75,60,0.0,16688,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2343.3424893626534,1825.2,0.0,47357.0,5,1,7,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31571.333333333332,4,0,4_0,4_0 +5282,0.0,0.0,37.0,211,62,44,0.0,16689,0.0,0.0,0.0,376.0,2.0,3.0,1.0,3.0,1.8,799.3007350029977,2080.0,0.0,24621.0,1,3,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13678.333333333332,1,0,1_0,1_0 +5283,0.0,0.0,81.0,111,78,71,0.0,1669,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2473.809503425869,0.0,0.0,31014.0,5,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15507.0,2,0,2_0,2_0 +5284,0.0,0.0,49.0,112,56,71,0.0,16690,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2189.330472464647,5212.48,0.0,42940.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28626.666666666668,4,0,4_0,4_1 +5285,0.0,0.0,62.0,111,74,44,0.0,16692,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2782.859393411718,2303.6,0.0,30808.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20538.666666666668,3,0,3_0,3_0 +5286,0.0,0.0,66.0,111,75,33,0.0,16693,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1816.7218133479523,2080.0,0.0,31342.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20894.666666666668,3,0,3_0,3_0 +5287,0.0,0.0,70.0,112,77,70,0.0,16697,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2748.5364760164002,2444.0,0.0,27444.0,5,1,10,2.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18296.0,2,0,2_0,2_0 +5288,0.0,0.0,59.0,111,63,70,0.0,16698,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2755.682795490325,0.0,0.0,13104.0,1,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13104.0,1,0,1_1,1_0 +5289,2.0,18.0,56.0,111,46,60,0.0,167,0.0,0.0,600.0,476.0,1.0,2.0,0.0,1.0,1.0,2603.266593791012,0.0,0.0,31810.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,31810.0,5,0,5,5_0 +5290,1.0,14.0,67.0,211,72,70,2.0,1670,0.0,0.0,80.0,0.0,0.0,6.0,0.0,2.0,1.5,1132.1752206591134,0.0,3000.0,24560.0,5,1,2,3.0,3,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,16373.333333333334,2,0,2_0,2_0 +5291,0.0,0.0,76.0,400,75,41,0.0,16700,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2180.277693556251,0.0,0.0,23696.0,5,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23696.0,3,0,3_0,3_0 +5292,0.0,0.0,49.0,111,55,41,0.0,16702,0.0,0.0,0.0,650.0,2.0,3.0,2.0,4.0,2.1,2388.4290677164577,442.0,0.0,26040.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12400.0,1,0,1_0,1_0 +5293,0.0,0.0,88.0,300,78,70,0.0,16703,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1997.2505786571273,0.0,0.0,19406.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12937.333333333334,1,0,1_0,1_1 +5294,0.0,0.0,35.0,111,68,43,0.0,16704,0.0,0.0,0.0,464.0,2.0,4.0,2.0,4.0,2.1,2410.604142724202,520.0,0.0,41073.0,1,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19558.571428571428,3,0,3_0,3_0 +5295,0.0,0.0,63.0,112,74,30,0.0,16706,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1443.2728574332423,2012.4,0.0,76061.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,50707.333333333336,5,0,5,5_1 +5296,0.0,0.0,47.0,111,43,33,0.0,16707,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1711.7035845970056,1959.36,0.0,45232.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22616.0,3,0,3_0,3_0 +5297,0.0,0.0,80.0,111,74,41,0.0,16708,0.0,0.0,0.0,320.0,0.0,3.0,0.0,2.0,1.5,3397.299639164,0.0,0.0,12361.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8240.666666666666,1,0,1_0,1_0 +5298,0.0,0.0,64.0,111,74,41,0.0,16709,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2199.4334709081127,0.0,0.0,48718.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32478.666666666668,5,0,5,5_0 +5299,0.0,0.0,56.0,111,33,20,0.0,16711,0.0,0.0,0.0,0.0,1.0,8.0,3.0,5.0,3.0,1545.4511620542676,3635.3199999999997,0.0,87910.0,1,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29303.333333333332,4,0,4_0,4_0 +5300,0.0,0.0,88.0,222,78,70,0.0,16713,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1940.9264344905753,0.0,0.0,25209.0,5,4,1,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16806.0,2,0,2_0,2_1 +5301,0.0,0.0,74.0,111,78,71,0.0,16715,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2296.581270945217,785.1999999999999,0.0,32900.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21933.333333333332,3,0,3_0,3_0 +5302,0.0,0.0,70.0,111,74,30,0.0,16717,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1672.5928608310267,4746.04,0.0,72752.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,48501.333333333336,5,0,5,5_0 +5303,0.0,0.0,67.0,112,78,70,0.0,16718,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2321.8021833082807,0.0,0.0,19581.0,5,1,5,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13054.0,1,0,1_0,1_1 +5304,0.0,0.0,74.0,300,78,70,0.0,16719,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1681.6926064502013,1561.56,0.0,28970.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19313.333333333332,3,0,3_0,3_1 +5305,2.0,2.0,53.0,211,46,31,0.0,1672,0.0,530.0,0.0,0.0,2.0,9.0,0.0,2.0,1.5,691.6133544268783,0.0,0.0,109537.0,1,2,4,3.0,3,4.0,0.0,1.0,0,1,0,0,0,0,1.0,3.0,73024.66666666667,5,0,5,5_0 +5306,0.0,0.0,71.0,120,78,70,0.0,16721,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1619.254759501529,0.0,0.0,33469.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22312.666666666668,3,0,3_0,3_1 +5307,0.0,0.0,46.0,112,53,41,0.0,16724,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,3172.3111259537764,3540.6800000000003,0.0,52130.0,1,2,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,34753.333333333336,5,0,5,5_1 +5308,0.0,0.0,68.0,120,77,70,0.0,16725,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1706.404562150006,0.0,0.0,25182.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25182.0,4,0,4_0,4_0 +5309,0.0,0.0,25.0,111,52,50,0.0,16727,0.0,0.0,0.0,414.0,1.0,3.0,1.0,2.0,1.3,2919.2019914713533,0.0,0.0,16740.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12876.923076923076,1,0,1_0,1_0 +5310,0.0,0.0,69.0,300,75,60,0.0,16728,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1610.5050093480254,5019.04,0.0,38509.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25672.666666666668,4,0,4_0,4_1 +5311,0.0,0.0,85.0,111,77,50,0.0,16729,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3319.4040076070746,0.0,0.0,25714.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25714.0,4,0,4_0,4_0 +5312,2.0,15.0,61.0,112,34,30,0.0,1673,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1090.2845191867575,3351.4,0.0,70255.0,1,4,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,46836.666666666664,5,0,5,5_0 +5313,0.0,0.0,76.0,111,46,20,0.0,16730,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1670.1157979788975,1912.0400000000002,0.0,30264.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20176.0,3,0,3_0,3_0 +5314,0.0,0.0,22.0,111,56,60,0.0,16731,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3346.6602346793507,0.0,0.0,13834.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13834.0,1,0,1_1,1_0 +5315,0.0,0.0,71.0,111,78,50,0.0,16732,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1718.5093893087196,2600.0,0.0,18468.0,5,1,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18468.0,2,0,2_0,2_0 +5316,0.0,0.0,77.0,120,78,50,0.0,16735,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2120.0815710279007,3640.0,0.0,26593.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,17728.666666666668,2,0,2_1,2_1 +5317,0.0,0.0,24.0,112,63,44,0.0,16736,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2573.344339340919,0.0,0.0,35635.0,1,3,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23756.666666666668,3,0,3_0,3_1 +5318,0.0,0.0,43.0,111,62,50,0.0,16737,0.0,0.0,0.0,261.0,1.0,2.0,0.0,1.0,1.0,3164.2913710921594,2600.0,0.0,22500.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22500.0,3,0,3_0,3_0 +5319,0.0,0.0,68.0,211,78,71,0.0,16739,0.0,0.0,0.0,295.0,0.0,4.0,0.0,1.0,1.0,1845.11546532346,0.0,0.0,12520.0,5,3,2,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12520.0,1,0,1_1,1_0 +5320,1.0,1.0,29.0,111,46,31,0.0,1674,0.0,0.0,99999.0,0.0,2.0,2.0,1.0,3.0,1.8,4427.507787760272,3588.0,0.0,52157.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,28976.11111111111,4,0,4_0,4_0 +5321,0.0,0.0,45.0,111,35,12,0.0,16740,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2371.7356951797397,1567.8,0.0,125018.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,59532.38095238095,5,0,5,5_0 +5322,0.0,0.0,63.0,111,75,50,0.0,16742,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2222.932245101174,0.0,0.0,33640.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22426.666666666668,3,0,3_0,3_0 +5323,0.0,0.0,81.0,112,75,31,0.0,16743,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2111.1260111172487,0.0,0.0,29190.0,5,1,4,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19460.0,3,0,3_0,3_1 +5324,0.0,0.0,62.0,111,63,50,0.0,16748,0.0,0.0,0.0,229.0,1.0,3.0,1.0,2.0,1.5,2460.782382298189,0.0,0.0,18132.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12088.0,1,0,1_0,1_0 +5325,0.0,0.0,57.0,112,48,44,0.0,16749,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2854.976645839868,3432.0,0.0,24971.0,1,2,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24971.0,4,0,4_0,4_0 +5326,0.0,0.0,42.0,120,22,50,0.0,16750,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2603.1149663451306,0.0,0.0,32739.0,1,3,0,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,20461.875,3,0,3_1,3_0 +5327,0.0,0.0,57.0,111,56,71,0.0,16752,0.0,0.0,0.0,297.0,1.0,2.0,0.0,1.0,1.0,4986.879805884832,0.0,0.0,14014.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14014.0,2,0,2_1,2_0 +5328,0.0,0.0,31.0,112,46,31,0.0,16753,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2474.414221259551,3837.0800000000004,0.0,59114.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32841.11111111111,5,0,5,5_1 +5329,0.0,0.0,61.0,300,78,50,0.0,16755,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1999.4859878468533,0.0,0.0,39684.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26456.0,4,0,4_0,4_1 +5330,0.0,0.0,60.0,211,78,70,0.0,16756,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1363.935905682559,0.0,0.0,29844.0,5,1,3,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19896.0,3,0,3_0,3_0 +5331,0.0,0.0,73.0,112,75,42,0.0,16759,0.0,0.0,0.0,463.0,0.0,4.0,0.0,1.0,1.0,2058.688605003213,0.0,0.0,21720.0,5,3,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21720.0,3,0,3_0,3_0 +5332,20.0,20.0,46.0,300,53,50,0.0,1676,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1663.1979345880595,2849.6,0.0,25153.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,10936.08695652174,1,0,1_1,1_1 +5333,0.0,0.0,57.0,112,37,60,0.0,16760,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2516.741773772733,0.0,0.0,86273.0,1,1,10,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,57515.333333333336,5,0,5,5_0 +5334,0.0,0.0,90.0,111,77,44,0.0,16761,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2373.141260518144,0.0,0.0,18077.0,5,4,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18077.0,2,0,2_0,2_0 +5335,0.0,0.0,54.0,112,46,50,0.0,16762,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,853.0280883722742,0.0,0.0,19260.0,1,2,8,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14815.384615384615,2,0,2_1,2_0 +5336,0.0,0.0,47.0,300,45,42,0.0,16763,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,627.4267203874027,2446.6,0.0,21219.0,1,2,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14146.0,2,0,2_1,2_1 +5337,0.0,0.0,38.0,111,48,31,0.0,16764,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,561.0086912464244,4064.3199999999997,0.0,48928.0,1,2,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32618.666666666668,5,0,5,5_0 +5338,0.0,0.0,37.0,120,52,50,0.0,16767,0.0,0.0,0.0,228.0,1.0,3.0,1.0,2.0,1.3,872.2533977223546,0.0,0.0,20501.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,15770.0,2,0,2_1,2_1 +5339,0.0,0.0,47.0,400,63,50,0.0,16769,0.0,0.0,0.0,183.0,1.0,3.0,1.0,2.0,1.3,831.2754947804453,0.0,0.0,22159.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,17045.384615384613,2,0,2_1,2_1 +5340,1.0,16.0,27.0,111,46,20,0.0,1677,0.0,0.0,0.0,625.0,1.0,1.0,0.0,1.0,1.0,6565.984418171833,0.0,0.0,30012.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30012.0,4,0,4_0,4_0 +5341,0.0,0.0,23.0,111,34,41,0.0,16771,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,754.3621912453181,0.0,0.0,99190.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,43126.08695652174,5,0,5,5_0 +5342,0.0,0.0,43.0,111,46,50,0.0,16774,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,2008.6139228310817,0.0,0.0,57487.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22110.384615384613,3,0,3_0,3_0 +5343,0.0,0.0,35.0,111,38,10,0.0,16776,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1905.5006487364994,4867.200000000001,0.0,51613.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21505.416666666668,3,0,3_0,3_0 +5344,0.0,0.0,38.0,112,43,44,0.0,16777,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2170.0687858604906,3224.0,0.0,43238.0,1,1,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20589.52380952381,3,0,3_0,3_0 +5345,0.0,0.0,57.0,400,75,50,0.0,16778,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2150.4078132000855,5532.799999999999,0.0,32792.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21861.333333333332,3,0,3_0,3_1 +5346,0.0,0.0,35.0,111,54,43,0.0,16779,0.0,0.0,0.0,394.0,1.0,4.0,2.0,3.0,1.6,902.994205678446,0.0,0.0,28078.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17548.75,2,0,2_1,2_0 +5347,0.0,0.0,44.0,111,34,30,0.0,16780,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,631.8934088288884,0.0,0.0,60520.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23276.923076923074,3,0,3_0,3_0 +5348,0.0,0.0,54.0,111,54,33,0.0,16781,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2207.0397014700316,0.0,0.0,18386.0,1,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18386.0,2,0,2_0,2_0 +5349,0.0,0.0,48.0,111,38,30,0.0,16782,0.0,0.0,0.0,998.0,3.0,5.0,3.0,6.0,3.3,1057.1344435383025,0.0,0.0,97254.0,1,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,29470.909090909092,4,0,4_1,4_0 +5350,0.0,0.0,59.0,112,75,60,0.0,16783,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2124.678461707236,0.0,0.0,45423.0,5,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30282.0,4,0,4_0,4_1 +5351,0.0,0.0,19.0,111,84,43,0.0,16785,0.0,0.0,0.0,258.0,0.0,2.0,0.0,1.0,1.0,3047.4420608212663,0.0,0.0,6960.0,3,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,6960.0,1,0,1_1,1_0 +5352,0.0,0.0,38.0,111,45,41,0.0,16786,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,4206.271810520564,0.0,0.0,29485.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18428.125,2,0,2_0,2_0 +5353,0.0,0.0,53.0,111,62,43,0.0,16787,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1413.7845022447166,2322.3199999999997,0.0,33450.0,1,1,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16725.0,2,0,2_0,2_0 +5354,0.0,0.0,67.0,111,77,71,0.0,16788,0.0,0.0,0.0,420.0,0.0,4.0,0.0,2.0,1.5,3493.7984322992656,0.0,0.0,31585.0,5,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21056.666666666668,3,0,3_0,3_0 +5355,0.0,0.0,44.0,211,42,20,0.0,16791,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,1019.4451216265622,0.0,0.0,47804.0,1,2,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26557.777777777777,4,0,4_0,4_0 +5356,0.0,0.0,41.0,111,48,42,0.0,16792,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2105.4313100361583,3640.0,0.0,55097.0,1,2,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26236.666666666664,4,0,4_0,4_0 +5357,0.0,0.0,56.0,111,46,50,0.0,16793,0.0,0.0,0.0,316.0,4.0,3.0,2.0,4.0,2.5,3441.8572464501262,2106.0,0.0,63646.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25458.4,4,0,4_0,4_0 +5358,0.0,0.0,29.0,111,43,31,0.0,16794,0.0,0.0,0.0,780.0,2.0,3.0,0.0,2.0,1.5,3052.7781923717343,0.0,0.0,41307.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27538.0,4,0,4_0,4_0 +5359,0.0,0.0,62.0,120,75,70,0.0,16795,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2324.8835069883726,0.0,0.0,22768.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22768.0,3,0,3_0,3_0 +5360,0.0,0.0,29.0,111,45,31,0.0,16796,0.0,0.0,0.0,498.0,1.0,2.0,0.0,1.0,1.0,1687.6583430229716,2548.0,0.0,21413.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21413.0,3,0,3_0,3_0 +5361,0.0,0.0,61.0,112,78,50,0.0,16798,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4265.800185808924,0.0,0.0,14918.0,5,1,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14918.0,2,0,2_0,2_0 +5362,0.0,0.0,67.0,112,74,12,0.0,16799,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1695.6304145101915,2916.16,0.0,73967.0,5,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,49311.333333333336,5,0,5,5_1 +5363,8.0,8.0,43.0,112,85,50,0.0,168,0.0,250.0,50.0,305.0,1.0,4.0,2.0,4.0,2.5,1237.4376315396419,0.0,0.0,23470.0,7,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,9388.0,1,0,1_1,1_1 +5364,0.0,0.0,82.0,300,78,70,0.0,16800,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2963.338397647239,0.0,0.0,22727.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22727.0,3,0,3_0,3_1 +5365,0.0,0.0,55.0,111,31,30,0.0,16801,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.8,2236.329260817733,5312.84,0.0,82423.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29436.785714285717,4,0,4_0,4_0 +5366,0.0,0.0,57.0,112,34,20,0.0,16803,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,3.0,1667.5689223013446,3264.56,0.0,55714.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18571.333333333332,2,0,2_0,2_1 +5367,0.0,0.0,63.0,112,75,50,0.0,16804,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1922.8861240174751,0.0,0.0,46572.0,5,1,7,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31048.0,4,0,4_0,4_0 +5368,0.0,0.0,36.0,112,37,12,0.0,16806,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,673.0709644782606,0.0,0.0,73793.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35139.52380952381,5,0,5,5_1 +5369,0.0,0.0,29.0,120,62,43,0.0,16807,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3996.5444909293296,0.0,0.0,29461.0,1,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19640.666666666668,3,0,3_0,3_1 +5370,0.0,0.0,41.0,111,21,71,0.0,16808,0.0,0.0,0.0,350.0,1.0,5.0,1.0,3.0,2.0,3837.499437965483,1903.72,0.0,25915.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12957.5,1,0,1_0,1_0 +5371,0.0,0.0,78.0,400,78,70,0.0,16810,0.0,0.0,0.0,314.0,0.0,4.0,0.0,1.0,1.0,3490.8064870907065,0.0,0.0,16161.0,5,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16161.0,2,0,2_0,2_0 +5372,0.0,0.0,35.0,111,85,50,0.0,16812,0.0,0.0,0.0,134.0,0.0,4.0,4.0,5.0,2.2,971.7994057042077,0.0,0.0,26908.0,6,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12230.90909090909,1,0,1_1,1_0 +5373,0.0,0.0,43.0,112,54,31,0.0,16814,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,520.6325795670527,0.0,0.0,34580.0,1,2,9,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26600.0,4,0,4_0,4_1 +5374,0.0,0.0,37.0,111,52,42,0.0,16815,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1880.8002016195596,1730.0400000000002,0.0,20350.0,1,2,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20350.0,3,0,3_0,3_0 +5375,0.0,0.0,75.0,111,78,71,0.0,16817,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3258.1281304738513,0.0,0.0,23830.0,5,4,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15886.666666666666,2,0,2_0,2_0 +5376,0.0,0.0,40.0,112,34,10,0.0,16818,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2420.898279693787,4528.68,0.0,71096.0,1,2,8,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,33855.23809523809,5,0,5,5_0 +5377,1.0,1.0,66.0,211,63,71,1.0,1682,0.0,200.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1989.5707226300674,2642.64,11500.0,32152.0,5,1,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21434.666666666668,3,0,3_0,3_0 +5378,0.0,0.0,44.0,111,68,50,0.0,16820,0.0,0.0,0.0,307.0,1.0,2.0,0.0,1.0,1.0,1914.5726270046146,1560.0,0.0,17290.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17290.0,2,0,2_0,2_0 +5379,0.0,0.0,47.0,111,56,71,0.0,16821,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1325.6922400238059,0.0,0.0,13006.0,4,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8670.666666666666,1,0,1_1,1_0 +5380,0.0,0.0,57.0,111,37,30,0.0,16822,0.0,0.0,0.0,616.0,4.0,3.0,2.0,4.0,2.5,6611.352070350638,728.0,0.0,24767.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9906.8,1,0,1_0,1_0 +5381,0.0,0.0,57.0,120,21,71,0.0,16823,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2123.17853783764,2080.0,0.0,16290.0,4,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8145.0,1,0,1_0,1_1 +5382,0.0,0.0,81.0,112,77,71,0.0,16824,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3282.0659474688246,0.0,0.0,17226.0,5,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17226.0,2,0,2_0,2_1 +5383,0.0,0.0,37.0,111,38,10,0.0,16826,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2149.8867248792644,5331.04,0.0,61526.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29298.095238095237,4,0,4_0,4_0 +5384,0.0,0.0,31.0,111,52,50,0.0,16827,0.0,0.0,0.0,70.0,1.0,3.0,3.0,4.0,1.9,751.8525429806901,0.0,0.0,25100.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13210.526315789475,1,0,1_1,1_0 +5385,0.0,0.0,46.0,111,56,41,0.0,16829,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,920.5241781698212,0.0,0.0,18400.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12266.666666666666,1,0,1_1,1_0 +5386,0.0,0.0,78.0,111,72,44,0.0,1683,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2493.761638399153,0.0,0.0,21594.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21594.0,3,0,3_0,3_0 +5387,0.0,0.0,61.0,300,52,31,0.0,16832,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1932.710474583538,1507.48,0.0,22697.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22697.0,3,0,3_0,3_1 +5388,0.0,0.0,63.0,111,78,42,0.0,16834,0.0,0.0,0.0,119.0,0.0,3.0,0.0,1.0,1.0,2951.3764833478494,0.0,0.0,12834.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12834.0,1,0,1_1,1_0 +5389,0.0,0.0,75.0,111,21,30,0.0,16835,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4179.745756637874,0.0,0.0,9540.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,9540.0,1,0,1_0,1_0 +5390,0.0,0.0,33.0,111,37,12,0.0,16836,0.0,0.0,0.0,1420.0,2.0,3.0,2.0,4.0,2.1,5147.7724253257575,1560.0,0.0,103159.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,49123.33333333333,5,0,5,5_0 +5391,0.0,11.0,34.0,111,85,71,0.0,1684,0.0,490.0,0.0,0.0,0.0,4.0,5.0,6.0,2.9,748.4433327659523,0.0,0.0,30992.0,6,3,6,5.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,10686.896551724138,1,0,1_1,1_0 +5392,0.0,0.0,62.0,111,77,30,0.0,16840,0.0,0.0,0.0,30.0,0.0,3.0,0.0,1.0,1.0,3345.8766965906802,0.0,0.0,12497.0,5,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12497.0,1,0,1_1,1_0 +5393,0.0,0.0,40.0,111,68,60,0.0,16841,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.5,1020.4913359727353,1820.0,0.0,22250.0,4,3,7,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8900.0,1,0,1_1,1_0 +5394,0.0,0.0,61.0,120,13,50,0.0,16842,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1376.4616586529278,0.0,0.0,19776.0,1,1,0,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13184.0,1,0,1_0,1_0 +5395,0.0,0.0,71.0,112,74,50,0.0,16844,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2659.3587867827846,2012.4,0.0,61047.0,5,1,10,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40698.0,5,0,5,5_0 +5396,0.0,0.0,51.0,400,31,10,0.0,16846,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2490.9439239836543,7273.24,0.0,117888.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,58944.0,5,0,5,5_1 +5397,9.0,9.0,61.0,221,43,33,0.0,1685,0.0,0.0,350.0,0.0,1.0,4.0,0.0,1.0,1.0,1622.3970658527048,2536.56,0.0,14673.0,1,1,3,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,14673.0,2,0,2_0,2_0 +5398,0.0,0.0,81.0,111,74,20,0.0,16852,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4542.567024630066,2080.0,0.0,66152.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,44101.333333333336,5,0,5,5_0 +5399,0.0,0.0,85.0,300,86,71,0.0,16853,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1733.644280452488,0.0,0.0,28449.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18966.0,3,0,3_0,3_0 +5400,0.0,0.0,72.0,111,75,44,0.0,16854,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4836.945061318854,1820.0,0.0,53513.0,5,4,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,35675.333333333336,5,0,5,5_0 +5401,0.0,0.0,33.0,111,67,60,0.0,16856,0.0,0.0,0.0,607.0,2.0,2.0,0.0,2.0,1.5,5605.425940575061,0.0,0.0,27980.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18653.333333333332,2,0,2_0,2_0 +5402,0.0,0.0,36.0,111,37,0,0.0,16858,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2935.0900431956566,0.0,0.0,35100.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35100.0,5,0,5,5_0 +5403,2.0,2.0,52.0,300,47,50,0.0,1686,0.0,0.0,500.0,0.0,3.0,4.0,2.0,4.0,2.3,2187.690111188258,2418.0,0.0,41780.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18165.217391304348,2,0,2_0,2_1 +5404,0.0,0.0,48.0,112,52,50,0.0,16862,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,2.0,917.3003530390473,2069.6,0.0,27211.0,1,3,7,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13605.5,1,0,1_1,1_0 +5405,0.0,0.0,54.0,111,46,31,0.0,16863,0.0,0.0,0.0,334.0,1.0,2.0,0.0,1.0,1.0,3615.818466178249,1820.0,0.0,34432.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34432.0,5,0,5,5_0 +5406,0.0,0.0,58.0,111,55,44,0.0,16866,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2552.9600746927595,1040.0,0.0,1434.0,1,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,1434.0,1,0,1_0,1_0 +5407,0.0,0.0,73.0,112,74,44,0.0,16867,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1401.9758477438002,1560.0,0.0,47522.0,5,1,8,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31681.333333333332,4,0,4_0,4_0 +5408,0.0,0.0,70.0,300,77,70,0.0,16868,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1824.2798442574394,0.0,0.0,28136.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18757.333333333332,3,0,3_0,3_1 +5409,0.0,0.0,63.0,400,72,31,0.0,16869,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2331.157035321556,0.0,0.0,48813.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32542.0,5,0,5,5_1 +5410,2.0,2.0,50.0,112,43,33,1.0,1687,0.0,100059.0,99999.0,0.0,1.0,3.0,0.0,1.0,1.0,1835.3744959591284,899.0799999999999,13400.0,26951.0,1,2,8,2.0,1,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,26951.0,4,0,4_0,4_0 +5411,0.0,0.0,31.0,111,42,30,0.0,16870,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,4202.032242206378,0.0,0.0,19280.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10711.111111111111,1,0,1_0,1_0 +5412,0.0,0.0,75.0,112,74,50,0.0,16872,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1680.2628549790982,2557.88,0.0,15866.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15866.0,2,0,2_0,2_1 +5413,0.0,0.0,42.0,111,38,31,0.0,16874,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,4406.817625834065,2604.16,0.0,59949.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24978.75,4,0,4_0,4_0 +5414,0.0,0.0,40.0,212,52,41,0.0,16875,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1872.2841741680966,1069.64,0.0,20428.0,1,1,2,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20428.0,3,0,3_0,3_1 +5415,0.0,0.0,63.0,112,75,70,0.0,16876,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3178.031735828347,0.0,0.0,20801.0,5,2,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20801.0,3,0,3_0,3_1 +5416,0.0,0.0,76.0,211,78,70,0.0,16879,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2098.5940334893644,1560.0,0.0,28016.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18677.333333333332,2,0,2_0,2_0 +5417,2.0,3.0,42.0,111,52,50,0.0,1688,0.0,350.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1730.943453534881,0.0,0.0,44702.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,17880.8,2,0,2_0,2_0 +5418,0.0,0.0,50.0,111,52,50,0.0,16880,0.0,0.0,0.0,0.0,4.0,5.0,3.0,5.0,3.0,2847.7391596650527,2495.48,0.0,52760.0,1,1,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17586.666666666668,2,0,2_0,2_0 +5419,0.0,0.0,47.0,400,63,43,0.0,16881,0.0,0.0,0.0,315.0,1.0,3.0,0.0,1.0,1.0,3060.5366260204055,0.0,0.0,24665.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24665.0,4,0,4_0,4_1 +5420,0.0,0.0,34.0,111,54,31,0.0,16884,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1807.0655953969301,0.0,0.0,47932.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26628.888888888887,4,0,4_0,4_0 +5421,0.0,0.0,53.0,112,37,12,0.0,16886,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,2.0,1731.297351327647,0.0,0.0,128026.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,64013.0,5,0,5,5_1 +5422,0.0,0.0,70.0,112,74,12,0.0,16887,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2164.705015789275,0.0,0.0,50572.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,50572.0,5,0,5,5_0 +5423,0.0,0.0,27.0,111,47,20,0.0,16888,0.0,0.0,0.0,97.0,2.0,3.0,0.0,2.0,1.5,3249.4981599143634,1825.2,0.0,34253.0,1,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,22835.333333333332,3,0,3_1,3_0 +5424,0.0,0.0,32.0,111,65,60,0.0,16889,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,934.2205861405814,0.0,0.0,19282.0,4,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10712.222222222223,1,0,1_1,1_0 +5425,10.0,19.0,26.0,111,55,41,0.0,1689,0.0,100.0,0.0,144.0,1.0,1.0,0.0,1.0,1.0,4777.502048540914,0.0,0.0,12548.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,12548.0,1,0,1_1,1_0 +5426,0.0,0.0,57.0,111,48,41,0.0,16891,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2301.02496354319,3640.0,0.0,46386.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20167.826086956524,3,0,3_0,3_0 +5427,0.0,0.0,38.0,300,34,30,0.0,16893,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2540.554370632127,3129.36,0.0,53336.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35557.333333333336,5,0,5,5_1 +5428,0.0,0.0,45.0,112,52,50,0.0,16896,0.0,0.0,0.0,0.0,1.0,5.0,4.0,5.0,2.6,348.0555214896691,0.0,0.0,34750.0,1,2,10,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13365.384615384615,1,0,1_0,1_0 +5429,0.0,0.0,54.0,111,22,20,0.0,16897,0.0,0.0,0.0,0.0,1.0,12.0,2.0,4.0,2.3,2396.292506145865,5672.68,0.0,58967.0,4,1,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25637.826086956524,4,0,4_0,4_0 +5430,0.0,0.0,65.0,111,86,31,0.0,16898,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1953.4819180258378,0.0,0.0,15736.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15736.0,2,0,2_0,2_0 +5431,10.0,10.0,58.0,111,37,42,0.0,169,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1921.7836544793402,3250.0,0.0,106461.0,1,1,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,53230.5,5,0,5,5_0 +5432,2.0,2.0,51.0,111,54,30,0.0,1690,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,3429.282539846441,0.0,0.0,15250.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,11730.76923076923,1,0,1_0,1_0 +5433,0.0,0.0,48.0,111,56,50,0.0,16900,0.0,0.0,0.0,1.0,1.0,4.0,3.0,4.0,2.1,915.1466580858566,0.0,0.0,27556.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13121.904761904761,1,0,1_1,1_0 +5434,0.0,0.0,69.0,400,77,50,0.0,16901,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2274.3167066763826,0.0,0.0,19039.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19039.0,3,0,3_0,3_1 +5435,0.0,0.0,21.0,112,69,31,0.0,16902,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4311.005847833182,0.0,0.0,13724.0,2,3,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13724.0,1,0,1_1,1_0 +5436,0.0,0.0,54.0,111,31,20,0.0,16904,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2075.740415560677,10103.6,0.0,38085.0,1,1,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19042.5,3,0,3_0,3_0 +5437,0.0,0.0,42.0,111,52,50,0.0,16905,0.0,0.0,0.0,490.0,1.0,3.0,0.0,1.0,1.0,4261.297378627166,0.0,0.0,17260.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17260.0,2,0,2_0,2_0 +5438,0.0,0.0,43.0,111,55,50,0.0,16907,0.0,0.0,0.0,64.0,1.0,4.0,3.0,4.0,2.3,628.1266932172922,0.0,0.0,28100.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12217.391304347828,1,0,1_1,1_0 +5439,0.0,0.0,76.0,111,78,50,0.0,16908,0.0,0.0,0.0,535.0,0.0,3.0,0.0,2.0,1.5,1853.7590388938943,0.0,0.0,31598.0,5,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21065.333333333332,3,0,3_0,3_0 +5440,0.0,0.0,75.0,221,74,12,0.0,16909,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2998.824918643668,0.0,0.0,37486.0,5,4,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24990.666666666668,4,0,4_0,4_0 +5441,5.0,10.0,47.0,111,64,50,0.0,1691,0.0,140.0,0.0,568.0,2.0,3.0,0.0,2.0,1.5,3615.560121337105,4552.6,0.0,41658.0,1,3,7,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,27772.0,4,0,4_0,4_0 +5442,0.0,0.0,77.0,111,75,60,0.0,16912,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3324.9069076363867,0.0,0.0,37380.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37380.0,5,0,5,5_0 +5443,0.0,0.0,42.0,111,54,43,0.0,16913,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3186.2296618898927,0.0,0.0,23550.0,1,2,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23550.0,3,0,3_0,3_0 +5444,0.0,0.0,40.0,111,42,42,0.0,16916,0.0,0.0,0.0,327.0,1.0,3.0,2.0,3.0,1.6,848.9598038263009,0.0,0.0,18930.0,1,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11831.25,1,0,1_1,1_0 +5445,0.0,0.0,78.0,111,77,41,0.0,16918,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2139.6030230201127,0.0,0.0,38254.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38254.0,5,0,5,5_0 +5446,0.0,0.0,74.0,300,75,30,0.0,16919,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1479.7281751538208,0.0,0.0,56099.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,37399.333333333336,5,0,5,5_0 +5447,0.0,0.0,40.0,300,62,43,0.0,1692,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2327.2458784533073,0.0,0.0,18988.0,1,2,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18988.0,3,0,3_0,3_0 +5448,0.0,0.0,40.0,111,37,30,0.0,16920,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2686.7746946825814,0.0,0.0,37961.0,1,2,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37961.0,5,0,5,5_0 +5449,0.0,0.0,72.0,111,74,41,0.0,16922,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1604.8792637955673,0.0,0.0,34678.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23118.666666666668,3,0,3_0,3_0 +5450,0.0,0.0,56.0,300,38,60,0.0,16923,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1938.3126634816826,0.0,0.0,79227.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31690.8,4,0,4_0,4_1 +5451,0.0,0.0,59.0,111,46,50,0.0,16924,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1725.3375677362528,2881.84,0.0,82133.0,1,3,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,45629.444444444445,5,0,5,5_0 +5452,0.0,0.0,59.0,111,75,50,0.0,16925,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1761.1239970452173,0.0,0.0,12674.0,7,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8449.333333333334,1,0,1_0,1_0 +5453,0.0,0.0,60.0,112,47,30,0.0,16926,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1697.9719379271073,2409.16,0.0,86545.0,1,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,57696.666666666664,5,0,5,5_1 +5454,0.0,0.0,30.0,111,47,30,0.0,16927,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2271.8098977901345,3048.76,0.0,53086.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,35390.666666666664,5,0,5,5_0 +5455,0.0,0.0,83.0,400,72,41,0.0,16928,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2105.600160407639,3432.0,0.0,35513.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35513.0,5,0,5,5_1 +5456,0.0,0.0,83.0,111,77,20,0.0,16930,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,5384.556230961631,0.0,0.0,29351.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29351.0,4,0,4_0,4_0 +5457,0.0,0.0,61.0,111,77,41,0.0,16931,0.0,0.0,0.0,103.0,0.0,4.0,0.0,1.0,1.0,2548.9943158388382,0.0,0.0,14590.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14590.0,2,0,2_1,2_0 +5458,0.0,0.0,43.0,112,37,31,0.0,16933,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2199.005566539046,0.0,0.0,95198.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,45332.38095238095,5,0,5,5_1 +5459,0.0,0.0,62.0,111,78,71,0.0,16934,0.0,0.0,0.0,26.0,1.0,3.0,1.0,3.0,2.0,2810.366589054497,0.0,0.0,23986.0,5,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11993.0,1,0,1_1,1_0 +5460,0.0,0.0,39.0,111,23,43,0.0,16935,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2134.004131756903,0.0,0.0,40466.0,1,2,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22481.11111111111,3,0,3_0,3_0 +5461,0.0,0.0,49.0,111,56,41,0.0,16937,0.0,0.0,0.0,88.0,1.0,3.0,1.0,2.0,1.3,2152.1431167483747,0.0,0.0,19030.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14638.461538461537,2,0,2_1,2_0 +5462,3.0,3.0,54.0,112,21,42,0.0,1694,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2442.392018587851,2022.8,0.0,23208.0,1,2,9,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23208.0,3,0,3_0,3_1 +5463,0.0,0.0,82.0,111,72,44,0.0,16940,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1992.627631857797,0.0,0.0,43131.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28754.0,4,0,4_0,4_0 +5464,0.0,0.0,33.0,221,55,31,0.0,16941,0.0,0.0,0.0,740.0,2.0,3.0,1.0,3.0,1.8,4573.487632756739,2912.0,0.0,44583.0,1,3,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24768.333333333332,4,0,4_0,4_0 +5465,0.0,0.0,21.0,111,34,30,0.0,16942,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3540.4766987038747,0.0,0.0,6021.0,1,4,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,4014.0,1,0,1_0,1_0 +5466,0.0,0.0,52.0,112,52,71,0.0,16943,0.0,0.0,0.0,0.0,2.0,5.0,1.0,2.0,1.5,1886.5152205941831,0.0,0.0,31682.0,1,1,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21121.333333333332,3,0,3_0,3_1 +5467,0.0,0.0,39.0,112,85,44,0.0,16944,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,2363.2007397814455,0.0,0.0,57714.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32063.333333333332,5,0,5,5_1 +5468,0.0,0.0,81.0,111,74,12,0.0,16947,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2400.5237863174284,0.0,0.0,78441.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,52294.0,5,0,5,5_0 +5469,0.0,0.0,42.0,112,48,43,0.0,16949,0.0,0.0,0.0,301.0,2.0,5.0,2.0,4.0,2.1,1652.7435858859599,2600.0,0.0,88962.0,1,3,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,42362.85714285714,5,0,5,5_0 +5470,4.0,4.0,57.0,120,63,50,0.0,1695,0.0,199998.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2354.8341217831653,1040.0,0.0,25560.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17040.0,2,0,2_0,2_1 +5471,0.0,0.0,81.0,111,77,71,0.0,16950,0.0,0.0,0.0,453.0,0.0,2.0,0.0,1.0,1.0,3237.1069124906285,0.0,0.0,21540.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21540.0,3,0,3_0,3_0 +5472,0.0,0.0,72.0,111,75,30,0.0,16951,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1842.4696167587858,1505.92,0.0,20016.0,5,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20016.0,3,0,3_0,3_0 +5473,0.0,0.0,30.0,120,54,31,0.0,16952,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1851.1557121208607,1560.52,0.0,36800.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17523.809523809523,2,0,2_0,2_0 +5474,0.0,0.0,63.0,111,34,10,0.0,16954,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,3.3,1948.8773854438953,5226.0,0.0,124960.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,37866.66666666667,5,0,5,5_0 +5475,0.0,0.0,76.0,112,77,71,0.0,16955,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2990.532133244597,0.0,0.0,20807.0,5,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20807.0,3,0,3_0,3_1 +5476,0.0,0.0,62.0,112,75,50,0.0,16956,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3939.4583336398655,2080.52,0.0,25647.0,5,1,3,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25647.0,4,0,4_0,4_1 +5477,0.0,0.0,33.0,111,43,33,0.0,16957,0.0,0.0,0.0,900.0,2.0,4.0,2.0,4.0,2.1,3118.2387949544745,2080.0,0.0,59190.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28185.714285714286,4,0,4_0,4_0 +5478,0.0,0.0,60.0,111,74,33,0.0,16959,0.0,0.0,0.0,650.0,0.0,2.0,0.0,1.0,1.0,2507.6427282117506,0.0,0.0,10983.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10983.0,1,0,1_0,1_0 +5479,0.0,0.0,39.0,112,52,43,0.0,16960,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2132.9933896965476,0.0,0.0,22090.0,1,2,7,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22090.0,3,0,3_0,3_0 +5480,0.0,0.0,53.0,112,48,50,0.0,16961,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2082.175338252865,3024.84,0.0,57673.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32040.555555555555,5,0,5,5_1 +5481,0.0,0.0,32.0,111,33,20,0.0,16962,0.0,0.0,0.0,380.0,1.0,1.0,0.0,1.0,1.0,3095.3122929991555,0.0,0.0,54611.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,54611.0,5,0,5,5_0 +5482,0.0,0.0,48.0,112,53,42,0.0,16963,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1732.0613813784175,2600.0,0.0,68714.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29875.652173913048,4,0,4_0,4_1 +5483,0.0,0.0,55.0,120,37,50,0.0,16964,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1825.130321418262,1560.0,0.0,33400.0,1,2,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22266.666666666668,3,0,3_0,3_1 +5484,0.0,0.0,39.0,111,62,41,0.0,16965,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,2277.585774055759,2600.0,0.0,27527.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11469.583333333334,1,0,1_1,1_0 +5485,0.0,0.0,85.0,221,78,71,0.0,16967,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2680.8137402235407,0.0,0.0,17279.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17279.0,2,0,2_0,2_0 +5486,0.0,0.0,68.0,111,78,70,0.0,16968,0.0,0.0,0.0,550.0,0.0,2.0,0.0,2.0,1.5,2120.605632427535,0.0,0.0,30720.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20480.0,3,0,3_0,3_0 +5487,0.0,0.0,40.0,111,34,12,0.0,16969,0.0,0.0,0.0,720.0,1.0,4.0,2.0,3.0,1.6,797.3871494647581,1508.0,0.0,36633.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22895.625,3,0,3_0,3_0 +5488,0.0,0.0,47.0,112,62,50,0.0,16970,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.8,2075.7634128452855,7708.48,0.0,56670.0,1,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20239.285714285714,3,0,3_0,3_1 +5489,0.0,0.0,41.0,112,21,30,0.0,16972,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,3702.262361120298,0.0,0.0,51730.0,1,2,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24633.333333333332,4,0,4_0,4_0 +5490,0.0,0.0,77.0,111,75,70,0.0,16975,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1743.5264824317474,1809.6,0.0,39170.0,5,1,7,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26113.333333333332,4,0,4_0,4_0 +5491,0.0,0.0,70.0,112,75,50,0.0,16976,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1571.2963728710479,0.0,0.0,44289.0,5,1,9,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29526.0,4,0,4_0,4_0 +5492,0.0,0.0,65.0,211,78,50,0.0,16977,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1087.7989124634569,0.0,0.0,13007.0,5,3,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13007.0,1,0,1_1,1_0 +5493,0.0,0.0,71.0,221,71,50,0.0,16978,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1407.4726144723613,2600.0,0.0,23390.0,5,1,3,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15593.333333333334,2,0,2_0,2_0 +5494,0.0,0.0,31.0,111,67,44,0.0,1698,0.0,0.0,0.0,40.0,1.0,4.0,2.0,3.0,1.6,738.1386994229714,3380.0,0.0,12981.0,4,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8113.125,1,0,1_1,1_0 +5495,4.0,13.0,78.0,111,78,44,0.0,1699,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2274.1722495248614,1040.0,0.0,12707.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12707.0,1,0,1_0,1_0 +5496,0.0,13.0,79.0,300,77,70,0.0,17,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2156.3222245494717,0.0,0.0,25400.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16933.333333333332,2,0,2_0,2_0 +5497,19.0,19.0,31.0,111,55,60,0.0,170,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,4605.571725683448,0.0,0.0,15709.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,8727.222222222223,1,0,1_0,1_0 +5498,3.0,3.0,23.0,111,63,50,0.0,1703,0.0,0.0,0.0,440.0,1.0,1.0,0.0,1.0,1.0,4471.940104924491,0.0,0.0,18992.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18992.0,3,0,3_0,3_0 +5499,3.0,9.0,66.0,400,78,70,0.0,1704,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1892.7700505834055,2444.0,0.0,24037.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16024.666666666666,2,0,2_0,2_1 +5500,2.0,2.0,39.0,120,37,30,0.0,1705,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2810.7056977293973,0.0,0.0,46267.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25703.888888888887,4,0,4_0,4_1 +5501,8.0,18.0,60.0,111,78,71,0.0,1706,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3183.974674332935,0.0,0.0,32031.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21354.0,3,0,3_0,3_0 +5502,5.0,5.0,64.0,111,77,41,0.0,1707,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2978.1181749969405,231.40000000000003,0.0,34468.0,5,1,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22978.666666666668,3,0,3_0,3_0 +5503,0.0,0.0,42.0,300,21,20,0.0,1708,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2292.2416944940187,2703.48,0.0,27749.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13213.809523809523,1,0,1_0,1_1 +5504,7.0,11.0,74.0,211,75,71,0.0,1709,0.0,200.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,7121.397886040937,0.0,0.0,27047.0,5,1,2,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18031.333333333332,2,0,2_0,2_0 +5505,7.0,7.0,34.0,111,31,10,0.0,171,0.0,500.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2552.8260016867707,737.36,0.0,105498.0,1,2,9,7.0,3,4.0,1.0,0.0,0,0,0,1,0,0,0.0,4.0,70332.0,5,0,5,5_0 +5506,4.0,4.0,50.0,111,43,20,0.0,1710,0.0,100.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3073.290197325395,0.0,0.0,24518.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24518.0,4,0,4_0,4_0 +5507,11.0,11.0,83.0,111,75,41,0.0,1712,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2346.2624809791528,0.0,0.0,35350.0,5,3,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,35350.0,5,0,5,5_0 +5508,0.0,5.0,49.0,111,85,31,0.0,1713,0.0,645.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,1368.9241604265362,0.0,0.0,13944.0,4,1,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,10726.153846153846,1,0,1_0,1_0 +5509,6.0,15.0,69.0,111,75,50,0.0,1715,0.0,0.0,130.0,0.0,0.0,4.0,0.0,2.0,1.5,2415.083636826788,0.0,0.0,37797.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,25198.0,4,0,4_0,4_0 +5510,0.0,0.0,47.0,111,64,50,0.0,1716,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1808.6100081915579,3047.2000000000003,0.0,36503.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17382.38095238095,2,0,2_0,2_0 +5511,12.0,12.0,51.0,111,54,42,0.0,1717,0.0,99999.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2280.1515465473854,0.0,0.0,41526.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23070.0,3,0,3_0,3_0 +5512,2.0,4.0,33.0,112,55,31,0.0,1718,0.0,150.0,150.0,0.0,2.0,3.0,1.0,3.0,1.8,1382.952656890517,1092.0,0.0,44660.0,1,3,9,2.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,24811.11111111111,4,0,4_0,4_0 +5513,4.0,5.0,55.0,111,33,20,0.0,1719,0.0,700.0,0.0,0.0,2.0,6.0,3.0,5.0,3.0,1972.421394419245,3484.0,0.0,42603.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,14201.0,2,0,2_0,2_0 +5514,4.0,10.0,64.0,111,75,60,0.0,172,0.0,220.0,180.0,0.0,0.0,5.0,0.0,2.0,1.5,1534.1385186349537,3395.6,0.0,40363.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,26908.666666666668,4,0,4_0,4_0 +5515,0.0,0.0,39.0,111,37,30,0.0,1723,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,780.2773922769567,0.0,0.0,60502.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37813.75,5,0,5,5_0 +5516,0.0,0.0,28.0,112,22,30,0.0,1725,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,4582.113290542765,3931.7200000000003,0.0,48549.0,1,2,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32366.0,5,0,5,5_1 +5517,7.0,15.0,57.0,111,54,44,0.0,1726,0.0,800.0,60.0,0.0,2.0,6.0,0.0,2.0,1.5,1674.2934200874763,3018.08,0.0,54335.0,1,1,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,36223.333333333336,5,0,5,5_0 +5518,0.0,0.0,72.0,300,77,71,0.0,1727,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1866.2928924027726,0.0,0.0,47258.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31505.333333333332,4,0,4_0,4_1 +5519,6.0,10.0,73.0,111,74,30,0.0,1728,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2368.416477175473,5208.32,0.0,39960.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26640.0,4,0,4_0,4_0 +5520,4.0,4.0,60.0,120,67,71,0.0,1730,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1557.2873822269596,0.0,0.0,16920.0,1,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11280.0,1,0,1_0,1_0 +5521,8.0,8.0,38.0,111,67,71,0.0,1732,0.0,0.0,100.0,0.0,2.0,4.0,3.0,5.0,2.4,1370.019037794471,0.0,0.0,41794.0,1,3,4,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,2.0,0.0,17414.166666666668,2,0,2_1,2_0 +5522,18.0,18.0,56.0,111,52,50,0.0,1733,0.0,670.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1777.2889728509986,0.0,0.0,23151.0,1,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,23151.0,3,0,3_0,3_0 +5523,14.0,17.0,46.0,120,62,50,0.0,1734,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2348.121871686999,0.0,0.0,18589.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18589.0,2,0,2_0,2_1 +5524,0.0,0.0,35.0,112,62,71,0.0,1735,0.0,0.0,0.0,187.0,1.0,4.0,3.0,5.0,2.4,3381.607769299489,1092.0,0.0,31131.0,1,3,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12971.25,1,0,1_1,1_0 +5525,2.0,2.0,43.0,111,64,60,0.0,1738,0.0,0.0,0.0,455.0,2.0,3.0,2.0,4.0,2.1,2677.3690616553395,3380.0,0.0,41865.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,19935.714285714286,3,0,3_1,3_0 +5526,0.0,0.0,36.0,111,64,31,0.0,1739,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3564.212899677852,1040.0,0.0,12535.0,1,1,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12535.0,1,0,1_0,1_0 +5527,0.0,0.0,47.0,111,22,31,0.0,1740,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,865.5893249212143,0.0,0.0,9936.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6624.0,1,0,1_1,1_0 +5528,0.0,13.0,31.0,111,38,20,0.0,1741,0.0,0.0,0.0,593.0,2.0,3.0,0.0,2.0,1.5,4107.024581861732,1560.0,0.0,66340.0,1,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,44226.666666666664,5,0,5,5_0 +5529,0.0,0.0,61.0,112,75,70,0.0,1742,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1815.4739337158544,2340.0,0.0,22330.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14886.666666666666,2,0,2_0,2_1 +5530,0.0,0.0,45.0,112,31,20,0.0,1743,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2454.2766698736978,3328.0,0.0,74942.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,41634.444444444445,5,0,5,5_1 +5531,2.0,2.0,66.0,211,75,20,0.0,1745,0.0,210.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2254.794461346533,0.0,0.0,40043.0,5,2,2,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26695.333333333332,4,0,4_0,4_0 +5532,6.0,6.0,75.0,111,74,20,0.0,1746,0.0,20.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2086.726611277971,2600.52,0.0,99244.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,66162.66666666667,5,0,5,5_0 +5533,0.0,0.0,37.0,112,54,20,0.0,1747,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2907.1635354998025,6760.0,0.0,49200.0,1,1,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27333.333333333332,4,0,4_0,4_0 +5534,2.0,2.0,66.0,111,77,70,0.0,1749,0.0,300.0,0.0,0.0,2.0,3.0,0.0,3.0,2.0,3409.4805572257587,0.0,0.0,48601.0,5,1,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24300.5,4,0,4_0,4_0 +5535,0.0,0.0,51.0,111,55,43,0.0,175,0.0,0.0,0.0,0.0,3.0,4.0,3.0,5.0,3.0,2653.028402721554,0.0,0.0,62880.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,20960.0,3,0,3_1,3_0 +5536,10.0,10.0,77.0,221,75,70,0.0,1750,0.0,0.0,250.0,0.0,0.0,5.0,0.0,1.0,1.0,2664.454474831875,2562.04,0.0,27900.0,5,1,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,27900.0,4,0,4_0,4_0 +5537,0.0,0.0,71.0,400,77,50,0.0,1752,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1925.1890179870652,1924.52,0.0,13380.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13380.0,1,0,1_0,1_1 +5538,4.0,7.0,38.0,111,46,31,0.0,1753,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1744.8281117945294,0.0,0.0,28680.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,15933.333333333332,2,0,2_0,2_0 +5539,6.0,8.0,65.0,221,75,41,0.0,1755,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1638.4017253324437,0.0,0.0,46439.0,5,1,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,30959.333333333332,4,0,4_0,4_0 +5540,21.0,25.0,47.0,112,47,41,0.0,1757,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1662.776580626265,0.0,0.0,74720.0,1,2,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,35580.95238095238,5,0,5,5_0 +5541,0.0,0.0,54.0,112,37,31,0.0,1758,0.0,0.0,0.0,1032.0,2.0,3.0,1.0,2.0,1.5,1646.3387872491926,5200.0,0.0,74672.0,1,3,9,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,49781.333333333336,5,0,5,5_0 +5542,0.0,0.0,60.0,111,77,31,0.0,1759,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2972.2659387256376,0.0,0.0,50020.0,5,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25010.0,4,0,4_0,4_0 +5543,4.0,10.0,78.0,120,71,70,0.0,176,0.0,125.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1750.5700631177829,0.0,0.0,14010.0,5,1,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14010.0,2,0,2_0,2_0 +5544,3.0,26.0,51.0,111,52,50,0.0,1761,0.0,150.0,0.0,457.0,2.0,3.0,1.0,2.0,1.5,2371.938605617742,0.0,0.0,27109.0,1,3,10,8.0,2,4.0,1.0,0.0,0,0,0,0,1,0,0.0,4.0,18072.666666666668,2,0,2_0,2_0 +5545,4.0,4.0,44.0,111,45,30,0.0,1764,0.0,0.0,0.0,360.0,1.0,1.0,0.0,1.0,1.0,5645.912508171239,0.0,0.0,27272.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27272.0,4,0,4_0,4_0 +5546,3.0,11.0,43.0,112,53,31,0.0,1765,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3700.697065100175,5750.16,0.0,55762.0,1,2,9,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,30978.888888888887,4,0,4_0,4_0 +5547,2.0,6.0,37.0,111,52,60,0.0,1766,0.0,0.0,0.0,213.0,1.0,5.0,4.0,5.0,2.6,802.145978518734,1560.0,0.0,37756.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,14521.538461538461,2,0,2_1,2_0 +5548,5.0,5.0,82.0,112,72,44,0.0,1767,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2490.137132614105,3053.44,0.0,76100.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,50733.333333333336,5,0,5,5_0 +5549,0.0,0.0,67.0,300,69,50,0.0,1768,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2035.2851546640602,1560.0,0.0,26223.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17482.0,2,0,2_0,2_1 +5550,0.0,0.0,54.0,120,69,50,0.0,1769,0.0,0.0,0.0,0.0,4.0,5.0,2.0,4.0,2.5,1824.378537197935,3640.0,0.0,60804.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24321.6,4,0,4_0,4_1 +5551,5.0,5.0,40.0,300,43,33,0.0,177,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1731.4250168028175,520.0,0.0,52655.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21939.583333333336,3,0,3_0,3_1 +5552,0.0,0.0,34.0,111,45,41,0.0,1771,0.0,0.0,0.0,639.0,2.0,5.0,2.0,4.0,2.1,1707.2093578531467,0.0,0.0,47756.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,22740.95238095238,3,0,3_1,3_0 +5553,11.0,18.0,37.0,211,67,31,0.0,1775,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,622.7771518169059,1560.52,0.0,20264.0,1,3,2,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,12665.0,1,0,1_1,1_0 +5554,0.0,0.0,38.0,111,63,50,0.0,1776,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2561.9237969782544,0.0,0.0,50284.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33522.666666666664,5,0,5,5_0 +5555,0.0,26.0,57.0,111,52,50,2.0,178,0.0,0.0,0.0,651.0,3.0,4.0,1.0,3.0,2.0,2384.8029917863782,3709.16,1200.0,59811.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29905.5,4,0,4_0,4_0 +5556,19.0,19.0,53.0,111,45,31,0.0,1780,0.0,0.0,0.0,366.0,1.0,3.0,3.0,4.0,1.9,1336.7508340235984,0.0,0.0,36848.0,1,3,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,19393.684210526317,3,0,3_1,3_0 +5557,4.0,4.0,56.0,112,00,31,0.0,1781,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1420.8547835618172,2652.52,0.0,46230.0,1,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,46230.0,5,0,5,5_0 +5558,5.0,5.0,71.0,111,78,50,0.0,1782,0.0,600.0,0.0,380.0,0.0,2.0,0.0,1.0,1.0,2819.2338027532337,0.0,0.0,18258.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18258.0,2,0,2_0,2_0 +5559,1.0,5.0,57.0,111,34,20,0.0,1783,0.0,0.0,500.0,0.0,1.0,4.0,0.0,1.0,1.0,1561.5081643456656,2132.0,0.0,39318.0,1,1,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,39318.0,5,0,5,5_0 +5560,10.0,20.0,40.0,111,37,20,0.0,1784,0.0,0.0,500.0,0.0,2.0,4.0,2.0,4.0,2.1,3410.085622844008,0.0,0.0,82429.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,39251.90476190476,5,0,5,5_0 +5561,9.0,11.0,56.0,112,,71,0.0,1785,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1561.7932114415619,0.0,0.0,9680.0,8,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9680.0,1,0,1_0,1_1 +5562,0.0,0.0,55.0,112,54,42,0.0,1786,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1651.9280195410427,3569.2799999999997,0.0,40485.0,1,2,7,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17602.17391304348,2,0,2_0,2_0 +5563,6.0,7.0,57.0,111,77,71,0.0,1787,0.0,0.0,50.0,0.0,0.0,6.0,0.0,1.0,1.0,2291.481900864758,0.0,0.0,10650.0,6,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,10650.0,1,0,1_0,1_0 +5564,6.0,6.0,74.0,112,72,50,0.0,1788,0.0,500.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1639.5143820535852,0.0,0.0,19346.0,5,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,12897.333333333334,1,0,1_0,1_1 +5565,0.0,0.0,77.0,111,72,70,0.0,1789,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1476.0089006161234,0.0,0.0,28613.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19075.333333333332,3,0,3_0,3_0 +5566,0.0,0.0,81.0,111,72,60,0.0,179,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3059.3125417628594,0.0,0.0,47513.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31675.333333333332,4,0,4_0,4_0 +5567,4.0,6.0,37.0,112,53,30,0.0,1792,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1552.8362382790474,2756.0,0.0,56910.0,1,2,10,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,31616.666666666664,4,0,4_0,4_0 +5568,3.0,3.0,67.0,111,74,30,0.0,1793,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1776.3996361316429,2957.24,0.0,49601.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33067.333333333336,5,0,5,5_0 +5569,2.0,6.0,49.0,112,37,12,0.0,1794,0.0,0.0,0.0,0.0,2.0,10.0,4.0,6.0,3.1,1733.3624505431515,2184.0,0.0,84090.0,1,1,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27125.8064516129,4,0,4_0,4_1 +5570,7.0,7.0,37.0,300,55,50,0.0,1795,0.0,70.0,500.0,0.0,1.0,4.0,1.0,3.0,1.8,2853.303283099483,0.0,0.0,23090.0,1,3,0,1.0,4,2.0,1.0,1.0,0,1,0,0,0,1,1.0,1.0,12827.777777777777,1,0,1_1,1_0 +5571,3.0,3.0,56.0,120,34,30,0.0,1797,0.0,200.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1436.9687661422083,0.0,0.0,51858.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,34572.0,5,0,5,5_1 +5572,6.0,9.0,68.0,112,75,71,0.0,1798,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1944.740968929161,0.0,0.0,41515.0,5,1,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20757.5,3,0,3_0,3_0 +5573,9.0,10.0,45.0,112,21,43,0.0,18,0.0,0.0,30.0,0.0,1.0,5.0,3.0,5.0,2.8,2028.9885385804282,2496.0,0.0,61490.0,1,2,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21960.714285714286,3,0,3_0,3_1 +5574,18.0,18.0,67.0,112,69,50,0.0,180,0.0,0.0,0.0,550.0,1.0,4.0,0.0,2.0,1.5,1676.6216912052168,233.48000000000002,0.0,50198.0,1,3,8,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,33465.333333333336,5,0,5,5_0 +5575,0.0,0.0,44.0,221,21,71,0.0,1800,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2006.8604385780511,6091.8,0.0,33192.0,1,2,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13830.0,1,0,1_0,1_0 +5576,0.0,0.0,28.0,221,37,0,0.0,1801,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,7042.895987117947,2878.72,0.0,42811.0,1,4,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28540.666666666668,4,0,4_0,4_0 +5577,2.0,5.0,30.0,120,62,31,0.0,1802,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2369.688864212029,3965.52,0.0,57542.0,1,2,0,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,27400.952380952378,4,0,4_0,4_1 +5578,4.0,4.0,47.0,112,13,50,0.0,1803,0.0,75.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1611.7241685651065,1561.04,0.0,83627.0,1,1,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,29866.785714285717,4,0,4_0,4_1 +5579,7.0,7.0,32.0,112,46,44,0.0,1804,0.0,0.0,0.0,548.0,2.0,4.0,2.0,4.0,2.1,2587.7950494150286,2600.0,0.0,41210.0,1,3,9,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,3.0,1.0,19623.809523809523,3,0,3_0,3_1 +5580,4.0,10.0,48.0,112,67,50,0.0,1805,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1660.1437908316905,3380.0,0.0,58301.0,1,2,8,2.0,4,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,23320.4,3,0,3_0,3_0 +5581,0.0,0.0,63.0,112,71,70,0.0,1806,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1584.903678976976,0.0,0.0,24623.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16415.333333333332,2,0,2_0,2_1 +5582,8.0,8.0,82.0,111,77,70,0.0,1807,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2273.914968367125,0.0,0.0,29317.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29317.0,4,0,4_0,4_0 +5583,1.0,1.0,73.0,221,75,50,1.0,1808,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1491.194992828582,0.0,12000.0,41497.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27664.666666666668,4,0,4_0,4_0 +5584,0.0,10.0,37.0,300,54,43,0.0,181,0.0,225.0,255.0,0.0,2.0,4.0,1.0,3.0,1.8,2405.1194083510827,2080.0,0.0,25520.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,1,2.0,1.0,14177.777777777777,2,0,2_1,2_1 +5585,0.0,0.0,56.0,221,75,50,0.0,1810,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2462.36865496312,0.0,0.0,10745.0,7,4,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10745.0,1,0,1_0,1_0 +5586,0.0,0.0,22.0,111,67,71,0.0,1811,0.0,0.0,0.0,550.0,2.0,2.0,0.0,2.0,1.5,6595.724636787722,3640.0,0.0,41668.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27778.666666666668,4,0,4_0,4_0 +5587,10.0,10.0,32.0,111,38,20,0.0,1812,0.0,0.0,0.0,1200.0,2.0,2.0,1.0,3.0,1.8,5470.246154625784,0.0,0.0,91124.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,50624.444444444445,5,0,5,5_0 +5588,2.0,7.0,56.0,112,35,41,0.0,1814,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1859.1254736635615,2869.36,0.0,50.0,1,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,33.333333333333336,1,0,1_0,1_1 +5589,8.0,18.0,65.0,112,75,50,0.0,1815,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,1987.6639058765018,0.0,0.0,25209.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,16806.0,2,0,2_0,2_1 +5590,4.0,14.0,36.0,300,56,50,0.0,1816,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1106.9856187892167,0.0,0.0,12870.0,4,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,9900.0,1,0,1_1,1_1 +5591,0.0,6.0,36.0,112,56,71,2.0,1818,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1100.7279530295245,0.0,8700.0,360.0,1,4,8,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,276.9230769230769,1,0,1_0,1_0 +5592,1.0,3.0,64.0,111,77,71,0.0,1819,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2983.4613041424304,0.0,0.0,45961.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,30640.666666666668,4,0,4_0,4_0 +5593,3.0,11.0,63.0,112,,50,0.0,182,0.0,534.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1227.522399667913,2085.72,0.0,12050.0,5,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12050.0,1,0,1_0,1_1 +5594,1.0,6.0,57.0,111,67,50,0.0,1820,0.0,99999.0,100.0,514.0,1.0,2.0,0.0,1.0,1.0,2683.839488808897,0.0,0.0,18144.0,1,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18144.0,2,0,2_0,2_0 +5595,9.0,9.0,47.0,211,43,20,0.0,1822,0.0,0.0,0.0,0.0,4.0,7.0,3.0,5.0,3.0,1824.4464940341143,3068.0,0.0,91629.0,1,2,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,30543.0,4,0,4_0,4_0 +5596,9.0,9.0,46.0,300,63,50,0.0,1825,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,695.4494765380462,0.0,0.0,30840.0,1,3,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,15420.0,2,0,2_0,2_1 +5597,4.0,7.0,74.0,400,74,20,0.0,1826,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2365.0009222629305,0.0,0.0,16111.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16111.0,2,0,2_0,2_1 +5598,1.0,1.0,36.0,111,43,50,0.0,1827,0.0,0.0,100.0,512.0,2.0,4.0,3.0,5.0,2.4,2684.8095322274335,0.0,0.0,76953.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,32063.75,5,0,5,5_0 +5599,1.0,1.0,43.0,300,37,31,1.0,1829,0.0,1300.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2041.4126918498512,0.0,21700.0,83506.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,39764.7619047619,5,0,5,5_1 +5600,8.0,8.0,61.0,111,67,71,0.0,1831,0.0,0.0,99999.0,25.0,1.0,4.0,0.0,1.0,1.0,3849.4886580404886,0.0,0.0,11484.0,4,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,11484.0,1,0,1_1,1_0 +5601,6.0,22.0,56.0,111,78,71,0.0,1832,0.0,550.0,300.0,0.0,0.0,6.0,1.0,3.0,2.0,1871.044476538351,0.0,0.0,3171.0,7,1,8,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,1.0,3.0,1585.5,1,0,1_0,1_0 +5602,0.0,0.0,69.0,111,74,20,0.0,1833,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1409.787018532309,0.0,0.0,51252.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,34168.0,5,0,5,5_0 +5603,0.0,0.0,55.0,111,56,50,0.0,1834,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3365.936361284335,0.0,0.0,19017.0,4,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12678.0,1,0,1_0,1_0 +5604,4.0,11.0,67.0,112,75,50,0.0,1835,0.0,310.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,2783.314051968408,0.0,0.0,31470.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20980.0,3,0,3_0,3_1 +5605,0.0,0.0,33.0,300,63,50,0.0,1838,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2725.3898256350826,0.0,0.0,33070.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15747.619047619048,2,0,2_0,2_1 +5606,8.0,19.0,64.0,111,78,50,0.0,1839,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1592.4963452747345,3146.0,0.0,30627.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20418.0,3,0,3_0,3_0 +5607,3.0,3.0,32.0,111,37,20,0.0,184,0.0,240.0,30.0,0.0,2.0,3.0,0.0,2.0,1.5,4360.74253922939,0.0,0.0,99924.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,66616.0,5,0,5,5_0 +5608,27.0,32.0,46.0,111,65,71,0.0,1840,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2415.8023026571855,2587.0,0.0,66785.0,1,1,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,33392.5,5,0,5,5_0 +5609,21.0,21.0,46.0,111,47,31,0.0,1841,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,2202.329548668759,1404.0,0.0,61599.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26782.17391304348,4,0,4_0,4_0 +5610,0.0,6.0,35.0,111,34,30,0.0,1844,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3756.054391507911,884.0,0.0,52295.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29052.777777777777,4,0,4_0,4_0 +5611,10.0,12.0,55.0,112,48,50,0.0,1845,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1989.0676875177949,6749.6,0.0,49538.0,1,2,8,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,33025.333333333336,5,0,5,5_0 +5612,2.0,12.0,61.0,400,78,50,0.0,1847,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2576.7272608951293,0.0,0.0,20316.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13544.0,1,0,1_0,1_1 +5613,2.0,3.0,51.0,211,38,30,0.0,1848,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1694.950591615655,2622.88,0.0,44180.0,1,1,3,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,44180.0,5,0,5,5_0 +5614,0.0,11.0,20.0,111,84,41,0.0,1849,0.0,120.0,0.0,814.0,0.0,2.0,0.0,2.0,1.5,4229.848998297678,0.0,0.0,13457.0,3,3,9,7.0,5,3.0,0.0,0.0,0,0,0,1,0,1,1.0,2.0,8971.333333333334,1,0,1_1,1_0 +5615,19.0,19.0,59.0,112,75,42,0.0,185,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2870.447593608429,2028.0,0.0,43210.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,28806.666666666668,4,0,4_0,4_0 +5616,7.0,9.0,91.0,400,71,70,0.0,1850,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1677.503077726018,2098.2000000000003,0.0,10519.0,6,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,7012.666666666667,1,0,1_0,1_0 +5617,0.0,12.0,43.0,111,85,50,2.0,1852,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,1.0,1.0,5899.584775256487,5811.0,2600.0,9656.0,7,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,9656.0,1,0,1_0,1_0 +5618,11.0,11.0,58.0,112,37,33,0.0,1853,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1638.4851298325004,0.0,0.0,46188.0,4,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30792.0,4,0,4_0,4_1 +5619,0.0,0.0,64.0,111,78,50,0.0,1855,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2403.4436754645367,0.0,0.0,33145.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22096.666666666668,3,0,3_0,3_0 +5620,16.0,19.0,48.0,111,37,41,0.0,1856,0.0,180.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,560.4481575906036,822.64,0.0,25038.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16692.0,2,0,2_0,2_0 +5621,0.0,3.0,67.0,111,78,71,0.0,1857,0.0,0.0,0.0,318.0,1.0,4.0,0.0,2.0,1.5,1858.715108390999,1560.0,0.0,26798.0,5,3,6,5.0,3,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,17865.333333333332,2,0,2_0,2_0 +5622,0.0,0.0,59.0,120,48,50,0.0,1858,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1475.7120707444233,3146.0,0.0,36524.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24349.333333333332,4,0,4_0,4_0 +5623,5.0,5.0,38.0,112,43,30,0.0,1859,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,1059.6949779529964,0.0,0.0,31015.0,1,2,4,0.0,2,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,19384.375,3,0,3_0,3_1 +5624,0.0,0.0,53.0,111,46,60,0.0,1860,0.0,0.0,0.0,630.0,2.0,3.0,0.0,2.0,1.5,2665.550301078875,3348.2799999999997,0.0,37380.0,1,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24920.0,4,0,4_0,4_0 +5625,7.0,7.0,64.0,111,77,50,0.0,1861,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1573.1904025270894,3101.28,0.0,36900.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,24600.0,4,0,4_0,4_0 +5626,4.0,16.0,54.0,111,38,12,0.0,1863,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,2.0,2257.495941691971,0.0,0.0,131870.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,65935.0,5,0,5,5_0 +5627,0.0,0.0,37.0,111,47,50,0.0,1864,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,582.4708183607612,0.0,0.0,32748.0,1,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11695.714285714286,1,0,1_1,1_0 +5628,11.0,11.0,69.0,300,71,50,0.0,1866,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2227.2589489597262,2340.0,0.0,31955.0,5,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15977.5,2,0,2_0,2_1 +5629,7.0,9.0,69.0,211,72,71,0.0,1868,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1532.9160077219094,2912.0,0.0,28179.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18786.0,3,0,3_0,3_0 +5630,0.0,0.0,47.0,120,63,71,0.0,1869,0.0,0.0,0.0,448.0,2.0,3.0,1.0,3.0,2.0,3450.026536168901,0.0,0.0,36375.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18187.5,2,0,2_0,2_1 +5631,8.0,16.0,39.0,221,48,43,0.0,187,0.0,140.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3101.185428967816,0.0,0.0,53841.0,1,2,1,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,25638.571428571428,4,0,4_0,4_0 +5632,17.0,17.0,42.0,111,43,33,0.0,1870,0.0,10.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2647.7122528495497,0.0,0.0,27601.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,15333.888888888889,2,0,2_0,2_0 +5633,0.0,0.0,71.0,111,78,70,0.0,1871,0.0,0.0,0.0,354.0,1.0,4.0,0.0,2.0,1.5,1969.0732905029895,1300.0,0.0,26140.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17426.666666666668,2,0,2_0,2_0 +5634,10.0,13.0,52.0,111,48,50,0.0,1872,0.0,250.0,0.0,600.0,2.0,3.0,0.0,2.0,1.5,2537.1603878099104,0.0,0.0,36820.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24546.666666666668,4,0,4_0,4_0 +5635,4.0,11.0,79.0,111,72,70,0.0,1874,0.0,192.0,0.0,295.0,0.0,2.0,0.0,1.0,1.0,4598.47206442382,0.0,0.0,15867.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,15867.0,2,0,2_1,2_0 +5636,4.0,4.0,35.0,111,52,50,0.0,1875,0.0,0.0,0.0,76.0,1.0,4.0,5.0,6.0,2.5,616.7517105870126,2601.56,0.0,47497.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,18998.8,3,0,3_1,3_0 +5637,2.0,2.0,38.0,111,47,43,0.0,1877,400.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2406.7842862304365,2958.28,0.0,53913.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,29951.666666666664,4,0,4_0,4_0 +5638,2.0,2.0,35.0,111,46,43,0.0,1878,0.0,680.0,0.0,345.0,1.0,2.0,0.0,1.0,1.0,2185.967838538525,1300.0,0.0,14786.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14786.0,2,0,2_0,2_0 +5639,5.0,14.0,53.0,112,38,42,0.0,1879,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2004.7617146275402,2472.08,0.0,77170.0,1,1,9,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,30868.0,4,0,4_0,4_1 +5640,2.0,7.0,33.0,112,54,41,0.0,1880,0.0,500.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2361.805242555004,392.08,0.0,56808.0,1,2,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,27051.42857142857,4,0,4_0,4_1 +5641,0.0,0.0,38.0,111,34,20,0.0,1882,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4438.709588095304,0.0,0.0,22090.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22090.0,3,0,3_0,3_0 +5642,0.0,0.0,55.0,300,43,33,0.0,1883,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1519.1018577227928,2597.92,0.0,40327.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,40327.0,5,0,5,5_1 +5643,0.0,0.0,57.0,112,52,50,0.0,1884,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1240.7366924842315,0.0,0.0,35630.0,1,1,10,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,35630.0,5,0,5,5_0 +5644,9.0,11.0,30.0,112,64,60,0.0,1885,0.0,0.0,650.0,32.0,2.0,4.0,2.0,4.0,2.1,435.71136987018707,1560.52,0.0,18556.0,4,3,9,0.0,5,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,8836.190476190475,1,0,1_1,1_1 +5645,0.0,1.0,52.0,111,56,43,1.0,1886,0.0,300.0,0.0,306.0,2.0,3.0,2.0,3.0,2.0,1865.6471381397357,2444.0,22000.0,20970.0,1,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,10485.0,1,0,1_1,1_0 +5646,4.0,4.0,40.0,111,52,30,0.0,1888,0.0,0.0,0.0,402.0,1.0,3.0,1.0,2.0,1.5,856.4351472723921,0.0,0.0,25881.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,17254.0,2,0,2_1,2_0 +5647,6.0,8.0,56.0,112,71,50,0.0,1889,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,1987.371308870734,0.0,0.0,5750.0,4,1,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,5750.0,1,0,1_1,1_0 +5648,2.0,10.0,42.0,111,23,43,0.0,1890,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,2859.36203647729,0.0,0.0,201323.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,77431.92307692308,5,0,5,5_0 +5649,1.0,10.0,70.0,112,74,30,2.0,1894,0.0,99999.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1670.97663093555,2459.6,4700.0,36672.0,5,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,36672.0,5,0,5,5_1 +5650,6.0,6.0,68.0,112,77,70,0.0,1895,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2964.3460204482635,8739.64,0.0,26948.0,5,1,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26948.0,4,0,4_0,4_0 +5651,11.0,11.0,57.0,111,43,33,0.0,1896,0.0,50.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1352.475024443041,1943.7600000000002,0.0,39404.0,1,1,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,19702.0,3,0,3_0,3_0 +5652,10.0,10.0,26.0,111,56,71,0.0,1897,0.0,0.0,350.0,40.0,1.0,3.0,1.0,2.0,1.3,1219.4399728191422,0.0,0.0,13106.0,4,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,10081.538461538461,1,0,1_1,1_0 +5653,0.0,0.0,49.0,300,52,50,0.0,1898,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,511.6737732883565,1040.0,0.0,21254.0,4,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11186.315789473685,1,0,1_1,1_1 +5654,0.0,0.0,77.0,112,75,33,0.0,1899,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,2218.8795414595843,0.0,0.0,57580.0,5,1,10,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23032.0,3,0,3_0,3_0 +5655,0.0,13.0,38.0,300,69,50,2.0,19,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4779.2975941882405,312.0,4000.0,15574.0,1,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,15574.0,2,0,2_1,2_0 +5656,14.0,14.0,54.0,120,64,50,0.0,1900,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1428.4440854266797,1560.0,0.0,24634.0,1,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16422.666666666668,2,0,2_0,2_0 +5657,12.0,12.0,34.0,400,63,50,0.0,1901,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2456.8529390939234,7750.6,0.0,31635.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21090.0,3,0,3_0,3_1 +5658,6.0,16.0,34.0,211,46,31,0.0,1905,0.0,0.0,0.0,624.0,2.0,5.0,1.0,3.0,1.8,1266.3091746392204,0.0,0.0,52796.0,1,3,2,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29331.11111111111,4,0,4_0,4_0 +5659,0.0,0.0,28.0,111,81,50,0.0,1906,0.0,0.0,0.0,0.0,1.0,2.0,2.0,3.0,1.6,1161.492392325646,0.0,0.0,15822.0,4,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9888.75,1,0,1_1,1_0 +5660,3.0,10.0,69.0,400,75,44,0.0,1907,0.0,0.0,150.0,0.0,0.0,4.0,0.0,2.0,1.5,1640.2688032829753,5942.04,0.0,38596.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,25730.666666666668,4,0,4_0,4_1 +5661,0.0,0.0,46.0,111,85,71,0.0,1908,0.0,0.0,0.0,34.0,0.0,1.0,0.0,1.0,1.0,1886.1466095008777,0.0,0.0,14244.0,7,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14244.0,2,0,2_1,2_0 +5662,0.0,0.0,67.0,112,78,50,0.0,1910,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2063.4965920195527,0.0,0.0,20064.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13376.0,1,0,1_0,1_0 +5663,1.0,1.0,70.0,111,74,20,0.0,1911,0.0,0.0,180.0,0.0,0.0,6.0,0.0,2.0,1.5,1602.9032437057847,3536.0,0.0,61938.0,5,1,7,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,2.0,0.0,41292.0,5,0,5,5_0 +5664,10.0,10.0,49.0,111,31,20,0.0,1913,0.0,99999.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,2088.6353981708417,3449.16,0.0,121342.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,43336.42857142857,5,0,5,5_0 +5665,1.0,5.0,55.0,111,77,71,2.0,1914,0.0,250.0,0.0,232.0,2.0,3.0,2.0,3.0,2.0,4727.2720709055375,0.0,15000.0,33124.0,6,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,16562.0,2,0,2_1,2_0 +5666,10.0,10.0,65.0,111,77,41,0.0,1915,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3508.3477591459814,0.0,0.0,14914.0,5,1,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,14914.0,2,0,2_0,2_0 +5667,0.0,0.0,50.0,111,55,71,0.0,1916,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,2091.7389118643787,0.0,0.0,36822.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18411.0,2,0,2_0,2_0 +5668,1.0,2.0,53.0,112,45,42,2.0,1917,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2033.224041763163,2706.08,21000.0,28824.0,1,3,7,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19216.0,3,0,3_0,3_1 +5669,0.0,11.0,21.0,111,84,31,0.0,1918,0.0,0.0,210.0,0.0,0.0,1.0,0.0,1.0,1.0,4532.798621089222,0.0,0.0,18602.0,3,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,18602.0,2,0,2_1,2_0 +5670,2.0,2.0,64.0,111,65,71,0.0,1919,0.0,0.0,236.0,0.0,2.0,5.0,0.0,2.0,1.5,2135.683394224027,858.0,0.0,30097.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,20064.666666666668,3,0,3_0,3_0 +5671,5.0,5.0,65.0,111,75,41,0.0,192,0.0,220.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2593.909789133313,0.0,0.0,44060.0,5,1,8,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,29373.333333333332,4,0,4_0,4_0 +5672,0.0,0.0,44.0,111,54,41,0.0,1920,0.0,0.0,0.0,616.0,1.0,2.0,1.0,2.0,1.5,1243.4481550319404,0.0,0.0,33940.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22626.666666666668,3,0,3_0,3_0 +5673,12.0,12.0,54.0,111,77,50,0.0,1921,0.0,200.0,0.0,244.0,1.0,2.0,1.0,2.0,1.5,2510.0448341204146,0.0,0.0,5280.0,7,3,6,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,3520.0,1,0,1_1,1_0 +5674,6.0,6.0,37.0,111,84,20,0.0,1922,0.0,0.0,250.0,285.0,1.0,1.0,0.0,2.0,1.5,4061.187379197452,0.0,0.0,12373.0,3,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,8248.666666666666,1,0,1_1,1_0 +5675,0.0,0.0,51.0,221,38,12,0.0,1923,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,2986.203135507021,2672.28,0.0,86528.0,1,2,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28842.666666666668,4,0,4_0,4_0 +5676,1.0,1.0,74.0,112,74,41,1.0,1924,0.0,250.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1141.0930409531127,2756.0,14500.0,70115.0,5,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,46743.333333333336,5,0,5,5_0 +5677,1.0,3.0,41.0,221,55,43,0.0,1927,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,2.9,2645.1653703610073,2605.2000000000003,0.0,26090.0,4,2,1,2.0,4,3.0,0.0,0.0,0,1,0,0,0,1,0.0,3.0,8996.551724137931,1,0,1_1,1_0 +5678,0.0,0.0,42.0,400,22,50,0.0,1928,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,4492.470910674902,1304.68,0.0,19260.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14815.384615384615,2,0,2_0,2_1 +5679,0.0,0.0,65.0,112,75,70,1.0,1929,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2086.3181144843625,0.0,10000.0,21129.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21129.0,3,0,3_0,3_1 +5680,23.0,23.0,55.0,112,46,20,0.0,193,0.0,0.0,0.0,0.0,1.0,11.0,1.0,3.0,2.0,2634.0739031206076,3931.72,0.0,6183.0,1,1,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,3091.5,1,0,1_0,1_1 +5681,36.0,36.0,61.0,111,77,31,0.0,1930,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,3730.090112442072,2228.2000000000003,0.0,35051.0,5,2,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,23367.333333333332,3,0,3_0,3_0 +5682,0.0,0.0,71.0,112,74,60,0.0,1931,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1746.1780378745796,1561.04,0.0,33990.0,5,1,6,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22660.0,3,0,3_0,3_0 +5683,0.0,13.0,32.0,111,45,41,0.0,1932,0.0,0.0,0.0,700.0,2.0,3.0,1.0,3.0,1.8,1418.1267249767088,0.0,0.0,43864.0,1,3,7,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,24368.888888888887,4,0,4_0,4_0 +5684,0.0,0.0,72.0,111,74,31,0.0,1933,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1603.2863072415164,0.0,0.0,70200.0,5,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,46800.0,5,0,5,5_0 +5685,5.0,5.0,54.0,211,48,50,0.0,1934,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2176.3758229431933,2707.64,0.0,41640.0,1,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,27760.0,4,0,4_0,4_0 +5686,3.0,3.0,67.0,111,77,50,0.0,1935,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2058.810375233204,0.0,0.0,22122.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,14748.0,2,0,2_0,2_0 +5687,0.0,0.0,57.0,111,54,43,0.0,1936,0.0,0.0,0.0,181.0,1.0,3.0,0.0,1.0,1.0,2093.1641903047957,0.0,0.0,18638.0,1,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,18638.0,2,0,2_1,2_0 +5688,8.0,10.0,55.0,112,43,33,0.0,1940,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1554.6425131016101,2860.0,0.0,49682.0,1,1,8,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,33121.333333333336,5,0,5,5_1 +5689,4.0,6.0,39.0,112,53,41,0.0,1941,0.0,100.0,0.0,0.0,1.0,2.0,3.0,5.0,2.6,4146.765233530974,2964.0,0.0,23288.0,1,3,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,8956.923076923076,1,0,1_1,1_0 +5690,6.0,6.0,56.0,112,35,20,0.0,1942,0.0,199998.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,4844.294248440777,1814.8,0.0,18795.0,4,3,9,3.0,5,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,12530.0,1,0,1_1,1_0 +5691,7.0,11.0,58.0,212,46,50,0.0,1943,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2372.3580503142675,2961.9199999999996,0.0,33990.0,1,1,2,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16995.0,2,0,2_0,2_1 +5692,3.0,3.0,60.0,300,13,42,0.0,1944,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1721.4087095878556,2885.48,0.0,94222.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,62814.666666666664,5,0,5,5_1 +5693,3.0,10.0,58.0,111,52,50,0.0,1945,0.0,400.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2252.080751745191,0.0,0.0,32717.0,1,1,4,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21811.333333333332,3,0,3_0,3_0 +5694,9.0,9.0,37.0,112,63,41,0.0,1946,0.0,190.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,2601.234194427083,1820.0,0.0,33606.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16002.857142857141,2,0,2_0,2_0 +5695,0.0,0.0,55.0,111,54,41,0.0,1947,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2018.1528661389664,0.0,0.0,10631.0,1,4,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10631.0,1,0,1_0,1_0 +5696,3.0,16.0,49.0,111,55,50,0.0,1948,0.0,100.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,617.993639986672,0.0,0.0,4902.0,4,2,7,5.0,2,3.0,1.0,0.0,0,0,1,0,0,1,0.0,3.0,2723.3333333333335,1,0,1_1,1_0 +5697,0.0,0.0,84.0,120,72,50,0.0,1949,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,6090.857027622111,0.0,0.0,48460.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,48460.0,5,0,5,5_1 +5698,0.0,0.0,35.0,111,21,50,0.0,195,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4124.059532960699,0.0,0.0,11554.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11554.0,1,0,1_0,1_0 +5699,12.0,12.0,63.0,112,77,60,0.0,1950,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2312.007218172388,0.0,0.0,20366.0,5,4,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20366.0,3,0,3_0,3_1 +5700,1.0,2.0,73.0,111,78,71,2.0,1952,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1724.1224599743578,0.0,22000.0,17836.0,5,3,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,17836.0,2,0,2_0,2_0 +5701,0.0,0.0,68.0,300,78,71,0.0,1954,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2959.6587738882936,0.0,0.0,21601.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21601.0,3,0,3_0,3_1 +5702,2.0,2.0,90.0,112,75,70,0.0,1956,0.0,200.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2921.811943056243,0.0,0.0,21341.0,5,1,6,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21341.0,3,0,3_0,3_0 +5703,8.0,13.0,67.0,400,77,60,0.0,1957,0.0,99999.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2345.3495562004646,1622.92,0.0,48589.0,5,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24294.5,4,0,4_0,4_1 +5704,13.0,13.0,59.0,111,54,60,0.0,1958,0.0,0.0,0.0,453.0,1.0,6.0,0.0,2.0,1.5,1797.8217763611083,4951.4400000000005,0.0,33462.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,22308.0,3,0,3_0,3_0 +5705,0.0,0.0,44.0,120,13,50,0.0,1959,0.0,0.0,0.0,0.0,4.0,5.0,3.0,5.0,3.0,1938.8438782886237,2808.0,0.0,77757.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25919.0,4,0,4_0,4_1 +5706,8.0,10.0,52.0,111,22,60,0.0,196,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2407.79795239794,0.0,0.0,7191.0,1,2,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,7191.0,1,0,1_0,1_0 +5707,1.0,10.0,64.0,300,72,70,2.0,1961,0.0,530.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1790.208935069504,0.0,3300.0,21540.0,5,1,0,0.0,3,5.0,0.0,1.0,1,0,0,0,0,0,2.0,3.0,14360.0,2,0,2_0,2_1 +5708,15.0,15.0,40.0,111,54,41,0.0,1962,0.0,0.0,150.0,197.0,1.0,4.0,2.0,4.0,2.1,1132.513351197824,3380.0,0.0,37299.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,2.0,0.0,17761.428571428572,2,0,2_1,2_0 +5709,21.0,29.0,81.0,111,74,44,0.0,1963,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1841.5988074602392,2340.0,0.0,50354.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,33569.333333333336,5,0,5,5_0 +5710,9.0,9.0,56.0,111,68,71,0.0,1965,0.0,0.0,0.0,380.0,2.0,3.0,0.0,2.0,1.5,2109.589078676437,0.0,0.0,30703.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,20468.666666666668,3,0,3_0,3_0 +5711,1.0,5.0,32.0,111,64,50,0.0,1966,0.0,300.0,0.0,456.0,3.0,4.0,2.0,3.0,2.0,4582.311294379778,2282.28,0.0,69917.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,34958.5,5,0,5,5_0 +5712,15.0,19.0,43.0,111,52,50,0.0,1969,0.0,0.0,0.0,348.0,1.0,3.0,2.0,3.0,1.6,962.269745035256,3268.72,0.0,33472.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,20920.0,3,0,3_1,3_0 +5713,0.0,0.0,69.0,112,75,50,0.0,197,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2623.544785776209,0.0,0.0,24183.0,5,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16122.0,2,0,2_0,2_0 +5714,7.0,7.0,68.0,111,75,50,0.0,1970,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2118.5698304223465,2444.0,0.0,29539.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19692.666666666668,3,0,3_0,3_0 +5715,6.0,6.0,39.0,400,47,31,0.0,1971,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1965.8471409739295,5928.0,0.0,49249.0,1,1,0,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,32832.666666666664,5,0,5,5_0 +5716,0.0,0.0,55.0,112,48,50,0.0,1972,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2164.6733397856715,1560.52,0.0,43682.0,1,3,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29121.333333333332,4,0,4_0,4_1 +5717,12.0,12.0,45.0,112,64,50,0.0,1975,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3032.1348240942903,3124.16,0.0,31280.0,1,2,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20853.333333333332,3,0,3_0,3_1 +5718,0.0,0.0,79.0,111,75,50,0.0,1976,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3146.5875220148537,0.0,0.0,23353.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23353.0,3,0,3_0,3_0 +5719,0.0,0.0,59.0,120,54,60,0.0,1977,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1279.4287382346608,0.0,0.0,24430.0,1,2,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24430.0,4,0,4_0,4_0 +5720,4.0,4.0,47.0,111,21,42,0.0,1978,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.6,1520.3659057038683,1041.04,0.0,79460.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30561.53846153846,4,0,4_0,4_0 +5721,6.0,11.0,49.0,111,56,71,0.0,1979,0.0,99999.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,765.3629266306967,0.0,0.0,9503.0,4,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,7310.0,1,0,1_1,1_0 +5722,11.0,11.0,82.0,111,77,41,0.0,198,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2596.1227508238003,0.0,0.0,22400.0,7,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22400.0,3,0,3_0,3_0 +5723,0.0,0.0,35.0,111,47,31,0.0,1980,0.0,0.0,0.0,550.0,1.0,3.0,0.0,1.0,1.0,3145.339175199007,3120.0,0.0,29228.0,1,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29228.0,4,0,4_0,4_0 +5724,0.0,11.0,45.0,111,52,50,0.0,1981,0.0,0.0,0.0,219.0,1.0,4.0,2.0,3.0,1.8,1009.9887501740214,3380.0,0.0,21356.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11864.444444444443,1,0,1_1,1_0 +5725,5.0,5.0,61.0,112,75,41,0.0,1983,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2562.6926510438793,2402.4,0.0,16280.0,4,3,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,16280.0,2,0,2_1,2_1 +5726,1.0,1.0,39.0,111,43,33,1.0,1984,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3080.8327648317677,0.0,24000.0,27041.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,15022.777777777777,2,0,2_0,2_0 +5727,3.0,13.0,56.0,112,13,70,0.0,1985,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2413.815714693808,0.0,0.0,77180.0,1,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,77180.0,5,0,5,5_1 +5728,2.0,2.0,51.0,112,46,50,0.0,1986,0.0,0.0,60.0,0.0,2.0,5.0,2.0,4.0,2.5,1759.669423753215,0.0,0.0,48264.0,1,2,9,2.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,19305.6,3,0,3_0,3_0 +5729,4.0,10.0,45.0,111,34,10,0.0,1987,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3490.364800743375,0.0,0.0,42918.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,42918.0,5,0,5,5_0 +5730,7.0,7.0,24.0,111,54,30,0.0,1989,0.0,75.0,0.0,332.0,2.0,2.0,0.0,2.0,1.5,4229.408042764779,2600.0,0.0,15694.0,2,3,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,10462.666666666666,1,0,1_0,1_0 +5731,4.0,4.0,69.0,112,75,50,0.0,199,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2822.3224761753613,1470.56,0.0,36553.0,5,1,6,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18276.5,2,0,2_0,2_1 +5732,10.0,12.0,43.0,111,85,71,0.0,1990,0.0,0.0,0.0,0.0,0.0,5.0,4.0,6.0,2.9,2576.9906402669944,2600.0,0.0,28210.0,6,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,9727.586206896553,1,0,1_1,1_0 +5733,15.0,17.0,83.0,111,77,71,0.0,1992,0.0,0.0,0.0,280.0,0.0,3.0,0.0,1.0,1.0,4084.0208207902797,2037.8799999999999,0.0,16830.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16830.0,2,0,2_0,2_0 +5734,0.0,0.0,62.0,111,54,60,0.0,1993,0.0,0.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,3980.3833045610695,1040.0,0.0,23679.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15786.0,2,0,2_1,2_0 +5735,0.0,0.0,48.0,111,22,50,0.0,1994,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4160.451285616069,0.0,0.0,7651.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7651.0,1,0,1_0,1_0 +5736,3.0,10.0,48.0,111,37,31,0.0,1995,0.0,560.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2006.8630044404656,0.0,0.0,27338.0,1,1,8,7.0,4,3.0,1.0,1.0,0,0,0,1,0,0,0.0,3.0,13669.0,1,0,1_0,1_0 +5737,2.0,18.0,54.0,112,64,60,0.0,1997,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2125.332323468305,2860.0,0.0,42269.0,1,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,28179.333333333332,4,0,4_0,4_1 +5738,0.0,1.0,49.0,111,22,60,1.0,1998,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3140.168139483339,0.0,20500.0,13062.0,1,2,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,8708.0,1,0,1_0,1_0 +5739,4.0,8.0,54.0,111,56,20,0.0,1999,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1075.6181338158078,0.0,0.0,10910.0,4,3,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,6061.111111111111,1,0,1_1,1_0 +5740,9.0,13.0,65.0,212,74,50,0.0,2,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2407.1262995995844,2340.52,0.0,17192.0,5,1,2,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17192.0,2,0,2_0,2_1 +5741,1.0,16.0,79.0,400,78,70,0.0,20,0.0,1000.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2225.422466192601,0.0,0.0,26935.0,5,1,0,0.0,3,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,17956.666666666668,2,0,2_0,2_1 +5742,2.0,8.0,61.0,112,52,71,0.0,200,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2536.90480623849,1040.52,0.0,19085.0,1,3,6,2.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,19085.0,3,0,3_0,3_0 +5743,2.0,2.0,76.0,112,78,60,0.0,2001,0.0,56.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3261.181921272125,0.0,0.0,20387.0,5,1,10,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20387.0,3,0,3_0,3_1 +5744,2.0,2.0,21.0,111,84,31,0.0,2002,0.0,0.0,0.0,91.0,0.0,1.0,0.0,1.0,1.0,2586.7193711401064,0.0,0.0,2509.0,3,3,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,2509.0,1,0,1_1,1_0 +5745,3.0,10.0,60.0,300,86,71,0.0,2003,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2189.3465806609574,0.0,0.0,5240.0,7,1,0,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,5240.0,1,0,1_0,1_0 +5746,0.0,0.0,86.0,111,77,44,0.0,2004,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2717.111146957601,0.0,0.0,29833.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29833.0,4,0,4_0,4_0 +5747,10.0,15.0,25.0,111,46,43,0.0,2005,0.0,0.0,20.0,0.0,2.0,4.0,1.0,3.0,1.8,3209.9669254333494,780.0,0.0,42709.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23727.222222222223,3,0,3_0,3_0 +5748,1.0,4.0,66.0,300,78,31,2.0,2007,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1676.290538720522,1136.2,5000.0,22003.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14668.666666666666,2,0,2_0,2_1 +5749,11.0,11.0,53.0,111,47,31,0.0,2008,0.0,304.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,1514.7765738567414,0.0,0.0,40497.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20248.5,3,0,3_0,3_0 +5750,0.0,0.0,73.0,400,22,30,0.0,201,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2263.9470303212493,327.59999999999997,0.0,32469.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32469.0,5,0,5,5_1 +5751,2.0,15.0,77.0,111,72,71,0.0,2010,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2590.053825410013,0.0,0.0,19060.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19060.0,3,0,3_0,3_0 +5752,16.0,21.0,36.0,111,55,50,0.0,2011,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1158.6892057638997,0.0,0.0,12265.0,4,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,9434.615384615385,1,0,1_1,1_0 +5753,0.0,0.0,60.0,111,74,31,0.0,2014,0.0,0.0,0.0,88.0,0.0,4.0,3.0,4.0,2.5,821.3792495380115,0.0,0.0,8001.0,7,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,3200.4,1,0,1_1,1_0 +5754,8.0,8.0,55.0,111,47,41,0.0,2015,0.0,0.0,0.0,620.0,2.0,4.0,2.0,4.0,2.3,1790.6269443851922,2601.04,0.0,23101.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10043.913043478262,1,0,1_0,1_0 +5755,1.0,8.0,54.0,111,55,20,2.0,2016,0.0,0.0,318.0,122.0,1.0,1.0,0.0,1.0,1.0,2865.0688275537286,0.0,3200.0,5057.0,7,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,5057.0,1,0,1_1,1_0 +5756,0.0,0.0,66.0,111,77,50,0.0,2017,0.0,0.0,0.0,296.0,0.0,3.0,0.0,1.0,1.0,2203.299782209725,2199.6,0.0,12249.0,5,3,7,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12249.0,1,0,1_0,1_0 +5757,7.0,16.0,46.0,111,85,71,0.0,202,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.8,1821.6601644577026,0.0,0.0,16913.0,6,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,9396.111111111111,1,0,1_1,1_0 +5758,13.0,13.0,33.0,111,52,31,0.0,2020,100.0,0.0,100.0,0.0,1.0,2.0,0.0,1.0,1.0,2574.113142982045,0.0,0.0,24237.0,1,2,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,24237.0,4,0,4_0,4_0 +5759,3.0,11.0,66.0,112,75,30,0.0,2021,0.0,400.0,200.0,0.0,0.0,8.0,0.0,2.0,1.5,1771.1346837214296,6094.4,0.0,75100.0,5,1,7,0.0,3,4.0,0.0,1.0,1,0,0,0,0,0,2.0,2.0,50066.666666666664,5,0,5,5_1 +5760,5.0,5.0,72.0,112,74,10,0.0,2022,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1733.6833187722125,0.0,0.0,31830.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21220.0,3,0,3_0,3_1 +5761,3.0,8.0,68.0,112,78,71,0.0,2023,0.0,0.0,300.0,0.0,0.0,4.0,0.0,2.0,1.5,2440.7533454786735,0.0,0.0,15805.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,10536.666666666666,1,0,1_0,1_1 +5762,6.0,6.0,23.0,112,54,41,0.0,2024,0.0,0.0,0.0,94.0,1.0,3.0,0.0,1.0,1.0,5132.031039918772,0.0,0.0,19913.0,1,3,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,19913.0,3,0,3_1,3_1 +5763,3.0,3.0,22.0,111,34,31,0.0,2025,0.0,0.0,0.0,432.0,1.0,2.0,0.0,1.0,1.0,5464.7535836547395,0.0,0.0,23928.0,3,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,23928.0,4,0,4_1,4_0 +5764,1.0,25.0,35.0,111,34,10,0.0,2028,0.0,0.0,99999.0,0.0,2.0,2.0,0.0,2.0,1.5,3259.5258512972214,2340.0,0.0,42391.0,1,2,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,28260.666666666668,4,0,4_0,4_0 +5765,4.0,11.0,46.0,120,52,50,0.0,2029,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,3.0,2.0,705.0110799738412,780.0,0.0,28926.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,14463.0,2,0,2_1,2_1 +5766,7.0,8.0,63.0,111,75,50,0.0,2030,0.0,0.0,0.0,578.0,0.0,4.0,0.0,1.0,1.0,4167.749059217084,0.0,0.0,23167.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23167.0,3,0,3_0,3_0 +5767,0.0,0.0,49.0,221,22,50,0.0,2031,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2309.704646616692,3166.7999999999997,0.0,59150.0,1,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,39433.333333333336,5,0,5,5_0 +5768,12.0,12.0,31.0,112,85,43,0.0,2033,0.0,450.0,0.0,0.0,1.0,2.0,2.0,4.0,2.1,1041.0370370482779,0.0,0.0,18150.0,1,3,10,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,8642.857142857143,1,0,1_1,1_0 +5769,0.0,0.0,27.0,111,55,50,0.0,2034,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2666.5514136689176,2080.0,0.0,22310.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12394.444444444443,1,0,1_0,1_0 +5770,9.0,9.0,50.0,111,52,50,0.0,2035,0.0,0.0,0.0,444.0,1.0,3.0,1.0,2.0,1.5,2665.1131733891066,0.0,0.0,22006.0,1,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14670.666666666666,2,0,2_0,2_0 +5771,12.0,12.0,53.0,112,38,50,0.0,2036,0.0,440.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,1818.1735315402593,1578.72,0.0,88738.0,1,2,8,0.0,4,4.0,0.0,0.0,1,0,0,0,0,0,1.0,3.0,44369.0,5,0,5,5_1 +5772,2.0,6.0,63.0,400,78,50,0.0,2037,0.0,0.0,10.0,0.0,1.0,5.0,0.0,2.0,1.5,2806.305844502179,5003.4400000000005,0.0,33967.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,22644.666666666668,3,0,3_0,3_1 +5773,4.0,9.0,60.0,111,34,10,0.0,2038,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1967.957450586037,0.0,0.0,28708.0,1,4,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,28708.0,4,0,4_0,4_0 +5774,0.0,0.0,23.0,111,43,50,0.0,2039,0.0,0.0,0.0,0.0,3.0,2.0,0.0,3.0,2.0,3206.893447329955,1560.0,0.0,25751.0,1,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12875.5,1,0,1_1,1_0 +5775,1.0,3.0,76.0,111,78,70,0.0,204,0.0,1220.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2603.927367786302,0.0,0.0,21414.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21414.0,3,0,3_0,3_0 +5776,1.0,1.0,38.0,112,67,50,0.0,2041,0.0,550.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2094.7273790596455,5773.04,0.0,46278.0,1,2,6,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22037.142857142855,3,0,3_0,3_1 +5777,0.0,0.0,42.0,111,62,50,0.0,2042,0.0,0.0,0.0,0.0,2.0,3.0,3.0,5.0,2.6,1896.9910269006702,5899.400000000001,0.0,43250.0,1,1,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16634.615384615383,2,0,2_0,2_0 +5778,8.0,12.0,44.0,111,22,31,0.0,2044,0.0,0.0,40.0,477.0,3.0,4.0,1.0,3.0,2.0,1956.1493633763084,0.0,0.0,14926.0,4,3,8,7.0,4,3.0,0.0,0.0,0,0,0,1,0,1,1.0,2.0,7463.0,1,0,1_1,1_0 +5779,3.0,3.0,40.0,400,56,71,0.0,2045,0.0,99999.0,0.0,0.0,1.0,6.0,3.0,4.0,2.3,252.52235774246776,1040.0,0.0,24702.0,1,2,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,10740.0,1,0,1_1,1_1 +5780,0.0,0.0,41.0,111,37,31,0.0,2046,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2736.9821363242263,1040.0,0.0,55689.0,1,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26518.571428571428,4,0,4_0,4_0 +5781,0.0,18.0,46.0,111,56,50,0.0,2047,0.0,250.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2691.6788353395586,2080.0,0.0,53450.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21380.0,3,0,3_0,3_0 +5782,10.0,10.0,42.0,400,62,43,0.0,205,0.0,0.0,300.0,0.0,2.0,3.0,1.0,3.0,2.0,2388.485907584128,0.0,0.0,35678.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,17839.0,2,0,2_0,2_1 +5783,0.0,0.0,50.0,112,37,50,0.0,2050,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,948.9733658010542,1560.0,0.0,41087.0,1,2,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,41087.0,5,0,5,5_1 +5784,9.0,9.0,22.0,111,84,30,0.0,2052,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3165.483830096379,0.0,0.0,1746.0,3,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,1746.0,1,0,1_1,1_0 +5785,4.0,4.0,28.0,111,38,12,0.0,2053,0.0,200.0,0.0,950.0,2.0,3.0,1.0,3.0,1.8,5069.721046594298,852.8,0.0,51015.0,1,3,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,28341.666666666664,4,0,4_0,4_0 +5786,3.0,3.0,58.0,111,,31,0.0,2055,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,1796.6662848494161,2600.0,0.0,26337.0,8,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17558.0,2,0,2_0,2_0 +5787,2.0,2.0,70.0,111,75,71,0.0,2056,0.0,300.0,300.0,0.0,0.0,3.0,0.0,2.0,1.5,3582.6632706216674,1657.76,0.0,33548.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22365.333333333332,3,0,3_0,3_0 +5788,3.0,3.0,32.0,111,67,30,0.0,2057,0.0,200.0,0.0,487.0,1.0,1.0,0.0,1.0,1.0,5906.547588276611,0.0,0.0,16104.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,16104.0,2,0,2_0,2_0 +5789,3.0,3.0,82.0,211,78,50,0.0,2058,0.0,600.0,5.0,0.0,0.0,3.0,0.0,2.0,1.5,2193.6311808217297,0.0,0.0,26432.0,5,4,4,4.0,3,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,17621.333333333332,2,0,2_0,2_0 +5790,2.0,20.0,68.0,112,78,71,0.0,2059,0.0,0.0,180.0,0.0,0.0,3.0,0.0,1.0,1.0,2215.3527064075943,0.0,0.0,17750.0,5,1,9,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,17750.0,2,0,2_0,2_1 +5791,19.0,29.0,69.0,112,78,71,0.0,2060,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,5517.720237010853,2080.0,0.0,18404.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12269.333333333334,1,0,1_0,1_1 +5792,2.0,2.0,80.0,111,72,50,0.0,2062,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1601.8725257970752,0.0,0.0,30195.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,20130.0,3,0,3_0,3_0 +5793,1.0,1.0,73.0,111,75,70,0.0,2065,0.0,350.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1961.8275843657004,0.0,0.0,37720.0,5,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,25146.666666666668,4,0,4_0,4_0 +5794,7.0,7.0,35.0,111,37,20,0.0,2066,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2257.946605533397,1093.56,0.0,78283.0,1,1,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,37277.619047619046,5,0,5,5_0 +5795,9.0,9.0,39.0,400,34,20,0.0,2067,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1881.5866803312815,3260.4,0.0,78337.0,1,2,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,37303.33333333333,5,0,5,5_0 +5796,6.0,12.0,30.0,211,37,41,0.0,2068,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2601.942139133014,520.0,0.0,38845.0,1,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25896.666666666668,4,0,4_0,4_0 +5797,0.0,0.0,52.0,112,48,71,0.0,2069,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3392.714675771226,3120.0,0.0,30430.0,1,1,10,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20286.666666666668,3,0,3_0,3_0 +5798,8.0,10.0,84.0,400,72,71,0.0,207,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3457.5706692498748,0.0,0.0,11761.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11761.0,1,0,1_0,1_1 +5799,1.0,2.0,76.0,111,74,20,0.0,2071,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3106.580372826678,0.0,0.0,480.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,480.0,1,0,1_0,1_0 +5800,2.0,13.0,27.0,112,46,50,0.0,2075,0.0,0.0,420.0,0.0,1.0,3.0,1.0,2.0,1.3,652.7612221651581,1560.0,0.0,25473.0,1,3,7,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,19594.615384615383,3,0,3_1,3_1 +5801,18.0,18.0,34.0,111,33,20,0.0,2077,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1763.343294710734,0.0,0.0,49215.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27341.666666666664,4,0,4_0,4_0 +5802,7.0,11.0,66.0,112,74,50,0.0,2078,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1721.2921501168692,0.0,0.0,43489.0,5,1,10,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,28992.666666666668,4,0,4_0,4_0 +5803,0.0,0.0,71.0,111,74,50,0.0,208,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,440.92107265465313,1560.0,0.0,35979.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23986.0,4,0,4_0,4_0 +5804,0.0,13.0,70.0,112,77,71,0.0,2080,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1678.6569236227947,0.0,0.0,45569.0,5,1,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30379.333333333332,4,0,4_0,4_0 +5805,8.0,13.0,89.0,400,71,50,0.0,2081,0.0,400.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2050.164488897052,0.0,0.0,11801.0,5,4,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,11801.0,1,0,1_0,1_1 +5806,4.0,14.0,37.0,111,68,50,0.0,2083,0.0,0.0,350.0,148.0,1.0,3.0,1.0,2.0,1.3,998.8178485572395,2080.0,0.0,20870.0,1,3,6,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,16053.846153846152,2,0,2_1,2_0 +5807,3.0,7.0,40.0,111,46,43,0.0,2084,0.0,99999.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1835.479468953292,2600.0,0.0,50710.0,1,2,4,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,21129.166666666668,3,0,3_0,3_0 +5808,0.0,0.0,52.0,111,52,60,0.0,2086,0.0,0.0,0.0,402.0,1.0,3.0,0.0,1.0,1.0,2088.785041252654,0.0,0.0,21190.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21190.0,3,0,3_0,3_0 +5809,0.0,0.0,67.0,111,77,60,0.0,209,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2166.157145442686,0.0,0.0,19310.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19310.0,3,0,3_0,3_0 +5810,0.0,0.0,38.0,111,52,71,0.0,2090,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,1375.2738388634475,0.0,0.0,13928.0,4,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10713.846153846154,1,0,1_1,1_0 +5811,10.0,23.0,69.0,400,78,44,0.0,2091,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1664.9025519239326,0.0,0.0,42555.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28370.0,4,0,4_0,4_1 +5812,0.0,0.0,81.0,111,75,41,0.0,2092,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2571.337603795519,0.0,0.0,32280.0,5,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32280.0,5,0,5,5_0 +5813,12.0,20.0,51.0,111,52,31,0.0,2093,0.0,0.0,0.0,697.0,2.0,4.0,0.0,2.0,1.5,3796.120834793164,2627.04,0.0,33150.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22100.0,3,0,3_0,3_0 +5814,2.0,2.0,43.0,221,37,31,0.0,2094,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3503.4096354625117,2889.64,0.0,69663.0,1,2,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,33172.857142857145,5,0,5,5_0 +5815,0.0,3.0,65.0,211,78,71,0.0,2096,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2552.4313874386517,0.0,0.0,12546.0,5,1,1,2.0,1,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,12546.0,1,0,1_0,1_0 +5816,1.0,9.0,79.0,112,78,50,2.0,2098,0.0,550.0,20.0,0.0,0.0,4.0,0.0,2.0,1.5,4047.731974386098,0.0,5200.0,52018.0,5,1,8,0.0,3,4.0,1.0,1.0,1,0,0,0,0,0,1.0,3.0,34678.666666666664,5,0,5,5_1 +5817,0.0,0.0,37.0,111,34,20,0.0,2099,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2144.9617188513644,3646.76,0.0,57054.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27168.571428571428,4,0,4_0,4_0 +5818,0.0,16.0,32.0,111,81,43,0.0,21,0.0,300.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,666.089278780956,0.0,0.0,21161.0,4,3,7,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11137.368421052632,1,0,1_1,1_0 +5819,3.0,3.0,24.0,111,38,30,0.0,2100,0.0,20.0,0.0,500.0,1.0,3.0,0.0,1.0,1.0,3570.6066819663615,1041.04,0.0,20072.0,1,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20072.0,3,0,3_0,3_0 +5820,6.0,6.0,27.0,111,52,71,0.0,2102,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,974.1473905265073,0.0,0.0,15259.0,4,3,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,11737.692307692307,1,0,1_1,1_0 +5821,10.0,10.0,45.0,111,37,20,0.0,2103,0.0,320.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,2573.6628589552,2850.12,0.0,131725.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,50663.46153846154,5,0,5,5_0 +5822,0.0,0.0,46.0,111,56,43,0.0,2105,0.0,0.0,0.0,326.0,2.0,4.0,0.0,2.0,1.5,1876.5082735941292,0.0,0.0,48864.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32576.0,5,0,5,5_0 +5823,0.0,0.0,37.0,111,63,50,0.0,2107,0.0,0.0,0.0,280.0,2.0,4.0,2.0,4.0,2.1,1128.8299385145856,3640.0,0.0,35020.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,16676.190476190477,2,0,2_1,2_0 +5824,7.0,7.0,55.0,221,54,60,0.0,2108,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2008.4694661419999,0.0,0.0,27909.0,1,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18606.0,2,0,2_0,2_0 +5825,2.0,5.0,83.0,300,72,70,0.0,211,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2241.924620846137,0.0,0.0,70517.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,47011.333333333336,5,0,5,5_1 +5826,0.0,0.0,48.0,111,54,30,0.0,2110,0.0,0.0,0.0,0.0,1.0,5.0,0.0,3.0,2.0,4231.8704034948505,0.0,0.0,39464.0,1,1,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19732.0,3,0,3_0,3_0 +5827,4.0,4.0,47.0,111,54,50,0.0,2111,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,779.5300469635339,0.0,0.0,7688.0,4,4,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,5125.333333333333,1,0,1_0,1_0 +5828,8.0,14.0,47.0,211,67,50,0.0,2112,0.0,0.0,200.0,0.0,1.0,6.0,0.0,2.0,1.5,1715.370571476457,1040.0,0.0,42186.0,1,2,2,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,28124.0,4,0,4_0,4_0 +5829,0.0,2.0,71.0,112,72,50,0.0,2113,0.0,800.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1606.4370870692396,1560.0,0.0,35270.0,5,1,8,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,23513.333333333332,3,0,3_0,3_1 +5830,10.0,17.0,52.0,111,37,31,0.0,2114,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1384.3669400440353,0.0,0.0,28456.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28456.0,4,0,4_0,4_0 +5831,7.0,7.0,76.0,211,75,60,0.0,2115,0.0,0.0,0.0,391.0,0.0,2.0,0.0,2.0,1.5,1752.13114776378,0.0,0.0,24730.0,5,3,3,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16486.666666666668,2,0,2_0,2_0 +5832,4.0,8.0,82.0,112,75,70,0.0,2116,0.0,600.0,0.0,900.0,0.0,3.0,0.0,2.0,1.5,3603.7290122605627,1716.0,0.0,48633.0,5,3,10,4.0,3,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,32422.0,5,0,5,5_0 +5833,0.0,0.0,58.0,300,22,60,0.0,2118,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2454.900182342084,5928.0,0.0,57133.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,38088.666666666664,5,0,5,5_1 +5834,10.0,11.0,55.0,300,78,71,0.0,2119,0.0,50.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3049.8983713718517,0.0,0.0,9720.0,7,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,9720.0,1,0,1_0,1_1 +5835,0.0,0.0,38.0,111,62,31,0.0,2120,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,619.8083266345321,3120.0,0.0,30376.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16875.555555555555,2,0,2_1,2_0 +5836,0.0,0.0,55.0,112,47,31,0.0,2121,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3985.610956304416,0.0,0.0,24146.0,1,1,10,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24146.0,4,0,4_0,4_0 +5837,9.0,16.0,43.0,111,46,31,0.0,2122,0.0,99999.0,30.0,323.0,1.0,4.0,3.0,5.0,2.4,2972.693476592196,0.0,0.0,27432.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,11430.0,1,0,1_1,1_0 +5838,11.0,11.0,41.0,111,47,12,0.0,2123,0.0,0.0,0.0,403.0,1.0,4.0,3.0,5.0,3.0,2836.798840073435,2340.52,0.0,28814.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,9604.666666666666,1,0,1_1,1_0 +5839,2.0,2.0,74.0,111,75,41,0.0,2124,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1393.1394836774168,0.0,0.0,46105.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,30736.666666666668,4,0,4_0,4_0 +5840,3.0,3.0,41.0,111,64,43,0.0,2125,0.0,30.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2217.8577051795787,2860.0,0.0,49052.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21326.956521739132,3,0,3_0,3_0 +5841,1.0,2.0,50.0,221,21,50,0.0,2128,0.0,150.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,445.0776495181777,0.0,0.0,18206.0,1,1,1,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,12137.333333333334,1,0,1_0,1_0 +5842,6.0,8.0,51.0,111,85,50,0.0,2129,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4732.385089387924,0.0,0.0,14230.0,7,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14230.0,2,0,2_1,2_0 +5843,2.0,2.0,53.0,111,65,71,0.0,213,0.0,0.0,350.0,365.0,3.0,4.0,1.0,3.0,2.0,1654.4424695896678,0.0,0.0,52020.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,26010.0,4,0,4_0,4_0 +5844,2.0,2.0,74.0,111,22,41,0.0,2130,0.0,20.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1715.460769476459,2609.88,0.0,143293.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,95528.66666666667,5,0,5,5_0 +5845,9.0,10.0,54.0,111,77,41,0.0,2132,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2241.921694122176,2080.0,0.0,20644.0,5,2,6,4.0,1,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,20644.0,3,0,3_0,3_0 +5846,5.0,6.0,53.0,111,37,12,0.0,2133,0.0,40.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1941.3354794186334,0.0,0.0,97134.0,1,2,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,48567.0,5,0,5,5_0 +5847,2.0,12.0,34.0,400,38,20,0.0,2134,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2235.756536486376,2867.28,0.0,59566.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28364.761904761905,4,0,4_0,4_1 +5848,4.0,4.0,93.0,221,78,71,0.0,2135,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2298.3333038257256,0.0,0.0,14620.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14620.0,2,0,2_0,2_0 +5849,2.0,2.0,63.0,112,78,50,0.0,2136,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2502.3213927431857,1040.52,0.0,33516.0,5,3,7,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,16758.0,2,0,2_0,2_0 +5850,3.0,13.0,68.0,211,72,50,0.0,2137,0.0,0.0,220.0,0.0,0.0,3.0,0.0,2.0,1.5,1377.9395378481606,1351.48,0.0,33901.0,5,1,2,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22600.666666666668,3,0,3_0,3_0 +5851,0.0,0.0,33.0,112,38,12,0.0,2138,0.0,0.0,0.0,0.0,3.0,6.0,0.0,3.0,2.0,2494.6497616209485,1560.0,0.0,122362.0,1,3,9,1.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,61181.0,5,0,5,5_0 +5852,9.0,9.0,35.0,111,34,20,0.0,2140,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4290.401333762586,1820.0,0.0,56006.0,1,1,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31114.444444444445,4,0,4_0,4_0 +5853,2.0,2.0,30.0,112,65,50,0.0,2141,0.0,800.0,280.0,0.0,2.0,7.0,2.0,4.0,2.1,2464.7212277949593,3640.0,0.0,32411.0,4,2,8,0.0,4,3.0,0.0,1.0,1,0,0,0,0,1,2.0,1.0,15433.809523809523,2,0,2_1,2_1 +5854,0.0,0.0,62.0,112,78,71,0.0,2144,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2181.388937400438,0.0,0.0,23450.0,5,1,8,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15633.333333333334,2,0,2_0,2_0 +5855,0.0,0.0,51.0,400,63,50,0.0,2145,0.0,0.0,0.0,317.0,4.0,4.0,2.0,4.0,2.5,2849.687040443022,0.0,0.0,32970.0,1,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13188.0,1,0,1_0,1_0 +5856,4.0,5.0,53.0,111,62,50,0.0,2148,0.0,0.0,50.0,0.0,2.0,4.0,1.0,3.0,2.0,2409.2001418225495,0.0,0.0,31171.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,15585.5,2,0,2_0,2_0 +5857,4.0,5.0,47.0,112,52,50,0.0,2149,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,2372.4282790616417,0.0,0.0,33443.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,11147.666666666666,1,0,1_1,1_1 +5858,1.0,14.0,46.0,112,63,71,0.0,2150,0.0,150.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,4680.672713039774,3122.08,0.0,21597.0,1,2,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,10798.5,1,0,1_0,1_0 +5859,0.0,0.0,64.0,111,31,10,0.0,2152,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2271.8677449941697,2624.44,0.0,26956.0,1,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26956.0,4,0,4_0,4_0 +5860,3.0,3.0,55.0,112,43,41,0.0,2153,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2879.0339398083543,0.0,0.0,32457.0,1,1,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,32457.0,5,0,5,5_0 +5861,1.0,13.0,78.0,400,78,50,2.0,2154,0.0,0.0,20.0,0.0,0.0,7.0,0.0,2.0,1.5,1984.828558769812,0.0,1000.0,23023.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,15348.666666666666,2,0,2_0,2_1 +5862,2.0,8.0,44.0,111,37,50,0.0,2155,0.0,10.0,0.0,900.0,1.0,4.0,2.0,4.0,2.1,4458.786122463821,3709.6800000000003,0.0,36167.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,17222.38095238095,2,0,2_0,2_0 +5863,0.0,0.0,77.0,300,86,60,0.0,2156,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2075.4750215273593,1081.08,0.0,9849.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9849.0,1,0,1_0,1_1 +5864,4.0,9.0,53.0,300,54,42,0.0,2158,0.0,160.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1760.6399982639325,0.0,0.0,40715.0,1,1,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,20357.5,3,0,3_1,3_0 +5865,6.0,6.0,73.0,111,74,10,0.0,2159,0.0,200.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1820.3961436883721,2288.0,0.0,84797.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,56531.333333333336,5,0,5,5_0 +5866,27.0,27.0,53.0,111,77,30,0.0,2160,0.0,350.0,10.0,88.0,0.0,2.0,0.0,1.0,1.0,2464.3899609904674,0.0,0.0,10269.0,7,3,8,7.0,1,3.0,0.0,0.0,0,0,0,1,0,1,2.0,1.0,10269.0,1,0,1_1,1_0 +5867,1.0,1.0,61.0,112,52,70,0.0,2161,0.0,0.0,0.0,460.0,1.0,3.0,0.0,1.0,1.0,2379.7167298891172,0.0,0.0,14350.0,1,3,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14350.0,2,0,2_0,2_1 +5868,0.0,0.0,48.0,300,46,60,0.0,2162,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2209.8950251106844,2600.0,0.0,49848.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24924.0,4,0,4_0,4_1 +5869,7.0,7.0,51.0,120,48,50,0.0,2164,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1936.8191676227214,0.0,0.0,51290.0,1,1,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25645.0,4,0,4_0,4_0 +5870,0.0,0.0,45.0,111,53,50,0.0,2165,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1534.1710405277504,0.0,0.0,30773.0,1,4,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20515.333333333332,3,0,3_0,3_0 +5871,0.0,0.0,86.0,111,75,60,0.0,2166,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2736.3010102514622,0.0,0.0,23650.0,5,1,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23650.0,3,0,3_0,3_0 +5872,6.0,10.0,39.0,111,48,60,0.0,2167,0.0,0.0,0.0,300.0,1.0,4.0,2.0,4.0,2.1,2523.8760666696235,1287.0,0.0,40835.0,1,3,9,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,19445.238095238095,3,0,3_0,3_0 +5873,0.0,4.0,63.0,400,77,71,2.0,2168,0.0,5.0,0.0,197.0,0.0,3.0,0.0,1.0,1.0,2141.858036336152,0.0,13000.0,11472.0,5,3,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,11472.0,1,0,1_1,1_0 +5874,1.0,1.0,51.0,111,38,12,0.0,2169,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2565.944943349859,0.0,0.0,193364.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,77345.6,5,0,5,5_0 +5875,0.0,0.0,39.0,112,47,31,0.0,2170,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2237.0724371722577,2795.0,0.0,57672.0,1,1,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32040.0,5,0,5,5_1 +5876,8.0,9.0,31.0,111,67,50,0.0,2171,0.0,600.0,0.0,226.0,1.0,3.0,2.0,4.0,2.1,3365.518469389851,1560.0,0.0,23546.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11212.380952380952,1,0,1_1,1_0 +5877,6.0,8.0,76.0,112,75,31,0.0,2172,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3119.0218921670785,2667.08,0.0,28714.0,5,1,7,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,28714.0,4,0,4_0,4_0 +5878,0.0,18.0,36.0,112,64,50,0.0,2173,0.0,0.0,10.0,0.0,2.0,7.0,2.0,4.0,2.1,2785.3302030038103,2548.0,0.0,39298.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,18713.333333333332,2,0,2_0,2_1 +5879,10.0,10.0,64.0,111,74,20,0.0,2175,0.0,0.0,300.0,0.0,0.0,2.0,0.0,1.0,1.0,2591.4404800225575,0.0,0.0,23065.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,23065.0,3,0,3_0,3_0 +5880,5.0,8.0,27.0,120,63,44,0.0,2177,0.0,135.0,0.0,293.0,1.0,1.0,0.0,1.0,1.0,4017.5196091312187,1820.0,0.0,18249.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18249.0,2,0,2_0,2_1 +5881,0.0,0.0,31.0,111,85,50,0.0,2178,0.0,0.0,0.0,0.0,0.0,5.0,5.0,6.0,2.7,863.7285865540624,0.0,0.0,29309.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10855.185185185184,1,0,1_1,1_0 +5882,0.0,0.0,60.0,111,75,71,0.0,2181,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1599.2683744636884,0.0,0.0,25680.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17120.0,2,0,2_0,2_0 +5883,0.0,0.0,52.0,111,45,31,0.0,2186,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2798.5202700695727,0.0,0.0,64169.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32084.5,5,0,5,5_0 +5884,13.0,13.0,47.0,111,52,41,0.0,2187,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,854.3415616176561,0.0,0.0,19893.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11051.666666666666,1,0,1_0,1_0 +5885,0.0,0.0,89.0,111,77,71,0.0,219,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2122.5787759992945,0.0,0.0,33963.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,33963.0,5,0,5,5_0 +5886,12.0,14.0,51.0,112,46,44,0.0,2190,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2415.5014932534787,0.0,0.0,19130.0,1,2,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19130.0,3,0,3_0,3_1 +5887,0.0,0.0,74.0,112,75,44,0.0,2191,0.0,0.0,0.0,0.0,1.0,5.0,0.0,3.0,2.0,1853.939147632323,0.0,0.0,53328.0,5,1,6,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26664.0,4,0,4_0,4_1 +5888,0.0,0.0,79.0,112,75,41,0.0,2192,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2100.396901716636,0.0,0.0,46459.0,5,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30972.666666666668,4,0,4_0,4_1 +5889,5.0,11.0,65.0,111,56,70,0.0,2193,0.0,0.0,0.0,305.0,1.0,4.0,0.0,2.0,1.5,2794.7619038877224,2314.52,0.0,26970.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17980.0,2,0,2_0,2_0 +5890,5.0,6.0,28.0,400,63,71,0.0,2194,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,201.30342027600958,217.88000000000002,0.0,12657.0,4,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,9736.153846153846,1,0,1_1,1_1 +5891,0.0,0.0,45.0,120,54,60,0.0,2196,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,650.8151682847385,5435.04,0.0,44368.0,1,2,0,2.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24648.888888888887,4,0,4_0,4_0 +5892,4.0,9.0,37.0,111,48,50,0.0,2198,0.0,120.0,100.0,0.0,2.0,3.0,1.0,3.0,1.8,3199.116091141041,4680.0,0.0,67011.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,37228.333333333336,5,0,5,5_0 +5893,2.0,17.0,51.0,111,35,30,0.0,2199,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2715.947735758242,0.0,0.0,70533.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,47022.0,5,0,5,5_0 +5894,4.0,4.0,66.0,111,75,33,0.0,220,0.0,20.0,80.0,295.0,0.0,2.0,0.0,1.0,1.0,2679.943942425379,0.0,0.0,13440.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,13440.0,1,0,1_1,1_0 +5895,4.0,4.0,34.0,111,56,50,0.0,2201,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2349.5232914782823,0.0,0.0,43248.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20594.285714285714,3,0,3_0,3_0 +5896,2.0,2.0,48.0,112,62,50,0.0,2202,0.0,250.0,150.0,0.0,1.0,5.0,0.0,2.0,1.5,1931.4874383139704,0.0,0.0,30470.0,1,3,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,20313.333333333332,3,0,3_0,3_1 +5897,0.0,0.0,76.0,111,75,50,0.0,2204,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2205.384994630893,0.0,0.0,45550.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30366.666666666668,4,0,4_0,4_0 +5898,13.0,13.0,33.0,300,43,33,0.0,2207,0.0,0.0,228.0,0.0,2.0,3.0,0.0,2.0,1.5,3164.877042168258,7838.48,0.0,49707.0,1,2,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,33138.0,5,0,5,5_0 +5899,12.0,12.0,45.0,111,46,20,0.0,2208,0.0,0.0,0.0,354.0,1.0,3.0,1.0,2.0,1.3,1072.3852922230894,0.0,0.0,20909.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,16083.846153846152,2,0,2_1,2_0 +5900,0.0,0.0,48.0,111,47,60,0.0,221,0.0,0.0,0.0,300.0,1.0,2.0,0.0,1.0,1.0,3304.536000534461,780.0,0.0,19876.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19876.0,3,0,3_0,3_0 +5901,0.0,0.0,81.0,300,78,70,0.0,2211,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2080.7696349000116,2236.0,0.0,23912.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15941.333333333334,2,0,2_0,2_1 +5902,20.0,31.0,55.0,111,35,20,0.0,2212,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1583.8867366692332,4770.48,0.0,133810.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,66905.0,5,0,5,5_0 +5903,6.0,15.0,27.0,111,85,60,0.0,2213,0.0,199998.0,0.0,84.0,0.0,3.0,1.0,2.0,1.3,1190.4963803913217,0.0,0.0,16823.0,6,3,4,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,12940.76923076923,1,0,1_1,1_0 +5904,7.0,7.0,74.0,111,77,50,0.0,2214,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3987.9738509091035,0.0,0.0,17816.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,17816.0,2,0,2_0,2_0 +5905,0.0,0.0,23.0,111,84,41,0.0,2215,0.0,0.0,0.0,411.0,1.0,3.0,0.0,2.0,1.5,5143.776998500972,0.0,0.0,19738.0,3,4,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13158.666666666666,1,0,1_1,1_0 +5906,22.0,22.0,73.0,300,71,44,0.0,2217,0.0,55.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1760.6367964665922,3315.0,0.0,9844.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,9844.0,1,0,1_0,1_1 +5907,0.0,27.0,48.0,120,43,33,0.0,2219,0.0,1070.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1581.8539047115034,2540.72,0.0,49832.0,1,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,33221.333333333336,5,0,5,5_1 +5908,3.0,11.0,34.0,111,85,42,0.0,222,0.0,99999.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2374.772682748881,0.0,0.0,28620.0,4,3,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,19080.0,3,0,3_0,3_0 +5909,4.0,6.0,44.0,300,54,50,0.0,2220,0.0,0.0,32.0,0.0,1.0,4.0,1.0,2.0,1.5,1479.5748839248433,3380.0,0.0,16833.0,1,3,0,0.0,2,1.0,1.0,1.0,1,0,0,0,0,1,1.0,0.0,11222.0,1,0,1_1,1_1 +5910,8.0,11.0,38.0,111,53,50,0.0,2221,0.0,100.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3975.7873021613846,0.0,0.0,35966.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23977.333333333332,4,0,4_0,4_0 +5911,5.0,5.0,63.0,111,78,50,0.0,2223,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2548.3070312638783,2340.0,0.0,43309.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28872.666666666668,4,0,4_0,4_0 +5912,5.0,7.0,56.0,300,38,30,0.0,2224,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1921.4526936783823,4201.6,0.0,64936.0,1,1,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,32468.0,5,0,5,5_0 +5913,4.0,4.0,79.0,111,77,70,0.0,2225,0.0,106.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1227.2190992227668,640.12,0.0,19750.0,5,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19750.0,3,0,3_0,3_0 +5914,1.0,19.0,79.0,111,74,12,0.0,2226,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1888.3005127870797,0.0,0.0,89287.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,59524.666666666664,5,0,5,5_0 +5915,7.0,8.0,72.0,111,78,71,0.0,2228,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1520.1890568617225,0.0,0.0,24098.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16065.333333333334,2,0,2_0,2_0 +5916,3.0,11.0,35.0,111,56,44,0.0,2229,0.0,300.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,531.687870148338,1300.0,0.0,21246.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,16343.076923076922,2,0,2_1,2_0 +5917,13.0,20.0,52.0,120,33,42,0.0,223,0.0,0.0,500.0,0.0,2.0,5.0,2.0,4.0,2.3,1667.8575317572622,0.0,0.0,77067.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,33507.39130434783,5,0,5,5_1 +5918,1.0,14.0,44.0,111,46,50,2.0,2230,0.0,0.0,0.0,630.0,2.0,4.0,2.0,4.0,2.1,1072.0282014606892,3971.2400000000002,1400.0,56363.0,1,3,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,26839.52380952381,4,0,4_0,4_0 +5919,6.0,7.0,61.0,111,78,50,0.0,2231,0.0,800.0,0.0,383.0,1.0,4.0,1.0,3.0,2.0,1570.576451910203,1041.04,0.0,17481.0,5,3,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,8740.5,1,0,1_0,1_0 +5920,0.0,0.0,46.0,111,65,42,0.0,2232,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2498.6217953107125,1820.0,0.0,38090.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38090.0,5,0,5,5_0 +5921,4.0,16.0,59.0,111,77,50,0.0,2233,0.0,0.0,50.0,0.0,1.0,6.0,0.0,2.0,1.5,1713.25727099008,0.0,0.0,40009.0,5,1,7,5.0,3,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,26672.666666666668,4,0,4_0,4_0 +5922,0.0,0.0,46.0,111,54,50,0.0,2234,0.0,0.0,0.0,0.0,3.0,6.0,3.0,4.0,2.3,358.4591492243524,4838.6,0.0,30819.0,1,4,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13399.565217391306,1,0,1_0,1_0 +5923,6.0,6.0,52.0,111,34,10,0.0,2235,0.0,10.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3485.087591950228,0.0,0.0,114814.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,57407.0,5,0,5,5_0 +5924,0.0,3.0,40.0,111,42,30,0.0,2237,0.0,0.0,21.0,0.0,1.0,3.0,2.0,3.0,1.6,1017.2579246926139,0.0,0.0,31180.0,1,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,19487.5,3,0,3_0,3_0 +5925,5.0,10.0,54.0,111,31,20,0.0,2238,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3786.4501370361695,0.0,0.0,50302.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,50302.0,5,0,5,5_0 +5926,5.0,7.0,29.0,111,46,20,0.0,2239,0.0,0.0,0.0,601.0,2.0,2.0,0.0,2.0,1.5,2903.3002156268176,5286.84,0.0,45032.0,1,3,8,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,30021.333333333332,4,0,4_0,4_0 +5927,3.0,11.0,59.0,112,56,60,0.0,224,0.0,200.0,0.0,460.0,1.0,3.0,0.0,1.0,1.0,2856.2335564025343,0.0,0.0,20354.0,1,3,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20354.0,3,0,3_0,3_0 +5928,2.0,9.0,50.0,111,38,10,0.0,2240,0.0,1500.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1624.1225417422688,0.0,0.0,76490.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,30596.0,4,0,4_0,4_0 +5929,0.0,0.0,46.0,112,43,33,0.0,2241,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1255.6775481471207,2574.0,0.0,59390.0,1,1,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25821.739130434784,4,0,4_0,4_1 +5930,5.0,9.0,56.0,112,45,42,0.0,2242,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,968.1063336998416,2996.76,0.0,32825.0,1,2,10,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32825.0,5,0,5,5_0 +5931,0.0,0.0,57.0,211,54,42,0.0,2244,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1219.499992180721,0.0,0.0,49495.0,1,1,2,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,32996.666666666664,5,0,5,5_0 +5932,5.0,5.0,71.0,111,77,44,0.0,2245,0.0,0.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,2553.9460439058685,0.0,0.0,15700.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,15700.0,2,0,2_0,2_0 +5933,9.0,10.0,59.0,211,54,70,0.0,2248,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2596.195221834065,2112.7599999999998,0.0,18905.0,1,3,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18905.0,3,0,3_0,3_0 +5934,0.0,5.0,83.0,112,77,71,0.0,2249,0.0,350.0,0.0,322.0,0.0,3.0,0.0,1.0,1.0,3964.579078695527,0.0,0.0,12357.0,5,3,10,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,12357.0,1,0,1_1,1_1 +5935,11.0,12.0,28.0,111,48,31,0.0,225,0.0,60.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2657.6418077695885,0.0,0.0,43020.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28680.0,4,0,4_0,4_0 +5936,0.0,0.0,45.0,111,31,10,0.0,2250,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,671.1867657173766,0.0,0.0,137087.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,65279.52380952381,5,0,5,5_0 +5937,0.0,0.0,82.0,300,71,71,0.0,2251,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2088.142890651839,0.0,0.0,24200.0,5,4,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16133.333333333334,2,0,2_0,2_1 +5938,10.0,10.0,73.0,111,74,12,0.0,2252,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1096.1133069973923,0.0,0.0,80063.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,53375.333333333336,5,0,5,5_0 +5939,0.0,0.0,77.0,112,77,50,0.0,2253,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2091.993722072692,0.0,0.0,31820.0,5,1,8,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21213.333333333332,3,0,3_0,3_0 +5940,4.0,4.0,64.0,112,74,12,0.0,2254,0.0,0.0,100.0,0.0,0.0,6.0,1.0,4.0,2.5,2839.8181729107273,2688.92,0.0,89019.0,5,1,6,0.0,5,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,35607.6,5,0,5,5_1 +5941,6.0,6.0,80.0,111,52,70,0.0,2255,0.0,12.0,0.0,388.0,1.0,3.0,0.0,1.0,1.0,1843.5485619648982,0.0,0.0,14570.0,5,3,7,5.0,1,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,14570.0,2,0,2_0,2_0 +5942,4.0,4.0,33.0,112,67,43,0.0,2256,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,1830.1829832563358,0.0,0.0,18193.0,4,2,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11370.625,1,0,1_0,1_1 +5943,6.0,11.0,67.0,111,75,50,0.0,2257,0.0,70.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1794.943092223229,1646.32,0.0,37794.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25196.0,4,0,4_0,4_0 +5944,11.0,11.0,70.0,112,78,70,0.0,2258,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1515.862810661972,0.0,0.0,40033.0,5,1,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20016.5,3,0,3_0,3_1 +5945,0.0,0.0,44.0,111,85,41,0.0,2260,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2620.178878719432,1040.0,0.0,10720.0,7,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,10720.0,1,0,1_0,1_0 +5946,0.0,0.0,49.0,111,54,42,0.0,2261,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2333.87620794663,777.4,0.0,30330.0,4,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20220.0,3,0,3_0,3_0 +5947,10.0,10.0,36.0,300,64,44,0.0,2262,0.0,500.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2195.5707561268905,4056.0,0.0,32579.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15513.809523809523,2,0,2_0,2_1 +5948,0.0,0.0,63.0,112,75,50,0.0,2264,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2287.6409071801463,0.0,0.0,18434.0,5,2,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18434.0,2,0,2_0,2_1 +5949,5.0,5.0,78.0,112,77,71,0.0,2265,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1713.486143165824,3380.0,0.0,25020.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16680.0,2,0,2_0,2_1 +5950,19.0,19.0,19.0,111,84,41,0.0,2266,0.0,0.0,0.0,430.0,0.0,1.0,0.0,1.0,1.0,3422.342679280248,0.0,0.0,6309.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,6309.0,1,0,1_0,1_0 +5951,3.0,3.0,36.0,211,37,31,0.0,2268,0.0,120.0,12.0,0.0,2.0,5.0,1.0,3.0,1.8,247.95709531215311,1040.0,0.0,53182.0,1,3,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,29545.555555555555,4,0,4_0,4_0 +5952,0.0,0.0,23.0,111,56,50,0.0,2269,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1119.9364095623844,0.0,0.0,14175.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10903.846153846154,1,0,1_1,1_0 +5953,7.0,10.0,79.0,111,74,60,0.0,2270,0.0,0.0,543.0,0.0,0.0,6.0,0.0,1.0,1.0,1844.9261518451547,0.0,0.0,55202.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,55202.0,5,0,5,5_0 +5954,2.0,13.0,45.0,300,62,71,0.0,2273,0.0,400.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1652.800863252032,0.0,0.0,18540.0,4,3,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,12360.0,1,0,1_1,1_1 +5955,4.0,7.0,39.0,112,38,12,0.0,2274,0.0,125.0,0.0,705.0,1.0,3.0,2.0,3.0,1.6,2605.8675775589454,2784.6,0.0,56515.0,1,3,9,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,35321.875,5,0,5,5_0 +5956,2.0,2.0,71.0,400,78,71,0.0,2275,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1961.9224508602483,1539.2,0.0,31561.0,5,4,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21040.666666666668,3,0,3_0,3_0 +5957,0.0,0.0,36.0,111,37,20,0.0,2276,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2900.7342985322944,3744.0,0.0,62923.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41948.666666666664,5,0,5,5_0 +5958,0.0,3.0,53.0,111,52,50,0.0,2277,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2450.0098675312543,579.28,0.0,39983.0,1,1,10,8.0,2,3.0,1.0,0.0,0,0,0,0,1,0,0.0,3.0,26655.333333333332,4,0,4_0,4_0 +5959,3.0,3.0,51.0,111,46,20,0.0,2278,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,2099.954088259402,0.0,0.0,10560.0,4,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,10560.0,1,0,1_0,1_0 +5960,0.0,0.0,37.0,120,62,31,0.0,2279,0.0,0.0,0.0,355.0,1.0,3.0,2.0,4.0,2.1,1542.7662092301632,1042.6000000000001,0.0,29853.0,1,3,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14215.714285714284,2,0,2_0,2_0 +5961,0.0,0.0,78.0,111,86,71,0.0,228,0.0,0.0,0.0,0.0,0.0,8.0,0.0,3.0,2.0,3118.421385417656,4123.599999999999,0.0,66045.0,5,1,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33022.5,5,0,5,5_0 +5962,7.0,13.0,80.0,111,78,50,0.0,2280,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2436.3821458387624,1560.0,0.0,21398.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21398.0,3,0,3_0,3_0 +5963,0.0,0.0,51.0,111,37,31,0.0,2281,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1843.36771725474,3086.72,0.0,97361.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,42330.86956521739,5,0,5,5_0 +5964,2.0,12.0,33.0,111,52,20,0.0,2285,0.0,0.0,0.0,447.0,1.0,3.0,0.0,1.0,1.0,954.6090788944387,2081.56,0.0,19691.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19691.0,3,0,3_0,3_0 +5965,6.0,6.0,45.0,111,52,70,0.0,2286,0.0,0.0,0.0,196.0,1.0,5.0,4.0,5.0,2.4,702.453457536964,0.0,0.0,33737.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,14057.083333333334,2,0,2_1,2_0 +5966,0.0,0.0,93.0,111,75,41,0.0,2287,0.0,0.0,0.0,510.0,0.0,2.0,0.0,1.0,1.0,4186.825072202494,0.0,0.0,35394.0,5,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,35394.0,5,0,5,5_0 +5967,0.0,12.0,64.0,112,75,41,0.0,2288,0.0,0.0,450.0,0.0,0.0,3.0,0.0,1.0,1.0,2097.3766082672596,0.0,0.0,24211.0,5,1,9,2.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,24211.0,4,0,4_0,4_0 +5968,5.0,5.0,40.0,300,85,50,0.0,2289,0.0,0.0,300.0,0.0,1.0,3.0,2.0,4.0,2.3,2680.016540496395,2340.0,0.0,20972.0,7,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,9118.260869565218,1,0,1_1,1_1 +5969,2.0,2.0,91.0,112,72,71,0.0,229,0.0,0.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,2577.0266063261697,0.0,0.0,15093.0,5,1,9,2.0,1,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,15093.0,2,0,2_0,2_0 +5970,6.0,10.0,80.0,111,77,50,0.0,2290,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1527.074899545536,0.0,0.0,35796.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,23864.0,4,0,4_0,4_0 +5971,2.0,9.0,41.0,111,48,31,0.0,2291,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1993.3584473001517,6604.52,0.0,56807.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,31559.444444444445,4,0,4_0,4_0 +5972,0.0,8.0,36.0,111,47,31,0.0,2292,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2249.1779134099543,0.0,0.0,26662.0,1,2,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,26662.0,4,0,4_0,4_0 +5973,0.0,0.0,48.0,111,54,71,0.0,2294,0.0,0.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,1419.3705899179151,2080.0,0.0,12157.0,4,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8104.666666666667,1,0,1_1,1_0 +5974,0.0,0.0,56.0,112,33,41,0.0,2295,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,5514.939629614808,5720.0,0.0,81939.0,1,1,7,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,40969.5,5,0,5,5_0 +5975,1.0,5.0,28.0,111,38,12,0.0,2296,0.0,99999.0,100084.0,726.0,2.0,3.0,0.0,2.0,1.5,4149.487423288645,2655.12,0.0,70019.0,1,3,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,46679.333333333336,5,0,5,5_0 +5976,1.0,10.0,57.0,111,52,50,2.0,2298,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2055.4231880760694,387.92,6000.0,32996.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,21997.333333333332,3,0,3_0,3_0 +5977,12.0,12.0,52.0,400,45,42,0.0,2299,0.0,199998.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1694.155040958452,0.0,0.0,36484.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24322.666666666668,4,0,4_0,4_1 +5978,3.0,3.0,37.0,111,67,71,0.0,23,0.0,50.0,0.0,582.0,2.0,3.0,0.0,2.0,1.5,3471.1368200759825,0.0,0.0,35760.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23840.0,4,0,4_0,4_0 +5979,5.0,5.0,36.0,111,62,43,0.0,2301,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2519.9284646920632,0.0,0.0,51171.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28428.333333333332,4,0,4_0,4_0 +5980,0.0,0.0,55.0,111,38,31,0.0,2302,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1747.4773307773119,1560.0,0.0,67449.0,1,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,44966.0,5,0,5,5_0 +5981,3.0,4.0,68.0,112,77,60,0.0,2303,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1650.7863430261013,1956.7600000000002,0.0,24202.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24202.0,4,0,4_0,4_1 +5982,9.0,14.0,51.0,300,47,50,0.0,2304,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1916.446092022061,2080.0,0.0,65604.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,26241.6,4,0,4_0,4_1 +5983,6.0,6.0,71.0,112,75,60,0.0,2305,0.0,0.0,30.0,0.0,0.0,4.0,0.0,1.0,1.0,2326.0136421609172,0.0,0.0,22535.0,5,1,10,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22535.0,3,0,3_0,3_0 +5984,7.0,9.0,64.0,111,72,50,0.0,2306,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3395.7368685566803,8511.36,0.0,33111.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22074.0,3,0,3_0,3_0 +5985,3.0,3.0,69.0,111,75,50,0.0,2307,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1166.1765423590982,0.0,0.0,25678.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17118.666666666668,2,0,2_0,2_0 +5986,0.0,0.0,53.0,111,34,31,0.0,2308,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2536.184237756078,0.0,0.0,32992.0,1,2,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32992.0,5,0,5,5_0 +5987,3.0,15.0,66.0,111,77,71,0.0,2309,0.0,80.0,250.0,356.0,0.0,2.0,0.0,1.0,1.0,1710.481010338618,0.0,0.0,17348.0,5,3,7,5.0,1,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,17348.0,2,0,2_0,2_0 +5988,4.0,4.0,49.0,111,33,20,0.0,231,0.0,0.0,0.0,0.0,2.0,9.0,3.0,5.0,2.8,1776.9951313003755,468.0,0.0,79178.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,28277.857142857145,4,0,4_0,4_0 +5989,4.0,4.0,57.0,111,33,31,0.0,2311,0.0,900.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1205.9478761414593,2964.0,0.0,80997.0,1,1,7,5.0,3,4.0,0.0,0.0,0,0,1,0,0,0,1.0,3.0,53998.0,5,0,5,5_0 +5990,4.0,21.0,60.0,300,77,60,0.0,2312,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2057.8783953377488,2028.0,0.0,27085.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18056.666666666668,2,0,2_0,2_1 +5991,4.0,15.0,54.0,111,46,71,0.0,2313,0.0,720.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2336.9492687335055,0.0,0.0,70963.0,1,1,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,47308.666666666664,5,0,5,5_0 +5992,0.0,0.0,65.0,112,47,41,0.0,2314,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1182.310194204795,3120.0,0.0,29944.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19962.666666666668,3,0,3_0,3_1 +5993,0.0,0.0,32.0,111,37,0,0.0,2315,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2388.179403365089,4160.0,0.0,69300.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38500.0,5,0,5,5_0 +5994,0.0,0.0,82.0,112,75,41,0.0,2316,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4115.552751835384,1690.52,0.0,47982.0,5,1,3,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31988.0,5,0,5,5_1 +5995,5.0,7.0,31.0,111,46,0,0.0,2318,0.0,0.0,200.0,0.0,2.0,3.0,1.0,3.0,1.8,2628.4120902337436,0.0,0.0,35241.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,19578.333333333332,3,0,3_0,3_0 +5996,0.0,0.0,24.0,112,52,31,0.0,2319,0.0,0.0,0.0,208.0,1.0,4.0,2.0,3.0,2.0,2951.638999388825,0.0,0.0,32107.0,1,3,10,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,16053.5,2,0,2_1,2_0 +5997,3.0,3.0,80.0,111,74,44,0.0,232,0.0,300.0,170.0,0.0,0.0,5.0,0.0,2.0,1.5,1739.6250753001011,0.0,0.0,70727.0,5,1,7,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,47151.333333333336,5,0,5,5_0 +5998,6.0,6.0,42.0,112,38,20,0.0,2321,0.0,0.0,99999.0,0.0,2.0,5.0,0.0,2.0,1.5,2295.8169611756275,0.0,0.0,63224.0,1,2,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,42149.333333333336,5,0,5,5_1 +5999,8.0,8.0,51.0,111,43,20,0.0,2322,0.0,0.0,0.0,286.0,1.0,1.0,0.0,1.0,1.0,2952.5376784999034,0.0,0.0,27580.0,1,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,27580.0,4,0,4_0,4_0 +6000,3.0,9.0,47.0,111,46,42,0.0,2323,0.0,60.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,533.1145963700695,0.0,0.0,27010.0,1,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27010.0,4,0,4_0,4_0 +6001,3.0,3.0,83.0,111,74,60,0.0,2324,0.0,0.0,160.0,0.0,0.0,3.0,0.0,1.0,1.0,4985.443781578632,0.0,0.0,33905.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,33905.0,5,0,5,5_0 +6002,2.0,3.0,37.0,112,43,31,0.0,2325,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2291.1850941550415,0.0,0.0,34963.0,1,1,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13447.307692307691,1,0,1_0,1_0 +6003,0.0,0.0,98.0,111,86,30,0.0,2326,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2393.65972007112,0.0,0.0,42830.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42830.0,5,0,5,5_0 +6004,17.0,17.0,21.0,112,55,31,0.0,2328,0.0,0.0,0.0,244.0,2.0,1.0,0.0,2.0,1.5,2825.8842789859923,2600.0,0.0,32310.0,1,3,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21540.0,3,0,3_0,3_1 +6005,4.0,4.0,63.0,300,75,44,0.0,233,0.0,0.0,99999.0,0.0,1.0,6.0,1.0,3.0,2.0,1590.9436830523014,3674.3199999999997,0.0,29020.0,5,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14510.0,2,0,2_0,2_1 +6006,1.0,1.0,63.0,112,78,71,1.0,2330,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,503.20589446988953,2786.16,16057.0,22570.0,5,1,4,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,15046.666666666666,2,0,2_0,2_1 +6007,0.0,0.0,69.0,300,78,70,0.0,2331,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1589.3762288171479,0.0,0.0,30420.0,5,2,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20280.0,3,0,3_0,3_0 +6008,0.0,0.0,63.0,112,77,50,0.0,2332,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1696.2649554694437,0.0,0.0,26000.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17333.333333333332,2,0,2_0,2_0 +6009,0.0,0.0,32.0,111,46,42,0.0,2333,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2448.327372466112,2348.3199999999997,0.0,47567.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31711.333333333332,4,0,4_0,4_0 +6010,1.0,7.0,53.0,112,34,31,2.0,2335,0.0,150.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1217.5323312608166,5878.6,5600.0,54786.0,1,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,36524.0,5,0,5,5_0 +6011,0.0,9.0,47.0,111,38,10,0.0,2336,0.0,0.0,220.0,0.0,2.0,5.0,3.0,5.0,2.6,1491.3856346846046,5839.08,0.0,115100.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,44269.230769230766,5,0,5,5_0 +6012,0.0,0.0,37.0,111,56,41,0.0,234,0.0,0.0,0.0,828.0,1.0,3.0,2.0,3.0,1.6,1129.3245660518598,0.0,0.0,8494.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,5308.75,1,0,1_1,1_0 +6013,0.0,0.0,71.0,400,72,50,0.0,2341,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1578.566713696858,0.0,0.0,22808.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15205.333333333334,2,0,2_0,2_1 +6014,1.0,1.0,74.0,112,77,33,0.0,2342,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1208.254011637604,265.72,0.0,47361.0,5,1,10,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,31574.0,4,0,4_0,4_0 +6015,3.0,3.0,49.0,112,56,50,0.0,2343,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2613.0957924634135,2308.7999999999997,0.0,35816.0,1,3,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14326.4,2,0,2_0,2_0 +6016,0.0,0.0,78.0,112,75,44,0.0,2345,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1867.3663903407812,2156.96,0.0,29296.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19530.666666666668,3,0,3_0,3_1 +6017,7.0,18.0,21.0,111,84,30,0.0,2346,0.0,400.0,40.0,259.0,0.0,1.0,0.0,1.0,1.0,2788.867927489033,0.0,0.0,2126.0,3,3,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,2126.0,1,0,1_1,1_0 +6018,1.0,1.0,45.0,400,67,71,2.0,2348,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2631.5866802271094,1300.0,9600.0,47619.0,1,3,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,23809.5,4,0,4_1,4_1 +6019,22.0,22.0,64.0,300,75,41,0.0,2349,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2772.2805282127033,0.0,0.0,26382.0,5,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,26382.0,4,0,4_0,4_0 +6020,3.0,5.0,59.0,111,47,42,0.0,235,0.0,700.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2130.6599406987716,0.0,0.0,37980.0,1,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25320.0,4,0,4_0,4_0 +6021,0.0,0.0,64.0,111,78,42,0.0,2350,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1836.0789459817008,5027.88,0.0,44326.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29550.666666666668,4,0,4_0,4_0 +6022,2.0,22.0,25.0,111,85,30,0.0,2351,0.0,90.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3807.3933526374703,3016.0,0.0,38188.0,4,3,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,25458.666666666668,4,0,4_0,4_0 +6023,0.0,0.0,42.0,120,55,31,0.0,2352,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2413.125075961754,3900.0,0.0,47379.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19741.25,3,0,3_0,3_1 +6024,0.0,0.0,57.0,111,22,71,0.0,2353,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2447.491158098334,2735.2000000000003,0.0,24014.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16009.333333333334,2,0,2_0,2_0 +6025,20.0,25.0,70.0,111,75,41,0.0,2354,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1990.374015941419,2600.0,0.0,46361.0,5,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,30907.333333333332,4,0,4_0,4_0 +6026,4.0,6.0,66.0,112,75,33,0.0,2356,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,2031.2664529812766,3848.0,0.0,48514.0,5,1,8,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32342.666666666668,5,0,5,5_0 +6027,2.0,2.0,49.0,111,85,31,0.0,2357,0.0,99999.0,0.0,0.0,0.0,3.0,1.0,3.0,1.8,1448.2367232873237,0.0,0.0,25130.0,4,4,8,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,13961.111111111111,2,0,2_0,2_0 +6028,3.0,20.0,84.0,400,74,30,0.0,2358,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1783.9016725123292,0.0,0.0,26894.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17929.333333333332,2,0,2_0,2_0 +6029,7.0,12.0,67.0,211,75,50,0.0,2359,0.0,510.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1815.4885102374292,1820.0,0.0,23266.0,5,1,3,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,23266.0,3,0,3_0,3_0 +6030,3.0,3.0,65.0,111,74,71,0.0,236,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2076.7300452433155,0.0,0.0,47539.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,31692.666666666668,4,0,4_0,4_0 +6031,0.0,0.0,70.0,111,77,41,0.0,2360,0.0,0.0,0.0,237.0,0.0,2.0,0.0,1.0,1.0,3932.023392818484,0.0,0.0,13691.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13691.0,1,0,1_1,1_0 +6032,16.0,16.0,45.0,111,43,33,0.0,2362,0.0,0.0,0.0,402.0,1.0,4.0,3.0,4.0,2.3,773.4507043204417,4160.0,0.0,42138.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,18320.869565217392,2,0,2_1,2_0 +6033,5.0,7.0,41.0,111,52,71,0.0,2363,0.0,0.0,0.0,332.0,2.0,3.0,2.0,4.0,2.3,865.1933646358419,0.0,0.0,36205.0,1,3,7,5.0,4,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,15741.304347826088,2,0,2_0,2_0 +6034,0.0,0.0,34.0,111,53,43,0.0,2364,0.0,0.0,0.0,0.0,2.0,2.0,4.0,6.0,2.7,3159.285033894001,0.0,0.0,44633.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,16530.74074074074,2,0,2_1,2_0 +6035,8.0,19.0,69.0,400,74,31,0.0,2368,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1555.7926038681028,0.0,0.0,19418.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19418.0,3,0,3_0,3_0 +6036,6.0,11.0,71.0,111,31,31,0.0,2369,0.0,0.0,90.0,0.0,1.0,4.0,0.0,2.0,1.5,2530.8886282075205,0.0,0.0,34173.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,22782.0,3,0,3_0,3_0 +6037,2.0,16.0,29.0,221,63,42,0.0,2370,0.0,0.0,0.0,244.0,1.0,5.0,0.0,1.0,1.0,3242.5792427243255,0.0,0.0,12892.0,1,3,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,12892.0,1,0,1_1,1_0 +6038,7.0,24.0,33.0,111,46,0,0.0,2371,0.0,0.0,0.0,680.0,1.0,3.0,0.0,1.0,1.0,3002.0912114053995,0.0,0.0,26670.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26670.0,4,0,4_0,4_0 +6039,12.0,12.0,57.0,112,48,50,0.0,2372,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1446.9988581159323,2860.0,0.0,49360.0,1,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,32906.666666666664,5,0,5,5_1 +6040,0.0,0.0,51.0,111,37,30,0.0,2373,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1584.0367545012507,4004.0,0.0,146310.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,56273.07692307692,5,0,5,5_0 +6041,3.0,3.0,75.0,111,75,70,0.0,2374,0.0,99999.0,0.0,311.0,0.0,3.0,0.0,2.0,1.5,2824.722039778025,0.0,0.0,22016.0,5,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,14677.333333333334,2,0,2_0,2_0 +6042,5.0,5.0,37.0,111,85,41,0.0,2375,0.0,0.0,0.0,0.0,1.0,3.0,4.0,6.0,3.1,2129.3665472372477,0.0,0.0,26310.0,6,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,8487.096774193547,1,0,1_1,1_0 +6043,4.0,9.0,82.0,111,72,70,0.0,2377,0.0,330.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3795.217063881586,0.0,0.0,17698.0,5,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,11798.666666666666,1,0,1_0,1_0 +6044,0.0,0.0,74.0,112,75,30,0.0,2379,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1432.9043616448062,0.0,0.0,57069.0,5,1,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,38046.0,5,0,5,5_0 +6045,6.0,6.0,61.0,111,77,50,0.0,238,0.0,0.0,15.0,0.0,0.0,3.0,0.0,2.0,1.5,2367.988830647579,0.0,0.0,42850.0,5,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,28566.666666666668,4,0,4_0,4_0 +6046,0.0,0.0,68.0,111,72,30,0.0,2380,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1649.10870191328,7468.759999999999,0.0,48920.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32613.333333333332,5,0,5,5_0 +6047,0.0,0.0,34.0,111,12,50,0.0,2381,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2896.871851242978,0.0,0.0,70636.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39242.22222222222,5,0,5,5_0 +6048,0.0,0.0,53.0,112,38,12,0.0,2382,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,987.4919473768102,2831.4,0.0,47873.0,1,2,10,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19947.083333333336,3,0,3_0,3_0 +6049,6.0,6.0,52.0,111,62,71,0.0,2383,0.0,200.0,100.0,0.0,3.0,5.0,1.0,3.0,2.0,3068.0944627789336,0.0,0.0,55601.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27800.5,4,0,4_0,4_0 +6050,0.0,0.0,49.0,120,48,50,0.0,2385,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2052.3962050443624,6032.0,0.0,57827.0,1,2,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23130.8,3,0,3_0,3_0 +6051,19.0,19.0,42.0,111,63,50,0.0,2386,0.0,0.0,0.0,130.0,1.0,2.0,0.0,1.0,1.0,2881.682087346221,0.0,0.0,9510.0,4,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,9510.0,1,0,1_1,1_0 +6052,8.0,13.0,51.0,111,34,10,0.0,2387,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2625.501997358678,0.0,0.0,71046.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,33831.42857142857,5,0,5,5_0 +6053,2.0,2.0,86.0,300,77,70,0.0,2388,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2842.095070844801,0.0,0.0,9801.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9801.0,1,0,1_0,1_1 +6054,0.0,0.0,47.0,111,23,20,0.0,2389,0.0,0.0,0.0,2499.0,2.0,5.0,2.0,4.0,2.1,4095.6207644316705,3843.3199999999997,0.0,189511.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,90243.33333333333,5,0,5,5_0 +6055,0.0,6.0,53.0,300,56,60,0.0,239,0.0,0.0,40.0,0.0,3.0,8.0,1.0,3.0,2.0,1891.9308483374618,6760.0,0.0,31070.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15535.0,2,0,2_0,2_1 +6056,0.0,0.0,85.0,112,75,70,0.0,2390,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1738.8763431261239,0.0,0.0,36147.0,5,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24098.0,4,0,4_0,4_0 +6057,2.0,2.0,69.0,111,72,50,0.0,2391,0.0,270.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2524.3996919475303,0.0,0.0,12725.0,5,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,12725.0,1,0,1_1,1_0 +6058,2.0,12.0,41.0,112,63,50,0.0,2392,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2048.015701868584,1118.0,0.0,37722.0,1,2,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15088.8,2,0,2_0,2_0 +6059,8.0,8.0,40.0,111,46,30,0.0,2395,0.0,0.0,80.0,0.0,1.0,5.0,0.0,1.0,1.0,536.4154984458414,0.0,0.0,27187.0,1,2,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,27187.0,4,0,4_0,4_0 +6060,3.0,3.0,45.0,111,85,71,0.0,2396,0.0,30.0,0.0,0.0,0.0,4.0,2.0,3.0,1.8,1096.8360412649733,0.0,0.0,15106.0,6,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,8392.222222222223,1,0,1_1,1_0 +6061,4.0,11.0,49.0,111,22,31,0.0,2397,0.0,0.0,0.0,600.0,2.0,4.0,0.0,2.0,1.5,3598.8457283394796,0.0,0.0,40670.0,1,3,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,27113.333333333332,4,0,4_0,4_0 +6062,0.0,0.0,58.0,112,52,50,0.0,2398,0.0,0.0,0.0,0.0,2.0,5.0,2.0,3.0,2.0,1674.6322148312333,1560.0,0.0,39380.0,1,1,9,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19690.0,3,0,3_0,3_0 +6063,0.0,0.0,70.0,120,75,60,0.0,2399,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2253.4373565090054,0.0,0.0,30472.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20314.666666666668,3,0,3_0,3_1 +6064,4.0,4.0,57.0,300,47,50,0.0,24,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1991.7174274932624,4368.0,0.0,28450.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18966.666666666668,3,0,3_0,3_1 +6065,18.0,18.0,77.0,111,75,60,0.0,240,0.0,99999.0,0.0,590.0,0.0,4.0,0.0,2.0,1.5,2448.5727897399493,1962.48,0.0,40578.0,5,3,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,27052.0,4,0,4_0,4_0 +6066,5.0,5.0,71.0,112,78,71,0.0,2400,0.0,10.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1660.2957410872637,0.0,0.0,21910.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14606.666666666666,2,0,2_0,2_1 +6067,4.0,11.0,90.0,111,78,71,0.0,2401,0.0,120.0,120.0,150.0,0.0,5.0,1.0,3.0,2.0,1310.4419420436861,0.0,0.0,34059.0,5,3,8,7.0,5,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,17029.5,2,0,2_1,2_0 +6068,0.0,0.0,66.0,111,75,33,0.0,2402,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2983.3016165779777,2019.6800000000003,0.0,61150.0,5,1,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30575.0,4,0,4_0,4_0 +6069,3.0,3.0,59.0,400,56,70,0.0,2403,0.0,220.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2002.6700839838288,0.0,0.0,9022.0,4,3,0,0.0,1,2.0,1.0,1.0,1,0,0,0,0,1,0.0,2.0,9022.0,1,0,1_1,1_1 +6070,5.0,16.0,76.0,112,77,70,0.0,2404,0.0,0.0,0.0,271.0,0.0,3.0,0.0,2.0,1.5,3788.5007890366824,0.0,0.0,14642.0,5,3,9,3.0,5,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,9761.333333333334,1,0,1_1,1_0 +6071,8.0,8.0,73.0,111,75,50,0.0,2405,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1275.563308317706,2860.0,0.0,26040.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17360.0,2,0,2_0,2_0 +6072,0.0,0.0,56.0,400,67,50,0.0,2406,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1633.9950998615855,1989.0,0.0,13820.0,1,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13820.0,1,0,1_0,1_1 +6073,2.0,14.0,61.0,211,56,50,0.0,2407,0.0,450.0,0.0,543.0,1.0,3.0,0.0,1.0,1.0,2053.9358518476356,2112.24,0.0,19291.0,1,3,4,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,19291.0,3,0,3_0,3_0 +6074,3.0,4.0,34.0,400,64,50,0.0,2408,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2232.7132078807435,2964.0,0.0,20510.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20510.0,3,0,3_0,3_1 +6075,0.0,0.0,81.0,400,71,70,0.0,2409,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2059.1014472278744,0.0,0.0,25040.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25040.0,4,0,4_0,4_0 +6076,0.0,14.0,55.0,111,22,50,2.0,2410,0.0,450.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2475.7174595231622,1875.64,2400.0,79245.0,1,1,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,52830.0,5,0,5,5_0 +6077,7.0,7.0,66.0,111,77,70,0.0,2411,0.0,0.0,0.0,318.0,0.0,3.0,0.0,1.0,1.0,2636.1813807625545,0.0,0.0,26120.0,5,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,26120.0,4,0,4_0,4_0 +6078,0.0,0.0,63.0,300,74,31,0.0,2412,0.0,0.0,0.0,0.0,0.0,9.0,0.0,1.0,1.0,2146.9638728909863,0.0,0.0,-10517.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,-10517.0,1,0,1_0,1_1 +6079,4.0,6.0,82.0,112,78,50,0.0,2413,0.0,99999.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2844.30570236101,0.0,0.0,26097.0,5,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17398.0,2,0,2_0,2_1 +6080,1.0,1.0,28.0,120,64,60,0.0,2414,0.0,70.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2320.8900433925987,5027.360000000001,0.0,30586.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,16992.222222222223,2,0,2_1,2_1 +6081,0.0,0.0,51.0,111,54,41,0.0,2415,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4057.542473729737,0.0,0.0,52162.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,52162.0,5,0,5,5_0 +6082,2.0,7.0,56.0,112,52,50,0.0,2416,0.0,120.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1989.0357983665103,3090.36,0.0,33551.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22367.333333333332,3,0,3_0,3_1 +6083,6.0,6.0,30.0,120,63,44,0.0,2417,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,3344.5254910728772,4197.96,0.0,27998.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,13332.380952380952,1,0,1_1,1_1 +6084,7.0,19.0,66.0,400,75,33,0.0,2418,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2357.0067357918283,2444.0,0.0,27590.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,27590.0,4,0,4_0,4_1 +6085,2.0,4.0,51.0,111,43,71,0.0,2419,0.0,50.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,1707.6600074697355,1144.0,0.0,22144.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,14762.666666666666,2,0,2_0,2_0 +6086,8.0,13.0,81.0,211,74,50,0.0,242,0.0,300.0,300.0,0.0,0.0,4.0,0.0,2.0,1.5,1331.2419211087408,2860.0,0.0,56917.0,5,1,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,37944.666666666664,5,0,5,5_0 +6087,2.0,11.0,68.0,112,78,70,0.0,2421,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4086.7149826920604,0.0,0.0,19401.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19401.0,3,0,3_0,3_1 +6088,1.0,1.0,33.0,112,63,43,1.0,2422,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2561.67573186929,0.0,14000.0,35990.0,1,3,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19994.444444444445,3,0,3_0,3_1 +6089,1.0,6.0,48.0,300,31,12,2.0,2424,0.0,500.0,0.0,0.0,2.0,8.0,3.0,7.0,3.4,3133.543095823109,4611.88,10600.0,47484.0,1,2,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13965.882352941177,2,0,2_0,2_1 +6090,5.0,5.0,31.0,111,47,31,0.0,2425,0.0,400.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2130.1408669152997,0.0,0.0,47192.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26217.777777777777,4,0,4_0,4_0 +6091,10.0,13.0,33.0,111,54,31,0.0,2426,0.0,350.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,294.29356957855265,0.0,0.0,26489.0,1,1,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16555.625,2,0,2_0,2_0 +6092,1.0,11.0,61.0,300,63,50,2.0,2427,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1834.2319225797557,2860.0,6300.0,60112.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,40074.666666666664,5,0,5,5_1 +6093,2.0,2.0,73.0,112,78,50,0.0,2429,0.0,0.0,100.0,0.0,0.0,4.0,1.0,2.0,1.5,2321.306286136014,1040.0,0.0,29665.0,5,1,8,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19776.666666666668,3,0,3_0,3_1 +6094,2.0,5.0,58.0,112,55,44,0.0,243,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1563.0120503487074,0.0,0.0,51383.0,1,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,34255.333333333336,5,0,5,5_0 +6095,2.0,4.0,75.0,112,78,71,0.0,2430,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1972.6685560816923,3017.56,0.0,24575.0,5,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16383.333333333334,2,0,2_0,2_1 +6096,4.0,4.0,85.0,111,78,50,0.0,2431,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,2286.805070044833,0.0,0.0,24510.0,5,1,5,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,24510.0,4,0,4_0,4_0 +6097,10.0,22.0,20.0,111,84,41,0.0,2432,0.0,0.0,120.0,338.0,0.0,1.0,0.0,1.0,1.0,3781.1967153289693,0.0,0.0,2546.0,3,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,1,2.0,0.0,2546.0,1,0,1_1,1_0 +6098,0.0,1.0,23.0,111,47,30,2.0,2434,0.0,0.0,0.0,560.0,1.0,1.0,0.0,1.0,1.0,5673.0197444106425,0.0,23000.0,35477.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,35477.0,5,0,5,5_0 +6099,6.0,6.0,45.0,112,42,30,0.0,2435,0.0,99999.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,810.5532198813985,0.0,0.0,29551.0,1,2,9,3.0,2,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,16417.222222222223,2,0,2_0,2_0 +6100,3.0,15.0,41.0,111,63,71,0.0,2437,0.0,0.0,30.0,0.0,1.0,3.0,1.0,2.0,1.3,1263.970989990441,0.0,0.0,23842.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,18340.0,2,0,2_1,2_0 +6101,0.0,0.0,20.0,112,53,41,0.0,2438,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3794.1619585155677,0.0,0.0,9534.0,1,4,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9534.0,1,0,1_0,1_0 +6102,4.0,6.0,82.0,111,78,70,0.0,2440,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2215.7935674198065,0.0,0.0,30869.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,20579.333333333332,3,0,3_0,3_0 +6103,2.0,7.0,46.0,111,35,71,0.0,2441,0.0,1000.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,728.8563451769818,0.0,0.0,12644.0,1,3,8,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,9726.153846153846,1,0,1_1,1_0 +6104,6.0,11.0,26.0,111,37,0,0.0,2442,0.0,99999.0,199998.0,0.0,1.0,2.0,0.0,1.0,1.0,4639.316328886995,0.0,0.0,27430.0,1,2,10,8.0,1,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,27430.0,4,0,4_0,4_0 +6105,11.0,11.0,56.0,112,43,33,0.0,2444,0.0,0.0,0.0,670.0,1.0,4.0,1.0,3.0,2.0,1910.3075200647902,2581.8,0.0,34660.0,1,3,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17330.0,2,0,2_0,2_1 +6106,1.0,2.0,49.0,111,64,50,2.0,2446,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1734.7933967051572,2600.0,6000.0,39860.0,1,2,4,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22144.444444444445,3,0,3_0,3_0 +6107,3.0,3.0,36.0,111,56,71,0.0,2447,0.0,0.0,30.0,0.0,1.0,4.0,5.0,7.0,3.2,2032.3951214136123,0.0,0.0,33710.0,4,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,10534.375,1,0,1_1,1_0 +6108,15.0,15.0,61.0,111,86,70,0.0,2448,0.0,0.0,0.0,364.0,1.0,4.0,0.0,2.0,1.5,2771.482224557062,2080.0,0.0,32740.0,4,3,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21826.666666666668,3,0,3_0,3_0 +6109,8.0,8.0,80.0,112,75,71,0.0,2449,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1765.5392893064038,0.0,0.0,47103.0,5,1,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23551.5,3,0,3_0,3_0 +6110,11.0,12.0,76.0,111,74,31,0.0,2451,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2730.286807505118,0.0,0.0,53923.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,35948.666666666664,5,0,5,5_0 +6111,2.0,2.0,21.0,111,84,30,0.0,2452,0.0,0.0,0.0,114.0,0.0,1.0,0.0,1.0,1.0,5818.81331962967,0.0,0.0,5700.0,3,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,5700.0,1,0,1_1,1_0 +6112,7.0,7.0,44.0,111,33,20,0.0,2454,0.0,0.0,0.0,0.0,2.0,5.0,2.0,3.0,1.8,602.0386413989345,1872.0,0.0,52211.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29006.11111111111,4,0,4_0,4_0 +6113,0.0,0.0,61.0,112,42,31,0.0,2457,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1772.0534488070218,2094.04,0.0,47674.0,5,1,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31782.666666666668,5,0,5,5_0 +6114,4.0,4.0,29.0,112,63,43,0.0,2458,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2960.84526154778,2666.56,0.0,32177.0,1,2,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21451.333333333332,3,0,3_0,3_1 +6115,6.0,6.0,60.0,112,38,50,0.0,2459,0.0,150.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2199.517812289468,0.0,0.0,52315.0,1,1,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,34876.666666666664,5,0,5,5_1 +6116,2.0,9.0,38.0,111,54,30,0.0,2461,0.0,0.0,370.0,0.0,1.0,2.0,0.0,1.0,1.0,2768.0386596049216,0.0,0.0,24423.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,24423.0,4,0,4_0,4_0 +6117,4.0,8.0,55.0,300,64,60,0.0,2462,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1312.1878859306757,2080.0,0.0,44697.0,1,2,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,29798.0,4,0,4_0,4_0 +6118,2.0,2.0,83.0,111,78,71,0.0,2466,0.0,200.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,1490.2814140569533,0.0,0.0,25407.0,5,1,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16938.0,2,0,2_0,2_0 +6119,0.0,4.0,65.0,112,13,50,2.0,2467,0.0,200.0,250.0,0.0,1.0,5.0,0.0,2.0,1.5,1612.3807023068343,0.0,9300.0,26353.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17568.666666666668,2,0,2_0,2_1 +6120,0.0,0.0,53.0,111,38,12,0.0,247,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1830.5125075262679,0.0,0.0,124655.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,69252.77777777778,5,0,5,5_0 +6121,5.0,5.0,70.0,111,72,44,0.0,2475,0.0,700.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1400.645870558518,1586.0,0.0,39596.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26397.333333333332,4,0,4_0,4_0 +6122,4.0,7.0,67.0,111,75,33,0.0,2476,0.0,99999.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2780.49634991554,0.0,0.0,46349.0,5,1,8,6.0,5,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30899.333333333332,4,0,4_0,4_0 +6123,5.0,12.0,23.0,400,62,43,0.0,2477,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1898.5670293728895,1560.0,0.0,39767.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22092.777777777777,3,0,3_0,3_1 +6124,11.0,11.0,68.0,111,75,44,0.0,2478,50.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1569.9516804131356,0.0,0.0,31302.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,20868.0,3,0,3_0,3_0 +6125,2.0,7.0,54.0,111,52,71,0.0,248,0.0,0.0,0.0,399.0,2.0,4.0,1.0,3.0,2.0,3702.2505810252183,0.0,0.0,45016.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22508.0,3,0,3_0,3_0 +6126,0.0,14.0,50.0,112,47,50,0.0,2480,0.0,320.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2870.704667333054,4839.12,0.0,46875.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,23437.5,3,0,3_0,3_0 +6127,10.0,10.0,46.0,111,63,50,0.0,2481,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,1778.663943569854,1560.0,0.0,20120.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,8383.333333333334,1,0,1_1,1_0 +6128,8.0,8.0,38.0,112,64,50,0.0,2482,0.0,0.0,120.0,0.0,2.0,4.0,3.0,5.0,2.4,2093.378949467493,4439.76,0.0,42372.0,1,2,9,3.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,17655.0,2,0,2_0,2_0 +6129,0.0,0.0,48.0,111,46,71,0.0,2483,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,2583.51997616464,6240.0,0.0,38289.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21271.666666666668,3,0,3_0,3_0 +6130,2.0,2.0,69.0,120,11,70,0.0,2485,0.0,250.0,30.0,0.0,1.0,4.0,0.0,1.0,1.0,2262.2617203392992,1560.0,0.0,44284.0,5,1,0,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,44284.0,5,0,5,5_0 +6131,12.0,12.0,65.0,112,78,71,0.0,2486,0.0,100.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2677.2849861849763,2080.0,0.0,25208.0,5,1,3,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16805.333333333332,2,0,2_0,2_1 +6132,7.0,11.0,29.0,221,56,44,0.0,2488,0.0,560.0,100229.0,0.0,1.0,6.0,1.0,2.0,1.3,543.7145552666739,0.0,0.0,13423.0,1,4,1,1.0,2,3.0,1.0,1.0,0,1,0,0,0,0,2.0,1.0,10325.384615384615,1,0,1_0,1_0 +6133,4.0,10.0,57.0,120,62,71,0.0,249,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2687.4636721187385,1196.0,0.0,23891.0,1,1,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11945.5,1,0,1_0,1_0 +6134,8.0,9.0,22.0,111,45,0,0.0,2491,0.0,100.0,0.0,413.0,1.0,1.0,0.0,1.0,1.0,4231.659567411884,0.0,0.0,26064.0,3,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,26064.0,4,0,4_1,4_0 +6135,6.0,6.0,34.0,111,46,31,0.0,2493,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2387.4465508736234,551.1999999999999,0.0,45134.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,21492.38095238095,3,0,3_0,3_0 +6136,3.0,4.0,42.0,111,21,44,0.0,2494,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,3.1,2113.9517531629285,0.0,0.0,28505.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9195.16129032258,1,0,1_1,1_0 +6137,0.0,0.0,72.0,111,75,12,0.0,2495,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1499.457985134699,0.0,0.0,68094.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,45396.0,5,0,5,5_0 +6138,3.0,5.0,53.0,111,42,60,0.0,2496,0.0,0.0,0.0,0.0,3.0,3.0,3.0,5.0,3.0,1687.6811756358125,0.0,0.0,54361.0,1,2,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,18120.333333333332,2,0,2_0,2_0 +6139,5.0,6.0,55.0,111,52,31,0.0,2498,0.0,200.0,40.0,0.0,1.0,2.0,0.0,1.0,1.0,2162.1573864198663,0.0,0.0,32432.0,1,1,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,32432.0,5,0,5,5_0 +6140,10.0,10.0,91.0,211,74,70,0.0,2499,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1964.5867854347546,0.0,0.0,35878.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,35878.0,5,0,5,5_0 +6141,0.0,0.0,80.0,111,72,50,0.0,25,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1387.2404248635814,0.0,0.0,23627.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15751.333333333334,2,0,2_0,2_0 +6142,0.0,1.0,59.0,300,56,50,0.0,2500,0.0,99998.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1484.405289470702,0.0,0.0,31693.0,4,1,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,21128.666666666668,3,0,3_0,3_1 +6143,4.0,6.0,53.0,111,54,42,0.0,2502,0.0,0.0,99999.0,0.0,2.0,3.0,2.0,3.0,2.0,2142.961190471823,1560.0,0.0,40320.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20160.0,3,0,3_0,3_0 +6144,3.0,3.0,32.0,111,31,10,0.0,2503,0.0,0.0,225.0,0.0,2.0,4.0,2.0,4.0,2.1,2237.9131033777517,0.0,0.0,71428.0,1,2,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,34013.33333333333,5,0,5,5_0 +6145,22.0,22.0,39.0,111,46,30,0.0,2504,0.0,0.0,0.0,623.0,1.0,3.0,1.0,3.0,1.8,2472.3344729274218,0.0,0.0,44331.0,1,3,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,24628.333333333332,4,0,4_0,4_0 +6146,10.0,10.0,31.0,112,37,20,0.0,2506,0.0,150.0,100.0,0.0,2.0,4.0,1.0,3.0,1.8,2281.716790446576,0.0,0.0,41310.0,1,2,9,3.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,22950.0,3,0,3_0,3_0 +6147,5.0,5.0,67.0,112,77,70,0.0,2507,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4514.830058436377,930.8,0.0,16293.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16293.0,2,0,2_0,2_1 +6148,11.0,11.0,41.0,111,56,50,0.0,2508,0.0,0.0,0.0,293.0,1.0,3.0,1.0,2.0,1.5,1506.9590824099935,0.0,0.0,19958.0,1,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,13305.333333333334,1,0,1_1,1_0 +6149,0.0,0.0,84.0,112,72,50,1.0,2509,0.0,750.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2502.0400056163026,0.0,25000.0,20372.0,5,4,6,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,20372.0,3,0,3_0,3_1 +6150,0.0,0.0,23.0,111,55,41,0.0,251,0.0,0.0,0.0,320.0,1.0,1.0,0.0,1.0,1.0,3901.3317652186147,0.0,0.0,0.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,0.0,1,0,1_0,1_0 +6151,3.0,6.0,23.0,111,56,50,0.0,2510,0.0,490.0,0.0,147.0,1.0,3.0,0.0,1.0,1.0,1259.8578924186313,0.0,0.0,12826.0,4,3,7,5.0,1,2.0,1.0,1.0,0,0,1,0,0,1,0.0,2.0,12826.0,1,0,1_1,1_0 +6152,0.0,0.0,47.0,112,34,20,0.0,2512,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1981.0334988909478,2478.3199999999997,0.0,80879.0,1,2,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,32351.6,5,0,5,5_0 +6153,15.0,15.0,32.0,400,47,42,0.0,2513,0.0,320.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2146.559274841553,0.0,0.0,17711.0,1,3,0,0.0,1,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,17711.0,2,0,2_0,2_1 +6154,0.0,0.0,60.0,112,52,50,0.0,2514,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1995.5092641167453,4841.200000000001,0.0,25730.0,1,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17153.333333333332,2,0,2_0,2_1 +6155,3.0,3.0,40.0,111,38,20,0.0,2515,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2617.1164811771596,0.0,0.0,58819.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,28009.04761904762,4,0,4_0,4_0 +6156,0.0,0.0,49.0,111,52,50,0.0,2518,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2192.699433817446,2600.0,0.0,41288.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27525.333333333332,4,0,4_0,4_0 +6157,5.0,6.0,69.0,221,77,71,0.0,252,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2386.552869007791,0.0,0.0,13940.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13940.0,2,0,2_0,2_0 +6158,0.0,0.0,40.0,111,69,30,0.0,2520,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,2900.668152813114,0.0,0.0,11721.0,4,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9016.153846153846,1,0,1_1,1_0 +6159,3.0,6.0,79.0,111,75,50,0.0,2521,0.0,99999.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1869.7102249559107,0.0,0.0,29676.0,5,1,8,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,19784.0,3,0,3_0,3_0 +6160,7.0,7.0,52.0,400,48,50,0.0,2523,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2436.8571022584138,2704.52,0.0,50966.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,33977.333333333336,5,0,5,5_1 +6161,1.0,12.0,43.0,111,63,50,2.0,2525,0.0,1000.0,0.0,118.0,1.0,2.0,3.0,5.0,2.4,1124.56483932541,0.0,1700.0,24960.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,10400.0,1,0,1_1,1_0 +6162,8.0,8.0,85.0,111,75,71,0.0,2527,0.0,0.0,300.0,653.0,0.0,3.0,0.0,1.0,1.0,3378.277785954757,0.0,0.0,28939.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,28939.0,4,0,4_0,4_0 +6163,4.0,10.0,59.0,111,48,50,0.0,2529,0.0,0.0,30.0,0.0,1.0,4.0,0.0,1.0,1.0,3296.9615008737437,256.36,0.0,35005.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,35005.0,5,0,5,5_0 +6164,0.0,0.0,37.0,111,38,20,0.0,2532,0.0,0.0,0.0,803.0,1.0,3.0,2.0,3.0,1.6,1029.8398256841485,4992.0,0.0,56558.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35348.75,5,0,5,5_0 +6165,1.0,25.0,32.0,111,34,10,2.0,2533,0.0,800.0,130.0,334.0,1.0,2.0,1.0,3.0,1.8,4741.6327156367615,494.0,2700.0,29120.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,16177.777777777777,2,0,2_0,2_0 +6166,9.0,9.0,66.0,112,77,44,0.0,2534,0.0,0.0,1600.0,0.0,0.0,3.0,0.0,1.0,1.0,2644.190743067552,0.0,0.0,20046.0,5,1,8,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,20046.0,3,0,3_0,3_0 +6167,0.0,0.0,83.0,211,75,44,0.0,2535,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3208.9732031058093,0.0,0.0,18201.0,5,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18201.0,2,0,2_0,2_0 +6168,14.0,14.0,66.0,120,62,71,0.0,2536,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2291.2016034029148,1300.0,0.0,39498.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,26332.0,4,0,4_1,4_1 +6169,0.0,0.0,71.0,112,78,44,0.0,2538,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2804.8116731232767,1557.3999999999999,0.0,26953.0,5,1,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26953.0,4,0,4_0,4_1 +6170,4.0,6.0,19.0,111,84,41,0.0,2539,0.0,180.0,0.0,350.0,0.0,2.0,0.0,2.0,1.5,2357.50832650238,0.0,0.0,624.0,3,3,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,416.0,1,0,1_0,1_0 +6171,3.0,3.0,36.0,111,85,43,0.0,254,0.0,800.0,0.0,0.0,0.0,4.0,6.0,7.0,3.4,563.0811256916365,286.0,0.0,32973.0,6,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,9697.94117647059,1,0,1_1,1_0 +6172,1.0,1.0,44.0,111,22,50,1.0,2540,0.0,136.0,0.0,162.0,1.0,2.0,0.0,1.0,1.0,3854.305780770932,1040.0,18000.0,12771.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,12771.0,1,0,1_1,1_0 +6173,11.0,16.0,36.0,111,46,31,0.0,2541,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2287.391665218016,0.0,0.0,28502.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,28502.0,4,0,4_0,4_0 +6174,8.0,19.0,69.0,120,71,60,0.0,2542,0.0,0.0,250.0,0.0,0.0,6.0,0.0,3.0,2.0,4511.595019410229,2592.72,0.0,30480.0,5,1,0,3.0,5,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,15240.0,2,0,2_0,2_0 +6175,0.0,0.0,32.0,111,62,50,0.0,2543,0.0,0.0,0.0,226.0,1.0,2.0,0.0,1.0,1.0,3267.9919502846647,0.0,0.0,19734.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19734.0,3,0,3_0,3_0 +6176,0.0,0.0,75.0,400,75,70,0.0,2544,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2711.3752485912396,3068.0,0.0,22337.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22337.0,3,0,3_0,3_0 +6177,0.0,0.0,68.0,120,78,70,0.0,2546,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2138.874448803158,2600.0,0.0,21133.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14088.666666666666,2,0,2_0,2_1 +6178,0.0,20.0,71.0,120,75,50,0.0,2548,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2141.439392637867,1560.0,0.0,37091.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24727.333333333332,4,0,4_0,4_1 +6179,4.0,5.0,50.0,111,52,50,0.0,2549,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1544.8923842448967,0.0,0.0,22474.0,1,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22474.0,3,0,3_0,3_0 +6180,1.0,1.0,84.0,111,77,71,1.0,255,0.0,240.0,240.0,0.0,0.0,5.0,0.0,1.0,1.0,2999.9553725462315,2652.0,10000.0,17978.0,5,1,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,17978.0,2,0,2_0,2_0 +6181,3.0,7.0,39.0,400,63,31,0.0,2551,0.0,400.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2680.988508354263,0.0,0.0,14785.0,1,3,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,14785.0,2,0,2_0,2_1 +6182,0.0,0.0,27.0,120,47,42,0.0,2552,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2805.672900575587,1040.52,0.0,39246.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26164.0,4,0,4_0,4_1 +6183,1.0,8.0,42.0,300,62,50,2.0,2553,0.0,0.0,0.0,0.0,2.0,4.0,5.0,7.0,3.4,1815.081199023666,832.0,2000.0,39730.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,11685.29411764706,1,0,1_1,1_0 +6184,1.0,1.0,63.0,212,22,70,1.0,2554,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2887.8352192995876,0.0,11000.0,7728.0,1,1,2,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,5152.0,1,0,1_0,1_1 +6185,0.0,7.0,39.0,400,52,42,2.0,2555,0.0,0.0,98.0,0.0,1.0,4.0,0.0,1.0,1.0,2014.9180081245102,2401.36,3000.0,9835.0,1,3,0,0.0,1,2.0,1.0,1.0,1,0,0,0,0,1,2.0,0.0,9835.0,1,0,1_1,1_1 +6186,0.0,0.0,65.0,111,77,20,0.0,2556,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2161.868587310796,0.0,0.0,14600.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14600.0,2,0,2_0,2_0 +6187,5.0,5.0,44.0,221,65,50,0.0,2557,0.0,0.0,0.0,416.0,1.0,2.0,2.0,3.0,1.6,1090.1737155403853,0.0,0.0,16318.0,4,3,1,3.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,10198.75,1,0,1_1,1_0 +6188,0.0,0.0,54.0,112,54,31,0.0,2559,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1921.5013296537554,1527.24,0.0,22410.0,1,4,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22410.0,3,0,3_0,3_0 +6189,5.0,17.0,63.0,112,75,70,0.0,2560,0.0,0.0,420.0,0.0,1.0,5.0,0.0,2.0,1.5,2592.641310568708,0.0,0.0,35661.0,5,1,9,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,23774.0,3,0,3_0,3_1 +6190,1.0,1.0,55.0,211,52,71,1.0,2561,0.0,0.0,0.0,246.0,1.0,2.0,0.0,1.0,1.0,2949.0908005561546,0.0,18500.0,17487.0,1,3,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17487.0,2,0,2_0,2_0 +6191,0.0,1.0,77.0,111,75,30,0.0,2562,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3096.7622445400216,0.0,0.0,34716.0,5,1,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,34716.0,5,0,5,5_0 +6192,1.0,3.0,51.0,111,52,50,2.0,2565,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1359.537068371644,1047.28,11149.0,41938.0,1,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,27958.666666666668,4,0,4_0,4_0 +6193,2.0,2.0,41.0,111,53,30,0.0,2566,0.0,0.0,0.0,670.0,1.0,3.0,0.0,1.0,1.0,3194.9756336392347,0.0,0.0,18453.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,18453.0,2,0,2_0,2_0 +6194,5.0,6.0,82.0,111,77,71,0.0,2567,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2888.9303629191113,0.0,0.0,22010.0,6,1,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14673.333333333334,2,0,2_0,2_0 +6195,10.0,10.0,45.0,111,34,20,0.0,257,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1547.2884020907343,416.0,0.0,63892.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25556.8,4,0,4_0,4_0 +6196,0.0,16.0,66.0,112,74,12,0.0,2570,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2798.8383722076082,1820.52,0.0,66676.0,5,1,9,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,44450.666666666664,5,0,5,5_1 +6197,3.0,6.0,19.0,111,84,41,0.0,2573,0.0,450.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1132.125823093553,0.0,0.0,99.0,3,3,8,6.0,5,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,66.0,1,0,1_0,1_0 +6198,1.0,3.0,36.0,112,46,41,2.0,2574,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2140.4842404863334,797.16,25500.0,54006.0,1,3,4,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30003.333333333332,4,0,4_0,4_1 +6199,0.0,0.0,70.0,400,77,50,0.0,2577,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1999.9792727964225,0.0,0.0,33365.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33365.0,5,0,5,5_1 +6200,14.0,14.0,65.0,111,77,70,0.0,2578,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2671.4482218937437,1915.6800000000003,0.0,19624.0,5,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19624.0,3,0,3_0,3_0 +6201,3.0,10.0,42.0,111,46,44,0.0,2579,0.0,0.0,180.0,0.0,2.0,6.0,0.0,2.0,1.5,1765.4160018776074,4253.08,0.0,69560.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,46373.333333333336,5,0,5,5_0 +6202,12.0,12.0,59.0,111,75,50,0.0,258,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3611.845886891875,0.0,0.0,18756.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18756.0,3,0,3_0,3_0 +6203,3.0,10.0,51.0,300,22,31,0.0,2580,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2789.759265099125,9052.16,0.0,58399.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,58399.0,5,0,5,5_1 +6204,11.0,11.0,44.0,300,35,20,0.0,2581,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2132.2218548661886,7521.28,0.0,54945.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23889.13043478261,4,0,4_0,4_1 +6205,0.0,0.0,35.0,111,55,60,0.0,2583,0.0,0.0,0.0,315.0,1.0,3.0,2.0,3.0,1.6,849.8664917097274,103.48,0.0,23951.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14969.375,2,0,2_1,2_0 +6206,2.0,14.0,70.0,111,77,70,0.0,2584,0.0,0.0,230.0,0.0,0.0,4.0,0.0,2.0,1.5,3564.439854974476,3536.52,0.0,44927.0,5,1,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,29951.333333333332,4,0,4_0,4_0 +6207,3.0,4.0,60.0,111,65,60,0.0,2587,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3311.7843125917043,0.0,0.0,16544.0,1,1,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16544.0,2,0,2_0,2_0 +6208,0.0,0.0,39.0,111,43,71,0.0,2588,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,1365.9444950795548,0.0,0.0,15450.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11884.615384615385,1,0,1_1,1_0 +6209,1.0,1.0,64.0,111,78,50,1.0,2590,0.0,2000.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1627.5005153030088,0.0,24000.0,20516.0,5,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20516.0,3,0,3_0,3_0 +6210,2.0,5.0,52.0,111,47,50,0.0,2591,0.0,50.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2008.4316410221418,1872.0,0.0,47956.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19182.4,3,0,3_0,3_0 +6211,2.0,2.0,76.0,111,74,31,0.0,2592,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3249.3570399365826,2340.52,0.0,33755.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,22503.333333333332,3,0,3_0,3_0 +6212,2.0,2.0,56.0,111,31,10,0.0,2594,0.0,0.0,20.0,0.0,1.0,9.0,0.0,1.0,1.0,2864.4208090194415,5531.759999999999,0.0,85450.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,85450.0,5,0,5,5_0 +6213,0.0,0.0,62.0,112,35,70,0.0,2595,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1460.1709902340099,2080.0,0.0,27497.0,1,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18331.333333333332,2,0,2_0,2_0 +6214,6.0,6.0,45.0,111,67,31,0.0,2596,0.0,0.0,0.0,40.0,1.0,4.0,3.0,5.0,2.4,2469.1321309543323,2080.0,0.0,41580.0,1,3,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,17325.0,2,0,2_1,2_0 +6215,0.0,0.0,77.0,222,71,71,0.0,2597,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1911.4061115357563,3123.64,0.0,69484.0,5,1,1,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,46322.666666666664,5,0,5,5_1 +6216,0.0,0.0,77.0,111,78,71,0.0,2599,0.0,0.0,0.0,382.0,0.0,3.0,0.0,2.0,1.5,2872.821634344366,0.0,0.0,23026.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15350.666666666666,2,0,2_1,2_0 +6217,6.0,23.0,21.0,111,85,71,0.0,26,0.0,0.0,0.0,227.0,0.0,2.0,0.0,1.0,1.0,2855.3500202763066,0.0,0.0,11844.0,7,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,11844.0,1,0,1_1,1_0 +6218,0.0,1.0,62.0,111,38,31,0.0,260,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2836.5550143610944,0.0,0.0,86898.0,1,1,10,8.0,3,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,57932.0,5,0,5,5_0 +6219,0.0,0.0,42.0,221,43,30,0.0,2600,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,741.1924429695265,0.0,0.0,29092.0,1,2,1,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22378.46153846154,3,0,3_0,3_0 +6220,3.0,3.0,36.0,112,38,31,0.0,2601,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3051.0205489051536,1196.0,0.0,48901.0,1,1,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,23286.190476190473,3,0,3_0,3_0 +6221,0.0,11.0,61.0,112,77,70,0.0,2602,0.0,200.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1772.7407385406236,782.6,0.0,12306.0,6,1,8,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,12306.0,1,0,1_0,1_1 +6222,0.0,0.0,61.0,111,75,33,0.0,2603,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1830.958713220024,3463.72,0.0,31327.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31327.0,4,0,4_0,4_0 +6223,2.0,3.0,22.0,111,81,71,0.0,2606,0.0,110.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1945.226380440527,1511.1200000000001,0.0,9710.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,7469.230769230769,1,0,1_0,1_0 +6224,11.0,11.0,56.0,111,78,41,0.0,2609,0.0,0.0,99999.0,195.0,0.0,2.0,0.0,1.0,1.0,3841.293602059729,0.0,0.0,9006.0,7,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,9006.0,1,0,1_1,1_0 +6225,0.0,0.0,63.0,400,71,50,0.0,261,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1830.2688432569407,2340.0,0.0,23480.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15653.333333333334,2,0,2_0,2_1 +6226,0.0,0.0,49.0,111,52,50,0.0,2610,0.0,100.0,0.0,0.0,1.0,6.0,4.0,6.0,3.3,1205.9412818938363,5200.0,0.0,38368.0,1,1,9,7.0,5,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,11626.666666666668,1,0,1_0,1_0 +6227,1.0,1.0,69.0,111,78,50,0.0,2611,0.0,200.0,20.0,364.0,0.0,4.0,0.0,2.0,1.5,1610.551195449627,0.0,0.0,31724.0,5,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21149.333333333332,3,0,3_0,3_0 +6228,0.0,0.0,37.0,211,33,12,0.0,2612,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2691.3148934144738,0.0,0.0,64942.0,1,2,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30924.761904761905,4,0,4_0,4_0 +6229,8.0,8.0,43.0,111,56,43,0.0,2615,0.0,0.0,0.0,115.0,1.0,3.0,3.0,4.0,2.1,865.4173237187254,2444.0,0.0,21268.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,10127.619047619048,1,0,1_1,1_0 +6230,5.0,5.0,58.0,111,46,60,0.0,2616,0.0,340.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3049.435715078152,2600.0,0.0,55625.0,1,2,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,37083.333333333336,5,0,5,5_0 +6231,11.0,15.0,62.0,111,78,70,0.0,2617,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3712.5252158212274,2600.0,0.0,50483.0,5,1,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33655.333333333336,5,0,5,5_0 +6232,0.0,10.0,55.0,111,38,31,0.0,2619,0.0,0.0,0.0,0.0,2.0,5.0,0.0,4.0,2.3,3016.381505050817,4815.200000000001,0.0,70184.0,1,3,6,4.0,5,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30514.782608695656,4,0,4_0,4_0 +6233,4.0,4.0,34.0,111,67,41,0.0,262,0.0,0.0,250.0,0.0,1.0,3.0,3.0,4.0,1.9,1163.772107091729,0.0,0.0,24040.0,4,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,12652.631578947368,1,0,1_1,1_0 +6234,1.0,15.0,87.0,111,77,71,0.0,2620,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,3237.2230505729067,0.0,0.0,21132.0,5,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21132.0,3,0,3_0,3_0 +6235,11.0,11.0,86.0,111,77,70,0.0,2621,0.0,300.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,5828.226836700115,809.64,0.0,18900.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18900.0,3,0,3_0,3_0 +6236,0.0,15.0,76.0,111,72,30,0.0,2622,0.0,0.0,150.0,0.0,0.0,3.0,0.0,1.0,1.0,3466.7895313770487,0.0,0.0,60244.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,60244.0,5,0,5,5_0 +6237,0.0,0.0,41.0,111,54,31,0.0,2625,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1841.9753511587148,1560.0,0.0,37900.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21055.555555555555,3,0,3_0,3_0 +6238,2.0,2.0,27.0,111,65,41,0.0,2628,0.0,0.0,0.0,332.0,1.0,2.0,0.0,1.0,1.0,6784.67635616696,1820.0,0.0,29200.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29200.0,4,0,4_0,4_0 +6239,0.0,16.0,52.0,111,42,30,0.0,2629,0.0,0.0,0.0,645.0,1.0,4.0,1.0,2.0,1.5,1769.4339145384363,1560.52,0.0,18275.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12183.333333333334,1,0,1_0,1_0 +6240,3.0,11.0,72.0,111,78,50,0.0,263,0.0,10.0,12.0,0.0,1.0,4.0,0.0,2.0,1.5,1501.3102045513237,1040.0,0.0,44364.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,29576.0,4,0,4_0,4_0 +6241,0.0,1.0,54.0,111,46,41,0.0,2630,0.0,199998.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,2606.8770127580633,754.0,0.0,17060.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,10662.5,1,0,1_0,1_0 +6242,7.0,7.0,47.0,111,42,20,0.0,2632,0.0,99999.0,0.0,423.0,1.0,3.0,2.0,4.0,2.1,2089.2963624131316,0.0,0.0,48001.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,22857.619047619046,3,0,3_1,3_0 +6243,6.0,6.0,29.0,112,68,43,0.0,2633,0.0,40.0,0.0,177.0,1.0,2.0,1.0,2.0,1.3,1186.8057627681076,2236.0,0.0,20249.0,1,3,8,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,15576.153846153846,2,0,2_1,2_0 +6244,2.0,5.0,54.0,111,45,44,0.0,2634,0.0,0.0,65.0,336.0,1.0,3.0,0.0,1.0,1.0,2414.579294988586,1903.2,0.0,24283.0,1,3,7,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,24283.0,4,0,4_0,4_0 +6245,0.0,0.0,45.0,112,55,43,0.0,2636,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1814.2649208705693,0.0,0.0,49251.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21413.478260869568,3,0,3_0,3_1 +6246,2.0,2.0,49.0,400,85,50,0.0,2638,0.0,650.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3486.263442335007,0.0,0.0,21810.0,6,1,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,21810.0,3,0,3_0,3_1 +6247,6.0,10.0,53.0,111,68,50,0.0,2639,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3398.5619305527343,0.0,0.0,9961.0,1,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9961.0,1,0,1_1,1_0 +6248,1.0,1.0,37.0,300,46,41,1.0,264,0.0,0.0,120.0,0.0,2.0,7.0,2.0,4.0,2.1,2584.2222036199505,2876.12,18000.0,36660.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17457.142857142855,2,0,2_0,2_1 +6249,5.0,5.0,85.0,112,74,12,0.0,2640,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1959.9064068123714,0.0,0.0,100644.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,67096.0,5,0,5,5_1 +6250,4.0,4.0,40.0,111,65,31,0.0,2641,0.0,0.0,0.0,195.0,1.0,2.0,0.0,1.0,1.0,3101.8578548084733,0.0,0.0,7162.0,1,3,8,7.0,1,3.0,1.0,0.0,0,0,0,1,0,1,0.0,3.0,7162.0,1,0,1_1,1_0 +6251,0.0,0.0,43.0,120,13,50,0.0,2642,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2253.08110741519,3361.28,0.0,49069.0,1,1,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23366.190476190473,3,0,3_0,3_0 +6252,3.0,3.0,49.0,111,52,50,0.0,2643,0.0,0.0,0.0,514.0,1.0,3.0,2.0,3.0,2.0,1130.4834638602929,1040.0,0.0,24085.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,12042.5,1,0,1_0,1_0 +6253,6.0,10.0,73.0,112,74,71,0.0,2644,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2212.8191420024095,1620.8400000000001,0.0,49755.0,5,2,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,33170.0,5,0,5,5_0 +6254,2.0,2.0,45.0,112,63,50,0.0,2645,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1489.1835400697626,2080.0,0.0,47561.0,1,2,6,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,31707.333333333332,4,0,4_0,4_1 +6255,7.0,12.0,53.0,111,38,31,0.0,2647,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2724.3340319121385,4332.12,0.0,82886.0,1,1,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,41443.0,5,0,5,5_0 +6256,0.0,0.0,33.0,111,46,30,0.0,2648,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2047.2610951678773,0.0,0.0,53890.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29938.888888888887,4,0,4_0,4_0 +6257,2.0,2.0,28.0,111,67,42,0.0,2649,0.0,0.0,0.0,401.0,2.0,2.0,0.0,2.0,1.5,4309.309735103013,3424.2,0.0,41431.0,1,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27620.666666666668,4,0,4_0,4_0 +6258,11.0,11.0,44.0,112,23,50,0.0,265,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2812.8585101615135,0.0,0.0,57446.0,1,1,9,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,31914.444444444445,5,0,5,5_0 +6259,0.0,0.0,54.0,111,68,71,0.0,2652,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1612.6386650856405,0.0,0.0,22430.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22430.0,3,0,3_0,3_0 +6260,16.0,16.0,37.0,111,33,20,0.0,2653,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2011.398661664424,0.0,0.0,43821.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20867.142857142855,3,0,3_0,3_0 +6261,9.0,9.0,38.0,111,43,33,0.0,2654,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2528.5494007389425,0.0,0.0,60510.0,1,2,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,28814.285714285714,4,0,4_0,4_0 +6262,0.0,0.0,66.0,111,77,60,0.0,2655,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2181.635937187616,0.0,0.0,32305.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21536.666666666668,3,0,3_0,3_0 +6263,7.0,7.0,55.0,300,63,50,0.0,2656,0.0,0.0,0.0,0.0,3.0,6.0,3.0,5.0,2.8,1412.2687414847605,3120.0,0.0,42649.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15231.785714285716,2,0,2_0,2_0 +6264,0.0,0.0,36.0,112,46,43,0.0,2657,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,536.2696205969925,1560.0,0.0,23890.0,1,2,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13272.222222222223,1,0,1_1,1_1 +6265,6.0,7.0,65.0,111,77,70,0.0,2659,0.0,99999.0,0.0,170.0,0.0,2.0,0.0,1.0,1.0,2630.476892539922,0.0,0.0,17494.0,5,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,17494.0,2,0,2_1,2_0 +6266,3.0,4.0,76.0,111,74,41,0.0,266,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2438.2447195448835,0.0,0.0,34773.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34773.0,5,0,5,5_0 +6267,0.0,0.0,62.0,111,75,50,0.0,2660,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,4107.0403051529,2861.56,0.0,56367.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37578.0,5,0,5,5_0 +6268,20.0,20.0,26.0,111,52,71,0.0,2661,0.0,0.0,0.0,0.0,2.0,2.0,2.0,4.0,2.1,3691.6240838116205,0.0,0.0,24346.0,8,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,11593.333333333332,1,0,1_1,1_0 +6269,4.0,7.0,56.0,212,12,50,0.0,2662,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,1403.4303333984437,1617.2,0.0,33205.0,1,4,4,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11858.928571428572,1,0,1_0,1_1 +6270,6.0,6.0,52.0,111,34,20,0.0,2663,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4455.676158535242,0.0,0.0,44954.0,1,4,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,44954.0,5,0,5,5_0 +6271,1.0,2.0,42.0,120,42,30,2.0,2664,0.0,100.0,170.0,0.0,2.0,6.0,2.0,4.0,2.3,2130.065950557817,3319.68,16000.0,43998.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,19129.565217391304,3,0,3_0,3_1 +6272,0.0,0.0,71.0,111,74,10,0.0,2665,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1832.6093643219901,1821.0400000000002,0.0,58099.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38732.666666666664,5,0,5,5_0 +6273,4.0,4.0,79.0,300,75,41,0.0,2667,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2690.960248067855,2808.0,0.0,23811.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23811.0,4,0,4_0,4_1 +6274,5.0,14.0,85.0,111,72,70,0.0,2668,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5772.57085574396,0.0,0.0,11735.0,5,4,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11735.0,1,0,1_0,1_0 +6275,0.0,0.0,74.0,112,86,70,0.0,2669,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3311.3582037732276,0.0,0.0,22497.0,6,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22497.0,3,0,3_0,3_1 +6276,1.0,1.0,46.0,111,52,50,1.0,267,0.0,350.0,100.0,423.0,2.0,3.0,1.0,3.0,2.0,418.5314356990924,1300.52,20000.0,43456.0,1,3,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,21728.0,3,0,3_0,3_0 +6277,0.0,0.0,93.0,300,74,70,0.0,2670,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3022.990295892511,14139.84,0.0,28645.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19096.666666666668,3,0,3_0,3_0 +6278,4.0,11.0,88.0,112,71,44,0.0,2672,0.0,99999.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2569.170634359886,0.0,0.0,16188.0,5,4,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,16188.0,2,0,2_0,2_1 +6279,0.0,22.0,47.0,111,54,20,0.0,2673,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,808.6755542786904,0.0,0.0,33351.0,1,2,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18528.333333333332,2,0,2_0,2_0 +6280,0.0,0.0,83.0,221,71,71,0.0,2674,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1861.0518780724335,2496.0,0.0,29849.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19899.333333333332,3,0,3_0,3_0 +6281,0.0,0.0,47.0,111,52,50,0.0,2675,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,411.1623774079285,0.0,0.0,36484.0,1,3,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15862.608695652176,2,0,2_1,2_0 +6282,4.0,4.0,32.0,111,52,50,0.0,2676,0.0,0.0,0.0,116.0,1.0,4.0,3.0,5.0,2.4,3412.818283092416,2444.0,0.0,28761.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11983.75,1,0,1_1,1_0 +6283,11.0,14.0,52.0,300,63,50,0.0,2678,0.0,0.0,170.0,0.0,1.0,4.0,0.0,1.0,1.0,2153.351754076666,3385.2,0.0,18991.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18991.0,3,0,3_0,3_1 +6284,4.0,4.0,33.0,111,52,41,0.0,2679,0.0,0.0,130.0,84.0,1.0,4.0,3.0,4.0,1.9,851.8921743724637,0.0,0.0,20143.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,2.0,0.0,10601.578947368422,1,0,1_1,1_0 +6285,11.0,11.0,37.0,111,85,50,0.0,268,0.0,0.0,0.0,102.0,0.0,3.0,1.0,2.0,1.3,821.7147561769575,0.0,0.0,19773.0,4,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,15210.0,2,0,2_1,2_0 +6286,0.0,0.0,76.0,111,77,70,0.0,2680,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3249.5173994904826,1040.0,0.0,26161.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26161.0,4,0,4_0,4_0 +6287,0.0,0.0,57.0,120,52,41,1.0,2681,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3275.9084482518124,2543.3199999999997,18000.0,9000.0,4,3,0,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9000.0,1,0,1_1,1_0 +6288,3.0,10.0,67.0,111,77,31,0.0,2682,0.0,120.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2153.7698194689883,0.0,0.0,29726.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,29726.0,4,0,4_0,4_0 +6289,6.0,10.0,33.0,112,21,50,0.0,2683,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2545.2740943810036,0.0,0.0,37748.0,1,1,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15728.333333333334,2,0,2_0,2_1 +6290,3.0,3.0,83.0,111,77,71,0.0,2684,0.0,0.0,0.0,154.0,0.0,4.0,0.0,2.0,1.5,2679.2621606789685,0.0,0.0,35159.0,5,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,23439.333333333332,3,0,3_1,3_0 +6291,0.0,0.0,72.0,400,78,70,0.0,2685,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2812.9797306025253,1196.0,0.0,33398.0,5,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16699.0,2,0,2_0,2_0 +6292,2.0,8.0,36.0,111,38,12,0.0,2686,0.0,0.0,20.0,0.0,2.0,4.0,2.0,4.0,2.1,3148.592589632774,0.0,0.0,72843.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,34687.142857142855,5,0,5,5_0 +6293,3.0,12.0,33.0,111,55,42,0.0,2687,0.0,374.0,0.0,270.0,1.0,2.0,0.0,1.0,1.0,2540.206328993472,0.0,0.0,21033.0,1,3,8,7.0,1,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,21033.0,3,0,3_0,3_0 +6294,0.0,0.0,33.0,111,84,50,0.0,2688,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,2933.776405500242,780.0,0.0,31852.0,3,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15167.619047619048,2,0,2_1,2_0 +6295,1.0,1.0,61.0,111,67,70,2.0,2689,0.0,0.0,0.0,426.0,1.0,2.0,0.0,1.0,1.0,746.1558879110702,0.0,12400.0,12755.0,4,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12755.0,1,0,1_1,1_0 +6296,2.0,4.0,71.0,111,86,50,2.0,269,0.0,0.0,0.0,151.0,0.0,4.0,0.0,1.0,1.0,1253.223311824632,0.0,7300.0,13018.0,5,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,13018.0,1,0,1_1,1_0 +6297,8.0,12.0,79.0,111,78,70,0.0,2690,0.0,0.0,0.0,275.0,0.0,3.0,0.0,1.0,1.0,2764.702442526471,0.0,0.0,14665.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14665.0,2,0,2_0,2_0 +6298,6.0,7.0,38.0,111,21,50,0.0,2691,0.0,600.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,1934.5863263427213,0.0,0.0,10330.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,7946.153846153846,1,0,1_1,1_0 +6299,0.0,0.0,45.0,111,48,43,0.0,2692,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2797.018328754849,0.0,0.0,23350.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23350.0,3,0,3_0,3_0 +6300,2.0,9.0,43.0,120,64,71,0.0,2694,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2757.876209552573,0.0,0.0,39935.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19016.666666666664,3,0,3_0,3_1 +6301,0.0,0.0,42.0,111,52,33,0.0,2696,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,1.8,516.3705999394143,0.0,0.0,26000.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14444.444444444443,2,0,2_1,2_0 +6302,1.0,1.0,81.0,211,75,70,2.0,2697,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3045.8950910379835,0.0,14200.0,39850.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,26566.666666666668,4,0,4_0,4_0 +6303,13.0,13.0,51.0,120,38,31,0.0,2698,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1532.596969036061,774.8000000000001,0.0,58190.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38793.333333333336,5,0,5,5_1 +6304,11.0,29.0,33.0,120,53,42,0.0,2699,0.0,750.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,5000.678626215738,3308.76,0.0,48168.0,1,2,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,26760.0,4,0,4_0,4_1 +6305,1.0,1.0,51.0,221,65,50,0.0,270,0.0,208.0,0.0,100.0,2.0,3.0,0.0,2.0,1.5,5061.3946972964395,0.0,0.0,42141.0,1,3,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,28094.0,4,0,4_0,4_0 +6306,0.0,0.0,30.0,111,53,71,0.0,2700,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3877.7727749692704,0.0,0.0,26354.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12549.52380952381,1,0,1_1,1_0 +6307,4.0,4.0,33.0,400,43,33,0.0,2701,0.0,0.0,99999.0,0.0,1.0,8.0,2.0,3.0,1.6,264.82534596681046,0.0,0.0,45919.0,1,2,0,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,28699.375,4,0,4_0,4_0 +6308,2.0,6.0,49.0,111,22,71,0.0,2702,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3405.02923447756,0.0,0.0,49520.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,49520.0,5,0,5,5_0 +6309,2.0,2.0,37.0,111,42,30,0.0,2704,0.0,55.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,1976.2505230813063,1040.0,0.0,28651.0,1,3,4,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,17906.875,2,0,2_1,2_0 +6310,0.0,0.0,71.0,120,78,70,0.0,2707,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2055.816910513655,0.0,0.0,26357.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17571.333333333332,2,0,2_0,2_1 +6311,5.0,18.0,32.0,112,34,30,0.0,2708,0.0,0.0,550.0,0.0,2.0,5.0,3.0,5.0,2.4,792.1216179678468,1958.32,0.0,65652.0,1,2,10,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,27355.0,4,0,4_0,4_0 +6312,10.0,10.0,34.0,112,52,50,0.0,2709,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2247.5150887948544,2216.76,0.0,44389.0,1,2,4,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21137.619047619046,3,0,3_0,3_1 +6313,10.0,10.0,74.0,112,74,50,0.0,271,0.0,0.0,500.0,0.0,0.0,4.0,0.0,2.0,1.5,1416.4846032667851,3508.44,0.0,48339.0,5,1,8,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,32226.0,5,0,5,5_0 +6314,0.0,0.0,57.0,111,37,12,0.0,2710,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2239.5422669011277,0.0,0.0,51120.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,51120.0,5,0,5,5_0 +6315,5.0,15.0,60.0,112,21,60,0.0,2712,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2541.1509970693455,1040.0,0.0,32370.0,1,4,10,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16185.0,2,0,2_0,2_0 +6316,19.0,19.0,65.0,111,75,70,0.0,2713,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1707.770145938555,0.0,0.0,34915.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23276.666666666668,3,0,3_0,3_0 +6317,0.0,1.0,80.0,221,75,41,0.0,2715,0.0,600.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2200.9412068127417,0.0,0.0,21554.0,5,1,1,2.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,21554.0,3,0,3_0,3_0 +6318,6.0,10.0,34.0,111,37,20,0.0,2716,0.0,0.0,0.0,600.0,1.0,2.0,0.0,1.0,1.0,3221.9237899386153,0.0,0.0,51497.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,51497.0,5,0,5,5_0 +6319,2.0,2.0,74.0,300,71,70,0.0,2717,0.0,0.0,190.0,0.0,0.0,5.0,0.0,2.0,1.5,1500.7257241543916,0.0,0.0,22071.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,14714.0,2,0,2_0,2_1 +6320,3.0,5.0,50.0,111,33,42,0.0,2718,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,2149.5422888718685,0.0,0.0,73693.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36846.5,5,0,5,5_0 +6321,2.0,7.0,62.0,111,78,50,0.0,2720,0.0,540.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2878.3048333109136,2080.0,0.0,24278.0,5,4,7,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,16185.333333333334,2,0,2_0,2_0 +6322,7.0,13.0,46.0,111,37,31,0.0,2722,0.0,0.0,232.0,540.0,1.0,2.0,0.0,1.0,1.0,2899.903859331487,0.0,0.0,59673.0,1,3,9,7.0,1,2.0,1.0,0.0,0,0,0,1,0,0,2.0,0.0,59673.0,5,0,5,5_0 +6323,0.0,0.0,55.0,112,37,20,0.0,2723,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1372.6673779821786,1560.0,0.0,48053.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17161.785714285714,2,0,2_0,2_1 +6324,6.0,6.0,42.0,111,21,71,0.0,2725,0.0,0.0,0.0,0.0,1.0,0.0,0.0,1.0,1.0,3922.8613539751886,0.0,0.0,19040.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19040.0,3,0,3_0,3_0 +6325,0.0,0.0,31.0,112,47,42,0.0,2727,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2752.0039354098185,0.0,0.0,46000.0,1,3,8,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30666.666666666668,4,0,4_0,4_0 +6326,11.0,24.0,49.0,111,68,71,0.0,2728,0.0,700.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,720.3179112592505,0.0,0.0,9000.0,4,3,8,6.0,2,3.0,0.0,1.0,0,0,1,0,0,1,0.0,3.0,6923.076923076923,1,0,1_1,1_0 +6327,10.0,10.0,96.0,111,78,70,0.0,2729,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,2446.38478877852,1950.0,0.0,20997.0,5,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20997.0,3,0,3_0,3_0 +6328,0.0,17.0,84.0,111,77,70,0.0,273,0.0,0.0,0.0,509.0,0.0,1.0,0.0,1.0,1.0,4474.383252612522,0.0,0.0,21452.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21452.0,3,0,3_0,3_0 +6329,3.0,3.0,26.0,112,68,42,0.0,2730,0.0,100.0,0.0,397.0,1.0,4.0,0.0,1.0,1.0,5412.01560660715,0.0,0.0,14466.0,4,3,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,14466.0,2,0,2_1,2_0 +6330,5.0,5.0,56.0,111,22,10,0.0,2731,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3600.5533564785655,0.0,0.0,16921.0,1,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,16921.0,2,0,2_0,2_0 +6331,5.0,5.0,80.0,111,86,70,0.0,2732,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2283.257391442836,0.0,0.0,14394.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14394.0,2,0,2_0,2_0 +6332,3.0,5.0,30.0,400,64,43,0.0,2734,0.0,120.0,0.0,251.0,1.0,4.0,0.0,1.0,1.0,989.361456761084,0.0,0.0,17847.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,17847.0,2,0,2_1,2_1 +6333,0.0,7.0,60.0,111,86,71,0.0,2735,0.0,0.0,0.0,98.0,0.0,3.0,0.0,1.0,1.0,3392.6295697726964,0.0,0.0,12914.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12914.0,1,0,1_1,1_0 +6334,0.0,0.0,60.0,300,77,50,0.0,2736,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1741.8824490981176,0.0,0.0,23453.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15635.333333333334,2,0,2_0,2_1 +6335,4.0,9.0,55.0,120,63,50,0.0,2737,0.0,500.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2227.066762206466,2340.52,0.0,27180.0,1,1,0,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,13590.0,1,0,1_0,1_0 +6336,0.0,0.0,64.0,111,75,50,0.0,2740,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2091.2870892266064,0.0,0.0,41039.0,5,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27359.333333333332,4,0,4_0,4_0 +6337,10.0,10.0,48.0,300,43,33,0.0,2741,0.0,0.0,400.0,0.0,2.0,5.0,1.0,3.0,2.0,2514.6499769009456,3309.2799999999997,0.0,50891.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,25445.5,4,0,4_0,4_1 +6338,1.0,8.0,47.0,111,85,30,0.0,2742,0.0,0.0,100.0,0.0,0.0,4.0,2.0,3.0,1.6,739.3554871555991,0.0,0.0,22100.0,6,3,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,13812.5,1,0,1_1,1_0 +6339,1.0,1.0,58.0,111,34,31,1.0,2743,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3457.4277464849647,1873.56,15540.0,31970.0,1,1,6,5.0,1,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,31970.0,5,0,5,5_0 +6340,0.0,0.0,59.0,112,52,50,0.0,2744,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1886.389283250263,0.0,0.0,20500.0,1,2,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20500.0,3,0,3_0,3_1 +6341,0.0,0.0,34.0,111,85,60,0.0,2745,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,1.9,297.2530569844213,0.0,0.0,20884.0,6,3,4,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10991.578947368422,1,0,1_1,1_0 +6342,5.0,8.0,76.0,111,78,50,0.0,2746,0.0,0.0,500.0,0.0,0.0,3.0,0.0,1.0,1.0,3574.459789632178,0.0,0.0,20571.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20571.0,3,0,3_0,3_0 +6343,0.0,0.0,36.0,112,23,50,0.0,2747,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2447.5397277005513,3510.5200000000004,0.0,75164.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35792.380952380954,5,0,5,5_1 +6344,0.0,5.0,48.0,400,63,50,2.0,2748,0.0,50.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1998.5215043281892,1924.0,3700.0,71042.0,1,2,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,35521.0,5,0,5,5_0 +6345,5.0,5.0,50.0,111,48,50,0.0,2749,0.0,10.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1449.212573212289,0.0,0.0,64276.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25710.4,4,0,4_0,4_0 +6346,0.0,0.0,68.0,112,75,60,0.0,2751,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2428.8438921309476,0.0,0.0,36380.0,5,1,8,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24253.333333333332,4,0,4_0,4_0 +6347,0.0,0.0,64.0,111,78,71,0.0,2755,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3047.9426114833022,0.0,0.0,18010.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12006.666666666666,1,0,1_0,1_0 +6348,0.0,0.0,49.0,112,65,30,0.0,2756,0.0,0.0,0.0,0.0,1.0,7.0,1.0,4.0,2.3,3489.1755023172905,5409.5599999999995,0.0,50757.0,1,1,7,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22068.26086956522,3,0,3_0,3_1 +6349,0.0,0.0,66.0,400,86,50,0.0,276,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3307.4693859274194,4750.719999999999,0.0,33885.0,5,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22590.0,3,0,3_0,3_1 +6350,0.0,2.0,35.0,111,56,44,2.0,2760,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2849.4327778864695,0.0,6500.0,29178.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13894.285714285714,1,0,1_0,1_0 +6351,0.0,2.0,62.0,211,33,33,2.0,2761,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2923.967190124153,4429.36,9600.0,55999.0,1,1,1,2.0,4,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,22399.6,3,0,3_0,3_0 +6352,0.0,0.0,45.0,111,55,43,0.0,2762,0.0,0.0,0.0,442.0,1.0,3.0,0.0,1.0,1.0,3058.4131321865793,0.0,0.0,23385.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23385.0,3,0,3_0,3_0 +6353,0.0,0.0,32.0,111,55,43,0.0,2763,0.0,0.0,0.0,236.0,1.0,3.0,1.0,2.0,1.3,575.1117448064022,0.0,0.0,22281.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17139.23076923077,2,0,2_1,2_0 +6354,10.0,10.0,52.0,221,55,60,0.0,2764,0.0,550.0,0.0,464.0,1.0,4.0,0.0,1.0,1.0,1912.0187829453155,780.52,0.0,12520.0,1,3,1,2.0,1,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,12520.0,1,0,1_0,1_0 +6355,21.0,24.0,44.0,112,43,44,0.0,2766,0.0,240.0,160.0,0.0,3.0,6.0,3.0,4.0,2.3,550.4195470447903,0.0,0.0,35223.0,1,2,8,1.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,15314.347826086958,2,0,2_0,2_0 +6356,0.0,0.0,66.0,300,74,30,0.0,2767,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2912.1148598845293,0.0,0.0,29381.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29381.0,4,0,4_0,4_1 +6357,0.0,0.0,30.0,111,43,44,0.0,2769,0.0,0.0,0.0,450.0,1.0,2.0,0.0,1.0,1.0,3903.7680280239942,0.0,0.0,22147.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22147.0,3,0,3_0,3_0 +6358,3.0,3.0,50.0,111,52,50,0.0,277,0.0,0.0,0.0,44.0,3.0,4.0,2.0,3.0,2.0,660.450367538856,0.0,0.0,30229.0,1,3,7,4.0,2,1.0,1.0,0.0,0,0,1,0,0,1,0.0,1.0,15114.5,2,0,2_1,2_0 +6359,4.0,6.0,80.0,300,77,50,0.0,2772,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2744.8693632894374,0.0,0.0,21336.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21336.0,3,0,3_0,3_1 +6360,11.0,13.0,65.0,120,78,70,0.0,2773,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1596.809891703427,1872.52,0.0,24120.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16080.0,2,0,2_0,2_0 +6361,0.0,0.0,45.0,111,56,71,0.0,2774,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2257.8107099578665,0.0,0.0,11240.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,5352.380952380952,1,0,1_1,1_0 +6362,0.0,0.0,65.0,111,78,71,0.0,2775,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1024.8751568850464,2600.0,0.0,24834.0,5,3,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16556.0,2,0,2_0,2_0 +6363,20.0,20.0,46.0,112,54,71,0.0,2776,0.0,0.0,0.0,700.0,3.0,5.0,2.0,4.0,2.3,231.17761257514928,8220.16,0.0,30996.0,1,3,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13476.521739130436,1,0,1_0,1_0 +6364,4.0,20.0,34.0,111,85,71,0.0,2779,0.0,0.0,0.0,0.0,1.0,6.0,5.0,7.0,3.2,1920.3035286594416,0.0,0.0,34384.0,6,3,8,6.0,4,1.0,1.0,0.0,0,0,1,0,0,1,0.0,1.0,10745.0,1,0,1_1,1_0 +6365,9.0,14.0,45.0,111,37,30,0.0,2780,0.0,115.0,60.0,0.0,2.0,3.0,2.0,4.0,2.1,2881.592354915788,0.0,0.0,109331.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,52062.38095238095,5,0,5,5_0 +6366,7.0,7.0,77.0,111,74,12,0.0,2781,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3171.398015526115,2579.2000000000003,0.0,60429.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,40286.0,5,0,5,5_0 +6367,0.0,0.0,66.0,111,35,20,0.0,2782,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3333.9892364257776,1300.0,0.0,30722.0,5,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30722.0,4,0,4_0,4_0 +6368,10.0,10.0,63.0,120,71,70,0.0,2783,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1819.4012872691296,1560.0,0.0,9929.0,7,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,9929.0,1,0,1_0,1_0 +6369,27.0,29.0,83.0,111,78,71,0.0,2784,0.0,0.0,0.0,392.0,0.0,3.0,0.0,1.0,1.0,4001.255008441817,0.0,0.0,13580.0,5,3,7,6.0,1,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,13580.0,1,0,1_1,1_0 +6370,3.0,8.0,66.0,112,72,50,0.0,2787,0.0,480.0,72.0,0.0,0.0,5.0,0.0,2.0,1.5,1395.8368567503353,0.0,0.0,32544.0,5,1,6,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,21696.0,3,0,3_0,3_1 +6371,2.0,2.0,46.0,111,47,31,0.0,2789,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2289.618940278813,1040.0,0.0,29409.0,1,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,29409.0,4,0,4_0,4_0 +6372,0.0,1.0,56.0,111,34,30,2.0,279,0.0,350.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,772.273739499116,0.0,14750.0,32367.0,1,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,32367.0,5,0,5,5_0 +6373,0.0,0.0,34.0,112,67,71,0.0,2790,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,645.5159329113782,3822.5200000000004,0.0,45880.0,4,3,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21847.619047619046,3,0,3_0,3_1 +6374,3.0,11.0,58.0,111,75,30,0.0,2791,0.0,0.0,0.0,368.0,1.0,4.0,1.0,2.0,1.5,3476.1974944492868,0.0,0.0,43664.0,5,3,5,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,29109.333333333332,4,0,4_1,4_0 +6375,17.0,17.0,33.0,112,31,10,0.0,2792,0.0,540.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1510.7988225296647,3185.52,0.0,47182.0,1,2,10,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,31454.666666666668,4,0,4_0,4_0 +6376,0.0,0.0,48.0,111,37,31,0.0,2793,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3497.2338339898047,0.0,0.0,54759.0,1,4,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36506.0,5,0,5,5_0 +6377,9.0,9.0,42.0,111,38,71,0.0,2795,0.0,0.0,80.0,660.0,1.0,2.0,0.0,1.0,1.0,1146.639862830498,0.0,0.0,33160.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,33160.0,5,0,5,5_0 +6378,3.0,3.0,48.0,111,85,60,0.0,2797,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2358.697409602859,0.0,0.0,14155.0,7,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,14155.0,2,0,2_1,2_0 +6379,0.0,0.0,74.0,111,74,12,0.0,28,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1890.4634260707105,0.0,0.0,47452.0,5,1,7,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31634.666666666668,4,0,4_0,4_0 +6380,4.0,4.0,47.0,111,42,71,0.0,2800,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5113.550109848257,0.0,0.0,10708.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,10708.0,1,0,1_1,1_0 +6381,2.0,2.0,52.0,211,62,71,0.0,2801,0.0,65.0,0.0,400.0,1.0,3.0,0.0,1.0,1.0,575.0316877431559,0.0,0.0,18641.0,1,3,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18641.0,2,0,2_0,2_0 +6382,4.0,7.0,67.0,111,74,20,0.0,2802,0.0,0.0,0.0,1300.0,0.0,4.0,0.0,2.0,1.5,3138.974961091932,0.0,0.0,60020.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,40013.333333333336,5,0,5,5_0 +6383,2.0,2.0,50.0,112,47,31,0.0,2803,0.0,65.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1485.943368187311,3640.0,0.0,66901.0,1,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,44600.666666666664,5,0,5,5_0 +6384,1.0,1.0,54.0,111,37,50,2.0,2805,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1917.2244031648468,1892.8,13000.0,60211.0,1,1,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,30105.5,4,0,4_0,4_0 +6385,5.0,5.0,44.0,111,46,30,0.0,2807,0.0,300.0,0.0,500.0,1.0,3.0,1.0,2.0,1.3,428.154019441995,0.0,0.0,25140.0,1,3,4,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19338.46153846154,3,0,3_0,3_0 +6386,19.0,19.0,51.0,112,37,42,0.0,2808,0.0,0.0,100.0,0.0,2.0,6.0,0.0,2.0,1.5,1270.1152016097583,0.0,0.0,68928.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,45952.0,5,0,5,5_1 +6387,21.0,25.0,58.0,111,52,50,0.0,2809,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1718.4162345233633,1560.0,0.0,43431.0,1,1,8,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,28954.0,4,0,4_0,4_0 +6388,8.0,15.0,78.0,112,71,70,0.0,281,0.0,250.0,250.0,0.0,0.0,10.0,0.0,2.0,1.5,1736.9703686184882,2266.6800000000003,0.0,26511.0,5,4,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17674.0,2,0,2_0,2_0 +6389,7.0,7.0,61.0,400,12,50,0.0,2810,0.0,0.0,99.0,0.0,1.0,5.0,0.0,2.0,1.5,1800.9554648587607,5175.5599999999995,0.0,40632.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,27088.0,4,0,4_0,4_1 +6390,11.0,11.0,77.0,120,72,50,0.0,2812,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1402.3269564942268,0.0,0.0,24633.0,5,1,0,1.0,3,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,16422.0,2,0,2_0,2_0 +6391,6.0,8.0,83.0,400,75,70,0.0,2813,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1934.749189153326,0.0,0.0,32680.0,5,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21786.666666666668,3,0,3_0,3_1 +6392,2.0,2.0,29.0,111,54,31,0.0,2819,0.0,0.0,99999.0,66.0,1.0,3.0,1.0,2.0,1.3,789.0527881278817,0.0,0.0,19425.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,14942.307692307691,2,0,2_1,2_0 +6393,12.0,13.0,63.0,112,22,31,0.0,282,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1833.2125774970575,0.0,0.0,81241.0,1,1,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,54160.666666666664,5,0,5,5_0 +6394,11.0,11.0,46.0,112,56,42,0.0,2822,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.5,510.35576668881686,0.0,0.0,15437.0,1,2,8,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,6174.8,1,0,1_1,1_0 +6395,9.0,9.0,42.0,300,47,31,0.0,2823,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2540.7811580014613,5439.200000000001,0.0,50330.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27961.11111111111,4,0,4_0,4_1 +6396,0.0,0.0,73.0,111,75,50,0.0,2824,0.0,0.0,0.0,502.0,0.0,3.0,0.0,1.0,1.0,2097.6992321846565,0.0,0.0,22225.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22225.0,3,0,3_0,3_0 +6397,6.0,6.0,43.0,111,46,43,0.0,2825,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2961.8997413158368,0.0,0.0,15114.0,1,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15114.0,2,0,2_0,2_0 +6398,3.0,3.0,40.0,111,52,43,0.0,2827,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4248.225261944202,0.0,0.0,34760.0,1,2,6,5.0,4,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,16552.38095238095,2,0,2_0,2_0 +6399,3.0,6.0,64.0,111,78,71,0.0,2828,0.0,99999.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1915.26180155919,0.0,0.0,29842.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,19894.666666666668,3,0,3_0,3_0 +6400,4.0,10.0,33.0,120,81,50,0.0,2829,0.0,600.0,0.0,0.0,1.0,5.0,3.0,4.0,1.9,148.6549192154286,1560.0,0.0,21181.0,4,1,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,11147.894736842105,1,0,1_0,1_1 +6401,0.0,17.0,59.0,112,46,50,2.0,283,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1821.4266237472823,368.16,300.0,63347.0,1,1,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,42231.333333333336,5,0,5,5_0 +6402,2.0,6.0,33.0,111,54,41,2.0,2831,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1230.2587071118996,796.64,7000.0,16358.0,4,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,2.0,0.0,10223.75,1,0,1_1,1_0 +6403,2.0,4.0,52.0,111,53,71,0.0,2833,0.0,0.0,0.0,301.0,2.0,4.0,2.0,3.0,2.0,887.0292275850976,0.0,0.0,34502.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,17251.0,2,0,2_1,2_0 +6404,6.0,6.0,83.0,211,77,70,0.0,2834,0.0,0.0,0.0,0.0,0.0,4.0,2.0,4.0,2.5,4207.551609514512,0.0,0.0,30670.0,5,1,1,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12268.0,1,0,1_0,1_0 +6405,2.0,2.0,24.0,112,63,50,0.0,2835,0.0,0.0,120.0,0.0,2.0,5.0,1.0,3.0,1.8,915.0964237474137,2340.0,0.0,44040.0,1,3,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,24466.666666666668,4,0,4_1,4_0 +6406,0.0,8.0,80.0,221,72,50,0.0,2837,0.0,120.0,35.0,0.0,0.0,5.0,0.0,2.0,1.5,1173.0910882915437,0.0,0.0,16011.0,5,1,1,3.0,3,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,10674.0,1,0,1_0,1_0 +6407,0.0,0.0,64.0,111,56,41,0.0,2838,0.0,0.0,0.0,350.0,1.0,1.0,0.0,1.0,1.0,2194.679854822597,0.0,0.0,18867.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18867.0,3,0,3_0,3_0 +6408,0.0,0.0,24.0,111,63,50,0.0,284,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,4318.6766667262345,0.0,0.0,25174.0,1,3,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13985.555555555555,2,0,2_1,2_0 +6409,2.0,2.0,70.0,111,77,60,0.0,2840,0.0,750.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1879.3045556078418,0.0,0.0,28908.0,5,1,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,28908.0,4,0,4_0,4_0 +6410,11.0,11.0,38.0,112,47,20,0.0,2841,0.0,99998.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2967.005315104215,4131.92,0.0,29932.0,1,4,9,3.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,16628.888888888887,2,0,2_0,2_0 +6411,5.0,10.0,72.0,112,74,12,0.0,2844,0.0,250.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1499.5558633034414,0.0,0.0,47650.0,5,1,9,2.0,3,4.0,0.0,1.0,0,1,0,0,0,0,1.0,3.0,31766.666666666668,5,0,5,5_0 +6412,11.0,11.0,85.0,211,78,71,0.0,2845,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2410.2130061277753,0.0,0.0,17831.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17831.0,2,0,2_0,2_0 +6413,16.0,16.0,70.0,211,74,44,0.0,2846,0.0,320.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3599.886889441807,2079.48,0.0,23774.0,5,1,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23774.0,3,0,3_0,3_0 +6414,0.0,0.0,46.0,211,65,42,0.0,2847,0.0,0.0,0.0,240.0,1.0,1.0,0.0,1.0,1.0,3016.628168914683,2028.0,0.0,20970.0,1,3,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20970.0,3,0,3_0,3_0 +6415,12.0,12.0,72.0,111,74,71,0.0,2848,0.0,100.0,0.0,406.0,0.0,3.0,0.0,2.0,1.5,2194.9011682406467,0.0,0.0,33495.0,5,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22330.0,3,0,3_0,3_0 +6416,0.0,0.0,38.0,120,62,71,0.0,2851,0.0,0.0,0.0,0.0,2.0,7.0,4.0,6.0,2.7,1393.2498205999852,4927.52,0.0,57142.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21163.7037037037,3,0,3_0,3_1 +6417,12.0,12.0,58.0,111,46,50,0.0,2857,100.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1831.2817954359064,2080.0,0.0,55550.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,37033.333333333336,5,0,5,5_0 +6418,3.0,21.0,38.0,300,63,44,0.0,2858,0.0,100.0,600.0,0.0,2.0,4.0,1.0,3.0,1.8,3160.332092716503,3120.0,0.0,33525.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,18625.0,2,0,2_0,2_1 +6419,11.0,22.0,58.0,112,43,20,0.0,286,0.0,500.0,520.0,0.0,1.0,5.0,0.0,2.0,1.5,2532.0104444736257,1300.0,0.0,52115.0,1,1,8,2.0,3,4.0,0.0,0.0,0,1,0,0,0,0,2.0,2.0,34743.333333333336,5,0,5,5_0 +6420,1.0,3.0,38.0,111,56,70,2.0,2860,0.0,1500.0,0.0,129.0,1.0,3.0,1.0,2.0,1.3,1252.6364189082112,0.0,9000.0,19214.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,14780.0,2,0,2_1,2_0 +6421,0.0,15.0,67.0,111,77,70,0.0,2861,0.0,300.0,200.0,0.0,0.0,3.0,0.0,2.0,1.5,2478.216118401114,0.0,0.0,27150.0,5,1,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,18100.0,2,0,2_0,2_0 +6422,3.0,3.0,62.0,111,81,60,0.0,2863,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,952.9473499570663,0.0,0.0,12776.0,4,3,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9827.692307692307,1,0,1_1,1_0 +6423,2.0,5.0,61.0,111,78,71,0.0,2864,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2834.22554546343,2600.0,0.0,21020.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,14013.333333333334,2,0,2_0,2_0 +6424,0.0,0.0,75.0,111,72,71,0.0,2865,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1635.9414422520917,2270.84,0.0,28225.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18816.666666666668,3,0,3_0,3_0 +6425,1.0,1.0,66.0,111,74,30,1.0,2866,0.0,400.0,60.0,0.0,1.0,7.0,1.0,3.0,2.0,2240.1394904691206,0.0,11000.0,55290.0,5,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27645.0,4,0,4_0,4_0 +6426,1.0,1.0,59.0,112,77,71,1.0,2867,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2191.851493745838,3508.44,17500.0,26915.0,4,1,4,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17943.333333333332,2,0,2_0,2_1 +6427,0.0,0.0,67.0,111,75,31,0.0,2869,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1977.6657868353227,0.0,0.0,46435.0,5,2,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30956.666666666668,4,0,4_0,4_0 +6428,0.0,0.0,35.0,111,46,31,0.0,287,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3763.705862465759,0.0,0.0,30579.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30579.0,4,0,4_0,4_0 +6429,0.0,0.0,35.0,112,69,71,0.0,2870,0.0,0.0,0.0,0.0,2.0,4.0,4.0,6.0,2.9,1448.3786480903416,1040.0,0.0,29547.0,1,3,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10188.620689655172,1,0,1_0,1_0 +6430,0.0,0.0,32.0,112,54,30,0.0,2871,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3148.6389587505946,4160.52,0.0,47523.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26401.666666666664,4,0,4_0,4_1 +6431,4.0,4.0,49.0,111,45,50,0.0,2872,0.0,28.0,0.0,373.0,2.0,2.0,1.0,2.0,1.5,3452.634676761818,0.0,0.0,24685.0,1,3,10,8.0,2,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,16456.666666666668,2,0,2_0,2_0 +6432,0.0,0.0,72.0,111,74,10,0.0,2873,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1825.0085639733463,0.0,0.0,54453.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,54453.0,5,0,5,5_0 +6433,12.0,12.0,68.0,111,74,10,0.0,2874,0.0,300.0,50.0,0.0,0.0,8.0,0.0,2.0,1.5,1868.9337443914133,0.0,0.0,31777.0,5,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,21184.666666666668,3,0,3_0,3_0 +6434,0.0,0.0,63.0,111,86,12,0.0,2875,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1662.2790150019948,0.0,0.0,14284.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14284.0,2,0,2_0,2_0 +6435,0.0,0.0,73.0,111,74,50,1.0,2876,0.0,2000.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1270.818379587723,0.0,20500.0,75016.0,5,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,50010.666666666664,5,0,5,5_0 +6436,1.0,2.0,38.0,111,48,31,2.0,2877,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2129.3132010041977,3245.84,28000.0,77255.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,36788.09523809524,5,0,5,5_0 +6437,0.0,0.0,34.0,111,53,71,0.0,2878,0.0,0.0,0.0,350.0,2.0,4.0,2.0,4.0,2.1,4179.281845675326,1040.0,0.0,23466.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11174.285714285714,1,0,1_1,1_0 +6438,3.0,11.0,46.0,221,38,50,0.0,288,0.0,99999.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,5420.906010900967,4871.880000000001,0.0,62629.0,1,3,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,41752.666666666664,5,0,5,5_0 +6439,0.0,0.0,64.0,111,75,44,0.0,2880,0.0,0.0,0.0,569.0,0.0,5.0,0.0,1.0,1.0,2152.524153190542,1560.0,0.0,24906.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24906.0,4,0,4_0,4_0 +6440,0.0,0.0,71.0,112,78,70,0.0,2881,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2350.214224225002,0.0,0.0,22398.0,5,1,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22398.0,3,0,3_0,3_0 +6441,4.0,4.0,39.0,111,37,31,0.0,2882,0.0,400.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1916.1603956038077,0.0,0.0,99164.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,41318.333333333336,5,0,5,5_0 +6442,6.0,6.0,74.0,120,77,50,0.0,2883,0.0,0.0,0.0,550.0,0.0,2.0,0.0,1.0,1.0,3502.589807544979,0.0,0.0,19860.0,5,3,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19860.0,3,0,3_0,3_0 +6443,1.0,1.0,70.0,112,74,20,0.0,2885,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2527.2062694606943,0.0,0.0,32694.0,5,1,7,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,32694.0,5,0,5,5_0 +6444,0.0,0.0,54.0,112,13,50,0.0,2886,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1358.5498548837702,0.0,0.0,31877.0,1,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21251.333333333332,3,0,3_0,3_1 +6445,4.0,4.0,50.0,111,52,42,0.0,2889,0.0,368.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1393.251527848864,0.0,0.0,39202.0,1,1,7,5.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,19601.0,3,0,3_0,3_0 +6446,0.0,0.0,66.0,120,75,60,1.0,289,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1997.4521944559822,0.0,26000.0,42571.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,28380.666666666668,4,0,4_0,4_1 +6447,7.0,17.0,32.0,300,55,42,0.0,2890,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,2509.8397156924566,3848.0,0.0,34358.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,16360.95238095238,2,0,2_1,2_1 +6448,2.0,14.0,32.0,112,68,50,0.0,2891,0.0,480.0,40.0,0.0,2.0,3.0,0.0,2.0,1.5,2816.5159533889023,0.0,0.0,42675.0,1,4,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,28450.0,4,0,4_0,4_1 +6449,3.0,3.0,50.0,222,45,31,0.0,2892,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,2.0,1349.6287294361134,0.0,0.0,48377.0,1,1,1,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24188.5,4,0,4_0,4_1 +6450,1.0,3.0,47.0,112,46,41,2.0,2895,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2134.2865722582583,0.0,9600.0,77769.0,1,1,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,31107.6,4,0,4_0,4_1 +6451,7.0,10.0,74.0,300,78,70,0.0,2896,0.0,110.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,1881.5710019506441,0.0,0.0,25672.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25672.0,4,0,4_0,4_1 +6452,3.0,3.0,43.0,300,43,10,0.0,2899,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2736.8279088465297,2631.7200000000003,0.0,62669.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26112.083333333336,4,0,4_0,4_1 +6453,0.0,0.0,73.0,111,75,50,0.0,29,0.0,0.0,0.0,650.0,0.0,3.0,0.0,2.0,1.5,1031.2008961107038,0.0,0.0,33486.0,5,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22324.0,3,0,3_0,3_0 +6454,0.0,0.0,44.0,221,52,50,0.0,290,0.0,0.0,0.0,442.0,1.0,4.0,2.0,3.0,1.8,456.53500491705694,0.0,0.0,24509.0,1,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13616.111111111111,1,0,1_0,1_0 +6455,7.0,7.0,68.0,111,78,50,0.0,2900,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2472.675460749143,2705.56,0.0,30703.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20468.666666666668,3,0,3_0,3_0 +6456,4.0,10.0,33.0,111,63,50,0.0,2902,0.0,100.0,0.0,49.0,2.0,4.0,1.0,3.0,1.8,898.5851527488232,0.0,0.0,29020.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,16122.222222222223,2,0,2_1,2_0 +6457,0.0,0.0,39.0,120,38,43,0.0,2903,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2824.941973281392,0.0,0.0,94052.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,44786.666666666664,5,0,5,5_1 +6458,0.0,8.0,29.0,111,54,50,0.0,2904,0.0,199998.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,1342.0667461008866,0.0,0.0,16311.0,4,3,6,5.0,2,2.0,1.0,1.0,0,0,1,0,0,1,0.0,2.0,10194.375,1,0,1_1,1_0 +6459,0.0,0.0,25.0,112,63,43,0.0,2905,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1042.0154898562514,3149.64,0.0,35050.0,1,2,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23366.666666666668,3,0,3_0,3_1 +6460,4.0,4.0,64.0,111,22,30,0.0,2906,0.0,0.0,70.0,0.0,1.0,6.0,0.0,1.0,1.0,2162.6772181498222,0.0,0.0,89613.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,89613.0,5,0,5,5_0 +6461,6.0,7.0,55.0,111,52,50,0.0,2908,0.0,40.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2170.5858243387825,1040.0,0.0,16664.0,1,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,16664.0,2,0,2_1,2_0 +6462,1.0,1.0,49.0,400,43,33,1.0,2909,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1775.8114841528895,971.8800000000001,9990.0,49510.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,33006.666666666664,5,0,5,5_1 +6463,7.0,9.0,49.0,211,67,71,0.0,2911,0.0,0.0,100.0,0.0,1.0,3.0,0.0,1.0,1.0,3581.9145105032894,2600.0,0.0,17646.0,1,3,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17646.0,2,0,2_0,2_0 +6464,7.0,7.0,47.0,111,85,31,0.0,2912,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2365.1901528860453,0.0,0.0,12570.0,7,3,5,4.0,1,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,12570.0,1,0,1_1,1_0 +6465,0.0,0.0,39.0,111,33,10,0.0,2914,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1828.9112839438103,0.0,0.0,55371.0,1,2,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26367.142857142855,4,0,4_0,4_0 +6466,10.0,10.0,68.0,300,75,20,0.0,2915,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1600.6576425719002,1254.76,0.0,37366.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24910.666666666668,4,0,4_0,4_1 +6467,0.0,17.0,51.0,300,42,31,0.0,2917,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2468.9751576764534,2770.56,0.0,28444.285714285714,1,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28444.285714285714,4,0,4_0,4_0 +6468,0.0,0.0,62.0,111,74,12,0.0,292,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2390.536851109908,0.0,0.0,40240.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26826.666666666668,4,0,4_0,4_0 +6469,5.0,5.0,50.0,111,52,71,0.0,2921,0.0,199998.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1548.9794047958287,0.0,0.0,43260.0,1,4,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,28840.0,4,0,4_0,4_0 +6470,17.0,17.0,48.0,111,52,50,0.0,2924,0.0,0.0,0.0,282.0,1.0,3.0,0.0,1.0,1.0,2962.532176277574,0.0,0.0,22320.0,1,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22320.0,3,0,3_0,3_0 +6471,3.0,5.0,44.0,112,47,50,0.0,2927,0.0,250.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,883.7361276627267,2603.12,0.0,26350.0,1,3,9,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16468.75,2,0,2_0,2_0 +6472,1.0,1.0,36.0,221,21,50,0.0,2928,0.0,0.0,100029.0,45.0,1.0,4.0,3.0,5.0,2.4,1736.3329006532342,2080.0,0.0,31210.0,1,3,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,2.0,0.0,13004.166666666668,1,0,1_1,1_0 +6473,6.0,6.0,24.0,111,34,10,0.0,2929,0.0,0.0,99999.0,0.0,2.0,3.0,0.0,2.0,1.5,1496.0305548871506,0.0,0.0,41267.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,27511.333333333332,4,0,4_1,4_0 +6474,6.0,10.0,54.0,111,53,31,0.0,293,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,783.2132739536183,0.0,0.0,52158.0,1,4,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,40121.53846153846,5,0,5,5_0 +6475,2.0,2.0,50.0,112,63,50,0.0,2930,0.0,0.0,650.0,800.0,2.0,5.0,3.0,5.0,2.8,1651.7873935737416,0.0,0.0,37740.0,1,3,9,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,13478.57142857143,1,0,1_0,1_0 +6476,0.0,0.0,53.0,112,46,50,0.0,2931,0.0,0.0,0.0,503.0,2.0,8.0,4.0,6.0,3.1,1862.9283926933354,2605.2,0.0,47686.0,1,3,9,2.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15382.58064516129,2,0,2_1,2_0 +6477,0.0,0.0,32.0,111,38,20,0.0,2933,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3047.81554636836,2795.52,0.0,55236.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30686.666666666664,4,0,4_0,4_0 +6478,7.0,7.0,85.0,211,78,71,0.0,2934,0.0,50.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,906.3632465339988,0.0,0.0,26960.0,5,3,4,3.0,3,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,17973.333333333332,2,0,2_1,2_0 +6479,0.0,0.0,73.0,112,52,50,0.0,2935,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1436.572651885382,2550.08,0.0,28099.0,5,3,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18732.666666666668,3,0,3_0,3_1 +6480,0.0,0.0,76.0,111,78,50,0.0,2936,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2031.9127071923747,0.0,0.0,115544.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,77029.33333333333,5,0,5,5_0 +6481,2.0,2.0,45.0,111,53,71,0.0,2938,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2985.8619232208534,0.0,0.0,31775.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,21183.333333333332,3,0,3_0,3_0 +6482,0.0,0.0,60.0,300,75,12,0.0,2939,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2406.0403228214523,6898.84,0.0,41472.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27648.0,4,0,4_0,4_1 +6483,1.0,2.0,74.0,111,78,71,2.0,2940,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2227.929955833394,780.0,15500.0,19286.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,12857.333333333334,1,0,1_0,1_0 +6484,19.0,25.0,33.0,120,48,30,0.0,2941,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,3309.5115113301317,3255.2000000000003,0.0,56110.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23379.166666666668,3,0,3_0,3_1 +6485,0.0,0.0,48.0,111,48,50,0.0,2942,0.0,0.0,0.0,495.0,2.0,3.0,0.0,2.0,1.5,1856.5872290164173,2912.0,0.0,37960.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25306.666666666668,4,0,4_0,4_0 +6486,10.0,10.0,83.0,111,72,71,0.0,2944,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1755.610540482813,0.0,0.0,21817.0,5,3,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,14544.666666666666,2,0,2_0,2_0 +6487,3.0,3.0,35.0,112,62,50,0.0,2948,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2577.6633771128404,0.0,0.0,46350.0,1,2,4,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,22071.42857142857,3,0,3_0,3_1 +6488,14.0,16.0,47.0,300,56,50,0.0,2949,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2252.0013484190836,0.0,0.0,28415.0,1,1,0,1.0,4,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,14207.5,2,0,2_0,2_0 +6489,3.0,6.0,28.0,120,67,50,0.0,295,0.0,0.0,500.0,0.0,2.0,4.0,1.0,3.0,1.8,4204.124225348431,2600.0,0.0,41132.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,22851.11111111111,3,0,3_0,3_1 +6490,0.0,0.0,79.0,111,75,44,0.0,2950,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5048.1660350226875,0.0,0.0,24227.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24227.0,4,0,4_0,4_0 +6491,2.0,5.0,49.0,112,13,50,0.0,2951,0.0,350.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,1810.355106543081,0.0,0.0,27895.0,1,1,4,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12128.260869565218,1,0,1_0,1_1 +6492,0.0,0.0,54.0,111,37,31,0.0,2952,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1930.4736336764909,0.0,0.0,36488.0,1,2,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24325.333333333332,4,0,4_0,4_0 +6493,2.0,11.0,42.0,111,52,60,0.0,2954,0.0,300.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,845.4137086364871,0.0,0.0,15388.0,2,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11836.923076923076,1,0,1_1,1_0 +6494,1.0,10.0,57.0,111,21,44,2.0,2955,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2078.042472092001,0.0,2900.0,22217.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14811.333333333334,2,0,2_0,2_0 +6495,5.0,5.0,66.0,221,77,50,0.0,2956,0.0,450.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2135.8625688075444,2080.0,0.0,18065.0,5,1,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18065.0,2,0,2_0,2_0 +6496,0.0,0.0,38.0,111,85,30,0.0,2957,0.0,0.0,0.0,298.0,0.0,1.0,0.0,1.0,1.0,4882.98675975169,256.36,0.0,14485.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14485.0,2,0,2_1,2_0 +6497,1.0,16.0,59.0,112,65,60,0.0,2958,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1898.9666970948078,0.0,0.0,23214.0,1,3,9,3.0,1,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,23214.0,3,0,3_0,3_0 +6498,2.0,5.0,38.0,111,62,30,0.0,2960,0.0,0.0,0.0,0.0,1.0,1.0,1.0,2.0,1.3,1294.7864707255246,0.0,0.0,14650.0,4,3,10,8.0,2,2.0,1.0,0.0,0,0,0,0,1,1,2.0,0.0,11269.23076923077,1,0,1_1,1_0 +6499,2.0,2.0,36.0,111,34,10,0.0,2962,0.0,0.0,99999.0,202.0,1.0,1.0,0.0,1.0,1.0,10517.32713257182,0.0,0.0,37690.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,37690.0,5,0,5,5_0 +6500,1.0,1.0,25.0,111,12,41,1.0,2963,0.0,950.0,0.0,600.0,2.0,3.0,0.0,2.0,1.5,3231.6812113667834,0.0,19000.0,79089.0,1,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,52726.0,5,0,5,5_0 +6501,3.0,3.0,62.0,111,78,31,0.0,2965,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1989.8873520743791,0.0,0.0,5648.0,4,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,5648.0,1,0,1_0,1_0 +6502,0.0,0.0,28.0,111,38,12,0.0,2967,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2881.2659033553464,4624.360000000001,0.0,54240.0,1,2,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,36160.0,5,0,5,5_0 +6503,1.0,1.0,41.0,111,52,50,1.0,2969,0.0,0.0,0.0,0.0,2.0,5.0,1.0,4.0,2.3,1517.4130943221812,6084.0,21000.0,69271.0,1,3,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,30117.826086956524,4,0,4_1,4_0 +6504,5.0,5.0,44.0,112,54,31,0.0,297,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,231.22536438717472,2329.6,0.0,23520.0,1,4,9,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15680.0,2,0,2_0,2_1 +6505,3.0,4.0,52.0,112,52,50,0.0,2970,0.0,200.0,0.0,505.0,1.0,1.0,0.0,1.0,1.0,3759.956020773467,0.0,0.0,23460.0,1,3,10,4.0,1,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,23460.0,3,0,3_0,3_0 +6506,11.0,15.0,55.0,111,37,41,0.0,2971,0.0,500.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1414.4410447958828,0.0,0.0,53945.0,1,1,8,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,35963.333333333336,5,0,5,5_0 +6507,3.0,16.0,56.0,111,77,50,0.0,2972,0.0,300.0,50.0,280.0,0.0,4.0,0.0,1.0,1.0,2578.013125319351,0.0,0.0,646.0,7,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,646.0,1,0,1_0,1_0 +6508,9.0,10.0,61.0,111,37,41,0.0,2974,0.0,300.0,0.0,582.0,2.0,4.0,2.0,3.0,2.0,2526.0207628316443,0.0,0.0,66947.0,1,3,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,33473.5,5,0,5,5_0 +6509,1.0,1.0,45.0,221,38,50,1.0,2975,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2711.52531966939,2860.0,22000.0,72115.0,1,1,1,1.0,4,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,31354.34782608696,4,0,4_0,4_0 +6510,2.0,20.0,47.0,111,37,12,0.0,2977,0.0,130.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3766.3211792340376,0.0,0.0,149432.0,1,1,10,8.0,1,3.0,0.0,1.0,0,0,0,0,1,0,0.0,3.0,149432.0,5,0,5,5_0 +6511,1.0,8.0,75.0,111,75,33,2.0,2979,0.0,300.0,0.0,0.0,2.0,6.0,2.0,3.0,2.0,2184.7798646545707,0.0,4000.0,43300.0,5,4,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21650.0,3,0,3_0,3_0 +6512,20.0,20.0,27.0,111,56,50,0.0,2980,0.0,0.0,0.0,183.0,1.0,3.0,1.0,2.0,1.3,1132.3351243576299,0.0,0.0,16309.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12545.384615384615,1,0,1_1,1_0 +6513,9.0,13.0,30.0,111,68,31,0.0,2981,0.0,860.0,0.0,53.0,1.0,2.0,2.0,3.0,1.6,2656.3111814101653,0.0,0.0,12486.0,4,4,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,7803.75,1,0,1_1,1_0 +6514,0.0,2.0,57.0,111,62,50,0.0,2982,0.0,80.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1416.0539705404715,1093.56,0.0,24240.0,1,1,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,16160.0,2,0,2_0,2_0 +6515,7.0,11.0,58.0,111,56,70,0.0,2984,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1435.9769549186794,0.0,0.0,30245.0,1,1,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,20163.333333333332,3,0,3_0,3_0 +6516,0.0,0.0,44.0,221,62,71,0.0,2985,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,3046.3759271192116,2600.0,0.0,13750.0,1,3,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,7638.888888888889,1,0,1_0,1_0 +6517,0.0,0.0,63.0,400,75,30,0.0,2987,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2146.235257246158,3164.72,0.0,14156.0,5,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14156.0,2,0,2_0,2_1 +6518,4.0,5.0,51.0,300,13,50,0.0,2988,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1930.4687729009124,0.0,0.0,-21779.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,-21779.0,1,0,1_0,1_1 +6519,2.0,2.0,53.0,300,54,50,0.0,299,0.0,300.0,400.0,0.0,2.0,7.0,0.0,2.0,1.5,1783.2511019993951,0.0,0.0,50779.0,1,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,33852.666666666664,5,0,5,5_1 +6520,1.0,6.0,43.0,111,68,50,2.0,2990,0.0,300.0,0.0,90.0,1.0,3.0,1.0,2.0,1.5,2442.022714312887,1305.72,9500.0,12180.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,8120.0,1,0,1_0,1_0 +6521,5.0,12.0,66.0,111,74,31,0.0,2992,0.0,0.0,120.0,0.0,0.0,5.0,0.0,2.0,1.5,2282.956729844824,2100.7999999999997,0.0,24773.0,5,1,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16515.333333333332,2,0,2_0,2_0 +6522,9.0,10.0,82.0,112,11,71,0.0,2995,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2736.0096359663767,0.0,0.0,20194.0,5,1,8,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20194.0,3,0,3_0,3_0 +6523,0.0,0.0,33.0,112,63,71,0.0,2997,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3380.259308338976,0.0,0.0,12916.0,4,3,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12916.0,1,0,1_1,1_1 +6524,2.0,5.0,77.0,120,78,50,0.0,2999,0.0,0.0,42.0,0.0,0.0,2.0,0.0,2.0,1.5,2703.479361679627,0.0,0.0,29883.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19922.0,3,0,3_0,3_1 +6525,0.0,6.0,40.0,111,62,71,0.0,3,0.0,0.0,0.0,386.0,2.0,6.0,3.0,5.0,2.6,968.686099856059,1040.0,0.0,34040.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,13092.307692307691,1,0,1_1,1_0 +6526,20.0,20.0,69.0,111,75,70,0.0,3002,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2003.3207790966985,0.0,0.0,21651.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,21651.0,3,0,3_0,3_0 +6527,4.0,5.0,55.0,112,56,70,0.0,3004,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1569.8591459100314,0.0,0.0,29307.0,1,1,8,1.0,3,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,19538.0,3,0,3_0,3_0 +6528,0.0,0.0,54.0,111,68,60,0.0,3005,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2719.3120186955875,0.0,0.0,9190.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9190.0,1,0,1_1,1_0 +6529,1.0,1.0,82.0,111,86,71,0.0,3006,0.0,0.0,0.0,210.0,0.0,1.0,0.0,1.0,1.0,1451.8956214609004,0.0,0.0,13120.0,6,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13120.0,1,0,1_0,1_0 +6530,10.0,10.0,46.0,300,33,31,0.0,3008,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,547.6830780200397,0.0,0.0,35064.0,1,2,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,19480.0,3,0,3_1,3_1 +6531,0.0,0.0,31.0,111,68,71,0.0,301,0.0,0.0,0.0,108.0,1.0,4.0,2.0,3.0,1.6,407.91789972700894,3120.0,0.0,17194.0,4,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10746.25,1,0,1_1,1_0 +6532,0.0,0.0,59.0,111,63,71,0.0,3010,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2322.1288707055396,0.0,0.0,29442.0,1,2,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14721.0,2,0,2_0,2_0 +6533,2.0,16.0,43.0,111,48,50,2.0,3011,0.0,1120.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2030.7680741467352,1820.0,1000.0,35784.0,1,2,9,7.0,4,4.0,0.0,0.0,0,0,0,1,0,1,0.0,4.0,14910.0,2,0,2_1,2_0 +6534,0.0,13.0,57.0,112,78,50,0.0,3012,0.0,400.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2210.464383146304,0.0,0.0,29710.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19806.666666666668,3,0,3_0,3_0 +6535,0.0,0.0,52.0,111,52,50,0.0,3013,0.0,0.0,0.0,295.0,2.0,3.0,0.0,2.0,1.5,1786.9965685793172,3108.04,0.0,43098.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28732.0,4,0,4_0,4_0 +6536,0.0,16.0,74.0,112,74,12,0.0,3014,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2951.449880534335,0.0,0.0,32080.0,5,4,8,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,32080.0,5,0,5,5_0 +6537,4.0,4.0,54.0,111,37,50,0.0,3015,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1931.4161009835059,0.0,0.0,95601.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,47800.5,5,0,5,5_0 +6538,4.0,10.0,42.0,111,53,43,0.0,3016,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1747.347949887261,2080.0,0.0,48463.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23077.619047619046,3,0,3_0,3_0 +6539,0.0,0.0,70.0,111,72,71,0.0,3017,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1902.5814947602944,0.0,0.0,22386.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14924.0,2,0,2_0,2_0 +6540,2.0,2.0,69.0,111,78,70,0.0,3018,0.0,0.0,180.0,0.0,0.0,5.0,0.0,2.0,1.5,1723.2461916055834,0.0,0.0,38713.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,25808.666666666668,4,0,4_0,4_0 +6541,9.0,9.0,72.0,120,75,30,0.0,3019,0.0,40.0,0.0,0.0,1.0,6.0,1.0,5.0,2.8,1920.7727137711208,572.0,0.0,61621.0,5,1,0,3.0,5,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22007.5,3,0,3_0,3_0 +6542,7.0,13.0,40.0,112,22,31,0.0,302,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3074.7074263103673,2541.24,0.0,28610.0,1,2,9,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19073.333333333332,3,0,3_0,3_0 +6543,7.0,10.0,66.0,112,75,41,0.0,3020,0.0,400.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2164.2196210324096,3261.96,0.0,31481.0,5,4,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20987.333333333332,3,0,3_0,3_0 +6544,0.0,0.0,50.0,400,65,50,0.0,3021,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2274.9763499776745,2600.0,0.0,38138.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19069.0,3,0,3_0,3_1 +6545,9.0,16.0,82.0,300,72,41,0.0,3022,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1567.205383672936,0.0,0.0,30263.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20175.333333333332,3,0,3_0,3_0 +6546,7.0,7.0,40.0,111,54,50,0.0,3023,0.0,0.0,0.0,830.0,3.0,5.0,3.0,5.0,2.8,2707.077510852862,0.0,0.0,32576.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11634.285714285716,1,0,1_0,1_0 +6547,0.0,0.0,33.0,111,38,30,0.0,3024,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2798.118550382199,2636.4,0.0,81302.0,1,2,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31270.0,4,0,4_0,4_0 +6548,1.0,7.0,61.0,111,43,33,2.0,3026,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2119.2577020687504,0.0,2500.0,48744.0,1,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,48744.0,5,0,5,5_0 +6549,6.0,7.0,75.0,111,78,50,0.0,3028,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4136.6870705203055,0.0,0.0,30060.0,5,1,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,20040.0,3,0,3_0,3_0 +6550,6.0,6.0,49.0,111,38,20,0.0,3029,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2572.8107890955425,0.0,0.0,54697.0,1,2,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,54697.0,5,0,5,5_0 +6551,11.0,13.0,80.0,111,74,30,0.0,303,0.0,60.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1995.5082002165564,0.0,0.0,48478.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,32318.666666666668,5,0,5,5_0 +6552,6.0,10.0,56.0,111,62,50,0.0,3030,0.0,0.0,80.0,108.0,1.0,3.0,0.0,1.0,1.0,5027.074052172775,1196.0,0.0,15311.0,4,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,15311.0,2,0,2_1,2_0 +6553,4.0,4.0,55.0,112,37,41,0.0,3031,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,4687.009985258104,1632.28,0.0,31082.0,1,1,7,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23909.23076923077,4,0,4_0,4_0 +6554,0.0,0.0,44.0,111,47,31,0.0,3032,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2706.7768272674107,0.0,0.0,49510.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27505.555555555555,4,0,4_0,4_0 +6555,0.0,0.0,61.0,112,23,12,0.0,3033,0.0,0.0,0.0,0.0,3.0,8.0,2.0,4.0,2.5,3587.998482956253,0.0,0.0,295886.0,1,1,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,118354.4,5,0,5,5_1 +6556,3.0,11.0,91.0,111,75,71,0.0,3034,0.0,0.0,600.0,0.0,0.0,4.0,1.0,3.0,2.0,2619.5762426901642,0.0,0.0,43430.0,5,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,21715.0,3,0,3_0,3_0 +6557,0.0,5.0,91.0,111,75,71,2.0,3035,550.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,2109.499505311568,0.0,7100.0,27940.0,5,4,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18626.666666666668,2,0,2_0,2_0 +6558,10.0,10.0,56.0,111,52,50,0.0,3037,0.0,0.0,0.0,500.0,2.0,4.0,2.0,3.0,2.0,2193.227593652088,0.0,0.0,21530.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10765.0,1,0,1_0,1_0 +6559,6.0,15.0,66.0,111,77,60,0.0,3038,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1499.60101088962,0.0,0.0,30245.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30245.0,4,0,4_0,4_0 +6560,3.0,4.0,61.0,221,78,71,0.0,304,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,3230.1925633344867,2604.16,0.0,37606.0,5,1,1,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18803.0,3,0,3_0,3_0 +6561,19.0,21.0,95.0,112,78,71,0.0,3041,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2653.0259225909076,0.0,0.0,11982.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11982.0,1,0,1_0,1_1 +6562,2.0,3.0,47.0,111,46,50,0.0,3042,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4357.248827785869,260.52,0.0,13079.0,1,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,13079.0,1,0,1_0,1_0 +6563,0.0,0.0,52.0,111,85,71,0.0,3043,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,1061.589962878398,0.0,0.0,3474.0,7,3,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,2316.0,1,0,1_1,1_0 +6564,4.0,4.0,36.0,112,62,43,0.0,3044,0.0,320.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2432.3317881465537,4303.52,0.0,46268.0,1,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22032.38095238095,3,0,3_0,3_1 +6565,0.0,14.0,35.0,111,37,0,0.0,3045,0.0,0.0,235.0,700.0,2.0,5.0,1.0,3.0,1.8,3077.5481697452906,3642.6,0.0,81790.0,1,3,4,3.0,4,3.0,0.0,1.0,0,1,0,0,0,0,3.0,0.0,45438.88888888889,5,0,5,5_0 +6566,5.0,9.0,33.0,111,47,50,0.0,3046,0.0,70.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1916.4949954959336,1560.0,0.0,32690.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,15566.666666666666,2,0,2_0,2_0 +6567,1.0,1.0,81.0,221,75,70,0.0,3047,0.0,0.0,150.0,0.0,0.0,5.0,0.0,2.0,1.5,2935.8847565897277,2080.0,0.0,29262.0,5,3,1,2.0,3,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,19508.0,3,0,3_0,3_0 +6568,1.0,11.0,50.0,111,63,50,2.0,3048,0.0,40.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3965.3167674689116,0.0,1800.0,39797.0,1,1,7,5.0,5,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,26531.333333333332,4,0,4_0,4_0 +6569,9.0,11.0,54.0,120,52,50,0.0,3049,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2067.2960316193826,780.0,0.0,25495.0,1,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,16996.666666666668,2,0,2_0,2_0 +6570,7.0,11.0,43.0,112,63,71,0.0,305,0.0,0.0,0.0,30.0,1.0,4.0,5.0,7.0,3.2,1341.8612494689019,4160.0,0.0,41070.0,1,3,10,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12834.375,1,0,1_1,1_0 +6571,12.0,21.0,55.0,111,33,20,0.0,3050,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2365.918604622224,0.0,0.0,40639.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,27092.666666666668,4,0,4_0,4_0 +6572,11.0,11.0,48.0,120,47,31,0.0,3051,0.0,150.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1677.9575717813202,2653.04,0.0,28115.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14057.5,2,0,2_0,2_1 +6573,11.0,11.0,44.0,111,42,30,0.0,3052,0.0,0.0,99999.0,309.0,1.0,3.0,2.0,3.0,2.0,2800.9484273605217,2002.0,0.0,43962.0,1,3,8,6.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21981.0,3,0,3_0,3_0 +6574,1.0,5.0,26.0,211,13,43,2.0,3056,0.0,200.0,100.0,0.0,1.0,3.0,0.0,1.0,1.0,4766.278058953263,3640.0,8000.0,22506.0,1,1,1,3.0,1,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,22506.0,3,0,3_0,3_0 +6575,8.0,9.0,65.0,111,74,12,0.0,3057,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2045.010195069063,0.0,0.0,58286.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38857.333333333336,5,0,5,5_0 +6576,0.0,15.0,35.0,211,63,41,2.0,3058,0.0,99999.0,0.0,241.0,2.0,4.0,2.0,4.0,2.1,1816.1780984765705,1388.3999999999999,2600.0,26767.0,1,3,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,12746.190476190475,1,0,1_1,1_0 +6577,0.0,0.0,57.0,111,38,20,0.0,3059,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2665.9390935548286,1625.0,0.0,72363.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,72363.0,5,0,5,5_0 +6578,5.0,5.0,59.0,112,21,50,0.0,306,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,2555.307694691777,0.0,0.0,65437.0,1,1,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,43624.666666666664,5,0,5,5_1 +6579,0.0,11.0,33.0,111,38,60,0.0,3061,0.0,0.0,0.0,1050.0,2.0,3.0,0.0,2.0,1.5,2379.1615576154663,0.0,0.0,55952.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,37301.333333333336,5,0,5,5_0 +6580,0.0,26.0,29.0,111,63,50,0.0,3063,0.0,750.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2580.6131041126155,520.52,0.0,50346.0,1,3,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,27970.0,4,0,4_0,4_0 +6581,3.0,10.0,32.0,111,56,50,0.0,3065,0.0,0.0,0.0,460.0,1.0,5.0,1.0,2.0,1.5,2356.50025233918,0.0,0.0,19810.0,4,3,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,13206.666666666666,1,0,1_0,1_0 +6582,3.0,8.0,62.0,111,45,50,0.0,3066,0.0,0.0,180.0,0.0,1.0,3.0,0.0,2.0,1.5,1855.939474499427,2097.6800000000003,0.0,43400.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,28933.333333333332,4,0,4_0,4_0 +6583,4.0,4.0,68.0,111,75,33,0.0,3067,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1428.4960605488177,0.0,0.0,0.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,0.0,1,0,1_0,1_0 +6584,0.0,12.0,44.0,111,46,42,0.0,3068,0.0,0.0,250.0,0.0,1.0,4.0,1.0,3.0,1.8,1729.0815123838188,2080.0,0.0,53990.0,1,2,8,6.0,4,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,29994.444444444445,4,0,4_0,4_0 +6585,1.0,1.0,46.0,400,38,12,0.0,3069,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1966.362702657022,1779.44,0.0,79141.0,1,2,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,31656.4,4,0,4_0,4_1 +6586,0.0,0.0,37.0,112,47,31,0.0,307,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3077.433721370043,5200.0,0.0,56214.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26768.571428571428,4,0,4_0,4_1 +6587,4.0,4.0,46.0,111,21,50,0.0,3070,0.0,0.0,0.0,0.0,1.0,2.0,4.0,5.0,2.2,936.0671620995412,0.0,0.0,14841.0,1,4,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,6745.90909090909,1,0,1_0,1_0 +6588,4.0,14.0,38.0,112,63,71,0.0,3071,0.0,0.0,30.0,0.0,1.0,5.0,1.0,2.0,1.3,3158.1234943445347,789.88,0.0,18917.0,1,3,7,1.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,14551.538461538461,2,0,2_0,2_0 +6589,10.0,10.0,82.0,112,75,41,0.0,3075,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2903.365650151465,0.0,0.0,20920.0,5,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20920.0,3,0,3_0,3_1 +6590,0.0,24.0,54.0,112,46,42,2.0,3077,0.0,380.0,260.0,0.0,1.0,4.0,0.0,1.0,1.0,2237.374850002836,2748.2000000000003,6000.0,10838.0,4,2,8,3.0,1,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,10838.0,1,0,1_1,1_0 +6591,15.0,15.0,55.0,112,45,42,0.0,3079,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1958.5265486302515,0.0,0.0,37254.0,1,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,37254.0,5,0,5,5_1 +6592,2.0,5.0,44.0,111,62,50,0.0,308,0.0,300.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1969.0790394213595,1560.0,0.0,45215.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25119.444444444445,4,0,4_0,4_0 +6593,2.0,2.0,50.0,111,68,50,0.0,3080,0.0,700.0,0.0,157.0,1.0,2.0,0.0,1.0,1.0,3179.7493120200334,0.0,0.0,13849.0,4,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,13849.0,1,0,1_1,1_0 +6594,0.0,13.0,68.0,112,75,41,0.0,3081,0.0,0.0,40.0,0.0,0.0,7.0,0.0,2.0,1.5,2331.9548978292414,0.0,0.0,39177.0,5,1,7,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,26118.0,4,0,4_0,4_1 +6595,2.0,15.0,57.0,111,46,31,0.0,3083,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1431.0231050289551,3549.5200000000004,0.0,56112.0,1,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,37408.0,5,0,5,5_0 +6596,11.0,13.0,74.0,111,77,71,0.0,3084,0.0,0.0,0.0,132.0,0.0,2.0,0.0,1.0,1.0,2416.1868966886022,1075.36,0.0,11577.0,5,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,11577.0,1,0,1_1,1_0 +6597,6.0,6.0,35.0,221,55,60,0.0,3085,0.0,99999.0,0.0,700.0,2.0,4.0,0.0,2.0,1.5,3068.5613435628757,5538.0,0.0,30899.0,1,3,1,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20599.333333333332,3,0,3_0,3_0 +6598,0.0,0.0,23.0,111,64,50,0.0,3086,0.0,0.0,0.0,410.0,1.0,1.0,0.0,1.0,1.0,2899.087516473907,0.0,0.0,22011.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22011.0,3,0,3_0,3_0 +6599,1.0,5.0,76.0,111,77,60,0.0,3087,0.0,0.0,0.0,350.0,1.0,2.0,0.0,2.0,1.5,5850.5512821137745,0.0,0.0,25185.0,5,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16790.0,2,0,2_0,2_0 +6600,3.0,3.0,50.0,111,37,20,0.0,3089,0.0,400.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2647.3632218431067,0.0,0.0,53031.0,4,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,35354.0,5,0,5,5_0 +6601,4.0,6.0,45.0,112,21,50,0.0,3090,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,911.1168391459014,0.0,0.0,8168.0,1,2,7,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,5105.0,1,0,1_1,1_1 +6602,9.0,17.0,64.0,300,78,50,0.0,3091,0.0,0.0,300.0,0.0,1.0,6.0,0.0,2.0,1.5,2095.659470955518,1240.72,0.0,32905.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21936.666666666668,3,0,3_0,3_1 +6603,12.0,12.0,53.0,111,46,31,0.0,3092,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2096.582079221608,2340.0,0.0,33468.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22312.0,3,0,3_0,3_0 +6604,0.0,0.0,77.0,111,75,33,0.0,3095,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2274.1615141113048,0.0,0.0,22589.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22589.0,3,0,3_0,3_0 +6605,6.0,10.0,89.0,111,78,71,0.0,3097,0.0,200.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3295.957748326931,0.0,0.0,21930.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21930.0,3,0,3_0,3_0 +6606,3.0,3.0,33.0,111,43,33,0.0,3098,0.0,800.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2442.7709690255906,0.0,0.0,75554.0,1,1,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,41974.444444444445,5,0,5,5_0 +6607,23.0,23.0,37.0,111,46,31,0.0,3099,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2229.1198929073876,0.0,0.0,64313.0,1,2,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,35729.444444444445,5,0,5,5_0 +6608,18.0,18.0,67.0,112,33,60,0.0,3101,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1824.7830121506158,1927.64,0.0,45550.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30366.666666666668,4,0,4_0,4_1 +6609,6.0,9.0,60.0,112,77,41,0.0,3103,0.0,145.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3359.278820021636,3478.8,0.0,41871.0,5,2,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,27914.0,4,0,4_0,4_1 +6610,1.0,1.0,32.0,120,13,30,2.0,3104,0.0,0.0,140.0,0.0,2.0,5.0,2.0,4.0,2.1,2512.918626074742,2600.0,13900.0,50045.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23830.95238095238,4,0,4_0,4_1 +6611,1.0,6.0,54.0,300,33,31,2.0,3106,0.0,200.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1774.6253594903737,0.0,9500.0,77706.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,38853.0,5,0,5,5_1 +6612,5.0,7.0,74.0,300,,50,0.0,3107,0.0,300.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1155.3842018877233,0.0,0.0,16440.0,8,1,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16440.0,2,0,2_0,2_0 +6613,1.0,2.0,61.0,300,56,60,2.0,3109,0.0,0.0,178.0,0.0,1.0,7.0,0.0,2.0,1.5,2583.385065133448,4416.879999999999,22250.0,23636.0,1,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,15757.333333333334,2,0,2_0,2_1 +6614,9.0,9.0,68.0,112,75,31,0.0,3110,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1262.9155230275228,0.0,0.0,42800.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28533.333333333332,4,0,4_0,4_1 +6615,17.0,17.0,77.0,112,78,71,0.0,3111,0.0,0.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,2632.2429491280013,0.0,0.0,29650.0,5,3,9,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19766.666666666668,3,0,3_0,3_0 +6616,1.0,1.0,35.0,112,38,60,2.0,3114,0.0,100.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2110.6221953925724,5656.56,23000.0,64312.0,1,2,10,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27961.739130434784,4,0,4_0,4_0 +6617,18.0,18.0,38.0,111,43,42,0.0,3115,0.0,0.0,80.0,0.0,1.0,4.0,1.0,2.0,1.5,1250.3993111531072,0.0,0.0,21233.0,1,2,6,4.0,2,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,14155.333333333334,2,0,2_0,2_0 +6618,0.0,0.0,56.0,400,68,71,0.0,3116,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2943.6828897949686,0.0,0.0,27953.0,1,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18635.333333333332,2,0,2_0,2_1 +6619,4.0,4.0,63.0,111,31,10,0.0,3117,0.0,0.0,50.0,0.0,1.0,4.0,0.0,2.0,1.5,592.0858075672287,3016.0,0.0,77577.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,51718.0,5,0,5,5_0 +6620,2.0,10.0,55.0,112,38,31,0.0,3119,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1873.0939992910244,1560.0,0.0,105433.0,1,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,70288.66666666667,5,0,5,5_0 +6621,0.0,0.0,41.0,112,56,50,0.0,312,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1963.550794260713,0.0,0.0,24346.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12173.0,1,0,1_0,1_1 +6622,2.0,2.0,41.0,111,47,50,0.0,3120,0.0,0.0,0.0,273.0,2.0,5.0,3.0,4.0,2.3,1122.0759661415304,3540.16,0.0,47246.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,20541.739130434784,3,0,3_1,3_0 +6623,19.0,24.0,72.0,111,52,50,0.0,3121,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1175.5257875391844,1924.0,0.0,28150.0,5,1,6,5.0,1,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,28150.0,4,0,4_0,4_0 +6624,0.0,0.0,34.0,111,62,50,0.0,3122,0.0,0.0,0.0,380.0,2.0,3.0,2.0,4.0,2.1,3122.942053524273,2600.0,0.0,47647.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22689.04761904762,3,0,3_0,3_0 +6625,16.0,16.0,36.0,111,63,50,0.0,3124,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2378.8778415301526,2132.0,0.0,49151.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23405.238095238095,3,0,3_0,3_0 +6626,1.0,7.0,73.0,111,75,41,0.0,3126,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2201.336704223099,0.0,0.0,41245.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27496.666666666668,4,0,4_0,4_0 +6627,5.0,26.0,65.0,111,77,41,0.0,3127,0.0,0.0,1500.0,0.0,0.0,3.0,0.0,2.0,1.5,2132.0247380110777,0.0,0.0,36068.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24045.333333333332,4,0,4_0,4_0 +6628,9.0,13.0,37.0,112,68,12,0.0,3128,0.0,99999.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,873.751850409526,3797.56,0.0,36208.0,1,3,10,4.0,4,3.0,0.0,0.0,0,0,1,0,0,1,0.0,3.0,17241.90476190476,2,0,2_1,2_0 +6629,3.0,6.0,41.0,112,45,41,0.0,313,0.0,170.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,7276.02660165695,4290.52,0.0,59208.0,1,1,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,32893.333333333336,5,0,5,5_0 +6630,7.0,13.0,49.0,111,43,41,0.0,3130,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2903.5236193354126,0.0,0.0,38664.0,1,3,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,25776.0,4,0,4_1,4_0 +6631,0.0,0.0,34.0,111,47,31,0.0,3132,0.0,0.0,0.0,449.0,1.0,2.0,0.0,1.0,1.0,2860.6516240747774,0.0,0.0,18411.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18411.0,2,0,2_0,2_0 +6632,15.0,17.0,72.0,120,72,71,0.0,3133,0.0,360.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1640.1139245468128,2891.7200000000003,0.0,21620.0,5,1,0,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,21620.0,3,0,3_0,3_0 +6633,9.0,9.0,67.0,111,77,50,0.0,3134,0.0,0.0,0.0,372.0,0.0,2.0,0.0,1.0,1.0,2210.0070758581237,0.0,0.0,20292.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20292.0,3,0,3_0,3_0 +6634,1.0,9.0,48.0,111,52,44,2.0,3138,0.0,450.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,917.7502986201672,0.0,3800.0,52091.0,1,1,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,40070.0,5,0,5,5_0 +6635,2.0,10.0,66.0,112,74,44,0.0,3139,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1961.422973094138,2262.0,0.0,48046.0,5,1,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,48046.0,5,0,5,5_0 +6636,0.0,0.0,59.0,111,21,30,0.0,314,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2750.0486124105837,2121.6,0.0,11986.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11986.0,1,0,1_1,1_0 +6637,11.0,14.0,61.0,400,75,50,0.0,3141,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2005.8377634668198,0.0,0.0,30334.0,5,1,0,0.0,1,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,30334.0,4,0,4_0,4_1 +6638,4.0,4.0,63.0,300,77,50,0.0,3142,0.0,200.0,400.0,0.0,1.0,5.0,0.0,2.0,1.5,2899.611641780053,0.0,0.0,51544.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,34362.666666666664,5,0,5,5_1 +6639,1.0,1.0,55.0,211,56,50,1.0,3143,0.0,0.0,0.0,253.0,1.0,2.0,0.0,1.0,1.0,1584.1164076500938,1870.44,10950.0,17030.0,1,3,3,3.0,1,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,17030.0,2,0,2_1,2_0 +6640,2.0,10.0,44.0,111,67,60,0.0,3146,0.0,400.0,0.0,148.0,1.0,4.0,2.0,4.0,2.1,3456.7282356382884,0.0,0.0,29104.0,1,3,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,1,1.0,2.0,13859.047619047618,1,0,1_1,1_0 +6641,8.0,10.0,38.0,112,62,50,0.0,3147,0.0,0.0,55.0,70.0,2.0,5.0,5.0,7.0,3.4,1808.2139839282438,1578.2,0.0,40902.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,12030.0,1,0,1_1,1_1 +6642,0.0,5.0,68.0,111,74,44,2.0,3148,0.0,200.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4095.2133300971113,0.0,5000.0,46402.0,5,1,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,30934.666666666668,4,0,4_0,4_0 +6643,4.0,12.0,75.0,112,74,30,0.0,3149,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1870.1405115848675,3120.0,0.0,41116.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,41116.0,5,0,5,5_1 +6644,0.0,0.0,48.0,221,37,30,0.0,315,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,1576.6505095230045,0.0,0.0,76161.0,1,1,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30464.4,4,0,4_0,4_0 +6645,8.0,11.0,26.0,400,67,70,0.0,3150,0.0,0.0,0.0,85.0,1.0,3.0,0.0,1.0,1.0,2497.367860246356,520.52,0.0,20508.0,1,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,20508.0,3,0,3_1,3_0 +6646,3.0,9.0,70.0,211,72,30,0.0,3151,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3424.6965759085006,3016.0,0.0,97271.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,64847.333333333336,5,0,5,5_0 +6647,6.0,6.0,46.0,111,37,20,0.0,3152,0.0,70.0,0.0,588.0,1.0,4.0,1.0,2.0,1.5,634.5539013416541,676.0,0.0,25655.0,1,3,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17103.333333333332,2,0,2_0,2_0 +6648,11.0,11.0,61.0,111,52,33,0.0,3155,0.0,0.0,0.0,302.0,2.0,4.0,2.0,4.0,2.5,1792.007996492474,2080.0,0.0,48520.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,19408.0,3,0,3_0,3_0 +6649,10.0,57.0,93.0,111,74,30,0.0,3156,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2193.668710418072,0.0,0.0,27970.0,5,4,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,27970.0,4,0,4_0,4_0 +6650,0.0,0.0,67.0,111,75,30,0.0,3157,0.0,0.0,0.0,525.0,0.0,4.0,0.0,2.0,1.5,3498.4593768498644,0.0,0.0,33325.0,5,3,8,6.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22216.666666666668,3,0,3_0,3_0 +6651,1.0,8.0,19.0,111,84,41,2.0,3159,0.0,1000.0,200.0,0.0,0.0,1.0,0.0,1.0,1.0,2900.8340889201454,1762.8,4500.0,5430.0,3,3,6,4.0,1,3.0,0.0,1.0,0,0,1,0,0,1,1.0,2.0,5430.0,1,0,1_1,1_0 +6652,0.0,0.0,40.0,111,52,43,0.0,316,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,883.5021969265738,0.0,0.0,11609.0,4,4,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,4643.6,1,0,1_0,1_0 +6653,2.0,2.0,45.0,222,52,50,0.0,3161,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,3.0,2015.4896972565446,4160.0,0.0,32576.0,1,1,1,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10858.666666666666,1,0,1_0,1_1 +6654,0.0,0.0,47.0,111,63,50,0.0,3163,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2456.0688146980156,3120.0,0.0,83808.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33523.2,5,0,5,5_0 +6655,5.0,5.0,66.0,400,74,20,0.0,3164,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3375.5859952203373,936.0,0.0,28183.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,28183.0,4,0,4_0,4_1 +6656,0.0,0.0,39.0,111,54,60,0.0,3165,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,3.1,947.2214531670112,5304.0,0.0,14904.0,1,4,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,4807.741935483871,1,0,1_0,1_0 +6657,3.0,10.0,58.0,211,68,50,0.0,3166,0.0,0.0,202.0,0.0,3.0,4.0,1.0,3.0,2.0,1289.2855137438678,2652.0,0.0,54845.0,1,1,3,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,27422.5,4,0,4_0,4_0 +6658,3.0,6.0,63.0,112,75,70,0.0,3167,0.0,230.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2331.6706993420175,1820.0,0.0,30620.0,5,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20413.333333333332,3,0,3_0,3_1 +6659,0.0,0.0,55.0,112,52,50,0.0,3168,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1548.3402646925854,8320.0,0.0,18700.0,1,2,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12466.666666666666,1,0,1_0,1_1 +6660,0.0,0.0,71.0,111,74,60,0.0,3169,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3003.4447870875747,0.0,0.0,51630.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34420.0,5,0,5,5_0 +6661,0.0,14.0,49.0,111,43,33,0.0,317,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2284.744277072438,0.0,0.0,31112.0,1,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,31112.0,4,0,4_0,4_0 +6662,1.0,15.0,56.0,111,33,41,2.0,3170,0.0,400.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1933.093456715553,3414.84,500.0,97788.0,1,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,65192.0,5,0,5,5_0 +6663,0.0,10.0,38.0,112,68,30,2.0,3171,0.0,0.0,0.0,0.0,2.0,3.0,4.0,6.0,2.7,1941.8643191332974,915.2,3000.0,23432.0,1,1,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8678.518518518518,1,0,1_0,1_1 +6664,5.0,5.0,74.0,111,74,10,0.0,3172,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3351.228954802965,0.0,0.0,142398.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,94932.0,5,0,5,5_0 +6665,6.0,6.0,29.0,111,63,43,0.0,3173,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,6647.082925151154,122.72,0.0,44050.0,1,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,29366.666666666668,4,0,4_0,4_0 +6666,3.0,3.0,42.0,111,53,60,0.0,3174,0.0,0.0,0.0,470.0,1.0,1.0,1.0,3.0,1.8,4986.711160042483,0.0,0.0,17390.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,9661.111111111111,1,0,1_0,1_0 +6667,13.0,13.0,50.0,112,34,20,0.0,3175,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1906.3391905548222,0.0,0.0,52277.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20910.8,3,0,3_0,3_1 +6668,12.0,12.0,44.0,111,63,71,0.0,3176,0.0,0.0,0.0,49.0,1.0,3.0,2.0,3.0,1.8,1517.0442308845209,0.0,0.0,17530.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,9738.888888888889,1,0,1_1,1_0 +6669,0.0,0.0,29.0,300,55,50,2.0,3179,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1210.271054964374,0.0,8000.0,47536.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,26408.888888888887,4,0,4_1,4_1 +6670,12.0,12.0,50.0,111,62,50,0.0,318,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3895.299723279331,0.0,0.0,42220.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,28146.666666666668,4,0,4_0,4_0 +6671,21.0,24.0,32.0,111,38,20,0.0,3180,0.0,230.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1777.606738108625,0.0,0.0,63736.0,1,2,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,35408.88888888889,5,0,5,5_0 +6672,7.0,11.0,40.0,111,47,71,0.0,3181,0.0,0.0,0.0,543.0,2.0,3.0,2.0,4.0,2.1,2458.082133122977,5096.0,0.0,45679.0,1,3,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21751.90476190476,3,0,3_0,3_0 +6673,8.0,8.0,64.0,120,74,60,0.0,3182,0.0,200.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1778.211708500583,0.0,0.0,48031.0,5,1,0,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,32020.666666666668,5,0,5,5_0 +6674,9.0,11.0,63.0,111,75,31,0.0,3183,0.0,99999.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,9714.558274188035,0.0,0.0,26765.0,5,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26765.0,4,0,4_0,4_0 +6675,5.0,8.0,67.0,112,77,50,0.0,3184,0.0,150.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2486.8692623705197,0.0,0.0,21813.0,5,4,9,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21813.0,3,0,3_0,3_1 +6676,6.0,6.0,65.0,112,22,50,0.0,3185,0.0,125.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1643.7856682589256,3640.0,0.0,86647.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,57764.666666666664,5,0,5,5_1 +6677,0.0,0.0,69.0,300,78,70,0.0,3187,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2482.5669520333204,2480.4,0.0,48193.0,5,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24096.5,4,0,4_0,4_1 +6678,0.0,12.0,78.0,112,86,71,0.0,3188,0.0,320.0,320.0,222.0,0.0,2.0,0.0,1.0,1.0,4336.20367096837,0.0,0.0,13493.0,5,3,8,1.0,1,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,13493.0,1,0,1_1,1_0 +6679,0.0,0.0,64.0,120,78,70,0.0,319,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1574.371440082579,0.0,0.0,32024.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21349.333333333332,3,0,3_0,3_0 +6680,1.0,14.0,60.0,112,52,71,2.0,3194,0.0,350.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,5119.023091105785,1560.0,1500.0,23303.0,1,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15535.333333333334,2,0,2_0,2_1 +6681,2.0,9.0,84.0,112,78,50,0.0,3196,0.0,0.0,207.0,0.0,0.0,5.0,0.0,2.0,1.5,2961.096325352915,0.0,0.0,21489.0,5,1,9,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14326.0,2,0,2_0,2_1 +6682,12.0,13.0,40.0,111,68,71,0.0,3198,0.0,0.0,0.0,0.0,1.0,5.0,5.0,7.0,3.2,1472.2212567683061,1040.0,0.0,35798.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,11186.875,1,0,1_1,1_0 +6683,1.0,3.0,56.0,111,37,41,0.0,3199,0.0,0.0,0.0,0.0,2.0,1.0,0.0,2.0,1.5,1672.6179993521687,0.0,0.0,56705.0,4,2,8,6.0,3,2.0,1.0,0.0,0,0,1,0,0,0,2.0,0.0,37803.333333333336,5,0,5,5_0 +6684,14.0,14.0,33.0,112,47,30,0.0,32,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1829.2131170365235,2945.28,0.0,45207.0,1,2,10,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,21527.142857142855,3,0,3_0,3_0 +6685,4.0,11.0,49.0,111,68,70,0.0,320,0.0,250.0,0.0,0.0,3.0,4.0,3.0,4.0,2.5,3705.6649737494026,0.0,0.0,47660.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,19064.0,3,0,3_1,3_0 +6686,1.0,1.0,80.0,120,72,50,0.0,3200,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2256.8988469128267,0.0,0.0,21030.0,5,1,0,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14020.0,2,0,2_0,2_0 +6687,2.0,2.0,61.0,300,43,33,0.0,3201,0.0,110.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2040.5215315838848,5066.88,0.0,93661.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,62440.666666666664,5,0,5,5_1 +6688,14.0,14.0,59.0,111,63,71,0.0,3204,0.0,0.0,8.0,294.0,1.0,2.0,0.0,1.0,1.0,3272.714343617725,0.0,0.0,19134.0,1,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,19134.0,3,0,3_0,3_0 +6689,11.0,11.0,37.0,111,38,12,0.0,3205,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2312.682278870527,2084.6800000000003,0.0,81257.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,33857.083333333336,5,0,5,5_0 +6690,16.0,16.0,62.0,300,21,50,0.0,3209,0.0,0.0,0.0,338.0,2.0,3.0,1.0,3.0,1.8,2975.316726056538,4108.0,0.0,30813.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,17118.333333333332,2,0,2_1,2_1 +6691,0.0,7.0,55.0,111,47,50,0.0,3210,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1252.3186581357127,0.0,0.0,49135.0,1,2,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,32756.666666666668,5,0,5,5_0 +6692,0.0,0.0,40.0,300,43,30,0.0,3212,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2509.298280708664,3567.72,0.0,80633.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35057.82608695653,5,0,5,5_1 +6693,1.0,1.0,61.0,111,78,44,0.0,3214,0.0,350.0,0.0,222.0,1.0,3.0,1.0,3.0,1.8,2594.287498970431,0.0,0.0,22281.0,5,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,12378.333333333332,1,0,1_1,1_0 +6694,0.0,0.0,38.0,112,56,60,0.0,3215,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,1877.0838554640688,1040.0,0.0,21120.0,4,3,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,10057.142857142857,1,0,1_1,1_1 +6695,6.0,8.0,60.0,120,74,42,0.0,3216,0.0,0.0,50.0,0.0,0.0,8.0,0.0,2.0,1.5,1759.365113519359,0.0,0.0,72214.0,7,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,48142.666666666664,5,0,5,5_1 +6696,0.0,0.0,56.0,111,54,50,0.0,3218,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1969.3988039859482,3087.76,0.0,40090.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19090.47619047619,3,0,3_0,3_0 +6697,3.0,3.0,70.0,112,75,50,0.0,3219,0.0,100.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2547.847341542301,1976.0,0.0,60940.0,5,1,7,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,30470.0,4,0,4_0,4_1 +6698,0.0,0.0,60.0,112,38,31,0.0,322,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1788.2010541734544,2860.0,0.0,74951.0,1,1,10,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,49967.333333333336,5,0,5,5_0 +6699,1.0,1.0,28.0,111,55,43,1.0,3220,0.0,0.0,0.0,412.0,1.0,1.0,0.0,1.0,1.0,2935.5537287601933,0.0,11000.0,18104.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18104.0,2,0,2_0,2_0 +6700,2.0,2.0,72.0,300,78,71,0.0,3225,0.0,500.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1524.8506146064465,2444.0,0.0,24517.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16344.666666666666,2,0,2_0,2_1 +6701,1.0,10.0,51.0,111,42,31,2.0,3226,0.0,0.0,200.0,0.0,1.0,4.0,1.0,2.0,1.3,1109.369934033707,0.0,1800.0,32426.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24943.076923076922,4,0,4_0,4_0 +6702,14.0,15.0,51.0,112,46,50,0.0,3227,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2461.262916911081,3464.7599999999998,0.0,44447.0,1,1,9,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,24692.777777777777,4,0,4_0,4_1 +6703,12.0,16.0,59.0,111,48,44,0.0,3229,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1430.203026696667,0.0,0.0,45410.0,1,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,30273.333333333332,4,0,4_0,4_0 +6704,0.0,0.0,39.0,111,68,70,0.0,3230,0.0,0.0,0.0,114.0,1.0,2.0,1.0,2.0,1.3,867.2532793633239,1040.0,0.0,18354.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14118.461538461537,2,0,2_1,2_0 +6705,2.0,2.0,86.0,300,74,12,0.0,3231,0.0,100.0,150.0,0.0,0.0,5.0,0.0,2.0,1.5,2350.425438241067,2080.0,0.0,101341.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,67560.66666666667,5,0,5,5_1 +6706,3.0,6.0,49.0,111,21,50,0.0,3232,0.0,120.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2225.9153469704715,1560.0,0.0,36679.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24452.666666666668,4,0,4_0,4_0 +6707,15.0,15.0,55.0,300,62,50,0.0,3233,0.0,690.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1732.8573376190702,2083.12,0.0,26323.0,1,1,0,0.0,3,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,17548.666666666668,2,0,2_0,2_1 +6708,0.0,0.0,52.0,111,22,71,0.0,3234,0.0,0.0,0.0,0.0,2.0,5.0,3.0,4.0,2.5,1060.220673643314,3870.88,0.0,14240.0,4,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,5696.0,1,0,1_0,1_0 +6709,2.0,9.0,41.0,111,56,41,0.0,3235,0.0,300.0,0.0,150.0,1.0,3.0,1.0,2.0,1.5,1408.0191686383637,0.0,0.0,16318.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,10878.666666666666,1,0,1_1,1_0 +6710,3.0,4.0,50.0,211,63,71,0.0,3236,0.0,100.0,210.0,0.0,1.0,3.0,0.0,1.0,1.0,2089.027624004683,0.0,0.0,10260.0,4,3,3,4.0,1,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,10260.0,1,0,1_1,1_0 +6711,0.0,0.0,63.0,111,75,44,0.0,3237,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2227.052229202333,0.0,0.0,59299.0,5,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,39532.666666666664,5,0,5,5_0 +6712,6.0,23.0,60.0,111,21,50,0.0,3238,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2742.939694108072,0.0,0.0,104285.0,1,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,69523.33333333333,5,0,5,5_0 +6713,6.0,10.0,53.0,111,52,50,0.0,3239,0.0,99999.0,0.0,260.0,1.0,2.0,0.0,1.0,1.0,1572.6332040496436,2427.36,0.0,24663.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24663.0,4,0,4_0,4_0 +6714,4.0,4.0,76.0,112,74,31,0.0,324,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1883.702299720511,2689.44,0.0,48877.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32584.666666666668,5,0,5,5_0 +6715,2.0,2.0,40.0,111,53,42,0.0,3241,0.0,800.0,100.0,619.0,2.0,6.0,8.0,10.0,4.1,1713.209462583719,2340.52,0.0,82745.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,20181.70731707317,3,0,3_1,3_0 +6716,7.0,7.0,24.0,111,84,30,0.0,3242,0.0,120.0,0.0,377.0,0.0,3.0,0.0,2.0,1.5,1138.7398104871663,0.0,0.0,12576.0,3,3,8,6.0,5,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,8384.0,1,0,1_1,1_0 +6717,2.0,15.0,53.0,300,64,50,0.0,3243,0.0,0.0,50.0,0.0,1.0,4.0,3.0,5.0,2.8,544.2474044970246,1658.8,0.0,46692.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,16675.714285714286,2,0,2_1,2_1 +6718,0.0,0.0,66.0,111,75,60,0.0,3244,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2268.371182869842,0.0,0.0,17984.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17984.0,2,0,2_0,2_0 +6719,0.0,0.0,34.0,111,47,50,0.0,3245,0.0,0.0,0.0,296.0,2.0,2.0,1.0,3.0,1.8,5448.057440144278,0.0,0.0,46240.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25688.888888888887,4,0,4_0,4_0 +6720,3.0,14.0,49.0,111,54,60,0.0,3246,0.0,868.0,0.0,976.0,1.0,3.0,1.0,2.0,1.3,1312.0853662998447,0.0,0.0,32472.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,24978.46153846154,4,0,4_0,4_0 +6721,3.0,15.0,52.0,112,62,50,0.0,3248,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1702.3558841181296,3120.52,0.0,45963.0,4,2,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18385.2,2,0,2_0,2_1 +6722,0.0,0.0,60.0,112,37,33,0.0,3249,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1934.340409802279,0.0,0.0,70276.0,1,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,46850.666666666664,5,0,5,5_1 +6723,4.0,14.0,42.0,400,85,50,0.0,325,0.0,0.0,99999.0,700.0,0.0,5.0,4.0,5.0,2.6,2087.766501487832,0.0,0.0,20207.0,6,3,0,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,7771.923076923076,1,0,1_0,1_0 +6724,7.0,9.0,54.0,400,75,30,0.0,3250,0.0,150.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2024.3257080848539,337.48,0.0,25800.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17200.0,2,0,2_0,2_1 +6725,0.0,4.0,85.0,111,78,71,0.0,3252,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2981.095138505332,0.0,0.0,15875.0,5,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15875.0,2,0,2_0,2_0 +6726,0.0,0.0,76.0,400,71,50,0.0,3253,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2094.730606109286,0.0,0.0,12132.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12132.0,1,0,1_0,1_1 +6727,14.0,15.0,82.0,111,77,50,0.0,3254,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2644.38889577808,0.0,0.0,19901.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19901.0,3,0,3_0,3_0 +6728,5.0,18.0,40.0,111,42,20,0.0,3255,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3377.702695330551,0.0,0.0,27742.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27742.0,4,0,4_0,4_0 +6729,3.0,6.0,55.0,111,52,71,0.0,3259,0.0,0.0,0.0,550.0,3.0,3.0,1.0,3.0,2.0,3604.662189644256,1300.0,0.0,61941.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,30970.5,4,0,4_0,4_0 +6730,14.0,14.0,83.0,400,78,60,0.0,326,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3249.673558910406,0.0,0.0,9662.0,5,4,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,9662.0,1,0,1_0,1_1 +6731,20.0,20.0,70.0,111,74,10,0.0,3261,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3215.319607974577,0.0,0.0,40622.0,5,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,40622.0,5,0,5,5_0 +6732,0.0,13.0,31.0,120,63,43,0.0,3266,0.0,0.0,150.0,0.0,2.0,4.0,2.0,4.0,2.1,2645.593212728664,2652.0,0.0,42214.0,1,2,0,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,20101.90476190476,3,0,3_0,3_0 +6733,16.0,17.0,37.0,400,42,31,0.0,3267,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2198.1418964783907,2706.6,0.0,19527.0,1,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19527.0,3,0,3_0,3_1 +6734,8.0,8.0,51.0,111,55,71,0.0,3269,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1733.0866874806052,0.0,0.0,29670.0,1,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19780.0,3,0,3_0,3_0 +6735,6.0,15.0,52.0,112,33,31,0.0,327,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1764.1448768829432,6021.08,0.0,63058.0,1,2,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25223.2,4,0,4_0,4_1 +6736,2.0,13.0,29.0,111,62,71,0.0,3270,0.0,0.0,180.0,0.0,1.0,2.0,0.0,1.0,1.0,4545.395635287175,0.0,0.0,8930.0,4,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,8930.0,1,0,1_1,1_0 +6737,8.0,8.0,74.0,300,78,50,0.0,3271,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1960.6512090546496,0.0,0.0,22380.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14920.0,2,0,2_0,2_1 +6738,0.0,0.0,39.0,111,46,20,0.0,3272,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,879.9628110457141,0.0,0.0,30700.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19187.5,3,0,3_1,3_0 +6739,0.0,0.0,71.0,112,77,50,0.0,3273,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3276.9277278422933,2457.0,0.0,32534.0,5,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21689.333333333332,3,0,3_0,3_0 +6740,0.0,0.0,42.0,112,38,31,0.0,3274,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2571.422636476416,0.0,0.0,73264.0,1,1,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40702.22222222222,5,0,5,5_0 +6741,4.0,12.0,46.0,112,55,50,0.0,3275,0.0,220.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2278.353582718644,1402.44,0.0,19310.0,1,2,10,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14853.846153846152,2,0,2_0,2_0 +6742,2.0,4.0,46.0,300,55,41,0.0,3277,0.0,90.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2016.8105526295992,23955.36,0.0,55946.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,31081.11111111111,4,0,4_0,4_0 +6743,0.0,0.0,38.0,111,22,43,0.0,3279,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,1725.132237278576,0.0,0.0,11387.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8759.23076923077,1,0,1_1,1_0 +6744,15.0,15.0,75.0,112,74,50,0.0,328,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1901.2301491064482,0.0,0.0,94842.0,5,4,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,63228.0,5,0,5,5_1 +6745,2.0,2.0,44.0,112,64,50,0.0,3280,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,764.6901709692318,0.0,0.0,24060.0,1,3,9,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,16040.0,2,0,2_1,2_0 +6746,15.0,15.0,85.0,300,77,71,0.0,3282,0.0,0.0,200.0,0.0,0.0,3.0,0.0,1.0,1.0,3308.6550568802973,0.0,0.0,17479.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17479.0,2,0,2_0,2_1 +6747,5.0,5.0,23.0,111,68,71,0.0,3283,0.0,0.0,99999.0,69.0,1.0,3.0,0.0,2.0,1.5,3719.81719962516,0.0,0.0,18468.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,12312.0,1,0,1_1,1_0 +6748,11.0,13.0,23.0,111,56,43,0.0,3284,0.0,0.0,16.0,600.0,2.0,2.0,1.0,3.0,1.8,4753.0704867110335,3484.0,0.0,23876.0,4,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,13264.444444444443,1,0,1_0,1_0 +6749,0.0,0.0,38.0,300,63,43,0.0,3285,0.0,0.0,0.0,395.0,1.0,5.0,3.0,5.0,2.4,1538.561096000863,0.0,0.0,25779.0,1,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10741.25,1,0,1_1,1_0 +6750,0.0,0.0,60.0,111,77,50,0.0,3286,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2416.884485255528,0.0,0.0,27753.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27753.0,4,0,4_0,4_0 +6751,10.0,15.0,58.0,300,56,70,0.0,3287,0.0,300.0,0.0,0.0,1.0,6.0,0.0,3.0,2.0,3901.6788033813605,2860.52,0.0,16717.0,1,1,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,8358.5,1,0,1_0,1_1 +6752,0.0,0.0,36.0,111,62,43,1.0,3288,0.0,0.0,400.0,0.0,2.0,4.0,0.0,2.0,1.5,2041.5669034797136,1872.0,26500.0,37767.0,1,3,4,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25178.0,4,0,4_0,4_0 +6753,12.0,12.0,62.0,111,74,30,0.0,3289,0.0,300.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3963.759332888545,3225.04,0.0,25024.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25024.0,4,0,4_0,4_0 +6754,6.0,9.0,55.0,111,38,12,0.0,329,0.0,0.0,0.0,0.0,2.0,10.0,1.0,3.0,2.0,2403.3583806113443,0.0,0.0,106979.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,53489.5,5,0,5,5_0 +6755,3.0,11.0,42.0,112,54,20,0.0,3290,0.0,150.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4643.83923024925,2236.0,0.0,27043.0,1,3,10,4.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,27043.0,4,0,4_0,4_0 +6756,7.0,14.0,34.0,112,46,42,0.0,3292,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3685.385037398855,3364.4,0.0,48838.0,1,2,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23256.190476190473,3,0,3_0,3_0 +6757,3.0,10.0,47.0,111,62,71,0.0,3293,0.0,0.0,0.0,330.0,3.0,5.0,2.0,4.0,2.5,1868.8499996510934,1040.0,0.0,38469.0,1,3,7,5.0,4,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,15387.6,2,0,2_0,2_0 +6758,13.0,13.0,35.0,111,33,20,0.0,3294,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,780.5555211223118,4368.0,0.0,25194.0,1,3,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,13996.666666666666,2,0,2_1,2_0 +6759,0.0,7.0,32.0,300,48,30,0.0,3295,0.0,250.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2009.9324117254168,4051.3199999999997,0.0,50624.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24106.666666666664,4,0,4_0,4_1 +6760,2.0,2.0,75.0,111,74,31,0.0,3297,0.0,1320.0,0.0,1160.0,1.0,4.0,1.0,3.0,2.0,3138.1073613595604,1300.0,0.0,54317.0,5,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27158.5,4,0,4_0,4_0 +6761,0.0,0.0,72.0,300,75,41,0.0,3299,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3103.3581673490103,2402.92,0.0,24160.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16106.666666666666,2,0,2_0,2_1 +6762,3.0,3.0,42.0,111,33,20,0.0,3300,0.0,700.0,0.0,484.0,1.0,3.0,1.0,2.0,1.3,809.5919331053628,0.0,0.0,33524.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25787.69230769231,4,0,4_0,4_0 +6763,3.0,6.0,53.0,221,46,50,0.0,3304,0.0,0.0,99999.0,0.0,2.0,6.0,3.0,5.0,2.8,1597.658241738016,3328.0,0.0,58600.0,1,1,1,2.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,20928.57142857143,3,0,3_0,3_0 +6764,19.0,27.0,63.0,111,77,71,0.0,3305,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4276.12410944127,0.0,0.0,10400.0,6,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10400.0,1,0,1_1,1_0 +6765,2.0,2.0,62.0,300,77,71,0.0,3306,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3419.6329151665423,0.0,0.0,11050.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,11050.0,1,0,1_0,1_1 +6766,5.0,19.0,34.0,111,52,43,0.0,3307,0.0,0.0,100.0,0.0,1.0,3.0,1.0,2.0,1.3,775.6151826132086,2756.0,0.0,23073.0,1,3,7,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,17748.46153846154,2,0,2_1,2_0 +6767,0.0,0.0,55.0,112,38,31,0.0,331,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1351.9781498060568,6774.56,0.0,82177.0,1,1,10,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,41088.5,5,0,5,5_0 +6768,0.0,0.0,49.0,111,43,50,0.0,3310,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2979.9457130473,1048.8400000000001,0.0,42054.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18284.34782608696,2,0,2_0,2_0 +6769,0.0,0.0,62.0,111,77,50,0.0,3311,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1692.715311294818,0.0,0.0,36550.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24366.666666666668,4,0,4_0,4_0 +6770,0.0,15.0,27.0,112,38,41,2.0,3313,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2703.4094524123325,0.0,700.0,57028.0,1,2,7,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,31682.222222222223,4,0,4_0,4_0 +6771,0.0,0.0,66.0,112,78,70,0.0,3314,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1496.3213987079673,2043.6,0.0,30186.0,5,1,6,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20124.0,3,0,3_0,3_0 +6772,2.0,10.0,64.0,111,74,31,0.0,3315,0.0,500.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1773.9977504526119,1740.44,0.0,57762.0,5,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,38508.0,5,0,5,5_0 +6773,5.0,5.0,40.0,112,43,33,0.0,3316,0.0,0.0,99999.0,0.0,2.0,6.0,3.0,5.0,2.4,1719.8415383923225,2849.6,0.0,51420.0,1,2,6,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21425.0,3,0,3_0,3_0 +6774,2.0,2.0,39.0,221,33,20,0.0,3318,0.0,100.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2717.9052693941785,3179.28,0.0,80925.0,1,2,1,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,44958.333333333336,5,0,5,5_0 +6775,3.0,4.0,47.0,111,63,71,0.0,3320,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,2668.4110211204893,0.0,0.0,24288.0,4,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,11565.714285714284,1,0,1_1,1_0 +6776,0.0,0.0,68.0,111,75,31,0.0,3321,0.0,0.0,0.0,300.0,0.0,2.0,0.0,1.0,1.0,2642.6506674996995,520.52,0.0,22892.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22892.0,3,0,3_0,3_0 +6777,6.0,20.0,45.0,112,38,12,0.0,3322,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.8,2074.4155660318856,2352.48,0.0,64618.0,1,1,8,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23077.857142857145,3,0,3_0,3_0 +6778,1.0,9.0,55.0,111,42,31,2.0,3323,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2690.3735241812597,3284.3199999999997,15500.0,46965.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,46965.0,5,0,5,5_0 +6779,1.0,15.0,85.0,111,74,44,2.0,3325,0.0,250.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2210.9266961213625,0.0,2300.0,84669.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,56446.0,5,0,5,5_0 +6780,0.0,0.0,50.0,111,43,33,0.0,3326,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1728.001558265906,2080.0,0.0,74259.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37129.5,5,0,5,5_0 +6781,6.0,7.0,37.0,111,62,43,0.0,3328,0.0,200.0,0.0,553.0,2.0,2.0,0.0,2.0,1.5,676.4275896690929,2154.88,0.0,39441.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26294.0,4,0,4_0,4_0 +6782,14.0,14.0,69.0,111,75,60,0.0,333,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1480.8407484884488,4212.0,0.0,40040.0,5,2,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,26693.333333333332,4,0,4_0,4_0 +6783,5.0,5.0,40.0,111,52,60,0.0,3330,0.0,200.0,0.0,180.0,1.0,4.0,1.0,2.0,1.5,1453.2919734433074,0.0,0.0,20774.0,1,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13849.333333333334,1,0,1_1,1_0 +6784,2.0,5.0,28.0,111,84,50,0.0,3331,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,5195.663940348881,0.0,0.0,12516.0,3,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,12516.0,1,0,1_1,1_0 +6785,0.0,21.0,50.0,111,85,71,0.0,3333,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,1.0,1.0,1860.8048288258806,0.0,0.0,5954.0,7,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,5954.0,1,0,1_1,1_0 +6786,3.0,3.0,57.0,120,77,44,0.0,3334,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,313.55876066880916,3749.7200000000003,0.0,46820.0,5,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23410.0,3,0,3_0,3_1 +6787,0.0,0.0,55.0,112,13,31,0.0,3335,0.0,0.0,0.0,0.0,3.0,8.0,1.0,3.0,2.0,2463.448330497613,4736.16,0.0,43613.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21806.5,3,0,3_0,3_1 +6788,2.0,2.0,65.0,112,75,33,0.0,3336,0.0,400.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1631.63087207625,0.0,0.0,36426.0,5,1,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,24284.0,4,0,4_0,4_0 +6789,0.0,0.0,36.0,111,67,71,0.0,3337,0.0,0.0,0.0,15.0,2.0,4.0,3.0,6.0,2.9,2655.5512288619957,2986.36,0.0,41776.0,1,3,8,6.0,5,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14405.517241379312,2,0,2_1,2_0 +6790,1.0,1.0,45.0,112,56,50,0.0,3338,0.0,250.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1909.1427239202762,2600.0,0.0,38501.0,1,2,4,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,15400.4,2,0,2_0,2_1 +6791,2.0,2.0,55.0,112,62,71,0.0,3339,0.0,350.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,3551.310460741222,0.0,0.0,41536.0,1,1,9,0.0,2,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,27690.666666666668,4,0,4_0,4_1 +6792,4.0,4.0,63.0,112,77,71,0.0,3340,0.0,0.0,40.0,0.0,0.0,2.0,0.0,1.0,1.0,2420.62102436074,0.0,0.0,16790.0,5,3,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,16790.0,2,0,2_0,2_0 +6793,0.0,0.0,72.0,111,74,20,0.0,3341,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2166.3962078025747,3225.04,0.0,61312.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40874.666666666664,5,0,5,5_0 +6794,1.0,7.0,62.0,112,63,50,2.0,3342,0.0,0.0,0.0,0.0,1.0,9.0,0.0,1.0,1.0,2449.1211108420807,1248.0,7000.0,21228.0,1,1,9,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21228.0,3,0,3_0,3_1 +6795,10.0,10.0,68.0,111,78,70,0.0,3345,0.0,345.0,0.0,242.0,0.0,3.0,0.0,2.0,1.5,7344.550342215203,0.0,0.0,15597.0,5,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,10398.0,1,0,1_0,1_0 +6796,0.0,0.0,45.0,300,62,50,0.0,3346,0.0,0.0,0.0,0.0,3.0,9.0,4.0,6.0,3.1,2205.235026556326,925.08,0.0,29759.0,1,4,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9599.677419354839,1,0,1_0,1_1 +6797,6.0,6.0,68.0,111,77,50,0.0,3347,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1859.1718712335216,2080.0,0.0,26148.0,5,1,7,5.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,26148.0,4,0,4_0,4_0 +6798,10.0,10.0,44.0,112,52,60,0.0,3348,0.0,0.0,350.0,0.0,1.0,4.0,2.0,4.0,2.3,3280.8851469492233,1040.0,0.0,26510.0,1,3,6,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,11526.08695652174,1,0,1_1,1_0 +6799,9.0,9.0,61.0,111,74,10,0.0,3349,0.0,0.0,120.0,0.0,0.0,6.0,0.0,1.0,1.0,2198.3053201554294,0.0,0.0,30558.0,7,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,30558.0,4,0,4_0,4_0 +6800,4.0,8.0,63.0,111,74,44,0.0,335,0.0,250.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1870.5635798353596,2982.72,0.0,42580.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28386.666666666668,4,0,4_0,4_0 +6801,0.0,0.0,39.0,111,46,31,0.0,3350,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2276.2855495109634,3250.0,0.0,55392.0,1,2,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23080.0,3,0,3_0,3_0 +6802,2.0,2.0,87.0,400,77,70,0.0,3352,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2353.9210086356793,0.0,0.0,12165.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12165.0,1,0,1_0,1_1 +6803,0.0,22.0,31.0,112,52,30,0.0,3354,0.0,150.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1575.7992348031964,1352.0,0.0,17147.0,1,3,10,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,13190.0,1,0,1_1,1_0 +6804,0.0,3.0,39.0,111,33,20,0.0,3355,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2711.8537960386093,0.0,0.0,108282.0,1,1,10,8.0,2,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,67676.25,5,0,5,5_0 +6805,3.0,12.0,60.0,221,75,42,0.0,3358,0.0,210.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2931.9979778591414,0.0,0.0,43215.0,5,1,1,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,28810.0,4,0,4_0,4_0 +6806,4.0,4.0,59.0,112,75,71,0.0,3359,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2133.5123443270077,0.0,0.0,9720.0,7,1,10,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,6480.0,1,0,1_0,1_0 +6807,20.0,32.0,31.0,112,47,20,0.0,336,0.0,208.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2042.9926549281963,0.0,0.0,50853.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28251.666666666664,4,0,4_0,4_1 +6808,0.0,0.0,59.0,111,64,71,0.0,3362,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2089.378560660762,3120.0,0.0,60880.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24352.0,4,0,4_0,4_0 +6809,6.0,6.0,34.0,111,55,60,0.0,3363,0.0,0.0,130.0,740.0,2.0,3.0,1.0,3.0,1.8,3376.2675509500214,0.0,0.0,38826.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21570.0,3,0,3_0,3_0 +6810,12.0,22.0,56.0,211,78,50,0.0,3364,0.0,200.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2081.6275040765645,780.0,0.0,10980.0,7,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,7320.0,1,0,1_0,1_0 +6811,2.0,26.0,26.0,111,56,50,0.0,3365,0.0,0.0,0.0,118.0,1.0,3.0,1.0,2.0,1.3,2467.7854812608407,1302.08,0.0,21734.0,1,3,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,16718.46153846154,2,0,2_1,2_0 +6812,2.0,4.0,69.0,300,78,70,0.0,3366,0.0,500.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2152.5237841992516,0.0,0.0,33984.0,5,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,22656.0,3,0,3_0,3_1 +6813,0.0,0.0,55.0,120,46,71,0.0,3367,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1790.8574840261572,2394.08,0.0,77210.0,1,2,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30884.0,4,0,4_0,4_0 +6814,1.0,2.0,50.0,120,37,31,1.0,3368,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,3401.7984341612296,0.0,9100.0,79988.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,39994.0,5,0,5,5_1 +6815,1.0,2.0,60.0,112,21,50,1.0,3369,0.0,50.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2080.352694285814,2600.0,15000.0,96547.0,1,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,64364.666666666664,5,0,5,5_1 +6816,10.0,21.0,38.0,120,65,41,0.0,337,0.0,400.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,903.3315520673337,0.0,0.0,67909.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,32337.619047619046,5,0,5,5_1 +6817,9.0,9.0,47.0,111,62,41,0.0,3370,0.0,0.0,50.0,500.0,1.0,2.0,0.0,1.0,1.0,2712.613958622322,3316.56,0.0,22189.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22189.0,3,0,3_0,3_0 +6818,20.0,20.0,52.0,111,48,44,0.0,3371,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1611.3716505882471,1040.0,0.0,23060.0,4,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,9224.0,1,0,1_0,1_0 +6819,10.0,10.0,82.0,221,,70,0.0,3373,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2040.4882238290784,0.0,0.0,11954.0,8,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,11954.0,1,0,1_1,1_0 +6820,1.0,1.0,81.0,111,74,44,1.0,3374,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2957.98882084333,0.0,13900.0,27242.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27242.0,4,0,4_0,4_0 +6821,13.0,15.0,68.0,111,74,10,0.0,3375,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1828.1349133973356,0.0,0.0,36110.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,36110.0,5,0,5,5_0 +6822,3.0,7.0,76.0,300,71,50,0.0,3376,0.0,300.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2830.5520453933814,0.0,0.0,10859.0,5,4,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,10859.0,1,0,1_0,1_0 +6823,2.0,4.0,73.0,111,78,50,0.0,3377,0.0,150.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2162.9008526554185,1713.92,0.0,27828.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,18552.0,2,0,2_0,2_0 +6824,5.0,14.0,59.0,400,78,71,0.0,3378,0.0,90.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5179.777333257805,0.0,0.0,12300.0,7,3,0,1.0,1,3.0,0.0,1.0,0,1,0,0,0,1,1.0,2.0,12300.0,1,0,1_1,1_0 +6825,11.0,11.0,48.0,211,85,71,0.0,3379,0.0,0.0,420.0,0.0,1.0,4.0,3.0,4.0,2.3,827.4702910700136,0.0,0.0,27162.0,6,3,3,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,11809.565217391306,1,0,1_1,1_0 +6826,5.0,5.0,48.0,120,64,50,0.0,3381,0.0,0.0,50.0,0.0,1.0,5.0,0.0,1.0,1.0,2622.9012872826875,0.0,0.0,23260.0,1,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23260.0,3,0,3_0,3_1 +6827,4.0,4.0,33.0,111,62,50,0.0,3382,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2358.616159586842,0.0,0.0,39021.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21678.333333333332,3,0,3_0,3_0 +6828,3.0,8.0,32.0,120,31,30,0.0,3383,0.0,300.0,600.0,0.0,2.0,7.0,2.0,4.0,2.1,3056.8416893025883,5571.28,0.0,83846.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,39926.666666666664,5,0,5,5_1 +6829,0.0,0.0,35.0,211,67,42,0.0,3384,0.0,0.0,0.0,313.0,1.0,3.0,2.0,3.0,1.6,524.3155914607565,0.0,0.0,19556.0,1,3,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12222.5,1,0,1_1,1_0 +6830,0.0,0.0,84.0,111,77,50,0.0,3385,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,7171.780545854705,0.0,0.0,19490.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19490.0,3,0,3_0,3_0 +6831,8.0,8.0,28.0,111,56,43,0.0,3386,0.0,100.0,0.0,495.0,1.0,3.0,2.0,3.0,1.6,1435.044746142176,0.0,0.0,22623.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,14139.375,2,0,2_1,2_0 +6832,0.0,0.0,60.0,120,78,50,0.0,3389,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2827.4182361735143,2080.0,0.0,14280.0,4,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14280.0,2,0,2_0,2_1 +6833,0.0,0.0,84.0,112,78,50,0.0,3390,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2895.171158732676,0.0,0.0,25762.0,5,1,6,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25762.0,4,0,4_0,4_0 +6834,0.0,0.0,76.0,111,74,41,0.0,3391,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1708.1015382015632,2062.84,0.0,44820.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29880.0,4,0,4_0,4_0 +6835,0.0,0.0,56.0,112,63,50,0.0,3394,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2488.199562009192,837.2,0.0,17366.0,1,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11577.333333333334,1,0,1_0,1_0 +6836,0.0,0.0,44.0,120,85,71,0.0,3395,0.0,0.0,0.0,292.0,0.0,3.0,1.0,2.0,1.3,2365.279843355941,0.0,0.0,8870.0,7,4,0,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,6823.076923076923,1,0,1_0,1_0 +6837,0.0,0.0,42.0,111,63,50,0.0,3396,0.0,0.0,0.0,330.0,2.0,3.0,1.0,3.0,1.8,1800.0545496819923,0.0,0.0,53313.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29618.333333333332,4,0,4_0,4_0 +6838,1.0,4.0,38.0,111,42,30,2.0,3397,0.0,200.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,374.3263885528259,780.0,12000.0,33321.0,1,2,7,6.0,2,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,20825.625,3,0,3_0,3_0 +6839,3.0,6.0,46.0,111,63,50,0.0,3398,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2588.9167410660652,0.0,0.0,9022.0,4,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,9022.0,1,0,1_1,1_0 +6840,0.0,12.0,60.0,111,63,50,2.0,3399,0.0,0.0,0.0,456.0,1.0,2.0,0.0,1.0,1.0,2065.0971720920143,1565.2,3800.0,21563.0,1,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21563.0,3,0,3_0,3_0 +6841,0.0,0.0,43.0,400,65,60,0.0,34,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2234.977513829303,2340.0,0.0,40754.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19406.666666666664,3,0,3_0,3_1 +6842,5.0,12.0,51.0,111,31,10,0.0,340,0.0,0.0,0.0,2548.0,1.0,5.0,3.0,4.0,2.3,591.4709654977157,0.0,0.0,164879.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,71686.52173913045,5,0,5,5_0 +6843,2.0,4.0,49.0,111,52,30,0.0,3400,0.0,100.0,0.0,392.0,1.0,3.0,2.0,3.0,1.8,862.4743466681522,3640.0,0.0,21091.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,11717.222222222223,1,0,1_1,1_0 +6844,0.0,0.0,54.0,111,68,71,0.0,3401,0.0,0.0,0.0,269.0,1.0,2.0,0.0,1.0,1.0,2327.4123198243306,0.0,0.0,13890.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13890.0,1,0,1_0,1_0 +6845,0.0,0.0,57.0,112,38,50,0.0,3402,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1635.7495545635497,0.0,0.0,58830.0,1,1,10,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29415.0,4,0,4_0,4_0 +6846,10.0,14.0,31.0,111,34,20,0.0,3404,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3462.8700455742805,0.0,0.0,25899.0,1,3,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,17266.0,2,0,2_0,2_0 +6847,6.0,6.0,42.0,112,43,43,0.0,3405,0.0,0.0,100.0,0.0,2.0,4.0,2.0,4.0,2.3,2206.1824983222477,0.0,0.0,51810.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,22526.08695652174,3,0,3_0,3_1 +6848,6.0,10.0,79.0,111,77,70,0.0,3407,0.0,199998.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3485.637050739347,0.0,0.0,43294.0,5,1,10,8.0,3,4.0,0.0,1.0,0,0,0,0,1,0,1.0,3.0,28862.666666666668,4,0,4_0,4_0 +6849,7.0,16.0,70.0,112,13,50,0.0,3408,0.0,0.0,30.0,0.0,1.0,5.0,0.0,2.0,1.5,2258.8108321619297,3327.48,0.0,32497.0,1,1,6,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,21664.666666666668,3,0,3_0,3_1 +6850,2.0,19.0,28.0,400,68,50,0.0,3409,0.0,0.0,0.0,363.0,2.0,4.0,2.0,4.0,2.1,1044.0740877877838,8112.0,0.0,52860.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25171.42857142857,4,0,4_0,4_0 +6851,0.0,12.0,55.0,400,21,20,0.0,3410,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2009.0568719052324,3448.64,0.0,15509.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,7385.2380952380945,1,0,1_0,1_1 +6852,11.0,22.0,55.0,111,23,30,0.0,3412,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,3031.1266068450245,0.0,0.0,24403.0,1,1,10,8.0,1,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,24403.0,4,0,4_0,4_0 +6853,3.0,7.0,32.0,111,62,41,0.0,3413,0.0,550.0,0.0,10.0,1.0,3.0,3.0,5.0,2.4,1610.5848590159985,0.0,0.0,18580.0,4,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,7741.666666666667,1,0,1_1,1_0 +6854,4.0,4.0,37.0,112,46,30,0.0,3414,0.0,1150.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2868.4552069580113,1820.52,0.0,58126.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27679.04761904762,4,0,4_0,4_1 +6855,8.0,12.0,72.0,111,74,12,0.0,3415,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1626.8974232099524,2288.0,0.0,73825.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,49216.666666666664,5,0,5,5_0 +6856,9.0,11.0,35.0,111,55,71,0.0,3416,0.0,0.0,0.0,40.0,1.0,5.0,2.0,3.0,2.0,757.2211875227398,0.0,0.0,21660.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,10830.0,1,0,1_1,1_0 +6857,5.0,15.0,68.0,112,72,50,0.0,3417,0.0,80.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1943.291317097717,1370.72,0.0,25337.0,5,1,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16891.333333333332,2,0,2_0,2_1 +6858,10.0,10.0,60.0,111,,41,0.0,3418,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1887.0284608662514,0.0,0.0,14380.0,8,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,14380.0,2,0,2_0,2_0 +6859,7.0,7.0,73.0,111,77,60,0.0,3421,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2504.0544196725277,2196.48,0.0,21554.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21554.0,3,0,3_0,3_0 +6860,0.0,0.0,73.0,111,77,70,0.0,3422,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1281.1761492590788,0.0,0.0,21148.0,5,1,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21148.0,3,0,3_0,3_0 +6861,5.0,5.0,82.0,211,86,70,0.0,3423,0.0,0.0,0.0,180.0,0.0,2.0,0.0,1.0,1.0,3355.4615620843338,0.0,0.0,12534.0,6,3,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,12534.0,1,0,1_1,1_0 +6862,0.0,0.0,79.0,400,75,70,0.0,3424,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2161.2948069524828,0.0,0.0,31210.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31210.0,4,0,4_0,4_1 +6863,18.0,21.0,73.0,111,74,12,0.0,3426,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1929.7576181237646,0.0,0.0,72153.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,48102.0,5,0,5,5_0 +6864,0.0,17.0,50.0,300,69,50,2.0,3427,0.0,0.0,90.0,0.0,2.0,6.0,2.0,4.0,2.5,1675.4805909872393,2808.0,1000.0,57375.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,22950.0,3,0,3_0,3_1 +6865,10.0,11.0,51.0,112,64,71,0.0,3429,0.0,329.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2188.512803925541,0.0,0.0,43430.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,17372.0,2,0,2_0,2_1 +6866,2.0,2.0,66.0,300,72,44,0.0,3431,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1702.3175203920973,0.0,0.0,16562.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,16562.0,2,0,2_1,2_1 +6867,0.0,0.0,34.0,221,47,31,0.0,3432,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2944.5183319618413,0.0,0.0,60125.0,1,2,1,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28630.952380952378,4,0,4_0,4_0 +6868,6.0,12.0,36.0,111,63,30,0.0,3433,0.0,0.0,0.0,259.0,1.0,3.0,1.0,2.0,1.3,3361.6123632033878,0.0,0.0,22400.0,1,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,17230.76923076923,2,0,2_0,2_0 +6869,0.0,0.0,61.0,111,78,50,0.0,3434,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1844.5635563010726,3822.0,0.0,36372.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24248.0,4,0,4_0,4_0 +6870,4.0,7.0,59.0,111,43,33,0.0,344,0.0,0.0,30.0,0.0,1.0,7.0,0.0,1.0,1.0,1341.1816372150745,0.0,0.0,38492.0,1,1,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,38492.0,5,0,5,5_0 +6871,0.0,0.0,29.0,300,21,50,0.0,3440,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,501.3072572572258,0.0,0.0,19821.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11011.666666666666,1,0,1_0,1_1 +6872,2.0,6.0,49.0,111,54,31,0.0,3441,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.5,665.7868841620923,0.0,0.0,40659.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16263.6,2,0,2_0,2_0 +6873,0.0,0.0,44.0,111,37,10,0.0,3442,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2269.3971904216846,0.0,0.0,115470.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,48112.5,5,0,5,5_0 +6874,0.0,0.0,86.0,111,86,70,0.0,3443,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2126.22489894639,0.0,0.0,35512.0,5,4,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,35512.0,5,0,5,5_0 +6875,4.0,4.0,66.0,300,78,50,0.0,3444,0.0,120.0,70.0,0.0,0.0,6.0,0.0,1.0,1.0,2146.5665248080245,0.0,0.0,27830.0,5,4,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27830.0,4,0,4_0,4_1 +6876,11.0,11.0,46.0,111,45,42,0.0,3445,0.0,0.0,0.0,110.0,1.0,3.0,3.0,4.0,2.3,707.5893546566577,0.0,0.0,32882.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,14296.521739130436,2,0,2_1,2_0 +6877,2.0,2.0,59.0,111,75,50,0.0,3446,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2297.102102136688,1790.36,0.0,20918.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13945.333333333334,2,0,2_0,2_0 +6878,0.0,17.0,45.0,112,37,31,2.0,3447,0.0,0.0,0.0,0.0,1.0,6.0,3.0,4.0,2.1,653.2600043879527,3120.0,1100.0,45030.0,1,2,10,4.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,21442.85714285714,3,0,3_0,3_0 +6879,3.0,3.0,30.0,111,56,30,0.0,3449,0.0,0.0,0.0,430.0,1.0,1.0,0.0,1.0,1.0,6608.7839198687025,0.0,0.0,11092.0,4,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,11092.0,1,0,1_1,1_0 +6880,5.0,5.0,45.0,120,54,50,0.0,345,0.0,180.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1953.1038431108013,5385.639999999999,0.0,76044.0,1,2,0,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,30417.6,4,0,4_0,4_1 +6881,9.0,9.0,54.0,112,37,60,0.0,3451,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1459.7133491903653,0.0,0.0,75340.0,1,1,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,37670.0,5,0,5,5_1 +6882,3.0,4.0,66.0,221,77,60,0.0,3454,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1747.867944170862,2325.44,0.0,30303.0,5,1,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20202.0,3,0,3_0,3_0 +6883,0.0,0.0,35.0,120,69,71,0.0,3457,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3122.9824497846826,1352.0,0.0,27072.0,1,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18048.0,2,0,2_0,2_1 +6884,0.0,13.0,69.0,111,78,50,0.0,3458,0.0,0.0,240.0,280.0,0.0,3.0,0.0,1.0,1.0,2475.502666762156,832.0,0.0,18940.0,5,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,18940.0,3,0,3_0,3_0 +6885,4.0,4.0,27.0,300,63,60,0.0,3459,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2838.3186201527674,0.0,0.0,50434.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24016.190476190473,4,0,4_0,4_1 +6886,12.0,12.0,41.0,111,48,41,0.0,346,0.0,0.0,0.0,447.0,2.0,3.0,4.0,6.0,2.7,2215.0858149045243,0.0,0.0,31530.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,11677.777777777777,1,0,1_1,1_0 +6887,12.0,12.0,28.0,111,46,31,0.0,3460,0.0,0.0,0.0,334.0,2.0,2.0,0.0,2.0,1.5,3427.046235365418,0.0,0.0,62450.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,41633.333333333336,5,0,5,5_0 +6888,0.0,0.0,35.0,300,43,44,0.0,3461,0.0,0.0,0.0,409.0,1.0,5.0,2.0,4.0,2.1,933.7226201237187,0.0,0.0,31013.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14768.095238095237,2,0,2_1,2_1 +6889,0.0,0.0,66.0,120,77,71,0.0,3462,0.0,0.0,0.0,92.0,0.0,3.0,0.0,2.0,1.5,1544.225578788585,0.0,0.0,25896.0,5,3,0,3.0,3,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,17264.0,2,0,2_1,2_0 +6890,9.0,14.0,66.0,111,75,50,0.0,3464,0.0,200.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1570.1302942548284,0.0,0.0,30216.0,6,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,30216.0,4,0,4_0,4_0 +6891,3.0,3.0,48.0,111,52,42,0.0,3465,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2694.7785984673133,0.0,0.0,24933.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24933.0,4,0,4_0,4_0 +6892,1.0,2.0,60.0,111,78,70,0.0,3466,0.0,160.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2623.5309660952626,0.0,0.0,19360.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,12906.666666666666,1,0,1_0,1_0 +6893,12.0,12.0,78.0,111,75,41,0.0,3468,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1505.1048825909033,0.0,0.0,61564.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,41042.666666666664,5,0,5,5_0 +6894,1.0,11.0,84.0,111,72,71,2.0,3469,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2250.479460953019,0.0,3500.0,18906.0,5,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18906.0,3,0,3_0,3_0 +6895,0.0,0.0,74.0,112,75,50,0.0,347,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2461.217658146543,2756.0,0.0,20160.0,5,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13440.0,1,0,1_0,1_1 +6896,3.0,10.0,82.0,400,77,60,0.0,3470,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2883.4783754834984,0.0,0.0,19109.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19109.0,3,0,3_0,3_1 +6897,7.0,11.0,53.0,111,45,60,0.0,3471,0.0,0.0,30.0,700.0,1.0,3.0,0.0,1.0,1.0,3177.715951679025,3328.0,0.0,31382.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,31382.0,4,0,4_0,4_0 +6898,0.0,0.0,56.0,111,56,71,0.0,3472,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2947.455449410001,2080.0,0.0,23885.0,4,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15923.333333333334,2,0,2_0,2_0 +6899,0.0,0.0,60.0,300,31,10,0.0,3473,0.0,0.0,0.0,0.0,2.0,9.0,0.0,2.0,1.5,2137.429784359344,3361.8,0.0,94180.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,62786.666666666664,5,0,5,5_1 +6900,0.0,10.0,21.0,111,84,41,0.0,3478,0.0,0.0,0.0,195.0,0.0,1.0,0.0,1.0,1.0,2636.6551446139583,0.0,0.0,6300.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,6300.0,1,0,1_1,1_0 +6901,0.0,1.0,72.0,111,78,71,1.0,3479,0.0,0.0,0.0,342.0,0.0,3.0,0.0,2.0,1.5,2321.6501489937664,0.0,20000.0,18951.0,5,3,6,4.0,3,1.0,1.0,0.0,0,0,1,0,0,1,0.0,1.0,12634.0,1,0,1_1,1_0 +6902,1.0,1.0,75.0,111,74,70,0.0,348,0.0,420.0,0.0,269.0,0.0,2.0,0.0,1.0,1.0,4227.94348636327,0.0,0.0,20292.0,5,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,20292.0,3,0,3_0,3_0 +6903,0.0,0.0,43.0,112,53,41,0.0,3480,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.8,2653.7277042266637,2963.48,0.0,52146.0,1,2,3,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18623.57142857143,2,0,2_0,2_1 +6904,6.0,7.0,66.0,111,74,50,0.0,3481,0.0,20.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2157.334224027768,0.0,0.0,37999.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25332.666666666668,4,0,4_0,4_0 +6905,1.0,1.0,37.0,111,52,31,2.0,3483,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1726.3725262875862,0.0,15000.0,45670.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21747.619047619046,3,0,3_0,3_0 +6906,3.0,11.0,37.0,111,31,10,0.0,3485,0.0,0.0,99999.0,0.0,2.0,6.0,2.0,4.0,2.1,2680.286773429804,6639.88,0.0,174769.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,83223.33333333333,5,0,5,5_0 +6907,0.0,0.0,53.0,221,63,50,0.0,3486,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2453.246473808563,2080.0,0.0,50732.0,1,2,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25366.0,4,0,4_0,4_0 +6908,4.0,10.0,32.0,111,46,0,0.0,3488,0.0,0.0,450.0,0.0,1.0,2.0,0.0,1.0,1.0,3108.464508356501,0.0,0.0,38540.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,38540.0,5,0,5,5_0 +6909,12.0,12.0,66.0,111,74,30,0.0,349,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1664.6945239103723,1718.08,0.0,39146.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26097.333333333332,4,0,4_0,4_0 +6910,14.0,14.0,66.0,111,75,42,0.0,3490,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1590.2200153507888,0.0,0.0,24328.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,24328.0,4,0,4_0,4_0 +6911,1.0,9.0,65.0,221,78,70,2.0,3492,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1709.451935225129,0.0,3700.0,30352.0,5,2,1,2.0,3,2.0,1.0,0.0,0,1,0,0,0,0,2.0,0.0,20234.666666666668,3,0,3_0,3_0 +6912,3.0,5.0,39.0,221,85,30,0.0,3493,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,2309.612367025271,4368.0,0.0,18828.0,4,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14483.076923076922,2,0,2_0,2_0 +6913,0.0,1.0,48.0,112,53,30,2.0,3494,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.3,2066.8728685930982,0.0,21500.0,40420.0,1,2,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17573.913043478264,2,0,2_0,2_0 +6914,4.0,4.0,46.0,111,63,50,0.0,3495,0.0,0.0,99999.0,0.0,2.0,4.0,1.0,2.0,1.5,2363.5364060836946,2811.64,0.0,21143.0,1,4,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,14095.333333333334,2,0,2_0,2_0 +6915,2.0,4.0,32.0,111,55,31,0.0,3497,0.0,0.0,0.0,563.0,2.0,2.0,0.0,2.0,1.5,3895.9292141906685,780.0,0.0,26777.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,17851.333333333332,2,0,2_1,2_0 +6916,0.0,0.0,53.0,111,34,30,0.0,3498,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,1916.8906180742326,0.0,0.0,56978.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20349.285714285714,3,0,3_0,3_0 +6917,5.0,5.0,71.0,112,75,71,0.0,3499,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1899.5220035485343,0.0,0.0,64688.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,43125.333333333336,5,0,5,5_0 +6918,0.0,0.0,58.0,111,78,71,0.0,35,0.0,0.0,0.0,128.0,1.0,4.0,2.0,4.0,2.5,5446.835168305039,0.0,0.0,27885.0,7,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11154.0,1,0,1_1,1_0 +6919,3.0,3.0,27.0,111,46,30,0.0,3500,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2483.5148666299947,0.0,0.0,10576.0,4,2,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,10576.0,1,0,1_0,1_0 +6920,0.0,0.0,91.0,400,77,70,0.0,3501,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2892.2830541940903,0.0,0.0,15261.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15261.0,2,0,2_0,2_1 +6921,11.0,14.0,32.0,112,56,50,0.0,3502,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,478.5269490799923,1040.0,0.0,23788.0,1,3,9,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,12520.0,1,0,1_1,1_0 +6922,0.0,0.0,50.0,112,56,71,0.0,3504,0.0,0.0,0.0,422.0,2.0,3.0,4.0,5.0,2.6,664.0475415183507,0.0,0.0,38700.0,1,3,10,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14884.615384615385,2,0,2_0,2_0 +6923,5.0,5.0,37.0,111,43,10,0.0,3505,0.0,0.0,99999.0,0.0,1.0,6.0,0.0,1.0,1.0,2036.566012917539,0.0,0.0,35397.0,1,2,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,35397.0,5,0,5,5_0 +6924,7.0,7.0,65.0,111,74,30,0.0,3506,0.0,0.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,2328.7031439358116,2735.2000000000003,0.0,33057.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,33057.0,5,0,5,5_0 +6925,2.0,8.0,53.0,112,53,50,0.0,3507,0.0,150.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1602.436279858804,3016.0,0.0,29468.0,1,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,14734.0,2,0,2_0,2_1 +6926,0.0,13.0,43.0,221,42,30,0.0,3508,0.0,100.0,80.0,0.0,2.0,8.0,2.0,4.0,2.1,1782.6574343478349,2733.64,0.0,48959.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,23313.809523809523,3,0,3_0,3_0 +6927,0.0,0.0,70.0,112,75,50,0.0,3509,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1819.0083201042278,2235.48,0.0,45370.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30246.666666666668,4,0,4_0,4_1 +6928,0.0,0.0,36.0,111,55,31,1.0,351,0.0,0.0,0.0,370.0,2.0,1.0,0.0,2.0,1.5,2267.89845270453,0.0,20571.0,15183.0,4,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10122.0,1,0,1_0,1_0 +6929,1.0,5.0,82.0,111,,70,2.0,3510,0.0,30.0,0.0,425.0,0.0,4.0,0.0,1.0,1.0,2125.3065545529353,0.0,9000.0,16010.0,8,3,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,16010.0,2,0,2_0,2_0 +6930,4.0,7.0,25.0,111,84,30,0.0,3511,0.0,90.0,0.0,269.0,0.0,3.0,0.0,1.0,1.0,4764.291872104108,0.0,0.0,10542.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10542.0,1,0,1_1,1_0 +6931,1.0,6.0,63.0,211,75,60,2.0,3512,0.0,700.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2827.134828413974,0.0,8000.0,9492.0,4,3,2,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9492.0,1,0,1_1,1_0 +6932,0.0,0.0,35.0,211,22,31,0.0,3513,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1068.711654366532,1560.0,0.0,21458.0,1,1,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16506.153846153844,2,0,2_0,2_0 +6933,3.0,4.0,39.0,211,85,71,0.0,3514,0.0,0.0,0.0,0.0,0.0,4.0,3.0,5.0,2.4,2201.0854174248857,0.0,0.0,28534.0,7,3,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,11889.166666666668,1,0,1_1,1_0 +6934,5.0,7.0,69.0,120,71,50,0.0,3515,0.0,100.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1474.5939526381528,0.0,0.0,31180.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20786.666666666668,3,0,3_0,3_1 +6935,1.0,1.0,55.0,112,75,60,1.0,3517,0.0,680.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2258.6586324231316,2966.6000000000004,13990.0,75559.0,5,2,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,50372.666666666664,5,0,5,5_1 +6936,7.0,7.0,46.0,300,47,50,0.0,3518,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2106.7026720947674,0.0,0.0,40158.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16063.2,2,0,2_0,2_1 +6937,1.0,1.0,65.0,400,78,70,1.0,3519,0.0,0.0,0.0,0.0,0.0,6.0,0.0,3.0,2.0,2594.465029739431,5200.0,40000.0,58328.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,29164.0,4,0,4_0,4_1 +6938,1.0,16.0,29.0,111,85,50,2.0,352,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.3,1223.7305352254796,2874.04,3300.0,14332.0,4,3,5,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11024.615384615385,1,0,1_1,1_0 +6939,2.0,5.0,88.0,112,77,70,0.0,3522,0.0,650.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,7355.5666046746155,0.0,0.0,29484.0,5,3,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,29484.0,4,0,4_0,4_1 +6940,0.0,0.0,72.0,111,74,50,0.0,3524,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1605.4440255029842,0.0,0.0,30491.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20327.333333333332,3,0,3_0,3_0 +6941,0.0,3.0,56.0,111,37,31,2.0,3525,0.0,900.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1862.7042907057069,0.0,13000.0,70050.0,1,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,46700.0,5,0,5,5_0 +6942,4.0,4.0,69.0,120,78,71,0.0,3526,0.0,220.0,290.0,0.0,0.0,5.0,0.0,2.0,1.5,1710.9502990296623,3640.0,0.0,25900.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17266.666666666668,2,0,2_0,2_1 +6943,5.0,12.0,31.0,111,54,31,0.0,3527,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1348.7341173996947,0.0,0.0,43610.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20766.666666666664,3,0,3_0,3_0 +6944,0.0,0.0,55.0,111,37,20,0.0,3528,0.0,0.0,0.0,840.0,2.0,4.0,1.0,3.0,2.0,2287.4254774580336,0.0,0.0,64813.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32406.5,5,0,5,5_0 +6945,3.0,3.0,21.0,111,54,42,0.0,353,0.0,0.0,0.0,75.0,2.0,2.0,0.0,2.0,1.5,2419.9932541098055,0.0,0.0,19480.0,2,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,12986.666666666666,1,0,1_1,1_0 +6946,15.0,21.0,40.0,211,85,31,0.0,3530,0.0,0.0,0.0,96.0,0.0,4.0,2.0,3.0,1.6,762.69165314618,3172.0,0.0,15455.0,4,3,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,9659.375,1,0,1_1,1_0 +6947,7.0,7.0,35.0,112,48,43,0.0,3532,0.0,300.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2276.100253444045,2600.0,0.0,48359.0,1,2,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,23028.095238095237,3,0,3_0,3_1 +6948,0.0,0.0,31.0,111,38,12,1.0,3533,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3483.195728583671,3021.2000000000003,16100.0,51746.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,51746.0,5,0,5,5_0 +6949,12.0,12.0,47.0,221,68,71,0.0,3534,0.0,0.0,90.0,0.0,2.0,5.0,2.0,3.0,1.8,403.82261013892276,0.0,0.0,23711.0,1,3,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,13172.777777777777,1,0,1_1,1_0 +6950,6.0,6.0,50.0,111,67,50,0.0,3535,0.0,0.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,2263.0752698349133,0.0,0.0,78911.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,39455.5,5,0,5,5_0 +6951,5.0,5.0,64.0,211,77,50,0.0,3536,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1937.1061306502158,0.0,0.0,32970.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21980.0,3,0,3_0,3_0 +6952,0.0,0.0,58.0,112,62,50,0.0,3537,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2309.6103593426024,2340.0,0.0,14334.0,4,1,6,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14334.0,2,0,2_0,2_0 +6953,15.0,12.0,74.0,111,74,70,0.0,3538,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1827.2026279639092,0.0,0.0,31536.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,31536.0,4,0,4_0,4_0 +6954,1.0,1.0,33.0,221,65,50,1.0,3539,0.0,0.0,0.0,280.0,2.0,5.0,3.0,5.0,2.4,2613.166276531106,1040.0,19000.0,33270.0,1,3,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,13862.5,1,0,1_1,1_0 +6955,13.0,16.0,64.0,400,78,70,0.0,354,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1565.7343439346073,0.0,0.0,29337.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19558.0,3,0,3_0,3_0 +6956,5.0,8.0,47.0,111,56,50,0.0,3542,0.0,370.0,310.0,0.0,1.0,4.0,1.0,2.0,1.3,2008.018791972136,0.0,0.0,14248.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,10960.0,1,0,1_1,1_0 +6957,0.0,0.0,42.0,111,54,43,0.0,3543,0.0,0.0,0.0,410.0,1.0,3.0,1.0,2.0,1.5,2202.1101692501315,0.0,0.0,23092.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15394.666666666666,2,0,2_1,2_0 +6958,11.0,11.0,69.0,112,71,50,0.0,3545,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,2264.3408387268496,5031.0,0.0,13541.0,5,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,13541.0,1,0,1_0,1_1 +6959,1.0,4.0,50.0,300,13,42,0.0,3547,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1434.8935107275788,0.0,0.0,69409.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,46272.666666666664,5,0,5,5_1 +6960,4.0,4.0,59.0,300,47,50,0.0,3548,0.0,200.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1653.0692849683699,975.0,0.0,43828.0,1,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,29218.666666666668,4,0,4_0,4_0 +6961,10.0,10.0,71.0,111,,44,0.0,3549,0.0,60.0,99999.0,0.0,0.0,3.0,0.0,1.0,1.0,1862.1085516789888,0.0,0.0,94000.0,8,1,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,94000.0,5,0,5,5_0 +6962,0.0,0.0,72.0,221,72,50,0.0,355,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1719.2938452798642,0.0,0.0,36364.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24242.666666666668,4,0,4_0,4_0 +6963,0.0,0.0,34.0,111,62,60,0.0,3552,0.0,0.0,0.0,0.0,4.0,6.0,6.0,8.0,3.9,728.3266301894906,2601.04,0.0,61906.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15873.333333333334,2,0,2_1,2_0 +6964,3.0,5.0,43.0,111,46,60,0.0,3553,0.0,300.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4956.499856754999,0.0,0.0,45766.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,25425.555555555555,4,0,4_0,4_0 +6965,8.0,11.0,65.0,211,75,60,0.0,3554,0.0,400.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1019.5320064837359,0.0,0.0,32288.0,5,1,3,3.0,3,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,21525.333333333332,3,0,3_0,3_0 +6966,0.0,0.0,45.0,111,52,41,0.0,3556,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,273.83313615756566,2080.0,0.0,25626.0,1,4,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,19712.30769230769,3,0,3_1,3_0 +6967,1.0,6.0,71.0,111,77,71,1.0,3557,400.0,0.0,0.0,101.0,0.0,3.0,2.0,4.0,2.1,4199.513342443796,0.0,4000.0,23890.0,5,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,0.0,11376.190476190475,1,0,1_1,1_0 +6968,0.0,0.0,26.0,111,47,31,0.0,3558,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.5,3482.327832527514,1401.3999999999999,0.0,24997.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16664.666666666668,2,0,2_0,2_0 +6969,1.0,1.0,64.0,112,77,71,2.0,3559,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1697.6133700436283,2158.0,13000.0,39261.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26174.0,4,0,4_0,4_1 +6970,2.0,2.0,54.0,111,85,50,0.0,356,0.0,0.0,100.0,0.0,1.0,3.0,1.0,3.0,2.0,2961.940838581504,0.0,0.0,12692.0,7,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,6346.0,1,0,1_1,1_0 +6971,6.0,6.0,66.0,112,78,70,0.0,3560,0.0,0.0,99999.0,640.0,0.0,3.0,0.0,1.0,1.0,3930.9783843812784,0.0,0.0,23585.0,5,3,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,23585.0,3,0,3_0,3_0 +6972,1.0,2.0,49.0,111,46,41,2.0,3561,0.0,385.0,0.0,523.0,3.0,3.0,1.0,3.0,2.0,4299.642154948001,0.0,6000.0,51533.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,25766.5,4,0,4_0,4_0 +6973,5.0,5.0,54.0,120,68,50,0.0,3562,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1653.6695322996668,0.0,0.0,15118.0,1,3,0,1.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,10078.666666666666,1,0,1_1,1_0 +6974,0.0,14.0,65.0,212,78,41,0.0,3563,0.0,0.0,300.0,0.0,0.0,4.0,0.0,1.0,1.0,2373.6759847380517,0.0,0.0,20950.0,5,1,2,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20950.0,3,0,3_0,3_1 +6975,11.0,11.0,60.0,111,67,70,0.0,3565,0.0,0.0,0.0,335.0,1.0,3.0,0.0,1.0,1.0,1711.716919363097,0.0,0.0,18696.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18696.0,2,0,2_0,2_0 +6976,5.0,10.0,52.0,211,52,50,0.0,3568,0.0,500.0,0.0,0.0,3.0,7.0,3.0,5.0,3.0,1916.40242994458,5167.24,0.0,47876.0,1,1,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,15958.666666666666,2,0,2_0,2_0 +6977,3.0,7.0,46.0,221,65,50,0.0,3569,0.0,250.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1987.1351577986825,2600.0,0.0,39060.0,1,4,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,21700.0,3,0,3_0,3_0 +6978,3.0,3.0,65.0,111,46,71,0.0,357,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2716.9615631927345,4602.0,0.0,15460.0,4,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,15460.0,2,0,2_0,2_0 +6979,1.0,1.0,44.0,111,42,20,1.0,3570,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1835.3986906360901,0.0,14000.0,45976.0,1,4,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,30650.666666666668,4,0,4_0,4_0 +6980,4.0,4.0,72.0,112,72,70,0.0,3571,0.0,0.0,120.0,0.0,0.0,3.0,0.0,1.0,1.0,1652.4268977246024,0.0,0.0,65790.0,5,2,6,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,65790.0,5,0,5,5_1 +6981,0.0,0.0,47.0,111,37,31,0.0,3573,0.0,0.0,0.0,695.0,1.0,2.0,1.0,2.0,1.5,3532.2981905220845,2079.48,0.0,36220.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24146.666666666668,4,0,4_0,4_0 +6982,0.0,0.0,59.0,111,33,42,0.0,3574,0.0,0.0,0.0,540.0,1.0,2.0,0.0,1.0,1.0,1995.9106530307558,0.0,0.0,31419.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31419.0,4,0,4_0,4_0 +6983,3.0,3.0,37.0,111,55,43,0.0,3575,0.0,0.0,20.0,244.0,1.0,3.0,1.0,2.0,1.3,666.1163766354972,0.0,0.0,19410.0,1,3,4,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,14930.76923076923,2,0,2_1,2_0 +6984,1.0,8.0,26.0,111,62,60,2.0,3576,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,5513.5220908849005,0.0,4850.0,25732.0,1,4,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17154.666666666668,2,0,2_0,2_0 +6985,11.0,16.0,83.0,112,71,70,0.0,3577,0.0,130.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1999.7726495720322,0.0,0.0,20212.0,5,1,4,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,13474.666666666666,1,0,1_0,1_1 +6986,0.0,0.0,69.0,112,78,71,0.0,3578,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1971.8167256889283,0.0,0.0,16750.0,5,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16750.0,2,0,2_0,2_0 +6987,3.0,15.0,53.0,111,38,20,0.0,3579,0.0,100.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2597.315270613691,0.0,0.0,43812.0,1,2,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,33701.53846153846,5,0,5,5_0 +6988,4.0,7.0,47.0,111,21,30,0.0,3580,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,1216.5160482891242,2600.0,0.0,13376.0,1,4,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,7431.111111111111,1,0,1_0,1_0 +6989,1.0,5.0,36.0,112,63,43,2.0,3581,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,322.4825633717372,0.0,12200.0,20110.0,4,3,7,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,15469.23076923077,2,0,2_1,2_0 +6990,14.0,17.0,64.0,120,74,50,0.0,3583,0.0,0.0,25.0,0.0,1.0,6.0,1.0,3.0,2.0,2079.385544344446,2471.04,0.0,48925.0,5,1,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,24462.5,4,0,4_0,4_0 +6991,4.0,6.0,37.0,111,37,31,0.0,3584,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2748.992831842754,0.0,0.0,37255.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,37255.0,5,0,5,5_0 +6992,1.0,1.0,49.0,400,52,50,1.0,3585,0.0,220.0,300.0,0.0,2.0,3.0,1.0,2.0,1.5,2007.6114391668698,2548.52,25000.0,29255.0,1,1,0,0.0,2,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,19503.333333333332,3,0,3_0,3_1 +6993,2.0,11.0,29.0,111,37,12,0.0,3586,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2877.446539750953,0.0,0.0,68947.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,45964.666666666664,5,0,5,5_0 +6994,0.0,3.0,36.0,111,46,20,0.0,3587,0.0,120.0,0.0,590.0,2.0,4.0,2.0,4.0,2.1,3830.9265587146065,654.68,0.0,46756.0,1,3,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,22264.761904761905,3,0,3_0,3_0 +6995,0.0,0.0,48.0,111,48,50,0.0,3588,0.0,0.0,0.0,0.0,1.0,5.0,1.0,5.0,3.0,4157.3069992646815,0.0,0.0,46642.0,1,3,8,6.0,5,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15547.333333333334,2,0,2_1,2_0 +6996,2.0,4.0,49.0,111,65,50,0.0,3589,0.0,0.0,240.0,312.0,3.0,5.0,3.0,5.0,2.8,2225.3545749703985,0.0,0.0,39706.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,14180.714285714286,2,0,2_1,2_0 +6997,0.0,0.0,52.0,111,52,71,0.0,3590,0.0,0.0,0.0,149.0,1.0,2.0,2.0,4.0,2.5,3818.669032842563,0.0,0.0,24600.0,4,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9840.0,1,0,1_1,1_0 +6998,4.0,10.0,69.0,112,86,71,0.0,3592,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1727.9528099034048,780.0,0.0,22185.0,5,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22185.0,3,0,3_0,3_1 +6999,0.0,16.0,65.0,111,77,71,0.0,3593,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1516.3827944166153,0.0,0.0,33787.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,22524.666666666668,3,0,3_0,3_0 +7000,6.0,10.0,46.0,111,46,43,0.0,3595,0.0,99999.0,0.0,240.0,1.0,6.0,0.0,1.0,1.0,1989.1862681307825,2600.0,0.0,11380.0,1,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11380.0,1,0,1_0,1_0 +7001,0.0,0.0,38.0,300,33,20,0.0,3596,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2418.382463391943,2266.16,0.0,55550.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26452.38095238095,4,0,4_0,4_1 +7002,0.0,0.0,58.0,112,47,50,0.0,3598,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3245.36731990928,1757.08,0.0,55653.0,1,2,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27826.5,4,0,4_0,4_0 +7003,3.0,5.0,61.0,120,72,71,0.0,360,0.0,200.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3016.5215557764213,4876.5599999999995,0.0,48520.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,32346.666666666668,5,0,5,5_0 +7004,4.0,4.0,50.0,111,68,71,0.0,3600,0.0,70.0,0.0,206.0,1.0,2.0,0.0,1.0,1.0,3186.590310146108,0.0,0.0,10280.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,10280.0,1,0,1_0,1_0 +7005,0.0,0.0,47.0,111,37,20,0.0,3601,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,1.8,519.6747496189888,2949.96,0.0,52152.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28973.333333333332,4,0,4_0,4_0 +7006,0.0,0.0,31.0,111,23,30,0.0,3602,0.0,0.0,0.0,400.0,2.0,3.0,0.0,2.0,1.5,3736.2834605158682,0.0,0.0,61675.0,1,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,41116.666666666664,5,0,5,5_0 +7007,14.0,15.0,69.0,111,75,50,0.0,3603,0.0,600.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1833.1746588458777,0.0,0.0,42830.0,5,1,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28553.333333333332,4,0,4_0,4_0 +7008,0.0,0.0,56.0,111,34,31,0.0,3604,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2511.4223196261523,0.0,0.0,24226.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24226.0,4,0,4_0,4_0 +7009,7.0,7.0,48.0,111,56,41,0.0,3606,0.0,0.0,0.0,539.0,1.0,3.0,2.0,3.0,1.8,1034.7729829365833,0.0,0.0,26360.0,1,3,10,8.0,2,1.0,1.0,0.0,0,0,0,0,1,1,0.0,1.0,14644.444444444443,2,0,2_1,2_0 +7010,5.0,8.0,63.0,111,78,71,0.0,3607,0.0,100.0,0.0,79.0,0.0,2.0,0.0,1.0,1.0,4680.733852253569,0.0,0.0,12156.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,12156.0,1,0,1_1,1_0 +7011,0.0,0.0,29.0,111,46,31,0.0,3609,0.0,0.0,0.0,61.0,2.0,5.0,3.0,6.0,3.3,1764.423507593619,3120.0,0.0,43768.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13263.030303030304,1,0,1_1,1_0 +7012,2.0,18.0,69.0,111,86,60,0.0,361,0.0,150.0,200.0,0.0,0.0,3.0,0.0,1.0,1.0,1326.2999777796422,0.0,0.0,15460.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,15460.0,2,0,2_0,2_0 +7013,4.0,6.0,56.0,111,62,42,0.0,3611,0.0,180.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2114.907015750888,2084.16,0.0,41431.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20715.5,3,0,3_0,3_0 +7014,0.0,0.0,32.0,112,46,30,0.0,3612,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3063.6846210762983,3009.76,0.0,57694.0,1,1,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,32052.222222222223,5,0,5,5_0 +7015,0.0,0.0,53.0,211,75,50,0.0,3615,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2730.0396582007106,2243.7999999999997,0.0,25233.0,7,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16822.0,2,0,2_0,2_0 +7016,0.0,0.0,24.0,111,84,30,0.0,3617,0.0,0.0,0.0,195.0,0.0,2.0,0.0,1.0,1.0,3517.926966352024,0.0,0.0,12560.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12560.0,1,0,1_1,1_0 +7017,1.0,1.0,43.0,120,62,60,0.0,362,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3065.0566848593094,0.0,0.0,18640.0,1,3,0,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18640.0,2,0,2_0,2_0 +7018,3.0,6.0,50.0,111,45,31,0.0,3621,0.0,0.0,900.0,0.0,1.0,3.0,0.0,1.0,1.0,3512.0465819210685,0.0,0.0,45234.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,45234.0,5,0,5,5_0 +7019,11.0,15.0,63.0,112,78,50,0.0,3622,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3099.922098718858,0.0,0.0,28930.0,5,1,6,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,28930.0,4,0,4_0,4_1 +7020,6.0,15.0,80.0,120,71,70,0.0,3623,0.0,600.0,50.0,0.0,0.0,6.0,0.0,2.0,1.5,2166.0366912197583,2136.6800000000003,0.0,22476.0,5,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,14984.0,2,0,2_0,2_1 +7021,2.0,11.0,63.0,400,78,71,0.0,3625,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2758.6921032412884,3325.92,0.0,19650.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19650.0,3,0,3_0,3_1 +7022,5.0,5.0,58.0,111,78,50,0.0,3627,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,7164.141611598087,0.0,0.0,24910.0,7,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,16606.666666666668,2,0,2_0,2_0 +7023,4.0,6.0,45.0,211,56,41,0.0,3631,0.0,1350.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,622.3011320707418,0.0,0.0,12064.0,4,3,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,8042.666666666667,1,0,1_1,1_0 +7024,0.0,0.0,89.0,211,72,70,0.0,3632,0.0,0.0,0.0,36.0,0.0,3.0,0.0,1.0,1.0,1413.4053639953752,0.0,0.0,12076.0,5,3,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12076.0,1,0,1_1,1_0 +7025,0.0,0.0,38.0,112,52,41,0.0,3634,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,525.6043804517576,2860.0,0.0,32355.0,1,3,10,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,20221.875,3,0,3_1,3_0 +7026,0.0,0.0,21.0,400,68,60,0.0,3635,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,582.7840692361567,0.0,0.0,24322.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13512.222222222223,1,0,1_1,1_1 +7027,2.0,9.0,53.0,111,63,71,0.0,3636,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,835.2066552058534,0.0,0.0,28040.0,1,2,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14020.0,2,0,2_0,2_0 +7028,0.0,0.0,34.0,112,38,31,0.0,3637,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,1.8,3298.697316596823,0.0,0.0,98510.0,1,1,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,54727.777777777774,5,0,5,5_1 +7029,5.0,5.0,33.0,111,45,31,0.0,3638,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,6618.780449111649,2366.0,0.0,23461.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23461.0,3,0,3_0,3_0 +7030,0.0,0.0,31.0,111,46,43,0.0,3641,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4705.894939549556,520.0,0.0,37653.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37653.0,5,0,5,5_0 +7031,6.0,24.0,56.0,111,43,33,0.0,3644,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1728.781358222654,0.0,0.0,61557.0,1,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,30778.5,4,0,4_0,4_0 +7032,24.0,24.0,57.0,400,77,50,0.0,3645,0.0,0.0,70.0,0.0,0.0,4.0,0.0,1.0,1.0,1846.609023963131,0.0,0.0,321.0,6,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,321.0,1,0,1_0,1_1 +7033,0.0,0.0,81.0,111,75,70,0.0,3646,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3005.804998194244,0.0,0.0,31161.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20774.0,3,0,3_0,3_0 +7034,18.0,18.0,41.0,111,54,42,0.0,3647,0.0,360.0,0.0,334.0,1.0,2.0,0.0,1.0,1.0,2824.958848553915,1560.0,0.0,26833.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,26833.0,4,0,4_0,4_0 +7035,2.0,2.0,44.0,111,63,43,0.0,3648,0.0,0.0,0.0,234.0,1.0,3.0,2.0,4.0,2.1,842.7346759489742,0.0,0.0,27272.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12986.666666666666,1,0,1_1,1_0 +7036,5.0,5.0,78.0,300,78,71,0.0,3649,0.0,0.0,300.0,0.0,0.0,6.0,0.0,2.0,1.5,2212.0206265568786,0.0,0.0,25620.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17080.0,2,0,2_0,2_1 +7037,4.0,10.0,68.0,112,72,50,0.0,365,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1530.16623915708,0.0,0.0,30604.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20402.666666666668,3,0,3_0,3_1 +7038,11.0,16.0,60.0,112,77,50,0.0,3650,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4952.278139600643,2081.04,0.0,19510.0,6,3,6,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19510.0,3,0,3_0,3_0 +7039,5.0,6.0,57.0,112,52,50,0.0,3651,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2877.991091209371,0.0,0.0,39595.0,1,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26396.666666666668,4,0,4_0,4_1 +7040,0.0,0.0,73.0,300,72,70,0.0,3652,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2157.7172223812554,0.0,0.0,40010.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26673.333333333332,4,0,4_0,4_1 +7041,1.0,4.0,57.0,112,78,71,2.0,3654,0.0,30.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1984.6050908997438,0.0,17000.0,52930.0,5,1,5,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,35286.666666666664,5,0,5,5_1 +7042,0.0,0.0,66.0,111,74,31,0.0,3655,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2169.1303831775263,0.0,0.0,64841.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,43227.333333333336,5,0,5,5_0 +7043,0.0,0.0,57.0,211,33,30,0.0,3658,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2594.750768520333,0.0,0.0,75055.0,1,1,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,37527.5,5,0,5,5_0 +7044,0.0,0.0,33.0,111,54,41,0.0,3659,0.0,0.0,0.0,449.0,1.0,2.0,1.0,2.0,1.3,1525.722136810146,0.0,0.0,19910.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15315.384615384615,2,0,2_1,2_0 +7045,2.0,3.0,58.0,111,77,70,0.0,3660,0.0,0.0,0.0,354.0,0.0,3.0,0.0,1.0,1.0,2708.380802607139,0.0,0.0,11902.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11902.0,1,0,1_1,1_0 +7046,8.0,8.0,63.0,111,72,60,0.0,3661,0.0,550.0,0.0,398.0,0.0,3.0,0.0,1.0,1.0,2235.243984805856,2875.08,0.0,19060.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,19060.0,3,0,3_0,3_0 +7047,4.0,5.0,47.0,111,46,31,0.0,3662,0.0,120.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,656.339729197628,5460.0,0.0,57255.0,1,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,28627.5,4,0,4_0,4_0 +7048,21.0,21.0,84.0,111,74,30,0.0,3663,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3452.6117426695846,520.0,0.0,33850.0,5,1,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,33850.0,5,0,5,5_0 +7049,0.0,20.0,60.0,112,74,50,0.0,3665,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2431.0149164456666,4356.04,0.0,17537.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11691.333333333334,1,0,1_0,1_1 +7050,11.0,13.0,87.0,111,77,70,0.0,3666,180.0,0.0,50.0,0.0,0.0,3.0,0.0,1.0,1.0,3067.953026877592,0.0,0.0,15059.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,15059.0,2,0,2_0,2_0 +7051,8.0,8.0,65.0,111,,20,0.0,3667,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1913.5259416922822,0.0,0.0,15470.0,8,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,15470.0,2,0,2_1,2_0 +7052,3.0,9.0,35.0,221,52,31,0.0,3668,0.0,1100.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,668.148258852885,0.0,0.0,27827.0,1,2,1,1.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,21405.384615384613,3,0,3_1,3_0 +7053,2.0,2.0,34.0,112,42,31,0.0,3669,0.0,150.0,100.0,372.0,1.0,3.0,1.0,2.0,1.3,630.7395703725208,2311.92,0.0,21346.0,1,3,9,3.0,2,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,16420.0,2,0,2_1,2_0 +7054,2.0,2.0,54.0,111,38,12,0.0,367,0.0,450.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1228.871532933548,0.0,0.0,123121.0,1,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,82080.66666666667,5,0,5,5_0 +7055,2.0,5.0,31.0,111,38,12,0.0,3671,0.0,0.0,40.0,749.0,2.0,3.0,0.0,2.0,1.5,2834.0829023771907,0.0,0.0,103982.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,69321.33333333333,5,0,5,5_0 +7056,0.0,0.0,48.0,112,85,71,0.0,3672,0.0,0.0,0.0,0.0,0.0,5.0,5.0,7.0,3.6,2631.1662199209,0.0,0.0,20839.0,7,3,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,5788.611111111111,1,0,1_1,1_0 +7057,11.0,11.0,60.0,112,77,60,0.0,3674,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3539.6506225779444,647.4,0.0,9743.0,7,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,9743.0,1,0,1_0,1_0 +7058,0.0,0.0,56.0,111,52,50,0.0,3675,0.0,0.0,0.0,362.0,1.0,4.0,1.0,2.0,1.5,2404.9686394947503,0.0,0.0,25910.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17273.333333333332,2,0,2_0,2_0 +7059,4.0,4.0,42.0,300,22,31,0.0,3677,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3673.51776215461,0.0,0.0,36050.0,1,4,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20027.777777777777,3,0,3_0,3_1 +7060,6.0,12.0,77.0,111,86,60,0.0,3678,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1710.6784744021722,0.0,0.0,11302.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,11302.0,1,0,1_1,1_0 +7061,0.0,0.0,38.0,120,67,50,0.0,3679,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2776.031580150205,0.0,0.0,11640.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11640.0,1,0,1_1,1_1 +7062,0.0,0.0,39.0,300,45,20,0.0,3681,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2537.201713115237,4837.04,0.0,51503.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24525.238095238095,4,0,4_0,4_0 +7063,0.0,10.0,67.0,111,74,20,0.0,3682,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,8085.523443475649,1040.0,0.0,64796.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,43197.333333333336,5,0,5,5_0 +7064,0.0,0.0,77.0,111,77,71,0.0,3685,0.0,0.0,0.0,123.0,0.0,2.0,0.0,1.0,1.0,2746.954168387445,0.0,0.0,11336.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11336.0,1,0,1_1,1_0 +7065,5.0,5.0,38.0,111,52,20,0.0,3686,0.0,99999.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,2435.271010353867,0.0,0.0,12932.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,12932.0,1,0,1_0,1_0 +7066,1.0,3.0,67.0,111,75,60,2.0,3687,0.0,200.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2206.3749241683436,2394.6,7000.0,42214.0,5,1,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,28142.666666666668,4,0,4_0,4_0 +7067,4.0,30.0,43.0,120,21,20,0.0,3688,0.0,100059.0,0.0,778.0,2.0,6.0,2.0,4.0,2.1,2137.968518791267,0.0,0.0,39140.0,1,3,0,1.0,4,4.0,1.0,0.0,0,1,0,0,0,0,1.0,3.0,18638.095238095237,2,0,2_0,2_0 +7068,0.0,0.0,52.0,112,37,31,0.0,3689,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1901.7617638275306,6899.36,0.0,97478.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,48739.0,5,0,5,5_1 +7069,0.0,6.0,49.0,111,48,31,0.0,369,0.0,99999.0,0.0,667.0,1.0,3.0,0.0,1.0,1.0,2337.124991378199,0.0,0.0,42235.0,1,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,42235.0,5,0,5,5_0 +7070,0.0,3.0,63.0,400,75,50,0.0,3691,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2454.0115654235256,0.0,0.0,17978.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,17978.0,2,0,2_1,2_1 +7071,6.0,8.0,58.0,111,37,12,0.0,3692,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1927.938579683315,0.0,0.0,98870.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,65913.33333333333,5,0,5,5_0 +7072,0.0,0.0,25.0,400,67,50,0.0,3693,0.0,0.0,0.0,43.0,1.0,1.0,0.0,1.0,1.0,4122.8830098256585,2340.0,0.0,6034.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,6034.0,1,0,1_1,1_1 +7073,7.0,7.0,69.0,111,86,71,0.0,3694,0.0,50.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1281.879838029615,0.0,0.0,11900.0,6,4,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11900.0,1,0,1_0,1_0 +7074,10.0,16.0,63.0,111,74,12,0.0,3696,0.0,100039.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,3053.7727745936913,0.0,0.0,81740.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,81740.0,5,0,5,5_0 +7075,0.0,0.0,31.0,111,62,50,0.0,3697,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2070.9156006559647,1560.0,0.0,53564.0,1,1,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25506.666666666664,4,0,4_0,4_0 +7076,0.0,0.0,67.0,111,78,71,0.0,3699,0.0,0.0,0.0,119.0,1.0,4.0,5.0,7.0,3.4,1793.4543059674754,2080.0,0.0,40522.0,5,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11918.235294117647,1,0,1_1,1_0 +7077,0.0,0.0,60.0,111,68,71,0.0,3702,0.0,0.0,0.0,283.0,1.0,2.0,0.0,1.0,1.0,2749.1352809701366,0.0,0.0,13240.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13240.0,1,0,1_0,1_0 +7078,10.0,10.0,48.0,111,62,50,0.0,3703,0.0,0.0,0.0,0.0,3.0,5.0,3.0,5.0,2.8,2060.259267582053,2808.0,0.0,51137.0,1,1,4,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18263.214285714286,2,0,2_0,2_0 +7079,1.0,5.0,32.0,111,56,50,0.0,3704,0.0,0.0,0.0,225.0,1.0,2.0,1.0,2.0,1.3,1187.158147170241,0.0,0.0,21830.0,1,3,6,5.0,2,2.0,1.0,0.0,0,0,1,0,0,1,0.0,2.0,16792.30769230769,2,0,2_1,2_0 +7080,3.0,4.0,39.0,111,21,42,0.0,3705,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3344.570032427157,0.0,0.0,57728.0,1,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,57728.0,5,0,5,5_0 +7081,2.0,2.0,79.0,112,74,12,0.0,3706,0.0,380.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,1800.752597991448,629.1999999999999,0.0,109153.0,5,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,72768.66666666667,5,0,5,5_1 +7082,3.0,9.0,36.0,400,42,31,0.0,3707,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2200.820650158493,0.0,0.0,25770.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,14316.666666666666,2,0,2_1,2_1 +7083,0.0,0.0,78.0,111,75,33,0.0,3709,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2357.827704323864,2094.56,0.0,47140.0,6,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,47140.0,5,0,5,5_0 +7084,11.0,14.0,47.0,112,00,20,0.0,371,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1654.0477279085314,0.0,0.0,15355.0,1,1,7,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15355.0,2,0,2_0,2_0 +7085,5.0,15.0,36.0,111,68,71,0.0,3710,0.0,25.0,20.0,420.0,2.0,3.0,1.0,3.0,1.8,2013.8859880348932,0.0,0.0,32150.0,4,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,17861.11111111111,2,0,2_0,2_0 +7086,5.0,8.0,89.0,111,75,50,0.0,3713,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,2.0,1.5,2415.7559942666358,0.0,0.0,19460.0,5,1,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,12973.333333333334,1,0,1_0,1_0 +7087,0.0,0.0,51.0,111,63,31,0.0,3714,0.0,0.0,0.0,297.0,2.0,4.0,3.0,5.0,2.8,1487.7920157461601,1456.0,0.0,34490.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12317.857142857143,1,0,1_1,1_0 +7088,0.0,0.0,53.0,111,22,50,0.0,3715,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2590.419041640662,0.0,0.0,59629.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29814.5,4,0,4_0,4_0 +7089,0.0,0.0,39.0,111,56,42,0.0,3717,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1176.5673314762353,0.0,0.0,25314.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14063.333333333332,2,0,2_0,2_0 +7090,0.0,0.0,64.0,112,75,50,0.0,3719,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2435.820031595991,0.0,0.0,28799.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28799.0,4,0,4_0,4_1 +7091,0.0,0.0,39.0,112,37,20,0.0,372,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2254.269871979981,5632.12,0.0,54408.0,1,1,9,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25908.571428571428,4,0,4_0,4_0 +7092,2.0,2.0,83.0,111,86,71,0.0,3720,0.0,0.0,0.0,278.0,0.0,3.0,0.0,1.0,1.0,1758.8002984209947,0.0,0.0,14534.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14534.0,2,0,2_1,2_0 +7093,9.0,13.0,55.0,111,52,50,0.0,3723,0.0,300.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1466.463168740435,0.0,0.0,22022.0,1,1,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22022.0,3,0,3_0,3_0 +7094,2.0,2.0,58.0,111,47,31,0.0,3725,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2456.0387065303057,0.0,0.0,37512.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,37512.0,5,0,5,5_0 +7095,7.0,20.0,74.0,111,75,41,0.0,3726,0.0,500.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2146.7114022737373,0.0,0.0,25034.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25034.0,4,0,4_0,4_0 +7096,0.0,0.0,76.0,112,75,50,0.0,3727,0.0,0.0,0.0,0.0,0.0,6.0,1.0,3.0,2.0,2459.15587351681,1872.0,0.0,48596.0,5,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24298.0,4,0,4_0,4_1 +7097,8.0,16.0,65.0,112,78,50,0.0,3728,0.0,0.0,60.0,0.0,0.0,5.0,0.0,2.0,1.5,1690.705736349933,0.0,0.0,39754.0,5,1,8,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,26502.666666666668,4,0,4_0,4_0 +7098,0.0,0.0,74.0,112,75,41,0.0,3729,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1786.4341715285102,0.0,0.0,44417.0,5,4,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29611.333333333332,4,0,4_0,4_1 +7099,5.0,9.0,37.0,400,67,60,0.0,373,0.0,45.0,0.0,0.0,2.0,5.0,4.0,6.0,2.9,1808.1210592415641,1612.0,0.0,50732.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17493.793103448275,2,0,2_0,2_1 +7100,0.0,10.0,59.0,300,55,50,2.0,3730,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,256.3516536554832,0.0,2900.0,35248.0,1,1,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16784.761904761905,2,0,2_0,2_1 +7101,8.0,13.0,58.0,400,11,71,0.0,3731,0.0,400.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3234.0088034845003,0.0,0.0,970.0,1,1,0,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,970.0,1,0,1_0,1_0 +7102,11.0,13.0,35.0,112,37,41,0.0,3736,0.0,350.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2501.1648718665065,0.0,0.0,64542.0,1,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,26892.5,4,0,4_0,4_0 +7103,6.0,18.0,62.0,111,54,70,0.0,3737,0.0,0.0,0.0,428.0,1.0,4.0,0.0,1.0,1.0,2526.4267932650846,0.0,0.0,21320.0,1,3,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,21320.0,3,0,3_0,3_0 +7104,7.0,18.0,46.0,111,37,31,0.0,3738,0.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,1.8,1570.4268134692882,2005.1200000000001,0.0,54289.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,30160.555555555555,4,0,4_0,4_0 +7105,5.0,5.0,67.0,111,74,41,0.0,3739,0.0,99999.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1980.9384427385717,0.0,0.0,69772.0,5,1,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,46514.666666666664,5,0,5,5_0 +7106,0.0,0.0,65.0,111,68,70,0.0,374,0.0,0.0,0.0,524.0,1.0,3.0,0.0,1.0,1.0,2102.0239037135257,0.0,0.0,13241.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13241.0,1,0,1_0,1_0 +7107,1.0,1.0,49.0,111,52,50,1.0,3740,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,770.0321684525476,2080.52,27000.0,24531.0,1,2,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16354.0,2,0,2_0,2_0 +7108,9.0,10.0,81.0,111,77,70,0.0,3741,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1973.3573450090482,2946.8399999999997,0.0,38640.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25760.0,4,0,4_0,4_0 +7109,11.0,15.0,55.0,111,34,10,0.0,3743,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1905.3434021374312,2418.52,0.0,59339.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,39559.333333333336,5,0,5,5_0 +7110,0.0,9.0,62.0,120,75,50,2.0,3748,0.0,0.0,705.0,0.0,0.0,5.0,0.0,2.0,1.5,2031.5803771018243,0.0,3000.0,63745.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,42496.666666666664,5,0,5,5_1 +7111,13.0,21.0,30.0,111,43,33,0.0,375,0.0,450.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2550.118336242817,6188.0,0.0,51494.0,1,2,9,7.0,4,4.0,0.0,0.0,0,0,0,1,0,0,0.0,4.0,28607.777777777777,4,0,4_0,4_0 +7112,0.0,0.0,49.0,111,38,20,0.0,3750,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1377.413819649222,0.0,0.0,53503.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26751.5,4,0,4_0,4_0 +7113,11.0,11.0,51.0,112,21,31,0.0,3751,0.0,99999.0,0.0,750.0,2.0,5.0,0.0,2.0,1.5,412.1975289633025,520.0,0.0,43560.0,1,3,9,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,29040.0,4,0,4_0,4_0 +7114,3.0,7.0,33.0,111,43,33,0.0,3753,0.0,0.0,500.0,0.0,2.0,4.0,0.0,2.0,1.5,3543.2749523173848,0.0,0.0,47615.0,1,1,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,31743.333333333332,4,0,4_0,4_0 +7115,7.0,9.0,30.0,111,52,41,0.0,3754,0.0,0.0,0.0,167.0,1.0,4.0,1.0,2.0,1.3,597.6313643542078,1320.8,0.0,16048.0,4,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,12344.615384615385,1,0,1_1,1_0 +7116,3.0,10.0,41.0,111,85,30,0.0,3755,0.0,0.0,0.0,0.0,0.0,2.0,2.0,3.0,1.6,1701.028859650065,0.0,0.0,15300.0,6,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,9562.5,1,0,1_1,1_0 +7117,4.0,4.0,48.0,111,37,12,0.0,3756,0.0,60.0,0.0,0.0,2.0,6.0,3.0,5.0,3.0,4051.567021664453,4342.5199999999995,0.0,54978.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,18326.0,2,0,2_0,2_0 +7118,0.0,0.0,31.0,120,65,43,0.0,3757,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1986.6145388588225,0.0,0.0,35080.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16704.761904761905,2,0,2_0,2_0 +7119,5.0,5.0,26.0,111,56,42,0.0,3758,0.0,100.0,0.0,600.0,2.0,3.0,1.0,3.0,1.8,2956.328554392422,0.0,0.0,36593.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,20329.444444444445,3,0,3_0,3_0 +7120,2.0,2.0,49.0,111,65,71,0.0,3759,0.0,99999.0,0.0,315.0,3.0,5.0,2.0,4.0,2.5,1330.7078673956464,1560.0,0.0,56012.0,1,3,7,6.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,22404.8,3,0,3_0,3_0 +7121,1.0,11.0,55.0,111,47,50,0.0,376,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2042.6891775885254,3380.0,0.0,26024.0,1,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26024.0,4,0,4_0,4_0 +7122,5.0,7.0,58.0,111,47,42,0.0,3760,0.0,0.0,0.0,802.0,2.0,6.0,0.0,2.0,1.5,5974.634062920009,0.0,0.0,84950.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,56633.333333333336,5,0,5,5_0 +7123,5.0,5.0,71.0,112,72,30,0.0,3762,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,6139.962973489577,2080.52,0.0,22280.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22280.0,3,0,3_0,3_1 +7124,2.0,13.0,66.0,221,72,50,0.0,3763,0.0,0.0,100.0,0.0,0.0,6.0,0.0,2.0,1.5,1604.703619525658,0.0,0.0,22487.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,14991.333333333334,2,0,2_0,2_0 +7125,0.0,0.0,27.0,111,55,41,0.0,3764,0.0,0.0,0.0,58.0,1.0,2.0,0.0,1.0,1.0,3143.6259460308875,0.0,0.0,9085.0,4,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9085.0,1,0,1_1,1_0 +7126,2.0,2.0,72.0,112,78,50,0.0,3765,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1952.2306217959047,0.0,0.0,29790.0,5,2,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19860.0,3,0,3_0,3_1 +7127,0.0,0.0,63.0,111,78,50,0.0,3766,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3693.260015362258,0.0,0.0,17508.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17508.0,2,0,2_0,2_0 +7128,6.0,7.0,38.0,111,81,50,0.0,3767,0.0,550.0,0.0,0.0,1.0,2.0,1.0,3.0,1.8,4070.74141185823,1040.0,0.0,46521.0,4,1,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,0.0,3.0,25845.0,4,0,4_0,4_0 +7129,4.0,9.0,47.0,111,47,50,0.0,3768,0.0,0.0,60.0,0.0,1.0,5.0,1.0,2.0,1.5,648.5321923627511,2080.0,0.0,27055.0,1,2,6,4.0,2,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,18036.666666666668,2,0,2_0,2_0 +7130,1.0,14.0,50.0,120,67,50,2.0,377,0.0,150.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1650.603451663422,0.0,850.0,36029.0,4,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24019.333333333332,4,0,4_0,4_1 +7131,9.0,11.0,34.0,120,48,31,0.0,3771,0.0,99999.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2337.7410211264364,4853.16,0.0,86214.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,41054.28571428571,5,0,5,5_1 +7132,4.0,23.0,82.0,111,75,33,0.0,3772,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2564.332715167874,3608.8,0.0,49687.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,33124.666666666664,5,0,5,5_0 +7133,0.0,0.0,51.0,111,47,33,0.0,3774,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2616.9145633138874,0.0,0.0,35466.0,1,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17733.0,2,0,2_0,2_0 +7134,5.0,5.0,25.0,111,84,0,0.0,3776,0.0,199998.0,0.0,493.0,0.0,3.0,0.0,1.0,1.0,6775.800007522511,0.0,0.0,20604.0,3,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,20604.0,3,0,3_1,3_0 +7135,11.0,16.0,40.0,112,37,20,0.0,3777,0.0,0.0,0.0,602.0,2.0,3.0,0.0,2.0,1.5,3076.8988247841708,0.0,0.0,53006.0,1,3,7,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,35337.333333333336,5,0,5,5_0 +7136,7.0,8.0,33.0,111,21,50,0.0,3778,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2472.3267081106005,0.0,0.0,16346.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,7783.809523809524,1,0,1_1,1_0 +7137,1.0,16.0,59.0,111,75,50,0.0,3779,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2357.37865021603,0.0,0.0,38395.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25596.666666666668,4,0,4_0,4_0 +7138,6.0,6.0,69.0,111,75,44,0.0,3780,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,7657.120745290335,0.0,0.0,17870.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17870.0,2,0,2_0,2_0 +7139,2.0,2.0,42.0,112,33,20,0.0,3782,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2224.292385656483,2269.28,0.0,70847.0,1,2,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,30803.04347826087,4,0,4_0,4_0 +7140,0.0,0.0,51.0,112,63,71,0.0,3783,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1927.6142896907345,0.0,0.0,49833.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,19933.2,3,0,3_1,3_1 +7141,0.0,0.0,43.0,221,56,71,0.0,3784,0.0,0.0,0.0,228.0,2.0,3.0,2.0,4.0,2.3,3834.9103027959945,1560.0,0.0,29981.0,1,3,1,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13035.217391304348,1,0,1_1,1_0 +7142,6.0,6.0,81.0,112,77,71,0.0,3785,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4302.790301845614,0.0,0.0,15373.0,5,1,6,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,15373.0,2,0,2_0,2_1 +7143,0.0,0.0,40.0,111,85,71,0.0,3787,0.0,0.0,0.0,0.0,2.0,6.0,5.0,6.0,2.9,531.6380688072212,930.8,0.0,38640.0,6,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13324.137931034484,1,0,1_1,1_0 +7144,17.0,17.0,19.0,111,84,41,0.0,3788,0.0,310.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3782.894204140529,0.0,0.0,3781.0,3,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,3781.0,1,0,1_0,1_0 +7145,6.0,6.0,66.0,300,78,71,0.0,3789,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1670.203894055795,2080.0,0.0,23843.0,5,1,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,15895.333333333334,2,0,2_0,2_0 +7146,0.0,0.0,51.0,112,45,20,0.0,379,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,3494.408281354908,0.0,0.0,37552.0,1,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25034.666666666668,4,0,4_0,4_0 +7147,3.0,3.0,69.0,111,78,70,0.0,3790,0.0,300.0,0.0,153.0,0.0,1.0,0.0,1.0,1.0,2738.277292520344,0.0,0.0,11740.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11740.0,1,0,1_1,1_0 +7148,11.0,23.0,51.0,222,52,50,0.0,3792,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3607.9764779805037,0.0,0.0,22290.0,1,1,1,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14860.0,2,0,2_0,2_1 +7149,6.0,6.0,84.0,111,86,41,0.0,3794,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1496.428343501992,0.0,0.0,26513.0,6,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26513.0,4,0,4_0,4_0 +7150,0.0,0.0,62.0,112,12,70,0.0,3795,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2740.439630624857,0.0,0.0,-19440.0,1,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,-19440.0,1,0,1_0,1_1 +7151,4.0,4.0,55.0,112,47,50,0.0,3796,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1614.0438457137384,2964.0,0.0,47577.0,1,2,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31718.0,4,0,4_0,4_0 +7152,1.0,1.0,71.0,111,75,31,1.0,3797,0.0,0.0,360.0,0.0,0.0,4.0,0.0,1.0,1.0,3768.694466718593,0.0,25000.0,30469.0,5,1,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,30469.0,4,0,4_0,4_0 +7153,3.0,3.0,25.0,111,47,30,0.0,3798,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2254.4242636790023,0.0,0.0,43793.0,1,2,7,5.0,3,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,29195.333333333332,4,0,4_0,4_0 +7154,0.0,0.0,57.0,112,42,71,0.0,3799,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2757.190498159227,1040.0,0.0,24067.0,1,3,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12033.5,1,0,1_0,1_1 +7155,6.0,9.0,63.0,111,78,71,0.0,38,0.0,0.0,150.0,0.0,1.0,4.0,0.0,2.0,1.5,2327.8883973261636,2704.0,0.0,20633.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,13755.333333333334,1,0,1_0,1_0 +7156,0.0,0.0,75.0,300,75,70,0.0,380,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1723.1144478629585,0.0,0.0,39432.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26288.0,4,0,4_0,4_1 +7157,5.0,9.0,60.0,111,52,71,0.0,3800,0.0,0.0,0.0,500.0,2.0,3.0,0.0,2.0,1.5,3564.3673364820784,0.0,0.0,55802.0,1,3,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,37201.333333333336,5,0,5,5_0 +7158,5.0,11.0,21.0,111,55,60,0.0,3802,0.0,170.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1258.2502831256952,0.0,0.0,23192.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,11043.809523809523,1,0,1_1,1_0 +7159,1.0,2.0,65.0,221,78,50,0.0,3803,0.0,250.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2530.6956292583213,3536.5200000000004,0.0,28628.0,5,1,1,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,19085.333333333332,3,0,3_0,3_0 +7160,4.0,8.0,82.0,400,74,20,0.0,3804,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2041.758187673235,0.0,0.0,41624.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,27749.333333333332,4,0,4_0,4_1 +7161,1.0,1.0,37.0,111,22,20,0.0,3806,0.0,0.0,0.0,680.0,1.0,4.0,2.0,3.0,1.6,1101.9552832781874,2953.6,0.0,26426.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,16516.25,2,0,2_1,2_0 +7162,0.0,0.0,33.0,111,56,41,0.0,3807,0.0,0.0,0.0,480.0,1.0,3.0,1.0,2.0,1.3,2699.753711152376,520.0,0.0,17673.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13594.615384615385,1,0,1_0,1_0 +7163,0.0,0.0,44.0,111,48,30,0.0,3808,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2542.852615136181,2360.7999999999997,0.0,74415.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,35435.71428571428,5,0,5,5_0 +7164,8.0,8.0,51.0,111,37,20,0.0,381,0.0,160.0,0.0,0.0,4.0,4.0,2.0,4.0,2.5,1768.3219903652796,4461.6,0.0,107453.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,42981.2,5,0,5,5_0 +7165,0.0,0.0,33.0,111,47,43,0.0,3811,0.0,0.0,0.0,460.0,2.0,3.0,0.0,2.0,1.5,2057.7653833800846,2340.0,0.0,48119.0,1,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32079.333333333332,5,0,5,5_0 +7166,11.0,11.0,60.0,111,53,50,0.0,3812,0.0,60.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,4849.620079373306,4940.0,0.0,57995.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,28997.5,4,0,4_0,4_0 +7167,10.0,10.0,61.0,212,78,71,0.0,3813,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,2291.6122237651985,0.0,0.0,14834.0,5,1,2,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9889.333333333334,1,0,1_0,1_1 +7168,9.0,9.0,82.0,400,71,70,0.0,3814,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2233.9045184614124,0.0,0.0,12991.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12991.0,1,0,1_0,1_0 +7169,8.0,18.0,56.0,111,52,70,0.0,3815,0.0,100.0,0.0,127.0,2.0,3.0,1.0,3.0,2.0,1747.4755644112277,2132.0,0.0,25379.0,1,3,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,12689.5,1,0,1_1,1_0 +7170,4.0,4.0,65.0,111,78,50,0.0,3817,0.0,100041.0,0.0,307.0,0.0,2.0,0.0,1.0,1.0,2802.356768970904,0.0,0.0,12998.0,5,3,8,6.0,1,4.0,0.0,0.0,0,0,1,0,0,1,1.0,3.0,12998.0,1,0,1_1,1_0 +7171,10.0,10.0,86.0,222,74,10,0.0,3818,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2616.3150944706103,936.0,0.0,9893.0,5,1,1,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9893.0,1,0,1_0,1_1 +7172,0.0,0.0,37.0,111,64,43,0.0,3819,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2409.819055539917,0.0,0.0,45153.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21501.42857142857,3,0,3_0,3_0 +7173,6.0,6.0,69.0,112,74,20,0.0,382,0.0,100.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1701.71044129172,0.0,0.0,103820.0,5,1,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,69213.33333333333,5,0,5,5_0 +7174,0.0,0.0,26.0,112,21,44,0.0,3820,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,3098.626764780018,1560.0,0.0,25878.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14376.666666666666,2,0,2_0,2_1 +7175,5.0,5.0,58.0,300,78,71,0.0,3821,0.0,100.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2349.424196868493,0.0,0.0,12680.0,7,3,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,12680.0,1,0,1_1,1_0 +7176,11.0,11.0,52.0,111,43,33,0.0,3822,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,734.157756735112,247.0,0.0,73097.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29238.8,4,0,4_0,4_0 +7177,3.0,3.0,86.0,111,74,12,0.0,3823,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1725.7735002088589,2143.44,0.0,65421.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,43614.0,5,0,5,5_0 +7178,13.0,13.0,56.0,112,54,41,0.0,3824,0.0,0.0,350.0,0.0,1.0,3.0,0.0,2.0,1.5,3121.0718947285172,1978.6,0.0,41065.0,1,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,27376.666666666668,4,0,4_0,4_1 +7179,5.0,15.0,75.0,400,78,71,0.0,3825,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1954.5266995074073,0.0,0.0,29477.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,19651.333333333332,3,0,3_0,3_1 +7180,6.0,8.0,57.0,400,21,60,0.0,3826,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1916.3621375058972,0.0,0.0,19022.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12681.333333333334,1,0,1_0,1_1 +7181,0.0,11.0,46.0,111,21,44,0.0,3827,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3580.400672138223,0.0,0.0,14766.0,1,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14766.0,2,0,2_0,2_0 +7182,1.0,17.0,34.0,211,56,50,2.0,3828,0.0,0.0,0.0,135.0,1.0,4.0,2.0,3.0,1.6,489.0373148039078,2266.16,400.0,18960.0,4,3,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,11850.0,1,0,1_1,1_0 +7183,11.0,11.0,61.0,112,72,50,0.0,383,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3540.5097668919702,0.0,0.0,12830.0,7,3,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,12830.0,1,0,1_1,1_1 +7184,1.0,2.0,48.0,111,52,20,2.0,3830,0.0,0.0,1100.0,293.0,1.0,2.0,0.0,2.0,1.5,2831.6168180764234,0.0,14700.0,22692.0,1,3,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,15128.0,2,0,2_0,2_0 +7185,7.0,18.0,51.0,111,33,30,0.0,3831,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.3,2131.0063195272346,0.0,0.0,126145.0,1,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,54845.65217391305,5,0,5,5_0 +7186,7.0,13.0,48.0,112,52,50,0.0,3832,0.0,0.0,99999.0,0.0,1.0,4.0,2.0,3.0,1.8,263.60560288100197,0.0,0.0,24550.0,1,1,10,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,13638.888888888889,1,0,1_0,1_0 +7187,1.0,2.0,67.0,400,77,70,2.0,3833,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2721.839240685615,0.0,6000.0,29460.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19640.0,3,0,3_0,3_1 +7188,3.0,3.0,40.0,111,56,71,0.0,3834,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.3,604.2555280192473,2817.88,0.0,39024.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,16966.956521739132,2,0,2_1,2_0 +7189,0.0,0.0,47.0,111,47,20,0.0,3835,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1823.6214078039538,7706.400000000001,0.0,37177.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20653.888888888887,3,0,3_0,3_0 +7190,0.0,0.0,34.0,111,54,30,0.0,3836,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,552.1777536493205,0.0,0.0,25269.0,1,4,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19437.69230769231,3,0,3_0,3_0 +7191,2.0,2.0,51.0,221,63,50,0.0,3837,0.0,80.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1881.1781213896766,6276.4,0.0,39762.0,1,2,3,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,26508.0,4,0,4_0,4_0 +7192,2.0,5.0,56.0,221,47,60,0.0,3839,0.0,20.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,546.0280477917316,0.0,0.0,13116.0,4,3,1,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,8744.0,1,0,1_1,1_0 +7193,5.0,5.0,34.0,112,43,33,0.0,384,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2209.0028669496587,6240.0,0.0,48503.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23096.666666666664,3,0,3_0,3_1 +7194,0.0,0.0,68.0,111,77,71,0.0,3840,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3062.7143808524743,2340.0,0.0,23840.0,5,4,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23840.0,4,0,4_0,4_0 +7195,0.0,0.0,50.0,300,68,71,0.0,3843,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,3397.1297414559995,0.0,0.0,31668.0,1,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15834.0,2,0,2_1,2_0 +7196,2.0,4.0,55.0,400,37,20,0.0,3845,0.0,190.0,30.0,0.0,2.0,7.0,0.0,2.0,1.5,1678.660110321051,1956.2399999999998,0.0,109100.0,1,3,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,72733.33333333333,5,0,5,5_0 +7197,0.0,0.0,58.0,300,13,71,0.0,3846,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2153.32659444861,0.0,0.0,10630.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,7086.666666666667,1,0,1_0,1_1 +7198,1.0,1.0,62.0,112,77,50,1.0,3847,0.0,200.0,150.0,0.0,0.0,5.0,0.0,2.0,1.5,2238.056790337298,0.0,6000.0,52841.0,5,1,8,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,35227.333333333336,5,0,5,5_1 +7199,11.0,11.0,75.0,111,74,50,0.0,3848,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1866.647555674479,0.0,0.0,31216.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,20810.666666666668,3,0,3_0,3_0 +7200,0.0,0.0,68.0,111,72,50,0.0,3849,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1465.0243382549527,0.0,0.0,28451.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18967.333333333332,3,0,3_0,3_0 +7201,0.0,0.0,58.0,111,54,41,0.0,385,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2006.4786296901623,3224.0,0.0,62096.0,1,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,41397.333333333336,5,0,5,5_0 +7202,19.0,19.0,28.0,111,42,44,0.0,3851,0.0,450.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3778.005899915283,0.0,0.0,9655.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,9655.0,1,0,1_0,1_0 +7203,0.0,0.0,47.0,111,43,43,1.0,3852,0.0,0.0,0.0,327.0,1.0,4.0,3.0,4.0,2.3,860.9116543040662,2600.0,13871.0,31390.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,13647.826086956522,1,0,1_1,1_0 +7204,0.0,23.0,79.0,211,74,41,0.0,3853,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,2939.2635373800763,0.0,0.0,60388.0,5,1,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,40258.666666666664,5,0,5,5_0 +7205,1.0,1.0,19.0,111,84,41,1.0,3854,0.0,0.0,0.0,440.0,0.0,1.0,0.0,1.0,1.0,2191.3572337810856,0.0,21000.0,7200.0,3,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,7200.0,1,0,1_1,1_0 +7206,7.0,12.0,66.0,111,74,60,0.0,3856,0.0,220.0,250.0,0.0,0.0,5.0,0.0,1.0,1.0,2220.2846140348684,0.0,0.0,23202.0,5,1,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,23202.0,3,0,3_0,3_0 +7207,0.0,0.0,41.0,111,48,31,0.0,3857,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3177.7147039716187,0.0,0.0,119946.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,66636.66666666667,5,0,5,5_0 +7208,6.0,6.0,41.0,120,55,42,0.0,3858,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,670.36583337136,0.0,0.0,25565.0,1,2,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,15978.125,2,0,2_1,2_1 +7209,0.0,0.0,33.0,111,55,50,0.0,386,0.0,0.0,0.0,420.0,1.0,3.0,2.0,3.0,1.6,807.3096601969015,0.0,0.0,24565.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15353.125,2,0,2_0,2_0 +7210,3.0,3.0,64.0,111,43,0,0.0,3864,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,964.8893462344059,2603.12,0.0,51827.0,1,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34551.333333333336,5,0,5,5_0 +7211,0.0,0.0,62.0,300,78,71,0.0,3865,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2309.5426917855057,0.0,0.0,29679.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19786.0,3,0,3_0,3_1 +7212,6.0,7.0,35.0,111,43,30,0.0,3866,0.0,0.0,0.0,299.0,1.0,2.0,0.0,1.0,1.0,2668.2291763835447,1040.0,0.0,21291.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21291.0,3,0,3_0,3_0 +7213,2.0,11.0,40.0,111,46,30,0.0,3867,0.0,0.0,220.0,461.0,1.0,3.0,0.0,1.0,1.0,3509.160037420185,1825.2,0.0,22249.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22249.0,3,0,3_0,3_0 +7214,3.0,7.0,59.0,111,54,71,0.0,3868,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3809.284478552288,1716.0,0.0,22980.0,4,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15320.0,2,0,2_0,2_0 +7215,9.0,9.0,73.0,111,74,12,0.0,3869,0.0,350.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2294.1959305177347,0.0,0.0,70511.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,47007.333333333336,5,0,5,5_0 +7216,5.0,6.0,27.0,111,37,30,0.0,3872,0.0,0.0,0.0,600.0,1.0,2.0,0.0,1.0,1.0,6611.49604408349,0.0,0.0,34238.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,34238.0,5,0,5,5_0 +7217,5.0,6.0,44.0,111,55,41,0.0,3875,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,819.2157647496999,0.0,0.0,26644.0,1,1,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20495.384615384613,3,0,3_0,3_0 +7218,5.0,7.0,51.0,112,42,31,0.0,3876,0.0,900.0,350.0,793.0,2.0,4.0,1.0,3.0,2.0,2080.4453073236255,1622.92,0.0,51760.0,1,3,9,2.0,4,4.0,1.0,1.0,0,1,0,0,0,0,1.0,3.0,25880.0,4,0,4_0,4_0 +7219,0.0,0.0,56.0,112,37,20,0.0,3877,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1690.9835861766178,0.0,0.0,58181.0,1,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29090.5,4,0,4_0,4_1 +7220,9.0,13.0,74.0,112,75,20,0.0,3878,0.0,0.0,560.0,0.0,0.0,5.0,0.0,1.0,1.0,2228.594827656531,3276.0,0.0,42032.0,5,1,9,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,42032.0,5,0,5,5_0 +7221,4.0,6.0,75.0,211,77,70,0.0,3879,0.0,50.0,60.0,285.0,0.0,1.0,0.0,1.0,1.0,2499.2233653035028,0.0,0.0,19965.0,5,3,1,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19965.0,3,0,3_0,3_0 +7222,12.0,12.0,58.0,111,78,71,0.0,3880,0.0,0.0,0.0,380.0,0.0,3.0,1.0,3.0,2.0,3141.7927379796374,0.0,0.0,12070.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,6035.0,1,0,1_1,1_0 +7223,0.0,0.0,60.0,111,33,33,0.0,3881,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1956.6514088176618,2076.36,0.0,83780.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41890.0,5,0,5,5_0 +7224,3.0,13.0,86.0,111,77,71,0.0,3882,0.0,0.0,92.0,309.0,1.0,4.0,1.0,2.0,1.5,3784.8878513759273,0.0,0.0,21746.0,5,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,2.0,0.0,14497.333333333334,2,0,2_1,2_0 +7225,1.0,11.0,57.0,111,37,30,0.0,3883,0.0,0.0,0.0,800.0,1.0,3.0,1.0,3.0,1.8,1913.5905131844434,2912.0,0.0,43464.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,24146.666666666668,4,0,4_0,4_0 +7226,0.0,11.0,20.0,112,21,50,0.0,3884,0.0,0.0,0.0,148.0,1.0,1.0,0.0,1.0,1.0,4222.47103033852,3945.76,0.0,5114.0,1,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,5114.0,1,0,1_1,1_0 +7227,6.0,6.0,21.0,112,67,60,0.0,3886,0.0,125.0,0.0,392.0,1.0,2.0,0.0,1.0,1.0,2008.9303391083765,2808.0,0.0,25097.0,1,3,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,25097.0,4,0,4_1,4_0 +7228,0.0,0.0,40.0,111,46,50,0.0,3887,0.0,0.0,0.0,564.0,1.0,4.0,1.0,2.0,1.3,552.0131558386349,1457.04,0.0,27157.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,20890.0,3,0,3_1,3_0 +7229,0.0,0.0,46.0,120,62,50,0.0,389,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2721.752963245166,1560.0,0.0,38727.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21515.0,3,0,3_0,3_1 +7230,2.0,10.0,46.0,111,85,60,0.0,3890,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,5385.811387676833,0.0,0.0,742.0,7,2,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,742.0,1,0,1_1,1_0 +7231,5.0,12.0,37.0,112,38,31,0.0,3891,0.0,400.0,50.0,0.0,2.0,6.0,2.0,4.0,2.1,2921.6258007258816,0.0,0.0,73410.0,1,2,9,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,34957.142857142855,5,0,5,5_0 +7232,0.0,0.0,72.0,400,72,70,0.0,3892,0.0,0.0,0.0,492.0,0.0,4.0,0.0,1.0,1.0,1894.5158809396505,1560.0,0.0,18564.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18564.0,2,0,2_0,2_1 +7233,0.0,8.0,40.0,111,52,50,2.0,3893,0.0,300.0,100.0,0.0,2.0,4.0,1.0,3.0,1.8,908.0189854362992,2236.52,1700.0,29710.0,1,3,9,7.0,5,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16505.555555555555,2,0,2_0,2_0 +7234,16.0,16.0,60.0,111,13,12,0.0,3895,0.0,0.0,0.0,0.0,4.0,8.0,2.0,4.0,2.5,2139.6401198978765,2080.0,0.0,43743.0,1,3,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17497.2,2,0,2_0,2_0 +7235,6.0,6.0,70.0,111,63,71,0.0,3896,0.0,550.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1499.1936326344944,0.0,0.0,57242.0,1,1,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,38161.333333333336,5,0,5,5_0 +7236,0.0,0.0,37.0,111,63,50,0.0,3897,0.0,0.0,0.0,543.0,2.0,1.0,2.0,4.0,2.1,5164.323909136494,0.0,0.0,7750.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,3690.4761904761904,1,0,1_0,1_0 +7237,5.0,7.0,85.0,112,75,70,0.0,3898,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1985.4035348703785,0.0,0.0,21863.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14575.333333333334,2,0,2_0,2_0 +7238,0.0,0.0,73.0,111,78,71,0.0,39,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1448.1158159501165,2080.0,0.0,37189.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24792.666666666668,4,0,4_0,4_0 +7239,2.0,7.0,38.0,111,63,43,0.0,3900,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1844.4085320516199,0.0,0.0,50840.0,1,2,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,33893.333333333336,5,0,5,5_0 +7240,10.0,10.0,84.0,221,77,70,0.0,3901,0.0,580.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2511.8534659480642,0.0,0.0,26864.0,5,1,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,26864.0,4,0,4_0,4_0 +7241,6.0,6.0,67.0,112,75,50,0.0,3902,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2777.955475335868,0.0,0.0,25963.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17308.666666666668,2,0,2_0,2_0 +7242,5.0,5.0,40.0,111,31,30,0.0,3903,0.0,200.0,55.0,0.0,2.0,4.0,2.0,4.0,2.1,2889.65858663383,0.0,0.0,128560.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,61219.04761904762,5,0,5,5_0 +7243,0.0,0.0,40.0,112,38,31,0.0,3904,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2173.6139226264977,0.0,0.0,60352.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28739.04761904762,4,0,4_0,4_1 +7244,35.0,35.0,65.0,400,71,50,0.0,3905,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1429.8602229934552,2602.08,0.0,16017.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,10678.0,1,0,1_0,1_1 +7245,0.0,0.0,46.0,111,34,31,0.0,3907,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,2688.946588132995,0.0,0.0,41991.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18256.956521739132,2,0,2_0,2_0 +7246,2.0,7.0,36.0,111,54,31,2.0,3908,0.0,0.0,0.0,267.0,1.0,3.0,1.0,2.0,1.3,959.1195623467253,3174.08,6760.0,30756.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,23658.46153846154,3,0,3_1,3_0 +7247,5.0,21.0,68.0,112,77,50,0.0,3909,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1709.609634021933,2134.08,0.0,40746.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27164.0,4,0,4_0,4_1 +7248,8.0,8.0,72.0,120,75,41,0.0,391,0.0,99999.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1659.8021317189002,3078.4,0.0,55615.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,37076.666666666664,5,0,5,5_1 +7249,0.0,0.0,39.0,111,52,50,0.0,3910,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3096.560023220823,2080.0,0.0,48994.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23330.47619047619,3,0,3_0,3_0 +7250,11.0,11.0,43.0,111,67,31,0.0,3911,0.0,0.0,0.0,560.0,1.0,3.0,1.0,3.0,1.8,3430.2583464889117,1560.0,0.0,37970.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,21094.444444444445,3,0,3_0,3_0 +7251,0.0,0.0,47.0,211,65,44,0.0,3912,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,606.7064617616688,0.0,0.0,30291.0,1,2,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16828.333333333332,2,0,2_0,2_0 +7252,16.0,16.0,22.0,111,55,20,0.0,3913,0.0,0.0,10.0,103.0,1.0,1.0,0.0,1.0,1.0,4950.127186176308,0.0,0.0,19170.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,19170.0,3,0,3_1,3_0 +7253,8.0,11.0,82.0,112,75,70,0.0,3915,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2080.385711263561,0.0,0.0,45548.0,5,1,5,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,30365.333333333332,4,0,4_0,4_1 +7254,0.0,0.0,48.0,111,48,43,0.0,3916,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1847.0305068604039,2392.0,0.0,35517.0,1,1,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14206.8,2,0,2_0,2_0 +7255,1.0,1.0,54.0,112,34,10,2.0,3918,0.0,120.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,2726.695275209624,3237.0,3500.0,84396.0,1,2,10,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,56264.0,5,0,5,5_1 +7256,0.0,0.0,60.0,400,52,71,0.0,3919,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1578.6516703152738,1040.0,0.0,14866.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14866.0,2,0,2_1,2_1 +7257,1.0,15.0,81.0,111,74,31,2.0,392,0.0,0.0,600.0,0.0,0.0,4.0,0.0,1.0,1.0,2552.9552448017735,0.0,1000.0,43456.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,43456.0,5,0,5,5_0 +7258,0.0,0.0,43.0,111,38,30,0.0,3920,0.0,0.0,0.0,1100.0,1.0,4.0,4.0,6.0,2.9,2607.371505099328,0.0,0.0,69086.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23822.758620689656,4,0,4_0,4_0 +7259,0.0,12.0,44.0,112,62,43,2.0,3921,0.0,255.0,0.0,457.0,2.0,4.0,2.0,4.0,2.3,2865.890715476011,1250.6000000000001,4000.0,52679.0,1,3,8,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22903.913043478264,3,0,3_0,3_0 +7260,1.0,9.0,43.0,111,52,50,0.0,3922,0.0,300.0,0.0,0.0,1.0,3.0,4.0,5.0,2.6,690.84017498555,0.0,0.0,37040.0,1,4,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,14246.153846153846,2,0,2_0,2_0 +7261,3.0,16.0,24.0,111,38,20,0.0,3923,0.0,0.0,25.0,610.0,1.0,1.0,0.0,1.0,1.0,5296.12068878439,0.0,0.0,48765.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,48765.0,5,0,5,5_0 +7262,17.0,17.0,62.0,112,42,31,0.0,3925,0.0,100.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2447.235030953249,0.0,0.0,43750.0,1,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,43750.0,5,0,5,5_1 +7263,1.0,4.0,70.0,112,74,50,0.0,3928,0.0,100.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1486.0903373825097,1340.56,0.0,65050.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,43366.666666666664,5,0,5,5_1 +7264,0.0,12.0,69.0,112,74,70,0.0,3929,0.0,0.0,300.0,0.0,0.0,5.0,0.0,2.0,1.5,2362.5741183220202,0.0,0.0,46784.0,5,1,8,3.0,3,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,31189.333333333332,4,0,4_0,4_0 +7265,10.0,17.0,69.0,111,46,50,0.0,393,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2029.9950787472587,0.0,0.0,80908.0,1,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,40454.0,5,0,5,5_0 +7266,0.0,0.0,31.0,112,54,31,0.0,3930,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2211.282448527515,0.0,0.0,3670.0,4,1,8,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,2823.076923076923,1,0,1_0,1_0 +7267,3.0,3.0,49.0,221,22,33,0.0,3931,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2056.5182353660357,2080.0,0.0,22355.0,1,2,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17196.153846153844,2,0,2_0,2_0 +7268,0.0,0.0,37.0,111,45,20,0.0,3932,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2367.3306401876207,0.0,0.0,24700.0,1,2,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24700.0,4,0,4_0,4_0 +7269,0.0,0.0,79.0,112,46,50,0.0,3933,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1844.1896232541728,0.0,0.0,40028.0,5,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26685.333333333332,4,0,4_0,4_1 +7270,1.0,3.0,64.0,111,78,50,0.0,3934,0.0,100.0,100.0,0.0,0.0,3.0,0.0,2.0,1.5,1044.458572500882,0.0,0.0,32759.0,5,1,4,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,21839.333333333332,3,0,3_0,3_0 +7271,9.0,9.0,58.0,111,63,71,0.0,3935,0.0,0.0,0.0,193.0,2.0,5.0,3.0,5.0,2.6,2915.9009148912132,0.0,0.0,34926.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13433.076923076922,1,0,1_1,1_0 +7272,0.0,0.0,40.0,400,43,33,0.0,3936,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2301.407687429689,1731.6,0.0,60608.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33671.11111111111,5,0,5,5_1 +7273,5.0,10.0,48.0,111,35,41,0.0,3937,0.0,300.0,150.0,0.0,1.0,3.0,1.0,2.0,1.5,950.3473835257023,0.0,0.0,34054.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22702.666666666668,3,0,3_0,3_0 +7274,0.0,13.0,33.0,112,47,50,0.0,3938,0.0,0.0,700.0,0.0,2.0,5.0,3.0,5.0,2.4,746.922749605361,0.0,0.0,41384.0,1,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17243.333333333336,2,0,2_0,2_0 +7275,19.0,21.0,21.0,111,34,41,0.0,3939,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4202.380714607889,0.0,0.0,11302.0,3,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,11302.0,1,0,1_1,1_0 +7276,6.0,6.0,69.0,112,78,70,0.0,394,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2362.8271650095144,2000.44,0.0,30846.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20564.0,3,0,3_0,3_1 +7277,0.0,0.0,40.0,111,46,43,0.0,3940,0.0,0.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,4160.232558795443,1562.08,0.0,29150.0,1,2,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16194.444444444443,2,0,2_0,2_0 +7278,0.0,0.0,70.0,400,78,50,0.0,3941,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2642.9449743116816,0.0,0.0,15981.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15981.0,2,0,2_0,2_1 +7279,5.0,5.0,48.0,111,43,33,0.0,3944,0.0,150.0,0.0,0.0,1.0,8.0,2.0,3.0,1.8,715.6239865398466,0.0,0.0,29486.0,1,2,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16381.111111111111,2,0,2_0,2_0 +7280,9.0,21.0,65.0,111,78,71,0.0,3945,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3325.752440822325,2600.0,0.0,25140.0,5,1,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,12570.0,1,0,1_0,1_0 +7281,0.0,0.0,53.0,111,67,71,0.0,3946,0.0,0.0,0.0,259.0,2.0,4.0,0.0,2.0,1.5,2230.2078337300136,2080.0,0.0,36610.0,1,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24406.666666666668,4,0,4_0,4_0 +7282,16.0,16.0,50.0,120,42,30,0.0,3947,0.0,0.0,250.0,0.0,2.0,5.0,2.0,4.0,2.5,1506.8575234214932,0.0,0.0,56459.0,1,2,0,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,22583.6,3,0,3_0,3_0 +7283,0.0,0.0,58.0,120,47,50,0.0,3948,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1985.7708341785735,4786.6,0.0,56540.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37693.333333333336,5,0,5,5_1 +7284,10.0,11.0,69.0,112,75,31,0.0,3950,0.0,0.0,100.0,0.0,0.0,5.0,0.0,2.0,1.5,1576.2260860489312,0.0,0.0,31770.0,5,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21180.0,3,0,3_0,3_1 +7285,0.0,0.0,44.0,111,47,50,0.0,3951,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,3289.621602149038,1292.72,0.0,48200.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24100.0,4,0,4_0,4_0 +7286,15.0,15.0,26.0,300,56,50,0.0,3953,0.0,0.0,120.0,200.0,1.0,7.0,2.0,3.0,1.6,746.1742003744264,1560.0,0.0,18600.0,4,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,11625.0,1,0,1_1,1_1 +7287,2.0,2.0,41.0,112,46,31,0.0,3954,0.0,0.0,0.0,604.0,2.0,4.0,1.0,3.0,1.8,719.5417085449691,0.0,0.0,35860.0,1,3,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19922.222222222223,3,0,3_0,3_0 +7288,0.0,11.0,67.0,112,78,50,0.0,3955,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2106.646806732948,0.0,0.0,25620.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25620.0,4,0,4_0,4_1 +7289,1.0,11.0,74.0,112,77,60,0.0,3958,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2257.9695038282025,2972.3199999999997,0.0,29784.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19856.0,3,0,3_0,3_0 +7290,3.0,4.0,45.0,400,13,50,0.0,3959,0.0,0.0,16.0,0.0,2.0,4.0,3.0,5.0,2.8,1794.386733134299,2314.0,0.0,25575.0,1,4,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,9133.928571428572,1,0,1_0,1_1 +7291,12.0,13.0,57.0,112,43,33,0.0,396,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1690.8128875146622,2600.52,0.0,87295.0,1,1,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,37954.34782608696,5,0,5,5_1 +7292,8.0,12.0,44.0,300,48,50,0.0,3960,0.0,0.0,0.0,406.0,1.0,3.0,0.0,1.0,1.0,4005.8522167186065,3484.0,0.0,25431.0,1,3,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,25431.0,4,0,4_0,4_1 +7293,2.0,11.0,55.0,111,52,20,0.0,3962,0.0,0.0,0.0,270.0,1.0,3.0,1.0,2.0,1.3,865.2266837828934,0.0,0.0,20021.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,15400.76923076923,2,0,2_1,2_0 +7294,0.0,0.0,72.0,111,72,50,0.0,3963,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1559.4738601362603,2163.2,0.0,20909.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13939.333333333334,2,0,2_0,2_0 +7295,0.0,0.0,31.0,111,54,50,0.0,3964,0.0,0.0,0.0,324.0,1.0,3.0,0.0,1.0,1.0,2174.5137985531146,0.0,0.0,16040.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16040.0,2,0,2_0,2_0 +7296,0.0,0.0,59.0,221,75,50,0.0,3965,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1611.8287531639012,520.0,0.0,43777.0,5,3,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29184.666666666668,4,0,4_0,4_0 +7297,2.0,2.0,70.0,221,72,44,0.0,3966,0.0,44.0,60.0,0.0,0.0,7.0,0.0,2.0,1.5,1865.490469553868,0.0,0.0,64420.0,5,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,42946.666666666664,5,0,5,5_0 +7298,1.0,2.0,65.0,111,78,70,0.0,3967,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2593.8845341949386,0.0,0.0,12798.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12798.0,1,0,1_0,1_0 +7299,0.0,0.0,71.0,111,31,10,0.0,3968,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1859.9633577601485,0.0,0.0,65648.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,43765.333333333336,5,0,5,5_0 +7300,2.0,2.0,44.0,111,54,50,0.0,3969,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,4218.522974312391,2032.16,0.0,63004.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,27393.04347826087,4,0,4_0,4_0 +7301,2.0,2.0,67.0,111,72,12,0.0,397,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,1368.0678840141259,0.0,0.0,52016.0,5,1,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24769.52380952381,4,0,4_0,4_0 +7302,8.0,11.0,38.0,111,37,31,0.0,3970,0.0,350.0,350.0,1261.0,1.0,3.0,1.0,2.0,1.3,975.2698905716206,0.0,0.0,54527.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,41943.84615384615,5,0,5,5_0 +7303,0.0,0.0,70.0,112,77,50,0.0,3972,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1970.1925330144961,0.0,0.0,44790.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29860.0,4,0,4_0,4_1 +7304,12.0,21.0,70.0,111,75,41,0.0,3973,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1602.4917121070168,0.0,0.0,52723.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,35148.666666666664,5,0,5,5_0 +7305,10.0,11.0,74.0,111,78,71,0.0,3974,0.0,300.0,200.0,0.0,2.0,5.0,1.0,3.0,2.0,2341.77393356657,2262.0,0.0,28310.0,5,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,14155.0,2,0,2_0,2_0 +7306,0.0,0.0,39.0,111,42,30,0.0,3975,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2282.8179712638016,0.0,0.0,27525.0,1,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27525.0,4,0,4_0,4_0 +7307,2.0,2.0,53.0,211,77,50,0.0,3977,0.0,60.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1300.7254579409462,2080.0,0.0,44156.0,7,1,2,3.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,17662.4,2,0,2_0,2_0 +7308,0.0,17.0,45.0,111,46,20,0.0,3978,0.0,0.0,340.0,0.0,2.0,5.0,3.0,5.0,2.6,1865.8557480781835,0.0,0.0,51179.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,19684.23076923077,3,0,3_0,3_0 +7309,0.0,0.0,58.0,112,47,31,0.0,3979,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,4090.5036325438327,2080.0,0.0,64066.0,4,1,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32033.0,5,0,5,5_0 +7310,0.0,0.0,51.0,300,34,20,0.0,3980,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1784.7652669839083,4472.0,0.0,43998.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17599.2,2,0,2_0,2_1 +7311,3.0,7.0,69.0,111,75,31,0.0,3982,0.0,1016.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1557.67104593838,0.0,0.0,76546.0,5,1,9,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,51030.666666666664,5,0,5,5_0 +7312,0.0,0.0,34.0,111,38,30,0.0,3983,0.0,0.0,0.0,780.0,1.0,1.0,0.0,1.0,1.0,2989.470025456193,0.0,0.0,17620.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17620.0,2,0,2_0,2_0 +7313,3.0,3.0,62.0,212,34,30,0.0,3984,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1763.7657487219083,2126.28,0.0,86355.0,1,1,2,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,57570.0,5,0,5,5_1 +7314,0.0,0.0,57.0,111,74,20,0.0,3985,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1876.8761182355179,0.0,0.0,53924.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,35949.333333333336,5,0,5,5_0 +7315,12.0,21.0,52.0,112,54,43,0.0,3986,0.0,250.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1755.6649958593775,0.0,0.0,28330.0,1,1,10,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,28330.0,4,0,4_0,4_1 +7316,5.0,7.0,29.0,111,34,10,0.0,3987,0.0,30.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3195.6616952732543,0.0,0.0,66023.0,1,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,44015.333333333336,5,0,5,5_0 +7317,1.0,13.0,37.0,120,63,50,2.0,3988,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,1890.5145286637248,5200.0,1200.0,31570.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15033.333333333332,2,0,2_0,2_0 +7318,0.0,0.0,41.0,112,47,31,0.0,3989,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,511.6381836419411,0.0,0.0,62146.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27020.000000000004,4,0,4_0,4_1 +7319,0.0,0.0,63.0,111,38,20,0.0,399,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3662.198906931567,0.0,0.0,12097.0,4,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8064.666666666667,1,0,1_1,1_0 +7320,0.0,0.0,40.0,111,47,30,0.0,3990,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1811.7054782152245,2964.0,0.0,69979.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29157.916666666668,4,0,4_0,4_0 +7321,5.0,5.0,58.0,112,48,20,0.0,3991,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2653.165484882704,4940.0,0.0,64776.0,1,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,43184.0,5,0,5,5_1 +7322,5.0,6.0,77.0,111,75,71,0.0,3992,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3032.1622343709564,2944.76,0.0,34029.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22686.0,3,0,3_0,3_0 +7323,11.0,11.0,57.0,111,33,20,0.0,3993,0.0,0.0,99999.0,0.0,2.0,3.0,0.0,2.0,1.5,2088.290045188875,3464.7599999999998,0.0,166382.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,110921.33333333333,5,0,5,5_0 +7324,29.0,29.0,77.0,112,77,71,0.0,3994,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,4884.834441876279,1040.52,0.0,24541.0,5,1,7,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,16360.666666666666,2,0,2_0,2_0 +7325,1.0,14.0,70.0,111,72,50,2.0,3995,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,792.837363838294,0.0,3800.0,44629.0,5,1,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29752.666666666668,4,0,4_0,4_0 +7326,7.0,7.0,29.0,111,63,50,0.0,3996,0.0,0.0,0.0,880.0,2.0,3.0,1.0,3.0,1.8,1353.5228258372274,0.0,0.0,39125.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21736.11111111111,3,0,3_0,3_0 +7327,0.0,3.0,66.0,112,75,60,0.0,3997,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2424.695211239561,520.0,0.0,32592.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21728.0,3,0,3_0,3_0 +7328,8.0,9.0,46.0,111,43,0,0.0,3998,0.0,600.0,0.0,950.0,2.0,5.0,1.0,3.0,1.8,2582.4830075467185,2600.0,0.0,55179.0,1,3,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,30655.0,4,0,4_0,4_0 +7329,1.0,13.0,78.0,120,71,71,2.0,4,0.0,600.0,30.0,0.0,0.0,7.0,0.0,2.0,1.5,2076.2034037169337,0.0,2800.0,26332.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17554.666666666668,2,0,2_0,2_1 +7330,14.0,14.0,78.0,112,78,70,0.0,40,0.0,0.0,99999.0,0.0,0.0,1.0,0.0,1.0,1.0,4724.114883566748,0.0,0.0,9893.0,5,1,8,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,9893.0,1,0,1_0,1_1 +7331,0.0,0.0,44.0,111,63,50,0.0,400,0.0,0.0,0.0,520.0,1.0,4.0,3.0,4.0,2.1,561.3756775790197,0.0,0.0,30412.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14481.904761904761,2,0,2_0,2_0 +7332,6.0,6.0,47.0,111,33,20,0.0,4000,0.0,0.0,0.0,700.0,1.0,2.0,0.0,1.0,1.0,4740.212406289272,0.0,0.0,36600.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,36600.0,5,0,5,5_0 +7333,6.0,6.0,24.0,111,85,71,0.0,4002,0.0,0.0,250.0,0.0,0.0,3.0,1.0,3.0,1.8,2395.936314291568,0.0,0.0,14878.0,6,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,8265.555555555555,1,0,1_1,1_0 +7334,0.0,0.0,54.0,111,56,50,0.0,4003,0.0,0.0,0.0,467.0,2.0,3.0,1.0,3.0,1.8,2526.7370215317937,0.0,0.0,24824.0,4,3,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13791.111111111111,1,0,1_0,1_0 +7335,0.0,0.0,39.0,221,85,60,0.0,4005,0.0,0.0,0.0,0.0,0.0,4.0,4.0,5.0,2.4,786.718534162902,0.0,0.0,23084.0,6,4,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9618.333333333334,1,0,1_1,1_0 +7336,1.0,1.0,45.0,111,52,71,0.0,4007,0.0,0.0,0.0,225.0,1.0,2.0,0.0,1.0,1.0,2489.263816330989,0.0,0.0,17638.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17638.0,2,0,2_0,2_0 +7337,1.0,6.0,51.0,222,63,31,2.0,4008,0.0,250.0,0.0,0.0,4.0,7.0,3.0,5.0,3.0,2389.5034520528816,0.0,11000.0,74384.0,1,2,1,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24794.666666666668,4,0,4_0,4_1 +7338,6.0,6.0,40.0,300,46,50,0.0,4009,0.0,99999.0,0.0,88.0,2.0,4.0,3.0,4.0,2.3,108.14539579212159,0.0,0.0,25886.0,4,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,11254.782608695654,1,0,1_1,1_1 +7339,8.0,20.0,70.0,300,75,71,0.0,401,0.0,0.0,0.0,0.0,0.0,11.0,0.0,1.0,1.0,5074.13788376263,0.0,0.0,27712.0,5,4,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27712.0,4,0,4_0,4_1 +7340,0.0,0.0,63.0,112,78,50,0.0,4010,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3522.1172192845006,2184.0,0.0,32605.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21736.666666666668,3,0,3_0,3_1 +7341,7.0,7.0,69.0,112,86,70,0.0,4011,0.0,0.0,150.0,0.0,0.0,7.0,0.0,2.0,1.5,2057.2285315895347,1523.6000000000001,0.0,27572.0,5,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,18381.333333333332,2,0,2_0,2_1 +7342,5.0,9.0,49.0,111,37,20,0.0,4012,0.0,0.0,0.0,325.0,2.0,5.0,2.0,3.0,1.8,796.6279390832715,2080.0,0.0,58488.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,32493.333333333332,5,0,5,5_0 +7343,8.0,8.0,50.0,111,38,31,0.0,4014,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1864.1165148027228,2080.0,0.0,72910.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,29164.0,4,0,4_0,4_0 +7344,2.0,6.0,51.0,111,38,31,0.0,4015,0.0,0.0,60.0,0.0,2.0,4.0,2.0,4.0,2.3,1632.8038843524407,2860.0,0.0,20034.0,1,2,7,5.0,4,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,8710.434782608696,1,0,1_0,1_0 +7345,0.0,0.0,78.0,111,77,71,0.0,4016,0.0,0.0,0.0,502.0,0.0,4.0,0.0,1.0,1.0,2608.0120245940584,0.0,0.0,18420.0,5,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18420.0,2,0,2_0,2_0 +7346,1.0,3.0,60.0,112,75,50,2.0,4017,0.0,800.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4273.072573292163,0.0,20000.0,7167.0,5,3,8,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,7167.0,1,0,1_0,1_0 +7347,5.0,9.0,48.0,400,67,50,0.0,4018,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2140.204761606161,1300.0,0.0,31070.0,1,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20713.333333333332,3,0,3_0,3_1 +7348,0.0,0.0,36.0,111,67,50,0.0,4019,0.0,0.0,0.0,17.0,1.0,3.0,1.0,2.0,1.3,636.5962835751026,1300.0,0.0,18818.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14475.384615384615,2,0,2_1,2_0 +7349,1.0,11.0,21.0,112,68,71,2.0,402,0.0,0.0,0.0,490.0,2.0,4.0,1.0,3.0,1.8,357.8374072571241,0.0,2500.0,3970.0,4,3,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,2205.5555555555557,1,0,1_0,1_1 +7350,6.0,6.0,57.0,111,21,71,0.0,4020,0.0,0.0,0.0,329.0,2.0,5.0,2.0,4.0,2.5,4689.19686868883,0.0,0.0,33610.0,1,3,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13444.0,1,0,1_0,1_0 +7351,0.0,0.0,45.0,111,85,20,0.0,4021,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2291.4467309460565,3141.3199999999997,0.0,4679.0,4,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,4679.0,1,0,1_0,1_0 +7352,5.0,5.0,65.0,111,74,20,0.0,4022,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1511.8851358984969,2571.92,0.0,64111.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,42740.666666666664,5,0,5,5_0 +7353,4.0,4.0,81.0,300,74,12,0.0,4023,0.0,0.0,99999.0,0.0,0.0,6.0,0.0,2.0,1.5,2565.0167025698447,0.0,0.0,48899.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,32599.333333333332,5,0,5,5_1 +7354,7.0,12.0,41.0,111,52,20,0.0,4024,0.0,400.0,0.0,193.0,1.0,3.0,1.0,2.0,1.3,1074.7029133072758,0.0,0.0,18638.0,1,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,14336.923076923076,2,0,2_1,2_0 +7355,4.0,12.0,44.0,111,43,33,0.0,4027,0.0,1700.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1751.2103819080246,2600.0,0.0,37583.0,1,2,10,8.0,2,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,18791.5,3,0,3_0,3_0 +7356,2.0,14.0,24.0,112,52,60,0.0,4028,0.0,0.0,45.0,0.0,1.0,3.0,1.0,2.0,1.3,1009.0396911919009,0.0,0.0,15870.0,1,3,9,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,12207.692307692307,1,0,1_1,1_0 +7357,0.0,0.0,67.0,111,77,70,0.0,4029,0.0,0.0,0.0,0.0,1.0,1.0,1.0,3.0,1.8,3476.469013663154,0.0,0.0,45620.0,5,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25344.444444444445,4,0,4_0,4_0 +7358,0.0,0.0,42.0,111,56,31,0.0,403,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1966.696244785101,2964.0,0.0,56629.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21780.384615384613,3,0,3_0,3_0 +7359,1.0,1.0,45.0,111,42,30,0.0,4031,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3416.085945818023,2288.0,0.0,53463.0,1,2,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25458.571428571428,4,0,4_0,4_0 +7360,0.0,0.0,58.0,211,75,42,0.0,4034,0.0,0.0,0.0,420.0,0.0,3.0,1.0,2.0,1.5,1032.1089546185328,0.0,0.0,15453.0,5,3,4,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10302.0,1,0,1_0,1_0 +7361,11.0,11.0,53.0,111,21,71,0.0,4035,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2622.461393404583,2600.0,0.0,48913.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,24456.5,4,0,4_0,4_0 +7362,5.0,18.0,52.0,112,31,10,0.0,4037,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2164.4377677132097,1560.0,0.0,97341.0,1,1,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38936.4,5,0,5,5_1 +7363,3.0,3.0,33.0,221,22,41,0.0,4039,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3097.021545869589,3869.3199999999997,0.0,10858.0,1,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,10858.0,1,0,1_1,1_0 +7364,5.0,19.0,65.0,111,74,30,0.0,404,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3102.717612539489,522.6,0.0,25440.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16960.0,2,0,2_0,2_0 +7365,17.0,17.0,39.0,111,45,31,0.0,4040,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2755.0130239340556,3125.2000000000003,0.0,49995.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23807.142857142855,4,0,4_0,4_0 +7366,0.0,0.0,66.0,111,74,20,0.0,4041,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2727.4309834091064,0.0,0.0,76150.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,50766.666666666664,5,0,5,5_0 +7367,7.0,7.0,20.0,111,84,31,0.0,4042,0.0,400.0,0.0,302.0,0.0,1.0,0.0,1.0,1.0,2998.1582258498656,0.0,0.0,11124.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11124.0,1,0,1_1,1_0 +7368,2.0,5.0,69.0,111,74,41,0.0,4043,0.0,100.0,10.0,0.0,0.0,5.0,0.0,2.0,1.5,1949.1285371496758,1586.0,0.0,39486.0,5,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,26324.0,4,0,4_0,4_0 +7369,0.0,1.0,37.0,111,68,41,2.0,4044,0.0,300.0,230.0,0.0,1.0,3.0,2.0,3.0,1.8,966.0148341328868,2340.0,13000.0,22280.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,12377.777777777777,1,0,1_1,1_0 +7370,0.0,0.0,36.0,112,64,71,0.0,4045,0.0,0.0,0.0,609.0,2.0,2.0,1.0,3.0,1.8,2208.0235461954617,0.0,0.0,42206.0,1,3,10,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23447.777777777777,3,0,3_0,3_0 +7371,0.0,0.0,25.0,111,46,50,0.0,4046,0.0,0.0,0.0,390.0,1.0,3.0,0.0,1.0,1.0,1808.0261985340258,0.0,0.0,20370.0,1,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20370.0,3,0,3_0,3_0 +7372,10.0,18.0,41.0,111,52,30,0.0,4047,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2356.220456612101,3302.0,0.0,43748.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20832.38095238095,3,0,3_0,3_0 +7373,8.0,8.0,31.0,112,46,12,0.0,4048,0.0,275.0,99999.0,0.0,2.0,3.0,1.0,3.0,1.8,2344.5680469145004,2886.0,0.0,52074.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28930.0,4,0,4_0,4_0 +7374,11.0,11.0,50.0,400,68,50,0.0,4049,0.0,0.0,0.0,16.0,1.0,3.0,1.0,2.0,1.3,723.4660019735819,0.0,0.0,12926.0,4,3,0,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,9943.076923076922,1,0,1_1,1_0 +7375,0.0,0.0,85.0,211,77,60,0.0,405,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1865.5285249612948,0.0,0.0,29542.0,5,1,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29542.0,4,0,4_0,4_0 +7376,3.0,10.0,58.0,111,56,31,0.0,4050,0.0,300.0,0.0,570.0,1.0,4.0,0.0,2.0,1.5,2724.1497850963256,0.0,0.0,37365.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24910.0,4,0,4_0,4_0 +7377,0.0,0.0,44.0,111,38,20,1.0,4051,0.0,0.0,0.0,1040.0,2.0,3.0,2.0,4.0,2.1,4166.576299423304,0.0,25600.0,47005.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,22383.333333333332,3,0,3_0,3_0 +7378,5.0,5.0,59.0,111,37,30,0.0,4053,0.0,50.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1933.4175295817104,0.0,0.0,114531.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,57265.5,5,0,5,5_0 +7379,9.0,9.0,64.0,111,22,44,0.0,4054,0.0,0.0,190.0,0.0,2.0,5.0,0.0,2.0,1.5,2544.5065104607297,5504.719999999999,0.0,137302.0,1,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,91534.66666666667,5,0,5,5_0 +7380,11.0,11.0,67.0,400,78,70,0.0,4055,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1807.7310449737042,0.0,0.0,27418.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18278.666666666668,2,0,2_0,2_0 +7381,8.0,11.0,19.0,300,67,50,0.0,4057,0.0,0.0,99999.0,220.0,1.0,2.0,0.0,1.0,1.0,3538.962115465625,2600.0,0.0,12845.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,12845.0,1,0,1_0,1_1 +7382,8.0,8.0,64.0,211,78,71,0.0,4058,0.0,120.0,60.0,185.0,0.0,2.0,0.0,1.0,1.0,2473.3250634703954,1300.52,0.0,11274.0,5,3,3,4.0,1,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,11274.0,1,0,1_1,1_0 +7383,3.0,4.0,59.0,111,43,33,0.0,4059,0.0,850.0,0.0,607.0,2.0,3.0,0.0,2.0,1.5,1717.8049978353313,2758.6,0.0,48396.0,1,3,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,32264.0,5,0,5,5_0 +7384,1.0,7.0,83.0,221,72,70,0.0,4060,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2075.3427260981416,0.0,0.0,20573.0,5,1,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13715.333333333334,1,0,1_0,1_0 +7385,14.0,18.0,73.0,112,72,44,0.0,4061,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1836.0447052195088,0.0,0.0,35562.0,5,1,6,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,23708.0,3,0,3_0,3_1 +7386,2.0,2.0,70.0,111,78,50,0.0,4062,0.0,0.0,200.0,0.0,0.0,6.0,0.0,2.0,1.5,1461.8270515057088,1755.0,0.0,45687.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,30458.0,4,0,4_0,4_0 +7387,0.0,0.0,44.0,112,21,44,0.0,4064,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1674.2116389399475,3568.76,0.0,47689.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19075.6,3,0,3_0,3_1 +7388,0.0,0.0,67.0,111,56,50,0.0,4065,0.0,0.0,0.0,460.0,1.0,2.0,0.0,1.0,1.0,2279.0832938666667,0.0,0.0,16085.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16085.0,2,0,2_0,2_0 +7389,4.0,4.0,51.0,111,54,31,0.0,4067,0.0,99999.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1643.2753353177181,5084.5599999999995,0.0,89904.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,44952.0,5,0,5,5_0 +7390,4.0,4.0,28.0,112,43,20,0.0,4068,0.0,120.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3189.670673698681,3640.0,0.0,55992.0,1,2,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,37328.0,5,0,5,5_0 +7391,17.0,17.0,88.0,300,75,71,0.0,407,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2089.673399121863,0.0,0.0,27336.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,18224.0,2,0,2_0,2_1 +7392,2.0,12.0,27.0,111,56,30,0.0,4071,0.0,40.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,6382.86077339925,0.0,0.0,12540.0,3,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,12540.0,1,0,1_0,1_0 +7393,0.0,0.0,40.0,112,68,50,0.0,4074,0.0,0.0,0.0,88.0,1.0,4.0,2.0,3.0,1.8,525.5147654067738,0.0,0.0,17782.0,1,3,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9878.888888888889,1,0,1_1,1_1 +7394,1.0,1.0,70.0,111,74,50,0.0,4075,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2620.315388470391,0.0,0.0,32070.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21380.0,3,0,3_0,3_0 +7395,6.0,9.0,58.0,112,78,44,0.0,4077,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2664.9446227713256,0.0,0.0,3520.0,7,3,9,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,3520.0,1,0,1_0,1_0 +7396,0.0,0.0,45.0,120,56,44,0.0,4078,0.0,0.0,0.0,0.0,3.0,7.0,3.0,5.0,2.8,2176.515793219153,2283.84,0.0,41798.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14927.857142857143,2,0,2_0,2_1 +7397,8.0,8.0,43.0,400,52,43,0.0,4080,0.0,0.0,0.0,134.0,1.0,4.0,2.0,3.0,1.8,587.5518427935092,0.0,0.0,26824.0,1,3,0,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,14902.222222222223,2,0,2_1,2_0 +7398,0.0,12.0,79.0,111,75,50,0.0,4081,0.0,0.0,200.0,0.0,0.0,3.0,0.0,2.0,1.5,2992.5896110641534,5122.52,0.0,65040.0,5,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,43360.0,5,0,5,5_0 +7399,4.0,7.0,43.0,112,52,50,0.0,4082,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2315.842648153034,0.0,0.0,15719.0,2,3,10,4.0,1,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,15719.0,2,0,2_1,2_0 +7400,0.0,0.0,37.0,111,52,20,0.0,4083,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3307.1775585499404,0.0,0.0,30778.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,30778.0,4,0,4_1,4_0 +7401,7.0,7.0,33.0,111,46,50,0.0,4085,0.0,0.0,0.0,270.0,1.0,3.0,1.0,2.0,1.3,4870.502296349686,0.0,0.0,24230.0,4,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,18638.46153846154,2,0,2_1,2_0 +7402,0.0,0.0,57.0,111,78,71,0.0,4086,0.0,0.0,0.0,204.0,1.0,5.0,1.0,2.0,1.5,3231.6632064709665,2080.0,0.0,19782.0,7,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13188.0,1,0,1_1,1_0 +7403,0.0,13.0,67.0,112,75,30,0.0,4087,0.0,0.0,0.0,410.0,0.0,1.0,0.0,1.0,1.0,3370.584767172001,0.0,0.0,20798.0,5,3,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20798.0,3,0,3_0,3_1 +7404,4.0,6.0,56.0,400,22,42,0.0,4088,0.0,0.0,100.0,0.0,2.0,5.0,1.0,3.0,2.0,3037.3306675545464,0.0,0.0,36255.0,1,1,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,18127.5,2,0,2_0,2_1 +7405,1.0,3.0,53.0,111,56,50,0.0,4089,0.0,40.0,0.0,0.0,3.0,4.0,3.0,4.0,2.3,310.67956052370766,0.0,0.0,40736.0,1,3,7,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,17711.304347826088,2,0,2_1,2_0 +7406,24.0,29.0,22.0,120,63,50,0.0,409,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2189.942072672107,3120.52,0.0,32386.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,17992.222222222223,2,0,2_1,2_1 +7407,1.0,10.0,33.0,120,46,30,2.0,4092,0.0,0.0,199998.0,0.0,2.0,4.0,2.0,4.0,2.1,2229.402227096735,5368.48,3000.0,54146.0,1,2,0,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,25783.809523809523,4,0,4_0,4_0 +7408,12.0,12.0,23.0,111,47,31,0.0,4093,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3974.441086418028,3113.76,0.0,17398.0,1,2,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17398.0,2,0,2_0,2_0 +7409,16.0,16.0,50.0,300,52,50,0.0,4094,0.0,0.0,0.0,344.0,1.0,2.0,0.0,1.0,1.0,4026.4456529037216,1050.3999999999999,0.0,22672.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,22672.0,3,0,3_1,3_1 +7410,19.0,19.0,41.0,111,54,42,0.0,4095,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1962.2566979680273,0.0,0.0,8660.0,4,4,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,6661.538461538461,1,0,1_0,1_0 +7411,3.0,3.0,52.0,111,85,50,0.0,4096,0.0,100.0,0.0,426.0,1.0,4.0,2.0,4.0,2.5,2076.3559352129896,2464.7999999999997,0.0,25331.0,7,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,10132.4,1,0,1_0,1_0 +7412,7.0,7.0,70.0,111,74,60,0.0,4098,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1729.6089072396455,0.0,0.0,39092.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26061.333333333332,4,0,4_0,4_0 +7413,0.0,0.0,51.0,120,62,50,0.0,4099,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,622.9428096354969,2819.96,0.0,18341.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14108.461538461537,2,0,2_1,2_1 +7414,2.0,2.0,52.0,120,47,71,0.0,410,180.0,400.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1662.7718168836143,2080.52,0.0,34050.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,13096.153846153846,1,0,1_0,1_1 +7415,1.0,10.0,71.0,112,77,70,2.0,4100,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1984.0654573082452,1820.0,1000.0,27726.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27726.0,4,0,4_0,4_1 +7416,9.0,11.0,48.0,111,48,20,0.0,4101,0.0,0.0,150.0,0.0,1.0,5.0,0.0,1.0,1.0,2271.270447935889,0.0,0.0,26002.0,1,2,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,26002.0,4,0,4_0,4_0 +7417,0.0,0.0,80.0,111,74,60,0.0,4102,0.0,0.0,0.0,680.0,0.0,3.0,0.0,2.0,1.5,2010.5002947458918,1664.0,0.0,60884.0,5,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40589.333333333336,5,0,5,5_0 +7418,0.0,14.0,32.0,112,62,43,0.0,4105,0.0,560.0,0.0,0.0,2.0,4.0,4.0,6.0,2.7,1410.387125360493,0.0,0.0,43391.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,16070.740740740739,2,0,2_1,2_1 +7419,5.0,11.0,34.0,111,67,43,0.0,4106,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1224.8010939164874,2372.24,0.0,36214.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,17244.761904761905,2,0,2_0,2_0 +7420,1.0,1.0,23.0,111,55,30,1.0,4107,0.0,270.0,550.0,82.0,1.0,2.0,0.0,1.0,1.0,4065.927001625195,0.0,21100.0,24173.0,1,3,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,24173.0,4,0,4_1,4_0 +7421,1.0,7.0,34.0,111,38,20,2.0,4108,0.0,400.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3739.8976673007387,0.0,5000.0,42019.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,42019.0,5,0,5,5_0 +7422,1.0,9.0,55.0,111,22,31,2.0,411,0.0,0.0,120.0,650.0,1.0,2.0,0.0,1.0,1.0,3359.401476856956,2017.6,600.0,19307.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19307.0,3,0,3_0,3_0 +7423,11.0,21.0,65.0,111,21,71,0.0,4110,0.0,280.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1385.2447434172764,0.0,0.0,43454.0,1,1,5,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,28969.333333333332,4,0,4_0,4_0 +7424,5.0,9.0,29.0,111,85,43,0.0,4111,0.0,0.0,120.0,496.0,1.0,3.0,2.0,4.0,2.1,1848.3852187811174,2600.0,0.0,38001.0,4,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,18095.714285714286,2,0,2_0,2_0 +7425,0.0,0.0,29.0,112,56,50,0.0,4112,0.0,0.0,0.0,302.0,1.0,3.0,2.0,3.0,1.6,240.07928954246051,0.0,0.0,17286.0,1,3,9,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10803.75,1,0,1_1,1_0 +7426,0.0,7.0,53.0,111,52,50,0.0,4114,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,817.7776132493213,2600.0,0.0,21639.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14426.0,2,0,2_1,2_0 +7427,1.0,15.0,32.0,111,21,50,2.0,4115,0.0,400.0,0.0,129.0,1.0,3.0,0.0,1.0,1.0,2922.8058773933753,1154.3999999999999,1800.0,24040.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,24040.0,4,0,4_1,4_0 +7428,1.0,15.0,60.0,300,37,50,0.0,4116,0.0,0.0,500.0,0.0,2.0,4.0,1.0,3.0,2.0,1879.5812006138638,0.0,0.0,42668.0,1,3,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,21334.0,3,0,3_0,3_1 +7429,1.0,8.0,35.0,111,45,31,2.0,4117,0.0,4.0,0.0,528.0,2.0,4.0,2.0,4.0,2.1,1334.161507375368,1560.0,4000.0,36310.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,17290.47619047619,2,0,2_0,2_0 +7430,5.0,5.0,45.0,211,85,31,0.0,4118,0.0,0.0,550.0,0.0,0.0,3.0,0.0,3.0,2.0,2627.939491678457,0.0,0.0,12242.0,4,3,2,3.0,5,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,6121.0,1,0,1_1,1_0 +7431,6.0,11.0,20.0,111,84,30,0.0,412,0.0,99999.0,0.0,179.0,0.0,2.0,0.0,1.0,1.0,2806.461357663849,0.0,0.0,3916.0,3,3,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,1,0.0,3.0,3916.0,1,0,1_1,1_0 +7432,5.0,5.0,31.0,111,46,41,0.0,4120,0.0,450.0,0.0,37.0,2.0,3.0,2.0,4.0,2.1,643.4811504307319,6240.0,0.0,23974.0,1,3,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,1,0.0,2.0,11416.190476190475,1,0,1_1,1_0 +7433,1.0,1.0,22.0,211,55,50,1.0,4121,0.0,200.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2228.1478433776083,0.0,19300.0,14596.0,4,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,8108.888888888889,1,0,1_1,1_0 +7434,7.0,7.0,53.0,211,64,50,0.0,4122,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1576.3467874993764,0.0,0.0,44846.0,1,1,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22423.0,3,0,3_0,3_0 +7435,8.0,9.0,40.0,111,53,31,0.0,4123,0.0,500.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,593.6144725648506,0.0,0.0,25721.0,1,2,8,6.0,2,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,16075.625,2,0,2_0,2_0 +7436,0.0,19.0,43.0,211,54,42,0.0,4124,0.0,0.0,75.0,0.0,2.0,6.0,2.0,4.0,2.3,2097.533972768489,1560.0,0.0,39341.0,1,2,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17104.782608695652,2,0,2_0,2_0 +7437,4.0,5.0,39.0,111,54,31,0.0,4125,0.0,600.0,0.0,0.0,1.0,5.0,5.0,7.0,3.2,2310.2252761969858,0.0,0.0,24492.0,4,3,6,4.0,4,3.0,0.0,1.0,0,0,1,0,0,1,0.0,3.0,7653.75,1,0,1_1,1_0 +7438,5.0,5.0,32.0,111,47,31,0.0,4126,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2548.1207705732595,0.0,0.0,26321.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26321.0,4,0,4_0,4_0 +7439,0.0,3.0,59.0,111,46,42,2.0,413,0.0,0.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,532.2964788129909,4316.0,7490.0,54720.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,36480.0,5,0,5,5_0 +7440,1.0,5.0,63.0,211,74,30,2.0,4130,0.0,200.0,0.0,0.0,0.0,6.0,1.0,3.0,2.0,2427.7829540837656,2044.64,12310.0,36731.0,5,2,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18365.5,2,0,2_0,2_0 +7441,0.0,0.0,46.0,400,64,50,0.0,4131,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2163.804784876041,0.0,0.0,12066.0,1,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12066.0,1,0,1_1,1_1 +7442,15.0,18.0,37.0,111,33,20,0.0,4132,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2532.3285893021466,0.0,0.0,30555.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,30555.0,4,0,4_0,4_0 +7443,4.0,17.0,69.0,112,78,71,0.0,4133,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2493.2869054375137,0.0,0.0,33212.0,5,1,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22141.333333333332,3,0,3_0,3_1 +7444,7.0,7.0,53.0,111,63,50,0.0,4134,0.0,30.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,864.0416600645166,0.0,0.0,11900.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,7933.333333333333,1,0,1_1,1_0 +7445,2.0,5.0,51.0,221,85,71,0.0,4135,0.0,600.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,3265.2244001342237,0.0,0.0,27980.0,5,1,1,2.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18653.333333333332,2,0,2_0,2_0 +7446,0.0,0.0,38.0,111,38,20,0.0,4136,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4313.433083300651,0.0,0.0,54004.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,54004.0,5,0,5,5_0 +7447,0.0,0.0,86.0,112,72,71,0.0,4137,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2110.9254181903343,0.0,0.0,11681.0,5,1,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11681.0,1,0,1_0,1_0 +7448,0.0,12.0,70.0,111,78,44,2.0,4138,0.0,0.0,80.0,0.0,0.0,3.0,0.0,2.0,1.5,1565.6048488764827,2119.0,2300.0,24279.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,16186.0,2,0,2_0,2_0 +7449,3.0,15.0,36.0,111,56,71,0.0,414,0.0,660.0,0.0,170.0,1.0,3.0,2.0,3.0,1.6,2690.7414414217365,0.0,0.0,19859.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,12411.875,1,0,1_1,1_0 +7450,1.0,1.0,71.0,111,74,50,1.0,4140,0.0,500.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1315.021011800363,0.0,17000.0,33979.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22652.666666666668,3,0,3_0,3_0 +7451,5.0,17.0,77.0,211,78,50,0.0,4141,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1049.7382542268635,0.0,0.0,30930.0,5,1,3,3.0,3,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,20620.0,3,0,3_0,3_0 +7452,0.0,0.0,72.0,111,75,50,0.0,4142,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2381.724428492008,0.0,0.0,33172.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22114.666666666668,3,0,3_0,3_0 +7453,3.0,9.0,37.0,300,55,31,0.0,4143,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1879.0048961182363,1768.52,0.0,21610.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16623.076923076922,2,0,2_0,2_1 +7454,10.0,13.0,58.0,112,52,60,0.0,4144,0.0,440.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1525.9777147996128,2579.72,0.0,73690.0,1,1,10,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,49126.666666666664,5,0,5,5_0 +7455,0.0,0.0,33.0,111,56,50,0.0,4145,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,738.9738825657037,0.0,0.0,27088.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14256.842105263158,2,0,2_1,2_0 +7456,9.0,11.0,63.0,111,78,71,0.0,4146,0.0,0.0,20.0,265.0,0.0,1.0,0.0,1.0,1.0,5435.744583281828,0.0,0.0,16113.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,16113.0,2,0,2_0,2_0 +7457,4.0,6.0,76.0,300,86,60,0.0,4147,0.0,0.0,320.0,0.0,0.0,4.0,0.0,1.0,1.0,1908.7123375647823,2839.2000000000003,0.0,9811.0,5,1,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,9811.0,1,0,1_0,1_1 +7458,2.0,9.0,59.0,111,37,60,0.0,4148,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1730.8168473321903,2080.0,0.0,57447.0,1,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,57447.0,5,0,5,5_0 +7459,6.0,6.0,61.0,111,43,33,0.0,4149,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1805.719143068866,2600.0,0.0,39465.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,39465.0,5,0,5,5_0 +7460,5.0,5.0,47.0,111,37,20,0.0,415,0.0,80.0,140.0,0.0,2.0,3.0,2.0,4.0,2.3,2711.538219491115,0.0,0.0,95203.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,41392.608695652176,5,0,5,5_0 +7461,1.0,6.0,65.0,120,78,70,2.0,4150,0.0,350.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1604.4007763186275,2080.0,8250.0,26938.0,5,1,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17958.666666666668,2,0,2_0,2_0 +7462,6.0,8.0,54.0,111,46,30,0.0,4151,0.0,0.0,28.0,413.0,2.0,3.0,1.0,3.0,1.8,1034.122140518505,3432.0,0.0,34860.0,1,3,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,19366.666666666668,3,0,3_0,3_0 +7463,0.0,0.0,38.0,112,37,0,0.0,4152,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2557.4656152166935,0.0,0.0,91220.0,1,3,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,50677.777777777774,5,0,5,5_0 +7464,6.0,6.0,66.0,112,75,50,0.0,4153,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1731.6707421701842,2600.0,0.0,35143.0,5,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,23428.666666666668,3,0,3_0,3_0 +7465,2.0,2.0,75.0,112,75,31,0.0,4157,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2250.476906907478,0.0,0.0,46575.0,5,1,4,0.0,1,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,46575.0,5,0,5,5_1 +7466,0.0,11.0,30.0,112,13,31,0.0,4158,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2636.7965171206524,5096.0,0.0,67954.0,1,3,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,37752.22222222222,5,0,5,5_1 +7467,3.0,3.0,67.0,111,78,70,0.0,4159,0.0,260.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2349.5297593007913,0.0,0.0,39611.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,26407.333333333332,4,0,4_0,4_0 +7468,0.0,0.0,67.0,112,75,50,0.0,4160,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1747.8585916405639,1664.52,0.0,30000.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20000.0,3,0,3_0,3_1 +7469,3.0,3.0,86.0,111,74,70,0.0,4161,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2512.375971492033,0.0,0.0,35172.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,35172.0,5,0,5,5_0 +7470,8.0,8.0,46.0,111,37,20,0.0,4162,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,1932.371960803868,3978.0,0.0,150140.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,65278.26086956522,5,0,5,5_0 +7471,3.0,14.0,50.0,112,54,50,0.0,4163,0.0,0.0,300.0,574.0,1.0,5.0,2.0,3.0,2.0,643.5615699158533,5365.880000000001,0.0,32140.0,1,3,10,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,16070.0,2,0,2_1,2_0 +7472,6.0,10.0,44.0,111,52,50,0.0,4167,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,2.0,814.9290672001698,202.79999999999998,0.0,28618.0,1,1,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,14309.0,2,0,2_0,2_0 +7473,0.0,0.0,48.0,112,38,50,0.0,4169,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1023.9935820337279,2991.04,0.0,74578.0,1,1,10,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,32425.21739130435,5,0,5,5_0 +7474,3.0,4.0,49.0,111,33,20,0.0,417,0.0,139.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1207.756046777983,0.0,0.0,127295.0,1,1,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,63647.5,5,0,5,5_0 +7475,13.0,14.0,83.0,400,71,71,0.0,4171,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1803.7411952405769,2808.0,0.0,31170.0,5,1,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15585.0,2,0,2_0,2_0 +7476,2.0,2.0,43.0,111,46,31,0.0,4173,0.0,0.0,0.0,729.0,1.0,3.0,1.0,2.0,1.3,1099.5245999143215,0.0,0.0,26812.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,20624.615384615383,3,0,3_0,3_0 +7477,3.0,3.0,70.0,111,75,33,0.0,4174,0.0,99999.0,0.0,749.0,0.0,5.0,0.0,1.0,1.0,2655.0240315558226,0.0,0.0,87570.0,5,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,87570.0,5,0,5,5_0 +7478,0.0,0.0,65.0,112,74,31,0.0,4176,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3425.813523497299,2090.92,0.0,132826.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,88550.66666666667,5,0,5,5_1 +7479,5.0,5.0,65.0,112,75,60,0.0,4177,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2168.0352403583283,0.0,0.0,14990.0,5,3,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,14990.0,2,0,2_0,2_1 +7480,7.0,11.0,48.0,300,62,42,0.0,4179,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2312.585245417171,2860.0,0.0,34257.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16312.857142857141,2,0,2_0,2_1 +7481,0.0,0.0,45.0,111,43,33,0.0,418,0.0,0.0,0.0,690.0,1.0,3.0,1.0,2.0,1.3,538.4337527688842,1040.0,0.0,26808.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20621.53846153846,3,0,3_0,3_0 +7482,0.0,0.0,41.0,111,52,50,0.0,4180,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1145.184486848801,2600.0,0.0,37346.0,1,3,4,4.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24897.333333333332,4,0,4_0,4_0 +7483,14.0,14.0,60.0,120,31,30,0.0,4181,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2654.7824886802546,0.0,0.0,45640.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,30426.666666666668,4,0,4_0,4_1 +7484,1.0,1.0,50.0,111,43,30,2.0,4182,0.0,0.0,20.0,0.0,1.0,3.0,1.0,2.0,1.5,1475.1639451784222,0.0,25000.0,35177.0,1,2,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23451.333333333332,3,0,3_0,3_0 +7485,5.0,5.0,45.0,112,12,50,0.0,4185,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2301.5625851044856,0.0,0.0,38576.0,1,1,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19288.0,3,0,3_0,3_1 +7486,15.0,19.0,44.0,111,85,71,0.0,4186,0.0,0.0,0.0,16.0,0.0,5.0,5.0,7.0,3.6,2021.4126730923385,1040.0,0.0,31958.0,6,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,8877.222222222223,1,0,1_1,1_0 +7487,17.0,17.0,34.0,120,37,31,0.0,4187,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3586.644858026279,1716.0,0.0,59540.0,1,2,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,28352.38095238095,4,0,4_0,4_1 +7488,5.0,13.0,53.0,111,42,41,0.0,4188,0.0,0.0,0.0,365.0,1.0,3.0,0.0,1.0,1.0,2807.013814025293,0.0,0.0,18382.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18382.0,2,0,2_0,2_0 +7489,0.0,0.0,24.0,111,62,30,0.0,4189,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2094.5107793699376,2860.0,0.0,35291.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,35291.0,5,0,5,5_0 +7490,7.0,7.0,52.0,112,42,30,0.0,419,0.0,0.0,50.0,0.0,2.0,5.0,1.0,2.0,1.5,2495.6699214127657,1778.4,0.0,41673.0,1,2,10,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,27782.0,4,0,4_0,4_0 +7491,4.0,21.0,90.0,211,78,71,0.0,4191,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2219.9191870975797,0.0,0.0,9634.0,6,4,2,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,9634.0,1,0,1_0,1_0 +7492,0.0,0.0,31.0,111,68,50,0.0,4192,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,4122.36712924064,137.79999999999998,0.0,13637.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,6493.809523809524,1,0,1_1,1_0 +7493,2.0,6.0,78.0,112,71,71,0.0,4193,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1955.385644126403,0.0,0.0,21486.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14324.0,2,0,2_0,2_1 +7494,2.0,10.0,69.0,111,75,30,0.0,4196,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1830.1716353797194,0.0,0.0,43591.0,5,4,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,43591.0,5,0,5,5_0 +7495,0.0,0.0,85.0,111,75,60,0.0,4198,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3819.2797611886185,0.0,0.0,37784.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,37784.0,5,0,5,5_0 +7496,0.0,0.0,38.0,112,46,50,0.0,4199,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,125.73581680293124,1560.0,0.0,36158.0,1,3,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,17218.095238095237,2,0,2_1,2_1 +7497,0.0,0.0,58.0,120,75,50,0.0,420,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2275.8584326317305,2474.16,0.0,47947.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31964.666666666668,5,0,5,5_1 +7498,10.0,10.0,60.0,111,42,41,0.0,4200,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2146.5879571003243,0.0,0.0,49171.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,32780.666666666664,5,0,5,5_0 +7499,3.0,8.0,35.0,111,52,50,0.0,4201,0.0,0.0,500.0,0.0,1.0,3.0,2.0,3.0,1.6,388.8318879957137,1560.0,0.0,16154.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,10096.25,1,0,1_1,1_0 +7500,0.0,0.0,63.0,111,33,20,0.0,4203,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2613.4174000751154,0.0,0.0,189722.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,126481.33333333333,5,0,5,5_0 +7501,8.0,8.0,57.0,111,63,50,0.0,4204,0.0,365.0,0.0,0.0,2.0,5.0,1.0,2.0,1.5,2397.793862892672,4738.24,0.0,31216.0,1,1,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20810.666666666668,3,0,3_0,3_0 +7502,0.0,8.0,28.0,111,85,50,0.0,4205,0.0,0.0,0.0,503.0,1.0,3.0,1.0,3.0,1.8,2134.8857662885243,1924.0,0.0,30280.0,4,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16822.222222222223,2,0,2_0,2_0 +7503,3.0,3.0,37.0,111,54,43,0.0,4206,0.0,120.0,0.0,394.0,1.0,3.0,1.0,2.0,1.3,523.4735779412754,0.0,0.0,22392.0,4,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,17224.615384615383,2,0,2_1,2_0 +7504,4.0,4.0,44.0,111,22,50,0.0,4209,0.0,0.0,50.0,0.0,1.0,0.0,0.0,1.0,1.0,3597.6981952606475,0.0,0.0,6864.0,1,4,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,6864.0,1,0,1_0,1_0 +7505,10.0,12.0,45.0,111,62,50,0.0,421,0.0,600.0,0.0,650.0,1.0,4.0,2.0,3.0,2.0,2551.9479853836665,0.0,0.0,29860.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14930.0,2,0,2_0,2_0 +7506,2.0,2.0,31.0,111,63,43,0.0,4210,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,4261.272594238786,1040.0,0.0,16156.0,4,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8975.555555555555,1,0,1_1,1_0 +7507,6.0,6.0,67.0,111,74,50,0.0,4211,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2281.88325079366,0.0,0.0,45048.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30032.0,4,0,4_0,4_0 +7508,5.0,5.0,58.0,112,52,60,0.0,4212,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1045.011042890705,0.0,0.0,42367.0,1,1,10,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28244.666666666668,4,0,4_0,4_0 +7509,0.0,0.0,63.0,111,77,71,0.0,4213,0.0,0.0,0.0,114.0,0.0,3.0,0.0,2.0,1.5,3348.672344184139,2080.0,0.0,16718.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11145.333333333334,1,0,1_1,1_0 +7510,0.0,0.0,69.0,111,74,41,0.0,4214,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2436.4482556128005,0.0,0.0,32411.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21607.333333333332,3,0,3_0,3_0 +7511,5.0,11.0,62.0,111,33,20,0.0,4215,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2263.0435588113855,3640.0,0.0,101211.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,67474.0,5,0,5,5_0 +7512,21.0,21.0,67.0,112,74,12,0.0,4216,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1586.0293636886656,2990.52,0.0,112561.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,75040.66666666667,5,0,5,5_0 +7513,0.0,0.0,78.0,300,78,71,0.0,4217,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3068.1122268822137,3090.36,0.0,18960.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18960.0,3,0,3_0,3_1 +7514,8.0,16.0,61.0,112,75,50,0.0,4218,0.0,0.0,180.0,0.0,0.0,5.0,0.0,2.0,1.5,2720.587759335571,3120.0,0.0,33065.0,5,1,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22043.333333333332,3,0,3_0,3_0 +7515,5.0,11.0,27.0,111,54,30,0.0,4219,0.0,0.0,99999.0,514.0,2.0,2.0,0.0,2.0,1.5,3422.3316119492883,1144.52,0.0,34877.0,1,3,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,23251.333333333332,3,0,3_0,3_0 +7516,2.0,12.0,46.0,111,37,20,0.0,422,0.0,99999.0,0.0,2600.0,1.0,4.0,1.0,3.0,1.8,1865.14206138129,0.0,0.0,107944.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,59968.88888888889,5,0,5,5_0 +7517,0.0,0.0,60.0,111,75,60,0.0,4220,0.0,0.0,0.0,0.0,1.0,6.0,0.0,3.0,2.0,4368.770255389698,0.0,0.0,51493.0,5,1,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25746.5,4,0,4_0,4_0 +7518,23.0,23.0,51.0,111,67,71,0.0,4221,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1485.2217432690288,0.0,0.0,11711.0,4,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11711.0,1,0,1_0,1_0 +7519,9.0,9.0,62.0,111,72,50,0.0,4223,0.0,0.0,350.0,0.0,0.0,6.0,0.0,2.0,1.5,1655.9611592289677,2680.08,0.0,74773.0,5,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,49848.666666666664,5,0,5,5_0 +7520,0.0,21.0,40.0,111,54,31,0.0,4224,0.0,110.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1073.6505972679681,2625.48,0.0,23868.0,1,2,6,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,14917.5,2,0,2_1,2_0 +7521,1.0,3.0,76.0,111,75,50,2.0,4225,0.0,700.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5147.5336618724405,0.0,15150.0,13787.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,13787.0,1,0,1_1,1_0 +7522,0.0,15.0,66.0,111,65,50,0.0,4226,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1646.2688193925362,5200.0,0.0,85630.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,57086.666666666664,5,0,5,5_0 +7523,3.0,11.0,47.0,112,38,31,0.0,4227,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,3062.4675277282363,3685.7599999999998,0.0,37560.0,1,2,8,0.0,4,3.0,0.0,0.0,1,0,0,0,0,1,2.0,1.0,15650.0,2,0,2_1,2_1 +7524,6.0,6.0,69.0,111,86,10,0.0,423,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,2.0,1.5,1670.1927442105118,0.0,0.0,31720.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21146.666666666668,3,0,3_0,3_0 +7525,1.0,1.0,44.0,112,46,71,1.0,4230,0.0,30.0,0.0,446.0,1.0,3.0,2.0,4.0,2.3,1820.5206719550497,0.0,18200.0,38128.0,1,3,9,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16577.391304347828,2,0,2_0,2_0 +7526,10.0,12.0,59.0,111,52,60,0.0,4231,0.0,120.0,0.0,402.0,1.0,3.0,0.0,1.0,1.0,1849.5556016093449,1040.52,0.0,15810.0,1,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,15810.0,2,0,2_0,2_0 +7527,5.0,5.0,43.0,400,69,71,0.0,4233,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1705.2321542341172,0.0,0.0,27474.0,1,2,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15263.333333333332,2,0,2_0,2_0 +7528,0.0,0.0,54.0,111,43,33,0.0,4234,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1004.0697842366106,0.0,0.0,30070.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20046.666666666668,3,0,3_0,3_0 +7529,0.0,0.0,49.0,111,37,20,0.0,4235,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1915.5628975648215,3713.32,0.0,114681.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40957.5,5,0,5,5_0 +7530,3.0,7.0,84.0,300,72,70,0.0,4236,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2942.1955038422916,0.0,0.0,22548.0,5,1,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,22548.0,3,0,3_0,3_1 +7531,2.0,2.0,42.0,112,62,42,0.0,4237,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1068.0258196171856,3952.0,0.0,26357.0,1,3,8,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,14642.777777777777,2,0,2_1,2_1 +7532,10.0,10.0,41.0,112,54,42,0.0,4238,0.0,0.0,205.0,0.0,1.0,3.0,1.0,2.0,1.5,517.923833303058,0.0,0.0,25635.0,1,3,8,2.0,2,3.0,0.0,0.0,0,1,0,0,0,1,2.0,1.0,17090.0,2,0,2_1,2_0 +7533,7.0,7.0,46.0,111,56,30,0.0,424,0.0,0.0,0.0,390.0,2.0,3.0,2.0,4.0,2.3,1253.1384297001302,0.0,0.0,37300.0,1,3,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16217.391304347828,2,0,2_0,2_0 +7534,1.0,7.0,59.0,111,38,30,2.0,4240,0.0,500.0,0.0,1953.0,2.0,3.0,1.0,2.0,1.5,2820.2976134859346,0.0,9300.0,110358.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,73572.0,5,0,5,5_0 +7535,0.0,0.0,52.0,300,63,71,0.0,4245,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2065.6836922370144,0.0,0.0,33370.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16685.0,2,0,2_0,2_0 +7536,1.0,1.0,72.0,111,71,70,0.0,4247,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3126.885692641262,0.0,0.0,28382.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18921.333333333332,3,0,3_0,3_0 +7537,3.0,3.0,74.0,400,75,60,0.0,4248,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1737.5905446770103,0.0,0.0,30346.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,20230.666666666668,3,0,3_0,3_0 +7538,0.0,0.0,66.0,111,77,71,0.0,4249,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2998.688962247797,0.0,0.0,18366.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18366.0,2,0,2_0,2_0 +7539,0.0,0.0,72.0,112,75,60,0.0,425,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2256.3516645365894,3121.04,0.0,21920.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21920.0,3,0,3_0,3_1 +7540,13.0,14.0,78.0,120,78,70,0.0,4251,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2462.427648792062,2280.72,0.0,26500.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17666.666666666668,2,0,2_0,2_1 +7541,1.0,13.0,46.0,112,12,44,2.0,4252,0.0,160.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2292.667006769657,0.0,1900.0,23638.0,1,1,9,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23638.0,3,0,3_0,3_0 +7542,3.0,3.0,48.0,111,65,50,0.0,4253,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2113.5506133444887,1560.0,0.0,31458.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20972.0,3,0,3_0,3_0 +7543,3.0,12.0,80.0,112,74,50,0.0,4254,0.0,280.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5092.66250096308,3047.2000000000003,0.0,29050.0,5,1,8,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29050.0,4,0,4_0,4_1 +7544,2.0,3.0,63.0,111,75,33,0.0,4257,0.0,550.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2539.4945010265806,0.0,0.0,48185.0,5,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,32123.333333333332,5,0,5,5_0 +7545,2.0,19.0,40.0,111,12,31,0.0,4258,0.0,290.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,2034.022570122535,0.0,0.0,30670.0,1,2,6,4.0,4,4.0,0.0,1.0,0,0,1,0,0,1,0.0,4.0,11796.153846153846,1,0,1_1,1_0 +7546,13.0,13.0,54.0,111,47,50,0.0,4259,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2020.5864135749562,0.0,0.0,55601.0,1,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,30889.444444444445,4,0,4_0,4_0 +7547,9.0,9.0,57.0,111,37,31,0.0,426,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2101.037445157362,2782.0,0.0,97520.0,1,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,65013.333333333336,5,0,5,5_0 +7548,2.0,14.0,37.0,111,53,31,0.0,4260,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.3,2297.2315913598854,4668.04,0.0,28652.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,12457.391304347828,1,0,1_0,1_0 +7549,7.0,9.0,44.0,112,55,50,0.0,4261,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,3141.6190880712584,0.0,0.0,41874.0,1,1,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16105.384615384615,2,0,2_0,2_0 +7550,1.0,3.0,42.0,111,62,50,2.0,4262,0.0,200.0,12.0,0.0,2.0,6.0,2.0,4.0,2.3,1448.147764560541,2600.0,15400.0,36988.0,1,3,7,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,16081.739130434784,2,0,2_0,2_0 +7551,2.0,2.0,62.0,111,74,60,0.0,4263,0.0,80.0,300.0,410.0,0.0,3.0,0.0,2.0,1.5,2849.859645709215,0.0,0.0,30254.0,5,3,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,20169.333333333332,3,0,3_0,3_0 +7552,6.0,8.0,78.0,111,75,44,0.0,4264,0.0,200.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2082.291383034007,1569.36,0.0,10530.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,10530.0,1,0,1_0,1_0 +7553,4.0,4.0,55.0,112,21,50,0.0,4268,0.0,20.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2702.369899838458,4736.16,0.0,36194.0,1,1,10,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,24129.333333333332,4,0,4_0,4_0 +7554,3.0,9.0,35.0,111,52,71,0.0,4269,0.0,350.0,0.0,505.0,1.0,3.0,3.0,4.0,1.9,999.5394085223622,0.0,0.0,15550.0,4,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,8184.21052631579,1,0,1_0,1_0 +7555,10.0,20.0,67.0,221,78,70,0.0,4271,0.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,2.0,4885.3125186984535,19448.0,0.0,49852.0,5,4,1,1.0,5,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24926.0,4,0,4_0,4_0 +7556,20.0,20.0,32.0,112,56,41,0.0,4272,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2852.473151374279,3905.2000000000003,0.0,29686.0,1,2,8,0.0,4,4.0,0.0,0.0,1,0,0,0,0,1,1.0,3.0,14136.190476190475,2,0,2_1,2_1 +7557,3.0,3.0,79.0,300,71,70,0.0,4273,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1913.0456065138574,0.0,0.0,11726.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,11726.0,1,0,1_0,1_1 +7558,2.0,5.0,76.0,111,77,71,0.0,4275,0.0,0.0,0.0,474.0,0.0,3.0,0.0,1.0,1.0,2475.5181343389454,0.0,0.0,11320.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11320.0,1,0,1_1,1_0 +7559,0.0,6.0,24.0,111,84,41,2.0,4276,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2480.8213386323523,0.0,7500.0,1034.0,3,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,689.3333333333334,1,0,1_0,1_0 +7560,6.0,8.0,70.0,112,75,41,0.0,4277,0.0,120.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1737.7881808754375,1977.0400000000002,0.0,24670.0,5,1,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24670.0,4,0,4_0,4_1 +7561,0.0,16.0,52.0,300,52,50,0.0,4278,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1610.9269677813945,0.0,0.0,19249.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19249.0,3,0,3_0,3_1 +7562,0.0,0.0,33.0,112,85,71,0.0,4279,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,411.5342578507684,0.0,0.0,15858.0,6,3,6,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,9911.25,1,0,1_1,1_1 +7563,9.0,12.0,53.0,111,77,50,0.0,428,0.0,0.0,150.0,327.0,0.0,4.0,1.0,2.0,1.3,714.6311572356333,0.0,0.0,13890.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,10684.615384615385,1,0,1_0,1_0 +7564,12.0,12.0,27.0,111,85,71,0.0,4280,0.0,99999.0,0.0,72.0,0.0,3.0,2.0,3.0,1.6,1248.0310580378045,0.0,0.0,17636.0,6,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11022.5,1,0,1_1,1_0 +7565,5.0,5.0,36.0,111,46,42,0.0,4281,0.0,0.0,0.0,94.0,2.0,4.0,2.0,3.0,1.8,1230.2862410200355,2173.6,0.0,24198.0,1,3,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,13443.333333333332,1,0,1_1,1_0 +7566,6.0,13.0,77.0,112,74,50,0.0,4283,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3038.802622755767,0.0,0.0,19780.0,5,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19780.0,3,0,3_0,3_1 +7567,1.0,1.0,25.0,300,62,43,1.0,4285,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,256.0995404585488,0.0,18900.0,37331.0,1,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24887.333333333332,4,0,4_0,4_1 +7568,2.0,5.0,66.0,211,74,50,0.0,4286,0.0,0.0,45.0,0.0,0.0,5.0,0.0,2.0,1.5,1631.6638885594755,0.0,0.0,50814.0,5,1,3,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,33876.0,5,0,5,5_0 +7569,0.0,0.0,49.0,120,46,31,0.0,4287,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1861.7768504713758,3246.88,0.0,96976.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,34634.28571428572,5,0,5,5_1 +7570,4.0,19.0,64.0,112,37,50,0.0,4288,0.0,0.0,0.0,415.0,1.0,6.0,0.0,2.0,1.5,1648.7805749597912,2269.28,0.0,43230.0,5,3,8,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28820.0,4,0,4_0,4_0 +7571,0.0,0.0,89.0,111,74,12,0.0,4289,0.0,0.0,0.0,0.0,0.0,10.0,0.0,1.0,1.0,1925.6972787954353,0.0,0.0,49110.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,49110.0,5,0,5,5_0 +7572,2.0,2.0,36.0,111,53,50,0.0,429,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2026.1800314840123,0.0,0.0,46377.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,19323.75,3,0,3_1,3_0 +7573,9.0,9.0,46.0,111,37,30,0.0,4290,0.0,50.0,0.0,0.0,2.0,4.0,3.0,5.0,3.0,993.3324480606309,0.0,0.0,112796.0,1,4,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,37598.666666666664,5,0,5,5_0 +7574,5.0,5.0,42.0,111,38,12,0.0,4291,0.0,50.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3364.7553294206723,0.0,0.0,120724.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,57487.619047619046,5,0,5,5_0 +7575,4.0,6.0,63.0,112,75,50,0.0,4294,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2127.1877303016795,5928.0,0.0,33048.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22032.0,3,0,3_0,3_1 +7576,6.0,6.0,82.0,400,78,70,0.0,4295,0.0,0.0,0.0,447.0,0.0,5.0,0.0,2.0,1.5,2009.7390903700102,0.0,0.0,18967.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12644.666666666666,1,0,1_0,1_1 +7577,1.0,1.0,50.0,111,21,71,0.0,4296,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,2985.008485122595,0.0,0.0,42889.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,17155.6,2,0,2_0,2_0 +7578,0.0,0.0,42.0,111,56,41,0.0,4298,0.0,0.0,0.0,88.0,1.0,2.0,0.0,1.0,1.0,2862.9143735200114,0.0,0.0,15952.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15952.0,2,0,2_1,2_0 +7579,10.0,10.0,39.0,111,52,31,0.0,4299,0.0,500.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2882.311702778005,2736.24,0.0,21113.0,1,1,8,6.0,1,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,21113.0,3,0,3_0,3_0 +7580,0.0,0.0,75.0,112,78,50,0.0,43,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1946.6509623970333,0.0,0.0,33065.0,5,2,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22043.333333333332,3,0,3_0,3_0 +7581,4.0,4.0,48.0,111,68,50,0.0,430,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,637.7986012539664,0.0,0.0,16877.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,8438.5,1,0,1_1,1_0 +7582,0.0,0.0,71.0,111,75,33,0.0,4300,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2344.590149474251,0.0,0.0,27230.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27230.0,4,0,4_0,4_0 +7583,0.0,0.0,63.0,112,74,41,0.0,4301,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2112.1684535858617,0.0,0.0,55671.0,5,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37114.0,5,0,5,5_1 +7584,2.0,2.0,37.0,111,62,71,0.0,4305,0.0,500.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2926.502523045668,0.0,0.0,33667.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,12948.846153846154,1,0,1_0,1_0 +7585,0.0,0.0,55.0,111,40,50,0.0,4306,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1358.3892804986829,2465.84,0.0,49413.0,1,1,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32942.0,5,0,5,5_0 +7586,0.0,0.0,38.0,111,47,31,0.0,4309,0.0,0.0,0.0,635.0,2.0,3.0,2.0,4.0,2.1,2170.4065796699297,0.0,0.0,50747.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24165.238095238095,4,0,4_0,4_0 +7587,6.0,11.0,28.0,112,37,41,0.0,431,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3687.905726449458,4843.8,0.0,130884.0,1,2,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,62325.71428571428,5,0,5,5_1 +7588,3.0,6.0,59.0,111,52,50,0.0,4310,0.0,100.0,0.0,340.0,2.0,3.0,1.0,2.0,1.5,6384.649373579051,0.0,0.0,32745.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,21830.0,3,0,3_0,3_0 +7589,11.0,21.0,32.0,112,43,30,0.0,4311,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3016.554138557673,2600.0,0.0,60630.0,1,2,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28871.42857142857,4,0,4_0,4_0 +7590,0.0,0.0,69.0,111,31,12,0.0,4312,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1866.7460459818874,0.0,0.0,79253.0,1,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,52835.333333333336,5,0,5,5_0 +7591,25.0,25.0,33.0,111,34,30,0.0,4314,0.0,0.0,0.0,540.0,2.0,3.0,2.0,4.0,2.1,2926.3516840128163,3640.0,0.0,51740.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,24638.095238095237,4,0,4_0,4_0 +7592,3.0,3.0,58.0,221,33,41,0.0,4316,0.0,0.0,0.0,0.0,3.0,6.0,2.0,3.0,2.0,2493.430141240365,7124.52,0.0,36449.0,1,1,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18224.5,2,0,2_0,2_0 +7593,1.0,1.0,43.0,221,43,30,1.0,4317,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2355.185481756544,4940.0,12500.0,17161.0,4,2,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,7150.416666666667,1,0,1_1,1_0 +7594,5.0,5.0,75.0,111,78,71,0.0,4319,0.0,20.0,0.0,252.0,0.0,2.0,0.0,1.0,1.0,5337.481206643763,0.0,0.0,17416.0,5,3,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,17416.0,2,0,2_1,2_0 +7595,12.0,12.0,45.0,300,69,50,0.0,4320,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2460.7800152550876,0.0,0.0,6801.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,6801.0,1,0,1_0,1_1 +7596,9.0,9.0,89.0,211,78,71,0.0,4321,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2167.0812824857635,0.0,0.0,25256.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16837.333333333332,2,0,2_0,2_0 +7597,12.0,19.0,64.0,111,77,70,0.0,4322,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3871.279902304563,794.04,0.0,14466.0,5,3,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,9644.0,1,0,1_1,1_0 +7598,2.0,23.0,69.0,111,31,20,0.0,4323,0.0,250.0,0.0,480.0,1.0,3.0,0.0,1.0,1.0,2675.1898833637,0.0,0.0,25520.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25520.0,4,0,4_0,4_0 +7599,0.0,0.0,48.0,212,38,50,0.0,4324,0.0,0.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,1534.077738625064,2601.04,0.0,85047.0,1,1,3,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,34018.8,5,0,5,5_1 +7600,4.0,4.0,37.0,112,52,44,0.0,4327,0.0,0.0,320.0,0.0,2.0,6.0,4.0,6.0,2.7,1842.275613908328,1612.0,0.0,36775.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,13620.370370370369,1,0,1_1,1_1 +7601,4.0,13.0,65.0,111,75,50,0.0,4328,0.0,0.0,200.0,700.0,0.0,3.0,0.0,1.0,1.0,3623.1602196254544,0.0,0.0,20019.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,20019.0,3,0,3_0,3_0 +7602,3.0,11.0,38.0,111,52,42,0.0,4329,0.0,0.0,2361.0,0.0,1.0,5.0,2.0,3.0,1.6,2378.8206039633587,0.0,0.0,27292.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,17057.5,2,0,2_0,2_0 +7603,8.0,13.0,35.0,111,56,60,0.0,433,0.0,0.0,200.0,50.0,1.0,1.0,2.0,3.0,1.6,1501.0239411115415,0.0,0.0,18170.0,4,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,11356.25,1,0,1_1,1_0 +7604,0.0,0.0,44.0,112,85,71,0.0,4330,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,928.2367009651546,0.0,0.0,19504.0,6,3,8,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9287.619047619048,1,0,1_1,1_0 +7605,0.0,0.0,49.0,300,67,50,0.0,4333,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.3,2174.8153259735686,3224.0,0.0,30453.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13240.434782608696,1,0,1_1,1_1 +7606,8.0,8.0,70.0,112,74,10,0.0,4334,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,2267.7601141992136,3568.7599999999998,0.0,51925.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,34616.666666666664,5,0,5,5_1 +7607,2.0,2.0,52.0,112,47,50,0.0,4335,0.0,400.0,50.0,0.0,4.0,5.0,2.0,4.0,2.5,1824.8103183760852,0.0,0.0,72300.0,1,1,9,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,28920.0,4,0,4_0,4_1 +7608,11.0,11.0,50.0,300,12,50,0.0,4336,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,2411.4993260309748,0.0,0.0,-593.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,-593.0,1,0,1_0,1_1 +7609,3.0,3.0,44.0,400,54,42,0.0,4339,0.0,0.0,2000.0,0.0,1.0,4.0,2.0,3.0,1.6,413.25459052352346,0.0,0.0,30611.0,1,2,0,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19131.875,3,0,3_0,3_0 +7610,0.0,0.0,59.0,112,47,50,0.0,434,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3114.02352916829,1664.0,0.0,26329.0,1,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26329.0,4,0,4_0,4_1 +7611,15.0,15.0,43.0,111,55,30,0.0,4340,0.0,0.0,0.0,989.0,2.0,4.0,2.0,4.0,2.3,2624.371757566845,2155.92,0.0,61976.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26946.08695652174,4,0,4_0,4_0 +7612,7.0,7.0,64.0,112,77,71,0.0,4341,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2636.960125083394,2600.0,0.0,18985.0,5,4,9,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18985.0,3,0,3_0,3_0 +7613,0.0,6.0,37.0,111,62,60,0.0,4344,0.0,0.0,650.0,0.0,3.0,6.0,3.0,5.0,2.6,1376.1471513275105,1040.0,0.0,44490.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,17111.53846153846,2,0,2_1,2_0 +7614,0.0,14.0,29.0,111,67,71,0.0,4345,0.0,0.0,130.0,600.0,2.0,3.0,1.0,3.0,1.8,3088.7779045915568,0.0,0.0,56520.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,31400.0,4,0,4_0,4_0 +7615,7.0,7.0,83.0,111,74,10,0.0,4346,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1874.9317897592148,3900.0,0.0,76590.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,51060.0,5,0,5,5_0 +7616,0.0,0.0,68.0,111,77,70,0.0,4347,0.0,0.0,0.0,441.0,0.0,3.0,0.0,1.0,1.0,3363.431265432905,0.0,0.0,12730.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12730.0,1,0,1_0,1_0 +7617,7.0,10.0,50.0,111,38,31,0.0,4349,0.0,200.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1739.9255455637071,0.0,0.0,62171.0,1,1,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24868.4,4,0,4_0,4_0 +7618,1.0,1.0,68.0,111,86,70,1.0,435,0.0,500.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1888.006200064117,0.0,20000.0,31200.0,5,1,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,20800.0,3,0,3_0,3_0 +7619,2.0,2.0,45.0,211,85,41,0.0,4351,0.0,10.0,50.0,124.0,0.0,4.0,2.0,3.0,1.8,6435.135511523145,0.0,0.0,21052.0,7,3,2,3.0,2,3.0,0.0,1.0,0,1,0,0,0,1,1.0,2.0,11695.555555555555,1,0,1_1,1_0 +7620,12.0,12.0,49.0,112,64,50,0.0,4354,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.3,1799.5915607933457,3793.92,0.0,34700.0,1,2,5,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,15086.956521739132,2,0,2_1,2_1 +7621,0.0,0.0,84.0,112,71,70,0.0,4356,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2182.817056027642,2113.28,0.0,25765.0,5,4,7,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17176.666666666668,2,0,2_0,2_0 +7622,9.0,11.0,43.0,111,33,30,0.0,4357,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,952.2068111739248,1040.0,0.0,44053.0,1,1,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20977.619047619046,3,0,3_0,3_0 +7623,11.0,11.0,32.0,111,38,12,0.0,4358,0.0,200.0,350.0,463.0,1.0,4.0,1.0,4.0,2.3,5883.209275207856,0.0,0.0,45506.0,1,3,10,8.0,5,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,19785.217391304348,3,0,3_0,3_0 +7624,0.0,0.0,37.0,221,52,71,0.0,4359,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2917.865514348733,0.0,0.0,36347.0,1,2,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,17308.095238095237,2,0,2_1,2_0 +7625,0.0,0.0,55.0,111,38,43,0.0,4361,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1973.050597795024,1457.04,0.0,33781.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22520.666666666668,3,0,3_0,3_0 +7626,0.0,12.0,45.0,111,85,50,0.0,4362,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.5,504.1176870152076,0.0,0.0,22400.0,6,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,8960.0,1,0,1_1,1_0 +7627,0.0,0.0,30.0,221,46,50,0.0,4363,0.0,0.0,0.0,545.0,2.0,5.0,1.0,3.0,1.8,1466.284520103174,3492.3199999999997,0.0,34807.0,1,3,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19337.222222222223,3,0,3_0,3_0 +7628,8.0,10.0,84.0,112,77,71,0.0,4364,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2422.46443043809,0.0,0.0,14710.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14710.0,2,0,2_0,2_1 +7629,1.0,8.0,58.0,221,62,50,0.0,4365,0.0,200.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1832.7877086896945,2080.0,0.0,44062.0,1,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,29374.666666666668,4,0,4_0,4_0 +7630,0.0,0.0,59.0,111,21,60,0.0,4366,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,1480.4650448956747,119.08,0.0,26136.0,1,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13068.0,1,0,1_0,1_0 +7631,0.0,0.0,46.0,300,43,33,0.0,4367,0.0,0.0,0.0,350.0,1.0,4.0,2.0,3.0,2.0,327.7866237991228,2600.0,0.0,30560.0,1,3,0,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15280.0,2,0,2_0,2_0 +7632,12.0,12.0,41.0,300,62,71,0.0,4369,0.0,0.0,200.0,0.0,3.0,5.0,1.0,3.0,2.0,2094.461178036347,2626.0,0.0,24256.0,4,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,12128.0,1,0,1_0,1_0 +7633,5.0,7.0,38.0,111,55,71,0.0,437,0.0,900.0,0.0,50.0,1.0,4.0,3.0,5.0,2.4,1630.6330009187527,0.0,0.0,21398.0,4,3,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,8915.833333333334,1,0,1_1,1_0 +7634,0.0,0.0,54.0,112,77,50,0.0,4370,0.0,0.0,0.0,265.0,0.0,3.0,0.0,1.0,1.0,3804.2061527300634,0.0,0.0,6986.0,7,3,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,6986.0,1,0,1_1,1_1 +7635,0.0,0.0,50.0,111,62,50,0.0,4372,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3056.7227223092173,11232.0,0.0,54244.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30135.555555555555,4,0,4_0,4_0 +7636,6.0,6.0,45.0,111,37,20,0.0,4373,0.0,0.0,30.0,1130.0,1.0,2.0,1.0,2.0,1.5,4574.600280832985,0.0,0.0,46718.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,31145.333333333332,4,0,4_0,4_0 +7637,0.0,0.0,74.0,111,75,31,0.0,4376,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1898.097578234295,520.0,0.0,44302.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29534.666666666668,4,0,4_0,4_0 +7638,3.0,3.0,34.0,111,43,33,0.0,4379,0.0,300.0,156.0,0.0,1.0,3.0,0.0,1.0,1.0,2702.797299023574,2080.0,0.0,19088.0,1,3,7,5.0,1,3.0,0.0,1.0,0,0,1,0,0,1,1.0,2.0,19088.0,3,0,3_1,3_0 +7639,3.0,16.0,84.0,111,78,70,0.0,438,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,4715.360152244096,0.0,0.0,35471.0,5,4,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23647.333333333332,3,0,3_0,3_0 +7640,2.0,4.0,64.0,111,77,50,0.0,4380,0.0,350.0,0.0,620.0,0.0,3.0,0.0,1.0,1.0,3954.344431669679,2594.7999999999997,0.0,18565.0,5,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18565.0,2,0,2_0,2_0 +7641,0.0,0.0,40.0,111,85,0,0.0,4381,0.0,0.0,0.0,2.0,0.0,1.0,0.0,1.0,1.0,3495.4259367613276,0.0,0.0,9464.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9464.0,1,0,1_1,1_0 +7642,0.0,0.0,40.0,111,42,20,0.0,4382,0.0,0.0,0.0,0.0,2.0,6.0,5.0,7.0,3.0,270.7023740159826,1768.0,0.0,60677.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,20225.666666666668,3,0,3_1,3_0 +7643,9.0,18.0,45.0,400,52,50,0.0,4384,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1866.7125927512818,0.0,0.0,29225.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16236.111111111111,2,0,2_0,2_1 +7644,1.0,5.0,79.0,112,77,70,2.0,4386,0.0,180.0,200.0,0.0,0.0,3.0,0.0,1.0,1.0,3149.965965915401,0.0,10000.0,27318.0,5,1,10,4.0,1,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,27318.0,4,0,4_0,4_0 +7645,0.0,0.0,86.0,112,78,71,0.0,4387,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2858.837709955307,0.0,0.0,17210.0,5,1,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17210.0,2,0,2_0,2_0 +7646,0.0,0.0,73.0,112,72,71,0.0,4388,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2384.434335381095,0.0,0.0,16919.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16919.0,2,0,2_0,2_1 +7647,7.0,7.0,44.0,221,64,50,0.0,4389,0.0,0.0,0.0,0.0,2.0,4.0,3.0,4.0,2.5,700.4519516321199,7280.0,0.0,39074.0,1,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,15629.6,2,0,2_1,2_0 +7648,2.0,10.0,86.0,111,86,71,0.0,4390,0.0,99999.0,0.0,230.0,0.0,3.0,0.0,1.0,1.0,2289.7483930007556,0.0,0.0,10800.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10800.0,1,0,1_1,1_0 +7649,0.0,0.0,58.0,111,34,30,0.0,4392,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1895.2245374250167,0.0,0.0,75890.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,50593.333333333336,5,0,5,5_0 +7650,1.0,6.0,88.0,111,77,70,2.0,4393,0.0,110.0,50.0,0.0,0.0,4.0,0.0,1.0,1.0,3097.1921997507993,0.0,3500.0,24244.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,24244.0,4,0,4_0,4_0 +7651,1.0,4.0,44.0,300,69,71,2.0,4395,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,1645.3450879975005,0.0,6000.0,12692.0,4,3,0,1.0,2,1.0,1.0,0.0,0,1,0,0,0,1,1.0,0.0,8461.333333333334,1,0,1_1,1_0 +7652,0.0,0.0,56.0,300,63,50,0.0,4396,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2085.892070640604,0.0,0.0,32550.0,1,2,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21700.0,3,0,3_0,3_0 +7653,0.0,16.0,73.0,111,74,30,0.0,4397,0.0,0.0,40.0,0.0,0.0,5.0,0.0,2.0,1.5,3165.197943109052,0.0,0.0,61917.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,41278.0,5,0,5,5_0 +7654,1.0,2.0,47.0,112,62,71,0.0,4398,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,10034.992363605164,1611.48,0.0,35000.0,4,4,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14583.333333333334,2,0,2_0,2_1 +7655,1.0,1.0,53.0,112,48,50,1.0,4399,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2340.200079701507,0.0,30000.0,36208.0,1,2,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,36208.0,5,0,5,5_1 +7656,1.0,14.0,75.0,112,74,12,2.0,44,0.0,0.0,120.0,0.0,0.0,8.0,0.0,2.0,1.5,2740.8485978600324,0.0,1500.0,79733.0,5,1,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,53155.333333333336,5,0,5,5_0 +7657,2.0,21.0,74.0,111,74,50,0.0,4403,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2579.753921934982,0.0,0.0,44830.0,5,2,4,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29886.666666666668,4,0,4_0,4_0 +7658,0.0,8.0,41.0,111,38,12,2.0,4404,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3089.399191130602,3120.0,4500.0,108303.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,51572.85714285714,5,0,5,5_0 +7659,9.0,22.0,61.0,400,77,70,0.0,4405,0.0,0.0,200.0,0.0,0.0,5.0,0.0,2.0,1.5,1954.7400180488205,2028.0,0.0,25717.0,5,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17144.666666666668,2,0,2_0,2_1 +7660,0.0,0.0,44.0,111,67,71,0.0,4407,0.0,0.0,0.0,358.0,1.0,5.0,3.0,5.0,2.4,910.5744889405684,2803.3199999999997,0.0,27604.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11501.666666666668,1,0,1_1,1_0 +7661,4.0,4.0,44.0,111,37,31,0.0,441,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2629.657947598947,0.0,0.0,59317.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28246.190476190473,4,0,4_0,4_0 +7662,8.0,8.0,51.0,111,64,50,0.0,4410,0.0,120.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2459.983207595183,0.0,0.0,21060.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21060.0,3,0,3_0,3_0 +7663,2.0,2.0,32.0,111,85,71,0.0,4411,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,1772.7121036598976,0.0,0.0,17043.0,6,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,10651.875,1,0,1_1,1_0 +7664,0.0,0.0,24.0,111,85,42,0.0,4412,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3774.1654805191565,2415.92,0.0,14718.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14718.0,2,0,2_1,2_0 +7665,0.0,4.0,40.0,400,69,50,0.0,4413,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2731.0322960021363,3121.04,0.0,41368.0,1,3,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,19699.04761904762,3,0,3_1,3_1 +7666,11.0,12.0,66.0,111,75,50,0.0,4414,0.0,0.0,50.0,0.0,0.0,4.0,0.0,2.0,1.5,1437.5083837451282,1290.12,0.0,47260.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,31506.666666666668,4,0,4_0,4_0 +7667,0.0,0.0,51.0,120,62,50,0.0,4415,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2322.679939675445,1549.6000000000001,0.0,34563.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19201.666666666668,3,0,3_0,3_1 +7668,0.0,0.0,67.0,111,78,71,0.0,4416,0.0,0.0,0.0,188.0,0.0,2.0,0.0,1.0,1.0,1648.6744857503563,0.0,0.0,11859.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11859.0,1,0,1_1,1_0 +7669,1.0,9.0,30.0,111,65,41,2.0,4418,0.0,500.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2277.69895910573,2902.64,4000.0,21394.0,1,1,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,21394.0,3,0,3_0,3_0 +7670,0.0,0.0,62.0,111,77,60,0.0,4419,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1022.2775106798324,0.0,0.0,29695.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19796.666666666668,3,0,3_0,3_0 +7671,1.0,8.0,24.0,111,84,31,2.0,442,0.0,0.0,0.0,269.0,0.0,2.0,0.0,1.0,1.0,3478.634137148819,0.0,3000.0,13512.0,3,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13512.0,1,0,1_1,1_0 +7672,0.0,0.0,39.0,111,56,71,0.0,4420,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,744.709014297521,1560.0,0.0,23888.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13271.111111111111,1,0,1_1,1_0 +7673,8.0,8.0,40.0,300,62,50,0.0,4422,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2166.9383546625354,1560.0,0.0,57770.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,25117.391304347828,4,0,4_0,4_1 +7674,7.0,10.0,64.0,111,78,70,0.0,4424,0.0,0.0,112.0,243.0,0.0,2.0,0.0,1.0,1.0,1379.52531300892,0.0,0.0,15975.0,5,3,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15975.0,2,0,2_0,2_0 +7675,0.0,0.0,56.0,112,52,42,0.0,4425,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1934.1487988090266,1924.0,0.0,52522.0,1,1,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21008.8,3,0,3_0,3_1 +7676,9.0,9.0,46.0,300,42,20,0.0,4426,0.0,0.0,0.0,0.0,1.0,6.0,3.0,4.0,2.1,588.3435804576716,0.0,0.0,34149.0,1,2,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16261.42857142857,2,0,2_0,2_1 +7677,4.0,7.0,55.0,300,52,71,0.0,4427,0.0,199998.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1686.4400386581501,0.0,0.0,29328.0,1,1,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,29328.0,4,0,4_0,4_0 +7678,9.0,9.0,71.0,111,75,30,0.0,4429,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2452.71120964496,1300.0,0.0,36814.0,5,1,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,24542.666666666668,4,0,4_0,4_0 +7679,10.0,10.0,58.0,212,52,60,0.0,443,0.0,65.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2387.076927594163,2784.6,0.0,42960.0,1,1,2,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28640.0,4,0,4_0,4_1 +7680,0.0,0.0,63.0,300,75,30,0.0,4430,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2549.8439380968102,2444.0,0.0,41900.0,5,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27933.333333333332,4,0,4_0,4_1 +7681,1.0,1.0,44.0,300,56,41,1.0,4432,0.0,99999.0,0.0,0.0,1.0,7.0,3.0,4.0,2.3,626.2491862155588,1352.0,33000.0,28341.0,1,1,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12322.17391304348,1,0,1_0,1_1 +7682,18.0,20.0,52.0,112,21,71,0.0,4434,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2471.5947108482646,3422.12,0.0,53476.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,35650.666666666664,5,0,5,5_1 +7683,0.0,0.0,61.0,111,56,71,0.0,4435,0.0,0.0,0.0,0.0,4.0,4.0,2.0,4.0,2.5,3478.158854291584,0.0,0.0,95780.0,1,4,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38312.0,5,0,5,5_0 +7684,0.0,0.0,34.0,111,67,60,1.0,4436,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1108.1678397395237,1560.0,42000.0,34786.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,16564.761904761905,2,0,2_1,2_0 +7685,0.0,0.0,42.0,111,21,50,0.0,4437,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3105.426857200145,4576.0,0.0,22440.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10685.714285714284,1,0,1_1,1_0 +7686,3.0,9.0,40.0,300,62,43,0.0,4438,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2948.6170761292665,3016.0,0.0,30883.0,1,2,0,0.0,1,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,30883.0,4,0,4_0,4_1 +7687,1.0,1.0,26.0,111,54,71,1.0,4439,0.0,270.0,0.0,430.0,1.0,3.0,0.0,1.0,1.0,2636.5020508180214,0.0,26000.0,21653.0,1,3,7,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21653.0,3,0,3_0,3_0 +7688,16.0,16.0,39.0,111,85,71,0.0,444,0.0,1000.0,200.0,0.0,0.0,4.0,2.0,3.0,1.6,737.5818071531048,0.0,0.0,8594.0,6,3,8,7.0,2,3.0,0.0,1.0,0,0,0,1,0,1,1.0,2.0,5371.25,1,0,1_1,1_0 +7689,1.0,7.0,36.0,111,22,60,0.0,4440,0.0,700.0,50.0,410.0,1.0,3.0,1.0,2.0,1.3,548.6044734867148,0.0,0.0,8570.0,1,3,7,5.0,2,3.0,0.0,1.0,0,0,1,0,0,1,1.0,2.0,6592.307692307692,1,0,1_1,1_0 +7690,1.0,7.0,65.0,111,74,12,2.0,4441,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1859.883618461426,3230.24,5900.0,119183.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,79455.33333333333,5,0,5,5_0 +7691,6.0,6.0,42.0,112,46,20,0.0,4442,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1889.558984993671,0.0,0.0,29509.0,1,3,8,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,29509.0,4,0,4_0,4_0 +7692,0.0,0.0,68.0,111,78,71,0.0,4443,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3472.1598940000517,0.0,0.0,14182.0,5,4,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9454.666666666666,1,0,1_0,1_0 +7693,5.0,16.0,82.0,112,77,70,0.0,4444,0.0,0.0,40.0,0.0,0.0,3.0,0.0,1.0,1.0,2746.0913974634514,0.0,0.0,20753.0,5,1,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,20753.0,3,0,3_0,3_0 +7694,0.0,0.0,37.0,400,38,31,0.0,4446,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2410.207583524886,2730.0,0.0,35942.0,1,2,0,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27647.69230769231,4,0,4_0,4_0 +7695,0.0,0.0,28.0,111,43,33,0.0,4447,0.0,0.0,0.0,895.0,2.0,2.0,0.0,2.0,1.5,7006.765042122714,0.0,0.0,45320.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30213.333333333332,4,0,4_0,4_0 +7696,0.0,0.0,41.0,111,43,33,0.0,4448,0.0,0.0,0.0,108.0,1.0,2.0,2.0,3.0,1.8,1166.692785299226,0.0,0.0,23950.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13305.555555555555,1,0,1_1,1_0 +7697,1.0,3.0,69.0,111,77,50,2.0,4449,0.0,0.0,0.0,100.0,0.0,3.0,0.0,1.0,1.0,2662.4002085322777,0.0,21000.0,14529.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,14529.0,2,0,2_1,2_0 +7698,0.0,2.0,33.0,111,48,31,2.0,445,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2667.981290414031,0.0,12000.0,66060.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,36700.0,5,0,5,5_0 +7699,0.0,0.0,59.0,111,74,30,0.0,4450,0.0,0.0,0.0,0.0,0.0,2.0,2.0,3.0,2.0,3874.097759533762,2184.0,0.0,56270.0,5,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28135.0,4,0,4_0,4_0 +7700,1.0,17.0,73.0,111,77,71,0.0,4452,0.0,0.0,0.0,378.0,0.0,4.0,0.0,1.0,1.0,2346.016140065068,0.0,0.0,13352.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13352.0,1,0,1_1,1_0 +7701,6.0,6.0,51.0,111,38,42,0.0,4453,0.0,0.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.5,2128.0593408533837,0.0,0.0,57879.0,1,1,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23151.6,3,0,3_0,3_0 +7702,10.0,14.0,72.0,211,78,71,0.0,4454,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2168.941254964411,1428.96,0.0,30873.0,5,1,2,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20582.0,3,0,3_0,3_0 +7703,1.0,9.0,25.0,300,38,20,2.0,4455,0.0,100.0,0.0,290.0,1.0,3.0,0.0,1.0,1.0,2726.2408421093414,2395.64,6000.0,26148.0,1,3,0,1.0,1,1.0,1.0,1.0,0,1,0,0,0,1,0.0,1.0,26148.0,4,0,4_1,4_0 +7704,0.0,0.0,27.0,120,62,60,0.0,4456,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2487.761183640346,0.0,0.0,32734.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18185.555555555555,2,0,2_0,2_1 +7705,0.0,0.0,43.0,111,52,50,0.0,4458,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,1.8,614.2282722760598,3276.0,0.0,20274.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11263.333333333334,1,0,1_1,1_0 +7706,1.0,2.0,62.0,112,75,50,0.0,4461,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,1825.944287263955,0.0,0.0,36261.0,5,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,24174.0,4,0,4_0,4_1 +7707,17.0,17.0,56.0,111,52,50,0.0,4462,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1982.312107138619,0.0,0.0,37080.0,1,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24720.0,4,0,4_0,4_0 +7708,14.0,16.0,71.0,111,74,20,0.0,4463,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2384.5716875272055,0.0,0.0,34920.0,5,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34920.0,5,0,5,5_0 +7709,0.0,0.0,46.0,111,33,30,0.0,4465,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,813.563483735994,3203.2,0.0,46230.0,1,1,6,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23115.0,3,0,3_0,3_0 +7710,1.0,2.0,37.0,221,00,50,2.0,4466,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1851.4910119436381,4102.8,17400.0,36395.0,4,3,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20219.444444444445,3,0,3_0,3_0 +7711,2.0,2.0,32.0,111,38,31,0.0,4469,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2650.530572185502,0.0,0.0,50270.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23938.095238095237,4,0,4_0,4_0 +7712,2.0,4.0,89.0,211,78,71,0.0,447,0.0,250.0,50.0,0.0,0.0,3.0,1.0,2.0,1.5,1619.049456422819,0.0,0.0,31288.0,5,3,4,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,20858.666666666668,3,0,3_1,3_0 +7713,0.0,11.0,68.0,120,78,70,0.0,4470,0.0,295.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1881.7494804839048,0.0,0.0,26154.0,5,1,0,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17436.0,2,0,2_0,2_0 +7714,8.0,8.0,66.0,300,72,50,0.0,4471,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2181.195467512402,3375.3199999999997,0.0,46695.0,5,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23347.5,3,0,3_0,3_1 +7715,11.0,12.0,70.0,112,78,71,0.0,4472,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2955.151941590519,2052.96,0.0,10300.0,5,1,8,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,10300.0,1,0,1_0,1_0 +7716,11.0,11.0,69.0,300,71,50,0.0,4474,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,2.0,1.5,1689.74412918573,8329.88,0.0,29220.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19480.0,3,0,3_0,3_1 +7717,2.0,7.0,40.0,111,63,71,0.0,4475,0.0,0.0,0.0,303.0,2.0,4.0,3.0,5.0,2.6,1362.9354071297691,0.0,0.0,43450.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16711.53846153846,2,0,2_0,2_0 +7718,4.0,4.0,69.0,111,78,50,0.0,4476,0.0,0.0,0.0,303.0,0.0,3.0,0.0,2.0,1.5,2833.821613761612,2857.92,0.0,26087.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17391.333333333332,2,0,2_0,2_0 +7719,0.0,20.0,50.0,111,37,31,0.0,4478,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1812.8110511896866,0.0,0.0,41983.0,1,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,41983.0,5,0,5,5_0 +7720,4.0,4.0,70.0,112,74,31,0.0,4479,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1554.2324162017476,2805.4,0.0,51980.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,34653.333333333336,5,0,5,5_1 +7721,3.0,3.0,24.0,300,63,50,0.0,448,0.0,0.0,600.0,0.0,2.0,4.0,0.0,2.0,1.5,266.4009806483207,4004.0,0.0,36674.0,1,3,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,24449.333333333332,4,0,4_0,4_1 +7722,8.0,8.0,28.0,211,67,70,0.0,4480,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3145.0724902931897,0.0,0.0,14646.0,4,3,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,8136.666666666666,1,0,1_1,1_0 +7723,0.0,0.0,90.0,111,72,12,0.0,4482,0.0,0.0,0.0,0.0,0.0,10.0,0.0,1.0,1.0,2159.7820541763235,0.0,0.0,64391.0,5,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,64391.0,5,0,5,5_0 +7724,0.0,0.0,43.0,112,48,41,0.0,4484,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2606.18250319606,2600.0,0.0,55825.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24271.739130434784,4,0,4_0,4_1 +7725,4.0,4.0,37.0,120,55,50,0.0,4485,0.0,400.0,0.0,198.0,1.0,4.0,1.0,2.0,1.3,382.1227337616135,2081.56,0.0,19174.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,14749.23076923077,2,0,2_1,2_1 +7726,4.0,4.0,62.0,211,75,42,0.0,4486,256.0,500.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2306.7286760589936,2080.52,0.0,44873.0,5,1,1,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,29915.333333333332,4,0,4_0,4_0 +7727,7.0,7.0,46.0,111,46,50,0.0,4487,0.0,99999.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2072.37476452931,2081.04,0.0,50719.0,1,2,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22051.739130434784,3,0,3_0,3_0 +7728,0.0,0.0,50.0,120,37,71,0.0,4488,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2256.8660444313673,780.0,0.0,71331.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,47554.0,5,0,5,5_1 +7729,0.0,0.0,65.0,111,77,60,0.0,4489,0.0,0.0,0.0,340.0,0.0,2.0,0.0,1.0,1.0,4151.5146230598775,2496.0,0.0,16881.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16881.0,2,0,2_0,2_0 +7730,0.0,0.0,29.0,111,43,31,0.0,449,0.0,0.0,0.0,176.0,1.0,3.0,1.0,2.0,1.3,1005.585323950869,1040.0,0.0,20037.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15413.076923076922,2,0,2_1,2_0 +7731,0.0,0.0,35.0,211,56,31,0.0,4490,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,655.6359948033377,787.8000000000001,0.0,24544.0,1,2,3,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15340.0,2,0,2_1,2_0 +7732,0.0,0.0,64.0,111,75,71,0.0,4491,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1778.1629566546385,0.0,0.0,17400.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11600.0,1,0,1_0,1_0 +7733,0.0,0.0,35.0,112,64,50,0.0,4492,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,1984.2573120661616,0.0,0.0,39795.0,1,2,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17302.17391304348,2,0,2_0,2_0 +7734,0.0,0.0,62.0,211,74,71,0.0,4494,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2566.8854619751996,4929.6,0.0,38760.0,5,2,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25840.0,4,0,4_0,4_0 +7735,6.0,11.0,48.0,112,42,10,0.0,4495,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1769.878787099011,0.0,0.0,12185.0,4,3,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,12185.0,1,0,1_1,1_1 +7736,6.0,6.0,22.0,112,52,50,0.0,4497,0.0,300.0,0.0,345.0,2.0,3.0,0.0,2.0,1.5,4069.016925120548,2158.52,0.0,35941.0,1,3,9,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23960.666666666668,4,0,4_0,4_1 +7737,15.0,15.0,38.0,112,52,31,0.0,45,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,104.1483605566685,2393.56,0.0,27559.0,1,2,5,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,17224.375,2,0,2_1,2_1 +7738,2.0,3.0,55.0,111,37,60,0.0,450,0.0,0.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,1409.479684869873,0.0,0.0,78150.0,1,2,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,52100.0,5,0,5,5_0 +7739,0.0,0.0,86.0,111,77,41,0.0,4500,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3375.9511810085855,0.0,0.0,20191.0,5,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20191.0,3,0,3_0,3_0 +7740,12.0,12.0,26.0,111,47,31,0.0,4501,0.0,0.0,30.0,500.0,2.0,2.0,0.0,2.0,1.5,3790.735102037251,1560.0,0.0,28674.0,2,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,19116.0,3,0,3_0,3_0 +7741,0.0,0.0,27.0,111,31,30,0.0,4502,0.0,0.0,0.0,415.0,2.0,2.0,0.0,2.0,1.5,2689.998883308523,0.0,0.0,77871.0,1,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,51914.0,5,0,5,5_0 +7742,3.0,8.0,69.0,111,78,44,0.0,4505,0.0,99999.0,0.0,177.0,0.0,2.0,0.0,1.0,1.0,2524.2311456692064,1042.6000000000001,0.0,26190.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26190.0,4,0,4_0,4_0 +7743,0.0,0.0,53.0,400,56,50,0.0,4506,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1912.6584317868023,1081.6000000000001,0.0,18778.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18778.0,3,0,3_0,3_1 +7744,11.0,11.0,36.0,112,65,42,0.0,4508,0.0,0.0,99999.0,0.0,2.0,6.0,2.0,4.0,2.1,2513.36457526184,156.0,0.0,51174.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,24368.571428571428,4,0,4_0,4_1 +7745,0.0,18.0,59.0,111,75,31,0.0,451,0.0,0.0,100.0,0.0,0.0,6.0,0.0,1.0,1.0,1582.9238829337287,0.0,0.0,28087.0,5,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,28087.0,4,0,4_0,4_0 +7746,7.0,9.0,67.0,111,75,33,0.0,4510,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1677.2191458851141,3851.64,0.0,49254.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,32836.0,5,0,5,5_0 +7747,3.0,3.0,62.0,112,38,20,0.0,4511,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1139.6620421297991,2704.0,0.0,71202.0,1,1,9,3.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,47468.0,5,0,5,5_0 +7748,1.0,5.0,51.0,111,37,50,2.0,4512,0.0,0.0,99999.0,852.0,1.0,4.0,0.0,2.0,1.5,2927.3101330903564,0.0,1200.0,26520.0,1,3,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17680.0,2,0,2_0,2_0 +7749,1.0,35.0,48.0,0,54,50,2.0,4513,0.0,150.0,0.0,301.0,2.0,4.0,3.0,4.0,2.3,261.1670484099969,1040.0,14000.0,39466.0,1,3,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,17159.13043478261,2,0,2_1,2_1 +7750,17.0,28.0,46.0,111,54,42,0.0,4515,0.0,800.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,516.762941181423,1872.0,0.0,27022.0,1,3,6,4.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,16888.75,2,0,2_1,2_0 +7751,7.0,18.0,71.0,111,75,50,0.0,4516,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2325.779125932239,0.0,0.0,37702.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,25134.666666666668,4,0,4_0,4_0 +7752,0.0,0.0,57.0,300,34,20,0.0,4517,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2111.6991897177277,1560.0,0.0,78712.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,39356.0,5,0,5,5_1 +7753,0.0,0.0,47.0,111,38,31,0.0,4519,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1751.2984732642685,3365.44,0.0,75953.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42196.11111111111,5,0,5,5_0 +7754,2.0,2.0,45.0,112,46,31,0.0,452,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2335.0496492671455,4628.0,0.0,51591.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22430.869565217392,3,0,3_0,3_1 +7755,3.0,14.0,37.0,211,67,43,0.0,4522,0.0,530.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1161.1686955483733,0.0,0.0,21880.0,1,2,2,3.0,2,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,16830.76923076923,2,0,2_0,2_0 +7756,6.0,6.0,24.0,111,63,43,0.0,4523,0.0,40.0,0.0,332.0,2.0,3.0,1.0,3.0,1.8,2988.705329128738,910.5200000000001,0.0,39850.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22138.888888888887,3,0,3_0,3_0 +7757,12.0,14.0,89.0,300,71,70,0.0,4526,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2189.4399930704876,0.0,0.0,18757.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12504.666666666666,1,0,1_0,1_1 +7758,2.0,7.0,95.0,112,86,71,0.0,4527,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1248.6983052169558,0.0,0.0,23860.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15906.666666666666,2,0,2_0,2_1 +7759,0.0,3.0,29.0,111,37,20,0.0,4528,0.0,100.0,0.0,0.0,2.0,4.0,0.0,3.0,2.0,3077.56175105339,3398.72,0.0,68799.0,1,1,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,34399.5,5,0,5,5_0 +7760,3.0,6.0,64.0,300,78,50,0.0,453,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3136.7591621771444,2340.0,0.0,19300.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19300.0,3,0,3_0,3_1 +7761,13.0,15.0,35.0,111,68,41,0.0,4530,0.0,250.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,632.7228936460393,0.0,0.0,31452.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,16553.684210526317,2,0,2_1,2_0 +7762,12.0,12.0,57.0,112,64,50,0.0,4531,0.0,0.0,99999.0,0.0,2.0,1.0,1.0,2.0,1.5,2576.5585134323323,0.0,0.0,36150.0,1,3,10,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,24100.0,4,0,4_0,4_0 +7763,20.0,20.0,53.0,111,46,60,0.0,4532,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,3511.918205955605,0.0,0.0,84130.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,42065.0,5,0,5,5_0 +7764,5.0,6.0,59.0,112,74,31,0.0,4534,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1898.913774603481,0.0,0.0,49756.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,33170.666666666664,5,0,5,5_1 +7765,11.0,11.0,53.0,112,52,50,0.0,4535,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2094.3754718502933,0.0,0.0,21577.0,1,3,8,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,21577.0,3,0,3_0,3_0 +7766,0.0,0.0,18.0,111,84,41,0.0,4537,0.0,0.0,0.0,420.0,0.0,1.0,0.0,1.0,1.0,3430.3345320998114,0.0,0.0,2404.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,2404.0,1,0,1_0,1_0 +7767,5.0,5.0,53.0,221,54,31,0.0,4538,0.0,750.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,3628.6555817419976,3164.72,0.0,85227.0,1,1,1,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,42613.5,5,0,5,5_0 +7768,5.0,10.0,52.0,111,47,41,0.0,454,0.0,700.0,0.0,340.0,1.0,4.0,1.0,2.0,1.5,1752.9131083935554,0.0,0.0,22997.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,15331.333333333334,2,0,2_1,2_0 +7769,8.0,8.0,72.0,400,75,42,0.0,4540,0.0,0.0,99999.0,0.0,0.0,2.0,0.0,2.0,1.5,1978.0456611958693,0.0,0.0,47840.0,5,3,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,31893.333333333332,5,0,5,5_1 +7770,4.0,4.0,25.0,300,68,50,0.0,4541,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2813.816025211525,3748.68,0.0,52066.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,21694.166666666668,3,0,3_1,3_1 +7771,6.0,6.0,44.0,111,38,12,0.0,4545,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2281.290500758422,0.0,0.0,101885.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,42452.083333333336,5,0,5,5_0 +7772,2.0,12.0,60.0,112,64,50,0.0,4546,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1611.4694004835953,1393.6000000000001,0.0,41556.0,1,2,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27704.0,4,0,4_0,4_1 +7773,3.0,3.0,46.0,111,42,12,0.0,4547,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1466.4980907130994,0.0,0.0,41466.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,23036.666666666668,3,0,3_0,3_0 +7774,1.0,5.0,67.0,300,75,33,2.0,4548,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2007.997986867846,1820.0,12000.0,8800.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,8800.0,1,0,1_0,1_0 +7775,0.0,16.0,52.0,111,37,30,0.0,455,0.0,0.0,0.0,2296.0,2.0,5.0,4.0,6.0,3.1,2537.3385075047468,0.0,0.0,94274.0,1,3,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,30410.967741935485,4,0,4_0,4_0 +7776,14.0,14.0,59.0,111,75,31,0.0,4550,0.0,0.0,130.0,0.0,0.0,4.0,0.0,1.0,1.0,3935.0939098656513,0.0,0.0,41031.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,41031.0,5,0,5,5_0 +7777,10.0,10.0,45.0,111,37,31,0.0,4551,0.0,50.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1873.9980102454665,0.0,0.0,78151.0,1,2,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,52100.666666666664,5,0,5,5_0 +7778,0.0,0.0,35.0,111,62,50,0.0,4552,0.0,0.0,0.0,436.0,2.0,3.0,2.0,4.0,2.1,670.2360548494504,0.0,0.0,41028.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19537.142857142855,3,0,3_1,3_0 +7779,6.0,6.0,25.0,111,42,31,0.0,4553,0.0,250.0,0.0,282.0,1.0,2.0,0.0,1.0,1.0,1412.648952400686,2080.0,0.0,20020.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20020.0,3,0,3_0,3_0 +7780,3.0,19.0,50.0,112,37,31,0.0,4555,0.0,0.0,0.0,0.0,4.0,7.0,3.0,5.0,3.0,1615.6691497346035,6000.799999999999,0.0,80658.0,1,1,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,26886.0,4,0,4_0,4_1 +7781,3.0,17.0,40.0,111,53,41,0.0,4556,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,2796.0942924607443,0.0,0.0,26853.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,12787.142857142857,1,0,1_1,1_0 +7782,10.0,11.0,51.0,111,48,42,0.0,4557,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.5,1776.1730038249232,1144.0,0.0,39382.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15752.8,2,0,2_0,2_0 +7783,4.0,6.0,77.0,211,78,71,0.0,4558,0.0,1405.0,0.0,381.0,0.0,3.0,0.0,2.0,1.5,1628.979389957297,0.0,0.0,24693.0,5,3,3,3.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,16462.0,2,0,2_0,2_0 +7784,3.0,8.0,38.0,111,56,44,0.0,456,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1577.7326849797332,2081.56,0.0,25560.0,1,3,8,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,11113.04347826087,1,0,1_0,1_0 +7785,20.0,23.0,50.0,120,46,30,0.0,4560,0.0,90.0,160.0,0.0,2.0,4.0,3.0,5.0,2.6,2967.6780978406614,0.0,0.0,61385.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23609.615384615383,3,0,3_0,3_1 +7786,9.0,9.0,55.0,112,54,50,0.0,4563,99999.0,0.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,2129.283761189517,4716.4,0.0,41788.0,1,1,7,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,16715.2,2,0,2_0,2_0 +7787,2.0,3.0,47.0,111,22,31,0.0,4566,0.0,0.0,60.0,2300.0,2.0,4.0,1.0,3.0,1.8,2883.464479445628,2860.0,0.0,65210.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,36227.777777777774,5,0,5,5_0 +7788,3.0,3.0,74.0,120,72,70,0.0,4567,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1664.36304746282,1510.6000000000001,0.0,19685.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13123.333333333334,1,0,1_0,1_1 +7789,0.0,0.0,80.0,300,71,50,0.0,4568,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2157.3261661266574,0.0,0.0,17541.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17541.0,2,0,2_0,2_1 +7790,4.0,4.0,63.0,111,75,60,0.0,4571,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,1.0,1.0,2324.8886840386335,2574.0,0.0,17165.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,17165.0,2,0,2_0,2_0 +7791,5.0,9.0,84.0,300,71,70,0.0,4572,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1561.8148075725553,2095.08,0.0,44184.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,29456.0,4,0,4_0,4_1 +7792,0.0,0.0,43.0,111,81,30,0.0,4577,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,637.3300037623866,2015.52,0.0,15532.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8628.888888888889,1,0,1_1,1_0 +7793,1.0,5.0,44.0,111,42,20,2.0,4578,0.0,0.0,0.0,600.0,2.0,4.0,2.0,4.0,2.1,3271.2945541651666,2862.6000000000004,20000.0,30690.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,14614.285714285714,2,0,2_0,2_0 +7794,2.0,2.0,68.0,300,78,71,0.0,4579,0.0,100.0,80.0,0.0,0.0,3.0,0.0,2.0,1.5,1926.5323900426392,2059.2000000000003,0.0,18559.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,12372.666666666666,1,0,1_0,1_1 +7795,0.0,0.0,41.0,221,46,31,0.0,4581,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,3653.946330744849,0.0,0.0,64054.0,1,2,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26689.166666666668,4,0,4_0,4_0 +7796,3.0,11.0,56.0,111,35,41,0.0,4583,0.0,950.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1717.7771375074974,0.0,0.0,39077.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,26051.333333333332,4,0,4_0,4_0 +7797,2.0,5.0,56.0,112,78,71,0.0,4585,0.0,0.0,120.0,0.0,1.0,4.0,1.0,3.0,2.0,1851.1737971348891,4264.0,0.0,19990.0,5,1,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,9995.0,1,0,1_0,1_0 +7798,2.0,22.0,82.0,111,86,70,0.0,4587,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1750.0526859576516,0.0,0.0,22413.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22413.0,3,0,3_0,3_0 +7799,1.0,4.0,49.0,111,52,50,2.0,459,0.0,115.0,180.0,0.0,1.0,3.0,1.0,3.0,2.0,2315.1405657533683,0.0,9500.0,39158.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,19579.0,3,0,3_0,3_0 +7800,9.0,10.0,74.0,112,77,50,0.0,4590,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1399.5630099752088,0.0,0.0,22045.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,14696.666666666666,2,0,2_0,2_0 +7801,5.0,6.0,64.0,111,75,42,0.0,4591,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2857.5872280598055,0.0,0.0,23477.0,5,1,7,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23477.0,3,0,3_0,3_0 +7802,0.0,0.0,54.0,111,21,50,0.0,4592,0.0,0.0,0.0,0.0,4.0,5.0,2.0,4.0,2.5,2842.72348691997,2028.0,0.0,86683.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,34673.2,5,0,5,5_0 +7803,4.0,7.0,40.0,112,37,30,0.0,4593,0.0,80.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,592.1983246740265,0.0,0.0,29357.0,1,2,8,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22582.30769230769,3,0,3_0,3_0 +7804,0.0,0.0,50.0,111,47,31,0.0,4594,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,600.9496380245042,4861.48,0.0,47300.0,1,2,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23650.0,3,0,3_0,3_0 +7805,9.0,10.0,61.0,112,46,42,0.0,4595,0.0,30.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1537.3174534565655,3016.0,0.0,64048.0,1,2,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,42698.666666666664,5,0,5,5_1 +7806,1.0,12.0,36.0,300,00,31,2.0,4597,0.0,0.0,30.0,570.0,2.0,4.0,1.0,3.0,1.8,1091.8346491894558,0.0,400.0,43647.0,4,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,24248.333333333332,4,0,4_0,4_1 +7807,3.0,10.0,47.0,300,63,50,0.0,4598,0.0,500.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2281.1605393205427,0.0,0.0,37626.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,17917.142857142855,2,0,2_0,2_1 +7808,5.0,13.0,70.0,111,75,70,0.0,4599,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1774.5009085613847,0.0,0.0,29090.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19393.333333333332,3,0,3_0,3_0 +7809,2.0,5.0,61.0,111,34,10,0.0,46,0.0,550.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2335.8498005296447,0.0,0.0,145820.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,72910.0,5,0,5,5_0 +7810,3.0,7.0,31.0,112,63,43,0.0,460,0.0,0.0,170.0,0.0,2.0,5.0,1.0,3.0,1.8,2221.7343106702747,3016.0,0.0,31903.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17723.888888888887,2,0,2_0,2_1 +7811,13.0,13.0,34.0,111,48,60,0.0,4600,0.0,0.0,99999.0,617.0,2.0,3.0,2.0,4.0,2.1,1040.1627190113647,0.0,0.0,46365.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,22078.571428571428,3,0,3_0,3_0 +7812,1.0,3.0,30.0,111,37,20,0.0,4601,0.0,300.0,0.0,850.0,1.0,2.0,0.0,1.0,1.0,5557.047628333064,0.0,0.0,41682.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,41682.0,5,0,5,5_0 +7813,0.0,0.0,50.0,111,46,60,0.0,4602,0.0,0.0,0.0,544.0,1.0,3.0,1.0,2.0,1.5,1178.7686278827841,0.0,0.0,20871.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13914.0,2,0,2_0,2_0 +7814,9.0,9.0,24.0,111,33,20,0.0,4603,0.0,0.0,0.0,243.0,1.0,3.0,0.0,2.0,1.5,8961.015450250576,5339.88,0.0,30139.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,20092.666666666668,3,0,3_1,3_0 +7815,9.0,9.0,35.0,111,54,43,0.0,4604,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5457.740549339621,3286.4,0.0,21180.0,1,3,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21180.0,3,0,3_0,3_0 +7816,3.0,3.0,51.0,221,43,31,0.0,4605,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1516.8550215061177,4157.92,0.0,236506.0,1,1,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,94602.4,5,0,5,5_0 +7817,3.0,3.0,50.0,111,46,20,0.0,4607,0.0,600.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2532.864432673391,0.0,0.0,19734.0,1,1,8,7.0,1,3.0,1.0,1.0,0,0,0,1,0,0,1.0,2.0,19734.0,3,0,3_0,3_0 +7818,0.0,0.0,74.0,400,74,41,0.0,4608,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2164.4417099295697,0.0,0.0,20680.0,5,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20680.0,3,0,3_0,3_0 +7819,8.0,12.0,30.0,111,22,31,0.0,4609,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2561.2654288616586,0.0,0.0,58310.0,1,3,8,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,38873.333333333336,5,0,5,5_0 +7820,1.0,1.0,18.0,111,84,41,1.0,4610,0.0,350.0,0.0,78.0,0.0,1.0,0.0,1.0,1.0,4017.654720213925,0.0,23000.0,3303.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,3303.0,1,0,1_1,1_0 +7821,2.0,5.0,45.0,111,54,43,0.0,4612,0.0,0.0,0.0,420.0,2.0,4.0,1.0,2.0,1.5,1757.1701252506248,1560.0,0.0,36363.0,1,3,6,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,24242.0,4,0,4_0,4_0 +7822,6.0,10.0,44.0,111,38,43,0.0,4613,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,368.578265035386,0.0,0.0,137306.0,1,1,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,76281.11111111111,5,0,5,5_0 +7823,1.0,4.0,43.0,111,33,12,2.0,4614,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3867.7539361606528,0.0,11700.0,38881.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,38881.0,5,0,5,5_0 +7824,4.0,9.0,81.0,112,74,60,0.0,4615,0.0,0.0,130.0,0.0,0.0,4.0,0.0,2.0,1.5,1892.238726666446,1768.0,0.0,43303.0,5,1,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,28868.666666666668,4,0,4_0,4_1 +7825,0.0,6.0,43.0,211,63,50,0.0,4618,0.0,120.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3507.243405533031,0.0,0.0,22081.0,1,2,1,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22081.0,3,0,3_0,3_0 +7826,9.0,12.0,60.0,111,75,70,0.0,462,0.0,0.0,0.0,362.0,0.0,5.0,0.0,2.0,1.5,2622.58610273764,2152.7999999999997,0.0,16124.0,5,3,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,10749.333333333334,1,0,1_0,1_0 +7827,0.0,7.0,47.0,111,37,31,0.0,4620,0.0,300.0,0.0,830.0,2.0,5.0,2.0,4.0,2.1,2267.6664655134746,0.0,0.0,39808.0,4,3,5,4.0,4,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,18956.190476190477,3,0,3_1,3_0 +7828,1.0,1.0,56.0,111,46,30,1.0,4621,0.0,140.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2670.2222455200044,1198.6000000000001,20000.0,45387.0,4,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,30258.0,4,0,4_0,4_0 +7829,9.0,9.0,74.0,112,78,50,0.0,4622,0.0,0.0,144.0,0.0,0.0,5.0,0.0,1.0,1.0,2567.5253765369466,3016.0,0.0,13449.0,5,4,7,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,13449.0,1,0,1_0,1_1 +7830,6.0,6.0,69.0,111,74,50,0.0,4623,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1618.6179732791866,0.0,0.0,38453.0,5,1,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,25635.333333333332,4,0,4_0,4_0 +7831,2.0,14.0,63.0,111,78,70,0.0,4624,0.0,0.0,0.0,342.0,1.0,4.0,0.0,2.0,1.5,2499.372679258588,0.0,0.0,26076.0,5,3,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,17384.0,2,0,2_0,2_0 +7832,3.0,4.0,88.0,400,86,71,0.0,4625,0.0,350.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1814.6164503755435,0.0,0.0,10660.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,10660.0,1,0,1_0,1_1 +7833,0.0,0.0,66.0,111,45,31,0.0,4626,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2069.358198906439,0.0,0.0,31717.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31717.0,4,0,4_0,4_0 +7834,16.0,17.0,70.0,112,77,50,0.0,4627,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2604.8720968985845,1040.0,0.0,20847.0,5,4,6,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20847.0,3,0,3_0,3_1 +7835,14.0,14.0,61.0,111,77,71,0.0,4628,0.0,0.0,0.0,194.0,2.0,4.0,1.0,5.0,2.8,1123.2134378122266,0.0,0.0,38148.0,5,3,8,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13624.285714285716,1,0,1_1,1_0 +7836,0.0,0.0,45.0,112,43,44,0.0,4629,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,551.0925386866073,2704.52,0.0,22710.0,1,2,9,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12616.666666666666,1,0,1_1,1_0 +7837,3.0,3.0,28.0,111,37,30,0.0,463,0.0,0.0,545.0,563.0,1.0,2.0,0.0,2.0,1.5,5893.293637266936,0.0,0.0,48556.0,4,3,10,8.0,3,3.0,0.0,1.0,0,0,0,0,1,1,3.0,0.0,32370.666666666668,5,0,5,5_0 +7838,0.0,0.0,39.0,111,63,71,0.0,4630,0.0,0.0,0.0,11.0,1.0,5.0,4.0,6.0,3.1,1516.865998769217,1560.0,0.0,37476.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12089.032258064515,1,0,1_1,1_0 +7839,1.0,3.0,50.0,111,63,50,0.0,4631,0.0,340.0,50.0,0.0,3.0,4.0,2.0,4.0,2.5,2330.6567549905585,0.0,0.0,52360.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,20944.0,3,0,3_0,3_0 +7840,0.0,12.0,27.0,111,54,31,2.0,4632,0.0,99999.0,480.0,759.0,2.0,2.0,0.0,2.0,1.5,3106.801211446681,0.0,1500.0,61690.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,41126.666666666664,5,0,5,5_0 +7841,11.0,19.0,69.0,111,74,10,0.0,4633,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,7187.667970540026,0.0,0.0,42358.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,28238.666666666668,4,0,4_0,4_0 +7842,21.0,21.0,70.0,111,75,70,0.0,4635,0.0,0.0,450.0,0.0,0.0,5.0,0.0,2.0,1.5,1646.1638989824207,0.0,0.0,35444.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,23629.333333333332,3,0,3_0,3_0 +7843,0.0,9.0,32.0,111,64,41,2.0,4636,0.0,0.0,0.0,910.0,1.0,2.0,1.0,2.0,1.3,3341.910480851632,0.0,6000.0,18656.0,4,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,14350.76923076923,2,0,2_0,2_0 +7844,3.0,13.0,60.0,111,75,70,0.0,4638,0.0,550.0,500.0,0.0,1.0,5.0,0.0,2.0,1.5,2057.2980282225953,1040.0,0.0,69791.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,46527.333333333336,5,0,5,5_0 +7845,0.0,0.0,26.0,112,52,30,0.0,464,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,4211.373572578515,3328.0,0.0,40817.0,1,3,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22676.11111111111,3,0,3_0,3_0 +7846,2.0,11.0,47.0,111,46,44,0.0,4640,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2213.53766277857,5707.0,0.0,60514.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26310.434782608696,4,0,4_0,4_0 +7847,2.0,3.0,54.0,221,67,50,0.0,4641,0.0,99999.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,946.8996346305302,0.0,0.0,41951.0,1,1,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20975.5,3,0,3_0,3_0 +7848,0.0,5.0,46.0,111,67,71,0.0,4642,0.0,0.0,80.0,181.0,2.0,4.0,1.0,3.0,2.0,3020.8557824965696,0.0,0.0,9532.0,4,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,4766.0,1,0,1_1,1_0 +7849,8.0,24.0,75.0,112,78,71,0.0,4644,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2008.921574630504,1820.0,0.0,32264.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21509.333333333332,3,0,3_0,3_1 +7850,7.0,9.0,48.0,112,34,31,0.0,4645,0.0,750.0,0.0,0.0,3.0,6.0,2.0,3.0,2.0,1093.8499211256724,2373.28,0.0,36740.0,1,1,9,3.0,2,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18370.0,2,0,2_0,2_0 +7851,0.0,0.0,57.0,300,78,71,0.0,4646,0.0,50.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2309.0661423217553,1040.0,0.0,16580.0,4,1,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,16580.0,2,0,2_0,2_1 +7852,3.0,5.0,46.0,111,65,50,0.0,4647,0.0,0.0,99999.0,0.0,3.0,5.0,3.0,5.0,2.8,1872.2661386469547,0.0,0.0,49461.0,1,2,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17664.64285714286,2,0,2_0,2_0 +7853,0.0,8.0,30.0,111,46,30,2.0,4649,0.0,600.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1233.5382502873488,0.0,6400.0,28960.0,1,2,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,22276.923076923074,3,0,3_0,3_0 +7854,1.0,10.0,32.0,120,42,30,2.0,4650,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2895.7527164192193,3356.6,7000.0,43575.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20750.0,3,0,3_0,3_1 +7855,0.0,0.0,29.0,111,54,31,0.0,4652,0.0,0.0,0.0,270.0,1.0,4.0,2.0,3.0,1.6,690.9604368963314,0.0,0.0,26533.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16583.125,2,0,2_1,2_0 +7856,2.0,2.0,36.0,111,37,30,0.0,4655,0.0,250.0,0.0,806.0,2.0,4.0,3.0,5.0,2.4,1306.7115384415615,0.0,0.0,56747.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,23644.583333333336,3,0,3_0,3_0 +7857,3.0,11.0,61.0,111,33,31,0.0,4657,0.0,0.0,50.0,0.0,1.0,3.0,0.0,1.0,1.0,2761.329536503245,0.0,0.0,32530.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,32530.0,5,0,5,5_0 +7858,8.0,13.0,68.0,111,74,60,0.0,4659,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1438.7540897107813,2372.76,0.0,47431.0,5,2,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31620.666666666668,4,0,4_0,4_0 +7859,2.0,4.0,58.0,111,63,50,0.0,466,0.0,0.0,0.0,329.0,1.0,4.0,0.0,2.0,1.5,1772.6199242079344,2600.0,0.0,25652.0,1,3,8,6.0,3,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,17101.333333333332,2,0,2_0,2_0 +7860,0.0,0.0,62.0,222,77,50,0.0,4660,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3484.5931166379387,4560.4,0.0,40779.0,5,1,1,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27186.0,4,0,4_0,4_1 +7861,0.0,0.0,40.0,111,38,20,0.0,4661,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,836.266206282468,2663.44,0.0,34300.0,1,4,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21437.5,3,0,3_0,3_0 +7862,0.0,0.0,46.0,111,48,71,1.0,4662,0.0,0.0,99999.0,0.0,3.0,4.0,1.0,3.0,2.0,1630.9848717705931,0.0,15170.0,44660.0,1,4,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22330.0,3,0,3_0,3_0 +7863,1.0,1.0,73.0,300,78,70,1.0,4663,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2187.5583739234653,2605.72,20000.0,26267.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17511.333333333332,2,0,2_0,2_1 +7864,0.0,0.0,24.0,111,67,50,1.0,4664,0.0,0.0,250.0,0.0,2.0,3.0,0.0,2.0,1.5,1200.3452611928162,0.0,14000.0,20214.0,1,3,7,5.0,5,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,13476.0,1,0,1_0,1_0 +7865,5.0,10.0,52.0,111,43,31,0.0,4665,0.0,0.0,0.0,42.0,1.0,3.0,1.0,2.0,1.3,1748.930534994159,0.0,0.0,14176.0,1,3,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,10904.615384615385,1,0,1_1,1_0 +7866,0.0,0.0,52.0,111,43,33,0.0,4666,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2805.6281157840986,0.0,0.0,7055.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7055.0,1,0,1_0,1_0 +7867,21.0,21.0,65.0,112,75,70,0.0,4667,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1681.3959799267682,0.0,0.0,30200.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20133.333333333332,3,0,3_0,3_1 +7868,15.0,19.0,71.0,111,55,41,0.0,4668,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4660.635220462179,2815.7999999999997,0.0,29229.0,5,1,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,29229.0,4,0,4_0,4_0 +7869,0.0,0.0,81.0,300,74,50,0.0,4669,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2493.819849308784,0.0,0.0,43059.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,43059.0,5,0,5,5_1 +7870,8.0,10.0,60.0,112,75,50,0.0,467,0.0,550.0,130.0,0.0,0.0,5.0,0.0,2.0,1.5,2702.1044334900357,0.0,0.0,39996.0,5,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26664.0,4,0,4_0,4_1 +7871,14.0,14.0,45.0,221,42,30,0.0,4670,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,2.0,566.0462879257493,0.0,0.0,31701.0,1,2,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15850.5,2,0,2_0,2_0 +7872,11.0,11.0,60.0,111,75,31,0.0,4672,80.0,375.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1645.8396502133423,3120.0,0.0,26777.0,5,1,8,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,26777.0,4,0,4_0,4_0 +7873,1.0,18.0,37.0,112,46,31,2.0,4674,0.0,350.0,0.0,685.0,2.0,4.0,1.0,3.0,1.8,2831.979382578415,3107.0,2200.0,52039.0,1,3,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,28910.555555555555,4,0,4_0,4_0 +7874,4.0,4.0,89.0,111,77,70,0.0,4676,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2571.3318664723183,0.0,0.0,33675.0,5,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,33675.0,5,0,5,5_0 +7875,6.0,6.0,41.0,111,56,50,0.0,4678,0.0,0.0,0.0,5.0,1.0,4.0,2.0,3.0,1.6,1612.163985084571,0.0,0.0,15164.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,9477.5,1,0,1_1,1_0 +7876,2.0,2.0,65.0,111,77,50,0.0,4679,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2002.5164746088117,0.0,0.0,53773.0,5,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,26886.5,4,0,4_0,4_0 +7877,5.0,12.0,48.0,111,68,30,0.0,468,0.0,0.0,0.0,0.0,1.0,1.0,2.0,4.0,2.1,5017.718691593028,0.0,0.0,9500.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,4523.809523809524,1,0,1_0,1_0 +7878,7.0,7.0,63.0,111,77,50,0.0,4680,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2859.3385085832297,0.0,0.0,23210.0,4,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,23210.0,3,0,3_0,3_0 +7879,4.0,4.0,57.0,112,63,50,0.0,4681,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2976.998100579434,0.0,0.0,20837.0,1,1,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20837.0,3,0,3_0,3_0 +7880,4.0,4.0,56.0,111,33,42,0.0,4682,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2027.5878199999102,0.0,0.0,53175.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26587.5,4,0,4_0,4_0 +7881,8.0,10.0,39.0,111,35,20,0.0,4684,0.0,0.0,150.0,0.0,2.0,3.0,1.0,3.0,1.8,3311.560653703806,0.0,0.0,63400.0,1,3,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,35222.22222222222,5,0,5,5_0 +7882,14.0,14.0,69.0,111,86,30,0.0,4685,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1500.0453887097244,0.0,0.0,53283.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,35522.0,5,0,5,5_0 +7883,2.0,16.0,58.0,112,21,60,0.0,4686,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2166.534470143055,0.0,0.0,15650.0,1,1,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,10433.333333333334,1,0,1_0,1_1 +7884,1.0,1.0,32.0,111,67,71,1.0,4687,0.0,0.0,0.0,20.0,1.0,4.0,4.0,6.0,2.7,1541.997266329474,0.0,15000.0,22336.0,4,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,8272.592592592591,1,0,1_1,1_0 +7885,13.0,13.0,66.0,112,77,50,0.0,4688,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1615.8828591511656,1643.72,0.0,33734.0,5,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,22489.333333333332,3,0,3_0,3_1 +7886,2.0,3.0,52.0,400,52,44,0.0,469,0.0,410.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2671.8100616290003,0.0,0.0,48366.0,1,2,0,1.0,2,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,32244.0,5,0,5,5_0 +7887,1.0,6.0,67.0,112,75,60,0.0,4690,0.0,250.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1850.5444614711084,0.0,0.0,22446.0,5,1,6,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14964.0,2,0,2_0,2_0 +7888,6.0,8.0,35.0,111,38,31,0.0,4691,0.0,730.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4643.793185756793,0.0,0.0,36734.0,1,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,36734.0,5,0,5,5_0 +7889,3.0,3.0,23.0,112,54,31,0.0,4692,0.0,0.0,0.0,359.0,1.0,1.0,0.0,1.0,1.0,3585.8605222594747,0.0,0.0,16667.0,4,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,16667.0,2,0,2_1,2_0 +7890,4.0,13.0,46.0,111,46,31,0.0,4693,0.0,0.0,0.0,269.0,2.0,5.0,3.0,4.0,2.1,510.9476727472603,364.0,0.0,57012.0,1,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,27148.571428571428,4,0,4_1,4_0 +7891,4.0,4.0,74.0,400,77,41,0.0,4694,0.0,0.0,75.0,0.0,0.0,4.0,0.0,2.0,1.5,2402.845986341077,0.0,0.0,39480.0,5,1,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,26320.0,4,0,4_0,4_1 +7892,6.0,6.0,63.0,111,21,44,0.0,4695,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,2302.444292922089,0.0,0.0,46097.0,1,1,4,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,30731.333333333332,4,0,4_0,4_0 +7893,3.0,3.0,39.0,221,48,31,0.0,4696,0.0,100221.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,948.7155492813747,0.0,0.0,34310.0,1,3,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19061.11111111111,3,0,3_0,3_0 +7894,5.0,5.0,62.0,112,77,71,0.0,4697,0.0,300.0,0.0,555.0,1.0,3.0,0.0,2.0,1.5,2588.828734575625,0.0,0.0,30692.0,5,3,5,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20461.333333333332,3,0,3_0,3_1 +7895,0.0,0.0,63.0,112,77,70,0.0,4698,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,7261.991518605439,0.0,0.0,15345.0,5,1,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15345.0,2,0,2_0,2_0 +7896,0.0,0.0,66.0,221,74,31,0.0,4699,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1091.9832231211383,649.48,0.0,58108.0,5,1,1,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,38738.666666666664,5,0,5,5_0 +7897,0.0,0.0,29.0,111,56,50,0.0,47,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1166.6992218579433,0.0,0.0,15706.0,4,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9816.25,1,0,1_1,1_0 +7898,17.0,19.0,54.0,111,62,50,0.0,4700,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,869.3604947353331,0.0,0.0,32026.0,1,1,4,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21350.666666666668,3,0,3_0,3_0 +7899,9.0,22.0,72.0,111,78,70,0.0,4701,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2334.260924704885,0.0,0.0,21275.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,14183.333333333334,2,0,2_0,2_0 +7900,7.0,7.0,19.0,111,54,42,0.0,4702,0.0,450.0,0.0,689.0,3.0,4.0,0.0,3.0,2.0,2635.9609645651244,0.0,0.0,6937.0,3,3,9,7.0,5,3.0,1.0,1.0,0,0,0,1,0,1,0.0,3.0,3468.5,1,0,1_1,1_0 +7901,1.0,4.0,41.0,112,34,30,0.0,4703,0.0,700.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1516.3814509680908,0.0,0.0,61640.0,1,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,25683.333333333336,4,0,4_0,4_0 +7902,3.0,3.0,50.0,211,46,20,0.0,4704,0.0,250.0,200.0,149.0,1.0,1.0,0.0,1.0,1.0,1534.282419448084,0.0,0.0,18212.0,1,3,1,3.0,1,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,18212.0,2,0,2_1,2_0 +7903,13.0,13.0,69.0,300,22,70,0.0,4705,0.0,500.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2374.002274622834,1393.6000000000001,0.0,32626.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21750.666666666668,3,0,3_0,3_1 +7904,12.0,12.0,53.0,120,63,50,0.0,4706,0.0,0.0,850.0,0.0,4.0,4.0,2.0,4.0,2.5,2324.9170291516575,4940.0,0.0,58399.0,1,2,0,0.0,4,5.0,0.0,1.0,1,0,0,0,0,0,4.0,1.0,23359.6,3,0,3_0,3_1 +7905,0.0,0.0,39.0,300,62,71,0.0,4708,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2117.268433597037,0.0,0.0,45396.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,17460.0,2,0,2_1,2_1 +7906,0.0,0.0,55.0,112,37,12,0.0,4713,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2654.792891716833,0.0,0.0,81436.0,1,2,10,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,81436.0,5,0,5,5_0 +7907,0.0,0.0,32.0,111,47,0,0.0,4714,0.0,0.0,0.0,606.0,1.0,2.0,0.0,1.0,1.0,2982.5337946817317,0.0,0.0,26460.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26460.0,4,0,4_0,4_0 +7908,14.0,14.0,50.0,111,37,31,0.0,4715,0.0,0.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,1834.8620029084934,6344.0,0.0,89820.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,44910.0,5,0,5,5_0 +7909,11.0,11.0,83.0,111,77,50,0.0,4716,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1923.504266221506,0.0,0.0,23524.0,5,1,5,4.0,3,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,15682.666666666666,2,0,2_0,2_0 +7910,16.0,16.0,62.0,300,75,50,0.0,4717,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1967.9750986674062,392.08,0.0,29840.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19893.333333333332,3,0,3_0,3_1 +7911,2.0,5.0,49.0,111,69,50,0.0,4718,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2648.280195601859,0.0,0.0,12978.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12978.0,1,0,1_1,1_0 +7912,0.0,6.0,29.0,120,42,31,2.0,4719,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2514.212214550007,1040.0,4400.0,22683.0,1,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,22683.0,3,0,3_1,3_0 +7913,0.0,0.0,49.0,120,56,71,1.0,472,0.0,150.0,0.0,279.0,2.0,4.0,2.0,3.0,2.0,645.9803630608624,2605.7200000000003,20318.0,18678.0,4,3,0,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9339.0,1,0,1_1,1_0 +7914,3.0,15.0,50.0,120,63,50,0.0,4721,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,1953.146056148763,1742.0,0.0,27693.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11077.2,1,0,1_0,1_1 +7915,5.0,22.0,56.0,111,75,44,0.0,4723,0.0,200.0,60.0,620.0,0.0,3.0,0.0,1.0,1.0,2549.876716971259,0.0,0.0,9861.0,7,3,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,9861.0,1,0,1_0,1_0 +7916,3.0,3.0,69.0,111,75,60,0.0,4724,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1528.3968372376316,0.0,0.0,42148.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,28098.666666666668,4,0,4_0,4_0 +7917,0.0,0.0,50.0,112,33,50,0.0,4725,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2112.627573178235,0.0,0.0,50357.0,1,1,9,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25178.5,4,0,4_0,4_0 +7918,11.0,14.0,34.0,111,37,20,0.0,4729,0.0,200.0,0.0,830.0,2.0,4.0,2.0,4.0,2.1,2002.7028878120166,2598.44,0.0,50349.0,4,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23975.714285714286,4,0,4_0,4_0 +7919,4.0,5.0,66.0,111,78,71,0.0,473,0.0,400.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2507.160489258592,1717.0400000000002,0.0,19718.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,19718.0,3,0,3_0,3_0 +7920,3.0,3.0,28.0,111,85,31,0.0,4730,0.0,150.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,2321.6520679994924,4364.360000000001,0.0,48270.0,4,3,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,26816.666666666664,4,0,4_0,4_0 +7921,13.0,15.0,52.0,111,38,12,0.0,4731,0.0,0.0,600.0,0.0,3.0,5.0,1.0,3.0,2.0,2455.3914293059333,3692.0,0.0,93480.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,46740.0,5,0,5,5_0 +7922,3.0,3.0,29.0,111,52,50,0.0,4734,0.0,80.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5760.438842076874,0.0,0.0,18629.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,18629.0,2,0,2_0,2_0 +7923,0.0,16.0,23.0,300,68,71,2.0,4735,0.0,600.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3366.699273598256,4160.52,1200.0,27914.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,18609.333333333332,2,0,2_1,2_1 +7924,0.0,0.0,79.0,111,74,41,0.0,4736,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1911.3868487233312,0.0,0.0,29046.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19364.0,3,0,3_0,3_0 +7925,3.0,9.0,71.0,111,77,70,0.0,4737,0.0,0.0,0.0,285.0,0.0,3.0,0.0,1.0,1.0,3898.7729506417245,0.0,0.0,26525.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,26525.0,4,0,4_0,4_0 +7926,0.0,0.0,33.0,300,85,60,0.0,4738,0.0,0.0,0.0,104.0,0.0,3.0,0.0,1.0,1.0,1974.6447086043638,0.0,0.0,14678.0,7,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14678.0,2,0,2_1,2_0 +7927,0.0,0.0,75.0,111,74,41,0.0,4739,0.0,0.0,0.0,0.0,0.0,10.0,0.0,2.0,1.5,1349.2541036884902,0.0,0.0,43392.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28928.0,4,0,4_0,4_0 +7928,9.0,9.0,84.0,111,78,70,0.0,4740,0.0,147.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2725.088871101651,0.0,0.0,22040.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22040.0,3,0,3_0,3_0 +7929,0.0,0.0,70.0,120,72,50,0.0,4743,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1390.7528166564575,0.0,0.0,24244.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16162.666666666666,2,0,2_0,2_0 +7930,9.0,9.0,48.0,111,64,43,0.0,4745,0.0,0.0,0.0,620.0,1.0,5.0,3.0,5.0,2.6,1877.9420264971898,0.0,0.0,46801.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,18000.384615384613,2,0,2_1,2_0 +7931,37.0,37.0,25.0,300,64,43,0.0,4747,0.0,0.0,0.0,620.0,2.0,4.0,0.0,2.0,1.5,240.75525799981932,0.0,0.0,35511.0,1,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23674.0,3,0,3_0,3_1 +7932,7.0,12.0,48.0,211,22,71,0.0,4748,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2305.862372685807,0.0,0.0,11202.0,4,3,3,3.0,3,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,7468.0,1,0,1_1,1_0 +7933,1.0,1.0,62.0,111,74,12,2.0,4749,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2026.33957557149,2367.04,3500.0,144270.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,96180.0,5,0,5,5_0 +7934,7.0,7.0,46.0,120,56,43,0.0,4750,0.0,150.0,50.0,0.0,3.0,6.0,1.0,3.0,2.0,3611.2276723617383,2600.0,0.0,20966.0,1,3,0,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,10483.0,1,0,1_1,1_0 +7935,6.0,6.0,24.0,111,84,30,0.0,4752,0.0,0.0,0.0,377.0,0.0,1.0,0.0,1.0,1.0,2956.2107777211922,780.0,0.0,7236.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,7236.0,1,0,1_1,1_0 +7936,0.0,0.0,45.0,400,21,50,0.0,4753,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2705.3802113513498,3565.6399999999994,0.0,78068.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33942.608695652176,5,0,5,5_1 +7937,16.0,16.0,45.0,112,68,50,0.0,4754,0.0,0.0,0.0,0.0,2.0,5.0,2.0,3.0,2.0,642.8019466015861,0.0,0.0,24899.0,1,3,6,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,12449.5,1,0,1_1,1_1 +7938,13.0,13.0,62.0,111,75,70,0.0,4755,0.0,0.0,199998.0,0.0,1.0,4.0,0.0,2.0,1.5,2770.260100977239,0.0,0.0,25098.0,5,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,16732.0,2,0,2_0,2_0 +7939,0.0,2.0,66.0,400,71,71,0.0,4756,0.0,150.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1845.8565260714568,0.0,0.0,11092.0,5,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11092.0,1,0,1_0,1_1 +7940,1.0,7.0,71.0,111,75,33,0.0,4758,0.0,180.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3018.312928198239,0.0,0.0,15536.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,15536.0,2,0,2_0,2_0 +7941,13.0,13.0,58.0,112,52,50,0.0,476,0.0,0.0,0.0,340.0,1.0,2.0,0.0,1.0,1.0,3371.7247092082193,2340.0,0.0,16916.0,1,3,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16916.0,2,0,2_0,2_0 +7942,0.0,0.0,74.0,212,78,70,0.0,4760,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1805.6026166247534,0.0,0.0,25595.0,5,1,2,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17063.333333333332,2,0,2_0,2_1 +7943,20.0,20.0,46.0,300,65,71,0.0,4761,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2000.8073387624008,4160.0,0.0,47530.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19012.0,3,0,3_0,3_1 +7944,7.0,7.0,82.0,300,75,44,0.0,4762,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,2398.779319476186,0.0,0.0,43373.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,28915.333333333332,4,0,4_0,4_1 +7945,1.0,1.0,63.0,111,74,31,0.0,4763,0.0,0.0,0.0,740.0,0.0,3.0,0.0,1.0,1.0,3321.19736153464,3406.52,0.0,49206.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,49206.0,5,0,5,5_0 +7946,10.0,12.0,73.0,111,78,70,0.0,4766,0.0,0.0,500.0,0.0,0.0,4.0,0.0,2.0,1.5,2312.5986721059758,0.0,0.0,28580.0,5,1,10,8.0,3,3.0,0.0,1.0,0,0,0,0,1,0,3.0,0.0,19053.333333333332,3,0,3_0,3_0 +7947,1.0,1.0,84.0,300,72,71,0.0,4767,600.0,0.0,0.0,410.0,0.0,4.0,0.0,1.0,1.0,2902.8729475105733,0.0,0.0,12280.0,5,3,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12280.0,1,0,1_0,1_1 +7948,0.0,0.0,70.0,300,78,50,0.0,4768,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2627.6228472389566,0.0,0.0,17025.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17025.0,2,0,2_0,2_1 +7949,0.0,0.0,73.0,300,78,50,0.0,4769,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2635.3810297843897,0.0,0.0,19305.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19305.0,3,0,3_0,3_0 +7950,0.0,15.0,27.0,111,85,50,0.0,477,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,752.3014493512702,0.0,0.0,17132.0,6,3,6,5.0,2,3.0,0.0,0.0,0,0,1,0,0,1,1.0,2.0,10707.5,1,0,1_1,1_0 +7951,1.0,1.0,42.0,120,47,50,0.0,4770,60.0,0.0,50.0,0.0,2.0,5.0,4.0,6.0,3.1,1969.8954629682291,2080.0,0.0,40105.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,12937.096774193547,1,0,1_0,1_1 +7952,4.0,4.0,49.0,111,46,30,0.0,4771,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3320.821668122055,3126.76,0.0,38124.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,25416.0,4,0,4_0,4_0 +7953,4.0,11.0,75.0,400,74,10,0.0,4772,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1797.0484127573047,0.0,0.0,86778.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,57852.0,5,0,5,5_0 +7954,9.0,9.0,69.0,111,22,41,0.0,4773,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2556.7354074096415,0.0,0.0,83161.0,1,1,10,8.0,3,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,55440.666666666664,5,0,5,5_0 +7955,0.0,0.0,54.0,112,47,50,0.0,4774,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1669.0443936908928,0.0,0.0,31998.0,1,2,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21332.0,3,0,3_0,3_1 +7956,2.0,2.0,40.0,111,43,20,0.0,4776,0.0,0.0,0.0,550.0,2.0,4.0,2.0,4.0,2.5,2455.8083654610996,1300.0,0.0,47092.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18836.8,3,0,3_0,3_0 +7957,3.0,10.0,22.0,211,63,71,0.0,4777,0.0,20.0,10.0,0.0,1.0,3.0,1.0,3.0,1.8,981.9152494297606,0.0,0.0,20716.0,1,3,3,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,11508.888888888889,1,0,1_1,1_0 +7958,9.0,9.0,39.0,211,54,43,0.0,4779,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,796.0093149863067,124.8,0.0,19920.0,1,3,1,3.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,13280.0,1,0,1_1,1_0 +7959,4.0,4.0,34.0,300,47,31,0.0,478,0.0,200.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2679.314658353874,0.0,0.0,50361.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23981.42857142857,4,0,4_0,4_1 +7960,4.0,4.0,61.0,112,77,70,0.0,4782,0.0,200.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1838.020938734123,0.0,0.0,46930.0,5,1,6,0.0,3,4.0,0.0,1.0,1,0,0,0,0,0,1.0,3.0,31286.666666666668,4,0,4_0,4_1 +7961,4.0,4.0,47.0,112,48,50,0.0,4783,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2826.913298241558,1893.8400000000001,0.0,52495.0,1,1,9,1.0,4,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,26247.5,4,0,4_0,4_0 +7962,9.0,21.0,57.0,111,34,10,0.0,4785,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4278.592895608692,0.0,0.0,86939.0,1,2,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,86939.0,5,0,5,5_0 +7963,1.0,5.0,83.0,112,77,60,2.0,4787,0.0,1000.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3088.67259565824,0.0,12700.0,13120.0,5,1,10,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,13120.0,1,0,1_0,1_0 +7964,14.0,14.0,76.0,120,71,71,0.0,4789,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2072.1279865689407,2081.04,0.0,21220.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14146.666666666666,2,0,2_0,2_1 +7965,3.0,5.0,59.0,112,56,50,0.0,479,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,4281.267027935493,0.0,0.0,23086.0,4,3,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,15390.666666666666,2,0,2_1,2_0 +7966,11.0,11.0,34.0,112,52,50,0.0,4790,0.0,0.0,50.0,298.0,1.0,3.0,1.0,2.0,1.3,1410.892860204915,0.0,0.0,28605.0,1,3,10,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,22003.846153846152,3,0,3_1,3_0 +7967,2.0,13.0,26.0,111,48,30,0.0,4792,0.0,400.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4353.9864796094635,0.0,0.0,40445.0,1,2,10,8.0,3,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,26963.333333333332,4,0,4_0,4_0 +7968,0.0,0.0,34.0,111,67,71,0.0,4795,0.0,0.0,0.0,89.0,1.0,2.0,0.0,1.0,1.0,2042.9143273539546,0.0,0.0,9922.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9922.0,1,0,1_1,1_0 +7969,0.0,18.0,47.0,400,52,60,2.0,4797,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,275.49214159994676,0.0,2000.0,16802.0,1,3,0,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,11201.333333333334,1,0,1_0,1_0 +7970,8.0,8.0,43.0,112,37,20,0.0,4798,0.0,200.0,0.0,1950.0,2.0,9.0,3.0,5.0,2.4,2388.995353945324,811.1999999999999,0.0,93510.0,1,3,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,38962.5,5,0,5,5_1 +7971,0.0,4.0,41.0,112,85,50,0.0,4799,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,1133.7500403405425,0.0,0.0,8160.0,4,3,9,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,6276.923076923077,1,0,1_0,1_1 +7972,1.0,1.0,41.0,211,52,50,0.0,48,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.1,589.1078317783387,0.0,0.0,39078.0,1,2,2,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,18608.571428571428,2,0,2_1,2_0 +7973,3.0,7.0,87.0,400,77,70,0.0,480,0.0,0.0,400.0,0.0,0.0,4.0,0.0,1.0,1.0,3033.641766645022,0.0,0.0,28776.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,28776.0,4,0,4_0,4_1 +7974,6.0,26.0,43.0,111,38,20,0.0,4800,0.0,240.0,0.0,593.0,1.0,2.0,0.0,1.0,1.0,4015.915179384277,2387.84,0.0,61943.0,1,3,7,6.0,1,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,61943.0,5,0,5,5_0 +7975,0.0,0.0,64.0,111,77,71,0.0,4801,0.0,0.0,0.0,448.0,0.0,3.0,0.0,1.0,1.0,2569.861487238232,0.0,0.0,14584.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14584.0,2,0,2_0,2_0 +7976,0.0,13.0,53.0,111,72,71,2.0,4802,0.0,0.0,25.0,0.0,0.0,2.0,0.0,1.0,1.0,3771.6149093434915,0.0,1000.0,9528.0,4,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,9528.0,1,0,1_1,1_0 +7977,0.0,0.0,68.0,111,74,70,0.0,4804,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1858.4699741623801,0.0,0.0,49719.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33146.0,5,0,5,5_0 +7978,1.0,5.0,80.0,111,77,50,2.0,4805,0.0,0.0,0.0,539.0,0.0,4.0,1.0,2.0,1.5,4017.8244065510426,2600.0,11500.0,28150.0,5,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18766.666666666668,3,0,3_0,3_0 +7979,0.0,17.0,52.0,111,62,71,2.0,4806,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,709.5383195872447,0.0,700.0,24251.0,1,3,6,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,16167.333333333334,2,0,2_1,2_0 +7980,14.0,14.0,31.0,111,84,60,0.0,4807,0.0,140.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,906.3781647256792,0.0,0.0,15000.0,3,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11538.461538461537,1,0,1_0,1_0 +7981,4.0,13.0,51.0,111,68,41,0.0,4808,0.0,100.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,2570.2192909397163,0.0,0.0,26250.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,14583.333333333332,2,0,2_0,2_0 +7982,5.0,10.0,22.0,111,84,41,0.0,4809,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2910.714334339067,0.0,0.0,25379.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,25379.0,4,0,4_1,4_0 +7983,0.0,0.0,86.0,112,,70,0.0,481,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1332.0173850287845,0.0,0.0,21480.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21480.0,3,0,3_0,3_0 +7984,0.0,0.0,68.0,211,77,60,0.0,4811,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2312.8079442127028,1472.12,0.0,11849.0,5,1,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11849.0,1,0,1_0,1_0 +7985,0.0,0.0,49.0,112,21,50,0.0,4812,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2372.0583727854205,0.0,0.0,71771.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28708.4,4,0,4_0,4_1 +7986,1.0,9.0,45.0,112,43,33,0.0,4814,0.0,1100.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,1451.3372362997432,1346.8,0.0,55615.0,1,1,6,0.0,4,5.0,0.0,1.0,1,0,0,0,0,0,1.0,4.0,19862.5,3,0,3_0,3_1 +7987,0.0,0.0,49.0,111,85,50,0.0,4817,0.0,0.0,0.0,0.0,0.0,5.0,4.0,7.0,3.8,1300.3164925422975,0.0,0.0,26704.0,7,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7027.368421052632,1,0,1_1,1_0 +7988,0.0,0.0,54.0,300,12,50,0.0,4818,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2239.8262404403768,0.0,0.0,8051.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,4025.5,1,0,1_0,1_1 +7989,10.0,15.0,49.0,111,62,50,0.0,4819,0.0,0.0,360.0,407.0,1.0,3.0,1.0,2.0,1.5,811.9004499187458,93.08,0.0,22077.0,1,3,8,6.0,2,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,14718.0,2,0,2_1,2_0 +7990,2.0,8.0,66.0,111,75,50,0.0,482,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,1573.5838890345346,0.0,0.0,14114.0,5,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14114.0,2,0,2_0,2_0 +7991,0.0,0.0,23.0,111,67,31,0.0,4820,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2082.9224831537226,0.0,0.0,12618.0,4,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8412.0,1,0,1_0,1_0 +7992,6.0,19.0,42.0,111,34,10,0.0,4822,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,4760.437688118404,0.0,0.0,139684.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,66516.19047619047,5,0,5,5_0 +7993,2.0,4.0,54.0,112,38,12,0.0,4823,0.0,0.0,0.0,0.0,1.0,8.0,1.0,3.0,2.0,1554.4487376860475,0.0,0.0,35728.0,1,1,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17864.0,2,0,2_0,2_1 +7994,6.0,7.0,50.0,111,22,41,0.0,4824,0.0,700.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,3691.6211815920665,3530.8,0.0,36288.0,1,2,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,14515.2,2,0,2_0,2_0 +7995,0.0,0.0,37.0,111,43,44,0.0,4825,0.0,0.0,0.0,640.0,1.0,3.0,1.0,2.0,1.3,4978.721481536274,2901.6,0.0,20648.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15883.076923076922,2,0,2_0,2_0 +7996,11.0,12.0,63.0,111,43,20,0.0,4826,0.0,0.0,0.0,850.0,1.0,4.0,0.0,1.0,1.0,2115.6650667457557,2340.0,0.0,35246.0,1,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,35246.0,5,0,5,5_0 +7997,5.0,10.0,58.0,111,42,30,0.0,4829,0.0,0.0,200.0,0.0,2.0,4.0,0.0,2.0,1.5,1595.1022195922294,0.0,0.0,62269.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,41512.666666666664,5,0,5,5_0 +7998,18.0,19.0,38.0,111,43,33,0.0,4831,0.0,450.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2296.8601967049194,0.0,0.0,66589.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,31709.04761904762,4,0,4_0,4_0 +7999,0.0,13.0,48.0,111,65,71,0.0,4832,0.0,800.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2405.407336260144,0.0,0.0,27675.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11070.0,1,0,1_0,1_0 +8000,0.0,0.0,61.0,111,77,50,0.0,4834,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3145.5721996398524,0.0,0.0,29280.0,5,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19520.0,3,0,3_0,3_0 +8001,3.0,9.0,45.0,111,64,70,0.0,4835,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.1,312.14725165107177,0.0,0.0,21039.0,4,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,10018.571428571428,1,0,1_1,1_0 +8002,0.0,0.0,53.0,112,64,71,0.0,4839,0.0,0.0,0.0,0.0,1.0,7.0,2.0,4.0,2.5,1999.2941595672362,1040.0,0.0,27440.0,1,3,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10976.0,1,0,1_1,1_0 +8003,4.0,7.0,63.0,111,78,71,0.0,4841,0.0,0.0,0.0,59.0,0.0,2.0,0.0,1.0,1.0,3499.1028034370925,0.0,0.0,12624.0,5,3,8,6.0,1,4.0,0.0,0.0,0,0,1,0,0,1,0.0,4.0,12624.0,1,0,1_1,1_0 +8004,10.0,11.0,45.0,111,56,44,0.0,4842,0.0,0.0,0.0,217.0,1.0,3.0,1.0,2.0,1.3,820.8502792339668,1560.0,0.0,21280.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,16369.23076923077,2,0,2_1,2_0 +8005,0.0,0.0,30.0,221,56,42,0.0,4843,0.0,0.0,0.0,390.0,1.0,3.0,1.0,2.0,1.3,2886.9975573666898,525.1999999999999,0.0,8960.0,1,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,6892.307692307692,1,0,1_0,1_0 +8006,0.0,0.0,30.0,300,63,50,0.0,4844,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3394.1078341102657,7189.0,0.0,13831.0,1,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13831.0,1,0,1_0,1_1 +8007,0.0,13.0,27.0,111,46,43,0.0,4846,0.0,950.0,0.0,419.0,1.0,3.0,1.0,2.0,1.3,1341.8991966225199,0.0,0.0,16620.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,12784.615384615385,1,0,1_0,1_0 +8008,8.0,17.0,71.0,221,74,50,0.0,4847,0.0,250.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1631.5742852582696,2300.48,0.0,51203.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,34135.333333333336,5,0,5,5_0 +8009,8.0,21.0,51.0,111,47,71,0.0,4848,0.0,70.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2058.0228391050227,0.0,0.0,58501.0,1,1,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,29250.5,4,0,4_0,4_0 +8010,0.0,0.0,53.0,111,43,33,0.0,4849,0.0,0.0,0.0,0.0,2.0,10.0,2.0,3.0,2.0,1932.9589967794752,1716.0,0.0,100297.0,1,4,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,50148.5,5,0,5,5_0 +8011,1.0,6.0,59.0,112,34,33,2.0,485,0.0,300.0,200.0,0.0,1.0,5.0,0.0,1.0,1.0,2158.717038252693,0.0,16500.0,59835.0,1,1,9,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,59835.0,5,0,5,5_0 +8012,0.0,0.0,88.0,111,74,41,0.0,4850,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,2670.384599066387,0.0,0.0,93792.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,93792.0,5,0,5,5_0 +8013,21.0,21.0,56.0,111,46,20,0.0,4851,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3175.427258580587,0.0,0.0,8.0,4,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,8.0,1,0,1_0,1_0 +8014,0.0,0.0,57.0,112,53,50,0.0,4852,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1592.477809319234,0.0,0.0,45393.0,1,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30262.0,4,0,4_0,4_1 +8015,2.0,2.0,30.0,300,46,31,0.0,4855,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3481.4669551723387,2058.16,0.0,37980.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21100.0,3,0,3_0,3_1 +8016,0.0,0.0,36.0,111,38,12,0.0,4858,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2282.007598333637,3432.0,0.0,93805.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,44669.04761904762,5,0,5,5_0 +8017,13.0,13.0,87.0,111,74,30,0.0,486,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1736.085923192221,0.0,0.0,55939.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,37292.666666666664,5,0,5,5_0 +8018,0.0,0.0,78.0,112,74,30,0.0,4860,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2389.177022624102,1177.8,0.0,39145.0,5,1,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,39145.0,5,0,5,5_1 +8019,9.0,16.0,47.0,111,38,20,0.0,4863,0.0,0.0,0.0,515.0,2.0,2.0,0.0,2.0,1.5,3705.758931392867,1300.0,0.0,67263.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,44842.0,5,0,5,5_0 +8020,0.0,0.0,44.0,112,53,50,0.0,4866,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1726.4983854101233,0.0,0.0,52140.0,1,2,10,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24828.571428571428,4,0,4_0,4_0 +8021,12.0,12.0,93.0,111,72,44,0.0,4870,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1841.0155758489655,0.0,0.0,16567.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16567.0,2,0,2_0,2_0 +8022,4.0,4.0,41.0,111,46,31,0.0,4871,0.0,1700.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3818.2681551262317,0.0,0.0,48584.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,48584.0,5,0,5,5_0 +8023,1.0,1.0,54.0,111,38,50,0.0,4872,0.0,0.0,30.0,0.0,2.0,1.0,0.0,2.0,1.5,5050.498017107999,0.0,0.0,34496.0,1,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,22997.333333333332,3,0,3_1,3_0 +8024,4.0,4.0,82.0,111,74,10,0.0,4873,0.0,430.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1752.038852125142,0.0,0.0,68864.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,45909.333333333336,5,0,5,5_0 +8025,8.0,10.0,48.0,112,68,71,0.0,4876,0.0,0.0,0.0,0.0,4.0,7.0,5.0,7.0,3.8,675.2263105122469,0.0,0.0,51331.0,1,2,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13508.157894736843,1,0,1_0,1_0 +8026,3.0,3.0,39.0,111,43,33,0.0,4877,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1608.8867217559025,1925.56,0.0,40124.0,1,2,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,30864.615384615383,4,0,4_0,4_0 +8027,6.0,22.0,36.0,111,37,20,0.0,4879,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3271.744167784447,0.0,0.0,36389.0,1,1,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,36389.0,5,0,5,5_0 +8028,9.0,9.0,59.0,111,67,71,0.0,4882,0.0,130.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,636.0237580666984,0.0,0.0,24990.0,1,1,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,19223.076923076922,3,0,3_0,3_0 +8029,0.0,2.0,61.0,112,54,70,0.0,4883,0.0,2000.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2289.903962962274,2702.96,0.0,18009.0,4,1,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,18009.0,2,0,2_0,2_1 +8030,0.0,0.0,81.0,112,71,50,0.0,4884,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1691.6068370891212,0.0,0.0,36442.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24294.666666666668,4,0,4_0,4_0 +8031,6.0,16.0,47.0,112,37,50,0.0,4885,0.0,0.0,130.0,0.0,1.0,2.0,0.0,1.0,1.0,3786.6574199686843,3426.28,0.0,14240.0,4,1,10,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,14240.0,2,0,2_0,2_0 +8032,4.0,19.0,56.0,111,22,30,0.0,4887,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,1796.3485417269085,1560.0,0.0,189488.0,1,1,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,75795.2,5,0,5,5_0 +8033,0.0,0.0,50.0,300,56,41,0.0,4888,0.0,0.0,0.0,0.0,2.0,6.0,1.0,4.0,2.3,2840.49222442784,3640.0,0.0,22087.0,1,1,0,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9603.04347826087,1,0,1_0,1_1 +8034,0.0,13.0,62.0,112,77,60,2.0,489,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2649.731838383571,0.0,2000.0,40645.0,5,1,10,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27096.666666666668,4,0,4_0,4_0 +8035,5.0,5.0,30.0,112,46,50,0.0,4890,0.0,0.0,0.0,756.0,2.0,3.0,1.0,3.0,1.8,2709.491421190756,0.0,0.0,48230.0,1,3,9,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,26794.444444444445,4,0,4_0,4_0 +8036,0.0,0.0,49.0,221,62,50,0.0,4891,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1810.5228697225818,2236.0,0.0,59448.0,1,1,3,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29724.0,4,0,4_0,4_0 +8037,1.0,1.0,26.0,111,47,30,1.0,4893,0.0,400.0,100.0,0.0,1.0,3.0,0.0,1.0,1.0,4461.208414529521,0.0,15200.0,23359.0,1,4,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,23359.0,3,0,3_0,3_0 +8038,0.0,0.0,50.0,111,53,42,0.0,4894,0.0,0.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,1103.3287595897552,4629.04,0.0,54143.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21657.2,3,0,3_0,3_0 +8039,1.0,1.0,43.0,112,62,31,1.0,4896,0.0,150.0,0.0,0.0,2.0,9.0,4.0,6.0,2.9,1953.7649727519308,0.0,16668.0,39340.0,1,2,9,0.0,4,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,13565.517241379312,1,0,1_1,1_1 +8040,4.0,7.0,40.0,112,38,12,0.0,4899,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,3423.7165476996215,3562.5200000000004,0.0,87620.0,1,1,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,41723.80952380952,5,0,5,5_0 +8041,7.0,7.0,36.0,111,54,20,0.0,490,0.0,0.0,0.0,0.0,1.0,2.0,2.0,3.0,1.6,5618.06301485157,0.0,0.0,30506.0,1,2,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,19066.25,3,0,3_0,3_0 +8042,4.0,4.0,76.0,112,75,41,0.0,4901,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2902.5813243942607,1644.76,0.0,39894.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,39894.0,5,0,5,5_0 +8043,0.0,0.0,83.0,112,78,71,0.0,4902,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2633.8690357919363,2080.0,0.0,44267.0,5,1,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22133.5,3,0,3_0,3_0 +8044,1.0,13.0,56.0,112,43,33,0.0,4903,0.0,0.0,350.0,0.0,3.0,6.0,2.0,4.0,2.5,2023.6401976017128,0.0,0.0,65321.0,1,1,9,3.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,26128.4,4,0,4_0,4_0 +8045,17.0,17.0,27.0,111,38,12,0.0,4907,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,5458.3515325495555,5424.12,0.0,49659.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,33106.0,5,0,5,5_0 +8046,0.0,10.0,64.0,111,77,30,0.0,4909,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3920.676272393506,531.44,0.0,19570.0,5,3,6,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,19570.0,3,0,3_0,3_0 +8047,0.0,14.0,80.0,111,74,30,0.0,4910,0.0,0.0,15.0,0.0,0.0,6.0,0.0,2.0,1.5,1596.6081722602357,2537.6,0.0,49862.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,33241.333333333336,5,0,5,5_0 +8048,5.0,5.0,42.0,400,85,42,0.0,4911,0.0,0.0,0.0,47.0,0.0,4.0,3.0,4.0,1.9,1363.2932701017746,4316.0,0.0,13704.0,6,3,0,0.0,2,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,7212.631578947368,1,0,1_1,1_1 +8049,0.0,11.0,49.0,111,37,30,0.0,4913,0.0,0.0,0.0,1055.0,1.0,5.0,4.0,5.0,2.8,772.5614460064672,780.0,0.0,20800.0,4,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,7428.571428571429,1,0,1_0,1_0 +8050,0.0,0.0,53.0,111,46,60,0.0,4914,0.0,0.0,0.0,303.0,1.0,1.0,0.0,1.0,1.0,2554.6196578123486,0.0,0.0,25589.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25589.0,4,0,4_0,4_0 +8051,0.0,0.0,51.0,211,38,31,0.0,4915,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1591.986255193004,0.0,0.0,99630.0,1,1,3,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,66420.0,5,0,5,5_0 +8052,13.0,13.0,51.0,112,67,50,0.0,4917,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1292.548333991656,2996.2400000000002,0.0,26110.0,1,2,7,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13055.0,1,0,1_0,1_1 +8053,8.0,8.0,36.0,111,38,12,0.0,4918,0.0,0.0,0.0,1211.0,2.0,3.0,1.0,3.0,1.8,2658.3936713269604,0.0,0.0,89681.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,49822.777777777774,5,0,5,5_0 +8054,4.0,4.0,54.0,111,68,71,0.0,492,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1409.8590149016843,3262.48,0.0,36460.0,1,1,5,4.0,3,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,24306.666666666668,4,0,4_0,4_0 +8055,7.0,7.0,27.0,111,63,71,0.0,4922,0.0,0.0,99999.0,500.0,1.0,1.0,0.0,1.0,1.0,6155.567227411937,0.0,0.0,8092.0,4,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,8092.0,1,0,1_1,1_0 +8056,6.0,9.0,47.0,120,67,50,0.0,4926,0.0,160.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2258.454751715688,457.6,0.0,37640.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16365.21739130435,2,0,2_0,2_1 +8057,0.0,0.0,75.0,111,78,50,0.0,4928,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2094.042171609939,0.0,0.0,36476.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24317.333333333332,4,0,4_0,4_0 +8058,1.0,5.0,71.0,400,75,70,2.0,493,0.0,50.0,150.0,0.0,0.0,2.0,0.0,1.0,1.0,2453.3619370143415,1560.0,5900.0,15530.0,5,3,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,15530.0,2,0,2_0,2_0 +8059,2.0,2.0,32.0,120,38,20,0.0,4931,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1845.232717758928,0.0,0.0,53457.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,35638.0,5,0,5,5_1 +8060,5.0,7.0,29.0,111,55,50,0.0,4932,0.0,0.0,150.0,0.0,2.0,4.0,3.0,5.0,2.4,2116.405271127539,1560.0,0.0,37230.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,15512.5,2,0,2_1,2_0 +8061,15.0,15.0,42.0,111,56,71,0.0,4933,0.0,0.0,0.0,156.0,1.0,3.0,2.0,3.0,1.8,1220.3694381164112,0.0,0.0,27322.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,2.0,0.0,15178.888888888889,2,0,2_1,2_0 +8062,0.0,0.0,25.0,111,55,50,0.0,4934,0.0,0.0,0.0,461.0,2.0,2.0,1.0,3.0,1.8,1796.6139692962006,0.0,0.0,28428.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,15793.333333333332,2,0,2_1,2_0 +8063,15.0,15.0,46.0,111,38,12,0.0,4935,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,1545.806899800365,2600.0,0.0,92312.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,32968.57142857143,5,0,5,5_0 +8064,9.0,11.0,43.0,120,37,31,0.0,4936,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2075.5288733755388,3123.64,0.0,60923.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25384.583333333336,4,0,4_0,4_1 +8065,2.0,6.0,50.0,300,13,50,0.0,4937,0.0,199998.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,2207.8224994397524,3165.76,0.0,37591.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,13425.357142857143,1,0,1_1,1_1 +8066,1.0,13.0,68.0,112,74,31,2.0,4939,0.0,0.0,120.0,0.0,0.0,7.0,0.0,2.0,1.5,2226.3036447691547,0.0,2800.0,103140.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,68760.0,5,0,5,5_1 +8067,0.0,0.0,32.0,111,52,71,0.0,494,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2274.963062744955,5252.52,0.0,33700.0,4,4,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16047.619047619048,2,0,2_0,2_0 +8068,0.0,0.0,40.0,112,43,30,0.0,4940,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,770.7753097349132,0.0,0.0,48200.0,1,3,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,22952.38095238095,3,0,3_1,3_1 +8069,3.0,13.0,81.0,111,75,42,0.0,4941,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2386.0144572547124,0.0,0.0,43103.0,5,1,10,8.0,3,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,28735.333333333332,4,0,4_0,4_0 +8070,1.0,11.0,52.0,300,21,50,2.0,4942,0.0,0.0,150.0,0.0,2.0,8.0,0.0,2.0,1.5,2014.4624571919487,0.0,2500.0,31775.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21183.333333333332,3,0,3_0,3_1 +8071,1.0,9.0,30.0,300,67,50,2.0,4945,0.0,0.0,0.0,279.0,1.0,3.0,0.0,1.0,1.0,3319.539353999213,2600.0,2000.0,22534.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22534.0,3,0,3_0,3_1 +8072,11.0,14.0,55.0,111,56,71,0.0,4946,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2861.9002530252974,0.0,0.0,18210.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18210.0,2,0,2_0,2_0 +8073,2.0,10.0,65.0,112,74,70,0.0,4947,0.0,600.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3184.2222578707024,0.0,0.0,27540.0,5,1,6,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27540.0,4,0,4_0,4_0 +8074,9.0,10.0,34.0,111,13,31,0.0,4949,0.0,520.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,774.7688318313612,0.0,0.0,55346.0,1,3,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,30747.777777777777,4,0,4_0,4_0 +8075,0.0,0.0,68.0,300,78,70,0.0,495,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3188.4614746437487,0.0,0.0,17042.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17042.0,2,0,2_0,2_1 +8076,0.0,0.0,66.0,111,77,71,0.0,4950,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3149.8877393502516,2601.04,0.0,18870.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18870.0,3,0,3_0,3_0 +8077,0.0,0.0,34.0,112,55,43,1.0,4951,0.0,50.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,931.3643405849269,0.0,19000.0,26577.0,1,3,7,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,16610.625,2,0,2_1,2_0 +8078,0.0,0.0,83.0,300,74,71,0.0,4954,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1938.6793168870315,1040.0,0.0,10003.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10003.0,1,0,1_0,1_1 +8079,0.0,0.0,52.0,111,52,71,0.0,4956,0.0,0.0,0.0,158.0,2.0,3.0,1.0,3.0,2.0,2533.5502467896617,0.0,0.0,54529.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27264.5,4,0,4_0,4_0 +8080,0.0,0.0,49.0,221,21,71,0.0,4957,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2587.275870901445,0.0,0.0,27213.0,1,2,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13606.5,1,0,1_0,1_0 +8081,6.0,11.0,84.0,112,74,41,0.0,496,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,5686.105583843035,0.0,0.0,43600.0,5,1,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,43600.0,5,0,5,5_0 +8082,0.0,3.0,60.0,112,78,60,2.0,4960,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2020.2292678776444,8419.32,7372.0,58443.0,5,1,4,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,29221.5,4,0,4_0,4_1 +8083,0.0,6.0,79.0,111,77,50,0.0,4961,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2626.5335205378474,0.0,0.0,12195.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,12195.0,1,0,1_0,1_0 +8084,10.0,14.0,47.0,112,62,43,0.0,4963,0.0,310.0,0.0,0.0,3.0,5.0,4.0,6.0,3.1,1553.3376207122478,4681.04,0.0,60690.0,1,2,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19577.41935483871,3,0,3_0,3_0 +8085,4.0,12.0,36.0,111,42,30,0.0,4965,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2762.507894485262,2600.0,0.0,68633.0,1,3,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,38129.444444444445,5,0,5,5_0 +8086,2.0,4.0,36.0,111,54,31,0.0,4966,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2344.170908823729,6422.0,0.0,59662.0,1,2,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,25940.000000000004,4,0,4_0,4_0 +8087,5.0,7.0,49.0,112,22,71,0.0,4967,0.0,0.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.5,2268.9949445341067,2058.16,0.0,68262.0,1,2,4,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,27304.8,4,0,4_0,4_1 +8088,0.0,0.0,66.0,300,78,50,0.0,4969,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2939.4957516455706,0.0,0.0,10776.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,10776.0,1,0,1_1,1_1 +8089,8.0,8.0,21.0,111,68,41,0.0,497,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.5,3243.6201998317306,534.04,0.0,8843.0,2,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,5895.333333333333,1,0,1_1,1_0 +8090,7.0,7.0,30.0,111,46,31,0.0,4970,0.0,550.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,834.9588097739604,0.0,0.0,26413.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,20317.69230769231,3,0,3_1,3_0 +8091,6.0,23.0,18.0,111,84,41,0.0,4971,0.0,0.0,199998.0,287.0,0.0,1.0,0.0,1.0,1.0,3210.308201632975,0.0,0.0,8822.0,3,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,8822.0,1,0,1_0,1_0 +8092,3.0,3.0,44.0,111,46,0,0.0,4972,0.0,1050.0,0.0,295.0,1.0,4.0,2.0,3.0,1.6,596.9340617304557,0.0,0.0,32160.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,20100.0,3,0,3_1,3_0 +8093,0.0,0.0,56.0,120,47,42,0.0,4973,0.0,0.0,0.0,0.0,3.0,10.0,2.0,4.0,2.5,1573.8076633655737,1809.6,0.0,51222.0,1,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20488.8,3,0,3_0,3_0 +8094,3.0,7.0,71.0,111,54,71,0.0,4975,0.0,325.0,450.0,0.0,1.0,3.0,0.0,1.0,1.0,3628.371965231181,0.0,0.0,22280.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,22280.0,3,0,3_0,3_0 +8095,0.0,0.0,70.0,111,74,31,0.0,4976,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2157.301268463232,0.0,0.0,24152.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24152.0,4,0,4_0,4_0 +8096,7.0,7.0,29.0,111,46,31,0.0,4977,0.0,0.0,0.0,318.0,1.0,2.0,0.0,1.0,1.0,2109.352342896807,2373.28,0.0,17498.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17498.0,2,0,2_0,2_0 +8097,0.0,0.0,61.0,111,74,50,0.0,4978,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1733.8402650398311,4417.4,0.0,57660.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38440.0,5,0,5,5_0 +8098,1.0,9.0,65.0,112,77,31,2.0,4979,0.0,0.0,170.0,0.0,0.0,4.0,0.0,2.0,1.5,2170.485610529441,0.0,2700.0,19110.0,5,3,6,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,12740.0,1,0,1_0,1_0 +8099,10.0,10.0,27.0,111,21,44,0.0,4980,0.0,0.0,0.0,540.0,2.0,3.0,1.0,3.0,1.8,3648.8645712446328,0.0,0.0,45171.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25095.0,4,0,4_0,4_0 +8100,5.0,5.0,56.0,111,64,50,0.0,4981,0.0,0.0,0.0,527.0,1.0,3.0,0.0,1.0,1.0,2745.7518048910724,0.0,0.0,27308.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27308.0,4,0,4_0,4_0 +8101,1.0,9.0,37.0,221,62,31,2.0,4982,0.0,288.0,0.0,0.0,1.0,5.0,1.0,3.0,1.8,2927.6977499407863,0.0,3000.0,26300.0,1,2,1,2.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,14611.111111111111,2,0,2_0,2_0 +8102,5.0,5.0,33.0,111,43,33,0.0,4984,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,1.9,852.7278076517028,0.0,0.0,29810.0,4,4,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,15689.473684210527,2,0,2_1,2_0 +8103,0.0,0.0,35.0,111,38,12,0.0,4985,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,989.9943208221971,0.0,0.0,69576.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,43485.0,5,0,5,5_0 +8104,7.0,7.0,75.0,111,75,33,0.0,4986,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1143.718147130816,0.0,0.0,12454.0,5,1,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,12454.0,1,0,1_0,1_0 +8105,4.0,4.0,62.0,111,74,20,0.0,4987,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2127.8184938183463,2225.6,0.0,56155.0,5,1,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,28077.5,4,0,4_0,4_0 +8106,2.0,12.0,59.0,111,62,41,0.0,4988,0.0,199998.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1327.7261978444833,1820.52,0.0,42284.0,1,1,8,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,28189.333333333332,4,0,4_0,4_0 +8107,0.0,0.0,81.0,112,78,70,1.0,4989,0.0,0.0,50.0,0.0,0.0,5.0,0.0,2.0,1.5,2524.431499549758,0.0,6240.0,16336.0,5,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,10890.666666666666,1,0,1_0,1_1 +8108,5.0,5.0,47.0,112,35,30,0.0,499,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2035.5981751561533,1300.0,0.0,94799.0,1,1,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,37919.6,5,0,5,5_1 +8109,2.0,2.0,27.0,111,63,50,0.0,4992,0.0,0.0,440.0,0.0,2.0,4.0,2.0,4.0,2.1,2975.508319866794,0.0,0.0,43560.0,1,2,4,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,20742.85714285714,3,0,3_0,3_0 +8110,2.0,2.0,49.0,111,46,41,0.0,4993,0.0,0.0,180.0,852.0,2.0,3.0,2.0,3.0,2.0,636.9005665028861,1085.76,0.0,26563.0,1,3,6,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,13281.5,1,0,1_0,1_0 +8111,0.0,12.0,36.0,111,45,31,0.0,4995,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,663.826811188528,2184.0,0.0,40775.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19416.666666666664,3,0,3_0,3_0 +8112,2.0,3.0,54.0,111,62,50,0.0,4996,0.0,0.0,0.0,0.0,3.0,2.0,2.0,4.0,2.3,5737.452238905587,1043.12,0.0,26739.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,11625.652173913044,1,0,1_1,1_0 +8113,1.0,1.0,87.0,112,75,60,0.0,4997,0.0,700.0,140.0,0.0,0.0,3.0,0.0,1.0,1.0,1198.499600154252,0.0,0.0,39480.0,5,3,10,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,39480.0,5,0,5,5_0 +8114,1.0,5.0,80.0,111,78,50,0.0,4998,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2445.4806357603543,1300.0,0.0,18102.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18102.0,2,0,2_0,2_0 +8115,10.0,11.0,46.0,111,11,43,0.0,4999,0.0,600.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1591.8673270424783,0.0,0.0,46920.0,1,1,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,22342.85714285714,3,0,3_0,3_0 +8116,3.0,3.0,56.0,111,33,50,0.0,5,0.0,0.0,0.0,537.0,3.0,4.0,1.0,3.0,2.0,1364.6628510044739,0.0,0.0,42877.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,21438.5,3,0,3_0,3_0 +8117,0.0,13.0,38.0,400,42,20,0.0,500,0.0,380.0,100.0,0.0,2.0,3.0,1.0,3.0,1.8,2378.731070110164,2080.0,0.0,48798.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27110.0,4,0,4_0,4_1 +8118,2.0,18.0,41.0,111,55,43,0.0,5001,0.0,400.0,0.0,200.0,1.0,5.0,3.0,4.0,1.9,1054.2780306817244,0.0,0.0,34780.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,18305.263157894737,2,0,2_1,2_0 +8119,0.0,24.0,46.0,111,37,20,0.0,5002,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,3380.0990055660955,2787.72,0.0,96736.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,38694.4,5,0,5,5_0 +8120,3.0,5.0,55.0,112,37,60,0.0,5003,0.0,80.0,0.0,700.0,2.0,3.0,0.0,2.0,1.5,2968.9380148836917,2746.64,0.0,45830.0,1,3,10,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30553.333333333332,4,0,4_0,4_0 +8121,2.0,5.0,72.0,400,75,30,0.0,5004,250.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1864.3011530374094,0.0,0.0,43233.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,0.0,28822.0,4,0,4_0,4_1 +8122,0.0,0.0,66.0,300,78,70,0.0,5006,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1950.6776899912809,2080.0,0.0,21894.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14596.0,2,0,2_0,2_1 +8123,0.0,0.0,43.0,111,85,31,0.0,5007,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3879.291174226489,0.0,0.0,6579.0,7,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,6579.0,1,0,1_0,1_0 +8124,0.0,0.0,60.0,112,75,33,0.0,501,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3699.511918592403,0.0,0.0,68409.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,45606.0,5,0,5,5_1 +8125,6.0,10.0,62.0,111,56,71,0.0,5011,0.0,200.0,0.0,519.0,1.0,3.0,0.0,1.0,1.0,696.865495976347,0.0,0.0,25585.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25585.0,4,0,4_0,4_0 +8126,4.0,13.0,82.0,111,77,70,0.0,5012,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,3138.226913063232,0.0,0.0,15080.0,5,1,5,4.0,1,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,15080.0,2,0,2_0,2_0 +8127,4.0,4.0,80.0,120,74,12,0.0,5013,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1631.4292319114757,0.0,0.0,43577.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,29051.333333333332,4,0,4_0,4_0 +8128,8.0,15.0,68.0,111,75,70,0.0,5014,0.0,20.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3262.3944657683905,2808.0,0.0,25833.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,25833.0,4,0,4_0,4_0 +8129,5.0,7.0,69.0,111,77,70,0.0,5015,0.0,800.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1834.302713903657,0.0,0.0,12480.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,12480.0,1,0,1_0,1_0 +8130,5.0,14.0,35.0,111,69,20,0.0,5016,0.0,99999.0,250.0,0.0,1.0,3.0,2.0,4.0,2.1,1875.854726720583,0.0,0.0,23788.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,11327.619047619048,1,0,1_0,1_0 +8131,3.0,7.0,46.0,111,43,33,0.0,5017,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2072.0869073968856,3270.28,0.0,50357.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21894.34782608696,3,0,3_0,3_0 +8132,0.0,5.0,50.0,112,68,71,0.0,5018,0.0,0.0,0.0,402.0,1.0,3.0,0.0,1.0,1.0,2086.528281465228,0.0,0.0,22590.0,1,3,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22590.0,3,0,3_0,3_0 +8133,11.0,11.0,65.0,111,75,50,0.0,5019,0.0,0.0,0.0,296.0,0.0,2.0,0.0,1.0,1.0,3201.3843290995633,0.0,0.0,13603.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,13603.0,1,0,1_1,1_0 +8134,12.0,12.0,46.0,112,34,10,0.0,5020,0.0,0.0,80.0,0.0,2.0,7.0,2.0,4.0,2.1,2053.6088151028544,1768.0,0.0,65851.0,1,1,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,31357.619047619046,4,0,4_0,4_0 +8135,0.0,0.0,30.0,111,64,50,0.0,5021,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3761.9314745740626,1560.0,0.0,26313.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17542.0,2,0,2_0,2_0 +8136,11.0,13.0,34.0,112,47,12,0.0,5022,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,2.4,2516.217590472541,1564.1599999999999,0.0,52607.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21919.583333333336,3,0,3_0,3_1 +8137,8.0,8.0,59.0,400,48,70,0.0,5023,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1564.4892894004477,0.0,0.0,27373.0,1,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18248.666666666668,2,0,2_0,2_0 +8138,2.0,2.0,50.0,111,13,50,0.0,5024,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2097.701515868903,1560.0,0.0,29172.0,1,1,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11668.8,1,0,1_0,1_0 +8139,3.0,3.0,62.0,111,77,42,0.0,5026,0.0,442.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2207.451865797523,0.0,0.0,32357.0,5,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21571.333333333332,3,0,3_0,3_0 +8140,0.0,0.0,59.0,111,38,12,0.0,5028,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1845.48741029306,3068.0,0.0,67567.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,45044.666666666664,5,0,5,5_0 +8141,8.0,19.0,33.0,111,48,50,0.0,5029,0.0,880.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2931.9903594665343,2747.16,0.0,55971.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,26652.85714285714,4,0,4_0,4_0 +8142,2.0,2.0,50.0,111,37,20,0.0,5031,0.0,990.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,1565.9899160679204,0.0,0.0,82885.0,1,1,6,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,63757.692307692305,5,0,5,5_0 +8143,3.0,12.0,67.0,120,75,60,0.0,5032,0.0,200.0,80.0,0.0,0.0,5.0,0.0,2.0,1.5,2495.157125537777,2600.0,0.0,31870.0,5,1,0,0.0,3,4.0,0.0,1.0,1,0,0,0,0,0,2.0,2.0,21246.666666666668,3,0,3_0,3_1 +8144,2.0,11.0,45.0,221,31,20,0.0,5033,0.0,99999.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3386.9347616323566,2669.16,0.0,16689.0,1,2,1,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,7947.142857142857,1,0,1_0,1_0 +8145,4.0,20.0,66.0,400,77,70,0.0,5034,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1925.5208645511111,0.0,0.0,33314.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,22209.333333333332,3,0,3_0,3_1 +8146,0.0,0.0,50.0,111,85,60,0.0,5035,0.0,0.0,0.0,168.0,0.0,2.0,0.0,1.0,1.0,2949.571851307052,0.0,0.0,13012.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13012.0,1,0,1_1,1_0 +8147,0.0,0.0,49.0,111,33,20,0.0,5036,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2819.2006968585333,1885.0,0.0,98891.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,47090.95238095238,5,0,5,5_0 +8148,0.0,0.0,40.0,112,55,31,0.0,5037,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,769.9254498776493,3438.2400000000002,0.0,18917.0,1,4,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18917.0,3,0,3_0,3_1 +8149,20.0,20.0,26.0,221,67,50,0.0,5038,0.0,0.0,0.0,429.0,1.0,4.0,2.0,3.0,1.6,841.4469656717891,0.0,0.0,30933.0,1,3,1,3.0,2,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,19333.125,3,0,3_0,3_0 +8150,2.0,2.0,26.0,112,46,43,0.0,5039,0.0,0.0,110.0,460.0,1.0,3.0,0.0,1.0,1.0,5509.541545088566,0.0,0.0,15220.0,4,3,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15220.0,2,0,2_0,2_0 +8151,4.0,11.0,51.0,400,52,71,0.0,504,0.0,482.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1734.9833880514916,0.0,0.0,25300.0,1,2,0,0.0,3,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,16866.666666666668,2,0,2_0,2_1 +8152,12.0,15.0,42.0,112,53,31,0.0,5040,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.1,1630.7156621035554,6738.16,0.0,72399.0,1,2,10,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,34475.71428571428,5,0,5,5_0 +8153,0.0,0.0,45.0,111,37,12,0.0,5041,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,2664.9017749851637,4108.0,0.0,93971.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33561.07142857143,5,0,5,5_0 +8154,4.0,6.0,66.0,120,75,50,0.0,5042,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2206.778395145196,0.0,0.0,18845.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18845.0,3,0,3_0,3_1 +8155,9.0,9.0,46.0,112,43,33,0.0,5043,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2155.0888574022247,5235.360000000001,0.0,68425.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24437.5,4,0,4_0,4_1 +8156,10.0,30.0,36.0,111,34,20,0.0,5044,0.0,0.0,300.0,0.0,1.0,2.0,0.0,1.0,1.0,5335.579045454305,2600.52,0.0,30784.0,1,2,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,30784.0,4,0,4_0,4_0 +8157,0.0,5.0,78.0,111,75,70,2.0,5045,0.0,100.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3182.643094719378,4375.8,12000.0,24806.0,5,1,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,16537.333333333332,2,0,2_0,2_0 +8158,1.0,13.0,30.0,112,38,30,2.0,5047,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2982.9757161631446,5668.0,1000.0,73230.0,1,2,10,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,40683.333333333336,5,0,5,5_0 +8159,2.0,9.0,64.0,112,78,70,0.0,505,0.0,100.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1893.1204955911317,2704.52,0.0,35111.0,5,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23407.333333333332,3,0,3_0,3_1 +8160,1.0,4.0,55.0,111,48,44,2.0,5050,0.0,70.0,150.0,0.0,2.0,4.0,0.0,2.0,1.5,2769.4275462480455,0.0,4000.0,30667.0,4,2,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,20444.666666666668,3,0,3_0,3_0 +8161,10.0,10.0,67.0,211,78,71,0.0,5052,0.0,99999.0,99999.0,0.0,0.0,4.0,3.0,4.0,2.5,412.9871239871272,1238.64,0.0,22372.0,5,4,2,3.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,8948.8,1,0,1_0,1_0 +8162,7.0,7.0,52.0,111,63,50,0.0,5054,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1568.9990706926374,4160.0,0.0,12760.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,6380.0,1,0,1_0,1_0 +8163,0.0,0.0,36.0,112,52,50,0.0,5055,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3426.603223633181,0.0,0.0,18170.0,1,2,6,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18170.0,2,0,2_0,2_0 +8164,3.0,9.0,91.0,400,72,71,0.0,5057,0.0,70.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2085.945364923256,0.0,0.0,12703.0,5,1,0,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,12703.0,1,0,1_0,1_0 +8165,0.0,0.0,80.0,120,77,71,0.0,5058,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2872.0389788671237,0.0,0.0,16159.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16159.0,2,0,2_0,2_1 +8166,15.0,17.0,43.0,212,85,71,0.0,5059,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3523.0400409208637,0.0,0.0,8893.0,8,3,2,0.0,1,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,8893.0,1,0,1_1,1_1 +8167,5.0,6.0,70.0,112,78,71,0.0,5060,0.0,20.0,0.0,535.0,0.0,5.0,0.0,1.0,1.0,2313.269749183777,1206.92,0.0,20899.0,5,3,10,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20899.0,3,0,3_0,3_0 +8168,9.0,9.0,76.0,221,74,41,0.0,5061,0.0,461.0,150.0,0.0,0.0,6.0,0.0,2.0,1.5,1747.2634748770975,2680.6,0.0,31170.0,5,1,1,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,20780.0,3,0,3_0,3_0 +8169,0.0,0.0,33.0,112,68,60,0.0,5062,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.5,317.4396761632673,0.0,0.0,12999.0,4,1,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,5199.6,1,0,1_0,1_1 +8170,1.0,14.0,40.0,400,64,50,2.0,5063,0.0,100.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2238.708479784918,0.0,3200.0,23019.0,1,2,0,0.0,2,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,17706.923076923078,2,0,2_0,2_1 +8171,2.0,6.0,23.0,111,54,41,0.0,5065,0.0,100.0,0.0,334.0,1.0,2.0,0.0,1.0,1.0,3348.8867916686177,0.0,0.0,11278.0,2,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,11278.0,1,0,1_1,1_0 +8172,6.0,10.0,36.0,111,46,31,0.0,5066,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1882.482934495158,3901.56,0.0,25157.0,4,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10482.083333333334,1,0,1_1,1_0 +8173,0.0,0.0,42.0,112,62,43,0.0,5067,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1727.778844826269,2770.56,0.0,42514.0,1,2,8,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20244.761904761905,3,0,3_0,3_0 +8174,0.0,0.0,44.0,112,43,33,0.0,5068,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,8674.87076196217,5164.12,0.0,83967.0,1,3,7,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,46648.333333333336,5,0,5,5_0 +8175,0.0,11.0,33.0,111,47,30,0.0,5069,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,4698.8101098332,2523.04,0.0,68432.0,1,1,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,45621.333333333336,5,0,5,5_0 +8176,0.0,0.0,69.0,111,74,30,0.0,507,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1547.196652511037,0.0,0.0,51413.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34275.333333333336,5,0,5,5_0 +8177,0.0,0.0,59.0,300,63,71,0.0,5071,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2149.6800825987007,0.0,0.0,38941.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25960.666666666668,4,0,4_0,4_0 +8178,7.0,17.0,68.0,400,77,70,0.0,5072,0.0,135.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1824.0189163102752,1193.4,0.0,27421.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18280.666666666668,2,0,2_0,2_1 +8179,7.0,10.0,43.0,111,38,50,0.0,5073,0.0,200.0,0.0,1148.0,2.0,4.0,2.0,4.0,2.1,2973.6019238168133,2971.28,0.0,73180.0,1,3,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,34847.619047619046,5,0,5,5_0 +8180,0.0,0.0,43.0,111,54,31,0.0,5075,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,4007.2097139101156,0.0,0.0,23313.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17933.076923076922,2,0,2_0,2_0 +8181,3.0,3.0,34.0,112,85,60,0.0,5078,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,943.5722653394063,0.0,0.0,15360.0,6,3,6,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,9600.0,1,0,1_1,1_0 +8182,7.0,7.0,49.0,300,62,50,0.0,5079,0.0,0.0,100.0,0.0,2.0,4.0,1.0,3.0,2.0,1904.070652657539,0.0,0.0,38393.0,1,2,0,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,19196.5,3,0,3_0,3_1 +8183,0.0,0.0,52.0,111,56,71,0.0,508,0.0,0.0,0.0,353.0,1.0,3.0,1.0,2.0,1.3,325.180170223244,0.0,0.0,14024.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10787.692307692307,1,0,1_1,1_0 +8184,5.0,5.0,51.0,111,37,31,0.0,5080,0.0,0.0,30.0,0.0,2.0,4.0,1.0,3.0,2.0,2772.5140376883064,0.0,0.0,80037.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,40018.5,5,0,5,5_0 +8185,4.0,5.0,39.0,111,48,20,0.0,5081,0.0,0.0,0.0,323.0,1.0,4.0,1.0,2.0,1.5,3569.0945083655306,0.0,0.0,31324.0,1,3,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20882.666666666668,3,0,3_0,3_0 +8186,2.0,7.0,40.0,112,55,60,0.0,5082,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2677.659449707152,1425.8400000000001,0.0,35366.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19647.777777777777,3,0,3_0,3_1 +8187,11.0,11.0,50.0,112,46,50,0.0,5083,0.0,100.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2054.349978386326,8835.32,0.0,53250.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,26625.0,4,0,4_0,4_1 +8188,8.0,11.0,45.0,300,31,30,0.0,5084,0.0,0.0,199998.0,152.0,1.0,3.0,2.0,3.0,1.6,1014.137169548198,3168.36,0.0,15386.0,1,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,9616.25,1,0,1_1,1_1 +8189,0.0,0.0,43.0,111,37,41,0.0,5085,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1794.1452949626323,2126.7999999999997,0.0,92177.0,1,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,51209.444444444445,5,0,5,5_0 +8190,1.0,1.0,64.0,111,74,50,1.0,5086,0.0,230.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1563.1831666064954,2652.0,32000.0,52469.0,5,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,34979.333333333336,5,0,5,5_0 +8191,4.0,15.0,45.0,111,37,31,0.0,5088,0.0,300.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,805.5327267996163,0.0,0.0,41932.0,1,2,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,18231.304347826088,2,0,2_0,2_0 +8192,1.0,8.0,64.0,111,77,50,2.0,5090,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,3727.5607032711405,0.0,4200.0,38260.0,5,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19130.0,3,0,3_0,3_0 +8193,2.0,20.0,75.0,111,72,50,0.0,5091,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1985.9095087068613,0.0,0.0,25201.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16800.666666666668,2,0,2_0,2_0 +8194,0.0,0.0,76.0,111,77,30,0.0,5092,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2723.747507414194,0.0,0.0,40557.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27038.0,4,0,4_0,4_0 +8195,8.0,10.0,89.0,111,86,71,0.0,5093,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2751.796078735364,0.0,0.0,10228.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,10228.0,1,0,1_0,1_0 +8196,7.0,7.0,48.0,111,43,33,0.0,5094,0.0,0.0,60.0,0.0,1.0,5.0,3.0,4.0,2.3,648.979073881413,0.0,0.0,37512.0,1,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,16309.565217391306,2,0,2_0,2_0 +8197,0.0,0.0,82.0,300,75,30,0.0,5097,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3094.8141178017495,0.0,0.0,28198.0,5,1,0,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28198.0,4,0,4_0,4_0 +8198,3.0,8.0,84.0,111,86,71,0.0,5098,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1783.5348034371737,0.0,0.0,10516.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10516.0,1,0,1_0,1_0 +8199,6.0,12.0,66.0,111,,70,0.0,510,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2929.8935555992007,1040.0,0.0,25081.0,8,4,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,12540.5,1,0,1_0,1_0 +8200,2.0,4.0,23.0,111,67,31,0.0,5101,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1099.3430572688892,0.0,0.0,24286.0,1,3,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,16190.666666666666,2,0,2_1,2_0 +8201,0.0,0.0,56.0,111,37,70,0.0,5102,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2630.898181677647,0.0,0.0,29613.0,1,2,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29613.0,4,0,4_0,4_0 +8202,0.0,0.0,49.0,221,54,41,0.0,5103,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,602.8103559930213,4742.400000000001,0.0,24606.0,1,2,1,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,18927.69230769231,3,0,3_1,3_0 +8203,3.0,7.0,79.0,111,74,12,0.0,5104,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1772.6263960127953,0.0,0.0,48504.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,32336.0,5,0,5,5_0 +8204,0.0,0.0,51.0,300,52,31,0.0,5105,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2109.1011434394823,2080.0,0.0,26375.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13187.5,1,0,1_0,1_1 +8205,9.0,9.0,52.0,111,85,33,0.0,5106,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,950.66744025447,0.0,0.0,49591.0,5,1,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24795.5,4,0,4_0,4_0 +8206,6.0,6.0,20.0,111,84,43,0.0,5107,0.0,0.0,0.0,264.0,0.0,2.0,0.0,2.0,1.5,4829.403350888808,0.0,0.0,200.0,3,3,8,6.0,5,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,133.33333333333334,1,0,1_0,1_0 +8207,9.0,15.0,39.0,111,38,30,0.0,5109,0.0,120.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2479.123850479588,5752.24,0.0,82520.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,39295.23809523809,5,0,5,5_0 +8208,0.0,0.0,64.0,111,74,30,0.0,511,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1668.7926879973702,0.0,0.0,49563.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33042.0,5,0,5,5_0 +8209,10.0,11.0,44.0,111,67,71,0.0,5110,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3360.241143631576,3900.0,0.0,51010.0,1,3,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24290.47619047619,4,0,4_0,4_0 +8210,0.0,0.0,51.0,120,64,41,0.0,5115,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2668.25556609501,2080.0,0.0,23753.0,1,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23753.0,3,0,3_0,3_0 +8211,2.0,14.0,37.0,112,56,50,0.0,5117,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,203.9847681756594,1560.0,0.0,17716.0,1,3,7,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,11072.5,1,0,1_1,1_1 +8212,1.0,2.0,27.0,112,21,44,2.0,5118,0.0,0.0,99999.0,0.0,2.0,3.0,0.0,2.0,1.5,3507.160823936299,1561.04,11199.0,32530.0,1,2,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,21686.666666666668,3,0,3_0,3_0 +8213,4.0,13.0,78.0,111,74,50,0.0,5119,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2077.148809850994,0.0,0.0,51650.0,5,1,4,4.0,3,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,34433.333333333336,5,0,5,5_0 +8214,20.0,20.0,58.0,112,52,60,0.0,512,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3276.7734229371595,0.0,0.0,25713.0,1,1,8,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25713.0,4,0,4_0,4_1 +8215,12.0,12.0,50.0,111,56,71,0.0,5121,0.0,99999.0,99999.0,520.0,3.0,4.0,2.0,4.0,2.5,2481.5671310073326,2080.0,0.0,51375.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,20550.0,3,0,3_0,3_0 +8216,11.0,11.0,39.0,111,56,50,0.0,5122,0.0,150.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,818.8277520690564,0.0,0.0,16674.0,4,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,9263.333333333334,1,0,1_1,1_0 +8217,0.0,0.0,33.0,112,46,42,0.0,5123,0.0,0.0,0.0,285.0,1.0,3.0,1.0,2.0,1.3,676.6250995301118,3640.0,0.0,21280.0,1,3,9,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,16369.23076923077,2,0,2_1,2_0 +8218,1.0,1.0,31.0,112,46,31,0.0,5124,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2442.14134276415,2808.52,0.0,53608.0,1,2,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22336.666666666668,3,0,3_0,3_0 +8219,0.0,0.0,32.0,111,34,20,0.0,5125,0.0,0.0,0.0,700.0,2.0,3.0,1.0,3.0,1.8,3467.342770802671,3448.12,0.0,54634.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30352.222222222223,4,0,4_0,4_0 +8220,9.0,11.0,36.0,111,43,50,0.0,5126,0.0,170.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,443.00174750056243,1405.04,0.0,17786.0,4,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11116.25,1,0,1_1,1_0 +8221,8.0,8.0,60.0,400,63,50,0.0,5129,0.0,400.0,200.0,0.0,2.0,3.0,0.0,2.0,1.5,1763.6298064748091,5181.280000000001,0.0,36954.0,1,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24636.0,4,0,4_0,4_1 +8222,6.0,11.0,80.0,120,78,71,0.0,513,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2492.5287599227445,0.0,0.0,25770.0,5,1,0,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17180.0,2,0,2_0,2_0 +8223,0.0,0.0,58.0,111,75,31,0.0,5130,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2738.0515993719005,259.48,0.0,28423.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18948.666666666668,3,0,3_0,3_0 +8224,20.0,24.0,45.0,111,54,31,0.0,5132,0.0,400.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,512.9010505095137,3120.0,0.0,25614.0,4,3,9,7.0,2,2.0,1.0,0.0,0,0,0,1,0,1,0.0,2.0,16008.75,2,0,2_1,2_0 +8225,0.0,0.0,51.0,300,22,31,0.0,5133,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1589.9969297558162,2080.0,0.0,10303.0,4,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,5151.5,1,0,1_0,1_1 +8226,11.0,11.0,38.0,111,68,60,0.0,5134,0.0,0.0,0.0,0.0,1.0,3.0,4.0,6.0,2.7,4078.2648231014514,1567.28,0.0,35370.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,13100.0,1,0,1_1,1_0 +8227,3.0,3.0,59.0,120,13,50,0.0,5135,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1394.4920572368299,4056.0,0.0,46925.0,1,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31283.333333333332,4,0,4_0,4_0 +8228,0.0,0.0,27.0,400,37,30,2.0,5136,0.0,0.0,90.0,0.0,2.0,6.0,1.0,3.0,1.8,3231.2154631196813,0.0,800.0,52890.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,29383.333333333332,4,0,4_0,4_1 +8229,0.0,1.0,39.0,112,13,44,2.0,5137,0.0,250.0,100.0,0.0,1.0,8.0,4.0,5.0,2.4,1343.5519171376254,4160.0,7000.0,14581.0,1,1,7,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,6075.416666666667,1,0,1_0,1_1 +8230,7.0,7.0,41.0,111,84,50,0.0,5138,0.0,0.0,0.0,457.0,0.0,2.0,1.0,2.0,1.3,1050.8572963940671,0.0,0.0,17340.0,3,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,13338.461538461537,1,0,1_1,1_0 +8231,2.0,8.0,50.0,112,46,50,0.0,5139,0.0,0.0,0.0,0.0,2.0,6.0,5.0,7.0,3.4,1406.0932217176958,2725.3199999999997,0.0,57303.0,1,2,6,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16853.823529411766,2,0,2_0,2_0 +8232,1.0,1.0,44.0,111,52,71,1.0,5141,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,568.3289593048598,0.0,16430.0,24338.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,13521.111111111111,1,0,1_1,1_0 +8233,1.0,1.0,89.0,120,78,71,1.0,5142,0.0,60.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3802.111834627001,0.0,17000.0,10500.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10500.0,1,0,1_0,1_1 +8234,5.0,13.0,29.0,111,85,42,0.0,5143,0.0,300.0,0.0,0.0,0.0,2.0,2.0,3.0,1.6,573.7157025156812,0.0,0.0,37996.0,6,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,23747.5,3,0,3_1,3_0 +8235,2.0,23.0,51.0,120,43,33,0.0,5147,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1453.872811341151,2006.1599999999999,0.0,11600.0,1,2,0,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,6444.444444444444,1,0,1_0,1_0 +8236,2.0,7.0,60.0,112,63,50,0.0,5149,0.0,60.0,0.0,0.0,4.0,5.0,2.0,4.0,2.5,2089.751408960421,2600.0,0.0,80661.0,4,1,10,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,32264.4,5,0,5,5_0 +8237,20.0,20.0,54.0,111,65,50,0.0,515,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1425.6317368635016,2676.96,0.0,49209.0,1,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,32806.0,5,0,5,5_0 +8238,0.0,0.0,56.0,300,38,20,0.0,5150,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2552.8837386327496,832.0,0.0,87016.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,58010.666666666664,5,0,5,5_1 +8239,9.0,15.0,46.0,111,46,50,0.0,5151,0.0,0.0,0.0,759.0,3.0,4.0,2.0,3.0,2.0,2200.6360644482784,4283.24,0.0,51057.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,25528.5,4,0,4_0,4_0 +8240,0.0,4.0,41.0,111,34,20,0.0,5153,0.0,600.0,0.0,0.0,2.0,3.0,3.0,5.0,2.4,2820.9190758490604,2600.0,0.0,51121.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21300.416666666668,3,0,3_0,3_0 +8241,3.0,4.0,56.0,111,45,31,0.0,5154,0.0,150.0,0.0,605.0,1.0,4.0,2.0,3.0,2.0,234.22335535063846,1040.52,0.0,22383.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11191.5,1,0,1_0,1_0 +8242,12.0,12.0,56.0,120,56,71,0.0,5156,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2626.5649010750326,0.0,0.0,1580.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,1580.0,1,0,1_0,1_1 +8243,2.0,18.0,35.0,112,55,43,0.0,5157,0.0,360.0,50.0,0.0,1.0,6.0,2.0,3.0,1.6,405.2049638798376,0.0,0.0,26263.0,1,2,8,1.0,2,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,16414.375,2,0,2_0,2_0 +8244,1.0,1.0,34.0,112,48,31,0.0,5158,0.0,200.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1975.3024986447203,2081.04,0.0,64286.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26785.833333333336,4,0,4_0,4_1 +8245,0.0,0.0,41.0,111,45,30,0.0,5159,0.0,0.0,0.0,331.0,1.0,2.0,0.0,1.0,1.0,2574.2134542698577,0.0,0.0,22730.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22730.0,3,0,3_0,3_0 +8246,0.0,15.0,59.0,400,64,50,0.0,516,0.0,100.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2438.5661480466674,0.0,0.0,15247.0,1,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,15247.0,2,0,2_1,2_1 +8247,5.0,13.0,53.0,111,63,50,0.0,5161,0.0,0.0,75.0,0.0,2.0,4.0,0.0,2.0,1.5,1221.4818151873917,2629.64,0.0,35242.0,1,2,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23494.666666666668,3,0,3_0,3_0 +8248,8.0,8.0,55.0,400,13,50,0.0,5162,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1836.778597527908,0.0,0.0,22600.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15066.666666666666,2,0,2_0,2_1 +8249,6.0,6.0,48.0,111,63,50,0.0,5163,0.0,0.0,0.0,279.0,2.0,3.0,1.0,3.0,1.8,3282.1546712769573,0.0,0.0,22059.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12255.0,1,0,1_1,1_0 +8250,19.0,19.0,31.0,111,63,50,0.0,5164,0.0,70.0,0.0,708.0,1.0,2.0,0.0,1.0,1.0,5451.67159790817,780.0,0.0,19480.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19480.0,3,0,3_0,3_0 +8251,6.0,8.0,32.0,111,43,33,0.0,5165,0.0,300.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3222.9054916038785,0.0,0.0,23995.0,1,2,10,8.0,1,2.0,1.0,1.0,0,0,0,0,1,0,1.0,1.0,23995.0,4,0,4_0,4_0 +8252,0.0,0.0,69.0,112,74,12,0.0,5168,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2086.0022568441623,0.0,0.0,96105.0,5,2,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,64070.0,5,0,5,5_1 +8253,11.0,21.0,33.0,221,56,71,0.0,5169,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,628.2396246123909,0.0,0.0,15035.0,4,3,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,9396.875,1,0,1_1,1_0 +8254,2.0,2.0,65.0,112,71,50,0.0,5170,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1289.8017946466357,0.0,0.0,19057.0,5,1,7,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,3.0,0.0,12704.666666666666,1,0,1_0,1_1 +8255,8.0,9.0,35.0,112,38,12,0.0,5171,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2125.4010679915436,0.0,0.0,49892.0,1,3,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27717.777777777777,4,0,4_0,4_0 +8256,0.0,0.0,69.0,400,74,10,0.0,5172,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1768.456274319953,1664.0,0.0,78350.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,52233.333333333336,5,0,5,5_1 +8257,0.0,0.0,21.0,111,84,41,0.0,5173,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3157.948337282356,0.0,0.0,36014.0,3,4,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24009.333333333332,4,0,4_0,4_0 +8258,1.0,1.0,38.0,112,63,50,0.0,5175,0.0,0.0,200.0,250.0,1.0,3.0,2.0,3.0,1.6,1035.3180915802523,1509.04,0.0,24830.0,1,3,9,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,15518.75,2,0,2_1,2_0 +8259,2.0,2.0,85.0,112,72,33,0.0,5176,0.0,0.0,0.0,0.0,0.0,12.0,0.0,2.0,1.5,4178.692942294547,0.0,0.0,15139.0,5,1,6,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,10092.666666666666,1,0,1_0,1_1 +8260,3.0,16.0,61.0,111,55,70,0.0,5177,0.0,0.0,300.0,440.0,1.0,4.0,0.0,1.0,1.0,3063.171458661391,0.0,0.0,21723.0,1,3,7,5.0,1,4.0,0.0,1.0,0,0,1,0,0,0,4.0,0.0,21723.0,3,0,3_0,3_0 +8261,0.0,0.0,83.0,111,74,44,1.0,5178,0.0,60.0,400.0,0.0,0.0,5.0,0.0,2.0,1.5,1887.6119865957098,3120.0,17400.0,40515.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27010.0,4,0,4_0,4_0 +8262,0.0,0.0,37.0,111,64,43,0.0,518,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1734.8012231472449,1560.0,0.0,41100.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17125.0,2,0,2_1,2_0 +8263,7.0,7.0,47.0,300,52,50,0.0,5181,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1564.3759119860665,2472.6,0.0,46580.0,1,1,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20252.17391304348,3,0,3_0,3_0 +8264,9.0,9.0,47.0,111,21,50,0.0,5182,0.0,60.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3875.147031960734,0.0,0.0,47086.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23543.0,3,0,3_0,3_0 +8265,9.0,11.0,21.0,111,53,60,0.0,5183,0.0,0.0,0.0,23.0,1.0,5.0,3.0,4.0,2.3,728.5792100555309,0.0,0.0,39024.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,16966.956521739132,2,0,2_1,2_0 +8266,0.0,0.0,52.0,112,13,50,0.0,5184,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,1933.1673350796673,2444.0,0.0,26919.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11703.913043478262,1,0,1_1,1_1 +8267,3.0,3.0,20.0,111,84,41,0.0,5185,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1507.9520886134062,0.0,0.0,2404.0,3,3,7,5.0,1,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,2404.0,1,0,1_0,1_0 +8268,2.0,3.0,41.0,111,46,43,0.0,5186,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1895.8504265521274,4004.0,0.0,24971.0,1,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24971.0,4,0,4_0,4_0 +8269,1.0,8.0,45.0,221,56,50,2.0,5187,0.0,530.0,0.0,168.0,1.0,3.0,1.0,2.0,1.3,1137.5221626402488,5312.84,7100.0,11604.0,1,3,1,2.0,2,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,8926.153846153846,1,0,1_1,1_0 +8270,3.0,8.0,21.0,111,84,30,0.0,5188,0.0,100.0,0.0,376.0,0.0,3.0,0.0,2.0,1.5,4089.627447807721,0.0,0.0,22615.0,3,3,8,7.0,5,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,15076.666666666666,2,0,2_1,2_0 +8271,3.0,3.0,35.0,300,64,50,0.0,519,0.0,199998.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1795.175975960245,4807.4,0.0,41776.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,1,0.0,2.0,17406.666666666668,2,0,2_1,2_1 +8272,8.0,9.0,62.0,111,77,60,0.0,5190,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2733.38831020423,1300.0,0.0,16073.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16073.0,2,0,2_0,2_0 +8273,1.0,1.0,32.0,112,48,50,0.0,5192,0.0,99999.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,738.6700507434272,0.0,0.0,27916.0,1,2,9,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17447.5,2,0,2_0,2_1 +8274,7.0,20.0,84.0,111,74,70,0.0,5193,0.0,484.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4022.7544779335153,0.0,0.0,43899.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,43899.0,5,0,5,5_0 +8275,0.0,0.0,55.0,111,63,60,0.0,5194,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2379.780712649002,1924.0,0.0,33214.0,1,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16607.0,2,0,2_0,2_0 +8276,4.0,4.0,44.0,111,64,71,0.0,5195,0.0,0.0,0.0,528.0,3.0,4.0,3.0,4.0,2.5,848.1249546722597,0.0,0.0,29880.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,11952.0,1,0,1_0,1_0 +8277,7.0,11.0,58.0,112,54,60,0.0,5196,0.0,0.0,0.0,550.0,1.0,2.0,0.0,1.0,1.0,1496.0482918301238,0.0,0.0,20760.0,1,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20760.0,3,0,3_0,3_0 +8278,3.0,16.0,43.0,112,64,12,0.0,5197,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,2362.127126580193,1870.9599999999998,0.0,189661.0,1,2,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,90314.7619047619,5,0,5,5_1 +8279,0.0,0.0,42.0,112,37,43,0.0,5198,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2576.6941623470225,0.0,0.0,65645.0,1,2,8,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28541.304347826088,4,0,4_0,4_0 +8280,2.0,4.0,57.0,111,62,50,0.0,5199,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1392.8179294456509,0.0,0.0,33629.0,1,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22419.333333333332,3,0,3_0,3_0 +8281,4.0,4.0,27.0,111,34,0,0.0,52,0.0,199998.0,0.0,491.0,1.0,2.0,0.0,1.0,1.0,3471.4069741335106,0.0,0.0,27450.0,1,3,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,27450.0,4,0,4_0,4_0 +8282,3.0,3.0,36.0,112,48,43,0.0,520,0.0,0.0,60.0,0.0,1.0,5.0,2.0,4.0,2.1,1922.1188113415221,3919.7599999999998,0.0,41270.0,1,2,8,2.0,4,3.0,0.0,1.0,0,1,0,0,0,1,1.0,2.0,19652.38095238095,3,0,3_1,3_0 +8283,1.0,1.0,47.0,111,64,50,0.0,5200,0.0,0.0,0.0,294.0,2.0,4.0,2.0,3.0,2.0,850.5363743757761,2081.04,0.0,27834.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13917.0,2,0,2_1,2_0 +8284,13.0,17.0,46.0,111,47,43,0.0,5201,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1841.357509255848,5024.24,0.0,61757.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,24702.8,4,0,4_0,4_0 +8285,3.0,3.0,54.0,111,68,71,0.0,5202,0.0,0.0,0.0,334.0,2.0,3.0,1.0,2.0,1.5,1550.3774957891283,1040.0,0.0,12300.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,8200.0,1,0,1_1,1_0 +8286,13.0,13.0,42.0,400,38,31,0.0,5204,0.0,0.0,56.0,0.0,1.0,5.0,2.0,3.0,1.8,2109.0376012659826,2945.28,0.0,41789.0,1,1,0,0.0,2,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,23216.11111111111,3,0,3_0,3_1 +8287,0.0,0.0,52.0,111,56,50,0.0,5205,0.0,0.0,0.0,440.0,1.0,3.0,0.0,3.0,2.0,5181.512135789264,5200.0,0.0,17912.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8956.0,1,0,1_0,1_0 +8288,0.0,0.0,36.0,111,31,30,0.0,5206,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4229.94207940679,0.0,0.0,61516.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,41010.666666666664,5,0,5,5_0 +8289,2.0,2.0,57.0,111,52,71,0.0,5207,0.0,0.0,0.0,0.0,4.0,8.0,4.0,6.0,3.5,1329.2385850714393,1040.0,0.0,83027.0,1,2,7,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23722.0,3,0,3_0,3_0 +8290,0.0,0.0,75.0,112,75,41,0.0,5208,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2821.6710628177125,0.0,0.0,40027.0,5,1,10,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26684.666666666668,4,0,4_0,4_0 +8291,5.0,5.0,59.0,111,75,50,0.0,5209,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3355.8284990594334,3121.04,0.0,39000.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26000.0,4,0,4_0,4_0 +8292,0.0,0.0,56.0,111,63,71,0.0,5210,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2893.1747586428537,2080.0,0.0,13380.0,4,4,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13380.0,1,0,1_0,1_0 +8293,0.0,0.0,74.0,111,77,70,0.0,5214,0.0,0.0,0.0,827.0,0.0,2.0,0.0,1.0,1.0,5371.33346163047,0.0,0.0,18395.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18395.0,2,0,2_0,2_0 +8294,6.0,6.0,57.0,111,54,31,0.0,5215,0.0,0.0,50.0,0.0,1.0,4.0,0.0,1.0,1.0,1891.6768678369779,2240.16,0.0,22116.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22116.0,3,0,3_0,3_0 +8295,2.0,6.0,44.0,112,63,50,0.0,5216,0.0,16.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,2378.9109527187934,3121.04,0.0,8140.0,1,2,8,3.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,4522.222222222222,1,0,1_0,1_0 +8296,0.0,4.0,46.0,300,52,60,0.0,5218,0.0,70.0,0.0,145.0,2.0,4.0,2.0,4.0,2.1,2493.9159072531165,0.0,0.0,20950.0,1,3,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,9976.190476190475,1,0,1_1,1_0 +8297,0.0,0.0,38.0,111,37,12,0.0,5219,0.0,0.0,0.0,1577.0,2.0,4.0,2.0,4.0,2.1,3016.62091439672,0.0,0.0,92108.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,43860.95238095238,5,0,5,5_0 +8298,2.0,2.0,73.0,400,75,31,0.0,5220,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1838.8750003129774,0.0,0.0,49661.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,33107.333333333336,5,0,5,5_1 +8299,0.0,0.0,33.0,111,55,50,0.0,5221,0.0,0.0,0.0,80.0,1.0,3.0,1.0,2.0,1.3,728.3229466694387,0.0,0.0,20720.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15938.461538461537,2,0,2_1,2_0 +8300,1.0,13.0,26.0,111,47,12,0.0,5222,0.0,132.0,0.0,400.0,1.0,3.0,0.0,1.0,1.0,3660.079132691001,0.0,0.0,17940.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17940.0,2,0,2_0,2_0 +8301,5.0,10.0,37.0,112,46,43,0.0,5223,0.0,690.0,0.0,0.0,2.0,8.0,3.0,5.0,2.6,3101.719631331277,0.0,0.0,43342.0,1,1,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,16670.0,2,0,2_0,2_0 +8302,4.0,12.0,50.0,111,52,50,0.0,5225,0.0,60.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2129.772162435414,1560.0,0.0,20341.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,13560.666666666666,1,0,1_0,1_0 +8303,10.0,11.0,31.0,111,63,60,0.0,5227,0.0,50.0,0.0,500.0,2.0,3.0,2.0,4.0,2.1,2357.3777718947895,1560.0,0.0,36110.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,17195.238095238095,2,0,2_0,2_0 +8304,0.0,0.0,33.0,111,63,43,0.0,5228,0.0,250.0,0.0,600.0,2.0,3.0,0.0,2.0,1.5,2241.693485285017,3224.0,0.0,43712.0,1,3,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,29141.333333333332,4,0,4_0,4_0 +8305,17.0,17.0,35.0,111,45,41,0.0,5229,0.0,0.0,0.0,420.0,1.0,1.0,1.0,2.0,1.3,1218.9630391082574,0.0,0.0,24807.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,19082.30769230769,3,0,3_1,3_0 +8306,0.0,0.0,52.0,111,22,33,0.0,523,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2225.421725268429,0.0,0.0,35014.0,1,2,7,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17507.0,2,0,2_0,2_0 +8307,10.0,10.0,54.0,112,52,50,0.0,5231,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2047.4138381405146,4160.0,0.0,45228.0,1,1,5,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22614.0,3,0,3_0,3_1 +8308,2.0,4.0,59.0,111,68,70,0.0,5232,0.0,0.0,100.0,333.0,1.0,3.0,0.0,1.0,1.0,2708.32002339515,0.0,0.0,17750.0,4,3,5,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,17750.0,2,0,2_0,2_0 +8309,4.0,12.0,87.0,120,74,10,0.0,5234,0.0,100.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1817.1500758404159,0.0,0.0,92890.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,61926.666666666664,5,0,5,5_0 +8310,3.0,3.0,50.0,111,37,31,0.0,5235,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2180.1266714107423,3553.16,0.0,102454.0,1,1,4,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,51227.0,5,0,5,5_0 +8311,21.0,23.0,83.0,111,77,60,0.0,5237,0.0,150.0,0.0,336.0,0.0,3.0,0.0,1.0,1.0,2832.4267998439204,1313.0,0.0,28200.0,5,3,7,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,28200.0,4,0,4_0,4_0 +8312,23.0,23.0,43.0,111,63,43,0.0,5239,0.0,0.0,0.0,507.0,1.0,2.0,0.0,2.0,1.5,3160.692267801096,0.0,0.0,20196.0,1,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,13464.0,1,0,1_1,1_0 +8313,1.0,1.0,47.0,111,48,31,1.0,524,0.0,0.0,0.0,406.0,1.0,5.0,4.0,6.0,3.1,2351.654674077259,0.0,15000.0,44350.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14306.451612903225,2,0,2_1,2_0 +8314,1.0,5.0,63.0,300,77,50,0.0,5240,0.0,120.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3660.7912343888825,0.0,0.0,17105.0,5,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17105.0,2,0,2_0,2_1 +8315,0.0,0.0,53.0,111,85,71,0.0,5241,0.0,0.0,0.0,100.0,0.0,2.0,0.0,1.0,1.0,822.4460698507326,0.0,0.0,13081.0,6,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13081.0,1,0,1_1,1_0 +8316,1.0,1.0,46.0,111,46,42,1.0,5243,0.0,60.0,0.0,313.0,2.0,3.0,1.0,2.0,1.5,1757.29527454467,4160.0,18500.0,27573.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,18382.0,2,0,2_1,2_0 +8317,0.0,13.0,54.0,211,67,71,0.0,5245,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2017.6287229368397,0.0,0.0,17390.0,1,3,2,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,8695.0,1,0,1_1,1_0 +8318,14.0,14.0,34.0,111,46,20,0.0,5246,0.0,0.0,0.0,600.0,1.0,2.0,0.0,1.0,1.0,3959.7057823661075,1768.52,0.0,26085.0,1,3,6,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26085.0,4,0,4_0,4_0 +8319,8.0,8.0,58.0,111,43,50,0.0,5248,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2484.2805273018666,0.0,0.0,52058.0,1,1,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26029.0,4,0,4_0,4_0 +8320,0.0,0.0,71.0,112,78,44,0.0,5249,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4629.419345889148,0.0,0.0,28410.0,5,1,7,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18940.0,3,0,3_0,3_0 +8321,1.0,1.0,46.0,111,22,71,0.0,5251,0.0,1150.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3479.4778842439723,0.0,0.0,11966.0,1,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,11966.0,1,0,1_0,1_0 +8322,0.0,0.0,55.0,112,52,50,0.0,5252,0.0,0.0,0.0,481.0,1.0,3.0,0.0,2.0,1.5,1870.5024209367875,0.0,0.0,55790.0,1,3,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37193.333333333336,5,0,5,5_1 +8323,12.0,12.0,44.0,111,37,12,0.0,5253,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1464.3556298279636,2556.3199999999997,0.0,134068.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,55861.66666666667,5,0,5,5_0 +8324,2.0,2.0,39.0,111,34,10,0.0,5254,0.0,220.0,72.0,0.0,2.0,4.0,2.0,4.0,2.1,2714.4260699582537,0.0,0.0,77996.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,37140.95238095238,5,0,5,5_0 +8325,0.0,0.0,58.0,400,21,50,0.0,5256,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1734.822337178501,0.0,0.0,47611.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31740.666666666668,4,0,4_0,4_0 +8326,6.0,6.0,65.0,300,63,50,0.0,5257,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1813.5419878931548,780.0,0.0,71087.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,47391.333333333336,5,0,5,5_1 +8327,21.0,35.0,55.0,112,45,30,0.0,5258,0.0,0.0,30.0,0.0,2.0,5.0,1.0,3.0,2.0,2600.9614220926674,0.0,0.0,81263.0,1,1,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,40631.5,5,0,5,5_1 +8328,7.0,7.0,86.0,112,71,71,0.0,5259,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2217.37452988651,0.0,0.0,16043.0,5,4,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10695.333333333334,1,0,1_0,1_1 +8329,0.0,0.0,64.0,300,78,71,0.0,526,0.0,0.0,0.0,313.0,0.0,1.0,0.0,1.0,1.0,3078.464874840183,0.0,0.0,18676.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,18676.0,2,0,2_1,2_1 +8330,0.0,0.0,45.0,400,52,50,0.0,5260,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.3,670.7283114947572,0.0,0.0,19651.0,1,4,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15116.153846153846,2,0,2_0,2_1 +8331,0.0,0.0,59.0,111,,71,0.0,5261,0.0,99999.0,0.0,195.0,0.0,5.0,0.0,1.0,1.0,2486.855016199265,1040.0,0.0,11786.0,8,3,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,1,0.0,2.0,11786.0,1,0,1_1,1_0 +8332,2.0,2.0,74.0,111,77,30,0.0,5263,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4205.4327199628615,2392.0,0.0,9660.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,9660.0,1,0,1_0,1_0 +8333,2.0,2.0,76.0,111,75,50,0.0,5264,0.0,0.0,65.0,0.0,0.0,4.0,0.0,2.0,1.5,2377.222779397448,2489.24,0.0,37732.0,5,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,25154.666666666668,4,0,4_0,4_0 +8334,2.0,6.0,36.0,300,54,31,0.0,5265,0.0,500.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1631.9321228409258,7020.0,0.0,46930.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22347.619047619046,3,0,3_0,3_1 +8335,3.0,3.0,38.0,400,52,50,0.0,5266,0.0,0.0,175.0,0.0,2.0,4.0,3.0,5.0,2.4,586.6371037990391,0.0,0.0,47310.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,19712.5,3,0,3_1,3_1 +8336,8.0,8.0,36.0,111,84,50,0.0,5267,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,2.1,974.5446700867253,0.0,0.0,33080.0,3,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,15752.380952380952,2,0,2_1,2_0 +8337,4.0,8.0,75.0,111,72,70,0.0,5269,0.0,0.0,0.0,438.0,0.0,2.0,0.0,1.0,1.0,2494.855211677252,0.0,0.0,26440.0,5,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,26440.0,4,0,4_0,4_0 +8338,13.0,15.0,34.0,111,46,31,0.0,527,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3307.522084411048,0.0,0.0,29720.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29720.0,4,0,4_0,4_0 +8339,0.0,0.0,53.0,112,34,30,0.0,5270,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1492.381904065689,0.0,0.0,72943.0,1,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,48628.666666666664,5,0,5,5_1 +8340,8.0,10.0,67.0,120,75,20,0.0,5271,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1477.9179184285765,1471.6000000000001,0.0,64551.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,43034.0,5,0,5,5_1 +8341,4.0,12.0,68.0,211,64,50,0.0,5272,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2016.2108130052866,3582.7999999999997,0.0,22161.0,5,1,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22161.0,3,0,3_0,3_0 +8342,10.0,13.0,37.0,112,47,50,0.0,5274,0.0,0.0,200.0,0.0,2.0,4.0,1.0,3.0,1.8,1811.4562418671242,2119.52,0.0,37700.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20944.444444444445,3,0,3_0,3_1 +8343,7.0,7.0,61.0,112,78,71,0.0,5275,0.0,375.0,80.0,0.0,0.0,3.0,0.0,1.0,1.0,2437.780496750621,2602.6,0.0,13918.0,7,1,9,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,13918.0,2,0,2_0,2_0 +8344,7.0,15.0,30.0,111,38,12,0.0,5276,0.0,0.0,100.0,0.0,2.0,3.0,0.0,2.0,1.5,2953.3633089106143,3140.8,0.0,65175.0,1,1,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,43450.0,5,0,5,5_0 +8345,2.0,23.0,38.0,111,67,60,0.0,5277,0.0,0.0,260.0,0.0,2.0,6.0,3.0,5.0,2.4,1727.5140505346315,0.0,0.0,35492.0,1,2,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,14788.333333333334,2,0,2_0,2_0 +8346,10.0,10.0,41.0,111,38,12,0.0,5278,0.0,0.0,60.0,0.0,2.0,5.0,4.0,6.0,3.3,2010.6816457914774,3484.0,0.0,92082.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,27903.636363636364,4,0,4_0,4_0 +8347,0.0,0.0,59.0,111,21,50,0.0,5279,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1599.0456239339808,0.0,0.0,102403.0,1,1,7,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,68268.66666666667,5,0,5,5_0 +8348,4.0,19.0,54.0,112,75,20,0.0,528,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,3397.8517903648353,1560.0,0.0,52615.0,5,2,8,1.0,3,5.0,0.0,0.0,0,1,0,0,0,0,5.0,0.0,35076.666666666664,5,0,5,5_0 +8349,4.0,4.0,31.0,111,65,43,0.0,5280,0.0,0.0,0.0,218.0,2.0,2.0,0.0,2.0,1.5,2238.993927711437,0.0,0.0,34031.0,1,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,22687.333333333332,3,0,3_1,3_0 +8350,0.0,21.0,50.0,112,54,33,0.0,5282,0.0,0.0,450.0,0.0,3.0,6.0,2.0,4.0,2.5,1910.1199636767526,0.0,0.0,96259.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,38503.6,5,0,5,5_1 +8351,2.0,5.0,53.0,111,48,71,0.0,5284,0.0,450.0,0.0,706.0,3.0,5.0,3.0,5.0,2.8,4056.1262145155833,0.0,0.0,43150.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,15410.714285714286,2,0,2_0,2_0 +8352,3.0,7.0,48.0,111,65,50,0.0,5286,0.0,120.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,3566.989149964769,0.0,0.0,37690.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25126.666666666668,4,0,4_0,4_0 +8353,0.0,0.0,50.0,111,63,71,0.0,5287,0.0,0.0,0.0,268.0,1.0,3.0,0.0,1.0,1.0,2997.933730128332,0.0,0.0,24032.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24032.0,4,0,4_0,4_0 +8354,0.0,0.0,59.0,111,77,50,0.0,5288,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2981.2933283612715,0.0,0.0,34039.0,5,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17019.5,2,0,2_0,2_0 +8355,0.0,0.0,50.0,111,38,31,0.0,5289,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2116.6154581777923,0.0,0.0,51723.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25861.5,4,0,4_0,4_0 +8356,1.0,11.0,72.0,211,22,41,2.0,5290,0.0,150.0,0.0,795.0,2.0,4.0,0.0,2.0,1.5,1430.6928638622028,2600.0,4700.0,34727.0,5,3,2,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23151.333333333332,3,0,3_0,3_0 +8357,11.0,11.0,37.0,111,47,31,0.0,5291,0.0,0.0,0.0,0.0,2.0,4.0,2.0,6.0,3.1,1309.121623254655,4680.0,0.0,66382.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21413.548387096773,3,0,3_0,3_0 +8358,0.0,0.0,30.0,120,31,10,0.0,5293,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2543.0303823272247,3309.28,0.0,129129.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,61490.0,5,0,5,5_1 +8359,0.0,0.0,77.0,111,74,41,0.0,5295,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2896.983936318871,0.0,0.0,30720.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30720.0,4,0,4_0,4_0 +8360,0.0,0.0,71.0,111,75,60,0.0,5298,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2425.7421411468363,0.0,0.0,49372.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32914.666666666664,5,0,5,5_0 +8361,10.0,10.0,62.0,112,74,31,0.0,5299,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1887.830190003995,0.0,0.0,84774.0,5,1,8,2.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,56516.0,5,0,5,5_0 +8362,0.0,0.0,69.0,400,71,70,0.0,53,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1729.25424924465,3666.0,0.0,12018.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12018.0,1,0,1_0,1_1 +8363,4.0,6.0,28.0,111,64,71,0.0,530,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,1539.3172855092087,3120.0,0.0,28148.0,1,3,6,5.0,4,1.0,1.0,0.0,0,0,1,0,0,1,0.0,1.0,13403.809523809523,1,0,1_1,1_0 +8364,2.0,2.0,24.0,111,43,30,0.0,5300,0.0,150.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4295.0410265036135,1821.0400000000002,0.0,20318.0,1,4,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20318.0,3,0,3_0,3_0 +8365,11.0,11.0,39.0,211,52,20,0.0,5301,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3496.837205439077,0.0,0.0,12689.0,1,4,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,8459.333333333334,1,0,1_0,1_0 +8366,11.0,11.0,25.0,111,38,30,0.0,5302,0.0,1500.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,7609.645658739784,0.0,0.0,33880.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,33880.0,5,0,5,5_0 +8367,11.0,11.0,28.0,112,85,42,0.0,5304,0.0,350.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,573.0494754213454,1560.0,0.0,23270.0,8,3,9,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,14543.75,2,0,2_1,2_1 +8368,1.0,1.0,75.0,111,75,41,0.0,5305,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2147.3117455765378,0.0,0.0,62693.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,41795.333333333336,5,0,5,5_0 +8369,0.0,0.0,56.0,221,52,31,0.0,5306,0.0,0.0,0.0,0.0,2.0,7.0,2.0,3.0,2.0,888.3087748073594,0.0,0.0,40432.0,1,2,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20216.0,3,0,3_0,3_0 +8370,4.0,4.0,83.0,111,78,71,0.0,5308,0.0,350.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4007.0885927733675,0.0,0.0,20224.0,5,1,6,4.0,1,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,20224.0,3,0,3_0,3_0 +8371,7.0,7.0,68.0,111,77,71,0.0,5309,0.0,0.0,0.0,0.0,1.0,2.0,1.0,3.0,2.0,2978.512525386368,0.0,0.0,32656.0,5,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16328.0,2,0,2_0,2_0 +8372,2.0,8.0,83.0,112,86,70,0.0,531,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2397.345679658114,0.0,0.0,14450.0,5,4,8,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,14450.0,2,0,2_0,2_0 +8373,0.0,0.0,64.0,112,78,50,0.0,5310,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1997.3155345472685,2340.0,0.0,32815.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21876.666666666668,3,0,3_0,3_1 +8374,1.0,1.0,36.0,112,31,10,1.0,5313,0.0,0.0,0.0,1900.0,2.0,9.0,3.0,5.0,2.6,2654.796485453695,0.0,7000.0,107453.0,1,3,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,41328.07692307692,5,0,5,5_1 +8375,6.0,13.0,50.0,111,22,42,0.0,5314,0.0,0.0,0.0,873.0,2.0,4.0,1.0,3.0,2.0,2967.3650691925286,0.0,0.0,90028.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,45014.0,5,0,5,5_0 +8376,7.0,7.0,51.0,111,45,50,0.0,5319,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2159.9708833544923,1656.2,0.0,42400.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,21200.0,3,0,3_0,3_0 +8377,0.0,0.0,75.0,120,78,71,2.0,5320,0.0,220.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3086.1165049082692,1092.0,5600.0,20060.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20060.0,3,0,3_0,3_1 +8378,0.0,0.0,48.0,111,68,71,0.0,5321,0.0,0.0,0.0,108.0,1.0,2.0,1.0,2.0,1.5,1143.314314040387,0.0,0.0,14758.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9838.666666666666,1,0,1_1,1_0 +8379,6.0,6.0,45.0,211,38,12,0.0,5322,0.0,0.0,350.0,0.0,2.0,7.0,3.0,5.0,2.6,1936.7397976996956,0.0,0.0,83731.0,1,2,2,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,32204.23076923077,5,0,5,5_0 +8380,2.0,2.0,22.0,111,56,71,0.0,5323,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2632.3998431238088,0.0,0.0,16820.0,1,1,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,8410.0,1,0,1_0,1_0 +8381,2.0,4.0,79.0,111,74,50,0.0,5325,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3023.2315660624463,0.0,0.0,23572.0,5,1,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23572.0,3,0,3_0,3_0 +8382,0.0,0.0,47.0,112,67,50,0.0,5327,0.0,0.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,122.52669081176936,3423.16,0.0,39616.0,1,2,9,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26410.666666666668,4,0,4_0,4_1 +8383,3.0,3.0,53.0,111,37,12,0.0,5329,0.0,0.0,24.0,0.0,2.0,4.0,1.0,3.0,2.0,1613.1448252753896,3120.0,0.0,75107.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,37553.5,5,0,5,5_0 +8384,4.0,4.0,77.0,111,22,10,0.0,5330,0.0,660.0,50.0,0.0,1.0,5.0,0.0,2.0,1.5,1711.9362589989514,1281.8,0.0,128700.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,85800.0,5,0,5,5_0 +8385,6.0,16.0,50.0,112,65,71,0.0,5331,0.0,60.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1708.9072437393058,780.0,0.0,58696.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,32608.888888888887,5,0,5,5_1 +8386,2.0,11.0,76.0,111,77,50,0.0,5332,0.0,0.0,25.0,0.0,0.0,3.0,0.0,1.0,1.0,2798.9028128352097,0.0,0.0,14686.0,5,3,5,4.0,1,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,14686.0,2,0,2_0,2_0 +8387,9.0,11.0,34.0,111,68,71,0.0,5333,0.0,720.0,0.0,138.0,1.0,6.0,3.0,5.0,2.4,2067.245201875676,4472.52,0.0,33819.0,1,3,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,14091.25,2,0,2_1,2_0 +8388,14.0,14.0,64.0,111,64,70,0.0,5334,0.0,0.0,20.0,0.0,2.0,4.0,0.0,2.0,1.5,1634.0345189169668,0.0,0.0,35930.0,5,1,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23953.333333333332,4,0,4_0,4_0 +8389,0.0,0.0,45.0,111,62,60,0.0,5336,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,10902.824791467132,364.0,0.0,19146.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19146.0,3,0,3_0,3_0 +8390,0.0,0.0,34.0,112,37,41,0.0,5337,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2436.1614278338543,64.48,0.0,51666.0,1,3,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28703.333333333332,4,0,4_0,4_1 +8391,7.0,9.0,66.0,400,74,50,0.0,5338,0.0,450.0,350.0,0.0,0.0,5.0,0.0,2.0,1.5,1688.8658728560301,0.0,0.0,37695.0,5,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,25130.0,4,0,4_0,4_1 +8392,2.0,7.0,39.0,120,37,50,0.0,5339,0.0,250.0,0.0,511.0,4.0,5.0,4.0,6.0,3.3,2725.3653876834946,1040.0,0.0,40158.0,1,3,0,3.0,4,2.0,1.0,1.0,0,1,0,0,0,1,0.0,2.0,12169.09090909091,1,0,1_1,1_0 +8393,3.0,6.0,47.0,112,62,41,0.0,5340,1000.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1581.1719807544575,2600.0,0.0,57029.0,1,2,8,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21934.23076923077,3,0,3_0,3_0 +8394,0.0,0.0,56.0,111,31,20,0.0,5343,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2678.7385984765883,0.0,0.0,33954.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33954.0,5,0,5,5_0 +8395,0.0,0.0,70.0,211,78,71,0.0,5347,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4338.611236477617,1456.0,0.0,15425.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15425.0,2,0,2_0,2_0 +8396,1.0,11.0,47.0,111,46,60,2.0,5348,0.0,250.0,450.0,450.0,4.0,6.0,2.0,4.0,2.5,1724.998784337849,0.0,1500.0,72047.0,1,3,8,7.0,4,4.0,0.0,1.0,0,0,0,1,0,0,3.0,1.0,28818.8,4,0,4_0,4_0 +8397,0.0,0.0,41.0,111,35,31,0.0,5350,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3072.2888242097283,2201.16,0.0,50035.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33356.666666666664,5,0,5,5_0 +8398,0.0,0.0,46.0,112,46,30,0.0,5353,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2095.5916097841523,4160.0,0.0,57661.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32033.888888888887,5,0,5,5_1 +8399,7.0,16.0,55.0,111,21,50,0.0,5354,0.0,200.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2311.926532947598,0.0,0.0,50744.0,1,1,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25372.0,4,0,4_0,4_0 +8400,1.0,9.0,71.0,212,75,31,2.0,5355,0.0,150.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2294.506116962915,0.0,5500.0,60411.0,5,1,2,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,40274.0,5,0,5,5_1 +8401,0.0,0.0,58.0,111,54,71,0.0,5357,0.0,0.0,0.0,463.0,1.0,2.0,0.0,1.0,1.0,2803.779161390369,0.0,0.0,29197.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29197.0,4,0,4_0,4_0 +8402,2.0,3.0,31.0,112,62,50,0.0,5358,0.0,0.0,30.0,0.0,1.0,4.0,0.0,1.0,1.0,1886.8911140679247,0.0,0.0,30054.0,1,2,8,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,30054.0,4,0,4_0,4_1 +8403,4.0,13.0,24.0,111,34,10,0.0,5359,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3780.59542433941,0.0,0.0,26087.0,1,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26087.0,4,0,4_0,4_0 +8404,2.0,9.0,74.0,111,78,41,0.0,536,0.0,600.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3590.146984622413,1586.0,0.0,24770.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,24770.0,4,0,4_0,4_0 +8405,9.0,12.0,42.0,111,46,31,0.0,5360,0.0,0.0,40.0,0.0,1.0,2.0,0.0,1.0,1.0,5772.102493461209,0.0,0.0,19005.0,1,4,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,19005.0,3,0,3_0,3_0 +8406,0.0,0.0,25.0,111,67,43,0.0,5361,0.0,0.0,0.0,500.0,1.0,3.0,1.0,2.0,1.3,3368.30017385276,2080.0,0.0,20115.0,4,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15473.076923076922,2,0,2_0,2_0 +8407,2.0,6.0,30.0,112,46,43,0.0,5362,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2196.6878592280236,1040.0,0.0,49810.0,1,2,8,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,23719.04761904762,3,0,3_0,3_0 +8408,0.0,0.0,38.0,400,13,43,0.0,5363,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1699.0311482171378,2496.0,0.0,23646.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9852.5,1,0,1_0,1_1 +8409,0.0,0.0,30.0,111,65,50,0.0,5364,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2110.089199594571,1657.24,0.0,59570.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33094.444444444445,5,0,5,5_0 +8410,0.0,16.0,72.0,112,74,31,0.0,5365,0.0,0.0,20.0,0.0,0.0,5.0,0.0,2.0,1.5,1631.63087207625,1861.6,0.0,42795.0,5,1,9,1.0,3,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,28530.0,4,0,4_0,4_0 +8411,0.0,0.0,80.0,111,74,50,1.0,5366,0.0,20.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2508.327769842307,3184.48,21800.0,55086.0,5,1,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,27543.0,4,0,4_0,4_0 +8412,0.0,0.0,24.0,112,11,50,0.0,5367,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4112.556312956627,0.0,0.0,3127.0,1,4,9,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,3127.0,1,0,1_0,1_1 +8413,4.0,4.0,32.0,400,63,43,0.0,537,0.0,60.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1891.1458375980435,2481.96,0.0,34419.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19121.666666666668,3,0,3_0,3_1 +8414,4.0,8.0,50.0,112,47,31,0.0,5370,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3618.0491310334637,1560.0,0.0,34667.0,1,2,9,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,34667.0,5,0,5,5_0 +8415,0.0,0.0,84.0,111,75,33,0.0,5372,0.0,0.0,0.0,406.0,0.0,3.0,0.0,1.0,1.0,2699.816989184023,2600.0,0.0,22083.0,5,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22083.0,3,0,3_0,3_0 +8416,0.0,12.0,90.0,111,86,71,0.0,5375,0.0,100.0,100.0,0.0,0.0,6.0,0.0,2.0,1.5,1474.454321284248,0.0,0.0,40524.0,5,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,27016.0,4,0,4_0,4_0 +8417,21.0,23.0,50.0,111,37,30,0.0,5376,0.0,250.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2254.9536045480036,0.0,0.0,91814.0,1,1,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,45907.0,5,0,5,5_0 +8418,12.0,12.0,64.0,111,75,50,0.0,5377,0.0,0.0,70.0,0.0,0.0,4.0,0.0,1.0,1.0,1135.1900683566323,2080.52,0.0,22445.0,5,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22445.0,3,0,3_0,3_0 +8419,8.0,8.0,42.0,112,64,50,0.0,5378,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2081.34910373551,572.0,0.0,36770.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17509.52380952381,2,0,2_0,2_1 +8420,13.0,18.0,59.0,221,77,71,0.0,5379,0.0,500.0,20.0,0.0,1.0,5.0,0.0,2.0,1.5,2788.866092547585,0.0,0.0,19835.0,5,1,1,2.0,3,4.0,0.0,1.0,0,1,0,0,0,0,1.0,3.0,13223.333333333334,1,0,1_0,1_0 +8421,4.0,4.0,76.0,112,75,60,0.0,538,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1384.990622905343,2234.96,0.0,44121.0,5,1,9,3.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,29414.0,4,0,4_0,4_0 +8422,1.0,10.0,61.0,111,72,41,2.0,5382,0.0,48.0,0.0,0.0,1.0,7.0,2.0,4.0,2.5,1941.4660840843064,3640.0,3200.0,37650.0,5,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,15060.0,2,0,2_0,2_0 +8423,3.0,11.0,84.0,111,77,71,0.0,5384,0.0,650.0,500.0,0.0,0.0,3.0,0.0,1.0,1.0,2958.677712815118,0.0,0.0,19385.0,5,1,8,6.0,1,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,19385.0,3,0,3_0,3_0 +8424,0.0,0.0,37.0,112,33,71,0.0,5385,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,2040.7817350125513,0.0,0.0,42571.0,1,2,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20271.90476190476,3,0,3_0,3_0 +8425,10.0,10.0,44.0,300,62,31,0.0,5386,0.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,1.8,1729.8492197900703,6413.68,0.0,46110.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25616.666666666664,4,0,4_0,4_1 +8426,9.0,14.0,75.0,112,75,31,0.0,5387,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1296.1816010064456,0.0,0.0,51010.0,5,1,6,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,34006.666666666664,5,0,5,5_1 +8427,2.0,2.0,66.0,400,77,50,0.0,5388,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2609.6169192545294,0.0,0.0,11491.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11491.0,1,0,1_0,1_1 +8428,2.0,2.0,78.0,112,71,71,0.0,5389,0.0,0.0,50.0,0.0,0.0,5.0,0.0,2.0,1.5,2236.7685386843546,0.0,0.0,26240.0,5,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17493.333333333332,2,0,2_0,2_0 +8429,0.0,0.0,49.0,111,47,50,0.0,5393,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1461.0393231481698,0.0,0.0,44389.0,1,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29592.666666666668,4,0,4_0,4_0 +8430,11.0,15.0,56.0,111,43,33,0.0,5394,0.0,0.0,150.0,0.0,2.0,7.0,1.0,2.0,1.5,1592.3477204602568,0.0,0.0,48808.0,1,4,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,32538.666666666668,5,0,5,5_0 +8431,0.0,6.0,36.0,111,21,43,0.0,5395,0.0,100.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3565.024365638741,2600.0,0.0,16442.0,1,4,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,16442.0,2,0,2_0,2_0 +8432,1.0,2.0,64.0,120,77,50,2.0,5396,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,1839.8623048879906,2600.0,12800.0,20650.0,5,1,0,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,13766.666666666666,1,0,1_0,1_1 +8433,1.0,4.0,49.0,111,34,10,2.0,5397,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2894.5319335392146,0.0,5000.0,75259.0,1,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,75259.0,5,0,5,5_0 +8434,7.0,8.0,19.0,111,84,41,0.0,5398,0.0,0.0,0.0,157.0,0.0,1.0,0.0,1.0,1.0,2477.8587408295703,0.0,0.0,7266.0,3,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,7266.0,1,0,1_1,1_0 +8435,3.0,3.0,67.0,211,75,33,0.0,5399,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1611.094461910771,0.0,0.0,34554.0,5,1,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,34554.0,5,0,5,5_0 +8436,5.0,36.0,43.0,111,52,50,0.0,540,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2507.922648786188,0.0,0.0,21250.0,1,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21250.0,3,0,3_0,3_0 +8437,0.0,0.0,43.0,111,85,71,1.0,5400,0.0,0.0,0.0,121.0,0.0,3.0,2.0,3.0,1.8,606.1680408925552,0.0,19232.0,13976.0,6,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,7764.444444444444,1,0,1_1,1_0 +8438,0.0,5.0,66.0,111,78,70,0.0,5401,0.0,200.0,0.0,185.0,0.0,1.0,0.0,1.0,1.0,3255.6320349834946,0.0,0.0,27314.0,5,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27314.0,4,0,4_0,4_0 +8439,1.0,3.0,55.0,120,47,50,0.0,5402,0.0,99999.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2879.4432001453883,2156.96,0.0,33245.0,1,1,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,33245.0,5,0,5,5_1 +8440,5.0,5.0,49.0,111,46,42,0.0,5405,0.0,99999.0,0.0,196.0,1.0,2.0,0.0,1.0,1.0,2250.562985067978,2601.56,0.0,21518.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21518.0,3,0,3_0,3_0 +8441,1.0,4.0,61.0,111,56,70,0.0,5406,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1746.6948393345692,0.0,0.0,21601.0,1,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,21601.0,3,0,3_0,3_0 +8442,15.0,15.0,49.0,111,23,50,0.0,5407,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,3289.3751862246168,0.0,0.0,63690.0,1,1,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25476.0,4,0,4_0,4_0 +8443,0.0,0.0,61.0,120,74,60,0.0,5409,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1662.1125968197525,0.0,0.0,85103.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,56735.333333333336,5,0,5,5_0 +8444,6.0,6.0,77.0,112,42,41,0.0,541,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1687.604187618633,520.0,0.0,60196.0,5,1,10,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,40130.666666666664,5,0,5,5_0 +8445,0.0,0.0,72.0,300,71,70,0.0,5411,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1488.4012903245075,0.0,0.0,18640.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12426.666666666666,1,0,1_0,1_1 +8446,2.0,17.0,74.0,120,75,50,0.0,5412,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1395.0743797830507,0.0,0.0,29700.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19800.0,3,0,3_0,3_0 +8447,1.0,1.0,83.0,120,86,71,1.0,5413,0.0,0.0,50.0,0.0,0.0,6.0,0.0,2.0,1.5,1393.3727650975295,0.0,22700.0,29430.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19620.0,3,0,3_0,3_1 +8448,4.0,4.0,22.0,112,63,43,0.0,5414,0.0,99999.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2868.1347133627037,3641.04,0.0,37312.0,1,3,4,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24874.666666666668,4,0,4_0,4_1 +8449,7.0,11.0,27.0,111,43,50,0.0,5415,0.0,350.0,40.0,0.0,1.0,4.0,1.0,2.0,1.3,1165.3655012154036,0.0,0.0,22894.0,1,2,8,7.0,2,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,17610.76923076923,2,0,2_0,2_0 +8450,0.0,0.0,86.0,111,77,71,0.0,5416,0.0,0.0,0.0,292.0,0.0,3.0,0.0,1.0,1.0,4082.136690626927,0.0,0.0,13882.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13882.0,1,0,1_1,1_0 +8451,0.0,0.0,66.0,111,77,71,0.0,5417,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3324.310136554115,0.0,0.0,30470.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20313.333333333332,3,0,3_0,3_0 +8452,0.0,0.0,52.0,120,69,71,0.0,5419,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2016.9672366278933,0.0,0.0,21474.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21474.0,3,0,3_0,3_1 +8453,4.0,10.0,32.0,111,38,10,0.0,542,0.0,99999.0,99999.0,1550.0,2.0,3.0,0.0,2.0,1.5,4276.545329704659,0.0,0.0,59582.0,1,3,10,8.0,5,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,39721.333333333336,5,0,5,5_0 +8454,0.0,0.0,62.0,111,75,50,0.0,5421,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2413.9315996602504,0.0,0.0,25113.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25113.0,4,0,4_0,4_0 +8455,0.0,3.0,47.0,300,52,50,0.0,5422,0.0,50.0,0.0,0.0,2.0,5.0,2.0,8.0,3.5,2132.8227835020834,4160.0,0.0,33848.0,1,2,0,0.0,5,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,9670.857142857143,1,0,1_0,1_1 +8456,0.0,0.0,22.0,112,47,31,0.0,5423,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2128.5181462211563,2080.52,0.0,21367.0,1,3,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14244.666666666666,2,0,2_0,2_1 +8457,0.0,0.0,78.0,111,72,50,0.0,5425,0.0,0.0,0.0,261.0,0.0,2.0,0.0,1.0,1.0,3296.5897052655882,2756.52,0.0,14758.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14758.0,2,0,2_0,2_0 +8458,0.0,0.0,48.0,111,54,31,0.0,5428,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,1154.3521913357672,0.0,0.0,44210.0,1,3,6,5.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24561.11111111111,4,0,4_0,4_0 +8459,3.0,15.0,50.0,112,64,71,0.0,5429,0.0,0.0,91.0,0.0,2.0,5.0,1.0,3.0,2.0,1902.085631736006,2340.0,0.0,49436.0,1,2,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24718.0,4,0,4_0,4_1 +8460,0.0,0.0,52.0,112,63,50,0.0,543,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1573.9829410909542,0.0,0.0,31920.0,1,1,8,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15960.0,2,0,2_0,2_0 +8461,0.0,0.0,67.0,111,77,44,0.0,5430,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2335.0102804508983,0.0,0.0,39000.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,39000.0,5,0,5,5_0 +8462,3.0,5.0,47.0,112,55,20,0.0,5431,0.0,240.0,0.0,221.0,1.0,3.0,2.0,3.0,1.6,1064.8894798196525,2848.04,0.0,25770.0,1,3,9,3.0,2,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,16106.25,2,0,2_1,2_0 +8463,2.0,2.0,76.0,111,74,12,0.0,5432,0.0,700.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2190.5867667984653,5231.200000000001,0.0,32157.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21438.0,3,0,3_0,3_0 +8464,16.0,16.0,48.0,112,48,41,0.0,5433,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1353.952082668024,2600.0,0.0,72488.0,1,2,9,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,3.0,0.0,28995.2,4,0,4_0,4_0 +8465,0.0,14.0,70.0,112,78,50,2.0,5436,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2265.3716642568693,0.0,1500.0,36480.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24320.0,4,0,4_0,4_1 +8466,0.0,0.0,31.0,120,63,50,1.0,5437,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2226.89541899022,2080.0,24000.0,35292.0,1,2,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,23528.0,3,0,3_0,3_0 +8467,1.0,1.0,62.0,111,77,70,1.0,5438,0.0,0.0,0.0,343.0,0.0,3.0,0.0,1.0,1.0,2412.0098321763226,0.0,11793.0,18091.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18091.0,2,0,2_0,2_0 +8468,2.0,2.0,27.0,111,34,10,0.0,5439,0.0,255.0,0.0,750.0,2.0,3.0,1.0,3.0,1.8,3736.894550624355,0.0,0.0,51513.0,1,3,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,28618.333333333332,4,0,4_0,4_0 +8469,5.0,6.0,28.0,111,47,30,0.0,5440,0.0,80.0,0.0,310.0,1.0,1.0,0.0,1.0,1.0,5207.981491761335,0.0,0.0,19950.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,19950.0,3,0,3_0,3_0 +8470,3.0,13.0,36.0,111,42,30,0.0,5441,0.0,120.0,0.0,243.0,1.0,2.0,0.0,1.0,1.0,2782.3713698621614,3510.0,0.0,20846.0,1,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20846.0,3,0,3_0,3_0 +8471,0.0,0.0,78.0,111,74,41,0.0,5442,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1440.6917251835378,3449.16,0.0,46738.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31158.666666666668,4,0,4_0,4_0 +8472,3.0,3.0,51.0,112,43,33,0.0,5443,0.0,350.0,0.0,0.0,2.0,4.0,3.0,4.0,2.5,619.531968449847,2938.0,0.0,42524.0,1,3,9,2.0,2,1.0,1.0,1.0,0,1,0,0,0,1,0.0,1.0,17009.6,2,0,2_1,2_0 +8473,8.0,8.0,67.0,211,22,42,0.0,5444,0.0,350.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,6034.067190293739,0.0,0.0,55736.0,1,3,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,55736.0,5,0,5,5_0 +8474,0.0,0.0,66.0,112,75,33,0.0,5446,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1602.8290049135815,0.0,0.0,41110.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27406.666666666668,4,0,4_0,4_1 +8475,1.0,1.0,35.0,111,43,33,1.0,5447,0.0,0.0,0.0,553.0,1.0,2.0,1.0,2.0,1.3,1273.6768217751235,0.0,23500.0,25771.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19823.846153846152,3,0,3_0,3_0 +8476,6.0,21.0,60.0,112,78,50,0.0,5448,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3855.767996884746,1462.76,0.0,18001.0,5,1,6,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18001.0,2,0,2_0,2_1 +8477,0.0,0.0,42.0,111,55,30,0.0,5449,0.0,0.0,0.0,240.0,1.0,3.0,2.0,3.0,1.6,905.0938744878878,0.0,0.0,29094.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,18183.75,2,0,2_1,2_0 +8478,2.0,11.0,42.0,111,48,31,0.0,545,0.0,720.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2345.8853787952003,0.0,0.0,86339.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,37538.69565217392,5,0,5,5_0 +8479,0.0,0.0,61.0,111,74,31,0.0,5450,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,2240.5130442006703,1549.6000000000001,0.0,35052.0,4,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23368.0,3,0,3_0,3_0 +8480,7.0,7.0,70.0,112,74,20,0.0,5451,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2148.4021518788136,0.0,0.0,100090.0,5,2,9,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,66726.66666666667,5,0,5,5_0 +8481,2.0,17.0,56.0,300,42,30,0.0,5452,0.0,0.0,100049.0,0.0,1.0,3.0,1.0,2.0,1.5,2852.2409146681143,3120.52,0.0,25636.0,1,3,0,0.0,2,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,17090.666666666668,2,0,2_0,2_1 +8482,0.0,12.0,72.0,400,74,50,0.0,5453,0.0,0.0,800.0,0.0,0.0,5.0,0.0,2.0,1.5,1413.173307412627,6826.04,0.0,80761.0,5,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,53840.666666666664,5,0,5,5_1 +8483,5.0,6.0,59.0,120,78,50,0.0,5454,0.0,10.0,0.0,0.0,1.0,5.0,2.0,6.0,3.1,4052.9852733753946,3120.0,0.0,51065.0,5,1,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16472.58064516129,2,0,2_0,2_1 +8484,0.0,0.0,69.0,112,72,30,0.0,5456,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1759.3782119569678,0.0,0.0,41118.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27412.0,4,0,4_0,4_1 +8485,1.0,1.0,56.0,112,53,60,1.0,5457,0.0,0.0,90.0,0.0,1.0,4.0,0.0,2.0,1.5,2031.460836689689,1561.04,13000.0,29670.0,1,2,6,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19780.0,3,0,3_0,3_0 +8486,12.0,12.0,54.0,111,78,71,0.0,5458,0.0,0.0,99999.0,223.0,0.0,3.0,0.0,1.0,1.0,2313.139114950542,0.0,0.0,10870.0,7,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,10870.0,1,0,1_1,1_0 +8487,1.0,5.0,83.0,400,71,70,0.0,5459,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2247.369058408287,0.0,0.0,15980.0,5,4,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,15980.0,2,0,2_0,2_0 +8488,11.0,16.0,63.0,111,64,50,0.0,546,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1863.5768561170294,3242.2000000000003,0.0,63115.0,5,1,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31557.5,4,0,4_0,4_0 +8489,0.0,0.0,53.0,300,63,50,0.0,5462,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2281.1616211242786,2340.0,0.0,41453.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16581.2,2,0,2_0,2_1 +8490,3.0,9.0,49.0,111,37,20,0.0,5463,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2427.373606747411,1560.0,0.0,96956.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,48478.0,5,0,5,5_0 +8491,0.0,0.0,55.0,112,78,71,0.0,5464,0.0,0.0,0.0,208.0,1.0,4.0,1.0,2.0,1.5,4628.279129800969,520.0,0.0,27362.0,7,3,9,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,18241.333333333332,2,0,2_1,2_0 +8492,1.0,16.0,87.0,400,78,71,0.0,5466,0.0,300.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3054.563075648502,0.0,0.0,21324.0,5,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21324.0,3,0,3_0,3_1 +8493,0.0,0.0,50.0,112,85,50,0.0,5467,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2812.910628205191,0.0,0.0,6770.0,7,2,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,6770.0,1,0,1_0,1_1 +8494,5.0,7.0,70.0,111,77,50,0.0,5468,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2966.8441219287215,5460.0,0.0,30312.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,20208.0,3,0,3_0,3_0 +8495,4.0,4.0,35.0,111,54,31,0.0,5469,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2420.6863563673487,2080.0,0.0,66573.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,36985.0,5,0,5,5_0 +8496,2.0,2.0,35.0,111,45,43,0.0,547,0.0,0.0,99999.0,458.0,2.0,4.0,2.0,4.0,2.1,6223.38406905869,0.0,0.0,31320.0,1,3,10,8.0,4,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,14914.285714285714,2,0,2_0,2_0 +8497,0.0,0.0,35.0,111,47,42,0.0,5474,0.0,0.0,0.0,416.0,2.0,2.0,0.0,2.0,1.5,2708.9179497361847,2080.0,0.0,37202.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,24801.333333333332,4,0,4_1,4_0 +8498,15.0,15.0,43.0,111,38,31,0.0,5475,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1867.9396426562116,1173.12,0.0,73061.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,29224.4,4,0,4_0,4_0 +8499,5.0,21.0,59.0,111,67,50,0.0,5476,0.0,0.0,50.0,0.0,1.0,3.0,0.0,1.0,1.0,3325.970518562843,5689.84,0.0,32389.0,1,4,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,32389.0,5,0,5,5_0 +8500,3.0,3.0,64.0,112,75,50,0.0,5478,0.0,80.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2159.227407204613,1040.0,0.0,47696.0,5,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,31797.333333333332,5,0,5,5_1 +8501,4.0,11.0,86.0,111,86,70,0.0,548,0.0,0.0,0.0,0.0,0.0,6.0,1.0,2.0,1.5,2021.5702871010815,0.0,0.0,74200.0,5,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,49466.666666666664,5,0,5,5_0 +8502,0.0,0.0,29.0,111,81,43,0.0,5480,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2879.9224717466245,0.0,0.0,11556.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8889.23076923077,1,0,1_1,1_0 +8503,3.0,5.0,69.0,112,74,20,0.0,5481,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4196.984631417486,1839.2399999999998,0.0,32323.0,5,1,10,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,32323.0,5,0,5,5_0 +8504,5.0,11.0,47.0,111,38,12,0.0,5482,0.0,0.0,100.0,0.0,2.0,6.0,1.0,3.0,1.8,2187.3777318388024,3403.9199999999996,0.0,96331.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,53517.22222222222,5,0,5,5_0 +8505,0.0,0.0,85.0,111,77,70,0.0,5485,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2569.911567046333,0.0,0.0,23470.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23470.0,3,0,3_0,3_0 +8506,6.0,6.0,66.0,211,78,50,0.0,5486,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1143.2412136964101,0.0,0.0,31121.0,5,2,2,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20747.333333333332,3,0,3_0,3_0 +8507,5.0,8.0,45.0,111,38,31,0.0,5487,0.0,0.0,200.0,0.0,2.0,5.0,3.0,5.0,2.6,2198.2926285288268,0.0,0.0,61518.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,23660.76923076923,3,0,3_0,3_0 +8508,1.0,1.0,48.0,112,69,50,1.0,5488,0.0,0.0,100.0,0.0,4.0,6.0,2.0,4.0,2.5,2357.6863798388335,2964.0,14000.0,37538.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,15015.2,2,0,2_1,2_1 +8509,1.0,2.0,28.0,111,52,50,2.0,549,0.0,0.0,0.0,121.0,1.0,3.0,2.0,3.0,1.6,1225.184326769803,0.0,15040.0,22577.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,14110.625,2,0,2_1,2_0 +8510,7.0,7.0,28.0,400,69,31,0.0,5490,0.0,100.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,4071.5455807682124,0.0,0.0,23110.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15406.666666666666,2,0,2_0,2_1 +8511,0.0,0.0,83.0,111,75,33,0.0,5491,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3635.26932889572,0.0,0.0,35558.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35558.0,5,0,5,5_0 +8512,0.0,0.0,50.0,120,34,33,0.0,5492,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1791.875256148012,0.0,0.0,44104.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17641.6,2,0,2_0,2_1 +8513,0.0,0.0,42.0,111,34,10,0.0,5494,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2474.4006050382322,2600.0,0.0,67150.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,67150.0,5,0,5,5_0 +8514,0.0,1.0,57.0,112,55,50,0.0,5495,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,519.4963630044398,0.0,0.0,34590.0,1,3,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23060.0,3,0,3_0,3_1 +8515,14.0,14.0,62.0,111,74,31,0.0,5497,0.0,0.0,0.0,685.0,0.0,2.0,0.0,1.0,1.0,2858.7739088281965,3120.0,0.0,32930.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,32930.0,5,0,5,5_0 +8516,0.0,0.0,47.0,111,13,44,0.0,5498,0.0,0.0,0.0,395.0,1.0,1.0,0.0,1.0,1.0,2769.6690776671626,0.0,0.0,51746.0,1,3,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,51746.0,5,0,5,5_0 +8517,4.0,4.0,65.0,111,56,70,0.0,5499,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,3131.7980372458123,1872.0,0.0,33760.0,1,4,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,22506.666666666668,3,0,3_0,3_0 +8518,0.0,0.0,31.0,111,37,12,0.0,55,0.0,0.0,0.0,813.0,1.0,2.0,0.0,1.0,1.0,5196.968885264095,0.0,0.0,36080.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36080.0,5,0,5,5_0 +8519,1.0,1.0,83.0,111,77,70,1.0,550,0.0,400.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3346.8992071877815,0.0,12800.0,14984.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,14984.0,2,0,2_0,2_0 +8520,3.0,7.0,41.0,112,31,20,0.0,5500,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,6598.59501528221,1822.6,0.0,74163.0,1,2,7,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,35315.71428571428,5,0,5,5_0 +8521,0.0,0.0,51.0,111,56,71,0.0,5501,0.0,0.0,0.0,453.0,2.0,4.0,4.0,7.0,3.2,3504.826044470357,2664.48,0.0,52950.0,1,3,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16546.875,2,0,2_0,2_0 +8522,0.0,0.0,40.0,111,46,50,0.0,5502,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,746.9096626794178,0.0,0.0,24294.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12147.0,1,0,1_1,1_0 +8523,2.0,2.0,75.0,111,74,50,0.0,5503,0.0,90.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2476.0125700502795,0.0,0.0,42787.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28524.666666666668,4,0,4_0,4_0 +8524,0.0,0.0,66.0,111,77,50,1.0,5504,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2087.363958726437,0.0,10000.0,15216.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,15216.0,2,0,2_0,2_0 +8525,2.0,2.0,62.0,111,37,42,0.0,5505,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2644.1912444504305,4521.400000000001,0.0,35842.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,35842.0,5,0,5,5_0 +8526,20.0,20.0,54.0,112,47,50,0.0,5506,0.0,0.0,170.0,0.0,1.0,6.0,2.0,3.0,1.8,446.43435412359435,2860.52,0.0,34319.0,1,3,10,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,19066.11111111111,3,0,3_1,3_1 +8527,6.0,6.0,52.0,400,12,50,0.0,5507,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2702.416313298465,0.0,0.0,16720.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11146.666666666666,1,0,1_0,1_1 +8528,0.0,0.0,65.0,111,78,71,0.0,5508,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4103.440574848878,2257.3199999999997,0.0,14600.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14600.0,2,0,2_0,2_0 +8529,1.0,10.0,70.0,111,78,70,0.0,5509,0.0,150.0,650.0,345.0,0.0,3.0,0.0,1.0,1.0,4183.909118101104,0.0,0.0,15140.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,15140.0,2,0,2_1,2_0 +8530,8.0,12.0,36.0,111,31,20,0.0,551,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2187.8180630057805,0.0,0.0,153996.0,1,2,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,73331.42857142857,5,0,5,5_0 +8531,2.0,15.0,50.0,112,22,60,0.0,5511,0.0,99999.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2965.916073458551,2673.84,0.0,23980.0,1,1,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11990.0,1,0,1_0,1_1 +8532,1.0,11.0,58.0,111,78,71,0.0,5513,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1967.3714943578254,0.0,0.0,20280.0,5,1,4,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,13520.0,1,0,1_0,1_0 +8533,1.0,1.0,39.0,111,33,31,1.0,5514,0.0,0.0,0.0,418.0,1.0,3.0,1.0,2.0,1.3,1633.3681401505476,0.0,20000.0,27690.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21300.0,3,0,3_0,3_0 +8534,4.0,4.0,66.0,300,71,71,0.0,5515,0.0,100.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1347.5045128100899,3792.3600000000006,0.0,20792.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13861.333333333334,1,0,1_0,1_1 +8535,2.0,2.0,61.0,111,48,50,0.0,5516,0.0,99999.0,0.0,310.0,2.0,3.0,0.0,2.0,1.5,2227.7461873309135,0.0,0.0,53446.0,1,3,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,35630.666666666664,5,0,5,5_0 +8536,7.0,10.0,49.0,111,43,33,0.0,5518,0.0,500.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,597.3210438457537,1820.0,0.0,31441.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,17467.222222222223,2,0,2_0,2_0 +8537,2.0,5.0,63.0,300,47,31,0.0,5522,0.0,80.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2543.786559198422,0.0,0.0,13460.0,4,4,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,13460.0,1,0,1_0,1_1 +8538,5.0,5.0,77.0,300,75,44,0.0,5523,0.0,420.0,300.0,0.0,0.0,3.0,0.0,2.0,1.5,1680.021725775331,6000.8,0.0,32075.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,21383.333333333332,3,0,3_0,3_1 +8539,0.0,7.0,69.0,111,74,60,2.0,5524,0.0,120.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2491.0220083835375,1638.52,5000.0,38831.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,25887.333333333332,4,0,4_0,4_0 +8540,2.0,6.0,85.0,400,78,71,0.0,5526,0.0,450.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2651.8946924082074,0.0,0.0,25017.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16678.0,2,0,2_0,2_1 +8541,1.0,1.0,72.0,120,74,70,0.0,5528,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1526.9176621679037,0.0,0.0,38145.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,25430.0,4,0,4_0,4_0 +8542,1.0,1.0,69.0,111,75,50,1.0,5529,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2063.0245778844846,1763.3199999999997,11000.0,43652.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,29101.333333333332,4,0,4_0,4_0 +8543,0.0,0.0,33.0,112,47,50,0.0,553,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1951.4527524177759,3754.9199999999996,0.0,46525.0,1,3,8,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22154.761904761905,3,0,3_0,3_0 +8544,4.0,4.0,49.0,111,85,41,0.0,5530,0.0,220.0,0.0,0.0,0.0,5.0,2.0,3.0,2.0,879.7578081299076,1248.0,0.0,14138.0,6,3,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,7069.0,1,0,1_1,1_0 +8545,5.0,5.0,64.0,400,72,50,0.0,5532,0.0,65.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1637.8234894123636,0.0,0.0,37247.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24831.333333333332,4,0,4_0,4_1 +8546,10.0,10.0,47.0,112,62,50,0.0,5533,0.0,0.0,99999.0,0.0,2.0,4.0,1.0,3.0,1.8,2069.665114733569,0.0,0.0,55837.0,1,2,9,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,31020.555555555555,4,0,4_0,4_0 +8547,4.0,13.0,38.0,111,54,31,0.0,5535,0.0,0.0,0.0,0.0,2.0,2.0,2.0,4.0,2.1,2895.849112350272,1040.0,0.0,35060.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16695.238095238095,2,0,2_0,2_0 +8548,0.0,0.0,55.0,120,62,71,0.0,5537,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1942.9357149384834,4815.2,0.0,52911.0,1,1,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26455.5,4,0,4_0,4_0 +8549,3.0,16.0,47.0,111,52,50,0.0,5538,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,3.3,1478.5724567296033,2600.0,0.0,37156.0,1,1,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11259.39393939394,1,0,1_1,1_0 +8550,22.0,22.0,64.0,400,78,70,0.0,5539,0.0,0.0,0.0,0.0,0.0,3.0,0.0,3.0,2.0,3335.986807306858,0.0,0.0,34915.0,5,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17457.5,2,0,2_0,2_1 +8551,8.0,11.0,39.0,112,68,50,0.0,554,0.0,170.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1627.805091516795,0.0,0.0,27360.0,4,3,10,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27360.0,4,0,4_0,4_0 +8552,0.0,0.0,42.0,111,68,71,0.0,5540,0.0,0.0,0.0,0.0,1.0,3.0,3.0,4.0,1.9,870.3173514869621,0.0,0.0,20985.0,4,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11044.736842105263,1,0,1_1,1_0 +8553,5.0,23.0,37.0,111,56,31,0.0,5543,0.0,200.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,757.4954488722574,2861.56,0.0,20853.0,1,3,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,13033.125,1,0,1_1,1_0 +8554,0.0,0.0,69.0,111,75,41,0.0,5544,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1706.4393633770205,5629.0,0.0,42278.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28185.333333333332,4,0,4_0,4_0 +8555,11.0,11.0,41.0,111,56,71,0.0,5545,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,937.2935125512785,0.0,0.0,19305.0,1,3,5,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12065.625,1,0,1_1,1_0 +8556,0.0,0.0,61.0,120,68,71,0.0,5548,0.0,0.0,0.0,0.0,1.0,0.0,0.0,2.0,1.5,2092.249086186603,3559.3999999999996,0.0,18727.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12484.666666666666,1,0,1_0,1_1 +8557,0.0,14.0,51.0,112,37,20,0.0,5549,0.0,0.0,180.0,0.0,1.0,4.0,0.0,1.0,1.0,3362.000073403177,1560.0,0.0,30613.0,1,2,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,30613.0,4,0,4_0,4_0 +8558,3.0,19.0,71.0,111,78,70,0.0,5551,0.0,90.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1662.2890867834146,0.0,0.0,24797.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16531.333333333332,2,0,2_0,2_0 +8559,2.0,2.0,62.0,111,78,71,0.0,5553,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,2244.1339652899837,0.0,0.0,11304.0,5,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,7536.0,1,0,1_1,1_0 +8560,0.0,0.0,43.0,221,48,71,0.0,5557,0.0,0.0,0.0,600.0,2.0,2.0,0.0,2.0,1.5,6527.788239542674,2722.2000000000003,0.0,51032.0,1,3,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,34021.333333333336,5,0,5,5_0 +8561,4.0,4.0,51.0,111,62,70,0.0,5558,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2449.4742336958066,0.0,0.0,54954.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21981.6,3,0,3_0,3_0 +8562,10.0,14.0,51.0,300,54,50,0.0,5559,0.0,340.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1707.0641837647934,0.0,0.0,54849.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23847.391304347828,4,0,4_0,4_1 +8563,15.0,15.0,37.0,111,21,50,0.0,556,0.0,0.0,0.0,0.0,1.0,2.0,2.0,3.0,1.6,1140.756351281037,2600.0,0.0,10107.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,6316.875,1,0,1_0,1_0 +8564,7.0,10.0,28.0,111,56,50,0.0,5560,0.0,0.0,150.0,366.0,2.0,4.0,2.0,4.0,2.1,2497.7187626004347,598.0,0.0,26962.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,12839.047619047618,1,0,1_0,1_0 +8565,0.0,11.0,59.0,112,48,50,0.0,5561,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1649.6498078217132,0.0,0.0,49070.0,1,2,9,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,32713.333333333332,5,0,5,5_0 +8566,0.0,0.0,40.0,300,53,60,0.0,5563,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,2103.3012946337985,0.0,0.0,44612.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17158.46153846154,2,0,2_0,2_1 +8567,3.0,9.0,63.0,111,56,60,0.0,5565,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,686.596907462333,0.0,0.0,15445.0,4,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,7722.5,1,0,1_1,1_0 +8568,0.0,0.0,50.0,111,63,71,0.0,5567,0.0,0.0,0.0,365.0,3.0,4.0,1.0,4.0,2.5,1747.0952959640476,2481.96,0.0,57782.0,1,3,6,5.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23112.8,3,0,3_0,3_0 +8569,6.0,11.0,38.0,112,67,71,0.0,5568,0.0,0.0,200.0,415.0,2.0,3.0,0.0,2.0,1.5,704.8371521956277,0.0,0.0,26341.0,1,3,6,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17560.666666666668,2,0,2_0,2_0 +8570,11.0,37.0,45.0,211,52,42,0.0,5569,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1933.9751366513403,0.0,0.0,33137.0,1,3,1,2.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22091.333333333332,3,0,3_0,3_0 +8571,1.0,1.0,42.0,111,22,60,0.0,557,0.0,600.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3208.140215213299,0.0,0.0,4100.0,1,1,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,4100.0,1,0,1_0,1_0 +8572,6.0,6.0,36.0,111,54,41,0.0,5570,0.0,700.0,0.0,41.0,1.0,5.0,2.0,3.0,1.8,876.9925658820315,0.0,0.0,19513.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,10840.555555555555,1,0,1_1,1_0 +8573,1.0,1.0,57.0,111,55,31,1.0,5571,0.0,80.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,3391.378987724738,0.0,16000.0,22587.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,11293.5,1,0,1_0,1_0 +8574,0.0,0.0,58.0,111,22,12,0.0,5572,0.0,0.0,0.0,0.0,2.0,9.0,0.0,2.0,1.5,1784.1778632277246,9258.08,0.0,51763.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34508.666666666664,5,0,5,5_0 +8575,3.0,3.0,81.0,400,72,70,0.0,5574,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,4202.903105027899,0.0,0.0,19641.0,5,1,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19641.0,3,0,3_0,3_0 +8576,2.0,8.0,96.0,112,86,60,0.0,5576,0.0,0.0,99999.0,0.0,0.0,1.0,0.0,1.0,1.0,2015.7296945696135,0.0,0.0,27820.0,5,3,8,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,27820.0,4,0,4_0,4_0 +8577,0.0,0.0,63.0,112,34,10,0.0,5577,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3747.2829860810166,0.0,0.0,161980.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,107986.66666666667,5,0,5,5_1 +8578,3.0,5.0,64.0,111,75,70,0.0,5578,0.0,0.0,0.0,390.0,0.0,3.0,0.0,1.0,1.0,3415.3734392647825,0.0,0.0,22535.0,5,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22535.0,3,0,3_0,3_0 +8579,0.0,11.0,39.0,112,47,31,0.0,558,0.0,0.0,250.0,0.0,2.0,5.0,2.0,4.0,2.1,2119.2237852791523,3234.4,0.0,52540.0,1,2,4,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,25019.04761904762,4,0,4_0,4_1 +8580,0.0,0.0,67.0,111,22,60,0.0,5580,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2758.3722487988234,1560.0,0.0,114260.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,76173.33333333333,5,0,5,5_0 +8581,5.0,7.0,55.0,112,34,30,0.0,5581,0.0,150.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,1593.5919670110782,0.0,0.0,37631.0,1,2,9,3.0,2,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18815.5,3,0,3_0,3_0 +8582,0.0,4.0,51.0,300,21,50,0.0,5582,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2077.1685020837085,3640.0,0.0,31098.0,1,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20732.0,3,0,3_0,3_1 +8583,5.0,13.0,66.0,111,46,60,0.0,5583,0.0,72.0,0.0,730.0,1.0,2.0,0.0,1.0,1.0,3730.652725562704,0.0,0.0,12510.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,12510.0,1,0,1_0,1_0 +8584,0.0,1.0,81.0,221,74,33,1.0,5584,0.0,500.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4017.650299580426,0.0,16197.0,54672.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,36448.0,5,0,5,5_0 +8585,10.0,10.0,67.0,111,78,71,0.0,5586,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1957.6784474503324,0.0,0.0,17763.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11842.0,1,0,1_0,1_0 +8586,2.0,11.0,68.0,111,75,44,0.0,5587,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1565.5597286795792,0.0,0.0,44534.0,5,2,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,29689.333333333332,4,0,4_0,4_0 +8587,0.0,7.0,50.0,111,23,43,0.0,5588,0.0,0.0,99999.0,0.0,3.0,7.0,2.0,4.0,2.5,320.78659145748867,1924.0,0.0,104118.0,1,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,41647.2,5,0,5,5_0 +8588,4.0,6.0,83.0,221,74,50,0.0,5589,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1798.5809170040993,0.0,0.0,31289.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,20859.333333333332,3,0,3_0,3_0 +8589,12.0,13.0,82.0,111,86,41,0.0,559,0.0,180.0,200.0,0.0,0.0,6.0,0.0,1.0,1.0,3356.3709975110855,1560.0,0.0,13495.0,5,1,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,13495.0,1,0,1_0,1_0 +8590,3.0,3.0,84.0,111,75,50,0.0,5590,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1761.4001835658805,0.0,0.0,36195.0,5,1,10,8.0,3,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,24130.0,4,0,4_0,4_0 +8591,0.0,0.0,26.0,111,84,20,0.0,5591,0.0,0.0,0.0,59.0,0.0,4.0,0.0,1.0,1.0,2893.600687820696,0.0,0.0,3270.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,3270.0,1,0,1_1,1_0 +8592,6.0,6.0,62.0,112,72,50,0.0,5592,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1762.4160831470758,0.0,0.0,23437.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15624.666666666666,2,0,2_0,2_1 +8593,1.0,2.0,63.0,221,77,50,0.0,5593,0.0,50.0,40.0,0.0,0.0,5.0,0.0,1.0,1.0,2220.255555582396,0.0,0.0,26821.0,5,1,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,26821.0,4,0,4_0,4_0 +8594,8.0,9.0,46.0,111,46,43,0.0,5594,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.3,2253.5665945819583,2306.2000000000003,0.0,25979.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11295.217391304348,1,0,1_0,1_0 +8595,0.0,0.0,50.0,112,38,31,0.0,5595,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1600.1642200918088,1950.0,0.0,78427.0,1,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,52284.666666666664,5,0,5,5_1 +8596,0.0,0.0,59.0,112,78,71,0.0,5596,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2305.858747545941,0.0,0.0,1984.0,7,3,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,1322.6666666666667,1,0,1_1,1_1 +8597,6.0,11.0,40.0,400,62,31,0.0,5597,0.0,0.0,16.0,0.0,2.0,5.0,3.0,5.0,2.4,1745.8512422212928,2088.3199999999997,0.0,39918.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16632.5,2,0,2_0,2_1 +8598,2.0,9.0,51.0,112,64,60,0.0,5598,0.0,1010.0,120.0,0.0,2.0,4.0,0.0,2.0,1.5,1494.4097082694677,0.0,0.0,36188.0,1,2,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24125.333333333332,4,0,4_0,4_1 +8599,2.0,10.0,45.0,111,48,71,0.0,5599,0.0,240.0,70.0,0.0,2.0,4.0,2.0,4.0,2.1,2131.3149516692347,0.0,0.0,39065.0,1,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18602.38095238095,2,0,2_0,2_0 +8600,11.0,11.0,53.0,112,38,12,0.0,560,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,1909.2102615774347,1476.8,0.0,86310.0,1,1,9,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,34524.0,5,0,5,5_0 +8601,0.0,0.0,57.0,112,34,31,0.0,5600,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1966.8651830463236,0.0,0.0,52393.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26196.5,4,0,4_0,4_1 +8602,15.0,20.0,63.0,111,75,50,0.0,5601,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3118.8608365577466,0.0,0.0,47507.0,5,2,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,31671.333333333332,4,0,4_0,4_0 +8603,2.0,3.0,67.0,111,78,50,0.0,5602,0.0,70.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1576.270690831279,0.0,0.0,15048.0,5,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,10032.0,1,0,1_1,1_0 +8604,0.0,0.0,38.0,111,46,12,0.0,5603,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2942.4907741723437,3796.52,0.0,24553.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24553.0,4,0,4_0,4_0 +8605,6.0,6.0,61.0,111,37,12,0.0,5604,0.0,160.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3463.014372091493,1393.6000000000001,0.0,51834.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,51834.0,5,0,5,5_0 +8606,0.0,0.0,58.0,400,75,44,0.0,5606,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2333.662523810968,0.0,0.0,7297.0,7,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,7297.0,1,0,1_1,1_1 +8607,0.0,0.0,40.0,211,65,50,0.0,5607,0.0,0.0,0.0,308.0,1.0,3.0,1.0,2.0,1.3,2714.454340316393,2757.56,0.0,18133.0,1,3,3,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13948.461538461537,2,0,2_0,2_0 +8608,2.0,2.0,25.0,111,46,30,0.0,561,0.0,0.0,200.0,0.0,2.0,3.0,3.0,4.0,2.5,809.21287648076,0.0,0.0,43635.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,17454.0,2,0,2_0,2_0 +8609,9.0,9.0,59.0,111,68,41,0.0,5610,0.0,0.0,15.0,90.0,3.0,4.0,7.0,9.0,4.4,2468.258633805904,0.0,0.0,55758.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,12672.272727272726,1,0,1_1,1_0 +8610,0.0,0.0,36.0,111,54,41,0.0,5612,0.0,0.0,0.0,558.0,1.0,4.0,2.0,3.0,1.6,663.1776987787016,3016.0,0.0,33477.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,20923.125,3,0,3_1,3_0 +8611,2.0,2.0,53.0,400,52,71,0.0,5615,0.0,320.0,250.0,364.0,1.0,7.0,1.0,2.0,1.3,770.0540641016435,0.0,0.0,16532.0,4,3,0,0.0,2,2.0,1.0,1.0,1,0,0,0,0,1,1.0,1.0,12716.923076923076,1,0,1_1,1_1 +8612,4.0,6.0,83.0,211,72,70,0.0,5616,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1756.0054411908839,0.0,0.0,49097.0,5,4,2,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,32731.333333333332,5,0,5,5_0 +8613,4.0,4.0,79.0,111,74,12,0.0,5619,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2932.562756323291,0.0,0.0,56650.0,5,1,6,4.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,56650.0,5,0,5,5_0 +8614,0.0,0.0,84.0,111,,71,0.0,562,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3110.870270140472,0.0,0.0,19610.0,8,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19610.0,3,0,3_0,3_0 +8615,3.0,3.0,46.0,112,64,50,0.0,5620,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1679.4203435531729,0.0,0.0,26186.0,1,2,8,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,11385.217391304348,1,0,1_0,1_0 +8616,3.0,25.0,39.0,112,37,30,0.0,5622,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3163.0834691859122,2147.6,0.0,78296.0,1,2,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,37283.80952380952,5,0,5,5_0 +8617,5.0,5.0,54.0,112,37,31,0.0,5623,0.0,0.0,700.0,0.0,2.0,5.0,0.0,2.0,1.5,1479.864592116165,2288.0,0.0,66697.0,1,2,7,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,44464.666666666664,5,0,5,5_0 +8618,9.0,9.0,36.0,111,65,50,0.0,5624,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2257.119264829007,0.0,0.0,29198.0,1,3,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,19465.333333333332,3,0,3_1,3_0 +8619,0.0,0.0,27.0,111,43,30,0.0,5625,0.0,0.0,0.0,285.0,2.0,3.0,0.0,2.0,1.5,3534.996266495522,0.0,0.0,54130.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,36086.666666666664,5,0,5,5_0 +8620,11.0,11.0,54.0,111,45,31,0.0,5627,0.0,0.0,0.0,658.0,2.0,4.0,2.0,3.0,2.0,3207.16698633395,0.0,0.0,48036.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,24018.0,4,0,4_0,4_0 +8621,3.0,3.0,36.0,120,22,71,0.0,5628,0.0,650.0,0.0,0.0,3.0,6.0,2.0,4.0,2.3,1962.883344619671,1356.16,0.0,28355.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,12328.260869565218,1,0,1_0,1_0 +8622,0.0,0.0,74.0,111,75,60,0.0,563,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1415.0974517945428,0.0,0.0,47908.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31938.666666666668,5,0,5,5_0 +8623,2.0,2.0,48.0,111,65,60,0.0,5630,0.0,0.0,0.0,500.0,1.0,2.0,2.0,4.0,2.1,2031.7907011423597,0.0,0.0,31450.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,14976.190476190475,2,0,2_0,2_0 +8624,0.0,0.0,16.0,300,56,60,0.0,5631,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3432.067174008876,0.0,0.0,8465.0,2,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8465.0,1,0,1_1,1_1 +8625,0.0,0.0,77.0,111,77,70,0.0,5632,0.0,0.0,0.0,275.0,0.0,4.0,0.0,1.0,1.0,4407.045263545482,0.0,0.0,16400.0,5,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16400.0,2,0,2_0,2_0 +8626,2.0,13.0,53.0,112,67,70,0.0,5633,0.0,340.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2753.8359945475713,0.0,0.0,28097.0,1,2,8,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,18731.333333333332,3,0,3_0,3_1 +8627,2.0,15.0,54.0,111,23,30,0.0,5634,0.0,60.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3544.186954903959,0.0,0.0,96915.0,1,4,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,64610.0,5,0,5,5_0 +8628,0.0,0.0,73.0,400,71,71,0.0,5636,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2168.968567616824,0.0,0.0,7360.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,7360.0,1,0,1_0,1_1 +8629,0.0,9.0,34.0,112,21,44,0.0,5637,0.0,220.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2009.0851724075767,0.0,0.0,62970.0,1,2,7,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,34983.333333333336,5,0,5,5_0 +8630,1.0,9.0,70.0,111,77,50,0.0,5638,0.0,0.0,1700.0,0.0,1.0,4.0,0.0,2.0,1.5,1706.6090763962638,0.0,0.0,27466.0,5,1,4,4.0,3,3.0,1.0,1.0,0,0,1,0,0,0,3.0,0.0,18310.666666666668,2,0,2_0,2_0 +8631,1.0,1.0,89.0,111,86,70,1.0,5639,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2346.066977930811,0.0,30000.0,13557.0,5,1,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,9038.0,1,0,1_0,1_0 +8632,13.0,13.0,71.0,111,75,60,0.0,564,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1641.7807188409768,0.0,0.0,44079.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29386.0,4,0,4_0,4_0 +8633,0.0,8.0,41.0,300,62,43,2.0,5640,0.0,199998.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2051.486678741168,2860.0,3400.0,40870.0,4,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22705.555555555555,3,0,3_0,3_1 +8634,3.0,6.0,31.0,120,63,50,0.0,5642,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,2240.867024351876,1040.0,0.0,28592.0,1,3,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,1,0.0,2.0,11913.333333333334,1,0,1_1,1_1 +8635,0.0,0.0,73.0,111,78,71,0.0,5644,0.0,0.0,0.0,356.0,0.0,3.0,0.0,2.0,1.5,2674.1791538676202,0.0,0.0,25200.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16800.0,2,0,2_0,2_0 +8636,0.0,0.0,81.0,112,75,50,0.0,5646,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3012.8773239565835,0.0,0.0,40199.0,5,1,7,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40199.0,5,0,5,5_0 +8637,2.0,13.0,41.0,112,64,43,0.0,5648,0.0,60.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2310.7098093186287,2080.0,0.0,48696.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27053.333333333332,4,0,4_0,4_1 +8638,1.0,4.0,32.0,111,23,41,2.0,5649,0.0,0.0,0.0,580.0,1.0,3.0,2.0,3.0,1.6,1318.2051004420607,2600.0,8000.0,9397.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,5873.125,1,0,1_0,1_0 +8639,0.0,3.0,42.0,300,46,31,0.0,565,0.0,400.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2120.921761339565,1560.52,0.0,37147.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20637.222222222223,3,0,3_0,3_1 +8640,17.0,17.0,82.0,400,86,71,0.0,5650,0.0,0.0,0.0,135.0,0.0,3.0,0.0,1.0,1.0,2432.2346220853833,0.0,0.0,13727.0,5,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,13727.0,1,0,1_1,1_0 +8641,1.0,1.0,60.0,112,52,50,1.0,5651,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2183.6164773871988,0.0,26000.0,57074.0,1,1,10,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,38049.333333333336,5,0,5,5_0 +8642,4.0,4.0,25.0,111,84,20,0.0,5654,0.0,0.0,0.0,273.0,0.0,2.0,0.0,1.0,1.0,2968.7389715713493,257.40000000000003,0.0,13252.0,3,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,13252.0,1,0,1_1,1_0 +8643,9.0,10.0,32.0,111,67,42,0.0,5657,0.0,0.0,0.0,519.0,1.0,3.0,0.0,1.0,1.0,2728.1146044955435,0.0,0.0,25825.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25825.0,4,0,4_0,4_0 +8644,0.0,0.0,68.0,300,75,33,0.0,5658,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1562.6827394518345,0.0,0.0,44220.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29480.0,4,0,4_0,4_1 +8645,15.0,15.0,30.0,211,46,31,0.0,5659,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,3716.8889138187046,0.0,0.0,50985.0,1,3,4,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,50985.0,5,0,5,5_0 +8646,6.0,22.0,61.0,111,33,20,0.0,566,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1368.8930699378125,0.0,0.0,85490.0,1,1,7,5.0,3,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,56993.333333333336,5,0,5,5_0 +8647,0.0,0.0,58.0,400,62,50,0.0,5660,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1580.2666261888962,0.0,0.0,45170.0,1,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30113.333333333332,4,0,4_0,4_0 +8648,8.0,9.0,66.0,111,74,50,0.0,5661,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2828.267911498967,3536.0,0.0,64098.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,42732.0,5,0,5,5_0 +8649,0.0,0.0,71.0,111,75,50,0.0,5662,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2363.922727562842,0.0,0.0,25947.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25947.0,4,0,4_0,4_0 +8650,0.0,0.0,22.0,111,63,43,0.0,5663,0.0,0.0,0.0,181.0,1.0,3.0,3.0,5.0,2.4,2728.4852871414682,0.0,0.0,48088.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,20036.666666666668,3,0,3_1,3_0 +8651,2.0,2.0,31.0,112,38,12,0.0,5665,0.0,0.0,199998.0,0.0,2.0,5.0,1.0,3.0,1.8,2102.1496314725823,2261.48,0.0,54217.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,30120.555555555555,4,0,4_0,4_0 +8652,0.0,0.0,39.0,111,38,31,0.0,5666,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2883.442793115675,3431.4799999999996,0.0,86772.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41320.0,5,0,5,5_0 +8653,0.0,0.0,60.0,111,34,31,0.0,5668,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1743.2349469927424,2309.84,0.0,35290.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,35290.0,5,0,5,5_0 +8654,11.0,11.0,55.0,112,45,31,0.0,567,0.0,600.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,4018.118084118872,2543.3199999999997,0.0,92974.0,1,1,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,46487.0,5,0,5,5_0 +8655,0.0,0.0,43.0,111,43,43,0.0,5670,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2089.1893366742897,0.0,0.0,43612.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18961.739130434784,3,0,3_0,3_0 +8656,0.0,25.0,36.0,111,52,50,2.0,5671,0.0,0.0,0.0,221.0,1.0,4.0,3.0,4.0,1.9,594.3694707462689,0.0,150.0,37205.0,1,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,19581.578947368424,3,0,3_1,3_0 +8657,1.0,15.0,31.0,111,37,12,2.0,5673,0.0,0.0,100.0,0.0,1.0,1.0,0.0,1.0,1.0,4255.860466970011,0.0,100.0,20872.0,4,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,20872.0,3,0,3_0,3_0 +8658,2.0,14.0,53.0,111,42,30,0.0,5674,0.0,320.0,0.0,0.0,3.0,3.0,2.0,3.0,2.0,2471.861356136586,0.0,0.0,19393.0,1,3,4,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9696.5,1,0,1_1,1_0 +8659,4.0,16.0,48.0,111,68,71,0.0,5675,0.0,250.0,0.0,0.0,2.0,4.0,2.0,3.0,1.8,895.9948374020844,2568.7999999999997,0.0,61177.0,1,2,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,33987.22222222222,5,0,5,5_0 +8660,5.0,7.0,25.0,111,52,43,0.0,5676,0.0,0.0,75.0,0.0,2.0,2.0,0.0,2.0,1.5,2535.043980570599,0.0,0.0,25599.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,17066.0,2,0,2_1,2_0 +8661,2.0,7.0,69.0,111,72,44,0.0,5677,0.0,0.0,0.0,640.0,0.0,4.0,0.0,1.0,1.0,2403.0338225868777,0.0,0.0,21159.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21159.0,3,0,3_0,3_0 +8662,9.0,9.0,70.0,111,75,42,0.0,5678,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2313.3277671236365,0.0,0.0,38310.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25540.0,4,0,4_0,4_0 +8663,0.0,14.0,71.0,111,75,31,0.0,5679,0.0,200.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2043.059732522365,2174.12,0.0,39823.0,5,1,8,6.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,26548.666666666668,4,0,4_0,4_0 +8664,0.0,0.0,60.0,300,13,71,0.0,5680,0.0,0.0,0.0,0.0,2.0,10.0,0.0,2.0,1.5,1865.7238957883521,2601.56,0.0,12911.0,1,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8607.333333333334,1,0,1_0,1_1 +8665,0.0,0.0,88.0,211,78,70,0.0,5681,0.0,0.0,0.0,158.0,0.0,3.0,0.0,1.0,1.0,2218.7118725036785,0.0,0.0,13318.0,5,3,3,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13318.0,1,0,1_1,1_0 +8666,0.0,0.0,46.0,111,34,20,0.0,5682,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1229.1640342132628,0.0,0.0,24436.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13575.555555555555,1,0,1_1,1_0 +8667,10.0,15.0,33.0,111,43,30,0.0,5683,0.0,0.0,0.0,640.0,1.0,3.0,1.0,2.0,1.3,1381.9490078470742,0.0,0.0,23160.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,17815.384615384613,2,0,2_1,2_0 +8668,13.0,19.0,44.0,111,35,20,0.0,5684,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4275.517755671606,0.0,0.0,32996.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,32996.0,5,0,5,5_0 +8669,0.0,0.0,40.0,112,48,50,0.0,5685,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2579.780358249101,2341.56,0.0,49705.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19117.30769230769,3,0,3_0,3_1 +8670,8.0,13.0,61.0,112,74,42,0.0,5686,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1976.055476844411,3008.72,0.0,50389.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,33592.666666666664,5,0,5,5_1 +8671,0.0,5.0,62.0,111,72,71,0.0,5687,0.0,0.0,900.0,0.0,1.0,4.0,0.0,2.0,1.5,3400.7635813121665,1040.0,0.0,161572.0,5,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,107714.66666666667,5,0,5,5_0 +8672,3.0,7.0,32.0,112,68,50,0.0,5688,0.0,100.0,50.0,0.0,2.0,3.0,2.0,4.0,2.1,2451.6926570747282,3120.0,0.0,28578.0,1,3,6,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,13608.571428571428,1,0,1_1,1_1 +8673,5.0,9.0,46.0,111,48,31,0.0,5689,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2370.5502843979857,3640.0,0.0,45205.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21526.190476190477,3,0,3_0,3_0 +8674,13.0,13.0,33.0,400,56,50,0.0,569,0.0,0.0,5.0,187.0,1.0,4.0,2.0,3.0,1.6,2271.6883882992506,2080.0,0.0,18731.0,4,3,0,0.0,2,1.0,1.0,1.0,1,0,0,0,0,1,1.0,0.0,11706.875,1,0,1_1,1_1 +8675,6.0,6.0,70.0,111,78,71,0.0,5690,0.0,0.0,224.0,301.0,0.0,3.0,0.0,1.0,1.0,1992.980884769458,1963.52,0.0,21163.0,5,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21163.0,3,0,3_0,3_0 +8676,3.0,22.0,88.0,221,75,41,0.0,5691,0.0,0.0,30.0,0.0,0.0,4.0,0.0,2.0,1.5,1851.010734251504,0.0,0.0,30616.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,20410.666666666668,3,0,3_0,3_0 +8677,4.0,13.0,80.0,111,78,71,0.0,5692,0.0,0.0,400.0,240.0,0.0,3.0,0.0,1.0,1.0,3458.4960186006124,0.0,0.0,13318.0,5,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,1,2.0,0.0,13318.0,1,0,1_1,1_0 +8678,3.0,3.0,44.0,112,85,71,0.0,5693,0.0,0.0,80.0,0.0,0.0,6.0,1.0,2.0,1.5,412.2360000947547,0.0,0.0,8610.0,8,4,8,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,5740.0,1,0,1_0,1_1 +8679,5.0,14.0,91.0,111,78,70,0.0,5694,0.0,50.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3225.7759273148145,0.0,0.0,27010.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,27010.0,4,0,4_0,4_0 +8680,0.0,0.0,68.0,111,78,50,0.0,5695,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1623.1191891262727,1091.48,0.0,39913.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26608.666666666668,4,0,4_0,4_0 +8681,1.0,12.0,57.0,111,52,50,0.0,5696,0.0,0.0,99999.0,383.0,1.0,3.0,0.0,1.0,1.0,1906.2216655591285,1054.04,0.0,27927.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,27927.0,4,0,4_0,4_0 +8682,11.0,11.0,35.0,111,38,12,0.0,5697,0.0,70.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2592.2010232634234,3043.04,0.0,43900.0,1,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,20904.761904761905,3,0,3_0,3_0 +8683,16.0,16.0,37.0,211,64,71,0.0,5698,0.0,0.0,0.0,17.0,1.0,3.0,0.0,1.0,1.0,4166.733969276176,0.0,0.0,17912.0,4,3,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,17912.0,2,0,2_1,2_0 +8684,19.0,19.0,71.0,300,78,70,0.0,5699,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2108.4027697949823,2600.0,0.0,22797.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15198.0,2,0,2_0,2_1 +8685,9.0,21.0,69.0,111,74,71,0.0,57,0.0,0.0,40.0,0.0,0.0,3.0,0.0,1.0,1.0,3621.7097596834515,2827.24,0.0,58950.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,58950.0,5,0,5,5_0 +8686,17.0,17.0,43.0,300,42,30,0.0,5700,0.0,501.0,80.0,0.0,2.0,6.0,3.0,5.0,2.6,2370.4241896899275,3016.0,0.0,67601.0,1,2,0,2.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,26000.384615384613,4,0,4_0,4_0 +8687,4.0,5.0,41.0,300,62,31,0.0,5701,0.0,400.0,0.0,500.0,2.0,3.0,0.0,2.0,1.5,2980.1351735474564,1040.0,0.0,60674.0,1,3,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,40449.333333333336,5,0,5,5_1 +8688,1.0,15.0,67.0,400,77,70,2.0,5703,0.0,400.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2244.020722138562,0.0,1000.0,18985.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18985.0,3,0,3_0,3_1 +8689,0.0,0.0,29.0,111,52,31,0.0,5704,0.0,0.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,3941.6590029221575,4160.0,0.0,26450.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14694.444444444443,2,0,2_0,2_0 +8690,0.0,0.0,43.0,112,37,31,0.0,5705,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,3242.1746808155335,5899.4,0.0,93360.0,1,2,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,44457.142857142855,5,0,5,5_0 +8691,5.0,13.0,80.0,111,72,70,0.0,5706,0.0,0.0,0.0,647.0,0.0,3.0,0.0,2.0,1.5,4127.950570166013,0.0,0.0,34916.0,5,3,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,1,3.0,0.0,23277.333333333332,3,0,3_1,3_0 +8692,8.0,8.0,58.0,111,48,50,0.0,5707,0.0,0.0,500.0,550.0,1.0,2.0,0.0,1.0,1.0,3497.6743898528084,0.0,0.0,7430.0,1,3,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,7430.0,1,0,1_0,1_0 +8693,0.0,0.0,45.0,400,13,44,0.0,5708,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,2211.1795299636574,0.0,0.0,40891.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19471.90476190476,3,0,3_0,3_1 +8694,9.0,11.0,65.0,400,75,41,0.0,5709,0.0,0.0,150.0,0.0,0.0,5.0,0.0,2.0,1.5,1541.5778396923808,0.0,0.0,34755.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,23170.0,3,0,3_0,3_1 +8695,2.0,2.0,47.0,111,85,50,0.0,5710,0.0,360.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,5207.339908645756,0.0,0.0,13311.0,7,3,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,1,2.0,1.0,13311.0,1,0,1_1,1_0 +8696,0.0,0.0,44.0,112,37,30,0.0,5711,0.0,0.0,0.0,0.0,2.0,5.0,4.0,6.0,2.9,1989.5333303132927,1976.0,0.0,58293.0,1,3,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,20101.03448275862,3,0,3_1,3_1 +8697,0.0,20.0,25.0,111,52,43,0.0,5713,0.0,0.0,0.0,375.0,2.0,4.0,1.0,3.0,1.8,1563.6952166401113,0.0,0.0,29682.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16490.0,2,0,2_0,2_0 +8698,8.0,11.0,29.0,111,46,30,0.0,5714,0.0,200.0,0.0,440.0,1.0,3.0,1.0,2.0,1.3,769.5286944442654,0.0,0.0,29762.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22893.846153846152,3,0,3_0,3_0 +8699,12.0,12.0,49.0,111,56,50,0.0,5717,0.0,0.0,0.0,686.0,2.0,3.0,3.0,5.0,2.4,2132.6438652246716,0.0,0.0,42793.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,17830.416666666668,2,0,2_1,2_0 +8700,0.0,0.0,84.0,400,71,70,0.0,5718,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2172.5662798926323,0.0,0.0,13533.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13533.0,1,0,1_0,1_1 +8701,5.0,7.0,34.0,111,42,20,0.0,5719,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2206.047726633585,0.0,0.0,10682.0,4,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,8216.923076923076,1,0,1_0,1_0 +8702,0.0,0.0,64.0,111,77,70,0.0,5720,0.0,0.0,0.0,316.0,0.0,1.0,0.0,1.0,1.0,2768.5313277823707,0.0,0.0,13830.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13830.0,1,0,1_0,1_0 +8703,33.0,33.0,57.0,211,77,71,0.0,5721,0.0,0.0,200.0,225.0,0.0,3.0,0.0,1.0,1.0,3738.4148645306896,0.0,0.0,3826.0,7,3,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,3826.0,1,0,1_1,1_0 +8704,20.0,20.0,47.0,111,23,20,0.0,5722,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2243.0959724199,0.0,0.0,141070.0,1,2,6,5.0,3,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,94046.66666666667,5,0,5,5_0 +8705,0.0,0.0,24.0,112,62,71,0.0,5723,0.0,0.0,0.0,400.0,2.0,2.0,0.0,2.0,1.5,6575.826309319825,1560.0,0.0,34641.0,1,3,9,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23094.0,3,0,3_0,3_0 +8706,10.0,10.0,51.0,300,62,50,0.0,5725,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2408.451514907465,1040.0,0.0,43720.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,29146.666666666668,4,0,4_0,4_1 +8707,2.0,20.0,34.0,111,43,33,0.0,5726,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2058.53965953331,0.0,0.0,28420.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17762.5,2,0,2_0,2_0 +8708,0.0,0.0,43.0,111,38,30,0.0,5727,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,1997.4156327966316,0.0,0.0,29354.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11290.0,1,0,1_0,1_0 +8709,15.0,15.0,34.0,111,37,20,0.0,5729,0.0,30.0,100.0,0.0,1.0,2.0,0.0,1.0,1.0,3154.1501007024945,0.0,0.0,44254.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,44254.0,5,0,5,5_0 +8710,2.0,7.0,80.0,400,78,70,0.0,573,0.0,600.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,3312.488463582259,0.0,0.0,17699.0,5,1,0,0.0,1,4.0,0.0,0.0,1,0,0,0,0,0,3.0,1.0,17699.0,2,0,2_0,2_1 +8711,0.0,0.0,42.0,111,54,20,0.0,5730,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2225.106050832855,2480.92,0.0,65686.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31279.04761904762,4,0,4_0,4_0 +8712,0.0,3.0,33.0,111,38,31,0.0,5731,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3023.3900194617545,0.0,0.0,57331.0,1,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,57331.0,5,0,5,5_0 +8713,1.0,17.0,55.0,211,54,31,0.0,5732,0.0,0.0,0.0,378.0,1.0,2.0,0.0,1.0,1.0,2162.5288943596092,2600.0,0.0,17711.0,4,3,3,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,17711.0,2,0,2_0,2_0 +8714,0.0,0.0,39.0,112,38,12,0.0,5733,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.4,1952.2086612774233,0.0,0.0,95606.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,39835.833333333336,5,0,5,5_1 +8715,0.0,0.0,58.0,111,85,71,0.0,5734,0.0,0.0,0.0,680.0,0.0,3.0,0.0,1.0,1.0,720.3427355681151,0.0,0.0,19400.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19400.0,3,0,3_0,3_0 +8716,0.0,0.0,70.0,111,72,70,0.0,5735,0.0,0.0,0.0,249.0,0.0,4.0,0.0,1.0,1.0,3146.773408661418,0.0,0.0,12844.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12844.0,1,0,1_1,1_0 +8717,11.0,11.0,80.0,400,71,50,0.0,5737,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1915.9524648876152,0.0,0.0,24265.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16176.666666666666,2,0,2_0,2_1 +8718,4.0,5.0,28.0,211,62,43,0.0,5739,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2525.6649637836604,0.0,0.0,49294.0,1,2,3,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27385.555555555555,4,0,4_0,4_0 +8719,0.0,0.0,88.0,112,78,70,0.0,5740,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3917.896610681215,0.0,0.0,20301.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20301.0,3,0,3_0,3_1 +8720,4.0,5.0,38.0,111,38,20,0.0,5741,0.0,0.0,0.0,711.0,2.0,4.0,0.0,2.0,1.5,3562.9493233393623,3693.04,0.0,38488.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,25658.666666666668,4,0,4_0,4_0 +8721,1.0,4.0,43.0,111,68,50,0.0,5742,0.0,50.0,40.0,0.0,1.0,7.0,1.0,3.0,1.8,2116.926356526376,1560.0,0.0,16180.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,8988.888888888889,1,0,1_0,1_0 +8722,6.0,7.0,60.0,111,56,71,0.0,5743,0.0,0.0,99999.0,412.0,1.0,4.0,0.0,1.0,1.0,2464.397019834694,988.5200000000001,0.0,20821.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,20821.0,3,0,3_0,3_0 +8723,11.0,21.0,23.0,111,84,20,0.0,5745,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3131.873675020069,0.0,0.0,9148.0,3,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,9148.0,1,0,1_1,1_0 +8724,0.0,0.0,27.0,300,43,30,0.0,5746,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3337.3519064672196,6458.92,0.0,57374.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27320.952380952378,4,0,4_0,4_1 +8725,6.0,6.0,31.0,221,67,43,0.0,5747,0.0,60.0,25.0,0.0,1.0,3.0,0.0,1.0,1.0,3778.8598855195855,0.0,0.0,21151.0,1,2,1,1.0,1,3.0,1.0,1.0,0,1,0,0,0,0,1.0,2.0,21151.0,3,0,3_0,3_0 +8726,8.0,11.0,26.0,221,62,50,0.0,5748,0.0,0.0,0.0,0.0,1.0,4.0,0.0,4.0,2.3,677.7605318641826,2496.0,0.0,35073.0,1,4,1,2.0,5,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,15249.13043478261,2,0,2_0,2_0 +8727,0.0,0.0,68.0,111,77,50,0.0,5749,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1839.9329285815431,0.0,0.0,23994.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15996.0,2,0,2_0,2_0 +8728,6.0,6.0,69.0,111,74,42,0.0,5750,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1663.2034265886375,2075.3199999999997,0.0,30034.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20022.666666666668,3,0,3_0,3_0 +8729,7.0,7.0,73.0,221,74,12,0.0,5753,0.0,99999.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1689.8726268239807,0.0,0.0,39748.0,5,1,1,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,26498.666666666668,4,0,4_0,4_0 +8730,1.0,16.0,56.0,112,62,50,2.0,5754,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2296.9940933974144,0.0,2000.0,32268.0,1,2,6,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21512.0,3,0,3_0,3_0 +8731,7.0,10.0,47.0,111,53,60,0.0,5757,0.0,0.0,0.0,0.0,1.0,6.0,4.0,6.0,3.1,1427.5690543168423,1981.2,0.0,63464.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,20472.25806451613,3,0,3_1,3_0 +8732,2.0,2.0,67.0,112,75,50,0.0,5759,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2859.5028524694853,1560.0,0.0,53811.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,35874.0,5,0,5,5_0 +8733,1.0,1.0,67.0,111,71,70,2.0,5760,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3371.5748052061585,0.0,16000.0,20333.0,5,1,7,5.0,5,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13555.333333333334,1,0,1_0,1_0 +8734,0.0,0.0,67.0,111,74,30,0.0,5761,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4819.4929627296715,0.0,0.0,29630.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29630.0,4,0,4_0,4_0 +8735,9.0,11.0,48.0,111,37,20,0.0,5762,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3341.505012227721,0.0,0.0,64588.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,32294.0,5,0,5,5_0 +8736,1.0,11.0,87.0,211,77,70,2.0,5765,0.0,600.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2330.6560537620394,0.0,9700.0,28954.0,5,4,2,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,28954.0,4,0,4_0,4_0 +8737,8.0,10.0,60.0,111,37,42,0.0,5766,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2876.6196372200525,2600.0,0.0,34317.0,1,1,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,34317.0,5,0,5,5_0 +8738,2.0,4.0,44.0,111,62,43,0.0,5767,100.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2377.720987776808,0.0,0.0,55686.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,30936.666666666664,4,0,4_0,4_0 +8739,13.0,15.0,71.0,400,72,50,0.0,5768,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2574.583788056921,0.0,0.0,17918.0,5,3,0,0.0,1,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,17918.0,2,0,2_0,2_1 +8740,0.0,0.0,61.0,111,22,30,0.0,5769,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1390.0960308909562,0.0,0.0,107420.0,1,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,71613.33333333333,5,0,5,5_0 +8741,0.0,6.0,25.0,111,37,20,0.0,577,0.0,0.0,0.0,454.0,2.0,3.0,0.0,2.0,1.5,3933.33556058229,1147.64,0.0,26843.0,3,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,17895.333333333332,2,0,2_1,2_0 +8742,3.0,6.0,36.0,211,84,50,0.0,5771,0.0,0.0,0.0,0.0,0.0,3.0,4.0,6.0,2.9,2650.6819260113643,0.0,0.0,38440.0,3,2,1,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13255.172413793103,1,0,1_0,1_0 +8743,11.0,14.0,67.0,112,78,70,0.0,5772,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1755.435668422026,3120.0,0.0,44921.0,5,1,9,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29947.333333333332,4,0,4_0,4_0 +8744,2.0,20.0,86.0,111,78,71,0.0,5773,0.0,500.0,0.0,245.0,0.0,2.0,0.0,1.0,1.0,3447.9534480296647,0.0,0.0,18014.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18014.0,2,0,2_0,2_0 +8745,0.0,0.0,46.0,120,65,41,0.0,5774,0.0,0.0,0.0,115.0,1.0,4.0,3.0,5.0,3.0,1055.3587757162318,2454.4,0.0,32390.0,4,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10796.666666666666,1,0,1_1,1_0 +8746,0.0,0.0,53.0,112,38,30,0.0,5775,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1834.3722097188363,1040.0,0.0,69624.0,1,2,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30271.304347826088,4,0,4_0,4_0 +8747,4.0,5.0,52.0,111,22,71,0.0,5776,0.0,600.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3042.650862333909,2600.0,0.0,0.0,1,2,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,0.0,1,0,1_0,1_0 +8748,4.0,4.0,76.0,111,72,70,0.0,5778,0.0,400.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2681.7102598689685,0.0,0.0,12803.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,12803.0,1,0,1_0,1_0 +8749,4.0,4.0,96.0,111,86,30,0.0,5779,0.0,99998.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3872.528457747028,0.0,0.0,32722.0,5,1,8,6.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,32722.0,5,0,5,5_0 +8750,1.0,4.0,77.0,111,75,44,2.0,578,0.0,550.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1783.4110040799756,0.0,10000.0,24472.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24472.0,4,0,4_0,4_0 +8751,6.0,8.0,70.0,211,75,41,0.0,5781,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1267.0541442129254,3655.6000000000004,0.0,49011.0,5,1,2,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,32674.0,5,0,5,5_0 +8752,4.0,10.0,38.0,111,56,41,0.0,5782,0.0,56.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,856.2243426563235,0.0,0.0,24756.0,1,3,10,8.0,2,2.0,1.0,0.0,0,0,0,0,1,1,0.0,2.0,13029.473684210527,1,0,1_1,1_0 +8753,5.0,5.0,69.0,111,75,33,0.0,5783,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1597.951231420267,520.0,0.0,33478.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,33478.0,5,0,5,5_0 +8754,4.0,4.0,81.0,111,75,31,0.0,5785,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,1.0,1.0,3495.1196026731936,0.0,0.0,31868.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,31868.0,5,0,5,5_0 +8755,22.0,22.0,51.0,112,38,12,0.0,5786,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2114.33409504196,0.0,0.0,131248.0,1,1,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,65624.0,5,0,5,5_1 +8756,2.0,2.0,54.0,300,63,50,0.0,5787,0.0,300.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1806.8361579358402,0.0,0.0,17520.0,1,2,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,11680.0,1,0,1_0,1_1 +8757,0.0,0.0,69.0,120,75,42,1.0,5789,0.0,0.0,80.0,0.0,0.0,7.0,0.0,2.0,1.5,1414.590515692433,3536.0,21000.0,35250.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23500.0,3,0,3_0,3_1 +8758,3.0,3.0,58.0,111,42,20,0.0,579,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2572.7055143365906,6276.400000000001,0.0,103576.0,1,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,69050.66666666667,5,0,5,5_0 +8759,9.0,9.0,43.0,111,33,20,0.0,5793,0.0,400.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,1155.237294047164,0.0,0.0,43061.0,1,1,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23922.777777777777,4,0,4_0,4_0 +8760,11.0,11.0,18.0,211,56,50,0.0,5794,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5291.668203147708,0.0,0.0,5790.0,3,4,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,5790.0,1,0,1_0,1_0 +8761,17.0,22.0,80.0,222,74,44,0.0,5795,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2906.0385779195085,0.0,0.0,40356.0,5,1,1,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26904.0,4,0,4_0,4_1 +8762,6.0,7.0,63.0,112,52,50,0.0,5796,0.0,199998.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1517.1306164242465,0.0,0.0,60676.0,1,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,40450.666666666664,5,0,5,5_1 +8763,0.0,1.0,83.0,111,77,70,2.0,5797,0.0,50.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2628.16035013859,0.0,21700.0,26385.0,5,1,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,26385.0,4,0,4_0,4_0 +8764,3.0,6.0,66.0,112,78,41,0.0,5798,0.0,0.0,0.0,152.0,0.0,3.0,0.0,1.0,1.0,2334.5511288758294,0.0,0.0,20891.0,5,3,9,0.0,1,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,20891.0,3,0,3_1,3_1 +8765,3.0,3.0,43.0,111,63,50,0.0,5799,0.0,350.0,0.0,556.0,3.0,4.0,3.0,5.0,3.0,2378.001907594708,0.0,0.0,29673.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9891.0,1,0,1_1,1_0 +8766,20.0,20.0,67.0,300,78,50,0.0,58,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1934.9301693322184,0.0,0.0,27570.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18380.0,2,0,2_0,2_1 +8767,9.0,10.0,74.0,111,77,50,0.0,580,0.0,0.0,100.0,0.0,0.0,4.0,0.0,1.0,1.0,2950.6266628146736,0.0,0.0,28490.0,5,1,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,28490.0,4,0,4_0,4_0 +8768,1.0,2.0,31.0,111,54,60,2.0,5800,0.0,0.0,0.0,1100.0,2.0,3.0,1.0,3.0,1.8,4827.999782082042,0.0,3500.0,57300.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,31833.333333333332,5,0,5,5_0 +8769,13.0,15.0,57.0,111,33,30,0.0,5801,0.0,450.0,0.0,900.0,1.0,4.0,0.0,1.0,1.0,2980.9733190345105,0.0,0.0,32337.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,32337.0,5,0,5,5_0 +8770,0.0,0.0,59.0,111,37,31,0.0,5802,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2790.7339029681602,0.0,0.0,60339.0,1,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40226.0,5,0,5,5_0 +8771,6.0,6.0,92.0,112,77,70,0.0,5805,0.0,0.0,150.0,0.0,0.0,2.0,0.0,1.0,1.0,3105.8020399265642,0.0,0.0,16573.0,5,1,10,2.0,1,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,16573.0,2,0,2_0,2_0 +8772,4.0,18.0,76.0,112,71,70,0.0,5806,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2945.0916341867746,1561.04,0.0,22931.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22931.0,3,0,3_0,3_1 +8773,12.0,13.0,57.0,111,33,60,0.0,5807,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3028.9480567797737,1659.8400000000001,0.0,64649.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,32324.5,5,0,5,5_0 +8774,4.0,4.0,40.0,111,64,71,0.0,5808,0.0,0.0,0.0,196.0,1.0,4.0,3.0,5.0,2.4,2810.0966048024716,1040.0,0.0,28628.0,1,3,10,8.0,4,2.0,1.0,0.0,0,0,0,0,1,1,2.0,0.0,11928.333333333334,1,0,1_1,1_0 +8775,0.0,0.0,67.0,112,77,70,0.0,5809,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2390.698774673714,0.0,0.0,24126.0,5,1,10,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24126.0,4,0,4_0,4_0 +8776,1.0,14.0,49.0,120,47,31,2.0,581,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2020.4125993153332,0.0,100.0,36911.0,1,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,36911.0,5,0,5,5_1 +8777,0.0,0.0,71.0,111,77,71,0.0,5811,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4753.690524723888,0.0,0.0,20281.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20281.0,3,0,3_0,3_0 +8778,10.0,10.0,33.0,111,46,20,0.0,5812,0.0,0.0,60.0,0.0,1.0,3.0,2.0,3.0,1.6,1105.396753942585,0.0,0.0,38566.0,1,2,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,24103.75,4,0,4_0,4_0 +8779,0.0,8.0,25.0,111,54,50,0.0,5814,0.0,0.0,200.0,0.0,1.0,3.0,1.0,2.0,1.3,1242.2257102045442,3120.52,0.0,21625.0,1,3,5,4.0,2,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,16634.615384615383,2,0,2_1,2_0 +8780,3.0,3.0,31.0,112,56,50,0.0,5815,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,479.06219638385886,0.0,0.0,15140.0,1,3,9,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,9462.5,1,0,1_1,1_1 +8781,2.0,2.0,44.0,112,33,20,0.0,5818,0.0,320.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2476.2675223305437,2081.04,0.0,41874.0,1,1,8,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,32210.76923076923,5,0,5,5_0 +8782,0.0,0.0,50.0,111,52,70,0.0,5819,0.0,0.0,0.0,0.0,2.0,3.0,2.0,3.0,2.0,677.1172594764123,2081.56,0.0,51980.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25990.0,4,0,4_0,4_0 +8783,3.0,6.0,70.0,112,77,70,0.0,582,0.0,200.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2225.2897331472805,1697.28,0.0,20529.0,5,4,7,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20529.0,3,0,3_0,3_1 +8784,0.0,0.0,44.0,111,34,10,0.0,5820,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1988.374146864153,0.0,0.0,47222.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,36324.61538461538,5,0,5,5_0 +8785,1.0,6.0,27.0,111,38,0,0.0,5821,0.0,200.0,0.0,675.0,2.0,3.0,0.0,2.0,1.5,2862.752187655063,0.0,0.0,40010.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,26673.333333333332,4,0,4_0,4_0 +8786,7.0,8.0,49.0,111,38,12,0.0,5822,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1945.1439278821679,3157.44,0.0,198955.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,79582.0,5,0,5,5_0 +8787,0.0,0.0,67.0,112,77,70,0.0,5824,0.0,0.0,0.0,121.0,0.0,4.0,0.0,1.0,1.0,2164.381682870348,0.0,0.0,12554.0,5,3,6,1.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12554.0,1,0,1_1,1_0 +8788,0.0,0.0,68.0,120,78,71,0.0,5825,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1883.2748847488324,2080.52,0.0,14168.0,5,1,0,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,9445.333333333334,1,0,1_0,1_0 +8789,0.0,9.0,77.0,111,74,44,0.0,5826,0.0,100.0,3.0,0.0,0.0,4.0,0.0,2.0,1.5,1758.2238320222855,0.0,0.0,47962.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,31974.666666666668,5,0,5,5_0 +8790,0.0,12.0,50.0,112,54,50,0.0,5827,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3222.7281434935844,0.0,0.0,19791.0,1,3,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13194.0,1,0,1_0,1_1 +8791,3.0,3.0,45.0,111,85,31,0.0,5828,0.0,0.0,0.0,0.0,0.0,5.0,2.0,3.0,2.0,1048.8706709403587,936.0,0.0,11852.0,7,3,5,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,5926.0,1,0,1_1,1_0 +8792,0.0,0.0,85.0,111,75,41,0.0,5829,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1926.090030364468,0.0,0.0,56849.0,6,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,56849.0,5,0,5,5_0 +8793,0.0,0.0,53.0,111,22,41,0.0,583,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,2386.19886986346,1799.2,0.0,20805.0,1,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13870.0,1,0,1_0,1_0 +8794,6.0,17.0,41.0,120,62,50,0.0,5830,0.0,0.0,410.0,0.0,2.0,5.0,3.0,5.0,2.6,2581.350921275165,2288.0,0.0,52698.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20268.46153846154,3,0,3_0,3_1 +8795,0.0,15.0,31.0,112,42,10,0.0,5831,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,8410.80076015024,1550.64,0.0,44035.0,1,2,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,29356.666666666668,4,0,4_0,4_0 +8796,9.0,9.0,81.0,111,78,41,0.0,5832,0.0,0.0,0.0,227.0,0.0,2.0,0.0,1.0,1.0,2316.947604115131,2234.9600000000005,0.0,13445.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,13445.0,1,0,1_0,1_0 +8797,1.0,4.0,43.0,112,63,43,2.0,5835,0.0,500.0,0.0,0.0,1.0,5.0,2.0,4.0,2.3,4154.176394442763,2029.0400000000002,12000.0,29317.0,1,2,9,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,12746.521739130436,1,0,1_0,1_0 +8798,0.0,0.0,82.0,111,78,71,0.0,5836,0.0,0.0,0.0,446.0,0.0,3.0,0.0,2.0,1.5,2551.7745751895004,0.0,0.0,28163.0,5,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18775.333333333332,3,0,3_0,3_0 +8799,6.0,16.0,45.0,112,43,33,0.0,5837,0.0,100.0,20.0,0.0,1.0,3.0,2.0,3.0,1.6,791.2238811537951,0.0,0.0,33532.0,1,2,10,4.0,2,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,20957.5,3,0,3_0,3_0 +8800,0.0,0.0,30.0,111,47,43,0.0,5839,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2385.8139157706923,1664.0,0.0,42987.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28658.0,4,0,4_0,4_0 +8801,8.0,8.0,29.0,111,62,50,0.0,5841,0.0,0.0,0.0,218.0,2.0,3.0,1.0,3.0,1.8,1610.2352062538282,0.0,0.0,31152.0,1,3,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,17306.666666666668,2,0,2_1,2_0 +8802,7.0,7.0,76.0,112,77,70,0.0,5843,0.0,290.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,9866.189967686583,0.0,0.0,10490.0,5,4,7,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,10490.0,1,0,1_0,1_0 +8803,0.0,0.0,61.0,300,75,44,0.0,5844,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1827.043881742743,3345.16,0.0,31610.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21073.333333333332,3,0,3_0,3_1 +8804,12.0,15.0,45.0,111,46,30,0.0,5845,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,772.7962261288208,5460.0,0.0,50257.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23931.90476190476,4,0,4_0,4_0 +8805,0.0,0.0,54.0,400,42,41,0.0,5846,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1952.3277913580528,2548.0,0.0,58082.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29041.0,4,0,4_0,4_1 +8806,0.0,0.0,32.0,111,55,42,0.0,5849,0.0,0.0,0.0,101.0,1.0,3.0,1.0,2.0,1.3,1112.3302136157752,0.0,0.0,16158.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12429.23076923077,1,0,1_1,1_0 +8807,2.0,7.0,55.0,112,37,44,0.0,585,0.0,0.0,180.0,0.0,2.0,4.0,1.0,3.0,1.8,1749.0733544647605,2652.0,0.0,56367.0,1,1,9,3.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,31315.0,4,0,4_0,4_0 +8808,1.0,1.0,51.0,211,38,12,2.0,5850,0.0,0.0,240.0,0.0,2.0,6.0,3.0,5.0,2.8,1370.6439783550654,3016.0,11175.0,113776.0,1,1,1,2.0,4,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,40634.28571428572,5,0,5,5_0 +8809,0.0,11.0,86.0,112,86,71,0.0,5851,0.0,199998.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4049.3734702746256,0.0,0.0,14597.0,5,3,9,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,14597.0,2,0,2_0,2_0 +8810,0.0,0.0,62.0,111,52,71,0.0,5852,0.0,0.0,0.0,1.0,2.0,2.0,0.0,2.0,1.5,2282.520478467254,0.0,0.0,28634.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,19089.333333333332,3,0,3_0,3_0 +8811,0.0,0.0,45.0,400,56,42,0.0,5853,0.0,0.0,0.0,170.0,1.0,3.0,1.0,2.0,1.5,214.4631630229398,0.0,0.0,19565.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13043.333333333334,1,0,1_1,1_1 +8812,0.0,4.0,68.0,111,77,50,0.0,5856,0.0,99999.0,0.0,457.0,0.0,4.0,0.0,1.0,1.0,2511.7128510767766,0.0,0.0,21310.0,5,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21310.0,3,0,3_0,3_0 +8813,5.0,6.0,75.0,111,75,12,0.0,5857,0.0,180.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1856.593932670167,1716.0,0.0,56944.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,37962.666666666664,5,0,5,5_0 +8814,13.0,13.0,65.0,111,74,70,0.0,5858,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4424.49079286675,0.0,0.0,9598.0,5,4,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,9598.0,1,0,1_0,1_0 +8815,13.0,13.0,70.0,300,72,70,0.0,5859,0.0,99998.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2612.532735570402,1040.0,0.0,14620.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,9746.666666666666,1,0,1_0,1_1 +8816,8.0,11.0,64.0,112,77,30,0.0,586,0.0,0.0,150.0,0.0,0.0,8.0,0.0,2.0,1.5,3119.574470709409,0.0,0.0,37739.0,5,1,6,0.0,5,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,25159.333333333332,4,0,4_0,4_1 +8817,10.0,10.0,42.0,111,54,31,0.0,5860,0.0,99999.0,0.0,720.0,1.0,3.0,1.0,3.0,1.8,5115.911916461769,0.0,0.0,40865.0,1,3,10,8.0,5,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,22702.777777777777,3,0,3_0,3_0 +8818,2.0,2.0,60.0,111,78,50,0.0,5863,0.0,600.0,60.0,0.0,0.0,2.0,0.0,1.0,1.0,1900.728153281179,3178.24,0.0,23757.0,5,2,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23757.0,3,0,3_0,3_0 +8819,6.0,6.0,31.0,112,64,43,0.0,5864,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1656.3790191438734,4992.0,0.0,45980.0,1,2,10,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,30653.333333333332,4,0,4_0,4_0 +8820,1.0,2.0,54.0,111,21,71,0.0,5865,0.0,280.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2523.11206285686,0.0,0.0,53953.0,1,1,6,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,35968.666666666664,5,0,5,5_0 +8821,1.0,1.0,78.0,112,78,71,2.0,5866,0.0,300.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2331.031957259185,150.8,16000.0,20369.0,5,1,9,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13579.333333333334,1,0,1_0,1_1 +8822,1.0,8.0,76.0,221,77,71,2.0,5869,0.0,435.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2879.114629296854,0.0,8500.0,17699.0,5,1,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17699.0,2,0,2_0,2_0 +8823,0.0,0.0,38.0,111,85,44,0.0,587,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2350.7137044245937,3224.0,0.0,28162.0,7,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13410.476190476189,1,0,1_1,1_0 +8824,9.0,10.0,26.0,112,53,43,0.0,5870,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3361.9003509664444,722.8000000000001,0.0,37239.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20688.333333333332,3,0,3_0,3_1 +8825,1.0,8.0,69.0,112,78,70,2.0,5871,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2187.3917267895163,0.0,1000.0,34326.0,5,1,8,3.0,3,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,22884.0,3,0,3_0,3_0 +8826,9.0,14.0,84.0,111,86,60,0.0,5872,0.0,200.0,50.0,0.0,0.0,6.0,0.0,1.0,1.0,1956.355767757254,0.0,0.0,21481.0,6,1,10,8.0,1,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,21481.0,3,0,3_0,3_0 +8827,8.0,8.0,72.0,111,74,30,0.0,5873,0.0,0.0,99999.0,0.0,0.0,3.0,0.0,1.0,1.0,1949.3752406652816,0.0,0.0,28440.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,28440.0,4,0,4_0,4_0 +8828,4.0,5.0,67.0,112,75,44,0.0,5874,0.0,500.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1561.3490373012685,2522.0,0.0,41188.0,5,1,8,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,27458.666666666668,4,0,4_0,4_0 +8829,0.0,0.0,46.0,111,46,31,0.0,5875,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1820.9750804842568,7371.0,0.0,74314.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32310.4347826087,5,0,5,5_0 +8830,3.0,7.0,60.0,111,47,31,0.0,5877,0.0,100.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2390.4322659155387,2508.48,0.0,72004.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,48002.666666666664,5,0,5,5_0 +8831,0.0,0.0,19.0,111,84,60,0.0,5878,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2253.333828894886,0.0,0.0,4294.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4294.0,1,0,1_1,1_0 +8832,7.0,22.0,56.0,111,38,50,0.0,5879,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1638.4138495869558,0.0,0.0,41698.0,1,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,27798.666666666668,4,0,4_0,4_0 +8833,0.0,0.0,32.0,111,46,44,0.0,588,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1669.3949055320868,1300.0,0.0,48310.0,1,2,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20129.166666666668,3,0,3_0,3_0 +8834,8.0,10.0,36.0,112,43,33,0.0,5880,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1917.6035950810824,0.0,0.0,94439.0,1,4,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,62959.333333333336,5,0,5,5_0 +8835,2.0,12.0,45.0,120,64,50,0.0,5882,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,356.77529828739847,0.0,0.0,32624.0,1,3,0,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,13593.333333333334,1,0,1_1,1_0 +8836,15.0,15.0,38.0,112,38,50,0.0,5883,0.0,0.0,0.0,850.0,1.0,3.0,0.0,1.0,1.0,5003.263811912021,0.0,0.0,52940.0,1,3,10,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,52940.0,5,0,5,5_0 +8837,0.0,0.0,22.0,111,43,44,0.0,5884,0.0,0.0,0.0,74.0,1.0,1.0,0.0,1.0,1.0,3266.4032929106743,0.0,0.0,18683.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,18683.0,2,0,2_1,2_0 +8838,0.0,12.0,64.0,112,77,50,0.0,5885,0.0,450.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2543.6600721862706,0.0,0.0,46679.0,5,2,7,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,23339.5,3,0,3_0,3_1 +8839,0.0,16.0,87.0,112,78,70,0.0,5887,0.0,0.0,100.0,380.0,0.0,4.0,0.0,2.0,1.5,2131.623562638296,0.0,0.0,20861.0,5,3,10,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,13907.333333333334,2,0,2_0,2_0 +8840,4.0,26.0,32.0,300,62,31,0.0,5888,0.0,300.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2120.6467874052173,2602.6,0.0,36548.0,1,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24365.333333333332,4,0,4_0,4_1 +8841,6.0,6.0,40.0,111,34,20,0.0,5889,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2058.3385111360103,0.0,0.0,39810.0,1,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,39810.0,5,0,5,5_0 +8842,9.0,9.0,85.0,111,75,60,0.0,5890,0.0,400.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1910.297954331901,0.0,0.0,39592.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,26394.666666666668,4,0,4_0,4_0 +8843,3.0,22.0,32.0,120,56,50,0.0,5891,0.0,315.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,562.8119797485164,2080.0,0.0,16278.0,1,3,0,2.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,10173.75,1,0,1_1,1_0 +8844,1.0,7.0,52.0,112,34,0,2.0,5893,0.0,850.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1750.1559380557374,5675.280000000001,6000.0,23826.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,11913.0,1,0,1_0,1_1 +8845,0.0,0.0,51.0,300,13,50,0.0,5894,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,2059.512701834653,7521.279999999999,0.0,34809.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19338.333333333332,3,0,3_0,3_1 +8846,8.0,8.0,77.0,120,75,70,0.0,5895,0.0,30.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2687.4843255775463,0.0,0.0,17770.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17770.0,2,0,2_0,2_1 +8847,0.0,0.0,80.0,111,74,60,0.0,5898,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1695.9359223528227,0.0,0.0,45038.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30025.333333333332,4,0,4_0,4_0 +8848,13.0,13.0,49.0,111,35,30,0.0,5899,0.0,20.0,99999.0,0.0,1.0,1.0,0.0,1.0,1.0,3505.859093218264,0.0,0.0,14943.0,1,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,14943.0,2,0,2_0,2_0 +8849,0.0,0.0,54.0,111,62,50,0.0,590,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2695.0854319265673,3120.0,0.0,19861.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13240.666666666666,1,0,1_0,1_0 +8850,12.0,12.0,36.0,111,37,20,0.0,5900,0.0,300.0,64.0,975.0,2.0,2.0,1.0,3.0,1.8,2804.3139440678474,0.0,0.0,53011.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,29450.555555555555,4,0,4_0,4_0 +8851,6.0,6.0,35.0,211,38,12,0.0,5901,0.0,600.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,3178.4632532378255,0.0,0.0,68299.0,1,2,1,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,28457.916666666668,4,0,4_0,4_0 +8852,3.0,11.0,70.0,112,75,50,0.0,5903,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3420.9533357357623,0.0,0.0,30930.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20620.0,3,0,3_0,3_1 +8853,9.0,12.0,24.0,111,38,20,0.0,5904,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1458.398547776203,0.0,0.0,37681.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,25120.666666666668,4,0,4_1,4_0 +8854,2.0,13.0,68.0,111,72,41,0.0,5905,0.0,650.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1471.9685472791493,0.0,0.0,91380.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,60920.0,5,0,5,5_0 +8855,1.0,1.0,39.0,211,31,20,0.0,5906,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,4008.0918260031235,3006.12,0.0,117198.0,1,2,1,3.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,78132.0,5,0,5,5_0 +8856,12.0,12.0,58.0,112,42,31,0.0,5907,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1682.3656737047615,0.0,0.0,46805.0,1,1,6,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,46805.0,5,0,5,5_0 +8857,3.0,3.0,78.0,300,75,71,0.0,5908,0.0,340.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2908.394106882449,0.0,0.0,29572.0,5,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,19714.666666666668,3,0,3_0,3_1 +8858,0.0,0.0,44.0,111,35,30,0.0,5909,0.0,0.0,0.0,395.0,1.0,3.0,0.0,1.0,1.0,3300.564988242387,0.0,0.0,14444.0,4,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14444.0,2,0,2_0,2_0 +8859,6.0,11.0,69.0,300,75,70,0.0,591,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2403.0400856124593,0.0,0.0,22990.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22990.0,3,0,3_0,3_1 +8860,7.0,9.0,69.0,112,78,50,0.0,5911,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,1626.3254692262558,1040.0,0.0,28200.0,5,1,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18800.0,3,0,3_0,3_1 +8861,0.0,0.0,30.0,120,67,50,0.0,5913,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3683.3674965672276,2080.0,0.0,24162.0,1,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24162.0,4,0,4_0,4_1 +8862,7.0,14.0,41.0,111,47,50,0.0,5915,0.0,450.0,24.0,0.0,2.0,4.0,1.0,3.0,1.8,1963.9241632904245,0.0,0.0,30006.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,16670.0,2,0,2_0,2_0 +8863,0.0,0.0,24.0,111,43,30,0.0,5916,0.0,0.0,0.0,450.0,2.0,1.0,0.0,2.0,1.5,3781.353033365816,2280.2000000000003,0.0,36674.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24449.333333333332,4,0,4_0,4_0 +8864,0.0,0.0,30.0,112,46,30,0.0,5917,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1848.4037639367373,0.0,0.0,29798.0,1,2,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29798.0,4,0,4_0,4_0 +8865,2.0,3.0,89.0,111,78,70,0.0,5918,0.0,0.0,0.0,249.0,0.0,2.0,0.0,1.0,1.0,4907.9489521085325,0.0,0.0,20946.0,5,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,20946.0,3,0,3_0,3_0 +8866,4.0,14.0,89.0,400,75,50,0.0,5919,0.0,400.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1968.4467852383266,0.0,0.0,35855.0,5,4,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23903.333333333332,4,0,4_0,4_1 +8867,3.0,3.0,71.0,111,74,30,0.0,5921,0.0,250.0,250.0,0.0,0.0,2.0,0.0,1.0,1.0,3298.5830810516804,0.0,0.0,35168.0,5,1,10,8.0,1,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,35168.0,5,0,5,5_0 +8868,3.0,9.0,65.0,111,78,50,0.0,5922,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1258.1988185448904,0.0,0.0,37363.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24908.666666666668,4,0,4_0,4_0 +8869,0.0,0.0,40.0,112,47,42,0.0,5923,0.0,0.0,0.0,234.0,1.0,4.0,3.0,4.0,2.1,291.46265577551975,3967.0800000000004,0.0,38746.0,1,3,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,18450.47619047619,2,0,2_1,2_1 +8870,0.0,5.0,48.0,111,52,50,0.0,5925,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1702.7196339068923,1770.6,0.0,11988.0,4,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11988.0,1,0,1_0,1_0 +8871,0.0,0.0,50.0,111,62,50,0.0,5928,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,870.5990896818771,0.0,0.0,29387.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19591.333333333332,3,0,3_0,3_0 +8872,0.0,0.0,42.0,112,67,60,0.0,5929,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1832.9499342269005,0.0,0.0,57478.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23949.166666666668,4,0,4_0,4_1 +8873,11.0,11.0,49.0,111,37,42,0.0,5930,0.0,550.0,200.0,0.0,1.0,4.0,1.0,2.0,1.5,988.3273831054896,0.0,0.0,42093.0,1,1,10,8.0,2,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,28062.0,4,0,4_0,4_0 +8874,6.0,8.0,56.0,111,55,50,0.0,5931,0.0,0.0,0.0,530.0,2.0,4.0,1.0,3.0,2.0,1834.5024190928289,6258.719999999999,0.0,34198.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17099.0,2,0,2_0,2_0 +8875,0.0,0.0,44.0,112,37,20,0.0,5932,0.0,0.0,0.0,520.0,1.0,3.0,0.0,1.0,1.0,2354.0560865418574,0.0,0.0,31970.0,1,3,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31970.0,5,0,5,5_0 +8876,11.0,11.0,65.0,112,74,41,0.0,5933,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1442.707460679532,2584.4,0.0,65109.0,5,1,9,2.0,3,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,43406.0,5,0,5,5_0 +8877,0.0,0.0,51.0,112,38,31,0.0,5934,0.0,0.0,0.0,0.0,1.0,7.0,2.0,4.0,2.3,1531.743030690866,0.0,0.0,92501.0,1,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,40217.82608695653,5,0,5,5_1 +8878,3.0,3.0,80.0,112,78,60,0.0,5935,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,2492.6689580700313,1303.12,0.0,45353.0,5,1,6,2.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,45353.0,5,0,5,5_0 +8879,3.0,15.0,93.0,112,,70,0.0,5936,0.0,320.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1688.7855662934326,0.0,0.0,14120.0,8,1,9,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,14120.0,2,0,2_0,2_0 +8880,0.0,0.0,67.0,400,72,70,0.0,5937,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2801.4333300668072,4273.88,0.0,18930.0,5,4,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12620.0,1,0,1_0,1_1 +8881,3.0,5.0,41.0,120,52,50,0.0,5938,0.0,200.0,0.0,387.0,1.0,3.0,1.0,2.0,1.5,2805.4154155997066,0.0,0.0,19213.0,4,3,0,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,12808.666666666666,1,0,1_1,1_0 +8882,0.0,0.0,32.0,111,46,31,0.0,5939,0.0,0.0,0.0,700.0,1.0,2.0,0.0,2.0,1.5,5579.185559632007,0.0,0.0,41810.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,27873.333333333332,4,0,4_0,4_0 +8883,1.0,6.0,27.0,111,85,43,2.0,594,0.0,200.0,15.0,20.0,0.0,3.0,1.0,2.0,1.3,915.617668047143,2080.0,7000.0,14850.0,6,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,11423.076923076922,1,0,1_1,1_0 +8884,0.0,0.0,55.0,112,67,50,0.0,5940,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1688.5734945801146,1300.0,0.0,39206.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19603.0,3,0,3_0,3_1 +8885,12.0,12.0,76.0,111,78,70,0.0,5941,0.0,0.0,350.0,0.0,0.0,3.0,0.0,1.0,1.0,3463.9919994863717,0.0,0.0,14660.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14660.0,2,0,2_0,2_0 +8886,4.0,4.0,60.0,111,78,60,0.0,5943,0.0,250.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2329.1241509215115,0.0,0.0,51190.0,5,1,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25595.0,4,0,4_0,4_0 +8887,4.0,4.0,43.0,112,46,41,0.0,5944,0.0,99999.0,0.0,640.0,2.0,2.0,0.0,2.0,1.5,1838.719700435382,0.0,0.0,53435.0,1,3,10,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,35623.333333333336,5,0,5,5_0 +8888,6.0,6.0,49.0,221,56,42,0.0,5948,0.0,205.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,555.671267703424,0.0,0.0,18095.0,4,3,1,1.0,2,2.0,1.0,1.0,0,1,0,0,0,1,0.0,2.0,9047.5,1,0,1_1,1_0 +8889,3.0,3.0,50.0,221,62,71,0.0,5949,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,2155.227967721393,0.0,0.0,9413.0,1,1,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,7240.7692307692305,1,0,1_0,1_0 +8890,0.0,0.0,39.0,111,37,12,0.0,595,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2117.4367916319957,0.0,0.0,62970.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29985.714285714286,4,0,4_0,4_0 +8891,4.0,4.0,83.0,300,74,12,0.0,5952,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2593.2433839830414,0.0,0.0,88858.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,59238.666666666664,5,0,5,5_1 +8892,0.0,0.0,36.0,120,43,33,0.0,5954,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.3,1035.31168414048,0.0,0.0,30837.0,1,2,0,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23720.76923076923,3,0,3_0,3_0 +8893,21.0,24.0,75.0,111,74,30,0.0,5955,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2254.5402493234387,0.0,0.0,105664.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,70442.66666666667,5,0,5,5_0 +8894,5.0,13.0,65.0,300,75,33,0.0,5956,0.0,0.0,450.0,0.0,0.0,5.0,0.0,2.0,1.5,1693.8269457875774,0.0,0.0,45866.0,5,2,0,1.0,3,2.0,1.0,1.0,0,1,0,0,0,0,2.0,0.0,30577.333333333332,4,0,4_0,4_0 +8895,0.0,0.0,53.0,111,52,71,0.0,5957,0.0,0.0,0.0,500.0,2.0,4.0,1.0,3.0,2.0,1758.8759764411097,2334.7999999999997,0.0,34942.0,1,3,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17471.0,2,0,2_0,2_0 +8896,7.0,10.0,44.0,111,54,71,0.0,5958,0.0,300.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,745.5575449906437,1040.52,0.0,22505.0,1,2,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15003.333333333334,2,0,2_0,2_0 +8897,2.0,2.0,87.0,111,77,70,0.0,5959,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3123.9859861325917,0.0,0.0,44709.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,44709.0,5,0,5,5_0 +8898,2.0,2.0,62.0,300,13,50,0.0,596,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1803.7653423970503,0.0,0.0,40103.0,1,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26735.333333333332,4,0,4_0,4_1 +8899,1.0,1.0,38.0,300,37,31,1.0,5960,360.0,0.0,0.0,0.0,1.0,7.0,3.0,5.0,2.4,2182.278610097201,3205.8,14000.0,43809.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,0.0,18253.75,2,0,2_0,2_1 +8900,11.0,21.0,39.0,111,52,31,0.0,5962,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1790.0513153715713,3667.04,0.0,33104.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,14393.04347826087,2,0,2_0,2_0 +8901,4.0,5.0,38.0,111,45,20,0.0,5963,0.0,0.0,580.0,0.0,1.0,2.0,0.0,1.0,1.0,1950.3712528366516,0.0,0.0,36922.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,36922.0,5,0,5,5_0 +8902,13.0,13.0,53.0,111,64,50,0.0,5964,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2327.827504119952,0.0,0.0,46723.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,23361.5,3,0,3_0,3_0 +8903,0.0,0.0,23.0,111,84,41,0.0,5965,0.0,0.0,0.0,400.0,0.0,3.0,0.0,1.0,1.0,3753.6579600073856,0.0,0.0,12592.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12592.0,1,0,1_0,1_0 +8904,0.0,0.0,47.0,111,35,30,0.0,5967,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.5,2067.736239162062,0.0,0.0,22193.0,4,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8877.2,1,0,1_0,1_0 +8905,6.0,8.0,84.0,300,72,50,0.0,5969,0.0,240.0,50.0,0.0,0.0,3.0,0.0,2.0,1.5,2050.1262126509787,1560.52,0.0,23450.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,15633.333333333334,2,0,2_0,2_1 +8906,3.0,7.0,46.0,111,62,50,0.0,597,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,1723.8219565271506,1508.0,0.0,47420.0,1,3,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,16935.714285714286,2,0,2_0,2_0 +8907,8.0,8.0,55.0,111,64,50,0.0,5971,0.0,0.0,0.0,455.0,2.0,5.0,0.0,2.0,1.5,1430.0725830199208,306.8,0.0,36293.0,1,3,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,24195.333333333332,4,0,4_0,4_0 +8908,1.0,1.0,36.0,111,55,50,0.0,5972,0.0,20.0,0.0,154.0,1.0,3.0,1.0,2.0,1.3,721.1192663917569,4941.04,0.0,20467.0,1,3,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,15743.846153846152,2,0,2_1,2_0 +8909,0.0,0.0,54.0,400,42,44,0.0,5974,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2143.0343367472296,0.0,0.0,25846.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10338.4,1,0,1_0,1_1 +8910,0.0,0.0,52.0,400,62,50,0.0,5976,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,287.53942974427457,0.0,0.0,21996.0,1,3,0,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,16920.0,2,0,2_1,2_0 +8911,12.0,12.0,77.0,112,75,71,0.0,5977,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4148.6729520593335,1560.0,0.0,20586.0,5,1,10,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,20586.0,3,0,3_0,3_0 +8912,5.0,5.0,38.0,111,54,31,0.0,5978,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.1,2146.510366410793,7865.52,0.0,50641.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24114.761904761905,4,0,4_0,4_0 +8913,0.0,0.0,82.0,112,72,71,0.0,5979,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2796.1943029047293,0.0,0.0,26779.0,5,4,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17852.666666666668,2,0,2_0,2_1 +8914,6.0,6.0,77.0,120,74,60,0.0,5980,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2119.3945312469805,3640.0,0.0,42510.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,28340.0,4,0,4_0,4_1 +8915,9.0,9.0,33.0,111,65,31,0.0,5981,0.0,0.0,0.0,400.0,1.0,2.0,0.0,1.0,1.0,3877.7237745036527,0.0,0.0,21858.0,1,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21858.0,3,0,3_0,3_0 +8916,0.0,0.0,24.0,111,46,30,0.0,5982,0.0,0.0,0.0,120.0,1.0,1.0,0.0,1.0,1.0,4030.2698300779107,0.0,0.0,11405.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11405.0,1,0,1_1,1_0 +8917,9.0,12.0,27.0,111,38,12,0.0,5983,0.0,400.0,0.0,603.0,1.0,2.0,0.0,1.0,1.0,4244.010675783132,2080.52,0.0,25831.0,1,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25831.0,4,0,4_0,4_0 +8918,1.0,11.0,65.0,112,78,71,2.0,5984,0.0,60.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1588.6028651647712,0.0,3000.0,41046.0,5,1,8,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,27364.0,4,0,4_0,4_1 +8919,3.0,10.0,52.0,112,46,31,0.0,5985,0.0,600.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1661.8659603791134,1694.16,0.0,47867.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23933.5,4,0,4_0,4_1 +8920,0.0,0.0,44.0,300,43,33,0.0,5986,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1963.8718051443668,7345.52,0.0,96947.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,46165.23809523809,5,0,5,5_1 +8921,5.0,5.0,26.0,300,62,43,0.0,5987,0.0,10.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2345.939987327488,0.0,0.0,43115.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28743.333333333332,4,0,4_0,4_1 +8922,16.0,16.0,74.0,400,78,71,0.0,5988,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2041.6726093739585,3118.44,0.0,30044.0,5,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20029.333333333332,3,0,3_0,3_1 +8923,2.0,17.0,49.0,400,48,31,0.0,5989,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1446.9454492841464,2860.0,0.0,42184.0,1,3,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,23435.555555555555,3,0,3_0,3_0 +8924,0.0,0.0,42.0,111,37,31,0.0,599,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1902.6768125946535,2236.0,0.0,29950.0,1,1,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19966.666666666668,3,0,3_0,3_0 +8925,1.0,11.0,43.0,112,21,43,2.0,5991,0.0,0.0,99999.0,0.0,3.0,6.0,3.0,5.0,2.6,2401.8293688582335,2080.0,2000.0,41100.0,1,2,7,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,15807.692307692307,2,0,2_0,2_1 +8926,5.0,5.0,53.0,211,62,71,0.0,5995,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1471.0168118620545,1063.3999999999999,0.0,18234.0,1,3,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18234.0,2,0,2_0,2_0 +8927,12.0,12.0,31.0,111,55,31,0.0,5996,0.0,99999.0,0.0,70.0,1.0,3.0,1.0,2.0,1.3,1057.4100894420308,0.0,0.0,13880.0,1,3,6,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,10676.923076923076,1,0,1_1,1_0 +8928,3.0,5.0,81.0,400,78,70,0.0,5998,0.0,330.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2798.3737879259584,2055.04,0.0,24309.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24309.0,4,0,4_0,4_1 +8929,0.0,4.0,33.0,300,65,71,2.0,5999,0.0,99999.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2158.333115235083,2704.52,5000.0,42271.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23483.888888888887,3,0,3_0,3_1 +8930,5.0,13.0,48.0,112,52,50,0.0,6,0.0,650.0,50.0,0.0,2.0,5.0,1.0,3.0,1.8,1834.8595620262238,0.0,0.0,20889.0,1,1,7,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,11605.0,1,0,1_0,1_1 +8931,8.0,8.0,70.0,111,78,70,0.0,600,0.0,0.0,0.0,0.0,1.0,7.0,1.0,3.0,2.0,2574.5706107640376,6276.4,0.0,55594.0,5,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27797.0,4,0,4_0,4_0 +8932,0.0,0.0,57.0,111,38,30,0.0,6002,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1803.3016103404561,2176.2000000000003,0.0,38890.0,4,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25926.666666666668,4,0,4_0,4_0 +8933,0.0,0.0,45.0,111,56,50,0.0,6003,0.0,0.0,0.0,577.0,1.0,4.0,2.0,3.0,1.8,716.8264119248099,0.0,0.0,14191.0,1,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,7883.888888888889,1,0,1_0,1_0 +8934,9.0,13.0,68.0,112,75,60,0.0,6004,0.0,0.0,90.0,0.0,0.0,5.0,0.0,2.0,1.5,2103.198891690729,0.0,0.0,37397.0,5,1,3,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,24931.333333333332,4,0,4_0,4_1 +8935,0.0,0.0,47.0,120,64,71,0.0,6005,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2664.050196355546,3120.0,0.0,17987.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8993.5,1,0,1_1,1_1 +8936,0.0,0.0,73.0,111,78,70,0.0,6006,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1957.3053399304101,0.0,0.0,23379.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15586.0,2,0,2_0,2_0 +8937,11.0,13.0,74.0,111,86,71,0.0,6007,0.0,0.0,420.0,472.0,0.0,5.0,0.0,2.0,1.5,1735.123401226547,2600.0,0.0,31720.0,5,3,6,4.0,3,2.0,1.0,1.0,0,0,1,0,0,0,2.0,0.0,21146.666666666668,3,0,3_0,3_0 +8938,6.0,6.0,48.0,111,48,50,0.0,6008,0.0,1500.0,25.0,0.0,3.0,5.0,2.0,4.0,2.5,1833.557195286539,780.0,0.0,36448.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,14579.2,2,0,2_1,2_0 +8939,1.0,12.0,43.0,111,63,71,2.0,601,0.0,99999.0,0.0,467.0,2.0,3.0,0.0,2.0,1.5,2950.819516188798,0.0,5000.0,17760.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,11840.0,1,0,1_0,1_0 +8940,0.0,0.0,40.0,111,46,31,0.0,6010,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,1.6,465.4405416945384,0.0,0.0,44637.0,1,2,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27898.125,4,0,4_0,4_0 +8941,0.0,0.0,65.0,112,77,50,0.0,6011,0.0,0.0,0.0,685.0,0.0,3.0,0.0,1.0,1.0,2242.579083088959,0.0,0.0,11378.0,5,3,10,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11378.0,1,0,1_0,1_0 +8942,0.0,0.0,49.0,112,67,50,0.0,6012,0.0,0.0,0.0,300.0,1.0,3.0,0.0,1.0,1.0,3747.7848258345944,0.0,0.0,17410.0,1,3,7,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17410.0,2,0,2_0,2_0 +8943,0.0,0.0,45.0,112,63,43,0.0,6013,0.0,0.0,0.0,0.0,4.0,5.0,3.0,5.0,3.0,1618.2390810273102,1560.52,0.0,32740.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10913.333333333334,1,0,1_0,1_1 +8944,9.0,10.0,81.0,111,75,60,0.0,6014,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2159.9697478475446,1872.0,0.0,44832.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29888.0,4,0,4_0,4_0 +8945,5.0,5.0,83.0,112,77,71,0.0,6015,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1431.9839579799602,0.0,0.0,26507.0,5,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,17671.333333333332,2,0,2_0,2_1 +8946,0.0,0.0,37.0,112,46,31,0.0,6016,0.0,0.0,0.0,274.0,1.0,4.0,3.0,4.0,1.9,923.2172974226655,0.0,0.0,32474.0,1,3,9,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,17091.578947368424,2,0,2_1,2_0 +8947,7.0,7.0,47.0,112,47,31,0.0,6018,0.0,250.0,300.0,0.0,3.0,7.0,2.0,4.0,2.5,2132.343103348361,5110.04,0.0,63712.0,1,1,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,25484.8,4,0,4_0,4_0 +8948,21.0,21.0,64.0,400,75,31,0.0,6019,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1787.459678094186,1378.0,0.0,41510.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,27673.333333333332,4,0,4_0,4_1 +8949,4.0,4.0,52.0,111,85,71,0.0,602,0.0,0.0,0.0,438.0,1.0,5.0,2.0,3.0,2.0,2372.584256354368,0.0,0.0,15332.0,6,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,0.0,2.0,7666.0,1,0,1_1,1_0 +8950,2.0,2.0,62.0,221,78,50,0.0,6020,0.0,10.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2409.4709547589387,3120.0,0.0,34038.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22692.0,3,0,3_0,3_0 +8951,6.0,6.0,63.0,112,77,70,0.0,6021,0.0,1100.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2119.5304049133856,0.0,0.0,16816.0,5,1,5,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16816.0,2,0,2_0,2_1 +8952,0.0,16.0,64.0,111,33,20,0.0,6022,0.0,270.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3380.8372846309794,0.0,0.0,35764.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,35764.0,5,0,5,5_0 +8953,0.0,0.0,33.0,111,37,31,0.0,6023,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2790.456253203058,0.0,0.0,73340.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34923.80952380952,5,0,5,5_0 +8954,0.0,0.0,65.0,400,75,30,0.0,6025,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2567.80460141061,0.0,0.0,12110.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12110.0,1,0,1_1,1_1 +8955,8.0,17.0,39.0,300,46,20,0.0,6026,0.0,0.0,100.0,0.0,2.0,3.0,1.0,3.0,1.8,2097.33506806764,9978.8,0.0,49793.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,27662.777777777777,4,0,4_0,4_1 +8956,2.0,2.0,77.0,111,77,71,0.0,6027,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2429.3633576389243,0.0,0.0,16920.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,16920.0,2,0,2_0,2_0 +8957,1.0,5.0,40.0,120,37,30,2.0,6028,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2885.8218986982893,4496.96,7900.0,53497.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25474.761904761905,4,0,4_0,4_1 +8958,1.0,1.0,27.0,111,46,31,1.0,6029,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2327.0325415867815,3991.0,42000.0,48532.0,1,2,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,32354.666666666668,5,0,5,5_0 +8959,11.0,11.0,66.0,111,74,20,0.0,6031,0.0,150.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,2189.899047135923,0.0,0.0,99437.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,66291.33333333333,5,0,5,5_0 +8960,4.0,7.0,85.0,111,75,44,0.0,6033,0.0,0.0,0.0,569.0,0.0,4.0,0.0,1.0,1.0,2969.5602212766858,0.0,0.0,30160.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,30160.0,4,0,4_0,4_0 +8961,0.0,0.0,62.0,400,78,50,0.0,6034,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2037.7798537503654,0.0,0.0,20336.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13557.333333333334,1,0,1_0,1_0 +8962,2.0,6.0,56.0,111,47,50,0.0,6037,0.0,0.0,0.0,426.0,2.0,4.0,2.0,4.0,2.5,1914.393706726708,3718.0,0.0,34530.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,13812.0,1,0,1_0,1_0 +8963,0.0,0.0,58.0,112,65,60,0.0,6039,0.0,0.0,0.0,0.0,4.0,4.0,2.0,4.0,2.5,1652.0628500109442,2600.0,0.0,45408.0,1,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18163.2,2,0,2_0,2_1 +8964,0.0,0.0,50.0,111,37,30,0.0,604,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,1945.1773756147265,0.0,0.0,86164.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,43082.0,5,0,5,5_0 +8965,1.0,1.0,45.0,111,46,20,2.0,6040,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,987.6087670778832,0.0,5500.0,30734.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17074.444444444445,2,0,2_0,2_0 +8966,4.0,4.0,24.0,111,84,30,0.0,6041,0.0,0.0,100.0,183.0,0.0,1.0,0.0,1.0,1.0,3786.6878309541257,0.0,0.0,27294.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,27294.0,4,0,4_1,4_0 +8967,5.0,8.0,47.0,400,63,50,0.0,6043,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,2625.5349716802943,2340.0,0.0,13451.0,4,2,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,13451.0,1,0,1_0,1_1 +8968,2.0,11.0,25.0,120,85,71,0.0,6044,0.0,600.0,300.0,0.0,0.0,2.0,1.0,2.0,1.3,480.4666997399532,0.0,0.0,13266.0,6,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,10204.615384615385,1,0,1_1,1_1 +8969,1.0,1.0,64.0,221,75,33,1.0,6045,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2231.4472842233977,0.0,14443.0,45497.0,5,1,1,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,30331.333333333332,4,0,4_0,4_0 +8970,0.0,0.0,76.0,111,52,70,0.0,6046,0.0,0.0,0.0,364.0,1.0,3.0,0.0,2.0,1.5,1774.0584679435476,0.0,0.0,24679.0,5,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,16452.666666666668,2,0,2_0,2_0 +8971,4.0,6.0,24.0,120,63,50,0.0,6047,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3784.2757070640628,0.0,0.0,31128.0,1,3,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20752.0,3,0,3_0,3_1 +8972,4.0,4.0,66.0,111,72,71,0.0,6048,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3596.3423353688854,1300.0,0.0,15910.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,10606.666666666666,1,0,1_1,1_0 +8973,2.0,3.0,38.0,111,64,71,0.0,605,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1985.9495388635717,1560.0,0.0,33085.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13785.416666666668,1,0,1_0,1_0 +8974,0.0,0.0,40.0,112,52,12,0.0,6053,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,2382.2490988677814,0.0,0.0,30790.0,1,2,6,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14661.904761904761,2,0,2_0,2_0 +8975,0.0,11.0,39.0,111,37,50,0.0,6054,0.0,50.0,0.0,0.0,1.0,7.0,4.0,6.0,2.7,1593.7601875234552,2041.0,0.0,50750.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18796.296296296296,3,0,3_0,3_0 +8976,6.0,11.0,74.0,111,77,33,0.0,6055,0.0,60.0,0.0,178.0,0.0,3.0,0.0,1.0,1.0,2289.5658639097724,0.0,0.0,11613.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,11613.0,1,0,1_1,1_0 +8977,0.0,0.0,58.0,111,48,50,0.0,6056,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1679.072947943942,0.0,0.0,47863.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31908.666666666668,5,0,5,5_0 +8978,0.0,0.0,46.0,111,46,20,0.0,6058,0.0,0.0,0.0,655.0,1.0,3.0,0.0,1.0,1.0,2915.494140368618,0.0,0.0,21972.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21972.0,3,0,3_0,3_0 +8979,0.0,5.0,61.0,111,74,12,0.0,6059,0.0,100.0,100.0,0.0,0.0,4.0,0.0,1.0,1.0,3593.7429563440037,0.0,0.0,47361.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,47361.0,5,0,5,5_0 +8980,3.0,12.0,46.0,400,21,50,0.0,606,0.0,99999.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2443.850253740651,0.0,0.0,50913.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20365.2,3,0,3_0,3_1 +8981,1.0,6.0,62.0,111,77,50,0.0,6060,0.0,50.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1887.5683744530356,4413.24,0.0,42452.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,28301.333333333332,4,0,4_0,4_0 +8982,2.0,3.0,93.0,120,71,70,0.0,6061,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2141.7915033987083,2095.08,0.0,17277.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17277.0,2,0,2_0,2_1 +8983,0.0,3.0,29.0,211,55,41,0.0,6063,0.0,310.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1347.0324154682667,6751.16,0.0,46327.0,1,2,2,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,25737.222222222223,4,0,4_0,4_0 +8984,19.0,25.0,62.0,111,54,71,0.0,6065,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,6173.147713602949,0.0,0.0,19496.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,19496.0,3,0,3_0,3_0 +8985,3.0,8.0,55.0,112,13,31,0.0,6066,0.0,0.0,200.0,0.0,1.0,4.0,0.0,2.0,1.5,2610.512602562982,0.0,0.0,39235.0,1,1,9,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,26156.666666666668,4,0,4_0,4_1 +8986,7.0,7.0,46.0,112,55,71,0.0,6067,0.0,150.0,100.0,0.0,2.0,3.0,2.0,4.0,2.5,2731.886431743777,5691.4,0.0,43207.0,1,3,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17282.8,2,0,2_0,2_1 +8987,7.0,7.0,34.0,111,47,30,0.0,6069,0.0,0.0,0.0,0.0,1.0,0.0,1.0,2.0,1.3,1847.2721309249628,0.0,0.0,20738.0,1,4,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15952.307692307691,2,0,2_0,2_0 +8988,5.0,15.0,24.0,300,42,30,0.0,607,0.0,200.0,0.0,0.0,2.0,5.0,1.0,2.0,1.5,2040.8267234582065,1037.3999999999999,0.0,26465.0,1,1,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17643.333333333332,2,0,2_0,2_1 +8989,2.0,2.0,24.0,112,84,44,0.0,6071,0.0,0.0,0.0,260.0,0.0,2.0,0.0,1.0,1.0,3014.6280774881347,2600.0,0.0,17039.0,3,3,9,0.0,1,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,17039.0,2,0,2_1,2_1 +8990,0.0,10.0,45.0,300,46,41,0.0,6072,0.0,0.0,99999.0,0.0,1.0,7.0,1.0,2.0,1.5,1566.8941585051914,390.0,0.0,23035.0,1,2,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,15356.666666666666,2,0,2_0,2_1 +8991,7.0,7.0,56.0,221,77,71,0.0,6075,0.0,540.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2434.880838247624,2080.0,0.0,7930.0,7,1,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,7930.0,1,0,1_0,1_0 +8992,6.0,19.0,80.0,400,77,60,0.0,6076,0.0,0.0,0.0,312.0,0.0,4.0,0.0,2.0,1.5,2484.955238257519,2600.0,0.0,26659.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,17772.666666666668,2,0,2_0,2_1 +8993,6.0,6.0,43.0,111,38,12,0.0,6079,0.0,99999.0,0.0,0.0,1.0,8.0,2.0,4.0,2.1,1669.616776412626,0.0,0.0,90838.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,43256.19047619047,5,0,5,5_0 +8994,5.0,11.0,36.0,112,47,71,0.0,6080,0.0,60.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2704.794001363506,3426.28,0.0,53900.0,1,2,7,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,25666.666666666664,4,0,4_0,4_1 +8995,0.0,0.0,61.0,111,37,20,0.0,6081,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3180.033459590666,0.0,0.0,69410.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,69410.0,5,0,5,5_0 +8996,11.0,11.0,61.0,111,38,12,0.0,6082,0.0,0.0,150.0,0.0,2.0,5.0,0.0,2.0,1.5,1632.0146605381112,0.0,0.0,157901.0,1,1,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,105267.33333333333,5,0,5,5_0 +8997,10.0,10.0,35.0,300,85,42,0.0,6083,0.0,0.0,0.0,0.0,1.0,3.0,4.0,6.0,2.7,2545.6089927201947,0.0,0.0,19590.0,6,4,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,7255.555555555555,1,0,1_0,1_1 +8998,2.0,2.0,37.0,111,34,20,0.0,6084,0.0,320.0,0.0,721.0,2.0,5.0,0.0,2.0,1.5,1994.7227567056136,0.0,0.0,66454.0,1,3,4,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,44302.666666666664,5,0,5,5_0 +8999,2.0,2.0,39.0,112,56,30,0.0,6086,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2815.8269499912826,8593.0,0.0,14215.0,1,1,7,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14215.0,2,0,2_0,2_1 +9000,1.0,2.0,93.0,112,77,41,2.0,6088,0.0,0.0,160.0,321.0,0.0,2.0,0.0,1.0,1.0,3051.498560372558,0.0,11300.0,15888.0,5,3,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,15888.0,2,0,2_1,2_0 +9001,27.0,27.0,73.0,111,75,60,0.0,609,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2480.106598127906,0.0,0.0,37282.0,5,1,7,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24854.666666666668,4,0,4_0,4_0 +9002,3.0,3.0,39.0,300,42,30,0.0,6091,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1773.1442675858245,0.0,0.0,26365.0,1,2,0,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20280.76923076923,3,0,3_0,3_0 +9003,0.0,6.0,63.0,400,72,44,2.0,6092,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1614.3151203285156,0.0,10000.0,24312.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16208.0,2,0,2_0,2_1 +9004,2.0,2.0,35.0,112,34,30,0.0,6093,0.0,120.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3024.8317105725,5430.360000000001,0.0,50720.0,1,2,6,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,28177.777777777777,4,0,4_0,4_1 +9005,2.0,2.0,49.0,111,42,30,0.0,6094,0.0,99999.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3350.779960679191,3630.12,0.0,37555.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,37555.0,5,0,5,5_0 +9006,1.0,1.0,51.0,112,52,50,1.0,6096,0.0,0.0,99999.0,0.0,2.0,3.0,0.0,2.0,1.5,1961.8195351587435,4160.52,18500.0,46064.0,1,2,8,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,30709.333333333332,4,0,4_0,4_0 +9007,5.0,5.0,54.0,111,47,31,0.0,6097,0.0,0.0,99999.0,0.0,2.0,5.0,1.0,3.0,2.0,1675.0987590381988,4316.0,0.0,59116.0,1,1,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,29558.0,4,0,4_0,4_0 +9008,11.0,11.0,56.0,400,56,71,0.0,6098,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1709.2438588501977,2813.72,0.0,14729.0,1,1,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,14729.0,2,0,2_0,2_1 +9009,2.0,2.0,31.0,211,63,71,0.0,6099,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,3032.435529065031,1760.2,0.0,34418.0,1,3,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,14340.833333333334,2,0,2_1,2_0 +9010,3.0,5.0,35.0,111,37,20,0.0,610,0.0,220.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,5256.192619429132,0.0,0.0,47212.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,22481.90476190476,3,0,3_0,3_0 +9011,0.0,0.0,57.0,111,22,60,0.0,6100,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1583.9432613859392,0.0,0.0,8068.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8068.0,1,0,1_1,1_0 +9012,8.0,8.0,77.0,112,74,70,0.0,6101,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2750.3331590638677,0.0,0.0,30990.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,30990.0,4,0,4_0,4_1 +9013,2.0,2.0,23.0,111,85,41,0.0,6102,0.0,299997.0,0.0,243.0,0.0,2.0,0.0,1.0,1.0,4705.23797736679,0.0,0.0,11975.0,4,3,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,1,0.0,3.0,11975.0,1,0,1_1,1_0 +9014,5.0,5.0,56.0,112,46,41,0.0,6104,0.0,690.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1767.8119008131591,0.0,0.0,29379.0,1,2,8,0.0,3,4.0,0.0,1.0,1,0,0,0,0,0,0.0,4.0,19586.0,3,0,3_0,3_1 +9015,3.0,3.0,79.0,111,77,50,0.0,6105,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2230.505296707354,0.0,0.0,19270.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19270.0,3,0,3_0,3_0 +9016,0.0,0.0,42.0,111,34,20,0.0,6106,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1800.6835244863757,7184.84,0.0,88383.0,1,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,58922.0,5,0,5,5_0 +9017,6.0,6.0,62.0,112,77,50,0.0,6107,0.0,0.0,120.0,0.0,1.0,5.0,0.0,2.0,1.5,2230.353185806056,1664.0,0.0,21758.0,5,2,7,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,14505.333333333334,2,0,2_0,2_1 +9018,1.0,7.0,76.0,111,74,12,2.0,6109,0.0,400.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2410.894230300409,4056.0,5900.0,68180.0,5,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,68180.0,5,0,5,5_0 +9019,3.0,10.0,67.0,112,77,70,0.0,611,0.0,120.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,1223.3939445188355,0.0,0.0,28255.0,5,1,10,1.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,18836.666666666668,3,0,3_0,3_0 +9020,6.0,6.0,77.0,111,74,50,0.0,6110,0.0,0.0,400.0,0.0,0.0,4.0,0.0,2.0,1.5,1966.8869630647582,0.0,0.0,47586.0,5,1,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,31724.0,4,0,4_0,4_0 +9021,0.0,0.0,58.0,112,65,50,0.0,6112,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1740.8897517961705,2414.36,0.0,26204.0,1,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17469.333333333332,2,0,2_0,2_1 +9022,0.0,0.0,34.0,120,45,31,0.0,6113,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2600.541313683379,0.0,0.0,51024.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28346.666666666664,4,0,4_0,4_1 +9023,7.0,7.0,46.0,112,52,50,0.0,6114,0.0,15.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2364.3165780322724,2777.3199999999997,0.0,52276.0,1,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,29042.222222222223,4,0,4_0,4_1 +9024,0.0,14.0,61.0,112,78,50,0.0,6115,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,1.3,2075.632604427783,1310.3999999999999,0.0,41335.0,5,2,9,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31796.153846153844,5,0,5,5_0 +9025,0.0,0.0,50.0,111,85,71,0.0,6116,0.0,0.0,0.0,378.0,1.0,4.0,2.0,4.0,2.5,3295.9096826757786,2080.0,0.0,22414.0,7,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8965.6,1,0,1_0,1_0 +9026,0.0,0.0,44.0,221,52,31,0.0,6117,0.0,0.0,0.0,227.0,1.0,5.0,2.0,3.0,1.8,772.740515529788,2600.0,0.0,25398.0,1,3,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,14110.0,2,0,2_1,2_0 +9027,7.0,14.0,37.0,300,64,50,0.0,6118,0.0,500.0,30.0,0.0,2.0,5.0,2.0,4.0,2.1,2209.4256309703705,1825.2,0.0,32682.0,1,2,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,1,2.0,1.0,15562.857142857141,2,0,2_1,2_1 +9028,3.0,19.0,60.0,111,75,50,0.0,6119,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2280.287137332147,3037.3199999999997,0.0,41503.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27668.666666666668,4,0,4_0,4_0 +9029,2.0,22.0,29.0,120,43,30,0.0,612,0.0,650.0,0.0,4.0,2.0,3.0,0.0,2.0,1.5,2083.0985986306987,0.0,0.0,14282.0,4,3,0,1.0,3,3.0,1.0,1.0,0,1,0,0,0,1,0.0,3.0,9521.333333333334,1,0,1_1,1_0 +9030,5.0,6.0,46.0,112,22,20,0.0,6120,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,3869.902371491024,3744.52,0.0,66075.0,1,1,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,28728.26086956522,4,0,4_0,4_0 +9031,5.0,16.0,66.0,111,55,30,0.0,6122,0.0,300.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1340.7570384556257,2376.3999999999996,0.0,12759.0,5,1,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,8506.0,1,0,1_0,1_0 +9032,0.0,0.0,53.0,111,33,60,0.0,6124,0.0,0.0,0.0,575.0,1.0,2.0,0.0,1.0,1.0,3245.9683422827616,0.0,0.0,104983.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,104983.0,5,0,5,5_0 +9033,11.0,11.0,71.0,222,75,60,0.0,6125,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1346.1836903741835,4940.0,0.0,55535.0,5,2,1,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,37023.333333333336,5,0,5,5_1 +9034,4.0,4.0,31.0,111,81,71,0.0,6126,0.0,0.0,0.0,0.0,1.0,3.0,3.0,4.0,1.9,635.827140664816,0.0,0.0,25260.0,4,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,13294.736842105263,1,0,1_1,1_0 +9035,2.0,2.0,30.0,112,54,31,0.0,6127,0.0,0.0,60.0,450.0,1.0,2.0,0.0,1.0,1.0,1684.6425758461157,0.0,0.0,23243.0,1,3,10,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23243.0,3,0,3_0,3_0 +9036,15.0,15.0,72.0,111,74,50,0.0,6128,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2236.6985072122425,0.0,0.0,49333.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32888.666666666664,5,0,5,5_0 +9037,5.0,14.0,49.0,111,37,60,0.0,613,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1962.3200858771906,2600.0,0.0,74625.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,37312.5,5,0,5,5_0 +9038,0.0,0.0,58.0,111,85,50,0.0,6130,0.0,0.0,0.0,369.0,0.0,4.0,0.0,1.0,1.0,997.8464200281574,1040.0,0.0,5276.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,5276.0,1,0,1_1,1_0 +9039,1.0,14.0,61.0,211,72,50,2.0,6131,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1552.8487598008405,0.0,200.0,20035.0,5,1,2,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13356.666666666666,1,0,1_0,1_0 +9040,0.0,0.0,57.0,111,38,12,0.0,6133,0.0,0.0,0.0,0.0,2.0,9.0,1.0,3.0,2.0,1567.4475658006434,1560.0,0.0,140317.0,1,1,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,70158.5,5,0,5,5_0 +9041,5.0,14.0,46.0,111,33,30,0.0,6134,0.0,600.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2118.9432077422366,0.0,0.0,57798.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27522.85714285714,4,0,4_0,4_0 +9042,1.0,1.0,61.0,120,86,71,0.0,6135,0.0,0.0,125.0,0.0,0.0,2.0,0.0,1.0,1.0,2143.33388211465,0.0,0.0,5730.0,4,3,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,5730.0,1,0,1_0,1_1 +9043,9.0,14.0,64.0,111,72,44,0.0,6136,0.0,15.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1394.1189210183668,0.0,0.0,13130.0,5,1,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,13130.0,1,0,1_0,1_0 +9044,9.0,9.0,31.0,111,55,42,0.0,6137,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1263.2751016384439,1560.0,0.0,17825.0,1,3,6,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,13711.538461538461,1,0,1_1,1_0 +9045,3.0,3.0,36.0,111,54,60,0.0,6138,0.0,200.0,80.0,0.0,2.0,6.0,2.0,4.0,2.1,2180.6257935459034,0.0,0.0,70764.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,33697.142857142855,5,0,5,5_0 +9046,5.0,11.0,47.0,211,62,41,0.0,6139,0.0,80.0,100.0,0.0,2.0,3.0,0.0,2.0,1.5,2998.761654996978,6131.84,0.0,48858.0,1,3,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,32572.0,5,0,5,5_0 +9047,0.0,0.0,27.0,111,38,12,0.0,614,0.0,0.0,0.0,720.0,2.0,2.0,0.0,2.0,1.5,3054.402862750385,2293.2000000000003,0.0,42220.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28146.666666666668,4,0,4_0,4_0 +9048,8.0,8.0,43.0,400,52,41,0.0,6141,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,1800.3964784111804,0.0,0.0,46499.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17884.23076923077,2,0,2_0,2_1 +9049,1.0,13.0,79.0,111,78,71,2.0,6142,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3475.5560122029938,0.0,900.0,22360.0,5,1,4,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22360.0,3,0,3_0,3_0 +9050,9.0,9.0,80.0,112,86,71,0.0,6143,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1596.8475344461667,0.0,0.0,16571.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16571.0,2,0,2_0,2_1 +9051,0.0,0.0,75.0,111,77,70,0.0,6144,0.0,0.0,0.0,247.0,0.0,2.0,0.0,2.0,1.5,2509.582554374467,0.0,0.0,34508.0,5,3,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23005.333333333332,3,0,3_0,3_0 +9052,1.0,8.0,53.0,300,31,12,2.0,6148,0.0,1000.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,2165.7486078300203,2392.0,8500.0,118320.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,47328.0,5,0,5,5_1 +9053,5.0,11.0,45.0,111,85,71,0.0,615,0.0,300.0,0.0,0.0,0.0,5.0,1.0,2.0,1.3,1188.2086801378264,0.0,0.0,20640.0,6,3,4,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,15876.923076923076,2,0,2_1,2_0 +9054,0.0,0.0,40.0,111,53,43,0.0,6150,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1932.9096060085824,1863.6799999999998,0.0,69033.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,32872.857142857145,5,0,5,5_0 +9055,4.0,9.0,59.0,221,43,33,0.0,6151,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1847.2279374015563,1658.8,0.0,34979.0,1,2,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23319.333333333332,3,0,3_0,3_0 +9056,5.0,7.0,35.0,120,62,50,0.0,6152,0.0,2000.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2392.585679530567,6593.6,0.0,41861.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,19933.809523809523,3,0,3_0,3_1 +9057,2.0,2.0,61.0,212,13,50,0.0,6153,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1459.83776061337,2678.0,0.0,47871.0,1,1,4,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,31914.0,5,0,5,5_1 +9058,10.0,20.0,32.0,111,42,30,0.0,6156,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3187.272553768057,2364.44,0.0,45366.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25203.333333333332,4,0,4_0,4_0 +9059,0.0,0.0,75.0,111,74,41,0.0,6157,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1758.5868453598873,2600.0,0.0,62769.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,41846.0,5,0,5,5_0 +9060,0.0,0.0,41.0,112,38,31,0.0,6159,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2275.2483526879237,3342.56,0.0,52048.0,1,2,7,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22629.565217391308,3,0,3_0,3_0 +9061,4.0,6.0,32.0,111,47,43,0.0,616,0.0,425.0,0.0,532.0,1.0,2.0,0.0,1.0,1.0,3813.6301088957634,1560.0,0.0,15030.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,15030.0,2,0,2_0,2_0 +9062,0.0,0.0,46.0,112,48,31,0.0,6162,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2695.907005824951,3120.0,0.0,70919.0,1,1,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,33770.95238095238,5,0,5,5_0 +9063,0.0,12.0,24.0,111,63,43,2.0,6164,0.0,0.0,0.0,439.0,1.0,2.0,0.0,2.0,1.5,3111.3468330245705,780.52,5000.0,22019.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14679.333333333334,2,0,2_0,2_0 +9064,1.0,1.0,39.0,111,43,41,1.0,6165,0.0,0.0,0.0,293.0,1.0,5.0,2.0,3.0,1.6,663.9859380505462,0.0,18200.0,24684.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,15427.5,2,0,2_1,2_0 +9065,0.0,0.0,70.0,111,78,50,0.0,6166,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3434.0621384508786,0.0,0.0,57278.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38185.333333333336,5,0,5,5_0 +9066,13.0,14.0,54.0,111,33,41,0.0,6167,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2021.5262933734905,2649.4,0.0,122708.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,61354.0,5,0,5,5_0 +9067,0.0,0.0,49.0,111,55,41,0.0,6168,0.0,0.0,0.0,365.0,2.0,3.0,2.0,3.0,2.0,2322.4294077026334,1549.6,0.0,41595.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,20797.5,3,0,3_1,3_0 +9068,1.0,12.0,58.0,112,33,20,2.0,6169,0.0,800.0,160.0,0.0,2.0,5.0,0.0,2.0,1.5,2208.853948694938,2600.0,3000.0,68646.0,1,1,9,0.0,3,4.0,0.0,1.0,1,0,0,0,0,0,2.0,2.0,45764.0,5,0,5,5_1 +9069,9.0,9.0,69.0,120,78,70,0.0,6170,0.0,0.0,0.0,480.0,0.0,5.0,0.0,2.0,1.5,1861.3840854160787,1040.0,0.0,19270.0,5,3,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12846.666666666666,1,0,1_0,1_0 +9070,11.0,11.0,38.0,111,33,20,0.0,6171,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,3555.319864359844,0.0,0.0,69789.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,33232.857142857145,5,0,5,5_0 +9071,0.0,0.0,64.0,111,78,70,0.0,6172,0.0,0.0,0.0,280.0,0.0,3.0,0.0,1.0,1.0,1902.4244175703564,0.0,0.0,11940.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11940.0,1,0,1_1,1_0 +9072,22.0,22.0,40.0,112,38,30,0.0,6173,0.0,0.0,0.0,750.0,1.0,3.0,1.0,2.0,1.5,2300.150261122755,0.0,0.0,33225.0,1,3,10,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22150.0,3,0,3_0,3_1 +9073,11.0,20.0,47.0,400,42,30,0.0,6174,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2591.5475490295967,4160.0,0.0,32869.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11738.928571428572,1,0,1_0,1_1 +9074,0.0,0.0,38.0,112,52,43,0.0,6176,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1788.9824781987606,3942.6399999999994,0.0,45990.0,1,2,5,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25550.0,4,0,4_0,4_1 +9075,6.0,6.0,36.0,111,37,20,0.0,6177,0.0,150.0,0.0,790.0,2.0,5.0,1.0,3.0,1.8,2891.58540846288,0.0,0.0,57002.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,31667.777777777777,4,0,4_0,4_0 +9076,0.0,0.0,77.0,400,74,60,0.0,6178,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2341.071942413764,1040.0,0.0,27807.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18538.0,2,0,2_0,2_0 +9077,12.0,16.0,19.0,111,84,41,0.0,6179,0.0,0.0,50.0,0.0,0.0,1.0,0.0,1.0,1.0,2467.222611549788,0.0,0.0,9.0,3,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,9.0,1,0,1_0,1_0 +9078,0.0,0.0,57.0,111,56,71,0.0,618,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1321.9850827370963,0.0,0.0,35180.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23453.333333333332,3,0,3_0,3_0 +9079,6.0,6.0,31.0,112,43,33,0.0,6180,0.0,1800.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2700.658404182473,4571.32,0.0,45722.0,1,2,7,4.0,4,3.0,1.0,1.0,0,0,1,0,0,0,1.0,2.0,21772.38095238095,3,0,3_0,3_0 +9080,1.0,1.0,31.0,111,85,60,0.0,6182,0.0,0.0,0.0,376.0,1.0,4.0,2.0,4.0,2.1,2430.3316295793265,0.0,0.0,18408.0,6,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,8765.714285714286,1,0,1_1,1_0 +9081,0.0,0.0,60.0,400,77,50,0.0,6183,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2209.8594787516895,1560.52,0.0,37087.0,5,3,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24724.666666666668,4,0,4_0,4_0 +9082,4.0,10.0,49.0,120,52,50,0.0,6184,0.0,0.0,100.0,0.0,2.0,4.0,0.0,2.0,1.5,1625.948941220599,0.0,0.0,32892.0,1,2,0,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21928.0,3,0,3_0,3_0 +9083,3.0,6.0,36.0,112,62,44,0.0,6186,0.0,1100.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,2532.875708283946,6260.280000000001,0.0,56976.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21913.846153846152,3,0,3_0,3_0 +9084,33.0,33.0,47.0,111,38,12,0.0,6187,0.0,200.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,3604.5678610084838,0.0,0.0,49828.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,31142.5,4,0,4_0,4_0 +9085,7.0,7.0,50.0,111,62,70,0.0,6188,0.0,0.0,199998.0,195.0,1.0,3.0,1.0,2.0,1.5,776.3148162850016,0.0,0.0,17884.0,4,3,5,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,11922.666666666666,1,0,1_1,1_0 +9086,5.0,5.0,69.0,400,71,70,0.0,619,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1275.4320686830933,0.0,0.0,39550.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,26366.666666666668,4,0,4_0,4_0 +9087,6.0,11.0,60.0,400,64,71,0.0,6191,0.0,150.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3274.898533732403,1040.0,0.0,8814.0,4,3,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,8814.0,1,0,1_1,1_1 +9088,13.0,15.0,44.0,111,85,20,0.0,6194,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,6179.341273832409,0.0,0.0,15360.0,7,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15360.0,2,0,2_0,2_0 +9089,0.0,0.0,36.0,111,37,30,0.0,6195,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4511.898103264542,0.0,0.0,31411.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31411.0,4,0,4_0,4_0 +9090,1.0,1.0,56.0,111,54,50,1.0,6196,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2738.8063238245268,0.0,19500.0,53740.0,1,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,35826.666666666664,5,0,5,5_0 +9091,3.0,3.0,47.0,300,56,50,0.0,6198,0.0,0.0,99999.0,0.0,1.0,3.0,1.0,2.0,1.3,135.18364427212686,1560.52,0.0,19316.0,1,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,14858.461538461537,2,0,2_1,2_1 +9092,5.0,10.0,78.0,211,77,70,0.0,6199,0.0,0.0,90.0,300.0,0.0,2.0,0.0,1.0,1.0,4429.364251564317,0.0,0.0,15140.0,5,3,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15140.0,2,0,2_0,2_0 +9093,0.0,0.0,44.0,221,68,71,0.0,62,0.0,0.0,0.0,0.0,2.0,6.0,4.0,5.0,2.4,851.5262988384949,0.0,0.0,33598.0,1,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13999.166666666668,2,0,2_1,2_0 +9094,8.0,20.0,44.0,111,63,31,0.0,620,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1458.1565415264731,3458.0,0.0,22527.0,1,2,4,3.0,1,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,22527.0,3,0,3_0,3_0 +9095,8.0,14.0,68.0,111,74,10,0.0,6203,0.0,54.0,208.0,0.0,0.0,3.0,0.0,1.0,1.0,3405.4859587235105,0.0,0.0,48895.0,5,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,48895.0,5,0,5,5_0 +9096,13.0,13.0,60.0,111,72,71,0.0,6204,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1897.7799414712201,0.0,0.0,39954.0,6,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26636.0,4,0,4_0,4_0 +9097,3.0,6.0,38.0,111,46,20,0.0,6205,0.0,118.0,120.0,0.0,2.0,5.0,3.0,5.0,2.4,2113.5158166748333,2884.44,0.0,55618.0,1,3,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,23174.166666666668,3,0,3_0,3_0 +9098,3.0,10.0,36.0,112,46,20,0.0,6206,0.0,230.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,2298.017576700132,0.0,0.0,33220.0,4,2,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,13841.666666666668,1,0,1_0,1_1 +9099,6.0,6.0,43.0,211,52,31,0.0,6208,0.0,135.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,716.021025411648,0.0,0.0,27110.0,1,2,1,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16943.75,2,0,2_0,2_0 +9100,5.0,5.0,44.0,400,69,50,0.0,6209,0.0,0.0,300.0,0.0,1.0,3.0,0.0,1.0,1.0,2137.520299905677,2745.08,0.0,19084.0,1,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,19084.0,3,0,3_0,3_1 +9101,2.0,2.0,41.0,111,38,10,0.0,621,0.0,550.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,3036.4190117618455,0.0,0.0,92420.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,51344.444444444445,5,0,5,5_0 +9102,1.0,1.0,81.0,111,78,71,1.0,6211,0.0,50.0,0.0,0.0,0.0,4.0,2.0,4.0,2.5,2997.4249810635933,1040.52,25000.0,30450.0,5,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,12180.0,1,0,1_0,1_0 +9103,5.0,12.0,49.0,111,63,50,0.0,6212,0.0,240.0,0.0,600.0,2.0,3.0,1.0,3.0,2.0,2298.148676879568,0.0,0.0,31993.0,1,3,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,15996.5,2,0,2_0,2_0 +9104,19.0,19.0,36.0,120,68,43,0.0,6213,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2670.804456788769,5200.52,0.0,32383.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15420.476190476189,2,0,2_0,2_1 +9105,0.0,0.0,66.0,112,86,70,0.0,6215,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1872.4389219629074,0.0,0.0,73237.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,73237.0,5,0,5,5_0 +9106,0.0,0.0,54.0,111,56,30,0.0,6216,0.0,0.0,0.0,580.0,1.0,3.0,2.0,4.0,2.5,3791.901191828191,0.0,0.0,30997.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12398.8,1,0,1_0,1_0 +9107,1.0,1.0,48.0,300,63,50,0.0,6217,0.0,0.0,0.0,0.0,1.0,8.0,0.0,1.0,1.0,3304.1193992183157,0.0,0.0,20372.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20372.0,3,0,3_0,3_1 +9108,2.0,2.0,59.0,111,55,60,0.0,6219,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2576.9958771505762,2369.12,0.0,34539.0,4,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17269.5,2,0,2_0,2_0 +9109,1.0,2.0,42.0,111,53,43,0.0,622,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.3,1796.8904343635547,0.0,0.0,40581.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17643.913043478264,2,0,2_0,2_0 +9110,5.0,10.0,69.0,400,77,44,0.0,6221,0.0,0.0,200.0,0.0,0.0,5.0,0.0,2.0,1.5,1524.3729614702727,0.0,0.0,57964.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,38642.666666666664,5,0,5,5_0 +9111,7.0,11.0,61.0,111,46,60,0.0,6222,0.0,390.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3108.1195967055237,0.0,0.0,37096.0,1,2,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,37096.0,5,0,5,5_0 +9112,0.0,0.0,22.0,111,34,30,0.0,6223,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3676.6139899141062,0.0,0.0,8952.0,2,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,8952.0,1,0,1_0,1_0 +9113,3.0,20.0,55.0,221,37,31,0.0,6224,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2410.712165054757,0.0,0.0,57680.0,1,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,38453.333333333336,5,0,5,5_0 +9114,0.0,0.0,34.0,112,53,41,0.0,6226,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1824.6901296678338,6344.0,0.0,60406.0,1,2,10,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28764.761904761905,4,0,4_0,4_0 +9115,5.0,11.0,70.0,111,77,60,0.0,6229,0.0,200.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2645.8978117785387,0.0,0.0,16307.0,6,4,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16307.0,2,0,2_0,2_0 +9116,3.0,8.0,45.0,111,37,20,0.0,623,0.0,99999.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2341.6297225174403,2105.48,0.0,72510.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,34528.57142857143,5,0,5,5_0 +9117,0.0,0.0,63.0,111,78,70,0.0,6231,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3627.7799565913347,0.0,0.0,28074.0,5,1,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18716.0,2,0,2_0,2_0 +9118,7.0,7.0,25.0,111,62,43,0.0,6234,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3655.7530558080957,0.0,0.0,33053.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22035.333333333332,3,0,3_0,3_0 +9119,0.0,0.0,75.0,111,74,12,0.0,6236,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2874.1731052726136,842.9200000000001,0.0,78016.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,52010.666666666664,5,0,5,5_0 +9120,0.0,0.0,67.0,111,77,50,0.0,6237,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3061.555334029579,3602.5600000000004,0.0,40050.0,5,2,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26700.0,4,0,4_0,4_0 +9121,2.0,9.0,61.0,300,77,60,0.0,6238,0.0,0.0,20.0,0.0,0.0,4.0,0.0,1.0,1.0,2744.4937068249296,0.0,0.0,14190.0,6,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14190.0,2,0,2_0,2_1 +9122,16.0,16.0,22.0,111,46,41,0.0,6239,0.0,0.0,0.0,330.0,1.0,2.0,0.0,1.0,1.0,4690.46973510374,1633.32,0.0,19816.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19816.0,3,0,3_0,3_0 +9123,8.0,10.0,50.0,111,56,50,0.0,6240,0.0,250.0,120.0,0.0,3.0,7.0,0.0,3.0,2.0,3180.1325602988522,12194.52,0.0,68994.0,1,1,5,4.0,5,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,34497.0,5,0,5,5_0 +9124,5.0,5.0,46.0,111,52,43,0.0,6241,0.0,380.0,0.0,460.0,2.0,3.0,1.0,2.0,1.5,918.0393974753563,0.0,0.0,24766.0,1,3,10,8.0,2,2.0,1.0,1.0,0,0,0,0,1,0,0.0,2.0,16510.666666666668,2,0,2_0,2_0 +9125,0.0,0.0,89.0,111,78,70,0.0,6242,0.0,0.0,0.0,303.0,0.0,4.0,0.0,1.0,1.0,3238.050390918299,0.0,0.0,15754.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15754.0,2,0,2_1,2_0 +9126,0.0,0.0,38.0,111,53,41,0.0,6243,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2084.7456251241233,0.0,0.0,51758.0,1,2,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24646.666666666664,4,0,4_0,4_0 +9127,1.0,15.0,72.0,112,77,60,2.0,6244,0.0,180.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2574.8298076962333,0.0,2300.0,14910.0,5,1,10,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14910.0,2,0,2_0,2_0 +9128,8.0,10.0,54.0,300,75,50,0.0,6245,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2625.4508267432466,3169.4,0.0,22117.0,7,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14744.666666666666,2,0,2_0,2_1 +9129,0.0,4.0,69.0,112,75,30,0.0,6249,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2421.107083697055,5015.92,0.0,49730.0,5,1,8,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,33153.333333333336,5,0,5,5_1 +9130,2.0,2.0,65.0,112,74,31,0.0,6251,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,1896.1012902452176,11436.36,0.0,44762.0,5,1,7,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,29841.333333333332,4,0,4_0,4_0 +9131,0.0,0.0,40.0,111,46,31,0.0,6252,0.0,0.0,0.0,166.0,1.0,1.0,0.0,1.0,1.0,3264.7794467093045,0.0,0.0,11154.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11154.0,1,0,1_1,1_0 +9132,16.0,18.0,36.0,111,67,41,0.0,6253,0.0,0.0,0.0,257.0,1.0,3.0,0.0,1.0,1.0,3620.6659739245865,988.5200000000001,0.0,21480.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21480.0,3,0,3_0,3_0 +9133,5.0,5.0,68.0,111,78,71,0.0,6254,0.0,0.0,0.0,231.0,1.0,3.0,0.0,2.0,1.5,3102.16309036865,0.0,0.0,19200.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12800.0,1,0,1_1,1_0 +9134,12.0,12.0,59.0,111,22,41,0.0,6256,0.0,440.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3031.862251958663,3640.0,0.0,7406.0,4,2,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,7406.0,1,0,1_0,1_0 +9135,2.0,4.0,47.0,221,55,50,0.0,6257,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,1.8,603.6894172013349,1302.6000000000001,0.0,30501.0,1,3,1,2.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,16945.0,2,0,2_1,2_0 +9136,4.0,4.0,31.0,112,46,44,0.0,6258,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2372.8264685548775,0.0,0.0,36423.0,1,2,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20235.0,3,0,3_0,3_1 +9137,0.0,0.0,41.0,111,46,50,0.0,626,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2113.2198389985656,781.04,0.0,43657.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20789.04761904762,3,0,3_0,3_0 +9138,5.0,14.0,36.0,111,35,31,0.0,6260,0.0,80.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1693.924752035418,2080.0,0.0,71979.0,1,2,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,29991.25,4,0,4_0,4_0 +9139,1.0,10.0,64.0,112,75,50,2.0,6261,0.0,70.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3369.9673869102894,1560.0,8500.0,18153.0,5,3,7,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18153.0,2,0,2_0,2_0 +9140,20.0,20.0,59.0,112,13,50,0.0,6262,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1647.274221063831,0.0,0.0,29273.0,1,1,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,29273.0,4,0,4_0,4_1 +9141,0.0,0.0,52.0,111,48,50,0.0,6263,0.0,0.0,0.0,0.0,4.0,6.0,4.0,6.0,3.3,1564.1412747255392,1820.0,0.0,68227.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20674.848484848488,3,0,3_0,3_0 +9142,0.0,0.0,45.0,112,47,44,0.0,6265,0.0,0.0,0.0,333.0,1.0,2.0,0.0,1.0,1.0,4802.643769870793,0.0,0.0,26160.0,1,3,10,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26160.0,4,0,4_0,4_0 +9143,0.0,0.0,82.0,111,86,71,0.0,6266,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2334.890676823248,0.0,0.0,14442.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14442.0,2,0,2_0,2_0 +9144,7.0,7.0,58.0,300,43,33,0.0,6267,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1993.803656221767,3787.68,0.0,24946.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16630.666666666668,2,0,2_0,2_1 +9145,5.0,5.0,55.0,120,67,71,0.0,6268,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,132.7191740940469,2600.0,0.0,19100.0,4,3,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,12733.333333333334,1,0,1_1,1_1 +9146,0.0,0.0,22.0,111,84,42,0.0,627,0.0,0.0,0.0,149.0,0.0,1.0,0.0,1.0,1.0,3627.5841918248243,0.0,0.0,9612.0,3,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9612.0,1,0,1_1,1_0 +9147,0.0,6.0,80.0,211,77,71,0.0,6270,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4171.004556362333,1664.0,0.0,23915.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23915.0,4,0,4_0,4_0 +9148,1.0,1.0,72.0,111,74,30,1.0,6271,0.0,0.0,0.0,630.0,1.0,5.0,1.0,3.0,2.0,3730.348653040445,518.44,15700.0,95984.0,5,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,47992.0,5,0,5,5_0 +9149,1.0,1.0,51.0,111,46,43,1.0,6272,0.0,500.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2786.5490390794457,0.0,21000.0,51131.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,19665.76923076923,3,0,3_1,3_0 +9150,1.0,3.0,53.0,111,38,31,2.0,6273,0.0,150.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1725.364090185464,0.0,6500.0,77710.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,38855.0,5,0,5,5_0 +9151,2.0,2.0,50.0,111,64,50,0.0,6274,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3044.382987416924,4139.200000000001,0.0,37427.0,1,2,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,18713.5,2,0,2_0,2_0 +9152,1.0,18.0,67.0,111,75,12,2.0,6276,0.0,50.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1645.9135474594905,0.0,500.0,49059.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,49059.0,5,0,5,5_0 +9153,4.0,5.0,77.0,111,22,70,0.0,6277,0.0,350.0,0.0,95.0,1.0,2.0,0.0,1.0,1.0,4170.089487611232,780.0,0.0,24875.0,5,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,24875.0,4,0,4_1,4_0 +9154,1.0,1.0,22.0,111,84,30,0.0,6278,0.0,0.0,0.0,642.0,0.0,3.0,0.0,3.0,2.0,3249.766021656776,0.0,0.0,24922.0,3,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12461.0,1,0,1_1,1_0 +9155,0.0,0.0,63.0,111,34,20,0.0,628,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2058.6752527694357,0.0,0.0,36222.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36222.0,5,0,5,5_0 +9156,6.0,6.0,41.0,111,38,12,0.0,6280,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3763.3387542668333,1976.0,0.0,123695.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,68719.44444444444,5,0,5,5_0 +9157,4.0,4.0,38.0,120,65,43,0.0,6281,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3044.021878054532,0.0,0.0,22841.0,1,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,22841.0,3,0,3_0,3_1 +9158,0.0,0.0,64.0,112,77,70,0.0,6282,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2738.3264415447948,0.0,0.0,18308.0,5,1,10,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18308.0,2,0,2_0,2_0 +9159,8.0,8.0,22.0,400,56,44,0.0,6283,0.0,0.0,0.0,209.0,1.0,2.0,0.0,1.0,1.0,2667.8904151768756,0.0,0.0,16677.0,1,3,0,1.0,1,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,16677.0,2,0,2_1,2_0 +9160,0.0,6.0,83.0,111,72,50,0.0,6284,0.0,50.0,50.0,0.0,0.0,4.0,0.0,2.0,1.5,1544.4298592622579,0.0,0.0,28208.0,5,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18805.333333333332,3,0,3_0,3_0 +9161,7.0,11.0,76.0,111,75,30,0.0,6286,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3411.1077273492456,0.0,0.0,21255.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21255.0,3,0,3_0,3_0 +9162,3.0,6.0,30.0,221,34,30,0.0,6287,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2292.899763616037,0.0,0.0,34078.0,1,1,1,2.0,4,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,18932.222222222223,3,0,3_0,3_0 +9163,13.0,13.0,45.0,211,62,50,0.0,6289,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2300.895420886086,3435.12,0.0,32703.0,1,1,1,3.0,4,4.0,0.0,0.0,0,1,0,0,0,0,2.0,2.0,15572.857142857141,2,0,2_0,2_0 +9164,0.0,0.0,61.0,300,62,70,0.0,629,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2116.1704382851776,0.0,0.0,33763.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33763.0,5,0,5,5_1 +9165,3.0,13.0,49.0,112,62,71,0.0,6292,0.0,750.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2689.0206924625973,2600.0,0.0,24728.0,1,3,8,1.0,4,3.0,0.0,1.0,0,1,0,0,0,1,1.0,2.0,12364.0,1,0,1_1,1_0 +9166,0.0,0.0,52.0,400,34,20,0.0,6294,0.0,0.0,0.0,470.0,1.0,4.0,2.0,4.0,2.1,2668.7822826549886,0.0,0.0,27540.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13114.285714285714,1,0,1_1,1_1 +9167,13.0,14.0,56.0,111,43,33,0.0,6295,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2943.1647369222037,1040.0,0.0,126170.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,50468.0,5,0,5,5_0 +9168,8.0,10.0,26.0,111,65,43,0.0,6297,0.0,500.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2688.2934512100323,3120.0,0.0,33381.0,1,3,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22254.0,3,0,3_0,3_0 +9169,3.0,4.0,88.0,300,74,41,0.0,6298,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1576.3052170393375,0.0,0.0,56596.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,37730.666666666664,5,0,5,5_0 +9170,9.0,9.0,57.0,111,78,71,0.0,63,0.0,0.0,0.0,178.0,0.0,3.0,0.0,1.0,1.0,3448.9613895374214,0.0,0.0,13020.0,7,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13020.0,1,0,1_1,1_0 +9171,0.0,0.0,21.0,120,47,43,0.0,630,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2030.5012927629946,2052.44,0.0,22828.0,1,4,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15218.666666666666,2,0,2_0,2_1 +9172,4.0,9.0,74.0,111,78,50,0.0,6300,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2031.5601657018776,0.0,0.0,32486.0,5,4,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,21657.333333333332,3,0,3_0,3_0 +9173,1.0,23.0,88.0,112,75,44,2.0,6303,0.0,0.0,5.0,0.0,0.0,5.0,0.0,2.0,1.5,1519.657706909851,0.0,550.0,49930.0,5,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,33286.666666666664,5,0,5,5_0 +9174,0.0,11.0,60.0,111,63,50,0.0,6304,0.0,0.0,0.0,500.0,1.0,2.0,0.0,1.0,1.0,2402.934679407231,3250.0,0.0,26351.0,1,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,26351.0,4,0,4_0,4_0 +9175,2.0,2.0,64.0,112,75,70,0.0,6305,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2620.996190988823,2674.36,0.0,18284.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18284.0,2,0,2_0,2_0 +9176,0.0,12.0,66.0,111,35,31,0.0,6306,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2053.146669373399,0.0,0.0,71097.0,1,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,47398.0,5,0,5,5_0 +9177,1.0,2.0,49.0,111,55,50,0.0,6307,0.0,0.0,100.0,0.0,1.0,6.0,2.0,3.0,1.8,512.06386539838,1820.0,0.0,27500.0,1,2,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,15277.777777777777,2,0,2_0,2_0 +9178,2.0,9.0,65.0,111,74,31,0.0,6308,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1391.810799111961,0.0,0.0,41107.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27404.666666666668,4,0,4_0,4_0 +9179,10.0,10.0,69.0,400,77,44,0.0,631,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1467.7993009866889,0.0,0.0,30330.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20220.0,3,0,3_0,3_1 +9180,12.0,12.0,73.0,111,74,50,0.0,6310,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2345.3728867195214,0.0,0.0,27400.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,18266.666666666668,2,0,2_0,2_0 +9181,1.0,11.0,60.0,111,37,60,0.0,6311,0.0,0.0,156.0,0.0,2.0,6.0,1.0,3.0,2.0,1955.989495876705,0.0,0.0,72040.0,1,2,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,36020.0,5,0,5,5_0 +9182,11.0,11.0,46.0,111,85,71,0.0,6312,0.0,0.0,60.0,150.0,0.0,3.0,3.0,5.0,2.4,1163.376971962406,0.0,0.0,8120.0,4,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,3383.3333333333335,1,0,1_0,1_0 +9183,2.0,2.0,89.0,111,86,50,0.0,6313,0.0,620.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2401.4677264185993,0.0,0.0,16000.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16000.0,2,0,2_0,2_0 +9184,6.0,6.0,89.0,112,77,50,0.0,6314,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2501.8152991668994,0.0,0.0,26896.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26896.0,4,0,4_0,4_1 +9185,0.0,0.0,32.0,120,47,43,0.0,6317,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2332.7720212191975,0.0,0.0,58540.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27876.190476190473,4,0,4_0,4_1 +9186,9.0,9.0,39.0,111,22,20,0.0,6318,0.0,84.0,0.0,0.0,2.0,6.0,4.0,6.0,2.9,2324.114555639182,1040.0,0.0,38521.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,13283.103448275862,1,0,1_0,1_0 +9187,1.0,1.0,29.0,400,63,43,0.0,6321,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1770.1214272060115,3164.2000000000003,0.0,31716.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17620.0,2,0,2_0,2_1 +9188,3.0,4.0,62.0,112,45,42,0.0,6322,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1448.1447249574853,0.0,0.0,26743.0,1,1,8,1.0,2,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,17828.666666666668,2,0,2_0,2_0 +9189,4.0,7.0,34.0,111,56,41,0.0,6323,0.0,0.0,500.0,232.0,1.0,4.0,1.0,2.0,1.3,927.0578370364622,0.0,0.0,17621.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,13554.615384615385,1,0,1_1,1_0 +9190,3.0,9.0,31.0,112,13,43,0.0,6324,0.0,0.0,250.0,172.0,2.0,4.0,2.0,4.0,2.1,2918.748213553785,0.0,0.0,23221.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,11057.619047619048,1,0,1_1,1_1 +9191,0.0,0.0,67.0,112,78,71,0.0,6325,0.0,0.0,0.0,278.0,0.0,2.0,0.0,1.0,1.0,2432.620272043007,0.0,0.0,15380.0,5,3,10,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,15380.0,2,0,2_0,2_0 +9192,11.0,15.0,22.0,111,84,20,0.0,6326,0.0,0.0,0.0,361.0,0.0,1.0,0.0,1.0,1.0,6056.2910105218025,0.0,0.0,6136.0,3,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,6136.0,1,0,1_1,1_0 +9193,4.0,8.0,42.0,111,55,30,0.0,6327,0.0,250.0,250.0,0.0,1.0,4.0,1.0,2.0,1.3,581.1238688128292,0.0,0.0,26112.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,20086.153846153844,3,0,3_1,3_0 +9194,0.0,0.0,30.0,111,46,42,0.0,6328,0.0,0.0,0.0,369.0,1.0,2.0,0.0,1.0,1.0,2707.052035973572,0.0,0.0,26551.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26551.0,4,0,4_0,4_0 +9195,5.0,12.0,89.0,111,78,50,0.0,633,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2380.36061434378,0.0,0.0,32090.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,21393.333333333332,3,0,3_0,3_0 +9196,6.0,6.0,85.0,111,77,71,0.0,6330,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4609.976652355919,0.0,0.0,13803.0,5,4,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,13803.0,1,0,1_0,1_0 +9197,8.0,17.0,53.0,111,42,20,0.0,6332,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,4126.354367374312,2358.2,0.0,48568.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23127.619047619046,3,0,3_0,3_0 +9198,2.0,10.0,53.0,221,52,71,0.0,6334,0.0,0.0,100.0,0.0,1.0,4.0,0.0,1.0,1.0,1635.920581465168,624.0,0.0,7070.0,1,4,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,7070.0,1,0,1_0,1_0 +9199,1.0,1.0,64.0,112,64,70,0.0,6335,0.0,200.0,70.0,0.0,3.0,5.0,2.0,4.0,2.5,2522.992974054293,0.0,0.0,77660.0,1,1,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,31064.0,4,0,4_0,4_1 +9200,10.0,10.0,40.0,221,38,20,0.0,6336,0.0,99999.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,3335.108954525151,0.0,0.0,50437.0,1,2,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,28020.555555555555,4,0,4_0,4_0 +9201,1.0,24.0,76.0,111,86,70,2.0,6337,0.0,150.0,0.0,285.0,0.0,2.0,0.0,1.0,1.0,2475.2874811862303,0.0,100.0,17520.0,5,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,17520.0,2,0,2_0,2_0 +9202,18.0,21.0,59.0,111,35,12,0.0,6339,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1531.6719701451666,3380.0,0.0,114882.0,1,2,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,76588.0,5,0,5,5_0 +9203,15.0,15.0,48.0,111,43,33,0.0,634,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2051.815828927327,728.52,0.0,61360.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,24544.0,4,0,4_0,4_0 +9204,7.0,15.0,42.0,111,53,31,0.0,6340,0.0,0.0,150.0,0.0,2.0,7.0,2.0,4.0,2.1,1800.927247029825,2132.0,0.0,98254.0,1,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,46787.619047619046,5,0,5,5_0 +9205,2.0,14.0,44.0,111,52,43,0.0,6343,0.0,99999.0,0.0,254.0,2.0,4.0,1.0,2.0,1.5,3428.5236200734994,0.0,0.0,20080.0,1,3,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,13386.666666666666,1,0,1_1,1_0 +9206,4.0,8.0,77.0,400,,70,0.0,6345,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1553.604804304573,0.0,0.0,15770.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,15770.0,2,0,2_0,2_1 +9207,4.0,4.0,60.0,111,22,60,0.0,6346,0.0,350.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3664.0257035135487,1560.0,0.0,40420.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,26946.666666666668,4,0,4_1,4_0 +9208,4.0,4.0,37.0,111,63,50,0.0,6348,0.0,0.0,0.0,370.0,1.0,2.0,1.0,2.0,1.3,2784.703628115054,0.0,0.0,24410.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18776.923076923078,3,0,3_0,3_0 +9209,0.0,0.0,64.0,120,78,60,0.0,635,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2635.6946701277043,0.0,0.0,25178.0,5,1,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25178.0,4,0,4_0,4_0 +9210,3.0,13.0,89.0,111,77,71,0.0,6350,0.0,0.0,99999.0,650.0,0.0,4.0,0.0,1.0,1.0,3165.107764883194,0.0,0.0,22491.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22491.0,3,0,3_0,3_0 +9211,3.0,3.0,56.0,111,13,44,0.0,6351,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1195.6872656042722,0.0,0.0,35503.0,1,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,23668.666666666668,3,0,3_0,3_0 +9212,2.0,3.0,39.0,111,38,30,0.0,6353,0.0,0.0,1200.0,0.0,2.0,5.0,2.0,4.0,2.1,2364.063924664017,1386.32,0.0,60421.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,28771.90476190476,4,0,4_0,4_0 +9213,8.0,9.0,65.0,111,78,70,0.0,6354,0.0,85.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2716.391766675863,2080.0,0.0,16022.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16022.0,2,0,2_0,2_0 +9214,8.0,10.0,45.0,111,47,31,0.0,6355,0.0,0.0,0.0,0.0,1.0,6.0,3.0,4.0,2.5,477.9955342116471,2965.56,0.0,40111.0,1,1,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,16044.4,2,0,2_0,2_0 +9215,1.0,1.0,26.0,111,42,44,1.0,6356,0.0,600.0,0.0,390.0,2.0,1.0,0.0,2.0,1.5,6366.464124529762,2636.4,25000.0,22105.0,1,3,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,14736.666666666666,2,0,2_1,2_0 +9216,0.0,0.0,81.0,112,77,71,0.0,6357,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3159.091477430351,0.0,0.0,10450.0,5,3,8,3.0,1,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10450.0,1,0,1_1,1_0 +9217,4.0,7.0,80.0,300,78,71,0.0,6358,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2110.7388491630795,0.0,0.0,11040.0,5,1,0,0.0,1,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,11040.0,1,0,1_0,1_1 +9218,6.0,6.0,42.0,111,65,50,0.0,6359,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1883.8258467588078,2860.0,0.0,46463.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17870.384615384613,2,0,2_0,2_0 +9219,1.0,1.0,43.0,111,52,50,1.0,636,0.0,0.0,0.0,600.0,1.0,3.0,1.0,2.0,1.5,1582.8105318338464,0.0,21000.0,13944.0,6,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,9296.0,1,0,1_1,1_0 +9220,2.0,3.0,56.0,112,34,20,0.0,6360,0.0,320.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1202.9289611561446,0.0,0.0,72470.0,1,2,10,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,72470.0,5,0,5,5_0 +9221,11.0,11.0,35.0,221,56,71,0.0,6361,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,2345.088480183562,0.0,0.0,26093.0,1,2,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,10035.76923076923,1,0,1_0,1_0 +9222,6.0,7.0,42.0,111,63,50,0.0,6362,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1891.2975138657134,2808.52,0.0,36320.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,15133.333333333334,2,0,2_1,2_0 +9223,1.0,2.0,66.0,111,75,41,2.0,6364,0.0,330.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3048.736310988666,1856.4,22160.0,24294.0,5,1,6,5.0,1,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,24294.0,4,0,4_0,4_0 +9224,8.0,8.0,62.0,120,74,41,0.0,6365,0.0,52.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1788.3159561158398,2392.0,0.0,27577.0,5,1,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27577.0,4,0,4_0,4_0 +9225,12.0,12.0,35.0,112,35,31,0.0,6367,0.0,210.0,160.0,0.0,1.0,5.0,0.0,1.0,1.0,2614.1757370090836,3120.52,0.0,19072.0,1,2,9,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19072.0,3,0,3_0,3_0 +9226,0.0,0.0,39.0,120,38,43,0.0,6369,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,1903.8870834641757,2496.0,0.0,53226.0,1,2,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25345.714285714286,4,0,4_0,4_0 +9227,5.0,14.0,52.0,111,46,42,0.0,6371,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1788.585858813627,0.0,0.0,57317.0,1,1,8,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,28658.5,4,0,4_0,4_0 +9228,0.0,0.0,56.0,111,68,71,0.0,6372,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,854.4622128073715,0.0,0.0,18160.0,1,2,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12106.666666666666,1,0,1_1,1_0 +9229,12.0,12.0,35.0,300,23,50,0.0,6374,0.0,0.0,30.0,0.0,2.0,4.0,2.0,4.0,2.1,4584.31250513617,9531.6,0.0,34563.0,1,3,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16458.571428571428,2,0,2_0,2_1 +9230,0.0,0.0,35.0,111,38,31,0.0,6376,0.0,0.0,0.0,500.0,2.0,2.0,0.0,2.0,1.5,3291.996391604718,0.0,0.0,51170.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34113.333333333336,5,0,5,5_0 +9231,3.0,3.0,58.0,111,52,71,0.0,6377,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2024.6761030198315,0.0,0.0,47810.0,1,4,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31873.333333333332,5,0,5,5_0 +9232,8.0,8.0,69.0,211,78,70,0.0,6379,0.0,0.0,0.0,252.0,0.0,3.0,0.0,1.0,1.0,2019.1727346547166,0.0,0.0,13557.0,5,3,3,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13557.0,1,0,1_0,1_0 +9233,4.0,4.0,64.0,400,11,50,0.0,638,0.0,0.0,150.0,0.0,1.0,5.0,0.0,2.0,1.5,1608.7446302761239,0.0,0.0,18820.0,1,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,12546.666666666666,1,0,1_0,1_1 +9234,5.0,5.0,70.0,112,75,60,0.0,6380,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1553.13599728763,0.0,0.0,50589.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,33726.0,5,0,5,5_0 +9235,0.0,0.0,56.0,111,47,71,0.0,6381,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1702.6609379597223,0.0,0.0,47163.0,1,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31442.0,4,0,4_0,4_0 +9236,10.0,10.0,56.0,111,,50,0.0,6382,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1661.779505884501,0.0,0.0,14870.0,8,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14870.0,2,0,2_1,2_0 +9237,0.0,0.0,67.0,111,71,70,0.0,6383,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,733.4583673821545,0.0,0.0,34110.0,5,1,4,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,34110.0,5,0,5,5_0 +9238,7.0,7.0,19.0,111,84,41,0.0,6384,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3277.066900073765,0.0,0.0,3770.0,3,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,3770.0,1,0,1_0,1_0 +9239,2.0,6.0,47.0,111,52,50,0.0,6385,0.0,0.0,0.0,359.0,1.0,3.0,0.0,1.0,1.0,1784.4666821704097,0.0,0.0,18785.0,1,3,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,18785.0,3,0,3_0,3_0 +9240,5.0,8.0,86.0,111,78,71,0.0,6387,0.0,300.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,5780.7160967494465,0.0,0.0,18170.0,5,1,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18170.0,2,0,2_0,2_0 +9241,3.0,6.0,56.0,112,47,50,0.0,6388,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1584.0522225986933,0.0,0.0,52450.0,1,1,10,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,34966.666666666664,5,0,5,5_0 +9242,2.0,10.0,45.0,111,85,71,0.0,6389,0.0,60.0,0.0,254.0,0.0,1.0,0.0,1.0,1.0,5533.419820161739,0.0,0.0,14052.0,7,3,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,14052.0,2,0,2_1,2_0 +9243,0.0,0.0,70.0,111,78,50,0.0,639,0.0,0.0,0.0,332.0,0.0,2.0,0.0,1.0,1.0,4574.80478434925,0.0,0.0,11580.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,11580.0,1,0,1_0,1_0 +9244,0.0,0.0,85.0,111,74,60,0.0,6390,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3459.1793189569557,0.0,0.0,41800.0,5,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,41800.0,5,0,5,5_0 +9245,10.0,10.0,77.0,400,78,50,0.0,6391,0.0,316.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2007.5372250770886,0.0,0.0,33811.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22540.666666666668,3,0,3_0,3_1 +9246,7.0,7.0,33.0,111,38,12,0.0,6392,0.0,0.0,0.0,580.0,1.0,3.0,2.0,3.0,1.6,573.0565048238087,0.0,0.0,31679.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,19799.375,3,0,3_0,3_0 +9247,0.0,16.0,69.0,120,77,70,0.0,6393,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1781.7068921725702,3120.0,0.0,29336.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,19557.333333333332,3,0,3_0,3_1 +9248,0.0,0.0,71.0,111,74,12,0.0,6394,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1807.1489046851098,4472.0,0.0,67849.0,5,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,45232.666666666664,5,0,5,5_0 +9249,0.0,8.0,52.0,111,21,50,2.0,6395,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2169.916778021146,0.0,4550.0,2563.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,1281.5,1,0,1_0,1_0 +9250,1.0,6.0,38.0,111,85,50,0.0,6396,0.0,0.0,80.0,0.0,1.0,5.0,4.0,6.0,2.7,1332.6239758925424,3126.24,0.0,40096.0,4,1,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,14850.370370370369,2,0,2_0,2_0 +9251,2.0,2.0,42.0,111,56,50,0.0,6398,0.0,0.0,0.0,101.0,1.0,1.0,1.0,3.0,1.8,1046.7950470464855,0.0,0.0,21159.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11755.0,1,0,1_1,1_0 +9252,8.0,9.0,52.0,112,64,50,0.0,6399,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2181.8659550402103,3536.0,0.0,29480.0,1,3,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,29480.0,4,0,4_0,4_1 +9253,0.0,16.0,54.0,111,52,41,0.0,64,0.0,0.0,170.0,397.0,3.0,3.0,2.0,3.0,2.0,2488.057607323587,0.0,0.0,57980.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,28990.0,4,0,4_0,4_0 +9254,10.0,10.0,61.0,111,38,42,0.0,6400,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2274.4931028744872,0.0,0.0,95864.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,63909.333333333336,5,0,5,5_0 +9255,0.0,3.0,59.0,300,,50,0.0,6402,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1583.9757889752973,0.0,0.0,10800.0,8,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,10800.0,1,0,1_1,1_1 +9256,1.0,1.0,61.0,300,63,71,0.0,6403,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,2329.4875842593115,1686.3600000000001,0.0,16770.0,4,1,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,6708.0,1,0,1_0,1_0 +9257,3.0,18.0,66.0,111,74,30,0.0,6404,0.0,0.0,5.0,0.0,0.0,5.0,0.0,1.0,1.0,2284.151066211601,1024.92,0.0,23364.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23364.0,3,0,3_0,3_0 +9258,5.0,10.0,51.0,111,23,20,0.0,6405,0.0,350.0,0.0,0.0,1.0,1.0,1.0,2.0,1.5,2253.581449848301,0.0,0.0,400.0,1,1,10,8.0,2,3.0,0.0,1.0,0,0,0,0,1,0,0.0,3.0,266.6666666666667,1,0,1_0,1_0 +9259,3.0,3.0,57.0,111,62,71,0.0,6408,0.0,0.0,0.0,330.0,2.0,4.0,1.0,3.0,2.0,2795.7643395566465,0.0,0.0,39029.0,4,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19514.5,3,0,3_0,3_0 +9260,4.0,4.0,21.0,111,84,41,0.0,6409,0.0,0.0,0.0,287.0,0.0,1.0,0.0,1.0,1.0,4467.331955336997,0.0,0.0,0.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,0.0,1,0,1_0,1_0 +9261,1.0,1.0,63.0,400,77,60,1.0,641,0.0,0.0,200.0,0.0,1.0,3.0,0.0,2.0,1.5,2536.7970613602142,380.12,15500.0,27244.0,5,3,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,18162.666666666668,2,0,2_0,2_1 +9262,9.0,9.0,54.0,111,63,41,0.0,6410,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,2428.4835636701036,1080.56,0.0,31874.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,12749.6,1,0,1_0,1_0 +9263,0.0,0.0,48.0,111,46,31,0.0,6413,0.0,0.0,0.0,825.0,2.0,1.0,0.0,2.0,1.5,1187.5531529967864,0.0,0.0,35191.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23460.666666666668,3,0,3_0,3_0 +9264,4.0,10.0,73.0,221,75,44,0.0,6415,0.0,30.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,1715.0118767405154,1820.0,0.0,21688.0,5,1,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21688.0,3,0,3_0,3_0 +9265,4.0,11.0,25.0,111,47,31,0.0,6416,0.0,250.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,4211.134643336478,0.0,0.0,33081.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,22054.0,3,0,3_0,3_0 +9266,18.0,18.0,62.0,111,78,71,0.0,6418,0.0,0.0,180.0,0.0,0.0,3.0,0.0,1.0,1.0,4691.078011793799,0.0,0.0,15414.0,5,3,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,15414.0,2,0,2_1,2_0 +9267,0.0,16.0,65.0,112,71,50,0.0,6419,0.0,99999.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,1397.1960261046613,0.0,0.0,110796.0,5,1,9,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,55398.0,5,0,5,5_0 +9268,0.0,0.0,48.0,111,43,33,0.0,642,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1833.603564040057,2148.64,0.0,66930.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29100.000000000004,4,0,4_0,4_0 +9269,0.0,0.0,66.0,111,31,10,0.0,6423,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2126.2384569746287,0.0,0.0,423335.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,282223.3333333333,5,0,5,5_0 +9270,0.0,0.0,38.0,400,22,20,0.0,6425,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,3256.5363456711984,0.0,0.0,52595.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35063.333333333336,5,0,5,5_1 +9271,4.0,8.0,23.0,112,63,50,0.0,6426,0.0,380.0,0.0,800.0,2.0,3.0,0.0,2.0,1.5,2839.5282562337256,1040.0,0.0,46569.0,1,3,10,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,31046.0,4,0,4_0,4_1 +9272,0.0,0.0,56.0,300,46,50,0.0,6428,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1649.0944858303208,0.0,0.0,123875.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,82583.33333333333,5,0,5,5_1 +9273,3.0,3.0,22.0,111,55,43,0.0,6429,0.0,0.0,0.0,263.0,1.0,4.0,0.0,2.0,1.5,2710.3039276066033,2132.0,0.0,17571.0,1,3,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,11714.0,1,0,1_1,1_0 +9274,0.0,0.0,63.0,111,75,33,0.0,6430,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2266.739488424109,0.0,0.0,21430.0,5,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21430.0,3,0,3_0,3_0 +9275,5.0,5.0,68.0,400,72,50,0.0,6433,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1634.0427330949026,173.16,0.0,24216.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16144.0,2,0,2_0,2_1 +9276,7.0,11.0,32.0,111,47,31,0.0,6435,0.0,0.0,260.0,0.0,1.0,3.0,0.0,1.0,1.0,6961.232108681463,0.0,0.0,1.0,4,1,6,4.0,1,3.0,0.0,1.0,0,0,1,0,0,0,3.0,0.0,1.0,1,0,1_0,1_0 +9277,14.0,24.0,70.0,111,78,50,0.0,6436,0.0,450.0,0.0,388.0,0.0,2.0,0.0,2.0,1.5,1799.7401142789263,1543.36,0.0,17547.0,5,3,8,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,11698.0,1,0,1_0,1_0 +9278,0.0,0.0,66.0,112,77,70,0.0,6438,0.0,0.0,0.0,284.0,0.0,2.0,0.0,2.0,1.5,3264.3001584204926,0.0,0.0,30350.0,5,3,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20233.333333333332,3,0,3_0,3_0 +9279,0.0,9.0,36.0,112,63,50,0.0,6439,0.0,0.0,0.0,31.0,1.0,3.0,2.0,4.0,2.1,2230.182685938134,0.0,0.0,32306.0,1,3,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,15383.809523809523,2,0,2_1,2_0 +9280,1.0,1.0,73.0,400,71,71,0.0,6440,0.0,325.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1630.970939878591,0.0,0.0,25344.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16896.0,2,0,2_0,2_1 +9281,4.0,7.0,22.0,111,67,43,0.0,6442,0.0,0.0,200.0,385.0,1.0,2.0,0.0,1.0,1.0,3092.283858438528,0.0,0.0,18757.0,1,3,5,4.0,1,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,18757.0,3,0,3_0,3_0 +9282,3.0,3.0,62.0,400,77,41,0.0,6443,0.0,900.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2677.58644883449,0.0,0.0,17876.0,5,4,0,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,17876.0,2,0,2_0,2_1 +9283,0.0,0.0,28.0,120,48,50,0.0,6444,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3936.867775893223,0.0,0.0,28282.0,1,2,0,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15712.222222222223,2,0,2_0,2_0 +9284,5.0,15.0,86.0,112,62,71,0.0,6446,0.0,50.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2808.145672833507,0.0,0.0,24819.0,5,1,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16546.0,2,0,2_0,2_0 +9285,0.0,0.0,80.0,112,78,50,0.0,6447,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3370.176706162944,0.0,0.0,25520.0,5,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25520.0,4,0,4_0,4_1 +9286,0.0,0.0,61.0,111,75,50,1.0,6449,0.0,400.0,0.0,240.0,0.0,4.0,3.0,4.0,2.5,890.1150872564086,0.0,25994.0,37552.0,5,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,15020.8,2,0,2_1,2_0 +9287,0.0,21.0,42.0,211,52,50,0.0,645,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,753.7134366285206,0.0,0.0,19396.0,2,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,10775.555555555555,1,0,1_1,1_0 +9288,9.0,10.0,77.0,111,75,12,0.0,6450,0.0,60.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4188.397359795295,0.0,0.0,34528.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,34528.0,5,0,5,5_0 +9289,0.0,0.0,36.0,112,53,42,0.0,6452,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2376.7608932729,0.0,0.0,43844.0,1,4,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20878.095238095237,3,0,3_0,3_0 +9290,0.0,0.0,38.0,111,52,71,0.0,6453,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,842.040598463461,0.0,0.0,20208.0,1,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12630.0,1,0,1_1,1_0 +9291,6.0,42.0,70.0,111,78,71,0.0,6455,0.0,100.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2016.288965469617,2930.2,0.0,26146.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,17430.666666666668,2,0,2_0,2_0 +9292,11.0,11.0,37.0,400,65,50,0.0,6456,0.0,0.0,30.0,0.0,2.0,3.0,1.0,3.0,1.8,2388.525950901813,1485.12,0.0,35318.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19621.11111111111,3,0,3_0,3_1 +9293,4.0,10.0,54.0,111,54,50,0.0,6457,0.0,500.0,0.0,490.0,1.0,2.0,0.0,1.0,1.0,1901.5895201186904,0.0,0.0,20240.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20240.0,3,0,3_0,3_0 +9294,17.0,17.0,92.0,112,71,60,0.0,6458,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3541.5952886075606,0.0,0.0,9769.0,5,1,6,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,9769.0,1,0,1_0,1_0 +9295,2.0,2.0,65.0,211,72,42,0.0,6459,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1919.5050988022272,0.0,0.0,50270.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,33513.333333333336,5,0,5,5_0 +9296,4.0,4.0,48.0,112,38,12,0.0,646,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1835.6983467022721,2340.0,0.0,63290.0,1,2,7,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22603.57142857143,3,0,3_0,3_0 +9297,0.0,0.0,60.0,400,67,60,0.0,6460,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2148.9571538248415,1820.0,0.0,45251.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30167.333333333332,4,0,4_0,4_1 +9298,0.0,0.0,21.0,111,52,30,0.0,6461,0.0,0.0,0.0,176.0,1.0,2.0,0.0,1.0,1.0,3282.8292124847276,0.0,0.0,10739.0,3,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,10739.0,1,0,1_1,1_0 +9299,5.0,5.0,76.0,111,75,31,0.0,6463,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4667.6709662431385,0.0,0.0,25926.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,25926.0,4,0,4_0,4_0 +9300,3.0,3.0,79.0,111,86,71,0.0,6464,0.0,0.0,220.0,380.0,0.0,4.0,0.0,1.0,1.0,3003.8613064343635,0.0,0.0,15780.0,6,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,15780.0,2,0,2_0,2_0 +9301,0.0,0.0,42.0,112,65,31,0.0,6465,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,1.8,2077.02818529141,3135.6,0.0,60547.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33637.22222222222,5,0,5,5_1 +9302,0.0,0.0,54.0,111,34,10,0.0,6466,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,2160.3858582423327,3008.72,0.0,84828.0,1,1,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,42414.0,5,0,5,5_0 +9303,7.0,7.0,48.0,400,46,42,0.0,6467,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1760.8339265611291,0.0,0.0,38104.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25402.666666666668,4,0,4_0,4_1 +9304,1.0,15.0,55.0,111,54,60,2.0,6468,0.0,300.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,2434.9650689602836,5205.200000000001,2000.0,91958.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,36783.2,5,0,5,5_0 +9305,6.0,8.0,54.0,112,48,50,0.0,6469,0.0,99998.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1305.660724342942,0.0,0.0,55980.0,1,1,6,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,37320.0,5,0,5,5_1 +9306,0.0,0.0,90.0,400,78,70,0.0,647,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2751.2384652600604,0.0,0.0,15428.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15428.0,2,0,2_0,2_1 +9307,6.0,6.0,29.0,300,67,43,0.0,6471,0.0,350.0,0.0,640.0,2.0,4.0,2.0,4.0,2.1,2499.532764836762,3120.0,0.0,43739.0,1,3,0,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20828.095238095237,3,0,3_0,3_0 +9308,2.0,10.0,49.0,112,22,50,0.0,6472,0.0,0.0,30.0,0.0,1.0,3.0,1.0,2.0,1.5,5826.752276139807,0.0,0.0,17618.0,1,4,8,1.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,11745.333333333334,1,0,1_0,1_0 +9309,8.0,21.0,41.0,300,47,31,0.0,6473,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2420.9697678004513,2288.0,0.0,43670.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20795.238095238095,3,0,3_0,3_1 +9310,11.0,12.0,33.0,111,46,31,0.0,6476,0.0,0.0,250.0,1000.0,2.0,3.0,2.0,4.0,2.1,3275.3485395296134,2600.0,0.0,73020.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,34771.42857142857,5,0,5,5_0 +9311,6.0,6.0,40.0,211,68,71,0.0,6477,0.0,400.0,0.0,0.0,1.0,4.0,4.0,6.0,2.7,903.0291477169601,2599.48,0.0,34220.0,1,3,4,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,12674.074074074073,1,0,1_0,1_0 +9312,4.0,10.0,73.0,112,75,50,0.0,6479,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3065.2928375043184,0.0,0.0,33486.0,5,1,7,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,22324.0,3,0,3_0,3_1 +9313,7.0,14.0,37.0,111,56,60,0.0,648,0.0,0.0,0.0,135.0,1.0,4.0,4.0,5.0,2.6,858.8947713371085,0.0,0.0,17524.0,4,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,6740.0,1,0,1_1,1_0 +9314,1.0,14.0,45.0,112,45,60,2.0,6480,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3794.5368817788026,4255.68,800.0,51250.0,1,2,10,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,51250.0,5,0,5,5_0 +9315,0.0,0.0,42.0,111,47,50,0.0,6481,0.0,0.0,0.0,443.0,1.0,3.0,0.0,1.0,1.0,2965.221897403304,1497.6000000000001,0.0,23675.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23675.0,3,0,3_0,3_0 +9316,4.0,4.0,63.0,112,74,71,0.0,6482,0.0,1250.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2917.1335051917217,1884.48,0.0,25286.0,5,1,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,25286.0,4,0,4_0,4_1 +9317,1.0,1.0,32.0,111,37,33,1.0,6484,0.0,0.0,540.0,325.0,1.0,3.0,0.0,1.0,1.0,1715.0492631124855,0.0,8500.0,20069.0,4,3,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,20069.0,3,0,3_0,3_0 +9318,5.0,10.0,78.0,111,72,50,0.0,6485,0.0,0.0,0.0,1700.0,0.0,3.0,0.0,1.0,1.0,4350.458898068248,0.0,0.0,27564.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27564.0,4,0,4_0,4_0 +9319,0.0,0.0,50.0,111,52,30,0.0,6488,0.0,0.0,0.0,399.0,1.0,2.0,0.0,1.0,1.0,2771.0655077124447,0.0,0.0,23089.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23089.0,3,0,3_0,3_0 +9320,4.0,4.0,43.0,112,67,50,0.0,6491,0.0,0.0,99999.0,0.0,2.0,4.0,0.0,2.0,1.5,2934.6817169554593,0.0,0.0,48843.0,1,2,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,32562.0,5,0,5,5_1 +9321,16.0,16.0,86.0,300,78,70,0.0,6492,0.0,0.0,150.0,0.0,0.0,6.0,0.0,1.0,1.0,3360.2601291078295,0.0,0.0,17636.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17636.0,2,0,2_0,2_1 +9322,3.0,11.0,53.0,111,68,71,0.0,6493,0.0,99999.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1796.2240096727796,1560.0,0.0,37610.0,1,2,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25073.333333333332,4,0,4_0,4_0 +9323,11.0,12.0,31.0,221,43,50,0.0,6494,0.0,0.0,0.0,0.0,1.0,3.0,3.0,4.0,1.9,777.9009897532604,1058.2,0.0,25037.0,4,3,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,13177.368421052632,1,0,1_1,1_0 +9324,3.0,3.0,25.0,300,62,50,0.0,6497,0.0,70.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,4760.251696703429,1568.32,0.0,44970.0,1,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,29980.0,4,0,4_0,4_1 +9325,6.0,14.0,41.0,120,67,41,0.0,6499,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,2.4,1842.1667990424767,0.0,0.0,33129.0,1,2,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,13803.75,1,0,1_1,1_0 +9326,2.0,2.0,45.0,111,46,50,0.0,650,0.0,250.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,2727.489279586874,0.0,0.0,8200.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,6307.692307692308,1,0,1_0,1_0 +9327,4.0,15.0,55.0,111,52,31,0.0,6500,0.0,600.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1771.277183262936,0.0,0.0,24896.0,1,4,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,24896.0,4,0,4_0,4_0 +9328,2.0,3.0,41.0,111,46,50,0.0,6501,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,835.8205521046752,1820.0,0.0,19576.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13050.666666666666,1,0,1_0,1_0 +9329,11.0,14.0,43.0,111,55,43,0.0,6502,0.0,0.0,99999.0,327.0,1.0,2.0,0.0,1.0,1.0,3242.33658016657,0.0,0.0,36227.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,36227.0,5,0,5,5_0 +9330,7.0,7.0,81.0,221,78,50,0.0,6503,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1912.512404633945,0.0,0.0,30835.0,5,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20556.666666666668,3,0,3_0,3_0 +9331,4.0,4.0,51.0,111,85,71,0.0,6504,0.0,0.0,0.0,3.0,0.0,4.0,0.0,1.0,1.0,959.9912990351844,0.0,0.0,12795.0,7,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12795.0,1,0,1_1,1_0 +9332,6.0,7.0,49.0,111,52,50,0.0,6505,0.0,0.0,200.0,519.0,1.0,2.0,0.0,1.0,1.0,3407.887628311018,0.0,0.0,10402.0,4,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,10402.0,1,0,1_1,1_0 +9333,17.0,17.0,53.0,111,78,50,0.0,6507,0.0,10.0,0.0,31.0,1.0,3.0,1.0,2.0,1.5,2329.150548375856,0.0,0.0,11204.0,7,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,7469.333333333333,1,0,1_1,1_0 +9334,0.0,12.0,67.0,112,52,50,0.0,6508,0.0,800.0,200.0,0.0,2.0,6.0,0.0,2.0,1.5,1430.8177366533255,6497.4,0.0,61500.0,1,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,41000.0,5,0,5,5_1 +9335,0.0,0.0,41.0,400,63,41,0.0,6509,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1756.9653610917214,1040.0,0.0,49830.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23728.571428571428,3,0,3_0,3_0 +9336,6.0,6.0,51.0,111,56,60,0.0,651,0.0,0.0,0.0,0.0,3.0,4.0,4.0,5.0,2.8,840.3044190199084,0.0,0.0,22702.0,4,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,8107.857142857143,1,0,1_1,1_0 +9337,2.0,2.0,62.0,111,77,50,0.0,6510,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1831.4384021574633,2023.3200000000002,0.0,36390.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,24260.0,4,0,4_0,4_0 +9338,0.0,0.0,35.0,112,48,30,0.0,6512,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2635.202512372086,4930.12,0.0,66353.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31596.666666666664,4,0,4_0,4_1 +9339,1.0,1.0,60.0,112,11,71,1.0,6513,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3433.241919172564,0.0,17000.0,4522.0,1,1,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,4522.0,1,0,1_0,1_1 +9340,3.0,7.0,78.0,111,78,50,0.0,6514,0.0,0.0,0.0,604.0,0.0,4.0,0.0,2.0,1.5,2791.279153098413,0.0,0.0,24281.0,5,3,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,16187.333333333334,2,0,2_0,2_0 +9341,0.0,16.0,46.0,211,85,41,0.0,6515,0.0,300.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,847.3035886598356,0.0,0.0,22110.0,7,3,1,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,13818.75,1,0,1_1,1_0 +9342,0.0,3.0,61.0,211,21,60,2.0,6517,0.0,180.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1333.048307609569,0.0,6800.0,26256.0,1,1,2,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17504.0,2,0,2_0,2_0 +9343,2.0,3.0,44.0,111,47,31,0.0,6518,0.0,200.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2101.817081656473,0.0,0.0,43066.0,1,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18724.34782608696,3,0,3_0,3_0 +9344,0.0,0.0,57.0,221,68,71,0.0,6519,0.0,0.0,0.0,700.0,2.0,4.0,0.0,2.0,1.5,5695.487080133152,0.0,0.0,15920.0,1,3,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10613.333333333334,1,0,1_0,1_0 +9345,8.0,8.0,51.0,111,64,50,0.0,652,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1779.8616846844484,2805.4,0.0,41370.0,1,3,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,27580.0,4,0,4_0,4_0 +9346,0.0,0.0,24.0,120,65,50,0.0,6520,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2446.8327631166476,0.0,0.0,28575.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,13607.142857142857,1,0,1_1,1_1 +9347,8.0,8.0,43.0,120,47,43,0.0,6523,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1757.5601961901177,5200.52,0.0,47384.0,1,1,0,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18224.615384615383,2,0,2_0,2_0 +9348,6.0,13.0,47.0,111,52,42,0.0,6524,0.0,100.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4837.947924220404,0.0,0.0,28110.0,1,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28110.0,4,0,4_0,4_0 +9349,15.0,15.0,27.0,111,52,50,0.0,6525,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,4071.6352351612877,0.0,0.0,20877.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13918.0,2,0,2_1,2_0 +9350,0.0,0.0,61.0,111,38,12,0.0,6526,0.0,0.0,0.0,0.0,1.0,98.0,1.0,3.0,2.0,1987.2737759433612,0.0,0.0,50160.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,25080.0,4,0,4_0,4_0 +9351,0.0,0.0,70.0,400,78,60,0.0,6527,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2111.4871500724753,0.0,0.0,16046.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16046.0,2,0,2_0,2_1 +9352,2.0,6.0,27.0,112,38,12,0.0,6528,0.0,30.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,4255.274988064659,0.0,0.0,30980.0,1,3,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17211.11111111111,2,0,2_0,2_0 +9353,4.0,5.0,52.0,111,48,50,0.0,6529,0.0,0.0,30.0,0.0,2.0,5.0,0.0,2.0,1.5,1552.5053657579492,0.0,0.0,49448.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,32965.333333333336,5,0,5,5_0 +9354,5.0,5.0,48.0,111,38,30,0.0,6531,0.0,0.0,50.0,0.0,2.0,6.0,1.0,3.0,2.0,1540.2727993795208,5610.8,0.0,87034.0,1,1,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,43517.0,5,0,5,5_0 +9355,7.0,7.0,52.0,111,56,41,0.0,6532,0.0,0.0,0.0,9.0,1.0,3.0,2.0,3.0,2.0,583.5466397370947,0.0,0.0,17222.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,8611.0,1,0,1_1,1_0 +9356,3.0,25.0,73.0,111,78,60,0.0,6533,0.0,0.0,0.0,495.0,0.0,3.0,0.0,1.0,1.0,3959.866400227023,3120.0,0.0,19909.0,5,3,10,8.0,1,5.0,0.0,0.0,0,0,0,0,1,0,3.0,2.0,19909.0,3,0,3_0,3_0 +9357,0.0,4.0,74.0,111,77,71,2.0,6534,0.0,600.0,0.0,200.0,0.0,3.0,0.0,1.0,1.0,2462.6188229425275,1040.0,11000.0,13184.0,5,3,5,4.0,1,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,13184.0,1,0,1_1,1_0 +9358,1.0,3.0,46.0,400,64,50,2.0,6536,0.0,0.0,45.0,296.0,2.0,5.0,3.0,5.0,3.0,2125.409181389795,3226.08,8300.0,34212.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,11404.0,1,0,1_1,1_1 +9359,1.0,5.0,36.0,111,38,12,0.0,6537,0.0,455.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5028.325250596903,0.0,0.0,55569.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,55569.0,5,0,5,5_0 +9360,8.0,13.0,68.0,112,21,50,0.0,6538,0.0,0.0,70.0,0.0,1.0,4.0,0.0,2.0,1.5,1588.1520610811056,0.0,0.0,21472.0,5,2,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14314.666666666666,2,0,2_0,2_1 +9361,2.0,2.0,73.0,111,74,20,0.0,654,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3444.774497860728,4146.48,0.0,104852.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,69901.33333333333,5,0,5,5_0 +9362,21.0,21.0,34.0,111,52,30,0.0,6540,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,801.3966847228036,0.0,0.0,20744.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12965.0,1,0,1_1,1_0 +9363,5.0,15.0,73.0,111,74,31,0.0,6542,0.0,250.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4078.927940358464,0.0,0.0,36569.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,36569.0,5,0,5,5_0 +9364,6.0,10.0,55.0,111,37,60,0.0,6543,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,1688.498789014269,0.0,0.0,90593.0,1,2,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,45296.5,5,0,5,5_0 +9365,0.0,6.0,50.0,111,45,31,2.0,6544,0.0,0.0,99999.0,290.0,1.0,1.0,0.0,1.0,1.0,2265.7601906070518,0.0,2000.0,37823.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,37823.0,5,0,5,5_0 +9366,1.0,2.0,65.0,112,75,42,2.0,6545,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1918.9444886826834,0.0,21000.0,29800.0,5,1,6,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19866.666666666668,3,0,3_0,3_0 +9367,3.0,12.0,50.0,112,52,50,0.0,6546,0.0,0.0,100.0,0.0,1.0,3.0,0.0,1.0,1.0,2212.400432313477,2301.0,0.0,25204.0,1,2,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,25204.0,4,0,4_0,4_1 +9368,5.0,6.0,37.0,111,64,50,0.0,6547,0.0,0.0,550.0,389.0,2.0,4.0,2.0,4.0,2.3,2689.797525365914,1040.0,0.0,43682.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18992.17391304348,3,0,3_0,3_0 +9369,12.0,13.0,49.0,221,55,42,0.0,6548,0.0,0.0,0.0,0.0,2.0,4.0,3.0,4.0,2.3,324.22654433356354,0.0,0.0,44779.0,1,2,1,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,19469.13043478261,3,0,3_1,3_0 +9370,1.0,1.0,51.0,211,62,50,2.0,6549,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.3,1754.5115108049495,0.0,1800.0,62781.0,1,2,3,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27296.08695652174,4,0,4_0,4_0 +9371,4.0,7.0,51.0,111,85,50,0.0,655,0.0,200.0,0.0,303.0,0.0,2.0,0.0,1.0,1.0,3231.6716510190186,0.0,0.0,14236.0,8,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14236.0,2,0,2_1,2_0 +9372,0.0,2.0,44.0,120,54,31,0.0,6550,0.0,500.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,627.3035572180727,0.0,0.0,24247.0,1,2,0,0.0,2,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,18651.53846153846,2,0,2_0,2_1 +9373,2.0,5.0,63.0,112,34,10,0.0,6552,0.0,120.0,150.0,0.0,2.0,10.0,0.0,2.0,1.5,1486.9380184956328,0.0,0.0,115948.0,1,1,8,1.0,3,3.0,0.0,1.0,0,1,0,0,0,0,1.0,2.0,77298.66666666667,5,0,5,5_0 +9374,2.0,2.0,20.0,400,52,50,0.0,6553,0.0,350.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2138.5480004706014,1040.0,0.0,28954.0,1,3,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,19302.666666666668,3,0,3_1,3_0 +9375,8.0,8.0,69.0,112,75,50,0.0,6554,0.0,50.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2134.8036778348423,0.0,0.0,39439.0,5,1,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,26292.666666666668,4,0,4_0,4_0 +9376,5.0,5.0,30.0,111,63,50,0.0,6555,0.0,250.0,150.0,0.0,2.0,5.0,1.0,3.0,1.8,2199.493143872474,0.0,0.0,37900.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21055.555555555555,3,0,3_0,3_0 +9377,0.0,0.0,30.0,111,85,71,0.0,6559,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,1841.6437661525733,0.0,0.0,1700.0,8,4,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,1307.6923076923076,1,0,1_0,1_0 +9378,0.0,0.0,55.0,111,64,50,0.0,6560,0.0,0.0,0.0,50.0,1.0,4.0,0.0,1.0,1.0,3246.1830887872507,0.0,0.0,9214.0,4,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9214.0,1,0,1_1,1_0 +9379,0.0,0.0,26.0,112,63,50,0.0,6562,0.0,0.0,0.0,600.0,2.0,3.0,0.0,2.0,1.5,3629.1068220959082,2756.0,0.0,34182.0,1,3,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22788.0,3,0,3_0,3_1 +9380,1.0,9.0,29.0,111,52,44,2.0,6563,0.0,0.0,364.0,321.0,1.0,3.0,2.0,3.0,1.6,767.1004395717148,0.0,7000.0,28630.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,17893.75,2,0,2_1,2_0 +9381,1.0,4.0,57.0,112,13,50,2.0,6564,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2794.2384110475696,0.0,16400.0,26447.0,1,4,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17631.333333333332,2,0,2_0,2_1 +9382,8.0,8.0,46.0,111,21,31,0.0,6565,0.0,0.0,210.0,0.0,1.0,4.0,2.0,3.0,1.6,2104.3738594766387,0.0,0.0,28035.0,1,2,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17521.875,2,0,2_0,2_0 +9383,0.0,0.0,62.0,111,77,41,0.0,6566,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1778.9463715635181,0.0,0.0,42350.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28233.333333333332,4,0,4_0,4_0 +9384,1.0,1.0,33.0,400,68,43,0.0,6567,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1697.2532674668425,2796.56,0.0,37975.0,4,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15822.916666666668,2,0,2_0,2_1 +9385,2.0,8.0,26.0,111,62,50,0.0,6568,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,3638.6398714247707,1040.0,0.0,27111.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12910.0,1,0,1_1,1_0 +9386,27.0,27.0,55.0,111,65,41,0.0,6569,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,559.1554243820976,0.0,0.0,24510.0,1,1,6,4.0,4,4.0,0.0,0.0,0,0,1,0,0,0,2.0,2.0,10656.521739130436,1,0,1_0,1_0 +9387,0.0,0.0,27.0,111,55,50,0.0,657,0.0,0.0,0.0,366.0,1.0,2.0,0.0,1.0,1.0,4661.555157846675,0.0,0.0,17981.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17981.0,2,0,2_0,2_0 +9388,0.0,14.0,60.0,112,13,31,0.0,6570,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2714.2528002724525,2355.08,0.0,35822.0,1,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23881.333333333332,4,0,4_0,4_1 +9389,1.0,13.0,73.0,300,77,50,2.0,6573,0.0,1300.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1813.5872287484249,0.0,2500.0,20718.0,5,1,0,0.0,1,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,20718.0,3,0,3_0,3_1 +9390,11.0,11.0,54.0,111,68,71,0.0,6574,0.0,0.0,99999.0,0.0,1.0,1.0,0.0,1.0,1.0,4952.7019747996965,0.0,0.0,0.0,4,4,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,0.0,1,0,1_0,1_0 +9391,0.0,0.0,62.0,111,68,70,0.0,6575,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,674.0056322912144,0.0,0.0,25484.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16989.333333333332,2,0,2_0,2_0 +9392,3.0,4.0,44.0,111,46,31,0.0,6577,0.0,60.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2823.4466070873445,0.0,0.0,49896.0,1,2,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,49896.0,5,0,5,5_0 +9393,0.0,0.0,51.0,112,47,31,0.0,6578,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2201.759035389378,6284.200000000001,0.0,67751.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27100.4,4,0,4_0,4_1 +9394,12.0,12.0,49.0,111,54,43,0.0,6579,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,2317.2047028476895,1404.0,0.0,28641.0,4,1,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14320.5,2,0,2_0,2_0 +9395,5.0,23.0,76.0,112,78,71,0.0,658,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2733.7551559204317,0.0,0.0,31359.0,5,4,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20906.0,3,0,3_0,3_0 +9396,1.0,13.0,48.0,112,48,31,2.0,6581,0.0,0.0,800.0,0.0,2.0,8.0,1.0,3.0,2.0,2299.967218891929,1040.0,750.0,57846.0,1,1,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,28923.0,4,0,4_0,4_1 +9397,0.0,0.0,31.0,112,54,30,0.0,6584,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3221.5306960501,0.0,0.0,45610.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25338.888888888887,4,0,4_0,4_1 +9398,2.0,2.0,44.0,120,37,31,0.0,6588,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1648.4974793461404,1511.6399999999999,0.0,80645.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,32258.0,5,0,5,5_1 +9399,21.0,21.0,73.0,400,78,70,0.0,6589,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1647.416755951236,0.0,0.0,29385.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19590.0,3,0,3_0,3_1 +9400,0.0,0.0,56.0,120,78,50,1.0,659,0.0,250.0,0.0,0.0,0.0,4.0,3.0,5.0,2.8,1620.7116589254354,0.0,13400.0,22020.0,7,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,7864.285714285715,1,0,1_1,1_1 +9401,5.0,5.0,27.0,111,55,50,0.0,6590,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,1709.1772211846462,0.0,0.0,31796.0,1,3,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,16734.736842105263,2,0,2_1,2_0 +9402,0.0,0.0,46.0,111,38,20,0.0,6591,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2036.4711608643775,0.0,0.0,97005.0,1,2,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,64670.0,5,0,5,5_0 +9403,0.0,0.0,65.0,400,74,71,0.0,6594,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1915.2448555655642,0.0,0.0,19830.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13220.0,1,0,1_0,1_1 +9404,1.0,12.0,30.0,111,37,20,2.0,6596,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3522.3841262665796,0.0,13000.0,64620.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,43080.0,5,0,5,5_0 +9405,1.0,4.0,82.0,112,77,60,2.0,6597,0.0,0.0,30.0,0.0,1.0,5.0,1.0,3.0,2.0,4934.246012046983,2537.6,9000.0,59514.0,5,1,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,29757.0,4,0,4_0,4_0 +9406,13.0,13.0,55.0,111,37,10,0.0,6598,0.0,0.0,0.0,0.0,4.0,6.0,2.0,4.0,2.5,2085.693794319683,0.0,0.0,111237.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,44494.8,5,0,5,5_0 +9407,0.0,0.0,63.0,111,74,42,1.0,6599,0.0,200.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2298.355517355339,0.0,30000.0,28646.0,5,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28646.0,4,0,4_0,4_0 +9408,1.0,16.0,63.0,221,75,50,2.0,66,0.0,0.0,199998.0,0.0,0.0,5.0,0.0,2.0,1.5,1391.8790322186903,2860.0,1000.0,40380.0,5,1,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,26920.0,4,0,4_0,4_0 +9409,20.0,20.0,43.0,221,31,12,0.0,660,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3510.199691844312,0.0,0.0,100298.0,1,1,1,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,43607.82608695653,5,0,5,5_0 +9410,3.0,3.0,51.0,111,38,12,0.0,6600,0.0,0.0,199998.0,0.0,2.0,5.0,1.0,3.0,1.8,1449.4033019626715,2341.56,0.0,87270.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,48483.333333333336,5,0,5,5_0 +9411,1.0,12.0,70.0,111,71,50,2.0,6602,0.0,250.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1148.9210455801724,0.0,2800.0,24120.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,16080.0,2,0,2_0,2_0 +9412,8.0,14.0,44.0,111,37,20,0.0,6603,0.0,0.0,0.0,633.0,1.0,2.0,0.0,1.0,1.0,3507.2090971643834,0.0,0.0,60574.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,60574.0,5,0,5,5_0 +9413,4.0,6.0,57.0,111,77,60,0.0,6604,0.0,0.0,0.0,278.0,0.0,1.0,0.0,1.0,1.0,4304.660140617914,0.0,0.0,10890.0,7,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,10890.0,1,0,1_0,1_0 +9414,0.0,0.0,46.0,112,56,50,0.0,6606,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1845.0936995018078,2052.96,0.0,39609.0,4,1,10,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,17221.304347826088,2,0,2_0,2_0 +9415,0.0,0.0,86.0,112,74,50,0.0,661,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2705.581752067387,0.0,0.0,54583.0,5,1,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27291.5,4,0,4_0,4_0 +9416,0.0,0.0,39.0,111,42,20,0.0,6610,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,1706.6292610600226,1008.8000000000001,0.0,62838.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25135.2,4,0,4_0,4_0 +9417,0.0,0.0,58.0,300,64,50,0.0,6611,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2246.6834080728595,7950.799999999999,0.0,48629.0,7,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32419.333333333332,5,0,5,5_1 +9418,1.0,18.0,45.0,400,56,50,2.0,6612,0.0,0.0,40.0,0.0,1.0,5.0,0.0,1.0,1.0,3127.959070898794,0.0,2000.0,12304.0,1,1,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,12304.0,1,0,1_0,1_0 +9419,3.0,5.0,56.0,112,54,42,0.0,6613,0.0,199998.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2654.9084188506927,0.0,0.0,24095.0,1,2,8,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24095.0,4,0,4_0,4_1 +9420,7.0,14.0,67.0,111,42,41,0.0,6616,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2114.627019678855,0.0,0.0,37118.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,24745.333333333332,4,0,4_0,4_0 +9421,0.0,0.0,45.0,111,56,50,0.0,6617,0.0,0.0,0.0,51.0,2.0,3.0,2.0,3.0,2.0,958.2164740062973,0.0,0.0,23802.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11901.0,1,0,1_1,1_0 +9422,4.0,5.0,32.0,112,42,60,0.0,6618,0.0,20.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,871.769845425475,0.0,0.0,24444.0,1,3,10,2.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,18803.076923076922,3,0,3_1,3_0 +9423,2.0,19.0,79.0,211,86,71,0.0,6619,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1544.9336153627378,0.0,0.0,35453.0,6,4,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,35453.0,5,0,5,5_0 +9424,0.0,7.0,51.0,111,85,71,2.0,662,0.0,0.0,0.0,44.0,0.0,3.0,0.0,1.0,1.0,3088.3075844325676,1040.0,1500.0,12775.0,7,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,12775.0,1,0,1_1,1_0 +9425,2.0,7.0,67.0,111,77,71,0.0,6621,0.0,28.0,0.0,0.0,2.0,6.0,0.0,3.0,2.0,1971.9958668663444,0.0,0.0,32020.0,5,1,7,5.0,5,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16010.0,2,0,2_0,2_0 +9426,2.0,4.0,84.0,111,78,50,0.0,6622,0.0,520.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1712.4688312544706,2187.12,0.0,42363.0,5,1,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,28242.0,4,0,4_0,4_0 +9427,16.0,18.0,61.0,120,72,71,0.0,6623,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2910.281550105241,0.0,0.0,67377.0,5,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,26950.8,4,0,4_0,4_1 +9428,1.0,1.0,63.0,111,74,50,1.0,6625,0.0,0.0,0.0,270.0,0.0,3.0,0.0,2.0,1.5,2541.9663834348153,2080.0,11000.0,44586.0,5,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29724.0,4,0,4_0,4_0 +9429,0.0,0.0,45.0,111,62,50,1.0,6626,0.0,0.0,0.0,0.0,3.0,4.0,3.0,5.0,2.6,1516.2007899189598,3380.0,31349.0,71345.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,27440.384615384613,4,0,4_0,4_0 +9430,0.0,0.0,27.0,111,54,42,1.0,6627,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,711.026102408628,1040.0,27000.0,12100.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12100.0,1,0,1_1,1_0 +9431,10.0,10.0,62.0,400,75,50,0.0,6628,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1844.8824610932502,5235.88,0.0,38363.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25575.333333333332,4,0,4_0,4_1 +9432,2.0,2.0,63.0,300,77,70,0.0,6629,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1987.566566177065,2173.6,0.0,35871.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,23914.0,4,0,4_0,4_1 +9433,3.0,8.0,81.0,111,75,41,0.0,663,0.0,160.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2396.925162835563,0.0,0.0,37599.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,37599.0,5,0,5,5_0 +9434,0.0,11.0,39.0,112,46,30,0.0,6631,0.0,0.0,0.0,400.0,2.0,3.0,0.0,2.0,1.5,2380.5629295353283,2535.0,0.0,46846.0,1,3,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,31230.666666666668,4,0,4_0,4_0 +9435,5.0,8.0,54.0,111,46,50,0.0,6632,0.0,600.0,0.0,1024.0,1.0,4.0,0.0,1.0,1.0,2910.0340634317404,0.0,0.0,14988.0,1,3,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,14988.0,2,0,2_0,2_0 +9436,0.0,0.0,62.0,111,78,50,0.0,6633,0.0,0.0,0.0,0.0,1.0,4.0,0.0,3.0,2.0,3751.396744444791,3700.84,0.0,23784.0,5,1,8,6.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11892.0,1,0,1_0,1_0 +9437,1.0,1.0,46.0,111,85,71,2.0,6634,0.0,0.0,182.0,0.0,0.0,2.0,0.0,1.0,1.0,4240.617940512734,0.0,9400.0,25156.0,7,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,25156.0,4,0,4_1,4_0 +9438,0.0,0.0,75.0,300,74,60,1.0,6636,0.0,0.0,250.0,0.0,0.0,5.0,0.0,2.0,1.5,1836.4091322388786,0.0,6800.0,34189.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,22792.666666666668,3,0,3_0,3_1 +9439,5.0,6.0,54.0,111,46,60,0.0,6637,0.0,0.0,100.0,0.0,3.0,5.0,1.0,3.0,2.0,2180.4498827516304,3245.84,0.0,68940.0,1,1,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,34470.0,5,0,5,5_0 +9440,0.0,12.0,69.0,111,77,31,0.0,6638,0.0,0.0,0.0,293.0,0.0,1.0,0.0,1.0,1.0,2629.1529130781296,0.0,0.0,11776.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,11776.0,1,0,1_0,1_0 +9441,10.0,18.0,37.0,111,67,31,0.0,6639,0.0,0.0,50.0,0.0,2.0,6.0,2.0,4.0,2.1,1820.8887833004428,0.0,0.0,44841.0,1,2,8,7.0,4,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,21352.85714285714,3,0,3_0,3_0 +9442,14.0,14.0,53.0,300,62,60,0.0,6643,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,2229.635422423376,2214.16,0.0,37962.0,1,1,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18981.0,3,0,3_0,3_1 +9443,1.0,1.0,54.0,112,48,50,0.0,6644,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1704.105520790182,0.0,0.0,25237.0,1,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16824.666666666668,2,0,2_0,2_1 +9444,8.0,8.0,43.0,211,34,30,0.0,6645,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.6,1473.1329669300483,5042.96,0.0,61529.0,1,2,2,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,23665.0,3,0,3_0,3_0 +9445,6.0,11.0,37.0,112,64,50,0.0,6646,0.0,368.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2210.1125313585553,1823.6399999999999,0.0,37963.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18077.619047619046,2,0,2_0,2_1 +9446,0.0,0.0,78.0,111,56,71,0.0,6647,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2603.635469344217,0.0,0.0,18462.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18462.0,2,0,2_0,2_0 +9447,3.0,13.0,52.0,300,55,60,0.0,6648,0.0,25.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,2378.1684872375295,8320.0,0.0,32831.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13132.4,1,0,1_0,1_1 +9448,0.0,0.0,81.0,112,74,30,0.0,6650,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2161.117913801782,1772.1599999999999,0.0,47071.0,5,1,7,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31380.666666666668,4,0,4_0,4_0 +9449,0.0,0.0,79.0,111,74,41,0.0,6652,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2205.638532367614,0.0,0.0,31620.0,5,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21080.0,3,0,3_0,3_0 +9450,0.0,0.0,52.0,111,63,50,0.0,6653,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2127.265524456114,0.0,0.0,16606.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,8303.0,1,0,1_1,1_0 +9451,0.0,0.0,54.0,111,52,50,1.0,6656,0.0,250.0,0.0,627.0,1.0,4.0,0.0,2.0,1.5,2614.4756200927113,2124.2000000000003,31200.0,35520.0,1,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23680.0,3,0,3_0,3_0 +9452,1.0,5.0,32.0,112,56,71,0.0,6657,0.0,20.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,905.4081668540382,0.0,0.0,9596.0,1,3,9,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,7381.538461538461,1,0,1_1,1_0 +9453,2.0,2.0,61.0,400,74,70,0.0,6659,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3644.0697203122545,0.0,0.0,35660.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,35660.0,5,0,5,5_1 +9454,3.0,3.0,45.0,111,46,30,0.0,666,0.0,40.0,0.0,336.0,1.0,3.0,1.0,3.0,1.6,1304.8018110970281,0.0,0.0,37847.0,1,3,6,5.0,5,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,23654.375,3,0,3_0,3_0 +9455,7.0,7.0,47.0,111,52,50,0.0,6661,0.0,30.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1589.8595293011965,0.0,0.0,21724.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14482.666666666666,2,0,2_1,2_0 +9456,5.0,5.0,61.0,111,78,31,0.0,6663,150.0,100.0,0.0,0.0,0.0,1.0,1.0,3.0,1.8,4210.324142149393,0.0,0.0,10402.0,7,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,5778.888888888889,1,0,1_1,1_0 +9457,2.0,2.0,64.0,112,75,50,0.0,6665,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,1.0,1.0,2156.84149243524,0.0,0.0,13943.0,5,3,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,13943.0,2,0,2_0,2_1 +9458,0.0,19.0,74.0,221,77,70,0.0,6666,0.0,0.0,0.0,478.0,0.0,4.0,0.0,1.0,1.0,1882.5430675699424,1040.0,0.0,14290.0,5,3,1,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,14290.0,2,0,2_0,2_0 +9459,2.0,6.0,55.0,111,63,71,0.0,6667,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1468.868030513135,2184.0,0.0,39494.0,1,1,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19747.0,3,0,3_0,3_0 +9460,0.0,0.0,51.0,212,67,71,0.0,6668,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1748.7508968046775,1612.0,0.0,51397.0,1,1,2,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20558.8,3,0,3_0,3_1 +9461,6.0,6.0,19.0,111,84,41,0.0,6669,0.0,0.0,210.0,0.0,0.0,1.0,0.0,1.0,1.0,2429.112949698583,0.0,0.0,6806.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,6806.0,1,0,1_1,1_0 +9462,6.0,12.0,40.0,111,34,10,0.0,667,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,1.9,3628.7021798895726,3952.0,0.0,192865.0,1,2,10,8.0,2,3.0,0.0,0.0,0,0,0,0,1,0,2.0,1.0,101507.8947368421,5,0,5,5_0 +9463,0.0,0.0,79.0,120,74,30,0.0,6672,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2838.1569183681454,2251.6,0.0,43781.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,43781.0,5,0,5,5_1 +9464,2.0,2.0,57.0,300,37,31,0.0,6673,0.0,300.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1732.8365740360632,0.0,0.0,80362.0,1,1,0,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,53574.666666666664,5,0,5,5_0 +9465,3.0,3.0,55.0,111,48,50,0.0,6675,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1989.850751183481,0.0,0.0,54774.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30430.0,4,0,4_0,4_0 +9466,0.0,0.0,30.0,111,21,44,0.0,6676,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,1422.97656194262,0.0,0.0,21211.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,11783.888888888889,1,0,1_0,1_0 +9467,4.0,5.0,22.0,111,56,43,0.0,6677,0.0,150.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5182.248819470193,0.0,0.0,17487.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,1,0.0,1.0,17487.0,2,0,2_1,2_0 +9468,0.0,0.0,36.0,111,34,20,0.0,6678,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1849.1786013065055,0.0,0.0,32620.0,1,2,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32620.0,5,0,5,5_0 +9469,1.0,8.0,82.0,111,78,70,0.0,6679,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2032.5664876808496,1144.0,0.0,34118.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22745.333333333332,3,0,3_0,3_0 +9470,1.0,9.0,37.0,111,67,20,2.0,668,0.0,0.0,0.0,628.0,1.0,3.0,0.0,2.0,1.5,2597.03881305494,0.0,3000.0,34311.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22874.0,3,0,3_0,3_0 +9471,1.0,1.0,33.0,300,62,43,1.0,6680,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2253.2746338709217,2600.52,15000.0,34945.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,14560.416666666668,2,0,2_1,2_1 +9472,1.0,1.0,86.0,111,77,71,1.0,6681,0.0,0.0,0.0,519.0,0.0,3.0,0.0,1.0,1.0,3092.07317262734,0.0,10000.0,15663.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15663.0,2,0,2_0,2_0 +9473,0.0,4.0,61.0,400,75,50,0.0,6682,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2125.2671481378748,2236.0,0.0,38469.0,5,1,0,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,25646.0,4,0,4_0,4_1 +9474,7.0,12.0,33.0,111,38,12,0.0,6683,0.0,0.0,220.0,0.0,2.0,4.0,0.0,2.0,1.5,1880.1468482333541,0.0,0.0,71860.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,47906.666666666664,5,0,5,5_0 +9475,4.0,4.0,75.0,111,78,50,0.0,6684,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1699.7822700950114,2065.96,0.0,29786.0,5,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19857.333333333332,3,0,3_0,3_0 +9476,3.0,3.0,74.0,120,78,70,0.0,6685,0.0,125.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2338.1255851682745,0.0,0.0,16860.0,5,1,0,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,16860.0,2,0,2_0,2_0 +9477,0.0,10.0,80.0,111,78,71,0.0,6686,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2492.214348984855,1847.0400000000002,0.0,23514.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15676.0,2,0,2_0,2_0 +9478,0.0,0.0,34.0,112,37,31,0.0,6688,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,4225.0669570741975,3120.0,0.0,64740.0,1,2,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,35966.666666666664,5,0,5,5_0 +9479,0.0,0.0,49.0,111,65,71,0.0,6689,0.0,0.0,0.0,280.0,2.0,3.0,0.0,2.0,1.5,3092.791669758706,2600.0,0.0,25926.0,4,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17284.0,2,0,2_0,2_0 +9480,2.0,19.0,53.0,111,56,50,0.0,669,0.0,600.0,800.0,123.0,1.0,3.0,1.0,2.0,1.3,719.859531584012,0.0,0.0,20242.0,1,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,15570.76923076923,2,0,2_1,2_0 +9481,9.0,12.0,90.0,211,72,41,0.0,6690,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2315.8459425771384,0.0,0.0,44061.0,5,1,1,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,29374.0,4,0,4_0,4_0 +9482,1.0,17.0,38.0,111,45,44,0.0,6691,0.0,0.0,0.0,528.0,2.0,3.0,0.0,2.0,1.5,3189.0402506525875,0.0,0.0,34380.0,1,3,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22920.0,3,0,3_0,3_0 +9483,6.0,16.0,57.0,112,46,50,0.0,6692,0.0,0.0,1260.0,0.0,1.0,3.0,0.0,2.0,1.5,3359.6535082816335,0.0,0.0,52040.0,1,1,8,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,34693.333333333336,5,0,5,5_1 +9484,0.0,0.0,57.0,111,31,30,0.0,6693,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,4114.288924260069,1043.64,0.0,33036.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22024.0,3,0,3_0,3_0 +9485,0.0,11.0,73.0,111,77,71,0.0,6694,0.0,600.0,0.0,393.0,0.0,2.0,0.0,2.0,1.5,4088.943592609891,0.0,0.0,30670.0,5,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,20446.666666666668,3,0,3_0,3_0 +9486,4.0,4.0,52.0,112,45,31,0.0,6695,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1557.8865301252954,952.1199999999999,0.0,61013.0,1,2,8,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,40675.333333333336,5,0,5,5_0 +9487,0.0,0.0,51.0,111,54,60,0.0,6696,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,3717.172996843693,3640.0,0.0,49480.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,24740.0,4,0,4_0,4_0 +9488,1.0,11.0,56.0,111,56,70,2.0,6698,0.0,99999.0,0.0,323.0,1.0,3.0,1.0,2.0,1.5,3097.9660250514794,0.0,5500.0,18484.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,12322.666666666666,1,0,1_1,1_0 +9489,6.0,6.0,59.0,300,54,42,0.0,67,0.0,500.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1747.4193348393649,5930.6,0.0,43172.0,1,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,28781.333333333332,4,0,4_0,4_0 +9490,7.0,12.0,51.0,300,45,50,0.0,670,0.0,0.0,600.0,0.0,2.0,7.0,0.0,2.0,1.5,1624.2250155627908,2720.12,0.0,50730.0,1,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,33820.0,5,0,5,5_0 +9491,0.0,0.0,42.0,300,37,33,0.0,6700,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2070.292902167709,1990.56,0.0,49659.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33106.0,5,0,5,5_1 +9492,5.0,5.0,78.0,111,74,60,0.0,6701,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2656.747449172824,0.0,0.0,68760.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,68760.0,5,0,5,5_0 +9493,8.0,8.0,77.0,112,77,70,0.0,6702,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2073.9441713288124,1768.0,0.0,41967.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27978.0,4,0,4_0,4_0 +9494,10.0,11.0,87.0,111,72,71,0.0,6703,0.0,0.0,300.0,0.0,0.0,2.0,0.0,2.0,1.5,2317.1084833151394,0.0,0.0,27184.0,5,3,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,18122.666666666668,2,0,2_0,2_0 +9495,2.0,9.0,49.0,111,52,71,0.0,6705,0.0,0.0,0.0,262.0,1.0,3.0,1.0,2.0,1.5,2819.1047624206085,202.79999999999998,0.0,12555.0,1,3,5,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,8370.0,1,0,1_0,1_0 +9496,11.0,11.0,55.0,111,42,31,0.0,6706,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1365.3383174923865,0.0,0.0,20974.0,1,2,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20974.0,3,0,3_0,3_0 +9497,1.0,2.0,48.0,111,48,50,2.0,6707,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.3,538.4063989475268,2246.4,10700.0,65998.0,1,2,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28694.782608695656,4,0,4_0,4_0 +9498,3.0,5.0,77.0,112,86,71,0.0,6708,0.0,100.0,150.0,700.0,0.0,2.0,0.0,1.0,1.0,1728.6262030375808,0.0,0.0,25090.0,6,3,9,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,25090.0,4,0,4_0,4_0 +9499,17.0,17.0,62.0,111,78,70,0.0,6709,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1725.6808301644724,0.0,0.0,27734.0,5,2,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18489.333333333332,2,0,2_0,2_0 +9500,0.0,0.0,69.0,111,77,50,0.0,671,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1850.578194851091,0.0,0.0,25171.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25171.0,4,0,4_0,4_0 +9501,6.0,15.0,37.0,111,21,71,0.0,6710,0.0,0.0,0.0,0.0,1.0,5.0,4.0,5.0,2.6,836.5516161822864,2080.52,0.0,42842.0,4,3,4,4.0,2,2.0,1.0,0.0,0,0,1,0,0,1,0.0,2.0,16477.69230769231,2,0,2_1,2_0 +9502,0.0,0.0,26.0,111,34,20,0.0,6711,0.0,0.0,0.0,251.0,1.0,1.0,0.0,1.0,1.0,4710.929228257046,0.0,0.0,37158.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,37158.0,5,0,5,5_0 +9503,7.0,8.0,45.0,111,35,31,0.0,6712,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2544.9069105058497,280.8,0.0,128225.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,61059.52380952381,5,0,5,5_0 +9504,0.0,0.0,34.0,111,21,43,0.0,6713,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2822.1500547023625,2860.0,0.0,37838.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25225.333333333332,4,0,4_0,4_0 +9505,0.0,0.0,70.0,111,74,41,0.0,6714,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1761.484013759087,0.0,0.0,47561.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31707.333333333332,4,0,4_0,4_0 +9506,0.0,4.0,76.0,112,78,70,0.0,6716,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2119.1708056970574,0.0,0.0,29294.0,5,1,8,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19529.333333333332,3,0,3_0,3_0 +9507,0.0,0.0,68.0,212,78,50,0.0,6717,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1913.4715131119551,0.0,0.0,29053.0,5,2,1,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19368.666666666668,3,0,3_0,3_1 +9508,2.0,3.0,66.0,112,77,50,0.0,6718,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1632.9128921408167,0.0,0.0,36290.0,5,1,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24193.333333333332,4,0,4_0,4_0 +9509,2.0,6.0,59.0,111,69,71,0.0,6719,0.0,0.0,80.0,297.0,1.0,3.0,0.0,2.0,1.5,2945.575200818917,1563.64,0.0,12720.0,4,3,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,8480.0,1,0,1_0,1_0 +9510,10.0,13.0,59.0,111,62,50,0.0,672,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,332.73957975638984,1560.0,0.0,40520.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,20260.0,3,0,3_0,3_0 +9511,0.0,0.0,62.0,112,43,33,0.0,6720,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2037.0903257918555,3017.04,0.0,63544.0,1,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,42362.666666666664,5,0,5,5_1 +9512,0.0,0.0,32.0,111,63,43,0.0,6722,0.0,0.0,0.0,389.0,2.0,3.0,1.0,3.0,1.8,4407.95209285458,0.0,0.0,34575.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19208.333333333332,3,0,3_0,3_0 +9513,11.0,11.0,41.0,300,46,50,0.0,6723,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,386.5019312674565,0.0,0.0,21001.0,4,2,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16154.615384615385,2,0,2_0,2_1 +9514,8.0,9.0,91.0,111,86,60,0.0,6724,0.0,99999.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2274.785943951234,2600.0,0.0,20220.0,6,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,20220.0,3,0,3_0,3_0 +9515,10.0,13.0,62.0,112,56,60,0.0,6725,0.0,100029.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2454.108803870155,0.0,0.0,18977.0,1,1,8,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18977.0,3,0,3_0,3_0 +9516,26.0,26.0,38.0,111,52,71,0.0,6726,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,1594.2888370340713,1040.0,0.0,25738.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11190.434782608696,1,0,1_1,1_0 +9517,0.0,24.0,57.0,111,37,12,0.0,6728,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2469.6095924742594,0.0,0.0,73798.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29519.2,4,0,4_0,4_0 +9518,10.0,14.0,56.0,111,37,31,0.0,6729,0.0,0.0,77.0,0.0,2.0,5.0,0.0,2.0,1.5,2439.1619707125606,871.0,0.0,305792.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,203861.33333333334,5,0,5,5_0 +9519,3.0,3.0,30.0,112,54,31,0.0,673,0.0,420.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3160.4928860224104,2808.0,0.0,54767.0,1,4,8,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,30426.11111111111,4,0,4_0,4_0 +9520,10.0,10.0,67.0,112,54,50,0.0,6731,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1531.993451502259,0.0,0.0,19520.0,1,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,19520.0,3,0,3_0,3_1 +9521,0.0,0.0,81.0,300,78,71,0.0,6734,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3700.4954411848403,1589.64,0.0,29570.0,5,4,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19713.333333333332,3,0,3_0,3_1 +9522,0.0,11.0,70.0,111,77,71,0.0,6736,0.0,40.0,80.0,426.0,0.0,6.0,0.0,1.0,1.0,2647.786195820722,0.0,0.0,23768.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,23768.0,3,0,3_0,3_0 +9523,5.0,16.0,27.0,111,54,30,0.0,6737,0.0,500.0,0.0,200.0,2.0,1.0,0.0,2.0,1.5,2722.739288237872,0.0,0.0,27337.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,18224.666666666668,2,0,2_1,2_0 +9524,8.0,10.0,39.0,112,33,30,0.0,6738,0.0,250.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1932.2504838307061,1976.0,0.0,56261.0,1,2,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,37507.333333333336,5,0,5,5_1 +9525,11.0,15.0,33.0,111,54,31,0.0,674,0.0,250.0,0.0,352.0,1.0,2.0,0.0,1.0,1.0,2724.979906817153,0.0,0.0,20712.0,1,3,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20712.0,3,0,3_0,3_0 +9526,9.0,9.0,26.0,111,46,30,0.0,6741,0.0,0.0,0.0,1200.0,2.0,3.0,0.0,2.0,1.5,5805.262613571103,0.0,0.0,31310.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20873.333333333332,3,0,3_0,3_0 +9527,11.0,11.0,32.0,111,65,50,0.0,6743,0.0,0.0,0.0,57.0,1.0,3.0,0.0,1.0,1.0,2887.4963619438167,0.0,0.0,17799.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,17799.0,2,0,2_1,2_0 +9528,0.0,0.0,68.0,120,75,41,0.0,6744,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2119.9712340343413,1607.84,0.0,37760.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25173.333333333332,4,0,4_0,4_1 +9529,0.0,0.0,89.0,111,77,70,0.0,6746,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5193.822567191304,0.0,0.0,20380.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20380.0,3,0,3_0,3_0 +9530,0.0,0.0,41.0,111,37,20,0.0,6747,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,1842.7103917135387,0.0,0.0,30318.0,1,2,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23321.53846153846,3,0,3_0,3_0 +9531,0.0,10.0,60.0,111,21,50,0.0,6748,0.0,0.0,900.0,0.0,1.0,4.0,0.0,2.0,1.5,2257.790563125754,0.0,0.0,47036.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,31357.333333333332,4,0,4_0,4_0 +9532,9.0,9.0,63.0,112,75,33,0.0,6749,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2066.4554267329886,0.0,0.0,36082.0,5,1,7,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24054.666666666668,4,0,4_0,4_0 +9533,5.0,5.0,57.0,112,42,20,0.0,675,0.0,130.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,1280.867548763105,4680.0,0.0,36543.0,1,2,8,3.0,2,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,24362.0,4,0,4_0,4_0 +9534,5.0,13.0,26.0,111,62,31,0.0,6750,0.0,0.0,125.0,477.0,1.0,2.0,0.0,1.0,1.0,1925.5667504749224,2600.0,0.0,29765.0,1,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,29765.0,4,0,4_0,4_0 +9535,3.0,3.0,55.0,300,47,50,0.0,6751,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1688.57391526598,3120.0,0.0,32535.0,1,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21690.0,3,0,3_0,3_1 +9536,3.0,3.0,55.0,111,47,50,0.0,6752,0.0,590.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,1673.5047863208554,2646.7999999999997,0.0,64194.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25677.6,4,0,4_0,4_0 +9537,3.0,4.0,32.0,111,31,30,0.0,6753,0.0,120.0,0.0,990.0,1.0,2.0,0.0,1.0,1.0,4511.614120709666,0.0,0.0,25591.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,25591.0,4,0,4_0,4_0 +9538,9.0,9.0,68.0,111,75,71,0.0,6755,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1757.5500260677595,0.0,0.0,33220.0,5,3,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22146.666666666668,3,0,3_0,3_0 +9539,6.0,6.0,55.0,111,22,71,0.0,6757,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1395.6026651264137,0.0,0.0,1070.0,1,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,1070.0,1,0,1_0,1_0 +9540,0.0,0.0,20.0,111,56,71,0.0,6759,0.0,0.0,0.0,151.0,1.0,3.0,0.0,1.0,1.0,2957.975476780182,0.0,0.0,18429.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18429.0,2,0,2_1,2_0 +9541,0.0,0.0,33.0,120,56,50,0.0,6760,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1349.3846497228797,780.0,0.0,15020.0,1,3,0,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,11553.846153846154,1,0,1_1,1_0 +9542,2.0,9.0,32.0,111,47,50,0.0,6761,0.0,400.0,520.0,0.0,3.0,6.0,1.0,4.0,2.3,865.6774070530261,0.0,0.0,46551.0,1,1,8,7.0,5,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,20239.565217391308,3,0,3_0,3_0 +9543,0.0,0.0,35.0,211,54,31,0.0,6762,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,1186.2795108483936,0.0,0.0,27240.0,4,3,2,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12971.42857142857,1,0,1_1,1_0 +9544,10.0,10.0,34.0,111,64,50,0.0,6763,0.0,0.0,50.0,0.0,2.0,4.0,2.0,4.0,2.1,2648.818704385822,0.0,0.0,47358.0,1,2,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,22551.42857142857,3,0,3_0,3_0 +9545,15.0,18.0,58.0,111,34,30,0.0,6764,0.0,325.0,350.0,0.0,1.0,6.0,0.0,2.0,1.5,1483.6268808108978,0.0,0.0,53744.0,1,1,9,7.0,3,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,35829.333333333336,5,0,5,5_0 +9546,17.0,19.0,38.0,400,43,41,0.0,6765,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2587.42963658124,2652.0,0.0,42048.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,20022.85714285714,3,0,3_0,3_1 +9547,6.0,7.0,84.0,111,74,70,0.0,6766,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3542.66575939942,0.0,0.0,26023.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26023.0,4,0,4_0,4_0 +9548,0.0,1.0,47.0,112,22,44,0.0,6767,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,1644.2938439728066,0.0,0.0,68566.0,1,1,8,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,22855.333333333332,3,0,3_0,3_1 +9549,2.0,12.0,61.0,111,52,50,0.0,6768,0.0,0.0,0.0,0.0,3.0,3.0,1.0,3.0,2.0,3300.5880517442497,2600.0,0.0,67847.0,1,4,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,33923.5,5,0,5,5_0 +9550,0.0,0.0,33.0,111,64,41,0.0,677,0.0,0.0,0.0,553.0,2.0,1.0,0.0,2.0,1.5,4502.208160744379,0.0,0.0,14546.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9697.333333333334,1,0,1_1,1_0 +9551,2.0,15.0,46.0,300,62,50,0.0,6770,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2230.8900139690404,0.0,0.0,25008.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,16672.0,2,0,2_0,2_1 +9552,3.0,16.0,61.0,112,54,70,0.0,6771,0.0,180.0,0.0,0.0,2.0,10.0,0.0,2.0,1.5,1925.124937806672,0.0,0.0,29829.0,1,2,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,19886.0,3,0,3_0,3_1 +9553,7.0,8.0,76.0,111,77,71,0.0,6774,0.0,0.0,0.0,549.0,0.0,3.0,0.0,2.0,1.5,901.36914990477,0.0,0.0,21950.0,5,3,4,3.0,3,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,14633.333333333334,2,0,2_0,2_0 +9554,1.0,5.0,41.0,111,65,43,2.0,6775,0.0,450.0,0.0,140.0,1.0,4.0,2.0,4.0,2.5,2153.4539686712483,0.0,7800.0,19244.0,4,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,7697.6,1,0,1_1,1_0 +9555,2.0,6.0,84.0,400,78,70,0.0,6778,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1912.2948476681129,1820.0,0.0,19756.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13170.666666666666,1,0,1_0,1_0 +9556,5.0,5.0,85.0,111,77,71,0.0,6780,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2983.3799201062975,1125.8,0.0,22882.0,5,2,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22882.0,3,0,3_0,3_0 +9557,4.0,9.0,43.0,111,63,60,0.0,6782,0.0,0.0,0.0,56.0,1.0,3.0,3.0,5.0,2.4,2683.5310968844897,1040.0,0.0,26865.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11193.75,1,0,1_1,1_0 +9558,2.0,2.0,43.0,211,64,71,0.0,6783,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2254.2658131743906,0.0,0.0,33744.0,1,3,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,22496.0,3,0,3_0,3_0 +9559,0.0,0.0,80.0,111,75,44,0.0,6784,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2423.6628839436435,2600.0,0.0,32630.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32630.0,5,0,5,5_0 +9560,6.0,6.0,33.0,111,22,12,0.0,6785,0.0,0.0,450.0,0.0,1.0,4.0,3.0,5.0,2.4,2260.3545781256166,1040.0,0.0,16084.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,6701.666666666667,1,0,1_1,1_0 +9561,6.0,11.0,46.0,111,47,43,0.0,6789,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1961.191519595146,2550.08,0.0,43047.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,21523.5,3,0,3_0,3_0 +9562,3.0,3.0,42.0,300,48,43,0.0,679,0.0,20.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1974.4632968721637,3224.0,0.0,47160.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22457.142857142855,3,0,3_0,3_1 +9563,0.0,0.0,37.0,111,43,33,0.0,6792,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2209.24512629641,0.0,0.0,82978.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39513.33333333333,5,0,5,5_0 +9564,7.0,7.0,62.0,112,75,33,0.0,6793,0.0,400.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1404.5965321673784,0.0,0.0,43994.0,5,1,10,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,43994.0,5,0,5,5_0 +9565,0.0,0.0,89.0,400,72,71,0.0,6794,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,3248.9479232935905,0.0,0.0,22286.0,5,1,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14857.333333333334,2,0,2_0,2_1 +9566,0.0,0.0,74.0,111,72,42,0.0,6796,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1262.9128263347181,4160.0,0.0,26620.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17746.666666666668,2,0,2_0,2_0 +9567,8.0,8.0,32.0,112,45,31,0.0,6797,0.0,0.0,150.0,0.0,2.0,7.0,1.0,3.0,1.8,1849.53118798985,0.0,0.0,24474.0,1,3,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,13596.666666666666,1,0,1_0,1_0 +9568,2.0,16.0,54.0,111,46,60,0.0,6798,0.0,150.0,0.0,512.0,1.0,3.0,0.0,1.0,1.0,2668.0095508814907,0.0,0.0,43057.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,43057.0,5,0,5,5_0 +9569,7.0,11.0,44.0,300,62,31,0.0,68,0.0,0.0,300.0,0.0,2.0,5.0,2.0,4.0,2.3,1718.4388403910796,3224.52,0.0,40591.0,1,2,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,17648.26086956522,2,0,2_0,2_1 +9570,0.0,0.0,29.0,111,62,31,0.0,680,0.0,0.0,0.0,195.0,4.0,3.0,3.0,4.0,2.5,4867.468085088919,733.72,0.0,55271.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,22108.4,3,0,3_1,3_0 +9571,0.0,0.0,56.0,111,54,31,0.0,6800,0.0,0.0,0.0,383.0,2.0,4.0,1.0,3.0,1.8,1225.4321377900453,0.0,0.0,48265.0,1,3,8,7.0,5,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26813.888888888887,4,0,4_0,4_0 +9572,0.0,0.0,69.0,111,86,71,0.0,6801,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,2.0,1905.286948715463,0.0,0.0,37190.0,5,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18595.0,2,0,2_0,2_0 +9573,0.0,0.0,55.0,112,62,60,0.0,6802,0.0,0.0,0.0,450.0,1.0,3.0,0.0,1.0,1.0,3497.5689213170285,0.0,0.0,21141.0,1,3,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21141.0,3,0,3_0,3_0 +9574,26.0,26.0,38.0,111,48,33,0.0,6803,0.0,25.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2113.9160806883647,0.0,0.0,48013.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,32008.666666666668,5,0,5,5_0 +9575,13.0,15.0,73.0,221,75,70,0.0,6804,0.0,0.0,100.0,0.0,0.0,5.0,0.0,2.0,1.5,4836.349453414511,0.0,0.0,32618.0,5,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21745.333333333332,3,0,3_0,3_0 +9576,3.0,3.0,83.0,400,77,70,0.0,6805,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2763.433139697187,0.0,0.0,16141.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16141.0,2,0,2_0,2_1 +9577,3.0,3.0,30.0,112,37,10,0.0,6806,0.0,150.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2313.7338612684225,3531.3199999999997,0.0,40119.0,1,3,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26746.0,4,0,4_0,4_1 +9578,0.0,0.0,69.0,111,77,31,0.0,6807,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2317.2707832684673,1404.0,0.0,35242.0,5,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23494.666666666668,3,0,3_0,3_0 +9579,2.0,2.0,37.0,211,67,42,0.0,6809,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2596.82743429258,1040.0,0.0,43059.0,1,2,1,3.0,4,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,20504.285714285714,3,0,3_0,3_0 +9580,0.0,0.0,56.0,120,52,60,0.0,681,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2258.0606456371484,2363.92,0.0,29150.0,1,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19433.333333333332,3,0,3_0,3_1 +9581,2.0,2.0,34.0,112,21,71,0.0,6810,0.0,410.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3921.969127081391,0.0,0.0,35250.0,1,4,8,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,35250.0,5,0,5,5_1 +9582,0.0,0.0,49.0,111,21,50,0.0,6812,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1960.9663233274143,0.0,0.0,24007.0,1,2,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12003.5,1,0,1_0,1_0 +9583,0.0,0.0,67.0,112,74,50,0.0,6813,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1836.9797172352542,0.0,0.0,54256.0,5,2,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,36170.666666666664,5,0,5,5_1 +9584,4.0,4.0,51.0,300,85,50,0.0,6814,0.0,544.0,0.0,124.0,0.0,2.0,0.0,1.0,1.0,3115.42978898423,0.0,0.0,12794.0,7,3,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,12794.0,1,0,1_1,1_0 +9585,4.0,4.0,32.0,112,37,30,0.0,6818,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2087.0750491866593,2295.7999999999997,0.0,42978.0,1,2,7,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20465.714285714286,3,0,3_0,3_0 +9586,6.0,6.0,65.0,111,75,44,0.0,6819,0.0,50.0,0.0,144.0,0.0,2.0,0.0,1.0,1.0,2087.2830246002377,0.0,0.0,12157.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,12157.0,1,0,1_1,1_0 +9587,7.0,7.0,52.0,112,38,20,0.0,682,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1796.4212546439658,0.0,0.0,101669.0,1,1,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,44203.913043478264,5,0,5,5_0 +9588,0.0,0.0,66.0,111,72,60,0.0,6821,0.0,0.0,0.0,200.0,0.0,2.0,0.0,1.0,1.0,2332.6527267271576,0.0,0.0,11918.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11918.0,1,0,1_1,1_0 +9589,17.0,17.0,30.0,112,85,50,0.0,6823,0.0,0.0,0.0,0.0,0.0,4.0,3.0,5.0,2.2,3059.509370046043,0.0,0.0,22643.0,6,3,6,0.0,5,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,10292.272727272726,1,0,1_1,1_1 +9590,0.0,0.0,58.0,112,33,41,0.0,6824,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1646.93016871234,2600.0,0.0,54507.0,1,2,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,36338.0,5,0,5,5_1 +9591,3.0,3.0,52.0,111,54,30,0.0,6826,0.0,0.0,221.0,0.0,2.0,4.0,2.0,3.0,2.0,680.8516529261054,3016.0,0.0,37820.0,1,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,18910.0,3,0,3_1,3_0 +9592,2.0,10.0,43.0,111,52,50,0.0,6827,0.0,0.0,0.0,211.0,1.0,1.0,0.0,1.0,1.0,3277.1462542576423,0.0,0.0,14282.0,4,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,14282.0,2,0,2_0,2_0 +9593,5.0,5.0,62.0,111,74,20,0.0,6828,0.0,0.0,0.0,290.0,0.0,2.0,0.0,1.0,1.0,4473.369291778418,0.0,0.0,8284.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,8284.0,1,0,1_1,1_0 +9594,10.0,10.0,47.0,111,45,31,0.0,6829,0.0,0.0,0.0,571.0,1.0,4.0,2.0,3.0,1.8,1026.3609677222025,0.0,0.0,32338.0,1,3,10,8.0,2,1.0,1.0,0.0,0,0,0,0,1,1,1.0,0.0,17965.555555555555,2,0,2_1,2_0 +9595,8.0,11.0,35.0,400,68,71,0.0,683,0.0,0.0,0.0,90.0,2.0,4.0,3.0,4.0,2.1,764.1441682301012,0.0,0.0,21471.0,1,3,0,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,10224.285714285714,1,0,1_1,1_0 +9596,3.0,5.0,41.0,111,67,50,0.0,6830,0.0,970.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,342.6473578454124,0.0,0.0,22867.0,1,3,6,5.0,2,3.0,1.0,1.0,0,0,1,0,0,1,1.0,2.0,12703.888888888889,1,0,1_1,1_0 +9597,0.0,0.0,75.0,211,74,44,0.0,6832,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1584.6913709582248,1560.52,0.0,68449.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,45632.666666666664,5,0,5,5_0 +9598,10.0,10.0,51.0,400,11,50,0.0,6837,0.0,550.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,1680.9015864852447,0.0,0.0,25527.0,1,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,12763.5,1,0,1_0,1_1 +9599,0.0,0.0,39.0,111,21,43,0.0,6838,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2461.6276037446532,1301.56,0.0,44500.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19347.826086956524,3,0,3_0,3_0 +9600,2.0,2.0,54.0,111,78,50,0.0,684,0.0,450.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2180.0651122294844,0.0,0.0,20169.0,7,3,6,4.0,3,3.0,0.0,1.0,0,0,1,0,0,1,0.0,3.0,13446.0,1,0,1_1,1_0 +9601,0.0,0.0,40.0,111,68,50,0.0,6841,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.5,760.5743257148099,0.0,0.0,9882.0,4,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,6588.0,1,0,1_1,1_0 +9602,2.0,5.0,62.0,120,75,30,0.0,6842,0.0,390.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2126.2580608663643,0.0,0.0,35402.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,35402.0,5,0,5,5_1 +9603,0.0,0.0,82.0,112,75,50,0.0,6845,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2669.428467767206,1300.0,0.0,31964.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,21309.333333333332,3,0,3_0,3_0 +9604,1.0,10.0,45.0,111,46,42,2.0,6847,0.0,450.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1748.748120320905,0.0,8800.0,123920.0,1,2,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,53878.26086956522,5,0,5,5_0 +9605,9.0,9.0,65.0,112,72,31,0.0,6849,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,1421.7482547959326,2971.7999999999997,0.0,71841.0,5,3,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,47894.0,5,0,5,5_0 +9606,7.0,15.0,35.0,120,38,31,0.0,6853,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2585.042515028971,0.0,0.0,48580.0,1,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,32386.666666666668,5,0,5,5_1 +9607,1.0,11.0,42.0,111,67,60,2.0,6855,0.0,0.0,0.0,105.0,1.0,4.0,2.0,3.0,1.8,666.3128035349355,0.0,4300.0,13634.0,4,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,7574.444444444444,1,0,1_1,1_0 +9608,2.0,7.0,55.0,111,48,50,0.0,6856,0.0,199998.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2724.798488896657,0.0,0.0,24983.0,1,3,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,24983.0,4,0,4_0,4_0 +9609,0.0,0.0,59.0,120,47,71,0.0,6857,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2074.782973918819,2082.6,0.0,32480.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21653.333333333332,3,0,3_0,3_1 +9610,2.0,10.0,42.0,111,68,71,0.0,6858,0.0,0.0,190.0,650.0,2.0,3.0,1.0,3.0,1.8,1090.963113335398,4160.0,0.0,29124.0,1,3,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16180.0,2,0,2_0,2_0 +9611,3.0,8.0,53.0,111,22,31,0.0,686,0.0,0.0,150.0,0.0,2.0,5.0,0.0,2.0,1.5,2202.881101344016,1560.0,0.0,13659.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,9106.0,1,0,1_0,1_0 +9612,0.0,0.0,43.0,112,56,41,0.0,6861,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,257.12613699063655,0.0,0.0,16478.0,1,2,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8239.0,1,0,1_1,1_1 +9613,4.0,4.0,35.0,111,65,50,0.0,6862,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2311.4923453783163,3120.0,0.0,37166.0,1,2,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17698.095238095237,2,0,2_0,2_0 +9614,3.0,3.0,65.0,111,78,70,0.0,6863,0.0,300.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3408.041886633944,0.0,0.0,9582.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,9582.0,1,0,1_0,1_0 +9615,2.0,16.0,34.0,111,37,0,0.0,6864,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1319.1843664329203,0.0,0.0,47760.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,36738.46153846154,5,0,5,5_0 +9616,0.0,0.0,24.0,111,55,41,0.0,6865,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2985.419838570625,2080.0,0.0,15678.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15678.0,2,0,2_0,2_0 +9617,2.0,19.0,63.0,111,78,50,0.0,6869,0.0,100.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,3547.197840706989,0.0,0.0,25880.0,5,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,12940.0,1,0,1_0,1_0 +9618,0.0,15.0,56.0,111,37,30,0.0,687,0.0,0.0,50.0,0.0,2.0,7.0,0.0,2.0,1.5,1509.9009480749942,1801.28,0.0,145011.0,1,1,7,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,96674.0,5,0,5,5_0 +9619,12.0,15.0,67.0,112,56,50,0.0,6870,0.0,250.0,0.0,0.0,1.0,5.0,0.0,4.0,2.3,4419.820946590842,3120.0,0.0,39570.0,1,1,9,0.0,5,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,17204.347826086956,2,0,2_0,2_1 +9620,2.0,2.0,45.0,111,38,50,0.0,6871,0.0,30.0,30.0,0.0,2.0,4.0,2.0,4.0,2.5,2409.042391140187,317.2,0.0,41160.0,1,2,4,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16464.0,2,0,2_0,2_0 +9621,0.0,21.0,69.0,111,78,70,0.0,6872,0.0,0.0,0.0,200.0,0.0,1.0,0.0,1.0,1.0,4139.695418849621,0.0,0.0,11750.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,11750.0,1,0,1_1,1_0 +9622,0.0,0.0,86.0,111,72,44,0.0,6873,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2910.674367591353,0.0,0.0,23182.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15454.666666666666,2,0,2_0,2_0 +9623,0.0,0.0,83.0,112,78,70,0.0,6874,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2240.131142799589,0.0,0.0,22319.0,5,1,10,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22319.0,3,0,3_0,3_1 +9624,2.0,2.0,49.0,300,62,50,0.0,6875,0.0,60.0,30.0,0.0,2.0,5.0,3.0,5.0,3.0,1436.0587737987644,0.0,0.0,56833.0,1,1,0,1.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,18944.333333333332,3,0,3_0,3_0 +9625,9.0,9.0,40.0,111,21,71,0.0,6876,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4762.574674743014,1560.0,0.0,8300.0,4,2,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,8300.0,1,0,1_0,1_0 +9626,11.0,13.0,48.0,112,43,33,0.0,6878,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.3,2049.380740052351,6008.08,0.0,82756.0,1,1,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,35980.86956521739,5,0,5,5_1 +9627,2.0,3.0,30.0,112,42,44,0.0,688,0.0,300.0,260.0,0.0,2.0,4.0,0.0,2.0,1.5,2494.4835369953066,1008.8,0.0,41096.0,1,3,7,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,27397.333333333332,4,0,4_0,4_0 +9628,0.0,0.0,53.0,221,34,20,0.0,6880,0.0,0.0,0.0,850.0,1.0,3.0,1.0,2.0,1.5,1664.8033312584096,2087.2799999999997,0.0,39200.0,1,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26133.333333333332,4,0,4_0,4_0 +9629,11.0,29.0,46.0,221,31,31,0.0,6881,0.0,400.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,4605.562583299266,0.0,0.0,47760.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22742.85714285714,3,0,3_0,3_0 +9630,12.0,12.0,53.0,111,62,50,0.0,6883,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2546.147153486646,2601.04,0.0,30884.0,1,1,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,15442.0,2,0,2_0,2_0 +9631,2.0,4.0,39.0,111,63,43,0.0,6885,0.0,0.0,0.0,373.0,2.0,4.0,4.0,6.0,2.7,2278.317166732006,1560.0,0.0,43844.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,16238.518518518518,2,0,2_1,2_0 +9632,5.0,8.0,36.0,111,47,43,0.0,6886,0.0,600.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,808.3293306361077,4602.0,0.0,60875.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,40583.333333333336,5,0,5,5_0 +9633,0.0,0.0,26.0,111,55,50,0.0,6888,0.0,0.0,0.0,65.0,1.0,3.0,1.0,2.0,1.3,1114.5971024297537,0.0,0.0,18218.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14013.846153846154,2,0,2_1,2_0 +9634,0.0,0.0,73.0,111,74,30,0.0,689,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1569.0915467318803,0.0,0.0,45273.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30182.0,4,0,4_0,4_0 +9635,2.0,4.0,66.0,111,77,50,0.0,6890,0.0,700.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2378.298084830863,2444.52,0.0,47137.0,5,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,31424.666666666668,4,0,4_0,4_0 +9636,8.0,13.0,33.0,111,63,71,0.0,6891,0.0,250.0,200.0,0.0,1.0,3.0,1.0,2.0,1.3,1869.6883427425769,0.0,0.0,10916.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,8396.923076923076,1,0,1_1,1_0 +9637,1.0,17.0,61.0,112,78,71,0.0,6893,0.0,100.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3885.1903402861853,0.0,0.0,15273.0,5,1,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15273.0,2,0,2_0,2_1 +9638,0.0,0.0,44.0,111,46,50,0.0,6895,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2924.941275088965,6116.76,0.0,48620.0,1,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19448.0,3,0,3_0,3_0 +9639,6.0,8.0,60.0,211,34,31,0.0,6898,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2118.452830507114,0.0,0.0,82281.0,1,1,1,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,54854.0,5,0,5,5_0 +9640,9.0,11.0,58.0,111,77,41,0.0,6899,0.0,1000.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2937.6012711111075,3543.7999999999997,0.0,58493.0,5,1,8,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,38995.333333333336,5,0,5,5_0 +9641,5.0,8.0,45.0,111,46,30,0.0,69,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,1719.6629230279357,0.0,0.0,43280.0,1,1,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,28853.333333333332,4,0,4_0,4_0 +9642,17.0,22.0,54.0,221,46,50,0.0,6900,0.0,116.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1704.2996997233092,0.0,0.0,19218.0,1,1,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19218.0,3,0,3_0,3_0 +9643,4.0,4.0,75.0,400,72,50,0.0,6901,0.0,0.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1359.2715974310433,1560.0,0.0,26624.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17749.333333333332,2,0,2_0,2_0 +9644,9.0,15.0,28.0,112,46,20,0.0,6902,0.0,130.0,0.0,840.0,2.0,3.0,0.0,2.0,1.5,3251.6797066003282,2652.0,0.0,56725.0,1,3,8,2.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,37816.666666666664,5,0,5,5_0 +9645,5.0,15.0,50.0,111,62,50,0.0,6903,0.0,0.0,0.0,238.0,1.0,2.0,0.0,1.0,1.0,2522.346964116989,0.0,0.0,15061.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15061.0,2,0,2_0,2_0 +9646,1.0,1.0,45.0,112,37,20,1.0,6904,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,348.65122731926044,0.0,30000.0,38585.0,1,2,10,3.0,2,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,24115.625,4,0,4_0,4_0 +9647,5.0,5.0,35.0,112,37,30,0.0,6905,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2107.6511151472564,0.0,0.0,75794.0,1,1,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,36092.380952380954,5,0,5,5_0 +9648,3.0,16.0,66.0,111,78,50,0.0,6907,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1594.181366298791,1560.0,0.0,35192.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23461.333333333332,3,0,3_0,3_0 +9649,0.0,0.0,75.0,112,75,71,0.0,6908,0.0,0.0,0.0,709.0,1.0,4.0,0.0,2.0,1.5,2906.035723200357,2340.0,0.0,33647.0,5,3,10,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22431.333333333332,3,0,3_0,3_0 +9650,2.0,5.0,39.0,300,64,60,0.0,6909,0.0,0.0,340.0,0.0,2.0,4.0,1.0,3.0,1.8,2093.6813247862983,2470.0,0.0,37365.0,1,1,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,20758.333333333332,3,0,3_0,3_1 +9651,2.0,2.0,30.0,111,47,41,0.0,691,0.0,40.0,0.0,700.0,1.0,2.0,0.0,1.0,1.0,3507.174396718691,0.0,0.0,31479.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,31479.0,4,0,4_0,4_0 +9652,0.0,0.0,31.0,111,55,50,0.0,6913,0.0,0.0,0.0,163.0,1.0,3.0,1.0,2.0,1.3,729.463281979903,0.0,0.0,14404.0,4,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11080.0,1,0,1_1,1_0 +9653,17.0,20.0,40.0,111,34,10,0.0,6914,0.0,0.0,0.0,828.0,2.0,4.0,2.0,4.0,2.1,3369.2715860371036,0.0,0.0,110126.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,52440.95238095238,5,0,5,5_0 +9654,0.0,0.0,45.0,112,37,43,0.0,6916,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2098.5622690886476,0.0,0.0,40523.0,1,3,9,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,40523.0,5,0,5,5_0 +9655,3.0,3.0,46.0,111,31,20,0.0,6917,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2937.0700896054086,2860.0,0.0,52550.0,1,2,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25023.809523809523,4,0,4_0,4_0 +9656,4.0,4.0,29.0,111,43,30,0.0,6918,0.0,0.0,0.0,541.0,1.0,3.0,1.0,2.0,1.3,1129.2167075957004,0.0,0.0,26572.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,20440.0,3,0,3_0,3_0 +9657,2.0,5.0,61.0,112,75,60,0.0,692,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2600.711449401863,1300.0,0.0,26447.0,5,1,9,1.0,1,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,26447.0,4,0,4_0,4_0 +9658,0.0,0.0,45.0,400,65,50,0.0,6920,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2395.4421443482834,3120.0,0.0,22664.0,4,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9853.913043478262,1,0,1_0,1_1 +9659,0.0,0.0,24.0,111,55,31,0.0,6921,0.0,0.0,0.0,244.0,2.0,3.0,0.0,2.0,1.5,4211.629567456738,1040.0,0.0,13980.0,1,3,7,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,9320.0,1,0,1_0,1_0 +9660,1.0,1.0,68.0,111,78,70,0.0,6922,0.0,0.0,140.0,0.0,0.0,3.0,0.0,1.0,1.0,3745.3380987070964,0.0,0.0,21426.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,21426.0,3,0,3_0,3_0 +9661,0.0,0.0,74.0,112,74,41,0.0,6923,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1422.7602273719026,0.0,0.0,35627.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23751.333333333332,3,0,3_0,3_1 +9662,2.0,2.0,52.0,111,38,31,0.0,6924,0.0,0.0,250.0,0.0,3.0,6.0,1.0,3.0,2.0,1728.8728108665655,0.0,0.0,88105.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,44052.5,5,0,5,5_0 +9663,3.0,3.0,69.0,111,86,50,0.0,6925,0.0,400.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1769.5450798516113,1560.0,0.0,1100.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,1100.0,1,0,1_0,1_0 +9664,25.0,32.0,52.0,211,85,71,0.0,6926,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,1786.0484680535365,2288.52,0.0,38492.0,5,1,2,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19246.0,3,0,3_0,3_0 +9665,4.0,10.0,51.0,111,68,71,0.0,6927,0.0,0.0,200.0,0.0,1.0,4.0,2.0,3.0,1.8,814.805059252312,0.0,0.0,18036.0,1,3,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,1,1.0,0.0,10020.0,1,0,1_1,1_0 +9666,0.0,0.0,40.0,112,37,31,0.0,6928,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2704.253692418186,0.0,0.0,104330.0,1,2,10,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,49680.95238095238,5,0,5,5_0 +9667,0.0,1.0,40.0,112,68,71,0.0,6929,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.5,301.9952987510888,0.0,0.0,41440.0,1,3,5,0.0,2,1.0,1.0,0.0,1,0,0,0,0,1,1.0,0.0,16576.0,2,0,2_1,2_1 +9668,0.0,0.0,55.0,400,55,50,0.0,6930,0.0,0.0,0.0,354.0,2.0,3.0,2.0,3.0,2.0,1521.2839294205262,0.0,0.0,20950.0,1,3,0,1.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10475.0,1,0,1_0,1_0 +9669,0.0,0.0,64.0,112,78,50,0.0,6931,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1517.6271769743478,0.0,0.0,21265.0,5,1,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21265.0,3,0,3_0,3_1 +9670,0.0,21.0,63.0,400,31,20,0.0,6936,0.0,392.0,0.0,0.0,1.0,10.0,0.0,1.0,1.0,2235.804390802601,3156.4,0.0,67855.0,1,1,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,2.0,1.0,67855.0,5,0,5,5_1 +9671,2.0,2.0,33.0,112,63,43,0.0,6937,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,3055.6235628255854,2270.84,0.0,28219.0,1,3,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15677.222222222223,2,0,2_0,2_1 +9672,3.0,7.0,72.0,112,75,44,0.0,6938,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1313.2457188090577,2080.0,0.0,35761.0,5,1,8,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23840.666666666668,4,0,4_0,4_0 +9673,1.0,1.0,55.0,111,37,12,1.0,694,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2591.868557275208,0.0,11000.0,141480.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,61513.04347826087,5,0,5,5_0 +9674,1.0,7.0,36.0,111,46,44,2.0,6940,0.0,150.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3430.739106679102,1779.44,3500.0,42996.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23886.666666666668,4,0,4_0,4_0 +9675,11.0,13.0,64.0,211,77,70,0.0,6941,0.0,0.0,199998.0,274.0,0.0,2.0,0.0,1.0,1.0,3500.6102836891905,0.0,0.0,12979.0,5,3,1,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,12979.0,1,0,1_0,1_0 +9676,21.0,21.0,34.0,111,22,50,0.0,6943,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3737.2745152532966,2080.0,0.0,79662.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,37934.28571428571,5,0,5,5_0 +9677,1.0,1.0,32.0,111,22,20,1.0,6946,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3685.4028479073986,3591.12,15000.0,30178.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,16765.555555555555,2,0,2_0,2_0 +9678,22.0,22.0,57.0,111,45,41,0.0,6947,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,739.2998188761431,0.0,0.0,43527.0,1,1,4,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,29018.0,4,0,4_0,4_0 +9679,1.0,1.0,34.0,111,48,41,0.0,6948,0.0,0.0,300.0,0.0,2.0,4.0,3.0,5.0,2.4,1129.176185421246,1075.88,0.0,61389.0,1,2,10,8.0,4,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,25578.75,4,0,4_0,4_0 +9680,3.0,4.0,51.0,111,48,50,0.0,6949,0.0,100699.0,0.0,0.0,4.0,4.0,2.0,4.0,2.5,1626.2915009632295,0.0,0.0,63780.0,1,1,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,25512.0,4,0,4_0,4_0 +9681,1.0,5.0,46.0,111,47,31,2.0,695,0.0,0.0,480.0,0.0,1.0,6.0,3.0,4.0,2.3,693.9303250310264,3468.4,4000.0,48572.0,1,2,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21118.26086956522,3,0,3_0,3_0 +9682,14.0,14.0,72.0,221,77,50,0.0,6950,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1868.462381450083,0.0,0.0,19526.0,5,1,3,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19526.0,3,0,3_0,3_0 +9683,10.0,10.0,84.0,300,77,71,0.0,6951,0.0,100.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2918.7413842041387,0.0,0.0,9510.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,9510.0,1,0,1_0,1_1 +9684,16.0,16.0,44.0,111,21,33,0.0,6953,0.0,99999.0,0.0,392.0,1.0,3.0,2.0,3.0,1.8,1119.487214327565,0.0,0.0,8636.0,1,3,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,4797.777777777777,1,0,1_1,1_0 +9685,2.0,2.0,59.0,111,53,60,0.0,6954,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1139.7709582944017,1965.6,0.0,49176.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,32784.0,5,0,5,5_0 +9686,0.0,0.0,46.0,112,56,50,0.0,6955,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,817.6768142105068,780.0,0.0,26569.0,1,2,8,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,13284.5,1,0,1_0,1_0 +9687,0.0,0.0,39.0,111,68,50,0.0,6956,0.0,0.0,0.0,191.0,1.0,3.0,0.0,2.0,1.5,2054.5865655327407,0.0,0.0,11058.0,1,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7372.0,1,0,1_1,1_0 +9688,7.0,9.0,49.0,111,37,30,0.0,6958,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2436.158078892215,0.0,0.0,43540.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,43540.0,5,0,5,5_0 +9689,3.0,3.0,64.0,300,75,33,0.0,6959,0.0,0.0,96.0,0.0,0.0,3.0,0.0,2.0,1.5,2137.791376643265,1560.0,0.0,41549.0,5,1,0,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,27699.333333333332,4,0,4_0,4_1 +9690,21.0,21.0,45.0,112,35,41,0.0,696,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,1708.8712480156923,2108.08,0.0,24160.0,1,2,8,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,15100.0,2,0,2_0,2_0 +9691,0.0,0.0,46.0,111,43,30,0.0,6962,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2314.847308037229,0.0,0.0,33293.0,1,2,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22195.333333333332,3,0,3_0,3_0 +9692,9.0,9.0,52.0,112,65,71,0.0,6964,0.0,0.0,150.0,0.0,1.0,1.0,0.0,1.0,1.0,2028.745894120418,0.0,0.0,15668.0,1,3,10,3.0,1,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,15668.0,2,0,2_1,2_0 +9693,2.0,2.0,56.0,112,62,50,0.0,6965,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1497.0626528584673,5926.4400000000005,0.0,51041.0,1,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,34027.333333333336,5,0,5,5_0 +9694,0.0,0.0,69.0,111,31,12,0.0,6966,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2198.1225215872896,2600.0,0.0,55070.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,36713.333333333336,5,0,5,5_0 +9695,19.0,19.0,78.0,111,35,60,0.0,6967,0.0,0.0,0.0,2968.0,1.0,5.0,0.0,1.0,1.0,3153.8060357005456,2184.0,0.0,67756.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,67756.0,5,0,5,5_0 +9696,0.0,0.0,47.0,111,54,43,0.0,6968,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,783.7450982643284,0.0,0.0,42364.0,1,2,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28242.666666666668,4,0,4_0,4_0 +9697,3.0,3.0,59.0,112,74,50,0.0,6969,0.0,168.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2160.311762199346,1040.0,0.0,20240.0,7,3,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,13493.333333333334,1,0,1_1,1_0 +9698,2.0,20.0,43.0,211,37,30,0.0,6970,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1022.077687704827,0.0,0.0,46136.0,1,2,4,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20059.13043478261,3,0,3_0,3_0 +9699,0.0,0.0,78.0,300,74,50,0.0,6971,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2038.015948779636,3640.0,0.0,43972.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29314.666666666668,4,0,4_0,4_1 +9700,5.0,13.0,43.0,111,31,30,0.0,6972,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2775.7112860362145,882.4399999999999,0.0,80532.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,30973.846153846152,4,0,4_0,4_0 +9701,1.0,4.0,64.0,300,72,50,2.0,6975,0.0,168.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1697.170630205101,2952.04,16500.0,27227.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18151.333333333332,2,0,2_0,2_1 +9702,0.0,0.0,69.0,120,75,31,0.0,6976,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1826.010524474313,1820.52,0.0,31621.0,5,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21080.666666666668,3,0,3_0,3_1 +9703,6.0,6.0,47.0,112,47,43,0.0,6977,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2438.922459543044,1006.2,0.0,52099.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,24809.04761904762,4,0,4_0,4_1 +9704,3.0,10.0,79.0,300,71,71,0.0,6978,0.0,0.0,100049.0,0.0,0.0,5.0,1.0,2.0,1.5,2773.049297612746,2444.0,0.0,26225.0,5,1,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,17483.333333333332,2,0,2_0,2_1 +9705,0.0,0.0,36.0,111,22,71,0.0,6979,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4125.908940371881,1039.48,0.0,24094.0,1,2,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24094.0,4,0,4_0,4_0 +9706,1.0,1.0,31.0,112,53,60,1.0,698,0.0,420.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,5953.459932558531,3799.6400000000003,25500.0,38030.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18109.52380952381,2,0,2_0,2_1 +9707,0.0,0.0,72.0,111,75,33,0.0,6980,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1952.0759108658538,2600.0,0.0,47817.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31878.0,5,0,5,5_0 +9708,0.0,0.0,65.0,111,74,31,0.0,6982,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1681.9087828329095,3367.0,0.0,57061.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38040.666666666664,5,0,5,5_0 +9709,3.0,11.0,32.0,111,52,41,0.0,6984,0.0,0.0,120.0,0.0,2.0,4.0,4.0,6.0,2.7,1659.7220423146634,10044.32,0.0,43947.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,16276.666666666666,2,0,2_0,2_0 +9710,31.0,66.0,48.0,112,38,12,0.0,6985,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2042.4573687954348,2061.28,0.0,73376.0,1,1,10,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,34940.95238095238,5,0,5,5_1 +9711,2.0,9.0,75.0,112,45,70,0.0,6986,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2161.4336193413988,0.0,0.0,47686.0,5,1,10,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,31790.666666666668,5,0,5,5_0 +9712,5.0,5.0,47.0,111,47,30,0.0,6987,0.0,500.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4184.529593214284,2340.0,0.0,18194.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18194.0,2,0,2_0,2_0 +9713,0.0,10.0,21.0,300,43,44,0.0,6988,0.0,400.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2641.103802601873,4552.6,0.0,31200.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20800.0,3,0,3_0,3_1 +9714,6.0,10.0,45.0,111,42,20,0.0,6989,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3563.387463193845,0.0,0.0,58176.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27702.85714285714,4,0,4_0,4_0 +9715,0.0,0.0,68.0,112,21,44,0.0,699,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1757.6737320293585,0.0,0.0,30851.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20567.333333333332,3,0,3_0,3_0 +9716,2.0,6.0,45.0,111,55,31,0.0,6990,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2415.630583638249,0.0,0.0,18472.0,1,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18472.0,2,0,2_0,2_0 +9717,3.0,3.0,38.0,111,55,43,0.0,6993,0.0,300.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,870.736155697816,0.0,0.0,52560.0,1,2,4,3.0,4,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,20215.384615384613,3,0,3_0,3_0 +9718,5.0,6.0,38.0,111,64,50,0.0,6995,0.0,0.0,0.0,288.0,1.0,4.0,2.0,3.0,1.8,596.0859895408795,3640.0,0.0,24110.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,13394.444444444443,1,0,1_1,1_0 +9719,7.0,20.0,51.0,300,63,50,0.0,6996,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1563.1043769320686,2704.0,0.0,49258.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,32838.666666666664,5,0,5,5_1 +9720,1.0,1.0,25.0,111,84,30,1.0,7,0.0,800.0,0.0,178.0,0.0,2.0,0.0,1.0,1.0,4365.148639364243,0.0,19500.0,3693.0,3,3,7,6.0,1,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,3693.0,1,0,1_1,1_0 +9721,12.0,12.0,28.0,112,42,41,0.0,7001,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3142.982561454583,2600.0,0.0,63601.0,1,2,8,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,30286.190476190473,4,0,4_0,4_1 +9722,0.0,0.0,23.0,111,42,20,0.0,7002,0.0,0.0,0.0,350.0,1.0,1.0,0.0,1.0,1.0,2804.5908247336265,0.0,0.0,7892.0,2,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7892.0,1,0,1_0,1_0 +9723,0.0,0.0,60.0,111,78,70,0.0,7003,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2131.6998325264312,0.0,0.0,13617.0,7,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13617.0,1,0,1_1,1_0 +9724,1.0,1.0,43.0,300,46,42,1.0,7006,0.0,0.0,0.0,272.0,1.0,4.0,3.0,4.0,2.1,447.84584969006136,0.0,14000.0,35762.0,1,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,17029.52380952381,2,0,2_1,2_1 +9725,1.0,14.0,35.0,111,67,71,0.0,7007,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1297.5539092122258,0.0,0.0,33570.0,1,3,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,18650.0,2,0,2_1,2_0 +9726,2.0,4.0,59.0,111,63,41,0.0,7008,0.0,0.0,0.0,650.0,2.0,5.0,2.0,4.0,2.3,1589.0428972115496,2068.04,0.0,27691.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12039.565217391306,1,0,1_1,1_0 +9727,4.0,9.0,24.0,111,55,41,0.0,7009,0.0,0.0,800.0,379.0,1.0,1.0,1.0,2.0,1.3,2605.4354068611347,0.0,0.0,2683.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,2.0,0.0,2063.846153846154,1,0,1_1,1_0 +9728,0.0,12.0,56.0,111,31,10,0.0,701,0.0,0.0,90.0,0.0,2.0,7.0,1.0,3.0,2.0,1419.8311577529741,2600.0,0.0,102701.0,1,2,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,51350.5,5,0,5,5_0 +9729,11.0,11.0,36.0,221,23,20,0.0,7010,0.0,0.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.1,2699.5634893139554,0.0,0.0,85331.0,1,2,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,40633.80952380952,5,0,5,5_0 +9730,11.0,11.0,76.0,111,77,70,0.0,7011,0.0,0.0,0.0,333.0,0.0,4.0,0.0,1.0,1.0,3416.2589120212783,0.0,0.0,24950.0,5,3,5,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,24950.0,4,0,4_0,4_0 +9731,1.0,1.0,39.0,111,54,71,0.0,7012,0.0,200003.0,0.0,188.0,1.0,3.0,1.0,2.0,1.3,853.071056771178,2600.0,0.0,11834.0,4,3,9,7.0,2,3.0,0.0,1.0,0,0,0,1,0,1,0.0,3.0,9103.076923076922,1,0,1_1,1_0 +9732,6.0,6.0,63.0,111,86,20,0.0,7016,0.0,0.0,100199.0,341.0,1.0,4.0,1.0,2.0,1.5,1681.9167732944295,0.0,0.0,36643.0,5,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,24428.666666666668,4,0,4_1,4_0 +9733,2.0,10.0,56.0,111,33,41,0.0,7018,0.0,0.0,150.0,0.0,2.0,6.0,0.0,2.0,1.5,1895.543387746818,4264.0,0.0,65137.0,1,2,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,43424.666666666664,5,0,5,5_0 +9734,13.0,22.0,51.0,111,37,31,0.0,7019,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,452.0417721962555,311.48,0.0,93392.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,31130.666666666668,4,0,4_0,4_0 +9735,0.0,0.0,35.0,111,67,50,0.0,7020,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1381.4887629062532,0.0,0.0,15481.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15481.0,2,0,2_1,2_0 +9736,16.0,16.0,60.0,111,68,71,0.0,7021,0.0,0.0,0.0,378.0,1.0,2.0,0.0,2.0,1.5,2315.7504274188195,0.0,0.0,26665.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17776.666666666668,2,0,2_0,2_0 +9737,5.0,5.0,33.0,211,46,30,0.0,7022,0.0,0.0,0.0,321.0,1.0,3.0,2.0,3.0,1.6,648.8571044035776,1793.48,0.0,24751.0,1,3,2,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,15469.375,2,0,2_1,2_0 +9738,1.0,4.0,73.0,111,72,41,0.0,7023,0.0,0.0,0.0,416.0,0.0,3.0,0.0,1.0,1.0,2170.602405559652,0.0,0.0,17895.0,5,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17895.0,2,0,2_0,2_0 +9739,0.0,0.0,24.0,300,69,50,0.0,7025,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4166.004908253946,3012.36,0.0,16519.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,16519.0,2,0,2_1,2_1 +9740,0.0,0.0,54.0,111,63,71,0.0,7026,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2034.4243299226862,0.0,0.0,51212.0,1,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34141.333333333336,5,0,5,5_0 +9741,0.0,0.0,58.0,112,54,50,0.0,703,0.0,0.0,0.0,0.0,2.0,6.0,1.0,2.0,1.5,1849.125284705217,4681.04,0.0,31416.0,1,1,8,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20944.0,3,0,3_0,3_0 +9742,6.0,7.0,58.0,111,33,30,0.0,7030,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1704.3977691023772,0.0,0.0,105249.0,1,3,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,70166.0,5,0,5,5_0 +9743,2.0,7.0,77.0,111,74,31,0.0,7031,250.0,350.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,4222.300743060539,0.0,0.0,17408.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,17408.0,2,0,2_0,2_0 +9744,0.0,0.0,55.0,112,52,50,0.0,7034,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1744.5425648969913,0.0,0.0,46740.0,1,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31160.0,4,0,4_0,4_1 +9745,2.0,2.0,43.0,111,85,71,0.0,7035,0.0,680.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,2133.5374728591137,0.0,0.0,4549.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,3499.230769230769,1,0,1_1,1_0 +9746,0.0,0.0,60.0,111,65,44,0.0,7038,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2289.7939192526837,2600.52,0.0,72623.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36311.5,5,0,5,5_0 +9747,0.0,0.0,65.0,111,74,44,0.0,7039,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2139.341543042562,3367.0,0.0,60853.0,5,1,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40568.666666666664,5,0,5,5_0 +9748,0.0,27.0,60.0,111,37,50,0.0,704,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1975.884342626499,1560.0,0.0,72158.0,1,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,48105.333333333336,5,0,5,5_0 +9749,0.0,0.0,42.0,300,52,50,0.0,7040,0.0,0.0,0.0,0.0,1.0,6.0,5.0,7.0,3.0,1664.5613652210059,1040.0,0.0,47910.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,15970.0,2,0,2_1,2_1 +9750,0.0,0.0,49.0,400,65,50,0.0,7041,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1890.6667577827861,2102.36,0.0,33619.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18677.222222222223,2,0,2_0,2_1 +9751,5.0,25.0,68.0,300,78,71,0.0,7042,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2447.467307396306,0.0,0.0,20320.0,5,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,13546.666666666666,1,0,1_1,1_1 +9752,2.0,2.0,79.0,400,78,70,0.0,7043,0.0,0.0,250.0,0.0,0.0,4.0,0.0,1.0,1.0,2585.756864918838,1560.0,0.0,18029.0,5,1,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,18029.0,2,0,2_0,2_1 +9753,0.0,13.0,52.0,111,47,60,2.0,7044,0.0,0.0,0.0,479.0,2.0,4.0,2.0,3.0,2.0,2216.115863542023,0.0,100.0,44193.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22096.5,3,0,3_0,3_0 +9754,6.0,6.0,41.0,112,67,50,0.0,7045,0.0,0.0,0.0,488.0,2.0,4.0,3.0,5.0,2.6,2349.6830268873828,2600.0,0.0,49770.0,1,3,10,4.0,4,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,19142.30769230769,3,0,3_0,3_0 +9755,15.0,15.0,39.0,221,63,71,0.0,7046,0.0,0.0,99999.0,0.0,2.0,2.0,1.0,3.0,1.8,844.3655478841757,0.0,0.0,33032.0,1,3,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,18351.11111111111,2,0,2_1,2_0 +9756,2.0,2.0,66.0,111,77,31,0.0,7049,0.0,120.0,56.0,0.0,1.0,3.0,1.0,2.0,1.5,4965.9763220304585,0.0,0.0,34846.0,5,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,23230.666666666668,3,0,3_1,3_0 +9757,0.0,0.0,58.0,112,52,50,0.0,705,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2174.9312356763135,2735.2,0.0,57452.0,1,1,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28726.0,4,0,4_0,4_0 +9758,0.0,0.0,58.0,111,56,50,0.0,7050,0.0,0.0,0.0,18.0,1.0,2.0,0.0,1.0,1.0,2976.603387329227,0.0,0.0,16644.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16644.0,2,0,2_1,2_0 +9759,8.0,10.0,58.0,111,68,71,0.0,7053,0.0,80.0,0.0,40.0,2.0,4.0,6.0,7.0,3.6,553.4495757457566,0.0,0.0,35065.0,4,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,9740.277777777777,1,0,1_1,1_0 +9760,3.0,5.0,67.0,111,74,30,0.0,7054,0.0,0.0,50.0,0.0,0.0,8.0,0.0,2.0,1.5,1952.6136988993742,2964.0,0.0,97409.0,5,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,64939.333333333336,5,0,5,5_0 +9761,19.0,19.0,39.0,211,85,31,0.0,7056,0.0,318.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2105.4353886276754,0.0,0.0,16590.0,4,3,3,3.0,1,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,16590.0,2,0,2_1,2_0 +9762,0.0,0.0,52.0,221,63,50,0.0,7057,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1911.1489907745304,4888.0,0.0,30356.0,1,1,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11675.384615384615,1,0,1_0,1_0 +9763,3.0,3.0,55.0,112,47,50,0.0,7058,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1691.4093546143083,5296.72,0.0,40360.0,1,1,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20180.0,3,0,3_0,3_1 +9764,4.0,15.0,31.0,112,43,33,0.0,7059,0.0,600.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,4762.280040759717,2562.04,0.0,33388.0,1,1,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18548.888888888887,2,0,2_0,2_1 +9765,5.0,5.0,57.0,400,47,50,0.0,7061,0.0,0.0,0.0,0.0,1.0,3.0,0.0,3.0,2.0,2949.5429190689583,1560.0,0.0,41048.0,4,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20524.0,3,0,3_0,3_1 +9766,0.0,0.0,37.0,111,34,10,0.0,7062,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1670.9342883015067,0.0,0.0,87630.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,48683.333333333336,5,0,5,5_0 +9767,2.0,2.0,23.0,112,47,30,0.0,7063,0.0,400.0,0.0,610.0,1.0,3.0,0.0,1.0,1.0,3382.537451619681,1040.0,0.0,25750.0,1,3,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,25750.0,4,0,4_0,4_0 +9768,3.0,4.0,78.0,112,71,70,0.0,7066,0.0,250.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1667.703713686214,1452.36,0.0,35120.0,5,1,8,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23413.333333333332,3,0,3_0,3_0 +9769,2.0,10.0,64.0,400,78,71,0.0,7067,0.0,0.0,150.0,0.0,0.0,4.0,0.0,2.0,1.5,3583.8833787977037,0.0,0.0,22900.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15266.666666666666,2,0,2_0,2_0 +9770,4.0,4.0,71.0,111,74,30,0.0,7069,0.0,0.0,0.0,0.0,0.0,9.0,0.0,1.0,1.0,1813.9566898487737,1825.2,0.0,30473.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,30473.0,4,0,4_0,4_0 +9771,6.0,7.0,67.0,111,75,50,0.0,7070,0.0,530.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1843.0594838352017,1963.52,0.0,44072.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,29381.333333333332,4,0,4_0,4_0 +9772,9.0,9.0,44.0,112,54,43,0.0,7072,0.0,0.0,20.0,0.0,1.0,4.0,1.0,2.0,1.5,2316.04265714448,0.0,0.0,21281.0,1,2,6,1.0,2,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,14187.333333333334,2,0,2_0,2_0 +9773,12.0,16.0,68.0,111,74,20,0.0,7076,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1801.8545546505497,0.0,0.0,58247.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,58247.0,5,0,5,5_0 +9774,0.0,0.0,29.0,212,37,31,0.0,7077,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2709.9163573891137,4854.200000000001,0.0,42095.0,1,2,4,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,42095.0,5,0,5,5_1 +9775,11.0,16.0,48.0,111,52,50,0.0,7078,0.0,950.0,0.0,0.0,1.0,7.0,7.0,9.0,4.2,1384.7012735134178,0.0,0.0,50964.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,12134.285714285714,1,0,1_1,1_0 +9776,11.0,11.0,63.0,111,75,33,0.0,708,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1693.58886190786,1560.0,0.0,15880.0,5,1,6,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,15880.0,2,0,2_0,2_0 +9777,1.0,1.0,52.0,111,22,41,0.0,7080,0.0,0.0,99999.0,428.0,2.0,4.0,2.0,4.0,2.5,2547.5558025821806,6098.039999999999,0.0,30539.0,4,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,12215.6,1,0,1_0,1_0 +9778,0.0,0.0,39.0,111,67,30,0.0,7081,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1979.1702679596501,2653.04,0.0,28241.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11767.083333333334,1,0,1_0,1_0 +9779,11.0,11.0,63.0,120,74,70,0.0,7082,0.0,0.0,99999.0,0.0,0.0,7.0,0.0,2.0,1.5,2514.3858296963017,0.0,0.0,54550.0,5,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,36366.666666666664,5,0,5,5_1 +9780,5.0,5.0,50.0,112,43,50,0.0,7083,0.0,100.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1665.8293178055487,0.0,0.0,50366.0,1,1,9,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,25183.0,4,0,4_0,4_0 +9781,0.0,0.0,41.0,221,67,42,0.0,7085,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,2148.1136256024834,0.0,0.0,17023.0,1,2,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13094.615384615385,1,0,1_1,1_0 +9782,3.0,10.0,41.0,111,37,12,0.0,7088,0.0,900.0,0.0,0.0,2.0,10.0,2.0,4.0,2.1,3652.237408033061,0.0,0.0,132460.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,63076.19047619047,5,0,5,5_0 +9783,3.0,3.0,37.0,111,53,30,0.0,7089,0.0,300.0,0.0,98.0,1.0,2.0,0.0,1.0,1.0,3299.019488212955,3172.0,0.0,17134.0,4,4,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,17134.0,2,0,2_1,2_0 +9784,3.0,3.0,66.0,111,78,50,0.0,709,0.0,570.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2254.2028753135037,0.0,0.0,23557.0,5,1,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,23557.0,3,0,3_0,3_0 +9785,0.0,0.0,56.0,112,62,50,0.0,7090,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1735.7370316621427,1040.0,0.0,29330.0,1,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19553.333333333332,3,0,3_0,3_1 +9786,0.0,18.0,78.0,112,74,70,0.0,7092,0.0,1276.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2883.4878702963356,0.0,0.0,35874.0,5,4,10,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,35874.0,5,0,5,5_1 +9787,0.0,0.0,74.0,112,77,50,0.0,7093,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2956.158344465513,0.0,0.0,23284.0,5,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23284.0,3,0,3_0,3_1 +9788,0.0,0.0,81.0,212,77,70,0.0,7094,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2133.7387942304726,0.0,0.0,27141.0,5,1,2,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18094.0,2,0,2_0,2_1 +9789,11.0,27.0,39.0,111,42,0,0.0,7095,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,864.8064672509395,0.0,0.0,45910.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,25505.555555555555,4,0,4_0,4_0 +9790,3.0,3.0,65.0,111,74,30,0.0,7096,0.0,1200.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1844.4875020044951,0.0,0.0,19885.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19885.0,3,0,3_0,3_0 +9791,4.0,17.0,47.0,111,55,31,0.0,7097,0.0,100.0,70.0,0.0,1.0,1.0,0.0,1.0,1.0,4581.417282083104,0.0,0.0,10638.0,4,3,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,1,2.0,1.0,10638.0,1,0,1_1,1_0 +9792,10.0,10.0,51.0,111,52,20,0.0,7098,0.0,99998.0,0.0,365.0,1.0,1.0,0.0,1.0,1.0,2843.935065612011,0.0,0.0,15335.0,1,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,15335.0,2,0,2_0,2_0 +9793,11.0,11.0,53.0,111,64,50,0.0,7099,0.0,480.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2726.4451016458106,1049.88,0.0,44457.0,1,1,8,6.0,4,4.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,22228.5,3,0,3_0,3_0 +9794,0.0,0.0,55.0,221,38,50,0.0,7100,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3504.815455443443,0.0,0.0,66503.0,1,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,44335.333333333336,5,0,5,5_0 +9795,0.0,0.0,45.0,111,52,50,0.0,7101,0.0,0.0,0.0,266.0,1.0,2.0,0.0,1.0,1.0,3220.0856038581446,0.0,0.0,18402.0,1,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,18402.0,2,0,2_1,2_0 +9796,5.0,5.0,41.0,111,55,71,0.0,7102,0.0,99999.0,0.0,0.0,2.0,4.0,3.0,4.0,2.3,1127.1969733075857,0.0,0.0,37340.0,4,3,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,1,0.0,1.0,16234.782608695654,2,0,2_1,2_0 +9797,3.0,3.0,46.0,111,52,71,0.0,7103,0.0,2.0,0.0,155.0,1.0,4.0,1.0,2.0,1.3,1004.2562416941995,0.0,0.0,21342.0,1,3,9,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,16416.923076923078,2,0,2_1,2_0 +9798,6.0,8.0,51.0,111,52,42,0.0,7105,0.0,500.0,0.0,552.0,1.0,4.0,3.0,5.0,3.0,2403.0802735951634,2210.0,0.0,53634.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17878.0,2,0,2_0,2_0 +9799,0.0,0.0,46.0,112,55,50,0.0,7106,0.0,0.0,0.0,200.0,2.0,4.0,2.0,3.0,1.8,555.5439277426113,1040.0,0.0,21733.0,1,3,7,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12073.888888888889,1,0,1_1,1_0 +9800,4.0,11.0,49.0,111,55,50,0.0,7107,0.0,0.0,0.0,238.0,1.0,3.0,0.0,1.0,1.0,850.5406085937058,0.0,0.0,14226.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14226.0,2,0,2_0,2_0 +9801,0.0,0.0,62.0,111,75,31,0.0,7108,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.6,1032.1618517340978,0.0,0.0,43940.0,5,1,10,8.0,5,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16900.0,2,0,2_0,2_0 +9802,3.0,3.0,29.0,111,47,42,0.0,711,0.0,0.0,0.0,382.0,2.0,2.0,1.0,3.0,1.8,5869.333867269622,0.0,0.0,25602.0,4,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14223.333333333332,2,0,2_0,2_0 +9803,0.0,0.0,52.0,111,85,31,0.0,7110,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1825.443855699042,0.0,0.0,20540.0,4,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,13693.333333333334,1,0,1_1,1_0 +9804,0.0,0.0,50.0,112,65,50,0.0,7113,0.0,0.0,0.0,462.0,2.0,4.0,1.0,3.0,1.8,948.0501540164937,3420.04,0.0,43959.0,1,3,9,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24421.666666666668,4,0,4_0,4_0 +9805,0.0,0.0,53.0,111,52,50,0.0,7114,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2369.2572279340484,0.0,0.0,49697.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33131.333333333336,5,0,5,5_0 +9806,2.0,3.0,20.0,111,84,41,0.0,7115,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3372.079664296773,2375.36,0.0,12816.0,3,3,9,7.0,1,3.0,1.0,0.0,0,0,0,1,0,1,0.0,3.0,12816.0,1,0,1_1,1_0 +9807,8.0,11.0,51.0,112,52,50,0.0,7117,0.0,280.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1878.7244834786147,0.0,0.0,30181.0,1,3,6,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20120.666666666668,3,0,3_0,3_0 +9808,3.0,6.0,66.0,111,75,31,0.0,7118,0.0,0.0,130.0,0.0,0.0,5.0,0.0,2.0,1.5,1217.6051256043993,2132.0,0.0,35682.0,5,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23788.0,3,0,3_0,3_0 +9809,0.0,0.0,51.0,112,37,31,0.0,7119,0.0,0.0,0.0,0.0,3.0,6.0,4.0,7.0,3.8,2165.0840418794037,1560.0,0.0,92716.0,1,1,10,2.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24398.947368421053,4,0,4_0,4_0 +9810,0.0,0.0,36.0,112,43,44,0.0,712,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1970.476588462727,3665.4799999999996,0.0,39490.0,1,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17169.565217391304,2,0,2_0,2_1 +9811,0.0,0.0,62.0,111,74,30,0.0,7120,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2296.2624914967087,1222.0,0.0,125051.0,5,1,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,62525.5,5,0,5,5_0 +9812,0.0,6.0,70.0,112,78,50,2.0,7121,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2321.8643663603652,2748.2000000000003,4000.0,30738.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,20492.0,3,0,3_0,3_1 +9813,1.0,5.0,60.0,111,52,41,2.0,7122,0.0,100.0,0.0,534.0,1.0,4.0,0.0,1.0,1.0,1881.234575899019,1884.48,9900.0,27161.0,1,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,27161.0,4,0,4_0,4_0 +9814,6.0,13.0,62.0,111,38,10,0.0,7123,0.0,10.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2440.615225084805,2340.0,0.0,141570.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,94380.0,5,0,5,5_0 +9815,1.0,7.0,58.0,111,,50,2.0,7124,0.0,150.0,270.0,0.0,0.0,5.0,1.0,2.0,1.5,1094.3954349422977,0.0,6000.0,233.0,8,1,7,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,155.33333333333334,1,0,1_0,1_0 +9816,0.0,0.0,33.0,111,64,50,1.0,7125,0.0,12.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,1953.1024680871687,1040.0,11890.0,37190.0,1,2,5,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,17709.52380952381,2,0,2_0,2_0 +9817,10.0,12.0,47.0,111,55,31,0.0,7128,0.0,0.0,200.0,0.0,1.0,3.0,0.0,1.0,1.0,2644.9342090120567,2340.0,0.0,26779.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,26779.0,4,0,4_0,4_0 +9818,2.0,2.0,76.0,400,74,30,0.0,7129,0.0,160.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1942.664986404775,0.0,0.0,36360.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24240.0,4,0,4_0,4_1 +9819,0.0,0.0,79.0,300,77,50,0.0,713,0.0,0.0,0.0,610.0,0.0,4.0,0.0,1.0,1.0,3024.9418847053425,0.0,0.0,18210.0,5,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18210.0,2,0,2_0,2_0 +9820,0.0,0.0,47.0,112,47,42,1.0,7133,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2336.568077146375,2594.7999999999997,21000.0,76152.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30460.8,4,0,4_0,4_1 +9821,4.0,16.0,45.0,112,46,31,0.0,7134,0.0,0.0,140.0,0.0,1.0,5.0,2.0,4.0,2.3,2445.721242100678,1680.64,0.0,39453.0,4,1,9,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,17153.478260869568,2,0,2_0,2_0 +9822,0.0,0.0,40.0,120,56,50,0.0,7135,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,586.3383972730871,520.0,0.0,16550.0,4,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,12730.76923076923,1,0,1_1,1_1 +9823,10.0,15.0,70.0,111,75,50,0.0,7136,0.0,1160.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1675.4726795266183,2081.56,0.0,37612.0,5,1,7,5.0,3,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,25074.666666666668,4,0,4_0,4_0 +9824,4.0,4.0,29.0,111,23,44,0.0,7137,0.0,1000.0,500.0,744.0,2.0,2.0,0.0,2.0,1.5,5135.318460117476,0.0,0.0,43465.0,1,3,10,8.0,3,2.0,1.0,1.0,0,0,0,0,1,1,1.0,1.0,28976.666666666668,4,0,4_1,4_0 +9825,3.0,15.0,77.0,111,77,31,0.0,7138,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1838.7734879840048,2190.76,0.0,36487.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,24324.666666666668,4,0,4_0,4_0 +9826,0.0,0.0,39.0,111,64,41,0.0,714,0.0,0.0,0.0,0.0,2.0,3.0,4.0,6.0,2.7,1811.8913410793625,2080.0,0.0,40134.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14864.444444444443,2,0,2_1,2_0 +9827,10.0,10.0,61.0,111,43,30,0.0,7140,0.0,300.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2396.2589668058763,0.0,0.0,40304.0,4,2,6,5.0,1,2.0,1.0,0.0,0,0,1,0,0,0,1.0,1.0,40304.0,5,0,5,5_0 +9828,5.0,5.0,92.0,111,75,70,0.0,7141,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1937.378336246179,0.0,0.0,27798.0,5,1,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,18532.0,2,0,2_0,2_0 +9829,9.0,9.0,65.0,120,71,50,0.0,7142,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,2356.3699898795985,0.0,0.0,27685.0,5,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,18456.666666666668,2,0,2_0,2_1 +9830,20.0,20.0,82.0,112,86,70,0.0,7144,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1778.9376263380987,0.0,0.0,11414.0,5,1,8,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,11414.0,1,0,1_0,1_1 +9831,1.0,1.0,55.0,112,47,60,0.0,7145,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3906.904255943885,779.48,0.0,21870.0,1,2,8,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14580.0,2,0,2_0,2_0 +9832,1.0,1.0,69.0,111,72,71,1.0,7146,0.0,0.0,25.0,0.0,0.0,3.0,0.0,2.0,1.5,1720.2513198677943,0.0,7000.0,18376.0,5,1,7,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,12250.666666666666,1,0,1_0,1_0 +9833,1.0,19.0,52.0,111,68,50,2.0,7147,0.0,200.0,0.0,164.0,1.0,2.0,0.0,1.0,1.0,3006.591802788651,0.0,4500.0,5992.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,5992.0,1,0,1_1,1_0 +9834,10.0,10.0,51.0,120,62,50,0.0,7148,0.0,110.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,1628.6660968324043,2496.0,0.0,88299.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29433.0,4,0,4_0,4_1 +9835,0.0,0.0,60.0,111,78,70,0.0,7149,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2594.9937305982307,0.0,0.0,24746.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16497.333333333332,2,0,2_0,2_0 +9836,3.0,11.0,22.0,111,85,60,0.0,715,0.0,0.0,0.0,0.0,0.0,1.0,3.0,4.0,1.9,1603.1446432314883,0.0,0.0,14590.0,6,4,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,7678.947368421053,1,0,1_0,1_0 +9837,11.0,11.0,76.0,111,74,50,0.0,7150,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2128.570088166044,2600.0,0.0,42452.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,28301.333333333332,4,0,4_0,4_0 +9838,1.0,2.0,71.0,300,72,50,0.0,7151,0.0,110.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1317.566912317689,2359.76,0.0,21535.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14356.666666666666,2,0,2_0,2_0 +9839,0.0,0.0,57.0,211,55,41,0.0,7153,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1084.432144351912,3640.0,0.0,27299.0,1,2,1,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18199.333333333332,2,0,2_0,2_0 +9840,5.0,5.0,40.0,111,54,31,0.0,7154,0.0,0.0,0.0,0.0,1.0,7.0,3.0,5.0,2.4,2072.74468885069,2600.52,0.0,98158.0,2,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,40899.16666666667,5,0,5,5_0 +9841,5.0,6.0,30.0,111,21,44,0.0,7155,0.0,150.0,0.0,125.0,2.0,2.0,0.0,2.0,1.5,3661.8275197661037,0.0,0.0,25448.0,1,3,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,16965.333333333332,2,0,2_1,2_0 +9842,3.0,3.0,50.0,111,42,50,0.0,7156,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,870.2699292349189,1560.0,0.0,10670.0,4,4,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,8207.692307692307,1,0,1_0,1_0 +9843,1.0,16.0,47.0,400,47,31,2.0,7157,0.0,0.0,250.0,0.0,2.0,5.0,2.0,4.0,2.3,2153.050903242168,1254.24,1000.0,54371.0,1,2,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,23639.565217391308,3,0,3_0,3_0 +9844,0.0,0.0,84.0,120,75,71,0.0,7158,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3994.231665057254,2600.0,0.0,25085.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25085.0,4,0,4_0,4_1 +9845,10.0,10.0,67.0,111,75,31,0.0,7159,0.0,450.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1518.3963278934916,2080.0,0.0,46226.0,5,1,5,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,30817.333333333332,4,0,4_0,4_0 +9846,1.0,1.0,50.0,112,85,50,1.0,716,0.0,250.0,200.0,0.0,0.0,3.0,0.0,1.0,1.0,4584.158541273618,0.0,12600.0,9306.0,7,3,8,1.0,1,3.0,0.0,1.0,0,1,0,0,0,1,2.0,1.0,9306.0,1,0,1_1,1_0 +9847,9.0,10.0,53.0,111,52,42,0.0,7160,0.0,160.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2100.255712850932,0.0,0.0,17961.0,1,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,17961.0,2,0,2_0,2_0 +9848,2.0,2.0,46.0,112,46,71,0.0,7161,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1737.4509740853948,1773.2,0.0,27200.0,1,2,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18133.333333333332,2,0,2_0,2_1 +9849,5.0,5.0,32.0,111,47,50,0.0,7162,0.0,250.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,3876.4758247044224,4420.0,0.0,41788.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19899.04761904762,3,0,3_0,3_0 +9850,7.0,7.0,37.0,112,46,31,0.0,7163,0.0,100.0,120.0,0.0,2.0,6.0,2.0,4.0,2.1,2373.5524205719375,4515.16,0.0,40564.0,1,2,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19316.190476190477,3,0,3_0,3_1 +9851,0.0,0.0,69.0,120,78,50,0.0,7164,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1647.983056649513,2236.0,0.0,29374.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19582.666666666668,3,0,3_0,3_0 +9852,8.0,11.0,68.0,111,71,71,0.0,7165,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2207.4803966600107,0.0,0.0,12502.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,12502.0,1,0,1_0,1_0 +9853,4.0,8.0,35.0,111,55,50,0.0,7166,0.0,150.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3801.08953832286,2340.0,0.0,30887.0,1,1,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,14708.095238095237,2,0,2_0,2_0 +9854,0.0,0.0,65.0,111,77,71,0.0,7167,0.0,0.0,0.0,373.0,0.0,1.0,0.0,1.0,1.0,4736.221081142221,0.0,0.0,19542.0,4,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,19542.0,3,0,3_1,3_0 +9855,0.0,0.0,31.0,300,38,12,0.0,7168,0.0,0.0,0.0,255.0,2.0,4.0,1.0,3.0,1.8,977.3828641587847,1877.7199999999998,0.0,46414.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,25785.555555555555,4,0,4_1,4_1 +9856,0.0,8.0,71.0,300,72,50,2.0,717,0.0,220.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1809.7959587598248,0.0,7000.0,25027.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,16684.666666666668,2,0,2_0,2_1 +9857,19.0,19.0,35.0,120,46,20,0.0,7170,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2687.883896914656,0.0,0.0,56483.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26896.666666666664,4,0,4_0,4_1 +9858,0.0,13.0,65.0,111,78,71,2.0,7171,0.0,0.0,0.0,480.0,0.0,3.0,0.0,2.0,1.5,2512.198243910521,1560.0,1000.0,22934.0,5,3,8,6.0,3,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,15289.333333333334,2,0,2_0,2_0 +9859,0.0,0.0,59.0,120,75,50,0.0,7173,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1771.5377906378083,0.0,0.0,67376.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,44917.333333333336,5,0,5,5_0 +9860,3.0,3.0,30.0,111,46,43,0.0,7175,0.0,0.0,0.0,550.0,2.0,3.0,1.0,3.0,1.8,3154.1978947100624,0.0,0.0,42770.0,1,3,8,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,23761.11111111111,3,0,3_0,3_0 +9861,0.0,0.0,62.0,300,52,50,0.0,7176,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1916.4573665782975,3640.0,0.0,12694.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12694.0,1,0,1_0,1_1 +9862,0.0,0.0,43.0,111,42,30,0.0,7179,0.0,0.0,0.0,0.0,3.0,9.0,3.0,5.0,2.8,1746.9980778932634,2652.0,0.0,32790.0,1,2,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11710.714285714286,1,0,1_0,1_0 +9863,3.0,3.0,22.0,111,43,30,0.0,718,0.0,0.0,0.0,550.0,2.0,4.0,0.0,2.0,1.5,1305.108769643165,0.0,0.0,36060.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24040.0,4,0,4_0,4_0 +9864,1.0,13.0,71.0,111,74,30,2.0,7180,0.0,99999.0,99999.0,0.0,0.0,6.0,0.0,2.0,1.5,1405.384696690355,1950.0,4000.0,62017.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,41344.666666666664,5,0,5,5_0 +9865,0.0,0.0,66.0,300,74,50,0.0,7181,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2289.2556611122923,0.0,0.0,27021.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27021.0,4,0,4_0,4_0 +9866,8.0,8.0,52.0,111,56,60,0.0,7182,0.0,0.0,0.0,88.0,1.0,1.0,0.0,1.0,1.0,2263.0708315703537,0.0,0.0,14764.0,1,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,14764.0,2,0,2_1,2_0 +9867,1.0,13.0,62.0,111,74,41,2.0,7183,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1902.209785189811,0.0,2000.0,39230.0,5,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26153.333333333332,4,0,4_0,4_0 +9868,1.0,1.0,48.0,112,13,50,1.0,7184,0.0,0.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,1910.991302973753,5772.52,16490.0,91364.0,1,1,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,36545.6,5,0,5,5_1 +9869,9.0,13.0,70.0,300,78,70,0.0,7185,0.0,0.0,360.0,0.0,0.0,3.0,0.0,1.0,1.0,2022.6103548112937,2587.52,0.0,14910.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,14910.0,2,0,2_0,2_1 +9870,0.0,22.0,56.0,112,23,20,0.0,7187,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2690.9163488465256,3016.0,0.0,23184.0,1,3,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23184.0,3,0,3_0,3_1 +9871,6.0,7.0,54.0,112,48,42,0.0,7188,146.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1720.2626637709184,5108.48,0.0,54727.0,1,1,4,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,36484.666666666664,5,0,5,5_1 +9872,16.0,16.0,29.0,112,65,31,0.0,7189,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3086.375649323156,0.0,0.0,19162.0,1,1,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19162.0,3,0,3_0,3_0 +9873,3.0,3.0,68.0,112,75,41,0.0,719,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1692.4165622180096,0.0,0.0,36990.0,5,1,7,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,24660.0,4,0,4_0,4_0 +9874,5.0,7.0,44.0,112,46,43,0.0,7190,0.0,400.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,451.90134868828426,3047.2,0.0,62942.0,1,2,7,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,31471.0,4,0,4_0,4_0 +9875,15.0,25.0,69.0,112,78,71,0.0,7191,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1997.7171514646293,0.0,0.0,28603.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19068.666666666668,3,0,3_0,3_0 +9876,1.0,8.0,78.0,300,77,50,2.0,7192,0.0,30.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2229.8004966521867,0.0,4500.0,31296.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20864.0,3,0,3_0,3_1 +9877,0.0,0.0,84.0,400,72,44,0.0,7194,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2932.0539161203637,1300.0,0.0,20039.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13359.333333333334,1,0,1_0,1_1 +9878,1.0,1.0,37.0,112,63,71,1.0,7195,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2000.039174777956,0.0,14500.0,35139.0,1,2,10,5.0,4,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,16732.85714285714,2,0,2_0,2_0 +9879,10.0,10.0,64.0,112,77,50,0.0,7197,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3263.139150078076,2674.36,0.0,35848.0,5,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,23898.666666666668,4,0,4_0,4_0 +9880,0.0,0.0,30.0,300,52,60,0.0,7198,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,460.20212327868154,0.0,0.0,21324.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,16403.076923076922,2,0,2_1,2_1 +9881,0.0,0.0,62.0,222,72,50,0.0,72,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1497.0068606314055,0.0,0.0,23846.0,5,1,1,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15897.333333333334,2,0,2_0,2_1 +9882,0.0,6.0,85.0,211,75,30,2.0,720,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2576.1613298302555,0.0,3000.0,24631.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,16420.666666666668,2,0,2_0,2_0 +9883,7.0,9.0,63.0,112,72,50,0.0,7200,0.0,50.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3080.5562166283253,1560.0,0.0,20377.0,5,1,8,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,13584.666666666666,1,0,1_0,1_0 +9884,4.0,6.0,49.0,111,46,50,0.0,7201,0.0,100.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2460.268928135106,2600.0,0.0,39390.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,39390.0,5,0,5,5_0 +9885,0.0,0.0,61.0,212,,44,0.0,7202,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1753.949095054417,0.0,0.0,29280.0,5,1,1,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29280.0,4,0,4_0,4_1 +9886,3.0,7.0,62.0,111,74,60,0.0,7204,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2865.4063406372316,0.0,0.0,21318.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14212.0,2,0,2_0,2_0 +9887,22.0,22.0,52.0,112,52,50,0.0,7206,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2848.8741605408813,0.0,0.0,21706.0,1,1,9,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21706.0,3,0,3_0,3_0 +9888,17.0,25.0,66.0,112,71,50,0.0,7208,0.0,99999.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2354.3215247472217,2740.4,0.0,32568.0,5,1,8,0.0,3,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,21712.0,3,0,3_0,3_1 +9889,0.0,0.0,30.0,111,43,33,0.0,7209,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1317.6975666256033,0.0,0.0,51639.0,1,2,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,34426.0,5,0,5,5_0 +9890,0.0,0.0,36.0,111,37,30,0.0,721,0.0,0.0,0.0,339.0,1.0,2.0,0.0,1.0,1.0,2488.3129086145877,0.0,0.0,24967.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24967.0,4,0,4_0,4_0 +9891,2.0,10.0,67.0,300,78,71,0.0,7211,0.0,0.0,0.0,248.0,0.0,2.0,0.0,1.0,1.0,2426.923816457133,0.0,0.0,15310.0,5,3,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,15310.0,2,0,2_1,2_0 +9892,4.0,4.0,33.0,111,62,50,0.0,7212,0.0,199996.0,0.0,0.0,1.0,3.0,3.0,4.0,1.9,807.3418402715293,1612.0,0.0,16009.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,8425.789473684212,1,0,1_1,1_0 +9893,20.0,28.0,54.0,111,75,33,0.0,7214,0.0,100.0,0.0,800.0,0.0,5.0,0.0,1.0,1.0,2688.42966422781,0.0,0.0,17434.0,7,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,17434.0,2,0,2_0,2_0 +9894,2.0,15.0,74.0,111,86,70,0.0,7215,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2195.0156315126465,0.0,0.0,12752.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,12752.0,1,0,1_1,1_0 +9895,1.0,1.0,47.0,120,65,50,0.0,7216,0.0,100167.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2248.989482996794,2364.96,0.0,45405.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25225.0,4,0,4_0,4_1 +9896,0.0,0.0,32.0,111,85,71,0.0,7217,0.0,0.0,0.0,51.0,0.0,1.0,1.0,2.0,1.3,862.6713904278787,0.0,0.0,13278.0,6,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10213.846153846154,1,0,1_1,1_0 +9897,4.0,9.0,25.0,111,55,31,0.0,7220,0.0,0.0,260.0,675.0,1.0,2.0,1.0,2.0,1.3,1112.8235707022613,0.0,0.0,17241.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,13262.307692307691,1,0,1_0,1_0 +9898,0.0,0.0,93.0,221,71,71,0.0,7222,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1901.695960146958,3328.0,0.0,20532.0,5,1,3,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20532.0,3,0,3_0,3_0 +9899,6.0,6.0,68.0,111,77,60,0.0,7225,0.0,0.0,199998.0,0.0,0.0,5.0,0.0,1.0,1.0,2223.675671508863,0.0,0.0,21000.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,21000.0,3,0,3_0,3_0 +9900,4.0,4.0,84.0,111,86,71,0.0,7227,0.0,0.0,100.0,0.0,0.0,5.0,0.0,1.0,1.0,1840.642810989014,0.0,0.0,7798.0,6,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,7798.0,1,0,1_0,1_0 +9901,3.0,3.0,62.0,111,33,60,0.0,7228,0.0,125.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2092.2779399252436,0.0,0.0,33610.0,1,1,7,6.0,1,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,33610.0,5,0,5,5_0 +9902,0.0,0.0,32.0,111,52,42,0.0,723,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,918.4922129810891,0.0,0.0,22516.0,1,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14072.5,2,0,2_1,2_0 +9903,2.0,13.0,57.0,120,52,43,0.0,7230,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1987.7306899331968,3276.0,0.0,36051.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18025.5,2,0,2_0,2_1 +9904,0.0,3.0,52.0,111,55,50,2.0,7231,0.0,100299.0,0.0,447.0,1.0,4.0,0.0,1.0,1.0,2707.2800559936827,0.0,10000.0,20390.0,1,3,4,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20390.0,3,0,3_0,3_0 +9905,0.0,0.0,54.0,120,52,41,0.0,7232,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2676.8633516826694,3276.0,0.0,21870.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21870.0,3,0,3_0,3_1 +9906,4.0,4.0,45.0,111,54,50,0.0,7233,0.0,100.0,0.0,225.0,2.0,4.0,1.0,2.0,1.5,3332.5456191334456,1282.32,0.0,21207.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14138.0,2,0,2_1,2_0 +9907,0.0,0.0,55.0,112,35,60,0.0,7234,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1581.9412742005554,0.0,0.0,11543.0,1,1,7,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11543.0,1,0,1_0,1_0 +9908,7.0,7.0,57.0,111,78,71,0.0,7237,0.0,0.0,0.0,76.0,1.0,5.0,1.0,2.0,1.5,3403.715873530349,0.0,0.0,12304.0,6,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,8202.666666666666,1,0,1_1,1_0 +9909,11.0,12.0,20.0,111,84,41,0.0,7238,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3275.373600857222,0.0,0.0,1088.0,3,3,8,7.0,5,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,725.3333333333334,1,0,1_1,1_0 +9910,6.0,13.0,24.0,111,54,31,0.0,7239,0.0,120.0,0.0,690.0,2.0,2.0,0.0,2.0,1.5,4068.0675450465674,0.0,0.0,44909.0,1,3,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,29939.333333333332,4,0,4_0,4_0 +9911,0.0,17.0,33.0,111,65,71,0.0,724,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2964.8281499932923,0.0,0.0,37692.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20940.0,3,0,3_0,3_0 +9912,1.0,9.0,75.0,111,72,50,2.0,7240,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1292.1964522751878,3640.0,2000.0,22340.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14893.333333333334,2,0,2_0,2_0 +9913,0.0,41.0,61.0,111,75,50,0.0,7241,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2266.6430576597913,3640.0,0.0,33210.0,5,1,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16605.0,2,0,2_0,2_0 +9914,3.0,3.0,44.0,400,63,42,0.0,7242,0.0,2500.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,772.7577310420438,0.0,0.0,7132.0,4,3,0,0.0,2,3.0,0.0,1.0,1,0,0,0,0,1,0.0,3.0,4754.666666666667,1,0,1_1,1_1 +9915,2.0,3.0,57.0,111,52,50,0.0,7243,0.0,0.0,200.0,0.0,2.0,6.0,0.0,2.0,1.5,1671.4909511225537,4055.48,0.0,48906.0,1,2,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,32604.0,5,0,5,5_0 +9916,2.0,9.0,46.0,120,67,60,0.0,7245,0.0,200.0,60.0,0.0,1.0,5.0,1.0,4.0,2.5,4130.936914506107,1627.6000000000001,0.0,47471.0,1,1,0,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,18988.4,3,0,3_0,3_1 +9917,7.0,7.0,44.0,111,68,71,0.0,7247,0.0,0.0,0.0,0.0,1.0,2.0,1.0,3.0,1.8,3644.183915257782,0.0,0.0,14378.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,7987.777777777777,1,0,1_1,1_0 +9918,9.0,9.0,46.0,111,85,60,0.0,7248,0.0,99999.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3500.9359160139857,0.0,0.0,12456.0,7,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,12456.0,1,0,1_1,1_0 +9919,3.0,8.0,27.0,111,85,50,0.0,7250,0.0,99999.0,0.0,0.0,0.0,2.0,2.0,3.0,1.6,739.6162467998358,0.0,0.0,14100.0,6,3,6,5.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,8812.5,1,0,1_1,1_0 +9920,2.0,2.0,82.0,111,74,70,0.0,7251,0.0,0.0,200.0,0.0,1.0,3.0,0.0,2.0,1.5,2960.177372886077,1721.72,0.0,42021.0,5,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,28014.0,4,0,4_0,4_0 +9921,2.0,2.0,33.0,111,84,30,0.0,7253,0.0,0.0,0.0,9.0,0.0,3.0,1.0,2.0,1.3,1087.3992705660821,0.0,0.0,14884.0,3,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,11449.23076923077,1,0,1_1,1_0 +9922,0.0,0.0,37.0,111,55,31,0.0,7254,0.0,0.0,0.0,217.0,1.0,4.0,2.0,3.0,1.6,658.9739382903819,0.0,0.0,26240.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16400.0,2,0,2_1,2_0 +9923,3.0,4.0,53.0,111,43,33,0.0,7255,0.0,700.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,2618.203627817262,3068.0,0.0,94928.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,37971.2,5,0,5,5_0 +9924,10.0,10.0,56.0,111,47,42,0.0,7256,0.0,100.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1622.787834106451,3996.2,0.0,49115.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,32743.333333333332,5,0,5,5_0 +9925,4.0,6.0,92.0,120,75,41,0.0,7258,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1894.7022604894528,0.0,0.0,54117.0,5,4,0,1.0,3,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,36078.0,5,0,5,5_0 +9926,0.0,0.0,76.0,111,78,71,0.0,7259,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3327.40515903246,0.0,0.0,26800.0,5,1,5,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13400.0,1,0,1_0,1_0 +9927,0.0,0.0,63.0,112,68,71,0.0,726,0.0,12.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1956.8845481105684,0.0,0.0,8628.0,4,3,8,2.0,1,2.0,1.0,1.0,0,1,0,0,0,1,1.0,1.0,8628.0,1,0,1_1,1_0 +9928,2.0,7.0,69.0,111,75,41,0.0,7260,0.0,600.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1220.8519153013926,1380.08,0.0,24660.0,5,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24660.0,4,0,4_0,4_0 +9929,2.0,2.0,56.0,112,37,60,0.0,7261,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2903.0179459661954,4602.0,0.0,80697.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,53798.0,5,0,5,5_1 +9930,4.0,4.0,33.0,111,34,0,0.0,7262,0.0,120.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2298.0296208825894,2244.3199999999997,0.0,41470.0,1,4,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27646.666666666668,4,0,4_0,4_0 +9931,11.0,11.0,71.0,300,74,70,0.0,7263,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1725.5495140916196,670.8000000000001,0.0,34960.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23306.666666666668,3,0,3_0,3_1 +9932,5.0,5.0,48.0,111,37,44,0.0,7264,0.0,0.0,0.0,0.0,2.0,5.0,2.0,3.0,1.8,712.9005094238719,0.0,0.0,12814.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,7118.888888888889,1,0,1_1,1_0 +9933,2.0,5.0,46.0,112,37,50,0.0,7266,0.0,130.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,1933.1715101505513,0.0,0.0,209027.0,1,3,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,99536.66666666666,5,0,5,5_0 +9934,0.0,0.0,47.0,111,37,50,0.0,7267,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1915.6807232184876,2231.3199999999997,0.0,56163.0,1,2,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26744.285714285714,4,0,4_0,4_0 +9935,4.0,6.0,55.0,111,22,31,0.0,7268,0.0,584.0,30.0,0.0,4.0,6.0,2.0,4.0,2.5,1530.2861703821939,4761.639999999999,0.0,66190.0,1,1,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,26476.0,4,0,4_0,4_0 +9936,5.0,5.0,24.0,111,38,12,0.0,727,0.0,0.0,0.0,650.0,2.0,3.0,0.0,2.0,1.5,3895.5290458905492,0.0,0.0,42239.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,28159.333333333332,4,0,4_0,4_0 +9937,0.0,0.0,74.0,111,75,33,0.0,7272,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1653.5016453257122,4680.0,0.0,54466.0,4,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,36310.666666666664,5,0,5,5_0 +9938,7.0,7.0,86.0,112,72,50,0.0,7273,0.0,0.0,0.0,700.0,0.0,3.0,0.0,2.0,1.5,2971.6905358816875,0.0,0.0,28352.0,5,3,9,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18901.333333333332,3,0,3_0,3_0 +9939,4.0,8.0,41.0,111,22,20,0.0,7276,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1893.347994560341,0.0,0.0,79670.0,1,2,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,44261.11111111111,5,0,5,5_0 +9940,16.0,16.0,66.0,111,77,71,0.0,7277,0.0,0.0,0.0,357.0,0.0,2.0,0.0,1.0,1.0,2688.743258319992,0.0,0.0,31511.0,5,3,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,0,3.0,0.0,31511.0,4,0,4_0,4_0 +9941,0.0,0.0,39.0,112,31,10,0.0,728,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2203.4256246844793,0.0,0.0,70170.0,1,2,5,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33414.28571428571,5,0,5,5_1 +9942,1.0,1.0,86.0,112,77,50,2.0,7280,0.0,1350.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2235.275258334542,0.0,13000.0,30968.0,5,4,9,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,30968.0,4,0,4_0,4_0 +9943,21.0,21.0,66.0,400,75,31,0.0,7281,0.0,0.0,30.0,0.0,0.0,6.0,0.0,2.0,1.5,1774.222447017829,0.0,0.0,68413.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,45608.666666666664,5,0,5,5_1 +9944,5.0,5.0,24.0,222,52,43,0.0,7283,0.0,0.0,50.0,0.0,1.0,6.0,1.0,3.0,2.0,1636.7637836320348,0.0,0.0,41425.0,1,1,1,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20712.5,3,0,3_0,3_1 +9945,0.0,0.0,32.0,111,65,71,0.0,7286,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2057.920292985586,3120.0,0.0,40031.0,1,3,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26687.333333333332,4,0,4_0,4_0 +9946,0.0,0.0,19.0,111,85,60,0.0,7287,0.0,0.0,0.0,0.0,0.0,2.0,2.0,3.0,1.6,1048.8054563970393,0.0,0.0,17871.0,6,3,7,5.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11169.375,1,0,1_1,1_0 +9947,0.0,11.0,79.0,111,71,71,2.0,7288,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2042.932439227942,0.0,7000.0,17557.0,5,1,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,17557.0,2,0,2_0,2_0 +9948,0.0,0.0,28.0,111,63,43,0.0,7290,0.0,0.0,0.0,443.0,2.0,3.0,0.0,2.0,1.5,3102.0507138118537,2756.0,0.0,38572.0,1,3,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25714.666666666668,4,0,4_0,4_0 +9949,0.0,0.0,42.0,111,43,33,0.0,7291,0.0,0.0,0.0,525.0,1.0,3.0,2.0,3.0,1.6,1276.2561006444369,2080.0,0.0,39070.0,1,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24418.75,4,0,4_0,4_0 +9950,0.0,0.0,59.0,111,33,42,0.0,7292,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1674.9461673683036,0.0,0.0,64410.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,42940.0,5,0,5,5_0 +9951,0.0,0.0,44.0,111,37,30,0.0,7294,0.0,0.0,0.0,598.0,1.0,5.0,2.0,3.0,1.8,895.1714878850256,3224.52,0.0,22612.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12562.222222222223,1,0,1_1,1_0 +9952,4.0,4.0,81.0,112,78,50,0.0,7298,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1889.5093114978545,803.4,0.0,44462.0,5,1,8,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,29641.333333333332,4,0,4_0,4_0 +9953,15.0,15.0,39.0,120,38,60,0.0,73,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2536.102174771881,3570.3199999999997,0.0,38177.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18179.52380952381,2,0,2_0,2_1 +9954,12.0,12.0,80.0,111,74,60,0.0,730,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2718.586183837672,0.0,0.0,44465.0,5,3,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,29643.333333333332,4,0,4_0,4_0 +9955,0.0,0.0,44.0,111,46,31,0.0,7300,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1550.1349956433849,0.0,0.0,23600.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23600.0,3,0,3_0,3_0 +9956,1.0,1.0,29.0,111,37,12,1.0,7302,0.0,440.0,0.0,0.0,5.0,3.0,3.0,5.0,3.0,3897.0963801707426,0.0,14000.0,149117.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,49705.666666666664,5,0,5,5_0 +9957,0.0,20.0,62.0,221,72,50,2.0,7303,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,2243.777897130104,0.0,600.0,35015.0,5,1,3,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,23343.333333333332,3,0,3_0,3_0 +9958,1.0,1.0,22.0,211,56,50,1.0,7304,0.0,150.0,0.0,0.0,1.0,0.0,1.0,2.0,1.3,1261.3223515464467,3016.0,18000.0,11704.0,4,4,2,3.0,2,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,9003.076923076922,1,0,1_0,1_0 +9959,5.0,11.0,47.0,111,54,42,0.0,7307,0.0,400.0,300.0,0.0,4.0,4.0,2.0,4.0,2.5,2887.199638639596,0.0,0.0,54649.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21859.6,3,0,3_0,3_0 +9960,3.0,19.0,34.0,111,62,50,0.0,7308,0.0,0.0,60.0,680.0,2.0,3.0,2.0,4.0,2.1,2803.8178442328353,0.0,0.0,63443.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,30210.952380952378,4,0,4_0,4_0 +9961,1.0,1.0,46.0,111,43,20,2.0,731,0.0,0.0,99998.0,0.0,2.0,2.0,0.0,2.0,1.5,2419.5308616762377,0.0,3000.0,48278.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,32185.333333333332,5,0,5,5_0 +9962,1.0,1.0,28.0,111,54,43,0.0,7310,450.0,0.0,0.0,0.0,1.0,3.0,3.0,4.0,1.9,3061.728641839581,0.0,0.0,33736.0,1,3,8,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,17755.78947368421,2,0,2_1,2_0 +9963,0.0,0.0,69.0,111,74,20,0.0,7312,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1659.5239775806162,0.0,0.0,63086.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,42057.333333333336,5,0,5,5_0 +9964,1.0,1.0,59.0,120,62,50,1.0,7313,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2516.244883230781,3640.0,23500.0,76700.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,38350.0,5,0,5,5_1 +9965,0.0,0.0,44.0,120,64,42,0.0,7314,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1578.5197735242564,1498.12,0.0,51681.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19877.30769230769,3,0,3_0,3_0 +9966,10.0,10.0,36.0,112,54,31,0.0,7315,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,471.10357838234887,3121.56,0.0,19015.0,1,3,9,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,2.0,0.0,14626.923076923076,2,0,2_1,2_1 +9967,16.0,20.0,43.0,111,85,60,0.0,7316,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,2.0,890.3819781418705,780.0,0.0,15820.0,6,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,7910.0,1,0,1_1,1_0 +9968,3.0,19.0,66.0,111,77,70,0.0,7317,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1343.4703737828972,0.0,0.0,34713.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23142.0,3,0,3_0,3_0 +9969,7.0,7.0,36.0,112,46,12,0.0,7318,0.0,0.0,150.0,0.0,1.0,4.0,1.0,2.0,1.3,2304.0908392836677,3120.0,0.0,40982.0,1,3,9,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,31524.615384615383,4,0,4_0,4_0 +9970,2.0,8.0,48.0,111,85,60,0.0,7319,0.0,1500.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,801.5969634864214,2668.64,0.0,10950.0,7,3,6,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,7300.0,1,0,1_1,1_0 +9971,3.0,3.0,69.0,111,31,44,0.0,7324,0.0,0.0,400.0,0.0,1.0,3.0,0.0,2.0,1.5,2017.153154043088,0.0,0.0,138894.0,1,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,92596.0,5,0,5,5_0 +9972,15.0,15.0,87.0,300,78,71,0.0,7325,0.0,0.0,50.0,0.0,0.0,8.0,0.0,1.0,1.0,3908.3977579004854,0.0,0.0,24521.0,5,4,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,24521.0,4,0,4_0,4_1 +9973,2.0,10.0,84.0,111,78,50,0.0,7326,0.0,600.0,0.0,273.0,0.0,3.0,0.0,2.0,1.5,2285.5258634409356,0.0,0.0,23556.0,5,3,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,15704.0,2,0,2_0,2_0 +9974,0.0,0.0,62.0,112,74,41,0.0,7327,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3559.3099544682022,1570.92,0.0,8120.0,5,1,5,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8120.0,1,0,1_0,1_1 +9975,6.0,11.0,53.0,111,38,20,0.0,7329,0.0,0.0,0.0,0.0,1.0,6.0,1.0,3.0,2.0,2837.92408528717,1511.12,0.0,82073.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,41036.5,5,0,5,5_0 +9976,0.0,0.0,19.0,111,56,41,0.0,733,0.0,0.0,0.0,223.0,1.0,2.0,0.0,1.0,1.0,3443.652754128455,0.0,0.0,12630.0,3,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12630.0,1,0,1_1,1_0 +9977,0.0,0.0,50.0,300,37,31,0.0,7330,0.0,0.0,0.0,0.0,2.0,9.0,2.0,4.0,2.5,1635.6266326452383,6768.32,0.0,76910.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30764.0,4,0,4_0,4_1 +9978,8.0,11.0,45.0,111,46,30,0.0,7331,0.0,340.0,0.0,440.0,1.0,4.0,1.0,2.0,1.3,3651.230286301527,3519.3599999999997,0.0,29500.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,22692.30769230769,3,0,3_0,3_0 +9979,11.0,11.0,34.0,111,54,42,0.0,7332,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,1480.2845497105727,0.0,0.0,21126.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,13203.75,1,0,1_1,1_0 +9980,1.0,3.0,37.0,300,47,20,2.0,7334,0.0,0.0,99999.0,0.0,2.0,5.0,3.0,5.0,2.4,2154.505013902808,7548.839999999999,11400.0,32799.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,13666.25,1,0,1_0,1_1 +9981,13.0,13.0,36.0,112,37,31,0.0,7335,0.0,0.0,99999.0,0.0,1.0,3.0,0.0,1.0,1.0,2087.208854798221,0.0,0.0,15299.0,4,1,9,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,15299.0,2,0,2_0,2_0 +9982,2.0,2.0,42.0,111,45,31,0.0,7336,0.0,100499.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1920.4667290410348,0.0,0.0,43510.0,1,2,7,6.0,4,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,20719.04761904762,3,0,3_0,3_0 +9983,16.0,16.0,34.0,300,43,20,0.0,7337,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2145.551036214992,7878.0,0.0,158170.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,87872.22222222222,5,0,5,5_1 +9984,3.0,15.0,54.0,111,65,50,0.0,7338,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1484.4599067208878,1040.0,0.0,22990.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,15326.666666666666,2,0,2_0,2_0 +9985,2.0,3.0,60.0,112,75,50,0.0,734,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2456.100807918273,0.0,0.0,21300.0,5,1,10,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,14200.0,2,0,2_0,2_0 +9986,0.0,0.0,34.0,111,31,20,0.0,7340,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,1462.0904635423894,6167.72,0.0,30994.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23841.53846153846,4,0,4_0,4_0 +9987,0.0,0.0,18.0,111,84,41,0.0,7341,0.0,0.0,0.0,30.0,0.0,1.0,0.0,1.0,1.0,2609.6009606336497,0.0,0.0,4348.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,4348.0,1,0,1_1,1_0 +9988,13.0,18.0,39.0,112,43,30,0.0,7342,0.0,0.0,0.0,0.0,1.0,2.0,2.0,3.0,1.6,688.2670643815898,0.0,0.0,17081.0,1,2,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,10675.625,1,0,1_1,1_1 +9989,0.0,0.0,27.0,112,46,30,0.0,7343,0.0,0.0,0.0,390.0,2.0,2.0,0.0,2.0,1.5,3930.5369821710087,3120.0,0.0,55745.0,1,3,6,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,37163.333333333336,5,0,5,5_0 +9990,1.0,1.0,62.0,112,78,60,1.0,7344,0.0,400.0,0.0,0.0,0.0,5.0,1.0,3.0,2.0,1908.978966021524,6275.36,22700.0,50800.0,5,1,6,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,25400.0,4,0,4_0,4_1 +9991,0.0,4.0,71.0,111,78,71,2.0,7345,0.0,250.0,400.0,0.0,0.0,4.0,0.0,2.0,1.5,4605.284369982805,0.0,8000.0,29411.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,19607.333333333332,3,0,3_0,3_0 +9992,0.0,0.0,80.0,111,77,70,0.0,7347,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1973.1383739957407,0.0,0.0,33938.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,33938.0,5,0,5,5_0 +9993,0.0,0.0,64.0,112,77,31,0.0,7348,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3721.5029875020127,2247.44,0.0,35704.0,5,1,7,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23802.666666666668,3,0,3_0,3_1 +9994,0.0,0.0,49.0,112,13,50,0.0,7350,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,2419.978067390911,0.0,0.0,42591.0,1,2,9,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,17746.25,2,0,2_1,2_1 +9995,18.0,18.0,60.0,211,56,71,0.0,7352,0.0,0.0,99999.0,0.0,2.0,4.0,0.0,2.0,1.5,1840.9947201970756,0.0,0.0,27716.0,1,1,1,2.0,3,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,18477.333333333332,2,0,2_0,2_0 +9996,9.0,9.0,55.0,112,52,60,0.0,7353,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1723.499879140011,0.0,0.0,19755.0,1,1,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19755.0,3,0,3_0,3_1 +9997,2.0,19.0,62.0,111,74,31,0.0,7354,0.0,20.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2595.700910833173,3900.0,0.0,81543.0,5,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,40771.5,5,0,5,5_0 +9998,7.0,20.0,38.0,300,33,41,0.0,7355,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2954.464080046026,0.0,0.0,45980.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21895.238095238095,3,0,3_0,3_1 +9999,0.0,0.0,53.0,111,52,31,0.0,7356,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3184.8959655652716,0.0,0.0,12083.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12083.0,1,0,1_1,1_0 +10000,6.0,9.0,91.0,111,75,30,0.0,7357,0.0,500.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2588.002857478212,0.0,0.0,29777.0,5,4,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,29777.0,4,0,4_0,4_0 +10001,10.0,10.0,27.0,111,56,50,0.0,7358,0.0,0.0,99999.0,301.0,1.0,3.0,1.0,3.0,1.8,1841.318464441346,520.0,0.0,23772.0,1,3,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,13206.666666666666,1,0,1_1,1_0 +10002,5.0,19.0,21.0,111,68,71,0.0,7359,0.0,100.0,250.0,0.0,1.0,2.0,1.0,2.0,1.3,1087.2857077029169,0.0,0.0,11819.0,4,3,5,4.0,2,5.0,0.0,0.0,0,0,1,0,0,1,2.0,3.0,9091.538461538461,1,0,1_1,1_0 +10003,7.0,7.0,69.0,112,77,50,0.0,7362,0.0,1000.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1749.3517020179215,0.0,0.0,20465.0,5,1,7,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20465.0,3,0,3_0,3_0 +10004,0.0,0.0,34.0,400,62,43,1.0,7363,0.0,392.0,186.0,0.0,2.0,4.0,2.0,4.0,2.1,2448.6232508394696,5886.4,11600.0,48057.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,22884.285714285714,3,0,3_0,3_1 +10005,5.0,5.0,53.0,111,46,43,0.0,7366,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,537.9257989174146,0.0,0.0,19300.0,1,2,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,12866.666666666666,1,0,1_0,1_0 +10006,4.0,4.0,77.0,111,78,71,0.0,7367,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3690.896609105597,0.0,0.0,13853.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13853.0,1,0,1_0,1_0 +10007,8.0,11.0,34.0,111,38,20,0.0,7368,0.0,0.0,0.0,930.0,2.0,3.0,0.0,2.0,1.5,6644.382953114868,0.0,0.0,57442.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,38294.666666666664,5,0,5,5_0 +10008,10.0,10.0,32.0,111,46,31,0.0,7369,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1649.1767562917223,1040.0,0.0,38939.0,1,2,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,18542.38095238095,2,0,2_0,2_0 +10009,3.0,7.0,78.0,111,77,70,0.0,737,0.0,350.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3335.937829369321,0.0,0.0,45156.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,30104.0,4,0,4_0,4_0 +10010,4.0,7.0,57.0,112,45,42,0.0,7370,0.0,99999.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2647.029473738415,0.0,0.0,55820.0,1,1,6,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,27910.0,4,0,4_0,4_0 +10011,0.0,0.0,52.0,111,68,71,0.0,7371,0.0,0.0,0.0,59.0,2.0,2.0,0.0,2.0,1.5,2743.0514500082063,0.0,0.0,28276.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,18850.666666666668,3,0,3_1,3_0 +10012,2.0,2.0,50.0,111,37,20,1.0,7372,0.0,0.0,0.0,2180.0,3.0,4.0,4.0,6.0,3.5,2486.3683938417275,0.0,24000.0,122780.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,35080.0,5,0,5,5_0 +10013,1.0,2.0,48.0,111,52,71,0.0,7373,0.0,550.0,0.0,285.0,1.0,3.0,0.0,1.0,1.0,1802.684666258416,0.0,0.0,21028.0,1,3,10,8.0,1,2.0,1.0,0.0,0,0,0,0,1,1,0.0,2.0,21028.0,3,0,3_1,3_0 +10014,13.0,13.0,29.0,112,37,31,0.0,7374,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2908.7942485587037,0.0,0.0,34976.0,1,2,6,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,34976.0,5,0,5,5_1 +10015,0.0,0.0,73.0,111,72,30,0.0,7375,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2070.690907529834,0.0,0.0,22267.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22267.0,3,0,3_0,3_0 +10016,4.0,4.0,63.0,300,78,50,0.0,7376,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2172.176030331746,1716.0,0.0,20427.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13618.0,1,0,1_0,1_1 +10017,3.0,11.0,62.0,111,72,31,0.0,7377,0.0,0.0,170.0,238.0,1.0,3.0,0.0,2.0,1.5,4921.799772328791,1560.0,0.0,35190.0,5,3,10,8.0,3,3.0,0.0,1.0,0,0,0,0,1,1,3.0,0.0,23460.0,3,0,3_1,3_0 +10018,8.0,10.0,58.0,400,72,60,0.0,7378,0.0,0.0,200.0,72.0,0.0,4.0,0.0,1.0,1.0,1799.684128102482,4816.76,0.0,12798.0,7,3,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,12798.0,1,0,1_1,1_1 +10019,0.0,0.0,75.0,111,74,50,0.0,7379,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1642.8019070892474,4438.2,0.0,64462.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,42974.666666666664,5,0,5,5_0 +10020,11.0,18.0,30.0,111,52,42,0.0,738,0.0,0.0,0.0,352.0,2.0,2.0,0.0,2.0,1.5,2628.131379368079,1040.0,0.0,30789.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20526.0,3,0,3_0,3_0 +10021,1.0,11.0,70.0,111,74,31,2.0,7381,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1644.2413158242966,2576.08,8000.0,67814.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,45209.333333333336,5,0,5,5_0 +10022,1.0,1.0,46.0,111,85,50,1.0,7382,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,742.358054439812,0.0,16000.0,16047.0,7,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,8023.5,1,0,1_1,1_0 +10023,1.0,12.0,50.0,111,38,42,0.0,7383,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1783.7279463711666,0.0,0.0,85419.0,1,2,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,42709.5,5,0,5,5_0 +10024,11.0,11.0,65.0,111,,50,0.0,7385,0.0,0.0,0.0,22.0,0.0,4.0,0.0,1.0,1.0,2015.6180226516346,0.0,0.0,12136.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,12136.0,1,0,1_1,1_0 +10025,7.0,7.0,38.0,111,37,20,0.0,7386,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,747.4666974987476,0.0,0.0,70633.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,33634.7619047619,5,0,5,5_0 +10026,0.0,0.0,40.0,112,67,43,0.0,7387,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,4869.292428137098,0.0,0.0,23592.0,4,3,9,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13106.666666666666,1,0,1_1,1_0 +10027,3.0,3.0,63.0,112,78,70,0.0,7389,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,4253.899006136049,2392.0,0.0,39226.0,5,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26150.666666666668,4,0,4_0,4_1 +10028,3.0,3.0,48.0,111,37,12,0.0,7390,0.0,99999.0,0.0,2050.0,2.0,4.0,3.0,5.0,2.8,2187.294080575173,0.0,0.0,63780.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,22778.57142857143,3,0,3_0,3_0 +10029,11.0,17.0,82.0,400,77,50,0.0,7391,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2263.5154854835264,0.0,0.0,34572.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,34572.0,5,0,5,5_0 +10030,0.0,0.0,21.0,111,52,50,0.0,7392,0.0,0.0,0.0,500.0,2.0,2.0,0.0,2.0,1.5,3261.459156110175,780.0,0.0,32619.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21746.0,3,0,3_0,3_0 +10031,4.0,10.0,67.0,112,75,50,0.0,7393,0.0,75.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2269.6244159792773,6996.6,0.0,36560.0,5,4,9,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,24373.333333333332,4,0,4_0,4_1 +10032,3.0,4.0,52.0,111,38,42,0.0,7394,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4181.957433725567,2496.0,0.0,52435.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,52435.0,5,0,5,5_0 +10033,6.0,10.0,68.0,112,77,70,0.0,7395,0.0,700.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2960.000779825001,1622.92,0.0,10544.0,5,1,8,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,10544.0,1,0,1_0,1_0 +10034,3.0,3.0,42.0,112,62,50,0.0,7397,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2407.6456801580307,5304.0,0.0,40486.0,1,2,10,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17602.608695652176,2,0,2_0,2_1 +10035,2.0,6.0,74.0,111,78,71,0.0,7398,0.0,35.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2368.015551520066,0.0,0.0,16968.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,16968.0,2,0,2_0,2_0 +10036,0.0,0.0,54.0,111,37,20,0.0,74,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2973.8092948770895,2191.7999999999997,0.0,83828.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,83828.0,5,0,5,5_0 +10037,7.0,7.0,37.0,111,11,50,0.0,740,0.0,0.0,99999.0,200.0,2.0,1.0,0.0,2.0,1.5,3368.9778221073834,1573.52,0.0,26030.0,1,3,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,17353.333333333332,2,0,2_0,2_0 +10038,3.0,5.0,74.0,111,78,50,0.0,7400,0.0,0.0,350.0,667.0,0.0,2.0,0.0,1.0,1.0,5241.235706630187,0.0,0.0,11072.0,5,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,11072.0,1,0,1_0,1_0 +10039,1.0,6.0,84.0,221,74,10,2.0,7403,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1561.0665480935027,2453.88,4000.0,30021.0,5,1,1,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20014.0,3,0,3_0,3_0 +10040,3.0,5.0,45.0,112,63,71,0.0,7405,0.0,199998.0,0.0,376.0,2.0,4.0,2.0,5.0,2.6,1444.1354623299687,0.0,0.0,46650.0,1,3,10,3.0,5,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,17942.30769230769,2,0,2_0,2_0 +10041,8.0,18.0,25.0,111,46,30,0.0,7406,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2482.995844758846,2600.0,0.0,34130.0,1,3,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,22753.333333333332,3,0,3_0,3_0 +10042,0.0,0.0,42.0,112,46,50,0.0,7407,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,847.5593518274243,6322.16,0.0,66388.0,1,2,7,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28864.34782608696,4,0,4_0,4_0 +10043,7.0,11.0,75.0,211,72,50,0.0,7408,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1287.8746648429153,0.0,0.0,33348.0,5,1,2,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,22232.0,3,0,3_0,3_0 +10044,1.0,1.0,46.0,111,56,71,0.0,741,0.0,315.0,0.0,151.0,1.0,3.0,1.0,2.0,1.3,1255.3719171196296,0.0,0.0,20368.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,15667.692307692307,2,0,2_1,2_0 +10045,6.0,6.0,30.0,111,47,30,0.0,7410,0.0,650.0,500.0,698.0,2.0,2.0,0.0,2.0,1.5,5271.395219684029,0.0,0.0,59352.0,1,3,9,7.0,3,3.0,1.0,1.0,0,0,0,1,0,0,1.0,2.0,39568.0,5,0,5,5_0 +10046,0.0,0.0,23.0,111,84,30,0.0,7411,0.0,0.0,0.0,146.0,0.0,1.0,0.0,1.0,1.0,3664.9372571785857,0.0,0.0,6410.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,6410.0,1,0,1_1,1_0 +10047,3.0,7.0,61.0,111,75,42,0.0,7412,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2182.9180532653204,0.0,0.0,32851.0,5,1,9,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,32851.0,5,0,5,5_0 +10048,2.0,11.0,43.0,111,54,43,0.0,7414,0.0,0.0,150.0,476.0,1.0,3.0,1.0,2.0,1.3,1342.4926385042804,5136.04,0.0,30190.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,23223.076923076922,3,0,3_0,3_0 +10049,8.0,12.0,44.0,111,48,41,0.0,7415,0.0,0.0,250.0,0.0,1.0,5.0,2.0,3.0,1.6,706.57087465378,0.0,0.0,28154.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,17596.25,2,0,2_1,2_0 +10050,19.0,29.0,61.0,112,74,42,0.0,7416,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2097.3748681983684,2298.4,0.0,66481.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,44320.666666666664,5,0,5,5_1 +10051,0.0,0.0,59.0,112,31,20,0.0,7417,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1403.4617370908645,0.0,0.0,59298.0,1,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,39532.0,5,0,5,5_0 +10052,0.0,0.0,54.0,111,64,50,0.0,7418,0.0,0.0,0.0,470.0,2.0,3.0,0.0,2.0,1.5,1635.3209173342234,0.0,0.0,40875.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27250.0,4,0,4_0,4_0 +10053,15.0,15.0,36.0,111,21,43,0.0,742,0.0,0.0,70.0,0.0,2.0,4.0,2.0,4.0,2.3,3342.718355404144,0.0,0.0,49919.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,21703.913043478264,3,0,3_0,3_0 +10054,0.0,6.0,29.0,111,55,42,2.0,7420,0.0,80.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1041.8545797512388,0.0,13500.0,25003.0,1,2,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16668.666666666668,2,0,2_0,2_0 +10055,2.0,2.0,43.0,112,65,50,0.0,7421,0.0,200.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2204.745992234283,0.0,0.0,40135.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,17450.0,2,0,2_0,2_0 +10056,0.0,0.0,40.0,111,37,31,0.0,7422,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,3593.65344574862,0.0,0.0,30080.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12533.333333333334,1,0,1_0,1_0 +10057,11.0,11.0,81.0,111,74,10,0.0,7423,0.0,0.0,70.0,0.0,0.0,5.0,0.0,2.0,1.5,1968.5260559844648,0.0,0.0,80734.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,53822.666666666664,5,0,5,5_0 +10058,4.0,4.0,61.0,111,78,70,0.0,7425,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2107.584538000387,1300.0,0.0,37757.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,25171.333333333332,4,0,4_0,4_0 +10059,13.0,15.0,40.0,111,64,50,0.0,7426,0.0,0.0,0.0,81.0,1.0,4.0,2.0,4.0,2.1,2031.7970178014825,1040.0,0.0,32024.0,1,3,7,6.0,4,1.0,1.0,0.0,0,0,1,0,0,1,1.0,0.0,15249.52380952381,2,0,2_1,2_0 +10060,9.0,18.0,56.0,111,64,60,0.0,7427,0.0,0.0,0.0,180.0,1.0,1.0,0.0,1.0,1.0,3245.618283229412,4160.0,0.0,19510.0,1,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19510.0,3,0,3_0,3_0 +10061,3.0,3.0,43.0,112,62,50,0.0,7428,0.0,0.0,0.0,341.0,1.0,3.0,1.0,2.0,1.5,434.1956837294704,2808.0,0.0,24716.0,1,3,9,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,16477.333333333332,2,0,2_1,2_0 +10062,8.0,21.0,65.0,111,78,50,0.0,7429,0.0,400.0,0.0,0.0,0.0,5.0,1.0,2.0,1.5,3626.049201188695,0.0,0.0,46277.0,5,1,8,7.0,2,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,30851.333333333332,4,0,4_0,4_0 +10063,3.0,3.0,70.0,212,78,50,0.0,7431,0.0,100199.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2276.115808152573,1560.0,0.0,18357.0,5,1,2,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18357.0,2,0,2_0,2_1 +10064,0.0,0.0,27.0,111,38,30,0.0,7432,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3938.826644554177,0.0,0.0,24220.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24220.0,4,0,4_0,4_0 +10065,3.0,3.0,36.0,120,63,44,0.0,7434,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1793.2335363621814,2600.0,0.0,41555.0,1,2,0,1.0,4,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,19788.095238095237,3,0,3_0,3_0 +10066,0.0,0.0,33.0,111,21,50,0.0,7435,0.0,0.0,0.0,0.0,2.0,4.0,1.0,4.0,2.3,2503.262719447502,2340.0,0.0,49669.0,1,1,6,5.0,5,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21595.217391304348,3,0,3_0,3_0 +10067,0.0,0.0,68.0,111,78,50,0.0,7436,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4404.324387104594,0.0,0.0,16518.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,16518.0,2,0,2_0,2_0 +10068,3.0,3.0,46.0,211,34,20,0.0,7438,0.0,400.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,3516.239714906028,2496.52,0.0,29797.0,1,3,1,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19864.666666666668,3,0,3_0,3_0 +10069,5.0,12.0,27.0,111,85,50,0.0,744,0.0,230.0,0.0,0.0,0.0,4.0,3.0,4.0,1.9,2002.1740584533068,0.0,0.0,14870.0,8,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,7826.315789473684,1,0,1_1,1_0 +10070,3.0,3.0,71.0,111,77,70,0.0,7440,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2446.5927409520737,0.0,0.0,19240.0,5,1,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19240.0,3,0,3_0,3_0 +10071,0.0,0.0,59.0,111,68,71,0.0,7442,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3079.000083841115,0.0,0.0,13274.0,4,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13274.0,1,0,1_1,1_0 +10072,0.0,15.0,41.0,120,31,44,0.0,7443,0.0,0.0,120.0,0.0,2.0,5.0,4.0,6.0,2.9,2383.5776289678765,2830.36,0.0,98550.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,33982.75862068966,5,0,5,5_1 +10073,12.0,14.0,52.0,111,21,50,0.0,7444,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2403.2860326401988,2080.0,0.0,29735.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14867.5,2,0,2_0,2_0 +10074,6.0,6.0,37.0,111,68,71,0.0,7446,0.0,0.0,99999.0,150.0,1.0,3.0,1.0,2.0,1.3,1777.0584222207874,0.0,0.0,19671.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,15131.538461538461,2,0,2_1,2_0 +10075,0.0,0.0,27.0,111,46,20,0.0,7447,0.0,0.0,0.0,300.0,2.0,4.0,0.0,2.0,1.5,3864.653119826452,0.0,0.0,46326.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30884.0,4,0,4_0,4_0 +10076,0.0,0.0,55.0,112,37,31,0.0,7448,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1887.0007607244434,0.0,0.0,70030.0,1,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,46686.666666666664,5,0,5,5_1 +10077,0.0,0.0,52.0,111,67,71,0.0,7451,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1603.5266535356743,3224.0,0.0,16410.0,1,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16410.0,2,0,2_0,2_0 +10078,9.0,28.0,46.0,111,37,42,0.0,7453,0.0,0.0,70.0,0.0,2.0,4.0,3.0,5.0,2.6,928.2750844034434,0.0,0.0,50738.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,2.0,0.0,19514.615384615383,3,0,3_1,3_0 +10079,7.0,14.0,47.0,111,48,71,0.0,7454,0.0,350.0,0.0,0.0,1.0,4.0,3.0,5.0,2.8,2433.6130306044247,0.0,0.0,36992.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,13211.428571428572,1,0,1_1,1_0 +10080,12.0,12.0,36.0,111,46,43,0.0,7455,0.0,30.0,75.0,0.0,2.0,4.0,2.0,4.0,2.1,1934.0309089117407,4516.200000000001,0.0,38918.0,1,2,7,5.0,4,2.0,1.0,1.0,0,0,1,0,0,0,1.0,1.0,18532.38095238095,2,0,2_0,2_0 +10081,4.0,4.0,35.0,112,85,71,0.0,7456,0.0,25.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,2168.099107326253,0.0,0.0,13606.0,8,3,8,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,8503.75,1,0,1_1,1_0 +10082,6.0,6.0,27.0,400,52,43,0.0,7457,0.0,99999.0,99999.0,0.0,2.0,3.0,1.0,3.0,1.8,2597.701745794848,4160.0,0.0,34330.0,1,2,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,19072.222222222223,3,0,3_0,3_1 +10083,3.0,3.0,83.0,112,86,71,0.0,7459,0.0,800.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1435.7800881519208,0.0,0.0,11642.0,5,4,8,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,11642.0,1,0,1_0,1_1 +10084,3.0,4.0,48.0,112,67,71,0.0,746,0.0,355.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,1034.6818662729943,3611.4,0.0,18899.0,1,3,7,1.0,2,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,12599.333333333334,1,0,1_1,1_0 +10085,8.0,8.0,46.0,111,37,30,0.0,7460,0.0,200.0,0.0,0.0,3.0,5.0,3.0,5.0,3.0,1096.868652712747,0.0,0.0,278354.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,92784.66666666667,5,0,5,5_0 +10086,9.0,9.0,70.0,400,72,31,0.0,7462,0.0,0.0,100.0,0.0,0.0,6.0,0.0,2.0,1.5,1319.9886197363817,4524.0,0.0,67437.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,44958.0,5,0,5,5_0 +10087,12.0,19.0,58.0,112,63,50,0.0,7463,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1530.371609627995,2496.0,0.0,33938.0,1,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,22625.333333333332,3,0,3_0,3_0 +10088,0.0,3.0,81.0,111,75,70,2.0,7464,0.0,100095.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2640.0723699456107,0.0,8200.0,27119.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,18079.333333333332,2,0,2_0,2_0 +10089,0.0,10.0,87.0,111,75,70,0.0,7465,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2927.658580592889,0.0,0.0,40650.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,27100.0,4,0,4_0,4_0 +10090,0.0,0.0,69.0,111,72,31,0.0,7466,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4559.323091813612,0.0,0.0,12430.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,8286.666666666666,1,0,1_0,1_0 +10091,1.0,1.0,61.0,111,43,30,1.0,7467,0.0,0.0,0.0,556.0,2.0,3.0,0.0,2.0,1.5,2483.0476417938003,0.0,21500.0,53832.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,35888.0,5,0,5,5_0 +10092,2.0,2.0,51.0,111,31,42,0.0,747,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3645.5602550056774,0.0,0.0,12719.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12719.0,1,0,1_1,1_0 +10093,0.0,0.0,28.0,111,55,44,0.0,7470,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1550.8506421943284,3843.3199999999997,0.0,35708.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19837.777777777777,3,0,3_0,3_0 +10094,0.0,0.0,69.0,112,77,50,0.0,7472,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2363.5938285663133,0.0,0.0,18430.0,5,1,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18430.0,2,0,2_0,2_1 +10095,11.0,17.0,46.0,111,37,30,0.0,7473,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,2074.49644481434,0.0,0.0,64521.0,1,1,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,43014.0,5,0,5,5_0 +10096,4.0,9.0,82.0,111,74,60,0.0,7475,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1846.1130752890215,0.0,0.0,53710.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,35806.666666666664,5,0,5,5_0 +10097,0.0,0.0,69.0,111,74,20,0.0,7477,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,3163.2514872819916,0.0,0.0,73334.0,5,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,36667.0,5,0,5,5_0 +10098,1.0,14.0,50.0,112,21,50,2.0,7479,0.0,99999.0,0.0,0.0,3.0,5.0,2.0,5.0,2.8,3122.212013754943,0.0,1000.0,47074.0,1,2,10,1.0,5,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,16812.14285714286,2,0,2_0,2_0 +10099,0.0,0.0,70.0,400,78,70,0.0,748,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2842.6204664673583,0.0,0.0,11904.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,11904.0,1,0,1_0,1_1 +10100,9.0,9.0,42.0,111,45,42,0.0,7480,0.0,0.0,99999.0,0.0,1.0,2.0,1.0,2.0,1.3,1938.6104302312306,2864.16,0.0,22350.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,17192.30769230769,2,0,2_1,2_0 +10101,5.0,5.0,38.0,111,52,42,0.0,7481,0.0,0.0,800.0,296.0,1.0,2.0,0.0,1.0,1.0,2501.3625105878414,0.0,0.0,24792.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,24792.0,4,0,4_0,4_0 +10102,7.0,7.0,57.0,120,33,44,0.0,7482,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2048.357074939312,3120.0,0.0,45242.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,45242.0,5,0,5,5_1 +10103,4.0,4.0,83.0,300,71,71,0.0,7484,0.0,500.0,0.0,0.0,0.0,8.0,1.0,3.0,2.0,2235.880940504981,2600.0,0.0,30769.0,5,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15384.5,2,0,2_0,2_1 +10104,1.0,5.0,22.0,111,84,41,2.0,7485,0.0,125.0,0.0,163.0,0.0,1.0,0.0,1.0,1.0,2240.123886492854,0.0,2600.0,9334.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,9334.0,1,0,1_1,1_0 +10105,10.0,12.0,78.0,300,72,70,0.0,7487,0.0,400.0,0.0,0.0,0.0,9.0,0.0,1.0,1.0,2274.1031316926155,0.0,0.0,9560.0,5,1,0,0.0,1,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,9560.0,1,0,1_0,1_1 +10106,3.0,3.0,48.0,112,37,31,0.0,7488,0.0,500.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1924.820398204979,3625.96,0.0,68148.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,29629.565217391308,4,0,4_0,4_0 +10107,0.0,0.0,57.0,112,78,50,0.0,7490,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,407.397821911203,925.6,0.0,25217.0,7,1,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,12608.5,1,0,1_0,1_1 +10108,0.0,0.0,42.0,120,47,31,0.0,7491,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,1901.0753203133108,0.0,0.0,44012.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18338.333333333336,2,0,2_0,2_1 +10109,11.0,11.0,31.0,111,46,50,0.0,7492,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2475.7075750071685,3813.16,0.0,38585.0,1,1,5,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,25723.333333333332,4,0,4_0,4_0 +10110,8.0,8.0,40.0,111,68,71,0.0,7493,0.0,520.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,11166.548889244588,0.0,0.0,13144.0,4,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,13144.0,1,0,1_1,1_0 +10111,0.0,6.0,60.0,112,67,50,0.0,7495,0.0,0.0,150.0,0.0,1.0,2.0,0.0,1.0,1.0,3632.2271889848425,4576.0,0.0,20933.0,1,1,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20933.0,3,0,3_0,3_1 +10112,0.0,0.0,66.0,111,74,60,0.0,7496,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1016.2849900675719,2080.0,0.0,34292.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,34292.0,5,0,5,5_0 +10113,0.0,0.0,50.0,400,67,50,0.0,7497,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1626.6845337452326,0.0,0.0,41728.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20864.0,3,0,3_0,3_1 +10114,0.0,0.0,67.0,300,72,12,0.0,7498,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1395.4041916953581,3588.0,0.0,56709.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,37806.0,5,0,5,5_0 +10115,6.0,12.0,52.0,111,63,50,0.0,7499,0.0,500.0,0.0,501.0,1.0,5.0,2.0,4.0,2.5,2313.75690455344,0.0,0.0,34681.0,1,3,7,6.0,4,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,13872.4,1,0,1_0,1_0 +10116,1.0,5.0,54.0,111,69,60,2.0,75,0.0,0.0,200.0,265.0,3.0,4.0,2.0,3.0,2.0,484.95147107788654,0.0,1200.0,15594.0,4,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,7797.0,1,0,1_1,1_0 +10117,0.0,0.0,43.0,111,38,31,0.0,750,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3055.53896504687,0.0,0.0,83094.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39568.57142857143,5,0,5,5_0 +10118,0.0,0.0,40.0,111,63,50,0.0,7500,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1128.3285835266406,0.0,0.0,54170.0,1,4,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22570.833333333336,3,0,3_0,3_0 +10119,0.0,0.0,72.0,300,71,70,0.0,7501,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1438.6811388846666,0.0,0.0,23851.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15900.666666666666,2,0,2_0,2_1 +10120,0.0,2.0,56.0,111,34,10,2.0,7502,0.0,0.0,0.0,0.0,2.0,7.0,2.0,3.0,2.0,1464.7598227188935,4940.0,10900.0,81156.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,40578.0,5,0,5,5_0 +10121,3.0,3.0,65.0,111,75,41,0.0,7504,0.0,60.0,500.0,0.0,0.0,6.0,0.0,2.0,1.5,1478.5704496308754,3405.4799999999996,0.0,51332.0,5,1,9,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,34221.333333333336,5,0,5,5_0 +10122,7.0,7.0,85.0,111,77,70,0.0,7505,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,4384.157815188916,1508.0,0.0,37699.0,5,1,8,7.0,5,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,25132.666666666668,4,0,4_0,4_0 +10123,10.0,14.0,55.0,211,21,50,0.0,7506,0.0,0.0,700.0,0.0,1.0,5.0,1.0,2.0,1.5,2942.9410709562794,1838.2,0.0,31346.0,1,2,4,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,20897.333333333332,3,0,3_0,3_0 +10124,0.0,0.0,56.0,112,64,50,0.0,7507,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3585.551642321154,0.0,0.0,20470.0,1,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20470.0,3,0,3_0,3_1 +10125,2.0,3.0,35.0,111,52,70,0.0,7508,0.0,0.0,0.0,170.0,1.0,3.0,2.0,3.0,1.6,1224.7163412969926,0.0,0.0,24588.0,1,3,10,8.0,2,1.0,1.0,0.0,0,0,0,0,1,1,1.0,0.0,15367.5,2,0,2_1,2_0 +10126,1.0,16.0,64.0,221,74,60,0.0,7509,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1078.8962105189496,3010.2799999999997,0.0,36576.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24384.0,4,0,4_0,4_0 +10127,0.0,0.0,71.0,111,75,60,0.0,751,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1869.2655385705202,0.0,0.0,21244.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21244.0,3,0,3_0,3_0 +10128,4.0,4.0,50.0,111,33,31,0.0,7510,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1724.598377927301,0.0,0.0,73256.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,28175.384615384613,4,0,4_0,4_0 +10129,0.0,0.0,67.0,111,77,50,0.0,7511,0.0,0.0,0.0,92.0,0.0,3.0,0.0,1.0,1.0,2627.4611620352844,0.0,0.0,10240.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,10240.0,1,0,1_0,1_0 +10130,3.0,8.0,41.0,111,22,41,0.0,7513,0.0,250.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,4371.625152686307,3641.04,0.0,13425.0,1,1,6,5.0,1,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,13425.0,1,0,1_0,1_0 +10131,2.0,2.0,40.0,111,33,31,0.0,7515,0.0,0.0,0.0,250.0,1.0,4.0,1.0,2.0,1.3,765.2346988867378,0.0,0.0,24002.0,1,3,8,7.0,2,3.0,0.0,0.0,0,0,0,1,0,1,3.0,0.0,18463.076923076922,2,0,2_1,2_0 +10132,8.0,11.0,59.0,111,62,70,0.0,7516,0.0,0.0,8.0,610.0,2.0,4.0,2.0,3.0,2.0,1285.192828299278,2496.0,0.0,17842.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,8921.0,1,0,1_1,1_0 +10133,0.0,0.0,53.0,111,78,71,0.0,7517,0.0,0.0,0.0,0.0,0.0,3.0,3.0,5.0,2.4,3672.061468120207,0.0,0.0,19906.0,7,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,8294.166666666668,1,0,1_1,1_0 +10134,0.0,0.0,58.0,120,75,31,0.0,7518,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2305.5261726843087,0.0,0.0,29730.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29730.0,4,0,4_0,4_1 +10135,0.0,0.0,33.0,111,53,41,0.0,7519,0.0,0.0,0.0,327.0,1.0,2.0,0.0,1.0,1.0,1821.4238063415755,5930.6,0.0,22046.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22046.0,3,0,3_0,3_0 +10136,1.0,1.0,71.0,111,78,70,1.0,752,0.0,200.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,5060.001601290747,0.0,18575.0,24015.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16010.0,2,0,2_0,2_0 +10137,3.0,10.0,62.0,111,86,50,0.0,7520,0.0,80.0,0.0,311.0,1.0,4.0,1.0,2.0,1.5,2992.2198389582077,0.0,0.0,25613.0,5,3,6,4.0,2,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,17075.333333333332,2,0,2_0,2_0 +10138,0.0,3.0,50.0,112,54,50,2.0,7521,0.0,250.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2642.761876131403,0.0,9500.0,63792.0,1,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,42528.0,5,0,5,5_1 +10139,5.0,13.0,31.0,111,31,0,0.0,7522,0.0,0.0,95.0,0.0,1.0,3.0,0.0,1.0,1.0,3904.675317423805,0.0,0.0,91950.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,91950.0,5,0,5,5_0 +10140,4.0,4.0,50.0,111,68,71,0.0,7524,0.0,0.0,0.0,0.0,3.0,5.0,3.0,5.0,3.0,2932.5608745501236,2340.0,0.0,65970.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,21990.0,3,0,3_0,3_0 +10141,3.0,3.0,42.0,111,43,20,0.0,7525,0.0,280.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,1715.193264842315,0.0,0.0,19267.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,10703.888888888889,1,0,1_1,1_0 +10142,2.0,2.0,81.0,112,71,70,0.0,7527,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1963.0349147191666,0.0,0.0,19592.0,5,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19592.0,3,0,3_0,3_0 +10143,8.0,22.0,68.0,111,77,50,0.0,7528,0.0,0.0,0.0,238.0,0.0,4.0,0.0,1.0,1.0,2021.3772524355136,0.0,0.0,14982.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14982.0,2,0,2_1,2_0 +10144,1.0,0.0,81.0,111,75,31,1.0,7529,0.0,120.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2580.47198287487,0.0,25000.0,51537.0,5,1,10,8.0,3,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,34358.0,5,0,5,5_0 +10145,1.0,5.0,44.0,400,62,70,2.0,753,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2407.1954501407063,1560.0,8000.0,47650.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23825.0,4,0,4_0,4_1 +10146,3.0,6.0,48.0,400,13,31,0.0,7531,0.0,70.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1636.597510806855,4004.0,0.0,19631.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,9348.095238095239,1,0,1_1,1_1 +10147,16.0,16.0,51.0,211,52,50,0.0,7532,0.0,8.0,0.0,0.0,4.0,4.0,1.0,4.0,2.5,1634.9675262095975,3640.0,0.0,76333.0,1,1,3,3.0,5,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,30533.2,4,0,4_0,4_0 +10148,10.0,18.0,63.0,112,78,50,0.0,7534,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2748.1098577278844,1560.0,0.0,16220.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10813.333333333334,1,0,1_0,1_1 +10149,0.0,0.0,29.0,111,33,20,0.0,7535,0.0,0.0,0.0,1365.0,2.0,3.0,0.0,2.0,1.5,3279.977365470241,0.0,0.0,87508.0,4,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,58338.666666666664,5,0,5,5_0 +10150,0.0,17.0,53.0,111,54,60,0.0,7536,0.0,700.0,320.0,0.0,1.0,5.0,0.0,1.0,1.0,1452.181207697155,2342.08,0.0,14508.0,1,1,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,14508.0,2,0,2_0,2_0 +10151,13.0,15.0,28.0,120,55,31,0.0,7537,0.0,0.0,0.0,83.0,2.0,3.0,1.0,2.0,1.5,2522.8059036571367,0.0,0.0,25428.0,1,3,0,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,16952.0,2,0,2_1,2_0 +10152,1.0,12.0,80.0,111,74,30,2.0,7538,0.0,0.0,400.0,0.0,0.0,3.0,0.0,2.0,1.5,4379.509018837657,0.0,2500.0,49260.0,5,4,9,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,32840.0,5,0,5,5_0 +10153,0.0,0.0,32.0,112,38,31,1.0,7539,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2372.2491756176532,2598.44,27000.0,55452.0,1,2,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30806.666666666664,4,0,4_0,4_1 +10154,13.0,15.0,87.0,111,78,71,0.0,7540,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,4288.585098821404,0.0,0.0,20391.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20391.0,3,0,3_0,3_0 +10155,5.0,5.0,36.0,120,62,44,0.0,7541,0.0,0.0,99999.0,0.0,2.0,6.0,2.0,5.0,2.4,3369.892995700296,2705.56,0.0,52332.0,1,2,0,3.0,5,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,21805.0,3,0,3_0,3_0 +10156,1.0,11.0,82.0,112,75,71,2.0,7542,0.0,0.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,1589.5550758549434,0.0,3000.0,18364.0,5,1,10,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,18364.0,2,0,2_0,2_0 +10157,0.0,0.0,48.0,111,52,60,0.0,7543,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,635.383048700144,0.0,0.0,24306.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,18696.923076923078,2,0,2_1,2_0 +10158,2.0,3.0,71.0,112,77,44,0.0,7544,0.0,0.0,70.0,0.0,0.0,4.0,0.0,2.0,1.5,2165.349649860048,0.0,0.0,27914.0,5,1,6,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,18609.333333333332,2,0,2_0,2_0 +10159,0.0,3.0,32.0,111,84,30,0.0,7545,0.0,99998.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3172.9361315879246,0.0,0.0,1524.0,3,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,1524.0,1,0,1_1,1_0 +10160,3.0,3.0,62.0,111,77,71,0.0,7546,0.0,100.0,130.0,0.0,0.0,5.0,0.0,1.0,1.0,2745.6255537761726,0.0,0.0,26102.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26102.0,4,0,4_0,4_0 +10161,2.0,9.0,38.0,112,85,50,0.0,7548,0.0,0.0,700.0,0.0,0.0,3.0,0.0,1.0,1.0,3350.8309274053277,780.0,0.0,7038.0,7,3,4,0.0,1,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,7038.0,1,0,1_1,1_1 +10162,2.0,16.0,72.0,112,75,33,0.0,7550,0.0,150.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2656.7798500856534,1601.6000000000001,0.0,43595.0,5,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,29063.333333333332,4,0,4_0,4_0 +10163,0.0,0.0,71.0,111,74,20,0.0,7552,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1712.5014564940846,0.0,0.0,124884.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,83256.0,5,0,5,5_0 +10164,0.0,0.0,83.0,112,78,71,0.0,7555,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2016.3977064922242,0.0,0.0,24350.0,5,1,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16233.333333333334,2,0,2_0,2_0 +10165,13.0,13.0,57.0,112,11,50,0.0,7556,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1463.2668944689333,0.0,0.0,46841.0,1,1,7,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31227.333333333332,4,0,4_0,4_0 +10166,4.0,14.0,63.0,221,78,70,0.0,7558,0.0,100.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2014.4868527022718,3380.0,0.0,30108.0,5,3,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20072.0,3,0,3_0,3_0 +10167,10.0,13.0,72.0,211,74,30,0.0,7559,0.0,0.0,110.0,323.0,0.0,1.0,0.0,1.0,1.0,3507.700941226414,0.0,0.0,22007.0,5,3,4,4.0,1,3.0,0.0,0.0,0,0,1,0,0,0,3.0,0.0,22007.0,3,0,3_0,3_0 +10168,0.0,21.0,22.0,111,68,60,0.0,7560,0.0,0.0,150.0,80.0,1.0,1.0,0.0,1.0,1.0,2297.0280680984674,0.0,0.0,3240.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,3240.0,1,0,1_1,1_0 +10169,6.0,15.0,55.0,111,63,12,0.0,7561,0.0,0.0,0.0,0.0,1.0,8.0,2.0,3.0,2.0,655.6366027888969,0.0,0.0,18684.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,9342.0,1,0,1_0,1_0 +10170,0.0,0.0,79.0,111,75,31,0.0,7562,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2094.2650654460404,2548.52,0.0,38491.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,38491.0,5,0,5,5_0 +10171,6.0,6.0,57.0,111,45,30,0.0,7563,0.0,100.0,0.0,0.0,2.0,6.0,3.0,5.0,3.0,2822.7502113472087,0.0,0.0,24150.0,4,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,8050.0,1,0,1_0,1_0 +10172,12.0,17.0,75.0,111,77,70,0.0,7565,0.0,0.0,450.0,0.0,0.0,4.0,0.0,1.0,1.0,2684.545075855154,0.0,0.0,18484.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,18484.0,2,0,2_0,2_0 +10173,0.0,0.0,59.0,112,43,44,0.0,7566,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1882.7984926515478,2372.24,0.0,31527.0,1,2,4,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,31527.0,4,0,4_0,4_1 +10174,9.0,9.0,66.0,111,78,41,0.0,7567,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2758.52602402445,1040.0,0.0,25230.0,5,1,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,25230.0,4,0,4_0,4_0 +10175,0.0,0.0,68.0,300,77,50,0.0,7569,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1711.0254059086515,2548.0,0.0,39103.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26068.666666666668,4,0,4_0,4_1 +10176,0.0,0.0,21.0,111,84,31,0.0,757,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2770.861368838974,0.0,0.0,2160.0,3,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2160.0,1,0,1_1,1_0 +10177,9.0,13.0,32.0,112,65,43,0.0,7571,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3112.196895936523,2834.52,0.0,35020.0,1,3,10,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16676.190476190477,2,0,2_0,2_0 +10178,0.0,0.0,65.0,111,77,60,0.0,7572,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2890.785867517248,0.0,0.0,17444.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17444.0,2,0,2_0,2_0 +10179,0.0,0.0,63.0,111,75,20,0.0,7573,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1793.650840350173,0.0,0.0,34547.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23031.333333333332,3,0,3_0,3_0 +10180,0.0,0.0,55.0,120,47,50,0.0,7575,0.0,0.0,0.0,0.0,3.0,6.0,3.0,5.0,3.0,2813.0727227327293,2627.04,0.0,49351.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16450.333333333332,2,0,2_0,2_1 +10181,4.0,7.0,65.0,111,77,41,0.0,7576,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,1539.1249472638647,0.0,0.0,39092.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,39092.0,5,0,5,5_0 +10182,1.0,1.0,64.0,111,75,60,1.0,7577,0.0,0.0,48.0,0.0,0.0,3.0,0.0,1.0,1.0,2389.6294455146895,0.0,19700.0,23940.0,5,1,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,23940.0,4,0,4_0,4_0 +10183,0.0,0.0,44.0,111,56,50,0.0,7578,0.0,0.0,0.0,550.0,1.0,4.0,2.0,3.0,1.8,682.4004222007676,1040.0,0.0,22909.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12727.222222222223,1,0,1_0,1_0 +10184,0.0,0.0,42.0,111,68,33,0.0,7579,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,1031.5061766534807,520.0,0.0,20925.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13078.125,1,0,1_1,1_0 +10185,5.0,6.0,62.0,300,77,50,0.0,758,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1869.1331435147883,0.0,0.0,33433.0,5,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,22288.666666666668,3,0,3_0,3_1 +10186,3.0,3.0,33.0,221,21,71,0.0,7581,0.0,99999.0,99999.0,0.0,2.0,6.0,3.0,5.0,2.4,1748.9522831221989,1042.08,0.0,24414.0,1,3,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,10172.5,1,0,1_1,1_0 +10187,0.0,0.0,55.0,112,52,43,0.0,7582,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2522.433797547648,0.0,0.0,39274.0,1,3,6,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26182.666666666668,4,0,4_0,4_0 +10188,1.0,9.0,27.0,111,56,50,2.0,7584,0.0,0.0,0.0,263.0,1.0,1.0,0.0,1.0,1.0,3774.4608335501457,0.0,1700.0,14794.0,1,3,9,7.0,1,2.0,1.0,0.0,0,0,0,1,0,1,0.0,2.0,14794.0,2,0,2_1,2_0 +10189,0.0,0.0,56.0,400,65,50,2.0,7585,0.0,450.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2368.0795781336597,1021.28,12100.0,18095.0,1,2,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18095.0,2,0,2_0,2_1 +10190,0.0,9.0,29.0,111,54,20,0.0,7586,0.0,600.0,0.0,819.0,1.0,2.0,1.0,2.0,1.3,1808.2528242385185,0.0,0.0,41877.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,32213.076923076922,5,0,5,5_0 +10191,4.0,5.0,65.0,111,74,30,0.0,7589,0.0,99999.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1971.9066159682661,2685.8,0.0,68698.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,45798.666666666664,5,0,5,5_0 +10192,0.0,0.0,41.0,111,38,12,0.0,7591,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3884.8596064966828,2361.84,0.0,52448.0,1,2,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24975.238095238095,4,0,4_0,4_0 +10193,0.0,0.0,51.0,111,48,50,0.0,7596,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2227.7866198404386,3120.0,0.0,33680.0,1,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22453.333333333332,3,0,3_0,3_0 +10194,9.0,9.0,59.0,111,62,41,0.0,7597,0.0,0.0,0.0,571.0,1.0,2.0,0.0,1.0,1.0,1892.0179762095627,0.0,0.0,14022.0,4,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,14022.0,2,0,2_1,2_0 +10195,3.0,3.0,54.0,111,52,50,0.0,7598,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2788.467005435635,2600.0,0.0,48912.0,1,1,7,5.0,3,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,32608.0,5,0,5,5_0 +10196,0.0,12.0,44.0,400,42,30,0.0,760,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.3,188.84493133376859,0.0,0.0,28400.0,1,2,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21846.153846153844,3,0,3_0,3_1 +10197,3.0,10.0,27.0,112,55,60,0.0,7601,0.0,350.0,0.0,620.0,2.0,3.0,1.0,3.0,1.8,2581.230125258769,3124.6800000000003,0.0,33954.0,1,3,9,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,18863.333333333332,3,0,3_0,3_0 +10198,0.0,12.0,39.0,300,62,50,0.0,7602,0.0,300.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2462.2028606243925,0.0,0.0,49089.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24544.5,4,0,4_0,4_1 +10199,4.0,4.0,57.0,111,78,70,0.0,7603,0.0,500.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2501.3087648700644,0.0,0.0,23670.0,7,1,4,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15780.0,2,0,2_0,2_0 +10200,16.0,16.0,64.0,111,74,50,0.0,7604,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3448.4166424616487,0.0,0.0,18910.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18910.0,3,0,3_0,3_0 +10201,1.0,16.0,23.0,111,56,50,0.0,7605,0.0,0.0,300.0,156.0,2.0,2.0,0.0,2.0,1.5,2699.2461607775317,2600.0,0.0,22364.0,1,3,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,14909.333333333334,2,0,2_1,2_0 +10202,0.0,11.0,47.0,111,55,44,0.0,7606,0.0,0.0,275.0,0.0,4.0,4.0,2.0,4.0,2.5,3124.9327492360326,0.0,0.0,122965.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,49186.0,5,0,5,5_0 +10203,0.0,0.0,37.0,111,67,50,0.0,7607,0.0,0.0,0.0,12.0,1.0,3.0,2.0,3.0,1.6,1055.7974896237558,0.0,0.0,22852.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14282.5,2,0,2_1,2_0 +10204,0.0,0.0,90.0,111,77,71,0.0,7608,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3897.9952453894234,0.0,0.0,30411.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30411.0,4,0,4_0,4_0 +10205,14.0,14.0,66.0,111,78,70,0.0,761,0.0,250.0,0.0,0.0,0.0,3.0,1.0,3.0,2.0,3073.0873217416865,0.0,0.0,32670.0,5,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,16335.0,2,0,2_0,2_0 +10206,4.0,7.0,68.0,111,74,41,0.0,7610,0.0,110.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3502.468171481001,1561.04,0.0,52046.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,34697.333333333336,5,0,5,5_0 +10207,4.0,4.0,44.0,112,62,50,0.0,7611,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,2642.3735560683876,0.0,0.0,62220.0,1,2,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,29628.571428571428,4,0,4_0,4_0 +10208,0.0,12.0,43.0,111,84,43,2.0,7614,0.0,0.0,0.0,0.0,1.0,4.0,4.0,5.0,2.8,895.4766072466923,1560.0,1500.0,41321.0,3,3,8,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,14757.500000000002,2,0,2_1,2_0 +10209,0.0,0.0,79.0,221,78,71,0.0,7615,0.0,0.0,0.0,350.0,0.0,2.0,0.0,1.0,1.0,2533.1792796317623,0.0,0.0,14700.0,5,3,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14700.0,2,0,2_0,2_0 +10210,0.0,0.0,77.0,221,78,70,0.0,7616,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2393.741985133741,0.0,0.0,27894.0,5,1,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18596.0,2,0,2_0,2_0 +10211,3.0,3.0,45.0,111,34,10,0.0,7619,0.0,360.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2363.4194638919166,0.0,0.0,45810.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,45810.0,5,0,5,5_0 +10212,20.0,20.0,34.0,300,64,50,0.0,7620,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,143.13589253567974,1560.0,0.0,27936.0,4,3,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,15520.0,2,0,2_1,2_1 +10213,2.0,8.0,46.0,111,65,50,0.0,7621,0.0,50.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1725.2284983339111,0.0,0.0,17950.0,1,3,6,5.0,1,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,17950.0,2,0,2_0,2_0 +10214,0.0,0.0,80.0,400,77,70,0.0,7622,0.0,0.0,0.0,224.0,0.0,2.0,0.0,1.0,1.0,3461.272397301685,0.0,0.0,16122.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16122.0,2,0,2_0,2_1 +10215,0.0,0.0,56.0,112,46,71,0.0,7624,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2241.7909507032373,0.0,0.0,29762.0,1,2,5,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19841.333333333332,3,0,3_0,3_1 +10216,4.0,12.0,38.0,120,12,44,0.0,7625,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2407.1559678062436,595.9200000000001,0.0,22285.0,1,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22285.0,3,0,3_0,3_1 +10217,1.0,16.0,62.0,111,75,50,0.0,7626,0.0,300.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2448.013546622417,2695.16,0.0,22694.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15129.333333333334,2,0,2_0,2_0 +10218,5.0,16.0,53.0,221,13,44,0.0,7628,0.0,350.0,250.0,0.0,2.0,9.0,3.0,5.0,3.0,1533.1015276270805,7061.6,0.0,40070.0,1,1,3,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,13356.666666666666,1,0,1_0,1_0 +10219,9.0,9.0,45.0,400,21,60,0.0,7629,0.0,320.0,0.0,0.0,2.0,4.0,3.0,4.0,2.3,126.49248056346363,0.0,0.0,18852.0,1,1,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,8196.521739130436,1,0,1_0,1_1 +10220,0.0,0.0,75.0,111,75,42,0.0,7633,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1868.8983460716888,0.0,0.0,60729.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40486.0,5,0,5,5_0 +10221,0.0,0.0,42.0,111,47,43,0.0,7634,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2585.407000755437,0.0,0.0,32975.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15702.380952380952,2,0,2_0,2_0 +10222,1.0,8.0,58.0,212,54,50,0.0,7635,0.0,600.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1891.0912957484302,3018.6,0.0,42505.0,1,1,2,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,28336.666666666668,4,0,4_0,4_1 +10223,29.0,29.0,63.0,111,63,71,0.0,7636,0.0,0.0,0.0,347.0,1.0,2.0,0.0,1.0,1.0,2136.8266869317645,0.0,0.0,11586.0,4,3,7,6.0,1,2.0,1.0,0.0,0,0,1,0,0,1,1.0,1.0,11586.0,1,0,1_1,1_0 +10224,10.0,19.0,38.0,111,52,33,0.0,7637,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,1661.1367135135445,0.0,0.0,25980.0,1,3,4,3.0,2,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,16237.5,2,0,2_0,2_0 +10225,0.0,0.0,56.0,300,46,60,0.0,7638,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1668.8208389785814,2481.44,0.0,64588.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,43058.666666666664,5,0,5,5_1 +10226,2.0,7.0,60.0,111,43,50,0.0,7639,0.0,0.0,0.0,374.0,1.0,3.0,0.0,1.0,1.0,2636.9835143743744,0.0,0.0,28995.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28995.0,4,0,4_0,4_0 +10227,17.0,18.0,29.0,111,62,31,0.0,764,0.0,0.0,0.0,257.0,2.0,2.0,0.0,2.0,1.5,956.4669017878948,3432.0,0.0,39290.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26193.333333333332,4,0,4_0,4_0 +10228,0.0,1.0,36.0,111,52,50,0.0,7640,0.0,0.0,50.0,0.0,1.0,2.0,4.0,5.0,2.6,729.8884226467592,0.0,0.0,29660.0,4,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,11407.692307692307,1,0,1_1,1_0 +10229,1.0,1.0,31.0,111,38,12,1.0,7641,0.0,0.0,0.0,684.0,2.0,2.0,1.0,3.0,1.8,3752.4851756449416,2603.12,10500.0,53211.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29561.666666666664,4,0,4_0,4_0 +10230,6.0,17.0,31.0,112,54,30,0.0,7642,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,930.5785108529396,520.0,0.0,47184.0,1,4,9,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,26213.333333333332,4,0,4_0,4_1 +10231,0.0,0.0,42.0,112,43,31,0.0,7645,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2379.8508687787635,0.0,0.0,48791.0,1,2,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27106.11111111111,4,0,4_0,4_0 +10232,4.0,12.0,55.0,112,42,20,0.0,7646,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1755.983585511533,5699.200000000001,0.0,70423.0,1,2,6,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,46948.666666666664,5,0,5,5_0 +10233,0.0,3.0,30.0,111,67,43,0.0,7647,0.0,100039.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,3464.9227797094527,728.52,0.0,39273.0,1,2,9,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,21818.333333333332,3,0,3_0,3_0 +10234,2.0,19.0,72.0,120,72,71,0.0,7648,0.0,0.0,300.0,0.0,1.0,5.0,0.0,2.0,1.5,2499.5480749788067,2614.56,0.0,25790.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,17193.333333333332,2,0,2_0,2_1 +10235,2.0,8.0,57.0,111,37,12,0.0,765,0.0,50.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,2396.8150075022095,0.0,0.0,121693.0,1,1,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,40564.333333333336,5,0,5,5_0 +10236,7.0,8.0,61.0,112,77,50,0.0,7650,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2687.480238523461,3432.0,0.0,17125.0,7,1,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,17125.0,2,0,2_0,2_1 +10237,14.0,27.0,43.0,111,38,12,0.0,7651,0.0,170.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3995.7071361187477,2915.64,0.0,64734.0,1,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,64734.0,5,0,5,5_0 +10238,16.0,27.0,86.0,111,77,41,0.0,7652,0.0,0.0,0.0,1000.0,0.0,3.0,0.0,1.0,1.0,3527.23530493087,0.0,0.0,7120.0,5,3,9,7.0,1,3.0,1.0,0.0,0,0,0,1,0,0,0.0,3.0,7120.0,1,0,1_0,1_0 +10239,1.0,8.0,48.0,112,65,50,2.0,7654,0.0,40.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2543.889589560799,2600.52,3200.0,38694.0,1,2,8,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,13819.285714285716,1,0,1_0,1_0 +10240,10.0,13.0,42.0,111,54,41,0.0,7655,0.0,0.0,40.0,0.0,1.0,5.0,2.0,3.0,1.8,343.97893861600636,1560.0,0.0,33220.0,1,2,6,5.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18455.555555555555,2,0,2_0,2_0 +10241,2.0,2.0,52.0,112,62,50,0.0,7656,0.0,1000.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2550.984269222608,0.0,0.0,20640.0,1,4,6,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,20640.0,3,0,3_0,3_1 +10242,8.0,14.0,62.0,120,78,71,0.0,7657,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1756.8529693334654,0.0,0.0,25693.0,5,1,0,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,17128.666666666668,2,0,2_0,2_0 +10243,10.0,10.0,68.0,111,78,50,0.0,7658,0.0,20.0,0.0,370.0,0.0,3.0,0.0,2.0,1.5,5028.9641972116015,1268.8,0.0,27475.0,5,3,10,8.0,5,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,18316.666666666668,2,0,2_0,2_0 +10244,0.0,0.0,46.0,111,38,12,0.0,7659,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3962.7035662200983,0.0,0.0,51301.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,51301.0,5,0,5,5_0 +10245,4.0,16.0,87.0,211,77,70,0.0,766,0.0,720.0,0.0,481.0,0.0,4.0,0.0,2.0,1.5,772.4518379765477,0.0,0.0,24820.0,5,3,4,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16546.666666666668,2,0,2_0,2_0 +10246,6.0,6.0,65.0,111,72,31,0.0,7660,0.0,0.0,200.0,0.0,0.0,4.0,1.0,2.0,1.5,2252.446620319318,0.0,0.0,21991.0,5,1,6,4.0,2,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,14660.666666666666,2,0,2_0,2_0 +10247,0.0,11.0,77.0,120,78,50,0.0,7665,0.0,0.0,70.0,0.0,0.0,5.0,0.0,1.0,1.0,2506.7153126318176,0.0,0.0,19100.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19100.0,3,0,3_0,3_1 +10248,0.0,0.0,56.0,120,38,31,0.0,7666,0.0,0.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,2049.753188725439,0.0,0.0,55647.0,1,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27823.5,4,0,4_0,4_0 +10249,12.0,12.0,33.0,111,85,71,0.0,7668,0.0,0.0,99999.0,0.0,0.0,3.0,3.0,4.0,1.9,538.1635100946988,1040.0,0.0,19522.0,6,3,5,4.0,2,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10274.736842105263,1,0,1_1,1_0 +10250,6.0,7.0,29.0,111,63,50,0.0,7669,0.0,0.0,150.0,0.0,2.0,3.0,1.0,3.0,1.8,2083.095198341127,0.0,0.0,18464.0,4,3,8,7.0,5,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,10257.777777777777,1,0,1_1,1_0 +10251,15.0,15.0,76.0,111,77,60,0.0,7670,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2943.8191827840215,0.0,0.0,27944.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,27944.0,4,0,4_0,4_0 +10252,3.0,4.0,45.0,112,54,43,0.0,7671,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,931.694404781317,0.0,0.0,23410.0,1,1,9,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,15606.666666666666,2,0,2_1,2_0 +10253,5.0,5.0,27.0,111,46,30,0.0,7672,0.0,0.0,600.0,710.0,2.0,3.0,0.0,2.0,1.5,3021.93714190098,780.52,0.0,43642.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,29094.666666666668,4,0,4_0,4_0 +10254,4.0,6.0,64.0,211,77,70,0.0,7675,0.0,288.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,581.6866115838799,0.0,0.0,32660.0,5,3,1,3.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,21773.333333333332,3,0,3_0,3_0 +10255,8.0,8.0,31.0,111,47,43,0.0,7676,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1059.8167835008114,0.0,0.0,8630.0,4,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,6638.461538461538,1,0,1_0,1_0 +10256,0.0,0.0,44.0,300,67,42,0.0,7677,0.0,0.0,0.0,170.0,1.0,4.0,2.0,3.0,2.0,495.424345473058,2826.2,0.0,24157.0,1,3,0,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12078.5,1,0,1_1,1_0 +10257,11.0,17.0,54.0,111,53,31,0.0,7678,0.0,80.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1644.9450694570328,0.0,0.0,72738.0,1,4,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,48492.0,5,0,5,5_0 +10258,8.0,8.0,52.0,111,21,60,0.0,7679,0.0,0.0,200.0,0.0,1.0,6.0,2.0,4.0,2.5,2508.7692482381567,0.0,0.0,45722.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18288.8,2,0,2_0,2_0 +10259,0.0,7.0,47.0,111,52,50,2.0,7680,0.0,500.0,0.0,376.0,1.0,5.0,1.0,2.0,1.5,823.9960823431231,2652.0,7150.0,25690.0,1,3,4,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17126.666666666668,2,0,2_0,2_0 +10260,0.0,0.0,50.0,112,62,71,0.0,7681,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2716.53112382185,3947.32,0.0,37086.0,1,1,9,3.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24724.0,4,0,4_0,4_0 +10261,4.0,4.0,80.0,112,75,70,0.0,7682,0.0,400.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1434.8039798260263,0.0,0.0,33720.0,5,1,10,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,33720.0,5,0,5,5_0 +10262,10.0,10.0,50.0,111,21,70,0.0,7683,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,3543.8464350368636,1560.0,0.0,37558.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15023.2,2,0,2_0,2_0 +10263,0.0,0.0,39.0,111,54,50,0.0,7684,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2209.453007684565,0.0,0.0,64289.0,4,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,35716.11111111111,5,0,5,5_0 +10264,5.0,11.0,27.0,300,65,71,0.0,7685,0.0,0.0,100.0,0.0,2.0,4.0,0.0,4.0,2.5,3765.3502882137113,1040.0,0.0,47587.0,1,1,0,0.0,5,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19034.8,3,0,3_0,3_1 +10265,16.0,16.0,44.0,400,48,43,0.0,7687,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2082.487742748894,1300.0,0.0,21346.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,11858.888888888889,1,0,1_0,1_1 +10266,0.0,0.0,44.0,111,34,10,0.0,7688,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,2214.9376880029977,0.0,0.0,65542.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27309.166666666668,4,0,4_0,4_0 +10267,3.0,3.0,71.0,111,74,31,0.0,7689,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3762.132432431016,0.0,0.0,53510.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,53510.0,5,0,5,5_0 +10268,0.0,0.0,81.0,111,78,50,0.0,769,0.0,0.0,0.0,413.0,0.0,2.0,0.0,1.0,1.0,3736.546349631342,1575.6000000000001,0.0,14279.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14279.0,2,0,2_1,2_0 +10269,0.0,19.0,29.0,112,64,50,0.0,7690,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1572.4779139822404,1567.8,0.0,38921.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25947.333333333332,4,0,4_0,4_1 +10270,1.0,11.0,59.0,111,45,60,2.0,7693,0.0,0.0,400.0,0.0,1.0,2.0,0.0,1.0,1.0,2492.190608912366,1926.6,4000.0,20434.0,1,1,9,7.0,1,2.0,1.0,0.0,0,0,0,1,0,0,1.0,1.0,20434.0,3,0,3_0,3_0 +10271,0.0,23.0,53.0,112,43,33,0.0,7694,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1172.8982622719823,0.0,0.0,110682.0,1,3,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,52705.71428571428,5,0,5,5_1 +10272,6.0,6.0,62.0,120,75,50,0.0,7696,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1823.4809063183852,4164.68,0.0,94730.0,5,2,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,63153.333333333336,5,0,5,5_1 +10273,7.0,11.0,21.0,111,42,42,0.0,7697,0.0,300.0,0.0,315.0,2.0,3.0,0.0,2.0,1.5,3401.978636665655,3120.0,0.0,16303.0,1,3,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,10868.666666666666,1,0,1_1,1_0 +10274,0.0,0.0,63.0,111,52,50,0.0,77,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1951.9516134447072,0.0,0.0,31640.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21093.333333333332,3,0,3_0,3_0 +10275,9.0,9.0,62.0,111,75,30,0.0,770,0.0,0.0,199998.0,0.0,0.0,4.0,0.0,1.0,1.0,3185.684973180444,0.0,0.0,25050.0,5,1,10,8.0,1,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,25050.0,4,0,4_0,4_0 +10276,0.0,0.0,52.0,300,63,50,0.0,7700,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3329.1942133288776,0.0,0.0,19288.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19288.0,3,0,3_0,3_1 +10277,1.0,3.0,73.0,111,78,44,0.0,7701,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2219.1491683138756,2577.12,0.0,17404.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17404.0,2,0,2_0,2_0 +10278,2.0,11.0,50.0,400,54,42,0.0,7702,0.0,300.0,0.0,0.0,1.0,11.0,0.0,2.0,1.5,2408.7972834655934,2497.56,0.0,45229.0,1,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,30152.666666666668,4,0,4_0,4_0 +10279,7.0,7.0,35.0,111,62,50,0.0,7704,0.0,200.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,3262.885671676559,3120.0,0.0,54690.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,21034.615384615383,3,0,3_0,3_0 +10280,0.0,0.0,59.0,300,47,50,0.0,7705,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1689.3203389613632,2943.2000000000003,0.0,40136.0,4,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26757.333333333332,4,0,4_0,4_0 +10281,0.0,0.0,49.0,111,45,50,0.0,7706,0.0,0.0,0.0,290.0,2.0,4.0,1.0,3.0,1.8,3459.7038801640906,2064.4,0.0,47112.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26173.333333333332,4,0,4_0,4_0 +10282,4.0,4.0,66.0,111,77,60,0.0,7709,0.0,20.0,0.0,284.0,0.0,4.0,0.0,1.0,1.0,2044.791445952624,0.0,0.0,17060.0,5,3,7,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17060.0,2,0,2_0,2_0 +10283,0.0,0.0,27.0,111,42,42,0.0,771,0.0,0.0,0.0,535.0,2.0,2.0,0.0,2.0,1.5,3447.579104134573,2080.0,0.0,31075.0,4,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,20716.666666666668,3,0,3_1,3_0 +10284,8.0,12.0,47.0,211,62,50,0.0,7711,0.0,99999.0,0.0,520.0,2.0,5.0,3.0,5.0,2.6,721.776082809108,3045.12,0.0,47035.0,1,3,2,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18090.384615384613,2,0,2_0,2_0 +10285,2.0,5.0,31.0,111,54,50,0.0,7712,0.0,140.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,4209.396142771048,0.0,0.0,33713.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,16053.809523809523,2,0,2_1,2_0 +10286,0.0,0.0,50.0,111,52,30,0.0,7713,0.0,0.0,0.0,17.0,1.0,3.0,1.0,2.0,1.3,626.8517961644188,0.0,0.0,13329.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10253.076923076922,1,0,1_1,1_0 +10287,0.0,0.0,71.0,111,77,60,0.0,7714,0.0,0.0,0.0,331.0,0.0,2.0,0.0,1.0,1.0,3318.5496879100992,0.0,0.0,17600.0,5,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17600.0,2,0,2_0,2_0 +10288,0.0,0.0,30.0,112,33,60,0.0,7715,0.0,0.0,0.0,0.0,1.0,8.0,3.0,5.0,2.4,2220.76324153869,0.0,0.0,41056.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17106.666666666668,2,0,2_0,2_1 +10289,3.0,3.0,76.0,111,77,70,0.0,7716,0.0,0.0,0.0,296.0,0.0,2.0,0.0,2.0,1.5,3033.1053667854503,1457.56,0.0,29709.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19806.0,3,0,3_0,3_0 +10290,0.0,0.0,36.0,400,47,42,0.0,7719,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,2339.390950627647,5902.52,0.0,48865.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20360.416666666668,3,0,3_0,3_1 +10291,1.0,9.0,53.0,112,43,33,2.0,772,0.0,100.0,0.0,0.0,3.0,5.0,1.0,5.0,3.0,3232.9501347084715,9578.4,7000.0,102146.0,1,1,9,1.0,5,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,34048.666666666664,5,0,5,5_0 +10292,12.0,12.0,50.0,111,37,31,0.0,7720,0.0,0.0,250.0,0.0,1.0,7.0,4.0,6.0,3.3,1769.339707862297,0.0,0.0,70158.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,21260.0,3,0,3_0,3_0 +10293,10.0,18.0,59.0,111,81,50,0.0,7721,0.0,50.0,0.0,119.0,1.0,3.0,0.0,1.0,1.0,1831.7959760632382,0.0,0.0,5280.0,4,3,6,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,5280.0,1,0,1_0,1_0 +10294,4.0,4.0,38.0,111,56,50,0.0,7730,0.0,180.0,0.0,0.0,2.0,4.0,3.0,4.0,2.1,583.8715132157021,4398.68,0.0,20771.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,9890.95238095238,1,0,1_1,1_0 +10295,0.0,0.0,55.0,112,52,50,0.0,7731,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2079.049985072213,0.0,0.0,22294.0,1,2,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22294.0,3,0,3_0,3_1 +10296,4.0,11.0,35.0,111,62,50,0.0,7733,0.0,0.0,100.0,363.0,1.0,1.0,0.0,1.0,1.0,2925.760328749078,0.0,0.0,25945.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,25945.0,4,0,4_0,4_0 +10297,0.0,0.0,47.0,111,37,31,0.0,7734,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2117.724879948281,1820.52,0.0,45995.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,45995.0,5,0,5,5_0 +10298,0.0,8.0,34.0,111,54,31,2.0,7738,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1434.9271195579972,0.0,8000.0,25030.0,1,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25030.0,4,0,4_0,4_0 +10299,2.0,2.0,51.0,111,53,60,0.0,7741,0.0,450.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1515.8294292147143,6240.0,0.0,54090.0,1,1,8,7.0,3,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,36060.0,5,0,5,5_0 +10300,7.0,10.0,39.0,111,62,42,0.0,7742,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,1766.2449334831747,0.0,0.0,54151.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,30083.888888888887,4,0,4_0,4_0 +10301,0.0,0.0,67.0,111,75,33,1.0,7744,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,4365.610174290203,2574.0,14693.0,70280.0,5,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,46853.333333333336,5,0,5,5_0 +10302,8.0,14.0,37.0,111,37,20,0.0,7746,0.0,400.0,70.0,0.0,2.0,4.0,2.0,4.0,2.1,2490.915161852148,2600.0,0.0,68602.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,32667.619047619046,5,0,5,5_0 +10303,3.0,10.0,43.0,112,42,41,0.0,7747,0.0,2600.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2222.5125343188047,5019.5599999999995,0.0,46675.0,1,2,10,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,25930.555555555555,4,0,4_0,4_1 +10304,12.0,12.0,69.0,111,78,50,0.0,7748,0.0,0.0,350.0,0.0,2.0,5.0,1.0,5.0,2.8,3604.9802355602715,2600.0,0.0,93932.0,5,1,9,7.0,5,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,33547.14285714286,5,0,5,5_0 +10305,0.0,0.0,24.0,112,46,44,0.0,7749,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1078.4664548671774,0.0,0.0,48592.0,1,2,10,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32394.666666666668,5,0,5,5_0 +10306,4.0,8.0,39.0,111,56,50,0.0,775,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,913.326109255725,1560.0,0.0,27186.0,1,2,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,20912.30769230769,3,0,3_0,3_0 +10307,0.0,0.0,44.0,111,85,71,0.0,7750,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2391.598630780953,0.0,0.0,14160.0,7,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14160.0,2,0,2_1,2_0 +10308,0.0,11.0,31.0,111,68,71,0.0,7751,0.0,0.0,0.0,0.0,1.0,3.0,3.0,4.0,1.9,923.044604023641,0.0,0.0,32848.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,17288.42105263158,2,0,2_1,2_0 +10309,1.0,1.0,34.0,111,65,71,1.0,7752,0.0,0.0,0.0,144.0,1.0,5.0,4.0,7.0,3.4,2220.2481009004314,0.0,20000.0,35484.0,4,3,6,4.0,5,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,10436.470588235294,1,0,1_1,1_0 +10310,1.0,11.0,87.0,211,72,70,2.0,7754,0.0,100149.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1825.7026040913224,0.0,1500.0,21884.0,5,1,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,14589.333333333334,2,0,2_0,2_0 +10311,3.0,3.0,57.0,221,63,50,0.0,7755,0.0,150.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,696.2994821750208,0.0,0.0,43022.0,1,2,1,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20486.666666666664,3,0,3_0,3_0 +10312,8.0,9.0,32.0,111,43,33,0.0,7757,0.0,0.0,0.0,453.0,2.0,3.0,2.0,4.0,2.1,1533.5866514886477,1872.0,0.0,54810.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,26100.0,4,0,4_0,4_0 +10313,2.0,5.0,29.0,111,31,10,0.0,7758,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3454.0637539951413,2066.48,0.0,45280.0,1,1,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,45280.0,5,0,5,5_0 +10314,0.0,16.0,55.0,400,48,50,0.0,7759,0.0,140.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2136.505104782897,2125.24,0.0,41800.0,1,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27866.666666666668,4,0,4_0,4_1 +10315,0.0,0.0,68.0,400,75,33,0.0,776,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1706.198410984773,0.0,0.0,30112.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20074.666666666668,3,0,3_0,3_1 +10316,0.0,0.0,28.0,111,64,50,0.0,7761,0.0,0.0,0.0,103.0,1.0,3.0,1.0,3.0,1.8,2925.8663209240813,0.0,0.0,29655.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16475.0,2,0,2_1,2_0 +10317,2.0,10.0,76.0,211,,50,0.0,7762,0.0,0.0,0.0,409.0,0.0,4.0,0.0,2.0,1.5,1467.9573496893092,0.0,0.0,21413.0,5,3,3,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,14275.333333333334,2,0,2_0,2_0 +10318,0.0,6.0,42.0,111,22,41,0.0,7763,0.0,120.0,0.0,671.0,1.0,2.0,0.0,1.0,1.0,5147.069336206281,0.0,0.0,9988.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,1,0.0,1.0,9988.0,1,0,1_1,1_0 +10319,21.0,21.0,66.0,111,31,60,0.0,7764,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1470.4553265047007,2042.0400000000002,0.0,38969.0,1,1,10,8.0,1,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,38969.0,5,0,5,5_0 +10320,0.0,0.0,77.0,111,78,71,0.0,7766,0.0,0.0,0.0,264.0,0.0,3.0,0.0,2.0,1.5,2274.241880645514,0.0,0.0,14850.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9900.0,1,0,1_0,1_0 +10321,0.0,12.0,42.0,400,52,50,2.0,7767,0.0,0.0,200.0,0.0,1.0,4.0,1.0,2.0,1.3,3496.828331517844,0.0,2000.0,29820.0,1,2,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,22938.46153846154,3,0,3_0,3_1 +10322,6.0,6.0,28.0,300,69,71,0.0,777,0.0,99999.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,232.78006085888566,0.0,0.0,12807.0,4,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,9851.538461538461,1,0,1_1,1_1 +10323,2.0,18.0,56.0,111,34,10,0.0,7772,0.0,0.0,0.0,975.0,1.0,3.0,2.0,3.0,2.0,1164.456067720108,0.0,0.0,86842.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,43421.0,5,0,5,5_0 +10324,10.0,11.0,60.0,111,75,60,0.0,7773,0.0,600.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1901.5461980504085,2860.0,0.0,44405.0,5,1,7,5.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,29603.333333333332,4,0,4_0,4_0 +10325,11.0,11.0,55.0,112,53,50,0.0,7774,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1314.8993509783313,0.0,0.0,47156.0,1,2,8,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,31437.333333333332,4,0,4_0,4_0 +10326,3.0,9.0,50.0,111,48,31,0.0,7776,0.0,400.0,20.0,0.0,2.0,2.0,0.0,2.0,1.5,2879.954110873043,0.0,0.0,36610.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,24406.666666666668,4,0,4_0,4_0 +10327,0.0,0.0,66.0,112,77,70,0.0,7777,0.0,0.0,0.0,0.0,0.0,5.0,0.0,3.0,2.0,3861.682487364104,0.0,0.0,46869.0,5,1,6,0.0,5,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23434.5,3,0,3_0,3_1 +10328,3.0,3.0,52.0,111,34,10,0.0,7778,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,342.1771896449455,3016.0,0.0,45602.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19826.956521739132,3,0,3_0,3_0 +10329,9.0,12.0,66.0,112,22,30,0.0,7779,0.0,100.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1628.873473461335,2990.0,0.0,67084.0,5,1,8,1.0,3,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,44722.666666666664,5,0,5,5_0 +10330,4.0,4.0,43.0,111,52,60,0.0,7780,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1043.7969203762966,0.0,0.0,31921.0,1,1,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,17733.888888888887,2,0,2_0,2_0 +10331,1.0,1.0,43.0,111,34,30,1.0,7781,0.0,0.0,0.0,0.0,1.0,7.0,3.0,4.0,2.3,712.6458246640963,2069.6,13000.0,35716.0,1,1,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15528.695652173914,2,0,2_0,2_0 +10332,1.0,1.0,65.0,112,75,50,0.0,7782,0.0,0.0,300.0,0.0,0.0,4.0,0.0,2.0,1.5,1578.1035554810485,0.0,0.0,28838.0,5,2,7,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19225.333333333332,3,0,3_0,3_0 +10333,1.0,1.0,32.0,111,65,50,0.0,7785,0.0,100019.0,99999.0,223.0,1.0,2.0,0.0,1.0,1.0,4642.964529664665,0.0,0.0,17511.0,1,3,6,5.0,1,4.0,0.0,1.0,0,0,1,0,0,0,1.0,3.0,17511.0,2,0,2_0,2_0 +10334,7.0,16.0,44.0,111,56,42,0.0,7786,0.0,0.0,0.0,302.0,1.0,4.0,4.0,5.0,2.6,480.2193026288413,0.0,0.0,32010.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,12311.538461538461,1,0,1_1,1_0 +10335,0.0,0.0,44.0,111,53,71,0.0,7787,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2445.116465496456,2860.0,0.0,42885.0,1,2,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28590.0,4,0,4_0,4_0 +10336,0.0,0.0,29.0,111,47,31,0.0,7788,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3077.3831012357946,0.0,0.0,44564.0,1,2,5,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29709.333333333332,4,0,4_0,4_0 +10337,3.0,6.0,53.0,111,38,10,0.0,7789,0.0,920.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,896.980128080128,4548.96,0.0,186580.0,1,1,4,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,74632.0,5,0,5,5_0 +10338,5.0,13.0,51.0,111,46,71,0.0,7790,0.0,0.0,500.0,0.0,2.0,4.0,0.0,2.0,1.5,3867.995074024387,0.0,0.0,61769.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,41179.333333333336,5,0,5,5_0 +10339,7.0,7.0,39.0,300,43,0,0.0,7792,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2057.9976141161296,2626.0,0.0,84600.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,47000.0,5,0,5,5_1 +10340,0.0,0.0,29.0,111,45,30,0.0,7793,0.0,0.0,0.0,438.0,1.0,3.0,0.0,1.0,1.0,2775.9602011858037,0.0,0.0,31217.0,1,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31217.0,4,0,4_0,4_0 +10341,2.0,2.0,57.0,111,43,33,1.0,7794,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,759.6970408380388,0.0,9400.0,104710.0,1,2,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,69806.66666666667,5,0,5,5_0 +10342,9.0,9.0,77.0,111,75,33,0.0,7795,0.0,20.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3259.9161340615983,0.0,0.0,30667.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,30667.0,4,0,4_0,4_0 +10343,13.0,15.0,79.0,400,78,70,0.0,7796,0.0,100199.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3895.942814156833,0.0,0.0,19273.0,5,1,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,19273.0,3,0,3_0,3_1 +10344,5.0,6.0,60.0,111,77,60,0.0,7797,0.0,0.0,80.0,92.0,0.0,3.0,0.0,1.0,1.0,1093.7736123835473,0.0,0.0,6109.0,7,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,6109.0,1,0,1_1,1_0 +10345,16.0,16.0,60.0,112,22,31,0.0,7798,0.0,0.0,0.0,618.0,3.0,3.0,2.0,4.0,2.5,1830.6573763087144,3125.2000000000003,0.0,80420.0,1,3,10,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32168.0,5,0,5,5_0 +10346,7.0,8.0,34.0,300,52,50,0.0,7799,0.0,450.0,0.0,791.0,2.0,4.0,3.0,5.0,2.6,2317.8488990864016,1560.52,0.0,48490.0,1,3,0,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,18650.0,2,0,2_0,2_1 +10347,0.0,1.0,48.0,400,67,71,0.0,780,0.0,600.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,1950.1320674777364,3640.0,0.0,41318.0,1,1,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,15891.538461538461,2,0,2_0,2_1 +10348,6.0,15.0,65.0,111,74,20,0.0,7800,0.0,350.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1777.0635449657607,1301.04,0.0,57177.0,5,1,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,38118.0,5,0,5,5_0 +10349,6.0,6.0,52.0,111,42,31,0.0,7802,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,2.0,943.2272387302236,0.0,0.0,40013.0,1,1,7,5.0,2,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,20006.5,3,0,3_0,3_0 +10350,0.0,0.0,34.0,111,38,10,0.0,7803,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2404.3556901918955,1298.96,0.0,38845.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18497.619047619046,2,0,2_0,2_0 +10351,5.0,15.0,39.0,111,38,20,0.0,7804,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2726.2253262140407,1950.0,0.0,30375.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18984.375,3,0,3_0,3_0 +10352,1.0,1.0,52.0,111,21,31,1.0,7805,0.0,0.0,0.0,465.0,2.0,2.0,1.0,3.0,1.8,4224.340986896368,1613.04,12900.0,36754.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20418.888888888887,3,0,3_0,3_0 +10353,7.0,9.0,58.0,111,52,41,0.0,7806,0.0,0.0,45.0,0.0,2.0,5.0,0.0,2.0,1.5,1421.4190640589347,1820.0,0.0,33635.0,1,2,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,22423.333333333332,3,0,3_0,3_0 +10354,5.0,7.0,40.0,111,55,71,0.0,7808,0.0,0.0,70.0,0.0,1.0,5.0,5.0,7.0,3.4,1142.1243169274521,1664.0,0.0,34954.0,1,3,7,6.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10280.588235294117,1,0,1_1,1_0 +10355,2.0,2.0,63.0,111,78,50,0.0,7809,0.0,100.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2801.3485239283978,0.0,0.0,22628.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,15085.333333333334,2,0,2_0,2_0 +10356,1.0,10.0,86.0,112,78,50,2.0,7810,0.0,0.0,120.0,0.0,0.0,3.0,0.0,2.0,1.5,3137.302307764384,0.0,700.0,26103.0,5,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,17402.0,2,0,2_0,2_1 +10357,0.0,0.0,45.0,111,31,20,0.0,7811,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2784.0640996318025,0.0,0.0,54920.0,1,2,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26152.38095238095,4,0,4_0,4_0 +10358,0.0,0.0,64.0,112,71,50,0.0,7812,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2209.292631970182,0.0,0.0,11577.0,5,3,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11577.0,1,0,1_0,1_0 +10359,7.0,17.0,72.0,111,77,41,0.0,7815,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3968.6029118036195,0.0,0.0,43317.0,5,1,6,5.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,43317.0,5,0,5,5_0 +10360,13.0,13.0,58.0,111,38,12,0.0,7817,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2018.1210483377117,0.0,0.0,143528.0,1,2,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,95685.33333333333,5,0,5,5_0 +10361,4.0,10.0,54.0,111,37,31,0.0,7819,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2713.4850749524808,0.0,0.0,206169.0,1,2,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,103084.5,5,0,5,5_0 +10362,10.0,10.0,71.0,111,75,50,0.0,782,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1799.7876104663314,0.0,0.0,32439.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21626.0,3,0,3_0,3_0 +10363,0.0,0.0,52.0,111,34,10,0.0,7820,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1959.6701584667867,4474.6,0.0,218201.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,145467.33333333334,5,0,5,5_0 +10364,1.0,16.0,35.0,112,52,50,2.0,7821,0.0,0.0,250.0,0.0,1.0,4.0,2.0,3.0,1.6,1124.3729413856925,1040.0,4000.0,26525.0,1,2,8,1.0,2,3.0,0.0,0.0,0,1,0,0,0,1,2.0,1.0,16578.125,2,0,2_1,2_0 +10365,4.0,4.0,36.0,111,46,43,0.0,7824,0.0,0.0,400.0,0.0,2.0,3.0,1.0,3.0,1.8,2421.2603795507534,0.0,0.0,25586.0,4,2,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,14214.444444444443,2,0,2_1,2_0 +10366,25.0,25.0,72.0,111,78,71,0.0,7825,0.0,0.0,0.0,31.0,0.0,2.0,0.0,1.0,1.0,3734.412039514338,0.0,0.0,13170.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,13170.0,1,0,1_1,1_0 +10367,11.0,14.0,56.0,111,55,50,0.0,7826,0.0,0.0,0.0,274.0,1.0,2.0,0.0,1.0,1.0,2872.108855861905,1560.0,0.0,22854.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,22854.0,3,0,3_1,3_0 +10368,0.0,6.0,38.0,300,13,43,2.0,7828,0.0,0.0,0.0,0.0,1.0,6.0,4.0,6.0,2.7,1492.0225434468045,0.0,12500.0,30452.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,11278.518518518518,1,0,1_1,1_1 +10369,0.0,0.0,52.0,111,22,31,0.0,7829,0.0,0.0,0.0,933.0,2.0,2.0,0.0,2.0,1.5,3469.956279081641,0.0,0.0,52907.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35271.333333333336,5,0,5,5_0 +10370,6.0,6.0,28.0,112,67,60,0.0,7830,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3867.44632555372,0.0,0.0,41131.0,1,2,10,0.0,4,2.0,1.0,1.0,1,0,0,0,0,1,0.0,2.0,19586.190476190477,3,0,3_1,3_1 +10371,7.0,11.0,68.0,112,74,50,0.0,7834,0.0,100.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1805.0820208463156,1562.6000000000001,0.0,37925.0,5,1,10,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25283.333333333332,4,0,4_0,4_1 +10372,0.0,13.0,66.0,111,78,71,0.0,7835,0.0,0.0,700.0,0.0,0.0,4.0,0.0,1.0,1.0,2178.3958283528045,0.0,0.0,20975.0,5,1,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,20975.0,3,0,3_0,3_0 +10373,1.0,3.0,21.0,111,84,41,0.0,7837,0.0,1200.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,5881.837566359591,0.0,0.0,16184.0,3,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,16184.0,2,0,2_0,2_0 +10374,5.0,5.0,71.0,111,77,50,0.0,7838,0.0,550.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1688.913948114323,3641.04,0.0,37640.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25093.333333333332,4,0,4_0,4_0 +10375,0.0,0.0,44.0,112,47,31,0.0,7839,0.0,0.0,0.0,820.0,1.0,5.0,1.0,2.0,1.3,392.8730518873018,4042.4800000000005,0.0,28839.0,1,3,9,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22183.846153846152,3,0,3_0,3_1 +10376,3.0,6.0,59.0,111,78,71,0.0,784,0.0,400.0,0.0,48.0,0.0,4.0,1.0,3.0,2.0,2270.1722134153965,0.0,0.0,14212.0,7,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,7106.0,1,0,1_1,1_0 +10377,6.0,21.0,36.0,120,42,50,0.0,7841,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2085.0755491132654,2912.0,0.0,39190.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,1,1.0,1.0,18661.90476190476,2,0,2_1,2_1 +10378,6.0,6.0,54.0,111,48,60,0.0,7842,0.0,0.0,0.0,603.0,3.0,6.0,2.0,4.0,2.5,1893.173032757343,1869.4,0.0,28851.0,5,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11540.4,1,0,1_0,1_0 +10379,5.0,5.0,73.0,111,77,50,0.0,7843,0.0,200.0,0.0,313.0,0.0,2.0,0.0,1.0,1.0,2495.1363791418016,1300.0,0.0,17860.0,5,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17860.0,2,0,2_0,2_0 +10380,3.0,7.0,90.0,211,78,50,0.0,7845,0.0,10.0,0.0,0.0,0.0,6.0,1.0,2.0,1.5,1677.3623558879667,0.0,0.0,54019.0,5,4,1,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,36012.666666666664,5,0,5,5_0 +10381,8.0,8.0,37.0,111,45,31,0.0,7847,0.0,0.0,200.0,0.0,2.0,3.0,3.0,5.0,2.4,1920.1543104878674,0.0,0.0,54981.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,22908.75,3,0,3_0,3_0 +10382,1.0,1.0,77.0,111,74,50,1.0,7849,0.0,350.0,200.0,0.0,0.0,5.0,0.0,2.0,1.5,2159.78501981688,0.0,32600.0,42547.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,28364.666666666668,4,0,4_0,4_0 +10383,1.0,14.0,45.0,111,43,33,0.0,785,0.0,600.0,150.0,800.0,1.0,4.0,2.0,3.0,2.0,581.1379729724622,1809.6,0.0,31690.0,1,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,15845.0,2,0,2_0,2_0 +10384,0.0,0.0,84.0,111,77,60,0.0,7851,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2349.7604437710233,0.0,0.0,18324.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18324.0,2,0,2_0,2_0 +10385,3.0,7.0,75.0,111,74,44,0.0,7857,0.0,150.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2375.8398375975257,0.0,0.0,53217.0,5,2,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,35478.0,5,0,5,5_0 +10386,0.0,0.0,25.0,111,67,60,0.0,7859,0.0,0.0,0.0,680.0,1.0,2.0,0.0,1.0,1.0,3623.0082447865525,0.0,0.0,20183.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20183.0,3,0,3_0,3_0 +10387,0.0,0.0,65.0,111,34,10,0.0,786,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1739.9933746505294,0.0,0.0,85510.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,57006.666666666664,5,0,5,5_0 +10388,2.0,9.0,62.0,211,78,71,0.0,7861,0.0,0.0,250.0,0.0,0.0,2.0,0.0,1.0,1.0,3908.9447008664547,0.0,0.0,5822.0,4,1,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,5822.0,1,0,1_0,1_0 +10389,0.0,0.0,30.0,111,55,41,0.0,7863,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1003.6183141554017,1040.0,0.0,17504.0,1,3,4,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,13464.615384615385,1,0,1_1,1_0 +10390,0.0,0.0,87.0,111,77,50,0.0,7864,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2115.285661521183,0.0,0.0,24232.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24232.0,4,0,4_0,4_0 +10391,0.0,0.0,59.0,120,62,71,0.0,7865,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1857.5004501834824,0.0,0.0,14668.0,1,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14668.0,2,0,2_0,2_1 +10392,0.0,0.0,45.0,111,48,42,0.0,7867,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2701.7442372206183,2600.0,0.0,32578.0,1,1,5,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32578.0,5,0,5,5_0 +10393,0.0,0.0,45.0,111,65,50,0.0,7868,0.0,0.0,0.0,279.0,1.0,1.0,0.0,1.0,1.0,2670.802981568463,0.0,0.0,14732.0,4,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14732.0,2,0,2_1,2_0 +10394,0.0,0.0,26.0,112,56,50,0.0,7869,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,965.4244355759502,2080.0,0.0,16857.0,4,3,6,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10535.625,1,0,1_1,1_0 +10395,3.0,3.0,74.0,112,78,70,0.0,787,0.0,99999.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2309.2487925686237,1308.32,0.0,17649.0,5,1,7,4.0,3,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,11766.0,1,0,1_0,1_0 +10396,0.0,0.0,53.0,300,85,50,0.0,7870,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2217.407982369894,0.0,0.0,8925.0,7,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8925.0,1,0,1_1,1_1 +10397,0.0,0.0,22.0,111,56,50,0.0,7871,0.0,0.0,0.0,82.0,1.0,3.0,1.0,2.0,1.3,1096.2804334674586,0.0,0.0,15929.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12253.076923076922,1,0,1_1,1_0 +10398,0.0,0.0,26.0,111,67,50,0.0,7872,0.0,0.0,0.0,276.0,1.0,3.0,0.0,1.0,1.0,3397.120044681143,0.0,0.0,12790.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12790.0,1,0,1_1,1_0 +10399,13.0,13.0,75.0,400,75,60,0.0,7874,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2948.7114762320516,1465.36,0.0,24444.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24444.0,4,0,4_0,4_1 +10400,17.0,17.0,41.0,111,63,43,0.0,7875,0.0,0.0,0.0,363.0,1.0,4.0,2.0,4.0,2.1,3414.573633034128,525.1999999999999,0.0,31851.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,15167.142857142857,2,0,2_1,2_0 +10401,10.0,13.0,67.0,111,74,44,0.0,7876,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1488.2489548019528,0.0,0.0,42474.0,5,1,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,28316.0,4,0,4_0,4_0 +10402,1.0,1.0,59.0,300,52,50,1.0,7878,0.0,350.0,200.0,0.0,1.0,4.0,0.0,1.0,1.0,1556.1409877540534,0.0,20000.0,18739.0,1,2,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,18739.0,3,0,3_0,3_0 +10403,3.0,3.0,52.0,111,52,50,0.0,7879,0.0,0.0,60.0,235.0,1.0,3.0,0.0,1.0,1.0,2153.9254794933413,0.0,0.0,10790.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10790.0,1,0,1_1,1_0 +10404,21.0,23.0,71.0,111,75,50,0.0,7880,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2014.845710834759,0.0,0.0,24592.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,24592.0,4,0,4_1,4_0 +10405,3.0,6.0,64.0,300,78,50,0.0,7881,0.0,350.0,200.0,0.0,1.0,5.0,1.0,2.0,1.5,5350.688380722057,2600.0,0.0,39798.0,5,1,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26532.0,4,0,4_0,4_1 +10406,8.0,8.0,71.0,120,72,20,0.0,7883,0.0,500.0,200.0,315.0,0.0,3.0,0.0,2.0,1.5,2877.3612142002194,0.0,0.0,23217.0,5,3,0,1.0,5,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,15478.0,2,0,2_0,2_0 +10407,6.0,15.0,45.0,112,37,50,0.0,7884,0.0,80.0,120.0,0.0,1.0,4.0,0.0,1.0,1.0,1785.2783186984382,3900.0,0.0,35420.0,1,3,8,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,35420.0,5,0,5,5_1 +10408,6.0,7.0,76.0,300,78,71,0.0,7885,0.0,30.0,25.0,0.0,0.0,4.0,0.0,2.0,1.5,1707.979735210798,0.0,0.0,24242.0,5,1,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,16161.333333333334,2,0,2_0,2_0 +10409,0.0,0.0,32.0,211,68,71,0.0,7886,0.0,0.0,0.0,43.0,1.0,4.0,3.0,4.0,2.1,1126.9967213630011,0.0,0.0,22144.0,4,3,3,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,10544.761904761905,1,0,1_1,1_0 +10410,11.0,19.0,69.0,112,75,33,0.0,7887,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1866.8944143739977,0.0,0.0,38183.0,5,4,4,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,38183.0,5,0,5,5_1 +10411,10.0,10.0,74.0,111,77,41,0.0,7888,0.0,0.0,0.0,289.0,0.0,2.0,0.0,2.0,1.5,2122.5328015260748,0.0,0.0,39931.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,26620.666666666668,4,0,4_0,4_0 +10412,17.0,18.0,76.0,211,77,70,0.0,789,0.0,0.0,0.0,372.0,0.0,3.0,0.0,1.0,1.0,1222.9441731472127,0.0,0.0,25762.0,5,3,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25762.0,4,0,4_0,4_0 +10413,3.0,3.0,41.0,112,43,33,0.0,7891,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2376.580039381453,0.0,0.0,75860.0,1,1,7,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,36123.80952380952,5,0,5,5_1 +10414,4.0,12.0,39.0,111,37,20,0.0,7892,0.0,0.0,200.0,0.0,2.0,4.0,1.0,3.0,1.8,2073.847483696715,380.64,0.0,64621.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,35900.555555555555,5,0,5,5_0 +10415,0.0,0.0,58.0,111,77,50,0.0,7893,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,668.9203708540465,2028.0,0.0,49392.0,5,1,4,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,32928.0,5,0,5,5_0 +10416,2.0,5.0,48.0,300,46,50,0.0,7895,0.0,146.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2776.1873605891146,3572.4,0.0,46036.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21921.90476190476,3,0,3_0,3_1 +10417,2.0,2.0,86.0,221,74,70,0.0,7898,0.0,160.0,100.0,0.0,0.0,5.0,0.0,1.0,1.0,2671.786992584897,0.0,0.0,21740.0,5,1,1,2.0,1,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,21740.0,3,0,3_0,3_0 +10418,11.0,19.0,59.0,112,74,50,0.0,7899,0.0,0.0,115.0,0.0,1.0,4.0,1.0,3.0,2.0,2576.7832100267615,1952.6,0.0,67967.0,5,1,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,33983.5,5,0,5,5_0 +10419,11.0,11.0,60.0,111,75,33,0.0,79,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,1657.0377486495654,2676.44,0.0,19696.0,7,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,13130.666666666666,1,0,1_0,1_0 +10420,4.0,9.0,42.0,0,54,41,0.0,7900,0.0,10.0,0.0,520.0,1.0,5.0,2.0,3.0,2.0,1139.9447074669524,1664.0,0.0,20090.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10045.0,1,0,1_0,1_1 +10421,7.0,7.0,54.0,111,47,50,0.0,7901,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,3049.7197731197243,5200.0,0.0,78043.0,1,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,31217.2,4,0,4_0,4_0 +10422,0.0,14.0,69.0,111,77,70,0.0,7902,0.0,320.0,0.0,245.0,0.0,1.0,0.0,1.0,1.0,3855.570809291012,0.0,0.0,17580.0,5,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,17580.0,2,0,2_1,2_0 +10423,6.0,6.0,65.0,112,74,71,0.0,7904,0.0,0.0,99999.0,0.0,1.0,5.0,0.0,2.0,1.5,1521.9470236627553,0.0,0.0,38550.0,5,1,10,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,25700.0,4,0,4_0,4_0 +10424,0.0,0.0,56.0,111,34,20,0.0,7908,0.0,0.0,0.0,0.0,5.0,7.0,4.0,6.0,3.5,2737.334976979133,4571.32,0.0,178095.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,50884.28571428572,5,0,5,5_0 +10425,0.0,0.0,42.0,111,52,50,0.0,7911,0.0,0.0,0.0,430.0,1.0,3.0,1.0,2.0,1.5,1097.5835838164505,1560.0,0.0,29059.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19372.666666666668,3,0,3_0,3_0 +10426,14.0,14.0,42.0,111,85,50,0.0,7912,0.0,0.0,0.0,0.0,1.0,2.0,4.0,5.0,2.6,568.2559679675137,0.0,0.0,29468.0,4,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,11333.846153846154,1,0,1_1,1_0 +10427,1.0,1.0,51.0,111,63,50,1.0,7913,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1786.7584040549134,0.0,26000.0,13700.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,13700.0,1,0,1_1,1_0 +10428,5.0,5.0,73.0,111,78,70,0.0,7916,0.0,50.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1849.3251944863157,0.0,0.0,22851.0,5,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22851.0,3,0,3_0,3_0 +10429,1.0,1.0,65.0,300,71,50,1.0,7917,0.0,510.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1382.0802104203299,0.0,21100.0,72010.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,48006.666666666664,5,0,5,5_1 +10430,0.0,0.0,64.0,111,75,60,0.0,7918,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3014.490738386936,0.0,0.0,31342.0,5,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20894.666666666668,3,0,3_0,3_0 +10431,15.0,20.0,56.0,111,45,42,0.0,7920,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1433.015119233471,1927.1200000000001,0.0,39517.0,1,2,7,5.0,2,2.0,1.0,0.0,0,0,1,0,0,0,2.0,0.0,19758.5,3,0,3_0,3_0 +10432,6.0,6.0,54.0,211,52,50,0.0,7925,0.0,50.0,30.0,0.0,2.0,3.0,1.0,2.0,1.5,2753.5727011758854,4500.08,0.0,35602.0,1,2,1,3.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,23734.666666666668,3,0,3_0,3_0 +10433,0.0,0.0,62.0,111,75,42,0.0,7926,0.0,0.0,0.0,560.0,0.0,3.0,0.0,1.0,1.0,9005.38811654121,0.0,0.0,25447.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25447.0,4,0,4_0,4_0 +10434,2.0,11.0,48.0,120,48,50,0.0,7927,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1985.4044235801782,1561.04,0.0,53073.0,1,2,0,3.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,21229.2,3,0,3_0,3_0 +10435,12.0,19.0,44.0,111,85,50,0.0,7928,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.8,1883.1419650605137,0.0,0.0,11790.0,8,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,6550.0,1,0,1_0,1_0 +10436,2.0,6.0,75.0,400,75,50,0.0,7929,0.0,0.0,140.0,0.0,0.0,2.0,0.0,2.0,1.5,2294.469346003231,0.0,0.0,23856.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,15904.0,2,0,2_0,2_0 +10437,0.0,0.0,51.0,112,54,31,0.0,793,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2328.053980991336,2598.96,0.0,53870.0,1,1,10,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26935.0,4,0,4_0,4_0 +10438,0.0,0.0,57.0,111,62,71,0.0,7930,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1682.2718437456615,1669.72,0.0,40110.0,1,2,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26740.0,4,0,4_0,4_0 +10439,0.0,8.0,42.0,111,62,50,2.0,7931,0.0,0.0,0.0,555.0,2.0,1.0,0.0,2.0,1.5,4366.029457710311,3796.0,4500.0,21328.0,1,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,14218.666666666666,2,0,2_0,2_0 +10440,8.0,8.0,51.0,400,55,50,0.0,7932,0.0,0.0,300.0,0.0,2.0,5.0,0.0,2.0,1.5,1614.921378940987,3655.6,0.0,10326.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,6884.0,1,0,1_1,1_1 +10441,0.0,1.0,59.0,111,78,50,2.0,7936,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2593.5574107914936,0.0,13000.0,0.0,7,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,0.0,1,0,1_1,1_0 +10442,6.0,6.0,72.0,300,74,60,0.0,7937,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2441.7261079600885,0.0,0.0,30154.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,30154.0,4,0,4_0,4_1 +10443,0.0,0.0,36.0,112,52,43,0.0,7939,0.0,0.0,0.0,202.0,1.0,4.0,2.0,3.0,1.6,550.1261746404025,0.0,0.0,32342.0,1,4,4,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,20213.75,3,0,3_1,3_1 +10444,0.0,0.0,68.0,221,75,41,0.0,794,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1284.5969283194702,1797.1200000000001,0.0,50019.0,5,1,1,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,33346.0,5,0,5,5_0 +10445,0.0,0.0,54.0,112,65,50,0.0,7940,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2052.8377376623257,0.0,0.0,45368.0,1,1,8,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30245.333333333332,4,0,4_0,4_0 +10446,8.0,8.0,44.0,111,47,71,0.0,7944,0.0,300.0,0.0,350.0,1.0,2.0,2.0,3.0,1.8,1448.6200961720858,0.0,0.0,16540.0,1,3,10,8.0,2,2.0,0.0,0.0,0,0,0,0,1,1,1.0,1.0,9188.888888888889,1,0,1_1,1_0 +10447,0.0,0.0,56.0,120,77,50,0.0,7945,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1903.0537140260915,1798.6799999999998,0.0,11660.0,6,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,11660.0,1,0,1_0,1_0 +10448,0.0,19.0,35.0,111,68,43,0.0,7946,0.0,300.0,80.0,0.0,2.0,3.0,1.0,3.0,1.8,709.9030460000679,2002.0,0.0,16980.0,1,3,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,1,1.0,2.0,9433.333333333334,1,0,1_1,1_0 +10449,6.0,6.0,44.0,111,54,71,0.0,795,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1361.752147095334,163.79999999999998,0.0,29960.0,1,4,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,23046.153846153844,3,0,3_0,3_0 +10450,3.0,3.0,46.0,111,22,12,0.0,7950,0.0,0.0,250.0,0.0,2.0,5.0,2.0,4.0,2.3,3684.948309774325,0.0,0.0,232038.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,100886.08695652174,5,0,5,5_0 +10451,6.0,14.0,65.0,300,72,44,0.0,7951,0.0,800.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1436.7494156995317,3317.6,0.0,33788.0,5,1,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22525.333333333332,3,0,3_0,3_0 +10452,9.0,10.0,84.0,111,75,70,0.0,7954,0.0,250.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3116.4792432819213,0.0,0.0,67085.0,5,4,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,33542.5,5,0,5,5_0 +10453,0.0,0.0,40.0,111,67,71,0.0,7956,0.0,0.0,0.0,338.0,2.0,4.0,4.0,6.0,3.3,1011.4027296049486,0.0,0.0,43564.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13201.212121212122,1,0,1_1,1_0 +10454,0.0,21.0,52.0,112,54,30,0.0,7957,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1347.5430593924882,8974.16,0.0,36995.0,1,2,10,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,14798.0,2,0,2_0,2_0 +10455,0.0,0.0,33.0,120,47,50,0.0,7958,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2800.8203924693044,2173.6,0.0,31467.0,1,2,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20978.0,3,0,3_0,3_0 +10456,1.0,7.0,76.0,221,78,71,2.0,7959,0.0,90.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2168.07110329647,1825.72,800.0,47195.0,5,1,1,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,31463.333333333332,4,0,4_0,4_0 +10457,8.0,8.0,39.0,111,45,20,0.0,796,0.0,0.0,7000.0,485.0,1.0,3.0,0.0,1.0,1.0,9352.682612856159,0.0,0.0,24067.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24067.0,4,0,4_0,4_0 +10458,15.0,15.0,55.0,111,52,50,0.0,7960,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2340.4972814458674,2472.08,0.0,35558.0,1,2,5,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,23705.333333333332,3,0,3_0,3_0 +10459,6.0,16.0,57.0,112,64,50,0.0,7961,0.0,440.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1821.9508918546105,3172.0,0.0,45425.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,30283.333333333332,4,0,4_0,4_1 +10460,4.0,6.0,51.0,111,68,71,0.0,7962,0.0,0.0,0.0,0.0,4.0,4.0,2.0,5.0,2.8,3344.285881794377,0.0,0.0,77894.0,1,1,10,8.0,5,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27819.285714285717,4,0,4_0,4_0 +10461,4.0,22.0,32.0,111,37,20,0.0,7963,0.0,0.0,220.0,779.0,2.0,4.0,1.0,3.0,1.8,2572.8349658257584,4810.0,0.0,53401.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,29667.222222222223,4,0,4_0,4_0 +10462,3.0,5.0,58.0,400,31,10,0.0,7964,0.0,0.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2386.4972797260725,0.0,0.0,27496.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,27496.0,4,0,4_0,4_1 +10463,5.0,16.0,56.0,300,13,71,0.0,7966,0.0,600.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1307.4289107153297,0.0,0.0,27634.0,1,2,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18422.666666666668,2,0,2_0,2_0 +10464,2.0,13.0,29.0,221,38,12,2.0,7967,0.0,0.0,0.0,450.0,1.0,2.0,0.0,1.0,1.0,6367.422451321009,1591.2,1000.0,30087.0,1,3,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,30087.0,4,0,4_0,4_0 +10465,11.0,11.0,35.0,300,64,50,0.0,7969,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2404.969391741983,0.0,0.0,23884.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,23884.0,4,0,4_0,4_1 +10466,2.0,31.0,35.0,111,52,60,0.0,797,0.0,100.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3259.4005928377146,0.0,0.0,12379.0,4,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,0.0,2.0,12379.0,1,0,1_1,1_0 +10467,27.0,29.0,67.0,112,78,50,0.0,7970,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1989.5374827377875,0.0,0.0,27217.0,5,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,18144.666666666668,2,0,2_0,2_0 +10468,0.0,0.0,83.0,111,78,71,0.0,7971,0.0,0.0,0.0,248.0,1.0,5.0,2.0,4.0,2.5,3104.9972047042197,0.0,0.0,29070.0,5,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11628.0,1,0,1_1,1_0 +10469,0.0,1.0,42.0,111,37,20,0.0,7972,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.4,2068.5620355253905,0.0,0.0,134837.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,56182.083333333336,5,0,5,5_0 +10470,2.0,6.0,31.0,300,48,43,0.0,7975,0.0,400.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2448.438264775068,2600.0,0.0,6420.0,4,1,0,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,6420.0,1,0,1_0,1_1 +10471,3.0,13.0,24.0,112,46,60,0.0,7976,0.0,220.0,300.0,0.0,2.0,5.0,1.0,3.0,1.8,603.5576883278663,2659.7999999999997,0.0,30847.0,1,3,8,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17137.222222222223,2,0,2_0,2_1 +10472,0.0,0.0,57.0,111,54,50,0.0,7977,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3190.4250460162207,1924.0,0.0,21084.0,1,2,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,21084.0,3,0,3_0,3_0 +10473,0.0,19.0,71.0,400,72,50,2.0,7979,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1314.9880798047825,2080.0,600.0,27100.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18066.666666666668,2,0,2_0,2_0 +10474,2.0,4.0,64.0,222,78,50,0.0,798,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1893.2956169913625,0.0,0.0,35519.0,5,1,1,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23679.333333333332,3,0,3_0,3_1 +10475,5.0,8.0,38.0,111,42,33,0.0,7981,0.0,0.0,120.0,200.0,1.0,3.0,0.0,1.0,1.0,5130.169017047735,0.0,0.0,25966.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,25966.0,4,0,4_0,4_0 +10476,15.0,25.0,25.0,111,52,60,0.0,7982,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5057.360033714215,0.0,0.0,13114.0,1,3,7,6.0,1,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,13114.0,1,0,1_1,1_0 +10477,7.0,7.0,73.0,221,75,70,0.0,7983,0.0,270.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2122.758893452555,1300.52,0.0,14527.0,5,1,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14527.0,2,0,2_0,2_0 +10478,0.0,0.0,56.0,112,47,31,0.0,7984,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2480.5902048217877,2493.92,0.0,49515.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33010.0,5,0,5,5_1 +10479,0.0,0.0,55.0,211,68,30,0.0,7985,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,255.04290880150148,0.0,0.0,18946.0,1,3,4,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12630.666666666666,1,0,1_1,1_0 +10480,0.0,0.0,46.0,111,37,41,0.0,7986,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,1.8,2494.0051279705917,1560.0,0.0,105799.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,58777.22222222222,5,0,5,5_0 +10481,1.0,4.0,75.0,120,75,60,2.0,7988,0.0,120.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2552.9253366043367,0.0,8500.0,23732.0,5,1,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,23732.0,3,0,3_0,3_0 +10482,0.0,0.0,55.0,111,53,50,0.0,799,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1760.3315205718495,4160.52,0.0,56479.0,1,2,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,37652.666666666664,5,0,5,5_0 +10483,2.0,20.0,40.0,111,38,20,0.0,7990,0.0,0.0,60.0,137.0,1.0,3.0,2.0,3.0,1.6,559.6819432831638,0.0,0.0,27854.0,4,3,7,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,17408.75,2,0,2_1,2_0 +10484,0.0,0.0,54.0,111,78,71,0.0,7991,0.0,0.0,0.0,73.0,0.0,2.0,0.0,1.0,1.0,3411.0429628117895,0.0,0.0,12601.0,7,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12601.0,1,0,1_1,1_0 +10485,1.0,1.0,47.0,112,47,50,1.0,7992,0.0,1250.0,0.0,0.0,5.0,6.0,3.0,7.0,3.8,4206.483578596386,4160.0,23000.0,85796.0,1,1,10,4.0,5,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,22577.894736842107,3,0,3_0,3_0 +10486,1.0,1.0,76.0,111,75,44,0.0,7993,0.0,1600.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1869.161623977129,2444.0,0.0,37667.0,5,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,37667.0,5,0,5,5_0 +10487,0.0,0.0,34.0,400,64,50,0.0,7994,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,3288.23146931361,0.0,0.0,32849.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18249.444444444445,2,0,2_0,2_1 +10488,9.0,25.0,73.0,112,78,50,0.0,7995,0.0,0.0,200.0,0.0,0.0,6.0,0.0,2.0,1.5,1663.4331842853408,0.0,0.0,34064.0,5,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22709.333333333332,3,0,3_0,3_0 +10489,1.0,1.0,60.0,300,56,70,1.0,7996,0.0,524.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2145.7390841453707,0.0,13000.0,8144.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,8144.0,1,0,1_0,1_1 +10490,2.0,4.0,52.0,112,46,50,0.0,7997,0.0,0.0,300.0,0.0,2.0,6.0,1.0,3.0,1.8,1833.554341426663,0.0,0.0,70924.0,1,2,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,39402.22222222222,5,0,5,5_1 +10491,9.0,11.0,75.0,111,77,71,0.0,7998,0.0,200.0,0.0,66.0,0.0,2.0,0.0,1.0,1.0,2904.7467219614396,0.0,0.0,11694.0,5,3,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,11694.0,1,0,1_1,1_0 +10492,0.0,0.0,67.0,400,69,31,0.0,7999,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1673.4600135847804,0.0,0.0,35014.0,5,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17507.0,2,0,2_0,2_1 +10493,7.0,11.0,46.0,111,64,31,0.0,8,0.0,550.0,0.0,0.0,2.0,6.0,4.0,6.0,3.3,2409.3564236983652,2731.04,0.0,50899.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,15423.939393939394,2,0,2_1,2_0 +10494,5.0,11.0,38.0,400,64,71,0.0,80,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.1,2948.8438237666796,0.0,0.0,37560.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,17885.714285714286,2,0,2_0,2_1 +10495,0.0,0.0,50.0,111,67,50,0.0,800,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1459.588036763787,810.16,0.0,36905.0,1,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14762.0,2,0,2_0,2_0 +10496,21.0,21.0,36.0,221,22,60,0.0,8001,0.0,0.0,0.0,0.0,1.0,2.0,2.0,3.0,1.8,385.38457645892805,1560.0,0.0,15759.0,1,3,1,3.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,8755.0,1,0,1_1,1_0 +10497,0.0,0.0,82.0,111,78,71,0.0,8003,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3468.505223709695,0.0,0.0,29598.0,5,3,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19732.0,3,0,3_0,3_0 +10498,6.0,14.0,69.0,111,78,50,0.0,8004,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1313.0216429104469,0.0,0.0,26544.0,5,1,6,5.0,3,3.0,0.0,0.0,0,0,1,0,0,0,0.0,3.0,17696.0,2,0,2_0,2_0 +10499,0.0,0.0,25.0,111,63,31,0.0,8007,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3329.3918854112007,0.0,0.0,25216.0,1,2,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25216.0,4,0,4_0,4_0 +10500,4.0,14.0,32.0,111,38,20,0.0,8008,0.0,0.0,299997.0,0.0,2.0,6.0,2.0,4.0,2.1,3515.963885858901,0.0,0.0,62117.0,1,2,9,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,3.0,0.0,29579.52380952381,4,0,4_0,4_0 +10501,3.0,3.0,63.0,111,75,41,0.0,8009,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2246.371061463636,1631.76,0.0,27877.0,5,1,8,6.0,1,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,27877.0,4,0,4_0,4_0 +10502,1.0,1.0,91.0,111,72,71,1.0,8011,0.0,300.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3312.7297335144813,0.0,17147.0,30598.0,5,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,30598.0,4,0,4_0,4_0 +10503,1.0,1.0,37.0,221,64,31,0.0,8013,0.0,100199.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1334.2400111250406,4801.68,0.0,32217.0,1,4,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21478.0,3,0,3_0,3_0 +10504,4.0,6.0,41.0,111,37,31,0.0,8014,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.8,800.6501480834926,2620.2799999999997,0.0,102170.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,36489.28571428572,5,0,5,5_0 +10505,4.0,7.0,51.0,111,65,60,0.0,8017,0.0,600.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,1335.6609636665921,1726.92,0.0,60145.0,1,1,4,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20048.333333333332,3,0,3_0,3_0 +10506,0.0,0.0,34.0,111,52,43,0.0,8018,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.3,990.1713398842587,2080.52,0.0,19798.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15229.23076923077,2,0,2_1,2_0 +10507,8.0,10.0,71.0,211,77,50,0.0,802,0.0,800.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1024.7007103499566,1565.72,0.0,16500.0,5,4,1,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,16500.0,2,0,2_0,2_0 +10508,1.0,2.0,69.0,111,75,31,0.0,8020,0.0,0.0,0.0,701.0,0.0,3.0,0.0,1.0,1.0,2804.95901564308,1856.92,0.0,21312.0,5,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,21312.0,3,0,3_0,3_0 +10509,0.0,0.0,68.0,112,74,30,0.0,8024,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1771.1346837214296,2600.0,0.0,52393.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,34928.666666666664,5,0,5,5_1 +10510,13.0,19.0,38.0,111,85,71,0.0,8025,0.0,0.0,0.0,192.0,0.0,4.0,2.0,3.0,1.6,604.9736043144636,1300.52,0.0,12778.0,7,3,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,7986.25,1,0,1_1,1_0 +10511,7.0,7.0,67.0,111,77,50,0.0,8026,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1974.931744108395,0.0,0.0,20670.0,5,2,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,20670.0,3,0,3_0,3_0 +10512,0.0,0.0,54.0,111,67,70,0.0,8028,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2724.9251806386296,0.0,0.0,12279.0,1,1,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12279.0,1,0,1_0,1_0 +10513,5.0,14.0,25.0,111,63,31,0.0,8029,0.0,0.0,100.0,390.0,2.0,3.0,1.0,3.0,1.8,3564.279119306255,0.0,0.0,33492.0,1,3,8,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,18606.666666666668,2,0,2_0,2_0 +10514,0.0,0.0,80.0,111,75,41,0.0,803,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,4133.185906980633,0.0,0.0,43040.0,5,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28693.333333333332,4,0,4_0,4_0 +10515,8.0,11.0,47.0,111,38,50,0.0,8032,0.0,70.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1964.0983122178138,1655.68,0.0,75182.0,1,1,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,30072.8,4,0,4_0,4_0 +10516,5.0,5.0,68.0,111,78,71,0.0,8033,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,3851.3759876040913,0.0,0.0,45890.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,30593.333333333332,4,0,4_0,4_0 +10517,8.0,9.0,46.0,120,31,10,0.0,8034,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2019.5870191963647,0.0,0.0,46080.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21942.85714285714,3,0,3_0,3_1 +10518,0.0,3.0,66.0,111,77,71,0.0,8036,0.0,0.0,0.0,33.0,0.0,2.0,0.0,1.0,1.0,6467.309350041569,0.0,0.0,13150.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13150.0,1,0,1_1,1_0 +10519,0.0,0.0,41.0,111,38,20,0.0,8037,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2201.134116436121,195.0,0.0,91819.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,43723.33333333333,5,0,5,5_0 +10520,0.0,0.0,64.0,112,78,71,0.0,8038,0.0,0.0,0.0,403.0,0.0,3.0,0.0,1.0,1.0,1473.8606455123518,0.0,0.0,10880.0,5,3,10,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10880.0,1,0,1_0,1_0 +10521,8.0,19.0,59.0,111,33,20,0.0,8039,0.0,150.0,0.0,0.0,1.0,6.0,2.0,4.0,2.5,3329.55278753893,3640.0,0.0,68483.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,27393.2,4,0,4_0,4_0 +10522,3.0,7.0,58.0,111,,33,0.0,804,0.0,400.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2069.9054226048397,2329.6,0.0,43880.0,1,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,29253.333333333332,4,0,4_0,4_0 +10523,6.0,9.0,60.0,111,78,71,0.0,8045,0.0,199998.0,0.0,130.0,0.0,1.0,0.0,1.0,1.0,2933.287837704911,0.0,0.0,8706.0,7,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,8706.0,1,0,1_1,1_0 +10524,0.0,0.0,77.0,111,77,70,0.0,8048,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3179.7696372858472,2132.0,0.0,31959.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21306.0,3,0,3_0,3_0 +10525,1.0,1.0,42.0,111,62,71,2.0,8049,0.0,0.0,0.0,84.0,1.0,3.0,0.0,1.0,1.0,4857.760556632616,0.0,250.0,23148.0,4,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,23148.0,3,0,3_1,3_0 +10526,16.0,18.0,41.0,111,35,30,0.0,805,0.0,0.0,0.0,1105.0,2.0,3.0,3.0,5.0,2.4,3261.3707244872116,0.0,0.0,68175.0,1,3,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,28406.25,4,0,4_0,4_0 +10527,0.0,0.0,39.0,112,62,50,0.0,8051,0.0,0.0,0.0,0.0,3.0,5.0,3.0,5.0,2.6,2081.3262105038334,6437.08,0.0,45958.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17676.153846153844,2,0,2_0,2_1 +10528,15.0,15.0,55.0,400,75,50,0.0,8052,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2788.46424181393,0.0,0.0,34430.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,34430.0,5,0,5,5_0 +10529,4.0,10.0,59.0,111,46,50,0.0,8053,0.0,99999.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1562.3656455611692,0.0,0.0,37364.0,1,1,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24909.333333333332,4,0,4_0,4_0 +10530,4.0,4.0,36.0,400,35,31,0.0,8054,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1779.8330578897192,1716.0,0.0,25432.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25432.0,4,0,4_0,4_1 +10531,3.0,4.0,40.0,112,62,43,0.0,8055,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1998.5825202990802,5356.0,0.0,64095.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,25638.0,4,0,4_0,4_1 +10532,9.0,10.0,89.0,111,78,70,0.0,8058,0.0,100.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,4936.702680634068,0.0,0.0,26130.0,5,4,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,17420.0,2,0,2_0,2_0 +10533,3.0,3.0,33.0,111,21,44,0.0,8059,0.0,0.0,30.0,0.0,1.0,4.0,2.0,3.0,1.6,1134.6336144207964,2600.0,0.0,16480.0,1,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,10300.0,1,0,1_1,1_0 +10534,10.0,10.0,45.0,111,65,50,0.0,8060,0.0,0.0,99999.0,490.0,2.0,3.0,2.0,4.0,2.3,1925.9656332734564,3120.0,0.0,55080.0,1,3,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,23947.826086956524,4,0,4_0,4_0 +10535,7.0,7.0,75.0,111,74,50,0.0,8061,0.0,300.0,100.0,0.0,0.0,6.0,0.0,2.0,1.5,2117.619516297409,0.0,0.0,54543.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,36362.0,5,0,5,5_0 +10536,2.0,2.0,69.0,112,74,20,0.0,8062,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2007.098734957547,4733.5599999999995,0.0,74758.0,5,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,49838.666666666664,5,0,5,5_1 +10537,0.0,0.0,34.0,300,42,30,0.0,8063,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2484.348977185586,1010.88,0.0,48995.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23330.95238095238,3,0,3_0,3_1 +10538,4.0,10.0,53.0,112,38,12,0.0,8064,0.0,0.0,178.0,0.0,1.0,5.0,2.0,3.0,2.0,1733.6708886166718,0.0,0.0,89431.0,1,1,9,1.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,44715.5,5,0,5,5_0 +10539,6.0,6.0,36.0,112,45,50,0.0,8065,0.0,0.0,70.0,0.0,2.0,4.0,3.0,5.0,2.4,2072.0542325856973,0.0,0.0,44986.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,18744.166666666668,3,0,3_0,3_1 +10540,1.0,2.0,46.0,111,33,30,0.0,8066,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,3176.994882284199,0.0,0.0,24087.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,24087.0,4,0,4_0,4_0 +10541,1.0,13.0,33.0,111,22,50,2.0,8067,0.0,80.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2565.740960449117,4680.0,2400.0,48990.0,1,3,7,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,32660.0,5,0,5,5_0 +10542,0.0,0.0,54.0,111,53,41,0.0,8068,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1841.6496266547333,0.0,0.0,59232.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23692.8,3,0,3_0,3_0 +10543,4.0,7.0,49.0,111,38,50,0.0,8069,0.0,0.0,100.0,0.0,1.0,3.0,0.0,1.0,1.0,1002.4674495018023,0.0,0.0,26270.0,1,2,4,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,26270.0,4,0,4_0,4_0 +10544,5.0,5.0,41.0,112,63,44,0.0,807,0.0,0.0,60.0,0.0,2.0,4.0,2.0,4.0,2.1,1991.2652193524034,2184.52,0.0,47450.0,1,2,8,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22595.238095238095,3,0,3_0,3_0 +10545,9.0,9.0,88.0,111,77,50,0.0,8071,0.0,100.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4579.1950758167,0.0,0.0,15050.0,5,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15050.0,2,0,2_0,2_0 +10546,0.0,0.0,78.0,211,75,71,0.0,8072,0.0,0.0,0.0,0.0,1.0,10.0,2.0,5.0,3.0,1095.2881448889943,2688.4,0.0,102068.0,5,3,1,2.0,5,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,34022.666666666664,5,0,5,5_0 +10547,6.0,6.0,48.0,111,65,44,0.0,8074,0.0,99999.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1613.0293207698435,2807.48,0.0,38885.0,1,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25923.333333333332,4,0,4_0,4_0 +10548,12.0,12.0,50.0,111,85,71,0.0,8075,0.0,0.0,0.0,0.0,1.0,4.0,3.0,4.0,2.5,481.13478964245525,0.0,0.0,22990.0,6,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9196.0,1,0,1_1,1_0 +10549,2.0,2.0,53.0,400,52,41,0.0,8077,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,1950.4691181272344,2813.2000000000003,0.0,26827.0,1,2,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17884.666666666668,2,0,2_0,2_1 +10550,0.0,0.0,35.0,111,67,71,0.0,808,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,1967.5961739743984,1040.0,0.0,28730.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11970.833333333334,1,0,1_1,1_0 +10551,10.0,10.0,41.0,111,52,33,0.0,8080,0.0,0.0,0.0,233.0,1.0,3.0,0.0,1.0,1.0,2745.310946409489,0.0,0.0,18391.0,1,3,5,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,18391.0,2,0,2_0,2_0 +10552,5.0,5.0,69.0,111,77,50,0.0,8081,0.0,150.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1987.9684173483906,1820.0,0.0,42437.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,28291.333333333332,4,0,4_0,4_0 +10553,0.0,0.0,42.0,111,67,50,0.0,8082,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,1307.368040845542,2600.0,0.0,26093.0,1,3,5,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,16308.125,2,0,2_1,2_0 +10554,3.0,3.0,52.0,111,62,50,0.0,8084,0.0,99999.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3644.3548653754933,2809.56,0.0,20161.0,1,1,6,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,20161.0,3,0,3_0,3_0 +10555,5.0,8.0,33.0,112,55,31,0.0,8085,0.0,100.0,0.0,39.0,2.0,2.0,1.0,3.0,1.8,2151.149208898951,0.0,0.0,19545.0,4,3,10,4.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,10858.333333333334,1,0,1_1,1_0 +10556,2.0,2.0,65.0,111,74,20,0.0,8088,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2379.4568872578834,2843.36,0.0,45419.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,30279.333333333332,4,0,4_0,4_0 +10557,1.0,1.0,33.0,111,23,43,1.0,8089,0.0,150.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,3108.9359188927615,0.0,21400.0,50396.0,1,1,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,20998.333333333336,3,0,3_0,3_0 +10558,0.0,0.0,47.0,111,64,50,0.0,809,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4495.121151591222,0.0,0.0,17200.0,1,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17200.0,2,0,2_0,2_0 +10559,13.0,13.0,85.0,221,86,71,0.0,8090,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2876.0336415814418,0.0,0.0,11721.0,5,1,1,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,11721.0,1,0,1_0,1_0 +10560,10.0,12.0,25.0,111,65,43,0.0,8091,0.0,0.0,0.0,600.0,1.0,1.0,0.0,1.0,1.0,6605.734186344092,0.0,0.0,16718.0,4,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,16718.0,2,0,2_0,2_0 +10561,7.0,7.0,49.0,112,12,50,0.0,8092,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2254.17374176639,2600.0,0.0,39955.0,1,1,7,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15982.0,2,0,2_0,2_0 +10562,5.0,11.0,44.0,112,52,50,0.0,8093,0.0,99999.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2263.2961403371096,7550.4,0.0,46192.0,1,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18476.8,2,0,2_0,2_0 +10563,12.0,15.0,37.0,120,55,71,0.0,8095,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,3054.133858692995,0.0,0.0,24054.0,4,2,0,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,10022.5,1,0,1_1,1_0 +10564,3.0,3.0,75.0,112,78,70,0.0,8096,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2371.8948951984294,0.0,0.0,12938.0,5,1,8,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,12938.0,1,0,1_0,1_0 +10565,3.0,3.0,69.0,111,77,41,0.0,8097,0.0,99999.0,99999.0,0.0,0.0,6.0,0.0,1.0,1.0,1630.497024605956,0.0,0.0,21031.0,5,1,7,5.0,1,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,21031.0,3,0,3_0,3_0 +10566,3.0,10.0,71.0,111,78,41,0.0,8098,0.0,50.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3021.5364201180428,0.0,0.0,26587.0,5,4,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26587.0,4,0,4_0,4_0 +10567,6.0,6.0,49.0,111,37,12,0.0,8100,0.0,80.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2310.5411321441043,2017.6,0.0,124330.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,54056.52173913044,5,0,5,5_0 +10568,1.0,1.0,39.0,112,46,43,2.0,8101,0.0,80.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2344.620812841232,0.0,17000.0,48603.0,1,1,9,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27001.666666666664,4,0,4_0,4_0 +10569,4.0,9.0,39.0,112,64,50,0.0,8102,0.0,325.0,180.0,0.0,2.0,5.0,2.0,4.0,2.1,2085.5344801249803,0.0,0.0,54395.0,1,2,10,2.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,25902.38095238095,4,0,4_0,4_0 +10570,3.0,3.0,40.0,300,64,50,0.0,8104,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2015.764545226271,2342.6,0.0,39100.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21722.222222222223,3,0,3_0,3_0 +10571,11.0,11.0,27.0,111,43,20,0.0,8106,0.0,0.0,220.0,420.0,2.0,2.0,0.0,2.0,1.5,3301.92826681253,1768.0,0.0,41761.0,4,3,9,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,2.0,0.0,27840.666666666668,4,0,4_0,4_0 +10572,9.0,9.0,59.0,120,48,50,0.0,8107,0.0,70.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2265.511064234525,1560.0,0.0,65502.0,1,1,0,0.0,3,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,43668.0,5,0,5,5_1 +10573,6.0,18.0,26.0,120,63,43,0.0,8108,0.0,100.0,50.0,0.0,2.0,3.0,0.0,2.0,1.5,2415.559166635892,0.0,0.0,32106.0,1,3,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,21404.0,3,0,3_0,3_0 +10574,11.0,13.0,53.0,111,52,50,0.0,811,0.0,180.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2581.9474438738093,0.0,0.0,22600.0,1,4,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,22600.0,3,0,3_0,3_0 +10575,10.0,10.0,28.0,221,67,43,0.0,8110,0.0,0.0,70.0,330.0,1.0,2.0,0.0,1.0,1.0,4487.941092438341,1300.0,0.0,18494.0,1,3,1,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,18494.0,2,0,2_0,2_0 +10576,1.0,1.0,70.0,211,75,30,1.0,8111,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3079.2495650297483,2418.0,37000.0,45733.0,5,1,1,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,45733.0,5,0,5,5_0 +10577,6.0,6.0,57.0,111,52,50,0.0,8112,0.0,0.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,2310.334912039928,1300.0,0.0,30871.0,1,2,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20580.666666666668,3,0,3_0,3_0 +10578,3.0,3.0,69.0,400,77,44,0.0,8114,0.0,120.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1592.5553594748953,3036.28,0.0,39421.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26280.666666666668,4,0,4_0,4_1 +10579,4.0,4.0,52.0,111,46,31,0.0,8115,0.0,0.0,0.0,0.0,3.0,5.0,3.0,5.0,3.0,2075.201098009805,6760.0,0.0,61995.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20665.0,3,0,3_0,3_0 +10580,3.0,3.0,28.0,111,34,30,0.0,8116,0.0,0.0,0.0,560.0,1.0,2.0,0.0,1.0,1.0,6104.00787996074,0.0,0.0,30243.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,30243.0,4,0,4_0,4_0 +10581,10.0,10.0,44.0,111,48,43,0.0,8118,0.0,0.0,0.0,0.0,2.0,8.0,1.0,3.0,2.0,2007.253059716617,4940.0,0.0,69102.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,34551.0,5,0,5,5_0 +10582,5.0,13.0,65.0,111,75,42,0.0,8119,0.0,0.0,0.0,600.0,0.0,2.0,0.0,1.0,1.0,2962.06803877379,0.0,0.0,20375.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20375.0,3,0,3_0,3_0 +10583,0.0,0.0,49.0,120,67,71,0.0,8122,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2741.0780186207226,2054.52,0.0,52051.0,1,3,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28917.222222222223,4,0,4_0,4_0 +10584,1.0,6.0,36.0,111,55,20,2.0,8123,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,5855.493872266118,0.0,5000.0,31951.0,1,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,21300.666666666668,3,0,3_0,3_0 +10585,6.0,17.0,88.0,112,75,44,0.0,8124,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2585.659909448168,0.0,0.0,25973.0,5,1,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17315.333333333332,2,0,2_0,2_1 +10586,13.0,13.0,82.0,211,75,41,0.0,8126,0.0,0.0,0.0,0.0,0.0,9.0,1.0,2.0,1.5,2823.1545535943346,2600.0,0.0,49200.0,5,1,1,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32800.0,5,0,5,5_0 +10587,0.0,0.0,41.0,111,55,43,0.0,8127,0.0,0.0,0.0,50.0,1.0,4.0,3.0,4.0,2.1,408.9929913738376,780.0,0.0,32648.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15546.666666666666,2,0,2_1,2_0 +10588,0.0,0.0,70.0,111,77,41,0.0,8128,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3388.4192497487898,2318.16,0.0,19660.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19660.0,3,0,3_0,3_0 +10589,0.0,0.0,35.0,111,56,30,0.0,8129,0.0,0.0,0.0,522.0,1.0,2.0,0.0,1.0,1.0,4325.766508390314,2340.52,0.0,40286.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40286.0,5,0,5,5_0 +10590,0.0,0.0,80.0,111,77,50,0.0,813,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2251.069850601822,1045.2,0.0,16309.0,5,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10872.666666666666,1,0,1_0,1_0 +10591,13.0,13.0,41.0,111,62,50,0.0,8130,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,2108.615441575728,0.0,0.0,75328.0,1,2,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,35870.47619047619,5,0,5,5_0 +10592,0.0,0.0,74.0,120,72,44,1.0,8131,0.0,50.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2227.6844098401343,0.0,35000.0,34401.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22934.0,3,0,3_0,3_1 +10593,2.0,2.0,29.0,112,63,44,0.0,8132,0.0,0.0,25.0,0.0,2.0,3.0,0.0,2.0,1.5,3179.542467908313,4041.44,0.0,33759.0,1,2,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,22506.0,3,0,3_0,3_1 +10594,16.0,16.0,71.0,400,78,41,0.0,8135,0.0,240.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1848.9880934040207,0.0,0.0,42160.0,5,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,42160.0,5,0,5,5_1 +10595,2.0,2.0,76.0,120,75,41,0.0,8136,0.0,199998.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1734.2239946907682,0.0,0.0,42765.0,5,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,28510.0,4,0,4_0,4_1 +10596,1.0,1.0,58.0,111,64,50,1.0,8139,0.0,300.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2120.515682680936,0.0,19200.0,63396.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,31698.0,4,0,4_0,4_0 +10597,1.0,15.0,53.0,400,37,42,2.0,814,0.0,0.0,99999.0,0.0,2.0,6.0,0.0,2.0,1.5,1327.9877300723888,0.0,1000.0,102530.0,1,1,0,1.0,3,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,68353.33333333333,5,0,5,5_0 +10598,5.0,8.0,39.0,112,21,71,0.0,8140,0.0,0.0,0.0,0.0,2.0,4.0,4.0,6.0,2.7,3413.271474670919,0.0,0.0,46997.0,1,3,9,1.0,4,2.0,1.0,0.0,0,1,0,0,0,1,1.0,1.0,17406.296296296296,2,0,2_1,2_0 +10599,14.0,15.0,55.0,111,52,50,0.0,8142,0.0,0.0,0.0,380.0,3.0,3.0,3.0,4.0,2.5,3519.06781411751,0.0,0.0,40164.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16065.6,2,0,2_0,2_0 +10600,9.0,9.0,61.0,111,78,71,0.0,8144,0.0,0.0,99999.0,0.0,0.0,4.0,5.0,7.0,4.0,1684.3093454181226,3952.0,0.0,27410.0,5,2,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,6852.5,1,0,1_1,1_0 +10601,0.0,0.0,57.0,111,65,71,0.0,8145,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3603.163150458666,2860.0,0.0,18130.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,18130.0,2,0,2_0,2_0 +10602,2.0,2.0,75.0,111,55,70,0.0,8146,0.0,0.0,150.0,0.0,1.0,5.0,0.0,1.0,1.0,2657.3858183658326,2262.0,0.0,21881.0,5,1,7,5.0,1,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,21881.0,3,0,3_0,3_0 +10603,12.0,12.0,26.0,111,43,33,0.0,8147,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4637.617623459668,0.0,0.0,20368.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,20368.0,3,0,3_0,3_0 +10604,19.0,19.0,26.0,111,68,50,0.0,8149,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,4020.359031401661,2340.0,0.0,12720.0,4,3,6,5.0,4,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,7066.666666666666,1,0,1_1,1_0 +10605,11.0,11.0,61.0,111,75,50,0.0,8150,0.0,100.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1715.4588130898835,2046.2,0.0,75091.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,50060.666666666664,5,0,5,5_0 +10606,4.0,4.0,36.0,111,63,43,0.0,8152,0.0,0.0,0.0,500.0,1.0,3.0,1.0,4.0,2.3,1323.4065678824024,1560.0,0.0,45233.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19666.521739130436,3,0,3_0,3_0 +10607,7.0,7.0,38.0,111,31,10,0.0,8153,0.0,100.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,3625.9867267693717,4056.0,0.0,204723.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,113735.0,5,0,5,5_0 +10608,3.0,7.0,48.0,112,34,20,0.0,8154,0.0,0.0,0.0,0.0,3.0,6.0,4.0,6.0,3.3,1352.7181060823973,2601.56,0.0,89687.0,1,1,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27177.878787878788,4,0,4_0,4_0 +10609,0.0,0.0,84.0,112,74,12,0.0,8156,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2252.137536667123,0.0,0.0,53968.0,5,1,7,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,35978.666666666664,5,0,5,5_0 +10610,4.0,4.0,52.0,300,22,50,0.0,8157,0.0,0.0,480.0,0.0,2.0,5.0,0.0,2.0,1.5,1929.3739337985007,1560.0,0.0,36084.0,1,2,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24056.0,4,0,4_0,4_1 +10611,3.0,3.0,51.0,111,55,71,0.0,8158,0.0,120.0,0.0,0.0,2.0,3.0,2.0,3.0,2.0,1135.6534667769056,0.0,0.0,15088.0,4,3,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,1,0.0,1.0,7544.0,1,0,1_1,1_0 +10612,11.0,16.0,40.0,111,52,44,0.0,8159,0.0,0.0,0.0,228.0,2.0,3.0,2.0,3.0,1.8,783.6287220675464,2876.12,0.0,40274.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22374.444444444445,3,0,3_0,3_0 +10613,2.0,2.0,58.0,211,56,44,0.0,816,0.0,0.0,90.0,0.0,1.0,4.0,0.0,1.0,1.0,1223.4187165156707,4160.0,0.0,17003.0,1,2,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17003.0,2,0,2_0,2_0 +10614,0.0,0.0,19.0,112,67,60,0.0,8160,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3629.7685127857003,0.0,0.0,10933.0,4,3,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,10933.0,1,0,1_1,1_1 +10615,12.0,12.0,59.0,111,67,71,0.0,8161,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1500.329410397912,0.0,0.0,51013.0,1,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,34008.666666666664,5,0,5,5_0 +10616,18.0,18.0,36.0,112,22,31,0.0,8162,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3846.2941813199404,1820.0,0.0,25660.0,4,2,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,14255.555555555555,2,0,2_1,2_0 +10617,4.0,6.0,52.0,111,85,30,0.0,8163,0.0,710.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2881.3851579235907,0.0,0.0,6462.0,7,1,7,5.0,1,4.0,0.0,1.0,0,0,1,0,0,0,0.0,4.0,6462.0,1,0,1_0,1_0 +10618,3.0,8.0,33.0,112,38,31,0.0,8164,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1654.336738349112,2912.0,0.0,80016.0,1,2,10,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,53344.0,5,0,5,5_0 +10619,2.0,4.0,51.0,222,38,42,0.0,8165,0.0,99999.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,3866.5250010238315,1756.0400000000002,0.0,49414.0,1,1,1,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,19765.6,3,0,3_0,3_1 +10620,7.0,13.0,89.0,111,75,70,0.0,8167,0.0,370.0,270.0,0.0,0.0,5.0,0.0,1.0,1.0,4008.1818126416497,0.0,0.0,22697.0,5,1,7,6.0,1,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,22697.0,3,0,3_0,3_0 +10621,5.0,5.0,65.0,112,75,50,0.0,8169,0.0,200.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2770.2978449145025,6598.28,0.0,53553.0,5,1,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,35702.0,5,0,5,5_0 +10622,0.0,20.0,46.0,221,55,50,2.0,817,0.0,0.0,200.0,0.0,2.0,6.0,1.0,3.0,1.8,1760.2402189674892,4098.64,300.0,36049.0,1,1,1,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20027.222222222223,3,0,3_0,3_0 +10623,6.0,10.0,29.0,111,68,50,0.0,8170,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2333.133798261639,0.0,0.0,40250.0,1,3,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,19166.666666666664,3,0,3_0,3_0 +10624,5.0,5.0,68.0,112,74,31,0.0,8171,0.0,600.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1894.7565627904453,0.0,0.0,41506.0,5,2,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,27670.666666666668,4,0,4_0,4_1 +10625,0.0,0.0,36.0,112,43,30,0.0,8172,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2845.4261311352875,0.0,0.0,49237.0,1,2,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23446.190476190473,3,0,3_0,3_0 +10626,5.0,12.0,57.0,111,52,60,0.0,8173,0.0,0.0,200.0,448.0,1.0,3.0,0.0,1.0,1.0,1626.3491831419276,0.0,0.0,17450.0,1,3,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,17450.0,2,0,2_0,2_0 +10627,6.0,6.0,28.0,111,56,43,0.0,8174,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3676.0139350496256,0.0,0.0,14927.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,14927.0,2,0,2_1,2_0 +10628,1.0,1.0,50.0,400,12,50,0.0,8176,0.0,300.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,1915.2076873325489,0.0,0.0,13396.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,8930.666666666666,1,0,1_1,1_1 +10629,2.0,3.0,67.0,111,74,30,0.0,8177,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1896.710923649295,0.0,0.0,74340.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,49560.0,5,0,5,5_0 +10630,4.0,19.0,32.0,111,68,60,0.0,8178,0.0,100.0,0.0,139.0,1.0,4.0,1.0,2.0,1.5,3874.2081424064463,0.0,0.0,36724.0,1,3,10,8.0,2,1.0,1.0,1.0,0,0,0,0,1,1,0.0,1.0,24482.666666666668,4,0,4_1,4_0 +10631,8.0,8.0,44.0,112,45,31,0.0,8179,0.0,0.0,0.0,638.0,1.0,3.0,1.0,2.0,1.3,706.1988957756116,0.0,0.0,27049.0,1,3,9,2.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,20806.923076923074,3,0,3_0,3_0 +10632,0.0,0.0,68.0,111,75,60,0.0,818,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1619.7676458315843,0.0,0.0,33086.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22057.333333333332,3,0,3_0,3_0 +10633,0.0,0.0,38.0,111,68,50,0.0,8180,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,761.4739805659194,0.0,0.0,15546.0,4,3,7,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9716.25,1,0,1_1,1_0 +10634,11.0,11.0,39.0,111,21,71,0.0,8181,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.3,6595.976690422469,0.0,0.0,46260.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20113.04347826087,3,0,3_0,3_0 +10635,6.0,6.0,93.0,120,74,30,0.0,8183,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2195.0508120991685,0.0,0.0,39617.0,5,1,0,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,39617.0,5,0,5,5_0 +10636,2.0,3.0,83.0,300,74,60,0.0,8184,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2468.2612275898014,3671.72,0.0,52697.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,35131.333333333336,5,0,5,5_1 +10637,11.0,11.0,33.0,111,38,12,0.0,8185,0.0,0.0,0.0,941.0,2.0,2.0,1.0,3.0,1.8,3426.075164990028,0.0,0.0,65847.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,36581.666666666664,5,0,5,5_0 +10638,0.0,13.0,66.0,111,37,20,2.0,8187,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1920.1484136930812,0.0,1000.0,91316.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,60877.333333333336,5,0,5,5_0 +10639,8.0,8.0,63.0,111,75,50,0.0,8188,0.0,0.0,100.0,0.0,0.0,3.0,0.0,1.0,1.0,2887.117049523886,0.0,0.0,18359.0,5,3,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,18359.0,2,0,2_0,2_0 +10640,8.0,8.0,67.0,111,75,50,0.0,8189,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1426.7826210420892,0.0,0.0,44099.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,29399.333333333332,4,0,4_0,4_0 +10641,7.0,7.0,46.0,111,46,43,0.0,819,0.0,298.0,0.0,978.0,1.0,4.0,1.0,2.0,1.5,636.7940433197115,2086.76,0.0,30225.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,20150.0,3,0,3_0,3_0 +10642,4.0,14.0,56.0,400,69,71,0.0,8191,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,219.0135557776825,0.0,0.0,10920.0,4,1,0,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,6066.666666666667,1,0,1_0,1_1 +10643,4.0,10.0,36.0,111,85,71,0.0,8192,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,1.6,1385.4099600203187,0.0,0.0,12407.0,6,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,7754.375,1,0,1_1,1_0 +10644,0.0,0.0,55.0,221,42,30,0.0,8193,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1060.5422546069412,7019.48,0.0,42331.0,1,1,1,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28220.666666666668,4,0,4_0,4_0 +10645,6.0,11.0,47.0,400,63,50,0.0,8194,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2391.5096582635974,2080.52,0.0,36607.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15916.08695652174,2,0,2_0,2_1 +10646,0.0,0.0,82.0,112,78,50,0.0,8195,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2388.4991867521894,4386.72,0.0,25654.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,17102.666666666668,2,0,2_0,2_1 +10647,8.0,13.0,62.0,112,77,70,0.0,8196,0.0,550.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2245.4307057743217,0.0,0.0,21334.0,5,1,9,3.0,1,4.0,0.0,0.0,0,1,0,0,0,0,0.0,4.0,21334.0,3,0,3_0,3_0 +10648,0.0,0.0,73.0,112,74,31,0.0,8197,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1646.6433234613532,527.28,0.0,50051.0,5,1,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,33367.333333333336,5,0,5,5_0 +10649,0.0,0.0,54.0,112,67,44,0.0,82,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1399.48355556834,0.0,0.0,40248.0,1,1,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,40248.0,5,0,5,5_1 +10650,4.0,12.0,22.0,111,84,31,0.0,820,0.0,150.0,40.0,240.0,0.0,1.0,0.0,1.0,1.0,2680.744032419432,2136.16,0.0,3378.0,3,3,6,5.0,1,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,3378.0,1,0,1_1,1_0 +10651,0.0,0.0,47.0,111,37,20,2.0,8200,0.0,192.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,2705.335526832094,0.0,1400.0,69326.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,38514.444444444445,5,0,5,5_0 +10652,0.0,10.0,69.0,112,74,31,2.0,8202,0.0,0.0,110.0,0.0,0.0,6.0,0.0,2.0,1.5,1146.9973195115554,0.0,2500.0,65457.0,5,1,9,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,43638.0,5,0,5,5_0 +10653,2.0,7.0,68.0,112,72,50,0.0,8203,0.0,280.0,0.0,208.0,0.0,2.0,0.0,1.0,1.0,2417.064819309842,0.0,0.0,13741.0,5,3,9,2.0,1,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,13741.0,1,0,1_1,1_0 +10654,8.0,24.0,59.0,300,43,33,0.0,8204,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2617.1161913177575,5813.08,0.0,41618.0,1,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,27745.333333333332,4,0,4_0,4_1 +10655,4.0,7.0,20.0,111,84,41,0.0,8205,0.0,200.0,60.0,177.0,0.0,1.0,0.0,1.0,1.0,2690.3229945561898,0.0,0.0,10918.0,3,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,10918.0,1,0,1_1,1_0 +10656,0.0,11.0,64.0,300,78,50,0.0,8206,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1657.5724996107997,2174.64,0.0,39416.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26277.333333333332,4,0,4_0,4_1 +10657,2.0,7.0,61.0,111,34,30,0.0,8207,0.0,0.0,0.0,840.0,1.0,5.0,0.0,2.0,1.5,2237.3360737129337,2652.0,0.0,57444.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,38296.0,5,0,5,5_0 +10658,12.0,12.0,40.0,112,43,33,0.0,8208,0.0,99999.0,99999.0,0.0,1.0,7.0,2.0,3.0,1.8,2694.8177155622757,0.0,0.0,35692.0,1,2,5,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19828.888888888887,3,0,3_0,3_1 +10659,0.0,0.0,56.0,111,47,43,0.0,821,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4800.791448479832,0.0,0.0,29757.0,1,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29757.0,4,0,4_0,4_0 +10660,6.0,11.0,21.0,120,67,43,0.0,8210,0.0,390.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,2047.6772898301422,0.0,0.0,34189.0,1,3,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,22792.666666666668,3,0,3_0,3_0 +10661,2.0,5.0,37.0,111,54,31,0.0,8211,0.0,140.0,0.0,195.0,1.0,3.0,1.0,2.0,1.3,3424.1753015639993,0.0,0.0,29243.0,1,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22494.615384615383,3,0,3_0,3_0 +10662,0.0,0.0,67.0,112,78,50,1.0,8212,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2328.305991079678,2860.0,10800.0,21579.0,5,1,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21579.0,3,0,3_0,3_1 +10663,11.0,11.0,62.0,111,86,70,0.0,8214,0.0,50.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1373.0844477995686,0.0,0.0,18107.0,5,1,6,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,18107.0,2,0,2_0,2_0 +10664,0.0,0.0,57.0,111,52,50,0.0,8215,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3224.8347038116335,0.0,0.0,34940.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23293.333333333332,3,0,3_0,3_0 +10665,0.0,0.0,57.0,111,77,50,0.0,8216,0.0,0.0,0.0,85.0,0.0,4.0,0.0,1.0,1.0,1200.7927887776327,0.0,0.0,11902.0,7,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11902.0,1,0,1_1,1_0 +10666,7.0,7.0,47.0,111,55,30,0.0,8217,0.0,0.0,120.0,520.0,1.0,2.0,0.0,1.0,1.0,2273.0249236829013,0.0,0.0,14807.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,14807.0,2,0,2_0,2_0 +10667,0.0,0.0,52.0,111,43,33,0.0,8218,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2041.9996667207577,2602.6,0.0,82245.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,45691.666666666664,5,0,5,5_0 +10668,0.0,0.0,79.0,400,77,50,0.0,8219,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3544.3135356867638,0.0,0.0,35035.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35035.0,5,0,5,5_1 +10669,0.0,0.0,68.0,111,77,50,0.0,822,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2738.3421569226775,2080.0,0.0,33647.0,5,1,8,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22431.333333333332,3,0,3_0,3_0 +10670,5.0,10.0,58.0,112,56,50,0.0,8220,0.0,500.0,150.0,0.0,1.0,5.0,1.0,3.0,2.0,2006.3191641485498,0.0,0.0,27883.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13941.5,2,0,2_0,2_1 +10671,6.0,6.0,74.0,211,86,71,0.0,8221,0.0,0.0,0.0,852.0,1.0,5.0,0.0,3.0,2.0,6452.851747283547,0.0,0.0,30970.0,7,3,1,2.0,5,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,15485.0,2,0,2_0,2_0 +10672,4.0,5.0,32.0,111,53,50,0.0,8222,0.0,99999.0,180.0,0.0,1.0,3.0,0.0,1.0,1.0,2872.179772674741,0.0,0.0,16277.0,1,1,8,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,16277.0,2,0,2_0,2_0 +10673,1.0,10.0,74.0,112,78,70,0.0,8223,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2745.1484052408855,0.0,0.0,11780.0,5,3,4,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,11780.0,1,0,1_1,1_1 +10674,8.0,8.0,50.0,120,62,71,0.0,8224,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,3190.7257200485647,0.0,0.0,33288.0,1,1,0,0.0,2,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,22192.0,3,0,3_0,3_1 +10675,9.0,11.0,44.0,211,53,50,0.0,8225,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2233.190417878931,4680.0,0.0,79760.0,1,2,2,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,39880.0,5,0,5,5_0 +10676,0.0,0.0,59.0,112,68,70,0.0,8226,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2406.4879402439537,0.0,0.0,27840.0,1,1,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13920.0,2,0,2_0,2_0 +10677,1.0,20.0,46.0,111,22,31,0.0,8227,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2580.1739724058525,1300.52,0.0,18201.0,1,2,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,12134.0,1,0,1_0,1_0 +10678,0.0,11.0,52.0,112,55,31,0.0,8228,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1723.5046776702382,4680.0,0.0,30125.0,1,2,6,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12050.0,1,0,1_0,1_1 +10679,0.0,0.0,38.0,111,48,43,0.0,8229,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1867.1751905886542,3172.52,0.0,55325.0,1,2,4,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24054.34782608696,4,0,4_0,4_0 +10680,11.0,21.0,27.0,112,37,44,0.0,823,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3833.679794208208,0.0,0.0,42123.0,1,2,7,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,28082.0,4,0,4_0,4_1 +10681,5.0,10.0,48.0,120,21,50,0.0,8230,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2455.831122112749,0.0,0.0,59740.0,1,1,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23896.0,4,0,4_0,4_1 +10682,2.0,5.0,90.0,111,86,71,0.0,8231,0.0,0.0,70.0,9.0,0.0,3.0,0.0,1.0,1.0,2009.246801016601,0.0,0.0,14072.0,5,3,4,4.0,1,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,14072.0,2,0,2_1,2_0 +10683,1.0,4.0,48.0,112,37,31,2.0,8232,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1843.1687907540797,0.0,12000.0,63981.0,1,1,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,27817.826086956524,4,0,4_0,4_1 +10684,9.0,13.0,48.0,112,62,71,0.0,8233,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2710.586984262215,0.0,0.0,36458.0,1,2,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,15851.304347826088,2,0,2_0,2_0 +10685,11.0,15.0,50.0,112,62,71,0.0,8234,0.0,0.0,300.0,0.0,3.0,7.0,1.0,4.0,2.3,3222.075231725327,2208.44,0.0,37680.0,1,1,9,0.0,5,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,16382.608695652176,2,0,2_0,2_1 +10686,3.0,7.0,56.0,111,56,50,0.0,8235,0.0,500.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1221.5377840283945,2287.48,0.0,23685.0,1,1,6,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,11842.5,1,0,1_0,1_0 +10687,0.0,0.0,40.0,111,31,30,0.0,8238,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,3165.964401288601,0.0,0.0,201023.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,95725.23809523809,5,0,5,5_0 +10688,0.0,9.0,78.0,111,75,50,0.0,8239,0.0,550.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2836.7043543087702,0.0,0.0,46930.0,5,1,7,5.0,3,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,31286.666666666668,4,0,4_0,4_0 +10689,0.0,3.0,71.0,112,74,44,0.0,824,0.0,140.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1819.3545039414262,2704.0,0.0,56158.0,5,1,7,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,37438.666666666664,5,0,5,5_1 +10690,16.0,16.0,46.0,400,43,33,0.0,8240,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,1539.3562263450483,5789.68,0.0,50290.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16763.333333333332,2,0,2_0,2_1 +10691,3.0,24.0,51.0,120,42,0,0.0,8241,0.0,0.0,120.0,0.0,1.0,5.0,0.0,1.0,1.0,1607.8263550160066,0.0,0.0,36490.0,1,2,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,36490.0,5,0,5,5_0 +10692,5.0,5.0,75.0,300,72,44,0.0,8242,0.0,350.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1537.817774821923,0.0,0.0,15050.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10033.333333333334,1,0,1_0,1_1 +10693,1.0,12.0,60.0,112,77,60,2.0,8243,0.0,0.0,99999.0,0.0,0.0,6.0,0.0,1.0,1.0,1821.9525352223297,0.0,1000.0,9870.0,6,1,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,9870.0,1,0,1_0,1_1 +10694,0.0,0.0,71.0,112,71,71,0.0,8244,0.0,1500.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1523.1610165141483,0.0,0.0,23758.0,5,1,9,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,15838.666666666666,2,0,2_0,2_1 +10695,9.0,9.0,52.0,112,13,50,0.0,8246,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,1517.3265585090226,0.0,0.0,50220.0,1,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,33480.0,5,0,5,5_1 +10696,0.0,0.0,67.0,300,75,70,0.0,8247,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1665.29773598748,0.0,0.0,37765.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25176.666666666668,4,0,4_0,4_0 +10697,0.0,0.0,47.0,111,21,31,0.0,8248,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2665.542267169471,0.0,0.0,69030.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,34515.0,5,0,5,5_0 +10698,5.0,7.0,53.0,111,34,10,0.0,8249,0.0,80.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1774.5551275109935,0.0,0.0,109835.0,1,2,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,109835.0,5,0,5,5_0 +10699,1.0,2.0,53.0,111,56,50,2.0,825,0.0,0.0,0.0,26.0,1.0,4.0,2.0,3.0,2.0,928.5069272591699,0.0,20150.0,17768.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,8884.0,1,0,1_1,1_0 +10700,0.0,1.0,42.0,112,46,31,0.0,8250,0.0,99999.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,644.4701142781608,0.0,0.0,26450.0,1,2,8,0.0,2,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,14694.444444444443,2,0,2_0,2_1 +10701,0.0,0.0,64.0,112,74,30,0.0,8251,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2398.2262160803853,2570.88,0.0,56248.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37498.666666666664,5,0,5,5_1 +10702,2.0,9.0,52.0,120,43,33,0.0,8252,0.0,0.0,99999.0,0.0,2.0,8.0,0.0,2.0,1.5,1841.95375672131,4422.6,0.0,67374.0,1,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,44916.0,5,0,5,5_1 +10703,4.0,4.0,38.0,111,46,30,0.0,8253,0.0,0.0,0.0,270.0,1.0,3.0,1.0,2.0,1.3,1672.4242093583744,0.0,0.0,26360.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,20276.923076923078,3,0,3_1,3_0 +10704,2.0,20.0,50.0,111,63,50,0.0,8254,0.0,100.0,0.0,328.0,1.0,3.0,0.0,1.0,1.0,2056.220466437773,2080.0,0.0,21224.0,1,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21224.0,3,0,3_0,3_0 +10705,0.0,0.0,67.0,111,75,33,0.0,8257,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1910.5004805634846,2593.24,0.0,25722.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,25722.0,4,0,4_0,4_0 +10706,4.0,4.0,33.0,111,37,12,0.0,8258,0.0,0.0,0.0,0.0,2.0,8.0,2.0,4.0,2.1,2746.5444745784807,0.0,0.0,152874.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,72797.14285714286,5,0,5,5_0 +10707,2.0,2.0,59.0,300,43,50,0.0,8259,0.0,0.0,0.0,147.0,1.0,3.0,0.0,1.0,1.0,1880.9204670215727,0.0,0.0,14218.0,1,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,14218.0,2,0,2_1,2_1 +10708,9.0,9.0,76.0,300,71,70,0.0,826,0.0,99999.0,99999.0,0.0,0.0,4.0,0.0,2.0,1.5,1819.978741155067,0.0,0.0,20820.0,5,1,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13880.0,1,0,1_0,1_1 +10709,4.0,7.0,46.0,111,54,31,0.0,8260,0.0,300.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,3491.2288694432173,0.0,0.0,61410.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,26700.000000000004,4,0,4_0,4_0 +10710,1.0,22.0,46.0,111,68,71,2.0,8261,0.0,50.0,0.0,0.0,1.0,1.0,1.0,2.0,1.3,880.8372450925772,0.0,500.0,14000.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,10769.23076923077,1,0,1_1,1_0 +10711,0.0,0.0,76.0,112,74,60,0.0,8263,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1986.575069495158,2436.2000000000003,0.0,41012.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27341.333333333332,4,0,4_0,4_1 +10712,9.0,9.0,72.0,120,78,71,0.0,8264,0.0,0.0,360.0,0.0,0.0,4.0,0.0,2.0,1.5,2130.7229203856177,0.0,0.0,20813.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,13875.333333333334,1,0,1_0,1_1 +10713,7.0,9.0,41.0,111,31,10,0.0,8265,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.3,1745.253913073415,2844.4,0.0,361070.0,1,2,6,4.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,277746.1538461538,5,0,5,5_0 +10714,1.0,5.0,39.0,111,33,31,0.0,8267,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2226.3942587491665,3479.3199999999997,0.0,67649.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,32213.809523809523,5,0,5,5_0 +10715,0.0,5.0,56.0,111,43,33,0.0,8268,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1224.8188645556886,0.0,0.0,38824.0,1,1,4,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,25882.666666666668,4,0,4_0,4_0 +10716,1.0,3.0,46.0,111,56,50,2.0,8269,400.0,150.0,0.0,12.0,2.0,4.0,2.0,4.0,2.3,1389.2546901423416,1040.0,8900.0,18976.0,4,3,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,8250.434782608696,1,0,1_1,1_0 +10717,0.0,0.0,70.0,111,78,71,0.0,827,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4183.423642015816,1132.56,0.0,11560.0,5,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11560.0,1,0,1_1,1_0 +10718,12.0,12.0,46.0,112,64,50,0.0,8271,0.0,900.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2937.4641705022627,0.0,0.0,28503.0,1,2,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19002.0,3,0,3_0,3_1 +10719,4.0,4.0,42.0,112,69,71,0.0,8272,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,2824.28883985304,4076.8,0.0,16682.0,1,2,9,1.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,8341.0,1,0,1_1,1_0 +10720,3.0,8.0,80.0,111,78,71,0.0,8274,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,3058.074237387386,0.0,0.0,27637.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18424.666666666668,2,0,2_0,2_0 +10721,0.0,0.0,80.0,112,75,33,0.0,8275,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1679.9234693005874,2082.6,0.0,20058.0,5,4,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20058.0,3,0,3_0,3_1 +10722,0.0,0.0,75.0,111,78,71,0.0,8277,0.0,0.0,0.0,727.0,0.0,4.0,0.0,2.0,1.5,2099.3817627623725,0.0,0.0,59262.0,5,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,39508.0,5,0,5,5_0 +10723,23.0,24.0,80.0,300,72,70,0.0,8279,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1936.743459241067,0.0,0.0,12427.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,8284.666666666666,1,0,1_0,1_0 +10724,4.0,4.0,36.0,111,62,41,0.0,828,0.0,150.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2283.026028995191,2212.6,0.0,15100.0,4,1,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,15100.0,2,0,2_0,2_0 +10725,7.0,11.0,60.0,111,43,30,0.0,8280,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2368.9101139426416,4286.88,0.0,49133.0,1,1,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,32755.333333333332,5,0,5,5_0 +10726,1.0,11.0,61.0,112,74,50,2.0,8281,0.0,450.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2670.6810998622527,0.0,800.0,57537.0,5,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,38358.0,5,0,5,5_0 +10727,13.0,13.0,39.0,111,21,31,0.0,8282,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3025.4210393222747,0.0,0.0,25794.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14330.0,2,0,2_0,2_0 +10728,0.0,21.0,41.0,111,65,31,0.0,8283,0.0,0.0,0.0,181.0,1.0,4.0,2.0,3.0,1.8,809.2412498963162,1099.28,0.0,25127.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13959.444444444443,2,0,2_1,2_0 +10729,1.0,1.0,57.0,111,45,30,0.0,8286,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2805.060656857689,2450.24,0.0,63600.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,42400.0,5,0,5,5_0 +10730,0.0,0.0,40.0,111,34,10,0.0,8287,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,4209.002917787482,3387.28,0.0,46056.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,21931.42857142857,3,0,3_0,3_0 +10731,6.0,9.0,66.0,112,78,71,0.0,8288,0.0,623.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1161.1836038246756,1835.6,0.0,40535.0,5,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,27023.333333333332,4,0,4_0,4_0 +10732,1.0,8.0,69.0,112,77,44,2.0,8289,0.0,150.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,907.8870209274604,0.0,9000.0,11550.0,5,1,10,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,11550.0,1,0,1_0,1_0 +10733,8.0,8.0,82.0,300,77,50,0.0,829,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,3131.9736565153344,0.0,0.0,27235.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18156.666666666668,2,0,2_0,2_1 +10734,3.0,13.0,50.0,400,69,71,0.0,8290,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2278.2717423376516,2236.0,0.0,8178.0,4,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,8178.0,1,0,1_1,1_1 +10735,0.0,0.0,26.0,111,52,50,0.0,8293,0.0,0.0,0.0,517.0,2.0,2.0,2.0,4.0,2.1,5524.20330143272,6327.88,0.0,26344.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,12544.761904761905,1,0,1_1,1_0 +10736,4.0,38.0,57.0,120,56,60,0.0,8297,0.0,0.0,0.0,284.0,2.0,3.0,2.0,3.0,2.0,2013.9157547296675,0.0,0.0,34782.0,4,3,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,17391.0,2,0,2_1,2_1 +10737,6.0,6.0,66.0,111,74,20,0.0,8298,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1559.0394477698871,0.0,0.0,52470.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,34980.0,5,0,5,5_0 +10738,18.0,18.0,44.0,112,34,10,0.0,8299,0.0,400.0,40.0,0.0,2.0,7.0,3.0,5.0,2.8,1666.7425676184685,0.0,0.0,73118.0,1,2,8,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,26113.57142857143,4,0,4_0,4_0 +10739,0.0,4.0,35.0,400,63,60,0.0,830,0.0,400.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,1781.9741944619632,1560.0,0.0,40835.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,17014.583333333336,2,0,2_1,2_1 +10740,0.0,0.0,37.0,111,47,50,0.0,8300,0.0,0.0,0.0,550.0,2.0,3.0,1.0,3.0,1.8,5016.705303332661,0.0,0.0,49086.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,27270.0,4,0,4_1,4_0 +10741,4.0,4.0,84.0,111,77,70,0.0,8301,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2942.0663087687753,0.0,0.0,15796.0,5,1,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15796.0,2,0,2_0,2_0 +10742,0.0,0.0,56.0,300,42,31,0.0,8302,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1880.040083413471,5287.360000000001,0.0,56877.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37918.0,5,0,5,5_1 +10743,20.0,23.0,35.0,120,37,43,0.0,8304,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3090.6162447659367,0.0,0.0,78527.0,1,2,0,1.0,3,2.0,1.0,0.0,0,1,0,0,0,0,2.0,0.0,52351.333333333336,5,0,5,5_0 +10744,3.0,3.0,53.0,221,62,50,0.0,8306,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2307.3958605212574,1872.0,0.0,18630.0,1,2,1,3.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,18630.0,2,0,2_0,2_0 +10745,0.0,19.0,70.0,400,74,50,0.0,8307,0.0,0.0,50.0,0.0,0.0,5.0,0.0,2.0,1.5,1836.0033095841009,0.0,0.0,42277.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,28184.666666666668,4,0,4_0,4_1 +10746,0.0,0.0,57.0,111,52,71,0.0,8308,0.0,0.0,0.0,273.0,1.0,1.0,0.0,1.0,1.0,4939.4821703672,0.0,0.0,22639.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22639.0,3,0,3_0,3_0 +10747,5.0,5.0,61.0,111,74,31,0.0,8310,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2800.0382726330326,3328.0,0.0,39868.0,5,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,39868.0,5,0,5,5_0 +10748,0.0,0.0,63.0,112,21,70,0.0,8311,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1757.364690134339,0.0,0.0,30690.0,1,1,10,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20460.0,3,0,3_0,3_1 +10749,2.0,2.0,52.0,111,56,71,0.0,8312,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,5259.3537300786165,0.0,0.0,43570.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,17428.0,2,0,2_0,2_0 +10750,2.0,2.0,84.0,112,78,71,0.0,8313,0.0,0.0,202.0,0.0,0.0,4.0,0.0,2.0,1.5,2402.8247556068873,0.0,0.0,22065.0,5,1,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,14710.0,2,0,2_0,2_1 +10751,4.0,8.0,61.0,111,86,71,0.0,8314,0.0,0.0,0.0,130.0,0.0,4.0,1.0,2.0,1.5,2449.322726571249,0.0,0.0,20716.0,4,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13810.666666666666,1,0,1_1,1_0 +10752,0.0,16.0,62.0,111,86,50,0.0,8315,0.0,0.0,140.0,0.0,0.0,4.0,0.0,1.0,1.0,1945.549403512203,0.0,0.0,25610.0,5,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,25610.0,4,0,4_0,4_0 +10753,0.0,0.0,58.0,112,31,10,0.0,8317,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1876.7668316672148,0.0,0.0,79433.0,1,2,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,52955.333333333336,5,0,5,5_0 +10754,0.0,0.0,47.0,111,43,33,0.0,8319,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1698.663584163326,0.0,0.0,83504.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,46391.11111111111,5,0,5,5_0 +10755,11.0,16.0,51.0,300,47,31,0.0,832,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,3414.9103583254164,1950.0,0.0,34691.0,1,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,23127.333333333332,3,0,3_0,3_1 +10756,5.0,5.0,31.0,211,46,50,0.0,8320,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3492.0602569589496,0.0,0.0,16945.0,1,4,1,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16945.0,2,0,2_0,2_0 +10757,4.0,18.0,90.0,112,77,70,0.0,8321,0.0,0.0,45.0,505.0,0.0,3.0,0.0,1.0,1.0,4281.756992897918,0.0,0.0,16745.0,5,3,10,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,16745.0,2,0,2_0,2_0 +10758,0.0,0.0,43.0,211,52,71,0.0,8323,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,1477.1889379140168,0.0,0.0,10456.0,4,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,8043.076923076923,1,0,1_1,1_0 +10759,0.0,15.0,56.0,111,52,31,0.0,8324,0.0,0.0,0.0,370.0,1.0,5.0,0.0,1.0,1.0,2122.0648573194408,0.0,0.0,26849.0,1,3,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26849.0,4,0,4_0,4_0 +10760,6.0,9.0,33.0,111,38,12,0.0,8325,0.0,201498.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2396.013974418344,0.0,0.0,158211.0,1,2,6,5.0,3,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,105474.0,5,0,5,5_0 +10761,0.0,0.0,57.0,111,78,60,0.0,8326,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3236.3394302230217,0.0,0.0,11405.0,7,1,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11405.0,1,0,1_0,1_0 +10762,11.0,11.0,68.0,111,74,41,0.0,8327,0.0,80.0,60.0,0.0,1.0,5.0,0.0,2.0,1.5,1328.3177953338286,0.0,0.0,55873.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,37248.666666666664,5,0,5,5_0 +10763,3.0,3.0,31.0,400,13,50,0.0,8329,0.0,1300.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,1926.3488502150913,0.0,0.0,45461.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21648.095238095237,3,0,3_0,3_1 +10764,6.0,6.0,65.0,400,13,31,0.0,8330,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,1698.0851983394014,2600.0,0.0,32360.0,1,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,32360.0,5,0,5,5_1 +10765,6.0,12.0,57.0,111,68,71,0.0,8331,0.0,0.0,150.0,0.0,1.0,3.0,0.0,2.0,1.5,2863.4195237087024,0.0,0.0,44639.0,1,2,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,29759.333333333332,4,0,4_0,4_0 +10766,0.0,0.0,25.0,111,42,30,0.0,8335,0.0,0.0,0.0,390.0,2.0,5.0,0.0,2.0,1.5,2697.9465660767523,0.0,0.0,10751.0,3,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7167.333333333333,1,0,1_1,1_0 +10767,0.0,0.0,44.0,300,68,50,0.0,8336,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,705.8355314084233,1824.16,0.0,12568.0,4,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,7855.0,1,0,1_1,1_1 +10768,0.0,0.0,60.0,111,34,10,0.0,8337,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2217.855018859655,0.0,0.0,17210.0,1,3,6,5.0,5,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11473.333333333334,1,0,1_1,1_0 +10769,3.0,13.0,38.0,300,55,42,0.0,8338,0.0,0.0,0.0,250.0,1.0,4.0,2.0,3.0,1.6,455.417623959422,2080.0,0.0,23120.0,1,3,0,0.0,2,1.0,1.0,0.0,1,0,0,0,0,1,0.0,1.0,14450.0,2,0,2_1,2_1 +10770,2.0,2.0,35.0,111,34,10,0.0,8339,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4418.975175243701,3047.72,0.0,36474.0,1,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,36474.0,5,0,5,5_0 +10771,0.0,0.0,54.0,111,22,30,0.0,834,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.5,2044.6866785251868,0.0,0.0,79843.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31937.2,5,0,5,5_0 +10772,4.0,4.0,90.0,111,74,12,0.0,8340,0.0,0.0,0.0,0.0,0.0,11.0,0.0,1.0,1.0,2392.511620809893,0.0,0.0,77000.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,77000.0,5,0,5,5_0 +10773,0.0,0.0,27.0,111,62,50,0.0,8341,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1024.1788266237515,1820.0,0.0,42035.0,1,3,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20016.666666666664,3,0,3_0,3_0 +10774,0.0,17.0,55.0,111,47,50,0.0,8342,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,773.5083679712372,0.0,0.0,53811.0,1,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,23396.08695652174,3,0,3_0,3_0 +10775,0.0,0.0,22.0,112,43,30,0.0,8343,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3262.0118815699307,1560.0,0.0,33780.0,1,3,8,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22520.0,3,0,3_0,3_0 +10776,7.0,8.0,48.0,120,21,71,0.0,8345,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1957.1484068470406,2600.0,0.0,29318.0,1,1,0,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,14659.0,2,0,2_0,2_0 +10777,0.0,0.0,62.0,112,31,12,0.0,8346,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2129.875273149879,0.0,0.0,127985.0,1,1,7,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,85323.33333333333,5,0,5,5_0 +10778,7.0,7.0,59.0,112,77,50,0.0,835,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,1.8,3220.649185867283,0.0,0.0,47407.0,5,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26337.222222222223,4,0,4_0,4_1 +10779,0.0,6.0,28.0,111,31,30,0.0,8350,0.0,120.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3972.885400939659,0.0,0.0,47515.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,47515.0,5,0,5,5_0 +10780,2.0,15.0,47.0,300,62,71,0.0,8351,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2393.259779878937,4684.68,0.0,35032.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23354.666666666668,3,0,3_0,3_1 +10781,4.0,21.0,54.0,112,64,70,0.0,8352,0.0,60.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2898.7056832346234,0.0,0.0,36200.0,1,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24133.333333333332,4,0,4_0,4_1 +10782,0.0,0.0,30.0,111,52,50,0.0,8353,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1335.9433855870984,2080.0,0.0,18914.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,14549.23076923077,2,0,2_1,2_0 +10783,3.0,30.0,55.0,400,13,71,0.0,8354,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1836.0352012063329,0.0,0.0,6400.0,1,2,0,0.0,3,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,4266.666666666667,1,0,1_0,1_1 +10784,3.0,5.0,81.0,111,75,70,0.0,8355,0.0,200.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2285.5003914915605,0.0,0.0,26765.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,17843.333333333332,2,0,2_0,2_0 +10785,5.0,24.0,48.0,300,45,42,0.0,8356,0.0,800.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1679.1557617018705,0.0,0.0,44202.0,1,1,0,0.0,4,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,19218.26086956522,3,0,3_0,3_1 +10786,2.0,2.0,57.0,300,56,50,0.0,8357,0.0,99999.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,3819.881990683417,1976.52,0.0,34978.0,1,1,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23318.666666666668,3,0,3_0,3_1 +10787,3.0,3.0,50.0,111,43,33,0.0,8358,0.0,200.0,0.0,0.0,1.0,7.0,2.0,3.0,1.6,3023.7093017843727,2670.2000000000003,0.0,37250.0,1,1,6,4.0,2,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,23281.25,3,0,3_0,3_0 +10788,4.0,8.0,59.0,111,56,41,0.0,8359,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2173.275430861659,0.0,0.0,15557.0,4,2,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,15557.0,2,0,2_0,2_0 +10789,16.0,16.0,38.0,112,43,33,0.0,8360,0.0,0.0,0.0,0.0,2.0,3.0,1.0,2.0,1.5,2254.619950179788,2344.6800000000003,0.0,63946.0,1,2,6,2.0,2,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,42630.666666666664,5,0,5,5_0 +10790,0.0,0.0,73.0,111,77,50,0.0,8361,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,1788.9393284415332,2205.3199999999997,0.0,14623.0,5,1,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14623.0,2,0,2_0,2_0 +10791,5.0,16.0,78.0,120,77,71,0.0,8362,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2048.272082148467,2600.0,0.0,42664.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,28442.666666666668,4,0,4_0,4_1 +10792,6.0,16.0,54.0,111,64,71,0.0,8363,0.0,0.0,99999.0,490.0,1.0,3.0,0.0,1.0,1.0,3479.0873628895442,0.0,0.0,15412.0,1,3,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,0,2.0,0.0,15412.0,2,0,2_0,2_0 +10793,0.0,0.0,26.0,111,43,30,0.0,8364,0.0,0.0,0.0,370.0,2.0,2.0,0.0,2.0,1.5,2108.0211203105646,0.0,0.0,47106.0,1,3,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31404.0,4,0,4_0,4_0 +10794,1.0,1.0,30.0,111,43,41,1.0,8365,0.0,850.0,0.0,550.0,1.0,1.0,0.0,1.0,1.0,7494.049909283563,1560.0,21000.0,20457.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20457.0,3,0,3_0,3_0 +10795,4.0,21.0,68.0,111,78,71,0.0,8366,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.6,3181.9625183791177,1040.0,0.0,20522.0,5,3,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,7893.076923076923,1,0,1_1,1_0 +10796,9.0,9.0,69.0,112,77,71,0.0,8367,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1953.0491196718178,0.0,0.0,26371.0,5,1,9,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,17580.666666666668,2,0,2_0,2_1 +10797,4.0,4.0,26.0,111,62,44,0.0,8369,0.0,0.0,0.0,470.0,1.0,2.0,0.0,1.0,1.0,3505.438526423081,3640.0,0.0,16822.0,1,3,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,16822.0,2,0,2_0,2_0 +10798,13.0,21.0,74.0,111,75,30,0.0,837,0.0,300.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2999.201087302125,1959.3600000000001,0.0,13707.0,5,1,8,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,13707.0,1,0,1_0,1_0 +10799,0.0,13.0,64.0,112,78,50,0.0,8370,0.0,0.0,970.0,0.0,0.0,6.0,0.0,1.0,1.0,2021.6490628142506,0.0,0.0,18707.0,5,1,10,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,18707.0,2,0,2_0,2_1 +10800,8.0,8.0,36.0,111,33,10,0.0,8372,0.0,0.0,0.0,0.0,1.0,3.0,2.0,4.0,2.1,1105.0737971847548,2601.56,0.0,382.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,181.9047619047619,1,0,1_0,1_0 +10801,4.0,6.0,39.0,111,54,43,0.0,8373,0.0,0.0,0.0,307.0,1.0,3.0,1.0,2.0,1.3,675.756635229981,0.0,0.0,19566.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,15050.76923076923,2,0,2_1,2_0 +10802,2.0,10.0,71.0,111,77,50,0.0,8375,0.0,0.0,0.0,0.0,1.0,7.0,2.0,5.0,2.6,808.7849315950829,1872.0,0.0,163760.0,5,1,9,7.0,5,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,62984.61538461538,5,0,5,5_0 +10803,17.0,17.0,29.0,111,21,50,0.0,8376,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4463.386126848933,0.0,0.0,15545.0,1,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,15545.0,2,0,2_1,2_0 +10804,0.0,0.0,40.0,111,46,43,0.0,8377,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.5,603.2679233141549,2340.0,0.0,21693.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14462.0,2,0,2_0,2_0 +10805,0.0,0.0,29.0,112,55,43,0.0,8378,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2449.9445054996704,4685.72,0.0,35566.0,1,2,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19758.888888888887,3,0,3_0,3_1 +10806,3.0,13.0,66.0,112,78,71,0.0,8379,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2318.9671351525053,0.0,0.0,11440.0,5,1,9,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,11440.0,1,0,1_0,1_1 +10807,0.0,0.0,43.0,112,33,20,0.0,838,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2960.945923585125,1560.0,0.0,50265.0,1,2,8,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20106.0,3,0,3_0,3_0 +10808,0.0,0.0,77.0,111,72,50,0.0,8380,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1527.9208743129666,0.0,0.0,31254.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20836.0,3,0,3_0,3_0 +10809,7.0,10.0,50.0,112,56,50,0.0,8382,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,875.0206987397472,2600.52,0.0,31232.0,1,3,8,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,17351.11111111111,2,0,2_1,2_0 +10810,4.0,10.0,52.0,111,68,71,0.0,8383,0.0,210.0,25.0,328.0,1.0,3.0,0.0,2.0,1.5,2709.433307927906,0.0,0.0,20840.0,1,3,8,7.0,3,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,13893.333333333334,1,0,1_1,1_0 +10811,1.0,12.0,50.0,111,43,33,0.0,8385,0.0,1000.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,884.0006350084055,2496.0,0.0,19947.0,1,2,6,4.0,2,2.0,1.0,0.0,0,0,1,0,0,1,0.0,2.0,11081.666666666666,1,0,1_1,1_0 +10812,3.0,6.0,33.0,112,63,50,0.0,8386,0.0,0.0,0.0,0.0,1.0,5.0,4.0,6.0,2.7,1036.7547729390935,2080.0,0.0,42030.0,1,3,10,1.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,15566.666666666666,2,0,2_1,2_0 +10813,0.0,0.0,62.0,300,13,71,0.0,8387,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2622.44451119084,0.0,0.0,36086.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24057.333333333332,4,0,4_0,4_1 +10814,12.0,15.0,40.0,112,34,0,0.0,839,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2112.8688457357375,0.0,0.0,64850.0,1,3,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,36027.777777777774,5,0,5,5_1 +10815,8.0,8.0,50.0,111,67,71,0.0,8390,0.0,0.0,0.0,430.0,1.0,3.0,0.0,1.0,1.0,2343.05746084847,0.0,0.0,11320.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,11320.0,1,0,1_0,1_0 +10816,0.0,0.0,54.0,400,78,71,0.0,8391,0.0,0.0,0.0,590.0,1.0,4.0,1.0,3.0,1.8,2425.9933840508606,3121.04,0.0,14853.0,7,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,8251.666666666666,1,0,1_0,1_1 +10817,8.0,10.0,65.0,111,43,33,0.0,8392,0.0,99999.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1260.758445972753,0.0,0.0,76099.0,1,2,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,50732.666666666664,5,0,5,5_0 +10818,0.0,0.0,60.0,111,33,50,0.0,8393,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2328.0112894320796,0.0,0.0,32913.0,1,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,32913.0,5,0,5,5_0 +10819,1.0,2.0,61.0,111,52,50,1.0,8394,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,949.276949969009,0.0,19870.0,18490.0,1,1,4,3.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,18490.0,2,0,2_0,2_0 +10820,20.0,20.0,77.0,400,77,70,0.0,8395,0.0,200.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,4938.417036146513,676.0,0.0,21854.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,21854.0,3,0,3_0,3_1 +10821,9.0,10.0,48.0,111,52,50,0.0,8396,0.0,310.0,0.0,291.0,1.0,1.0,0.0,1.0,1.0,3664.8223131587574,2080.0,0.0,19850.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,19850.0,3,0,3_0,3_0 +10822,6.0,11.0,59.0,112,37,20,0.0,8398,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2231.2507578615946,0.0,0.0,173772.0,1,1,10,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,115848.0,5,0,5,5_1 +10823,0.0,0.0,23.0,111,54,43,0.0,840,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3143.516725502525,0.0,0.0,13490.0,1,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,13490.0,1,0,1_0,1_0 +10824,11.0,11.0,51.0,111,38,50,0.0,8401,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2298.5256642603445,2086.76,0.0,54217.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,27108.5,4,0,4_0,4_0 +10825,0.0,0.0,53.0,111,63,41,0.0,8402,0.0,0.0,0.0,600.0,1.0,2.0,0.0,1.0,1.0,4863.749733006709,0.0,0.0,1230.0,1,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,1230.0,1,0,1_0,1_0 +10826,6.0,16.0,68.0,111,75,12,0.0,8403,0.0,550.0,5.0,0.0,0.0,5.0,0.0,2.0,1.5,2512.330375304028,3923.92,0.0,51514.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,34342.666666666664,5,0,5,5_0 +10827,5.0,7.0,58.0,111,22,20,0.0,8404,0.0,230.0,100.0,0.0,1.0,2.0,0.0,1.0,1.0,3137.2966429555477,0.0,0.0,7664.0,4,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,7664.0,1,0,1_1,1_0 +10828,1.0,1.0,79.0,111,78,60,0.0,8407,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3223.37036475383,0.0,0.0,34780.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23186.666666666668,3,0,3_0,3_0 +10829,2.0,14.0,52.0,111,52,41,0.0,8408,0.0,250.0,332.0,387.0,1.0,3.0,1.0,2.0,1.5,2343.3339900899573,2080.0,0.0,34027.0,1,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,22684.666666666668,3,0,3_1,3_0 +10830,0.0,0.0,34.0,111,67,41,0.0,8410,0.0,0.0,0.0,24.0,1.0,2.0,0.0,1.0,1.0,1892.0152055614747,0.0,0.0,9408.0,4,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9408.0,1,0,1_1,1_0 +10831,0.0,2.0,80.0,400,72,71,2.0,8411,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,4421.7661131910545,0.0,6900.0,26292.0,5,3,0,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,17528.0,2,0,2_1,2_0 +10832,1.0,1.0,39.0,111,46,31,0.0,8412,0.0,0.0,0.0,0.0,2.0,2.0,1.0,3.0,1.8,5264.745137124791,2080.0,0.0,58316.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,32397.777777777777,5,0,5,5_0 +10833,10.0,10.0,83.0,111,77,70,0.0,8413,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2074.5791187615914,0.0,0.0,31095.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20730.0,3,0,3_0,3_0 +10834,4.0,12.0,45.0,111,23,50,0.0,8414,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2293.47193779488,0.0,0.0,108490.0,1,4,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,43396.0,5,0,5,5_0 +10835,1.0,1.0,63.0,111,75,31,1.0,8415,0.0,795.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3338.776717371885,6143.799999999999,28000.0,31534.0,5,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,21022.666666666668,3,0,3_0,3_0 +10836,0.0,0.0,26.0,111,21,31,0.0,8416,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2747.8869589894534,0.0,0.0,13963.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9308.666666666666,1,0,1_0,1_0 +10837,6.0,6.0,60.0,111,52,50,0.0,8417,0.0,0.0,0.0,576.0,1.0,2.0,0.0,1.0,1.0,2229.384666826941,1534.0,0.0,30130.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,30130.0,4,0,4_0,4_0 +10838,2.0,2.0,71.0,111,77,70,0.0,8418,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2086.5042831188152,1716.52,0.0,38726.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25817.333333333332,4,0,4_0,4_0 +10839,1.0,12.0,66.0,111,74,42,2.0,8419,0.0,100.0,60.0,0.0,0.0,4.0,0.0,2.0,1.5,1223.0347634564425,0.0,1000.0,39211.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,26140.666666666668,4,0,4_0,4_0 +10840,0.0,0.0,57.0,111,48,43,0.0,842,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1515.7187597926927,0.0,0.0,60066.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40044.0,5,0,5,5_0 +10841,29.0,30.0,73.0,111,77,50,0.0,8420,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2133.0331225760115,0.0,0.0,18263.0,5,1,7,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18263.0,2,0,2_0,2_0 +10842,4.0,4.0,27.0,111,34,10,0.0,8421,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,5465.3866151617,0.0,0.0,73182.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,48788.0,5,0,5,5_0 +10843,0.0,0.0,53.0,111,53,50,0.0,8422,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2190.237898708908,4208.360000000001,0.0,53600.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26800.0,4,0,4_0,4_0 +10844,1.0,12.0,52.0,111,37,20,0.0,8423,0.0,0.0,80.0,0.0,2.0,6.0,2.0,4.0,2.5,1910.688728906067,0.0,0.0,804859.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,321943.6,5,0,5,5_0 +10845,1.0,1.0,51.0,111,53,41,1.0,8424,0.0,0.0,0.0,270.0,1.0,2.0,0.0,1.0,1.0,4969.425838804155,2080.0,13500.0,27583.0,1,3,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,27583.0,4,0,4_0,4_0 +10846,6.0,7.0,48.0,300,46,31,0.0,8425,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2255.537285203905,0.0,0.0,13021.0,4,2,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,13021.0,1,0,1_0,1_0 +10847,0.0,0.0,26.0,111,42,20,0.0,8426,0.0,0.0,0.0,260.0,1.0,2.0,0.0,1.0,1.0,5002.152324541258,0.0,0.0,9448.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9448.0,1,0,1_1,1_0 +10848,1.0,1.0,36.0,111,55,50,1.0,8427,0.0,120.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,625.4246758214606,0.0,23200.0,13250.0,4,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,8833.333333333334,1,0,1_1,1_0 +10849,5.0,10.0,56.0,111,34,10,0.0,8429,0.0,128.0,775.0,0.0,2.0,6.0,0.0,2.0,1.5,1875.0891403491435,2892.76,0.0,90020.0,1,1,6,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,60013.333333333336,5,0,5,5_0 +10850,7.0,23.0,60.0,221,52,50,0.0,843,0.0,100.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,2066.095917339198,3644.6800000000003,0.0,23199.0,1,1,1,2.0,1,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,23199.0,3,0,3_0,3_0 +10851,10.0,12.0,33.0,111,23,43,0.0,8430,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3505.86321828469,0.0,0.0,75236.0,1,2,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,35826.666666666664,5,0,5,5_0 +10852,2.0,2.0,51.0,111,85,71,0.0,8433,0.0,50.0,100.0,72.0,1.0,4.0,3.0,5.0,2.6,1197.7537172743423,0.0,0.0,20934.0,6,3,7,5.0,5,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,8051.538461538461,1,0,1_1,1_0 +10853,4.0,4.0,53.0,400,13,50,0.0,8435,0.0,0.0,199998.0,0.0,1.0,6.0,1.0,2.0,1.5,2797.2779753783557,0.0,0.0,36504.0,1,1,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,24336.0,4,0,4_0,4_1 +10854,11.0,13.0,55.0,211,52,50,0.0,8436,0.0,99999.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1496.578849909977,0.0,0.0,34187.0,1,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22791.333333333332,3,0,3_0,3_0 +10855,0.0,11.0,23.0,111,84,0,0.0,8437,0.0,0.0,0.0,303.0,1.0,2.0,0.0,2.0,1.5,2984.047848574826,0.0,0.0,6604.0,3,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,4402.666666666667,1,0,1_1,1_0 +10856,2.0,12.0,59.0,221,13,44,0.0,8439,0.0,0.0,0.0,0.0,3.0,7.0,1.0,3.0,2.0,2101.582421721241,0.0,0.0,28433.0,1,2,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,14216.5,2,0,2_0,2_0 +10857,1.0,5.0,50.0,112,43,71,2.0,844,0.0,200.0,0.0,221.0,1.0,5.0,1.0,2.0,1.3,454.5743062121106,2860.0,8500.0,18777.0,1,3,9,5.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,14443.846153846152,2,0,2_1,2_0 +10858,0.0,0.0,57.0,111,45,50,0.0,8440,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1486.468300238215,2236.0,0.0,19497.0,1,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12998.0,1,0,1_0,1_0 +10859,0.0,0.0,67.0,111,77,42,0.0,8442,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3562.188331588781,0.0,0.0,20825.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20825.0,3,0,3_0,3_0 +10860,0.0,0.0,39.0,111,53,43,0.0,8444,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2281.5238821192324,3005.6,0.0,44700.0,1,2,6,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29800.0,4,0,4_0,4_0 +10861,6.0,8.0,83.0,111,75,60,0.0,8445,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4081.8598109823947,0.0,0.0,29311.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,29311.0,4,0,4_0,4_0 +10862,21.0,21.0,63.0,111,77,50,0.0,8446,0.0,40.0,0.0,56.0,0.0,3.0,1.0,2.0,1.5,2823.893171974541,0.0,0.0,14842.0,5,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,9894.666666666666,1,0,1_1,1_0 +10863,0.0,0.0,70.0,111,74,41,0.0,8447,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1637.4919642500934,0.0,0.0,43563.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29042.0,4,0,4_0,4_0 +10864,10.0,10.0,74.0,211,72,70,0.0,8449,0.0,0.0,80.0,0.0,0.0,12.0,0.0,1.0,1.0,1908.410494550647,3446.56,0.0,41083.0,5,1,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,41083.0,5,0,5,5_0 +10865,3.0,5.0,33.0,111,52,31,0.0,845,0.0,99999.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3705.82240708785,2704.0,0.0,18193.0,1,3,6,4.0,1,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,18193.0,2,0,2_0,2_0 +10866,11.0,11.0,44.0,111,33,30,0.0,8450,0.0,0.0,0.0,0.0,2.0,8.0,3.0,5.0,2.8,829.8357223730162,1572.48,0.0,68075.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24312.5,4,0,4_0,4_0 +10867,23.0,23.0,36.0,111,54,30,0.0,8452,0.0,0.0,99999.0,0.0,1.0,3.0,0.0,1.0,1.0,2145.7605656791607,0.0,0.0,16408.0,1,4,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,16408.0,2,0,2_0,2_0 +10868,1.0,5.0,21.0,112,62,50,2.0,8453,0.0,0.0,0.0,450.0,1.0,2.0,0.0,1.0,1.0,3807.459269752575,0.0,7500.0,12419.0,1,3,10,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,12419.0,1,0,1_0,1_0 +10869,0.0,0.0,53.0,111,23,50,0.0,8454,0.0,0.0,0.0,1132.0,2.0,3.0,1.0,3.0,2.0,3357.1385453125504,913.12,0.0,122290.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,61145.0,5,0,5,5_0 +10870,3.0,4.0,65.0,111,77,71,0.0,8455,0.0,0.0,0.0,368.0,0.0,1.0,0.0,1.0,1.0,5673.992919782024,0.0,0.0,12170.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,12170.0,1,0,1_1,1_0 +10871,0.0,0.0,48.0,111,37,20,0.0,8457,0.0,0.0,0.0,0.0,2.0,9.0,3.0,5.0,2.8,1994.7110448401754,1198.6000000000001,0.0,135683.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,48458.21428571429,5,0,5,5_0 +10872,0.0,0.0,83.0,112,,50,1.0,8458,0.0,250.0,50.0,0.0,0.0,4.0,0.0,2.0,1.5,1594.5765579468386,0.0,24000.0,37935.0,5,1,8,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,25290.0,4,0,4_0,4_1 +10873,0.0,0.0,43.0,111,38,12,0.0,8459,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3670.2088429897813,5356.0,0.0,65922.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31391.42857142857,4,0,4_0,4_0 +10874,0.0,0.0,57.0,111,75,31,0.0,846,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.5,2574.745788338858,2864.16,0.0,42859.0,5,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17143.6,2,0,2_0,2_0 +10875,0.0,18.0,57.0,111,78,71,0.0,8463,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,1.5,4718.984872752364,0.0,0.0,5064.0,7,3,10,8.0,2,1.0,1.0,0.0,0,0,0,0,1,1,1.0,0.0,3376.0,1,0,1_1,1_0 +10876,0.0,2.0,22.0,111,54,30,0.0,8464,0.0,0.0,0.0,233.0,2.0,3.0,0.0,2.0,1.5,2203.5320952620505,0.0,0.0,42733.0,2,3,8,7.0,3,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,28488.666666666668,4,0,4_1,4_0 +10877,1.0,11.0,54.0,111,63,50,2.0,8465,0.0,0.0,0.0,718.0,2.0,3.0,1.0,3.0,2.0,2084.126262247414,0.0,3500.0,55999.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,27999.5,4,0,4_0,4_0 +10878,5.0,5.0,44.0,111,52,30,0.0,8466,0.0,140.0,100.0,0.0,1.0,4.0,2.0,4.0,2.1,2153.096414611865,1895.92,0.0,22283.0,1,1,8,7.0,4,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,10610.95238095238,1,0,1_0,1_0 +10879,7.0,7.0,29.0,112,65,50,0.0,8467,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2608.077287858953,2080.0,0.0,38490.0,1,3,5,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,25660.0,4,0,4_0,4_1 +10880,1.0,2.0,76.0,221,72,70,2.0,8469,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2167.7271164641015,0.0,22000.0,17967.0,5,1,1,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,17967.0,2,0,2_0,2_0 +10881,0.0,0.0,72.0,111,78,71,0.0,847,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2110.930848234788,0.0,0.0,19534.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19534.0,3,0,3_0,3_0 +10882,0.0,0.0,51.0,111,68,71,1.0,8471,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3656.112096854168,8216.0,25000.0,19030.0,1,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19030.0,3,0,3_0,3_0 +10883,0.0,0.0,40.0,221,56,50,0.0,8472,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.1,710.962537750427,2600.0,0.0,33514.0,1,3,1,1.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,15959.047619047618,2,0,2_1,2_0 +10884,5.0,10.0,48.0,111,62,50,0.0,8473,0.0,0.0,0.0,0.0,4.0,5.0,2.0,4.0,2.5,2470.744384644507,0.0,0.0,48080.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19232.0,3,0,3_0,3_0 +10885,0.0,0.0,45.0,111,63,71,0.0,8474,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1817.789288419979,0.0,0.0,12920.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,8613.333333333334,1,0,1_1,1_0 +10886,9.0,13.0,49.0,111,54,50,0.0,8475,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1861.947293387227,0.0,0.0,46126.0,1,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30750.666666666668,4,0,4_0,4_0 +10887,0.0,0.0,51.0,112,62,71,0.0,8476,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2019.4225721401526,2600.0,0.0,37940.0,1,2,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18970.0,3,0,3_0,3_0 +10888,4.0,4.0,54.0,111,46,60,0.0,8477,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,2457.4363336588576,2600.52,0.0,29883.0,1,2,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,29883.0,4,0,4_0,4_0 +10889,17.0,17.0,79.0,211,78,50,0.0,8478,0.0,792.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2422.406623919728,0.0,0.0,27788.0,5,1,3,4.0,3,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,18525.333333333332,2,0,2_0,2_0 +10890,2.0,2.0,60.0,112,77,50,0.0,8479,0.0,1000.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2288.643477844084,2501.72,0.0,26099.0,5,1,9,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,17399.333333333332,2,0,2_0,2_1 +10891,4.0,7.0,90.0,111,77,70,0.0,848,0.0,0.0,300.0,0.0,0.0,4.0,0.0,2.0,1.5,5019.862184430742,0.0,0.0,18399.0,5,1,6,5.0,5,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,12266.0,1,0,1_0,1_0 +10892,13.0,13.0,45.0,111,38,31,0.0,8480,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,1821.6144658310366,0.0,0.0,64727.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,28142.17391304348,4,0,4_0,4_0 +10893,0.0,0.0,38.0,300,46,50,0.0,8481,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2278.9175405166025,1305.72,0.0,46621.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20270.0,3,0,3_0,3_1 +10894,10.0,10.0,64.0,300,75,41,0.0,8482,0.0,0.0,80.0,470.0,0.0,3.0,0.0,2.0,1.5,2900.7337591196074,1560.0,0.0,34141.0,5,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,22760.666666666668,3,0,3_0,3_1 +10895,11.0,11.0,49.0,111,63,71,0.0,8485,0.0,0.0,0.0,430.0,1.0,5.0,2.0,4.0,2.1,2333.347289191761,1304.68,0.0,30584.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14563.809523809523,2,0,2_0,2_0 +10896,0.0,0.0,34.0,120,62,71,0.0,8486,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1613.903726456727,0.0,0.0,45420.0,1,4,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18925.0,3,0,3_0,3_1 +10897,2.0,2.0,51.0,112,22,31,0.0,8487,0.0,140.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2494.989570971237,1924.52,0.0,51648.0,1,1,9,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20659.2,3,0,3_0,3_0 +10898,15.0,15.0,43.0,211,45,30,0.0,849,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,765.7836053392591,0.0,0.0,21543.0,1,4,4,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,21543.0,3,0,3_0,3_0 +10899,14.0,14.0,59.0,112,37,33,0.0,8490,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1750.741979856011,0.0,0.0,57746.0,1,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,38497.333333333336,5,0,5,5_1 +10900,1.0,10.0,38.0,112,65,50,0.0,8491,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2609.9229299572426,0.0,0.0,82752.0,1,2,8,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,39405.71428571428,5,0,5,5_1 +10901,0.0,0.0,67.0,111,77,70,0.0,8492,0.0,0.0,0.0,163.0,0.0,2.0,0.0,1.0,1.0,2762.9600535736727,0.0,0.0,14683.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,14683.0,2,0,2_1,2_0 +10902,7.0,12.0,75.0,111,74,70,0.0,8493,0.0,400.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,4124.634355716357,0.0,0.0,46351.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,30900.666666666668,4,0,4_0,4_0 +10903,1.0,15.0,47.0,111,52,50,0.0,8494,0.0,99999.0,0.0,354.0,1.0,4.0,1.0,2.0,1.5,1578.2865488246061,0.0,0.0,19730.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,13153.333333333334,1,0,1_0,1_0 +10904,0.0,0.0,39.0,111,62,43,0.0,8495,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1811.9095094737968,2080.0,0.0,85621.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40771.90476190476,5,0,5,5_0 +10905,13.0,13.0,89.0,112,78,70,0.0,8497,0.0,320.0,100.0,0.0,0.0,4.0,0.0,2.0,1.5,2780.2340070843543,0.0,0.0,29762.0,5,1,9,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19841.333333333332,3,0,3_0,3_0 +10906,4.0,4.0,28.0,111,52,20,0.0,8498,0.0,60.0,0.0,796.0,2.0,3.0,2.0,4.0,2.1,4955.633829473679,0.0,0.0,31326.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,14917.142857142857,2,0,2_0,2_0 +10907,0.0,0.0,59.0,112,21,44,0.0,85,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2840.9211598665165,0.0,0.0,50642.0,1,2,9,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,33761.333333333336,5,0,5,5_0 +10908,0.0,0.0,43.0,120,52,50,0.0,850,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,3045.3760675184476,2564.64,0.0,44159.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22079.5,3,0,3_0,3_1 +10909,13.0,13.0,64.0,112,75,50,0.0,8500,0.0,200.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,5451.392546908584,0.0,0.0,43080.0,5,1,7,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,28720.0,4,0,4_0,4_1 +10910,3.0,13.0,57.0,111,52,60,0.0,8501,0.0,40.0,0.0,0.0,1.0,5.0,2.0,4.0,2.5,2260.1543556501097,5262.4,0.0,46824.0,1,1,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,18729.6,3,0,3_0,3_0 +10911,4.0,6.0,55.0,111,34,31,0.0,8502,0.0,200.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1583.8979922487,2578.6800000000003,0.0,78827.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,52551.333333333336,5,0,5,5_0 +10912,9.0,9.0,91.0,400,78,70,0.0,8504,0.0,0.0,40.0,0.0,0.0,4.0,0.0,2.0,1.5,2169.865157486597,0.0,0.0,18179.0,5,3,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,1,1.0,0.0,12119.333333333334,1,0,1_1,1_1 +10913,1.0,4.0,52.0,111,35,30,0.0,8505,0.0,500.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,1129.2437967508179,0.0,0.0,32775.0,1,3,10,8.0,5,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,12605.76923076923,1,0,1_1,1_0 +10914,0.0,0.0,32.0,111,38,12,0.0,8508,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2319.542785048899,1560.0,0.0,107244.0,1,2,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,71496.0,5,0,5,5_0 +10915,4.0,16.0,35.0,120,43,41,0.0,8509,0.0,0.0,0.0,649.0,2.0,5.0,3.0,5.0,2.4,2403.7798523554707,4910.36,0.0,56248.0,1,3,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23436.666666666668,3,0,3_0,3_1 +10916,9.0,12.0,43.0,111,37,30,0.0,851,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,773.9416592644998,0.0,0.0,23120.0,1,2,6,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17784.615384615383,2,0,2_0,2_0 +10917,3.0,3.0,44.0,111,33,20,0.0,8510,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1890.5713025191094,0.0,0.0,72256.0,1,1,8,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,48170.666666666664,5,0,5,5_0 +10918,4.0,4.0,48.0,112,63,50,0.0,8512,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,2469.167438437397,3212.5600000000004,0.0,32949.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13179.6,1,0,1_0,1_1 +10919,5.0,5.0,35.0,111,31,30,0.0,8513,0.0,0.0,0.0,1526.0,2.0,2.0,1.0,3.0,1.8,4278.1172444117265,0.0,0.0,131960.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,73311.11111111111,5,0,5,5_0 +10920,3.0,3.0,64.0,112,75,31,0.0,8514,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2745.6722001799276,0.0,0.0,29046.0,5,1,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,29046.0,4,0,4_0,4_1 +10921,12.0,12.0,80.0,111,75,30,0.0,8515,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1732.9114723004611,0.0,0.0,46045.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30696.666666666668,4,0,4_0,4_0 +10922,9.0,12.0,54.0,111,47,31,0.0,8516,0.0,300.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2203.2046201698977,2704.0,0.0,64650.0,1,1,6,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,25860.0,4,0,4_0,4_0 +10923,0.0,0.0,36.0,111,37,20,0.0,8517,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1604.74958838446,1300.0,0.0,84914.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35380.833333333336,5,0,5,5_0 +10924,1.0,7.0,59.0,400,43,33,0.0,8518,0.0,100.0,0.0,0.0,1.0,5.0,1.0,2.0,1.5,689.5370015511758,0.0,0.0,35537.0,1,1,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23691.333333333332,3,0,3_0,3_1 +10925,0.0,0.0,52.0,111,33,41,0.0,8519,0.0,0.0,0.0,0.0,2.0,7.0,3.0,5.0,2.8,1366.2565471947821,2028.0,0.0,106984.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,38208.57142857143,5,0,5,5_0 +10926,0.0,0.0,64.0,111,78,71,0.0,8520,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3055.652622295138,0.0,0.0,11390.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,11390.0,1,0,1_0,1_0 +10927,0.0,16.0,49.0,221,63,71,0.0,8521,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1826.019184828328,2709.2000000000003,0.0,34865.0,1,2,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19369.444444444445,3,0,3_0,3_0 +10928,0.0,0.0,38.0,111,46,20,0.0,8522,0.0,0.0,0.0,500.0,1.0,1.0,0.0,1.0,1.0,2332.062759205952,0.0,0.0,27266.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27266.0,4,0,4_0,4_0 +10929,0.0,0.0,90.0,111,77,50,0.0,8526,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3959.022303090308,0.0,0.0,27630.0,5,1,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27630.0,4,0,4_0,4_0 +10930,0.0,0.0,44.0,112,48,71,1.0,8528,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2180.1606059471997,2600.0,11700.0,51485.0,1,3,10,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,34323.333333333336,5,0,5,5_0 +10931,0.0,0.0,70.0,300,72,70,0.0,853,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1828.7313851225329,2080.0,0.0,43920.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,29280.0,4,0,4_0,4_1 +10932,0.0,0.0,52.0,111,46,31,0.0,8530,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,3281.0886438974712,325.0,0.0,31762.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21174.666666666668,3,0,3_0,3_0 +10933,3.0,5.0,50.0,112,52,50,0.0,8531,0.0,70.0,70.0,0.0,2.0,4.0,1.0,3.0,2.0,1883.144782057366,5543.719999999999,0.0,38409.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19204.5,3,0,3_0,3_1 +10934,2.0,2.0,50.0,111,21,30,0.0,8532,0.0,0.0,200.0,0.0,3.0,7.0,1.0,3.0,2.0,1806.9277134446793,0.0,0.0,119408.0,1,1,7,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,59704.0,5,0,5,5_0 +10935,12.0,12.0,66.0,111,77,70,0.0,8533,0.0,0.0,0.0,380.0,0.0,3.0,0.0,2.0,1.5,3044.7495067020477,1300.0,0.0,31091.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20727.333333333332,3,0,3_0,3_0 +10936,13.0,13.0,51.0,111,64,50,0.0,8534,0.0,0.0,45.0,0.0,1.0,3.0,3.0,5.0,2.4,459.69838421827814,0.0,0.0,24530.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,10220.833333333334,1,0,1_1,1_0 +10937,7.0,7.0,48.0,112,47,50,0.0,8537,0.0,8000.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,716.559203747532,2864.16,0.0,23614.0,1,2,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23614.0,3,0,3_0,3_1 +10938,3.0,5.0,36.0,111,48,43,0.0,8538,0.0,0.0,200.0,0.0,2.0,6.0,1.0,3.0,1.8,1122.7019271183144,3120.0,0.0,34926.0,1,2,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,19403.333333333332,3,0,3_0,3_0 +10939,7.0,7.0,42.0,111,52,50,0.0,854,0.0,500.0,0.0,0.0,1.0,4.0,3.0,4.0,2.1,2142.3096116347547,0.0,0.0,24896.0,1,4,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,11855.238095238095,1,0,1_0,1_0 +10940,13.0,16.0,71.0,111,77,71,0.0,8540,0.0,0.0,800.0,0.0,0.0,5.0,0.0,1.0,1.0,3098.7844538411364,0.0,0.0,20372.0,5,1,7,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,20372.0,3,0,3_0,3_0 +10941,1.0,1.0,56.0,300,47,60,1.0,8541,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1878.467276908342,3077.88,16000.0,39513.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,26342.0,4,0,4_0,4_1 +10942,8.0,8.0,54.0,300,52,42,0.0,8543,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1857.034890144668,0.0,0.0,11177.0,1,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11177.0,1,0,1_0,1_0 +10943,8.0,8.0,61.0,111,34,20,0.0,8544,0.0,250.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2314.5564391459316,2037.3600000000001,0.0,56424.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,28212.0,4,0,4_0,4_0 +10944,0.0,0.0,38.0,111,85,50,0.0,8545,0.0,0.0,0.0,105.0,0.0,1.0,0.0,1.0,1.0,3858.6331223973175,0.0,0.0,13051.0,7,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13051.0,1,0,1_1,1_0 +10945,5.0,6.0,61.0,111,45,20,0.0,8546,0.0,150.0,0.0,756.0,1.0,3.0,0.0,1.0,1.0,2206.6506926709185,0.0,0.0,35229.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,35229.0,5,0,5,5_0 +10946,0.0,21.0,88.0,112,71,60,0.0,8547,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1751.2576763889022,0.0,0.0,23930.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15953.333333333334,2,0,2_0,2_1 +10947,5.0,5.0,25.0,111,65,43,0.0,8548,0.0,0.0,0.0,367.0,1.0,2.0,0.0,1.0,1.0,4142.809909565256,0.0,0.0,14883.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14883.0,2,0,2_1,2_0 +10948,2.0,6.0,53.0,112,38,12,0.0,8549,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2486.426357167121,0.0,0.0,48963.0,1,2,8,2.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,48963.0,5,0,5,5_0 +10949,3.0,3.0,61.0,111,43,30,0.0,855,0.0,0.0,0.0,0.0,2.0,8.0,1.0,2.0,1.5,2089.631078310667,0.0,0.0,43718.0,1,4,4,4.0,2,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,29145.333333333332,4,0,4_0,4_0 +10950,4.0,17.0,68.0,111,74,30,0.0,8550,0.0,195.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1744.0046634717353,2600.0,0.0,59960.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,39973.333333333336,5,0,5,5_0 +10951,9.0,13.0,57.0,111,37,12,0.0,8552,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2488.7373234171587,1560.0,0.0,84282.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,42141.0,5,0,5,5_0 +10952,5.0,5.0,61.0,112,75,42,0.0,8553,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1617.6078568009113,0.0,0.0,39441.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26294.0,4,0,4_0,4_1 +10953,5.0,7.0,32.0,111,46,31,0.0,8554,0.0,80.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2628.505451582127,0.0,0.0,57877.0,1,2,10,8.0,3,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,38584.666666666664,5,0,5,5_0 +10954,0.0,0.0,53.0,111,56,71,0.0,8555,0.0,0.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,1657.3310398810102,0.0,0.0,70807.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,35403.5,5,0,5,5_0 +10955,0.0,0.0,63.0,112,75,60,0.0,8556,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2333.8373267910756,0.0,0.0,31461.0,5,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20974.0,3,0,3_0,3_1 +10956,3.0,3.0,34.0,300,55,71,0.0,8557,0.0,350.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,2472.3329132979825,0.0,0.0,21701.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,12056.111111111111,1,0,1_0,1_1 +10957,0.0,0.0,35.0,112,37,20,0.0,8558,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2737.6694877758805,5531.76,0.0,69445.0,1,2,10,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,38580.555555555555,5,0,5,5_0 +10958,1.0,1.0,71.0,112,56,70,2.0,8559,0.0,0.0,300.0,0.0,1.0,4.0,0.0,1.0,1.0,1994.7202224445227,0.0,8000.0,16553.0,5,1,6,0.0,1,3.0,0.0,1.0,1,0,0,0,0,0,2.0,1.0,16553.0,2,0,2_0,2_1 +10959,1.0,6.0,74.0,400,77,50,2.0,8560,0.0,750.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1898.4556404029443,2867.7999999999997,19000.0,20587.0,5,1,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,20587.0,3,0,3_0,3_1 +10960,0.0,0.0,68.0,111,78,41,0.0,8561,0.0,0.0,0.0,367.0,0.0,2.0,0.0,1.0,1.0,4020.20122782275,0.0,0.0,17352.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17352.0,2,0,2_0,2_0 +10961,6.0,6.0,81.0,111,86,71,0.0,8562,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1785.1053780360467,0.0,0.0,10410.0,5,1,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,10410.0,1,0,1_0,1_0 +10962,5.0,11.0,44.0,112,52,50,0.0,8563,0.0,99999.0,99999.0,477.0,2.0,4.0,1.0,3.0,1.8,3320.4099005607623,1560.52,0.0,35304.0,1,3,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19613.333333333332,3,0,3_0,3_0 +10963,0.0,0.0,62.0,111,34,10,0.0,8564,0.0,0.0,0.0,0.0,2.0,8.0,0.0,2.0,1.5,2111.9649018189953,0.0,0.0,95500.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,63666.666666666664,5,0,5,5_0 +10964,0.0,0.0,69.0,111,86,41,0.0,8566,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2543.1638489316297,0.0,0.0,31780.0,5,1,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31780.0,5,0,5,5_0 +10965,8.0,8.0,65.0,112,72,42,0.0,8567,0.0,100.0,99998.0,0.0,0.0,6.0,0.0,1.0,1.0,3433.2215443679556,1040.0,0.0,8250.0,5,1,7,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,8250.0,1,0,1_0,1_1 +10966,2.0,12.0,51.0,111,85,70,0.0,8569,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,4314.334144185846,0.0,0.0,9102.0,6,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,9102.0,1,0,1_1,1_0 +10967,0.0,0.0,72.0,112,72,70,0.0,857,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2104.7018003056364,0.0,0.0,25985.0,5,1,10,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25985.0,4,0,4_0,4_1 +10968,8.0,8.0,46.0,111,55,41,0.0,8570,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,1995.7144775649924,3120.0,0.0,30541.0,1,3,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,15270.5,2,0,2_0,2_0 +10969,1.0,1.0,71.0,111,78,70,1.0,8571,0.0,40.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1657.1752057959275,0.0,26000.0,13535.0,5,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,13535.0,1,0,1_1,1_0 +10970,7.0,8.0,40.0,111,65,31,0.0,8572,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.1,1777.3306926709906,1040.0,0.0,26547.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,12641.42857142857,1,0,1_0,1_0 +10971,1.0,1.0,22.0,111,84,41,1.0,8573,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2554.3302257256255,0.0,12610.0,4344.0,3,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,4344.0,1,0,1_1,1_0 +10972,0.0,0.0,17.0,111,84,41,0.0,8574,0.0,0.0,0.0,92.0,0.0,3.0,0.0,1.0,1.0,3381.5560140313323,0.0,0.0,2492.0,3,4,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,2492.0,1,0,1_1,1_0 +10973,2.0,5.0,67.0,112,77,70,2.0,8575,0.0,0.0,0.0,0.0,2.0,8.0,3.0,4.0,2.5,4477.44367715172,0.0,7000.0,47045.0,5,3,10,4.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,18818.0,3,0,3_1,3_0 +10974,14.0,14.0,37.0,111,52,50,0.0,8576,0.0,0.0,0.0,583.0,1.0,3.0,3.0,4.0,2.3,630.7891595450382,0.0,0.0,35528.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,15446.956521739132,2,0,2_1,2_0 +10975,2.0,6.0,47.0,111,52,50,0.0,8577,0.0,1330.0,0.0,274.0,1.0,4.0,2.0,3.0,1.8,944.221015545983,0.0,0.0,24750.0,1,3,8,6.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,13750.0,1,0,1_1,1_0 +10976,7.0,9.0,36.0,400,46,31,0.0,8579,0.0,199998.0,0.0,0.0,2.0,8.0,3.0,5.0,2.4,4441.856831581152,1560.0,0.0,37655.0,1,2,0,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,15689.583333333334,2,0,2_0,2_0 +10977,6.0,6.0,43.0,111,53,30,0.0,858,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3630.442229104017,0.0,0.0,22099.0,1,4,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,22099.0,3,0,3_0,3_0 +10978,0.0,0.0,54.0,112,65,50,0.0,8580,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1875.997363917565,0.0,0.0,22813.0,1,1,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15208.666666666666,2,0,2_0,2_1 +10979,0.0,0.0,58.0,111,38,71,0.0,8582,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,924.0906459945592,2704.0,0.0,56982.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22792.8,3,0,3_0,3_0 +10980,0.0,12.0,48.0,112,54,31,0.0,8583,0.0,0.0,0.0,422.0,2.0,3.0,2.0,3.0,2.0,937.0271280123906,3120.0,0.0,28697.0,1,3,9,3.0,2,1.0,1.0,1.0,0,1,0,0,0,1,1.0,0.0,14348.5,2,0,2_1,2_0 +10981,3.0,3.0,48.0,112,12,50,0.0,8584,0.0,20.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1335.7947946961228,1560.52,0.0,8510.0,1,1,6,1.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,8510.0,1,0,1_1,1_0 +10982,1.0,15.0,53.0,111,34,20,2.0,8585,0.0,0.0,100.0,0.0,1.0,4.0,0.0,1.0,1.0,2054.540780486228,0.0,950.0,40133.0,1,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,40133.0,5,0,5,5_0 +10983,7.0,10.0,65.0,111,77,50,0.0,8586,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3292.633132941325,0.0,0.0,19799.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,19799.0,3,0,3_0,3_0 +10984,5.0,15.0,55.0,111,63,50,0.0,8590,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2188.4638145585154,3484.0,0.0,43130.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18752.17391304348,3,0,3_0,3_0 +10985,7.0,7.0,61.0,221,42,20,0.0,8591,0.0,35.0,0.0,0.0,1.0,6.0,0.0,1.0,1.0,1485.2192832207134,0.0,0.0,6397.0,4,1,1,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,6397.0,1,0,1_0,1_0 +10986,13.0,13.0,61.0,111,54,50,0.0,8592,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2009.088607290176,0.0,0.0,40470.0,1,1,4,4.0,3,4.0,0.0,0.0,0,0,1,0,0,0,0.0,4.0,26980.0,4,0,4_0,4_0 +10987,0.0,0.0,34.0,111,37,12,0.0,8594,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2963.4774634990167,0.0,0.0,47950.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,47950.0,5,0,5,5_0 +10988,4.0,11.0,65.0,112,78,71,0.0,8595,0.0,0.0,600.0,0.0,0.0,4.0,0.0,1.0,1.0,2647.685295513553,0.0,0.0,17380.0,5,1,6,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,17380.0,2,0,2_0,2_0 +10989,11.0,17.0,44.0,111,34,20,0.0,8596,0.0,0.0,300.0,0.0,1.0,5.0,2.0,3.0,1.6,793.5202970192579,0.0,0.0,39024.0,1,4,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24390.0,4,0,4_0,4_0 +10990,1.0,7.0,79.0,111,78,71,0.0,8598,0.0,150.0,6.0,0.0,0.0,6.0,0.0,2.0,1.5,3911.8188822756388,1872.0,0.0,40360.0,5,1,6,4.0,3,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,26906.666666666668,4,0,4_0,4_0 +10991,2.0,2.0,56.0,112,64,50,0.0,8599,0.0,0.0,980.0,0.0,2.0,5.0,0.0,2.0,1.5,2222.0229531169557,5897.839999999999,0.0,25280.0,1,1,5,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,16853.333333333332,2,0,2_0,2_1 +10992,3.0,8.0,45.0,112,46,43,0.0,860,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,515.9689021281791,2191.28,0.0,28855.0,1,2,8,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,14427.5,2,0,2_1,2_1 +10993,6.0,9.0,54.0,211,85,50,0.0,8600,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.3,1277.3647782026994,0.0,0.0,22262.0,7,3,3,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,9679.13043478261,1,0,1_1,1_0 +10994,3.0,10.0,21.0,111,56,30,0.0,8601,0.0,0.0,0.0,540.0,1.0,2.0,0.0,1.0,1.0,3552.454244197185,0.0,0.0,14366.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14366.0,2,0,2_0,2_0 +10995,1.0,1.0,33.0,111,38,50,1.0,8602,0.0,0.0,130.0,0.0,2.0,3.0,2.0,4.0,2.1,2477.726686424289,0.0,12200.0,40987.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,19517.619047619046,3,0,3_0,3_0 +10996,0.0,0.0,53.0,112,77,50,0.0,8603,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1856.8269705718023,0.0,0.0,37526.0,5,2,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25017.333333333332,4,0,4_0,4_1 +10997,5.0,11.0,59.0,211,34,20,0.0,8604,0.0,0.0,150.0,0.0,1.0,3.0,0.0,1.0,1.0,1732.6568945304934,1820.0,0.0,34450.0,1,2,1,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,34450.0,5,0,5,5_0 +10998,5.0,22.0,22.0,111,46,30,0.0,8605,0.0,0.0,214.0,454.0,1.0,2.0,0.0,1.0,1.0,4783.9351325816915,0.0,0.0,30532.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,1,2.0,0.0,30532.0,4,0,4_1,4_0 +10999,3.0,9.0,36.0,112,62,50,0.0,8607,0.0,0.0,360.0,0.0,2.0,4.0,2.0,4.0,2.1,2284.8623759688317,3095.04,0.0,53627.0,1,2,6,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,25536.666666666664,4,0,4_0,4_1 +11000,0.0,10.0,44.0,111,46,31,0.0,8609,0.0,0.0,340.0,0.0,2.0,4.0,3.0,5.0,2.6,2096.3603990429697,0.0,0.0,40025.0,1,2,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,15394.23076923077,2,0,2_0,2_0 +11001,5.0,21.0,67.0,111,74,30,0.0,8610,0.0,0.0,250.0,0.0,1.0,7.0,0.0,2.0,1.5,1734.863259933465,0.0,0.0,46951.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,31300.666666666668,4,0,4_0,4_0 +11002,3.0,11.0,71.0,111,78,50,0.0,8612,0.0,100014.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2631.209914127346,2860.52,0.0,36057.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,24038.0,4,0,4_0,4_0 +11003,11.0,16.0,47.0,120,85,50,0.0,8613,0.0,550.0,60.0,0.0,0.0,6.0,2.0,3.0,1.8,478.5147835845751,2519.4,0.0,17360.0,7,2,0,1.0,2,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,9644.444444444443,1,0,1_0,1_0 +11004,6.0,6.0,29.0,111,52,50,0.0,8615,0.0,0.0,0.0,294.0,1.0,2.0,0.0,1.0,1.0,5472.323903247774,0.0,0.0,20810.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,20810.0,3,0,3_0,3_0 +11005,1.0,4.0,50.0,211,65,50,2.0,8616,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,874.3292010459622,3120.0,16500.0,21050.0,1,3,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,21050.0,3,0,3_0,3_0 +11006,5.0,5.0,46.0,111,37,41,0.0,8617,0.0,99999.0,0.0,0.0,3.0,6.0,3.0,5.0,3.0,1665.5449723685,0.0,0.0,90350.0,1,2,8,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,30116.666666666668,4,0,4_0,4_0 +11007,6.0,10.0,35.0,111,31,30,0.0,8618,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1867.552853895172,0.0,0.0,88239.0,1,2,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,58826.0,5,0,5,5_0 +11008,0.0,0.0,47.0,111,22,71,0.0,862,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,2595.0446293080286,0.0,0.0,13762.0,4,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,7645.555555555556,1,0,1_1,1_0 +11009,0.0,6.0,63.0,112,75,50,2.0,8620,0.0,120.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4268.219096800748,4160.0,14000.0,30269.0,5,1,7,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20179.333333333332,3,0,3_0,3_1 +11010,3.0,10.0,75.0,111,74,20,0.0,8621,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2276.931250143556,0.0,0.0,46314.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,46314.0,5,0,5,5_0 +11011,7.0,11.0,48.0,112,85,30,0.0,8623,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1453.3032042009293,1060.8,0.0,45822.0,4,2,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,30548.0,4,0,4_0,4_1 +11012,3.0,7.0,64.0,111,77,50,0.0,8625,0.0,0.0,0.0,217.0,0.0,3.0,0.0,1.0,1.0,2074.4219908538544,780.0,0.0,11590.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,11590.0,1,0,1_1,1_0 +11013,5.0,7.0,61.0,112,74,70,0.0,8626,0.0,210.0,100.0,0.0,0.0,4.0,1.0,2.0,1.5,3713.928143052652,0.0,0.0,21929.0,7,1,9,1.0,2,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,14619.333333333334,2,0,2_0,2_0 +11014,6.0,13.0,42.0,300,38,30,0.0,8627,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3128.399133629581,4576.0,0.0,60009.0,1,4,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,33338.333333333336,5,0,5,5_1 +11015,1.0,16.0,92.0,400,78,70,0.0,8628,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2359.811754300586,0.0,0.0,14624.0,5,4,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9749.333333333334,1,0,1_0,1_1 +11016,0.0,14.0,46.0,111,43,33,0.0,8632,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2040.2244556977914,2594.2799999999997,0.0,29320.0,1,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29320.0,4,0,4_0,4_0 +11017,0.0,12.0,30.0,112,65,43,0.0,8633,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2343.6007228669946,1560.0,0.0,14760.0,1,2,7,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,14760.0,2,0,2_0,2_1 +11018,9.0,12.0,67.0,111,74,20,0.0,8634,0.0,85.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,1703.4015529236167,2184.0,0.0,78220.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,52146.666666666664,5,0,5,5_0 +11019,1.0,13.0,32.0,112,63,50,2.0,8635,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,3949.8687482295877,0.0,3500.0,49510.0,1,1,4,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,24755.0,4,0,4_0,4_1 +11020,0.0,7.0,41.0,111,68,50,0.0,8636,0.0,80.0,0.0,0.0,1.0,4.0,3.0,4.0,2.3,655.6401202719314,1053.0,0.0,27740.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,12060.869565217392,1,0,1_1,1_0 +11021,10.0,11.0,76.0,111,77,70,0.0,8637,0.0,0.0,0.0,172.0,0.0,3.0,0.0,1.0,1.0,5170.288793789832,0.0,0.0,16543.0,5,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,16543.0,2,0,2_1,2_0 +11022,8.0,10.0,32.0,221,48,44,0.0,8639,0.0,0.0,200.0,0.0,1.0,3.0,0.0,1.0,1.0,3973.2211741165534,2080.0,0.0,19703.0,1,2,1,1.0,1,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,19703.0,3,0,3_0,3_0 +11023,0.0,0.0,36.0,111,35,31,0.0,864,0.0,0.0,0.0,295.0,1.0,3.0,2.0,3.0,1.6,1452.9750471061227,0.0,0.0,33056.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,20660.0,3,0,3_1,3_0 +11024,0.0,0.0,47.0,111,47,41,0.0,8640,0.0,0.0,0.0,465.0,1.0,5.0,3.0,5.0,2.6,2419.7450188548796,0.0,0.0,40418.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15545.384615384615,2,0,2_1,2_0 +11025,5.0,13.0,69.0,111,77,50,0.0,8641,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1513.553285151295,0.0,0.0,36383.0,5,1,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,24255.333333333332,4,0,4_0,4_0 +11026,0.0,0.0,57.0,112,13,50,0.0,8642,0.0,0.0,0.0,0.0,2.0,15.0,0.0,2.0,1.5,2498.1368220951786,780.0,0.0,28623.0,1,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19082.0,3,0,3_0,3_0 +11027,3.0,3.0,40.0,112,54,50,0.0,8643,0.0,0.0,150.0,0.0,1.0,4.0,2.0,4.0,2.3,329.5089062588791,0.0,0.0,44576.0,1,1,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19380.869565217392,3,0,3_0,3_1 +11028,4.0,10.0,48.0,111,67,50,0.0,8645,0.0,0.0,0.0,490.0,2.0,4.0,3.0,4.0,2.3,783.7491730777226,6052.8,0.0,32980.0,1,3,7,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14339.13043478261,2,0,2_0,2_0 +11029,0.0,0.0,29.0,111,38,20,0.0,8646,0.0,0.0,0.0,0.0,2.0,3.0,3.0,5.0,2.4,2662.962976000159,0.0,0.0,83960.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34983.333333333336,5,0,5,5_0 +11030,6.0,6.0,29.0,111,52,50,0.0,8647,0.0,0.0,200.0,252.0,1.0,3.0,2.0,3.0,1.6,1225.2202062757074,1040.0,0.0,31490.0,1,3,10,8.0,2,3.0,0.0,0.0,0,0,0,0,1,1,1.0,2.0,19681.25,3,0,3_1,3_0 +11031,2.0,20.0,72.0,111,72,70,0.0,8648,0.0,99999.0,0.0,0.0,0.0,6.0,1.0,2.0,1.5,1822.3016551606104,2080.0,0.0,38670.0,5,1,5,4.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,25780.0,4,0,4_0,4_0 +11032,12.0,13.0,28.0,222,46,41,0.0,8649,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3807.8140176603893,0.0,0.0,48657.0,1,2,1,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,27031.666666666664,4,0,4_0,4_1 +11033,3.0,7.0,43.0,400,63,50,0.0,8651,0.0,200.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2202.7238214165395,2497.04,0.0,35994.0,1,3,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17140.0,2,0,2_0,2_1 +11034,6.0,6.0,77.0,111,75,33,0.0,8653,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3901.126002383951,0.0,0.0,18464.0,5,1,10,8.0,1,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,18464.0,2,0,2_0,2_0 +11035,0.0,7.0,61.0,111,77,50,2.0,8654,0.0,0.0,0.0,349.0,0.0,2.0,0.0,1.0,1.0,1891.2992849684595,0.0,4500.0,10766.0,5,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,10766.0,1,0,1_0,1_0 +11036,7.0,13.0,58.0,111,43,33,0.0,8658,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1797.103350796568,0.0,0.0,36408.0,1,1,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,36408.0,5,0,5,5_0 +11037,7.0,18.0,33.0,111,37,20,0.0,8659,0.0,150.0,0.0,1303.0,2.0,5.0,0.0,2.0,1.5,3551.9281044117015,4416.88,0.0,47213.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,31475.333333333332,4,0,4_0,4_0 +11038,2.0,5.0,31.0,111,38,12,0.0,866,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2109.001985158156,0.0,0.0,57715.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,32063.888888888887,5,0,5,5_0 +11039,0.0,13.0,51.0,111,34,20,0.0,8660,0.0,0.0,250.0,0.0,2.0,6.0,1.0,3.0,2.0,1715.0109497346534,1820.0,0.0,73023.0,1,1,7,5.0,4,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,36511.5,5,0,5,5_0 +11040,4.0,12.0,49.0,111,54,31,0.0,8661,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,1710.09366561592,0.0,0.0,38461.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,16722.17391304348,2,0,2_0,2_0 +11041,21.0,21.0,55.0,111,52,44,0.0,8662,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1450.4822934061767,2600.52,0.0,5820.0,4,1,6,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,5820.0,1,0,1_0,1_0 +11042,0.0,0.0,51.0,111,34,20,0.0,8663,0.0,0.0,0.0,569.0,2.0,3.0,2.0,4.0,2.3,2645.341957895183,0.0,0.0,69563.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30244.782608695656,4,0,4_0,4_0 +11043,0.0,0.0,74.0,300,74,60,0.0,8664,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2283.902444132673,0.0,0.0,19960.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19960.0,3,0,3_0,3_1 +11044,0.0,0.0,38.0,111,85,71,1.0,8666,0.0,99999.0,0.0,0.0,0.0,3.0,4.0,5.0,2.8,542.2719039879265,0.0,18000.0,27310.0,8,3,8,6.0,2,1.0,1.0,1.0,0,0,1,0,0,1,0.0,1.0,9753.57142857143,1,0,1_1,1_0 +11045,0.0,0.0,69.0,300,77,50,0.0,8667,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1537.0556218990625,1560.0,0.0,35671.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23780.666666666668,3,0,3_0,3_1 +11046,0.0,13.0,79.0,112,75,44,0.0,8668,0.0,85.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2158.0732993018246,2600.0,0.0,49976.0,5,4,6,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,33317.333333333336,5,0,5,5_0 +11047,4.0,6.0,35.0,111,67,41,0.0,8669,0.0,171.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2922.7762498802613,0.0,0.0,14361.0,4,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,9574.0,1,0,1_1,1_0 +11048,1.0,1.0,56.0,111,63,71,1.0,867,0.0,1500.0,0.0,386.0,2.0,4.0,5.0,7.0,3.6,2852.0707672778954,0.0,37790.0,35991.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,9997.5,1,0,1_0,1_0 +11049,6.0,6.0,46.0,111,85,60,0.0,8671,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,914.6853119239745,0.0,0.0,17188.0,6,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13221.538461538461,1,0,1_1,1_0 +11050,9.0,21.0,84.0,111,72,50,0.0,8672,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1370.570975530416,2600.0,0.0,23233.0,5,1,6,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,15488.666666666666,2,0,2_0,2_0 +11051,11.0,11.0,37.0,111,54,31,0.0,8674,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,4621.508366905649,3396.12,0.0,49400.0,1,2,7,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,23523.809523809523,3,0,3_0,3_0 +11052,2.0,2.0,28.0,111,34,0,0.0,8678,0.0,365.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,1821.5651259822475,2080.0,0.0,37240.0,1,4,4,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24826.666666666668,4,0,4_0,4_0 +11053,3.0,3.0,85.0,120,72,12,0.0,8680,0.0,300.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1527.9727716321584,0.0,0.0,43420.0,5,1,0,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,28946.666666666668,4,0,4_0,4_0 +11054,0.0,0.0,70.0,400,77,60,0.0,8681,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2196.141546444504,1560.52,0.0,28018.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28018.0,4,0,4_0,4_1 +11055,0.0,11.0,46.0,111,67,44,0.0,8682,0.0,99999.0,99999.0,206.0,2.0,4.0,3.0,5.0,2.6,629.90789877976,2080.0,0.0,23992.0,1,3,7,5.0,4,3.0,0.0,0.0,0,0,1,0,0,1,2.0,1.0,9227.692307692307,1,0,1_1,1_0 +11056,11.0,11.0,66.0,111,78,71,0.0,8683,0.0,0.0,0.0,66.0,0.0,4.0,0.0,2.0,1.5,10219.181290248838,0.0,0.0,21155.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14103.333333333334,2,0,2_1,2_0 +11057,0.0,0.0,89.0,112,77,70,0.0,8684,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2598.7670361623113,0.0,0.0,18334.0,5,1,6,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,12222.666666666666,1,0,1_0,1_0 +11058,0.0,0.0,36.0,112,56,42,0.0,8685,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,1882.5116672150884,3303.56,0.0,13204.0,1,1,9,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,10156.923076923076,1,0,1_0,1_1 +11059,0.0,22.0,67.0,111,75,41,0.0,8686,0.0,0.0,0.0,660.0,0.0,4.0,0.0,1.0,1.0,2836.873171547161,0.0,0.0,40190.0,5,3,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,40190.0,5,0,5,5_0 +11060,2.0,2.0,79.0,111,74,41,0.0,8687,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2119.065022413481,2600.0,0.0,35038.0,5,1,6,4.0,3,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,23358.666666666668,3,0,3_0,3_0 +11061,10.0,10.0,60.0,400,77,60,0.0,8688,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1781.4249343967917,5486.52,0.0,31214.0,5,1,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20809.333333333332,3,0,3_0,3_0 +11062,0.0,0.0,65.0,111,77,60,0.0,8689,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1354.882939336007,4472.0,0.0,30764.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20509.333333333332,3,0,3_0,3_0 +11063,0.0,0.0,38.0,111,85,70,0.0,869,0.0,0.0,0.0,33.0,0.0,3.0,3.0,4.0,2.1,4991.143575945442,0.0,0.0,16638.0,4,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7922.857142857142,1,0,1_1,1_0 +11064,6.0,12.0,66.0,112,78,71,0.0,8691,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2514.5867526651923,1881.8799999999999,0.0,27760.0,5,2,8,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,18506.666666666668,2,0,2_0,2_1 +11065,12.0,12.0,82.0,111,78,70,0.0,8692,0.0,250.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2759.9797918118024,2593.76,0.0,13851.0,5,1,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,13851.0,1,0,1_0,1_0 +11066,6.0,10.0,55.0,300,67,50,0.0,8693,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1514.856427694435,0.0,0.0,35953.0,1,3,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,23968.666666666668,4,0,4_0,4_1 +11067,15.0,23.0,69.0,111,78,71,0.0,8694,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2692.4054299303834,2431.52,0.0,21898.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,14598.666666666666,2,0,2_0,2_0 +11068,0.0,0.0,55.0,111,55,42,0.0,8695,0.0,0.0,0.0,370.0,1.0,2.0,0.0,1.0,1.0,2488.1058051186883,2555.7999999999997,0.0,19950.0,1,3,7,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,19950.0,3,0,3_0,3_0 +11069,2.0,10.0,37.0,111,54,42,0.0,8696,0.0,100299.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,904.3200409641564,1566.76,0.0,19932.0,1,2,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,12457.5,1,0,1_0,1_0 +11070,0.0,0.0,57.0,111,42,30,0.0,8697,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1536.5852646072183,0.0,0.0,45038.0,1,2,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18015.2,2,0,2_0,2_0 +11071,12.0,12.0,47.0,111,46,31,0.0,8698,0.0,0.0,70.0,0.0,2.0,5.0,1.0,3.0,2.0,2140.4704780367338,3439.28,0.0,58743.0,1,1,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,29371.5,4,0,4_0,4_0 +11072,4.0,5.0,75.0,111,75,60,0.0,8699,0.0,0.0,0.0,367.0,0.0,2.0,0.0,1.0,1.0,3071.9404734214604,0.0,0.0,13093.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,13093.0,1,0,1_1,1_0 +11073,6.0,6.0,79.0,112,74,44,0.0,87,0.0,160.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1816.6345479317195,2803.84,0.0,45338.0,5,1,7,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,30225.333333333332,4,0,4_0,4_0 +11074,1.0,4.0,23.0,111,46,31,2.0,870,0.0,0.0,99999.0,62.0,1.0,3.0,0.0,1.0,1.0,3184.3943829543305,8164.0,13000.0,14237.0,4,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,14237.0,2,0,2_1,2_0 +11075,0.0,13.0,58.0,111,46,50,0.0,8701,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,567.366206053327,0.0,0.0,27661.0,1,2,8,6.0,2,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,21277.69230769231,3,0,3_0,3_0 +11076,3.0,11.0,42.0,300,42,20,0.0,8702,0.0,100.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2841.6858359094167,2940.6,0.0,39682.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,18896.190476190477,3,0,3_0,3_0 +11077,0.0,8.0,83.0,111,71,71,2.0,8703,0.0,290.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2891.5051568786266,0.0,2000.0,28790.0,5,4,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,28790.0,4,0,4_0,4_0 +11078,2.0,8.0,64.0,221,56,71,0.0,8704,0.0,0.0,0.0,0.0,3.0,9.0,2.0,4.0,2.5,3153.2744566271735,4152.200000000001,0.0,81117.0,5,1,1,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32446.8,5,0,5,5_0 +11079,0.0,10.0,31.0,112,31,20,0.0,8707,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,7199.059542863304,3380.0,0.0,47488.0,4,3,7,1.0,4,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,23744.0,3,0,3_0,3_0 +11080,1.0,3.0,51.0,112,46,43,2.0,8708,0.0,10.0,0.0,0.0,2.0,6.0,1.0,3.0,2.0,2777.4299405367337,6146.4,16000.0,52847.0,1,1,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,26423.5,4,0,4_0,4_1 +11081,5.0,5.0,83.0,221,77,50,0.0,8709,0.0,0.0,64.0,0.0,0.0,4.0,0.0,1.0,1.0,2928.00835064372,0.0,0.0,16824.0,5,1,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,16824.0,2,0,2_0,2_0 +11082,4.0,4.0,78.0,120,78,70,0.0,871,0.0,200.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2587.460495259179,826.8,0.0,47241.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,31494.0,4,0,4_0,4_0 +11083,0.0,0.0,38.0,111,54,30,0.0,8710,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.3,2000.8850365234257,2080.0,0.0,46454.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20197.391304347828,3,0,3_0,3_0 +11084,7.0,13.0,78.0,111,74,44,0.0,8711,0.0,450.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2045.3242672848235,2912.0,0.0,51897.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,34598.0,5,0,5,5_0 +11085,0.0,0.0,56.0,400,77,41,0.0,8712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2337.494765612072,0.0,0.0,10700.0,7,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,10700.0,1,0,1_0,1_0 +11086,6.0,6.0,31.0,111,45,20,0.0,8714,0.0,0.0,0.0,580.0,1.0,2.0,0.0,1.0,1.0,2633.046626406575,0.0,0.0,22583.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,22583.0,3,0,3_0,3_0 +11087,0.0,0.0,52.0,300,21,71,0.0,8716,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2567.6497160226704,0.0,0.0,63725.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27706.521739130436,4,0,4_0,4_1 +11088,9.0,9.0,51.0,112,31,31,0.0,8718,0.0,0.0,150.0,0.0,2.0,4.0,1.0,3.0,2.0,714.0306251449731,1718.08,0.0,34147.0,1,2,6,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,17073.5,2,0,2_0,2_0 +11089,0.0,0.0,27.0,111,47,30,0.0,8719,0.0,0.0,0.0,600.0,2.0,3.0,0.0,2.0,1.5,2530.8963880942333,3120.0,0.0,40583.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27055.333333333332,4,0,4_0,4_0 +11090,1.0,1.0,60.0,111,45,50,0.0,872,0.0,700.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1538.3176647253931,3588.0,0.0,64318.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,42878.666666666664,5,0,5,5_0 +11091,4.0,7.0,67.0,111,74,12,0.0,8720,0.0,600.0,150.0,0.0,0.0,8.0,0.0,2.0,1.5,1839.8952698057913,2468.96,0.0,75009.0,5,1,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,50006.0,5,0,5,5_0 +11092,3.0,3.0,93.0,111,78,70,0.0,8721,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,5034.65247150562,0.0,0.0,13110.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,13110.0,1,0,1_0,1_0 +11093,0.0,0.0,43.0,120,56,44,0.0,8722,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,649.2497483916619,2210.0,0.0,11202.0,1,2,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,6223.333333333333,1,0,1_1,1_1 +11094,21.0,21.0,33.0,111,63,43,0.0,8723,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,775.391098212381,0.0,0.0,41701.0,1,2,4,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,19857.619047619046,3,0,3_0,3_0 +11095,7.0,11.0,53.0,112,63,71,0.0,8724,0.0,250.0,0.0,0.0,3.0,4.0,1.0,3.0,2.0,2756.576097371753,0.0,0.0,38557.0,1,1,9,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,19278.5,3,0,3_0,3_0 +11096,11.0,11.0,85.0,112,75,41,0.0,8726,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2568.4687823883082,3144.96,0.0,40604.0,5,1,10,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,40604.0,5,0,5,5_1 +11097,5.0,17.0,53.0,112,22,42,0.0,8727,0.0,84.0,0.0,0.0,1.0,2.0,1.0,2.0,1.5,1490.1022612554034,1628.12,0.0,13100.0,4,3,7,4.0,2,2.0,0.0,0.0,0,0,1,0,0,1,0.0,2.0,8733.333333333334,1,0,1_1,1_0 +11098,0.0,0.0,50.0,112,38,12,0.0,8728,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1650.9686116511016,6418.88,0.0,73233.0,1,2,10,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,48822.0,5,0,5,5_0 +11099,0.0,0.0,86.0,400,78,70,0.0,8729,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,3502.5957706833005,1996.8,0.0,13457.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13457.0,1,0,1_0,1_1 +11100,0.0,0.0,45.0,111,33,20,0.0,8730,0.0,0.0,0.0,684.0,2.0,2.0,0.0,2.0,1.5,3198.5563554412684,0.0,0.0,72856.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,48570.666666666664,5,0,5,5_0 +11101,1.0,12.0,31.0,112,37,60,2.0,8731,0.0,0.0,60.0,0.0,2.0,4.0,3.0,5.0,2.4,2028.6439475343777,2967.64,6100.0,53480.0,1,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22283.333333333336,3,0,3_0,3_0 +11102,6.0,13.0,68.0,112,74,31,0.0,8734,0.0,15.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1537.9972444038551,0.0,0.0,63943.0,5,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,42628.666666666664,5,0,5,5_1 +11103,0.0,0.0,42.0,111,56,30,0.0,8736,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,784.8845411838405,0.0,0.0,4120.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,3169.230769230769,1,0,1_0,1_0 +11104,14.0,14.0,29.0,112,46,30,0.0,8737,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4011.8817029663187,1932.8400000000001,0.0,27317.0,1,2,9,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27317.0,4,0,4_0,4_0 +11105,4.0,15.0,90.0,111,77,44,0.0,874,0.0,252.0,108.0,0.0,0.0,4.0,0.0,1.0,1.0,2880.945314563291,0.0,0.0,25417.0,5,1,6,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,25417.0,4,0,4_0,4_0 +11106,21.0,22.0,60.0,111,37,12,0.0,8740,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,2298.7426327973976,3123.64,0.0,177283.0,1,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,118188.66666666667,5,0,5,5_0 +11107,17.0,18.0,37.0,112,53,50,0.0,8742,0.0,0.0,0.0,215.0,1.0,3.0,1.0,2.0,1.3,1295.016619581283,0.0,0.0,24260.0,1,3,8,1.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,18661.53846153846,2,0,2_1,2_0 +11108,0.0,0.0,62.0,111,78,71,0.0,8743,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2627.1990891597793,0.0,0.0,9585.0,5,1,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,9585.0,1,0,1_0,1_0 +11109,0.0,0.0,63.0,111,34,31,0.0,8745,0.0,0.0,0.0,650.0,1.0,3.0,0.0,1.0,1.0,2458.8099286989036,0.0,0.0,14351.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14351.0,2,0,2_0,2_0 +11110,1.0,1.0,67.0,111,78,50,1.0,8746,0.0,1144.0,0.0,131.0,0.0,4.0,0.0,1.0,1.0,2679.824354311692,0.0,24308.0,13801.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,13801.0,1,0,1_1,1_0 +11111,4.0,9.0,62.0,120,78,50,0.0,8748,0.0,0.0,200.0,0.0,0.0,4.0,0.0,2.0,1.5,2736.8361452602103,0.0,0.0,34495.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,22996.666666666668,3,0,3_0,3_1 +11112,10.0,10.0,69.0,400,75,44,0.0,875,0.0,50.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,911.3922346737834,0.0,0.0,26310.0,5,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17540.0,2,0,2_0,2_1 +11113,14.0,26.0,46.0,111,21,71,0.0,8750,0.0,0.0,170.0,0.0,1.0,4.0,2.0,3.0,1.8,1600.0627621356155,1040.0,0.0,8610.0,1,2,8,7.0,2,3.0,0.0,0.0,0,0,0,1,0,0,3.0,0.0,4783.333333333333,1,0,1_0,1_0 +11114,14.0,15.0,48.0,111,68,50,0.0,8751,0.0,0.0,200.0,187.0,1.0,3.0,1.0,3.0,1.8,2073.1816518841115,520.0,0.0,23944.0,1,3,7,5.0,4,2.0,1.0,0.0,0,0,1,0,0,1,1.0,1.0,13302.222222222223,1,0,1_1,1_0 +11115,0.0,0.0,35.0,111,47,31,0.0,8752,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,1892.6536629572697,0.0,0.0,43794.0,1,2,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20854.285714285714,3,0,3_0,3_0 +11116,4.0,4.0,43.0,400,55,50,0.0,8753,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,259.88572534845815,2538.64,0.0,20081.0,1,2,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,11156.111111111111,1,0,1_1,1_1 +11117,6.0,8.0,42.0,300,64,50,0.0,8754,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.6,2739.1792866515016,0.0,0.0,44002.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,16923.846153846152,2,0,2_1,2_1 +11118,0.0,0.0,62.0,111,77,50,0.0,8756,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2125.6946732680935,2362.36,0.0,25335.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,16890.0,2,0,2_0,2_0 +11119,6.0,6.0,94.0,111,71,60,0.0,8758,0.0,250.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2284.1932592958165,0.0,0.0,16010.0,5,1,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16010.0,2,0,2_0,2_0 +11120,0.0,6.0,47.0,111,46,41,0.0,8759,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2210.794247026255,0.0,0.0,61770.0,1,2,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,24708.0,4,0,4_0,4_0 +11121,7.0,11.0,61.0,112,31,50,0.0,876,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2134.7811971406454,4087.2,0.0,87240.0,1,1,4,0.0,3,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,58160.0,5,0,5,5_1 +11122,0.0,0.0,54.0,111,65,70,0.0,8760,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1804.811667926353,0.0,0.0,24500.0,1,2,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24500.0,4,0,4_0,4_0 +11123,0.0,0.0,47.0,120,62,43,0.0,8761,0.0,0.0,0.0,167.0,1.0,3.0,0.0,1.0,1.0,2423.181741338457,2600.0,0.0,14178.0,4,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14178.0,2,0,2_1,2_1 +11124,13.0,13.0,26.0,120,69,70,0.0,8762,0.0,96.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,1781.5527998423354,0.0,0.0,14916.0,4,3,0,2.0,2,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,7458.0,1,0,1_1,1_0 +11125,8.0,8.0,72.0,111,77,60,0.0,8763,0.0,0.0,240.0,0.0,0.0,5.0,0.0,1.0,1.0,1850.7509248980857,0.0,0.0,25263.0,5,2,4,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,25263.0,4,0,4_0,4_0 +11126,7.0,7.0,28.0,112,68,43,0.0,8766,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3197.6557428314777,0.0,0.0,28662.0,1,2,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19108.0,3,0,3_0,3_1 +11127,0.0,0.0,79.0,221,72,50,0.0,8770,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2886.746729225794,0.0,0.0,47934.0,5,1,1,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23967.0,4,0,4_0,4_0 +11128,19.0,19.0,38.0,111,46,31,0.0,8771,0.0,0.0,50.0,239.0,2.0,4.0,2.0,4.0,2.1,2261.063902699397,3380.0,0.0,40286.0,1,3,5,4.0,4,2.0,0.0,0.0,0,0,1,0,0,1,2.0,0.0,19183.809523809523,3,0,3_1,3_0 +11129,1.0,6.0,63.0,400,75,50,2.0,8773,0.0,300.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3191.4631749997598,0.0,4000.0,22680.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22680.0,3,0,3_0,3_1 +11130,6.0,9.0,52.0,112,43,33,0.0,8774,0.0,0.0,0.0,790.0,3.0,4.0,1.0,3.0,2.0,1448.0157293333043,2236.0,0.0,82240.0,1,3,5,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,41120.0,5,0,5,5_1 +11131,4.0,4.0,68.0,221,75,31,0.0,8775,0.0,375.0,324.0,0.0,0.0,3.0,0.0,2.0,1.5,1699.338697169831,2600.0,0.0,41457.0,5,1,1,3.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,27638.0,4,0,4_0,4_0 +11132,0.0,0.0,73.0,211,86,41,0.0,8779,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1201.7237078702078,2860.0,0.0,35779.0,5,1,2,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23852.666666666668,4,0,4_0,4_0 +11133,0.0,0.0,70.0,112,74,31,0.0,878,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1891.0510529187525,0.0,0.0,65618.0,5,1,10,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,43745.333333333336,5,0,5,5_0 +11134,4.0,9.0,44.0,111,37,20,0.0,8781,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2177.677792926564,2808.0,0.0,65633.0,1,1,10,8.0,1,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,65633.0,5,0,5,5_0 +11135,0.0,7.0,57.0,400,52,50,0.0,8782,0.0,1130.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2235.2261340756118,3224.0,0.0,41605.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27736.666666666668,4,0,4_0,4_1 +11136,0.0,2.0,62.0,111,31,10,2.0,8783,0.0,200.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1620.213747835179,0.0,14000.0,8571.0,1,1,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,8571.0,1,0,1_0,1_0 +11137,0.0,14.0,66.0,111,75,31,0.0,8785,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1569.6721628251316,1977.0400000000002,0.0,44856.0,5,1,9,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,29904.0,4,0,4_0,4_0 +11138,7.0,11.0,42.0,112,21,31,0.0,8787,0.0,300.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,910.6474958339024,0.0,0.0,14167.0,1,2,9,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,6746.190476190476,1,0,1_0,1_0 +11139,0.0,16.0,64.0,111,37,12,0.0,8788,0.0,350.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1786.9628880755272,3281.2000000000003,0.0,50178.0,4,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,33452.0,5,0,5,5_0 +11140,10.0,10.0,39.0,111,55,31,0.0,879,0.0,0.0,0.0,592.0,1.0,3.0,1.0,2.0,1.3,902.3865700461234,3380.0,0.0,25389.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,19530.0,3,0,3_1,3_0 +11141,13.0,16.0,26.0,111,38,12,0.0,8790,0.0,0.0,198.0,659.0,2.0,3.0,0.0,2.0,1.5,5413.254463539861,3666.0,0.0,21643.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,14428.666666666666,2,0,2_1,2_0 +11142,0.0,0.0,68.0,221,78,71,0.0,8791,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2201.7182123843277,0.0,0.0,19277.0,5,1,1,2.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19277.0,3,0,3_0,3_0 +11143,0.0,0.0,80.0,112,74,12,0.0,8793,0.0,0.0,0.0,0.0,0.0,13.0,1.0,2.0,1.5,4106.934387828351,0.0,0.0,45370.0,5,1,7,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30246.666666666668,4,0,4_0,4_1 +11144,0.0,0.0,53.0,111,56,50,0.0,8794,0.0,0.0,0.0,261.0,1.0,3.0,0.0,1.0,1.0,1749.363905560618,1404.0,0.0,15711.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15711.0,2,0,2_0,2_0 +11145,3.0,7.0,53.0,111,22,60,0.0,8795,0.0,300.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3389.456878007291,0.0,0.0,41639.0,1,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,41639.0,5,0,5,5_0 +11146,17.0,17.0,44.0,111,64,71,0.0,8797,0.0,0.0,0.0,0.0,2.0,7.0,2.0,5.0,2.8,3064.967109167785,5935.28,0.0,49173.0,1,2,7,6.0,5,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,17561.785714285714,2,0,2_0,2_0 +11147,2.0,6.0,50.0,111,46,31,0.0,8799,0.0,700.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,549.8626502466326,2622.88,0.0,55544.0,1,1,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,22217.6,3,0,3_0,3_0 +11148,2.0,11.0,38.0,111,52,43,0.0,88,0.0,199998.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2461.9281072899744,1560.0,0.0,30399.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,12666.25,1,0,1_1,1_0 +11149,4.0,11.0,63.0,212,77,71,0.0,8801,0.0,170.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,836.3197863629687,5141.24,0.0,21177.0,5,1,4,0.0,1,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,21177.0,3,0,3_0,3_1 +11150,5.0,7.0,67.0,112,74,20,0.0,8802,0.0,480.0,0.0,500.0,0.0,2.0,0.0,1.0,1.0,3069.285722699734,0.0,0.0,32842.0,5,3,10,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,32842.0,5,0,5,5_0 +11151,0.0,0.0,40.0,112,53,31,0.0,8806,0.0,0.0,0.0,800.0,2.0,5.0,2.0,4.0,2.3,2854.8674780846713,3703.96,0.0,52552.0,1,3,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22848.695652173916,3,0,3_0,3_0 +11152,0.0,0.0,69.0,120,78,71,0.0,8807,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2985.4158931027046,0.0,0.0,18650.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18650.0,2,0,2_0,2_1 +11153,4.0,10.0,57.0,111,78,71,0.0,8808,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2513.581994265843,0.0,0.0,7700.0,6,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,7700.0,1,0,1_1,1_0 +11154,0.0,0.0,32.0,111,34,0,0.0,8809,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1092.7427418221057,0.0,0.0,36090.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17185.714285714286,2,0,2_0,2_0 +11155,1.0,1.0,81.0,300,71,70,1.0,8810,0.0,0.0,50.0,0.0,0.0,6.0,0.0,2.0,1.5,1838.9656416528946,0.0,13200.0,22201.0,5,1,0,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,14800.666666666666,2,0,2_0,2_0 +11156,4.0,4.0,80.0,300,71,70,0.0,8812,0.0,0.0,0.0,0.0,0.0,12.0,0.0,1.0,1.0,2053.6330595468858,0.0,0.0,15050.0,5,4,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15050.0,2,0,2_0,2_1 +11157,11.0,13.0,70.0,112,75,44,0.0,8813,0.0,0.0,0.0,400.0,0.0,2.0,0.0,1.0,1.0,324.9286176761221,1562.6000000000001,0.0,17187.0,5,3,9,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17187.0,2,0,2_0,2_1 +11158,6.0,6.0,44.0,111,85,71,0.0,8815,0.0,0.0,220.0,0.0,1.0,5.0,5.0,6.0,3.1,886.7451139484634,2600.0,0.0,23991.0,6,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,7739.032258064516,1,0,1_1,1_0 +11159,2.0,9.0,67.0,111,77,50,0.0,8816,0.0,0.0,0.0,308.0,0.0,4.0,0.0,2.0,1.5,2310.018573899898,1300.0,0.0,14712.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,9808.0,1,0,1_0,1_0 +11160,19.0,19.0,58.0,300,52,50,0.0,8817,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2751.2812603855573,0.0,0.0,36350.0,1,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,1.0,2.0,24233.333333333332,4,0,4_0,4_1 +11161,5.0,5.0,53.0,111,53,71,0.0,8818,0.0,0.0,200.0,257.0,1.0,1.0,1.0,3.0,1.8,3058.494652242041,0.0,0.0,19370.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,10761.111111111111,1,0,1_0,1_0 +11162,0.0,0.0,50.0,111,45,42,0.0,8820,0.0,0.0,0.0,621.0,1.0,3.0,1.0,2.0,1.5,1619.8115099146623,0.0,0.0,33057.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22038.0,3,0,3_0,3_0 +11163,0.0,0.0,50.0,300,63,50,0.0,8821,0.0,0.0,0.0,290.0,1.0,1.0,1.0,2.0,1.3,3991.6377196031694,3070.5999999999995,0.0,21517.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16551.53846153846,2,0,2_0,2_1 +11164,0.0,0.0,40.0,111,37,31,0.0,8822,0.0,0.0,0.0,595.0,1.0,4.0,3.0,4.0,2.3,670.5202191297537,1560.0,0.0,51720.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22486.956521739132,3,0,3_0,3_0 +11165,4.0,4.0,44.0,111,56,50,0.0,8824,0.0,440.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,623.1670695012457,2600.0,0.0,17453.0,1,3,6,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,8726.5,1,0,1_1,1_0 +11166,2.0,2.0,38.0,221,62,50,0.0,8825,0.0,340.0,0.0,0.0,2.0,6.0,2.0,4.0,2.3,2978.115329362101,1824.6800000000003,0.0,82701.0,1,2,1,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,35956.956521739135,5,0,5,5_0 +11167,0.0,0.0,84.0,111,78,71,0.0,8827,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,4686.9752790793245,0.0,0.0,20168.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13445.333333333334,1,0,1_0,1_0 +11168,1.0,4.0,56.0,120,67,71,0.0,8829,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2366.2639902564392,0.0,0.0,19639.0,1,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13092.666666666666,1,0,1_0,1_1 +11169,5.0,5.0,73.0,112,78,71,0.0,883,0.0,500.0,500.0,0.0,0.0,5.0,0.0,2.0,1.5,1945.4720325545345,1768.0,0.0,25979.0,5,3,9,0.0,3,2.0,1.0,1.0,1,0,0,0,0,1,1.0,1.0,17319.333333333332,2,0,2_1,2_1 +11170,8.0,11.0,57.0,111,38,41,0.0,8830,0.0,100.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1659.6270186441075,0.0,0.0,84570.0,1,1,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,42285.0,5,0,5,5_0 +11171,16.0,16.0,42.0,111,55,20,0.0,8831,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,5195.546807392389,0.0,0.0,14800.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,14800.0,2,0,2_0,2_0 +11172,7.0,7.0,38.0,400,47,31,0.0,8833,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1938.5567193076079,0.0,0.0,33766.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,16079.047619047618,2,0,2_0,2_1 +11173,5.0,7.0,29.0,221,63,50,0.0,8838,0.0,120.0,0.0,0.0,2.0,8.0,1.0,3.0,1.8,2345.819631266556,1560.0,0.0,35989.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19993.888888888887,3,0,3_0,3_0 +11174,0.0,0.0,28.0,112,37,43,0.0,8839,0.0,0.0,0.0,638.0,2.0,4.0,2.0,4.0,2.3,217.3413676696808,3120.0,0.0,35165.0,1,3,6,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15289.13043478261,2,0,2_0,2_1 +11175,4.0,4.0,71.0,120,75,60,0.0,8841,0.0,500.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2364.2879325718773,1560.0,0.0,33210.0,5,1,0,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22140.0,3,0,3_0,3_0 +11176,0.0,0.0,31.0,111,43,30,0.0,8842,0.0,0.0,0.0,464.0,1.0,3.0,1.0,2.0,1.3,2781.386230500392,2860.0,0.0,25334.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,19487.69230769231,3,0,3_1,3_0 +11177,9.0,9.0,46.0,111,63,71,0.0,8843,0.0,0.0,0.0,0.0,1.0,4.0,4.0,6.0,2.9,3044.0758103383687,0.0,0.0,30670.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,10575.862068965518,1,0,1_0,1_0 +11178,0.0,0.0,32.0,111,38,20,0.0,8844,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3870.049560464779,1689.48,0.0,61481.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34156.11111111111,5,0,5,5_0 +11179,5.0,6.0,40.0,400,52,50,0.0,8846,0.0,800.0,0.0,0.0,2.0,6.0,3.0,5.0,2.8,1603.8052467369025,0.0,0.0,43820.0,1,1,0,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,1.0,2.0,15650.000000000002,2,0,2_0,2_1 +11180,0.0,0.0,28.0,120,56,50,0.0,8847,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3357.9231176210947,0.0,0.0,32280.0,4,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,15371.42857142857,2,0,2_1,2_1 +11181,0.0,0.0,65.0,111,75,50,0.0,8849,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2683.5582542402267,0.0,0.0,28832.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,28832.0,4,0,4_0,4_0 +11182,2.0,2.0,73.0,111,75,33,0.0,885,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1727.4607550787316,0.0,0.0,39680.0,5,1,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26453.333333333332,4,0,4_0,4_0 +11183,4.0,4.0,33.0,221,22,50,0.0,8850,0.0,450.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2914.831848660964,0.0,0.0,33284.0,1,1,3,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22189.333333333332,3,0,3_0,3_0 +11184,2.0,2.0,37.0,111,47,41,0.0,8851,0.0,0.0,120.0,0.0,1.0,6.0,2.0,4.0,2.1,2496.147787317644,1040.0,0.0,36405.0,1,2,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17335.714285714286,2,0,2_0,2_0 +11185,5.0,5.0,55.0,112,47,50,0.0,8852,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1899.2070403145433,3035.24,0.0,34726.0,1,1,8,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,23150.666666666668,3,0,3_0,3_1 +11186,14.0,14.0,34.0,112,12,50,0.0,8853,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2264.7315025728913,0.0,0.0,18486.0,1,2,5,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,18486.0,2,0,2_0,2_1 +11187,11.0,12.0,62.0,400,78,71,0.0,8854,0.0,50.0,50.0,350.0,1.0,5.0,1.0,3.0,2.0,2596.692888725251,0.0,0.0,55795.0,5,3,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,27897.5,4,0,4_0,4_0 +11188,29.0,29.0,73.0,112,74,12,0.0,8856,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1918.2741851085796,985.9200000000001,0.0,61637.0,5,1,8,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,41091.333333333336,5,0,5,5_0 +11189,0.0,0.0,73.0,400,72,71,0.0,8857,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2631.5363386670247,0.0,0.0,16053.0,5,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16053.0,2,0,2_0,2_1 +11190,7.0,10.0,55.0,300,21,31,0.0,8859,0.0,0.0,120.0,0.0,2.0,4.0,2.0,4.0,2.5,2295.0263388784783,2080.0,0.0,38120.0,1,1,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,15248.0,2,0,2_0,2_1 +11191,0.0,0.0,67.0,111,74,30,0.0,886,0.0,0.0,0.0,670.0,0.0,4.0,0.0,1.0,1.0,2224.492636134323,0.0,0.0,32071.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,32071.0,5,0,5,5_0 +11192,6.0,10.0,56.0,400,62,50,0.0,8861,0.0,880.0,0.0,0.0,1.0,3.0,1.0,3.0,2.0,2475.657118765226,1830.4,0.0,26147.0,1,1,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13073.5,1,0,1_0,1_0 +11193,6.0,6.0,46.0,111,63,50,0.0,8862,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1734.6426202671153,0.0,0.0,42395.0,1,2,7,5.0,4,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,18432.608695652176,2,0,2_0,2_0 +11194,0.0,0.0,47.0,120,67,31,0.0,8864,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1857.52181875961,2893.28,0.0,57158.0,1,1,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22863.2,3,0,3_0,3_0 +11195,12.0,12.0,70.0,112,72,41,0.0,8866,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3988.3748713876867,0.0,0.0,24162.0,5,3,8,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24162.0,4,0,4_0,4_1 +11196,0.0,0.0,52.0,120,53,44,0.0,8867,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2753.3727066555603,3112.2,0.0,65368.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32684.0,5,0,5,5_1 +11197,1.0,1.0,43.0,111,67,50,1.0,8868,0.0,0.0,0.0,0.0,1.0,5.0,2.0,4.0,2.3,2006.8339161799565,0.0,11000.0,27738.0,1,3,8,7.0,4,1.0,1.0,0.0,0,0,0,1,0,1,1.0,0.0,12060.000000000002,1,0,1_1,1_0 +11198,18.0,18.0,46.0,112,33,20,0.0,8869,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2151.8473620554305,0.0,0.0,67363.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,32077.619047619046,5,0,5,5_1 +11199,4.0,4.0,61.0,111,86,60,0.0,887,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2781.488345367785,0.0,0.0,15445.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15445.0,2,0,2_0,2_0 +11200,0.0,10.0,30.0,111,55,20,2.0,8870,0.0,0.0,0.0,705.0,2.0,3.0,0.0,2.0,1.5,2417.8469397180634,4371.64,3400.0,29949.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19966.0,3,0,3_0,3_0 +11201,0.0,0.0,74.0,111,77,71,0.0,8871,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,3509.84934256802,0.0,0.0,14420.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14420.0,2,0,2_0,2_0 +11202,0.0,9.0,56.0,112,77,30,0.0,8872,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3226.217465700391,2597.4,0.0,54436.0,5,2,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,36290.666666666664,5,0,5,5_0 +11203,4.0,9.0,50.0,111,53,50,0.0,8873,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1657.7903247635743,0.0,0.0,46680.0,1,2,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,20295.652173913044,3,0,3_0,3_0 +11204,2.0,2.0,81.0,300,71,70,0.0,8874,0.0,80.0,0.0,266.0,0.0,3.0,0.0,1.0,1.0,3668.1316001961904,0.0,0.0,20515.0,5,3,0,0.0,1,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,20515.0,3,0,3_0,3_1 +11205,0.0,0.0,39.0,300,54,43,0.0,8875,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2201.592340259015,0.0,0.0,29832.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16573.333333333332,2,0,2_0,2_1 +11206,9.0,9.0,41.0,111,34,20,0.0,8876,0.0,0.0,50.0,0.0,1.0,5.0,0.0,1.0,1.0,2663.1726473994836,0.0,0.0,39170.0,1,2,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,39170.0,5,0,5,5_0 +11207,17.0,17.0,27.0,111,37,31,0.0,8878,0.0,120.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3850.861884286542,0.0,0.0,44292.0,1,2,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,29528.0,4,0,4_0,4_0 +11208,2.0,5.0,67.0,300,75,70,0.0,8879,0.0,100649.0,0.0,0.0,0.0,4.0,0.0,2.0,1.3,678.2301736664482,520.0,0.0,21868.0,5,1,0,0.0,5,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,16821.53846153846,2,0,2_0,2_1 +11209,11.0,11.0,43.0,111,52,50,0.0,888,0.0,0.0,36.0,0.0,2.0,3.0,1.0,3.0,2.0,2591.0137378667296,1040.0,0.0,48070.0,1,3,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,24035.0,4,0,4_0,4_0 +11210,9.0,13.0,41.0,111,52,42,0.0,8880,0.0,0.0,500.0,261.0,1.0,3.0,1.0,2.0,1.3,643.8884120680082,0.0,0.0,15863.0,1,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,12202.307692307691,1,0,1_1,1_0 +11211,0.0,0.0,44.0,111,46,31,0.0,8882,0.0,0.0,0.0,580.0,1.0,2.0,1.0,2.0,1.3,3914.506429846569,0.0,0.0,37660.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28969.23076923077,4,0,4_0,4_0 +11212,5.0,10.0,35.0,112,52,50,0.0,8883,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2521.2359568979637,0.0,0.0,45920.0,1,2,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21866.666666666664,3,0,3_0,3_1 +11213,8.0,8.0,57.0,111,37,31,0.0,8885,0.0,30.0,0.0,0.0,3.0,7.0,3.0,5.0,2.8,1922.8731740725955,0.0,0.0,126337.0,1,2,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,45120.357142857145,5,0,5,5_0 +11214,1.0,1.0,34.0,400,37,30,1.0,8886,0.0,350.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2876.8789971328697,5252.52,14900.0,53392.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,35594.666666666664,5,0,5,5_1 +11215,0.0,0.0,59.0,111,63,50,0.0,8888,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2721.649148759155,0.0,0.0,10920.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,10920.0,1,0,1_1,1_0 +11216,5.0,11.0,68.0,112,77,71,0.0,8889,0.0,99999.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2703.9388191021067,3570.3199999999997,0.0,36851.0,5,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,24567.333333333332,4,0,4_0,4_0 +11217,0.0,0.0,86.0,120,77,70,0.0,889,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2437.0459388400945,0.0,0.0,14118.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14118.0,2,0,2_0,2_1 +11218,1.0,1.0,40.0,111,63,43,0.0,8890,0.0,100.0,150.0,603.0,2.0,4.0,1.0,3.0,1.8,2169.0457370891722,2600.0,0.0,45710.0,1,3,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,25394.444444444445,4,0,4_1,4_0 +11219,11.0,11.0,32.0,111,46,31,0.0,8891,0.0,0.0,0.0,107.0,1.0,3.0,1.0,2.0,1.3,1019.5313089326872,0.0,0.0,24345.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,18726.923076923078,3,0,3_1,3_0 +11220,0.0,0.0,43.0,111,38,20,0.0,8893,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2148.3839393869043,2288.0,0.0,54870.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23856.521739130436,4,0,4_0,4_0 +11221,6.0,20.0,59.0,111,37,12,0.0,8895,0.0,10.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2047.3130310862653,0.0,0.0,186856.0,1,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,124570.66666666667,5,0,5,5_0 +11222,4.0,5.0,29.0,400,62,30,0.0,8896,0.0,0.0,0.0,337.0,2.0,3.0,1.0,3.0,1.8,2236.2619974875333,0.0,0.0,34510.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,19172.222222222223,3,0,3_0,3_0 +11223,7.0,10.0,45.0,221,46,41,0.0,8897,0.0,0.0,0.0,281.0,1.0,4.0,1.0,2.0,1.3,465.0136257679007,1565.2,0.0,16907.0,1,3,1,2.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,13005.384615384615,1,0,1_1,1_0 +11224,12.0,12.0,56.0,112,37,30,0.0,8898,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2613.696571795943,0.0,0.0,61026.0,1,2,9,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,61026.0,5,0,5,5_0 +11225,0.0,0.0,45.0,400,52,30,0.0,8900,0.0,0.0,0.0,381.0,1.0,5.0,1.0,2.0,1.3,500.1495506902923,1613.04,0.0,24975.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,19211.53846153846,3,0,3_1,3_1 +11226,6.0,6.0,81.0,111,77,70,0.0,8903,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2531.2039161779153,0.0,0.0,19307.0,5,1,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19307.0,3,0,3_0,3_0 +11227,2.0,13.0,49.0,111,21,41,0.0,8904,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4247.077378178044,0.0,0.0,8160.0,4,3,8,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,8160.0,1,0,1_1,1_0 +11228,5.0,10.0,45.0,112,54,31,0.0,8905,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2133.0788882008947,0.0,0.0,16754.0,4,1,8,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16754.0,2,0,2_0,2_0 +11229,0.0,0.0,65.0,111,77,60,0.0,8907,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1637.5274177096303,1144.0,0.0,26284.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17522.666666666668,2,0,2_0,2_0 +11230,11.0,13.0,20.0,111,56,41,0.0,8909,0.0,0.0,0.0,254.0,1.0,1.0,0.0,1.0,1.0,3136.8975870515374,3120.0,0.0,11757.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,11757.0,1,0,1_1,1_0 +11231,1.0,2.0,68.0,112,75,33,2.0,891,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1808.9060238483569,0.0,10350.0,43238.0,5,1,8,1.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,28825.333333333332,4,0,4_0,4_0 +11232,0.0,0.0,42.0,112,37,20,0.0,8911,0.0,0.0,99999.0,0.0,1.0,3.0,2.0,4.0,2.1,1712.4500072345982,3306.16,0.0,49241.0,1,2,10,1.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,23448.095238095237,3,0,3_0,3_0 +11233,10.0,10.0,54.0,111,33,41,0.0,8913,0.0,99999.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2697.5246956850215,0.0,0.0,82579.0,1,4,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,55052.666666666664,5,0,5,5_0 +11234,0.0,0.0,63.0,111,78,70,0.0,8914,0.0,0.0,0.0,102.0,0.0,3.0,0.0,1.0,1.0,2194.4700728026,0.0,0.0,17794.0,5,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,17794.0,2,0,2_1,2_0 +11235,0.0,0.0,42.0,111,54,43,0.0,8915,0.0,0.0,0.0,392.0,2.0,4.0,3.0,5.0,2.6,3237.6563337532666,1560.0,0.0,44735.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,17205.76923076923,2,0,2_0,2_0 +11236,3.0,6.0,48.0,112,56,50,0.0,8917,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2326.346238429067,0.0,0.0,20250.0,1,1,9,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,13500.0,1,0,1_0,1_0 +11237,0.0,0.0,34.0,111,31,10,0.0,892,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2737.835446830102,0.0,0.0,120898.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,120898.0,5,0,5,5_0 +11238,1.0,1.0,88.0,211,75,50,1.0,8920,0.0,160.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1812.3296888224486,0.0,22960.0,32910.0,5,1,3,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,32910.0,5,0,5,5_0 +11239,5.0,7.0,65.0,120,77,50,0.0,8921,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1762.6403222527285,0.0,0.0,16580.0,5,1,0,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16580.0,2,0,2_0,2_0 +11240,2.0,11.0,46.0,111,52,30,0.0,8922,0.0,0.0,100.0,0.0,2.0,4.0,3.0,4.0,2.1,702.509260862616,0.0,0.0,20483.0,4,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,9753.809523809523,1,0,1_1,1_0 +11241,4.0,20.0,58.0,112,,50,0.0,8924,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1583.5322265702118,3536.0,0.0,39697.0,1,1,8,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,26464.666666666668,4,0,4_0,4_0 +11242,0.0,0.0,38.0,111,55,43,0.0,8926,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,889.1906859467562,0.0,0.0,24694.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15433.75,2,0,2_1,2_0 +11243,31.0,31.0,51.0,120,62,50,0.0,8927,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,1.8,2281.2156291149126,1562.6000000000001,0.0,18075.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10041.666666666666,1,0,1_0,1_1 +11244,2.0,17.0,73.0,112,75,31,0.0,8929,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1704.8309955490613,2600.0,0.0,33073.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22048.666666666668,3,0,3_0,3_1 +11245,7.0,8.0,55.0,112,62,50,0.0,8931,0.0,199996.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2091.2777751074673,1560.0,0.0,42157.0,1,2,7,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,23420.555555555555,3,0,3_0,3_1 +11246,4.0,4.0,28.0,120,85,71,0.0,8932,0.0,0.0,0.0,0.0,0.0,4.0,2.0,4.0,1.9,1060.4148940752825,0.0,0.0,23053.0,6,3,0,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,12133.157894736843,1,0,1_1,1_0 +11247,0.0,17.0,87.0,111,75,71,0.0,8934,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4687.80279194797,0.0,0.0,43163.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,28775.333333333332,4,0,4_0,4_0 +11248,4.0,4.0,55.0,111,63,50,0.0,8935,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1466.7890277320219,2600.0,0.0,40310.0,1,2,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,26873.333333333332,4,0,4_0,4_0 +11249,0.0,0.0,40.0,111,43,33,0.0,8936,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,2643.6092633499493,0.0,0.0,44863.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,24923.888888888887,4,0,4_0,4_0 +11250,1.0,1.0,76.0,111,75,70,2.0,8937,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2860.780365687426,0.0,1400.0,20437.0,5,1,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20437.0,3,0,3_0,3_0 +11251,2.0,2.0,29.0,112,56,71,0.0,8938,0.0,500.0,0.0,940.0,1.0,3.0,0.0,1.0,1.0,2020.76146044515,0.0,0.0,19816.0,1,3,9,2.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,19816.0,3,0,3_0,3_0 +11252,0.0,0.0,30.0,111,85,50,0.0,894,0.0,0.0,0.0,126.0,0.0,2.0,1.0,3.0,1.8,6306.996201253368,1248.0,0.0,14014.0,4,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,7785.555555555556,1,0,1_1,1_0 +11253,0.0,21.0,54.0,111,31,12,0.0,8940,0.0,1200.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,2803.7546056236774,0.0,0.0,62426.0,1,2,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,0.0,3.0,24970.4,4,0,4_0,4_0 +11254,4.0,11.0,42.0,112,63,50,0.0,8941,0.0,0.0,765.0,0.0,2.0,7.0,2.0,4.0,2.1,3130.6089948908307,0.0,0.0,28495.0,1,2,9,1.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,13569.047619047618,1,0,1_0,1_0 +11255,4.0,4.0,25.0,111,47,20,0.0,8942,0.0,0.0,130.0,760.0,1.0,1.0,0.0,1.0,1.0,5121.401233976578,0.0,0.0,25164.0,1,3,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,1.0,0.0,25164.0,4,0,4_0,4_0 +11256,1.0,1.0,21.0,221,55,43,2.0,8943,0.0,0.0,200.0,255.0,2.0,2.0,0.0,2.0,1.5,2869.4093259949764,1093.04,20000.0,17642.0,1,3,1,2.0,3,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,11761.333333333334,1,0,1_0,1_0 +11257,5.0,12.0,57.0,111,62,71,0.0,8944,0.0,0.0,0.0,490.0,2.0,5.0,0.0,2.0,1.5,2118.2665231384963,2704.0,0.0,26113.0,1,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17408.666666666668,2,0,2_0,2_0 +11258,0.0,0.0,42.0,111,45,30,0.0,8946,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2169.240115590277,2860.0,0.0,45609.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21718.571428571428,3,0,3_0,3_0 +11259,2.0,2.0,43.0,300,46,42,0.0,8947,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,3030.797701517008,1664.0,0.0,43697.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,43697.0,5,0,5,5_1 +11260,2.0,10.0,67.0,112,77,70,0.0,8948,0.0,730.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1654.6408559246456,2601.04,0.0,23625.0,5,1,6,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15750.0,2,0,2_0,2_1 +11261,6.0,6.0,45.0,111,53,41,0.0,8951,0.0,0.0,500.0,0.0,2.0,5.0,3.0,5.0,2.8,1595.0968297771306,1726.92,0.0,65789.0,1,1,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,23496.07142857143,3,0,3_0,3_0 +11262,9.0,9.0,44.0,211,48,60,0.0,8952,0.0,0.0,0.0,553.0,1.0,3.0,0.0,1.0,1.0,1994.1463190556713,2080.0,0.0,24304.0,1,3,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24304.0,4,0,4_0,4_0 +11263,6.0,6.0,45.0,111,85,50,0.0,8954,0.0,0.0,0.0,250.0,2.0,4.0,2.0,4.0,2.5,4241.361715472048,1040.0,0.0,30624.0,7,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,12249.6,1,0,1_1,1_0 +11264,0.0,0.0,78.0,112,78,70,0.0,8955,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2560.912923712713,0.0,0.0,15110.0,5,1,10,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15110.0,2,0,2_0,2_0 +11265,2.0,2.0,57.0,112,43,33,0.0,8956,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2478.626954828388,973.4399999999999,0.0,33051.0,1,1,9,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,22034.0,3,0,3_0,3_1 +11266,2.0,14.0,90.0,111,78,70,2.0,8957,0.0,0.0,100.0,0.0,0.0,5.0,0.0,1.0,1.0,2933.0614843565727,0.0,1200.0,14874.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,14874.0,2,0,2_0,2_0 +11267,8.0,11.0,22.0,111,84,42,0.0,8958,0.0,450.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2343.2090732613615,0.0,0.0,14400.0,3,4,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,9600.0,1,0,1_0,1_0 +11268,5.0,5.0,55.0,112,34,20,0.0,896,0.0,105.0,99999.0,0.0,2.0,5.0,2.0,4.0,2.5,1869.3006641664083,0.0,0.0,71149.0,1,1,10,4.0,4,3.0,0.0,1.0,0,0,1,0,0,0,2.0,1.0,28459.6,4,0,4_0,4_0 +11269,0.0,0.0,34.0,111,46,20,0.0,8960,0.0,0.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,5147.187296463999,520.0,0.0,46442.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30961.333333333332,4,0,4_0,4_0 +11270,0.0,0.0,54.0,111,37,31,0.0,8962,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2019.008243868226,0.0,0.0,68318.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,45545.333333333336,5,0,5,5_0 +11271,3.0,3.0,65.0,111,35,30,0.0,8963,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2001.3408454680068,0.0,0.0,51670.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25835.0,4,0,4_0,4_0 +11272,0.0,15.0,22.0,111,43,44,0.0,8965,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4088.178193054353,0.0,0.0,13411.0,4,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,13411.0,1,0,1_1,1_0 +11273,2.0,2.0,40.0,111,47,31,0.0,8966,0.0,100.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3219.2698973724378,0.0,0.0,24520.0,4,2,9,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,24520.0,4,0,4_0,4_0 +11274,1.0,4.0,48.0,111,33,30,2.0,8967,0.0,50.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2093.3992865346145,2240.6800000000003,6500.0,61106.0,1,2,9,7.0,4,3.0,0.0,0.0,0,0,0,1,0,0,1.0,2.0,30553.0,4,0,4_0,4_0 +11275,10.0,10.0,51.0,111,62,50,0.0,8968,0.0,600.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2632.8220367549634,881.4,0.0,37907.0,1,4,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21059.444444444445,3,0,3_0,3_0 +11276,3.0,3.0,31.0,111,52,50,0.0,897,0.0,0.0,0.0,500.0,1.0,3.0,1.0,2.0,1.3,863.4122350935884,0.0,0.0,24595.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,18919.23076923077,3,0,3_1,3_0 +11277,5.0,8.0,67.0,111,72,44,0.0,8970,0.0,350.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1331.0234699742384,3054.48,0.0,69950.0,5,1,7,6.0,3,1.0,1.0,1.0,0,0,1,0,0,0,0.0,1.0,46633.333333333336,5,0,5,5_0 +11278,1.0,1.0,53.0,112,38,71,2.0,8974,0.0,0.0,99999.0,0.0,2.0,4.0,2.0,4.0,2.3,3262.889776778542,0.0,2000.0,44791.0,1,2,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,19474.34782608696,3,0,3_0,3_0 +11279,0.0,11.0,61.0,112,78,50,0.0,8976,0.0,0.0,99999.0,0.0,0.0,5.0,0.0,2.0,1.5,2008.7437102589154,0.0,0.0,34567.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,23044.666666666668,3,0,3_0,3_1 +11280,12.0,12.0,39.0,111,53,42,0.0,8979,0.0,0.0,84.0,0.0,2.0,4.0,1.0,3.0,1.8,2906.946589514008,2340.0,0.0,53257.0,1,2,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,29587.222222222223,4,0,4_0,4_0 +11281,0.0,0.0,26.0,111,42,41,0.0,898,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,3408.93212259199,3380.0,0.0,20761.0,1,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,20761.0,3,0,3_0,3_0 +11282,3.0,13.0,47.0,300,64,50,0.0,8980,0.0,50.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,1873.9924015249437,257.92,0.0,42788.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15281.428571428572,2,0,2_0,2_1 +11283,1.0,11.0,32.0,112,67,71,0.0,8981,0.0,0.0,0.0,530.0,2.0,5.0,0.0,2.0,1.5,1459.7642425052175,2600.52,0.0,30388.0,1,3,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20258.666666666668,3,0,3_0,3_1 +11284,0.0,0.0,44.0,300,69,50,0.0,8982,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1823.0451477089123,3640.0,0.0,63198.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,26332.5,4,0,4_0,4_1 +11285,0.0,0.0,67.0,120,71,71,1.0,8983,0.0,0.0,100.0,0.0,0.0,4.0,0.0,2.0,1.5,1981.5270738457364,3395.6,27700.0,19433.0,5,1,0,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,12955.333333333334,1,0,1_0,1_0 +11286,0.0,0.0,30.0,300,52,50,0.0,8984,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2289.177890857686,0.0,0.0,41033.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27355.333333333332,4,0,4_0,4_1 +11287,2.0,2.0,76.0,111,77,70,0.0,8985,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3193.4258134544307,0.0,0.0,17317.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,17317.0,2,0,2_0,2_0 +11288,0.0,20.0,22.0,300,56,60,0.0,8986,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2233.1423323857107,0.0,0.0,16370.0,1,1,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10913.333333333334,1,0,1_0,1_1 +11289,1.0,16.0,51.0,111,56,50,2.0,8987,0.0,50.0,0.0,249.0,1.0,1.0,1.0,2.0,1.3,1402.6214954102836,0.0,1000.0,27162.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,20893.846153846152,3,0,3_1,3_0 +11290,3.0,3.0,58.0,111,23,50,0.0,8988,0.0,0.0,0.0,0.0,3.0,6.0,1.0,3.0,2.0,1849.316632750472,0.0,0.0,114466.0,1,1,7,5.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,57233.0,5,0,5,5_0 +11291,4.0,4.0,41.0,111,37,31,0.0,899,0.0,0.0,400.0,0.0,2.0,6.0,3.0,5.0,2.4,1462.5057988836418,0.0,0.0,81150.0,4,2,6,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,33812.5,5,0,5,5_0 +11292,1.0,1.0,72.0,111,74,30,1.0,8991,0.0,350.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1909.0658074144571,0.0,17500.0,100751.0,5,1,4,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,67167.33333333333,5,0,5,5_0 +11293,3.0,7.0,27.0,111,68,31,0.0,8993,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,3611.564590233798,0.0,0.0,15029.0,4,3,10,8.0,2,2.0,1.0,0.0,0,0,0,0,1,1,2.0,0.0,11560.76923076923,1,0,1_1,1_0 +11294,5.0,5.0,43.0,111,63,71,0.0,8994,0.0,800.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2912.736572905524,0.0,0.0,43960.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,19113.04347826087,3,0,3_0,3_0 +11295,4.0,6.0,79.0,211,78,71,0.0,8995,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3185.5319397869052,0.0,0.0,21790.0,5,1,1,2.0,1,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,21790.0,3,0,3_0,3_0 +11296,1.0,1.0,45.0,111,42,43,1.0,8997,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1617.3205542684443,1040.0,22850.0,35320.0,1,3,7,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17660.0,2,0,2_0,2_0 +11297,11.0,11.0,53.0,111,38,12,0.0,8999,0.0,180.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2518.847231256962,0.0,0.0,157264.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,56165.71428571429,5,0,5,5_0 +11298,15.0,16.0,36.0,111,54,20,0.0,9,0.0,0.0,0.0,0.0,1.0,2.0,0.0,2.0,1.5,2838.8770949380814,0.0,0.0,31770.0,1,3,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,21180.0,3,0,3_0,3_0 +11299,0.0,0.0,48.0,221,22,41,0.0,90,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,488.03067373515734,1040.52,0.0,16750.0,1,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,12884.615384615385,1,0,1_1,1_0 +11300,5.0,7.0,79.0,211,78,71,0.0,900,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2236.8130268757486,0.0,0.0,23400.0,5,1,1,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,15600.0,2,0,2_0,2_0 +11301,2.0,2.0,77.0,221,75,50,0.0,9000,0.0,160.0,260.0,0.0,0.0,5.0,0.0,2.0,1.5,1951.4059815255387,0.0,0.0,46710.0,5,1,1,2.0,3,4.0,0.0,1.0,0,1,0,0,0,0,2.0,2.0,31140.0,4,0,4_0,4_0 +11302,2.0,12.0,82.0,111,74,12,0.0,9002,0.0,0.0,20.0,0.0,0.0,5.0,0.0,2.0,1.5,1899.709812673731,0.0,0.0,67586.0,5,1,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,45057.333333333336,5,0,5,5_0 +11303,0.0,1.0,74.0,111,77,71,0.0,9003,0.0,680.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2744.69409488344,0.0,0.0,21170.0,5,3,9,7.0,1,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,21170.0,3,0,3_0,3_0 +11304,14.0,40.0,29.0,111,31,30,0.0,9005,0.0,0.0,25.0,565.0,2.0,2.0,1.0,3.0,1.8,3002.384068422921,1560.0,0.0,11289.0,1,3,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,6271.666666666666,1,0,1_0,1_0 +11305,4.0,9.0,65.0,111,77,41,0.0,9007,0.0,290.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2151.572955743969,2242.24,0.0,21356.0,5,1,5,4.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,21356.0,3,0,3_0,3_0 +11306,0.0,0.0,83.0,300,75,41,0.0,9009,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2876.668726007134,0.0,0.0,49839.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,49839.0,5,0,5,5_1 +11307,1.0,8.0,66.0,221,78,70,2.0,901,0.0,240.0,180.0,0.0,0.0,3.0,0.0,2.0,1.5,1239.154835104334,0.0,3200.0,16656.0,5,1,1,3.0,3,3.0,0.0,0.0,0,1,0,0,0,0,2.0,1.0,11104.0,1,0,1_0,1_0 +11308,0.0,0.0,59.0,112,75,50,0.0,9010,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1802.0444654042537,1925.56,0.0,40852.0,5,1,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27234.666666666668,4,0,4_0,4_0 +11309,0.0,0.0,81.0,221,78,50,0.0,9013,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3584.9596438916974,0.0,0.0,36668.0,5,1,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,24445.333333333332,4,0,4_0,4_0 +11310,4.0,4.0,53.0,112,67,50,0.0,9014,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1865.7974495956366,520.0,0.0,22518.0,1,3,8,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,11259.0,1,0,1_0,1_1 +11311,7.0,7.0,64.0,111,74,20,0.0,9016,0.0,190.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2918.2509169732966,0.0,0.0,44312.0,5,1,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,44312.0,5,0,5,5_0 +11312,1.0,3.0,64.0,400,75,60,0.0,9018,0.0,0.0,0.0,0.0,0.0,7.0,0.0,1.0,1.0,2753.743591209582,0.0,0.0,10280.0,5,1,0,1.0,1,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,10280.0,1,0,1_0,1_0 +11313,0.0,0.0,64.0,112,74,50,0.0,902,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2665.2739635888056,0.0,0.0,32416.0,5,1,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16208.0,2,0,2_0,2_1 +11314,4.0,6.0,40.0,111,37,41,0.0,9022,0.0,550.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,3175.6984674986315,0.0,0.0,74287.0,1,2,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,49524.666666666664,5,0,5,5_0 +11315,0.0,0.0,60.0,111,77,70,0.0,9024,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2926.989407540005,0.0,0.0,6492.0,7,3,6,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,6492.0,1,0,1_1,1_0 +11316,4.0,14.0,46.0,111,43,33,0.0,9026,0.0,400.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,561.7095741360491,0.0,0.0,29200.0,1,2,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18250.0,2,0,2_0,2_0 +11317,0.0,0.0,40.0,120,37,0,0.0,9028,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,3235.7024728948168,2258.36,0.0,64602.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30762.85714285714,4,0,4_0,4_1 +11318,0.0,0.0,37.0,211,47,30,1.0,9029,0.0,0.0,0.0,611.0,2.0,4.0,2.0,4.0,2.1,3005.3957965180552,5393.96,28000.0,45325.0,1,3,4,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,21583.333333333332,3,0,3_0,3_0 +11319,2.0,12.0,31.0,111,64,50,0.0,9030,0.0,170.0,0.0,30.0,1.0,4.0,4.0,6.0,2.7,4193.891657379393,4160.0,0.0,53740.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,19903.7037037037,3,0,3_1,3_0 +11320,7.0,8.0,49.0,112,21,50,0.0,9031,0.0,300.0,0.0,0.0,3.0,7.0,2.0,4.0,2.5,2782.525236346257,0.0,0.0,77077.0,1,1,9,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,30830.8,4,0,4_0,4_1 +11321,2.0,2.0,46.0,111,31,20,0.0,9032,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1627.8052853832237,0.0,0.0,49528.0,1,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,21533.913043478264,3,0,3_0,3_0 +11322,13.0,13.0,47.0,111,56,50,0.0,9033,0.0,0.0,199998.0,152.0,2.0,3.0,2.0,3.0,1.8,672.8430555415504,0.0,0.0,18961.0,1,3,6,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,10533.888888888889,1,0,1_1,1_0 +11323,0.0,0.0,83.0,300,77,70,0.0,9034,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2656.008944054525,1774.2399999999998,0.0,24740.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24740.0,4,0,4_0,4_1 +11324,0.0,0.0,26.0,300,62,43,0.0,9035,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,3032.8738609775583,0.0,0.0,40962.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27308.0,4,0,4_0,4_1 +11325,0.0,0.0,77.0,111,72,41,0.0,9036,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1649.333092344256,2009.28,0.0,55460.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,36973.333333333336,5,0,5,5_0 +11326,0.0,0.0,33.0,111,34,20,0.0,9037,0.0,0.0,0.0,450.0,1.0,2.0,0.0,1.0,1.0,2437.359528632276,2548.0,0.0,41964.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,41964.0,5,0,5,5_0 +11327,11.0,11.0,27.0,111,62,71,0.0,904,0.0,720.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3697.8008482473906,2080.0,0.0,36784.0,1,3,6,5.0,3,2.0,1.0,1.0,0,0,1,0,0,0,0.0,2.0,24522.666666666668,4,0,4_0,4_0 +11328,11.0,11.0,92.0,300,71,70,0.0,9041,0.0,0.0,0.0,202.0,0.0,2.0,0.0,1.0,1.0,2034.0590361115812,0.0,0.0,14891.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,14891.0,2,0,2_1,2_1 +11329,4.0,4.0,37.0,400,38,31,0.0,9042,0.0,150.0,0.0,0.0,2.0,4.0,3.0,5.0,2.4,1812.0516532324775,3868.8,0.0,54762.0,1,1,0,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,22817.5,3,0,3_0,3_0 +11330,4.0,4.0,52.0,111,54,50,0.0,9043,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2690.0333753262303,2438.7999999999997,0.0,16231.0,1,1,8,6.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,16231.0,2,0,2_0,2_0 +11331,11.0,19.0,69.0,120,78,70,0.0,9044,0.0,400.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2141.695457306918,0.0,0.0,12235.0,5,2,0,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,12235.0,1,0,1_0,1_0 +11332,0.0,0.0,53.0,111,37,20,0.0,9046,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2149.2290249815965,0.0,0.0,101233.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,67488.66666666667,5,0,5,5_0 +11333,0.0,0.0,48.0,300,46,50,0.0,9047,0.0,0.0,0.0,107.0,1.0,3.0,1.0,2.0,1.5,333.8506961192314,3775.7200000000003,0.0,22111.0,1,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,14740.666666666666,2,0,2_1,2_1 +11334,2.0,2.0,50.0,400,85,60,0.0,9048,0.0,350.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2633.674164529467,0.0,0.0,9725.0,7,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,9725.0,1,0,1_0,1_1 +11335,4.0,7.0,38.0,111,52,50,0.0,9049,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,809.8865502987726,2639.0,0.0,19919.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,15322.307692307691,2,0,2_1,2_0 +11336,15.0,15.0,74.0,300,75,31,0.0,905,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1620.4504873007268,1439.36,0.0,68725.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,45816.666666666664,5,0,5,5_1 +11337,3.0,6.0,64.0,111,74,31,0.0,9050,0.0,300.0,120.0,0.0,2.0,5.0,1.0,3.0,2.0,3913.7610015365694,0.0,0.0,87050.0,5,1,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,43525.0,5,0,5,5_0 +11338,4.0,11.0,70.0,300,75,44,0.0,9051,0.0,0.0,150.0,0.0,0.0,4.0,0.0,1.0,1.0,1961.216786268247,2756.0,0.0,24413.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24413.0,4,0,4_0,4_1 +11339,7.0,17.0,34.0,211,65,50,0.0,9052,0.0,0.0,0.0,0.0,1.0,5.0,5.0,7.0,3.2,1343.9983442786397,1664.0,0.0,37578.0,4,3,1,3.0,4,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,11743.125,1,0,1_1,1_0 +11340,4.0,5.0,57.0,111,63,50,0.0,9053,0.0,150.0,40.0,458.0,1.0,3.0,0.0,1.0,1.0,3325.92342088102,0.0,0.0,10981.0,4,3,8,6.0,1,3.0,0.0,0.0,0,0,1,0,0,0,2.0,1.0,10981.0,1,0,1_0,1_0 +11341,9.0,11.0,46.0,300,67,71,0.0,9054,0.0,150.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,849.3553728370829,3900.0,0.0,22024.0,1,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,14682.666666666666,2,0,2_1,2_1 +11342,5.0,5.0,42.0,120,52,50,0.0,9055,0.0,0.0,250.0,0.0,2.0,4.0,2.0,4.0,2.1,3037.9050437186565,2080.0,0.0,31370.0,1,2,0,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,14938.095238095237,2,0,2_0,2_1 +11343,0.0,0.0,43.0,112,54,31,0.0,9057,0.0,0.0,0.0,0.0,1.0,5.0,3.0,4.0,2.1,664.689929949544,2497.56,0.0,53758.0,1,2,10,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25599.04761904762,4,0,4_0,4_1 +11344,2.0,2.0,35.0,221,45,31,0.0,9058,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2117.9604319307005,0.0,0.0,35032.0,1,2,3,4.0,4,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,16681.90476190476,2,0,2_0,2_0 +11345,0.0,0.0,69.0,120,75,70,0.0,9059,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1517.9124709608259,0.0,0.0,31160.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20773.333333333332,3,0,3_0,3_0 +11346,11.0,14.0,48.0,111,43,33,0.0,906,0.0,0.0,250.0,0.0,2.0,4.0,2.0,4.0,2.3,1682.6957947535989,2901.6,0.0,55188.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,23994.782608695656,4,0,4_0,4_0 +11347,6.0,13.0,30.0,112,21,50,0.0,9060,0.0,450.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2826.6986603520972,0.0,0.0,21633.0,1,2,8,0.0,1,4.0,0.0,0.0,1,0,0,0,0,0,2.0,2.0,21633.0,3,0,3_0,3_1 +11348,7.0,7.0,28.0,111,47,31,0.0,9061,0.0,0.0,0.0,395.0,1.0,1.0,0.0,1.0,1.0,3967.845679200329,3744.0,0.0,20322.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,20322.0,3,0,3_0,3_0 +11349,7.0,7.0,76.0,111,77,50,0.0,9063,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1832.9436620919294,0.0,0.0,68888.0,5,1,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,34444.0,5,0,5,5_0 +11350,2.0,17.0,65.0,300,77,70,0.0,9065,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2636.1542143294832,0.0,0.0,16950.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16950.0,2,0,2_0,2_1 +11351,1.0,4.0,80.0,112,71,71,2.0,9066,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1809.5651238698642,0.0,7000.0,33800.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,22533.333333333332,3,0,3_0,3_0 +11352,4.0,4.0,67.0,400,78,50,0.0,9067,0.0,250.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1620.7276294191252,867.36,0.0,20559.0,5,1,0,1.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,13706.0,1,0,1_0,1_0 +11353,1.0,11.0,40.0,221,37,50,0.0,9068,0.0,0.0,99999.0,0.0,3.0,4.0,2.0,4.0,2.5,4970.275668584371,1040.0,0.0,61430.0,1,3,1,2.0,4,2.0,1.0,0.0,0,1,0,0,0,0,1.0,1.0,24572.0,4,0,4_0,4_0 +11354,15.0,15.0,67.0,111,72,30,0.0,9069,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2337.6080954883364,0.0,0.0,27229.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,27229.0,4,0,4_0,4_0 +11355,0.0,0.0,32.0,111,48,43,0.0,907,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3159.781269898921,0.0,0.0,48543.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23115.714285714286,3,0,3_0,3_0 +11356,0.0,8.0,65.0,112,74,30,0.0,9070,0.0,160.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2673.8968345597928,0.0,0.0,53756.0,5,1,8,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,53756.0,5,0,5,5_0 +11357,1.0,5.0,61.0,111,13,50,2.0,9071,0.0,400.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1563.158035379116,2485.6,7900.0,98925.0,1,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,65950.0,5,0,5,5_0 +11358,5.0,17.0,69.0,111,78,70,0.0,9073,0.0,350.0,20.0,244.0,0.0,2.0,0.0,1.0,1.0,2236.944006483913,0.0,0.0,21998.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,21998.0,3,0,3_0,3_0 +11359,5.0,8.0,39.0,111,63,71,0.0,9074,0.0,3541.0,0.0,348.0,1.0,2.0,2.0,4.0,2.1,2087.6389678432847,0.0,0.0,37358.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,17789.52380952381,2,0,2_1,2_0 +11360,9.0,9.0,50.0,112,65,50,0.0,9075,0.0,0.0,99999.0,466.0,2.0,4.0,2.0,3.0,2.0,590.5237987841374,1721.2,0.0,39871.0,1,3,9,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19935.5,3,0,3_0,3_1 +11361,6.0,6.0,40.0,111,43,44,0.0,9076,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3526.9478815552598,2340.0,0.0,19920.0,1,2,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19920.0,3,0,3_0,3_0 +11362,8.0,11.0,62.0,111,42,30,0.0,9077,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2101.9674983625846,1300.0,0.0,29023.0,1,3,7,5.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,29023.0,4,0,4_0,4_0 +11363,4.0,4.0,51.0,112,68,50,0.0,9078,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,1469.9494214872207,3120.0,0.0,33014.0,1,1,8,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,16507.0,2,0,2_0,2_0 +11364,2.0,5.0,51.0,111,48,50,0.0,908,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1615.367211972336,0.0,0.0,49843.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19937.2,3,0,3_0,3_0 +11365,0.0,0.0,46.0,300,45,31,0.0,9080,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1733.4219055340498,4940.0,0.0,64944.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,28236.521739130436,4,0,4_0,4_0 +11366,6.0,13.0,48.0,112,62,44,0.0,9083,0.0,100.0,210.0,0.0,1.0,6.0,2.0,3.0,1.6,2668.7149883862603,0.0,0.0,19449.0,1,1,6,0.0,2,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,12155.625,1,0,1_0,1_1 +11367,10.0,38.0,46.0,400,65,50,0.0,9085,0.0,0.0,0.0,0.0,3.0,4.0,3.0,5.0,3.0,3927.3774412824027,7945.6,0.0,90430.0,1,1,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,30143.333333333332,4,0,4_0,4_0 +11368,8.0,9.0,37.0,111,54,20,0.0,9088,0.0,460.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,822.0071246197693,0.0,0.0,17420.0,4,3,9,7.0,2,2.0,0.0,1.0,0,0,0,1,0,1,0.0,2.0,10887.5,1,0,1_1,1_0 +11369,6.0,6.0,77.0,112,77,50,0.0,909,0.0,0.0,0.0,320.0,1.0,3.0,1.0,2.0,1.5,2331.898997749001,0.0,0.0,47860.0,5,3,10,3.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,31906.666666666668,5,0,5,5_0 +11370,0.0,21.0,40.0,111,64,43,0.0,9093,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.1,789.0532857837226,780.0,0.0,35326.0,1,3,9,7.0,4,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,16821.90476190476,2,0,2_0,2_0 +11371,1.0,2.0,68.0,111,77,60,1.0,9094,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1730.7112139998073,1872.0,10000.0,54039.0,5,1,9,7.0,1,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,54039.0,5,0,5,5_0 +11372,3.0,18.0,44.0,211,63,50,0.0,9095,0.0,0.0,300.0,0.0,1.0,2.0,0.0,1.0,1.0,2177.1958120127438,0.0,0.0,8890.0,4,3,1,3.0,1,1.0,1.0,1.0,0,1,0,0,0,1,1.0,0.0,8890.0,1,0,1_1,1_0 +11373,0.0,0.0,49.0,111,63,71,0.0,9096,0.0,0.0,0.0,0.0,1.0,6.0,3.0,5.0,2.4,1702.7587612506352,0.0,0.0,29926.0,1,3,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12469.166666666668,1,0,1_1,1_0 +11374,2.0,2.0,57.0,111,21,31,0.0,9097,0.0,0.0,35.0,0.0,3.0,8.0,2.0,4.0,2.5,3160.4962535570994,0.0,0.0,35200.0,1,1,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,14080.0,2,0,2_0,2_0 +11375,5.0,5.0,54.0,111,37,20,0.0,9098,0.0,0.0,170.0,0.0,2.0,6.0,1.0,3.0,2.0,1063.1788937234217,4066.4,0.0,81353.0,1,1,7,5.0,4,2.0,0.0,1.0,0,0,1,0,0,0,2.0,0.0,40676.5,5,0,5,5_0 +11376,0.0,0.0,75.0,111,78,70,0.0,9099,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3869.331163323183,0.0,0.0,17495.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17495.0,2,0,2_0,2_0 +11377,1.0,18.0,70.0,111,72,50,2.0,910,0.0,700.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2018.2364694682515,0.0,800.0,31727.0,5,4,6,5.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,21151.333333333332,3,0,3_0,3_0 +11378,3.0,3.0,64.0,221,77,71,0.0,9101,0.0,270.0,350.0,0.0,1.0,3.0,0.0,2.0,1.5,2133.2852624581374,0.0,0.0,22180.0,5,1,1,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,14786.666666666666,2,0,2_0,2_0 +11379,0.0,0.0,43.0,111,42,20,0.0,9102,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.3,788.6238471064179,0.0,0.0,30050.0,1,2,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23115.384615384613,3,0,3_0,3_0 +11380,0.0,15.0,34.0,300,46,43,0.0,9103,0.0,200.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2632.5838743505283,2862.6000000000004,0.0,35596.0,1,4,0,0.0,4,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,19775.555555555555,3,0,3_0,3_1 +11381,4.0,4.0,48.0,112,33,30,0.0,9105,0.0,0.0,40.0,0.0,2.0,6.0,2.0,4.0,2.5,2288.9034291407,6256.120000000001,0.0,72000.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,28800.0,4,0,4_0,4_1 +11382,11.0,11.0,44.0,111,42,30,0.0,9109,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,529.8050706748573,1040.0,0.0,37193.0,1,2,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,18596.5,2,0,2_1,2_0 +11383,1.0,1.0,84.0,112,74,50,2.0,911,0.0,40.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2655.405135074851,2080.0,16300.0,58095.0,5,1,9,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,58095.0,5,0,5,5_0 +11384,0.0,3.0,29.0,120,53,50,2.0,9110,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,2.0,2396.4822294089176,3120.0,5000.0,30561.0,1,3,0,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,15280.5,2,0,2_0,2_0 +11385,5.0,10.0,82.0,111,72,41,0.0,9111,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2073.2908547322368,0.0,0.0,39603.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,26402.0,4,0,4_0,4_0 +11386,0.0,0.0,24.0,111,54,31,0.0,9112,0.0,0.0,0.0,82.0,4.0,5.0,2.0,6.0,3.3,1279.5339678567823,1560.0,0.0,70891.0,1,3,9,7.0,5,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,21482.121212121212,3,0,3_1,3_0 +11387,6.0,9.0,57.0,112,68,70,0.0,9113,0.0,50.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2332.0650126862038,5720.0,0.0,23451.0,1,2,6,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,11725.5,1,0,1_0,1_1 +11388,0.0,4.0,61.0,111,54,60,0.0,9114,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1899.9523904368539,0.0,0.0,28783.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,28783.0,4,0,4_0,4_0 +11389,0.0,0.0,30.0,112,48,71,2.0,9115,0.0,608.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2948.609037758117,1560.0,14000.0,35711.0,1,3,9,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,19839.444444444445,3,0,3_0,3_1 +11390,2.0,17.0,39.0,111,43,30,0.0,9116,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1625.9068063025486,0.0,0.0,59900.0,1,2,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,24958.333333333336,4,0,4_0,4_0 +11391,2.0,2.0,32.0,112,62,50,0.0,9118,0.0,0.0,0.0,410.0,2.0,3.0,2.0,4.0,2.1,533.6927211888508,2862.08,0.0,46652.0,1,3,9,3.0,4,3.0,0.0,0.0,0,1,0,0,0,0,1.0,2.0,22215.238095238095,3,0,3_0,3_0 +11392,0.0,0.0,37.0,111,37,12,0.0,9119,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2943.073912160827,3045.64,0.0,72909.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,40505.0,5,0,5,5_0 +11393,4.0,4.0,82.0,211,78,50,0.0,912,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1276.287142745008,0.0,0.0,36731.0,5,1,3,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,24487.333333333332,4,0,4_0,4_0 +11394,5.0,10.0,58.0,300,56,60,0.0,9122,0.0,0.0,0.0,335.0,1.0,2.0,0.0,1.0,1.0,3275.66550204571,0.0,0.0,18976.0,1,3,0,1.0,1,2.0,1.0,0.0,0,1,0,0,0,0,0.0,2.0,18976.0,3,0,3_0,3_0 +11395,5.0,7.0,82.0,111,78,71,0.0,9123,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2538.923746061727,6827.6,0.0,30014.0,5,1,8,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,20009.333333333332,3,0,3_0,3_0 +11396,0.0,0.0,29.0,111,85,43,0.0,9124,0.0,0.0,0.0,37.0,0.0,4.0,2.0,3.0,1.8,1046.504030866859,1086.8000000000002,0.0,23768.0,8,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13204.444444444443,1,0,1_1,1_0 +11397,5.0,5.0,31.0,112,43,50,0.0,9125,0.0,99999.0,20.0,398.0,1.0,3.0,1.0,2.0,1.3,1769.837409036667,1040.0,0.0,23936.0,1,3,9,3.0,2,2.0,1.0,1.0,0,1,0,0,0,1,1.0,1.0,18412.30769230769,2,0,2_1,2_0 +11398,3.0,4.0,68.0,300,75,50,0.0,9126,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1998.1970940829506,1456.0,0.0,17409.0,5,1,0,0.0,1,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,17409.0,2,0,2_0,2_1 +11399,9.0,9.0,51.0,400,85,50,0.0,9127,0.0,0.0,0.0,0.0,1.0,5.0,4.0,5.0,2.8,638.444263895821,1527.76,0.0,52551.0,7,2,0,0.0,2,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18768.214285714286,3,0,3_0,3_1 +11400,1.0,1.0,31.0,112,85,71,1.0,9130,0.0,100.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,5510.535384741245,0.0,17900.0,24866.0,7,2,8,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,10360.833333333334,1,0,1_1,1_0 +11401,0.0,0.0,32.0,112,13,30,0.0,9132,0.0,0.0,0.0,710.0,2.0,3.0,0.0,2.0,1.5,1815.227731428948,6221.799999999999,0.0,47662.0,1,3,8,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31774.666666666668,5,0,5,5_0 +11402,0.0,0.0,64.0,111,75,71,0.0,9134,0.0,0.0,0.0,0.0,1.0,4.0,1.0,3.0,2.0,2865.550698400157,0.0,0.0,28770.0,5,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,14385.0,2,0,2_0,2_0 +11403,9.0,9.0,70.0,111,74,20,0.0,9135,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1695.9488806085142,2548.0,0.0,29746.0,5,1,5,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,29746.0,4,0,4_0,4_0 +11404,0.0,0.0,76.0,112,78,70,0.0,9136,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2213.7473768694704,1153.36,0.0,14539.0,5,1,7,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,14539.0,2,0,2_0,2_1 +11405,0.0,0.0,82.0,120,72,71,0.0,9137,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2865.727924215934,2080.0,0.0,14190.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,9460.0,1,0,1_0,1_1 +11406,4.0,4.0,57.0,112,47,50,0.0,9138,0.0,0.0,250.0,0.0,1.0,5.0,0.0,2.0,1.5,1743.3556540090449,6188.0,0.0,47793.0,1,1,6,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,31862.0,5,0,5,5_1 +11407,0.0,0.0,56.0,111,37,31,0.0,9139,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,1826.1135425019265,1895.4,0.0,47725.0,1,2,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,47725.0,5,0,5,5_0 +11408,0.0,0.0,79.0,111,78,50,0.0,914,0.0,0.0,0.0,359.0,0.0,2.0,0.0,1.0,1.0,2637.170051039696,2756.0,0.0,26749.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,26749.0,4,0,4_0,4_0 +11409,4.0,11.0,34.0,111,42,60,0.0,9142,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2945.490582834682,3848.0,0.0,20467.0,1,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,20467.0,3,0,3_0,3_0 +11410,8.0,8.0,75.0,111,78,71,0.0,9144,0.0,199998.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1300.827052825232,0.0,0.0,36860.0,5,1,4,3.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,24573.333333333332,4,0,4_0,4_0 +11411,7.0,11.0,37.0,112,47,71,0.0,9145,0.0,350.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2733.6397488598313,2574.0,0.0,46380.0,1,2,8,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,22085.714285714286,3,0,3_0,3_1 +11412,0.0,0.0,45.0,111,34,20,0.0,9146,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.8,588.8953456858671,1560.0,0.0,62900.0,1,2,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,34944.444444444445,5,0,5,5_0 +11413,15.0,17.0,68.0,112,77,50,0.0,9148,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1191.6577674969021,0.0,0.0,32590.0,5,1,10,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,32590.0,5,0,5,5_0 +11414,8.0,51.0,51.0,300,62,50,0.0,9149,0.0,0.0,0.0,595.0,2.0,6.0,1.0,4.0,2.3,3670.93744823912,0.0,0.0,20030.0,1,3,0,1.0,5,5.0,0.0,0.0,0,1,0,0,0,0,2.0,3.0,8708.695652173914,1,0,1_0,1_0 +11415,1.0,3.0,46.0,111,46,42,2.0,915,0.0,150.0,0.0,570.0,2.0,3.0,2.0,3.0,2.0,662.4046289344425,5147.48,11000.0,44685.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,22342.5,3,0,3_1,3_0 +11416,4.0,12.0,57.0,221,56,71,0.0,9151,0.0,0.0,100.0,0.0,2.0,5.0,0.0,2.0,1.5,1668.3710725983105,0.0,0.0,2920.0,1,1,3,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,1946.6666666666667,1,0,1_0,1_0 +11417,8.0,11.0,73.0,120,78,50,0.0,9152,0.0,0.0,120.0,0.0,0.0,5.0,0.0,2.0,1.5,1723.81942562071,1662.44,0.0,28628.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,19085.333333333332,3,0,3_0,3_1 +11418,4.0,21.0,42.0,112,64,50,0.0,9153,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2800.397967397656,0.0,0.0,41370.0,1,4,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,27580.0,4,0,4_0,4_0 +11419,0.0,0.0,77.0,211,78,70,0.0,9154,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2952.4146173282556,0.0,0.0,36516.0,5,1,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18258.0,2,0,2_0,2_0 +11420,4.0,4.0,39.0,111,55,42,0.0,9155,0.0,99999.0,0.0,0.0,1.0,3.0,3.0,4.0,2.1,1001.2972508657331,0.0,0.0,22654.0,4,2,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,10787.619047619048,1,0,1_1,1_0 +11421,6.0,6.0,18.0,111,84,41,0.0,9156,0.0,0.0,310.0,391.0,0.0,1.0,0.0,1.0,1.0,4062.7792717748953,0.0,0.0,29941.0,3,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,29941.0,4,0,4_0,4_0 +11422,5.0,7.0,38.0,111,43,20,0.0,9157,0.0,0.0,0.0,275.0,1.0,2.0,0.0,1.0,1.0,3163.34503023273,0.0,0.0,14911.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,14911.0,2,0,2_1,2_0 +11423,1.0,1.0,52.0,111,31,10,0.0,9159,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,2438.584078317534,0.0,0.0,59060.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,22715.384615384613,3,0,3_0,3_0 +11424,10.0,25.0,36.0,112,33,0,0.0,916,0.0,0.0,230.0,0.0,1.0,6.0,4.0,6.0,2.7,1574.4280739751118,1561.56,0.0,48916.0,1,2,7,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,18117.037037037036,2,0,2_0,2_1 +11425,15.0,25.0,27.0,111,34,10,0.0,9160,0.0,0.0,0.0,418.0,1.0,2.0,0.0,1.0,1.0,3440.2709480940407,0.0,0.0,22083.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,22083.0,3,0,3_1,3_0 +11426,0.0,0.0,65.0,112,78,60,0.0,9164,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2652.698380435024,0.0,0.0,30530.0,5,1,8,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30530.0,4,0,4_0,4_0 +11427,13.0,21.0,38.0,211,85,71,0.0,9166,0.0,0.0,0.0,0.0,1.0,5.0,4.0,5.0,2.4,396.0005035857901,1560.0,0.0,26807.0,6,3,2,2.0,2,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,11169.583333333334,1,0,1_1,1_0 +11428,6.0,8.0,26.0,111,33,12,0.0,9167,0.0,0.0,0.0,463.0,1.0,2.0,0.0,1.0,1.0,4078.6557772753204,0.0,0.0,29172.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,29172.0,4,0,4_0,4_0 +11429,10.0,10.0,34.0,111,33,20,0.0,9168,0.0,0.0,0.0,0.0,1.0,6.0,4.0,6.0,2.7,1296.2890567401655,0.0,0.0,49282.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,18252.59259259259,2,0,2_1,2_0 +11430,0.0,0.0,76.0,300,75,71,0.0,9169,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2429.193502559811,2340.0,0.0,31642.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21094.666666666668,3,0,3_0,3_1 +11431,3.0,3.0,67.0,221,31,10,0.0,917,0.0,0.0,50.0,0.0,1.0,7.0,0.0,2.0,1.5,1737.3046299262935,3640.0,0.0,113325.0,1,1,1,2.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,75550.0,5,0,5,5_0 +11432,0.0,0.0,65.0,111,74,30,0.0,9171,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1650.8502001979243,6988.799999999999,0.0,34337.0,5,1,6,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,22891.333333333332,3,0,3_0,3_0 +11433,5.0,5.0,68.0,111,77,70,0.0,9173,0.0,80.0,0.0,422.0,0.0,2.0,0.0,1.0,1.0,3491.785128487363,2324.4,0.0,15630.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,15630.0,2,0,2_0,2_0 +11434,1.0,11.0,73.0,300,77,50,0.0,9174,0.0,0.0,220.0,0.0,0.0,2.0,0.0,1.0,1.0,3073.8351033358135,0.0,0.0,16835.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,16835.0,2,0,2_0,2_1 +11435,5.0,6.0,23.0,111,55,41,0.0,9176,0.0,300.0,220.0,33.0,1.0,1.0,0.0,1.0,1.0,2968.9064132878516,0.0,0.0,8860.0,3,3,7,5.0,1,2.0,0.0,1.0,0,0,1,0,0,1,1.0,1.0,8860.0,1,0,1_1,1_0 +11436,0.0,0.0,62.0,112,78,50,0.0,9177,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1806.1826352742,3120.0,0.0,34531.0,5,1,8,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23020.666666666668,3,0,3_0,3_0 +11437,10.0,10.0,45.0,111,47,31,0.0,9179,0.0,0.0,0.0,0.0,1.0,6.0,4.0,6.0,2.9,1662.717032617474,2579.2000000000003,0.0,69804.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24070.344827586207,4,0,4_0,4_0 +11438,0.0,0.0,69.0,300,75,33,0.0,918,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1917.7441324444676,0.0,0.0,76453.0,5,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,50968.666666666664,5,0,5,5_1 +11439,0.0,0.0,45.0,111,62,50,0.0,9180,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,2000.9292624130924,4680.0,0.0,44845.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17248.076923076922,2,0,2_0,2_0 +11440,3.0,3.0,51.0,111,38,10,0.0,9182,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.5,2414.5459860888673,0.0,0.0,85607.0,1,1,8,6.0,4,3.0,0.0,1.0,0,0,1,0,0,0,0.0,3.0,34242.8,5,0,5,5_0 +11441,15.0,15.0,78.0,120,86,71,0.0,9183,0.0,1020.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2240.4047920721987,0.0,0.0,15163.0,6,1,0,0.0,1,3.0,0.0,0.0,1,0,0,0,0,1,1.0,2.0,15163.0,2,0,2_1,2_1 +11442,0.0,0.0,39.0,111,38,20,0.0,9184,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,6574.342174116548,4363.32,0.0,28666.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28666.0,4,0,4_0,4_0 +11443,4.0,13.0,50.0,111,37,10,0.0,9186,0.0,170.0,0.0,0.0,1.0,5.0,2.0,3.0,1.8,681.6840787226389,0.0,0.0,153394.0,1,2,10,8.0,2,3.0,0.0,1.0,0,0,0,0,1,0,1.0,2.0,85218.88888888889,5,0,5,5_0 +11444,0.0,0.0,34.0,111,23,60,0.0,9188,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,3481.8832385137284,0.0,0.0,40930.0,1,4,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17795.652173913044,2,0,2_0,2_0 +11445,19.0,19.0,56.0,111,63,71,0.0,919,0.0,0.0,0.0,0.0,3.0,3.0,2.0,4.0,2.3,4138.506405249398,950.5600000000001,0.0,40070.0,4,2,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,17421.739130434784,2,0,2_0,2_0 +11446,10.0,14.0,25.0,111,46,0,0.0,9190,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3912.261484100652,0.0,0.0,40440.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,40440.0,5,0,5,5_0 +11447,0.0,9.0,35.0,111,33,20,0.0,9192,0.0,1468.0,0.0,980.0,1.0,2.0,0.0,1.0,1.0,6618.43492790183,0.0,0.0,47844.0,1,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,47844.0,5,0,5,5_0 +11448,5.0,7.0,48.0,112,67,50,0.0,9193,0.0,600.0,0.0,0.0,2.0,7.0,3.0,5.0,3.0,2696.100493064476,2860.0,0.0,40351.0,1,2,7,0.0,4,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,13450.333333333334,1,0,1_0,1_1 +11449,0.0,1.0,40.0,111,85,70,2.0,9194,0.0,0.0,700.0,3.0,2.0,4.0,3.0,5.0,2.8,1623.5609775813173,0.0,18700.0,20999.0,6,3,6,4.0,4,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,7499.642857142858,1,0,1_1,1_0 +11450,1.0,3.0,54.0,112,31,33,0.0,92,0.0,100.0,0.0,0.0,1.0,9.0,2.0,3.0,2.0,1624.9821242257512,0.0,0.0,31980.0,1,1,6,0.0,2,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15990.0,2,0,2_0,2_1 +11451,5.0,7.0,51.0,111,43,33,0.0,920,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1534.7945075204843,0.0,0.0,179986.0,1,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,119990.66666666667,5,0,5,5_0 +11452,3.0,17.0,19.0,111,84,41,0.0,9200,0.0,99999.0,0.0,580.0,0.0,2.0,0.0,2.0,1.5,2585.3731524227405,0.0,0.0,3964.0,3,3,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,2642.6666666666665,1,0,1_0,1_0 +11453,1.0,15.0,50.0,112,65,50,2.0,9202,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2431.03269049338,1300.0,1400.0,32941.0,1,3,8,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16470.5,2,0,2_0,2_0 +11454,6.0,6.0,26.0,111,45,20,0.0,9203,0.0,0.0,0.0,200.0,1.0,3.0,0.0,1.0,1.0,3381.207039141681,0.0,0.0,22345.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22345.0,3,0,3_0,3_0 +11455,1.0,6.0,26.0,112,48,31,0.0,9204,0.0,0.0,100.0,0.0,2.0,5.0,1.0,3.0,1.8,4258.473981297653,3432.0,0.0,50680.0,1,3,8,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,1.0,0.0,28155.555555555555,4,0,4_0,4_1 +11456,1.0,6.0,42.0,111,31,20,0.0,9205,0.0,200.0,40.0,0.0,2.0,5.0,3.0,5.0,2.4,3368.923467374082,0.0,0.0,81482.0,1,2,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,33950.833333333336,5,0,5,5_0 +11457,8.0,8.0,23.0,111,55,30,0.0,9206,0.0,174.0,0.0,461.0,2.0,3.0,0.0,2.0,1.5,3574.930304695338,1560.0,0.0,27202.0,1,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,18134.666666666668,2,0,2_0,2_0 +11458,0.0,17.0,62.0,112,72,50,0.0,9207,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2011.2620503454536,3822.0,0.0,20770.0,5,1,10,2.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,13846.666666666666,1,0,1_0,1_0 +11459,0.0,0.0,87.0,111,86,71,0.0,9208,0.0,0.0,0.0,0.0,0.0,4.0,1.0,3.0,2.0,2526.0054869831024,0.0,0.0,37880.0,5,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18940.0,3,0,3_0,3_0 +11460,0.0,14.0,56.0,111,62,50,0.0,9210,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,1648.594809287208,0.0,0.0,45341.0,1,1,10,8.0,4,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,18136.4,2,0,2_0,2_0 +11461,5.0,5.0,35.0,120,68,41,0.0,9211,0.0,0.0,0.0,540.0,1.0,4.0,2.0,3.0,1.6,2175.4286796413353,0.0,0.0,30350.0,1,3,0,1.0,2,3.0,0.0,0.0,0,1,0,0,0,0,0.0,3.0,18968.75,3,0,3_0,3_0 +11462,7.0,18.0,25.0,112,85,71,0.0,9212,0.0,0.0,160.0,217.0,0.0,3.0,1.0,2.0,1.3,4256.397926190999,0.0,0.0,13057.0,6,3,8,3.0,2,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,10043.846153846154,1,0,1_1,1_0 +11463,6.0,10.0,55.0,112,65,50,0.0,9213,0.0,30.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1741.6393926911471,0.0,0.0,45186.0,1,3,10,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,30124.0,4,0,4_0,4_0 +11464,0.0,0.0,46.0,111,62,71,0.0,9214,0.0,0.0,0.0,133.0,2.0,4.0,0.0,2.0,1.5,2193.9988808868634,0.0,0.0,26284.0,4,3,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17522.666666666668,2,0,2_1,2_0 +11465,0.0,0.0,47.0,112,33,10,0.0,9216,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.3,2167.3345036013807,6141.2,0.0,83370.0,1,1,9,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,36247.82608695653,5,0,5,5_0 +11466,1.0,12.0,36.0,111,31,30,2.0,9217,0.0,0.0,0.0,1550.0,1.0,2.0,0.0,1.0,1.0,6461.586229547169,2600.0,3800.0,34081.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,34081.0,5,0,5,5_0 +11467,3.0,8.0,50.0,111,63,50,0.0,9218,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.5,2088.647882429115,5980.0,0.0,42220.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16888.0,2,0,2_0,2_0 +11468,0.0,0.0,46.0,212,52,50,0.0,9219,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,2241.482341410583,1776.3199999999997,0.0,27659.0,1,2,2,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13829.5,1,0,1_0,1_1 +11469,7.0,15.0,82.0,111,77,60,0.0,922,0.0,0.0,0.0,894.0,0.0,4.0,0.0,1.0,1.0,2996.8389850583744,0.0,0.0,24306.0,5,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,24306.0,4,0,4_0,4_0 +11470,0.0,0.0,44.0,111,52,71,0.0,9220,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,1.8,652.1543934351954,1560.52,0.0,28010.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15561.111111111111,2,0,2_1,2_0 +11471,0.0,0.0,42.0,400,13,31,0.0,9223,0.0,0.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,1635.4527475324296,2118.48,0.0,43634.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21817.0,3,0,3_0,3_1 +11472,14.0,14.0,33.0,111,63,50,0.0,9225,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,4419.620186753658,6110.0,0.0,51158.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,34105.333333333336,5,0,5,5_0 +11473,0.0,0.0,42.0,221,48,50,0.0,9227,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2830.7365808815116,6136.0,0.0,54843.0,1,2,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,23844.782608695656,4,0,4_0,4_0 +11474,3.0,18.0,23.0,221,85,70,0.0,9229,0.0,0.0,0.0,0.0,0.0,4.0,3.0,4.0,1.9,929.996741845156,0.0,0.0,19000.0,6,3,1,2.0,2,2.0,1.0,0.0,0,1,0,0,0,1,2.0,0.0,10000.0,1,0,1_1,1_0 +11475,0.0,0.0,49.0,221,54,31,0.0,923,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,3005.981908585672,2392.0,0.0,68389.0,1,1,1,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,45592.666666666664,5,0,5,5_0 +11476,0.0,0.0,55.0,112,34,20,0.0,9230,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2236.4449088391157,2680.6,0.0,131259.0,1,2,10,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,72921.66666666667,5,0,5,5_0 +11477,1.0,2.0,84.0,111,86,12,2.0,9231,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2182.7121120225233,1323.92,13000.0,68770.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,45846.666666666664,5,0,5,5_0 +11478,0.0,0.0,53.0,112,62,50,0.0,9233,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1966.2304284773643,4264.0,0.0,49299.0,1,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,32866.0,5,0,5,5_1 +11479,14.0,14.0,33.0,111,52,41,0.0,9234,0.0,0.0,0.0,480.0,2.0,2.0,1.0,3.0,1.8,2339.837599576609,2080.0,0.0,36700.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,20388.888888888887,3,0,3_0,3_0 +11480,1.0,6.0,71.0,112,78,50,2.0,9236,0.0,500.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1935.2898710306638,0.0,25000.0,25666.0,5,1,9,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,17110.666666666668,2,0,2_0,2_0 +11481,1.0,5.0,41.0,111,53,71,2.0,9237,0.0,1000.0,144.0,480.0,1.0,3.0,2.0,4.0,2.1,2334.097413327771,0.0,19000.0,27760.0,1,3,10,8.0,4,3.0,0.0,1.0,0,0,0,0,1,0,2.0,1.0,13219.047619047618,1,0,1_0,1_0 +11482,17.0,17.0,44.0,111,42,20,0.0,9238,0.0,0.0,0.0,690.0,1.0,2.0,2.0,3.0,1.8,737.3340319715278,2043.6,0.0,34144.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18968.888888888887,3,0,3_0,3_0 +11483,15.0,19.0,70.0,111,74,12,0.0,9239,0.0,0.0,0.0,778.0,0.0,3.0,0.0,2.0,1.5,2427.1189536538436,0.0,0.0,59737.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,39824.666666666664,5,0,5,5_0 +11484,0.0,0.0,22.0,111,55,31,0.0,924,0.0,0.0,0.0,154.0,1.0,2.0,0.0,1.0,1.0,2907.9018134573826,0.0,0.0,13696.0,1,3,8,7.0,1,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13696.0,1,0,1_1,1_0 +11485,0.0,0.0,65.0,112,34,41,0.0,9240,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1576.825032786614,0.0,0.0,25772.0,5,1,9,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25772.0,4,0,4_0,4_0 +11486,0.0,3.0,61.0,111,86,70,0.0,9241,0.0,120.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,1744.0578435410719,0.0,0.0,18908.0,6,3,8,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,12605.333333333334,1,0,1_1,1_0 +11487,0.0,0.0,66.0,111,77,50,0.0,9242,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2373.896794922155,3120.0,0.0,27863.0,5,1,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27863.0,4,0,4_0,4_0 +11488,4.0,9.0,59.0,221,55,71,0.0,9244,0.0,99999.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2654.75496338239,0.0,0.0,16336.0,1,1,1,2.0,1,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,16336.0,2,0,2_1,2_0 +11489,2.0,12.0,84.0,111,74,12,0.0,9245,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,4512.75102397911,0.0,0.0,44350.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,29566.666666666668,4,0,4_0,4_0 +11490,0.0,0.0,39.0,111,54,31,0.0,9249,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2375.0881252888876,2256.7999999999997,0.0,18450.0,1,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18450.0,2,0,2_0,2_0 +11491,4.0,5.0,46.0,300,45,41,0.0,9250,0.0,0.0,0.0,490.0,2.0,5.0,1.0,3.0,2.0,927.2594674338804,1560.0,0.0,51588.0,1,3,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,25794.0,4,0,4_0,4_0 +11492,2.0,2.0,43.0,111,37,12,0.0,9251,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.4,1677.7672775878991,0.0,0.0,110876.0,1,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,46198.333333333336,5,0,5,5_0 +11493,0.0,7.0,60.0,221,77,41,0.0,9252,0.0,200.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1846.2217258672813,0.0,0.0,22227.0,5,1,3,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22227.0,3,0,3_0,3_0 +11494,0.0,0.0,65.0,111,77,60,0.0,9253,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2653.4072451764664,0.0,0.0,12037.0,5,4,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12037.0,1,0,1_0,1_0 +11495,5.0,7.0,61.0,111,75,30,0.0,9256,0.0,0.0,0.0,470.0,0.0,3.0,0.0,1.0,1.0,608.7506151139174,2080.0,0.0,16642.0,4,3,4,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,16642.0,2,0,2_0,2_0 +11496,0.0,0.0,41.0,111,43,31,0.0,9257,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.3,2974.008818735273,2833.48,0.0,43620.0,1,2,4,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,18965.217391304348,3,0,3_0,3_0 +11497,2.0,2.0,57.0,111,23,60,0.0,9258,0.0,450.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,3197.1182483447556,0.0,0.0,62820.0,1,3,8,6.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,31410.0,4,0,4_0,4_0 +11498,1.0,1.0,80.0,111,78,71,0.0,9259,0.0,0.0,0.0,145.0,0.0,5.0,0.0,1.0,1.0,3989.046795841355,0.0,0.0,10957.0,5,3,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10957.0,1,0,1_1,1_0 +11499,2.0,4.0,49.0,112,55,31,0.0,926,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1838.361666291857,0.0,0.0,75969.0,1,1,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,37984.5,5,0,5,5_1 +11500,1.0,10.0,45.0,300,69,50,2.0,9260,0.0,0.0,99999.0,0.0,2.0,4.0,1.0,3.0,1.8,1604.3711997508638,2080.0,3800.0,52200.0,1,1,0,1.0,4,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,29000.0,4,0,4_0,4_0 +11501,4.0,4.0,44.0,111,63,31,0.0,9261,0.0,550.0,0.0,859.0,2.0,4.0,3.0,4.0,2.3,1045.9391960715875,0.0,0.0,54824.0,1,3,10,8.0,2,2.0,0.0,1.0,0,0,0,0,1,1,0.0,2.0,23836.521739130436,4,0,4_1,4_0 +11502,0.0,0.0,37.0,111,56,71,0.0,9262,0.0,0.0,0.0,100.0,1.0,1.0,2.0,3.0,1.6,878.489467331875,0.0,0.0,17740.0,1,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,11087.5,1,0,1_1,1_0 +11503,4.0,6.0,39.0,300,47,31,0.0,9263,0.0,170.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1991.4014683716443,4832.36,0.0,58917.0,1,2,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25616.08695652174,4,0,4_0,4_1 +11504,0.0,0.0,26.0,111,56,41,0.0,9264,0.0,0.0,0.0,222.0,1.0,1.0,1.0,2.0,1.3,3247.5998036038322,0.0,0.0,12042.0,4,4,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,9263.076923076922,1,0,1_1,1_0 +11505,7.0,11.0,34.0,221,85,71,0.0,9265,0.0,0.0,30.0,500.0,0.0,3.0,1.0,2.0,1.5,4669.334995563114,0.0,0.0,17270.0,7,3,1,1.0,2,2.0,0.0,1.0,0,1,0,0,0,1,1.0,1.0,11513.333333333334,1,0,1_1,1_0 +11506,0.0,0.0,53.0,111,43,33,0.0,9266,0.0,0.0,0.0,0.0,3.0,4.0,2.0,3.0,2.0,1197.6055141339489,5540.08,0.0,57414.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28707.0,4,0,4_0,4_0 +11507,1.0,6.0,59.0,111,78,71,0.0,9267,0.0,99999.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3990.4444588372194,2080.0,0.0,23292.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23292.0,3,0,3_0,3_0 +11508,0.0,0.0,52.0,111,63,50,0.0,9268,0.0,0.0,0.0,0.0,2.0,4.0,2.0,3.0,2.0,2130.7327876538943,0.0,0.0,25654.0,4,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12827.0,1,0,1_1,1_0 +11509,4.0,5.0,45.0,211,46,31,0.0,927,0.0,500.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2584.759049512119,0.0,0.0,50306.0,1,1,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21872.17391304348,3,0,3_0,3_0 +11510,1.0,9.0,73.0,111,86,44,0.0,9270,0.0,0.0,60.0,0.0,0.0,7.0,0.0,2.0,1.5,1390.4794837797997,3506.88,0.0,59830.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,39886.666666666664,5,0,5,5_0 +11511,1.0,2.0,38.0,111,84,50,2.0,9271,0.0,40.0,0.0,100.0,0.0,4.0,3.0,4.0,2.3,752.4881550880286,2080.0,12450.0,33020.0,3,3,7,5.0,2,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,14356.521739130436,2,0,2_1,2_0 +11512,6.0,7.0,36.0,111,37,10,0.0,9272,0.0,0.0,150.0,490.0,1.0,1.0,0.0,1.0,1.0,2407.775052668322,0.0,0.0,118.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,118.0,1,0,1_0,1_0 +11513,6.0,7.0,66.0,111,75,50,0.0,9273,0.0,100.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2191.2740531866552,2282.28,0.0,35220.0,5,1,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,23480.0,3,0,3_0,3_0 +11514,7.0,7.0,78.0,111,77,71,0.0,9274,0.0,0.0,0.0,314.0,0.0,3.0,0.0,1.0,1.0,3362.8426284151883,0.0,0.0,17152.0,5,3,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17152.0,2,0,2_0,2_0 +11515,2.0,10.0,33.0,300,47,30,0.0,9275,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2520.5222646940892,2192.3199999999997,0.0,44814.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21340.0,3,0,3_0,3_1 +11516,3.0,7.0,69.0,300,74,33,0.0,9277,0.0,130.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1783.173333488469,0.0,0.0,41364.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,27576.0,4,0,4_0,4_1 +11517,7.0,11.0,41.0,111,33,10,0.0,9279,0.0,90.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3017.5008752471626,0.0,0.0,55683.0,1,2,10,8.0,1,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,55683.0,5,0,5,5_0 +11518,7.0,8.0,49.0,112,85,71,0.0,928,0.0,80.0,0.0,0.0,0.0,6.0,2.0,3.0,2.0,1987.3594056818472,0.0,0.0,10840.0,8,1,8,1.0,2,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,5420.0,1,0,1_0,1_0 +11519,1.0,20.0,28.0,111,67,50,2.0,9281,0.0,0.0,0.0,451.0,2.0,3.0,1.0,3.0,1.8,2268.80872017824,3120.52,400.0,35743.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,19857.222222222223,3,0,3_0,3_0 +11520,10.0,10.0,58.0,111,67,70,0.0,9282,0.0,10.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2106.8210969109914,0.0,0.0,22540.0,8,3,4,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,15026.666666666666,2,0,2_0,2_0 +11521,0.0,1.0,48.0,111,42,50,2.0,9283,0.0,250.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,1074.6643322812042,3184.48,11200.0,43921.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,17568.4,2,0,2_0,2_0 +11522,8.0,8.0,55.0,300,54,31,0.0,9284,0.0,0.0,0.0,0.0,2.0,5.0,2.0,3.0,2.0,176.0125944427414,0.0,0.0,23865.0,4,3,0,1.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,11932.5,1,0,1_1,1_0 +11523,0.0,6.0,85.0,111,77,50,0.0,9286,0.0,250.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2862.894424873966,0.0,0.0,25599.0,5,4,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25599.0,4,0,4_0,4_0 +11524,6.0,15.0,57.0,111,54,41,0.0,9288,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1884.7034230534907,3794.96,0.0,54901.0,1,1,8,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,1.0,0.0,36600.666666666664,5,0,5,5_0 +11525,4.0,4.0,41.0,120,64,50,0.0,929,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2573.8121776759117,4201.08,0.0,38737.0,1,2,0,3.0,4,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,18446.190476190477,2,0,2_0,2_0 +11526,3.0,7.0,67.0,112,72,44,0.0,9291,0.0,800.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1800.042581692408,2407.6,0.0,20670.0,5,1,7,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,13780.0,1,0,1_0,1_0 +11527,11.0,11.0,88.0,400,78,70,0.0,9293,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3477.336846801491,2600.0,0.0,28223.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,28223.0,4,0,4_0,4_1 +11528,0.0,0.0,68.0,112,74,31,0.0,9294,0.0,0.0,0.0,0.0,0.0,9.0,0.0,2.0,1.5,822.772008408788,0.0,0.0,62808.0,5,1,10,3.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,41872.0,5,0,5,5_0 +11529,0.0,0.0,40.0,111,47,50,0.0,9295,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2558.3083490058752,2579.2,0.0,39191.0,1,2,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,26127.333333333332,4,0,4_0,4_0 +11530,0.0,0.0,54.0,400,64,71,0.0,9296,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2548.398113731539,2080.0,0.0,40590.0,1,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,16236.0,2,0,2_0,2_1 +11531,0.0,0.0,37.0,120,47,44,0.0,9297,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2686.6298123368338,0.0,0.0,0.0,1,2,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,0.0,1,0,1_0,1_0 +11532,0.0,0.0,27.0,112,42,43,0.0,9299,0.0,0.0,0.0,250.0,2.0,3.0,1.0,3.0,1.8,2305.7043540321993,2184.0,0.0,22600.0,1,3,10,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,12555.555555555555,1,0,1_0,1_0 +11533,0.0,0.0,48.0,112,38,0,1.0,93,0.0,70.0,0.0,0.0,1.0,12.0,0.0,2.0,1.5,1872.5278439465997,0.0,13762.0,110800.0,1,1,9,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,73866.66666666667,5,0,5,5_0 +11534,2.0,2.0,34.0,400,55,50,0.0,930,0.0,199998.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,355.6863794687933,1144.0,0.0,25790.0,1,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,16118.75,2,0,2_1,2_1 +11535,1.0,1.0,40.0,111,38,12,0.0,9301,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,2783.8699479073384,0.0,0.0,84156.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,40074.28571428571,5,0,5,5_0 +11536,0.0,12.0,74.0,111,78,71,0.0,9302,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2621.3774130580787,0.0,0.0,29322.0,5,3,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,19548.0,3,0,3_0,3_0 +11537,4.0,4.0,67.0,112,75,60,0.0,9304,0.0,800.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2080.8394465863785,2416.96,0.0,45642.0,5,1,8,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,30428.0,4,0,4_0,4_1 +11538,3.0,13.0,67.0,111,77,50,0.0,9306,0.0,0.0,99999.0,232.0,0.0,2.0,0.0,1.0,1.0,2180.548680766751,0.0,0.0,11560.0,5,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,11560.0,1,0,1_1,1_0 +11539,3.0,11.0,36.0,111,68,31,0.0,9307,0.0,0.0,0.0,93.0,2.0,5.0,3.0,6.0,2.9,4529.162180750464,3900.0,0.0,28248.0,1,3,9,7.0,5,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,9740.689655172415,1,0,1_1,1_0 +11540,0.0,0.0,47.0,112,48,43,0.0,9308,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2044.0097998572692,2860.0,0.0,55702.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,24218.26086956522,4,0,4_0,4_1 +11541,4.0,7.0,43.0,111,53,20,0.0,9309,0.0,0.0,0.0,0.0,1.0,8.0,5.0,7.0,3.4,1841.338381287364,0.0,0.0,85573.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,25168.529411764706,4,0,4_0,4_0 +11542,0.0,11.0,22.0,120,85,50,0.0,9310,0.0,0.0,0.0,176.0,0.0,3.0,1.0,2.0,1.3,2713.972414509324,0.0,0.0,14498.0,6,3,0,3.0,2,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,11152.307692307691,1,0,1_1,1_0 +11543,0.0,0.0,20.0,300,62,50,0.0,9311,0.0,0.0,0.0,303.0,2.0,3.0,1.0,3.0,1.8,1945.07683801725,1300.0,0.0,33869.0,4,3,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,18816.11111111111,3,0,3_1,3_1 +11544,0.0,17.0,74.0,300,78,71,0.0,9313,0.0,300.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1733.4793108603183,1305.72,0.0,31155.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20770.0,3,0,3_0,3_1 +11545,0.0,0.0,31.0,111,63,43,0.0,9314,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2215.737413336734,0.0,0.0,25856.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,25856.0,4,0,4_0,4_0 +11546,2.0,7.0,64.0,111,77,50,0.0,9315,0.0,300.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,3965.9451671745846,0.0,0.0,18193.0,5,1,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,18193.0,2,0,2_0,2_0 +11547,0.0,0.0,35.0,221,56,50,0.0,9316,0.0,0.0,0.0,210.0,1.0,4.0,2.0,4.0,2.1,1302.2208081836823,0.0,0.0,19600.0,4,3,1,3.0,4,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,9333.333333333332,1,0,1_1,1_0 +11548,13.0,13.0,50.0,111,56,70,0.0,9318,0.0,0.0,0.0,306.0,1.0,4.0,2.0,3.0,2.0,769.1610281306146,0.0,0.0,21004.0,1,3,9,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,10502.0,1,0,1_1,1_0 +11549,3.0,5.0,32.0,111,85,71,0.0,932,0.0,0.0,0.0,143.0,0.0,3.0,2.0,3.0,1.6,1827.3717758086252,0.0,0.0,15468.0,4,3,9,7.0,2,1.0,1.0,0.0,0,0,0,1,0,1,0.0,1.0,9667.5,1,0,1_1,1_0 +11550,11.0,11.0,39.0,112,13,43,0.0,9322,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2073.7766507914557,0.0,0.0,-62058.0,1,3,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,-29551.42857142857,1,0,1_0,1_1 +11551,5.0,7.0,83.0,111,77,70,0.0,9324,0.0,280.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2558.3798684285484,0.0,0.0,25760.0,5,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,25760.0,4,0,4_0,4_0 +11552,2.0,6.0,45.0,111,46,30,0.0,9325,0.0,8.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,604.4656006087733,0.0,0.0,24632.0,4,3,8,7.0,2,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,15395.0,2,0,2_1,2_0 +11553,8.0,8.0,41.0,111,47,31,0.0,9326,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2265.6779576467784,4087.7200000000003,0.0,95037.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,41320.434782608696,5,0,5,5_0 +11554,11.0,14.0,73.0,111,78,70,0.0,9327,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,2453.433597516042,0.0,0.0,18680.0,5,2,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,18680.0,2,0,2_0,2_0 +11555,8.0,8.0,58.0,300,13,31,0.0,9328,0.0,0.0,200.0,0.0,1.0,19.0,0.0,1.0,1.0,2145.1474930192753,0.0,0.0,78204.0,1,1,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,78204.0,5,0,5,5_1 +11556,5.0,5.0,53.0,111,37,20,0.0,9329,0.0,0.0,0.0,841.0,1.0,2.0,0.0,1.0,1.0,3657.320500541595,0.0,0.0,60642.0,1,3,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,60642.0,5,0,5,5_0 +11557,0.0,24.0,64.0,111,77,60,0.0,933,0.0,670.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1909.350063886174,1560.0,0.0,15755.0,5,1,6,4.0,1,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,15755.0,2,0,2_0,2_0 +11558,0.0,0.0,64.0,111,72,50,0.0,9330,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1481.9143669986063,0.0,0.0,35700.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,23800.0,3,0,3_0,3_0 +11559,6.0,6.0,71.0,112,78,70,0.0,9331,0.0,600.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2353.364872224264,1794.0,0.0,25012.0,5,1,7,1.0,1,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,25012.0,4,0,4_0,4_0 +11560,2.0,11.0,67.0,112,74,44,0.0,9332,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1672.546146990741,2708.16,0.0,42170.0,5,1,8,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,28113.333333333332,4,0,4_0,4_0 +11561,0.0,0.0,43.0,111,64,44,0.0,9334,0.0,0.0,0.0,0.0,1.0,3.0,2.0,3.0,1.8,660.9056567981881,4160.0,0.0,23897.0,1,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,13276.111111111111,1,0,1_1,1_0 +11562,0.0,0.0,76.0,400,77,70,0.0,9337,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3034.1981914893718,0.0,0.0,15869.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15869.0,2,0,2_0,2_1 +11563,10.0,13.0,36.0,111,55,60,0.0,9339,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1998.7826498850186,0.0,0.0,23505.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13058.333333333332,1,0,1_1,1_0 +11564,7.0,7.0,19.0,111,53,41,0.0,934,0.0,0.0,0.0,505.0,1.0,1.0,0.0,1.0,1.0,5308.785297126503,0.0,0.0,18018.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,18018.0,2,0,2_0,2_0 +11565,7.0,9.0,78.0,111,75,41,0.0,9340,0.0,0.0,314.0,0.0,0.0,5.0,0.0,1.0,1.0,2341.547887027368,0.0,0.0,39437.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,39437.0,5,0,5,5_0 +11566,4.0,4.0,55.0,111,63,50,0.0,9341,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,3092.232907649969,5951.92,0.0,19300.0,1,3,6,4.0,3,3.0,0.0,0.0,0,0,1,0,0,0,1.0,2.0,12866.666666666666,1,0,1_0,1_0 +11567,3.0,3.0,29.0,111,67,43,0.0,9343,0.0,0.0,0.0,448.0,2.0,2.0,0.0,2.0,1.5,3149.5806965001498,0.0,0.0,23711.0,1,3,7,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,15807.333333333334,2,0,2_0,2_0 +11568,2.0,22.0,48.0,111,45,43,0.0,9344,0.0,300.0,80.0,0.0,1.0,3.0,1.0,2.0,1.5,2219.488016346596,0.0,0.0,28706.0,1,3,7,5.0,2,3.0,0.0,1.0,0,0,1,0,0,1,1.0,2.0,19137.333333333332,3,0,3_1,3_0 +11569,3.0,3.0,59.0,111,63,71,0.0,9345,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1634.0015672880318,0.0,0.0,57541.0,1,2,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,38360.666666666664,5,0,5,5_0 +11570,11.0,16.0,68.0,300,78,71,0.0,9346,0.0,0.0,70.0,0.0,0.0,4.0,0.0,2.0,1.5,1645.087365058816,2080.0,0.0,28840.0,5,1,0,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,19226.666666666668,3,0,3_0,3_0 +11571,0.0,0.0,76.0,111,74,12,0.0,9347,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1812.6026097405606,0.0,0.0,90148.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,60098.666666666664,5,0,5,5_0 +11572,6.0,6.0,37.0,120,62,31,0.0,935,0.0,0.0,550.0,0.0,2.0,4.0,1.0,3.0,1.8,1968.9231423506885,1040.0,0.0,46259.0,1,2,0,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,25699.444444444445,4,0,4_0,4_0 +11573,0.0,0.0,46.0,111,56,71,0.0,9350,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.8,1107.0958160635048,4967.56,0.0,30746.0,1,3,4,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,17081.11111111111,2,0,2_1,2_0 +11574,0.0,0.0,40.0,112,38,12,0.0,9354,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1916.867137448955,6405.879999999999,0.0,102034.0,1,2,8,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,48587.619047619046,5,0,5,5_0 +11575,2.0,2.0,52.0,111,64,71,0.0,9355,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,3.0,1212.927221284683,1560.0,0.0,26300.0,1,1,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,8766.666666666666,1,0,1_0,1_0 +11576,1.0,1.0,34.0,120,54,31,1.0,9358,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2529.1812962568197,0.0,15400.0,55882.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,26610.47619047619,4,0,4_0,4_1 +11577,14.0,14.0,28.0,111,63,50,0.0,9359,96.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,5954.453844964025,728.0,0.0,25508.0,1,4,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,17005.333333333332,2,0,2_0,2_0 +11578,0.0,0.0,46.0,400,48,31,0.0,936,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1618.1479825345466,0.0,0.0,88911.0,1,2,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,59274.0,5,0,5,5_0 +11579,3.0,3.0,33.0,112,54,30,0.0,9360,0.0,99999.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,691.3348578081109,0.0,0.0,24292.0,1,2,8,0.0,2,2.0,1.0,1.0,1,0,0,0,0,1,1.0,1.0,18686.153846153844,2,0,2_1,2_1 +11580,0.0,0.0,83.0,111,75,44,0.0,9363,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1615.5589337643094,0.0,0.0,34507.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23004.666666666668,3,0,3_0,3_0 +11581,0.0,15.0,45.0,112,54,50,0.0,9364,0.0,0.0,0.0,417.0,1.0,2.0,0.0,1.0,1.0,3827.65026021002,0.0,0.0,15013.0,4,3,9,2.0,1,2.0,0.0,0.0,0,1,0,0,0,1,2.0,0.0,15013.0,2,0,2_1,2_0 +11582,3.0,12.0,42.0,111,52,31,0.0,9365,0.0,99999.0,0.0,135.0,1.0,4.0,2.0,3.0,1.6,1292.7369503987836,0.0,0.0,22524.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,14077.5,2,0,2_1,2_0 +11583,8.0,16.0,65.0,221,75,60,0.0,9367,0.0,300.0,600.0,0.0,0.0,4.0,0.0,1.0,1.0,4019.9829363016406,1853.28,0.0,13366.0,5,1,1,2.0,1,3.0,0.0,1.0,0,1,0,0,0,0,2.0,1.0,13366.0,1,0,1_0,1_0 +11584,3.0,8.0,40.0,112,65,50,0.0,9368,0.0,300.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2198.596779264341,7526.48,0.0,40826.0,1,2,6,1.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,19440.95238095238,3,0,3_0,3_0 +11585,0.0,0.0,46.0,112,13,31,0.0,9369,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4500.536940731755,0.0,0.0,15130.0,1,2,8,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15130.0,2,0,2_0,2_1 +11586,7.0,11.0,44.0,111,52,42,0.0,9373,0.0,0.0,45.0,0.0,2.0,4.0,2.0,4.0,2.1,1390.5395551396211,1912.56,0.0,37498.0,1,2,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,17856.190476190477,2,0,2_0,2_0 +11587,0.0,0.0,80.0,300,74,10,0.0,9374,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2677.55405374372,2743.52,0.0,38455.0,5,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,38455.0,5,0,5,5_1 +11588,11.0,15.0,71.0,112,75,71,0.0,9375,0.0,60.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,995.8111121808032,1300.52,0.0,33181.0,5,1,10,1.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,22120.666666666668,3,0,3_0,3_0 +11589,1.0,1.0,24.0,300,43,30,1.0,9377,0.0,250.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3361.9153991296375,2653.04,19000.0,36782.0,1,2,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,24521.333333333332,4,0,4_0,4_1 +11590,3.0,9.0,39.0,111,85,71,0.0,9378,0.0,350.0,0.0,0.0,1.0,4.0,4.0,6.0,2.9,2437.537695502358,3640.0,0.0,27200.0,6,3,8,6.0,4,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,9379.310344827587,1,0,1_1,1_0 +11591,0.0,2.0,24.0,111,68,41,2.0,938,0.0,100029.0,50.0,0.0,1.0,7.0,0.0,1.0,1.0,3194.3901243384507,0.0,7400.0,18985.0,1,3,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,18985.0,3,0,3_0,3_0 +11592,1.0,7.0,38.0,111,33,20,2.0,9380,0.0,150.0,50.0,0.0,2.0,4.0,2.0,4.0,2.1,1691.8066356919935,2524.6,3000.0,43219.0,1,2,8,7.0,4,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,20580.47619047619,3,0,3_0,3_0 +11593,0.0,0.0,50.0,112,42,31,0.0,9381,0.0,0.0,0.0,322.0,1.0,5.0,2.0,3.0,1.8,566.3332218221743,2086.24,0.0,27100.0,1,3,10,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15055.555555555555,2,0,2_1,2_0 +11594,0.0,0.0,58.0,111,68,71,0.0,9382,0.0,0.0,150.0,0.0,1.0,6.0,2.0,5.0,2.8,1346.0112014484246,0.0,0.0,36158.0,1,3,7,5.0,5,1.0,1.0,1.0,0,0,1,0,0,1,1.0,0.0,12913.57142857143,1,0,1_1,1_0 +11595,7.0,8.0,72.0,400,71,70,0.0,9383,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1816.640370748945,1320.8,0.0,16479.0,5,1,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,16479.0,2,0,2_0,2_1 +11596,0.0,0.0,51.0,111,85,50,0.0,9386,0.0,0.0,0.0,26.0,0.0,2.0,0.0,1.0,1.0,4744.664734568842,0.0,0.0,14688.0,7,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,14688.0,2,0,2_1,2_0 +11597,2.0,8.0,45.0,111,64,43,0.0,9387,0.0,700.0,0.0,0.0,2.0,3.0,2.0,4.0,2.3,1751.9650706783807,0.0,0.0,53540.0,1,1,10,8.0,4,3.0,0.0,0.0,0,0,0,0,1,0,1.0,2.0,23278.26086956522,3,0,3_0,3_0 +11598,11.0,16.0,50.0,112,52,42,0.0,9388,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,2.0,759.4102938609876,2080.0,0.0,21818.0,1,2,8,1.0,2,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,10909.0,1,0,1_1,1_0 +11599,4.0,20.0,45.0,112,43,33,0.0,939,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.8,2897.791990089257,0.0,0.0,71280.0,1,2,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,25457.14285714286,4,0,4_0,4_1 +11600,3.0,3.0,64.0,112,74,41,0.0,9391,0.0,250.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2485.8517518089266,1986.92,0.0,26641.0,5,1,9,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17760.666666666668,2,0,2_0,2_1 +11601,14.0,14.0,30.0,112,56,44,0.0,9392,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2166.1541019428423,1920.8799999999999,0.0,14104.0,1,4,9,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,14104.0,2,0,2_0,2_1 +11602,0.0,11.0,79.0,111,77,50,0.0,9393,0.0,0.0,40.0,440.0,0.0,3.0,0.0,1.0,1.0,3024.1492230334493,0.0,0.0,13972.0,5,3,8,7.0,1,1.0,1.0,1.0,0,0,0,1,0,0,1.0,0.0,13972.0,2,0,2_0,2_0 +11603,8.0,10.0,48.0,111,33,31,0.0,9395,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,722.8208804224421,0.0,0.0,60782.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30391.0,4,0,4_0,4_0 +11604,5.0,5.0,69.0,112,77,60,0.0,9399,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1884.4697490507501,0.0,0.0,32752.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21834.666666666668,3,0,3_0,3_1 +11605,0.0,0.0,60.0,400,62,50,0.0,94,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1883.665899802291,1323.3999999999999,0.0,35041.0,5,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23360.666666666668,3,0,3_0,3_1 +11606,0.0,0.0,46.0,300,38,31,0.0,940,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,1982.788924368712,3942.1200000000003,0.0,60101.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,28619.52380952381,4,0,4_0,4_1 +11607,8.0,11.0,79.0,111,74,70,0.0,9400,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3328.604908035829,2575.04,0.0,101487.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,67658.0,5,0,5,5_0 +11608,2.0,2.0,41.0,111,33,10,0.0,9403,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,5458.682540075161,0.0,0.0,20263.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,9649.047619047618,1,0,1_0,1_0 +11609,5.0,5.0,35.0,111,65,71,0.0,9404,0.0,80.0,0.0,347.0,2.0,4.0,3.0,5.0,2.4,3231.243263472583,1832.48,0.0,45311.0,1,3,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,18879.583333333336,3,0,3_0,3_0 +11610,0.0,0.0,59.0,112,63,50,0.0,9405,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2056.4111993768565,0.0,0.0,27470.0,1,1,5,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18313.333333333332,2,0,2_0,2_1 +11611,13.0,16.0,49.0,112,63,50,0.0,9406,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,1878.8090890297951,2340.52,0.0,38804.0,1,1,7,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,21557.777777777777,3,0,3_0,3_1 +11612,15.0,15.0,57.0,300,77,60,0.0,9407,0.0,0.0,0.0,0.0,0.0,98.0,0.0,2.0,1.5,1894.0277198964686,2999.88,0.0,32490.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,21660.0,3,0,3_0,3_1 +11613,1.0,5.0,70.0,111,74,31,2.0,9408,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1831.1049351598533,0.0,14000.0,57963.0,5,1,8,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,38642.0,5,0,5,5_0 +11614,0.0,0.0,30.0,112,48,50,0.0,941,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2104.926531435571,0.0,0.0,44223.0,1,2,8,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21058.571428571428,3,0,3_0,3_1 +11615,0.0,0.0,50.0,111,33,12,0.0,9412,0.0,0.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,583.5221201247522,1352.52,0.0,54702.0,1,1,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27351.0,4,0,4_0,4_0 +11616,2.0,11.0,84.0,120,75,70,0.0,9414,0.0,210.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2423.5699620612404,0.0,0.0,24222.0,5,1,0,1.0,3,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,16148.0,2,0,2_0,2_0 +11617,0.0,0.0,42.0,111,21,44,0.0,9416,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5196.924215416766,0.0,0.0,13698.0,1,4,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,13698.0,1,0,1_0,1_0 +11618,0.0,0.0,41.0,111,34,20,0.0,9417,0.0,0.0,0.0,0.0,2.0,8.0,5.0,7.0,3.2,676.1985645973641,1040.0,0.0,100122.0,1,1,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31288.125,4,0,4_0,4_0 +11619,0.0,11.0,61.0,111,22,50,0.0,9418,0.0,0.0,0.0,0.0,1.0,3.0,0.0,2.0,1.5,2857.9964817476134,0.0,0.0,1850.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,1233.3333333333333,1,0,1_0,1_0 +11620,3.0,6.0,40.0,111,52,43,0.0,9419,0.0,300.0,0.0,252.0,1.0,2.0,0.0,1.0,1.0,2195.638794252497,520.52,0.0,16910.0,1,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16910.0,2,0,2_0,2_0 +11621,4.0,4.0,89.0,112,71,70,0.0,9420,0.0,0.0,99999.0,0.0,0.0,6.0,0.0,1.0,1.0,2041.414111478056,0.0,0.0,15152.0,5,1,7,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,15152.0,2,0,2_0,2_1 +11622,0.0,0.0,58.0,111,43,33,0.0,9423,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1324.1767033246288,0.0,0.0,49773.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,33182.0,5,0,5,5_0 +11623,6.0,6.0,62.0,112,21,50,0.0,9425,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,4720.94595931099,3333.2,0.0,53451.0,5,1,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,26725.5,4,0,4_0,4_1 +11624,1.0,13.0,44.0,111,38,31,2.0,9426,0.0,0.0,250.0,0.0,1.0,3.0,0.0,1.0,1.0,3293.478872831591,0.0,1000.0,29207.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,29207.0,4,0,4_0,4_0 +11625,0.0,0.0,56.0,111,46,42,0.0,9427,0.0,0.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,1556.3965913354998,0.0,0.0,43963.0,1,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,29308.666666666668,4,0,4_0,4_0 +11626,0.0,0.0,54.0,111,38,31,0.0,9429,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2503.7045629705344,0.0,0.0,22712.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22712.0,3,0,3_0,3_0 +11627,5.0,5.0,22.0,111,81,71,0.0,943,0.0,0.0,0.0,0.0,1.0,3.0,1.0,3.0,1.8,1114.1890693940677,520.0,0.0,13060.0,4,3,7,5.0,4,3.0,0.0,0.0,0,0,1,0,0,1,0.0,3.0,7255.555555555556,1,0,1_1,1_0 +11628,0.0,0.0,35.0,111,38,31,0.0,9430,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1377.7902896717455,0.0,0.0,66525.0,1,2,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,27718.75,4,0,4_0,4_0 +11629,0.0,0.0,58.0,112,53,50,0.0,9431,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,2474.877023076435,3120.0,0.0,24947.0,5,1,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,16631.333333333332,2,0,2_0,2_0 +11630,4.0,7.0,75.0,111,78,50,0.0,9432,0.0,100.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1763.0107098655228,1613.04,0.0,27283.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18188.666666666668,2,0,2_0,2_0 +11631,11.0,14.0,46.0,111,46,50,0.0,9434,0.0,0.0,0.0,361.0,1.0,2.0,0.0,1.0,1.0,1082.5694483897753,0.0,0.0,22047.0,1,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,22047.0,3,0,3_0,3_0 +11632,0.0,0.0,34.0,211,52,31,0.0,9435,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,6888.396836329809,1562.6000000000001,0.0,20203.0,1,4,1,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20203.0,3,0,3_0,3_0 +11633,0.0,0.0,70.0,111,78,70,0.0,9436,0.0,0.0,0.0,349.0,0.0,3.0,0.0,1.0,1.0,2024.6403319894055,0.0,0.0,14433.0,5,3,8,6.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,14433.0,2,0,2_0,2_0 +11634,0.0,0.0,54.0,111,34,10,0.0,9438,0.0,0.0,0.0,890.0,2.0,2.0,0.0,2.0,1.5,2712.644220898885,0.0,0.0,71055.0,1,3,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,47370.0,5,0,5,5_0 +11635,7.0,7.0,67.0,112,74,10,0.0,9439,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1529.4795811418455,3406.5200000000004,0.0,90801.0,5,1,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,60534.0,5,0,5,5_0 +11636,3.0,11.0,49.0,111,38,50,0.0,944,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2561.744427738274,780.0,0.0,67335.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,26934.0,4,0,4_0,4_0 +11637,0.0,0.0,68.0,111,74,10,0.0,9440,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1833.9479090128937,0.0,0.0,47164.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31442.666666666668,4,0,4_0,4_0 +11638,0.0,0.0,26.0,111,52,50,0.0,9442,0.0,0.0,0.0,214.0,1.0,2.0,2.0,3.0,1.6,1280.8710072929962,0.0,0.0,16392.0,4,3,10,8.0,2,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,10245.0,1,0,1_1,1_0 +11639,0.0,9.0,71.0,112,77,41,0.0,9443,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2039.1863161854958,1560.0,0.0,31978.0,5,1,6,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,21318.666666666668,3,0,3_0,3_1 +11640,17.0,18.0,34.0,111,62,31,0.0,9444,0.0,120.0,370.0,480.0,1.0,2.0,0.0,1.0,1.0,2586.011494559411,0.0,0.0,22692.0,1,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,22692.0,3,0,3_0,3_0 +11641,8.0,10.0,69.0,112,78,70,0.0,9445,0.0,150.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1505.6282131155097,0.0,0.0,47226.0,5,4,7,1.0,3,1.0,1.0,1.0,0,1,0,0,0,0,0.0,1.0,31484.0,4,0,4_0,4_0 +11642,0.0,0.0,75.0,112,75,41,0.0,9446,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2499.674937877467,2498.08,0.0,49935.0,5,1,6,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,33290.0,5,0,5,5_1 +11643,15.0,15.0,32.0,111,67,30,0.0,9448,0.0,0.0,0.0,45.0,1.0,3.0,1.0,2.0,1.3,1103.1513639741877,0.0,0.0,14265.0,4,3,8,7.0,2,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,10973.076923076922,1,0,1_1,1_0 +11644,7.0,11.0,54.0,111,47,42,0.0,9451,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,2731.4420332609516,0.0,0.0,59722.0,1,1,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23888.8,4,0,4_0,4_0 +11645,6.0,6.0,66.0,112,74,31,0.0,9453,0.0,0.0,200.0,0.0,0.0,6.0,0.0,2.0,1.5,1829.6744661232356,3108.56,0.0,68336.0,5,1,9,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,45557.333333333336,5,0,5,5_1 +11646,0.0,0.0,46.0,400,13,50,0.0,9454,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.5,1915.5641352374905,0.0,0.0,33150.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13260.0,1,0,1_0,1_1 +11647,0.0,0.0,80.0,111,75,31,0.0,9455,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2749.6441378685345,1210.56,0.0,42289.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28192.666666666668,4,0,4_0,4_0 +11648,0.0,0.0,44.0,111,34,10,1.0,9457,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2948.9946127824037,0.0,13000.0,77796.0,1,1,8,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,37045.71428571428,5,0,5,5_0 +11649,0.0,0.0,78.0,112,71,70,0.0,9458,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1790.0756295246488,0.0,0.0,23934.0,5,1,8,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15956.0,2,0,2_0,2_1 +11650,8.0,8.0,35.0,120,62,43,0.0,9459,0.0,0.0,99999.0,0.0,2.0,5.0,1.0,3.0,1.8,1812.085328598347,0.0,0.0,54425.0,1,2,0,1.0,4,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,30236.11111111111,4,0,4_1,4_0 +11651,0.0,0.0,52.0,300,46,60,0.0,946,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1704.0644509815136,0.0,0.0,56568.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,37712.0,5,0,5,5_1 +11652,0.0,2.0,41.0,211,46,44,0.0,9460,0.0,2020.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3493.305300616385,4409.08,0.0,54111.0,1,2,1,3.0,4,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,25767.142857142855,4,0,4_0,4_0 +11653,0.0,0.0,34.0,111,54,50,0.0,9461,0.0,0.0,0.0,116.0,1.0,3.0,1.0,2.0,1.3,1661.3084134422456,1820.0,0.0,18160.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,13969.23076923077,2,0,2_1,2_0 +11654,1.0,2.0,39.0,111,85,71,1.0,9463,0.0,0.0,0.0,57.0,0.0,5.0,3.0,5.0,2.4,3107.6309530323438,0.0,11606.0,37818.0,6,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,15757.5,2,0,2_1,2_0 +11655,3.0,3.0,74.0,111,75,44,0.0,9466,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4342.183843982666,0.0,0.0,23594.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,23594.0,3,0,3_0,3_0 +11656,0.0,0.0,36.0,111,56,71,0.0,947,0.0,0.0,0.0,53.0,1.0,4.0,2.0,3.0,1.8,727.3196783386247,0.0,0.0,20487.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,11381.666666666666,1,0,1_1,1_0 +11657,4.0,10.0,56.0,300,63,50,0.0,9471,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3452.2448552554406,0.0,0.0,8758.0,4,3,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,1,0.0,2.0,8758.0,1,0,1_1,1_1 +11658,5.0,6.0,52.0,111,54,60,0.0,9472,0.0,0.0,125.0,0.0,1.0,4.0,0.0,1.0,1.0,1459.5144805252692,1043.6399999999999,0.0,18322.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,18322.0,2,0,2_0,2_0 +11659,0.0,0.0,50.0,111,43,33,0.0,9473,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3364.313473545429,0.0,0.0,31937.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,31937.0,5,0,5,5_0 +11660,10.0,10.0,45.0,111,54,41,0.0,9474,0.0,0.0,0.0,13.0,1.0,4.0,1.0,2.0,1.5,1389.089089995263,0.0,0.0,13008.0,4,3,7,6.0,2,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,8672.0,1,0,1_1,1_0 +11661,0.0,0.0,33.0,300,48,41,0.0,9475,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.4,2232.7229907647825,0.0,0.0,65230.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27179.166666666668,4,0,4_0,4_1 +11662,0.0,21.0,67.0,111,75,30,0.0,9476,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1459.045169291568,0.0,0.0,79375.0,5,1,8,6.0,3,2.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,52916.666666666664,5,0,5,5_0 +11663,0.0,0.0,80.0,211,75,41,0.0,9477,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3431.070863583985,0.0,0.0,33360.0,5,1,2,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,33360.0,5,0,5,5_0 +11664,12.0,12.0,71.0,300,74,41,0.0,9478,0.0,250.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2001.8393033249274,3640.0,0.0,64138.0,5,1,0,0.0,3,3.0,0.0,0.0,1,0,0,0,0,0,0.0,3.0,42758.666666666664,5,0,5,5_1 +11665,4.0,9.0,75.0,221,74,10,0.0,9479,0.0,150.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2190.975594720594,0.0,0.0,62414.0,5,1,1,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,62414.0,5,0,5,5_0 +11666,8.0,8.0,64.0,111,77,70,0.0,948,0.0,99999.0,0.0,380.0,0.0,3.0,0.0,1.0,1.0,2534.441194291746,1560.0,0.0,18600.0,5,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,18600.0,2,0,2_0,2_0 +11667,3.0,5.0,74.0,112,75,31,0.0,9480,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1895.3822903945463,1547.52,0.0,37105.0,5,1,8,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24736.666666666668,4,0,4_0,4_1 +11668,1.0,16.0,55.0,111,31,20,0.0,9481,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,2136.4787443317296,0.0,0.0,25462.0,1,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,10609.166666666668,1,0,1_0,1_0 +11669,3.0,9.0,53.0,111,47,31,0.0,9482,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,2016.8026025244112,4056.0,0.0,64492.0,1,1,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,25796.8,4,0,4_0,4_0 +11670,4.0,18.0,66.0,111,75,50,0.0,9484,0.0,200098.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1696.0015646085194,1612.0,0.0,37812.0,5,1,10,8.0,3,3.0,0.0,1.0,0,0,0,0,1,0,0.0,3.0,25208.0,4,0,4_0,4_0 +11671,0.0,0.0,48.0,300,22,71,0.0,9485,0.0,0.0,0.0,64.0,1.0,3.0,0.0,1.0,1.0,3779.283855780364,0.0,0.0,8723.0,1,3,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8723.0,1,0,1_1,1_1 +11672,0.0,0.0,40.0,111,56,31,0.0,9486,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2490.1833595762055,1560.0,0.0,17044.0,1,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,17044.0,2,0,2_0,2_0 +11673,14.0,14.0,69.0,111,78,70,0.0,9487,0.0,0.0,0.0,522.0,0.0,3.0,0.0,2.0,1.5,2263.7652145414945,0.0,0.0,26259.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17506.0,2,0,2_0,2_0 +11674,0.0,11.0,49.0,221,68,71,0.0,9489,0.0,0.0,0.0,0.0,2.0,4.0,3.0,5.0,2.6,971.0381750591613,1924.0,0.0,28839.0,4,3,1,2.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,11091.923076923076,1,0,1_1,1_0 +11675,4.0,4.0,37.0,111,42,30,0.0,9491,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3050.7997188373133,0.0,0.0,14251.0,1,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14251.0,2,0,2_0,2_0 +11676,2.0,2.0,43.0,111,37,12,0.0,9492,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,4116.409291092202,0.0,0.0,230060.0,1,1,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,109552.38095238095,5,0,5,5_0 +11677,3.0,3.0,55.0,211,12,71,0.0,9493,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,968.7986421240972,0.0,0.0,17513.0,1,1,2,3.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,11675.333333333334,1,0,1_0,1_0 +11678,2.0,11.0,83.0,111,74,50,0.0,9495,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1821.115577568341,2081.04,0.0,29225.0,5,1,6,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,19483.333333333332,3,0,3_0,3_0 +11679,5.0,5.0,58.0,111,78,71,0.0,95,0.0,0.0,99999.0,21.0,0.0,2.0,0.0,1.0,1.0,2755.7378617872464,0.0,0.0,14233.0,7,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,2.0,0.0,14233.0,2,0,2_1,2_0 +11680,3.0,5.0,24.0,111,63,50,0.0,9500,0.0,0.0,0.0,164.0,1.0,2.0,0.0,1.0,1.0,1488.5540855536283,0.0,0.0,6934.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,1.0,1.0,6934.0,1,0,1_1,1_0 +11681,2.0,4.0,65.0,111,46,20,0.0,9501,0.0,0.0,40.0,0.0,2.0,4.0,0.0,2.0,1.5,1669.3795572349125,2757.56,0.0,22782.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,15188.0,2,0,2_0,2_0 +11682,4.0,4.0,40.0,111,38,31,0.0,9502,0.0,100799.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,661.7424018572259,0.0,0.0,43573.0,1,2,8,7.0,2,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,27233.125,4,0,4_0,4_0 +11683,4.0,4.0,40.0,112,38,60,0.0,9503,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.3,3034.198282988389,3697.72,0.0,28840.0,1,2,8,0.0,2,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,22184.615384615383,3,0,3_0,3_1 +11684,2.0,2.0,82.0,112,74,12,0.0,9505,0.0,200.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3229.5798191402628,0.0,0.0,38637.0,5,1,8,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25758.0,4,0,4_0,4_1 +11685,5.0,7.0,72.0,111,74,50,0.0,9507,0.0,0.0,130.0,0.0,0.0,5.0,0.0,2.0,1.5,2102.454092063064,2602.08,0.0,53754.0,5,1,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,35836.0,5,0,5,5_0 +11686,1.0,5.0,60.0,111,75,50,2.0,9508,0.0,0.0,99999.0,0.0,1.0,5.0,0.0,2.0,1.5,2001.6400651596944,5401.76,7000.0,34935.0,5,1,8,6.0,3,1.0,1.0,1.0,0,0,1,0,0,0,1.0,0.0,23290.0,3,0,3_0,3_0 +11687,0.0,7.0,30.0,111,38,10,2.0,9510,0.0,199998.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2657.83037392242,0.0,8000.0,56833.0,1,2,8,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,37888.666666666664,5,0,5,5_0 +11688,0.0,0.0,44.0,112,54,50,0.0,9512,0.0,0.0,0.0,600.0,1.0,3.0,1.0,2.0,1.3,1044.499015863004,3950.44,0.0,21090.0,1,3,9,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,16223.076923076922,2,0,2_1,2_0 +11689,8.0,8.0,58.0,111,74,50,0.0,9513,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1686.2072523700347,0.0,0.0,57276.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,38184.0,5,0,5,5_0 +11690,2.0,6.0,36.0,111,52,41,0.0,9514,0.0,99999.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4555.19164954606,0.0,0.0,18916.0,1,4,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,18916.0,3,0,3_0,3_0 +11691,9.0,9.0,69.0,111,77,60,0.0,9515,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2080.4303528634127,2368.08,0.0,19549.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,19549.0,3,0,3_0,3_0 +11692,0.0,0.0,46.0,120,34,30,0.0,9516,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1830.543562436938,0.0,0.0,35223.0,1,2,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,35223.0,5,0,5,5_1 +11693,10.0,10.0,68.0,111,78,50,0.0,9517,0.0,0.0,99999.0,0.0,1.0,5.0,0.0,2.0,1.5,2796.871744463193,3328.5200000000004,0.0,51994.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,34662.666666666664,5,0,5,5_0 +11694,0.0,0.0,65.0,111,75,60,0.0,9518,0.0,0.0,0.0,0.0,1.0,7.0,0.0,2.0,1.5,1546.9965192076338,2600.0,0.0,44912.0,5,1,4,4.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,29941.333333333332,4,0,4_0,4_0 +11695,1.0,19.0,35.0,111,63,50,0.0,9519,0.0,400.0,0.0,290.0,1.0,2.0,0.0,1.0,1.0,4125.916316727124,0.0,0.0,27047.0,1,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,27047.0,4,0,4_0,4_0 +11696,4.0,6.0,40.0,211,42,20,0.0,952,0.0,0.0,120.0,0.0,2.0,5.0,2.0,4.0,2.1,2690.4686560081773,3870.88,0.0,41175.0,1,1,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,19607.142857142855,3,0,3_0,3_0 +11697,2.0,2.0,58.0,111,68,60,0.0,9521,0.0,0.0,80.0,313.0,1.0,3.0,0.0,1.0,1.0,1366.1179177594424,1560.0,0.0,12390.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,12390.0,1,0,1_1,1_0 +11698,3.0,3.0,25.0,111,56,42,0.0,9522,0.0,500.0,200.0,0.0,2.0,2.0,0.0,2.0,1.5,5619.494145904054,0.0,0.0,32563.0,4,4,8,6.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,21708.666666666668,3,0,3_0,3_0 +11699,5.0,11.0,26.0,300,69,43,0.0,9523,0.0,50.0,230.0,0.0,1.0,4.0,0.0,1.0,1.0,3690.137536088555,2600.0,0.0,16824.0,1,3,0,0.0,1,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16824.0,2,0,2_0,2_1 +11700,2.0,6.0,36.0,112,64,60,0.0,9524,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1313.3945325489651,0.0,0.0,39051.0,1,2,10,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,16271.25,2,0,2_1,2_1 +11701,12.0,12.0,45.0,111,37,31,0.0,9526,0.0,0.0,0.0,0.0,1.0,5.0,0.0,1.0,1.0,2914.3475970442255,2918.24,0.0,40820.0,1,2,8,6.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,40820.0,5,0,5,5_0 +11702,0.0,0.0,41.0,112,63,50,0.0,9527,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1888.592776548151,0.0,0.0,53510.0,1,2,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22295.833333333336,3,0,3_0,3_1 +11703,0.0,0.0,26.0,300,64,31,1.0,9528,0.0,0.0,600.0,744.0,2.0,3.0,0.0,2.0,1.5,2631.394821238348,2600.0,11500.0,44360.0,1,3,0,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,29573.333333333332,4,0,4_0,4_1 +11704,0.0,0.0,52.0,111,47,31,0.0,9529,0.0,0.0,0.0,0.0,2.0,3.0,3.0,5.0,2.6,1652.997856062304,2080.0,0.0,47996.0,1,1,7,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,18460.0,2,0,2_0,2_0 +11705,5.0,11.0,57.0,111,38,31,0.0,9530,0.0,0.0,500.0,0.0,2.0,4.0,0.0,2.0,1.5,1734.7204736728283,3224.0,0.0,62389.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,41592.666666666664,5,0,5,5_0 +11706,0.0,0.0,68.0,112,77,60,0.0,9532,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2835.6772572805503,2711.7999999999997,0.0,21791.0,5,1,6,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,21791.0,3,0,3_0,3_1 +11707,0.0,0.0,52.0,111,85,71,0.0,9533,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.3,764.5744127354732,0.0,0.0,12878.0,6,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9906.153846153846,1,0,1_1,1_0 +11708,0.0,0.0,38.0,120,46,71,0.0,9534,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2498.4824588561546,1560.0,0.0,44360.0,1,2,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19286.956521739132,3,0,3_0,3_1 +11709,0.0,0.0,70.0,111,74,10,0.0,9535,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1600.578382483938,0.0,0.0,73632.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,73632.0,5,0,5,5_0 +11710,0.0,0.0,64.0,112,43,33,0.0,9536,0.0,0.0,0.0,0.0,1.0,9.0,0.0,2.0,1.5,1488.7018324635635,2600.0,0.0,45902.0,1,1,4,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,30601.333333333332,4,0,4_0,4_1 +11711,0.0,1.0,62.0,111,77,31,2.0,9539,0.0,400.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,4299.336064464705,0.0,21000.0,23656.0,5,1,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,23656.0,3,0,3_0,3_0 +11712,1.0,2.0,57.0,111,69,60,2.0,954,0.0,0.0,0.0,0.0,3.0,3.0,3.0,5.0,3.0,2248.1747291183647,242.84,9500.0,40350.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,13450.0,1,0,1_0,1_0 +11713,10.0,10.0,30.0,111,63,50,0.0,9540,0.0,0.0,0.0,540.0,2.0,4.0,1.0,3.0,1.8,2538.832863428836,1826.7600000000002,0.0,39792.0,1,3,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,22106.666666666668,3,0,3_0,3_0 +11714,11.0,11.0,44.0,111,68,70,0.0,9541,0.0,0.0,0.0,350.0,1.0,5.0,2.0,3.0,2.0,929.8671527642304,0.0,0.0,21298.0,1,3,9,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,10649.0,1,0,1_1,1_0 +11715,7.0,11.0,56.0,112,43,33,0.0,9543,0.0,0.0,99999.0,0.0,4.0,6.0,2.0,4.0,2.5,1636.8455612594491,2340.0,0.0,55526.0,1,1,8,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,22210.4,3,0,3_0,3_0 +11716,0.0,0.0,41.0,112,37,0,0.0,9544,0.0,0.0,0.0,0.0,1.0,6.0,2.0,3.0,1.6,648.6149844510015,2600.0,0.0,23122.0,4,2,7,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,14451.25,2,0,2_0,2_0 +11717,0.0,11.0,56.0,111,56,60,0.0,9547,0.0,0.0,600.0,0.0,1.0,4.0,0.0,1.0,1.0,4366.317811014984,1563.64,0.0,17929.0,1,1,9,7.0,1,4.0,0.0,1.0,0,0,0,1,0,0,3.0,1.0,17929.0,2,0,2_0,2_0 +11718,2.0,4.0,78.0,400,71,70,0.0,9548,0.0,12.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2021.5282714820714,0.0,0.0,15210.0,5,1,0,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,15210.0,2,0,2_0,2_1 +11719,1.0,1.0,87.0,300,78,71,2.0,9549,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3278.6865260550326,0.0,23000.0,16199.0,5,1,0,0.0,1,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,16199.0,2,0,2_0,2_1 +11720,9.0,9.0,40.0,111,52,50,0.0,9551,0.0,0.0,20.0,258.0,1.0,3.0,1.0,2.0,1.3,798.559871388282,1560.0,0.0,22410.0,1,3,9,7.0,2,2.0,1.0,1.0,0,0,0,1,0,1,1.0,1.0,17238.46153846154,2,0,2_1,2_0 +11721,2.0,16.0,60.0,111,78,50,0.0,9552,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,2135.2110902480745,3822.0,0.0,22163.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14775.333333333334,2,0,2_0,2_0 +11722,8.0,11.0,40.0,112,56,43,0.0,9553,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,4524.005347545967,0.0,0.0,6262.0,1,3,7,4.0,1,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,6262.0,1,0,1_1,1_0 +11723,5.0,5.0,54.0,111,38,50,0.0,9555,0.0,0.0,150.0,0.0,2.0,4.0,1.0,3.0,2.0,2958.938492953918,785.1999999999999,0.0,64974.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,32487.0,5,0,5,5_0 +11724,1.0,4.0,77.0,111,74,30,2.0,9557,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2296.416143954414,2919.2799999999997,8500.0,57300.0,5,4,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,57300.0,5,0,5,5_0 +11725,4.0,4.0,48.0,112,56,31,0.0,9558,0.0,240.0,0.0,0.0,2.0,11.0,2.0,4.0,2.5,2145.9386467358004,2641.6,0.0,22232.0,1,1,10,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,8892.8,1,0,1_0,1_0 +11726,0.0,0.0,49.0,111,67,50,0.0,9559,0.0,0.0,0.0,0.0,3.0,4.0,3.0,5.0,2.8,2333.1700678960447,3120.0,0.0,61226.0,1,4,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,21866.428571428572,3,0,3_0,3_0 +11727,0.0,0.0,24.0,111,38,0,0.0,956,0.0,0.0,0.0,490.0,1.0,1.0,0.0,1.0,1.0,4035.389766958893,0.0,0.0,26170.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26170.0,4,0,4_0,4_0 +11728,0.0,0.0,32.0,111,45,30,0.0,9560,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,2759.4850883800054,0.0,0.0,43377.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,20655.714285714286,3,0,3_0,3_0 +11729,6.0,17.0,54.0,111,22,31,0.0,9561,0.0,0.0,253.0,0.0,2.0,5.0,2.0,3.0,2.0,2888.903515891284,3331.64,0.0,61701.0,1,1,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,30850.5,4,0,4_0,4_0 +11730,2.0,2.0,71.0,111,77,70,1.0,9562,0.0,100.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2322.6675654256082,0.0,28000.0,19150.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,19150.0,3,0,3_0,3_0 +11731,7.0,8.0,67.0,300,71,44,0.0,9563,0.0,0.0,300.0,0.0,0.0,5.0,0.0,2.0,1.5,1671.2127602479477,0.0,0.0,22430.0,5,1,0,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,14953.333333333334,2,0,2_0,2_1 +11732,0.0,0.0,53.0,221,52,31,0.0,9564,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1557.448832176808,2431.0,0.0,20350.0,1,1,1,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,20350.0,3,0,3_0,3_0 +11733,13.0,14.0,46.0,112,47,30,0.0,9567,0.0,100.0,0.0,0.0,2.0,8.0,2.0,4.0,2.5,2426.7750564896055,162.76,0.0,63766.0,1,2,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25506.4,4,0,4_0,4_1 +11734,12.0,12.0,48.0,111,21,41,0.0,9570,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,1790.191254660228,0.0,0.0,36690.0,1,2,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,17471.428571428572,2,0,2_0,2_0 +11735,1.0,1.0,65.0,111,72,50,1.0,9571,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1912.0998886176812,0.0,54253.0,18470.0,5,1,8,7.0,3,1.0,1.0,0.0,0,0,0,1,0,0,0.0,1.0,12313.333333333334,1,0,1_0,1_0 +11736,1.0,3.0,57.0,112,55,60,2.0,9574,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1975.5452363424936,3241.16,3500.0,60893.0,1,1,8,3.0,3,1.0,1.0,0.0,0,1,0,0,0,0,0.0,1.0,40595.333333333336,5,0,5,5_0 +11737,12.0,12.0,41.0,112,46,20,0.0,9575,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,1.6,2891.2785645430895,0.0,0.0,15560.0,4,3,9,3.0,2,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,9725.0,1,0,1_1,1_0 +11738,10.0,20.0,61.0,111,68,71,0.0,9576,0.0,0.0,60.0,0.0,2.0,3.0,1.0,3.0,2.0,2376.470022849822,2420.6,0.0,30917.0,4,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,1.0,0.0,15458.5,2,0,2_1,2_0 +11739,9.0,9.0,29.0,111,62,43,0.0,9577,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,5758.852404192842,0.0,0.0,9060.0,4,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,9060.0,1,0,1_1,1_0 +11740,3.0,5.0,34.0,111,53,41,0.0,9578,0.0,0.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,2468.885464656218,0.0,0.0,50732.0,1,2,8,6.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,33821.333333333336,5,0,5,5_0 +11741,0.0,0.0,64.0,221,78,50,0.0,9579,0.0,0.0,0.0,10.0,1.0,2.0,1.0,2.0,1.5,2324.9416495184864,0.0,0.0,24310.0,5,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,16206.666666666666,2,0,2_1,2_0 +11742,2.0,2.0,44.0,111,54,71,0.0,958,0.0,0.0,0.0,0.0,2.0,4.0,1.0,2.0,1.5,2229.7244789065344,2080.0,0.0,38892.0,1,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,25928.0,4,0,4_0,4_0 +11743,0.0,0.0,49.0,111,38,12,0.0,9580,0.0,0.0,0.0,0.0,2.0,7.0,4.0,6.0,3.3,1683.49190126619,2389.92,0.0,122669.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37172.42424242425,5,0,5,5_0 +11744,2.0,10.0,41.0,111,31,12,0.0,9581,0.0,0.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,2299.0600924097116,0.0,0.0,36579.0,1,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,22861.875,3,0,3_0,3_0 +11745,0.0,0.0,73.0,120,78,50,0.0,9582,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1869.377655043618,1872.0,0.0,19683.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,19683.0,3,0,3_0,3_1 +11746,2.0,4.0,53.0,111,34,30,0.0,9583,0.0,375.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1715.5498076895303,3641.04,0.0,53550.0,1,2,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,35700.0,5,0,5,5_0 +11747,11.0,11.0,66.0,221,74,30,0.0,9584,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1113.4276312424765,3136.64,0.0,39432.0,5,1,1,3.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,26288.0,4,0,4_0,4_0 +11748,11.0,11.0,68.0,111,78,71,0.0,9587,0.0,0.0,99999.0,299.0,0.0,3.0,0.0,2.0,1.5,3595.626372156116,0.0,0.0,21230.0,5,3,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,14153.333333333334,2,0,2_0,2_0 +11749,0.0,0.0,54.0,111,64,60,0.0,9589,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,2816.1829699666023,1043.64,0.0,5070.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,5070.0,1,0,1_0,1_0 +11750,1.0,9.0,68.0,111,74,60,2.0,959,0.0,0.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,2205.7263763888045,0.0,2000.0,30897.0,5,1,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,30897.0,4,0,4_0,4_0 +11751,3.0,3.0,46.0,111,45,31,0.0,9591,0.0,0.0,0.0,495.0,2.0,3.0,1.0,3.0,2.0,4348.464725795722,0.0,0.0,55270.0,1,3,10,8.0,4,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,27635.0,4,0,4_0,4_0 +11752,6.0,6.0,29.0,111,55,50,0.0,9593,0.0,300.0,0.0,119.0,1.0,2.0,0.0,1.0,1.0,2854.836244625099,0.0,0.0,11902.0,4,3,6,5.0,1,1.0,0.0,1.0,0,0,1,0,0,1,0.0,1.0,11902.0,1,0,1_1,1_0 +11753,0.0,0.0,50.0,111,62,50,0.0,9594,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2603.9444475202267,2454.92,0.0,39638.0,1,1,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,26425.333333333332,4,0,4_0,4_0 +11754,4.0,6.0,50.0,111,46,0,0.0,9595,0.0,99999.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,2796.600930344223,2548.0,0.0,36010.0,4,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,24006.666666666668,4,0,4_0,4_0 +11755,6.0,8.0,33.0,111,45,31,0.0,9597,0.0,0.0,99999.0,410.0,1.0,1.0,0.0,1.0,1.0,4366.270625355692,0.0,0.0,22470.0,1,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,22470.0,3,0,3_0,3_0 +11756,0.0,0.0,70.0,111,74,50,0.0,9598,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2348.088784124062,0.0,0.0,51638.0,5,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,34425.333333333336,5,0,5,5_0 +11757,8.0,8.0,69.0,112,77,70,0.0,9599,0.0,0.0,250.0,308.0,0.0,2.0,0.0,1.0,1.0,3686.17233869451,0.0,0.0,18288.0,5,3,8,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,18288.0,2,0,2_0,2_0 +11758,3.0,29.0,69.0,111,74,50,0.0,96,0.0,0.0,0.0,440.0,0.0,3.0,0.0,1.0,1.0,2616.1321550313032,2080.0,0.0,35108.0,5,3,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,35108.0,5,0,5,5_0 +11759,1.0,8.0,72.0,300,72,50,0.0,960,0.0,0.0,300.0,0.0,0.0,7.0,0.0,3.0,2.0,2980.892116353221,2080.0,0.0,32568.0,5,1,0,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,16284.0,2,0,2_0,2_1 +11760,0.0,0.0,45.0,112,63,50,0.0,9600,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2035.3410173816487,0.0,0.0,38304.0,1,2,10,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18240.0,2,0,2_0,2_1 +11761,5.0,19.0,69.0,111,74,10,0.0,9601,0.0,350.0,200.0,0.0,0.0,6.0,0.0,1.0,1.0,6997.54251435442,0.0,0.0,53910.0,5,1,8,7.0,1,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,53910.0,5,0,5,5_0 +11762,7.0,7.0,37.0,120,43,33,0.0,9602,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,2004.335597139316,0.0,0.0,64367.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,64367.0,5,0,5,5_1 +11763,1.0,3.0,34.0,300,53,31,0.0,9603,0.0,0.0,0.0,0.0,1.0,6.0,2.0,4.0,2.1,1994.4008951409166,3380.0,0.0,43696.0,1,2,0,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,20807.619047619046,3,0,3_0,3_0 +11764,5.0,5.0,69.0,111,78,71,0.0,9604,0.0,0.0,0.0,216.0,0.0,1.0,0.0,1.0,1.0,5689.169428806103,0.0,0.0,15420.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,15420.0,2,0,2_1,2_0 +11765,0.0,0.0,58.0,111,21,60,0.0,9605,0.0,0.0,0.0,0.0,5.0,3.0,3.0,5.0,3.0,3105.3891404011183,0.0,0.0,22150.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,7383.333333333333,1,0,1_1,1_0 +11766,1.0,3.0,42.0,111,52,31,2.0,9607,0.0,300.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2162.269941633726,0.0,1500.0,38210.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,21227.777777777777,3,0,3_0,3_0 +11767,2.0,6.0,77.0,221,78,71,0.0,9608,0.0,100.0,110.0,0.0,0.0,6.0,0.0,1.0,1.0,2676.1217392575672,0.0,0.0,9630.0,5,1,1,1.0,1,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,9630.0,1,0,1_0,1_0 +11768,2.0,7.0,62.0,112,21,71,0.0,961,0.0,400.0,0.0,0.0,1.0,8.0,0.0,2.0,1.5,2047.6946271367974,0.0,0.0,79600.0,5,1,10,0.0,3,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,53066.666666666664,5,0,5,5_1 +11769,5.0,5.0,72.0,111,78,71,0.0,9610,0.0,80.0,300.0,21.0,0.0,2.0,0.0,1.0,1.0,4147.754754233889,0.0,0.0,13378.0,5,3,10,8.0,1,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,13378.0,1,0,1_1,1_0 +11770,0.0,0.0,48.0,400,37,20,0.0,9611,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,2008.663239800065,0.0,0.0,68017.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,45344.666666666664,5,0,5,5_1 +11771,0.0,0.0,89.0,211,78,70,0.0,9612,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1759.6541369098147,0.0,0.0,22076.0,5,4,2,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22076.0,3,0,3_0,3_0 +11772,0.0,0.0,27.0,111,46,31,0.0,9613,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3008.704350639303,0.0,0.0,30160.0,1,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,30160.0,4,0,4_0,4_0 +11773,8.0,21.0,52.0,112,63,50,0.0,9614,0.0,0.0,0.0,476.0,2.0,3.0,1.0,3.0,2.0,2324.644797882951,5387.719999999999,0.0,38492.0,1,3,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,19246.0,3,0,3_0,3_0 +11774,1.0,13.0,45.0,111,43,31,2.0,9615,0.0,0.0,0.0,0.0,1.0,2.0,1.0,2.0,1.3,787.1016656150987,0.0,500.0,26498.0,1,2,9,7.0,2,4.0,0.0,0.0,0,0,0,1,0,0,1.0,3.0,20383.076923076922,3,0,3_0,3_0 +11775,0.0,0.0,65.0,111,78,50,0.0,9617,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2895.0681514910616,0.0,0.0,23880.0,5,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,15920.0,2,0,2_1,2_0 +11776,2.0,2.0,63.0,111,74,50,0.0,962,0.0,700.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,3358.8804054873863,2392.0,0.0,41118.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,27412.0,4,0,4_0,4_0 +11777,2.0,2.0,54.0,111,65,60,0.0,9620,0.0,0.0,150.0,396.0,2.0,3.0,3.0,5.0,2.4,2261.682481656582,0.0,0.0,24287.0,1,3,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,10119.583333333334,1,0,1_1,1_0 +11778,0.0,0.0,48.0,120,63,71,0.0,9621,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2366.7069150071957,3120.0,0.0,77228.0,1,2,0,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,36775.23809523809,5,0,5,5_0 +11779,0.0,0.0,42.0,111,53,42,1.0,9622,0.0,0.0,150.0,0.0,1.0,3.0,0.0,1.0,1.0,2648.3603744440666,0.0,34000.0,30454.0,1,2,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,30454.0,4,0,4_0,4_0 +11780,4.0,12.0,49.0,112,37,20,0.0,9623,0.0,20.0,250.0,0.0,2.0,7.0,2.0,4.0,2.5,1387.8415421483091,5141.24,0.0,52126.0,1,1,9,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,1.0,1.0,20850.4,3,0,3_0,3_0 +11781,0.0,1.0,79.0,221,78,70,2.0,9624,0.0,450.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2996.6551633079116,0.0,12500.0,14897.0,5,1,1,3.0,1,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,14897.0,2,0,2_0,2_0 +11782,3.0,6.0,32.0,111,34,30,0.0,9625,0.0,0.0,70.0,0.0,2.0,3.0,0.0,2.0,1.5,2737.730099221934,0.0,0.0,52659.0,1,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,35106.0,5,0,5,5_0 +11783,12.0,12.0,51.0,111,31,20,0.0,9628,0.0,0.0,0.0,0.0,1.0,7.0,1.0,2.0,1.5,1067.975760373807,5239.0,0.0,86871.0,1,1,5,4.0,2,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,57914.0,5,0,5,5_0 +11784,2.0,2.0,81.0,111,77,70,0.0,9629,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2111.8026830561876,0.0,0.0,29366.0,5,1,7,5.0,3,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,19577.333333333332,3,0,3_0,3_0 +11785,4.0,16.0,55.0,111,55,71,0.0,963,0.0,1100.0,0.0,31.0,2.0,3.0,1.0,3.0,2.0,2175.526562221107,0.0,0.0,16528.0,4,3,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,1,0.0,1.0,8264.0,1,0,1_1,1_0 +11786,0.0,0.0,89.0,111,71,71,0.0,9630,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1730.3311317760272,0.0,0.0,11900.0,5,4,4,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,11900.0,1,0,1_0,1_0 +11787,5.0,5.0,64.0,111,75,50,0.0,9631,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1572.9639805476356,3189.16,0.0,33505.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22336.666666666668,3,0,3_0,3_0 +11788,4.0,15.0,57.0,112,56,71,0.0,9632,0.0,0.0,270.0,309.0,1.0,3.0,0.0,2.0,1.5,2204.62734228374,0.0,0.0,18722.0,1,3,8,2.0,3,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,12481.333333333334,1,0,1_0,1_0 +11789,4.0,7.0,62.0,112,31,20,0.0,9636,0.0,0.0,99999.0,0.0,1.0,8.0,0.0,2.0,1.5,1914.5558248272282,9442.68,0.0,221633.0,1,1,6,0.0,3,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,147755.33333333334,5,0,5,5_1 +11790,4.0,4.0,73.0,111,75,50,0.0,9637,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1415.071213399458,0.0,0.0,40460.0,5,1,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,26973.333333333332,4,0,4_0,4_0 +11791,0.0,0.0,46.0,111,54,31,0.0,9638,0.0,0.0,0.0,313.0,1.0,2.0,0.0,1.0,1.0,2506.6505617301104,3016.52,0.0,19610.0,1,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19610.0,3,0,3_0,3_0 +11792,2.0,2.0,50.0,111,34,31,0.0,964,0.0,0.0,0.0,825.0,2.0,3.0,2.0,4.0,2.5,2683.4482130663773,0.0,0.0,56375.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,22550.0,3,0,3_0,3_0 +11793,0.0,0.0,32.0,111,85,50,0.0,9640,0.0,0.0,0.0,0.0,0.0,2.0,2.0,3.0,1.6,1613.001903434459,0.0,0.0,19682.0,6,3,8,6.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12301.25,1,0,1_1,1_0 +11794,1.0,6.0,65.0,111,78,50,0.0,9641,0.0,0.0,70.0,422.0,0.0,3.0,0.0,2.0,1.5,2741.6610990677787,0.0,0.0,18959.0,5,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,12639.333333333334,1,0,1_0,1_0 +11795,15.0,15.0,69.0,111,77,30,0.0,9642,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2699.3992163732796,2915.12,0.0,25770.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,17180.0,2,0,2_0,2_0 +11796,3.0,6.0,45.0,120,62,50,0.0,9643,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2552.602944793391,2099.24,0.0,38401.0,1,2,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,16696.08695652174,2,0,2_0,2_1 +11797,0.0,0.0,47.0,221,43,33,0.0,9646,0.0,0.0,0.0,0.0,2.0,6.0,3.0,4.0,2.5,544.8023218122843,3640.0,0.0,39072.0,1,2,1,2.0,2,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15628.8,2,0,2_0,2_0 +11798,1.0,2.0,59.0,111,43,33,0.0,9647,0.0,150.0,100.0,0.0,1.0,6.0,1.0,3.0,2.0,1909.1857906622524,0.0,0.0,37206.0,1,1,6,4.0,4,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18603.0,2,0,2_0,2_0 +11799,0.0,0.0,68.0,300,78,71,0.0,9648,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,3055.7708500247577,1041.04,0.0,15574.0,5,3,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,10382.666666666666,1,0,1_1,1_1 +11800,5.0,5.0,47.0,111,85,71,0.0,9650,0.0,0.0,0.0,357.0,0.0,5.0,6.0,7.0,3.6,1036.9230152660678,0.0,0.0,19626.0,6,3,10,8.0,2,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,5451.666666666667,1,0,1_1,1_0 +11801,14.0,26.0,55.0,211,35,60,0.0,9651,0.0,100059.0,0.0,0.0,1.0,8.0,2.0,4.0,2.1,4307.747061041822,2600.0,0.0,25837.0,1,1,1,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,12303.333333333332,1,0,1_0,1_0 +11802,2.0,9.0,70.0,211,74,31,0.0,9653,0.0,400.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1829.9437507279742,2110.16,0.0,46660.0,5,1,2,2.0,3,2.0,1.0,1.0,0,1,0,0,0,0,0.0,2.0,31106.666666666668,4,0,4_0,4_0 +11803,6.0,11.0,58.0,400,75,33,0.0,9654,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2069.419737021706,5007.6,0.0,36031.0,5,1,0,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,24020.666666666668,4,0,4_0,4_1 +11804,0.0,0.0,54.0,112,46,31,0.0,9655,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,1924.5985571535355,2756.0,0.0,31978.0,1,1,10,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31978.0,5,0,5,5_0 +11805,11.0,13.0,80.0,400,74,30,0.0,9656,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2026.4460665038357,1714.9599999999998,0.0,13341.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8894.0,1,0,1_0,1_1 +11806,10.0,12.0,40.0,221,46,50,0.0,9657,0.0,0.0,0.0,720.0,1.0,3.0,2.0,4.0,2.1,5149.783456741006,0.0,0.0,41490.0,1,3,1,2.0,4,2.0,1.0,0.0,0,1,0,0,0,0,2.0,0.0,19757.142857142855,3,0,3_0,3_0 +11807,1.0,3.0,44.0,111,42,42,0.0,9658,0.0,0.0,10.0,0.0,2.0,6.0,3.0,5.0,2.6,1788.5685138308659,797.16,0.0,55292.0,1,3,5,4.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21266.153846153844,3,0,3_0,3_0 +11808,2.0,13.0,76.0,211,77,60,0.0,9659,0.0,0.0,200.0,0.0,0.0,4.0,0.0,1.0,1.0,1630.1641638540227,0.0,0.0,17540.0,5,1,3,3.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,17540.0,2,0,2_0,2_0 +11809,1.0,2.0,68.0,120,78,71,2.0,966,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3210.466056741394,0.0,20300.0,9640.0,5,4,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,9640.0,1,0,1_0,1_1 +11810,0.0,0.0,76.0,111,75,30,0.0,9660,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,1616.7909576936936,0.0,0.0,45415.0,5,1,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30276.666666666668,4,0,4_0,4_0 +11811,6.0,7.0,38.0,111,56,41,0.0,9662,0.0,0.0,0.0,260.0,1.0,2.0,0.0,1.0,1.0,3274.623668956741,0.0,0.0,17370.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,0,0.0,2.0,17370.0,2,0,2_0,2_0 +11812,0.0,0.0,78.0,111,75,41,0.0,9664,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2498.958606173006,2600.0,0.0,31573.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,31573.0,4,0,4_0,4_0 +11813,0.0,0.0,41.0,120,47,50,0.0,9666,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2486.6717841132217,1896.9599999999998,0.0,43603.0,1,1,0,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,18957.826086956524,3,0,3_0,3_1 +11814,4.0,6.0,57.0,111,38,42,0.0,9667,0.0,100.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,3042.3563106804736,2337.4,0.0,60919.0,1,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,40612.666666666664,5,0,5,5_0 +11815,4.0,4.0,50.0,111,55,50,0.0,9668,0.0,0.0,0.0,242.0,1.0,5.0,2.0,3.0,2.0,552.6969337761205,1306.24,0.0,25185.0,1,3,7,5.0,2,2.0,0.0,0.0,0,0,1,0,0,1,1.0,1.0,12592.5,1,0,1_1,1_0 +11816,4.0,13.0,57.0,300,77,70,0.0,9669,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2117.546409579408,0.0,0.0,12318.0,7,3,0,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,12318.0,1,0,1_0,1_0 +11817,5.0,7.0,84.0,111,74,31,0.0,967,0.0,99999.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1999.8893192549824,0.0,0.0,60515.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,40343.333333333336,5,0,5,5_0 +11818,0.0,16.0,85.0,111,72,71,0.0,9670,0.0,0.0,0.0,268.0,0.0,2.0,0.0,1.0,1.0,3260.569034176899,0.0,0.0,15901.0,5,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15901.0,2,0,2_0,2_0 +11819,2.0,2.0,36.0,400,46,31,0.0,9671,0.0,0.0,0.0,0.0,2.0,5.0,3.0,5.0,2.4,1891.5243159892466,0.0,0.0,62446.0,1,2,0,0.0,4,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,26019.166666666668,4,0,4_0,4_1 +11820,9.0,13.0,64.0,111,35,41,0.0,9672,0.0,0.0,120.0,0.0,1.0,5.0,0.0,2.0,1.5,1852.445245063801,0.0,0.0,124516.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,83010.66666666667,5,0,5,5_0 +11821,0.0,0.0,79.0,212,77,71,0.0,9673,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2003.9648869842636,2132.52,0.0,34489.0,6,1,1,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,22992.666666666668,3,0,3_0,3_1 +11822,0.0,8.0,49.0,111,37,43,2.0,9674,0.0,100.0,0.0,0.0,2.0,2.0,0.0,2.0,1.5,3546.2569638519813,2453.88,10000.0,68360.0,4,2,10,8.0,3,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,45573.333333333336,5,0,5,5_0 +11823,5.0,7.0,72.0,111,74,20,0.0,9675,0.0,0.0,0.0,339.0,0.0,4.0,0.0,2.0,1.5,1980.5547097365477,0.0,0.0,26418.0,5,3,8,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17612.0,2,0,2_0,2_0 +11824,1.0,6.0,51.0,111,52,50,2.0,9678,0.0,0.0,99999.0,0.0,1.0,4.0,0.0,1.0,1.0,1287.4813844353264,2340.0,4700.0,19230.0,1,1,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19230.0,3,0,3_0,3_0 +11825,2.0,2.0,40.0,112,37,20,0.0,9679,0.0,0.0,99999.0,900.0,1.0,4.0,1.0,2.0,1.3,1453.428185100918,0.0,0.0,43784.0,1,3,9,3.0,2,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,33680.0,5,0,5,5_0 +11826,2.0,2.0,57.0,111,35,41,0.0,968,0.0,370.0,0.0,0.0,1.0,7.0,2.0,3.0,2.0,527.1039803841803,565.24,0.0,109525.0,1,1,7,5.0,2,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,54762.5,5,0,5,5_0 +11827,0.0,27.0,69.0,111,77,41,0.0,9680,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1013.3117534883613,0.0,0.0,17689.0,5,1,7,5.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,17689.0,2,0,2_0,2_0 +11828,0.0,0.0,44.0,111,55,50,0.0,9681,0.0,0.0,0.0,920.0,2.0,5.0,2.0,3.0,1.8,597.0985847286131,0.0,0.0,22824.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,12680.0,1,0,1_1,1_0 +11829,4.0,4.0,18.0,111,84,41,0.0,9682,0.0,300.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,3842.303884708091,0.0,0.0,4.0,3,3,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,4.0,1,0,1_0,1_0 +11830,11.0,11.0,28.0,111,38,20,0.0,9683,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,4927.517225248508,0.0,0.0,30792.0,1,2,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,30792.0,4,0,4_0,4_0 +11831,1.0,1.0,43.0,111,37,20,0.0,9684,0.0,200.0,0.0,0.0,2.0,5.0,4.0,6.0,2.9,2249.979799033698,1769.0400000000002,0.0,116191.0,1,2,8,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,40065.86206896552,5,0,5,5_0 +11832,0.0,0.0,60.0,112,38,31,0.0,9685,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,1560.7571575959598,0.0,0.0,84245.0,1,1,7,0.0,4,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,46802.777777777774,5,0,5,5_1 +11833,2.0,2.0,58.0,221,31,10,0.0,9686,0.0,99999.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1356.391877916319,2177.24,0.0,134050.0,1,1,1,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,89366.66666666667,5,0,5,5_0 +11834,7.0,7.0,57.0,112,33,31,0.0,9687,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1795.2421862714846,2600.0,0.0,47506.0,1,2,8,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,31670.666666666668,4,0,4_0,4_0 +11835,0.0,0.0,45.0,112,46,50,0.0,9688,0.0,0.0,0.0,308.0,3.0,4.0,2.0,3.0,2.0,945.9948679664767,2205.84,0.0,23409.0,1,3,8,0.0,2,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,11704.5,1,0,1_1,1_1 +11836,7.0,7.0,61.0,111,78,50,0.0,9689,0.0,0.0,0.0,0.0,0.0,4.0,1.0,2.0,1.5,2646.976195678325,0.0,0.0,42029.0,5,1,7,6.0,2,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,28019.333333333332,4,0,4_0,4_0 +11837,5.0,5.0,47.0,112,21,42,0.0,969,0.0,600.0,0.0,0.0,2.0,5.0,2.0,4.0,2.5,2388.484937134098,8049.599999999999,0.0,77699.0,1,1,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,31079.6,4,0,4_0,4_1 +11838,6.0,6.0,59.0,211,78,50,0.0,9691,0.0,100.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1380.346523111254,1300.0,0.0,36500.0,5,1,2,3.0,3,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,24333.333333333332,4,0,4_0,4_0 +11839,3.0,3.0,32.0,120,21,0,0.0,9692,0.0,50.0,0.0,0.0,1.0,5.0,4.0,6.0,2.7,2376.9053209776507,3419.5200000000004,0.0,26870.0,1,3,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,9951.85185185185,1,0,1_1,1_1 +11840,1.0,6.0,54.0,111,31,20,2.0,9693,0.0,200.0,0.0,0.0,1.0,3.0,2.0,4.0,2.5,4098.398539536567,2652.0,4000.0,1216.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,486.4,1,0,1_0,1_0 +11841,8.0,8.0,46.0,112,68,71,0.0,9695,0.0,450.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,2157.743976680793,2705.04,0.0,37022.0,1,1,8,3.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,18511.0,2,0,2_0,2_0 +11842,1.0,5.0,56.0,112,34,30,2.0,9696,0.0,120.0,0.0,0.0,2.0,4.0,1.0,3.0,2.0,1943.042619133729,2600.0,6800.0,84079.0,1,2,10,0.0,4,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,42039.5,5,0,5,5_1 +11843,5.0,5.0,89.0,112,71,70,0.0,9697,0.0,50.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3235.4235221360364,0.0,0.0,21531.0,5,3,6,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21531.0,3,0,3_0,3_1 +11844,1.0,2.0,64.0,111,74,12,0.0,9699,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,3916.7449397845808,0.0,0.0,36621.0,5,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,36621.0,5,0,5,5_0 +11845,0.0,3.0,27.0,112,48,43,2.0,97,0.0,0.0,67.0,0.0,2.0,4.0,1.0,3.0,1.8,2575.4177176820713,1560.52,13000.0,36818.0,1,3,9,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,20454.444444444445,3,0,3_0,3_1 +11846,2.0,2.0,31.0,300,67,50,0.0,9702,0.0,200.0,0.0,174.0,1.0,5.0,2.0,3.0,1.6,105.8412419979695,0.0,0.0,22978.0,1,3,0,0.0,2,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,14361.25,2,0,2_1,2_1 +11847,1.0,1.0,45.0,111,37,20,2.0,9703,0.0,60.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,3172.463019466323,624.0,15200.0,77640.0,1,2,10,8.0,4,4.0,0.0,1.0,0,0,0,0,1,0,1.0,3.0,33756.52173913044,5,0,5,5_0 +11848,1.0,11.0,48.0,111,48,50,0.0,9707,0.0,350.0,0.0,670.0,1.0,2.0,0.0,1.0,1.0,3448.0827536410347,3900.0,0.0,28870.0,1,3,10,8.0,1,3.0,1.0,0.0,0,0,0,0,1,0,0.0,3.0,28870.0,4,0,4_0,4_0 +11849,5.0,5.0,74.0,112,75,31,0.0,9708,0.0,0.0,420.0,673.0,0.0,3.0,0.0,1.0,1.0,3507.3980293350164,0.0,0.0,27930.0,5,3,9,1.0,1,1.0,0.0,1.0,0,1,0,0,0,0,1.0,0.0,27930.0,4,0,4_0,4_0 +11850,3.0,10.0,25.0,111,54,30,0.0,9709,0.0,100.0,0.0,350.0,2.0,2.0,0.0,2.0,1.5,5283.183222729135,2605.2000000000003,0.0,36135.0,1,3,6,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,24090.0,4,0,4_0,4_0 +11851,11.0,11.0,59.0,112,42,50,0.0,971,0.0,700.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1521.1736573794653,0.0,0.0,56168.0,1,1,7,1.0,3,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,37445.333333333336,5,0,5,5_0 +11852,1.0,2.0,86.0,111,,71,0.0,9710,0.0,200.0,30.0,0.0,0.0,6.0,1.0,2.0,1.5,2253.9284819094787,1560.0,0.0,16300.0,5,1,9,7.0,2,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,10866.666666666666,1,0,1_0,1_0 +11853,6.0,6.0,47.0,112,48,50,0.0,9711,0.0,0.0,500.0,0.0,1.0,4.0,3.0,5.0,2.6,1985.490332474432,2438.28,0.0,40215.0,1,4,9,2.0,4,1.0,1.0,1.0,0,1,0,0,0,0,1.0,0.0,15467.307692307691,2,0,2_0,2_0 +11854,10.0,10.0,41.0,111,43,33,0.0,9715,0.0,0.0,0.0,677.0,2.0,3.0,2.0,4.0,2.1,1061.8621112106794,0.0,0.0,37603.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,17906.190476190477,2,0,2_0,2_0 +11855,0.0,0.0,25.0,112,63,31,0.0,9716,0.0,0.0,0.0,0.0,1.0,4.0,0.0,1.0,1.0,1050.2949897067936,3120.0,0.0,31226.0,1,3,9,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31226.0,4,0,4_0,4_0 +11856,0.0,0.0,34.0,111,52,31,0.0,9717,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1741.8392356944885,0.0,0.0,59110.0,1,2,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,28147.619047619046,4,0,4_0,4_0 +11857,2.0,3.0,64.0,112,75,50,0.0,9718,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2234.4705535136,4680.52,0.0,27749.0,5,1,10,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18499.333333333332,2,0,2_0,2_1 +11858,6.0,15.0,26.0,300,48,50,0.0,972,0.0,0.0,400.0,0.0,2.0,5.0,2.0,4.0,2.1,2851.1868622453944,2945.7999999999997,0.0,42380.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,20180.95238095238,3,0,3_0,3_1 +11859,12.0,12.0,50.0,211,54,71,0.0,9721,0.0,50.0,0.0,412.0,2.0,5.0,0.0,2.0,1.5,1541.4639859306083,0.0,0.0,44286.0,1,3,3,4.0,3,2.0,1.0,0.0,0,0,1,0,0,0,0.0,2.0,29524.0,4,0,4_0,4_0 +11860,1.0,1.0,50.0,111,37,20,1.0,9722,0.0,350.0,200.0,0.0,2.0,5.0,1.0,3.0,2.0,2253.2050718302503,0.0,22000.0,82617.0,1,1,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,41308.5,5,0,5,5_0 +11861,0.0,0.0,51.0,111,38,50,0.0,9723,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.3,2337.180666422641,3397.16,0.0,94178.0,1,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,40946.956521739135,5,0,5,5_0 +11862,2.0,10.0,42.0,112,21,71,0.0,9724,0.0,250.0,0.0,0.0,2.0,4.0,4.0,6.0,3.1,4186.269952301527,4839.12,0.0,40875.0,1,2,9,3.0,4,2.0,0.0,1.0,0,1,0,0,0,1,0.0,2.0,13185.483870967742,1,0,1_1,1_0 +11863,0.0,0.0,52.0,111,52,50,0.0,9725,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,2837.3386229023204,2080.0,0.0,46090.0,1,2,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,23045.0,3,0,3_0,3_0 +11864,0.0,0.0,65.0,111,77,42,0.0,9726,0.0,0.0,0.0,308.0,0.0,4.0,0.0,1.0,1.0,1933.8073220957797,0.0,0.0,12602.0,5,3,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12602.0,1,0,1_1,1_0 +11865,0.0,0.0,36.0,111,47,42,0.0,9727,0.0,0.0,0.0,380.0,1.0,1.0,0.0,1.0,1.0,6256.270241906363,0.0,0.0,26313.0,4,3,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,26313.0,4,0,4_1,4_0 +11866,9.0,9.0,32.0,111,53,50,0.0,9728,0.0,99999.0,99999.0,349.0,1.0,3.0,0.0,2.0,1.5,2653.467602782998,0.0,0.0,18440.0,1,3,8,7.0,3,3.0,0.0,0.0,0,0,0,1,0,0,2.0,1.0,12293.333333333334,1,0,1_0,1_0 +11867,4.0,17.0,53.0,112,47,50,0.0,9729,0.0,257.0,0.0,0.0,2.0,7.0,1.0,3.0,2.0,2153.8040710796013,3229.72,0.0,43165.0,1,1,7,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,21582.5,3,0,3_0,3_1 +11868,7.0,7.0,37.0,111,38,20,0.0,973,0.0,0.0,200.0,0.0,2.0,5.0,1.0,3.0,1.8,1830.3502901047661,0.0,0.0,84245.0,1,3,7,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,46802.777777777774,5,0,5,5_0 +11869,2.0,2.0,58.0,112,52,50,0.0,9730,0.0,0.0,250.0,660.0,2.0,5.0,0.0,3.0,2.0,3661.9838409919244,2080.0,0.0,52036.0,4,3,8,1.0,5,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,26018.0,4,0,4_0,4_0 +11870,0.0,0.0,29.0,112,21,31,0.0,9731,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3308.9964673927448,0.0,0.0,48180.0,1,2,9,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,26766.666666666664,4,0,4_0,4_0 +11871,3.0,3.0,83.0,111,86,60,0.0,9732,0.0,0.0,250.0,0.0,0.0,3.0,0.0,1.0,1.0,1844.646794953386,0.0,0.0,19860.0,5,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,19860.0,3,0,3_0,3_0 +11872,1.0,1.0,58.0,111,67,50,1.0,9733,0.0,1350.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1789.5401462673185,0.0,60000.0,43773.0,1,2,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,29182.0,4,0,4_0,4_0 +11873,0.0,0.0,24.0,111,45,30,0.0,9734,0.0,0.0,0.0,0.0,3.0,5.0,3.0,5.0,3.0,1838.7883839716662,0.0,0.0,49790.0,1,3,6,5.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,16596.666666666668,2,0,2_1,2_0 +11874,0.0,0.0,56.0,111,62,71,0.0,9735,0.0,0.0,0.0,439.0,2.0,3.0,1.0,3.0,2.0,3163.381844459889,0.0,0.0,24650.0,1,3,9,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,12325.0,1,0,1_0,1_0 +11875,2.0,2.0,60.0,111,33,20,0.0,9736,0.0,0.0,0.0,467.0,1.0,2.0,0.0,1.0,1.0,2517.4530452307486,3774.16,0.0,40525.0,1,3,6,4.0,1,2.0,0.0,0.0,0,0,1,0,0,0,1.0,1.0,40525.0,5,0,5,5_0 +11876,6.0,6.0,35.0,111,54,20,0.0,9737,0.0,0.0,99999.0,0.0,1.0,3.0,2.0,3.0,1.8,886.6729312305805,1820.0,0.0,16663.0,4,3,8,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,1.0,0.0,9257.222222222223,1,0,1_1,1_0 +11877,0.0,0.0,54.0,111,47,41,0.0,9738,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,2437.160730785067,0.0,0.0,13718.0,4,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,13718.0,1,0,1_0,1_0 +11878,0.0,0.0,85.0,400,77,70,0.0,9739,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2354.948681290185,0.0,0.0,25078.0,5,4,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,25078.0,4,0,4_0,4_1 +11879,3.0,4.0,50.0,112,46,41,0.0,9740,0.0,99999.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,2620.7771960963737,785.1999999999999,0.0,21484.0,1,1,9,2.0,2,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,14322.666666666666,2,0,2_0,2_0 +11880,6.0,6.0,53.0,111,65,43,0.0,9741,0.0,0.0,0.0,0.0,1.0,4.0,1.0,2.0,1.5,2067.401903424184,2080.0,0.0,28075.0,1,3,8,6.0,2,1.0,1.0,0.0,0,0,1,0,0,0,0.0,1.0,18716.666666666668,3,0,3_0,3_0 +11881,0.0,0.0,56.0,211,78,50,0.0,9743,0.0,0.0,0.0,0.0,0.0,4.0,2.0,3.0,2.0,4488.248173853821,1899.56,0.0,34008.0,7,3,1,3.0,2,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,17004.0,2,0,2_1,2_0 +11882,12.0,12.0,76.0,111,78,71,0.0,9744,0.0,0.0,0.0,337.0,0.0,4.0,0.0,2.0,1.5,3946.690888417972,0.0,0.0,22050.0,5,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,14700.0,2,0,2_0,2_0 +11883,7.0,9.0,69.0,111,75,31,0.0,9745,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2992.0337605551863,0.0,0.0,18914.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,18914.0,3,0,3_0,3_0 +11884,5.0,5.0,36.0,111,81,71,0.0,9747,0.0,95.0,0.0,28.0,1.0,1.0,0.0,1.0,1.0,3723.5092858759094,0.0,0.0,8994.0,4,3,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,1,1.0,1.0,8994.0,1,0,1_1,1_0 +11885,0.0,0.0,41.0,111,52,50,0.0,9748,0.0,0.0,0.0,287.0,1.0,3.0,1.0,2.0,1.5,784.4206945576182,0.0,0.0,24130.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,16086.666666666666,2,0,2_1,2_0 +11886,8.0,8.0,28.0,112,62,42,0.0,9749,0.0,0.0,0.0,0.0,1.0,5.0,3.0,5.0,2.6,3875.5148639635204,0.0,0.0,35056.0,1,3,8,0.0,4,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,13483.076923076922,1,0,1_1,1_1 +11887,5.0,8.0,51.0,111,63,60,0.0,975,0.0,400.0,500.0,384.0,1.0,5.0,2.0,3.0,2.0,1463.6013207621124,0.0,0.0,37869.0,1,3,6,4.0,2,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,18934.5,3,0,3_0,3_0 +11888,2.0,2.0,49.0,111,64,50,0.0,9750,0.0,0.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,2761.9443984378768,4009.2000000000003,0.0,38230.0,1,2,6,5.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,21238.888888888887,3,0,3_0,3_0 +11889,21.0,26.0,86.0,112,74,70,0.0,9751,0.0,250.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,3063.5475738862724,1560.0,0.0,53770.0,5,3,7,0.0,5,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,35846.666666666664,5,0,5,5_1 +11890,9.0,11.0,35.0,111,63,50,0.0,9752,0.0,0.0,20.0,672.0,2.0,4.0,1.0,3.0,1.8,2851.847109731521,0.0,0.0,37720.0,1,3,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,20955.555555555555,3,0,3_0,3_0 +11891,3.0,6.0,45.0,111,63,50,0.0,9753,0.0,650.0,40.0,0.0,1.0,4.0,2.0,4.0,2.1,4456.4852292275755,0.0,0.0,23400.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,1,1.0,1.0,11142.857142857143,1,0,1_1,1_0 +11892,4.0,11.0,36.0,111,37,12,0.0,9755,0.0,99999.0,0.0,1390.0,1.0,3.0,1.0,2.0,1.3,3822.816973565088,810.68,0.0,63430.0,1,3,10,8.0,2,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,48792.30769230769,5,0,5,5_0 +11893,4.0,18.0,35.0,112,21,71,0.0,9756,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,6718.521145420456,3952.0,0.0,7585.0,1,2,7,1.0,1,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,7585.0,1,0,1_0,1_0 +11894,3.0,11.0,46.0,111,85,20,0.0,9757,0.0,0.0,0.0,0.0,0.0,2.0,0.0,1.0,1.0,722.5379104150484,0.0,0.0,9536.0,8,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,9536.0,1,0,1_1,1_0 +11895,1.0,1.0,24.0,400,65,43,0.0,9758,0.0,99999.0,99999.0,0.0,2.0,3.0,2.0,4.0,2.1,2426.6499337645632,0.0,0.0,28125.0,1,4,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13392.857142857143,1,0,1_0,1_1 +11896,6.0,6.0,70.0,111,75,60,0.0,9759,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2678.243478371374,0.0,0.0,23976.0,5,1,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,23976.0,4,0,4_0,4_0 +11897,4.0,4.0,57.0,111,63,50,0.0,976,0.0,0.0,0.0,465.0,1.0,2.0,0.0,1.0,1.0,8263.180878481995,312.0,0.0,42596.0,1,3,8,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,42596.0,5,0,5,5_0 +11898,6.0,6.0,71.0,111,78,50,0.0,9760,0.0,0.0,199998.0,0.0,0.0,2.0,0.0,1.0,1.0,2042.1607419300576,0.0,0.0,18000.0,5,3,9,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,18000.0,2,0,2_0,2_0 +11899,15.0,15.0,42.0,111,43,41,0.0,9761,0.0,0.0,0.0,186.0,1.0,3.0,1.0,2.0,1.3,605.613556050598,2600.0,0.0,14994.0,4,3,8,7.0,2,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,11533.846153846154,1,0,1_1,1_0 +11900,2.0,22.0,22.0,111,52,50,0.0,9762,0.0,0.0,0.0,288.0,1.0,2.0,0.0,1.0,1.0,3431.217723997221,0.0,0.0,7284.0,1,3,9,7.0,1,2.0,0.0,0.0,0,0,0,1,0,1,2.0,0.0,7284.0,1,0,1_1,1_0 +11901,0.0,0.0,60.0,111,77,70,0.0,9763,0.0,0.0,0.0,625.0,1.0,4.0,0.0,2.0,1.5,1848.154346082838,0.0,0.0,26161.0,5,3,7,5.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,17440.666666666668,2,0,2_0,2_0 +11902,11.0,12.0,56.0,112,21,50,0.0,9764,0.0,210.0,0.0,0.0,2.0,3.0,0.0,2.0,1.5,3425.7898217655097,0.0,0.0,62120.0,1,1,8,0.0,3,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,41413.333333333336,5,0,5,5_1 +11903,6.0,6.0,67.0,111,48,50,0.0,9766,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1687.7299178304777,4235.400000000001,0.0,73643.0,1,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,49095.333333333336,5,0,5,5_0 +11904,0.0,0.0,62.0,111,78,71,1.0,9767,0.0,0.0,250.0,378.0,0.0,2.0,0.0,1.0,1.0,3939.385220906494,2460.64,22500.0,14849.0,5,3,7,5.0,1,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,14849.0,2,0,2_0,2_0 +11905,4.0,4.0,70.0,120,75,50,0.0,9768,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,2322.6120565504975,0.0,0.0,30112.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,20074.666666666668,3,0,3_0,3_1 +11906,11.0,17.0,54.0,111,52,50,0.0,9769,0.0,100.0,100.0,0.0,1.0,3.0,0.0,1.0,1.0,1953.8365090576915,0.0,0.0,12607.0,1,2,8,7.0,1,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,12607.0,1,0,1_0,1_0 +11907,2.0,10.0,62.0,111,34,10,0.0,977,0.0,0.0,0.0,0.0,1.0,5.0,0.0,2.0,1.5,1619.1116251258986,1722.7600000000002,0.0,79137.0,1,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,52758.0,5,0,5,5_0 +11908,0.0,0.0,41.0,111,53,71,0.0,9770,0.0,0.0,0.0,475.0,2.0,3.0,3.0,5.0,2.6,3724.404997309587,1040.0,0.0,33780.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,12992.307692307691,1,0,1_0,1_0 +11909,1.0,1.0,50.0,111,63,50,2.0,9772,0.0,0.0,0.0,0.0,1.0,4.0,4.0,6.0,3.5,1702.7757460025607,1560.0,4600.0,40472.0,1,3,4,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,0.0,1.0,11563.42857142857,1,0,1_1,1_0 +11910,2.0,5.0,82.0,111,74,30,0.0,9773,0.0,200.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2671.204625534004,0.0,0.0,95440.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,63626.666666666664,5,0,5,5_0 +11911,1.0,9.0,52.0,111,33,20,0.0,9774,0.0,100849.0,99999.0,700.0,1.0,4.0,0.0,1.0,1.0,2023.0728417504943,2496.0,0.0,35840.0,1,3,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,1.0,2.0,35840.0,5,0,5,5_0 +11912,5.0,5.0,65.0,111,77,70,0.0,9775,0.0,0.0,0.0,347.0,0.0,3.0,0.0,2.0,1.5,2597.1966046330726,0.0,0.0,23434.0,5,3,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,15622.666666666666,2,0,2_0,2_0 +11913,7.0,8.0,43.0,111,43,50,0.0,9777,0.0,500.0,0.0,90.0,2.0,3.0,3.0,4.0,2.5,750.0712962642328,0.0,0.0,30422.0,1,3,9,7.0,2,1.0,0.0,1.0,0,0,0,1,0,1,0.0,1.0,12168.8,1,0,1_1,1_0 +11914,0.0,0.0,42.0,111,22,71,0.0,9779,0.0,0.0,0.0,0.0,2.0,3.0,2.0,4.0,2.1,5566.003623390535,0.0,0.0,48767.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,23222.38095238095,3,0,3_0,3_0 +11915,0.0,0.0,60.0,112,,50,0.0,9780,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,2302.1135317358526,0.0,0.0,43898.0,8,2,9,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,29265.333333333332,4,0,4_0,4_0 +11916,10.0,16.0,42.0,112,54,43,0.0,9781,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,456.1093413437793,3560.96,0.0,58650.0,1,1,10,4.0,4,2.0,0.0,0.0,0,0,1,0,0,0,2.0,0.0,27928.571428571428,4,0,4_0,4_0 +11917,0.0,14.0,40.0,111,43,33,0.0,9783,0.0,400.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,4443.905847059792,469.03999999999996,0.0,47729.0,1,2,9,7.0,4,1.0,1.0,1.0,0,0,0,1,0,0,0.0,1.0,22728.095238095237,3,0,3_0,3_0 +11918,0.0,0.0,23.0,111,54,31,0.0,9785,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,4702.753683235891,0.0,0.0,7773.0,4,2,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,7773.0,1,0,1_0,1_0 +11919,13.0,13.0,61.0,112,13,70,0.0,9786,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1781.0004517001196,2922.4,0.0,34564.0,1,1,4,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,23042.666666666668,3,0,3_0,3_1 +11920,2.0,8.0,39.0,112,43,31,0.0,9787,0.0,950.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2956.046759081282,3224.0,0.0,78545.0,1,2,9,1.0,4,4.0,0.0,1.0,0,1,0,0,0,0,0.0,4.0,37402.380952380954,5,0,5,5_0 +11921,0.0,0.0,22.0,111,43,30,0.0,9788,0.0,0.0,0.0,231.0,1.0,3.0,0.0,2.0,1.5,2767.4458776644583,1155.96,0.0,23470.0,4,3,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,15646.666666666666,2,0,2_1,2_0 +11922,1.0,6.0,39.0,112,48,31,2.0,9789,0.0,900.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,2017.3847685509718,0.0,7900.0,54688.0,1,2,8,1.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,21033.846153846152,3,0,3_0,3_0 +11923,0.0,0.0,72.0,300,78,50,0.0,9790,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2632.7851380015823,0.0,0.0,23654.0,5,3,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15769.333333333334,2,0,2_0,2_0 +11924,0.0,7.0,62.0,111,74,42,0.0,9792,0.0,0.0,0.0,1170.0,0.0,3.0,0.0,1.0,1.0,4206.043578811341,0.0,0.0,26213.0,5,3,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,26213.0,4,0,4_0,4_0 +11925,0.0,0.0,58.0,111,62,43,0.0,9794,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,1941.3520979287962,0.0,0.0,14532.0,4,4,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14532.0,2,0,2_0,2_0 +11926,5.0,5.0,53.0,300,46,50,0.0,9795,0.0,0.0,0.0,0.0,1.0,8.0,0.0,1.0,1.0,1597.4170566514053,2860.0,0.0,24660.0,1,2,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,24660.0,4,0,4_0,4_1 +11927,0.0,0.0,50.0,120,22,31,0.0,9796,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,1436.3010597655239,1040.0,0.0,35359.0,1,2,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,23572.666666666668,3,0,3_0,3_1 +11928,6.0,8.0,60.0,111,33,31,0.0,9799,0.0,60.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3076.6218081571214,0.0,0.0,64969.0,1,1,10,8.0,3,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,43312.666666666664,5,0,5,5_0 +11929,0.0,0.0,82.0,211,71,71,0.0,9800,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,1171.7109291142829,0.0,0.0,15133.0,5,4,2,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,15133.0,2,0,2_0,2_0 +11930,9.0,9.0,41.0,111,68,50,0.0,9802,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,2927.786353661635,0.0,0.0,33577.0,1,2,8,6.0,4,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,14598.695652173914,2,0,2_0,2_0 +11931,0.0,0.0,58.0,111,31,20,0.0,9804,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.5,3094.1372036635926,2600.0,0.0,96347.0,1,1,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,38538.8,5,0,5,5_0 +11932,0.0,0.0,33.0,111,38,30,0.0,9805,0.0,0.0,0.0,0.0,2.0,3.0,1.0,3.0,1.8,3102.867215034922,0.0,0.0,49477.0,1,2,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,27487.222222222223,4,0,4_0,4_0 +11933,0.0,7.0,59.0,112,48,50,0.0,9807,0.0,100.0,0.0,0.0,1.0,5.0,1.0,3.0,2.0,2419.3294679034925,6032.0,0.0,79875.0,1,4,8,3.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,39937.5,5,0,5,5_0 +11934,2.0,5.0,50.0,221,46,31,0.0,9808,0.0,50.0,0.0,0.0,2.0,5.0,1.0,3.0,2.0,13026.193749333182,5230.16,0.0,51110.0,1,1,1,2.0,4,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,25555.0,4,0,4_0,4_0 +11935,0.0,0.0,67.0,111,75,50,0.0,9809,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2043.0745064918383,1040.0,0.0,33934.0,5,1,10,8.0,3,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,22622.666666666668,3,0,3_0,3_0 +11936,0.0,0.0,47.0,111,37,30,0.0,981,0.0,0.0,0.0,0.0,1.0,2.0,0.0,1.0,1.0,3035.582774723398,0.0,0.0,18098.0,4,2,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,18098.0,2,0,2_0,2_0 +11937,6.0,11.0,80.0,111,75,71,0.0,9811,0.0,0.0,100.0,0.0,0.0,4.0,0.0,2.0,1.5,1206.0822903116818,0.0,0.0,25715.0,5,1,9,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,17143.333333333332,2,0,2_0,2_0 +11938,6.0,6.0,82.0,111,74,30,0.0,9813,0.0,50.0,0.0,75.0,0.0,1.0,0.0,1.0,1.0,4093.07734299224,0.0,0.0,19280.0,5,3,10,8.0,1,3.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,19280.0,3,0,3_0,3_0 +11939,0.0,7.0,41.0,111,52,50,0.0,9814,0.0,0.0,0.0,750.0,2.0,3.0,1.0,3.0,1.8,2983.95964427771,3120.0,0.0,33280.0,1,3,10,8.0,4,1.0,1.0,0.0,0,0,0,0,1,0,0.0,1.0,18488.888888888887,2,0,2_0,2_0 +11940,1.0,7.0,42.0,111,56,41,2.0,9816,0.0,320.0,0.0,0.0,1.0,3.0,2.0,3.0,1.6,797.3811944102017,2600.0,4400.0,16480.0,1,3,6,4.0,2,2.0,0.0,1.0,0,0,1,0,0,1,0.0,2.0,10300.0,1,0,1_1,1_0 +11941,1.0,1.0,30.0,111,56,50,0.0,9817,0.0,0.0,0.0,138.0,2.0,5.0,4.0,6.0,2.7,665.5133762490374,2600.0,0.0,39482.0,1,3,6,4.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,14622.962962962962,2,0,2_1,2_0 +11942,7.0,7.0,66.0,111,75,50,0.0,9818,0.0,0.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,1842.3430917707562,0.0,0.0,14362.0,5,1,5,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,14362.0,2,0,2_0,2_0 +11943,2.0,10.0,47.0,112,69,42,0.0,9819,0.0,500.0,0.0,0.0,2.0,6.0,2.0,4.0,2.5,2420.501410257524,0.0,0.0,24067.0,1,1,7,2.0,4,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,9626.8,1,0,1_0,1_0 +11944,0.0,0.0,34.0,111,68,71,0.0,982,0.0,0.0,0.0,0.0,1.0,3.0,3.0,5.0,2.4,3622.729753512403,0.0,0.0,29656.0,1,3,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,12356.666666666668,1,0,1_1,1_0 +11945,1.0,15.0,71.0,111,75,50,2.0,9821,0.0,400.0,0.0,612.0,0.0,4.0,0.0,1.0,1.0,2467.933459829721,0.0,1600.0,28490.0,5,3,5,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,28490.0,4,0,4_0,4_0 +11946,0.0,0.0,48.0,111,37,60,0.0,9822,0.0,0.0,0.0,0.0,2.0,4.0,3.0,4.0,2.5,736.0892512221288,0.0,0.0,57247.0,1,2,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,22898.8,3,0,3_0,3_0 +11947,2.0,5.0,73.0,112,75,44,0.0,9823,0.0,750.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1850.1248023811834,0.0,0.0,48425.0,5,1,7,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,32283.333333333332,5,0,5,5_1 +11948,0.0,0.0,56.0,120,63,50,0.0,9824,0.0,0.0,0.0,0.0,2.0,7.0,0.0,2.0,1.5,1331.7499240330903,0.0,0.0,40949.0,1,1,0,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,27299.333333333332,4,0,4_0,4_1 +11949,0.0,19.0,57.0,120,56,50,0.0,9826,0.0,0.0,0.0,0.0,1.0,7.0,0.0,4.0,2.1,3058.917400480646,354.12,0.0,28059.0,1,1,0,0.0,5,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13361.42857142857,1,0,1_0,1_1 +11950,0.0,10.0,36.0,120,37,31,0.0,9828,0.0,0.0,0.0,0.0,2.0,6.0,2.0,4.0,2.1,2255.492885966795,760.76,0.0,50383.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23991.90476190476,4,0,4_0,4_1 +11951,9.0,9.0,76.0,111,86,71,0.0,9829,0.0,0.0,0.0,235.0,0.0,5.0,0.0,1.0,1.0,1718.9746542433804,0.0,0.0,13424.0,5,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13424.0,1,0,1_1,1_0 +11952,15.0,20.0,37.0,112,35,30,0.0,983,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2411.3817135378367,1600.04,0.0,41856.0,1,1,9,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,19931.42857142857,3,0,3_0,3_0 +11953,0.0,0.0,45.0,211,34,20,0.0,9830,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,3189.429254913989,0.0,0.0,49981.0,1,2,1,2.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19992.4,3,0,3_0,3_0 +11954,2.0,2.0,39.0,111,65,50,0.0,9831,0.0,0.0,0.0,473.0,1.0,6.0,3.0,5.0,2.8,2297.5152957378655,0.0,0.0,33902.0,1,3,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,1,0.0,1.0,12107.857142857143,1,0,1_1,1_0 +11955,0.0,0.0,54.0,111,52,71,0.0,9832,0.0,0.0,0.0,490.0,2.0,2.0,1.0,2.0,1.5,4182.313394048455,0.0,0.0,29753.0,2,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,19835.333333333332,3,0,3_0,3_0 +11956,12.0,12.0,34.0,112,47,31,0.0,9833,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1702.4772991412087,0.0,0.0,70403.0,1,2,10,3.0,4,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,33525.23809523809,5,0,5,5_0 +11957,7.0,7.0,36.0,112,47,31,0.0,9834,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1971.9189213725597,2644.2000000000003,0.0,50422.0,1,2,7,1.0,4,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,24010.47619047619,4,0,4_0,4_0 +11958,1.0,16.0,41.0,112,68,71,2.0,9838,0.0,0.0,0.0,135.0,1.0,5.0,4.0,6.0,2.7,660.8729597263294,1820.0,900.0,28780.0,4,3,8,1.0,4,2.0,0.0,0.0,0,1,0,0,0,1,1.0,1.0,10659.25925925926,1,0,1_1,1_0 +11959,0.0,0.0,71.0,111,77,50,0.0,9839,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,1776.4326165818404,0.0,0.0,43577.0,5,4,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,29051.333333333332,4,0,4_0,4_0 +11960,0.0,0.0,55.0,111,62,50,0.0,984,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1754.5717859472088,0.0,0.0,43440.0,1,3,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,28960.0,4,0,4_0,4_0 +11961,0.0,0.0,28.0,111,56,43,0.0,9840,0.0,0.0,0.0,0.0,1.0,4.0,3.0,5.0,2.4,736.8539289617557,0.0,0.0,22014.0,4,3,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,9172.5,1,0,1_1,1_0 +11962,5.0,18.0,46.0,111,34,20,0.0,9841,0.0,0.0,0.0,0.0,2.0,6.0,3.0,5.0,2.6,1848.8024294515603,0.0,0.0,87153.0,1,2,5,4.0,4,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,33520.38461538462,5,0,5,5_0 +11963,3.0,4.0,59.0,300,77,71,0.0,9843,0.0,750.0,35.0,0.0,2.0,4.0,1.0,3.0,2.0,2690.556403322022,0.0,0.0,28987.0,7,1,0,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,14493.5,2,0,2_0,2_1 +11964,0.0,0.0,52.0,111,85,50,0.0,9844,0.0,0.0,0.0,0.0,0.0,5.0,2.0,4.0,2.3,4207.47212167825,2600.0,0.0,25230.0,5,1,6,4.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,10969.565217391306,1,0,1_0,1_0 +11965,3.0,6.0,69.0,111,75,70,0.0,9845,0.0,0.0,200.0,0.0,0.0,8.0,0.0,2.0,1.5,2030.5231503941109,2860.0,0.0,51228.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,1.0,1.0,34152.0,5,0,5,5_0 +11966,6.0,11.0,45.0,112,37,43,0.0,9846,0.0,0.0,0.0,1850.0,2.0,4.0,1.0,3.0,2.0,1883.571871063062,0.0,0.0,84240.0,1,3,9,2.0,4,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,42120.0,5,0,5,5_0 +11967,0.0,0.0,75.0,112,75,70,0.0,9847,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2121.836876280326,671.84,0.0,23814.0,5,1,9,0.0,3,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,15876.0,2,0,2_0,2_1 +11968,0.0,0.0,65.0,112,75,50,0.0,9848,0.0,0.0,0.0,0.0,0.0,4.0,0.0,3.0,2.0,4436.2192646806,3697.2,0.0,38677.0,5,1,6,1.0,5,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,19338.5,3,0,3_0,3_0 +11969,1.0,1.0,27.0,111,37,20,1.0,9849,0.0,0.0,0.0,452.0,2.0,2.0,0.0,2.0,1.5,2844.290730601298,0.0,16000.0,62030.0,1,3,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,41353.333333333336,5,0,5,5_0 +11970,5.0,5.0,44.0,111,33,20,0.0,985,0.0,600.0,0.0,0.0,2.0,4.0,1.0,3.0,1.8,3090.438215683964,0.0,0.0,65930.0,1,2,10,8.0,4,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,36627.777777777774,5,0,5,5_0 +11971,15.0,15.0,33.0,112,43,33,0.0,9850,0.0,99999.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,2058.5217167656674,0.0,0.0,45136.0,1,2,7,0.0,4,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,21493.333333333332,3,0,3_0,3_1 +11972,0.0,13.0,50.0,112,52,50,0.0,9851,0.0,0.0,0.0,414.0,3.0,4.0,2.0,3.0,2.0,4019.678760061328,2080.0,0.0,51890.0,1,3,10,2.0,2,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,25945.0,4,0,4_0,4_0 +11973,6.0,6.0,77.0,111,74,31,0.0,9852,0.0,380.0,0.0,920.0,0.0,4.0,0.0,1.0,1.0,3068.3072193841153,0.0,0.0,66440.0,5,3,9,7.0,1,3.0,0.0,1.0,0,0,0,1,0,0,2.0,1.0,66440.0,5,0,5,5_0 +11974,6.0,11.0,45.0,112,56,50,0.0,9853,0.0,0.0,350.0,0.0,2.0,4.0,3.0,5.0,2.8,1977.486534116128,0.0,0.0,45902.0,1,2,10,0.0,4,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,16393.57142857143,2,0,2_0,2_1 +11975,0.0,0.0,47.0,111,56,71,0.0,9854,0.0,0.0,0.0,0.0,3.0,5.0,2.0,4.0,2.5,4212.808163876721,0.0,0.0,13609.0,1,3,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,5443.6,1,0,1_1,1_0 +11976,0.0,0.0,79.0,112,71,70,1.0,9855,0.0,30.0,0.0,0.0,0.0,6.0,0.0,1.0,1.0,1584.6228595960908,0.0,9990.0,14913.0,5,1,6,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14913.0,2,0,2_0,2_1 +11977,11.0,12.0,19.0,111,84,41,0.0,9857,0.0,0.0,0.0,288.0,0.0,1.0,0.0,1.0,1.0,4278.011370498982,0.0,0.0,8691.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,8691.0,1,0,1_1,1_0 +11978,2.0,3.0,48.0,112,42,20,0.0,9859,0.0,0.0,0.0,0.0,2.0,6.0,0.0,2.0,1.5,2537.955970916121,0.0,0.0,46449.0,1,1,7,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,30966.0,4,0,4_0,4_1 +11979,6.0,7.0,32.0,112,43,50,0.0,986,0.0,99999.0,0.0,0.0,2.0,4.0,2.0,4.0,2.1,3152.7250147387695,0.0,0.0,45360.0,1,2,8,0.0,4,3.0,1.0,1.0,1,0,0,0,0,0,1.0,2.0,21600.0,3,0,3_0,3_1 +11980,2.0,2.0,75.0,111,86,71,0.0,9861,0.0,175.0,0.0,373.0,0.0,4.0,0.0,1.0,1.0,1497.3266718788316,0.0,0.0,18770.0,6,3,7,4.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,18770.0,3,0,3_0,3_0 +11981,1.0,3.0,62.0,111,86,20,2.0,9863,0.0,0.0,0.0,0.0,0.0,2.0,0.0,2.0,1.5,2252.1571392103633,0.0,8000.0,35080.0,5,1,10,8.0,3,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,23386.666666666668,3,0,3_0,3_0 +11982,9.0,14.0,37.0,221,37,71,0.0,9864,0.0,0.0,250.0,0.0,2.0,4.0,2.0,4.0,2.1,2750.8179304962487,1560.0,0.0,30523.0,1,2,1,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,14534.761904761905,2,0,2_0,2_0 +11983,0.0,0.0,68.0,111,75,50,0.0,9866,0.0,0.0,0.0,397.0,0.0,2.0,0.0,1.0,1.0,2403.1267012583317,0.0,0.0,14786.0,5,3,9,7.0,1,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,14786.0,2,0,2_0,2_0 +11984,7.0,7.0,71.0,300,78,60,0.0,9867,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,678.5308828626678,1040.0,0.0,24750.0,5,3,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,16500.0,2,0,2_0,2_0 +11985,0.0,11.0,62.0,111,77,70,0.0,9868,0.0,0.0,0.0,205.0,0.0,3.0,1.0,2.0,1.5,1386.6017344199304,0.0,0.0,17640.0,5,3,8,6.0,2,1.0,1.0,0.0,0,0,1,0,0,1,0.0,1.0,11760.0,1,0,1_1,1_0 +11986,17.0,17.0,83.0,111,77,71,0.0,9869,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2154.5517083013847,0.0,0.0,39520.0,5,1,5,4.0,3,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,26346.666666666668,4,0,4_0,4_0 +11987,5.0,5.0,81.0,112,74,30,0.0,9870,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1746.5429187773343,0.0,0.0,41737.0,5,1,9,2.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,27824.666666666668,4,0,4_0,4_0 +11988,14.0,14.0,73.0,111,72,12,0.0,9871,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,1885.3029449176393,2496.0,0.0,100909.0,5,1,8,6.0,3,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,67272.66666666667,5,0,5,5_0 +11989,0.0,7.0,50.0,120,46,31,0.0,9874,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.3,1351.0249313162226,3644.16,0.0,51862.0,1,2,0,3.0,4,1.0,1.0,0.0,0,1,0,0,0,0,1.0,0.0,22548.695652173916,3,0,3_0,3_0 +11990,3.0,3.0,42.0,111,55,43,0.0,9875,0.0,0.0,0.0,430.0,1.0,4.0,2.0,4.0,2.3,2771.6003140671933,624.0,0.0,31833.0,1,3,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,13840.434782608696,1,0,1_1,1_0 +11991,10.0,23.0,76.0,111,74,30,0.0,9876,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,2021.918797917637,2392.0,0.0,36861.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,24574.0,4,0,4_0,4_0 +11992,8.0,12.0,46.0,112,55,31,0.0,9877,0.0,0.0,200.0,0.0,2.0,4.0,2.0,4.0,2.5,1399.8540448593405,0.0,0.0,49474.0,1,2,6,0.0,4,3.0,1.0,0.0,1,0,0,0,0,0,1.0,2.0,19789.6,3,0,3_0,3_1 +11993,4.0,11.0,37.0,111,46,20,0.0,9878,0.0,700.0,0.0,0.0,1.0,5.0,2.0,3.0,1.6,2026.5958006432436,0.0,0.0,38012.0,1,2,8,7.0,2,3.0,0.0,0.0,0,0,0,1,0,0,0.0,3.0,23757.5,3,0,3_0,3_0 +11994,16.0,16.0,31.0,111,54,31,0.0,9879,0.0,0.0,50.0,93.0,2.0,4.0,3.0,5.0,2.4,1069.103803617394,1343.1599999999999,0.0,38998.0,1,3,8,6.0,4,3.0,0.0,1.0,0,0,1,0,0,1,2.0,1.0,16249.166666666668,2,0,2_1,2_0 +11995,0.0,0.0,64.0,111,86,50,0.0,9880,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1935.4959774466997,0.0,0.0,30526.0,5,1,10,8.0,1,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,30526.0,4,0,4_0,4_0 +11996,3.0,3.0,53.0,300,56,50,0.0,9881,0.0,2000.0,0.0,560.0,1.0,3.0,1.0,2.0,1.5,2292.0710939239516,0.0,0.0,19230.0,1,3,0,1.0,2,2.0,1.0,1.0,0,1,0,0,0,0,1.0,1.0,12820.0,1,0,1_0,1_0 +11997,0.0,0.0,60.0,211,46,50,0.0,9883,0.0,0.0,0.0,0.0,3.0,6.0,2.0,4.0,2.5,1492.6046929677482,3016.0,0.0,64310.0,1,2,2,3.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,25724.0,4,0,4_0,4_0 +11998,9.0,12.0,59.0,111,52,50,0.0,9884,0.0,0.0,40.0,449.0,2.0,3.0,1.0,2.0,1.5,2145.365042206447,0.0,0.0,19153.0,1,3,8,7.0,2,2.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,12768.666666666666,1,0,1_0,1_0 +11999,6.0,6.0,85.0,120,77,71,0.0,9885,0.0,99999.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2982.528410462787,0.0,0.0,11545.0,5,1,0,0.0,1,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11545.0,1,0,1_0,1_1 +12000,0.0,0.0,50.0,111,37,71,0.0,9886,0.0,0.0,0.0,0.0,1.0,3.0,1.0,2.0,1.5,1234.0593443820687,0.0,0.0,58632.0,1,3,9,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,39088.0,5,0,5,5_0 +12001,4.0,4.0,19.0,111,84,30,0.0,9887,0.0,0.0,0.0,322.0,0.0,2.0,0.0,1.0,1.0,3258.2517895588658,0.0,0.0,3033.0,3,3,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,1,0.0,1.0,3033.0,1,0,1_1,1_0 +12002,10.0,11.0,52.0,111,13,50,0.0,9888,0.0,160.0,0.0,0.0,3.0,7.0,3.0,5.0,2.8,1933.05330796598,2600.0,0.0,46530.0,1,2,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,16617.857142857145,2,0,2_0,2_0 +12003,0.0,0.0,66.0,120,74,50,0.0,989,0.0,0.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,1564.9057505673147,2080.0,0.0,69868.0,5,1,0,1.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,46578.666666666664,5,0,5,5_0 +12004,0.0,0.0,89.0,111,77,70,0.0,9891,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,3001.3664568386525,0.0,0.0,30040.0,5,1,7,5.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30040.0,4,0,4_0,4_0 +12005,3.0,5.0,33.0,300,46,31,0.0,9893,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2736.983601388817,4639.4400000000005,0.0,74729.0,1,2,0,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,41516.11111111111,5,0,5,5_1 +12006,9.0,14.0,48.0,112,47,42,0.0,9894,0.0,0.0,0.0,0.0,3.0,4.0,2.0,4.0,2.5,1727.8730753879158,3463.72,0.0,49380.0,1,1,9,0.0,4,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,19752.0,3,0,3_0,3_1 +12007,0.0,0.0,24.0,120,63,44,0.0,9895,0.0,0.0,0.0,0.0,1.0,3.0,0.0,1.0,1.0,3312.7978830500792,2288.0,0.0,27791.0,1,3,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,27791.0,4,0,4_0,4_0 +12008,0.0,0.0,79.0,120,78,71,0.0,9897,0.0,0.0,0.0,0.0,0.0,3.0,1.0,2.0,1.5,3752.7680342039016,3120.0,0.0,30012.0,5,3,0,0.0,2,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,20008.0,3,0,3_0,3_1 +12009,3.0,11.0,55.0,111,63,70,0.0,9899,0.0,0.0,80.0,0.0,1.0,4.0,0.0,1.0,1.0,2208.0893524808776,416.0,0.0,24852.0,1,2,9,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,24852.0,4,0,4_0,4_0 +12010,4.0,4.0,77.0,111,75,44,0.0,990,0.0,0.0,99999.0,0.0,1.0,5.0,1.0,3.0,2.0,856.9681905398002,1464.32,0.0,63900.0,5,1,9,7.0,4,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,31950.0,5,0,5,5_0 +12011,6.0,8.0,77.0,111,75,44,0.0,9900,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1424.759375932751,3536.0,0.0,48224.0,5,1,6,5.0,3,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,32149.333333333332,5,0,5,5_0 +12012,7.0,7.0,49.0,111,38,31,0.0,9901,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,1491.3970438829149,6241.04,0.0,127594.0,1,2,9,7.0,4,2.0,0.0,0.0,0,0,0,1,0,0,1.0,1.0,55475.65217391305,5,0,5,5_0 +12013,0.0,0.0,23.0,111,85,71,0.0,9902,0.0,0.0,0.0,0.0,0.0,3.0,2.0,3.0,1.6,2903.9352749575205,0.0,0.0,18156.0,6,3,6,4.0,2,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,11347.5,1,0,1_1,1_0 +12014,5.0,5.0,53.0,211,77,71,0.0,9906,0.0,0.0,0.0,0.0,1.0,4.0,2.0,4.0,2.3,2144.656530843731,520.0,0.0,22425.0,7,3,1,3.0,4,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,9750.0,1,0,1_1,1_0 +12015,9.0,14.0,73.0,111,74,60,0.0,9907,0.0,650.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1553.0990413894667,0.0,0.0,72130.0,5,1,8,7.0,3,2.0,1.0,0.0,0,0,0,1,0,0,0.0,2.0,48086.666666666664,5,0,5,5_0 +12016,0.0,0.0,56.0,112,77,12,0.0,9909,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1818.4316784477476,2288.0,0.0,33902.0,5,1,9,2.0,3,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,22601.333333333332,3,0,3_0,3_0 +12017,2.0,7.0,71.0,120,75,41,0.0,9911,0.0,99999.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1600.010479394784,2288.52,0.0,51729.0,5,4,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,34486.0,5,0,5,5_1 +12018,8.0,12.0,83.0,120,75,60,0.0,9912,0.0,0.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2459.495404920931,2804.36,0.0,53620.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,35746.666666666664,5,0,5,5_1 +12019,6.0,6.0,31.0,111,85,71,0.0,9913,0.0,99999.0,99999.0,201.0,1.0,5.0,3.0,5.0,2.4,769.1637904633909,1560.0,0.0,24370.0,6,3,8,6.0,5,2.0,1.0,1.0,0,0,1,0,0,1,1.0,1.0,10154.166666666668,1,0,1_1,1_0 +12020,2.0,17.0,68.0,111,78,70,0.0,9915,0.0,326.0,180.0,0.0,0.0,6.0,0.0,2.0,1.5,1675.3046295578654,0.0,0.0,42338.0,5,1,7,5.0,3,3.0,0.0,1.0,0,0,1,0,0,0,1.0,2.0,28225.333333333332,4,0,4_0,4_0 +12021,0.0,0.0,35.0,111,31,10,0.0,9916,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2590.0144426346947,0.0,0.0,66996.0,1,3,8,7.0,4,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,37220.0,5,0,5,5_0 +12022,5.0,16.0,66.0,111,75,60,0.0,9919,0.0,0.0,0.0,0.0,0.0,8.0,0.0,2.0,1.5,1485.1877187691941,0.0,0.0,49889.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,33259.333333333336,5,0,5,5_0 +12023,3.0,5.0,45.0,111,54,41,0.0,992,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,1210.446560249282,0.0,0.0,19248.0,1,2,6,5.0,2,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,9624.0,1,0,1_0,1_0 +12024,2.0,2.0,63.0,111,75,42,0.0,9922,0.0,900.0,0.0,0.0,0.0,6.0,0.0,2.0,1.5,2198.4971027152137,2004.6,0.0,56406.0,5,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,37604.0,5,0,5,5_0 +12025,5.0,5.0,30.0,400,63,43,0.0,9923,0.0,0.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1813.480107387681,2212.6,0.0,33133.0,1,3,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22088.666666666668,3,0,3_0,3_0 +12026,4.0,10.0,46.0,300,64,71,0.0,9929,0.0,40.0,0.0,134.0,3.0,4.0,2.0,4.0,2.5,2549.663977112984,2490.7999999999997,0.0,29326.0,1,3,0,1.0,4,2.0,0.0,0.0,0,1,0,0,0,1,0.0,2.0,11730.4,1,0,1_1,1_0 +12027,5.0,7.0,51.0,111,38,41,0.0,993,0.0,0.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,2384.4137950640197,0.0,0.0,96310.0,1,2,8,6.0,4,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,41873.913043478264,5,0,5,5_0 +12028,9.0,10.0,49.0,111,37,20,0.0,9930,0.0,0.0,0.0,0.0,2.0,7.0,1.0,3.0,1.8,1700.6471387080935,0.0,0.0,108113.0,1,2,8,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,60062.777777777774,5,0,5,5_0 +12029,4.0,4.0,65.0,111,75,60,0.0,9931,0.0,100.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2775.158382415258,0.0,0.0,22387.0,5,1,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,22387.0,3,0,3_0,3_0 +12030,4.0,4.0,59.0,111,54,60,0.0,9932,0.0,540.0,0.0,1450.0,2.0,3.0,3.0,5.0,2.8,2283.410929332938,3016.52,0.0,57164.0,1,3,10,8.0,4,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20415.714285714286,3,0,3_0,3_0 +12031,5.0,9.0,27.0,211,38,20,0.0,9934,0.0,0.0,280.0,0.0,2.0,6.0,0.0,2.0,1.5,3239.287152870798,2288.0,0.0,49336.0,1,2,4,4.0,3,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,32890.666666666664,5,0,5,5_0 +12032,8.0,8.0,48.0,120,64,43,0.0,9938,0.0,99999.0,160.0,0.0,3.0,5.0,0.0,3.0,2.0,4086.5267060221927,5980.0,0.0,53312.0,1,2,0,0.0,5,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,26656.0,4,0,4_0,4_1 +12033,2.0,11.0,62.0,111,67,71,0.0,9939,0.0,99999.0,0.0,382.0,1.0,2.0,0.0,1.0,1.0,3137.1007287407283,2080.0,0.0,25260.0,1,3,8,7.0,1,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,25260.0,4,0,4_0,4_0 +12034,0.0,0.0,41.0,112,43,33,0.0,9940,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,1730.0667122885436,3121.04,0.0,63760.0,1,1,8,1.0,4,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,30361.90476190476,4,0,4_0,4_0 +12035,2.0,2.0,54.0,400,65,60,0.0,9942,0.0,0.0,0.0,0.0,2.0,6.0,1.0,3.0,1.8,1611.7120371101068,0.0,0.0,53496.0,1,1,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,29720.0,4,0,4_0,4_1 +12036,0.0,0.0,39.0,111,21,43,0.0,9944,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3676.1553780709905,1824.1599999999999,0.0,51134.0,1,2,8,6.0,4,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,24349.52380952381,4,0,4_0,4_0 +12037,3.0,3.0,49.0,400,47,50,0.0,9945,0.0,0.0,0.0,0.0,2.0,5.0,0.0,2.0,1.5,1545.8333155183393,0.0,0.0,33720.0,1,2,0,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,22480.0,3,0,3_0,3_0 +12038,8.0,8.0,23.0,111,56,71,0.0,9948,0.0,450.0,0.0,340.0,2.0,3.0,0.0,2.0,1.5,4616.732769945467,0.0,0.0,25222.0,1,3,8,7.0,3,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,16814.666666666668,2,0,2_0,2_0 +12039,11.0,13.0,27.0,112,42,0,0.0,9949,0.0,392.0,0.0,600.0,1.0,2.0,0.0,1.0,1.0,4710.229263447096,0.0,0.0,21880.0,1,3,10,2.0,1,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,21880.0,3,0,3_0,3_0 +12040,8.0,8.0,65.0,400,75,60,0.0,995,0.0,0.0,0.0,248.0,0.0,2.0,0.0,1.0,1.0,2720.581524879695,0.0,0.0,11776.0,5,3,0,0.0,1,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,11776.0,1,0,1_0,1_1 +12041,0.0,0.0,61.0,111,,10,0.0,9950,0.0,0.0,0.0,0.0,0.0,7.0,0.0,2.0,1.5,1217.7562397050206,1911.52,0.0,109506.0,1,1,9,7.0,3,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,73004.0,5,0,5,5_0 +12042,6.0,11.0,86.0,400,71,70,0.0,9951,0.0,0.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1968.4159963894003,0.0,0.0,20883.0,5,1,0,0.0,3,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,13922.0,2,0,2_0,2_1 +12043,6.0,9.0,88.0,111,77,71,0.0,9952,0.0,0.0,0.0,440.0,0.0,2.0,0.0,1.0,1.0,3752.682107326639,0.0,0.0,16130.0,5,3,7,5.0,1,1.0,1.0,0.0,0,0,1,0,0,0,1.0,0.0,16130.0,2,0,2_0,2_0 +12044,0.0,0.0,50.0,120,85,50,0.0,9953,0.0,0.0,0.0,0.0,0.0,8.0,0.0,1.0,1.0,1345.621064169465,0.0,0.0,8807.0,7,1,0,3.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,8807.0,1,0,1_0,1_0 +12045,7.0,7.0,76.0,111,74,50,0.0,9954,0.0,99999.0,0.0,0.0,0.0,4.0,0.0,2.0,1.5,1815.5114304146068,0.0,0.0,40293.0,5,1,5,4.0,3,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,26862.0,4,0,4_0,4_0 +12046,13.0,13.0,45.0,112,37,41,0.0,9955,0.0,0.0,0.0,0.0,2.0,7.0,2.0,4.0,2.1,2240.7253201235094,0.0,0.0,62821.0,1,2,10,2.0,4,2.0,0.0,0.0,0,1,0,0,0,0,1.0,1.0,29914.761904761905,4,0,4_0,4_0 +12047,8.0,8.0,37.0,300,85,70,0.0,9956,0.0,498.0,0.0,0.0,0.0,6.0,4.0,5.0,2.2,750.3210450484703,0.0,0.0,26710.0,6,3,0,0.0,2,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,12140.90909090909,1,0,1_1,1_1 +12048,9.0,13.0,66.0,111,75,50,0.0,9957,0.0,150.0,0.0,0.0,0.0,5.0,0.0,1.0,1.0,2586.685575262374,0.0,0.0,21230.0,5,1,10,8.0,1,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,21230.0,3,0,3_0,3_0 +12049,5.0,5.0,65.0,112,74,30,0.0,9958,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,2242.69608628018,3903.64,0.0,47181.0,5,1,7,0.0,3,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,31454.0,4,0,4_0,4_1 +12050,20.0,22.0,43.0,111,37,31,0.0,9959,0.0,0.0,0.0,0.0,1.0,1.0,0.0,1.0,1.0,2775.540791912759,0.0,0.0,76647.0,1,1,10,8.0,1,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,76647.0,5,0,5,5_0 +12051,0.0,0.0,70.0,400,74,60,0.0,996,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2270.4230798251565,0.0,0.0,31332.0,5,1,0,1.0,1,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,31332.0,4,0,4_0,4_0 +12052,3.0,4.0,33.0,112,13,43,0.0,9960,0.0,650.0,0.0,0.0,2.0,4.0,0.0,2.0,1.5,1956.3337795466048,0.0,0.0,37908.0,1,4,9,0.0,3,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,25272.0,4,0,4_0,4_1 +12053,5.0,5.0,53.0,112,48,50,0.0,9964,0.0,0.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1505.3639526663535,3332.6800000000003,0.0,49590.0,1,1,8,1.0,3,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,33060.0,5,0,5,5_0 +12054,0.0,0.0,46.0,111,52,30,0.0,9966,0.0,0.0,0.0,0.0,1.0,4.0,2.0,3.0,2.0,701.4999855439105,2081.04,0.0,18273.0,1,3,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,1,0.0,0.0,9136.5,1,0,1_1,1_0 +12055,0.0,0.0,51.0,112,68,71,0.0,9967,0.0,0.0,0.0,215.0,1.0,2.0,0.0,2.0,1.5,2203.657471678127,0.0,0.0,13353.0,4,3,7,0.0,3,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,8902.0,1,0,1_1,1_1 +12056,4.0,4.0,59.0,112,78,71,0.0,9968,0.0,100.0,0.0,0.0,1.0,4.0,0.0,2.0,1.5,3168.655327043829,2875.6,0.0,19155.0,7,1,6,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12770.0,1,0,1_0,1_1 +12057,0.0,0.0,61.0,111,74,12,0.0,9969,0.0,0.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,2727.334252859519,0.0,0.0,20569.0,4,3,6,4.0,1,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,20569.0,3,0,3_0,3_0 +12058,13.0,13.0,65.0,111,22,70,0.0,997,0.0,0.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,2311.838206471371,0.0,0.0,11808.0,5,1,6,4.0,1,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,11808.0,1,0,1_0,1_0 +12059,0.0,0.0,70.0,111,75,50,0.0,9970,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1978.206485236244,3120.0,0.0,46339.0,5,1,8,6.0,3,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,30892.666666666668,4,0,4_0,4_0 +12060,0.0,0.0,44.0,111,43,30,0.0,9971,0.0,0.0,0.0,0.0,1.0,6.0,1.0,2.0,1.3,2272.24125701462,0.0,0.0,20752.0,1,2,8,7.0,2,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,15963.076923076922,2,0,2_0,2_0 +12061,1.0,1.0,45.0,300,42,31,1.0,9972,0.0,50.0,0.0,0.0,2.0,4.0,2.0,4.0,2.3,5703.934791682038,2081.56,12000.0,54750.0,1,2,0,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,23804.34782608696,4,0,4_0,4_1 +12062,17.0,21.0,51.0,112,45,60,0.0,9974,0.0,0.0,0.0,483.0,1.0,2.0,0.0,1.0,1.0,3024.8729378059306,2855.84,0.0,25117.0,1,3,10,0.0,1,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,25117.0,4,0,4_0,4_1 +12063,2.0,7.0,59.0,111,46,50,0.0,9975,0.0,40.0,0.0,740.0,3.0,3.0,1.0,3.0,2.0,1613.3428502270694,1560.0,0.0,75711.0,1,3,9,7.0,4,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,37855.5,5,0,5,5_0 +12064,1.0,1.0,35.0,400,64,44,0.0,9976,0.0,0.0,0.0,0.0,2.0,5.0,1.0,3.0,1.8,2138.019907026291,3474.12,0.0,39191.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,21772.777777777777,3,0,3_0,3_1 +12065,2.0,2.0,59.0,111,48,50,0.0,9977,0.0,100.0,170.0,0.0,1.0,5.0,0.0,2.0,1.5,2499.851674901228,0.0,0.0,46396.0,1,1,9,7.0,3,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,30930.666666666668,4,0,4_0,4_0 +12066,8.0,16.0,24.0,111,46,30,0.0,9978,0.0,99999.0,0.0,500.0,1.0,1.0,0.0,1.0,1.0,4689.768671941841,0.0,0.0,25771.0,1,3,8,6.0,1,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,25771.0,4,0,4_0,4_0 +12067,6.0,6.0,76.0,111,72,41,0.0,998,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,2130.415634554482,1567.8,0.0,68259.0,5,1,9,7.0,3,2.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,45506.0,5,0,5,5_0 +12068,0.0,11.0,49.0,111,33,12,0.0,9980,0.0,0.0,0.0,750.0,1.0,3.0,1.0,3.0,2.0,1772.4930903040213,0.0,0.0,6990.0,1,3,9,7.0,4,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,3495.0,1,0,1_0,1_0 +12069,10.0,10.0,67.0,111,78,50,0.0,9981,0.0,0.0,0.0,0.0,0.0,1.0,0.0,1.0,1.0,2227.7158951504634,0.0,0.0,10178.0,5,1,9,7.0,1,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,10178.0,1,0,1_0,1_0 +12070,1.0,4.0,27.0,111,85,44,2.0,9982,0.0,0.0,50.0,697.0,0.0,1.0,0.0,1.0,1.0,3325.4690394718627,380.12,7500.0,18425.0,4,3,10,8.0,1,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,18425.0,2,0,2_1,2_0 +12071,2.0,5.0,59.0,120,74,42,0.0,9984,0.0,480.0,0.0,0.0,1.0,6.0,0.0,2.0,1.5,1933.7032075399036,0.0,0.0,32719.0,5,1,0,0.0,3,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,21812.666666666668,3,0,3_0,3_1 +12072,15.0,15.0,72.0,111,74,20,0.0,9985,0.0,0.0,0.0,0.0,0.0,3.0,0.0,2.0,1.5,2605.1943058447123,3120.0,0.0,73460.0,5,1,10,8.0,3,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,48973.333333333336,5,0,5,5_0 +12073,4.0,4.0,43.0,112,46,60,0.0,9986,0.0,0.0,99999.0,0.0,2.0,6.0,2.0,4.0,2.1,2331.440123262009,0.0,0.0,57812.0,1,2,10,0.0,4,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,27529.52380952381,4,0,4_0,4_1 +12074,0.0,0.0,76.0,300,75,31,0.0,9987,0.0,0.0,0.0,0.0,0.0,4.0,0.0,1.0,1.0,2867.6550921161834,2340.0,0.0,13140.0,5,1,0,0.0,1,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,13140.0,1,0,1_0,1_1 +12075,13.0,13.0,43.0,111,52,71,0.0,9989,0.0,0.0,0.0,61.0,1.0,3.0,2.0,3.0,1.6,1679.090773548411,0.0,0.0,23262.0,1,3,10,8.0,2,1.0,1.0,0.0,0,0,0,0,1,1,0.0,1.0,14538.75,2,0,2_1,2_0 +12076,2.0,2.0,59.0,111,75,50,0.0,9991,0.0,260.0,0.0,340.0,0.0,2.0,0.0,1.0,1.0,4012.447258394524,0.0,0.0,20626.0,5,3,7,6.0,1,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,20626.0,3,0,3_0,3_0 +12077,0.0,0.0,42.0,111,37,12,0.0,9994,0.0,0.0,0.0,0.0,2.0,5.0,2.0,4.0,2.1,3898.397862741176,0.0,0.0,271447.0,1,2,10,8.0,4,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,129260.47619047618,5,0,5,5_0 +12078,10.0,10.0,45.0,111,62,50,0.0,9996,0.0,0.0,120.0,0.0,2.0,5.0,2.0,4.0,2.3,1362.3548224300682,0.0,0.0,48704.0,1,1,6,5.0,4,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,21175.652173913044,3,0,3_0,3_0 +12079,13.0,13.0,65.0,111,75,31,0.0,9997,0.0,0.0,0.0,0.0,0.0,5.0,0.0,2.0,1.5,1547.819779038382,2029.0400000000002,0.0,47554.0,5,1,9,7.0,3,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,31702.666666666668,4,0,4_0,4_0 +12080,1.0,10.0,51.0,120,62,50,2.0,9998,0.0,0.0,0.0,0.0,3.0,5.0,1.0,3.0,2.0,1762.1578389628562,6760.0,4500.0,77057.0,1,2,0,0.0,4,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,38528.5,5,0,5,5_1 diff --git a/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_entd.csv b/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_entd.csv index a639cae4..afcd1e7d 100644 --- a/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_entd.csv +++ b/openfisca_france_indirect_taxation/assets/matching/matching_entd/data_matching_entd.csv @@ -231,7 +231,7 @@ 229,0.0,0.0,60.0,111.0,0.0,31.0,10.0,0.0,1.0,0.0,0.0,554.5,1.0,300.0,0.0,11049602000.0,0.0,5.58,1.0,3.0,0.0,10.0,1.0,1.0,719.77672123,0.0,1.0,1.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,37200.0,5,0,5,5_0 230,0.0,0.0,65.0,111.0,0.0,86.0,60.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11050101000.0,0.0,0.0,0.0,10.0,0.0,9.0,2.0,1.5,739.38229997,0.0,5.0,1.0,10.0,8.0,5.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,27684.0,5,0,5,5_0 231,0.0,0.0,83.0,111.0,0.0,74.0,60.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,11050501000.0,0.0,0.0,0.0,4.0,0.0,3.0,1.0,1.0,581.81933303,0.0,5.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,10656.0,2,0,2_0,2_0 -232,3.0,10.0,33.0,111.0,8.0,33.0,12.0,0.0,1.0,0.0,12000.0,87.69999999999999,1.0,60.0,4.0,11050902000.0,1200.0,0.0,2.0,4.0,3.0,7.0,5.0,2.4,559.73047348,7.0,1.0,4.0,10.0,8.0,4.0,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,12000.0,20004.0,4,0,4_1,4_0 +232,3.0,10.0,33.0,111.0,8.0,33.0,12.0,0.0,1.0,0.0,12000.0,87.7,1.0,60.0,4.0,11050902000.0,1200.0,0.0,2.0,4.0,3.0,7.0,5.0,2.4,559.73047348,7.0,1.0,4.0,10.0,8.0,4.0,1.0,0.0,0.0,0,0,0,0,1,1,1.0,0.0,12000.0,20004.0,4,0,4_1,4_0 233,8.0,0.0,60.0,111.0,0.0,35.0,41.0,0.0,1.0,0.0,2000.0,0.0,1.0,0.0,4.0,11051002000.0,0.0,0.0,1.0,5.0,0.0,10.0,1.0,1.0,463.50720435,0.0,4.0,2.0,10.0,8.0,1.0,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,2000.0,180000.0,5,0,5,5_0 234,8.0,10.0,78.0,111.0,7.5,74.0,41.0,0.0,2.0,0.0,15000.0,0.0,1.0,0.0,3.0,11051102000.0,0.0,0.0,0.0,4.0,0.0,10.0,2.0,1.5,968.57038545,7.0,5.0,2.0,10.0,8.0,3.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15000.0,39996.0,5,0,5,5_0 235,4.0,4.0,61.0,111.0,7.0,74.0,10.0,0.0,1.0,0.0,5000.0,0.0,1.0,0.0,1.0,11051202000.0,0.0,0.0,0.0,5.0,0.0,10.0,1.0,1.0,803.55815595,5.0,5.0,2.0,10.0,8.0,1.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,5000.0,66000.0,5,0,5,5_0 @@ -494,7 +494,7 @@ 492,0.0,0.0,48.0,111.0,0.0,54.0,10.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11109701000.0,180.0,0.0,1.0,2.0,0.0,2.0,1.0,1.0,1146.2996356,0.0,4.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,0.0,8400.0,1,0,1_1,1_0 493,8.0,20.0,65.0,111.0,0.0,78.0,71.0,0.0,1.0,7000.0,0.0,0.0,1.0,0.0,4.0,11109801000.0,500.0,0.0,1.0,3.0,1.0,2.0,3.0,2.0,1426.1940759,6.0,5.0,4.0,10.0,8.0,4.0,1.0,0.0,0.0,0,0,0,0,1,1,0.0,1.0,7000.0,8940.0,1,0,1_1,1_0 494,3.0,12.0,56.0,111.0,7.5,33.0,10.0,0.0,2.0,0.0,15000.0,17.0,1.0,65.0,3.0,11109902000.0,650.0,5.56,1.0,3.0,1.0,6.0,2.0,1.5,1198.4824177,7.0,1.0,4.0,10.0,8.0,2.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,15000.0,17604.0,3,0,3_0,3_0 -495,4.0,4.0,44.0,111.0,5.0,38.0,10.0,0.0,1.0,7000.0,0.0,76.39999999999999,1.0,57.0,1.0,11110002000.0,1000.0,3.3,2.0,4.0,3.0,10.0,5.0,3.0,531.33500272,4.0,1.0,4.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,7000.0,32292.0,5,0,5,5_0 +495,4.0,4.0,44.0,111.0,5.0,38.0,10.0,0.0,1.0,7000.0,0.0,76.4,1.0,57.0,1.0,11110002000.0,1000.0,3.3,2.0,4.0,3.0,10.0,5.0,3.0,531.33500272,4.0,1.0,4.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,7000.0,32292.0,5,0,5,5_0 496,0.0,0.0,41.0,111.0,0.0,52.0,41.0,0.0,4.0,0.0,0.0,67.0,1.0,63.333333333333336,0.0,11110302000.0,800.0,5.56,2.0,4.0,2.0,5.0,4.0,2.1,692.12939038,0.0,1.0,4.0,10.0,8.0,4.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,15936.0,3,0,3_0,3_0 497,4.0,10.0,36.0,111.0,0.0,37.0,12.0,0.0,1.0,0.0,8000.0,59.5,1.0,39.75,4.0,11110401000.0,0.0,5.57,2.0,3.0,2.0,10.0,4.0,2.1,573.5543736,9.0,1.0,1.0,10.0,8.0,4.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,8000.0,40428.0,5,0,5,5_0 498,0.0,0.0,73.0,111.0,0.0,75.0,41.0,0.0,1.0,0.0,0.0,0.0,2.0,0.0,0.0,11110501000.0,0.0,0.0,0.0,3.0,0.0,1.0,1.0,1.0,573.50960585,0.0,5.0,2.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,6792.0,1,0,1_0,1_0 @@ -1150,7 +1150,7 @@ 1148,0.0,0.0,43.0,111.0,0.0,85.0,50.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11214302000.0,380.0,0.0,0.0,1.0,0.0,3.0,1.0,1.0,1081.8197836,0.0,7.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,0.0,10800.0,2,0,2_1,2_0 1149,5.0,5.0,34.0,111.0,0.0,62.0,12.0,0.0,1.0,0.0,10258.0,193.1,1.0,25.6,1.0,11214402000.0,2500.0,0.0,2.0,5.0,3.0,10.0,5.0,2.4,1038.6085895,0.0,1.0,4.0,10.0,8.0,4.0,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,10258.0,37500.0,5,0,5,5_0 1150,6.0,6.0,60.0,111.0,9.0,35.0,12.0,0.0,2.0,0.0,18000.0,93.6,1.0,40.0,1.0,11214502000.0,0.0,2.24,2.0,5.0,0.0,10.0,2.0,1.5,353.27263213,6.0,1.0,2.0,10.0,8.0,3.0,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,18000.0,56004.0,5,0,5,5_0 -1151,0.0,0.0,45.0,111.0,0.0,33.0,10.0,0.0,2.0,0.0,0.0,407.30000000000007,1.0,53.333333333333336,0.0,11214601000.0,0.0,5.56,2.0,6.0,3.0,8.0,5.0,2.8,701.87944183,0.0,1.0,2.0,10.0,8.0,4.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,23148.0,4,0,4_0,4_0 +1151,0.0,0.0,45.0,111.0,0.0,33.0,10.0,0.0,2.0,0.0,0.0,407.3,1.0,53.333333333333336,0.0,11214601000.0,0.0,5.56,2.0,6.0,3.0,8.0,5.0,2.8,701.87944183,0.0,1.0,2.0,10.0,8.0,4.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,23148.0,4,0,4_0,4_0 1152,0.0,0.0,28.0,111.0,0.0,43.0,41.0,0.0,2.0,0.0,0.0,0.0,2.0,30.0,0.0,11214701001.0,917.0,1.1,1.0,3.0,0.0,6.0,1.0,1.0,1405.8462583,0.0,1.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,16800.0,3,0,3_0,3_0 1153,9.0,9.0,72.0,111.0,7.0,46.0,71.0,0.0,1.0,0.0,30000.0,0.0,1.0,0.0,1.0,11214801000.0,0.0,0.0,1.0,2.0,0.0,10.0,2.0,1.5,1130.4839414,5.0,1.0,2.0,10.0,8.0,3.0,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,30000.0,43356.0,5,0,5,5_0 1154,0.0,0.0,63.0,111.0,0.0,75.0,41.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11215202000.0,550.0,0.0,0.0,2.0,0.0,8.0,1.0,1.0,550.29673371,0.0,5.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,22800.0,4,0,4_0,4_0 @@ -1421,7 +1421,7 @@ 1419,0.0,0.0,35.0,111.0,0.0,53.0,50.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,11260901000.0,377.0,0.0,1.0,4.0,3.0,4.0,5.0,2.4,427.08952055,0.0,1.0,4.0,10.0,8.0,4.0,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,0.0,14004.0,2,0,2_1,2_0 1420,0.0,2.0,47.0,111.0,4.5,64.0,50.0,0.0,2.0,12287.0,0.0,233.0,1.0,85.0,3.0,11261001000.0,571.0,3.3,2.0,3.0,1.0,6.0,2.0,1.5,1355.0978523,7.0,1.0,4.0,10.0,8.0,2.0,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,12287.0,16800.0,3,0,3_0,3_0 1421,4.0,9.0,29.0,111.0,0.0,53.0,31.0,0.0,1.0,30311.0,0.0,107.5,1.0,52.5,3.0,11261101000.0,560.0,3.3,2.0,2.0,0.0,9.0,2.0,1.5,1455.7023584,5.0,1.0,4.0,10.0,8.0,3.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,30311.0,28920.0,5,0,5,5_0 -1422,4.0,9.0,32.0,111.0,0.0,37.0,10.0,0.0,2.0,20000.0,0.0,58.99999999999999,1.0,42.0,3.0,11261201000.0,735.0,3.3,2.0,3.0,2.0,7.0,4.0,2.1,581.66094999,6.0,1.0,4.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20000.0,18852.0,4,0,4_0,4_0 +1422,4.0,9.0,32.0,111.0,0.0,37.0,10.0,0.0,2.0,20000.0,0.0,59.0,1.0,42.0,3.0,11261201000.0,735.0,3.3,2.0,3.0,2.0,7.0,4.0,2.1,581.66094999,6.0,1.0,4.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20000.0,18852.0,4,0,4_0,4_0 1423,8.0,8.0,41.0,111.0,10.0,21.0,50.0,0.0,3.0,5000.0,0.0,37.599999999999994,2.0,22.0,1.0,11261602000.0,0.0,0.0,2.0,4.0,3.0,7.0,5.0,2.6,1000.920034,8.0,1.0,2.0,10.0,8.0,4.0,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,5000.0,18384.0,4,0,4_0,4_0 1424,1.0,7.0,54.0,111.0,0.0,67.0,50.0,0.0,1.0,0.0,5952.0,11.0,1.0,30.0,4.0,11261901000.0,350.0,3.3,1.0,3.0,0.0,8.0,1.0,1.0,1310.923691,4.0,1.0,4.0,10.0,8.0,1.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,5952.0,23856.0,4,0,4_0,4_0 1425,0.0,0.0,85.0,111.0,0.0,77.0,71.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,11262002000.0,260.0,0.0,0.0,2.0,0.0,8.0,1.0,1.0,1246.8810069,0.0,5.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,21624.0,4,0,4_0,4_0 @@ -1934,7 +1934,7 @@ 1932,3.0,8.0,36.0,111.0,6.0,22.0,71.0,0.0,1.0,0.0,14400.0,0.0,1.0,0.0,3.0,11348202000.0,1300.0,0.0,2.0,3.0,0.0,9.0,2.0,1.5,1346.3810688,5.0,1.0,4.0,10.0,8.0,3.0,1.0,1.0,0.0,0,0,0,0,1,0,1.0,0.0,14400.0,24000.0,5,0,5,5_0 1933,16.0,0.0,85.0,111.0,0.0,74.0,10.0,0.0,2.0,0.0,5891.0,0.0,2.0,0.0,1.0,11348502000.0,0.0,0.0,0.0,5.0,0.0,10.0,1.0,1.0,892.5929304,0.0,5.0,3.0,10.0,8.0,1.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,5891.0,38400.0,5,0,5,5_0 1934,0.0,0.0,42.0,111.0,0.0,37.0,10.0,0.0,1.0,0.0,0.0,51.1,1.0,80.0,0.0,11348702000.0,0.0,5.56,1.0,3.0,1.0,10.0,2.0,1.3,1178.5144282,0.0,1.0,1.0,10.0,8.0,2.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,53076.0,5,0,5,5_0 -1935,0.0,0.0,29.0,111.0,0.0,63.0,31.0,0.0,1.0,0.0,0.0,101.70000000000002,1.0,51.42857142857143,0.0,11348902000.0,0.0,5.5,4.0,3.0,7.0,2.0,9.0,4.8,877.84910948,0.0,1.0,2.0,10.0,8.0,4.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,8748.0,1,0,1_0,1_0 +1935,0.0,0.0,29.0,111.0,0.0,63.0,31.0,0.0,1.0,0.0,0.0,101.7,1.0,51.42857142857143,0.0,11348902000.0,0.0,5.5,4.0,3.0,7.0,2.0,9.0,4.8,877.84910948,0.0,1.0,2.0,10.0,8.0,4.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,8748.0,1,0,1_0,1_0 1936,0.0,0.0,41.0,111.0,0.0,46.0,20.0,0.0,1.0,0.0,0.0,0.0,1.0,150.0,0.0,11349001000.0,0.0,5.56,1.0,3.0,0.0,7.0,1.0,1.0,1110.238159,0.0,1.0,1.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,18024.0,4,0,4_0,4_0 1937,4.0,4.0,25.0,111.0,9.0,38.0,12.0,0.0,1.0,0.0,12000.0,56.5,1.0,40.0,2.0,11349401000.0,950.0,2.24,2.0,2.0,0.0,10.0,2.0,1.5,1453.8978417,5.0,1.0,4.0,10.0,8.0,3.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,12000.0,30168.0,5,0,5,5_0 1938,11.0,11.0,60.0,111.0,0.0,74.0,12.0,0.0,1.0,0.0,2000.0,0.0,1.0,0.0,1.0,11349603000.0,0.0,0.0,1.0,6.0,1.0,9.0,3.0,2.0,957.0172664,8.0,5.0,2.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,2.0,0.0,2000.0,24876.0,5,0,5,5_0 @@ -3101,7 +3101,7 @@ 3099,3.0,4.0,35.0,111.0,0.0,46.0,20.0,0.0,1.0,20000.0,0.0,48.0,1.0,26.666666666666668,3.0,11545203000.0,0.0,3.3,1.0,4.0,2.0,4.0,3.0,1.6,604.04319679,4.0,1.0,1.0,10.0,8.0,2.0,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,20000.0,13500.0,2,0,2_1,2_0 3100,3.0,6.0,47.0,111.0,6.0,52.0,50.0,0.0,2.0,15000.0,0.0,134.5,1.0,80.0,3.0,11545303000.0,0.0,3.3,2.0,3.0,1.0,7.0,2.0,1.5,924.23306684,5.0,1.0,1.0,10.0,8.0,2.0,2.0,0.0,0.0,0,0,0,0,1,0,0.0,2.0,15000.0,18396.0,4,0,4_0,4_0 3101,0.0,0.0,55.0,111.0,0.0,75.0,71.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11545404000.0,500.0,0.0,0.0,2.0,0.0,8.0,1.0,1.0,604.27262478,0.0,5.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,22800.0,4,0,4_0,4_0 -3102,0.0,0.0,37.0,111.0,0.0,54.0,41.0,0.0,1.0,0.0,0.0,202.39999999999998,1.0,77.5,0.0,11545504000.0,628.0,5.57,2.0,3.0,2.0,4.0,4.0,2.1,692.39665863,0.0,1.0,4.0,10.0,8.0,4.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,13140.0,2,0,2_0,2_0 +3102,0.0,0.0,37.0,111.0,0.0,54.0,41.0,0.0,1.0,0.0,0.0,202.4,1.0,77.5,0.0,11545504000.0,628.0,5.57,2.0,3.0,2.0,4.0,4.0,2.1,692.39665863,0.0,1.0,4.0,10.0,8.0,4.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,13140.0,2,0,2_0,2_0 3103,0.0,0.0,50.0,111.0,0.0,52.0,70.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11545704000.0,450.0,0.0,3.0,4.0,2.0,3.0,4.0,2.5,412.97263696,0.0,1.0,4.0,10.0,8.0,4.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,12000.0,2,0,2_0,2_0 3104,0.0,0.0,64.0,111.0,0.0,21.0,70.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11546002000.0,0.0,0.0,1.0,4.0,0.0,7.0,2.0,1.5,545.46047035,0.0,1.0,2.0,10.0,8.0,3.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,18864.0,4,0,4_0,4_0 3105,5.0,13.0,46.0,111.0,5.0,54.0,43.0,0.0,1.0,16353.0,0.0,91.5,1.0,90.0,3.0,11546101000.0,0.0,5.57,2.0,3.0,1.0,4.0,2.0,1.5,526.32276608,5.0,1.0,1.0,10.0,8.0,2.0,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,16353.0,12972.0,2,0,2_0,2_0 @@ -3188,7 +3188,7 @@ 3186,3.0,3.0,54.0,111.0,4.0,63.0,71.0,0.0,2.0,40000.0,0.0,120.5,2.0,20.0,3.0,11556801000.0,0.0,0.0,2.0,4.0,1.0,5.0,3.0,2.0,983.9235437,0.0,1.0,1.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,40000.0,15000.0,3,0,3_0,3_0 3187,0.0,0.0,77.0,111.0,0.0,78.0,71.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11556901000.0,558.0,0.0,0.0,3.0,0.0,2.0,1.0,1.0,935.69307624,0.0,5.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,0.0,9840.0,1,0,1_1,1_0 3188,3.0,11.0,31.0,111.0,10.0,65.0,71.0,0.0,2.0,15000.0,0.0,91.0,2.0,12.5,4.0,11557001000.0,0.0,3.3,1.0,5.0,2.0,3.0,4.0,2.1,921.71575546,7.0,1.0,1.0,10.0,8.0,4.0,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,15000.0,12000.0,2,0,2_1,2_0 -3189,10.0,11.0,53.0,111.0,5.0,62.0,50.0,0.0,2.0,40000.0,0.0,308.7,1.0,122.5,3.0,11557302000.0,0.0,3.3,3.0,6.0,2.0,6.0,5.0,3.0,739.38229997,4.0,1.0,2.0,10.0,8.0,5.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,40000.0,15996.0,3,0,3_0,3_0 +3189,10.0,11.0,53.0,111.0,5.0,62.0,50.0,0.0,2.0,40000.0,0.0,308.70000000000005,1.0,122.5,3.0,11557302000.0,0.0,3.3,3.0,6.0,2.0,6.0,5.0,3.0,739.38229997,4.0,1.0,2.0,10.0,8.0,5.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,40000.0,15996.0,3,0,3_0,3_0 3190,3.0,14.0,42.0,111.0,0.0,64.0,71.0,0.0,3.0,0.0,2000.0,110.19999999999999,1.0,80.0,3.0,11557402000.0,540.0,3.32,2.0,3.0,0.0,8.0,2.0,1.5,977.30977878,5.0,1.0,4.0,10.0,8.0,3.0,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,2000.0,21600.0,4,0,4_0,4_0 3191,1.0,2.0,36.0,111.0,0.0,52.0,50.0,0.0,2.0,17343.0,0.0,39.5,1.0,25.0,3.0,11557502000.0,505.0,3.31,1.0,3.0,1.0,4.0,2.0,1.3,1358.4668666,4.0,1.0,4.0,10.0,8.0,2.0,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,17343.0,13848.0,2,0,2_1,2_0 3192,2.0,7.0,46.0,111.0,0.0,55.0,50.0,0.0,2.0,25000.0,0.0,42.5,1.0,23.333333333333332,3.0,11557602000.0,600.0,3.3,1.0,3.0,2.0,2.0,3.0,1.6,764.89027867,6.0,1.0,4.0,10.0,8.0,2.0,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,25000.0,9756.0,1,0,1_1,1_0 @@ -3510,7 +3510,7 @@ 3508,2.0,0.0,53.0,111.0,5.3,46.0,71.0,0.0,1.0,38000.0,0.0,24.0,1.0,30.0,1.0,11614402000.0,0.0,3.3,2.0,5.0,2.0,9.0,4.0,2.5,938.45285534,5.0,1.0,2.0,10.0,8.0,4.0,2.0,1.0,0.0,0,0,0,0,1,0,0.0,2.0,38000.0,24000.0,5,0,5,5_0 3509,0.0,0.0,69.0,111.0,0.0,77.0,71.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11614502000.0,393.0,0.0,0.0,2.0,0.0,5.0,1.0,1.0,1327.6977482,0.0,5.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,14400.0,3,0,3_0,3_0 3510,2.0,0.0,59.0,111.0,0.0,23.0,41.0,0.0,1.0,0.0,10704.0,143.1,1.0,82.5,4.0,11614602000.0,1000.0,5.57,3.0,4.0,2.0,9.0,4.0,2.5,1358.0036061,0.0,1.0,4.0,10.0,8.0,4.0,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,10704.0,28800.0,5,0,5,5_0 -3511,2.0,2.0,35.0,111.0,6.0,37.0,20.0,0.0,1.0,10000.0,0.0,377.29999999999995,1.0,65.0,1.0,11614802000.0,1271.0,5.57,2.0,3.0,2.0,9.0,4.0,2.1,1078.478017,5.0,1.0,4.0,10.0,8.0,4.0,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,10000.0,29916.0,5,0,5,5_0 +3511,2.0,2.0,35.0,111.0,6.0,37.0,20.0,0.0,1.0,10000.0,0.0,377.3,1.0,65.0,1.0,11614802000.0,1271.0,5.57,2.0,3.0,2.0,9.0,4.0,2.1,1078.478017,5.0,1.0,4.0,10.0,8.0,4.0,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,10000.0,29916.0,5,0,5,5_0 3512,0.0,0.0,75.0,111.0,0.0,77.0,70.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11615101000.0,333.0,0.0,0.0,4.0,0.0,6.0,1.0,1.0,1276.0691872,0.0,5.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,16464.0,3,0,3_0,3_0 3513,7.0,7.0,58.0,111.0,7.0,75.0,33.0,0.0,1.0,0.0,1000.0,0.0,1.0,0.0,1.0,11615501000.0,0.0,0.0,0.0,3.0,0.0,9.0,1.0,1.0,1004.9787474,5.0,5.0,2.0,10.0,8.0,1.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,1000.0,24000.0,5,0,5,5_0 3514,6.0,6.0,74.0,111.0,7.0,74.0,12.0,0.0,1.0,0.0,5500.0,0.0,1.0,0.0,1.0,11615802000.0,0.0,0.0,0.0,3.0,0.0,7.0,2.0,1.5,631.27973702,7.0,5.0,2.0,10.0,8.0,3.0,2.0,0.0,0.0,0,0,0,0,1,0,2.0,0.0,5500.0,19116.0,4,0,4_0,4_0 @@ -3521,7 +3521,7 @@ 3519,6.0,6.0,52.0,111.0,7.0,33.0,12.0,0.0,1.0,0.0,18568.0,105.5,1.0,73.0,3.0,11616501000.0,0.0,3.3,2.0,4.0,2.0,10.0,4.0,2.5,506.222495,7.0,1.0,1.0,10.0,8.0,4.0,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,18568.0,30228.0,5,0,5,5_0 3520,7.0,7.0,49.0,111.0,8.0,35.0,12.0,0.0,2.0,0.0,12000.0,162.4,2.0,56.0,1.0,11616702000.0,0.0,5.57,2.0,7.0,2.0,9.0,4.0,2.3,943.22066143,7.0,1.0,1.0,10.0,8.0,4.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,12000.0,26088.0,5,0,5,5_0 3521,4.0,4.0,53.0,111.0,5.0,34.0,12.0,0.0,1.0,7250.0,10000.0,168.0,1.0,30.0,2.0,11616902000.0,0.0,3.3,2.0,7.0,1.0,9.0,4.0,2.5,739.38229997,5.0,1.0,1.0,10.0,8.0,5.0,3.0,0.0,1.0,0,0,0,0,1,0,1.5,1.5,17250.0,24684.0,5,0,5,5_0 -3522,3.0,3.0,35.0,111.0,7.0,38.0,20.0,0.0,2.0,20000.0,0.0,228.60000000000002,2.0,85.0,1.0,11617101000.0,0.0,3.3,2.0,6.0,2.0,10.0,4.0,2.1,528.13945866,7.0,1.0,1.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20000.0,32004.0,5,0,5,5_0 +3522,3.0,3.0,35.0,111.0,7.0,38.0,20.0,0.0,2.0,20000.0,0.0,228.6,2.0,85.0,1.0,11617101000.0,0.0,3.3,2.0,6.0,2.0,10.0,4.0,2.1,528.13945866,7.0,1.0,1.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,20000.0,32004.0,5,0,5,5_0 3523,1.0,8.0,50.0,111.0,6.0,31.0,10.0,0.0,2.0,0.0,8000.0,40.9,1.0,33.333333333333336,1.0,11617201000.0,0.0,0.0,2.0,8.0,1.0,10.0,3.0,2.0,589.94849976,5.0,1.0,1.0,10.0,8.0,4.0,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,8000.0,33000.0,5,0,5,5_0 3524,12.0,17.0,44.0,111.0,0.0,38.0,31.0,0.0,1.0,0.0,8000.0,73.5,1.0,120.0,1.0,11617301000.0,0.0,3.3,1.0,3.0,0.0,10.0,1.0,1.0,1270.1191869,7.0,1.0,1.0,10.0,8.0,1.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,8000.0,36000.0,5,0,5,5_0 3525,0.0,0.0,27.0,111.0,0.0,55.0,43.0,0.0,1.0,0.0,0.0,0.0,1.0,40.0,0.0,11617505000.0,90.0,5.57,1.0,2.0,1.0,2.0,2.0,1.3,1311.6272833,0.0,1.0,4.0,10.0,8.0,2.0,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,0.0,10152.0,1,0,1_1,1_0 @@ -3735,7 +3735,7 @@ 3733,0.0,0.0,79.0,111.0,0.0,78.0,70.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11651502000.0,166.66666667,0.0,0.0,2.0,0.0,3.0,1.0,1.0,1245.2172174,0.0,5.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,11412.0,2,0,2_0,2_0 3734,0.0,0.0,21.0,111.0,0.0,56.0,43.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,11651602000.0,750.0,0.0,2.0,2.0,0.0,6.0,2.0,1.5,1356.3874258,0.0,1.0,4.0,10.0,8.0,3.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,16968.0,3,0,3_0,3_0 3735,0.0,0.0,31.0,111.0,0.0,45.0,20.0,0.0,1.0,0.0,0.0,12.0,1.0,30.0,0.0,11651702000.0,600.0,2.2,1.0,1.0,0.0,5.0,1.0,1.0,1320.4946936,0.0,1.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,15204.0,3,0,3_0,3_0 -3736,3.0,3.0,40.0,111.0,0.0,37.0,12.0,0.0,1.0,17343.0,10884.0,62.800000000000004,1.0,16.0,1.0,11651901000.0,0.0,3.3,2.0,4.0,3.0,9.0,5.0,2.4,939.77674668,0.0,1.0,1.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,28227.0,29916.0,5,0,5,5_0 +3736,3.0,3.0,40.0,111.0,0.0,37.0,12.0,0.0,1.0,17343.0,10884.0,62.8,1.0,16.0,1.0,11651901000.0,0.0,3.3,2.0,4.0,3.0,9.0,5.0,2.4,939.77674668,0.0,1.0,1.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,1.0,1.0,28227.0,29916.0,5,0,5,5_0 3737,0.0,0.0,24.0,111.0,0.0,37.0,20.0,0.0,1.0,0.0,0.0,86.5,1.0,120.0,0.0,11652001000.0,750.0,5.56,2.0,1.0,0.0,6.0,2.0,1.5,1294.8426226,0.0,1.0,4.0,10.0,8.0,3.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,16464.0,3,0,3_0,3_0 3738,1.0,2.0,59.0,111.0,6.0,33.0,10.0,0.0,1.0,24672.0,0.0,8.0,1.0,20.0,2.0,11652101000.0,0.0,3.3,1.0,3.0,0.0,10.0,1.0,1.0,1192.5403354,8.0,1.0,2.0,10.0,8.0,1.0,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,24672.0,36312.0,5,0,5,5_0 3739,11.0,19.0,58.0,111.0,7.0,22.0,42.0,0.0,1.0,9781.0,15000.0,28.200000000000003,1.0,46.666666666666664,4.0,11652201000.0,0.0,3.3,3.0,5.0,2.0,4.0,4.0,2.5,1242.2869372,11.0,1.0,2.0,10.0,8.0,4.0,3.0,0.0,0.0,0,0,0,0,1,0,1.5,1.5,24781.0,13140.0,2,0,2_0,2_0 @@ -3910,7 +3910,7 @@ 3908,13.0,13.0,75.0,112.0,8.0,77.0,71.0,0.0,4.0,0.0,1500.0,0.0,2.0,0.0,1.0,21022401000.0,0.0,0.0,0.0,3.0,0.0,4.0,1.0,1.0,626.53093995,7.0,5.0,2.0,10.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,1500.0,12480.0,2,0,2_0,2_1 3909,3.0,6.0,39.0,112.0,6.0,63.0,50.0,0.0,4.0,0.0,5000.0,0.0,1.0,6.666666666666667,3.0,21022501000.0,230.0,0.0,2.0,3.0,2.0,2.0,4.0,2.3,581.9369773,7.0,1.0,5.0,10.0,0.0,4.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,5000.0,8868.0,1,0,1_0,1_1 3910,9.0,9.0,44.0,112.0,7.5,38.0,12.0,0.0,4.0,20000.0,25000.0,0.0,1.0,0.0,1.0,21022601000.0,0.0,0.0,1.0,7.0,2.0,7.0,4.0,2.5,209.54564094,7.0,1.0,2.0,10.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,45000.0,19200.0,4,0,4_0,4_1 -3911,5.0,5.0,49.0,112.0,5.0,38.0,60.0,0.0,2.0,0.0,12000.0,381.59999999999997,1.0,80.66666666666667,1.0,21022801000.0,0.0,3.3,3.0,5.0,1.0,9.0,3.0,2.0,484.65490737,5.0,1.0,2.0,10.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,12000.0,26172.0,5,0,5,5_1 +3911,5.0,5.0,49.0,112.0,5.0,38.0,60.0,0.0,2.0,0.0,12000.0,381.6,1.0,80.66666666666667,1.0,21022801000.0,0.0,3.3,3.0,5.0,1.0,9.0,3.0,2.0,484.65490737,5.0,1.0,2.0,10.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,12000.0,26172.0,5,0,5,5_1 3912,5.0,15.0,68.0,112.0,10.0,75.0,50.0,0.0,2.0,3500.0,0.0,0.0,2.0,0.0,3.0,21022901000.0,0.0,0.0,0.0,7.0,0.0,9.0,2.0,1.5,163.94808765,11.0,5.0,2.0,10.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,3500.0,24000.0,5,0,5,5_1 3913,7.0,7.0,59.0,112.0,0.0,37.0,50.0,0.0,3.0,13000.0,17000.0,221.0,1.0,60.0,1.0,21023001000.0,0.0,3.3,2.0,5.0,0.0,10.0,2.0,1.5,235.3086267,5.0,1.0,2.0,10.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,30000.0,32004.0,5,0,5,5_1 3914,1.0,1.0,56.0,112.0,6.0,56.0,70.0,0.0,2.0,4900.0,0.0,0.0,2.0,0.0,1.0,21023101000.0,1200.0,0.0,1.0,6.0,0.0,7.0,1.0,1.0,272.27416276,4.0,1.0,4.0,10.0,0.0,1.0,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,4900.0,19200.0,4,0,4_0,4_1 @@ -4269,7 +4269,7 @@ 4267,7.0,10.0,35.0,112.0,0.0,52.0,50.0,0.0,4.0,10000.0,0.0,84.0,3.0,40.0,3.0,21077702000.0,0.0,3.3,1.0,5.0,0.0,5.0,1.0,1.0,354.18013428,5.0,1.0,1.0,10.0,0.0,1.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10000.0,15600.0,3,0,3_0,3_1 4268,1.0,2.0,77.0,112.0,0.0,86.0,71.0,0.0,4.0,0.0,1500.0,0.0,2.0,0.0,2.0,21077802000.0,0.0,0.0,0.0,4.0,0.0,3.0,1.0,1.0,450.92985307,4.0,6.0,2.0,10.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,1500.0,11796.0,2,0,2_0,2_1 4269,1.0,1.0,55.0,112.0,6.3,37.0,44.0,0.0,4.0,40226.0,0.0,0.0,3.0,0.0,1.0,21077902000.0,0.0,0.0,1.0,5.0,0.0,8.0,2.0,1.5,224.98757459,6.0,1.0,2.0,10.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,40226.0,23460.0,4,0,4_0,4_1 -4270,1.0,3.0,36.0,112.0,5.0,34.0,20.0,0.0,4.0,22226.0,10800.0,245.79999999999998,2.0,30.0,4.0,21078002000.0,0.0,3.31,2.0,7.0,2.0,8.0,4.0,2.1,445.15065979,6.0,1.0,1.0,10.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,1.5,1.5,33026.0,21720.0,4,0,4_0,4_1 +4270,1.0,3.0,36.0,112.0,5.0,34.0,20.0,0.0,4.0,22226.0,10800.0,245.8,2.0,30.0,4.0,21078002000.0,0.0,3.31,2.0,7.0,2.0,8.0,4.0,2.1,445.15065979,6.0,1.0,1.0,10.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,1.5,1.5,33026.0,21720.0,4,0,4_0,4_1 4271,8.0,13.0,48.0,112.0,7.0,34.0,10.0,0.0,4.0,23000.0,22000.0,204.8,2.0,31.333333333333332,4.0,21078202000.0,0.0,3.3,2.0,9.0,2.0,10.0,4.0,2.1,217.52685546,7.0,1.0,1.0,10.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,45000.0,39996.0,5,0,5,5_1 4272,0.0,17.0,41.0,112.0,13.0,64.0,71.0,0.0,4.0,6216.0,0.0,0.0,4.0,1.5,0.0,21078305000.0,0.0,0.0,2.0,5.0,2.0,9.0,4.0,2.1,672.23147134,11.0,1.0,1.0,0.0,0.0,4.0,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,6216.0,24000.0,4,0,4_0,4_1 4273,3.0,7.0,64.0,112.0,0.0,77.0,70.0,0.0,1.0,0.0,10000.0,0.0,2.0,0.0,2.0,21078502000.0,0.0,0.0,0.0,4.0,0.0,6.0,1.0,1.0,572.33698822,6.0,5.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10000.0,18000.0,4,0,4_0,4_1 @@ -4520,7 +4520,7 @@ 4518,0.0,0.0,50.0,112.0,0.0,48.0,12.0,0.0,1.0,0.0,0.0,47.0,1.0,20.0,0.0,21123503000.0,480.0,3.3,1.0,2.0,0.0,8.0,2.0,1.5,901.41397804,0.0,1.0,4.0,10.0,5.0,3.0,0.0,0.0,0.0,0,0,1,0,0,0,0.0,0.0,0.0,22404.0,4,0,4_0,4_0 4519,2.0,10.0,37.0,112.0,0.0,85.0,50.0,0.0,1.0,0.0,10000.0,0.0,1.0,0.0,4.0,21123603000.0,456.0,0.0,0.0,4.0,3.0,1.0,4.0,1.9,1424.5265426,7.0,6.0,4.0,10.0,5.0,2.0,1.0,0.0,0.0,0,0,1,0,0,1,1.0,0.0,10000.0,5688.0,1,0,1_1,1_0 4520,4.0,17.0,45.0,112.0,8.0,63.0,71.0,0.0,1.0,0.0,3000.0,0.0,1.0,0.0,3.0,21123803000.0,435.0,0.0,1.0,3.0,0.0,5.0,3.0,2.0,1478.7648208,7.0,1.0,4.0,10.0,5.0,5.0,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,3000.0,15600.0,3,0,3_0,3_0 -4521,1.0,7.0,26.0,112.0,10.0,42.0,71.0,0.0,3.0,7059.0,0.0,439.19999999999993,1.0,171.25,4.0,21124801000.0,800.0,3.32,2.0,4.0,2.0,7.0,4.0,2.1,1451.7868177,0.0,1.0,4.0,10.0,5.0,4.0,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,7059.0,20004.0,4,0,4_0,4_0 +4521,1.0,7.0,26.0,112.0,10.0,42.0,71.0,0.0,3.0,7059.0,0.0,439.20000000000005,1.0,171.25,4.0,21124801000.0,800.0,3.32,2.0,4.0,2.0,7.0,4.0,2.1,1451.7868177,0.0,1.0,4.0,10.0,5.0,4.0,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,7059.0,20004.0,4,0,4_0,4_0 4522,0.0,0.0,28.0,112.0,0.0,63.0,50.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,21125201000.0,720.0,0.0,1.0,4.0,1.0,4.0,3.0,1.8,1441.9083225,0.0,1.0,4.0,10.0,5.0,4.0,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,0.0,12672.0,2,0,2_1,2_0 4523,4.0,22.0,37.0,112.0,0.0,34.0,10.0,0.0,1.0,0.0,3500.0,0.0,1.0,62.5,4.0,21125401000.0,0.0,3.3,2.0,6.0,0.0,8.0,2.0,1.5,562.40075169,0.0,1.0,2.0,10.0,5.0,3.0,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,3500.0,24000.0,5,0,5,5_0 4524,10.0,10.0,42.0,112.0,9.0,46.0,50.0,0.0,1.0,0.0,3800.0,173.2,1.0,70.0,1.0,21125701000.0,0.0,5.57,1.0,3.0,1.0,9.0,2.0,1.3,1252.0530312,7.0,1.0,2.0,10.0,5.0,2.0,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,3800.0,27696.0,5,0,5,5_0 @@ -4583,7 +4583,7 @@ 4581,1.0,7.0,59.0,112.0,7.5,77.0,41.0,0.0,4.0,0.0,15000.0,0.0,1.0,0.0,1.0,21136102000.0,0.0,0.0,1.0,4.0,1.0,9.0,3.0,2.0,692.51240087,6.0,5.0,1.0,10.0,4.0,4.0,3.0,0.0,1.0,0,0,1,0,0,0,3.0,0.0,15000.0,27000.0,5,0,5,5_0 4582,5.0,13.0,51.0,112.0,6.5,48.0,70.0,0.0,3.0,35000.0,0.0,207.5,1.0,65.0,4.0,21136202000.0,0.0,3.3,2.0,2.0,0.0,8.0,2.0,1.5,812.01430988,6.0,1.0,1.0,10.0,4.0,3.0,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,35000.0,24000.0,5,0,5,5_0 4583,0.0,9.0,32.0,112.0,1.4,45.0,43.0,0.0,3.0,0.0,4952.0,42.0,2.0,30.0,3.0,21136402000.0,370.0,3.3,1.0,3.0,1.0,3.0,2.0,1.3,1389.4062088,5.0,1.0,4.0,10.0,4.0,2.0,1.0,0.0,1.0,0,0,1,0,0,1,1.0,0.0,4952.0,11544.0,2,0,2_1,2_0 -4584,4.0,7.0,39.0,112.0,5.0,53.0,41.0,0.0,1.0,15000.0,0.0,193.79999999999998,2.0,53.333333333333336,3.0,21136602000.0,575.0,3.3,2.0,3.0,2.0,8.0,4.0,2.3,1383.0787711,5.0,1.0,4.0,10.0,4.0,4.0,3.0,0.0,1.0,0,0,1,0,0,0,1.5,1.5,15000.0,20868.0,4,0,4_0,4_0 +4584,4.0,7.0,39.0,112.0,5.0,53.0,41.0,0.0,1.0,15000.0,0.0,193.8,2.0,53.333333333333336,3.0,21136602000.0,575.0,3.3,2.0,3.0,2.0,8.0,4.0,2.3,1383.0787711,5.0,1.0,4.0,10.0,4.0,4.0,3.0,0.0,1.0,0,0,1,0,0,0,1.5,1.5,15000.0,20868.0,4,0,4_0,4_0 4585,1.0,20.0,47.0,112.0,6.0,63.0,50.0,0.0,4.0,15000.0,0.0,328.5,4.0,160.0,4.0,21136702000.0,0.0,6.63,1.0,7.0,0.0,9.0,1.0,1.0,684.48129141,5.0,1.0,2.0,10.0,4.0,1.0,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,15000.0,27600.0,5,0,5,5_0 4586,3.0,9.0,42.0,112.0,8.0,64.0,71.0,0.0,3.0,0.0,20000.0,0.0,1.0,18.0,4.0,21136802000.0,0.0,3.3,2.0,5.0,3.0,5.0,5.0,2.6,1153.5354881,5.0,1.0,1.0,10.0,4.0,4.0,2.0,0.0,1.0,0,0,1,0,0,1,2.0,0.0,20000.0,14304.0,3,0,3_1,3_0 4587,3.0,6.0,36.0,112.0,4.5,67.0,50.0,0.0,2.0,25000.0,0.0,242.5,1.0,50.0,3.0,21136902000.0,0.0,3.3,2.0,4.0,3.0,6.0,5.0,2.6,608.93656671,4.0,1.0,2.0,10.0,4.0,4.0,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,25000.0,16152.0,3,0,3_0,3_0 @@ -5105,7 +5105,7 @@ 5103,2.0,3.0,41.0,300.0,4.5,46.0,42.0,0.0,4.0,25000.0,4500.0,718.0,4.0,90.0,3.0,22024601000.0,0.0,3.31,2.0,8.0,2.0,5.0,4.0,2.3,629.77181026,8.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,29500.0,15648.0,3,0,3_0,3_1 5104,2.0,7.0,25.0,120.0,6.0,85.0,60.0,0.0,4.0,24000.0,0.0,0.0,4.0,0.0,3.0,22024711000.0,0.0,0.0,1.0,4.0,2.0,3.0,4.0,2.1,1626.2027936,6.0,6.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,24000.0,11424.0,2,0,2_0,2_1 5105,1.0,1.0,75.0,120.0,6.0,78.0,41.0,0.0,4.0,0.0,1040.0,0.0,4.0,0.0,1.0,22024911000.0,0.0,0.0,0.0,3.0,0.0,6.0,1.0,1.0,1805.7303843,5.0,5.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,1040.0,18000.0,4,0,4_0,4_1 -5106,2.0,2.0,30.0,300.0,6.0,52.0,31.0,0.0,4.0,14936.0,0.0,158.70000000000002,4.0,43.333333333333336,1.0,22025111000.0,0.0,3.3,2.0,4.0,1.0,9.0,3.0,1.8,1758.5011583,6.0,1.0,1.0,0.0,0.0,4.0,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,14936.0,24672.0,5,0,5,5_1 +5106,2.0,2.0,30.0,300.0,6.0,52.0,31.0,0.0,4.0,14936.0,0.0,158.7,4.0,43.333333333333336,1.0,22025111000.0,0.0,3.3,2.0,4.0,1.0,9.0,3.0,1.8,1758.5011583,6.0,1.0,1.0,0.0,0.0,4.0,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,14936.0,24672.0,5,0,5,5_1 5107,2.0,4.0,47.0,300.0,4.6,52.0,50.0,0.0,4.0,26000.0,0.0,356.9,4.0,69.0,2.0,22025211000.0,0.0,3.31,2.0,5.0,1.0,6.0,3.0,1.8,802.4798591,5.0,1.0,2.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,26000.0,17328.0,3,0,3_0,3_1 5108,0.0,0.0,54.0,300.0,0.0,68.0,71.0,0.0,4.0,0.0,0.0,0.0,4.0,10.0,0.0,22025301000.0,0.0,2.22,1.0,4.0,0.0,2.0,1.0,1.0,1486.4895643,0.0,1.0,1.0,0.0,0.0,1.0,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,0.0,9000.0,1,0,1_0,1_1 5109,10.0,10.0,61.0,300.0,10.0,74.0,31.0,0.0,4.0,0.0,6500.0,0.0,4.0,0.0,1.0,22025401000.0,0.0,0.0,0.0,6.0,0.0,9.0,2.0,1.5,518.37316596,7.0,5.0,2.0,0.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,6500.0,26400.0,5,0,5,5_1 @@ -5517,7 +5517,7 @@ 5515,4.0,10.0,48.0,112.0,9.0,38.0,50.0,0.0,4.0,4000.0,0.0,25.0,1.0,12.25,4.0,23024301000.0,0.0,2.24,2.0,5.0,2.0,8.0,4.0,2.3,228.25257206,11.0,1.0,1.0,10.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,4000.0,22116.0,4,0,4_0,4_1 5516,3.0,6.0,40.0,112.0,4.5,46.0,42.0,0.0,2.0,17000.0,0.0,0.0,1.0,0.0,4.0,23024401000.0,0.0,0.0,2.0,5.0,2.0,5.0,4.0,2.1,695.7712867,4.0,1.0,1.0,10.0,0.0,4.0,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,17000.0,14280.0,3,0,3_0,3_1 5517,4.0,5.0,46.0,112.0,7.5,21.0,50.0,0.0,4.0,35000.0,16000.0,215.4,2.0,43.333333333333336,1.0,23024501000.0,0.0,3.32,2.0,5.0,2.0,7.0,4.0,2.3,554.10819658,7.0,1.0,2.0,10.0,0.0,4.0,2.0,1.0,1.0,1,0,0,0,0,0,1.0,1.0,51000.0,19824.0,4,0,4_0,4_1 -5518,12.0,12.0,56.0,112.0,6.5,54.0,41.0,0.0,4.0,0.0,6000.0,142.70000000000002,1.0,63.333333333333336,1.0,23024601000.0,0.0,3.3,2.0,6.0,1.0,7.0,3.0,1.8,283.18887718,5.0,1.0,5.0,10.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,6000.0,20004.0,4,0,4_0,4_1 +5518,12.0,12.0,56.0,112.0,6.5,54.0,41.0,0.0,4.0,0.0,6000.0,142.7,1.0,63.333333333333336,1.0,23024601000.0,0.0,3.3,2.0,6.0,1.0,7.0,3.0,1.8,283.18887718,5.0,1.0,5.0,10.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,6000.0,20004.0,4,0,4_0,4_1 5519,7.0,8.0,67.0,112.0,7.0,74.0,50.0,0.0,4.0,0.0,1500.0,0.0,1.0,0.0,3.0,23024701000.0,0.0,0.0,0.0,5.0,0.0,9.0,2.0,1.5,150.58439061,4.0,5.0,2.0,10.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,1500.0,24588.0,5,0,5,5_1 5520,3.0,0.0,44.0,112.0,0.0,38.0,41.0,0.0,1.0,33789.0,0.0,182.0,1.0,60.0,1.0,23024801000.0,0.0,3.3,2.0,4.0,2.0,5.0,4.0,2.3,456.50500776,0.0,1.0,1.0,10.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,33789.0,15480.0,3,0,3_0,3_1 5521,2.0,2.0,32.0,112.0,5.3,37.0,50.0,0.0,1.0,0.0,9036.0,179.0,1.0,46.666666666666664,1.0,23024901000.0,0.0,3.31,2.0,4.0,2.0,9.0,4.0,2.1,249.87388571,4.0,1.0,1.0,10.0,0.0,4.0,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,9036.0,27432.0,5,0,5,5_1 @@ -5596,7 +5596,7 @@ 5594,1.0,3.0,36.0,112.0,0.0,54.0,41.0,0.0,2.0,28572.0,0.0,292.0,1.0,53.333333333333336,3.0,23035902000.0,0.0,3.3,2.0,5.0,1.0,9.0,3.0,1.8,662.28298954,8.0,1.0,1.0,10.0,2.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,28572.0,28068.0,5,0,5,5_0 5595,18.0,18.0,64.0,112.0,6.0,78.0,70.0,0.0,3.0,3000.0,0.0,0.0,2.0,0.0,3.0,23036002000.0,0.0,0.0,0.0,4.0,0.0,5.0,2.0,1.5,576.10937806,6.0,5.0,2.0,10.0,2.0,3.0,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,3000.0,14400.0,3,0,3_0,3_0 5596,2.0,5.0,38.0,112.0,0.0,48.0,50.0,0.0,2.0,10000.0,0.0,39.0,1.0,57.5,3.0,23036102000.0,0.0,3.31,2.0,4.0,2.0,3.0,4.0,2.1,486.99455783,8.0,1.0,1.0,10.0,2.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,10000.0,11424.0,2,0,2_0,2_0 -5597,5.0,6.0,24.0,112.0,8.0,53.0,43.0,0.0,2.0,10000.0,0.0,243.8,1.0,36.25,4.0,23036202000.0,0.0,3.31,2.0,4.0,2.0,6.0,4.0,2.1,701.6298937,6.0,1.0,1.0,10.0,2.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,10000.0,15996.0,3,0,3_0,3_0 +5597,5.0,6.0,24.0,112.0,8.0,53.0,43.0,0.0,2.0,10000.0,0.0,243.79999999999998,1.0,36.25,4.0,23036202000.0,0.0,3.31,2.0,4.0,2.0,6.0,4.0,2.1,701.6298937,6.0,1.0,1.0,10.0,2.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,10000.0,15996.0,3,0,3_0,3_0 5598,2.0,4.0,35.0,112.0,8.0,53.0,12.0,0.0,3.0,23000.0,0.0,111.8,1.0,31.666666666666668,3.0,23036402000.0,0.0,3.3,2.0,4.0,1.0,8.0,3.0,1.8,1235.318377,10.0,1.0,1.0,10.0,2.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,23000.0,23328.0,4,0,4_0,4_0 5599,3.0,3.0,64.0,112.0,8.0,21.0,70.0,0.0,2.0,28000.0,0.0,294.0,2.0,120.0,2.0,23036802000.0,0.0,3.31,2.0,4.0,0.0,10.0,2.0,1.5,796.48869575,7.0,1.0,1.0,10.0,2.0,3.0,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,28000.0,48348.0,5,0,5,5_0 5600,1.0,1.0,58.0,112.0,7.0,37.0,70.0,0.0,3.0,0.0,10000.0,0.0,3.0,0.0,1.0,23036902000.0,0.0,0.0,2.0,6.0,3.0,6.0,5.0,3.0,399.58197319,8.0,1.0,1.0,10.0,2.0,4.0,3.0,1.0,0.0,0,1,0,0,0,0,1.5,1.5,10000.0,17208.0,3,0,3_0,3_0 @@ -5897,7 +5897,7 @@ 5895,0.0,0.0,27.0,111.0,4.0,43.0,31.0,0.0,1.0,0.0,8000.0,88.0,3.0,127.5,2.0,23083102000.0,0.0,5.57,2.0,3.0,0.0,10.0,2.0,1.5,1398.5715218,0.0,1.0,1.0,10.0,8.0,3.0,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,8000.0,31200.0,5,0,5,5_0 5896,6.0,6.0,64.0,111.0,8.8,74.0,41.0,0.0,1.0,0.0,10000.0,0.0,1.0,0.0,1.0,23083302000.0,0.0,0.0,0.0,6.0,0.0,10.0,2.0,1.5,266.48078107,7.0,5.0,2.0,10.0,8.0,3.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,10000.0,38580.0,5,0,5,5_0 5897,2.0,2.0,59.0,111.0,7.0,31.0,10.0,0.0,2.0,14008.0,0.0,0.0,4.0,10.0,1.0,23083401000.0,0.0,0.0,1.0,7.0,1.0,10.0,3.0,1.8,489.0074904,7.0,1.0,2.0,10.0,8.0,4.0,3.0,1.0,0.0,0,0,0,0,1,0,0.0,3.0,14008.0,43068.0,5,0,5,5_0 -5898,1.0,1.0,41.0,111.0,7.0,37.0,31.0,0.0,2.0,24765.0,3000.0,166.60000000000002,1.0,116.66666666666667,1.0,23083501000.0,0.0,3.3,2.0,5.0,2.0,10.0,4.0,2.3,792.54161239,6.0,1.0,1.0,10.0,8.0,4.0,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,27765.0,31308.0,5,0,5,5_0 +5898,1.0,1.0,41.0,111.0,7.0,37.0,31.0,0.0,2.0,24765.0,3000.0,166.6,1.0,116.66666666666667,1.0,23083501000.0,0.0,3.3,2.0,5.0,2.0,10.0,4.0,2.3,792.54161239,6.0,1.0,1.0,10.0,8.0,4.0,2.0,1.0,0.0,0,0,0,0,1,0,1.0,1.0,27765.0,31308.0,5,0,5,5_0 5899,3.0,10.0,57.0,111.0,8.5,37.0,30.0,0.0,3.0,0.0,8000.0,155.5,1.0,142.5,3.0,23083602000.0,0.0,5.5,2.0,4.0,0.0,10.0,2.0,1.5,449.71231461,7.0,1.0,2.0,10.0,8.0,3.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,8000.0,36000.0,5,0,5,5_0 5900,12.0,16.0,68.0,111.0,9.5,77.0,60.0,0.0,4.0,0.0,300.0,0.0,1.0,0.0,1.0,23083702000.0,0.0,0.0,0.0,4.0,0.0,9.0,1.0,1.0,1251.1510202,4.0,5.0,2.0,10.0,8.0,1.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,300.0,26544.0,5,0,5,5_0 5901,7.0,8.0,47.0,111.0,10.0,38.0,31.0,0.0,2.0,0.0,10000.0,66.0,2.0,50.0,2.0,23083802000.0,0.0,3.3,2.0,6.0,3.0,9.0,5.0,2.8,361.4496005,9.0,1.0,2.0,10.0,8.0,4.0,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,10000.0,27432.0,5,0,5,5_0 @@ -5929,7 +5929,7 @@ 5927,1.0,4.0,27.0,111.0,0.0,47.0,20.0,0.0,4.0,7644.0,0.0,69.5,2.0,75.0,3.0,23088401000.0,600.0,3.3,1.0,4.0,0.0,10.0,2.0,1.5,739.38229997,5.0,1.0,4.0,10.0,8.0,5.0,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,7644.0,31716.0,5,0,5,5_0 5928,3.0,7.0,60.0,111.0,0.0,33.0,20.0,0.0,3.0,0.0,10000.0,181.29999999999998,1.0,143.33333333333334,4.0,23088502000.0,0.0,5.57,2.0,5.0,3.0,6.0,4.0,2.5,580.53943297,5.0,1.0,2.0,10.0,8.0,2.0,1.0,0.0,1.0,0,0,0,0,1,0,1.0,0.0,10000.0,16800.0,3,0,3_0,3_0 5929,13.0,20.0,44.0,111.0,5.0,47.0,50.0,0.0,2.0,5000.0,0.0,95.1,4.0,68.33333333333333,3.0,23088602000.0,0.0,5.57,2.0,4.0,2.0,6.0,4.0,2.5,377.85680049,4.0,1.0,2.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,5000.0,16800.0,3,0,3_0,3_0 -5930,3.0,3.0,51.0,111.0,0.0,22.0,50.0,0.0,1.0,18625.0,0.0,126.70000000000002,1.0,62.5,1.0,23088801000.0,0.0,3.3,3.0,7.0,2.0,10.0,4.0,2.5,577.10149196,9.0,1.0,1.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,18625.0,72000.0,5,0,5,5_0 +5930,3.0,3.0,51.0,111.0,0.0,22.0,50.0,0.0,1.0,18625.0,0.0,126.69999999999999,1.0,62.5,1.0,23088801000.0,0.0,3.3,3.0,7.0,2.0,10.0,4.0,2.5,577.10149196,9.0,1.0,1.0,10.0,8.0,4.0,2.0,0.0,1.0,0,0,0,0,1,0,0.0,2.0,18625.0,72000.0,5,0,5,5_0 5931,0.0,0.0,80.0,111.0,0.0,74.0,12.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,23088902000.0,0.0,0.0,0.0,4.0,0.0,10.0,1.0,1.0,517.97649085,0.0,5.0,2.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,0,0.0,0.0,0.0,40248.0,5,0,5,5_0 5932,2.0,15.0,38.0,111.0,8.0,46.0,50.0,0.0,2.0,0.0,6352.0,64.5,4.0,65.0,4.0,23089002000.0,558.0,3.31,1.0,3.0,1.0,6.0,2.0,1.3,694.76745072,4.0,1.0,4.0,10.0,8.0,2.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,6352.0,16620.0,3,0,3_0,3_0 5933,17.0,21.0,66.0,111.0,7.0,77.0,50.0,0.0,2.0,0.0,5000.0,0.0,1.0,0.0,3.0,23089102000.0,560.0,0.0,0.0,4.0,0.0,5.0,1.0,1.0,1209.1170092,7.0,5.0,4.0,10.0,8.0,1.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,5000.0,14640.0,3,0,3_0,3_0 @@ -6953,7 +6953,7 @@ 6951,0.0,0.0,45.0,111.0,0.0,64.0,71.0,0.0,3.0,0.0,0.0,0.0,1.0,0.0,0.0,24110005000.0,55.0,0.0,1.0,1.0,0.0,1.0,1.0,1.0,797.28388512,0.0,4.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,0.0,5400.0,1,0,1_1,1_0 6952,1.0,3.0,39.0,111.0,4.0,33.0,20.0,0.0,1.0,20000.0,0.0,241.0,1.0,180.0,1.0,24110105000.0,0.0,5.57,1.0,3.0,0.0,9.0,1.0,1.0,1197.4987701,4.0,1.0,2.0,10.0,8.0,1.0,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,20000.0,26400.0,5,0,5,5_0 6953,4.0,13.0,64.0,111.0,8.0,67.0,71.0,0.0,1.0,25000.0,0.0,23.0,1.0,10.0,4.0,24110304000.0,511.0,0.0,1.0,4.0,1.0,1.0,3.0,2.0,353.80906715,7.0,1.0,4.0,10.0,8.0,4.0,1.0,0.0,1.0,0,0,0,0,1,1,0.0,1.0,25000.0,7200.0,1,0,1_1,1_0 -6954,4.0,15.0,56.0,111.0,5.5,37.0,50.0,0.0,1.0,0.0,32067.0,385.79999999999995,1.0,123.33333333333333,4.0,24110802000.0,0.0,3.3,3.0,5.0,1.0,9.0,3.0,2.0,790.087967,5.0,1.0,2.0,10.0,8.0,4.0,3.0,0.0,1.0,0,0,0,0,1,0,3.0,0.0,32067.0,27000.0,5,0,5,5_0 +6954,4.0,15.0,56.0,111.0,5.5,37.0,50.0,0.0,1.0,0.0,32067.0,385.8,1.0,123.33333333333333,4.0,24110802000.0,0.0,3.3,3.0,5.0,1.0,9.0,3.0,2.0,790.087967,5.0,1.0,2.0,10.0,8.0,4.0,3.0,0.0,1.0,0,0,0,0,1,0,3.0,0.0,32067.0,27000.0,5,0,5,5_0 6955,3.0,3.0,51.0,111.0,0.0,43.0,33.0,0.0,1.0,0.0,22000.0,368.1,1.0,162.5,0.0,24110901000.0,0.0,3.3,2.0,4.0,1.0,9.0,2.0,1.5,733.48708191,4.0,1.0,1.0,10.0,8.0,2.0,2.0,1.0,1.0,0,0,0,0,1,0,2.0,0.0,22000.0,29604.0,5,0,5,5_0 6956,0.0,0.0,33.0,111.0,0.0,56.0,20.0,0.0,2.0,0.0,0.0,30.0,1.0,325.0,0.0,24111102000.0,486.0,5.57,1.0,2.0,0.0,5.0,1.0,1.0,1004.2627459,0.0,1.0,4.0,10.0,8.0,1.0,0.0,0.0,0.0,0,0,0,0,1,1,0.0,0.0,0.0,15000.0,3,0,3_1,3_0 6957,8.0,9.0,36.0,111.0,0.0,55.0,50.0,0.0,1.0,0.0,15000.0,49.0,1.0,40.0,3.0,24111202000.0,530.0,3.31,1.0,2.0,1.0,4.0,2.0,1.3,1368.956031,5.0,1.0,4.0,10.0,8.0,2.0,1.0,0.0,1.0,0,0,0,0,1,1,1.0,0.0,15000.0,12744.0,2,0,2_1,2_0 @@ -7167,7 +7167,7 @@ 7165,5.0,5.0,66.0,111.0,6.2,74.0,50.0,0.0,2.0,11000.0,0.0,0.0,1.0,0.0,1.0,24141802000.0,0.0,0.0,0.0,5.0,0.0,8.0,2.0,1.5,274.58244959,6.0,5.0,2.0,10.0,8.0,3.0,3.0,0.0,0.0,0,0,0,0,1,0,0.0,3.0,11000.0,22800.0,4,0,4_0,4_0 7166,4.0,4.0,60.0,111.0,8.0,42.0,20.0,0.0,2.0,0.0,8000.0,70.8,4.0,24.5,1.0,24141902000.0,0.0,1.1,1.0,5.0,2.0,4.0,4.0,2.5,253.03583728,6.0,1.0,2.0,10.0,8.0,4.0,1.0,0.0,0.0,0,0,0,0,1,0,1.0,0.0,8000.0,13920.0,2,0,2_0,2_0 7167,3.0,3.0,31.0,111.0,0.0,47.0,30.0,0.0,1.0,30000.0,0.0,0.0,1.0,0.0,1.0,24142002000.0,600.0,0.0,1.0,2.0,0.0,7.0,1.0,1.0,1125.1474454,6.0,1.0,4.0,10.0,8.0,1.0,1.0,1.0,1.0,0,0,0,0,1,0,0.0,1.0,30000.0,18000.0,4,0,4_0,4_0 -7168,2.0,2.0,45.0,111.0,0.0,46.0,50.0,0.0,1.0,15000.0,10000.0,114.29999999999998,1.0,58.75,2.0,24142102000.0,0.0,3.3,4.0,5.0,2.0,8.0,4.0,2.5,335.6563979,4.0,1.0,1.0,10.0,8.0,4.0,3.0,0.0,1.0,0,0,0,0,1,0,1.5,1.5,25000.0,22404.0,4,0,4_0,4_0 +7168,2.0,2.0,45.0,111.0,0.0,46.0,50.0,0.0,1.0,15000.0,10000.0,114.3,1.0,58.75,2.0,24142102000.0,0.0,3.3,4.0,5.0,2.0,8.0,4.0,2.5,335.6563979,4.0,1.0,1.0,10.0,8.0,4.0,3.0,0.0,1.0,0,0,0,0,1,0,1.5,1.5,25000.0,22404.0,4,0,4_0,4_0 7169,12.0,12.0,76.0,111.0,0.0,75.0,50.0,0.0,1.0,5000.0,0.0,0.0,2.0,0.0,1.0,24142202100.0,0.0,0.0,0.0,2.0,0.0,6.0,2.0,1.5,294.97481214,6.0,5.0,2.0,10.0,8.0,3.0,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,5000.0,17076.0,3,0,3_0,3_0 7170,2.0,2.0,54.0,111.0,6.0,37.0,50.0,0.0,1.0,26000.0,0.0,170.5,2.0,85.0,1.0,24142202200.0,0.0,3.3,1.0,2.0,0.0,9.0,1.0,1.0,401.03867377,6.0,1.0,5.0,10.0,8.0,1.0,1.0,0.0,1.0,0,0,0,0,1,0,0.0,1.0,26000.0,27600.0,5,0,5,5_0 7171,7.0,9.0,45.0,111.0,5.0,67.0,71.0,0.0,2.0,25000.0,0.0,0.0,1.0,2.0,3.0,24142302000.0,0.0,1.1,1.0,4.0,0.0,5.0,1.0,1.0,506.21918543,6.0,1.0,5.0,10.0,8.0,1.0,1.0,0.0,0.0,0,0,0,0,1,0,0.0,1.0,25000.0,15600.0,3,0,3_0,3_0 @@ -7428,7 +7428,7 @@ 7426,2.0,0.0,32.0,212.0,0.0,48.0,43.0,0.0,1.0,17343.0,0.0,0.0,1.0,23.333333333333332,2.0,25002001000.0,0.0,3.3,2.0,6.0,1.0,9.0,3.0,1.8,907.95669652,6.0,1.0,1.0,3.0,0.0,4.0,4.0,0.0,1.0,1,0,0,0,0,0,2.0,2.0,17343.0,26004.0,5,0,5,5_1 7427,3.0,11.0,47.0,212.0,6.0,62.0,71.0,0.0,1.0,0.0,15017.0,148.0,4.0,23.333333333333332,4.0,25002201000.0,0.0,3.3,2.0,5.0,1.0,7.0,3.0,2.0,807.01460129,4.0,1.0,1.0,3.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,15017.0,19200.0,4,0,4_0,4_1 7428,0.0,0.0,50.0,212.0,6.5,13.0,50.0,0.0,4.0,950.0,0.0,37.0,4.0,14.0,1.0,25002301000.0,0.0,3.31,2.0,7.0,1.0,7.0,3.0,2.0,2314.4400559,7.0,1.0,2.0,3.0,0.0,4.0,1.0,1.0,0.0,1,0,0,0,0,0,0.0,1.0,950.0,18492.0,4,0,4_0,4_1 -7429,1.0,8.0,39.0,212.0,0.0,34.0,10.0,0.0,4.0,0.0,10704.0,110.99999999999999,4.0,15.2,4.0,25002401000.0,0.0,3.31,2.0,6.0,3.0,7.0,5.0,2.4,2877.1320789,7.0,1.0,1.0,3.0,0.0,4.0,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,10704.0,20004.0,4,0,4_0,4_1 +7429,1.0,8.0,39.0,212.0,0.0,34.0,10.0,0.0,4.0,0.0,10704.0,111.0,4.0,15.2,4.0,25002401000.0,0.0,3.31,2.0,6.0,3.0,7.0,5.0,2.4,2877.1320789,7.0,1.0,1.0,3.0,0.0,4.0,2.0,1.0,1.0,1,0,0,0,0,0,2.0,0.0,10704.0,20004.0,4,0,4_0,4_1 7430,7.0,7.0,86.0,212.0,4.0,78.0,70.0,0.0,2.0,14000.0,350.0,0.0,2.0,0.0,2.0,25002511000.0,0.0,0.0,0.0,6.0,0.0,6.0,2.0,1.5,991.77671612,4.0,5.0,2.0,3.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14350.0,16404.0,3,0,3_0,3_1 7431,7.0,7.0,83.0,212.0,0.0,75.0,71.0,0.0,4.0,0.0,5000.0,0.0,0.0,0.0,1.0,25002601000.0,0.0,0.0,0.0,3.0,0.0,1.0,2.0,1.5,567.24453164,5.0,5.0,2.0,3.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,5000.0,6708.0,1,0,1_0,1_1 7432,3.0,19.0,75.0,400.0,9.0,71.0,71.0,0.0,1.0,0.0,4000.0,0.0,1.0,0.0,3.0,25002801000.0,450.0,0.0,0.0,3.0,0.0,1.0,2.0,1.5,1341.6501566,10.0,5.0,4.0,0.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,4000.0,7656.0,1,0,1_0,1_1 @@ -7463,7 +7463,7 @@ 7461,1.0,1.0,75.0,212.0,5.0,71.0,70.0,0.0,4.0,2300.0,0.0,0.0,0.0,0.0,1.0,25007501000.0,0.0,0.0,0.0,3.0,0.0,3.0,1.0,1.0,600.17352407,3.0,5.0,2.0,2.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,2300.0,10800.0,2,0,2_0,2_1 7462,2.0,7.0,34.0,212.0,0.0,21.0,50.0,0.0,4.0,18625.0,0.0,91.2,4.0,20.0,3.0,25007701000.0,0.0,3.3,2.0,6.0,1.0,9.0,3.0,1.8,3625.3578893,9.0,1.0,1.0,2.0,0.0,4.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18625.0,26664.0,5,0,5,5_1 7463,1.0,4.0,34.0,221.0,7.8,12.0,70.0,0.0,3.0,7716.0,0.0,65.6,3.0,12.5,3.0,25007801000.0,0.0,3.3,2.0,6.0,2.0,3.0,4.0,2.1,1436.17507,7.0,1.0,1.0,0.0,0.0,4.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,7716.0,11808.0,2,0,2_0,2_1 -7464,4.0,9.0,31.0,221.0,5.5,34.0,20.0,0.0,1.0,25000.0,0.0,251.60000000000002,3.0,26.0,3.0,25007901000.0,558.0,3.3,2.0,6.0,1.0,9.0,3.0,1.8,1815.7915571,6.0,1.0,4.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25000.0,26664.0,5,0,5,5_1 +7464,4.0,9.0,31.0,221.0,5.5,34.0,20.0,0.0,1.0,25000.0,0.0,251.6,3.0,26.0,3.0,25007901000.0,558.0,3.3,2.0,6.0,1.0,9.0,3.0,1.8,1815.7915571,6.0,1.0,4.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,25000.0,26664.0,5,0,5,5_1 7465,13.0,14.0,76.0,221.0,5.0,77.0,70.0,0.0,4.0,0.0,5000.0,0.0,4.0,0.0,2.0,25008201000.0,0.0,0.0,0.0,4.0,0.0,5.0,1.0,1.0,1805.7303843,4.0,5.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,5000.0,15600.0,3,0,3_0,3_1 7466,6.0,6.0,55.0,221.0,5.0,55.0,60.0,0.0,4.0,25000.0,0.0,145.2,4.0,40.0,3.0,25008311000.0,0.0,3.3,1.0,4.0,0.0,9.0,1.0,1.0,1466.6256501,6.0,1.0,2.0,0.0,0.0,1.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,25000.0,24000.0,4,0,4_0,4_1 7467,6.0,8.0,57.0,221.0,0.0,56.0,70.0,0.0,3.0,13479.0,0.0,33.5,3.0,20.0,3.0,25008711000.0,385.0,3.3,1.0,3.0,0.0,3.0,1.0,1.0,1466.6256501,6.0,1.0,4.0,0.0,0.0,1.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13479.0,11736.0,2,0,2_0,2_1 @@ -7568,7 +7568,7 @@ 7566,3.0,5.0,51.0,112.0,0.0,48.0,50.0,0.0,4.0,0.0,9099.0,121.4,4.0,25.0,4.0,25025211000.0,0.0,3.31,2.0,5.0,2.0,5.0,4.0,2.1,582.18060564,7.0,1.0,2.0,7.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,9099.0,14616.0,3,0,3_0,3_1 7567,5.0,5.0,47.0,400.0,6.0,23.0,60.0,0.0,4.0,27000.0,0.0,283.5,4.0,53.333333333333336,1.0,25025501000.0,0.0,3.3,2.0,6.0,1.0,10.0,3.0,2.0,799.2131715,8.0,1.0,2.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,27000.0,38400.0,5,0,5,5_1 7568,11.0,0.0,40.0,112.0,8.0,63.0,71.0,0.0,4.0,0.0,15000.0,88.2,4.0,8.0,1.0,25025801000.0,0.0,0.0,2.0,6.0,3.0,4.0,5.0,2.4,1278.2043307,7.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,15000.0,12432.0,2,0,2_0,2_1 -7569,1.0,18.0,25.0,112.0,12.0,62.0,50.0,0.0,4.0,0.0,3000.0,109.2,4.0,27.666666666666668,3.0,25026001000.0,0.0,3.31,2.0,5.0,1.0,4.0,3.0,1.8,956.77975338,8.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,3000.0,13476.0,2,0,2_0,2_1 +7569,1.0,18.0,25.0,112.0,12.0,62.0,50.0,0.0,4.0,0.0,3000.0,109.19999999999999,4.0,27.666666666666668,3.0,25026001000.0,0.0,3.31,2.0,5.0,1.0,4.0,3.0,1.8,956.77975338,8.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,3000.0,13476.0,2,0,2_0,2_1 7570,3.0,3.0,51.0,112.0,0.0,67.0,50.0,0.0,4.0,18625.0,9544.0,119.5,4.0,30.0,1.0,25026101000.0,0.0,0.0,2.0,5.0,1.0,1.0,3.0,2.0,602.20286532,0.0,1.0,2.0,0.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,1.5,1.5,28169.0,7632.0,1,0,1_0,1_1 7571,5.0,5.0,57.0,112.0,5.5,43.0,31.0,0.0,4.0,40000.0,0.0,110.0,4.0,25.0,1.0,25026201000.0,0.0,3.3,2.0,7.0,0.0,9.0,2.0,1.5,771.09227835,5.0,1.0,5.0,0.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,40000.0,27480.0,5,0,5,5_1 7572,2.0,7.0,38.0,112.0,6.5,48.0,42.0,0.0,4.0,41445.0,0.0,0.0,0.0,0.0,3.0,25026301000.0,0.0,0.0,1.0,5.0,3.0,4.0,5.0,2.4,707.56419039,7.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,41445.0,12552.0,2,0,2_0,2_1 @@ -8610,7 +8610,7 @@ 8608,1.0,6.0,40.0,111.0,5.0,48.0,50.0,0.0,1.0,32336.0,0.0,0.0,1.0,20.0,3.0,31063501000.0,0.0,3.3,2.0,4.0,1.0,8.0,3.0,1.8,2354.0102753,7.0,1.0,1.0,8.0,6.0,4.0,2.0,0.0,0.0,0,0,1,0,0,0,0.0,2.0,32336.0,21336.0,4,0,4_0,4_0 8609,4.0,5.0,39.0,111.0,7.5,34.0,33.0,0.0,2.0,18000.0,0.0,0.0,2.0,28.0,3.0,31063701000.0,0.0,3.3,2.0,5.0,2.0,9.0,4.0,2.1,2178.5879791,8.0,1.0,2.0,8.0,6.0,4.0,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,18000.0,28572.0,5,0,5,5_0 8610,8.0,9.0,50.0,111.0,5.5,34.0,20.0,0.0,1.0,30000.0,0.0,32.0,2.0,40.0,2.0,31063801000.0,540.0,3.3,1.0,4.0,1.0,9.0,2.0,1.5,4070.760968,5.0,1.0,4.0,8.0,6.0,2.0,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,30000.0,24000.0,5,0,5,5_0 -8611,10.0,10.0,47.0,111.0,0.0,37.0,20.0,0.0,1.0,12480.0,0.0,125.8,1.0,46.666666666666664,1.0,31063901000.0,0.0,3.31,2.0,5.0,1.0,10.0,3.0,1.8,2292.6863313,6.0,1.0,1.0,8.0,6.0,4.0,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,12480.0,60864.0,5,0,5,5_0 +8611,10.0,10.0,47.0,111.0,0.0,37.0,20.0,0.0,1.0,12480.0,0.0,125.80000000000001,1.0,46.666666666666664,1.0,31063901000.0,0.0,3.31,2.0,5.0,1.0,10.0,3.0,1.8,2292.6863313,6.0,1.0,1.0,8.0,6.0,4.0,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,12480.0,60864.0,5,0,5,5_0 8612,2.0,7.0,31.0,111.0,0.0,33.0,10.0,0.0,1.0,10000.0,0.0,0.0,1.0,14.0,3.0,31064001000.0,0.0,3.3,1.0,2.0,0.0,10.0,1.0,1.0,5629.6453864,5.0,1.0,2.0,8.0,6.0,1.0,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,10000.0,31200.0,5,0,5,5_0 8613,7.0,7.0,56.0,111.0,0.0,48.0,60.0,0.0,2.0,0.0,9416.0,0.0,2.0,0.0,1.0,31064101000.0,0.0,0.0,1.0,7.0,0.0,1.0,1.0,1.0,1975.5189517,5.0,4.0,2.0,8.0,6.0,1.0,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,9416.0,6756.0,1,0,1_0,1_0 8614,1.0,3.0,41.0,111.0,0.0,46.0,31.0,0.0,3.0,9716.0,5000.0,82.4,2.0,21.0,3.0,31064301000.0,0.0,3.3,2.0,5.0,2.0,9.0,4.0,2.1,1878.5922673,11.0,1.0,2.0,8.0,6.0,4.0,2.0,0.0,1.0,0,0,1,0,0,0,1.0,1.0,14716.0,25716.0,5,0,5,5_0 @@ -8846,7 +8846,7 @@ 8844,6.0,6.0,38.0,111.0,6.5,52.0,50.0,0.0,1.0,0.0,12000.0,0.0,1.0,10.0,1.0,31096401000.0,0.0,3.3,1.0,5.0,0.0,6.0,1.0,1.0,5330.499972,7.0,1.0,2.0,9.0,7.0,1.0,1.0,0.0,1.0,0,0,0,1,0,0,1.0,0.0,12000.0,16560.0,3,0,3_0,3_0 8845,3.0,3.0,72.0,111.0,6.0,75.0,70.0,0.0,1.0,0.0,8500.0,0.0,1.0,0.0,1.0,31096501000.0,0.0,0.0,0.0,5.0,0.0,5.0,2.0,1.5,1264.0628689,6.0,5.0,2.0,9.0,7.0,3.0,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,8500.0,15204.0,3,0,3_0,3_0 8846,2.0,11.0,25.0,111.0,0.0,52.0,50.0,0.0,3.0,0.0,400.0,0.0,1.0,0.0,4.0,31096601000.0,50.0,0.0,1.0,3.0,1.0,2.0,2.0,1.3,4517.7057373,7.0,4.0,4.0,9.0,7.0,2.0,1.0,0.0,0.0,0,0,0,1,0,1,1.0,0.0,400.0,9048.0,1,0,1_1,1_0 -8847,3.0,3.0,53.0,111.0,0.0,42.0,20.0,0.0,3.0,11000.0,12000.0,193.20000000000002,1.0,60.0,1.0,31096801000.0,0.0,3.3,3.0,5.0,1.0,10.0,3.0,2.0,1387.8722965,5.0,1.0,2.0,9.0,7.0,4.0,3.0,0.0,1.0,0,0,0,1,0,0,1.5,1.5,23000.0,33000.0,5,0,5,5_0 +8847,3.0,3.0,53.0,111.0,0.0,42.0,20.0,0.0,3.0,11000.0,12000.0,193.2,1.0,60.0,1.0,31096801000.0,0.0,3.3,3.0,5.0,1.0,10.0,3.0,2.0,1387.8722965,5.0,1.0,2.0,9.0,7.0,4.0,3.0,0.0,1.0,0,0,0,1,0,0,1.5,1.5,23000.0,33000.0,5,0,5,5_0 8848,7.0,8.0,63.0,111.0,5.6,75.0,70.0,0.0,1.0,17000.0,0.0,0.0,1.0,0.0,3.0,31097001000.0,0.0,0.0,0.0,6.0,0.0,4.0,2.0,1.5,2471.5593699,6.0,5.0,2.0,7.0,6.0,3.0,1.0,0.0,0.0,0,0,1,0,0,0,0.0,1.0,17000.0,13596.0,2,0,2_0,2_0 8849,0.0,0.0,57.0,111.0,0.0,78.0,70.0,0.0,2.0,0.0,0.0,0.0,1.0,0.0,0.0,31097101000.0,300.0,0.0,0.0,4.0,0.0,3.0,2.0,1.5,4762.0765692,0.0,5.0,4.0,7.0,6.0,3.0,0.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,0.0,10488.0,2,0,2_1,2_0 8850,3.0,19.0,68.0,111.0,0.0,72.0,70.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,4.0,31097201000.0,172.0,0.0,0.0,3.0,0.0,1.0,2.0,1.5,4091.6413118,7.0,5.0,4.0,7.0,6.0,3.0,1.0,0.0,0.0,0,0,1,0,0,1,0.0,0.0,0.0,6396.0,1,0,1_1,1_0 @@ -10034,7 +10034,7 @@ 10032,4.0,6.0,58.0,212.0,5.5,78.0,50.0,0.0,4.0,15000.0,0.0,0.0,4.0,0.0,3.0,52015401000.0,0.0,0.0,1.0,5.0,0.0,1.0,2.0,1.5,134.84703508,5.0,5.0,2.0,3.0,0.0,3.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,15000.0,8004.0,1,0,1_0,1_1 10033,13.0,13.0,83.0,212.0,0.0,71.0,70.0,0.0,4.0,0.0,1500.0,0.0,4.0,0.0,1.0,52015501000.0,0.0,0.0,0.0,3.0,0.0,5.0,1.0,1.0,169.95575279,6.0,5.0,2.0,3.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,1500.0,15420.0,3,0,3_0,3_1 10034,9.0,9.0,57.0,212.0,6.0,75.0,31.0,0.0,4.0,20000.0,4000.0,0.0,4.0,0.0,1.0,52015601000.0,0.0,0.0,0.0,8.0,0.0,10.0,2.0,1.5,92.189590499,6.0,5.0,2.0,3.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,24000.0,32004.0,5,0,5,5_1 -10035,1.0,2.0,41.0,212.0,0.0,62.0,50.0,0.0,4.0,7359.0,0.0,200.10000000000002,4.0,50.0,4.0,52015701000.0,0.0,3.3,2.0,4.0,2.0,6.0,4.0,2.1,144.3474776,6.0,1.0,1.0,3.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,7359.0,17148.0,3,0,3_0,3_1 +10035,1.0,2.0,41.0,212.0,0.0,62.0,50.0,0.0,4.0,7359.0,0.0,200.1,4.0,50.0,4.0,52015701000.0,0.0,3.3,2.0,4.0,2.0,6.0,4.0,2.1,144.3474776,6.0,1.0,1.0,3.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,7359.0,17148.0,3,0,3_0,3_1 10036,5.0,8.0,53.0,212.0,8.0,13.0,70.0,0.0,4.0,8000.0,0.0,0.0,4.0,0.0,3.0,52015801000.0,0.0,0.0,2.0,6.0,0.0,2.0,2.0,1.5,304.71912172,5.0,1.0,2.0,3.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,8000.0,9600.0,1,0,1_0,1_1 10037,12.0,12.0,51.0,300.0,8.0,13.0,50.0,0.0,1.0,0.0,15000.0,78.5,4.0,40.0,2.0,52015901000.0,0.0,0.0,2.0,5.0,1.0,3.0,3.0,2.0,422.42820899,7.0,1.0,2.0,0.0,0.0,4.0,2.0,1.0,0.0,1,0,0,0,0,0,2.0,0.0,15000.0,12000.0,2,0,2_0,2_1 10038,13.0,13.0,71.0,300.0,6.0,78.0,70.0,0.0,4.0,10000.0,0.0,0.0,0.0,0.0,1.0,52016001000.0,0.0,0.0,0.0,5.0,0.0,2.0,2.0,1.5,94.551309002,6.0,5.0,2.0,0.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,10000.0,10404.0,1,0,1_0,1_1 @@ -10364,7 +10364,7 @@ 10362,7.0,18.0,65.0,400.0,0.0,78.0,50.0,0.0,2.0,0.0,3500.0,0.0,4.0,0.0,4.0,52059202000.0,0.0,0.0,0.0,5.0,0.0,4.0,2.0,1.5,433.10616897,4.0,5.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,3500.0,12804.0,2,0,2_0,2_1 10363,9.0,9.0,58.0,400.0,6.0,52.0,50.0,0.0,3.0,0.0,12000.0,0.0,4.0,0.0,1.0,52059502000.0,0.0,0.0,1.0,5.0,0.0,7.0,2.0,1.5,401.96212397,6.0,1.0,2.0,0.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,12000.0,18300.0,4,0,4_0,4_1 10364,18.0,18.0,67.0,400.0,0.0,78.0,71.0,0.0,1.0,0.0,3500.0,0.0,4.0,0.0,1.0,52059602000.0,0.0,0.0,0.0,5.0,0.0,3.0,2.0,1.5,532.96317433,7.0,5.0,2.0,0.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,3500.0,12000.0,2,0,2_0,2_1 -10365,1.0,21.0,29.0,400.0,6.0,62.0,50.0,0.0,3.0,3000.0,0.0,308.40000000000003,4.0,47.5,4.0,52059705000.0,394.0,3.3,2.0,4.0,2.0,4.0,4.0,2.1,921.68417698,6.0,1.0,4.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,3000.0,12576.0,2,0,2_0,2_1 +10365,1.0,21.0,29.0,400.0,6.0,62.0,50.0,0.0,3.0,3000.0,0.0,308.4,4.0,47.5,4.0,52059705000.0,394.0,3.3,2.0,4.0,2.0,4.0,4.0,2.1,921.68417698,6.0,1.0,4.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,3000.0,12576.0,2,0,2_0,2_1 10366,1.0,1.0,32.0,400.0,0.0,48.0,50.0,0.0,4.0,10716.0,0.0,111.5,4.0,30.0,0.0,52060102000.0,400.0,3.3,2.0,4.0,0.0,6.0,2.0,1.5,723.95908403,5.0,1.0,4.0,0.0,0.0,3.0,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,10716.0,17604.0,3,0,3_0,3_1 10367,3.0,7.0,61.0,300.0,0.0,78.0,50.0,0.0,2.0,17500.0,0.0,0.0,4.0,0.0,3.0,52060202000.0,0.0,0.0,0.0,5.0,0.0,8.0,2.0,1.5,401.96212397,7.0,5.0,2.0,0.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17500.0,22404.0,4,0,4_0,4_1 10368,14.0,14.0,51.0,300.0,6.0,13.0,50.0,0.0,4.0,15500.0,0.0,0.0,4.0,0.0,1.0,52060302000.0,0.0,0.0,2.0,6.0,0.0,7.0,2.0,1.5,732.5472437,6.0,1.0,2.0,0.0,0.0,3.0,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,15500.0,18396.0,4,0,4_0,4_1 @@ -10516,7 +10516,7 @@ 10514,10.0,16.0,28.0,112.0,7.0,54.0,41.0,0.0,4.0,22000.0,0.0,309.5,4.0,65.0,3.0,52078802000.0,580.0,3.3,2.0,5.0,0.0,9.0,2.0,1.5,147.0001212,6.0,1.0,4.0,9.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22000.0,24000.0,5,0,5,5_1 10515,2.0,12.0,74.0,112.0,0.0,78.0,70.0,0.0,2.0,0.0,10704.0,0.0,2.0,0.0,3.0,52078902000.0,0.0,0.0,0.0,4.0,0.0,2.0,2.0,1.5,198.82631655,7.0,5.0,2.0,9.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,10704.0,8532.0,1,0,1_0,1_1 10516,9.0,10.0,38.0,112.0,6.5,33.0,10.0,0.0,4.0,20000.0,0.0,275.7,4.0,33.333333333333336,3.0,52079002000.0,0.0,3.3,2.0,4.0,1.0,10.0,3.0,1.8,96.858551239,6.0,1.0,1.0,9.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20000.0,31224.0,5,0,5,5_1 -10517,2.0,23.0,41.0,112.0,0.0,53.0,71.0,0.0,2.0,17343.0,22000.0,271.59999999999997,2.0,57.5,4.0,52079105000.0,0.0,3.3,2.0,5.0,1.0,8.0,4.0,2.3,211.34603001,4.0,1.0,1.0,9.0,0.0,5.0,3.0,1.0,1.0,1,0,0,0,0,0,1.5,1.5,39343.0,21396.0,4,0,4_0,4_1 +10517,2.0,23.0,41.0,112.0,0.0,53.0,71.0,0.0,2.0,17343.0,22000.0,271.6,2.0,57.5,4.0,52079105000.0,0.0,3.3,2.0,5.0,1.0,8.0,4.0,2.3,211.34603001,4.0,1.0,1.0,9.0,0.0,5.0,3.0,1.0,1.0,1,0,0,0,0,0,1.5,1.5,39343.0,21396.0,4,0,4_0,4_1 10518,7.0,2.0,37.0,112.0,58.0,22.0,50.0,0.0,4.0,50226.0,0.0,204.5,4.0,18.4,2.0,52079202000.0,0.0,3.3,2.0,5.0,3.0,4.0,5.0,2.6,112.30024714,5.0,1.0,1.0,9.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,50226.0,13848.0,2,0,2_1,2_1 10519,4.0,4.0,46.0,112.0,7.5,45.0,50.0,0.0,4.0,25000.0,0.0,439.9,4.0,61.666666666666664,1.0,52079302000.0,0.0,3.3,2.0,7.0,3.0,7.0,5.0,2.8,80.648587524,9.0,1.0,2.0,9.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,25000.0,18000.0,3,0,3_0,3_1 10520,8.0,0.0,80.0,112.0,6.0,71.0,70.0,0.0,4.0,14818.0,0.0,0.0,1.0,0.0,1.0,52079502000.0,0.0,0.0,0.0,5.0,0.0,3.0,2.0,1.5,113.43465273,4.0,5.0,2.0,9.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,14818.0,11232.0,2,0,2_0,2_1 @@ -10587,7 +10587,7 @@ 10585,12.0,22.0,46.0,112.0,7.0,62.0,50.0,0.0,3.0,0.0,10000.0,157.0,3.0,46.666666666666664,4.0,52087702000.0,0.0,3.3,2.0,5.0,1.0,6.0,3.0,1.8,462.58775245,4.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,10000.0,17328.0,3,0,3_0,3_1 10586,13.0,13.0,37.0,112.0,0.0,54.0,44.0,0.0,1.0,0.0,8000.0,138.6,1.0,18.75,1.0,52087805000.0,0.0,3.3,2.0,6.0,2.0,5.0,4.0,2.1,888.56455579,5.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,8000.0,14280.0,3,0,3_0,3_1 10587,3.0,3.0,51.0,112.0,5.0,63.0,50.0,0.0,4.0,6000.0,0.0,0.0,4.0,0.0,1.0,52087902000.0,0.0,0.0,1.0,6.0,0.0,10.0,2.0,1.5,328.99232122,6.0,1.0,2.0,8.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,6000.0,32004.0,5,0,5,5_1 -10588,2.0,5.0,33.0,112.0,0.0,47.0,42.0,0.0,4.0,10000.0,0.0,218.10000000000002,1.0,40.75,3.0,52088002100.0,0.0,3.31,2.0,5.0,2.0,5.0,4.0,2.1,625.75039358,7.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,10000.0,15060.0,3,0,3_0,3_1 +10588,2.0,5.0,33.0,112.0,0.0,47.0,42.0,0.0,4.0,10000.0,0.0,218.1,1.0,40.75,3.0,52088002100.0,0.0,3.31,2.0,5.0,2.0,5.0,4.0,2.1,625.75039358,7.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,10000.0,15060.0,3,0,3_0,3_1 10589,2.0,13.0,27.0,112.0,7.0,54.0,20.0,0.0,4.0,0.0,30000.0,154.0,4.0,38.0,3.0,52088002200.0,0.0,3.3,2.0,4.0,1.0,8.0,3.0,1.8,687.48629207,6.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,30000.0,21336.0,4,0,4_0,4_1 10590,2.0,3.0,35.0,112.0,6.5,43.0,33.0,0.0,4.0,15000.0,3409.0,177.0,1.0,40.0,4.0,52088002300.0,0.0,3.3,2.0,5.0,1.0,9.0,3.0,1.8,1017.7559592,6.0,1.0,1.0,8.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,1.5,1.5,18409.0,26664.0,5,0,5,5_1 10591,10.0,15.0,63.0,112.0,6.0,78.0,70.0,0.0,4.0,0.0,18797.0,0.0,1.0,0.0,4.0,52088102000.0,0.0,0.0,0.0,4.0,0.0,6.0,2.0,1.5,328.08385022,6.0,5.0,2.0,8.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,18797.0,16104.0,3,0,3_0,3_1 @@ -10598,7 +10598,7 @@ 10596,2.0,5.0,43.0,112.0,5.0,33.0,31.0,0.0,4.0,22445.0,250.0,107.0,4.0,17.5,3.0,52088802000.0,0.0,3.3,2.0,7.0,2.0,5.0,4.0,2.5,396.74941146,4.0,1.0,1.0,8.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,1.5,1.5,22695.0,14400.0,3,0,3_0,3_1 10597,9.0,9.0,60.0,112.0,6.0,74.0,60.0,0.0,2.0,20000.0,3000.0,0.0,2.0,0.0,1.0,52088902000.0,0.0,0.0,0.0,5.0,0.0,9.0,2.0,1.5,293.9242861,6.0,5.0,2.0,8.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,23000.0,25416.0,5,0,5,5_1 10598,19.0,26.0,62.0,112.0,7.8,74.0,31.0,0.0,4.0,0.0,6500.0,0.0,4.0,0.0,3.0,52089002000.0,0.0,0.0,1.0,2.0,0.0,8.0,2.0,1.5,296.65826585,4.0,5.0,2.0,8.0,0.0,3.0,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,6500.0,21144.0,4,0,4_0,4_1 -10599,8.0,8.0,37.0,112.0,7.5,43.0,33.0,0.0,4.0,30000.0,20000.0,387.59999999999997,1.0,68.33333333333333,1.0,52089202000.0,0.0,3.3,2.0,6.0,2.0,6.0,4.0,2.1,434.28648592,7.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,50000.0,17712.0,3,0,3_0,3_1 +10599,8.0,8.0,37.0,112.0,7.5,43.0,33.0,0.0,4.0,30000.0,20000.0,387.6,1.0,68.33333333333333,1.0,52089202000.0,0.0,3.3,2.0,6.0,2.0,6.0,4.0,2.1,434.28648592,7.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,50000.0,17712.0,3,0,3_0,3_1 10600,5.0,11.0,53.0,112.0,8.0,52.0,50.0,0.0,4.0,0.0,25000.0,364.0,4.0,76.66666666666667,4.0,52089302000.0,0.0,3.3,3.0,4.0,1.0,8.0,3.0,2.0,1271.0399055,8.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,25000.0,22200.0,4,0,4_0,4_1 10601,4.0,17.0,45.0,300.0,0.0,62.0,50.0,0.0,4.0,0.0,8000.0,90.0,4.0,38.333333333333336,3.0,52089405000.0,405.0,3.31,2.0,4.0,3.0,4.0,5.0,2.6,954.41293926,4.0,1.0,4.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,1,2.0,0.0,8000.0,13380.0,2,0,2_1,2_1 10602,15.0,16.0,83.0,300.0,0.0,71.0,70.0,0.0,4.0,0.0,5000.0,0.0,4.0,0.0,2.0,52089502000.0,0.0,0.0,0.0,4.0,0.0,3.0,1.0,1.0,1430.8099166,5.0,5.0,3.0,0.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,5000.0,12000.0,2,0,2_0,2_1 @@ -10735,7 +10735,7 @@ 10733,1.0,5.0,22.0,120.0,0.0,55.0,43.0,0.0,1.0,7716.0,0.0,56.5,2.0,30.0,4.0,52106202000.0,500.0,3.3,1.0,3.0,0.0,3.0,1.0,1.0,1360.147617,4.0,1.0,4.0,0.0,1.0,1.0,1.0,0.0,1.0,0,1,0,0,0,1,0.0,1.0,7716.0,12000.0,2,0,2_1,2_0 10734,6.0,10.0,71.0,120.0,7.0,71.0,71.0,0.0,4.0,0.0,5000.0,0.0,4.0,0.0,3.0,52106302000.0,0.0,0.0,0.0,3.0,0.0,3.0,2.0,1.5,894.51756125,6.0,5.0,2.0,0.0,1.0,3.0,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,5000.0,11616.0,2,0,2_0,2_0 10735,19.0,19.0,43.0,120.0,0.0,65.0,71.0,0.0,4.0,0.0,4759.0,166.5,4.0,12.5,1.0,52106402000.0,0.0,3.3,2.0,5.0,2.0,6.0,4.0,2.1,1136.9638897,7.0,1.0,1.0,0.0,1.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,4759.0,17148.0,3,0,3_0,3_0 -10736,8.0,10.0,31.0,211.0,6.0,53.0,50.0,0.0,3.0,15000.0,0.0,170.39999999999998,3.0,45.0,4.0,52106505000.0,500.0,3.31,2.0,3.0,1.0,7.0,3.0,1.8,484.66148876,5.0,1.0,4.0,0.0,3.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15000.0,20004.0,4,0,4_0,4_0 +10736,8.0,10.0,31.0,211.0,6.0,53.0,50.0,0.0,3.0,15000.0,0.0,170.4,3.0,45.0,4.0,52106505000.0,500.0,3.31,2.0,3.0,1.0,7.0,3.0,1.8,484.66148876,5.0,1.0,4.0,0.0,3.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,15000.0,20004.0,4,0,4_0,4_0 10737,6.0,12.0,47.0,211.0,10.0,47.0,50.0,0.0,1.0,30000.0,0.0,357.7,1.0,40.0,4.0,52106602000.0,0.0,3.3,1.0,4.0,1.0,5.0,2.0,1.3,150.81143896,10.0,1.0,1.0,0.0,3.0,2.0,0.0,1.0,0.0,0,1,0,0,0,0,0.0,0.0,30000.0,14772.0,3,0,3_0,3_0 10738,10.0,10.0,82.0,211.0,7.0,74.0,70.0,0.0,4.0,0.0,480.0,0.0,0.0,0.0,1.0,52106702000.0,0.0,0.0,0.0,3.0,0.0,5.0,2.0,1.5,293.30968278,7.0,5.0,2.0,0.0,3.0,3.0,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,480.0,15852.0,3,0,3_0,3_0 10739,0.0,0.0,80.0,211.0,0.0,77.0,50.0,0.0,4.0,0.0,0.0,0.0,4.0,0.0,0.0,52107002000.0,0.0,0.0,0.0,3.0,0.0,3.0,1.0,1.0,313.14512703,0.0,5.0,2.0,0.0,3.0,1.0,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,0.0,12000.0,2,0,2_0,2_0 @@ -11051,7 +11051,7 @@ 11049,4.0,10.0,70.0,111.0,0.0,77.0,70.0,0.0,1.0,0.0,12000.0,0.0,1.0,0.0,4.0,52152602000.0,0.0,0.0,0.0,3.0,0.0,5.0,2.0,1.5,496.8398404,6.0,5.0,2.0,9.0,7.0,3.0,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,12000.0,14640.0,3,0,3_0,3_0 11050,3.0,10.0,31.0,112.0,7.0,33.0,20.0,0.0,2.0,10000.0,0.0,94.0,1.0,30.0,3.0,52152902000.0,0.0,0.0,1.0,4.0,0.0,8.0,2.0,1.5,241.60124866,4.0,1.0,1.0,9.0,7.0,3.0,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,10000.0,21600.0,4,0,4_0,4_0 11051,7.0,15.0,33.0,111.0,0.0,63.0,43.0,0.0,4.0,0.0,6000.0,104.0,4.0,40.0,4.0,52153001000.0,0.0,2.24,2.0,4.0,2.0,3.0,4.0,2.3,594.30776969,7.0,1.0,1.0,9.0,7.0,4.0,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,6000.0,11928.0,2,0,2_0,2_0 -11052,5.0,10.0,41.0,111.0,11.0,31.0,10.0,5000.0,1.0,0.0,0.0,114.39999999999999,1.0,29.0,4.0,52153102000.0,0.0,2.2,2.0,3.0,2.0,7.0,4.0,2.1,193.26841768,8.0,1.0,1.0,9.0,7.0,4.0,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,5000.0,20004.0,4,0,4_0,4_0 +11052,5.0,10.0,41.0,111.0,11.0,31.0,10.0,5000.0,1.0,0.0,0.0,114.4,1.0,29.0,4.0,52153102000.0,0.0,2.2,2.0,3.0,2.0,7.0,4.0,2.1,193.26841768,8.0,1.0,1.0,9.0,7.0,4.0,1.0,0.0,1.0,0,0,0,1,0,0,0.0,0.0,5000.0,20004.0,4,0,4_0,4_0 11053,4.0,5.0,50.0,111.0,7.0,62.0,50.0,0.0,2.0,10000.0,0.0,77.5,1.0,40.0,2.0,52153201000.0,535.0,3.3,2.0,4.0,1.0,5.0,3.0,2.0,227.33923865,6.0,1.0,4.0,9.0,7.0,4.0,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,10000.0,14400.0,3,0,3_0,3_0 11054,2.0,3.0,53.0,111.0,6.0,43.0,33.0,0.0,1.0,32000.0,0.0,0.0,1.0,5.0,3.0,52153301000.0,0.0,2.24,2.0,6.0,0.0,8.0,2.0,1.5,216.49938329,6.0,1.0,2.0,9.0,7.0,3.0,1.0,0.0,1.0,0,0,0,1,0,0,0.0,1.0,32000.0,24000.0,5,0,5,5_0 11055,4.0,4.0,45.0,111.0,7.5,62.0,50.0,0.0,3.0,0.0,12000.0,78.0,2.0,22.666666666666668,1.0,52153401000.0,0.0,3.31,2.0,5.0,2.0,5.0,4.0,2.5,209.21658301,7.0,1.0,1.0,9.0,7.0,4.0,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,12000.0,14880.0,3,0,3_0,3_0 @@ -11592,7 +11592,7 @@ 11590,8.0,12.0,27.0,111.0,8.0,53.0,41.0,0.0,4.0,0.0,12000.0,85.1,1.0,36.666666666666664,3.0,52247106000.0,0.0,5.5,2.0,4.0,1.0,4.0,3.0,1.8,336.9996126,7.0,1.0,5.0,7.0,6.0,4.0,1.0,0.0,1.0,0,0,1,0,0,0,1.0,0.0,12000.0,14004.0,2,0,2_0,2_0 11591,5.0,6.0,39.0,111.0,7.0,46.0,50.0,0.0,1.0,35000.0,0.0,158.0,2.0,17.5,3.0,52247206000.0,0.0,3.3,2.0,5.0,2.0,4.0,4.0,2.3,210.96744339,7.0,1.0,2.0,7.0,6.0,4.0,2.0,0.0,1.0,0,0,1,0,0,0,0.0,2.0,35000.0,13008.0,2,0,2_0,2_0 11592,1.0,10.0,51.0,111.0,7.0,64.0,50.0,0.0,3.0,11000.0,4657.0,85.5,1.0,60.0,4.0,52247306000.0,0.0,3.3,2.0,3.0,0.0,6.0,2.0,1.5,410.1966231,7.0,1.0,2.0,7.0,6.0,3.0,1.0,0.0,1.0,0,0,1,0,0,0,0.5,0.5,15657.0,17604.0,3,0,3_0,3_0 -11593,2.0,11.0,32.0,111.0,6.0,65.0,71.0,0.0,1.0,15000.0,0.0,216.70000000000002,1.0,23.333333333333332,3.0,52247406000.0,470.0,3.31,2.0,3.0,1.0,3.0,3.0,1.8,470.46290618,6.0,1.0,4.0,7.0,6.0,4.0,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15000.0,12000.0,2,0,2_0,2_0 +11593,2.0,11.0,32.0,111.0,6.0,65.0,71.0,0.0,1.0,15000.0,0.0,216.7,1.0,23.333333333333332,3.0,52247406000.0,470.0,3.31,2.0,3.0,1.0,3.0,3.0,1.8,470.46290618,6.0,1.0,4.0,7.0,6.0,4.0,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,15000.0,12000.0,2,0,2_0,2_0 11594,3.0,20.0,51.0,111.0,6.0,13.0,50.0,0.0,4.0,0.0,10000.0,356.0,2.0,13.333333333333334,4.0,52247606000.0,500.0,0.0,2.0,6.0,2.0,3.0,4.0,2.5,229.52571627,4.0,1.0,4.0,7.0,6.0,4.0,3.0,1.0,1.0,0,0,1,0,0,1,3.0,0.0,10000.0,12000.0,2,0,2_1,2_0 11595,3.0,7.0,41.0,120.0,4.4,52.0,50.0,0.0,4.0,20000.0,0.0,0.0,2.0,6.2,3.0,52247706000.0,0.0,0.0,2.0,7.0,4.0,6.0,6.0,2.9,506.05137952,4.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20000.0,16548.0,3,0,3_0,3_1 11596,1.0,4.0,56.0,120.0,5.0,13.0,70.0,0.0,4.0,12781.0,0.0,0.0,4.0,0.0,3.0,52247806000.0,0.0,0.0,1.0,5.0,0.0,3.0,2.0,1.5,1410.9656932,7.0,1.0,2.0,0.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,12781.0,12000.0,2,0,2_0,2_1 @@ -12142,7 +12142,7 @@ 12140,12.0,12.0,80.0,111.0,7.0,78.0,70.0,0.0,1.0,0.0,500.0,0.0,1.0,0.0,1.0,52322306000.0,185.0,0.0,0.0,3.0,0.0,8.0,2.0,1.5,234.68767214,6.0,5.0,4.0,9.0,7.0,3.0,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,500.0,21060.0,4,0,4_0,4_0 12141,4.0,10.0,36.0,111.0,0.0,23.0,12.0,0.0,1.0,20000.0,0.0,0.0,1.0,0.0,4.0,52322506000.0,0.0,0.0,1.0,10.0,3.0,10.0,5.0,2.4,217.03626042,0.0,1.0,4.0,9.0,7.0,4.0,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,20000.0,75000.0,5,0,5,5_0 12142,4.0,8.0,41.0,111.0,9.0,43.0,20.0,0.0,2.0,0.0,20000.0,204.7,1.0,14.8,3.0,52322606000.0,0.0,2.24,2.0,9.0,4.0,7.0,6.0,3.1,73.677556182,9.0,1.0,2.0,9.0,7.0,4.0,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,20000.0,19356.0,4,0,4_0,4_0 -12143,4.0,7.0,34.0,111.0,6.5,53.0,30.0,0.0,2.0,30000.0,9784.0,227.39999999999998,1.0,63.75,3.0,52323006000.0,0.0,3.31,2.0,4.0,2.0,9.0,4.0,2.1,253.75388284,8.0,1.0,2.0,9.0,7.0,4.0,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,39784.0,27372.0,5,0,5,5_0 +12143,4.0,7.0,34.0,111.0,6.5,53.0,30.0,0.0,2.0,30000.0,9784.0,227.4,1.0,63.75,3.0,52323006000.0,0.0,3.31,2.0,4.0,2.0,9.0,4.0,2.1,253.75388284,8.0,1.0,2.0,9.0,7.0,4.0,2.0,1.0,1.0,0,0,0,1,0,0,1.0,1.0,39784.0,27372.0,5,0,5,5_0 12144,3.0,9.0,40.0,111.0,5.9,43.0,20.0,0.0,2.0,38625.0,0.0,131.3,1.0,74.5,4.0,52323106000.0,680.0,2.24,2.0,4.0,0.0,6.0,2.0,1.5,222.48931817,6.0,1.0,4.0,9.0,7.0,3.0,2.0,0.0,1.0,0,0,0,1,0,0,0.0,2.0,38625.0,17604.0,3,0,3_0,3_0 12145,3.0,4.0,65.0,111.0,6.0,74.0,10.0,0.0,2.0,20000.0,0.0,0.0,1.0,0.0,2.0,52323206000.0,0.0,0.0,0.0,6.0,0.0,9.0,2.0,1.5,83.13305274,5.0,5.0,2.0,9.0,7.0,3.0,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,20000.0,24000.0,5,0,5,5_0 12146,9.0,9.0,80.0,111.0,7.0,72.0,44.0,0.0,2.0,0.0,6500.0,0.0,1.0,0.0,1.0,52323306000.0,0.0,0.0,0.0,6.0,0.0,10.0,2.0,1.5,119.12208561,5.0,5.0,2.0,9.0,7.0,3.0,2.0,0.0,0.0,0,0,0,1,0,0,2.0,0.0,6500.0,41604.0,5,0,5,5_0 @@ -12736,7 +12736,7 @@ 12734,0.0,0.0,85.0,112.0,0.0,86.0,70.0,0.0,1.0,0.0,0.0,0.0,3.0,0.0,0.0,52398108000.0,618.0,0.0,0.0,3.0,0.0,5.0,1.0,1.0,763.22315081,0.0,5.0,4.0,0.0,2.0,1.0,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,0.0,15000.0,3,0,3_0,3_0 12735,4.0,4.0,44.0,221.0,5.0,52.0,50.0,0.0,4.0,20000.0,0.0,62.0,4.0,20.0,3.0,52398206000.0,0.0,3.3,2.0,6.0,1.0,4.0,3.0,2.0,573.76623065,4.0,1.0,2.0,0.0,1.0,4.0,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,20000.0,12000.0,2,0,2_0,2_0 12736,2.0,7.0,43.0,221.0,5.5,37.0,31.0,0.0,1.0,35000.0,0.0,227.5,4.0,80.0,3.0,52398306000.0,440.0,3.3,1.0,3.0,1.0,6.0,2.0,1.3,826.8100449,5.0,1.0,4.0,0.0,1.0,2.0,1.0,0.0,1.0,0,1,0,0,0,0,0.0,1.0,35000.0,16620.0,3,0,3_0,3_0 -12737,4.0,12.0,36.0,112.0,7.0,38.0,12.0,0.0,3.0,47500.0,0.0,318.40000000000003,3.0,31.8,4.0,52398406000.0,0.0,3.3,2.0,6.0,3.0,7.0,5.0,2.4,432.21031013,5.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,47500.0,20004.0,4,0,4_0,4_1 +12737,4.0,12.0,36.0,112.0,7.0,38.0,12.0,0.0,3.0,47500.0,0.0,318.4,3.0,31.8,4.0,52398406000.0,0.0,3.3,2.0,6.0,3.0,7.0,5.0,2.4,432.21031013,5.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,47500.0,20004.0,4,0,4_0,4_1 12738,4.0,5.0,56.0,112.0,6.5,35.0,42.0,0.0,1.0,15000.0,0.0,0.0,1.0,0.0,3.0,52398506000.0,309.0,0.0,1.0,2.0,0.0,2.0,1.0,1.0,718.15198136,6.0,1.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1,0,0,0,0,1,0.0,1.0,15000.0,9600.0,1,0,1_1,1_1 12739,11.0,12.0,65.0,112.0,0.0,77.0,50.0,0.0,1.0,0.0,8000.0,0.0,1.0,0.0,3.0,52398606000.0,420.0,0.0,0.0,3.0,0.0,4.0,1.0,1.0,836.33296657,4.0,5.0,4.0,0.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,1,1.0,0.0,8000.0,12000.0,2,0,2_1,2_1 12740,8.0,14.0,48.0,111.0,0.0,52.0,60.0,0.0,4.0,15000.0,0.0,98.0,1.0,50.0,4.0,52398806000.0,0.0,5.5,2.0,4.0,1.0,8.0,3.0,1.8,129.69110977,6.0,1.0,1.0,9.0,7.0,4.0,1.0,0.0,0.0,0,0,0,1,0,0,0.0,1.0,15000.0,22668.0,4,0,4_0,4_0 @@ -13048,7 +13048,7 @@ 13046,2.0,2.0,40.0,120.0,6.0,37.0,20.0,0.0,2.0,63000.0,0.0,0.0,0.0,0.0,1.0,53032205000.0,600.0,0.0,1.0,4.0,0.0,8.0,1.0,1.0,1182.4620907,6.0,1.0,4.0,0.0,0.0,1.0,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,63000.0,22488.0,4,0,4_0,4_1 13047,10.0,12.0,55.0,120.0,5.0,78.0,70.0,0.0,3.0,11000.0,2500.0,0.0,4.0,0.0,3.0,53032305000.0,700.0,0.0,1.0,5.0,1.0,3.0,3.0,2.0,1369.5014979,5.0,5.0,4.0,0.0,0.0,4.0,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,13500.0,12000.0,2,0,2_0,2_1 13048,8.0,8.0,71.0,120.0,8.0,74.0,44.0,0.0,1.0,0.0,12000.0,0.0,2.0,0.0,1.0,53032502000.0,0.0,0.0,0.0,5.0,0.0,6.0,2.0,1.5,655.39133468,7.0,5.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,12000.0,16152.0,3,0,3_0,3_1 -13049,3.0,11.0,41.0,120.0,9.0,47.0,50.0,0.0,1.0,0.0,8000.0,174.79999999999998,1.0,66.66666666666667,4.0,53032702000.0,0.0,3.33,2.0,6.0,3.0,8.0,5.0,2.6,457.07411969,5.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,8000.0,20772.0,4,0,4_0,4_1 +13049,3.0,11.0,41.0,120.0,9.0,47.0,50.0,0.0,1.0,0.0,8000.0,174.8,1.0,66.66666666666667,4.0,53032702000.0,0.0,3.33,2.0,6.0,3.0,8.0,5.0,2.6,457.07411969,5.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,8000.0,20772.0,4,0,4_0,4_1 13050,4.0,12.0,50.0,120.0,6.0,64.0,50.0,0.0,4.0,0.0,10000.0,163.2,4.0,30.0,4.0,53032802000.0,0.0,0.0,2.0,5.0,0.0,9.0,2.0,1.5,621.76067893,5.0,1.0,2.0,0.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,10000.0,25596.0,5,0,5,5_1 13051,9.0,9.0,51.0,120.0,6.0,63.0,50.0,0.0,4.0,23000.0,20000.0,246.0,1.0,40.0,2.0,53032902000.0,0.0,3.3,3.0,5.0,2.0,2.0,4.0,2.5,566.53550718,6.0,1.0,2.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,43000.0,8880.0,1,0,1_0,1_1 13052,0.0,0.0,71.0,120.0,0.0,71.0,71.0,0.0,4.0,0.0,0.0,0.0,4.0,0.0,0.0,53033102000.0,0.0,0.0,0.0,5.0,0.0,1.0,2.0,1.5,1338.3290857,0.0,5.0,3.0,0.0,0.0,3.0,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,0.0,8004.0,1,0,1_0,1_1 @@ -13125,7 +13125,7 @@ 13123,2.0,3.0,21.0,112.0,5.4,56.0,43.0,0.0,3.0,35000.0,0.0,372.0,4.0,55.0,3.0,53044205000.0,468.0,3.3,1.0,2.0,0.0,6.0,2.0,1.5,993.78696005,4.0,1.0,4.0,9.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,35000.0,15996.0,3,0,3_1,3_1 13124,7.0,8.0,27.0,112.0,5.5,63.0,50.0,0.0,1.0,0.0,6000.0,252.0,1.0,40.0,3.0,53044602000.0,495.0,4.42,2.0,2.0,0.0,7.0,2.0,1.5,1146.9334389,4.0,1.0,4.0,9.0,0.0,3.0,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,6000.0,20004.0,4,0,4_0,4_1 13125,10.0,12.0,39.0,112.0,0.0,56.0,50.0,0.0,3.0,1100.0,0.0,0.0,2.0,0.0,3.0,53044702000.0,256.0,0.0,1.0,3.0,0.0,5.0,1.0,1.0,1562.4873691,5.0,1.0,4.0,9.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,1100.0,15456.0,3,0,3_1,3_1 -13126,4.0,14.0,33.0,112.0,6.0,48.0,50.0,0.0,4.0,52000.0,0.0,476.79999999999995,1.0,23.0,4.0,53044802000.0,400.0,3.31,2.0,5.0,3.0,5.0,6.0,2.7,296.46330543,6.0,1.0,4.0,9.0,0.0,5.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,52000.0,14664.0,3,0,3_0,3_1 +13126,4.0,14.0,33.0,112.0,6.0,48.0,50.0,0.0,4.0,52000.0,0.0,476.8,1.0,23.0,4.0,53044802000.0,400.0,3.31,2.0,5.0,3.0,5.0,6.0,2.7,296.46330543,6.0,1.0,4.0,9.0,0.0,5.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,52000.0,14664.0,3,0,3_0,3_1 13127,14.0,14.0,61.0,112.0,6.5,75.0,41.0,0.0,3.0,0.0,10000.0,0.0,1.0,0.0,1.0,53044902000.0,0.0,0.0,0.0,7.0,0.0,9.0,2.0,1.5,293.13136508,4.0,5.0,2.0,9.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,10000.0,29604.0,5,0,5,5_1 13128,0.0,0.0,73.0,112.0,0.0,71.0,71.0,0.0,1.0,0.0,0.0,0.0,1.0,0.0,0.0,53045002000.0,305.0,0.0,0.0,4.0,0.0,2.0,1.0,1.0,722.08466442,0.0,5.0,4.0,9.0,0.0,1.0,0.0,0.0,0.0,1,0,0,0,0,1,0.0,0.0,0.0,8268.0,1,0,1_1,1_1 13129,1.0,0.0,39.0,112.0,9.0,12.0,71.0,0.0,3.0,11572.0,0.0,0.0,1.0,1.3333333333333333,4.0,53045102000.0,0.0,0.0,2.0,5.0,1.0,2.0,3.0,1.8,417.99716881,0.0,1.0,1.0,9.0,0.0,4.0,2.0,1.0,0.0,1,0,0,0,0,0,0.0,2.0,11572.0,9996.0,1,0,1_0,1_1 @@ -13205,7 +13205,7 @@ 13203,10.0,11.0,82.0,120.0,9.0,72.0,60.0,0.0,4.0,0.0,6500.0,0.0,4.0,0.0,3.0,53054902000.0,0.0,0.0,0.0,6.0,0.0,1.0,2.0,1.5,518.51841583,9.0,5.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,6500.0,7596.0,1,0,1_0,1_1 13204,0.0,0.0,76.0,120.0,0.0,77.0,71.0,0.0,1.0,0.0,0.0,0.0,4.0,0.0,0.0,53055002000.0,0.0,0.0,0.0,4.0,0.0,1.0,2.0,1.5,1106.5332251,0.0,5.0,2.0,0.0,0.0,3.0,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,0.0,7008.0,1,0,1_0,1_1 13205,1.0,1.0,32.0,120.0,6.0,38.0,10.0,0.0,1.0,45781.0,0.0,256.0,4.0,31.0,1.0,53055102000.0,460.0,3.3,2.0,4.0,2.0,10.0,4.0,2.1,567.52154513,7.0,1.0,4.0,0.0,0.0,4.0,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,45781.0,30852.0,5,0,5,5_1 -13206,1.0,6.0,31.0,120.0,6.0,67.0,42.0,0.0,3.0,10001.0,3000.0,183.60000000000002,3.0,32.5,3.0,53055202000.0,0.0,3.31,2.0,4.0,2.0,5.0,4.0,2.1,653.47224559,6.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13001.0,15432.0,3,0,3_0,3_1 +13206,1.0,6.0,31.0,120.0,6.0,67.0,42.0,0.0,3.0,10001.0,3000.0,183.6,3.0,32.5,3.0,53055202000.0,0.0,3.31,2.0,4.0,2.0,5.0,4.0,2.1,653.47224559,6.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,13001.0,15432.0,3,0,3_0,3_1 13207,17.0,17.0,57.0,221.0,8.0,72.0,50.0,0.0,3.0,2000.0,0.0,0.0,4.0,0.0,1.0,53055302000.0,0.0,0.0,0.0,4.0,0.0,10.0,2.0,1.5,1854.7720631,9.0,5.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,2000.0,40512.0,5,0,5,5_1 13208,3.0,3.0,36.0,221.0,7.5,48.0,42.0,0.0,4.0,18000.0,0.0,256.9,4.0,36.666666666666664,1.0,53055402000.0,0.0,3.3,2.0,5.0,1.0,8.0,3.0,1.8,650.93996278,6.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18000.0,21996.0,4,0,4_0,4_1 13209,8.0,11.0,76.0,221.0,6.0,71.0,71.0,0.0,4.0,12000.0,0.0,0.0,4.0,0.0,4.0,53055502000.0,0.0,0.0,0.0,7.0,0.0,6.0,2.0,1.5,1276.3446748,6.0,5.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,12000.0,15996.0,3,0,3_0,3_1 @@ -13339,7 +13339,7 @@ 13337,2.0,5.0,46.0,300.0,5.0,46.0,50.0,0.0,4.0,25000.0,0.0,344.5,4.0,53.333333333333336,3.0,53073902000.0,0.0,3.3,2.0,6.0,1.0,6.0,3.0,2.0,739.7004988,5.0,1.0,2.0,0.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,25000.0,17400.0,3,0,3_0,3_1 13338,8.0,12.0,69.0,300.0,8.0,75.0,41.0,0.0,4.0,0.0,15000.0,0.0,4.0,0.0,3.0,53074002000.0,0.0,0.0,0.0,5.0,0.0,7.0,2.0,1.5,671.49167783,6.0,5.0,2.0,0.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,15000.0,18396.0,4,0,4_0,4_1 13339,11.0,11.0,71.0,300.0,10.0,71.0,70.0,0.0,4.0,0.0,6000.0,0.0,4.0,0.0,1.0,53074202000.0,0.0,0.0,0.0,4.0,0.0,4.0,3.0,2.0,740.39666551,7.0,5.0,2.0,0.0,0.0,5.0,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,6000.0,13200.0,2,0,2_0,2_1 -13340,2.0,5.0,39.0,400.0,8.0,69.0,50.0,0.0,2.0,21000.0,10259.0,162.39999999999998,4.0,17.0,3.0,53074305000.0,0.0,3.3,2.0,5.0,2.0,6.0,4.0,2.1,1215.0791348,7.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,31259.0,17148.0,3,0,3_1,3_1 +13340,2.0,5.0,39.0,400.0,8.0,69.0,50.0,0.0,2.0,21000.0,10259.0,162.4,4.0,17.0,3.0,53074305000.0,0.0,3.3,2.0,5.0,2.0,6.0,4.0,2.1,1215.0791348,7.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,1,1.0,1.0,31259.0,17148.0,3,0,3_1,3_1 13341,1.0,15.0,29.0,400.0,0.0,67.0,60.0,0.0,4.0,44572.0,0.0,70.0,4.0,8.0,4.0,53074402000.0,360.0,3.3,1.0,3.0,0.0,4.0,1.0,1.0,770.87996604,6.0,1.0,4.0,0.0,0.0,1.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,44572.0,14160.0,2,0,2_0,2_1 13342,21.0,21.0,77.0,400.0,5.0,71.0,71.0,0.0,1.0,0.0,3000.0,0.0,4.0,0.0,1.0,53074502000.0,0.0,0.0,0.0,7.0,0.0,2.0,1.0,1.0,1148.0110113,4.0,5.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,3000.0,9600.0,1,0,1_0,1_1 13343,3.0,3.0,26.0,300.0,5.5,69.0,31.0,0.0,4.0,18000.0,0.0,99.0,4.0,25.0,1.0,53074602000.0,0.0,3.3,2.0,4.0,0.0,7.0,2.0,1.5,1343.8719905,5.0,1.0,1.0,0.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,18000.0,20004.0,4,0,4_0,4_1 @@ -13352,14 +13352,14 @@ 13350,8.0,11.0,60.0,300.0,0.0,78.0,70.0,0.0,4.0,20000.0,0.0,58.0,4.0,4.666666666666667,3.0,53075702000.0,0.0,0.0,2.0,5.0,1.0,2.0,3.0,2.0,580.04591353,6.0,5.0,2.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20000.0,9144.0,1,0,1_0,1_1 13351,1.0,1.0,57.0,300.0,5.0,21.0,70.0,0.0,1.0,14000.0,0.0,0.0,4.0,5.0,1.0,53075902000.0,0.0,3.3,2.0,6.0,0.0,2.0,2.0,1.5,309.47893641,5.0,1.0,2.0,0.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,14000.0,10404.0,1,0,1_0,1_1 13352,2.0,0.0,58.0,300.0,4.0,78.0,50.0,0.0,3.0,8000.0,0.0,0.0,4.0,0.0,1.0,53076002000.0,0.0,0.0,1.0,3.0,0.0,4.0,2.0,1.5,434.31675924,4.0,5.0,2.0,0.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,8000.0,13104.0,2,0,2_0,2_1 -13353,1.0,13.0,30.0,300.0,6.0,34.0,20.0,0.0,4.0,0.0,25000.0,281.29999999999995,4.0,150.0,4.0,53076102000.0,480.0,3.3,2.0,3.0,0.0,8.0,2.0,1.5,441.8145535,5.0,1.0,4.0,0.0,0.0,3.0,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,25000.0,24000.0,5,0,5,5_1 +13353,1.0,13.0,30.0,300.0,6.0,34.0,20.0,0.0,4.0,0.0,25000.0,281.3,4.0,150.0,4.0,53076102000.0,480.0,3.3,2.0,3.0,0.0,8.0,2.0,1.5,441.8145535,5.0,1.0,4.0,0.0,0.0,3.0,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,25000.0,24000.0,5,0,5,5_1 13354,8.0,10.0,49.0,300.0,6.0,62.0,50.0,0.0,4.0,10000.0,0.0,204.5,1.0,29.0,3.0,53076202000.0,0.0,3.3,2.0,5.0,2.0,3.0,4.0,2.5,380.93144856,5.0,1.0,2.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,10000.0,11520.0,2,0,2_0,2_1 13355,1.0,14.0,55.0,300.0,6.0,62.0,70.0,0.0,4.0,20000.0,0.0,88.0,4.0,30.0,4.0,53076302000.0,0.0,3.3,1.0,5.0,0.0,5.0,1.0,1.0,374.12851876,6.0,1.0,3.0,0.0,0.0,1.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,20000.0,15876.0,3,0,3_0,3_1 13356,2.0,13.0,46.0,300.0,0.0,13.0,50.0,0.0,4.0,8141.0,6000.0,59.0,4.0,7.5,4.0,53076402000.0,0.0,0.0,2.0,7.0,2.0,8.0,4.0,2.3,636.33162203,4.0,1.0,2.0,0.0,0.0,4.0,2.0,0.0,0.0,1,0,0,0,0,0,1.0,1.0,14141.0,22068.0,4,0,4_0,4_1 13357,3.0,7.0,41.0,300.0,6.5,62.0,50.0,0.0,1.0,31859.0,0.0,235.2,1.0,17.5,3.0,53076502000.0,0.0,3.3,2.0,4.0,2.0,4.0,4.0,2.1,366.24973161,6.0,1.0,2.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,31859.0,13140.0,2,0,2_0,2_1 13358,1.0,2.0,54.0,300.0,0.0,21.0,31.0,0.0,4.0,17226.0,0.0,49.5,4.0,10.0,2.0,53076602000.0,0.0,0.0,2.0,6.0,0.0,6.0,2.0,1.5,309.80258484,5.0,1.0,2.0,0.0,0.0,3.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,17226.0,15996.0,3,0,3_0,3_1 13359,6.0,6.0,77.0,300.0,5.0,86.0,70.0,0.0,4.0,0.0,5000.0,0.0,1.0,0.0,1.0,53076802000.0,0.0,0.0,0.0,4.0,0.0,2.0,1.0,1.0,822.99518566,4.0,7.0,2.0,0.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,5000.0,8400.0,1,0,1_0,1_1 -13360,2.0,2.0,33.0,300.0,8.0,38.0,12.0,0.0,3.0,12000.0,0.0,340.59999999999997,4.0,24.0,1.0,53077102000.0,0.0,3.31,2.0,6.0,2.0,7.0,4.0,2.1,376.24380117,8.0,1.0,1.0,0.0,0.0,4.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12000.0,18660.0,4,0,4_0,4_1 +13360,2.0,2.0,33.0,300.0,8.0,38.0,12.0,0.0,3.0,12000.0,0.0,340.6,4.0,24.0,1.0,53077102000.0,0.0,3.31,2.0,6.0,2.0,7.0,4.0,2.1,376.24380117,8.0,1.0,1.0,0.0,0.0,4.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,12000.0,18660.0,4,0,4_0,4_1 13361,5.0,5.0,35.0,300.0,0.0,33.0,20.0,0.0,4.0,0.0,10000.0,62.5,4.0,12.5,4.0,53077302000.0,0.0,3.31,2.0,5.0,2.0,10.0,4.0,2.1,377.66793359,5.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,10000.0,34284.0,5,0,5,5_1 13362,2.0,0.0,34.0,300.0,0.0,54.0,10.0,0.0,4.0,3000.0,0.0,59.0,1.0,11.5,0.0,53077405000.0,0.0,3.3,2.0,8.0,2.0,6.0,4.0,2.1,1045.0284749,0.0,1.0,1.0,0.0,0.0,4.0,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,3000.0,17148.0,3,0,3_0,3_1 13363,17.0,20.0,29.0,300.0,8.0,69.0,43.0,0.0,2.0,0.0,21879.0,62.5,0.0,30.0,4.0,53077502000.0,0.0,3.3,1.0,5.0,0.0,5.0,1.0,1.0,652.77216024,6.0,1.0,1.0,0.0,0.0,1.0,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,21879.0,14400.0,3,0,3_0,3_1 @@ -13553,7 +13553,7 @@ 13551,0.0,0.0,85.0,221.0,0.0,86.0,70.0,0.0,2.0,0.0,0.0,0.0,2.0,0.0,0.0,53103701000.0,0.0,0.0,0.0,6.0,0.0,9.0,1.0,1.0,1069.5416992,0.0,7.0,2.0,0.0,3.0,1.0,0.0,0.0,0.0,0,1,0,0,0,0,0.0,0.0,0.0,24000.0,5,0,5,5_0 13552,0.0,0.0,84.0,221.0,0.0,71.0,50.0,0.0,2.0,0.0,0.0,0.0,4.0,0.0,0.0,53103901000.0,120.0,0.0,0.0,1.0,0.0,1.0,1.0,1.0,1645.446514,0.0,5.0,4.0,0.0,3.0,1.0,0.0,0.0,0.0,0,1,0,0,0,1,0.0,0.0,0.0,8052.0,1,0,1_1,1_0 13553,10.0,13.0,75.0,221.0,5.0,77.0,70.0,0.0,2.0,0.0,8000.0,0.0,3.0,0.0,3.0,53104001000.0,0.0,0.0,0.0,6.0,0.0,5.0,2.0,1.5,1157.5821288,6.0,5.0,2.0,0.0,3.0,3.0,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,8000.0,14628.0,3,0,3_0,3_0 -13554,9.0,10.0,40.0,221.0,5.0,52.0,50.0,0.0,3.0,20000.0,0.0,149.39999999999998,3.0,28.75,3.0,53104101000.0,0.0,3.31,2.0,7.0,2.0,7.0,4.0,2.1,1515.7134507,6.0,1.0,1.0,0.0,3.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20000.0,20004.0,4,0,4_0,4_0 +13554,9.0,10.0,40.0,221.0,5.0,52.0,50.0,0.0,3.0,20000.0,0.0,149.4,3.0,28.75,3.0,53104101000.0,0.0,3.31,2.0,7.0,2.0,7.0,4.0,2.1,1515.7134507,6.0,1.0,1.0,0.0,3.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20000.0,20004.0,4,0,4_0,4_0 13555,4.0,8.0,61.0,221.0,0.0,77.0,71.0,0.0,4.0,5000.0,0.0,0.0,4.0,0.0,3.0,53104201000.0,0.0,0.0,1.0,7.0,1.0,1.0,2.0,1.5,1521.6777729,4.0,5.0,2.0,0.0,3.0,2.0,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,5000.0,7596.0,1,0,1_0,1_0 13556,4.0,5.0,78.0,221.0,5.0,72.0,50.0,0.0,2.0,8000.0,0.0,0.0,2.0,0.0,3.0,53104301000.0,0.0,0.0,0.0,4.0,0.0,2.0,1.0,1.0,1200.2016323,5.0,5.0,2.0,0.0,3.0,1.0,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,8000.0,9600.0,1,0,1_0,1_0 13557,9.0,0.0,26.0,221.0,0.0,63.0,50.0,0.0,1.0,23682.0,0.0,113.5,3.0,16.0,4.0,53104401000.0,380.0,3.3,2.0,3.0,2.0,5.0,4.0,2.1,1541.0392468,6.0,1.0,4.0,0.0,3.0,4.0,3.0,0.0,1.0,0,1,0,0,0,1,0.0,3.0,23682.0,14280.0,3,0,3_1,3_0 @@ -15488,7 +15488,7 @@ 15486,3.0,4.0,40.0,112.0,5.5,38.0,10.0,0.0,4.0,15000.0,0.0,20.3,2.0,118.0,4.0,73036202000.0,1052.0,3.3,2.0,5.0,2.0,10.0,4.0,2.1,390.71784741,6.0,1.0,4.0,9.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,15000.0,35952.0,5,0,5,5_1 15487,1.0,1.0,46.0,112.0,7.0,23.0,50.0,0.0,4.0,8500.0,0.0,318.6,4.0,27.6,1.0,73036302000.0,0.0,3.3,2.0,9.0,3.0,6.0,5.0,2.4,1734.6308688,8.0,1.0,1.0,9.0,0.0,4.0,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,8500.0,16152.0,3,0,3_0,3_1 15488,1.0,8.0,51.0,112.0,9.0,43.0,50.0,0.0,4.0,10891.0,0.0,225.9,4.0,90.0,4.0,73036602000.0,0.0,3.3,1.0,3.0,1.0,4.0,2.0,1.5,255.27620093,7.0,1.0,4.0,9.0,0.0,2.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10891.0,13440.0,2,0,2_0,2_1 -15489,4.0,7.0,34.0,112.0,6.5,63.0,41.0,0.0,4.0,16353.0,0.0,335.79999999999995,4.0,56.25,4.0,73036702000.0,0.0,3.3,2.0,4.0,2.0,5.0,4.0,2.1,1044.4845591,5.0,1.0,5.0,9.0,0.0,4.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16353.0,14940.0,3,0,3_0,3_1 +15489,4.0,7.0,34.0,112.0,6.5,63.0,41.0,0.0,4.0,16353.0,0.0,335.8,4.0,56.25,4.0,73036702000.0,0.0,3.3,2.0,4.0,2.0,5.0,4.0,2.1,1044.4845591,5.0,1.0,5.0,9.0,0.0,4.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,16353.0,14940.0,3,0,3_0,3_1 15490,4.0,5.0,62.0,112.0,0.0,21.0,71.0,0.0,1.0,18155.0,12000.0,0.0,1.0,0.0,3.0,73036802000.0,0.0,0.0,2.0,5.0,1.0,10.0,3.0,2.0,367.9621549,5.0,1.0,2.0,9.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,1.5,1.5,30155.0,30936.0,5,0,5,5_1 15491,1.0,2.0,35.0,112.0,7.0,13.0,43.0,0.0,4.0,32717.0,0.0,70.19999999999999,4.0,28.0,3.0,73037005000.0,0.0,3.31,2.0,5.0,2.0,2.0,4.0,2.1,1595.2699265,7.0,1.0,1.0,9.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,32717.0,9036.0,1,0,1_0,1_1 15492,1.0,3.0,47.0,112.0,6.0,47.0,20.0,0.0,1.0,46572.0,0.0,111.0,1.0,73.33333333333333,4.0,73037102000.0,0.0,3.3,2.0,5.0,2.0,8.0,4.0,2.1,264.46955211,6.0,1.0,1.0,9.0,0.0,4.0,1.0,1.0,1.0,1,0,0,0,0,0,0.0,1.0,46572.0,22608.0,4,0,4_0,4_1 @@ -15600,7 +15600,7 @@ 15598,3.0,7.0,55.0,112.0,10.0,46.0,41.0,0.0,1.0,7000.0,0.0,0.0,4.0,0.0,3.0,73058402000.0,0.0,0.0,1.0,6.0,0.0,9.0,2.0,1.5,349.98729633,8.0,1.0,2.0,7.0,0.0,3.0,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,7000.0,29592.0,5,0,5,5_1 15599,8.0,12.0,47.0,112.0,6.0,37.0,31.0,0.0,4.0,23500.0,0.0,324.8,1.0,36.666666666666664,3.0,73058502000.0,0.0,3.3,2.0,6.0,2.0,5.0,4.0,2.5,644.92527164,6.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,23500.0,14400.0,3,0,3_0,3_1 15600,3.0,3.0,79.0,112.0,6.0,75.0,70.0,0.0,3.0,0.0,8000.0,0.0,4.0,0.0,1.0,73058702000.0,0.0,0.0,0.0,4.0,0.0,4.0,2.0,1.5,391.56792946,4.0,5.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,8000.0,12804.0,2,0,2_0,2_1 -15601,5.0,18.0,37.0,112.0,5.0,48.0,50.0,0.0,4.0,7716.0,0.0,163.70000000000002,4.0,28.333333333333332,4.0,73058802000.0,0.0,3.31,3.0,6.0,4.0,4.0,6.0,2.9,1574.0776999,6.0,1.0,1.0,7.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,7716.0,12408.0,2,0,2_1,2_1 +15601,5.0,18.0,37.0,112.0,5.0,48.0,50.0,0.0,4.0,7716.0,0.0,163.7,4.0,28.333333333333332,4.0,73058802000.0,0.0,3.31,3.0,6.0,4.0,4.0,6.0,2.9,1574.0776999,6.0,1.0,1.0,7.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,1,0.0,2.0,7716.0,12408.0,2,0,2_1,2_1 15602,6.0,7.0,49.0,112.0,5.0,63.0,50.0,0.0,4.0,15000.0,0.0,410.5,4.0,42.5,3.0,73058902000.0,0.0,3.33,2.0,5.0,2.0,6.0,4.0,2.5,428.25021892,4.0,1.0,2.0,7.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,0.0,3.0,15000.0,16800.0,3,0,3_0,3_1 15603,2.0,2.0,56.0,112.0,4.0,12.0,50.0,0.0,4.0,17343.0,0.0,0.0,4.0,0.0,3.0,73059002000.0,0.0,0.0,2.0,5.0,0.0,3.0,3.0,2.0,661.70569255,5.0,1.0,2.0,0.0,0.0,5.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,17343.0,11820.0,2,0,2_0,2_1 15604,4.0,5.0,70.0,112.0,5.0,74.0,12.0,0.0,2.0,0.0,8900.0,0.0,2.0,0.0,2.0,73059105000.0,0.0,0.0,0.0,6.0,0.0,10.0,2.0,1.5,1374.471534,5.0,5.0,2.0,0.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,8900.0,36000.0,5,0,5,5_1 @@ -15776,7 +15776,7 @@ 15774,5.0,9.0,59.0,212.0,7.5,21.0,20.0,0.0,4.0,13000.0,0.0,0.0,4.0,0.0,3.0,73084502000.0,0.0,0.0,1.0,4.0,0.0,5.0,1.0,1.0,465.33596525,10.0,1.0,1.0,4.0,0.0,1.0,2.0,0.0,0.0,1,0,0,0,0,0,0.0,2.0,13000.0,14400.0,3,0,3_0,3_1 15775,6.0,19.0,76.0,300.0,6.0,78.0,71.0,0.0,1.0,20000.0,0.0,0.0,1.0,0.0,3.0,73084702000.0,0.0,0.0,0.0,4.0,0.0,2.0,2.0,1.5,547.53911441,4.0,5.0,2.0,0.0,0.0,3.0,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,20000.0,8796.0,1,0,1_0,1_1 15776,8.0,14.0,51.0,300.0,9.0,46.0,41.0,0.0,1.0,10000.0,30352.0,195.7,1.0,63.333333333333336,4.0,73084802000.0,0.0,3.3,2.0,4.0,2.0,4.0,4.0,2.3,523.61139895,5.0,1.0,2.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,40352.0,12516.0,2,0,2_0,2_1 -15777,5.0,9.0,43.0,111.0,8.0,47.0,31.0,0.0,4.0,0.0,15000.0,103.39999999999999,4.0,33.75,3.0,73085005000.0,0.0,3.31,2.0,5.0,2.0,5.0,4.0,2.3,967.14100162,7.0,1.0,1.0,6.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,15000.0,15648.0,3,0,3_0,3_1 +15777,5.0,9.0,43.0,111.0,8.0,47.0,31.0,0.0,4.0,0.0,15000.0,103.4,4.0,33.75,3.0,73085005000.0,0.0,3.31,2.0,5.0,2.0,5.0,4.0,2.3,967.14100162,7.0,1.0,1.0,6.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,15000.0,15648.0,3,0,3_0,3_1 15778,9.0,9.0,53.0,111.0,5.0,43.0,33.0,0.0,4.0,0.0,5500.0,0.0,1.0,0.0,1.0,73085102000.0,0.0,0.0,1.0,4.0,0.0,10.0,2.0,1.5,233.44302066,5.0,1.0,2.0,6.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,5500.0,48000.0,5,0,5,5_1 15779,1.0,13.0,42.0,111.0,9.0,67.0,50.0,0.0,4.0,18672.0,0.0,119.5,2.0,31.333333333333332,3.0,73085212000.0,0.0,3.31,1.0,5.0,2.0,2.0,3.0,2.0,459.08297015,11.0,1.0,2.0,6.0,0.0,2.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,18672.0,10068.0,1,0,1_0,1_1 15780,3.0,16.0,59.0,111.0,12.0,34.0,41.0,0.0,4.0,20000.0,4000.0,141.0,1.0,20.0,3.0,73085312000.0,0.0,2.24,2.0,4.0,0.0,10.0,2.0,1.5,391.94268902,17.0,1.0,2.0,6.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,24000.0,42576.0,5,0,5,5_1 @@ -16680,14 +16680,14 @@ 16678,1.0,1.0,37.0,222.0,7.8,43.0,31.0,0.0,2.0,30347.0,0.0,51.0,2.0,33.333333333333336,1.0,82015201000.0,0.0,3.3,2.0,5.0,1.0,8.0,3.0,1.8,867.74373258,8.0,1.0,1.0,0.0,0.0,4.0,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,30347.0,21456.0,4,0,4_0,4_1 16679,7.0,12.0,37.0,222.0,7.0,38.0,12.0,0.0,2.0,0.0,15000.0,528.9,3.0,66.0,4.0,82015301000.0,1000.0,3.3,2.0,5.0,2.0,10.0,4.0,2.1,3856.2616954,6.0,1.0,4.0,0.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,0,3.0,0.0,15000.0,33708.0,5,0,5,5_1 16680,0.0,0.0,41.0,222.0,7.0,43.0,33.0,0.0,1.0,17000.0,15000.0,44.2,4.0,4.666666666666667,4.0,82015501000.0,0.0,3.3,2.0,4.0,4.0,3.0,6.0,2.9,557.68169941,7.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,32000.0,11856.0,2,0,2_0,2_1 -16681,4.0,12.0,40.0,212.0,8.0,47.0,50.0,0.0,4.0,26000.0,0.0,337.70000000000005,4.0,32.5,3.0,82015911000.0,0.0,3.3,1.0,5.0,3.0,5.0,4.0,1.9,1395.0055565,6.0,1.0,1.0,2.0,0.0,2.0,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,26000.0,15792.0,3,0,3_1,3_1 +16681,4.0,12.0,40.0,212.0,8.0,47.0,50.0,0.0,4.0,26000.0,0.0,337.7,4.0,32.5,3.0,82015911000.0,0.0,3.3,1.0,5.0,3.0,5.0,4.0,1.9,1395.0055565,6.0,1.0,1.0,2.0,0.0,2.0,1.0,0.0,1.0,1,0,0,0,0,1,0.0,1.0,26000.0,15792.0,3,0,3_1,3_1 16682,16.0,19.0,56.0,212.0,5.5,52.0,50.0,0.0,4.0,10000.0,0.0,0.0,4.0,0.0,4.0,82016001000.0,0.0,0.0,1.0,5.0,0.0,6.0,2.0,1.5,1121.2347479,6.0,1.0,1.0,2.0,0.0,3.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,10000.0,17604.0,3,0,3_0,3_1 16683,0.0,0.0,87.0,212.0,0.0,71.0,70.0,0.0,4.0,0.0,0.0,0.0,4.0,0.0,0.0,82016201000.0,0.0,0.0,0.0,6.0,0.0,1.0,2.0,1.5,1186.141299,0.0,5.0,2.0,2.0,0.0,3.0,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,0.0,6912.0,1,0,1_0,1_1 16684,1.0,1.0,55.0,212.0,5.0,75.0,50.0,0.0,4.0,13945.0,0.0,0.0,4.0,0.0,1.0,82016301000.0,0.0,0.0,1.0,5.0,0.0,7.0,2.0,1.5,585.58835137,5.0,5.0,2.0,2.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,13945.0,19428.0,4,0,4_0,4_1 16685,6.0,7.0,64.0,212.0,7.0,78.0,70.0,0.0,4.0,0.0,14000.0,0.0,4.0,0.0,3.0,82016411000.0,0.0,0.0,0.0,4.0,0.0,7.0,2.0,1.5,818.67324004,4.0,5.0,2.0,2.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,14000.0,20232.0,4,0,4_0,4_1 16686,0.0,0.0,67.0,300.0,0.0,77.0,50.0,0.0,4.0,0.0,0.0,0.0,4.0,0.0,0.0,82016801000.0,0.0,0.0,0.0,5.0,0.0,4.0,1.0,1.0,1029.5012749,0.0,5.0,2.0,2.0,0.0,1.0,0.0,0.0,0.0,1,0,0,0,0,0,0.0,0.0,0.0,12000.0,2,0,2_0,2_1 16687,0.0,2.0,49.0,300.0,4.9,67.0,50.0,0.0,4.0,23880.0,0.0,467.0,4.0,13.333333333333334,3.0,82016901000.0,0.0,3.3,2.0,5.0,1.0,5.0,3.0,2.0,770.77425774,5.0,1.0,2.0,2.0,0.0,4.0,3.0,0.0,1.0,1,0,0,0,0,1,0.0,3.0,23880.0,14496.0,3,0,3_1,3_1 -16688,5.0,5.0,32.0,222.0,8.0,63.0,43.0,0.0,4.0,21000.0,0.0,245.39999999999998,4.0,33.25,2.0,82017001000.0,0.0,3.31,2.0,7.0,2.0,7.0,4.0,2.1,1443.106515,6.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21000.0,20004.0,4,0,4_0,4_1 +16688,5.0,5.0,32.0,222.0,8.0,63.0,43.0,0.0,4.0,21000.0,0.0,245.4,4.0,33.25,2.0,82017001000.0,0.0,3.31,2.0,7.0,2.0,7.0,4.0,2.1,1443.106515,6.0,1.0,1.0,0.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,21000.0,20004.0,4,0,4_0,4_1 16689,1.0,10.0,36.0,300.0,0.0,21.0,71.0,0.0,1.0,15672.0,0.0,27.5,1.0,1.6666666666666667,0.0,82018401100.0,0.0,0.0,1.0,4.0,4.0,3.0,6.0,2.9,2180.0825828,9.0,1.0,1.0,0.0,0.0,4.0,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,15672.0,10512.0,2,0,2_0,2_1 16690,1.0,12.0,26.0,300.0,0.0,21.0,71.0,0.0,1.0,10000.0,0.0,0.0,1.0,0.0,4.0,82018401300.0,450.0,0.0,1.0,4.0,1.0,2.0,3.0,1.8,4431.8260858,0.0,1.0,4.0,0.0,0.0,4.0,1.0,0.0,0.0,1,0,0,0,0,0,0.0,1.0,10000.0,9996.0,1,0,1_0,1_1 16691,4.0,4.0,53.0,300.0,6.0,43.0,42.0,0.0,4.0,22000.0,0.0,119.0,4.0,20.0,1.0,82018801000.0,0.0,3.3,2.0,5.0,0.0,9.0,2.0,1.5,778.55805676,7.0,1.0,2.0,0.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,22000.0,28800.0,5,0,5,5_1 @@ -16730,7 +16730,7 @@ 16728,7.0,8.0,72.0,112.0,6.0,75.0,71.0,0.0,1.0,0.0,7000.0,0.0,2.0,0.0,4.0,82023801000.0,0.0,0.0,0.0,4.0,0.0,2.0,2.0,1.5,579.10750849,4.0,5.0,2.0,9.0,0.0,3.0,2.0,0.0,0.0,1,0,0,0,0,0,2.0,0.0,7000.0,10404.0,1,0,1_0,1_1 16729,5.0,5.0,52.0,112.0,5.0,67.0,70.0,0.0,1.0,15000.0,4067.0,78.5,4.0,28.0,1.0,82023901000.0,0.0,3.3,2.0,4.0,0.0,6.0,2.0,1.5,852.01759404,6.0,1.0,2.0,9.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,1.0,1.0,19067.0,16800.0,3,0,3_0,3_1 16730,5.0,11.0,34.0,112.0,6.0,43.0,33.0,0.0,2.0,0.0,10000.0,70.0,4.0,17.0,1.0,82024101000.0,0.0,3.3,2.0,6.0,2.0,7.0,4.0,2.1,1267.6240117,4.0,1.0,1.0,9.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,10000.0,19428.0,4,0,4_0,4_1 -16731,5.0,5.0,55.0,112.0,0.0,35.0,20.0,0.0,2.0,0.0,10258.0,319.70000000000005,4.0,108.0,4.0,82024201000.0,0.0,3.3,2.0,5.0,1.0,9.0,3.0,2.0,766.98345072,4.0,1.0,2.0,9.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,10258.0,27000.0,5,0,5,5_1 +16731,5.0,5.0,55.0,112.0,0.0,35.0,20.0,0.0,2.0,0.0,10258.0,319.7,4.0,108.0,4.0,82024201000.0,0.0,3.3,2.0,5.0,1.0,9.0,3.0,2.0,766.98345072,4.0,1.0,2.0,9.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,10258.0,27000.0,5,0,5,5_1 16732,4.0,4.0,79.0,112.0,6.5,74.0,10.0,0.0,3.0,0.0,22000.0,0.0,4.0,0.0,1.0,82024401000.0,0.0,0.0,0.0,7.0,0.0,9.0,2.0,1.5,599.36651128,7.0,5.0,2.0,9.0,0.0,3.0,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,22000.0,24000.0,4,0,4_0,4_1 16733,2.0,2.0,52.0,112.0,6.0,37.0,60.0,0.0,3.0,60000.0,0.0,0.0,3.0,0.0,1.0,82024601000.0,0.0,0.0,2.0,5.0,1.0,9.0,3.0,2.0,736.27582545,6.0,1.0,2.0,9.0,0.0,4.0,3.0,1.0,1.0,1,0,0,0,0,0,0.0,3.0,60000.0,27000.0,5,0,5,5_1 16734,7.0,11.0,53.0,112.0,6.0,22.0,70.0,0.0,1.0,10000.0,0.0,0.0,4.0,0.0,3.0,82024701000.0,0.0,0.0,2.0,7.0,2.0,10.0,4.0,2.5,571.45719058,6.0,1.0,2.0,9.0,0.0,4.0,2.0,1.0,1.0,1,0,0,0,0,0,0.0,2.0,10000.0,48000.0,5,0,5,5_1 @@ -17066,7 +17066,7 @@ 17064,5.0,10.0,65.0,221.0,0.0,64.0,70.0,0.0,4.0,10000.0,0.0,0.0,4.0,0.0,3.0,82092701000.0,0.0,0.0,0.0,4.0,0.0,5.0,2.0,1.5,1265.8479111,5.0,5.0,2.0,0.0,2.0,3.0,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,10000.0,15036.0,3,0,3_0,3_0 17065,3.0,11.0,64.0,221.0,6.0,71.0,60.0,0.0,4.0,50000.0,0.0,0.0,4.0,0.0,3.0,82092801000.0,0.0,0.0,0.0,4.0,0.0,7.0,2.0,1.5,1106.2275634,6.0,5.0,2.0,0.0,2.0,3.0,2.0,0.0,0.0,0,1,0,0,0,0,0.0,2.0,50000.0,18876.0,4,0,4_0,4_0 17066,3.0,8.0,25.0,221.0,5.0,38.0,12.0,0.0,4.0,44859.0,0.0,70.0,4.0,14.666666666666666,3.0,82093101000.0,565.0,3.3,2.0,4.0,1.0,6.0,3.0,1.8,3768.2144812,4.0,1.0,4.0,0.0,2.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,44859.0,16956.0,3,0,3_0,3_0 -17067,5.0,16.0,37.0,221.0,5.0,53.0,71.0,0.0,4.0,0.0,28800.0,195.79999999999998,4.0,19.0,4.0,82093201000.0,520.0,3.3,2.0,4.0,3.0,3.0,5.0,2.4,1209.711345,5.0,1.0,4.0,0.0,2.0,4.0,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,28800.0,11820.0,2,0,2_1,2_0 +17067,5.0,16.0,37.0,221.0,5.0,53.0,71.0,0.0,4.0,0.0,28800.0,195.8,4.0,19.0,4.0,82093201000.0,520.0,3.3,2.0,4.0,3.0,3.0,5.0,2.4,1209.711345,5.0,1.0,4.0,0.0,2.0,4.0,1.0,0.0,1.0,0,1,0,0,0,1,1.0,0.0,28800.0,11820.0,2,0,2_1,2_0 17068,1.0,10.0,45.0,221.0,5.5,63.0,42.0,0.0,4.0,20144.0,0.0,103.5,3.0,16.0,3.0,82093401000.0,0.0,0.0,2.0,5.0,1.0,6.0,3.0,1.8,1468.2193401,6.0,1.0,5.0,0.0,2.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,0.0,2.0,20144.0,16860.0,3,0,3_0,3_0 17069,24.0,0.0,93.0,111.0,0.0,72.0,70.0,0.0,2.0,0.0,0.0,0.0,4.0,0.0,3.0,82093601000.0,254.0,0.0,0.0,3.0,0.0,2.0,1.0,1.0,4057.585897,4.0,5.0,4.0,5.0,4.0,1.0,1.0,0.0,0.0,0,0,1,0,0,0,1.0,0.0,0.0,9600.0,1,0,1_0,1_0 17070,4.0,0.0,44.0,111.0,0.0,62.0,71.0,0.0,4.0,17102.0,0.0,66.5,4.0,32.0,4.0,82093701000.0,0.0,3.3,2.0,4.0,3.0,3.0,5.0,2.4,3031.2985898,0.0,1.0,4.0,5.0,4.0,4.0,1.0,0.0,1.0,0,0,1,0,0,0,0.0,1.0,17102.0,11004.0,2,0,2_0,2_0 @@ -17610,7 +17610,7 @@ 17608,3.0,16.0,45.0,112.0,5.0,62.0,50.0,0.0,4.0,30000.0,0.0,198.0,4.0,45.0,4.0,83003301000.0,0.0,3.3,2.0,4.0,1.0,7.0,3.0,1.8,1569.8342934,5.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,30000.0,18672.0,4,0,4_0,4_1 17609,7.0,7.0,56.0,112.0,9.0,45.0,50.0,0.0,4.0,0.0,10000.0,99.0,0.0,80.0,1.0,83003501000.0,0.0,3.3,1.0,4.0,0.0,8.0,1.0,1.0,767.22558499,7.0,1.0,2.0,8.0,0.0,1.0,1.0,0.0,1.0,1,0,0,0,0,0,1.0,0.0,10000.0,24000.0,4,0,4_0,4_1 17610,3.0,10.0,51.0,112.0,0.0,52.0,50.0,0.0,4.0,11000.0,0.0,176.0,2.0,45.0,3.0,83003601000.0,0.0,3.3,2.0,5.0,1.0,4.0,2.0,1.5,624.50808164,5.0,1.0,2.0,8.0,0.0,2.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,11000.0,12804.0,2,0,2_0,2_1 -17611,2.0,3.0,39.0,112.0,5.0,43.0,20.0,12500.0,4.0,0.0,0.0,98.60000000000001,1.0,20.0,4.0,83003711000.0,0.0,3.31,2.0,7.0,2.0,8.0,4.0,2.1,727.45996678,5.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,0.0,12500.0,22860.0,4,0,4_0,4_1 +17611,2.0,3.0,39.0,112.0,5.0,43.0,20.0,12500.0,4.0,0.0,0.0,98.6,1.0,20.0,4.0,83003711000.0,0.0,3.31,2.0,7.0,2.0,8.0,4.0,2.1,727.45996678,5.0,1.0,1.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,0.0,12500.0,22860.0,4,0,4_0,4_1 17612,6.0,7.0,54.0,112.0,0.0,47.0,41.0,0.0,2.0,0.0,19067.0,88.5,4.0,37.5,2.0,83004001000.0,0.0,3.3,2.0,4.0,0.0,9.0,2.0,1.5,1585.8326535,7.0,1.0,1.0,8.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,2.0,0.0,19067.0,27996.0,5,0,5,5_1 17613,8.0,8.0,53.0,112.0,7.0,54.0,41.0,0.0,4.0,0.0,9416.0,0.0,4.0,0.0,1.0,83004111000.0,0.0,0.0,1.0,3.0,0.0,3.0,1.0,1.0,1434.2534803,6.0,4.0,2.0,8.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,9416.0,12000.0,2,0,2_0,2_1 17614,5.0,9.0,28.0,112.0,0.0,63.0,50.0,0.0,1.0,20000.0,0.0,30.0,1.0,16.666666666666668,3.0,83004201000.0,590.0,3.31,2.0,3.0,1.0,8.0,3.0,1.8,969.28140307,4.0,1.0,4.0,8.0,0.0,4.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,20000.0,23328.0,4,0,4_0,4_1 @@ -18162,7 +18162,7 @@ 18160,8.0,8.0,86.0,111.0,7.0,77.0,71.0,0.0,4.0,0.0,13000.0,0.0,0.0,0.0,1.0,91047202000.0,0.0,0.0,0.0,2.0,0.0,6.0,1.0,1.0,838.5366242,6.0,5.0,2.0,6.0,0.0,1.0,1.0,0.0,0.0,1,0,0,0,0,0,1.0,0.0,13000.0,16296.0,3,0,3_0,3_1 18161,9.0,11.0,54.0,111.0,0.0,54.0,41.0,0.0,4.0,29150.0,0.0,206.0,0.0,30.0,4.0,91047302000.0,0.0,3.3,1.0,3.0,0.0,5.0,2.0,1.5,174.81696824,5.0,1.0,2.0,6.0,0.0,3.0,2.0,0.0,1.0,1,0,0,0,0,0,0.0,2.0,29150.0,14400.0,3,0,3_0,3_1 18162,7.0,8.0,49.0,111.0,0.0,47.0,71.0,0.0,2.0,16428.0,0.0,0.0,0.0,0.0,2.0,91047402000.0,0.0,0.0,1.0,6.0,2.0,7.0,4.0,2.3,213.14243865,7.0,1.0,2.0,6.0,0.0,4.0,3.0,1.0,0.0,1,0,0,0,0,0,0.0,3.0,16428.0,19044.0,4,0,4_0,4_1 -18163,3.0,13.0,36.0,112.0,8.0,33.0,20.0,0.0,4.0,13333.0,0.0,226.39999999999998,2.0,35.4,4.0,91047502000.0,0.0,3.3,2.0,4.0,3.0,5.0,5.0,2.4,181.4855938,5.0,1.0,1.0,6.0,0.0,4.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13333.0,15000.0,3,0,3_0,3_1 +18163,3.0,13.0,36.0,112.0,8.0,33.0,20.0,0.0,4.0,13333.0,0.0,226.4,2.0,35.4,4.0,91047502000.0,0.0,3.3,2.0,4.0,3.0,5.0,5.0,2.4,181.4855938,5.0,1.0,1.0,6.0,0.0,4.0,1.0,0.0,1.0,1,0,0,0,0,0,0.0,1.0,13333.0,15000.0,3,0,3_0,3_1 18164,0.0,0.0,30.0,112.0,0.0,81.0,71.0,0.0,4.0,15164.0,0.0,0.0,4.0,0.0,4.0,91047605000.0,0.0,0.0,1.0,2.0,3.0,1.0,5.0,2.4,428.74850767,0.0,4.0,4.0,6.0,0.0,4.0,1.0,0.0,0.0,1,0,0,0,0,1,0.0,1.0,15164.0,4812.0,1,0,1_1,1_1 18165,5.0,10.0,51.0,112.0,9.0,46.0,33.0,0.0,4.0,0.0,30000.0,0.0,4.0,0.0,4.0,91047902000.0,0.0,0.0,1.0,5.0,1.0,7.0,3.0,2.0,470.31571721,8.0,7.0,2.0,6.0,0.0,4.0,1.0,1.0,0.0,1,0,0,0,0,0,1.0,0.0,30000.0,19560.0,4,0,4_0,4_1 18166,5.0,5.0,57.0,112.0,6.0,56.0,50.0,0.0,4.0,30000.0,2000.0,0.0,4.0,0.0,1.0,91048102000.0,0.0,0.0,1.0,4.0,0.0,6.0,2.0,1.5,173.65227689,5.0,1.0,1.0,6.0,0.0,3.0,2.0,1.0,0.0,1,0,0,0,0,0,1.0,1.0,32000.0,15996.0,3,0,3_0,3_1 @@ -18625,7 +18625,7 @@ 18623,2.0,2.0,46.0,111.0,6.0,48.0,41.0,0.0,1.0,5500.0,0.0,0.0,1.0,0.0,1.0,91119605000.0,0.0,0.0,1.0,7.0,2.0,10.0,4.0,2.1,894.60771381,6.0,1.0,2.0,8.0,1.0,4.0,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,5500.0,39432.0,5,0,5,5_0 18624,5.0,5.0,68.0,111.0,6.0,74.0,12.0,0.0,1.0,21000.0,0.0,0.0,1.0,0.0,1.0,91119702000.0,0.0,0.0,0.0,5.0,0.0,10.0,1.0,1.0,354.69263617,7.0,5.0,2.0,8.0,1.0,1.0,1.0,0.0,0.0,0,1,0,0,0,0,0.0,1.0,21000.0,36000.0,5,0,5,5_0 18625,3.0,3.0,79.0,111.0,8.0,78.0,70.0,0.0,1.0,0.0,8000.0,0.0,1.0,0.0,1.0,91119802000.0,0.0,0.0,0.0,6.0,0.0,1.0,2.0,1.5,993.05468695,8.0,5.0,2.0,8.0,1.0,3.0,1.0,0.0,0.0,0,1,0,0,0,0,1.0,0.0,8000.0,4896.0,1,0,1_0,1_0 -18626,8.0,12.0,41.0,111.0,7.0,42.0,41.0,0.0,1.0,0.0,32000.0,121.60000000000001,1.0,50.0,2.0,91119902000.0,0.0,5.5,2.0,4.0,2.0,7.0,4.0,2.3,620.6226597,5.0,1.0,2.0,8.0,1.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,32000.0,18264.0,4,0,4_0,4_0 +18626,8.0,12.0,41.0,111.0,7.0,42.0,41.0,0.0,1.0,0.0,32000.0,121.6,1.0,50.0,2.0,91119902000.0,0.0,5.5,2.0,4.0,2.0,7.0,4.0,2.3,620.6226597,5.0,1.0,2.0,8.0,1.0,4.0,2.0,0.0,1.0,0,1,0,0,0,0,2.0,0.0,32000.0,18264.0,4,0,4_0,4_0 18627,1.0,2.0,47.0,111.0,5.0,43.0,33.0,0.0,1.0,10001.0,0.0,407.9,1.0,81.66666666666667,0.0,91120102000.0,0.0,3.3,2.0,4.0,1.0,8.0,3.0,2.0,733.23170099,5.0,1.0,2.0,8.0,1.0,4.0,3.0,0.0,1.0,0,1,0,0,0,0,0.0,3.0,10001.0,21600.0,4,0,4_0,4_0 18628,9.0,15.0,85.0,111.0,7.0,75.0,70.0,0.0,3.0,0.0,11000.0,0.0,1.0,0.0,3.0,91120302000.0,0.0,0.0,0.0,5.0,0.0,2.0,2.0,1.5,404.19174904,7.0,5.0,2.0,8.0,1.0,3.0,2.0,0.0,0.0,0,1,0,0,0,0,2.0,0.0,11000.0,10404.0,1,0,1_0,1_0 18629,3.0,18.0,58.0,111.0,6.0,62.0,50.0,0.0,1.0,0.0,3000.0,0.0,1.0,0.0,3.0,91120402000.0,420.0,0.0,1.0,3.0,0.0,1.0,2.0,1.5,1173.3568064,4.0,4.0,4.0,8.0,1.0,3.0,1.0,0.0,0.0,0,1,0,0,0,1,1.0,0.0,3000.0,7200.0,1,0,1_1,1_0 @@ -19043,7 +19043,7 @@ 19041,2.0,6.0,26.0,111.0,0.0,63.0,50.0,0.0,1.0,16000.0,0.0,233.5,1.0,32.666666666666664,3.0,91182601000.0,415.0,3.3,2.0,3.0,1.0,4.0,3.0,1.8,1733.7067038,6.0,1.0,4.0,8.0,7.0,4.0,2.0,1.0,1.0,0,0,0,1,0,0,0.0,2.0,16000.0,14004.0,2,0,2_0,2_0 19042,1.0,1.0,39.0,111.0,0.0,46.0,12.0,0.0,4.0,0.0,15518.0,105.80000000000001,2.0,29.666666666666668,1.0,91182711000.0,0.0,3.31,2.0,5.0,2.0,10.0,4.0,2.1,2029.0508961,10.0,1.0,1.0,8.0,7.0,4.0,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,15518.0,42852.0,5,0,5,5_0 19043,0.0,0.0,85.0,111.0,0.0,78.0,70.0,0.0,4.0,0.0,0.0,0.0,2.0,0.0,0.0,91182802000.0,0.0,0.0,0.0,7.0,0.0,2.0,1.0,1.0,800.02253471,0.0,5.0,2.0,8.0,7.0,1.0,0.0,0.0,0.0,0,0,0,1,0,0,0.0,0.0,0.0,9444.0,1,0,1_0,1_0 -19044,4.0,4.0,52.0,111.0,7.0,34.0,10.0,0.0,2.0,25000.0,10000.0,369.8,3.0,43.333333333333336,1.0,91183002000.0,0.0,3.3,2.0,5.0,1.0,10.0,3.0,1.8,566.0466629,8.0,1.0,1.0,8.0,7.0,4.0,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,35000.0,39996.0,5,0,5,5_0 +19044,4.0,4.0,52.0,111.0,7.0,34.0,10.0,0.0,2.0,25000.0,10000.0,369.79999999999995,3.0,43.333333333333336,1.0,91183002000.0,0.0,3.3,2.0,5.0,1.0,10.0,3.0,1.8,566.0466629,8.0,1.0,1.0,8.0,7.0,4.0,2.0,0.0,1.0,0,0,0,1,0,0,1.0,1.0,35000.0,39996.0,5,0,5,5_0 19045,5.0,9.0,58.0,111.0,0.0,38.0,60.0,0.0,2.0,22500.0,0.0,0.0,2.0,218.33333333333334,2.0,91183102000.0,0.0,3.3,2.0,4.0,2.0,6.0,4.0,2.5,500.70482735,6.0,1.0,1.0,8.0,7.0,4.0,3.0,0.0,1.0,0,0,0,1,0,0,0.0,3.0,22500.0,16800.0,3,0,3_0,3_0 19046,5.0,5.0,43.0,111.0,7.1,55.0,50.0,0.0,4.0,0.0,10046.0,182.0,3.0,35.0,1.0,91183211000.0,0.0,3.3,1.0,4.0,1.0,5.0,2.0,1.5,991.18220591,6.0,1.0,1.0,8.0,7.0,2.0,2.0,0.0,1.0,0,0,0,1,0,0,2.0,0.0,10046.0,15588.0,3,0,3_0,3_0 19047,4.0,12.0,40.0,111.0,11.0,67.0,50.0,0.0,3.0,0.0,15750.0,0.0,3.0,3.3333333333333335,3.0,91183311000.0,617.0,0.0,2.0,4.0,1.0,8.0,3.0,1.8,1516.0235749,14.0,1.0,4.0,8.0,7.0,4.0,1.0,0.0,0.0,0,0,0,1,0,0,1.0,0.0,15750.0,21996.0,4,0,4_0,4_0 diff --git a/openfisca_france_indirect_taxation/assets/matching/matching_erfs/data_matching_bdf.csv b/openfisca_france_indirect_taxation/assets/matching/matching_erfs/data_matching_bdf.csv index c389f9bd..f7f4d9d6 100644 --- a/openfisca_france_indirect_taxation/assets/matching/matching_erfs/data_matching_bdf.csv +++ b/openfisca_france_indirect_taxation/assets/matching/matching_erfs/data_matching_bdf.csv @@ -1,10343 +1,12082 @@ -,ident_men,pondmen,agepr,cataeu,chomage,cs42pr,nactifs,nactoccup,npers,ocde10,prest_precarite_hand,prest_precarite_rsa,prest_precarite_vieil,retraites,rev_valeurs_mobilieres_bruts,rev_etranger,rev_disponible,rsa_act,salaires,stalog,tau,tuu,typmen,donation_class_1 -0,1,2901.594333826595,40.0,111,0.0,85,1.0,1.0,3.0,1.8,8380.0,0.0,0.0,0.0,0.0,0.0,22071.0,0.0,850.0,3,8,7.0,4,1.0 -1,2,656.7065594434698,77.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18720.0,0.0,0.0,25288.5,0.0,0.0,1,0,0.0,3,0.0 -2,3,3494.5161973082627,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6007.0,0.0,0.0,3,8,7.0,1,0.0 -3,4,2346.497290551437,47.0,300,0.0,62,3,3.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,36244.0,0.0,16240.0,3,0,0.0,4,3.0 -4,5,1055.037503252801,45.0,112,0.0,13,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37345.25,0.0,0.0,2,6,0.0,4,3.0 -5,6,2524.4531302948108,51.0,400,380.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,59205.7,0.0,63780.0,2,0,0.0,4,3.0 -6,7,2818.8787773354916,36.0,221,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59972.55,0.0,57900.0,2,1,2.0,4,2.0 -7,8,3042.172564285492,43.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19150.4,0.0,19950.0,3,9,7.0,1,1.0 -8,9,2321.911114973963,37.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,31.0,0.0,17835.35,0.0,24790.0,2,8,7.0,4,2.0 -9,12,3847.4230884251247,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20510.0,0.0,0.0,20290.85,0.0,0.0,3,9,7.0,1,0.0 -10,13,2997.943136245827,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30950.0,0.0,0.0,29746.5,0.0,0.0,1,8,6.0,3,0.0 -11,14,778.1646167884289,51.0,120,0.0,52,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,52658.8,0.0,55570.0,2,0,1.0,4,3.0 -12,16,1673.2743941514125,48.0,211,0.0,48,2.0,2.0,3.0,2.0,8380.0,0.0,0.0,0.0,0.0,0.0,47573.0,0.0,39810.0,3,1,2.0,4,2.0 -13,17,5744.891587005811,47.0,112,15080.0,62,1.0,0.0,2.0,1.5,0.0,0.0,0.0,10930.0,0.0,0.0,24317.45,0.0,0.0,1,7,0.0,2,1.0 -14,18,1144.0045291615413,55.0,120,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11820.0,0.0,0.0,26716.2,0.0,16260.0,2,0,0.0,3,1.0 -15,19,1957.3386844352506,36.0,111,350.0,67,1.0,0.0,5.0,2.4,0.0,1530.0,0.0,0.0,0.0,0.0,15692.8,2630.0,7040.0,3,9,7.0,4,1.0 -16,20,2315.6380812529665,56.0,112,0.0,13,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34231.15,0.0,37140.0,1,9,0.0,2,2.0 -17,22,2739.6399774681213,75.0,221,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31830.0,0.0,0.0,30333.8,0.0,0.0,1,1,1.0,3,0.0 -18,23,2998.99156430886,55.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,58003.1,0.0,66950.0,1,9,7.0,1,1.0 -19,24,2041.8852356157297,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45550.0,0.0,0.0,38891.8,0.0,0.0,1,9,7.0,3,0.0 -20,26,1979.1303941573744,75.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19100.0,0.0,0.0,20455.0,0.0,0.0,5,1,2.0,3,0.0 -21,27,1834.4258748182513,64.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,2670.0,6040.0,0.0,0.0,10977.4,0.0,0.0,1,8,2.0,1,0.0 -22,30,2213.5260979303644,45.0,111,15860.0,37,1.0,0.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,25695.95,0.0,2310.0,3,10,8.0,4,1.0 -23,32,3495.063291618568,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,96860.0,0.0,0.0,82067.4,0.0,0.0,5,9,1.0,3,0.0 -24,36,2565.974154592133,58.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42350.0,0.0,0.0,39646.45,0.0,0.0,1,9,7.0,3,0.0 -25,37,3247.041046674947,37.0,111,2440.0,67,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25364.0,350.0,19220.0,3,10,8.0,4,1.0 -26,38,1007.994529243464,63.0,112,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30900.0,0.0,0.0,35945.05,0.0,7360.0,2,8,1.0,3,1.0 -27,41,2605.6231188215834,39.0,221,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,119.0,0.0,64726.0,0.0,75570.0,2,1,2.0,3,2.0 -28,42,1123.5691905665537,42.0,112,18680.0,43,2.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,27654.25,0.0,9430.0,3,9,1.0,4,2.0 -29,43,4750.347438192846,86.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13450.0,0.0,0.0,13565.0,0.0,0.0,3,4,3.0,1,0.0 -30,44,1096.242325620607,57.0,111,14690.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22934.85,0.0,7990.0,3,6,4.0,3,2.0 -31,45,1375.82605633765,82.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32710.0,0.0,0.0,31813.55,0.0,0.0,3,8,7.0,3,0.0 -32,46,4393.0404454502495,44.0,112,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34032.35,0.0,29960.0,2,9,0.0,4,2.0 -33,50,1641.868817755813,69.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21110.0,0.0,0.0,24906.65,0.0,0.0,1,8,0.0,1,0.0 -34,51,2543.306207607211,38.0,120,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55809.15,0.0,26130.0,2,0,1.0,4,2.0 -35,56,2665.46899130069,66.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20960.0,445.0,0.0,24156.75,0.0,0.0,1,10,4.0,3,0.0 -36,60,3632.426425918698,53.0,221,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,90516.45,0.0,93390.0,2,1,2.0,4,2.0 -37,61,3064.4221776366035,25.0,111,0.0,53,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21116.5,0.0,15870.0,3,8,7.0,4,1.0 -38,62,3469.277623746239,36.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,160.0,0.0,24617.0,0.0,22970.0,3,10,8.0,1,1.0 -39,64,2398.185768565184,48.0,111,7450.0,85,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29951.4,0.0,10880.0,1,5,4.0,4,1.0 -40,65,1399.2185217425815,42.0,112,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34364.5,0.0,33410.0,2,9,0.0,4,2.0 -41,68,997.3441415966805,43.0,111,0.0,62,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,1.0,0.0,46800.3,0.0,41210.0,2,7,5.0,4,3.0 -42,69,4490.615168021303,62.0,111,9990.0,21,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,9720.5,0.0,300.0,1,5,4.0,4,1.0 -43,70,1599.0667812375536,56.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,33470.0,0.0,0.0,60454.75,0.0,34650.0,1,8,7.0,3,1.0 -44,71,2501.617620243663,36.0,211,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,4.0,40627.0,61088.45,0.0,18310.0,2,1,2.0,4,2.0 -45,73,1596.7801537806824,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37640.0,0.0,0.0,43718.8,0.0,2440.0,1,8,7.0,3,0.0 -46,75,2732.3006259693675,34.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,4560.0,0.0,0.0,0.0,0.0,8476.9,210.0,3060.0,3,9,7.0,1,1.0 -47,76,2434.8391889129643,61.0,112,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26260.0,0.0,0.0,31778.35,0.0,0.0,1,8,0.0,3,1.0 -48,78,4200.360189118542,38.0,111,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21078.5,0.0,22220.0,2,10,8.0,3,1.0 -49,81,3373.2386937670603,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21880.0,227.0,0.0,81859.55,0.0,9280.0,1,9,7.0,3,0.0 -50,83,1403.7804186460166,70.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19930.0,0.0,0.0,22266.1,0.0,0.0,1,0,0.0,3,0.0 -51,84,1717.573062199089,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29220.0,0.0,0.0,28416.7,0.0,1160.0,1,10,8.0,3,0.0 -52,86,1643.264617536659,41.0,111,70.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46686.9,0.0,47450.0,2,7,5.0,4,2.0 -53,88,3691.932872427387,35.0,221,8010.0,22,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,16001.15,0.0,4260.0,5,1,2.0,4,1.0 -54,89,4320.821809450599,56.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21166.75,0.0,20410.0,3,7,5.0,4,1.0 -55,90,4976.199283309399,65.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2440.0,0.0,0.0,1715.35,0.0,0.0,3,9,3.0,1,0.0 -56,91,2776.4086314035167,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15240.0,0.0,0.0,15024.15,0.0,0.0,1,8,7.0,1,0.0 -57,92,1857.7744855834196,42.0,300,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25211.4,0.0,19490.0,2,0,0.0,2,1.0 -58,93,2881.0858154527255,59.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,476.0,0.0,31056.8,0.0,32010.0,1,7,6.0,1,1.0 -59,96,3653.0506970917563,56.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,11640.0,0.0,0.0,68421.35,0.0,63060.0,3,10,8.0,3,2.0 -60,97,1747.405482566283,45.0,111,7630.0,37,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,137178.0,0.0,128790.0,2,10,8.0,4,2.0 -61,99,2204.1536847489615,60.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25540.0,0.0,0.0,24918.5,0.0,0.0,1,0,0.0,3,0.0 -62,100,3901.7820205411404,55.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66645.75,0.0,46750.0,1,8,0.0,3,2.0 -63,101,2712.561086335965,43.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,55533.3,0.0,64160.0,2,10,8.0,1,1.0 -64,103,3213.4435468831102,73.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11360.0,0.0,0.0,12636.0,0.0,0.0,3,0,0.0,1,0.0 -65,105,1770.266773016474,49.0,111,350.0,65,1.0,0.0,1.0,1.0,6030.0,0.0,0.0,0.0,0.0,0.0,15565.7,0.0,6920.0,3,9,7.0,1,1.0 -66,106,1935.519316563005,51.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,53.0,0.0,59886.9,0.0,55530.0,1,9,7.0,4,2.0 -67,109,1899.863023842108,58.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,36.0,0.0,43153.15,0.0,47730.0,1,9,0.0,3,2.0 -68,110,3172.530888680353,59.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11250.0,0.0,0.0,32386.2,0.0,23210.0,3,9,7.0,2,1.0 -69,111,2898.880860698972,61.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8050.0,0.0,0.0,26056.0,0.0,16080.0,3,9,7.0,1,1.0 -70,112,3115.8559626528327,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21280.0,0.0,0.0,21331.0,0.0,0.0,3,9,7.0,3,0.0 -71,113,2868.8211671403456,47.0,111,0.0,52,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,27082.8,0.0,23140.0,3,9,7.0,2,2.0 -72,114,2223.042514047571,57.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,91512.85,0.0,108470.0,1,10,8.0,3,2.0 -73,115,1053.5203222806847,54.0,400,2940.0,34,3,4.0,5.0,2.8,0.0,0.0,0.0,0.0,20.0,0.0,86771.15,0.0,87510.0,2,0,0.0,4,4.0 -74,117,1058.6105808283683,70.0,111,0.0,42,1.0,0.0,2.0,1.5,0.0,0.0,0.0,38930.0,52.0,0.0,40343.85,0.0,4110.0,1,7,6.0,3,1.0 -75,119,4168.7539927760145,77.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23190.0,11.0,0.0,21725.85,0.0,0.0,1,7,0.0,3,0.0 -76,120,1027.6808294126877,46.0,112,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51484.15,0.0,54300.0,1,10,1.0,4,2.0 -77,122,3619.436166717293,29.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,50.0,0.0,39191.75,0.0,36070.0,3,7,0.0,3,2.0 -78,123,3053.714136511484,47.0,111,0.0,37,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,69484.65,0.0,74990.0,2,10,8.0,4,3.0 -79,124,4015.105203806269,33.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42885.2,0.0,36960.0,2,7,5.0,4,2.0 -80,125,2726.4792404692625,45.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19246.15,0.0,17620.0,3,9,7.0,2,1.0 -81,126,2067.5847103843203,49.0,112,6160.0,46,1.0,0.0,1.0,1.0,0.0,1230.0,0.0,0.0,0.0,0.0,14681.1,130.0,5930.0,3,8,1.0,1,1.0 -82,128,1655.8456754617393,58.0,111,0.0,33,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,60049.1,0.0,50370.0,1,5,4.0,4,1.0 -83,129,2923.601607639471,84.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33810.0,0.0,0.0,33626.85,0.0,0.0,1,1,2.0,3,0.0 -84,130,1330.41246261498,87.0,300,0.0,71,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10540.0,0.0,0.0,-0.0,0.0,6950.0,1,0,0.0,2,1.0 -85,132,2982.8000363902424,33.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5778.25,0.0,0.0,3,9,7.0,1,1.0 -86,133,3403.269566057394,82.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13450.0,0.0,0.0,14734.7,0.0,0.0,1,0,0.0,2,0.0 -87,134,3645.3997211268475,43.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43330.2,0.0,32350.0,3,10,2.0,4,2.0 -88,135,999.1074736379651,41.0,111,0.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,57110.0,0.0,54770.0,2,9,7.0,4,2.0 -89,136,1265.839964693113,54.0,300,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,76800.95,0.0,88280.0,1,0,0.0,3,2.0 -90,137,3117.082658360117,30.0,111,21650.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22170.0,0.0,0.0,3,8,7.0,1,0.0 -91,138,1806.8777089350267,41.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32670.75,0.0,31080.0,2,8,7.0,4,2.0 -92,139,3497.768108413451,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27860.0,0.0,0.0,24790.6,0.0,0.0,1,9,7.0,1,0.0 -93,142,2112.4520746588046,48.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17469.05,0.0,18730.0,3,6,4.0,1,1.0 -94,145,3543.6807109577667,89.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16580.0,0.0,0.0,16251.75,0.0,0.0,1,6,0.0,3,0.0 -95,146,1089.0882539292022,36.0,111,5860.0,67,3,4.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,56014.4,0.0,54190.0,2,8,7.0,5,5.0 -96,149,2180.182886675799,51.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,1000.0,0.0,0.0,36909.65,0.0,39370.0,2,7,5.0,2,2.0 -97,150,2732.1862120454357,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17370.0,0.0,0.0,16962.5,0.0,440.0,3,8,6.0,1,0.0 -98,151,1872.4474139184651,46.0,111,0.0,37,3,3.0,4.0,2.5,0.0,0.0,0.0,10530.0,0.0,0.0,59062.05,0.0,51270.0,3,9,7.0,4,3.0 -99,153,1797.402643582297,78.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19410.0,382.0,0.0,21934.7,0.0,0.0,1,0,0.0,3,0.0 -100,154,1491.7995429021562,45.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57824.1,0.0,61710.0,2,8,7.0,3,2.0 -101,155,5229.956204477322,41.0,221,0.0,85,1.0,1.0,3.0,1.8,8380.0,0.0,0.0,0.0,0.0,0.0,22614.0,0.0,9910.0,3,1,2.0,4,1.0 -102,157,3329.983984928582,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2400.0,0.0,0.0,3,8,7.0,1,0.0 -103,158,2717.9673600944843,46.0,111,0.0,85,0.0,0.0,2.0,1.5,1490.0,5880.0,0.0,0.0,0.0,0.0,7370.0,0.0,0.0,4,8,7.0,3,0.0 -104,162,3246.1560864866583,20.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13643.75,0.0,11260.0,3,8,6.0,1,1.0 -105,163,1916.3653947948478,44.0,400,6670.0,47,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37275.35,0.0,28770.0,3,0,1.0,4,2.0 -106,164,2097.0647676457984,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20590.0,0.0,0.0,25559.1,0.0,6040.0,5,9,7.0,1,0.0 -107,165,2016.8785295418058,64.0,111,0.0,53,1.0,1.0,8.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,30170.0,0.0,17660.0,5,6,5.0,4,1.0 -108,166,1563.7889782382197,38.0,112,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,50933.0,0.0,43020.0,2,7,1.0,4,2.0 -109,167,1934.5796474571926,63.0,112,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15030.0,202.0,0.0,52831.6,0.0,40560.0,1,9,0.0,3,1.0 -110,168,3519.4339241223956,37.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47888.1,0.0,48380.0,2,10,8.0,4,2.0 -111,170,2064.280901985578,91.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25230.0,120.0,0.0,30127.55,0.0,0.0,1,7,5.0,1,0.0 -112,172,1145.3191070758483,40.0,112,2340.0,67,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45662.5,0.0,33240.0,3,8,0.0,4,2.0 -113,177,1029.6657244888731,73.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34020.0,0.0,0.0,34725.6,0.0,0.0,1,8,2.0,3,0.0 -114,178,2216.9735111891177,45.0,111,0.0,65,2.0,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42674.2,0.0,41940.0,3,7,5.0,4,2.0 -115,180,2636.69256708809,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20580.0,0.0,0.0,20355.8,0.0,0.0,3,8,6.0,1,0.0 -116,181,2073.464884846439,43.0,111,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37990.6,0.0,33780.0,2,5,4.0,4,2.0 -117,182,1556.2076458997865,66.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25350.0,0.0,0.0,24354.0,0.0,0.0,1,8,0.0,3,1.0 -118,183,1126.513130308353,39.0,111,6510.0,85,1.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,25981.55,0.0,5680.0,3,9,7.0,4,1.0 -119,184,968.5259050217131,39.0,120,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37708.6,0.0,37740.0,2,0,1.0,4,2.0 -120,185,2189.646317795377,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50930.0,1888.0,0.0,52572.95,0.0,0.0,1,6,5.0,3,0.0 -121,186,1822.3104335059131,62.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,25450.0,0.0,0.0,27061.2,0.0,6070.0,5,7,5.0,1,1.0 -122,187,2945.6470652788253,42.0,112,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35620.85,0.0,31380.0,2,6,0.0,4,2.0 -123,189,1069.5772437011892,59.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23090.0,0.0,0.0,22368.55,0.0,0.0,1,9,2.0,3,0.0 -124,190,7492.119150756924,28.0,111,2050.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15153.0,0.0,11260.0,4,8,7.0,1,1.0 -125,192,6262.460340101621,50.0,111,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45493.5,0.0,40370.0,3,8,6.0,4,2.0 -126,193,5162.07821372362,86.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26030.0,6.0,0.0,26789.45,0.0,0.0,1,1,2.0,3,0.0 -127,194,2724.877550287974,53.0,111,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50312.85,0.0,52490.0,2,8,6.0,4,3.0 -128,196,5417.544892900689,74.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29830.0,0.0,0.0,27990.9,0.0,260.0,1,0,2.0,3,0.0 -129,203,1803.795943060611,40.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47239.0,0.0,45380.0,2,10,8.0,4,2.0 -130,204,3304.5376843122144,27.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50267.35,0.0,48610.0,2,6,0.0,4,2.0 -131,205,2377.7807919462157,55.0,111,0.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,65083.45,0.0,70110.0,1,10,8.0,4,3.0 -132,206,2666.131268027621,57.0,221,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43108.8,0.0,45220.0,1,1,1.0,3,2.0 -133,207,2042.8681552660496,63.0,112,3910.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25640.0,0.0,0.0,28312.35,0.0,0.0,5,6,0.0,3,0.0 -134,208,3138.3216430832576,78.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16400.0,0.0,0.0,14846.8,0.0,0.0,1,8,1.0,1,0.0 -135,211,3237.037897373187,41.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32277.6,0.0,36290.0,2,8,7.0,1,1.0 -136,212,4096.874689197337,60.0,111,5520.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5330.0,0.0,0.0,13990.0,0.0,0.0,3,8,7.0,1,0.0 -137,215,2971.561461348498,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33320.0,0.0,0.0,30176.9,0.0,0.0,1,10,8.0,1,0.0 -138,216,1916.4669431990758,40.0,112,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16480.0,0.0,0.0,37462.35,0.0,25820.0,1,8,0.0,2,1.0 -139,217,2234.490856360785,52.0,111,0.0,21,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32507.05,0.0,13710.0,1,5,4.0,4,3.0 -140,218,1520.1337426636471,37.0,111,0.0,34,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,499.0,0.0,58535.0,0.0,55190.0,3,8,7.0,4,1.0 -141,220,1692.992263484472,48.0,300,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42465.6,0.0,39640.0,2,0,0.0,4,2.0 -142,221,2493.3901889576446,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11650.0,0.0,0.0,11561.2,0.0,0.0,1,5,4.0,1,0.0 -143,223,1847.3977668974667,37.0,221,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27140.5,0.0,27880.0,3,1,3.0,3,2.0 -144,224,3533.7664344613777,42.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15265.6,0.0,16050.0,3,9,7.0,1,1.0 -145,228,4058.5084620296475,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22480.0,0.0,0.0,22351.15,0.0,0.0,3,8,7.0,1,0.0 -146,229,959.1324415099382,58.0,111,0.0,54,2.0,2.0,4.0,2.5,0.0,0.0,0.0,24700.0,141.0,0.0,53715.45,0.0,29850.0,1,9,7.0,5,2.0 -147,230,1391.3727942101489,55.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,2050.0,0.0,0.0,0.0,0.0,16939.4,470.0,16350.0,1,8,7.0,2,1.0 -148,232,2058.7681526177034,38.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44548.6,0.0,45140.0,1,4,4.0,4,2.0 -149,233,2080.6673926929398,42.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,111.0,0.0,63042.4,0.0,63460.0,1,8,7.0,4,2.0 -150,235,1518.6470811187107,40.0,300,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48807.6,0.0,49030.0,2,0,0.0,4,2.0 -151,236,1326.740596166014,53.0,120,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33409.5,0.0,34710.0,1,0,1.0,3,1.0 -152,238,2435.6089492546685,48.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,86953.2,0.0,24390.0,2,5,4.0,3,2.0 -153,239,2924.7598937474477,32.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35170.2,0.0,37810.0,1,6,5.0,3,2.0 -154,242,1838.1605833142505,41.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57080.0,0.0,13890.0,2,5,4.0,3,2.0 -155,243,2177.8902838047215,62.0,111,0.0,78,0.0,0.0,7.0,3.2,0.0,0.0,0.0,22660.0,0.0,0.0,36563.0,0.0,0.0,3,10,8.0,4,0.0 -156,244,3196.5791606831704,39.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,27.0,0.0,90084.05,0.0,27770.0,2,7,0.0,3,2.0 -157,246,3305.35807613484,38.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28876.55,0.0,31560.0,2,9,1.0,1,1.0 -158,247,2190.2658405242887,55.0,400,0.0,63,1.0,1.0,1.0,1.0,0.0,1050.0,0.0,0.0,0.0,0.0,12152.0,1000.0,8200.0,1,0,0.0,1,1.0 -159,248,2335.3078489742384,49.0,111,860.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,3550.0,0.0,0.0,38890.5,0.0,32950.0,3,10,8.0,2,1.0 -160,249,2650.9502889901983,63.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44980.0,0.0,0.0,41620.1,0.0,0.0,3,9,7.0,3,0.0 -161,250,1316.9265642807827,72.0,111,3570.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20690.0,0.0,0.0,26755.4,0.0,1550.0,3,7,6.0,3,1.0 -162,252,2270.370327311313,52.0,111,0.0,23,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,85492.8,0.0,98710.0,1,8,6.0,4,2.0 -163,255,1830.8316523649478,56.0,120,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51225.25,0.0,54450.0,1,0,0.0,3,2.0 -164,256,3330.058232250494,67.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27230.0,0.0,0.0,26456.3,0.0,0.0,1,0,0.0,3,0.0 -165,258,1397.2011288038932,27.0,400,3090.0,55,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,21437.65,300.0,6530.0,3,0,0.0,2,1.0 -166,260,2533.1598800178413,39.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,34.0,0.0,77811.85,0.0,52310.0,2,9,7.0,3,2.0 -167,261,3380.650527174727,40.0,111,0.0,68,2.0,2.0,3.0,1.8,3690.0,1200.0,0.0,0.0,0.0,0.0,11701.55,2040.0,0.0,3,7,5.0,2,2.0 -168,262,2711.380524790571,56.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8870.0,0.0,0.0,84599.1,0.0,64350.0,3,10,8.0,1,1.0 -169,263,1053.4042136446062,34.0,111,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,38280.6,0.0,34450.0,2,6,4.0,4,2.0 -170,265,1712.0935821280698,61.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23440.0,52.0,0.0,39595.2,0.0,8980.0,1,7,1.0,3,0.0 -171,266,4088.496235218091,84.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27890.0,0.0,0.0,27834.85,0.0,0.0,3,10,8.0,3,0.0 -172,267,2988.0405626021125,41.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36382.95,0.0,37150.0,1,9,7.0,5,2.0 -173,268,1358.502568172695,64.0,300,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,0.0,44840.0,0.0,0.0,43110.75,0.0,0.0,1,0,0.0,4,0.0 -174,269,2903.276460057325,40.0,111,790.0,22,2.0,2.0,3.0,1.8,0.0,850.0,0.0,0.0,0.0,0.0,27515.05,120.0,0.0,3,6,4.0,4,2.0 -175,271,2750.3369027042713,44.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20069.4,0.0,20700.0,3,9,7.0,1,1.0 -176,272,3099.08457534884,31.0,400,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41487.4,0.0,27500.0,2,0,0.0,4,1.0 -177,275,3360.8528774925126,69.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,9450.0,0.0,0.0,12750.0,0.0,0.0,3,9,7.0,5,0.0 -178,277,2780.643394627894,46.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,1640.0,0.0,0.0,0.0,0.0,96989.15,480.0,0.0,2,5,4.0,1,1.0 -179,279,1594.9015904328323,39.0,111,0.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,62056.6,0.0,63860.0,3,5,4.0,2,1.0 -180,280,3564.623728103519,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2192.0,0.0,0.0,5,8,7.0,1,0.0 -181,281,1458.9311088918055,51.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39270.3,0.0,41080.0,1,8,0.0,3,2.0 -182,282,1359.4879657365898,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54520.0,635.0,0.0,51408.75,0.0,0.0,1,4,4.0,3,0.0 -183,283,3507.103688801094,46.0,111,0.0,54,2.0,2.0,2.0,1.5,8750.0,0.0,0.0,0.0,0.0,0.0,39005.2,0.0,34970.0,2,10,8.0,3,2.0 -184,284,2264.5039000994534,32.0,111,0.0,85,0.0,0.0,3.0,1.8,8750.0,0.0,0.0,0.0,0.0,0.0,15520.0,0.0,1720.0,3,8,7.0,4,0.0 -185,285,1678.950223715514,55.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14271.1,0.0,15540.0,5,8,0.0,1,1.0 -186,286,1299.2458484750032,52.0,300,0.0,48,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,30738.0,0.0,17480.0,5,0,0.0,4,3.0 -187,290,2616.45826253923,36.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13497.9,0.0,14200.0,2,9,7.0,1,1.0 -188,291,2220.443417397422,49.0,112,0.0,38,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,9.0,0.0,62374.85,0.0,58390.0,1,7,1.0,4,4.0 -189,292,3490.165207716885,38.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,3420.0,0.0,0.0,0.0,0.0,8626.0,460.0,0.0,3,10,8.0,1,1.0 -190,293,2389.3666100987266,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16030.0,0.0,0.0,15141.8,0.0,0.0,3,7,5.0,1,0.0 -191,294,2139.809163026159,44.0,400,0.0,68,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,46474.2,0.0,15910.0,1,0,0.0,4,2.0 -192,295,2023.9543329788362,40.0,211,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,13.0,0.0,49621.6,0.0,44310.0,2,1,2.0,4,2.0 -193,296,1939.9910473042967,44.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,22.0,0.0,41845.35,0.0,12580.0,1,6,0.0,4,2.0 -194,298,3789.8556177180526,52.0,111,6130.0,33,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32087.75,0.0,26800.0,3,10,8.0,4,2.0 -195,301,2228.1800766417387,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23910.0,0.0,0.0,23305.75,0.0,0.0,3,10,8.0,3,0.0 -196,302,2267.8904520000024,46.0,111,12230.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23087.1,0.0,10980.0,3,7,5.0,3,2.0 -197,303,3512.186307721788,52.0,111,3940.0,56,1.0,1.0,4.0,2.3,0.0,40.0,0.0,0.0,0.0,0.0,16764.8,2680.0,2930.0,3,8,6.0,4,1.0 -198,304,2368.88009561033,58.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34860.0,0.0,0.0,32829.15,0.0,0.0,1,7,0.0,3,0.0 -199,307,1429.1690064356683,65.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8780.0,0.0,0.0,8660.5,0.0,0.0,1,1,2.0,1,0.0 -200,309,2458.8835962407366,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9360.0,0.0,0.0,9486.0,0.0,0.0,3,9,7.0,1,0.0 -201,311,2848.8920165532686,79.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31370.0,0.0,0.0,32202.9,0.0,0.0,3,8,7.0,1,0.0 -202,312,1961.0654376135717,66.0,111,0.0,78,0.0,0.0,2.0,1.5,9150.0,0.0,0.0,12970.0,0.0,0.0,24538.0,0.0,0.0,3,7,5.0,3,0.0 -203,313,6124.8584326456385,25.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13025.95,0.0,14080.0,3,6,5.0,1,1.0 -204,320,3090.5085729660964,23.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35734.7,0.0,36430.0,3,9,0.0,3,2.0 -205,321,1162.3499632782725,52.0,112,0.0,53,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35309.4,0.0,30700.0,1,8,0.0,4,1.0 -206,323,3325.200048833478,57.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35742.0,0.0,34720.0,1,9,7.0,1,1.0 -207,324,2034.9269412916199,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59310.0,706.0,0.0,75546.9,0.0,0.0,1,10,8.0,3,0.0 -208,326,3319.56412237985,80.0,112,0.0,72,1.0,0.0,3.0,2.0,0.0,5420.0,0.0,21630.0,0.0,0.0,40654.7,0.0,1330.0,1,9,3.0,4,1.0 -209,327,3339.6414799208324,39.0,111,5610.0,65,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5610.0,0.0,0.0,3,9,7.0,1,1.0 -210,328,3510.745044968611,53.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23455.1,0.0,25600.0,3,9,7.0,2,1.0 -211,329,2316.2983173501175,66.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34540.0,308.0,0.0,31137.05,0.0,0.0,1,8,7.0,1,0.0 -212,330,1526.9357387592352,57.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,15520.0,0.0,0.0,30785.3,0.0,12550.0,1,9,0.0,1,1.0 -213,331,3631.1510215922654,50.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24938.05,0.0,22930.0,3,10,8.0,1,1.0 -214,332,3095.102316657215,59.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3170.0,0.0,0.0,5570.0,0.0,0.0,3,9,7.0,1,0.0 -215,335,2182.675667145531,37.0,111,10820.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41913.35,0.0,27960.0,2,9,7.0,4,2.0 -216,336,1682.4221332444654,49.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14316.75,0.0,15630.0,2,7,0.0,1,1.0 -217,337,2383.3706749463695,48.0,112,11950.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33422.85,0.0,22400.0,1,5,0.0,3,1.0 -218,340,3620.9006194820777,31.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65026.2,0.0,65130.0,3,8,7.0,1,1.0 -219,342,2860.9064430749213,52.0,120,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12470.0,0.0,0.0,26981.5,0.0,16260.0,1,0,2.0,3,1.0 -220,344,3902.573285068076,51.0,112,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24926.3,0.0,23290.0,3,9,3.0,4,2.0 -221,346,1699.9780567657351,84.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,9980.0,0.0,0.0,10108.85,0.0,0.0,1,0,0.0,3,0.0 -222,347,3020.1647415720804,42.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13740.75,0.0,15640.0,3,9,7.0,1,1.0 -223,348,3529.4520254958866,25.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36702.6,0.0,37200.0,3,8,6.0,3,2.0 -224,349,1531.084942429033,63.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,16470.0,0.0,0.0,36450.45,0.0,21060.0,1,7,5.0,4,1.0 -225,350,1029.0038862111853,39.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,47.0,0.0,36089.8,0.0,35530.0,3,8,7.0,4,2.0 -226,351,1410.1352790112364,65.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29230.0,0.0,0.0,27806.55,0.0,0.0,1,0,0.0,3,0.0 -227,352,5611.580016988197,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23620.0,0.0,0.0,23661.6,0.0,0.0,3,4,4.0,3,0.0 -228,354,2545.5872674661223,53.0,111,0.0,22,2.0,1.0,5.0,3.0,0.0,3440.0,0.0,0.0,0.0,0.0,18250.0,1230.0,9000.0,1,9,7.0,4,2.0 -229,355,2430.294815522701,65.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12810.0,0.0,0.0,12630.7,0.0,0.0,3,6,1.0,1,0.0 -230,356,2297.6320874959088,38.0,111,0.0,54,1.0,1.0,3.0,1.8,7620.0,0.0,0.0,0.0,0.0,0.0,31415.6,0.0,20700.0,4,7,6.0,4,1.0 -231,357,2748.0432627396153,70.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16780.0,0.0,0.0,17928.15,0.0,0.0,1,9,0.0,1,0.0 -232,358,2985.2092660560393,27.0,400,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33221.2,0.0,33180.0,2,0,0.0,3,1.0 -233,359,2897.2037941465755,33.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35965.9,0.0,41050.0,2,8,6.0,1,1.0 -234,360,2175.8486789239,41.0,221,0.0,62,2.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,42004.1,0.0,30100.0,2,1,2.0,4,2.0 -235,363,2066.1891785743887,46.0,400,1700.0,42,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,14913.65,0.0,10870.0,2,0,1.0,2,1.0 -236,365,1357.8490137365425,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16180.0,0.0,0.0,16161.95,0.0,0.0,5,7,6.0,1,0.0 -237,366,3987.648798278775,49.0,112,20160.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41211.65,0.0,23680.0,2,8,0.0,4,1.0 -238,367,3024.4857132160855,28.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,11.0,0.0,21389.85,0.0,21970.0,2,9,7.0,1,1.0 -239,368,2351.460608037366,32.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,4760.0,0.0,0.0,0.0,0.0,23415.0,0.0,0.0,3,9,7.0,2,0.0 -240,370,2653.5658941810443,39.0,111,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41508.85,0.0,41360.0,3,9,7.0,4,2.0 -241,373,2952.9499696211797,55.0,221,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31358.75,0.0,34780.0,1,1,2.0,3,1.0 -242,374,3915.566651338874,63.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,1060.0,0.0,10180.0,0.0,0.0,15068.0,0.0,0.0,3,8,7.0,2,1.0 -243,375,2473.5742525738096,60.0,120,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,9600.0,0.0,0.0,60125.45,0.0,52660.0,1,0,0.0,3,2.0 -244,376,3011.002404906274,41.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,96348.1,0.0,114770.0,2,10,8.0,4,2.0 -245,377,2072.7183201105195,32.0,211,3790.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23947.8,30.0,20260.0,3,3,3.0,3,2.0 -246,379,6491.065023982954,68.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,25650.0,0.0,0.0,131316.95,0.0,135870.0,3,10,8.0,3,2.0 -247,381,1311.1208341568286,51.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40899.75,0.0,43360.0,1,7,5.0,3,2.0 -248,382,1619.0137942618323,44.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,70740.55,0.0,75090.0,2,6,4.0,4,2.0 -249,383,3351.219133248158,62.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18030.0,16.0,0.0,18285.0,0.0,0.0,2,1,2.0,3,0.0 -250,384,740.4355966537496,54.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47399.35,0.0,49110.0,1,9,0.0,3,2.0 -251,387,2228.6054366093,55.0,111,5540.0,46,1.0,0.0,3.0,1.6,0.0,310.0,0.0,0.0,0.0,0.0,14714.15,590.0,2290.0,3,8,7.0,2,1.0 -252,388,2756.414831916337,86.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42240.0,0.0,0.0,38028.55,0.0,0.0,1,9,7.0,3,0.0 -253,389,2661.743870838463,50.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,80873.0,0.0,93800.0,3,10,8.0,1,1.0 -254,390,3509.1616887884006,27.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21468.0,0.0,21770.0,3,9,7.0,3,2.0 -255,391,3269.223097767791,47.0,111,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25259.15,0.0,0.0,2,9,7.0,3,1.0 -256,392,2935.8627635310013,41.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,314.0,0.0,57417.75,0.0,51230.0,3,10,8.0,4,2.0 -257,393,5090.115429985244,50.0,111,12220.0,64,1.0,0.0,1.0,1.0,0.0,0.0,0.0,600.0,0.0,0.0,11483.4,0.0,0.0,3,10,8.0,1,1.0 -258,395,1405.940400913816,52.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,6.0,0.0,27667.1,0.0,29060.0,2,8,7.0,1,1.0 -259,396,2858.4376740884013,51.0,112,4890.0,55,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15332.35,0.0,150.0,1,7,0.0,2,1.0 -260,397,2349.3484444280602,58.0,112,2780.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5850.0,0.0,0.0,24203.25,0.0,22750.0,1,10,0.0,1,1.0 -261,401,1812.1205280602942,67.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18020.0,0.0,0.0,18060.8,0.0,0.0,1,0,0.0,3,0.0 -262,402,2504.902361205145,35.0,112,4910.0,11,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,19438.25,0.0,14410.0,3,7,0.0,4,1.0 -263,404,2019.3787862966678,77.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17710.0,0.0,0.0,17547.0,0.0,0.0,1,4,0.0,3,0.0 -264,407,1872.7341609925077,61.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42080.0,0.0,0.0,43016.75,0.0,0.0,1,3,4.0,3,0.0 -265,408,1560.7827463733388,55.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13700.0,0.0,0.0,34392.7,0.0,23580.0,1,6,4.0,3,1.0 -266,409,1629.141673592729,60.0,112,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,920.0,7270.0,0.0,0.0,36880.2,490.0,27900.0,3,8,1.0,4,2.0 -267,410,1827.601993800435,52.0,211,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,9640.0,92.0,12562.0,56928.5,0.0,29390.0,1,1,2.0,4,2.0 -268,412,1036.9420023699765,53.0,112,0.0,64,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35333.45,0.0,34540.0,2,7,0.0,4,3.0 -269,413,1591.0526451364885,31.0,300,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,10.0,0.0,23891.75,0.0,20720.0,2,0,0.0,2,1.0 -270,414,918.0774883011879,44.0,112,3670.0,53,2.0,2.0,10.0,4.3,0.0,0.0,0.0,0.0,0.0,0.0,51377.5,0.0,32700.0,2,10,0.0,4,2.0 -271,415,1724.973162592887,49.0,112,0.0,42,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51783.3,0.0,55250.0,1,9,3.0,4,2.0 -272,416,2381.9173251849493,32.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21015.6,0.0,20900.0,3,0,0.0,1,1.0 -273,417,2469.377627998013,39.0,120,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26790.7,0.0,25770.0,2,0,2.0,2,1.0 -274,418,4283.600026832776,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6119.4,0.0,0.0,3,9,7.0,1,0.0 -275,419,8621.087221388101,57.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46195.45,0.0,49970.0,1,4,0.0,3,2.0 -276,421,3954.545273527282,41.0,211,0.0,62,1.0,1.0,5.0,2.8,8380.0,0.0,0.0,0.0,0.0,0.0,36151.5,0.0,25820.0,3,1,2.0,4,1.0 -277,424,2474.7879609942856,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19340.0,0.0,0.0,17932.2,0.0,0.0,3,9,7.0,1,0.0 -278,426,3055.5536320215147,31.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43301.05,0.0,44610.0,2,8,6.0,3,2.0 -279,427,2843.9682177843365,25.0,111,0.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56495.6,0.0,60820.0,3,10,8.0,4,3.0 -280,428,3335.27223259656,30.0,221,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,33150.0,0.0,18750.0,3,1,2.0,2,1.0 -281,430,5180.133004577849,68.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36310.0,28.0,0.0,32760.95,0.0,0.0,1,9,2.0,1,0.0 -282,431,2383.7049190571915,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32320.0,0.0,0.0,29146.8,0.0,510.0,3,9,7.0,1,0.0 -283,433,1116.636602752652,51.0,111,0.0,85,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21830.0,0.0,0.0,32095.55,0.0,10730.0,1,9,7.0,3,1.0 -284,436,1846.8521872191893,43.0,112,9120.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,61478.25,0.0,53580.0,2,8,0.0,4,2.0 -285,437,1760.2171847062807,44.0,300,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,122.0,0.0,64152.5,0.0,63540.0,2,0,0.0,4,2.0 -286,440,4495.272036150394,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6341.9,0.0,3400.0,3,9,7.0,1,0.0 -287,441,946.3386015278788,66.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,73100.0,0.0,0.0,104299.75,0.0,3710.0,1,8,7.0,3,1.0 -288,442,2281.4046746389026,46.0,300,0.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,12950.0,0.0,0.0,13116.85,0.0,0.0,1,0,0.0,2,0.0 -289,443,995.5434122178355,35.0,211,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,75392.25,0.0,74170.0,2,3,4.0,4,2.0 -290,444,1409.9368307712346,51.0,112,0.0,56,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38193.25,0.0,34670.0,2,6,0.0,4,3.0 -291,445,4494.517288579153,36.0,111,0.0,46,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,38580.0,0.0,23710.0,3,10,8.0,4,1.0 -292,446,4754.70006947825,77.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,23380.0,0.0,0.0,23379.7,0.0,0.0,5,7,5.0,3,1.0 -293,449,4943.528418179599,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11534.0,0.0,0.0,3,8,7.0,5,0.0 -294,450,4167.316511717654,24.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11696.0,0.0,0.0,3,9,7.0,1,0.0 -295,453,2066.4412480425517,82.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16760.0,15.0,0.0,16615.15,0.0,0.0,1,0,0.0,3,0.0 -296,454,4137.819251122364,33.0,111,19370.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,9.0,0.0,29180.25,0.0,11920.0,3,10,8.0,1,1.0 -297,456,2447.3842231747676,47.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34490.55,0.0,33180.0,2,7,5.0,4,2.0 -298,457,1571.213027297313,39.0,111,0.0,53,1.0,1.0,3.0,1.8,0.0,0.0,0.0,14980.0,0.0,0.0,30208.25,0.0,16730.0,2,9,7.0,4,1.0 -299,458,2270.0422517854536,59.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24940.0,30.0,0.0,28643.8,0.0,0.0,1,7,4.0,3,0.0 -300,459,3147.886988995515,34.0,112,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47308.0,0.0,40660.0,2,9,0.0,4,2.0 -301,461,3949.254778799619,62.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42300.0,0.0,0.0,56754.05,0.0,0.0,1,0,2.0,3,0.0 -302,462,2087.3136404762145,67.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31410.0,0.0,0.0,29484.85,0.0,0.0,1,1,2.0,3,0.0 -303,463,1092.809783690691,23.0,120,0.0,54,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44573.8,0.0,45610.0,1,0,1.0,2,3.0 -304,466,1695.3664667868447,63.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52680.0,988.0,0.0,49526.45,0.0,0.0,1,0,0.0,3,0.0 -305,467,3789.0822274665297,56.0,111,15230.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62650.55,0.0,52960.0,1,8,7.0,3,2.0 -306,469,1812.9535451246286,65.0,212,3630.0,78,2.0,1.0,3.0,2.0,0.0,0.0,0.0,12760.0,0.0,0.0,35170.3,0.0,19000.0,2,1,0.0,4,2.0 -307,471,1618.123501100842,52.0,111,360.0,43,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,232.0,0.0,54727.05,0.0,57970.0,1,8,6.0,4,3.0 -308,472,1882.315556407208,71.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,37070.0,0.0,0.0,47873.75,0.0,15920.0,1,9,7.0,2,1.0 -309,473,2624.405858996616,34.0,300,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,70904.05,0.0,25170.0,2,0,0.0,4,2.0 -310,475,1230.5833611918065,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36510.0,0.0,0.0,36349.75,0.0,0.0,1,6,4.0,3,0.0 -311,476,3311.735278869238,85.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18860.0,0.0,0.0,18566.2,0.0,0.0,1,0,0.0,3,0.0 -312,478,1840.272538001874,37.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46966.85,0.0,47560.0,2,9,7.0,4,2.0 -313,479,1984.041131608602,60.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29490.0,0.0,0.0,31159.95,0.0,0.0,1,0,0.0,3,0.0 -314,480,6134.400204933819,40.0,111,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33767.9,0.0,32170.0,3,10,8.0,4,1.0 -315,483,2182.0344127835656,36.0,112,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,60.0,0.0,0.0,30615.4,0.0,22320.0,2,9,0.0,4,1.0 -316,484,1562.3866800021844,53.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,279.0,0.0,13606.35,0.0,14470.0,1,6,4.0,1,1.0 -317,486,2795.9131731155553,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26490.0,0.0,0.0,26648.6,0.0,0.0,3,9,7.0,3,0.0 -318,487,2302.2487242791117,55.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42448.0,0.0,44320.0,5,9,7.0,3,2.0 -319,488,2592.547081537031,70.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29770.0,0.0,0.0,28057.3,0.0,0.0,3,9,7.0,3,0.0 -320,490,611.8753071172583,69.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39750.0,85.0,0.0,36453.6,0.0,0.0,1,10,0.0,3,0.0 -321,496,2899.545133329161,48.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,80471.15,0.0,10890.0,1,5,4.0,3,2.0 -322,497,2523.273664501635,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24000.0,0.0,0.0,23166.9,0.0,0.0,1,6,5.0,3,0.0 -323,499,2365.9255866568433,85.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23500.0,0.0,0.0,12145.25,0.0,0.0,1,8,6.0,1,0.0 -324,500,1519.3624913288124,45.0,300,0.0,48,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,36315.5,0.0,26320.0,2,0,0.0,2,1.0 -325,502,2314.7394242239743,31.0,120,0.0,21,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,23945.65,0.0,4310.0,1,0,0.0,4,2.0 -326,504,1237.0610233857744,46.0,120,0.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,71272.2,0.0,75110.0,2,0,0.0,4,4.0 -327,505,2314.4740684876147,39.0,112,15390.0,47,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32650.15,0.0,7440.0,2,7,4.0,4,2.0 -328,506,3758.8675252441662,60.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13640.0,0.0,0.0,15615.2,0.0,0.0,3,10,8.0,1,0.0 -329,507,2933.7628238707352,72.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21590.0,91.0,0.0,20563.95,0.0,0.0,3,10,8.0,1,0.0 -330,508,4312.39657385437,30.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16822.2,0.0,16960.0,3,10,8.0,1,1.0 -331,509,3764.054474860586,80.0,111,0.0,78,1.0,0.0,3.0,2.0,0.0,590.0,0.0,26490.0,52.0,0.0,35635.75,3530.0,5700.0,1,9,7.0,4,1.0 -332,510,2430.419814854219,58.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36232.35,0.0,39330.0,3,9,7.0,3,2.0 -333,512,3053.4933553764054,53.0,120,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57028.5,0.0,59660.0,1,0,2.0,4,2.0 -334,513,3795.871342361328,78.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21950.0,0.0,0.0,21950.0,0.0,0.0,3,1,1.0,3,0.0 -335,515,3491.5899596466743,81.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23090.0,0.0,0.0,22616.65,0.0,0.0,1,0,0.0,1,0.0 -336,516,1500.1877546951532,41.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12454.65,0.0,13000.0,3,7,5.0,1,1.0 -337,518,3841.5695319629863,36.0,111,340.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17393.8,0.0,13260.0,3,9,7.0,2,1.0 -338,519,3271.844758060239,48.0,111,1780.0,22,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,364.0,0.0,69505.85,0.0,4450.0,2,8,7.0,2,2.0 -339,520,2704.6887482307225,58.0,221,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3329.95,0.0,6050.0,1,1,3.0,3,1.0 -340,521,3035.51066564624,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3355.0,0.0,0.0,3,7,6.0,1,0.0 -341,522,1799.2062220963248,50.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42565.8,0.0,44580.0,1,6,0.0,3,2.0 -342,524,2873.4037536039014,76.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,4130.0,18600.0,0.0,0.0,22058.05,0.0,0.0,1,1,3.0,3,0.0 -343,528,2637.0521578471894,70.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46940.0,0.0,0.0,39486.75,0.0,0.0,1,0,0.0,3,0.0 -344,532,3764.910978194325,42.0,112,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57294.9,0.0,58910.0,1,7,1.0,4,2.0 -345,533,1146.4892814485684,66.0,111,0.0,78,0.0,1.0,2.0,1.5,0.0,0.0,0.0,19800.0,0.0,0.0,19624.8,0.0,0.0,1,9,7.0,3,0.0 -346,534,3648.871637405808,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24950.0,0.0,0.0,23432.8,0.0,0.0,1,8,7.0,1,0.0 -347,535,2086.9041356314297,68.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38090.0,0.0,0.0,34374.75,0.0,0.0,1,0,2.0,3,0.0 -348,536,3147.6841766527946,45.0,120,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35455.65,0.0,36110.0,2,0,0.0,3,2.0 -349,537,1983.4600444499156,52.0,111,0.0,67,1.0,1.0,3.0,2.0,0.0,0.0,0.0,8570.0,0.0,0.0,25250.15,0.0,18310.0,2,6,5.0,4,1.0 -350,539,2725.8422936200095,79.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14380.0,0.0,0.0,14471.7,0.0,0.0,5,9,7.0,3,0.0 -351,540,2581.839569501768,61.0,221,9940.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,17390.0,0.0,0.0,28803.75,0.0,1920.0,1,1,2.0,3,1.0 -352,541,3232.4101179469103,78.0,221,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37140.0,0.0,0.0,36634.4,0.0,0.0,1,1,2.0,3,0.0 -353,542,3812.1252464410254,26.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16993.75,0.0,16870.0,3,9,7.0,1,1.0 -354,544,1546.5895953403226,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26650.0,0.0,0.0,26349.85,0.0,0.0,3,3,4.0,3,0.0 -355,545,1045.02544440408,47.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26824.0,0.0,27190.0,2,7,0.0,5,2.0 -356,548,857.8819811507576,44.0,300,6480.0,56,2.0,1.0,4.0,2.3,0.0,320.0,0.0,0.0,0.0,0.0,16193.6,1130.0,5840.0,3,0,0.0,4,2.0 -357,549,2401.416767724515,61.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32710.0,0.0,0.0,30919.7,0.0,0.0,3,0,0.0,3,0.0 -358,550,4137.925938053589,28.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24436.3,0.0,25110.0,3,9,7.0,2,1.0 -359,551,3501.317764903909,39.0,111,3720.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15746.5,0.0,5070.0,2,8,7.0,2,1.0 -360,553,4011.8165110645095,85.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12700.0,0.0,0.0,12720.0,0.0,0.0,1,8,7.0,1,0.0 -361,554,2034.137657322269,46.0,111,0.0,65,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43071.35,0.0,36630.0,2,8,7.0,4,2.0 -362,555,1426.027181262315,51.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,4.0,0.0,94709.2,0.0,90220.0,2,8,7.0,4,2.0 -363,556,3291.520370737281,82.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,86030.0,65.0,0.0,78989.3,0.0,0.0,1,10,8.0,1,0.0 -364,558,3313.0905557732876,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20060.4,0.0,9510.0,3,9,7.0,1,0.0 -365,559,1998.4771375905602,52.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47109.0,0.0,50780.0,1,8,7.0,4,2.0 -366,560,2947.186622899084,61.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27450.0,0.0,0.0,31352.8,0.0,9770.0,1,0,3.0,1,0.0 -367,562,3177.217872989696,99.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15110.0,0.0,0.0,15306.0,0.0,0.0,3,10,8.0,1,0.0 -368,563,3540.3621341596236,36.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38773.0,0.0,41430.0,3,10,8.0,3,2.0 -369,564,3124.814867795623,71.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16070.0,0.0,0.0,15876.45,0.0,0.0,1,1,1.0,1,0.0 -370,565,3651.5189388937983,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4808.1,0.0,0.0,3,9,7.0,1,0.0 -371,566,2691.626459977362,54.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,10730.45,1110.0,9870.0,1,6,0.0,1,1.0 -372,567,3358.9357363027266,34.0,111,7630.0,47,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35030.2,0.0,24680.0,2,6,5.0,4,2.0 -373,568,1948.7828879176998,35.0,112,0.0,55,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35920.2,0.0,25200.0,2,6,0.0,4,1.0 -374,569,2945.879929894127,42.0,211,230.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18211.2,0.0,19710.0,1,3,3.0,1,1.0 -375,571,1208.6158930962017,51.0,111,0.0,48,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37466.2,0.0,38960.0,1,8,7.0,4,3.0 -376,572,4742.649298966471,24.0,111,3570.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35319.4,0.0,24100.0,3,8,6.0,4,2.0 -377,573,1558.1031284520875,47.0,112,0.0,67,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56916.6,0.0,60950.0,2,10,2.0,4,2.0 -378,574,1619.6595330408056,56.0,300,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30659.4,0.0,32010.0,1,0,0.0,3,2.0 -379,575,1563.298483465142,60.0,111,5550.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22730.0,0.0,0.0,28500.75,0.0,2080.0,1,9,7.0,3,1.0 -380,578,2557.9688627917503,32.0,300,6060.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31397.75,0.0,23310.0,2,0,0.0,4,2.0 -381,579,1586.3673284432698,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,52430.0,127.0,0.0,52782.45,0.0,0.0,1,4,4.0,1,0.0 -382,580,1843.9186712025628,59.0,111,2180.0,75,2.0,2.0,4.0,2.5,8750.0,0.0,0.0,24830.0,49.0,0.0,59073.8,0.0,26270.0,1,10,8.0,4,2.0 -383,581,5319.082326616802,36.0,120,0.0,67,2.0,1.0,4.0,2.1,0.0,320.0,0.0,0.0,0.0,0.0,20916.7,3720.0,13440.0,3,0,2.0,4,2.0 -384,582,2555.1995469385743,22.0,211,3640.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28133.05,0.0,24970.0,1,1,3.0,3,2.0 -385,584,7009.3916711101965,42.0,400,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,3360.0,0.0,0.0,22950.4,0.0,18520.0,3,0,1.0,2,1.0 -386,585,3593.1566299283477,21.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14176.0,0.0,14360.0,3,7,5.0,1,1.0 -387,586,3030.3985856365,44.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,832.0,0.0,6008.6,0.0,5030.0,2,9,7.0,2,1.0 -388,589,2180.992954235251,77.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,1440.0,23450.0,0.0,0.0,24939.0,0.0,0.0,1,0,0.0,3,0.0 -389,590,3587.962169771111,25.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53102.4,0.0,22700.0,2,10,8.0,3,2.0 -390,592,2294.065756292632,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34900.0,0.0,0.0,32965.0,0.0,0.0,1,4,4.0,3,0.0 -391,593,3010.278760333325,26.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22651.0,0.0,23060.0,3,10,8.0,1,1.0 -392,596,3252.914852936401,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23920.0,0.0,0.0,23660.65,0.0,0.0,3,9,7.0,1,0.0 -393,597,1430.4643339845163,59.0,400,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14210.0,0.0,0.0,24103.6,0.0,8950.0,1,0,0.0,3,1.0 -394,598,3704.8526995589827,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13080.0,0.0,0.0,14422.0,0.0,0.0,3,9,7.0,1,0.0 -395,599,3193.9960944203585,41.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,40.0,0.0,59722.5,0.0,56040.0,2,10,8.0,4,2.0 -396,601,3520.3241713761963,34.0,111,0.0,63,1.0,1.0,3.0,1.8,0.0,3540.0,0.0,0.0,0.0,0.0,11728.95,930.0,1680.0,3,9,7.0,4,1.0 -397,602,1762.9727099066579,55.0,120,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,8930.0,0.0,0.0,18144.5,0.0,7120.0,1,0,2.0,2,1.0 -398,605,3250.4724253756303,34.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24730.2,0.0,26650.0,5,10,8.0,1,1.0 -399,607,1186.5937312655005,54.0,120,310.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,65349.25,0.0,37320.0,1,0,0.0,4,2.0 -400,608,3246.5134230547064,84.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42280.0,0.0,0.0,41178.6,0.0,0.0,1,6,5.0,5,0.0 -401,609,2887.284968226849,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34660.0,23.0,0.0,33618.55,0.0,0.0,1,10,8.0,1,0.0 -402,610,3715.2556217058927,47.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27327.0,0.0,29090.0,5,7,5.0,1,1.0 -403,611,2230.5372252403417,31.0,111,1350.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24606.0,0.0,22140.0,5,10,8.0,4,2.0 -404,612,2449.976597019016,33.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31276.25,0.0,30250.0,2,8,0.0,4,2.0 -405,613,1724.0782471100042,66.0,221,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15370.0,0.0,0.0,18010.1,0.0,1230.0,1,1,3.0,1,0.0 -406,616,2883.8501972376785,39.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44736.85,0.0,45350.0,3,8,7.0,4,2.0 -407,618,2808.1681393012677,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14690.0,0.0,0.0,14814.0,0.0,0.0,3,9,7.0,1,0.0 -408,619,1535.4197384628762,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41170.0,0.0,0.0,37219.8,0.0,0.0,1,9,7.0,3,0.0 -409,620,2623.76634046163,63.0,300,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19880.0,60.0,0.0,18526.65,0.0,0.0,1,0,0.0,3,1.0 -410,621,1807.6995283800231,44.0,112,0.0,34,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,3.0,0.0,56084.65,0.0,51170.0,2,8,0.0,4,2.0 -411,622,7633.788897976481,45.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,39.0,0.0,114247.2,0.0,140800.0,2,10,8.0,3,2.0 -412,623,2625.7294997526483,47.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34538.1,0.0,34550.0,5,9,7.0,2,1.0 -413,624,2602.40650551768,62.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23380.0,0.0,0.0,32917.1,0.0,8980.0,2,0,1.0,3,0.0 -414,625,1301.2125489429727,63.0,212,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12510.0,0.0,0.0,13153.75,0.0,0.0,3,2,0.0,1,0.0 -415,627,3863.2146859301524,47.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,68.0,0.0,13575.65,0.0,0.0,3,10,8.0,1,1.0 -416,629,1246.215042009794,49.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,990.0,0.0,0.0,0.0,0.0,17925.0,3360.0,5380.0,3,7,6.0,2,1.0 -417,630,3890.0334957231285,24.0,111,0.0,81,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8480.7,0.0,2820.0,3,10,8.0,1,1.0 -418,631,1122.0886080686853,58.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31220.0,0.0,0.0,36938.95,0.0,5270.0,1,7,5.0,3,0.0 -419,632,1206.4540923398704,55.0,212,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5910.0,0.0,0.0,34547.2,0.0,30320.0,3,1,0.0,3,1.0 -420,633,1653.902844589337,58.0,112,11870.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11460.95,0.0,70.0,1,9,0.0,1,1.0 -421,634,2371.955907043185,59.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,880.0,0.0,0.0,0.0,0.0,35523.55,1230.0,29650.0,1,0,0.0,3,0.0 -422,636,2454.839413160629,40.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,1.0,0.0,79338.7,0.0,82430.0,2,10,8.0,4,2.0 -423,637,1144.13754931602,84.0,112,0.0,78,0.0,0.0,3.0,2.0,0.0,3290.0,2400.0,20080.0,0.0,0.0,25863.0,0.0,0.0,5,7,0.0,5,0.0 -424,638,1427.642053385113,58.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,22390.0,0.0,0.0,47610.5,0.0,29270.0,2,7,6.0,4,1.0 -425,640,4202.1721284854775,69.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,4400.0,0.0,11890.0,0.0,0.0,19294.7,1130.0,940.0,1,8,0.0,2,1.0 -426,643,3767.0186680461,42.0,111,0.0,56,1.0,0.0,1.0,1.0,10900.0,0.0,0.0,0.0,0.0,0.0,13360.0,0.0,0.0,3,9,7.0,1,1.0 -427,644,1319.3277167145304,36.0,212,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31871.7,0.0,30220.0,2,2,0.0,4,2.0 -428,646,1841.2963271908054,64.0,111,6820.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47980.0,0.0,0.0,53119.4,0.0,4870.0,1,7,5.0,3,0.0 -429,648,3065.5786809817014,62.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8660.0,0.0,0.0,19400.75,0.0,0.0,3,10,4.0,1,0.0 -430,650,1539.6958563769358,54.0,112,3660.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10990.0,0.0,0.0,29573.85,0.0,15930.0,1,8,0.0,3,1.0 -431,651,1234.9952123154746,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36150.0,0.0,0.0,36808.6,0.0,0.0,1,7,6.0,3,0.0 -432,652,4240.515848264965,58.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1664.6999999999998,0.0,2420.0,1,5,4.0,1,1.0 -433,655,2690.69403029994,38.0,300,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25006.15,0.0,16860.0,3,0,0.0,2,1.0 -434,656,5928.040390206907,63.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27700.0,0.0,0.0,41719.35,0.0,0.0,1,8,3.0,3,0.0 -435,658,1886.5451583497343,58.0,111,5400.0,68,2.0,2.0,4.0,2.3,0.0,320.0,0.0,0.0,0.0,0.0,23090.15,3200.0,10930.0,3,10,8.0,4,2.0 -436,659,4488.863386828155,55.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40917.6,0.0,40650.0,2,7,0.0,3,2.0 -437,660,3220.37343066884,75.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14960.0,0.0,0.0,14732.5,0.0,0.0,1,7,0.0,1,0.0 -438,662,4271.552400708726,59.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,540.0,0.0,0.0,41306.05,0.0,65000.0,3,9,7.0,3,2.0 -439,663,2854.2663772183923,26.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23237.0,0.0,25030.0,3,9,3.0,1,1.0 -440,664,2702.3055565059617,50.0,300,130.0,13,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,311.0,0.0,36416.45,0.0,42180.0,1,0,0.0,4,3.0 -441,665,4286.477241657766,95.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20110.0,0.0,0.0,20577.7,0.0,0.0,3,7,5.0,1,0.0 -442,666,2120.865999905958,61.0,111,4980.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11840.0,0.0,0.0,21992.35,0.0,5990.0,1,7,5.0,3,1.0 -443,667,1254.1411699086116,61.0,112,0.0,45,1.0,0.0,2.0,1.5,0.0,0.0,0.0,40380.0,0.0,0.0,56321.5,0.0,0.0,1,7,0.0,3,1.0 -444,669,3868.1130329675893,51.0,300,0.0,65,1.0,1.0,3.0,2.0,10010.0,0.0,0.0,0.0,9.0,0.0,29274.0,0.0,17960.0,3,0,0.0,4,1.0 -445,670,3523.24214402716,29.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,90.0,0.0,28101.6,0.0,30250.0,2,9,7.0,1,1.0 -446,672,2138.6929203500013,67.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31220.0,0.0,0.0,29226.7,0.0,0.0,1,7,2.0,3,0.0 -447,673,1779.0041203895082,55.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,190.0,0.0,76653.2,0.0,81570.0,1,9,7.0,4,2.0 -448,674,2320.4032278212544,50.0,111,0.0,47,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38147.9,0.0,39240.0,1,8,6.0,2,1.0 -449,676,2932.6795243912998,51.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30040.65,0.0,32460.0,2,7,5.0,2,1.0 -450,679,2497.2552128709253,53.0,111,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49069.8,0.0,48020.0,3,7,5.0,4,2.0 -451,680,3822.841780560933,31.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,15.0,0.0,22585.0,0.0,20440.0,3,10,8.0,3,1.0 -452,683,2042.6955365505926,85.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29390.0,0.0,0.0,31934.45,0.0,0.0,1,4,0.0,3,0.0 -453,684,1046.7956352695812,50.0,112,9330.0,63,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45243.05,0.0,37130.0,1,9,1.0,4,3.0 -454,686,6412.105889710234,60.0,111,0.0,35,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30708.05,0.0,35880.0,2,9,7.0,1,1.0 -455,687,3087.716442803198,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,109261.5,0.0,97130.0,2,10,8.0,4,2.0 -456,688,3493.498780651882,55.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,48.0,0.0,65469.7,0.0,69320.0,2,6,0.0,3,2.0 -457,690,2889.884802294257,60.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22484.3,0.0,23960.0,2,8,7.0,1,1.0 -458,692,3321.5110693525576,35.0,300,0.0,13,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,44756.15,0.0,0.0,2,0,0.0,4,2.0 -459,693,3534.041294866374,43.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17657.5,0.0,17880.0,5,9,7.0,1,1.0 -460,694,2965.1850486704498,72.0,111,0.0,74,0.0,0.0,3.0,1.8,0.0,0.0,0.0,35480.0,0.0,0.0,42502.75,0.0,0.0,1,9,7.0,5,0.0 -461,696,3049.9387355799195,63.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12670.0,0.0,0.0,12469.0,0.0,0.0,1,8,1.0,1,0.0 -462,697,2265.5542757098724,50.0,111,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,33274.15,0.0,34460.0,2,4,3.0,4,2.0 -463,698,2859.196211624394,44.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,135.0,0.0,44550.75,0.0,45930.0,3,7,0.0,3,2.0 -464,702,2377.3117313265748,53.0,400,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22843.0,0.0,20360.0,1,0,0.0,3,2.0 -465,704,1835.1724258046079,58.0,111,12070.0,47,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,17523.5,0.0,5720.0,5,9,7.0,4,2.0 -466,707,1960.5351890667812,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20950.0,0.0,0.0,21961.0,0.0,0.0,3,8,7.0,1,0.0 -467,708,1215.0942115168482,48.0,112,610.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24084.75,0.0,25350.0,5,5,0.0,4,2.0 -468,709,2350.296708529759,37.0,112,0.0,69,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42565.2,0.0,41200.0,2,8,0.0,4,2.0 -469,712,3320.50636508614,37.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24120.05,0.0,19740.0,3,10,8.0,2,1.0 -470,713,2887.085252018707,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19700.0,0.0,0.0,18522.7,0.0,0.0,1,9,7.0,1,0.0 -471,716,1781.1643226502983,47.0,112,0.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45598.65,0.0,48710.0,2,8,0.0,4,3.0 -472,717,2494.357142908597,46.0,400,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36524.2,0.0,34450.0,2,0,0.0,4,2.0 -473,720,3265.0835547839,62.0,221,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,19330.0,0.0,0.0,19503.25,0.0,630.0,2,1,2.0,4,0.0 -474,722,5995.367005293699,71.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22970.0,0.0,0.0,22620.05,0.0,0.0,1,1,2.0,3,0.0 -475,724,1977.904380580814,39.0,111,3460.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33892.45,0.0,31530.0,5,9,7.0,4,2.0 -476,725,1728.613623409892,38.0,221,0.0,48,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,38774.5,0.0,28610.0,3,1,3.0,4,1.0 -477,726,2816.5124486514683,45.0,111,0.0,65,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26192.4,0.0,17130.0,5,8,6.0,4,1.0 -478,727,1526.749954254639,60.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19120.0,88.0,0.0,32990.55,0.0,1160.0,1,0,0.0,1,0.0 -479,729,1238.0942445584178,51.0,111,0.0,48,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,70409.3,0.0,81000.0,1,10,8.0,4,3.0 -480,734,2088.9996155055546,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31420.0,82.0,0.0,29622.0,0.0,0.0,1,9,7.0,3,0.0 -481,735,1056.4653943290273,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25980.0,0.0,0.0,25247.4,0.0,0.0,1,6,0.0,3,0.0 -482,736,1931.5968667387626,64.0,111,2520.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10500.0,0.0,0.0,16210.0,0.0,3190.0,3,8,7.0,3,1.0 -483,737,2549.6502076708616,53.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18596.0,0.0,19350.0,3,9,7.0,2,1.0 -484,738,2318.829361341189,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9450.0,0.0,0.0,10917.0,0.0,0.0,3,7,5.0,1,0.0 -485,739,4648.602601339598,46.0,112,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,300491.5,0.0,308210.0,2,5,0.0,4,2.0 -486,741,1843.8928919070022,48.0,211,4570.0,22,2.0,1.0,3.0,2.0,0.0,0.0,0.0,3260.0,33.0,0.0,40609.8,0.0,22730.0,1,3,3.0,4,2.0 -487,742,1601.1730817604168,41.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49284.4,0.0,50040.0,2,7,1.0,4,2.0 -488,745,1316.7196580359976,39.0,300,0.0,56,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26916.0,0.0,12940.0,3,0,0.0,2,1.0 -489,746,2916.942123219684,40.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27157.65,0.0,25620.0,3,10,0.0,2,1.0 -490,747,2097.3411141607876,61.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15070.0,0.0,0.0,23318.3,0.0,0.0,1,1,2.0,3,0.0 -491,749,3677.5112607094793,22.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17672.0,0.0,14180.0,3,10,8.0,3,0.0 -492,751,3567.2849302608415,81.0,120,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,8120.0,580.0,0.0,0.0,11691.0,0.0,0.0,3,0,3.0,1,0.0 -493,752,1407.935968151337,46.0,221,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,60370.3,0.0,62980.0,2,1,2.0,4,2.0 -494,754,2035.3725759535678,51.0,211,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14698.0,0.0,13290.0,5,3,3.0,1,1.0 -495,755,2531.343379869215,65.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18220.0,0.0,0.0,18287.55,0.0,0.0,3,0,0.0,1,0.0 -496,756,2340.6421737247406,37.0,120,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23898.55,0.0,0.0,1,0,0.0,4,1.0 -497,758,4731.903534602788,39.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47409.5,0.0,42370.0,2,10,8.0,4,2.0 -498,759,4292.033075796924,31.0,111,0.0,31,1.0,0.0,1.0,1.0,0.0,1230.0,0.0,0.0,0.0,0.0,17663.0,170.0,0.0,3,10,8.0,1,1.0 -499,760,5351.901107631111,72.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11130.0,0.0,0.0,11161.0,0.0,0.0,5,7,5.0,1,0.0 -500,761,3521.4958606409855,57.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5856.45,0.0,13760.0,2,9,7.0,3,2.0 -501,762,2134.5133837269846,57.0,112,0.0,31,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,92.0,0.0,-0.0,0.0,0.0,1,8,1.0,4,1.0 -502,763,2286.7623339039114,47.0,120,0.0,53,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,57512.05,0.0,55010.0,2,0,2.0,4,2.0 -503,764,2418.2429774490633,87.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23710.0,0.0,0.0,23918.9,0.0,0.0,1,0,0.0,2,0.0 -504,765,1183.342939885334,42.0,221,0.0,52,3,3.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,29729.9,0.0,16860.0,2,1,3.0,4,3.0 -505,766,3179.120880292191,49.0,112,0.0,52,3,3.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,60254.2,0.0,60270.0,3,9,0.0,4,3.0 -506,767,2969.427184609967,92.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19990.0,180.0,0.0,29167.65,0.0,0.0,1,6,5.0,1,0.0 -507,769,2886.401886661137,63.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3100.0,0.0,0.0,13876.1,0.0,10800.0,3,9,7.0,1,1.0 -508,771,3343.3188121735016,77.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10510.0,0.0,0.0,13702.0,0.0,0.0,3,8,7.0,1,0.0 -509,772,2345.1242707943898,47.0,111,0.0,22,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,24219.55,0.0,13660.0,2,9,7.0,2,2.0 -510,774,2321.6457314356485,26.0,111,4060.0,56,1.0,1.0,2.0,1.3,0.0,270.0,0.0,0.0,0.0,0.0,19477.1,2480.0,7480.0,3,8,7.0,2,1.0 -511,775,2597.8642139795575,49.0,300,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18545.85,0.0,5450.0,1,0,0.0,3,2.0 -512,776,2366.723599866283,31.0,111,0.0,85,0.0,0.0,5.0,2.2,0.0,2690.0,0.0,0.0,0.0,0.0,18710.0,0.0,0.0,3,9,7.0,2,0.0 -513,778,2001.7655447372322,41.0,300,0.0,11,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,68.0,0.0,97232.25,0.0,21690.0,2,0,0.0,4,2.0 -514,779,2150.3005709098925,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17090.0,0.0,0.0,25574.2,0.0,9580.0,1,8,1.0,3,0.0 -515,780,1957.8622061615872,45.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,107694.8,0.0,109520.0,2,8,6.0,4,2.0 -516,781,2700.8827112949907,42.0,111,1400.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18785.65,0.0,18900.0,3,9,7.0,1,1.0 -517,782,2978.7298723360664,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23070.0,0.0,0.0,21645.45,0.0,0.0,1,10,8.0,1,0.0 -518,783,1866.1086553630312,59.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22930.0,0.0,0.0,38940.8,0.0,18970.0,3,10,1.0,3,1.0 -519,784,1671.0923467172233,44.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,664.0,0.0,68776.75,0.0,70920.0,2,9,1.0,4,2.0 -520,785,5135.528582999472,24.0,111,0.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39424.0,0.0,41780.0,3,8,6.0,5,3.0 -521,786,3046.535799618407,89.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,80.0,8330.0,0.0,0.0,10980.0,0.0,0.0,3,7,5.0,1,0.0 -522,788,2830.8665733351904,29.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13591.0,0.0,14000.0,3,8,7.0,1,1.0 -523,789,3137.165158282982,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15870.0,0.0,0.0,18443.0,0.0,0.0,3,8,6.0,1,0.0 -524,790,3656.70663397476,91.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9900.0,0.0,0.0,11692.75,0.0,0.0,3,6,5.0,1,0.0 -525,792,2345.391698769958,37.0,111,0.0,54,1.0,0.0,3.0,1.8,0.0,6220.0,0.0,0.0,0.0,0.0,11350.0,0.0,700.0,3,8,7.0,2,1.0 -526,793,3171.993991507779,31.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21101.55,0.0,14060.0,3,10,8.0,1,1.0 -527,795,2730.3259603402703,61.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42710.0,0.0,0.0,43912.2,0.0,4970.0,1,1,1.0,3,0.0 -528,797,1197.2073859694347,50.0,111,2840.0,62,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18552.8,0.0,14440.0,1,8,6.0,4,3.0 -529,801,2628.601111470115,62.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32130.0,0.0,0.0,34849.25,0.0,0.0,1,7,0.0,3,0.0 -530,802,1139.5885948505766,55.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38268.6,0.0,39850.0,2,10,0.0,4,2.0 -531,804,2153.6841192433253,35.0,112,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,57726.85,0.0,48240.0,2,6,0.0,4,2.0 -532,805,1647.853041225225,71.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19410.0,193.0,0.0,23549.35,0.0,0.0,1,0,0.0,3,0.0 -533,806,860.6794662981222,45.0,300,0.0,43,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,118693.75,0.0,26840.0,1,0,1.0,4,3.0 -534,807,2247.1712259941887,62.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15150.0,0.0,0.0,43955.25,0.0,31860.0,1,9,7.0,3,1.0 -535,809,3112.710299227578,84.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13080.0,114.0,0.0,16328.0,0.0,0.0,3,0,0.0,1,0.0 -536,810,2755.0866014741146,72.0,400,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20320.0,9.0,0.0,20818.75,0.0,0.0,5,0,0.0,1,0.0 -537,811,1880.4768823813677,36.0,112,0.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,47976.4,0.0,38490.0,2,7,2.0,4,2.0 -538,817,2063.556681208065,31.0,112,15120.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34902.15,0.0,14700.0,3,7,0.0,4,2.0 -539,819,2924.008518432363,59.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16800.0,0.0,0.0,38154.85,0.0,16850.0,3,9,7.0,3,1.0 -540,820,1415.1564333283864,32.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50043.75,0.0,46560.0,2,9,7.0,4,2.0 -541,821,3742.791965732613,36.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25509.45,0.0,25520.0,3,10,8.0,1,1.0 -542,822,3248.8084697011977,36.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,7450.0,0.0,0.0,0.0,0.0,18724.0,0.0,0.0,3,9,7.0,2,0.0 -543,823,3776.9791617032893,71.0,221,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21290.0,0.0,0.0,20777.05,0.0,0.0,1,1,2.0,3,0.0 -544,825,1142.139137421521,52.0,300,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,56020.25,0.0,50770.0,1,0,0.0,4,2.0 -545,827,2972.3904957229174,43.0,111,15100.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,29.0,0.0,31832.7,0.0,17940.0,2,10,8.0,1,1.0 -546,829,1983.5137628005918,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36910.0,398.0,0.0,38757.85,0.0,0.0,1,10,8.0,1,0.0 -547,830,2765.9662374979507,44.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,261.0,0.0,54420.3,0.0,61370.0,2,10,8.0,2,1.0 -548,831,2797.656480762628,40.0,111,6450.0,43,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,57096.95,0.0,8200.0,2,9,7.0,4,2.0 -549,832,1042.408250674816,86.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16340.0,0.0,0.0,19368.05,0.0,0.0,1,0,0.0,3,0.0 -550,833,3109.0259458262835,56.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27533.6,0.0,31270.0,1,10,8.0,3,1.0 -551,835,2335.298098529092,63.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22280.0,18.0,0.0,21361.5,0.0,0.0,1,10,4.0,1,0.0 -552,836,3076.355527790129,43.0,111,0.0,52,2.0,1.0,4.0,2.3,0.0,320.0,0.0,0.0,0.0,0.0,24208.4,2480.0,17180.0,3,9,7.0,4,2.0 -553,837,2483.5196164411195,33.0,112,5730.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33644.55,0.0,21490.0,2,8,0.0,4,2.0 -554,838,2903.153370904095,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9770.0,0.0,0.0,9767.0,0.0,0.0,1,9,7.0,1,0.0 -555,839,1606.9897805332764,65.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29970.0,0.0,0.0,31942.25,0.0,0.0,1,0,1.0,3,0.0 -556,841,1573.689886014971,23.0,111,0.0,62,1.0,1.0,2.0,1.5,4430.0,2470.0,0.0,0.0,0.0,0.0,15194.0,0.0,5160.0,3,9,7.0,2,1.0 -557,842,3085.595744160519,87.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,3930.0,7420.0,0.0,0.0,14929.0,0.0,0.0,3,6,0.0,1,0.0 -558,843,4626.166772474811,25.0,111,12510.0,45,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31497.7,0.0,18330.0,3,10,8.0,3,2.0 -559,844,4596.907594074727,46.0,111,12350.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31330.0,0.0,14140.0,5,5,4.0,4,2.0 -560,845,2981.7179662227027,42.0,111,0.0,47,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,66404.7,0.0,64910.0,2,9,7.0,4,3.0 -561,847,4281.28888052856,24.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28583.0,0.0,20650.0,3,10,8.0,3,1.0 -562,848,1201.5097919061798,62.0,111,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,16430.0,89.0,0.0,32030.95,0.0,17780.0,1,8,7.0,4,2.0 -563,849,2754.995027462342,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30310.0,0.0,0.0,28106.85,0.0,0.0,1,7,6.0,3,0.0 -564,851,3485.7307643666777,69.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13240.0,0.0,0.0,13240.0,0.0,0.0,3,0,3.0,1,0.0 -565,852,1432.0321025175958,47.0,111,0.0,46,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,9.0,0.0,69347.35,0.0,69160.0,1,7,5.0,4,2.0 -566,853,3999.6495399080663,87.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9710.0,0.0,0.0,12546.0,0.0,0.0,3,1,2.0,1,0.0 -567,854,2196.7174469890206,41.0,300,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9050.0,0.0,0.0,29226.75,0.0,20960.0,2,0,0.0,3,1.0 -568,856,2499.8791229695325,85.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7860.0,3.0,0.0,13532.0,0.0,0.0,1,0,0.0,1,0.0 -569,857,6476.800743168811,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29550.0,0.0,0.0,27324.65,0.0,0.0,3,8,6.0,1,0.0 -570,858,2907.234884208605,44.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,96386.15,0.0,113380.0,2,10,8.0,4,2.0 -571,860,3109.815707883152,51.0,111,0.0,67,3,3.0,4.0,2.5,8750.0,0.0,0.0,0.0,0.0,0.0,80583.95,0.0,80510.0,2,10,8.0,5,3.0 -572,861,2941.816792567069,57.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18230.0,0.0,0.0,17437.15,0.0,0.0,1,8,1.0,3,0.0 -573,862,1753.0715325784408,55.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14050.6,0.0,14350.0,3,7,5.0,1,1.0 -574,863,1550.5422371750064,77.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27790.0,0.0,0.0,28124.1,0.0,0.0,1,9,0.0,3,0.0 -575,865,1943.2643575945865,41.0,111,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,25604.6,0.0,0.0,3,5,4.0,4,2.0 -576,866,1551.8650399678816,34.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29340.0,0.0,30150.0,5,7,0.0,3,2.0 -577,868,1078.4993270602442,67.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,32410.0,870.0,0.0,48991.2,0.0,12900.0,1,8,6.0,4,1.0 -578,869,2444.6710346590776,80.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18250.0,0.0,0.0,17111.65,0.0,0.0,1,9,7.0,1,0.0 -579,873,2002.8911269616804,85.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34900.0,0.0,0.0,45580.8,0.0,0.0,1,7,5.0,3,0.0 -580,876,6151.015832767993,41.0,112,0.0,56,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,33078.8,0.0,30800.0,3,8,3.0,4,2.0 -581,878,3004.376934671947,42.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,30881.9,0.0,30650.0,2,10,8.0,1,1.0 -582,879,4922.240712871911,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12860.0,0.0,0.0,13256.0,0.0,0.0,3,6,5.0,1,0.0 -583,880,2659.6584587847633,32.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,22.0,0.0,45311.2,0.0,39170.0,2,9,3.0,4,2.0 -584,881,3095.610259332851,49.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6905.05,0.0,7550.0,5,10,8.0,1,1.0 -585,882,3557.2408242238016,33.0,111,0.0,22,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,44086.3,0.0,17920.0,5,8,7.0,2,1.0 -586,884,2656.0609977804065,48.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26402.75,0.0,25160.0,5,9,7.0,2,1.0 -587,885,1361.6356645331814,72.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34290.0,0.0,0.0,32107.3,0.0,0.0,1,8,0.0,3,0.0 -588,886,2923.417796782426,62.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,4700.0,3710.0,0.0,0.0,9075.0,0.0,0.0,5,10,8.0,1,0.0 -589,887,5150.160779191347,85.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18330.0,0.0,0.0,19304.3,0.0,0.0,1,0,0.0,5,0.0 -590,889,3257.602046887352,59.0,111,0.0,22,1.0,1.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,47126.95,0.0,0.0,3,7,5.0,1,1.0 -591,890,1403.6401696904702,48.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21488.75,0.0,23260.0,3,7,5.0,1,1.0 -592,891,1588.672824955639,50.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18951.55,0.0,15870.0,1,7,1.0,2,1.0 -593,893,1159.7985329474466,45.0,112,0.0,63,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48262.5,0.0,47270.0,1,10,0.0,4,3.0 -594,894,2727.276146383004,55.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15730.5,0.0,0.0,1,7,0.0,3,2.0 -595,899,2811.3220132601946,34.0,112,4680.0,53,2.0,1.0,4.0,2.1,0.0,0.0,0.0,2730.0,0.0,0.0,41523.6,0.0,32400.0,2,9,2.0,4,2.0 -596,900,2066.078208746351,34.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,65765.8,0.0,48800.0,2,10,1.0,4,2.0 -597,901,790.0267573363843,47.0,111,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35850.75,0.0,37310.0,1,6,5.0,4,2.0 -598,902,5961.653913139653,53.0,111,0.0,52,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19375.45,0.0,21000.0,3,10,8.0,1,1.0 -599,903,1019.9219884849947,54.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43428.6,0.0,45720.0,1,9,1.0,3,2.0 -600,906,2447.7527277778395,48.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54754.1,0.0,60920.0,1,8,7.0,3,2.0 -601,908,3473.6312830874704,53.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,18550.0,0.0,0.0,46045.55,0.0,31750.0,2,9,7.0,4,1.0 -602,910,2693.746434937924,34.0,300,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17417.55,0.0,15060.0,3,0,0.0,2,1.0 -603,911,1742.4263190633228,45.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,277.0,0.0,21496.3,0.0,21080.0,1,8,7.0,1,1.0 -604,912,1924.9468149230215,64.0,111,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,31610.0,235.0,0.0,40697.25,0.0,0.0,1,6,4.0,3,1.0 -605,913,2013.3569502353123,47.0,400,0.0,63,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,42800.55,0.0,37110.0,2,0,0.0,4,3.0 -606,915,1672.4842978902323,28.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15991.0,0.0,15510.0,5,8,7.0,1,1.0 -607,916,2915.254813118674,62.0,112,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,38560.0,0.0,0.0,44324.35,0.0,9260.0,3,8,0.0,3,1.0 -608,919,2667.145683679604,60.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28220.0,1435.0,0.0,27407.25,0.0,0.0,3,9,2.0,1,0.0 -609,920,3649.758531772263,76.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29950.0,0.0,0.0,28601.7,0.0,0.0,1,1,2.0,3,0.0 -610,921,2197.742703821061,28.0,111,7590.0,67,2.0,2.0,2.0,1.5,4350.0,0.0,0.0,0.0,15.0,0.0,26108.55,0.0,12530.0,3,9,7.0,3,2.0 -611,922,1579.7918964982534,49.0,112,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22814.15,0.0,22590.0,5,4,0.0,2,1.0 -612,925,3149.920890625272,40.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45744.35,0.0,43730.0,2,10,8.0,4,2.0 -613,926,2126.790921433479,77.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24730.0,0.0,0.0,23917.1,0.0,0.0,1,0,0.0,3,0.0 -614,927,2021.4964196870606,32.0,112,5180.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60151.35,0.0,48060.0,3,7,0.0,4,2.0 -615,928,3527.111787126196,39.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35801.3,0.0,36330.0,2,9,7.0,1,1.0 -616,931,2786.265892811788,29.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20393.25,0.0,21150.0,3,6,5.0,1,1.0 -617,932,1835.1465676732596,54.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21039.2,0.0,21370.0,1,9,2.0,1,1.0 -618,933,1701.4035252929575,37.0,111,0.0,31,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,58.0,0.0,61475.95,0.0,50720.0,1,9,7.0,4,2.0 -619,937,2267.171865049829,35.0,112,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41281.9,0.0,30240.0,2,9,0.0,4,2.0 -620,938,1131.428551458379,46.0,111,0.0,23,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,47.0,0.0,65637.35,0.0,68500.0,1,7,6.0,4,3.0 -621,939,3348.5388639514545,25.0,111,220.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15725.0,0.0,14940.0,3,7,5.0,1,1.0 -622,942,4138.528704868562,34.0,300,0.0,64,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26165.25,0.0,19610.0,2,0,0.0,4,1.0 -623,945,3105.8130184001175,35.0,112,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42624.45,0.0,42610.0,2,9,0.0,4,2.0 -624,946,3096.5282000273583,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24090.0,0.0,0.0,24097.1,0.0,0.0,3,5,4.0,1,0.0 -625,949,1832.240704282506,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57220.0,0.0,0.0,52108.4,0.0,0.0,1,9,7.0,3,0.0 -626,950,2344.6985124822904,30.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33282.05,0.0,29490.0,3,8,7.0,4,2.0 -627,951,3477.0465417284154,45.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,10.0,0.0,43370.8,0.0,43900.0,2,9,7.0,3,2.0 -628,953,2505.927581616439,40.0,112,0.0,45,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,13.0,0.0,46931.1,0.0,19240.0,2,7,0.0,4,1.0 -629,955,2683.1367237560535,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20110.0,76.0,0.0,21462.65,0.0,0.0,3,10,8.0,1,0.0 -630,957,2965.2853194268487,50.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58762.4,0.0,66170.0,2,8,0.0,3,2.0 -631,958,2273.281311832342,62.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10560.0,0.0,0.0,10539.0,0.0,0.0,1,1,2.0,1,0.0 -632,959,2873.0486761245834,68.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20560.0,155.0,0.0,20792.0,0.0,0.0,3,1,2.0,3,0.0 -633,961,2294.477944058063,26.0,300,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32493.6,0.0,16820.0,3,0,0.0,4,2.0 -634,962,1662.755402749213,53.0,112,5850.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,23750.0,0.0,0.0,86144.4,0.0,60060.0,2,9,3.0,4,2.0 -635,963,1505.3423666208494,40.0,112,0.0,46,1.0,1.0,4.0,1.9,0.0,0.0,0.0,6860.0,0.0,0.0,36236.0,0.0,18660.0,2,10,0.0,2,1.0 -636,964,1760.5840900559094,35.0,112,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,59109.25,0.0,53610.0,5,7,0.0,4,2.0 -637,966,3910.5180374252227,58.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,141.0,0.0,34796.7,0.0,40700.0,1,9,7.0,1,1.0 -638,967,2189.104497232882,56.0,120,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19046.95,0.0,19110.0,1,0,0.0,1,1.0 -639,968,1395.3213122360849,59.0,120,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,80204.5,0.0,16730.0,1,0,1.0,3,2.0 -640,969,916.6009787147252,52.0,112,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,81294.05,0.0,81650.0,1,10,0.0,4,2.0 -641,971,3171.1675935602066,63.0,120,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,13710.0,631.0,0.0,92728.1,0.0,0.0,1,0,2.0,3,2.0 -642,972,2892.1699052612553,31.0,111,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23303.65,0.0,17010.0,3,10,8.0,4,1.0 -643,976,2638.1554158484814,88.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37340.0,0.0,0.0,34348.1,0.0,0.0,1,10,8.0,3,0.0 -644,977,5331.4345794401015,40.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18762.4,0.0,19850.0,3,6,5.0,2,1.0 -645,978,6149.039262143416,38.0,111,90.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33230.25,0.0,32830.0,3,10,8.0,4,2.0 -646,980,2827.5700626174707,31.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51359.9,0.0,33560.0,3,10,8.0,3,2.0 -647,983,2988.369123079228,50.0,111,0.0,85,0.0,0.0,1.0,1.0,10900.0,0.0,0.0,0.0,0.0,0.0,12354.0,0.0,680.0,3,9,7.0,1,0.0 -648,986,2525.562897662468,50.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41999.7,0.0,31160.0,1,9,2.0,4,2.0 -649,988,1896.8499899796907,59.0,111,19370.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,17800.0,120.0,0.0,43103.2,0.0,6620.0,1,8,7.0,4,0.0 -650,989,4354.740321472928,81.0,300,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11870.0,0.0,0.0,11870.0,0.0,0.0,1,0,0.0,1,0.0 -651,992,1838.3963954695414,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26380.0,0.0,0.0,24673.4,0.0,0.0,1,8,7.0,3,0.0 -652,993,3082.3578390116872,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13980.0,0.0,0.0,14652.0,0.0,0.0,3,5,4.0,1,0.0 -653,994,3307.6091748584113,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15810.0,0.0,0.0,15534.45,0.0,0.0,1,8,6.0,1,0.0 -654,995,1747.780548178962,60.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30880.0,0.0,0.0,28999.4,0.0,0.0,1,8,1.0,3,0.0 -655,997,2543.827403874301,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13210.0,0.0,0.0,14605.0,0.0,0.0,1,7,5.0,1,0.0 -656,998,1304.3446412294395,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53400.0,0.0,0.0,52539.9,0.0,0.0,1,9,0.0,3,0.0 -657,999,4184.95025133781,39.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11197.1,0.0,11260.0,3,9,7.0,1,1.0 -658,1000,2462.481170695108,40.0,400,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,240.0,0.0,26808.0,0.0,18420.0,3,0,0.0,1,1.0 -659,1001,2693.911866011353,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21590.0,0.0,0.0,21496.65,0.0,0.0,1,9,7.0,3,0.0 -660,1002,1971.793488671841,34.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44154.25,0.0,53220.0,2,8,6.0,1,1.0 -661,1003,5430.654491591048,68.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13600.0,0.0,0.0,15936.0,0.0,0.0,3,0,2.0,1,0.0 -662,1005,3352.9888285002235,25.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,41155.0,0.0,49240.0,3,9,7.0,1,1.0 -663,1006,1785.8658705893586,49.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49280.0,0.0,49820.0,1,9,0.0,4,2.0 -664,1007,3081.490042210607,85.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19590.0,0.0,0.0,18958.7,0.0,0.0,1,9,7.0,3,0.0 -665,1008,1327.614472743075,75.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29540.0,0.0,0.0,28896.45,0.0,0.0,1,0,0.0,3,0.0 -666,1009,3614.5681591416137,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22310.0,49.0,0.0,19332.35,0.0,0.0,1,9,7.0,5,0.0 -667,1011,2162.08292059083,28.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37626.95,0.0,38390.0,3,6,4.0,3,2.0 -668,1013,3816.7789364158634,49.0,111,4830.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11255.0,0.0,6620.0,3,5,4.0,1,1.0 -669,1014,3172.6085998629337,90.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25470.0,0.0,0.0,26545.45,0.0,0.0,3,8,6.0,1,0.0 -670,1015,3213.339450279348,94.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12720.0,0.0,0.0,14004.0,0.0,0.0,3,9,7.0,1,0.0 -671,1017,3752.3287677826597,59.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8830.0,0.0,0.0,53494.65,0.0,50050.0,1,10,8.0,3,1.0 -672,1018,1658.5519811741142,54.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19421.55,0.0,21650.0,1,6,4.0,1,1.0 -673,1019,3095.7579283191712,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15440.0,0.0,0.0,17168.0,0.0,200.0,5,8,7.0,3,0.0 -674,1020,5584.114526499541,74.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12380.0,162.0,0.0,13205.4,0.0,0.0,1,8,7.0,1,0.0 -675,1023,1961.7051611101558,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67560.0,0.0,0.0,59138.15,0.0,0.0,1,10,8.0,3,0.0 -676,1024,2526.8759439814735,45.0,111,0.0,56,3,2.0,5.0,2.8,0.0,6580.0,0.0,0.0,0.0,0.0,40269.0,0.0,16760.0,3,6,5.0,2,3.0 -677,1026,3367.480599256106,29.0,111,7190.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14328.0,0.0,7520.0,3,9,7.0,1,1.0 -678,1029,1854.665278063535,50.0,111,3740.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18491.0,0.0,14430.0,3,7,5.0,1,1.0 -679,1030,2521.742408503884,66.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34390.0,0.0,0.0,47494.0,0.0,17590.0,1,0,0.0,1,0.0 -680,1031,3718.5668436963724,51.0,111,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22803.25,0.0,13900.0,2,10,8.0,4,1.0 -681,1032,4273.391053678567,26.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12160.0,0.0,12140.0,3,10,8.0,1,1.0 -682,1033,2746.5157593834247,38.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58094.05,0.0,56230.0,2,9,7.0,4,2.0 -683,1035,1871.0451550191326,48.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35517.2,0.0,38380.0,3,10,8.0,2,2.0 -684,1037,3679.7823663706827,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4130.6,0.0,0.0,3,8,6.0,1,0.0 -685,1038,2179.96382423911,54.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37950.8,0.0,40060.0,1,9,7.0,3,2.0 -686,1039,2447.6582059693274,61.0,111,0.0,68,3,3.0,3.0,2.0,0.0,5080.0,0.0,0.0,0.0,0.0,53146.4,0.0,33440.0,3,10,8.0,4,3.0 -687,1041,3302.8200620504617,48.0,112,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18251.15,0.0,19620.0,2,10,4.0,2,1.0 -688,1043,3571.4848128979015,34.0,111,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40957.0,0.0,40640.0,3,7,5.0,4,2.0 -689,1044,1185.1131345770173,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49790.0,0.0,0.0,46479.1,0.0,0.0,1,8,0.0,3,0.0 -690,1045,2816.326882627001,41.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27454.2,0.0,29860.0,3,10,0.0,1,1.0 -691,1046,1992.192902599123,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11480.0,0.0,0.0,12368.0,0.0,0.0,3,9,7.0,1,0.0 -692,1048,5609.40478495857,41.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5801.0,0.0,0.0,3,7,5.0,1,1.0 -693,1049,3956.917042857073,22.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55310.0,0.0,49010.0,3,9,7.0,5,2.0 -694,1051,2739.915213416985,49.0,112,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8808.15,0.0,0.0,2,9,0.0,1,1.0 -695,1053,2720.5419204379878,38.0,111,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22858.3,0.0,16560.0,3,8,6.0,2,1.0 -696,1054,3434.4385087283176,36.0,111,0.0,22,1.0,0.0,4.0,2.1,0.0,7610.0,0.0,0.0,0.0,0.0,14780.0,100.0,0.0,3,8,7.0,4,1.0 -697,1055,3154.817086499049,72.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14050.0,0.0,0.0,14949.25,0.0,1020.0,1,9,7.0,3,1.0 -698,1056,2568.6911466914685,22.0,111,830.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28053.1,0.0,28260.0,3,6,4.0,3,2.0 -699,1057,1830.257244291491,82.0,111,0.0,75,1.0,0.0,3.0,2.0,0.0,0.0,0.0,25400.0,0.0,0.0,22921.9,0.0,0.0,1,6,5.0,5,1.0 -700,1058,4578.712945209275,30.0,221,5480.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47303.05,0.0,6970.0,3,1,2.0,3,2.0 -701,1063,3518.4418304711007,34.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,3850.0,0.0,0.0,0.0,0.0,10510.0,670.0,4010.0,3,9,7.0,1,1.0 -702,1065,1822.0137381331672,61.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14440.0,0.0,0.0,13864.75,0.0,0.0,1,8,0.0,3,0.0 -703,1066,1992.4431598951714,83.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43880.0,81.0,0.0,44301.6,0.0,0.0,1,8,1.0,1,0.0 -704,1067,3313.0905557732876,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,911.0,0.0,0.0,3,9,7.0,1,0.0 -705,1068,1663.1236814573963,82.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49740.0,0.0,0.0,46261.45,0.0,0.0,1,8,6.0,3,0.0 -706,1071,1451.862578789545,50.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35810.25,0.0,38350.0,3,8,7.0,3,2.0 -707,1073,2596.84151392621,56.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,464.0,0.0,57594.0,0.0,61820.0,1,10,8.0,2,2.0 -708,1074,1305.599669810877,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20840.0,0.0,0.0,20249.55,0.0,0.0,1,7,0.0,3,0.0 -709,1075,4306.882571202543,87.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24810.0,0.0,0.0,24514.6,0.0,0.0,1,9,7.0,3,0.0 -710,1076,6456.033608897349,27.0,112,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33421.7,0.0,21320.0,1,9,3.0,3,1.0 -711,1077,2218.98075537305,40.0,112,670.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45767.9,0.0,37660.0,2,6,0.0,4,2.0 -712,1078,1584.324793650186,32.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,22.0,0.0,40479.8,0.0,41220.0,2,8,7.0,4,2.0 -713,1082,3220.135627022235,81.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21750.0,0.0,0.0,20730.55,0.0,0.0,1,7,0.0,1,0.0 -714,1084,2590.8229659844746,90.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19400.0,44.0,0.0,20455.1,0.0,0.0,1,9,0.0,1,0.0 -715,1085,3222.2905568590168,32.0,400,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,257.0,0.0,46628.8,0.0,37980.0,3,0,1.0,4,2.0 -716,1086,3274.968638160151,54.0,111,5600.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8367.0,0.0,0.0,3,7,5.0,1,1.0 -717,1087,1043.9659763186341,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21690.0,0.0,0.0,26992.4,0.0,6110.0,1,8,1.0,3,0.0 -718,1088,2438.03462396763,33.0,111,2630.0,55,1.0,1.0,4.0,1.9,0.0,970.0,0.0,6670.0,0.0,0.0,24232.0,30.0,70.0,3,5,4.0,2,1.0 -719,1089,981.4554835835204,46.0,120,25480.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27724.4,0.0,1500.0,2,0,0.0,4,1.0 -720,1090,6325.016253769385,34.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23614.9,0.0,23880.0,3,10,8.0,3,2.0 -721,1091,1471.4220182549973,40.0,111,0.0,33,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,43.0,0.0,82999.6,0.0,80620.0,2,9,7.0,4,2.0 -722,1092,1353.0348337587009,57.0,112,0.0,62,1.0,1.0,2.0,1.5,5190.0,0.0,0.0,3180.0,0.0,0.0,29622.45,0.0,21500.0,2,6,0.0,3,1.0 -723,1093,3619.4391695097956,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54560.0,459.0,0.0,60858.45,0.0,0.0,1,10,8.0,3,0.0 -724,1094,1456.8055419517561,52.0,111,0.0,62,3,2.0,3.0,2.0,2830.0,0.0,0.0,0.0,0.0,0.0,29481.0,0.0,26620.0,2,9,7.0,4,3.0 -725,1095,3781.992508657953,50.0,111,0.0,62,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,63089.8,0.0,65500.0,1,10,8.0,4,3.0 -726,1096,2027.3239928248672,40.0,112,36670.0,47,2.0,0.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,43163.9,0.0,110.0,2,6,2.0,4,2.0 -727,1097,3667.1695872937375,26.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40757.65,0.0,40990.0,3,8,7.0,3,2.0 -728,1100,2978.936332577601,33.0,112,0.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,1800.0,0.0,0.0,6912.0,0.0,0.0,3,9,0.0,2,0.0 -729,1101,1443.981257514862,71.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17160.0,0.0,0.0,26181.0,0.0,9520.0,1,7,0.0,3,1.0 -730,1102,1048.1620424264943,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,128480.0,542.0,0.0,127127.1,0.0,0.0,1,8,7.0,3,0.0 -731,1103,3295.4170902276237,25.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13017.0,0.0,10410.0,3,9,7.0,1,1.0 -732,1104,2902.501932219289,61.0,111,2400.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2990.0,0.0,0.0,0.0,10121.2,0.0,2920.0,3,10,8.0,1,0.0 -733,1105,2527.4157014260086,50.0,400,0.0,67,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40147.25,0.0,41400.0,5,0,0.0,4,3.0 -734,1106,2856.39751613317,60.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49780.0,0.0,0.0,52925.05,0.0,0.0,1,6,0.0,3,0.0 -735,1107,2953.1955911124064,53.0,112,10820.0,62,1.0,2.0,3.0,2.0,0.0,0.0,0.0,3820.0,0.0,0.0,35601.8,0.0,21130.0,1,7,0.0,4,1.0 -736,1108,1824.3625183715344,33.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,1057.0,0.0,132464.05,0.0,58680.0,2,9,7.0,4,2.0 -737,1109,3011.3392604868072,50.0,111,0.0,52,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,37808.0,0.0,18090.0,3,10,8.0,2,2.0 -738,1111,1935.165056184157,29.0,120,0.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34009.0,0.0,24750.0,3,0,0.0,4,1.0 -739,1112,2722.891419207093,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29450.0,167.0,0.0,28532.1,0.0,0.0,1,8,0.0,3,0.0 -740,1113,2743.263111888491,50.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44208.7,0.0,49190.0,2,10,8.0,4,2.0 -741,1114,3067.0921257477858,37.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23917.55,0.0,25640.0,3,9,7.0,1,1.0 -742,1115,3171.833039140813,46.0,111,11780.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11130.65,0.0,0.0,2,9,7.0,2,2.0 -743,1116,3212.31888395525,76.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9200.0,0.0,0.0,32560.65,0.0,0.0,1,9,7.0,1,0.0 -744,1118,2528.586722872758,78.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15230.0,0.0,0.0,16200.0,0.0,0.0,3,0,0.0,3,0.0 -745,1119,2882.3073247013763,44.0,300,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,26059.8,0.0,22360.0,2,0,0.0,4,2.0 -746,1122,1915.904277062569,41.0,400,0.0,67,1.0,1.0,2.0,1.5,2480.0,0.0,0.0,6280.0,0.0,0.0,16050.9,0.0,7430.0,3,0,0.0,3,1.0 -747,1123,4480.480161010403,49.0,221,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,15.0,0.0,74573.95,0.0,76110.0,2,1,1.0,4,2.0 -748,1124,2253.6203004312115,85.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20930.0,0.0,0.0,19098.8,0.0,0.0,1,1,3.0,1,0.0 -749,1125,1529.6548180377176,63.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,44390.0,0.0,0.0,42823.65,0.0,0.0,5,8,7.0,5,0.0 -750,1127,2603.73014933291,52.0,300,0.0,22,1.0,1.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,5010.0,0.0,0.0,5,0,0.0,1,1.0 -751,1128,2002.4367650838574,60.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17940.0,0.0,0.0,17078.4,0.0,0.0,3,6,5.0,1,0.0 -752,1129,2265.87312058799,84.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36060.0,0.0,0.0,32353.7,0.0,0.0,1,9,7.0,1,0.0 -753,1131,1573.1979853674925,37.0,111,40060.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,84826.85,0.0,50740.0,2,10,8.0,4,2.0 -754,1133,2904.203227443598,21.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18165.5,870.0,11470.0,3,8,7.0,2,1.0 -755,1134,3630.0943264876355,39.0,111,1960.0,35,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66781.2,0.0,63250.0,3,10,8.0,4,2.0 -756,1135,2990.792996583858,21.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29687.5,0.0,31300.0,3,6,4.0,1,1.0 -757,1136,1568.7136106693786,47.0,112,0.0,38,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,274.0,0.0,92207.25,0.0,88350.0,1,10,2.0,4,1.0 -758,1137,2841.8291870553785,42.0,221,0.0,62,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,64542.75,0.0,54020.0,2,1,1.0,4,2.0 -759,1138,3733.986879992689,24.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,51.0,0.0,26730.0,0.0,27030.0,3,10,8.0,1,1.0 -760,1139,2127.467464586762,31.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41186.15,0.0,40640.0,2,8,0.0,4,2.0 -761,1140,3131.0575917363863,65.0,111,0.0,72,0.0,0.0,3.0,2.0,0.0,0.0,0.0,8340.0,783.0,0.0,25922.9,0.0,0.0,1,9,7.0,4,0.0 -762,1141,1697.847146737131,54.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28623.0,0.0,32550.0,3,8,1.0,1,1.0 -763,1143,2755.096382634844,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17660.0,0.0,0.0,17346.55,0.0,0.0,1,9,7.0,1,0.0 -764,1145,4164.275378180055,43.0,120,0.0,64,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,31142.6,0.0,21010.0,3,0,0.0,4,1.0 -765,1146,2789.1160519751015,32.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41542.2,0.0,44280.0,2,10,8.0,3,2.0 -766,1148,2429.4899199769507,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40410.0,62.0,0.0,40787.9,0.0,0.0,1,9,7.0,3,0.0 -767,1151,1566.0279652532454,44.0,300,940.0,54,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,35147.9,0.0,26880.0,2,0,0.0,4,2.0 -768,1153,2161.2029367234572,82.0,111,8020.0,72,1.0,0.0,3.0,2.0,0.0,0.0,0.0,14220.0,0.0,0.0,35011.15,0.0,4480.0,1,9,7.0,5,1.0 -769,1154,3118.9544068427604,41.0,111,0.0,56,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31341.1,0.0,17300.0,3,8,7.0,2,1.0 -770,1155,844.767214798914,58.0,112,0.0,47,3,4.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,79572.2,0.0,76760.0,2,10,0.0,5,4.0 -771,1156,1810.0796682748996,39.0,221,0.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,2400.0,0.0,0.0,24457.6,0.0,14200.0,3,1,2.0,2,1.0 -772,1157,1644.7906789172966,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18710.0,0.0,0.0,17035.45,0.0,0.0,1,9,7.0,1,0.0 -773,1159,3019.8178991609147,39.0,111,970.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39000.75,0.0,36030.0,1,10,8.0,4,2.0 -774,1160,1275.275994637106,52.0,111,0.0,54,2.0,1.0,3.0,2.0,0.0,0.0,0.0,12690.0,0.0,0.0,33698.0,0.0,24690.0,2,8,7.0,4,2.0 -775,1161,3319.1454399728686,29.0,111,5010.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16388.65,0.0,15820.0,3,10,8.0,1,1.0 -776,1163,1872.791428755877,36.0,300,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42073.3,0.0,42500.0,2,0,0.0,4,2.0 -777,1164,1360.5876027934544,70.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12600.0,0.0,0.0,12454.25,0.0,0.0,1,9,7.0,1,0.0 -778,1165,1137.3889318902327,59.0,111,17380.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22896.95,0.0,7200.0,1,5,4.0,3,1.0 -779,1166,2262.4551675151642,38.0,212,11450.0,48,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,44042.5,0.0,17800.0,2,3,0.0,4,1.0 -780,1167,1797.2727601498834,58.0,112,1310.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,7320.0,0.0,0.0,29110.75,0.0,21210.0,1,6,0.0,2,2.0 -781,1168,2495.704102423825,45.0,111,27630.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,43.0,0.0,44155.85,0.0,10170.0,2,9,7.0,4,2.0 -782,1170,1834.710356240941,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18880.0,0.0,0.0,24544.75,0.0,0.0,1,6,0.0,1,0.0 -783,1171,3578.82404842561,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18710.0,0.0,0.0,18569.0,0.0,0.0,3,10,8.0,1,0.0 -784,1174,2795.693086587096,47.0,111,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20672.75,0.0,20390.0,3,10,8.0,2,1.0 -785,1175,3858.7068766621755,41.0,111,0.0,47,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,7.0,0.0,29425.65,0.0,30040.0,3,9,7.0,2,1.0 -786,1176,5547.134480247468,26.0,112,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27630.85,0.0,27390.0,3,9,3.0,3,1.0 -787,1179,4972.897929238602,38.0,112,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40009.75,0.0,32360.0,2,9,3.0,4,2.0 -788,1180,1466.2643731156982,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25090.0,108.0,0.0,27862.6,0.0,0.0,1,10,0.0,3,0.0 -789,1184,2416.367595057327,59.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54762.4,0.0,58150.0,1,10,3.0,3,2.0 -790,1185,3385.6831508634727,90.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17530.0,0.0,0.0,17422.75,0.0,0.0,1,9,7.0,3,0.0 -791,1186,2599.541296428502,51.0,120,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,104336.75,0.0,0.0,2,0,0.0,3,2.0 -792,1188,2774.545766410091,42.0,111,11940.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,205846.3,0.0,193470.0,2,9,7.0,4,2.0 -793,1190,3461.158370213242,55.0,111,5600.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8684.0,0.0,0.0,3,10,8.0,1,0.0 -794,1191,1463.195788667658,38.0,111,940.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27025.25,0.0,21070.0,3,5,4.0,4,2.0 -795,1192,2794.8157777387573,71.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20320.0,0.0,0.0,20086.0,0.0,0.0,1,5,0.0,1,0.0 -796,1193,2957.392032957574,56.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8260.0,0.0,0.0,17939.0,0.0,9590.0,5,9,7.0,1,1.0 -797,1195,1715.9234567534033,73.0,111,5590.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,62420.0,4.0,0.0,93464.6,0.0,34360.0,1,9,7.0,3,1.0 -798,1200,2234.8678507023956,71.0,221,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21760.0,0.0,0.0,23730.55,0.0,0.0,1,1,2.0,1,0.0 -799,1201,1888.6231072181558,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,950.0,27060.0,0.0,0.0,30197.15,0.0,0.0,1,6,4.0,1,0.0 -800,1202,1577.9302340391012,63.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26600.0,0.0,0.0,26508.3,0.0,500.0,1,0,0.0,3,0.0 -801,1203,2210.682379109928,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54710.0,0.0,0.0,50235.7,0.0,0.0,1,8,6.0,3,0.0 -802,1210,2508.41361503023,29.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58837.0,0.0,66020.0,2,10,8.0,3,2.0 -803,1211,2844.08094227881,90.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27840.0,0.0,0.0,27227.65,0.0,0.0,1,0,0.0,2,0.0 -804,1212,3049.3726969979693,29.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46044.2,0.0,49910.0,3,8,0.0,3,2.0 -805,1215,2820.3952302414427,77.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9760.0,0.0,0.0,11175.0,0.0,0.0,3,3,3.0,1,0.0 -806,1216,1603.9108814417657,35.0,112,1190.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56467.75,0.0,54000.0,2,5,0.0,4,2.0 -807,1217,1489.1371870978235,61.0,400,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,14960.0,0.0,0.0,33019.8,0.0,380.0,1,0,0.0,4,2.0 -808,1218,3208.6471300732887,68.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14010.0,0.0,0.0,15888.2,0.0,0.0,1,0,0.0,5,0.0 -809,1219,1537.1473100224748,45.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,55903.5,0.0,58200.0,2,7,5.0,4,2.0 -810,1221,2062.421164734613,49.0,400,0.0,11,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,11948.0,0.0,0.0,2,0,0.0,4,2.0 -811,1222,2876.1667044619703,54.0,300,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31104.7,0.0,31920.0,1,0,0.0,3,2.0 -812,1223,2437.8459486412676,32.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21642.2,0.0,23320.0,3,8,7.0,1,1.0 -813,1224,3665.816817425724,77.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36670.0,0.0,0.0,34290.65,0.0,0.0,3,7,0.0,3,0.0 -814,1228,2731.240168172141,76.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6430.0,0.0,0.0,7049.9,0.0,0.0,1,0,0.0,1,0.0 -815,1232,2798.382000867999,53.0,111,2270.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23199.1,0.0,17540.0,3,10,8.0,3,2.0 -816,1233,2278.984951318957,47.0,111,3960.0,52,2.0,1.0,4.0,2.5,0.0,0.0,0.0,10230.0,0.0,0.0,41968.1,0.0,22050.0,2,9,7.0,2,2.0 -817,1234,7884.647336699138,44.0,120,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,12110.0,0.0,0.0,53036.0,0.0,34950.0,3,0,0.0,4,2.0 -818,1239,4395.7477249300855,87.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12170.0,0.0,0.0,12007.5,0.0,0.0,1,3,3.0,1,0.0 -819,1240,4755.066878902941,52.0,221,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15180.0,0.0,0.0,30205.55,0.0,15670.0,1,1,1.0,3,1.0 -820,1241,2746.3563935226516,52.0,112,0.0,21,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,23.0,0.0,53899.35,0.0,62610.0,1,10,1.0,4,3.0 -821,1242,2060.8437390186846,54.0,211,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,7290.0,0.0,0.0,14783.25,0.0,11100.0,1,4,4.0,1,1.0 -822,1243,1426.4460817323245,49.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44017.2,0.0,43780.0,2,8,0.0,4,2.0 -823,1244,1416.2777938877787,40.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,14.0,0.0,180838.65,0.0,212850.0,2,10,8.0,4,2.0 -824,1245,1662.0307045834043,54.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54223.45,0.0,59210.0,1,5,4.0,4,2.0 -825,1246,2158.14345497476,54.0,300,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,6230.0,10173.0,0.0,89613.15,0.0,49730.0,1,0,0.0,3,2.0 -826,1248,2232.5383953945598,50.0,111,0.0,46,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,54099.25,0.0,56480.0,3,8,6.0,4,4.0 -827,1250,853.3741304490226,57.0,400,0.0,64,2.0,1.0,3.0,2.0,0.0,0.0,90.0,21240.0,0.0,0.0,41825.6,0.0,22300.0,1,0,0.0,5,2.0 -828,1252,2549.044470270009,35.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29791.15,0.0,25220.0,2,9,0.0,4,2.0 -829,1254,3468.5131888274504,39.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36823.2,0.0,32840.0,2,10,8.0,4,2.0 -830,1255,1168.1623074928611,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27710.0,0.0,0.0,26202.85,0.0,0.0,1,9,7.0,3,0.0 -831,1258,1822.2009785573196,81.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12850.0,0.0,0.0,13007.0,0.0,0.0,1,0,0.0,1,0.0 -832,1259,1310.4777080307229,46.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,16310.0,0.0,0.0,29503.85,0.0,15170.0,2,6,1.0,1,1.0 -833,1260,1798.416850593999,50.0,112,0.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43511.2,0.0,45240.0,2,6,0.0,4,2.0 -834,1261,888.3097010225841,50.0,111,0.0,46,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35051.8,0.0,37040.0,3,6,4.0,4,3.0 -835,1264,2783.166518212529,26.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19291.95,0.0,18760.0,2,4,4.0,1,1.0 -836,1266,2771.966410858274,35.0,111,0.0,65,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37350.85,0.0,19940.0,3,10,8.0,4,2.0 -837,1267,3699.912724905697,39.0,300,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40640.1,0.0,41660.0,2,0,0.0,4,1.0 -838,1269,2185.536960445404,34.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48869.4,0.0,45340.0,2,9,7.0,4,2.0 -839,1270,3420.6594445490564,30.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17461.2,0.0,18280.0,3,9,7.0,1,1.0 -840,1271,1755.3659889898174,56.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51694.3,0.0,56730.0,2,9,7.0,3,2.0 -841,1272,2959.0593516268495,45.0,221,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33993.25,0.0,33080.0,2,1,2.0,2,1.0 -842,1274,3314.85165429905,28.0,112,2360.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2.0,0.0,33128.6,0.0,30460.0,3,6,0.0,3,2.0 -843,1275,3202.659306010358,42.0,112,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21423.15,0.0,19960.0,3,7,4.0,2,1.0 -844,1278,4200.670547096112,33.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,25658.3,0.0,28350.0,2,8,7.0,1,1.0 -845,1279,2915.135785406236,50.0,111,0.0,43,1.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,10268.0,0.0,2150.0,3,8,7.0,1,1.0 -846,1282,2549.2829423900203,44.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,194.0,0.0,26102.15,0.0,26910.0,1,9,0.0,1,1.0 -847,1283,5601.5275057656,89.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18070.0,0.0,0.0,19034.25,0.0,0.0,3,0,2.0,1,0.0 -848,1284,3433.9768816519854,20.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10116.0,0.0,6710.0,3,7,5.0,1,1.0 -849,1285,4070.558945723753,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14850.0,0.0,0.0,15256.75,0.0,0.0,1,10,8.0,1,0.0 -850,1286,3355.6109889308136,45.0,111,0.0,54,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,25751.55,0.0,14410.0,3,9,7.0,2,1.0 -851,1287,1234.917218848792,33.0,300,0.0,65,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,39397.9,0.0,30120.0,3,0,0.0,4,2.0 -852,1290,3427.643884411812,21.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5787.0,0.0,4040.0,3,8,7.0,3,1.0 -853,1291,2018.6012988029368,28.0,112,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,13270.0,0.0,0.0,66714.8,0.0,54400.0,1,9,0.0,4,2.0 -854,1292,2057.5337553565146,68.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13330.0,2344.0,0.0,44341.95,0.0,9410.0,1,6,5.0,2,1.0 -855,1293,3481.835280810405,85.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,1310.0,11570.0,0.0,0.0,13619.05,0.0,0.0,5,8,7.0,5,0.0 -856,1294,1174.58911411523,83.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16560.0,0.0,0.0,27399.9,0.0,0.0,1,6,0.0,3,0.0 -857,1295,1676.7320210912999,56.0,111,5620.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,7990.0,0.0,0.0,14468.0,0.0,0.0,1,6,5.0,1,1.0 -858,1296,2556.613206627677,60.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64276.05,0.0,66200.0,1,8,6.0,4,2.0 -859,1297,2313.079699037242,75.0,120,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9310.0,0.0,0.0,9471.0,0.0,0.0,5,0,3.0,1,0.0 -860,1299,1822.0346573974145,59.0,400,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17760.0,0.0,0.0,42982.55,0.0,27040.0,1,0,0.0,3,1.0 -861,1300,1858.340395047403,35.0,111,4980.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50345.75,0.0,47220.0,2,8,6.0,4,2.0 -862,1301,4355.909960702192,24.0,111,0.0,84,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,362.0,0.0,9245.0,0.0,2000.0,4,10,8.0,1,0.0 -863,1302,3320.324739235986,23.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11415.9,0.0,8140.0,3,8,6.0,1,1.0 -864,1303,3432.8961760859993,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18620.0,0.0,0.0,18173.4,0.0,0.0,3,8,7.0,1,0.0 -865,1304,2693.7957582597337,71.0,111,0.0,31,1.0,0.0,2.0,1.5,0.0,0.0,0.0,41010.0,2279.0,0.0,48676.8,0.0,0.0,1,10,8.0,3,1.0 -866,1306,2824.422157029765,55.0,111,1760.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34940.8,0.0,35860.0,3,9,7.0,3,2.0 -867,1307,1345.695115479204,40.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,50649.1,0.0,39780.0,2,7,5.0,4,2.0 -868,1309,3824.1165244925687,68.0,111,3380.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15060.0,360.0,0.0,16223.65,0.0,1750.0,1,9,7.0,1,0.0 -869,1310,1838.0632941123183,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34640.0,0.0,0.0,32333.5,0.0,0.0,1,9,7.0,3,0.0 -870,1312,2062.7008420426278,30.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20542.4,0.0,22270.0,3,9,7.0,1,1.0 -871,1313,1473.8811484305281,57.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20170.0,59.0,0.0,60286.8,0.0,36760.0,1,9,7.0,3,1.0 -872,1316,1584.2103960469983,51.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42070.35,0.0,20730.0,1,8,0.0,4,2.0 -873,1318,2216.575587833343,56.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14900.0,0.0,0.0,34166.1,0.0,21240.0,3,8,7.0,3,1.0 -874,1320,3836.77698171836,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,3040.0,5700.0,0.0,0.0,10936.0,0.0,0.0,3,9,7.0,1,0.0 -875,1322,1666.9849011531246,63.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,150.0,0.0,9180.0,0.0,0.0,24353.6,400.0,14280.0,3,7,5.0,2,1.0 -876,1325,1948.1288241211157,40.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,62486.5,0.0,62680.0,2,10,8.0,4,2.0 -877,1326,3943.095339440225,27.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,21.0,0.0,66920.0,0.0,72940.0,3,10,8.0,3,2.0 -878,1328,1316.9048724640013,83.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,87180.0,0.0,0.0,81273.35,0.0,0.0,1,10,0.0,3,0.0 -879,1329,1970.9181920916124,55.0,111,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26490.0,0.0,0.0,39840.65,0.0,16050.0,3,8,7.0,3,1.0 -880,1330,1220.1689588108577,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28460.0,0.0,0.0,26633.2,0.0,0.0,1,9,7.0,3,0.0 -881,1333,7890.999616202699,44.0,112,0.0,12,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,20487.7,2200.0,8670.0,1,9,1.0,4,1.0 -882,1334,1089.1036443347948,46.0,112,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43980.3,0.0,34500.0,2,9,0.0,4,2.0 -883,1336,1569.7403605898808,63.0,400,0.0,77,1.0,1.0,4.0,2.5,0.0,2620.0,0.0,33230.0,0.0,0.0,46989.6,0.0,13710.0,1,0,0.0,5,1.0 -884,1339,1360.8932804479246,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37910.0,0.0,0.0,38617.65,0.0,0.0,1,7,6.0,3,0.0 -885,1340,2991.110547263188,41.0,112,1020.0,21,1.0,1.0,2.0,1.3,0.0,1770.0,0.0,2400.0,0.0,0.0,13525.5,1860.0,930.0,1,8,0.0,2,1.0 -886,1343,2785.4720228265865,57.0,111,0.0,68,2.0,1.0,2.0,1.5,0.0,5160.0,0.0,0.0,0.0,0.0,16542.1,1840.0,8520.0,3,4,4.0,2,2.0 -887,1348,1746.1684711323173,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34630.0,558.0,0.0,151726.75,0.0,67110.0,1,9,7.0,3,0.0 -888,1352,2510.0458702145843,54.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50416.9,0.0,49150.0,1,6,5.0,3,2.0 -889,1353,2077.736000646446,80.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19940.0,0.0,0.0,21999.7,0.0,0.0,5,0,0.0,1,0.0 -890,1354,959.8313769230454,57.0,112,0.0,34,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,28.0,0.0,70532.8,0.0,74220.0,1,8,0.0,4,2.0 -891,1355,2608.529417730856,48.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15357.25,0.0,16490.0,3,10,8.0,1,1.0 -892,1358,8059.7678812551485,83.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9350.0,0.0,0.0,9651.0,0.0,0.0,5,0,3.0,1,0.0 -893,1359,3953.658970084323,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23090.0,0.0,0.0,31824.95,0.0,0.0,1,10,8.0,1,0.0 -894,1360,1441.5701987929017,51.0,111,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,655.0,0.0,84043.7,0.0,79960.0,2,9,7.0,4,2.0 -895,1361,3424.9560711608146,47.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,70956.3,0.0,73600.0,2,10,8.0,4,2.0 -896,1362,1585.0110136146216,59.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2100.0,32.0,0.0,57235.4,0.0,58860.0,3,9,7.0,1,1.0 -897,1365,1799.7440030129137,51.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21540.0,0.0,21540.0,3,9,3.0,2,2.0 -898,1366,2793.1934658410682,50.0,112,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33416.85,0.0,34430.0,2,7,1.0,3,2.0 -899,1367,2309.2565340092833,25.0,400,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,13.0,0.0,43162.3,0.0,33940.0,5,0,0.0,4,2.0 -900,1368,1453.5592552622118,44.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43009.25,0.0,42700.0,2,8,1.0,4,2.0 -901,1369,2030.3922539092098,54.0,112,9200.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10735.25,0.0,0.0,3,8,0.0,1,1.0 -902,1373,1584.7403719446304,45.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36098.55,0.0,37890.0,3,5,4.0,4,2.0 -903,1374,5829.328547450284,24.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6660.15,0.0,4630.0,3,6,5.0,1,1.0 -904,1375,2981.0984430981225,54.0,221,0.0,69,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,7936.0,0.0,0.0,3,1,1.0,1,1.0 -905,1376,2472.9432971775295,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54850.0,0.0,0.0,54618.35,0.0,2300.0,1,9,7.0,3,0.0 -906,1377,1720.3101380776413,55.0,111,0.0,62,2.0,2.0,3.0,2.0,8380.0,0.0,0.0,0.0,0.0,0.0,38331.4,0.0,30450.0,1,8,7.0,4,2.0 -907,1378,4188.763287706454,51.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25362.45,0.0,26660.0,3,6,4.0,1,1.0 -908,1379,1926.3843407056543,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57270.0,23.0,0.0,49739.3,0.0,0.0,1,10,8.0,3,0.0 -909,1381,3436.223154855449,28.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32384.4,0.0,13250.0,3,10,8.0,3,2.0 -910,1384,1651.584858970395,68.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50230.0,0.0,0.0,44143.1,0.0,0.0,1,1,2.0,3,0.0 -911,1386,3555.0190826695425,50.0,120,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,11649.0,0.0,0.0,3,0,3.0,1,0.0 -912,1387,2384.3780670903984,26.0,111,0.0,63,1.0,0.0,1.0,1.0,0.0,5280.0,0.0,0.0,0.0,0.0,7767.85,0.0,0.0,3,7,5.0,1,1.0 -913,1388,1473.584619839343,52.0,111,0.0,85,1.0,0.0,3.0,2.0,0.0,6480.0,0.0,0.0,0.0,0.0,11874.0,0.0,0.0,3,8,7.0,2,1.0 -914,1389,3012.178181290481,38.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,35809.55,0.0,31130.0,3,9,7.0,2,1.0 -915,1391,3197.7866500778314,51.0,221,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11968.85,0.0,12220.0,3,1,2.0,1,1.0 -916,1392,3170.8829833571217,45.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17673.0,0.0,18880.0,3,10,8.0,1,1.0 -917,1393,5592.818464430078,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19060.0,0.0,0.0,23047.0,0.0,0.0,3,7,5.0,3,0.0 -918,1394,2048.271370163423,41.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21250.75,0.0,19410.0,2,8,0.0,4,2.0 -919,1395,1532.8364073254397,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38640.0,0.0,0.0,37432.35,0.0,0.0,1,9,7.0,3,0.0 -920,1397,1971.3444500593055,54.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49081.85,0.0,53430.0,2,6,0.0,3,2.0 -921,1398,3119.6973768951507,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,48600.0,0.0,0.0,40138.65,0.0,0.0,1,8,7.0,1,0.0 -922,1400,2302.3539476477827,75.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22050.0,69.0,0.0,22821.95,0.0,0.0,1,8,6.0,3,0.0 -923,1402,1857.4458931363329,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20560.0,0.0,0.0,27584.7,0.0,0.0,1,8,1.0,3,0.0 -924,1403,2703.9422868787183,63.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24560.0,0.0,0.0,24129.4,0.0,0.0,1,0,0.0,3,0.0 -925,1405,3185.392645421641,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21670.0,0.0,0.0,21839.75,0.0,0.0,3,7,5.0,3,0.0 -926,1406,2917.3342095572784,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1442.0,0.0,0.0,3,7,5.0,1,0.0 -927,1407,2605.65394906366,46.0,111,0.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24166.3,0.0,17460.0,3,9,7.0,2,1.0 -928,1409,3855.2419259142725,28.0,111,8020.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10740.15,0.0,1220.0,3,10,8.0,1,1.0 -929,1410,6998.196375422359,32.0,111,0.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,999.0,0.0,21956.05,0.0,14550.0,3,10,8.0,4,2.0 -930,1411,3335.183762623154,40.0,111,7840.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,61223.4,0.0,50030.0,2,6,4.0,4,2.0 -931,1412,1755.3659889898174,53.0,111,1140.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9390.0,0.0,0.0,37755.05,0.0,29460.0,3,9,7.0,3,1.0 -932,1413,5516.124382133881,53.0,111,0.0,48,2.0,2.0,2.0,1.5,4320.0,0.0,0.0,360.0,0.0,0.0,22595.6,0.0,16560.0,3,7,5.0,2,2.0 -933,1414,2063.4599323816046,58.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16851.9,0.0,17780.0,1,6,4.0,1,1.0 -934,1415,4137.5279919599325,25.0,111,0.0,63,2.0,1.0,3.0,2.0,8270.0,6610.0,0.0,0.0,0.0,0.0,21296.0,0.0,1450.0,3,8,7.0,5,2.0 -935,1416,2992.3003653771266,48.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23330.75,0.0,23360.0,3,10,8.0,1,1.0 -936,1420,1675.72565544666,54.0,111,0.0,34,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64843.95,0.0,65100.0,1,9,7.0,4,3.0 -937,1421,3738.898273977921,36.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,10088.0,0.0,6780.0,3,9,7.0,2,1.0 -938,1427,2331.1361511446403,54.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20772.8,0.0,22170.0,2,8,7.0,1,1.0 -939,1429,3959.2011833531024,54.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26926.9,0.0,29480.0,5,5,4.0,1,1.0 -940,1431,3455.50223354571,29.0,111,0.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9519.0,0.0,6970.0,3,10,8.0,1,1.0 -941,1432,2427.1446473584037,70.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24680.0,0.0,0.0,22934.4,0.0,0.0,1,0,0.0,1,0.0 -942,1433,1390.8096861040092,55.0,400,5940.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25086.0,0.0,20000.0,1,0,0.0,3,2.0 -943,1434,2283.738930592594,67.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53400.0,0.0,0.0,49898.6,0.0,0.0,1,5,0.0,3,0.0 -944,1436,1068.799874821014,46.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54301.35,0.0,60190.0,3,9,1.0,3,2.0 -945,1437,3214.9203576620953,81.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,1600.0,11290.0,0.0,0.0,15290.0,0.0,0.0,3,10,8.0,3,0.0 -946,1438,1130.1127381275583,48.0,112,0.0,38,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,47886.5,0.0,41480.0,1,8,0.0,4,1.0 -947,1439,1720.5163925017832,45.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28037.9,0.0,28260.0,3,5,4.0,2,1.0 -948,1441,5591.469192665953,34.0,112,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59012.0,0.0,11130.0,2,9,3.0,4,1.0 -949,1442,3696.9537845583613,38.0,111,1430.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,3.0,0.0,38908.45,0.0,33180.0,3,8,6.0,4,2.0 -950,1444,3491.920440262305,61.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5754.25,0.0,5850.0,3,9,7.0,1,1.0 -951,1446,3053.5867687776704,54.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7530.0,0.0,0.0,7969.85,0.0,0.0,3,10,8.0,1,0.0 -952,1447,2279.775405207514,54.0,120,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5780.65,0.0,5810.0,1,0,0.0,2,1.0 -953,1448,4033.582369968843,65.0,111,5350.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3960.0,0.0,0.0,10651.5,0.0,280.0,1,6,4.0,1,0.0 -954,1449,1357.1564574037016,40.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,11813.0,2390.0,6330.0,3,6,4.0,1,1.0 -955,1450,3538.228959596642,25.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17920.85,0.0,19280.0,3,8,7.0,3,1.0 -956,1451,2079.6784041320084,54.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37104.65,0.0,39440.0,3,7,5.0,1,1.0 -957,1453,1945.6871104694503,49.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19820.05,0.0,20450.0,3,9,7.0,1,1.0 -958,1455,2998.800009568144,59.0,221,37370.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,9.0,0.0,34347.45,0.0,0.0,1,1,2.0,1,0.0 -959,1458,4832.138010592045,53.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,5310.0,0.0,300.0,5,1,2.0,1,0.0 -960,1459,1674.424876204621,56.0,111,0.0,38,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44150.0,0.0,53540.0,3,7,5.0,4,2.0 -961,1460,992.6796780819304,55.0,400,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46532.6,0.0,48760.0,1,0,0.0,4,2.0 -962,1461,3996.026881540631,26.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,10,8.0,1,1.0 -963,1463,1648.1043281071534,68.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31750.0,0.0,0.0,29715.85,0.0,0.0,1,10,1.0,3,0.0 -964,1465,3410.0171237917084,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,2210.0,6600.0,0.0,0.0,9254.0,0.0,0.0,3,10,8.0,1,0.0 -965,1468,3860.3858498092277,52.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25337.1,0.0,28090.0,2,10,8.0,1,1.0 -966,1469,1045.7718088701947,52.0,400,0.0,63,2.0,2.0,4.0,2.3,8750.0,0.0,0.0,0.0,0.0,0.0,41252.9,0.0,32200.0,1,0,0.0,5,2.0 -967,1471,3751.57679357296,39.0,120,0.0,11,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,4837.3,0.0,0.0,3,0,2.0,4,2.0 -968,1473,2722.0522700731476,28.0,111,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36385.45,0.0,36020.0,2,8,7.0,4,2.0 -969,1475,3704.5340829955508,28.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40712.6,0.0,43620.0,3,10,8.0,3,2.0 -970,1476,2091.8400051107656,55.0,300,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23000.0,1.0,0.0,30506.6,0.0,3540.0,2,0,0.0,3,1.0 -971,1477,3181.0993125624505,52.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,16.0,0.0,41254.9,0.0,22360.0,1,9,7.0,3,2.0 -972,1479,1628.846748216114,62.0,400,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26980.0,322.0,0.0,80344.8,0.0,63780.0,1,0,0.0,3,1.0 -973,1481,1331.9408632844543,57.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13290.0,0.0,0.0,33567.05,0.0,20470.0,2,8,6.0,3,0.0 -974,1483,2213.9769479844863,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25780.0,83.0,0.0,25469.7,0.0,0.0,1,7,1.0,3,0.0 -975,1484,4573.627173179326,83.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33670.0,0.0,0.0,31114.95,0.0,0.0,1,10,8.0,3,0.0 -976,1487,2533.3871664957146,22.0,111,0.0,55,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25866.75,0.0,10970.0,3,9,7.0,3,1.0 -977,1488,3241.8440018871734,77.0,120,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28100.0,0.0,0.0,31135.3,0.0,0.0,1,0,0.0,1,0.0 -978,1489,1155.8040185347754,39.0,120,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42406.95,0.0,36520.0,2,0,1.0,4,2.0 -979,1490,3655.572941479346,29.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19962.35,0.0,21540.0,3,8,7.0,1,1.0 -980,1491,3056.768380737422,41.0,111,0.0,85,0.0,0.0,4.0,2.3,0.0,6210.0,0.0,0.0,0.0,0.0,7915.4,0.0,0.0,3,10,8.0,5,0.0 -981,1494,3428.728745088288,40.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18404.45,0.0,20290.0,2,7,5.0,1,1.0 -982,1495,1264.3017195636007,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31400.0,0.0,0.0,27832.6,0.0,0.0,1,5,4.0,1,0.0 -983,1497,1848.7054159635602,45.0,300,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,33033.25,0.0,33120.0,3,0,0.0,4,2.0 -984,1498,2696.3740080177063,81.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21500.0,0.0,0.0,25217.4,0.0,0.0,3,5,4.0,1,0.0 -985,1499,1935.8935893170722,56.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31356.3,0.0,28600.0,1,8,7.0,3,1.0 -986,1501,1604.491182220183,76.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25670.0,0.0,0.0,26483.45,0.0,0.0,1,9,0.0,3,0.0 -987,1503,2837.7487067211673,60.0,221,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,82929.0,0.0,32130.0,1,1,2.0,3,2.0 -988,1504,3159.3766258838004,89.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12170.0,0.0,0.0,12170.0,0.0,0.0,3,10,8.0,1,0.0 -989,1505,2544.824378556877,31.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59627.75,0.0,68870.0,3,8,7.0,3,2.0 -990,1507,3222.0479065057543,42.0,111,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,18283.5,0.0,0.0,3,10,8.0,4,1.0 -991,1509,3277.7360689718835,48.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,175.0,0.0,49457.8,0.0,57780.0,3,10,8.0,3,1.0 -992,1510,2840.864337758111,75.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20620.0,0.0,0.0,19398.7,0.0,0.0,3,6,4.0,1,0.0 -993,1514,2069.908369997909,51.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,30.0,0.0,61843.6,0.0,62390.0,1,7,6.0,4,2.0 -994,1516,3374.8557657956376,50.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3710.0,0.0,0.0,6746.0,0.0,0.0,3,8,7.0,1,0.0 -995,1518,2369.0096085533482,63.0,221,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14430.0,0.0,0.0,30415.3,0.0,14550.0,1,1,3.0,3,1.0 -996,1519,3059.187246384731,76.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11420.0,100.0,0.0,13734.7,0.0,0.0,2,0,0.0,1,0.0 -997,1520,3300.154323339386,52.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3620.0,0.0,0.0,9510.0,0.0,3010.0,3,8,6.0,1,1.0 -998,1521,1580.1295008060727,58.0,112,0.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,8040.0,0.0,0.0,31748.35,0.0,28150.0,1,8,0.0,3,1.0 -999,1522,1028.2224649689886,59.0,111,2550.0,62,1.0,1.0,3.0,2.0,8750.0,0.0,0.0,0.0,0.0,0.0,28036.1,0.0,17560.0,1,5,4.0,4,1.0 -1000,1523,2393.645209653085,35.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66135.45,0.0,61380.0,2,10,8.0,4,2.0 -1001,1524,2255.600557240881,28.0,111,12310.0,63,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,21431.0,0.0,0.0,3,9,7.0,4,1.0 -1002,1525,2702.304627099587,70.0,112,0.0,78,2.0,2.0,4.0,2.5,0.0,0.0,0.0,24590.0,0.0,0.0,55806.95,0.0,34080.0,1,8,0.0,4,2.0 -1003,1528,1770.624412418902,55.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,450.0,0.0,0.0,11063.15,0.0,9920.0,1,8,6.0,2,1.0 -1004,1530,1955.675172244964,47.0,111,0.0,22,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,9753.85,0.0,7730.0,1,9,7.0,4,3.0 -1005,1531,2914.9662157685634,52.0,111,0.0,85,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11950.0,0.0,0.0,19774.0,0.0,4690.0,3,9,7.0,3,1.0 -1006,1532,2607.770257329307,46.0,111,0.0,37,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,64432.2,0.0,61650.0,1,10,8.0,4,1.0 -1007,1534,2492.332293070002,34.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45917.0,0.0,47580.0,2,9,7.0,4,2.0 -1008,1536,1681.3608016903993,47.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,7000.0,0.0,0.0,53024.95,0.0,48090.0,3,7,2.0,4,2.0 -1009,1538,2260.1707413393647,63.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20080.0,0.0,0.0,19115.45,0.0,0.0,1,10,0.0,3,0.0 -1010,1539,1942.158902052206,57.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37631.25,0.0,36840.0,1,8,7.0,3,2.0 -1011,1540,2396.8873848923486,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35740.0,136.0,0.0,40216.25,0.0,0.0,1,8,7.0,3,0.0 -1012,1542,4004.0660460779295,60.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,4978.85,0.0,0.0,1,0,0.0,1,0.0 -1013,1543,3419.9100509400255,41.0,111,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,14210.0,23.0,0.0,48742.35,0.0,27150.0,2,10,8.0,4,1.0 -1014,1548,3213.2296723630343,45.0,400,0.0,52,3,3.0,4.0,2.3,0.0,0.0,0.0,6900.0,0.0,0.0,43665.25,0.0,38070.0,2,0,1.0,4,3.0 -1015,1549,2587.1736328252678,26.0,300,970.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36722.8,0.0,34000.0,2,0,0.0,3,2.0 -1016,1550,1495.2262212462945,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20060.0,0.0,0.0,22259.35,0.0,0.0,3,7,5.0,1,0.0 -1017,1551,2422.414043589267,35.0,111,1800.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58698.2,0.0,51890.0,2,9,7.0,4,2.0 -1018,1552,1860.6491927993884,70.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29330.0,111.0,0.0,30011.15,0.0,0.0,1,6,0.0,3,0.0 -1019,1553,1891.3992200359673,56.0,112,6010.0,67,3,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,32593.75,0.0,25660.0,2,10,0.0,4,3.0 -1020,1554,2985.2875733635988,59.0,400,0.0,72,1.0,0.0,2.0,1.5,0.0,0.0,0.0,13430.0,0.0,0.0,13280.5,0.0,0.0,2,0,0.0,3,1.0 -1021,1555,874.4811978705426,55.0,111,0.0,23,1.0,1.0,7.0,4.0,0.0,0.0,1110.0,7690.0,0.0,0.0,86367.1,0.0,78570.0,1,10,8.0,5,1.0 -1022,1557,3302.0179935121155,26.0,120,11410.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30479.35,0.0,19550.0,3,0,3.0,3,2.0 -1023,1558,2824.4126588146296,37.0,112,2780.0,11,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,19959.05,0.0,0.0,5,6,0.0,4,2.0 -1024,1561,3540.2641224601634,56.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,48969.75,0.0,56440.0,1,8,7.0,1,1.0 -1025,1562,1563.1185044132467,35.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,6.0,0.0,23172.1,1380.0,17860.0,2,6,4.0,4,2.0 -1026,1566,2167.3905893994315,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29680.0,0.0,0.0,26575.05,0.0,0.0,3,8,6.0,1,0.0 -1027,1567,3688.4203430230573,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7847.0,0.0,0.0,4,9,7.0,1,0.0 -1028,1568,2244.979280240866,45.0,212,0.0,43,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21007.55,0.0,13980.0,2,2,0.0,2,2.0 -1029,1569,2375.830638008782,45.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35301.1,0.0,32180.0,2,5,0.0,4,2.0 -1030,1570,3146.300420008694,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2122.85,0.0,0.0,3,9,7.0,1,0.0 -1031,1571,4038.6147045686125,48.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29633.6,0.0,31560.0,3,4,3.0,1,1.0 -1032,1572,4136.172067934147,44.0,111,11550.0,21,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59638.8,0.0,0.0,1,9,7.0,4,1.0 -1033,1573,1299.5548373529061,50.0,112,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28252.25,0.0,17430.0,1,6,0.0,4,2.0 -1034,1575,2311.057566226161,73.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12590.0,0.0,0.0,12770.0,0.0,0.0,5,0,0.0,1,0.0 -1035,1576,1951.5288347888081,66.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12410.0,0.0,0.0,12182.5,0.0,0.0,1,5,0.0,1,0.0 -1036,1578,3447.2166131595363,32.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29481.95,0.0,30010.0,3,10,8.0,1,1.0 -1037,1579,1319.7983050571136,38.0,112,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,65157.2,0.0,25720.0,2,6,1.0,4,2.0 -1038,1580,5288.658799442691,39.0,112,0.0,38,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38574.65,0.0,37300.0,3,9,1.0,4,1.0 -1039,1581,2133.615494482469,37.0,112,440.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26103.35,0.0,15840.0,3,7,0.0,4,2.0 -1040,1585,3414.6644725607816,35.0,111,0.0,35,1.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,7870.5,0.0,0.0,3,9,7.0,1,1.0 -1041,1587,2494.028670865976,45.0,112,5990.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30463.25,0.0,25470.0,2,9,0.0,3,2.0 -1042,1588,3336.975586841658,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15080.0,0.0,0.0,15080.0,0.0,0.0,3,8,7.0,1,0.0 -1043,1589,4913.858841482674,27.0,120,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25371.25,0.0,27410.0,2,0,2.0,1,1.0 -1044,1591,3388.6685507400193,23.0,111,3540.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26426.85,0.0,22130.0,3,8,7.0,3,1.0 -1045,1593,1440.3101127497896,55.0,400,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,23.0,0.0,29622.6,0.0,20980.0,1,0,0.0,3,2.0 -1046,1594,2317.952605226408,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30800.0,0.0,0.0,29027.9,0.0,0.0,1,10,8.0,3,0.0 -1047,1595,4737.397096917316,43.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38344.45,0.0,17460.0,3,10,8.0,4,2.0 -1048,1596,2995.8179705247,57.0,111,0.0,45,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50249.55,0.0,53400.0,3,10,8.0,4,3.0 -1049,1599,3177.074354073051,40.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23765.5,0.0,0.0,2,8,0.0,1,1.0 -1050,1600,2142.815933934523,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25920.0,0.0,0.0,25513.336363636365,0.0,0.0,1,7,5.0,3,0.0 -1051,1601,2721.5653278947298,67.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28420.0,0.0,0.0,36456.75,0.0,0.0,5,8,0.0,3,0.0 -1052,1602,1705.5720648899362,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30320.0,0.0,0.0,35506.75,0.0,6760.0,1,6,0.0,3,0.0 -1053,1603,2694.762909459206,34.0,111,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,50264.25,0.0,47290.0,2,10,8.0,4,2.0 -1054,1604,3092.5211248703113,58.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29878.9,0.0,30300.0,1,7,5.0,1,1.0 -1055,1606,3966.0978388650105,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18746.0,0.0,0.0,3,9,7.0,3,0.0 -1056,1607,2681.2330424219804,39.0,112,10930.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25815.35,0.0,7110.0,1,10,1.0,2,1.0 -1057,1609,2829.5484271933624,53.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,50.0,0.0,169060.75,0.0,186160.0,1,9,7.0,2,1.0 -1058,1610,1799.0872937022887,53.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28403.65,0.0,32460.0,2,6,4.0,1,1.0 -1059,1612,4882.931836666314,42.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15616.6,0.0,15590.0,1,9,7.0,1,1.0 -1060,1613,2377.634763953168,78.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34690.0,0.0,0.0,32837.55,0.0,0.0,1,9,7.0,3,0.0 -1061,1615,1059.3704946451162,61.0,400,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,8610.0,0.0,0.0,24144.8,0.0,15280.0,2,0,0.0,3,2.0 -1062,1617,1615.543325427561,54.0,120,1480.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,17740.0,0.0,0.0,51252.95,0.0,34950.0,1,0,0.0,5,2.0 -1063,1618,2591.80357318214,56.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,218.0,0.0,73801.3,0.0,79990.0,1,10,8.0,3,2.0 -1064,1620,2183.5408892270375,42.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,61.0,0.0,62327.2,0.0,63410.0,2,8,7.0,4,2.0 -1065,1624,4019.358245122844,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45310.0,0.0,0.0,46904.3,0.0,0.0,1,9,7.0,3,0.0 -1066,1626,3915.338728835554,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13640.0,0.0,0.0,14060.0,0.0,0.0,3,9,7.0,1,0.0 -1067,1627,2920.3112349536227,50.0,221,0.0,85,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15380.0,0.0,0.0,29304.45,0.0,14100.0,2,1,2.0,3,1.0 -1068,1628,2966.938271688375,67.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19470.0,0.0,0.0,19049.6,0.0,0.0,1,1,1.0,3,0.0 -1069,1630,1915.2021342298756,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16360.0,0.0,0.0,16138.4,0.0,0.0,1,8,7.0,1,0.0 -1070,1634,2339.8005585948613,53.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24584.6,0.0,25130.0,3,4,4.0,3,2.0 -1071,1635,1488.0627358072236,31.0,212,4980.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44732.7,0.0,32840.0,2,3,0.0,4,2.0 -1072,1639,4681.859198079847,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32780.0,0.0,0.0,36891.15,0.0,0.0,1,10,8.0,1,0.0 -1073,1640,1692.2482693414634,74.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17730.0,0.0,0.0,18953.0,0.0,0.0,5,10,0.0,1,0.0 -1074,1641,5967.581448860313,58.0,112,0.0,78,1.0,0.0,2.0,1.5,0.0,1720.0,0.0,11850.0,0.0,0.0,16256.35,3010.0,0.0,1,9,3.0,3,1.0 -1075,1642,2766.191988537535,24.0,111,4030.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,5.0,0.0,33939.0,0.0,26580.0,3,7,5.0,4,2.0 -1076,1644,2180.8166628857293,77.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13520.0,0.0,0.0,15214.6,0.0,0.0,1,0,0.0,3,0.0 -1077,1645,2437.3390706924274,29.0,111,2550.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,81.0,0.0,38036.0,0.0,33370.0,2,8,7.0,4,1.0 -1078,1646,3093.30630827792,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3240.0,0.0,0.0,2550.35,0.0,0.0,1,9,7.0,1,0.0 -1079,1647,3130.9661678230964,70.0,111,0.0,78,1.0,1.0,5.0,3.0,4130.0,7640.0,0.0,17940.0,0.0,0.0,45770.0,3010.0,12030.0,3,7,5.0,4,1.0 -1080,1648,1014.4227561197958,62.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15380.0,0.0,0.0,15871.55,0.0,0.0,1,0,1.0,3,0.0 -1081,1651,3256.073337118055,41.0,111,0.0,48,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29672.2,0.0,25800.0,3,10,8.0,4,2.0 -1082,1652,2868.398127119408,49.0,400,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43300.85,0.0,42610.0,2,0,0.0,4,2.0 -1083,1653,2325.990090921054,73.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25940.0,0.0,0.0,24750.25,0.0,0.0,1,1,2.0,3,0.0 -1084,1654,1766.7843788620269,82.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,320.0,8480.0,0.0,0.0,9182.1,0.0,0.0,1,6,4.0,1,0.0 -1085,1656,2196.1669931057486,47.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45030.3,0.0,47060.0,1,10,8.0,4,2.0 -1086,1657,2127.3129920983656,46.0,112,0.0,45,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45133.7,0.0,45060.0,2,7,4.0,4,2.0 -1087,1659,2037.562096186354,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60950.0,0.0,0.0,50677.4,0.0,0.0,1,9,7.0,3,0.0 -1088,1660,960.233767121396,51.0,300,2900.0,68,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,42385.5,0.0,38430.0,1,0,0.0,4,2.0 -1089,1661,1801.3952650903202,25.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38047.95,0.0,40710.0,3,5,4.0,3,2.0 -1090,1662,1669.7367654818818,41.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32754.45,0.0,30700.0,2,7,0.0,4,2.0 -1091,1663,1788.982031059901,65.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32360.0,89.0,0.0,40895.45,0.0,0.0,1,2,3.0,1,0.0 -1092,1664,3551.470996769685,52.0,120,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26387.85,0.0,23080.0,2,0,0.0,2,1.0 -1093,1665,1345.2535619656617,62.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,6710.0,0.0,17560.0,0.0,0.0,29272.0,350.0,4360.0,1,9,0.0,2,1.0 -1094,1666,1804.5061976753782,73.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17450.0,0.0,0.0,40317.4,0.0,0.0,1,0,1.0,3,0.0 -1095,1668,3309.1081800254756,21.0,111,0.0,56,2.0,1.0,3.0,1.8,0.0,4930.0,0.0,0.0,0.0,0.0,10200.0,0.0,0.0,3,10,8.0,4,2.0 -1096,1671,2876.966640809301,27.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16219.65,0.0,16320.0,3,9,7.0,1,1.0 -1097,1672,2329.8152885166664,48.0,112,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,65740.85,0.0,69310.0,2,8,0.0,4,2.0 -1098,1673,4237.931945009472,75.0,111,1620.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,13080.0,0.0,0.0,15113.8,0.0,0.0,2,8,6.0,2,1.0 -1099,1675,3841.5703618510884,31.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38820.9,0.0,37420.0,2,9,7.0,4,2.0 -1100,1676,3424.388525656176,86.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9410.0,0.0,0.0,10783.15,0.0,0.0,1,9,7.0,1,0.0 -1101,1678,3339.9792900557213,48.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11007.65,0.0,12320.0,1,5,4.0,3,2.0 -1102,1681,1390.0687180101106,33.0,111,0.0,56,1.0,1.0,4.0,2.1,0.0,70.0,0.0,0.0,0.0,0.0,23172.0,440.0,16890.0,3,8,7.0,4,1.0 -1103,1682,2952.002419914057,36.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19610.35,0.0,15200.0,3,8,6.0,2,1.0 -1104,1683,2128.30969733451,50.0,111,0.0,85,1.0,1.0,5.0,2.6,0.0,14730.0,0.0,0.0,0.0,0.0,25014.0,1020.0,2760.0,3,6,5.0,5,1.0 -1105,1685,2418.5122200145447,35.0,112,7920.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,63966.5,0.0,69090.0,2,10,1.0,3,2.0 -1106,1687,2054.930273972114,55.0,111,830.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33091.45,0.0,28390.0,1,7,5.0,4,2.0 -1107,1688,1300.1055154826356,43.0,111,5910.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35609.65,0.0,27370.0,2,9,7.0,4,2.0 -1108,1689,2303.9115475440094,41.0,300,5540.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39158.05,0.0,11630.0,2,0,0.0,4,2.0 -1109,1690,3081.098779461222,24.0,300,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20337.0,0.0,20950.0,3,0,0.0,1,1.0 -1110,1691,1174.7293747566684,43.0,211,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34741.2,0.0,32020.0,3,3,4.0,4,2.0 -1111,1694,1792.7552532712984,33.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,70348.95,0.0,65370.0,2,9,0.0,4,2.0 -1112,1695,5799.103106760391,42.0,112,8160.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,77979.35,0.0,49070.0,1,9,2.0,4,2.0 -1113,1696,1700.5346688953769,71.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28200.0,0.0,0.0,26366.3,0.0,0.0,1,0,0.0,1,0.0 -1114,1697,3153.4007467869164,56.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,8510.0,0.0,0.0,25464.0,0.0,18010.0,1,8,7.0,3,2.0 -1115,1700,1636.380010123936,40.0,300,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36687.45,0.0,38270.0,3,0,0.0,4,2.0 -1116,1702,2936.2613789422708,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15330.0,0.0,0.0,15213.0,0.0,0.0,1,5,4.0,1,0.0 -1117,1703,1226.3653843887664,58.0,300,0.0,64,2.0,1.0,2.0,1.5,0.0,0.0,0.0,25590.0,0.0,0.0,27321.0,0.0,3000.0,1,0,0.0,3,2.0 -1118,1704,3461.1471256515233,24.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30237.8,460.0,25200.0,3,9,7.0,4,2.0 -1119,1705,1722.931953371982,64.0,111,9530.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37870.0,0.0,0.0,45850.45,0.0,0.0,1,7,6.0,3,0.0 -1120,1707,2405.7633368197075,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29720.0,0.0,0.0,28129.45,0.0,0.0,1,7,6.0,3,0.0 -1121,1709,1320.173439237799,38.0,120,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52224.45,0.0,52940.0,2,0,0.0,4,2.0 -1122,1710,3079.2461601966343,53.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33645.3,0.0,36620.0,3,10,8.0,1,1.0 -1123,1711,3949.9176020855048,57.0,111,0.0,43,1.0,0.0,2.0,1.5,0.0,0.0,0.0,33880.0,70.0,0.0,41604.65,0.0,0.0,1,4,4.0,3,1.0 -1124,1712,3142.4722483479322,56.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31810.0,0.0,0.0,79156.25,0.0,35210.0,1,9,7.0,3,1.0 -1125,1713,4058.4226405071813,23.0,120,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33855.75,0.0,35990.0,3,0,2.0,3,1.0 -1126,1715,2590.8498483215044,40.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28438.2,0.0,31300.0,2,7,5.0,1,1.0 -1127,1716,3095.0987099956865,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17240.0,0.0,0.0,17162.55,0.0,0.0,3,10,8.0,1,0.0 -1128,1719,1810.3608224827778,53.0,300,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,90.0,0.0,0.0,18006.95,0.0,18240.0,1,0,0.0,1,1.0 -1129,1720,3476.1699517171683,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,840.0,2360.0,0.0,0.0,6200.0,0.0,0.0,3,9,7.0,1,0.0 -1130,1721,2702.62795658873,53.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15202.85,0.0,15280.0,3,8,7.0,1,1.0 -1131,1724,1745.7057408994622,61.0,120,2640.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37010.0,0.0,0.0,39433.7,0.0,110.0,1,0,0.0,3,0.0 -1132,1726,946.3265188643239,49.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,291.0,0.0,63006.9,0.0,72860.0,1,8,2.0,4,2.0 -1133,1727,1123.4324211564272,60.0,111,1770.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24989.0,0.0,24820.0,5,4,4.0,3,2.0 -1134,1728,1547.4081498401404,57.0,111,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,19060.0,0.0,0.0,56998.4,0.0,38570.0,2,7,5.0,4,1.0 -1135,1729,3441.784034234084,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3135.0,0.0,0.0,3,8,6.0,1,0.0 -1136,1731,3469.580545254972,81.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9910.0,0.0,0.0,9524.6,0.0,0.0,1,8,6.0,1,0.0 -1137,1732,3270.19929237104,39.0,112,7330.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22539.3,0.0,15770.0,2,6,0.0,4,2.0 -1138,1733,1641.403608908494,48.0,221,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64132.5,0.0,41790.0,2,1,1.0,4,2.0 -1139,1734,4876.483200546682,76.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22000.0,0.0,0.0,21807.1,0.0,0.0,1,5,0.0,3,0.0 -1140,1735,3483.7855286338454,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14020.0,0.0,0.0,14228.0,0.0,0.0,3,9,7.0,1,0.0 -1141,1737,2395.2217220255284,43.0,112,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42913.15,0.0,42780.0,2,6,0.0,4,2.0 -1142,1738,2345.171781917026,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10530.0,0.0,0.0,11692.0,0.0,0.0,3,7,5.0,1,0.0 -1143,1742,2771.008839361378,78.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13700.0,0.0,0.0,17172.0,0.0,0.0,3,7,5.0,1,0.0 -1144,1743,3030.7477404102915,46.0,111,3810.0,85,0.0,0.0,1.0,1.0,0.0,810.0,0.0,880.0,0.0,0.0,11103.65,0.0,3320.0,3,10,8.0,1,0.0 -1145,1744,3421.11393148071,27.0,112,0.0,85,0.0,0.0,4.0,1.9,0.0,2370.0,0.0,0.0,0.0,0.0,16508.0,0.0,0.0,3,9,2.0,2,0.0 -1146,1745,3056.546217786225,40.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19861.05,0.0,20840.0,3,8,6.0,1,1.0 -1147,1746,1306.2833126642395,60.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21880.0,0.0,0.0,42973.8,0.0,21290.0,1,9,7.0,3,1.0 -1148,1747,3104.160987843383,25.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18089.0,0.0,18880.0,3,10,8.0,1,1.0 -1149,1748,1460.932657497521,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42740.0,0.0,0.0,39335.0,0.0,0.0,1,8,7.0,3,0.0 -1150,1749,2392.170724650996,43.0,112,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34359.4,0.0,41740.0,2,8,0.0,4,2.0 -1151,1753,1837.4563848258592,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47050.0,0.0,0.0,45407.45,0.0,0.0,1,8,7.0,3,0.0 -1152,1754,1141.3251626939868,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25980.0,0.0,0.0,25084.45,0.0,0.0,1,9,7.0,3,0.0 -1153,1755,1915.7575731069294,63.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28640.0,0.0,0.0,26472.3,0.0,0.0,1,10,8.0,3,0.0 -1154,1757,3319.5271267461694,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5870.0,0.0,0.0,5663.95,0.0,0.0,5,6,5.0,1,0.0 -1155,1758,3403.0759651864782,58.0,300,7580.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14362.65,0.0,5630.0,3,0,0.0,1,0.0 -1156,1760,2729.681731676156,75.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17200.0,0.0,0.0,15250.0,0.0,0.0,1,10,0.0,2,1.0 -1157,1761,1644.6809287543135,50.0,120,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49509.65,0.0,53310.0,1,0,0.0,3,2.0 -1158,1762,3821.8919821806267,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10980.0,0.0,0.0,11814.4,0.0,0.0,1,9,7.0,1,0.0 -1159,1763,1686.5056993607236,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44360.0,0.0,0.0,13299.7,0.0,0.0,1,9,1.0,3,0.0 -1160,1764,4938.344388545194,74.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29410.0,0.0,0.0,27933.35,0.0,0.0,1,6,4.0,1,0.0 -1161,1766,3188.4144873302002,60.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20181.3,0.0,22220.0,3,10,8.0,1,1.0 -1162,1767,2508.9169273572024,60.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9270.0,0.0,0.0,29602.5,0.0,26320.0,3,10,8.0,1,0.0 -1163,1769,1856.9383396767944,53.0,111,0.0,22,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,240.0,1,9,7.0,4,1.0 -1164,1770,1482.5899649289045,53.0,120,16330.0,75,1.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35553.15,0.0,22430.0,1,0,3.0,3,1.0 -1165,1773,2073.035133290282,81.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17710.0,0.0,0.0,18048.0,0.0,0.0,1,0,0.0,3,0.0 -1166,1774,2765.316378175649,41.0,120,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36526.0,0.0,37030.0,1,0,0.0,4,2.0 -1167,1775,1158.2607638218292,75.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24530.0,0.0,0.0,23895.45,0.0,0.0,1,0,1.0,3,0.0 -1168,1776,3844.819848224026,40.0,111,0.0,65,2.0,2.0,4.0,2.3,230.0,0.0,0.0,0.0,0.0,0.0,35575.5,0.0,30190.0,3,9,7.0,4,2.0 -1169,1777,2309.2962387373195,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13510.0,0.0,0.0,13355.1,0.0,0.0,1,7,1.0,1,0.0 -1170,1778,1880.5933972147175,45.0,300,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35954.1,0.0,35670.0,1,0,1.0,4,2.0 -1171,1779,1389.484249050625,41.0,300,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11870.0,0.0,0.0,29357.35,0.0,18090.0,3,0,0.0,2,1.0 -1172,1780,2482.866874670366,82.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30170.0,0.0,0.0,29617.65,0.0,0.0,1,3,3.0,3,0.0 -1173,1784,1957.9251068846331,42.0,112,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15290.0,0.0,0.0,39287.7,0.0,24670.0,1,10,0.0,2,1.0 -1174,1785,1556.664068798537,62.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18860.0,0.0,0.0,18642.85,0.0,0.0,3,1,2.0,1,0.0 -1175,1786,3329.983984928582,22.0,111,0.0,34,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38688.1,0.0,38510.0,3,8,7.0,1,1.0 -1176,1787,2033.5610090924706,44.0,111,8200.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9899.35,0.0,0.0,3,6,4.0,1,1.0 -1177,1788,2597.223783657903,48.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,53462.35,0.0,55090.0,1,7,0.0,4,2.0 -1178,1789,798.9582451163657,25.0,111,0.0,85,1.0,0.0,8.0,3.5,5070.0,9840.0,0.0,8250.0,0.0,0.0,40126.0,0.0,0.0,3,6,5.0,5,1.0 -1179,1790,2295.6567916125887,38.0,400,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,110716.0,0.0,124500.0,3,0,0.0,4,2.0 -1180,1791,3392.7262439921547,22.0,111,0.0,84,0.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2146.0,0.0,0.0,3,8,6.0,1,0.0 -1181,1792,2570.5471180620275,65.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24130.0,0.0,0.0,23888.65,0.0,0.0,3,9,2.0,1,0.0 -1182,1793,1592.2693936514563,79.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21880.0,849.0,0.0,17154.35,0.0,0.0,1,7,0.0,1,0.0 -1183,1794,2267.4637324127643,33.0,111,0.0,23,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,725.0,0.0,84818.15,0.0,57980.0,1,6,4.0,1,1.0 -1184,1796,2630.2997672847946,41.0,111,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2220.0,0.0,0.0,3,5,4.0,1,1.0 -1185,1798,2590.3724660945136,27.0,112,1430.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27429.5,0.0,27500.0,3,9,1.0,3,2.0 -1186,1800,2643.44236733742,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16130.0,0.0,0.0,15933.05,0.0,0.0,3,9,7.0,1,0.0 -1187,1801,2811.5992324314025,31.0,400,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16329.55,0.0,16360.0,5,0,0.0,1,1.0 -1188,1802,2053.8465853407442,43.0,300,0.0,62,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,41835.7,0.0,24640.0,2,0,0.0,4,2.0 -1189,1803,1420.8840746280473,34.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57386.15,0.0,54770.0,2,9,7.0,4,2.0 -1190,1805,2064.5347959342234,59.0,400,0.0,71,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12100.0,0.0,0.0,34775.5,0.0,12790.0,1,0,0.0,3,1.0 -1191,1807,2467.6878320961746,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24540.0,84.0,0.0,22587.15,0.0,0.0,1,10,8.0,1,0.0 -1192,1809,1706.7237035857634,65.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7490.0,0.0,0.0,7480.75,0.0,0.0,5,0,1.0,1,0.0 -1193,1810,4583.52524447666,26.0,111,13370.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26855.05,0.0,14310.0,3,10,8.0,1,1.0 -1194,1813,2498.6971794468373,28.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37180.2,0.0,37370.0,2,7,0.0,3,2.0 -1195,1814,1713.0621904947286,57.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33321.85,0.0,35910.0,3,8,6.0,3,2.0 -1196,1815,4176.317632593558,26.0,112,5200.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23948.9,0.0,15500.0,3,9,0.0,3,2.0 -1197,1818,1022.1546153302068,43.0,111,3500.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,33730.9,0.0,21720.0,3,7,6.0,4,2.0 -1198,1819,2063.1447257281925,54.0,112,0.0,38,3,1.0,5.0,3.0,0.0,9750.0,0.0,0.0,0.0,0.0,58400.35,0.0,56590.0,2,8,0.0,4,3.0 -1199,1820,1211.014179651966,54.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,53.0,0.0,52220.35,0.0,57690.0,1,8,6.0,3,2.0 -1200,1821,3546.4380035012146,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11520.0,0.0,0.0,11444.6,0.0,0.0,1,9,7.0,1,0.0 -1201,1822,2995.2324223544865,54.0,111,10080.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,72671.15,0.0,66780.0,2,8,7.0,4,2.0 -1202,1823,3129.480062148666,64.0,300,4370.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16340.0,0.0,0.0,20082.1,0.0,0.0,1,0,0.0,3,0.0 -1203,1824,2601.586029712402,51.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26053.25,0.0,25460.0,2,9,3.0,1,1.0 -1204,1826,2191.426075089373,59.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29940.0,0.0,0.0,28416.1,0.0,0.0,1,6,0.0,3,0.0 -1205,1827,2389.6892868662044,56.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,26.0,0.0,139232.85,0.0,161800.0,1,10,8.0,3,2.0 -1206,1828,2547.144744873139,52.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,12600.55,1530.0,8040.0,3,6,0.0,1,1.0 -1207,1829,1772.880013288755,42.0,112,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43840.6,0.0,39200.0,2,9,0.0,4,2.0 -1208,1830,1573.2124493297938,35.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35141.0,0.0,35370.0,2,6,5.0,4,2.0 -1209,1832,1815.1057822039286,42.0,120,8280.0,63,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,40563.3,0.0,22820.0,2,0,0.0,4,2.0 -1210,1833,2969.719159642675,41.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32975.75,0.0,29870.0,3,10,8.0,4,2.0 -1211,1835,1437.6225910079215,65.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14740.0,27.0,0.0,20688.0,0.0,7190.0,2,8,7.0,3,1.0 -1212,1836,3534.5706897861264,48.0,111,0.0,33,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,86449.1,0.0,80060.0,3,10,8.0,4,2.0 -1213,1837,3742.110292751987,58.0,111,0.0,75,1.0,1.0,4.0,2.5,0.0,0.0,0.0,22180.0,0.0,0.0,37512.95,0.0,10830.0,3,8,6.0,4,1.0 -1214,1838,1795.8348381055202,82.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13840.0,0.0,0.0,13900.0,0.0,0.0,5,9,7.0,1,0.0 -1215,1840,1342.214275717479,57.0,400,0.0,13,2.0,2.0,4.0,2.5,0.0,0.0,0.0,17850.0,0.0,0.0,31777.1,0.0,0.0,1,0,0.0,5,2.0 -1216,1842,2185.4582443912504,70.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20880.0,0.0,0.0,19014.1,0.0,0.0,1,7,0.0,3,0.0 -1217,1843,2335.015822814846,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31970.0,0.0,0.0,29718.3,0.0,0.0,1,8,6.0,3,0.0 -1218,1844,3132.9871595913546,37.0,111,3460.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11011.8,0.0,7590.0,3,4,4.0,3,2.0 -1219,1845,1295.7579283487748,62.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18770.0,0.0,0.0,17686.3,0.0,0.0,1,0,1.0,1,0.0 -1220,1847,1980.017963206541,41.0,112,90.0,21,1.0,1.0,5.0,2.6,0.0,3750.0,0.0,0.0,0.0,0.0,23960.0,1770.0,4000.0,3,6,0.0,4,1.0 -1221,1848,1901.443521868711,41.0,111,0.0,33,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,68065.5,0.0,55990.0,3,8,7.0,4,1.0 -1222,1850,2807.797047414328,67.0,111,0.0,75,0.0,0.0,4.0,2.5,0.0,0.0,0.0,19970.0,0.0,0.0,20968.6,0.0,0.0,3,8,7.0,4,0.0 -1223,1851,3748.993415480455,43.0,111,0.0,54,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,22273.75,0.0,16600.0,2,10,8.0,4,1.0 -1224,1854,3262.934485488682,43.0,111,3900.0,52,1.0,0.0,4.0,2.3,0.0,240.0,0.0,0.0,0.0,0.0,16144.0,20.0,0.0,3,9,7.0,2,1.0 -1225,1855,3573.9651785215615,82.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11350.0,0.0,0.0,11611.1,0.0,0.0,1,1,2.0,3,0.0 -1226,1856,3112.336814887061,44.0,400,0.0,56,1.0,0.0,1.0,1.0,0.0,3760.0,0.0,0.0,0.0,0.0,9044.3,180.0,2190.0,3,0,1.0,1,1.0 -1227,1857,2970.933774159511,52.0,112,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28973.1,0.0,23480.0,2,8,0.0,1,1.0 -1228,1860,5091.603836238727,26.0,221,0.0,85,0.0,0.0,1.0,1.0,8380.0,0.0,0.0,0.0,0.0,0.0,10900.0,0.0,0.0,3,1,2.0,1,0.0 -1229,1861,1370.18660889268,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,120600.0,0.0,0.0,95544.45,0.0,0.0,1,9,7.0,3,0.0 -1230,1862,2377.8484950301563,46.0,111,8580.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39390.65,0.0,29000.0,3,6,4.0,4,2.0 -1231,1863,1889.9795826341067,61.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12420.0,0.0,0.0,12746.45,0.0,920.0,3,7,5.0,1,0.0 -1232,1868,2222.4638371795754,55.0,111,3790.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,8200.0,0.0,0.0,30459.2,0.0,12230.0,3,9,7.0,3,2.0 -1233,1869,3575.0594485061383,83.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20670.0,0.0,0.0,18583.75,0.0,0.0,3,10,8.0,1,0.0 -1234,1870,1699.5955038023478,79.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16820.0,0.0,0.0,34162.3,0.0,6750.0,1,0,0.0,3,0.0 -1235,1872,2394.725197272252,51.0,221,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22310.0,0.0,0.0,35716.2,0.0,13410.0,1,1,2.0,3,1.0 -1236,1873,2304.381340252547,54.0,112,0.0,69,2.0,2.0,3.0,2.0,0.0,4560.0,600.0,8200.0,0.0,0.0,23242.25,3310.0,6660.0,1,7,0.0,5,2.0 -1237,1874,2027.3410390169547,55.0,112,0.0,45,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26291.55,0.0,27300.0,3,7,0.0,3,2.0 -1238,1875,2862.857869012877,75.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19430.0,0.0,0.0,19316.2,0.0,0.0,1,10,8.0,3,0.0 -1239,1876,2766.6705419007503,37.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44551.0,0.0,45720.0,1,8,6.0,4,2.0 -1240,1877,2132.71144202283,57.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,29339.75,0.0,29130.0,1,8,7.0,1,1.0 -1241,1879,1442.1370494417372,59.0,111,1570.0,46,2.0,2.0,3.0,2.0,5750.0,0.0,0.0,0.0,0.0,0.0,49831.2,0.0,46430.0,1,10,8.0,4,2.0 -1242,1880,3634.644272733626,21.0,111,1650.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19207.95,0.0,15980.0,3,8,6.0,3,2.0 -1243,1882,2990.0863580775576,67.0,111,0.0,77,1.0,0.0,4.0,2.5,0.0,3910.0,4380.0,7280.0,0.0,0.0,20474.0,680.0,0.0,3,10,8.0,5,1.0 -1244,1883,3383.1561122068415,79.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12300.0,0.0,0.0,13232.0,0.0,0.0,5,0,0.0,1,0.0 -1245,1884,3688.521657604184,43.0,111,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31502.0,0.0,32920.0,3,10,8.0,3,2.0 -1246,1885,1888.0852381420648,35.0,111,5160.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22577.0,0.0,14490.0,3,8,7.0,3,2.0 -1247,1888,2818.513083508687,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22710.0,0.0,0.0,32280.45,0.0,0.0,1,6,5.0,1,0.0 -1248,1891,2332.0013833882354,49.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45877.5,0.0,44410.0,2,8,7.0,4,2.0 -1249,1892,3319.1454399728686,44.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,12060.0,5,10,8.0,1,1.0 -1250,1893,3499.518242032156,50.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,54.0,0.0,61757.85,0.0,21490.0,1,9,7.0,3,2.0 -1251,1894,1597.9350416807208,45.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,960.0,0.0,0.0,0.0,0.0,16827.45,3220.0,7090.0,3,7,6.0,2,1.0 -1252,1896,1223.1240905512377,58.0,211,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49066.9,0.0,0.0,1,2,3.0,3,2.0 -1253,1899,4447.466109800105,27.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11359.0,0.0,11350.0,3,10,8.0,1,1.0 -1254,1900,2459.558228809661,88.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16780.0,0.0,0.0,16028.2,0.0,0.0,1,0,0.0,1,0.0 -1255,1901,2117.9862497907534,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31780.0,0.0,0.0,30536.75,0.0,0.0,3,6,4.0,1,0.0 -1256,1902,2306.9361871324704,45.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,7.0,0.0,152218.7,0.0,165810.0,1,10,8.0,4,2.0 -1257,1905,2576.3294506765155,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18500.0,145.0,0.0,18185.7,0.0,0.0,3,6,4.0,1,0.0 -1258,1909,3748.0020363583194,30.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20967.95,0.0,22370.0,3,0,0.0,1,1.0 -1259,1911,2214.6960053072435,42.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42528.2,0.0,42880.0,2,8,7.0,4,2.0 -1260,1912,1298.0478190988058,35.0,111,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,57241.8,0.0,56560.0,2,8,7.0,4,2.0 -1261,1914,1412.2599794617604,58.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19275.8,0.0,20680.0,1,7,6.0,1,1.0 -1262,1915,1511.9702299685894,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,72060.0,0.0,0.0,63369.45,0.0,0.0,1,6,5.0,3,0.0 -1263,1917,1482.7036900167482,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60100.0,38.0,0.0,53817.25,0.0,330.0,1,9,7.0,3,0.0 -1264,1918,2661.8717528234974,50.0,211,13420.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18388.4,0.0,6090.0,3,2,3.0,1,1.0 -1265,1920,2337.0816114453296,84.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,55020.0,0.0,0.0,44626.2,0.0,0.0,1,7,6.0,1,0.0 -1266,1924,3361.2098035069707,25.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22499.5,0.0,23780.0,3,9,7.0,1,1.0 -1267,1925,1046.003786868399,48.0,112,0.0,38,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,71720.95,0.0,43190.0,1,7,1.0,4,2.0 -1268,1926,2484.3900239440472,63.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13950.0,0.0,0.0,13481.25,0.0,0.0,5,0,0.0,1,0.0 -1269,1927,5800.630383665267,64.0,111,0.0,22,1.0,0.0,3.0,1.8,0.0,0.0,0.0,16070.0,0.0,0.0,11261.95,0.0,190.0,1,9,7.0,4,1.0 -1270,1929,4203.516179794963,61.0,111,2480.0,52,3,3.0,5.0,3.0,0.0,0.0,0.0,10010.0,0.0,0.0,85153.35,0.0,83230.0,1,10,8.0,5,3.0 -1271,1931,2243.1064722878036,86.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9550.0,0.0,0.0,9937.0,0.0,0.0,5,9,0.0,1,0.0 -1272,1932,2913.0544839761415,24.0,112,0.0,53,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32888.0,0.0,27880.0,3,7,1.0,3,2.0 -1273,1933,1501.6759153699043,73.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23400.0,0.0,0.0,23287.85,0.0,0.0,1,0,0.0,3,0.0 -1274,1935,4268.515484307398,79.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40050.0,0.0,0.0,37316.2,0.0,0.0,1,1,2.0,3,0.0 -1275,1938,1813.1855138210651,57.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33167.9,0.0,31570.0,2,7,1.0,4,2.0 -1276,1940,1651.4277027367818,42.0,112,0.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30010.7,0.0,28750.0,2,6,0.0,2,1.0 -1277,1941,2613.0455993699843,49.0,300,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40156.35,0.0,44440.0,1,0,0.0,1,1.0 -1278,1943,1523.1080311876758,66.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9960.0,0.0,0.0,9147.5,0.0,0.0,5,6,0.0,1,0.0 -1279,1944,2514.9358486059123,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,78540.0,0.0,0.0,65485.65,0.0,0.0,1,9,7.0,3,0.0 -1280,1945,2038.4528912351848,53.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,42.0,0.0,35215.15,0.0,36210.0,1,9,3.0,3,2.0 -1281,1946,1396.3644147531732,30.0,120,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,4.0,0.0,58994.9,0.0,50980.0,2,0,0.0,4,2.0 -1282,1947,4041.5501456789,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12960.0,0.0,0.0,13034.0,0.0,0.0,5,8,7.0,1,0.0 -1283,1948,2183.3973947191403,32.0,112,8200.0,42,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,53056.2,0.0,23530.0,2,6,0.0,4,2.0 -1284,1949,3315.959928075298,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14200.0,0.0,0.0,13740.8,0.0,0.0,1,7,5.0,1,0.0 -1285,1951,1677.0151725551343,70.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29920.0,0.0,0.0,36448.9,0.0,0.0,1,6,4.0,3,0.0 -1286,1952,1407.4542794390497,48.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,87.0,0.0,62717.1,0.0,64590.0,2,6,5.0,4,2.0 -1287,1953,3438.2204272905174,66.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15810.0,0.0,0.0,18096.0,0.0,0.0,3,0,0.0,1,0.0 -1288,1954,2981.4401559910916,61.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9140.0,632.0,0.0,22722.55,0.0,0.0,1,10,8.0,1,0.0 -1289,1955,1562.070328832235,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15190.0,0.0,0.0,13785.05,0.0,0.0,1,4,4.0,1,0.0 -1290,1956,1631.0900095946777,48.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15409.35,0.0,16140.0,1,7,0.0,1,1.0 -1291,1957,1376.9451709370053,46.0,111,0.0,64,2.0,1.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,31855.05,0.0,17490.0,3,10,8.0,4,2.0 -1292,1958,838.9478326382956,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41840.0,9.0,0.0,40366.3,0.0,0.0,1,7,5.0,3,0.0 -1293,1961,2333.767248980385,47.0,112,0.0,43,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,124.0,0.0,55149.1,0.0,54270.0,1,5,0.0,4,2.0 -1294,1962,1539.7693496644854,53.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62436.75,0.0,56200.0,2,9,7.0,3,2.0 -1295,1963,1711.7091980582418,78.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42390.0,0.0,0.0,39462.85,0.0,0.0,1,8,0.0,3,0.0 -1296,1965,3825.7805961845966,80.0,120,0.0,71,0.0,0.0,2.0,1.5,1690.0,0.0,0.0,17940.0,0.0,0.0,20597.0,0.0,0.0,5,0,0.0,3,0.0 -1297,1966,2763.4249729998555,25.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,220.0,0.0,0.0,0.0,0.0,39473.35,2810.0,38470.0,3,9,7.0,3,2.0 -1298,1967,1474.0324055547333,60.0,221,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,7210.0,0.0,0.0,47817.9,0.0,44940.0,2,1,2.0,3,1.0 -1299,1968,2442.6601893408797,36.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,11.0,0.0,14894.75,0.0,13620.0,1,6,5.0,1,1.0 -1300,1969,2042.6844755730424,83.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10950.0,0.0,0.0,13822.1,0.0,0.0,1,8,0.0,1,0.0 -1301,1970,2078.779141374056,72.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15760.0,0.0,0.0,16289.0,0.0,0.0,5,0,0.0,1,0.0 -1302,1971,1702.0883422565312,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50080.0,0.0,0.0,44869.2,0.0,0.0,1,6,0.0,3,0.0 -1303,1973,1218.198203195684,59.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31331.4,0.0,33090.0,1,6,0.0,3,2.0 -1304,1976,2883.4030132772364,69.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10580.0,0.0,0.0,11996.0,0.0,0.0,3,10,4.0,1,0.0 -1305,1977,3943.1616321212814,33.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,74508.25,0.0,85200.0,2,9,7.0,3,2.0 -1306,1980,3073.252259963689,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19460.0,0.0,0.0,18983.45,0.0,0.0,3,10,8.0,1,0.0 -1307,1981,2445.563432032566,48.0,111,0.0,56,2.0,1.0,4.0,2.1,0.0,5840.0,0.0,0.0,0.0,0.0,36443.0,110.0,24760.0,3,8,7.0,2,2.0 -1308,1983,2566.2363116691304,52.0,111,4730.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41138.2,0.0,38970.0,2,10,8.0,4,1.0 -1309,1984,1203.4354965269504,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33560.0,0.0,0.0,30004.0,0.0,0.0,1,8,0.0,3,0.0 -1310,1985,2898.17901040222,27.0,111,14390.0,35,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31684.0,0.0,18200.0,3,7,5.0,3,2.0 -1311,1987,3145.165219357374,62.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,11230.0,0.0,0.0,13846.0,0.0,0.0,3,10,8.0,4,0.0 -1312,1989,3000.940124795162,46.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11140.0,0.0,0.0,45771.05,0.0,35350.0,3,10,8.0,2,1.0 -1313,1990,6663.338709148836,66.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14920.0,91.0,0.0,14591.45,0.0,0.0,1,0,1.0,1,0.0 -1314,1991,1510.825289593415,47.0,111,0.0,56,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,28327.95,0.0,27790.0,3,9,7.0,5,2.0 -1315,1992,1925.0969944750232,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26710.0,317.0,0.0,26463.85,0.0,0.0,3,8,7.0,3,0.0 -1316,1993,2978.4534928140965,55.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,150.0,0.0,240.0,0.0,0.0,16134.45,1680.0,14290.0,3,9,7.0,1,1.0 -1317,1995,2232.3082087831835,28.0,112,1750.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25590.35,0.0,23000.0,2,7,0.0,3,2.0 -1318,1996,2567.619354953218,67.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22420.0,0.0,0.0,24378.1,0.0,0.0,1,10,4.0,3,0.0 -1319,1997,1663.2026428190782,34.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,81674.25,0.0,32480.0,2,9,1.0,4,2.0 -1320,1998,1440.926334194772,71.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35810.0,0.0,0.0,41602.0,0.0,0.0,1,0,0.0,3,0.0 -1321,1999,1634.4614167049026,57.0,112,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,5,8,0.0,3,1.0 -1322,2001,6901.72750457334,34.0,221,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,204.0,0.0,30711.5,0.0,34340.0,4,1,1.0,1,1.0 -1323,2002,791.475034861362,63.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53170.0,0.0,0.0,78890.95,0.0,0.0,1,10,0.0,3,0.0 -1324,2003,1834.4144089118427,65.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,42300.0,0.0,0.0,41832.25,0.0,0.0,3,7,6.0,3,1.0 -1325,2004,2401.073368598065,54.0,111,8290.0,68,1.0,0.0,2.0,1.3,0.0,570.0,0.0,3400.0,0.0,0.0,13539.65,0.0,590.0,3,5,4.0,2,1.0 -1326,2006,2763.213162922315,56.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,33935.6,0.0,34000.0,2,10,8.0,2,1.0 -1327,2008,1379.8995082009496,36.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50792.75,0.0,50000.0,2,8,1.0,4,2.0 -1328,2015,3603.2088050407006,78.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,50170.0,0.0,0.0,94976.2,0.0,0.0,1,8,7.0,1,0.0 -1329,2016,2264.6654833716316,52.0,300,0.0,55,1.0,1.0,3.0,2.0,0.0,0.0,0.0,22620.0,0.0,0.0,42051.85,0.0,19220.0,1,0,0.0,5,1.0 -1330,2019,3122.059164126389,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17760.0,0.0,0.0,16403.85,0.0,0.0,1,8,7.0,1,0.0 -1331,2020,1787.430834643743,46.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55268.35,0.0,55500.0,2,10,4.0,4,2.0 -1332,2021,2231.159505155138,47.0,112,0.0,42,3,3.0,5.0,2.8,0.0,0.0,0.0,8450.0,0.0,0.0,35276.4,0.0,23090.0,1,7,0.0,4,3.0 -1333,2022,3052.0573343214746,70.0,300,0.0,11,1.0,0.0,2.0,1.5,0.0,0.0,0.0,31710.0,0.0,0.0,50516.4,0.0,0.0,5,0,0.0,3,1.0 -1334,2023,1784.4527124706358,50.0,112,0.0,62,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22879.55,2830.0,16960.0,3,8,1.0,4,1.0 -1335,2025,1508.8689436035922,78.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17880.0,0.0,0.0,25121.6,0.0,0.0,1,3,3.0,3,0.0 -1336,2027,2314.9123478053175,49.0,111,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,87364.1,0.0,94660.0,2,6,4.0,4,2.0 -1337,2030,1219.1313536999733,65.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23080.0,0.0,0.0,22077.65,0.0,0.0,1,0,0.0,3,0.0 -1338,2031,2910.6810525370556,38.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15915.0,0.0,16510.0,3,9,7.0,1,1.0 -1339,2033,1569.7435752285385,61.0,120,0.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,19900.0,0.0,0.0,28259.6,0.0,9420.0,2,0,1.0,1,1.0 -1340,2036,1924.2503904486305,62.0,111,5190.0,42,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51870.55,0.0,49220.0,2,9,7.0,4,2.0 -1341,2039,2120.7770849394246,71.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13090.0,0.0,0.0,14878.0,0.0,0.0,3,9,3.0,1,0.0 -1342,2040,2177.5103913848857,52.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45084.95,0.0,45780.0,2,8,7.0,4,2.0 -1343,2041,4155.208492757215,57.0,112,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9550.0,0.0,0.0,28984.95,0.0,19000.0,1,5,0.0,3,1.0 -1344,2044,1377.529537101352,55.0,212,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17620.0,7.0,0.0,48384.35,0.0,32380.0,1,2,0.0,3,1.0 -1345,2046,1886.5808172132975,42.0,211,3460.0,68,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21741.85,0.0,8460.0,3,3,3.0,2,1.0 -1346,2047,3881.280221706122,36.0,120,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37076.75,0.0,33270.0,3,0,0.0,4,2.0 -1347,2050,5154.730301909687,65.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4390.0,0.0,0.0,7090.0,0.0,0.0,3,6,5.0,1,0.0 -1348,2051,3183.1960141931527,89.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18760.0,0.0,0.0,19040.0,0.0,0.0,5,7,0.0,3,0.0 -1349,2052,3386.4074615898953,60.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9280.0,0.0,0.0,32126.1,0.0,23210.0,2,8,7.0,1,1.0 -1350,2053,1967.4412910331587,53.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28500.0,0.0,0.0,63381.3,0.0,41040.0,1,10,0.0,3,1.0 -1351,2055,2634.3882768287426,83.0,111,4090.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,47320.0,0.0,0.0,47306.95,0.0,0.0,1,8,6.0,4,0.0 -1352,2056,1849.8247806303782,30.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38779.75,0.0,37600.0,2,9,7.0,4,2.0 -1353,2057,3408.156706292697,39.0,111,18610.0,38,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17932.1,0.0,790.0,2,8,6.0,1,1.0 -1354,2058,1704.040242518112,32.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,65219.7,0.0,63210.0,2,9,2.0,4,2.0 -1355,2059,2004.1753254907571,48.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52277.85,0.0,59340.0,2,8,7.0,3,2.0 -1356,2060,2496.9542485681222,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43100.0,0.0,0.0,39374.9,0.0,0.0,1,7,5.0,3,0.0 -1357,2061,2180.318464664063,80.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22430.0,0.0,0.0,25483.6,0.0,0.0,1,8,7.0,3,0.0 -1358,2062,3390.8014083273024,76.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,71520.0,92.0,0.0,57701.75,0.0,0.0,3,10,8.0,1,0.0 -1359,2064,2661.9340547524826,45.0,111,100.0,63,3,2.0,6.0,3.3,0.0,4330.0,0.0,0.0,0.0,0.0,39075.4,1780.0,24720.0,3,10,8.0,4,3.0 -1360,2065,1790.5946903224565,37.0,300,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43339.5,0.0,37780.0,2,0,0.0,4,2.0 -1361,2066,2708.5781886325485,31.0,111,3910.0,62,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36644.2,0.0,34270.0,3,7,5.0,4,2.0 -1362,2067,1796.1149424744222,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17520.0,0.0,0.0,17210.2,0.0,0.0,1,7,5.0,1,0.0 -1363,2068,3749.524879679919,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21010.0,0.0,0.0,20558.35,0.0,420.0,1,8,0.0,3,0.0 -1364,2070,2300.113979972437,61.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21050.0,0.0,0.0,22709.45,0.0,2390.0,1,7,2.0,3,1.0 -1365,2073,3227.699543879433,57.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,59.0,0.0,24507.7,0.0,24360.0,3,8,7.0,3,2.0 -1366,2074,2407.90105081007,86.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19790.0,0.0,0.0,22999.5,0.0,0.0,1,0,0.0,3,0.0 -1367,2075,2980.3497816108857,34.0,112,8160.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47651.8,0.0,38360.0,2,10,0.0,4,2.0 -1368,2076,1446.2758728640958,38.0,111,0.0,37,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,14265.0,0.0,12030.0,3,9,7.0,2,1.0 -1369,2077,718.7936965152753,81.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30930.0,0.0,0.0,44326.95,0.0,0.0,1,10,0.0,3,0.0 -1370,2078,1532.6701880615497,48.0,111,0.0,38,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,298.0,0.0,95773.7,0.0,102690.0,1,10,8.0,4,3.0 -1371,2079,2010.8842010201702,42.0,300,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,4780.0,0.0,0.0,37169.3,0.0,31070.0,2,0,0.0,4,2.0 -1372,2080,2337.311737176189,30.0,111,0.0,54,1.0,1.0,1.0,1.0,1070.0,0.0,0.0,0.0,0.0,0.0,15337.5,0.0,13510.0,3,8,6.0,1,1.0 -1373,2081,2027.755237440794,43.0,112,0.0,65,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,49400.6,0.0,30580.0,3,9,0.0,4,2.0 -1374,2082,2795.8725245855608,62.0,111,1490.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20080.0,0.0,0.0,20022.4,0.0,0.0,3,9,7.0,1,0.0 -1375,2083,2333.086372206143,38.0,112,2460.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,3270.0,0.0,0.0,34308.75,0.0,27730.0,3,8,0.0,4,2.0 -1376,2085,6267.394745231037,44.0,112,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,4390.0,0.0,0.0,54522.25,0.0,51220.0,1,8,0.0,4,2.0 -1377,2086,4435.347368821452,27.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21059.75,0.0,21280.0,3,10,8.0,1,1.0 -1378,2087,3655.028669159827,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5802.55,0.0,0.0,3,8,7.0,1,0.0 -1379,2089,1477.1606724403766,33.0,112,2710.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33738.9,0.0,31170.0,2,6,1.0,4,1.0 -1380,2090,2752.962325657016,68.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,47570.0,0.0,0.0,39703.5,0.0,0.0,1,8,0.0,1,0.0 -1381,2091,891.8202781660534,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27720.0,0.0,0.0,26732.7,0.0,0.0,1,6,4.0,3,0.0 -1382,2093,6156.016559862211,43.0,221,5600.0,85,1.0,0.0,2.0,1.5,0.0,650.0,0.0,0.0,0.0,0.0,13067.3,0.0,1900.0,3,1,3.0,2,1.0 -1383,2094,1440.0265661613607,80.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19520.0,0.0,0.0,19262.5,0.0,0.0,2,7,1.0,3,0.0 -1384,2095,3419.872582096836,56.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18624.1,0.0,19550.0,1,9,7.0,1,1.0 -1385,2098,1367.622762272923,51.0,300,0.0,52,3,3.0,4.0,2.5,10900.0,0.0,0.0,0.0,0.0,0.0,55573.6,0.0,44530.0,3,0,0.0,5,3.0 -1386,2099,2620.0837715623243,27.0,111,5280.0,46,1.0,0.0,1.0,1.0,0.0,1210.0,0.0,0.0,0.0,0.0,8182.0,330.0,0.0,3,7,5.0,1,1.0 -1387,2100,1861.2168736520568,45.0,111,0.0,38,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,83174.35,0.0,84510.0,2,10,8.0,4,1.0 -1388,2102,1964.0645911659292,39.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29961.95,0.0,32340.0,2,6,0.0,1,1.0 -1389,2103,1342.9514581153292,56.0,112,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,45002.65,0.0,55520.0,2,10,1.0,1,1.0 -1390,2104,2839.647971951228,67.0,111,0.0,47,1.0,0.0,2.0,1.5,0.0,0.0,0.0,62240.0,21.0,0.0,58658.5,0.0,0.0,1,9,7.0,3,1.0 -1391,2105,3862.9712540192095,60.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,2300.0,5940.0,4070.0,0.0,0.0,14922.3,0.0,0.0,3,9,7.0,1,0.0 -1392,2109,3268.222751524946,60.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31380.0,201.0,0.0,59164.8,0.0,24180.0,1,10,8.0,3,1.0 -1393,2111,3416.257386381267,77.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,80.0,14630.0,0.0,0.0,14633.4,0.0,0.0,1,0,2.0,3,0.0 -1394,2112,4154.8593197969085,49.0,120,190.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,41.0,0.0,45147.45,0.0,43430.0,3,0,2.0,3,2.0 -1395,2113,2111.281871757608,34.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40149.5,0.0,39440.0,2,7,6.0,4,2.0 -1396,2114,2075.5546037635477,33.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18442.9,0.0,19170.0,2,6,5.0,1,1.0 -1397,2116,1374.7929713071355,58.0,300,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,12.0,0.0,155219.15,0.0,125580.0,1,0,0.0,3,2.0 -1398,2117,1188.9508742053688,38.0,300,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29220.85,0.0,23080.0,1,0,0.0,4,2.0 -1399,2119,1453.420183317483,54.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1920.0,0.0,0.0,17514.6,0.0,15970.0,3,9,7.0,1,1.0 -1400,2120,3772.8745093685084,47.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8253.0,0.0,0.0,3,9,7.0,1,1.0 -1401,2122,1931.2658319091017,35.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,5.0,0.0,43189.25,0.0,42180.0,2,8,2.0,4,2.0 -1402,2123,3535.1444771211854,22.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14684.05,0.0,15520.0,3,9,7.0,1,1.0 -1403,2124,2732.086022799751,40.0,300,0.0,81,1.0,0.0,3.0,1.6,0.0,4770.0,0.0,0.0,0.0,0.0,15625.0,0.0,0.0,3,0,0.0,2,1.0 -1404,2125,2171.221124827406,55.0,111,5530.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28154.6,0.0,23330.0,1,8,7.0,3,1.0 -1405,2126,2099.9489353715667,81.0,222,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19360.0,0.0,0.0,20466.6,0.0,0.0,1,1,0.0,1,0.0 -1406,2127,2676.791196523609,30.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,4.0,0.0,52843.0,0.0,51170.0,3,10,8.0,4,2.0 -1407,2128,4024.6514442709645,41.0,221,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,3490.0,0.0,0.0,52026.55,0.0,51500.0,2,1,1.0,4,2.0 -1408,2129,2880.9663553459022,85.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,9690.0,0.0,0.0,7940.45,0.0,0.0,1,8,7.0,3,0.0 -1409,2131,2257.692990377048,70.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34700.0,0.0,0.0,34182.0,0.0,0.0,1,0,0.0,3,0.0 -1410,2132,2566.051285764478,63.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36030.0,69.0,0.0,35183.85,0.0,0.0,1,0,1.0,3,0.0 -1411,2133,4168.82379239628,47.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20103.15,0.0,18850.0,3,8,6.0,2,1.0 -1412,2134,5950.286001672486,47.0,111,5100.0,64,1.0,0.0,1.0,1.0,6590.0,0.0,0.0,0.0,0.0,0.0,14780.0,0.0,210.0,3,6,5.0,1,1.0 -1413,2135,2697.4637649250926,74.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50950.0,0.0,0.0,45782.3,0.0,0.0,1,1,2.0,3,0.0 -1414,2137,1690.1786032961857,48.0,221,2780.0,52,1.0,0.0,1.0,1.0,0.0,170.0,0.0,0.0,0.0,0.0,9740.4,1280.0,3670.0,4,1,2.0,1,1.0 -1415,2138,3156.3828860899316,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23670.0,0.0,0.0,22236.35,0.0,0.0,3,10,8.0,1,0.0 -1416,2140,2622.2124389484025,84.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11790.0,0.0,0.0,27848.5,0.0,0.0,1,6,0.0,1,0.0 -1417,2141,1501.9807676368507,48.0,111,0.0,54,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,79248.35,0.0,85310.0,1,8,7.0,4,3.0 -1418,2142,2958.693848736322,55.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23181.75,0.0,24780.0,3,10,8.0,1,1.0 -1419,2143,2201.2914005639614,63.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25620.0,0.0,0.0,24332.8,0.0,0.0,1,0,0.0,3,0.0 -1420,2144,3966.623143313943,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33030.0,253.0,0.0,29214.85,0.0,0.0,2,10,8.0,1,0.0 -1421,2146,4489.879639801183,83.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29810.0,0.0,0.0,28950.95,0.0,0.0,3,10,8.0,1,0.0 -1422,2148,2116.8990118495976,60.0,111,5100.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15720.0,0.0,0.0,25579.05,0.0,0.0,2,9,7.0,1,0.0 -1423,2149,1269.1576427226823,70.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46930.0,0.0,0.0,44006.85,0.0,0.0,3,4,4.0,3,0.0 -1424,2150,1915.040950808239,58.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,12199.25,1960.0,9280.0,3,0,0.0,1,1.0 -1425,2151,3235.0515717231924,60.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31150.0,39.0,0.0,57520.7,0.0,29260.0,1,9,7.0,3,1.0 -1426,2153,3834.801479569259,43.0,111,3300.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13085.65,0.0,11320.0,3,9,7.0,1,1.0 -1427,2154,2649.9830933039702,33.0,111,0.0,67,1.0,1.0,5.0,2.4,0.0,2100.0,0.0,0.0,0.0,0.0,29629.3,0.0,15520.0,3,7,5.0,4,1.0 -1428,2159,2077.9771194295395,60.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31680.0,0.0,0.0,52600.45,0.0,26150.0,1,8,7.0,3,1.0 -1429,2160,1953.4197248443954,50.0,221,0.0,47,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,6.0,0.0,58583.55,0.0,62960.0,2,1,1.0,4,3.0 -1430,2161,2854.2387426156815,78.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17710.0,0.0,0.0,17269.15,0.0,0.0,1,0,0.0,3,0.0 -1431,2163,3158.8430567039923,40.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,2630.0,0.0,0.0,0.0,0.0,15868.0,0.0,10090.0,3,8,6.0,1,1.0 -1432,2165,4207.818737898315,56.0,111,0.0,74,0.0,0.0,1.0,1.0,9640.0,0.0,0.0,0.0,22.0,0.0,9529.45,0.0,0.0,1,4,4.0,1,0.0 -1433,2166,2534.665729550742,49.0,111,0.0,67,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8263.0,0.0,0.0,3,7,6.0,1,1.0 -1434,2167,2346.531451861893,42.0,221,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,25355.3,0.0,24150.0,1,1,3.0,4,2.0 -1435,2168,7470.848367400091,47.0,112,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34257.45,0.0,32250.0,5,9,1.0,2,1.0 -1436,2169,2566.3415350184137,62.0,112,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,24920.0,0.0,0.0,23979.65,0.0,2350.0,1,7,0.0,1,1.0 -1437,2171,1635.4954107875974,29.0,211,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29823.05,0.0,34090.0,2,1,3.0,1,1.0 -1438,2172,2771.238047368578,57.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50997.2,0.0,57910.0,5,10,8.0,3,2.0 -1439,2173,3299.8194642027115,23.0,111,0.0,42,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18386.0,0.0,15000.0,3,9,7.0,3,2.0 -1440,2174,4879.6717989755025,81.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22820.0,0.0,0.0,25765.45,0.0,0.0,1,9,3.0,1,0.0 -1441,2175,2338.979067395245,54.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20685.8,0.0,1840.0,3,10,8.0,1,1.0 -1442,2177,2541.515553499302,37.0,111,0.0,34,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36973.0,0.0,41870.0,5,10,8.0,1,1.0 -1443,2178,8893.306859738836,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2484.0,0.0,0.0,3,10,8.0,1,0.0 -1444,2183,3734.856381251868,49.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47331.75,0.0,52980.0,3,9,1.0,3,2.0 -1445,2184,2364.626492279741,49.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,32.0,0.0,56003.15,0.0,61260.0,5,10,8.0,3,2.0 -1446,2185,1310.250022719017,63.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,25000.0,0.0,0.0,40620.65,0.0,19900.0,1,9,7.0,4,1.0 -1447,2186,3834.5923192019263,26.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15934.6,0.0,15120.0,3,9,7.0,1,1.0 -1448,2187,2980.8314164877033,84.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17080.0,0.0,0.0,17069.9,0.0,0.0,1,0,0.0,3,0.0 -1449,2188,3184.7281393024487,59.0,111,5600.0,78,0.0,2.0,2.0,1.5,0.0,1710.0,0.0,0.0,0.0,0.0,6559.9,0.0,0.0,1,9,7.0,2,0.0 -1450,2189,4526.8890282878665,82.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16400.0,30.0,0.0,17618.85,0.0,0.0,1,8,7.0,3,0.0 -1451,2190,2334.0469618809498,58.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19720.0,0.0,0.0,18985.15,0.0,0.0,1,0,0.0,1,0.0 -1452,2192,3942.43481701238,46.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,11510.0,0.0,0.0,3,10,8.0,1,1.0 -1453,2194,1643.495253400978,82.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28650.0,0.0,0.0,26998.0,0.0,0.0,1,9,1.0,3,0.0 -1454,2195,2131.6670564946985,63.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12010.0,0.0,0.0,11801.8,0.0,0.0,5,9,0.0,1,0.0 -1455,2197,3194.0143074809102,61.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11740.0,0.0,0.0,13683.3,0.0,0.0,3,8,6.0,1,0.0 -1456,2198,1283.3766897014889,51.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34583.05,0.0,37020.0,1,8,7.0,3,2.0 -1457,2199,1484.236617195877,43.0,300,0.0,85,0.0,0.0,5.0,2.6,15530.0,0.0,0.0,0.0,0.0,0.0,22867.15,0.0,0.0,1,0,0.0,4,0.0 -1458,2201,2968.5823101922833,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5730.0,0.0,0.0,-0.0,0.0,0.0,5,5,4.0,1,0.0 -1459,2202,2192.1770271542764,35.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35517.05,0.0,32610.0,2,7,6.0,4,2.0 -1460,2203,2332.991429212116,42.0,300,5940.0,43,3,3.0,4.0,2.3,0.0,0.0,0.0,3280.0,0.0,0.0,53859.45,0.0,43530.0,2,0,0.0,4,3.0 -1461,2206,2060.7305581828314,46.0,111,7020.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30510.1,0.0,22410.0,2,9,7.0,4,2.0 -1462,2207,3193.9786344057434,57.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26093.5,0.0,27960.0,3,10,4.0,1,1.0 -1463,2208,2965.4005179953733,66.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34120.0,0.0,0.0,69226.95,0.0,0.0,1,8,6.0,3,0.0 -1464,2209,2397.1099889601355,22.0,111,0.0,85,0.0,0.0,8.0,3.7,0.0,6450.0,0.0,0.0,0.0,0.0,14653.0,0.0,0.0,3,6,4.0,5,0.0 -1465,2210,1952.1888534296154,62.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28080.0,0.0,0.0,26853.65,0.0,0.0,2,10,8.0,3,0.0 -1466,2211,5744.410645632105,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16080.0,1986.0,0.0,17628.1,0.0,0.0,3,4,4.0,1,0.0 -1467,2212,4995.123109858771,62.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32720.0,0.0,0.0,30728.1,0.0,0.0,2,7,0.0,3,0.0 -1468,2213,4373.060786434376,50.0,111,16030.0,63,3,2.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,57204.55,0.0,43550.0,3,10,8.0,4,5.0 -1469,2214,1406.9281129472754,60.0,111,2020.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26010.0,0.0,0.0,26664.25,0.0,0.0,1,6,4.0,3,0.0 -1470,2215,2963.348484780475,54.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13450.0,0.0,0.0,14591.7,0.0,0.0,3,1,2.0,1,0.0 -1471,2216,3076.3055247980687,48.0,120,9370.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21053.8,0.0,0.0,3,0,0.0,4,2.0 -1472,2217,2611.372856980655,61.0,400,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5067.65,0.0,0.0,1,0,0.0,1,1.0 -1473,2218,1394.389306921834,26.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38047.05,0.0,35210.0,2,7,0.0,4,2.0 -1474,2219,1118.8475041479594,55.0,112,1370.0,63,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34878.8,0.0,36070.0,1,6,0.0,4,3.0 -1475,2220,3106.0729161254676,31.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28214.05,0.0,30120.0,2,8,6.0,1,1.0 -1476,2221,2128.4548029860907,47.0,111,0.0,34,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,48174.35,0.0,43030.0,2,8,6.0,4,1.0 -1477,2222,2889.441062208737,53.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,4600.0,0.0,0.0,0.0,0.0,4422.75,240.0,0.0,1,9,7.0,1,0.0 -1478,2223,1780.3969001881917,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44150.0,493.0,0.0,44032.25,0.0,0.0,1,5,4.0,3,0.0 -1479,2224,1059.3660254113893,60.0,112,15050.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,4290.0,0.0,0.0,20851.85,0.0,1880.0,1,8,1.0,3,1.0 -1480,2225,2876.159399023245,39.0,112,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,20.0,0.0,48210.85,0.0,50860.0,2,10,0.0,4,2.0 -1481,2226,2949.246610318857,62.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21960.0,0.0,0.0,21795.75,0.0,0.0,3,10,0.0,3,0.0 -1482,2227,2206.5579889923824,68.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43430.0,6409.0,0.0,46093.25,0.0,0.0,3,9,7.0,3,0.0 -1483,2228,2973.0873910729124,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49410.0,0.0,0.0,46243.7,0.0,0.0,1,8,7.0,3,0.0 -1484,2230,1875.5005760248491,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32610.0,0.0,0.0,33833.5,0.0,4170.0,1,9,7.0,3,0.0 -1485,2231,1792.1487587287843,36.0,112,8040.0,52,2.0,1.0,5.0,2.6,9060.0,0.0,0.0,0.0,0.0,0.0,51191.0,0.0,13590.0,3,8,0.0,4,2.0 -1486,2233,1294.1777267681396,36.0,112,0.0,48,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,33287.1,0.0,25350.0,2,7,0.0,4,2.0 -1487,2234,4361.33705296493,54.0,221,5260.0,69,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7582.25,0.0,250.0,3,1,2.0,1,1.0 -1488,2235,997.6181671413598,46.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,59091.15,0.0,59200.0,1,9,7.0,4,2.0 -1489,2236,2864.881590849342,80.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16650.0,0.0,0.0,16039.05,0.0,0.0,1,9,7.0,1,0.0 -1490,2238,1394.6489029656896,66.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21650.0,0.0,0.0,20677.65,0.0,0.0,1,1,2.0,3,0.0 -1491,2239,4408.008914164744,24.0,400,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49487.0,0.0,0.0,3,0,0.0,3,2.0 -1492,2240,5964.481791380339,42.0,111,0.0,21,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,12247.0,0.0,0.0,3,7,5.0,4,1.0 -1493,2244,3160.6449023235687,37.0,111,0.0,85,0.0,0.0,2.0,1.5,10100.0,0.0,0.0,3540.0,0.0,0.0,19230.0,0.0,0.0,3,4,4.0,3,0.0 -1494,2246,1811.024036306545,62.0,111,34380.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,7980.0,0.0,0.0,39743.4,0.0,0.0,1,9,7.0,3,0.0 -1495,2248,3030.3522530845744,43.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,9.0,0.0,2150.95,0.0,0.0,1,9,7.0,1,0.0 -1496,2249,3436.5926492638573,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10276.0,0.0,3830.0,5,9,7.0,1,0.0 -1497,2250,1891.8143268351498,62.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,22860.0,0.0,0.0,75941.75,0.0,68930.0,1,10,8.0,2,2.0 -1498,2252,5478.754894817351,67.0,111,0.0,75,0.0,0.0,2.0,1.5,3440.0,0.0,0.0,36110.0,0.0,0.0,38360.6,0.0,0.0,1,6,4.0,2,0.0 -1499,2254,5171.249693066696,44.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,50494.2,0.0,56710.0,3,6,5.0,1,1.0 -1500,2255,4335.374089706619,47.0,111,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34606.25,0.0,34810.0,2,5,4.0,4,2.0 -1501,2256,3095.502444115092,88.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41160.0,0.0,0.0,41900.1,0.0,0.0,1,8,6.0,3,0.0 -1502,2257,2797.8089737894547,40.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15534.4,0.0,15600.0,3,6,5.0,1,1.0 -1503,2259,2432.9398925480914,34.0,112,7410.0,64,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,30199.7,0.0,8730.0,3,8,2.0,4,1.0 -1504,2262,2213.1472209929457,48.0,400,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,1640.0,0.0,0.0,39404.0,0.0,39960.0,2,0,1.0,3,2.0 -1505,2265,1836.575709706658,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35060.0,0.0,0.0,32679.5,0.0,0.0,2,6,0.0,3,0.0 -1506,2266,2194.3414136854844,89.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27270.0,0.0,0.0,27826.45,0.0,0.0,1,7,5.0,3,0.0 -1507,2268,1000.5560591662936,41.0,212,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,62285.75,0.0,49570.0,2,1,0.0,4,2.0 -1508,2269,5211.7957916401965,49.0,111,9120.0,52,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,33020.4,0.0,23360.0,3,10,8.0,4,2.0 -1509,2273,3059.2936603189432,24.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23289.0,0.0,16610.0,3,8,7.0,3,1.0 -1510,2274,1519.1385679413863,30.0,112,2910.0,68,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29019.1,0.0,23260.0,3,7,1.0,4,2.0 -1511,2282,3745.587450250043,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32340.0,0.0,0.0,30282.95,0.0,0.0,1,10,8.0,3,0.0 -1512,2283,3676.57238336351,35.0,400,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43236.2,0.0,33180.0,2,0,0.0,4,2.0 -1513,2284,2579.08691193398,51.0,400,0.0,13,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,14445.45,0.0,1640.0,1,0,0.0,4,2.0 -1514,2286,1448.5315891704784,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17800.0,131.0,0.0,18886.15,0.0,0.0,1,8,6.0,1,0.0 -1515,2287,3579.8876954490456,77.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21300.0,0.0,0.0,23644.35,0.0,0.0,1,7,0.0,1,0.0 -1516,2290,976.0057935645879,40.0,112,16180.0,53,3,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,37961.9,0.0,9280.0,3,5,0.0,4,3.0 -1517,2292,3106.7749617916916,24.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,52.0,0.0,29742.85,0.0,24700.0,3,10,8.0,1,1.0 -1518,2297,2318.975863053018,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26710.0,52.0,0.0,26893.6,0.0,0.0,1,5,4.0,1,0.0 -1519,2298,1300.0879196031067,39.0,221,12690.0,52,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35278.75,0.0,14030.0,2,1,2.0,4,2.0 -1520,2299,2672.5087332319777,37.0,111,4540.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35904.65,0.0,30620.0,2,8,7.0,4,2.0 -1521,2300,3865.26956885417,46.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12320.0,0.0,12320.0,3,8,6.0,1,1.0 -1522,2303,1505.7300128551376,85.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10470.0,0.0,0.0,10470.55,0.0,0.0,1,6,1.0,3,0.0 -1523,2304,3074.4923191502503,34.0,400,0.0,21,1.0,1.0,1.0,1.0,0.0,410.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,5,0,0.0,1,1.0 -1524,2306,2507.195819647971,88.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15290.0,0.0,0.0,24686.7,0.0,0.0,1,9,1.0,3,0.0 -1525,2307,2859.8250389223663,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,10530.0,48410.0,0.0,0.0,56923.3,0.0,0.0,1,9,7.0,3,0.0 -1526,2309,1516.669799908581,54.0,111,5390.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41003.05,0.0,37330.0,1,8,6.0,4,3.0 -1527,2310,1885.9873348415917,37.0,400,0.0,52,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,27911.5,430.0,9700.0,3,0,0.0,2,1.0 -1528,2311,5406.090876861792,44.0,120,0.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,101067.65,0.0,131800.0,2,0,3.0,4,1.0 -1529,2312,2468.815280371081,50.0,221,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14310.0,0.0,0.0,13827.45,0.0,0.0,2,1,3.0,1,0.0 -1530,2313,1312.6279093855912,59.0,111,3590.0,78,1.0,1.0,4.0,2.5,0.0,0.0,0.0,14550.0,8.0,0.0,41001.65,0.0,22520.0,1,8,7.0,4,1.0 -1531,2315,1821.2064490487724,47.0,111,2690.0,56,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,17122.8,0.0,11990.0,3,9,7.0,4,2.0 -1532,2316,1517.925716660489,51.0,111,10050.0,48,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,28278.1,0.0,13240.0,3,7,5.0,4,2.0 -1533,2317,2047.1048622527508,55.0,111,2000.0,77,1.0,0.0,4.0,2.1,0.0,0.0,0.0,7600.0,0.0,0.0,27062.55,0.0,13470.0,3,8,6.0,4,1.0 -1534,2318,1460.454810632819,55.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22650.0,0.0,0.0,43004.8,0.0,23870.0,1,7,0.0,3,1.0 -1535,2322,1416.2748936287219,58.0,111,0.0,21,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45720.8,0.0,0.0,2,7,5.0,2,1.0 -1536,2323,2501.4938740921784,35.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19338.1,0.0,20010.0,3,4,4.0,1,1.0 -1537,2325,1947.537150196384,48.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,34309.0,41707.6,0.0,7670.0,3,8,7.0,4,2.0 -1538,2328,1652.3639241774788,81.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35850.0,0.0,0.0,38476.65,0.0,0.0,1,0,0.0,3,0.0 -1539,2333,2381.441183275194,60.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30664.75,0.0,29540.0,3,10,4.0,1,1.0 -1540,2334,934.4828374287404,48.0,111,0.0,46,1.0,0.0,4.0,2.3,5160.0,810.0,0.0,0.0,0.0,0.0,22102.0,0.0,0.0,3,7,6.0,2,1.0 -1541,2335,2724.6360735411286,35.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19030.4,0.0,16990.0,2,9,7.0,1,1.0 -1542,2336,1032.1096590119448,51.0,112,0.0,22,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,16780.0,3,8,0.0,4,2.0 -1543,2338,2650.6144692654802,66.0,221,1950.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34320.0,0.0,0.0,34502.3,0.0,880.0,1,1,1.0,3,0.0 -1544,2339,4095.8333004907913,26.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,230.0,0.0,0.0,0.0,0.0,18944.35,680.0,15330.0,3,8,7.0,3,1.0 -1545,2341,3695.8867142850745,74.0,111,0.0,77,0.0,0.0,2.0,1.5,9640.0,0.0,0.0,11580.0,0.0,0.0,27798.0,0.0,3460.0,3,8,7.0,2,0.0 -1546,2342,2280.3840049351816,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27960.0,360.0,0.0,34061.75,0.0,0.0,1,9,7.0,3,0.0 -1547,2343,1316.5863882429312,59.0,112,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,502.0,0.0,47676.25,0.0,51160.0,2,10,0.0,3,1.0 -1548,2344,1261.9485179296782,66.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,45390.0,18.0,0.0,56515.95,0.0,19240.0,2,8,7.0,3,1.0 -1549,2346,3411.716174698302,25.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32342.45,0.0,32840.0,2,7,5.0,3,2.0 -1550,2348,3094.787218642231,35.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20290.8,0.0,22130.0,3,9,7.0,1,1.0 -1551,2349,2890.975767044654,82.0,111,0.0,86,1.0,0.0,3.0,2.0,0.0,7970.0,0.0,9630.0,0.0,0.0,20500.0,0.0,0.0,1,8,7.0,5,1.0 -1552,2351,4180.986519366842,42.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,15650.6,0.0,15540.0,2,9,1.0,4,2.0 -1553,2352,3119.258641850484,59.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9880.0,0.0,0.0,12956.4,0.0,2350.0,3,9,7.0,2,1.0 -1554,2353,3093.780975128456,28.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3073.85,0.0,3430.0,1,10,8.0,1,1.0 -1555,2354,2083.073786284617,80.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18630.0,0.0,0.0,19395.4,0.0,0.0,1,0,0.0,3,0.0 -1556,2355,3723.8118181277673,32.0,111,12570.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35727.65,0.0,21870.0,3,9,7.0,3,2.0 -1557,2356,4862.200328181966,77.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26990.0,0.0,0.0,27210.95,0.0,0.0,1,1,1.0,1,0.0 -1558,2358,3132.3391646414807,37.0,111,5600.0,56,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,16027.3,0.0,0.0,3,9,7.0,2,1.0 -1559,2359,1233.9391062506586,35.0,300,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48100.95,0.0,41560.0,2,0,0.0,4,2.0 -1560,2360,3655.05812945436,91.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17960.0,112.0,0.0,22481.75,0.0,0.0,1,6,4.0,3,0.0 -1561,2363,1911.0893301418541,57.0,300,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18527.5,0.0,19950.0,1,0,0.0,1,1.0 -1562,2364,3690.0866961502647,29.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32707.65,0.0,29320.0,3,10,8.0,1,1.0 -1563,2365,1032.1899731516087,28.0,211,0.0,37,3,2.0,4.0,2.5,0.0,0.0,0.0,27520.0,0.0,0.0,83524.5,0.0,64320.0,1,1,2.0,5,3.0 -1564,2368,3579.9985890073517,41.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19783.2,0.0,20530.0,2,9,7.0,1,1.0 -1565,2371,2167.3874491399615,26.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,180.0,19200.0,0.0,0.0,33870.45,0.0,15670.0,3,9,7.0,4,1.0 -1566,2372,2783.119558139893,80.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12060.0,0.0,0.0,12250.0,0.0,0.0,5,8,7.0,1,0.0 -1567,2375,2883.298614037638,54.0,111,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,62432.5,0.0,63170.0,1,9,7.0,4,2.0 -1568,2376,3223.113923216736,37.0,111,7720.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34984.65,0.0,28290.0,5,6,5.0,3,2.0 -1569,2377,1354.2098388279403,41.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37660.35,0.0,30310.0,2,9,7.0,4,2.0 -1570,2378,3472.9455286015623,30.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,8010.0,0.0,0.0,3,9,7.0,1,1.0 -1571,2380,3136.3282220511555,49.0,111,0.0,85,1.0,0.0,2.0,1.5,0.0,0.0,0.0,17770.0,0.0,0.0,19712.0,0.0,0.0,3,8,7.0,2,1.0 -1572,2383,2239.6934655824098,32.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58460.75,0.0,39950.0,2,6,0.0,4,2.0 -1573,2384,3794.7116316520655,37.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1800.0,0.0,0.0,1,10,8.0,1,0.0 -1574,2386,1744.615037485687,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25810.0,0.0,0.0,25811.3,0.0,0.0,1,7,6.0,1,0.0 -1575,2387,1922.592516624132,73.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24230.0,0.0,0.0,23450.4,0.0,0.0,1,6,5.0,3,0.0 -1576,2388,3278.867815743744,47.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53228.9,0.0,61150.0,1,10,8.0,3,2.0 -1577,2390,3415.1265292544144,31.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16784.9,0.0,18140.0,3,9,7.0,1,1.0 -1578,2391,2287.9302874055707,42.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17875.75,0.0,19810.0,2,8,7.0,1,1.0 -1579,2393,3469.277623746239,32.0,111,16150.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25816.65,0.0,12840.0,3,10,8.0,1,1.0 -1580,2394,4390.683065258503,41.0,111,2000.0,65,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,47529.7,0.0,41600.0,2,7,5.0,4,2.0 -1581,2395,1171.2454526167062,49.0,300,0.0,13,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,63907.55,0.0,18760.0,1,0,0.0,4,2.0 -1582,2396,2989.9070932277227,42.0,111,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,6.0,0.0,66524.25,0.0,52580.0,2,8,7.0,4,2.0 -1583,2397,1155.1312377187749,54.0,111,11510.0,78,3,0.0,5.0,2.8,0.0,12510.0,0.0,0.0,0.0,0.0,67035.5,390.0,43710.0,3,8,7.0,5,3.0 -1584,2400,3197.07255455332,44.0,111,0.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,9,7.0,1,1.0 -1585,2403,1110.2635545642022,37.0,112,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46612.75,0.0,36730.0,3,7,0.0,4,2.0 -1586,2404,3474.359065684856,65.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40510.0,22.0,0.0,37825.2,0.0,0.0,2,1,2.0,3,0.0 -1587,2407,3658.8085141562533,57.0,400,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24886.3,0.0,22050.0,3,0,0.0,4,2.0 -1588,2408,3033.5013762406165,63.0,221,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36850.0,0.0,0.0,30492.2,0.0,0.0,1,1,2.0,1,0.0 -1589,2410,3379.7652567540626,41.0,112,0.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47287.0,0.0,49870.0,3,9,2.0,4,2.0 -1590,2411,4585.476178921693,56.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24120.0,0.0,0.0,23156.15,0.0,0.0,2,6,4.0,3,0.0 -1591,2417,1795.3343895623289,51.0,111,0.0,38,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,208.0,0.0,40459.95,0.0,50180.0,1,9,7.0,4,1.0 -1592,2418,2456.868697824232,39.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44079.55,0.0,48300.0,5,10,8.0,4,2.0 -1593,2419,2146.7661042938016,59.0,300,4250.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,18850.0,0.0,0.0,26315.5,0.0,3950.0,3,0,0.0,3,1.0 -1594,2422,931.4039252801729,54.0,112,0.0,33,1.0,1.0,5.0,2.8,9380.0,0.0,970.0,14860.0,0.0,0.0,57188.35,0.0,32630.0,1,9,1.0,5,1.0 -1595,2424,5109.479982469782,35.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37841.9,0.0,40850.0,2,9,1.0,4,2.0 -1596,2426,1401.4064045813334,52.0,120,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37731.4,0.0,40010.0,1,0,0.0,3,2.0 -1597,2427,2697.881524626795,23.0,111,2440.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28292.25,0.0,26720.0,3,5,4.0,3,2.0 -1598,2428,2673.1514535651927,35.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,16.0,0.0,81394.0,0.0,75280.0,3,9,7.0,4,2.0 -1599,2429,1312.3032464207304,58.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,109580.9,0.0,136090.0,2,10,8.0,4,2.0 -1600,2430,2061.9952060709875,57.0,400,0.0,13,2.0,2.0,3.0,2.0,0.0,0.0,0.0,3060.0,520.0,0.0,99726.5,0.0,10110.0,1,0,0.0,4,2.0 -1601,2432,2666.966294157661,42.0,221,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26654.65,0.0,26410.0,3,1,2.0,5,2.0 -1602,2433,2717.3819824823113,29.0,212,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34962.3,0.0,30200.0,5,2,0.0,4,2.0 -1603,2435,3575.728664535271,28.0,111,3180.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,530.0,0.0,25661.25,0.0,23370.0,3,10,8.0,5,2.0 -1604,2436,1593.433580929908,29.0,300,0.0,64,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29274.05,0.0,20250.0,2,0,0.0,4,1.0 -1605,2439,2763.2724493395276,33.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46539.4,0.0,40860.0,3,9,7.0,4,2.0 -1606,2440,2864.057033904428,59.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36150.0,0.0,0.0,34434.8,0.0,460.0,1,8,7.0,3,0.0 -1607,2441,1717.7054762475886,42.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35053.45,0.0,35210.0,2,5,4.0,4,2.0 -1608,2442,1092.6465653402493,46.0,112,12350.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36053.5,0.0,18930.0,2,9,0.0,4,2.0 -1609,2443,5922.809184019549,25.0,111,10560.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11928.0,0.0,0.0,3,10,8.0,1,1.0 -1610,2445,2092.045343964673,39.0,112,22880.0,54,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53574.55,0.0,26740.0,3,9,1.0,4,2.0 -1611,2446,3562.5975354851385,37.0,111,0.0,22,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47639.0,0.0,54160.0,3,9,7.0,4,2.0 -1612,2448,2728.3455339175457,79.0,212,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18390.0,0.0,0.0,18523.4,0.0,0.0,1,3,0.0,3,0.0 -1613,2450,2556.8979540935375,43.0,112,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45525.05,0.0,47200.0,2,8,0.0,4,2.0 -1614,2451,2523.5413474106263,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25330.0,137.0,0.0,26079.0,0.0,0.0,1,7,5.0,3,0.0 -1615,2453,3855.779978647893,73.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4690.0,315.0,0.0,6291.15,0.0,0.0,1,0,0.0,1,0.0 -1616,2454,3328.6941252341285,79.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26040.0,0.0,0.0,24682.65,0.0,0.0,1,0,0.0,3,0.0 -1617,2456,1676.6823655930712,67.0,300,0.0,71,0.0,0.0,3.0,2.0,3980.0,0.0,0.0,17990.0,5.0,0.0,31019.55,0.0,0.0,1,0,0.0,5,0.0 -1618,2457,3305.8724580404546,43.0,111,0.0,68,1.0,1.0,3.0,1.8,0.0,4400.0,0.0,0.0,0.0,0.0,27230.75,0.0,17750.0,3,9,7.0,2,1.0 -1619,2458,2425.2681547505836,44.0,221,12580.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54040.75,0.0,41780.0,1,1,2.0,3,1.0 -1620,2460,2067.4193336966196,56.0,111,1510.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14145.25,0.0,13230.0,1,6,5.0,3,2.0 -1621,2462,1583.0647299238233,50.0,400,4910.0,52,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,19502.8,0.0,8350.0,2,0,0.0,4,2.0 -1622,2463,1738.5298018017263,40.0,112,0.0,52,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,50938.45,0.0,39080.0,2,6,0.0,5,2.0 -1623,2464,2721.728791494711,34.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41724.95,0.0,37000.0,2,9,0.0,4,2.0 -1624,2465,2283.833954856121,33.0,111,0.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,28471.0,0.0,24950.0,3,9,7.0,4,2.0 -1625,2466,3952.455771789996,47.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,14.0,0.0,47466.05,0.0,51260.0,2,9,7.0,3,2.0 -1626,2467,2377.1971133605484,42.0,112,0.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,40755.85,0.0,33860.0,2,9,0.0,4,2.0 -1627,2468,1857.8839688257099,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50260.0,0.0,0.0,46191.6,0.0,0.0,1,7,5.0,3,0.0 -1628,2469,2662.1930439699927,61.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,3660.0,0.0,0.0,43395.95,0.0,40700.0,1,10,8.0,2,1.0 -1629,2470,6431.221930505136,28.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21262.25,0.0,18420.0,2,9,7.0,1,1.0 -1630,2471,2207.1834205477207,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20980.0,0.0,0.0,23509.8,0.0,80.0,3,9,7.0,1,0.0 -1631,2472,2589.4606250830143,84.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16560.0,0.0,0.0,16746.45,0.0,0.0,1,0,0.0,3,0.0 -1632,2474,5337.995666107628,80.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52340.0,0.0,0.0,52353.85,0.0,0.0,5,6,5.0,3,0.0 -1633,2476,3481.458551430765,26.0,120,7250.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21802.6,0.0,13910.0,3,0,3.0,3,2.0 -1634,2478,2370.637653984413,57.0,111,0.0,54,2.0,2.0,3.0,2.0,8750.0,0.0,0.0,0.0,0.0,0.0,38441.7,0.0,31310.0,2,8,7.0,5,2.0 -1635,2479,3151.2078023687477,33.0,111,10410.0,69,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11939.25,0.0,120.0,3,9,7.0,1,1.0 -1636,2480,3124.9528025610393,32.0,112,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37174.65,0.0,35170.0,2,7,0.0,4,2.0 -1637,2481,2411.716503787109,72.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60040.0,0.0,0.0,43362.55,0.0,0.0,1,0,0.0,3,0.0 -1638,2482,4647.954311360198,47.0,112,0.0,13,2.0,2.0,4.0,2.1,0.0,1300.0,0.0,2960.0,0.0,0.0,-0.0,0.0,0.0,1,8,3.0,4,2.0 -1639,2483,3771.1711349102293,28.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2292.0,0.0,0.0,3,9,7.0,1,0.0 -1640,2485,2171.6445061798704,51.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32567.75,0.0,33900.0,1,5,4.0,3,2.0 -1641,2488,2691.3922849590326,49.0,300,0.0,22,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53412.95,0.0,53090.0,2,0,0.0,4,3.0 -1642,2490,2991.088700667828,51.0,112,0.0,12,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,28113.6,0.0,11910.0,1,9,3.0,4,2.0 -1643,2491,1493.8161454944056,51.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24808.9,0.0,25320.0,1,6,0.0,3,2.0 -1644,2493,1808.3808268625896,38.0,112,8340.0,63,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,15.0,0.0,31219.15,0.0,8190.0,2,10,0.0,2,1.0 -1645,2494,4471.254191898434,44.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,34.0,0.0,32347.95,0.0,31030.0,3,5,4.0,1,1.0 -1646,2496,2122.9540814755733,63.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,6670.0,0.0,0.0,10500.9,0.0,0.0,1,7,5.0,3,0.0 -1647,2497,1615.6422573260222,39.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,70830.05,0.0,56910.0,2,9,7.0,4,2.0 -1648,2498,2966.3395095199303,34.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41571.1,0.0,39490.0,2,9,7.0,4,2.0 -1649,2499,2464.748119981504,66.0,300,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10630.0,0.0,0.0,13326.0,0.0,0.0,3,0,0.0,1,0.0 -1650,2501,2143.62260985119,45.0,112,910.0,54,2.0,2.0,4.0,2.5,0.0,0.0,0.0,13580.0,0.0,0.0,59223.85,0.0,51660.0,1,9,0.0,5,2.0 -1651,2503,2143.2468236444165,46.0,112,8020.0,47,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,57388.85,0.0,47560.0,1,9,0.0,4,3.0 -1652,2504,3591.108100461523,83.0,112,0.0,11,2.0,1.0,2.0,1.5,0.0,0.0,0.0,10930.0,0.0,0.0,15509.4,0.0,0.0,1,8,1.0,2,2.0 -1653,2508,2141.4586774268964,75.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19730.0,0.0,0.0,19570.75,0.0,0.0,1,7,1.0,3,0.0 -1654,2509,6705.636094547278,28.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50209.1,0.0,46400.0,2,9,1.0,4,2.0 -1655,2510,1857.2669045330251,40.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,49822.85,0.0,44040.0,1,8,7.0,4,2.0 -1656,2511,933.5901951929904,87.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23110.0,0.0,0.0,22919.65,0.0,0.0,3,3,4.0,3,0.0 -1657,2512,3571.5499414857336,40.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19635.85,0.0,20590.0,3,10,8.0,1,1.0 -1658,2513,1978.5042036135128,58.0,111,3680.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2.0,0.0,50805.75,0.0,50380.0,1,7,5.0,3,2.0 -1659,2515,2925.604926320235,26.0,111,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16209.6,0.0,16410.0,3,9,7.0,3,2.0 -1660,2516,2519.1527381516726,62.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31620.0,791.0,0.0,30629.55,0.0,0.0,1,5,4.0,3,0.0 -1661,2517,2447.8788562287714,32.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41634.05,0.0,40110.0,2,7,0.0,4,2.0 -1662,2518,4195.345544985483,27.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6992.25,0.0,6800.0,3,9,7.0,1,0.0 -1663,2521,891.0223627063108,46.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,24910.0,0.0,0.0,78797.5,0.0,49230.0,1,8,7.0,4,2.0 -1664,2522,2848.8505336239004,24.0,111,5370.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25408.15,0.0,20010.0,3,5,4.0,3,1.0 -1665,2523,2596.8267904298787,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36270.0,0.0,0.0,33250.5,0.0,0.0,1,9,7.0,3,0.0 -1666,2524,4404.785313748579,22.0,112,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10530.0,0.0,8130.0,3,10,2.0,1,1.0 -1667,2525,1235.6011441585422,38.0,111,2750.0,64,2.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,33713.0,0.0,16420.0,2,7,5.0,4,2.0 -1668,2526,3106.4751154037017,45.0,111,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,44597.35,0.0,41660.0,1,10,8.0,2,1.0 -1669,2527,2131.4875432301665,58.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32668.6,0.0,34460.0,1,8,7.0,2,2.0 -1670,2532,3969.6805487259603,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3300.0,0.0,900.0,3,10,8.0,1,0.0 -1671,2533,2625.100642487696,33.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39538.85,0.0,41550.0,2,8,0.0,3,2.0 -1672,2537,4478.817678920996,89.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18540.0,0.0,0.0,17462.4,0.0,0.0,1,1,2.0,1,0.0 -1673,2538,3340.6321019844904,88.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29530.0,0.0,0.0,28594.1,0.0,0.0,1,10,8.0,1,0.0 -1674,2539,2973.6314062490446,36.0,111,1350.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29624.0,0.0,23550.0,3,9,7.0,4,2.0 -1675,2541,2563.683911737497,67.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11770.0,0.0,0.0,11230.4,0.0,0.0,1,9,7.0,1,0.0 -1676,2542,1423.4499207076753,49.0,111,8490.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29469.4,0.0,23560.0,1,6,5.0,3,2.0 -1677,2544,2434.6763308630602,38.0,111,0.0,85,0.0,0.0,1.0,1.0,10900.0,0.0,0.0,0.0,0.0,0.0,14044.0,0.0,0.0,3,9,7.0,1,0.0 -1678,2547,2868.03720627782,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,7140.0,32570.0,0.0,0.0,37100.15,0.0,0.0,3,10,8.0,5,0.0 -1679,2548,3111.913960195233,29.0,400,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,5,0,0.0,1,1.0 -1680,2549,943.0505836351238,61.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19290.0,0.0,0.0,22581.2,0.0,0.0,1,6,4.0,3,0.0 -1681,2550,1295.1030296680801,41.0,112,17160.0,46,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,61408.9,0.0,33460.0,1,8,0.0,4,2.0 -1682,2551,2327.1660208326603,35.0,300,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50892.95,0.0,48100.0,2,0,0.0,4,2.0 -1683,2554,3664.6547099057175,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20290.0,0.0,0.0,17596.7,0.0,0.0,1,9,7.0,3,0.0 -1684,2556,4121.317362724045,84.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,51190.0,0.0,0.0,54372.7,0.0,0.0,3,10,8.0,1,0.0 -1685,2557,1438.938558798746,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50610.0,0.0,0.0,53725.0,0.0,0.0,1,8,6.0,3,0.0 -1686,2558,2303.7529096310013,92.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12160.0,0.0,0.0,11843.15,0.0,0.0,1,6,4.0,1,0.0 -1687,2561,4138.810070739493,70.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56080.0,7.0,0.0,53553.35,0.0,0.0,1,8,6.0,3,0.0 -1688,2563,2832.2222960537238,35.0,111,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22333.75,0.0,24010.0,2,10,8.0,2,1.0 -1689,2564,1154.4084088270367,31.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59353.35,0.0,52760.0,2,10,0.0,4,2.0 -1690,2565,3683.772367562455,66.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38160.0,0.0,0.0,39067.9,0.0,0.0,1,1,1.0,3,0.0 -1691,2566,2012.638053899802,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36400.0,14.0,0.0,34174.2,0.0,0.0,1,8,7.0,3,0.0 -1692,2569,2788.0311017627027,72.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9240.0,0.0,0.0,10716.0,0.0,0.0,3,6,4.0,1,0.0 -1693,2571,2168.7287805624046,37.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53047.3,0.0,49620.0,2,7,5.0,4,2.0 -1694,2574,3090.0268245456305,31.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2.0,0.0,117483.65,0.0,127020.0,2,10,8.0,3,2.0 -1695,2575,3011.5283025366084,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12110.0,0.0,0.0,14676.55,0.0,0.0,3,10,8.0,1,0.0 -1696,2576,2198.140790522097,67.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27160.0,0.0,0.0,25758.4,0.0,0.0,1,0,0.0,3,0.0 -1697,2577,3440.0517470794907,78.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,5660.0,10120.0,0.0,0.0,19304.0,0.0,0.0,3,9,7.0,3,0.0 -1698,2579,4623.76187279126,59.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17679.3,0.0,18740.0,2,7,5.0,1,1.0 -1699,2581,3645.3226416491098,51.0,111,1440.0,69,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29658.85,0.0,26440.0,2,9,7.0,4,2.0 -1700,2582,3197.712295147481,48.0,400,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23347.15,0.0,24730.0,1,0,1.0,1,1.0 -1701,2583,2590.4368421949953,37.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,7,5.0,1,1.0 -1702,2584,993.4869734661805,44.0,212,4960.0,62,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37632.65,0.0,31190.0,1,2,0.0,4,3.0 -1703,2586,1893.40872116079,62.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40310.0,0.0,0.0,38364.85,0.0,0.0,1,0,0.0,3,0.0 -1704,2587,2488.303798680894,27.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21743.65,0.0,23830.0,3,7,5.0,1,1.0 -1705,2593,1174.7777720073623,58.0,112,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24900.0,0.0,0.0,43205.9,0.0,21500.0,1,8,1.0,3,1.0 -1706,2596,2994.489720099293,48.0,221,0.0,37,3,3.0,4.0,2.3,0.0,0.0,0.0,13820.0,0.0,0.0,52059.2,0.0,40060.0,2,1,2.0,4,3.0 -1707,2597,3965.2546622148943,68.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3168.0,0.0,0.0,3,8,6.0,2,0.0 -1708,2598,3151.7428992841037,39.0,111,7910.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23475.0,0.0,7350.0,3,9,7.0,2,1.0 -1709,2599,2527.2673504240224,44.0,111,0.0,37,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51422.2,0.0,51810.0,1,8,6.0,4,1.0 -1710,2601,1287.5680828044656,46.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,17.0,0.0,89994.5,0.0,82850.0,2,8,6.0,4,2.0 -1711,2602,2614.2133380560354,29.0,111,3850.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,39075.75,0.0,25610.0,3,10,8.0,4,2.0 -1712,2603,1343.1278437713856,92.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28020.0,0.0,0.0,28031.75,0.0,0.0,1,9,7.0,3,0.0 -1713,2607,3400.154759637121,82.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8630.0,0.0,0.0,9065.0,0.0,0.0,1,9,0.0,1,0.0 -1714,2608,1410.550477816492,48.0,300,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39690.55,0.0,38510.0,2,0,0.0,4,2.0 -1715,2610,3498.3184957181934,29.0,111,30.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29649.05,0.0,27610.0,3,9,7.0,4,2.0 -1716,2611,2783.089365912456,44.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40269.05,0.0,41700.0,2,8,1.0,4,2.0 -1717,2613,3397.6939772646924,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14110.0,0.0,1638.0,15810.0,0.0,0.0,3,8,7.0,1,0.0 -1718,2614,3793.0084254361936,27.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1470.2,0.0,0.0,4,8,7.0,1,0.0 -1719,2617,3575.8440270104047,61.0,111,0.0,62,3,1.0,4.0,2.5,0.0,7400.0,0.0,0.0,0.0,0.0,13432.5,1870.0,4470.0,2,10,8.0,4,3.0 -1720,2618,1659.6098228923677,29.0,112,0.0,47,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17650.0,0.0,0.0,40938.75,0.0,21970.0,1,9,0.0,4,1.0 -1721,2619,4072.1119918137865,24.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18066.0,0.0,10720.0,3,8,6.0,1,1.0 -1722,2622,1499.8697927481262,43.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34111.4,0.0,23100.0,2,9,7.0,2,1.0 -1723,2628,3080.8545481623446,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24800.0,3.0,0.0,27024.1,0.0,0.0,1,9,7.0,1,0.0 -1724,2629,2270.012822216021,77.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,2110.0,11860.0,0.0,0.0,13970.0,0.0,0.0,5,0,0.0,3,0.0 -1725,2633,2989.3687115729776,48.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18445.0,0.0,18670.0,3,9,7.0,1,1.0 -1726,2634,2612.1391008584724,43.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31912.85,0.0,30380.0,2,7,0.0,4,2.0 -1727,2635,3209.5903281863184,87.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40010.0,48.0,0.0,38415.8,0.0,0.0,1,9,3.0,3,0.0 -1728,2636,1049.7203112829238,39.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13837.0,0.0,14100.0,5,9,7.0,1,1.0 -1729,2637,4020.035155342514,39.0,111,7790.0,53,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9210.9,190.0,760.0,3,9,7.0,1,1.0 -1730,2639,1769.2001656070363,58.0,111,9940.0,68,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22616.0,0.0,9550.0,3,7,5.0,4,2.0 -1731,2640,5572.629748555133,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51390.0,0.0,0.0,47964.55,0.0,0.0,1,10,8.0,3,0.0 -1732,2641,2650.822623698471,62.0,112,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,201.0,0.0,54690.15,0.0,28400.0,1,8,0.0,3,2.0 -1733,2642,4459.365496520962,46.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16322.0,0.0,16180.0,3,10,8.0,2,1.0 -1734,2643,2403.2395201470877,60.0,112,7410.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22740.0,11.0,0.0,29092.6,0.0,1100.0,1,10,2.0,3,0.0 -1735,2644,1081.2458538421693,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31240.0,0.0,0.0,30832.7,0.0,0.0,1,6,5.0,3,0.0 -1736,2645,1976.2107084480472,31.0,111,0.0,38,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35822.35,0.0,41100.0,1,7,5.0,1,1.0 -1737,2646,4332.161516323565,38.0,221,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14815.0,0.0,14880.0,3,1,1.0,1,1.0 -1738,2647,2412.9381853700324,40.0,400,0.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,29037.75,0.0,27330.0,1,0,1.0,2,1.0 -1739,2649,3000.5813769480683,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,47910.0,163.0,0.0,47363.9,0.0,0.0,5,9,7.0,1,0.0 -1740,2650,1618.274793763528,79.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11350.0,0.0,0.0,11508.0,0.0,0.0,5,8,7.0,1,0.0 -1741,2651,2638.10856775806,90.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24800.0,0.0,0.0,24427.4,0.0,0.0,5,9,7.0,3,0.0 -1742,2653,2643.3699520544947,76.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16050.0,0.0,0.0,15768.5,0.0,0.0,1,7,0.0,3,0.0 -1743,2654,3979.446936799717,60.0,221,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,11640.0,0.0,0.0,15739.1,0.0,5700.0,2,1,2.0,1,1.0 -1744,2657,2978.9274670943955,47.0,111,0.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19462.35,0.0,21180.0,2,10,8.0,5,2.0 -1745,2658,2413.036020772859,54.0,111,0.0,54,1.0,1.0,1.0,1.0,250.0,0.0,0.0,6150.0,0.0,0.0,15713.0,0.0,9140.0,3,10,8.0,1,1.0 -1746,2659,1090.1996494527675,59.0,112,2400.0,13,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,95133.8,0.0,30390.0,1,7,0.0,4,4.0 -1747,2660,2643.00888226277,75.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8750.0,0.0,0.0,8659.65,0.0,0.0,1,7,5.0,1,0.0 -1748,2663,2203.546928934147,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24620.0,0.0,0.0,30986.8,0.0,0.0,1,8,6.0,3,0.0 -1749,2664,3431.2484438315037,29.0,112,1370.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49675.4,0.0,50150.0,3,8,0.0,3,2.0 -1750,2667,1751.110296209206,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24280.0,0.0,0.0,24479.6,0.0,0.0,1,6,4.0,3,0.0 -1751,2668,2191.7941590421688,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16060.0,0.0,0.0,15439.35,0.0,0.0,1,4,0.0,1,0.0 -1752,2670,3386.401711669207,21.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5053.65,0.0,2580.0,3,9,7.0,1,1.0 -1753,2671,2484.7545588266494,67.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17060.0,0.0,0.0,16543.25,0.0,0.0,1,4,3.0,3,0.0 -1754,2672,2913.261037580421,23.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17105.85,0.0,18300.0,3,8,1.0,1,1.0 -1755,2673,2952.445936702363,63.0,112,0.0,78,0.0,0.0,2.0,1.5,7550.0,0.0,0.0,13060.0,0.0,0.0,24054.0,0.0,0.0,3,7,0.0,3,0.0 -1756,2675,2965.6351494184996,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16690.0,0.0,0.0,16482.0,0.0,0.0,3,8,7.0,1,0.0 -1757,2676,1931.2091356553424,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50740.0,0.0,0.0,60328.55,0.0,0.0,1,9,7.0,3,0.0 -1758,2678,2399.8909758201867,42.0,112,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,14318.0,0.0,14160.0,1,9,0.0,1,1.0 -1759,2679,1707.0863448646817,51.0,111,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54139.25,0.0,52410.0,1,9,7.0,4,2.0 -1760,2681,1535.6249468447552,48.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46496.85,0.0,51560.0,2,6,4.0,3,2.0 -1761,2682,2943.3195548035696,26.0,400,0.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,36.0,0.0,27236.65,0.0,16490.0,3,0,0.0,4,2.0 -1762,2687,1091.1358778274569,45.0,300,0.0,67,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30728.1,0.0,31380.0,2,0,1.0,4,2.0 -1763,2690,1311.3018457257433,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19700.0,0.0,0.0,20141.75,0.0,0.0,1,6,5.0,3,0.0 -1764,2693,3316.8935334743232,29.0,120,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27778.2,0.0,28000.0,5,0,0.0,3,2.0 -1765,2694,5465.974238620556,88.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28360.0,0.0,0.0,28023.45,0.0,0.0,1,0,0.0,1,0.0 -1766,2695,1516.8996732571622,65.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49220.0,5.0,0.0,44411.2,0.0,0.0,1,9,0.0,3,0.0 -1767,2697,3381.5891451096227,36.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33871.5,0.0,30180.0,3,5,4.0,4,2.0 -1768,2698,3984.126348984549,77.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21100.0,0.0,0.0,20847.05,0.0,0.0,1,8,0.0,3,0.0 -1769,2699,1056.1488978918767,58.0,120,7010.0,43,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49781.8,0.0,43920.0,1,0,0.0,4,3.0 -1770,2700,3811.8864511740653,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19520.0,0.0,0.0,19337.7,0.0,0.0,3,9,7.0,1,0.0 -1771,2702,7553.199617501134,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35540.0,0.0,0.0,34414.4,0.0,0.0,3,4,4.0,3,0.0 -1772,2703,984.8885538676179,66.0,112,0.0,74,1.0,1.0,5.0,2.8,0.0,0.0,0.0,27360.0,0.0,0.0,56372.9,0.0,27560.0,1,8,0.0,5,1.0 -1773,2704,2808.454999403764,53.0,111,400.0,65,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20740.6,0.0,20910.0,1,8,7.0,4,1.0 -1774,2705,1613.8364163892272,34.0,112,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47335.1,0.0,41850.0,2,9,1.0,4,2.0 -1775,2706,3249.7791281018153,60.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18660.0,0.0,0.0,18548.7,0.0,0.0,1,8,7.0,1,0.0 -1776,2708,3143.5901754514266,38.0,111,20160.0,64,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25862.4,0.0,5820.0,3,9,7.0,5,2.0 -1777,2712,6248.915924120271,74.0,211,0.0,77,0.0,0.0,2.0,1.5,8750.0,0.0,0.0,16820.0,0.0,0.0,24737.25,0.0,0.0,1,2,3.0,2,0.0 -1778,2713,1817.2634415906061,88.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15100.0,0.0,0.0,16094.5,0.0,0.0,1,0,0.0,3,0.0 -1779,2714,3959.4120289692696,30.0,111,0.0,23,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27933.6,0.0,28940.0,5,10,8.0,1,1.0 -1780,2715,2808.785386043736,24.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,68.0,0.0,24341.0,0.0,25710.0,3,8,7.0,1,1.0 -1781,2716,2330.5556226552208,44.0,111,700.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,54.0,0.0,59710.0,0.0,60970.0,3,9,7.0,4,2.0 -1782,2718,3190.1123640925216,45.0,112,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25454.85,0.0,24400.0,1,6,0.0,2,1.0 -1783,2719,3091.6562799531516,59.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15857.65,0.0,16800.0,1,8,6.0,1,1.0 -1784,2720,3428.58235859993,33.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54470.6,0.0,38600.0,2,10,8.0,4,2.0 -1785,2721,1412.8379017404789,50.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10000.0,0.0,0.0,29362.75,0.0,20150.0,3,5,4.0,3,1.0 -1786,2723,2216.304856749677,87.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12970.0,0.0,0.0,13118.7,0.0,0.0,1,8,7.0,1,0.0 -1787,2725,2206.1985447234983,85.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,73560.0,0.0,0.0,59898.35,0.0,0.0,1,9,7.0,3,0.0 -1788,2726,2457.8266840155084,36.0,111,19560.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,71301.95,0.0,48130.0,2,6,5.0,4,2.0 -1789,2728,1757.135761355308,45.0,112,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33691.65,0.0,32730.0,2,7,0.0,4,2.0 -1790,2730,1499.1320303136415,35.0,111,6780.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48160.45,0.0,42630.0,2,6,4.0,4,2.0 -1791,2732,2444.0630526284945,45.0,112,1790.0,52,1.0,0.0,2.0,1.3,0.0,0.0,0.0,13110.0,0.0,0.0,16776.85,0.0,1600.0,3,10,1.0,2,1.0 -1792,2733,2382.483128459589,70.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22550.0,0.0,0.0,22211.85,0.0,0.0,1,0,0.0,3,0.0 -1793,2734,2681.872220833957,35.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,76.0,0.0,22466.0,0.0,23300.0,2,9,7.0,1,1.0 -1794,2737,4191.469656343697,41.0,221,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20460.75,0.0,18520.0,3,1,1.0,2,2.0 -1795,2741,3441.7825377371637,57.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26804.35,0.0,27940.0,1,9,7.0,3,1.0 -1796,2742,3637.313562829282,22.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19728.3,0.0,16990.0,3,8,6.0,1,1.0 -1797,2743,1955.041865845445,61.0,112,12060.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28020.0,28.0,0.0,39012.05,0.0,460.0,1,10,0.0,3,1.0 -1798,2744,5762.0677301359065,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11960.0,0.0,0.0,13768.0,0.0,0.0,3,6,4.0,1,0.0 -1799,2746,2850.269271772086,29.0,111,8480.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15923.8,0.0,6750.0,2,9,7.0,1,1.0 -1800,2747,3532.729155318646,82.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20100.0,0.0,0.0,19772.4,0.0,0.0,1,8,6.0,1,0.0 -1801,2749,2966.966407186341,52.0,111,5300.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17893.65,0.0,14610.0,1,9,7.0,1,1.0 -1802,2750,2597.8588817924165,86.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41290.0,0.0,0.0,54253.0,0.0,0.0,1,10,8.0,3,0.0 -1803,2752,1718.8696937948332,31.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38684.45,0.0,32040.0,2,8,6.0,4,2.0 -1804,2754,1881.480984843964,50.0,400,0.0,69,3,3.0,7.0,3.6,0.0,0.0,0.0,0.0,0.0,0.0,36205.5,0.0,23720.0,2,0,0.0,4,3.0 -1805,2757,5680.777778818313,58.0,221,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15748.65,0.0,13960.0,1,1,1.0,3,2.0 -1806,2759,1804.124819400463,64.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33180.0,0.0,0.0,32026.7,0.0,200.0,1,1,3.0,3,0.0 -1807,2763,2983.0062906317835,31.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43164.55,0.0,39140.0,2,8,0.0,4,2.0 -1808,2765,1237.904477836305,37.0,400,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45445.85,0.0,31260.0,2,0,0.0,4,2.0 -1809,2766,1315.957288008382,49.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49171.55,0.0,53600.0,1,9,0.0,3,2.0 -1810,2767,2687.670144906297,47.0,112,0.0,62,1.0,1.0,3.0,2.0,0.0,0.0,0.0,6300.0,0.0,0.0,23878.7,0.0,21020.0,3,10,5.0,4,1.0 -1811,2769,3217.2478661958435,47.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15999.5,0.0,11250.0,3,9,7.0,2,1.0 -1812,2771,2360.0516188845054,60.0,111,0.0,62,3,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,57720.05,0.0,58130.0,3,6,5.0,4,3.0 -1813,2772,1996.4174099940776,50.0,111,4540.0,12,1.0,1.0,4.0,2.1,0.0,0.0,0.0,3520.0,0.0,0.0,41808.45,0.0,3410.0,2,7,5.0,4,1.0 -1814,2773,2325.6828298789114,77.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24300.0,0.0,0.0,22291.05,0.0,0.0,1,0,2.0,3,0.0 -1815,2774,4989.166606567034,21.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3558.0,0.0,0.0,3,10,8.0,1,1.0 -1816,2775,3647.041917415096,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14640.0,0.0,0.0,16138.0,0.0,0.0,3,8,7.0,1,0.0 -1817,2776,3412.801887997706,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15840.0,0.0,0.0,16113.7,0.0,0.0,1,8,7.0,1,0.0 -1818,2777,3448.000994325675,48.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22679.55,0.0,22870.0,3,10,8.0,1,1.0 -1819,2778,5019.515462323959,38.0,111,9510.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37662.3,0.0,31050.0,2,6,5.0,3,2.0 -1820,2779,2018.3820745129794,66.0,300,230.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17480.0,0.0,0.0,17556.4,0.0,0.0,1,0,0.0,3,0.0 -1821,2780,1308.736621010999,40.0,112,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35925.6,0.0,34790.0,3,6,1.0,4,2.0 -1822,2781,1923.114297906965,68.0,111,780.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31650.0,0.0,0.0,29659.8,0.0,0.0,1,6,4.0,3,0.0 -1823,2782,2244.4356973186823,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10940.0,0.0,0.0,10503.0,0.0,0.0,1,7,6.0,1,0.0 -1824,2784,2048.614990510685,56.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26467.0,0.0,28610.0,1,8,6.0,3,1.0 -1825,2787,1797.0387763497645,43.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,25.0,0.0,52988.65,0.0,53780.0,2,8,7.0,4,2.0 -1826,2789,2173.051391522398,62.0,112,25860.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,36740.0,331.0,0.0,59555.75,0.0,0.0,1,10,0.0,3,1.0 -1827,2790,3683.2715462297965,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12970.0,0.0,0.0,13306.0,0.0,0.0,3,8,6.0,1,0.0 -1828,2792,1902.379159793667,40.0,300,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,6.0,0.0,45929.4,0.0,42680.0,1,0,0.0,4,2.0 -1829,2793,2764.248585586223,47.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,97631.7,0.0,120740.0,2,10,8.0,2,2.0 -1830,2796,2663.126652039853,41.0,111,10160.0,43,1.0,0.0,5.0,2.6,0.0,1630.0,0.0,0.0,0.0,0.0,37386.0,40.0,11670.0,3,10,8.0,2,1.0 -1831,2797,3893.947200595317,81.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32970.0,0.0,0.0,30859.5,0.0,0.0,1,9,7.0,3,0.0 -1832,2798,1259.9658794191603,51.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42641.35,0.0,44900.0,5,8,7.0,3,2.0 -1833,2799,3714.9539601003926,31.0,112,100.0,65,2.0,2.0,6.0,3.1,0.0,0.0,0.0,20610.0,0.0,0.0,54147.45,0.0,29960.0,2,7,0.0,5,2.0 -1834,2800,2234.041976640884,73.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13730.0,0.0,0.0,15618.05,0.0,0.0,1,9,2.0,1,0.0 -1835,2801,3725.0733394558088,38.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,166.0,0.0,55657.0,0.0,66880.0,3,9,7.0,1,1.0 -1836,2802,3529.7229864613246,36.0,112,3470.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20730.15,0.0,18870.0,2,9,3.0,1,1.0 -1837,2803,1607.556524091284,63.0,300,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,12420.0,0.0,0.0,15510.55,0.0,2920.0,3,0,0.0,1,1.0 -1838,2804,2075.4837738007104,57.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,35.0,0.0,42175.15,0.0,49210.0,2,8,7.0,3,1.0 -1839,2805,1364.032434929964,42.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41865.35,0.0,34320.0,2,9,7.0,2,1.0 -1840,2809,3423.4615451295963,74.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14020.0,0.0,0.0,13041.0,0.0,0.0,1,0,0.0,3,0.0 -1841,2810,1964.886708387304,52.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,74508.15,0.0,84510.0,1,8,7.0,4,2.0 -1842,2811,2896.12463745764,47.0,111,10090.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13715.7,0.0,1040.0,3,7,6.0,1,1.0 -1843,2814,3687.4077517354963,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,60000.0,0.0,0.0,59824.5,0.0,0.0,3,9,7.0,1,0.0 -1844,2816,1720.1567259757703,42.0,300,7690.0,52,1.0,0.0,5.0,2.6,970.0,0.0,0.0,7390.0,0.0,0.0,26390.0,0.0,220.0,3,0,0.0,4,1.0 -1845,2818,947.84469880572,46.0,112,2890.0,55,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50920.9,0.0,47070.0,2,9,1.0,4,2.0 -1846,2820,4048.0893655616123,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4683.0,0.0,0.0,3,9,7.0,1,0.0 -1847,2821,2215.406171169678,82.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16420.0,0.0,0.0,16708.1,0.0,0.0,1,0,0.0,3,0.0 -1848,2822,2703.00450498536,57.0,300,0.0,78,0.0,0.0,2.0,1.5,5150.0,0.0,0.0,18100.0,0.0,0.0,27444.0,0.0,0.0,1,0,0.0,3,0.0 -1849,2828,1233.1663470550386,44.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,270.0,0.0,0.0,0.0,0.0,20106.05,1300.0,17310.0,3,6,4.0,2,1.0 -1850,2829,1461.4973392058728,48.0,112,0.0,13,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,76049.85,0.0,12070.0,1,7,0.0,4,2.0 -1851,2830,1170.7404016285004,60.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32370.0,0.0,0.0,29919.15,0.0,0.0,2,3,4.0,3,0.0 -1852,2832,4346.4696882170865,52.0,111,0.0,54,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,34499.45,0.0,23020.0,3,4,3.0,2,2.0 -1853,2833,3611.43813250149,46.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,13035.0,0.0,500.0,1,8,6.0,2,1.0 -1854,2834,2368.017165386608,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23270.0,0.0,0.0,27642.85,0.0,1190.0,3,8,7.0,1,0.0 -1855,2837,2706.9873666813387,30.0,112,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35870.65,0.0,35040.0,5,9,0.0,4,2.0 -1856,2838,2764.612596429161,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,2460.0,5730.0,0.0,0.0,10934.0,0.0,0.0,3,5,4.0,1,0.0 -1857,2839,984.2721322434669,52.0,111,18080.0,38,3,1.0,5.0,2.8,0.0,0.0,0.0,0.0,990.0,0.0,99581.6,0.0,84900.0,1,7,5.0,4,3.0 -1858,2842,966.8934607754778,45.0,111,0.0,34,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,67407.5,0.0,63280.0,2,9,7.0,4,2.0 -1859,2844,838.8061032995756,51.0,111,8210.0,53,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56199.75,0.0,49570.0,1,8,7.0,4,2.0 -1860,2845,3272.513308083585,83.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37720.0,0.0,0.0,34287.25,0.0,0.0,1,9,7.0,1,0.0 -1861,2847,1784.9306140478825,66.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12870.0,0.0,0.0,14070.0,0.0,0.0,3,0,0.0,1,0.0 -1862,2849,2462.521156494655,25.0,221,7910.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25367.0,0.0,17790.0,3,1,3.0,3,2.0 -1863,2850,1373.3773735315667,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16210.0,0.0,0.0,17633.85,0.0,0.0,1,7,5.0,1,0.0 -1864,2852,2430.155438019389,54.0,111,6050.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10469.25,0.0,3010.0,3,9,7.0,1,1.0 -1865,2853,3151.3216968469637,30.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,750.0,0.0,0.0,0.0,0.0,23671.0,2310.0,13530.0,3,10,8.0,4,1.0 -1866,2855,3534.546276185687,32.0,120,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25996.85,0.0,18120.0,3,0,3.0,4,1.0 -1867,2856,4216.160857620018,65.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52610.0,0.0,0.0,49301.85,0.0,0.0,1,1,2.0,3,0.0 -1868,2857,918.1686672378848,55.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39509.9,0.0,43360.0,1,7,5.0,3,2.0 -1869,2860,3061.357195858638,37.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,3640.0,0.0,0.0,41807.9,0.0,36960.0,1,10,8.0,4,2.0 -1870,2861,1941.7168320701155,51.0,111,0.0,37,3,3.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,102089.3,0.0,115250.0,1,10,8.0,4,3.0 -1871,2862,1471.2203730849012,60.0,221,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,4510.0,9290.0,0.0,0.0,27861.4,0.0,0.0,1,1,1.0,3,0.0 -1872,2863,2467.084439116217,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24990.0,110.0,0.0,24016.9,0.0,0.0,1,8,7.0,3,0.0 -1873,2866,2069.039222381633,42.0,400,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50208.0,0.0,50250.0,2,0,0.0,4,2.0 -1874,2867,1650.7358889040818,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52480.0,571.0,0.0,50228.15,0.0,0.0,1,9,7.0,3,0.0 -1875,2868,2814.4006968203234,70.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24330.0,0.0,0.0,23166.45,0.0,0.0,1,0,0.0,1,0.0 -1876,2870,2837.6830267461874,32.0,111,3100.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,74.0,0.0,13494.5,0.0,10470.0,1,10,8.0,1,1.0 -1877,2872,1490.649810857113,44.0,112,1890.0,47,2.0,2.0,5.0,2.6,0.0,0.0,0.0,13780.0,0.0,0.0,53359.3,0.0,34830.0,2,10,0.0,4,2.0 -1878,2873,3775.3446422064853,79.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12400.0,0.0,0.0,14440.0,0.0,0.0,3,9,7.0,1,0.0 -1879,2874,1434.0840466182458,37.0,112,0.0,65,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,56720.1,0.0,50020.0,1,6,0.0,4,2.0 -1880,2876,3943.2067047917917,63.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,15180.0,0.0,0.0,31031.1,0.0,16600.0,3,9,7.0,4,1.0 -1881,2878,1466.5182700346252,88.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,2360.0,6450.0,0.0,0.0,11863.0,0.0,0.0,5,3,4.0,1,0.0 -1882,2879,2746.696512201908,48.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,66962.45,0.0,66430.0,2,9,7.0,4,2.0 -1883,2880,2969.367234390353,85.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11930.0,0.0,0.0,12668.0,0.0,0.0,5,0,0.0,1,0.0 -1884,2885,1769.4615161136937,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40610.0,0.0,0.0,36583.1,0.0,0.0,1,5,4.0,3,0.0 -1885,2887,2368.284222612681,69.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30660.0,0.0,0.0,34114.45,0.0,0.0,1,7,1.0,1,0.0 -1886,2888,1642.0093713965766,86.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22460.0,0.0,0.0,24439.75,0.0,0.0,1,0,0.0,3,0.0 -1887,2889,2096.355841155816,58.0,120,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8060.0,0.0,0.0,29343.3,0.0,24240.0,1,0,1.0,1,1.0 -1888,2892,2090.937070837376,41.0,112,6580.0,38,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46236.15,0.0,32740.0,2,8,0.0,4,2.0 -1889,2893,3359.8825679425104,28.0,400,0.0,85,0.0,0.0,4.0,1.9,0.0,4230.0,0.0,0.0,0.0,0.0,17446.0,0.0,200.0,3,0,0.0,2,0.0 -1890,2894,2061.2487580303036,39.0,111,8100.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47075.85,0.0,41340.0,2,4,4.0,4,2.0 -1891,2895,1829.0066577806072,60.0,400,0.0,11,2.0,0.0,3.0,2.0,0.0,0.0,0.0,29430.0,0.0,0.0,30886.9,0.0,0.0,1,0,0.0,5,2.0 -1892,2896,2553.5958987907043,26.0,111,0.0,69,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34205.35,0.0,32390.0,3,4,4.0,4,2.0 -1893,2899,1865.1667681806045,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37690.0,66.0,0.0,36002.4,0.0,0.0,5,8,1.0,3,0.0 -1894,2900,2352.797497042437,50.0,111,0.0,42,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30738.7,0.0,32100.0,3,9,7.0,2,2.0 -1895,2901,1180.1658805917286,30.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,84602.15,0.0,107880.0,1,8,2.0,5,2.0 -1896,2903,3068.8584136510926,87.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,48320.0,0.0,0.0,49895.95,0.0,0.0,1,9,7.0,1,0.0 -1897,2905,3543.340908663511,27.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25125.35,0.0,27510.0,3,10,8.0,1,1.0 -1898,2907,3636.3480971243976,55.0,111,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,8360.0,0.0,0.0,31012.5,0.0,23960.0,3,6,4.0,3,2.0 -1899,2908,2463.923687863255,61.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,6140.0,0.0,0.0,37537.7,0.0,31620.0,1,9,7.0,3,1.0 -1900,2909,3753.5541215459084,51.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17047.75,0.0,17190.0,3,7,0.0,1,1.0 -1901,2910,3304.906966249212,87.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7400.0,0.0,0.0,7455.75,0.0,0.0,1,9,7.0,1,0.0 -1902,2911,4612.75098775012,50.0,221,3640.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6836.0,0.0,710.0,4,1,2.0,1,1.0 -1903,2913,3171.1915154891803,56.0,400,1590.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20828.8,0.0,19790.0,3,0,0.0,3,2.0 -1904,2914,3268.289439667315,63.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32450.85,0.0,35320.0,2,10,8.0,1,1.0 -1905,2915,1090.6801327665903,74.0,111,5840.0,74,1.0,0.0,3.0,2.0,0.0,5320.0,0.0,33750.0,0.0,0.0,49035.05,650.0,610.0,1,10,8.0,4,1.0 -1906,2916,1970.2702784832481,25.0,111,10120.0,63,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40953.35,0.0,32200.0,1,9,7.0,5,3.0 -1907,2917,3058.146286343289,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8490.0,0.0,0.0,8449.85,0.0,0.0,1,7,5.0,1,0.0 -1908,2920,1592.7555472500553,35.0,112,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37023.95,0.0,36850.0,2,9,1.0,4,2.0 -1909,2921,1805.7140235814413,58.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,63009.65,0.0,68240.0,1,6,4.0,3,2.0 -1910,2922,1452.4031815337746,51.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21944.2,0.0,21240.0,1,0,0.0,1,1.0 -1911,2923,2465.3634913575843,74.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19420.0,0.0,0.0,19163.2,0.0,0.0,1,0,0.0,3,0.0 -1912,2924,2752.175413938268,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,6400.0,1950.0,0.0,0.0,9493.95,0.0,0.0,5,9,7.0,1,0.0 -1913,2925,1768.7178744390476,55.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,3020.0,0.0,0.0,27603.05,0.0,25900.0,3,7,5.0,3,1.0 -1914,2926,2354.4755139003814,41.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19593.05,0.0,20360.0,3,5,4.0,1,1.0 -1915,2928,1819.354671981221,39.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33182.9,0.0,34020.0,3,5,4.0,4,2.0 -1916,2929,3330.716868638484,43.0,111,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,57227.75,0.0,48660.0,3,9,7.0,4,2.0 -1917,2936,2271.174883803349,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23890.0,0.0,0.0,23957.55,0.0,0.0,5,8,7.0,3,0.0 -1918,2938,1693.7670491675376,66.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17160.0,24.0,0.0,15813.8,0.0,0.0,1,6,4.0,3,0.0 -1919,2939,3081.5257019644605,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21510.0,0.0,0.0,20825.1,0.0,0.0,3,10,8.0,1,0.0 -1920,2940,1056.4653943290273,67.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26860.0,1370.0,0.0,37312.9,0.0,0.0,1,6,0.0,3,0.0 -1921,2941,2425.2032747325393,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18470.0,0.0,0.0,17790.2,0.0,0.0,1,7,5.0,1,0.0 -1922,2944,1320.4092621876307,42.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,42.0,0.0,37619.9,0.0,35350.0,1,8,1.0,4,2.0 -1923,2948,3217.79103730578,53.0,300,0.0,11,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13960.0,0.0,0.0,28929.75,0.0,0.0,1,0,0.0,5,1.0 -1924,2949,1374.737857259697,55.0,221,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42411.65,0.0,46180.0,2,1,3.0,3,2.0 -1925,2951,5320.167096010601,22.0,221,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17892.15,0.0,18050.0,3,1,2.0,1,1.0 -1926,2953,2026.1756192541945,31.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36746.2,0.0,25460.0,3,7,5.0,4,2.0 -1927,2954,2249.775236950232,47.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19565.8,0.0,20350.0,3,8,0.0,1,1.0 -1928,2955,2696.7625761400063,68.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28370.0,0.0,0.0,28163.05,0.0,0.0,5,9,7.0,3,0.0 -1929,2957,4217.007257374969,21.0,111,1080.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9997.1,0.0,8960.0,1,9,7.0,1,1.0 -1930,2958,3683.5744815912317,42.0,111,0.0,21,3,0.0,5.0,3.0,0.0,11190.0,0.0,0.0,0.0,0.0,12301.0,0.0,0.0,2,5,4.0,4,3.0 -1931,2963,2176.9539165859524,51.0,112,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40217.25,0.0,42820.0,2,10,0.0,4,2.0 -1932,2964,2739.946157139718,54.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18788.3,0.0,17330.0,1,9,7.0,2,1.0 -1933,2965,2222.1767775809276,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16590.0,0.0,0.0,20519.2,0.0,0.0,1,9,7.0,1,0.0 -1934,2967,3056.250300927976,52.0,111,0.0,85,0.0,0.0,2.0,1.5,0.0,7240.0,0.0,0.0,0.0,0.0,12428.0,0.0,0.0,3,10,8.0,2,0.0 -1935,2968,2026.267350224992,60.0,111,0.0,34,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,53725.4,0.0,44220.0,1,9,7.0,5,1.0 -1936,2969,1446.0068839339533,44.0,111,0.0,33,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,54919.45,0.0,51740.0,1,9,7.0,4,1.0 -1937,2970,1003.3186548505748,54.0,111,0.0,31,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,1253.0,0.0,91526.85,0.0,82920.0,2,7,5.0,4,2.0 -1938,2971,2698.319176367813,56.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35984.5,0.0,36740.0,1,8,1.0,3,1.0 -1939,2972,2030.5980112498312,40.0,112,0.0,55,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34623.1,0.0,35300.0,2,8,0.0,4,2.0 -1940,2974,2384.8528400319974,32.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,28.0,0.0,16720.85,0.0,17330.0,3,8,7.0,1,1.0 -1941,2975,4502.633992842735,53.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57193.35,0.0,61680.0,3,5,4.0,3,2.0 -1942,2976,3478.719771605141,24.0,111,0.0,34,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9066.2,0.0,2700.0,3,8,6.0,1,1.0 -1943,2977,1616.6847696780312,44.0,112,0.0,62,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,28204.45,0.0,19760.0,3,8,1.0,4,2.0 -1944,2979,3173.797127312839,42.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50954.0,0.0,51290.0,2,7,0.0,4,2.0 -1945,2980,2809.901376289566,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1680.0,0.0,0.0,-0.0,0.0,0.0,1,9,7.0,1,0.0 -1946,2981,2366.0672874893166,33.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57625.15,0.0,54360.0,2,10,0.0,4,2.0 -1947,2982,2917.6609468259935,25.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,83606.35,0.0,100120.0,3,9,7.0,3,2.0 -1948,2984,2750.1550273351572,43.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,31733.2,0.0,38300.0,5,10,8.0,1,1.0 -1949,2986,4953.688692932792,27.0,221,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43414.85,0.0,38660.0,3,1,1.0,4,2.0 -1950,2987,5258.282653290866,46.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,7290.0,0.0,0.0,0.0,0.0,13020.0,0.0,320.0,3,5,4.0,2,0.0 -1951,2988,1167.3201389752487,61.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39730.0,0.0,0.0,39064.3,0.0,0.0,2,8,7.0,3,0.0 -1952,2990,3312.1923800923664,46.0,111,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,30596.0,0.0,20830.0,3,9,7.0,4,1.0 -1953,2991,1970.9750646558132,42.0,111,0.0,43,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44592.95,0.0,32400.0,2,10,8.0,2,1.0 -1954,2992,2473.264337072564,47.0,221,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21557.75,0.0,17700.0,3,1,2.0,2,1.0 -1955,2993,2523.535662689929,59.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40860.0,0.0,0.0,46501.65,0.0,8330.0,1,10,8.0,3,0.0 -1956,2997,3677.7026368305533,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,40040.0,33.0,0.0,35568.2,0.0,0.0,1,10,8.0,1,0.0 -1957,2999,1890.9947670018455,45.0,211,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,1100.0,0.0,0.0,20453.25,0.0,18790.0,5,3,3.0,2,1.0 -1958,3004,2693.775497923409,41.0,111,5520.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,15577.45,0.0,8740.0,3,10,8.0,4,2.0 -1959,3005,2735.57089799868,40.0,111,34120.0,22,1.0,1.0,3.0,1.8,0.0,0.0,0.0,38530.0,0.0,0.0,76447.75,0.0,5760.0,2,9,7.0,4,1.0 -1960,3007,2452.542640278197,30.0,400,0.0,65,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25061.25,0.0,24730.0,2,0,0.0,4,1.0 -1961,3008,1579.8619011559974,59.0,112,5960.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53650.0,0.0,0.0,60141.95,0.0,0.0,1,9,0.0,3,0.0 -1962,3009,1866.6553062241255,82.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27130.0,0.0,0.0,35955.2,0.0,10220.0,1,6,0.0,2,0.0 -1963,3010,2995.2469696713706,49.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19373.2,0.0,0.0,3,8,0.0,1,1.0 -1964,3011,2910.1684175043583,41.0,112,0.0,64,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,23458.85,0.0,16710.0,1,8,0.0,4,1.0 -1965,3012,2213.2515235882947,48.0,112,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39674.15,0.0,30040.0,2,10,5.0,4,2.0 -1966,3013,2987.1862132563742,90.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11160.0,0.0,0.0,10900.0,0.0,0.0,1,7,1.0,1,0.0 -1967,3015,3532.0529333557274,64.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27130.0,0.0,0.0,27146.0,0.0,0.0,1,0,0.0,3,0.0 -1968,3017,3113.065365442685,59.0,111,0.0,78,1.0,0.0,2.0,1.5,8750.0,0.0,0.0,0.0,0.0,0.0,11738.0,0.0,0.0,3,8,6.0,2,1.0 -1969,3019,1615.9514130415719,58.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52935.6,0.0,57870.0,1,6,5.0,3,2.0 -1970,3020,941.4177403789014,46.0,112,0.0,46,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,49345.85,0.0,45240.0,2,10,1.0,4,2.0 -1971,3021,3939.629536891034,59.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40444.3,0.0,40000.0,3,10,8.0,4,2.0 -1972,3022,2929.6501569023485,43.0,120,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30004.75,0.0,28290.0,2,0,3.0,4,2.0 -1973,3023,2132.937896989455,69.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16000.0,0.0,0.0,26163.2,0.0,0.0,1,0,1.0,3,0.0 -1974,3024,3116.042200393504,83.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11450.0,0.0,0.0,11450.0,0.0,0.0,3,6,0.0,1,0.0 -1975,3025,1858.1936982666718,34.0,300,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35165.7,0.0,36000.0,2,0,0.0,3,2.0 -1976,3026,5532.728934741899,48.0,111,2030.0,56,2.0,1.0,3.0,2.0,0.0,0.0,0.0,670.0,0.0,0.0,21465.0,0.0,14640.0,3,10,8.0,2,2.0 -1977,3028,2649.1528218989815,45.0,120,0.0,45,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31479.3,0.0,26450.0,2,0,0.0,2,1.0 -1978,3029,1836.183015244713,57.0,112,0.0,11,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15230.0,0.0,0.0,65172.55,0.0,6360.0,1,7,0.0,3,1.0 -1979,3030,1434.496007083593,57.0,112,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,29880.0,43.0,0.0,45223.4,0.0,17860.0,1,9,3.0,3,1.0 -1980,3031,3016.6086218288146,81.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20980.0,0.0,0.0,20430.85,0.0,0.0,1,9,2.0,1,0.0 -1981,3035,3099.383423099628,40.0,120,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44128.8,0.0,43280.0,1,0,2.0,4,2.0 -1982,3039,2037.7726380182671,51.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16100.15,0.0,12410.0,3,6,4.0,2,1.0 -1983,3040,1991.0298763074604,55.0,112,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33632.05,0.0,34640.0,1,9,0.0,3,1.0 -1984,3041,5803.393740619236,69.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33830.0,0.0,0.0,32768.0,0.0,0.0,1,9,3.0,3,0.0 -1985,3042,2051.8227027840167,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,84620.0,1052.0,0.0,73686.05,0.0,0.0,1,9,7.0,3,0.0 -1986,3045,982.0171809965912,51.0,112,11380.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,6.0,0.0,47654.35,0.0,28540.0,1,8,1.0,5,4.0 -1987,3046,1594.9191993054353,42.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49820.65,0.0,50250.0,2,6,5.0,4,2.0 -1988,3048,1688.0800572040362,44.0,300,0.0,64,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45881.9,0.0,44240.0,3,0,0.0,4,3.0 -1989,3049,1788.4490170149006,48.0,112,1280.0,62,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38846.7,0.0,37220.0,3,9,3.0,4,1.0 -1990,3050,7186.1179909353605,49.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30726.4,0.0,35130.0,3,10,8.0,1,1.0 -1991,3051,3023.6306715503465,39.0,112,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,255.0,0.0,39785.8,0.0,41760.0,1,7,0.0,3,1.0 -1992,3053,3381.0032656079698,72.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21520.0,21.0,0.0,21254.45,0.0,0.0,1,1,1.0,1,0.0 -1993,3055,1238.486569347579,50.0,111,2310.0,52,1.0,1.0,5.0,2.4,0.0,380.0,0.0,0.0,0.0,0.0,22520.1,1210.0,8690.0,3,8,7.0,4,1.0 -1994,3056,2759.9722104666075,33.0,112,470.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39579.5,0.0,40020.0,2,8,0.0,3,2.0 -1995,3057,3486.4123121095868,59.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10460.0,0.0,0.0,23041.0,0.0,14300.0,3,0,0.0,1,0.0 -1996,3058,1188.7222103935374,43.0,111,1410.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,53878.2,0.0,36090.0,2,6,4.0,4,2.0 -1997,3060,2691.5115509039238,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15260.0,0.0,0.0,14899.5,0.0,0.0,1,9,7.0,1,0.0 -1998,3063,1858.9180112705913,50.0,400,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40178.45,0.0,40130.0,1,0,0.0,4,2.0 -1999,3065,1137.2149004013957,42.0,111,19120.0,46,3,2.0,6.0,2.9,0.0,0.0,0.0,4240.0,0.0,0.0,71242.9,0.0,48570.0,2,9,7.0,4,3.0 -2000,3066,3144.6131598108864,25.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36835.3,0.0,35580.0,3,10,8.0,3,2.0 -2001,3067,3908.315330837478,55.0,111,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23136.1,0.0,0.0,1,10,8.0,3,2.0 -2002,3068,3051.7184565834305,30.0,111,7650.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9440.3,0.0,0.0,5,9,7.0,1,1.0 -2003,3069,1524.9285359252117,56.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30835.1,0.0,32120.0,2,7,5.0,4,2.0 -2004,3070,3442.100844372876,63.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36550.0,1147.0,0.0,53139.75,0.0,0.0,1,0,0.0,3,0.0 -2005,3071,1909.2941572073523,40.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41283.7,0.0,39770.0,2,8,7.0,4,2.0 -2006,3072,1860.8548170159265,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14550.0,0.0,0.0,14714.0,0.0,100.0,5,7,6.0,1,0.0 -2007,3073,1617.3074159046791,32.0,400,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,493.0,0.0,50618.2,0.0,45070.0,2,0,0.0,4,2.0 -2008,3074,2167.527300327234,75.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37870.0,0.0,0.0,35237.9,0.0,0.0,1,6,1.0,3,0.0 -2009,3077,2599.8040741573263,43.0,120,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47659.75,0.0,45030.0,2,0,0.0,4,2.0 -2010,3078,2963.6282469767325,24.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21464.1,0.0,21140.0,3,8,6.0,1,1.0 -2011,3079,1341.1441216722587,72.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12270.0,0.0,0.0,12284.0,0.0,0.0,5,8,0.0,1,0.0 -2012,3080,4230.477256080595,53.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20085.1,0.0,0.0,1,9,7.0,1,1.0 -2013,3081,3699.376680771543,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12724.0,0.0,4680.0,3,9,7.0,1,0.0 -2014,3082,3873.904739636242,65.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13880.0,0.0,0.0,13518.05,0.0,0.0,1,1,1.0,1,0.0 -2015,3084,2520.493697828362,40.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16210.0,0.0,0.0,36095.75,0.0,20770.0,3,9,7.0,2,1.0 -2016,3086,2906.22162567287,88.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11560.0,0.0,0.0,12936.0,0.0,0.0,3,4,3.0,1,0.0 -2017,3090,1875.9738609196131,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14280.0,0.0,0.0,14697.0,0.0,0.0,1,8,6.0,1,0.0 -2018,3091,3443.4783444121376,41.0,221,0.0,62,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,27805.0,920.0,16810.0,3,1,1.0,4,1.0 -2019,3094,2140.7509979871647,29.0,111,0.0,81,1.0,0.0,2.0,1.3,0.0,7290.0,0.0,0.0,0.0,0.0,9091.5,0.0,0.0,3,9,7.0,2,1.0 -2020,3095,1231.8843239149103,67.0,111,0.0,75,0.0,0.0,1.0,1.0,1080.0,0.0,0.0,0.0,0.0,0.0,1234.65,0.0,0.0,1,7,5.0,1,0.0 -2021,3096,5072.038349043925,37.0,221,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16093.55,0.0,16890.0,3,1,2.0,1,1.0 -2022,3097,1547.3100208196383,48.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15990.0,0.0,0.0,48585.1,0.0,37870.0,1,6,2.0,3,1.0 -2023,3098,1918.1448104363951,38.0,400,0.0,11,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,148426.1,0.0,37630.0,2,0,0.0,4,2.0 -2024,3099,2889.7154814322453,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14770.0,0.0,0.0,15344.0,0.0,0.0,3,6,4.0,3,0.0 -2025,3100,2843.8166821262275,26.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18983.35,0.0,20320.0,3,5,4.0,1,1.0 -2026,3101,2335.042643570441,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50380.0,39.0,0.0,51549.35,0.0,0.0,1,10,8.0,3,0.0 -2027,3102,1135.7600496606985,75.0,300,3680.0,78,1.0,0.0,3.0,2.0,0.0,230.0,0.0,17660.0,0.0,0.0,31605.7,2160.0,7320.0,1,0,0.0,4,1.0 -2028,3104,3015.0958697275587,31.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51104.2,0.0,49320.0,3,10,8.0,3,2.0 -2029,3105,3406.9534507732164,28.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7993.0,0.0,8040.0,5,10,8.0,1,1.0 -2030,3106,3105.14694765005,30.0,111,530.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21866.6,0.0,22910.0,3,9,7.0,1,1.0 -2031,3107,1573.2204541835097,59.0,112,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25072.25,0.0,24590.0,1,7,0.0,3,1.0 -2032,3108,2618.4096064492655,51.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2570.0,0.0,0.0,22596.85,0.0,16400.0,1,8,6.0,1,1.0 -2033,3109,2334.411949866757,45.0,120,0.0,45,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,59275.95,0.0,65230.0,1,0,0.0,4,3.0 -2034,3111,3084.0481756486615,75.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12910.0,0.0,0.0,27943.1,0.0,0.0,5,0,0.0,1,0.0 -2035,3112,4754.214154167581,36.0,400,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12348.95,0.0,0.0,1,0,0.0,1,1.0 -2036,3113,2412.569566083953,44.0,111,6240.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18927.45,0.0,13810.0,3,6,4.0,1,1.0 -2037,3114,2891.0688078049684,41.0,111,0.0,11,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52990.4,0.0,3070.0,1,8,6.0,4,2.0 -2038,3118,2739.1240983472126,25.0,111,7150.0,67,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16422.75,0.0,5120.0,3,9,7.0,2,1.0 -2039,3119,3715.260833737176,36.0,400,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44446.15,0.0,44180.0,5,0,0.0,4,2.0 -2040,3120,2321.8667049594364,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24670.0,0.0,0.0,40763.95,0.0,19060.0,3,9,7.0,3,0.0 -2041,3123,1031.709056775372,63.0,111,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,34440.0,0.0,0.0,32403.3,0.0,0.0,3,7,5.0,4,0.0 -2042,3124,1780.6289016710969,83.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13240.0,0.0,0.0,14100.9,0.0,0.0,1,6,4.0,3,0.0 -2043,3125,3463.7269510055985,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9224.35,0.0,6260.0,3,8,6.0,1,0.0 -2044,3126,2855.2985782405267,33.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44181.55,0.0,43840.0,2,10,8.0,4,2.0 -2045,3127,3075.368337831215,46.0,112,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28078.8,0.0,29960.0,2,7,2.0,1,1.0 -2046,3128,3132.417165477831,43.0,111,0.0,67,2.0,2.0,4.0,2.5,4780.0,0.0,0.0,20760.0,0.0,0.0,51307.6,0.0,27660.0,2,5,4.0,4,2.0 -2047,3129,2193.1104563641115,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41470.0,0.0,0.0,46665.2,0.0,0.0,1,8,6.0,3,0.0 -2048,3130,2658.0382874654265,64.0,111,4840.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,25290.0,0.0,0.0,35528.7,0.0,8590.0,1,7,5.0,4,1.0 -2049,3131,4340.196672527799,47.0,111,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26932.15,0.0,18610.0,3,10,8.0,4,1.0 -2050,3133,2566.9256456019643,34.0,300,0.0,53,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,3.0,0.0,33618.45,0.0,26940.0,3,0,0.0,4,2.0 -2051,3134,2647.58801487939,39.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,4.0,0.0,35324.6,0.0,36490.0,3,10,5.0,3,2.0 -2052,3136,3607.525804535764,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8404.0,0.0,0.0,3,10,8.0,1,0.0 -2053,3137,835.9733988566495,60.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24485.65,0.0,26030.0,1,10,0.0,2,1.0 -2054,3138,2348.6698027971916,23.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26864.3,0.0,16290.0,3,8,0.0,4,2.0 -2055,3139,1608.1305087694268,50.0,111,16800.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,70746.95,0.0,62600.0,2,9,7.0,3,2.0 -2056,3141,1349.679194109781,60.0,112,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3393.0,0.0,101992.6,0.0,14540.0,1,6,0.0,3,2.0 -2057,3142,7739.9710500111805,38.0,120,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52664.35,0.0,53940.0,2,0,0.0,4,2.0 -2058,3143,3507.1100542125546,61.0,111,10010.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26290.0,100.0,0.0,40848.2,0.0,9100.0,1,8,7.0,3,0.0 -2059,3144,1153.3694549780603,54.0,111,0.0,48,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,62800.35,0.0,55610.0,3,9,7.0,4,2.0 -2060,3145,2361.3985610674795,35.0,112,0.0,13,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,31.0,0.0,32964.45,0.0,16840.0,2,9,0.0,4,2.0 -2061,3146,2914.0720115774757,22.0,112,680.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27255.0,0.0,26660.0,3,6,0.0,3,2.0 -2062,3149,3029.8287581028007,42.0,111,130.0,56,2.0,2.0,4.0,2.3,0.0,0.0,0.0,14700.0,0.0,0.0,19580.95,0.0,1530.0,2,9,7.0,4,2.0 -2063,3150,1720.5870241877735,60.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25130.0,0.0,0.0,22621.4,0.0,0.0,1,10,5.0,5,0.0 -2064,3151,3433.6703439684347,54.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,9770.0,0.0,0.0,14456.0,0.0,0.0,3,9,7.0,4,0.0 -2065,3153,3073.3458848665564,60.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34650.0,0.0,0.0,32686.55,0.0,1070.0,3,9,7.0,3,0.0 -2066,3154,1041.2045132635324,53.0,112,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37777.4,0.0,38550.0,2,8,0.0,4,2.0 -2067,3156,2097.980570698764,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34000.0,0.0,0.0,31403.05,0.0,0.0,1,9,7.0,3,0.0 -2068,3158,1391.3681389091105,47.0,300,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,21443.2,0.0,15160.0,2,0,0.0,4,1.0 -2069,3159,2501.144878806943,49.0,221,0.0,38,2.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,120.0,0.0,81153.3,0.0,73080.0,3,1,1.0,4,2.0 -2070,3160,1803.6738944609835,44.0,112,0.0,34,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,82133.2,0.0,72760.0,1,8,0.0,4,2.0 -2071,3161,953.3943051901816,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46910.0,147.0,0.0,44061.6,0.0,0.0,1,7,5.0,3,0.0 -2072,3167,2969.3793881341903,24.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30185.35,0.0,31730.0,3,8,6.0,3,2.0 -2073,3170,3060.486508419527,29.0,120,3450.0,62,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29051.6,0.0,20240.0,3,0,0.0,4,2.0 -2074,3171,3659.656710836596,71.0,111,0.0,78,1.0,0.0,4.0,2.5,0.0,4370.0,1420.0,12670.0,0.0,0.0,21184.0,0.0,0.0,3,8,6.0,5,1.0 -2075,3173,4056.576885641934,60.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30180.0,0.0,0.0,28218.4,0.0,0.0,1,8,7.0,3,0.0 -2076,3174,3306.934573242284,47.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,37070.0,0.0,0.0,74721.25,0.0,44720.0,1,10,8.0,4,1.0 -2077,3176,1524.3981174065666,77.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22630.0,0.0,0.0,21943.2,0.0,0.0,1,7,0.0,3,0.0 -2078,3178,2805.197294276587,55.0,112,18660.0,67,1.0,0.0,2.0,1.5,0.0,0.0,0.0,10000.0,0.0,0.0,32785.1,0.0,4340.0,1,7,1.0,3,1.0 -2079,3181,1806.6585379546977,80.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14650.0,0.0,0.0,13801.7,0.0,0.0,1,0,0.0,3,0.0 -2080,3184,2229.1830760654407,26.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22873.05,0.0,20250.0,3,9,7.0,4,2.0 -2081,3185,1962.0948828268076,57.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40713.3,0.0,51100.0,1,10,8.0,3,2.0 -2082,3186,3515.755760851028,34.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,47.0,0.0,35024.15,0.0,39410.0,2,10,8.0,1,1.0 -2083,3187,4047.1804729435858,55.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36772.7,0.0,38050.0,3,10,8.0,2,2.0 -2084,3188,2420.969565688291,28.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,78127.1,0.0,77570.0,2,8,0.0,3,2.0 -2085,3190,3006.904522657889,59.0,111,0.0,54,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,26637.35,0.0,28950.0,3,10,8.0,4,3.0 -2086,3191,4209.767126130429,26.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,2050.0,0.0,0.0,0.0,0.0,26227.0,150.0,16930.0,3,10,8.0,1,1.0 -2087,3193,3033.864568310367,47.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18647.5,0.0,18860.0,3,9,7.0,1,1.0 -2088,3194,3066.191451011608,31.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,22330.9,2810.0,10380.0,3,6,5.0,2,1.0 -2089,3195,1821.335823340186,29.0,212,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39132.8,0.0,36690.0,2,2,0.0,4,2.0 -2090,3197,1549.0321687227306,38.0,300,6150.0,11,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,30259.75,0.0,0.0,5,0,0.0,4,2.0 -2091,3198,2601.7404636168344,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42890.0,0.0,0.0,42771.15,0.0,0.0,1,9,7.0,3,0.0 -2092,3203,2583.999380556473,52.0,112,0.0,68,1.0,1.0,4.0,2.3,230.0,0.0,0.0,7820.0,0.0,0.0,27842.8,0.0,17480.0,2,9,0.0,4,1.0 -2093,3204,1220.4054449685184,45.0,111,5770.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,2870.0,0.0,0.0,17959.0,0.0,0.0,3,6,4.0,2,1.0 -2094,3205,2956.345253706885,61.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38790.0,0.0,0.0,35502.25,0.0,0.0,1,9,7.0,3,0.0 -2095,3207,1755.6375947952224,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54430.0,0.0,0.0,50511.5,0.0,0.0,1,5,0.0,3,0.0 -2096,3209,2189.2084499343528,81.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27670.0,0.0,0.0,26454.95,0.0,0.0,1,3,3.0,3,0.0 -2097,3210,4299.554232591206,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,4532.6,0.0,0.0,3,9,7.0,3,0.0 -2098,3212,2556.173936554413,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8900.0,0.0,0.0,12138.0,0.0,0.0,3,10,8.0,1,0.0 -2099,3214,2844.0070006433507,60.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14500.0,0.0,0.0,26753.8,0.0,14310.0,1,8,0.0,3,1.0 -2100,3216,1700.6601443264838,29.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35325.65,0.0,33990.0,2,6,5.0,4,2.0 -2101,3217,3536.3711559433305,77.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10070.0,0.0,0.0,10012.7,0.0,0.0,1,0,0.0,1,0.0 -2102,3218,7779.891909080402,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7177.0,0.0,0.0,3,6,4.0,1,0.0 -2103,3219,758.1009068520959,40.0,111,0.0,31,2.0,2.0,8.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,236925.55,0.0,91580.0,2,7,5.0,4,2.0 -2104,3221,2278.017134602584,31.0,111,9190.0,55,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,17302.95,0.0,3000.0,3,9,7.0,2,1.0 -2105,3222,1716.3220105336468,57.0,112,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,26110.0,0.0,0.0,194564.7,0.0,248530.0,2,9,0.0,4,2.0 -2106,3223,2598.928061475271,50.0,111,0.0,22,2.0,0.0,3.0,2.0,0.0,9530.0,0.0,0.0,0.0,0.0,15680.0,0.0,0.0,3,8,7.0,2,2.0 -2107,3224,2202.18640639673,45.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,31270.0,60976.65,0.0,25890.0,2,8,6.0,4,2.0 -2108,3225,1636.5953478519966,39.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55740.1,0.0,55750.0,2,7,0.0,4,2.0 -2109,3227,2899.5570268750153,59.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,10,8.0,1,1.0 -2110,3228,3027.8672486443634,41.0,111,0.0,81,1.0,0.0,6.0,2.9,0.0,4350.0,0.0,0.0,0.0,0.0,21968.0,0.0,0.0,3,8,6.0,2,1.0 -2111,3229,1937.1412315631999,65.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12170.0,56.0,16653.0,29678.0,0.0,0.0,1,0,0.0,3,0.0 -2112,3230,2691.8454600607915,93.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17250.0,0.0,0.0,16124.85,0.0,0.0,1,10,8.0,1,0.0 -2113,3231,3544.2085508209584,36.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,31.0,0.0,89275.95,0.0,93260.0,3,10,8.0,4,2.0 -2114,3232,2508.4497164007594,40.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43822.15,0.0,44810.0,2,10,8.0,4,2.0 -2115,3233,691.5812160522004,59.0,300,2120.0,21,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44782.25,0.0,16280.0,1,0,0.0,4,3.0 -2116,3234,3016.206536847871,75.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11780.0,0.0,0.0,10690.8,0.0,0.0,1,0,0.0,1,0.0 -2117,3235,1820.7959780506353,31.0,300,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34683.05,0.0,35030.0,2,0,0.0,4,2.0 -2118,3236,1066.2053320687673,28.0,300,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45293.45,0.0,38440.0,2,0,0.0,4,2.0 -2119,3237,1033.3838600542208,60.0,111,0.0,78,0.0,0.0,2.0,1.5,8750.0,0.0,0.0,13650.0,0.0,0.0,22324.4,0.0,0.0,1,7,5.0,3,0.0 -2120,3239,1766.1839969068749,67.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12790.0,0.0,0.0,32316.15,0.0,16810.0,1,6,0.0,2,1.0 -2121,3240,4287.650751043158,44.0,111,0.0,65,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24764.7,130.0,24010.0,3,8,7.0,4,1.0 -2122,3241,2957.877944537268,40.0,111,0.0,67,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,29.0,0.0,53219.05,0.0,55490.0,2,6,5.0,4,3.0 -2123,3245,2861.776219870092,84.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,4730.0,24530.0,0.0,0.0,27692.85,0.0,0.0,1,10,8.0,1,0.0 -2124,3246,2580.7573357316915,44.0,400,10320.0,68,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,15839.5,0.0,3490.0,1,0,0.0,2,1.0 -2125,3247,3109.1746947288293,88.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26390.0,0.0,0.0,24612.25,0.0,0.0,1,8,6.0,3,0.0 -2126,3248,1813.9794566109406,58.0,111,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34959.3,0.0,24470.0,3,8,7.0,4,1.0 -2127,3250,1745.6422097099764,56.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17790.0,0.0,0.0,24416.6,0.0,8650.0,1,9,7.0,3,1.0 -2128,3252,2682.3886654956987,48.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21721.3,0.0,23800.0,3,8,7.0,1,1.0 -2129,3253,2003.2674810575566,55.0,221,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9139.15,0.0,9340.0,1,1,3.0,1,1.0 -2130,3254,2498.0323174912173,67.0,111,9910.0,77,1.0,0.0,3.0,2.0,0.0,0.0,0.0,15330.0,0.0,0.0,31306.35,0.0,4930.0,3,10,8.0,4,1.0 -2131,3255,3093.6132823431326,73.0,111,0.0,78,2.0,1.0,5.0,3.0,0.0,5080.0,110.0,13580.0,0.0,0.0,42318.55,0.0,23690.0,3,10,8.0,4,2.0 -2132,3256,1429.0817574769894,59.0,212,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18550.0,0.0,0.0,33928.3,0.0,18000.0,1,2,0.0,3,1.0 -2133,3257,3876.6559294034655,46.0,111,7070.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28384.45,0.0,18510.0,3,9,7.0,4,2.0 -2134,3258,1087.8393496460658,59.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55104.4,0.0,60810.0,1,7,5.0,3,2.0 -2135,3259,1944.8772516949878,74.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19320.0,0.0,0.0,18635.55,0.0,0.0,1,7,0.0,3,0.0 -2136,3262,4057.2843758573313,65.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22070.0,0.0,0.0,22122.1,0.0,0.0,3,8,3.0,1,0.0 -2137,3263,3134.4152554517136,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,730.0,12200.0,0.0,0.0,15230.0,0.0,0.0,3,6,5.0,3,0.0 -2138,3265,3918.51680434173,32.0,221,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,13567.25,0.0,12360.0,3,1,2.0,4,2.0 -2139,3267,1480.2799175696673,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30680.0,55.0,0.0,30097.15,0.0,0.0,1,7,1.0,3,0.0 -2140,3268,3889.0579581738994,65.0,112,14520.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40560.0,0.0,0.0,53629.9,0.0,0.0,1,7,0.0,3,0.0 -2141,3271,2188.927906134064,65.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18430.0,0.0,0.0,18523.95,0.0,0.0,3,4,3.0,1,0.0 -2142,3273,1483.7151823130844,60.0,400,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,8040.0,0.0,0.0,23888.05,0.0,16360.0,3,0,1.0,1,1.0 -2143,3275,4374.617947605264,48.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29974.45,0.0,30920.0,3,8,6.0,3,1.0 -2144,3276,2389.132821934647,94.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27180.0,72.0,0.0,27208.85,0.0,0.0,1,5,0.0,1,0.0 -2145,3277,4363.981536565815,30.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22055.7,0.0,23900.0,3,10,8.0,1,1.0 -2146,3278,3244.898504479038,64.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45500.0,0.0,0.0,42182.55,0.0,0.0,1,0,0.0,3,0.0 -2147,3279,2155.1329300622515,85.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10820.0,0.0,0.0,10839.0,0.0,0.0,5,7,5.0,1,0.0 -2148,3280,2339.918535196796,73.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,115730.0,2223.0,0.0,93917.5,0.0,0.0,1,10,8.0,1,0.0 -2149,3281,1827.1443149951763,44.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,82.0,0.0,23198.25,0.0,23780.0,2,8,7.0,2,1.0 -2150,3282,3433.3566498034747,40.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14641.95,0.0,13780.0,2,8,6.0,1,1.0 -2151,3284,2469.76834833758,41.0,111,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20557.65,0.0,17980.0,3,6,5.0,2,1.0 -2152,3287,5070.374054836608,46.0,221,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20159.4,0.0,20680.0,3,1,2.0,1,1.0 -2153,3288,2085.1825051377923,43.0,111,1090.0,34,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,77.0,0.0,98291.3,0.0,83110.0,5,10,8.0,4,2.0 -2154,3289,1386.0483197612434,53.0,300,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,7880.0,0.0,0.0,67888.05,0.0,57830.0,1,0,0.0,4,2.0 -2155,3290,3076.5809732093558,56.0,111,0.0,47,1.0,1.0,1.0,1.0,500.0,0.0,0.0,0.0,0.0,0.0,18411.35,0.0,18910.0,2,9,7.0,1,1.0 -2156,3292,2155.5311399265015,77.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11500.0,0.0,0.0,38655.8,0.0,0.0,5,6,0.0,1,0.0 -2157,3293,3659.426988975299,41.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,650.0,0.0,0.0,0.0,0.0,4221.5,70.0,630.0,3,9,7.0,1,1.0 -2158,3294,1258.9930210194418,63.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39790.0,0.0,0.0,35842.4,0.0,0.0,1,7,5.0,3,0.0 -2159,3295,3534.903669586187,28.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29396.1,0.0,30660.0,2,8,7.0,1,1.0 -2160,3296,1199.3193920673718,41.0,120,0.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,51706.05,0.0,46760.0,2,0,0.0,4,2.0 -2161,3297,3442.436257593905,49.0,211,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57366.8,0.0,63810.0,1,3,3.0,3,2.0 -2162,3298,1072.5820258986228,55.0,111,11870.0,63,3,3.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,73136.15,0.0,65270.0,2,10,8.0,4,4.0 -2163,3299,3027.312082152899,30.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20463.0,0.0,22270.0,3,9,7.0,1,1.0 -2164,3301,4421.706591456032,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18640.0,0.0,0.0,18437.2,0.0,0.0,3,4,3.0,1,0.0 -2165,3302,3729.27456330297,21.0,111,1040.0,63,3,4.0,4.0,2.5,8310.0,0.0,0.0,1630.0,0.0,0.0,57086.2,0.0,49670.0,1,10,8.0,5,4.0 -2166,3303,2822.2288390498065,84.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21130.0,0.0,0.0,19591.35,0.0,0.0,5,0,0.0,1,0.0 -2167,3304,2518.4332735302255,54.0,111,2800.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,6920.0,0.0,0.0,56956.85,0.0,58230.0,2,9,7.0,4,2.0 -2168,3305,1171.8793077754447,70.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,21280.0,0.0,0.0,23109.05,0.0,4070.0,1,7,5.0,1,1.0 -2169,3306,2677.201291177182,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46040.0,0.0,0.0,40289.4,0.0,0.0,1,9,7.0,3,0.0 -2170,3307,4628.653568619504,39.0,400,330.0,63,2.0,2.0,6.0,3.1,0.0,0.0,0.0,2720.0,0.0,0.0,45923.55,0.0,33260.0,2,0,0.0,4,2.0 -2171,3310,2624.4483389660177,85.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28800.0,0.0,0.0,26991.7,0.0,0.0,1,9,7.0,1,0.0 -2172,3312,1265.2654265187844,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25700.0,0.0,0.0,24664.25,0.0,0.0,1,6,5.0,3,0.0 -2173,3313,3800.25576470891,48.0,111,7160.0,55,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25224.05,0.0,18300.0,3,6,5.0,2,2.0 -2174,3315,2063.958783042598,39.0,111,10090.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24837.75,0.0,9990.0,3,8,6.0,3,2.0 -2175,3317,3021.374012051643,43.0,111,0.0,85,0.0,0.0,1.0,1.0,9640.0,0.0,0.0,0.0,0.0,0.0,12295.0,0.0,0.0,3,7,5.0,1,0.0 -2176,3318,869.673734291981,56.0,111,0.0,52,2.0,2.0,2.0,1.5,3410.0,0.0,0.0,0.0,0.0,0.0,30299.3,0.0,28230.0,1,6,5.0,3,2.0 -2177,3319,2819.985687807714,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7983.6,0.0,0.0,3,9,7.0,1,0.0 -2178,3320,1053.3146887616485,80.0,111,0.0,74,0.0,0.0,4.0,2.5,0.0,0.0,0.0,79540.0,47.0,0.0,52714.0,0.0,0.0,1,8,7.0,5,0.0 -2179,3324,2290.618218403288,67.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49690.0,0.0,0.0,46237.25,0.0,0.0,1,0,0.0,3,0.0 -2180,3328,1490.399708202154,55.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,13020.0,0.0,0.0,39121.8,0.0,27070.0,3,8,7.0,1,1.0 -2181,3329,1311.6279885710494,39.0,300,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36452.55,0.0,36630.0,2,0,0.0,4,2.0 -2182,3332,1948.339447696177,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17920.0,0.0,0.0,23654.45,0.0,0.0,1,6,5.0,1,0.0 -2183,3334,2774.1168091212603,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22000.0,0.0,0.0,25341.85,0.0,0.0,1,8,7.0,1,0.0 -2184,3338,2622.186944900243,22.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28220.25,0.0,22040.0,2,9,0.0,4,2.0 -2185,3339,928.6005556631156,47.0,112,4820.0,42,2.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,49857.75,0.0,30790.0,1,8,0.0,4,2.0 -2186,3340,6716.093050097976,42.0,120,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20666.15,0.0,19640.0,3,0,3.0,1,1.0 -2187,3342,2503.109397766893,75.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22740.0,0.0,0.0,22377.05,0.0,0.0,1,0,0.0,3,0.0 -2188,3344,2292.9586039259034,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16240.0,0.0,0.0,15590.5,0.0,0.0,1,9,7.0,3,0.0 -2189,3348,2430.050904493134,48.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15996.2,0.0,17220.0,1,10,8.0,1,1.0 -2190,3349,2699.1638541655134,52.0,111,0.0,21,3,3.0,4.0,2.5,3880.0,0.0,0.0,0.0,0.0,0.0,76871.6,0.0,49430.0,1,10,8.0,4,3.0 -2191,3351,3577.8560864311235,69.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27310.0,0.0,0.0,25973.95,0.0,0.0,1,0,0.0,3,0.0 -2192,3352,2659.2922692836437,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37020.0,0.0,0.0,38762.6,0.0,0.0,1,9,3.0,3,0.0 -2193,3353,4425.357713596701,45.0,111,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,8430.5,0.0,0.0,1,7,5.0,1,0.0 -2194,3354,2540.5428356265074,24.0,111,4550.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13665.55,0.0,6320.0,3,4,4.0,1,1.0 -2195,3355,4027.859781283933,44.0,111,0.0,85,2.0,1.0,4.0,2.5,0.0,9650.0,0.0,0.0,0.0,0.0,16972.0,0.0,3170.0,3,10,8.0,4,2.0 -2196,3358,2493.0092526328617,30.0,111,380.0,85,1.0,1.0,8.0,3.5,0.0,2430.0,8800.0,2530.0,0.0,0.0,44294.0,720.0,14320.0,3,9,7.0,5,1.0 -2197,3361,1183.9638750468496,42.0,300,0.0,11,3,3.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,34695.6,0.0,0.0,1,0,0.0,4,3.0 -2198,3362,2856.88229804661,78.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19050.0,0.0,0.0,17979.45,0.0,0.0,1,8,0.0,1,0.0 -2199,3363,3002.0896179390097,57.0,112,0.0,68,1.0,1.0,2.0,1.5,8200.0,0.0,0.0,0.0,0.0,0.0,27228.95,0.0,19190.0,2,7,2.0,2,1.0 -2200,3364,2753.039482816628,49.0,300,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39363.05,0.0,15920.0,1,0,0.0,4,2.0 -2201,3365,2201.1140280975533,42.0,300,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,17861.65,0.0,0.0,1,0,0.0,2,1.0 -2202,3366,1452.2603942509068,47.0,111,0.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,51540.7,0.0,54070.0,1,6,4.0,4,4.0 -2203,3367,3133.344628214943,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20060.0,0.0,0.0,20451.0,0.0,0.0,3,6,4.0,3,0.0 -2204,3368,2489.1194727737907,23.0,221,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14066.0,0.0,12080.0,3,1,3.0,1,1.0 -2205,3370,3205.3433602623863,54.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,5670.0,0.0,2500.0,0.0,0.0,19258.0,70.0,10980.0,3,8,6.0,2,2.0 -2206,3371,1301.1948561466115,58.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16830.0,12.0,0.0,16202.9,0.0,0.0,1,0,1.0,1,0.0 -2207,3374,3025.921621765115,67.0,111,0.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,29980.0,0.0,0.0,29695.05,0.0,0.0,1,10,8.0,1,1.0 -2208,3375,3853.108032837912,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25020.0,0.0,0.0,26306.9,0.0,0.0,1,9,7.0,2,0.0 -2209,3376,1263.2755803834068,29.0,111,0.0,46,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17534.4,0.0,18460.0,3,9,7.0,1,1.0 -2210,3377,938.2294761397,39.0,112,0.0,47,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,39667.5,0.0,34710.0,1,9,1.0,4,1.0 -2211,3378,2087.0969141270507,37.0,120,190.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30148.95,0.0,27360.0,3,0,2.0,4,2.0 -2212,3380,3677.3004067902543,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10911.0,0.0,0.0,3,9,7.0,1,0.0 -2213,3381,1479.9427713970504,60.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,2650.0,0.0,0.0,67814.45,0.0,64320.0,1,8,7.0,3,2.0 -2214,3382,2785.396135453279,58.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34700.5,0.0,0.0,1,0,0.0,1,0.0 -2215,3383,1102.1488662438358,38.0,120,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44964.75,0.0,42810.0,2,0,0.0,4,2.0 -2216,3384,2187.47723249671,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21500.0,0.0,0.0,20750.8,0.0,0.0,1,6,4.0,1,0.0 -2217,3386,4271.33094644395,46.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27899.25,0.0,29680.0,2,6,5.0,2,1.0 -2218,3387,4761.795820034366,32.0,111,850.0,52,3,3.0,3.0,2.0,0.0,150.0,0.0,0.0,0.0,0.0,34770.4,1110.0,23710.0,3,10,8.0,5,3.0 -2219,3389,3800.7843000546163,43.0,221,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11320.0,0.0,0.0,25379.65,0.0,14780.0,1,1,1.0,2,1.0 -2220,3391,3342.530000329579,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8560.0,0.0,0.0,10312.0,0.0,0.0,3,7,5.0,1,0.0 -2221,3392,8257.78988770933,24.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,14.0,0.0,10325.0,0.0,8290.0,5,10,8.0,1,1.0 -2222,3393,3122.525772789281,60.0,112,6620.0,78,1.0,0.0,3.0,2.0,0.0,0.0,0.0,19470.0,0.0,0.0,32223.75,0.0,7010.0,2,7,0.0,4,1.0 -2223,3397,2822.1607135661034,36.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,86.0,0.0,39615.8,0.0,42650.0,2,8,6.0,3,2.0 -2224,3398,3334.3802161051844,42.0,221,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,54265.85,0.0,55790.0,2,1,1.0,2,1.0 -2225,3399,2291.6180976986197,67.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16850.0,0.0,0.0,16427.0,0.0,0.0,3,0,0.0,1,0.0 -2226,3400,1882.8191347734703,31.0,111,0.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,16.0,0.0,34811.1,0.0,24290.0,2,9,7.0,4,2.0 -2227,3402,2019.7293137967454,82.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18080.0,0.0,0.0,17637.65,0.0,0.0,1,7,5.0,1,0.0 -2228,3403,1280.419965508087,75.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16360.0,0.0,0.0,16839.2,0.0,0.0,1,0,1.0,3,0.0 -2229,3404,1618.7326008226266,61.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,90.0,10090.0,0.0,0.0,25300.7,0.0,15770.0,1,7,0.0,3,1.0 -2230,3405,1128.6010712395976,56.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,23.0,0.0,118921.9,0.0,154920.0,1,9,7.0,4,2.0 -2231,3407,2129.9439913941537,46.0,112,0.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,144.0,0.0,43865.9,0.0,43830.0,2,8,0.0,4,2.0 -2232,3408,3171.303175889408,34.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33905.6,0.0,30640.0,3,6,4.0,4,2.0 -2233,3410,2231.572567487214,65.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21480.0,0.0,0.0,19913.75,0.0,0.0,1,4,0.0,3,0.0 -2234,3413,1910.580232792622,37.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44705.35,0.0,46800.0,2,9,0.0,3,2.0 -2235,3414,2208.9411976010174,28.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40764.05,0.0,43850.0,3,10,0.0,3,2.0 -2236,3415,3657.4286555475483,70.0,112,6610.0,78,1.0,0.0,3.0,2.0,0.0,0.0,0.0,20220.0,0.0,0.0,26533.6,0.0,0.0,1,5,0.0,5,1.0 -2237,3416,1565.1310575940067,50.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21598.2,0.0,19720.0,1,7,1.0,1,1.0 -2238,3417,4615.708204410891,48.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26083.3,0.0,27930.0,2,6,5.0,1,1.0 -2239,3419,2758.6817439966703,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18920.0,772.0,0.0,23407.55,0.0,0.0,1,10,8.0,1,0.0 -2240,3420,1580.010554788709,75.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39450.0,2295.0,0.0,51940.35,0.0,0.0,1,0,0.0,3,0.0 -2241,3423,1484.8265752655484,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32350.0,0.0,0.0,30126.7,0.0,0.0,1,7,1.0,3,0.0 -2242,3424,4113.736342451141,21.0,111,0.0,42,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7800.0,0.0,3330.0,3,9,7.0,1,1.0 -2243,3425,3769.1884131721417,26.0,112,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13718.55,0.0,13870.0,5,7,1.0,1,1.0 -2244,3427,1014.2244363839815,38.0,400,5010.0,56,1.0,1.0,3.0,2.0,0.0,140.0,0.0,0.0,0.0,0.0,24960.55,1370.0,10630.0,3,0,0.0,2,1.0 -2245,3429,4256.614657121558,29.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59859.95,0.0,59200.0,3,10,8.0,4,2.0 -2246,3430,2871.364111802847,52.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11946.05,0.0,6740.0,3,9,2.0,2,2.0 -2247,3433,4177.574222741202,61.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25060.0,0.0,0.0,29666.0,0.0,7590.0,1,9,7.0,3,0.0 -2248,3435,3699.1953160556664,25.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44710.8,0.0,39870.0,3,10,8.0,3,2.0 -2249,3436,947.1577325476319,71.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,2710.0,6580.0,309.0,0.0,13190.0,0.0,0.0,3,10,0.0,1,0.0 -2250,3437,4967.091149419334,51.0,111,30.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43027.4,0.0,42850.0,2,6,4.0,4,2.0 -2251,3438,2518.5892361181723,30.0,111,0.0,85,0.0,0.0,3.0,1.6,3540.0,2590.0,0.0,0.0,0.0,0.0,16962.0,0.0,0.0,3,7,5.0,2,0.0 -2252,3439,2107.98130957801,54.0,211,4790.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11035.2,0.0,4050.0,3,3,3.0,1,1.0 -2253,3440,3845.146005225267,27.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22006.6,0.0,18780.0,3,9,7.0,1,1.0 -2254,3445,3625.2555714988084,74.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30810.0,16.0,0.0,26910.6,0.0,0.0,1,10,8.0,1,0.0 -2255,3446,1268.9389762390101,77.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41670.0,0.0,0.0,39408.35,0.0,0.0,1,8,0.0,3,0.0 -2256,3447,2325.7753004114334,46.0,112,0.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53552.7,0.0,53560.0,1,9,1.0,4,2.0 -2257,3448,2810.6549176487956,42.0,111,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55216.45,0.0,58680.0,3,9,7.0,4,2.0 -2258,3449,3014.637779774086,64.0,211,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15400.0,0.0,0.0,22558.85,0.0,790.0,1,3,3.0,3,1.0 -2259,3451,1264.4949147171328,57.0,400,7830.0,62,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44087.25,0.0,40580.0,1,0,1.0,4,3.0 -2260,3456,848.319904069689,37.0,300,3580.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24679.9,0.0,21990.0,2,0,0.0,4,2.0 -2261,3458,3086.180009567878,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16811.9,0.0,5180.0,3,8,6.0,1,0.0 -2262,3459,1408.4814994731996,75.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18530.0,0.0,0.0,38017.2,0.0,0.0,1,0,3.0,3,0.0 -2263,3461,7768.845735940512,35.0,111,3600.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25515.5,0.0,23070.0,3,10,8.0,3,2.0 -2264,3463,3536.1086237392874,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8500.0,0.0,0.0,8312.15,0.0,0.0,3,10,8.0,1,0.0 -2265,3464,1540.7676490502722,42.0,111,0.0,34,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38313.1,0.0,36050.0,2,8,7.0,4,1.0 -2266,3465,1700.4373062314635,67.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,66210.0,37.0,0.0,61535.55,0.0,2800.0,1,8,0.0,3,0.0 -2267,3466,2133.662397676352,56.0,211,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21978.6,0.0,22470.0,3,4,3.0,1,1.0 -2268,3467,3484.711901155746,76.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49450.0,0.0,0.0,48566.1,0.0,0.0,1,9,3.0,3,0.0 -2269,3469,3547.552275891477,33.0,111,0.0,45,2.0,1.0,2.0,1.5,0.0,3680.0,0.0,0.0,3.0,0.0,21989.0,1290.0,18010.0,3,9,7.0,5,2.0 -2270,3470,2582.2643778480237,36.0,111,450.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,17527.8,0.0,18650.0,3,10,8.0,1,1.0 -2271,3471,1281.3207347857142,44.0,211,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,281.0,0.0,40159.25,0.0,30050.0,2,1,3.0,4,2.0 -2272,3472,3140.804662412226,52.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24188.65,0.0,25340.0,3,10,8.0,1,1.0 -2273,3473,2982.7696154418118,80.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18140.0,0.0,0.0,17529.9,0.0,0.0,3,5,4.0,1,0.0 -2274,3476,4660.121412723443,27.0,111,9640.0,42,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26573.15,0.0,14460.0,3,8,6.0,3,2.0 -2275,3478,3337.7984906252154,37.0,111,0.0,47,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21942.35,0.0,22250.0,5,9,7.0,4,1.0 -2276,3481,2896.23611638976,29.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24902.8,0.0,26520.0,3,7,6.0,1,1.0 -2277,3482,968.1403042706795,35.0,111,1930.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8490.0,0.0,0.0,26075.0,0.0,13350.0,3,6,4.0,2,1.0 -2278,3483,1200.589271088951,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34930.0,0.0,0.0,33233.1,0.0,0.0,1,7,5.0,3,0.0 -2279,3484,2616.204431678275,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10860.0,0.0,0.0,13040.0,0.0,0.0,3,8,7.0,1,0.0 -2280,3486,3648.0937541441267,23.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19327.75,0.0,15950.0,3,9,7.0,1,1.0 -2281,3487,1132.7060040125762,42.0,400,0.0,54,2.0,2.0,7.0,3.4,0.0,0.0,0.0,0.0,81.0,0.0,35717.6,0.0,12500.0,1,0,0.0,4,2.0 -2282,3488,3769.0628909632974,31.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29309.6,0.0,29600.0,3,7,5.0,1,1.0 -2283,3489,1588.8946188952702,72.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13880.0,0.0,0.0,13753.45,0.0,0.0,1,0,0.0,1,0.0 -2284,3491,2896.3577973414535,31.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,64532.05,0.0,57460.0,3,9,7.0,3,2.0 -2285,3492,1707.6810712456522,32.0,221,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25998.95,0.0,14220.0,3,1,3.0,4,2.0 -2286,3493,2704.615263824845,41.0,112,0.0,69,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10430.0,0.0,0.0,25925.5,0.0,15110.0,5,6,1.0,5,1.0 -2287,3494,1912.5714904656732,38.0,111,0.0,38,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,54855.75,0.0,50850.0,3,6,5.0,4,1.0 -2288,3496,2893.638887910592,50.0,300,2320.0,54,2.0,1.0,2.0,1.5,0.0,5410.0,0.0,0.0,0.0,0.0,18920.0,0.0,5480.0,3,0,0.0,2,2.0 -2289,3498,5565.041915301562,86.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14780.0,0.0,0.0,15045.0,0.0,0.0,5,8,3.0,1,0.0 -2290,3499,2898.006108985976,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43180.0,0.0,0.0,57287.65,0.0,21800.0,1,9,7.0,2,0.0 -2291,3500,2746.477763225028,58.0,111,510.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,12980.0,0.0,0.0,14649.0,0.0,0.0,3,8,7.0,1,1.0 -2292,3502,1616.7925853557772,57.0,111,11770.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,670.0,0.0,0.0,33252.3,0.0,22220.0,2,10,8.0,3,2.0 -2293,3503,2065.814515488582,68.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20750.0,0.0,0.0,21448.5,0.0,0.0,1,0,0.0,3,0.0 -2294,3504,3969.093521821193,30.0,111,0.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37173.0,0.0,39330.0,3,10,8.0,3,2.0 -2295,3506,1878.2361285468437,31.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34219.9,0.0,31270.0,2,8,6.0,4,2.0 -2296,3507,4214.052946658397,25.0,111,0.0,21,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18730.15,0.0,14530.0,3,8,6.0,3,1.0 -2297,3508,2312.6064444490657,60.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41852.4,0.0,43040.0,3,9,7.0,2,2.0 -2298,3510,2912.9607553589435,31.0,111,770.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39345.5,0.0,32730.0,2,4,4.0,4,2.0 -2299,3511,3489.560000825268,27.0,300,1700.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19869.25,0.0,19430.0,2,0,0.0,1,1.0 -2300,3512,3503.4297459154945,44.0,111,9930.0,38,1.0,1.0,1.0,1.0,0.0,2520.0,0.0,0.0,0.0,0.0,26121.9,0.0,16200.0,3,9,7.0,1,1.0 -2301,3515,2744.6988662300787,53.0,111,1890.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,12310.0,0.0,0.0,25603.65,0.0,8610.0,2,8,7.0,2,1.0 -2302,3516,3605.4896262608045,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10934.0,0.0,0.0,3,10,8.0,1,0.0 -2303,3517,3142.6332690947625,39.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18341.4,0.0,19330.0,3,9,7.0,1,1.0 -2304,3518,2359.5305607557643,60.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20390.0,0.0,0.0,18849.55,0.0,100.0,1,10,8.0,1,0.0 -2305,3519,3437.0241175131137,66.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,64530.0,254.0,0.0,63013.85,0.0,0.0,2,10,0.0,1,0.0 -2306,3521,2949.09122824891,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11610.0,0.0,0.0,13692.6,0.0,0.0,1,9,7.0,1,0.0 -2307,3522,3906.3010572788276,57.0,111,4310.0,38,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28436.95,0.0,22590.0,1,9,7.0,2,1.0 -2308,3523,1743.7380747009634,52.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21947.25,0.0,22470.0,3,4,0.0,1,1.0 -2309,3524,2279.62709488196,33.0,300,12230.0,35,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28190.5,0.0,6470.0,2,0,0.0,2,1.0 -2310,3525,3657.210299994297,37.0,400,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46614.9,0.0,24060.0,2,0,0.0,4,2.0 -2311,3526,828.0884726481066,48.0,300,0.0,46,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38730.2,0.0,40970.0,1,0,1.0,4,3.0 -2312,3527,3630.970319426804,24.0,111,0.0,34,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6771.0,0.0,3580.0,2,8,7.0,1,1.0 -2313,3528,3546.175509506846,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22990.0,0.0,0.0,23152.0,0.0,0.0,3,6,4.0,1,0.0 -2314,3529,2492.0166627033923,58.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20280.0,0.0,0.0,20673.55,0.0,0.0,1,8,7.0,3,0.0 -2315,3530,4669.103709381156,82.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12420.0,0.0,0.0,12420.0,0.0,0.0,1,0,0.0,1,0.0 -2316,3532,4541.767716811242,41.0,221,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50474.15,0.0,41670.0,2,1,1.0,4,2.0 -2317,3533,3777.439811176277,35.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37820.2,0.0,32100.0,1,10,8.0,4,2.0 -2318,3534,2282.982734500802,65.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19570.0,0.0,0.0,43917.6,0.0,29380.0,5,10,8.0,2,1.0 -2319,3535,1981.8474129166098,65.0,300,11210.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,24.0,0.0,22448.9,0.0,11610.0,1,0,0.0,3,0.0 -2320,3536,1920.4261949141892,67.0,112,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,39720.0,0.0,0.0,40338.95,0.0,0.0,1,6,0.0,5,0.0 -2321,3537,3086.414842841661,91.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27590.0,0.0,0.0,27244.85,0.0,0.0,3,9,7.0,3,0.0 -2322,3538,2282.696823057794,71.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,49130.0,39.0,0.0,40063.9,0.0,0.0,1,8,0.0,1,0.0 -2323,3539,5180.689289247648,69.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20660.0,0.0,0.0,21459.2,0.0,0.0,3,1,1.0,3,0.0 -2324,3541,2739.5185576328695,42.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45274.2,0.0,44560.0,2,6,0.0,4,2.0 -2325,3542,1013.1625062117469,43.0,211,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55842.1,0.0,61000.0,2,3,4.0,4,2.0 -2326,3546,3467.2780154278967,76.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11970.0,0.0,0.0,23532.35,0.0,0.0,5,7,5.0,1,0.0 -2327,3547,2128.491476489546,63.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16110.0,0.0,0.0,17161.0,0.0,0.0,1,0,0.0,3,0.0 -2328,3548,2291.3914925181457,36.0,111,1580.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26058.2,20.0,17280.0,2,4,4.0,4,2.0 -2329,3549,617.0193956892708,37.0,112,0.0,48,2.0,2.0,5.0,2.8,0.0,0.0,0.0,33170.0,0.0,0.0,85333.45,0.0,46850.0,1,8,0.0,5,2.0 -2330,3550,3180.718850591021,24.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27387.05,0.0,26600.0,3,10,8.0,5,1.0 -2331,3552,3732.7929146014053,84.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25480.0,0.0,0.0,24609.65,0.0,0.0,1,7,5.0,3,0.0 -2332,3553,2159.976297563482,55.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30369.65,0.0,31830.0,1,10,8.0,4,2.0 -2333,3554,2549.221970948622,30.0,112,2410.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34883.0,0.0,30740.0,2,6,0.0,4,2.0 -2334,3557,2975.084226657132,42.0,111,1750.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11949.05,0.0,11430.0,3,8,6.0,1,1.0 -2335,3558,2379.964384450796,62.0,111,0.0,78,1.0,0.0,3.0,2.0,0.0,0.0,0.0,16060.0,0.0,0.0,22600.65,0.0,6650.0,3,10,8.0,4,1.0 -2336,3559,3449.8474496215626,63.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20780.0,9.0,0.0,32418.8,0.0,14000.0,1,9,7.0,3,1.0 -2337,3565,4072.1797214969965,88.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26720.0,0.0,0.0,52960.5,0.0,0.0,1,9,7.0,1,0.0 -2338,3566,1398.455951137106,51.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38713.15,0.0,40940.0,2,5,4.0,3,2.0 -2339,3567,2617.222147792731,43.0,111,0.0,64,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,29427.9,0.0,17420.0,2,8,6.0,4,1.0 -2340,3568,1121.5275723905559,38.0,112,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,118.0,0.0,66103.85,0.0,53460.0,2,9,1.0,4,2.0 -2341,3569,3848.2906555855093,33.0,112,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,45.0,0.0,47921.7,0.0,41400.0,2,7,1.0,4,2.0 -2342,3575,3135.0440027462246,58.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40355.5,0.0,45880.0,3,10,8.0,1,1.0 -2343,3576,2922.325591597111,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31880.0,0.0,0.0,29771.4,0.0,0.0,3,6,5.0,3,0.0 -2344,3577,2472.2188799537666,51.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,5040.0,0.0,0.0,37725.1,0.0,34330.0,1,7,1.0,3,2.0 -2345,3578,2443.3472534343477,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23160.0,0.0,0.0,21927.0,0.0,0.0,1,8,7.0,1,0.0 -2346,3579,2714.1230087475124,52.0,111,6100.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12606.95,0.0,6400.0,3,7,5.0,1,1.0 -2347,3580,2872.190415950777,41.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66082.6,0.0,67750.0,2,10,8.0,4,2.0 -2348,3581,2258.317888921354,62.0,221,0.0,77,0.0,0.0,2.0,1.5,6050.0,0.0,0.0,16100.0,0.0,0.0,26540.5,0.0,0.0,3,1,1.0,2,0.0 -2349,3582,3854.828327164545,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12980.0,0.0,0.0,13558.0,0.0,0.0,3,8,7.0,1,0.0 -2350,3583,3088.9209629471884,57.0,111,1490.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38875.85,0.0,40300.0,1,10,8.0,3,2.0 -2351,3585,891.5464533787879,49.0,111,0.0,38,2.0,2.0,5.0,3.0,0.0,0.0,0.0,7280.0,0.0,0.0,90713.65,0.0,87650.0,2,9,7.0,5,2.0 -2352,3588,3384.9784717539123,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7155.0,0.0,4740.0,5,8,7.0,1,0.0 -2353,3589,4815.407276031199,31.0,120,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38131.2,0.0,32910.0,2,0,2.0,4,2.0 -2354,3590,2441.3882865576525,83.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14230.0,0.0,0.0,14495.0,0.0,0.0,5,8,7.0,1,0.0 -2355,3592,2496.4806798965415,51.0,112,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18580.0,0.0,0.0,62129.25,0.0,41240.0,3,10,4.0,3,1.0 -2356,3593,859.8049810370094,51.0,112,0.0,34,1.0,1.0,5.0,3.0,0.0,0.0,0.0,25090.0,0.0,0.0,65198.25,0.0,39580.0,1,7,0.0,4,1.0 -2357,3595,2037.8342688277203,40.0,111,690.0,67,2.0,2.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,39124.0,0.0,19770.0,3,9,7.0,4,2.0 -2358,3597,1964.105386511402,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60240.0,142.0,0.0,63632.8,0.0,0.0,1,7,5.0,3,0.0 -2359,3600,1559.7824023259648,31.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,48.0,0.0,62545.4,0.0,62310.0,2,6,0.0,4,2.0 -2360,3601,2558.2325193795623,58.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11030.0,0.0,0.0,14200.0,0.0,0.0,3,8,7.0,3,0.0 -2361,3603,1359.696240021512,58.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17793.9,0.0,18910.0,1,0,0.0,1,1.0 -2362,3604,2700.3813259570693,88.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18130.0,0.0,0.0,17537.15,0.0,0.0,1,6,5.0,1,0.0 -2363,3605,4389.90682628865,43.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36247.85,0.0,41940.0,2,10,8.0,1,1.0 -2364,3606,2187.1615548941563,56.0,112,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24689.0,0.0,0.0,5,7,0.0,1,1.0 -2365,3607,1153.7759816198836,45.0,221,0.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,9600.0,0.0,0.0,37769.45,0.0,17390.0,1,1,3.0,4,2.0 -2366,3610,4090.6777148519386,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35820.0,81.0,0.0,35840.6,0.0,0.0,1,10,8.0,3,0.0 -2367,3611,2806.1161377509434,42.0,212,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21586.2,0.0,22850.0,3,3,0.0,1,1.0 -2368,3613,6498.449375764155,33.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26374.95,0.0,27610.0,3,10,8.0,1,1.0 -2369,3614,1751.696595040164,38.0,111,180.0,67,1.0,0.0,1.0,1.0,0.0,1360.0,0.0,0.0,0.0,0.0,10451.55,1430.0,6530.0,3,6,5.0,1,1.0 -2370,3616,2214.065606345191,67.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9080.0,0.0,0.0,9080.0,0.0,0.0,5,0,0.0,1,0.0 -2371,3618,3582.248492508513,45.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,473.0,0.0,67368.55,0.0,69040.0,1,10,8.0,1,1.0 -2372,3622,1129.864909792292,49.0,111,4430.0,56,3,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,46585.55,0.0,42670.0,5,7,6.0,4,3.0 -2373,3623,3148.4123648298396,56.0,221,0.0,62,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,63997.7,0.0,66480.0,1,1,1.0,4,4.0 -2374,3624,3792.871992519694,76.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,7340.0,14210.0,0.0,0.0,29480.0,0.0,6200.0,3,9,7.0,3,0.0 -2375,3625,4927.631600367207,62.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27350.0,0.0,0.0,26547.0,0.0,0.0,1,7,0.0,3,0.0 -2376,3626,1432.589886805068,47.0,112,12600.0,38,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,75688.0,0.0,62910.0,3,7,0.0,4,2.0 -2377,3627,7230.893196830755,57.0,112,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12079.05,0.0,0.0,1,9,1.0,3,1.0 -2378,3628,3510.5932151680736,47.0,111,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34078.85,0.0,34660.0,2,6,5.0,4,2.0 -2379,3629,2477.022737819163,39.0,111,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38075.05,0.0,37990.0,2,9,7.0,4,2.0 -2380,3630,1928.863014528221,49.0,112,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58004.05,0.0,56610.0,2,8,1.0,4,2.0 -2381,3631,3245.4990705799214,33.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41385.7,0.0,32210.0,2,9,2.0,4,2.0 -2382,3634,1979.748108826466,22.0,111,0.0,46,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,21557.0,300.0,13380.0,3,10,8.0,2,1.0 -2383,3635,2983.327526044451,90.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12100.0,0.0,0.0,12730.0,0.0,0.0,5,6,0.0,1,0.0 -2384,3636,1953.357654953439,68.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27100.0,0.0,0.0,26490.15,0.0,0.0,2,0,0.0,3,0.0 -2385,3637,1990.8260910514828,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15750.0,0.0,0.0,15750.0,0.0,0.0,3,8,7.0,3,0.0 -2386,3638,6847.01619311948,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15370.0,0.0,0.0,18349.0,0.0,0.0,4,4,4.0,1,0.0 -2387,3640,2678.632814724935,28.0,221,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13951.1,0.0,14390.0,3,1,2.0,1,1.0 -2388,3641,3897.833583744314,36.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6692.4,0.0,0.0,3,10,8.0,1,1.0 -2389,3643,1363.0209283182312,58.0,112,42060.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,31.0,0.0,37979.25,0.0,0.0,1,8,0.0,3,0.0 -2390,3644,3942.722392408795,64.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11830.0,0.0,0.0,12187.0,0.0,0.0,5,0,0.0,3,0.0 -2391,3647,1372.1327821314571,44.0,111,690.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,42882.35,380.0,34510.0,1,8,7.0,4,2.0 -2392,3648,2858.469589633234,71.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18000.0,0.0,0.0,17832.5,0.0,0.0,1,9,7.0,3,0.0 -2393,3649,1891.043869975247,30.0,112,6440.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35677.0,0.0,27630.0,2,9,0.0,4,2.0 -2394,3651,3270.104077034182,57.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2230.0,0.0,0.0,20099.8,0.0,19690.0,1,9,7.0,1,1.0 -2395,3652,1885.4071986971467,84.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9060.0,0.0,0.0,9243.15,0.0,0.0,5,0,0.0,1,0.0 -2396,3653,2195.294078358089,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58840.0,113.0,0.0,61067.95,0.0,0.0,1,9,3.0,3,0.0 -2397,3654,2687.6159282794165,57.0,111,4540.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8190.0,0.0,0.0,21759.3,0.0,10010.0,3,6,4.0,1,1.0 -2398,3655,7228.8049696361795,74.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10240.0,0.0,0.0,12016.0,0.0,0.0,3,10,8.0,1,0.0 -2399,3656,1771.2664947201654,36.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42551.75,0.0,44440.0,2,8,7.0,4,2.0 -2400,3657,1733.3641478490688,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29040.0,360.0,0.0,27548.0,0.0,0.0,1,8,6.0,3,0.0 -2401,3661,3375.691597731497,44.0,112,0.0,38,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,43971.9,0.0,45060.0,2,8,0.0,2,1.0 -2402,3662,2921.9271120460594,41.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28669.35,0.0,30860.0,2,9,1.0,5,2.0 -2403,3663,1317.0804964126041,74.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18330.0,0.0,0.0,19294.6,0.0,1430.0,1,0,0.0,3,0.0 -2404,3664,3299.5845563110574,56.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26391.05,0.0,29220.0,1,9,7.0,1,1.0 -2405,3666,1513.072300279778,58.0,111,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56540.0,0.0,58700.0,1,5,4.0,4,2.0 -2406,3667,2900.218014646737,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41720.0,0.0,0.0,40751.3,0.0,0.0,1,8,6.0,3,0.0 -2407,3668,1883.5289813361505,56.0,112,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,77092.95,0.0,82840.0,1,10,1.0,4,2.0 -2408,3669,2859.9690457724923,38.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,73546.75,0.0,79660.0,2,10,8.0,4,2.0 -2409,3671,3025.881811079487,19.0,111,0.0,84,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1684.75,0.0,0.0,3,9,7.0,1,0.0 -2410,3673,1970.4478326446906,51.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48672.75,0.0,23890.0,2,6,4.0,3,2.0 -2411,3674,3364.8804551886806,78.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20180.0,0.0,0.0,20499.0,0.0,0.0,1,1,2.0,3,0.0 -2412,3676,3422.455503385538,36.0,112,4060.0,37,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,3.0,0.0,41715.0,0.0,37380.0,2,9,0.0,4,2.0 -2413,3677,1121.794323079257,44.0,300,0.0,63,3,4.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,32214.7,0.0,32070.0,2,0,0.0,4,4.0 -2414,3678,2371.070649254485,61.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29590.0,0.0,0.0,31330.05,0.0,0.0,1,8,6.0,3,0.0 -2415,3679,3167.853278867634,77.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13260.0,0.0,0.0,12960.3,0.0,0.0,5,0,1.0,1,0.0 -2416,3680,2340.5303410162105,38.0,300,0.0,68,1.0,1.0,3.0,2.0,0.0,5080.0,0.0,11330.0,0.0,0.0,36513.45,0.0,19960.0,3,0,0.0,4,1.0 -2417,3682,1546.2942334381753,69.0,400,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4510.0,0.0,0.0,9098.35,0.0,0.0,1,0,0.0,1,1.0 -2418,3683,1131.799170425298,49.0,111,11740.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44717.8,0.0,34070.0,1,4,4.0,4,3.0 -2419,3687,3385.5834599260174,40.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33928.65,0.0,25130.0,3,8,7.0,4,2.0 -2420,3688,2983.2373151527445,52.0,400,0.0,67,3,3.0,3.0,2.0,0.0,150.0,0.0,0.0,0.0,0.0,37226.5,1780.0,28750.0,1,0,0.0,4,3.0 -2421,3690,2415.757311335425,44.0,300,2950.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,63493.7,0.0,64660.0,3,0,0.0,4,3.0 -2422,3692,2889.9329897909506,58.0,111,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29602.0,0.0,31460.0,3,9,7.0,4,2.0 -2423,3693,3014.83212931741,42.0,111,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,14170.0,0.0,0.0,3,6,4.0,1,0.0 -2424,3694,3768.2650839784997,37.0,111,5750.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,7.0,0.0,37954.05,0.0,36220.0,3,9,7.0,4,2.0 -2425,3695,2698.1648164283424,59.0,120,16820.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16260.0,0.0,0.0,30220.05,0.0,290.0,1,0,2.0,3,0.0 -2426,3696,2372.946616780948,39.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53022.85,0.0,45940.0,2,8,7.0,4,2.0 -2427,3697,4150.131135651029,60.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,115.0,0.0,38892.2,0.0,24630.0,1,10,8.0,1,1.0 -2428,3699,2867.171144304186,41.0,111,5410.0,85,0.0,0.0,1.0,1.0,0.0,460.0,0.0,0.0,0.0,0.0,11148.0,60.0,310.0,3,3,4.0,1,0.0 -2429,3700,3180.5542000112464,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23810.0,0.0,0.0,21784.45,0.0,0.0,1,9,7.0,1,0.0 -2430,3701,1920.4071282025302,48.0,112,0.0,64,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46984.1,0.0,44070.0,2,8,0.0,4,2.0 -2431,3702,1924.53043217,57.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,6690.0,0.0,0.0,30426.9,0.0,25490.0,1,9,7.0,3,1.0 -2432,3703,3730.93487554956,63.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20330.0,0.0,0.0,33885.9,0.0,17660.0,5,9,7.0,3,1.0 -2433,3704,1385.133748785874,61.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,33850.0,0.0,0.0,99036.4,0.0,73920.0,1,9,7.0,3,1.0 -2434,3705,2282.2868649352877,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30140.0,0.0,0.0,36252.05,0.0,0.0,2,5,4.0,3,0.0 -2435,3706,5368.6079107448395,30.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,14.0,0.0,136425.15,0.0,146580.0,2,8,6.0,3,2.0 -2436,3709,2536.443847420685,54.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36062.85,0.0,38380.0,3,10,8.0,2,1.0 -2437,3710,2262.127633971481,31.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41007.8,0.0,41530.0,2,8,6.0,3,2.0 -2438,3712,3253.299793508345,39.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19099.65,0.0,20910.0,2,6,5.0,1,1.0 -2439,3715,2522.896478591077,61.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13750.0,0.0,0.0,15154.0,0.0,0.0,3,10,5.0,1,0.0 -2440,3716,3238.1898449507626,43.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,586.0,0.0,100835.75,0.0,112550.0,3,10,8.0,3,2.0 -2441,3718,1694.0357222983882,59.0,111,0.0,75,0.0,0.0,4.0,2.3,0.0,0.0,0.0,47350.0,0.0,0.0,43444.15,0.0,0.0,1,9,7.0,5,0.0 -2442,3720,1680.434495371337,47.0,120,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25697.0,0.0,25560.0,3,0,1.0,1,1.0 -2443,3721,3047.8543569518856,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16000.0,8.0,0.0,15647.9,0.0,0.0,1,10,8.0,1,0.0 -2444,3722,3811.4068130588216,58.0,111,4380.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12286.35,0.0,7920.0,1,10,8.0,1,0.0 -2445,3723,844.2486974328074,45.0,111,0.0,65,3,4.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,94343.75,0.0,99080.0,2,7,5.0,4,4.0 -2446,3724,2086.580684549935,63.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32980.0,0.0,0.0,30816.4,0.0,0.0,3,7,5.0,3,0.0 -2447,3725,3058.9202691284677,82.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29740.0,0.0,0.0,29242.75,0.0,0.0,1,0,0.0,3,0.0 -2448,3726,2373.8290078109903,51.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22286.75,0.0,24910.0,1,7,5.0,1,1.0 -2449,3729,3047.787413094445,49.0,111,5060.0,68,1.0,0.0,2.0,1.3,0.0,1100.0,0.0,0.0,0.0,0.0,13859.95,90.0,1250.0,3,9,7.0,2,1.0 -2450,3730,3153.952726278022,44.0,111,0.0,21,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,43939.9,0.0,19610.0,3,10,8.0,4,2.0 -2451,3731,1727.8330352675011,53.0,112,8120.0,43,2.0,1.0,2.0,1.5,0.0,1890.0,0.0,0.0,0.0,0.0,42307.05,2070.0,32470.0,3,8,1.0,2,2.0 -2452,3733,2902.7523986954093,29.0,112,6230.0,54,2.0,2.0,3.0,1.8,0.0,230.0,0.0,0.0,0.0,0.0,34171.7,3390.0,23010.0,5,4,0.0,5,2.0 -2453,3734,2870.016891525838,33.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,109.0,0.0,42559.0,0.0,47950.0,3,8,7.0,1,1.0 -2454,3735,1535.9828489588956,39.0,120,0.0,48,3,3.0,4.0,2.3,0.0,0.0,0.0,2350.0,0.0,0.0,40538.3,0.0,34750.0,3,0,0.0,4,3.0 -2455,3736,3771.896753902753,55.0,221,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18106.35,0.0,19100.0,1,1,1.0,1,1.0 -2456,3737,1647.9779604443524,64.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30130.0,107.0,0.0,40697.45,0.0,3670.0,1,9,0.0,3,0.0 -2457,3738,1622.3892003642702,54.0,111,0.0,55,2.0,2.0,3.0,2.0,0.0,0.0,0.0,9500.0,0.0,0.0,24867.8,0.0,15900.0,1,10,8.0,4,2.0 -2458,3740,2841.0420196056857,60.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49450.0,299.0,0.0,44580.85,0.0,90.0,1,8,0.0,3,0.0 -2459,3741,2430.5480636640773,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42480.0,0.0,0.0,38332.9,0.0,0.0,2,8,0.0,3,0.0 -2460,3743,6326.957497554981,62.0,111,12200.0,63,2.0,1.0,3.0,2.0,0.0,0.0,0.0,3050.0,0.0,0.0,31800.4,0.0,18080.0,1,10,8.0,5,2.0 -2461,3746,3484.5674712730283,81.0,111,0.0,75,0.0,0.0,2.0,1.5,4140.0,0.0,0.0,19430.0,214.0,0.0,23751.65,0.0,0.0,1,10,8.0,3,0.0 -2462,3749,3446.2376049873023,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22760.0,0.0,0.0,51024.7,0.0,0.0,1,9,7.0,1,0.0 -2463,3750,1389.130284343508,73.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22080.0,0.0,0.0,21287.5,0.0,0.0,3,2,3.0,1,0.0 -2464,3752,2845.2563959854615,35.0,111,4850.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26909.1,0.0,22530.0,3,8,7.0,3,2.0 -2465,3754,2965.055370697192,36.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,77103.65,0.0,77420.0,2,10,8.0,3,2.0 -2466,3755,1632.508866586432,60.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30600.0,0.0,0.0,38393.65,0.0,11100.0,1,7,5.0,3,0.0 -2467,3756,1828.9394649544154,58.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,12160.0,650.0,0.0,28984.45,0.0,7410.0,1,6,5.0,1,1.0 -2468,3758,1613.9080572060154,38.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39726.9,0.0,33870.0,3,6,4.0,4,2.0 -2469,3759,3898.9825628408025,23.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1904.45,0.0,0.0,3,9,7.0,1,1.0 -2470,3760,2440.8331402471754,32.0,111,3470.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24140.8,0.0,12310.0,3,10,8.0,2,1.0 -2471,3761,3096.102622736861,77.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11390.0,0.0,0.0,12590.0,0.0,0.0,3,9,7.0,1,0.0 -2472,3762,1064.1016559978184,64.0,400,0.0,78,0.0,0.0,2.0,1.5,7680.0,0.0,0.0,13430.0,0.0,0.0,20694.0,0.0,0.0,1,0,0.0,2,0.0 -2473,3765,3617.7102945208244,40.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25892.5,0.0,29150.0,2,8,6.0,1,1.0 -2474,3766,2528.941822376374,56.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,4920.0,0.0,0.0,33620.1,0.0,30750.0,3,10,8.0,2,1.0 -2475,3767,2915.347467843498,46.0,221,10310.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,3730.0,0.0,0.0,62878.55,0.0,45220.0,1,1,2.0,4,2.0 -2476,3768,3028.585906466588,58.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20030.95,0.0,21720.0,3,10,8.0,1,1.0 -2477,3770,2203.482625578656,36.0,111,0.0,68,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,8926.0,12393.05,0.0,0.0,3,7,6.0,2,1.0 -2478,3771,2622.0499815097523,38.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59401.3,0.0,64380.0,3,10,8.0,4,2.0 -2479,3772,881.7587424891046,38.0,112,0.0,62,2.0,0.0,7.0,3.0,0.0,630.0,0.0,0.0,0.0,0.0,17854.0,0.0,540.0,3,4,0.0,4,2.0 -2480,3773,2609.100912057486,65.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19250.0,0.0,0.0,18975.05,0.0,0.0,2,7,2.0,1,0.0 -2481,3774,3398.1976618826448,87.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25290.0,0.0,0.0,25829.0,0.0,0.0,5,9,7.0,1,0.0 -2482,3777,2659.6190212646657,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26880.0,0.0,0.0,26940.2,0.0,0.0,3,8,7.0,3,0.0 -2483,3778,2913.037851377694,72.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20390.0,19.0,0.0,19808.45,0.0,0.0,1,7,5.0,3,0.0 -2484,3779,3053.6191186739707,45.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19556.25,0.0,20140.0,3,9,7.0,1,1.0 -2485,3782,2465.21666277977,81.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14780.0,0.0,0.0,20514.55,0.0,0.0,1,4,0.0,3,0.0 -2486,3783,2810.5692711350357,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28390.0,0.0,0.0,25953.6,0.0,0.0,3,10,8.0,1,0.0 -2487,3784,2776.4086314035167,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2140.0,6660.0,0.0,0.0,8800.0,0.0,0.0,5,8,7.0,1,0.0 -2488,3786,3454.482440198663,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12980.0,0.0,0.0,14316.0,0.0,0.0,3,9,7.0,1,0.0 -2489,3787,2020.0514814960898,67.0,211,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11380.0,0.0,0.0,12244.0,0.0,0.0,3,3,4.0,1,0.0 -2490,3788,2301.491929234487,46.0,112,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35853.4,0.0,36700.0,1,7,2.0,3,2.0 -2491,3790,2333.650008894873,36.0,111,0.0,55,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41671.5,0.0,33500.0,2,8,6.0,4,2.0 -2492,3791,1662.185742671419,40.0,111,710.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29691.25,0.0,29120.0,3,6,4.0,3,2.0 -2493,3792,999.4093751485693,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26120.0,0.0,0.0,26474.6,0.0,0.0,1,7,5.0,3,0.0 -2494,3793,3423.140580061316,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,150.0,25.0,0.0,12727.95,0.0,0.0,2,9,7.0,1,0.0 -2495,3794,2844.9711604803315,60.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28667.4,0.0,29260.0,3,10,8.0,1,1.0 -2496,3795,2900.2439339425514,82.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17470.0,0.0,0.0,17036.0,0.0,0.0,3,9,7.0,1,0.0 -2497,3796,1883.5535039754714,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15570.0,0.0,0.0,15297.35,0.0,0.0,1,8,7.0,1,0.0 -2498,3800,3676.7339513124934,53.0,221,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35147.2,0.0,0.0,3,1,2.0,3,1.0 -2499,3801,2286.1357376514943,47.0,112,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19880.35,0.0,17680.0,3,9,1.0,2,1.0 -2500,3802,2153.9140260323807,28.0,112,3180.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34333.0,0.0,28860.0,5,7,0.0,4,1.0 -2501,3803,2879.766710965443,42.0,120,0.0,48,3,3.0,4.0,2.3,0.0,0.0,0.0,13780.0,0.0,0.0,65417.2,0.0,53760.0,2,0,3.0,4,3.0 -2502,3804,2958.9889249812854,47.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,9.0,0.0,48845.2,0.0,51980.0,3,10,8.0,2,2.0 -2503,3806,1645.5610809384868,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35920.0,0.0,0.0,33661.55,0.0,0.0,1,7,5.0,3,0.0 -2504,3807,2322.037618868774,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14050.0,0.0,0.0,14050.0,0.0,0.0,3,8,6.0,1,0.0 -2505,3809,2079.1897442662266,47.0,211,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41275.0,0.0,44130.0,2,1,2.0,3,2.0 -2506,3810,1639.5757910891177,55.0,400,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47991.0,0.0,0.0,1,0,0.0,4,2.0 -2507,3811,2304.3271589458136,81.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12020.0,0.0,0.0,10320.85,0.0,0.0,1,10,0.0,1,0.0 -2508,3812,2365.059143962135,52.0,112,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18040.0,534.0,0.0,43070.05,0.0,28850.0,1,9,1.0,2,1.0 -2509,3813,1611.548030358107,62.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36530.0,0.0,0.0,33514.6,0.0,0.0,1,10,1.0,3,0.0 -2510,3814,2660.3793249101664,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27040.0,0.0,0.0,26495.3,0.0,0.0,1,10,8.0,1,0.0 -2511,3815,5407.290985505189,26.0,400,0.0,13,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,17447.15,0.0,5330.0,2,0,0.0,4,2.0 -2512,3816,1509.3820481380278,42.0,112,0.0,48,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,1800.0,0.0,52449.0,0.0,19270.0,5,6,0.0,4,2.0 -2513,3817,3205.935823130201,68.0,112,0.0,78,2.0,2.0,4.0,2.5,0.0,0.0,0.0,23700.0,0.0,0.0,65219.3,0.0,47680.0,1,8,0.0,4,2.0 -2514,3818,4127.418701249304,79.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40860.0,0.0,0.0,37325.75,0.0,0.0,1,9,7.0,3,0.0 -2515,3820,3517.9389648003585,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4102.0,0.0,0.0,3,7,5.0,1,0.0 -2516,3824,910.8690933088795,57.0,111,2990.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,16.0,0.0,39790.4,0.0,38500.0,1,7,5.0,3,2.0 -2517,3825,3337.688825470582,45.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25386.0,0.0,26100.0,2,7,0.0,3,2.0 -2518,3826,1312.8854520528812,78.0,221,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36060.0,0.0,0.0,36214.2,0.0,0.0,1,1,3.0,3,0.0 -2519,3827,2835.055012590795,53.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,2470.0,0.0,7950.0,0.0,0.0,13660.0,0.0,0.0,3,9,7.0,1,0.0 -2520,3828,4313.668508022138,29.0,111,16680.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20830.7,0.0,5760.0,3,8,7.0,1,0.0 -2521,3829,2384.5436725892614,58.0,111,0.0,37,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24391.7,0.0,26950.0,1,10,8.0,1,1.0 -2522,3833,4593.25286480609,65.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27470.0,0.0,0.0,26781.6,0.0,0.0,5,1,2.0,3,0.0 -2523,3835,2924.9264221635895,75.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1730.0,9100.0,0.0,0.0,10720.8,0.0,0.0,1,9,0.0,1,0.0 -2524,3837,1719.8559966414184,40.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55105.7,0.0,56290.0,2,8,7.0,4,2.0 -2525,3839,1815.4119198689866,54.0,111,0.0,46,1.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,22829.65,0.0,13790.0,3,10,8.0,4,1.0 -2526,3842,1925.4045106105075,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29050.0,0.0,0.0,27505.2,0.0,0.0,3,9,3.0,3,0.0 -2527,3843,2858.225459087187,83.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13400.0,0.0,0.0,17840.0,0.0,0.0,3,9,7.0,1,0.0 -2528,3845,1119.7613919759349,49.0,112,0.0,68,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41572.25,0.0,42650.0,1,7,1.0,4,3.0 -2529,3846,2018.2328583804178,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29730.0,0.0,0.0,29121.85,0.0,0.0,3,8,7.0,1,0.0 -2530,3847,1823.951055709774,41.0,221,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39130.1,0.0,40450.0,2,1,2.0,4,2.0 -2531,3848,1203.0717563541705,68.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24560.0,0.0,0.0,23447.75,0.0,0.0,1,0,0.0,3,0.0 -2532,3851,1912.2000131669847,40.0,112,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37994.55,0.0,40240.0,2,6,0.0,3,2.0 -2533,3852,1551.7975282150583,63.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32620.0,0.0,0.0,29983.35,0.0,0.0,1,6,4.0,3,0.0 -2534,3853,3959.3615808636364,56.0,111,0.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13327.8,0.0,13800.0,3,8,6.0,2,2.0 -2535,3854,5142.369743815219,62.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13450.0,48.0,0.0,23485.65,0.0,0.0,3,0,0.0,1,0.0 -2536,3856,955.7816652029614,40.0,112,0.0,64,2.0,2.0,8.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,59913.25,0.0,34490.0,3,6,0.0,4,2.0 -2537,3857,3790.6155955351774,57.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21664.0,0.0,23190.0,3,10,8.0,1,1.0 -2538,3858,1575.0573037193565,42.0,111,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24995.15,0.0,23420.0,3,7,5.0,4,2.0 -2539,3862,3366.2221874323945,28.0,111,1630.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,1860.0,0.0,0.0,60400.9,0.0,57980.0,3,10,8.0,3,2.0 -2540,3863,1361.1163805768842,50.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29410.95,0.0,31680.0,1,6,5.0,3,2.0 -2541,3864,2883.4842166846042,55.0,111,6530.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15880.0,0.0,0.0,68626.0,0.0,50970.0,3,10,8.0,3,1.0 -2542,3866,3016.416828823618,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,47430.0,0.0,0.0,41095.2,0.0,0.0,1,10,8.0,1,0.0 -2543,3867,4067.778876165384,27.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15164.3,0.0,15620.0,3,8,6.0,1,1.0 -2544,3868,2501.2015265741275,34.0,112,0.0,48,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38203.0,0.0,31380.0,3,10,4.0,4,1.0 -2545,3869,2849.8334316070236,36.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44266.9,0.0,41960.0,2,6,0.0,4,2.0 -2546,3872,1061.6100309151543,66.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52910.0,0.0,0.0,47059.5,0.0,0.0,1,8,2.0,3,0.0 -2547,3873,2238.9789337962197,51.0,221,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26139.5,0.0,12340.0,3,1,3.0,3,2.0 -2548,3874,2251.711863734296,55.0,112,9390.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19849.25,0.0,0.0,1,8,0.0,3,2.0 -2549,3875,5587.818413981486,73.0,112,5980.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10310.0,0.0,0.0,18057.2,0.0,0.0,1,8,3.0,3,0.0 -2550,3876,2243.193403058729,49.0,111,0.0,22,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,49.0,0.0,97040.0,0.0,36290.0,1,8,7.0,4,3.0 -2551,3877,4157.508772736592,87.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9580.0,0.0,0.0,9605.0,0.0,0.0,3,1,2.0,1,0.0 -2552,3878,1954.2376856177755,41.0,112,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,2.0,0.0,39612.8,0.0,35320.0,1,8,1.0,4,2.0 -2553,3879,1346.6523342029022,39.0,212,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47411.8,0.0,42200.0,1,2,0.0,4,2.0 -2554,3880,6125.73925844157,61.0,111,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,24770.0,57.0,0.0,24858.0,0.0,0.0,1,9,7.0,2,1.0 -2555,3881,1058.6897783938336,69.0,111,0.0,74,0.0,1.0,2.0,1.5,0.0,0.0,0.0,55820.0,156.0,0.0,54296.45,0.0,0.0,1,9,7.0,3,0.0 -2556,3883,3546.507655504868,38.0,111,23630.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35398.75,0.0,14790.0,3,9,7.0,3,2.0 -2557,3884,3405.2190990795857,27.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,13.0,0.0,65808.95,0.0,76760.0,1,10,8.0,3,2.0 -2558,3885,3046.2438393752595,33.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25805.35,0.0,23230.0,2,9,7.0,1,1.0 -2559,3886,1849.6160748886343,76.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18780.0,118.0,0.0,26320.45,0.0,7970.0,1,8,0.0,3,1.0 -2560,3889,1354.4247611004403,57.0,111,0.0,78,0.0,0.0,2.0,1.5,7470.0,0.0,0.0,14080.0,0.0,0.0,21550.0,0.0,0.0,1,8,7.0,3,0.0 -2561,3891,2103.095126725018,29.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42694.7,0.0,39160.0,3,8,6.0,4,2.0 -2562,3893,4038.3063563741257,26.0,400,3010.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29268.75,380.0,25920.0,2,0,0.0,4,2.0 -2563,3894,3188.99756390797,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11350.0,0.0,0.0,11262.3,0.0,0.0,1,8,6.0,1,0.0 -2564,3895,2602.8549282876124,59.0,111,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,28260.0,26.0,0.0,32600.15,0.0,6360.0,1,9,7.0,4,1.0 -2565,3896,1777.546970873046,62.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,21920.0,0.0,0.0,36093.7,0.0,15850.0,2,10,1.0,4,1.0 -2566,3898,2769.357035342227,38.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25120.0,0.0,19140.0,5,10,8.0,2,1.0 -2567,3903,1402.965905907882,60.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62195.7,0.0,25080.0,1,6,5.0,3,2.0 -2568,3905,3509.6500699903286,63.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19010.0,360.0,0.0,25021.6,0.0,0.0,1,9,0.0,3,0.0 -2569,3906,5133.065429867235,33.0,120,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29827.75,0.0,23740.0,3,0,2.0,4,2.0 -2570,3908,2421.123424492321,67.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,820.0,0.0,0.0,729.05,0.0,0.0,1,0,0.0,3,0.0 -2571,3909,2229.717003331798,47.0,112,1700.0,21,2.0,1.0,4.0,2.1,0.0,550.0,0.0,0.0,0.0,0.0,15104.1,3170.0,6430.0,5,6,0.0,4,2.0 -2572,3910,3120.693701927165,93.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36030.0,0.0,0.0,30709.7,0.0,0.0,5,8,7.0,1,0.0 -2573,3911,1145.3763940057809,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28070.0,0.0,0.0,31701.7,0.0,0.0,5,9,7.0,3,0.0 -2574,3914,3175.6809657479225,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18300.0,0.0,0.0,19766.0,0.0,0.0,1,10,8.0,3,0.0 -2575,3915,1442.5686807827178,68.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16210.0,78.0,0.0,16409.45,0.0,0.0,1,0,0.0,3,0.0 -2576,3916,3611.926592556838,69.0,111,0.0,71,1.0,0.0,2.0,1.5,0.0,0.0,0.0,15760.0,60.0,0.0,36822.95,0.0,0.0,1,9,7.0,3,1.0 -2577,3917,2077.900770305605,64.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13320.0,0.0,0.0,12675.7,0.0,0.0,1,1,2.0,1,0.0 -2578,3918,1285.1538954623052,53.0,112,10430.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31943.4,0.0,23920.0,1,9,1.0,3,1.0 -2579,3919,3402.8663918762195,25.0,112,0.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17743.0,0.0,1160.0,3,10,3.0,2,1.0 -2580,3920,2006.8739715059794,24.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,6610.0,0.0,0.0,0.0,0.0,15402.0,0.0,0.0,3,7,5.0,2,0.0 -2581,3921,2820.9418063276935,30.0,112,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38685.85,0.0,37460.0,3,8,0.0,4,2.0 -2582,3925,5003.362308065589,47.0,111,0.0,47,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,36498.95,0.0,37100.0,2,10,8.0,4,2.0 -2583,3926,8432.81136854894,46.0,120,0.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15605.2,0.0,0.0,1,0,0.0,2,0.0 -2584,3928,4377.811029079702,43.0,221,1990.0,63,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,34346.7,0.0,32150.0,2,1,1.0,4,2.0 -2585,3929,3019.1461874721454,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3789.0,0.0,0.0,3,9,7.0,1,0.0 -2586,3930,3556.227618966841,46.0,111,0.0,64,1.0,0.0,4.0,2.1,0.0,320.0,0.0,0.0,0.0,0.0,15624.0,400.0,9280.0,4,10,8.0,4,1.0 -2587,3932,2629.5647516696235,55.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,7,5.0,1,0.0 -2588,3933,3176.4730006618533,21.0,112,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17374.0,0.0,17720.0,3,10,0.0,1,1.0 -2589,3934,4029.9205998690377,32.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45488.7,0.0,46670.0,2,9,7.0,4,2.0 -2590,3935,6808.686682459186,58.0,221,18170.0,22,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,6.0,0.0,17974.4,0.0,1530.0,1,1,3.0,3,1.0 -2591,3936,3413.599604061042,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1863.8,0.0,0.0,3,9,7.0,1,0.0 -2592,3937,4882.001580395171,25.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39334.0,0.0,41020.0,3,10,8.0,3,2.0 -2593,3939,2288.8197574555566,62.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22240.0,0.0,0.0,22036.3,0.0,0.0,1,0,0.0,3,0.0 -2594,3941,3866.020260599039,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21680.0,0.0,0.0,21737.05,0.0,0.0,1,10,8.0,1,0.0 -2595,3942,1009.7006298845089,73.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32180.0,0.0,0.0,34631.45,0.0,0.0,1,0,0.0,3,0.0 -2596,3943,2093.880874774449,47.0,111,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56673.1,0.0,58610.0,1,5,4.0,4,2.0 -2597,3944,1234.3989637000434,54.0,120,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41299.65,0.0,44560.0,2,0,1.0,3,2.0 -2598,3945,1333.5325238191394,68.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,55910.0,0.0,0.0,50016.05,0.0,0.0,1,9,7.0,3,1.0 -2599,3949,3562.8617705519177,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11250.0,0.0,0.0,11191.5,0.0,0.0,1,5,4.0,1,0.0 -2600,3950,4103.802844539769,58.0,111,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36673.7,0.0,37500.0,5,9,7.0,4,3.0 -2601,3951,3484.069398892705,62.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10960.0,0.0,0.0,13387.0,0.0,0.0,3,10,8.0,1,0.0 -2602,3953,2772.947509996007,43.0,112,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36745.45,0.0,38610.0,2,10,2.0,4,2.0 -2603,3954,4257.809976492043,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26670.0,0.0,0.0,25540.7,0.0,0.0,1,9,7.0,3,0.0 -2604,3955,2473.4576393042967,76.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35580.0,89.0,0.0,44003.65,0.0,0.0,1,10,8.0,3,0.0 -2605,3956,4851.820169582413,40.0,120,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53480.55,0.0,53490.0,3,0,0.0,3,2.0 -2606,3960,5212.97451650792,71.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20740.0,0.0,0.0,20911.75,0.0,0.0,1,0,0.0,3,0.0 -2607,3963,3150.5118166418397,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12200.0,0.0,0.0,12109.5,0.0,0.0,1,10,8.0,1,0.0 -2608,3964,3808.421116217771,22.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,8431.0,0.0,0.0,5,10,8.0,5,0.0 -2609,3965,1827.8130666803197,71.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12950.0,0.0,0.0,12950.0,0.0,0.0,3,6,5.0,1,0.0 -2610,3966,2561.494848630564,34.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35976.6,0.0,37910.0,3,8,7.0,3,2.0 -2611,3968,3818.661970361938,31.0,111,0.0,53,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,4,10,8.0,1,1.0 -2612,3970,2008.8828653007522,39.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46931.75,0.0,46170.0,1,8,0.0,4,2.0 -2613,3971,2010.8007420875379,41.0,111,0.0,64,1.0,1.0,5.0,3.0,8750.0,0.0,0.0,0.0,0.0,0.0,45578.0,0.0,19850.0,3,7,6.0,4,1.0 -2614,3973,1494.4173685156816,61.0,212,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23340.0,17.0,0.0,27060.25,0.0,0.0,1,2,0.0,3,0.0 -2615,3974,2631.3860163104496,39.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54957.6,0.0,44900.0,2,8,1.0,4,2.0 -2616,3975,3022.2581306323987,40.0,112,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43102.9,0.0,43180.0,2,7,1.0,4,2.0 -2617,3976,2988.8130523727004,45.0,112,1940.0,38,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,55190.35,0.0,56180.0,3,7,1.0,4,2.0 -2618,3977,2786.995693538059,47.0,111,0.0,54,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,47828.5,0.0,48450.0,1,9,7.0,4,3.0 -2619,3980,3417.431595040315,46.0,111,0.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16197.2,0.0,0.0,3,7,5.0,2,1.0 -2620,3981,2996.2727410026823,41.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,25.0,0.0,26842.15,0.0,28350.0,1,6,0.0,1,1.0 -2621,3982,2585.547220892013,43.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,27.0,0.0,25147.75,0.0,24150.0,2,9,7.0,4,2.0 -2622,3985,2359.7569433120807,29.0,111,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,13179.0,0.0,0.0,3,7,5.0,1,0.0 -2623,3986,3117.198769192389,49.0,112,0.0,65,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24566.75,1010.0,21240.0,3,6,0.0,4,1.0 -2624,3987,2666.7727213059165,52.0,300,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23838.25,0.0,22690.0,1,0,0.0,2,1.0 -2625,3988,3255.2041209285076,30.0,111,7960.0,56,1.0,0.0,1.0,1.0,0.0,860.0,0.0,0.0,0.0,0.0,13023.55,0.0,4420.0,3,9,7.0,1,1.0 -2626,3991,3082.6848314891117,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19450.0,0.0,0.0,18859.9,0.0,0.0,1,8,6.0,1,0.0 -2627,3994,2356.0065101304526,60.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27800.0,0.0,0.0,37166.95,0.0,8910.0,1,0,3.0,3,0.0 -2628,3995,2025.822372407839,53.0,111,11730.0,46,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,16140.45,0.0,3720.0,3,4,4.0,2,1.0 -2629,3996,1242.3754077837484,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21430.0,0.0,0.0,21903.75,0.0,0.0,1,9,7.0,3,0.0 -2630,3997,2368.258308948739,51.0,111,0.0,56,1.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,50416.0,0.0,34470.0,3,10,8.0,4,1.0 -2631,3999,1424.1307151726915,51.0,111,10710.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52433.65,0.0,51780.0,1,10,8.0,3,2.0 -2632,4001,1919.8074185424873,65.0,111,0.0,72,3,3.0,4.0,2.5,0.0,0.0,0.0,12270.0,0.0,0.0,77944.15,0.0,64030.0,1,9,7.0,4,3.0 -2633,4004,1836.1609465346207,59.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16931.2,0.0,18210.0,1,10,8.0,1,1.0 -2634,4006,2303.2507091341613,72.0,400,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3920.0,0.0,0.0,4261.0,0.0,0.0,1,0,0.0,1,1.0 -2635,4008,1793.356619052108,44.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32669.35,0.0,32380.0,3,9,7.0,2,1.0 -2636,4010,3235.5677430834826,37.0,111,2100.0,67,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,31022.7,0.0,15820.0,3,10,8.0,4,1.0 -2637,4011,1792.7105437864357,53.0,111,60.0,54,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,44171.15,0.0,40700.0,1,9,7.0,4,3.0 -2638,4012,3264.937185306671,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25390.0,11.0,0.0,20337.8,0.0,0.0,1,6,5.0,1,0.0 -2639,4013,2568.549977361362,57.0,112,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,12090.0,0.0,0.0,25833.45,0.0,14510.0,1,7,1.0,4,1.0 -2640,4014,966.2298422739807,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61180.0,0.0,0.0,57445.85,0.0,0.0,1,6,5.0,3,0.0 -2641,4015,8325.285661277827,49.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,27.0,0.0,39444.25,0.0,46640.0,1,10,8.0,1,1.0 -2642,4017,1521.1525316533152,38.0,300,0.0,48,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,57594.0,0.0,43880.0,2,0,0.0,4,2.0 -2643,4018,2903.5563228210276,80.0,300,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15330.0,0.0,0.0,14816.85,0.0,0.0,1,0,0.0,1,0.0 -2644,4020,2343.7793595708517,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20150.0,0.0,0.0,19173.75,0.0,0.0,1,6,4.0,1,0.0 -2645,4021,4128.679922492676,38.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24554.05,0.0,26220.0,3,10,8.0,1,1.0 -2646,4024,1199.950336492699,49.0,111,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,51074.75,0.0,55150.0,1,7,5.0,4,2.0 -2647,4027,1264.8727548493412,51.0,112,0.0,21,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,52397.8,0.0,53000.0,1,9,0.0,4,3.0 -2648,4028,6146.267396521897,45.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21551.45,0.0,22210.0,3,8,6.0,1,1.0 -2649,4029,2374.5011920750276,54.0,300,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20715.0,0.0,20900.0,2,0,0.0,1,1.0 -2650,4031,1873.8585442933597,75.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56850.0,0.0,0.0,50478.45,0.0,0.0,5,1,3.0,3,0.0 -2651,4033,3006.154185320183,23.0,112,4950.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31135.75,0.0,25060.0,3,10,5.0,4,2.0 -2652,4034,1785.3006158977087,53.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20240.35,0.0,21500.0,3,8,7.0,1,1.0 -2653,4035,1342.9300918425527,58.0,112,0.0,63,1.0,1.0,3.0,2.0,8750.0,4850.0,0.0,0.0,0.0,0.0,29399.8,1300.0,14480.0,1,8,1.0,4,1.0 -2654,4036,3184.869343067114,39.0,221,0.0,37,2.0,1.0,3.0,1.8,0.0,0.0,0.0,26320.0,26.0,0.0,64023.55,0.0,39740.0,2,1,2.0,4,2.0 -2655,4037,3098.584032560892,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11020.0,0.0,0.0,13300.0,0.0,0.0,3,4,4.0,3,0.0 -2656,4039,1539.5578762945631,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,71740.0,170.0,0.0,66324.65,0.0,0.0,1,10,8.0,3,0.0 -2657,4040,2639.31852220258,75.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11070.0,0.0,0.0,10999.8,0.0,0.0,1,7,2.0,1,0.0 -2658,4042,1912.82705975068,44.0,211,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,7050.0,0.0,0.0,32527.2,0.0,14370.0,2,4,4.0,2,1.0 -2659,4043,3168.5509190259595,27.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36889.0,0.0,37360.0,2,10,8.0,3,2.0 -2660,4044,3227.069481463059,40.0,112,0.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45874.75,0.0,44240.0,2,5,0.0,4,2.0 -2661,4048,5033.064263838043,55.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21519.65,0.0,21740.0,3,7,0.0,2,2.0 -2662,4049,2078.544947681946,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24220.0,0.0,0.0,23116.45,0.0,0.0,1,9,7.0,3,0.0 -2663,4050,3182.076122606265,51.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22101.65,0.0,24830.0,2,9,7.0,1,1.0 -2664,4052,1864.8533352826173,50.0,112,0.0,23,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,78816.35,0.0,100510.0,1,10,4.0,4,1.0 -2665,4055,3023.932452850324,58.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35347.9,0.0,38720.0,2,10,8.0,3,2.0 -2666,4056,1130.1927720648132,48.0,120,110.0,11,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38755.6,0.0,25070.0,1,0,0.0,4,2.0 -2667,4057,992.5625076604338,55.0,112,0.0,45,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37354.9,0.0,40630.0,1,9,2.0,2,2.0 -2668,4058,2901.556305992432,51.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,61500.25,0.0,68450.0,3,10,8.0,3,2.0 -2669,4059,1950.8302630175515,26.0,211,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46450.95,0.0,50310.0,3,1,2.0,3,2.0 -2670,4060,2390.746602530475,65.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12890.0,0.0,0.0,12653.7,0.0,0.0,5,9,3.0,1,0.0 -2671,4061,1615.6098370301331,54.0,300,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24110.95,0.0,25110.0,1,0,0.0,3,1.0 -2672,4063,4016.5204384208923,27.0,111,6330.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50935.95,0.0,42010.0,3,9,7.0,3,2.0 -2673,4064,2293.032792428683,90.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13520.0,0.0,0.0,13220.75,0.0,0.0,5,8,7.0,1,0.0 -2674,4066,1136.2952264147873,55.0,111,13310.0,37,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,1094.0,0.0,319716.2,0.0,331270.0,2,10,8.0,4,3.0 -2675,4068,1618.3762439452403,50.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44703.7,0.0,44330.0,2,8,6.0,4,2.0 -2676,4069,2219.6379182701703,47.0,112,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,19110.0,0.0,0.0,40454.95,0.0,23920.0,2,8,0.0,4,1.0 -2677,4070,2740.313016192382,41.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,22970.0,0.0,0.0,37989.9,0.0,16560.0,2,6,5.0,4,1.0 -2678,4071,2096.9249999189456,54.0,111,3520.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34204.0,0.0,24840.0,3,6,5.0,2,2.0 -2679,4073,2393.6707969684917,60.0,400,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34598.9,0.0,35020.0,1,0,0.0,1,1.0 -2680,4075,3280.2779992418746,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30000.0,0.0,0.0,26430.85,0.0,0.0,1,9,7.0,1,0.0 -2681,4077,2113.516188919225,60.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48420.0,0.0,0.0,49221.35,0.0,0.0,1,8,7.0,3,0.0 -2682,4079,2140.0656502365755,38.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63043.95,0.0,63630.0,2,8,7.0,4,2.0 -2683,4080,3411.4726876566915,83.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14520.0,0.0,0.0,13012.05,0.0,0.0,1,0,0.0,3,0.0 -2684,4081,2512.0806380964827,25.0,111,0.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12052.8,0.0,0.0,3,8,6.0,5,1.0 -2685,4082,2140.662365929895,65.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37000.0,0.0,0.0,36571.35,0.0,0.0,1,10,0.0,3,0.0 -2686,4083,2765.711685752031,42.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40420.5,0.0,48810.0,2,10,8.0,1,1.0 -2687,4084,3149.0787418399154,44.0,112,0.0,52,1.0,1.0,2.0,1.3,0.0,270.0,0.0,0.0,0.0,0.0,14615.9,3030.0,6750.0,3,10,4.0,2,1.0 -2688,4085,2439.8996456910318,66.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28110.0,0.0,0.0,27582.95,0.0,0.0,1,9,7.0,3,0.0 -2689,4087,2212.173741918344,28.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,550.0,0.0,0.0,0.0,0.0,6915.9,190.0,880.0,3,8,7.0,2,1.0 -2690,4090,2981.3382317886676,51.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17279.85,0.0,17970.0,1,9,7.0,1,1.0 -2691,4092,1058.1846035411415,51.0,111,6290.0,56,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38992.25,0.0,33130.0,2,9,7.0,4,3.0 -2692,4093,5140.766773169313,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17070.0,0.0,0.0,17021.45,0.0,0.0,1,9,7.0,1,0.0 -2693,4094,2849.022276124011,45.0,111,6070.0,56,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24319.15,0.0,18710.0,3,9,7.0,4,2.0 -2694,4095,2360.993447738439,77.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22140.0,56.0,0.0,22184.6,0.0,0.0,1,7,0.0,3,0.0 -2695,4096,4288.897999474653,50.0,111,7390.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29302.5,0.0,24450.0,2,8,6.0,3,2.0 -2696,4100,3424.1784124532114,22.0,211,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11931.0,0.0,6970.0,3,1,2.0,3,1.0 -2697,4101,2963.9041880646605,50.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39521.65,0.0,39750.0,2,8,6.0,1,1.0 -2698,4102,3621.24583150119,28.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20836.0,0.0,18940.0,3,7,5.0,1,0.0 -2699,4104,3802.7290028344887,29.0,111,0.0,85,0.0,0.0,4.0,2.1,10010.0,0.0,0.0,0.0,0.0,0.0,16577.0,0.0,0.0,3,8,7.0,4,0.0 -2700,4105,2780.8747527187334,33.0,400,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17101.35,0.0,17040.0,2,0,0.0,1,1.0 -2701,4108,4297.779534541896,25.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18015.2,0.0,18980.0,3,7,0.0,1,1.0 -2702,4109,2380.523153789552,43.0,112,6770.0,65,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14612.0,0.0,7920.0,3,7,0.0,1,1.0 -2703,4110,1615.1147590849798,53.0,400,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34282.95,0.0,19680.0,1,0,0.0,3,2.0 -2704,4111,3436.6574327771364,50.0,300,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16547.4,0.0,17980.0,2,0,1.0,1,1.0 -2705,4113,1442.6734995033282,51.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,8.0,0.0,54856.45,0.0,59820.0,2,7,0.0,3,2.0 -2706,4114,2809.991466305901,82.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11770.0,0.0,0.0,11641.85,0.0,0.0,1,10,0.0,1,0.0 -2707,4115,5138.380529117353,24.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14447.6,0.0,13410.0,3,9,3.0,1,1.0 -2708,4117,4681.140065700141,42.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21930.6,0.0,21320.0,3,10,8.0,2,1.0 -2709,4118,2454.2693695858793,66.0,112,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2063.0,0.0,26367.7,0.0,0.0,1,10,0.0,1,1.0 -2710,4119,1753.3847175422486,51.0,400,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11990.0,777.0,0.0,25602.05,0.0,0.0,1,0,0.0,1,0.0 -2711,4121,3677.274283796864,40.0,221,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,23093.3,0.0,19800.0,3,1,1.0,4,2.0 -2712,4123,2290.320709852287,30.0,221,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16631.0,0.0,17510.0,3,1,3.0,1,1.0 -2713,4124,4431.007447331546,27.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20050.15,0.0,21300.0,3,9,7.0,1,1.0 -2714,4125,1691.045668205132,44.0,300,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59965.2,0.0,43530.0,1,0,0.0,4,2.0 -2715,4126,1529.4556383744457,73.0,400,0.0,78,0.0,0.0,2.0,1.5,7890.0,0.0,1140.0,12710.0,0.0,0.0,21467.0,0.0,0.0,1,0,0.0,3,0.0 -2716,4127,1957.2147113410995,47.0,112,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49855.35,0.0,51000.0,2,10,4.0,4,2.0 -2717,4128,3009.710357192487,39.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27526.9,0.0,30610.0,3,8,7.0,1,1.0 -2718,4129,1321.823502708531,64.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34860.0,46.0,0.0,34396.55,0.0,0.0,1,0,0.0,3,0.0 -2719,4130,1711.3784144772744,30.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39031.55,0.0,38680.0,2,9,7.0,4,2.0 -2720,4132,2014.6963464948506,61.0,111,5860.0,78,0.0,0.0,4.0,2.3,0.0,0.0,0.0,12990.0,0.0,0.0,23796.0,0.0,2780.0,2,6,4.0,4,0.0 -2721,4133,1413.69646813723,33.0,120,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37219.35,0.0,31310.0,1,0,0.0,4,2.0 -2722,4135,2825.279167216104,28.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33114.8,0.0,34930.0,5,9,7.0,3,2.0 -2723,4138,3387.394331822049,47.0,111,0.0,55,2.0,2.0,4.0,2.3,5350.0,2890.0,0.0,8720.0,0.0,0.0,34868.6,260.0,16730.0,3,10,8.0,5,2.0 -2724,4139,2263.4148498363984,52.0,300,0.0,65,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37582.8,0.0,39170.0,2,0,0.0,4,3.0 -2725,4140,1860.2518576546054,32.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36991.35,0.0,31840.0,2,5,0.0,4,2.0 -2726,4143,2128.5521552675673,52.0,112,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10950.0,0.0,0.0,34741.4,0.0,26730.0,1,9,0.0,3,1.0 -2727,4144,2707.682711242541,31.0,120,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48986.75,0.0,40910.0,2,0,0.0,4,2.0 -2728,4146,1255.131531879264,58.0,111,10860.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5840.0,0.0,0.0,23485.25,0.0,8160.0,1,5,4.0,1,1.0 -2729,4148,2749.629246157154,45.0,111,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38413.3,0.0,26880.0,1,9,7.0,4,2.0 -2730,4149,1710.704885151619,55.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24730.0,6.0,0.0,57217.55,0.0,38520.0,3,9,7.0,3,1.0 -2731,4150,1511.05251560459,49.0,111,0.0,63,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,3.0,0.0,39940.7,0.0,39570.0,2,8,7.0,4,3.0 -2732,4152,1167.7621299645568,42.0,111,0.0,56,2.0,1.0,3.0,1.8,0.0,2690.0,0.0,0.0,0.0,0.0,21074.7,2500.0,8920.0,3,7,5.0,2,2.0 -2733,4153,2424.807532300347,50.0,112,12980.0,38,2.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61429.85,0.0,47910.0,2,9,0.0,4,2.0 -2734,4154,1821.702832388518,31.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27948.7,0.0,19090.0,3,4,4.0,4,2.0 -2735,4156,4052.630440640472,41.0,111,0.0,56,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,110320.0,0.0,8610.0,5,10,8.0,4,2.0 -2736,4159,2281.696756868556,48.0,112,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11440.0,0.0,0.0,35263.25,0.0,23090.0,1,9,3.0,3,1.0 -2737,4162,2951.63310228907,78.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28760.0,0.0,0.0,28923.25,0.0,0.0,1,9,7.0,3,0.0 -2738,4163,2348.226358410967,51.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,20.0,0.0,64728.05,0.0,69510.0,1,10,8.0,3,2.0 -2739,4164,3333.3671181780533,74.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13990.0,0.0,0.0,13826.2,0.0,0.0,3,9,7.0,1,0.0 -2740,4166,1773.7235995438614,52.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21246.15,0.0,29490.0,3,9,7.0,1,1.0 -2741,4167,1297.4179629627292,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41550.0,224.0,0.0,38998.4,0.0,0.0,1,7,5.0,3,0.0 -2742,4168,7151.854145043647,31.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32479.05,0.0,31160.0,2,10,8.0,4,2.0 -2743,4170,911.2685063821812,56.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21860.0,0.0,0.0,20686.25,0.0,0.0,1,0,0.0,1,0.0 -2744,4171,2752.490416624495,65.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20340.0,0.0,0.0,25715.4,0.0,6550.0,1,8,7.0,3,1.0 -2745,4173,1585.3705508607063,65.0,120,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,0.0,37600.0,0.0,0.0,45798.5,0.0,3380.0,1,0,3.0,4,0.0 -2746,4174,5824.845468934216,30.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,132614.15,0.0,28410.0,1,9,7.0,4,2.0 -2747,4176,3997.2847883716813,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,10140.0,22310.0,0.0,0.0,31116.9,0.0,0.0,3,9,7.0,3,0.0 -2748,4177,1847.6935209878063,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41960.0,0.0,0.0,37128.15,0.0,0.0,1,10,8.0,3,0.0 -2749,4181,3290.1163570097265,57.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10984.6,0.0,0.0,3,8,7.0,3,2.0 -2750,4182,2825.252054251885,31.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32317.95,0.0,32630.0,3,9,7.0,3,2.0 -2751,4184,3724.673848966429,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9610.0,0.0,0.0,3,9,7.0,1,0.0 -2752,4185,2109.069298159001,62.0,111,8160.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,23190.0,0.0,0.0,51987.0,0.0,27750.0,1,8,6.0,3,1.0 -2753,4186,1123.9792510611699,63.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26300.0,0.0,0.0,24805.05,0.0,0.0,1,0,0.0,3,0.0 -2754,4188,2258.2279203389426,38.0,120,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47271.85,0.0,41690.0,2,0,0.0,4,2.0 -2755,4190,5747.950890275059,67.0,112,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,50830.0,0.0,246.0,63536.4,0.0,19460.0,1,9,1.0,3,1.0 -2756,4191,2012.630151770522,45.0,400,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40693.1,0.0,48020.0,2,0,0.0,1,1.0 -2757,4193,2144.3985051850123,68.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18830.0,0.0,0.0,17888.4,0.0,0.0,1,5,4.0,1,0.0 -2758,4196,3127.742794397186,68.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16350.0,0.0,0.0,15118.25,0.0,0.0,1,0,0.0,3,0.0 -2759,4200,1542.8072824495023,50.0,112,0.0,85,0.0,0.0,6.0,3.1,0.0,0.0,0.0,19400.0,0.0,0.0,29854.5,0.0,0.0,1,8,0.0,4,0.0 -2760,4201,3878.439213889111,30.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,7.0,0.0,39315.9,0.0,40770.0,2,9,7.0,3,2.0 -2761,4204,2491.5334043079824,44.0,112,1450.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,10370.0,0.0,0.0,48827.9,0.0,36600.0,2,8,0.0,4,2.0 -2762,4205,3075.674173649823,49.0,111,8470.0,55,1.0,0.0,1.0,1.0,0.0,1750.0,0.0,0.0,8.0,0.0,12264.55,0.0,0.0,3,7,5.0,1,1.0 -2763,4210,1087.5737645755319,75.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35270.0,0.0,0.0,33642.5,0.0,0.0,1,9,0.0,3,0.0 -2764,4211,2897.761561009715,67.0,111,0.0,74,0.0,0.0,3.0,1.8,0.0,0.0,0.0,45150.0,0.0,0.0,41264.25,0.0,0.0,1,10,8.0,4,0.0 -2765,4212,3006.122737581125,74.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17500.0,0.0,0.0,16707.95,0.0,0.0,1,10,8.0,1,0.0 -2766,4214,4279.0612315187,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2002.0,0.0,0.0,3,9,7.0,1,0.0 -2767,4216,1609.3555862146413,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26840.0,0.0,0.0,25318.85,0.0,0.0,1,10,0.0,3,0.0 -2768,4218,1711.8462083168888,51.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15094.65,0.0,16020.0,3,9,7.0,1,1.0 -2769,4220,3736.7041122063047,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12180.0,0.0,0.0,12900.0,0.0,0.0,3,9,7.0,1,0.0 -2770,4223,2205.0657184928673,41.0,111,18320.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,111829.15,0.0,87010.0,2,10,8.0,4,2.0 -2771,4224,2809.011990179285,37.0,120,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,157.0,0.0,57535.45,0.0,52400.0,5,0,2.0,4,2.0 -2772,4225,2728.169050985038,40.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,11850.0,14.0,0.0,42018.85,0.0,27450.0,3,9,7.0,4,1.0 -2773,4226,2368.014917668394,32.0,211,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16758.3,0.0,16190.0,3,1,3.0,1,1.0 -2774,4227,2016.4719300877027,67.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51170.0,249.0,0.0,64207.05,0.0,0.0,1,8,0.0,3,0.0 -2775,4228,2665.6582406615244,27.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41415.95,0.0,36840.0,3,5,4.0,4,2.0 -2776,4230,1886.6475193038766,46.0,300,7050.0,63,2.0,2.0,4.0,2.3,4660.0,0.0,0.0,3220.0,0.0,0.0,47276.45,0.0,32590.0,1,0,0.0,4,2.0 -2777,4231,2514.1823670074814,59.0,400,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,630.0,0.0,0.0,44029.55,0.0,40800.0,1,0,0.0,3,1.0 -2778,4232,3306.815140972501,49.0,111,0.0,46,1.0,1.0,3.0,1.6,5970.0,0.0,0.0,0.0,0.0,0.0,40684.1,0.0,4630.0,3,10,8.0,2,1.0 -2779,4233,1622.890038083123,44.0,111,0.0,21,2.0,2.0,7.0,3.8,0.0,0.0,0.0,17250.0,28.0,0.0,101999.8,0.0,85250.0,1,10,8.0,5,2.0 -2780,4235,3771.242466709741,51.0,400,0.0,85,0.0,0.0,1.0,1.0,9690.0,0.0,0.0,0.0,0.0,0.0,12642.0,0.0,0.0,3,0,0.0,1,0.0 -2781,4236,1849.8025238418888,59.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,419.0,0.0,71831.55,0.0,27240.0,1,8,0.0,3,2.0 -2782,4237,1470.584452277921,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37230.0,0.0,0.0,36511.1,0.0,0.0,1,6,4.0,3,0.0 -2783,4238,4153.615277869957,54.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,121773.7,0.0,150450.0,2,10,8.0,4,2.0 -2784,4240,1173.2023640132832,57.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28254.55,0.0,30090.0,2,8,2.0,3,2.0 -2785,4241,2079.4113712714657,37.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51675.15,0.0,56030.0,2,6,0.0,4,2.0 -2786,4242,832.0084886066765,44.0,300,5720.0,48,3,1.0,5.0,2.8,0.0,5560.0,0.0,0.0,0.0,0.0,61130.3,940.0,49020.0,2,0,1.0,5,4.0 -2787,4243,3781.4206500807586,53.0,111,7060.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,64197.9,0.0,62570.0,2,9,7.0,4,2.0 -2788,4245,2877.8553652299784,84.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27580.0,24.0,0.0,24396.65,0.0,0.0,1,9,7.0,1,0.0 -2789,4246,2121.646496196022,53.0,112,6490.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,17.0,0.0,27076.75,0.0,0.0,1,6,0.0,3,2.0 -2790,4247,2323.7010854608325,30.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,222.0,0.0,12213.95,0.0,0.0,5,5,4.0,1,1.0 -2791,4248,2428.1536389226226,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33850.0,0.0,0.0,32683.25,0.0,0.0,1,7,0.0,3,0.0 -2792,4251,1099.4199581684325,74.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25120.0,0.0,0.0,24609.4,0.0,0.0,1,7,5.0,3,0.0 -2793,4253,2345.146191349596,59.0,112,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62745.45,0.0,72630.0,2,8,0.0,3,1.0 -2794,4254,1359.0582323388896,46.0,112,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46012.0,0.0,48420.0,2,10,0.0,4,2.0 -2795,4255,1302.778984895655,65.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20660.0,0.0,0.0,19984.8,0.0,0.0,3,9,1.0,1,0.0 -2796,4256,1705.4190651123831,45.0,120,0.0,43,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,35.0,0.0,49908.8,0.0,43170.0,2,0,0.0,4,2.0 -2797,4257,1812.1877784860437,74.0,112,0.0,44,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5110.0,0.0,0.0,8300.0,0.0,0.0,5,7,1.0,1,1.0 -2798,4258,1590.0374623372907,47.0,300,450.0,67,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18893.35,0.0,18750.0,2,0,0.0,4,2.0 -2799,4259,2582.2783914313163,78.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10950.0,0.0,0.0,10957.0,0.0,0.0,5,0,0.0,1,0.0 -2800,4260,1174.1361449796652,28.0,112,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33122.6,0.0,31480.0,2,10,0.0,4,1.0 -2801,4261,1406.3936510149813,59.0,112,14400.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,13520.0,0.0,0.0,31125.3,0.0,3360.0,1,8,0.0,3,1.0 -2802,4262,2405.280601466138,36.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,22.0,0.0,46414.15,0.0,43660.0,2,8,0.0,4,2.0 -2803,4263,2196.867371811395,51.0,111,0.0,37,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,100324.6,0.0,106660.0,2,10,8.0,4,3.0 -2804,4264,2848.2512638228554,29.0,111,0.0,62,2.0,1.0,5.0,3.0,0.0,0.0,0.0,15130.0,0.0,0.0,61441.0,0.0,54390.0,3,6,5.0,4,2.0 -2805,4266,1784.1963968836337,53.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,104688.0,0.0,119690.0,1,10,0.0,4,2.0 -2806,4269,1910.0811976370685,42.0,112,1050.0,67,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,34822.45,0.0,22900.0,3,8,0.0,4,1.0 -2807,4271,2695.3530805163514,59.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40310.0,0.0,0.0,36385.75,0.0,0.0,2,10,8.0,3,0.0 -2808,4272,2197.654510634641,64.0,112,0.0,74,0.0,0.0,2.0,1.5,8750.0,0.0,370.0,54550.0,1745.0,0.0,107147.1,0.0,0.0,1,6,0.0,2,0.0 -2809,4273,1456.2996701959078,51.0,300,0.0,22,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,21997.5,0.0,14050.0,1,0,0.0,4,1.0 -2810,4275,4333.05758179249,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13190.0,72.0,0.0,24451.55,0.0,0.0,1,5,4.0,1,0.0 -2811,4276,3651.076703977985,38.0,111,4900.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23465.25,0.0,7740.0,2,9,7.0,4,2.0 -2812,4277,2884.1916632715343,60.0,300,1080.0,72,2.0,2.0,3.0,2.0,6050.0,0.0,0.0,23880.0,0.0,0.0,43249.85,0.0,21580.0,1,0,0.0,4,2.0 -2813,4278,1841.323282263989,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30000.0,0.0,0.0,28461.5,0.0,0.0,3,9,7.0,3,0.0 -2814,4281,2022.966428515857,64.0,112,0.0,78,1.0,1.0,3.0,2.0,2840.0,0.0,0.0,25840.0,4671.0,0.0,41989.8,0.0,8530.0,1,9,0.0,4,1.0 -2815,4283,1169.4276972706512,76.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22900.0,0.0,0.0,22589.45,0.0,0.0,1,5,4.0,3,0.0 -2816,4288,3071.2340263546084,54.0,111,300.0,68,1.0,1.0,2.0,1.5,0.0,230.0,0.0,0.0,0.0,0.0,16988.0,3310.0,10880.0,3,10,8.0,3,1.0 -2817,4290,1981.5087353676306,62.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21010.0,0.0,0.0,36734.9,0.0,19230.0,2,7,5.0,3,1.0 -2818,4291,1328.911808073789,57.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49854.95,0.0,37540.0,1,8,6.0,4,2.0 -2819,4292,2984.9600859264297,31.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17327.9,0.0,18570.0,3,10,8.0,1,1.0 -2820,4293,2797.446403592731,45.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,1090.0,0.0,0.0,0.0,0.0,23206.0,960.0,15580.0,3,6,5.0,2,1.0 -2821,4294,2831.0573993371418,65.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,27460.0,0.0,0.0,24867.1,0.0,0.0,3,8,7.0,4,0.0 -2822,4295,3152.5314196677286,83.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13170.0,246.0,0.0,25738.1,0.0,0.0,1,9,7.0,1,0.0 -2823,4296,1879.5726712996805,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29430.0,0.0,0.0,33571.8,0.0,0.0,1,9,7.0,3,0.0 -2824,4297,2028.4295540376238,57.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53253.05,0.0,59510.0,2,10,0.0,3,2.0 -2825,4298,2541.0534386307577,72.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13860.0,0.0,0.0,14629.95,0.0,0.0,5,9,7.0,1,0.0 -2826,4299,1514.4654077908951,61.0,112,7970.0,74,1.0,0.0,3.0,2.0,0.0,0.0,0.0,32870.0,443.0,0.0,81046.7,0.0,9730.0,1,7,4.0,4,1.0 -2827,4300,2572.1967064862397,25.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6950.0,0.0,4550.0,3,8,7.0,3,0.0 -2828,4302,1702.0968043597677,41.0,300,0.0,21,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,48960.75,0.0,44270.0,2,0,0.0,4,2.0 -2829,4304,2445.6622106442587,33.0,112,670.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27679.05,0.0,26940.0,1,6,0.0,4,1.0 -2830,4306,3011.2058778994337,37.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15528.55,0.0,16660.0,3,10,8.0,1,1.0 -2831,4308,1580.1883692850733,29.0,112,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,31450.45,0.0,21080.0,3,8,0.0,4,1.0 -2832,4309,3024.5505998358844,59.0,111,16440.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17062.15,0.0,0.0,3,10,8.0,1,0.0 -2833,4310,2266.2141330076,49.0,120,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,71549.0,0.0,76440.0,1,0,0.0,4,2.0 -2834,4311,2035.5533309229208,65.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12600.0,0.0,0.0,15354.0,0.0,0.0,3,8,1.0,1,0.0 -2835,4313,2288.1606730062754,35.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,138.0,0.0,16773.45,0.0,13610.0,1,6,5.0,2,1.0 -2836,4314,3542.43456999356,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16920.0,0.0,0.0,15890.1,0.0,0.0,1,9,7.0,1,0.0 -2837,4315,3053.212958754257,34.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25848.35,0.0,28540.0,2,8,6.0,1,1.0 -2838,4316,3108.374156433367,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18120.0,0.0,0.0,15975.95,0.0,0.0,3,9,7.0,1,0.0 -2839,4317,2971.0240997814944,64.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25520.0,0.0,0.0,25096.1,0.0,0.0,3,10,8.0,1,0.0 -2840,4319,3326.033529275137,39.0,111,6680.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29017.3,0.0,24410.0,3,9,7.0,3,2.0 -2841,4320,3532.383960616888,58.0,111,0.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,7020.0,0.0,0.0,5437.35,0.0,0.0,1,10,8.0,1,1.0 -2842,4321,2882.7760827009097,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17370.0,123.0,0.0,20188.1,0.0,1840.0,3,10,8.0,1,0.0 -2843,4322,3414.555186018369,75.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27750.0,0.0,0.0,41467.4,0.0,0.0,1,8,1.0,3,0.0 -2844,4323,4316.262350265711,38.0,112,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30419.0,0.0,27560.0,3,7,0.0,4,2.0 -2845,4324,3748.1382878372583,25.0,111,0.0,68,1.0,1.0,2.0,1.3,0.0,450.0,0.0,0.0,0.0,0.0,11290.0,0.0,7610.0,3,10,8.0,2,1.0 -2846,4325,2113.6453359876296,61.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12910.0,58.0,0.0,90102.45,0.0,20600.0,1,10,8.0,3,1.0 -2847,4326,3675.3867528458663,73.0,111,0.0,86,1.0,1.0,2.0,1.5,0.0,3930.0,0.0,4280.0,0.0,0.0,16170.0,3650.0,2210.0,3,9,7.0,2,1.0 -2848,4327,1942.0572519583136,58.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27907.45,0.0,29390.0,1,9,7.0,3,2.0 -2849,4328,2924.921269331852,48.0,400,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17460.0,0.0,0.0,29419.15,0.0,11770.0,3,0,0.0,4,1.0 -2850,4329,3483.0780294481106,26.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47416.0,0.0,50270.0,2,9,7.0,3,2.0 -2851,4330,3039.1943909833694,42.0,112,510.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20459.2,0.0,18540.0,3,10,5.0,1,1.0 -2852,4331,3109.8372640395614,30.0,400,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16173.0,0.0,16050.0,5,0,0.0,1,1.0 -2853,4332,2658.24335671519,45.0,300,3600.0,85,0.0,0.0,1.0,1.0,570.0,0.0,0.0,8000.0,0.0,0.0,15050.0,0.0,0.0,3,0,0.0,1,0.0 -2854,4333,2300.0972393972374,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31300.0,0.0,0.0,30319.25,0.0,0.0,3,10,8.0,3,0.0 -2855,4335,1601.6572625117599,48.0,300,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,67167.0,0.0,65010.0,2,0,0.0,3,2.0 -2856,4340,2508.195303130517,31.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,15830.0,82.0,0.0,80402.65,0.0,64220.0,1,10,8.0,4,2.0 -2857,4341,3363.2288034401417,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38230.0,0.0,0.0,36812.05,0.0,0.0,4,6,5.0,3,0.0 -2858,4342,3435.6881168662044,36.0,400,0.0,67,3,2.0,3.0,2.0,0.0,0.0,0.0,12340.0,0.0,0.0,46609.5,0.0,36350.0,1,0,0.0,4,3.0 -2859,4343,2605.9962100531384,38.0,300,11700.0,68,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,11943.6,0.0,0.0,2,0,0.0,4,2.0 -2860,4344,3048.1619846379203,25.0,111,0.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21819.75,0.0,10630.0,3,9,7.0,1,1.0 -2861,4345,5488.765980823884,24.0,111,760.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11688.0,0.0,9660.0,3,8,6.0,1,1.0 -2862,4346,4401.53070809704,78.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21610.0,0.0,0.0,22605.95,0.0,0.0,1,5,0.0,1,0.0 -2863,4348,1503.9998697012606,56.0,112,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20600.0,0.0,0.0,54058.55,0.0,37920.0,1,9,2.0,3,1.0 -2864,4350,1535.379087921852,74.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57780.0,0.0,0.0,68948.95,0.0,0.0,1,7,0.0,3,0.0 -2865,4351,3247.624936002052,54.0,221,1030.0,43,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,66896.0,0.0,63160.0,1,1,2.0,4,3.0 -2866,4355,2150.15538371996,26.0,120,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34838.0,0.0,35410.0,3,0,1.0,3,2.0 -2867,4356,2739.6949338633353,38.0,111,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,11798.0,0.0,0.0,3,7,6.0,1,0.0 -2868,4357,2423.4474277558443,84.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28710.0,0.0,0.0,34857.25,0.0,0.0,1,8,6.0,3,0.0 -2869,4360,3260.883529552525,33.0,111,0.0,85,0.0,0.0,1.0,1.0,9640.0,0.0,0.0,0.0,0.0,0.0,13185.0,0.0,0.0,3,10,8.0,1,0.0 -2870,4361,2596.3173791170234,22.0,111,2040.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24333.35,0.0,19270.0,3,5,4.0,3,2.0 -2871,4362,3691.2617138258443,23.0,112,0.0,43,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15816.0,0.0,14220.0,3,6,0.0,1,1.0 -2872,4363,7291.153481780635,70.0,111,9530.0,78,1.0,0.0,3.0,2.0,900.0,0.0,0.0,19520.0,0.0,0.0,28994.15,0.0,1130.0,1,10,8.0,4,1.0 -2873,4364,2545.206942429491,73.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24920.0,0.0,0.0,24269.7,0.0,0.0,1,5,0.0,3,0.0 -2874,4365,5718.532835630156,33.0,211,3440.0,67,2.0,2.0,2.0,1.5,0.0,150.0,0.0,0.0,0.0,0.0,38221.6,1790.0,33320.0,3,2,3.0,5,2.0 -2875,4368,1117.3572422766197,54.0,112,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64109.7,0.0,78810.0,2,6,0.0,2,1.0 -2876,4370,3136.6184398206356,22.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5994.0,0.0,3380.0,3,9,7.0,1,1.0 -2877,4372,3581.5465835703253,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6366.0,0.0,0.0,3,8,7.0,1,0.0 -2878,4373,1194.3843686403306,58.0,400,0.0,43,1.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28289.2,0.0,25810.0,1,0,1.0,2,1.0 -2879,4374,2033.495634275452,55.0,300,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56872.75,0.0,56450.0,1,0,1.0,3,2.0 -2880,4375,1982.9808978690937,79.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26180.0,0.0,0.0,33227.75,0.0,0.0,1,0,0.0,3,0.0 -2881,4377,3156.5277839415903,78.0,400,0.0,71,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10290.0,0.0,0.0,17239.0,0.0,0.0,1,0,0.0,2,1.0 -2882,4378,1243.5369294431978,57.0,112,0.0,54,3,2.0,3.0,2.0,0.0,0.0,0.0,860.0,0.0,0.0,42702.5,0.0,24780.0,1,6,1.0,4,3.0 -2883,4379,1252.1921725750226,47.0,300,0.0,63,2.0,2.0,5.0,2.8,9590.0,0.0,0.0,0.0,0.0,0.0,38476.0,0.0,22790.0,2,0,0.0,4,2.0 -2884,4380,4045.644154180406,36.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19524.25,0.0,21090.0,2,9,7.0,1,1.0 -2885,4381,3640.78959418627,63.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,8410.0,0.0,0.0,0.0,10294.0,0.0,0.0,3,8,0.0,1,0.0 -2886,4384,1827.1673517389504,56.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8418.0,0.0,410.0,3,6,4.0,1,1.0 -2887,4385,1571.3414184761814,35.0,212,990.0,63,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,36789.85,0.0,23240.0,2,1,0.0,4,2.0 -2888,4386,2020.7694064308032,34.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,49.0,0.0,54517.2,0.0,49160.0,2,10,4.0,4,2.0 -2889,4390,926.690221929893,50.0,111,2140.0,47,2.0,1.0,8.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,60044.0,0.0,43930.0,3,10,8.0,4,2.0 -2890,4391,957.5713946529464,47.0,112,2060.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28729.05,0.0,28710.0,2,8,2.0,4,2.0 -2891,4392,2110.0636020389225,36.0,111,0.0,55,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,28420.0,0.0,970.0,3,10,8.0,2,1.0 -2892,4393,3036.2156125673514,47.0,112,0.0,67,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,45733.3,0.0,40650.0,2,5,0.0,4,3.0 -2893,4394,3535.171470555579,36.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31882.3,0.0,31180.0,2,8,7.0,1,1.0 -2894,4395,3816.2064784807576,26.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12343.0,0.0,0.0,3,9,7.0,1,1.0 -2895,4396,3006.532217096406,37.0,111,16270.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42419.4,0.0,29970.0,3,10,8.0,4,2.0 -2896,4397,2936.3948437778918,24.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17715.85,0.0,15060.0,3,7,5.0,3,2.0 -2897,4399,3412.8857210193596,37.0,111,0.0,85,0.0,0.0,3.0,1.6,8750.0,0.0,0.0,0.0,0.0,0.0,15156.0,0.0,0.0,3,7,5.0,2,0.0 -2898,4400,3572.8938814441763,25.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22307.0,0.0,21800.0,3,10,8.0,1,1.0 -2899,4402,4058.5000820920336,72.0,221,2720.0,77,2.0,1.0,3.0,2.0,0.0,3490.0,0.0,27370.0,0.0,0.0,46162.0,2090.0,10700.0,1,1,3.0,5,2.0 -2900,4405,3000.109243668191,28.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22562.05,0.0,23950.0,3,0,0.0,1,1.0 -2901,4407,4305.786826907814,20.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23770.0,0.0,21460.0,3,10,8.0,1,1.0 -2902,4409,3656.311560175292,76.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30520.0,0.0,0.0,27421.9,0.0,0.0,1,10,8.0,1,0.0 -2903,4411,3117.9856557794387,55.0,112,2470.0,85,1.0,0.0,5.0,3.0,0.0,0.0,0.0,3610.0,0.0,0.0,22010.0,0.0,4000.0,3,5,0.0,4,1.0 -2904,4412,2084.3445694425554,53.0,111,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40311.75,0.0,36980.0,3,10,8.0,4,2.0 -2905,4414,1762.7414144329052,51.0,221,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20682.7,0.0,21390.0,1,1,2.0,3,1.0 -2906,4417,1892.1144190661878,49.0,111,0.0,85,1.0,0.0,3.0,2.0,0.0,9290.0,0.0,0.0,0.0,0.0,17980.0,190.0,4300.0,3,9,7.0,2,1.0 -2907,4419,4028.3078524960224,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2400.0,0.0,0.0,5,9,7.0,1,0.0 -2908,4421,2979.551980928606,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44160.0,0.0,0.0,42063.5,0.0,0.0,1,9,7.0,3,0.0 -2909,4422,2571.973256628922,40.0,112,64190.0,38,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59219.25,0.0,0.0,3,8,0.0,3,1.0 -2910,4423,1613.5023896386583,54.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27601.2,0.0,28480.0,1,9,0.0,3,2.0 -2911,4424,2953.1883381740367,36.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,13.0,0.0,59909.65,0.0,54810.0,2,10,8.0,4,2.0 -2912,4426,1032.9844642057797,59.0,120,0.0,11,1.0,1.0,2.0,1.5,0.0,0.0,0.0,7750.0,0.0,0.0,676.5,0.0,0.0,1,0,1.0,3,1.0 -2913,4427,2480.3013284373515,49.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47498.75,0.0,48370.0,2,8,6.0,4,2.0 -2914,4428,1707.3197236066353,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59380.0,217.0,0.0,57093.9,0.0,0.0,1,9,7.0,3,0.0 -2915,4429,3557.4426690451764,56.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12600.0,0.0,0.0,25983.5,0.0,0.0,3,9,7.0,3,1.0 -2916,4431,1643.6788169816614,75.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15400.0,0.0,0.0,16571.15,0.0,0.0,1,8,0.0,3,0.0 -2917,4433,1455.1330594917372,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32490.0,0.0,0.0,30585.9,0.0,0.0,1,7,0.0,3,0.0 -2918,4434,3063.6090727411597,81.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10670.0,0.0,0.0,12602.0,0.0,0.0,3,3,3.0,1,0.0 -2919,4436,3137.1489951119565,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64230.0,0.0,0.0,57233.9,0.0,0.0,1,10,8.0,3,0.0 -2920,4439,2229.001403957423,44.0,111,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47216.15,0.0,50230.0,2,6,4.0,4,2.0 -2921,4440,2265.191139071096,55.0,111,0.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,5170.0,0.0,0.0,73091.6,0.0,78330.0,1,9,7.0,4,3.0 -2922,4441,1024.2483239651938,75.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20630.0,0.0,0.0,20257.2,0.0,0.0,1,0,0.0,3,0.0 -2923,4444,1878.5633913977044,47.0,111,0.0,23,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,123698.75,0.0,88680.0,1,5,4.0,4,2.0 -2924,4445,1591.203083474756,44.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,93787.85,0.0,105460.0,2,10,8.0,4,2.0 -2925,4446,3390.870644045408,48.0,111,0.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18974.35,980.0,19270.0,3,9,7.0,3,2.0 -2926,4449,2855.0055302006454,54.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22730.0,0.0,0.0,51922.05,0.0,35120.0,2,8,6.0,3,1.0 -2927,4451,1969.8033586738925,37.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,70930.1,0.0,69520.0,2,9,7.0,4,2.0 -2928,4452,1045.772984442211,61.0,112,3290.0,78,1.0,0.0,5.0,2.8,0.0,0.0,1700.0,11400.0,0.0,0.0,29314.0,0.0,1820.0,3,9,0.0,4,1.0 -2929,4454,2066.29757416397,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,40800.0,157.0,0.0,39325.55,0.0,210.0,1,8,7.0,1,0.0 -2930,4455,3075.7259365325426,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4074.15,0.0,1200.0,3,8,7.0,1,0.0 -2931,4459,1290.0686641314176,39.0,111,1830.0,67,1.0,1.0,8.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,38828.55,0.0,18480.0,3,10,8.0,5,1.0 -2932,4461,2421.806904741429,53.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66068.05,0.0,72740.0,1,9,7.0,3,2.0 -2933,4462,2412.186249452249,85.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14430.0,0.0,0.0,14743.0,0.0,0.0,5,0,0.0,1,0.0 -2934,4463,3344.8056608793886,68.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14020.0,0.0,0.0,14761.05,0.0,0.0,5,0,0.0,1,0.0 -2935,4464,2241.234216825259,36.0,300,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,70600.0,0.0,68970.0,1,0,0.0,4,2.0 -2936,4466,3046.9452357993714,57.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12570.0,0.0,0.0,28218.9,0.0,16610.0,1,10,8.0,3,1.0 -2937,4467,1125.7441678071862,43.0,300,7740.0,52,3,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,42809.75,0.0,33380.0,2,0,0.0,4,3.0 -2938,4468,1870.581823178964,45.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,35.0,0.0,61078.05,0.0,57810.0,2,8,7.0,4,2.0 -2939,4469,2924.3768884081023,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48820.0,3.0,0.0,46388.3,0.0,0.0,1,9,7.0,5,0.0 -2940,4470,2446.833255473413,36.0,112,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,4.0,0.0,41326.05,0.0,44080.0,2,9,0.0,4,2.0 -2941,4471,1605.8939646416286,45.0,111,0.0,31,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,146582.2,0.0,142360.0,2,10,8.0,4,2.0 -2942,4472,1757.8970566803239,80.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11260.0,1015.0,0.0,12408.0,0.0,0.0,1,7,5.0,1,0.0 -2943,4475,4131.515580496016,45.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,890.0,0.0,0.0,0.0,0.0,20482.2,1660.0,15790.0,3,9,7.0,2,1.0 -2944,4478,2836.7742685778235,41.0,111,0.0,85,0.0,0.0,2.0,1.5,0.0,0.0,0.0,9900.0,0.0,0.0,11040.35,0.0,0.0,3,6,4.0,2,0.0 -2945,4480,3332.8367200394773,52.0,111,0.0,85,0.0,0.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,13610.0,0.0,0.0,3,10,8.0,1,0.0 -2946,4486,1610.0164670920813,34.0,112,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50946.25,0.0,47880.0,2,9,0.0,4,2.0 -2947,4491,3780.9261492519245,66.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15930.0,1477.0,0.0,18319.0,0.0,0.0,3,10,8.0,1,0.0 -2948,4492,3434.040065674032,41.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,110.0,0.0,33104.2,0.0,36770.0,3,10,8.0,1,1.0 -2949,4495,3414.8954025266835,53.0,111,0.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,11760.0,0.0,0.0,24740.0,0.0,7830.0,3,10,8.0,4,1.0 -2950,4501,2756.809118537721,53.0,111,0.0,34,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,31008.0,0.0,26250.0,1,9,7.0,2,1.0 -2951,4502,3316.776677309249,56.0,111,5520.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9139.55,0.0,540.0,3,9,7.0,1,1.0 -2952,4503,3258.965719607396,43.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48162.3,0.0,49490.0,2,9,7.0,4,2.0 -2953,4504,3176.134045291905,66.0,211,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,16190.0,0.0,0.0,16430.0,0.0,0.0,3,4,3.0,4,0.0 -2954,4506,2395.337384389531,42.0,111,850.0,85,1.0,0.0,2.0,1.5,0.0,3280.0,0.0,0.0,0.0,0.0,9720.0,0.0,720.0,3,8,7.0,2,1.0 -2955,4507,2917.733514624776,55.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39833.75,0.0,42480.0,2,9,7.0,3,2.0 -2956,4509,2758.631422180081,47.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43376.45,0.0,46580.0,2,9,7.0,4,2.0 -2957,4510,4304.604493765621,60.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18540.0,16.0,0.0,39077.15,0.0,20470.0,1,0,1.0,3,0.0 -2958,4513,3086.373312835258,27.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16027.65,0.0,16700.0,3,9,7.0,1,1.0 -2959,4515,3607.5569580541987,50.0,400,0.0,21,1.0,1.0,1.0,1.0,0.0,6780.0,0.0,0.0,0.0,0.0,9024.0,0.0,0.0,3,0,1.0,1,1.0 -2960,4518,1647.8836788211202,62.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40960.0,14.0,0.0,36999.9,0.0,0.0,1,8,0.0,3,0.0 -2961,4520,2131.8669911377892,50.0,111,18400.0,85,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38202.8,0.0,21570.0,1,6,5.0,2,1.0 -2962,4521,1410.207292869799,57.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21870.0,0.0,0.0,40169.85,0.0,21820.0,1,7,6.0,3,1.0 -2963,4522,2007.7921932023237,59.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46484.2,0.0,50020.0,1,8,0.0,3,2.0 -2964,4526,3349.450385147926,33.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,45608.0,0.0,54150.0,2,10,8.0,1,1.0 -2965,4528,2961.432762376063,28.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,25.0,0.0,34587.3,0.0,33690.0,1,8,6.0,3,2.0 -2966,4529,1230.327559701123,38.0,400,0.0,52,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,41489.0,0.0,34830.0,3,0,0.0,4,2.0 -2967,4530,3239.0824142110037,56.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12130.0,0.0,0.0,33319.2,0.0,24450.0,1,6,0.0,3,1.0 -2968,4532,2673.107095108011,69.0,221,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,12150.0,0.0,0.0,36009.75,0.0,25550.0,1,1,2.0,4,2.0 -2969,4533,3760.5851114293496,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18250.0,0.0,0.0,17908.5,0.0,0.0,3,10,8.0,1,0.0 -2970,4534,1875.8898677360837,35.0,400,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,20090.0,0.0,0.0,38107.75,0.0,18570.0,5,0,0.0,4,1.0 -2971,4536,6342.205812612493,58.0,111,0.0,68,2.0,1.0,3.0,2.0,0.0,0.0,0.0,8640.0,0.0,0.0,24898.2,0.0,16700.0,3,6,5.0,4,2.0 -2972,4537,3587.193402875983,28.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36633.55,0.0,39120.0,5,10,8.0,3,2.0 -2973,4544,1456.4246388099596,54.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12732.9,0.0,11580.0,3,9,1.0,1,1.0 -2974,4546,1511.931369702961,39.0,400,5700.0,21,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24098.25,0.0,9550.0,2,0,0.0,4,1.0 -2975,4549,1195.1378093809528,56.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,4.0,0.0,59057.0,0.0,64330.0,1,9,7.0,3,2.0 -2976,4550,1352.7556964765001,51.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17857.1,0.0,19410.0,2,9,7.0,1,1.0 -2977,4551,3017.0872322053283,66.0,111,0.0,71,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19960.0,0.0,0.0,28367.0,0.0,10880.0,1,10,8.0,3,1.0 -2978,4553,3359.3417155286334,28.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39268.05,0.0,36900.0,2,5,4.0,4,2.0 -2979,4554,1751.4248040198358,71.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27300.0,0.0,0.0,27105.0,0.0,0.0,1,5,0.0,3,0.0 -2980,4555,2830.6105084958426,54.0,120,300.0,37,3,2.0,4.0,2.5,0.0,0.0,0.0,7410.0,0.0,0.0,38685.45,0.0,31830.0,3,0,2.0,4,3.0 -2981,4557,2693.3406862298066,45.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36317.1,0.0,35070.0,3,9,7.0,4,2.0 -2982,4558,2331.990855893843,58.0,400,0.0,43,1.0,1.0,1.0,1.0,0.0,930.0,0.0,0.0,0.0,0.0,33376.15,360.0,31200.0,1,0,0.0,1,1.0 -2983,4559,2946.3344464863853,30.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,63586.65,0.0,72370.0,3,10,8.0,3,2.0 -2984,4560,2351.7727590049944,48.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35546.85,0.0,38690.0,1,7,5.0,3,2.0 -2985,4563,3004.1683176711617,60.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,34710.0,0.0,0.0,33377.15,0.0,0.0,1,8,6.0,4,1.0 -2986,4564,1812.6297578568513,32.0,120,0.0,47,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34743.2,0.0,23190.0,2,0,0.0,4,1.0 -2987,4565,6523.611322290832,36.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57187.3,0.0,52620.0,2,6,4.0,4,2.0 -2988,4567,5102.597893203396,97.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,40470.0,0.0,0.0,32646.3,0.0,0.0,1,1,1.0,1,0.0 -2989,4568,5242.33226430549,40.0,221,100.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15235.0,0.0,13610.0,3,1,1.0,1,1.0 -2990,4569,2596.3827383199296,41.0,111,7290.0,65,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27879.55,490.0,19750.0,3,7,5.0,4,2.0 -2991,4572,2640.97607200198,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22010.0,0.0,0.0,21724.15,0.0,0.0,3,10,0.0,3,0.0 -2992,4574,2937.0572221494754,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,40030.0,0.0,0.0,57789.65,0.0,0.0,1,10,8.0,1,0.0 -2993,4575,2149.6364745244055,42.0,221,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49772.55,0.0,48420.0,2,1,3.0,4,2.0 -2994,4578,2635.900391815927,31.0,111,9820.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37971.1,0.0,27630.0,2,9,7.0,4,2.0 -2995,4579,1598.7678684824366,53.0,111,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,65638.85,0.0,66150.0,1,10,8.0,2,2.0 -2996,4581,2801.511024403032,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12380.0,0.0,0.0,14114.0,0.0,0.0,3,9,7.0,1,0.0 -2997,4583,3841.252299843638,20.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,7816.0,0.0,4330.0,3,9,7.0,1,1.0 -2998,4584,1127.1667165070978,58.0,111,1090.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6912.95,0.0,4600.0,3,9,7.0,1,1.0 -2999,4585,3553.604460660049,37.0,111,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,81.0,0.0,96427.3,0.0,105180.0,2,9,7.0,4,2.0 -3000,4587,961.0548511089953,36.0,111,3780.0,85,1.0,0.0,7.0,3.2,0.0,130.0,0.0,0.0,0.0,0.0,40384.0,0.0,11620.0,3,8,6.0,5,1.0 -3001,4588,3469.0061338216788,69.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,920.0,0.0,0.0,12208.0,0.0,340.0,1,0,1.0,3,0.0 -3002,4589,2450.2484787665194,41.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40764.25,0.0,33050.0,2,6,0.0,4,2.0 -3003,4590,1127.5696362414424,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64700.0,104.0,0.0,59359.15,0.0,0.0,1,8,7.0,3,0.0 -3004,4592,3176.6957980110383,66.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17190.0,0.0,0.0,32006.75,0.0,16940.0,3,10,8.0,3,1.0 -3005,4593,2961.1763455225773,38.0,111,0.0,42,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,54396.6,0.0,51020.0,2,10,8.0,4,2.0 -3006,4594,1070.4145265898126,51.0,111,0.0,55,2.0,0.0,6.0,2.7,0.0,12060.0,0.0,0.0,0.0,0.0,23518.0,0.0,360.0,3,9,7.0,5,2.0 -3007,4595,1692.0501182815442,62.0,111,0.0,72,1.0,1.0,3.0,1.8,0.0,0.0,0.0,12130.0,0.0,0.0,27697.55,0.0,15420.0,3,4,4.0,5,1.0 -3008,4596,2952.796148916102,36.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37497.45,0.0,39370.0,2,6,5.0,4,2.0 -3009,4597,3416.793447503272,31.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22358.2,320.0,15940.0,3,8,6.0,4,2.0 -3010,4598,963.1241663889767,46.0,112,14180.0,65,3,2.0,7.0,3.6,0.0,910.0,0.0,0.0,0.0,0.0,56680.75,170.0,41380.0,2,10,0.0,5,4.0 -3011,4599,5101.983717943483,73.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20840.0,0.0,0.0,19412.55,0.0,0.0,1,9,1.0,1,0.0 -3012,4601,1499.5701201521288,39.0,112,0.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,11.0,0.0,35474.3,0.0,32950.0,5,8,0.0,2,1.0 -3013,4603,1934.262438015967,72.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29470.0,0.0,0.0,28919.5,0.0,0.0,1,9,7.0,3,0.0 -3014,4604,3535.771606645785,57.0,111,2860.0,78,0.0,0.0,3.0,2.0,5750.0,0.0,0.0,29930.0,0.0,0.0,41465.65,0.0,4520.0,3,9,7.0,4,0.0 -3015,4605,1568.7349037084714,60.0,111,12280.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,3000.0,0.0,0.0,21076.9,0.0,7990.0,1,6,5.0,3,0.0 -3016,4606,2183.8589889061445,52.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,75005.5,0.0,79760.0,2,9,7.0,4,2.0 -3017,4609,2223.6240259834603,60.0,300,0.0,54,1.0,0.0,1.0,1.0,0.0,4530.0,0.0,0.0,0.0,0.0,5442.05,340.0,0.0,1,0,0.0,1,1.0 -3018,4611,2380.190709147076,87.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13250.0,0.0,0.0,12831.6,0.0,0.0,1,0,0.0,1,0.0 -3019,4612,3259.741714307072,60.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38010.0,170.0,0.0,37500.2,0.0,0.0,1,8,7.0,3,0.0 -3020,4613,2327.5792031100177,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24450.0,0.0,0.0,23405.1,0.0,0.0,1,6,4.0,3,0.0 -3021,4617,5781.014743992788,45.0,111,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28064.2,0.0,23310.0,1,10,8.0,4,1.0 -3022,4618,1187.121708773364,47.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51151.5,0.0,50930.0,1,7,5.0,4,2.0 -3023,4620,3504.414179566855,24.0,112,2160.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37443.65,0.0,33160.0,3,9,0.0,3,2.0 -3024,4624,2699.6166571026497,33.0,112,0.0,21,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,49168.6,0.0,15760.0,5,7,0.0,4,2.0 -3025,4625,1859.6600540238658,39.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52080.0,0.0,17820.0,2,8,0.0,4,2.0 -3026,4626,3874.148007645378,61.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,20980.0,0.0,0.0,19530.55,0.0,0.0,3,10,8.0,1,1.0 -3027,4627,4287.392557858909,33.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47345.95,0.0,51170.0,5,10,8.0,3,2.0 -3028,4628,2012.975527152604,76.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12510.0,0.0,0.0,11901.5,0.0,0.0,1,7,6.0,1,0.0 -3029,4629,2920.4896779563874,73.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3050.0,0.0,0.0,10631.05,0.0,0.0,1,9,7.0,1,0.0 -3030,4630,3491.1146371185514,48.0,111,10360.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29448.15,0.0,20690.0,3,9,7.0,3,2.0 -3031,4631,1347.5125847832237,50.0,112,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,510.0,0.0,47192.55,0.0,48740.0,1,9,0.0,4,2.0 -3032,4632,3194.816834478817,29.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21267.75,0.0,16600.0,3,10,8.0,3,2.0 -3033,4633,2803.3013478700104,68.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8910.0,0.0,0.0,8240.5,0.0,0.0,1,0,0.0,1,0.0 -3034,4635,1299.9081312830924,55.0,111,0.0,78,3,2.0,4.0,2.5,0.0,0.0,0.0,26280.0,0.0,0.0,59181.95,0.0,36350.0,3,10,8.0,4,3.0 -3035,4637,3054.055364552494,55.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45406.1,0.0,49120.0,1,7,1.0,3,2.0 -3036,4638,1877.047050320031,41.0,400,0.0,68,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,21.0,0.0,29983.6,0.0,29600.0,2,0,0.0,4,2.0 -3037,4640,2684.1801977864347,42.0,111,0.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,19092.4,100.0,8850.0,3,7,6.0,2,1.0 -3038,4641,1231.521458089639,47.0,111,0.0,63,3,3.0,7.0,3.8,0.0,0.0,0.0,0.0,0.0,0.0,36373.35,0.0,24590.0,3,8,6.0,5,3.0 -3039,4642,1916.1840237909444,54.0,300,3800.0,77,0.0,0.0,1.0,1.0,2840.0,0.0,0.0,0.0,0.0,0.0,8868.05,0.0,2360.0,1,0,0.0,1,0.0 -3040,4643,3082.062259582746,34.0,400,0.0,23,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,416.0,0.0,118279.4,0.0,114800.0,2,0,0.0,4,2.0 -3041,4644,3627.308733416098,28.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,78.0,0.0,21455.8,0.0,22820.0,1,8,7.0,1,1.0 -3042,4645,2203.2737458442475,37.0,111,8670.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43585.75,0.0,28710.0,3,8,6.0,4,2.0 -3043,4646,1191.850516162257,43.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,103859.05,0.0,114110.0,3,8,7.0,4,2.0 -3044,4647,1898.3236530621461,58.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28010.0,1072.0,0.0,80500.95,0.0,59740.0,1,10,8.0,3,1.0 -3045,4648,3011.796881570089,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16850.0,483.0,0.0,24981.95,0.0,0.0,1,8,7.0,1,0.0 -3046,4649,1744.236178326937,25.0,120,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42689.0,0.0,43630.0,3,0,0.0,3,2.0 -3047,4650,1824.497925792422,37.0,111,12210.0,62,2.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,20118.4,0.0,0.0,3,8,6.0,4,2.0 -3048,4651,1323.5728829261766,42.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,6.0,0.0,38592.7,0.0,39900.0,2,8,2.0,4,2.0 -3049,4653,2683.3963653618134,52.0,111,2840.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,169452.9,0.0,205880.0,1,10,8.0,3,1.0 -3050,4656,2441.4706289515093,42.0,111,0.0,54,1.0,1.0,4.0,2.5,0.0,0.0,0.0,2080.0,0.0,0.0,22067.0,0.0,16490.0,3,9,7.0,2,1.0 -3051,4658,6324.187810751974,85.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20850.0,0.0,0.0,20988.0,0.0,0.0,5,7,5.0,3,0.0 -3052,4660,4222.577813607703,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2625.0,0.0,0.0,3,9,7.0,1,0.0 -3053,4661,2619.910130398565,87.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22320.0,0.0,0.0,23006.25,0.0,0.0,3,6,5.0,1,0.0 -3054,4663,1739.8945330940273,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61710.0,16.0,0.0,54747.25,0.0,0.0,2,8,7.0,3,0.0 -3055,4664,3090.7401110624796,63.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31800.0,304.0,0.0,55623.7,0.0,19620.0,1,10,8.0,3,1.0 -3056,4665,1654.3947599841945,76.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27690.0,0.0,0.0,26921.65,0.0,0.0,1,0,0.0,3,0.0 -3057,4666,3517.620430817882,54.0,111,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47516.65,0.0,50590.0,3,10,8.0,4,2.0 -3058,4667,2878.898608922947,84.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8300.0,0.0,0.0,8152.0,0.0,0.0,1,6,0.0,1,0.0 -3059,4668,3765.157171638508,34.0,221,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,9.0,0.0,39285.1,0.0,31750.0,3,1,1.0,4,1.0 -3060,4669,2171.6285653720133,75.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,100.0,8700.0,0.0,0.0,8450.3,0.0,0.0,1,4,0.0,1,0.0 -3061,4671,1871.0387064407964,49.0,111,0.0,35,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,447.0,0.0,220598.55,0.0,266780.0,2,10,8.0,4,2.0 -3062,4672,1274.169325868489,47.0,112,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41924.0,0.0,40960.0,1,7,1.0,4,2.0 -3063,4674,2420.385401873021,59.0,120,4030.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,18.0,0.0,65062.85,0.0,61560.0,1,0,0.0,3,2.0 -3064,4680,2360.761010186939,56.0,400,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40246.15,0.0,0.0,1,0,0.0,2,1.0 -3065,4681,2886.426612562924,59.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21740.0,0.0,0.0,24728.0,0.0,0.0,1,9,7.0,1,0.0 -3066,4682,3610.3819554152587,42.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23693.0,0.0,24250.0,3,10,8.0,1,1.0 -3067,4683,2601.854141405294,52.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,3600.0,0.0,0.0,21923.45,0.0,19900.0,3,6,4.0,3,2.0 -3068,4684,2246.4047715604215,50.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10470.0,0.0,0.0,22437.5,0.0,12030.0,3,6,4.0,3,1.0 -3069,4685,2696.482701098353,63.0,111,11990.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,6240.0,0.0,0.0,19046.0,0.0,0.0,3,7,5.0,4,0.0 -3070,4686,2278.1217143069466,35.0,300,4030.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31615.6,0.0,27560.0,3,0,0.0,3,2.0 -3071,4687,2756.694681792894,59.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33780.0,0.0,0.0,33418.25,0.0,0.0,1,0,0.0,3,0.0 -3072,4689,3077.499676859521,77.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13350.0,0.0,0.0,11740.3,0.0,0.0,1,8,6.0,1,0.0 -3073,4691,2585.1315511459566,34.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38314.45,0.0,23860.0,2,4,0.0,4,2.0 -3074,4692,2207.386939357818,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30090.0,2635.0,0.0,35129.25,0.0,0.0,1,7,4.0,3,0.0 -3075,4693,1413.881700654653,76.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18270.0,0.0,0.0,21546.0,0.0,0.0,5,0,0.0,3,0.0 -3076,4694,2799.0885233250997,58.0,111,0.0,42,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,21081.0,0.0,21390.0,3,10,8.0,4,1.0 -3077,4697,3490.8329563127677,35.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33157.35,0.0,16500.0,3,10,3.0,1,1.0 -3078,4698,2496.948125552951,68.0,111,0.0,78,0.0,0.0,4.0,2.5,0.0,0.0,2950.0,10120.0,0.0,0.0,20306.0,0.0,0.0,3,9,7.0,4,0.0 -3079,4701,4456.621498796793,58.0,112,0.0,78,0.0,0.0,2.0,1.5,8750.0,0.0,0.0,12650.0,0.0,0.0,20662.85,0.0,0.0,1,5,0.0,3,0.0 -3080,4702,1988.3149719034627,48.0,212,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45240.35,0.0,39740.0,1,3,0.0,3,2.0 -3081,4703,4944.354263467905,42.0,221,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27670.0,0.0,28720.0,2,1,1.0,1,1.0 -3082,4704,972.2298651840025,50.0,111,0.0,34,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,66671.1,0.0,67670.0,2,7,6.0,4,2.0 -3083,4705,2785.5691899569642,37.0,111,7590.0,52,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32448.1,0.0,14540.0,3,4,4.0,4,2.0 -3084,4706,1466.4027433064996,56.0,112,0.0,43,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,114088.2,0.0,85640.0,2,10,0.0,4,4.0 -3085,4707,1867.3170610096981,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59540.0,0.0,0.0,63986.25,0.0,0.0,1,9,0.0,3,0.0 -3086,4709,1471.9919148784734,37.0,112,0.0,65,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,44230.0,0.0,36560.0,2,6,0.0,4,2.0 -3087,4710,3772.0027633888158,22.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11675.0,0.0,0.0,5,9,7.0,5,0.0 -3088,4715,1275.8069616416462,54.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24126.5,0.0,24840.0,2,6,0.0,3,2.0 -3089,4717,1535.5852745577029,75.0,111,0.0,86,1.0,0.0,2.0,1.5,0.0,0.0,0.0,28220.0,0.0,0.0,25879.95,0.0,0.0,2,9,7.0,3,1.0 -3090,4718,2578.3166842978285,53.0,111,5180.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,204.0,0.0,32424.1,0.0,29930.0,2,8,7.0,3,1.0 -3091,4719,2346.1075914487087,54.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16140.0,0.0,0.0,15882.4,0.0,30.0,1,6,0.0,1,0.0 -3092,4721,2912.6578862263577,63.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23350.0,0.0,0.0,36404.7,0.0,14930.0,1,9,0.0,3,1.0 -3093,4722,2998.101761684156,37.0,120,200.0,21,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,34345.25,0.0,3460.0,2,0,0.0,4,2.0 -3094,4723,1398.5296646844624,56.0,300,0.0,65,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,1208.0,0.0,32526.95,0.0,32510.0,1,0,0.0,4,3.0 -3095,4724,2481.1002995787276,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24960.0,0.0,0.0,25636.4,0.0,0.0,1,9,7.0,3,0.0 -3096,4725,3377.6521768642556,85.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21620.0,0.0,0.0,21032.85,0.0,0.0,1,10,3.0,1,0.0 -3097,4728,2743.002749416289,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57190.0,0.0,0.0,51041.95,0.0,0.0,1,8,7.0,3,0.0 -3098,4729,3306.952939192853,40.0,112,0.0,56,2.0,1.0,6.0,2.9,0.0,3180.0,0.0,0.0,0.0,0.0,30401.55,2690.0,10650.0,3,9,3.0,4,2.0 -3099,4731,1835.1816059838993,62.0,112,6820.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15000.0,0.0,0.0,25922.4,0.0,6090.0,1,6,0.0,3,1.0 -3100,4733,2006.6857158858343,40.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63833.15,0.0,67560.0,2,9,1.0,4,2.0 -3101,4734,2915.8211624133482,39.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26558.95,0.0,28820.0,1,8,6.0,1,1.0 -3102,4735,3575.8391823552984,33.0,111,3770.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11600.0,0.0,7830.0,3,10,8.0,3,1.0 -3103,4737,3118.313832379583,58.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18180.15,0.0,14660.0,1,9,2.0,1,1.0 -3104,4739,3189.962012829327,32.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16728.15,0.0,17960.0,3,10,8.0,1,1.0 -3105,4740,1824.9988965082327,45.0,111,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,78776.4,0.0,29030.0,2,8,6.0,4,2.0 -3106,4741,2524.244688150115,33.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44983.2,0.0,45020.0,1,9,7.0,4,2.0 -3107,4745,1437.4509156017589,62.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9940.0,0.0,0.0,14535.75,0.0,0.0,3,6,4.0,1,0.0 -3108,4747,2893.2577596765627,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49020.0,0.0,0.0,47438.8,0.0,0.0,1,10,8.0,3,0.0 -3109,4748,2092.6323902771587,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16450.0,0.0,0.0,15855.95,0.0,0.0,1,6,4.0,3,0.0 -3110,4751,1467.2241667764622,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25040.0,17.0,0.0,23278.55,0.0,0.0,1,9,7.0,3,0.0 -3111,4752,1114.258601992844,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19280.0,0.0,0.0,11933.15,0.0,0.0,3,6,4.0,1,0.0 -3112,4754,2743.0836299728307,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13380.0,0.0,0.0,13798.0,0.0,0.0,1,9,7.0,1,0.0 -3113,4755,3333.361702574082,56.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,293.0,0.0,54084.6,0.0,54550.0,1,9,7.0,3,2.0 -3114,4756,2723.5650515348852,31.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,408.0,67155.0,89170.3,0.0,13780.0,2,10,8.0,4,2.0 -3115,4758,2576.897287840436,55.0,400,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45756.75,0.0,48910.0,1,0,0.0,3,2.0 -3116,4759,3202.710205361515,46.0,120,4330.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17335.1,0.0,13160.0,3,0,0.0,1,1.0 -3117,4760,2794.845864368454,51.0,111,0.0,52,1.0,1.0,1.0,1.0,1350.0,0.0,0.0,5680.0,0.0,0.0,17087.0,0.0,8230.0,3,10,8.0,1,1.0 -3118,4763,3132.111395614296,60.0,111,33980.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34224.5,0.0,0.0,3,10,8.0,1,0.0 -3119,4764,2876.9012474240453,29.0,111,0.0,45,1.0,0.0,2.0,1.3,0.0,5160.0,0.0,0.0,0.0,0.0,12696.0,0.0,0.0,3,7,6.0,2,1.0 -3120,4765,2011.3959140369582,33.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46952.8,0.0,42760.0,2,9,7.0,4,2.0 -3121,4766,3655.615516407075,51.0,120,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,175.0,0.0,55817.7,0.0,56670.0,2,0,2.0,4,2.0 -3122,4767,1105.380532502741,44.0,112,0.0,54,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,52371.15,0.0,31930.0,1,9,0.0,4,2.0 -3123,4770,1152.0700376783757,49.0,111,0.0,52,3,2.0,4.0,2.3,0.0,0.0,0.0,2530.0,6.0,0.0,40172.35,0.0,40210.0,1,8,7.0,5,3.0 -3124,4771,1914.3232699021999,84.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,2750.0,13600.0,0.0,0.0,16407.05,0.0,0.0,1,0,0.0,5,0.0 -3125,4772,2352.9316340407895,44.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19992.0,0.0,21360.0,1,10,8.0,1,1.0 -3126,4773,2667.4810693045765,45.0,112,0.0,21,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,112287.15,0.0,47480.0,2,7,0.0,4,3.0 -3127,4776,3028.1778884690257,34.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27753.95,0.0,30340.0,3,10,8.0,1,1.0 -3128,4777,2292.3530515096445,33.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37838.55,0.0,39530.0,3,7,6.0,3,2.0 -3129,4778,1702.958945280878,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31070.0,0.0,0.0,31657.55,0.0,0.0,1,8,6.0,3,0.0 -3130,4779,2176.259383876269,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46900.0,0.0,0.0,44670.05,0.0,0.0,1,9,3.0,3,0.0 -3131,4780,2890.167609745507,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27730.0,193.0,0.0,26521.45,0.0,0.0,1,9,7.0,1,0.0 -3132,4781,1009.1094242842497,56.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19888.5,0.0,20760.0,3,5,4.0,1,1.0 -3133,4783,2295.9804676395174,41.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31468.2,0.0,32920.0,1,8,6.0,3,2.0 -3134,4785,1158.1165157193082,61.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24640.0,0.0,0.0,22482.4,0.0,0.0,1,7,6.0,3,0.0 -3135,4787,1521.3516986866514,54.0,120,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59468.6,0.0,69580.0,2,0,0.0,3,2.0 -3136,4788,5031.125389909698,37.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,7970.0,0.0,0.0,31928.35,0.0,22360.0,1,10,8.0,5,1.0 -3137,4789,2721.6427851623034,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29740.0,0.0,0.0,27647.75,0.0,0.0,1,10,8.0,3,0.0 -3138,4790,1982.700107853815,84.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28090.0,0.0,0.0,53398.65,0.0,28360.0,1,7,6.0,2,1.0 -3139,4791,881.1455859769467,51.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35187.3,0.0,37290.0,1,6,4.0,3,2.0 -3140,4792,3244.4226856738983,30.0,400,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15354.0,0.0,15340.0,3,0,0.0,3,1.0 -3141,4794,3000.4886279088864,39.0,112,0.0,62,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,35685.8,0.0,27500.0,2,9,2.0,4,3.0 -3142,4795,3266.269695794575,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17390.0,0.0,0.0,17577.85,0.0,0.0,1,10,8.0,1,0.0 -3143,4796,1439.4932042239345,59.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,69945.5,0.0,69800.0,2,6,4.0,4,2.0 -3144,4797,1595.4521776053637,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24500.0,0.0,0.0,23274.7,0.0,0.0,1,10,4.0,3,0.0 -3145,4798,3253.3249322951838,46.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,40.0,0.0,37025.0,0.0,39500.0,3,10,8.0,1,1.0 -3146,4799,3162.5567671914737,38.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46989.0,0.0,50860.0,2,9,7.0,4,2.0 -3147,4800,4664.808928418548,58.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,17.0,0.0,53561.05,0.0,55570.0,1,10,8.0,3,2.0 -3148,4804,4167.24158841499,35.0,111,0.0,35,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2360.0,0.0,2360.0,3,10,8.0,1,1.0 -3149,4805,2125.5810360420173,71.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23720.0,0.0,0.0,23488.95,0.0,0.0,3,9,2.0,3,0.0 -3150,4806,4741.154219003966,53.0,300,5310.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,79.0,0.0,16570.05,0.0,11230.0,1,0,1.0,3,2.0 -3151,4808,1261.5078466719565,23.0,111,0.0,54,3,1.0,5.0,3.0,8750.0,0.0,0.0,840.0,0.0,0.0,67126.75,0.0,59270.0,2,10,8.0,2,3.0 -3152,4810,3808.4485770599313,66.0,112,950.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17230.0,0.0,0.0,33606.3,0.0,15440.0,2,7,0.0,4,1.0 -3153,4811,3982.696811253094,83.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23270.0,0.0,0.0,22124.15,0.0,0.0,3,9,7.0,1,0.0 -3154,4812,2764.466932271491,75.0,222,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16520.0,0.0,0.0,16400.1,0.0,0.0,1,1,0.0,1,0.0 -3155,4814,1731.6354893512435,56.0,111,0.0,46,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,52956.7,0.0,53190.0,1,8,7.0,4,3.0 -3156,4816,4981.612287063355,49.0,111,11070.0,85,1.0,0.0,4.0,2.5,8380.0,11140.0,0.0,0.0,0.0,0.0,36280.0,0.0,0.0,3,6,5.0,2,1.0 -3157,4819,1959.0749319351198,56.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,147.0,0.0,93924.35,0.0,108260.0,1,10,8.0,3,2.0 -3158,4821,1491.566309727816,48.0,300,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46914.75,0.0,49530.0,2,0,0.0,4,3.0 -3159,4822,974.452295171644,53.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43075.45,0.0,42330.0,3,6,4.0,4,2.0 -3160,4824,3700.610779310005,36.0,120,13710.0,35,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31448.0,0.0,7300.0,2,0,2.0,4,2.0 -3161,4826,2773.4254725793235,46.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,33586.75,0.0,36790.0,3,10,8.0,1,1.0 -3162,4827,2117.2142571686736,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25190.0,35.0,0.0,24439.1,0.0,0.0,1,8,6.0,3,0.0 -3163,4829,1884.8266949228935,51.0,111,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45706.25,0.0,47770.0,1,10,8.0,2,2.0 -3164,4831,4526.604026583658,43.0,120,10160.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,77.0,0.0,67330.3,0.0,30480.0,2,0,0.0,4,2.0 -3165,4833,4929.209597894885,53.0,221,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16542.8,0.0,18690.0,1,1,3.0,1,1.0 -3166,4835,4478.1295247712105,41.0,111,0.0,63,1.0,0.0,4.0,2.3,0.0,8120.0,0.0,0.0,0.0,0.0,9940.0,0.0,0.0,5,10,8.0,4,1.0 -3167,4836,2921.314735284585,78.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8710.0,0.0,0.0,10630.0,0.0,0.0,3,0,0.0,1,0.0 -3168,4837,1452.8634136893006,57.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54844.7,0.0,59890.0,1,8,0.0,3,2.0 -3169,4840,2630.0690928421636,51.0,111,0.0,68,1.0,1.0,1.0,1.0,3790.0,0.0,0.0,6480.0,6.0,0.0,19716.0,0.0,8270.0,3,8,6.0,1,1.0 -3170,4841,1290.1749576644438,57.0,111,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,0.0,32190.0,0.0,0.0,31409.35,0.0,0.0,1,4,4.0,4,0.0 -3171,4842,1930.3039366887265,36.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24447.55,0.0,25270.0,3,7,0.0,1,1.0 -3172,4843,5029.729825819811,74.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11940.0,0.0,0.0,11650.5,0.0,0.0,1,9,3.0,1,0.0 -3173,4845,2088.351689695859,61.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23030.0,13.0,0.0,71454.5,0.0,52290.0,1,10,8.0,3,1.0 -3174,4846,2453.5588513000425,36.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,4800.0,0.0,0.0,0.0,0.0,35174.1,730.0,28410.0,3,9,7.0,4,2.0 -3175,4847,2086.695834819429,41.0,111,0.0,47,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33344.1,0.0,23990.0,2,8,6.0,2,1.0 -3176,4848,2562.7248769280104,36.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30342.9,0.0,33850.0,1,10,8.0,1,1.0 -3177,4851,3638.903803890331,82.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11770.0,0.0,0.0,13443.45,0.0,0.0,1,8,0.0,1,0.0 -3178,4852,3463.4550012899685,90.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12900.0,18.0,0.0,12987.3,0.0,0.0,3,10,3.0,1,0.0 -3179,4853,1305.773932335405,41.0,112,0.0,34,1.0,1.0,4.0,2.1,0.0,0.0,0.0,27420.0,0.0,0.0,56730.1,0.0,30810.0,1,8,0.0,4,1.0 -3180,4854,3197.286834285184,63.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21560.0,0.0,0.0,20908.65,0.0,0.0,3,6,4.0,3,0.0 -3181,4856,2351.3712143055263,53.0,300,0.0,23,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25946.3,0.0,25410.0,3,0,0.0,2,1.0 -3182,4857,1435.4466118100079,54.0,120,18270.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21595.9,0.0,0.0,1,0,0.0,1,0.0 -3183,4858,5409.437866383096,83.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16810.0,0.0,0.0,16491.8,0.0,0.0,1,0,2.0,1,0.0 -3184,4859,1537.8492354067512,68.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14020.0,0.0,0.0,18206.75,0.0,0.0,1,0,0.0,1,0.0 -3185,4861,2034.601866561783,60.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,88766.4,0.0,86250.0,2,10,8.0,3,2.0 -3186,4862,2316.863431902296,54.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11620.0,0.0,0.0,11551.7,0.0,0.0,3,1,2.0,1,0.0 -3187,4864,1011.0967946151283,51.0,111,2710.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37178.7,0.0,36720.0,2,6,4.0,4,2.0 -3188,4868,4588.037557535398,31.0,221,2990.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37085.4,0.0,29100.0,3,1,1.0,4,2.0 -3189,4869,2626.2834332619027,44.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19591.15,0.0,21040.0,3,10,8.0,1,1.0 -3190,4870,2032.3402697753552,68.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38580.0,0.0,0.0,45388.4,0.0,0.0,1,0,0.0,5,0.0 -3191,4871,1912.903833085803,47.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55307.45,0.0,50460.0,1,8,0.0,4,2.0 -3192,4872,3870.1383915434494,64.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,87845.75,0.0,87300.0,1,9,7.0,3,2.0 -3193,4874,2502.9981980778207,24.0,300,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,9.0,0.0,32910.55,0.0,33790.0,3,0,0.0,3,2.0 -3194,4876,1906.7892052988143,73.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,32070.0,0.0,0.0,47567.85,0.0,17530.0,1,7,5.0,4,1.0 -3195,4879,3115.7169118049587,28.0,112,1060.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45874.55,0.0,47140.0,1,7,0.0,4,3.0 -3196,4880,3210.236667188167,50.0,111,0.0,52,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53365.2,0.0,56410.0,2,9,7.0,4,3.0 -3197,4881,3169.9549150425787,55.0,111,0.0,55,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,68517.6,0.0,74900.0,1,9,7.0,4,3.0 -3198,4882,1448.447629639105,35.0,111,0.0,47,1.0,1.0,5.0,2.4,10010.0,0.0,0.0,0.0,0.0,0.0,41686.0,0.0,23460.0,3,8,7.0,4,1.0 -3199,4883,3615.6987879744297,48.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,40133.65,0.0,48140.0,1,10,8.0,1,1.0 -3200,4885,2941.9614168079097,29.0,111,6490.0,47,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31268.05,0.0,22720.0,3,8,7.0,4,2.0 -3201,4886,2312.8670729772243,86.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16430.0,0.0,0.0,17715.65,0.0,0.0,1,8,2.0,1,0.0 -3202,4887,2388.131612781008,33.0,111,1360.0,67,2.0,3.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,16254.65,0.0,7540.0,3,9,7.0,4,2.0 -3203,4889,2928.0352832536673,28.0,111,5840.0,85,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,12370.0,0.0,1810.0,3,8,6.0,4,1.0 -3204,4890,1742.6103554719896,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38940.0,2.0,0.0,37164.15,0.0,0.0,1,10,8.0,3,0.0 -3205,4891,2742.3704636235,26.0,111,5600.0,69,3,1.0,3.0,2.0,0.0,2110.0,0.0,1080.0,0.0,0.0,24003.45,1480.0,9710.0,3,6,4.0,2,3.0 -3206,4894,4667.3230560421725,80.0,111,0.0,78,0.0,1.0,1.0,1.0,0.0,0.0,0.0,15320.0,0.0,0.0,15068.45,0.0,0.0,3,7,5.0,1,0.0 -3207,4895,2541.623721624699,59.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23280.0,0.0,0.0,21882.85,0.0,0.0,3,8,7.0,1,0.0 -3208,4900,1186.9486459200377,75.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,1100.0,12990.0,0.0,0.0,16479.1,0.0,0.0,1,0,0.0,3,0.0 -3209,4901,2379.3406826181126,75.0,112,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,861.0,0.0,26633.2,0.0,0.0,1,10,0.0,1,1.0 -3210,4903,4865.2140176554,58.0,112,0.0,78,0.0,0.0,4.0,2.5,3690.0,0.0,0.0,4280.0,0.0,0.0,9438.0,0.0,1540.0,1,9,2.0,4,0.0 -3211,4904,2451.2851102784957,27.0,111,8680.0,47,1.0,0.0,3.0,1.8,0.0,20.0,0.0,0.0,0.0,0.0,18043.65,230.0,3490.0,3,9,7.0,4,1.0 -3212,4906,1021.2065309950115,52.0,111,0.0,37,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,17.0,0.0,98271.85,0.0,58210.0,1,8,7.0,4,2.0 -3213,4908,2166.557589282052,33.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29357.15,0.0,19810.0,3,9,0.0,4,2.0 -3214,4910,971.4648090485094,56.0,111,0.0,46,2.0,2.0,3.0,2.0,8750.0,0.0,0.0,0.0,0.0,0.0,55602.85,0.0,37710.0,1,7,5.0,4,2.0 -3215,4911,1795.5829386670202,57.0,211,0.0,67,2.0,1.0,3.0,2.0,0.0,2780.0,0.0,0.0,0.0,0.0,19967.25,1320.0,11410.0,3,4,3.0,4,2.0 -3216,4912,2351.1128126693698,65.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,1140.0,7160.0,0.0,0.0,15454.9,0.0,0.0,3,7,6.0,1,0.0 -3217,4913,2303.8315940631032,54.0,111,0.0,75,0.0,0.0,1.0,1.0,1070.0,0.0,0.0,4470.0,0.0,0.0,47693.5,0.0,0.0,2,9,7.0,1,0.0 -3218,4914,4124.296368495131,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3277.0,0.0,600.0,3,9,7.0,1,0.0 -3219,4916,1299.0751535216193,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26530.0,0.0,0.0,25416.55,0.0,0.0,2,8,7.0,3,0.0 -3220,4917,1645.3397936104955,61.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,111071.7,0.0,0.0,1,8,7.0,3,1.0 -3221,4918,1411.1930414168241,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32590.0,0.0,0.0,30079.9,0.0,0.0,1,7,6.0,3,0.0 -3222,4919,3648.747985974601,62.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20760.0,0.0,0.0,21067.6,0.0,0.0,3,9,7.0,3,0.0 -3223,4920,2074.8350637987323,60.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8420.0,0.0,0.0,35665.15,0.0,30380.0,1,8,7.0,3,1.0 -3224,4926,1463.7266363337733,56.0,111,9280.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46550.2,0.0,38980.0,1,9,7.0,4,2.0 -3225,4928,3455.1795626710086,32.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21268.15,0.0,22880.0,3,10,8.0,1,1.0 -3226,4931,1818.7206644908053,73.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26640.0,0.0,0.0,25474.9,0.0,0.0,1,6,0.0,3,0.0 -3227,4932,2640.2406417251855,44.0,111,0.0,23,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,84937.4,0.0,91100.0,1,9,7.0,4,2.0 -3228,4933,1367.847652970145,58.0,400,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17120.0,0.0,0.0,36141.25,0.0,20320.0,2,0,0.0,4,1.0 -3229,4935,2356.56518590195,73.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22720.0,0.0,0.0,20374.45,0.0,0.0,1,10,8.0,1,0.0 -3230,4936,1537.5229849597251,65.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16290.0,0.0,0.0,15308.0,0.0,0.0,1,1,2.0,1,0.0 -3231,4937,2270.797507177357,31.0,120,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,73706.15,0.0,66610.0,3,0,0.0,4,2.0 -3232,4938,4509.086749271661,38.0,111,0.0,31,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,18.0,0.0,266392.75,0.0,0.0,1,10,8.0,1,1.0 -3233,4939,3295.848110984183,49.0,221,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,22.0,0.0,21598.1,0.0,20580.0,3,1,1.0,2,2.0 -3234,4940,2906.662777790361,61.0,112,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,10110.0,0.0,0.0,12198.0,0.0,0.0,3,10,5.0,2,1.0 -3235,4941,2287.6247022161006,34.0,111,3680.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,21434.85,0.0,11320.0,3,8,7.0,2,1.0 -3236,4942,2901.46146251471,40.0,221,0.0,42,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25205.75,0.0,22960.0,3,1,2.0,2,1.0 -3237,4943,3303.600889185902,53.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16200.0,0.0,0.0,40987.7,0.0,25850.0,1,9,7.0,3,1.0 -3238,4944,3107.801206366935,22.0,111,6240.0,43,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22558.0,0.0,16390.0,3,4,4.0,3,2.0 -3239,4947,1487.578216107706,58.0,300,0.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,2790.0,0.0,0.0,25843.2,0.0,23510.0,2,0,0.0,4,2.0 -3240,4949,3881.6373399175786,39.0,120,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17709.25,0.0,18180.0,3,0,2.0,1,1.0 -3241,4952,2075.688647018541,38.0,300,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45315.75,0.0,45200.0,2,0,0.0,4,2.0 -3242,4953,2887.576786065867,55.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19715.65,0.0,22460.0,5,10,8.0,1,1.0 -3243,4954,2622.865013431942,58.0,222,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9980.0,0.0,0.0,9861.05,0.0,0.0,2,1,0.0,1,0.0 -3244,4955,2629.140639456055,43.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64056.45,0.0,74990.0,2,10,4.0,4,2.0 -3245,4956,3012.2284326563686,40.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20988.7,0.0,22400.0,3,8,7.0,1,1.0 -3246,4959,1421.2864955360067,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46950.0,0.0,0.0,43531.8,0.0,0.0,2,7,5.0,3,0.0 -3247,4961,2065.2891024910095,62.0,111,29140.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19470.0,0.0,0.0,54587.75,0.0,13060.0,1,8,6.0,3,0.0 -3248,4962,1892.229291832186,41.0,300,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,25407.6,0.0,14560.0,1,0,0.0,4,1.0 -3249,4963,1226.6819803280603,40.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37450.6,0.0,35420.0,2,8,6.0,4,2.0 -3250,4964,5415.824423539264,29.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25493.2,0.0,25640.0,3,6,5.0,3,2.0 -3251,4965,2354.838636404741,48.0,300,1960.0,21,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,153.0,0.0,32591.55,0.0,27790.0,1,0,0.0,4,2.0 -3252,4966,1036.9645769473527,46.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,77.0,0.0,40891.15,0.0,43170.0,2,8,6.0,4,2.0 -3253,4970,4705.558953418589,38.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45004.7,0.0,38700.0,2,8,0.0,4,2.0 -3254,4971,3142.494321951664,47.0,111,1740.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39995.5,0.0,36820.0,3,6,5.0,4,2.0 -3255,4972,1059.7609263266313,46.0,112,0.0,43,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,22.0,0.0,60155.75,0.0,20120.0,1,7,2.0,4,2.0 -3256,4974,1792.6859741658368,53.0,111,1450.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,13120.0,0.0,0.0,59803.5,0.0,47390.0,2,10,8.0,4,4.0 -3257,4975,1905.6720003278967,43.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,11430.0,0.0,0.0,42301.9,0.0,30780.0,2,4,0.0,4,2.0 -3258,4977,1324.2563990294275,55.0,112,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,90010.4,0.0,102250.0,1,10,0.0,4,1.0 -3259,4980,2722.395168002723,45.0,221,0.0,85,0.0,0.0,3.0,1.6,0.0,3100.0,0.0,0.0,0.0,0.0,13811.75,0.0,0.0,3,1,2.0,2,0.0 -3260,4981,3379.6400911008423,56.0,111,750.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6932.55,0.0,6940.0,1,10,8.0,1,1.0 -3261,4982,1286.876018920878,52.0,120,0.0,56,3,3.0,7.0,3.8,0.0,0.0,0.0,0.0,0.0,0.0,25914.05,0.0,25780.0,1,0,0.0,5,4.0 -3262,4984,3686.832218697939,60.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10410.0,0.0,0.0,15690.0,0.0,5800.0,1,9,7.0,3,0.0 -3263,4986,2235.845760717807,46.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,63.0,0.0,38298.35,0.0,39600.0,3,9,7.0,3,2.0 -3264,4987,1555.9172303784899,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27210.0,0.0,0.0,25907.9,0.0,0.0,1,9,7.0,3,0.0 -3265,4988,3115.3853128602,43.0,111,0.0,48,3,3.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,66314.35,0.0,60500.0,2,9,7.0,4,3.0 -3266,4989,2260.8303775594404,47.0,400,0.0,55,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,42236.75,0.0,40850.0,1,0,0.0,4,2.0 -3267,4990,3369.1562863360164,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9601.0,0.0,0.0,3,9,7.0,1,0.0 -3268,4991,1853.5234192039047,70.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19380.0,0.0,0.0,18950.45,0.0,0.0,1,0,0.0,3,0.0 -3269,4992,2258.9855121941805,48.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,51141.15,0.0,54510.0,2,8,7.0,4,2.0 -3270,4994,1970.837811920574,30.0,111,0.0,56,1.0,0.0,2.0,1.3,8750.0,0.0,0.0,0.0,0.0,0.0,14110.0,0.0,0.0,3,5,4.0,2,1.0 -3271,4996,1910.0940322249828,75.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17350.0,0.0,0.0,17472.1,0.0,0.0,1,3,4.0,3,0.0 -3272,4997,1670.0572883139594,39.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66871.55,0.0,70770.0,2,9,7.0,4,2.0 -3273,4998,1901.04955626224,69.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26200.0,0.0,0.0,24844.1,0.0,0.0,1,1,3.0,1,0.0 -3274,5000,2588.5857632056495,45.0,112,0.0,62,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,7355.0,0.0,4410.0,3,8,0.0,2,1.0 -3275,5003,1436.3075015873226,53.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52629.8,0.0,56050.0,1,6,4.0,4,2.0 -3276,5004,1589.7331417689707,40.0,111,0.0,48,2.0,2.0,4.0,2.5,8750.0,0.0,0.0,0.0,0.0,0.0,38623.1,0.0,28670.0,2,8,7.0,5,2.0 -3277,5005,2895.5495561689445,38.0,112,4790.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39244.1,0.0,30080.0,1,9,0.0,4,2.0 -3278,5006,3068.789439965866,20.0,111,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,10233.15,0.0,6790.0,3,9,7.0,4,1.0 -3279,5007,3831.1092493092815,56.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,4944.4,0.0,0.0,1,9,7.0,1,0.0 -3280,5008,3132.985005111355,35.0,111,5330.0,22,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32372.9,0.0,10820.0,3,9,7.0,4,1.0 -3281,5011,2978.317106653921,29.0,300,4800.0,62,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,25071.0,0.0,12080.0,2,0,0.0,4,1.0 -3282,5012,2939.8831861601793,49.0,111,13580.0,45,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,66560.55,0.0,45730.0,2,4,4.0,4,2.0 -3283,5013,1834.3415200918728,61.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,9750.0,0.0,0.0,1749037.05,0.0,8320.0,1,3,4.0,3,0.0 -3284,5014,4255.414071411042,28.0,111,2730.0,63,1.0,0.0,3.0,1.8,0.0,240.0,0.0,0.0,0.0,0.0,17837.45,1690.0,7850.0,3,8,6.0,4,1.0 -3285,5015,1745.1685521632987,36.0,112,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,19.0,0.0,34038.65,0.0,28840.0,1,8,1.0,4,2.0 -3286,5016,2560.4775632274122,47.0,120,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18921.3,0.0,18570.0,2,0,0.0,4,2.0 -3287,5017,1104.0700253326231,66.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32450.0,0.0,0.0,31201.25,0.0,0.0,3,0,0.0,3,0.0 -3288,5018,3271.457432239834,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,7470.0,2280.0,0.0,0.0,12900.0,0.0,0.0,3,9,7.0,1,0.0 -3289,5020,1821.033973760161,62.0,112,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,15160.0,0.0,0.0,27868.45,0.0,14290.0,1,8,0.0,3,1.0 -3290,5021,3052.8070066766213,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8620.0,0.0,0.0,18474.0,0.0,0.0,3,9,7.0,1,0.0 -3291,5022,2933.8583341586914,78.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18410.0,0.0,0.0,18076.55,0.0,0.0,1,2,3.0,1,0.0 -3292,5023,2656.2444271417558,56.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,193.0,0.0,57417.75,0.0,64830.0,3,10,8.0,1,1.0 -3293,5024,4435.862623742495,79.0,111,0.0,72,0.0,0.0,1.0,1.0,900.0,0.0,0.0,7700.0,0.0,0.0,19108.25,0.0,0.0,1,10,8.0,1,0.0 -3294,5025,2721.9397687796436,50.0,111,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44978.8,0.0,50110.0,1,9,7.0,4,2.0 -3295,5026,1947.2890554759263,33.0,112,0.0,69,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37153.9,0.0,30890.0,2,4,0.0,4,2.0 -3296,5027,1976.3572686554655,88.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62900.0,101.0,0.0,53140.65,0.0,0.0,1,8,7.0,3,0.0 -3297,5029,2291.888067848478,34.0,300,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42402.25,0.0,41090.0,2,0,0.0,4,2.0 -3298,5030,3153.8942243205456,59.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57597.95,0.0,59980.0,1,9,7.0,3,2.0 -3299,5031,3025.8716340418882,27.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40405.15,0.0,40190.0,3,10,8.0,4,2.0 -3300,5032,1479.656057656208,51.0,120,1500.0,53,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61307.0,0.0,62100.0,5,0,0.0,4,3.0 -3301,5037,2692.3427205929165,75.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,3210.0,11120.0,0.0,0.0,13735.9,0.0,0.0,1,0,0.0,3,0.0 -3302,5038,1763.5583764384555,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46790.0,858.0,0.0,46804.65,0.0,0.0,1,9,7.0,3,0.0 -3303,5039,3266.863600597388,56.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24116.55,0.0,25270.0,3,10,8.0,1,1.0 -3304,5044,1532.1653092771764,50.0,111,2010.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,66736.95,0.0,86410.0,2,9,7.0,4,2.0 -3305,5045,1255.5380644427726,34.0,120,610.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,14145.0,0.0,11220.0,3,0,0.0,4,2.0 -3306,5046,3380.85954390088,46.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16138.7,0.0,17380.0,3,10,8.0,1,1.0 -3307,5048,4217.117323641129,87.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36200.0,0.0,0.0,36767.25,0.0,0.0,1,8,6.0,3,0.0 -3308,5050,3486.079825535175,21.0,112,4130.0,56,3,3.0,5.0,3.0,8380.0,0.0,0.0,2750.0,0.0,0.0,68692.0,0.0,52510.0,3,10,3.0,5,4.0 -3309,5051,1282.2090237984344,49.0,111,0.0,56,2.0,1.0,6.0,2.9,0.0,440.0,0.0,0.0,0.0,0.0,31120.3,3040.0,13130.0,3,4,4.0,4,2.0 -3310,5054,3519.933782677524,62.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13570.0,0.0,0.0,13363.7,0.0,0.0,1,0,2.0,1,0.0 -3311,5055,3537.2968620644488,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14070.0,334.0,0.0,17976.0,0.0,0.0,1,8,7.0,1,0.0 -3312,5056,3225.629796309528,62.0,111,3650.0,77,2.0,2.0,4.0,2.5,0.0,0.0,0.0,21160.0,0.0,0.0,60652.8,0.0,41630.0,1,10,8.0,4,2.0 -3313,5057,5424.23625275835,33.0,120,5450.0,67,1.0,1.0,3.0,1.8,0.0,1880.0,0.0,0.0,0.0,0.0,17351.25,200.0,7900.0,3,0,2.0,4,1.0 -3314,5059,3889.0220972170637,48.0,120,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14997.7,0.0,15560.0,3,0,2.0,1,1.0 -3315,5061,1711.2882157182546,51.0,112,2740.0,63,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28656.9,0.0,26500.0,2,9,0.0,4,2.0 -3316,5063,2648.1904655855737,39.0,120,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,69.0,0.0,42317.4,0.0,41330.0,2,0,3.0,4,2.0 -3317,5064,2442.510450009087,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69850.0,0.0,0.0,59057.15,0.0,0.0,1,10,8.0,3,0.0 -3318,5066,1719.6465838510485,51.0,111,0.0,37,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,85209.0,0.0,87820.0,2,10,8.0,4,2.0 -3319,5067,1966.2098178971332,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36020.0,0.0,0.0,33312.65,0.0,0.0,1,6,4.0,3,0.0 -3320,5070,1769.7805927920278,73.0,111,0.0,75,1.0,1.0,4.0,2.3,0.0,0.0,0.0,45540.0,0.0,0.0,71549.05,0.0,32660.0,1,10,8.0,5,1.0 -3321,5071,4194.865989283933,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8040.0,0.0,0.0,3,8,6.0,1,0.0 -3322,5072,3570.3597654892583,48.0,120,0.0,63,1.0,1.0,3.0,2.0,0.0,0.0,0.0,28860.0,61.0,0.0,49899.15,0.0,20790.0,3,0,2.0,5,1.0 -3323,5073,5646.533915425983,32.0,112,0.0,13,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53952.8,0.0,17990.0,2,8,0.0,4,2.0 -3324,5074,3037.9817483096826,45.0,111,0.0,68,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25345.55,0.0,23460.0,3,8,7.0,2,1.0 -3325,5075,3659.7490559204452,83.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,1580.0,1050.0,0.0,0.0,6461.15,0.0,0.0,1,9,7.0,1,0.0 -3326,5076,2164.706097600851,38.0,300,4190.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10602.0,0.0,6830.0,5,0,0.0,1,1.0 -3327,5077,7705.642088722076,49.0,112,0.0,35,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,9.0,0.0,59403.85,0.0,60430.0,1,9,1.0,4,2.0 -3328,5081,2632.637782680147,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37760.0,0.0,0.0,36202.25,0.0,0.0,1,9,0.0,3,0.0 -3329,5082,2279.850622343577,37.0,111,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,900.0,0.0,0.0,27210.2,0.0,26230.0,2,8,6.0,4,2.0 -3330,5083,1131.0533675532488,34.0,400,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16030.0,39.0,0.0,35648.6,0.0,15850.0,1,0,0.0,2,1.0 -3331,5085,3687.113182144588,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18100.0,0.0,0.0,17723.25,0.0,0.0,3,9,7.0,1,0.0 -3332,5089,2588.305215865457,61.0,111,2040.0,68,3,3.0,3.0,2.0,0.0,60.0,0.0,11450.0,0.0,0.0,27859.5,840.0,14900.0,1,8,6.0,2,3.0 -3333,5090,2145.6142657031073,33.0,112,10310.0,67,2.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26268.1,0.0,10140.0,3,9,2.0,4,2.0 -3334,5091,3034.2641940529643,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12820.0,0.0,0.0,13541.7,0.0,0.0,3,8,7.0,1,0.0 -3335,5093,2894.999932133287,42.0,221,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,290.0,0.0,0.0,170229.35,0.0,24790.0,1,1,2.0,3,2.0 -3336,5095,2961.7978135504254,67.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17640.0,0.0,0.0,18815.0,0.0,0.0,1,0,0.0,5,0.0 -3337,5096,900.4445326166029,42.0,221,11450.0,63,2.0,0.0,4.0,2.1,0.0,320.0,0.0,0.0,0.0,0.0,22676.2,1030.0,7920.0,2,1,2.0,4,2.0 -3338,5097,2291.423832779139,54.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,4110.0,0.0,2210.0,0.0,0.0,9488.0,0.0,0.0,3,5,4.0,1,0.0 -3339,5099,1629.3823611127666,51.0,221,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35415.05,0.0,37750.0,1,1,1.0,4,2.0 -3340,5100,1634.691559871625,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45950.0,0.0,0.0,43722.35,0.0,0.0,1,8,0.0,3,0.0 -3341,5104,2957.929161152959,34.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,4.0,0.0,41525.35,0.0,42970.0,3,10,8.0,4,2.0 -3342,5105,4692.174591197107,34.0,111,0.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22352.9,0.0,17360.0,3,8,6.0,4,2.0 -3343,5106,3516.141583444187,54.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21860.0,0.0,0.0,37474.55,0.0,18780.0,1,8,7.0,3,1.0 -3344,5107,1233.1236342517448,66.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20420.0,0.0,0.0,50967.85,0.0,4570.0,1,7,5.0,3,0.0 -3345,5110,3130.914593953103,87.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22060.0,0.0,0.0,24090.0,0.0,0.0,1,8,7.0,3,0.0 -3346,5111,2592.9798917698868,37.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36034.4,0.0,32580.0,3,9,7.0,3,2.0 -3347,5112,2164.365083648519,45.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59096.7,0.0,64130.0,2,9,0.0,4,2.0 -3348,5115,2925.069554232581,48.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,2130.0,0.0,0.0,19776.7,0.0,16560.0,3,9,7.0,2,1.0 -3349,5116,4765.841327113126,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14750.0,0.0,0.0,14768.75,0.0,0.0,5,6,5.0,1,0.0 -3350,5118,1195.9105713706656,56.0,111,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40622.55,0.0,42410.0,1,7,5.0,4,2.0 -3351,5120,2677.3418682362076,34.0,112,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46676.9,0.0,46200.0,2,7,2.0,4,2.0 -3352,5124,3128.4959659190513,63.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21520.0,0.0,0.0,20396.8,0.0,0.0,1,0,2.0,3,0.0 -3353,5125,3191.132292660325,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13100.0,0.0,0.0,13364.0,0.0,0.0,3,9,7.0,1,0.0 -3354,5126,1949.4905038139298,44.0,400,0.0,55,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,17219.4,0.0,13530.0,2,0,0.0,4,2.0 -3355,5127,5106.658283521308,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18560.0,0.0,0.0,18727.0,0.0,0.0,3,10,8.0,3,0.0 -3356,5128,2515.0439872195084,56.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,3920.0,0.0,0.0,0.0,0.0,5816.0,720.0,0.0,3,8,7.0,1,1.0 -3357,5130,3024.832620883026,84.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28250.0,0.0,0.0,27117.85,0.0,0.0,1,0,0.0,1,0.0 -3358,5132,1921.9634542992815,40.0,400,0.0,11,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32595.75,0.0,8030.0,2,0,0.0,4,2.0 -3359,5134,1806.7836541748072,58.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26840.0,0.0,0.0,26474.75,0.0,0.0,2,8,6.0,2,0.0 -3360,5135,3020.568294311639,75.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33190.0,0.0,0.0,31755.3,0.0,0.0,1,0,0.0,3,0.0 -3361,5136,7889.667840441619,32.0,112,0.0,56,1.0,1.0,2.0,1.3,0.0,2590.0,0.0,0.0,0.0,0.0,13696.9,2330.0,5340.0,3,9,1.0,2,1.0 -3362,5137,2579.103906974061,54.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57286.65,0.0,61600.0,1,8,7.0,3,2.0 -3363,5139,3050.065362077685,22.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37240.0,0.0,32730.0,3,8,6.0,3,1.0 -3364,5141,997.9380446526703,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22890.0,0.0,0.0,24537.65,0.0,0.0,1,7,5.0,1,0.0 -3365,5142,1869.3722360165705,60.0,112,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,12210.0,0.0,0.0,20792.6,0.0,8940.0,3,9,3.0,1,1.0 -3366,5143,2484.2731222627913,27.0,120,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14989.8,0.0,15160.0,3,0,0.0,1,1.0 -3367,5145,1940.2280178729834,60.0,400,0.0,11,2.0,2.0,3.0,2.0,0.0,0.0,0.0,12370.0,0.0,0.0,105563.6,0.0,1550.0,1,0,0.0,4,2.0 -3368,5146,3419.754415621783,87.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28230.0,0.0,0.0,26773.7,0.0,0.0,1,9,7.0,2,0.0 -3369,5147,3136.857481966332,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16970.0,0.0,0.0,17394.75,0.0,0.0,1,9,7.0,1,0.0 -3370,5148,5824.845468934216,32.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60525.7,0.0,58010.0,2,9,7.0,4,2.0 -3371,5150,4721.709960856704,32.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14318.2,0.0,13000.0,2,10,8.0,1,1.0 -3372,5151,2931.621395673296,49.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18841.05,0.0,19710.0,3,8,7.0,1,1.0 -3373,5152,3016.4838124373905,63.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12890.0,0.0,0.0,12648.75,0.0,0.0,1,10,3.0,1,0.0 -3374,5153,3569.162708634227,36.0,111,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,15.0,0.0,23288.0,0.0,23390.0,3,8,6.0,4,1.0 -3375,5154,2793.4937290014514,50.0,221,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,42.0,0.0,44631.6,0.0,44930.0,1,1,1.0,3,2.0 -3376,5155,2014.7716920816933,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55590.0,40.0,0.0,75830.25,0.0,0.0,1,6,5.0,3,0.0 -3377,5156,3421.645007317643,59.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19320.0,0.0,0.0,23601.0,0.0,4170.0,3,10,4.0,1,0.0 -3378,5157,1665.4061212907593,51.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,72360.6,0.0,78190.0,2,6,4.0,4,2.0 -3379,5158,2579.6042860997,48.0,120,0.0,21,2.0,1.0,3.0,2.0,0.0,0.0,0.0,8280.0,0.0,0.0,28270.5,0.0,1410.0,2,0,2.0,4,2.0 -3380,5159,2156.2307515114708,53.0,400,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18400.0,0.0,0.0,39715.35,0.0,25090.0,1,0,0.0,3,1.0 -3381,5160,2560.504410073669,47.0,111,0.0,56,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33271.35,0.0,25740.0,3,10,8.0,2,2.0 -3382,5161,1946.3290086670934,39.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16995.75,0.0,17690.0,3,6,0.0,1,1.0 -3383,5162,1402.173356626353,64.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,23210.0,0.0,0.0,22707.05,0.0,510.0,1,10,0.0,4,1.0 -3384,5163,2308.142328259745,64.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,39660.0,0.0,0.0,38209.0,0.0,2030.0,3,9,7.0,3,1.0 -3385,5164,1104.9033723225486,49.0,111,3140.0,64,3,5.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,88702.65,0.0,90910.0,2,10,8.0,5,5.0 -3386,5165,5215.193246414742,47.0,111,35390.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52207.65,0.0,24760.0,2,6,5.0,4,2.0 -3387,5166,1767.230270182265,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33120.0,0.0,0.0,31633.7,0.0,0.0,3,9,7.0,3,0.0 -3388,5167,2247.729427351058,76.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14310.0,45.0,0.0,14577.55,0.0,0.0,1,0,0.0,1,0.0 -3389,5168,3809.8650393425687,36.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,9091.0,0.0,29369.05,0.0,0.0,1,10,8.0,1,0.0 -3390,5170,1854.9716800384617,60.0,112,36710.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34999.2,0.0,40.0,1,10,0.0,3,1.0 -3391,5171,1486.6746964344152,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25420.0,0.0,0.0,25064.0,0.0,0.0,1,7,6.0,3,0.0 -3392,5176,2937.497515471846,72.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16200.0,177.0,0.0,29710.9,0.0,0.0,1,9,3.0,3,0.0 -3393,5179,2511.1457316116025,75.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9080.0,0.0,0.0,9080.0,0.0,0.0,5,8,0.0,1,0.0 -3394,5180,2713.5284413620525,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24260.0,0.0,0.0,35694.45,0.0,12440.0,1,9,7.0,3,0.0 -3395,5183,2239.0705714837354,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22070.0,0.0,0.0,21242.65,0.0,0.0,1,8,7.0,3,0.0 -3396,5185,3230.4939170651305,70.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12200.0,0.0,0.0,51511.4,0.0,0.0,1,8,7.0,3,1.0 -3397,5186,1756.1724608773866,77.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39220.0,0.0,0.0,52236.4,0.0,0.0,1,0,0.0,3,0.0 -3398,5187,5059.801501077007,31.0,120,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38184.0,0.0,38390.0,2,0,3.0,3,2.0 -3399,5188,1487.2554097879822,34.0,112,6420.0,69,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30602.55,0.0,23870.0,5,9,0.0,4,2.0 -3400,5190,3115.804642587205,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30440.0,0.0,0.0,27258.05,0.0,0.0,1,10,8.0,1,0.0 -3401,5191,3455.183303873209,26.0,111,5550.0,62,2.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20290.35,0.0,12580.0,3,8,7.0,4,2.0 -3402,5193,5647.884703116348,43.0,112,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21595.4,0.0,23040.0,2,8,0.0,3,1.0 -3403,5194,3407.867158272963,19.0,112,0.0,68,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3688.0,0.0,0.0,3,9,1.0,3,2.0 -3404,5195,4117.099999891622,72.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32510.0,8.0,0.0,29515.75,0.0,0.0,1,0,1.0,3,0.0 -3405,5196,3095.4428343149884,60.0,111,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,15020.0,0.0,0.0,24140.55,0.0,9610.0,1,6,4.0,5,2.0 -3406,5197,2232.514954706584,25.0,112,10510.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37489.7,0.0,28580.0,3,6,0.0,3,2.0 -3407,5199,2315.860233959134,43.0,112,0.0,46,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36963.35,0.0,38250.0,2,4,0.0,4,2.0 -3408,5200,1704.06150282048,74.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38180.0,0.0,0.0,35271.25,0.0,0.0,1,0,0.0,3,0.0 -3409,5201,3639.0053443349916,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23980.0,0.0,0.0,25316.65,0.0,0.0,1,5,4.0,3,0.0 -3410,5202,1953.2778477712357,72.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,46630.0,0.0,0.0,58225.0,0.0,13500.0,1,9,7.0,4,1.0 -3411,5203,1420.500922557174,35.0,112,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46093.2,0.0,32420.0,2,7,1.0,4,2.0 -3412,5205,1566.857089040803,51.0,111,0.0,31,2.0,2.0,4.0,2.5,0.0,0.0,0.0,13100.0,1522.0,0.0,167341.9,0.0,0.0,1,9,7.0,5,2.0 -3413,5207,1838.970344850725,49.0,112,0.0,22,3,2.0,4.0,2.5,0.0,4460.0,0.0,0.0,0.0,0.0,82888.85,730.0,89440.0,1,7,0.0,4,3.0 -3414,5209,3081.98496245855,67.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40950.0,0.0,0.0,37853.6,0.0,0.0,1,1,2.0,3,0.0 -3415,5211,1916.306785281014,57.0,120,0.0,42,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,80771.05,0.0,81070.0,2,0,2.0,4,2.0 -3416,5213,3446.307449704204,89.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17950.0,0.0,0.0,16526.3,0.0,0.0,1,9,7.0,1,0.0 -3417,5214,2378.0868164931862,54.0,111,3040.0,23,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54240.6,0.0,52180.0,2,10,8.0,4,2.0 -3418,5217,1203.296420757509,65.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33410.0,0.0,0.0,30322.3,0.0,0.0,1,3,4.0,3,0.0 -3419,5220,1797.0241566460195,69.0,112,0.0,78,0.0,0.0,2.0,1.5,3050.0,0.0,0.0,22190.0,0.0,0.0,24505.3,0.0,0.0,1,5,0.0,3,0.0 -3420,5221,2886.168681968599,92.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15460.0,0.0,0.0,15484.0,0.0,0.0,3,7,5.0,1,0.0 -3421,5222,3274.637718845486,38.0,400,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29771.3,0.0,20630.0,3,0,1.0,2,1.0 -3422,5223,3139.6986865040453,25.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32579.65,0.0,33520.0,3,9,0.0,3,2.0 -3423,5224,1780.4950929061463,54.0,111,4150.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48597.9,0.0,45340.0,1,6,4.0,4,3.0 -3424,5225,3517.982580938704,25.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5395.2,0.0,5700.0,3,8,7.0,1,1.0 -3425,5226,3583.145010158394,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38010.0,0.0,0.0,35026.3,0.0,0.0,1,7,1.0,3,0.0 -3426,5228,2956.9709526229935,37.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,33033.65,0.0,0.0,5,9,7.0,2,1.0 -3427,5229,3185.6593947311508,58.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14550.0,0.0,0.0,32466.9,0.0,18560.0,1,10,8.0,3,1.0 -3428,5231,2297.0069083239146,74.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14500.0,0.0,0.0,12401.45,0.0,0.0,1,1,3.0,1,0.0 -3429,5233,2128.72665526186,59.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32700.0,0.0,0.0,43253.6,0.0,14920.0,2,9,2.0,3,1.0 -3430,5234,4028.2261904322345,53.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20620.0,0.0,0.0,32693.0,0.0,13510.0,1,9,1.0,3,1.0 -3431,5237,1734.5379182598963,56.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60018.3,0.0,64550.0,1,7,1.0,3,2.0 -3432,5238,3468.0108279737246,45.0,111,4690.0,85,0.0,0.0,1.0,1.0,8600.0,0.0,0.0,0.0,0.0,0.0,15904.0,0.0,0.0,3,10,8.0,1,0.0 -3433,5239,2318.1817205252687,61.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23990.0,0.0,0.0,35364.75,0.0,0.0,1,4,3.0,3,1.0 -3434,5240,2530.4568406745157,39.0,112,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,25799.35,0.0,10640.0,2,3,0.0,4,2.0 -3435,5241,2448.797138145777,78.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11050.0,27.0,0.0,10602.45,0.0,0.0,1,7,0.0,1,0.0 -3436,5242,3059.699911258084,36.0,111,0.0,21,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24796.35,0.0,16920.0,2,9,7.0,4,1.0 -3437,5243,2141.7518720852236,60.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,3110.0,0.0,0.0,27591.65,0.0,18740.0,3,8,6.0,2,1.0 -3438,5244,2759.9973449963736,32.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38012.5,0.0,40820.0,3,8,7.0,3,2.0 -3439,5245,2605.801605692871,79.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5790.0,0.0,0.0,-0.0,0.0,0.0,1,10,8.0,1,0.0 -3440,5246,2672.9967231442774,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38060.0,555.0,0.0,40739.95,0.0,210.0,1,8,7.0,3,0.0 -3441,5248,2487.9281539633985,55.0,300,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,134.0,0.0,48884.2,0.0,0.0,1,0,0.0,1,1.0 -3442,5249,2618.461092494148,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19340.0,0.0,0.0,19247.0,0.0,0.0,3,6,4.0,1,0.0 -3443,5250,3354.6532846760133,62.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,5140.0,0.0,0.0,4859.05,0.0,0.0,5,10,8.0,3,0.0 -3444,5251,1829.7430878118,50.0,112,0.0,33,3,3.0,3.0,2.0,0.0,0.0,0.0,2230.0,0.0,0.0,66949.45,0.0,71620.0,1,10,3.0,4,3.0 -3445,5252,4700.021961811857,52.0,221,0.0,85,0.0,0.0,1.0,1.0,10530.0,0.0,0.0,0.0,0.0,0.0,13458.0,0.0,0.0,3,1,1.0,1,0.0 -3446,5253,2388.182949845693,83.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13230.0,0.0,0.0,17025.9,0.0,1990.0,1,6,4.0,2,1.0 -3447,5254,1848.9375354161907,39.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53183.3,0.0,53640.0,2,9,7.0,4,2.0 -3448,5255,2106.7154734139494,52.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,15850.0,9.0,0.0,46417.2,0.0,33330.0,1,9,7.0,5,1.0 -3449,5256,3534.6295910468803,29.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11204.0,0.0,10770.0,3,10,8.0,1,1.0 -3450,5257,6700.992187435955,94.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25040.0,0.0,0.0,25489.75,0.0,0.0,1,0,3.0,2,0.0 -3451,5258,1688.8790681229748,59.0,112,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,31.0,0.0,41786.05,0.0,44020.0,1,9,2.0,3,1.0 -3452,5259,1459.4844831870346,66.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23690.0,0.0,0.0,23489.3,0.0,0.0,1,0,0.0,3,0.0 -3453,5260,2142.168157856931,88.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28420.0,11.0,0.0,28740.65,0.0,0.0,1,8,7.0,3,0.0 -3454,5261,1563.287235116035,45.0,111,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,3.0,0.0,91486.9,0.0,92010.0,2,6,5.0,4,2.0 -3455,5262,1721.3407199314283,34.0,111,0.0,56,1.0,1.0,5.0,2.4,1040.0,0.0,0.0,5920.0,0.0,0.0,28372.0,0.0,20420.0,3,10,8.0,4,1.0 -3456,5263,932.7107119401825,79.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22140.0,0.0,0.0,21660.85,0.0,0.0,1,6,2.0,3,0.0 -3457,5265,2083.1602417025415,33.0,300,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,13.0,0.0,49961.8,0.0,32160.0,3,0,0.0,4,2.0 -3458,5266,3066.9193329588406,65.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,46830.0,88.0,0.0,71810.95,0.0,28600.0,3,10,8.0,3,1.0 -3459,5267,1512.8208276691669,65.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47490.0,1652.0,0.0,54325.35,0.0,0.0,1,9,1.0,3,0.0 -3460,5268,6787.893395934184,60.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,7110.0,0.0,870.0,0.0,0.0,11556.0,0.0,0.0,3,10,8.0,2,0.0 -3461,5269,3136.5186499684087,74.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34330.0,0.0,0.0,32326.05,0.0,0.0,1,3,3.0,3,0.0 -3462,5270,3782.5576834998624,32.0,111,5860.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27730.1,0.0,28030.0,3,10,8.0,1,1.0 -3463,5271,1088.748736419259,36.0,112,0.0,52,1.0,1.0,5.0,2.4,0.0,0.0,0.0,8390.0,0.0,0.0,36907.25,0.0,21640.0,2,6,1.0,4,1.0 -3464,5273,2872.317802058609,60.0,111,10330.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12273.35,0.0,0.0,3,10,8.0,1,1.0 -3465,5276,903.3946775364758,38.0,111,0.0,42,1.0,1.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,48380.2,0.0,29350.0,3,7,5.0,4,1.0 -3466,5277,5421.501313815439,47.0,221,5500.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38239.7,0.0,32880.0,3,1,2.0,4,2.0 -3467,5278,2009.376507743244,50.0,111,8420.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9644.0,0.0,0.0,3,9,7.0,1,1.0 -3468,5280,2161.540055278127,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32510.0,0.0,0.0,30620.95,0.0,0.0,1,7,0.0,3,0.0 -3469,5281,2537.112783324224,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18000.0,0.0,0.0,17208.3,0.0,0.0,1,8,6.0,1,0.0 -3470,5282,4207.717763027187,20.0,111,10570.0,47,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35539.25,0.0,25610.0,3,6,5.0,4,3.0 -3471,5284,1354.6016069876785,46.0,400,4200.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32052.55,0.0,22940.0,2,0,0.0,2,2.0 -3472,5285,1094.8098367899024,42.0,400,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,21821.35,0.0,15180.0,2,0,0.0,4,1.0 -3473,5286,2334.5205787419873,56.0,400,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14434.1,0.0,14290.0,5,0,0.0,1,1.0 -3474,5289,2896.658056222665,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8920.0,0.0,0.0,8546.25,0.0,0.0,3,9,7.0,1,0.0 -3475,5290,2264.696778025968,41.0,111,9330.0,56,2.0,0.0,3.0,1.8,0.0,0.0,0.0,1450.0,0.0,0.0,17350.7,0.0,230.0,3,7,5.0,2,2.0 -3476,5291,3394.6192805650794,61.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22020.0,0.0,0.0,21971.1,0.0,0.0,1,1,2.0,1,0.0 -3477,5292,1844.0393107970322,47.0,112,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,30880.0,0.0,0.0,40235.75,0.0,10710.0,1,6,1.0,4,1.0 -3478,5293,3140.565668554422,44.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26339.3,0.0,25870.0,3,10,8.0,2,1.0 -3479,5294,1163.6762972314632,34.0,212,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42367.15,0.0,39270.0,2,1,0.0,4,2.0 -3480,5296,2959.784204839426,50.0,111,0.0,47,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,13876.7,0.0,14430.0,3,7,5.0,2,1.0 -3481,5298,2060.693512977416,32.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18914.6,0.0,20230.0,3,7,6.0,3,1.0 -3482,5299,2472.8869324167954,43.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27776.5,0.0,30970.0,1,9,7.0,1,1.0 -3483,5300,5884.926990464502,45.0,112,0.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26812.65,0.0,21550.0,2,4,0.0,2,1.0 -3484,5301,1452.4270254572907,74.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16120.0,101.0,0.0,16075.75,0.0,0.0,1,0,0.0,3,0.0 -3485,5302,3060.070869946511,42.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18620.2,0.0,17930.0,3,6,5.0,1,1.0 -3486,5304,2376.486848044375,45.0,111,12300.0,38,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,62329.9,0.0,50790.0,1,8,6.0,4,2.0 -3487,5305,1910.3593165614939,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40560.0,71.0,0.0,37099.9,0.0,0.0,1,9,7.0,3,0.0 -3488,5306,2319.9756143459995,25.0,111,12960.0,67,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23279.9,0.0,11400.0,3,8,7.0,3,2.0 -3489,5307,3088.384901391861,39.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,50880.0,0.0,53280.0,3,8,6.0,1,1.0 -3490,5308,2783.8324730482905,59.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,3440.0,8.0,0.0,32985.15,0.0,19000.0,1,9,7.0,4,2.0 -3491,5309,2980.290220297507,77.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16550.0,0.0,0.0,16823.25,0.0,130.0,1,9,3.0,3,0.0 -3492,5312,3469.0725200781117,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19320.0,0.0,0.0,20142.75,0.0,0.0,5,9,7.0,1,0.0 -3493,5313,3732.2297725438443,47.0,111,0.0,47,1.0,1.0,3.0,2.0,0.0,0.0,0.0,16310.0,0.0,0.0,27759.65,0.0,13500.0,1,9,7.0,4,1.0 -3494,5317,3776.5749063278913,54.0,221,0.0,75,0.0,0.0,1.0,1.0,6240.0,0.0,0.0,8650.0,0.0,0.0,14921.0,0.0,0.0,5,1,2.0,1,0.0 -3495,5318,1564.44165830584,57.0,300,0.0,42,1.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22916.65,0.0,25180.0,1,0,0.0,2,1.0 -3496,5319,2371.7281370443334,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36360.0,0.0,0.0,32574.2,0.0,0.0,1,9,7.0,3,0.0 -3497,5320,1598.7686879838373,57.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8950.0,0.0,0.0,29286.55,0.0,21980.0,1,7,0.0,3,1.0 -3498,5323,988.8142087272305,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43800.0,0.0,0.0,42667.55,0.0,0.0,1,8,7.0,3,0.0 -3499,5324,1256.6837126206688,58.0,112,0.0,75,1.0,0.0,3.0,2.0,0.0,0.0,0.0,36980.0,1531.0,0.0,44817.85,0.0,90.0,1,4,0.0,4,1.0 -3500,5325,1179.6475733797656,58.0,112,280.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16220.0,0.0,0.0,28717.7,0.0,12140.0,3,6,1.0,3,0.0 -3501,5326,2491.741232629541,54.0,111,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,19900.0,0.0,0.0,66281.55,0.0,51960.0,1,10,8.0,4,2.0 -3502,5328,976.724732101139,46.0,112,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,58028.4,0.0,62130.0,2,9,1.0,4,2.0 -3503,5329,2970.489131328484,49.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19172.1,0.0,21500.0,1,9,7.0,1,1.0 -3504,5330,2840.961187822733,51.0,221,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37129.95,0.0,37530.0,2,1,2.0,4,2.0 -3505,5331,855.4458095068059,48.0,120,4270.0,43,3,3.0,3.0,2.0,0.0,0.0,0.0,1450.0,0.0,0.0,27025.45,0.0,20990.0,1,0,3.0,4,3.0 -3506,5332,2671.9600741779964,55.0,111,1890.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,17.0,0.0,68144.7,0.0,70560.0,1,10,8.0,4,2.0 -3507,5333,1622.716165701769,39.0,300,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,73067.15,0.0,24310.0,2,0,1.0,4,2.0 -3508,5335,3454.747399311157,56.0,120,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20318.1,0.0,20660.0,3,0,2.0,1,1.0 -3509,5336,3270.0540447702206,74.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12200.0,0.0,0.0,14563.0,0.0,0.0,3,0,0.0,1,0.0 -3510,5338,945.7237262746087,51.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,50.0,0.0,63254.1,0.0,67770.0,1,8,7.0,4,2.0 -3511,5339,4850.641957728157,40.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40135.9,0.0,25070.0,1,10,8.0,4,2.0 -3512,5340,3424.778691354148,27.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31239.2,0.0,32090.0,3,8,7.0,3,2.0 -3513,5342,3400.393930679416,47.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16560.0,0.0,16560.0,3,10,8.0,1,1.0 -3514,5344,2935.0301434386706,36.0,120,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44993.4,0.0,44430.0,3,0,2.0,4,2.0 -3515,5346,1239.720902083415,35.0,111,0.0,64,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,36777.0,0.0,24190.0,2,8,7.0,4,2.0 -3516,5350,2645.0476995002014,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24530.0,74.0,0.0,25513.8,0.0,0.0,1,8,7.0,1,0.0 -3517,5351,2428.2897435151444,37.0,400,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36445.3,0.0,30620.0,2,0,0.0,4,2.0 -3518,5352,2082.7063306203277,35.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58124.15,0.0,57780.0,2,10,4.0,4,2.0 -3519,5353,3437.598518019841,53.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38802.95,0.0,39870.0,3,10,8.0,1,1.0 -3520,5354,2397.4622369023623,42.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35990.5,0.0,24800.0,3,9,7.0,2,1.0 -3521,5355,1280.4576432620258,72.0,111,1390.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14450.0,0.0,0.0,29704.95,0.0,15200.0,2,9,7.0,3,1.0 -3522,5356,2714.4520526379797,67.0,111,0.0,56,2.0,1.0,3.0,1.8,0.0,0.0,0.0,5280.0,0.0,0.0,25609.15,0.0,21920.0,2,10,8.0,5,2.0 -3523,5358,1276.6195202423858,78.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,29780.0,0.0,0.0,47697.9,0.0,20450.0,1,9,7.0,2,1.0 -3524,5361,2836.824461339815,73.0,111,7480.0,78,2.0,1.0,3.0,2.0,0.0,0.0,0.0,15580.0,0.0,0.0,32003.3,0.0,8960.0,3,10,8.0,4,2.0 -3525,5362,2636.867503878742,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27400.0,0.0,0.0,26240.75,0.0,0.0,1,9,0.0,3,0.0 -3526,5363,3199.585513753843,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7205.0,0.0,0.0,5,10,8.0,1,0.0 -3527,5365,3218.020954266511,61.0,111,6160.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,1442.0,0.0,212276.8,0.0,0.0,3,10,8.0,4,2.0 -3528,5367,2424.302771214508,68.0,111,0.0,77,1.0,0.0,3.0,2.0,0.0,11090.0,0.0,19910.0,0.0,0.0,30924.65,360.0,0.0,3,10,8.0,5,1.0 -3529,5370,2097.1801760220433,57.0,300,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,290.0,8260.0,0.0,0.0,15862.95,0.0,0.0,1,0,0.0,5,2.0 -3530,5371,2277.868705368691,48.0,112,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,6150.0,0.0,0.0,48130.05,0.0,26390.0,3,8,0.0,4,2.0 -3531,5374,2856.8914393366513,30.0,111,5720.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49872.0,0.0,47450.0,3,9,7.0,3,2.0 -3532,5375,3379.7615234031578,26.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38105.5,0.0,33310.0,2,7,5.0,4,2.0 -3533,5376,2598.2562536144037,41.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,22.0,0.0,28146.3,0.0,28380.0,2,7,0.0,1,1.0 -3534,5377,1441.8054344690684,50.0,111,0.0,37,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,1224.0,0.0,300743.65,0.0,396050.0,1,10,8.0,4,2.0 -3535,5379,1118.5789732057656,54.0,112,350.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,13130.0,14.0,0.0,47245.4,0.0,34980.0,1,3,0.0,4,2.0 -3536,5380,1637.395792360246,56.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50599.1,0.0,54660.0,3,8,6.0,3,2.0 -3537,5381,2179.9195552065694,49.0,112,0.0,46,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,79781.45,0.0,70290.0,2,5,0.0,4,3.0 -3538,5382,2400.3269733731495,43.0,111,0.0,68,1.0,1.0,4.0,2.1,0.0,320.0,0.0,0.0,0.0,0.0,23014.4,2410.0,17180.0,3,8,7.0,4,1.0 -3539,5383,2391.9923538889357,39.0,400,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21646.5,0.0,21960.0,2,0,1.0,1,1.0 -3540,5384,1958.781732613068,52.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,16780.0,0.0,0.0,50893.7,0.0,38720.0,2,6,5.0,4,2.0 -3541,5387,1531.8698062563626,56.0,211,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10177.15,0.0,0.0,1,3,4.0,1,1.0 -3542,5388,4717.148927692273,38.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44924.55,0.0,11380.0,2,8,6.0,4,2.0 -3543,5389,1268.254945826596,49.0,111,880.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,61982.7,0.0,55740.0,2,10,8.0,4,2.0 -3544,5391,2411.3280774639775,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31180.0,0.0,0.0,29255.55,0.0,0.0,1,9,7.0,3,0.0 -3545,5395,1626.0263231503425,22.0,112,0.0,67,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,13882.95,0.0,12530.0,2,10,0.0,2,2.0 -3546,5396,966.7107751105762,44.0,111,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,44270.0,0.0,34320.0,5,8,7.0,4,2.0 -3547,5399,2896.297436449145,65.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17770.0,0.0,0.0,20237.15,0.0,3720.0,1,6,4.0,3,1.0 -3548,5400,3346.4305774173426,51.0,111,19550.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,34.0,0.0,78578.6,0.0,70550.0,1,8,7.0,3,2.0 -3549,5401,4745.977569097476,22.0,221,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22351.75,0.0,18040.0,3,1,2.0,3,2.0 -3550,5403,3210.853248169071,32.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45557.5,0.0,44820.0,3,9,7.0,4,2.0 -3551,5406,2703.406197814477,59.0,212,0.0,75,1.0,1.0,4.0,2.5,0.0,0.0,0.0,17040.0,0.0,0.0,19928.4,0.0,0.0,1,3,0.0,5,1.0 -3552,5407,2303.7233277911046,57.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,1130.0,0.0,0.0,952.0,0.0,51722.9,2980.0,49360.0,3,10,8.0,4,2.0 -3553,5408,3224.294235403418,51.0,112,8740.0,46,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,169.0,0.0,39998.45,0.0,34040.0,1,9,0.0,4,3.0 -3554,5412,2661.3046311491503,36.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15640.0,0.0,15710.0,3,8,7.0,1,1.0 -3555,5413,1825.6190747189214,56.0,221,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32570.0,0.0,0.0,50173.65,0.0,26130.0,1,1,2.0,3,1.0 -3556,5414,2273.837980214852,57.0,111,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,189701.8,0.0,146550.0,1,9,7.0,4,2.0 -3557,5415,1594.5301757282048,39.0,111,0.0,42,2.0,2.0,5.0,2.6,0.0,0.0,0.0,24570.0,0.0,0.0,54939.15,0.0,29600.0,2,6,5.0,5,2.0 -3558,5418,3178.061817453394,23.0,111,0.0,84,1.0,0.0,2.0,1.5,0.0,0.0,0.0,5350.0,0.0,0.0,36694.0,0.0,23320.0,3,8,6.0,5,1.0 -3559,5419,4840.441527930874,36.0,400,0.0,47,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,7675.0,0.0,0.0,3,0,0.0,1,1.0 -3560,5420,5619.702968948373,31.0,300,130.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32810.95,0.0,31620.0,3,0,1.0,3,2.0 -3561,5422,2365.4806186030787,51.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,29040.0,2063.0,0.0,88931.25,0.0,58240.0,1,10,8.0,2,1.0 -3562,5423,1212.9901083330965,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15520.0,0.0,0.0,15812.35,0.0,0.0,1,6,4.0,1,0.0 -3563,5425,3104.458987197473,24.0,111,0.0,84,0.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7835.0,0.0,0.0,3,10,8.0,1,0.0 -3564,5426,2984.793598650206,78.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18040.0,0.0,0.0,17824.0,0.0,0.0,1,0,0.0,5,0.0 -3565,5427,2520.768573243342,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25790.0,0.0,0.0,25066.2,0.0,0.0,3,7,6.0,3,0.0 -3566,5429,1492.3947380517377,54.0,111,21130.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26521.7,0.0,7430.0,3,9,7.0,3,2.0 -3567,5430,3085.246053421963,60.0,211,0.0,86,2.0,2.0,3.0,2.0,0.0,0.0,0.0,6920.0,0.0,0.0,13584.0,520.0,1990.0,3,4,3.0,2,2.0 -3568,5431,2307.7514332395426,30.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32131.15,0.0,30890.0,3,7,2.0,4,2.0 -3569,5432,2740.598946736527,37.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43762.2,0.0,43350.0,2,6,0.0,3,2.0 -3570,5434,5935.751008819756,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9700.0,0.0,4700.0,3,10,8.0,1,0.0 -3571,5435,1498.0500500690516,56.0,112,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,119.0,0.0,95417.3,0.0,117550.0,2,10,4.0,4,2.0 -3572,5436,1656.1571449558753,36.0,111,8040.0,64,2.0,0.0,7.0,3.6,0.0,0.0,8810.0,0.0,0.0,0.0,32180.0,0.0,0.0,3,5,4.0,5,2.0 -3573,5437,2519.836503735476,62.0,112,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25560.0,0.0,0.0,33379.4,0.0,0.0,1,4,0.0,3,1.0 -3574,5438,1541.4072285288432,62.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19950.0,4.0,0.0,20782.35,0.0,0.0,1,5,4.0,1,0.0 -3575,5440,1743.8913340579982,36.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41273.1,0.0,40200.0,2,7,1.0,4,2.0 -3576,5441,2477.43299655688,50.0,400,0.0,53,1.0,1.0,2.0,1.5,8750.0,0.0,0.0,0.0,0.0,0.0,10654.7,0.0,2170.0,1,0,0.0,3,1.0 -3577,5442,1262.5817590423987,72.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13970.0,0.0,0.0,15542.0,0.0,0.0,3,0,0.0,1,0.0 -3578,5445,3644.9482792762497,61.0,111,12680.0,77,2.0,1.0,3.0,2.0,0.0,0.0,0.0,28710.0,97.0,0.0,59820.65,0.0,18690.0,1,6,5.0,4,2.0 -3579,5446,3567.9349847434146,31.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,29.0,0.0,40325.9,0.0,48380.0,3,10,8.0,1,1.0 -3580,5447,3064.9814911706044,43.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,85756.9,0.0,92710.0,2,10,8.0,4,2.0 -3581,5448,1445.4921207475372,61.0,111,2080.0,78,1.0,1.0,4.0,2.5,17500.0,6090.0,0.0,16490.0,0.0,0.0,58432.0,3710.0,12790.0,1,7,5.0,4,1.0 -3582,5450,919.8364604143103,65.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54900.0,0.0,0.0,48234.95,0.0,80.0,1,3,4.0,3,0.0 -3583,5451,1047.7136474392946,72.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44660.0,0.0,0.0,44827.85,0.0,0.0,1,9,2.0,3,0.0 -3584,5452,1786.1301179530271,26.0,111,90.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39245.15,0.0,40130.0,3,7,5.0,3,2.0 -3585,5453,2670.564348916837,48.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28977.95,0.0,31680.0,3,9,7.0,1,1.0 -3586,5454,2213.1390672166317,43.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18765.45,0.0,20050.0,3,8,7.0,1,1.0 -3587,5456,1695.3883719191156,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22660.0,0.0,0.0,23131.45,0.0,0.0,1,7,6.0,1,0.0 -3588,5459,2968.332666823635,34.0,111,940.0,64,1.0,1.0,3.0,1.8,0.0,0.0,0.0,7390.0,0.0,0.0,37886.1,0.0,24470.0,3,9,7.0,4,1.0 -3589,5460,2442.3082346167903,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33510.0,0.0,0.0,33523.95,0.0,0.0,1,9,7.0,3,0.0 -3590,5461,1796.9118695061131,58.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,89670.8,0.0,104220.0,2,7,0.0,4,2.0 -3591,5462,3452.3060157301798,40.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13722.75,0.0,14250.0,3,7,6.0,1,1.0 -3592,5463,3382.1414413395055,32.0,111,6950.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27980.1,0.0,22980.0,3,9,7.0,3,2.0 -3593,5466,2928.33275475138,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2432.0,0.0,0.0,3,7,5.0,1,0.0 -3594,5467,1868.504116232562,59.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,114231.3,0.0,23290.0,1,6,4.0,3,2.0 -3595,5469,2012.0820312469696,48.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,6650.0,0.0,0.0,24229.9,0.0,16180.0,1,9,7.0,3,1.0 -3596,5472,1993.3999216432578,53.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21237.7,0.0,18770.0,2,6,0.0,3,2.0 -3597,5473,1787.6261617616576,55.0,300,5920.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,4130.0,176.0,0.0,34837.05,0.0,24130.0,1,0,0.0,4,2.0 -3598,5475,1149.1971945878306,65.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46710.0,0.0,0.0,45817.25,0.0,0.0,1,4,0.0,3,0.0 -3599,5476,2356.190857163477,58.0,111,0.0,34,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42793.4,0.0,46420.0,3,9,7.0,1,1.0 -3600,5477,1817.1167964567867,41.0,111,5410.0,55,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,23.0,0.0,24903.45,0.0,16540.0,3,8,7.0,4,2.0 -3601,5478,3139.889498424651,30.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25467.9,0.0,27760.0,3,10,8.0,1,1.0 -3602,5479,3348.189634263255,31.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,4620.0,0.0,0.0,0.0,0.0,8005.15,60.0,280.0,3,9,7.0,1,1.0 -3603,5480,4085.9782780740034,20.0,111,0.0,81,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,1440.0,0.0,0.0,3,9,7.0,5,2.0 -3604,5481,3418.5908374634037,44.0,221,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,3.0,0.0,19937.5,0.0,12770.0,1,1,1.0,2,1.0 -3605,5482,2049.9588159256505,51.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31752.55,0.0,27140.0,3,8,7.0,2,1.0 -3606,5483,3156.471078523055,43.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,148920.85,0.0,169260.0,2,10,8.0,4,2.0 -3607,5484,3442.928470621145,74.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25110.0,0.0,0.0,23880.0,0.0,0.0,5,10,2.0,1,0.0 -3608,5486,2481.8020203205056,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,66370.0,193.0,0.0,59894.55,0.0,0.0,1,10,8.0,3,0.0 -3609,5487,5486.9739379317425,57.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30913.2,0.0,31240.0,3,10,8.0,1,1.0 -3610,5491,2776.6480749293582,59.0,111,0.0,85,0.0,0.0,1.0,1.0,8230.0,0.0,0.0,2480.0,0.0,0.0,13626.0,0.0,0.0,3,7,5.0,1,0.0 -3611,5492,5915.567521275705,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20230.0,0.0,0.0,19393.55,0.0,0.0,1,4,4.0,1,0.0 -3612,5496,1813.9969495331559,39.0,111,0.0,22,2.0,2.0,4.0,2.3,0.0,6080.0,0.0,0.0,0.0,0.0,74654.0,0.0,67390.0,3,5,4.0,4,2.0 -3613,5497,2336.402422305144,60.0,111,29740.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16570.0,1306.0,0.0,47470.55,0.0,0.0,1,10,8.0,3,0.0 -3614,5498,3754.618762291883,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6015.0,0.0,0.0,3,9,7.0,1,0.0 -3615,5499,3051.305320982864,80.0,400,0.0,72,0.0,0.0,2.0,1.5,6100.0,0.0,0.0,18360.0,0.0,0.0,24564.15,0.0,0.0,1,0,0.0,3,0.0 -3616,5500,3549.761153659468,53.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,83.0,0.0,34649.95,0.0,41300.0,1,10,8.0,2,1.0 -3617,5501,1829.5611482904067,95.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9290.0,0.0,0.0,11527.0,0.0,0.0,3,0,0.0,1,0.0 -3618,5503,965.4631960348919,44.0,111,0.0,37,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,84097.75,0.0,87460.0,1,9,7.0,4,2.0 -3619,5504,1765.5206181598585,79.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36350.0,0.0,0.0,31974.65,0.0,0.0,1,9,7.0,1,0.0 -3620,5505,1504.7888420722338,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17870.0,0.0,0.0,18189.15,0.0,0.0,1,8,2.0,3,0.0 -3621,5506,1667.6580927922803,58.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44884.0,0.0,48810.0,1,7,5.0,3,2.0 -3622,5508,4142.287878498371,88.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,80610.0,8447.0,0.0,84884.65,0.0,0.0,1,10,8.0,3,0.0 -3623,5510,2710.9196335192314,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50570.0,687.0,0.0,51304.7,0.0,0.0,1,9,7.0,3,0.0 -3624,5512,1323.9793004184232,57.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37930.0,0.0,0.0,37476.6,0.0,1990.0,1,3,3.0,3,0.0 -3625,5514,2479.9157216525773,58.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37780.0,841.0,0.0,38086.1,0.0,0.0,2,6,0.0,3,0.0 -3626,5516,3081.5234337880884,44.0,111,0.0,21,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,30532.0,0.0,17870.0,3,10,8.0,4,1.0 -3627,5517,1686.2529982025765,38.0,112,28200.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,47254.0,0.0,15010.0,1,10,4.0,4,2.0 -3628,5518,1915.8744048585086,61.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10940.0,117.0,0.0,86149.55,0.0,83120.0,3,8,7.0,3,1.0 -3629,5519,2962.4619407103546,47.0,120,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,11.0,0.0,69936.2,0.0,69810.0,2,0,1.0,4,2.0 -3630,5520,2429.0428730961457,47.0,112,2200.0,62,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,36820.35,0.0,36020.0,2,6,0.0,4,3.0 -3631,5521,2025.0557901222408,48.0,111,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34844.0,0.0,35990.0,3,9,7.0,4,2.0 -3632,5522,3396.92395965185,45.0,111,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37868.45,0.0,36770.0,2,8,6.0,4,2.0 -3633,5523,2757.4233448408586,44.0,112,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,22.0,0.0,62118.5,0.0,48140.0,1,7,0.0,4,2.0 -3634,5524,2139.3289827837707,24.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28745.8,0.0,27790.0,3,7,5.0,3,2.0 -3635,5525,2217.813133703107,29.0,111,6100.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45412.75,0.0,34750.0,3,8,7.0,4,2.0 -3636,5526,1381.3236174472347,57.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48365.3,0.0,54300.0,1,6,4.0,3,2.0 -3637,5527,6296.548774139847,25.0,111,0.0,47,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32751.0,0.0,30100.0,3,10,8.0,4,1.0 -3638,5528,1929.8926404357792,67.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18660.0,0.0,0.0,17872.8,0.0,0.0,1,5,0.0,3,0.0 -3639,5529,2051.5332890059653,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,1640.0,10010.0,0.0,0.0,16233.1,0.0,2370.0,1,8,6.0,3,0.0 -3640,5531,3582.8691219467464,75.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21350.0,0.0,0.0,21206.05,0.0,0.0,1,0,0.0,3,0.0 -3641,5535,2874.7189456032906,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18480.0,0.0,0.0,18224.15,0.0,0.0,1,7,5.0,1,0.0 -3642,5536,1667.2173385270871,40.0,112,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45659.15,0.0,41500.0,2,9,1.0,4,2.0 -3643,5538,1262.5559381542141,76.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22920.0,0.0,0.0,22495.35,0.0,0.0,3,6,1.0,3,0.0 -3644,5539,3846.5819939363246,79.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23860.0,0.0,0.0,23292.35,0.0,0.0,1,10,2.0,3,0.0 -3645,5542,2342.107978706927,46.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35756.05,0.0,36820.0,3,9,7.0,4,2.0 -3646,5543,2968.554088252411,37.0,111,0.0,23,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,73459.6,0.0,70850.0,2,9,7.0,4,2.0 -3647,5544,4980.4608355657465,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2490.0,7090.0,0.0,0.0,11980.0,0.0,0.0,3,6,5.0,1,0.0 -3648,5545,3769.0628909632974,39.0,111,0.0,63,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,7996.95,0.0,0.0,3,7,5.0,1,1.0 -3649,5546,2082.653512778459,61.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60059.35,0.0,67330.0,1,8,6.0,3,2.0 -3650,5547,1946.5074416555287,32.0,111,15030.0,42,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35084.55,0.0,23030.0,3,9,7.0,3,2.0 -3651,5549,2808.5259730206203,60.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,29780.0,125.0,0.0,38911.5,0.0,10450.0,1,10,0.0,3,1.0 -3652,5550,2811.8731794912537,45.0,111,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24731.05,0.0,27280.0,1,10,8.0,4,2.0 -3653,5551,2339.6699362535533,48.0,111,0.0,68,2.0,1.0,2.0,1.5,0.0,900.0,0.0,0.0,0.0,0.0,17485.4,3830.0,10230.0,3,7,5.0,2,2.0 -3654,5552,3204.8166239818665,60.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16330.0,0.0,0.0,16070.0,0.0,0.0,1,8,7.0,3,0.0 -3655,5553,5120.487956288638,76.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26650.0,0.0,0.0,24192.3,0.0,0.0,1,8,3.0,1,0.0 -3656,5554,2529.6835719402675,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64360.0,0.0,0.0,58586.1,0.0,2740.0,2,8,6.0,3,0.0 -3657,5555,2678.288844775191,46.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35779.15,0.0,38590.0,3,9,7.0,4,2.0 -3658,5557,3002.3380355254885,75.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14210.0,0.0,0.0,13787.5,0.0,0.0,1,0,2.0,3,0.0 -3659,5558,2123.522848299468,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53940.0,0.0,0.0,72984.4,0.0,0.0,1,7,5.0,3,0.0 -3660,5559,1704.682250076226,59.0,112,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23790.0,0.0,0.0,50050.65,0.0,29540.0,1,9,0.0,3,1.0 -3661,5560,3337.3947175077074,43.0,111,8770.0,46,2.0,0.0,2.0,1.5,0.0,290.0,0.0,0.0,0.0,0.0,26613.7,620.0,17450.0,3,10,8.0,3,2.0 -3662,5561,2691.3229809721756,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58760.0,295.0,0.0,57776.4,0.0,0.0,1,10,8.0,3,0.0 -3663,5562,1374.4982616453158,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42560.0,873.0,0.0,54005.1,0.0,0.0,1,8,7.0,3,0.0 -3664,5564,5020.209595623541,68.0,212,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21330.0,0.0,0.0,19484.45,0.0,0.0,1,3,0.0,1,0.0 -3665,5565,4026.5832612725526,29.0,112,0.0,21,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,47533.9,0.0,6920.0,2,5,0.0,4,1.0 -3666,5566,2258.751614295578,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43640.0,75.0,0.0,40382.1,0.0,0.0,1,6,5.0,3,0.0 -3667,5567,1874.597113497305,40.0,111,6160.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26143.75,0.0,12770.0,3,9,7.0,4,1.0 -3668,5568,2374.687394472943,43.0,111,10830.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48392.4,0.0,41410.0,2,10,8.0,4,2.0 -3669,5570,1993.8745167414113,39.0,221,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34968.6,0.0,33300.0,2,1,2.0,4,2.0 -3670,5572,4271.31995042832,50.0,112,4480.0,68,2.0,1.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,44472.25,0.0,27620.0,3,10,2.0,4,2.0 -3671,5573,3557.1893641431066,25.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35529.6,0.0,30350.0,2,10,8.0,4,2.0 -3672,5576,3554.292934146536,41.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38690.75,0.0,40590.0,1,10,8.0,1,1.0 -3673,5578,1381.0030618214741,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45300.0,0.0,0.0,40393.7,0.0,0.0,1,6,4.0,3,0.0 -3674,5579,998.9318002659022,48.0,112,0.0,13,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,124.0,0.0,58557.1,0.0,31680.0,1,7,0.0,4,2.0 -3675,5581,1200.5480798547803,46.0,300,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,30852.1,0.0,28850.0,2,0,0.0,4,2.0 -3676,5582,3067.0921257477858,29.0,111,4820.0,63,1.0,0.0,1.0,1.0,0.0,3440.0,0.0,0.0,0.0,0.0,15255.65,0.0,0.0,3,9,7.0,1,1.0 -3677,5583,2654.0381034147945,38.0,300,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41617.05,0.0,44280.0,1,0,0.0,3,2.0 -3678,5584,2772.0168035850425,42.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19063.2,0.0,13580.0,3,7,6.0,2,1.0 -3679,5585,2413.2996231178226,34.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,182.0,0.0,54066.85,0.0,57100.0,3,10,8.0,4,2.0 -3680,5586,1612.8634797626908,62.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13010.0,0.0,0.0,13183.15,0.0,0.0,3,0,0.0,1,0.0 -3681,5591,2099.959548057127,48.0,111,0.0,85,0.0,0.0,4.0,2.3,8750.0,0.0,0.0,0.0,0.0,0.0,23130.0,0.0,0.0,3,9,7.0,2,0.0 -3682,5592,3411.821014309978,78.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30150.0,0.0,0.0,28627.4,0.0,0.0,1,9,7.0,3,0.0 -3683,5593,1422.9612477218016,36.0,111,250.0,52,1.0,1.0,4.0,2.3,0.0,340.0,0.0,0.0,0.0,0.0,22433.0,1690.0,11040.0,3,7,5.0,2,1.0 -3684,5594,2423.113168687602,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19150.0,0.0,0.0,19084.95,0.0,0.0,1,8,7.0,1,0.0 -3685,5596,2910.853965003511,79.0,111,0.0,77,0.0,0.0,1.0,1.0,8380.0,0.0,0.0,6010.0,0.0,0.0,13979.5,0.0,0.0,1,9,7.0,1,0.0 -3686,5597,1432.7090273194995,40.0,111,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,44589.1,0.0,41230.0,2,9,7.0,4,2.0 -3687,5598,2830.8815562673585,31.0,300,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48550.8,0.0,43770.0,2,0,0.0,4,2.0 -3688,5599,1655.9307631412453,35.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,53249.9,0.0,46550.0,2,8,7.0,4,2.0 -3689,5601,1194.9549137531803,62.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38680.0,61.0,0.0,39074.95,0.0,0.0,5,0,0.0,3,0.0 -3690,5604,1828.0676938587476,59.0,111,0.0,23,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,46.0,0.0,78719.85,0.0,92010.0,1,9,7.0,3,2.0 -3691,5605,3248.8971389922967,50.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,57180.0,0.0,0.0,71289.6,0.0,19920.0,3,10,8.0,5,1.0 -3692,5609,2738.967681792231,52.0,221,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2.0,0.0,43320.25,0.0,45220.0,2,1,1.0,3,2.0 -3693,5610,3273.3210320653434,51.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6656.8,0.0,6760.0,2,9,7.0,1,1.0 -3694,5613,2658.2219693787706,60.0,112,0.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,14370.0,0.0,0.0,26303.25,0.0,12880.0,1,6,0.0,3,2.0 -3695,5614,3638.785157672185,76.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24830.0,373.0,0.0,24576.45,0.0,0.0,1,9,7.0,3,0.0 -3696,5617,2307.998179965651,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13890.0,0.0,0.0,13892.0,0.0,0.0,1,8,7.0,1,0.0 -3697,5618,1378.7898092920038,49.0,112,0.0,63,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42363.15,0.0,41750.0,2,6,0.0,4,3.0 -3698,5619,3090.541472955371,32.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,154.0,0.0,31546.45,0.0,0.0,1,10,8.0,4,2.0 -3699,5620,2955.430535726177,38.0,111,5600.0,85,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,16845.45,0.0,6850.0,2,9,7.0,4,1.0 -3700,5621,3164.2509584886006,70.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16080.0,0.0,0.0,15356.65,0.0,0.0,1,0,0.0,1,0.0 -3701,5622,1617.9168895878931,68.0,111,0.0,86,0.0,0.0,3.0,2.0,8750.0,0.0,0.0,17250.0,0.0,0.0,26356.25,0.0,0.0,2,7,6.0,4,0.0 -3702,5624,2844.632544178673,65.0,112,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18200.0,0.0,0.0,22435.5,0.0,4410.0,1,9,3.0,3,1.0 -3703,5626,5974.6281912383465,41.0,112,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,20.0,0.0,42713.65,0.0,41710.0,2,8,3.0,4,2.0 -3704,5629,3357.7837947109265,51.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53234.2,0.0,60530.0,2,8,7.0,3,2.0 -3705,5630,3149.727739788323,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26110.0,0.0,0.0,25105.6,0.0,0.0,1,6,4.0,3,0.0 -3706,5631,2358.2665131178455,46.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,24196.4,0.0,20830.0,2,9,7.0,1,1.0 -3707,5632,4311.4366357203635,88.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,46430.0,315.0,0.0,42460.95,0.0,0.0,5,10,8.0,1,0.0 -3708,5634,2712.387512312743,27.0,111,470.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28836.45,0.0,26390.0,3,8,7.0,4,2.0 -3709,5635,2783.969778591098,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21610.0,0.0,0.0,20839.7,0.0,0.0,1,9,7.0,1,0.0 -3710,5636,5031.073223761131,76.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17580.0,0.0,0.0,18318.6,0.0,0.0,1,8,0.0,1,0.0 -3711,5637,2531.727107477863,31.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27996.65,0.0,21060.0,3,7,5.0,4,2.0 -3712,5638,1635.5220868138413,29.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,8.0,0.0,68848.6,0.0,25430.0,3,9,7.0,4,2.0 -3713,5639,1514.0441325781662,78.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,74610.0,0.0,0.0,64496.8,0.0,0.0,1,6,4.0,1,0.0 -3714,5640,3103.4848134810277,30.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41911.6,0.0,38460.0,3,8,6.0,4,2.0 -3715,5642,3210.7697167612937,44.0,300,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,17990.35,0.0,2410.0,2,0,0.0,4,2.0 -3716,5643,2185.9563189383116,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34820.0,0.0,0.0,33446.4,0.0,0.0,1,9,0.0,3,0.0 -3717,5644,1375.6899127773663,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13850.0,0.0,0.0,12788.9,0.0,0.0,1,8,7.0,1,0.0 -3718,5645,1422.760187116906,62.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23230.0,0.0,0.0,23805.05,0.0,0.0,1,0,0.0,1,0.0 -3719,5647,7554.913479646873,46.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18251.35,0.0,18670.0,3,9,2.0,1,1.0 -3720,5649,1338.0188269740559,35.0,112,1160.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40964.95,0.0,33710.0,2,9,2.0,4,1.0 -3721,5650,2640.547995366183,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12640.0,0.0,0.0,12639.35,0.0,0.0,1,9,7.0,1,0.0 -3722,5651,2522.0361625544533,68.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,59490.0,0.0,0.0,47154.95,0.0,0.0,1,7,0.0,1,0.0 -3723,5652,1307.5609246931085,76.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30700.0,0.0,0.0,30974.6,0.0,0.0,1,0,0.0,3,0.0 -3724,5654,2238.3537195670456,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31880.0,0.0,0.0,32862.0,0.0,0.0,1,8,6.0,3,0.0 -3725,5655,2795.932153533289,78.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29990.0,174.0,0.0,28176.35,0.0,0.0,1,10,0.0,3,0.0 -3726,5656,3559.1674706762315,49.0,111,0.0,43,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43270.45,0.0,42350.0,3,9,7.0,4,2.0 -3727,5657,2120.6986669390367,52.0,111,0.0,33,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,75716.9,0.0,80230.0,1,9,7.0,4,3.0 -3728,5661,1249.9280146079575,59.0,111,1390.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30941.65,0.0,31810.0,1,6,4.0,3,2.0 -3729,5662,3451.33405581756,27.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27939.0,0.0,8640.0,3,7,5.0,1,0.0 -3730,5663,2771.590995577239,48.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20220.55,0.0,17840.0,3,10,8.0,2,1.0 -3731,5664,5882.840479033101,82.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14680.0,0.0,0.0,14680.0,0.0,0.0,5,8,3.0,1,0.0 -3732,5667,2208.1802526274337,30.0,400,3050.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42579.4,0.0,28290.0,2,0,0.0,4,2.0 -3733,5669,2328.8312255690616,51.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20070.75,0.0,20290.0,3,9,7.0,2,1.0 -3734,5670,3369.4586453025863,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7132.0,0.0,0.0,3,9,7.0,1,0.0 -3735,5671,2857.4004875236724,32.0,112,3950.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13169.0,0.0,6800.0,3,7,0.0,1,1.0 -3736,5672,2650.5322214780663,47.0,111,0.0,56,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,88704.55,0.0,80090.0,2,4,4.0,4,2.0 -3737,5673,6933.704530528932,46.0,120,0.0,62,1.0,1.0,4.0,2.1,0.0,320.0,0.0,0.0,0.0,0.0,21640.5,2480.0,15440.0,3,0,3.0,4,1.0 -3738,5674,1539.006006369164,52.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42722.3,0.0,54090.0,1,10,4.0,1,1.0 -3739,5675,1873.3636655110372,50.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25834.45,0.0,25800.0,1,8,7.0,2,1.0 -3740,5677,2471.3191516971465,78.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33860.0,0.0,0.0,32753.8,0.0,0.0,1,9,2.0,3,0.0 -3741,5678,2719.8798383980607,68.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26530.0,0.0,0.0,26379.75,0.0,0.0,1,1,2.0,3,0.0 -3742,5679,3145.011567124568,26.0,300,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,10.0,0.0,9183.0,0.0,0.0,3,0,0.0,1,1.0 -3743,5680,2674.845577213513,23.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32238.65,0.0,36090.0,3,9,7.0,1,1.0 -3744,5684,2122.4567379164796,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18890.0,0.0,0.0,18924.0,0.0,0.0,3,8,6.0,3,0.0 -3745,5686,2691.7877657789613,78.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11770.0,0.0,0.0,12490.0,0.0,0.0,3,0,1.0,1,0.0 -3746,5687,1910.5714818312542,38.0,120,0.0,54,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,40376.65,0.0,34130.0,2,0,0.0,4,2.0 -3747,5688,3453.0710712636865,27.0,111,840.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,310.0,0.0,0.0,29985.0,0.0,29190.0,3,8,7.0,3,2.0 -3748,5689,2994.5565575935393,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23080.0,0.0,0.0,21719.5,0.0,0.0,1,8,7.0,1,0.0 -3749,5692,1453.4852100618623,51.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37315.3,0.0,40580.0,2,8,7.0,3,2.0 -3750,5694,2251.6372687691733,35.0,111,1450.0,56,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37619.3,0.0,30140.0,3,4,3.0,4,2.0 -3751,5697,2465.4569919532587,39.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37975.2,0.0,39160.0,1,10,0.0,4,2.0 -3752,5699,1811.7716779630016,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20550.0,0.0,0.0,20804.0,0.0,0.0,1,4,4.0,3,0.0 -3753,5700,1003.4050575115458,54.0,112,0.0,47,3,4.0,5.0,2.8,0.0,0.0,0.0,2240.0,0.0,0.0,93570.25,0.0,95200.0,1,10,0.0,5,4.0 -3754,5701,3044.750127291508,52.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24766.5,0.0,27440.0,3,8,6.0,1,1.0 -3755,5702,3659.999987178252,21.0,111,1020.0,62,1.0,1.0,4.0,2.1,0.0,4500.0,0.0,0.0,0.0,0.0,30168.75,590.0,13920.0,3,7,6.0,4,1.0 -3756,5703,3739.448061075515,22.0,111,0.0,46,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10454.0,0.0,5510.0,3,9,7.0,3,1.0 -3757,5704,4547.348584907484,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15890.0,0.0,0.0,16154.0,0.0,0.0,3,4,3.0,3,0.0 -3758,5706,3024.9069822391975,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33180.0,25.0,0.0,29250.2,0.0,0.0,3,10,8.0,1,0.0 -3759,5707,2730.5450235257276,45.0,111,0.0,22,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,48180.05,0.0,24940.0,2,7,5.0,4,2.0 -3760,5708,2853.5284647745634,55.0,111,0.0,78,0.0,0.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,12750.15,0.0,0.0,3,6,5.0,1,0.0 -3761,5710,2010.4452376357046,63.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,55510.0,970.0,0.0,68161.85,0.0,17980.0,1,10,8.0,4,1.0 -3762,5711,3465.528000583284,87.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17680.0,0.0,0.0,19146.0,0.0,0.0,3,6,5.0,1,0.0 -3763,5712,1575.315192642273,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28230.0,0.0,0.0,57959.15,0.0,0.0,1,8,6.0,3,0.0 -3764,5713,4000.928336326145,32.0,111,13400.0,85,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14775.0,0.0,0.0,3,8,7.0,3,0.0 -3765,5714,3285.743939561304,40.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25295.25,0.0,22400.0,2,4,3.0,1,1.0 -3766,5716,4603.753751293806,36.0,221,0.0,67,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17940.0,0.0,18990.0,5,1,2.0,1,1.0 -3767,5717,1888.9395987101564,50.0,111,5520.0,22,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,7619.65,0.0,0.0,1,9,7.0,4,2.0 -3768,5718,2715.56843342661,51.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22519.1,0.0,23450.0,3,10,8.0,1,1.0 -3769,5720,3134.01524047767,72.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,6120.0,2320.0,0.0,0.0,8440.0,0.0,0.0,1,9,7.0,1,0.0 -3770,5721,3115.1998622844526,56.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16688.3,0.0,17930.0,3,10,8.0,1,1.0 -3771,5724,1794.3594219159625,56.0,112,10550.0,48,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,101.0,0.0,40585.05,0.0,27540.0,1,7,1.0,3,2.0 -3772,5728,3971.696989941325,71.0,111,5600.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,12860.0,0.0,0.0,22392.0,0.0,0.0,3,9,7.0,5,1.0 -3773,5729,3098.4970254426826,36.0,111,400.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33491.5,0.0,34820.0,2,6,5.0,4,2.0 -3774,5731,1782.7296443814182,35.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,2370.0,0.0,0.0,0.0,0.0,17512.0,0.0,0.0,3,8,7.0,2,0.0 -3775,5732,871.3599765627708,53.0,112,0.0,47,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,21582.7,0.0,15200.0,2,10,0.0,4,1.0 -3776,5737,2213.950337028688,86.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29700.0,0.0,0.0,23680.85,0.0,0.0,1,7,6.0,1,0.0 -3777,5738,2031.5067978201193,56.0,112,7700.0,48,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,70.0,0.0,59275.25,0.0,50620.0,1,8,0.0,4,3.0 -3778,5739,2626.7919101133866,56.0,111,1420.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21904.25,0.0,18520.0,3,9,7.0,1,1.0 -3779,5741,2073.3455689692164,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28520.0,0.0,0.0,26313.05,0.0,0.0,2,7,5.0,1,0.0 -3780,5742,1894.1801640003252,41.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,4.0,0.0,44349.2,0.0,44140.0,2,8,7.0,4,2.0 -3781,5744,2248.7604237126793,24.0,111,280.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29113.6,0.0,28350.0,3,8,7.0,5,2.0 -3782,5745,2117.2276948418667,65.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35560.0,0.0,0.0,33295.8,0.0,0.0,1,0,0.0,3,0.0 -3783,5747,3613.763258952897,46.0,221,1370.0,46,2.0,2.0,3.0,2.0,0.0,230.0,0.0,0.0,0.0,0.0,64856.6,610.0,61080.0,2,1,2.0,4,2.0 -3784,5748,2586.1543795732614,30.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,11.0,0.0,45019.85,0.0,50790.0,3,10,8.0,1,1.0 -3785,5749,3114.340648041459,51.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31313.35,0.0,29160.0,3,9,7.0,4,1.0 -3786,5752,3199.435663107876,29.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16576.65,0.0,17260.0,3,9,7.0,1,1.0 -3787,5753,3105.259465477699,39.0,111,0.0,31,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,267582.0,0.0,310210.0,1,9,7.0,4,1.0 -3788,5754,3184.6060364423524,55.0,111,720.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14253.65,0.0,12330.0,3,9,7.0,1,1.0 -3789,5755,1669.594653653632,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39890.0,0.0,0.0,41075.55,0.0,2850.0,1,9,0.0,3,0.0 -3790,5757,2066.3721096644135,51.0,111,0.0,42,3,4.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,54876.95,0.0,55770.0,5,10,8.0,4,4.0 -3791,5760,1713.5711956293194,64.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30170.0,0.0,0.0,44576.2,0.0,0.0,1,6,4.0,1,0.0 -3792,5762,1151.4259369538393,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32460.0,3.0,0.0,31802.25,0.0,0.0,1,8,7.0,3,0.0 -3793,5765,2284.961719570432,60.0,221,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34389.75,0.0,35910.0,1,1,2.0,2,2.0 -3794,5768,2759.039084580612,57.0,300,21680.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13780.0,0.0,0.0,42275.55,0.0,0.0,1,0,0.0,3,0.0 -3795,5769,4103.005441554829,81.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8250.0,0.0,0.0,8250.0,0.0,0.0,5,0,2.0,1,0.0 -3796,5770,1659.6469345458552,54.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36034.1,0.0,23750.0,2,8,7.0,3,2.0 -3797,5771,1414.5643147165445,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43620.0,118.0,0.0,40689.2,0.0,0.0,1,6,4.0,3,0.0 -3798,5773,2579.152219615838,26.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38937.8,0.0,39950.0,3,10,1.0,3,2.0 -3799,5774,967.5454947795001,53.0,111,2610.0,68,2.0,2.0,3.0,2.0,0.0,150.0,0.0,0.0,0.0,0.0,34497.55,2230.0,25150.0,3,5,4.0,2,2.0 -3800,5775,3241.700853388622,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1260.0,0.0,0.0,33660.0,0.0,39200.0,1,10,8.0,1,0.0 -3801,5776,2769.3940020937753,32.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24185.3,0.0,25990.0,3,5,4.0,1,1.0 -3802,5780,989.4990559385787,83.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21550.0,0.0,0.0,20947.8,0.0,0.0,1,3,4.0,3,0.0 -3803,5782,1443.1419571101917,45.0,112,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,62721.5,0.0,13610.0,2,7,0.0,4,2.0 -3804,5783,810.3347901642567,78.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36370.0,0.0,0.0,37531.6,0.0,0.0,1,0,0.0,3,0.0 -3805,5784,2671.866568060387,56.0,111,0.0,35,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24341.25,0.0,13640.0,2,10,8.0,5,1.0 -3806,5786,2571.4407528809447,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19500.0,0.0,0.0,18858.9,0.0,0.0,1,10,8.0,3,0.0 -3807,5787,3395.278692260091,29.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,42.0,0.0,77781.95,0.0,0.0,2,9,7.0,3,2.0 -3808,5788,1559.8802939108966,58.0,120,0.0,63,3,4.0,4.0,2.5,0.0,8860.0,0.0,0.0,0.0,0.0,68124.05,1010.0,57890.0,1,0,0.0,4,4.0 -3809,5790,3463.0794780381816,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11400.0,0.0,0.0,11692.0,0.0,0.0,1,8,6.0,1,0.0 -3810,5791,3128.133846460367,82.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17740.0,0.0,0.0,17023.0,0.0,0.0,1,0,0.0,1,0.0 -3811,5792,1101.8568568686176,37.0,112,0.0,37,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,38636.5,0.0,29220.0,2,9,2.0,4,1.0 -3812,5793,2044.286738062965,30.0,111,9350.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16382.25,0.0,10150.0,1,9,7.0,1,1.0 -3813,5795,2740.891136107437,62.0,111,0.0,63,2.0,2.0,6.0,3.3,0.0,0.0,0.0,1050.0,0.0,0.0,34178.0,0.0,21770.0,3,10,8.0,4,2.0 -3814,5796,2606.3628062322696,52.0,111,0.0,42,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,49.0,0.0,57110.8,0.0,60810.0,1,9,7.0,4,3.0 -3815,5797,1531.4655238909663,44.0,112,0.0,34,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,5.0,0.0,52004.75,0.0,45950.0,2,8,1.0,2,1.0 -3816,5799,1940.5969851516143,50.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33216.0,0.0,34190.0,3,7,5.0,3,2.0 -3817,5801,1594.1087485640226,44.0,112,5520.0,52,3,2.0,3.0,2.0,0.0,4400.0,0.0,0.0,0.0,0.0,25982.75,0.0,16350.0,5,6,0.0,4,3.0 -3818,5802,2953.4594266760455,81.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,5190.0,6080.0,0.0,0.0,11270.0,0.0,0.0,5,6,0.0,1,0.0 -3819,5803,3415.2610237086556,26.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,22700.65,0.0,24690.0,3,9,7.0,1,1.0 -3820,5805,2245.0307521596274,45.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,47350.25,0.0,48770.0,2,9,7.0,4,2.0 -3821,5806,3223.1395974231946,45.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16491.65,0.0,17580.0,3,10,8.0,1,1.0 -3822,5807,1910.7549648173297,71.0,112,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14940.0,0.0,0.0,15204.2,0.0,0.0,1,6,0.0,3,0.0 -3823,5810,3447.156281923046,25.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18907.4,0.0,1740.0,3,9,7.0,1,1.0 -3824,5812,953.3506731250526,48.0,112,0.0,68,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36828.55,0.0,35680.0,1,9,1.0,4,2.0 -3825,5813,2677.053694648728,33.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17621.4,0.0,19880.0,2,6,4.0,1,1.0 -3826,5815,1744.6069747726665,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29050.0,0.0,0.0,26333.3,0.0,0.0,1,9,7.0,1,0.0 -3827,5816,1772.979297293349,67.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53780.0,0.0,0.0,48879.2,0.0,0.0,1,0,0.0,3,0.0 -3828,5818,3170.2058194204474,41.0,111,230.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41580.7,0.0,40640.0,3,10,8.0,4,2.0 -3829,5821,1390.8096861040092,55.0,400,4140.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29029.55,0.0,26810.0,1,0,0.0,3,2.0 -3830,5823,2053.984837226906,63.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21450.0,0.0,0.0,19738.05,0.0,0.0,1,6,0.0,1,0.0 -3831,5825,1263.6417793388694,48.0,211,0.0,46,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53687.35,0.0,41110.0,1,1,2.0,2,1.0 -3832,5826,2218.7515721976206,33.0,112,2220.0,38,2.0,3.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,61017.0,0.0,57890.0,5,7,0.0,3,2.0 -3833,5828,1436.8839547461127,41.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,11338.35,0.0,1270.0,2,9,7.0,2,1.0 -3834,5831,3006.545391303482,35.0,111,5240.0,22,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15165.55,0.0,4240.0,3,9,7.0,2,1.0 -3835,5832,3566.7412100322836,77.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15380.0,7.0,0.0,15391.0,0.0,0.0,3,3,0.0,1,0.0 -3836,5833,3534.5963289313386,79.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14950.0,0.0,0.0,12131.9,0.0,0.0,1,9,7.0,3,0.0 -3837,5835,2284.995886571749,53.0,300,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38674.2,0.0,38040.0,3,0,0.0,4,2.0 -3838,5836,2091.776651472727,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14240.0,0.0,0.0,14160.5,0.0,0.0,1,9,7.0,1,0.0 -3839,5838,2314.440450157203,89.0,222,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23320.0,0.0,0.0,23998.0,0.0,0.0,2,1,0.0,5,0.0 -3840,5839,3238.3763996107646,60.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21560.0,0.0,0.0,41604.6,0.0,23770.0,1,9,7.0,3,1.0 -3841,5840,2136.770033942054,66.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27670.0,0.0,0.0,27006.2,0.0,0.0,1,0,0.0,3,0.0 -3842,5841,3376.4456103907864,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29670.0,658.0,0.0,29130.35,0.0,0.0,1,10,8.0,1,0.0 -3843,5842,2499.3436068342644,41.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47727.0,0.0,47750.0,2,9,7.0,4,2.0 -3844,5845,1859.109111570612,48.0,111,0.0,21,1.0,0.0,6.0,3.1,0.0,8300.0,0.0,0.0,0.0,0.0,23478.0,0.0,0.0,3,10,8.0,4,1.0 -3845,5846,3414.0233061131066,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9509.15,0.0,1750.0,3,9,7.0,1,0.0 -3846,5849,4017.642779982278,41.0,111,0.0,45,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19909.65,0.0,18220.0,3,9,7.0,2,1.0 -3847,5850,1798.1507864742719,41.0,111,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,11440.0,0.0,0.0,34140.35,0.0,19510.0,2,8,7.0,4,2.0 -3848,5851,3940.1697219218718,25.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24741.7,0.0,25540.0,3,4,3.0,3,1.0 -3849,5852,3237.6523764480535,52.0,111,7750.0,35,1.0,0.0,2.0,1.5,0.0,1490.0,0.0,0.0,0.0,0.0,13292.3,0.0,120.0,3,10,8.0,2,1.0 -3850,5853,3652.1468697018404,25.0,111,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,10800.0,0.0,0.0,25781.8,0.0,15820.0,3,10,8.0,5,1.0 -3851,5854,1953.5050216087957,66.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22190.0,0.0,0.0,32091.4,0.0,0.0,1,8,0.0,3,0.0 -3852,5855,2736.9749999924193,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20970.0,0.0,0.0,21492.5,0.0,0.0,1,10,8.0,1,0.0 -3853,5857,1987.0347438453014,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,26570.0,0.0,0.0,42852.8,0.0,20510.0,2,6,5.0,1,1.0 -3854,5860,3116.7221836920635,75.0,120,10020.0,72,2.0,1.0,3.0,2.0,0.0,0.0,0.0,17460.0,0.0,0.0,32066.95,0.0,5710.0,1,0,0.0,5,2.0 -3855,5861,3085.9868921575962,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49590.0,0.0,0.0,40725.4,0.0,0.0,3,10,8.0,3,0.0 -3856,5862,2140.7261722764865,40.0,111,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43748.55,0.0,37420.0,3,4,4.0,4,2.0 -3857,5863,2651.8166598748503,42.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60334.25,0.0,61880.0,2,9,3.0,4,2.0 -3858,5865,1731.4859692935063,36.0,112,9560.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36981.25,0.0,23520.0,3,8,0.0,4,2.0 -3859,5866,2011.397821059268,39.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37155.7,0.0,46140.0,1,10,8.0,3,2.0 -3860,5869,2870.6589738198263,39.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18252.35,0.0,18680.0,2,0,0.0,1,1.0 -3861,5871,2439.768761042952,65.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23200.0,0.0,0.0,21640.0,0.0,0.0,1,6,0.0,3,0.0 -3862,5872,2300.568146177607,57.0,111,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,17570.0,0.0,0.0,46056.05,0.0,30940.0,2,7,5.0,4,2.0 -3863,5874,1566.3954536766635,37.0,111,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,66085.0,66721.7,0.0,0.0,2,7,6.0,4,2.0 -3864,5876,1950.0034415175128,53.0,112,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,34440.0,0.0,0.0,63857.35,0.0,33820.0,1,8,0.0,3,1.0 -3865,5877,4416.241556759004,40.0,221,0.0,64,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22201.05,0.0,11460.0,3,1,2.0,4,1.0 -3866,5879,2035.702129719059,35.0,112,0.0,54,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,46748.6,0.0,46050.0,3,10,0.0,4,3.0 -3867,5880,1772.657487839401,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22150.0,0.0,0.0,20744.85,0.0,0.0,1,9,7.0,1,0.0 -3868,5881,2358.068255121354,26.0,400,11920.0,69,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24208.0,0.0,12130.0,3,0,0.0,3,2.0 -3869,5882,5058.95189235021,23.0,111,5610.0,63,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23176.55,0.0,19550.0,2,10,8.0,3,2.0 -3870,5883,4239.705207816738,70.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19540.0,0.0,0.0,19561.8,0.0,0.0,5,0,0.0,1,0.0 -3871,5884,2837.6851772782275,44.0,111,0.0,22,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8188.0,0.0,0.0,3,9,7.0,1,1.0 -3872,5885,1936.6468849572132,48.0,400,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40129.85,0.0,26730.0,1,0,0.0,4,2.0 -3873,5886,5449.566155989447,41.0,221,8300.0,67,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24924.25,0.0,16590.0,3,1,2.0,4,2.0 -3874,5888,3151.3967791841656,50.0,111,13200.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,11.0,0.0,12706.75,0.0,720.0,1,9,7.0,1,1.0 -3875,5889,3199.6729180229854,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16350.0,0.0,0.0,15043.05,0.0,0.0,1,9,7.0,1,0.0 -3876,5891,3719.32259786368,22.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,5750.0,0.0,0.0,15851.45,0.0,2930.0,3,9,7.0,3,0.0 -3877,5893,2853.1310746105396,29.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,156.0,0.0,47572.5,0.0,41710.0,2,8,0.0,4,2.0 -3878,5895,3263.7156177194192,47.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18717.65,0.0,19130.0,3,8,6.0,1,1.0 -3879,5897,2844.697894213307,81.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34120.0,60.0,0.0,40305.7,0.0,0.0,5,8,6.0,3,0.0 -3880,5899,1237.6681660008878,47.0,211,2300.0,43,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36603.3,0.0,32010.0,2,3,3.0,2,2.0 -3881,5900,2579.197431214141,42.0,112,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58834.45,0.0,58200.0,2,10,0.0,4,2.0 -3882,5902,2117.09273506288,43.0,400,0.0,11,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,62435.5,0.0,60.0,2,0,0.0,4,2.0 -3883,5903,1575.6750137242545,60.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,3820.0,0.0,0.0,27593.65,0.0,25510.0,1,7,6.0,3,1.0 -3884,5904,4275.560606866849,67.0,112,0.0,75,2.0,2.0,4.0,2.5,0.0,0.0,0.0,23080.0,0.0,0.0,43854.4,0.0,22840.0,1,9,2.0,4,2.0 -3885,5905,3152.6095839097325,44.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24683.6,0.0,19200.0,3,9,7.0,2,2.0 -3886,5906,2899.9147791964688,54.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3389.65,0.0,0.0,2,6,4.0,1,1.0 -3887,5907,2987.1635072320364,73.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26070.0,0.0,0.0,41326.65,0.0,0.0,1,5,0.0,3,0.0 -3888,5908,1421.822656868003,59.0,112,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,16770.0,0.0,0.0,45347.95,0.0,31510.0,1,8,0.0,4,1.0 -3889,5910,1751.082526710062,39.0,120,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,2.0,0.0,60400.1,0.0,60190.0,2,0,0.0,4,2.0 -3890,5911,3226.7093436448245,40.0,111,6560.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31968.05,0.0,28180.0,2,10,8.0,4,2.0 -3891,5912,3385.064790578418,61.0,111,3410.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18290.0,0.0,0.0,36641.3,0.0,12090.0,2,9,7.0,2,1.0 -3892,5913,2613.967580537325,43.0,112,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14170.0,0.0,16189.0,29584.05,0.0,0.0,1,8,1.0,2,1.0 -3893,5914,3410.804916248127,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4463.95,0.0,0.0,3,9,7.0,1,0.0 -3894,5915,2055.4074759043187,55.0,112,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,79392.6,0.0,86930.0,1,9,0.0,4,2.0 -3895,5916,2795.5857340760485,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9310.0,0.0,0.0,11674.0,0.0,0.0,3,10,8.0,1,0.0 -3896,5918,2155.043684211465,68.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20900.0,0.0,0.0,21215.6,0.0,0.0,3,0,0.0,3,0.0 -3897,5919,2025.1948372976692,53.0,400,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23438.05,0.0,23850.0,3,0,0.0,1,1.0 -3898,5921,1379.6457180097689,50.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59416.15,0.0,63320.0,1,7,0.0,3,2.0 -3899,5922,5432.7408419802805,29.0,221,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23275.55,0.0,24460.0,3,1,2.0,1,1.0 -3900,5926,2645.553792849221,47.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26569.8,0.0,28360.0,3,9,7.0,1,1.0 -3901,5927,3875.1449269346617,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13070.0,0.0,0.0,13143.9,0.0,0.0,1,9,7.0,1,0.0 -3902,5928,3140.2980350108764,86.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17490.0,0.0,0.0,15942.3,0.0,0.0,1,7,5.0,1,0.0 -3903,5931,3099.3718954770607,50.0,111,410.0,56,1.0,1.0,3.0,2.0,8380.0,0.0,0.0,0.0,8.0,0.0,22963.3,0.0,2350.0,3,10,8.0,2,1.0 -3904,5933,2302.3323487131347,72.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22160.0,132.0,0.0,26402.45,0.0,0.0,1,0,0.0,3,0.0 -3905,5934,4117.366428161898,82.0,221,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7950.0,0.0,0.0,7950.0,0.0,0.0,1,1,2.0,1,0.0 -3906,5936,3559.5500270718294,25.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16559.25,0.0,7360.0,3,8,6.0,3,0.0 -3907,5942,1982.022484697379,35.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,29.0,0.0,51801.65,0.0,48850.0,1,8,7.0,4,2.0 -3908,5943,2596.207395260772,48.0,111,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,55298.1,0.0,59980.0,1,10,8.0,4,2.0 -3909,5945,3746.46153545456,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26320.0,0.0,0.0,26017.7,0.0,0.0,3,8,6.0,3,0.0 -3910,5946,1330.9638346738266,32.0,111,0.0,37,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,65545.8,0.0,43560.0,3,8,7.0,4,1.0 -3911,5947,1951.3314130969552,63.0,112,2930.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,18170.0,0.0,0.0,24180.15,0.0,10780.0,1,10,0.0,3,2.0 -3912,5950,3453.81541743408,50.0,112,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38042.65,0.0,40130.0,2,7,0.0,3,2.0 -3913,5952,1994.3202868700766,67.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20350.0,995.0,0.0,20649.85,0.0,0.0,1,0,0.0,1,0.0 -3914,5954,2319.8548606358395,42.0,111,5520.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8378.3,0.0,40.0,3,6,5.0,1,1.0 -3915,5955,2854.651395247617,82.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19110.0,0.0,0.0,21093.15,0.0,0.0,3,10,4.0,1,0.0 -3916,5956,1420.3152957195437,49.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,43.0,0.0,118299.7,0.0,142490.0,2,8,7.0,4,2.0 -3917,5958,1505.422561686407,52.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21109.45,0.0,22180.0,2,0,0.0,1,1.0 -3918,5959,4697.973529702731,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15820.0,0.0,0.0,19614.05,0.0,0.0,1,9,7.0,1,0.0 -3919,5960,999.83510915517,47.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20418.85,0.0,21950.0,3,0,0.0,1,1.0 -3920,5962,1837.4254828530798,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22350.0,0.0,0.0,21772.25,0.0,0.0,1,10,0.0,3,0.0 -3921,5963,6319.858804684103,28.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20824.45,0.0,24360.0,3,9,3.0,3,2.0 -3922,5965,1760.3929512827913,64.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22050.0,0.0,0.0,21494.45,0.0,0.0,3,3,4.0,3,0.0 -3923,5966,3398.4733498464966,25.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31046.75,0.0,33280.0,3,10,8.0,1,1.0 -3924,5968,2918.646954501131,31.0,111,0.0,85,0.0,0.0,1.0,1.0,7400.0,0.0,0.0,4440.0,12.0,0.0,17206.0,0.0,0.0,3,6,5.0,1,0.0 -3925,5969,2433.307099669563,41.0,112,0.0,67,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33900.6,0.0,32370.0,2,4,0.0,4,2.0 -3926,5971,2491.841612236552,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32700.0,0.0,0.0,34024.65,0.0,70.0,1,10,0.0,3,0.0 -3927,5972,1439.2524221018605,34.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47222.85,0.0,49160.0,2,7,6.0,3,2.0 -3928,5973,4425.999709778286,41.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27111.5,0.0,28340.0,2,10,8.0,2,1.0 -3929,5974,4597.860069073002,90.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18650.0,0.0,0.0,19301.7,0.0,0.0,5,3,3.0,1,0.0 -3930,5975,1577.1758213988385,44.0,111,0.0,68,1.0,1.0,3.0,1.8,0.0,3810.0,0.0,0.0,0.0,0.0,17475.85,2100.0,4650.0,3,7,5.0,2,1.0 -3931,5976,3943.7653282163205,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,1770.0,6970.0,0.0,0.0,8740.0,0.0,0.0,5,9,7.0,1,0.0 -3932,5977,4328.1106136294775,62.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33050.0,0.0,0.0,32066.8,0.0,0.0,3,10,8.0,3,0.0 -3933,5979,3165.448791918184,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7760.0,0.0,0.0,10280.0,0.0,0.0,3,10,8.0,1,0.0 -3934,5980,1619.4836067866224,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22740.0,0.0,0.0,23576.35,0.0,0.0,1,9,7.0,3,0.0 -3935,5981,1723.7136837408123,58.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21000.0,26.0,0.0,20487.3,0.0,0.0,1,7,5.0,1,0.0 -3936,5983,1000.6204459628108,54.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,29178.2,0.0,25490.0,1,4,0.0,4,2.0 -3937,5984,1912.21920084216,41.0,300,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46779.9,0.0,42330.0,2,0,0.0,4,2.0 -3938,5985,2001.122813249662,35.0,120,7890.0,38,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,58223.45,0.0,40530.0,2,0,0.0,4,1.0 -3939,5987,3121.67399229697,47.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22965.95,0.0,21800.0,3,10,8.0,2,1.0 -3940,5988,1415.7991900415752,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45190.0,0.0,0.0,41271.85,0.0,0.0,1,6,0.0,3,0.0 -3941,5989,1449.154629983816,57.0,400,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12210.0,0.0,0.0,23015.85,0.0,11780.0,1,0,0.0,3,1.0 -3942,5993,2563.620351250101,76.0,111,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,0.0,35070.0,0.0,0.0,34271.65,0.0,0.0,1,10,8.0,5,0.0 -3943,5995,2474.181060108843,45.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36713.05,0.0,38640.0,2,8,0.0,4,2.0 -3944,5996,3549.9513447228064,41.0,111,0.0,22,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35795.65,0.0,0.0,3,10,8.0,4,1.0 -3945,5997,1927.567079402621,75.0,211,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7360.0,0.0,0.0,-0.0,0.0,0.0,5,3,4.0,1,0.0 -3946,5998,2508.250469929492,24.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20049.3,0.0,21540.0,3,7,5.0,1,1.0 -3947,6000,1935.053007475958,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3770.0,0.0,0.0,20803.95,0.0,0.0,1,8,7.0,1,0.0 -3948,6004,4102.031321543864,44.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15239.0,0.0,15900.0,3,10,8.0,1,1.0 -3949,6007,1851.1545019912908,63.0,211,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,15910.0,0.0,0.0,59904.75,0.0,53200.0,2,1,3.0,3,2.0 -3950,6008,993.6324504750588,51.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39919.45,0.0,42960.0,1,8,1.0,3,2.0 -3951,6009,1867.3896773515025,46.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52962.15,0.0,48680.0,1,8,6.0,2,1.0 -3952,6012,2342.4343928308713,63.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13440.0,0.0,0.0,13504.25,0.0,0.0,1,0,0.0,1,0.0 -3953,6014,4609.4938050118535,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8890.0,3.0,0.0,12087.0,0.0,0.0,3,8,7.0,1,0.0 -3954,6015,1299.5331807857935,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57600.0,0.0,0.0,53853.9,0.0,0.0,1,3,0.0,3,0.0 -3955,6016,2790.0282964764806,83.0,400,0.0,78,0.0,1.0,1.0,1.0,0.0,0.0,0.0,10860.0,0.0,0.0,10921.0,0.0,0.0,5,0,1.0,1,0.0 -3956,6017,3435.41858386274,61.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,47430.75,0.0,57100.0,5,9,7.0,1,1.0 -3957,6018,3136.612646025102,32.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26317.95,0.0,20500.0,3,6,0.0,4,2.0 -3958,6019,2227.703703038219,84.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13620.0,0.0,0.0,13393.15,0.0,0.0,1,4,3.0,1,0.0 -3959,6020,947.7500217186911,31.0,300,6980.0,56,2.0,1.0,4.0,2.3,0.0,0.0,2400.0,5830.0,0.0,0.0,57304.2,0.0,28670.0,2,0,0.0,5,2.0 -3960,6022,1703.5806120746668,44.0,221,4280.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,18915.85,640.0,11020.0,2,1,1.0,2,1.0 -3961,6023,2953.2703443064647,40.0,111,0.0,56,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,46601.0,0.0,31100.0,3,8,6.0,4,2.0 -3962,6024,5676.997299352375,84.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9800.0,0.0,0.0,13342.9,0.0,0.0,1,6,4.0,1,0.0 -3963,6025,1819.0745396973232,82.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28600.0,0.0,0.0,28915.75,0.0,0.0,3,0,0.0,3,0.0 -3964,6027,1307.6077800933163,43.0,112,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,141532.25,0.0,156110.0,1,7,0.0,4,2.0 -3965,6028,2172.2663498649667,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28240.0,4.0,0.0,28066.3,0.0,0.0,1,8,6.0,1,0.0 -3966,6029,836.1155016566448,59.0,112,0.0,77,0.0,0.0,3.0,2.0,0.0,0.0,0.0,23200.0,245.0,0.0,78688.65,0.0,48350.0,1,8,2.0,5,0.0 -3967,6030,2800.673265242002,25.0,111,4690.0,54,2.0,1.0,4.0,2.1,0.0,420.0,0.0,0.0,0.0,0.0,28436.15,780.0,17910.0,3,9,7.0,4,2.0 -3968,6032,2197.736332837261,56.0,112,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,8.0,0.0,44831.85,0.0,41960.0,1,9,3.0,4,2.0 -3969,6033,3091.1729713573486,59.0,111,0.0,78,0.0,0.0,1.0,1.0,650.0,0.0,0.0,6350.0,0.0,0.0,9882.0,0.0,0.0,3,9,7.0,1,0.0 -3970,6034,1958.5575037729195,29.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19546.55,1570.0,13630.0,3,7,5.0,2,1.0 -3971,6037,1584.0816441089582,66.0,112,0.0,64,1.0,0.0,1.0,1.0,0.0,0.0,0.0,18940.0,0.0,0.0,25307.75,0.0,8380.0,1,8,0.0,1,1.0 -3972,6038,7063.017232516477,32.0,112,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,20048.5,0.0,11610.0,3,9,1.0,4,1.0 -3973,6040,1767.4444678451246,48.0,400,0.0,54,1.0,1.0,1.0,1.0,0.0,1000.0,0.0,0.0,0.0,0.0,7069.45,2140.0,3960.0,5,0,0.0,1,1.0 -3974,6041,3543.327926213236,33.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41300.05,0.0,43680.0,2,10,8.0,3,2.0 -3975,6042,2375.0074186017755,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19630.0,0.0,0.0,18081.7,0.0,0.0,1,8,7.0,1,0.0 -3976,6044,1464.3731414485558,39.0,221,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35898.75,0.0,34900.0,2,1,3.0,4,2.0 -3977,6045,1631.543187424922,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30560.0,0.0,0.0,27748.25,0.0,0.0,1,9,7.0,3,0.0 -3978,6047,2720.5612910203704,68.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,13860.0,18680.0,0.0,0.0,27917.65,0.0,0.0,1,0,0.0,3,0.0 -3979,6049,2693.197679000504,57.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13470.0,0.0,0.0,17541.9,0.0,4530.0,3,6,5.0,3,1.0 -3980,6050,3329.556438122758,49.0,111,13580.0,35,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40074.1,0.0,28500.0,1,10,8.0,2,1.0 -3981,6051,2652.755674895268,37.0,400,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40543.9,0.0,41740.0,2,0,0.0,4,2.0 -3982,6054,3709.3668359675376,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2520.0,0.0,0.0,3,9,7.0,1,0.0 -3983,6055,1443.7636802718691,63.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,93221.55,0.0,111660.0,2,9,7.0,3,2.0 -3984,6056,3893.0335124733847,39.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,41.0,0.0,993.0,0.0,0.0,3,10,8.0,1,0.0 -3985,6057,2853.713731970342,55.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9875.0,0.0,9800.0,5,0,0.0,1,1.0 -3986,6058,6284.139678284367,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17840.0,0.0,0.0,17522.0,0.0,0.0,3,8,6.0,1,0.0 -3987,6059,1355.0523396638675,35.0,112,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57060.2,0.0,48230.0,2,8,0.0,4,2.0 -3988,6060,5511.935704373763,23.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17576.7,0.0,17110.0,3,8,7.0,5,1.0 -3989,6061,1983.4649634819846,62.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10970.0,0.0,0.0,10760.1,0.0,0.0,1,0,0.0,1,0.0 -3990,6063,4987.0647575659295,23.0,120,0.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13127.0,0.0,12720.0,3,0,2.0,3,2.0 -3991,6064,2554.591047835099,39.0,300,0.0,22,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,95.0,0.0,18719.65,0.0,7630.0,3,0,0.0,4,1.0 -3992,6065,4127.109872733635,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34710.0,0.0,0.0,30762.9,0.0,0.0,3,9,7.0,3,0.0 -3993,6066,1735.1857207120602,56.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11740.0,0.0,0.0,21961.0,0.0,10150.0,3,8,7.0,3,1.0 -3994,6070,1248.9582757862452,36.0,300,0.0,62,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,33442.1,0.0,22630.0,2,0,0.0,4,1.0 -3995,6071,1629.265219750215,76.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34710.0,0.0,0.0,33577.0,0.0,0.0,1,1,2.0,3,0.0 -3996,6073,3136.0228827914284,30.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,42283.6,0.0,32630.0,2,8,7.0,4,2.0 -3997,6074,3658.995784040016,28.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,3780.0,0.0,0.0,0.0,0.0,14676.0,1210.0,1480.0,3,4,3.0,2,1.0 -3998,6075,2712.733783752372,56.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36663.8,0.0,36950.0,3,9,7.0,3,2.0 -3999,6076,2565.9222522804375,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12880.0,0.0,0.0,14560.0,0.0,0.0,3,6,5.0,1,0.0 -4000,6077,4611.060398487159,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59710.0,0.0,0.0,54027.25,0.0,0.0,1,9,3.0,3,0.0 -4001,6078,1288.849325998223,62.0,112,0.0,74,1.0,1.0,4.0,2.3,0.0,0.0,0.0,26240.0,0.0,0.0,46317.7,0.0,19420.0,1,9,1.0,5,1.0 -4002,6079,1892.133464752929,30.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,18624.05,0.0,16510.0,3,9,7.0,4,1.0 -4003,6080,1579.0870239802757,38.0,112,0.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,59503.0,0.0,38530.0,2,9,1.0,4,2.0 -4004,6081,2123.9604167233333,46.0,111,0.0,68,1.0,0.0,3.0,1.8,0.0,2900.0,0.0,0.0,0.0,0.0,12048.0,290.0,0.0,3,7,5.0,2,1.0 -4005,6084,3603.747205695316,40.0,112,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44711.8,0.0,44270.0,2,10,4.0,4,2.0 -4006,6086,1280.7707993623485,64.0,111,41940.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47480.0,205.0,0.0,92171.0,0.0,0.0,1,10,8.0,3,0.0 -4007,6088,5135.826761382789,32.0,400,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19649.65,0.0,20780.0,3,0,0.0,1,1.0 -4008,6089,4532.239103317066,42.0,221,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46298.1,0.0,46160.0,2,1,2.0,4,2.0 -4009,6090,5607.803758008903,44.0,112,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,71.0,0.0,54700.0,0.0,54350.0,2,9,2.0,4,2.0 -4010,6092,5008.198965086354,48.0,111,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12940.0,0.0,0.0,43487.5,0.0,32780.0,3,6,4.0,3,1.0 -4011,6095,2065.8428507729523,47.0,111,950.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24690.9,0.0,21560.0,5,7,5.0,4,2.0 -4012,6099,1665.4991732802373,64.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25770.0,0.0,0.0,27422.45,0.0,0.0,1,8,1.0,1,0.0 -4013,6100,2931.8690623116263,31.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14359.35,0.0,14550.0,3,7,5.0,1,1.0 -4014,6101,3605.933108798806,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26750.0,157.0,0.0,25231.55,0.0,0.0,3,7,5.0,1,0.0 -4015,6104,1533.8986052482232,51.0,111,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,47798.7,0.0,44710.0,1,8,7.0,4,2.0 -4016,6106,2173.511007445462,48.0,111,0.0,33,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,63045.8,0.0,60740.0,2,10,8.0,4,2.0 -4017,6107,7729.405399219323,65.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,650.0,0.0,0.0,0.0,24167.15,0.0,24190.0,3,10,8.0,1,1.0 -4018,6108,6105.270352723746,41.0,112,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14906.2,0.0,15760.0,3,9,3.0,1,0.0 -4019,6109,1346.2817166629602,40.0,111,5380.0,64,1.0,0.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,36518.9,140.0,11560.0,3,8,7.0,4,1.0 -4020,6111,2634.4678881780915,69.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19520.0,0.0,0.0,19498.05,0.0,0.0,1,6,0.0,3,0.0 -4021,6112,4209.760219964419,87.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23720.0,0.0,0.0,23054.0,0.0,0.0,1,10,8.0,1,0.0 -4022,6113,3688.1248459427625,92.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,40850.0,335.0,0.0,40185.7,0.0,0.0,1,10,8.0,1,0.0 -4023,6115,2421.4841059327346,53.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18974.0,0.0,19840.0,1,9,7.0,1,1.0 -4024,6119,2239.9732885847106,62.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12300.0,0.0,0.0,12308.0,0.0,0.0,1,0,0.0,1,0.0 -4025,6120,2928.838943389856,70.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29530.0,0.0,0.0,28390.6,0.0,0.0,1,1,3.0,3,0.0 -4026,6121,2299.5992243265846,46.0,111,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47297.25,0.0,47560.0,2,8,6.0,4,2.0 -4027,6122,3328.36467634352,28.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15867.45,0.0,16790.0,3,9,7.0,1,1.0 -4028,6125,3619.201991475391,58.0,111,0.0,72,0.0,0.0,2.0,1.5,12860.0,0.0,0.0,2010.0,0.0,0.0,23639.85,0.0,3040.0,1,9,7.0,3,0.0 -4029,6126,4303.421323355467,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21170.0,0.0,0.0,20416.6,0.0,0.0,1,6,5.0,1,0.0 -4030,6127,2192.232821754361,47.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54999.55,0.0,63320.0,5,10,8.0,4,2.0 -4031,6128,1696.9373396327833,80.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23460.0,0.0,0.0,22859.9,0.0,0.0,1,1,1.0,1,0.0 -4032,6130,3024.2311988563797,68.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12670.0,0.0,0.0,12642.7,0.0,0.0,1,10,1.0,1,0.0 -4033,6131,3074.323622755034,23.0,111,0.0,85,1.0,0.0,4.0,2.1,0.0,7430.0,0.0,0.0,0.0,0.0,29508.0,0.0,14130.0,3,8,6.0,4,1.0 -4034,6132,1600.870622046061,43.0,112,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39110.75,0.0,40880.0,2,10,0.0,4,2.0 -4035,6134,5925.856189267746,29.0,120,0.0,47,1.0,1.0,4.0,2.3,0.0,0.0,0.0,13850.0,0.0,0.0,29480.0,0.0,13850.0,1,0,3.0,5,1.0 -4036,6135,3268.3605442103017,52.0,112,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18158.05,0.0,19180.0,2,10,0.0,1,1.0 -4037,6136,805.9304114645912,54.0,111,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,880.0,0.0,0.0,26180.4,0.0,22810.0,3,9,7.0,4,3.0 -4038,6137,2575.8661233872654,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37180.0,111.0,0.0,36755.8,0.0,0.0,1,9,7.0,3,0.0 -4039,6138,3486.9217467895132,54.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,56.0,0.0,57275.7,0.0,64530.0,1,6,4.0,3,2.0 -4040,6140,3406.211870403326,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17250.0,0.0,0.0,17245.9,0.0,0.0,3,9,7.0,1,0.0 -4041,6141,991.0116985547409,76.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22050.0,0.0,0.0,21596.85,0.0,0.0,1,8,1.0,3,0.0 -4042,6142,823.1808958252286,45.0,112,0.0,69,2.0,2.0,8.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,38661.0,0.0,27290.0,3,8,1.0,4,2.0 -4043,6144,4061.398970492643,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11260.0,0.0,0.0,11755.7,0.0,0.0,1,9,7.0,1,0.0 -4044,6145,2622.2635491416595,33.0,111,370.0,56,1.0,1.0,4.0,2.1,0.0,1200.0,0.0,0.0,0.0,0.0,19614.0,1050.0,9530.0,3,6,5.0,4,1.0 -4045,6146,1975.5945863371269,22.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5697.0,0.0,5690.0,5,5,4.0,1,1.0 -4046,6147,1475.5438055750694,58.0,120,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11009.75,0.0,11370.0,1,0,0.0,1,1.0 -4047,6151,3205.652446642307,54.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24926.5,0.0,27600.0,2,9,7.0,1,1.0 -4048,6152,2884.1001931444625,36.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20507.3,0.0,22250.0,2,7,1.0,3,2.0 -4049,6153,2378.285640332047,89.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20910.0,5.0,0.0,22523.7,0.0,0.0,1,8,7.0,1,0.0 -4050,6154,3860.6935876335456,49.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,2430.0,0.0,0.0,6.0,0.0,11365.0,0.0,7700.0,3,8,6.0,1,1.0 -4051,6156,3243.70469163901,64.0,111,0.0,75,0.0,0.0,3.0,2.0,8750.0,0.0,0.0,17480.0,0.0,0.0,27730.0,0.0,0.0,3,9,7.0,4,0.0 -4052,6158,4606.334460989281,76.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15430.0,44.0,0.0,15440.8,0.0,0.0,3,7,0.0,1,0.0 -4053,6160,2908.538502644243,69.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13690.0,0.0,0.0,13205.75,0.0,0.0,1,7,4.0,1,0.0 -4054,6161,1220.284915878772,52.0,112,3300.0,63,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61055.7,0.0,56400.0,2,9,0.0,4,4.0 -4055,6164,1993.3999216432578,57.0,400,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5018.0,0.0,0.0,3,0,0.0,3,2.0 -4056,6165,1369.6754615096438,57.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19340.0,0.0,0.0,21203.9,0.0,10.0,1,9,1.0,3,1.0 -4057,6167,1558.9905522528297,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43770.0,0.0,0.0,40281.2,0.0,0.0,1,9,7.0,3,0.0 -4058,6169,1181.5400752985279,48.0,111,1390.0,48,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,23882.0,92180.45,0.0,72890.0,1,7,5.0,4,3.0 -4059,6171,3016.396376562729,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13240.0,46.0,0.0,13373.1,0.0,0.0,1,9,7.0,1,0.0 -4060,6173,2859.997384788787,88.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12810.0,0.0,0.0,12986.2,0.0,0.0,1,0,0.0,1,0.0 -4061,6174,2153.5467189283286,75.0,120,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12040.0,0.0,0.0,11991.25,0.0,0.0,1,0,0.0,1,0.0 -4062,6175,2183.1516566186688,63.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17218.65,0.0,16540.0,1,8,0.0,1,1.0 -4063,6176,4104.544827342818,38.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29451.2,0.0,31680.0,3,8,6.0,1,1.0 -4064,6179,3642.006734970948,41.0,111,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49731.3,0.0,22210.0,3,10,8.0,4,2.0 -4065,6180,1058.6048146616224,55.0,111,0.0,43,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,51.0,0.0,128779.55,0.0,129370.0,1,10,8.0,4,2.0 -4066,6182,1968.1457879309144,57.0,300,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,47.0,0.0,49048.1,0.0,47620.0,1,0,0.0,1,1.0 -4067,6184,4839.708739249617,33.0,111,0.0,35,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,71828.2,0.0,76740.0,2,10,8.0,4,2.0 -4068,6185,2134.776030405712,34.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,64772.8,0.0,69240.0,2,9,7.0,4,2.0 -4069,6186,2130.710765868217,44.0,111,0.0,48,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46702.8,0.0,44200.0,3,8,7.0,2,1.0 -4070,6187,5649.120660486209,60.0,112,0.0,75,1.0,2.0,2.0,1.5,0.0,0.0,0.0,21290.0,0.0,0.0,39786.55,0.0,22110.0,1,9,1.0,3,1.0 -4071,6188,2517.5831672773757,45.0,111,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,56776.7,0.0,61990.0,2,9,7.0,4,2.0 -4072,6189,1268.6509416856677,41.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,2.0,0.0,68268.6,0.0,65050.0,2,9,7.0,4,2.0 -4073,6190,2789.326077918895,60.0,112,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,100.0,0.0,0.0,29469.6,0.0,17990.0,1,6,0.0,3,2.0 -4074,6191,1947.7813957615417,42.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3.0,0.0,36294.05,0.0,38630.0,2,8,7.0,3,2.0 -4075,6192,7330.918413221869,75.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11660.0,0.0,0.0,11739.0,0.0,0.0,1,2,3.0,1,0.0 -4076,6194,1362.591021092646,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19270.0,0.0,0.0,18791.4,0.0,0.0,3,7,5.0,1,0.0 -4077,6195,4104.821871554513,48.0,111,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,11150.0,0.0,0.0,3,8,6.0,1,0.0 -4078,6196,1433.6096140580953,47.0,112,0.0,47,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,274.0,0.0,44086.6,0.0,17090.0,1,10,2.0,2,1.0 -4079,6197,1134.216686893556,57.0,211,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33342.3,0.0,36180.0,2,3,4.0,3,2.0 -4080,6198,4416.811198289586,42.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,1009.0,0.0,82483.45,0.0,133850.0,2,10,8.0,4,2.0 -4081,6199,3948.9385832246603,30.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21013.2,0.0,23040.0,2,8,7.0,1,1.0 -4082,6201,2697.199698549078,21.0,112,1180.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25381.0,0.0,24980.0,3,7,0.0,1,1.0 -4083,6203,2502.1741321613135,57.0,112,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51732.9,0.0,55240.0,2,8,0.0,4,2.0 -4084,6204,3578.859175045854,58.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23070.0,0.0,0.0,47045.95,0.0,28080.0,3,10,8.0,3,1.0 -4085,6206,2863.469954342173,43.0,211,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42781.75,0.0,43410.0,1,2,3.0,4,2.0 -4086,6208,2555.164146883569,38.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40828.1,0.0,46890.0,2,5,4.0,1,1.0 -4087,6209,1648.3102620418995,36.0,300,0.0,85,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,31892.7,0.0,12750.0,3,0,0.0,4,1.0 -4088,6210,829.0565506028873,42.0,112,0.0,54,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,6346.4,0.0,0.0,2,8,1.0,2,1.0 -4089,6211,3081.6296045041167,27.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21675.65,0.0,22060.0,3,8,7.0,3,2.0 -4090,6212,1903.2962404965363,43.0,112,4210.0,46,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51039.1,0.0,46520.0,2,6,0.0,4,3.0 -4091,6213,3045.5328263606357,46.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,148.0,0.0,35783.65,0.0,39440.0,3,10,8.0,1,1.0 -4092,6214,3379.507099913706,63.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6920.0,0.0,0.0,8982.9,0.0,0.0,1,9,7.0,1,0.0 -4093,6216,4193.219329473043,85.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12940.0,29.0,0.0,13903.5,0.0,0.0,1,0,2.0,1,0.0 -4094,6217,3682.257400563892,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28270.0,0.0,0.0,26826.95,0.0,0.0,1,9,7.0,3,0.0 -4095,6218,2984.326272714648,62.0,111,0.0,77,0.0,0.0,1.0,1.0,5780.0,0.0,8410.0,0.0,0.0,0.0,13700.65,0.0,0.0,1,9,7.0,1,0.0 -4096,6219,1246.7076636214404,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43970.0,122.0,0.0,42344.35,0.0,0.0,1,7,1.0,3,0.0 -4097,6221,2885.988784159434,38.0,111,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47713.8,0.0,51130.0,2,7,6.0,4,2.0 -4098,6222,2793.6042002005534,44.0,112,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,14.0,0.0,52903.25,0.0,37320.0,2,6,0.0,4,2.0 -4099,6223,4178.905724815624,87.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24660.0,0.0,0.0,24056.5,0.0,0.0,1,9,7.0,3,0.0 -4100,6225,1937.170533298192,51.0,112,5940.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40938.6,0.0,38440.0,1,8,0.0,3,2.0 -4101,6228,2196.1421409682557,57.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,25527.7,0.0,27630.0,1,8,7.0,1,1.0 -4102,6232,5221.015297295802,29.0,112,3690.0,69,1.0,1.0,1.0,1.0,0.0,580.0,0.0,0.0,0.0,0.0,7466.85,0.0,2950.0,3,9,3.0,1,1.0 -4103,6233,1753.4253710781763,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42130.0,0.0,0.0,38066.8,0.0,0.0,1,8,7.0,3,0.0 -4104,6234,3191.153723487718,77.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12110.0,0.0,0.0,12885.8,0.0,0.0,1,0,0.0,1,0.0 -4105,6239,2683.2870802944776,75.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17490.0,0.0,0.0,21071.3,0.0,4620.0,1,5,4.0,3,1.0 -4106,6240,2420.6671810959906,27.0,112,0.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43379.6,0.0,36940.0,2,8,0.0,4,2.0 -4107,6242,3614.9342822214935,24.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1934.0,0.0,0.0,3,10,8.0,1,0.0 -4108,6243,7890.023917797284,27.0,111,12680.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23331.0,0.0,2930.0,3,8,7.0,1,0.0 -4109,6244,2221.996577078209,48.0,111,0.0,62,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25345.7,0.0,23030.0,3,8,7.0,4,2.0 -4110,6245,2681.7499470395064,49.0,400,0.0,85,0.0,0.0,3.0,1.6,660.0,0.0,0.0,3510.0,0.0,0.0,13334.0,0.0,0.0,3,0,0.0,5,0.0 -4111,6246,3231.114846153482,56.0,111,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,6930.0,0.0,0.0,9858.0,0.0,0.0,3,10,8.0,2,1.0 -4112,6247,2955.1846201704716,77.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8500.0,0.0,0.0,9826.65,0.0,0.0,1,9,3.0,1,0.0 -4113,6248,2029.655457290163,35.0,111,1240.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25168.6,0.0,24160.0,3,8,7.0,4,2.0 -4114,6251,2071.3269537877004,61.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15480.0,0.0,0.0,27364.65,0.0,13050.0,1,7,1.0,3,1.0 -4115,6253,2933.225824193037,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15590.0,0.0,0.0,14540.9,0.0,0.0,1,8,6.0,1,0.0 -4116,6255,2292.558415166714,25.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12259.45,0.0,12470.0,3,5,4.0,1,1.0 -4117,6256,3166.7230272606707,45.0,112,0.0,65,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41567.4,0.0,40980.0,2,9,2.0,4,2.0 -4118,6257,4059.1853225321815,67.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21750.0,0.0,0.0,21421.5,0.0,0.0,3,0,0.0,3,0.0 -4119,6258,2518.862724069891,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21470.0,0.0,0.0,21770.95,0.0,0.0,1,6,5.0,1,0.0 -4120,6259,2206.3010021373543,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11770.0,0.0,0.0,12485.0,0.0,0.0,5,9,7.0,1,0.0 -4121,6260,5179.855907109938,49.0,111,19360.0,52,3,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38426.75,0.0,19070.0,5,6,4.0,4,3.0 -4122,6261,1111.9806964111115,34.0,111,13450.0,55,2.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,29588.15,0.0,4590.0,3,8,7.0,4,2.0 -4123,6262,3246.0648458910246,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25220.0,0.0,0.0,24826.1,0.0,0.0,3,10,8.0,3,0.0 -4124,6264,2613.1848428216085,22.0,400,1670.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22862.5,2830.0,11220.0,3,0,0.0,4,1.0 -4125,6265,3955.6634910618177,43.0,111,0.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,15403.25,0.0,10170.0,3,5,4.0,2,1.0 -4126,6268,1033.2499092718933,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67830.0,0.0,0.0,65828.55,0.0,440.0,2,8,7.0,3,0.0 -4127,6269,1568.5924581454533,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51420.0,2417.0,0.0,50291.25,0.0,0.0,1,9,7.0,3,0.0 -4128,6272,973.2628098836171,54.0,111,0.0,31,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,81610.85,0.0,60.0,1,8,6.0,4,2.0 -4129,6274,7273.444816463601,43.0,112,0.0,62,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39537.3,0.0,39060.0,5,4,0.0,4,2.0 -4130,6276,2052.6184414082236,38.0,111,0.0,63,1.0,0.0,5.0,2.6,0.0,7290.0,0.0,0.0,0.0,0.0,17910.0,0.0,0.0,3,7,5.0,4,1.0 -4131,6277,1775.2038442819803,55.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,74133.5,0.0,79910.0,1,7,5.0,3,2.0 -4132,6281,2551.3020926668437,57.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12160.0,496.0,0.0,8821.0,0.0,0.0,5,0,0.0,1,0.0 -4133,6284,5822.310326035631,29.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,54039.65,0.0,54760.0,1,8,1.0,1,1.0 -4134,6285,2214.480418602655,44.0,112,0.0,62,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40502.2,0.0,30450.0,2,8,0.0,4,1.0 -4135,6286,5480.578273925074,76.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20880.0,0.0,0.0,20883.85,0.0,0.0,1,0,2.0,1,0.0 -4136,6288,1757.5110332744298,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30460.0,211.0,0.0,31679.3,0.0,0.0,1,10,8.0,3,0.0 -4137,6289,1404.4473966801438,56.0,112,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16660.0,0.0,0.0,50122.95,0.0,37530.0,1,6,1.0,3,1.0 -4138,6290,3452.330711650691,90.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15480.0,0.0,0.0,15388.2,0.0,0.0,3,10,8.0,1,0.0 -4139,6292,1841.287218223531,55.0,400,0.0,43,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,199.0,0.0,53318.9,0.0,53510.0,1,0,0.0,4,3.0 -4140,6293,1171.9426965101786,49.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52643.75,0.0,58890.0,1,8,7.0,3,2.0 -4141,6294,3201.7025454162713,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16290.0,0.0,0.0,16504.7,0.0,0.0,3,8,7.0,1,0.0 -4142,6295,1359.692539840186,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31390.0,237.0,0.0,30310.35,0.0,0.0,1,9,7.0,3,0.0 -4143,6296,2350.0221932850745,36.0,111,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37756.95,0.0,27020.0,1,9,7.0,4,2.0 -4144,6297,2150.695349173919,60.0,300,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,6840.0,0.0,0.0,51139.05,0.0,43430.0,1,0,0.0,3,1.0 -4145,6298,1765.1682114253153,60.0,112,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17900.0,0.0,0.0,43673.45,0.0,25140.0,2,7,1.0,3,1.0 -4146,6299,3107.895587367468,42.0,111,0.0,63,2.0,1.0,4.0,2.5,0.0,4680.0,0.0,0.0,0.0,0.0,18018.65,0.0,8220.0,3,8,6.0,4,2.0 -4147,6301,2242.165924805463,35.0,111,4220.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23864.25,30.0,20810.0,3,9,7.0,3,2.0 -4148,6302,3451.956707471506,19.0,111,1160.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13603.7,0.0,9630.0,3,9,7.0,1,1.0 -4149,6304,869.3007606518179,72.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42350.0,0.0,0.0,38376.9,0.0,190.0,2,0,1.0,3,0.0 -4150,6305,2172.418699767348,58.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,15110.0,529.0,0.0,28704.95,0.0,16520.0,2,6,0.0,1,1.0 -4151,6306,3024.15721649785,23.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17926.0,0.0,17950.0,3,6,4.0,3,1.0 -4152,6310,2774.805192372436,83.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19520.0,0.0,0.0,19520.0,0.0,0.0,3,0,0.0,3,0.0 -4153,6311,4442.733046556479,39.0,112,0.0,67,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29972.0,0.0,14830.0,3,8,3.0,4,1.0 -4154,6313,2660.160232892156,43.0,112,1200.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27091.7,0.0,25270.0,2,9,0.0,2,1.0 -4155,6315,2167.5085320195403,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39610.0,0.0,0.0,38762.55,0.0,0.0,2,9,7.0,1,0.0 -4156,6316,2269.976472218568,82.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20540.0,0.0,0.0,20086.8,0.0,0.0,5,8,7.0,1,0.0 -4157,6318,4464.122104442328,62.0,221,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18940.0,208.0,0.0,26572.2,0.0,1700.0,1,1,1.0,3,1.0 -4158,6319,2152.3871628510565,59.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26550.0,0.0,0.0,28749.25,0.0,4060.0,1,7,1.0,1,0.0 -4159,6320,1968.362553018535,80.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20650.0,0.0,0.0,20650.0,0.0,0.0,5,0,1.0,3,0.0 -4160,6322,3264.5192258499574,53.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36263.4,0.0,38720.0,1,9,7.0,3,2.0 -4161,6324,2265.1402440164943,42.0,111,12230.0,47,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42867.1,0.0,29300.0,2,7,5.0,4,2.0 -4162,6329,3206.842026887746,27.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11720.75,0.0,8830.0,3,9,7.0,1,1.0 -4163,6330,2131.2000014069095,53.0,111,8480.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40448.65,0.0,31530.0,2,9,7.0,4,2.0 -4164,6333,1298.6986260893204,61.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56130.0,0.0,0.0,49846.05,0.0,0.0,1,9,7.0,3,0.0 -4165,6334,3075.089521101916,23.0,120,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23680.1,0.0,13740.0,5,0,0.0,3,2.0 -4166,6337,2042.8681552660496,56.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21450.0,0.0,0.0,36121.2,0.0,17190.0,1,6,0.0,3,1.0 -4167,6339,2707.934099674033,75.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28220.0,0.0,0.0,26820.0,0.0,0.0,1,0,1.0,3,0.0 -4168,6341,3519.3686008276286,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20600.0,0.0,0.0,19589.15,0.0,0.0,5,9,7.0,1,0.0 -4169,6345,1312.9386274545186,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,87600.0,25.0,0.0,72937.7,0.0,650.0,1,8,6.0,3,0.0 -4170,6347,5946.567498919314,74.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19470.0,0.0,0.0,19246.0,0.0,0.0,3,0,1.0,3,0.0 -4171,6348,2433.1627917663627,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23560.0,0.0,0.0,23389.65,0.0,0.0,3,5,4.0,3,0.0 -4172,6349,2063.563915513944,34.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,30.0,0.0,23868.65,0.0,24780.0,5,9,7.0,1,1.0 -4173,6350,3680.288400961677,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4178.65,0.0,1960.0,3,9,7.0,1,0.0 -4174,6353,1695.2583638535627,42.0,112,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,239132.35,0.0,12060.0,1,8,0.0,4,2.0 -4175,6354,3445.0211143447077,50.0,400,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,6.0,0.0,18680.65,0.0,18890.0,2,0,0.0,1,1.0 -4176,6355,2442.2773681235067,68.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53880.0,93.0,0.0,46310.85,0.0,0.0,1,0,0.0,3,0.0 -4177,6359,1988.8812450301182,59.0,112,0.0,85,0.0,0.0,1.0,1.0,0.0,3100.0,7780.0,0.0,0.0,0.0,10829.65,0.0,0.0,2,8,0.0,1,0.0 -4178,6360,2199.256347936892,32.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60108.1,0.0,58870.0,2,9,7.0,4,2.0 -4179,6361,3709.769689255578,61.0,111,780.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32153.85,0.0,33290.0,3,6,5.0,3,2.0 -4180,6362,3181.1698864067816,54.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41012.7,0.0,43000.0,5,9,7.0,3,2.0 -4181,6363,2884.7161639914384,37.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,93.0,0.0,59177.35,0.0,65290.0,1,8,7.0,3,2.0 -4182,6364,2335.61931351633,25.0,300,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,48521.0,0.0,58870.0,3,0,0.0,1,1.0 -4183,6365,1380.8073759154531,37.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42064.15,0.0,43120.0,2,5,4.0,3,2.0 -4184,6366,2105.960938144196,49.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,74478.8,0.0,79210.0,1,10,8.0,4,2.0 -4185,6369,4030.6997912403854,82.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,250.0,1110.0,0.0,0.0,420.8499999999999,0.0,0.0,1,9,7.0,1,0.0 -4186,6371,5180.839571339029,52.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18964.9,0.0,19230.0,3,8,7.0,1,1.0 -4187,6373,2811.1130678858717,33.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20345.65,0.0,21910.0,2,8,7.0,1,1.0 -4188,6375,1423.8179750299423,34.0,111,0.0,67,1.0,0.0,1.0,1.0,0.0,5130.0,0.0,0.0,0.0,0.0,4722.6,240.0,0.0,5,9,7.0,1,1.0 -4189,6377,1697.0480545072862,60.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16310.0,40.0,0.0,15415.3,0.0,0.0,1,10,1.0,1,0.0 -4190,6379,2284.2600036285667,64.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29240.0,0.0,0.0,27184.15,0.0,0.0,1,7,1.0,3,0.0 -4191,6381,4425.213872079848,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15820.0,0.0,0.0,17380.0,0.0,0.0,3,10,8.0,1,0.0 -4192,6384,2022.662859588995,61.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44390.0,0.0,0.0,39835.8,0.0,0.0,2,0,0.0,3,0.0 -4193,6385,1723.2335473898863,42.0,300,1240.0,38,2.0,2.0,5.0,3.0,0.0,0.0,0.0,10650.0,0.0,0.0,48068.85,0.0,33550.0,1,0,0.0,5,2.0 -4194,6386,3533.533623757542,33.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21655.4,0.0,21970.0,3,8,7.0,3,1.0 -4195,6387,2711.311596698042,43.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28987.05,0.0,31920.0,2,8,6.0,1,1.0 -4196,6388,1849.1528726596994,79.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10280.0,0.0,0.0,12147.4,0.0,0.0,1,9,7.0,3,0.0 -4197,6389,2737.2248589528112,39.0,111,9050.0,64,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32266.1,0.0,22170.0,3,7,5.0,4,2.0 -4198,6390,4302.433212609296,24.0,111,0.0,85,0.0,0.0,4.0,2.1,0.0,6950.0,0.0,0.0,0.0,0.0,14278.0,0.0,130.0,3,8,7.0,4,0.0 -4199,6391,1729.4241761430053,44.0,112,0.0,69,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,50816.7,0.0,39960.0,2,8,0.0,4,2.0 -4200,6393,1416.0076345035798,58.0,112,11470.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,19610.0,0.0,0.0,88516.4,0.0,63880.0,1,8,0.0,4,2.0 -4201,6394,5667.038027556025,52.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17348.1,0.0,17690.0,3,10,8.0,1,1.0 -4202,6395,5948.719128702099,26.0,111,0.0,63,1.0,0.0,4.0,2.1,0.0,5130.0,0.0,0.0,0.0,0.0,13090.0,0.0,850.0,3,10,8.0,4,1.0 -4203,6399,3443.372855825948,35.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19731.3,0.0,15980.0,3,9,7.0,2,1.0 -4204,6400,2489.171097546322,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25780.0,0.0,0.0,22850.95,0.0,0.0,1,9,7.0,1,0.0 -4205,6402,2651.256014544505,75.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,2290.0,6120.0,0.0,0.0,8473.0,0.0,0.0,1,0,0.0,1,0.0 -4206,6403,4671.4761976598675,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14490.0,0.0,0.0,14754.0,0.0,0.0,3,10,8.0,1,0.0 -4207,6405,1696.0277239803595,60.0,111,3890.0,62,3,2.0,4.0,2.5,0.0,4890.0,8810.0,0.0,0.0,0.0,58108.9,4080.0,38240.0,2,8,6.0,5,3.0 -4208,6406,2594.5142698863374,56.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,16060.0,0.0,0.0,15560.4,0.0,0.0,3,9,7.0,1,1.0 -4209,6407,5722.896091542138,56.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19380.55,0.0,17550.0,3,0,1.0,1,1.0 -4210,6408,1002.5429425094204,64.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31100.0,0.0,0.0,30204.05,0.0,0.0,1,0,1.0,3,0.0 -4211,6409,2658.378726729256,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15890.0,0.0,0.0,15739.8,0.0,0.0,5,6,4.0,1,0.0 -4212,6410,2822.2288390498065,77.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33380.0,0.0,0.0,36595.8,0.0,0.0,1,0,0.0,1,0.0 -4213,6411,1141.1253032381599,45.0,120,0.0,64,2.0,2.0,4.0,2.3,0.0,360.0,0.0,0.0,0.0,0.0,43028.55,390.0,30040.0,2,0,0.0,2,2.0 -4214,6412,1534.6534720406987,32.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41659.85,0.0,41890.0,2,7,0.0,4,2.0 -4215,6414,2374.590538215138,55.0,111,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56357.3,0.0,64660.0,3,10,8.0,2,2.0 -4216,6415,3408.5950100842897,48.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26927.9,0.0,28110.0,3,8,6.0,1,1.0 -4217,6416,1392.2859664880705,38.0,111,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,25780.7,0.0,18540.0,2,7,5.0,4,1.0 -4218,6421,4201.277227252582,43.0,120,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42189.2,0.0,43020.0,1,0,0.0,3,1.0 -4219,6422,2283.9686729478626,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32480.0,0.0,0.0,31534.1,0.0,0.0,1,7,4.0,3,0.0 -4220,6424,2157.524741374907,36.0,112,0.0,52,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,52920.3,0.0,43920.0,2,7,0.0,4,2.0 -4221,6426,3634.9113442070948,28.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20594.9,0.0,17570.0,2,9,7.0,1,1.0 -4222,6429,1926.297926265797,75.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32940.0,0.0,0.0,43515.7,0.0,12240.0,1,0,0.0,3,0.0 -4223,6430,2996.9011991064294,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28320.0,0.0,0.0,25248.1,0.0,0.0,1,10,8.0,1,0.0 -4224,6431,3040.960416677528,24.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,1750.0,0.0,0.0,32621.55,0.0,31490.0,3,8,0.0,3,2.0 -4225,6432,1198.8189760690527,61.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,620.0,0.0,0.0,69324.9,0.0,73760.0,1,8,7.0,3,2.0 -4226,6433,1693.9648836081096,65.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,7900.0,2890.0,0.0,0.0,10712.0,0.0,0.0,1,0,0.0,1,0.0 -4227,6435,981.325876549705,41.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,81808.55,0.0,86180.0,2,7,5.0,4,2.0 -4228,6436,1061.9973960317013,45.0,400,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,14860.0,0.0,0.0,42341.1,0.0,22740.0,3,0,0.0,5,2.0 -4229,6437,1615.3165765999543,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,71170.0,0.0,0.0,69003.9,0.0,0.0,1,10,8.0,3,0.0 -4230,6439,6805.597079092072,33.0,111,6880.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25759.0,0.0,19030.0,5,4,4.0,3,2.0 -4231,6440,2464.2442011977755,48.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,53.0,0.0,31694.25,0.0,31780.0,2,9,0.0,4,2.0 -4232,6443,3094.563855702157,49.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,82445.25,0.0,91560.0,2,10,8.0,4,2.0 -4233,6445,2425.6985914476495,89.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13950.0,0.0,0.0,14992.0,0.0,0.0,3,7,6.0,1,0.0 -4234,6446,2041.9842806471797,35.0,111,1720.0,42,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,24663.45,0.0,9170.0,3,8,7.0,2,1.0 -4235,6448,1084.9305904594553,53.0,400,0.0,11,3,3.0,4.0,2.5,0.0,2110.0,0.0,7950.0,4.0,0.0,51604.0,2530.0,11830.0,1,0,0.0,4,3.0 -4236,6449,2738.993781592219,45.0,111,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,1660.0,0.0,0.0,26055.15,0.0,20100.0,2,9,7.0,2,1.0 -4237,6450,3247.005139017755,47.0,111,10120.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33776.65,0.0,22380.0,3,10,8.0,4,2.0 -4238,6451,4698.983777314145,58.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5250.0,0.0,0.0,7226.65,0.0,0.0,3,1,1.0,1,0.0 -4239,6455,2466.9052593859037,44.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50364.55,0.0,52960.0,2,8,0.0,4,2.0 -4240,6456,3192.818432829925,49.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23053.6,0.0,25000.0,3,8,6.0,1,1.0 -4241,6457,1748.1681332335042,40.0,300,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52803.25,0.0,44350.0,2,0,0.0,4,2.0 -4242,6458,1883.7660716671483,66.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16790.0,0.0,0.0,16942.4,0.0,0.0,1,4,4.0,3,0.0 -4243,6459,4624.698594063762,44.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15054.9,0.0,15360.0,3,9,7.0,1,1.0 -4244,6461,1975.5945863371269,26.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,380.0,0.0,0.0,0.0,0.0,410.0,20.0,0.0,5,5,4.0,1,0.0 -4245,6463,5230.705634301304,40.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28122.55,0.0,29450.0,3,6,5.0,1,1.0 -4246,6464,3482.6571041289635,49.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,46071.7,0.0,50760.0,1,10,8.0,1,1.0 -4247,6466,3720.614475597405,44.0,111,0.0,63,1.0,1.0,3.0,1.8,0.0,270.0,0.0,0.0,0.0,0.0,18412.0,2780.0,8880.0,3,9,7.0,4,1.0 -4248,6467,3214.417534099461,76.0,111,0.0,78,0.0,0.0,3.0,2.0,15930.0,0.0,0.0,14570.0,0.0,0.0,30272.5,0.0,0.0,1,10,8.0,4,0.0 -4249,6468,7094.7844372035415,42.0,400,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,31720.7,0.0,29860.0,2,0,1.0,4,2.0 -4250,6471,2643.7331605714917,61.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24610.0,0.0,0.0,29080.55,0.0,4920.0,1,7,0.0,3,1.0 -4251,6473,987.4515966467453,75.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29980.0,0.0,0.0,28227.1,0.0,0.0,1,8,7.0,3,0.0 -4252,6474,2441.6109834871245,61.0,112,30.0,65,3,3.0,3.0,2.0,0.0,0.0,0.0,6280.0,0.0,0.0,60237.5,0.0,55500.0,2,10,0.0,4,3.0 -4253,6479,1357.9257013605777,60.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38560.0,0.0,0.0,35821.9,0.0,0.0,1,0,0.0,3,0.0 -4254,6480,2058.1076154782095,24.0,111,0.0,37,3,3.0,3.0,2.0,0.0,150.0,0.0,0.0,0.0,0.0,33169.05,1510.0,29540.0,3,8,7.0,5,3.0 -4255,6481,3041.802010127433,36.0,111,2660.0,68,1.0,0.0,3.0,1.6,0.0,550.0,0.0,0.0,0.0,0.0,24114.0,490.0,8890.0,3,10,8.0,2,1.0 -4256,6484,2755.0680800025807,21.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15895.85,0.0,12870.0,3,8,7.0,1,1.0 -4257,6485,2297.517385885322,45.0,222,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,11.0,0.0,23206.55,0.0,2330.0,1,1,0.0,3,2.0 -4258,6486,998.2826315416038,42.0,120,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,38965.1,0.0,25260.0,5,0,3.0,4,2.0 -4259,6487,2443.024124825813,49.0,112,0.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46687.15,0.0,49220.0,2,10,1.0,4,3.0 -4260,6488,2710.5079706900146,55.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,55060.0,0.0,0.0,44865.1,0.0,0.0,1,0,0.0,1,0.0 -4261,6489,875.6040264055091,46.0,211,0.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,28010.5,420.0,26960.0,3,3,3.0,4,2.0 -4262,6490,1391.4976756126377,57.0,221,16790.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,16600.8,0.0,0.0,1,1,3.0,4,1.0 -4263,6494,1137.237451482291,53.0,300,0.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20107.7,0.0,0.0,1,0,0.0,3,2.0 -4264,6496,1361.287599519084,48.0,111,0.0,62,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,51696.35,0.0,43180.0,2,9,7.0,4,2.0 -4265,6497,1116.2735472931327,48.0,111,0.0,48,3,4.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,77976.25,0.0,68000.0,2,8,7.0,4,4.0 -4266,6498,2537.3158933576487,53.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38712.75,0.0,41400.0,1,10,0.0,3,2.0 -4267,6499,5231.7558160624985,53.0,120,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20297.2,0.0,20660.0,3,0,2.0,1,1.0 -4268,6500,1238.0940928541909,32.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39537.55,0.0,37210.0,2,9,1.0,4,2.0 -4269,6501,1513.8072315187815,74.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20940.0,0.0,0.0,19499.6,0.0,0.0,5,6,1.0,1,0.0 -4270,6503,3894.397562402253,61.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22100.0,0.0,0.0,26103.65,0.0,6700.0,1,9,2.0,3,0.0 -4271,6504,2235.7575862546614,59.0,111,11950.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,22680.0,0.0,0.0,32576.35,0.0,0.0,1,9,7.0,3,1.0 -4272,6508,3874.275106485592,29.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44226.3,0.0,37610.0,3,9,7.0,3,1.0 -4273,6511,2506.000515338525,51.0,111,20170.0,48,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40229.0,0.0,18730.0,1,7,5.0,4,2.0 -4274,6514,1266.615364347607,62.0,111,0.0,78,0.0,1.0,2.0,1.5,0.0,0.0,0.0,18740.0,0.0,0.0,21065.3,0.0,4130.0,1,8,7.0,3,0.0 -4275,6515,3159.7318319141555,50.0,112,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24976.25,0.0,18600.0,2,8,0.0,2,1.0 -4276,6516,3520.622415498086,49.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18340.95,0.0,18280.0,3,10,8.0,2,1.0 -4277,6517,2668.4237262348674,38.0,120,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,302.0,0.0,22189.0,0.0,22910.0,2,0,0.0,1,1.0 -4278,6518,1753.7377913044677,59.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42004.9,0.0,44950.0,1,6,5.0,3,2.0 -4279,6519,2558.5630235136414,62.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19250.0,0.0,0.0,18619.5,0.0,0.0,1,0,0.0,3,0.0 -4280,6521,2605.9196406430474,30.0,300,0.0,85,0.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29294.0,0.0,13930.0,3,0,0.0,4,0.0 -4281,6522,5381.2007085659125,36.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,18736.0,0.0,0.0,3,10,8.0,2,0.0 -4282,6525,4233.599601902179,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19410.0,0.0,0.0,19271.95,0.0,0.0,1,10,8.0,1,0.0 -4283,6526,3607.7637411681453,23.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6450.15,0.0,6580.0,3,7,6.0,1,1.0 -4284,6529,4723.457718829559,47.0,111,7090.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17604.35,0.0,11900.0,1,8,6.0,1,1.0 -4285,6530,2388.4299896868356,56.0,211,270.0,53,1.0,0.0,1.0,1.0,0.0,3350.0,0.0,0.0,0.0,0.0,11316.2,980.0,3150.0,3,3,3.0,1,1.0 -4286,6532,5621.994059546409,61.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25430.0,0.0,0.0,23597.4,0.0,0.0,2,9,3.0,1,0.0 -4287,6533,1827.242350304557,52.0,400,3370.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26870.0,0.0,0.0,42392.6,0.0,16530.0,1,0,0.0,3,1.0 -4288,6534,2105.260946925304,44.0,221,2220.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39910.65,0.0,38080.0,3,1,3.0,3,2.0 -4289,6535,1002.0738153090789,38.0,120,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,138.0,0.0,41240.8,0.0,40740.0,2,0,1.0,4,2.0 -4290,6537,2487.321875544756,42.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,4712.95,0.0,4840.0,3,7,6.0,3,2.0 -4291,6538,4778.508710886271,29.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18828.25,0.0,19930.0,3,10,8.0,1,1.0 -4292,6539,1799.3277966852745,88.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47780.0,0.0,0.0,46537.1,0.0,0.0,1,7,5.0,3,0.0 -4293,6542,2495.89470194316,44.0,111,0.0,47,1.0,1.0,2.0,1.5,2480.0,0.0,0.0,1850.0,0.0,0.0,22811.05,0.0,19040.0,3,10,8.0,3,1.0 -4294,6543,1228.433439919955,58.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28054.05,0.0,29870.0,1,5,4.0,3,1.0 -4295,6545,2508.3664856363825,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48390.0,613.0,0.0,52540.1,0.0,0.0,1,6,5.0,3,0.0 -4296,6546,1859.8921779974648,38.0,111,3380.0,56,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,22091.25,0.0,10290.0,3,9,7.0,4,1.0 -4297,6548,1742.1168976116498,88.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22260.0,0.0,0.0,24038.0,0.0,0.0,5,0,1.0,3,0.0 -4298,6552,1447.4079415920787,51.0,111,90.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38922.1,0.0,40270.0,2,9,7.0,4,3.0 -4299,6553,1104.1714314469752,45.0,120,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,52.0,0.0,50530.15,0.0,49770.0,2,0,1.0,4,2.0 -4300,6554,3185.1733755742175,40.0,112,1550.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11493.85,0.0,9870.0,1,7,0.0,1,1.0 -4301,6557,2102.0511124122318,46.0,111,0.0,56,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32468.55,0.0,30080.0,3,8,7.0,4,2.0 -4302,6558,1327.395590285866,61.0,111,4070.0,75,1.0,0.0,2.0,1.5,0.0,10160.0,0.0,31470.0,0.0,0.0,42652.65,0.0,460.0,5,6,5.0,2,1.0 -4303,6559,1569.0439382981901,33.0,111,1790.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13138.0,0.0,11440.0,5,9,7.0,1,1.0 -4304,6561,2091.7573473531547,39.0,111,4000.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55917.4,0.0,52670.0,1,5,4.0,4,2.0 -4305,6564,2342.42600632741,33.0,112,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,35686.65,0.0,24130.0,2,8,1.0,4,2.0 -4306,6565,975.3490394250329,53.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41579.15,0.0,43840.0,1,9,2.0,3,2.0 -4307,6566,2688.7640122283456,25.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28242.4,0.0,29600.0,3,9,7.0,1,1.0 -4308,6568,2236.94366328984,32.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55763.85,0.0,51520.0,2,10,8.0,4,2.0 -4309,6569,1091.7141218559207,49.0,111,0.0,52,1.0,1.0,3.0,2.0,1920.0,0.0,0.0,16280.0,0.0,0.0,40109.3,0.0,20450.0,5,6,4.0,5,1.0 -4310,6570,2163.5615122976437,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,4570.0,3840.0,0.0,0.0,11249.95,0.0,0.0,3,8,6.0,1,0.0 -4311,6571,2966.2751527645473,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25820.0,0.0,0.0,23907.0,0.0,0.0,3,6,4.0,1,0.0 -4312,6572,2319.267026105786,52.0,112,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,36615.5,0.0,36200.0,2,7,2.0,4,2.0 -4313,6573,1602.6982564330015,47.0,111,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39063.95,0.0,39870.0,5,10,8.0,4,2.0 -4314,6574,3129.247297820206,42.0,111,10380.0,54,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19087.65,0.0,5610.0,3,10,8.0,2,1.0 -4315,6575,2806.232971421671,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12020.0,0.0,0.0,19840.9,0.0,0.0,1,9,7.0,1,0.0 -4316,6576,6256.288905393721,34.0,111,0.0,68,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,21853.0,1230.0,16960.0,3,9,7.0,2,1.0 -4317,6577,1704.336342298095,55.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11440.0,0.0,0.0,40275.15,0.0,29860.0,1,6,5.0,3,1.0 -4318,6579,2570.171299307858,45.0,221,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20860.0,0.0,0.0,19402.95,0.0,0.0,2,1,2.0,1,0.0 -4319,6581,2155.8703996636646,23.0,112,2480.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26268.9,0.0,24140.0,3,6,0.0,3,2.0 -4320,6582,3086.4898510476887,22.0,400,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27644.5,0.0,27750.0,3,0,0.0,3,2.0 -4321,6583,2826.017227128025,74.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22440.0,0.0,0.0,24392.55,0.0,0.0,1,6,0.0,3,0.0 -4322,6588,1770.675153955766,50.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54533.0,0.0,59120.0,3,9,7.0,3,2.0 -4323,6589,1276.1575228140537,60.0,111,6530.0,75,0.0,0.0,2.0,1.5,8380.0,0.0,0.0,3760.0,0.0,0.0,19158.0,0.0,0.0,1,6,5.0,3,0.0 -4324,6590,2446.624735768526,58.0,300,11500.0,38,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9758.0,0.0,0.0,1,0,0.0,1,1.0 -4325,6592,1442.2631783698955,54.0,120,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34709.95,0.0,34040.0,2,0,1.0,1,1.0 -4326,6593,2321.564095979601,20.0,300,5160.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30878.05,0.0,24790.0,3,0,0.0,3,2.0 -4327,6595,1931.9541993766318,60.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7610.0,0.0,0.0,10538.0,0.0,0.0,1,0,0.0,1,0.0 -4328,6596,2858.655489760822,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24860.0,0.0,0.0,23808.75,0.0,640.0,1,4,3.0,3,0.0 -4329,6597,3174.180302911526,48.0,112,5860.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45925.85,0.0,41730.0,2,9,3.0,4,2.0 -4330,6598,2879.4388498755684,86.0,112,0.0,71,0.0,0.0,1.0,1.0,7680.0,0.0,0.0,4360.0,0.0,0.0,27399.1,0.0,0.0,1,6,0.0,1,0.0 -4331,6599,4229.286698222112,52.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,63075.5,0.0,67250.0,3,10,8.0,3,2.0 -4332,6602,2401.6913235365723,22.0,111,4190.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28062.15,0.0,18490.0,3,8,7.0,3,2.0 -4333,6603,6219.917096752226,51.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18994.15,0.0,19960.0,3,4,4.0,1,1.0 -4334,6607,3397.610879419791,28.0,221,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24725.5,0.0,26990.0,2,1,2.0,3,2.0 -4335,6608,3172.2451022464647,86.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14500.0,0.0,0.0,14225.05,0.0,0.0,5,8,6.0,1,0.0 -4336,6609,1921.736658355474,62.0,111,0.0,75,1.0,0.0,4.0,2.5,0.0,0.0,0.0,48810.0,0.0,0.0,52055.35,0.0,7090.0,2,9,7.0,4,1.0 -4337,6610,3546.0277465905533,22.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17664.0,0.0,11770.0,3,8,6.0,1,1.0 -4338,6612,3187.656435342139,31.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15318.7,0.0,15720.0,3,10,8.0,3,1.0 -4339,6614,1833.134691326573,42.0,112,0.0,23,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,84011.0,0.0,80850.0,3,9,0.0,4,2.0 -4340,6615,1222.4132589184003,48.0,112,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,82.0,0.0,92686.15,0.0,98310.0,2,9,0.0,3,2.0 -4341,6617,2855.9751306529674,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15030.0,0.0,0.0,14899.45,0.0,0.0,1,9,7.0,1,0.0 -4342,6618,2833.412004831864,31.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,930.0,0.0,0.0,0.0,0.0,30871.5,0.0,30230.0,2,9,7.0,4,2.0 -4343,6619,2655.5735461974273,46.0,111,11360.0,67,2.0,0.0,5.0,2.8,0.0,2030.0,0.0,0.0,0.0,0.0,23718.15,0.0,0.0,3,10,8.0,4,2.0 -4344,6620,3274.7138857386108,52.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5080.0,0.0,0.0,31896.0,0.0,29420.0,1,9,7.0,5,1.0 -4345,6621,3886.338184752028,29.0,111,1080.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31320.8,0.0,28000.0,3,7,6.0,4,1.0 -4346,6622,1100.212333566089,48.0,111,40.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42689.8,0.0,44670.0,1,6,5.0,4,2.0 -4347,6623,1168.824052392399,43.0,300,3680.0,62,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43949.2,0.0,43710.0,3,0,0.0,4,3.0 -4348,6624,2487.5389902928487,44.0,111,0.0,43,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45737.85,0.0,47390.0,3,10,8.0,4,3.0 -4349,6626,4853.671323860856,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36140.0,0.0,0.0,34750.0,0.0,0.0,1,7,5.0,3,0.0 -4350,6627,3397.6639672011675,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32610.0,0.0,0.0,30573.5,0.0,0.0,1,9,7.0,1,0.0 -4351,6628,1293.1405032769867,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14440.0,0.0,0.0,13963.95,0.0,0.0,1,8,7.0,1,0.0 -4352,6629,3938.8558700293847,61.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35290.0,521.0,0.0,32452.95,0.0,0.0,5,1,2.0,3,0.0 -4353,6630,2024.4019343894715,60.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20353.5,0.0,21230.0,3,7,5.0,1,1.0 -4354,6631,2459.2751805882067,28.0,112,8320.0,68,1.0,1.0,5.0,2.4,0.0,560.0,0.0,0.0,0.0,0.0,24631.4,390.0,4660.0,3,7,0.0,4,1.0 -4355,6632,5129.5663994875285,24.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30331.4,0.0,30230.0,3,7,5.0,3,2.0 -4356,6633,3112.905657043172,82.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10380.0,0.0,0.0,10380.0,0.0,0.0,5,0,0.0,1,0.0 -4357,6634,2069.7807624077695,38.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21918.15,0.0,24770.0,2,7,5.0,1,1.0 -4358,6635,3218.8246157904327,81.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,115200.0,910.0,0.0,96598.95,0.0,0.0,1,9,7.0,1,0.0 -4359,6636,2137.870921152186,43.0,120,3100.0,63,1.0,1.0,1.0,1.0,0.0,60.0,0.0,0.0,0.0,0.0,13070.65,370.0,9670.0,2,0,2.0,1,1.0 -4360,6637,2002.4494508114092,56.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,68329.5,0.0,62490.0,3,8,7.0,4,2.0 -4361,6638,3633.170635191729,22.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15292.0,0.0,0.0,3,9,7.0,3,0.0 -4362,6639,2676.225062213336,41.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,71024.0,0.0,68540.0,2,9,7.0,3,2.0 -4363,6640,4059.332969954712,53.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,280.0,0.0,0.0,0.0,0.0,14356.0,2560.0,8240.0,3,7,5.0,2,1.0 -4364,6641,3098.546206819735,78.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19990.0,0.0,0.0,20216.5,0.0,0.0,5,0,0.0,3,0.0 -4365,6643,2859.7656046271877,38.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34761.1,0.0,27180.0,3,8,6.0,4,2.0 -4366,6644,2932.2939243840838,84.0,212,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17060.0,0.0,0.0,28694.75,0.0,0.0,1,1,0.0,3,0.0 -4367,6646,1803.2729346181657,26.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33742.2,0.0,33420.0,3,7,0.0,4,2.0 -4368,6648,2262.2635553582827,28.0,112,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41852.85,0.0,42570.0,2,5,0.0,4,2.0 -4369,6649,1734.0336630193494,52.0,111,0.0,64,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29219.95,0.0,28350.0,2,9,7.0,4,1.0 -4370,6652,2483.408941538447,54.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,8,7.0,1,0.0 -4371,6653,2223.4156606765264,39.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,38287.6,0.0,25450.0,2,9,7.0,2,1.0 -4372,6654,4034.7909031821896,60.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30140.0,0.0,0.0,47011.75,0.0,18960.0,1,7,0.0,2,1.0 -4373,6655,2253.2026740898946,39.0,400,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28329.4,0.0,26450.0,1,0,0.0,4,2.0 -4374,6656,1440.9113742865513,39.0,221,0.0,12,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23645.6,0.0,3480.0,2,1,3.0,4,2.0 -4375,6657,1264.8131276796842,30.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,96.0,0.0,50352.95,0.0,52150.0,2,6,5.0,4,2.0 -4376,6659,2025.9001883020073,58.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20250.0,76.0,0.0,18302.8,0.0,790.0,1,9,7.0,1,0.0 -4377,6660,1767.3469625321425,51.0,111,0.0,45,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,51487.15,0.0,55500.0,2,9,7.0,4,2.0 -4378,6661,2928.814149828171,38.0,111,0.0,48,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25304.7,0.0,24440.0,3,9,7.0,2,1.0 -4379,6662,2870.052375925792,48.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,928.0,0.0,62424.2,0.0,65430.0,3,8,6.0,3,1.0 -4380,6663,4411.829675365937,29.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42672.45,0.0,42550.0,2,5,4.0,4,2.0 -4381,6664,2466.3700854933963,79.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13460.0,0.0,0.0,13310.5,0.0,0.0,2,0,0.0,1,0.0 -4382,6666,1337.5245499651571,56.0,111,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,7820.0,0.0,0.0,22414.0,0.0,15530.0,2,4,4.0,4,1.0 -4383,6667,3264.3694498612604,63.0,111,0.0,63,1.0,1.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,33760.0,0.0,16740.0,3,10,8.0,4,1.0 -4384,6669,1883.7103857763118,36.0,112,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27774.1,0.0,22250.0,2,6,0.0,2,1.0 -4385,6670,2170.566062523559,62.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49800.0,224.0,0.0,50801.2,0.0,0.0,1,9,7.0,3,0.0 -4386,6672,1517.066584705727,80.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19310.0,0.0,0.0,18107.05,0.0,0.0,1,7,5.0,1,0.0 -4387,6673,1648.3802366057382,35.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,95895.3,0.0,101300.0,2,9,7.0,4,2.0 -4388,6675,3533.2341802747756,41.0,111,0.0,22,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26798.1,80.0,6000.0,3,9,7.0,4,1.0 -4389,6677,5705.659554462523,26.0,111,2870.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,148.0,0.0,23586.85,0.0,12790.0,2,6,5.0,1,1.0 -4390,6679,3586.200815933792,37.0,111,0.0,85,0.0,0.0,5.0,2.4,0.0,7290.0,0.0,0.0,0.0,0.0,17718.0,0.0,0.0,3,9,7.0,4,0.0 -4391,6680,2039.22626261756,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28610.0,0.0,0.0,27022.85,0.0,0.0,2,7,5.0,1,0.0 -4392,6682,6223.225714678762,45.0,111,23140.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49922.4,0.0,12170.0,3,10,8.0,2,1.0 -4393,6683,2825.156535561944,31.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21685.45,0.0,23190.0,3,8,7.0,1,1.0 -4394,6685,3138.0921576038145,53.0,112,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10040.0,4.0,0.0,45865.6,0.0,42430.0,1,8,0.0,2,1.0 -4395,6686,3865.4704002958492,26.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14753.0,0.0,15060.0,3,10,8.0,1,1.0 -4396,6687,2170.152924016563,70.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15570.0,0.0,0.0,16012.0,0.0,0.0,5,9,7.0,1,0.0 -4397,6691,3495.6438127387455,19.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,4931.0,0.0,0.0,3,8,7.0,3,0.0 -4398,6694,2294.3881797095264,28.0,112,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39834.65,0.0,19790.0,3,8,0.0,4,2.0 -4399,6696,4768.080783331585,58.0,221,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10785.0,0.0,11960.0,1,1,2.0,1,1.0 -4400,6697,3180.476258673464,78.0,111,0.0,86,1.0,1.0,2.0,1.5,0.0,1030.0,0.0,11460.0,0.0,0.0,23535.0,2310.0,7210.0,3,10,8.0,5,1.0 -4401,6699,2385.3106075717833,48.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29536.25,0.0,35040.0,1,8,7.0,1,1.0 -4402,6700,3007.0847643066363,32.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27816.0,0.0,23540.0,3,10,8.0,3,2.0 -4403,6701,1452.7458692688172,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33520.0,427.0,0.0,28013.3,0.0,0.0,1,6,4.0,3,0.0 -4404,6702,1819.0745396973232,82.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25680.0,0.0,0.0,24156.6,0.0,0.0,1,0,0.0,3,0.0 -4405,6705,4717.406284797897,44.0,221,2560.0,55,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,13190.15,0.0,11340.0,2,1,2.0,4,2.0 -4406,6706,4028.6622538509196,86.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43490.0,91.0,0.0,40510.6,0.0,0.0,1,2,3.0,3,0.0 -4407,6707,3605.218982777442,71.0,111,0.0,78,0.0,0.0,3.0,2.0,8380.0,0.0,0.0,21370.0,0.0,0.0,32066.0,0.0,0.0,3,9,7.0,4,0.0 -4408,6708,2240.043467158469,39.0,221,2990.0,62,2.0,1.0,4.0,2.1,4160.0,0.0,0.0,5830.0,0.0,0.0,33755.55,0.0,17670.0,2,1,3.0,4,2.0 -4409,6709,2225.0330500394944,81.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30530.0,0.0,0.0,28599.55,0.0,0.0,1,0,0.0,3,0.0 -4410,6710,1325.8049032223767,62.0,222,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20920.0,0.0,0.0,31694.5,0.0,11740.0,1,1,0.0,3,1.0 -4411,6712,3296.325653212862,33.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,60.0,0.0,24872.25,0.0,26900.0,3,8,7.0,1,1.0 -4412,6714,3113.0711816299977,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16960.0,0.0,0.0,16960.0,0.0,0.0,3,9,7.0,1,0.0 -4413,6715,1496.062786442854,75.0,112,0.0,74,0.0,0.0,3.0,1.8,0.0,0.0,0.0,31570.0,0.0,0.0,31091.65,0.0,0.0,1,8,0.0,5,0.0 -4414,6717,3504.671405646212,43.0,111,0.0,63,1.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,28170.0,0.0,18740.0,3,10,8.0,4,1.0 -4415,6718,2073.884513863929,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,97100.0,0.0,0.0,117969.7,0.0,0.0,1,10,8.0,3,0.0 -4416,6720,4026.5254236325686,23.0,111,0.0,81,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14190.0,0.0,3370.0,5,10,8.0,3,1.0 -4417,6721,904.4740315000906,44.0,112,0.0,62,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,37784.9,0.0,30170.0,2,8,1.0,4,2.0 -4418,6723,1631.6597337244652,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9020.0,0.0,0.0,10844.0,0.0,0.0,3,7,5.0,1,0.0 -4419,6725,1755.4543597907843,46.0,111,18930.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35067.0,0.0,15880.0,3,8,7.0,4,2.0 -4420,6726,5440.621737462199,89.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21630.0,0.0,0.0,20862.35,0.0,0.0,1,9,7.0,3,0.0 -4421,6727,2165.00914661601,47.0,111,0.0,85,0.0,0.0,5.0,2.4,0.0,420.0,0.0,0.0,0.0,0.0,17340.0,0.0,0.0,3,10,8.0,2,0.0 -4422,6728,3159.3577468339354,43.0,111,7750.0,43,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,13066.85,0.0,90.0,3,8,6.0,2,1.0 -4423,6729,2129.698196703253,45.0,111,6400.0,67,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41846.25,0.0,36180.0,3,9,7.0,4,2.0 -4424,6730,1744.5163445906094,38.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,18477.7,0.0,6780.0,2,6,4.0,4,2.0 -4425,6731,1256.4392202840345,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30150.0,0.0,0.0,30665.95,0.0,0.0,1,9,7.0,3,0.0 -4426,6733,1901.4935913131824,61.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,140.0,8660.0,0.0,0.0,11752.0,0.0,0.0,3,8,0.0,1,0.0 -4427,6737,4206.341780990778,51.0,112,1940.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22362.45,0.0,20320.0,3,6,0.0,4,2.0 -4428,6738,1479.9694729797513,48.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46222.7,0.0,49270.0,2,7,5.0,4,2.0 -4429,6741,5136.426903614531,50.0,111,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40845.95,0.0,25600.0,2,10,8.0,4,2.0 -4430,6742,3734.346889570643,21.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29688.5,0.0,26390.0,3,9,7.0,1,1.0 -4431,6745,2945.35887349335,78.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13680.0,0.0,0.0,14268.0,0.0,0.0,3,9,0.0,1,0.0 -4432,6747,1647.0575751060671,46.0,111,0.0,64,1.0,0.0,6.0,3.1,0.0,2520.0,0.0,0.0,0.0,0.0,21754.35,40.0,2900.0,3,10,8.0,4,1.0 -4433,6750,1881.0598892978246,42.0,112,0.0,47,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,42864.4,0.0,43980.0,3,4,0.0,4,2.0 -4434,6751,2044.4575264082837,79.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52480.0,0.0,0.0,45546.95,0.0,0.0,5,7,0.0,3,0.0 -4435,6753,2459.65681086867,34.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26385.35,0.0,24200.0,2,8,0.0,4,2.0 -4436,6754,2839.4211619191833,40.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23674.15,0.0,24180.0,2,8,7.0,2,1.0 -4437,6755,3531.669300833935,74.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21380.0,0.0,0.0,20691.0,0.0,0.0,1,0,3.0,3,0.0 -4438,6757,3568.7011644431614,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17780.0,0.0,0.0,20038.25,0.0,2470.0,3,6,5.0,1,0.0 -4439,6761,1219.3326993913506,48.0,112,0.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,4250.0,0.0,0.0,43248.1,0.0,41140.0,1,7,1.0,2,3.0 -4440,6763,1369.5229925822948,64.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3380.0,0.0,0.0,25499.05,0.0,24350.0,1,9,7.0,1,1.0 -4441,6765,2023.8544164198202,60.0,111,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,51320.0,0.0,0.0,71863.0,0.0,30470.0,1,10,8.0,4,1.0 -4442,6766,1699.3390331198252,79.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18420.0,13.0,0.0,18600.95,0.0,0.0,1,0,0.0,3,0.0 -4443,6767,2927.6997304992224,55.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35420.45,0.0,37510.0,3,8,1.0,3,2.0 -4444,6770,2617.3933317331657,41.0,111,0.0,55,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27650.8,0.0,18070.0,3,8,6.0,2,1.0 -4445,6771,2808.269332764018,49.0,111,0.0,68,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,31178.05,0.0,29960.0,3,9,7.0,4,2.0 -4446,6773,1507.6342784187952,77.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16700.0,0.0,0.0,17394.5,0.0,0.0,1,8,0.0,3,0.0 -4447,6775,2165.963695194368,46.0,111,0.0,47,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31089.4,0.0,31700.0,2,7,5.0,2,1.0 -4448,6776,1261.8104161774534,61.0,112,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22060.0,0.0,0.0,74141.0,0.0,64030.0,1,5,0.0,3,1.0 -4449,6777,1881.1376861471736,34.0,112,0.0,69,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38325.6,0.0,31090.0,2,9,1.0,4,2.0 -4450,6778,3251.906099391025,58.0,111,0.0,45,1.0,1.0,2.0,1.3,0.0,0.0,0.0,5090.0,0.0,0.0,20515.05,0.0,16400.0,3,9,7.0,5,1.0 -4451,6779,2924.9592409499023,60.0,300,0.0,78,0.0,0.0,1.0,1.0,3440.0,0.0,0.0,6440.0,0.0,0.0,12808.0,0.0,0.0,3,0,0.0,1,0.0 -4452,6780,1524.1695522657335,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12180.0,0.0,0.0,12297.0,0.0,0.0,1,6,5.0,1,0.0 -4453,6781,1875.3317581251329,35.0,111,7750.0,35,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,58093.85,0.0,33400.0,1,10,8.0,4,2.0 -4454,6786,1440.342336077716,29.0,120,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37197.1,0.0,39380.0,3,0,1.0,3,2.0 -4455,6787,3025.881811079487,26.0,111,1750.0,46,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16005.0,0.0,14620.0,3,9,7.0,1,1.0 -4456,6788,1748.6924268542775,26.0,400,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,27.0,0.0,30116.8,1060.0,24050.0,3,0,0.0,4,2.0 -4457,6789,6281.880692142693,43.0,120,5200.0,85,0.0,0.0,5.0,2.8,0.0,1670.0,0.0,0.0,0.0,0.0,14500.0,0.0,320.0,3,0,3.0,4,0.0 -4458,6791,3485.2629920142404,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19430.0,0.0,0.0,18717.9,0.0,0.0,3,7,6.0,1,0.0 -4459,6792,3471.209285692331,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8045.0,0.0,0.0,3,9,7.0,1,0.0 -4460,6793,1531.5179069622657,56.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,19060.0,0.0,0.0,45815.95,0.0,27490.0,1,4,0.0,5,2.0 -4461,6794,3571.5499414857336,29.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8721.65,0.0,7540.0,3,10,8.0,1,1.0 -4462,6796,3078.0044936571144,57.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,6530.0,0.0,0.0,0.0,0.0,11890.75,140.0,0.0,3,9,3.0,1,0.0 -4463,6797,2108.989514542502,63.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,46852.95,0.0,51900.0,3,9,7.0,1,1.0 -4464,6798,6899.435836107084,38.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26192.55,0.0,28570.0,3,10,8.0,1,1.0 -4465,6799,3174.082156044671,67.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10070.0,0.0,0.0,11370.0,0.0,0.0,3,5,0.0,1,0.0 -4466,6800,3221.7205930203963,42.0,111,0.0,63,1.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,15810.0,0.0,0.0,3,10,8.0,1,1.0 -4467,6803,3542.709581504012,48.0,112,6330.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,16622.05,0.0,10530.0,2,9,1.0,4,2.0 -4468,6804,2733.600197808432,49.0,111,6870.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15409.65,0.0,9150.0,2,9,7.0,2,2.0 -4469,6805,2492.680238613552,61.0,400,0.0,86,0.0,0.0,1.0,1.0,0.0,5010.0,0.0,410.0,0.0,0.0,6960.0,0.0,1540.0,5,0,0.0,1,0.0 -4470,6806,3360.8572169544163,35.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24799.0,0.0,26910.0,3,6,5.0,1,1.0 -4471,6807,3508.2322348741723,42.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25928.4,0.0,28490.0,2,9,7.0,1,1.0 -4472,6809,2820.495033669365,50.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13291.45,0.0,13720.0,1,10,8.0,1,1.0 -4473,6811,2725.259020080716,29.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29618.45,0.0,31800.0,3,6,4.0,1,1.0 -4474,6813,2175.2633658394225,29.0,221,0.0,52,1.0,0.0,1.0,1.0,8310.0,0.0,0.0,0.0,0.0,0.0,11867.0,0.0,490.0,3,1,3.0,1,1.0 -4475,6814,1680.6060993436886,52.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58271.35,0.0,58160.0,2,6,1.0,3,2.0 -4476,6815,3098.760909489243,31.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,65.0,0.0,65141.15,0.0,62280.0,2,8,7.0,3,2.0 -4477,6816,2861.8069040410414,33.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40533.7,0.0,21890.0,5,9,7.0,4,2.0 -4478,6817,3177.792382521891,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33240.0,0.0,0.0,30999.85,0.0,0.0,1,7,0.0,3,0.0 -4479,6818,2678.219181556557,56.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19279.95,0.0,21800.0,3,9,7.0,1,1.0 -4480,6819,2483.2556470030136,37.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,58.0,29956.0,77869.75,0.0,41610.0,3,9,7.0,4,2.0 -4481,6820,2834.476638604649,44.0,120,0.0,85,0.0,0.0,3.0,1.6,0.0,3970.0,0.0,0.0,0.0,0.0,13202.0,0.0,0.0,3,0,0.0,2,0.0 -4482,6823,954.0077448785308,76.0,212,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24790.0,0.0,0.0,23813.75,0.0,0.0,1,2,0.0,3,0.0 -4483,6824,2555.3665556693404,74.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15050.0,0.0,0.0,15530.0,0.0,0.0,3,9,3.0,1,0.0 -4484,6827,3102.1587633759063,49.0,400,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,43.0,0.0,7432.1,0.0,0.0,2,0,0.0,1,1.0 -4485,6828,4469.3966147593355,70.0,221,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38030.0,0.0,0.0,33095.75,0.0,0.0,1,1,2.0,1,0.0 -4486,6829,4002.519396855961,65.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,520.0,220.0,3820.0,0.0,0.0,12174.0,1800.0,0.0,3,9,7.0,1,1.0 -4487,6830,1590.9076691486243,61.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,280.0,8.0,0.0,69627.4,0.0,20330.0,2,8,7.0,3,2.0 -4488,6831,1218.719199540395,41.0,111,0.0,33,1.0,1.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,63363.2,0.0,52330.0,2,9,7.0,4,1.0 -4489,6834,3824.1551431151897,35.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56035.4,0.0,57210.0,2,8,0.0,4,2.0 -4490,6835,2630.600432297221,26.0,111,990.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31800.45,0.0,31560.0,3,7,5.0,3,2.0 -4491,6836,1628.4750631055404,35.0,111,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,56543.1,0.0,60650.0,2,9,7.0,4,2.0 -4492,6837,2548.197651368808,50.0,120,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33667.15,0.0,29050.0,2,0,2.0,4,2.0 -4493,6838,3003.2003148271983,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41610.0,0.0,0.0,37544.25,0.0,0.0,3,10,8.0,1,0.0 -4494,6839,1869.0134779541245,56.0,111,0.0,33,3,2.0,4.0,2.5,0.0,0.0,0.0,13670.0,0.0,0.0,71245.55,0.0,60470.0,1,9,7.0,4,3.0 -4495,6840,2970.0084253490877,74.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12140.0,0.0,0.0,13737.0,0.0,0.0,5,6,4.0,1,0.0 -4496,6842,2132.7050512378555,23.0,112,800.0,63,2.0,2.0,3.0,1.8,0.0,2380.0,0.0,0.0,0.0,0.0,18707.7,0.0,15590.0,3,8,1.0,4,2.0 -4497,6843,2573.716680461884,62.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,291.0,0.0,144851.2,0.0,55070.0,1,10,8.0,3,2.0 -4498,6845,3090.149223483173,42.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,3080.0,0.0,0.0,0.0,0.0,17017.0,0.0,330.0,3,9,7.0,2,0.0 -4499,6846,2226.533236254203,43.0,112,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54233.7,0.0,50720.0,2,8,0.0,4,2.0 -4500,6847,2395.516472382027,48.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41922.35,0.0,48140.0,5,9,7.0,4,2.0 -4501,6849,2241.447001343065,73.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20900.0,0.0,0.0,20443.05,0.0,0.0,1,10,4.0,3,0.0 -4502,6851,1889.4327627034518,44.0,300,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26465.25,0.0,26280.0,3,0,0.0,2,1.0 -4503,6852,2385.245472639043,35.0,112,250.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22328.35,0.0,18770.0,3,7,0.0,4,2.0 -4504,6853,3786.9643903453457,65.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17650.0,0.0,0.0,16991.0,0.0,0.0,5,0,0.0,1,0.0 -4505,6854,3455.5523090998745,75.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13310.0,0.0,0.0,14808.65,0.0,1940.0,1,0,3.0,1,0.0 -4506,6855,1367.4135545846743,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67670.0,22.0,0.0,56740.0,0.0,4380.0,1,6,0.0,3,0.0 -4507,6857,3752.565982653907,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18410.0,0.0,0.0,18231.55,0.0,0.0,1,8,7.0,1,0.0 -4508,6858,3766.966162124861,35.0,111,490.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17314.0,0.0,14830.0,3,8,6.0,1,1.0 -4509,6863,4276.233295932802,41.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35540.0,0.0,30070.0,3,4,4.0,1,1.0 -4510,6865,3090.057842483135,54.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28821.4,0.0,29680.0,3,10,8.0,4,2.0 -4511,6866,2786.710766843652,36.0,111,9220.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31769.55,0.0,19160.0,2,9,7.0,4,2.0 -4512,6867,1437.9473478782331,57.0,300,0.0,13,3,3.0,3.0,2.0,0.0,0.0,0.0,1780.0,0.0,0.0,19493.2,0.0,16040.0,1,0,0.0,4,3.0 -4513,6868,1774.6595284445198,50.0,212,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16815.65,0.0,17560.0,1,3,0.0,1,1.0 -4514,6870,3259.1797076396674,36.0,111,0.0,38,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,31.0,0.0,36508.65,0.0,39660.0,2,9,7.0,2,1.0 -4515,6872,1506.6705613340398,34.0,112,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29171.65,0.0,18890.0,3,8,0.0,4,1.0 -4516,6873,4260.040060201933,18.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11930.0,0.0,11920.0,3,4,3.0,1,1.0 -4517,6874,1538.8087920006203,67.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12850.0,0.0,0.0,13390.0,0.0,0.0,3,3,3.0,1,0.0 -4518,6875,1283.042868411336,40.0,211,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,88.0,0.0,58014.15,0.0,56910.0,2,1,3.0,4,2.0 -4519,6876,2551.9663852287977,65.0,112,470.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34100.0,0.0,0.0,33458.25,0.0,0.0,1,7,0.0,3,0.0 -4520,6878,1962.7832869219123,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47270.0,0.0,0.0,44977.5,0.0,0.0,1,10,8.0,3,0.0 -4521,6879,4978.092689490032,42.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47391.35,0.0,48980.0,3,6,4.0,4,2.0 -4522,6881,1158.261058383443,35.0,300,0.0,67,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32925.4,0.0,20840.0,2,0,0.0,4,1.0 -4523,6883,2542.502646650146,66.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18090.0,0.0,0.0,29335.9,0.0,0.0,1,0,0.0,3,0.0 -4524,6884,3108.4903854272634,58.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,4580.0,0.0,0.0,0.0,0.0,7694.0,0.0,0.0,3,1,2.0,1,0.0 -4525,6885,2563.561161568606,63.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15400.0,0.0,0.0,17066.4,0.0,2060.0,1,9,7.0,3,0.0 -4526,6886,4536.479770063569,26.0,111,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22430.0,2000.0,11640.0,3,8,7.0,4,1.0 -4527,6887,1890.74866934688,86.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8370.0,343.0,0.0,17016.35,0.0,0.0,1,7,5.0,1,0.0 -4528,6889,3970.8523661583513,47.0,120,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45216.2,0.0,43160.0,2,0,2.0,4,2.0 -4529,6890,1999.4386679926497,37.0,300,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,2.0,0.0,35293.7,0.0,35060.0,2,0,0.0,4,2.0 -4530,6892,3955.5738012139695,56.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19230.0,0.0,0.0,24391.85,0.0,0.0,1,9,2.0,1,0.0 -4531,6893,3820.014660739379,47.0,111,0.0,42,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,35798.0,0.0,21190.0,3,10,8.0,4,1.0 -4532,6895,2441.778943032712,37.0,111,0.0,67,1.0,1.0,4.0,2.5,0.0,320.0,0.0,0.0,0.0,0.0,24405.75,2050.0,13780.0,3,8,7.0,4,1.0 -4533,6897,4502.203503437167,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21860.0,0.0,0.0,21568.4,0.0,0.0,5,7,5.0,3,0.0 -4534,6899,2088.736957777892,29.0,212,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43012.7,0.0,38240.0,2,3,0.0,4,2.0 -4535,6900,2862.4654438842736,45.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32287.25,0.0,32010.0,3,10,8.0,4,2.0 -4536,6902,3782.1404570536847,28.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36490.392857142855,0.0,36730.0,3,10,8.0,4,2.0 -4537,6903,2960.6057156638544,37.0,111,2360.0,67,1.0,0.0,1.0,1.0,0.0,3650.0,0.0,0.0,0.0,0.0,10602.5,480.0,1770.0,3,7,6.0,1,1.0 -4538,6904,1734.3557263431371,55.0,300,0.0,11,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,236.0,0.0,75549.35,0.0,2690.0,1,0,0.0,4,1.0 -4539,6907,1402.348173170277,40.0,112,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,49158.05,0.0,42060.0,2,10,0.0,4,2.0 -4540,6909,1776.6727448253332,40.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,18.0,0.0,66619.05,0.0,63350.0,2,8,6.0,4,2.0 -4541,6910,4043.6360352040424,40.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54898.5,0.0,51880.0,2,8,0.0,4,2.0 -4542,6911,2035.3459336901012,59.0,111,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40078.2,0.0,43280.0,1,9,7.0,4,1.0 -4543,6912,2592.1257876912914,67.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31220.0,0.0,0.0,31216.15,0.0,0.0,1,9,7.0,1,0.0 -4544,6914,1103.4586871541223,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18220.0,0.0,0.0,18788.0,0.0,0.0,3,7,5.0,3,0.0 -4545,6917,2146.358827752405,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28780.0,0.0,0.0,32573.3,0.0,400.0,1,9,7.0,1,0.0 -4546,6918,1103.8387103584453,60.0,112,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21760.0,93.0,0.0,25288.2,0.0,0.0,1,6,1.0,3,0.0 -4547,6919,4041.5501456789,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12710.0,0.0,0.0,12714.0,0.0,0.0,1,8,7.0,1,0.0 -4548,6921,3538.7380753458983,27.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35463.85,0.0,38550.0,3,10,8.0,3,2.0 -4549,6924,2978.6619805190326,56.0,221,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12150.0,0.0,0.0,33921.5,0.0,21770.0,1,1,3.0,3,1.0 -4550,6926,3265.3673136647235,60.0,112,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28710.0,0.0,0.0,75295.8,0.0,50430.0,5,7,0.0,3,1.0 -4551,6927,3701.975283365683,42.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,67521.1,0.0,51960.0,3,10,8.0,4,2.0 -4552,6929,3253.548895516249,32.0,111,4260.0,43,1.0,1.0,1.0,1.0,0.0,700.0,0.0,0.0,0.0,0.0,13616.8,760.0,6210.0,3,10,8.0,1,1.0 -4553,6933,6031.810824560219,53.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32810.55,0.0,32530.0,3,10,8.0,4,1.0 -4554,6934,4162.963770848382,61.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8471.0,0.0,0.0,3,8,7.0,1,0.0 -4555,6935,3860.221764628451,59.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8090.0,0.0,0.0,18733.85,0.0,7410.0,3,10,8.0,1,1.0 -4556,6936,1895.7786414332202,48.0,111,950.0,48,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,29879.65,0.0,29410.0,1,6,5.0,4,2.0 -4557,6938,2227.083983054174,56.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,80609.35,0.0,95440.0,1,6,5.0,3,1.0 -4558,6939,894.1880990538901,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39610.0,0.0,0.0,44389.05,0.0,0.0,1,4,4.0,3,0.0 -4559,6941,2575.7484095132545,33.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50765.15,0.0,44100.0,2,9,1.0,4,2.0 -4560,6942,3403.9940037708884,39.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46142.8,0.0,40290.0,2,7,0.0,4,2.0 -4561,6944,2780.6886669693504,38.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35655.85,0.0,29330.0,3,6,0.0,4,2.0 -4562,6945,1730.7988827826139,49.0,111,4700.0,43,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,59551.0,0.0,57150.0,1,9,7.0,4,3.0 -4563,6946,3127.6407683242032,87.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47840.0,0.0,0.0,43767.45,0.0,0.0,1,1,1.0,3,0.0 -4564,6947,1379.9708639166383,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26390.0,0.0,0.0,24781.85,0.0,0.0,1,7,5.0,3,0.0 -4565,6949,1274.116639412209,57.0,300,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,839.0,0.0,50877.15,0.0,19850.0,1,0,0.0,4,2.0 -4566,6950,2414.3730607374505,77.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24930.0,0.0,0.0,23723.05,0.0,0.0,1,8,7.0,3,0.0 -4567,6951,5007.6784282005765,55.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37390.6,0.0,38190.0,2,4,4.0,1,1.0 -4568,6952,1126.4054020853862,55.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39534.65,0.0,41770.0,1,9,7.0,3,2.0 -4569,6953,2589.950322765227,63.0,111,0.0,68,2.0,2.0,3.0,2.0,0.0,0.0,0.0,16180.0,0.0,0.0,53374.5,0.0,41040.0,1,10,8.0,4,2.0 -4570,6955,3104.7329155954358,83.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12170.0,0.0,0.0,12888.65,0.0,0.0,1,7,2.0,1,0.0 -4571,6956,2459.363778269625,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9010.0,0.0,0.0,10522.0,0.0,0.0,3,6,5.0,1,0.0 -4572,6958,1547.5586319619347,88.0,120,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26860.0,0.0,0.0,26187.9,0.0,0.0,1,0,0.0,3,0.0 -4573,6959,2855.7247878693206,59.0,111,26650.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32313.35,0.0,9270.0,1,7,5.0,3,1.0 -4574,6960,2604.2490383036156,42.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12046.6,0.0,12290.0,3,8,7.0,1,1.0 -4575,6961,3801.7894373275526,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14310.0,0.0,0.0,14310.0,0.0,0.0,3,9,7.0,1,0.0 -4576,6963,3476.212191450126,89.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11980.0,0.0,0.0,11618.75,0.0,0.0,1,9,7.0,1,0.0 -4577,6964,2947.4883225740523,39.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26549.15,0.0,28700.0,2,9,1.0,1,1.0 -4578,6965,3344.8319529478267,61.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41520.0,0.0,0.0,34557.25,0.0,1060.0,1,8,6.0,3,0.0 -4579,6967,6875.207948986527,65.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15420.0,0.0,0.0,15143.85,0.0,0.0,1,0,0.0,1,0.0 -4580,6969,2541.623721624699,60.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26313.8,0.0,29310.0,3,8,7.0,1,1.0 -4581,6970,2939.7493490800443,43.0,111,5070.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11267.35,0.0,1530.0,3,8,7.0,1,1.0 -4582,6972,1531.235251277537,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47230.0,46.0,0.0,45995.45,0.0,0.0,1,6,4.0,3,0.0 -4583,6973,1845.4553852034528,61.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27440.0,0.0,0.0,26370.85,0.0,0.0,1,8,1.0,3,0.0 -4584,6974,4789.513883697318,63.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17110.0,0.0,0.0,16882.15,0.0,0.0,1,1,3.0,1,0.0 -4585,6975,2375.230619315134,42.0,112,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,65096.2,0.0,63660.0,2,8,0.0,4,2.0 -4586,6978,1875.2419249607788,47.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46125.8,0.0,49530.0,2,7,0.0,3,2.0 -4587,6979,2712.4636628815024,66.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,13880.0,1029.0,0.0,74234.7,0.0,39860.0,1,10,8.0,1,1.0 -4588,6981,1479.4702856351446,49.0,221,0.0,21,2.0,2.0,2.0,1.5,1380.0,0.0,0.0,0.0,0.0,0.0,28746.8,0.0,11010.0,1,1,1.0,3,2.0 -4589,6982,2871.8542055587354,29.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,4680.0,0.0,0.0,0.0,0.0,9003.4,250.0,1230.0,3,9,7.0,1,1.0 -4590,6983,3699.66680433656,20.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3513.0,0.0,0.0,3,10,8.0,1,1.0 -4591,6985,2715.0854261872632,66.0,300,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,26340.0,0.0,0.0,28220.3,0.0,140.0,1,0,0.0,5,1.0 -4592,6986,2029.9623830765383,55.0,221,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46291.5,0.0,48140.0,5,1,2.0,4,2.0 -4593,6988,4179.84756576165,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16014.0,0.0,13770.0,3,7,5.0,1,0.0 -4594,6990,929.0147769133588,76.0,300,0.0,71,1.0,1.0,3.0,2.0,0.0,0.0,0.0,19260.0,0.0,0.0,18882.15,0.0,500.0,1,0,0.0,4,1.0 -4595,6991,1499.5291365796506,52.0,112,3690.0,22,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,22744.95,0.0,0.0,2,3,0.0,4,3.0 -4596,6992,4418.181105017207,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22580.0,0.0,0.0,20064.75,0.0,0.0,1,8,6.0,1,0.0 -4597,6993,3560.3604424037476,62.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,68025.1,0.0,77090.0,3,10,8.0,1,1.0 -4598,6994,1966.0604107829008,55.0,111,0.0,56,1.0,1.0,4.0,2.5,0.0,0.0,0.0,11000.0,0.0,0.0,18120.9,0.0,7990.0,1,8,6.0,5,1.0 -4599,6995,4469.799917175237,73.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16820.0,0.0,0.0,16808.7,0.0,0.0,1,8,0.0,3,0.0 -4600,6996,4647.987050082229,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18000.0,0.0,0.0,17816.6,0.0,0.0,3,8,6.0,1,0.0 -4601,6997,3156.1700032095778,65.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,38180.0,384.0,0.0,47735.9,0.0,0.0,1,9,7.0,3,1.0 -4602,6998,945.3676191567254,67.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63570.0,0.0,0.0,54016.55,0.0,0.0,1,10,4.0,3,0.0 -4603,7000,2138.621996847876,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31410.0,0.0,0.0,30034.15,0.0,0.0,1,9,7.0,3,0.0 -4604,7002,4565.223291269515,20.0,111,0.0,56,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,52.0,0.0,2352.0,0.0,0.0,4,9,7.0,1,1.0 -4605,7004,3194.630019001692,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18610.0,0.0,0.0,17825.0,0.0,0.0,3,7,6.0,1,0.0 -4606,7007,1093.740749395235,36.0,111,0.0,62,1.0,1.0,6.0,2.7,0.0,4280.0,0.0,0.0,0.0,0.0,37616.2,0.0,18780.0,3,8,7.0,4,1.0 -4607,7008,1850.957877324726,42.0,111,55270.0,31,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,57769.0,0.0,3480.0,3,7,5.0,4,2.0 -4608,7010,4030.1285206438815,52.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26180.3,0.0,26930.0,3,9,7.0,2,1.0 -4609,7011,1661.0568543216466,87.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19800.0,253.0,0.0,26388.4,0.0,0.0,1,7,6.0,3,0.0 -4610,7012,999.4710916083101,48.0,111,0.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50444.15,0.0,53730.0,2,9,7.0,4,3.0 -4611,7013,2091.417852041415,40.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,73660.45,0.0,0.0,2,7,5.0,2,1.0 -4612,7014,3318.3267871342255,66.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,22100.0,0.0,0.0,28069.75,0.0,9600.0,5,8,6.0,1,1.0 -4613,7015,2232.1883741821516,51.0,111,0.0,54,1.0,0.0,2.0,1.5,0.0,5230.0,0.0,2660.0,0.0,0.0,7779.0,0.0,0.0,1,8,7.0,2,1.0 -4614,7017,960.729700369149,52.0,112,0.0,62,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,37978.45,0.0,39150.0,1,7,1.0,4,3.0 -4615,7018,2790.425162794522,32.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17469.7,0.0,18470.0,3,9,7.0,1,1.0 -4616,7019,2098.299602449563,58.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14480.0,0.0,0.0,14110.8,0.0,0.0,1,7,0.0,3,0.0 -4617,7021,2406.2527274864347,71.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3260.0,0.0,0.0,3253.3,0.0,0.0,1,0,0.0,1,0.0 -4618,7023,2287.099434731798,39.0,211,6330.0,56,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,18168.85,0.0,360.0,3,4,3.0,4,2.0 -4619,7024,4368.906325415791,44.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30642.3,0.0,31520.0,5,10,8.0,4,2.0 -4620,7025,3088.625934090141,56.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26303.95,0.0,26480.0,1,10,8.0,3,2.0 -4621,7027,3626.0762089198797,28.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,264.0,0.0,0.0,3,9,7.0,1,0.0 -4622,7028,1781.8235834205286,25.0,112,0.0,64,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,45007.95,0.0,33250.0,3,9,0.0,4,2.0 -4623,7029,2175.1445803845104,53.0,111,3950.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,56.0,0.0,27328.4,0.0,23860.0,3,10,8.0,2,1.0 -4624,7030,3576.987312919032,47.0,111,0.0,38,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,443.0,0.0,64623.75,0.0,66340.0,1,10,8.0,4,1.0 -4625,7031,1658.862961411279,35.0,112,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,54936.05,0.0,39050.0,2,10,0.0,4,2.0 -4626,7033,2674.7722229602414,49.0,120,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19400.1,0.0,18690.0,2,0,2.0,4,2.0 -4627,7034,3297.3892054562684,80.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8030.0,0.0,0.0,8041.0,0.0,0.0,5,6,0.0,1,0.0 -4628,7036,3095.9150015391956,62.0,221,0.0,35,1.0,1.0,2.0,1.5,8750.0,0.0,0.0,0.0,0.0,0.0,14339.95,0.0,0.0,1,1,1.0,3,1.0 -4629,7037,5634.956585173184,47.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25655.3,0.0,27350.0,3,4,4.0,1,1.0 -4630,7042,2846.506259263771,76.0,112,0.0,78,0.0,0.0,1.0,1.0,3410.0,0.0,0.0,8080.0,0.0,0.0,11632.0,0.0,0.0,1,9,1.0,1,0.0 -4631,7047,3181.2972666012283,32.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37220.8,0.0,39550.0,3,8,6.0,3,2.0 -4632,7048,2295.576968003241,62.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52180.0,0.0,0.0,54846.7,0.0,0.0,1,10,0.0,3,0.0 -4633,7049,2719.095857327579,37.0,111,0.0,69,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40143.95,0.0,38630.0,2,9,7.0,4,2.0 -4634,7052,4801.743702724591,74.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20630.0,0.0,0.0,20410.6,0.0,0.0,1,1,1.0,3,0.0 -4635,7053,2870.9997009226327,29.0,120,10180.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10720.0,0.0,0.0,3,0,2.0,1,1.0 -4636,7054,2088.4978357871883,53.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25250.0,0.0,0.0,44685.8,0.0,23390.0,2,8,7.0,3,1.0 -4637,7055,2611.074404201098,46.0,112,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33398.4,0.0,31820.0,2,6,0.0,4,2.0 -4638,7056,2874.2137868350483,59.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,22360.0,0.0,0.0,38496.6,0.0,17800.0,2,10,8.0,3,2.0 -4639,7057,3183.1186216530364,55.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23560.0,0.0,0.0,49125.75,0.0,28980.0,3,10,8.0,3,1.0 -4640,7058,3125.8197830259264,27.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37443.5,0.0,39770.0,3,10,8.0,3,2.0 -4641,7059,2158.2495785865563,33.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44608.65,0.0,34880.0,3,6,5.0,4,2.0 -4642,7061,1960.0266981076552,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26920.0,0.0,0.0,26361.95,0.0,0.0,1,9,7.0,3,0.0 -4643,7064,3737.2786167220765,48.0,111,0.0,64,1.0,1.0,3.0,1.8,0.0,270.0,0.0,0.0,0.0,0.0,19284.95,1870.0,16090.0,3,10,8.0,4,1.0 -4644,7065,3567.556419223115,21.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13706.0,0.0,6500.0,4,9,7.0,1,1.0 -4645,7066,2609.0260127291613,39.0,120,8480.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,10530.6,0.0,3090.0,4,0,3.0,1,1.0 -4646,7069,1155.1504914871703,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59000.0,0.0,0.0,52076.9,0.0,0.0,1,8,7.0,3,0.0 -4647,7070,2720.10653264847,58.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,216.0,0.0,83316.15,0.0,82840.0,2,9,1.0,3,2.0 -4648,7071,2461.482996071219,30.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16016.0,0.0,16150.0,3,6,5.0,1,1.0 -4649,7072,3727.256547970192,40.0,111,16090.0,37,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25868.3,0.0,0.0,2,9,7.0,2,1.0 -4650,7074,1830.6981430164385,72.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,2060.0,11480.0,0.0,0.0,23415.3,0.0,0.0,1,8,0.0,3,0.0 -4651,7075,1407.1748872735707,85.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25780.0,0.0,0.0,25862.15,0.0,0.0,5,9,7.0,3,0.0 -4652,7076,1838.6783623237802,74.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16210.0,0.0,0.0,17391.7,0.0,0.0,1,0,0.0,1,0.0 -4653,7078,2243.0084438622316,41.0,400,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43614.25,0.0,42620.0,2,0,0.0,4,2.0 -4654,7079,1887.0813845643336,67.0,112,0.0,12,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25070.0,88.0,0.0,39720.95,0.0,0.0,2,9,2.0,3,1.0 -4655,7083,3629.711471438232,23.0,111,1230.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5792.6,0.0,5180.0,5,9,7.0,1,1.0 -4656,7084,3752.7648787037797,33.0,111,10170.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36588.35,0.0,23920.0,3,9,7.0,4,2.0 -4657,7085,2683.3514035625144,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,5440.0,3370.0,0.0,0.0,9720.0,0.0,0.0,3,6,4.0,1,0.0 -4658,7086,3167.4280724584223,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14480.0,0.0,0.0,15440.0,0.0,0.0,3,10,8.0,1,0.0 -4659,7087,2102.671565271509,51.0,112,0.0,47,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29073.8,0.0,29110.0,1,8,0.0,4,3.0 -4660,7088,2380.8303335020546,26.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43846.75,0.0,36700.0,2,7,0.0,4,2.0 -4661,7089,5007.348347667403,36.0,112,7560.0,21,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,97767.6,0.0,0.0,3,9,3.0,4,2.0 -4662,7091,2715.508137769389,53.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,33115.7,0.0,39310.0,2,10,8.0,1,1.0 -4663,7092,3604.1584763554115,24.0,400,610.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26652.0,0.0,24740.0,3,0,0.0,4,2.0 -4664,7095,3423.641231090155,78.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17440.0,0.0,0.0,17953.0,0.0,0.0,1,0,0.0,3,0.0 -4665,7096,2312.7631168775806,32.0,120,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,6.0,0.0,54171.65,0.0,49400.0,3,0,1.0,4,2.0 -4666,7097,2756.1975547008037,55.0,111,16840.0,42,3,1.0,4.0,2.5,0.0,0.0,0.0,19590.0,0.0,0.0,73784.85,0.0,36320.0,1,8,7.0,4,3.0 -4667,7099,1651.6244876328412,43.0,112,0.0,38,2.0,2.0,3.0,2.0,1920.0,0.0,0.0,9260.0,0.0,0.0,43879.1,0.0,32020.0,1,9,0.0,5,2.0 -4668,7101,2086.9805042372964,57.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14380.0,0.0,0.0,13241.7,0.0,0.0,1,5,4.0,1,0.0 -4669,7103,2643.664818840133,36.0,400,0.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,4.0,0.0,47032.6,910.0,12520.0,2,0,0.0,4,2.0 -4670,7104,2485.5892025425337,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15400.0,0.0,0.0,15936.5,0.0,0.0,1,10,8.0,1,0.0 -4671,7105,1864.489648324453,54.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13641.2,0.0,19940.0,2,6,0.0,2,1.0 -4672,7106,3583.628234054531,44.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,61489.85,0.0,47400.0,3,10,8.0,2,1.0 -4673,7107,3212.6807283589865,46.0,111,0.0,65,1.0,1.0,3.0,2.0,0.0,0.0,0.0,14380.0,0.0,0.0,35080.45,0.0,19110.0,3,10,8.0,5,1.0 -4674,7112,1868.8975149342398,80.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18340.0,0.0,0.0,17893.95,0.0,0.0,1,0,0.0,1,0.0 -4675,7113,2991.5177307999256,23.0,111,0.0,56,1.0,0.0,2.0,1.3,0.0,5750.0,0.0,0.0,0.0,0.0,12412.0,0.0,0.0,3,8,7.0,2,1.0 -4676,7115,1388.6312318554185,51.0,120,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,83633.6,0.0,89410.0,1,0,0.0,4,2.0 -4677,7116,1009.246455807375,49.0,112,0.0,23,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,24.0,0.0,94189.6,0.0,29360.0,1,10,4.0,4,2.0 -4678,7117,2017.706121562419,49.0,112,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,419.0,0.0,14624.15,0.0,12950.0,1,9,0.0,4,2.0 -4679,7118,3619.4318345356915,32.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17328.7,0.0,18330.0,3,9,7.0,1,1.0 -4680,7119,3139.763774313622,57.0,111,0.0,64,1.0,0.0,2.0,1.5,0.0,5010.0,0.0,0.0,0.0,0.0,8550.0,0.0,0.0,3,10,8.0,2,1.0 -4681,7122,3444.4473272704477,31.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55822.9,0.0,54160.0,2,9,7.0,4,2.0 -4682,7123,1292.3655595924,38.0,111,7310.0,62,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32282.85,0.0,23230.0,3,8,7.0,4,2.0 -4683,7124,2626.504237512216,37.0,111,23290.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,26.0,0.0,46251.6,0.0,25700.0,3,8,7.0,4,2.0 -4684,7125,3578.9998797282124,26.0,112,0.0,69,2.0,2.0,2.0,1.5,6700.0,0.0,0.0,0.0,0.0,0.0,24706.0,0.0,17780.0,3,8,0.0,3,2.0 -4685,7126,1847.6657741718911,58.0,111,8660.0,38,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,482.0,0.0,94307.3,0.0,81130.0,1,9,7.0,4,3.0 -4686,7127,5004.800296854509,31.0,400,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34901.65,0.0,22680.0,2,0,0.0,5,2.0 -4687,7128,2936.1902617763744,45.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,78814.55,0.0,83660.0,1,9,7.0,4,2.0 -4688,7129,2692.235416951746,44.0,112,0.0,47,2.0,1.0,5.0,3.0,8750.0,0.0,0.0,0.0,0.0,0.0,33859.15,0.0,25500.0,1,8,0.0,4,2.0 -4689,7130,3371.322949854127,54.0,111,0.0,56,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,18896.0,0.0,8900.0,3,10,8.0,2,2.0 -4690,7131,3209.8127335378485,59.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,12290.0,0.0,0.0,22184.05,0.0,10800.0,3,9,7.0,1,1.0 -4691,7132,2782.9025342592145,56.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60505.85,0.0,67880.0,2,9,7.0,3,2.0 -4692,7134,1407.0402156626612,60.0,211,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,73850.0,75.0,0.0,92627.8,0.0,33000.0,1,1,3.0,5,1.0 -4693,7135,4276.809783289807,26.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11512.0,0.0,430.0,4,10,8.0,1,1.0 -4694,7136,3708.8807657303983,28.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37466.65,0.0,37810.0,3,8,7.0,3,2.0 -4695,7139,3375.9239547934435,49.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39691.15,0.0,42730.0,3,8,6.0,3,2.0 -4696,7140,6463.65694832771,52.0,111,8870.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54630.15,0.0,55770.0,1,8,6.0,4,2.0 -4697,7142,1913.3688001801847,64.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11730.0,454.0,0.0,30242.65,0.0,0.0,1,9,7.0,3,0.0 -4698,7143,1430.5780632489736,26.0,120,11310.0,62,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24490.6,0.0,2890.0,3,0,1.0,4,1.0 -4699,7146,3447.16785295352,46.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,15.0,0.0,21356.6,0.0,23400.0,1,9,7.0,1,1.0 -4700,7147,3223.509661412229,29.0,112,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15018.95,0.0,15160.0,3,8,1.0,1,1.0 -4701,7149,3833.152354646882,44.0,111,7880.0,85,0.0,0.0,1.0,1.0,0.0,460.0,0.0,0.0,0.0,0.0,8128.1,0.0,0.0,3,10,8.0,1,0.0 -4702,7150,2671.803869601529,58.0,111,0.0,63,2.0,2.0,4.0,2.5,7290.0,0.0,0.0,0.0,0.0,0.0,44823.9,0.0,38970.0,3,10,8.0,4,2.0 -4703,7151,3306.617153565965,43.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,77988.6,0.0,77710.0,3,10,8.0,4,2.0 -4704,7154,3025.811402111089,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37440.0,127.0,0.0,34929.7,0.0,0.0,1,8,7.0,1,0.0 -4705,7156,2160.8516462996067,44.0,112,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12810.0,0.0,0.0,28102.75,0.0,15140.0,2,8,0.0,3,1.0 -4706,7157,1404.7347906820305,45.0,111,0.0,55,3,3.0,4.0,2.5,0.0,4630.0,0.0,0.0,0.0,0.0,37027.95,450.0,28510.0,3,9,7.0,4,3.0 -4707,7158,2572.8991436724527,43.0,111,0.0,35,1.0,1.0,2.0,1.3,0.0,320.0,0.0,0.0,0.0,0.0,17874.3,2600.0,9750.0,3,9,7.0,2,1.0 -4708,7159,3055.3222424529877,56.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16190.0,0.0,0.0,38864.3,0.0,25590.0,1,9,0.0,3,1.0 -4709,7160,3749.234875389448,54.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16410.0,0.0,0.0,36218.15,0.0,22360.0,1,6,4.0,3,1.0 -4710,7161,1878.137238712823,73.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18170.0,0.0,0.0,18170.0,0.0,0.0,3,0,0.0,3,0.0 -4711,7164,3799.8259479948497,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4800.0,0.0,0.0,3,9,7.0,1,0.0 -4712,7165,1312.0027280685338,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35940.0,4.0,0.0,64918.8,0.0,0.0,1,9,7.0,3,0.0 -4713,7166,1997.1985350224932,55.0,111,190.0,63,1.0,0.0,2.0,1.5,0.0,5510.0,0.0,0.0,0.0,0.0,17137.75,550.0,9280.0,2,6,5.0,3,1.0 -4714,7175,2952.942531163851,61.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9320.0,0.0,0.0,19837.65,0.0,13390.0,1,9,7.0,1,1.0 -4715,7177,1820.3058480184968,37.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38922.85,0.0,38060.0,2,6,4.0,4,2.0 -4716,7178,4352.481866804511,24.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5115.35,0.0,2670.0,3,10,8.0,1,1.0 -4717,7182,2275.08418067826,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54860.0,0.0,0.0,44246.85,0.0,0.0,1,9,7.0,3,0.0 -4718,7185,1439.0933789008748,36.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,61420.05,0.0,58350.0,2,9,2.0,4,2.0 -4719,7186,6219.802439986133,31.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21989.3,0.0,22300.0,3,9,7.0,1,1.0 -4720,7188,2144.4129661204684,44.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,25.0,0.0,57912.45,0.0,53390.0,1,10,8.0,4,2.0 -4721,7190,2702.140969137072,34.0,112,2810.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46634.9,0.0,44190.0,2,10,2.0,4,2.0 -4722,7191,1403.1210270012214,81.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19000.0,0.0,0.0,19017.5,0.0,0.0,1,7,0.0,3,0.0 -4723,7192,2179.561317639443,54.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,2580.0,0.0,0.0,0.0,0.0,16663.25,0.0,15200.0,2,8,7.0,2,2.0 -4724,7193,2589.6925984761847,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30540.0,0.0,0.0,27401.2,0.0,0.0,1,8,6.0,1,0.0 -4725,7194,3145.413464218062,61.0,111,670.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16490.0,0.0,0.0,15735.35,0.0,0.0,3,10,8.0,1,0.0 -4726,7195,3049.9395243032195,52.0,221,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12595.05,0.0,12990.0,2,1,2.0,1,1.0 -4727,7197,1294.3671008883132,70.0,400,0.0,35,1.0,0.0,2.0,1.5,0.0,0.0,0.0,37620.0,0.0,0.0,34263.65,0.0,0.0,1,0,1.0,3,1.0 -4728,7199,2606.9382827386044,34.0,120,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28708.0,0.0,21150.0,1,0,0.0,4,2.0 -4729,7200,2876.2740263504897,43.0,300,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,49.0,0.0,35307.2,0.0,23090.0,2,0,0.0,4,2.0 -4730,7201,1428.020213281429,43.0,111,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48173.25,0.0,51710.0,1,7,5.0,4,2.0 -4731,7203,1789.4479767665384,38.0,111,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27834.15,0.0,27590.0,5,9,7.0,2,1.0 -4732,7204,1895.9004154338231,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13380.0,0.0,0.0,15608.05,0.0,0.0,1,7,6.0,1,0.0 -4733,7206,3192.338561113854,83.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16990.0,0.0,0.0,16540.0,0.0,0.0,1,8,7.0,1,0.0 -4734,7208,2177.060927259339,51.0,300,0.0,31,2.0,2.0,4.0,2.5,0.0,0.0,0.0,5530.0,0.0,0.0,188178.6,0.0,18010.0,2,0,0.0,4,2.0 -4735,7209,3241.922905928545,84.0,111,0.0,77,0.0,0.0,2.0,1.5,7320.0,0.0,0.0,15710.0,0.0,0.0,23109.15,0.0,0.0,1,8,6.0,5,0.0 -4736,7214,3362.353946926444,53.0,400,0.0,69,1.0,1.0,2.0,1.5,0.0,5490.0,0.0,0.0,0.0,0.0,18750.1,0.0,13550.0,1,0,0.0,5,1.0 -4737,7215,3892.758402994654,62.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,5520.0,3260.0,0.0,0.0,11564.0,0.0,0.0,3,8,7.0,1,0.0 -4738,7216,2254.9344026791305,34.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54980.35,0.0,44580.0,2,7,1.0,4,2.0 -4739,7219,5872.683849392527,53.0,112,5540.0,22,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11706.0,0.0,6270.0,5,8,0.0,3,2.0 -4740,7220,1521.38581510379,50.0,221,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31435.7,0.0,31920.0,1,1,2.0,3,2.0 -4741,7221,2296.748374815479,64.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23700.0,0.0,0.0,22024.6,0.0,0.0,1,1,3.0,3,0.0 -4742,7223,1676.2339216896685,71.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26880.0,0.0,0.0,26186.95,0.0,0.0,1,0,0.0,3,0.0 -4743,7224,2105.8067833795167,56.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,25.0,0.0,56549.6,0.0,68640.0,1,8,0.0,1,1.0 -4744,7227,1224.6323762391567,51.0,112,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8310.0,0.0,0.0,77234.0,0.0,49830.0,3,9,1.0,3,1.0 -4745,7228,2178.076386073167,55.0,400,4730.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49342.25,0.0,27860.0,1,0,0.0,3,2.0 -4746,7229,1442.158382617037,32.0,300,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26383.6,0.0,26530.0,3,0,0.0,4,2.0 -4747,7230,4816.122873436129,80.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20500.0,0.0,0.0,31468.35,0.0,0.0,1,7,5.0,1,0.0 -4748,7231,2146.3557078272447,31.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49086.45,0.0,37850.0,2,9,7.0,4,2.0 -4749,7232,3145.3548365246907,61.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12077.85,0.0,12410.0,3,10,8.0,1,1.0 -4750,7234,2509.7222147114962,82.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,61300.0,0.0,0.0,52916.0,0.0,0.0,3,0,0.0,1,0.0 -4751,7235,1561.595683165221,48.0,112,0.0,46,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,272.0,0.0,48194.55,0.0,42250.0,2,9,3.0,4,2.0 -4752,7236,3193.3833650138936,44.0,111,0.0,68,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37710.0,0.0,38950.0,5,10,8.0,4,2.0 -4753,7237,3086.802163068808,81.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14320.0,0.0,0.0,15024.0,0.0,0.0,3,1,3.0,1,0.0 -4754,7238,3016.388327523449,55.0,111,0.0,43,3,1.0,3.0,2.0,0.0,6540.0,0.0,0.0,0.0,0.0,20541.0,460.0,7550.0,3,8,6.0,4,3.0 -4755,7239,3620.098318384342,54.0,111,0.0,63,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,38067.75,320.0,36140.0,3,10,8.0,4,3.0 -4756,7240,2796.2532265645773,31.0,111,0.0,54,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,18240.25,2770.0,7470.0,3,8,6.0,4,1.0 -4757,7241,3461.5237080733446,30.0,111,4550.0,35,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,111.0,0.0,30362.2,0.0,25040.0,2,10,8.0,4,2.0 -4758,7243,3102.102850978492,46.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24521.05,0.0,25650.0,3,10,8.0,2,1.0 -4759,7244,2971.0742728139558,48.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,79754.0,0.0,107030.0,2,8,6.0,1,1.0 -4760,7245,2272.7659809828865,51.0,111,10860.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,86.0,0.0,142909.1,0.0,133530.0,2,9,7.0,4,2.0 -4761,7246,1645.386230803698,38.0,111,0.0,53,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,70138.55,0.0,34820.0,3,6,5.0,4,2.0 -4762,7247,2153.0686816427888,81.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23720.0,0.0,0.0,23505.9,0.0,0.0,1,0,0.0,3,0.0 -4763,7249,3045.2628304380983,54.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41868.7,0.0,44890.0,3,10,8.0,3,2.0 -4764,7250,3098.159596481886,41.0,111,4930.0,63,2.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,33689.4,0.0,15180.0,3,9,7.0,4,2.0 -4765,7251,1359.6900687273576,54.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,6.0,0.0,64484.0,0.0,67330.0,3,6,4.0,3,2.0 -4766,7252,1263.3784517007216,72.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18640.0,0.0,0.0,17840.45,0.0,0.0,1,10,1.0,1,0.0 -4767,7253,2922.535610441695,38.0,111,0.0,69,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,10710.0,73054.45,0.0,40700.0,2,6,5.0,4,2.0 -4768,7257,2566.4363773218033,45.0,112,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11450.0,168.0,0.0,99.44999999999999,0.0,0.0,2,8,2.0,1,0.0 -4769,7260,6788.157526634842,27.0,400,2350.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27707.0,0.0,20850.0,3,0,1.0,4,2.0 -4770,7261,4118.37672245434,61.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,210.5,0.0,0.0,1,1,2.0,1,0.0 -4771,7264,4222.198475345232,43.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16595.0,0.0,16570.0,5,9,7.0,1,1.0 -4772,7265,3668.187353359903,61.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17660.0,0.0,0.0,25990.6,0.0,9910.0,1,10,8.0,3,1.0 -4773,7266,2078.6044212237284,43.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,31.0,0.0,47844.85,0.0,50460.0,3,6,0.0,4,2.0 -4774,7268,2214.892521442319,33.0,400,6190.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45576.8,0.0,30450.0,3,0,0.0,4,1.0 -4775,7270,3118.2813598468715,42.0,112,3070.0,11,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,4951.05,0.0,0.0,1,7,0.0,2,1.0 -4776,7274,765.8604934082042,47.0,300,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58024.2,0.0,57710.0,2,0,0.0,4,2.0 -4777,7275,1652.9861506610637,46.0,111,0.0,52,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,43406.6,0.0,34720.0,1,9,7.0,4,2.0 -4778,7277,2696.783530997073,50.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,118215.6,0.0,151770.0,2,10,8.0,3,2.0 -4779,7278,1858.4844212298897,91.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15790.0,0.0,0.0,16296.0,0.0,0.0,1,8,7.0,1,0.0 -4780,7279,2758.001412235378,38.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21940.5,0.0,24120.0,3,6,4.0,1,1.0 -4781,7281,2412.8431963588505,36.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32404.7,0.0,33820.0,3,10,5.0,3,2.0 -4782,7282,1299.363105706193,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44330.0,0.0,0.0,40761.95,0.0,0.0,1,8,7.0,3,0.0 -4783,7283,2811.4845952699548,52.0,111,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,1670.0,0.0,62548.8,0.0,37430.0,1,9,7.0,2,1.0 -4784,7285,1496.820621933901,71.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49110.0,89.0,0.0,42949.3,0.0,0.0,1,4,0.0,3,0.0 -4785,7287,3951.0891817548504,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21010.0,0.0,0.0,20381.3,0.0,0.0,3,10,8.0,1,0.0 -4786,7289,1649.800772925569,59.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,55339.3,0.0,64820.0,1,7,5.0,4,2.0 -4787,7296,3823.879275515305,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18540.0,839.0,0.0,23585.85,0.0,0.0,3,10,8.0,1,0.0 -4788,7298,3823.540154066181,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29190.0,0.0,0.0,29928.1,0.0,0.0,1,10,8.0,3,0.0 -4789,7300,3374.006914384333,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5871.0,0.0,1150.0,3,8,7.0,1,0.0 -4790,7302,1969.8876314169513,22.0,211,0.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18661.6,0.0,17210.0,3,3,4.0,3,2.0 -4791,7303,1254.289985836134,45.0,111,4950.0,63,2.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,40079.8,0.0,21680.0,3,9,7.0,4,2.0 -4792,7304,904.3940107623278,59.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28170.0,0.0,0.0,71754.25,0.0,41650.0,1,6,4.0,3,1.0 -4793,7306,1505.600205908727,53.0,111,0.0,62,2.0,1.0,2.0,1.5,820.0,0.0,0.0,0.0,0.0,8296.0,17995.35,0.0,8290.0,3,8,7.0,3,2.0 -4794,7307,2780.5914344325006,24.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34661.7,0.0,35190.0,2,6,0.0,3,2.0 -4795,7308,2148.9157703105143,45.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,416.0,0.0,67391.4,0.0,72210.0,1,9,7.0,4,2.0 -4796,7309,2945.252857553729,76.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19680.0,0.0,0.0,19291.3,0.0,0.0,1,9,7.0,3,0.0 -4797,7310,1031.1320074436414,38.0,111,0.0,37,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,40731.8,0.0,33970.0,2,4,4.0,4,2.0 -4798,7311,1513.3084439091576,62.0,111,4380.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,8120.0,0.0,0.0,21511.25,0.0,8890.0,3,8,6.0,3,2.0 -4799,7313,2717.9621370329282,58.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4610.0,0.0,0.0,20013.0,0.0,16200.0,1,9,7.0,1,1.0 -4800,7314,7343.001803440882,33.0,111,0.0,46,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28635.45,0.0,16800.0,3,9,7.0,1,1.0 -4801,7316,2425.5495308341156,63.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19700.0,161.0,0.0,24889.35,0.0,0.0,1,0,0.0,3,0.0 -4802,7317,1762.328906695724,57.0,120,4650.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12607.15,0.0,5620.0,3,0,0.0,1,1.0 -4803,7318,2303.2911715948558,34.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54023.4,0.0,44820.0,2,10,0.0,4,2.0 -4804,7319,2447.395062778092,37.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17354.15,0.0,12000.0,3,6,4.0,1,1.0 -4805,7321,2212.4441232594763,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11770.0,0.0,0.0,11784.0,0.0,0.0,1,9,7.0,1,0.0 -4806,7322,2281.5581098417406,44.0,112,0.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38055.0,0.0,24670.0,3,8,0.0,4,1.0 -4807,7323,2274.9118528639156,50.0,300,0.0,85,1.0,0.0,2.0,1.5,3630.0,0.0,0.0,11940.0,0.0,0.0,19530.15,0.0,4330.0,1,0,0.0,3,1.0 -4808,7324,2555.9751511410404,44.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,41.0,0.0,91994.25,0.0,89650.0,2,10,8.0,4,2.0 -4809,7325,3362.7705971309715,61.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27897.85,0.0,30040.0,3,9,7.0,1,1.0 -4810,7326,1419.7799722809166,30.0,111,870.0,45,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,30372.95,0.0,24370.0,3,8,7.0,4,2.0 -4811,7329,2004.512923072592,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21810.0,0.0,0.0,20191.9,0.0,0.0,3,8,7.0,1,0.0 -4812,7330,4150.949538102914,88.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25220.0,0.0,0.0,24023.9,0.0,0.0,1,9,7.0,1,0.0 -4813,7331,1065.59944694332,40.0,111,0.0,54,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38727.95,0.0,36730.0,1,6,4.0,4,2.0 -4814,7333,2984.2864412395666,39.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,209.0,0.0,75581.25,0.0,77010.0,2,9,7.0,4,2.0 -4815,7336,2608.7701655421442,58.0,120,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43462.05,0.0,46760.0,2,0,0.0,3,1.0 -4816,7337,2189.990414117765,82.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12540.0,0.0,0.0,12544.9,0.0,0.0,1,7,6.0,1,0.0 -4817,7338,3466.425571212852,40.0,111,1060.0,53,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32103.6,0.0,29660.0,5,8,7.0,4,1.0 -4818,7339,2340.904033462167,40.0,111,0.0,52,1.0,0.0,2.0,1.3,0.0,5810.0,0.0,0.0,0.0,0.0,14331.0,260.0,2520.0,3,9,7.0,2,1.0 -4819,7342,1740.9410326598288,81.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20040.0,0.0,0.0,20564.95,0.0,0.0,1,1,2.0,3,0.0 -4820,7349,2749.8324392673885,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41350.0,0.0,0.0,37626.15,0.0,0.0,1,10,8.0,3,0.0 -4821,7350,2477.105298658068,91.0,111,0.0,72,0.0,0.0,1.0,1.0,650.0,0.0,0.0,7710.0,0.0,0.0,8480.0,0.0,0.0,1,9,7.0,1,0.0 -4822,7353,3752.7656283095616,82.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18370.0,701.0,0.0,35648.05,0.0,0.0,1,9,7.0,1,0.0 -4823,7354,1528.0541717131762,37.0,400,0.0,62,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,37147.0,0.0,28200.0,2,0,0.0,4,2.0 -4824,7355,1674.2466813562012,32.0,400,11660.0,63,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,36102.0,0.0,18060.0,2,0,0.0,4,2.0 -4825,7357,3691.193920299314,41.0,111,0.0,47,2.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33663.2,0.0,29490.0,3,9,7.0,4,2.0 -4826,7362,1884.0189748523808,54.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,17690.0,75.0,0.0,83885.9,0.0,77200.0,1,9,0.0,3,2.0 -4827,7363,1292.4739235032816,55.0,112,18690.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36257.15,0.0,19420.0,1,6,0.0,3,2.0 -4828,7364,3236.8580166873553,36.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22341.5,0.0,24320.0,3,8,7.0,1,1.0 -4829,7365,3546.4380035012146,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11000.0,0.0,0.0,13985.75,0.0,0.0,3,9,7.0,1,0.0 -4830,7366,2104.4560936180806,54.0,120,1960.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13180.0,0.0,0.0,58055.65,0.0,18180.0,1,0,0.0,3,1.0 -4831,7367,2478.3367857509397,65.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25420.0,0.0,0.0,24763.0,0.0,0.0,1,0,0.0,1,0.0 -4832,7368,2322.4869474588636,65.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20280.0,216.0,0.0,41559.5,0.0,24380.0,1,10,8.0,3,1.0 -4833,7369,1895.0366238540237,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19540.0,0.0,0.0,19322.3,0.0,0.0,1,9,0.0,3,0.0 -4834,7373,3601.4454686075524,39.0,221,0.0,54,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,49839.85,0.0,25090.0,2,1,2.0,4,2.0 -4835,7374,2335.9597514640636,53.0,112,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,33717.15,0.0,31160.0,3,10,4.0,2,1.0 -4836,7376,2802.229574618331,62.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14476.0,0.0,13540.0,3,8,7.0,1,1.0 -4837,7377,2191.362175997398,47.0,221,0.0,63,2.0,2.0,6.0,3.3,0.0,0.0,0.0,3640.0,0.0,0.0,26447.45,0.0,7200.0,3,1,1.0,4,2.0 -4838,7382,1891.331943213882,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33530.0,0.0,0.0,31599.1,0.0,0.0,1,8,7.0,1,0.0 -4839,7383,845.7487849318392,21.0,400,0.0,63,2.0,2.0,4.0,2.5,0.0,270.0,0.0,0.0,0.0,0.0,23544.8,2360.0,21230.0,1,0,0.0,2,2.0 -4840,7388,1396.0949890016138,57.0,111,0.0,55,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46554.15,0.0,48110.0,1,6,4.0,4,2.0 -4841,7391,2701.713389919379,54.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,66792.45,0.0,76520.0,3,10,8.0,2,2.0 -4842,7393,2777.4514883502493,54.0,112,16240.0,62,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,62694.35,0.0,48460.0,1,7,0.0,4,4.0 -4843,7394,3317.3081541994125,73.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24460.0,0.0,0.0,21763.4,0.0,0.0,1,9,1.0,3,0.0 -4844,7395,3151.3542178744315,51.0,111,0.0,55,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34763.6,0.0,29450.0,5,4,4.0,4,2.0 -4845,7396,1322.3828165618252,63.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,90.0,18230.0,0.0,0.0,20257.6,0.0,0.0,1,9,0.0,3,0.0 -4846,7397,1191.6559197705058,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52350.0,17.0,0.0,47944.5,0.0,0.0,1,5,4.0,3,0.0 -4847,7398,1588.5825267693265,42.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22360.05,0.0,22790.0,2,7,0.0,4,2.0 -4848,7399,2354.1695982508054,54.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42375.75,0.0,45470.0,1,6,0.0,3,2.0 -4849,7400,2907.204469369069,58.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38209.7,0.0,44660.0,2,9,7.0,1,1.0 -4850,7402,1487.9063201892857,83.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36710.0,0.0,0.0,33324.9,0.0,0.0,1,4,4.0,3,0.0 -4851,7403,2846.502244111977,42.0,111,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59270.0,0.0,22690.0,5,6,5.0,4,2.0 -4852,7405,2968.1553067608083,43.0,300,0.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29411.45,0.0,31590.0,3,0,0.0,3,2.0 -4853,7406,3740.7322494980135,40.0,111,0.0,85,0.0,0.0,1.0,1.0,8600.0,0.0,0.0,0.0,0.0,0.0,13000.0,0.0,1520.0,3,9,7.0,1,0.0 -4854,7407,4000.0846020955178,31.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,333.0,0.0,84417.85,0.0,20060.0,1,9,7.0,1,1.0 -4855,7408,1708.7569161984434,74.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30230.0,0.0,0.0,28143.75,0.0,0.0,1,9,7.0,3,0.0 -4856,7411,3807.0857090430136,89.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21320.0,0.0,0.0,21692.65,0.0,0.0,3,0,0.0,3,0.0 -4857,7412,2111.106818962247,68.0,111,0.0,72,0.0,0.0,3.0,1.8,0.0,0.0,0.0,9840.0,44.0,0.0,60077.95,0.0,0.0,1,9,7.0,4,0.0 -4858,7413,1678.6370487315937,58.0,400,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13950.0,0.0,0.0,32061.35,0.0,19930.0,1,0,0.0,3,1.0 -4859,7415,1116.636602752652,56.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21690.0,0.0,0.0,33395.1,0.0,14580.0,1,9,7.0,3,1.0 -4860,7417,4115.9382846019535,37.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54789.65,0.0,29000.0,2,10,8.0,4,2.0 -4861,7418,3006.0237942004287,79.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12060.0,0.0,0.0,11988.5,0.0,0.0,1,9,7.0,1,0.0 -4862,7419,2627.638190294369,61.0,300,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1852.0,0.0,14311.85,0.0,0.0,1,0,0.0,1,1.0 -4863,7420,2674.0765947520404,29.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19206.25,0.0,20590.0,3,9,7.0,1,1.0 -4864,7421,1383.5396589786442,44.0,112,0.0,67,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,125.0,0.0,50126.6,0.0,44920.0,2,10,1.0,4,2.0 -4865,7422,1850.8640392360503,53.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12533.65,0.0,12870.0,1,10,8.0,1,1.0 -4866,7424,1553.6565631519436,27.0,111,9740.0,56,2.0,0.0,3.0,1.8,0.0,940.0,0.0,0.0,0.0,0.0,18070.1,440.0,280.0,3,9,7.0,4,2.0 -4867,7426,2372.812929153797,54.0,112,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3618.65,0.0,0.0,1,9,1.0,1,1.0 -4868,7427,3323.5164634925545,45.0,111,5670.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,16775.0,0.0,6320.0,3,10,8.0,5,1.0 -4869,7428,2861.7342305332854,61.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54040.0,0.0,0.0,57227.75,0.0,5790.0,3,8,7.0,3,0.0 -4870,7429,3137.8798778493847,37.0,112,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,9320.0,0.0,0.0,25060.4,0.0,7150.0,3,6,0.0,4,2.0 -4871,7430,2692.8757400947566,76.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,1180.0,16660.0,0.0,0.0,18188.2,0.0,0.0,1,9,0.0,3,0.0 -4872,7431,1619.7720498639528,44.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43676.55,0.0,46260.0,2,8,6.0,4,2.0 -4873,7432,2323.250693713895,78.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12640.0,0.0,0.0,12516.5,0.0,0.0,3,6,0.0,1,0.0 -4874,7433,2675.6396228132735,60.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54200.6,0.0,60960.0,1,8,6.0,3,2.0 -4875,7434,837.5913909875278,53.0,112,220.0,43,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,333.0,0.0,39444.4,0.0,39370.0,1,9,0.0,5,2.0 -4876,7435,1881.7231181269467,78.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38290.0,0.0,0.0,37688.0,0.0,0.0,1,7,5.0,3,0.0 -4877,7437,1147.6790523501945,44.0,111,0.0,46,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41924.35,0.0,3340.0,1,9,7.0,4,1.0 -4878,7439,2553.4777943993695,53.0,221,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,525.0,0.0,37884.9,0.0,36490.0,3,1,1.0,4,2.0 -4879,7440,2242.36602407171,43.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40162.2,0.0,22400.0,2,9,7.0,4,2.0 -4880,7443,3406.968817605784,38.0,111,4620.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,17284.75,0.0,5020.0,3,9,7.0,2,1.0 -4881,7444,1439.2462661335214,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19790.0,0.0,0.0,19857.35,0.0,0.0,3,9,7.0,1,0.0 -4882,7445,2504.4963016637944,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45670.0,0.0,0.0,41671.05,0.0,0.0,1,9,7.0,3,0.0 -4883,7447,3685.208416775422,29.0,111,10470.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14063.0,0.0,4060.0,3,10,8.0,1,1.0 -4884,7449,3126.3766510812143,72.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11770.0,0.0,0.0,12886.0,0.0,0.0,3,9,7.0,1,0.0 -4885,7453,3802.6642576735435,29.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29586.75,0.0,25310.0,2,8,6.0,1,1.0 -4886,7454,2221.5286371263346,38.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,42053.95,0.0,36040.0,3,4,3.0,4,2.0 -4887,7459,4069.3154412218596,27.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25975.1,0.0,24150.0,5,9,1.0,4,2.0 -4888,7460,3432.203582110332,51.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22122.9,0.0,24440.0,3,10,8.0,1,1.0 -4889,7461,5075.025312501442,28.0,111,690.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27918.3,0.0,15100.0,3,5,4.0,4,2.0 -4890,7463,3282.995112723225,53.0,112,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,24730.0,0.0,0.0,23611.65,0.0,220.0,3,9,3.0,4,0.0 -4891,7464,3122.4191681206576,53.0,112,2120.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49406.45,0.0,22580.0,2,5,0.0,4,2.0 -4892,7467,1700.4281216886277,58.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30260.0,0.0,0.0,28088.0,0.0,0.0,1,4,3.0,3,0.0 -4893,7468,4477.6254034438125,46.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,204.0,0.0,63320.8,0.0,48570.0,2,10,8.0,1,1.0 -4894,7469,6103.870939772857,38.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29506.2,0.0,31980.0,2,10,8.0,2,1.0 -4895,7471,1667.573055532982,59.0,300,1930.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18680.0,0.0,0.0,20129.05,0.0,0.0,1,0,0.0,3,1.0 -4896,7472,3129.9632658274145,32.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31001.5,0.0,31060.0,3,10,8.0,5,1.0 -4897,7473,1569.1161287214957,71.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15530.0,0.0,0.0,18548.8,0.0,0.0,1,8,0.0,3,0.0 -4898,7479,1750.1291268157504,47.0,111,12980.0,54,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,52.0,0.0,38137.15,0.0,21970.0,3,9,7.0,2,3.0 -4899,7482,2282.613767787955,81.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13180.0,0.0,0.0,13237.4,0.0,0.0,1,0,1.0,1,0.0 -4900,7483,1354.9982492185609,80.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23480.0,0.0,0.0,23618.45,0.0,0.0,1,6,0.0,3,0.0 -4901,7485,3926.219942668925,29.0,111,4890.0,53,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26581.25,0.0,23940.0,3,7,5.0,3,2.0 -4902,7486,3042.429837681029,58.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22790.0,0.0,0.0,21902.65,0.0,0.0,1,10,8.0,1,0.0 -4903,7487,1859.7499319348885,33.0,112,5010.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,16.0,0.0,33057.4,0.0,25610.0,2,7,0.0,4,2.0 -4904,7488,1374.0255378397944,52.0,111,0.0,48,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41175.4,0.0,37800.0,2,6,5.0,4,3.0 -4905,7489,1715.1644777008203,38.0,111,1070.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,24919.0,0.0,17160.0,3,4,4.0,4,2.0 -4906,7492,1199.1370028639928,59.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,89276.75,0.0,140790.0,1,8,7.0,3,2.0 -4907,7493,1761.480261541413,53.0,111,70430.0,37,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60909.4,0.0,12290.0,1,10,8.0,4,3.0 -4908,7495,3025.881811079487,26.0,111,0.0,84,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,733.4,0.0,0.0,3,9,7.0,1,0.0 -4909,7496,2936.291490665485,88.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12670.0,0.0,0.0,12042.1,0.0,0.0,1,9,7.0,1,0.0 -4910,7497,2035.3481912315904,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14520.0,0.0,0.0,15584.65,0.0,0.0,5,8,7.0,1,0.0 -4911,7499,3195.8145102143335,27.0,111,2310.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17000.0,0.0,12290.0,3,9,7.0,1,1.0 -4912,7500,3179.5851397509978,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9680.0,0.0,0.0,11096.0,0.0,0.0,3,7,5.0,1,0.0 -4913,7501,2926.3522639149787,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16890.0,0.0,0.0,16859.75,0.0,0.0,3,8,6.0,1,0.0 -4914,7503,1406.5386839702253,56.0,111,0.0,68,1.0,1.0,2.0,1.5,2850.0,0.0,0.0,14890.0,0.0,0.0,32674.4,0.0,15260.0,1,6,4.0,3,1.0 -4915,7504,1178.5297592010943,48.0,112,0.0,47,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,104051.5,0.0,100850.0,2,10,1.0,4,3.0 -4916,7506,2659.050762917237,30.0,300,0.0,47,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28086.0,0.0,26950.0,2,0,0.0,2,1.0 -4917,7507,2916.088203553802,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13010.0,0.0,0.0,12877.1,0.0,0.0,1,8,6.0,1,0.0 -4918,7509,3224.8025747977385,61.0,112,11950.0,72,1.0,0.0,2.0,1.5,0.0,0.0,0.0,14350.0,0.0,0.0,25502.8,0.0,0.0,1,7,1.0,3,1.0 -4919,7512,4117.2112216697815,38.0,112,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11640.0,0.0,0.0,27421.7,0.0,17640.0,1,5,0.0,2,1.0 -4920,7513,2061.7329699771617,45.0,120,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,59921.45,0.0,62050.0,1,0,0.0,4,2.0 -4921,7514,1492.9982150027977,32.0,111,5620.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,2460.0,0.0,0.0,31114.15,0.0,15120.0,2,5,4.0,4,2.0 -4922,7516,2069.0544561534293,42.0,111,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,65093.2,0.0,52850.0,2,9,7.0,4,2.0 -4923,7517,3247.9896231030975,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,710.0,8090.0,0.0,0.0,11308.0,0.0,0.0,3,10,8.0,1,0.0 -4924,7520,1454.3086544113303,45.0,111,0.0,53,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38958.0,0.0,35030.0,2,6,5.0,4,1.0 -4925,7521,4548.033203977798,33.0,111,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,24557.05,0.0,21870.0,3,9,7.0,4,1.0 -4926,7522,1744.0828312748927,51.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21780.6,0.0,23260.0,3,8,7.0,1,1.0 -4927,7523,1938.310416955325,78.0,221,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18270.0,0.0,0.0,18862.55,0.0,0.0,1,1,1.0,3,0.0 -4928,7524,1583.807610227274,75.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15720.0,0.0,0.0,18015.2,0.0,0.0,1,9,0.0,3,0.0 -4929,7525,3911.2761021879924,56.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,86822.0,0.0,103230.0,1,9,7.0,1,1.0 -4930,7527,4014.0346379439943,44.0,400,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,9.0,0.0,35664.0,0.0,26740.0,5,0,0.0,4,2.0 -4931,7528,1652.06846788867,54.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14856.95,0.0,15010.0,3,7,6.0,1,1.0 -4932,7529,2395.4134327256033,56.0,400,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14759.2,0.0,0.0,1,0,0.0,3,2.0 -4933,7530,1716.1413706304393,51.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57670.7,0.0,63010.0,1,10,8.0,4,2.0 -4934,7532,2484.2148116933686,41.0,300,0.0,56,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,19488.35,0.0,17380.0,2,0,0.0,4,2.0 -4935,7533,1597.561348136505,69.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,35.0,0.0,-0.0,0.0,0.0,1,6,5.0,1,0.0 -4936,7534,4758.299316100227,28.0,111,0.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,498.0,0.0,25588.45,0.0,26290.0,2,10,8.0,3,2.0 -4937,7536,2903.70668464828,22.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19353.0,0.0,15820.0,3,6,5.0,3,0.0 -4938,7538,3396.5657950429677,35.0,111,11100.0,42,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,14467.6,0.0,1050.0,3,9,7.0,2,1.0 -4939,7539,1983.0957321860667,71.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22290.0,0.0,0.0,21911.7,0.0,0.0,1,0,0.0,3,0.0 -4940,7540,3283.929221863952,75.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22410.0,0.0,0.0,26758.4,0.0,0.0,1,9,7.0,1,0.0 -4941,7542,1120.1146962819482,47.0,400,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,2.0,0.0,34162.75,0.0,32440.0,2,0,0.0,4,2.0 -4942,7543,3501.331556208733,17.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4457.0,0.0,0.0,3,9,7.0,1,0.0 -4943,7546,1936.2750719901737,45.0,111,1950.0,38,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,697.0,0.0,90962.05,0.0,90260.0,2,9,7.0,4,2.0 -4944,7547,3016.288574148646,25.0,300,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8954.95,0.0,9530.0,5,0,0.0,1,1.0 -4945,7548,3233.0754817328652,24.0,112,2200.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21270.55,0.0,14730.0,1,10,0.0,2,2.0 -4946,7550,2609.16226779219,50.0,111,0.0,46,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,73240.0,0.0,83410.0,2,6,5.0,4,3.0 -4947,7551,2616.001956589103,29.0,111,5640.0,62,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36665.0,0.0,28440.0,3,8,6.0,4,2.0 -4948,7554,3368.396699179776,63.0,120,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,13280.0,0.0,0.0,30279.15,0.0,17690.0,3,0,3.0,3,2.0 -4949,7555,3187.576733168337,47.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31679.8,0.0,31920.0,1,10,8.0,4,2.0 -4950,7556,4149.375151321343,83.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20020.0,0.0,0.0,19748.15,0.0,0.0,3,9,7.0,1,0.0 -4951,7558,2183.477667111889,51.0,112,0.0,67,1.0,1.0,2.0,1.5,5050.0,0.0,0.0,5410.0,0.0,0.0,24901.0,0.0,14260.0,3,6,0.0,3,1.0 -4952,7559,3162.495475794202,42.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40389.2,0.0,34850.0,2,1,2.0,4,2.0 -4953,7560,3512.1561154028,35.0,111,4800.0,53,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,10.0,0.0,28463.0,0.0,23920.0,3,8,6.0,4,2.0 -4954,7561,3822.759733877953,64.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,24780.0,0.0,0.0,37993.35,0.0,14550.0,3,9,7.0,4,1.0 -4955,7562,5585.505621262569,84.0,221,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8700.0,0.0,0.0,8454.65,0.0,0.0,1,1,1.0,1,0.0 -4956,7563,1392.6553476033077,42.0,112,0.0,64,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,23342.25,0.0,10910.0,2,9,0.0,4,2.0 -4957,7564,2942.384534640059,43.0,111,0.0,46,1.0,1.0,4.0,2.1,0.0,220.0,0.0,0.0,0.0,0.0,8562.0,510.0,4810.0,3,9,7.0,4,1.0 -4958,7567,3213.6503768158304,77.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27020.0,90.0,0.0,34170.55,0.0,0.0,1,8,0.0,3,0.0 -4959,7568,3183.9364897108944,26.0,111,11350.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19042.95,0.0,7800.0,5,10,8.0,1,1.0 -4960,7571,1774.9993724330604,20.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47227.0,0.0,48140.0,3,1,2.0,2,2.0 -4961,7575,3508.0176377728426,53.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13550.65,0.0,15010.0,3,10,8.0,1,1.0 -4962,7576,3796.395105741965,57.0,112,11950.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21590.0,0.0,0.0,31560.25,0.0,0.0,1,8,3.0,3,0.0 -4963,7577,1705.3552024711582,36.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42572.0,0.0,36940.0,3,9,7.0,4,2.0 -4964,7579,3368.318204621219,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4398.0,0.0,0.0,3,9,7.0,1,0.0 -4965,7580,3246.494438936588,57.0,111,0.0,67,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,29846.0,840.0,19000.0,3,8,7.0,4,2.0 -4966,7584,2792.9761562971817,58.0,400,0.0,21,1.0,1.0,4.0,2.3,0.0,0.0,0.0,450.0,0.0,0.0,9024.4,0.0,0.0,1,0,0.0,4,1.0 -4967,7585,1577.2096593292208,43.0,112,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,95682.65,0.0,110100.0,1,10,0.0,4,2.0 -4968,7587,2783.1331651652845,37.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60120.15,0.0,58880.0,2,10,8.0,4,2.0 -4969,7588,1921.3337891790973,25.0,112,6460.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7130.0,0.0,670.0,5,10,0.0,1,1.0 -4970,7589,3134.8291342897865,62.0,111,0.0,22,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,20978.35,0.0,10400.0,2,10,8.0,4,2.0 -4971,7590,3147.0386952055305,73.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14600.0,0.0,0.0,15396.0,0.0,0.0,3,0,2.0,1,0.0 -4972,7591,2953.9271084501675,81.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26520.0,0.0,0.0,24973.45,0.0,0.0,3,10,8.0,1,0.0 -4973,7592,2766.448318415207,62.0,300,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10690.0,0.0,0.0,11129.0,0.0,660.0,1,0,0.0,3,0.0 -4974,7593,2727.302445258566,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21610.0,0.0,0.0,20455.5,0.0,0.0,2,7,5.0,1,0.0 -4975,7595,3247.041046674947,44.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,270.0,0.0,0.0,0.0,0.0,17753.2,1300.0,16650.0,2,10,8.0,4,2.0 -4976,7597,2852.3930836397526,67.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52470.0,0.0,0.0,46069.9,0.0,0.0,1,9,7.0,3,0.0 -4977,7598,2968.4027380802113,23.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11835.65,0.0,0.0,3,9,7.0,1,1.0 -4978,7599,1152.0492099561363,68.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17040.0,55.0,0.0,25918.45,0.0,0.0,1,0,0.0,3,0.0 -4979,7600,2514.6532988985005,36.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,17436.1,0.0,8630.0,3,9,7.0,2,1.0 -4980,7601,2703.482829932522,39.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42503.0,0.0,39360.0,2,10,1.0,4,2.0 -4981,7602,2998.75850598315,40.0,111,0.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17524.5,0.0,17860.0,3,9,7.0,3,2.0 -4982,7604,3964.9987736689873,84.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21100.0,0.0,0.0,21289.85,0.0,0.0,3,6,5.0,3,0.0 -4983,7605,3259.0782038290113,30.0,300,8000.0,21,1.0,1.0,3.0,1.8,0.0,1770.0,0.0,0.0,0.0,0.0,19391.0,40.0,360.0,3,0,0.0,4,1.0 -4984,7606,1554.440468557527,42.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,20210.45,0.0,18600.0,1,6,5.0,4,2.0 -4985,7607,3659.007055596194,26.0,112,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23624.0,0.0,24900.0,3,10,4.0,1,1.0 -4986,7610,2711.9696713314893,45.0,112,17310.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34523.2,0.0,18300.0,1,5,0.0,3,1.0 -4987,7611,3175.960712744019,56.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11360.0,0.0,0.0,10651.5,0.0,0.0,1,9,7.0,1,0.0 -4988,7612,3882.696836579843,24.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,96.0,0.0,0.0,4,10,8.0,1,1.0 -4989,7614,3156.7634320985253,34.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25302.45,0.0,25560.0,3,10,8.0,2,1.0 -4990,7615,2795.5230468698646,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15440.0,0.0,0.0,15229.2,0.0,0.0,1,8,7.0,1,0.0 -4991,7617,2442.9583533959694,62.0,111,6340.0,63,3,3.0,5.0,2.8,0.0,0.0,0.0,5500.0,0.0,0.0,46499.7,0.0,36500.0,3,8,7.0,5,3.0 -4992,7618,2492.2383730784422,52.0,400,2130.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43177.45,0.0,39380.0,1,0,1.0,3,2.0 -4993,7619,3291.6352560952873,46.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18330.95,0.0,20080.0,2,9,7.0,1,1.0 -4994,7620,4456.457755714883,57.0,221,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,20570.0,0.0,0.0,32082.6,0.0,13430.0,1,1,2.0,4,1.0 -4995,7621,2275.149819838897,45.0,111,1130.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,235.0,0.0,44854.55,0.0,42030.0,1,8,7.0,4,2.0 -4996,7622,5409.8514939527495,22.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6932.0,0.0,4470.0,5,8,6.0,1,1.0 -4997,7623,2563.3516695738153,32.0,111,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29421.25,250.0,19660.0,3,6,5.0,4,1.0 -4998,7626,7554.76821942072,44.0,400,5970.0,56,2.0,1.0,2.0,1.5,0.0,1880.0,0.0,0.0,0.0,0.0,12900.4,180.0,1870.0,3,0,1.0,3,2.0 -4999,7628,833.6768776884206,51.0,120,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,2500.0,0.0,0.0,52367.75,0.0,49130.0,1,0,3.0,4,3.0 -5000,7629,1877.2000551203546,54.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31918.75,0.0,33040.0,3,7,5.0,3,2.0 -5001,7630,1809.8243637644898,31.0,111,10720.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,5,9,7.0,3,1.0 -5002,7631,2223.788191697009,57.0,112,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,84565.8,0.0,30300.0,2,10,4.0,3,2.0 -5003,7632,1682.7478559304884,70.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,2330.0,11770.0,0.0,0.0,14784.0,0.0,0.0,3,0,1.0,1,0.0 -5004,7633,8544.204541651583,64.0,120,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,18230.0,0.0,0.0,18251.0,0.0,0.0,5,0,3.0,4,0.0 -5005,7635,3830.8106587659513,30.0,112,0.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36768.0,0.0,23180.0,3,5,0.0,4,1.0 -5006,7636,3148.5662393121966,59.0,111,0.0,22,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,4745.3,0.0,0.0,1,10,8.0,4,1.0 -5007,7637,4250.279074500395,63.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11800.0,0.0,0.0,20563.65,0.0,9840.0,1,10,2.0,3,1.0 -5008,7639,976.7543240507088,43.0,111,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35758.75,0.0,32460.0,3,9,7.0,4,2.0 -5009,7640,2795.501800580999,45.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3760.0,0.0,0.0,19529.95,0.0,15880.0,3,8,7.0,1,1.0 -5010,7641,1954.2259637584334,58.0,112,12180.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15647.85,0.0,0.0,3,7,0.0,1,1.0 -5011,7642,2933.6494666572894,47.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,8171.0,0.0,7330.0,3,7,5.0,3,2.0 -5012,7643,4034.8630017096343,20.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15520.75,0.0,10070.0,3,9,7.0,1,1.0 -5013,7644,1372.918245920128,41.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,127.0,0.0,55655.1,0.0,57610.0,2,9,1.0,4,2.0 -5014,7645,2617.614347991709,20.0,111,6010.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6239.0,0.0,0.0,5,6,4.0,1,0.0 -5015,7646,1289.5895126003988,70.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15170.0,0.0,0.0,16181.65,0.0,0.0,1,0,0.0,3,0.0 -5016,7647,2531.1592983063483,41.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,85770.8,0.0,80250.0,2,9,7.0,4,2.0 -5017,7648,2297.027726456296,56.0,111,2220.0,52,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41787.5,0.0,38290.0,3,9,7.0,2,4.0 -5018,7649,3234.3083169102456,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2475.0,0.0,0.0,3,10,8.0,1,0.0 -5019,7650,1846.9191203814883,69.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36310.0,0.0,0.0,34753.45,0.0,0.0,1,9,0.0,3,0.0 -5020,7651,1736.6921881766968,45.0,400,0.0,52,2.0,2.0,5.0,2.8,0.0,0.0,0.0,12090.0,10.0,0.0,45925.35,0.0,23600.0,2,0,0.0,5,2.0 -5021,7652,1124.2238037854281,59.0,400,0.0,11,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10980.0,0.0,0.0,25184.35,0.0,10610.0,1,0,0.0,3,1.0 -5022,7653,1358.3326133714895,81.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35010.0,0.0,0.0,34544.1,0.0,0.0,1,8,0.0,3,0.0 -5023,7654,3612.510202632537,31.0,111,8530.0,47,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30986.5,0.0,22840.0,3,9,7.0,3,2.0 -5024,7655,2566.3295108752495,40.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46440.5,0.0,49780.0,2,9,7.0,3,2.0 -5025,7656,1801.641883869341,44.0,111,10520.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,81971.0,0.0,86930.0,1,6,4.0,4,2.0 -5026,7657,2475.6070925654767,77.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18050.0,0.0,0.0,18099.0,0.0,0.0,5,4,0.0,3,0.0 -5027,7658,4040.8681877439935,37.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,9726.0,0.0,0.0,3,9,7.0,2,1.0 -5028,7661,2347.857259691919,45.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53424.75,0.0,53150.0,1,9,7.0,4,2.0 -5029,7662,3123.1345527772746,38.0,111,0.0,52,1.0,0.0,2.0,1.3,0.0,6220.0,0.0,0.0,0.0,0.0,18464.0,0.0,0.0,3,10,8.0,2,1.0 -5030,7663,2367.015817126161,39.0,111,0.0,62,1.0,0.0,1.0,1.0,0.0,6530.0,0.0,0.0,0.0,0.0,9551.0,140.0,0.0,3,7,5.0,1,1.0 -5031,7664,2970.3726581803817,27.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37060.95,0.0,34390.0,3,9,7.0,3,2.0 -5032,7665,2039.7526508012527,38.0,111,0.0,42,1.0,1.0,2.0,1.3,0.0,150.0,0.0,0.0,0.0,0.0,10756.2,2320.0,7340.0,5,6,4.0,2,1.0 -5033,7666,4430.280879118663,58.0,120,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13314.25,0.0,13300.0,3,0,0.0,1,1.0 -5034,7667,2651.356590111112,45.0,111,0.0,37,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38419.8,0.0,39440.0,2,8,6.0,4,1.0 -5035,7669,2471.6524437113862,59.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24745.45,0.0,27620.0,1,10,8.0,1,1.0 -5036,7670,2915.9021490590826,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17630.0,0.0,0.0,16996.5,0.0,0.0,1,7,5.0,1,0.0 -5037,7671,2638.8385319996596,53.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12910.0,0.0,0.0,31449.95,0.0,20410.0,3,8,7.0,3,1.0 -5038,7672,1475.9824455814276,43.0,112,0.0,21,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,83314.35,0.0,12940.0,2,10,0.0,4,2.0 -5039,7673,2284.1712671767013,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37090.0,0.0,0.0,36452.5,0.0,0.0,1,10,8.0,3,0.0 -5040,7674,2519.513279758282,34.0,111,1030.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40363.0,0.0,38600.0,3,8,7.0,4,2.0 -5041,7675,1159.1774752148663,58.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,2650.0,0.0,0.0,49220.8,0.0,50810.0,1,8,0.0,3,2.0 -5042,7676,2054.2541675384864,84.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9780.0,581.0,0.0,17077.0,0.0,0.0,5,6,5.0,1,0.0 -5043,7677,3201.2869320187533,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2174.0,0.0,0.0,5,10,8.0,1,0.0 -5044,7680,2892.482308109928,29.0,111,9750.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33611.6,0.0,22240.0,3,8,6.0,4,2.0 -5045,7681,3080.93936971183,41.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63278.8,0.0,65160.0,2,10,8.0,4,2.0 -5046,7682,3172.9597057721053,43.0,112,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27751.35,0.0,28340.0,3,9,0.0,2,1.0 -5047,7683,2467.3686540073127,58.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31393.15,0.0,33870.0,5,10,8.0,3,2.0 -5048,7686,2206.950416180549,31.0,221,3880.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,5.0,0.0,13670.0,650.0,4840.0,3,1,3.0,4,1.0 -5049,7687,4934.53080665206,73.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17630.0,0.0,0.0,17084.45,0.0,0.0,3,0,0.0,1,0.0 -5050,7689,846.4786471475512,55.0,111,5520.0,62,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21343.25,0.0,14810.0,1,9,7.0,4,2.0 -5051,7690,4151.599907597604,32.0,111,6770.0,85,1.0,0.0,5.0,2.4,9710.0,0.0,0.0,0.0,0.0,0.0,22320.0,0.0,0.0,3,6,4.0,4,1.0 -5052,7691,3638.6321096862866,31.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18545.15,0.0,11960.0,3,9,7.0,1,1.0 -5053,7693,1356.673547878272,38.0,300,0.0,56,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,48108.0,0.0,31090.0,3,0,0.0,4,2.0 -5054,7694,2895.922160813967,26.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19937.25,0.0,15620.0,3,9,7.0,3,2.0 -5055,7696,3424.0871903268185,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12380.0,0.0,0.0,12164.5,0.0,0.0,1,5,4.0,3,0.0 -5056,7697,1980.1045822943545,72.0,120,1350.0,72,1.0,1.0,3.0,2.0,0.0,0.0,0.0,22550.0,0.0,0.0,33388.15,0.0,10250.0,1,0,0.0,4,1.0 -5057,7699,2965.765657680393,36.0,111,1070.0,54,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,46.0,0.0,22408.0,0.0,19890.0,3,10,8.0,2,1.0 -5058,7701,3850.481605465072,57.0,112,8510.0,54,1.0,0.0,2.0,1.5,0.0,0.0,0.0,27950.0,0.0,0.0,34461.7,0.0,300.0,3,9,0.0,3,1.0 -5059,7702,3267.499100355545,24.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18780.05,0.0,19750.0,3,8,7.0,1,1.0 -5060,7703,1071.0057385566083,46.0,111,0.0,47,1.0,1.0,3.0,2.0,0.0,0.0,0.0,16420.0,0.0,0.0,51214.95,0.0,32840.0,1,8,7.0,4,1.0 -5061,7704,1900.6068360317302,40.0,111,0.0,63,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,35433.5,0.0,29480.0,1,10,8.0,4,3.0 -5062,7707,1611.163257692657,46.0,120,6530.0,13,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42007.85,0.0,36200.0,2,0,0.0,4,2.0 -5063,7708,2371.4371921924085,62.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42750.0,25.0,0.0,42051.6,0.0,0.0,1,1,1.0,3,0.0 -5064,7709,2622.372909353598,45.0,111,0.0,56,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12502.7,0.0,14090.0,1,10,8.0,1,1.0 -5065,7716,1220.8227471607809,50.0,112,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,14560.0,0.0,0.0,19530.9,0.0,920.0,1,10,0.0,1,1.0 -5066,7717,2188.972850982272,54.0,111,0.0,85,0.0,0.0,1.0,1.0,1590.0,0.0,0.0,4210.0,0.0,0.0,9050.0,0.0,0.0,3,8,7.0,1,0.0 -5067,7718,2407.4398516666083,61.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,28650.0,58.0,0.0,21055.65,0.0,1010.0,1,6,4.0,1,1.0 -5068,7719,4100.200711580964,72.0,111,0.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,24740.0,0.0,0.0,24990.0,0.0,0.0,3,10,8.0,1,1.0 -5069,7720,2354.845554749585,58.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51969.05,0.0,41030.0,1,8,6.0,4,2.0 -5070,7721,1815.5940560043973,57.0,111,11950.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25301.4,0.0,14500.0,3,5,4.0,3,1.0 -5071,7723,4427.738140252569,53.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,5060.0,0.0,0.0,0.0,0.0,8023.7,20.0,0.0,3,7,0.0,1,0.0 -5072,7725,2542.36246663169,86.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10460.0,0.0,0.0,10460.0,0.0,0.0,5,0,0.0,1,0.0 -5073,7726,3899.7127521683187,47.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25143.65,0.0,25300.0,3,9,7.0,1,1.0 -5074,7729,1594.7658427324907,74.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33930.0,69.0,0.0,32539.45,0.0,0.0,5,0,0.0,3,0.0 -5075,7730,2324.1997830750156,46.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43920.35,0.0,45740.0,2,7,0.0,3,2.0 -5076,7732,625.6031343387707,65.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23370.0,0.0,0.0,25937.6,0.0,0.0,1,0,0.0,3,0.0 -5077,7733,1596.411751561078,31.0,112,0.0,63,1.0,1.0,3.0,2.0,0.0,0.0,0.0,24620.0,0.0,0.0,46639.85,0.0,24610.0,5,7,0.0,4,1.0 -5078,7735,1617.2576771033055,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29240.0,0.0,0.0,31315.25,0.0,4110.0,1,10,8.0,3,0.0 -5079,7737,3429.4296938554467,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22910.0,0.0,0.0,22448.55,0.0,0.0,3,9,7.0,1,0.0 -5080,7738,2253.320245330078,58.0,111,980.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30003.1,0.0,31060.0,2,10,8.0,4,2.0 -5081,7740,2600.580861010347,57.0,111,0.0,21,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,56.0,0.0,13205.1,0.0,0.0,3,9,7.0,4,1.0 -5082,7741,4485.486551417993,54.0,400,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21511.05,0.0,21620.0,3,0,0.0,1,1.0 -5083,7742,2930.4250091037557,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41880.0,0.0,0.0,38394.15,0.0,0.0,1,9,7.0,3,0.0 -5084,7743,3003.606576368095,38.0,111,0.0,22,1.0,0.0,3.0,1.8,0.0,4210.0,0.0,0.0,14.0,0.0,15017.45,310.0,60.0,3,8,6.0,2,1.0 -5085,7744,2753.8732483440217,86.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,61500.0,1021.0,0.0,59817.8,0.0,0.0,3,3,4.0,1,0.0 -5086,7746,2311.6864078980984,51.0,111,2410.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46443.95,0.0,47800.0,1,6,4.0,4,2.0 -5087,7747,2161.6223274059453,43.0,300,7980.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33878.6,0.0,3170.0,2,0,0.0,4,2.0 -5088,7751,3378.2085851072325,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11175.0,0.0,0.0,3,8,6.0,1,0.0 -5089,7752,1137.131957945863,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45040.0,0.0,0.0,41101.0,0.0,0.0,1,8,7.0,3,0.0 -5090,7753,2269.0306101994647,67.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28240.0,0.0,0.0,26608.85,0.0,0.0,3,1,2.0,1,0.0 -5091,7754,2356.2658723522873,47.0,111,0.0,62,3,4.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,65130.65,0.0,60430.0,3,10,8.0,4,4.0 -5092,7755,4498.110909128271,41.0,111,0.0,47,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,19094.4,0.0,18600.0,3,6,5.0,2,1.0 -5093,7756,2143.9818700269025,41.0,111,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,22.0,0.0,62545.05,0.0,63550.0,3,8,7.0,4,2.0 -5094,7757,2107.5030121271884,78.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15710.0,0.0,0.0,18985.0,0.0,250.0,1,9,7.0,3,0.0 -5095,7758,1713.4285829990847,32.0,400,0.0,47,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,47695.95,0.0,34760.0,1,0,0.0,4,1.0 -5096,7759,2508.651866887387,47.0,111,0.0,45,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50598.65,0.0,52590.0,2,9,7.0,4,2.0 -5097,7761,3372.6453641711437,26.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,15122.0,330.0,600.0,3,9,7.0,2,0.0 -5098,7762,2535.198901069931,67.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22550.0,0.0,0.0,28392.65,0.0,0.0,2,0,0.0,1,0.0 -5099,7767,3461.750346550788,52.0,111,11160.0,22,2.0,2.0,4.0,2.5,0.0,5260.0,0.0,0.0,0.0,0.0,30497.0,580.0,4540.0,3,10,8.0,4,2.0 -5100,7768,1558.0075870304843,64.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30610.0,86.0,0.0,38360.55,0.0,0.0,1,3,4.0,1,0.0 -5101,7769,1435.25757664682,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30700.0,0.0,0.0,28974.7,0.0,0.0,3,10,4.0,3,0.0 -5102,7770,4367.344272239371,53.0,112,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57066.2,0.0,61800.0,2,9,2.0,4,2.0 -5103,7771,2151.4894551648504,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25800.0,1056.0,0.0,24522.15,0.0,0.0,1,6,5.0,1,0.0 -5104,7772,1888.3051311331776,28.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30621.55,0.0,21680.0,2,8,0.0,3,2.0 -5105,7773,2323.4334695032244,38.0,221,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,48429.2,0.0,40140.0,2,1,2.0,4,2.0 -5106,7774,1739.8945330940273,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40940.0,29.0,0.0,58319.9,0.0,0.0,3,8,7.0,3,0.0 -5107,7775,2372.6595212262646,37.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,35828.85,0.0,0.0,2,9,7.0,2,1.0 -5108,7776,2016.6259086324249,35.0,112,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45095.1,0.0,44150.0,2,9,2.0,4,2.0 -5109,7777,1439.4467839625088,56.0,111,0.0,64,1.0,0.0,1.0,1.0,0.0,5360.0,0.0,0.0,0.0,0.0,7376.0,0.0,0.0,3,7,6.0,1,1.0 -5110,7778,2631.5601382437635,68.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15910.0,63.0,0.0,14986.8,0.0,0.0,1,0,0.0,1,0.0 -5111,7779,1540.3761901263251,54.0,400,0.0,63,1.0,1.0,3.0,1.8,8750.0,0.0,0.0,0.0,0.0,0.0,27552.15,0.0,17730.0,1,0,0.0,4,1.0 -5112,7780,2380.320211981553,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33010.0,0.0,0.0,31995.1,0.0,0.0,1,10,8.0,3,0.0 -5113,7781,2963.7273722836785,24.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15822.0,0.0,12210.0,3,6,4.0,1,1.0 -5114,7782,2537.211436551857,50.0,400,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15091.0,0.0,15590.0,3,0,1.0,1,1.0 -5115,7784,2689.5150859349487,33.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14698.2,0.0,15280.0,2,0,0.0,1,1.0 -5116,7785,1877.298952485063,55.0,111,0.0,62,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56544.15,0.0,61140.0,3,10,8.0,4,4.0 -5117,7788,3696.172019627297,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3821.9,0.0,0.0,5,9,7.0,5,0.0 -5118,7790,3105.2914034085447,24.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25712.75,0.0,26340.0,3,9,3.0,3,2.0 -5119,7791,3078.4730121944626,43.0,112,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26607.9,0.0,27800.0,3,8,1.0,3,2.0 -5120,7792,2327.151336594017,67.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33500.0,294.0,0.0,38402.15,0.0,0.0,1,10,0.0,1,0.0 -5121,7793,2895.229864225131,62.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9920.0,0.0,0.0,13460.0,0.0,0.0,3,0,0.0,1,0.0 -5122,7794,2105.0049165372616,61.0,400,0.0,75,0.0,0.0,4.0,2.5,8380.0,0.0,0.0,32280.0,0.0,0.0,40081.5,0.0,0.0,2,0,0.0,4,0.0 -5123,7796,1900.8982555330683,52.0,120,2430.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,1940.0,0.0,0.0,49214.25,0.0,47540.0,1,0,2.0,4,2.0 -5124,7797,6206.059433097249,70.0,111,0.0,75,1.0,1.0,3.0,1.8,0.0,0.0,0.0,24700.0,0.0,0.0,36134.9,0.0,13630.0,3,8,6.0,4,1.0 -5125,7799,1439.2634541153755,52.0,111,1530.0,35,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39081.7,0.0,37720.0,1,8,7.0,4,2.0 -5126,7800,1704.005423990861,47.0,112,7340.0,62,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,54554.3,0.0,46950.0,2,7,0.0,4,3.0 -5127,7801,3954.285226116115,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18370.0,0.0,0.0,17863.65,0.0,0.0,3,9,7.0,1,0.0 -5128,7804,2846.3062380402234,35.0,111,10960.0,54,3,1.0,5.0,3.0,0.0,0.0,0.0,11970.0,2642.0,0.0,35982.65,0.0,11270.0,1,10,8.0,4,3.0 -5129,7805,4241.301818453579,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32740.0,0.0,0.0,31625.05,0.0,0.0,1,9,7.0,3,0.0 -5130,7806,2497.900954827501,51.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,7140.0,0.0,0.0,29180.35,0.0,19210.0,3,8,7.0,3,2.0 -5131,7807,7047.635487993033,34.0,221,0.0,85,0.0,0.0,2.0,1.3,0.0,1590.0,0.0,0.0,0.0,0.0,6028.0,0.0,530.0,3,1,3.0,2,0.0 -5132,7808,3382.901709389091,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8049.15,0.0,0.0,3,8,6.0,1,0.0 -5133,7809,3025.881811079487,28.0,111,0.0,38,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23954.75,0.0,26280.0,3,9,7.0,1,1.0 -5134,7811,3903.7860951200605,96.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6330.0,0.0,0.0,8279.0,0.0,0.0,3,10,8.0,1,0.0 -5135,7814,2843.193729901615,47.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16394.3,0.0,17380.0,3,7,5.0,1,1.0 -5136,7815,2713.9936135540356,38.0,111,3650.0,68,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29577.8,50.0,21080.0,3,10,8.0,4,2.0 -5137,7816,2109.805381299739,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,90470.0,3.0,0.0,101213.35,0.0,0.0,1,10,8.0,3,0.0 -5138,7817,2227.052443589516,50.0,211,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39986.6,0.0,14500.0,2,3,3.0,3,2.0 -5139,7820,3575.439396615851,34.0,111,0.0,56,1.0,1.0,3.0,2.0,0.0,270.0,0.0,0.0,0.0,0.0,29227.0,2530.0,20750.0,3,10,8.0,2,1.0 -5140,7821,2956.379099262884,44.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34765.8,0.0,34710.0,2,7,5.0,2,2.0 -5141,7823,957.5287580565071,55.0,111,3810.0,62,2.0,2.0,4.0,2.5,0.0,430.0,0.0,0.0,0.0,0.0,42404.4,3680.0,35420.0,1,9,7.0,4,2.0 -5142,7824,2816.4738526241454,63.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30260.0,0.0,0.0,46722.75,0.0,19850.0,1,8,6.0,2,1.0 -5143,7825,2810.695516357115,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18180.0,0.0,0.0,34053.2,0.0,0.0,1,10,8.0,1,0.0 -5144,7826,3046.4238092957544,40.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22306.1,0.0,23380.0,3,10,8.0,1,1.0 -5145,7827,4142.534364068886,33.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20964.45,0.0,22600.0,3,10,8.0,1,1.0 -5146,7828,2078.702548958756,39.0,111,0.0,42,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,49418.3,0.0,39270.0,2,8,7.0,4,1.0 -5147,7829,3073.519351825555,30.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,116100.15,0.0,129550.0,3,10,8.0,3,2.0 -5148,7830,7540.606001612314,34.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,23.0,0.0,88978.55,0.0,82230.0,2,9,2.0,4,2.0 -5149,7831,1132.115681099387,44.0,120,0.0,62,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,32916.25,0.0,23350.0,2,0,0.0,4,2.0 -5150,7833,1094.779971297355,45.0,111,0.0,46,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,45511.85,0.0,39050.0,2,8,7.0,4,2.0 -5151,7834,2125.5167722404544,54.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27420.75,0.0,22330.0,1,6,4.0,3,2.0 -5152,7835,2351.1804864301434,49.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60757.75,0.0,61070.0,2,10,8.0,4,2.0 -5153,7836,2132.679706333147,39.0,112,2450.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29111.9,0.0,24990.0,2,7,4.0,4,2.0 -5154,7837,4646.248203395863,28.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49319.75,0.0,46240.0,2,6,4.0,4,2.0 -5155,7838,2506.8619988837663,46.0,300,0.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30865.55,0.0,31440.0,1,0,0.0,3,2.0 -5156,7840,1845.043823242365,39.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26146.65,0.0,33110.0,2,9,7.0,1,1.0 -5157,7841,2233.0137559641757,57.0,111,38600.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,245.0,0.0,56135.4,0.0,0.0,2,8,6.0,2,0.0 -5158,7844,1049.3452728040577,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51330.0,43.0,0.0,47827.1,0.0,30.0,1,9,7.0,3,0.0 -5159,7846,2239.0420034704575,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19430.0,0.0,0.0,19993.2,0.0,0.0,5,7,5.0,1,0.0 -5160,7847,888.5108857446401,49.0,111,0.0,43,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,38587.95,0.0,31580.0,2,7,5.0,4,2.0 -5161,7848,2421.057505661674,47.0,400,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,466.0,0.0,72238.0,0.0,24070.0,1,0,0.0,4,2.0 -5162,7850,2352.079968565843,26.0,400,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28080.75,0.0,28430.0,3,0,0.0,3,2.0 -5163,7851,2321.445289720066,76.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18690.0,0.0,0.0,18525.55,0.0,0.0,5,7,0.0,1,0.0 -5164,7853,3911.1782805928715,22.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6728.0,0.0,2530.0,3,10,8.0,1,1.0 -5165,7855,3976.0476585213223,57.0,211,10390.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12160.0,991.0,0.0,55337.65,0.0,35100.0,1,2,3.0,3,1.0 -5166,7857,1896.0982591428185,50.0,111,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39441.85,0.0,41080.0,3,9,7.0,4,2.0 -5167,7858,6245.944598405986,80.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30840.0,0.0,0.0,29514.4,0.0,0.0,3,0,1.0,1,0.0 -5168,7860,2351.636435160251,44.0,112,0.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,25840.0,0.0,0.0,84003.3,0.0,61780.0,2,10,0.0,4,2.0 -5169,7861,3392.7262439921547,23.0,111,0.0,47,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15822.4,0.0,15310.0,3,8,6.0,1,1.0 -5170,7863,1400.7628526110063,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9840.0,0.0,0.0,10183.25,0.0,350.0,1,6,4.0,1,0.0 -5171,7864,3173.231650193044,42.0,111,0.0,55,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51597.8,0.0,48470.0,3,10,8.0,4,2.0 -5172,7865,3256.821910830924,30.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36638.25,0.0,38880.0,3,10,8.0,1,1.0 -5173,7867,1517.676781901633,51.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22996.15,0.0,22750.0,3,7,5.0,2,1.0 -5174,7868,3061.0537869522104,49.0,111,0.0,85,0.0,0.0,3.0,2.0,20010.0,0.0,0.0,0.0,0.0,0.0,25932.0,0.0,0.0,3,6,4.0,4,0.0 -5175,7873,2252.019591577578,51.0,120,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35317.2,0.0,37400.0,1,0,3.0,3,2.0 -5176,7874,2987.148130796388,81.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43190.0,0.0,0.0,38007.0,0.0,0.0,1,9,7.0,1,0.0 -5177,7875,2424.326053344092,78.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29170.0,0.0,0.0,28267.75,0.0,0.0,1,0,0.0,3,0.0 -5178,7876,1888.9400567163818,47.0,111,650.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29728.1,0.0,29650.0,3,8,6.0,2,2.0 -5179,7878,2301.5543537685903,37.0,112,7410.0,33,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51439.75,0.0,44350.0,2,6,0.0,4,2.0 -5180,7880,2427.451128569895,65.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12460.0,0.0,0.0,12416.0,0.0,0.0,5,0,0.0,1,0.0 -5181,7881,3162.1239422674903,43.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53081.45,0.0,46800.0,2,6,0.0,4,2.0 -5182,7882,1783.3533918245357,75.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53050.0,12.0,0.0,50156.9,0.0,0.0,1,6,0.0,3,0.0 -5183,7883,2469.668208584242,64.0,211,0.0,74,2.0,2.0,3.0,2.0,0.0,0.0,0.0,35370.0,0.0,0.0,81988.25,0.0,50720.0,1,2,3.0,4,2.0 -5184,7884,1476.2471117513305,49.0,112,1160.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,59064.05,0.0,43010.0,1,7,2.0,4,2.0 -5185,7885,3683.8193804170537,37.0,120,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37155.0,0.0,27750.0,2,0,2.0,4,2.0 -5186,7886,2632.314325391193,31.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,3790.0,0.0,0.0,0.0,0.0,17858.05,0.0,14030.0,3,8,7.0,1,1.0 -5187,7887,1201.726743153345,63.0,221,0.0,64,1.0,0.0,3.0,1.8,0.0,0.0,0.0,10360.0,0.0,0.0,9814.0,0.0,0.0,1,1,3.0,5,1.0 -5188,7888,2522.2058339092696,87.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16500.0,0.0,0.0,17289.55,0.0,0.0,1,9,7.0,3,0.0 -5189,7889,1652.156770125516,48.0,111,0.0,43,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,51542.55,0.0,47320.0,2,10,8.0,4,2.0 -5190,7890,1631.8459255287305,64.0,212,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31300.0,0.0,0.0,31036.1,0.0,0.0,1,2,0.0,3,0.0 -5191,7893,5906.149519109433,64.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12620.0,0.0,0.0,12057.75,0.0,0.0,1,1,2.0,1,0.0 -5192,7894,1638.5745855829994,72.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19010.0,60.0,0.0,17766.3,0.0,0.0,1,5,0.0,1,0.0 -5193,7895,3416.289967930624,42.0,221,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,19.0,0.0,7152.2,0.0,7710.0,1,1,2.0,1,1.0 -5194,7898,2422.5095921451116,38.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,22.0,0.0,66757.3,0.0,59090.0,2,9,7.0,4,2.0 -5195,7899,2568.6758664402264,38.0,400,0.0,13,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,40.0,3,0,0.0,4,2.0 -5196,7900,2748.6424308481714,29.0,111,5200.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33879.45,0.0,29390.0,3,9,7.0,3,2.0 -5197,7901,3291.3929372017374,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27330.0,0.0,0.0,27709.75,0.0,0.0,3,10,8.0,1,0.0 -5198,7902,1578.0598556288412,39.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52446.85,0.0,56170.0,5,7,5.0,3,2.0 -5199,7906,3090.667763468707,53.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20297.1,0.0,0.0,1,8,0.0,1,1.0 -5200,7907,880.0685642151377,35.0,111,40.0,42,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,40507.0,0.0,33020.0,2,7,5.0,4,2.0 -5201,7909,2815.399797852259,19.0,211,0.0,81,1.0,0.0,2.0,1.3,0.0,6240.0,0.0,0.0,0.0,0.0,10862.0,0.0,0.0,3,1,3.0,2,1.0 -5202,7910,2669.2916410681464,28.0,111,0.0,68,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45679.85,0.0,36310.0,3,10,8.0,4,2.0 -5203,7913,1458.2027769229176,46.0,111,0.0,85,0.0,0.0,4.0,2.1,0.0,0.0,0.0,18630.0,0.0,0.0,22067.85,0.0,0.0,1,6,5.0,4,0.0 -5204,7914,3637.488171962145,76.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34790.0,0.0,0.0,58728.95,0.0,0.0,1,5,4.0,3,0.0 -5205,7915,3554.692751335323,63.0,111,3810.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16340.0,0.0,0.0,26963.05,0.0,8130.0,1,4,3.0,3,0.0 -5206,7917,1461.5527061640214,51.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53564.2,0.0,57690.0,1,7,5.0,3,2.0 -5207,7919,815.9326977109603,46.0,111,1500.0,63,2.0,2.0,8.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,37646.95,0.0,19580.0,2,9,7.0,4,2.0 -5208,7920,1347.8322917635874,66.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14280.0,0.0,0.0,17110.2,0.0,2390.0,1,8,0.0,3,1.0 -5209,7921,2779.558027589039,48.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,45.0,0.0,38516.45,0.0,45240.0,1,10,8.0,1,1.0 -5210,7922,2061.399760002666,48.0,112,4480.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41622.0,0.0,37630.0,2,9,0.0,3,2.0 -5211,7923,7931.775112291311,60.0,111,10280.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,5620.0,0.0,0.0,15145.6,0.0,0.0,3,10,8.0,2,1.0 -5212,7924,2600.7254057767327,41.0,111,0.0,54,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26357.7,0.0,18580.0,3,5,4.0,2,1.0 -5213,7925,3878.077842874396,29.0,221,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50435.8,0.0,49000.0,2,1,1.0,4,2.0 -5214,7926,2853.3844754686866,83.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11340.0,0.0,0.0,11409.0,0.0,0.0,5,0,0.0,1,0.0 -5215,7927,1958.4909743245732,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15890.0,0.0,0.0,15890.0,0.0,0.0,3,7,5.0,1,0.0 -5216,7931,3458.8999494186787,24.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8091.0,0.0,5190.0,3,6,4.0,1,1.0 -5217,7933,1280.111768622912,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50480.0,0.0,0.0,56467.65,0.0,650.0,1,10,4.0,3,0.0 -5218,7935,3498.375498282218,47.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22823.7,0.0,24800.0,2,10,8.0,1,1.0 -5219,7936,3624.996623751033,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20690.0,92.0,0.0,20143.55,0.0,0.0,1,9,7.0,1,0.0 -5220,7937,3351.027142841288,81.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20340.0,13.0,0.0,20042.45,0.0,0.0,5,7,0.0,1,0.0 -5221,7938,5188.6661388173825,37.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,25.0,0.0,25912.75,0.0,27020.0,3,7,5.0,1,1.0 -5222,7939,3226.333784579073,35.0,111,13630.0,38,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32639.0,0.0,24290.0,3,10,8.0,1,1.0 -5223,7942,4135.6006648398425,82.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,3270.0,24310.0,0.0,0.0,26864.6,0.0,0.0,3,2,3.0,5,0.0 -5224,7943,2003.5022553055323,57.0,211,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15737.4,0.0,16090.0,3,4,3.0,1,1.0 -5225,7945,3556.6473803437484,25.0,111,0.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25384.15,0.0,19660.0,3,8,7.0,4,2.0 -5226,7946,3031.545335446412,34.0,300,8180.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,39.0,0.0,33582.55,0.0,22970.0,1,0,0.0,4,2.0 -5227,7948,3781.923523272085,36.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,65267.7,0.0,77770.0,2,10,8.0,1,1.0 -5228,7949,2139.4841708230742,62.0,120,0.0,38,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,61499.5,0.0,39280.0,1,0,3.0,5,2.0 -5229,7950,2017.670822264016,50.0,112,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22660.0,0.0,0.0,45638.95,0.0,26460.0,1,7,0.0,3,1.0 -5230,7951,1360.2578144040808,53.0,112,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13240.0,0.0,0.0,48721.0,0.0,42270.0,2,10,0.0,3,1.0 -5231,7952,3428.0683259996395,69.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12030.0,0.0,0.0,10400.0,0.0,0.0,1,8,6.0,3,0.0 -5232,7953,2977.247328146001,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16780.0,0.0,0.0,16555.8,0.0,0.0,1,10,8.0,1,0.0 -5233,7954,5669.871211519986,60.0,211,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38356.2,0.0,39620.0,1,2,3.0,3,1.0 -5234,7956,1911.5636324955715,52.0,111,0.0,37,3,3.0,3.0,2.0,0.0,3790.0,0.0,0.0,0.0,0.0,47185.0,0.0,44990.0,1,10,8.0,2,3.0 -5235,7957,991.1053216963031,58.0,400,0.0,78,1.0,0.0,3.0,2.0,8750.0,0.0,0.0,0.0,0.0,0.0,22580.0,0.0,9750.0,3,0,0.0,4,1.0 -5236,7959,1784.4335371594782,28.0,400,4140.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,22827.85,0.0,12350.0,3,0,0.0,4,2.0 -5237,7960,1076.2148790928757,67.0,300,3490.0,74,1.0,0.0,3.0,2.0,0.0,0.0,0.0,50350.0,0.0,0.0,46130.7,0.0,0.0,1,0,0.0,4,1.0 -5238,7961,2401.4885287155976,52.0,120,1990.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43192.65,0.0,42950.0,3,0,2.0,4,3.0 -5239,7962,3057.8740479535622,45.0,111,0.0,85,0.0,0.0,4.0,2.3,0.0,0.0,0.0,11970.0,0.0,0.0,27349.6,0.0,0.0,3,10,8.0,2,0.0 -5240,7963,2758.4006140381653,28.0,112,14820.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35894.95,0.0,13780.0,3,5,0.0,4,2.0 -5241,7964,1674.2586366117296,55.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,86.0,0.0,29904.8,0.0,26130.0,5,6,4.0,1,1.0 -5242,7965,2719.3766208300744,40.0,112,0.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,79.0,0.0,97202.25,0.0,109090.0,2,7,1.0,4,2.0 -5243,7966,1235.7767596624396,46.0,300,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,31.0,0.0,63617.75,0.0,73280.0,1,0,0.0,4,2.0 -5244,7967,2853.3293342987777,54.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34947.7,0.0,40500.0,3,9,7.0,1,1.0 -5245,7968,2984.6013045804248,64.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37480.0,0.0,0.0,35046.15,0.0,0.0,1,0,0.0,3,0.0 -5246,7970,1918.2710039732697,72.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19560.0,0.0,0.0,19222.65,0.0,0.0,1,0,0.0,3,0.0 -5247,7972,3442.8954192222004,20.0,111,0.0,84,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,2096.0,0.0,0.0,3,9,7.0,5,0.0 -5248,7973,2301.7137418084994,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37230.0,0.0,0.0,37167.25,0.0,1990.0,1,9,7.0,3,0.0 -5249,7974,4017.2188448163824,32.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5540.0,0.0,0.0,17733.6,0.0,13150.0,3,8,7.0,1,1.0 -5250,7975,2485.36081700426,44.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,50.0,0.0,56012.95,0.0,56720.0,2,10,0.0,4,2.0 -5251,7976,1603.0895886284998,35.0,111,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41704.95,0.0,35960.0,3,7,6.0,4,2.0 -5252,7977,3733.2877514282386,55.0,111,0.0,68,2.0,2.0,3.0,2.0,0.0,4560.0,0.0,2190.0,0.0,0.0,47263.35,0.0,33330.0,3,9,7.0,4,2.0 -5253,7978,1730.4012967406568,85.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12140.0,0.0,0.0,24921.2,0.0,0.0,5,0,0.0,1,0.0 -5254,7979,2127.373177810026,27.0,400,1970.0,85,1.0,0.0,7.0,3.0,0.0,4920.0,0.0,0.0,0.0,0.0,35203.0,1300.0,6850.0,3,0,0.0,4,1.0 -5255,7981,3360.26454036439,30.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60337.0,0.0,65260.0,2,9,7.0,3,2.0 -5256,7982,2433.3848885094094,48.0,221,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19748.1,0.0,19590.0,3,1,2.0,2,1.0 -5257,7985,3291.548497030776,40.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14699.9,0.0,15540.0,2,9,7.0,1,1.0 -5258,7986,2792.368657342367,75.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10780.0,0.0,0.0,9694.85,0.0,0.0,1,9,2.0,1,0.0 -5259,7987,3308.4623746743214,32.0,111,5720.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32106.1,0.0,25740.0,3,9,7.0,3,2.0 -5260,7988,4193.0377601013615,36.0,120,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,3.0,0.0,43169.75,0.0,47150.0,1,0,2.0,4,2.0 -5261,7992,1689.3902743100655,41.0,120,0.0,43,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,73362.7,0.0,39700.0,2,0,0.0,4,2.0 -5262,7993,1597.6734969085003,51.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54727.1,0.0,58750.0,1,7,4.0,3,2.0 -5263,7995,1002.6222862701409,40.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,48414.0,0.0,41200.0,3,7,6.0,4,2.0 -5264,7996,1699.188265855701,40.0,112,0.0,53,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,66847.95,0.0,57630.0,2,9,0.0,4,2.0 -5265,7998,1950.3367525528133,42.0,112,3240.0,34,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41712.25,0.0,39250.0,2,6,0.0,4,2.0 -5266,7999,2836.114065269886,33.0,111,2340.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11264.85,0.0,8930.0,3,8,7.0,1,1.0 -5267,8000,2866.3509289125336,43.0,221,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38356.6,0.0,36010.0,1,1,2.0,4,2.0 -5268,8001,5530.626031318236,80.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60980.0,201.0,0.0,74096.35,0.0,0.0,1,9,1.0,3,0.0 -5269,8002,2684.5168643467837,48.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,1429.0,0.0,92608.35,0.0,83130.0,2,10,8.0,4,2.0 -5270,8003,3990.624176940091,84.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18500.0,0.0,0.0,17926.35,0.0,0.0,1,8,0.0,1,0.0 -5271,8004,2644.5898954905224,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32940.0,0.0,0.0,31737.8,0.0,340.0,1,7,5.0,3,0.0 -5272,8005,1979.6933227736183,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41190.0,39.0,0.0,38276.5,0.0,0.0,1,7,0.0,3,0.0 -5273,8007,7242.692348648616,56.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27390.0,0.0,0.0,25979.75,0.0,0.0,3,1,3.0,1,0.0 -5274,8009,3461.8292614875977,34.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,270.0,0.0,0.0,0.0,0.0,24128.8,1940.0,21910.0,3,8,7.0,4,2.0 -5275,8010,5255.709583759216,30.0,112,5770.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37015.05,0.0,31270.0,5,9,3.0,4,2.0 -5276,8012,3194.735927381868,33.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,16471.6,1740.0,10960.0,3,8,7.0,2,1.0 -5277,8013,1763.0539106557453,32.0,400,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37246.65,0.0,37580.0,3,0,0.0,3,2.0 -5278,8015,1445.3447844231498,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21880.0,0.0,0.0,21677.6,0.0,0.0,1,8,7.0,3,0.0 -5279,8016,2515.038265804681,32.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41921.2,0.0,36540.0,2,6,5.0,4,2.0 -5280,8017,2903.93499519919,42.0,111,0.0,68,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,30822.2,1460.0,14480.0,3,9,7.0,4,1.0 -5281,8020,2446.233085612728,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49490.0,395.0,0.0,51580.9,0.0,0.0,1,8,0.0,3,0.0 -5282,8021,3527.4356505126407,49.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,7440.0,0.0,0.0,28424.5,0.0,22110.0,3,8,6.0,5,1.0 -5283,8023,3305.23520054306,70.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23390.0,0.0,0.0,22374.9,0.0,0.0,1,1,1.0,1,0.0 -5284,8025,2971.0187409676532,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24290.0,0.0,0.0,24295.55,0.0,0.0,3,8,7.0,3,0.0 -5285,8026,3502.4959339413117,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45730.0,0.0,0.0,44094.25,0.0,0.0,1,9,7.0,3,0.0 -5286,8030,7856.927134348476,60.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14440.0,0.0,0.0,13908.7,0.0,0.0,3,0,3.0,1,0.0 -5287,8031,1453.6059645637833,65.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20620.0,0.0,0.0,20296.75,0.0,0.0,1,6,0.0,3,0.0 -5288,8032,3335.046087606772,30.0,111,1790.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,18368.3,430.0,6190.0,3,5,4.0,2,1.0 -5289,8033,2176.0619436276543,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38960.0,0.0,0.0,38929.7,0.0,2640.0,1,10,8.0,3,0.0 -5290,8034,2334.3617391541848,80.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14810.0,0.0,0.0,14724.8,0.0,0.0,1,9,2.0,1,0.0 -5291,8036,3555.751447461544,25.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30349.85,0.0,33810.0,3,7,5.0,1,1.0 -5292,8037,5149.56157195124,53.0,112,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27702.3,0.0,29480.0,1,9,2.0,3,1.0 -5293,8038,1300.7878293538768,55.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19044.0,0.0,20940.0,3,7,5.0,1,1.0 -5294,8039,2352.1667010754995,60.0,112,4060.0,63,1.0,1.0,1.0,1.0,0.0,3030.0,4740.0,0.0,0.0,0.0,14194.0,0.0,0.0,3,9,1.0,1,1.0 -5295,8041,2558.2131472696137,33.0,111,6460.0,54,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,8889.0,33453.2,0.0,15950.0,3,7,6.0,4,2.0 -5296,8042,2266.6100936967828,39.0,300,970.0,52,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41834.1,0.0,29170.0,2,0,0.0,4,3.0 -5297,8043,2772.037059289296,42.0,111,16600.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48128.05,0.0,33790.0,2,10,8.0,4,2.0 -5298,8044,1177.230524809415,47.0,400,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23179.1,0.0,23910.0,3,0,1.0,3,2.0 -5299,8045,4476.972520318032,32.0,112,0.0,12,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25311.75,0.0,0.0,2,8,0.0,4,2.0 -5300,8047,2917.4202491791434,68.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38230.0,0.0,0.0,35350.95,0.0,0.0,1,1,2.0,3,0.0 -5301,8050,997.3347576285536,71.0,111,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,37180.0,0.0,0.0,41935.3,0.0,360.0,1,3,4.0,4,1.0 -5302,8054,2304.6596972481366,56.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24620.0,0.0,0.0,25583.9,0.0,1380.0,1,8,6.0,2,0.0 -5303,8055,2650.445083337536,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62130.0,28.0,0.0,47230.05,0.0,0.0,2,10,8.0,3,0.0 -5304,8056,3196.7405489801936,30.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,18209.35,0.0,20100.0,2,9,7.0,1,1.0 -5305,8057,2367.9874439054856,64.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30670.0,0.0,0.0,27832.7,0.0,0.0,1,8,0.0,1,0.0 -5306,8058,2951.6328699285227,33.0,111,910.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,5.0,0.0,44469.95,0.0,44800.0,3,10,8.0,3,2.0 -5307,8059,3479.012601877163,56.0,111,8250.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37621.1,0.0,11690.0,1,9,7.0,3,2.0 -5308,8061,3015.9062579398196,27.0,111,3160.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40316.2,0.0,40190.0,3,9,7.0,3,2.0 -5309,8062,1804.5061976753782,64.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25710.0,0.0,0.0,27022.6,0.0,0.0,1,0,1.0,3,0.0 -5310,8063,2451.223928478271,59.0,400,0.0,11,2.0,2.0,3.0,2.0,1990.0,0.0,0.0,0.0,0.0,0.0,1755.0,0.0,0.0,1,0,0.0,4,2.0 -5311,8064,1637.979892957144,44.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22452.85,0.0,22290.0,2,9,7.0,2,1.0 -5312,8066,2463.96657924216,66.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20200.0,0.0,0.0,20079.5,0.0,0.0,1,0,0.0,3,0.0 -5313,8067,3086.7108345151337,20.0,111,640.0,67,1.0,1.0,4.0,2.5,0.0,3460.0,0.0,0.0,0.0,0.0,25173.0,0.0,16930.0,3,7,5.0,4,1.0 -5314,8069,1147.1387858522428,56.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36653.5,0.0,40150.0,2,8,7.0,4,2.0 -5315,8073,3423.977821581795,85.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16450.0,0.0,0.0,16245.9,0.0,0.0,3,0,3.0,1,0.0 -5316,8075,2161.0180967464175,89.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31720.0,0.0,0.0,31198.45,0.0,0.0,1,9,7.0,3,0.0 -5317,8076,4284.847655090833,47.0,112,560.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,54199.85,0.0,54630.0,2,9,1.0,4,2.0 -5318,8077,1150.380704408033,51.0,300,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29363.3,0.0,30280.0,1,0,0.0,3,1.0 -5319,8078,2855.5892454457035,57.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36543.85,0.0,16890.0,2,9,7.0,1,1.0 -5320,8079,3311.126955594421,85.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9710.0,0.0,0.0,9448.7,0.0,0.0,1,9,7.0,1,0.0 -5321,8080,2244.38758692978,64.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44350.0,0.0,0.0,43326.05,0.0,0.0,1,0,0.0,3,0.0 -5322,8081,3318.016429726079,37.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22844.85,0.0,23970.0,3,8,6.0,1,1.0 -5323,8082,3120.1603359317637,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,2591.0,0.0,0.0,3,8,6.0,1,0.0 -5324,8083,1260.2636797409536,61.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64110.0,32.0,0.0,59875.75,0.0,0.0,1,7,6.0,3,0.0 -5325,8085,2093.3221776955857,23.0,300,9170.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26615.0,0.0,17100.0,3,0,0.0,3,2.0 -5326,8086,3023.2604124405057,30.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30259.9,0.0,34160.0,2,10,8.0,1,1.0 -5327,8087,1850.6643875480338,56.0,111,370.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,2860.0,0.0,0.0,21957.1,0.0,19400.0,3,8,6.0,3,2.0 -5328,8088,2115.891515051947,62.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16700.0,0.0,0.0,34205.3,0.0,21880.0,1,5,4.0,3,1.0 -5329,8089,3001.1014292372715,52.0,120,0.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50287.95,0.0,49200.0,1,0,0.0,4,2.0 -5330,8090,3339.0173279401133,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17700.0,0.0,0.0,15931.7,0.0,0.0,1,8,6.0,1,0.0 -5331,8091,1660.523203195723,59.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20590.0,0.0,0.0,22548.35,0.0,1960.0,1,4,0.0,3,1.0 -5332,8092,2466.794055002215,66.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17510.0,36.0,0.0,18577.75,0.0,0.0,1,9,3.0,1,0.0 -5333,8094,1399.4135424349424,62.0,221,0.0,72,1.0,0.0,4.0,2.5,0.0,0.0,0.0,24330.0,0.0,0.0,38790.25,0.0,0.0,1,1,2.0,5,1.0 -5334,8095,4223.022466621803,28.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,3310.0,0.0,0.0,0.0,0.0,9582.0,1190.0,0.0,3,7,5.0,2,0.0 -5335,8098,4606.028056077723,41.0,221,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11615.9,0.0,12000.0,3,1,2.0,3,2.0 -5336,8099,3407.8773497595193,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3481.0,0.0,0.0,3,8,6.0,1,0.0 -5337,8100,1920.6550625690018,56.0,112,30880.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46835.1,0.0,22640.0,1,10,0.0,3,2.0 -5338,8101,2065.4387926415866,52.0,111,0.0,47,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,37603.95,0.0,36520.0,3,8,7.0,2,1.0 -5339,8102,1900.66958015657,31.0,300,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37979.55,0.0,38830.0,2,0,0.0,3,2.0 -5340,8104,1927.3486656586663,38.0,111,16790.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38781.5,0.0,22390.0,2,8,7.0,4,2.0 -5341,8106,5902.491536665326,46.0,111,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50213.9,0.0,52290.0,4,10,8.0,4,2.0 -5342,8108,2742.805364061458,52.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,45.0,0.0,45535.9,0.0,46830.0,3,9,7.0,3,2.0 -5343,8109,2758.5737388244215,27.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21788.15,0.0,23820.0,3,9,7.0,1,1.0 -5344,8110,2349.0181019466963,59.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,63819.2,0.0,71940.0,1,9,7.0,3,2.0 -5345,8111,2449.6779794004897,59.0,221,0.0,77,0.0,0.0,2.0,1.5,1330.0,0.0,0.0,21310.0,1.0,0.0,21345.55,0.0,0.0,1,1,3.0,3,0.0 -5346,8112,2452.6017401907807,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9790.0,0.0,0.0,8525.0,0.0,0.0,1,9,7.0,1,0.0 -5347,8113,1974.4958810066287,80.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15370.0,0.0,0.0,17495.85,0.0,0.0,1,8,1.0,3,0.0 -5348,8114,895.0589207619558,56.0,211,11950.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26130.5,0.0,15370.0,1,3,4.0,3,2.0 -5349,8116,2565.0750461561042,80.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25390.0,0.0,0.0,24837.7,0.0,0.0,1,6,0.0,1,0.0 -5350,8117,2756.2370610369567,52.0,111,0.0,52,1.0,1.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,36448.0,0.0,23270.0,3,7,6.0,1,1.0 -5351,8118,2780.513082203893,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28450.0,0.0,0.0,25073.75,0.0,0.0,1,10,8.0,1,0.0 -5352,8119,3172.2807826495846,66.0,221,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28990.0,112.0,0.0,27278.9,0.0,0.0,2,1,2.0,1,0.0 -5353,8121,2049.2187009784857,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48350.0,0.0,0.0,48578.2,0.0,0.0,1,7,0.0,3,0.0 -5354,8124,2278.552135645942,82.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18000.0,0.0,0.0,17734.0,0.0,0.0,3,0,0.0,3,0.0 -5355,8126,2547.1681988609284,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23690.0,0.0,0.0,22661.85,0.0,0.0,1,6,5.0,3,0.0 -5356,8127,4220.559988179668,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6529.55,0.0,0.0,3,9,7.0,1,0.0 -5357,8130,3305.398085956602,54.0,111,5600.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,7.0,0.0,5304.05,0.0,0.0,1,10,8.0,1,1.0 -5358,8132,3704.673230099759,58.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18100.0,0.0,0.0,40211.5,0.0,23340.0,3,9,7.0,3,1.0 -5359,8133,2357.3534928002764,58.0,111,2540.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27000.0,0.0,0.0,25157.75,0.0,0.0,1,6,5.0,3,0.0 -5360,8135,1900.0406753109958,40.0,300,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,50384.75,0.0,45940.0,2,0,0.0,4,2.0 -5361,8138,1786.609915891661,39.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24648.95,0.0,27760.0,2,8,2.0,1,1.0 -5362,8139,2002.3411870578964,47.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,11.0,0.0,48700.35,0.0,52670.0,2,8,0.0,4,2.0 -5363,8140,2449.6032255329856,57.0,111,4440.0,48,1.0,1.0,2.0,1.5,4280.0,0.0,0.0,3410.0,0.0,0.0,18414.95,0.0,7220.0,1,9,7.0,3,1.0 -5364,8141,1567.835992370501,44.0,120,230.0,45,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,38404.3,0.0,33410.0,1,0,3.0,4,2.0 -5365,8142,2664.587537142156,48.0,300,8640.0,67,2.0,1.0,2.0,1.5,8380.0,0.0,0.0,0.0,0.0,0.0,20587.0,0.0,3550.0,5,0,0.0,3,2.0 -5366,8144,2156.6505512059207,49.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24724.3,0.0,27500.0,1,9,7.0,1,1.0 -5367,8146,2590.803068526926,57.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,5.0,0.0,78146.4,0.0,90920.0,2,9,7.0,3,2.0 -5368,8147,2590.347374876516,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37810.0,0.0,0.0,38764.2,0.0,0.0,1,7,5.0,3,0.0 -5369,8148,2759.2963106427633,39.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,60349.65,0.0,65500.0,2,10,8.0,4,2.0 -5370,8149,2271.7594770795567,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22240.0,80.0,0.0,20849.55,0.0,0.0,5,9,7.0,1,0.0 -5371,8150,3863.4543089586964,38.0,111,0.0,42,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,15.0,0.0,38532.35,0.0,39840.0,3,8,7.0,4,2.0 -5372,8151,1988.953438991401,72.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21420.0,0.0,0.0,22924.0,0.0,0.0,5,0,0.0,1,0.0 -5373,8154,2264.481286391958,70.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18660.0,0.0,0.0,18874.35,0.0,0.0,1,7,6.0,1,0.0 -5374,8158,2921.985150720839,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,27.0,0.0,24093.4,0.0,24570.0,3,8,6.0,1,1.0 -5375,8159,3021.492594214788,77.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12870.0,0.0,0.0,12643.8,0.0,0.0,1,0,0.0,1,0.0 -5376,8161,2062.3179204586895,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31090.0,0.0,0.0,28786.75,0.0,0.0,1,8,7.0,3,0.0 -5377,8162,4024.6648973523625,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17310.0,0.0,0.0,15978.25,0.0,0.0,1,10,8.0,1,0.0 -5378,8163,1310.3328489323555,46.0,112,0.0,37,2.0,2.0,6.0,3.3,0.0,0.0,0.0,4810.0,0.0,0.0,74449.6,0.0,64650.0,2,9,0.0,4,2.0 -5379,8167,1946.0176556117515,48.0,400,2780.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35861.9,0.0,34030.0,1,0,0.0,4,3.0 -5380,8169,5500.846532193044,54.0,120,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23059.0,0.0,24180.0,5,0,2.0,1,1.0 -5381,8170,5200.38251686857,60.0,212,1140.0,75,1.0,2.0,2.0,1.5,0.0,0.0,0.0,18960.0,0.0,0.0,24870.7,0.0,6380.0,1,3,0.0,3,1.0 -5382,8173,2218.5872521463657,55.0,111,7550.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60824.0,0.0,57960.0,2,8,7.0,4,3.0 -5383,8176,5720.572566504309,56.0,112,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31591.2,0.0,36110.0,3,9,3.0,1,1.0 -5384,8177,1834.1897121356317,61.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45120.0,0.0,0.0,43808.8,0.0,0.0,1,0,0.0,3,0.0 -5385,8179,2497.958138947953,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6260.0,0.0,0.0,-0.0,0.0,0.0,1,8,7.0,1,0.0 -5386,8180,3259.5700054940426,65.0,111,670.0,72,1.0,1.0,2.0,1.5,0.0,1540.0,0.0,15400.0,5.0,0.0,21703.7,660.0,0.0,3,8,7.0,2,1.0 -5387,8182,2676.837623593246,72.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44750.0,0.0,0.0,53152.35,0.0,0.0,1,9,0.0,3,0.0 -5388,8184,1612.9913579740073,59.0,112,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16350.0,0.0,0.0,68726.0,0.0,57040.0,1,9,0.0,3,1.0 -5389,8186,2697.9750702006113,52.0,120,4210.0,85,1.0,1.0,3.0,2.0,0.0,0.0,0.0,16770.0,0.0,0.0,28042.25,200.0,7060.0,3,0,2.0,4,1.0 -5390,8187,3344.3130773583193,39.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45792.0,0.0,48710.0,3,10,8.0,3,2.0 -5391,8191,3722.2738999904964,28.0,111,14390.0,52,2.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25829.95,0.0,8120.0,3,9,7.0,4,2.0 -5392,8192,5939.624966950568,43.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48370.2,0.0,52860.0,3,10,8.0,4,2.0 -5393,8193,3076.3134053531094,93.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8890.0,0.0,0.0,10436.0,0.0,0.0,3,9,7.0,1,0.0 -5394,8194,2431.5521774288777,32.0,111,0.0,47,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24971.85,0.0,23050.0,3,10,8.0,4,1.0 -5395,8196,2977.258767747089,57.0,112,0.0,75,2.0,2.0,4.0,2.5,0.0,0.0,0.0,26280.0,0.0,0.0,55998.75,0.0,31260.0,1,7,0.0,4,2.0 -5396,8197,2561.5321730555147,41.0,111,0.0,85,0.0,0.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,13164.0,0.0,0.0,3,8,7.0,1,0.0 -5397,8199,1054.057611537206,54.0,120,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49182.0,0.0,0.0,1,0,0.0,3,2.0 -5398,8200,2993.6299694028708,48.0,111,0.0,62,1.0,1.0,2.0,1.3,0.0,0.0,0.0,380.0,0.0,0.0,24610.0,0.0,21770.0,3,5,4.0,2,1.0 -5399,8201,1177.3040929193794,44.0,111,0.0,46,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,90.0,0.0,55845.6,0.0,53740.0,2,8,7.0,4,1.0 -5400,8203,825.7385213295098,36.0,300,6100.0,47,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37658.6,0.0,29010.0,3,0,1.0,4,2.0 -5401,8204,1566.951109494124,56.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11310.0,0.0,0.0,45639.0,0.0,37730.0,5,6,0.0,3,1.0 -5402,8206,5725.431977889153,23.0,221,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18556.0,0.0,19210.0,3,1,2.0,1,1.0 -5403,8207,3182.276415613234,23.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27622.5,0.0,29370.0,3,7,5.0,3,2.0 -5404,8210,2357.1247066360957,35.0,120,9860.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22856.05,0.0,14260.0,2,0,1.0,4,2.0 -5405,8211,4524.665364377046,32.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28471.45,0.0,30160.0,3,8,6.0,1,1.0 -5406,8212,2937.463830193064,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38130.0,208.0,0.0,36022.2,0.0,0.0,1,9,7.0,5,0.0 -5407,8214,1960.0995507607759,35.0,112,2950.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50025.2,0.0,45540.0,2,8,1.0,4,2.0 -5408,8219,3669.568413724059,22.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20760.8,0.0,21270.0,3,8,7.0,3,1.0 -5409,8220,2262.944418670336,54.0,112,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,30826.65,0.0,30870.0,1,6,0.0,4,2.0 -5410,8222,3532.99631940693,47.0,111,2190.0,48,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37151.45,0.0,35430.0,3,9,7.0,4,3.0 -5411,8223,3360.2175953845517,43.0,111,10040.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12427.05,0.0,0.0,3,3,4.0,1,1.0 -5412,8224,1518.8655036639104,40.0,300,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43577.25,0.0,52700.0,2,0,0.0,1,1.0 -5413,8225,4010.747479713333,65.0,111,5600.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14620.0,0.0,0.0,19944.05,0.0,0.0,3,6,5.0,3,0.0 -5414,8227,2227.5836570572824,60.0,112,0.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,33920.0,0.0,0.0,32364.75,0.0,650.0,2,7,0.0,3,1.0 -5415,8228,3242.5690632153237,55.0,111,0.0,21,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14143.25,520.0,0.0,3,10,8.0,1,1.0 -5416,8230,2691.1506377135815,34.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,57914.5,0.0,63260.0,2,10,8.0,4,2.0 -5417,8231,7436.106787685905,40.0,221,3330.0,48,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,155.0,0.0,35407.45,0.0,29790.0,2,1,1.0,4,1.0 -5418,8232,2292.1695766805665,50.0,120,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27563.1,0.0,30730.0,2,0,0.0,1,1.0 -5419,8233,1829.7126928020728,51.0,111,0.0,67,2.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,46671.9,0.0,39790.0,2,10,8.0,4,2.0 -5420,8234,3410.2312922962114,58.0,111,0.0,23,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,10553.9,0.0,117450.0,1,10,8.0,4,2.0 -5421,8236,3487.1609301752305,62.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33020.0,54.0,0.0,33859.7,0.0,0.0,1,9,3.0,3,0.0 -5422,8237,5056.9248194696065,75.0,400,5710.0,86,1.0,0.0,2.0,1.5,0.0,0.0,0.0,10290.0,0.0,0.0,27858.6,0.0,12350.0,1,0,0.0,2,1.0 -5423,8239,3004.5280693188483,23.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18132.35,0.0,17810.0,2,8,0.0,1,1.0 -5424,8241,3093.8588929670245,45.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19573.45,0.0,16380.0,3,8,6.0,2,1.0 -5425,8242,1583.7179838870743,57.0,112,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,65569.15,0.0,59100.0,1,10,0.0,4,2.0 -5426,8244,4485.814406481235,41.0,211,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,65369.0,0.0,69370.0,2,2,3.0,4,2.0 -5427,8246,1760.882731789908,55.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16460.0,0.0,0.0,24952.85,0.0,9130.0,1,9,7.0,3,1.0 -5428,8247,2815.635488973005,46.0,111,0.0,85,0.0,0.0,3.0,1.8,8380.0,0.0,0.0,0.0,0.0,0.0,14990.0,0.0,0.0,3,6,4.0,2,0.0 -5429,8248,1775.2706696337752,45.0,111,0.0,85,0.0,0.0,3.0,1.6,10010.0,0.0,0.0,0.0,0.0,0.0,18060.0,0.0,0.0,3,9,7.0,2,0.0 -5430,8249,1235.3923540310736,39.0,111,0.0,38,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,69348.7,0.0,54100.0,2,9,7.0,4,2.0 -5431,8250,1894.373243518947,58.0,111,0.0,37,3,3.0,3.0,2.0,5350.0,0.0,0.0,0.0,4.0,0.0,112012.15,0.0,94190.0,1,8,7.0,4,3.0 -5432,8251,2964.506691722979,30.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,24.0,0.0,60766.8,0.0,64040.0,3,10,8.0,5,2.0 -5433,8252,3346.489956568553,53.0,111,6950.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16543.0,690.0,4660.0,3,9,7.0,2,2.0 -5434,8253,3673.749956723952,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39200.0,0.0,0.0,35576.35,0.0,0.0,1,9,7.0,3,0.0 -5435,8254,2539.401453043228,46.0,120,6270.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,7180.0,0.0,0.0,18305.55,0.0,570.0,1,0,0.0,2,1.0 -5436,8255,1569.0257701443945,38.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51602.45,0.0,50090.0,2,7,6.0,4,2.0 -5437,8256,1630.383923036688,58.0,211,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,1120.0,0.0,0.0,26807.0,0.0,26090.0,1,3,4.0,3,1.0 -5438,8258,4125.404712561889,82.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,2340.0,25180.0,0.0,0.0,26236.15,0.0,0.0,1,0,2.0,3,0.0 -5439,8259,2091.6324190959,74.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32540.0,0.0,0.0,35868.2,0.0,0.0,5,10,4.0,1,0.0 -5440,8260,2559.3476157560444,64.0,111,0.0,62,3,3.0,4.0,2.5,1460.0,0.0,0.0,0.0,0.0,0.0,34668.9,0.0,35890.0,1,9,7.0,4,3.0 -5441,8262,2962.1505354592346,37.0,111,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,1.0,0.0,22331.5,0.0,17840.0,5,10,8.0,4,1.0 -5442,8264,3503.983398510973,51.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10230.0,0.0,0.0,23998.2,0.0,15800.0,2,7,0.0,1,1.0 -5443,8265,5612.8929318609025,49.0,221,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,11470.0,0.0,0.0,30032.5,0.0,36360.0,1,1,2.0,4,2.0 -5444,8267,921.7289567297042,54.0,112,11390.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26026.5,0.0,16090.0,1,9,1.0,3,2.0 -5445,8268,3653.293790103053,35.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24703.05,0.0,27380.0,2,9,7.0,1,1.0 -5446,8269,1827.2301712097708,27.0,120,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55131.75,0.0,60950.0,3,0,1.0,3,2.0 -5447,8270,3621.794781813257,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18630.0,0.0,0.0,18669.0,0.0,0.0,3,9,7.0,3,0.0 -5448,8272,1793.575106664903,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48840.0,317.0,0.0,48646.6,0.0,0.0,1,9,7.0,3,0.0 -5449,8274,3356.318693973904,67.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30840.0,0.0,0.0,29055.75,0.0,0.0,3,10,8.0,3,0.0 -5450,8275,3537.6136912278553,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3547.0,0.0,0.0,3,9,7.0,1,0.0 -5451,8276,5809.854119239192,37.0,111,0.0,68,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40903.85,0.0,27780.0,3,10,8.0,2,1.0 -5452,8277,3581.8654093781875,21.0,111,6720.0,84,1.0,0.0,2.0,1.5,0.0,770.0,0.0,0.0,0.0,0.0,22074.55,1660.0,9640.0,3,9,7.0,3,1.0 -5453,8279,2446.6032347443866,62.0,112,11770.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17760.0,0.0,0.0,27996.75,0.0,0.0,1,6,0.0,3,0.0 -5454,8282,2271.086760837989,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21690.0,0.0,0.0,18907.4,0.0,0.0,1,10,8.0,1,0.0 -5455,8283,3715.217732145532,21.0,111,0.0,81,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11675.15,0.0,10520.0,3,9,7.0,3,1.0 -5456,8284,1340.8670811776265,38.0,111,2510.0,42,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,25367.3,0.0,5670.0,3,7,5.0,2,1.0 -5457,8286,1488.5607747354788,58.0,221,2950.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25940.0,0.0,0.0,34929.55,0.0,2850.0,1,1,3.0,3,0.0 -5458,8289,3568.123676118435,52.0,111,12490.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19322.65,0.0,8640.0,3,9,7.0,1,1.0 -5459,8291,3372.2348915915795,29.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,111.0,0.0,30686.15,0.0,31630.0,3,10,8.0,1,1.0 -5460,8292,1104.192112307574,36.0,111,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,31633.65,0.0,22670.0,3,8,7.0,4,2.0 -5461,8293,2925.0332210666584,36.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15174.45,0.0,15310.0,3,10,8.0,1,1.0 -5462,8295,1782.3227476624452,64.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,24910.0,150.0,0.0,130546.05,0.0,28230.0,1,8,1.0,3,2.0 -5463,8298,2227.9222055898285,57.0,400,6110.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,21330.0,0.0,0.0,32703.65,0.0,6780.0,1,0,0.0,4,1.0 -5464,8299,1183.7634678231648,57.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,56.0,0.0,55516.15,0.0,57350.0,1,9,7.0,3,2.0 -5465,8300,3444.821195216305,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1795.15,0.0,0.0,3,9,7.0,1,0.0 -5466,8302,1539.3437648993115,48.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18929.5,0.0,19620.0,3,7,5.0,1,1.0 -5467,8304,2095.781114264381,47.0,212,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26030.0,0.0,0.0,1,3,0.0,3,2.0 -5468,8305,3691.7064925604222,46.0,111,1930.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,32277.9,100.0,18630.0,3,8,6.0,4,2.0 -5469,8307,2201.3463583084376,56.0,300,13420.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13370.65,0.0,630.0,2,0,0.0,1,1.0 -5470,8309,2889.346142288,48.0,111,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29913.15,0.0,29340.0,2,10,8.0,4,1.0 -5471,8310,1044.7100583831343,58.0,111,6070.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28955.35,0.0,23610.0,1,6,5.0,4,1.0 -5472,8312,1331.9747624671581,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34550.0,0.0,0.0,31290.3,0.0,0.0,1,8,2.0,3,0.0 -5473,8313,1897.6285741597524,48.0,300,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32466.25,0.0,33200.0,3,0,0.0,4,2.0 -5474,8314,2824.5475288391845,49.0,221,11010.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28496.85,0.0,16800.0,3,1,1.0,4,2.0 -5475,8315,3559.868914620441,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12353.0,0.0,0.0,3,8,7.0,1,0.0 -5476,8318,2105.676428137089,78.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26640.0,0.0,0.0,29338.0,0.0,0.0,3,8,7.0,3,0.0 -5477,8320,2595.4743310204494,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24670.0,33.0,0.0,25265.8,0.0,0.0,1,8,7.0,1,0.0 -5478,8321,2665.0237726780742,33.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1777.35,0.0,0.0,3,9,7.0,1,0.0 -5479,8323,3631.0574160946935,27.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26246.6,0.0,28390.0,3,8,7.0,1,1.0 -5480,8324,3093.41107821008,56.0,111,5600.0,56,1.0,0.0,1.0,1.0,6340.0,0.0,0.0,2470.0,0.0,0.0,17410.0,0.0,0.0,3,9,7.0,1,1.0 -5481,8325,2871.2773492610563,53.0,112,0.0,67,3,4.0,6.0,3.3,0.0,11360.0,0.0,0.0,0.0,0.0,79065.65,1280.0,68670.0,2,7,0.0,5,4.0 -5482,8328,2959.140489144118,35.0,111,0.0,37,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54133.9,0.0,33070.0,1,9,7.0,4,2.0 -5483,8329,1394.1321577047725,55.0,400,2760.0,13,2.0,2.0,4.0,2.5,0.0,0.0,90.0,10530.0,43.0,0.0,39154.1,0.0,8400.0,1,0,0.0,5,2.0 -5484,8331,1619.3981159984676,37.0,112,0.0,47,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,31033.0,0.0,20330.0,2,6,0.0,4,2.0 -5485,8332,3822.8718097930555,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20510.0,0.0,0.0,19594.2,0.0,0.0,1,7,5.0,1,0.0 -5486,8333,2943.2773184450252,53.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,21827.65,0.0,20550.0,2,9,7.0,1,1.0 -5487,8334,2823.652870853118,27.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43387.55,0.0,38510.0,2,8,7.0,4,2.0 -5488,8338,2160.9243558614994,57.0,120,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13500.75,0.0,13860.0,3,0,0.0,1,1.0 -5489,8339,1844.4372737874905,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21750.0,0.0,0.0,20676.8,0.0,0.0,1,5,4.0,3,0.0 -5490,8341,3388.5255631240643,44.0,111,23410.0,56,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43283.95,0.0,16020.0,1,9,7.0,4,2.0 -5491,8342,1443.1082389234969,68.0,221,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,48190.0,0.0,0.0,44579.2,0.0,0.0,1,1,2.0,5,0.0 -5492,8343,929.3817244399572,47.0,111,5720.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,1040.0,0.0,0.0,23072.45,0.0,460.0,3,6,4.0,2,1.0 -5493,8345,1035.4027334410557,48.0,120,0.0,21,1.0,1.0,11.0,4.6,0.0,5290.0,0.0,0.0,0.0,0.0,28496.05,1920.0,0.0,1,0,0.0,4,1.0 -5494,8349,3179.2561564071843,31.0,111,13570.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17976.15,0.0,4950.0,3,9,7.0,1,1.0 -5495,8351,2727.425909714067,65.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15820.0,0.0,0.0,15029.2,0.0,0.0,1,0,0.0,1,0.0 -5496,8354,1236.7978284652847,65.0,221,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20490.0,0.0,0.0,35256.1,0.0,0.0,1,1,3.0,3,0.0 -5497,8355,1148.1412032372539,37.0,112,0.0,33,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,29597.4,0.0,24020.0,3,8,2.0,2,1.0 -5498,8356,2090.2840606746795,33.0,112,12540.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27883.3,0.0,15560.0,2,7,0.0,3,2.0 -5499,8357,1457.1509570757132,55.0,120,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13440.0,0.0,0.0,28570.9,0.0,0.0,1,0,0.0,3,1.0 -5500,8358,1765.8933811935424,54.0,112,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,10790.0,0.0,0.0,84911.25,0.0,38100.0,1,10,0.0,4,2.0 -5501,8359,5277.318436099185,65.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30990.0,0.0,0.0,28944.35,0.0,0.0,1,0,2.0,3,0.0 -5502,8360,2284.900151817831,83.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58000.0,440.0,0.0,52581.75,0.0,0.0,1,10,0.0,3,0.0 -5503,8362,2692.9197235853762,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31840.0,0.0,0.0,30049.8,0.0,0.0,3,10,8.0,3,0.0 -5504,8365,1048.213058925041,53.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52077.4,0.0,56570.0,1,6,5.0,3,2.0 -5505,8367,2660.8673834445217,59.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27860.0,0.0,0.0,31207.5,0.0,380.0,1,7,0.0,3,0.0 -5506,8368,2291.423832779139,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19960.0,0.0,0.0,19289.9,0.0,0.0,3,5,4.0,1,0.0 -5507,8370,912.3120808113046,65.0,112,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,26710.0,0.0,0.0,35913.3,0.0,11760.0,1,9,1.0,4,1.0 -5508,8372,3025.649164790385,47.0,111,0.0,46,1.0,0.0,2.0,1.3,0.0,4120.0,0.0,0.0,0.0,0.0,4399.25,0.0,350.0,5,10,8.0,2,1.0 -5509,8373,3194.990639311785,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23790.0,26.0,0.0,26615.15,0.0,0.0,1,9,7.0,1,0.0 -5510,8375,3543.2609191686192,20.0,111,390.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21664.0,0.0,19200.0,3,8,7.0,3,2.0 -5511,8376,5945.5526638818565,63.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15310.0,0.0,0.0,14989.9,0.0,0.0,1,9,7.0,1,0.0 -5512,8379,2950.484435849666,59.0,112,8960.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,18730.0,0.0,0.0,25559.4,0.0,0.0,2,7,0.0,3,1.0 -5513,8381,2133.619547070756,54.0,300,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4600.0,0.0,0.0,22892.25,0.0,19340.0,3,0,0.0,1,1.0 -5514,8382,1294.1529136202746,55.0,112,5540.0,54,1.0,0.0,2.0,1.5,0.0,0.0,0.0,19370.0,0.0,0.0,30765.05,0.0,7970.0,1,6,1.0,3,1.0 -5515,8385,2920.0342379761087,56.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34735.55,0.0,35660.0,2,8,0.0,3,2.0 -5516,8386,3466.228486160867,59.0,300,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,7900.0,0.0,0.0,10471.5,0.0,0.0,1,0,0.0,1,1.0 -5517,8388,2733.746945494388,42.0,112,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43537.3,0.0,45200.0,2,6,0.0,4,2.0 -5518,8390,3009.0794847791167,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33250.0,63.0,0.0,33178.65,0.0,0.0,1,8,6.0,1,0.0 -5519,8394,2255.7568752564102,55.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56560.0,0.0,0.0,49085.35,0.0,0.0,1,6,4.0,3,0.0 -5520,8396,3104.759117855186,45.0,221,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,2.0,0.0,59682.6,0.0,52440.0,2,1,2.0,4,2.0 -5521,8398,1131.2274853694005,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34660.0,0.0,0.0,32965.4,0.0,0.0,1,8,7.0,3,0.0 -5522,8400,2287.8127799161434,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30680.0,0.0,0.0,28688.4,0.0,0.0,3,10,8.0,3,0.0 -5523,8401,3631.872946598457,66.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,5270.0,18140.0,0.0,0.0,29492.45,0.0,4600.0,5,1,2.0,1,0.0 -5524,8403,2939.626814954622,60.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,81562.8,0.0,98190.0,1,9,7.0,3,2.0 -5525,8404,1361.841257578962,42.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45565.1,0.0,44600.0,2,9,1.0,4,2.0 -5526,8405,1659.6865688589237,70.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25640.0,86.0,0.0,24731.35,0.0,0.0,1,0,0.0,3,0.0 -5527,8406,3026.377641102081,71.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6980.0,0.0,0.0,8081.95,0.0,0.0,5,0,0.0,1,0.0 -5528,8407,2783.98499764439,66.0,111,1320.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39180.0,0.0,0.0,40446.6,0.0,0.0,3,10,8.0,3,0.0 -5529,8408,898.1432863848164,44.0,112,0.0,55,2.0,2.0,5.0,2.6,0.0,0.0,0.0,2130.0,0.0,0.0,50339.25,0.0,38730.0,2,6,0.0,4,2.0 -5530,8412,1033.29239962143,70.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14210.0,0.0,0.0,77648.0,0.0,0.0,1,0,0.0,3,0.0 -5531,8413,7815.079298599795,65.0,221,0.0,78,0.0,0.0,4.0,2.1,0.0,0.0,0.0,15980.0,0.0,0.0,22644.0,0.0,0.0,3,1,3.0,4,0.0 -5532,8414,1777.350702687045,48.0,111,0.0,85,1.0,0.0,6.0,3.3,8450.0,5660.0,0.0,4990.0,0.0,0.0,25110.35,0.0,0.0,5,9,7.0,5,1.0 -5533,8415,4062.3787477234873,56.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47844.1,0.0,48430.0,1,5,0.0,3,2.0 -5534,8417,3470.1193319695194,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,62480.0,3445.0,0.0,61026.7,0.0,0.0,5,10,8.0,1,0.0 -5535,8418,1733.792244523137,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29800.0,0.0,0.0,28252.55,0.0,0.0,1,10,8.0,3,0.0 -5536,8419,4765.720751257099,44.0,112,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47681.3,0.0,36680.0,2,9,1.0,4,2.0 -5537,8420,1627.7201481554287,77.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10840.0,0.0,0.0,10823.75,0.0,0.0,1,9,1.0,1,0.0 -5538,8421,2641.152685231278,48.0,111,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,26193.0,0.0,15650.0,3,10,8.0,4,2.0 -5539,8422,3013.7178890076907,47.0,111,0.0,56,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,47815.6,0.0,45050.0,3,10,8.0,4,2.0 -5540,8423,3421.3371905252816,26.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30081.9,0.0,34430.0,3,8,7.0,1,1.0 -5541,8424,2770.6151470743193,58.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37780.0,0.0,0.0,35571.4,0.0,0.0,1,9,2.0,3,0.0 -5542,8425,2087.6338372353125,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32980.0,0.0,0.0,31701.7,0.0,0.0,1,8,6.0,3,0.0 -5543,8426,3579.3464716989106,94.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34360.0,322.0,0.0,31757.7,0.0,0.0,1,8,6.0,1,0.0 -5544,8429,2499.6966251671897,56.0,400,0.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28876.4,0.0,29990.0,1,0,0.0,3,2.0 -5545,8430,4494.146699685386,48.0,112,2280.0,68,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37478.55,0.0,34060.0,3,9,0.0,4,2.0 -5546,8431,2684.6001507446394,35.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15844.0,0.0,16550.0,3,9,7.0,1,1.0 -5547,8432,1956.3613273173914,50.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3814.0,0.0,35829.65,0.0,31640.0,3,6,4.0,1,1.0 -5548,8434,1555.7500842286292,52.0,300,1500.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,4770.0,0.0,0.0,10950.9,0.0,4640.0,3,0,0.0,1,1.0 -5549,8436,2453.9878518354467,50.0,221,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,40314.7,0.0,36050.0,3,1,3.0,4,2.0 -5550,8437,3146.3495262495453,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,341.0,0.0,0.0,3,8,6.0,1,0.0 -5551,8438,5073.895229353855,38.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,57.0,0.0,45697.75,0.0,34680.0,2,9,1.0,4,2.0 -5552,8439,3621.4605751954546,24.0,112,0.0,62,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11255.0,0.0,10790.0,3,6,0.0,1,1.0 -5553,8440,2007.9290800460228,29.0,300,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29607.0,0.0,0.0,3,0,0.0,1,1.0 -5554,8441,1612.361859201905,59.0,211,0.0,75,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43104.05,0.0,42930.0,3,2,3.0,4,1.0 -5555,8443,1430.7255416682976,45.0,111,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37525.9,0.0,37070.0,1,9,7.0,4,2.0 -5556,8444,4381.209325419944,28.0,111,4690.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9300.0,0.0,4610.0,3,10,8.0,1,1.0 -5557,8445,1068.0542500696333,72.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14680.0,0.0,0.0,14487.45,0.0,0.0,1,1,2.0,1,0.0 -5558,8446,844.1321216596506,42.0,112,8940.0,52,2.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,26276.1,0.0,14380.0,2,8,2.0,4,2.0 -5559,8447,2609.848494608803,58.0,111,0.0,67,1.0,1.0,1.0,1.0,6030.0,0.0,0.0,0.0,0.0,0.0,15770.0,0.0,7580.0,3,10,8.0,1,1.0 -5560,8448,1892.9546720227797,50.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,15727.05,0.0,16300.0,5,0,0.0,1,1.0 -5561,8450,2674.4153185872624,53.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44344.7,0.0,45330.0,1,4,3.0,3,2.0 -5562,8453,4556.893693825872,49.0,112,12750.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,50.0,0.0,12316.25,0.0,0.0,3,8,1.0,1,1.0 -5563,8455,3043.629152290729,60.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9900.0,0.0,0.0,65662.9,0.0,60880.0,1,9,7.0,3,1.0 -5564,8458,5672.254282576971,32.0,112,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31514.4,0.0,30880.0,1,8,3.0,4,2.0 -5565,8463,1354.0186508669835,36.0,111,0.0,35,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23305.0,0.0,14670.0,3,9,7.0,2,1.0 -5566,8464,3821.2511250208345,28.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,188733.7,0.0,0.0,3,9,7.0,1,1.0 -5567,8465,2340.5491472689046,71.0,111,0.0,35,1.0,0.0,2.0,1.5,0.0,0.0,0.0,20980.0,0.0,0.0,21100.0,0.0,0.0,5,7,5.0,3,1.0 -5568,8466,3506.2436732920205,59.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,405.0,0.0,31954.9,0.0,26300.0,1,9,7.0,2,1.0 -5569,8467,3054.6167046246046,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,3550.0,22230.0,0.0,0.0,25174.4,0.0,0.0,1,10,8.0,3,0.0 -5570,8468,3272.2791663089706,46.0,111,8400.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52760.65,0.0,47150.0,2,10,8.0,4,2.0 -5571,8469,1993.3823350436166,60.0,111,6460.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42530.0,0.0,0.0,58951.05,0.0,15660.0,1,10,8.0,3,0.0 -5572,8471,4146.170771054526,70.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27430.0,0.0,0.0,26262.6,0.0,0.0,1,0,0.0,3,0.0 -5573,8472,4200.518944275187,76.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18690.0,0.0,0.0,16978.0,0.0,0.0,1,8,7.0,1,0.0 -5574,8473,2987.6485700330527,70.0,120,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22410.0,0.0,0.0,28195.55,0.0,0.0,1,0,1.0,1,0.0 -5575,8475,3029.688670407414,43.0,111,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17430.65,0.0,15550.0,3,9,7.0,2,1.0 -5576,8479,1176.6484699884659,51.0,112,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,510.0,0.0,0.0,34984.9,0.0,33280.0,1,7,0.0,2,2.0 -5577,8480,1414.5418181365058,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23650.0,0.0,0.0,26786.2,0.0,0.0,1,9,7.0,1,0.0 -5578,8481,3052.4378970967996,54.0,300,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12820.0,0.0,0.0,22498.0,0.0,9750.0,1,0,0.0,5,1.0 -5579,8482,3054.357977686487,49.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32870.0,0.0,0.0,65013.5,0.0,42080.0,2,9,7.0,3,1.0 -5580,8483,3439.3684903656485,35.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,7.0,0.0,65741.1,0.0,67770.0,2,10,8.0,4,2.0 -5581,8484,5132.8551891339575,26.0,111,990.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33229.1,0.0,34500.0,3,8,6.0,3,2.0 -5582,8485,1375.836825238826,83.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34880.0,0.0,0.0,32845.0,0.0,0.0,1,8,0.0,3,0.0 -5583,8489,2213.577634397402,63.0,112,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,33470.0,0.0,0.0,58838.85,0.0,0.0,1,7,0.0,3,1.0 -5584,8490,4897.281661210593,76.0,111,0.0,72,1.0,0.0,2.0,1.5,0.0,0.0,0.0,4460.0,856.0,0.0,5706.0,0.0,390.0,5,7,5.0,2,1.0 -5585,8491,1080.634815689213,47.0,300,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37805.35,0.0,39180.0,1,0,0.0,3,2.0 -5586,8492,3641.759355662838,34.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17241.05,0.0,14410.0,3,9,7.0,1,1.0 -5587,8493,972.3239002823798,58.0,112,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,89086.4,0.0,101570.0,1,6,1.0,3,2.0 -5588,8494,1350.3946670328198,47.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34041.65,0.0,34920.0,2,1,2.0,4,2.0 -5589,8497,2653.1867390307234,33.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48494.5,0.0,47930.0,3,9,7.0,4,2.0 -5590,8499,2060.396111003912,43.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50036.05,0.0,51820.0,2,8,7.0,4,2.0 -5591,8501,1370.334637835068,34.0,111,0.0,52,1.0,1.0,6.0,2.9,0.0,0.0,0.0,1060.0,0.0,0.0,29810.3,0.0,17240.0,3,8,7.0,4,1.0 -5592,8502,2126.708141160739,31.0,111,0.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20603.6,0.0,19470.0,3,9,7.0,3,2.0 -5593,8503,3544.866868063218,26.0,111,7500.0,48,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25070.6,0.0,15290.0,3,8,6.0,4,2.0 -5594,8504,1020.374071294062,54.0,111,0.0,37,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,74315.5,0.0,76630.0,2,4,4.0,4,3.0 -5595,8505,3794.7284699000425,27.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9598.45,0.0,5230.0,3,9,7.0,1,1.0 -5596,8506,2993.9484460706603,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15590.0,0.0,0.0,15470.3,0.0,0.0,3,9,7.0,1,0.0 -5597,8509,3638.883400900959,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36110.0,0.0,0.0,31342.8,0.0,0.0,1,10,8.0,1,0.0 -5598,8511,1878.2062456459923,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31480.0,243.0,0.0,32625.3,0.0,0.0,1,6,5.0,3,0.0 -5599,8512,1420.4569195517731,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26640.0,0.0,0.0,25719.5,0.0,0.0,1,6,4.0,3,0.0 -5600,8513,1903.729835375162,50.0,111,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33119.7,0.0,35040.0,1,7,5.0,3,2.0 -5601,8515,4365.081952162668,62.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19720.0,0.0,0.0,18572.3,0.0,0.0,1,8,0.0,1,0.0 -5602,8516,1960.2329250286941,57.0,111,0.0,35,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53468.1,0.0,56870.0,1,9,7.0,3,1.0 -5603,8518,4066.560829615933,53.0,221,8270.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,26068.65,0.0,18060.0,2,1,1.0,4,2.0 -5604,8519,3563.065569034694,36.0,111,0.0,85,0.0,0.0,2.0,1.3,8750.0,0.0,0.0,0.0,0.0,0.0,12002.0,0.0,0.0,3,8,7.0,2,0.0 -5605,8520,3375.1043956252665,80.0,221,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9760.0,0.0,0.0,11257.0,0.0,0.0,3,1,3.0,1,0.0 -5606,8521,3480.139396735656,23.0,111,3050.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16473.0,0.0,10570.0,3,9,7.0,1,1.0 -5607,8523,3549.358104745725,61.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,44850.0,0.0,0.0,50924.9,0.0,9280.0,1,3,3.0,1,0.0 -5608,8524,1624.1477165885176,56.0,300,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16750.0,0.0,0.0,39307.45,0.0,25460.0,2,0,0.0,3,1.0 -5609,8526,3546.0611432274295,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21590.0,0.0,0.0,20153.05,0.0,0.0,3,10,8.0,1,0.0 -5610,8527,3965.924257402194,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38520.0,0.0,0.0,35340.45,0.0,0.0,1,8,3.0,3,0.0 -5611,8531,4538.037344132039,66.0,221,750.0,21,2.0,2.0,3.0,2.0,0.0,0.0,3410.0,7540.0,0.0,0.0,20207.2,0.0,9190.0,1,1,2.0,4,2.0 -5612,8533,2797.6157112526507,91.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13980.0,0.0,0.0,13882.3,0.0,0.0,1,4,4.0,1,0.0 -5613,8534,2964.2949441099004,37.0,400,0.0,52,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,17197.75,2180.0,10330.0,3,0,0.0,2,1.0 -5614,8535,3647.786155434235,29.0,111,5520.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35323.55,0.0,30500.0,3,9,7.0,3,2.0 -5615,8536,1535.6041803472913,59.0,111,9580.0,34,2.0,1.0,2.0,1.5,0.0,0.0,0.0,86480.0,1990.0,0.0,140086.0,0.0,41670.0,1,9,7.0,3,2.0 -5616,8538,2632.295914977593,37.0,112,0.0,43,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29303.3,0.0,20440.0,3,6,0.0,4,1.0 -5617,8540,1371.8272616541478,58.0,112,0.0,46,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42273.95,0.0,44140.0,1,7,0.0,4,3.0 -5618,8541,1340.8800945719,69.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,47180.0,0.0,0.0,38992.2,0.0,0.0,1,2,3.0,1,0.0 -5619,8543,2394.204409228584,50.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,68019.65,0.0,69560.0,2,9,7.0,4,2.0 -5620,8544,2588.4437955953845,43.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22323.55,0.0,22360.0,2,7,4.0,2,1.0 -5621,8546,2799.810489195264,74.0,221,0.0,86,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10570.0,0.0,0.0,24934.2,0.0,15840.0,1,1,2.0,2,1.0 -5622,8547,1038.6539945760783,61.0,211,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,21540.0,0.0,0.0,22112.25,0.0,1350.0,1,3,4.0,4,1.0 -5623,8549,2081.877803532511,41.0,112,7190.0,38,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40426.1,0.0,38580.0,5,10,4.0,4,2.0 -5624,8550,2775.990096418717,49.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38940.3,0.0,24890.0,2,9,3.0,1,1.0 -5625,8552,2671.9447369939485,59.0,300,6020.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12260.0,9.0,0.0,17970.35,0.0,0.0,1,0,1.0,1,0.0 -5626,8554,1946.7118454236468,50.0,120,8110.0,65,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44727.75,0.0,38050.0,1,0,3.0,4,3.0 -5627,8559,3641.942563311188,46.0,112,5940.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,33077.0,0.0,28590.0,2,5,0.0,4,2.0 -5628,8560,1462.1183208405607,36.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63520.7,0.0,65460.0,1,8,0.0,4,2.0 -5629,8566,3607.261804739025,41.0,111,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,11894.0,0.0,0.0,3,8,6.0,1,0.0 -5630,8568,3101.3377354648655,46.0,111,17390.0,56,1.0,0.0,7.0,3.6,0.0,3620.0,0.0,0.0,0.0,0.0,42258.45,790.0,4650.0,3,9,7.0,4,1.0 -5631,8569,2898.2518186159064,52.0,111,1770.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11486.5,510.0,9040.0,3,8,7.0,1,1.0 -5632,8570,1223.7247579160169,77.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22980.0,0.0,0.0,22560.0,0.0,0.0,1,8,2.0,3,0.0 -5633,8571,1774.6921572059491,34.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,101527.0,0.0,97750.0,2,10,8.0,4,2.0 -5634,8572,3173.5805465297385,35.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,88.0,0.0,68194.7,0.0,74740.0,2,10,8.0,4,2.0 -5635,8573,3596.762706359713,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13870.0,0.0,0.0,14911.65,0.0,0.0,3,8,7.0,1,0.0 -5636,8576,3568.574311118895,42.0,120,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20155.2,0.0,18210.0,3,0,0.0,2,1.0 -5637,8577,2702.118584454808,39.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,40889.0,42425.75,0.0,0.0,2,6,4.0,4,2.0 -5638,8578,5250.977435859713,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12030.0,0.0,0.0,25421.75,0.0,13910.0,3,10,8.0,3,0.0 -5639,8579,1017.9626121534944,46.0,120,0.0,34,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,71338.35,0.0,68420.0,2,0,3.0,4,2.0 -5640,8581,1185.1510430677984,36.0,300,0.0,42,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,31363.4,0.0,28030.0,2,0,0.0,2,1.0 -5641,8583,2851.4325287159295,52.0,111,0.0,21,2.0,1.0,2.0,1.5,0.0,5960.0,0.0,0.0,0.0,0.0,6450.0,490.0,0.0,5,10,8.0,2,2.0 -5642,8584,2588.5823764406646,41.0,400,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23344.95,0.0,24890.0,3,0,0.0,1,1.0 -5643,8585,1359.5737603968196,47.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3.0,0.0,43391.0,0.0,45750.0,4,9,7.0,3,2.0 -5644,8588,1995.0205464481235,37.0,112,510.0,52,2.0,1.0,4.0,2.1,0.0,4540.0,0.0,0.0,0.0,0.0,19783.0,250.0,9020.0,3,7,1.0,4,2.0 -5645,8590,3066.3250630325683,63.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10330.0,0.0,0.0,11720.0,0.0,0.0,3,8,7.0,1,0.0 -5646,8592,1813.2001101956564,55.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54101.3,0.0,59390.0,1,6,4.0,3,2.0 -5647,8594,3552.988481740316,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22450.0,0.0,0.0,21354.6,0.0,0.0,1,9,7.0,1,0.0 -5648,8596,2615.748161931211,45.0,111,0.0,68,1.0,1.0,3.0,2.0,0.0,1680.0,0.0,0.0,0.0,0.0,29646.0,3110.0,14600.0,3,8,7.0,2,1.0 -5649,8598,1716.941439810463,40.0,111,5230.0,52,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,36049.0,0.0,25020.0,3,7,5.0,4,2.0 -5650,8599,2345.9618823240125,53.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34007.05,0.0,35760.0,1,10,0.0,5,2.0 -5651,8601,1866.2908532679,84.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41710.0,0.0,0.0,37424.55,0.0,0.0,1,10,0.0,1,0.0 -5652,8602,1817.3739293625283,58.0,300,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4850.0,0.0,0.0,20324.0,0.0,17030.0,1,0,0.0,1,1.0 -5653,8604,3996.587447101714,62.0,111,4210.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19433.85,0.0,14590.0,3,9,7.0,1,1.0 -5654,8605,2331.291966062498,34.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57457.0,0.0,60540.0,2,9,2.0,3,2.0 -5655,8606,3522.3392307204726,22.0,111,0.0,62,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14814.4,0.0,15070.0,3,8,6.0,1,1.0 -5656,8608,2043.07163918518,45.0,112,0.0,48,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45057.2,0.0,45470.0,2,6,0.0,4,3.0 -5657,8612,2038.0886011175905,46.0,111,4810.0,52,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32355.9,290.0,28240.0,3,9,7.0,2,3.0 -5658,8613,1018.2051224594387,46.0,120,0.0,65,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,64700.75,0.0,69070.0,2,0,1.0,4,2.0 -5659,8614,3646.293649268098,74.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,9300.0,13200.0,0.0,0.0,33231.05,0.0,0.0,1,8,0.0,5,0.0 -5660,8615,1937.3752879318154,68.0,211,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,3030.0,4660.0,403.0,0.0,8437.0,0.0,0.0,1,2,3.0,1,0.0 -5661,8616,3424.2871999253193,23.0,111,4080.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20295.0,0.0,16070.0,2,9,7.0,3,2.0 -5662,8619,3847.5325490785613,45.0,221,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28978.85,0.0,32530.0,2,1,2.0,1,1.0 -5663,8620,1739.9817745704265,38.0,111,18940.0,56,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32469.5,0.0,8990.0,2,6,4.0,4,2.0 -5664,8621,3172.4416149660133,75.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21290.0,0.0,0.0,24994.2,0.0,0.0,1,3,3.0,3,0.0 -5665,8622,2147.0189005365305,54.0,400,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25362.4,0.0,25670.0,1,0,0.0,3,2.0 -5666,8623,1934.5648173484374,77.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47160.0,0.0,0.0,44813.7,0.0,0.0,1,4,4.0,3,0.0 -5667,8625,3251.6957449041543,32.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,134.0,0.0,22991.15,0.0,24410.0,3,10,8.0,1,1.0 -5668,8626,1637.9882777267087,48.0,112,0.0,52,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,66.0,0.0,30454.75,0.0,18630.0,1,6,0.0,4,2.0 -5669,8627,3799.468799577334,32.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49543.1,0.0,53460.0,3,10,8.0,3,2.0 -5670,8628,4850.449005113434,48.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22770.7,0.0,24380.0,1,8,7.0,1,1.0 -5671,8629,2377.0364886513134,34.0,300,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45201.45,0.0,34130.0,2,0,0.0,4,2.0 -5672,8630,3622.4845695670983,53.0,400,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,9918.9,0.0,0.0,1,0,0.0,3,2.0 -5673,8631,2775.081796379914,46.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46347.8,0.0,48230.0,2,5,0.0,4,2.0 -5674,8633,4129.866053904747,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10594.0,0.0,0.0,3,8,6.0,3,0.0 -5675,8634,2125.7742849240635,39.0,111,0.0,64,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20505.7,0.0,14590.0,3,9,7.0,4,2.0 -5676,8635,3350.1014513621953,48.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12881.2,530.0,10820.0,3,8,7.0,1,1.0 -5677,8636,1357.9210245901218,42.0,111,1870.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15442.0,0.0,14980.0,3,6,5.0,1,1.0 -5678,8637,2775.545795169947,62.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42150.0,22.0,0.0,40159.1,0.0,0.0,2,0,0.0,3,0.0 -5679,8638,2464.245893133482,26.0,211,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18445.2,0.0,19860.0,3,2,3.0,1,1.0 -5680,8640,3059.099365934076,42.0,111,0.0,54,1.0,0.0,3.0,1.8,0.0,6030.0,0.0,0.0,0.0,0.0,15512.0,0.0,0.0,3,8,6.0,2,1.0 -5681,8644,1336.532988776767,45.0,300,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39676.55,0.0,38770.0,2,0,0.0,4,2.0 -5682,8645,1121.0617401868626,80.0,112,0.0,77,0.0,0.0,3.0,2.0,0.0,0.0,0.0,28410.0,0.0,0.0,30083.4,0.0,0.0,1,8,0.0,5,0.0 -5683,8647,2320.8447677081167,53.0,112,0.0,52,1.0,1.0,5.0,3.0,0.0,0.0,0.0,22880.0,6.0,0.0,47572.2,0.0,23030.0,1,9,1.0,4,1.0 -5684,8649,2071.0413911745827,86.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8760.0,769.0,0.0,13054.0,0.0,0.0,1,0,0.0,1,0.0 -5685,8651,1285.8795111502855,57.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62052.25,0.0,43030.0,1,8,2.0,3,1.0 -5686,8654,2667.048418774854,46.0,112,0.0,85,1.0,1.0,6.0,3.3,8750.0,0.0,0.0,0.0,0.0,0.0,16397.65,0.0,2580.0,2,7,0.0,5,1.0 -5687,8656,2449.0835925359925,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34200.0,0.0,0.0,33487.6,0.0,0.0,1,7,5.0,3,0.0 -5688,8657,3513.7338393522896,39.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,10578.05,1090.0,7900.0,3,8,7.0,2,1.0 -5689,8658,2962.472911579689,45.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10790.0,0.0,0.0,33043.0,0.0,22400.0,3,8,7.0,1,1.0 -5690,8659,1927.502363629441,36.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31804.1,0.0,33770.0,2,9,1.0,3,2.0 -5691,8660,2680.2173461642838,48.0,112,10850.0,63,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,28344.3,0.0,15780.0,2,7,0.0,4,2.0 -5692,8662,2541.9284734910675,85.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22290.0,1.0,0.0,24679.45,0.0,0.0,1,8,0.0,3,0.0 -5693,8665,3526.5149594552686,36.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28822.35,0.0,30910.0,3,10,8.0,1,1.0 -5694,8667,2959.706640766733,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12860.0,0.0,0.0,14854.0,0.0,0.0,3,5,4.0,1,0.0 -5695,8669,1986.1024006699677,53.0,400,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50102.95,0.0,55590.0,1,0,0.0,4,2.0 -5696,8670,1784.637848596308,57.0,112,3340.0,65,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43078.9,0.0,46810.0,2,8,0.0,4,4.0 -5697,8671,2873.249841915022,85.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35930.0,0.0,0.0,49010.5,0.0,0.0,1,8,0.0,2,0.0 -5698,8672,2140.6428243800287,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11050.0,0.0,0.0,10872.8,0.0,0.0,1,8,7.0,1,0.0 -5699,8673,2793.883660503927,39.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,24136.6,0.0,25120.0,2,9,7.0,1,1.0 -5700,8674,2436.1996365633177,62.0,112,0.0,22,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,8.0,0.0,7545.9,0.0,9190.0,2,10,0.0,4,1.0 -5701,8676,2885.301750197813,46.0,111,0.0,56,1.0,1.0,2.0,1.5,3300.0,0.0,0.0,19100.0,0.0,0.0,25113.0,0.0,0.0,3,9,7.0,2,1.0 -5702,8677,1116.2385337579628,32.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,55161.85,0.0,31430.0,2,9,7.0,4,2.0 -5703,8678,2049.034964361292,51.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47697.7,0.0,52260.0,1,8,0.0,3,2.0 -5704,8679,2827.3796514142055,44.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47760.35,0.0,49160.0,2,9,0.0,4,2.0 -5705,8684,3233.2962720755027,28.0,111,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21423.4,0.0,17610.0,3,10,8.0,4,1.0 -5706,8686,3297.601625178777,29.0,211,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23013.0,0.0,19080.0,3,2,3.0,4,1.0 -5707,8687,2215.647861786483,37.0,112,0.0,53,1.0,1.0,4.0,2.1,0.0,320.0,0.0,0.0,0.0,0.0,23568.45,370.0,18720.0,2,5,0.0,4,1.0 -5708,8688,4896.507026009714,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41730.0,0.0,0.0,38657.05,0.0,0.0,1,5,4.0,3,0.0 -5709,8689,2974.8260082229317,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29730.0,0.0,0.0,27032.0,0.0,0.0,3,8,6.0,1,0.0 -5710,8690,882.373223416265,55.0,111,13340.0,65,3,3.0,5.0,3.0,0.0,0.0,2540.0,5660.0,0.0,0.0,73575.35,0.0,58710.0,1,9,7.0,5,4.0 -5711,8691,2339.295993674417,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,101100.0,30.0,0.0,84883.15,0.0,0.0,1,10,8.0,3,0.0 -5712,8692,3023.113388917959,32.0,111,3720.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24237.15,0.0,16250.0,1,10,8.0,1,1.0 -5713,8693,2849.386607614528,60.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9850.0,0.0,0.0,16301.75,0.0,5340.0,3,0,1.0,1,0.0 -5714,8694,1734.6908997328155,72.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18040.0,0.0,0.0,17455.65,0.0,0.0,1,0,0.0,3,0.0 -5715,8696,1574.4848007894354,47.0,111,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37146.1,0.0,37800.0,3,5,4.0,2,2.0 -5716,8699,1739.5933821921983,44.0,112,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,65824.7,0.0,74360.0,2,9,3.0,4,2.0 -5717,8701,3314.1253468305176,20.0,111,0.0,84,0.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,4515.0,0.0,0.0,3,9,7.0,5,0.0 -5718,8702,2587.2496379884524,25.0,300,8360.0,69,2.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23582.3,0.0,9890.0,3,0,0.0,4,2.0 -5719,8704,1763.3794452487823,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20360.0,0.0,0.0,19765.6,0.0,0.0,1,9,7.0,3,0.0 -5720,8705,3706.188285397873,36.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63040.65,0.0,60560.0,2,9,7.0,4,2.0 -5721,8707,3074.670543518987,23.0,111,10380.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,17.0,0.0,10703.0,0.0,550.0,3,5,4.0,1,0.0 -5722,8708,3424.778691354148,27.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29390.85,0.0,30730.0,3,8,7.0,3,2.0 -5723,8711,1010.1773039692346,53.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46390.85,0.0,49200.0,2,10,0.0,3,2.0 -5724,8715,4033.298172304123,70.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14460.0,0.0,0.0,13801.85,0.0,0.0,1,0,2.0,1,0.0 -5725,8716,3352.8103998238025,65.0,221,0.0,65,1.0,0.0,1.0,1.0,0.0,0.0,0.0,14320.0,0.0,0.0,14320.0,0.0,0.0,3,1,2.0,1,1.0 -5726,8719,3779.255045592249,59.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14540.0,0.0,0.0,14068.7,0.0,0.0,3,7,6.0,1,0.0 -5727,8720,1710.110301424082,41.0,300,0.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,33683.35,0.0,31760.0,2,0,0.0,4,3.0 -5728,8723,4660.617924079082,86.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10040.0,0.0,0.0,9783.9,0.0,0.0,1,5,4.0,1,0.0 -5729,8724,1409.4747959301085,47.0,111,0.0,64,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28091.9,0.0,20030.0,3,9,7.0,4,1.0 -5730,8726,3618.427923850926,59.0,111,15060.0,78,0.0,0.0,2.0,1.5,0.0,5010.0,0.0,0.0,0.0,0.0,21823.5,0.0,2280.0,1,9,7.0,3,0.0 -5731,8727,4343.1443926302345,54.0,112,12880.0,43,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46363.45,0.0,35750.0,2,7,0.0,4,2.0 -5732,8728,1766.7843788620269,77.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8660.0,0.0,0.0,8761.0,0.0,0.0,1,6,4.0,1,0.0 -5733,8732,2356.7555367685723,91.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8620.0,0.0,2069.0,12559.0,0.0,0.0,3,5,4.0,1,0.0 -5734,8733,5848.076514345056,33.0,112,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44018.65,0.0,38580.0,3,9,3.0,4,1.0 -5735,8734,2123.8862564859246,42.0,221,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,23458.1,0.0,19990.0,3,1,1.0,4,2.0 -5736,8736,3662.448541818761,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9570.0,0.0,0.0,19664.75,0.0,0.0,1,9,7.0,1,0.0 -5737,8737,2376.055207089262,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42860.0,0.0,0.0,39303.45,0.0,0.0,1,9,7.0,3,0.0 -5738,8739,6161.079286680739,37.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53927.5,0.0,16730.0,1,4,4.0,4,2.0 -5739,8740,2804.477091413431,89.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30930.0,0.0,0.0,23850.25,0.0,0.0,5,10,8.0,1,0.0 -5740,8741,2858.9644228438,54.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17556.1,0.0,18060.0,3,6,5.0,1,1.0 -5741,8742,1388.3781581695814,81.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27430.0,0.0,0.0,25493.85,0.0,0.0,1,7,5.0,3,0.0 -5742,8746,1701.0705755442207,42.0,300,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43962.7,0.0,44430.0,2,0,1.0,3,2.0 -5743,8747,3548.934823792195,52.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53207.05,0.0,57660.0,2,9,7.0,4,2.0 -5744,8750,2247.1362590472613,52.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,1360.0,109.0,0.0,63012.75,0.0,66090.0,2,9,7.0,3,2.0 -5745,8751,1033.6527152566223,57.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,72090.3,0.0,78610.0,1,6,4.0,3,2.0 -5746,8753,2133.365038578381,54.0,111,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21193.45,0.0,21020.0,3,7,6.0,4,1.0 -5747,8757,3181.5951566025806,79.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25230.0,0.0,0.0,24926.45,0.0,0.0,3,10,8.0,3,0.0 -5748,8758,2873.409362927914,53.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28725.05,0.0,34490.0,3,10,8.0,1,1.0 -5749,8762,1821.605955010089,43.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,1.0,0.0,69391.45,0.0,62980.0,2,7,0.0,4,2.0 -5750,8763,2204.444450506981,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23920.45,0.0,21120.0,1,8,7.0,1,1.0 -5751,8764,2818.9772431018564,30.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30955.2,0.0,22270.0,3,6,0.0,4,2.0 -5752,8765,3257.2354356114015,38.0,111,0.0,84,0.0,0.0,1.0,1.0,6040.0,0.0,0.0,0.0,55.0,0.0,8887.0,0.0,0.0,3,10,8.0,1,0.0 -5753,8766,5065.642137340785,76.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26470.0,0.0,0.0,26083.85,0.0,0.0,1,1,2.0,3,0.0 -5754,8770,3901.150507607137,22.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6267.25,0.0,5000.0,3,9,7.0,1,1.0 -5755,8772,3015.692756041842,51.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15750.7,0.0,15900.0,3,8,7.0,1,1.0 -5756,8775,5161.3472438261315,37.0,221,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,1220.0,0.0,40523.0,0.0,35680.0,3,1,1.0,4,2.0 -5757,8776,5254.501629632085,46.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50886.1,0.0,44190.0,1,10,8.0,4,2.0 -5758,8777,1159.0113509941593,50.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29651.65,0.0,29730.0,3,7,5.0,2,1.0 -5759,8780,1481.2240615486944,61.0,221,0.0,86,0.0,0.0,1.0,1.0,0.0,1490.0,0.0,5150.0,0.0,0.0,9604.0,0.0,0.0,3,1,2.0,1,0.0 -5760,8782,1678.0678414769295,38.0,120,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60793.0,0.0,56210.0,2,0,1.0,4,2.0 -5761,8783,2755.0328920014535,51.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37104.4,0.0,36640.0,1,8,7.0,4,2.0 -5762,8784,2479.512295522962,50.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,429.0,0.0,197421.55,0.0,247660.0,1,10,8.0,4,2.0 -5763,8786,1700.578313697027,51.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10110.0,0.0,0.0,9288.95,0.0,0.0,1,5,4.0,1,0.0 -5764,8787,1146.8863787428695,40.0,400,7440.0,64,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33223.1,0.0,24120.0,3,0,0.0,4,2.0 -5765,8788,1201.5746567770238,51.0,112,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20795.95,0.0,20230.0,2,10,0.0,2,1.0 -5766,8789,1781.9096747292017,60.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11810.0,0.0,0.0,24680.5,0.0,0.0,1,7,5.0,1,0.0 -5767,8792,3140.555660439847,62.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24620.0,0.0,0.0,48517.9,0.0,26330.0,3,10,8.0,3,1.0 -5768,8795,2643.717685525716,37.0,111,2820.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,34308.6,0.0,30090.0,3,10,8.0,2,1.0 -5769,8796,3373.610021922957,30.0,300,3350.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26774.4,0.0,8930.0,2,0,0.0,3,2.0 -5770,8798,2348.509178929676,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49130.0,0.0,0.0,53542.85,0.0,0.0,1,7,5.0,3,0.0 -5771,8799,3233.228154649307,30.0,112,10430.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42878.9,0.0,27200.0,2,9,0.0,4,2.0 -5772,8800,1489.7877664837858,65.0,300,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34018.4,0.0,39630.0,3,0,0.0,1,1.0 -5773,8801,1203.4536244168708,55.0,112,0.0,11,3,4.0,5.0,3.0,8380.0,0.0,0.0,0.0,0.0,0.0,59950.5,0.0,28260.0,1,8,0.0,4,4.0 -5774,8802,1964.7700861962737,37.0,112,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,14970.0,0.0,0.0,57197.5,0.0,47760.0,2,10,0.0,4,2.0 -5775,8804,1562.9676951457316,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24570.0,0.0,0.0,25356.15,0.0,0.0,1,7,5.0,3,0.0 -5776,8808,2504.8155951466047,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17740.0,0.0,0.0,17330.6,0.0,0.0,3,8,7.0,1,0.0 -5777,8809,4020.6725564233902,26.0,111,0.0,52,1.0,1.0,5.0,2.4,0.0,5630.0,0.0,0.0,0.0,0.0,21780.0,650.0,4030.0,3,9,7.0,4,1.0 -5778,8811,2271.644437337468,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16380.0,0.0,0.0,17859.0,0.0,0.0,3,6,4.0,1,0.0 -5779,8812,934.8029285998024,66.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55340.0,34.0,0.0,58086.65,0.0,0.0,1,9,2.0,3,0.0 -5780,8813,2825.3529252112203,58.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16650.0,0.0,0.0,17057.2,0.0,0.0,1,4,3.0,3,0.0 -5781,8814,2039.3366586846762,71.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32320.0,0.0,0.0,29322.25,0.0,0.0,1,9,0.0,1,0.0 -5782,8815,1162.0569397886143,56.0,112,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12070.0,0.0,0.0,35779.05,0.0,25080.0,1,7,0.0,3,1.0 -5783,8817,1739.5556913201956,86.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44940.0,0.0,0.0,40432.65,0.0,0.0,1,6,0.0,2,0.0 -5784,8824,1237.4371686820639,52.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,97945.7,0.0,94590.0,1,9,7.0,4,2.0 -5785,8825,2283.950077484985,28.0,111,3940.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29520.4,0.0,26170.0,3,6,5.0,3,2.0 -5786,8826,2908.1118285768644,52.0,112,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40874.75,0.0,44270.0,2,9,0.0,4,2.0 -5787,8827,2388.563676337863,30.0,111,0.0,52,1.0,1.0,5.0,2.2,0.0,0.0,0.0,0.0,0.0,0.0,29485.8,0.0,19340.0,3,10,8.0,2,1.0 -5788,8828,2585.3103882580886,80.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34470.0,0.0,0.0,33390.0,0.0,0.0,3,0,0.0,3,0.0 -5789,8829,6659.442358124406,38.0,112,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,5.0,0.0,51818.1,0.0,53980.0,2,9,2.0,4,2.0 -5790,8830,1623.1797028159715,50.0,112,4420.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4246.35,0.0,0.0,3,7,1.0,1,1.0 -5791,8831,3105.0377764885393,83.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15520.0,0.0,0.0,15286.0,0.0,0.0,1,6,0.0,3,0.0 -5792,8832,2073.9998026274466,51.0,400,0.0,67,2.0,2.0,3.0,2.0,0.0,0.0,0.0,19490.0,0.0,0.0,82399.7,0.0,74280.0,2,0,0.0,5,2.0 -5793,8833,2419.521854457422,58.0,111,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,6,5.0,3,1.0 -5794,8835,2787.6849293362166,51.0,111,0.0,38,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58337.45,0.0,59920.0,1,10,8.0,4,1.0 -5795,8836,2608.4154889331658,87.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21410.0,0.0,0.0,23178.0,0.0,0.0,5,0,0.0,5,0.0 -5796,8837,3077.4521915150185,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,6990.0,1490.0,0.0,0.0,10069.0,0.0,0.0,3,9,7.0,1,0.0 -5797,8839,7663.196899624699,32.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5804.0,0.0,0.0,3,10,8.0,1,0.0 -5798,8841,5480.304025076651,58.0,120,6740.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13880.3,0.0,7870.0,1,0,2.0,1,1.0 -5799,8843,4406.252537837724,40.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,112.0,0.0,22718.8,0.0,20280.0,3,4,3.0,1,1.0 -5800,8845,1350.0125746696772,37.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40158.15,0.0,39640.0,2,8,1.0,3,2.0 -5801,8850,3754.558686928514,35.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48355.9,0.0,41160.0,2,4,3.0,4,2.0 -5802,8851,1493.342045193524,47.0,211,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10250.0,0.0,0.0,39627.85,0.0,27790.0,1,3,3.0,3,1.0 -5803,8852,1866.6801385832848,28.0,221,1330.0,56,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32995.8,0.0,20330.0,2,1,2.0,4,2.0 -5804,8854,1352.00016481201,31.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33402.2,0.0,25910.0,2,3,0.0,4,2.0 -5805,8856,1097.9627172563098,59.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27080.0,0.0,0.0,25924.2,0.0,700.0,1,8,2.0,3,0.0 -5806,8858,2485.586203832459,50.0,111,0.0,21,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,12850.4,0.0,0.0,1,10,8.0,4,1.0 -5807,8860,1728.0462390924997,36.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14836.4,0.0,15520.0,3,8,0.0,1,1.0 -5808,8861,1812.2877403363668,44.0,111,4330.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,60468.35,0.0,53960.0,2,7,5.0,4,2.0 -5809,8862,2469.7912123208976,41.0,211,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,9936.35,0.0,0.0,1,2,3.0,2,1.0 -5810,8863,3402.064273639671,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7630.0,0.0,0.0,8866.5,0.0,0.0,1,8,6.0,1,0.0 -5811,8864,2787.989557717121,31.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40804.9,0.0,39180.0,3,10,8.0,4,2.0 -5812,8865,1996.1614720601574,26.0,400,2290.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35222.35,0.0,29480.0,2,0,0.0,3,2.0 -5813,8866,1284.1619467347023,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69580.0,0.0,0.0,59959.55,0.0,0.0,1,6,4.0,3,0.0 -5814,8868,2662.5234795803076,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23330.0,0.0,0.0,31393.55,0.0,0.0,1,6,5.0,1,0.0 -5815,8869,2791.9391151380482,86.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11610.0,40.0,0.0,14892.5,0.0,0.0,1,0,0.0,1,0.0 -5816,8870,2448.17482667951,22.0,400,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47266.0,0.0,52770.0,3,0,1.0,3,2.0 -5817,8871,1744.5842422473702,86.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,1590.0,15080.0,0.0,0.0,17541.8,0.0,0.0,1,0,0.0,5,0.0 -5818,8873,2806.442472701743,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16880.0,0.0,0.0,17549.6,0.0,0.0,5,9,7.0,1,0.0 -5819,8874,3402.3876717736316,54.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56077.2,0.0,65750.0,2,10,8.0,3,2.0 -5820,8875,4989.736884535806,84.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16010.0,367.0,0.0,19384.85,0.0,0.0,1,0,0.0,1,0.0 -5821,8876,2919.9829026323746,58.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32958.85,0.0,33070.0,5,9,7.0,1,1.0 -5822,8877,1623.1468946379255,43.0,112,0.0,48,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,7.0,0.0,72443.65,0.0,65400.0,2,7,1.0,4,2.0 -5823,8879,1829.0549586559725,58.0,300,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,633.0,0.0,94357.4,0.0,110820.0,1,0,0.0,4,2.0 -5824,8880,3075.5289011829486,46.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46598.5,0.0,51050.0,2,10,8.0,4,2.0 -5825,8881,2769.682432278118,21.0,212,0.0,68,1.0,1.0,3.0,1.8,0.0,270.0,0.0,0.0,0.0,0.0,17799.7,2850.0,7590.0,3,1,0.0,4,1.0 -5826,8882,3680.563213074823,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17960.0,0.0,0.0,21224.0,0.0,0.0,3,8,7.0,3,0.0 -5827,8883,2926.4131984239193,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21410.0,24.0,0.0,20959.5,0.0,0.0,1,9,7.0,1,0.0 -5828,8886,3620.7482274078952,34.0,111,0.0,68,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,31705.15,0.0,20970.0,3,10,8.0,4,1.0 -5829,8887,4771.309857619483,55.0,221,0.0,75,1.0,1.0,4.0,2.1,4250.0,0.0,0.0,5030.0,0.0,0.0,24365.0,0.0,9250.0,3,1,2.0,4,1.0 -5830,8888,3258.8421082513764,84.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10730.0,0.0,0.0,14652.9,0.0,0.0,5,9,7.0,1,0.0 -5831,8890,2416.826043333591,58.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35412.85,0.0,37690.0,1,7,0.0,3,2.0 -5832,8891,2436.8977989228374,79.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24350.0,0.0,0.0,27234.75,0.0,0.0,1,9,1.0,1,0.0 -5833,8894,4830.367147418526,78.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26320.0,0.0,0.0,25970.65,0.0,0.0,1,8,0.0,3,0.0 -5834,8895,2547.74662317536,40.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31135.3,0.0,27200.0,3,10,8.0,4,2.0 -5835,8897,3115.2235690826924,53.0,111,0.0,35,1.0,0.0,2.0,1.3,8750.0,0.0,0.0,6580.0,59.0,0.0,14044.9,0.0,0.0,3,8,6.0,2,1.0 -5836,8898,2253.698883692805,69.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,80700.0,0.0,0.0,67757.6,0.0,0.0,1,1,2.0,3,0.0 -5837,8902,1889.124723576589,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18960.0,0.0,0.0,46886.6,0.0,0.0,5,6,4.0,1,0.0 -5838,8903,2067.577622947733,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,71420.0,30.0,0.0,59525.3,0.0,0.0,1,10,8.0,3,0.0 -5839,8904,2964.603611770241,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35350.0,55.0,0.0,32417.0,0.0,0.0,1,10,8.0,3,0.0 -5840,8905,2944.8645598259495,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19410.0,0.0,0.0,19553.0,0.0,0.0,3,8,7.0,1,0.0 -5841,8906,3309.761552015157,66.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33890.0,0.0,0.0,33851.25,0.0,0.0,1,8,0.0,3,0.0 -5842,8907,4039.2321535247515,22.0,111,9370.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15921.0,0.0,4020.0,3,8,6.0,1,1.0 -5843,8908,2211.3450604994964,52.0,211,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16400.0,0.0,0.0,34579.45,0.0,21810.0,1,4,4.0,3,1.0 -5844,8909,2918.8203204492434,58.0,112,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20070.0,0.0,0.0,32183.7,0.0,12540.0,2,6,0.0,2,1.0 -5845,8912,2930.225743762208,58.0,120,0.0,22,1.0,1.0,1.0,1.0,0.0,1080.0,0.0,0.0,0.0,0.0,12045.45,990.0,7030.0,3,0,0.0,1,1.0 -5846,8916,2693.0399204982587,52.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39267.05,0.0,38440.0,1,6,4.0,4,2.0 -5847,8919,837.7831681730105,66.0,212,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26930.0,0.0,0.0,26857.7,0.0,0.0,1,2,0.0,3,0.0 -5848,8920,2348.0276346300593,50.0,300,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54292.95,0.0,0.0,2,0,0.0,4,2.0 -5849,8921,6289.142789258778,27.0,111,1950.0,38,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21108.65,0.0,20680.0,3,9,7.0,1,1.0 -5850,8922,1503.7205046208326,25.0,111,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29923.4,0.0,28770.0,2,7,5.0,3,2.0 -5851,8923,1588.0570813804559,47.0,111,0.0,65,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,20510.85,0.0,18460.0,1,9,7.0,4,1.0 -5852,8924,2346.421434710234,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28830.0,0.0,0.0,32291.3,0.0,0.0,1,7,5.0,3,0.0 -5853,8925,1607.9951282032357,57.0,112,0.0,62,1.0,3.0,2.0,1.5,0.0,0.0,0.0,7840.0,326.0,0.0,34984.6,0.0,27550.0,1,7,0.0,3,1.0 -5854,8927,4710.284273021349,82.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27290.0,0.0,0.0,25191.4,0.0,0.0,1,10,8.0,3,0.0 -5855,8928,986.8698671598391,51.0,112,0.0,43,3,3.0,4.0,2.5,0.0,810.0,0.0,8430.0,0.0,0.0,49355.35,380.0,19160.0,2,10,0.0,4,3.0 -5856,8929,2952.276313727402,34.0,111,0.0,55,1.0,0.0,5.0,2.4,0.0,5670.0,0.0,0.0,0.0,0.0,22485.0,810.0,4350.0,3,9,7.0,4,1.0 -5857,8932,1388.182385758416,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22500.0,0.0,0.0,22216.95,0.0,0.0,1,8,7.0,3,0.0 -5858,8934,4028.115561102378,40.0,211,0.0,85,0.0,0.0,1.0,1.0,8370.0,0.0,0.0,0.0,0.0,0.0,11487.0,0.0,0.0,3,1,2.0,1,0.0 -5859,8938,2082.239735200416,64.0,112,0.0,72,1.0,1.0,4.0,2.1,0.0,0.0,0.0,8140.0,0.0,0.0,41563.05,0.0,13110.0,1,9,3.0,4,1.0 -5860,8939,4641.0260315088,87.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12510.0,0.0,0.0,12866.0,0.0,0.0,1,1,1.0,1,0.0 -5861,8940,1617.0253549481647,50.0,112,3020.0,45,3,3.0,3.0,2.0,0.0,0.0,0.0,13850.0,27.0,0.0,64999.15,0.0,51940.0,2,9,2.0,4,3.0 -5862,8943,2220.0488152426165,50.0,111,0.0,23,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,65957.0,0.0,64200.0,1,9,7.0,4,2.0 -5863,8944,2832.77229230159,53.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,4750.0,0.0,0.0,0.0,0.0,10506.0,200.0,2530.0,3,6,5.0,1,1.0 -5864,8945,3495.547541549376,38.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,30140.0,191.0,0.0,62766.5,0.0,35160.0,1,10,8.0,4,1.0 -5865,8946,4081.267521666865,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2780.0,0.0,0.0,1651.6499999999999,0.0,0.0,1,9,7.0,1,0.0 -5866,8947,1407.4354410633728,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43450.0,0.0,0.0,39035.75,0.0,0.0,1,8,7.0,3,0.0 -5867,8948,5390.256673711982,28.0,211,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35473.05,0.0,27060.0,2,2,3.0,4,2.0 -5868,8949,2343.710689475803,83.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25350.0,0.0,0.0,23271.55,0.0,0.0,1,8,7.0,1,0.0 -5869,8950,1046.4987590737308,43.0,300,5630.0,55,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,17782.65,0.0,8850.0,1,0,0.0,4,2.0 -5870,8952,3504.9836452910276,64.0,111,9940.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11970.0,0.0,0.0,21232.1,0.0,0.0,3,8,7.0,3,0.0 -5871,8953,3400.516128458639,44.0,112,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29480.85,0.0,27990.0,1,7,0.0,4,2.0 -5872,8956,2203.449167304625,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18180.0,0.0,0.0,17294.35,0.0,0.0,1,9,7.0,1,0.0 -5873,8957,1531.6150933869455,29.0,120,8660.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31911.0,0.0,13770.0,3,0,0.0,4,2.0 -5874,8958,2018.299574051117,52.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32030.1,0.0,33100.0,3,7,6.0,1,1.0 -5875,8963,1707.480933365715,57.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8570.0,0.0,0.0,28096.4,0.0,22420.0,1,9,7.0,1,1.0 -5876,8964,1771.4696055756967,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25190.0,0.0,0.0,25024.85,0.0,0.0,1,7,6.0,3,0.0 -5877,8965,3678.4955651234254,54.0,221,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15401.65,0.0,16720.0,1,1,1.0,1,1.0 -5878,8966,2173.051391522398,56.0,112,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,614.0,0.0,54843.85,0.0,32220.0,1,10,0.0,3,2.0 -5879,8969,3073.194921964591,36.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,12.0,0.0,57378.45,0.0,57590.0,2,10,8.0,4,2.0 -5880,8970,2372.5754932828113,55.0,111,0.0,35,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,409.0,0.0,24795.0,0.0,26060.0,3,9,7.0,2,1.0 -5881,8971,2494.3815082526594,58.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,14510.0,0.0,0.0,10816.2,0.0,0.0,1,7,6.0,1,1.0 -5882,8972,3016.552389063586,45.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23091.85,0.0,24750.0,3,7,5.0,1,1.0 -5883,8973,1735.8891663223444,35.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43164.8,0.0,42900.0,2,8,0.0,4,2.0 -5884,8977,2388.4506549403377,50.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,30997.6,0.0,26810.0,1,10,0.0,1,1.0 -5885,8978,2918.718032528944,78.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15950.0,600.0,0.0,20195.3,0.0,0.0,1,8,6.0,1,0.0 -5886,8979,1629.7792297415706,65.0,112,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26960.0,88.0,0.0,29706.55,0.0,4390.0,1,8,0.0,3,1.0 -5887,8981,1585.7288939688071,42.0,112,0.0,52,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,44638.4,0.0,38650.0,1,7,1.0,4,2.0 -5888,8982,3988.8370195605507,38.0,221,0.0,85,0.0,0.0,3.0,1.8,0.0,6480.0,0.0,0.0,0.0,0.0,17509.0,0.0,0.0,3,1,1.0,2,0.0 -5889,8983,2092.026062104147,48.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,1860.0,0.0,0.0,41938.5,0.0,44020.0,1,8,6.0,4,1.0 -5890,8986,2583.8641553680477,44.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38153.0,0.0,40030.0,3,9,7.0,3,2.0 -5891,8987,3303.121617224271,37.0,111,4180.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,31230.7,0.0,19580.0,3,9,7.0,4,2.0 -5892,8988,2216.3938498806706,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29470.0,0.0,0.0,29221.5,0.0,150.0,1,9,7.0,3,0.0 -5893,8992,3346.807383120978,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41100.0,95.0,0.0,37851.9,0.0,0.0,1,9,7.0,3,0.0 -5894,8993,2307.9398148269142,39.0,111,0.0,31,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,62057.4,0.0,24580.0,2,9,7.0,4,2.0 -5895,8994,1544.1445265186974,54.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,35.0,0.0,50467.6,0.0,54980.0,2,10,1.0,3,2.0 -5896,8995,1777.795780212701,65.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35340.0,0.0,0.0,36007.15,0.0,0.0,1,8,0.0,1,0.0 -5897,8996,1353.1316921153816,57.0,111,0.0,75,0.0,0.0,3.0,1.8,0.0,0.0,0.0,28240.0,0.0,0.0,36446.15,0.0,7720.0,2,9,7.0,4,0.0 -5898,8997,1962.3016909227292,52.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17622.6,0.0,18150.0,1,9,7.0,1,1.0 -5899,8998,2658.694152072979,35.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,16818.25,0.0,16680.0,3,6,0.0,4,2.0 -5900,8999,2293.746774451256,37.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,67154.7,0.0,66670.0,3,9,7.0,4,2.0 -5901,9001,1988.3098421091556,52.0,111,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37214.0,0.0,38460.0,2,8,6.0,4,2.0 -5902,9003,1461.2709652081728,47.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60499.5,0.0,76010.0,1,7,5.0,3,2.0 -5903,9005,3121.9338904777205,41.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20029.65,0.0,21570.0,3,8,7.0,1,1.0 -5904,9006,6382.835800472355,20.0,112,7280.0,21,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28598.0,0.0,16140.0,3,9,3.0,4,2.0 -5905,9007,1284.5249761642744,36.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43576.15,0.0,33810.0,2,9,7.0,4,2.0 -5906,9008,5533.033401195232,42.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13231.55,0.0,11280.0,2,9,1.0,1,1.0 -5907,9010,3567.505006568884,74.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37890.0,0.0,0.0,37357.35,0.0,0.0,1,9,7.0,3,0.0 -5908,9011,7290.046877998779,27.0,111,0.0,38,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,33036.0,0.0,37590.0,3,10,8.0,1,1.0 -5909,9012,2503.055140471213,34.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13574.65,0.0,13730.0,3,8,6.0,1,1.0 -5910,9015,986.7187052317439,47.0,112,0.0,68,1.0,1.0,4.0,2.3,0.0,340.0,0.0,0.0,0.0,0.0,16475.5,420.0,7750.0,1,7,0.0,2,1.0 -5911,9016,2922.3583310177028,39.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53275.2,0.0,43520.0,3,9,7.0,4,2.0 -5912,9017,3402.047472139198,39.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52538.95,0.0,54320.0,2,10,3.0,4,2.0 -5913,9018,2112.353714470248,53.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29095.9,0.0,31890.0,1,7,1.0,3,2.0 -5914,9019,3247.88285550531,56.0,221,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4066.0,0.0,4650.0,3,1,2.0,1,1.0 -5915,9020,2121.162104347189,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,82940.0,0.0,0.0,69981.85,0.0,0.0,1,7,5.0,3,0.0 -5916,9021,3529.8779110109067,69.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46500.0,0.0,0.0,42353.1,0.0,0.0,1,10,8.0,5,0.0 -5917,9022,1434.0506087236893,54.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,130.0,0.0,50774.15,0.0,52150.0,3,6,1.0,4,2.0 -5918,9023,1799.5463424240638,54.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22430.0,202.0,0.0,48412.5,0.0,28700.0,1,8,6.0,3,1.0 -5919,9024,2982.6565279883152,39.0,221,0.0,68,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8788.0,0.0,540.0,3,1,2.0,1,1.0 -5920,9026,2824.370019392876,42.0,112,4590.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,30898.15,0.0,24700.0,2,7,2.0,4,2.0 -5921,9027,5006.363535096147,59.0,112,21910.0,38,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26385.0,0.0,4680.0,1,9,3.0,3,1.0 -5922,9030,2100.1190527447266,46.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33483.95,0.0,39100.0,2,0,0.0,1,1.0 -5923,9031,3220.1381596998435,44.0,112,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37186.75,0.0,39880.0,2,10,3.0,3,2.0 -5924,9032,1337.452221014774,63.0,400,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12370.0,0.0,0.0,23589.25,0.0,0.0,2,0,0.0,3,1.0 -5925,9037,3167.2620891075053,60.0,111,2010.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12130.0,0.0,0.0,14268.15,0.0,0.0,3,9,7.0,1,0.0 -5926,9042,792.8559949843878,50.0,111,2380.0,45,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,70.0,0.0,60462.7,0.0,62710.0,1,7,5.0,4,3.0 -5927,9043,1247.7714725209783,62.0,211,5190.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32850.0,0.0,0.0,35925.9,0.0,0.0,1,3,4.0,3,0.0 -5928,9044,4488.676887240353,39.0,120,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48755.5,0.0,43090.0,2,0,0.0,4,2.0 -5929,9048,2804.772907438263,39.0,112,150.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47716.7,0.0,50270.0,2,8,0.0,4,2.0 -5930,9049,1003.2194260375645,56.0,300,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25132.15,0.0,24020.0,1,0,0.0,3,1.0 -5931,9050,1592.5184560999398,25.0,111,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41600.05,0.0,36450.0,3,7,6.0,4,2.0 -5932,9053,2561.881982563342,24.0,400,2110.0,69,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28184.5,0.0,27000.0,3,0,0.0,3,2.0 -5933,9054,1961.5718300723088,39.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59299.05,0.0,56390.0,2,9,7.0,4,2.0 -5934,9055,2223.042514047571,57.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,223.0,0.0,56198.5,0.0,26720.0,1,10,8.0,3,2.0 -5935,9056,2706.8874001020577,32.0,120,0.0,11,1.0,1.0,4.0,2.5,0.0,0.0,0.0,18320.0,0.0,0.0,22660.15,0.0,710.0,1,0,0.0,4,1.0 -5936,9057,3712.8338666181603,23.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17575.05,0.0,18510.0,3,9,7.0,1,1.0 -5937,9058,2788.366696185371,66.0,112,0.0,78,0.0,0.0,3.0,2.0,5750.0,0.0,0.0,21760.0,0.0,0.0,36070.15,0.0,6150.0,1,9,0.0,4,0.0 -5938,9060,989.0693486649923,62.0,300,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10590.0,0.0,0.0,54894.15,0.0,47780.0,1,0,1.0,3,1.0 -5939,9061,1641.1619458845717,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,560.0,36090.0,0.0,0.0,33603.15,0.0,0.0,1,9,7.0,3,0.0 -5940,9062,2170.442944098911,44.0,221,1480.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,23290.0,0.0,0.0,64603.65,0.0,43450.0,3,1,2.0,5,1.0 -5941,9063,2587.334111633786,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17940.0,0.0,0.0,16722.75,0.0,0.0,1,8,6.0,1,0.0 -5942,9064,1376.7369523434988,35.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63807.45,0.0,55630.0,2,7,0.0,4,2.0 -5943,9065,2830.2384109326117,23.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15114.8,0.0,16660.0,3,9,7.0,1,1.0 -5944,9066,1258.4947485637922,54.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44575.65,0.0,47240.0,3,9,7.0,4,2.0 -5945,9067,1971.7975949610768,60.0,111,0.0,74,1.0,1.0,4.0,2.5,0.0,0.0,0.0,16170.0,0.0,0.0,69947.95,0.0,61730.0,1,10,8.0,4,1.0 -5946,9068,2310.121469146554,42.0,111,25230.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43519.95,0.0,17700.0,1,9,7.0,4,2.0 -5947,9069,3294.7223054533374,35.0,111,0.0,53,1.0,1.0,6.0,2.7,0.0,0.0,0.0,9970.0,0.0,0.0,37798.1,0.0,17990.0,3,9,7.0,4,1.0 -5948,9070,1677.1448898222818,30.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,10.0,0.0,51812.15,0.0,40710.0,2,8,6.0,4,2.0 -5949,9072,2488.0876431848988,54.0,111,510.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13902.65,0.0,6470.0,1,9,7.0,1,1.0 -5950,9074,1269.6434413225581,50.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18727.85,0.0,16140.0,1,8,1.0,3,2.0 -5951,9075,2527.5590956218707,57.0,111,5290.0,46,2.0,1.0,2.0,1.5,0.0,150.0,0.0,0.0,0.0,0.0,44616.8,1480.0,34100.0,3,10,8.0,2,2.0 -5952,9076,1168.8908195504234,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30870.0,0.0,0.0,29033.15,0.0,10.0,1,9,7.0,3,0.0 -5953,9077,2729.1242262154283,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,4930.0,3880.0,0.0,0.0,10490.0,0.0,0.0,3,6,5.0,1,0.0 -5954,9078,1131.873760383375,78.0,112,0.0,11,1.0,0.0,2.0,1.5,0.0,0.0,0.0,28900.0,0.0,0.0,28943.5,0.0,0.0,5,7,0.0,3,1.0 -5955,9079,2939.6380580451123,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,112310.0,91.0,0.0,105129.4,0.0,0.0,1,8,7.0,1,0.0 -5956,9081,2893.190625366038,47.0,111,0.0,64,1.0,0.0,1.0,1.0,0.0,3060.0,0.0,0.0,0.0,0.0,6060.0,0.0,0.0,5,10,8.0,1,1.0 -5957,9082,1801.0757091273292,62.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,54040.0,0.0,0.0,67045.65,0.0,17380.0,1,10,8.0,5,1.0 -5958,9083,1396.1762116943876,49.0,112,0.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,76654.9,0.0,86120.0,1,4,0.0,4,3.0 -5959,9084,5404.982348337376,28.0,120,5730.0,62,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28544.5,0.0,17220.0,3,0,2.0,2,2.0 -5960,9085,740.0851935236448,69.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21690.0,0.0,0.0,22223.7,0.0,0.0,1,10,0.0,3,0.0 -5961,9086,3077.044342585813,67.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23370.0,0.0,0.0,23112.6,0.0,0.0,1,0,0.0,3,0.0 -5962,9087,2742.796054962939,49.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36703.5,0.0,39330.0,1,10,8.0,1,1.0 -5963,9088,1492.553184629046,47.0,400,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,53377.75,0.0,9790.0,1,0,0.0,4,2.0 -5964,9090,3906.031600769207,63.0,111,540.0,22,1.0,1.0,3.0,2.0,0.0,0.0,0.0,10920.0,111.0,0.0,21665.95,0.0,0.0,1,7,5.0,4,1.0 -5965,9091,2469.1132008834506,70.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23090.0,0.0,0.0,22618.35,0.0,0.0,1,10,1.0,3,0.0 -5966,9092,1549.0221938781458,35.0,112,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,2.0,0.0,65400.85,0.0,57530.0,2,9,3.0,4,2.0 -5967,9093,3552.1907411402353,47.0,120,1320.0,69,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,13943.6,0.0,12660.0,5,0,2.0,2,1.0 -5968,9096,3148.5605964691013,38.0,111,3400.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,20010.8,390.0,13020.0,4,7,6.0,1,1.0 -5969,9097,3300.0434825745015,44.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44139.05,0.0,43740.0,2,9,7.0,4,2.0 -5970,9098,3210.3080133094877,69.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,4800.0,0.0,0.0,13945.85,0.0,0.0,1,8,6.0,3,1.0 -5971,9099,3629.785993591481,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,60.0,8350.0,0.0,0.0,15022.0,0.0,0.0,3,10,8.0,1,0.0 -5972,9101,2541.9578880137487,34.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,63.0,0.0,73397.7,0.0,81030.0,3,9,7.0,3,2.0 -5973,9103,3289.0077484792064,28.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43767.6,0.0,45960.0,3,10,8.0,3,2.0 -5974,9104,2156.3358503348013,48.0,111,0.0,48,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,68434.4,0.0,72350.0,2,10,8.0,4,3.0 -5975,9107,3013.0996484178395,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13840.0,0.0,0.0,14097.0,0.0,0.0,3,8,7.0,1,0.0 -5976,9108,2210.6957025194215,85.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26590.0,383.0,0.0,27710.45,0.0,0.0,1,0,0.0,3,0.0 -5977,9109,3302.7518336654384,50.0,111,300.0,56,2.0,0.0,2.0,1.5,8380.0,0.0,0.0,0.0,0.0,0.0,13558.0,0.0,0.0,3,7,5.0,2,2.0 -5978,9110,3043.142676754239,65.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44680.0,0.0,0.0,41807.15,0.0,0.0,1,0,0.0,3,0.0 -5979,9114,3350.9240569812646,49.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,5670.0,0.0,0.0,0.0,0.0,10764.0,0.0,0.0,4,8,7.0,1,0.0 -5980,9115,2595.4950968745866,48.0,300,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37242.45,0.0,39880.0,1,0,0.0,3,2.0 -5981,9116,2428.7803290963743,60.0,221,2310.0,78,0.0,0.0,1.0,1.0,0.0,0.0,580.0,11380.0,0.0,0.0,13999.6,0.0,0.0,1,1,3.0,1,0.0 -5982,9120,1390.957758919735,55.0,300,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56629.3,0.0,56610.0,1,0,0.0,3,2.0 -5983,9122,2329.7279047505826,69.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,66640.0,0.0,0.0,71966.15,0.0,0.0,1,1,2.0,3,0.0 -5984,9125,1257.2643285204247,55.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,5650.0,0.0,0.0,59553.2,0.0,31490.0,1,8,2.0,3,2.0 -5985,9127,1930.54085714713,68.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23170.0,0.0,0.0,21574.2,0.0,0.0,1,0,1.0,1,0.0 -5986,9128,3379.103075061501,38.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,93.0,0.0,49682.95,0.0,59440.0,2,9,7.0,1,1.0 -5987,9129,2211.58090884243,54.0,300,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13050.0,0.0,0.0,34554.3,0.0,22790.0,3,0,0.0,3,1.0 -5988,9133,3374.818599754281,51.0,111,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38577.7,0.0,38670.0,3,10,8.0,4,2.0 -5989,9135,2736.8972980542662,70.0,400,3660.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19550.0,0.0,0.0,34351.1,0.0,9180.0,1,0,1.0,2,0.0 -5990,9136,3513.0292283341882,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19380.0,0.0,0.0,19132.0,0.0,0.0,3,9,7.0,1,0.0 -5991,9137,3073.5641653160023,46.0,111,0.0,85,0.0,0.0,1.0,1.0,8380.0,0.0,0.0,0.0,0.0,0.0,11527.0,0.0,0.0,3,9,7.0,1,0.0 -5992,9138,1263.6984071178838,70.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,37040.0,0.0,0.0,57576.75,0.0,25640.0,1,6,4.0,4,1.0 -5993,9140,1005.9883904251251,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47540.0,0.0,0.0,43742.7,0.0,0.0,3,6,4.0,3,0.0 -5994,9141,1428.4337135298626,64.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19870.0,0.0,0.0,18482.55,0.0,0.0,3,10,4.0,1,0.0 -5995,9142,1717.640570102441,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45390.0,0.0,0.0,41906.15,0.0,0.0,1,9,0.0,3,0.0 -5996,9143,1463.8352872437097,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32080.0,0.0,0.0,29474.25,0.0,0.0,1,8,7.0,3,0.0 -5997,9145,5123.596104316928,53.0,221,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,83.0,0.0,43877.0,0.0,0.0,2,1,1.0,1,1.0 -5998,9147,3267.459713595919,40.0,120,800.0,67,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37628.85,0.0,35920.0,2,0,0.0,4,2.0 -5999,9148,1927.184128789057,73.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12600.0,0.0,0.0,11963.05,0.0,0.0,1,9,7.0,1,0.0 -6000,9149,3205.876339042845,41.0,111,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,67233.8,0.0,76590.0,5,9,7.0,4,2.0 -6001,9150,2006.466206919139,51.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26001.0,0.0,28480.0,2,9,7.0,1,1.0 -6002,9151,4151.8748200796945,35.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45858.4,0.0,42140.0,2,9,7.0,4,2.0 -6003,9152,2228.9997180124283,49.0,111,0.0,55,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39384.2,0.0,41670.0,2,10,8.0,4,2.0 -6004,9153,3155.3553958077255,36.0,211,0.0,68,1.0,1.0,1.0,1.0,0.0,570.0,0.0,0.0,0.0,0.0,11147.8,1860.0,6770.0,3,2,3.0,1,1.0 -6005,9157,3079.99543980459,77.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17300.0,0.0,0.0,17017.3,0.0,0.0,1,10,0.0,1,0.0 -6006,9158,2663.5000149049815,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24030.0,0.0,0.0,24260.15,0.0,0.0,3,9,7.0,3,0.0 -6007,9159,2785.575518619775,67.0,112,850.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32820.0,0.0,0.0,30893.0,0.0,0.0,1,6,0.0,3,0.0 -6008,9160,1592.4929051465635,73.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30020.0,0.0,0.0,29521.7,0.0,0.0,5,9,7.0,3,0.0 -6009,9162,2316.262352665902,26.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,6010.0,0.0,0.0,0.0,0.0,17352.0,0.0,0.0,3,6,5.0,2,0.0 -6010,9163,2707.4432376374803,60.0,112,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4230.0,0.0,0.0,18305.75,0.0,0.0,5,9,0.0,1,1.0 -6011,9164,3308.421720398462,34.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21064.45,0.0,21530.0,5,10,8.0,1,1.0 -6012,9165,1213.5406670840962,61.0,112,0.0,37,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,27.0,0.0,55167.85,100.0,55370.0,1,7,0.0,4,2.0 -6013,9166,3360.774006273475,62.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16800.0,0.0,0.0,20690.0,0.0,0.0,1,9,2.0,3,0.0 -6014,9167,3161.659676760112,48.0,112,460.0,67,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27702.85,0.0,29290.0,3,8,0.0,4,2.0 -6015,9168,3374.8445456433465,64.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26930.0,0.0,0.0,25509.85,0.0,0.0,1,0,0.0,3,0.0 -6016,9170,1581.961867998404,44.0,111,0.0,85,0.0,0.0,6.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,26010.0,0.0,0.0,3,10,8.0,2,0.0 -6017,9172,3076.031503100257,47.0,111,2380.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42842.65,0.0,38170.0,1,9,7.0,4,2.0 -6018,9174,1965.5631692181255,52.0,111,610.0,56,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34980.0,100.0,27500.0,3,8,7.0,4,1.0 -6019,9176,1580.7245840823223,52.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,70963.9,0.0,78170.0,3,6,5.0,4,2.0 -6020,9178,2363.5434166542013,30.0,112,6870.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,60334.25,0.0,51500.0,2,7,0.0,4,2.0 -6021,9181,2202.8143057935818,83.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55270.0,0.0,0.0,47624.15,0.0,0.0,1,8,6.0,3,0.0 -6022,9183,1152.4981802496866,56.0,112,0.0,33,3,3.0,4.0,2.5,0.0,0.0,0.0,13520.0,0.0,0.0,73192.4,0.0,60030.0,1,8,0.0,4,3.0 -6023,9184,2564.6954859681055,84.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10590.0,0.0,0.0,12884.0,0.0,0.0,3,4,4.0,1,0.0 -6024,9185,2954.3733021684798,35.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37100.25,0.0,40010.0,2,10,3.0,3,2.0 -6025,9186,1202.38401970529,31.0,212,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45098.15,0.0,38680.0,2,2,0.0,4,2.0 -6026,9187,1628.3414222312508,48.0,112,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50949.35,0.0,49870.0,2,10,0.0,4,2.0 -6027,9190,2543.979209911202,47.0,111,15820.0,54,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,19439.85,0.0,40.0,2,8,7.0,4,1.0 -6028,9191,1299.3856746075744,49.0,112,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40738.55,0.0,40540.0,1,9,0.0,4,2.0 -6029,9192,2441.6014085487395,50.0,300,1080.0,12,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,19842.15,0.0,11490.0,1,0,0.0,4,2.0 -6030,9193,1685.564633506919,29.0,120,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45154.6,0.0,37470.0,2,0,0.0,4,2.0 -6031,9194,3192.743415564457,27.0,112,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27083.1,0.0,27100.0,2,10,1.0,1,1.0 -6032,9195,4986.1515497186565,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1896.0,0.0,0.0,3,7,5.0,1,0.0 -6033,9197,1334.0079849820631,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28110.0,0.0,0.0,27154.8,0.0,0.0,1,8,7.0,3,0.0 -6034,9198,2186.8600516535435,45.0,300,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40989.55,0.0,39600.0,1,0,0.0,4,2.0 -6035,9199,1496.8595505374842,47.0,111,0.0,37,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,69918.85,0.0,51860.0,1,9,7.0,4,1.0 -6036,9200,1996.6983383216132,54.0,111,2640.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35378.45,0.0,29860.0,3,6,5.0,2,2.0 -6037,9203,2271.1385333591857,55.0,111,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,7550.0,0.0,0.0,15346.2,0.0,8960.0,1,4,3.0,4,1.0 -6038,9205,1938.018577705276,26.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32577.6,0.0,24440.0,3,7,1.0,4,2.0 -6039,9206,2948.9739233512164,29.0,120,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41616.25,0.0,42370.0,3,0,0.0,3,2.0 -6040,9207,5046.1415472735325,38.0,112,5790.0,67,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,11177.0,0.0,4430.0,3,7,0.0,2,1.0 -6041,9209,2196.9268162858916,47.0,111,7540.0,52,2.0,1.0,2.0,1.5,0.0,750.0,0.0,0.0,0.0,0.0,26370.0,0.0,21040.0,3,8,6.0,3,2.0 -6042,9211,2495.886365675182,65.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32700.0,0.0,0.0,32007.5,0.0,0.0,1,7,1.0,3,0.0 -6043,9212,1358.9827933874576,53.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5760.0,0.0,0.0,19734.35,0.0,13570.0,1,0,1.0,1,1.0 -6044,9213,2902.281401717202,29.0,111,2190.0,85,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22940.0,0.0,10700.0,3,8,7.0,4,1.0 -6045,9217,2558.3640616757825,58.0,111,12070.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12605.8,0.0,0.0,3,6,5.0,1,0.0 -6046,9218,2541.2811223352205,64.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13560.0,0.0,0.0,13543.75,0.0,0.0,1,0,0.0,1,0.0 -6047,9221,2865.931281206244,80.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,52680.0,348.0,0.0,48360.25,0.0,0.0,1,5,0.0,1,0.0 -6048,9222,2799.344108397404,61.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9080.0,0.0,0.0,12083.0,0.0,0.0,3,9,7.0,1,0.0 -6049,9224,3675.751531526985,61.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26010.0,0.0,0.0,24856.7,0.0,0.0,1,9,7.0,3,0.0 -6050,9225,3133.1617990444947,88.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10370.0,0.0,0.0,11165.0,0.0,0.0,5,8,0.0,1,0.0 -6051,9228,2700.0061965890336,53.0,111,55370.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,38.0,0.0,90267.2,0.0,0.0,1,8,7.0,3,2.0 -6052,9231,2155.43163087267,62.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30510.0,0.0,0.0,28392.6,0.0,0.0,1,0,0.0,3,0.0 -6053,9237,1094.5068093941636,45.0,111,0.0,54,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,15.0,0.0,58146.0,0.0,60410.0,2,3,4.0,4,4.0 -6054,9238,2076.1536560913396,75.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28820.0,0.0,0.0,27419.95,0.0,0.0,1,9,3.0,3,0.0 -6055,9239,4303.260605708033,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22850.0,0.0,0.0,22703.0,0.0,0.0,3,9,7.0,1,0.0 -6056,9242,2207.6933030290525,81.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52050.0,0.0,0.0,47006.4,0.0,0.0,1,0,0.0,3,0.0 -6057,9246,903.7587243143292,39.0,111,0.0,64,1.0,1.0,7.0,3.2,0.0,0.0,0.0,1660.0,0.0,0.0,39881.55,0.0,29090.0,2,9,7.0,5,1.0 -6058,9247,3297.357866710015,42.0,111,2350.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16490.75,0.0,10950.0,3,9,7.0,2,1.0 -6059,9248,2660.3781499410115,70.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31080.0,0.0,0.0,30313.0,0.0,0.0,2,0,0.0,3,0.0 -6060,9250,2313.971027686766,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19760.0,0.0,0.0,18061.4,0.0,0.0,1,7,6.0,1,0.0 -6061,9252,3622.0582086304426,56.0,120,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22345.65,0.0,21130.0,3,0,3.0,5,2.0 -6062,9253,2991.62335730741,49.0,111,3890.0,42,2.0,2.0,3.0,2.0,0.0,3390.0,0.0,0.0,0.0,0.0,30830.35,200.0,24480.0,3,10,8.0,2,2.0 -6063,9256,4153.924223358069,77.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14210.0,0.0,0.0,35600.95,0.0,0.0,1,9,0.0,3,0.0 -6064,9258,1742.7749651502306,50.0,111,0.0,64,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,25101.25,0.0,24660.0,1,8,7.0,4,1.0 -6065,9259,3406.3001825731767,72.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6210.0,0.0,0.0,6076.75,0.0,0.0,1,3,3.0,1,0.0 -6066,9260,951.1345822455543,48.0,111,3470.0,42,3,2.0,3.0,2.0,0.0,0.0,0.0,11900.0,0.0,0.0,35841.8,0.0,20270.0,2,7,5.0,4,3.0 -6067,9261,1798.5124175651538,49.0,111,0.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,79029.3,0.0,79100.0,1,9,7.0,4,2.0 -6068,9263,1051.4071152333747,49.0,112,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,42818.7,0.0,39690.0,1,7,0.0,4,2.0 -6069,9264,2710.61151589738,55.0,111,0.0,78,0.0,0.0,1.0,1.0,5480.0,0.0,0.0,27870.0,0.0,0.0,35917.6,0.0,0.0,3,9,7.0,1,0.0 -6070,9265,2698.3578534230815,39.0,120,0.0,12,1.0,1.0,3.0,2.0,0.0,4180.0,0.0,17800.0,0.0,0.0,26863.55,4010.0,0.0,1,0,2.0,5,1.0 -6071,9267,1458.7397391242157,42.0,111,2460.0,52,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40423.15,0.0,24420.0,2,8,7.0,2,1.0 -6072,9271,1158.025125085126,58.0,112,12530.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26472.85,0.0,16770.0,1,6,1.0,3,1.0 -6073,9273,1613.1139315211783,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23189.3,0.0,24240.0,3,9,7.0,1,1.0 -6074,9274,1297.287467323464,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31150.0,0.0,0.0,29743.4,0.0,0.0,1,5,4.0,3,0.0 -6075,9275,4292.029460392174,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41760.0,0.0,0.0,38133.1,0.0,0.0,1,8,0.0,3,0.0 -6076,9276,2814.272340923062,66.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18420.0,0.0,0.0,17791.25,0.0,0.0,2,0,0.0,3,0.0 -6077,9277,4427.918059973954,53.0,212,0.0,77,2.0,1.0,3.0,2.0,0.0,0.0,0.0,23990.0,0.0,0.0,41358.15,0.0,17430.0,1,3,0.0,4,2.0 -6078,9278,3288.2651444496973,57.0,112,0.0,52,2.0,1.0,2.0,1.5,0.0,150.0,0.0,0.0,0.0,0.0,22354.2,1870.0,21460.0,3,9,1.0,2,2.0 -6079,9279,4057.5289114351717,37.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,10.0,0.0,49774.75,0.0,48640.0,2,8,7.0,4,2.0 -6080,9281,3188.539186535929,47.0,221,0.0,85,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10440.0,0.0,0.0,11510.0,0.0,0.0,2,1,2.0,2,0.0 -6081,9282,2072.8951175739485,50.0,221,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37714.95,0.0,39540.0,1,1,2.0,3,2.0 -6082,9283,2532.584428628583,46.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24065.4,0.0,24300.0,3,6,4.0,1,1.0 -6083,9284,3664.4409679431487,68.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57140.0,0.0,0.0,49528.55,0.0,0.0,3,9,7.0,3,0.0 -6084,9286,4041.596328885096,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3890.0,0.0,2070.0,3,8,6.0,1,0.0 -6085,9287,3116.712233152984,78.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12440.0,0.0,0.0,11874.35,0.0,0.0,1,8,6.0,1,0.0 -6086,9288,1781.837044839732,53.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18358.05,0.0,18660.0,3,7,5.0,1,1.0 -6087,9290,1925.3885602909638,50.0,112,5840.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15529.25,0.0,9790.0,3,8,1.0,1,1.0 -6088,9291,2542.3428151979974,58.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32622.25,0.0,33830.0,1,9,7.0,3,2.0 -6089,9292,2287.7028821442213,85.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12350.0,0.0,0.0,12376.0,0.0,0.0,5,0,0.0,1,0.0 -6090,9296,3253.0123736991254,36.0,111,21500.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,6.0,0.0,20302.05,0.0,70.0,3,10,8.0,1,1.0 -6091,9301,3941.085618345084,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41350.0,0.0,0.0,37150.7,0.0,0.0,1,9,7.0,3,0.0 -6092,9302,3339.424905406004,30.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20136.35,0.0,20800.0,2,9,7.0,1,1.0 -6093,9305,2874.622134460422,38.0,112,0.0,55,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38448.35,0.0,19980.0,2,6,0.0,4,2.0 -6094,9307,1049.6871090828722,41.0,111,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20262.0,70.0,12840.0,3,8,7.0,2,1.0 -6095,9309,1769.7029039097845,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47940.0,100.0,0.0,45081.2,0.0,0.0,1,9,7.0,3,0.0 -6096,9313,3344.515050042832,43.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18075.25,0.0,19840.0,2,9,7.0,1,1.0 -6097,9314,4187.525312323654,28.0,111,5420.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14883.05,0.0,10620.0,5,10,8.0,1,1.0 -6098,9315,2730.005144992034,29.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19413.95,0.0,19600.0,3,8,6.0,2,1.0 -6099,9316,3829.5191035162215,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33310.0,0.0,0.0,34185.1,0.0,0.0,2,10,8.0,1,0.0 -6100,9319,2831.9025486487844,79.0,221,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13730.0,0.0,0.0,13751.0,0.0,0.0,5,1,2.0,1,0.0 -6101,9320,2691.452597608036,50.0,400,10940.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17385.8,0.0,6640.0,2,0,0.0,3,2.0 -6102,9321,3129.0444286150664,48.0,111,6660.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35194.45,0.0,30130.0,1,8,6.0,4,2.0 -6103,9322,3114.9600700712363,78.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17590.0,0.0,0.0,18335.0,0.0,0.0,1,8,0.0,3,0.0 -6104,9323,3017.3663361735594,44.0,221,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,12.0,0.0,31909.5,0.0,29720.0,1,1,3.0,4,2.0 -6105,9324,1228.2911481370036,34.0,111,9570.0,55,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37640.6,0.0,22300.0,2,7,6.0,4,2.0 -6106,9325,4049.418978749235,28.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23271.5,0.0,25050.0,3,9,7.0,1,1.0 -6107,9327,3119.4185419645855,72.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19130.0,0.0,0.0,18414.35,0.0,0.0,1,5,4.0,3,0.0 -6108,9328,1648.674674278789,54.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,65612.4,0.0,76380.0,1,8,2.0,3,2.0 -6109,9331,1060.2686792069246,41.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,149.0,0.0,238876.15,0.0,73800.0,1,7,5.0,4,2.0 -6110,9333,2147.3897827553983,42.0,120,4290.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43038.1,0.0,37140.0,2,0,0.0,4,2.0 -6111,9335,1448.4760280249693,47.0,111,3990.0,69,2.0,1.0,3.0,2.0,0.0,1080.0,0.0,0.0,0.0,0.0,36480.95,5040.0,26860.0,2,9,7.0,2,2.0 -6112,9336,2565.221682718658,48.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,20331.95,3670.0,15430.0,1,9,7.0,2,1.0 -6113,9337,2491.5211976247174,42.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,6220.0,0.0,0.0,0.0,0.0,11970.0,0.0,0.0,3,8,7.0,2,0.0 -6114,9338,1914.6434259048356,47.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,128486.65,0.0,188740.0,1,8,0.0,1,1.0 -6115,9339,1511.4590260249852,66.0,400,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,33560.0,0.0,0.0,39215.7,0.0,0.0,1,0,0.0,3,1.0 -6116,9340,2316.716898791682,33.0,111,1860.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27577.7,0.0,26430.0,3,8,6.0,4,2.0 -6117,9343,1923.8155526858318,67.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9750.0,0.0,0.0,9350.5,0.0,0.0,1,6,4.0,1,0.0 -6118,9344,1680.268799777773,32.0,212,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26045.55,720.0,23200.0,2,1,0.0,4,2.0 -6119,9346,2051.212928924484,61.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16240.0,0.0,0.0,31366.35,0.0,15510.0,3,10,8.0,3,1.0 -6120,9349,2532.6993998445646,75.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17380.0,0.0,0.0,16478.85,0.0,0.0,1,0,0.0,1,0.0 -6121,9351,3803.3024105464674,46.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20689.2,0.0,21240.0,3,9,7.0,2,1.0 -6122,9354,2438.7345209746863,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,118670.0,462.0,0.0,100480.0,0.0,0.0,1,10,8.0,3,0.0 -6123,9355,1040.323198464841,55.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,35.0,0.0,38086.6,0.0,40980.0,1,8,0.0,3,2.0 -6124,9356,2124.9700512146137,33.0,300,6810.0,85,1.0,1.0,4.0,2.1,8580.0,0.0,0.0,0.0,0.0,0.0,24815.0,0.0,720.0,3,0,0.0,4,1.0 -6125,9357,3696.0662195078467,35.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28907.0,0.0,7060.0,3,9,7.0,4,2.0 -6126,9358,2443.970234234172,73.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27750.0,0.0,0.0,30364.5,0.0,0.0,1,8,1.0,3,0.0 -6127,9359,2002.2899215752345,43.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,61193.85,0.0,59780.0,2,10,8.0,4,2.0 -6128,9360,2590.881186491574,37.0,111,0.0,33,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33637.75,0.0,22480.0,2,8,7.0,4,2.0 -6129,9362,3179.029638331835,44.0,111,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49470.45,0.0,50120.0,3,10,8.0,4,2.0 -6130,9363,2546.1741271211777,52.0,111,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,142.0,0.0,70400.7,0.0,78380.0,2,10,8.0,3,2.0 -6131,9364,4637.397939584951,29.0,221,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15742.95,0.0,16660.0,2,1,2.0,1,1.0 -6132,9366,977.3071857849767,51.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,64553.3,0.0,71810.0,2,6,0.0,3,2.0 -6133,9367,1042.0839383592224,52.0,400,0.0,69,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,24210.55,0.0,23760.0,1,0,0.0,4,2.0 -6134,9368,3151.4156894001494,55.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,647.0,0.0,64859.0,0.0,0.0,1,10,8.0,3,1.0 -6135,9371,4431.404260794275,39.0,111,1280.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,15085.65,0.0,8690.0,3,4,3.0,1,1.0 -6136,9372,3307.1848344110535,49.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,34.0,0.0,34712.9,0.0,38880.0,1,9,7.0,1,1.0 -6137,9373,1816.0209681264635,48.0,111,2540.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22013.1,0.0,19620.0,3,8,6.0,2,2.0 -6138,9374,1675.0411568617649,50.0,211,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9760.0,0.0,0.0,9930.0,0.0,0.0,5,4,4.0,1,0.0 -6139,9375,3177.8481493266804,36.0,111,12280.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38861.5,0.0,29280.0,3,8,6.0,3,2.0 -6140,9376,2218.8755321132667,53.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,147.0,0.0,64473.2,0.0,61410.0,1,8,7.0,4,2.0 -6141,9377,3044.1997088258126,37.0,120,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,58781.2,0.0,63300.0,2,0,0.0,4,2.0 -6142,9378,1425.045532902681,55.0,112,0.0,22,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,34379.6,0.0,35590.0,1,9,1.0,4,2.0 -6143,9379,1965.501672023463,69.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29040.0,0.0,0.0,30376.4,0.0,0.0,1,9,0.0,3,0.0 -6144,9380,1630.6514432708182,55.0,120,0.0,45,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64753.15,0.0,69280.0,1,0,1.0,4,3.0 -6145,9382,3248.1694433961325,26.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34782.05,0.0,25210.0,3,10,8.0,3,2.0 -6146,9383,2240.5710384142476,74.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26270.0,0.0,0.0,26351.05,0.0,0.0,1,4,3.0,3,0.0 -6147,9384,1498.0578833106701,57.0,211,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11620.0,0.0,0.0,45554.35,0.0,38100.0,1,2,3.0,3,1.0 -6148,9385,2913.485777283858,39.0,221,0.0,11,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,5.0,0.0,36434.85,0.0,12690.0,2,1,1.0,4,2.0 -6149,9387,2243.842608910435,63.0,111,1430.0,78,1.0,0.0,4.0,2.5,0.0,4810.0,0.0,12550.0,0.0,0.0,28418.55,170.0,6770.0,2,6,4.0,4,1.0 -6150,9388,1457.2427894606244,85.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17370.0,0.0,0.0,17563.0,0.0,0.0,1,6,2.0,1,0.0 -6151,9389,2260.7690903695166,53.0,221,0.0,23,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,1392.0,0.0,30127.75,0.0,29110.0,1,1,3.0,3,1.0 -6152,9390,1881.8062315624525,45.0,112,1720.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36115.45,0.0,32410.0,2,8,1.0,4,2.0 -6153,9391,3026.9259840970935,31.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14508.0,0.0,14900.0,3,9,7.0,1,1.0 -6154,9392,1591.9423314637368,74.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28190.0,0.0,0.0,27131.4,0.0,0.0,1,0,0.0,3,0.0 -6155,9393,2877.274814752862,50.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24541.4,0.0,22790.0,3,10,8.0,2,1.0 -6156,9395,1810.9953949754406,72.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,1020.0,6910.0,0.0,0.0,7889.9,0.0,0.0,1,0,0.0,1,0.0 -6157,9396,3112.7079862092555,50.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22367.8,0.0,24030.0,3,8,6.0,1,1.0 -6158,9399,1730.5618312695328,74.0,212,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15640.0,0.0,0.0,18111.6,0.0,0.0,1,3,0.0,3,0.0 -6159,9400,1220.4763768978976,58.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,64528.3,0.0,14870.0,3,8,1.0,3,2.0 -6160,9403,2933.1849696093886,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34250.0,28.0,0.0,33413.5,0.0,0.0,1,9,7.0,1,0.0 -6161,9405,1214.2080491177417,71.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6300.0,0.0,0.0,5930.15,0.0,0.0,1,8,0.0,1,0.0 -6162,9407,3753.941333461568,72.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19400.0,4.0,0.0,18646.4,0.0,0.0,1,0,0.0,1,0.0 -6163,9408,1909.8533291516023,58.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17420.0,0.0,0.0,23839.9,0.0,7690.0,1,6,4.0,3,1.0 -6164,9410,3851.922306701764,44.0,111,0.0,85,0.0,0.0,1.0,1.0,8570.0,0.0,0.0,0.0,0.0,0.0,12062.0,0.0,0.0,3,8,6.0,1,0.0 -6165,9411,3431.3111155725624,76.0,111,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,19990.0,0.0,0.0,21610.0,0.0,1620.0,3,10,8.0,5,1.0 -6166,9413,3774.9321720968264,40.0,300,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,36801.0,0.0,30010.0,2,0,0.0,4,2.0 -6167,9414,1964.5239211896703,27.0,300,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,19.0,0.0,30429.8,0.0,25970.0,3,0,0.0,4,2.0 -6168,9415,1664.9660900691829,38.0,112,0.0,62,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,42510.65,0.0,40950.0,2,7,0.0,4,1.0 -6169,9419,3048.8023886191645,44.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47986.4,0.0,20230.0,2,10,8.0,3,2.0 -6170,9423,2432.660996899435,35.0,400,0.0,68,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,14734.0,2940.0,9450.0,1,0,0.0,2,1.0 -6171,9424,3086.4697081708055,29.0,111,0.0,85,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,22856.4,0.0,9330.0,3,10,8.0,4,1.0 -6172,9425,1218.079134089168,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34140.0,0.0,0.0,31960.2,0.0,0.0,1,9,7.0,3,0.0 -6173,9426,3731.925341907606,32.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19910.45,0.0,21310.0,3,10,2.0,1,1.0 -6174,9431,2813.7322121994403,50.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,8550.0,0.0,0.0,3,10,8.0,1,1.0 -6175,9433,2885.0997075930704,45.0,300,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40618.45,0.0,42550.0,2,0,0.0,4,2.0 -6176,9434,4404.772419512655,35.0,112,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21355.25,0.0,14120.0,3,9,3.0,2,1.0 -6177,9436,7311.642298879587,85.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15230.0,0.0,0.0,15512.85,0.0,0.0,1,8,6.0,1,0.0 -6178,9437,4584.898940695614,20.0,111,0.0,55,1.0,3.0,1.0,1.0,0.0,270.0,0.0,0.0,0.0,0.0,7904.0,1760.0,1750.0,4,9,7.0,1,1.0 -6179,9439,2400.467393321078,61.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16990.0,0.0,0.0,28934.15,0.0,13820.0,1,9,7.0,3,0.0 -6180,9440,3399.5164794648917,76.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19440.0,0.0,0.0,11355.8,0.0,0.0,3,6,4.0,1,0.0 -6181,9441,1905.3659718488311,54.0,112,20210.0,46,1.0,0.0,2.0,1.5,0.0,0.0,0.0,24360.0,0.0,0.0,48558.8,0.0,7530.0,1,10,4.0,3,1.0 -6182,9442,3643.6948336562314,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14980.0,0.0,0.0,14980.0,0.0,0.0,3,6,5.0,1,0.0 -6183,9443,4706.152628059064,68.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11270.0,0.0,0.0,12198.0,0.0,0.0,3,7,0.0,1,0.0 -6184,9444,1609.3427355967945,55.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25970.6,0.0,25990.0,1,8,1.0,3,2.0 -6185,9445,2566.4356737203607,52.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58643.65,0.0,41130.0,2,8,0.0,3,2.0 -6186,9447,3153.7396134359933,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58596.5,0.0,61400.0,2,9,7.0,4,2.0 -6187,9450,1572.4770807712298,59.0,111,5910.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,21700.0,0.0,0.0,27070.45,0.0,970.0,1,7,5.0,3,1.0 -6188,9451,3303.3894682927234,65.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,8810.0,0.0,0.0,0.0,6214.8,0.0,0.0,1,10,8.0,1,0.0 -6189,9452,3523.0588550679913,57.0,221,900.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48426.15,0.0,51250.0,1,1,2.0,4,3.0 -6190,9453,2716.017482698935,48.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26515.4,0.0,28450.0,3,10,8.0,1,1.0 -6191,9457,2263.9974902246777,69.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61580.0,0.0,0.0,51327.85,0.0,0.0,1,0,2.0,3,0.0 -6192,9460,3865.9069567735537,57.0,221,2660.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42283.65,0.0,37160.0,3,1,2.0,3,2.0 -6193,9463,2140.6717120236262,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36270.0,0.0,0.0,33111.2,0.0,0.0,1,7,5.0,3,0.0 -6194,9464,1049.6430024708436,52.0,111,1840.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,8570.0,0.0,0.0,48868.2,0.0,40850.0,2,8,7.0,4,3.0 -6195,9466,1365.508626394744,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18820.0,0.0,0.0,18286.6,0.0,0.0,1,7,5.0,1,0.0 -6196,9469,3228.6119657811014,32.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15738.2,0.0,17300.0,3,10,8.0,1,1.0 -6197,9470,1920.1822222906922,48.0,120,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29722.85,0.0,30470.0,1,0,3.0,4,2.0 -6198,9471,1505.7694656948588,37.0,112,6700.0,12,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31732.1,0.0,5510.0,1,8,0.0,3,2.0 -6199,9474,2514.082729121207,64.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49640.0,0.0,0.0,58077.6,0.0,0.0,1,0,2.0,3,0.0 -6200,9476,1293.0734871429433,56.0,112,0.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,8130.0,0.0,0.0,7549.55,0.0,0.0,2,9,0.0,2,1.0 -6201,9477,3350.649604581899,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12650.0,0.0,0.0,13382.0,0.0,0.0,3,9,7.0,1,0.0 -6202,9478,1439.4357575110125,43.0,300,0.0,13,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,112.0,0.0,36561.25,0.0,8910.0,1,0,0.0,4,2.0 -6203,9479,2311.0033641846035,29.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37710.15,0.0,32780.0,2,6,5.0,4,2.0 -6204,9480,2413.2531421212325,77.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24580.0,0.0,0.0,24948.7,0.0,0.0,1,7,5.0,3,0.0 -6205,9481,2770.78335513172,40.0,112,0.0,69,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39189.35,0.0,0.0,3,9,1.0,4,2.0 -6206,9482,4408.997698407426,28.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,37.0,0.0,25483.05,0.0,27240.0,3,10,8.0,1,1.0 -6207,9483,1111.7074646333238,49.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41801.45,0.0,41830.0,1,8,7.0,4,2.0 -6208,9484,2757.887112139204,49.0,112,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51293.9,0.0,51440.0,1,8,0.0,4,2.0 -6209,9485,2515.062053157898,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10770.0,0.0,0.0,12370.0,0.0,0.0,3,10,8.0,1,0.0 -6210,9487,2654.0495765864416,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49920.0,484.0,0.0,48140.85,0.0,0.0,1,8,7.0,3,0.0 -6211,9488,1374.1941459947514,46.0,112,0.0,33,3,3.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,50984.7,0.0,50780.0,2,7,0.0,4,3.0 -6212,9489,2230.1655439622955,39.0,111,5020.0,52,1.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,17557.0,0.0,770.0,3,7,6.0,1,1.0 -6213,9490,1264.3927638796843,42.0,111,0.0,52,3,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,67147.65,0.0,67700.0,3,10,8.0,5,3.0 -6214,9491,3231.9428984241636,62.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16550.0,0.0,0.0,15991.0,0.0,0.0,3,8,0.0,1,0.0 -6215,9492,5309.685253613396,30.0,120,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19282.0,0.0,20420.0,3,0,3.0,1,1.0 -6216,9494,1499.391333332774,63.0,111,0.0,34,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,55.0,0.0,107227.55,0.0,130060.0,1,10,8.0,4,3.0 -6217,9495,3454.5625178048235,59.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3220.0,0.0,0.0,4888.0,0.0,0.0,3,6,5.0,1,0.0 -6218,9497,1246.9428415626523,30.0,300,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,93.0,0.0,48429.45,0.0,41770.0,2,0,0.0,4,2.0 -6219,9500,1658.038719933364,63.0,112,6710.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55140.0,3.0,0.0,54420.9,0.0,0.0,1,9,1.0,3,0.0 -6220,9501,1937.1535767945352,58.0,300,8570.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30653.2,0.0,20560.0,1,0,0.0,3,2.0 -6221,9502,1036.1800290344552,58.0,120,0.0,75,2.0,2.0,3.0,2.0,0.0,0.0,0.0,16780.0,0.0,0.0,51443.35,0.0,37360.0,1,0,0.0,4,2.0 -6222,9504,1453.2420533688376,63.0,212,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17010.0,0.0,0.0,17978.35,0.0,0.0,1,2,0.0,1,0.0 -6223,9505,4419.102764584493,52.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25383.1,0.0,27510.0,2,6,5.0,1,1.0 -6224,9506,1235.8091227133023,48.0,112,0.0,62,2.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,42833.85,0.0,37930.0,2,10,0.0,4,2.0 -6225,9507,2176.0538375408096,48.0,112,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37278.9,0.0,29050.0,2,6,0.0,2,2.0 -6226,9508,5070.8178041521705,46.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,75.0,0.0,48914.15,0.0,42880.0,3,10,8.0,4,2.0 -6227,9509,2861.544652211766,35.0,111,6120.0,67,1.0,0.0,3.0,1.6,0.0,1050.0,0.0,0.0,0.0,0.0,23706.0,350.0,5880.0,3,8,6.0,2,1.0 -6228,9510,4391.2420108532015,46.0,112,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40879.15,0.0,40160.0,3,9,2.0,4,2.0 -6229,9513,3966.623143313943,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,47660.0,0.0,0.0,48082.3,0.0,0.0,3,10,8.0,1,0.0 -6230,9514,2278.453384400088,33.0,111,0.0,22,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,70910.95,0.0,88130.0,2,9,7.0,4,2.0 -6231,9515,3443.2587347760004,49.0,111,330.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20284.25,0.0,19180.0,5,8,6.0,4,2.0 -6232,9516,3490.826210642764,43.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31006.0,0.0,32420.0,5,10,8.0,5,2.0 -6233,9517,4110.50883406967,58.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,52690.0,0.0,0.0,102016.4,0.0,56930.0,1,8,6.0,3,1.0 -6234,9519,3361.681431082472,68.0,111,0.0,22,1.0,1.0,2.0,1.5,4280.0,0.0,0.0,9210.0,0.0,0.0,14343.0,0.0,0.0,1,8,7.0,3,1.0 -6235,9520,2706.5051826469617,64.0,112,0.0,77,0.0,0.0,2.0,1.5,6800.0,0.0,0.0,21940.0,80.0,0.0,31234.2,0.0,0.0,1,4,0.0,2,0.0 -6236,9522,1698.9016784450907,39.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,71300.45,0.0,77820.0,2,9,0.0,4,2.0 -6237,9523,2306.7883127189584,32.0,120,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43862.25,0.0,37930.0,2,0,3.0,4,2.0 -6238,9525,2721.1813676479896,60.0,111,23370.0,78,1.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,34598.0,0.0,8770.0,3,7,6.0,4,1.0 -6239,9526,3212.7545069308776,68.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9840.0,0.0,0.0,9435.45,0.0,0.0,5,9,7.0,1,0.0 -6240,9528,2971.3585892202013,51.0,120,1410.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30241.25,0.0,14920.0,1,0,2.0,4,2.0 -6241,9529,3243.2775823805855,43.0,211,3680.0,68,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17962.15,0.0,11880.0,3,2,3.0,3,2.0 -6242,9530,3243.853953527018,46.0,221,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32475.85,0.0,30340.0,3,1,1.0,1,1.0 -6243,9535,4087.9011482326614,23.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11640.0,0.0,0.0,3,10,8.0,3,0.0 -6244,9537,4821.718755963107,26.0,111,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,11912.55,0.0,6160.0,3,5,4.0,4,2.0 -6245,9538,2064.4122123975517,47.0,111,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42421.6,0.0,44340.0,1,8,7.0,4,2.0 -6246,9539,1880.2471223345592,30.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54083.4,0.0,49310.0,2,7,1.0,4,2.0 -6247,9541,1372.4384317194563,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,8420.0,53570.0,0.0,0.0,56886.1,0.0,0.0,1,8,6.0,3,0.0 -6248,9542,2695.678739180564,49.0,400,0.0,48,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30261.65,0.0,29180.0,2,0,1.0,4,2.0 -6249,9545,2668.1483531345443,47.0,111,0.0,62,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,86903.9,380.0,99100.0,5,8,6.0,4,3.0 -6250,9547,1073.1949173536864,47.0,111,0.0,43,1.0,1.0,4.0,2.5,0.0,0.0,0.0,12950.0,397.0,0.0,68469.95,0.0,29840.0,1,9,7.0,2,1.0 -6251,9548,3008.6103766298384,39.0,120,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,18118.05,0.0,17590.0,2,0,0.0,4,1.0 -6252,9549,1667.2173385270871,39.0,112,9410.0,47,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,25614.1,0.0,6630.0,3,9,1.0,4,2.0 -6253,9550,2036.5332818314043,73.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35310.0,0.0,0.0,31970.7,0.0,0.0,1,9,0.0,3,0.0 -6254,9552,2139.5610713157707,53.0,400,5600.0,64,2.0,1.0,2.0,1.5,0.0,1000.0,0.0,0.0,0.0,0.0,8141.15,420.0,1530.0,2,0,0.0,3,2.0 -6255,9553,1787.607350429935,43.0,111,29160.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,66231.45,0.0,38780.0,1,9,7.0,4,2.0 -6256,9557,5037.905773004378,52.0,221,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10780.0,0.0,0.0,28022.15,0.0,16100.0,3,1,2.0,3,1.0 -6257,9560,3495.2484220380957,72.0,111,0.0,86,2.0,0.0,3.0,2.0,0.0,0.0,0.0,13110.0,0.0,0.0,20780.0,0.0,5510.0,3,9,7.0,4,2.0 -6258,9561,3033.230013614267,45.0,111,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18144.0,0.0,15240.0,3,9,7.0,2,1.0 -6259,9562,3045.059578166122,32.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,9.0,0.0,58918.5,0.0,19260.0,2,7,0.0,4,2.0 -6260,9563,5521.840682582542,58.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21061.8,0.0,21850.0,3,8,6.0,1,1.0 -6261,9564,4024.0198757661997,39.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,9.0,0.0,32122.0,0.0,35700.0,2,9,7.0,1,1.0 -6262,9565,2655.2050396849827,43.0,300,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47922.25,0.0,14870.0,2,0,0.0,4,2.0 -6263,9566,2744.7312950668406,60.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40465.75,0.0,43800.0,1,10,8.0,1,1.0 -6264,9567,1813.5182091250701,48.0,111,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41998.9,0.0,22030.0,2,5,4.0,4,2.0 -6265,9569,1695.8430424079843,49.0,112,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39208.85,0.0,19930.0,2,9,3.0,4,2.0 -6266,9570,2750.397769375285,78.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15220.0,28.0,0.0,18910.7,0.0,0.0,5,10,8.0,1,0.0 -6267,9571,2532.888045715898,42.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19917.3,0.0,27030.0,2,4,4.0,1,1.0 -6268,9573,3372.7278674850904,42.0,111,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36635.4,0.0,34240.0,3,10,8.0,4,2.0 -6269,9574,3887.5105520394945,23.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28921.0,0.0,23420.0,3,10,8.0,1,1.0 -6270,9575,2710.6493966388093,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18020.0,0.0,0.0,17716.2,0.0,0.0,3,9,7.0,1,0.0 -6271,9576,3972.723575313286,39.0,111,8730.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9207.9,0.0,1130.0,1,9,7.0,1,1.0 -6272,9577,2625.0061434305067,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,71060.0,0.0,0.0,59019.3,0.0,0.0,1,8,6.0,3,0.0 -6273,9578,6906.1226156151215,63.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23130.0,0.0,0.0,21997.35,0.0,0.0,3,0,1.0,1,0.0 -6274,9580,2522.9897209030173,81.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14720.0,0.0,0.0,19827.0,0.0,0.0,1,1,2.0,3,0.0 -6275,9581,1122.4132012020339,33.0,300,0.0,47,2.0,2.0,7.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,45686.1,0.0,28680.0,3,0,0.0,4,2.0 -6276,9582,2599.9978880559943,45.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17443.6,0.0,17480.0,3,9,7.0,1,1.0 -6277,9583,1231.5871235439763,38.0,221,0.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,51657.15,0.0,45890.0,3,1,2.0,4,2.0 -6278,9584,1214.7642979187651,65.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23630.0,0.0,0.0,22758.85,0.0,0.0,1,0,0.0,3,0.0 -6279,9585,2247.72755854121,57.0,120,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34323.4,0.0,31270.0,1,0,2.0,3,2.0 -6280,9586,3507.657053785123,57.0,111,470.0,77,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,11840.0,0.0,0.0,3,10,8.0,1,0.0 -6281,9589,3078.2569203330663,45.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20410.85,0.0,19320.0,3,10,8.0,1,1.0 -6282,9591,2630.884284128182,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43100.0,0.0,0.0,39875.4,0.0,0.0,3,9,7.0,3,0.0 -6283,9593,3406.4656365410397,54.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,477.0,0.0,16989.9,0.0,22590.0,1,8,6.0,3,2.0 -6284,9594,3522.0556172911874,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22600.0,0.0,0.0,21083.8,0.0,0.0,1,9,7.0,1,0.0 -6285,9595,1965.1601759972812,53.0,112,0.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60345.6,0.0,64650.0,1,8,0.0,4,2.0 -6286,9596,2404.2340229733913,39.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25325.7,0.0,27280.0,5,7,5.0,1,1.0 -6287,9601,2710.272854336774,26.0,400,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29383.0,0.0,27850.0,3,0,0.0,3,2.0 -6288,9605,3112.2465664145657,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1700.0,7050.0,0.0,0.0,10310.0,0.0,0.0,3,10,8.0,1,0.0 -6289,9608,1407.1627416659596,36.0,111,1810.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38692.4,210.0,34610.0,3,8,7.0,5,2.0 -6290,9610,5405.403899979574,26.0,111,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48957.55,0.0,35060.0,3,4,4.0,4,2.0 -6291,9611,3745.431679425404,93.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,170.0,8180.0,0.0,0.0,8350.0,0.0,0.0,5,8,0.0,1,0.0 -6292,9612,8512.853458475114,58.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17387.0,0.0,16880.0,5,10,8.0,1,1.0 -6293,9613,3501.2487045109374,21.0,111,0.0,84,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,11868.0,0.0,0.0,3,9,7.0,5,0.0 -6294,9614,3074.645676893529,57.0,120,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22421.95,0.0,24550.0,3,0,2.0,3,1.0 -6295,9615,1234.3232136901242,47.0,111,0.0,48,2.0,2.0,7.0,3.0,0.0,0.0,0.0,11050.0,130.0,0.0,62503.75,0.0,35950.0,2,7,5.0,4,2.0 -6296,9616,3075.674173649823,46.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,7481.95,0.0,0.0,3,7,5.0,1,1.0 -6297,9617,8689.650002251725,35.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21227.0,0.0,21720.0,3,10,8.0,2,1.0 -6298,9618,2972.3298692493368,48.0,111,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,1830.0,0.0,0.0,21860.65,0.0,18180.0,3,10,8.0,2,1.0 -6299,9620,1898.5128908703778,49.0,112,0.0,53,1.0,1.0,5.0,2.8,0.0,0.0,0.0,10090.0,0.0,0.0,36562.8,0.0,22090.0,1,8,1.0,4,1.0 -6300,9623,5838.478499559193,23.0,111,7750.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15546.65,0.0,4810.0,3,8,6.0,3,1.0 -6301,9624,5079.233931440672,29.0,221,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47299.75,0.0,43370.0,2,1,1.0,4,2.0 -6302,9626,3486.3609934452193,30.0,221,0.0,85,0.0,0.0,3.0,1.6,0.0,6370.0,0.0,0.0,0.0,0.0,18362.0,220.0,2330.0,3,1,2.0,2,0.0 -6303,9627,5829.125145592609,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19960.0,0.0,0.0,19657.0,0.0,0.0,1,4,4.0,3,0.0 -6304,9629,3132.637187454727,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49530.0,1.0,0.0,58038.55,0.0,4890.0,1,9,7.0,3,0.0 -6305,9630,2410.3203333751353,22.0,112,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18720.0,0.0,15810.0,3,6,1.0,1,1.0 -6306,9631,3708.0558515360954,38.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3531.85,0.0,0.0,2,9,3.0,1,1.0 -6307,9632,2359.8387005854615,40.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20477.0,70.0,19280.0,3,9,7.0,2,1.0 -6308,9633,2268.7311892650478,19.0,111,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,8168.0,0.0,4610.0,3,7,5.0,3,1.0 -6309,9634,5175.946646625722,40.0,111,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26115.9,0.0,19620.0,2,6,4.0,2,1.0 -6310,9635,2653.290420843932,38.0,300,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33749.8,0.0,4700.0,5,0,0.0,4,2.0 -6311,9637,2212.184494876542,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49130.0,0.0,0.0,46326.9,0.0,0.0,1,5,4.0,3,0.0 -6312,9638,3160.914090791495,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15950.0,0.0,0.0,15986.0,0.0,0.0,5,7,5.0,1,0.0 -6313,9641,1741.1390194183725,47.0,112,0.0,62,3,3.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,35107.6,1440.0,29650.0,1,8,1.0,4,3.0 -6314,9642,3688.318240485564,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4130.0,0.0,0.0,4239.05,0.0,0.0,1,8,7.0,1,0.0 -6315,9643,2216.867108030787,45.0,111,540.0,56,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,50.0,0.0,31490.75,0.0,10860.0,3,9,7.0,2,1.0 -6316,9644,1610.6133339247665,46.0,120,0.0,13,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48026.85,0.0,24170.0,2,0,1.0,4,2.0 -6317,9645,3528.407118712566,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14240.0,0.0,0.0,14919.25,0.0,0.0,1,9,7.0,1,0.0 -6318,9646,2854.570610842935,78.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9750.0,0.0,0.0,9763.0,0.0,0.0,5,7,0.0,1,0.0 -6319,9650,2246.8229092037645,68.0,111,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,6690.0,55610.0,0.0,0.0,57102.65,0.0,0.0,1,9,7.0,5,0.0 -6320,9651,1325.6845811589292,55.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24141.9,0.0,24620.0,1,5,4.0,3,2.0 -6321,9652,2866.8823013525134,37.0,111,0.0,54,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,27566.85,0.0,21830.0,2,10,8.0,4,2.0 -6322,9653,3078.170070304046,31.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32181.7,0.0,32750.0,2,9,7.0,3,2.0 -6323,9654,2950.9088568834754,43.0,111,6090.0,69,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33843.7,0.0,25190.0,1,5,4.0,4,2.0 -6324,9655,2770.2976854161593,58.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12390.0,0.0,0.0,12603.6,0.0,0.0,3,0,0.0,1,0.0 -6325,9657,4980.320447834256,59.0,211,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25213.55,0.0,25800.0,3,2,3.0,3,1.0 -6326,9658,1665.4812622913498,31.0,111,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24830.95,20.0,13540.0,3,8,7.0,2,1.0 -6327,9659,2531.682352281331,47.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28152.95,0.0,15580.0,2,7,0.0,2,2.0 -6328,9661,1609.067392522639,39.0,112,0.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46319.6,0.0,36220.0,2,10,0.0,4,2.0 -6329,9662,3315.4582781800223,63.0,212,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22240.0,0.0,0.0,22271.9,0.0,0.0,1,3,0.0,3,0.0 -6330,9663,1600.7058980112763,40.0,111,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52126.4,0.0,52930.0,1,8,7.0,4,2.0 -6331,9667,2882.3595219920053,35.0,112,5810.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5667.65,0.0,0.0,3,9,0.0,1,1.0 -6332,9668,2292.4474308022473,70.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24400.0,0.0,0.0,25998.0,0.0,0.0,1,6,0.0,3,0.0 -6333,9669,2667.6935234073944,29.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16959.35,0.0,18060.0,3,6,5.0,1,1.0 -6334,9670,2467.8734011364254,22.0,111,0.0,81,1.0,0.0,2.0,1.3,0.0,5230.0,0.0,0.0,0.0,0.0,12321.0,0.0,0.0,3,5,4.0,2,1.0 -6335,9672,4439.382629091538,36.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57412.65,0.0,62330.0,2,10,8.0,3,2.0 -6336,9673,3179.925790888836,19.0,111,1040.0,68,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10025.75,0.0,3550.0,3,9,7.0,3,2.0 -6337,9674,2703.1121642606236,43.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49305.75,0.0,50900.0,2,10,8.0,4,2.0 -6338,9676,1805.4417219600734,42.0,111,0.0,38,1.0,1.0,4.0,2.5,0.0,0.0,0.0,15730.0,14.0,0.0,55862.55,0.0,52410.0,2,10,8.0,5,1.0 -6339,9677,1862.370272937953,40.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,4.0,0.0,17499.45,0.0,17670.0,2,10,4.0,4,2.0 -6340,9680,3365.652977676614,44.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,121815.1,0.0,0.0,2,10,8.0,4,2.0 -6341,9681,8250.055575256663,57.0,120,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27550.7,0.0,28340.0,3,0,3.0,2,2.0 -6342,9682,2072.656765551249,31.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50088.45,0.0,48430.0,2,8,1.0,4,2.0 -6343,9684,2546.6267216881765,58.0,111,0.0,33,1.0,1.0,3.0,2.0,0.0,0.0,0.0,8570.0,0.0,0.0,59014.2,0.0,54170.0,1,8,7.0,4,1.0 -6344,9685,2860.824664194513,45.0,111,0.0,42,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40.0,0.0,40.0,5,8,7.0,1,1.0 -6345,9687,2488.168671680281,62.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27400.0,65.0,0.0,27167.6,0.0,0.0,1,1,2.0,3,0.0 -6346,9689,1948.9530284710288,71.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45410.0,0.0,0.0,41212.9,0.0,0.0,1,0,0.0,3,0.0 -6347,9690,2471.0738446334085,45.0,111,0.0,85,0.0,0.0,5.0,2.6,0.0,6710.0,0.0,0.0,0.0,0.0,20141.0,0.0,0.0,3,10,8.0,2,0.0 -6348,9692,2246.7978585869787,63.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,12120.0,0.0,0.0,15670.7,0.0,3730.0,3,8,6.0,1,1.0 -6349,9693,2217.3522743480708,28.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32081.05,0.0,33970.0,3,9,7.0,3,2.0 -6350,9698,1697.9755035997434,35.0,112,0.0,38,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,65908.15,0.0,58830.0,2,5,0.0,4,2.0 -6351,9699,1264.8419162431715,65.0,112,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,22260.0,0.0,0.0,26147.9,0.0,6230.0,1,9,1.0,1,1.0 -6352,9701,2600.8761566339954,67.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10320.0,0.0,0.0,10053.5,0.0,0.0,1,0,0.0,1,0.0 -6353,9702,1077.7458331995254,38.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,12110.0,0.0,1050.0,2,9,7.0,4,2.0 -6354,9703,1078.2090734801209,55.0,112,3900.0,37,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,140501.9,0.0,119540.0,1,6,0.0,4,4.0 -6355,9704,3149.1585124676844,31.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,98121.2,0.0,107800.0,2,10,8.0,3,2.0 -6356,9708,1404.7219323751206,53.0,112,29900.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56441.2,0.0,31000.0,1,10,0.0,3,2.0 -6357,9709,2665.5121558362184,48.0,112,0.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49942.9,0.0,51490.0,2,7,0.0,4,2.0 -6358,9710,2275.8017135354526,56.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46561.65,0.0,48810.0,1,5,0.0,3,2.0 -6359,9713,3686.2319545448986,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1804.0,0.0,0.0,4,8,7.0,1,0.0 -6360,9714,2488.6568221300104,56.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,13466.6,0.0,14160.0,1,9,7.0,4,1.0 -6361,9715,2214.0455310873103,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,6010.0,8100.0,0.0,0.0,14867.75,0.0,0.0,3,9,7.0,3,0.0 -6362,9718,2234.1658586341237,59.0,111,13920.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18060.0,0.0,0.0,42603.7,0.0,12240.0,3,10,8.0,3,1.0 -6363,9719,2792.571557552719,39.0,400,1640.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11970.0,0.0,0.0,1,0,0.0,1,1.0 -6364,9720,2395.983523553841,77.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19480.0,0.0,0.0,19655.0,0.0,0.0,3,10,4.0,3,0.0 -6365,9724,2905.1158242516917,32.0,111,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33854.65,0.0,34170.0,2,9,7.0,4,2.0 -6366,9726,3114.5046996495494,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20820.0,0.0,0.0,20236.85,0.0,0.0,3,10,8.0,1,0.0 -6367,9728,2096.2413526978103,61.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,810.0,0.0,0.0,0.0,0.0,60725.0,250.0,71100.0,1,9,7.0,4,2.0 -6368,9729,2598.346593845848,54.0,400,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19668.55,0.0,19620.0,3,0,0.0,1,1.0 -6369,9730,3113.195739116531,56.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16780.0,0.0,0.0,35009.45,0.0,22400.0,1,9,7.0,3,1.0 -6370,9733,2935.6939521976688,62.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3789.0,0.0,193482.85,0.0,138470.0,1,10,8.0,3,2.0 -6371,9734,5858.183720490978,39.0,111,4440.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32892.4,0.0,22010.0,3,10,8.0,4,2.0 -6372,9736,1048.4406059154492,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41070.0,0.0,0.0,37820.95,0.0,0.0,1,8,7.0,3,0.0 -6373,9739,3228.458958926181,38.0,111,1540.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18211.9,360.0,11700.0,3,8,7.0,2,1.0 -6374,9740,1257.7841256143722,27.0,111,4030.0,53,2.0,1.0,4.0,2.1,0.0,0.0,0.0,1750.0,0.0,0.0,33072.35,0.0,24630.0,3,9,7.0,4,2.0 -6375,9743,3270.26873193351,53.0,111,0.0,77,0.0,0.0,2.0,1.5,8030.0,0.0,0.0,0.0,0.0,0.0,11006.0,0.0,0.0,3,7,5.0,2,0.0 -6376,9746,2350.5290682907835,69.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53830.0,0.0,0.0,47876.8,0.0,0.0,1,10,4.0,3,0.0 -6377,9747,2023.7329516130299,55.0,112,8410.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27736.3,0.0,20460.0,3,4,0.0,3,1.0 -6378,9748,3206.9022762808086,30.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37905.55,0.0,44880.0,5,10,8.0,1,1.0 -6379,9749,3138.097080960621,74.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23300.0,0.0,0.0,23397.0,0.0,0.0,3,0,1.0,3,0.0 -6380,9750,1079.0157022900469,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19160.0,0.0,0.0,18494.65,0.0,0.0,1,7,6.0,3,0.0 -6381,9751,3102.5203821354276,58.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11160.0,0.0,0.0,33433.25,0.0,23950.0,3,10,8.0,3,1.0 -6382,9752,3333.878836392003,54.0,211,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9840.0,0.0,0.0,31304.25,0.0,21970.0,3,4,3.0,3,1.0 -6383,9753,1717.7772222523727,37.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37970.25,0.0,38110.0,2,6,0.0,3,2.0 -6384,9754,2748.354431027829,45.0,111,0.0,54,1.0,1.0,4.0,2.5,0.0,340.0,0.0,0.0,0.0,0.0,20722.65,290.0,13030.0,1,8,7.0,2,1.0 -6385,9756,2025.5253972094688,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32760.0,0.0,0.0,30137.4,0.0,0.0,1,8,6.0,3,0.0 -6386,9759,1064.9577860233987,38.0,112,0.0,46,1.0,1.0,4.0,2.5,12190.0,0.0,200.0,7960.0,0.0,0.0,38748.0,0.0,19170.0,1,6,0.0,5,1.0 -6387,9760,2147.280168221437,62.0,211,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,320686.5,0.0,0.0,1,1,2.0,3,1.0 -6388,9761,2512.606317099785,74.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18110.0,0.0,0.0,20494.5,0.0,0.0,1,6,0.0,3,0.0 -6389,9762,2746.230979605522,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43020.0,0.0,0.0,39815.35,0.0,0.0,3,7,0.0,3,0.0 -6390,9764,1023.2699066202188,34.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,19100.0,0.0,0.0,70967.9,0.0,55310.0,1,4,4.0,4,2.0 -6391,9765,2914.814894944538,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13660.0,0.0,0.0,13407.75,0.0,0.0,1,8,7.0,1,0.0 -6392,9767,1788.4820489831513,38.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,4.0,0.0,105270.5,0.0,118380.0,2,9,7.0,4,2.0 -6393,9768,2679.040001859617,73.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14000.0,0.0,0.0,40911.15,0.0,0.0,1,1,2.0,3,0.0 -6394,9769,2222.1602022058973,63.0,111,0.0,11,2.0,1.0,4.0,2.3,0.0,0.0,0.0,5520.0,0.0,0.0,23970.35,0.0,23780.0,1,6,5.0,4,2.0 -6395,9770,3640.2958321140295,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17100.0,0.0,0.0,17214.0,0.0,0.0,3,8,7.0,3,0.0 -6396,9774,2520.7086405349078,41.0,112,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,2.0,0.0,21058.95,0.0,20940.0,3,10,0.0,2,1.0 -6397,9775,1866.7839123911267,49.0,111,0.0,46,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,10654.0,29294.25,0.0,7480.0,2,9,7.0,4,1.0 -6398,9777,1403.6215035407013,50.0,112,0.0,54,1.0,1.0,2.0,1.5,5190.0,0.0,0.0,5670.0,0.0,0.0,27106.95,0.0,12190.0,1,8,0.0,3,1.0 -6399,9778,4651.4976324626,37.0,111,580.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38637.55,0.0,36080.0,3,5,4.0,4,2.0 -6400,9779,2125.0312678049063,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17160.0,0.0,0.0,17016.15,0.0,0.0,1,8,7.0,1,0.0 -6401,9780,2627.272259556786,70.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,15640.0,0.0,0.0,15640.0,0.0,0.0,3,9,7.0,4,0.0 -6402,9781,1279.905940929834,37.0,300,0.0,42,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33241.4,0.0,32060.0,2,0,0.0,4,1.0 -6403,9783,2642.8227831615736,22.0,300,3370.0,85,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10822.0,0.0,3900.0,3,0,0.0,3,1.0 -6404,9786,1797.10808877398,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47920.0,0.0,0.0,43808.4,0.0,0.0,1,8,6.0,3,0.0 -6405,9787,1439.7471602251517,45.0,300,0.0,64,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,39927.55,0.0,33480.0,2,0,0.0,4,3.0 -6406,9789,3345.883223617786,27.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42747.45,0.0,35730.0,2,9,7.0,4,2.0 -6407,9790,3462.5661828428856,28.0,111,0.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16213.95,0.0,13320.0,3,9,7.0,3,2.0 -6408,9791,3251.136798681486,44.0,111,7480.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11210.0,0.0,3540.0,3,6,5.0,1,1.0 -6409,9793,3994.7680225166987,68.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45980.0,0.0,0.0,45365.3,0.0,0.0,1,6,5.0,3,0.0 -6410,9798,3346.5922034574683,38.0,111,39070.0,22,2.0,1.0,4.0,2.1,0.0,0.0,0.0,12500.0,0.0,0.0,86770.1,0.0,25270.0,2,6,4.0,4,2.0 -6411,9799,2073.922479231881,62.0,300,0.0,11,2.0,1.0,2.0,1.5,0.0,0.0,0.0,21340.0,82.0,0.0,32013.25,0.0,12140.0,1,0,0.0,3,2.0 -6412,9800,3173.1601835906563,80.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18940.0,2002.0,0.0,39789.2,0.0,0.0,1,9,7.0,1,0.0 -6413,9802,2794.0232705483495,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25490.0,0.0,0.0,25782.95,0.0,0.0,1,7,0.0,3,0.0 -6414,9803,2678.4638731292707,41.0,221,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,9200.0,0.0,0.0,26687.65,0.0,3380.0,3,1,2.0,2,1.0 -6415,9804,2186.4354965569064,40.0,221,0.0,63,1.0,0.0,3.0,1.8,0.0,8150.0,0.0,0.0,0.0,0.0,11600.0,330.0,0.0,3,1,3.0,4,1.0 -6416,9805,6640.416914858249,87.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11930.0,0.0,0.0,13927.0,0.0,0.0,3,9,3.0,1,0.0 -6417,9807,5843.136120071969,42.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15970.0,0.0,0.0,36658.1,0.0,22590.0,1,8,7.0,2,1.0 -6418,9808,1516.680053698544,45.0,111,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25727.05,0.0,17230.0,3,8,6.0,2,1.0 -6419,9810,1215.1578762552424,50.0,221,390.0,12,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,20583.0,0.0,13850.0,2,1,3.0,4,4.0 -6420,9811,1965.0847141005443,58.0,221,7090.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13909.35,0.0,4870.0,3,1,2.0,1,1.0 -6421,9812,1866.4673542539315,34.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41779.45,0.0,41370.0,2,9,0.0,4,2.0 -6422,9813,2617.5014704548016,56.0,212,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36539.95,0.0,39030.0,1,3,0.0,4,2.0 -6423,9815,3159.7227933603185,44.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,270.0,0.0,0.0,0.0,0.0,18786.75,3550.0,12090.0,3,9,7.0,4,1.0 -6424,9816,1215.1508341734227,57.0,111,4410.0,68,2.0,1.0,3.0,2.0,0.0,0.0,0.0,970.0,0.0,0.0,32523.75,0.0,28820.0,3,9,7.0,4,2.0 -6425,9817,4187.395991575494,73.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25370.0,0.0,0.0,24691.75,0.0,0.0,1,7,0.0,3,0.0 -6426,9818,1896.280824927639,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23840.0,0.0,0.0,22111.35,0.0,0.0,1,8,6.0,1,0.0 -6427,9819,4116.156563052269,28.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42630.85,0.0,41150.0,2,9,7.0,4,2.0 -6428,9821,3033.933207678987,38.0,300,2350.0,47,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,38954.35,0.0,21240.0,3,0,0.0,4,2.0 -6429,9823,2439.203196330132,47.0,300,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28262.85,0.0,30060.0,2,0,0.0,3,2.0 -6430,9826,3922.71432151257,41.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33976.7,0.0,35620.0,1,8,7.0,3,2.0 -6431,9827,1610.5123884895934,38.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57818.45,0.0,54760.0,3,10,8.0,4,2.0 -6432,9828,1829.7920459951017,57.0,112,11870.0,65,2.0,1.0,4.0,2.5,0.0,0.0,0.0,20010.0,0.0,0.0,46033.4,0.0,13280.0,1,8,0.0,5,2.0 -6433,9830,3611.7879747911625,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18960.0,0.0,0.0,17767.65,0.0,0.0,3,9,7.0,1,0.0 -6434,9831,2338.160887137225,27.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28555.1,0.0,30390.0,3,5,0.0,3,2.0 -6435,9833,2874.221665905854,79.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33230.0,0.0,0.0,30541.4,0.0,0.0,1,0,3.0,3,0.0 -6436,9835,3793.6367919641643,29.0,111,0.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17984.0,0.0,16160.0,3,10,8.0,3,2.0 -6437,9836,2667.1794343187903,20.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,230.0,0.0,0.0,0.0,0.0,27680.1,1200.0,25320.0,3,9,7.0,2,2.0 -6438,9838,2294.220809012702,61.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11960.0,436.0,0.0,16981.2,0.0,0.0,1,0,0.0,5,0.0 -6439,9841,2784.9520878292483,44.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21308.75,0.0,19880.0,3,10,8.0,1,1.0 -6440,9843,1214.553067367725,38.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46160.65,0.0,45720.0,1,8,7.0,4,2.0 -6441,9845,1871.1543390108686,46.0,111,0.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,35422.4,340.0,29410.0,2,9,7.0,4,2.0 -6442,9846,2742.572433582973,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10050.0,0.0,0.0,9895.1,0.0,0.0,3,6,4.0,1,0.0 -6443,9849,1374.458880211914,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53460.0,0.0,0.0,48196.75,0.0,0.0,1,7,5.0,3,0.0 -6444,9851,2764.6042212049465,27.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,791.0,0.0,35158.0,0.0,22170.0,3,10,8.0,5,2.0 -6445,9853,1976.7938405806271,41.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,17.0,0.0,39684.8,0.0,41410.0,1,8,0.0,4,2.0 -6446,9854,3679.688090872491,38.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18570.25,0.0,19880.0,3,8,0.0,1,1.0 -6447,9855,2050.1606953452683,26.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,66000.95,0.0,70840.0,2,9,7.0,4,2.0 -6448,9856,2188.313853335786,80.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31850.0,0.0,0.0,31720.3,0.0,0.0,1,0,0.0,3,0.0 -6449,9857,2325.9522322052744,60.0,111,7920.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18010.0,0.0,0.0,23783.05,0.0,0.0,3,6,5.0,1,0.0 -6450,9859,1992.160824231063,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41220.0,0.0,0.0,41782.15,0.0,0.0,1,10,8.0,3,0.0 -6451,9860,3335.3031224780043,26.0,111,3980.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9310.0,0.0,0.0,26531.45,0.0,12200.0,3,9,7.0,2,1.0 -6452,9863,2903.498881330442,47.0,111,0.0,53,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27871.7,0.0,28160.0,2,9,7.0,2,1.0 -6453,9864,2253.2936701832296,37.0,300,5460.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,1690.0,0.0,0.0,28990.3,0.0,20280.0,1,0,0.0,3,2.0 -6454,9865,1569.7101916960119,86.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,380.0,0.0,0.0,0.0,6140.0,0.0,0.0,5,10,8.0,1,0.0 -6455,9869,3218.1567343321803,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31490.0,0.0,0.0,33082.65,0.0,0.0,1,5,4.0,3,0.0 -6456,9870,5120.222869350904,82.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21210.0,0.0,0.0,20475.5,0.0,0.0,1,3,3.0,1,0.0 -6457,9871,5404.194908853979,40.0,111,0.0,64,1.0,1.0,7.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,51762.1,0.0,29510.0,3,10,8.0,4,1.0 -6458,9873,2073.7071709900733,71.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23910.0,0.0,0.0,24672.55,0.0,0.0,5,0,0.0,3,0.0 -6459,9875,1685.0640311654513,78.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20350.0,33.0,0.0,24722.3,0.0,0.0,1,8,7.0,3,0.0 -6460,9876,4921.575788678538,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13760.0,0.0,0.0,13335.15,0.0,0.0,1,4,4.0,1,0.0 -6461,9878,2577.147132776791,50.0,112,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40904.25,0.0,40160.0,1,8,0.0,4,2.0 -6462,9879,1261.332113721404,52.0,112,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16850.0,0.0,0.0,36857.05,0.0,23070.0,1,10,2.0,3,1.0 -6463,9881,4700.850538480906,56.0,221,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21880.0,0.0,0.0,80424.1,0.0,54120.0,1,1,2.0,3,1.0 -6464,9882,2611.789432944048,44.0,112,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,167.0,0.0,68189.2,0.0,67100.0,1,9,1.0,4,2.0 -6465,9883,1825.7576832951324,43.0,112,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,58.0,0.0,50434.05,0.0,36090.0,1,7,0.0,4,2.0 -6466,9884,2882.8005010157704,32.0,111,650.0,62,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,2.0,0.0,28480.45,0.0,28560.0,3,8,6.0,4,2.0 -6467,9886,2612.003830078426,63.0,400,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,6120.0,4000.0,0.0,0.0,13480.5,0.0,0.0,3,0,0.0,1,0.0 -6468,9887,1714.9889029230576,83.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22010.0,0.0,0.0,24929.9,0.0,0.0,1,3,4.0,3,0.0 -6469,9888,1894.7077824796718,58.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,16380.0,0.0,0.0,26122.25,0.0,10870.0,1,8,7.0,1,1.0 -6470,9892,2993.3294980417836,45.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23932.0,0.0,17630.0,3,10,8.0,2,1.0 -6471,9893,2884.4082889836077,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36720.0,17.0,0.0,35308.85,0.0,0.0,1,8,6.0,3,0.0 -6472,9894,3015.148319633944,64.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,86.0,0.0,45596.35,0.0,56830.0,1,9,7.0,1,1.0 -6473,9895,1948.023109780933,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23100.0,0.0,0.0,29092.7,0.0,4110.0,3,8,6.0,2,0.0 -6474,9896,3199.7691459236307,46.0,211,0.0,56,1.0,0.0,2.0,1.3,0.0,7150.0,0.0,0.0,0.0,0.0,10869.0,330.0,1610.0,3,4,3.0,2,1.0 -6475,9898,1785.483533208623,51.0,120,0.0,42,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44747.65,0.0,46950.0,1,0,0.0,4,3.0 -6476,9899,3615.721501191918,46.0,211,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25868.6,0.0,26820.0,3,3,3.0,1,1.0 -6477,9900,1822.0137381331672,60.0,112,1930.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18750.0,0.0,0.0,20350.45,0.0,0.0,3,8,0.0,3,0.0 -6478,9901,904.9884178945869,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48650.0,81.0,0.0,45934.9,0.0,0.0,1,7,5.0,3,0.0 -6479,9902,2776.768838152278,23.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33220.2,0.0,31560.0,3,8,7.0,4,2.0 -6480,9903,3742.414242050222,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2054.0,0.0,0.0,3,8,7.0,1,0.0 -6481,9905,2362.976694481335,27.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,56132.75,0.0,58620.0,2,9,7.0,4,2.0 -6482,9906,4018.284644434825,72.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39460.0,0.0,0.0,38805.35,0.0,0.0,1,7,1.0,3,0.0 -6483,9907,3739.597036549181,40.0,221,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58640.25,0.0,55390.0,2,1,1.0,4,2.0 -6484,9908,3626.6319591393453,63.0,120,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,24820.0,0.0,0.0,35312.6,2170.0,9460.0,1,0,0.0,4,1.0 -6485,9909,3101.4157540072247,26.0,111,300.0,69,1.0,0.0,2.0,1.3,0.0,5490.0,0.0,0.0,0.0,0.0,12130.0,0.0,0.0,3,8,7.0,2,1.0 -6486,9910,3471.3379592714,31.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32778.75,0.0,29670.0,3,10,8.0,4,2.0 -6487,9911,2491.2708958240996,51.0,212,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49557.95,0.0,51190.0,1,3,0.0,4,2.0 -6488,9912,2812.5959074416405,43.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27978.3,0.0,30580.0,2,8,6.0,1,1.0 -6489,9914,4413.289641846889,88.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28650.0,0.0,0.0,24198.5,0.0,0.0,1,1,2.0,1,0.0 -6490,9915,1994.5389442086807,45.0,120,0.0,52,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49922.75,0.0,49970.0,1,0,0.0,4,3.0 -6491,9918,1699.3390331198252,76.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16130.0,0.0,0.0,16746.5,0.0,0.0,1,0,0.0,3,0.0 -6492,9919,3062.8911350240724,75.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21550.0,0.0,0.0,20683.55,0.0,0.0,1,0,1.0,3,0.0 -6493,9920,2595.696827539928,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49870.0,177.0,0.0,62295.0,0.0,23210.0,1,9,7.0,3,0.0 -6494,9921,4114.982012004647,74.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10410.0,0.0,0.0,10176.0,0.0,0.0,1,1,2.0,1,0.0 -6495,9923,2441.325637493595,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34060.0,0.0,0.0,32587.75,0.0,0.0,1,8,6.0,3,0.0 -6496,9924,6506.84575813539,47.0,111,0.0,68,1.0,1.0,1.0,1.0,3310.0,0.0,0.0,0.0,0.0,0.0,13665.0,0.0,7370.0,3,4,4.0,1,1.0 -6497,9925,989.0551717470934,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16600.0,0.0,0.0,17171.0,0.0,0.0,5,9,7.0,3,0.0 -6498,9926,1332.9306367337208,53.0,400,0.0,63,3,2.0,4.0,2.5,0.0,0.0,0.0,11050.0,0.0,0.0,37814.65,0.0,26910.0,5,0,0.0,5,3.0 -6499,9927,2652.82248520494,55.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25007.1,0.0,23730.0,1,7,0.0,1,1.0 -6500,9929,2749.6019661359037,48.0,111,7220.0,64,2.0,1.0,3.0,2.0,0.0,2730.0,0.0,0.0,0.0,0.0,31751.75,0.0,20760.0,3,6,5.0,4,2.0 -6501,9930,1603.0131693891037,66.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4520.0,0.0,0.0,7266.55,0.0,0.0,3,0,0.0,1,0.0 -6502,9932,1685.728746125872,36.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,13.0,0.0,70174.55,0.0,70640.0,2,9,7.0,4,2.0 -6503,9934,2353.8284385117386,52.0,400,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33112.95,0.0,32730.0,1,0,0.0,3,2.0 -6504,9936,2903.634770398873,41.0,112,0.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,67863.55,0.0,51060.0,2,9,0.0,4,2.0 -6505,9937,2267.5100284969812,43.0,400,0.0,22,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,118.0,0.0,22623.25,0.0,20150.0,1,0,0.0,4,1.0 -6506,9938,4508.072687761956,45.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,740.0,0.0,0.0,40857.95,0.0,37530.0,2,9,7.0,4,2.0 -6507,9939,3296.7222346903727,31.0,111,8880.0,56,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26936.0,20.0,7090.0,3,10,8.0,4,1.0 -6508,9940,1866.8498159194332,39.0,221,0.0,56,2.0,0.0,4.0,2.3,0.0,4170.0,0.0,0.0,0.0,0.0,20737.5,510.0,2270.0,3,1,2.0,2,2.0 -6509,9941,3748.777983820997,24.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17111.0,0.0,14210.0,3,9,7.0,1,1.0 -6510,9942,3516.1702739178004,61.0,111,11740.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,30570.0,0.0,0.0,42303.9,0.0,0.0,1,4,4.0,3,1.0 -6511,9943,3116.626800340391,39.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,68760.9,0.0,74700.0,2,9,7.0,3,2.0 -6512,9945,1151.2742548320143,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39690.0,0.0,0.0,37282.15,0.0,0.0,5,7,5.0,3,0.0 -6513,9949,1720.4032435844454,50.0,112,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43617.0,0.0,46150.0,3,9,2.0,3,2.0 -6514,9955,1593.0182135855302,63.0,112,0.0,54,1.0,0.0,2.0,1.5,0.0,0.0,0.0,31820.0,28.0,0.0,30420.85,0.0,0.0,1,10,0.0,3,1.0 -6515,9956,3571.5356404384856,56.0,400,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,9910.0,0.0,0.0,42791.2,0.0,36780.0,1,0,0.0,3,2.0 -6516,9957,1988.1553695922178,59.0,111,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,30480.0,0.0,0.0,67062.05,0.0,42930.0,1,10,8.0,4,2.0 -6517,9958,1645.4265673193659,50.0,221,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,67.0,0.0,22909.05,0.0,0.0,1,1,2.0,3,2.0 -6518,9959,1543.9349579812388,52.0,221,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16556.8,0.0,16770.0,2,1,1.0,1,1.0 -6519,9960,1540.8036170774267,48.0,300,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,68.0,0.0,65179.2,0.0,60840.0,2,0,0.0,4,2.0 -6520,9961,2435.326873500937,59.0,111,1810.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,25.0,0.0,7982.65,0.0,7600.0,5,10,8.0,1,1.0 -6521,9963,3099.9259344083066,46.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11790.0,0.0,0.0,30424.95,0.0,19420.0,1,9,7.0,2,1.0 -6522,9964,1435.638456207352,69.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17340.0,0.0,0.0,18383.75,0.0,0.0,1,8,7.0,3,0.0 -6523,9967,3475.379596062957,90.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14240.0,0.0,0.0,14723.0,0.0,0.0,1,6,5.0,1,0.0 -6524,9971,2903.2883106784448,84.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20270.0,0.0,0.0,19332.55,0.0,0.0,1,9,7.0,3,0.0 -6525,9972,5157.82256686832,25.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17084.9,0.0,18210.0,3,8,6.0,1,1.0 -6526,9974,2793.138576310881,73.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31050.0,0.0,0.0,32181.15,0.0,0.0,5,1,1.0,3,0.0 -6527,9975,3819.0763408368075,48.0,211,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34227.1,0.0,34850.0,1,2,3.0,4,2.0 -6528,9976,1063.593709641607,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,84170.0,0.0,0.0,73109.15,0.0,0.0,1,5,4.0,3,0.0 -6529,9977,1862.1221385889924,51.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,924.0,0.0,65138.4,0.0,64530.0,1,8,6.0,3,2.0 -6530,9978,5192.868054137692,50.0,111,0.0,69,2.0,1.0,6.0,3.1,0.0,330.0,0.0,0.0,0.0,0.0,26926.9,740.0,13450.0,3,5,4.0,4,2.0 -6531,9980,3592.551690879113,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5515.0,0.0,0.0,3,8,6.0,1,0.0 -6532,9984,1211.034561485327,59.0,120,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,41710.0,0.0,0.0,60558.8,0.0,15240.0,2,0,3.0,4,1.0 -6533,9985,2884.2732400311625,64.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22980.0,0.0,0.0,21095.65,0.0,0.0,1,7,0.0,1,0.0 -6534,9988,1864.8501493422086,53.0,400,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30017.75,0.0,31710.0,3,0,0.0,3,2.0 -6535,9989,3076.025104121003,38.0,112,0.0,11,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23909.0,0.0,0.0,5,8,0.0,4,2.0 -6536,9990,1860.065109392472,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41810.0,3.0,0.0,39366.35,0.0,0.0,1,10,8.0,3,0.0 -6537,9991,1429.0817574769894,59.0,212,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20960.0,0.0,0.0,35209.85,0.0,12980.0,2,2,0.0,3,1.0 -6538,9994,3079.555206322016,27.0,111,0.0,56,1.0,0.0,2.0,1.3,0.0,5230.0,0.0,0.0,0.0,0.0,11478.0,0.0,0.0,3,8,7.0,2,1.0 -6539,9996,1952.952893906848,58.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13740.0,0.0,0.0,31346.55,0.0,15100.0,1,4,4.0,2,1.0 -6540,9997,1179.3217769776227,57.0,300,23220.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22333.65,0.0,0.0,1,0,0.0,3,1.0 -6541,9998,1473.9716699204291,28.0,112,6310.0,85,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,17171.75,0.0,2070.0,2,8,0.0,4,1.0 -6542,10000,2311.85347947249,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16410.0,0.0,0.0,16230.6,0.0,0.0,3,7,5.0,1,0.0 -6543,10003,2890.751237990757,23.0,111,2620.0,68,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32993.6,0.0,30000.0,3,8,7.0,3,2.0 -6544,10004,2182.487377422031,65.0,212,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16550.0,1122.0,0.0,26025.45,0.0,170.0,1,2,0.0,3,0.0 -6545,10005,2257.887725689142,63.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,23460.0,0.0,0.0,22433.0,0.0,0.0,1,8,7.0,3,1.0 -6546,10006,770.8421128822018,38.0,112,0.0,43,2.0,2.0,6.0,3.3,0.0,0.0,0.0,29820.0,0.0,0.0,69162.45,0.0,40930.0,1,6,0.0,5,2.0 -6547,10007,3256.207012676663,90.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12240.0,0.0,0.0,12352.0,0.0,0.0,5,0,0.0,1,0.0 -6548,10009,981.8993171013101,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38960.0,0.0,0.0,34495.75,0.0,0.0,1,8,7.0,3,0.0 -6549,10010,3734.0928562723343,55.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31550.95,0.0,32690.0,3,8,7.0,3,2.0 -6550,10011,6186.465363226179,60.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16390.0,0.0,0.0,16182.0,0.0,0.0,3,6,5.0,3,0.0 -6551,10014,3134.0711940583674,54.0,111,2620.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,4484.05,0.0,0.0,3,7,6.0,2,1.0 -6552,10016,3884.466618495088,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16100.0,0.0,0.0,16106.0,0.0,0.0,3,7,6.0,1,0.0 -6553,10017,1682.583381047865,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31880.0,99.0,0.0,34480.0,0.0,0.0,1,10,0.0,3,0.0 -6554,10018,2244.3244404912575,58.0,112,14740.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42509.65,0.0,22110.0,1,7,1.0,2,1.0 -6555,10019,2292.4776815900336,73.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14160.0,0.0,0.0,14226.0,0.0,0.0,3,1,3.0,1,0.0 -6556,10020,2529.3678696450543,40.0,111,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44496.85,0.0,45630.0,1,7,6.0,4,2.0 -6557,10021,3672.7274431704373,22.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21554.25,0.0,21810.0,3,9,7.0,1,1.0 -6558,10022,1918.1117686787602,67.0,111,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,38260.0,0.0,0.0,52797.1,0.0,14550.0,1,8,7.0,5,1.0 -6559,10025,3507.8951889101977,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21230.0,0.0,0.0,20829.1,0.0,0.0,1,9,7.0,3,0.0 -6560,10027,4131.035496796082,35.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,187.0,0.0,143171.0,0.0,180540.0,2,10,8.0,4,2.0 -6561,10028,3152.524227620716,49.0,112,50.0,62,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37616.1,0.0,39380.0,2,7,0.0,4,3.0 -6562,10029,2277.880171966629,45.0,112,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,52.0,0.0,61203.05,0.0,62520.0,2,10,1.0,4,2.0 -6563,10030,1846.9384900269363,54.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19972.3,0.0,20230.0,1,7,1.0,2,2.0 -6564,10031,5360.809557850722,23.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30988.75,0.0,30430.0,3,5,4.0,5,2.0 -6565,10032,2162.6951787946846,48.0,111,0.0,64,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,46292.2,0.0,41760.0,2,6,4.0,4,2.0 -6566,10033,1690.965596418021,39.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47154.55,0.0,49140.0,2,8,2.0,4,2.0 -6567,10034,1638.9963874008429,52.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,123.0,0.0,40988.65,0.0,43630.0,3,10,4.0,1,1.0 -6568,10036,3222.9703224809646,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32730.0,15.0,0.0,30125.85,0.0,0.0,1,9,7.0,3,0.0 -6569,10037,2612.196796452352,41.0,111,0.0,68,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32440.15,0.0,31170.0,3,8,7.0,4,3.0 -6570,10038,1873.2891571993578,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34550.0,278.0,0.0,35144.05,0.0,0.0,1,7,0.0,3,0.0 -6571,10039,921.1287178752167,43.0,120,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,13540.0,0.0,0.0,64142.35,0.0,33450.0,1,0,1.0,2,2.0 -6572,10040,2673.5375690978,66.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12070.0,0.0,0.0,80180.3,0.0,0.0,1,9,1.0,3,0.0 -6573,10041,2729.044887453408,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11080.0,0.0,0.0,14326.0,0.0,0.0,3,6,4.0,1,0.0 -6574,10043,2196.351563066034,46.0,112,2810.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,2130.0,0.0,0.0,16250.05,0.0,7590.0,3,6,0.0,2,1.0 -6575,10044,1633.6701544457776,71.0,111,0.0,77,3,3.0,5.0,3.0,0.0,0.0,0.0,29590.0,0.0,0.0,65680.95,0.0,36920.0,3,9,7.0,4,3.0 -6576,10045,3047.654197958497,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28460.0,0.0,0.0,26861.0,0.0,0.0,1,7,5.0,3,0.0 -6577,10047,3410.0171237917084,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18800.0,0.0,0.0,18579.0,0.0,0.0,3,10,8.0,1,0.0 -6578,10048,1999.9295975286575,42.0,112,0.0,33,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,81579.6,0.0,83210.0,2,10,0.0,4,2.0 -6579,10050,2750.6918816261937,42.0,120,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,56262.1,0.0,48030.0,2,0,0.0,4,2.0 -6580,10051,6327.838475746988,28.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46532.3,0.0,43020.0,3,10,8.0,4,2.0 -6581,10053,1668.4411461486543,50.0,400,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49028.45,0.0,30600.0,1,0,0.0,3,2.0 -6582,10054,6171.463410479574,82.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17520.0,0.0,0.0,18269.0,0.0,0.0,3,0,2.0,1,0.0 -6583,10055,1747.9163001642703,52.0,400,0.0,48,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,59.0,0.0,78458.75,0.0,86130.0,1,0,0.0,4,4.0 -6584,10056,2359.7094965763836,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22470.0,0.0,0.0,22323.7,0.0,0.0,1,8,0.0,3,0.0 -6585,10058,899.1566898042571,52.0,111,0.0,55,3,3.0,3.0,2.0,0.0,380.0,0.0,0.0,0.0,0.0,37930.45,3480.0,33810.0,3,9,7.0,4,3.0 -6586,10059,1258.3406820470482,41.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47735.1,0.0,48910.0,2,4,0.0,4,2.0 -6587,10062,3589.7320446262256,31.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,86977.65,0.0,91500.0,2,9,7.0,4,2.0 -6588,10063,1516.104398635898,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34500.0,0.0,0.0,43231.35,0.0,12680.0,1,6,5.0,3,0.0 -6589,10067,3766.7140177425563,91.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14360.0,0.0,0.0,14360.0,0.0,0.0,5,8,6.0,1,0.0 -6590,10069,2817.8154060739284,37.0,111,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41111.0,0.0,34120.0,1,9,7.0,4,2.0 -6591,10071,2895.1136386056132,27.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33011.9,490.0,33620.0,3,9,7.0,3,2.0 -6592,10072,1627.4702062217684,46.0,120,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40714.5,0.0,39640.0,2,0,0.0,4,2.0 -6593,10073,1961.222965917722,63.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21530.0,0.0,0.0,24234.1,0.0,0.0,1,6,4.0,1,0.0 -6594,10075,2945.3276236282773,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12240.0,0.0,0.0,12240.0,0.0,0.0,3,8,7.0,1,0.0 -6595,10079,1789.9866859615577,47.0,111,0.0,62,3,4.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,53792.15,0.0,53480.0,3,8,6.0,4,4.0 -6596,10082,4153.145616202285,35.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28511.7,0.0,31450.0,3,10,8.0,1,1.0 -6597,10083,2352.046528293971,34.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40902.45,0.0,41390.0,2,9,7.0,4,2.0 -6598,10086,2397.4678817413746,43.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60875.2,0.0,63990.0,2,10,8.0,4,2.0 -6599,10087,2290.8897723473356,65.0,111,11950.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14400.0,0.0,0.0,25516.35,0.0,0.0,3,7,5.0,3,0.0 -6600,10088,2069.4858596432537,43.0,111,380.0,63,1.0,1.0,1.0,1.0,0.0,3730.0,0.0,0.0,0.0,0.0,13924.0,1450.0,4430.0,3,7,6.0,1,1.0 -6601,10091,2450.00263857437,61.0,221,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,15480.0,0.0,0.0,33042.8,0.0,19480.0,1,1,2.0,4,2.0 -6602,10092,2616.491774988315,41.0,111,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,12866.0,0.0,0.0,3,6,4.0,1,0.0 -6603,10093,3436.929263800565,57.0,111,0.0,77,0.0,0.0,1.0,1.0,3310.0,0.0,0.0,4430.0,0.0,0.0,7701.65,0.0,0.0,5,9,7.0,1,0.0 -6604,10094,1162.6780572686614,70.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22240.0,0.0,7075.0,28203.15,0.0,0.0,1,7,6.0,3,0.0 -6605,10095,3721.665318647839,56.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34350.0,0.0,0.0,32818.8,0.0,0.0,3,10,8.0,3,0.0 -6606,10096,1326.4602599163009,69.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26320.0,0.0,0.0,29756.1,0.0,0.0,1,0,0.0,3,0.0 -6607,10098,1433.017845977776,29.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40446.15,0.0,39150.0,3,7,5.0,4,2.0 -6608,10100,2303.4372494739346,41.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18040.9,0.0,18610.0,3,8,0.0,1,1.0 -6609,10103,3507.69281111013,91.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,1440.0,7570.0,0.0,0.0,15024.0,0.0,0.0,5,9,7.0,1,0.0 -6610,10105,2023.1752585340987,55.0,111,0.0,35,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45241.6,0.0,40000.0,1,8,6.0,4,2.0 -6611,10107,1954.6106029381679,42.0,112,0.0,64,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24409.65,0.0,27090.0,3,8,0.0,4,1.0 -6612,10108,5067.627312830842,64.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,5660.0,12240.0,0.0,0.0,19040.0,0.0,0.0,3,1,2.0,3,0.0 -6613,10110,3409.958188275026,49.0,111,1310.0,85,0.0,0.0,1.0,1.0,0.0,740.0,0.0,0.0,0.0,0.0,23379.95,650.0,6570.0,3,9,7.0,1,0.0 -6614,10111,1518.011324615832,51.0,120,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11240.0,14.0,0.0,31085.0,0.0,0.0,1,0,3.0,3,1.0 -6615,10112,1689.355004026297,56.0,111,0.0,78,0.0,0.0,2.0,1.5,10010.0,0.0,0.0,14780.0,0.0,0.0,26766.0,0.0,0.0,3,8,7.0,3,0.0 -6616,10114,2537.9038629610127,29.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39708.0,0.0,41600.0,2,8,6.0,3,2.0 -6617,10115,4566.6360397790895,34.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38631.25,0.0,32160.0,2,8,0.0,4,2.0 -6618,10116,2441.9969969677236,54.0,400,0.0,69,2.0,1.0,2.0,1.5,0.0,0.0,0.0,980.0,0.0,0.0,17106.05,0.0,14870.0,1,0,0.0,2,2.0 -6619,10118,2033.6662342017469,49.0,112,0.0,43,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,57198.0,0.0,46600.0,3,8,0.0,4,2.0 -6620,10120,2716.5982484833344,46.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20066.45,0.0,21360.0,3,7,5.0,1,1.0 -6621,10121,3751.89473267099,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3123.0,0.0,0.0,3,8,7.0,1,0.0 -6622,10122,3507.010087888603,47.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23319.55,0.0,23500.0,2,9,7.0,2,1.0 -6623,10123,2460.595206291102,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36960.0,63.0,0.0,-0.0,0.0,0.0,1,10,8.0,1,0.0 -6624,10124,1974.2344564836255,33.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21241.1,0.0,24430.0,2,9,7.0,1,1.0 -6625,10125,1958.2401005621405,67.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30120.0,0.0,0.0,27857.8,0.0,0.0,1,7,0.0,1,0.0 -6626,10126,2164.1114768873367,36.0,120,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35422.55,0.0,30920.0,2,0,0.0,4,2.0 -6627,10127,2358.6551710211243,51.0,400,0.0,56,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43069.15,0.0,34480.0,1,0,0.0,4,3.0 -6628,10128,1144.8345297277322,29.0,300,1780.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28738.1,0.0,27180.0,3,0,0.0,3,2.0 -6629,10130,3545.4810549189083,79.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,1130.0,0.0,21030.0,0.0,0.0,22785.0,0.0,0.0,3,6,5.0,3,0.0 -6630,10131,1505.5522973485188,51.0,111,0.0,47,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,84124.3,0.0,91980.0,1,10,8.0,4,4.0 -6631,10132,2051.847669211402,47.0,111,13210.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,235.0,0.0,73158.15,0.0,72880.0,3,10,8.0,3,2.0 -6632,10133,1943.9741038210727,47.0,120,11470.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42296.6,0.0,33300.0,5,0,0.0,3,2.0 -6633,10134,2125.0088849517488,32.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39936.65,0.0,39660.0,2,8,7.0,4,2.0 -6634,10135,3201.072950026747,37.0,400,0.0,56,2.0,2.0,2.0,1.5,0.0,150.0,0.0,12710.0,0.0,0.0,30822.55,1730.0,7020.0,3,0,0.0,3,2.0 -6635,10136,3506.987520974085,60.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19310.0,0.0,0.0,18729.45,0.0,0.0,3,10,8.0,1,0.0 -6636,10138,2247.596569957268,39.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37013.15,130.0,34130.0,2,8,6.0,4,2.0 -6637,10143,1359.0091785034742,32.0,111,0.0,21,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,46149.9,0.0,37140.0,3,8,7.0,4,2.0 -6638,10144,1193.4566709991614,74.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31140.0,0.0,0.0,28851.4,0.0,50.0,1,8,0.0,3,0.0 -6639,10146,3858.7248925915737,83.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28230.0,0.0,0.0,26481.55,0.0,0.0,1,8,7.0,3,0.0 -6640,10148,2664.9122897027746,45.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19317.9,0.0,20350.0,3,10,8.0,1,1.0 -6641,10151,3414.910063075153,34.0,300,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31845.1,0.0,23470.0,3,0,0.0,4,1.0 -6642,10153,3033.138660503237,42.0,300,0.0,11,2.0,2.0,4.0,2.5,0.0,2970.0,0.0,0.0,0.0,0.0,12753.6,2290.0,0.0,1,0,0.0,4,2.0 -6643,10154,1526.8217748685518,59.0,112,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,3540.0,22590.0,0.0,0.0,42040.65,0.0,17120.0,1,7,0.0,5,1.0 -6644,10155,2801.6518640299973,72.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25500.0,0.0,0.0,24833.2,0.0,0.0,3,9,7.0,1,0.0 -6645,10156,3338.1156769654913,44.0,112,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25642.95,0.0,23210.0,5,10,4.0,4,2.0 -6646,10159,3229.427782743598,55.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24130.4,0.0,26810.0,2,6,5.0,1,1.0 -6647,10161,1298.120420616052,46.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29299.3,0.0,30240.0,2,7,5.0,2,1.0 -6648,10165,3158.7844215259615,68.0,211,0.0,72,0.0,0.0,3.0,2.0,8380.0,0.0,0.0,22910.0,35.0,0.0,38318.15,0.0,7510.0,2,1,2.0,4,0.0 -6649,10167,3077.319384516739,37.0,120,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24360.6,0.0,25490.0,4,0,0.0,1,1.0 -6650,10168,2524.4541579785796,76.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22330.0,0.0,0.0,21764.9,0.0,0.0,5,10,0.0,1,0.0 -6651,10169,3464.6260173703686,81.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35560.0,324.0,0.0,81735.85,0.0,0.0,1,10,8.0,3,0.0 -6652,10170,3606.7413561867525,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3770.0,0.0,0.0,4,8,7.0,1,0.0 -6653,10171,2039.9328514700705,66.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22060.0,0.0,0.0,28738.55,0.0,7420.0,3,7,5.0,3,1.0 -6654,10172,3147.7262546053707,50.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36351.45,0.0,38480.0,3,10,8.0,2,1.0 -6655,10174,3495.9145680148968,42.0,112,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,50759.25,0.0,45450.0,3,9,0.0,4,2.0 -6656,10175,4597.382077535662,38.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41966.7,0.0,42360.0,2,10,8.0,4,2.0 -6657,10176,2741.9309386296977,58.0,300,0.0,22,1.0,1.0,2.0,1.5,2970.0,0.0,0.0,8160.0,0.0,0.0,27221.6,0.0,0.0,2,0,0.0,3,1.0 -6658,10177,2473.7250816414503,39.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,78854.15,0.0,84890.0,2,10,8.0,3,2.0 -6659,10178,2280.1211603753723,38.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22097.1,0.0,20890.0,3,8,7.0,2,1.0 -6660,10181,3661.3130289286614,26.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,19.0,0.0,31480.0,0.0,32090.0,3,9,7.0,3,2.0 -6661,10182,1641.6691232195626,29.0,112,0.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,19943.9,0.0,0.0,2,7,1.0,4,2.0 -6662,10184,3779.894951085913,25.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20773.85,0.0,20950.0,3,9,7.0,1,1.0 -6663,10185,4921.796048322466,27.0,120,3850.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17340.0,0.0,0.0,29001.4,0.0,7380.0,1,0,3.0,4,1.0 -6664,10186,3010.0917285419005,53.0,112,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4196.0,0.0,92343.05,0.0,102730.0,2,8,0.0,1,1.0 -6665,10187,2641.9219246523453,86.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24420.0,0.0,0.0,23656.25,0.0,0.0,1,5,4.0,3,0.0 -6666,10188,1993.3646176458599,57.0,300,2120.0,21,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39752.6,0.0,18660.0,1,0,0.0,4,3.0 -6667,10191,1720.0426051483578,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26390.0,416.0,0.0,28200.15,0.0,0.0,1,7,5.0,3,0.0 -6668,10192,3622.778650430504,54.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40580.95,0.0,41320.0,1,5,0.0,3,2.0 -6669,10194,3043.1289858447763,26.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14476.45,0.0,15240.0,3,9,7.0,1,1.0 -6670,10195,2428.4158697992943,83.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26700.0,0.0,0.0,26193.25,0.0,0.0,3,10,0.0,3,0.0 -6671,10196,1263.2541756138464,50.0,111,10300.0,42,1.0,0.0,3.0,2.0,0.0,0.0,0.0,17530.0,0.0,0.0,36258.25,0.0,10280.0,2,7,5.0,4,1.0 -6672,10198,2728.510004282549,40.0,111,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,250.0,0.0,10456.75,0.0,12090.0,3,3,4.0,4,2.0 -6673,10200,3934.7840820933034,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14110.0,0.0,0.0,25691.0,0.0,11480.0,3,10,8.0,1,0.0 -6674,10201,3802.3435639441864,90.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17090.0,1069.0,0.0,17692.45,0.0,0.0,1,10,8.0,1,0.0 -6675,10202,2929.265517450269,29.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50358.65,0.0,50160.0,3,10,8.0,3,2.0 -6676,10203,2637.2953285803137,52.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11790.0,0.0,0.0,21012.05,0.0,9980.0,1,7,5.0,3,1.0 -6677,10204,2315.565635253388,29.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4739.45,0.0,5040.0,3,7,5.0,1,1.0 -6678,10206,2507.1791404431297,42.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14570.0,0.0,0.0,37356.0,0.0,24660.0,2,6,4.0,3,1.0 -6679,10207,8134.896331420028,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17083.0,0.0,17220.0,3,6,4.0,1,1.0 -6680,10208,2798.551282503897,24.0,111,0.0,84,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,9885.3,0.0,0.0,5,9,7.0,3,1.0 -6681,10209,1044.3631211950265,56.0,111,0.0,22,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,40437.3,0.0,19800.0,1,4,4.0,5,3.0 -6682,10212,1260.9089563456232,52.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36403.1,0.0,39460.0,2,4,0.0,3,2.0 -6683,10213,2122.2385838567816,78.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23550.0,0.0,0.0,22553.6,0.0,0.0,1,9,7.0,3,0.0 -6684,10217,1457.9236379195638,51.0,300,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59426.55,0.0,54570.0,1,0,0.0,3,2.0 -6685,10218,3598.608964213746,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16060.0,0.0,0.0,15850.05,0.0,0.0,3,8,7.0,1,0.0 -6686,10220,3345.8292786405723,38.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,15.0,0.0,10017.95,0.0,38220.0,3,9,7.0,3,2.0 -6687,10222,3208.537272804746,33.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,85933.75,0.0,91520.0,2,10,8.0,4,2.0 -6688,10223,2892.602926047823,43.0,112,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30017.7,0.0,21530.0,2,9,2.0,2,1.0 -6689,10228,4442.814833551176,82.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27800.0,0.0,0.0,26587.65,0.0,0.0,3,10,8.0,1,0.0 -6690,10229,2898.7673638592782,41.0,111,20760.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21021.0,0.0,0.0,2,7,6.0,4,1.0 -6691,10231,4171.33874083185,38.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,63272.15,0.0,65710.0,1,10,8.0,4,2.0 -6692,10232,2765.5131935442387,27.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10620.65,0.0,11010.0,2,10,4.0,3,2.0 -6693,10233,879.7039495231624,73.0,112,5480.0,71,1.0,0.0,3.0,2.0,0.0,0.0,0.0,12490.0,0.0,0.0,26405.65,0.0,7440.0,1,6,0.0,4,1.0 -6694,10234,3533.6622182102496,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15840.0,0.0,0.0,15440.8,0.0,0.0,1,6,5.0,1,0.0 -6695,10235,1385.4923918282943,42.0,111,0.0,67,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,49829.9,0.0,41130.0,2,9,7.0,4,2.0 -6696,10236,2576.3824216099706,41.0,111,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42947.95,0.0,45220.0,3,10,8.0,4,2.0 -6697,10240,8337.754402432149,48.0,111,0.0,22,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,219.0,0.0,106592.25,0.0,172490.0,1,10,8.0,4,1.0 -6698,10241,3464.620143631224,92.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24550.0,0.0,0.0,22549.7,0.0,0.0,3,9,7.0,1,0.0 -6699,10242,2003.9008902247986,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17360.0,0.0,0.0,16874.45,0.0,0.0,1,6,4.0,1,0.0 -6700,10243,5876.397288426843,46.0,112,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51235.3,0.0,52850.0,2,9,0.0,4,2.0 -6701,10244,2254.641415029622,61.0,300,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,531.0,0.0,8655.9,0.0,0.0,1,0,0.0,1,1.0 -6702,10245,3836.735932459701,94.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14010.0,0.0,0.0,14298.0,0.0,0.0,3,1,2.0,1,0.0 -6703,10249,3093.741333980841,83.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42410.0,4760.0,0.0,76065.4,0.0,0.0,1,10,8.0,3,0.0 -6704,10250,2683.870985651167,63.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20520.0,0.0,0.0,33387.45,0.0,0.0,1,8,7.0,3,0.0 -6705,10252,2163.2686370841984,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,77770.0,0.0,0.0,62840.6,0.0,0.0,3,6,4.0,3,0.0 -6706,10253,3489.3857132863723,89.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16320.0,0.0,0.0,15914.75,0.0,0.0,3,10,8.0,1,0.0 -6707,10254,2418.0996703827063,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26950.0,0.0,0.0,31668.5,0.0,1590.0,1,5,4.0,1,0.0 -6708,10255,2118.5619396813636,41.0,111,8130.0,43,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29750.15,0.0,13610.0,3,8,6.0,4,2.0 -6709,10256,2563.7877099153793,43.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,880.0,0.0,0.0,20.0,0.0,70379.85,1230.0,77840.0,2,9,7.0,3,2.0 -6710,10258,2529.344620151899,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11470.0,0.0,0.0,11568.45,0.0,0.0,3,7,5.0,1,0.0 -6711,10260,1684.465332839482,35.0,111,4210.0,85,1.0,0.0,4.0,2.1,3540.0,0.0,0.0,0.0,0.0,0.0,9143.45,0.0,1500.0,2,5,4.0,4,1.0 -6712,10262,1249.3668245068047,58.0,112,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,4100.0,0.0,0.0,33278.0,0.0,31800.0,1,9,0.0,3,1.0 -6713,10263,2654.8369260613895,79.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18230.0,0.0,0.0,17804.9,0.0,0.0,3,10,0.0,3,0.0 -6714,10264,832.4636374454715,49.0,111,240.0,62,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41017.05,0.0,41300.0,3,8,7.0,4,3.0 -6715,10265,6015.575253858333,34.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27725.7,0.0,29870.0,3,7,5.0,1,1.0 -6716,10267,3792.113966598364,47.0,111,5410.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35596.35,0.0,26280.0,1,6,5.0,3,2.0 -6717,10268,2895.4554160964435,45.0,111,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,10790.0,0.0,0.0,49728.65,0.0,40620.0,3,10,8.0,4,2.0 -6718,10269,3508.4048792528934,64.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10770.0,0.0,0.0,10621.15,0.0,0.0,3,8,0.0,1,0.0 -6719,10270,3104.824399177163,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18110.0,0.0,0.0,18245.75,0.0,0.0,1,9,3.0,3,0.0 -6720,10272,1407.5275024715438,62.0,111,0.0,74,2.0,2.0,3.0,2.0,0.0,0.0,0.0,49330.0,0.0,0.0,60814.85,0.0,19460.0,1,9,7.0,4,2.0 -6721,10274,1859.9645760936783,49.0,300,0.0,85,0.0,0.0,2.0,1.5,0.0,20.0,0.0,9250.0,0.0,0.0,10630.0,0.0,0.0,1,0,0.0,2,0.0 -6722,10276,2566.0025353601636,61.0,112,2150.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37070.0,0.0,0.0,34683.15,0.0,0.0,1,9,0.0,1,0.0 -6723,10277,3607.8401288776895,44.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,1640.0,0.0,0.0,0.0,0.0,15003.0,400.0,13070.0,5,9,7.0,1,1.0 -6724,10278,1779.241209302906,59.0,111,1790.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15490.0,122.0,0.0,19126.85,0.0,1150.0,1,7,5.0,2,1.0 -6725,10279,1441.0058218941322,58.0,111,3700.0,78,1.0,0.0,4.0,2.5,6340.0,0.0,0.0,27340.0,0.0,0.0,46474.75,0.0,11220.0,1,6,4.0,5,1.0 -6726,10284,4008.051357362967,22.0,111,0.0,84,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,13474.0,0.0,0.0,3,9,7.0,5,1.0 -6727,10285,3328.644109879555,64.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16490.0,0.0,0.0,24199.8,0.0,0.0,1,7,0.0,3,0.0 -6728,10286,2716.5382203462777,46.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,8.0,0.0,67363.55,0.0,68760.0,1,9,7.0,4,2.0 -6729,10287,3435.7321836314045,84.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23500.0,0.0,0.0,21967.3,0.0,0.0,1,10,8.0,1,0.0 -6730,10288,2601.076954883638,56.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,11420.0,0.0,0.0,13688.0,0.0,0.0,3,9,7.0,1,1.0 -6731,10289,3147.047448878299,47.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19224.85,150.0,13010.0,3,4,3.0,2,1.0 -6732,10290,1656.3713810998304,40.0,300,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11540.0,0.0,0.0,36087.35,0.0,22320.0,1,0,0.0,2,1.0 -6733,10291,3255.839758402495,93.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20500.0,0.0,0.0,18962.0,0.0,0.0,1,10,8.0,1,0.0 -6734,10292,2647.5824236336916,42.0,111,1290.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31468.65,0.0,29520.0,3,5,4.0,3,2.0 -6735,10296,1197.1330614562473,54.0,221,0.0,45,2.0,2.0,4.0,2.5,0.0,0.0,0.0,12270.0,0.0,0.0,49537.85,0.0,40110.0,1,1,3.0,4,2.0 -6736,10298,2601.44481276282,41.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38371.8,0.0,43400.0,2,8,7.0,1,1.0 -6737,10299,1310.8584597754511,64.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39440.0,0.0,0.0,35617.1,0.0,0.0,1,1,2.0,3,0.0 -6738,10302,1172.7110906432065,57.0,112,5600.0,78,1.0,0.0,3.0,2.0,8750.0,0.0,0.0,0.0,0.0,0.0,17861.0,0.0,0.0,3,7,1.0,4,1.0 -6739,10303,1340.7850822120233,57.0,300,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13093.1,0.0,13800.0,1,0,0.0,1,1.0 -6740,10304,1871.2316965221694,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19430.0,0.0,0.0,18852.25,0.0,0.0,1,7,2.0,3,0.0 -6741,10305,1774.8231039549867,50.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45529.5,0.0,50300.0,2,8,7.0,3,2.0 -6742,10306,1941.8303831435267,58.0,112,0.0,77,0.0,0.0,3.0,2.0,0.0,0.0,0.0,20700.0,61.0,0.0,28204.05,0.0,0.0,1,6,0.0,4,0.0 -6743,10310,2647.5616929532434,41.0,112,3050.0,48,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30374.0,0.0,28870.0,3,7,4.0,3,2.0 -6744,10311,2471.6532112802593,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36570.0,0.0,0.0,33033.75,0.0,0.0,1,10,8.0,3,0.0 -6745,10312,1543.6869045683427,31.0,211,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38735.35,0.0,41180.0,3,2,3.0,3,2.0 -6746,10314,3404.7499890856143,56.0,111,11350.0,64,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19347.5,0.0,760.0,3,9,7.0,4,2.0 -6747,10315,3118.0580814925315,47.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28533.65,0.0,30420.0,2,8,6.0,1,1.0 -6748,10316,1783.3962585030129,37.0,111,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31110.0,0.0,15800.0,3,9,7.0,2,1.0 -6749,10317,3635.5773315779725,53.0,400,0.0,52,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,10446.0,0.0,2450.0,3,0,0.0,1,1.0 -6750,10319,2670.667441341652,43.0,221,0.0,52,2.0,2.0,5.0,2.6,0.0,0.0,0.0,8920.0,0.0,0.0,43599.4,0.0,27790.0,2,1,2.0,4,2.0 -6751,10323,3171.9298882170933,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18760.0,137.0,0.0,18985.05,0.0,0.0,3,7,5.0,1,0.0 -6752,10324,3461.525036027886,80.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54660.0,0.0,0.0,51191.7,0.0,6170.0,1,10,8.0,3,0.0 -6753,10325,1255.9866414212038,46.0,400,7270.0,62,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35399.3,0.0,29520.0,2,0,0.0,4,3.0 -6754,10326,1859.669021921419,47.0,300,0.0,12,1.0,1.0,3.0,2.0,0.0,0.0,0.0,15390.0,0.0,0.0,40134.75,0.0,0.0,1,0,0.0,4,1.0 -6755,10327,1556.8316108440401,65.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18300.0,176.0,0.0,24984.4,0.0,0.0,1,9,0.0,3,0.0 -6756,10328,3549.8750799582544,60.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27500.0,0.0,0.0,25766.7,0.0,0.0,1,7,0.0,1,0.0 -6757,10329,1920.1490919729338,39.0,111,0.0,31,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,2616.0,0.0,100439.1,0.0,98790.0,2,10,8.0,4,2.0 -6758,10333,2398.4077870895553,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22850.0,855.0,0.0,44620.0,0.0,0.0,1,9,2.0,3,0.0 -6759,10334,2722.4466105113734,66.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,3720.0,0.0,0.0,15812.1,0.0,0.0,1,9,7.0,3,2.0 -6760,10335,3114.980468948214,93.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11040.0,0.0,0.0,11040.0,0.0,0.0,5,0,0.0,1,0.0 -6761,10336,3078.2652327484443,82.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1040.0,9490.0,0.0,0.0,12870.0,0.0,0.0,3,9,1.0,1,0.0 -6762,10337,1976.1611656852863,52.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,67576.0,0.0,73910.0,2,9,7.0,4,2.0 -6763,10339,2834.355387091012,84.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,1720.0,6600.0,0.0,0.0,7974.85,0.0,0.0,1,0,1.0,1,0.0 -6764,10340,2529.0302897551155,56.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30491.1,0.0,31530.0,3,8,6.0,3,1.0 -6765,10343,2136.4615530303513,47.0,300,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15029.65,0.0,15160.0,5,0,0.0,1,1.0 -6766,10344,2393.48278356596,73.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20810.0,0.0,0.0,20818.45,0.0,0.0,1,0,0.0,3,0.0 -6767,10347,1207.3762816043884,51.0,111,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39067.1,0.0,38070.0,2,8,7.0,4,2.0 -6768,10349,2094.6901137440914,38.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52265.25,0.0,51660.0,2,8,0.0,4,2.0 -6769,10351,3461.8864490662318,30.0,111,980.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24457.2,0.0,21970.0,3,8,7.0,3,2.0 -6770,10353,3548.434713424197,24.0,120,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36479.85,0.0,36500.0,3,0,3.0,3,2.0 -6771,10355,1562.235016355475,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17200.0,0.0,0.0,16742.9,0.0,0.0,1,9,7.0,3,0.0 -6772,10356,3278.7117885403586,52.0,111,0.0,63,3,2.0,4.0,2.5,0.0,230.0,0.0,0.0,0.0,0.0,25636.25,1750.0,23080.0,3,8,7.0,4,3.0 -6773,10359,2676.2917972800233,62.0,300,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11260.0,0.0,0.0,38477.7,0.0,0.0,1,0,0.0,3,1.0 -6774,10360,2946.0607449771305,56.0,400,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32909.6,0.0,35130.0,1,0,0.0,3,2.0 -6775,10363,925.4781543430653,49.0,211,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,26156.4,0.0,26410.0,3,3,4.0,4,2.0 -6776,10364,3232.25519483709,76.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19310.0,0.0,0.0,19205.75,0.0,0.0,1,0,0.0,3,0.0 -6777,10365,4042.496604205595,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4814.0,0.0,0.0,5,10,8.0,1,0.0 -6778,10366,3959.6775527136124,26.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5558.7,0.0,3790.0,5,10,8.0,1,1.0 -6779,10367,2367.5714078306873,39.0,212,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50469.05,0.0,43150.0,2,2,0.0,4,2.0 -6780,10368,1857.6485724062613,70.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24890.0,0.0,0.0,24555.95,0.0,0.0,3,0,0.0,3,0.0 -6781,10371,1088.7061513563467,53.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,820.0,0.0,0.0,0.0,0.0,34870.4,0.0,35250.0,1,9,7.0,4,2.0 -6782,10372,1143.0823040653177,42.0,111,11940.0,46,2.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,49795.15,0.0,23430.0,3,9,7.0,4,2.0 -6783,10373,2487.8079497991603,54.0,300,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,73.0,0.0,24323.4,0.0,26200.0,2,0,0.0,1,1.0 -6784,10374,2561.0814284002386,26.0,400,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28583.05,0.0,15700.0,2,0,0.0,4,2.0 -6785,10375,2287.938961396314,50.0,112,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40399.75,0.0,42900.0,3,10,1.0,4,2.0 -6786,10377,3375.4750812112748,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25830.0,0.0,0.0,25586.05,0.0,0.0,1,8,6.0,1,0.0 -6787,10379,1775.6097764413155,75.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63160.0,0.0,0.0,62998.45,0.0,0.0,5,6,0.0,3,0.0 -6788,10380,2026.6445694877216,60.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11580.0,0.0,0.0,117766.5,0.0,0.0,1,1,1.0,1,0.0 -6789,10381,2997.8288736824884,49.0,111,0.0,22,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46534.65,0.0,52730.0,2,9,7.0,4,3.0 -6790,10386,2848.437447464386,50.0,111,15330.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30185.55,0.0,13290.0,2,9,7.0,2,1.0 -6791,10388,2485.7067229697464,72.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17580.0,0.0,0.0,18363.95,0.0,0.0,1,9,0.0,1,0.0 -6792,10389,2607.0182176887447,56.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22622.95,0.0,23380.0,2,9,3.0,3,2.0 -6793,10390,2720.4615954494516,63.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,73290.0,0.0,0.0,68255.5,0.0,7360.0,3,10,8.0,3,1.0 -6794,10394,7321.064275222155,49.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13930.0,0.0,0.0,34230.1,0.0,22170.0,3,10,8.0,2,1.0 -6795,10395,3790.304561824213,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18770.0,0.0,0.0,17680.15,0.0,0.0,3,9,7.0,1,0.0 -6796,10396,1497.452342508214,51.0,111,0.0,56,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45447.45,0.0,48910.0,3,10,8.0,4,2.0 -6797,10398,2540.9129338063112,56.0,400,0.0,11,1.0,1.0,2.0,1.5,4780.0,0.0,0.0,12750.0,0.0,0.0,23625.3,0.0,0.0,1,0,0.0,2,1.0 -6798,10401,2629.809061479318,60.0,111,4560.0,78,1.0,1.0,6.0,3.5,0.0,1640.0,0.0,11050.0,0.0,0.0,54888.75,870.0,38440.0,1,8,7.0,4,1.0 -6799,10402,2858.3554196851196,86.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33260.0,0.0,0.0,30515.35,0.0,0.0,1,6,5.0,3,0.0 -6800,10404,1997.4064840743285,25.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47663.8,0.0,50990.0,2,7,5.0,3,2.0 -6801,10405,1889.3153182770468,38.0,120,3340.0,42,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43478.9,0.0,26260.0,2,0,0.0,4,2.0 -6802,10407,2761.718426062302,39.0,111,0.0,43,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36950.5,0.0,38750.0,1,8,6.0,4,2.0 -6803,10408,2250.091706432072,70.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30290.0,0.0,0.0,30420.6,0.0,0.0,1,0,0.0,3,0.0 -6804,10409,3917.0237584787496,81.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20090.0,0.0,0.0,30122.25,0.0,0.0,1,8,0.0,3,0.0 -6805,10412,3265.913552429865,44.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,27.0,0.0,38703.85,0.0,47230.0,2,10,8.0,1,1.0 -6806,10413,3625.7337976997733,30.0,111,2440.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36806.6,0.0,26480.0,3,9,7.0,4,2.0 -6807,10414,3516.128000021674,41.0,111,3960.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9613.75,0.0,390.0,3,10,8.0,1,1.0 -6808,10415,987.4047570243299,45.0,300,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48877.95,0.0,51370.0,1,0,0.0,3,2.0 -6809,10416,1803.5048781907612,55.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49188.35,0.0,51880.0,1,6,4.0,3,2.0 -6810,10418,3435.5491973951753,32.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39562.45,0.0,16480.0,3,9,7.0,4,2.0 -6811,10419,1227.5056618506385,57.0,111,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,38110.0,0.0,0.0,126541.9,0.0,61740.0,2,10,8.0,4,2.0 -6812,10420,3904.810154260871,43.0,111,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44335.9,0.0,42570.0,2,8,6.0,4,2.0 -6813,10422,1074.623686965167,54.0,111,2550.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27793.85,0.0,18580.0,3,7,5.0,2,2.0 -6814,10423,3636.0447915570453,25.0,111,60.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26584.55,0.0,27980.0,3,8,6.0,3,2.0 -6815,10424,2647.8378071504985,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44250.0,0.0,0.0,40507.4,0.0,0.0,1,9,7.0,3,0.0 -6816,10425,1841.892941067679,77.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22730.0,0.0,0.0,24833.95,0.0,0.0,5,5,4.0,3,0.0 -6817,10426,1178.3155109631753,62.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46710.0,73.0,0.0,46711.05,0.0,0.0,1,9,0.0,3,0.0 -6818,10428,3144.2454123823836,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21180.0,0.0,0.0,19684.15,0.0,0.0,3,10,8.0,3,0.0 -6819,10429,1947.3880272942113,45.0,111,0.0,64,2.0,2.0,4.0,2.5,0.0,0.0,0.0,8990.0,0.0,0.0,30662.6,0.0,19720.0,3,9,7.0,4,2.0 -6820,10430,1824.7803608144518,43.0,111,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35204.85,0.0,33030.0,2,6,4.0,4,2.0 -6821,10431,2800.971766315481,51.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19767.1,0.0,19830.0,2,10,8.0,2,2.0 -6822,10434,2488.576904809829,32.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,59.0,0.0,88208.8,0.0,85920.0,2,10,8.0,4,2.0 -6823,10435,1433.4395251877918,59.0,300,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19720.0,0.0,0.0,35379.55,0.0,16580.0,1,0,0.0,3,1.0 -6824,10436,2069.0744989815817,55.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,7920.0,0.0,0.0,23520.65,0.0,16400.0,2,4,4.0,3,1.0 -6825,10437,2990.3873347410113,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30740.0,0.0,0.0,27463.5,0.0,0.0,1,9,7.0,1,0.0 -6826,10438,2626.5940737542874,54.0,211,0.0,67,1.0,1.0,3.0,2.0,0.0,0.0,0.0,10000.0,0.0,0.0,32386.6,0.0,23750.0,5,3,3.0,4,1.0 -6827,10441,3700.541689451607,53.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,13960.0,400.0,13410.0,3,10,8.0,1,1.0 -6828,10442,3499.2091314652675,45.0,111,0.0,85,1.0,0.0,3.0,2.0,2940.0,0.0,0.0,3170.0,0.0,0.0,18952.0,0.0,12190.0,3,9,7.0,4,1.0 -6829,10443,1292.3578019173256,45.0,112,2760.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49566.0,0.0,45820.0,1,9,0.0,4,2.0 -6830,10444,2307.3544082302624,84.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33180.0,0.0,0.0,32159.05,0.0,0.0,1,2,3.0,3,0.0 -6831,10445,4241.959380033195,43.0,300,3070.0,69,2.0,0.0,2.0,1.5,0.0,3300.0,0.0,0.0,0.0,0.0,15380.0,200.0,2500.0,3,0,0.0,3,2.0 -6832,10446,2890.771829512205,82.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21120.0,0.0,0.0,20269.25,0.0,0.0,3,10,8.0,1,0.0 -6833,10448,2114.0004040876124,51.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26060.85,0.0,26620.0,1,8,0.0,1,1.0 -6834,10449,3067.205010968822,49.0,111,0.0,53,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,55063.75,0.0,60090.0,2,9,7.0,4,3.0 -6835,10450,2395.440485421081,81.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18970.0,0.0,0.0,18498.65,0.0,0.0,1,10,8.0,1,0.0 -6836,10454,2393.6904970469673,35.0,111,2100.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32879.4,0.0,30900.0,2,5,4.0,4,2.0 -6837,10455,1920.5381333435284,42.0,112,0.0,62,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,53588.0,0.0,51260.0,3,8,0.0,4,3.0 -6838,10457,2240.4423580082944,45.0,300,1620.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37045.1,0.0,33400.0,2,0,0.0,4,2.0 -6839,10458,3191.050171095006,57.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17330.0,0.0,0.0,16589.15,0.0,0.0,1,10,8.0,1,0.0 -6840,10459,2136.9622829110795,44.0,111,0.0,45,1.0,1.0,3.0,1.8,0.0,0.0,0.0,9790.0,0.0,0.0,37562.4,0.0,19740.0,1,6,4.0,2,1.0 -6841,10460,3567.36239868603,41.0,111,0.0,34,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,8.0,0.0,30530.55,0.0,29130.0,3,10,8.0,4,1.0 -6842,10462,2322.816448242535,49.0,111,0.0,56,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36099.5,0.0,35410.0,2,9,7.0,4,3.0 -6843,10463,5246.673362524719,20.0,111,0.0,67,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21888.0,0.0,22820.0,3,8,7.0,1,1.0 -6844,10465,2695.6053706448615,53.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13780.0,0.0,0.0,25907.2,0.0,13260.0,1,9,7.0,3,1.0 -6845,10469,3904.479298938231,25.0,221,740.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11725.0,0.0,11110.0,3,1,2.0,1,1.0 -6846,10473,1037.5258964859863,61.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43830.0,125.0,0.0,40362.7,0.0,0.0,1,8,2.0,3,0.0 -6847,10474,3348.815393963071,22.0,111,4150.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28077.0,0.0,24590.0,3,7,6.0,3,2.0 -6848,10475,3637.3431435007483,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3987.0,0.0,0.0,3,8,7.0,1,0.0 -6849,10476,2390.689477447362,65.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69010.0,97.0,0.0,61100.2,0.0,0.0,1,9,7.0,3,0.0 -6850,10477,1268.0109534123537,49.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28004.1,0.0,28170.0,2,9,7.0,1,1.0 -6851,10479,4202.20253556212,62.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19380.0,21.0,0.0,20317.45,0.0,0.0,1,1,1.0,1,0.0 -6852,10480,904.3314899173619,49.0,300,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48155.05,0.0,44780.0,1,0,0.0,4,2.0 -6853,10481,3514.8431260034627,22.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27534.0,0.0,30480.0,5,10,8.0,1,1.0 -6854,10484,2032.8141554493154,84.0,212,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25220.0,86.0,0.0,22879.65,0.0,0.0,1,1,0.0,1,0.0 -6855,10486,753.1163249129326,45.0,400,3870.0,64,2.0,1.0,9.0,4.4,0.0,0.0,0.0,0.0,0.0,0.0,44051.4,0.0,21160.0,3,0,0.0,4,2.0 -6856,10488,6624.045129652896,22.0,221,0.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34475.75,0.0,39870.0,3,1,3.0,3,2.0 -6857,10489,1949.830243160281,37.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,48.0,0.0,57453.8,0.0,56000.0,2,8,7.0,1,1.0 -6858,10490,2289.902982145855,46.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,37.0,75203.0,141228.55,0.0,63220.0,1,10,4.0,4,2.0 -6859,10491,3672.82691997482,29.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24843.7,0.0,27550.0,3,9,7.0,5,1.0 -6860,10492,1770.4038567777425,56.0,112,2140.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53286.1,0.0,53650.0,3,9,1.0,3,2.0 -6861,10493,1565.8342014094715,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18770.0,0.0,0.0,18257.15,0.0,0.0,1,6,4.0,1,0.0 -6862,10494,2590.3214127304236,86.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39810.0,4.0,0.0,40170.15,0.0,0.0,5,6,4.0,3,0.0 -6863,10495,4839.558683114459,39.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28100.85,0.0,29550.0,3,9,3.0,1,1.0 -6864,10496,2468.4177331812107,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26160.0,0.0,0.0,27022.45,0.0,0.0,1,8,7.0,3,0.0 -6865,10498,1933.1453500587081,58.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27980.0,14.0,0.0,53842.9,0.0,23970.0,1,7,6.0,3,1.0 -6866,10499,1500.4708333438211,43.0,300,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32035.7,0.0,0.0,2,0,0.0,1,1.0 -6867,10500,2659.730173370842,50.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,80739.85,0.0,88430.0,1,10,8.0,4,2.0 -6868,10501,1062.6146301746467,63.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27590.0,0.0,0.0,49893.75,0.0,0.0,1,3,4.0,3,0.0 -6869,10502,3376.7231280499636,32.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,41606.45,0.0,51600.0,3,10,8.0,1,1.0 -6870,10505,3435.7377690282615,59.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20350.0,0.0,0.0,18157.3,0.0,0.0,1,7,6.0,1,0.0 -6871,10510,3176.1847845361954,82.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,11020.0,0.0,0.0,15232.0,0.0,0.0,3,10,8.0,5,0.0 -6872,10512,2985.3011009167744,42.0,111,12140.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24734.1,0.0,10400.0,3,8,7.0,1,0.0 -6873,10513,4129.866053904747,22.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6651.0,0.0,5370.0,3,8,6.0,3,1.0 -6874,10516,3629.7007967496456,44.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42615.15,0.0,51230.0,3,10,8.0,2,1.0 -6875,10517,2932.7199066283165,83.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12360.0,0.0,0.0,12389.1,0.0,0.0,1,0,0.0,1,0.0 -6876,10518,2303.57315001942,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28420.0,0.0,0.0,27091.5,0.0,0.0,1,6,5.0,3,0.0 -6877,10520,1054.9725643884453,31.0,111,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,44153.5,0.0,35850.0,3,7,5.0,4,2.0 -6878,10521,3840.982197458508,42.0,221,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,7.0,0.0,55567.85,0.0,58180.0,1,1,3.0,4,2.0 -6879,10522,4097.286983441131,23.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22207.0,0.0,23860.0,5,6,5.0,3,1.0 -6880,10524,2406.7299985056543,26.0,211,0.0,64,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31960.45,0.0,25990.0,3,3,3.0,4,1.0 -6881,10525,2059.7916027611377,47.0,111,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43371.85,0.0,39440.0,2,9,7.0,2,1.0 -6882,10527,2878.367693551964,72.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33630.0,0.0,0.0,29173.6,0.0,0.0,1,9,7.0,1,0.0 -6883,10528,1877.7974923706827,32.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27246.25,0.0,24810.0,2,8,6.0,4,2.0 -6884,10531,1431.906477783617,58.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55306.65,0.0,60050.0,1,10,8.0,3,2.0 -6885,10532,1683.8705294379201,37.0,111,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32550.9,0.0,22550.0,5,8,6.0,4,1.0 -6886,10533,3040.7187919577545,28.0,120,0.0,85,0.0,0.0,1.0,1.0,3410.0,0.0,0.0,0.0,0.0,0.0,9101.9,0.0,5610.0,3,0,0.0,1,0.0 -6887,10534,1482.1283000017809,33.0,300,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47889.4,0.0,40520.0,2,0,0.0,4,2.0 -6888,10535,2989.9080364992697,57.0,112,870.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,14150.0,0.0,0.0,15186.75,0.0,0.0,2,9,3.0,4,1.0 -6889,10536,3407.399355270239,56.0,112,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,69968.1,0.0,73100.0,1,8,0.0,4,1.0 -6890,10537,3878.879527358093,38.0,221,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9931.3,0.0,0.0,2,1,2.0,1,1.0 -6891,10538,780.3875760225162,53.0,300,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,10710.0,216.0,0.0,65279.4,0.0,48710.0,1,0,0.0,4,2.0 -6892,10539,2600.9520592042763,66.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12436.55,0.0,13030.0,2,9,7.0,1,1.0 -6893,10540,3718.0051430977355,38.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23224.85,0.0,22410.0,3,8,7.0,2,1.0 -6894,10541,1200.8517458956815,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18610.0,0.0,0.0,18635.0,0.0,0.0,5,8,7.0,3,0.0 -6895,10542,3207.112810882364,61.0,112,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14040.0,0.0,0.0,26055.15,0.0,13240.0,1,10,4.0,3,1.0 -6896,10543,1747.222560488122,37.0,400,1060.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27755.05,0.0,19230.0,2,0,0.0,4,2.0 -6897,10545,2979.6988827971722,62.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2230.0,6460.0,0.0,0.0,8695.0,0.0,0.0,5,9,2.0,1,0.0 -6898,10546,2505.86141655209,86.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20760.0,0.0,0.0,20549.05,0.0,0.0,3,7,5.0,1,0.0 -6899,10547,2750.8932205052533,55.0,221,0.0,12,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28750.15,0.0,27850.0,1,1,3.0,3,2.0 -6900,10548,3221.7399573164034,25.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42012.6,0.0,46300.0,2,10,8.0,3,2.0 -6901,10549,1962.9140490726195,58.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,214.0,0.0,232265.0,0.0,237560.0,2,10,8.0,4,2.0 -6902,10551,2570.869532725585,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,66790.0,116.0,0.0,73966.2,0.0,0.0,1,9,7.0,3,0.0 -6903,10552,745.40848683712,50.0,112,0.0,69,2.0,1.0,6.0,3.1,0.0,0.0,0.0,9730.0,0.0,0.0,40159.4,0.0,21660.0,2,5,0.0,4,2.0 -6904,10554,3033.1911630426052,41.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38397.15,0.0,39020.0,2,10,8.0,4,2.0 -6905,10556,5039.4359310604,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48070.0,0.0,0.0,48601.45,0.0,0.0,1,9,1.0,3,0.0 -6906,10557,3942.6119157141193,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6116.65,0.0,120.0,5,9,7.0,1,0.0 -6907,10558,2810.707665325193,78.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11340.0,0.0,0.0,11385.0,0.0,0.0,5,7,6.0,1,0.0 -6908,10559,1460.0871407028915,67.0,112,12110.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55260.0,244.0,0.0,57902.45,0.0,0.0,1,10,0.0,3,0.0 -6909,10560,2958.5524522985247,37.0,111,0.0,85,0.0,0.0,2.0,1.3,8380.0,0.0,0.0,0.0,0.0,0.0,14498.95,0.0,0.0,3,8,6.0,2,0.0 -6910,10561,3409.482288058001,29.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35211.3,0.0,21410.0,2,8,0.0,4,2.0 -6911,10562,2232.9197128648,77.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22230.0,0.0,0.0,21126.8,0.0,0.0,1,0,0.0,3,0.0 -6912,10568,1065.2171140536445,49.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57901.05,0.0,59440.0,3,7,5.0,3,2.0 -6913,10571,1954.4349271058313,31.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57038.2,0.0,47980.0,2,7,0.0,4,2.0 -6914,10572,3375.491144840095,54.0,112,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25035.2,0.0,27020.0,1,10,3.0,1,1.0 -6915,10573,4133.45888804377,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4823.0,0.0,0.0,3,8,7.0,1,0.0 -6916,10575,1225.5969830611773,61.0,111,3690.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,94780.0,140.0,0.0,58879.7,0.0,320.0,1,9,7.0,3,0.0 -6917,10578,3811.3138938017223,27.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33386.0,0.0,35780.0,1,8,7.0,1,1.0 -6918,10579,3597.0448940404985,47.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,8190.0,0.0,0.0,29997.35,0.0,20600.0,2,9,7.0,2,1.0 -6919,10581,2982.7407715537583,25.0,111,7550.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24540.0,0.0,16870.0,3,9,7.0,3,2.0 -6920,10583,1308.6859895037176,58.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,320.65,0.0,0.0,1,4,4.0,1,0.0 -6921,10584,2539.482633768307,51.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,44.0,0.0,48629.35,0.0,31200.0,1,9,7.0,2,1.0 -6922,10585,3796.0987420110937,91.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13200.0,0.0,0.0,12882.25,0.0,0.0,1,9,7.0,1,0.0 -6923,10586,2381.5260475979107,50.0,111,4610.0,52,1.0,0.0,1.0,1.0,1000.0,0.0,0.0,2990.0,0.0,0.0,12625.6,0.0,1500.0,3,8,7.0,1,1.0 -6924,10587,3916.673623860374,32.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18928.9,0.0,20240.0,3,10,8.0,1,1.0 -6925,10589,3054.1032169641667,45.0,111,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,61624.25,0.0,64360.0,5,10,8.0,4,2.0 -6926,10590,2910.20461045813,39.0,112,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,177.0,0.0,4858.35,0.0,0.0,5,7,1.0,1,1.0 -6927,10591,2452.172309769958,29.0,112,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30372.1,0.0,22980.0,3,9,0.0,4,1.0 -6928,10596,2826.513028543269,38.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,18741.6,880.0,15190.0,3,7,5.0,2,1.0 -6929,10598,2990.925492006226,43.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,54.0,0.0,32793.0,0.0,31120.0,3,10,8.0,1,1.0 -6930,10600,2574.7114866784304,43.0,400,0.0,42,1.0,1.0,4.0,2.1,0.0,2370.0,0.0,0.0,0.0,0.0,12524.9,0.0,0.0,5,0,0.0,2,1.0 -6931,10601,996.745251226975,55.0,112,2090.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,83.0,0.0,66379.2,0.0,59570.0,1,9,0.0,5,3.0 -6932,10602,3419.9590626154695,61.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,7530.0,0.0,0.0,23196.5,0.0,17140.0,3,10,8.0,1,1.0 -6933,10603,1891.7105649916878,27.0,111,3130.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39244.4,0.0,31190.0,2,8,6.0,4,2.0 -6934,10604,2512.5532045572418,80.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,1650.0,11020.0,0.0,0.0,11695.0,0.0,0.0,1,9,0.0,1,0.0 -6935,10605,3289.7405509593564,81.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17700.0,0.0,0.0,19679.85,0.0,0.0,1,0,0.0,3,0.0 -6936,10607,2853.3844754686866,79.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11840.0,0.0,0.0,11886.0,0.0,0.0,5,0,0.0,1,0.0 -6937,10608,2685.382247581698,38.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40133.7,0.0,30280.0,2,6,0.0,4,2.0 -6938,10609,2928.128989053381,46.0,300,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18432.85,0.0,20130.0,2,0,0.0,1,1.0 -6939,10611,3785.6956963638545,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9534.0,0.0,1730.0,3,9,7.0,1,0.0 -6940,10612,2265.2859938088654,77.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17500.0,0.0,0.0,17500.0,0.0,0.0,3,6,0.0,3,0.0 -6941,10613,3917.8080096247027,77.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15440.0,0.0,0.0,15343.85,0.0,0.0,1,1,1.0,1,0.0 -6942,10614,1579.8018364127242,55.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33708.9,0.0,43150.0,1,10,2.0,3,2.0 -6943,10619,3252.6624321174186,37.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25483.35,0.0,26840.0,3,8,6.0,1,1.0 -6944,10621,2919.900587448948,66.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,90400.0,0.0,0.0,70205.35,0.0,0.0,1,10,0.0,3,0.0 -6945,10623,2294.2574670197764,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,53830.0,0.0,0.0,45672.4,0.0,0.0,1,8,7.0,1,0.0 -6946,10624,2143.904456709013,52.0,221,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,57473.9,0.0,24310.0,2,1,2.0,4,2.0 -6947,10626,3126.1728023820597,25.0,111,2320.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26119.0,0.0,24260.0,3,8,6.0,3,2.0 -6948,10627,2034.386338686394,54.0,221,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2489.5,0.0,0.0,1,1,2.0,1,1.0 -6949,10628,3116.925007170509,38.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12914.0,0.0,12810.0,5,10,8.0,1,1.0 -6950,10631,6596.108903004372,41.0,112,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,74639.8,0.0,85420.0,2,9,2.0,4,2.0 -6951,10632,2439.525072671846,58.0,221,2040.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17500.0,0.0,0.0,26994.8,0.0,8220.0,3,1,2.0,3,1.0 -6952,10633,2708.791247216397,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9420.0,0.0,0.0,16863.0,0.0,0.0,5,9,7.0,1,0.0 -6953,10634,2889.7832828617047,54.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25166.45,0.0,27110.0,1,9,7.0,1,1.0 -6954,10636,2938.31973788655,35.0,111,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44091.55,0.0,46720.0,3,10,8.0,4,2.0 -6955,10637,2092.7394932657044,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17470.0,0.0,0.0,16634.1,0.0,20.0,1,7,5.0,1,0.0 -6956,10641,3426.862538553863,36.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34223.6,0.0,33180.0,1,9,7.0,3,2.0 -6957,10642,3330.3247144373195,33.0,221,0.0,22,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22545.55,0.0,0.0,3,1,2.0,2,1.0 -6958,10643,3847.1325127351056,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50350.0,0.0,0.0,43864.15,0.0,0.0,2,9,7.0,3,0.0 -6959,10644,4332.103958712776,45.0,120,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,58369.0,0.0,53950.0,2,0,0.0,4,2.0 -6960,10645,3251.782504293308,46.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23617.35,0.0,24680.0,2,10,8.0,1,1.0 -6961,10647,2069.0242155856263,40.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53354.85,0.0,46560.0,2,10,1.0,4,2.0 -6962,10649,2218.086050066129,55.0,111,950.0,52,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,10598.55,1350.0,7280.0,3,6,4.0,1,1.0 -6963,10650,3416.36210189117,32.0,111,2560.0,52,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,38260.7,0.0,23730.0,3,8,7.0,4,2.0 -6964,10651,3223.1859615505077,22.0,111,0.0,68,2.0,2.0,3.0,1.8,0.0,230.0,0.0,0.0,0.0,0.0,28663.4,610.0,23820.0,3,9,7.0,4,2.0 -6965,10652,2530.2601443610893,46.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35503.35,0.0,39480.0,2,10,8.0,2,2.0 -6966,10653,3322.1524226992933,81.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9170.0,0.0,0.0,9999.8,0.0,0.0,1,7,1.0,1,0.0 -6967,10658,1544.4492870033378,59.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21700.0,0.0,0.0,25628.75,0.0,3710.0,1,0,0.0,3,0.0 -6968,10659,5482.0367978043,71.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47690.0,0.0,0.0,49746.65,0.0,0.0,1,0,1.0,3,0.0 -6969,10660,2452.5823415230225,45.0,112,0.0,52,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40727.5,0.0,40480.0,2,8,1.0,4,3.0 -6970,10661,2751.3017171820206,54.0,221,0.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21531.2,0.0,24500.0,1,1,2.0,3,2.0 -6971,10662,3237.4876222119015,27.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47364.75,0.0,42480.0,2,10,8.0,4,2.0 -6972,10663,2599.627579626892,61.0,111,0.0,86,0.0,1.0,1.0,1.0,0.0,0.0,0.0,15750.0,0.0,0.0,31048.0,0.0,0.0,2,5,4.0,1,0.0 -6973,10664,4464.152416365964,84.0,221,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15300.0,0.0,0.0,15785.25,0.0,0.0,1,1,1.0,3,0.0 -6974,10665,3517.3464771348426,28.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34370.0,0.0,36200.0,3,9,7.0,3,2.0 -6975,10666,3265.7958841214713,78.0,112,0.0,64,1.0,0.0,2.0,1.5,0.0,0.0,0.0,20060.0,0.0,0.0,26009.85,0.0,6100.0,3,9,1.0,3,1.0 -6976,10667,1785.5057510097402,39.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,270.0,0.0,0.0,0.0,0.0,22071.45,1250.0,14100.0,3,7,6.0,2,1.0 -6977,10668,2407.731207362475,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10470.0,0.0,0.0,11630.0,0.0,0.0,3,3,4.0,1,0.0 -6978,10669,3021.6910441072932,34.0,111,0.0,55,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,11579.6,0.0,0.0,3,9,7.0,4,2.0 -6979,10673,2740.4029222977333,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28790.0,0.0,0.0,27539.05,0.0,0.0,3,10,8.0,3,0.0 -6980,10677,2124.1393219197957,43.0,111,0.0,48,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27219.35,0.0,22240.0,3,5,4.0,2,1.0 -6981,10678,3253.6413378536186,26.0,111,9720.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12987.0,0.0,1720.0,3,8,6.0,1,0.0 -6982,10679,2220.1726059202183,42.0,221,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40962.5,0.0,39760.0,1,1,1.0,4,2.0 -6983,10680,2592.710592280924,59.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,4270.0,0.0,0.0,26160.75,0.0,22980.0,3,9,7.0,2,2.0 -6984,10682,2926.608091029373,65.0,111,5110.0,68,1.0,0.0,2.0,1.5,0.0,0.0,0.0,15490.0,0.0,0.0,21240.25,0.0,630.0,3,9,7.0,2,1.0 -6985,10683,1347.837575088553,66.0,111,0.0,22,1.0,0.0,2.0,1.5,0.0,0.0,0.0,20360.0,0.0,0.0,20442.55,0.0,0.0,3,6,4.0,3,1.0 -6986,10684,1658.6856793372342,87.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22560.0,0.0,0.0,21796.9,0.0,0.0,1,0,0.0,1,0.0 -6987,10685,1976.1907907892326,40.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,46.0,0.0,122650.0,0.0,120640.0,1,9,7.0,4,2.0 -6988,10687,2332.672848451324,46.0,120,1860.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11367.95,0.0,9370.0,1,0,0.0,1,1.0 -6989,10688,938.3314612793471,53.0,111,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,8770.0,0.0,0.0,24445.0,0.0,1300.0,5,8,7.0,2,1.0 -6990,10693,2687.792280004802,34.0,300,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35483.45,0.0,32850.0,2,0,0.0,4,2.0 -6991,10694,2326.928231277045,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29630.0,0.0,0.0,28492.0,0.0,0.0,1,10,8.0,1,0.0 -6992,10695,1154.8540980796793,57.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,5800.0,1746.0,0.0,65522.7,0.0,52130.0,1,10,8.0,2,1.0 -6993,10697,2505.2041759774947,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45150.0,0.0,0.0,41653.9,0.0,0.0,1,10,8.0,3,0.0 -6994,10699,1436.493680190263,48.0,111,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,9.0,0.0,66302.65,0.0,67940.0,2,8,6.0,4,3.0 -6995,10700,2087.8303409855193,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24480.0,0.0,0.0,23619.15,0.0,0.0,1,10,8.0,3,0.0 -6996,10701,2398.4123739396505,25.0,111,1040.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27300.5,150.0,22010.0,3,8,7.0,4,2.0 -6997,10706,1817.115824799345,46.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,28664.6,750.0,25510.0,3,9,7.0,4,2.0 -6998,10707,2856.425722746117,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22840.0,0.0,0.0,21220.75,0.0,0.0,3,9,7.0,1,0.0 -6999,10708,3044.1336340197986,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23410.0,0.0,0.0,22602.2,0.0,0.0,3,10,8.0,1,0.0 -7000,10709,2632.524393931958,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,7260.0,1530.0,0.0,0.0,9990.0,0.0,0.0,3,9,7.0,1,0.0 -7001,10710,1575.8566351715626,57.0,111,28620.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,42.0,0.0,45916.9,0.0,20030.0,1,9,7.0,3,1.0 -7002,10712,1621.322007235495,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18550.0,81.0,0.0,34423.95,0.0,16610.0,1,8,0.0,3,0.0 -7003,10714,1619.4463977387347,68.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,2980.0,10940.0,0.0,0.0,13696.4,0.0,0.0,1,9,7.0,3,0.0 -7004,10715,2778.7237745320353,43.0,120,0.0,55,1.0,1.0,5.0,2.4,0.0,380.0,0.0,0.0,0.0,0.0,26878.3,1680.0,14410.0,3,0,2.0,4,1.0 -7005,10716,1649.8521307129506,47.0,111,10080.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,58190.0,0.0,0.0,95241.05,0.0,29050.0,2,9,7.0,4,2.0 -7006,10718,6958.611101604077,30.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32512.0,0.0,33860.0,3,10,8.0,3,2.0 -7007,10721,1056.0722904938775,23.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16352.0,0.0,17140.0,3,0,0.0,1,1.0 -7008,10722,2043.7689204069338,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37210.0,73.0,0.0,44615.25,0.0,8000.0,1,3,4.0,1,0.0 -7009,10723,3773.016051175211,40.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52039.1,0.0,46620.0,2,9,7.0,4,2.0 -7010,10724,2847.3233315257,46.0,112,0.0,85,0.0,0.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,11450.0,0.0,0.0,3,8,1.0,1,0.0 -7011,10725,3772.0844686402424,44.0,112,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,69209.3,0.0,0.0,2,7,0.0,4,2.0 -7012,10727,2227.005760728286,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30730.0,0.0,0.0,29211.8,0.0,0.0,3,10,4.0,3,0.0 -7013,10728,5243.244608393735,34.0,111,0.0,62,1.0,1.0,5.0,2.4,0.0,380.0,0.0,0.0,0.0,0.0,20073.65,3050.0,10950.0,3,6,5.0,4,1.0 -7014,10729,2804.5052939457755,49.0,111,0.0,45,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,28438.65,0.0,29650.0,3,6,5.0,4,2.0 -7015,10731,1638.6926509920397,69.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34640.0,0.0,0.0,33484.25,0.0,0.0,1,0,1.0,3,0.0 -7016,10732,2327.4461001806017,32.0,111,0.0,67,1.0,1.0,1.0,1.0,5070.0,0.0,0.0,0.0,0.0,0.0,15378.0,0.0,7620.0,3,6,4.0,1,1.0 -7017,10733,4661.924042315237,55.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24744.4,0.0,25730.0,2,10,8.0,2,1.0 -7018,10734,1912.21920084216,32.0,300,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43002.55,0.0,41850.0,2,0,0.0,4,2.0 -7019,10735,2997.4749600467662,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15850.0,0.0,0.0,14603.7,0.0,0.0,1,9,7.0,1,0.0 -7020,10736,2882.5907659717336,48.0,221,21150.0,63,2.0,0.0,2.0,1.5,0.0,290.0,0.0,0.0,0.0,0.0,23275.1,620.0,1420.0,3,1,3.0,3,2.0 -7021,10737,3309.1218790938797,24.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16481.0,0.0,15250.0,3,7,0.0,1,1.0 -7022,10738,4147.7004501502815,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18080.0,0.0,0.0,17743.1,0.0,0.0,3,9,7.0,1,0.0 -7023,10741,1576.8155274416085,35.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29853.95,0.0,31240.0,3,8,6.0,3,2.0 -7024,10743,1558.2608497929202,70.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36440.0,0.0,0.0,35919.65,0.0,0.0,1,0,0.0,3,0.0 -7025,10745,3204.497771717296,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13060.0,0.0,0.0,13014.7,0.0,0.0,1,9,7.0,1,0.0 -7026,10749,1938.0431563182358,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24600.0,0.0,0.0,23884.2,0.0,0.0,1,4,0.0,3,0.0 -7027,10750,2618.3231220245575,61.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28301.05,0.0,31360.0,3,10,8.0,1,1.0 -7028,10751,3753.252497787213,81.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36250.0,0.0,0.0,38560.2,0.0,0.0,1,8,7.0,1,0.0 -7029,10752,4129.341179309842,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6440.0,0.0,0.0,3,7,5.0,1,0.0 -7030,10753,2630.1966171353574,29.0,111,12400.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,3620.0,0.0,0.0,36324.45,0.0,21980.0,3,10,8.0,2,2.0 -7031,10754,4474.113491092262,57.0,400,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,155.0,0.0,65256.25,0.0,64870.0,1,0,0.0,3,2.0 -7032,10756,3836.287012635887,53.0,112,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,29354.3,0.0,31670.0,1,7,0.0,4,2.0 -7033,10757,3697.458355964397,28.0,111,0.0,65,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28695.0,450.0,18610.0,3,8,7.0,4,1.0 -7034,10758,1739.1742944744606,42.0,111,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45031.4,0.0,36100.0,2,7,5.0,4,2.0 -7035,10759,2924.5265804445435,41.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43027.75,0.0,42840.0,2,10,8.0,4,2.0 -7036,10760,2316.0435519786665,52.0,111,0.0,43,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39972.75,0.0,4350.0,3,9,7.0,4,2.0 -7037,10762,1951.1306016012743,76.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,49670.0,0.0,0.0,39796.65,0.0,0.0,1,8,7.0,1,0.0 -7038,10763,2720.652263117299,37.0,111,1000.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,18134.3,0.0,17700.0,3,9,7.0,1,1.0 -7039,10764,3617.635073497631,37.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47787.35,0.0,36170.0,2,10,8.0,4,2.0 -7040,10765,1986.8141182463764,58.0,400,14200.0,69,1.0,1.0,2.0,1.5,0.0,0.0,0.0,110.0,0.0,0.0,26227.55,0.0,11630.0,1,0,0.0,3,1.0 -7041,10766,2602.633411864692,33.0,112,5930.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35622.95,0.0,24020.0,2,7,0.0,4,2.0 -7042,10768,3960.671545233935,56.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,7600.0,0.0,2050.0,0.0,0.0,33791.5,0.0,26750.0,1,9,7.0,2,1.0 -7043,10770,3546.4380035012146,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10310.0,0.0,0.0,13486.0,0.0,0.0,3,9,7.0,1,0.0 -7044,10771,1718.2003553075501,50.0,112,0.0,64,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,40581.5,0.0,34520.0,2,6,0.0,4,2.0 -7045,10772,1068.5499076834958,56.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,2920.0,0.0,0.0,60360.7,0.0,60180.0,1,7,6.0,4,2.0 -7046,10773,2980.9419541957323,87.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16070.0,0.0,0.0,15988.85,0.0,0.0,3,8,7.0,1,0.0 -7047,10774,1967.4412910331587,57.0,112,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23910.0,162.0,0.0,55552.55,0.0,38160.0,1,10,0.0,3,1.0 -7048,10776,1627.7970237142742,83.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44160.0,275.0,0.0,42931.1,0.0,0.0,1,6,4.0,3,0.0 -7049,10778,2865.8888850239373,32.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40609.25,0.0,45810.0,3,6,0.0,3,2.0 -7050,10779,3385.48975252197,61.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32512.75,0.0,37390.0,1,9,7.0,3,2.0 -7051,10780,1296.8690036360756,52.0,111,0.0,56,1.0,1.0,5.0,2.8,0.0,0.0,0.0,28760.0,377.0,0.0,44943.85,0.0,10620.0,1,9,7.0,5,1.0 -7052,10781,3079.4541736355254,35.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13439.15,0.0,12780.0,3,8,7.0,1,1.0 -7053,10783,1870.515821120104,37.0,400,0.0,69,1.0,1.0,2.0,1.5,0.0,230.0,0.0,0.0,0.0,0.0,20197.95,2260.0,13540.0,3,0,0.0,2,1.0 -7054,10785,1030.504253771836,46.0,112,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,327.0,0.0,30599.6,0.0,31310.0,1,10,0.0,1,1.0 -7055,10786,978.2303834540382,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34970.0,0.0,0.0,36247.0,0.0,0.0,1,9,7.0,3,0.0 -7056,10787,3826.6008324350587,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14140.0,0.0,0.0,15363.0,0.0,0.0,3,9,7.0,1,0.0 -7057,10789,1900.8372615335522,38.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48275.4,0.0,49140.0,2,7,0.0,4,2.0 -7058,10792,2162.7919094376325,64.0,400,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19520.0,0.0,0.0,24070.6,0.0,5250.0,1,0,0.0,3,1.0 -7059,10793,1027.9735512065647,41.0,111,0.0,68,1.0,1.0,6.0,2.7,0.0,1040.0,0.0,0.0,0.0,0.0,27500.0,1590.0,6700.0,3,7,5.0,2,1.0 -7060,10794,2553.610263179349,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35660.0,0.0,0.0,32278.65,0.0,0.0,1,10,8.0,3,0.0 -7061,10795,3088.0402163489325,38.0,300,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32368.45,0.0,32240.0,3,0,0.0,4,2.0 -7062,10796,2318.8059426805953,70.0,112,0.0,31,1.0,0.0,1.0,1.0,0.0,0.0,0.0,24750.0,166.0,0.0,38904.35,0.0,740.0,1,10,0.0,1,1.0 -7063,10799,1186.4523243959807,58.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36816.25,0.0,39390.0,1,7,0.0,3,2.0 -7064,10801,2354.944540776386,52.0,111,0.0,62,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40774.4,0.0,41730.0,1,8,7.0,4,4.0 -7065,10802,2901.83460985693,52.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24218.2,0.0,27470.0,3,10,8.0,1,1.0 -7066,10806,3560.3768318047382,44.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,17.0,0.0,38199.45,0.0,37800.0,2,8,6.0,4,2.0 -7067,10807,2128.379135984138,21.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13843.0,0.0,13030.0,3,0,0.0,1,1.0 -7068,10808,3041.8792948045566,48.0,111,0.0,85,1.0,0.0,4.0,2.3,17230.0,0.0,0.0,1470.0,0.0,0.0,26058.0,0.0,0.0,3,4,4.0,4,1.0 -7069,10809,3024.817001645923,36.0,112,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,57.0,0.0,79232.45,0.0,21630.0,3,6,0.0,4,2.0 -7070,10811,5998.472863836702,56.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24911.65,0.0,0.0,1,9,2.0,2,1.0 -7071,10813,2426.007097196779,31.0,300,9370.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32138.7,0.0,19600.0,3,0,0.0,4,2.0 -7072,10814,2374.287809522051,90.0,300,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17140.0,0.0,0.0,32951.8,0.0,16370.0,1,0,0.0,4,1.0 -7073,10815,2758.690274289545,50.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,69476.2,0.0,65180.0,1,9,7.0,4,2.0 -7074,10816,582.6785980153381,45.0,300,7880.0,85,2.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,27946.8,0.0,9320.0,2,0,0.0,2,2.0 -7075,10817,2183.513939839021,64.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24750.0,0.0,0.0,27935.75,0.0,4200.0,3,6,4.0,3,1.0 -7076,10820,4488.940916049858,28.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30737.35,0.0,33800.0,2,10,8.0,1,1.0 -7077,10821,2983.4859176652644,53.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31286.1,0.0,32120.0,1,7,0.0,3,2.0 -7078,10824,2246.9814393254055,49.0,111,0.0,38,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,62.0,0.0,32976.35,0.0,26730.0,3,10,8.0,4,1.0 -7079,10825,6118.58833191519,79.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21360.0,0.0,0.0,21611.9,0.0,1100.0,1,9,1.0,3,0.0 -7080,10826,3023.1720042490224,41.0,111,0.0,43,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,64510.4,0.0,61510.0,2,10,8.0,4,2.0 -7081,10827,1467.8299423769597,46.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,250.0,0.0,0.0,38068.65,0.0,40860.0,1,8,1.0,4,2.0 -7082,10828,3673.8992347020453,29.0,111,0.0,64,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,10,8.0,1,1.0 -7083,10829,3452.734782643968,77.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17160.0,0.0,0.0,16669.15,0.0,0.0,1,8,7.0,1,0.0 -7084,10831,2989.6814853843075,80.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,840.0,7960.0,0.0,0.0,11316.25,0.0,0.0,3,9,0.0,1,0.0 -7085,10832,2723.965466969233,86.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16490.0,0.0,0.0,16450.85,0.0,0.0,3,6,4.0,1,0.0 -7086,10833,4319.131410581207,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17830.0,0.0,0.0,17288.55,0.0,0.0,1,9,7.0,1,0.0 -7087,10834,3167.3820201519784,31.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57317.8,0.0,57920.0,2,8,0.0,4,2.0 -7088,10835,3130.1464466648204,27.0,300,3680.0,64,1.0,1.0,2.0,1.5,0.0,3390.0,0.0,0.0,0.0,0.0,33048.6,0.0,22400.0,3,0,0.0,3,1.0 -7089,10836,2510.282556151091,50.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16187.0,0.0,15840.0,2,9,3.0,2,1.0 -7090,10838,1276.7813351753075,59.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31600.0,89.0,0.0,31072.65,0.0,0.0,3,0,0.0,3,0.0 -7091,10839,3613.6910176605543,25.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25653.55,0.0,23840.0,3,8,6.0,1,1.0 -7092,10840,2787.7499084316005,38.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58136.95,0.0,59200.0,2,10,4.0,4,2.0 -7093,10846,2653.2446656588836,34.0,120,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,120.0,0.0,49065.35,0.0,48250.0,2,0,2.0,4,2.0 -7094,10847,3076.5823354819568,55.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14808.15,0.0,15460.0,3,10,8.0,1,1.0 -7095,10848,1716.7272943122382,40.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,7.0,0.0,51889.0,0.0,51720.0,2,8,7.0,4,2.0 -7096,10850,1078.835901294405,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61800.0,178.0,0.0,53450.4,0.0,0.0,1,9,1.0,3,0.0 -7097,10851,2549.549915413594,46.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17930.4,0.0,17490.0,3,5,4.0,1,1.0 -7098,10854,2631.0822814364997,63.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21460.0,0.0,0.0,22290.6,0.0,1980.0,3,10,4.0,1,0.0 -7099,10856,1877.4427267866333,46.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,6.0,0.0,38713.35,0.0,41780.0,2,9,7.0,3,2.0 -7100,10857,3703.307406451023,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8951.0,0.0,0.0,3,9,7.0,1,0.0 -7101,10858,1942.7980997828174,57.0,211,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46715.2,0.0,49880.0,1,4,4.0,3,2.0 -7102,10861,2286.396954682296,68.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21270.0,0.0,0.0,26838.55,0.0,0.0,1,4,3.0,3,0.0 -7103,10862,1427.4158033093697,64.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16560.0,0.0,0.0,14682.45,0.0,0.0,2,7,0.0,1,0.0 -7104,10863,3122.9093110022395,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10860.0,0.0,0.0,9501.65,0.0,0.0,1,10,8.0,1,0.0 -7105,10867,2828.2127466451107,37.0,111,0.0,85,0.0,0.0,4.0,2.1,2990.0,0.0,0.0,0.0,0.0,0.0,18488.95,0.0,9810.0,3,7,5.0,4,0.0 -7106,10868,1401.012910449922,55.0,221,0.0,48,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43932.45,0.0,45400.0,1,1,2.0,4,4.0 -7107,10869,1672.2031332010602,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60930.0,405.0,0.0,76404.9,0.0,0.0,1,10,8.0,3,0.0 -7108,10871,3652.1713166817176,42.0,120,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36362.15,0.0,38300.0,2,0,0.0,4,2.0 -7109,10873,1988.2033019616815,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15290.0,0.0,0.0,14956.15,0.0,0.0,1,6,0.0,3,0.0 -7110,10874,3662.1942922304384,73.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17890.0,2857.0,0.0,24257.1,0.0,0.0,1,9,7.0,1,0.0 -7111,10875,4584.804731524858,33.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33620.45,0.0,30150.0,3,9,7.0,4,2.0 -7112,10876,3294.292042613514,36.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15730.1,0.0,16730.0,3,10,4.0,1,1.0 -7113,10878,1699.4318827929098,40.0,111,0.0,42,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,34670.15,0.0,29620.0,2,6,5.0,2,1.0 -7114,10879,3455.1403509116744,59.0,400,0.0,62,3,3.0,4.0,2.5,0.0,0.0,0.0,8710.0,0.0,0.0,74860.75,0.0,59910.0,1,0,0.0,4,3.0 -7115,10880,1629.61350171152,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27830.0,0.0,0.0,26055.45,0.0,0.0,1,8,6.0,3,0.0 -7116,10881,3594.8039309239016,48.0,111,0.0,42,1.0,0.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,14818.1,0.0,0.0,3,10,8.0,2,1.0 -7117,10883,2786.8173814985307,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14950.0,0.0,0.0,14898.0,0.0,0.0,3,6,5.0,1,0.0 -7118,10884,2600.1482819329476,40.0,112,0.0,67,1.0,0.0,3.0,2.0,0.0,5240.0,0.0,0.0,0.0,0.0,14136.0,270.0,1340.0,3,10,5.0,2,1.0 -7119,10886,3829.2021421267796,24.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6830.0,0.0,4430.0,3,9,7.0,1,1.0 -7120,10887,2655.204079682432,31.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45703.2,0.0,39870.0,2,10,5.0,4,2.0 -7121,10888,3426.6594541122768,66.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,115.0,0.0,41458.55,0.0,50740.0,3,10,8.0,1,1.0 -7122,10889,2308.4880192358105,58.0,111,4510.0,52,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,55389.45,0.0,35020.0,1,9,7.0,4,3.0 -7123,10890,6755.332647377915,38.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,1640.0,0.0,0.0,0.0,0.0,15566.9,4480.0,8170.0,1,10,8.0,4,2.0 -7124,10892,1673.8351168121335,44.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59858.9,0.0,63190.0,1,9,7.0,4,2.0 -7125,10894,2243.3049488128477,54.0,112,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10250.0,0.0,0.0,44487.4,0.0,36420.0,1,10,0.0,3,1.0 -7126,10896,1103.6666014574764,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31310.0,0.0,0.0,28950.45,0.0,0.0,1,8,2.0,3,0.0 -7127,10901,4611.7666145865005,48.0,111,5560.0,46,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,56692.8,0.0,54640.0,3,10,8.0,4,4.0 -7128,10902,2033.4740920289541,56.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18470.0,0.0,0.0,37000.35,0.0,18940.0,1,5,0.0,3,1.0 -7129,10903,3141.439207513763,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19310.0,0.0,0.0,18415.15,0.0,0.0,1,6,5.0,3,0.0 -7130,10904,2218.842327401399,52.0,211,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,20757.65,0.0,20260.0,1,1,2.0,1,1.0 -7131,10905,3495.989744478615,82.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39080.0,0.0,0.0,36936.95,0.0,0.0,1,10,8.0,3,0.0 -7132,10906,3317.297115452587,42.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56083.05,0.0,26790.0,2,8,6.0,3,2.0 -7133,10908,2339.5632649769345,28.0,120,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43424.5,0.0,44820.0,2,0,0.0,4,2.0 -7134,10909,2951.319429827292,34.0,111,6630.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40922.05,0.0,29470.0,2,8,7.0,4,2.0 -7135,10910,3711.5944085827496,86.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25330.0,0.0,0.0,25877.85,0.0,0.0,1,0,0.0,3,0.0 -7136,10913,1364.181195631442,58.0,300,15200.0,62,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,239.0,0.0,56361.3,0.0,37940.0,1,0,0.0,4,3.0 -7137,10916,2830.480756642922,44.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,192.0,0.0,97029.05,0.0,118730.0,2,10,8.0,4,2.0 -7138,10917,5214.126165518822,79.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15540.0,0.0,0.0,15540.0,0.0,0.0,3,0,0.0,1,0.0 -7139,10918,989.7115202969957,80.0,300,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10770.0,0.0,0.0,10792.0,0.0,0.0,3,0,0.0,1,0.0 -7140,10920,7610.841584286911,85.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14510.0,0.0,0.0,13879.15,0.0,0.0,1,1,1.0,1,0.0 -7141,10922,3375.4790277439147,73.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41460.0,52.0,0.0,41135.85,0.0,0.0,1,10,8.0,1,0.0 -7142,10923,2654.3443598065523,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26620.0,99.0,0.0,25185.0,0.0,0.0,1,10,8.0,1,0.0 -7143,10933,3264.86453308709,40.0,120,4880.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8740.3,0.0,3930.0,3,0,0.0,1,1.0 -7144,10934,5164.833105800399,50.0,221,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23831.6,0.0,23820.0,3,1,1.0,3,2.0 -7145,10935,1997.7565181263683,68.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15850.0,0.0,0.0,16407.1,0.0,0.0,1,0,0.0,1,0.0 -7146,10936,8635.001174767924,50.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20267.55,0.0,21950.0,1,10,8.0,1,1.0 -7147,10939,1952.8118864609128,55.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7253.2,0.0,4390.0,3,9,2.0,1,1.0 -7148,10940,3787.0425904711333,64.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37860.0,0.0,0.0,35516.05,0.0,0.0,3,8,0.0,3,0.0 -7149,10941,2468.2613327485765,70.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32780.0,0.0,0.0,29931.4,0.0,0.0,1,0,0.0,3,0.0 -7150,10942,2969.781489684833,85.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40390.0,0.0,0.0,36853.45,0.0,0.0,1,8,7.0,3,0.0 -7151,10943,2516.0005197537776,73.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10730.0,0.0,0.0,10029.3,0.0,0.0,1,9,1.0,1,0.0 -7152,10944,1834.41678793753,46.0,112,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,21620.0,0.0,0.0,43332.5,0.0,23860.0,2,8,0.0,4,1.0 -7153,10945,4811.7313547554495,47.0,112,0.0,52,1.0,1.0,3.0,1.8,0.0,7290.0,0.0,0.0,0.0,0.0,21222.15,0.0,12670.0,1,4,0.0,5,1.0 -7154,10946,3445.878768228691,46.0,111,0.0,68,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,186.0,0.0,21151.15,0.0,15520.0,1,9,7.0,2,1.0 -7155,10947,2953.1890782274513,34.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,613.0,0.0,149910.2,0.0,161170.0,2,10,8.0,4,2.0 -7156,10948,5246.435961129945,28.0,221,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15454.8,0.0,15980.0,3,1,1.0,1,1.0 -7157,10950,2834.1370689405944,25.0,111,1500.0,56,2.0,1.0,3.0,1.8,0.0,1710.0,0.0,0.0,0.0,0.0,10929.85,0.0,50.0,3,8,7.0,4,2.0 -7158,10951,2261.454331024732,53.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19260.8,0.0,20050.0,3,6,4.0,1,1.0 -7159,10952,1777.7717191012496,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8350.0,0.0,0.0,9223.45,0.0,0.0,1,6,4.0,1,0.0 -7160,10953,1747.1228717173876,86.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28620.0,0.0,0.0,27801.55,0.0,0.0,1,0,1.0,3,0.0 -7161,10955,2805.7708873554993,39.0,111,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,107324.45,0.0,111130.0,2,10,8.0,4,2.0 -7162,10956,1716.8369051107632,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17550.0,0.0,0.0,16524.1,0.0,0.0,1,8,7.0,1,0.0 -7163,10957,2107.7137807617673,35.0,112,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,192.0,0.0,149016.95,0.0,30780.0,2,7,0.0,4,2.0 -7164,10958,1740.2614447554663,73.0,111,0.0,77,0.0,0.0,2.0,1.5,8380.0,0.0,0.0,16750.0,0.0,0.0,25983.15,0.0,0.0,1,7,6.0,2,0.0 -7165,10961,3106.259308561187,37.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45162.65,0.0,45990.0,2,10,8.0,4,2.0 -7166,10962,3293.0041691965475,35.0,112,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,37.0,0.0,37185.45,0.0,0.0,3,8,0.0,1,1.0 -7167,10964,2966.8757090480676,66.0,221,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9760.0,0.0,0.0,12736.0,0.0,0.0,3,1,3.0,1,0.0 -7168,10965,2009.9097300903695,36.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,119.0,0.0,56300.05,0.0,62470.0,3,8,7.0,3,2.0 -7169,10966,1063.2284361822822,53.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50596.65,0.0,54750.0,1,7,5.0,4,2.0 -7170,10967,2376.963472886911,39.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,30.0,0.0,39053.4,0.0,40980.0,1,10,8.0,4,2.0 -7171,10970,4091.9389372771175,31.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,45171.8,0.0,49280.0,3,10,8.0,1,1.0 -7172,10971,3172.678420039125,35.0,112,0.0,85,0.0,0.0,3.0,1.6,0.0,230.0,0.0,0.0,0.0,0.0,13693.6,0.0,0.0,3,7,0.0,2,0.0 -7173,10972,966.1974492602634,53.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55072.8,0.0,59540.0,2,8,2.0,3,2.0 -7174,10974,2522.7351911515243,32.0,111,1120.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29648.6,0.0,26430.0,3,8,7.0,4,2.0 -7175,10977,2716.45491718701,73.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38120.0,0.0,0.0,32052.6,0.0,0.0,1,10,8.0,1,0.0 -7176,10978,2786.2933979375434,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39140.0,396.0,0.0,41763.55,0.0,0.0,2,10,8.0,3,0.0 -7177,10979,3428.192805182154,27.0,111,0.0,64,1.0,0.0,4.0,2.1,0.0,5020.0,0.0,0.0,0.0,0.0,15544.4,0.0,0.0,3,9,7.0,4,1.0 -7178,10982,3054.5476604539267,79.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21720.0,0.0,0.0,21330.4,0.0,0.0,1,7,0.0,3,0.0 -7179,10983,2479.000279534961,31.0,112,2140.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,8.0,0.0,32073.3,0.0,24100.0,2,6,0.0,4,2.0 -7180,10984,1730.5895663094168,51.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32230.4,0.0,35590.0,2,9,7.0,4,2.0 -7181,10985,2711.511494637218,63.0,400,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11940.0,0.0,0.0,21003.85,0.0,8030.0,1,0,0.0,3,1.0 -7182,10987,3178.7983616235056,42.0,111,0.0,67,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,77948.25,0.0,82440.0,2,10,8.0,5,3.0 -7183,10988,1993.0649361536944,64.0,111,15760.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,21100.0,0.0,0.0,53160.5,0.0,24090.0,1,5,4.0,3,1.0 -7184,10991,947.896596534522,48.0,120,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46519.0,0.0,49330.0,2,0,0.0,4,2.0 -7185,10993,2786.567203032988,39.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34909.75,0.0,35300.0,2,4,4.0,2,1.0 -7186,10994,1177.9780807276575,55.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30910.15,0.0,31860.0,5,8,0.0,3,2.0 -7187,10996,2483.235969183337,41.0,221,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,34123.75,0.0,24560.0,3,1,2.0,4,2.0 -7188,10998,2395.2439561545284,67.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15310.0,0.0,0.0,16390.0,0.0,0.0,3,10,8.0,3,0.0 -7189,11000,2290.4014142986057,50.0,300,0.0,13,3,3.0,3.0,2.0,0.0,0.0,0.0,1830.0,0.0,0.0,37090.6,0.0,12990.0,1,0,0.0,4,3.0 -7190,11001,3231.4076570551383,64.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27050.0,0.0,0.0,8689.8,0.0,0.0,1,9,7.0,3,0.0 -7191,11002,1895.3885891733091,54.0,112,0.0,55,2.0,2.0,4.0,2.5,0.0,0.0,0.0,30830.0,2.0,0.0,65095.9,0.0,40570.0,2,8,0.0,4,2.0 -7192,11003,3767.131453774499,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26450.0,0.0,0.0,23757.55,0.0,0.0,1,9,7.0,3,0.0 -7193,11005,1523.8149023738629,36.0,112,0.0,53,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38765.5,0.0,29010.0,2,8,0.0,4,1.0 -7194,11008,2353.240027139176,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25670.0,0.0,0.0,24906.65,0.0,0.0,3,8,6.0,3,0.0 -7195,11009,7393.867981918686,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,4770.0,18290.0,0.0,0.0,23117.0,0.0,0.0,3,7,5.0,3,0.0 -7196,11010,2595.811553685942,30.0,111,11150.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22587.0,0.0,5620.0,3,8,7.0,3,2.0 -7197,11014,2435.7778182072634,30.0,112,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40883.05,0.0,33490.0,2,5,0.0,4,2.0 -7198,11015,1631.4607950876975,56.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32692.0,0.0,35440.0,1,6,4.0,3,2.0 -7199,11016,1029.8842434672,45.0,112,0.0,47,3,3.0,7.0,3.8,0.0,0.0,0.0,0.0,0.0,0.0,74977.5,0.0,70810.0,2,9,0.0,4,3.0 -7200,11018,3164.3172778871503,43.0,112,2910.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,17450.15,0.0,2280.0,2,7,2.0,4,2.0 -7201,11019,2878.8367227096455,40.0,111,7630.0,54,1.0,0.0,1.0,1.0,0.0,1930.0,0.0,0.0,0.0,0.0,14980.25,0.0,2570.0,3,7,5.0,1,1.0 -7202,11025,2326.5179069879355,60.0,111,0.0,77,1.0,1.0,3.0,2.0,0.0,1640.0,0.0,21860.0,0.0,0.0,52862.7,1030.0,29320.0,3,8,7.0,5,1.0 -7203,11027,2716.802510363781,52.0,111,0.0,43,1.0,0.0,2.0,1.5,7020.0,0.0,0.0,17990.0,0.0,0.0,24685.0,0.0,0.0,1,9,7.0,3,1.0 -7204,11029,2186.5512022851344,88.0,112,9430.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21330.0,11.0,0.0,48933.85,0.0,19580.0,1,10,4.0,2,1.0 -7205,11031,1300.647909805874,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26220.0,0.0,0.0,25669.2,0.0,0.0,1,8,1.0,3,0.0 -7206,11033,2952.7307597273893,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24370.0,0.0,0.0,22274.75,0.0,0.0,1,10,8.0,1,0.0 -7207,11034,3878.192466900308,67.0,111,0.0,86,0.0,0.0,1.0,1.0,8750.0,0.0,8810.0,0.0,0.0,0.0,17587.0,0.0,0.0,1,8,7.0,1,0.0 -7208,11035,2658.5789725263508,44.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30148.6,0.0,32500.0,1,9,7.0,1,1.0 -7209,11036,1237.62775721484,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43530.0,0.0,0.0,41009.85,0.0,0.0,1,7,5.0,3,0.0 -7210,11037,2128.7939044631253,82.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16150.0,0.0,0.0,15638.25,0.0,0.0,1,8,0.0,1,0.0 -7211,11039,1424.6670598137462,77.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25040.0,0.0,0.0,24954.2,0.0,0.0,1,8,7.0,3,0.0 -7212,11041,2840.7668547832836,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33690.0,0.0,0.0,31035.2,0.0,0.0,5,8,6.0,3,0.0 -7213,11043,5803.48429808007,38.0,112,0.0,52,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,3.0,0.0,53119.55,0.0,42720.0,2,9,2.0,4,2.0 -7214,11044,1435.5476705720475,41.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,87461.45,0.0,83250.0,2,8,7.0,4,2.0 -7215,11045,2251.7719136575784,53.0,112,5200.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26056.75,0.0,22410.0,3,9,2.0,3,2.0 -7216,11046,2812.868279771188,30.0,111,1550.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16471.75,0.0,11760.0,3,8,6.0,1,1.0 -7217,11047,3633.6983429441666,31.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14117.95,0.0,13390.0,3,9,7.0,1,1.0 -7218,11048,2617.206997632791,80.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15660.0,0.0,0.0,16859.15,0.0,0.0,1,8,7.0,1,0.0 -7219,11049,3765.94005582078,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32360.0,0.0,0.0,29182.55,0.0,0.0,1,9,7.0,1,0.0 -7220,11050,2207.966685184279,34.0,221,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40919.3,0.0,41180.0,2,1,2.0,4,2.0 -7221,11051,2834.591318090683,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16740.0,0.0,0.0,17298.85,0.0,90.0,3,5,4.0,1,0.0 -7222,11053,1041.4015835699397,56.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25958.05,0.0,26350.0,3,7,5.0,3,2.0 -7223,11054,2649.259598003095,57.0,111,0.0,31,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,73031.55,0.0,86980.0,2,9,7.0,4,1.0 -7224,11055,1254.3045822367087,42.0,300,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41473.5,0.0,37920.0,1,0,0.0,4,2.0 -7225,11056,5585.5847727951705,79.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18860.0,0.0,0.0,18746.25,0.0,0.0,1,8,3.0,3,0.0 -7226,11057,2854.928831902979,39.0,112,0.0,55,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37531.85,0.0,29590.0,2,9,0.0,4,2.0 -7227,11058,2022.4655142690528,50.0,112,0.0,48,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,12.0,0.0,54462.75,0.0,54980.0,2,9,0.0,4,2.0 -7228,11060,3116.266674973828,28.0,111,12450.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47362.45,0.0,49340.0,3,9,7.0,3,2.0 -7229,11061,2516.749021234986,62.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9692.0,0.0,7420.0,3,7,5.0,1,1.0 -7230,11062,2129.869180474903,57.0,112,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13030.0,0.0,0.0,18830.1,0.0,7100.0,1,5,0.0,3,1.0 -7231,11065,2687.3526375211527,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16900.0,0.0,0.0,16267.55,0.0,0.0,1,9,7.0,1,0.0 -7232,11066,2414.328510749927,40.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,65911.15,0.0,69680.0,2,10,8.0,4,2.0 -7233,11067,2139.1790751354206,84.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9880.0,0.0,0.0,10295.1,0.0,0.0,1,0,0.0,1,0.0 -7234,11068,3188.103618819134,23.0,111,0.0,68,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18088.0,0.0,14870.0,3,7,5.0,3,2.0 -7235,11069,3444.3355808816173,45.0,111,0.0,55,1.0,0.0,2.0,1.3,0.0,7290.0,0.0,0.0,0.0,0.0,12617.0,0.0,0.0,3,10,8.0,2,1.0 -7236,11070,3184.96154503059,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24410.0,0.0,0.0,24206.85,0.0,0.0,5,8,6.0,3,0.0 -7237,11073,1340.0525350308621,59.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17160.0,0.0,0.0,17283.35,0.0,0.0,1,6,4.0,3,0.0 -7238,11074,2440.7362034367343,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27040.0,0.0,0.0,25155.0,0.0,0.0,1,9,7.0,3,0.0 -7239,11075,1566.5332252208427,59.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9350.0,0.0,0.0,24613.15,0.0,17800.0,1,7,6.0,1,1.0 -7240,11076,3106.1299349197243,75.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25910.0,0.0,0.0,53367.3,0.0,0.0,1,10,3.0,1,0.0 -7241,11077,1702.2150327037543,54.0,111,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,70045.75,0.0,78050.0,1,10,8.0,4,3.0 -7242,11079,1266.351067501147,58.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,11900.0,0.0,0.0,45901.45,0.0,43890.0,1,8,7.0,3,2.0 -7243,11080,2912.1264084626478,30.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8510.0,0.0,0.0,9234.0,0.0,0.0,3,8,7.0,1,0.0 -7244,11081,2889.588834736759,76.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9760.0,0.0,0.0,9760.0,0.0,0.0,5,1,3.0,1,0.0 -7245,11082,4157.90861913154,26.0,111,0.0,34,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17800.0,0.0,18920.0,3,10,8.0,1,1.0 -7246,11087,1646.6187055018122,27.0,221,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30535.7,0.0,28230.0,2,1,3.0,4,2.0 -7247,11088,1683.9844602745661,44.0,111,0.0,68,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8190.0,0.0,0.0,3,9,7.0,1,1.0 -7248,11090,2290.740759634787,49.0,400,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1021.0,0.0,20506.0,0.0,20730.0,1,0,0.0,2,2.0 -7249,11093,2485.929395899904,66.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19100.0,508.0,0.0,32774.0,0.0,0.0,1,0,0.0,1,0.0 -7250,11094,2753.8806621399617,28.0,111,2570.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28691.2,0.0,28350.0,2,8,6.0,3,2.0 -7251,11095,2007.7529286810473,48.0,111,11110.0,68,2.0,1.0,5.0,2.8,0.0,220.0,0.0,0.0,0.0,0.0,27698.8,150.0,5390.0,3,8,7.0,4,2.0 -7252,11096,2560.9679628577665,59.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8224.0,0.0,0.0,3,9,7.0,1,1.0 -7253,11098,2053.6414444615093,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51730.0,0.0,0.0,71198.45,0.0,24200.0,1,6,5.0,3,0.0 -7254,11099,8707.716037413975,29.0,221,0.0,68,1.0,1.0,1.0,1.0,0.0,4520.0,0.0,0.0,0.0,0.0,11437.6,160.0,4540.0,3,1,1.0,1,1.0 -7255,11101,2082.608869639719,68.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,25000.0,0.0,0.0,46891.65,0.0,26170.0,1,10,8.0,3,2.0 -7256,11102,5860.057315772012,53.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22912.9,0.0,24060.0,3,6,5.0,1,1.0 -7257,11103,2321.824034714431,65.0,111,0.0,54,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36811.05,0.0,39760.0,3,10,8.0,4,3.0 -7258,11106,2179.915479962081,87.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6130.0,0.0,0.0,6404.5,0.0,0.0,1,0,0.0,1,0.0 -7259,11107,2425.6441507002423,82.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8990.0,0.0,0.0,8990.0,0.0,0.0,5,0,0.0,1,0.0 -7260,11108,2390.18266710534,32.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27835.35,0.0,23490.0,3,1,2.0,4,2.0 -7261,11112,4053.8398995376574,64.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,16530.0,90.0,0.0,27358.75,0.0,12530.0,3,10,8.0,1,1.0 -7262,11114,2501.2319839683028,25.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,1230.0,0.0,0.0,0.0,0.0,2731.5,0.0,0.0,4,9,7.0,1,1.0 -7263,11116,3188.112071697195,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18560.0,0.0,0.0,18542.65,0.0,0.0,1,5,4.0,1,0.0 -7264,11117,3026.8347850019977,34.0,111,0.0,85,0.0,0.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,12886.0,0.0,0.0,3,10,8.0,1,0.0 -7265,11120,3193.566953723514,49.0,112,0.0,54,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48639.6,0.0,48810.0,3,9,3.0,4,3.0 -7266,11121,4308.478412959327,44.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,30.0,0.0,0.0,0.0,0.0,14930.0,810.0,14470.0,5,10,8.0,1,1.0 -7267,11122,3086.75718614272,49.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31296.4,0.0,29540.0,3,10,8.0,4,2.0 -7268,11124,1141.9517034372868,54.0,111,0.0,38,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,319.0,0.0,117272.35,0.0,125110.0,1,7,6.0,4,3.0 -7269,11125,1685.098675920469,59.0,221,15650.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53752.35,0.0,35120.0,1,1,2.0,4,2.0 -7270,11126,1682.6339868400205,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14510.0,0.0,0.0,14543.0,0.0,0.0,3,8,6.0,1,0.0 -7271,11127,3162.579301808261,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18790.0,0.0,0.0,19731.85,0.0,0.0,1,7,5.0,3,0.0 -7272,11130,2506.8852750739347,37.0,111,3280.0,85,0.0,0.0,3.0,1.8,0.0,7360.0,0.0,0.0,0.0,0.0,13261.3,0.0,0.0,3,6,5.0,4,0.0 -7273,11131,2694.0853168286826,47.0,112,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40609.15,2290.0,37050.0,1,7,0.0,4,2.0 -7274,11132,2960.716275535163,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31120.0,0.0,0.0,28586.5,0.0,0.0,1,6,5.0,1,0.0 -7275,11135,2037.9400860231522,86.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21390.0,0.0,0.0,21317.2,0.0,0.0,1,7,5.0,3,0.0 -7276,11136,1131.8819519789438,69.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30700.0,0.0,0.0,28181.9,0.0,0.0,1,8,0.0,3,0.0 -7277,11137,2878.0733172196974,60.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14500.0,0.0,0.0,14392.2,0.0,210.0,1,10,8.0,1,0.0 -7278,11138,1809.3485807761733,50.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39566.15,0.0,0.0,3,8,6.0,2,1.0 -7279,11140,1957.254787101047,69.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16520.0,0.0,0.0,16313.95,0.0,0.0,5,0,0.0,1,0.0 -7280,11141,2877.827296044359,49.0,111,0.0,38,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39124.4,0.0,44190.0,1,9,7.0,4,1.0 -7281,11142,3460.524163019692,34.0,120,0.0,68,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28349.65,0.0,11100.0,3,0,0.0,4,2.0 -7282,11143,1562.1823025237495,63.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,71040.0,0.0,0.0,64989.4,0.0,0.0,1,1,3.0,3,0.0 -7283,11144,2607.80885569946,78.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11670.0,0.0,0.0,11624.35,0.0,0.0,5,0,0.0,1,0.0 -7284,11145,1792.8735644353262,28.0,300,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30314.8,0.0,28620.0,3,0,0.0,3,2.0 -7285,11148,3011.3245242495295,80.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23250.0,0.0,0.0,23360.65,0.0,0.0,1,9,3.0,3,0.0 -7286,11150,1380.3112779034989,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58490.0,1411.0,0.0,56859.75,0.0,0.0,1,7,6.0,3,0.0 -7287,11151,3513.7467759242054,36.0,111,0.0,21,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,7,5.0,2,1.0 -7288,11153,2165.7898810198994,34.0,211,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48308.3,0.0,49550.0,2,1,3.0,4,2.0 -7289,11155,2718.271306321586,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20950.0,0.0,0.0,19667.6,0.0,0.0,1,6,5.0,1,0.0 -7290,11157,1775.8891860236447,49.0,111,0.0,43,1.0,1.0,6.0,3.3,0.0,0.0,5420.0,8680.0,0.0,0.0,50409.2,0.0,23610.0,3,8,7.0,5,1.0 -7291,11159,2353.348429388337,84.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27910.0,0.0,0.0,27283.75,0.0,0.0,1,1,2.0,3,0.0 -7292,11162,2879.6372324852823,34.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32492.95,0.0,37290.0,2,9,7.0,1,1.0 -7293,11163,2745.8331409546768,49.0,112,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,803.0,0.0,276316.65,0.0,271180.0,1,7,0.0,1,1.0 -7294,11164,1840.0105034685016,57.0,111,4410.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32670.65,0.0,28790.0,3,9,7.0,3,2.0 -7295,11167,4652.958675220868,79.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14650.0,0.0,0.0,14664.0,0.0,0.0,3,7,5.0,1,0.0 -7296,11168,2147.8927258121507,58.0,300,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13840.0,0.0,0.0,30835.1,0.0,17380.0,1,0,0.0,3,1.0 -7297,11169,2892.2284576272505,49.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,212.0,0.0,44938.25,0.0,46230.0,3,8,6.0,1,1.0 -7298,11174,2665.433316896533,69.0,111,0.0,74,1.0,1.0,3.0,2.0,8750.0,0.0,0.0,28310.0,349.0,0.0,80564.8,0.0,34930.0,1,10,8.0,4,1.0 -7299,11175,4872.959342588225,54.0,400,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34976.1,0.0,34020.0,2,0,0.0,4,2.0 -7300,11176,3533.921008749275,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14800.0,0.0,0.0,14332.65,0.0,0.0,1,9,7.0,1,0.0 -7301,11177,3272.2429475404074,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16240.0,0.0,0.0,16249.0,0.0,0.0,5,6,5.0,1,0.0 -7302,11178,1345.8392753044361,57.0,112,1390.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23610.0,23.0,0.0,36208.85,0.0,12850.0,1,9,1.0,3,1.0 -7303,11179,3878.838006422582,43.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49695.25,0.0,50640.0,2,5,0.0,4,2.0 -7304,11182,1415.108971520642,42.0,111,0.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,63165.85,0.0,56890.0,1,9,7.0,4,2.0 -7305,11183,1636.8374925941896,70.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,1880.0,11980.0,26.0,0.0,13126.05,0.0,0.0,1,8,0.0,3,0.0 -7306,11184,851.6934498021942,50.0,211,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46506.05,0.0,46380.0,2,3,4.0,4,2.0 -7307,11185,3816.133349586524,32.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,59.0,0.0,26063.05,0.0,28410.0,3,9,7.0,1,1.0 -7308,11186,1798.655074715425,48.0,112,2610.0,56,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,30411.25,0.0,26380.0,1,8,0.0,4,2.0 -7309,11187,3539.597885368317,27.0,112,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35059.05,0.0,34820.0,5,10,3.0,4,2.0 -7310,11189,4061.8357580924912,57.0,221,0.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7282.6,0.0,5380.0,3,1,2.0,1,1.0 -7311,11191,3464.7552860063556,29.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43960.3,0.0,46870.0,3,9,7.0,3,2.0 -7312,11192,5331.456180945429,25.0,400,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38839.0,0.0,44670.0,3,0,0.0,1,1.0 -7313,11193,1516.3113154463042,52.0,112,0.0,21,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,44323.6,0.0,17370.0,1,8,1.0,4,3.0 -7314,11195,2410.082835812549,30.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54821.0,0.0,52340.0,3,10,8.0,4,2.0 -7315,11196,3756.0911355983685,29.0,111,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,11870.0,0.0,0.0,3,9,7.0,1,0.0 -7316,11201,2374.00073104376,37.0,300,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19643.3,0.0,18560.0,2,0,0.0,4,2.0 -7317,11202,1944.015990881671,63.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15180.0,0.0,0.0,14726.0,0.0,0.0,1,0,0.0,1,0.0 -7318,11203,1749.0287656946698,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22650.0,0.0,0.0,22242.85,0.0,0.0,1,6,5.0,3,0.0 -7319,11205,3762.9607294820607,53.0,120,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13998.25,0.0,14100.0,3,0,0.0,1,1.0 -7320,11206,3064.5004980331178,64.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16670.0,67.0,0.0,17703.15,0.0,0.0,1,0,0.0,1,0.0 -7321,11207,2878.8032346042,37.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36839.1,0.0,32780.0,3,10,8.0,4,2.0 -7322,11208,1280.7707993623485,67.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,132480.0,1496.0,0.0,128014.7,0.0,21750.0,1,10,8.0,3,1.0 -7323,11209,1837.2296321407384,50.0,111,0.0,42,1.0,1.0,4.0,2.3,0.0,0.0,0.0,9510.0,0.0,0.0,44771.7,0.0,37410.0,2,10,8.0,4,1.0 -7324,11210,8602.254447259797,48.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33963.75,0.0,34980.0,1,10,8.0,4,2.0 -7325,11211,2128.1760635487744,64.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41792.5,0.0,45380.0,2,10,8.0,3,1.0 -7326,11212,2598.906776691298,30.0,111,9210.0,68,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44974.9,0.0,38140.0,3,9,7.0,4,2.0 -7327,11214,1262.3462825849913,80.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27120.0,0.0,0.0,24954.35,0.0,0.0,1,10,1.0,3,0.0 -7328,11216,1823.7639805712329,45.0,120,2120.0,64,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,45867.6,0.0,43650.0,2,0,0.0,4,3.0 -7329,11217,2082.6205818500857,29.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5598.5,0.0,600.0,3,8,6.0,1,1.0 -7330,11218,2503.677682908654,39.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,21.0,0.0,22153.4,0.0,24530.0,2,9,7.0,1,1.0 -7331,11220,2667.0466732016143,44.0,111,0.0,38,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,26457.7,0.0,29970.0,2,9,7.0,4,1.0 -7332,11221,3669.193143990143,36.0,111,11640.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,58.0,0.0,30451.75,0.0,14600.0,3,9,7.0,4,2.0 -7333,11223,5908.603179956206,82.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26390.0,0.0,0.0,29887.7,0.0,0.0,1,8,0.0,3,0.0 -7334,11224,2211.802099630097,61.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27330.0,0.0,0.0,26176.5,0.0,0.0,3,9,7.0,3,0.0 -7335,11225,3088.168118592477,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1110.0,7290.0,0.0,0.0,9593.0,0.0,0.0,3,8,7.0,1,0.0 -7336,11226,2154.9970393557883,45.0,111,0.0,68,1.0,1.0,1.0,1.0,3300.0,0.0,0.0,0.0,0.0,0.0,13115.0,0.0,7870.0,3,7,5.0,1,1.0 -7337,11228,1535.0069770901248,72.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20860.0,0.0,0.0,21245.8,0.0,0.0,1,0,0.0,3,0.0 -7338,11230,3086.436882497447,25.0,300,1170.0,42,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10557.0,0.0,9160.0,5,0,0.0,1,1.0 -7339,11231,2909.537254073066,48.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19344.95,0.0,21970.0,2,10,4.0,1,1.0 -7340,11234,4819.648281779074,38.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34180.75,0.0,31410.0,2,4,4.0,4,2.0 -7341,11235,1934.3036441546967,56.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38063.65,0.0,38390.0,3,6,5.0,3,2.0 -7342,11237,2610.550782811515,57.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,68293.8,0.0,75800.0,1,10,8.0,3,2.0 -7343,11238,2417.0832788255384,52.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31021.8,0.0,31120.0,3,10,8.0,4,2.0 -7344,11239,2274.172356945734,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32340.0,0.0,0.0,32376.0,0.0,0.0,3,10,8.0,3,0.0 -7345,11241,1914.2087216368777,37.0,112,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,71113.25,0.0,54300.0,2,7,0.0,4,2.0 -7346,11245,5537.819973401685,89.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20680.0,0.0,0.0,18882.15,0.0,0.0,1,8,7.0,1,0.0 -7347,11246,1882.655828865173,47.0,112,0.0,13,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,2158.0,0.0,0.0,1,6,0.0,4,2.0 -7348,11247,1236.554534190403,67.0,400,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,2800.0,11310.0,0.0,0.0,13742.75,0.0,0.0,1,0,0.0,3,0.0 -7349,11248,2579.7129357247422,51.0,120,12930.0,62,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58110.1,0.0,47810.0,2,0,0.0,4,4.0 -7350,11249,2133.0137020162856,47.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27986.9,0.0,24860.0,2,5,4.0,2,1.0 -7351,11253,2987.767166166413,59.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11564.8,0.0,13050.0,2,10,8.0,1,1.0 -7352,11254,1736.2336869633975,63.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1561.0,0.0,0.0,1,8,7.0,1,0.0 -7353,11256,1803.7902939405471,50.0,120,0.0,56,1.0,1.0,5.0,2.6,0.0,0.0,0.0,15640.0,0.0,0.0,30719.85,0.0,13510.0,1,0,0.0,5,1.0 -7354,11258,1938.2537228885963,44.0,111,0.0,63,1.0,1.0,4.0,2.3,0.0,870.0,0.0,0.0,0.0,0.0,23619.55,220.0,9700.0,3,6,4.0,2,1.0 -7355,11259,3158.1884819239476,77.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13180.0,0.0,0.0,14669.0,0.0,0.0,3,1,2.0,1,0.0 -7356,11261,1292.7674399374912,47.0,400,0.0,31,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21535.5,0.0,21390.0,1,0,0.0,4,1.0 -7357,11262,2785.290979899701,54.0,221,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,3640.0,0.0,0.0,72194.4,0.0,72770.0,1,1,1.0,3,2.0 -7358,11264,3576.193807073985,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3134.0,0.0,0.0,3,9,7.0,1,0.0 -7359,11265,2952.5229780952554,63.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19980.0,0.0,0.0,18375.1,0.0,0.0,1,0,0.0,1,0.0 -7360,11266,3190.5234191285726,21.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,150.0,0.0,0.0,0.0,0.0,22057.85,1310.0,16780.0,3,9,7.0,2,2.0 -7361,11267,1202.6549378389464,45.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35360.8,0.0,58880.0,1,8,7.0,4,2.0 -7362,11271,3248.0386418176345,28.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,4825.45,0.0,110.0,2,8,6.0,1,0.0 -7363,11274,3505.445175989053,27.0,120,9030.0,55,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,33530.35,0.0,13710.0,3,0,0.0,4,2.0 -7364,11275,1381.371394365546,58.0,300,0.0,71,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29284.4,0.0,35920.0,1,0,0.0,3,1.0 -7365,11276,2212.2094010929004,45.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51403.35,0.0,51960.0,2,9,0.0,4,2.0 -7366,11277,3829.4189708625017,55.0,400,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6794.4,0.0,0.0,1,0,0.0,3,1.0 -7367,11278,3510.015538417125,33.0,111,0.0,34,1.0,0.0,2.0,1.5,0.0,0.0,2300.0,5870.0,0.0,0.0,7727.15,0.0,0.0,1,9,7.0,5,1.0 -7368,11279,3250.183065194666,91.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5920.0,0.0,0.0,5920.0,0.0,0.0,1,9,7.0,1,0.0 -7369,11283,906.6816205661223,34.0,111,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,31825.9,0.0,18020.0,3,8,7.0,4,1.0 -7370,11284,2920.2529209112295,37.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23484.05,0.0,20100.0,2,0,0.0,1,1.0 -7371,11286,2405.281532100686,45.0,111,0.0,56,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33591.4,0.0,23320.0,3,9,7.0,2,2.0 -7372,11287,1374.6654399998938,50.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14170.0,0.0,0.0,35864.05,0.0,24500.0,1,9,3.0,3,1.0 -7373,11289,2000.8280281594507,40.0,111,5510.0,38,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,8.0,0.0,64045.25,0.0,52850.0,2,9,7.0,4,2.0 -7374,11290,2627.4562564055777,39.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,74677.9,0.0,78380.0,2,8,0.0,4,2.0 -7375,11293,3730.382440243878,33.0,111,10560.0,85,0.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23471.0,0.0,6990.0,3,9,7.0,4,0.0 -7376,11294,3605.344228635316,32.0,111,6360.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12740.65,0.0,6470.0,3,9,7.0,1,0.0 -7377,11295,1720.8488025459205,44.0,111,0.0,85,0.0,0.0,7.0,3.2,0.0,8230.0,0.0,0.0,0.0,0.0,31526.0,0.0,0.0,3,9,7.0,5,0.0 -7378,11296,2793.47459332285,56.0,111,10820.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11274.8,0.0,670.0,3,9,7.0,1,1.0 -7379,11298,6130.580123410371,24.0,120,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17830.0,107.0,0.0,20287.8,0.0,2020.0,3,0,3.0,2,1.0 -7380,11299,1522.4893817460477,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31000.0,0.0,0.0,29113.35,0.0,0.0,3,8,6.0,3,0.0 -7381,11300,2877.9077500539793,23.0,111,0.0,52,1.0,0.0,4.0,2.1,0.0,1260.0,0.0,0.0,0.0,0.0,13032.0,0.0,0.0,3,10,8.0,4,1.0 -7382,11302,2835.420730233823,28.0,111,70.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13295.75,0.0,13550.0,3,8,7.0,1,1.0 -7383,11303,1655.2594518641772,79.0,300,0.0,78,0.0,0.0,2.0,1.5,1690.0,0.0,0.0,18000.0,0.0,0.0,19038.7,0.0,0.0,1,0,0.0,3,0.0 -7384,11304,3238.727014285879,32.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23255.2,0.0,25750.0,2,9,7.0,1,1.0 -7385,11305,2888.4256009850706,28.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19968.25,0.0,20670.0,3,7,6.0,1,1.0 -7386,11306,3006.515047632371,39.0,111,0.0,62,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,41149.5,0.0,29480.0,3,10,8.0,4,1.0 -7387,11308,2974.484069113713,81.0,300,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,4520.0,12690.0,0.0,0.0,32004.05,0.0,15230.0,1,0,0.0,2,1.0 -7388,11309,2435.0296340049217,26.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35090.55,0.0,36510.0,3,7,5.0,3,2.0 -7389,11310,2743.544345440826,46.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43357.5,0.0,36650.0,2,7,1.0,3,2.0 -7390,11312,3013.340522799847,60.0,111,5970.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,870.0,0.0,0.0,8775.95,0.0,0.0,1,8,7.0,1,0.0 -7391,11313,1571.1541209811428,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27400.0,0.0,0.0,26528.8,0.0,0.0,2,7,6.0,3,0.0 -7392,11314,2866.8637101560994,34.0,111,0.0,53,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39350.65,0.0,32050.0,2,9,7.0,4,1.0 -7393,11315,1143.4666657722362,70.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24390.0,0.0,0.0,23667.8,0.0,0.0,1,0,0.0,3,0.0 -7394,11316,5855.377844795941,49.0,112,6080.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50096.95,0.0,48650.0,2,9,1.0,3,2.0 -7395,11318,1415.0180078158112,47.0,111,0.0,22,3,2.0,3.0,2.0,0.0,0.0,0.0,3100.0,0.0,0.0,16302.0,0.0,0.0,1,7,5.0,4,3.0 -7396,11320,2818.58146642548,67.0,120,0.0,72,0.0,0.0,2.0,1.5,8750.0,0.0,0.0,17670.0,0.0,0.0,26232.65,0.0,0.0,1,0,1.0,3,0.0 -7397,11321,4325.3755459298245,74.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13880.0,0.0,0.0,16188.1,0.0,0.0,3,1,2.0,1,0.0 -7398,11323,2834.6585634458906,80.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7830.0,0.0,0.0,7747.5,0.0,0.0,1,7,5.0,1,0.0 -7399,11324,3715.679422450929,26.0,111,0.0,37,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,10.0,0.0,24920.75,0.0,26660.0,4,9,7.0,1,1.0 -7400,11326,3863.0615323007382,60.0,112,840.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36450.0,0.0,0.0,32127.75,0.0,0.0,1,9,3.0,3,0.0 -7401,11330,2287.3365747126636,70.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11520.0,0.0,0.0,11035.1,0.0,0.0,1,1,2.0,1,0.0 -7402,11331,2882.551955833796,45.0,211,0.0,85,0.0,0.0,5.0,2.4,2970.0,0.0,0.0,21120.0,0.0,0.0,30329.25,0.0,0.0,5,2,3.0,4,0.0 -7403,11332,4430.030274075657,34.0,112,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29008.05,0.0,28070.0,2,5,0.0,4,2.0 -7404,11333,2887.2330358521363,36.0,111,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35863.65,0.0,38660.0,2,8,7.0,4,2.0 -7405,11334,1556.209685933585,59.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41810.0,0.0,0.0,44340.7,0.0,5990.0,1,6,0.0,3,0.0 -7406,11335,2677.7241088352775,61.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,4984.0,0.0,0.0,1,0,0.0,1,0.0 -7407,11336,1401.0421290369552,47.0,112,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34038.85,0.0,29980.0,3,3,0.0,2,1.0 -7408,11337,3005.9059080789007,41.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,23.0,0.0,21273.9,0.0,21960.0,3,10,8.0,1,1.0 -7409,11338,5031.153982726393,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10200.0,0.0,0.0,10349.0,0.0,0.0,5,7,5.0,1,0.0 -7410,11339,5327.519007729251,53.0,111,5600.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8704.35,0.0,0.0,3,8,7.0,1,1.0 -7411,11341,1233.8547253497675,53.0,111,0.0,52,3,1.0,6.0,3.3,3730.0,0.0,0.0,0.0,0.0,0.0,29607.0,0.0,24060.0,3,10,8.0,5,3.0 -7412,11344,2667.082271678077,44.0,221,6220.0,11,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,15089.8,0.0,35580.0,1,1,1.0,4,2.0 -7413,11348,2066.7202809423775,68.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29690.0,0.0,0.0,28485.6,0.0,0.0,1,0,0.0,3,0.0 -7414,11350,1063.5230415520857,47.0,112,0.0,11,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,38061.6,0.0,28320.0,1,8,0.0,4,2.0 -7415,11351,2593.2984540842813,47.0,221,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28211.8,0.0,29380.0,2,1,2.0,3,2.0 -7416,11352,3128.214752387563,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12096.15,0.0,9590.0,3,6,4.0,1,0.0 -7417,11354,1465.126481941986,46.0,112,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,88323.5,0.0,87250.0,2,10,4.0,4,2.0 -7418,11356,2441.2344777380204,53.0,300,0.0,77,1.0,1.0,3.0,2.0,3300.0,0.0,0.0,21830.0,0.0,0.0,34400.5,0.0,6480.0,1,0,0.0,4,1.0 -7419,11357,3579.263989745511,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9390.0,0.0,0.0,11580.0,0.0,270.0,3,10,8.0,1,0.0 -7420,11358,1603.9108814417657,41.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,67076.9,0.0,63610.0,2,5,0.0,4,2.0 -7421,11360,3040.4428398575265,46.0,112,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5085.0,0.0,130.0,3,8,0.0,1,1.0 -7422,11361,2097.1774339735093,41.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48437.45,0.0,48010.0,1,7,1.0,4,2.0 -7423,11364,2491.5302782813887,43.0,111,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35478.95,0.0,34530.0,1,10,8.0,4,2.0 -7424,11365,2373.7710792637063,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14660.0,0.0,0.0,15346.0,0.0,0.0,3,7,5.0,1,0.0 -7425,11366,4210.074326386647,40.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,28427.0,0.0,31640.0,2,4,3.0,1,1.0 -7426,11367,1616.9034649564178,33.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51761.55,0.0,50890.0,3,6,4.0,4,2.0 -7427,11368,1885.8217582773816,67.0,112,0.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,29030.0,0.0,0.0,37418.85,0.0,13560.0,1,7,0.0,1,1.0 -7428,11369,3459.9407340881285,48.0,400,12520.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12655.0,0.0,0.0,3,0,0.0,1,1.0 -7429,11371,2858.2156861515114,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7300.0,0.0,0.0,7064.2,0.0,0.0,1,9,7.0,1,0.0 -7430,11372,2921.1951112270203,47.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43003.0,0.0,41870.0,5,10,8.0,4,2.0 -7431,11373,3478.828542483331,56.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,100.0,0.0,38828.0,0.0,44990.0,3,8,7.0,1,1.0 -7432,11374,2628.0502712733037,80.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11510.0,0.0,0.0,13124.0,0.0,0.0,3,9,7.0,1,0.0 -7433,11375,3802.3793149785106,83.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11380.0,0.0,0.0,11140.15,0.0,0.0,1,0,0.0,1,0.0 -7434,11376,3135.2119497639637,27.0,111,1980.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52620.5,0.0,54970.0,2,8,7.0,3,2.0 -7435,11378,3496.253015959016,41.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,163.0,0.0,90124.5,0.0,99330.0,2,10,8.0,4,2.0 -7436,11379,3441.9474041620356,57.0,112,0.0,78,1.0,1.0,5.0,3.0,0.0,0.0,0.0,8650.0,0.0,0.0,21414.0,0.0,3210.0,3,9,3.0,4,1.0 -7437,11380,2883.399427841276,59.0,112,4250.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,8720.0,0.0,0.0,13629.9,0.0,520.0,2,8,0.0,1,1.0 -7438,11381,1016.8651692401764,35.0,222,7090.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33711.5,0.0,28510.0,3,1,0.0,4,2.0 -7439,11382,3457.3761683084813,33.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,50987.7,0.0,51210.0,2,10,8.0,1,1.0 -7440,11383,3956.7523337797234,31.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17012.0,0.0,0.0,3,10,8.0,1,1.0 -7441,11384,3379.7836252402644,48.0,111,0.0,63,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28202.7,0.0,23540.0,3,9,7.0,2,1.0 -7442,11385,2918.8911423852855,25.0,111,8470.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52448.95,0.0,45650.0,2,6,5.0,4,2.0 -7443,11386,3926.166270392744,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22130.0,0.0,0.0,22009.2,0.0,0.0,3,8,7.0,1,0.0 -7444,11389,3558.732381931047,80.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20110.0,0.0,0.0,22090.9,0.0,0.0,1,9,7.0,1,0.0 -7445,11390,2892.250087116418,57.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24897.4,0.0,26070.0,1,9,7.0,2,1.0 -7446,11391,1384.2871377794663,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46510.0,15.0,0.0,43337.5,0.0,0.0,1,8,6.0,3,0.0 -7447,11392,2065.365538113301,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29550.0,0.0,0.0,26210.05,0.0,0.0,1,9,7.0,1,0.0 -7448,11393,2725.8441720665433,46.0,111,0.0,45,1.0,1.0,4.0,2.5,0.0,0.0,0.0,26990.0,0.0,0.0,53236.15,0.0,27190.0,2,9,7.0,4,1.0 -7449,11394,2953.973911989347,55.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23096.9,0.0,25160.0,2,10,8.0,1,1.0 -7450,11395,2501.6242674739624,40.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,64445.65,0.0,58730.0,2,9,0.0,4,2.0 -7451,11398,3652.212017433107,48.0,111,0.0,35,2.0,2.0,4.0,2.1,0.0,70.0,0.0,0.0,0.0,0.0,24423.0,440.0,15900.0,3,10,8.0,4,2.0 -7452,11399,2568.088433070949,33.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3460.0,0.0,0.0,6072.0,0.0,0.0,3,6,5.0,1,0.0 -7453,11400,1618.594690581331,52.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57438.3,0.0,60510.0,1,6,1.0,3,2.0 -7454,11402,1208.6708723617915,70.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,42170.0,0.0,0.0,41181.4,0.0,1140.0,1,9,7.0,3,1.0 -7455,11404,6364.300125738766,53.0,112,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38274.5,0.0,41830.0,1,8,3.0,3,1.0 -7456,11405,2194.883394817082,63.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21890.0,0.0,0.0,21762.45,0.0,0.0,3,5,4.0,3,0.0 -7457,11406,1749.3452699498098,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12050.0,0.0,0.0,12860.0,0.0,0.0,1,10,8.0,3,0.0 -7458,11409,1997.0367531212248,67.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38540.0,0.0,0.0,35917.3,0.0,0.0,1,7,0.0,3,0.0 -7459,11411,1762.328906695724,60.0,120,2480.0,54,1.0,0.0,1.0,1.0,0.0,510.0,0.0,0.0,0.0,0.0,7869.9,1090.0,4020.0,1,0,0.0,1,1.0 -7460,11412,1244.6743767947469,44.0,111,0.0,56,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,80.0,0.0,56996.9,0.0,49900.0,1,7,5.0,4,2.0 -7461,11413,3319.0146011627717,42.0,300,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36390.9,0.0,31000.0,2,0,1.0,4,2.0 -7462,11414,1907.4156723984365,41.0,111,9240.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,328.0,0.0,118096.4,0.0,116950.0,3,8,7.0,4,2.0 -7463,11415,1657.764205049835,51.0,300,0.0,38,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,82503.3,0.0,83960.0,1,0,0.0,4,3.0 -7464,11416,1475.64937337023,72.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26330.0,0.0,0.0,24925.1,0.0,0.0,1,9,7.0,3,0.0 -7465,11417,5739.803973714396,50.0,111,1070.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40726.8,0.0,40330.0,3,10,8.0,2,2.0 -7466,11423,3150.1252403721674,32.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,27.0,0.0,30026.1,0.0,33410.0,3,10,8.0,1,1.0 -7467,11424,1555.6902744771696,52.0,111,9400.0,38,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,127.0,0.0,89992.7,0.0,89660.0,3,9,7.0,4,3.0 -7468,11425,1321.1453618819855,42.0,112,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42948.8,0.0,45000.0,2,3,0.0,4,2.0 -7469,11426,1011.4201318091716,50.0,112,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46287.25,0.0,41950.0,2,4,0.0,4,2.0 -7470,11427,3336.6331868879042,58.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17152.25,0.0,17750.0,1,9,7.0,1,1.0 -7471,11429,4525.9423541078095,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15790.0,0.0,0.0,15049.65,0.0,0.0,1,9,7.0,1,0.0 -7472,11430,1146.8076254490554,49.0,111,1520.0,65,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,63796.45,0.0,68070.0,1,10,8.0,4,3.0 -7473,11431,3059.1746776469327,83.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52170.0,0.0,0.0,46401.4,0.0,0.0,1,9,7.0,5,0.0 -7474,11432,2623.9588941075954,69.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16240.0,0.0,0.0,15471.7,0.0,0.0,1,9,0.0,1,0.0 -7475,11440,2412.186249452249,79.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17490.0,0.0,0.0,17620.0,0.0,0.0,1,0,0.0,1,0.0 -7476,11441,1353.3035973569656,54.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22600.0,0.0,0.0,37961.0,0.0,18360.0,1,6,1.0,3,1.0 -7477,11442,2143.396761921742,59.0,300,1410.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13379.1,0.0,2070.0,1,0,0.0,3,2.0 -7478,11443,2812.868279771188,39.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35422.3,0.0,37810.0,2,8,6.0,1,1.0 -7479,11445,2874.01177505583,86.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23060.0,52.0,0.0,21396.0,0.0,0.0,1,10,8.0,1,0.0 -7480,11446,3980.2650385506718,30.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,749.0,0.0,165434.2,0.0,170710.0,3,10,8.0,1,1.0 -7481,11447,1958.7342594055986,63.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48680.0,0.0,0.0,41506.1,0.0,0.0,2,4,0.0,3,0.0 -7482,11450,1175.0442196733989,43.0,112,0.0,68,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42119.1,0.0,43510.0,1,6,0.0,4,2.0 -7483,11451,3553.6330177741256,21.0,111,2480.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25379.0,0.0,21100.0,3,7,5.0,3,2.0 -7484,11452,2435.7273461307022,46.0,112,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40554.8,0.0,33030.0,1,9,0.0,4,2.0 -7485,11454,2135.1237106209383,33.0,111,5160.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,1110.0,23400.0,40224.3,0.0,11370.0,3,9,7.0,3,2.0 -7486,11455,1611.796513366542,52.0,111,6480.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12785.35,0.0,6410.0,3,7,6.0,1,1.0 -7487,11456,2516.218364412748,64.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15020.0,0.0,0.0,14011.2,0.0,0.0,1,5,0.0,1,0.0 -7488,11457,7910.297045213364,34.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,182320.65,0.0,33620.0,2,10,8.0,4,2.0 -7489,11460,2065.9134122737046,59.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,109.0,0.0,38739.65,0.0,22830.0,1,8,7.0,1,1.0 -7490,11461,1504.9254985528582,31.0,120,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33519.9,0.0,32290.0,5,0,0.0,3,2.0 -7491,11462,1738.399608373007,60.0,111,1360.0,35,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,1237.0,0.0,72335.3,0.0,74920.0,3,7,5.0,4,3.0 -7492,11464,1275.4000648431875,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36950.0,32.0,0.0,34099.6,0.0,0.0,1,7,5.0,3,0.0 -7493,11465,3281.7163070346937,60.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9150.0,0.0,0.0,30444.75,0.0,25650.0,3,9,7.0,1,0.0 -7494,11466,3353.9301438249017,27.0,111,10190.0,55,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47547.85,0.0,17360.0,3,9,7.0,4,2.0 -7495,11467,4023.7509474426506,34.0,112,5510.0,62,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49313.6,0.0,40130.0,3,8,0.0,4,2.0 -7496,11468,1251.4525000574008,36.0,111,40110.0,38,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,61987.0,0.0,25820.0,2,9,7.0,4,2.0 -7497,11469,1545.817862768308,35.0,300,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,1200.0,0.0,0.0,34230.65,0.0,30110.0,3,0,0.0,4,2.0 -7498,11472,4740.631432248903,37.0,400,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37047.1,0.0,34770.0,2,0,0.0,4,2.0 -7499,11474,2974.626725761268,53.0,300,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44471.2,0.0,48040.0,1,0,0.0,3,2.0 -7500,11475,2929.4081650829216,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26010.0,0.0,0.0,25283.15,0.0,0.0,1,9,7.0,3,0.0 -7501,11477,1571.5140605624697,33.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32520.25,0.0,24830.0,2,8,7.0,4,2.0 -7502,11480,2259.110758134453,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31340.0,0.0,0.0,30424.15,0.0,0.0,1,9,7.0,3,0.0 -7503,11482,3741.140595140943,38.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,27.0,0.0,30943.4,0.0,35120.0,1,10,8.0,1,1.0 -7504,11483,3680.9818362822807,37.0,111,0.0,65,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35563.0,0.0,33440.0,3,9,7.0,4,1.0 -7505,11485,2748.514989221939,84.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36740.0,0.0,0.0,43727.6,0.0,0.0,5,10,8.0,1,0.0 -7506,11486,2546.731343370975,44.0,112,0.0,34,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,73436.2,0.0,74130.0,1,9,1.0,4,3.0 -7507,11487,2338.703158797684,63.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26610.0,0.0,0.0,24896.5,0.0,0.0,1,0,0.0,1,0.0 -7508,11488,5004.4742209296455,59.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23880.0,0.0,0.0,23582.15,0.0,0.0,1,0,3.0,3,0.0 -7509,11490,3818.364318310569,24.0,111,0.0,37,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,397.0,0.0,0.0,3,9,7.0,1,1.0 -7510,11491,1345.3499380355252,83.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48610.0,70.0,0.0,57960.0,0.0,0.0,1,6,5.0,3,0.0 -7511,11492,1783.5046767280808,65.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13970.0,0.0,0.0,13528.35,0.0,410.0,1,8,0.0,1,0.0 -7512,11494,1612.636386465368,54.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21917.55,0.0,23210.0,1,8,6.0,1,1.0 -7513,11496,2579.3011305580217,87.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26320.0,0.0,0.0,97926.45,0.0,0.0,5,6,4.0,1,0.0 -7514,11497,2627.99362058782,50.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,230.0,0.0,44932.75,0.0,52840.0,1,10,8.0,1,1.0 -7515,11500,1414.076116305597,39.0,111,0.0,47,3,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,57688.55,0.0,53440.0,3,9,7.0,5,3.0 -7516,11501,2968.613517916022,41.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45529.85,0.0,42500.0,2,10,8.0,4,2.0 -7517,11502,3147.06533459441,34.0,111,2050.0,65,1.0,1.0,4.0,2.1,0.0,3460.0,0.0,0.0,0.0,0.0,31331.4,0.0,18510.0,3,9,7.0,4,1.0 -7518,11504,2151.8953566354285,54.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,17190.0,0.0,0.0,51447.5,0.0,38620.0,1,6,5.0,2,2.0 -7519,11505,2039.0577531371193,28.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,8.0,0.0,34030.7,0.0,26220.0,3,5,4.0,4,2.0 -7520,11506,1320.6938837479925,69.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42630.0,136.0,0.0,50158.1,0.0,10620.0,1,5,0.0,3,0.0 -7521,11508,1514.121776910861,63.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22560.0,0.0,0.0,21511.25,0.0,0.0,1,6,0.0,1,0.0 -7522,11509,3006.815090242315,87.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19300.0,0.0,0.0,19226.55,0.0,0.0,1,8,6.0,3,0.0 -7523,11510,1757.0425059247104,55.0,400,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23290.4,0.0,22590.0,1,0,0.0,1,1.0 -7524,11511,1818.4982012764217,58.0,300,11760.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,7960.0,63.0,0.0,28923.6,0.0,9380.0,1,0,0.0,3,1.0 -7525,11512,2009.2453240535167,62.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24260.0,0.0,0.0,38716.3,0.0,9440.0,1,7,0.0,3,0.0 -7526,11513,6265.32008299066,47.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44896.05,0.0,35960.0,2,8,3.0,3,2.0 -7527,11514,3168.439655378887,21.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19763.65,0.0,9340.0,3,9,7.0,5,1.0 -7528,11515,6724.143598530216,37.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,60380.6,0.0,75590.0,3,10,8.0,1,1.0 -7529,11516,1543.001363060824,47.0,300,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,2760.0,0.0,0.0,22030.65,0.0,12970.0,3,0,0.0,2,1.0 -7530,11517,2395.489935416576,30.0,111,0.0,38,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21097.45,0.0,22220.0,1,7,5.0,1,1.0 -7531,11519,2197.562973830327,45.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24056.55,0.0,24180.0,3,9,7.0,1,1.0 -7532,11520,4456.268825223768,34.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,360.0,0.0,0.0,0.0,0.0,17996.55,120.0,15080.0,3,8,7.0,1,1.0 -7533,11522,1884.6805693609579,42.0,112,13100.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44404.4,0.0,33920.0,3,7,0.0,3,2.0 -7534,11523,3866.3103126382057,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35140.0,0.0,0.0,43109.0,0.0,12600.0,3,10,8.0,3,0.0 -7535,11526,2871.5719932180928,33.0,112,6140.0,21,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,75842.1,0.0,41510.0,5,7,1.0,4,2.0 -7536,11527,2160.477011376133,48.0,112,2100.0,46,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,55686.2,0.0,57210.0,1,9,1.0,4,3.0 -7537,11528,2534.5322276100073,55.0,120,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33389.55,0.0,34940.0,2,0,0.0,1,1.0 -7538,11530,2651.1519297124105,65.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,13050.0,37.0,0.0,76180.7,0.0,73790.0,3,10,8.0,3,2.0 -7539,11531,1730.9303931967884,69.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31030.0,346.0,0.0,30795.8,0.0,0.0,1,1,2.0,3,0.0 -7540,11533,2677.2416912515646,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18530.0,0.0,0.0,18141.65,0.0,0.0,2,9,7.0,1,0.0 -7541,11536,3630.1529691670526,22.0,111,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25930.0,0.0,25930.0,3,8,7.0,2,2.0 -7542,11538,2077.3275795647587,71.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22150.0,0.0,0.0,27469.6,0.0,0.0,1,9,2.0,3,0.0 -7543,11539,1755.2334452271277,53.0,112,21830.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53722.6,0.0,38610.0,2,9,1.0,3,1.0 -7544,11540,1476.3769557304458,36.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,550.0,0.0,0.0,0.0,0.0,17867.5,2530.0,12660.0,3,5,4.0,2,1.0 -7545,11541,3465.1961691834936,40.0,400,0.0,62,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,19453.9,0.0,17610.0,2,0,0.0,2,1.0 -7546,11545,3465.0911399998545,51.0,300,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,19260.0,0.0,0.0,34974.2,0.0,9190.0,2,0,0.0,4,2.0 -7547,11546,1925.2042434586995,69.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32570.0,0.0,0.0,30688.45,0.0,0.0,1,9,0.0,3,0.0 -7548,11547,2318.829361341189,64.0,111,0.0,78,0.0,0.0,1.0,1.0,1370.0,0.0,4280.0,4110.0,0.0,0.0,12736.0,0.0,0.0,3,7,5.0,1,0.0 -7549,11548,3081.3458995734663,52.0,111,0.0,38,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53387.75,0.0,56590.0,2,6,5.0,4,3.0 -7550,11549,2133.0868842401455,63.0,112,12400.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13217.15,0.0,0.0,1,9,0.0,1,1.0 -7551,11550,2191.3365673104113,74.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12910.0,526.0,15049.0,35610.9,0.0,0.0,3,9,7.0,1,0.0 -7552,11551,3134.3078786559604,35.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,20514.25,1200.0,17880.0,3,10,8.0,2,1.0 -7553,11552,3049.63026362185,34.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48983.45,0.0,47270.0,2,10,8.0,4,2.0 -7554,11554,2796.353645952776,69.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16090.0,0.0,0.0,17695.7,0.0,150.0,2,0,0.0,3,0.0 -7555,11555,1752.8998816891942,61.0,112,9120.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,36000.0,0.0,0.0,54716.7,0.0,10960.0,1,6,0.0,4,1.0 -7556,11558,4484.705235961941,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14760.0,0.0,0.0,14627.7,0.0,0.0,1,8,6.0,1,0.0 -7557,11561,3678.866327254831,29.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22199.0,0.0,20160.0,3,8,6.0,4,2.0 -7558,11562,2618.461092494148,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12470.0,0.0,0.0,12163.0,0.0,0.0,1,6,4.0,1,0.0 -7559,11563,2828.560434504865,61.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38617.95,0.0,42300.0,5,9,7.0,3,2.0 -7560,11566,2266.652871442527,56.0,211,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20263.4,0.0,21520.0,1,1,2.0,1,1.0 -7561,11567,3236.3143636880145,50.0,112,250.0,85,1.0,1.0,3.0,2.0,0.0,0.0,0.0,21830.0,0.0,0.0,27521.6,0.0,4570.0,1,6,0.0,4,1.0 -7562,11568,2936.1852742593483,77.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14770.0,0.0,0.0,14766.65,0.0,0.0,1,0,0.0,1,0.0 -7563,11569,3904.412832342617,52.0,111,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20790.0,0.0,0.0,64241.8,0.0,46170.0,1,8,6.0,3,1.0 -7564,11572,897.7490242153904,69.0,111,2750.0,74,2.0,1.0,4.0,2.5,730.0,0.0,0.0,33590.0,444.0,0.0,71254.0,0.0,42090.0,1,10,8.0,5,2.0 -7565,11574,1415.0078190619047,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32430.0,0.0,0.0,31486.05,0.0,0.0,1,8,6.0,3,0.0 -7566,11575,2869.9265630293453,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18190.0,0.0,0.0,17839.85,0.0,0.0,3,6,5.0,1,0.0 -7567,11576,1783.0072739083462,84.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16770.0,0.0,0.0,16787.0,0.0,0.0,5,0,0.0,3,0.0 -7568,11577,4306.762763469834,25.0,112,2940.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44676.0,0.0,26170.0,3,5,0.0,4,2.0 -7569,11578,1291.2292101057972,31.0,111,2030.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40532.45,0.0,34710.0,2,9,7.0,4,2.0 -7570,11580,2895.2994806120664,55.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50591.8,0.0,52020.0,2,10,0.0,3,2.0 -7571,11581,4508.944646925959,74.0,111,8870.0,78,1.0,0.0,3.0,2.0,0.0,470.0,0.0,22220.0,0.0,0.0,32112.45,0.0,1410.0,3,9,7.0,4,1.0 -7572,11582,2971.944357925941,78.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20180.0,0.0,0.0,19704.2,0.0,0.0,1,9,0.0,3,0.0 -7573,11584,2850.6168441743835,32.0,112,0.0,55,2.0,0.0,4.0,2.1,0.0,5040.0,0.0,0.0,0.0,0.0,10871.15,2220.0,1670.0,2,10,0.0,4,2.0 -7574,11585,3000.787231380257,55.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36291.25,0.0,39000.0,5,10,8.0,3,2.0 -7575,11587,3437.5673858388604,21.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19734.7,0.0,17040.0,3,8,7.0,1,1.0 -7576,11591,1632.429612082951,63.0,300,2110.0,72,1.0,0.0,3.0,2.0,0.0,0.0,0.0,13050.0,0.0,0.0,25004.45,0.0,10610.0,1,0,0.0,4,1.0 -7577,11592,2539.5879003457594,82.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22110.0,0.0,0.0,21292.25,0.0,0.0,3,8,7.0,1,0.0 -7578,11593,3427.8484502936703,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29170.0,0.0,0.0,29452.2,0.0,0.0,5,10,8.0,1,0.0 -7579,11594,2814.2151998455447,73.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21830.0,0.0,0.0,24592.8,0.0,0.0,5,9,3.0,1,0.0 -7580,11595,3403.1139654158637,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15850.0,0.0,0.0,15909.0,0.0,0.0,3,8,7.0,1,0.0 -7581,11597,4350.047173986826,60.0,221,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,64847.5,0.0,17860.0,2,1,1.0,3,2.0 -7582,11599,1439.0974587518851,67.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27410.0,0.0,0.0,29921.65,0.0,0.0,1,7,6.0,1,0.0 -7583,11602,3687.8302207467145,29.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14295.0,0.0,14720.0,3,10,8.0,1,1.0 -7584,11603,3210.4840415226927,40.0,221,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15422.25,200.0,8480.0,3,1,2.0,2,1.0 -7585,11607,2356.867405566215,45.0,111,0.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50433.0,0.0,51000.0,1,8,7.0,4,3.0 -7586,11610,1413.8662182543787,50.0,111,1530.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,14620.25,380.0,9870.0,1,9,7.0,2,1.0 -7587,11611,2826.544038092354,90.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9640.0,0.0,0.0,9202.55,0.0,0.0,1,9,7.0,1,0.0 -7588,11612,1907.782296863941,41.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22788.9,400.0,22200.0,3,6,5.0,3,2.0 -7589,11613,2981.237686319186,52.0,111,0.0,63,3,5.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,74874.9,0.0,77890.0,3,10,8.0,4,5.0 -7590,11615,3972.0311190829143,39.0,221,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35815.65,0.0,38150.0,2,1,2.0,4,2.0 -7591,11616,3119.2319454254757,75.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9400.0,0.0,0.0,9551.05,0.0,0.0,1,0,0.0,1,0.0 -7592,11617,1304.1811661974587,60.0,111,0.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,719.0,0.0,162522.7,0.0,148950.0,1,10,8.0,4,2.0 -7593,11618,1967.705624357852,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38700.0,0.0,0.0,39739.05,0.0,0.0,2,7,4.0,3,0.0 -7594,11619,2193.0817433202355,46.0,111,0.0,56,2.0,0.0,2.0,1.5,0.0,6400.0,0.0,0.0,0.0,0.0,8646.8,0.0,1920.0,1,8,7.0,3,2.0 -7595,11622,1689.8592036387743,56.0,111,0.0,68,3,1.0,3.0,2.0,0.0,9920.0,0.0,0.0,0.0,0.0,22535.0,0.0,12420.0,3,10,8.0,2,3.0 -7596,11624,1304.5007029820258,69.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12800.0,0.0,0.0,12853.0,0.0,0.0,3,0,1.0,1,0.0 -7597,11625,875.3010390159945,46.0,112,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43914.8,0.0,39640.0,1,8,0.0,4,2.0 -7598,11629,2068.513480379196,63.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24510.0,0.0,0.0,23847.0,0.0,0.0,1,1,2.0,3,0.0 -7599,11630,2838.2985177301844,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23870.0,0.0,0.0,20296.9,0.0,0.0,1,6,0.0,1,0.0 -7600,11631,2551.6165501150035,31.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,5,8,7.0,1,1.0 -7601,11633,1492.9072398051744,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13590.0,0.0,0.0,13624.0,0.0,0.0,3,7,5.0,1,0.0 -7602,11635,2227.3043730809486,37.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,74986.95,0.0,79960.0,2,10,8.0,3,2.0 -7603,11636,3928.2813099940854,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11850.0,18.0,0.0,11407.65,0.0,0.0,1,10,8.0,1,0.0 -7604,11637,2387.0682497352077,57.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30037.95,0.0,31990.0,1,6,4.0,3,1.0 -7605,11639,3318.18285477914,48.0,111,0.0,85,0.0,0.0,1.0,1.0,13050.0,0.0,0.0,0.0,0.0,0.0,15958.0,0.0,0.0,3,9,7.0,1,0.0 -7606,11640,2832.404450907986,55.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,37.0,0.0,28822.05,0.0,32110.0,3,8,7.0,1,1.0 -7607,11641,3354.9078491860128,38.0,111,0.0,81,1.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,13918.0,0.0,0.0,3,9,7.0,1,1.0 -7608,11643,2297.7563411732535,27.0,112,6620.0,52,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41927.9,0.0,30430.0,3,10,1.0,4,2.0 -7609,11644,2889.441062208737,54.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27692.2,0.0,30750.0,3,9,7.0,1,1.0 -7610,11647,1658.3328347824356,63.0,300,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,23400.0,0.0,0.0,31172.95,0.0,8090.0,1,0,0.0,3,1.0 -7611,11649,1143.5479976990002,46.0,221,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,8810.0,0.0,0.0,0.0,26962.9,0.0,19490.0,1,1,3.0,2,1.0 -7612,11650,3209.0563405473936,25.0,111,110.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33867.55,0.0,33500.0,3,9,7.0,3,2.0 -7613,11651,3872.978279617956,25.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30076.0,0.0,24690.0,4,10,8.0,1,1.0 -7614,11653,3015.065271494822,68.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15320.0,0.0,0.0,14983.35,0.0,0.0,1,7,0.0,1,0.0 -7615,11654,1688.122249862574,87.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19250.0,0.0,0.0,18508.45,0.0,0.0,1,6,5.0,3,0.0 -7616,11656,2105.238347765627,37.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30666.55,0.0,29070.0,2,8,0.0,4,2.0 -7617,11657,3579.3214147032463,33.0,111,0.0,55,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27470.85,0.0,26670.0,1,9,7.0,4,2.0 -7618,11658,3113.195739116531,62.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26650.0,14.0,0.0,42990.6,0.0,18870.0,3,9,7.0,3,1.0 -7619,11659,2073.3868959683764,36.0,112,8790.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,105.0,0.0,55294.2,0.0,43890.0,2,9,0.0,4,2.0 -7620,11666,3498.455931031536,37.0,112,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,22.0,0.0,105133.85,0.0,102440.0,2,7,0.0,4,2.0 -7621,11667,3118.2581064417554,87.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,490.0,23930.0,0.0,0.0,23836.95,0.0,0.0,5,9,7.0,5,0.0 -7622,11669,2361.444216652082,67.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33040.0,0.0,0.0,30397.5,0.0,0.0,1,0,2.0,3,0.0 -7623,11670,1874.8737663505945,51.0,111,0.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45900.85,0.0,47630.0,1,8,7.0,4,2.0 -7624,11672,3343.592488423902,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,687.5999999999999,0.0,0.0,3,9,7.0,1,0.0 -7625,11674,1996.3179531714338,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30510.0,0.0,0.0,28905.3,0.0,0.0,1,10,8.0,3,0.0 -7626,11675,1916.4568923033025,33.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,33.0,0.0,40754.25,0.0,42400.0,5,7,5.0,3,2.0 -7627,11676,1393.1624609830212,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21890.0,0.0,0.0,22945.15,0.0,0.0,5,8,6.0,3,0.0 -7628,11677,1162.681721064473,45.0,221,0.0,63,1.0,1.0,6.0,3.1,0.0,440.0,0.0,0.0,0.0,0.0,32113.3,3680.0,14510.0,3,1,2.0,4,1.0 -7629,11680,1282.2317969416865,52.0,111,3150.0,54,3,1.0,3.0,2.0,0.0,2620.0,0.0,0.0,0.0,0.0,24366.3,0.0,20530.0,1,9,7.0,4,3.0 -7630,11681,1580.920505216747,54.0,111,10650.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,36061.9,0.0,27500.0,3,10,8.0,4,2.0 -7631,11684,2682.715346082845,24.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19854.05,0.0,21280.0,3,8,7.0,1,1.0 -7632,11685,2924.6345136920295,27.0,120,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40574.05,0.0,37800.0,2,0,3.0,4,2.0 -7633,11687,2722.6298470741694,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11420.0,0.0,0.0,11420.0,0.0,0.0,3,7,5.0,1,0.0 -7634,11690,1702.54863947325,62.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34090.0,0.0,0.0,32136.6,0.0,0.0,1,7,0.0,3,0.0 -7635,11691,3867.882603156059,92.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10950.0,0.0,0.0,13042.0,0.0,0.0,3,9,7.0,1,0.0 -7636,11692,2898.1852356379677,50.0,211,0.0,68,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18249.8,0.0,16950.0,3,1,2.0,4,1.0 -7637,11693,3341.6231798340054,26.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20481.0,0.0,19170.0,3,7,5.0,1,1.0 -7638,11694,4046.9388232470674,67.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14430.0,0.0,0.0,15825.0,0.0,0.0,3,1,2.0,3,0.0 -7639,11696,2845.309021124487,82.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18800.0,0.0,0.0,17970.4,0.0,0.0,1,7,1.0,1,0.0 -7640,11697,1825.3466609780373,44.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,22727.2,120.0,18110.0,2,9,7.0,4,2.0 -7641,11699,4377.526054582167,79.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,15990.0,0.0,0.0,30812.35,0.0,10550.0,1,5,4.0,5,1.0 -7642,11700,1816.775274528026,57.0,111,28560.0,85,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27925.65,0.0,0.0,1,8,7.0,4,0.0 -7643,11701,3773.7984042749936,25.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20851.0,0.0,21980.0,3,9,7.0,5,1.0 -7644,11702,2921.025870973426,46.0,112,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,55025.2,0.0,56170.0,1,7,0.0,4,2.0 -7645,11703,2882.721546122712,43.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56303.7,0.0,56230.0,1,10,8.0,4,2.0 -7646,11704,1599.5667820485921,69.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48780.0,0.0,0.0,44840.1,0.0,0.0,1,0,0.0,3,0.0 -7647,11705,6193.221009766054,78.0,111,7040.0,78,1.0,0.0,3.0,2.0,0.0,0.0,0.0,13700.0,0.0,0.0,19203.55,0.0,340.0,1,10,8.0,4,1.0 -7648,11706,2844.9025180628346,60.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17690.0,0.0,0.0,16500.6,0.0,0.0,1,9,7.0,1,0.0 -7649,11707,1652.6198802412919,60.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,4520.0,0.0,3750.0,0.0,0.0,8437.05,160.0,0.0,1,7,5.0,1,0.0 -7650,11709,2159.8052722776124,31.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49692.35,0.0,44100.0,2,10,0.0,4,2.0 -7651,11711,1731.506444460453,55.0,400,16250.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18902.35,0.0,4470.0,2,0,0.0,1,1.0 -7652,11712,3691.4173727099333,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4686.15,0.0,0.0,3,9,7.0,1,0.0 -7653,11714,1395.5195007453417,44.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,62843.0,0.0,64040.0,2,9,7.0,4,2.0 -7654,11715,2453.0234364343087,58.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13710.0,0.0,0.0,13373.8,0.0,0.0,1,0,1.0,1,0.0 -7655,11716,1271.873567448219,50.0,112,6940.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39349.65,0.0,30810.0,2,8,1.0,4,1.0 -7656,11717,3090.9429231939635,34.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16449.35,0.0,17660.0,4,9,7.0,1,1.0 -7657,11719,2486.9340720776468,40.0,111,15870.0,55,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,49705.0,0.0,27380.0,2,8,7.0,4,2.0 -7658,11720,3648.121486632647,45.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34369.0,0.0,39420.0,3,10,8.0,1,1.0 -7659,11722,5109.600708203153,38.0,111,7450.0,68,1.0,0.0,2.0,1.5,0.0,250.0,0.0,0.0,0.0,0.0,12694.3,680.0,0.0,3,5,4.0,2,1.0 -7660,11725,1902.199249874934,57.0,300,0.0,77,2.0,2.0,3.0,2.0,0.0,0.0,0.0,13090.0,0.0,0.0,96388.85,0.0,88510.0,1,0,0.0,4,2.0 -7661,11726,2859.1234158062916,46.0,111,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,266.0,0.0,61764.3,0.0,59410.0,5,9,7.0,4,2.0 -7662,11727,2864.6086969966536,52.0,120,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18510.0,0.0,0.0,39893.2,0.0,26060.0,1,0,3.0,3,1.0 -7663,11730,3201.498869310514,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28720.0,0.0,0.0,27745.4,0.0,0.0,3,10,8.0,3,0.0 -7664,11734,1328.706036295306,37.0,112,0.0,52,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,45839.25,0.0,23250.0,2,7,1.0,4,2.0 -7665,11735,2456.1436049060508,22.0,212,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15796.0,0.0,12820.0,3,3,0.0,1,1.0 -7666,11737,2255.7968804820634,60.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19550.0,0.0,0.0,36236.75,0.0,18410.0,2,9,7.0,3,1.0 -7667,11738,2194.5434318499474,44.0,111,12070.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,52.0,0.0,52950.5,0.0,36600.0,2,9,7.0,4,2.0 -7668,11739,3140.254515312898,77.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1960.0,0.0,0.0,565.1499999999999,0.0,0.0,1,9,7.0,1,0.0 -7669,11740,2349.0302359147886,63.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,73788.95,0.0,90070.0,1,9,7.0,3,2.0 -7670,11741,5634.528286466163,58.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,71555.35,0.0,90560.0,1,10,8.0,3,2.0 -7671,11743,7467.858043762015,54.0,400,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29637.35,0.0,30740.0,2,0,1.0,4,2.0 -7672,11745,3333.3624074821923,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15410.0,0.0,0.0,15328.75,0.0,0.0,1,6,4.0,1,0.0 -7673,11746,3133.556994549288,35.0,400,0.0,47,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30838.15,0.0,28370.0,2,0,0.0,4,2.0 -7674,11748,3931.7982188218134,26.0,111,3680.0,43,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34088.95,0.0,20610.0,3,9,7.0,4,1.0 -7675,11752,3530.900119938779,57.0,111,7290.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35208.85,0.0,29020.0,2,9,7.0,4,2.0 -7676,11753,3168.6336871671206,53.0,120,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25542.15,0.0,25930.0,5,0,3.0,1,1.0 -7677,11755,2023.7990107953283,50.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42410.95,0.0,46010.0,3,8,7.0,3,2.0 -7678,11756,2196.9053151532958,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,110800.0,3203.0,0.0,96097.65,0.0,0.0,1,10,8.0,3,0.0 -7679,11757,2455.8649763412295,50.0,120,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,12357.05,0.0,10170.0,1,0,2.0,4,1.0 -7680,11760,1907.1978786536035,59.0,111,19650.0,38,2.0,0.0,3.0,2.0,7690.0,0.0,0.0,0.0,0.0,0.0,25782.4,0.0,0.0,1,10,8.0,4,2.0 -7681,11761,3419.5864426352855,63.0,111,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,741.0,0.0,30634.25,0.0,0.0,1,10,8.0,2,1.0 -7682,11762,2254.672225825294,51.0,120,8320.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44637.05,0.0,36850.0,2,0,0.0,3,2.0 -7683,11763,2779.6355144995105,50.0,112,0.0,52,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45504.3,0.0,48090.0,2,9,1.0,4,3.0 -7684,11764,2621.0486126990572,58.0,111,820.0,68,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,41.0,0.0,74845.55,0.0,31150.0,2,8,7.0,4,4.0 -7685,11765,1380.2549325543048,52.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15280.0,3.0,0.0,48227.05,0.0,36490.0,1,7,5.0,2,1.0 -7686,11766,2476.437538603946,54.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40612.15,0.0,40540.0,3,10,8.0,4,2.0 -7687,11767,4590.454516006102,58.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14840.0,19.0,0.0,36105.1,0.0,24450.0,1,7,5.0,3,1.0 -7688,11768,1938.495926618072,44.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48690.1,0.0,44320.0,1,9,0.0,4,2.0 -7689,11769,2099.7480550750083,37.0,111,0.0,38,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42691.1,0.0,40590.0,2,6,4.0,4,3.0 -7690,11770,4236.884973857132,25.0,111,0.0,55,1.0,0.0,3.0,1.6,0.0,4960.0,0.0,0.0,0.0,0.0,15748.0,0.0,0.0,3,9,7.0,2,1.0 -7691,11773,1713.579098271941,51.0,111,0.0,54,2.0,1.0,5.0,3.0,0.0,5380.0,0.0,0.0,0.0,0.0,25177.9,4830.0,14930.0,1,10,8.0,5,2.0 -7692,11775,2588.5823764406646,35.0,400,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23598.75,0.0,19780.0,2,0,0.0,1,1.0 -7693,11776,2354.454953656295,50.0,111,0.0,52,3,3.0,3.0,2.0,0.0,820.0,0.0,0.0,0.0,0.0,37358.25,1300.0,29250.0,3,9,7.0,2,3.0 -7694,11777,2512.239463468773,77.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21620.0,0.0,0.0,21790.05,0.0,0.0,1,3,4.0,3,0.0 -7695,11779,3802.9604841584046,33.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31449.45,0.0,36770.0,2,9,7.0,1,1.0 -7696,11780,3138.992827949501,23.0,111,7530.0,46,1.0,0.0,1.0,1.0,9430.0,0.0,0.0,0.0,0.0,0.0,22686.0,0.0,2280.0,3,9,7.0,1,1.0 -7697,11781,2504.213792920182,81.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10330.0,0.0,0.0,15891.8,0.0,0.0,1,0,0.0,1,0.0 -7698,11783,1647.0722777086721,35.0,212,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46717.75,0.0,20820.0,2,3,0.0,4,2.0 -7699,11784,2975.133897555974,20.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6580.0,0.0,2360.0,3,5,4.0,1,1.0 -7700,11785,1993.542939378462,44.0,300,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,2084.15,0.0,26680.0,1,0,0.0,4,2.0 -7701,11786,1606.827567953401,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26880.0,0.0,0.0,27160.05,0.0,1270.0,1,9,7.0,3,0.0 -7702,11787,4387.172452883238,24.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17239.75,0.0,17890.0,3,4,3.0,1,1.0 -7703,11790,3934.588456530853,95.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28430.0,0.0,0.0,28583.15,0.0,0.0,3,9,7.0,3,0.0 -7704,11791,2099.539926976304,54.0,112,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,77401.0,0.0,80120.0,2,10,4.0,4,2.0 -7705,11793,2648.6404156064204,79.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18250.0,0.0,0.0,17226.0,0.0,0.0,1,0,0.0,1,0.0 -7706,11795,1238.3529735215682,61.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31290.0,0.0,0.0,29383.6,0.0,0.0,2,5,4.0,3,0.0 -7707,11796,3379.9891959084975,39.0,112,0.0,22,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,3639.9,2270.0,0.0,2,8,0.0,2,1.0 -7708,11797,3771.537181974064,41.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,67003.55,0.0,61270.0,2,8,6.0,4,2.0 -7709,11798,2692.3175334485873,43.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23449.2,0.0,24880.0,1,8,0.0,1,1.0 -7710,11800,1810.7674714737761,49.0,112,0.0,85,0.0,0.0,3.0,1.8,0.0,7950.0,0.0,0.0,0.0,0.0,13100.0,0.0,0.0,3,8,0.0,2,0.0 -7711,11801,8089.903221038263,23.0,211,0.0,67,1.0,0.0,2.0,1.3,0.0,6220.0,0.0,0.0,0.0,0.0,14090.0,0.0,2120.0,3,2,3.0,2,1.0 -7712,11802,2954.1368261415505,48.0,300,3340.0,68,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18442.15,0.0,0.0,1,0,0.0,2,1.0 -7713,11803,2108.8628646764155,65.0,112,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,2120.0,142.0,0.0,62456.25,0.0,66040.0,1,8,0.0,4,2.0 -7714,11804,1243.8925440680741,61.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40660.0,0.0,0.0,94996.1,0.0,69350.0,1,9,7.0,3,0.0 -7715,11805,2352.095661520782,43.0,111,0.0,54,2.0,2.0,4.0,2.3,0.0,270.0,0.0,0.0,0.0,0.0,33479.7,2170.0,20580.0,3,7,5.0,5,2.0 -7716,11806,1400.241329222649,43.0,300,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1050.0,0.0,26401.05,0.0,33880.0,2,0,0.0,1,1.0 -7717,11807,1903.369095953496,47.0,112,0.0,37,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38699.75,0.0,42370.0,3,10,0.0,4,2.0 -7718,11808,2405.235589635302,49.0,111,0.0,67,1.0,1.0,1.0,1.0,1450.0,0.0,0.0,0.0,0.0,0.0,14398.0,0.0,12000.0,3,5,4.0,1,1.0 -7719,11811,1434.4470464255887,87.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27090.0,0.0,0.0,26354.55,0.0,0.0,1,1,3.0,3,0.0 -7720,11812,1964.826942609201,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33090.0,0.0,0.0,31708.45,0.0,0.0,2,9,0.0,3,0.0 -7721,11813,2964.356133522648,54.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9620.0,7.0,0.0,12322.0,0.0,0.0,3,8,7.0,1,0.0 -7722,11816,1760.3257328063223,52.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,7800.5,0.0,6890.0,2,0,0.0,1,1.0 -7723,11817,3383.2046535629815,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24150.0,0.0,0.0,24047.8,0.0,0.0,1,8,7.0,3,0.0 -7724,11819,995.8685073647486,50.0,112,25390.0,23,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,137573.8,0.0,106620.0,2,6,0.0,4,2.0 -7725,11820,1451.461301868321,62.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27330.0,275.0,0.0,51118.3,0.0,8690.0,1,7,6.0,3,1.0 -7726,11821,8341.563339660568,27.0,111,3930.0,56,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32147.7,0.0,19220.0,3,6,4.0,4,2.0 -7727,11822,3697.307285264527,46.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28161.35,0.0,29230.0,2,9,7.0,2,1.0 -7728,11823,1094.0600021085656,54.0,112,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,219.0,0.0,80383.35,0.0,5630.0,1,10,4.0,3,2.0 -7729,11824,1931.845904274024,63.0,112,2720.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17630.0,0.0,0.0,18476.3,0.0,0.0,1,6,0.0,3,0.0 -7730,11825,1675.087257263808,40.0,300,11500.0,21,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,38423.8,0.0,0.0,2,0,0.0,4,1.0 -7731,11827,3277.370731852173,85.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25380.0,0.0,0.0,24312.7,0.0,0.0,1,9,7.0,1,0.0 -7732,11830,1979.793218849561,52.0,211,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16637.55,0.0,0.0,1,4,4.0,1,1.0 -7733,11831,2241.868992804478,29.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14712.1,0.0,15540.0,3,0,0.0,1,1.0 -7734,11832,2333.8134069107864,49.0,300,0.0,11,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22757.05,0.0,13110.0,2,0,0.0,4,2.0 -7735,11833,987.8034108871612,57.0,300,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,33.0,0.0,67215.8,0.0,70430.0,1,0,0.0,3,2.0 -7736,11835,2459.558228809661,85.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9600.0,0.0,0.0,9430.5,0.0,0.0,1,0,0.0,1,0.0 -7737,11839,2597.8659254913437,44.0,112,3340.0,47,2.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,54373.2,0.0,43820.0,2,9,3.0,4,2.0 -7738,11840,2076.320505326403,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39590.0,266.0,0.0,36548.85,0.0,0.0,1,8,0.0,3,0.0 -7739,11842,2910.9572688896924,53.0,111,0.0,42,1.0,1.0,2.0,1.5,8380.0,0.0,0.0,3240.0,0.0,0.0,21605.3,0.0,10310.0,3,5,4.0,2,1.0 -7740,11843,2782.863432859991,63.0,111,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,49780.0,0.0,0.0,53108.6,0.0,7970.0,1,10,8.0,4,0.0 -7741,11844,3163.118621911298,43.0,112,880.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20848.05,0.0,19080.0,3,10,2.0,2,2.0 -7742,11845,2342.0074264955874,48.0,111,2600.0,67,1.0,1.0,1.0,1.0,0.0,810.0,0.0,0.0,0.0,0.0,9080.75,1300.0,3680.0,3,7,5.0,1,1.0 -7743,11846,3215.3892066694666,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21190.0,0.0,0.0,22539.35,0.0,0.0,1,6,4.0,3,0.0 -7744,11847,2561.088402096456,64.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23860.0,0.0,0.0,21325.25,0.0,0.0,1,0,0.0,3,0.0 -7745,11848,3036.7959236545653,85.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9260.0,0.0,0.0,18430.9,0.0,0.0,1,8,7.0,1,0.0 -7746,11849,2776.5154470549473,48.0,111,0.0,85,1.0,0.0,3.0,1.8,0.0,6690.0,0.0,0.0,0.0,0.0,12754.0,0.0,0.0,3,9,7.0,2,1.0 -7747,11850,2371.0640768138023,52.0,111,6500.0,64,1.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,30025.05,0.0,8140.0,3,10,8.0,4,1.0 -7748,11852,1124.48660368016,59.0,111,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61877.4,0.0,62220.0,1,9,7.0,4,2.0 -7749,11853,3226.4221119588356,31.0,111,2930.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11587.55,0.0,5610.0,3,8,7.0,1,1.0 -7750,11854,4067.535010851042,56.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4750.0,0.0,0.0,23907.45,0.0,21290.0,1,9,7.0,1,1.0 -7751,11855,3013.5965300500907,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7402.35,0.0,1740.0,3,6,4.0,1,0.0 -7752,11856,5606.378658737888,70.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45780.0,0.0,0.0,45455.0,0.0,0.0,1,9,2.0,3,0.0 -7753,11858,1420.1748053830331,47.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44303.0,0.0,45210.0,1,6,5.0,4,2.0 -7754,11859,3414.5305886630904,46.0,111,0.0,45,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29218.0,0.0,26290.0,2,9,7.0,2,1.0 -7755,11860,4215.577505674881,35.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,253.0,17335.0,95181.5,0.0,0.0,3,10,8.0,1,1.0 -7756,11861,2913.7252814956355,84.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6560.0,0.0,0.0,9096.7,0.0,0.0,1,0,0.0,1,0.0 -7757,11863,2576.8969295877846,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,4210.0,32450.0,0.0,0.0,34771.1,0.0,0.0,3,7,6.0,3,0.0 -7758,11865,3279.2993695745513,36.0,111,4040.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17146.0,0.0,11540.0,3,7,6.0,1,1.0 -7759,11866,4307.427113270783,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3312.0,0.0,0.0,3,9,7.0,1,0.0 -7760,11867,1894.665343307374,61.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44602.2,0.0,40420.0,2,9,7.0,1,1.0 -7761,11870,2870.3865577603256,59.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42962.75,0.0,40910.0,1,10,8.0,1,1.0 -7762,11871,1035.364826154803,55.0,111,0.0,54,3,3.0,4.0,2.5,6270.0,5990.0,0.0,0.0,0.0,0.0,64702.0,940.0,56840.0,3,7,5.0,4,3.0 -7763,11872,2571.365394191593,51.0,111,18250.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38005.25,0.0,20910.0,1,9,7.0,3,2.0 -7764,11874,3587.8124362788917,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16220.0,0.0,0.0,17188.0,0.0,0.0,3,10,8.0,1,0.0 -7765,11875,1469.7693347057066,71.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28940.0,0.0,0.0,27368.7,0.0,0.0,1,7,0.0,3,0.0 -7766,11876,2188.222984810959,62.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,4963.0,0.0,0.0,1,6,5.0,1,0.0 -7767,11878,2030.1242804999747,25.0,112,1530.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23000.9,0.0,17290.0,3,10,4.0,3,1.0 -7768,11880,3763.903688478566,57.0,111,0.0,78,1.0,0.0,2.0,1.5,7060.0,5080.0,0.0,2940.0,0.0,0.0,18459.0,0.0,0.0,3,10,8.0,3,1.0 -7769,11881,1783.6335257755288,37.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46231.65,0.0,42320.0,1,8,7.0,4,2.0 -7770,11885,3330.3882996979187,29.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26870.0,0.0,29500.0,3,8,7.0,1,1.0 -7771,11886,1729.6049261219182,45.0,111,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,5.0,0.0,155532.8,0.0,178740.0,2,10,8.0,4,2.0 -7772,11888,2745.953237228292,55.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25681.95,0.0,27500.0,3,9,7.0,3,2.0 -7773,11889,4786.963008343521,54.0,120,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33061.7,0.0,35470.0,1,0,0.0,3,2.0 -7774,11892,2724.3699243993656,56.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,7750.0,0.0,0.0,21274.8,0.0,15790.0,1,10,8.0,2,2.0 -7775,11894,4565.223291269515,22.0,111,0.0,84,0.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8400.0,0.0,0.0,4,9,7.0,1,0.0 -7776,11896,2598.995645342695,22.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14359.0,0.0,11190.0,3,5,4.0,1,1.0 -7777,11898,3664.5709489694877,57.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27605.05,0.0,30790.0,3,9,7.0,1,1.0 -7778,11899,3744.153014861146,34.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,856.15,0.0,1460.0,3,10,8.0,1,1.0 -7779,11900,3789.7563512350994,57.0,111,12070.0,77,0.0,0.0,3.0,2.0,10010.0,0.0,0.0,0.0,0.0,0.0,26028.0,0.0,0.0,3,8,7.0,4,0.0 -7780,11901,2413.564099583958,39.0,111,3040.0,56,1.0,1.0,3.0,1.6,0.0,2000.0,0.0,0.0,0.0,0.0,18869.0,0.0,900.0,3,9,7.0,2,1.0 -7781,11902,1791.5776475211114,32.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38938.15,0.0,40130.0,3,9,2.0,4,2.0 -7782,11904,2395.9821183104214,62.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5540.0,0.0,0.0,5384.35,0.0,0.0,1,0,0.0,1,0.0 -7783,11908,1136.506191515843,44.0,112,0.0,67,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,54675.6,0.0,49670.0,1,7,1.0,4,3.0 -7784,11909,1365.5637275608976,48.0,111,0.0,67,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38217.7,0.0,40210.0,3,9,7.0,4,2.0 -7785,11910,1186.5438631334353,47.0,111,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,24.0,0.0,55399.75,0.0,32950.0,5,6,5.0,4,2.0 -7786,11911,2795.2467105951414,38.0,111,0.0,47,1.0,1.0,4.0,2.3,0.0,0.0,0.0,13300.0,0.0,0.0,36695.9,0.0,22260.0,5,9,7.0,4,1.0 -7787,11913,2977.9094984831604,65.0,111,0.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,20410.0,0.0,0.0,41550.7,0.0,21380.0,3,9,7.0,1,1.0 -7788,11920,4774.638847459453,25.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58781.9,0.0,63430.0,2,9,1.0,3,2.0 -7789,11922,3194.684594022862,75.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22640.0,8.0,0.0,33730.85,0.0,0.0,1,10,8.0,3,0.0 -7790,11923,3199.1467425607793,29.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14474.05,0.0,15290.0,3,10,8.0,1,1.0 -7791,11924,3157.1671119145444,28.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35310.05,0.0,16620.0,3,7,4.0,4,2.0 -7792,11925,3522.4259792368834,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28520.0,0.0,0.0,25613.5,0.0,0.0,3,10,8.0,1,0.0 -7793,11928,3062.280984779802,48.0,221,1740.0,52,1.0,1.0,3.0,1.8,0.0,5730.0,0.0,0.0,0.0,0.0,24985.0,0.0,13630.0,3,1,2.0,5,1.0 -7794,11930,1156.1198650835038,76.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23260.0,0.0,0.0,23637.4,0.0,0.0,1,5,0.0,3,0.0 -7795,11931,2554.502555878154,44.0,111,0.0,37,3,3.0,7.0,3.6,0.0,860.0,0.0,0.0,0.0,0.0,87514.35,280.0,76080.0,3,9,7.0,5,3.0 -7796,11932,2025.6242257018578,62.0,111,0.0,68,2.0,2.0,3.0,2.0,0.0,0.0,3970.0,21030.0,433.0,0.0,42168.6,0.0,10030.0,1,9,7.0,5,2.0 -7797,11934,5276.745498458597,29.0,111,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25596.0,50.0,13820.0,3,10,8.0,4,1.0 -7798,11935,2292.414155705478,52.0,400,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24338.1,0.0,2870.0,1,0,0.0,5,2.0 -7799,11937,2704.2192878539754,27.0,111,0.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,930.0,0.0,0.0,29448.2,0.0,28860.0,3,8,7.0,3,2.0 -7800,11938,2793.2816644063105,41.0,300,2790.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49877.05,0.0,48330.0,2,0,0.0,4,2.0 -7801,11939,2352.079968565843,26.0,400,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36765.8,0.0,38500.0,3,0,0.0,3,2.0 -7802,11941,1332.2060727757107,67.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30910.0,0.0,0.0,28869.6,0.0,380.0,1,1,3.0,3,0.0 -7803,11942,1749.9631241175484,42.0,112,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27991.4,0.0,26590.0,1,7,1.0,4,2.0 -7804,11943,3815.52936171504,32.0,112,4630.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34483.6,0.0,28690.0,2,5,0.0,4,2.0 -7805,11944,2803.5797322610074,66.0,111,4000.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22030.0,434.0,0.0,27478.4,0.0,3280.0,1,8,7.0,3,1.0 -7806,11945,2997.5129596005354,43.0,111,1820.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35691.45,0.0,33240.0,2,8,7.0,4,2.0 -7807,11946,1320.003629293141,50.0,111,0.0,37,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,58.0,0.0,78300.65,0.0,88560.0,1,7,5.0,4,3.0 -7808,11947,3162.3164244988184,59.0,120,11690.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15210.0,0.0,0.0,26521.55,0.0,0.0,1,0,2.0,3,0.0 -7809,11948,2177.6508517653315,49.0,111,490.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49024.65,0.0,46350.0,3,10,8.0,4,2.0 -7810,11949,1802.3631007445429,74.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22650.0,0.0,0.0,22144.95,0.0,0.0,1,0,0.0,3,0.0 -7811,11951,3246.4227950252707,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15860.0,0.0,0.0,15695.0,0.0,0.0,1,9,7.0,3,0.0 -7812,11953,3403.9940037708884,33.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,22.0,0.0,44664.1,0.0,18300.0,2,7,0.0,4,2.0 -7813,11954,4062.0720453625663,61.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,41354.0,0.0,43830.0,5,10,8.0,1,1.0 -7814,11956,2963.5414684451416,37.0,400,0.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,3361.95,0.0,0.0,1,0,0.0,2,1.0 -7815,11957,2311.1109785114745,37.0,112,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,51587.45,0.0,43880.0,2,9,0.0,4,2.0 -7816,11958,1792.0861260515185,50.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50075.05,0.0,53570.0,1,9,0.0,3,2.0 -7817,11961,6790.51846970358,49.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8656.0,0.0,0.0,3,10,8.0,1,0.0 -7818,11962,1734.544614078538,33.0,111,0.0,38,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,62834.0,71998.4,0.0,3460.0,2,7,5.0,4,2.0 -7819,11963,3146.545816943424,50.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9323.1,0.0,0.0,3,10,8.0,1,1.0 -7820,11964,4006.166082600906,81.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13970.0,0.0,0.0,16468.0,0.0,0.0,3,8,6.0,1,0.0 -7821,11965,2101.1125035233736,61.0,111,20160.0,38,1.0,0.0,3.0,2.0,0.0,0.0,3300.0,13690.0,0.0,0.0,43116.6,0.0,8310.0,1,8,7.0,5,1.0 -7822,11968,1844.054508428742,62.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38900.0,0.0,0.0,35174.0,0.0,90.0,2,0,0.0,3,0.0 -7823,11972,938.674614717566,46.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,85.0,0.0,60660.85,0.0,54250.0,1,7,5.0,4,2.0 -7824,11973,2181.656106730741,37.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17891.3,0.0,18560.0,2,6,5.0,1,1.0 -7825,11974,2145.325568462317,34.0,112,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57212.05,0.0,56980.0,2,10,0.0,4,2.0 -7826,11978,1393.5620739135206,42.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40119.95,0.0,40980.0,5,6,5.0,4,2.0 -7827,11979,2556.9346795041492,44.0,111,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,105.0,0.0,88749.45,0.0,87810.0,2,10,8.0,4,2.0 -7828,11980,2617.088474338671,36.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11124.65,0.0,10040.0,3,8,7.0,1,1.0 -7829,11981,2602.131574150803,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19290.0,0.0,0.0,18687.35,0.0,0.0,1,9,7.0,1,0.0 -7830,11982,1632.018667508002,51.0,111,0.0,85,0.0,0.0,5.0,2.4,10010.0,0.0,0.0,0.0,0.0,0.0,20476.0,0.0,0.0,3,7,6.0,4,0.0 -7831,11983,4710.30760682718,55.0,300,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22972.95,0.0,24640.0,1,0,0.0,1,1.0 -7832,11986,2228.283109422855,92.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50610.0,0.0,0.0,51181.75,0.0,0.0,5,0,0.0,3,0.0 -7833,11987,2563.0061510303935,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19270.0,0.0,0.0,18034.35,0.0,0.0,3,9,7.0,1,0.0 -7834,11988,2741.2432923708006,32.0,111,11210.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,39627.3,0.0,24660.0,2,10,8.0,2,1.0 -7835,11990,1195.7541428685336,46.0,111,0.0,64,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,26289.15,0.0,18250.0,2,10,8.0,4,1.0 -7836,11992,4418.091695003436,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19900.0,0.0,0.0,18497.3,0.0,0.0,1,9,7.0,3,0.0 -7837,11994,2667.121332153033,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25180.0,0.0,0.0,23694.3,0.0,0.0,1,8,7.0,1,0.0 -7838,11996,965.9804232981296,50.0,211,0.0,53,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54707.75,0.0,59500.0,2,4,4.0,4,3.0 -7839,11997,899.9496971440257,53.0,112,0.0,52,1.0,1.0,4.0,2.5,0.0,0.0,0.0,12500.0,0.0,0.0,45551.15,0.0,13910.0,3,6,0.0,2,1.0 -7840,11999,2370.2730135718516,33.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41161.85,0.0,41310.0,3,7,5.0,4,2.0 -7841,12000,1104.3456830477826,58.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32480.0,0.0,0.0,31234.95,0.0,0.0,1,10,1.0,3,0.0 -7842,12001,4175.174612727296,76.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12940.0,0.0,0.0,12699.9,0.0,0.0,1,8,0.0,1,0.0 -7843,12002,2915.8331260908303,62.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12750.0,0.0,0.0,12892.0,0.0,0.0,5,8,7.0,1,0.0 -7844,12006,870.7020394081346,49.0,111,0.0,67,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,29704.6,550.0,19770.0,3,10,8.0,2,1.0 -7845,12007,3580.9800038525455,63.0,111,16120.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6870.0,0.0,0.0,31609.7,0.0,4990.0,1,10,8.0,1,1.0 -7846,12008,3010.5236960493335,43.0,111,0.0,52,2.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,35359.8,0.0,17970.0,2,9,7.0,4,2.0 -7847,12010,5028.178516805247,80.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12120.0,0.0,0.0,11917.0,0.0,0.0,1,8,3.0,1,0.0 -7848,12012,2536.068104321122,35.0,112,0.0,11,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,91.0,0.0,42816.6,0.0,18760.0,2,4,0.0,4,2.0 -7849,12014,2437.9919614987925,53.0,221,0.0,21,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,13470.65,0.0,7930.0,2,1,2.0,4,1.0 -7850,12015,3416.749814908389,77.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16470.0,0.0,0.0,17884.55,0.0,0.0,1,6,0.0,3,0.0 -7851,12016,4461.644959771057,72.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,330.0,8460.0,0.0,0.0,8761.0,0.0,0.0,1,8,7.0,1,0.0 -7852,12017,2697.5379274150014,29.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,73650.8,0.0,16610.0,3,8,6.0,3,2.0 -7853,12018,2792.262344845029,35.0,112,0.0,21,3,3.0,4.0,2.3,0.0,0.0,0.0,2170.0,0.0,0.0,28019.3,0.0,26650.0,2,9,1.0,4,3.0 -7854,12019,2580.854207434825,57.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,66.0,0.0,30340.05,0.0,29850.0,1,4,0.0,2,1.0 -7855,12023,3553.040818537387,67.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43150.0,0.0,0.0,36105.45,0.0,0.0,2,8,7.0,1,0.0 -7856,12024,1897.046051818596,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31930.0,134.0,0.0,37294.5,0.0,0.0,1,7,5.0,1,0.0 -7857,12028,3338.3730215694222,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8464.0,0.0,800.0,3,9,7.0,1,0.0 -7858,12029,2689.6600932031793,41.0,112,3960.0,22,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,30852.15,0.0,26330.0,2,4,0.0,4,3.0 -7859,12031,1870.7294191571293,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34570.0,0.0,0.0,30573.95,0.0,0.0,2,8,6.0,1,0.0 -7860,12032,2537.203763617874,47.0,300,0.0,56,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,32599.3,0.0,31500.0,3,0,0.0,5,2.0 -7861,12033,2275.846953396489,42.0,111,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,22530.0,0.0,0.0,66367.15,0.0,170.0,2,6,4.0,4,1.0 -7862,12034,2669.0834272445018,52.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1014.0,0.0,46176.95,0.0,35460.0,1,7,0.0,1,1.0 -7863,12035,2999.6392022563064,37.0,112,50.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34606.75,0.0,34620.0,3,9,3.0,4,2.0 -7864,12036,1754.344194141556,36.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,22.0,0.0,39807.0,0.0,36430.0,1,9,1.0,3,2.0 -7865,12037,2162.645089205391,37.0,120,790.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,3.0,0.0,40154.8,0.0,40240.0,2,0,0.0,4,2.0 -7866,12039,2903.3785635935324,51.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19822.6,0.0,9410.0,3,8,6.0,2,1.0 -7867,12040,2417.1531997234283,40.0,112,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,23.0,0.0,55943.3,0.0,56490.0,2,8,0.0,4,2.0 -7868,12041,1851.934117642823,52.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42944.4,0.0,32560.0,1,8,1.0,3,2.0 -7869,12042,3425.726633342249,35.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47576.2,0.0,45530.0,3,10,8.0,4,2.0 -7870,12044,2790.768475872425,96.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,40.0,8750.0,0.0,0.0,8988.0,0.0,0.0,5,0,0.0,1,0.0 -7871,12047,3003.0820070023888,42.0,112,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,70005.0,0.0,74270.0,2,10,1.0,4,2.0 -7872,12048,3262.431296565685,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14810.0,0.0,0.0,15017.05,0.0,0.0,3,9,7.0,1,0.0 -7873,12049,1371.6446299858515,58.0,111,1130.0,56,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35211.55,0.0,35070.0,3,8,7.0,4,3.0 -7874,12051,2427.6173922453468,28.0,111,2910.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37355.35,0.0,30000.0,3,6,4.0,4,2.0 -7875,12052,3280.963831739236,30.0,120,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66053.0,0.0,74010.0,2,0,3.0,3,2.0 -7876,12053,2370.0264300300896,32.0,111,0.0,38,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45625.95,0.0,52820.0,2,10,8.0,4,2.0 -7877,12054,3478.219260375393,82.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25820.0,0.0,0.0,23710.5,0.0,0.0,1,9,0.0,1,0.0 -7878,12055,4025.856344690392,54.0,112,6220.0,69,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28295.7,0.0,22740.0,1,8,3.0,3,2.0 -7879,12056,1865.4220565074863,37.0,112,980.0,69,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24374.1,0.0,22650.0,3,9,1.0,4,2.0 -7880,12058,3636.265040198517,39.0,111,710.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32859.15,0.0,28130.0,3,9,7.0,4,2.0 -7881,12059,1240.6830037119653,40.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,6.0,0.0,48416.9,0.0,46850.0,5,5,4.0,4,2.0 -7882,12060,2243.927223691885,34.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37810.3,0.0,30840.0,1,6,0.0,4,2.0 -7883,12061,994.15645036829,78.0,111,0.0,74,1.0,0.0,4.0,2.3,0.0,8010.0,0.0,72700.0,357.0,0.0,78732.2,0.0,0.0,1,10,8.0,5,1.0 -7884,12062,1340.0109948575464,76.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36580.0,165.0,0.0,38458.0,0.0,0.0,5,0,0.0,3,0.0 -7885,12064,1545.8027981126097,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18320.0,92.0,0.0,17761.85,0.0,0.0,1,9,7.0,1,0.0 -7886,12065,3825.1230229411412,59.0,111,2930.0,78,1.0,1.0,2.0,1.5,8750.0,0.0,0.0,0.0,0.0,0.0,20204.0,0.0,5380.0,3,9,7.0,3,1.0 -7887,12066,1552.4548327319173,64.0,400,0.0,64,2.0,0.0,2.0,1.5,0.0,0.0,0.0,19670.0,0.0,0.0,3820.0,0.0,12720.0,3,0,0.0,3,2.0 -7888,12067,3234.3083169102456,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21188.1,0.0,0.0,3,10,8.0,1,0.0 -7889,12068,3413.6041765642335,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16040.0,0.0,0.0,15795.6,0.0,0.0,3,10,8.0,1,0.0 -7890,12069,3092.60611756621,41.0,112,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12050.0,0.0,0.0,32254.8,0.0,22060.0,1,10,0.0,2,1.0 -7891,12070,3480.899965028866,24.0,112,0.0,85,0.0,0.0,2.0,1.3,0.0,7010.0,0.0,0.0,0.0,0.0,21223.0,0.0,0.0,3,6,0.0,2,0.0 -7892,12071,2288.2464162916503,43.0,211,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34246.2,0.0,36260.0,2,3,3.0,4,2.0 -7893,12073,2006.6263297486505,38.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9250.0,0.0,0.0,24574.95,0.0,16140.0,3,6,4.0,2,1.0 -7894,12075,4711.885726234618,63.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10670.0,0.0,0.0,10670.0,0.0,0.0,3,5,4.0,1,0.0 -7895,12076,1558.7649333935383,49.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,466.0,0.0,23083.3,0.0,22990.0,1,8,0.0,1,1.0 -7896,12077,1381.3891413356673,55.0,400,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2.0,0.0,37671.9,0.0,39540.0,1,0,0.0,3,2.0 -7897,12078,2999.3785426299805,46.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,729.0,0.0,76702.65,0.0,66420.0,2,8,6.0,1,1.0 -7898,12080,2613.245634877263,52.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33427.75,0.0,36450.0,2,10,8.0,1,1.0 -7899,12085,4171.128103738458,51.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,35.0,0.0,34591.9,0.0,39370.0,3,10,8.0,1,1.0 -7900,12087,3933.509615700098,53.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,471.0,0.0,1336.1499999999999,0.0,0.0,1,9,7.0,1,1.0 -7901,12088,3353.0070928034274,54.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,71.0,0.0,93962.0,0.0,131460.0,2,10,8.0,1,1.0 -7902,12089,1749.5461229783496,24.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29779.0,0.0,31020.0,3,10,8.0,3,2.0 -7903,12090,1031.8712444114933,60.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23670.0,363.0,0.0,23323.15,0.0,150.0,1,0,1.0,3,0.0 -7904,12091,2632.8267471393037,48.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26853.45,0.0,27230.0,1,10,8.0,2,1.0 -7905,12092,2453.6830984508956,47.0,112,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50366.9,0.0,53120.0,1,8,0.0,4,2.0 -7906,12093,2704.978249337729,33.0,111,1570.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,67080.0,0.0,65880.0,2,9,7.0,4,2.0 -7907,12094,2015.302975050686,45.0,300,6050.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20574.8,0.0,12570.0,3,0,0.0,3,1.0 -7908,12095,3143.338628275907,56.0,111,1030.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,15584.8,0.0,4530.0,3,10,8.0,4,2.0 -7909,12096,1858.7013221726147,57.0,112,14050.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29579.5,0.0,16710.0,1,9,0.0,3,1.0 -7910,12097,1596.3628450623505,48.0,111,0.0,35,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,56665.3,0.0,56910.0,1,9,7.0,4,3.0 -7911,12098,5107.88729049857,26.0,111,0.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27324.0,0.0,29760.0,3,6,5.0,3,2.0 -7912,12099,1362.1135546411144,65.0,111,1970.0,77,0.0,0.0,1.0,1.0,0.0,0.0,440.0,6380.0,0.0,0.0,12150.0,0.0,0.0,3,3,4.0,1,0.0 -7913,12100,2780.6238042986483,25.0,111,1940.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35929.85,0.0,37370.0,3,10,8.0,3,2.0 -7914,12102,1410.2338463040771,52.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,55910.3,0.0,60640.0,2,10,8.0,4,2.0 -7915,12104,1303.6174255313365,74.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13250.0,0.0,0.0,13149.35,0.0,0.0,1,8,0.0,1,0.0 -7916,12105,3087.4693157985994,62.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29680.0,0.0,0.0,32069.35,0.0,0.0,2,0,0.0,3,0.0 -7917,12106,4086.9940373979657,51.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,401.0,0.0,103380.5,0.0,108860.0,1,10,8.0,4,2.0 -7918,12107,946.2251759993917,78.0,111,0.0,78,1.0,1.0,4.0,2.3,8750.0,0.0,0.0,30430.0,0.0,0.0,46302.85,0.0,0.0,1,8,6.0,5,1.0 -7919,12108,5436.7986323501955,83.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12390.0,0.0,0.0,13826.0,0.0,0.0,3,1,2.0,1,0.0 -7920,12109,4557.319896515753,37.0,221,2040.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18991.8,230.0,16470.0,3,1,1.0,3,2.0 -7921,12113,3940.044860026975,40.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18520.0,0.0,17600.0,1,10,8.0,1,1.0 -7922,12115,2604.9650362340235,60.0,112,2040.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13220.0,20.0,0.0,16307.35,0.0,0.0,1,7,0.0,1,0.0 -7923,12117,5470.224848489817,71.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13280.0,0.0,0.0,13520.0,0.0,0.0,3,1,2.0,1,0.0 -7924,12118,3057.260462210719,66.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25070.0,0.0,0.0,22885.0,0.0,0.0,1,8,7.0,1,0.0 -7925,12119,3133.7681851770067,46.0,221,0.0,67,1.0,0.0,1.0,1.0,0.0,1820.0,0.0,0.0,0.0,0.0,10338.0,70.0,5000.0,3,1,3.0,1,1.0 -7926,12120,1843.2554633494883,63.0,112,0.0,35,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,8327.0,12218.4,0.0,0.0,1,8,0.0,3,1.0 -7927,12121,2247.601680133425,39.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,130949.05,0.0,142520.0,2,10,8.0,4,2.0 -7928,12122,2429.1044821481005,51.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,160.0,0.0,78269.05,0.0,60040.0,2,10,8.0,3,2.0 -7929,12123,2593.24049687297,53.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17234.1,0.0,18790.0,1,9,2.0,1,1.0 -7930,12124,4493.860906597002,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18540.0,0.0,0.0,17793.0,0.0,0.0,1,10,8.0,1,0.0 -7931,12125,3186.7906101184412,47.0,111,0.0,85,0.0,0.0,1.0,1.0,8370.0,0.0,0.0,0.0,0.0,0.0,11130.0,0.0,0.0,3,9,7.0,1,0.0 -7932,12126,2858.3505818908015,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16050.0,0.0,0.0,15892.9,0.0,0.0,3,7,6.0,1,0.0 -7933,12128,3537.2252038012557,37.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22246.1,0.0,17780.0,3,9,7.0,2,1.0 -7934,12129,5124.418079076132,20.0,111,0.0,56,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7111.8,0.0,6720.0,4,8,7.0,1,1.0 -7935,12131,3062.6555484271357,44.0,112,0.0,68,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,10691.55,2550.0,5050.0,3,5,0.0,1,1.0 -7936,12132,4015.148034365822,61.0,211,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,7160.0,0.0,0.0,34626.1,0.0,28580.0,3,2,3.0,1,1.0 -7937,12133,3265.459245231324,37.0,111,200.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28588.45,0.0,20750.0,2,10,8.0,4,2.0 -7938,12138,3308.242444537036,49.0,111,12130.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35390.25,0.0,23940.0,3,8,7.0,4,2.0 -7939,12139,1575.315192642273,58.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51210.0,104.0,0.0,47693.15,0.0,0.0,1,8,6.0,3,0.0 -7940,12140,1602.7272404518772,83.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16410.0,0.0,0.0,16410.0,0.0,0.0,1,7,1.0,3,0.0 -7941,12141,2457.2209004688466,35.0,111,1490.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47318.25,0.0,44910.0,2,8,6.0,4,2.0 -7942,12143,2973.2257197031527,27.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31493.05,0.0,32770.0,3,10,8.0,4,2.0 -7943,12144,3236.427408965197,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15550.0,0.0,0.0,15635.0,0.0,0.0,3,10,8.0,1,0.0 -7944,12145,1932.9530519318987,54.0,111,5980.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60040.7,0.0,59930.0,1,9,7.0,3,2.0 -7945,12146,1573.988423389551,41.0,111,0.0,34,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,65767.4,0.0,65240.0,3,10,8.0,4,2.0 -7946,12147,1202.4002776112663,60.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,21000.0,0.0,0.0,48582.7,0.0,30720.0,1,5,4.0,3,2.0 -7947,12149,8231.577355851108,29.0,112,8960.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33112.45,0.0,19780.0,3,9,2.0,4,2.0 -7948,12155,2326.8554747532667,36.0,111,8490.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18078.3,0.0,5140.0,3,8,7.0,1,1.0 -7949,12158,2607.9765652884084,51.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,3060.0,0.0,0.0,0.0,0.0,6005.0,0.0,0.0,3,7,6.0,1,1.0 -7950,12160,3029.267744126553,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1279.0,0.0,0.0,3,6,5.0,1,0.0 -7951,12161,1732.8853858061686,65.0,300,2430.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32210.0,55.0,0.0,31617.05,0.0,0.0,1,0,0.0,1,0.0 -7952,12163,2832.2727066062344,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24810.0,0.0,0.0,23541.2,0.0,0.0,3,7,5.0,1,0.0 -7953,12164,1053.408041176928,49.0,300,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,17376.05,0.0,17440.0,1,0,0.0,4,2.0 -7954,12165,1285.0407868729483,59.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,48690.0,74242.5,0.0,29700.0,1,6,4.0,3,2.0 -7955,12167,2487.415149343156,49.0,111,0.0,68,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,22240.7,660.0,14430.0,3,6,4.0,4,1.0 -7956,12168,2638.1166585070314,77.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23110.0,0.0,0.0,23535.25,0.0,0.0,3,8,1.0,3,0.0 -7957,12169,5714.514361255165,43.0,221,0.0,47,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,19992.7,0.0,18990.0,3,1,2.0,2,1.0 -7958,12170,4255.576772584865,77.0,111,0.0,31,1.0,0.0,1.0,1.0,0.0,0.0,0.0,20400.0,10.0,0.0,21777.0,0.0,0.0,3,10,8.0,1,1.0 -7959,12171,3276.6730577816725,48.0,111,0.0,63,2.0,1.0,3.0,1.8,0.0,270.0,0.0,0.0,0.0,0.0,20112.2,1610.0,13330.0,3,9,7.0,4,2.0 -7960,12172,6085.22810529773,49.0,221,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14930.0,0.0,0.0,23922.15,0.0,9550.0,1,1,1.0,2,1.0 -7961,12175,3037.941502208856,37.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41426.3,0.0,42640.0,2,8,0.0,4,2.0 -7962,12180,3324.8745525322615,45.0,120,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19542.6,0.0,0.0,1,0,0.0,3,2.0 -7963,12181,1644.754386409739,60.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18978.3,0.0,19080.0,1,7,1.0,1,1.0 -7964,12185,3045.81537793425,29.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21838.05,0.0,22880.0,3,10,8.0,1,1.0 -7965,12188,4580.7093516682435,84.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19730.0,0.0,0.0,19730.0,0.0,0.0,3,6,5.0,3,0.0 -7966,12189,7807.712347322874,22.0,111,0.0,56,1.0,0.0,2.0,1.3,0.0,3400.0,0.0,0.0,0.0,0.0,15449.3,1130.0,3030.0,3,8,6.0,2,1.0 -7967,12190,1267.710815366472,42.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22811.95,0.0,23200.0,3,9,7.0,2,1.0 -7968,12194,1345.1562927860102,44.0,112,4470.0,54,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26263.05,0.0,17970.0,3,7,1.0,4,2.0 -7969,12195,2479.475254306117,64.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16470.0,0.0,0.0,27068.1,0.0,10090.0,1,6,0.0,3,1.0 -7970,12196,3959.2614556606372,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30330.0,0.0,0.0,30770.65,0.0,0.0,1,8,6.0,3,0.0 -7971,12197,993.9642515169833,63.0,111,49270.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,20.0,0.0,63175.05,0.0,19460.0,1,10,8.0,3,2.0 -7972,12198,2998.666046312774,73.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15430.0,0.0,0.0,16606.0,0.0,0.0,3,9,3.0,1,0.0 -7973,12204,1987.746503297228,38.0,111,8340.0,37,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,114226.75,0.0,92880.0,2,10,8.0,4,2.0 -7974,12205,6576.06824450822,59.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40832.85,0.0,40450.0,2,4,0.0,1,1.0 -7975,12206,2169.1043819714214,71.0,112,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5480.0,0.0,0.0,-0.0,0.0,0.0,3,6,0.0,1,1.0 -7976,12208,3347.28959328552,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35240.0,49.0,0.0,35150.5,0.0,0.0,1,6,5.0,3,0.0 -7977,12209,2621.2632136940038,32.0,111,8050.0,52,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31896.95,0.0,25060.0,3,9,7.0,4,2.0 -7978,12210,2856.421949629142,62.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53510.0,121.0,0.0,73086.5,0.0,0.0,1,9,7.0,3,0.0 -7979,12212,4787.606461327019,38.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,53.0,0.0,44365.3,0.0,48340.0,2,10,8.0,4,2.0 -7980,12215,3662.077890694297,56.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13210.0,12.0,0.0,12970.75,0.0,0.0,1,10,8.0,1,0.0 -7981,12217,2540.8000284153077,55.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55970.35,0.0,60390.0,2,6,0.0,3,2.0 -7982,12220,2464.4106891956344,79.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44050.0,0.0,0.0,41088.9,0.0,0.0,1,10,8.0,3,0.0 -7983,12223,1665.4409828210426,59.0,111,7180.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53296.8,0.0,49380.0,3,10,8.0,4,2.0 -7984,12224,3089.5675976609705,67.0,112,2050.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,13600.0,0.0,0.0,27304.85,0.0,12130.0,1,7,0.0,2,1.0 -7985,12225,1891.6347866296605,62.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16730.0,303.0,0.0,51276.8,0.0,41850.0,1,10,8.0,3,1.0 -7986,12226,3477.992424242999,53.0,111,0.0,78,0.0,0.0,5.0,3.0,13520.0,0.0,0.0,5430.0,0.0,0.0,28199.0,0.0,4800.0,3,10,8.0,4,0.0 -7987,12228,2485.7734092077203,54.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21515.6,0.0,23090.0,3,7,5.0,1,1.0 -7988,12229,1002.9974682317377,70.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30200.0,287.0,0.0,28965.8,0.0,0.0,1,0,3.0,3,0.0 -7989,12230,2365.2183670765885,35.0,111,0.0,56,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26249.25,0.0,15830.0,3,10,8.0,2,2.0 -7990,12233,2872.5963966330833,25.0,221,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31646.4,0.0,30670.0,3,1,2.0,3,2.0 -7991,12235,3326.169491587641,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49760.0,138.0,0.0,45243.25,0.0,0.0,1,10,8.0,3,0.0 -7992,12237,4374.723422170007,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20190.0,0.0,0.0,19644.7,0.0,0.0,3,10,8.0,1,0.0 -7993,12238,1540.290422022344,56.0,111,7630.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33987.7,0.0,28720.0,1,9,7.0,3,2.0 -7994,12241,2403.8302285193404,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16740.0,0.0,0.0,16319.45,0.0,0.0,3,6,5.0,1,0.0 -7995,12242,3849.6524447707243,57.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2105.0,0.0,25742.4,0.0,23970.0,1,9,7.0,3,2.0 -7996,12243,2633.210394332396,32.0,111,0.0,55,1.0,1.0,3.0,1.8,10010.0,0.0,0.0,0.0,0.0,0.0,24965.0,0.0,11830.0,3,9,7.0,4,1.0 -7997,12245,2715.4864788329874,101.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11640.0,0.0,0.0,11481.7,0.0,0.0,1,6,4.0,1,0.0 -7998,12247,3116.8457127489432,56.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,58894.0,0.0,44010.0,3,9,7.0,1,1.0 -7999,12248,7981.241246392962,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12440.0,0.0,0.0,11945.85,0.0,0.0,1,6,4.0,1,0.0 -8000,12249,2205.2877532590187,25.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38896.0,0.0,41150.0,3,8,6.0,3,2.0 -8001,12250,2291.888067848478,33.0,300,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40622.05,0.0,38260.0,2,0,0.0,4,2.0 -8002,12252,2903.794921294118,59.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25617.45,0.0,25950.0,3,10,8.0,1,1.0 -8003,12256,5144.888964389851,26.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,47460.1,0.0,37990.0,2,10,8.0,1,1.0 -8004,12257,6112.571884155582,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13890.0,0.0,0.0,13898.0,0.0,0.0,5,7,5.0,1,0.0 -8005,12260,3589.358290329298,47.0,120,8860.0,34,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46893.8,0.0,38990.0,1,0,0.0,4,2.0 -8006,12261,2731.0638997618885,44.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28716.2,0.0,29330.0,2,9,7.0,3,2.0 -8007,12263,2500.495122138846,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29430.0,0.0,0.0,28087.3,0.0,0.0,1,9,7.0,3,0.0 -8008,12264,1565.1583862464788,78.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21100.0,0.0,0.0,21441.0,0.0,0.0,5,9,0.0,3,0.0 -8009,12266,1859.475430331967,81.0,400,0.0,72,0.0,0.0,2.0,1.5,1740.0,0.0,0.0,14800.0,0.0,0.0,17633.75,0.0,0.0,1,0,1.0,3,0.0 -8010,12267,3637.1546670080993,71.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16960.0,0.0,0.0,17374.45,0.0,0.0,1,0,0.0,3,0.0 -8011,12268,2204.9288683297864,29.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,10.0,0.0,52342.95,0.0,34750.0,2,10,4.0,3,2.0 -8012,12273,3359.614468020785,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21090.0,0.0,0.0,20704.6,0.0,0.0,3,10,8.0,1,0.0 -8013,12275,2878.726419330526,85.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24500.0,1008.0,0.0,30209.5,0.0,0.0,1,9,7.0,3,0.0 -8014,12276,2708.182850145519,28.0,111,13030.0,64,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34541.75,0.0,24070.0,2,10,8.0,3,2.0 -8015,12278,1641.915899410657,58.0,211,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,892.0,0.0,25268.8,0.0,22210.0,1,1,3.0,1,1.0 -8016,12279,3940.4697638843045,31.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,54.0,0.0,22134.95,0.0,21430.0,3,8,7.0,1,1.0 -8017,12281,5400.459076838511,38.0,112,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,114.0,0.0,67150.4,0.0,62470.0,1,9,1.0,4,2.0 -8018,12283,3417.7756714697553,36.0,112,0.0,11,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38692.0,0.0,2980.0,5,8,0.0,4,2.0 -8019,12284,1633.8172819148424,32.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28580.0,0.0,24970.0,3,8,1.0,4,2.0 -8020,12286,1548.552655799785,60.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35650.0,42.0,0.0,33001.95,0.0,30.0,1,10,8.0,3,0.0 -8021,12287,1764.6252653355975,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18510.0,0.0,0.0,16499.5,0.0,0.0,1,3,4.0,1,0.0 -8022,12288,3403.107091345901,43.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,50.0,0.0,21049.3,0.0,22250.0,3,10,8.0,1,1.0 -8023,12289,1266.5806554445846,62.0,111,700.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,17670.0,0.0,0.0,17000.15,0.0,0.0,1,7,5.0,1,1.0 -8024,12290,3072.39947616052,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14120.0,0.0,0.0,13972.5,0.0,0.0,1,9,7.0,1,0.0 -8025,12291,2287.8805186101285,55.0,111,370.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21737.7,120.0,21330.0,3,9,7.0,2,2.0 -8026,12292,3108.1908152781884,42.0,221,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,26907.3,0.0,26310.0,2,1,2.0,4,2.0 -8027,12294,2496.020044864551,33.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37844.65,0.0,45490.0,2,10,8.0,3,1.0 -8028,12296,3408.769365027517,33.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,274.0,0.0,25033.45,0.0,27970.0,2,8,7.0,1,1.0 -8029,12297,4647.896119376806,35.0,111,0.0,63,1.0,1.0,3.0,1.8,0.0,3830.0,0.0,0.0,0.0,0.0,22523.2,1510.0,10360.0,3,9,7.0,4,1.0 -8030,12298,3545.8585306905056,41.0,111,890.0,62,1.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,40230.9,0.0,28040.0,3,10,8.0,4,1.0 -8031,12301,4597.309139193345,26.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18310.95,0.0,19470.0,3,0,0.0,1,1.0 -8032,12302,4437.207936539307,46.0,221,0.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26409.15,0.0,25070.0,3,1,2.0,2,1.0 -8033,12303,2733.675155278918,26.0,111,0.0,84,1.0,0.0,2.0,1.5,0.0,4350.0,0.0,0.0,0.0,0.0,9467.0,1680.0,0.0,3,8,6.0,3,1.0 -8034,12304,2148.6055731676493,56.0,222,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14370.0,175.0,0.0,38024.1,0.0,22370.0,1,1,0.0,3,1.0 -8035,12305,1554.5400846226546,65.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19630.0,0.0,0.0,18968.55,0.0,0.0,1,0,0.0,3,0.0 -8036,12306,4156.982762955471,26.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51825.7,0.0,42860.0,3,9,7.0,4,2.0 -8037,12307,3480.028463272423,48.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8224.0,0.0,0.0,3,8,7.0,1,1.0 -8038,12308,925.4615160103255,47.0,112,0.0,52,3,3.0,5.0,2.8,0.0,2370.0,0.0,0.0,0.0,0.0,75753.05,3570.0,74840.0,3,8,0.0,4,3.0 -8039,12309,2560.4515811346864,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24480.0,61.0,0.0,22618.5,0.0,0.0,1,10,8.0,1,0.0 -8040,12313,2419.050613296408,54.0,400,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10863.0,0.0,9600.0,5,0,0.0,1,1.0 -8041,12314,2696.5872142558123,49.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27442.3,0.0,28980.0,2,9,0.0,1,1.0 -8042,12315,1690.4719738833226,67.0,111,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,20870.0,745.0,0.0,64916.45,0.0,0.0,1,6,4.0,3,1.0 -8043,12316,2517.651047100138,51.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22839.85,0.0,24010.0,3,6,5.0,1,1.0 -8044,12317,2551.191278009869,50.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16416.15,0.0,17680.0,3,9,7.0,1,1.0 -8045,12318,2705.380079291208,43.0,120,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,65980.45,0.0,69320.0,2,0,0.0,4,2.0 -8046,12319,3338.9836537112183,85.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,5050.0,6590.0,0.0,0.0,11546.85,0.0,0.0,1,9,0.0,3,0.0 -8047,12322,2736.6611174010186,67.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,1740.0,7000.0,0.0,0.0,11188.0,0.0,0.0,3,8,7.0,1,0.0 -8048,12324,4231.978380589775,27.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,22927.85,0.0,24460.0,3,9,7.0,1,1.0 -8049,12325,1854.6607973312794,37.0,300,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,8360.0,0.0,0.0,54075.55,0.0,38210.0,2,0,0.0,4,2.0 -8050,12328,2931.316654565306,64.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18890.0,0.0,0.0,71322.55,0.0,56270.0,1,9,7.0,3,1.0 -8051,12332,2457.3250372622992,38.0,111,8520.0,47,2.0,0.0,4.0,2.1,0.0,850.0,0.0,0.0,0.0,0.0,22360.6,770.0,7110.0,3,9,7.0,4,2.0 -8052,12333,2790.5501100090864,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22170.0,0.0,0.0,21865.75,0.0,0.0,3,6,4.0,3,0.0 -8053,12334,3170.7561312263742,27.0,112,6400.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17227.5,0.0,11550.0,3,8,0.0,3,1.0 -8054,12335,2809.0912367087953,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13146.0,0.0,5560.0,3,9,7.0,1,0.0 -8055,12337,3017.1821791632547,45.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,18648.15,1250.0,15140.0,3,10,8.0,2,1.0 -8056,12338,3292.6710167384376,45.0,111,1460.0,67,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22946.15,0.0,22880.0,2,9,7.0,4,2.0 -8057,12340,1467.6562594348845,53.0,111,0.0,46,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,155.0,0.0,60640.2,0.0,60260.0,2,9,7.0,4,3.0 -8058,12341,1160.6920308994643,36.0,300,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40579.85,0.0,39220.0,2,0,0.0,4,2.0 -8059,12342,3096.5512650952933,60.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,5080.0,0.0,12830.0,0.0,0.0,48164.15,0.0,31330.0,3,8,7.0,4,1.0 -8060,12343,2883.939267910039,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16600.0,0.0,0.0,15309.75,0.0,0.0,1,8,6.0,1,0.0 -8061,12344,3661.0950290364367,53.0,111,6600.0,78,2.0,0.0,3.0,2.0,10010.0,0.0,0.0,6210.0,0.0,0.0,27573.05,0.0,570.0,3,8,7.0,2,2.0 -8062,12348,2342.4554783514313,39.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45380.65,0.0,44940.0,3,9,7.0,4,2.0 -8063,12349,3442.988003259218,62.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31540.0,0.0,0.0,29653.25,0.0,0.0,2,9,7.0,1,0.0 -8064,12350,3744.6848616365883,58.0,112,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25548.1,0.0,0.0,1,6,0.0,3,1.0 -8065,12351,3665.45980660829,47.0,400,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,59009.45,0.0,23790.0,1,0,0.0,4,2.0 -8066,12352,3614.4778959848163,59.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33375.1,0.0,35660.0,1,10,8.0,3,2.0 -8067,12353,6166.132948899003,49.0,112,7050.0,53,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15170.0,0.0,7040.0,2,8,0.0,1,1.0 -8068,12354,3244.0445111838962,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21080.0,0.0,0.0,20432.35,0.0,0.0,1,9,7.0,1,0.0 -8069,12355,1895.3160621990435,26.0,221,4290.0,67,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20750.0,0.0,12120.0,3,1,2.0,4,1.0 -8070,12356,1812.0458466628443,36.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53789.9,0.0,48000.0,2,7,0.0,4,2.0 -8071,12359,3904.3835366921753,27.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38429.4,0.0,41270.0,3,10,8.0,1,1.0 -8072,12360,4947.227979388958,45.0,111,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39621.25,0.0,41860.0,3,10,8.0,4,2.0 -8073,12361,4197.027266984197,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11645.0,0.0,0.0,3,9,7.0,1,0.0 -8074,12362,2317.4559520773464,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28530.0,0.0,0.0,27487.8,0.0,1520.0,2,8,7.0,1,0.0 -8075,12363,3544.0813318779947,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28180.0,0.0,0.0,26941.1,0.0,0.0,1,10,8.0,3,0.0 -8076,12364,2901.9437844628874,76.0,111,0.0,86,1.0,0.0,2.0,1.5,0.0,5420.0,0.0,9520.0,0.0,0.0,15564.0,0.0,0.0,5,8,7.0,2,1.0 -8077,12365,2341.1650931782474,74.0,212,0.0,72,0.0,0.0,3.0,2.0,2540.0,0.0,0.0,22750.0,0.0,0.0,31965.4,0.0,7080.0,1,2,0.0,4,0.0 -8078,12366,4400.661082757866,28.0,111,7350.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41325.3,0.0,37400.0,3,10,8.0,3,2.0 -8079,12367,4752.757740881012,55.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,840.0,0.0,400.0,0.0,0.0,6740.0,2900.0,0.0,3,8,7.0,1,0.0 -8080,12368,4169.1764255788385,36.0,112,0.0,69,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45051.6,0.0,35940.0,2,8,0.0,4,2.0 -8081,12371,2468.455347554581,36.0,400,6840.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,42199.4,0.0,26980.0,2,0,0.0,4,2.0 -8082,12372,3457.4252460464027,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22410.0,0.0,0.0,20919.65,0.0,0.0,3,9,7.0,1,0.0 -8083,12374,2240.530910260935,51.0,112,0.0,37,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,74570.6,0.0,79540.0,2,8,0.0,4,3.0 -8084,12375,8038.0837615574255,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,135410.0,8.0,0.0,121181.55,0.0,0.0,3,10,8.0,3,0.0 -8085,12376,2021.1528632207783,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58980.0,0.0,0.0,50797.65,0.0,0.0,1,10,8.0,3,0.0 -8086,12377,3335.5098421386087,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24050.0,12.0,0.0,22160.6,0.0,0.0,3,8,6.0,1,0.0 -8087,12379,3023.183823553102,29.0,111,8290.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29896.4,0.0,21320.0,3,10,8.0,4,2.0 -8088,12380,2704.347300241756,41.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,110546.75,0.0,123980.0,2,9,7.0,4,2.0 -8089,12381,947.3995351125984,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46110.0,0.0,0.0,43024.05,0.0,0.0,1,7,5.0,3,0.0 -8090,12382,1278.2330879942863,38.0,111,0.0,53,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,99832.95,0.0,81040.0,2,10,8.0,4,2.0 -8091,12383,2867.540092177022,51.0,111,0.0,67,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24209.85,0.0,25260.0,3,7,5.0,2,1.0 -8092,12384,1501.6731969748964,50.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,27928.0,46480.4,0.0,20570.0,1,6,4.0,4,2.0 -8093,12389,1687.1877214544577,49.0,400,5600.0,85,1.0,0.0,5.0,2.6,0.0,0.0,0.0,6990.0,0.0,0.0,19833.9,0.0,160.0,1,0,0.0,4,1.0 -8094,12390,5504.285451412295,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47900.0,2.0,0.0,43414.1,0.0,0.0,1,6,4.0,3,0.0 -8095,12391,3041.394732758605,43.0,112,0.0,53,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,54953.75,0.0,42720.0,2,9,0.0,4,2.0 -8096,12392,5149.690644001595,38.0,120,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12877.85,0.0,8020.0,2,0,2.0,2,1.0 -8097,12394,2064.0627820448262,71.0,300,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24710.0,7.0,0.0,34060.6,0.0,10560.0,1,0,0.0,3,1.0 -8098,12399,2589.505740428035,77.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23210.0,0.0,0.0,20911.6,0.0,0.0,1,10,4.0,3,0.0 -8099,12402,3396.1160285619712,34.0,111,0.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41564.65,0.0,39220.0,3,9,7.0,4,1.0 -8100,12403,2832.715916852222,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14838.7,0.0,15440.0,3,7,6.0,1,1.0 -8101,12405,1729.5555842279582,65.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16960.0,0.0,0.0,37226.1,0.0,0.0,1,8,0.0,1,0.0 -8102,12406,2608.4895885746505,58.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,4.0,0.0,90383.25,0.0,92640.0,2,10,8.0,3,1.0 -8103,12407,2096.8610796144444,33.0,112,0.0,45,1.0,1.0,2.0,1.3,0.0,0.0,0.0,3070.0,0.0,0.0,24797.0,0.0,19980.0,2,7,0.0,2,1.0 -8104,12408,3649.076501202223,80.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13600.0,0.0,0.0,14608.0,0.0,0.0,3,8,6.0,1,0.0 -8105,12409,3408.4173835563406,61.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23730.0,36.0,0.0,23585.6,0.0,0.0,1,2,3.0,3,0.0 -8106,12411,2838.7715202726245,26.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20757.85,0.0,21130.0,3,6,4.0,1,1.0 -8107,12412,5619.336104850632,61.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,3040.0,0.0,0.0,0.0,0.0,5712.1,0.0,0.0,3,9,3.0,1,0.0 -8108,12413,1541.4414156632092,47.0,300,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44200.8,0.0,47210.0,2,0,0.0,4,2.0 -8109,12414,2297.7563411732535,38.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43818.6,0.0,46760.0,2,10,1.0,4,2.0 -8110,12415,1510.7313085039525,42.0,120,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,70090.1,0.0,74570.0,2,0,0.0,3,2.0 -8111,12416,2785.6669964082944,80.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6260.0,0.0,0.0,52200.2,0.0,0.0,1,8,7.0,1,0.0 -8112,12417,2032.3648995389965,53.0,112,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,3260.0,86.0,0.0,53434.6,0.0,53960.0,2,10,4.0,4,2.0 -8113,12418,4193.219329473043,89.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11080.0,0.0,0.0,10715.4,0.0,0.0,1,0,2.0,1,0.0 -8114,12419,2671.637781789095,44.0,111,0.0,85,0.0,0.0,1.0,1.0,1420.0,4010.0,0.0,0.0,0.0,0.0,8455.0,0.0,0.0,3,6,4.0,1,0.0 -8115,12421,3838.336224857866,59.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,9340.0,0.0,0.0,11397.0,0.0,0.0,3,7,0.0,3,0.0 -8116,12422,1847.155359464273,62.0,111,0.0,34,3,3.0,3.0,2.0,0.0,0.0,0.0,5530.0,0.0,0.0,105059.75,0.0,121090.0,2,10,8.0,4,3.0 -8117,12423,2626.9949302060377,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7330.0,0.0,0.0,7670.0,0.0,0.0,1,10,8.0,1,0.0 -8118,12424,3426.739920483971,87.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16090.0,0.0,0.0,16075.0,0.0,0.0,1,4,0.0,1,0.0 -8119,12426,1472.4995224523548,36.0,300,0.0,35,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23059.5,0.0,21120.0,1,0,0.0,4,1.0 -8120,12428,1821.190530974484,69.0,400,0.0,11,1.0,0.0,2.0,1.5,0.0,0.0,0.0,17100.0,0.0,0.0,26325.75,0.0,0.0,1,0,0.0,3,1.0 -8121,12431,3273.2880863751393,54.0,112,2480.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,627.0,0.0,50330.6,0.0,50720.0,1,8,0.0,3,2.0 -8122,12432,3059.966018625788,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69380.0,0.0,0.0,76618.15,0.0,0.0,1,10,8.0,3,0.0 -8123,12437,3749.5398145280756,28.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37506.05,0.0,39000.0,5,8,0.0,3,2.0 -8124,12438,1967.0445695256337,38.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18991.25,0.0,19740.0,2,7,5.0,1,1.0 -8125,12439,2481.674321810198,76.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12830.0,0.0,0.0,55352.5,0.0,0.0,5,0,0.0,1,0.0 -8126,12440,3606.922932974069,26.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21862.05,0.0,23720.0,3,9,7.0,1,1.0 -8127,12442,2389.5287643549964,63.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16590.0,0.0,0.0,14191.8,0.0,0.0,1,0,0.0,3,0.0 -8128,12443,1357.3395880120656,67.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59360.0,0.0,0.0,52346.2,0.0,0.0,1,9,1.0,3,0.0 -8129,12444,2681.173347849413,37.0,111,0.0,37,1.0,1.0,6.0,2.7,8750.0,0.0,0.0,0.0,36.0,0.0,50207.25,0.0,29130.0,2,8,7.0,4,1.0 -8130,12445,1365.2257354313272,49.0,221,180.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21832.6,0.0,22460.0,2,1,2.0,3,2.0 -8131,12446,1006.4421993040838,50.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42701.4,0.0,45530.0,1,5,4.0,3,2.0 -8132,12450,1204.4632347409256,71.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17630.0,0.0,0.0,23084.3,0.0,260.0,1,4,0.0,3,0.0 -8133,12451,3485.69984462431,25.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36676.1,0.0,42960.0,3,10,8.0,1,1.0 -8134,12452,1213.347476947835,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27780.0,3.0,0.0,28665.05,0.0,0.0,3,7,5.0,1,0.0 -8135,12455,1262.1497897127012,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25010.0,0.0,0.0,25076.9,0.0,0.0,1,9,7.0,3,0.0 -8136,12456,3930.0919541662406,43.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19491.7,0.0,20830.0,3,9,7.0,1,1.0 -8137,12458,3503.6729201151516,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23690.0,0.0,0.0,23244.25,0.0,0.0,1,9,7.0,3,0.0 -8138,12459,2271.834975827841,61.0,221,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32810.0,72.0,0.0,27662.85,0.0,0.0,1,1,3.0,1,0.0 -8139,12460,4228.666495475174,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15710.0,0.0,0.0,15732.0,0.0,0.0,3,9,7.0,1,0.0 -8140,12461,1998.6639927559204,42.0,112,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,52721.6,0.0,49000.0,2,10,0.0,4,2.0 -8141,12463,1068.5606420671456,71.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30330.0,0.0,0.0,28032.95,0.0,0.0,2,3,4.0,3,0.0 -8142,12464,3464.002259660862,29.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17166.65,0.0,18100.0,3,9,7.0,1,1.0 -8143,12465,6791.062938899213,64.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,4050.0,4720.0,0.0,0.0,11338.0,0.0,0.0,3,0,0.0,1,0.0 -8144,12466,4174.469137184236,82.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17970.0,181.0,0.0,18895.75,0.0,0.0,1,7,5.0,1,0.0 -8145,12467,3419.5621105118844,49.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,230.0,0.0,0.0,0.0,0.0,14848.85,1600.0,13160.0,1,7,0.0,2,1.0 -8146,12468,2990.600315735364,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2013.0,0.0,0.0,5,10,8.0,1,0.0 -8147,12469,2032.4596688737008,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27540.0,0.0,0.0,27791.6,0.0,0.0,1,6,5.0,3,0.0 -8148,12470,1920.682478752277,71.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15810.0,0.0,0.0,21244.1,0.0,0.0,1,7,6.0,3,0.0 -8149,12471,1358.3558524696089,79.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22120.0,0.0,0.0,23293.2,0.0,0.0,1,1,3.0,3,0.0 -8150,12472,1437.0804612642103,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41780.0,0.0,0.0,38764.25,0.0,0.0,5,7,5.0,3,0.0 -8151,12474,1882.2916358531575,36.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,85093.5,0.0,90710.0,2,8,0.0,4,2.0 -8152,12476,1746.968346744731,58.0,221,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19180.0,0.0,0.0,20516.55,0.0,1100.0,1,1,3.0,1,0.0 -8153,12477,1788.3246319404352,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26229.3,0.0,26710.0,5,7,5.0,1,1.0 -8154,12479,4221.204865764768,50.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,69883.5,0.0,75880.0,2,10,8.0,4,2.0 -8155,12480,2730.7367208701185,79.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,150.0,0.0,12870.0,0.0,0.0,13489.35,450.0,0.0,1,5,0.0,1,0.0 -8156,12483,5764.433580054943,30.0,112,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23105.75,0.0,25430.0,2,8,0.0,1,1.0 -8157,12484,2635.0771501674426,62.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37600.0,54.0,0.0,39600.3,0.0,0.0,1,8,0.0,3,0.0 -8158,12485,6345.1627560973275,46.0,111,0.0,38,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43367.2,0.0,44720.0,2,10,8.0,4,3.0 -8159,12487,2524.8653950092653,36.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18889.9,0.0,20120.0,5,8,7.0,1,1.0 -8160,12488,1861.874692137277,84.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26460.0,0.0,0.0,26343.05,0.0,0.0,1,8,7.0,3,0.0 -8161,12489,3434.6961941922395,45.0,111,5250.0,68,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,18695.45,500.0,9900.0,3,6,5.0,4,2.0 -8162,12490,2114.5926654991986,39.0,111,550.0,54,2.0,2.0,3.0,2.0,0.0,350.0,0.0,0.0,145.0,0.0,39772.6,730.0,37380.0,3,9,7.0,4,2.0 -8163,12491,3375.5420977963113,40.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10074.55,0.0,11400.0,3,9,7.0,1,1.0 -8164,12492,2107.065851718023,64.0,111,0.0,74,0.0,0.0,4.0,2.5,0.0,0.0,0.0,33370.0,343.0,0.0,69515.45,0.0,0.0,1,9,7.0,4,0.0 -8165,12495,7390.395660888656,75.0,221,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14670.0,14.0,0.0,16948.0,0.0,0.0,1,1,1.0,1,0.0 -8166,12496,919.7929473857217,60.0,111,0.0,33,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,34.0,0.0,73112.15,0.0,82280.0,1,7,5.0,4,3.0 -8167,12497,2910.66943158892,43.0,111,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,40331.85,0.0,29750.0,3,9,7.0,4,2.0 -8168,12498,2131.0459982152656,62.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,209.0,0.0,74810.15,0.0,88890.0,2,9,7.0,3,2.0 -8169,12499,2866.844579268729,37.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,20397.9,2330.0,7120.0,3,8,7.0,2,1.0 -8170,12501,2005.166397615875,36.0,112,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58278.1,0.0,56890.0,2,8,0.0,4,2.0 -8171,12502,1812.2483457920055,70.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10730.0,0.0,0.0,10935.75,0.0,0.0,1,6,0.0,1,0.0 -8172,12508,3489.9715219381515,28.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,14.0,0.0,34967.95,0.0,36060.0,3,9,7.0,3,2.0 -8173,12510,1532.0274514748814,56.0,111,5440.0,68,1.0,0.0,3.0,2.0,0.0,710.0,0.0,0.0,0.0,0.0,13740.9,0.0,0.0,3,4,4.0,2,1.0 -8174,12513,3241.6292201598294,38.0,120,5220.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30856.85,0.0,24070.0,1,0,0.0,4,2.0 -8175,12515,2101.100218785457,37.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54917.65,0.0,54570.0,2,4,0.0,4,2.0 -8176,12518,3159.680244919108,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34170.0,438.0,0.0,35890.55,0.0,0.0,1,5,4.0,1,0.0 -8177,12519,2892.9929256041287,43.0,111,4010.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,17.0,0.0,30539.5,0.0,25880.0,2,4,3.0,4,2.0 -8178,12520,3529.392056327608,80.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17050.0,0.0,0.0,15401.3,0.0,0.0,3,9,7.0,3,0.0 -8179,12521,2144.866030263993,60.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,160.0,363.0,0.0,36273.05,0.0,0.0,1,8,7.0,3,0.0 -8180,12522,2954.363945985437,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21620.0,38.0,0.0,20219.6,0.0,0.0,3,10,8.0,1,0.0 -8181,12524,2772.966274343798,39.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,107997.75,0.0,125840.0,2,10,8.0,4,2.0 -8182,12525,2320.214260448469,42.0,112,0.0,34,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54325.4,0.0,49760.0,2,8,0.0,2,1.0 -8183,12526,3946.7078118377713,62.0,111,3820.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14724.65,0.0,11060.0,1,10,8.0,3,1.0 -8184,12527,2559.703630119736,79.0,212,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11670.0,0.0,0.0,11529.95,0.0,0.0,1,2,0.0,1,0.0 -8185,12529,2754.860506432695,55.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13470.0,0.0,0.0,30243.8,0.0,18010.0,1,6,0.0,3,1.0 -8186,12530,2061.0782481447704,58.0,400,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,180.75,0.0,0.0,1,0,0.0,3,1.0 -8187,12531,3028.028459153049,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1410.0,7390.0,0.0,0.0,10418.65,0.0,0.0,3,9,7.0,1,0.0 -8188,12532,4638.884283479188,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24310.0,0.0,0.0,23823.85,0.0,0.0,1,9,7.0,3,0.0 -8189,12533,2144.45327711997,39.0,300,0.0,21,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,47998.65,0.0,310.0,3,0,0.0,2,1.0 -8190,12534,7382.727511859652,84.0,221,0.0,78,0.0,3.0,2.0,1.5,0.0,0.0,0.0,15380.0,0.0,0.0,14700.15,0.0,0.0,1,1,2.0,3,0.0 -8191,12535,1178.8126105020144,33.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38081.0,0.0,34610.0,3,8,7.0,4,2.0 -8192,12536,3731.577460440975,43.0,111,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36712.4,0.0,36380.0,5,5,4.0,4,2.0 -8193,12537,1682.4296312205151,49.0,212,170.0,67,1.0,1.0,3.0,1.8,0.0,1860.0,0.0,0.0,0.0,0.0,26737.65,3040.0,13800.0,3,2,0.0,4,1.0 -8194,12538,4088.9492087595877,30.0,111,7200.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14361.0,0.0,8380.0,3,7,5.0,1,1.0 -8195,12540,3861.7607390808857,21.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6747.6,0.0,6650.0,1,9,7.0,3,1.0 -8196,12542,970.2412543661212,87.0,111,0.0,31,3,4.0,6.0,3.1,0.0,0.0,0.0,0.0,6618.0,0.0,230346.2,0.0,65060.0,1,10,8.0,5,4.0 -8197,12543,4848.075544934775,43.0,112,1410.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16408.25,0.0,15480.0,3,8,3.0,1,1.0 -8198,12544,2703.3355239763087,38.0,111,0.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37024.15,0.0,23850.0,3,6,5.0,4,2.0 -8199,12545,2586.0992137035005,47.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,3910.0,0.0,0.0,0.0,0.0,9668.0,720.0,2110.0,3,8,7.0,1,1.0 -8200,12547,2983.78894497162,53.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24090.0,0.0,0.0,100459.7,0.0,85400.0,2,10,8.0,3,1.0 -8201,12549,2689.9158934681823,60.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6760.0,0.0,0.0,26512.1,0.0,22650.0,1,6,4.0,1,1.0 -8202,12552,6573.591167310269,58.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16470.0,0.0,0.0,28304.55,0.0,14470.0,1,9,7.0,3,1.0 -8203,12553,6125.052771095893,36.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18746.7,0.0,20270.0,3,10,8.0,1,1.0 -8204,12555,854.0412746544434,39.0,112,0.0,38,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,42.0,0.0,128252.9,0.0,121740.0,2,8,1.0,4,2.0 -8205,12557,1815.8268309788893,55.0,112,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22109.45,0.0,23530.0,1,7,0.0,3,1.0 -8206,12558,4075.679395168509,27.0,111,0.0,55,1.0,1.0,5.0,2.4,0.0,1550.0,0.0,0.0,0.0,0.0,29908.0,120.0,22470.0,3,9,7.0,4,1.0 -8207,12559,2320.3242606217277,44.0,112,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45057.25,0.0,47910.0,1,5,0.0,4,2.0 -8208,12561,2646.7560983174844,40.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,80646.5,0.0,81760.0,1,9,7.0,4,2.0 -8209,12563,1615.001560785562,35.0,120,1080.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,67751.75,0.0,59560.0,2,0,0.0,4,2.0 -8210,12564,2874.528590836618,74.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39360.0,0.0,0.0,44070.35,0.0,0.0,1,1,1.0,3,0.0 -8211,12566,4365.062859414841,24.0,111,0.0,85,0.0,0.0,4.0,2.1,0.0,8480.0,0.0,0.0,0.0,0.0,20650.0,0.0,0.0,3,8,6.0,4,0.0 -8212,12570,4085.6469211168724,45.0,112,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,50451.0,0.0,45580.0,5,9,3.0,4,2.0 -8213,12575,1365.15503372085,57.0,111,0.0,63,1.0,0.0,1.0,1.0,0.0,3060.0,0.0,0.0,0.0,0.0,5220.0,0.0,0.0,3,6,4.0,1,1.0 -8214,12577,2381.039102198207,59.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34110.0,157.0,0.0,32350.7,0.0,290.0,1,7,0.0,3,0.0 -8215,12578,3254.851556594891,36.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,71484.1,0.0,73360.0,2,8,6.0,4,2.0 -8216,12579,1764.3859729535645,72.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43760.0,0.0,0.0,41035.05,0.0,0.0,1,0,0.0,3,0.0 -8217,12580,2840.108165029744,28.0,111,0.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30370.7,0.0,33640.0,3,7,5.0,3,2.0 -8218,12582,2948.0951667528,60.0,111,5520.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7108.9,0.0,0.0,3,9,7.0,1,0.0 -8219,12583,3762.079477305956,63.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21970.0,0.0,0.0,22429.5,0.0,0.0,1,7,0.0,1,0.0 -8220,12585,4057.3807653477197,63.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9450.0,0.0,0.0,14307.3,0.0,0.0,1,9,7.0,1,1.0 -8221,12588,4052.0898059107035,30.0,111,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49873.95,0.0,45830.0,2,9,7.0,4,2.0 -8222,12589,2356.8639659075393,53.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,127.0,0.0,67118.45,0.0,63860.0,5,8,7.0,4,2.0 -8223,12590,3161.9893026999766,46.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27189.15,0.0,20990.0,2,10,8.0,2,1.0 -8224,12591,2844.550194050213,45.0,111,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,17.0,0.0,67131.3,0.0,69790.0,2,9,7.0,4,2.0 -8225,12593,4531.750625900087,61.0,400,0.0,72,3,2.0,4.0,2.5,0.0,0.0,0.0,19490.0,0.0,0.0,25469.3,0.0,7510.0,1,0,0.0,4,3.0 -8226,12594,2157.205063311434,86.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23510.0,0.0,0.0,23104.5,0.0,0.0,1,10,2.0,3,0.0 -8227,12596,5439.6405834507505,47.0,221,0.0,85,0.0,0.0,2.0,1.3,0.0,6090.0,0.0,0.0,0.0,0.0,11319.0,30.0,50.0,3,1,2.0,2,0.0 -8228,12597,2923.593127544998,68.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19710.0,0.0,0.0,18257.4,0.0,0.0,1,9,7.0,3,0.0 -8229,12598,3326.3222699892754,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19440.0,0.0,0.0,19192.15,0.0,0.0,3,7,6.0,1,0.0 -8230,12599,3795.560229112847,62.0,112,0.0,78,0.0,0.0,4.0,2.5,4350.0,0.0,0.0,14600.0,0.0,0.0,26224.0,0.0,7690.0,1,7,0.0,4,0.0 -8231,12601,2840.6076041023193,81.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39750.0,0.0,0.0,37082.0,0.0,0.0,1,10,4.0,3,0.0 -8232,12602,1580.1974323572222,47.0,400,70.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19118.85,0.0,19530.0,1,0,0.0,3,2.0 -8233,12603,4021.5405198713693,46.0,400,0.0,11,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34948.95,0.0,22460.0,2,0,0.0,4,2.0 -8234,12604,1424.9766614459872,63.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35930.0,0.0,0.0,32950.85,0.0,0.0,1,4,0.0,3,0.0 -8235,12605,1836.7160223686024,50.0,112,0.0,54,1.0,1.0,3.0,2.0,7470.0,0.0,0.0,15300.0,0.0,0.0,42524.0,0.0,20230.0,1,6,0.0,5,1.0 -8236,12606,1424.6520227643468,87.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23980.0,0.0,0.0,21732.9,0.0,0.0,1,0,0.0,3,0.0 -8237,12608,1996.2049438228755,39.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,42.0,0.0,60632.5,0.0,62500.0,2,7,0.0,4,2.0 -8238,12609,2630.775981525749,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60530.0,0.0,0.0,58599.35,0.0,2060.0,1,10,8.0,3,0.0 -8239,12611,1845.3130830657108,41.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50576.3,0.0,45070.0,2,10,8.0,4,2.0 -8240,12612,2646.1123405413823,59.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31530.0,0.0,0.0,28218.1,0.0,0.0,3,7,5.0,1,0.0 -8241,12613,982.5787590147651,44.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,19060.0,0.0,0.0,32361.7,0.0,13940.0,3,6,4.0,4,1.0 -8242,12616,1204.3214894330083,44.0,120,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36179.75,0.0,36720.0,1,0,0.0,4,3.0 -8243,12617,4043.631119755632,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26600.0,0.0,0.0,26234.95,0.0,0.0,3,9,7.0,3,0.0 -8244,12618,4624.499296304439,28.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16888.0,0.0,12680.0,3,10,8.0,1,1.0 -8245,12620,2016.632464852148,58.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60721.35,0.0,64180.0,1,9,7.0,3,2.0 -8246,12621,1638.0698919435501,73.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19540.0,0.0,0.0,18861.8,0.0,0.0,1,0,0.0,3,0.0 -8247,12622,2832.0033278239366,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4949.0,0.0,0.0,5,8,7.0,1,0.0 -8248,12626,2592.4335987782324,63.0,111,43470.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36470.0,484.0,0.0,72213.8,0.0,0.0,1,10,8.0,3,0.0 -8249,12627,2956.6031260661607,41.0,111,0.0,23,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,110301.6,0.0,121010.0,1,9,7.0,4,1.0 -8250,12628,3236.3561885538916,44.0,111,440.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25663.1,0.0,23250.0,3,10,8.0,3,2.0 -8251,12629,3511.8993397935337,20.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15423.0,0.0,13090.0,3,9,7.0,1,1.0 -8252,12630,4038.9562904348627,39.0,111,0.0,45,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44079.0,0.0,44610.0,3,9,7.0,4,2.0 -8253,12631,2273.2874805678885,46.0,111,0.0,53,1.0,1.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,32554.0,0.0,15690.0,3,10,8.0,4,1.0 -8254,12632,1905.4050381312477,81.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42340.0,0.0,0.0,40248.4,0.0,0.0,1,0,1.0,3,0.0 -8255,12633,4141.385031940223,27.0,111,0.0,63,1.0,0.0,5.0,2.4,0.0,7090.0,0.0,0.0,0.0,0.0,16781.0,0.0,0.0,3,8,7.0,4,1.0 -8256,12634,2040.1052341692953,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23410.0,0.0,0.0,22845.45,0.0,0.0,1,9,3.0,3,0.0 -8257,12637,2362.9255322895056,24.0,300,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45473.65,0.0,42000.0,3,0,1.0,4,2.0 -8258,12638,1594.8047855475547,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38060.0,1.0,0.0,35171.75,0.0,0.0,3,8,7.0,3,0.0 -8259,12639,3264.734158911762,22.0,300,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30615.1,0.0,25390.0,3,0,0.0,4,2.0 -8260,12641,3794.7116316520655,35.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30339.05,0.0,32600.0,1,10,8.0,1,1.0 -8261,12645,2973.4257187660937,67.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,210.0,8590.0,0.0,0.0,10780.0,0.0,0.0,3,10,8.0,1,0.0 -8262,12647,1995.657176388602,68.0,112,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,13780.0,0.0,0.0,13789.0,0.0,0.0,3,8,1.0,1,1.0 -8263,12648,3115.305781622403,85.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62030.0,0.0,0.0,79410.1,0.0,0.0,1,6,5.0,3,0.0 -8264,12649,1749.266467281666,57.0,400,0.0,56,1.0,1.0,1.0,1.0,0.0,340.0,0.0,0.0,0.0,0.0,9550.0,550.0,8660.0,5,0,0.0,1,1.0 -8265,12651,2708.2214782463784,77.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17220.0,0.0,0.0,16684.5,0.0,0.0,1,9,0.0,3,0.0 -8266,12652,1937.7643667858474,65.0,400,0.0,75,0.0,0.0,4.0,2.1,0.0,0.0,0.0,10520.0,0.0,0.0,20538.55,0.0,0.0,1,0,0.0,5,0.0 -8267,12653,2219.644781638343,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19490.0,0.0,0.0,20499.6,0.0,0.0,1,8,7.0,1,0.0 -8268,12654,1602.584480461569,42.0,211,8050.0,52,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,17164.1,0.0,3180.0,3,2,3.0,2,1.0 -8269,12655,1759.0812068757248,56.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19283.45,0.0,20710.0,1,6,4.0,2,1.0 -8270,12656,2560.3972777102067,60.0,111,7630.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28640.0,0.0,0.0,31917.65,0.0,210.0,1,10,8.0,1,0.0 -8271,12657,2661.0266710273563,41.0,111,0.0,48,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,63283.1,0.0,66740.0,2,9,7.0,4,3.0 -8272,12658,1059.8622170401243,51.0,111,4230.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30589.65,0.0,27540.0,1,5,4.0,4,2.0 -8273,12659,2451.9114539222596,50.0,111,1320.0,56,3,4.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,52034.6,0.0,52380.0,3,7,6.0,5,4.0 -8274,12660,1019.775346971346,56.0,112,0.0,42,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,106505.6,0.0,115220.0,1,7,0.0,5,3.0 -8275,12661,3905.573103082672,60.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50760.0,0.0,0.0,50840.45,0.0,0.0,2,1,2.0,3,0.0 -8276,12662,2580.195419755277,77.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9480.0,0.0,0.0,9141.35,0.0,0.0,1,0,0.0,1,0.0 -8277,12663,1149.4100455287778,55.0,112,0.0,64,2.0,2.0,5.0,2.8,8380.0,0.0,0.0,0.0,0.0,0.0,41487.55,0.0,30040.0,3,10,0.0,4,2.0 -8278,12664,1638.6122276658848,29.0,300,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,33439.75,0.0,19840.0,2,0,0.0,4,1.0 -8279,12665,1892.9552686940217,47.0,111,48890.0,42,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,86916.0,0.0,49580.0,2,8,7.0,4,2.0 -8280,12668,1651.938852834593,55.0,111,0.0,52,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,46.0,0.0,93119.6,0.0,109060.0,1,8,6.0,4,3.0 -8281,12670,2699.7938743192094,33.0,212,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41631.75,0.0,38370.0,3,2,0.0,4,2.0 -8282,12671,1509.1738339760277,44.0,111,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24177.75,0.0,19290.0,2,6,4.0,4,1.0 -8283,12672,2057.388405197322,46.0,400,0.0,62,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,66882.85,0.0,69070.0,1,0,0.0,4,4.0 -8284,12673,3054.8589138315783,81.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13970.0,0.0,0.0,13931.0,0.0,0.0,1,8,0.0,1,0.0 -8285,12675,2000.7434414842792,54.0,112,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15810.0,0.0,0.0,43653.95,0.0,29730.0,1,6,0.0,3,1.0 -8286,12677,1447.8927432038024,82.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8890.0,0.0,0.0,8404.05,0.0,0.0,5,5,4.0,1,0.0 -8287,12678,1202.2395926066695,56.0,112,6790.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66199.65,0.0,64880.0,1,8,1.0,3,2.0 -8288,12679,2748.4629747721065,47.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33492.15,0.0,36810.0,1,10,8.0,1,1.0 -8289,12681,1401.1234900304937,54.0,400,6700.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32592.45,0.0,26430.0,1,0,0.0,4,3.0 -8290,12683,3647.769328195531,29.0,111,18720.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,56162.25,0.0,41410.0,3,10,8.0,4,2.0 -8291,12684,3861.4203744379047,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26450.0,0.0,0.0,31106.05,0.0,7460.0,1,9,7.0,3,0.0 -8292,12686,1790.0693528979243,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36410.0,0.0,0.0,37284.25,0.0,0.0,1,10,8.0,3,0.0 -8293,12688,2757.7571674973756,64.0,221,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15380.0,0.0,0.0,14219.65,0.0,0.0,1,1,2.0,3,0.0 -8294,12690,1240.3276305359268,60.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,1680.0,23020.0,0.0,0.0,27760.0,0.0,5000.0,1,1,3.0,3,0.0 -8295,12691,4015.442036484052,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13380.0,0.0,0.0,15084.0,0.0,0.0,3,9,7.0,1,0.0 -8296,12692,3257.3203717486576,42.0,400,1760.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27077.35,0.0,23600.0,1,0,0.0,4,2.0 -8297,12694,2765.65073345518,73.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23140.0,0.0,0.0,22834.5,0.0,0.0,1,1,2.0,1,0.0 -8298,12695,1447.866914619467,46.0,111,3330.0,55,2.0,1.0,5.0,2.8,0.0,0.0,0.0,8030.0,0.0,0.0,43770.5,0.0,27360.0,1,10,8.0,4,2.0 -8299,12696,2424.8429811973033,35.0,111,1310.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26120.85,0.0,18650.0,3,6,5.0,4,2.0 -8300,12697,3739.030464106389,51.0,111,0.0,85,0.0,0.0,1.0,1.0,690.0,0.0,0.0,5050.0,0.0,0.0,8855.0,0.0,0.0,3,8,6.0,1,0.0 -8301,12698,2188.927906134064,65.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9510.0,0.0,0.0,10908.0,0.0,0.0,3,4,3.0,1,0.0 -8302,12700,1206.7978942722218,53.0,300,400.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29447.3,0.0,31380.0,1,0,0.0,3,2.0 -8303,12701,3532.4042836788853,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16310.0,0.0,0.0,16261.5,0.0,0.0,1,10,8.0,1,0.0 -8304,12702,1106.7319040524724,56.0,300,0.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,33689.1,0.0,34450.0,1,0,0.0,4,2.0 -8305,12703,4793.456049440735,44.0,111,5120.0,68,2.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,35733.8,0.0,23520.0,2,10,8.0,4,2.0 -8306,12706,2954.2069423661064,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29380.0,0.0,0.0,27605.6,0.0,0.0,1,10,8.0,3,0.0 -8307,12707,2106.8538193446325,31.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28539.05,0.0,29140.0,3,9,7.0,3,2.0 -8308,12708,3737.1010240918818,23.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19817.45,0.0,21290.0,3,10,8.0,1,1.0 -8309,12711,2350.2040753698425,42.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,78435.3,0.0,73020.0,3,10,8.0,4,2.0 -8310,12712,1921.3597685853647,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35970.0,0.0,0.0,33352.45,0.0,0.0,1,6,4.0,3,0.0 -8311,12713,3077.8917047537343,62.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39818.55,0.0,38970.0,1,8,6.0,1,1.0 -8312,12714,5719.391869764487,42.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48195.45,0.0,47750.0,2,4,4.0,4,2.0 -8313,12715,2302.3984578066443,57.0,111,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46533.45,0.0,48320.0,3,8,7.0,4,3.0 -8314,12716,4101.3968420908795,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21650.0,0.0,0.0,26456.15,0.0,0.0,3,6,5.0,1,0.0 -8315,12717,1719.041424502332,30.0,300,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20071.6,1210.0,9120.0,3,0,0.0,2,1.0 -8316,12718,3942.6119157141193,22.0,111,0.0,34,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3623.0,0.0,0.0,3,9,7.0,1,1.0 -8317,12720,4750.640972308391,56.0,221,0.0,53,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17268.65,0.0,17510.0,3,1,2.0,3,2.0 -8318,12721,2215.6436715137993,52.0,111,0.0,85,0.0,0.0,3.0,2.0,0.0,0.0,0.0,34080.0,0.0,0.0,33388.15,0.0,0.0,5,8,7.0,4,0.0 -8319,12722,2014.284693499496,36.0,112,3250.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39684.4,0.0,31490.0,2,8,0.0,4,2.0 -8320,12723,1510.438366207455,38.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27454.45,0.0,28070.0,3,7,5.0,2,1.0 -8321,12724,891.3132713707024,55.0,212,940.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27303.3,0.0,26640.0,1,2,0.0,4,3.0 -8322,12725,2936.837655184849,61.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,72374.0,0.0,91230.0,3,10,8.0,1,1.0 -8323,12726,1339.3678879506638,40.0,212,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,39432.8,0.0,33500.0,2,3,0.0,4,2.0 -8324,12730,3930.6915143969,54.0,111,5880.0,56,1.0,0.0,2.0,1.5,0.0,480.0,0.0,0.0,0.0,0.0,10550.4,0.0,0.0,3,9,7.0,2,1.0 -8325,12731,2737.53478585079,22.0,112,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8916.6,0.0,8150.0,3,7,1.0,1,1.0 -8326,12732,1977.8860499090956,53.0,400,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,59957.85,0.0,60790.0,1,0,0.0,4,2.0 -8327,12733,4056.7075021702935,48.0,111,0.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,64845.55,0.0,74020.0,1,9,7.0,4,2.0 -8328,12734,2735.4888403023438,51.0,300,0.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,7630.0,0.0,0.0,10975.95,0.0,0.0,3,0,0.0,2,0.0 -8329,12735,2596.661249827646,53.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,230.0,0.0,0.0,0.0,0.0,16681.75,2070.0,11760.0,3,7,6.0,2,2.0 -8330,12736,2240.635571083702,44.0,111,0.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,321.0,0.0,67632.3,0.0,66250.0,1,10,8.0,4,2.0 -8331,12737,2392.8511913977036,49.0,112,0.0,46,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45640.95,0.0,48150.0,1,6,0.0,4,3.0 -8332,12740,2398.324984006191,56.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51450.15,0.0,59900.0,3,8,7.0,4,2.0 -8333,12743,2362.97968837784,74.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13160.0,0.0,0.0,13160.0,0.0,0.0,5,9,7.0,1,0.0 -8334,12744,2513.779507901521,76.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18030.0,25.0,0.0,17979.7,0.0,0.0,1,8,1.0,1,0.0 -8335,12745,2956.52726081193,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23720.0,70.0,0.0,23027.15,0.0,0.0,1,8,7.0,1,0.0 -8336,12746,1290.7749603464752,46.0,111,0.0,35,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30552.4,0.0,29680.0,2,8,6.0,2,1.0 -8337,12747,3612.204967824698,58.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20255.7,0.0,22110.0,3,8,7.0,1,1.0 -8338,12749,1561.2768246222638,61.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,17140.0,0.0,0.0,72999.0,0.0,69980.0,1,7,5.0,3,2.0 -8339,12751,1753.6252827452652,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17230.0,0.0,0.0,16611.85,0.0,0.0,1,5,4.0,1,0.0 -8340,12752,1201.801021473911,34.0,111,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,32557.0,60161.0,0.0,25730.0,2,7,6.0,4,2.0 -8341,12753,2631.3032216811266,27.0,120,9380.0,68,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29150.75,340.0,13710.0,3,0,1.0,4,2.0 -8342,12755,2801.591783576714,37.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43694.05,0.0,43880.0,2,9,3.0,4,2.0 -8343,12756,1619.2002988431764,66.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,2950.0,5460.0,0.0,0.0,7789.9,0.0,0.0,1,1,3.0,1,0.0 -8344,12757,2556.539016314835,67.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26340.0,0.0,0.0,24777.15,0.0,0.0,1,1,3.0,3,0.0 -8345,12758,2381.1169654343007,62.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,5510.0,0.0,0.0,5263.65,0.0,0.0,1,0,1.0,3,0.0 -8346,12764,3153.7592953276285,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14810.0,0.0,0.0,16888.7,0.0,0.0,3,9,7.0,1,0.0 -8347,12767,1512.1058139368824,66.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17680.0,0.0,0.0,34113.75,0.0,16160.0,1,7,6.0,4,1.0 -8348,12773,5146.4471764269665,54.0,111,1820.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15750.0,0.0,0.0,23791.95,0.0,7240.0,2,10,8.0,3,0.0 -8349,12774,7312.153173876718,54.0,120,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14730.0,0.0,0.0,40065.0,0.0,28250.0,1,0,0.0,3,1.0 -8350,12776,1691.76639042509,32.0,111,2960.0,67,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32731.25,0.0,23410.0,3,8,7.0,4,1.0 -8351,12777,3317.4568646314747,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36650.0,0.0,0.0,31502.8,0.0,0.0,1,10,8.0,1,0.0 -8352,12778,1948.7964116407595,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32060.0,0.0,0.0,30512.3,0.0,0.0,1,3,4.0,3,0.0 -8353,12779,2701.628421779937,25.0,400,0.0,52,1.0,1.0,1.0,1.0,1920.0,0.0,0.0,0.0,0.0,0.0,17622.0,0.0,15690.0,5,0,0.0,1,1.0 -8354,12780,2520.5988589283056,54.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47829.55,0.0,51800.0,2,9,1.0,3,2.0 -8355,12781,1535.174947086757,43.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44749.35,0.0,44050.0,2,9,7.0,4,2.0 -8356,12782,1697.463643568239,37.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20995.95,0.0,22020.0,3,5,0.0,1,1.0 -8357,12783,4032.9631997372294,31.0,111,6500.0,63,2.0,0.0,2.0,1.5,0.0,3200.0,0.0,0.0,0.0,0.0,20484.7,2310.0,7130.0,3,9,7.0,5,2.0 -8358,12785,3670.20192791806,86.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,260.0,13790.0,0.0,0.0,15900.0,0.0,0.0,3,6,5.0,3,0.0 -8359,12786,2158.401651236164,40.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29298.05,0.0,33340.0,2,9,1.0,1,1.0 -8360,12788,6541.80802850016,44.0,111,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28412.0,0.0,24660.0,3,9,7.0,2,1.0 -8361,12792,2876.310773990306,83.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24910.0,0.0,0.0,24383.95,0.0,0.0,1,0,0.0,3,0.0 -8362,12793,1784.0535616316483,66.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,4220.0,0.0,15490.0,0.0,0.0,18886.4,0.0,0.0,1,9,7.0,2,1.0 -8363,12794,2360.96014255766,65.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23010.0,0.0,0.0,40821.7,0.0,0.0,1,0,1.0,3,0.0 -8364,12796,1159.655894808994,46.0,111,0.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34307.65,0.0,30670.0,1,6,5.0,4,2.0 -8365,12797,3617.2937851811594,43.0,111,0.0,81,1.0,0.0,2.0,1.3,0.0,6220.0,0.0,0.0,0.0,0.0,9740.0,0.0,0.0,3,9,7.0,2,1.0 -8366,12798,2725.34035687828,43.0,111,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44704.05,0.0,11000.0,3,7,6.0,4,2.0 -8367,12800,2203.449167304625,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12870.0,0.0,0.0,13398.0,0.0,0.0,3,9,7.0,1,0.0 -8368,12801,2674.0502622916783,86.0,111,0.0,75,1.0,1.0,3.0,2.0,19650.0,0.0,0.0,29270.0,92.0,0.0,63676.2,0.0,16860.0,1,9,7.0,2,1.0 -8369,12802,2393.7593532509977,79.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,9210.0,123.0,0.0,8977.55,0.0,0.0,1,0,0.0,3,0.0 -8370,12803,3024.706066523041,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23050.0,0.0,0.0,23109.0,0.0,0.0,3,10,8.0,3,0.0 -8371,12804,4408.531340251446,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15300.0,0.0,0.0,15035.45,0.0,0.0,3,7,5.0,1,0.0 -8372,12805,2309.938937695547,30.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17329.2,0.0,18530.0,3,10,8.0,1,1.0 -8373,12806,2907.2548005899826,59.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25730.0,0.0,0.0,25522.15,0.0,20.0,1,9,7.0,3,0.0 -8374,12807,2365.316177351609,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18440.0,0.0,0.0,16985.25,0.0,0.0,1,6,5.0,1,0.0 -8375,12809,1661.791047726037,47.0,112,7500.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50761.1,0.0,45100.0,3,8,0.0,4,2.0 -8376,12812,3589.239456648389,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17550.0,0.0,0.0,16524.95,0.0,0.0,1,9,7.0,1,0.0 -8377,12813,3974.4729884929443,23.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,18185.5,0.0,18760.0,3,9,7.0,1,1.0 -8378,12814,1565.0680817152304,51.0,111,0.0,47,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28502.95,0.0,31820.0,1,9,7.0,2,1.0 -8379,12815,1725.3356241061636,60.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37950.0,38.0,0.0,36384.65,0.0,0.0,1,1,2.0,3,0.0 -8380,12816,1528.6535837217275,29.0,300,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48226.7,0.0,40660.0,2,0,0.0,4,2.0 -8381,12818,2452.3813173244325,46.0,111,0.0,34,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,145.0,0.0,36386.6,0.0,41000.0,1,10,8.0,1,1.0 -8382,12819,1093.2304599266085,53.0,300,5810.0,54,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48163.7,0.0,44810.0,1,0,0.0,4,3.0 -8383,12820,2591.6935867085276,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14670.0,0.0,0.0,12963.15,0.0,0.0,2,9,7.0,1,0.0 -8384,12822,3447.807188950655,62.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22750.0,108.0,0.0,30904.7,0.0,0.0,3,9,7.0,1,0.0 -8385,12823,2486.336251025496,56.0,111,0.0,21,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,55407.85,0.0,35050.0,2,10,8.0,4,2.0 -8386,12824,1818.781215269949,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15760.0,0.0,0.0,16679.0,0.0,0.0,3,8,6.0,1,0.0 -8387,12825,3498.4680045957075,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25090.0,0.0,0.0,23605.3,0.0,0.0,1,10,8.0,3,0.0 -8388,12826,1308.554876888844,62.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15430.0,0.0,0.0,17543.35,0.0,0.0,1,0,0.0,3,0.0 -8389,12827,2601.551803591623,52.0,111,0.0,48,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18484.2,0.0,13300.0,3,7,5.0,2,1.0 -8390,12828,5288.69401105922,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19660.0,0.0,0.0,30490.35,0.0,0.0,1,7,0.0,3,0.0 -8391,12829,1755.7415994270002,48.0,400,0.0,52,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,36274.75,0.0,29580.0,2,0,0.0,4,4.0 -8392,12830,2103.067391744608,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25530.0,0.0,0.0,31062.2,0.0,0.0,3,6,5.0,1,0.0 -8393,12831,3603.1773652537977,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20470.0,0.0,0.0,19700.45,0.0,0.0,3,6,4.0,1,0.0 -8394,12833,2220.8813399866385,56.0,120,10680.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31192.75,0.0,25280.0,1,0,0.0,3,2.0 -8395,12834,6697.3860923394295,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15720.0,0.0,0.0,14369.3,0.0,0.0,1,10,8.0,1,0.0 -8396,12836,1624.1567440844894,64.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13640.0,0.0,0.0,16408.85,0.0,2420.0,1,0,0.0,3,0.0 -8397,12837,2060.3905314726344,37.0,112,0.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,28344.85,0.0,26680.0,2,8,1.0,4,1.0 -8398,12838,1656.1954941057568,47.0,111,5140.0,67,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29878.85,0.0,13380.0,2,5,4.0,4,2.0 -8399,12842,2680.6245211605283,56.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15330.0,0.0,0.0,37031.45,0.0,25390.0,1,8,7.0,3,1.0 -8400,12844,7746.752739654508,27.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14711.0,0.0,15130.0,3,7,5.0,1,1.0 -8401,12846,2023.6702282580109,72.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15610.0,0.0,0.0,16525.9,0.0,0.0,3,9,7.0,1,0.0 -8402,12848,3804.2643937719054,25.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,1350.0,0.0,0.0,0.0,0.0,20199.7,1250.0,14040.0,3,9,7.0,4,1.0 -8403,12850,3644.6043011069123,45.0,111,0.0,21,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51313.45,0.0,0.0,2,9,7.0,2,1.0 -8404,12851,1977.56860273811,49.0,111,0.0,21,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,42729.8,0.0,14520.0,2,7,6.0,4,3.0 -8405,12852,2330.769234144837,21.0,111,0.0,55,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3809.0,0.0,0.0,3,8,7.0,3,2.0 -8406,12853,2689.371747460932,41.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,88181.75,0.0,82360.0,2,10,8.0,4,2.0 -8407,12854,2110.8862945233054,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27850.0,12.0,0.0,27738.3,0.0,0.0,3,7,5.0,1,0.0 -8408,12855,2376.309527799688,30.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55243.25,0.0,57060.0,2,10,8.0,4,2.0 -8409,12856,2244.3320693592605,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6760.0,0.0,0.0,23338.6,0.0,18750.0,1,6,4.0,1,1.0 -8410,12858,1197.9479401054273,40.0,111,0.0,37,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,52.0,0.0,28342.35,0.0,22840.0,2,8,7.0,2,1.0 -8411,12859,1989.830195614234,49.0,111,4940.0,46,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40765.2,0.0,37720.0,3,8,6.0,4,4.0 -8412,12860,2011.7992885039976,56.0,400,80.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,19600.0,26.0,0.0,37912.1,0.0,18300.0,1,0,0.0,4,1.0 -8413,12861,2738.7338903234036,30.0,221,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26370.1,0.0,28960.0,2,1,3.0,1,1.0 -8414,12862,1667.6969733477124,55.0,111,2940.0,52,3,3.0,4.0,2.5,0.0,300.0,0.0,0.0,0.0,0.0,43716.25,3060.0,37260.0,3,7,5.0,2,4.0 -8415,12864,3655.0854879366016,34.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18074.4,0.0,18920.0,3,10,8.0,1,1.0 -8416,12866,1761.5687686499152,43.0,112,0.0,48,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35052.05,0.0,32590.0,3,7,0.0,2,1.0 -8417,12867,1902.1656632670827,65.0,300,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21287.3,0.0,0.0,1,0,0.0,3,1.0 -8418,12868,2764.4881848737623,49.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36418.1,0.0,40500.0,1,10,8.0,2,1.0 -8419,12870,1396.043808149794,63.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30890.0,133.0,0.0,31666.6,0.0,670.0,1,6,0.0,3,0.0 -8420,12871,1169.2606780545725,25.0,300,0.0,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,271.0,0.0,0.0,5,0,0.0,1,1.0 -8421,12872,3073.5725379838914,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58730.0,499.0,0.0,70613.55,0.0,0.0,3,10,8.0,3,0.0 -8422,12874,1337.3246386182277,53.0,112,0.0,37,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,86102.85,0.0,83080.0,1,7,0.0,4,4.0 -8423,12875,1585.0178779050539,56.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12130.0,510.0,8980.0,3,7,5.0,1,1.0 -8424,12876,3420.581886900765,51.0,111,5020.0,68,2.0,0.0,5.0,2.8,0.0,9760.0,0.0,0.0,0.0,0.0,25100.0,0.0,3160.0,3,6,5.0,4,2.0 -8425,12879,2818.58064598202,30.0,111,3180.0,67,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22771.05,0.0,10750.0,3,9,7.0,4,1.0 -8426,12880,2720.341444813733,52.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,10.0,0.0,25667.6,0.0,27860.0,1,9,7.0,3,2.0 -8427,12883,7096.191080446731,82.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17850.0,0.0,0.0,18105.8,0.0,0.0,1,0,3.0,3,0.0 -8428,12884,1025.6210979536954,55.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6530.0,0.0,0.0,20066.35,0.0,15670.0,1,6,2.0,1,1.0 -8429,12885,2261.4331185007213,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9710.0,0.0,0.0,9895.0,0.0,0.0,3,7,6.0,1,0.0 -8430,12886,2872.7866153331074,85.0,221,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8900.0,0.0,0.0,12123.15,0.0,0.0,3,1,3.0,1,0.0 -8431,12887,1907.0332676009891,53.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23686.7,0.0,26180.0,1,7,1.0,1,1.0 -8432,12890,2694.615617609715,49.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37835.4,0.0,39140.0,3,9,7.0,4,2.0 -8433,12892,3446.895481958211,84.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15030.0,0.0,0.0,15519.1,0.0,0.0,3,8,6.0,1,0.0 -8434,12893,2007.8413686119864,59.0,120,0.0,21,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32305.35,0.0,33450.0,1,0,0.0,4,1.0 -8435,12896,5364.246933315212,63.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10500.0,0.0,0.0,11099.05,0.0,0.0,1,0,0.0,1,0.0 -8436,12899,1755.2838472030076,48.0,111,0.0,47,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,80045.2,0.0,56490.0,2,8,6.0,4,2.0 -8437,12900,3680.3204837541984,45.0,112,0.0,56,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32287.5,0.0,16020.0,1,6,0.0,4,2.0 -8438,12901,1481.5751898234917,32.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50329.1,0.0,43230.0,2,7,0.0,4,2.0 -8439,12902,2092.6052375988265,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14480.0,0.0,0.0,14058.65,0.0,0.0,1,9,7.0,1,0.0 -8440,12907,4204.200690518255,79.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30470.0,0.0,0.0,27565.45,0.0,0.0,1,7,5.0,3,0.0 -8441,12908,2127.446203949061,50.0,112,0.0,68,2.0,0.0,4.0,2.3,0.0,8910.0,0.0,0.0,0.0,0.0,20435.0,0.0,0.0,3,8,0.0,4,2.0 -8442,12909,4302.803692230119,44.0,111,0.0,85,0.0,0.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,12494.0,0.0,0.0,3,8,7.0,1,0.0 -8443,12910,1506.6705613340398,30.0,112,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,19908.15,0.0,17690.0,2,8,0.0,4,1.0 -8444,12911,1276.8492951059839,47.0,111,0.0,43,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,4.0,0.0,34801.8,0.0,0.0,1,9,7.0,4,1.0 -8445,12912,1875.4569049085374,46.0,111,680.0,47,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,21580.55,0.0,10440.0,3,8,6.0,4,2.0 -8446,12913,1041.9492321608982,68.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45750.0,0.0,0.0,46637.55,0.0,0.0,1,6,2.0,3,0.0 -8447,12914,3205.0931921384445,42.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19566.6,0.0,20600.0,3,9,7.0,1,1.0 -8448,12916,2678.5468737154097,48.0,111,6330.0,64,1.0,0.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,14538.5,1500.0,3940.0,3,9,7.0,1,1.0 -8449,12917,2672.5413371780983,28.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,21.0,0.0,56260.95,0.0,58510.0,2,8,7.0,3,2.0 -8450,12918,3381.757208442776,26.0,111,2280.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30270.15,0.0,26030.0,2,9,7.0,3,2.0 -8451,12919,4131.84794433536,28.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14569.75,0.0,13840.0,3,9,7.0,3,1.0 -8452,12920,1440.8928795625143,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17600.0,0.0,0.0,17010.05,0.0,0.0,1,3,4.0,1,0.0 -8453,12922,2440.465470033463,35.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20030.0,0.0,0.0,39392.95,0.0,19830.0,3,7,6.0,5,1.0 -8454,12924,1591.0307775599144,57.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39865.65,0.0,51590.0,2,8,7.0,3,1.0 -8455,12925,1464.2635186257571,41.0,111,0.0,56,1.0,1.0,4.0,2.1,0.0,480.0,0.0,0.0,0.0,0.0,21128.35,2840.0,5380.0,3,9,7.0,2,1.0 -8456,12926,3258.2739418004458,25.0,112,3800.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26176.55,0.0,16230.0,3,7,2.0,4,2.0 -8457,12927,2365.630284920001,89.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7640.0,216.0,0.0,13740.0,0.0,0.0,5,7,5.0,1,0.0 -8458,12928,7224.361596571147,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11240.0,0.0,0.0,10454.8,0.0,0.0,1,10,8.0,3,0.0 -8459,12929,1486.652436880936,50.0,112,0.0,31,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,41.0,0.0,96379.9,0.0,0.0,1,8,1.0,4,2.0 -8460,12933,1364.7036446650407,78.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25910.0,0.0,0.0,25042.6,0.0,0.0,1,0,0.0,3,0.0 -8461,12934,2077.345577490113,62.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10620.0,0.0,0.0,78581.9,0.0,0.0,1,0,0.0,3,0.0 -8462,12935,2747.8979209686336,84.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20330.0,0.0,0.0,19352.95,0.0,0.0,1,9,7.0,1,0.0 -8463,12936,2461.7169363696416,35.0,111,0.0,47,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27004.35,0.0,24830.0,2,7,5.0,4,2.0 -8464,12937,2309.388875427924,64.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16080.0,0.0,0.0,31012.1,0.0,16240.0,3,7,5.0,3,1.0 -8465,12938,4601.031430026642,51.0,221,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,257.0,0.0,41935.4,0.0,44730.0,3,1,2.0,3,2.0 -8466,12940,1644.754386409739,58.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1560.0,0.0,0.0,21585.25,0.0,21730.0,1,7,1.0,1,1.0 -8467,12942,2647.2220353570665,37.0,111,0.0,67,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,26983.8,0.0,18230.0,3,4,4.0,2,1.0 -8468,12943,4235.7240862161225,42.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31458.95,0.0,36580.0,3,10,8.0,1,1.0 -8469,12946,4820.356352678851,80.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14630.0,0.0,0.0,14915.0,0.0,0.0,5,5,0.0,3,0.0 -8470,12948,1652.724425921166,69.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19040.0,0.0,0.0,34514.65,0.0,0.0,1,4,4.0,1,0.0 -8471,12949,2975.320398277426,26.0,111,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34331.1,0.0,31270.0,3,8,7.0,4,2.0 -8472,12950,1471.6393072845187,42.0,111,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50460.75,0.0,52190.0,1,7,5.0,4,2.0 -8473,12951,2977.837833898282,51.0,111,510.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18795.9,0.0,14790.0,3,10,8.0,3,1.0 -8474,12952,3793.173200596069,36.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28574.25,0.0,20080.0,2,8,7.0,2,1.0 -8475,12953,1957.5420939289575,81.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18790.0,0.0,0.0,19400.0,0.0,0.0,1,0,0.0,3,0.0 -8476,12954,3115.8588016349017,19.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12040.0,0.0,12040.0,5,10,8.0,1,1.0 -8477,12956,1579.2711249012218,40.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33258.35,0.0,33510.0,2,9,7.0,4,2.0 -8478,12957,2417.602452199058,55.0,221,0.0,65,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,27.0,0.0,40111.3,0.0,41270.0,2,1,2.0,4,3.0 -8479,12959,4430.405760418898,43.0,111,0.0,55,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,17573.0,0.0,4230.0,3,6,5.0,2,1.0 -8480,12960,4160.50268228652,27.0,111,0.0,85,0.0,0.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,13264.0,0.0,0.0,3,9,7.0,1,0.0 -8481,12961,3416.9349915188923,24.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2893.0,0.0,0.0,3,8,6.0,1,0.0 -8482,12962,2135.167458209485,41.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,26.0,0.0,31864.9,0.0,24310.0,2,6,5.0,4,2.0 -8483,12964,2756.205376768226,53.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,517.0,0.0,270395.55,0.0,287440.0,1,9,7.0,3,2.0 -8484,12967,1854.4684020696423,70.0,112,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,54960.0,0.0,0.0,54402.45,0.0,0.0,1,7,1.0,4,0.0 -8485,12970,1437.3192831464305,55.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47219.75,0.0,51260.0,1,8,7.0,3,2.0 -8486,12971,2587.386531184881,41.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,93401.45,0.0,89570.0,2,10,8.0,4,2.0 -8487,12972,3090.682108544915,46.0,111,6030.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,332.0,0.0,113971.95,0.0,116020.0,3,10,8.0,2,1.0 -8488,12975,3110.0081266898756,58.0,221,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,115.0,0.0,100216.85,0.0,105310.0,2,1,2.0,4,2.0 -8489,12976,8199.768542690115,89.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,220.0,8580.0,0.0,0.0,11584.0,0.0,0.0,3,8,6.0,1,0.0 -8490,12977,1104.9277213679131,51.0,111,0.0,31,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,309999.75,0.0,311760.0,1,10,8.0,4,2.0 -8491,12978,3267.7939575306896,64.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4530.0,0.0,0.0,4057.45,0.0,0.0,1,0,0.0,1,0.0 -8492,12979,1969.3466128329212,75.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28550.0,0.0,0.0,27827.25,0.0,0.0,1,0,0.0,3,0.0 -8493,12981,3410.0150142896427,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19210.0,0.0,0.0,18812.15,0.0,0.0,3,10,8.0,1,0.0 -8494,12983,3477.883682847967,81.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9520.0,0.0,0.0,12781.0,0.0,0.0,3,7,1.0,1,0.0 -8495,12984,2812.686302417522,55.0,112,0.0,63,2.0,2.0,3.0,2.0,3410.0,230.0,0.0,0.0,0.0,0.0,29308.3,1420.0,22430.0,3,5,0.0,4,2.0 -8496,12986,2587.2807543220683,29.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,5.0,0.0,112412.65,0.0,138480.0,2,10,8.0,3,2.0 -8497,12988,1535.8432726209612,70.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14070.0,89.0,0.0,22504.7,0.0,0.0,1,8,0.0,1,0.0 -8498,12990,2419.2171694764434,55.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11590.0,0.0,0.0,30272.6,0.0,21030.0,1,9,0.0,3,1.0 -8499,12991,2824.9586944787184,40.0,112,0.0,48,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31282.45,0.0,30390.0,2,7,1.0,4,1.0 -8500,12996,1508.157970293454,52.0,112,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,61719.2,0.0,62740.0,1,9,1.0,4,2.0 -8501,12997,1853.2368300623405,42.0,112,0.0,52,1.0,1.0,4.0,2.1,8380.0,0.0,0.0,0.0,0.0,0.0,28531.0,0.0,17820.0,1,6,0.0,4,1.0 -8502,12998,3019.496740451127,45.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14406.5,0.0,13090.0,3,10,8.0,1,1.0 -8503,13000,3104.37437359441,61.0,300,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,3510.0,4740.0,0.0,0.0,8103.75,0.0,0.0,1,0,0.0,1,0.0 -8504,13001,1349.1969555276166,46.0,211,0.0,33,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,71469.05,0.0,69450.0,2,1,2.0,4,1.0 -8505,13004,5558.165598397141,90.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16450.0,125.0,0.0,17229.0,0.0,0.0,5,0,1.0,3,0.0 -8506,13007,3615.551021473812,83.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14370.0,0.0,0.0,26789.35,0.0,0.0,1,9,2.0,3,0.0 -8507,13009,4963.086434290531,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20730.0,0.0,0.0,19708.25,0.0,0.0,1,8,7.0,1,0.0 -8508,13011,2574.0064068905735,88.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20210.0,0.0,0.0,19067.35,0.0,0.0,1,8,6.0,1,0.0 -8509,13014,2458.9417019235398,34.0,111,0.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25818.0,1060.0,20840.0,3,10,8.0,4,2.0 -8510,13015,1086.5468941199488,62.0,300,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20730.0,1779.0,0.0,25895.4,0.0,0.0,1,0,0.0,3,1.0 -8511,13018,2759.3896131729653,26.0,300,0.0,52,1.0,1.0,2.0,1.5,0.0,3990.0,0.0,0.0,0.0,0.0,13934.0,0.0,5240.0,3,0,0.0,3,1.0 -8512,13019,1958.8261781341628,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33980.0,0.0,0.0,31548.8,0.0,0.0,1,6,4.0,3,0.0 -8513,13020,5214.872384810705,33.0,112,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,108924.15,0.0,88610.0,2,9,1.0,4,2.0 -8514,13022,3067.7880690264756,29.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33774.6,0.0,29360.0,3,8,7.0,4,2.0 -8515,13023,4312.978740655815,21.0,111,350.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14074.0,0.0,10580.0,3,7,5.0,1,1.0 -8516,13024,4129.986123231533,56.0,111,0.0,22,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,116.0,0.0,72500.57142857142,0.0,42140.0,3,10,8.0,4,2.0 -8517,13025,2013.467874864421,51.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,64672.05,0.0,20930.0,1,10,8.0,4,2.0 -8518,13027,1612.0322294982457,37.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53911.35,0.0,54660.0,2,7,0.0,4,2.0 -8519,13029,1367.1884549635797,62.0,400,6860.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22348.55,0.0,16260.0,1,0,0.0,3,2.0 -8520,13030,5748.100637730849,63.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22250.0,0.0,0.0,22683.45,0.0,860.0,3,1,1.0,1,0.0 -8521,13032,2990.31922454696,62.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28420.0,7.0,0.0,27058.65,0.0,0.0,1,7,1.0,3,0.0 -8522,13033,3070.3413466207744,25.0,400,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16850.2,0.0,17620.0,3,0,0.0,1,1.0 -8523,13035,2835.97081893358,30.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38017.2,0.0,26890.0,2,9,1.0,3,2.0 -8524,13036,3093.777391518803,59.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10630.0,0.0,0.0,33999.85,0.0,14650.0,3,10,8.0,5,1.0 -8525,13037,2784.4837370596365,34.0,120,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28442.25,0.0,29830.0,3,0,0.0,1,1.0 -8526,13039,3826.3085418146934,57.0,111,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19170.0,0.0,0.0,23338.0,0.0,0.0,3,8,7.0,2,1.0 -8527,13040,2211.733073474164,53.0,112,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3458.8,0.0,0.0,1,8,0.0,3,2.0 -8528,13041,3096.615187190677,37.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53761.1,0.0,56000.0,3,6,5.0,4,2.0 -8529,13043,2138.383018406255,49.0,111,7450.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,480.0,0.0,0.0,17179.8,0.0,8890.0,3,6,4.0,1,1.0 -8530,13045,2094.0049897250947,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28670.0,0.0,0.0,23365.1,0.0,0.0,1,9,7.0,1,0.0 -8531,13046,3917.6062922978845,50.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41388.5,0.0,44620.0,2,6,4.0,3,2.0 -8532,13047,2176.517632123474,41.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53977.0,0.0,52620.0,2,10,8.0,4,2.0 -8533,13048,1905.829523365239,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24650.0,0.0,0.0,23357.5,0.0,0.0,3,6,4.0,1,0.0 -8534,13049,1046.1279252927377,66.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13890.0,0.0,0.0,15824.5,0.0,2180.0,1,0,0.0,3,0.0 -8535,13051,2146.9897164907115,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18240.0,0.0,0.0,18390.0,0.0,0.0,3,7,5.0,3,0.0 -8536,13052,3212.668798081786,50.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10352.25,0.0,0.0,1,8,7.0,1,0.0 -8537,13054,2773.0121774081454,60.0,111,2310.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12610.0,30.0,0.0,16442.3,0.0,790.0,3,7,5.0,1,0.0 -8538,13055,1048.8790188687387,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43540.0,128.0,0.0,44306.5,0.0,0.0,1,8,7.0,3,0.0 -8539,13056,2486.7138101820783,47.0,112,0.0,11,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26072.95,0.0,0.0,1,6,0.0,3,1.0 -8540,13057,2633.4905829706477,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23300.0,0.0,0.0,23637.3,0.0,2420.0,1,9,7.0,3,0.0 -8541,13058,1640.261702087585,77.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17500.0,75.0,0.0,17368.15,0.0,0.0,1,7,1.0,1,0.0 -8542,13059,2978.7270467288236,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16620.0,0.0,0.0,15811.75,0.0,140.0,3,10,8.0,1,0.0 -8543,13060,3083.911237944758,34.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41322.2,0.0,37920.0,3,9,2.0,4,2.0 -8544,13064,2032.8440898686376,25.0,112,0.0,63,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23948.7,0.0,19480.0,3,7,0.0,4,1.0 -8545,13065,2701.985342186604,51.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14080.0,40.0,0.0,32234.8,0.0,18150.0,2,7,5.0,3,1.0 -8546,13066,1649.6441659233242,38.0,112,7750.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27257.8,0.0,16730.0,2,10,0.0,4,2.0 -8547,13067,1978.0354313573716,53.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34406.85,0.0,34080.0,1,8,0.0,3,1.0 -8548,13069,3860.5162400312643,27.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33204.3,0.0,33490.0,3,9,7.0,3,2.0 -8549,13070,1294.0948815009347,60.0,400,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,7720.0,952.0,0.0,94858.85,0.0,15390.0,1,0,0.0,4,2.0 -8550,13072,1639.134997875345,37.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,27460.0,336.0,0.0,54717.65,0.0,30570.0,1,10,8.0,4,1.0 -8551,13075,4409.075248057789,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16420.0,0.0,0.0,14754.25,0.0,0.0,1,9,7.0,1,0.0 -8552,13077,3860.417685106148,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7476.0,0.0,0.0,3,9,7.0,1,0.0 -8553,13080,2287.7028821442213,81.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11580.0,0.0,0.0,12349.2,0.0,0.0,1,0,0.0,1,0.0 -8554,13082,2531.370886464496,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,81920.0,3.0,0.0,97865.5,0.0,0.0,1,9,7.0,3,0.0 -8555,13083,3785.705938715254,66.0,400,0.0,45,1.0,0.0,2.0,1.5,0.0,0.0,0.0,44780.0,0.0,0.0,53173.25,0.0,9350.0,1,0,0.0,3,1.0 -8556,13084,4182.534696290695,65.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,80100.0,0.0,0.0,76710.3,0.0,0.0,2,6,5.0,3,0.0 -8557,13085,2485.488343416222,74.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24580.0,18.0,0.0,23961.8,0.0,0.0,1,0,0.0,3,0.0 -8558,13087,2077.946311151649,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17830.0,0.0,0.0,21907.65,0.0,4950.0,3,9,7.0,3,0.0 -8559,13089,2070.695785384579,50.0,112,0.0,38,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,63105.0,0.0,61100.0,2,10,4.0,4,1.0 -8560,13090,3313.1201716210317,54.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,3550.0,0.0,0.0,51977.75,0.0,44410.0,1,9,7.0,2,2.0 -8561,13091,5911.564493547984,46.0,221,7220.0,68,1.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,14594.0,0.0,0.0,3,1,2.0,1,1.0 -8562,13092,1120.8859919142078,45.0,112,0.0,68,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40277.4,0.0,38830.0,2,8,1.0,4,2.0 -8563,13093,3725.841606685018,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22040.0,0.0,0.0,20613.35,0.0,0.0,5,9,7.0,1,0.0 -8564,13094,2850.454576084928,80.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9720.0,0.0,0.0,9720.0,0.0,0.0,5,7,5.0,1,0.0 -8565,13095,1673.1451489624615,64.0,211,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23510.0,174.0,0.0,56323.8,0.0,37130.0,3,4,4.0,3,1.0 -8566,13097,1488.8510408376053,43.0,111,6930.0,68,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29322.65,0.0,22390.0,3,9,7.0,2,2.0 -8567,13098,4155.478714451585,85.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27820.0,0.0,0.0,27636.3,0.0,0.0,1,10,8.0,5,0.0 -8568,13099,3148.6716817781585,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5422.0,0.0,0.0,3,10,8.0,1,0.0 -8569,13100,3314.972409097869,56.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,11.0,0.0,24460.35,0.0,26000.0,1,10,8.0,3,1.0 -8570,13103,1924.3454755458838,36.0,111,0.0,35,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,54864.35,0.0,49420.0,2,8,7.0,4,2.0 -8571,13105,1840.7519884206174,78.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22100.0,0.0,0.0,21708.7,0.0,0.0,1,0,0.0,3,0.0 -8572,13108,4083.2105979241574,23.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29988.0,0.0,31480.0,3,9,7.0,1,1.0 -8573,13109,2680.5716874189743,72.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23490.0,217.0,0.0,27406.3,0.0,0.0,1,8,0.0,1,0.0 -8574,13110,1229.4689740230642,56.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23325.0,0.0,20980.0,1,3,4.0,4,2.0 -8575,13111,3382.5603020920535,51.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20810.0,0.0,0.0,59401.4,0.0,47080.0,1,7,0.0,3,1.0 -8576,13113,1498.0578833106701,62.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28960.0,0.0,0.0,26974.9,0.0,0.0,2,2,3.0,3,0.0 -8577,13114,2905.3268137107125,55.0,221,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,65.0,0.0,33304.05,0.0,31240.0,1,1,1.0,1,1.0 -8578,13116,1842.231835579016,44.0,111,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40168.45,0.0,36980.0,2,6,5.0,4,2.0 -8579,13119,2002.5712595992122,45.0,112,0.0,64,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,30513.7,0.0,23430.0,2,9,3.0,4,1.0 -8580,13120,3438.203485157306,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16590.0,0.0,0.0,15448.7,0.0,0.0,1,10,8.0,1,0.0 -8581,13121,2801.4111667751426,46.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28325.65,0.0,31770.0,3,10,8.0,1,1.0 -8582,13122,2580.250610201608,78.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21990.0,0.0,0.0,21624.55,0.0,0.0,1,0,0.0,1,0.0 -8583,13123,3816.945484169002,35.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18333.85,0.0,18690.0,3,8,6.0,1,1.0 -8584,13126,3210.2871393561845,53.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44608.95,0.0,47560.0,3,9,7.0,3,2.0 -8585,13128,2270.8354626427704,48.0,112,0.0,45,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37438.1,0.0,27960.0,2,7,4.0,2,1.0 -8586,13130,2625.452230213445,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30920.0,0.0,0.0,28814.55,0.0,0.0,1,8,7.0,3,0.0 -8587,13135,1233.5626318582238,60.0,120,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51994.9,0.0,57020.0,1,0,0.0,3,2.0 -8588,13137,2901.8829294533098,36.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15186.95,0.0,15300.0,3,4,4.0,1,1.0 -8589,13140,1661.9638215986147,41.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36525.75,0.0,38040.0,2,6,0.0,3,2.0 -8590,13141,2086.339648242852,35.0,111,0.0,22,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,1.0,0.0,53350.15,0.0,42520.0,2,8,7.0,4,2.0 -8591,13145,2640.0423426038137,33.0,112,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41225.1,0.0,31810.0,3,9,1.0,4,2.0 -8592,13150,1624.3920460380152,53.0,112,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,98947.8,0.0,103800.0,1,9,0.0,4,2.0 -8593,13152,1417.0881659978631,42.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45799.35,0.0,48250.0,3,5,4.0,4,2.0 -8594,13153,1503.1026503143298,52.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,9.0,0.0,34809.15,0.0,37110.0,1,9,0.0,3,2.0 -8595,13154,2334.970913533365,58.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,12610.0,0.0,0.0,53854.95,0.0,45330.0,1,10,8.0,4,2.0 -8596,13155,2940.1304201382604,79.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24420.0,0.0,0.0,25041.5,0.0,0.0,1,9,7.0,3,0.0 -8597,13158,2674.775609273147,85.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20970.0,0.0,0.0,20749.75,0.0,0.0,3,0,0.0,1,0.0 -8598,13159,3882.158238964377,63.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38770.0,0.0,0.0,34957.5,0.0,0.0,3,8,6.0,3,0.0 -8599,13160,1196.9391945643122,53.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36439.85,0.0,38220.0,1,5,4.0,4,2.0 -8600,13161,2520.1778205733085,54.0,120,4960.0,38,3,2.0,3.0,2.0,0.0,2170.0,0.0,0.0,0.0,0.0,70323.15,580.0,67640.0,2,0,2.0,4,3.0 -8601,13162,1730.5896426602874,56.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39149.55,0.0,41840.0,3,10,8.0,4,2.0 -8602,13163,1181.88258532858,71.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46740.0,0.0,0.0,43158.4,0.0,0.0,1,0,0.0,3,0.0 -8603,13165,3277.5569463020247,29.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51787.15,0.0,63780.0,3,10,8.0,3,1.0 -8604,13166,1546.2759597086124,79.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,77180.0,475.0,0.0,65116.85,0.0,0.0,1,0,0.0,3,0.0 -8605,13167,1177.4526293004071,38.0,300,5920.0,63,3,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38500.05,0.0,33720.0,2,0,0.0,4,3.0 -8606,13168,3478.93347412248,60.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,36.0,0.0,37243.0,0.0,40070.0,2,10,3.0,3,2.0 -8607,13169,2870.9699312281514,66.0,111,5000.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14980.0,0.0,0.0,19884.7,0.0,0.0,3,7,6.0,3,0.0 -8608,13170,2393.028913076878,62.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30530.0,336.0,0.0,85981.3,0.0,25080.0,1,10,3.0,3,1.0 -8609,13171,1009.3885869713279,50.0,300,0.0,69,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,40409.8,0.0,35300.0,2,0,0.0,4,2.0 -8610,13172,3132.8476143532002,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22720.0,0.0,0.0,22289.7,0.0,0.0,3,7,5.0,3,0.0 -8611,13174,1496.4847817757643,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16590.0,0.0,0.0,16389.8,0.0,0.0,3,4,4.0,1,0.0 -8612,13176,4547.1014172747755,75.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12310.0,0.0,0.0,44204.4,0.0,0.0,1,1,2.0,1,0.0 -8613,13177,3666.521631549897,48.0,111,0.0,22,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,21790.55,0.0,20260.0,1,10,8.0,4,2.0 -8614,13178,1811.3883584742587,31.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,57195.8,0.0,58790.0,2,7,0.0,4,2.0 -8615,13179,4564.044714066877,61.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,15940.0,0.0,0.0,65965.8,0.0,54630.0,2,8,7.0,1,1.0 -8616,13183,3326.060658729269,67.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,13900.0,0.0,0.0,64841.65,0.0,59820.0,1,9,7.0,3,2.0 -8617,13184,3242.5394086844585,27.0,111,370.0,52,2.0,0.0,3.0,1.8,0.0,1150.0,0.0,0.0,0.0,0.0,19448.65,460.0,12910.0,3,8,7.0,4,2.0 -8618,13185,2171.918640217359,45.0,400,0.0,11,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,22460.25,210.0,210.0,3,0,0.0,4,1.0 -8619,13187,2718.2307010572313,57.0,111,0.0,62,1.0,1.0,3.0,2.0,0.0,320.0,0.0,0.0,0.0,0.0,23848.3,2980.0,22830.0,1,9,7.0,4,1.0 -8620,13188,1545.9218608923052,65.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42070.0,0.0,0.0,38591.7,0.0,0.0,1,1,2.0,3,0.0 -8621,13189,2190.5213464461885,29.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34563.75,0.0,35860.0,3,8,7.0,3,2.0 -8622,13192,3093.2129377988226,46.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40694.2,0.0,48660.0,3,7,6.0,1,1.0 -8623,13193,4528.802453231144,24.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8258.65,0.0,0.0,3,10,8.0,1,0.0 -8624,13196,3420.87271865853,31.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13584.65,0.0,14190.0,3,10,8.0,1,0.0 -8625,13200,1837.3981013074128,45.0,300,0.0,62,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,21507.7,2290.0,17200.0,1,0,0.0,4,1.0 -8626,13204,2210.7456258857806,43.0,120,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,1310.0,0.0,0.0,60753.45,0.0,60870.0,1,0,2.0,4,2.0 -8627,13206,4153.972253487674,31.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24775.0,0.0,26220.0,3,10,8.0,1,1.0 -8628,13207,2136.9808261531257,53.0,112,0.0,42,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32198.05,0.0,35040.0,1,9,0.0,4,2.0 -8629,13208,1528.0032274741372,63.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41160.0,0.0,0.0,45669.5,0.0,9780.0,1,10,1.0,3,0.0 -8630,13209,3897.833583744314,33.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44773.15,0.0,53850.0,3,10,8.0,1,1.0 -8631,13210,1965.6964334254023,70.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18550.0,0.0,0.0,16457.95,0.0,0.0,2,1,3.0,1,0.0 -8632,13211,2687.6087014079294,30.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36660.55,0.0,39200.0,3,6,0.0,3,2.0 -8633,13213,2315.076086880799,67.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30390.0,0.0,0.0,27864.55,0.0,0.0,1,0,3.0,3,0.0 -8634,13214,2741.7708008994455,41.0,111,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49712.35,0.0,40910.0,2,6,5.0,4,2.0 -8635,13215,4127.523616978924,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13470.0,0.0,0.0,13470.0,0.0,0.0,1,9,7.0,1,0.0 -8636,13216,2635.6165044110544,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32460.0,0.0,0.0,30989.15,0.0,0.0,3,8,7.0,3,0.0 -8637,13217,3905.9970580706054,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14690.0,0.0,0.0,14918.0,0.0,0.0,3,10,8.0,1,0.0 -8638,13219,2968.7175759376564,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,3840.0,15660.0,0.0,0.0,19563.0,0.0,0.0,3,8,6.0,1,0.0 -8639,13220,549.1068100670375,50.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59589.3,0.0,65370.0,2,10,0.0,3,2.0 -8640,13222,2191.109724323415,66.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31540.0,0.0,0.0,36822.35,0.0,0.0,1,8,0.0,3,0.0 -8641,13223,1609.6679086841484,50.0,111,0.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49578.4,0.0,52470.0,2,8,7.0,4,3.0 -8642,13224,2566.2207220229984,34.0,111,0.0,45,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,33163.65,0.0,21420.0,3,8,7.0,2,1.0 -8643,13225,1448.9253940738733,91.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15950.0,0.0,0.0,22690.9,0.0,0.0,1,0,0.0,3,0.0 -8644,13227,3065.9457219921587,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31380.0,0.0,0.0,30062.65,0.0,0.0,5,9,7.0,3,0.0 -8645,13228,1536.7371781998772,64.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33250.0,0.0,0.0,30898.55,0.0,0.0,1,0,0.0,1,0.0 -8646,13229,3218.9679968961723,48.0,111,0.0,22,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,67198.85,0.0,75650.0,3,8,6.0,2,1.0 -8647,13231,2142.5221144776,44.0,111,0.0,35,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,85479.3,0.0,91660.0,1,10,8.0,4,2.0 -8648,13233,2927.084601719448,38.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50164.5,0.0,49690.0,2,9,0.0,4,2.0 -8649,13234,3232.0590239278404,46.0,112,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,44536.35,0.0,47090.0,2,10,4.0,2,1.0 -8650,13235,1537.636684619636,55.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,132755.2,0.0,174680.0,2,8,7.0,3,1.0 -8651,13238,3784.180182525598,50.0,111,6970.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43078.4,0.0,37960.0,3,9,7.0,2,1.0 -8652,13239,2797.286304035016,83.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14490.0,0.0,0.0,17882.0,0.0,0.0,3,7,5.0,1,0.0 -8653,13240,1312.594345313158,42.0,112,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46688.15,0.0,46510.0,2,8,0.0,4,2.0 -8654,13241,3107.940976753993,64.0,111,0.0,63,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,38859.0,0.0,40270.0,1,10,8.0,4,2.0 -8655,13243,1468.550061240831,75.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32880.0,0.0,0.0,31617.05,0.0,0.0,1,7,5.0,3,0.0 -8656,13244,2769.8740203556044,42.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,69400.75,0.0,72050.0,2,10,8.0,4,2.0 -8657,13245,2725.3474575167024,54.0,111,3230.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12646.85,0.0,8250.0,3,7,5.0,1,1.0 -8658,13247,2278.789227868292,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44650.0,0.0,0.0,40997.95,0.0,0.0,1,6,5.0,3,0.0 -8659,13248,977.6334719530331,36.0,111,1130.0,55,2.0,1.0,6.0,2.7,0.0,3000.0,0.0,0.0,0.0,0.0,28634.2,2140.0,14640.0,2,9,7.0,4,2.0 -8660,13249,3067.2702827413,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,49390.0,0.0,0.0,39605.4,0.0,0.0,1,10,8.0,1,0.0 -8661,13250,1322.0388887834722,45.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63806.1,0.0,67130.0,2,8,7.0,4,2.0 -8662,13252,1780.7327064565604,38.0,111,0.0,56,2.0,0.0,10.0,4.9,0.0,6890.0,2240.0,6170.0,0.0,0.0,36730.0,0.0,0.0,3,9,7.0,5,2.0 -8663,13253,3395.900949336477,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4654.0,0.0,0.0,3,8,7.0,1,0.0 -8664,13257,3451.2667409984433,81.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13890.0,0.0,0.0,13890.0,0.0,0.0,1,9,1.0,1,0.0 -8665,13258,1059.3181680587268,51.0,111,0.0,34,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,108983.45,0.0,125260.0,1,5,4.0,4,1.0 -8666,13261,1838.6295585351177,82.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28830.0,0.0,0.0,27737.0,0.0,0.0,1,0,0.0,3,0.0 -8667,13263,1727.0357389185258,46.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47765.85,0.0,41170.0,3,10,0.0,4,2.0 -8668,13264,2403.764318344503,55.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44836.2,0.0,47340.0,1,9,7.0,3,2.0 -8669,13268,2267.955541064398,66.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31720.0,0.0,0.0,30861.9,0.0,1070.0,1,7,0.0,3,0.0 -8670,13269,1548.2221334514559,69.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,26500.0,0.0,0.0,51954.75,0.0,18360.0,1,8,7.0,4,1.0 -8671,13270,3065.3459467414764,37.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30147.2,0.0,21970.0,3,9,7.0,2,1.0 -8672,13271,3809.4252526030677,51.0,112,1630.0,31,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,33427.25,0.0,26990.0,3,9,0.0,2,1.0 -8673,13273,2084.030158338801,45.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41117.15,0.0,38500.0,2,6,0.0,4,2.0 -8674,13275,2236.8090438294457,41.0,400,0.0,13,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,35364.95,0.0,0.0,2,0,0.0,4,2.0 -8675,13276,3522.1861772576763,52.0,221,0.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,8990.0,0.0,0.0,13163.85,0.0,5510.0,1,1,2.0,2,2.0 -8676,13277,2975.069086146329,55.0,111,9220.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12190.0,0.0,2970.0,3,9,7.0,1,1.0 -8677,13278,3460.4513553117818,38.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19493.1,0.0,13840.0,3,8,6.0,2,1.0 -8678,13279,4719.942680334968,69.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24150.0,0.0,0.0,23407.05,0.0,0.0,1,0,1.0,3,0.0 -8679,13280,3837.322734475589,66.0,400,0.0,38,1.0,0.0,3.0,2.0,0.0,0.0,1440.0,40770.0,0.0,0.0,42862.85,0.0,0.0,1,0,1.0,5,1.0 -8680,13281,2202.500860657798,56.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24250.0,142.0,0.0,66295.75,0.0,31100.0,1,9,1.0,3,1.0 -8681,13282,3120.403687487258,51.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22226.8,0.0,23510.0,3,10,8.0,1,1.0 -8682,13284,3849.6269054127456,21.0,111,1030.0,53,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31297.0,0.0,22220.0,3,9,7.0,5,2.0 -8683,13285,1867.0224119851139,45.0,112,0.0,53,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,136.0,0.0,28294.1,0.0,26860.0,2,9,1.0,4,2.0 -8684,13286,3837.5977305647048,44.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28125.7,0.0,31700.0,1,10,8.0,1,1.0 -8685,13288,3897.147156267485,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,3560.0,4750.0,0.0,0.0,11291.0,0.0,0.0,3,9,7.0,1,0.0 -8686,13289,4469.2654236094695,37.0,112,0.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,60555.6,0.0,56850.0,2,5,0.0,4,2.0 -8687,13290,3446.4697741213513,32.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21320.35,0.0,24000.0,1,10,8.0,1,1.0 -8688,13291,3879.810906915969,61.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4220.0,0.0,0.0,12808.0,0.0,9390.0,3,10,8.0,1,1.0 -8689,13293,768.0760042447382,64.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35050.0,32.0,0.0,32963.2,0.0,0.0,1,0,0.0,3,0.0 -8690,13294,1342.2064043503376,47.0,111,0.0,37,1.0,1.0,5.0,2.8,0.0,0.0,0.0,6470.0,0.0,0.0,93524.75,0.0,103370.0,2,8,7.0,4,1.0 -8691,13295,2982.917092147426,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22230.0,0.0,0.0,21505.2,0.0,0.0,3,8,6.0,1,0.0 -8692,13296,1865.1684035020487,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46370.0,0.0,0.0,48387.65,0.0,0.0,5,8,7.0,3,0.0 -8693,13297,1554.9087387826446,65.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28170.0,0.0,0.0,26270.2,0.0,0.0,1,0,0.0,3,0.0 -8694,13298,3573.1362432005576,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,87313.85,0.0,88010.0,2,9,7.0,4,2.0 -8695,13299,2188.3212052890035,43.0,112,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,35.0,0.0,46404.9,0.0,44900.0,1,6,0.0,4,2.0 -8696,13300,2007.5444153117992,34.0,211,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,48675.35,0.0,43810.0,2,2,3.0,4,2.0 -8697,13301,2333.9250339988394,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17840.0,27.0,0.0,16693.55,0.0,0.0,1,5,4.0,1,0.0 -8698,13305,1681.4729945130016,63.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24030.0,0.0,0.0,24265.65,0.0,0.0,1,0,3.0,3,0.0 -8699,13309,3122.491227760084,60.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,12550.0,0.0,0.0,33602.05,0.0,24540.0,3,10,8.0,3,2.0 -8700,13312,1105.1187221526561,78.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33060.0,0.0,0.0,32456.95,0.0,0.0,1,9,2.0,3,0.0 -8701,13314,2373.5169052300653,69.0,300,0.0,71,1.0,1.0,3.0,2.0,0.0,0.0,0.0,16520.0,0.0,0.0,36445.9,0.0,17600.0,1,0,0.0,4,1.0 -8702,13315,2847.6598871928727,47.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26637.8,0.0,28890.0,3,10,8.0,1,1.0 -8703,13317,2470.036534851194,36.0,111,12310.0,85,3,1.0,4.0,2.5,0.0,320.0,0.0,0.0,0.0,0.0,20553.5,400.0,1090.0,3,9,7.0,4,3.0 -8704,13318,5310.199999612226,25.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30419.3,0.0,28890.0,3,10,8.0,5,2.0 -8705,13319,1931.156456392717,34.0,111,11540.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,7.0,0.0,38747.15,0.0,24930.0,2,8,6.0,4,2.0 -8706,13320,2809.452905327217,42.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54684.55,0.0,53840.0,2,3,4.0,4,2.0 -8707,13321,1725.8025155412204,38.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52837.75,0.0,49730.0,2,9,3.0,4,2.0 -8708,13322,2434.2493444691067,56.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30767.05,0.0,0.0,2,9,7.0,3,2.0 -8709,13323,3245.7028402014985,52.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27407.65,0.0,29560.0,2,8,7.0,1,1.0 -8710,13325,3084.510305011327,36.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34013.05,0.0,38330.0,1,9,7.0,1,1.0 -8711,13329,1845.9303607171616,47.0,120,0.0,52,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52118.5,0.0,54310.0,1,0,2.0,4,3.0 -8712,13330,3813.0139801098658,60.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13266.6,0.0,0.0,1,9,1.0,3,2.0 -8713,13331,3334.924894350106,56.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22222.0,0.0,19410.0,1,8,7.0,3,1.0 -8714,13332,1941.81964995591,55.0,112,0.0,21,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,14976.35,0.0,16320.0,3,8,0.0,4,3.0 -8715,13333,3598.6162578628496,36.0,112,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,13800.0,0.0,0.0,38711.4,0.0,23260.0,1,6,0.0,4,2.0 -8716,13336,2181.663485296314,65.0,111,0.0,23,1.0,0.0,2.0,1.5,0.0,0.0,0.0,10060.0,0.0,0.0,107485.1,0.0,100550.0,1,8,6.0,3,1.0 -8717,13337,5346.901604938989,53.0,400,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1545.0,0.0,95645.1,0.0,18500.0,3,0,0.0,3,2.0 -8718,13338,3176.470360342349,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20850.0,0.0,0.0,19996.65,0.0,0.0,3,10,8.0,1,0.0 -8719,13340,2457.0679548451367,88.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14460.0,0.0,0.0,15540.0,0.0,0.0,3,1,2.0,1,0.0 -8720,13341,2767.5235562759017,64.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29350.0,0.0,0.0,29327.85,0.0,0.0,1,6,0.0,3,0.0 -8721,13342,2312.135496371471,46.0,111,0.0,67,2.0,1.0,7.0,3.8,0.0,0.0,0.0,1300.0,0.0,0.0,33676.0,0.0,21620.0,3,10,8.0,5,2.0 -8722,13343,3289.4228994689856,97.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,47620.0,0.0,0.0,47500.2,0.0,0.0,5,6,0.0,1,0.0 -8723,13344,3565.97751409889,76.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21270.0,0.0,0.0,20778.7,0.0,0.0,3,7,1.0,1,0.0 -8724,13346,3626.15306906338,70.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20220.0,0.0,0.0,23106.4,0.0,0.0,1,7,0.0,1,0.0 -8725,13347,1496.1983795766432,49.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,17.0,0.0,32711.25,0.0,21670.0,1,0,0.0,3,2.0 -8726,13348,2769.1740877165926,48.0,111,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56848.05,0.0,53750.0,3,9,7.0,4,2.0 -8727,13351,2838.355844313318,54.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21834.3,0.0,23080.0,3,6,5.0,1,1.0 -8728,13353,2379.6830581470995,53.0,111,7970.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10881.55,0.0,910.0,3,9,7.0,1,1.0 -8729,13354,3194.3425060183577,58.0,112,0.0,68,2.0,3.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35219.1,0.0,37540.0,1,9,0.0,3,2.0 -8730,13355,2080.2197590703713,26.0,112,0.0,63,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19783.0,0.0,15120.0,3,7,0.0,4,1.0 -8731,13356,2662.9783167878923,34.0,211,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16434.4,0.0,17160.0,3,3,3.0,1,1.0 -8732,13357,1209.3391152607155,80.0,300,0.0,74,0.0,0.0,4.0,2.1,0.0,0.0,0.0,32330.0,0.0,0.0,40308.7,0.0,0.0,5,0,0.0,5,0.0 -8733,13358,1650.7372869089431,48.0,112,1530.0,33,3,3.0,3.0,2.0,0.0,0.0,0.0,11320.0,0.0,0.0,81365.75,0.0,78940.0,1,7,0.0,4,3.0 -8734,13361,1634.7944612815083,35.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,62717.5,0.0,61420.0,2,10,4.0,4,2.0 -8735,13362,1359.9554205441718,42.0,112,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,3.0,0.0,48555.3,0.0,13830.0,2,9,2.0,2,1.0 -8736,13363,842.67241330128,48.0,112,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,31694.85,0.0,31980.0,3,8,0.0,4,2.0 -8737,13364,2492.599290154646,83.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20400.0,0.0,0.0,20094.5,0.0,0.0,3,6,4.0,1,0.0 -8738,13365,3237.681582082675,45.0,112,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,149.0,0.0,38308.9,0.0,24820.0,2,6,0.0,1,1.0 -8739,13369,2784.726594362213,50.0,120,10150.0,55,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15684.95,0.0,430.0,2,0,2.0,2,1.0 -8740,13370,2849.751317305054,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19740.0,0.0,0.0,18636.25,0.0,0.0,3,6,5.0,1,0.0 -8741,13371,3009.5179681664663,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5659.95,0.0,0.0,3,9,7.0,1,0.0 -8742,13372,2945.7433692588565,33.0,400,1320.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48223.35,0.0,49050.0,3,0,0.0,3,2.0 -8743,13374,1307.0926528818995,33.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,4120.0,0.0,0.0,0.0,0.0,15850.0,0.0,0.0,3,8,7.0,2,0.0 -8744,13375,1201.582204661805,53.0,112,3880.0,34,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,68099.75,0.0,71970.0,1,8,0.0,4,3.0 -8745,13376,5385.126007392517,36.0,120,6740.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19566.0,0.0,11140.0,3,0,2.0,1,1.0 -8746,13378,5717.516959199444,59.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35630.0,0.0,0.0,33783.15,0.0,0.0,1,0,0.0,3,0.0 -8747,13380,3627.4789581500286,68.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22250.0,0.0,0.0,21242.95,0.0,0.0,1,7,0.0,3,0.0 -8748,13381,1198.0002789476086,33.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,173.0,0.0,119211.85,0.0,103540.0,2,8,7.0,4,2.0 -8749,13382,3101.9398397200175,22.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23039.0,0.0,20400.0,3,9,7.0,3,1.0 -8750,13383,1245.8938355646853,38.0,112,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,38204.8,0.0,26800.0,2,7,0.0,4,2.0 -8751,13385,4239.924213141133,85.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11310.0,0.0,0.0,10998.65,0.0,0.0,5,9,7.0,1,0.0 -8752,13386,2448.4729341911284,52.0,111,0.0,22,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,62690.0,2,9,7.0,4,3.0 -8753,13387,4172.120319891252,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8560.0,0.0,0.0,14660.4,0.0,0.0,1,8,7.0,1,0.0 -8754,13388,5710.300224665016,27.0,112,0.0,23,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,7.0,0.0,60685.0,0.0,62040.0,2,8,0.0,3,2.0 -8755,13392,1122.6989368370284,35.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,56955.05,0.0,52930.0,2,9,7.0,4,2.0 -8756,13395,3457.3761683084813,33.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,12.0,0.0,38723.0,0.0,44840.0,3,10,8.0,1,1.0 -8757,13397,3140.7134299778186,50.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18425.4,0.0,18480.0,3,8,7.0,1,1.0 -8758,13399,2678.6871249778224,51.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37203.6,0.0,0.0,2,9,7.0,2,1.0 -8759,13400,1913.4073351610655,60.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20970.0,0.0,0.0,22349.85,0.0,2150.0,3,4,4.0,1,0.0 -8760,13401,2390.2354380853553,48.0,111,2140.0,54,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22192.85,350.0,18420.0,3,8,7.0,2,2.0 -8761,13402,3396.3167049853137,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8448.65,0.0,0.0,3,9,7.0,1,0.0 -8762,13405,3030.7927912902924,77.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14910.0,0.0,0.0,15590.0,0.0,0.0,3,1,2.0,1,0.0 -8763,13407,2027.3315752068781,41.0,400,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14640.0,0.0,0.0,39404.65,0.0,27450.0,1,0,0.0,3,1.0 -8764,13408,2734.641030086515,41.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39698.9,0.0,39240.0,3,10,8.0,4,2.0 -8765,13410,3114.7231653814097,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18670.0,0.0,0.0,18107.05,0.0,0.0,3,10,8.0,1,0.0 -8766,13411,3224.021679307632,43.0,112,4420.0,67,1.0,0.0,2.0,1.5,0.0,0.0,0.0,19180.0,0.0,0.0,27835.5,0.0,5470.0,1,8,0.0,5,1.0 -8767,13413,1618.6488170926218,76.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27370.0,0.0,0.0,26086.4,0.0,0.0,1,1,3.0,3,0.0 -8768,13414,3130.867901542752,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4620.0,0.0,0.0,3,8,6.0,1,0.0 -8769,13416,3745.29397422221,84.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15660.0,0.0,0.0,3,9,7.0,1,0.0 -8770,13419,1893.6946558671345,60.0,112,940.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,21480.0,0.0,0.0,22874.55,0.0,1000.0,1,9,0.0,3,1.0 -8771,13423,5478.20249728113,28.0,221,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53743.4,0.0,56460.0,3,1,3.0,3,2.0 -8772,13424,2238.264203887796,30.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43484.3,0.0,34680.0,3,8,7.0,3,2.0 -8773,13426,2291.382482418896,50.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,414844.65,0.0,56330.0,2,10,8.0,4,2.0 -8774,13428,2686.884064197945,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34630.0,0.0,0.0,38941.05,0.0,0.0,1,8,6.0,3,0.0 -8775,13429,3667.2083789847406,40.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,3080.0,0.0,0.0,33765.95,0.0,31400.0,3,9,7.0,3,2.0 -8776,13433,3280.1564221472936,87.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11900.0,0.0,0.0,11900.0,0.0,0.0,1,8,6.0,1,0.0 -8777,13434,3133.715931827735,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10720.0,0.0,0.0,12031.45,0.0,1040.0,3,9,7.0,1,0.0 -8778,13436,4540.554119458587,27.0,112,0.0,63,1.0,1.0,3.0,1.8,0.0,270.0,0.0,0.0,0.0,0.0,21177.05,960.0,14280.0,3,7,0.0,4,1.0 -8779,13437,1553.69886419479,29.0,111,0.0,65,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,25620.05,0.0,19600.0,2,8,7.0,4,1.0 -8780,13441,2651.892749392505,31.0,111,12030.0,63,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,27931.0,0.0,3810.0,3,4,4.0,4,1.0 -8781,13443,2365.454765012453,27.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46465.9,0.0,50020.0,3,8,0.0,3,2.0 -8782,13444,1937.1535767945352,58.0,300,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17490.0,0.0,0.0,32513.7,0.0,17580.0,1,0,0.0,3,1.0 -8783,13446,2016.4416916403457,80.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57910.0,0.0,0.0,50510.5,0.0,0.0,1,8,6.0,3,0.0 -8784,13450,2890.2997826284936,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45510.0,0.0,0.0,42956.8,0.0,0.0,1,10,8.0,3,0.0 -8785,13451,1673.896489391105,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23910.0,0.0,0.0,22892.25,0.0,0.0,1,9,7.0,3,0.0 -8786,13453,1418.7017753817777,60.0,111,21720.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,500.0,0.0,0.0,27755.7,0.0,7230.0,1,6,4.0,3,1.0 -8787,13454,3666.337996937887,59.0,112,24150.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23828.25,0.0,0.0,3,5,0.0,5,0.0 -8788,13455,1656.3184347140011,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31370.0,0.0,0.0,29378.3,0.0,0.0,1,8,7.0,3,0.0 -8789,13456,2839.80964304374,38.0,300,9520.0,12,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32541.05,0.0,23210.0,2,0,0.0,4,2.0 -8790,13458,3144.1286489130343,55.0,112,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16480.0,0.0,0.0,47225.4,0.0,31530.0,3,9,0.0,3,1.0 -8791,13459,2530.3753927709663,55.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,140.0,0.0,71639.05,0.0,80930.0,1,10,8.0,3,2.0 -8792,13461,3609.8828372971466,52.0,112,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44666.2,0.0,55900.0,2,9,0.0,1,1.0 -8793,13462,2554.9957284613242,36.0,111,0.0,81,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,7864.0,0.0,0.0,3,7,5.0,1,1.0 -8794,13463,3324.579128233579,75.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9280.0,0.0,0.0,9639.5,0.0,0.0,1,0,0.0,1,0.0 -8795,13466,3831.4171170899763,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27730.0,1337.0,0.0,43361.2,0.0,0.0,1,9,7.0,3,0.0 -8796,13468,4691.58537374343,29.0,111,0.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31697.05,0.0,22220.0,3,7,5.0,4,1.0 -8797,13469,4336.811295521305,34.0,221,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12673.85,0.0,12130.0,3,1,2.0,1,1.0 -8798,13471,3329.448203006111,24.0,111,1220.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14935.0,0.0,10580.0,3,9,7.0,1,1.0 -8799,13473,958.7505380892336,36.0,120,7640.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,80971.8,0.0,75240.0,1,0,1.0,2,2.0 -8800,13474,1384.668213239097,56.0,300,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,18040.0,0.0,0.0,36084.65,0.0,18390.0,1,0,0.0,4,2.0 -8801,13475,2349.010831524592,39.0,112,480.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,9880.0,0.0,0.0,43335.45,0.0,33250.0,2,5,0.0,4,2.0 -8802,13479,2973.4146493308126,32.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,5660.0,0.0,0.0,0.0,0.0,14826.35,0.0,0.0,3,10,8.0,2,0.0 -8803,13480,6407.893746529654,25.0,111,2580.0,52,3,2.0,5.0,3.0,0.0,0.0,0.0,10830.0,0.0,0.0,59501.3,0.0,48270.0,1,10,8.0,4,3.0 -8804,13484,1343.4440892392827,60.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,42410.0,0.0,0.0,50053.1,0.0,11810.0,1,7,6.0,4,1.0 -8805,13485,2449.89634418893,54.0,111,0.0,22,1.0,1.0,4.0,2.5,0.0,0.0,0.0,34640.0,872.0,0.0,57315.25,0.0,9440.0,2,7,5.0,4,1.0 -8806,13486,2629.5109002757854,62.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23131.1,0.0,23710.0,2,10,8.0,1,1.0 -8807,13487,3030.6736759946966,32.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54958.3,0.0,59050.0,2,10,8.0,4,2.0 -8808,13488,3282.9901559267496,21.0,111,1790.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15470.95,0.0,11440.0,3,9,7.0,1,1.0 -8809,13491,2218.686569427986,27.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,16.0,0.0,37092.95,0.0,41150.0,3,7,6.0,3,2.0 -8810,13493,3563.588535296185,55.0,111,0.0,72,0.0,0.0,3.0,2.0,4210.0,2850.0,0.0,0.0,0.0,0.0,17300.0,260.0,4610.0,3,10,8.0,4,0.0 -8811,13494,4188.099912718408,54.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,1600.0,0.0,0.0,0.0,0.0,8313.65,2010.0,5210.0,1,6,5.0,1,1.0 -8812,13495,4131.6036892476695,46.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23413.55,0.0,25330.0,2,8,6.0,2,1.0 -8813,13496,3213.377261933189,71.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13870.0,0.0,0.0,66491.7,0.0,0.0,1,0,0.0,5,0.0 -8814,13497,1993.0784949447466,54.0,111,0.0,75,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,7970.0,0.0,0.0,15571.65,0.0,0.0,3,8,6.0,1,0.0 -8815,13498,1689.5357934218139,60.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20000.0,0.0,0.0,19652.45,0.0,0.0,2,6,0.0,3,0.0 -8816,13499,2669.513524013531,40.0,111,11130.0,67,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,18390.0,0.0,0.0,3,10,8.0,2,1.0 -8817,13500,2448.897291186231,74.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23940.0,0.0,0.0,22831.25,0.0,0.0,1,0,0.0,3,0.0 -8818,13503,1897.6285741597524,45.0,300,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,3.0,0.0,34301.45,0.0,35560.0,1,0,0.0,4,2.0 -8819,13506,1745.2982571703717,45.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,47.0,0.0,86945.9,0.0,80740.0,1,9,7.0,4,2.0 -8820,13509,1762.4644073837965,53.0,111,9580.0,62,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,13.0,0.0,30964.6,0.0,22040.0,3,8,6.0,4,2.0 -8821,13510,1234.9284554442409,48.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26498.05,0.0,27140.0,1,8,7.0,3,1.0 -8822,13511,3144.1005024107294,41.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24451.2,0.0,25570.0,2,8,6.0,1,1.0 -8823,13512,1227.557637452568,45.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,4.0,0.0,39902.2,0.0,35670.0,1,8,7.0,3,2.0 -8824,13513,1224.5669043487414,45.0,300,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39951.9,0.0,39020.0,3,0,0.0,4,2.0 -8825,13514,2486.715407387399,65.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17110.0,0.0,0.0,16398.45,0.0,0.0,1,0,0.0,1,0.0 -8826,13515,3265.8522275526166,77.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39320.0,0.0,0.0,35643.6,0.0,0.0,1,0,0.0,3,0.0 -8827,13516,2245.003478831818,32.0,111,8690.0,21,1.0,1.0,3.0,1.6,0.0,280.0,0.0,0.0,0.0,0.0,16255.5,0.0,350.0,3,7,5.0,2,1.0 -8828,13517,2262.0551616239636,75.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10030.0,0.0,0.0,12814.0,0.0,0.0,3,0,0.0,3,0.0 -8829,13518,879.9264008289123,33.0,300,0.0,69,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,27784.0,0.0,16370.0,3,0,0.0,4,1.0 -8830,13519,1334.3140537135098,53.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16063.2,0.0,16720.0,1,6,5.0,1,1.0 -8831,13523,1957.8888334829212,60.0,300,0.0,12,3,5.0,5.0,3.0,0.0,0.0,0.0,3810.0,0.0,0.0,60207.2,0.0,32750.0,1,0,0.0,4,5.0 -8832,13524,2382.499279240177,62.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15940.0,0.0,0.0,15989.2,0.0,0.0,3,8,7.0,1,0.0 -8833,13525,3023.7494942730873,61.0,111,1640.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5120.0,0.0,0.0,10380.8,0.0,1990.0,2,9,7.0,1,1.0 -8834,13527,1915.7435106707899,28.0,111,0.0,21,2.0,1.0,3.0,2.0,0.0,0.0,0.0,9480.0,0.0,0.0,17110.8,0.0,2270.0,1,10,8.0,4,2.0 -8835,13529,2114.2608493094726,33.0,111,2310.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,6.0,0.0,36638.05,0.0,34750.0,2,7,5.0,4,2.0 -8836,13530,2133.8930393984033,45.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9520.0,0.0,0.0,30962.8,0.0,23070.0,3,7,5.0,2,1.0 -8837,13533,1982.228745878296,73.0,212,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8470.0,0.0,0.0,8457.9,0.0,0.0,1,2,0.0,1,0.0 -8838,13534,3833.2589636982016,50.0,300,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21985.25,0.0,23370.0,1,0,0.0,1,1.0 -8839,13535,7957.797559082551,37.0,112,0.0,48,1.0,0.0,1.0,1.0,1220.0,0.0,0.0,0.0,0.0,0.0,6298.1,0.0,5170.0,3,9,1.0,1,1.0 -8840,13536,4326.47440375028,40.0,111,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,9,7.0,4,1.0 -8841,13537,2152.4762831262187,32.0,300,13760.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42663.55,0.0,27210.0,2,0,0.0,3,2.0 -8842,13538,3652.75074803725,47.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38221.3,0.0,40520.0,2,5,0.0,3,2.0 -8843,13540,2432.982968482459,57.0,111,0.0,68,3,3.0,3.0,2.0,0.0,150.0,0.0,0.0,0.0,0.0,49757.95,1200.0,53010.0,1,8,7.0,2,3.0 -8844,13541,3070.836055595472,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16640.0,0.0,0.0,16757.95,0.0,0.0,3,10,8.0,1,0.0 -8845,13543,2599.909456831425,48.0,111,1540.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57920.65,0.0,60990.0,1,8,6.0,4,2.0 -8846,13544,2897.5877784871573,39.0,112,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51214.95,0.0,46300.0,1,9,0.0,4,2.0 -8847,13545,2777.97413163123,54.0,112,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27496.35,0.0,29440.0,1,10,4.0,3,1.0 -8848,13546,2593.1145391685855,34.0,111,1840.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29732.2,0.0,28140.0,3,7,5.0,4,2.0 -8849,13547,2205.1480680441196,73.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25810.0,0.0,0.0,24591.05,0.0,0.0,1,9,0.0,3,0.0 -8850,13549,1552.5374432888352,82.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47350.0,1.0,0.0,43855.95,0.0,0.0,1,8,7.0,3,0.0 -8851,13550,950.2226256573734,46.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,63431.05,0.0,65740.0,2,6,0.0,4,2.0 -8852,13553,1744.5816958199246,61.0,221,1120.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27940.0,0.0,0.0,27406.4,0.0,270.0,1,1,3.0,3,0.0 -8853,13554,4000.640583836787,22.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34835.0,0.0,36120.0,3,10,8.0,1,1.0 -8854,13556,1334.4430062896663,33.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,14.0,0.0,11567.9,0.0,10580.0,5,0,1.0,1,1.0 -8855,13557,1582.197625491111,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40220.0,17.0,0.0,39938.05,0.0,0.0,1,7,5.0,3,0.0 -8856,13560,2211.376917819598,40.0,221,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,124.0,0.0,43408.5,0.0,43980.0,2,1,3.0,4,2.0 -8857,13561,1600.0075868941524,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22010.0,0.0,0.0,33068.25,0.0,0.0,1,10,8.0,3,0.0 -8858,13562,1432.8824021515609,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46860.0,0.0,0.0,42825.6,0.0,0.0,1,8,6.0,3,0.0 -8859,13563,2026.7894955602947,82.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28930.0,58.0,0.0,27805.05,0.0,0.0,1,9,7.0,3,0.0 -8860,13564,2562.2124344438444,49.0,111,110710.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,3433.0,0.0,412879.1,0.0,359840.0,1,10,8.0,4,2.0 -8861,13565,6747.28057295312,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24990.0,0.0,0.0,24648.75,0.0,0.0,3,6,5.0,3,0.0 -8862,13567,1328.6940654767077,43.0,111,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50701.8,0.0,46900.0,2,9,7.0,4,2.0 -8863,13568,2584.876695325935,81.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15600.0,0.0,0.0,16642.4,0.0,0.0,5,0,0.0,3,0.0 -8864,13569,3051.325042327208,61.0,120,6540.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9092.65,0.0,0.0,3,0,0.0,1,0.0 -8865,13570,7659.298340325333,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,69020.0,61.0,0.0,59030.6,0.0,0.0,5,10,8.0,1,0.0 -8866,13573,947.5607076215881,62.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22330.0,0.0,0.0,42184.75,0.0,15630.0,1,7,5.0,3,1.0 -8867,13574,1965.9977637471832,47.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47246.25,0.0,52920.0,3,9,7.0,3,2.0 -8868,13575,3249.3640742351104,49.0,111,0.0,85,3,0.0,5.0,3.0,0.0,17040.0,0.0,0.0,0.0,0.0,23220.0,0.0,0.0,3,10,8.0,2,4.0 -8869,13578,3598.1492972666188,54.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41682.15,0.0,43500.0,3,8,7.0,3,2.0 -8870,13580,5430.654491591048,70.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13950.0,0.0,0.0,13345.0,0.0,0.0,1,0,2.0,1,0.0 -8871,13581,1971.2877803164174,63.0,400,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,40470.0,0.0,0.0,39375.3,0.0,0.0,1,0,0.0,4,0.0 -8872,13582,2071.7991157642523,53.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,447.0,0.0,72230.0,0.0,75420.0,1,10,8.0,4,2.0 -8873,13583,1018.6577008021993,51.0,212,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29592.95,0.0,31180.0,3,3,0.0,3,2.0 -8874,13585,3333.3681849321124,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17620.0,0.0,0.0,26089.55,0.0,0.0,1,10,8.0,1,0.0 -8875,13587,1861.80469858426,31.0,112,5960.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,36794.4,0.0,23460.0,2,8,0.0,4,2.0 -8876,13588,2607.977655916321,38.0,221,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,9.0,0.0,48317.35,0.0,31480.0,2,1,3.0,4,2.0 -8877,13590,2178.7801447115603,36.0,112,33940.0,22,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,95542.25,0.0,54570.0,2,10,2.0,4,2.0 -8878,13591,3412.58788243566,54.0,111,24890.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60663.55,0.0,44600.0,5,5,4.0,3,2.0 -8879,13592,2071.544392338251,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40320.0,0.0,0.0,38228.0,0.0,0.0,1,7,0.0,3,0.0 -8880,13594,2088.9063349645876,58.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14490.0,0.0,0.0,38640.95,0.0,25080.0,1,7,0.0,3,1.0 -8881,13595,3249.6066928562777,30.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,62598.35,0.0,66610.0,3,10,8.0,4,2.0 -8882,13598,1980.7968383159625,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54020.0,426.0,0.0,49200.65,0.0,0.0,1,9,7.0,3,0.0 -8883,13599,2600.840026763505,32.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12618.0,0.0,12570.0,3,9,7.0,1,1.0 -8884,13600,2268.121238873093,60.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39310.0,0.0,0.0,51693.6,0.0,16290.0,1,9,0.0,3,0.0 -8885,13601,2485.025373009403,54.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21900.0,18.0,0.0,19534.4,0.0,0.0,2,6,5.0,1,0.0 -8886,13602,3107.188679901919,55.0,112,14930.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14749.6,0.0,0.0,2,7,0.0,1,0.0 -8887,13603,3601.404084052841,53.0,111,0.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20843.65,0.0,21960.0,3,9,7.0,4,2.0 -8888,13604,2550.5236890653755,59.0,400,1010.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15170.0,0.0,0.0,15811.75,0.0,0.0,3,0,1.0,1,0.0 -8889,13605,3476.59760062797,59.0,111,7070.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25910.0,0.0,0.0,41368.3,0.0,9500.0,3,8,7.0,3,0.0 -8890,13606,3571.7857816304863,55.0,111,0.0,77,1.0,2.0,2.0,1.5,0.0,0.0,0.0,41130.0,344.0,0.0,47364.75,0.0,15260.0,1,8,7.0,3,1.0 -8891,13608,2628.065514678732,55.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17930.0,81.0,0.0,37604.0,0.0,22920.0,1,9,7.0,3,1.0 -8892,13610,2076.0281664853087,41.0,112,1230.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,938.15,0.0,0.0,3,9,1.0,1,1.0 -8893,13612,7691.75399301741,42.0,112,0.0,22,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,93450.3,0.0,87330.0,2,9,2.0,4,1.0 -8894,13613,3627.503857645704,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2056.0,0.0,0.0,3,9,7.0,1,0.0 -8895,13614,3325.960625130243,46.0,111,5230.0,55,1.0,1.0,3.0,1.8,0.0,2630.0,0.0,0.0,0.0,0.0,14272.0,710.0,990.0,3,8,7.0,4,1.0 -8896,13615,3511.8307746466185,55.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8290.0,469.0,0.0,46358.95,0.0,42090.0,2,10,8.0,3,1.0 -8897,13616,2953.420355267917,63.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30390.0,0.0,0.0,27698.35,0.0,0.0,2,1,2.0,3,0.0 -8898,13617,2603.5473580469697,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12730.0,0.0,0.0,14405.3,0.0,0.0,3,7,5.0,1,0.0 -8899,13618,3163.1192738393165,25.0,112,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14886.65,0.0,15070.0,5,8,1.0,1,1.0 -8900,13619,3375.036513694094,44.0,111,0.0,33,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,1175.0,0.0,41417.0,0.0,31800.0,5,10,8.0,4,1.0 -8901,13621,3102.046975081843,45.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,24571.4,0.0,23190.0,2,10,8.0,4,2.0 -8902,13623,3467.2311006678024,78.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40210.0,0.0,0.0,37952.2,0.0,0.0,1,8,6.0,3,0.0 -8903,13624,1889.3361166877037,47.0,112,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,62.0,0.0,60083.3,0.0,1680.0,1,8,0.0,1,1.0 -8904,13625,1593.9353065341347,55.0,111,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32633.5,0.0,31040.0,1,7,6.0,4,2.0 -8905,13626,1256.9563394399574,74.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15740.0,0.0,0.0,15786.1,0.0,0.0,1,8,1.0,1,0.0 -8906,13627,2086.0322366006653,49.0,300,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31454.75,0.0,31930.0,2,0,0.0,4,2.0 -8907,13629,2883.1690131701075,84.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23520.0,237.0,0.0,22641.7,0.0,0.0,5,9,7.0,1,0.0 -8908,13630,1990.2975059052935,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16740.0,0.0,0.0,16564.3,0.0,0.0,3,7,6.0,1,0.0 -8909,13631,1418.072403844022,48.0,111,10420.0,52,3,2.0,5.0,3.0,0.0,300.0,0.0,5810.0,14.0,0.0,67433.65,3870.0,45950.0,5,8,7.0,2,4.0 -8910,13632,1546.0340303921555,53.0,400,13640.0,63,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34170.55,0.0,21180.0,3,0,0.0,4,3.0 -8911,13633,3758.641340468502,26.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19313.15,0.0,20750.0,3,10,8.0,1,1.0 -8912,13634,2834.2262084181607,43.0,111,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46255.1,0.0,43990.0,1,6,4.0,4,2.0 -8913,13635,3192.4657029935474,63.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,12030.0,0.0,0.0,64661.8,0.0,63520.0,2,10,8.0,3,2.0 -8914,13637,1918.1571466778178,62.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28920.0,0.0,0.0,27706.95,0.0,0.0,1,5,4.0,1,0.0 -8915,13638,2196.370784083494,34.0,120,6730.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24102.55,0.0,19770.0,1,0,1.0,4,2.0 -8916,13639,992.7182436292314,56.0,111,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,53660.0,0.0,0.0,92060.45,0.0,44560.0,1,9,7.0,2,2.0 -8917,13642,3082.748617126272,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10580.0,0.0,0.0,9930.0,0.0,0.0,1,8,7.0,1,0.0 -8918,13645,2842.098983276836,53.0,111,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35787.85,0.0,36850.0,2,6,5.0,4,2.0 -8919,13646,2182.694778637704,28.0,211,880.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23423.75,0.0,14420.0,3,4,3.0,4,2.0 -8920,13649,3099.846608224245,64.0,221,6210.0,78,2.0,0.0,4.0,2.5,0.0,270.0,2960.0,8920.0,0.0,0.0,28960.0,2440.0,5700.0,3,1,3.0,4,2.0 -8921,13650,1959.4826764640427,78.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20070.0,0.0,0.0,20070.0,0.0,0.0,3,7,5.0,3,0.0 -8922,13651,2164.3620301115234,56.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28570.65,0.0,26710.0,3,8,7.0,1,1.0 -8923,13653,1507.7733307205203,40.0,111,3050.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,22079.05,0.0,9350.0,2,6,5.0,4,1.0 -8924,13654,3199.521124677405,47.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,56.0,0.0,89992.9,0.0,91980.0,1,9,3.0,4,2.0 -8925,13656,1912.9989736500013,84.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13490.0,0.0,0.0,13327.5,0.0,0.0,1,8,0.0,1,0.0 -8926,13657,1977.833658859956,33.0,111,0.0,65,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,34049.85,0.0,17650.0,3,5,4.0,4,1.0 -8927,13658,3651.5299832381756,40.0,111,10880.0,53,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,17644.0,0.0,0.0,3,8,7.0,4,1.0 -8928,13659,2224.4798109565627,33.0,112,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40843.35,0.0,38890.0,2,7,1.0,4,2.0 -8929,13660,1932.586090094847,69.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18360.0,0.0,0.0,18312.5,0.0,0.0,1,7,0.0,3,0.0 -8930,13662,3045.60274653985,45.0,111,6920.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7017.0,0.0,0.0,3,9,7.0,1,1.0 -8931,13663,1865.4442083026302,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13350.0,938.0,0.0,19476.5,0.0,0.0,5,8,7.0,1,0.0 -8932,13665,2596.00713670857,53.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28079.9,0.0,31820.0,1,8,0.0,1,1.0 -8933,13667,2542.130555760747,59.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28506.85,0.0,18470.0,1,6,0.0,3,2.0 -8934,13668,1928.854130404608,57.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22800.85,0.0,24110.0,2,7,4.0,1,1.0 -8935,13670,2433.9431851482036,79.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10040.0,0.0,0.0,10040.0,0.0,0.0,5,6,0.0,1,0.0 -8936,13671,3059.3057675340974,32.0,111,480.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45781.7,0.0,41500.0,3,8,6.0,4,2.0 -8937,13672,6065.8707076853,72.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16700.0,0.0,0.0,18027.0,0.0,0.0,3,10,8.0,1,0.0 -8938,13674,2593.745385046788,39.0,112,0.0,34,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43361.9,0.0,33550.0,2,10,4.0,2,1.0 -8939,13676,1166.0094730009791,51.0,111,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,7713.85,0.0,5220.0,1,8,7.0,2,1.0 -8940,13677,1858.4690907628312,26.0,300,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33903.7,0.0,34190.0,2,0,0.0,3,2.0 -8941,13678,858.8116295013313,45.0,111,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,80620.05,0.0,82590.0,1,10,8.0,4,2.0 -8942,13683,2070.8884799677403,48.0,221,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16349.55,0.0,17100.0,1,1,3.0,2,1.0 -8943,13685,8422.017197274092,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21060.0,1.0,0.0,23627.75,0.0,0.0,1,10,8.0,1,0.0 -8944,13686,3076.27977741671,78.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27460.0,0.0,0.0,31494.15,0.0,0.0,1,10,8.0,1,0.0 -8945,13687,2508.7946168306235,67.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10460.0,0.0,0.0,12836.0,0.0,0.0,3,0,0.0,1,0.0 -8946,13689,2288.3448006220246,46.0,111,0.0,56,1.0,0.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,34017.0,0.0,17510.0,3,9,7.0,4,1.0 -8947,13691,2384.5325408513113,45.0,112,2430.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21823.7,0.0,10110.0,2,10,0.0,2,1.0 -8948,13692,3233.771205500069,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31110.0,0.0,0.0,26421.75,0.0,0.0,1,9,7.0,1,0.0 -8949,13695,3437.6026964393163,25.0,111,7920.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16567.0,0.0,7120.0,3,8,7.0,1,1.0 -8950,13696,1721.471141446312,60.0,212,0.0,72,2.0,2.0,5.0,3.0,6240.0,0.0,0.0,21530.0,103.0,0.0,43500.5,0.0,14810.0,2,2,0.0,4,2.0 -8951,13697,2877.8578914956593,33.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,41.0,0.0,58987.6,0.0,62520.0,2,10,8.0,4,2.0 -8952,13701,3343.300346700141,24.0,111,480.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20510.1,0.0,19680.0,3,8,7.0,3,2.0 -8953,13703,1292.567533547429,55.0,112,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24921.55,0.0,27400.0,2,10,0.0,3,2.0 -8954,13705,1400.1282752529994,51.0,112,0.0,13,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20990.7,0.0,6180.0,2,6,0.0,4,2.0 -8955,13706,3133.784186696783,75.0,111,0.0,86,0.0,0.0,1.0,1.0,2480.0,0.0,0.0,5670.0,0.0,0.0,11829.0,0.0,0.0,3,6,4.0,1,0.0 -8956,13708,2065.8108262107885,58.0,112,2770.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,290.0,0.0,0.0,16933.65,0.0,15020.0,1,8,0.0,1,1.0 -8957,13710,2916.3965291675554,62.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23730.0,0.0,0.0,23068.25,0.0,0.0,1,5,0.0,3,0.0 -8958,13711,3045.526099329274,74.0,120,4240.0,78,2.0,0.0,3.0,2.0,0.0,0.0,0.0,25380.0,0.0,0.0,28933.35,0.0,1190.0,1,0,0.0,4,2.0 -8959,13712,3636.768793233514,40.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16375.05,0.0,17360.0,3,9,7.0,1,1.0 -8960,13714,2075.5091114152365,51.0,112,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41092.75,0.0,42260.0,2,5,0.0,4,2.0 -8961,13715,1922.2935278320956,47.0,112,7990.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37053.8,0.0,25750.0,2,6,0.0,4,2.0 -8962,13716,2514.6158191202644,72.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26360.0,0.0,0.0,25936.85,0.0,0.0,1,1,2.0,3,0.0 -8963,13717,2302.112105473469,54.0,111,0.0,23,2.0,2.0,4.0,2.5,0.0,0.0,0.0,12160.0,0.0,0.0,70941.4,0.0,54870.0,1,10,8.0,4,2.0 -8964,13719,3873.500656726697,50.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49608.6,0.0,54090.0,1,7,0.0,3,2.0 -8965,13721,4974.652457804696,44.0,120,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,281.0,0.0,58941.35,0.0,60050.0,2,0,0.0,3,2.0 -8966,13722,2725.237762543673,37.0,111,0.0,85,0.0,0.0,5.0,2.4,10900.0,0.0,0.0,0.0,0.0,0.0,26076.0,0.0,2980.0,3,8,7.0,4,0.0 -8967,13723,2699.3370816542583,53.0,221,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38352.55,0.0,29100.0,1,1,2.0,3,2.0 -8968,13724,6349.622005657197,31.0,120,0.0,63,2.0,2.0,2.0,1.5,11890.0,0.0,0.0,0.0,0.0,0.0,27954.0,0.0,15700.0,3,0,2.0,3,2.0 -8969,13725,2966.801757430386,80.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,770.0,0.0,15860.0,0.0,0.0,27513.3,4470.0,7350.0,1,8,7.0,2,1.0 -8970,13726,1430.9424662428162,62.0,300,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,10400.0,1.0,0.0,30683.6,0.0,20520.0,5,0,0.0,3,2.0 -8971,13727,3255.0875546662423,27.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,20.0,0.0,53290.9,0.0,42810.0,5,8,7.0,4,2.0 -8972,13729,2238.716840755361,40.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15894.1,0.0,17100.0,2,9,0.0,1,1.0 -8973,13730,4261.316501782239,52.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57350.1,0.0,60670.0,1,4,4.0,3,2.0 -8974,13731,2462.4124638309618,49.0,112,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,117.0,0.0,110418.9,0.0,41710.0,2,9,0.0,4,2.0 -8975,13733,3344.447759577778,75.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34390.0,0.0,0.0,33087.55,0.0,0.0,1,9,3.0,3,0.0 -8976,13734,3327.0785138860897,48.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19439.35,0.0,20500.0,3,8,7.0,1,1.0 -8977,13735,6138.62179239554,67.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46640.0,0.0,0.0,49317.8,0.0,8470.0,1,9,1.0,3,0.0 -8978,13736,2622.583119045899,43.0,111,0.0,46,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,44536.9,0.0,38570.0,1,6,5.0,4,2.0 -8979,13737,2921.314735284585,74.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16970.0,0.0,0.0,16873.8,0.0,0.0,5,0,0.0,1,0.0 -8980,13738,3575.1678300500553,37.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13737.05,0.0,13860.0,2,8,7.0,1,1.0 -8981,13739,2328.614573766752,55.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,38.0,0.0,38141.45,0.0,37470.0,1,6,0.0,1,1.0 -8982,13740,1549.424454957772,48.0,111,5520.0,54,2.0,1.0,2.0,1.5,0.0,520.0,0.0,0.0,0.0,0.0,10842.0,0.0,0.0,3,5,4.0,2,2.0 -8983,13741,3470.5044839349,43.0,111,11720.0,65,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,30586.2,0.0,17460.0,1,9,7.0,4,2.0 -8984,13742,5351.384220711722,30.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48004.1,0.0,45920.0,2,8,0.0,4,2.0 -8985,13743,2993.8034699983564,31.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29187.9,0.0,30670.0,3,8,6.0,3,2.0 -8986,13745,3503.1109922717346,22.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18061.65,0.0,18460.0,3,8,6.0,3,2.0 -8987,13746,3756.118138305562,84.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24790.0,0.0,0.0,23163.85,0.0,0.0,3,9,7.0,1,0.0 -8988,13748,3447.156281923046,26.0,111,0.0,81,1.0,0.0,1.0,1.0,0.0,1600.0,0.0,0.0,0.0,0.0,9762.4,0.0,0.0,3,9,7.0,1,1.0 -8989,13749,2090.229412979016,39.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28732.65,0.0,26990.0,2,9,1.0,4,2.0 -8990,13751,2315.3527690036417,33.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42981.35,0.0,46090.0,2,8,0.0,3,2.0 -8991,13752,6189.072627491745,20.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10245.0,0.0,2520.0,3,6,5.0,1,1.0 -8992,13753,1626.3329009728604,33.0,300,3950.0,85,1.0,0.0,4.0,2.1,0.0,1500.0,0.0,0.0,0.0,0.0,16756.0,0.0,2480.0,3,0,0.0,4,1.0 -8993,13754,2402.5829062118764,55.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14955.4,0.0,15140.0,3,6,4.0,1,1.0 -8994,13755,1840.7264751634932,52.0,111,5390.0,56,2.0,2.0,3.0,2.0,19010.0,4900.0,0.0,0.0,0.0,0.0,45574.0,170.0,14520.0,3,8,6.0,2,2.0 -8995,13756,6312.831996740342,58.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42706.45,0.0,46380.0,2,8,6.0,3,2.0 -8996,13757,3548.5803839606538,39.0,111,0.0,68,1.0,1.0,4.0,2.1,0.0,320.0,0.0,0.0,0.0,0.0,19070.1,1980.0,11660.0,3,9,7.0,4,1.0 -8997,13760,1834.9122746581822,70.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7390.0,0.0,0.0,7261.95,0.0,0.0,1,7,0.0,1,0.0 -8998,13761,1420.2882595300066,51.0,300,0.0,21,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56655.1,0.0,53350.0,1,0,0.0,4,4.0 -8999,13763,2955.918525327085,51.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26151.8,0.0,26720.0,3,10,8.0,2,1.0 -9000,13766,2206.0847363394655,61.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15670.0,0.0,0.0,15121.8,0.0,0.0,1,7,0.0,1,0.0 -9001,13767,4180.038507131527,75.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11630.0,0.0,0.0,11781.9,0.0,0.0,1,7,0.0,1,0.0 -9002,13768,2115.487306481419,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29270.0,240.0,0.0,32067.3,0.0,0.0,1,8,0.0,1,0.0 -9003,13769,3142.440197922825,32.0,111,0.0,48,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21027.35,0.0,22400.0,3,4,4.0,2,1.0 -9004,13770,1787.641000232183,62.0,400,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14580.0,133.0,0.0,21353.1,0.0,4840.0,1,0,0.0,3,1.0 -9005,13772,3236.227186772326,21.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4283.0,0.0,1660.0,3,9,7.0,1,1.0 -9006,13774,1256.3580824199375,51.0,400,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41057.6,0.0,42350.0,5,0,0.0,4,2.0 -9007,13775,900.4545437542668,52.0,112,0.0,37,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,79359.7,0.0,76850.0,2,8,0.0,4,3.0 -9008,13776,4502.045032732161,52.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15247.0,0.0,16050.0,3,5,0.0,1,1.0 -9009,13777,4480.909685166493,44.0,221,10890.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37517.75,0.0,28180.0,2,1,2.0,3,2.0 -9010,13778,3219.49973287894,45.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13897.55,510.0,13350.0,3,8,7.0,1,1.0 -9011,13784,3509.459684129973,45.0,111,1440.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46314.3,0.0,44510.0,3,10,8.0,4,2.0 -9012,13788,2098.0035134653017,36.0,221,3150.0,21,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32698.5,0.0,5540.0,3,1,3.0,4,2.0 -9013,13791,2848.0683529668163,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37030.0,51.0,0.0,37197.4,0.0,0.0,1,9,7.0,3,0.0 -9014,13792,3160.0866360965415,28.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18515.0,0.0,18740.0,3,9,7.0,1,1.0 -9015,13793,3626.8248766348283,24.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,680.0,0.0,0.0,0.0,0.0,15391.9,3280.0,6280.0,3,8,7.0,2,1.0 -9016,13795,2045.7488859339935,73.0,111,0.0,78,1.0,0.0,3.0,2.0,0.0,0.0,0.0,18900.0,0.0,0.0,21204.0,0.0,0.0,3,6,5.0,4,1.0 -9017,13796,3655.2927988249053,39.0,111,0.0,85,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,11971.0,0.0,0.0,3,8,7.0,1,0.0 -9018,13798,2910.952051635372,48.0,111,5280.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16957.0,0.0,13670.0,1,8,6.0,1,1.0 -9019,13799,1954.2145842381371,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54510.0,0.0,0.0,49310.3,0.0,0.0,1,10,8.0,3,0.0 -9020,13800,2858.6233587953134,46.0,300,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33352.35,0.0,32280.0,1,0,0.0,1,1.0 -9021,13802,2161.2916455771874,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34350.0,0.0,0.0,37090.3,0.0,0.0,1,9,7.0,3,0.0 -9022,13803,1027.5407348422998,44.0,111,6960.0,62,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,42296.1,0.0,34170.0,2,9,7.0,4,3.0 -9023,13804,6080.018362444906,65.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10670.0,0.0,0.0,12902.0,0.0,0.0,3,0,2.0,3,0.0 -9024,13806,2146.8985066105756,45.0,221,0.0,22,2.0,1.0,6.0,3.1,5810.0,0.0,0.0,220.0,0.0,0.0,27604.0,0.0,6160.0,2,1,2.0,4,2.0 -9025,13808,1713.715842547353,64.0,400,0.0,31,1.0,0.0,1.0,1.0,0.0,0.0,0.0,77210.0,0.0,0.0,80125.45,0.0,0.0,1,0,0.0,1,1.0 -9026,13809,2682.6676930642266,41.0,211,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17525.05,0.0,17920.0,3,3,4.0,1,1.0 -9027,13810,782.4713799131714,43.0,112,0.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,18440.0,0.0,0.0,49110.7,0.0,30410.0,2,8,2.0,5,2.0 -9028,13811,3162.302426320698,62.0,111,28680.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31810.0,0.0,0.0,65139.9,0.0,0.0,1,10,8.0,3,0.0 -9029,13812,2007.9360934968204,76.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,3810.0,14570.0,0.0,0.0,19628.0,0.0,0.0,3,0,0.0,3,0.0 -9030,13813,3486.643224478929,35.0,111,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,105538.0,0.0,116720.0,2,10,8.0,4,2.0 -9031,13814,2824.667945598459,42.0,111,0.0,22,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,119047.85,0.0,1990.0,2,9,7.0,4,1.0 -9032,13815,3117.5611820564186,60.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16587.15,0.0,17970.0,3,10,8.0,1,1.0 -9033,13816,2514.274462854798,44.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,2.0,0.0,55780.3,0.0,56460.0,2,8,7.0,4,2.0 -9034,13817,3073.7343450265835,37.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53552.3,0.0,58700.0,3,10,8.0,3,2.0 -9035,13818,2019.1085291834868,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15190.0,0.0,0.0,16630.85,0.0,0.0,1,8,7.0,1,0.0 -9036,13819,4183.941153110764,64.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33770.0,0.0,0.0,33225.7,0.0,0.0,1,1,1.0,3,0.0 -9037,13820,4023.725479898148,20.0,120,0.0,67,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15610.85,0.0,9250.0,1,0,2.0,3,1.0 -9038,13821,1094.8925923779818,52.0,111,0.0,65,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47103.6,0.0,49600.0,1,9,7.0,4,3.0 -9039,13822,4989.847178530959,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35290.0,21.0,0.0,34219.95,0.0,0.0,3,6,5.0,1,0.0 -9040,13823,837.7441102381667,59.0,111,0.0,75,0.0,0.0,3.0,2.0,8750.0,0.0,0.0,15540.0,0.0,0.0,24185.55,0.0,0.0,1,7,5.0,4,0.0 -9041,13824,1358.7418382086655,42.0,300,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,54.0,0.0,96657.15,0.0,0.0,2,0,0.0,4,2.0 -9042,13825,1793.085247236381,41.0,111,0.0,37,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,79432.5,0.0,67960.0,1,10,8.0,4,2.0 -9043,13826,3481.216716698088,58.0,111,5600.0,78,0.0,0.0,2.0,1.5,0.0,5080.0,0.0,0.0,0.0,0.0,10488.9,0.0,0.0,2,8,7.0,3,0.0 -9044,13827,3910.7285959825426,67.0,112,0.0,78,1.0,0.0,2.0,1.5,7680.0,0.0,0.0,17310.0,0.0,0.0,26960.95,0.0,2720.0,1,10,2.0,2,1.0 -9045,13829,5923.402344723623,31.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38197.55,580.0,39480.0,3,6,5.0,3,2.0 -9046,13830,3354.1302379513363,59.0,111,0.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34191.1,0.0,35860.0,3,10,8.0,2,2.0 -9047,13831,6448.090535865123,39.0,111,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32510.45,0.0,32700.0,3,7,5.0,3,2.0 -9048,13833,1880.0407803101632,20.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,4930.0,0.0,0.0,0.0,0.0,24259.0,250.0,12290.0,3,9,7.0,4,2.0 -9049,13834,2298.436297084113,60.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7180.0,0.0,0.0,11684.7,0.0,0.0,1,9,7.0,1,0.0 -9050,13835,2842.207537391857,50.0,111,0.0,22,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,62.0,0.0,44850.05,0.0,37150.0,3,7,5.0,4,2.0 -9051,13836,3396.5002668907327,29.0,111,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21728.85,0.0,21390.0,3,9,7.0,2,1.0 -9052,13838,967.4506538478638,40.0,111,0.0,48,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,2.0,0.0,43649.55,0.0,36470.0,2,8,7.0,4,2.0 -9053,13840,2318.291563837543,28.0,112,10580.0,52,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33436.05,0.0,16480.0,3,7,0.0,4,2.0 -9054,13842,3553.4883480675294,44.0,111,0.0,31,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,576.0,0.0,79979.75,0.0,73030.0,3,10,8.0,2,1.0 -9055,13844,5246.829855978846,59.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,17360.0,0.0,0.0,21250.45,0.0,3350.0,1,9,2.0,1,1.0 -9056,13845,3083.741603183243,32.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43356.7,0.0,41700.0,2,10,8.0,4,2.0 -9057,13846,3631.0112475133324,60.0,111,0.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,80195.5,0.0,89530.0,1,10,8.0,4,3.0 -9058,13849,2412.0152125429054,60.0,111,5520.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11910.0,0.0,0.0,17972.0,0.0,1420.0,1,8,7.0,3,1.0 -9059,13850,1982.4032871582426,31.0,120,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43906.25,0.0,34090.0,2,0,0.0,4,2.0 -9060,13852,4975.517958421847,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,86610.0,0.0,0.0,73027.1,0.0,0.0,1,8,6.0,1,0.0 -9061,13853,2153.8083933634994,53.0,112,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45851.65,0.0,49110.0,2,10,0.0,3,2.0 -9062,13855,3082.5361147697217,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20480.0,0.0,0.0,19832.35,0.0,0.0,3,6,5.0,1,0.0 -9063,13856,2768.701979701799,26.0,111,0.0,35,1.0,0.0,1.0,1.0,0.0,840.0,0.0,0.0,0.0,0.0,10307.8,2900.0,4380.0,3,8,6.0,1,1.0 -9064,13857,1294.9381898257664,53.0,111,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,93909.5,0.0,97130.0,2,8,6.0,4,3.0 -9065,13858,4456.847358971077,44.0,112,660.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46241.9,0.0,45950.0,1,5,0.0,4,2.0 -9066,13860,1568.0519396879922,36.0,111,0.0,52,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,35059.85,0.0,21820.0,3,8,6.0,2,1.0 -9067,13862,3435.9063335477986,82.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25250.0,0.0,0.0,24530.6,0.0,0.0,1,9,7.0,3,0.0 -9068,13865,3485.426682194594,29.0,111,5100.0,65,1.0,1.0,1.0,1.0,500.0,0.0,0.0,0.0,0.0,0.0,19229.0,0.0,13890.0,3,10,8.0,1,1.0 -9069,13866,2963.2219464671875,47.0,111,8050.0,68,2.0,0.0,2.0,1.5,0.0,170.0,0.0,0.0,0.0,0.0,12869.0,0.0,2310.0,3,9,7.0,3,2.0 -9070,13867,3075.0008969637797,23.0,111,0.0,65,2.0,1.0,3.0,1.8,0.0,6110.0,0.0,0.0,0.0,0.0,19517.0,0.0,11180.0,3,9,7.0,4,2.0 -9071,13869,2634.047731432488,54.0,400,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50226.85,0.0,0.0,1,0,0.0,3,2.0 -9072,13870,2961.389904694652,53.0,221,1290.0,21,3,2.0,6.0,3.3,0.0,2000.0,0.0,0.0,0.0,0.0,32093.55,4600.0,1320.0,3,1,2.0,4,3.0 -9073,13871,3741.753950132186,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23340.0,0.0,0.0,23119.6,0.0,0.0,5,10,8.0,1,0.0 -9074,13872,1920.242963294729,52.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,780.0,0.0,0.0,66710.8,0.0,23250.0,2,7,0.0,3,2.0 -9075,13874,1446.251922762157,53.0,120,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9940.0,0.0,0.0,32373.65,0.0,23840.0,1,0,3.0,3,1.0 -9076,13875,3049.6504559493696,60.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52328.65,0.0,0.0,1,7,1.0,3,2.0 -9077,13876,2728.1332070750195,39.0,111,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50372.45,0.0,53620.0,2,8,6.0,4,2.0 -9078,13878,1638.878165475892,34.0,112,0.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28019.7,0.0,27330.0,3,7,0.0,2,1.0 -9079,13879,2972.406639600135,50.0,120,0.0,85,0.0,0.0,3.0,2.0,0.0,0.0,0.0,10040.0,0.0,0.0,18350.9,0.0,9690.0,1,0,0.0,4,0.0 -9080,13881,2188.0027729796316,54.0,111,0.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38323.8,0.0,35250.0,3,9,7.0,2,2.0 -9081,13882,2532.0749867804398,58.0,221,4850.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,4420.0,50.0,0.0,33407.05,0.0,22710.0,2,1,1.0,3,1.0 -9082,13883,4082.704663120031,55.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39560.45,0.0,42300.0,3,10,8.0,2,1.0 -9083,13885,1378.155205088222,58.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55489.1,0.0,63380.0,1,6,0.0,3,2.0 -9084,13888,2767.166190626379,42.0,300,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42226.45,0.0,42740.0,1,0,0.0,4,2.0 -9085,13891,2076.6518151487658,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41140.0,0.0,0.0,36997.1,0.0,0.0,3,10,8.0,3,0.0 -9086,13892,2925.8021731072326,22.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20717.9,0.0,22240.0,3,9,0.0,1,1.0 -9087,13893,1645.1175731970272,50.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,9.0,0.0,16063.55,0.0,15410.0,1,8,6.0,1,1.0 -9088,13894,1753.786700874154,51.0,111,4850.0,48,2.0,1.0,3.0,2.0,0.0,0.0,0.0,21310.0,0.0,0.0,54379.45,0.0,30270.0,3,10,8.0,4,2.0 -9089,13895,3048.121062016641,61.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31120.0,0.0,0.0,31304.95,0.0,80.0,1,4,4.0,3,0.0 -9090,13896,1541.7388422356123,52.0,111,0.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,122.0,0.0,118944.8,0.0,140060.0,2,8,7.0,4,2.0 -9091,13897,2318.2633309678645,38.0,111,0.0,21,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,42417.15,0.0,35050.0,2,9,7.0,4,1.0 -9092,13898,2753.3399966015395,89.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16160.0,0.0,0.0,15886.65,0.0,0.0,1,0,0.0,1,0.0 -9093,13900,2945.8919225938253,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23170.0,0.0,0.0,22173.0,0.0,0.0,1,6,5.0,2,0.0 -9094,13901,3083.059907826647,40.0,111,0.0,85,0.0,0.0,1.0,1.0,10900.0,0.0,0.0,0.0,0.0,0.0,13908.0,0.0,0.0,3,6,4.0,1,0.0 -9095,13902,2751.9261233972675,81.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30290.0,0.0,0.0,29089.05,0.0,0.0,3,4,3.0,1,0.0 -9096,13903,2020.3039034720582,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31770.0,0.0,0.0,29655.85,0.0,0.0,1,9,7.0,3,0.0 -9097,13904,3519.0392447673266,92.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19890.0,0.0,0.0,19890.0,0.0,0.0,1,9,7.0,3,0.0 -9098,13906,2131.4034288039966,51.0,112,0.0,21,1.0,1.0,3.0,2.0,0.0,0.0,0.0,6190.0,42.0,0.0,58163.75,0.0,53720.0,1,7,0.0,4,1.0 -9099,13907,2635.0713570578387,34.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20093.5,0.0,21350.0,3,8,7.0,1,1.0 -9100,13908,2674.322531034732,52.0,111,0.0,23,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,25.0,0.0,58767.5,0.0,61550.0,1,9,7.0,1,1.0 -9101,13909,2760.985310707613,80.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16460.0,0.0,0.0,16554.0,0.0,0.0,1,0,0.0,3,0.0 -9102,13910,2512.0254234611425,40.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,8.0,0.0,74942.0,0.0,87380.0,2,10,8.0,3,2.0 -9103,13912,2919.368091372304,28.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,5040.0,0.0,0.0,0.0,0.0,14349.0,0.0,0.0,3,9,7.0,2,0.0 -9104,13913,2374.17540875409,92.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26000.0,170.0,0.0,28166.35,0.0,0.0,1,0,0.0,5,0.0 -9105,13914,4215.123067356567,58.0,111,22340.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,179.0,0.0,64453.0,0.0,49630.0,3,10,8.0,3,2.0 -9106,13916,2994.8016955338862,59.0,111,0.0,35,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,4930.5,0.0,0.0,1,10,8.0,1,1.0 -9107,13917,1453.2420533688376,50.0,212,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1319.0,0.0,17414.0,0.0,0.0,1,2,0.0,1,1.0 -9108,13919,2715.628398861246,58.0,111,140.0,54,3,2.0,3.0,2.0,0.0,0.0,0.0,3320.0,0.0,0.0,49509.45,0.0,49980.0,2,10,8.0,2,3.0 -9109,13921,2967.2268614847917,54.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36938.4,0.0,36500.0,5,9,7.0,3,1.0 -9110,13923,1117.3455145774133,70.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20270.0,0.0,0.0,19600.5,0.0,0.0,1,0,0.0,3,0.0 -9111,13924,1560.2057159847075,49.0,300,8290.0,43,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,70301.45,0.0,37190.0,1,0,0.0,4,4.0 -9112,13925,3775.8250429342343,75.0,221,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12240.0,0.0,0.0,12555.0,0.0,0.0,3,1,2.0,1,0.0 -9113,13926,2451.167004823923,80.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22800.0,0.0,0.0,24378.1,0.0,0.0,5,0,0.0,3,0.0 -9114,13927,1546.0274499024983,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,78510.0,35.0,0.0,5866.8,0.0,0.0,1,9,7.0,3,0.0 -9115,13928,1801.7700619760346,52.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10840.0,0.0,0.0,24660.25,0.0,14670.0,4,6,4.0,3,1.0 -9116,13929,6026.021690763543,49.0,111,7560.0,52,2.0,1.0,3.0,2.0,0.0,750.0,0.0,0.0,0.0,0.0,28238.75,300.0,18750.0,3,10,8.0,2,2.0 -9117,13930,2655.1649703595663,55.0,111,18260.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36418.05,0.0,20350.0,1,6,4.0,4,2.0 -9118,13931,8599.468069866123,24.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18569.95,0.0,19350.0,3,9,1.0,1,1.0 -9119,13934,1816.2787418246423,58.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30363.75,0.0,31650.0,2,10,0.0,3,2.0 -9120,13935,1037.2579072197714,49.0,111,24550.0,37,3,2.0,6.0,3.3,0.0,0.0,0.0,22630.0,0.0,9046.0,128823.8,0.0,96090.0,2,10,8.0,4,3.0 -9121,13937,3977.1486498140416,59.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,1080.0,7670.0,1528.0,0.0,12773.05,0.0,0.0,1,9,0.0,3,0.0 -9122,13938,2770.673951580971,57.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29690.0,0.0,0.0,28931.1,0.0,550.0,5,0,0.0,3,0.0 -9123,13939,3377.118313940542,54.0,111,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,8160.0,0.0,0.0,40600.25,0.0,34120.0,3,9,7.0,4,3.0 -9124,13942,2606.736403161649,58.0,112,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,12910.0,70.0,0.0,61363.05,0.0,46130.0,1,10,2.0,4,2.0 -9125,13943,2200.0812179757745,53.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,6.0,0.0,68032.55,0.0,64860.0,1,10,8.0,4,2.0 -9126,13945,2059.833230870208,67.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27940.0,16.0,0.0,28324.4,0.0,0.0,1,9,7.0,3,0.0 -9127,13946,2346.39247598558,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21570.0,0.0,0.0,19937.4,0.0,0.0,3,10,8.0,1,0.0 -9128,13947,3373.509643406437,56.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,73.0,0.0,18815.65,0.0,13580.0,1,9,7.0,1,1.0 -9129,13948,1889.516359155815,58.0,112,7050.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25500.0,0.0,0.0,40307.7,0.0,12040.0,1,10,2.0,3,1.0 -9130,13954,1603.4492922825887,46.0,400,0.0,11,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,31344.0,0.0,0.0,1,0,0.0,4,2.0 -9131,13955,2030.871643455287,61.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26110.0,0.0,0.0,25433.85,0.0,0.0,1,1,3.0,3,0.0 -9132,13956,1090.7279439367296,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45480.0,0.0,0.0,41918.6,0.0,0.0,2,8,6.0,3,0.0 -9133,13957,1778.0987261287266,77.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9640.0,0.0,0.0,13321.0,0.0,0.0,1,0,0.0,1,0.0 -9134,13959,3328.4614049183,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11069.0,0.0,0.0,3,9,7.0,1,0.0 -9135,13960,2595.641020857525,60.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,410.0,40.0,8760.0,0.0,0.0,8663.05,0.0,0.0,1,6,5.0,1,0.0 -9136,13961,4449.522262050821,38.0,112,0.0,53,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,57122.3,0.0,50180.0,2,8,0.0,4,2.0 -9137,13962,2583.2533305481056,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21850.0,0.0,0.0,21899.15,0.0,0.0,3,7,5.0,1,0.0 -9138,13963,3438.242373741287,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26950.0,0.0,0.0,24556.55,0.0,0.0,1,9,7.0,3,0.0 -9139,13964,3683.403217085381,45.0,111,0.0,68,1.0,1.0,1.0,1.0,3300.0,0.0,0.0,0.0,0.0,0.0,14522.0,0.0,9570.0,3,10,8.0,1,1.0 -9140,13965,2738.7351039739865,26.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32446.05,0.0,30670.0,3,9,0.0,4,2.0 -9141,13967,4842.943496982569,41.0,111,0.0,48,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36512.75,0.0,35250.0,2,7,5.0,4,1.0 -9142,13968,3766.3732636270106,27.0,111,1950.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22052.35,0.0,18190.0,3,9,7.0,3,1.0 -9143,13969,2287.7441226850374,26.0,112,9800.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28998.0,0.0,15070.0,3,7,0.0,4,2.0 -9144,13971,2152.0669159765284,55.0,111,11050.0,52,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,54998.9,0.0,45860.0,3,7,5.0,4,4.0 -9145,13972,5995.367005293699,66.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10300.0,0.0,0.0,13233.45,0.0,0.0,3,1,2.0,3,0.0 -9146,13973,1979.4119454757672,44.0,300,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44602.95,0.0,43900.0,2,0,0.0,4,2.0 -9147,13974,3073.2403142411345,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9740.0,0.0,0.0,9740.0,0.0,0.0,3,8,7.0,1,0.0 -9148,13975,2259.2469388825107,55.0,112,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,98984.3,0.0,74930.0,1,8,0.0,4,2.0 -9149,13976,2747.057451511612,54.0,111,5010.0,38,2.0,2.0,2.0,1.5,0.0,620.0,0.0,0.0,0.0,0.0,55663.6,360.0,52370.0,3,10,8.0,2,2.0 -9150,13977,3082.8267581888276,26.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14854.75,0.0,15800.0,3,8,7.0,1,1.0 -9151,13979,2751.689407333052,57.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23720.0,0.0,0.0,24271.25,0.0,310.0,1,0,0.0,1,0.0 -9152,13980,3458.7865542823997,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14980.0,0.0,0.0,15019.0,0.0,0.0,3,8,7.0,1,0.0 -9153,13981,2429.5021206471492,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24410.0,0.0,0.0,22885.4,0.0,0.0,1,8,7.0,3,0.0 -9154,13982,6328.198352556367,24.0,111,0.0,68,1.0,1.0,2.0,1.5,7400.0,4260.0,0.0,0.0,0.0,0.0,17451.0,490.0,2940.0,3,7,5.0,2,1.0 -9155,13983,2011.1467993485755,40.0,120,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52798.6,0.0,54140.0,2,0,0.0,4,2.0 -9156,13985,5596.970099659257,55.0,111,12770.0,62,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51676.2,0.0,41710.0,1,10,8.0,4,3.0 -9157,13986,1684.2024700865265,57.0,111,1420.0,67,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48678.35,0.0,50360.0,3,6,4.0,4,3.0 -9158,13987,3099.4949085371386,45.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,191.0,0.0,18406.4,0.0,19300.0,1,8,7.0,1,1.0 -9159,13989,4438.839991418285,75.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14990.0,0.0,0.0,14722.2,0.0,0.0,1,9,2.0,1,0.0 -9160,13990,1500.1925721862347,47.0,120,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58900.0,0.0,61550.0,1,0,0.0,4,2.0 -9161,13991,3034.970318771899,50.0,300,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,527.0,0.0,85833.2,0.0,35080.0,1,0,0.0,3,2.0 -9162,13992,1780.6840330392386,52.0,120,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13722.35,0.0,14260.0,3,0,0.0,1,1.0 -9163,13993,4527.6647303993095,70.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24150.0,2257.0,0.0,6293.049999999999,0.0,0.0,1,10,8.0,1,0.0 -9164,13994,3151.0370159287995,20.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15786.5,0.0,15590.0,3,9,7.0,3,1.0 -9165,13997,1955.046390829877,48.0,111,0.0,63,1.0,1.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,27070.0,0.0,11280.0,3,10,8.0,4,1.0 -9166,14000,1510.9500982735701,85.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,26990.0,65.0,0.0,55471.95,0.0,20950.0,3,9,7.0,5,1.0 -9167,14001,3684.363723637891,39.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,114.0,0.0,70585.0,0.0,65080.0,3,10,8.0,4,2.0 -9168,14002,1735.9312217813685,34.0,111,1630.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50237.85,0.0,25570.0,2,9,7.0,4,2.0 -9169,14003,1003.4993070940642,56.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,58856.85,0.0,65610.0,1,8,7.0,4,2.0 -9170,14005,4266.18758816291,64.0,221,4690.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14710.0,0.0,0.0,18469.2,0.0,0.0,1,1,1.0,1,0.0 -9171,14011,3450.1916674718586,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12370.0,296.0,0.0,11631.35,0.0,0.0,1,8,6.0,1,0.0 -9172,14014,2942.66306660746,33.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,159257.85,0.0,181950.0,3,10,8.0,4,2.0 -9173,14017,2993.561117712226,32.0,111,2970.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40420.65,0.0,29140.0,2,8,7.0,4,2.0 -9174,14018,3039.419497168763,59.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,22580.0,0.0,0.0,50678.85,0.0,20910.0,3,10,8.0,4,1.0 -9175,14020,3212.8149534138806,75.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19540.0,0.0,0.0,21287.8,0.0,0.0,1,9,2.0,3,0.0 -9176,14021,1612.9811919621282,46.0,111,0.0,37,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,417.0,0.0,54478.3,0.0,52080.0,1,7,6.0,4,2.0 -9177,14024,1822.5480662458467,69.0,111,0.0,34,2.0,0.0,3.0,2.0,0.0,0.0,0.0,60530.0,0.0,0.0,67984.4,0.0,8610.0,1,10,8.0,4,2.0 -9178,14025,2353.2897764566,79.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14390.0,102.0,0.0,17342.0,0.0,0.0,1,0,0.0,3,0.0 -9179,14026,3093.453018563827,28.0,111,4020.0,56,2.0,1.0,4.0,2.1,0.0,60.0,0.0,0.0,0.0,0.0,27019.65,0.0,8550.0,3,8,6.0,4,2.0 -9180,14027,3072.6896857113147,59.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21685.85,0.0,23410.0,3,10,8.0,1,1.0 -9181,14031,3959.6782794794894,29.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41404.0,0.0,48420.0,3,7,1.0,3,1.0 -9182,14032,2089.6669063166833,62.0,112,0.0,23,3,3.0,3.0,2.0,0.0,0.0,0.0,7250.0,0.0,0.0,-0.0,0.0,23790.0,1,9,1.0,4,3.0 -9183,14033,3169.8305839418945,43.0,111,1600.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,1.0,0.0,56677.1,0.0,46950.0,3,8,7.0,4,2.0 -9184,14036,2236.4709949953844,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15160.0,0.0,0.0,16212.95,0.0,0.0,1,5,4.0,1,0.0 -9185,14037,2929.6379568040984,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20320.0,5.0,0.0,22052.75,0.0,0.0,3,9,7.0,1,0.0 -9186,14038,7539.442625807492,36.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10706.8,0.0,10360.0,3,8,6.0,1,1.0 -9187,14039,2269.640757192858,96.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17540.0,0.0,0.0,17182.5,0.0,0.0,1,5,4.0,1,0.0 -9188,14040,1235.134306871648,55.0,300,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,28450.0,0.0,0.0,70178.25,0.0,17140.0,1,0,0.0,2,2.0 -9189,14041,2430.6160785104507,81.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9290.0,0.0,0.0,9210.7,0.0,0.0,1,6,0.0,1,0.0 -9190,14042,1621.3843800715938,43.0,400,0.0,62,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40890.45,0.0,41790.0,1,0,0.0,4,3.0 -9191,14043,4148.619857693256,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12150.0,0.0,0.0,18772.9,0.0,0.0,1,9,7.0,1,0.0 -9192,14044,2243.031117342655,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56150.0,252.0,0.0,53633.45,0.0,0.0,1,10,8.0,3,0.0 -9193,14045,2740.09816883237,66.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,8800.0,4270.0,0.0,0.0,11080.15,0.0,0.0,1,0,0.0,3,0.0 -9194,14046,2964.988124016478,60.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42180.0,3695.0,0.0,77742.4,0.0,3780.0,1,10,8.0,3,0.0 -9195,14049,3342.4284545462187,40.0,111,2390.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35905.95,0.0,29000.0,2,9,7.0,4,2.0 -9196,14050,1433.3838419865933,58.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,89826.5,0.0,12790.0,1,6,4.0,4,2.0 -9197,14051,1255.950386457795,49.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,80204.25,0.0,95760.0,1,9,7.0,4,2.0 -9198,14052,2408.370936668646,41.0,212,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6680.7,0.0,0.0,1,3,0.0,1,1.0 -9199,14054,3459.180663057488,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10180.0,0.0,0.0,13158.0,0.0,0.0,3,8,6.0,1,0.0 -9200,14055,5396.628744059667,40.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43485.6,0.0,45770.0,1,9,3.0,4,2.0 -9201,14056,3566.7971907672186,40.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23034.65,0.0,21250.0,2,10,8.0,2,1.0 -9202,14058,2658.6893146401235,75.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12210.0,0.0,0.0,12758.0,0.0,0.0,5,8,7.0,1,0.0 -9203,14059,1054.8646619149717,50.0,111,12420.0,45,2.0,1.0,3.0,2.0,8750.0,0.0,0.0,0.0,0.0,0.0,49080.35,0.0,28980.0,3,7,6.0,4,2.0 -9204,14060,6537.281841565063,70.0,400,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,5330.0,0.0,0.0,48643.0,0.0,0.0,5,0,0.0,3,2.0 -9205,14061,3666.285119352025,26.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,3040.0,0.0,0.0,0.0,0.0,4104.0,0.0,0.0,3,9,7.0,1,1.0 -9206,14063,1442.3581212149788,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24430.0,0.0,0.0,22893.6,0.0,0.0,1,9,7.0,1,0.0 -9207,14064,2385.2078832301295,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61150.0,198.0,0.0,55063.75,0.0,0.0,1,10,8.0,3,0.0 -9208,14065,1665.7349319790249,68.0,120,680.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29410.0,0.0,0.0,28490.8,0.0,0.0,1,0,1.0,3,0.0 -9209,14066,2833.9871711684627,34.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,40.0,0.0,51363.75,0.0,51540.0,3,10,8.0,4,2.0 -9210,14067,3948.5458562576923,65.0,300,0.0,22,1.0,0.0,1.0,1.0,0.0,0.0,0.0,9910.0,0.0,0.0,9699.85,0.0,0.0,1,0,0.0,1,1.0 -9211,14068,2903.31604219197,71.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18550.0,0.0,0.0,39566.3,0.0,100.0,1,6,5.0,3,0.0 -9212,14069,2287.7494259675746,27.0,300,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,4.0,0.0,35779.3,0.0,38520.0,2,0,0.0,3,2.0 -9213,14070,2639.4632253097216,48.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19973.5,0.0,21890.0,2,4,3.0,2,2.0 -9214,14072,1573.3341977815892,43.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31642.25,0.0,31290.0,2,7,1.0,2,1.0 -9215,14073,1270.8065237643043,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24880.0,60.0,0.0,25471.15,0.0,0.0,1,8,7.0,3,0.0 -9216,14074,1799.9232345279331,31.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51065.50909090909,0.0,40040.0,2,8,1.0,4,2.0 -9217,14075,2002.7267522815553,44.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23161.1,0.0,25570.0,2,6,4.0,1,1.0 -9218,14076,1395.4066447837906,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19610.0,231.0,0.0,19143.1,0.0,0.0,1,7,6.0,1,0.0 -9219,14077,2065.4610303015884,69.0,111,0.0,75,1.0,1.0,2.0,1.5,8750.0,0.0,0.0,21460.0,0.0,0.0,37067.75,0.0,7970.0,1,8,6.0,2,1.0 -9220,14078,3096.4978963421763,31.0,400,0.0,69,1.0,0.0,5.0,2.4,0.0,6940.0,0.0,0.0,0.0,0.0,19778.0,210.0,0.0,3,0,0.0,4,1.0 -9221,14080,1654.4126042763544,62.0,120,0.0,78,0.0,0.0,2.0,1.5,8380.0,0.0,0.0,15800.0,0.0,0.0,26293.65,0.0,0.0,1,0,1.0,3,0.0 -9222,14081,1850.9740085826013,74.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15350.0,0.0,0.0,15132.75,0.0,0.0,1,0,0.0,1,0.0 -9223,14083,2690.31374983219,54.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,14980.0,545.0,0.0,51013.6,0.0,34270.0,1,8,7.0,4,2.0 -9224,14086,2742.1533633237354,43.0,111,0.0,38,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,42281.1,0.0,24470.0,2,9,7.0,4,1.0 -9225,14088,3276.755669869465,49.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15690.0,0.0,0.0,36116.35,0.0,22360.0,1,10,8.0,3,1.0 -9226,14089,1304.6457854536109,62.0,300,10070.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18300.0,0.0,0.0,28267.05,0.0,0.0,3,0,0.0,3,0.0 -9227,14090,2210.264704513491,64.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10420.0,0.0,0.0,22920.95,0.0,6050.0,5,8,7.0,1,1.0 -9228,14092,3090.173309370602,71.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12440.0,0.0,0.0,12469.6,0.0,0.0,2,7,5.0,1,0.0 -9229,14093,4041.5501456789,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13160.0,0.0,0.0,13568.0,0.0,0.0,5,8,7.0,1,0.0 -9230,14094,2890.149730014031,41.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56862.1,0.0,58420.0,2,10,8.0,4,2.0 -9231,14095,1922.867998585075,44.0,400,0.0,62,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23601.6,0.0,13760.0,2,0,0.0,2,1.0 -9232,14096,3212.568376858755,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48980.0,0.0,0.0,46625.75,0.0,0.0,1,10,8.0,3,0.0 -9233,14097,1277.8320445804973,70.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17660.0,0.0,0.0,18029.45,0.0,0.0,1,0,0.0,3,0.0 -9234,14098,2028.3955484381777,50.0,111,0.0,45,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50564.2,0.0,54270.0,2,9,7.0,4,3.0 -9235,14099,3845.3051711417847,36.0,111,16810.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39394.0,0.0,11880.0,3,10,8.0,4,2.0 -9236,14101,3491.0494434735333,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21100.0,0.0,0.0,20710.55,0.0,0.0,1,8,0.0,3,0.0 -9237,14102,3082.079573322004,26.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50800.15,0.0,56170.0,5,10,8.0,3,2.0 -9238,14105,3558.977519160568,27.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,19568.0,92326.75,0.0,80450.0,2,10,8.0,3,2.0 -9239,14108,2465.6176912442893,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17620.0,0.0,0.0,17014.2,0.0,0.0,1,6,4.0,1,0.0 -9240,14109,3024.0650600942504,56.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8710.0,0.0,0.0,10270.0,0.0,0.0,3,5,4.0,1,0.0 -9241,14110,2684.7650598909727,51.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,39.0,0.0,32992.7,0.0,37780.0,1,9,7.0,1,1.0 -9242,14112,4632.333310668068,83.0,112,0.0,71,2.0,2.0,5.0,3.0,10390.0,0.0,0.0,17020.0,141.0,0.0,62966.25,0.0,36550.0,1,5,0.0,4,2.0 -9243,14113,3534.274749259914,31.0,111,15890.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,11.0,0.0,49943.7,0.0,39620.0,2,9,7.0,3,2.0 -9244,14114,3073.8535023594254,31.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44758.4,0.0,45230.0,3,9,0.0,4,2.0 -9245,14115,1062.446229361684,53.0,211,750.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34025.45,0.0,36410.0,2,1,3.0,3,2.0 -9246,14116,3471.0703009542385,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16790.0,0.0,0.0,16831.0,0.0,0.0,3,9,7.0,1,0.0 -9247,14118,1940.4582257872316,45.0,112,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48538.35,0.0,43100.0,2,8,0.0,4,2.0 -9248,14119,4845.850850224843,32.0,212,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57317.8,0.0,50250.0,1,3,0.0,4,2.0 -9249,14121,3485.4974100466475,45.0,120,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26132.4,0.0,28730.0,3,0,2.0,1,1.0 -9250,14123,3372.6308194950698,44.0,111,5600.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8386.85,0.0,0.0,3,8,7.0,1,1.0 -9251,14124,2883.136851276912,48.0,111,180.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32311.1,0.0,32070.0,2,6,4.0,4,2.0 -9252,14127,3800.027744806857,56.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,2730.0,0.0,-0.0,0.0,0.0,1,5,4.0,2,1.0 -9253,14128,1463.930263629651,84.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33450.0,0.0,0.0,31662.4,0.0,0.0,1,8,7.0,3,0.0 -9254,14129,1872.0763670013228,58.0,120,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30775.15,0.0,31710.0,1,0,0.0,3,2.0 -9255,14130,1724.6365746041292,57.0,111,0.0,54,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49822.7,0.0,51560.0,1,9,7.0,4,2.0 -9256,14131,2185.7568953367327,79.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7040.0,0.0,0.0,7650.0,0.0,0.0,5,8,2.0,1,0.0 -9257,14133,2550.8499794382587,77.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14000.0,0.0,0.0,13609.65,0.0,0.0,3,0,0.0,1,0.0 -9258,14134,2677.970169589472,56.0,300,14500.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32495.55,0.0,18610.0,1,0,0.0,3,1.0 -9259,14135,2490.4455653748537,38.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43769.1,0.0,42580.0,2,8,7.0,4,2.0 -9260,14136,1611.9875862875454,56.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29580.55,0.0,31860.0,1,7,1.0,3,2.0 -9261,14140,1718.9479099300086,28.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48822.7,0.0,41270.0,2,9,1.0,4,2.0 -9262,14141,862.9182291015984,53.0,300,0.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,31197.25,0.0,24090.0,2,0,0.0,4,2.0 -9263,14142,1504.8061100843736,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55380.0,265.0,0.0,55874.05,0.0,0.0,1,8,0.0,3,0.0 -9264,14143,3116.035542058334,59.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,49722.45,0.0,31260.0,1,10,8.0,1,1.0 -9265,14145,3268.154423289223,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24010.0,0.0,0.0,23789.2,0.0,0.0,1,9,7.0,1,0.0 -9266,14146,2372.6860926505683,74.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20570.0,1533.0,0.0,19753.65,0.0,0.0,1,7,0.0,3,0.0 -9267,14147,3482.6514959880647,28.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37979.9,0.0,35900.0,3,10,8.0,4,2.0 -9268,14149,2994.9190651236136,46.0,111,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,58951.85,0.0,52040.0,1,8,6.0,4,2.0 -9269,14150,998.913394499911,45.0,111,0.0,38,1.0,1.0,5.0,2.6,0.0,0.0,0.0,9400.0,0.0,0.0,39065.05,0.0,24150.0,1,7,6.0,4,1.0 -9270,14151,1978.5605631322017,51.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39111.05,0.0,42660.0,1,7,0.0,3,2.0 -9271,14152,2443.0891225963187,60.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24870.0,196.0,0.0,25116.05,0.0,0.0,1,3,0.0,1,0.0 -9272,14153,2681.91595396618,40.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15162.2,0.0,15630.0,1,10,8.0,1,1.0 -9273,14154,3182.572323678492,32.0,111,0.0,85,0.0,0.0,1.0,1.0,880.0,0.0,0.0,3220.0,0.0,0.0,7064.0,0.0,0.0,3,6,4.0,1,0.0 -9274,14157,2543.962314411013,59.0,212,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17460.0,11.0,0.0,17276.7,0.0,0.0,1,1,0.0,1,0.0 -9275,14158,3526.2863321917175,79.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19390.0,0.0,0.0,20020.0,0.0,0.0,3,9,7.0,3,0.0 -9276,14159,2403.5514621130774,86.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39510.0,0.0,0.0,36180.85,0.0,0.0,1,8,7.0,1,0.0 -9277,14160,3011.35076991605,44.0,221,0.0,64,1.0,1.0,5.0,2.4,10900.0,0.0,0.0,0.0,0.0,0.0,31562.0,0.0,14720.0,2,1,1.0,4,1.0 -9278,14161,1912.8930460832257,56.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,60134.15,0.0,57320.0,1,10,8.0,4,2.0 -9279,14162,2213.425270993105,43.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31905.85,0.0,33050.0,2,6,0.0,4,2.0 -9280,14163,1084.2467977168244,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14060.0,0.0,0.0,14332.0,0.0,0.0,3,7,5.0,1,0.0 -9281,14165,2917.1094767489817,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11720.0,0.0,0.0,12961.0,0.0,0.0,3,7,5.0,1,0.0 -9282,14167,2909.596660804065,51.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,10480.0,193.0,0.0,66928.55,0.0,64760.0,3,10,8.0,3,2.0 -9283,14170,1730.9227953357988,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25430.0,0.0,0.0,25248.95,0.0,0.0,3,5,4.0,3,0.0 -9284,14171,2619.7324158605848,49.0,111,0.0,43,1.0,1.0,2.0,1.5,6270.0,0.0,0.0,0.0,0.0,0.0,18539.05,0.0,12140.0,3,6,4.0,3,1.0 -9285,14172,2800.445615924396,74.0,112,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,0.0,45950.0,133.0,0.0,30569.2,0.0,0.0,5,7,1.0,4,0.0 -9286,14173,1855.380296853231,52.0,300,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54482.05,0.0,56530.0,1,0,0.0,4,2.0 -9287,14174,1238.8446959706416,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21640.0,0.0,0.0,21108.6,0.0,0.0,1,4,4.0,1,0.0 -9288,14177,2102.8249460318116,60.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23180.0,0.0,0.0,116011.0,0.0,0.0,2,6,0.0,3,0.0 -9289,14178,3085.3178070159065,41.0,300,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34838.1,0.0,39240.0,1,0,0.0,4,2.0 -9290,14179,2146.1223245865126,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22080.0,0.0,0.0,21060.45,0.0,0.0,1,7,6.0,3,0.0 -9291,14180,2872.622244351237,23.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19870.0,0.0,15070.0,3,9,2.0,1,1.0 -9292,14181,2095.1840063369336,59.0,111,0.0,63,1.0,1.0,5.0,2.8,0.0,16210.0,0.0,9940.0,0.0,0.0,44366.95,0.0,18200.0,1,10,8.0,5,1.0 -9293,14183,3099.606698786426,43.0,111,0.0,23,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,44814.65,0.0,43220.0,2,10,8.0,4,2.0 -9294,14184,1936.9428845299894,46.0,111,0.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,22029.75,0.0,20650.0,2,6,5.0,4,1.0 -9295,14185,3094.6107933750395,77.0,112,0.0,71,0.0,0.0,2.0,1.5,8750.0,0.0,0.0,13420.0,0.0,0.0,24653.0,0.0,0.0,3,9,0.0,2,0.0 -9296,14188,2169.0265986210434,48.0,112,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43382.25,0.0,20240.0,1,7,4.0,4,2.0 -9297,14189,2096.1055633500146,38.0,111,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,4110.0,0.0,0.0,89045.8,0.0,88050.0,3,7,5.0,4,1.0 -9298,14190,6140.252830406801,34.0,111,0.0,64,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26009.25,0.0,25460.0,3,10,8.0,4,1.0 -9299,14193,903.6499514702549,34.0,112,8100.0,64,2.0,1.0,7.0,3.4,0.0,90.0,0.0,0.0,0.0,0.0,41233.6,2280.0,13900.0,3,10,4.0,5,2.0 -9300,14194,2641.2660654722968,67.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56670.0,0.0,0.0,55960.4,0.0,0.0,1,0,0.0,3,0.0 -9301,14195,2992.878123542838,39.0,111,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40696.65,0.0,41800.0,2,9,7.0,4,2.0 -9302,14196,2216.2908974529146,43.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19475.35,0.0,20220.0,2,9,7.0,1,1.0 -9303,14197,3029.42118593056,37.0,111,16600.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14913.85,0.0,0.0,3,10,8.0,1,1.0 -9304,14198,2197.898547906509,56.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14360.0,0.0,0.0,37631.0,0.0,23250.0,1,10,8.0,3,1.0 -9305,14199,2743.4680132411786,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30310.0,0.0,0.0,27461.5,0.0,0.0,1,10,8.0,3,0.0 -9306,14200,4839.724408069362,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22440.0,23.0,0.0,20420.1,0.0,0.0,1,9,7.0,1,0.0 -9307,14201,1781.9345101034564,53.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48264.45,0.0,53590.0,2,7,5.0,3,2.0 -9308,14202,7608.12219398386,51.0,112,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,10920.0,0.0,0.0,81837.0,0.0,65530.0,2,9,1.0,4,2.0 -9309,14203,3062.4853620409003,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17210.0,0.0,0.0,17312.25,0.0,0.0,3,9,7.0,1,0.0 -9310,14204,3018.2844748116527,86.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,65180.0,2.0,0.0,65584.75,0.0,0.0,3,8,7.0,1,0.0 -9311,14205,1317.0727081747953,42.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,146.0,69498.0,74929.55,0.0,5690.0,1,6,4.0,4,2.0 -9312,14206,6409.615196012889,42.0,111,4350.0,62,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,11649.35,0.0,4110.0,3,10,8.0,2,1.0 -9313,14208,1457.862688352031,53.0,120,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,360.0,0.0,0.0,28796.0,0.0,28890.0,1,0,0.0,4,2.0 -9314,14209,3414.9610783860767,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36000.0,0.0,0.0,33079.6,0.0,0.0,1,10,8.0,3,0.0 -9315,14211,2714.4618842192504,81.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,93970.0,0.0,0.0,82645.0,0.0,0.0,1,8,7.0,3,0.0 -9316,14215,2115.439979724338,92.0,212,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8540.0,0.0,0.0,8472.25,0.0,0.0,1,2,0.0,1,0.0 -9317,14216,1133.5081085803872,62.0,212,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27530.0,0.0,0.0,41715.6,0.0,16870.0,1,3,0.0,3,1.0 -9318,14217,5603.573599739959,24.0,221,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15907.65,0.0,13020.0,3,1,1.0,2,1.0 -9319,14219,2045.6483810717114,75.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12310.0,0.0,0.0,12294.45,0.0,0.0,1,8,7.0,1,0.0 -9320,14220,1134.937809565171,63.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24410.0,0.0,0.0,41130.25,0.0,20050.0,1,4,4.0,3,1.0 -9321,14221,3738.032043061,46.0,120,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11762.6,0.0,12160.0,1,0,0.0,1,1.0 -9322,14222,3370.116076069615,63.0,400,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,13630.0,0.0,0.0,15802.25,0.0,0.0,2,0,1.0,3,2.0 -9323,14223,3272.8185815385614,39.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48516.0,0.0,50580.0,2,9,7.0,4,2.0 -9324,14226,1611.5277850351897,47.0,111,0.0,68,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,8.0,0.0,36045.7,0.0,38730.0,1,9,7.0,4,3.0 -9325,14227,1942.03324855925,79.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19500.0,0.0,0.0,19393.95,0.0,0.0,1,8,6.0,3,0.0 -9326,14228,3156.126156555153,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,5010.0,0.0,0.0,0.0,0.0,7953.0,0.0,0.0,3,9,7.0,1,0.0 -9327,14229,2845.1655632223706,52.0,111,3540.0,54,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,24260.0,1,5,4.0,4,3.0 -9328,14230,5942.317997791243,27.0,221,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19050.7,0.0,19680.0,3,1,1.0,1,1.0 -9329,14231,1264.7430017869335,43.0,111,0.0,68,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,42719.05,0.0,44850.0,3,7,6.0,4,3.0 -9330,14232,3553.475354032442,79.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3100.0,0.0,0.0,6219.0,0.0,0.0,3,9,7.0,1,0.0 -9331,14234,4318.918967736541,78.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30860.0,0.0,0.0,39991.9,0.0,0.0,1,0,0.0,3,0.0 -9332,14236,3535.8281641685426,53.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17870.0,0.0,0.0,29879.35,0.0,13620.0,1,7,5.0,3,1.0 -9333,14237,2895.641254152553,22.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3745.9,0.0,840.0,3,7,5.0,1,1.0 -9334,14239,2861.1753836870726,36.0,221,7830.0,53,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39472.65,0.0,31180.0,3,1,2.0,4,2.0 -9335,14240,1618.4713194905203,55.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17820.0,142.0,0.0,44869.0,0.0,24290.0,1,5,0.0,3,1.0 -9336,14242,4043.462376971861,18.0,111,0.0,84,0.0,,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1189.0,0.0,0.0,3,8,6.0,1,0.0 -9337,14243,2366.0672874893166,29.0,112,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49816.15,0.0,44540.0,2,10,0.0,4,2.0 -9338,14244,3177.8061317854904,53.0,400,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,88.0,0.0,35666.85,0.0,8020.0,2,0,0.0,3,2.0 -9339,14245,1988.766173589804,49.0,111,0.0,47,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43393.45,0.0,37050.0,2,8,7.0,4,1.0 -9340,14247,1612.375028544109,59.0,112,1630.0,54,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,72059.4,0.0,22390.0,1,6,1.0,4,3.0 -9341,14249,2454.9241456795116,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6020.0,0.0,0.0,13310.0,0.0,0.0,3,8,6.0,1,0.0 -9342,14251,2345.7375904455885,39.0,400,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,6.0,0.0,84149.25,0.0,86400.0,2,0,0.0,4,2.0 -9343,14252,998.601408201253,47.0,111,3920.0,65,3,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,44716.5,0.0,32330.0,2,6,4.0,4,3.0 -9344,14256,3297.1926940333224,54.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,6605.0,0.0,321932.4,0.0,0.0,1,7,5.0,3,2.0 -9345,14257,2958.154821313503,41.0,112,0.0,64,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,48414.2,0.0,38090.0,2,9,2.0,4,2.0 -9346,14258,1157.803712120963,50.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,255.0,0.0,60293.7,0.0,59960.0,2,8,7.0,4,2.0 -9347,14259,4145.409020317434,50.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16691.7,0.0,18020.0,5,9,7.0,1,1.0 -9348,14260,1813.303416004896,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23370.0,0.0,0.0,22800.2,0.0,0.0,3,7,5.0,3,0.0 -9349,14261,1853.885859577858,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38420.0,0.0,0.0,36056.9,0.0,0.0,1,6,0.0,3,0.0 -9350,14263,1580.3463090393263,55.0,300,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,7420.0,0.0,0.0,47090.0,0.0,42620.0,1,0,0.0,4,2.0 -9351,14264,2695.8883422861213,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20050.0,0.0,0.0,19006.75,0.0,0.0,1,8,6.0,1,0.0 -9352,14266,2487.726730587316,35.0,112,0.0,11,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,5990.0,5,8,0.0,4,2.0 -9353,14267,1478.359749914137,57.0,112,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,79047.85,0.0,84410.0,1,8,1.0,3,2.0 -9354,14269,2327.455180895396,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48750.0,965.0,0.0,43710.3,0.0,0.0,1,8,0.0,3,0.0 -9355,14271,5924.05721212325,30.0,300,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,68.0,0.0,39429.15,0.0,33200.0,2,0,1.0,4,2.0 -9356,14272,2912.7293402294663,34.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20152.65,0.0,17060.0,3,8,7.0,1,1.0 -9357,14274,718.6793776318565,68.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26600.0,0.0,0.0,30617.6,0.0,0.0,1,0,0.0,3,0.0 -9358,14275,1639.4761103375083,57.0,111,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,10800.0,0.0,0.0,42501.35,0.0,32310.0,1,9,7.0,4,1.0 -9359,14276,1342.0526617460202,57.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30456.35,0.0,34460.0,1,8,7.0,1,1.0 -9360,14277,3417.1891406979244,65.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,2430.0,0.0,4270.0,0.0,0.0,8136.95,0.0,0.0,3,8,7.0,1,0.0 -9361,14278,2348.1004282318036,82.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9750.0,0.0,0.0,9628.55,0.0,0.0,1,8,1.0,1,0.0 -9362,14280,2854.313057187231,73.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28200.0,0.0,0.0,51852.55,0.0,0.0,1,10,8.0,3,0.0 -9363,14281,3772.5215819209425,77.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19830.0,0.0,0.0,19618.75,0.0,0.0,3,9,0.0,1,0.0 -9364,14282,2367.9570452379467,45.0,400,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53183.45,0.0,57130.0,3,0,0.0,3,2.0 -9365,14284,3408.326370098954,31.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,1230.0,0.0,0.0,0.0,0.0,24634.8,0.0,23440.0,3,9,7.0,5,1.0 -9366,14285,1609.2886518082662,73.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20170.0,0.0,0.0,21878.3,0.0,0.0,1,7,1.0,3,0.0 -9367,14286,1337.5894569293073,87.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21970.0,0.0,0.0,21512.1,0.0,0.0,1,3,4.0,1,0.0 -9368,14288,2794.7813885388705,28.0,111,8750.0,35,2.0,2.0,2.0,1.5,0.0,150.0,0.0,0.0,4.0,0.0,20485.0,1100.0,8970.0,5,10,8.0,3,2.0 -9369,14289,3963.717420747666,34.0,112,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53169.45,0.0,46520.0,2,9,3.0,4,2.0 -9370,14290,3024.0030370320264,47.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5440.0,0.0,0.0,7985.0,0.0,0.0,3,9,7.0,1,0.0 -9371,14293,3199.0760091368447,41.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12382.4,0.0,12970.0,2,9,7.0,1,1.0 -9372,14294,2319.2735900481016,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20140.0,340.0,0.0,19941.2,0.0,0.0,1,8,7.0,3,0.0 -9373,14295,6076.688855063051,81.0,111,0.0,86,1.0,0.0,2.0,1.5,0.0,9190.0,0.0,13140.0,0.0,0.0,22330.0,0.0,0.0,5,8,7.0,5,1.0 -9374,14299,2582.650976154021,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16550.0,0.0,0.0,14482.9,0.0,0.0,1,9,7.0,1,0.0 -9375,14300,2508.4952215675694,53.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,110.0,0.0,47539.35,0.0,49220.0,1,9,7.0,5,2.0 -9376,14301,1242.610112170711,64.0,111,2140.0,77,2.0,2.0,3.0,2.0,0.0,0.0,0.0,20460.0,7.0,0.0,40729.1,0.0,20430.0,2,9,7.0,4,2.0 -9377,14303,2024.3497749039786,71.0,400,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,29730.0,0.0,0.0,33738.05,0.0,5150.0,1,0,0.0,3,1.0 -9378,14304,2969.490525939744,28.0,111,0.0,43,2.0,1.0,3.0,1.8,0.0,5010.0,0.0,0.0,0.0,0.0,45876.0,0.0,41370.0,3,9,7.0,4,2.0 -9379,14305,2286.7249881002754,86.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,53700.0,0.0,0.0,48709.8,0.0,0.0,1,4,4.0,1,0.0 -9380,14306,2753.676745109329,57.0,112,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9620.0,0.0,0.0,29114.8,0.0,3670.0,1,5,0.0,3,1.0 -9381,14309,2122.5867956596608,66.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22790.0,0.0,0.0,21383.65,0.0,0.0,1,0,0.0,3,0.0 -9382,14310,1842.9665033929973,48.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,19.0,0.0,68812.85,0.0,67510.0,2,9,7.0,4,2.0 -9383,14311,1948.1842877007903,79.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14060.0,0.0,0.0,14089.0,0.0,0.0,5,5,0.0,1,0.0 -9384,14312,4535.896141854887,46.0,111,0.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,18622.15,0.0,16870.0,3,10,8.0,4,2.0 -9385,14313,3030.3650519435487,64.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57300.0,0.0,0.0,51071.8,0.0,0.0,1,10,4.0,3,0.0 -9386,14314,1393.0781972362192,35.0,111,4220.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,56.0,0.0,95917.65,0.0,84450.0,2,8,7.0,4,2.0 -9387,14315,1259.615533564056,39.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49299.2,0.0,50420.0,2,6,1.0,4,2.0 -9388,14317,2222.7630539932525,39.0,400,0.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36279.35,0.0,34800.0,3,0,0.0,3,2.0 -9389,14319,2047.534736148603,73.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27140.0,0.0,0.0,27997.65,0.0,0.0,1,9,1.0,3,0.0 -9390,14320,4413.261677395954,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15010.0,0.0,0.0,16186.0,0.0,0.0,3,8,7.0,1,0.0 -9391,14321,3446.7860940893324,81.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25240.0,0.0,0.0,23487.7,0.0,0.0,1,9,7.0,3,0.0 -9392,14322,1367.3667577434398,44.0,111,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,64196.95,0.0,66430.0,2,7,5.0,4,2.0 -9393,14323,3237.153421346404,34.0,211,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39069.95,0.0,42330.0,3,1,2.0,3,2.0 -9394,14325,3112.1341087701176,29.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,5010.0,0.0,0.0,19.0,0.0,72439.45,0.0,73190.0,3,10,8.0,3,2.0 -9395,14327,2020.9140071559477,66.0,120,12190.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11780.0,0.0,0.0,29108.1,0.0,0.0,1,0,1.0,3,0.0 -9396,14328,4106.677778896626,27.0,400,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43641.0,0.0,48400.0,3,0,0.0,3,2.0 -9397,14329,1574.267743550395,32.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50221.95,0.0,47950.0,2,9,7.0,4,2.0 -9398,14330,2060.9330306199818,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41170.0,0.0,0.0,82491.55,0.0,0.0,1,9,7.0,3,0.0 -9399,14332,1495.295579228734,51.0,112,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53841.4,0.0,54330.0,1,7,0.0,4,3.0 -9400,14333,2877.4413175558097,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,86850.0,82.0,0.0,71623.75,0.0,0.0,1,8,6.0,3,0.0 -9401,14335,1608.9727201293597,55.0,111,0.0,64,2.0,2.0,3.0,2.0,3670.0,0.0,0.0,0.0,0.0,0.0,26002.55,0.0,22710.0,1,9,7.0,4,2.0 -9402,14339,2753.806368706473,64.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37680.0,83.0,0.0,35073.65,0.0,0.0,1,8,0.0,3,0.0 -9403,14340,2463.048291873831,36.0,111,12270.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32429.95,0.0,22720.0,3,7,5.0,3,2.0 -9404,14341,2075.836607622293,76.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25180.0,6.0,0.0,25709.7,0.0,0.0,1,10,2.0,3,0.0 -9405,14342,1732.199491987036,26.0,221,3760.0,62,1.0,0.0,1.0,1.0,0.0,2620.0,0.0,0.0,0.0,0.0,13179.4,40.0,4900.0,4,1,2.0,1,1.0 -9406,14344,2778.8855121469433,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14410.0,0.0,0.0,15585.0,0.0,0.0,3,9,7.0,1,0.0 -9407,14345,1601.2496258883066,47.0,111,0.0,67,1.0,1.0,4.0,2.3,0.0,380.0,0.0,0.0,0.0,0.0,25529.0,3260.0,17510.0,3,5,4.0,4,1.0 -9408,14346,2102.4395736327083,81.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11460.0,0.0,0.0,11703.9,0.0,0.0,1,1,3.0,1,0.0 -9409,14352,891.8766159948561,39.0,111,1530.0,56,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,3478.0,21070.0,0.0,0.0,3,7,6.0,2,1.0 -9410,14354,3179.17725039023,54.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20915.65,0.0,26010.0,2,9,7.0,1,1.0 -9411,14357,2108.699866180275,45.0,111,0.0,64,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,4.0,0.0,34235.25,0.0,31760.0,3,7,5.0,4,2.0 -9412,14359,3885.6091764930584,46.0,111,0.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32068.55,0.0,33180.0,3,9,7.0,4,2.0 -9413,14361,1740.190541610931,49.0,112,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,6.0,0.0,51583.6,0.0,54330.0,1,6,0.0,4,3.0 -9414,14362,1975.5227161807877,44.0,111,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,27894.0,0.0,19630.0,3,8,7.0,4,1.0 -9415,14364,3413.802964407035,62.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59500.0,0.0,0.0,57084.3,0.0,0.0,1,10,8.0,3,0.0 -9416,14365,2518.8147754088077,56.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41107.75,0.0,41410.0,1,8,6.0,3,2.0 -9417,14367,1427.9895172939641,56.0,112,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28650.0,255.0,0.0,62060.95,0.0,30970.0,1,6,2.0,3,1.0 -9418,14369,3401.497268269219,90.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11570.0,0.0,0.0,11570.0,0.0,0.0,3,8,7.0,1,0.0 -9419,14371,3747.7144813742334,28.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,60.0,0.0,32018.3,0.0,37680.0,3,10,8.0,1,1.0 -9420,14374,1793.6843783325414,36.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,183131.85,0.0,74750.0,2,5,4.0,4,2.0 -9421,14375,1715.538421147666,39.0,300,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38016.85,0.0,33870.0,2,0,0.0,4,2.0 -9422,14376,2691.3236200626966,47.0,111,0.0,55,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49231.55,0.0,36680.0,3,6,4.0,4,3.0 -9423,14377,4555.74459918368,75.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25920.0,3.0,0.0,24900.5,0.0,0.0,1,0,1.0,3,0.0 -9424,14378,1220.6571655077046,38.0,112,0.0,69,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,39151.6,0.0,12730.0,1,8,0.0,4,2.0 -9425,14380,4776.452805721484,40.0,111,2310.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44186.7,0.0,39620.0,3,10,8.0,4,2.0 -9426,14381,2664.8285980585906,32.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,42820.0,0.0,0.0,65911.35,0.0,31750.0,1,10,8.0,2,1.0 -9427,14383,4610.775307152382,33.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16147.45,0.0,16910.0,3,8,6.0,1,1.0 -9428,14385,1457.321162828856,57.0,112,13100.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25289.75,0.0,7990.0,3,8,0.0,2,2.0 -9429,14386,3696.1463271679495,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17940.0,0.0,0.0,18280.6,0.0,0.0,3,8,7.0,1,0.0 -9430,14389,1736.257096739072,59.0,111,14590.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,21120.0,24.0,0.0,33599.8,0.0,0.0,1,8,6.0,3,1.0 -9431,14390,4371.303726833911,47.0,111,5260.0,63,2.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,9952.8,0.0,2230.0,1,4,4.0,4,2.0 -9432,14391,2216.0479699576363,43.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34462.9,0.0,27020.0,3,9,7.0,2,1.0 -9433,14393,2681.5841097253615,60.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14860.0,0.0,0.0,16312.0,0.0,0.0,3,6,5.0,1,0.0 -9434,14394,1234.628296426617,46.0,111,0.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,70717.75,0.0,74410.0,2,10,8.0,4,2.0 -9435,14395,1175.203741971051,64.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19180.0,0.0,0.0,21876.45,0.0,0.0,5,0,0.0,1,0.0 -9436,14396,3037.5071855532206,54.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26587.5,0.0,25810.0,3,10,8.0,2,1.0 -9437,14397,3653.8705288596852,47.0,111,4440.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,27228.0,0.0,18260.0,3,10,8.0,4,2.0 -9438,14399,2309.106322100127,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22360.0,0.0,0.0,20991.25,0.0,0.0,1,6,4.0,3,0.0 -9439,14401,2666.8689878332643,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12500.0,0.0,0.0,32815.05,0.0,22700.0,1,6,5.0,3,0.0 -9440,14405,1332.0027809080027,33.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,75635.2,0.0,75900.0,1,10,4.0,4,2.0 -9441,14407,1071.6180986522472,56.0,400,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,480.0,0.0,0.0,36586.05,0.0,37530.0,3,0,0.0,3,2.0 -9442,14409,3179.6136743797065,35.0,111,0.0,63,1.0,1.0,3.0,1.8,0.0,8150.0,0.0,0.0,0.0,0.0,13570.0,350.0,90.0,3,10,8.0,4,1.0 -9443,14411,2700.682658438558,57.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25402.3,0.0,26040.0,3,8,7.0,3,2.0 -9444,14412,1809.8784873030982,48.0,221,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47506.2,0.0,46750.0,2,1,2.0,4,2.0 -9445,14413,1799.672895172153,46.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,68679.8,0.0,75060.0,2,9,7.0,3,2.0 -9446,14414,1960.4002021689166,52.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40741.45,0.0,43690.0,2,8,0.0,3,2.0 -9447,14415,3984.8544151008246,39.0,111,0.0,21,1.0,1.0,8.0,4.1,0.0,0.0,0.0,0.0,0.0,0.0,24624.0,0.0,0.0,3,6,5.0,4,1.0 -9448,14419,2103.0314356597,58.0,112,1910.0,67,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22119.85,0.0,20360.0,3,8,1.0,4,2.0 -9449,14420,2116.576002598269,55.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9500.0,0.0,0.0,17202.2,0.0,9180.0,5,8,7.0,1,0.0 -9450,14424,1682.9621801827225,62.0,111,0.0,68,1.0,0.0,2.0,1.5,0.0,0.0,0.0,26580.0,0.0,0.0,36954.55,0.0,12890.0,1,9,7.0,3,1.0 -9451,14425,2121.53965388588,78.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30170.0,0.0,0.0,29973.8,0.0,390.0,1,4,4.0,3,0.0 -9452,14427,2815.710890249928,55.0,112,60.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48455.4,0.0,50390.0,1,6,0.0,3,2.0 -9453,14429,2335.7861860527646,65.0,111,0.0,78,2.0,2.0,6.0,3.5,0.0,300.0,3380.0,9650.0,0.0,0.0,53662.0,940.0,35530.0,3,6,5.0,4,2.0 -9454,14430,2333.8063855776513,49.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19545.25,0.0,20090.0,2,9,2.0,1,1.0 -9455,14431,3113.747975720782,53.0,111,0.0,37,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,21.0,0.0,63977.45,0.0,63550.0,2,9,7.0,4,3.0 -9456,14432,3654.321202262007,75.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,700.0,2850.0,0.0,0.0,12055.5,0.0,0.0,1,10,8.0,1,1.0 -9457,14433,3998.5302336621467,28.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,230.0,0.0,0.0,0.0,0.0,8868.2,2960.0,1510.0,5,9,7.0,3,2.0 -9458,14435,2131.5465898904013,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25820.0,0.0,0.0,26612.05,0.0,0.0,1,7,6.0,3,0.0 -9459,14437,2244.687025786902,85.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25400.0,0.0,0.0,24958.65,0.0,0.0,1,0,0.0,3,0.0 -9460,14438,3586.937068660392,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13550.0,0.0,0.0,13563.0,0.0,0.0,3,7,5.0,1,0.0 -9461,14439,2957.968797417416,64.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9560.0,0.0,0.0,9088.75,0.0,0.0,1,8,6.0,1,0.0 -9462,14440,1813.659115363269,61.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44570.0,0.0,0.0,46519.25,0.0,1650.0,2,4,0.0,3,0.0 -9463,14442,3654.564017983756,42.0,112,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38184.15,0.0,37600.0,2,9,1.0,4,2.0 -9464,14443,3098.932834072681,27.0,111,0.0,35,1.0,1.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,15757.0,0.0,1170.0,3,7,6.0,1,1.0 -9465,14445,2213.1945946083483,35.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,74935.15,0.0,70640.0,2,8,0.0,4,2.0 -9466,14446,2626.274848376598,29.0,111,2010.0,67,1.0,1.0,1.0,1.0,0.0,400.0,0.0,0.0,0.0,0.0,17078.9,0.0,14730.0,3,7,6.0,1,1.0 -9467,14447,2767.74242558412,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17910.0,0.0,0.0,11971.55,0.0,0.0,1,8,7.0,1,0.0 -9468,14448,1844.9086338344605,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16640.0,0.0,0.0,15772.75,0.0,0.0,1,6,5.0,1,0.0 -9469,14450,1546.3024336404003,61.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19850.0,0.0,0.0,23719.1,0.0,4310.0,3,3,3.0,3,0.0 -9470,14453,1786.2193991832971,56.0,111,0.0,33,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53501.9,0.0,57380.0,1,7,5.0,4,3.0 -9471,14454,3295.989412406356,34.0,111,0.0,23,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,59.0,0.0,37087.2,0.0,42410.0,2,8,7.0,1,1.0 -9472,14455,2129.752403741523,43.0,112,0.0,67,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25706.95,0.0,16890.0,1,8,0.0,2,1.0 -9473,14457,1780.1496352474028,80.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23650.0,0.0,0.0,19709.1,0.0,0.0,1,0,1.0,3,0.0 -9474,14458,1804.735277030454,80.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26010.0,0.0,0.0,28243.75,0.0,0.0,1,0,0.0,3,0.0 -9475,14461,2830.862360122972,36.0,111,0.0,23,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,121681.1,0.0,139070.0,2,5,4.0,4,1.0 -9476,14463,2862.5336515918275,36.0,111,140.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11243.7,0.0,11630.0,5,10,8.0,1,1.0 -9477,14464,4454.026086914992,27.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,3910.0,0.0,0.0,41.0,0.0,20986.95,720.0,17000.0,5,10,8.0,1,1.0 -9478,14466,2397.7186352655162,58.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,73244.2,0.0,60540.0,1,9,7.0,4,2.0 -9479,14467,2864.796176171821,76.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16310.0,0.0,0.0,16027.25,0.0,0.0,1,9,1.0,1,0.0 -9480,14469,3311.4858835315836,63.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25820.0,152.0,0.0,85478.0,0.0,79180.0,1,7,5.0,3,1.0 -9481,14470,3124.711594738301,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15750.0,0.0,0.0,15556.75,0.0,0.0,1,9,7.0,1,0.0 -9482,14472,4698.739002072026,84.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,510.0,13350.0,0.0,0.0,13749.5,0.0,0.0,1,7,0.0,3,0.0 -9483,14473,1362.7755223519703,61.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39980.0,0.0,0.0,37971.15,0.0,0.0,1,8,7.0,3,0.0 -9484,14475,2075.6183517203785,82.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13520.0,0.0,0.0,13269.25,0.0,0.0,5,0,0.0,1,0.0 -9485,14477,2329.6338257927546,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46030.0,0.0,0.0,42116.6,0.0,0.0,1,9,7.0,3,0.0 -9486,14480,1146.121658235806,72.0,112,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,64220.0,0.0,0.0,62817.35,0.0,0.0,1,3,0.0,3,1.0 -9487,14481,2644.836912184114,32.0,120,12190.0,85,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,13601.4,0.0,0.0,3,0,3.0,5,1.0 -9488,14483,1130.3516077603376,58.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25720.0,0.0,0.0,26820.35,0.0,0.0,1,9,2.0,1,0.0 -9489,14485,1491.774826401887,77.0,111,0.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,18270.0,0.0,0.0,22660.8,0.0,1520.0,1,6,5.0,3,1.0 -9490,14486,1432.1894097099334,49.0,112,0.0,21,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,47005.95,0.0,58260.0,3,4,0.0,4,1.0 -9491,14488,2971.4286601144054,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20200.0,0.0,0.0,19905.45,0.0,0.0,1,9,7.0,1,0.0 -9492,14489,1220.4574929152802,42.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40111.65,0.0,42710.0,3,6,4.0,3,2.0 -9493,14492,1230.9512052629461,45.0,111,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,9280.0,33.0,0.0,43125.75,0.0,32810.0,2,7,6.0,4,2.0 -9494,14494,2144.404936244185,44.0,111,0.0,34,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,231.0,0.0,47276.0,0.0,28980.0,3,10,8.0,2,1.0 -9495,14495,2234.280926213858,80.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18940.0,0.0,0.0,18940.0,0.0,0.0,5,3,4.0,1,0.0 -9496,14496,2647.7897519979697,74.0,300,0.0,78,0.0,0.0,2.0,1.5,7060.0,0.0,0.0,15020.0,0.0,0.0,21806.95,0.0,0.0,1,0,0.0,3,0.0 -9497,14500,4583.745716530249,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13340.0,0.0,0.0,13395.05,0.0,0.0,1,8,7.0,1,0.0 -9498,14501,2563.2888115201617,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30250.0,2.0,0.0,28765.95,0.0,0.0,1,8,7.0,3,0.0 -9499,14502,2766.2955578585124,72.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22170.0,397.0,0.0,21863.65,0.0,0.0,1,8,6.0,3,0.0 -9500,14503,3280.865209600026,43.0,111,4630.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33577.85,0.0,28580.0,2,10,8.0,4,2.0 -9501,14504,2969.8864044746965,37.0,211,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14476.65,0.0,15220.0,3,3,3.0,1,1.0 -9502,14505,2208.7797202375623,66.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5810.0,0.0,0.0,49909.2,0.0,48470.0,3,10,8.0,1,1.0 -9503,14506,1929.576876822902,70.0,400,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,22220.0,0.0,0.0,20860.0,0.0,110.0,1,0,0.0,3,1.0 -9504,14509,2226.5372135408106,53.0,300,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27022.8,0.0,25230.0,1,0,0.0,3,2.0 -9505,14510,1196.9764533975808,47.0,111,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43961.7,0.0,35820.0,2,9,7.0,4,2.0 -9506,14514,3029.623128943818,43.0,111,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,31022.85,0.0,30600.0,1,8,7.0,4,2.0 -9507,14515,3331.5561720903797,57.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40939.95,0.0,42070.0,3,9,7.0,2,1.0 -9508,14516,2335.9896755673453,50.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,150.0,0.0,3710.0,0.0,0.0,13069.7,1790.0,7600.0,1,0,0.0,1,1.0 -9509,14521,3445.47335292003,76.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10920.0,0.0,0.0,11170.2,0.0,0.0,1,0,0.0,1,0.0 -9510,14524,2312.971282986547,74.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18820.0,0.0,0.0,18512.9,0.0,0.0,1,0,0.0,1,0.0 -9511,14525,3451.4923559014865,53.0,111,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18340.9,0.0,18430.0,2,7,5.0,2,1.0 -9512,14526,2453.049592204189,56.0,111,1530.0,45,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33814.15,0.0,34910.0,2,10,8.0,2,2.0 -9513,14528,2178.6936898988447,50.0,111,0.0,54,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43019.15,0.0,41940.0,1,7,5.0,4,2.0 -9514,14529,2550.425594023389,33.0,300,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43164.85,0.0,41050.0,2,0,0.0,4,2.0 -9515,14530,2736.3759114850723,57.0,112,0.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49695.7,0.0,54910.0,2,10,2.0,4,1.0 -9516,14531,1379.849602371096,69.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13330.0,0.0,0.0,13644.8,0.0,0.0,1,0,0.0,1,0.0 -9517,14532,621.6086014916766,67.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15110.0,229.0,0.0,15041.7,0.0,0.0,5,0,0.0,3,0.0 -9518,14533,3677.3004067902543,22.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21467.6,0.0,19460.0,3,9,7.0,1,1.0 -9519,14535,3182.680726239387,64.0,112,7060.0,77,3,3.0,4.0,2.5,0.0,50.0,0.0,15420.0,0.0,0.0,49596.25,1320.0,24950.0,2,10,4.0,4,3.0 -9520,14537,3410.9801534786197,73.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26420.0,0.0,0.0,25004.05,0.0,0.0,1,0,3.0,1,0.0 -9521,14538,3725.98817050213,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2840.0,0.0,2840.0,5,10,8.0,1,0.0 -9522,14539,1890.6370955211676,54.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,451.0,0.0,87826.95,0.0,98590.0,2,10,0.0,3,2.0 -9523,14540,1405.9261253409513,58.0,111,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,61989.1,0.0,66100.0,1,8,7.0,4,3.0 -9524,14541,4352.193742420157,40.0,111,0.0,22,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,184018.3,0.0,0.0,2,9,7.0,4,1.0 -9525,14542,1430.0711230900718,56.0,111,15050.0,75,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40959.4,0.0,26400.0,1,8,7.0,4,2.0 -9526,14544,2879.2181696168896,30.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35541.95,0.0,35670.0,3,10,8.0,1,1.0 -9527,14545,4325.0276372910985,29.0,111,15520.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23973.55,0.0,10660.0,3,10,8.0,1,1.0 -9528,14546,4482.555373263192,30.0,111,0.0,63,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18900.95,0.0,19380.0,3,10,8.0,5,3.0 -9529,14550,2592.184760927726,56.0,300,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23718.95,0.0,15990.0,1,0,0.0,4,2.0 -9530,14551,1227.5340150583872,52.0,112,0.0,38,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64169.0,0.0,69930.0,2,10,4.0,4,3.0 -9531,14553,3805.949543727455,55.0,400,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,1120.0,0.0,0.0,1,0,0.0,4,0.0 -9532,14554,4241.52365715855,40.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22860.55,0.0,25040.0,2,9,7.0,1,1.0 -9533,14555,3440.966339868981,54.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18375.7,0.0,20460.0,2,9,7.0,1,1.0 -9534,14556,4719.997810323946,25.0,111,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43164.0,0.0,40430.0,3,10,8.0,4,2.0 -9535,14557,3265.410752387965,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50130.0,0.0,0.0,52692.2,0.0,0.0,1,10,8.0,3,0.0 -9536,14558,3794.6415848139977,44.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21427.95,0.0,23010.0,3,9,7.0,1,1.0 -9537,14559,2669.374823522427,57.0,111,27220.0,43,2.0,0.0,2.0,1.5,0.0,0.0,0.0,12230.0,75.0,0.0,45686.0,0.0,5680.0,3,4,3.0,3,2.0 -9538,14560,2998.2236610843324,88.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14770.0,0.0,0.0,14866.85,0.0,0.0,1,9,7.0,1,0.0 -9539,14562,1399.2502527471515,57.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16130.0,111.0,0.0,36671.25,0.0,24000.0,1,5,4.0,3,1.0 -9540,14563,2859.8583947728175,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50110.0,0.0,0.0,49833.85,0.0,0.0,1,10,8.0,3,0.0 -9541,14564,2478.5082383282534,48.0,111,23150.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,1342.0,0.0,32965.1,0.0,82160.0,1,10,8.0,4,2.0 -9542,14565,2727.3321852071117,69.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,1590.0,6660.0,0.0,0.0,8505.0,0.0,0.0,5,0,0.0,1,0.0 -9543,14566,935.8705245107802,53.0,111,7510.0,67,1.0,0.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,36877.8,0.0,11960.0,3,7,5.0,4,1.0 -9544,14567,2095.542054558506,49.0,400,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29264.15,0.0,24640.0,3,0,0.0,4,2.0 -9545,14568,2075.5632864535933,50.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49378.9,0.0,49260.0,1,7,0.0,3,2.0 -9546,14570,2362.5869250916585,55.0,112,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5330.0,0.0,0.0,12684.55,0.0,5830.0,1,6,0.0,1,1.0 -9547,14572,7259.335766178467,63.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43290.0,0.0,0.0,39945.55,0.0,0.0,1,9,1.0,3,0.0 -9548,14573,2565.05921506013,56.0,221,0.0,21,2.0,2.0,3.0,2.0,0.0,150.0,0.0,0.0,0.0,0.0,45381.45,1590.0,7720.0,1,1,2.0,4,2.0 -9549,14575,1896.9191183771827,75.0,112,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32030.0,122.0,0.0,54504.0,0.0,26380.0,1,6,0.0,3,1.0 -9550,14576,3538.5648906279516,57.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13100.0,0.0,0.0,36915.3,0.0,9350.0,1,9,7.0,3,1.0 -9551,14577,1546.0748424943226,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17340.0,0.0,0.0,18364.15,0.0,0.0,3,8,7.0,1,0.0 -9552,14578,2945.299147963879,62.0,112,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,13940.0,0.0,0.0,18468.0,0.0,4520.0,5,6,0.0,3,1.0 -9553,14581,3696.5236893176243,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13360.0,0.0,0.0,13612.0,0.0,0.0,3,8,7.0,1,0.0 -9554,14582,6443.471932518273,63.0,111,0.0,21,1.0,0.0,1.0,1.0,0.0,0.0,0.0,10180.0,0.0,0.0,11740.0,0.0,0.0,3,9,7.0,1,1.0 -9555,14583,1308.736621010999,34.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52414.15,0.0,44910.0,2,6,1.0,4,2.0 -9556,14584,3295.03380033195,50.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,5.0,0.0,33923.65,0.0,26900.0,3,8,7.0,2,1.0 -9557,14586,3002.4215936955056,35.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31385.15,0.0,33790.0,3,10,8.0,2,1.0 -9558,14587,2106.339482119152,48.0,111,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42681.6,0.0,45840.0,2,8,6.0,4,2.0 -9559,14590,4530.682110472109,55.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18683.6,0.0,18980.0,3,9,7.0,3,2.0 -9560,14592,1656.1431587005134,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26440.0,0.0,0.0,25526.55,0.0,0.0,1,7,5.0,3,0.0 -9561,14594,4008.9215413237966,57.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,7990.0,0.0,0.0,36649.1,0.0,33970.0,1,9,7.0,1,1.0 -9562,14595,3359.5909053444148,46.0,300,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19801.35,0.0,0.0,1,0,0.0,1,1.0 -9563,14596,3004.249576593028,48.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16491.7,0.0,16900.0,1,0,0.0,1,1.0 -9564,14597,3267.72154811241,49.0,111,0.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33816.85,0.0,37250.0,3,9,7.0,2,2.0 -9565,14600,3450.936129824884,29.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34805.2,0.0,31460.0,3,9,7.0,4,2.0 -9566,14601,2766.058836556925,79.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,140.0,13940.0,0.0,0.0,14054.7,0.0,0.0,1,0,0.0,3,0.0 -9567,14603,3324.4255664820157,39.0,112,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6468.3,0.0,0.0,1,8,0.0,1,1.0 -9568,14604,1969.0577672364689,62.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64280.0,523.0,0.0,62570.95,0.0,1620.0,1,7,5.0,3,0.0 -9569,14608,4372.844704050132,50.0,112,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49046.55,0.0,51740.0,1,8,0.0,3,2.0 -9570,14609,2249.3229666539432,31.0,300,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,166094.65,0.0,125790.0,2,0,0.0,3,2.0 -9571,14610,2948.6755138417125,60.0,111,0.0,72,0.0,0.0,1.0,1.0,1350.0,0.0,0.0,7470.0,0.0,0.0,9746.55,0.0,0.0,1,6,4.0,1,0.0 -9572,14611,2637.0214339185472,30.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,3.0,0.0,40553.15,0.0,36440.0,3,10,8.0,4,2.0 -9573,14612,2106.7039258303794,35.0,221,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28218.2,0.0,29500.0,3,1,2.0,5,2.0 -9574,14613,1162.6031011098582,55.0,300,0.0,69,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5670.0,0.0,0.0,27853.3,0.0,11750.0,1,0,1.0,3,1.0 -9575,14614,3749.4788180587593,40.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34704.2,0.0,36940.0,3,10,8.0,3,2.0 -9576,14615,1921.758246357806,34.0,400,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30677.05,0.0,28790.0,2,0,0.0,4,2.0 -9577,14617,1723.9584399754465,59.0,300,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,14.0,0.0,35957.4,0.0,39350.0,2,0,0.0,1,1.0 -9578,14619,2321.2468413884044,78.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11090.0,0.0,0.0,11811.95,0.0,0.0,1,0,0.0,1,0.0 -9579,14620,1083.9773107519063,56.0,112,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32740.35,0.0,33680.0,1,9,2.0,4,2.0 -9580,14621,2939.0296617035124,33.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14216.45,0.0,14910.0,3,8,7.0,1,1.0 -9581,14622,1501.0352655083232,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56730.0,0.0,0.0,51441.2,0.0,0.0,1,8,0.0,3,0.0 -9582,14623,3023.669276217628,69.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15910.0,0.0,0.0,15910.0,0.0,0.0,3,0,1.0,3,0.0 -9583,14624,1138.8507690981116,58.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18636.7,0.0,18820.0,3,7,5.0,1,1.0 -9584,14625,2556.218786490228,34.0,221,1140.0,65,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,31145.55,0.0,19010.0,3,1,1.0,4,1.0 -9585,14626,1130.1408168714597,46.0,120,0.0,42,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,75.0,0.0,33318.15,0.0,22960.0,3,0,0.0,4,2.0 -9586,14627,3413.5835010325095,24.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19909.0,0.0,21360.0,3,10,8.0,1,1.0 -9587,14628,1507.2458284291242,50.0,300,1870.0,68,1.0,0.0,4.0,2.5,0.0,0.0,0.0,12540.0,0.0,0.0,21609.0,0.0,6290.0,3,0,0.0,4,1.0 -9588,14630,1672.9703373688797,41.0,111,0.0,22,1.0,1.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,21815.15,0.0,6560.0,3,9,7.0,4,1.0 -9589,14631,1506.767499824534,54.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42523.45,0.0,46360.0,1,6,4.0,3,2.0 -9590,14632,3374.6809048154723,45.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21950.9,0.0,13860.0,3,10,8.0,2,1.0 -9591,14635,2358.9611422297435,53.0,112,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,292.0,0.0,31170.05,0.0,31190.0,1,7,4.0,3,2.0 -9592,14637,1892.9546720227797,57.0,300,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18235.1,0.0,19670.0,3,0,0.0,1,1.0 -9593,14639,3292.898977893401,90.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24250.0,0.0,0.0,23231.65,0.0,0.0,3,9,3.0,1,0.0 -9594,14640,2067.2176728092745,44.0,211,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,4.0,0.0,79969.35,0.0,83780.0,2,1,2.0,3,2.0 -9595,14642,3650.712174477267,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11070.0,0.0,0.0,11100.5,0.0,0.0,3,10,8.0,1,0.0 -9596,14644,3969.9056430851947,60.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17510.0,0.0,0.0,20093.05,0.0,5420.0,1,9,3.0,3,1.0 -9597,14645,1969.919484693902,49.0,111,12090.0,37,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,65510.2,0.0,47740.0,2,10,8.0,4,2.0 -9598,14647,2390.861905744272,73.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18200.0,0.0,0.0,18343.8,0.0,0.0,1,8,0.0,3,0.0 -9599,14649,3475.8952108041526,25.0,111,0.0,85,0.0,0.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,13486.0,0.0,0.0,3,9,7.0,1,0.0 -9600,14652,4035.6284699839844,32.0,111,960.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12480.0,0.0,0.0,29066.55,0.0,17080.0,1,9,7.0,2,1.0 -9601,14654,2369.694730957805,51.0,111,0.0,54,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50133.85,0.0,52400.0,3,10,8.0,2,3.0 -9602,14655,2202.337239996199,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25890.0,0.0,0.0,25199.9,0.0,0.0,1,6,4.0,3,0.0 -9603,14657,1724.6578709577605,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46920.0,45.0,0.0,43329.35,0.0,0.0,1,10,8.0,3,0.0 -9604,14658,2642.727551202266,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,46060.0,0.0,0.0,38789.8,0.0,0.0,3,10,8.0,1,0.0 -9605,14660,3034.893551448958,24.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18870.0,0.0,18430.0,3,4,4.0,1,1.0 -9606,14663,1335.896292634875,52.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,13850.0,0.0,0.0,41999.75,0.0,29660.0,1,10,8.0,4,1.0 -9607,14664,1753.5138639290715,44.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16587.95,0.0,14630.0,3,0,0.0,1,1.0 -9608,14665,1273.9954489427762,57.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34250.0,93.0,0.0,34390.8,0.0,2760.0,2,8,7.0,3,0.0 -9609,14666,2922.670336564258,28.0,111,3870.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38063.85,0.0,36080.0,3,4,4.0,3,2.0 -9610,14667,1901.6993626916121,44.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22469.2,0.0,23220.0,2,8,7.0,2,1.0 -9611,14669,1819.9800429803256,61.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15420.0,1524.0,0.0,88337.4,0.0,52040.0,1,10,8.0,3,1.0 -9612,14670,1793.302724273251,60.0,300,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21760.0,0.0,0.0,51048.05,0.0,0.0,1,0,0.0,3,1.0 -9613,14671,4828.296231165403,83.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13880.0,0.0,0.0,14836.0,0.0,0.0,3,5,0.0,1,0.0 -9614,14672,1036.5745407031065,66.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,44810.0,0.0,0.0,49864.45,0.0,0.0,1,7,1.0,3,1.0 -9615,14673,2479.0214674243384,52.0,111,0.0,67,3,3.0,3.0,2.0,0.0,410.0,0.0,0.0,0.0,0.0,42080.15,2190.0,40080.0,3,6,5.0,2,3.0 -9616,14674,1613.6702696920547,42.0,111,0.0,13,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,100.0,0.0,27723.4,0.0,0.0,1,8,7.0,4,2.0 -9617,14675,4245.451951452447,25.0,111,1560.0,55,1.0,1.0,3.0,2.0,0.0,0.0,5120.0,5890.0,0.0,0.0,20785.0,0.0,5380.0,3,9,7.0,4,1.0 -9618,14677,5448.647855702244,35.0,400,5570.0,85,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30772.2,0.0,26650.0,3,0,0.0,3,1.0 -9619,14679,1754.231351666464,45.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,9290.0,0.0,0.0,60999.55,0.0,52870.0,3,7,0.0,4,2.0 -9620,14680,2275.673442109283,24.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,30.0,0.0,135910.4,0.0,22350.0,2,9,7.0,3,2.0 -9621,14682,2996.6650250950697,27.0,111,0.0,81,1.0,0.0,1.0,1.0,10010.0,0.0,0.0,0.0,0.0,0.0,10023.0,0.0,0.0,5,7,6.0,1,1.0 -9622,14684,2446.7992864756875,40.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,14570.85,450.0,14060.0,4,9,7.0,1,1.0 -9623,14685,2406.7771401861173,47.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22267.65,0.0,24100.0,3,7,6.0,1,1.0 -9624,14686,3018.5110293431985,62.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29720.0,0.0,0.0,19462.9,0.0,0.0,5,10,1.0,1,0.0 -9625,14687,3951.738095965081,86.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12240.0,0.0,0.0,21853.9,0.0,0.0,5,9,7.0,1,0.0 -9626,14688,4066.009676452394,32.0,111,2330.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,797.0,0.0,22667.3,0.0,28350.0,5,10,8.0,1,1.0 -9627,14691,2430.586729533179,45.0,112,7950.0,21,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39906.4,0.0,30550.0,1,9,0.0,4,3.0 -9628,14692,1503.466595064974,41.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51666.7,0.0,54210.0,2,9,7.0,4,2.0 -9629,14694,4254.564982649287,42.0,112,6170.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,48.0,0.0,41817.75,0.0,34920.0,2,7,0.0,4,2.0 -9630,14695,2282.7121858852265,40.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41844.9,0.0,44460.0,1,10,8.0,3,2.0 -9631,14697,2170.139980716441,34.0,111,300.0,67,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25297.0,0.0,22840.0,3,7,5.0,4,2.0 -9632,14699,2213.2544093139913,51.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,72218.5,0.0,72460.0,1,10,0.0,4,2.0 -9633,14700,1550.8522104974372,44.0,111,0.0,37,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,13.0,0.0,124211.05,0.0,157430.0,2,9,7.0,4,2.0 -9634,14701,5955.47988087677,90.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20680.0,0.0,0.0,20304.15,0.0,0.0,5,7,5.0,1,0.0 -9635,14703,3567.901549237391,48.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23646.5,0.0,24730.0,2,7,0.0,4,2.0 -9636,14704,1940.2319815441276,50.0,111,0.0,85,1.0,1.0,4.0,2.5,8160.0,0.0,0.0,33020.0,0.0,0.0,51457.65,0.0,10630.0,2,8,6.0,5,1.0 -9637,14705,1252.6915727608296,67.0,300,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,92704.75,0.0,110990.0,2,0,0.0,4,2.0 -9638,14706,863.5384799277784,69.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,20850.0,0.0,0.0,23813.5,0.0,4810.0,1,6,5.0,4,1.0 -9639,14707,3154.383646300548,28.0,111,1200.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30644.25,0.0,30850.0,3,10,8.0,3,2.0 -9640,14708,1031.5431087250377,83.0,212,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14980.0,0.0,0.0,14980.0,0.0,0.0,5,2,0.0,3,0.0 -9641,14711,2283.5718637767536,62.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,4390.0,7830.0,0.0,0.0,0.0,12061.6,0.0,0.0,1,0,0.0,1,0.0 -9642,14712,2317.9669498075023,59.0,112,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45219.05,0.0,49460.0,1,9,1.0,3,2.0 -9643,14713,864.1337699769119,48.0,111,0.0,54,3,3.0,3.0,2.0,0.0,0.0,0.0,12880.0,0.0,0.0,66404.65,0.0,58490.0,3,6,5.0,4,3.0 -9644,14715,1199.8753438265985,46.0,112,0.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,30.0,0.0,56993.85,0.0,55730.0,2,7,0.0,4,3.0 -9645,14717,3205.775226659826,46.0,112,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,388.0,0.0,41380.75,0.0,10360.0,1,4,0.0,4,2.0 -9646,14718,3007.543489863779,27.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,6.0,0.0,33224.8,0.0,32620.0,2,8,0.0,3,2.0 -9647,14719,2386.758638563227,48.0,111,11900.0,56,1.0,0.0,3.0,1.8,8750.0,0.0,0.0,0.0,0.0,0.0,33665.0,0.0,200.0,3,6,4.0,2,1.0 -9648,14720,2252.307481914792,28.0,221,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36206.0,0.0,33190.0,3,1,3.0,4,2.0 -9649,14721,3167.575778194258,73.0,111,8480.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,18670.0,0.0,0.0,25965.9,0.0,0.0,3,8,6.0,5,1.0 -9650,14723,3723.5340698997643,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5974.4,0.0,0.0,3,9,7.0,1,0.0 -9651,14726,2936.790749472032,85.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,270.0,8140.0,0.0,0.0,8243.1,0.0,0.0,3,9,7.0,1,0.0 -9652,14727,2054.969750871526,93.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15180.0,0.0,0.0,22074.55,0.0,0.0,1,0,0.0,3,0.0 -9653,14729,1253.4465161150633,42.0,111,260.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,55849.75,0.0,53480.0,1,7,5.0,4,2.0 -9654,14731,2605.3951072652458,36.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,640.0,0.0,0.0,20983.3,0.0,18650.0,2,9,7.0,2,1.0 -9655,14732,1988.7718499945959,61.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48550.0,0.0,0.0,52676.95,0.0,0.0,1,9,0.0,3,0.0 -9656,14733,2814.069931716118,81.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,53860.0,67.0,0.0,59396.25,0.0,0.0,1,9,7.0,1,0.0 -9657,14734,3433.404176274506,91.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22600.0,0.0,0.0,22600.0,0.0,0.0,5,6,0.0,3,0.0 -9658,14735,1771.5268811543247,52.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,93561.6,0.0,113900.0,2,8,6.0,3,2.0 -9659,14736,1590.6416337458063,45.0,111,0.0,33,2.0,2.0,5.0,2.6,0.0,0.0,0.0,13970.0,0.0,0.0,84195.85,0.0,70950.0,2,9,7.0,4,2.0 -9660,14737,2142.76988348329,38.0,111,21830.0,37,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41830.35,0.0,22350.0,2,8,6.0,4,2.0 -9661,14740,3734.1183746294973,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12340.0,0.0,0.0,12940.0,0.0,0.0,3,9,7.0,1,0.0 -9662,14741,3468.066570344747,62.0,111,4020.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19470.0,0.0,0.0,23490.0,0.0,0.0,3,7,6.0,3,0.0 -9663,14742,5023.663390158317,24.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,270.0,0.0,0.0,0.0,0.0,24667.05,1680.0,22740.0,3,10,8.0,4,2.0 -9664,14743,2591.411248552718,62.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,31550.0,7.0,0.0,54551.35,0.0,28760.0,1,9,7.0,4,1.0 -9665,14744,2925.14016819609,76.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,10090.0,0.0,17780.0,0.0,0.0,27629.7,0.0,0.0,3,9,7.0,5,1.0 -9666,14745,3702.313271471846,32.0,111,0.0,37,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,58153.7,0.0,46530.0,2,9,7.0,4,1.0 -9667,14749,2624.3068352677824,41.0,400,1210.0,69,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,18840.0,0.0,12500.0,3,0,0.0,4,2.0 -9668,14750,1345.7705559550102,47.0,111,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,44769.75,0.0,42540.0,1,6,5.0,4,2.0 -9669,14752,1920.3900229221704,56.0,112,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3950.0,0.0,0.0,21376.85,0.0,17850.0,5,7,4.0,1,1.0 -9670,14753,3436.2842660155857,22.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3321.0,0.0,0.0,3,9,7.0,1,1.0 -9671,14754,1614.5150742485187,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25450.0,209.0,0.0,24992.6,0.0,0.0,1,6,5.0,1,0.0 -9672,14758,2319.7878592488933,23.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15333.0,0.0,15560.0,3,7,1.0,1,1.0 -9673,14761,1537.1355510698017,44.0,111,0.0,37,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,117922.55,0.0,135170.0,2,10,8.0,4,2.0 -9674,14762,1819.7792830369965,55.0,120,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,18400.0,0.0,0.0,37416.4,0.0,25310.0,2,0,0.0,1,1.0 -9675,14764,1523.1407365425985,34.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,216.0,0.0,68193.45,0.0,72550.0,2,9,7.0,3,2.0 -9676,14765,1591.9859014402332,67.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16490.0,15.0,0.0,18247.2,0.0,0.0,1,0,0.0,3,0.0 -9677,14766,2188.4618285386596,33.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34987.8,0.0,37230.0,2,9,1.0,3,2.0 -9678,14767,3099.333268056602,46.0,112,0.0,55,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,24.0,0.0,46950.7,0.0,28400.0,1,10,4.0,4,2.0 -9679,14768,2518.554035492595,53.0,111,0.0,63,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50265.0,0.0,52800.0,3,10,8.0,4,3.0 -9680,14770,2253.17213309278,53.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20654.1,0.0,21890.0,3,7,0.0,1,1.0 -9681,14771,1641.632472938618,60.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32930.0,0.0,0.0,30234.05,0.0,270.0,1,7,6.0,3,0.0 -9682,14773,2938.530649675622,27.0,221,0.0,68,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21319.0,0.0,19270.0,3,1,2.0,4,2.0 -9683,14774,2392.0214649930044,44.0,112,8830.0,37,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,46.0,0.0,48570.0,0.0,43420.0,2,9,0.0,4,2.0 -9684,14775,1563.8519138003928,62.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32830.0,210.0,0.0,31414.15,0.0,390.0,1,4,0.0,3,0.0 -9685,14776,3407.634456621304,31.0,111,2720.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15920.3,390.0,12830.0,3,8,7.0,1,1.0 -9686,14780,1284.6800558809996,36.0,111,0.0,56,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,16762.0,0.0,0.0,3,9,7.0,2,1.0 -9687,14781,2047.1302618272023,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17750.0,0.0,0.0,18702.45,0.0,0.0,3,7,6.0,1,0.0 -9688,14783,1717.771894959624,35.0,120,0.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,9.0,0.0,55700.15,0.0,54710.0,2,0,0.0,4,1.0 -9689,14784,2116.2349651593377,35.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,112.0,0.0,24637.4,0.0,24950.0,3,7,5.0,1,1.0 -9690,14787,2040.0526836733852,44.0,120,4110.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52105.45,0.0,44270.0,2,0,0.0,3,2.0 -9691,14791,3532.6461799216872,55.0,112,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,6220.0,0.0,0.0,24769.45,0.0,18880.0,1,8,0.0,2,2.0 -9692,14792,1696.8027835035846,51.0,111,0.0,43,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,22402.9,0.0,0.0,3,9,7.0,4,1.0 -9693,14794,2619.709031641508,59.0,111,13210.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13843.75,0.0,0.0,3,8,6.0,1,0.0 -9694,14795,2660.257238128121,39.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,46.0,0.0,108576.7,0.0,133750.0,2,9,7.0,4,2.0 -9695,14797,3202.7171315766304,61.0,112,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,185.0,0.0,79922.75,0.0,0.0,1,7,0.0,3,1.0 -9696,14798,1747.0375548104214,56.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43302.65,0.0,42400.0,1,6,0.0,3,2.0 -9697,14799,3241.704987919705,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12090.0,0.0,0.0,18090.0,0.0,0.0,3,10,8.0,1,0.0 -9698,14801,4557.932315176857,24.0,111,0.0,63,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,15634.0,0.0,11680.0,3,10,8.0,4,1.0 -9699,14803,2719.5272762204754,57.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17748.6,0.0,18070.0,5,9,7.0,1,1.0 -9700,14804,3915.1754113712977,43.0,111,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,26212.4,0.0,21460.0,2,9,7.0,2,1.0 -9701,14805,6076.852009391861,36.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,104115.75,0.0,104290.0,1,8,6.0,1,1.0 -9702,14806,3661.1294574015606,43.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,82194.85,0.0,109950.0,3,10,8.0,3,2.0 -9703,14807,2464.7316462335734,61.0,112,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22450.0,179.0,0.0,38044.5,0.0,14640.0,1,9,0.0,3,1.0 -9704,14808,1382.6703555875608,51.0,111,0.0,43,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,70598.0,101881.55,0.0,29300.0,1,6,4.0,4,3.0 -9705,14809,2769.472924047109,58.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18280.0,52.0,0.0,18764.6,0.0,0.0,3,9,3.0,1,0.0 -9706,14811,2081.8450129348626,73.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36420.0,95.0,0.0,36836.35,0.0,0.0,1,10,8.0,3,0.0 -9707,14813,2822.800403916006,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20980.0,0.0,0.0,20895.0,0.0,50.0,1,9,7.0,3,0.0 -9708,14814,2346.0655694984903,41.0,111,0.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,24390.7,0.0,23960.0,1,8,7.0,4,2.0 -9709,14815,3121.421129306902,24.0,111,0.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24367.5,0.0,25480.0,3,8,7.0,3,2.0 -9710,14816,2417.137694118201,43.0,111,4740.0,56,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24718.65,0.0,16740.0,3,7,6.0,4,2.0 -9711,14818,3858.409422646402,33.0,112,0.0,53,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26435.95,0.0,23430.0,3,8,0.0,4,1.0 -9712,14819,2481.2167030912547,43.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31540.65,0.0,33190.0,2,7,5.0,4,2.0 -9713,14821,2164.642961267424,59.0,111,0.0,33,1.0,1.0,5.0,3.0,0.0,0.0,0.0,11910.0,159.0,0.0,75053.3,0.0,65390.0,1,7,5.0,4,1.0 -9714,14826,2606.117838620435,63.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30740.0,0.0,0.0,30159.0,0.0,0.0,1,8,6.0,1,0.0 -9715,14827,1295.993068555922,52.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16776.4,0.0,17150.0,3,7,5.0,1,1.0 -9716,14828,1679.8235927885019,87.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19530.0,0.0,0.0,19298.55,0.0,0.0,3,5,4.0,3,0.0 -9717,14829,2373.934081399704,37.0,111,1870.0,56,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28773.3,0.0,25830.0,3,6,4.0,4,2.0 -9718,14831,1998.6511869284316,51.0,111,4250.0,67,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38148.5,0.0,36320.0,1,6,5.0,4,3.0 -9719,14832,2760.430431019313,25.0,111,8000.0,63,1.0,0.0,5.0,2.4,0.0,670.0,0.0,0.0,0.0,0.0,25831.0,1480.0,5310.0,3,8,7.0,4,1.0 -9720,14833,1498.6437022540977,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19480.0,0.0,0.0,18405.0,0.0,0.0,1,7,6.0,1,0.0 -9721,14834,2507.975373423845,42.0,120,2940.0,69,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14531.9,0.0,10700.0,3,0,2.0,1,1.0 -9722,14837,4789.134835453396,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25550.0,0.0,0.0,25707.3,0.0,840.0,1,6,4.0,1,0.0 -9723,14838,3010.7521507789133,51.0,112,0.0,23,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,119.0,930.0,77193.75,0.0,86680.0,1,7,4.0,3,2.0 -9724,14839,2259.8657150664512,31.0,111,940.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35527.85,0.0,30000.0,3,10,8.0,4,2.0 -9725,14841,1523.8692669470988,55.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48701.05,0.0,46930.0,1,7,6.0,3,2.0 -9726,14842,1840.0575408050872,44.0,400,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58824.05,0.0,61140.0,2,0,0.0,4,2.0 -9727,14844,2989.7560358906926,35.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27398.9,0.0,28700.0,3,10,8.0,1,1.0 -9728,14848,2359.8320530391443,43.0,111,0.0,37,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,927.0,0.0,65303.85,0.0,98940.0,1,10,8.0,4,3.0 -9729,14849,2248.433896132066,59.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30880.0,0.0,0.0,61874.1,0.0,26670.0,2,8,0.0,3,1.0 -9730,14852,1594.2501541390147,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49830.0,35.0,0.0,46852.7,0.0,0.0,1,9,7.0,3,0.0 -9731,14853,3368.263090249974,40.0,111,4480.0,22,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,21580.7,0.0,5210.0,3,9,7.0,4,2.0 -9732,14854,2183.745155654,48.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27906.2,0.0,18150.0,1,9,1.0,3,2.0 -9733,14855,1637.4154141379247,44.0,111,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,15737.3,0.0,7940.0,1,6,4.0,4,2.0 -9734,14856,3045.44782376385,47.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31349.05,0.0,33420.0,2,10,8.0,3,2.0 -9735,14857,3775.1642400653877,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11450.0,0.0,0.0,12434.0,0.0,0.0,3,8,6.0,1,0.0 -9736,14859,1789.136616790752,35.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,422.0,0.0,61523.35,0.0,62990.0,3,9,7.0,4,2.0 -9737,14863,1878.7257364135858,71.0,212,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33090.0,0.0,0.0,32055.25,0.0,0.0,1,1,0.0,3,0.0 -9738,14864,3491.084792030304,82.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16260.0,11.0,0.0,38136.35,0.0,11510.0,1,9,7.0,2,1.0 -9739,14866,3582.001524112882,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2180.0,6750.0,0.0,0.0,8998.0,0.0,0.0,3,8,6.0,1,0.0 -9740,14868,3377.4887192591086,45.0,111,0.0,46,1.0,1.0,2.0,1.5,15010.0,0.0,0.0,5590.0,0.0,0.0,31256.0,0.0,6950.0,3,8,6.0,3,1.0 -9741,14870,2304.811219382247,90.0,221,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29740.0,0.0,0.0,29004.75,0.0,0.0,1,1,3.0,3,0.0 -9742,14871,2619.996765726117,62.0,111,0.0,86,0.0,0.0,2.0,1.5,3000.0,0.0,0.0,16640.0,0.0,0.0,23000.0,0.0,0.0,3,7,5.0,3,0.0 -9743,14872,1664.635483812928,75.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37390.0,0.0,0.0,35182.5,0.0,0.0,1,0,1.0,1,0.0 -9744,14875,1362.791333973759,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37420.0,0.0,0.0,34769.05,0.0,0.0,1,8,6.0,3,0.0 -9745,14876,1213.9176904384435,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39550.0,106.0,0.0,35819.6,0.0,0.0,1,8,6.0,3,0.0 -9746,14878,2499.21569171711,41.0,111,11440.0,42,3,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,51536.2,0.0,28030.0,3,6,4.0,4,4.0 -9747,14879,1973.9999025184422,55.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51661.05,0.0,56090.0,3,6,4.0,3,2.0 -9748,14880,2610.1410207327845,26.0,111,0.0,42,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8245.0,0.0,3300.0,3,9,7.0,1,1.0 -9749,14881,2100.6264303828953,56.0,111,24660.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,333.0,0.0,47989.05,0.0,29140.0,1,10,8.0,3,2.0 -9750,14882,3403.474423663689,34.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,248.0,0.0,29534.85,0.0,30140.0,3,9,7.0,1,1.0 -9751,14883,1125.4674903441824,36.0,112,0.0,42,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,59833.9,0.0,54090.0,2,10,0.0,4,2.0 -9752,14885,1396.6717011592282,43.0,111,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31303.35,0.0,29150.0,1,7,6.0,2,1.0 -9753,14886,5678.921270176356,60.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,240.0,0.0,7010.0,0.0,0.0,10094.3,0.0,0.0,3,7,5.0,1,0.0 -9754,14887,3435.418924806822,74.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17020.0,0.0,0.0,16793.8,0.0,0.0,1,8,0.0,1,0.0 -9755,14889,1608.8816729972707,59.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57613.4,0.0,61360.0,2,10,2.0,4,2.0 -9756,14892,1423.3864742803617,49.0,300,0.0,63,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34085.6,0.0,32180.0,1,0,0.0,4,3.0 -9757,14893,2522.920842332218,59.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8540.0,0.0,0.0,24359.9,0.0,17010.0,3,9,7.0,1,1.0 -9758,14894,2710.8521529740624,27.0,111,8640.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25688.0,0.0,15780.0,3,8,6.0,3,2.0 -9759,14895,4644.884552202633,58.0,221,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,51.0,0.0,19084.4,0.0,20260.0,3,1,2.0,1,1.0 -9760,14898,3113.320651388561,40.0,112,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64508.05,0.0,67570.0,2,9,3.0,4,2.0 -9761,14901,3499.3693189867427,72.0,400,0.0,77,1.0,0.0,3.0,2.0,1490.0,2470.0,0.0,19580.0,0.0,0.0,27980.0,420.0,3860.0,3,0,1.0,4,1.0 -9762,14902,3611.7358126625436,81.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15570.0,0.0,0.0,31065.9,0.0,0.0,1,4,3.0,3,0.0 -9763,14904,1533.3887070412227,48.0,111,0.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44128.35,0.0,38320.0,1,9,7.0,4,2.0 -9764,14905,1223.4006336649838,65.0,112,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,30170.0,17.0,0.0,32099.65,0.0,3360.0,1,8,0.0,3,1.0 -9765,14906,2489.6523303863023,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,74810.0,0.0,0.0,64201.4,0.0,0.0,1,9,7.0,3,0.0 -9766,14908,2549.9848311153964,43.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,23.0,0.0,16465.2,0.0,10440.0,1,8,7.0,1,1.0 -9767,14909,1512.9052902678816,43.0,111,0.0,38,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,38326.7,0.0,31020.0,2,8,7.0,4,1.0 -9768,14911,2411.8203223816554,31.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22400.0,0.0,23510.0,5,10,8.0,1,1.0 -9769,14912,2099.6374603524137,43.0,111,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,28.0,0.0,27103.6,0.0,23040.0,1,6,5.0,4,2.0 -9770,14913,3099.4335991329904,58.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8290.0,0.0,0.0,8926.0,0.0,0.0,1,7,0.0,1,0.0 -9771,14916,2306.825841829541,53.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24135.75,0.0,26650.0,3,8,7.0,1,1.0 -9772,14917,3179.0059972178638,56.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53478.95,0.0,57900.0,2,10,8.0,2,1.0 -9773,14918,2416.8431324186326,46.0,111,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,68933.45,0.0,71920.0,1,10,8.0,4,2.0 -9774,14921,1624.6622620329188,32.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,61809.8,0.0,59390.0,1,10,8.0,4,2.0 -9775,14922,2838.284154359604,41.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39629.0,0.0,23040.0,2,8,7.0,4,2.0 -9776,14923,3631.176922309114,55.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23813.4,0.0,27190.0,2,9,7.0,1,1.0 -9777,14926,2920.232348028431,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12420.0,0.0,0.0,12200.05,0.0,0.0,1,8,0.0,1,0.0 -9778,14927,3070.1538357665495,90.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8990.0,0.0,0.0,8632.5,0.0,0.0,1,6,5.0,1,0.0 -9779,14928,2712.3167913786306,83.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39460.0,0.0,0.0,35401.65,0.0,0.0,1,7,6.0,3,0.0 -9780,14929,2098.3347787426756,82.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20970.0,0.0,0.0,19800.2,0.0,0.0,1,7,6.0,3,0.0 -9781,14930,2405.590086172648,57.0,111,0.0,62,1.0,0.0,3.0,2.0,0.0,5090.0,0.0,0.0,0.0,0.0,13714.0,0.0,4400.0,3,10,8.0,5,1.0 -9782,14933,1315.0680773655342,35.0,111,0.0,68,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32036.0,0.0,20440.0,5,6,5.0,4,1.0 -9783,14934,2250.7186619267623,56.0,120,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,69761.95,0.0,80310.0,2,0,3.0,4,2.0 -9784,14935,3687.8663965844007,42.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30172.1,0.0,30590.0,3,1,2.0,4,2.0 -9785,14937,2726.368253384306,49.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,735.0,0.0,63149.5,0.0,77720.0,1,10,8.0,1,1.0 -9786,14938,1971.2133438857866,49.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,20.0,0.0,26210.25,0.0,19150.0,3,4,4.0,4,2.0 -9787,14939,3679.4331849180476,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,3320.0,2670.0,0.0,0.0,5990.0,0.0,0.0,3,9,7.0,3,0.0 -9788,14942,1517.2003379508367,61.0,221,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12220.0,0.0,0.0,72635.8,0.0,11550.0,1,1,3.0,3,1.0 -9789,14943,1787.759307504056,49.0,111,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,111.0,0.0,36283.0,0.0,36340.0,2,9,7.0,4,2.0 -9790,14944,2435.088151962698,44.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,9770.0,0.0,0.0,51809.8,0.0,36700.0,2,8,0.0,4,2.0 -9791,14946,1027.2194793065983,49.0,111,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54973.1,0.0,25810.0,2,6,5.0,4,2.0 -9792,14947,2312.5335865812735,74.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16500.0,0.0,0.0,15609.35,0.0,0.0,1,8,0.0,1,0.0 -9793,14948,1858.624901606732,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12280.0,0.0,0.0,13085.0,0.0,0.0,3,8,7.0,1,0.0 -9794,14949,2093.8142184859917,40.0,111,300.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45478.2,0.0,37190.0,2,9,7.0,3,2.0 -9795,14950,1002.9580037765018,47.0,400,0.0,56,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,17939.55,0.0,18120.0,1,0,1.0,4,2.0 -9796,14953,5412.169595769078,36.0,112,6600.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,14030.3,0.0,810.0,3,9,3.0,2,1.0 -9797,14954,2869.6234256731486,42.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,12599.1,0.0,13120.0,2,10,8.0,4,2.0 -9798,14955,2453.823201148838,80.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8900.0,0.0,0.0,8900.0,0.0,0.0,1,0,0.0,1,0.0 -9799,14956,3957.499050960419,77.0,221,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16300.0,0.0,0.0,15873.8,0.0,0.0,1,1,1.0,1,0.0 -9800,14958,2960.6081546407763,44.0,120,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30897.85,0.0,0.0,1,0,0.0,1,1.0 -9801,14959,2285.6002633029198,49.0,111,0.0,68,2.0,2.0,2.0,1.5,3630.0,0.0,0.0,0.0,0.0,0.0,22160.0,0.0,15830.0,3,6,5.0,3,2.0 -9802,14961,2297.8819954873343,46.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,148.0,0.0,8193.9,0.0,8700.0,2,10,8.0,1,1.0 -9803,14962,2520.205268097841,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23490.0,0.0,0.0,23090.45,0.0,0.0,1,6,5.0,1,0.0 -9804,14963,846.3527183028312,55.0,300,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52185.95,0.0,51720.0,1,0,1.0,4,2.0 -9805,14964,3316.27160405872,29.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39995.45,0.0,42490.0,3,9,1.0,3,2.0 -9806,14967,2007.7348802655165,51.0,221,0.0,52,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,19392.0,0.0,20960.0,1,1,3.0,4,2.0 -9807,14969,1461.1210010431626,53.0,111,17430.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38671.55,0.0,21430.0,1,9,7.0,3,2.0 -9808,14971,1617.3557981610152,42.0,300,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50454.7,0.0,49740.0,1,0,0.0,4,2.0 -9809,14972,1225.5200519370794,66.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67060.0,3.0,0.0,66720.1,0.0,560.0,1,8,0.0,3,0.0 -9810,14978,1475.484826360855,71.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20510.0,0.0,0.0,20176.55,0.0,0.0,1,0,0.0,5,0.0 -9811,14979,2153.259428491899,34.0,111,0.0,45,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,36101.95,0.0,29930.0,3,10,8.0,4,1.0 -9812,14980,4503.599556952556,52.0,400,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13670.0,167.0,0.0,61796.7,0.0,32050.0,1,0,0.0,3,1.0 -9813,14981,3433.0733757555013,62.0,112,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,33560.0,0.0,0.0,38026.4,0.0,6950.0,2,8,0.0,3,1.0 -9814,14983,1436.3565983232468,43.0,300,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39444.95,0.0,41750.0,3,0,0.0,3,2.0 -9815,14984,2684.641728473634,38.0,112,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,25.0,0.0,63928.95,0.0,64350.0,2,7,0.0,4,2.0 -9816,14985,1278.1920376210592,54.0,111,0.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,46146.15,0.0,44090.0,2,8,6.0,4,2.0 -9817,14986,2378.766937910816,55.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10640.0,0.0,0.0,50710.25,0.0,47450.0,2,6,5.0,3,1.0 -9818,14987,2873.157176291492,76.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13340.0,0.0,0.0,13727.0,0.0,0.0,3,8,7.0,1,0.0 -9819,14988,2976.703269258578,87.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31310.0,6.0,0.0,32066.1,0.0,0.0,5,0,0.0,1,0.0 -9820,14989,2602.2061198585648,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54010.0,131.0,0.0,64603.9,0.0,12220.0,1,10,8.0,3,0.0 -9821,14990,1389.4939884375683,39.0,111,860.0,62,2.0,2.0,7.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,42956.0,0.0,17190.0,2,9,7.0,4,2.0 -9822,14991,1773.591502001578,46.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17065.4,0.0,18320.0,3,6,4.0,1,1.0 -9823,14992,2747.5088592260777,32.0,111,740.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24807.8,0.0,18970.0,2,10,8.0,2,1.0 -9824,14993,2613.479883754964,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22740.0,0.0,0.0,25113.6,0.0,0.0,1,9,0.0,3,0.0 -9825,14994,3273.0547983603437,41.0,112,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,46037.65,0.0,8560.0,5,7,0.0,4,2.0 -9826,14995,3171.8847852085228,58.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21048.1,0.0,21580.0,3,7,6.0,3,1.0 -9827,14996,2907.977868332875,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12300.0,0.0,0.0,9595.45,0.0,0.0,1,9,7.0,1,0.0 -9828,14999,1902.5693592525874,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16380.0,0.0,0.0,15784.55,0.0,0.0,1,7,5.0,1,0.0 -9829,15002,3548.314158089566,28.0,111,510.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35011.05,0.0,27670.0,3,8,6.0,4,2.0 -9830,15003,1609.3074105585088,62.0,112,0.0,46,3,1.0,4.0,2.5,0.0,0.0,0.0,24370.0,0.0,0.0,50209.95,0.0,22370.0,1,8,0.0,5,3.0 -9831,15005,1817.1618135331466,42.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36782.75,0.0,39390.0,2,8,6.0,3,2.0 -9832,15006,3595.658472796176,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6039.0,0.0,0.0,5,10,8.0,1,0.0 -9833,15007,3444.7622390148545,26.0,111,0.0,42,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,24.0,0.0,13707.4,0.0,11460.0,3,9,7.0,1,1.0 -9834,15008,1840.3567006667952,56.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43126.45,0.0,46360.0,2,7,5.0,3,1.0 -9835,15009,2772.827920883694,80.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29180.0,0.0,0.0,39967.75,0.0,0.0,1,6,4.0,3,0.0 -9836,15010,2149.2198954835485,77.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44630.0,0.0,0.0,47964.2,0.0,0.0,1,0,0.0,3,0.0 -9837,15011,2007.668299061191,74.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22150.0,0.0,0.0,21636.1,0.0,0.0,1,0,0.0,3,0.0 -9838,15013,2219.7945037819973,38.0,300,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19347.35,0.0,20550.0,5,0,0.0,1,1.0 -9839,15014,3507.4575608995456,30.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,48840.15,0.0,53650.0,2,10,8.0,1,1.0 -9840,15015,2228.9507688487,74.0,221,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18830.0,0.0,0.0,19880.25,0.0,0.0,1,1,1.0,3,0.0 -9841,15016,4368.8988558888805,46.0,111,0.0,35,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30418.0,0.0,30580.0,2,9,7.0,2,1.0 -9842,15017,1570.71419685964,55.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,15980.0,0.0,0.0,23400.35,0.0,8350.0,2,9,1.0,4,1.0 -9843,15018,1538.644679024181,80.0,112,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10190.0,0.0,0.0,21920.6,0.0,13150.0,1,8,1.0,2,1.0 -9844,15019,2670.3637742017477,54.0,111,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6059.3,0.0,0.0,1,9,7.0,3,2.0 -9845,15020,4340.951072496494,62.0,111,0.0,52,1.0,1.0,2.0,1.5,8750.0,0.0,0.0,0.0,0.0,0.0,21903.25,0.0,13410.0,3,9,7.0,3,1.0 -9846,15022,1736.3465699232668,47.0,120,0.0,64,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,31730.6,0.0,23830.0,3,0,1.0,4,1.0 -9847,15023,4755.338703256165,75.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22570.0,0.0,0.0,24557.65,0.0,0.0,1,1,2.0,3,0.0 -9848,15024,2471.9416378736933,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50150.0,0.0,0.0,53541.7,0.0,7590.0,1,10,8.0,3,0.0 -9849,15025,3357.7804523562663,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31090.0,0.0,0.0,30749.25,0.0,0.0,3,5,4.0,3,0.0 -9850,15026,3362.1553907352168,34.0,112,8850.0,64,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31896.75,0.0,20970.0,3,6,0.0,4,2.0 -9851,15028,1959.2925576221683,59.0,400,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18110.0,0.0,0.0,25120.4,0.0,8000.0,1,0,0.0,3,1.0 -9852,15029,3775.3446422064853,90.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6450.0,0.0,0.0,7530.0,0.0,0.0,1,9,7.0,1,0.0 -9853,15031,3890.934119496833,52.0,120,0.0,85,1.0,0.0,2.0,1.5,0.0,0.0,0.0,25170.0,0.0,0.0,35182.45,0.0,4590.0,1,0,0.0,3,1.0 -9854,15032,2347.3102892939564,32.0,400,0.0,46,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,40060.3,0.0,28560.0,2,0,0.0,4,1.0 -9855,15033,1702.1885701390297,52.0,222,610.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40523.9,0.0,42070.0,2,1,0.0,3,2.0 -9856,15034,1927.5585577387913,60.0,111,15440.0,31,3,2.0,3.0,2.0,0.0,9400.0,0.0,0.0,0.0,0.0,125341.7,440.0,16540.0,1,10,8.0,4,3.0 -9857,15035,773.2243117878734,47.0,112,0.0,52,3,3.0,5.0,2.8,0.0,0.0,0.0,4980.0,0.0,0.0,52071.95,0.0,47600.0,1,6,2.0,4,3.0 -9858,15036,2433.442611619952,32.0,111,0.0,56,1.0,0.0,4.0,1.9,0.0,4230.0,0.0,0.0,0.0,0.0,21060.0,510.0,3820.0,3,8,7.0,2,1.0 -9859,15037,1452.8831161926562,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22970.0,0.0,0.0,30840.2,0.0,320.0,1,9,1.0,3,0.0 -9860,15038,1788.4732495565681,81.0,112,0.0,78,0.0,0.0,2.0,1.5,6800.0,0.0,0.0,29510.0,0.0,0.0,35854.2,0.0,0.0,1,8,0.0,2,0.0 -9861,15039,5479.624259064154,34.0,221,1440.0,69,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6400.0,0.0,4900.0,3,1,2.0,3,2.0 -9862,15043,4415.556904253526,42.0,400,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16969.05,0.0,16750.0,3,0,0.0,1,1.0 -9863,15044,1863.1863539064636,74.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64240.0,554.0,0.0,61295.15,0.0,0.0,1,10,4.0,3,0.0 -9864,15045,2009.497293399202,60.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30260.0,0.0,0.0,34459.35,0.0,0.0,1,9,7.0,3,0.0 -9865,15046,3704.3391935405484,50.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,4480.0,0.0,0.0,0.0,0.0,7490.0,370.0,0.0,3,9,7.0,1,1.0 -9866,15047,1372.498105524435,56.0,300,0.0,13,2.0,1.0,2.0,1.5,0.0,0.0,0.0,9230.0,0.0,0.0,52717.55,0.0,0.0,3,0,0.0,3,2.0 -9867,15048,1064.1676745581608,72.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,32360.0,285.0,0.0,53499.45,0.0,20910.0,1,8,0.0,4,1.0 -9868,15049,2222.2697816239165,50.0,112,0.0,62,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49673.9,0.0,43760.0,1,5,0.0,4,3.0 -9869,15050,2335.710295098561,37.0,120,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22013.2,0.0,23670.0,2,0,1.0,1,1.0 -9870,15051,2968.7121786030093,72.0,400,0.0,78,0.0,0.0,2.0,1.5,2850.0,0.0,0.0,18630.0,0.0,0.0,21487.85,0.0,0.0,1,0,0.0,3,0.0 -9871,15053,4042.85986668039,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1810.0,0.0,0.0,5,10,8.0,1,0.0 -9872,15054,1467.839770100108,38.0,111,0.0,55,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32291.8,0.0,22880.0,2,4,4.0,4,2.0 -9873,15055,4574.688428732981,29.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,3340.0,0.0,0.0,0.0,0.0,11887.55,1460.0,3060.0,3,8,6.0,2,1.0 -9874,15057,2365.882528821645,60.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,508.0,0.0,183265.15,0.0,0.0,1,6,5.0,3,2.0 -9875,15058,3023.8054600523296,40.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29126.4,0.0,30330.0,2,6,4.0,3,2.0 -9876,15059,3235.170118501899,38.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,72264.95,0.0,39760.0,2,9,7.0,4,2.0 -9877,15061,2540.189625194887,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29360.0,0.0,0.0,27803.35,0.0,0.0,2,9,7.0,3,0.0 -9878,15062,1260.6687629155617,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67170.0,0.0,0.0,58339.9,0.0,0.0,1,10,8.0,3,0.0 -9879,15063,2007.7372840853805,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61220.0,224.0,0.0,57364.8,0.0,0.0,1,9,7.0,3,0.0 -9880,15064,3455.0113530015115,56.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25002.65,0.0,26310.0,2,9,7.0,1,1.0 -9881,15065,3075.1457141954575,55.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,156.0,0.0,32493.05,0.0,36360.0,1,8,6.0,1,1.0 -9882,15066,7688.567449231613,80.0,221,12280.0,78,1.0,0.0,3.0,2.0,0.0,0.0,0.0,18490.0,3.0,0.0,31092.6,0.0,610.0,3,1,1.0,4,1.0 -9883,15067,4054.083188677773,47.0,111,0.0,33,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,33.0,0.0,95601.8,0.0,89530.0,2,9,7.0,2,1.0 -9884,15070,2510.248880401272,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31330.0,0.0,0.0,30151.7,0.0,0.0,1,8,7.0,3,0.0 -9885,15071,2097.011263453147,46.0,112,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52301.9,0.0,53030.0,1,8,0.0,4,2.0 -9886,15072,3792.522961092394,53.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9635.0,0.0,8990.0,1,10,8.0,1,1.0 -9887,15073,1069.1563642905257,70.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23140.0,0.0,0.0,23144.15,0.0,0.0,1,0,1.0,3,0.0 -9888,15077,2461.054292083751,34.0,111,10210.0,45,1.0,1.0,4.0,2.1,0.0,1050.0,0.0,0.0,0.0,0.0,28883.0,0.0,3260.0,3,10,8.0,2,1.0 -9889,15079,2595.179156994927,65.0,111,0.0,23,2.0,0.0,2.0,1.5,0.0,0.0,0.0,106440.0,0.0,0.0,88244.35,0.0,0.0,1,10,8.0,3,2.0 -9890,15080,5165.801969075083,77.0,111,0.0,75,1.0,1.0,3.0,2.0,10850.0,0.0,0.0,18010.0,0.0,0.0,37783.05,0.0,8280.0,1,6,4.0,4,1.0 -9891,15081,2671.2249062130904,52.0,120,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,37270.0,0.0,0.0,54388.85,0.0,17310.0,1,0,2.0,5,1.0 -9892,15082,3046.2438393752595,31.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23554.85,0.0,23340.0,3,9,7.0,1,1.0 -9893,15084,2953.825627398479,40.0,111,17360.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30584.7,0.0,5220.0,3,9,7.0,4,2.0 -9894,15086,2531.541620467602,76.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,5500.0,8610.0,0.0,0.0,13603.65,0.0,0.0,1,5,0.0,3,0.0 -9895,15088,2345.5076449016296,38.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,70497.25,0.0,71010.0,1,10,8.0,4,2.0 -9896,15089,3596.4823593190727,55.0,111,13040.0,21,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34119.25,0.0,20160.0,2,9,7.0,4,3.0 -9897,15090,2145.707434645476,59.0,300,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37184.75,0.0,40060.0,1,0,0.0,3,1.0 -9898,15091,1025.6010350052215,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36040.0,151.0,0.0,37216.25,0.0,0.0,1,7,5.0,3,0.0 -9899,15092,2454.9717319346564,41.0,111,0.0,47,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28672.2,0.0,28530.0,2,8,7.0,2,1.0 -9900,15093,2267.2405187957943,52.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2412.0,0.0,0.0,3,5,4.0,1,0.0 -9901,15096,2959.491320751528,42.0,300,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31338.7,0.0,28940.0,1,0,0.0,4,2.0 -9902,15097,1836.0649813132254,34.0,112,2850.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45909.15,0.0,35980.0,3,7,2.0,4,2.0 -9903,15099,4272.082892228452,26.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35339.95,0.0,37880.0,3,10,8.0,3,2.0 -9904,15101,2761.2215913855357,55.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57530.1,0.0,60710.0,1,9,7.0,3,2.0 -9905,15103,1742.6136725688625,23.0,111,2850.0,56,1.0,3.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9650.0,0.0,6800.0,5,9,7.0,1,1.0 -9906,15104,1858.5438373625148,81.0,300,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,56140.0,0.0,0.0,64769.9,0.0,0.0,1,0,0.0,5,1.0 -9907,15105,3078.794470535455,44.0,300,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,14070.0,0.0,0.0,45419.1,0.0,32600.0,1,0,0.0,2,2.0 -9908,15106,927.7874358949175,68.0,211,17470.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,23330.0,0.0,0.0,38514.05,0.0,0.0,1,3,4.0,3,1.0 -9909,15107,1672.620791693219,43.0,112,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51137.75,0.0,51910.0,2,7,0.0,4,2.0 -9910,15108,3004.5896133134192,86.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11240.0,0.0,0.0,11282.0,0.0,0.0,5,8,0.0,1,0.0 -9911,15109,1966.4714902190271,48.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5116.25,0.0,5710.0,2,9,0.0,2,1.0 -9912,15110,3073.495576694816,60.0,221,4140.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2890.0,0.0,0.0,9238.6,0.0,0.0,3,1,3.0,1,0.0 -9913,15112,3053.0165363397628,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18590.0,0.0,0.0,24014.85,0.0,0.0,1,9,7.0,1,0.0 -9914,15114,1794.8138578413657,44.0,111,0.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19022.15,0.0,15200.0,3,7,6.0,2,1.0 -9915,15117,797.8684475359364,51.0,111,14500.0,38,2.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,66.0,0.0,55651.1,0.0,41040.0,1,9,7.0,4,2.0 -9916,15118,1451.2469087041911,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10790.0,0.0,0.0,9914.45,0.0,0.0,1,6,4.0,1,0.0 -9917,15119,2230.981046215333,58.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13840.0,0.0,0.0,16887.9,0.0,0.0,1,8,0.0,3,1.0 -9918,15120,5864.418324184731,52.0,120,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20341.2,0.0,20270.0,3,0,2.0,1,1.0 -9919,15122,3633.165807890411,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20790.0,0.0,0.0,18645.65,0.0,0.0,1,9,7.0,3,0.0 -9920,15123,5883.184132608083,28.0,111,0.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45857.0,0.0,37180.0,3,10,8.0,4,2.0 -9921,15127,3361.520543984857,57.0,120,4550.0,21,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,30.0,0.0,55051.35,0.0,30070.0,2,0,2.0,4,3.0 -9922,15128,3737.5604337392533,58.0,111,0.0,56,2.0,2.0,2.0,1.5,6240.0,1700.0,0.0,0.0,0.0,0.0,23623.75,1630.0,11030.0,3,9,7.0,2,2.0 -9923,15129,2622.1533616068555,42.0,211,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,34984.25,0.0,1300.0,2,3,3.0,4,2.0 -9924,15130,5716.948504558753,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38500.0,0.0,0.0,39209.25,0.0,0.0,1,9,2.0,3,0.0 -9925,15131,1390.8657433144456,56.0,221,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35305.65,0.0,31430.0,1,1,3.0,3,2.0 -9926,15132,2819.040969059434,47.0,112,48540.0,38,1.0,0.0,2.0,1.5,0.0,860.0,0.0,0.0,0.0,0.0,54337.95,0.0,5950.0,2,8,1.0,2,1.0 -9927,15133,3206.165985794465,39.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39501.15,0.0,38230.0,5,10,8.0,4,2.0 -9928,15134,3943.1020655426237,24.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23905.15,0.0,25350.0,3,9,7.0,5,1.0 -9929,15135,1411.7801010752703,39.0,112,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,76.0,0.0,34745.35,0.0,33960.0,1,9,2.0,4,1.0 -9930,15136,3943.8037478989777,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,400.0,0.0,0.0,2872.0,0.0,0.0,3,9,7.0,1,0.0 -9931,15138,2900.0006733939745,42.0,111,0.0,85,0.0,0.0,1.0,1.0,8920.0,0.0,0.0,1620.0,0.0,0.0,24375.0,0.0,0.0,3,10,8.0,1,0.0 -9932,15141,2081.4732903042905,63.0,221,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26100.0,0.0,0.0,24985.35,0.0,0.0,1,1,1.0,1,0.0 -9933,15142,1772.0504486732684,58.0,111,70.0,37,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,99689.95,0.0,104870.0,2,10,8.0,4,2.0 -9934,15144,2483.0011031893305,48.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,9650.0,0.0,0.0,39383.8,0.0,31780.0,2,9,0.0,3,2.0 -9935,15145,3332.8160885674392,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49120.0,0.0,0.0,48792.35,0.0,0.0,1,9,7.0,3,0.0 -9936,15146,3305.334370881484,64.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1340.0,7450.0,0.0,0.0,10626.0,0.0,0.0,3,0,2.0,1,0.0 -9937,15147,1460.6605312689564,67.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49870.0,0.0,0.0,46260.8,0.0,0.0,1,6,0.0,3,0.0 -9938,15148,1645.5615537761996,51.0,111,0.0,38,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,82885.9,0.0,94100.0,2,10,8.0,4,3.0 -9939,15149,2284.3018670595793,34.0,111,0.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36433.0,0.0,28390.0,2,8,7.0,4,1.0 -9940,15152,2601.4082597892216,57.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25440.0,0.0,0.0,115974.4,0.0,16710.0,2,10,8.0,3,1.0 -9941,15154,3760.009555852807,33.0,111,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40774.1,0.0,41680.0,2,9,7.0,4,2.0 -9942,15155,1124.1699765386384,41.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35328.55,0.0,33550.0,2,8,0.0,4,2.0 -9943,15156,2343.8989608359593,72.0,400,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19440.0,0.0,0.0,32273.4,0.0,0.0,1,0,0.0,3,1.0 -9944,15159,2747.0284685616134,30.0,111,8770.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17027.15,0.0,9590.0,3,9,7.0,1,0.0 -9945,15160,3357.7114296270984,79.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32660.0,0.0,0.0,32402.95,0.0,0.0,1,0,3.0,5,0.0 -9946,15161,1035.2016631596293,58.0,112,24820.0,77,2.0,1.0,4.0,2.5,0.0,0.0,0.0,16550.0,0.0,0.0,72044.75,0.0,35680.0,1,9,0.0,5,2.0 -9947,15163,2786.968269425129,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14850.0,0.0,0.0,19108.05,0.0,0.0,5,10,8.0,1,0.0 -9948,15164,1953.2565369865476,32.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56609.0,0.0,61830.0,3,6,4.0,3,2.0 -9949,15165,2792.442830007334,46.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29452.75,0.0,31630.0,3,9,7.0,1,1.0 -9950,15166,3120.1605407434918,33.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,26.0,0.0,19700.35,0.0,21010.0,2,10,8.0,1,1.0 -9951,15167,1783.2951364707187,38.0,211,0.0,67,1.0,1.0,5.0,2.6,8750.0,0.0,0.0,0.0,0.0,0.0,41168.0,0.0,25700.0,2,2,3.0,4,1.0 -9952,15169,1909.4797200559822,63.0,112,0.0,11,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24250.0,0.0,0.0,26465.0,0.0,0.0,1,6,0.0,3,1.0 -9953,15171,2367.5201379161563,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52800.0,0.0,0.0,48120.6,0.0,0.0,1,9,7.0,3,0.0 -9954,15175,4271.805413067791,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20280.0,0.0,0.0,26680.2,0.0,8060.0,1,10,2.0,3,0.0 -9955,15177,2742.374266983118,58.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20488.0,0.0,22280.0,3,10,8.0,1,1.0 -9956,15183,3429.542335886978,73.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20670.0,124.0,0.0,25107.4,0.0,0.0,1,10,8.0,1,0.0 -9957,15184,2743.888343389804,30.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14074.0,0.0,14510.0,3,7,6.0,1,1.0 -9958,15186,2769.7458100604103,44.0,111,0.0,63,1.0,0.0,4.0,2.1,0.0,8910.0,0.0,0.0,0.0,0.0,15602.0,0.0,0.0,3,7,5.0,4,1.0 -9959,15187,1591.8188423747215,56.0,300,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17616.55,0.0,18190.0,2,0,0.0,1,1.0 -9960,15189,1046.6124852689159,52.0,300,0.0,62,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34197.85,0.0,34300.0,1,0,0.0,4,3.0 -9961,15190,1460.14286462936,74.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16090.0,0.0,0.0,29792.45,0.0,0.0,1,6,0.0,3,0.0 -9962,15192,2848.6595413555074,54.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,230.0,0.0,0.0,0.0,0.0,16308.0,2960.0,12170.0,3,10,8.0,3,2.0 -9963,15194,3470.313171635027,31.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36761.5,0.0,39760.0,2,8,7.0,3,2.0 -9964,15196,2187.6221583428905,36.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20346.35,0.0,14290.0,3,7,6.0,1,1.0 -9965,15197,2958.4111636547873,31.0,400,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25148.55,0.0,16620.0,1,0,0.0,4,1.0 -9966,15198,3365.241670870132,42.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18460.05,0.0,15450.0,2,10,8.0,2,1.0 -9967,15199,2938.101548524232,34.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20144.15,0.0,20890.0,3,10,8.0,1,1.0 -9968,15200,4213.8715626276235,29.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18933.25,0.0,20250.0,2,9,7.0,1,1.0 -9969,15201,1474.670945934249,31.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22009.55,0.0,8740.0,3,5,4.0,4,2.0 -9970,15204,2631.3707215510944,83.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27170.0,0.0,0.0,25473.5,0.0,0.0,1,0,0.0,3,0.0 -9971,15205,4152.32066645658,33.0,111,0.0,38,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,48075.95,0.0,47180.0,2,10,8.0,4,1.0 -9972,15206,3366.4471518086993,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17190.0,0.0,0.0,16310.85,0.0,0.0,3,8,6.0,1,0.0 -9973,15209,2768.288386735031,24.0,111,1150.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26047.7,0.0,25020.0,3,8,6.0,3,2.0 -9974,15210,2336.5831298531853,30.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52996.05,0.0,20270.0,2,9,7.0,3,2.0 -9975,15211,1051.5089599260182,32.0,400,0.0,52,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,57019.75,0.0,42350.0,3,0,0.0,4,2.0 -9976,15216,3268.936441397758,83.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28660.0,0.0,0.0,28117.7,0.0,0.0,1,10,4.0,1,0.0 -9977,15217,2865.9123933017527,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5420.0,0.0,0.0,3,8,7.0,1,0.0 -9978,15219,1808.3513331445959,74.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20010.0,0.0,0.0,19372.7,0.0,0.0,1,0,0.0,1,0.0 -9979,15221,2556.708635999302,54.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1753.0,0.0,87460.1,0.0,106050.0,2,10,8.0,1,1.0 -9980,15222,2395.762637597888,37.0,400,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28652.75,0.0,16240.0,2,0,0.0,4,2.0 -9981,15223,1852.744254655323,57.0,120,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26362.2,0.0,27030.0,2,0,0.0,3,2.0 -9982,15225,3017.9688583035263,37.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40302.8,0.0,44200.0,3,10,8.0,3,2.0 -9983,15228,3662.978313416401,33.0,111,6600.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43775.25,0.0,30190.0,3,10,8.0,4,2.0 -9984,15229,1642.4483937064156,49.0,111,0.0,46,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,46277.9,0.0,39690.0,2,8,7.0,4,2.0 -9985,15231,1956.5832613975863,52.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37394.35,0.0,40020.0,1,9,7.0,3,2.0 -9986,15232,2795.14981747974,58.0,221,12070.0,77,0.0,0.0,3.0,2.0,11890.0,0.0,0.0,0.0,0.0,0.0,23293.1,0.0,0.0,1,1,3.0,4,0.0 -9987,15235,914.693349935731,55.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45380.85,0.0,50070.0,1,6,4.0,2,1.0 -9988,15238,2345.5076449016296,38.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40776.75,0.0,36670.0,2,10,8.0,4,2.0 -9989,15240,2838.5465442158143,51.0,112,2820.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44851.15,0.0,44510.0,1,9,2.0,5,3.0 -9990,15241,2195.6981386847597,76.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9590.0,22.0,0.0,14935.8,0.0,0.0,1,8,6.0,1,0.0 -9991,15242,3057.7276952212787,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4753.9,0.0,2380.0,3,10,8.0,1,0.0 -9992,15243,1663.7491736245522,49.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,9225.3,2370.0,6990.0,2,9,7.0,1,1.0 -9993,15244,1610.4527328596155,41.0,111,0.0,85,0.0,0.0,8.0,3.9,0.0,2770.0,0.0,0.0,0.0,0.0,32254.0,0.0,0.0,3,8,6.0,2,0.0 -9994,15245,6055.10953446565,53.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34802.05,0.0,35530.0,2,10,8.0,3,1.0 -9995,15247,1417.5978303518411,58.0,212,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,65.0,0.0,44593.85,0.0,47310.0,1,1,0.0,3,2.0 -9996,15248,3011.0853363781907,32.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50835.6,0.0,59010.0,3,10,8.0,3,2.0 -9997,15251,2299.138191622043,52.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39746.45,0.0,27740.0,2,10,0.0,3,2.0 -9998,15252,954.2275188978971,43.0,111,0.0,67,2.0,0.0,6.0,2.9,0.0,430.0,0.0,0.0,0.0,0.0,22254.0,0.0,2910.0,3,6,4.0,4,2.0 -9999,15253,3296.794870823314,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18210.0,0.0,0.0,18185.0,0.0,0.0,3,9,7.0,1,0.0 -10000,15255,2835.9203130933424,31.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,12417.0,0.0,8900.0,3,9,7.0,2,1.0 -10001,15256,1886.3677145991585,44.0,111,280.0,53,2.0,2.0,7.0,3.6,0.0,0.0,0.0,0.0,55.0,0.0,71934.3,0.0,66990.0,3,10,8.0,4,2.0 -10002,15257,3918.0777833628263,39.0,111,7430.0,68,1.0,0.0,4.0,2.1,8750.0,0.0,0.0,0.0,0.0,0.0,23050.0,0.0,0.0,3,8,6.0,4,1.0 -10003,15259,4080.886155224221,62.0,400,2140.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32230.0,4.0,0.0,32377.25,0.0,0.0,1,0,0.0,3,0.0 -10004,15260,4038.6515259244024,53.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1725.0,0.0,16912.7,0.0,17130.0,1,10,8.0,1,1.0 -10005,15261,2169.2671109243292,50.0,112,0.0,48,3,2.0,4.0,2.5,0.0,0.0,0.0,2570.0,0.0,0.0,35649.5,0.0,34170.0,1,10,0.0,4,3.0 -10006,15262,1918.2222481311592,51.0,111,5670.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5131.15,0.0,0.0,2,8,7.0,1,1.0 -10007,15265,1720.318648466757,35.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60960.45,0.0,67300.0,2,7,0.0,3,2.0 -10008,15266,3729.1343308842856,27.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38189.15,0.0,45150.0,3,10,8.0,1,1.0 -10009,15267,1271.8087750545594,56.0,300,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11600.0,0.0,0.0,54624.8,0.0,2210.0,1,0,0.0,3,1.0 -10010,15268,3546.0001520736278,29.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9771.85,0.0,9880.0,3,8,7.0,1,0.0 -10011,15271,1509.0146566936617,65.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14600.0,1008.0,0.0,17532.0,0.0,0.0,5,7,1.0,1,0.0 -10012,15273,3200.580465236495,33.0,111,11270.0,21,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,15301.55,0.0,1810.0,5,6,4.0,4,2.0 -10013,15276,1950.5093034583667,60.0,111,850.0,77,0.0,0.0,2.0,1.5,2490.0,0.0,0.0,18820.0,156.0,0.0,26233.75,0.0,510.0,1,8,7.0,3,0.0 -10014,15277,1229.7885343143653,55.0,111,0.0,63,2.0,2.0,8.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,48150.85,0.0,31530.0,3,10,8.0,4,2.0 -10015,15279,4990.057572263797,28.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29009.75,0.0,31530.0,3,6,4.0,1,1.0 -10016,15282,2874.6120801901625,81.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,1460.0,21940.0,0.0,0.0,23349.3,0.0,530.0,1,6,5.0,3,0.0 -10017,15287,2444.5317357421222,27.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13892.0,0.0,14070.0,3,9,7.0,1,1.0 -10018,15288,1463.978964225913,62.0,112,0.0,11,2.0,2.0,3.0,2.0,0.0,0.0,0.0,8980.0,0.0,0.0,18660.25,0.0,11490.0,1,8,0.0,4,2.0 -10019,15290,3123.779633910219,31.0,112,5360.0,85,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5661.35,0.0,0.0,3,9,3.0,3,0.0 -10020,15292,6781.697787316464,22.0,111,2570.0,56,2.0,2.0,2.0,1.5,0.0,1840.0,0.0,0.0,0.0,0.0,27087.55,1660.0,20760.0,3,8,6.0,3,2.0 -10021,15294,2330.358007670222,33.0,111,27880.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,75528.6,0.0,50660.0,2,6,4.0,4,2.0 -10022,15295,2188.942367153276,54.0,111,0.0,67,3,3.0,8.0,4.3,0.0,0.0,0.0,0.0,0.0,0.0,67000.8,0.0,53520.0,3,10,8.0,4,4.0 -10023,15298,3126.1189369050435,80.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7620.0,0.0,0.0,7717.0,0.0,0.0,1,5,0.0,1,0.0 -10024,15299,4060.1449028453117,32.0,221,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39198.4,0.0,30070.0,2,1,2.0,4,1.0 -10025,15301,1502.3846814266474,51.0,112,2570.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35231.95,0.0,33310.0,1,5,0.0,4,2.0 -10026,15304,3761.252079256562,26.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4143.8,0.0,0.0,3,9,7.0,1,0.0 -10027,15306,1819.4411902485324,32.0,111,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44009.05,0.0,47340.0,3,10,8.0,4,2.0 -10028,15307,3738.8783703749205,41.0,111,2960.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28824.65,0.0,29700.0,2,10,8.0,1,1.0 -10029,15308,4485.715036894854,40.0,111,0.0,37,1.0,1.0,4.0,2.5,0.0,0.0,0.0,15610.0,0.0,0.0,51913.0,0.0,39940.0,2,10,8.0,4,1.0 -10030,15310,3400.222070382201,50.0,211,5040.0,63,1.0,0.0,2.0,1.5,0.0,2520.0,0.0,0.0,0.0,0.0,11604.0,0.0,0.0,3,4,3.0,2,1.0 -10031,15312,1517.8862369672233,34.0,112,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31773.55,0.0,30550.0,2,4,0.0,4,2.0 -10032,15313,3363.093065773603,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11940.0,217.0,0.0,12650.0,0.0,390.0,1,8,7.0,1,0.0 -10033,15314,2973.2533142116617,55.0,111,2510.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18357.5,0.0,16140.0,3,10,8.0,2,1.0 -10034,15315,3390.432046515864,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,5690.0,4270.0,0.0,0.0,13500.0,0.0,0.0,3,10,8.0,1,0.0 -10035,15316,2129.8901176456393,62.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17560.0,0.0,0.0,30531.75,0.0,11010.0,1,0,0.0,3,0.0 -10036,15317,2658.4902430944367,39.0,111,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31439.15,0.0,19590.0,3,7,5.0,4,1.0 -10037,15319,3843.519883889087,26.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,1770.0,0.0,0.0,116.0,0.0,41704.05,0.0,36020.0,3,8,7.0,3,2.0 -10038,15322,1311.2427472795196,49.0,111,3120.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51361.2,460.0,0.0,3,9,7.0,4,2.0 -10039,15323,4030.0689462367422,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21650.0,0.0,0.0,19131.4,0.0,0.0,1,10,8.0,1,0.0 -10040,15324,3697.167482622873,31.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,61.0,0.0,21403.45,0.0,23290.0,1,7,1.0,1,1.0 -10041,15325,1493.503004379791,61.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,970.0,0.0,0.0,69177.35,0.0,11750.0,1,8,0.0,3,2.0 -10042,15327,2847.7674187488856,36.0,300,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18168.45,0.0,18690.0,5,0,0.0,1,1.0 -10043,15328,2270.647846784528,24.0,300,0.0,65,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27164.85,0.0,21960.0,3,0,1.0,4,1.0 -10044,15329,4758.021734792809,48.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17447.45,0.0,18080.0,3,8,6.0,1,1.0 -10045,15330,4642.800755776199,62.0,120,5070.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,61360.0,0.0,0.0,55867.0,0.0,0.0,1,0,3.0,1,0.0 -10046,15331,2678.5981910966166,30.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19411.0,0.0,19330.0,3,5,4.0,1,1.0 -10047,15332,1535.3411497016941,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22220.0,0.0,0.0,21059.15,0.0,0.0,1,9,7.0,3,0.0 -10048,15338,4120.895870818676,56.0,400,0.0,21,2.0,2.0,2.0,1.5,0.0,1130.0,0.0,0.0,0.0,0.0,24534.95,0.0,11940.0,1,0,0.0,3,2.0 -10049,15339,1960.2329250286941,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,75380.0,669.0,0.0,68025.35,0.0,0.0,1,9,7.0,3,0.0 -10050,15340,1896.041738525509,55.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40936.35,0.0,42460.0,2,9,7.0,3,2.0 -10051,15343,3375.353498755705,32.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45571.75,0.0,49570.0,2,9,7.0,3,2.0 -10052,15344,3109.7339951456547,76.0,120,11300.0,86,1.0,0.0,3.0,2.0,8750.0,0.0,0.0,14010.0,0.0,0.0,33627.1,0.0,0.0,1,0,0.0,5,1.0 -10053,15345,1393.0456493943645,60.0,300,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,22340.0,0.0,0.0,35087.25,0.0,0.0,1,0,0.0,4,1.0 -10054,15346,1737.981280670507,49.0,112,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40692.15,0.0,43130.0,2,9,0.0,4,2.0 -10055,15347,2901.6326234540734,56.0,400,0.0,77,0.0,0.0,1.0,1.0,8750.0,0.0,0.0,0.0,0.0,0.0,8758.0,0.0,0.0,1,0,0.0,1,0.0 -10056,15349,873.3310854752684,67.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19910.0,0.0,0.0,19753.55,0.0,0.0,1,0,1.0,3,0.0 -10057,15352,2374.4945636811053,41.0,400,0.0,13,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,58255.85,0.0,0.0,2,0,0.0,4,2.0 -10058,15353,3377.1980360215075,73.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8480.0,0.0,0.0,9275.95,0.0,0.0,1,0,0.0,1,0.0 -10059,15354,3580.633175164182,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20820.0,0.0,0.0,20599.0,0.0,0.0,1,7,5.0,1,0.0 -10060,15355,1813.0286681145867,54.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35943.0,0.0,37630.0,1,7,6.0,3,2.0 -10061,15357,2400.7340051284323,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41700.0,0.0,0.0,39080.2,0.0,0.0,1,6,0.0,3,0.0 -10062,15359,2244.1915635546825,78.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14400.0,0.0,0.0,14642.0,0.0,0.0,1,8,0.0,1,0.0 -10063,15360,1145.8912176769493,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24070.0,0.0,0.0,23734.35,0.0,0.0,3,9,0.0,3,0.0 -10064,15361,982.8918341594932,59.0,112,0.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,16000.0,6.0,0.0,37973.85,0.0,21190.0,1,8,1.0,4,2.0 -10065,15362,1523.0113680435568,48.0,112,6240.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30606.55,0.0,26000.0,1,8,0.0,3,2.0 -10066,15363,2202.7858037469773,30.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,19014.0,37762.65,0.0,14190.0,2,7,6.0,4,2.0 -10067,15364,2708.449295423315,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,4580.0,4100.0,0.0,0.0,11989.0,0.0,0.0,3,8,7.0,1,0.0 -10068,15365,2011.870865931804,74.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39180.0,0.0,0.0,34651.9,0.0,0.0,1,10,8.0,3,0.0 -10069,15366,3384.775978538517,83.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38490.0,0.0,0.0,37381.05,0.0,0.0,1,0,0.0,3,0.0 -10070,15367,3065.2492824580377,62.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19500.0,0.0,0.0,19177.75,0.0,0.0,1,7,1.0,1,0.0 -10071,15368,2364.3100322347086,53.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47621.1,0.0,50020.0,3,9,0.0,4,2.0 -10072,15370,2689.1248787876057,35.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54669.95,0.0,49530.0,5,8,6.0,4,2.0 -10073,15371,3217.829611788929,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33590.0,0.0,0.0,29904.05,0.0,0.0,1,9,7.0,3,0.0 -10074,15375,2538.4103565888913,52.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11020.0,0.0,0.0,38146.2,0.0,29480.0,1,10,8.0,3,1.0 -10075,15376,2570.117022106873,41.0,111,0.0,48,1.0,1.0,7.0,3.4,0.0,0.0,5300.0,8800.0,0.0,0.0,48243.0,0.0,25540.0,3,10,8.0,5,1.0 -10076,15377,1562.1823025237495,58.0,221,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45256.0,0.0,22170.0,2,1,3.0,3,2.0 -10077,15378,4846.168588965168,63.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20980.0,0.0,0.0,21032.95,0.0,0.0,3,5,0.0,3,0.0 -10078,15379,2555.2190744465015,67.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10530.0,0.0,0.0,12090.0,0.0,0.0,3,6,4.0,1,0.0 -10079,15380,5860.809602045041,26.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13079.0,0.0,11160.0,3,10,8.0,1,1.0 -10080,15381,2520.185156769897,87.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,3760.0,9710.0,0.0,0.0,15866.0,0.0,0.0,3,0,0.0,1,0.0 -10081,15382,1923.4556008058646,51.0,111,0.0,85,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,164.0,0.0,-0.0,0.0,0.0,1,9,7.0,2,0.0 -10082,15383,1315.8206455630934,49.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21129.1,0.0,21610.0,2,8,1.0,3,2.0 -10083,15384,2015.6588074395636,61.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12700.0,0.0,0.0,14001.95,0.0,0.0,1,0,0.0,3,0.0 -10084,15385,3511.3723702935695,28.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,5080.0,0.0,0.0,39.0,0.0,38717.15,0.0,33850.0,3,10,8.0,1,1.0 -10085,15386,1903.2864171695212,52.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,99591.55,0.0,0.0,2,8,7.0,4,2.0 -10086,15389,3501.7081737348612,27.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23255.3,0.0,23060.0,2,5,0.0,1,1.0 -10087,15390,3152.2807557678852,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16210.0,0.0,0.0,15745.25,0.0,0.0,3,10,8.0,1,0.0 -10088,15392,1202.103142196534,38.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,5.0,0.0,58717.3,0.0,55060.0,2,9,7.0,4,2.0 -10089,15393,2327.986443189832,47.0,112,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29341.7,0.0,30590.0,3,10,4.0,2,1.0 -10090,15394,1845.9899208952356,50.0,211,18230.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48098.55,0.0,27080.0,1,3,3.0,4,2.0 -10091,15396,1649.2081331140214,61.0,112,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,16620.0,0.0,0.0,27104.4,0.0,9590.0,1,9,3.0,1,1.0 -10092,15397,4347.6223271846,57.0,112,4050.0,42,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40075.7,0.0,34920.0,1,8,0.0,3,2.0 -10093,15398,2395.9596322867637,30.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33931.5,0.0,33250.0,3,8,7.0,4,2.0 -10094,15401,2909.3872376129707,46.0,120,0.0,65,3,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,37653.35,0.0,28490.0,2,0,0.0,4,3.0 -10095,15402,1843.3235694528612,53.0,112,0.0,62,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27783.15,0.0,23620.0,1,8,0.0,4,1.0 -10096,15404,1880.648769933187,31.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22297.35,0.0,20360.0,2,7,6.0,4,2.0 -10097,15406,2512.4576241895184,35.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47198.2,0.0,45360.0,1,9,0.0,4,2.0 -10098,15407,2621.192463566799,24.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,660.0,0.0,0.0,4,9,7.0,1,0.0 -10099,15408,2762.259899035893,42.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24831.5,0.0,24600.0,2,4,4.0,2,1.0 -10100,15410,1405.5420310988975,53.0,111,0.0,47,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,36075.15,0.0,37160.0,3,8,6.0,4,1.0 -10101,15412,1815.7051094445553,50.0,111,4280.0,54,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47536.95,0.0,47430.0,1,7,5.0,4,2.0 -10102,15413,2895.5145504408233,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13970.0,0.0,0.0,13970.0,0.0,0.0,3,6,4.0,1,0.0 -10103,15415,3284.182662158987,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50580.0,0.0,0.0,51672.9,0.0,0.0,1,9,7.0,3,0.0 -10104,15416,3854.8984514923345,89.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7800.0,0.0,0.0,7800.0,0.0,0.0,5,8,7.0,1,0.0 -10105,15417,2925.0329678908897,51.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36552.6,0.0,40240.0,2,8,7.0,3,2.0 -10106,15418,3116.644637240763,25.0,112,7720.0,64,2.0,0.0,3.0,1.8,0.0,1590.0,0.0,0.0,0.0,0.0,19856.85,0.0,5340.0,3,10,3.0,4,2.0 -10107,15421,2687.0604376194874,45.0,111,0.0,34,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,80018.25,0.0,82330.0,3,10,8.0,4,1.0 -10108,15422,3691.4687496592896,20.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12317.0,0.0,0.0,3,9,7.0,5,0.0 -10109,15423,2773.8994281055416,42.0,112,0.0,65,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24793.85,0.0,20870.0,3,10,1.0,4,1.0 -10110,15424,4813.0398367606085,82.0,221,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13510.0,0.0,0.0,19066.75,0.0,0.0,1,1,2.0,1,0.0 -10111,15427,5967.542955909113,58.0,112,17580.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,22410.0,6.0,0.0,38780.5,0.0,0.0,1,9,2.0,3,1.0 -10112,15428,966.4701132697674,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29200.0,0.0,0.0,29484.7,0.0,0.0,1,7,5.0,3,0.0 -10113,15430,4735.886652596073,36.0,111,12740.0,84,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18420.35,0.0,890.0,3,6,5.0,2,0.0 -10114,15431,2753.6179492113506,80.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15990.0,0.0,0.0,15685.3,0.0,0.0,1,1,2.0,1,0.0 -10115,15434,1412.7549411566133,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25910.0,0.0,0.0,25184.75,0.0,0.0,1,8,6.0,3,0.0 -10116,15435,3231.722876452207,88.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24290.0,689.0,0.0,23934.6,0.0,0.0,1,9,7.0,1,0.0 -10117,15436,1721.1314164096043,84.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33960.0,34.0,0.0,29308.75,0.0,0.0,1,8,7.0,3,0.0 -10118,15437,1632.8157052422337,74.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16700.0,0.0,0.0,17373.2,0.0,0.0,1,0,0.0,3,0.0 -10119,15438,3043.6191115142365,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13050.0,0.0,0.0,13339.0,0.0,0.0,3,7,5.0,1,0.0 -10120,15440,1853.8131822129678,41.0,111,0.0,52,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,45122.9,0.0,38610.0,2,8,6.0,4,2.0 -10121,15442,3443.600643613964,83.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19300.0,0.0,0.0,19632.35,0.0,0.0,1,0,0.0,3,0.0 -10122,15443,1659.303885784427,50.0,111,0.0,85,0.0,0.0,3.0,2.0,0.0,0.0,0.0,21120.0,47.0,0.0,29866.2,0.0,250.0,3,7,6.0,2,0.0 -10123,15444,1772.7173988303907,79.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21100.0,0.0,0.0,19819.75,0.0,0.0,1,6,1.0,3,0.0 -10124,15446,3264.192448363097,77.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25300.0,0.0,0.0,25343.9,0.0,0.0,1,0,0.0,3,0.0 -10125,15447,2319.174237703893,47.0,400,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,9149.45,0.0,0.0,1,0,0.0,3,2.0 -10126,15449,2061.8809397665855,29.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,15.0,0.0,41913.0,0.0,44860.0,3,6,4.0,3,2.0 -10127,15451,1626.7075186177672,72.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25790.0,869.0,0.0,26211.6,0.0,0.0,1,8,0.0,3,0.0 -10128,15453,2111.5883868543315,38.0,112,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49512.8,0.0,47130.0,2,9,0.0,4,2.0 -10129,15454,3046.0118290854957,61.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30400.0,78.0,0.0,29757.1,0.0,0.0,1,5,0.0,1,0.0 -10130,15456,1042.885472659539,57.0,111,0.0,37,2.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,53300.7,0.0,49330.0,2,9,7.0,4,2.0 -10131,15458,2625.402597601451,38.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,65.0,0.0,47324.3,0.0,51080.0,2,9,7.0,3,2.0 -10132,15459,2725.3448247070232,77.0,111,0.0,86,1.0,0.0,3.0,2.0,0.0,6670.0,0.0,13630.0,0.0,0.0,27798.55,560.0,2600.0,3,9,7.0,5,1.0 -10133,15461,1673.0425685866417,53.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24220.25,0.0,24340.0,1,7,1.0,1,1.0 -10134,15462,2255.429460406507,47.0,111,11700.0,22,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38927.05,0.0,25420.0,3,9,7.0,4,2.0 -10135,15463,2058.4415235839692,35.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41297.85,0.0,38760.0,2,8,7.0,4,2.0 -10136,15465,1509.2775244333614,48.0,300,0.0,65,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,1.0,0.0,43524.6,0.0,38930.0,1,0,0.0,4,2.0 -10137,15467,1903.1478586259716,59.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,44108.0,43511.95,0.0,0.0,1,8,0.0,3,0.0 -10138,15469,1006.5459642642403,50.0,111,0.0,46,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,37247.2,0.0,29590.0,2,8,6.0,4,1.0 -10139,15470,2560.9246081603696,62.0,120,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26050.0,0.0,0.0,25210.55,0.0,0.0,1,0,2.0,1,0.0 -10140,15471,1451.4544063205956,55.0,111,0.0,63,1.0,0.0,1.0,1.0,0.0,5080.0,0.0,0.0,0.0,0.0,8036.0,0.0,0.0,3,6,4.0,1,1.0 -10141,15472,2043.9281107233912,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32860.0,0.0,0.0,31344.3,0.0,0.0,1,9,7.0,3,0.0 -10142,15473,6398.257585582652,26.0,111,0.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18771.3,0.0,16600.0,3,8,6.0,3,2.0 -10143,15475,1070.5056107690284,42.0,111,0.0,38,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,211.0,0.0,55468.0,0.0,51230.0,1,8,7.0,4,1.0 -10144,15477,2555.3192836164185,63.0,120,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28190.0,0.0,0.0,48299.7,0.0,24530.0,1,0,2.0,3,1.0 -10145,15478,1677.642548647,35.0,112,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,33.0,0.0,34197.15,0.0,40630.0,2,8,0.0,1,1.0 -10146,15480,2210.6384954198916,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1311.6,0.0,0.0,3,8,7.0,1,0.0 -10147,15483,1603.3899657681438,46.0,112,970.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41032.25,0.0,40860.0,2,8,0.0,4,3.0 -10148,15485,2143.2189676687763,31.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21603.75,0.0,23380.0,3,5,4.0,1,1.0 -10149,15486,3165.1417796229757,25.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9261.0,0.0,3800.0,3,10,8.0,1,1.0 -10150,15487,2810.4337012642773,39.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,61965.3,0.0,42040.0,3,9,7.0,3,2.0 -10151,15488,1784.4512754452653,36.0,112,6490.0,53,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,29314.6,0.0,22480.0,2,6,1.0,4,2.0 -10152,15490,3483.3914700515847,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25686.1,0.0,26070.0,1,10,8.0,1,1.0 -10153,15492,3307.9324374964117,47.0,111,670.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28066.95,0.0,28480.0,3,8,6.0,1,1.0 -10154,15493,4085.032831783708,89.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,2010.0,6790.0,0.0,0.0,8800.0,0.0,0.0,1,8,6.0,1,0.0 -10155,15496,3411.0185801122634,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17060.0,0.0,0.0,16527.25,0.0,0.0,1,10,8.0,1,0.0 -10156,15497,1408.461391610067,61.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24030.0,0.0,0.0,23231.15,0.0,0.0,1,8,7.0,3,0.0 -10157,15498,1492.0762057404688,43.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,21.0,0.0,36565.8,0.0,26690.0,2,9,7.0,1,1.0 -10158,15500,1734.7097299990173,56.0,111,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30717.55,0.0,31080.0,3,9,7.0,4,3.0 -10159,15503,4914.393214595521,60.0,400,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,1830.0,5150.0,0.0,0.0,10271.0,0.0,1770.0,1,0,0.0,1,1.0 -10160,15504,1208.8896404182694,56.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44907.95,0.0,48100.0,1,9,7.0,3,2.0 -10161,15506,4192.861590880605,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18160.0,0.0,0.0,16836.55,0.0,0.0,1,7,5.0,1,0.0 -10162,15508,3532.0913086024643,29.0,111,8240.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18566.25,0.0,4000.0,3,7,6.0,2,0.0 -10163,15509,1859.5420716935403,56.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19214.0,0.0,20030.0,3,0,0.0,1,1.0 -10164,15510,4371.183045031322,32.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66211.95,0.0,60440.0,1,8,0.0,4,2.0 -10165,15511,4215.796133003814,57.0,300,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24356.15,0.0,24920.0,1,0,0.0,3,2.0 -10166,15512,1435.1444019110745,33.0,112,5940.0,65,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,3.0,0.0,39277.1,0.0,26130.0,3,7,1.0,4,2.0 -10167,15513,2656.468255971562,29.0,112,4960.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27938.0,0.0,21760.0,3,3,0.0,3,2.0 -10168,15514,1465.6295534808075,62.0,111,7360.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,12050.0,0.0,0.0,33245.0,0.0,10190.0,1,9,7.0,4,2.0 -10169,15516,2253.4833661574617,39.0,400,0.0,67,1.0,1.0,2.0,1.3,0.0,230.0,0.0,0.0,0.0,0.0,19771.55,860.0,13780.0,3,0,0.0,2,1.0 -10170,15517,1443.420330328113,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26460.0,5.0,0.0,36803.95,0.0,0.0,1,9,7.0,1,0.0 -10171,15518,1400.8672675889534,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40890.0,0.0,0.0,37428.8,0.0,0.0,1,5,4.0,3,0.0 -10172,15519,2523.904106496253,37.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16099.3,0.0,17090.0,3,6,4.0,1,1.0 -10173,15520,2635.8889760882576,33.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54088.0,0.0,47510.0,2,6,0.0,4,2.0 -10174,15521,3486.9190230748186,58.0,111,0.0,56,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23995.65,0.0,25100.0,3,10,8.0,4,2.0 -10175,15522,2215.3182779878803,73.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16000.0,0.0,0.0,15542.95,0.0,0.0,1,9,7.0,1,0.0 -10176,15523,2449.515041509122,63.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23430.0,0.0,0.0,34748.95,0.0,0.0,1,9,0.0,3,0.0 -10177,15524,2557.1767481111256,35.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,79546.4,0.0,75400.0,2,10,4.0,4,2.0 -10178,15525,2148.6153623075975,44.0,111,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,57537.95,0.0,61560.0,2,10,8.0,4,2.0 -10179,15527,2757.756778425262,53.0,112,5630.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47991.9,0.0,49720.0,2,9,0.0,3,2.0 -10180,15531,2143.373648743507,49.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47957.35,0.0,50330.0,1,10,8.0,3,2.0 -10181,15533,3392.2336683462877,50.0,211,0.0,62,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31996.95,0.0,33470.0,1,3,3.0,4,1.0 -10182,15535,2294.452377714904,44.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,18316.2,490.0,12830.0,3,6,5.0,1,1.0 -10183,15536,1512.1497585120426,62.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25240.0,0.0,0.0,25434.9,0.0,0.0,1,7,0.0,1,0.0 -10184,15538,1511.6988987102284,65.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60570.0,386.0,0.0,63792.05,0.0,7540.0,1,0,0.0,3,0.0 -10185,15539,3343.163994563092,80.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21560.0,0.0,0.0,21261.0,0.0,0.0,5,0,0.0,1,0.0 -10186,15542,942.1601277932972,71.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,70010.0,0.0,0.0,78340.2,0.0,460.0,1,0,0.0,3,0.0 -10187,15544,2937.82153530347,44.0,111,0.0,56,1.0,1.0,3.0,2.0,8750.0,300.0,0.0,14790.0,0.0,0.0,38854.0,4350.0,6190.0,3,10,8.0,2,1.0 -10188,15546,3317.85884204578,43.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,96615.15,0.0,112530.0,2,10,8.0,4,2.0 -10189,15548,1725.6528302028405,48.0,112,0.0,55,3,4.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,45972.95,0.0,45400.0,2,8,0.0,4,4.0 -10190,15549,1571.9613857154484,34.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,20.0,0.0,37802.3,0.0,50370.0,2,8,0.0,4,2.0 -10191,15550,5296.026608312328,36.0,120,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4.0,0.0,18023.65,0.0,18800.0,3,0,2.0,1,1.0 -10192,15552,3702.324350203459,82.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16180.0,0.0,0.0,21513.95,0.0,0.0,1,0,0.0,1,0.0 -10193,15555,1387.3478887043213,51.0,112,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43839.45,0.0,45340.0,3,9,0.0,4,2.0 -10194,15556,4873.568827620746,42.0,111,9970.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,90092.6,0.0,8170.0,1,4,4.0,3,1.0 -10195,15558,1918.3862506415544,46.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18441.05,0.0,18860.0,2,9,2.0,1,1.0 -10196,15559,3917.5342575175346,25.0,111,200.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30906.35,0.0,32170.0,3,9,7.0,3,2.0 -10197,15560,2553.657751644202,43.0,111,870.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,60.0,0.0,39882.35,0.0,38900.0,3,10,8.0,4,2.0 -10198,15561,4104.047390573368,91.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25640.0,0.0,0.0,26125.8,0.0,0.0,1,6,5.0,3,0.0 -10199,15562,1609.8531861262034,30.0,300,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32292.7,0.0,18660.0,2,0,0.0,4,2.0 -10200,15563,2253.4174932445458,40.0,221,5620.0,56,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,25162.0,0.0,250.0,3,1,2.0,2,1.0 -10201,15566,1547.0457543601908,76.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29810.0,0.0,0.0,54432.45,0.0,0.0,1,3,0.0,3,0.0 -10202,15567,891.3489270647418,53.0,300,310.0,63,2.0,2.0,7.0,3.4,0.0,0.0,0.0,10890.0,0.0,0.0,37217.4,0.0,16420.0,1,0,0.0,5,2.0 -10203,15568,1011.5625122421737,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27760.0,0.0,0.0,26297.0,0.0,0.0,1,5,0.0,3,0.0 -10204,15570,3500.766117682141,38.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53122.4,0.0,50080.0,2,7,0.0,4,2.0 -10205,15571,6112.0893128584785,32.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,8,6.0,1,1.0 -10206,15573,792.3705596517086,55.0,112,0.0,22,3,5.0,5.0,3.0,0.0,0.0,0.0,0.0,80.0,0.0,129847.15,0.0,62070.0,1,7,0.0,5,5.0 -10207,15574,1172.0899863727986,58.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21390.0,0.0,0.0,21181.55,0.0,0.0,1,6,4.0,3,0.0 -10208,15579,2404.374113875763,51.0,300,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27589.05,0.0,28790.0,1,0,0.0,1,1.0 -10209,15580,2004.3501189430483,56.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23971.95,0.0,26540.0,1,6,5.0,1,1.0 -10210,15581,1852.6739889148225,47.0,111,5600.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18894.3,0.0,13410.0,1,9,7.0,1,1.0 -10211,15583,1149.1708601013472,54.0,211,0.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,33212.1,0.0,33190.0,3,1,3.0,4,2.0 -10212,15585,4073.4360030320886,28.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21707.9,0.0,22320.0,3,10,4.0,1,1.0 -10213,15586,1244.4313392691479,63.0,400,0.0,71,0.0,2.0,1.0,1.0,0.0,0.0,0.0,10050.0,0.0,0.0,13419.0,0.0,2620.0,1,0,1.0,1,0.0 -10214,15589,3117.971190724134,25.0,112,0.0,46,2.0,2.0,5.0,2.4,0.0,4520.0,0.0,0.0,0.0,0.0,35864.0,170.0,20250.0,3,10,5.0,4,2.0 -10215,15590,1974.8296213303736,50.0,112,5650.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,25848.15,0.0,22080.0,1,8,0.0,4,2.0 -10216,15591,1295.0486599464766,69.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15930.0,0.0,0.0,15755.15,0.0,0.0,3,6,0.0,1,0.0 -10217,15592,3502.891697850763,41.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44129.95,0.0,41100.0,3,10,8.0,4,2.0 -10218,15593,2980.851026614917,38.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53979.3,0.0,53370.0,3,8,7.0,4,2.0 -10219,15596,2409.1601490946446,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49030.65,0.0,49950.0,2,9,7.0,4,2.0 -10220,15598,1763.0358664625662,64.0,120,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,29210.0,15.0,0.0,63300.05,0.0,37550.0,1,0,0.0,3,1.0 -10221,15600,2332.6737889119604,39.0,111,430.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,160.0,0.0,0.0,18603.65,0.0,16170.0,3,7,5.0,1,1.0 -10222,15603,3295.4620690976813,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32110.0,57.0,0.0,28545.7,0.0,0.0,1,5,4.0,1,0.0 -10223,15605,1497.577904338625,40.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,11.0,0.0,37324.35,0.0,43840.0,2,8,7.0,1,1.0 -10224,15606,2511.020071264715,75.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21740.0,0.0,0.0,20926.55,0.0,0.0,1,6,0.0,1,0.0 -10225,15607,1875.9903919657186,52.0,111,0.0,68,1.0,1.0,4.0,2.3,0.0,150.0,0.0,0.0,0.0,0.0,38693.65,2210.0,27020.0,3,8,7.0,2,1.0 -10226,15608,3069.4069929812517,52.0,111,0.0,85,0.0,0.0,1.0,1.0,1420.0,4260.0,0.0,0.0,0.0,0.0,5142.45,0.0,0.0,1,10,8.0,1,0.0 -10227,15609,1969.1107155632808,56.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,5080.0,0.0,170.0,0.0,0.0,4613.0,0.0,0.0,1,3,4.0,1,0.0 -10228,15610,2988.043215900585,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19160.0,0.0,0.0,19022.5,0.0,0.0,1,9,7.0,1,0.0 -10229,15611,1953.5153784055015,60.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13050.0,0.0,0.0,23039.35,0.0,10030.0,5,0,0.0,3,0.0 -10230,15612,2646.7094307956104,65.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37680.0,0.0,0.0,34818.15,0.0,0.0,1,10,8.0,3,0.0 -10231,15614,2707.6884694264745,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38090.0,0.0,0.0,36648.5,0.0,2080.0,1,10,8.0,1,0.0 -10232,15616,3088.0872054729757,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,2446.8,0.0,0.0,3,8,7.0,3,0.0 -10233,15619,2110.3988305749767,52.0,112,10840.0,52,2.0,1.0,3.0,2.0,0.0,4790.0,0.0,0.0,0.0,0.0,30923.2,0.0,16170.0,3,4,0.0,4,2.0 -10234,15620,898.9143521284398,45.0,112,0.0,52,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,45437.55,0.0,38420.0,2,8,0.0,4,2.0 -10235,15622,2409.172604065802,76.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17630.0,0.0,0.0,18526.65,0.0,0.0,1,1,2.0,1,0.0 -10236,15623,1938.0688445286976,64.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14470.0,0.0,0.0,14037.8,0.0,0.0,1,10,0.0,1,0.0 -10237,15625,4784.376525095616,26.0,111,8900.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11475.1,0.0,1630.0,3,8,7.0,1,1.0 -10238,15626,989.0679912698719,42.0,221,0.0,62,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,53543.95,0.0,45260.0,2,1,2.0,4,2.0 -10239,15627,2227.501746553937,53.0,112,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32795.55,0.0,26230.0,2,7,0.0,2,1.0 -10240,15628,1342.5277056773677,53.0,400,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29479.35,0.0,26680.0,1,0,0.0,3,2.0 -10241,15630,2419.857761414311,58.0,111,0.0,31,3,3.0,4.0,2.5,0.0,0.0,0.0,8570.0,0.0,0.0,50854.6,0.0,45020.0,1,10,8.0,4,3.0 -10242,15631,2880.657214716996,49.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,121.0,0.0,24651.8,0.0,27570.0,2,7,5.0,1,1.0 -10243,15633,2972.5138794757827,27.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,150.0,0.0,0.0,0.0,0.0,12227.25,1500.0,8780.0,3,6,4.0,1,1.0 -10244,15634,4258.175129441208,55.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13890.0,0.0,0.0,13663.15,0.0,0.0,3,9,3.0,1,0.0 -10245,15635,2056.2893055601085,35.0,111,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41038.25,0.0,40200.0,2,8,7.0,4,2.0 -10246,15637,1751.6367800502387,71.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29850.0,0.0,0.0,28910.95,0.0,230.0,1,9,0.0,3,0.0 -10247,15639,1316.8449556760518,64.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,24230.0,0.0,0.0,23934.5,0.0,0.0,2,10,8.0,4,0.0 -10248,15641,2029.6023857097218,30.0,120,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29884.55,0.0,22640.0,5,0,0.0,2,1.0 -10249,15642,2593.530559087687,72.0,400,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16150.0,0.0,0.0,30595.25,0.0,15360.0,3,0,0.0,3,1.0 -10250,15644,1566.1439649788663,71.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11960.0,0.0,0.0,11638.25,0.0,0.0,1,9,0.0,1,0.0 -10251,15645,1707.9898493190628,66.0,212,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21900.0,0.0,0.0,21703.05,0.0,0.0,1,3,0.0,3,0.0 -10252,15647,2948.2105355565745,49.0,111,0.0,44,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7541.0,0.0,0.0,3,8,7.0,1,1.0 -10253,15648,2866.1011284160104,44.0,222,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,79.0,0.0,34329.0,0.0,0.0,1,1,0.0,4,2.0 -10254,15650,794.8775806423602,47.0,112,0.0,54,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,38063.9,0.0,36170.0,3,8,0.0,4,3.0 -10255,15651,3056.2245597959754,42.0,112,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39343.85,0.0,39950.0,2,8,0.0,4,2.0 -10256,15653,2794.4602586036303,39.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20725.15,0.0,17650.0,3,8,6.0,2,1.0 -10257,15654,2504.5205580132497,61.0,111,8940.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,14980.0,0.0,0.0,29876.6,0.0,7520.0,2,10,8.0,4,0.0 -10258,15656,1496.367299137428,55.0,111,8270.0,62,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35720.9,0.0,28450.0,3,10,8.0,2,3.0 -10259,15659,2589.545463791973,84.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33990.0,0.0,0.0,30880.15,0.0,0.0,1,10,0.0,1,0.0 -10260,15661,1363.0036752353908,43.0,400,0.0,63,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,46306.25,0.0,31770.0,1,0,0.0,4,2.0 -10261,15663,2076.1633656990775,47.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,167095.15,0.0,212790.0,2,10,8.0,4,2.0 -10262,15667,2202.911789519325,65.0,111,170.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18490.0,0.0,0.0,20021.45,0.0,1700.0,3,6,4.0,3,1.0 -10263,15668,2310.4156622125324,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39270.0,0.0,0.0,35532.45,0.0,0.0,2,10,3.0,3,0.0 -10264,15669,2646.1502490736116,71.0,300,0.0,78,0.0,0.0,3.0,2.0,10900.0,0.0,0.0,23100.0,0.0,0.0,33761.35,0.0,0.0,2,0,0.0,4,0.0 -10265,15671,1837.1008130702994,38.0,111,0.0,52,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,52958.2,0.0,43610.0,2,10,8.0,4,2.0 -10266,15673,1533.31007995375,50.0,111,1530.0,38,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50900.15,0.0,43450.0,2,6,5.0,4,2.0 -10267,15679,2156.11406719691,28.0,120,0.0,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8876.9,0.0,8990.0,3,0,0.0,1,1.0 -10268,15682,2025.5925995065493,61.0,111,1930.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43140.0,0.0,0.0,45322.45,0.0,3140.0,1,10,8.0,3,0.0 -10269,15686,1135.0527547169117,48.0,211,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34072.9,0.0,34500.0,2,3,4.0,1,1.0 -10270,15690,3368.603123363773,62.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,42780.0,775.0,0.0,38724.6,0.0,0.0,3,9,7.0,1,0.0 -10271,15691,3746.593313833737,64.0,111,0.0,68,2.0,2.0,3.0,2.0,0.0,0.0,0.0,1980.0,0.0,0.0,25041.7,0.0,23060.0,3,9,7.0,4,2.0 -10272,15692,1601.4637594105868,48.0,221,0.0,42,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,39624.95,0.0,25240.0,1,1,2.0,4,2.0 -10273,15693,3355.9875475285585,46.0,221,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38828.25,0.0,40890.0,1,1,2.0,3,2.0 -10274,15695,1472.9972308991264,40.0,111,0.0,43,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,76702.95,0.0,0.0,2,8,7.0,4,2.0 -10275,15698,1816.754572686737,38.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,760.0,295.0,0.0,42302.15,0.0,40920.0,2,7,5.0,3,2.0 -10276,15699,3657.797587437078,21.0,111,380.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44502.0,0.0,45250.0,3,10,8.0,3,2.0 -10277,15702,1765.7611116810554,73.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9240.0,0.0,0.0,9009.3,0.0,0.0,1,7,5.0,1,0.0 -10278,15703,2284.5160873678137,39.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24377.2,0.0,25740.0,3,5,0.0,1,1.0 -10279,15704,5407.069320176602,61.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10880.0,0.0,0.0,12442.7,0.0,0.0,1,0,0.0,1,0.0 -10280,15707,3214.13466272672,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2050.0,0.0,0.0,17941.7,0.0,16090.0,3,8,7.0,1,1.0 -10281,15709,2448.6812895031585,58.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,1130.0,0.0,0.0,32444.45,0.0,27720.0,1,10,8.0,4,1.0 -10282,15710,1938.7273586191377,29.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16580.1,0.0,17730.0,3,7,5.0,1,1.0 -10283,15711,2742.7093148732565,37.0,111,0.0,35,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19304.6,0.0,0.0,3,9,7.0,2,1.0 -10284,15712,3250.212368122981,38.0,111,2670.0,84,0.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,12252.9,0.0,3520.0,3,10,8.0,4,0.0 -10285,15714,3614.5943811554007,30.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,5440.0,0.0,0.0,0.0,0.0,11856.0,0.0,0.0,3,9,7.0,2,0.0 -10286,15718,2719.1286498308978,69.0,111,0.0,78,0.0,0.0,3.0,1.8,0.0,0.0,0.0,15670.0,0.0,0.0,19352.0,0.0,3090.0,1,10,8.0,5,0.0 -10287,15719,3220.0639698883692,42.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43046.45,0.0,38520.0,2,7,0.0,4,2.0 -10288,15720,3596.4166944502376,61.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2710.0,0.0,0.0,5422.0,0.0,0.0,3,9,0.0,1,0.0 -10289,15723,1736.0856906462022,68.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26970.0,0.0,0.0,34332.8,0.0,3390.0,1,7,1.0,3,1.0 -10290,15724,2437.3951672390385,39.0,111,11100.0,21,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27039.0,0.0,6430.0,2,8,7.0,4,2.0 -10291,15726,5388.796716109584,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13170.0,0.0,0.0,15283.65,0.0,0.0,1,9,7.0,1,0.0 -10292,15727,3862.029995014615,53.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,20.0,0.0,106155.15,0.0,410.0,1,8,0.0,3,2.0 -10293,15729,3686.7558097261362,81.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11190.0,0.0,0.0,15648.0,0.0,0.0,3,8,1.0,1,0.0 -10294,15730,939.3426373043292,44.0,300,0.0,52,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,57227.2,0.0,28960.0,1,0,0.0,4,3.0 -10295,15731,3620.9552750122,37.0,111,0.0,85,0.0,0.0,1.0,1.0,13050.0,0.0,0.0,0.0,0.0,0.0,18487.0,0.0,0.0,3,8,6.0,1,0.0 -10296,15734,3145.4237933200993,51.0,111,0.0,85,0.0,0.0,2.0,1.5,2770.0,5710.0,0.0,0.0,0.0,0.0,11624.0,0.0,0.0,3,9,7.0,3,0.0 -10297,15735,5337.334706434544,21.0,221,0.0,67,1.0,1.0,3.0,1.8,0.0,6420.0,0.0,0.0,0.0,0.0,13108.0,0.0,1250.0,3,1,2.0,4,1.0 -10298,15738,1465.9453466128116,59.0,400,3250.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19540.0,0.0,0.0,26040.85,0.0,5870.0,1,0,0.0,3,1.0 -10299,15740,5279.012828742617,75.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18900.0,99.0,0.0,19766.15,0.0,0.0,1,7,0.0,3,0.0 -10300,15741,3797.6390832321817,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15590.0,0.0,0.0,15088.65,0.0,0.0,1,8,6.0,1,0.0 -10301,15743,2975.7761627345853,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,4950.0,0.0,0.0,0.0,0.0,7576.0,0.0,0.0,3,9,7.0,1,0.0 -10302,15744,2130.1413814288208,66.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23120.0,0.0,0.0,21313.45,0.0,0.0,1,8,1.0,1,0.0 -10303,15745,4387.2051322621355,39.0,111,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24724.9,0.0,19510.0,2,10,8.0,4,2.0 -10304,15746,1442.7909971900676,54.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,60.0,0.0,99483.15,0.0,115070.0,2,6,4.0,3,2.0 -10305,15747,2358.5985588735593,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13220.0,0.0,0.0,14204.0,0.0,0.0,3,6,4.0,1,0.0 -10306,15748,1398.1871580399607,44.0,111,180.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46003.8,0.0,38980.0,2,8,7.0,4,2.0 -10307,15749,3524.084517408739,24.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29379.55,0.0,31390.0,3,9,7.0,1,1.0 -10308,15751,3620.7722403447992,36.0,111,1400.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49403.5,0.0,43470.0,2,10,8.0,4,1.0 -10309,15752,1876.1401085357236,41.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15590.0,0.0,17230.0,2,0,0.0,1,1.0 -10310,15754,2577.7832182211223,58.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17010.0,0.0,0.0,70865.25,0.0,65590.0,1,10,8.0,3,1.0 -10311,15755,3682.400200758022,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14850.0,0.0,0.0,14850.0,0.0,0.0,3,8,7.0,1,0.0 -10312,15756,2417.7684038017014,59.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37042.4,0.0,38580.0,3,6,4.0,2,2.0 -10313,15758,1412.671329636667,45.0,300,0.0,13,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,17975.05,0.0,0.0,3,0,0.0,4,2.0 -10314,15761,2960.5730865046617,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46875.8,0.0,47210.0,2,10,8.0,4,2.0 -10315,15762,2343.1112977459115,55.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19190.0,0.0,0.0,53189.0,0.0,38610.0,1,9,7.0,3,1.0 -10316,15763,1103.078788815472,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23520.0,0.0,0.0,22334.5,0.0,0.0,1,8,7.0,3,0.0 -10317,15764,2707.9912528258355,49.0,111,0.0,46,3,2.0,4.0,2.5,0.0,0.0,0.0,10390.0,0.0,0.0,68973.35,0.0,63860.0,2,10,8.0,4,3.0 -10318,15765,2306.8244008988668,58.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55149.45,0.0,61930.0,1,6,5.0,3,2.0 -10319,15769,3423.7794214523924,20.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35.0,0.0,0.0,3,9,7.0,3,0.0 -10320,15770,2718.938024054064,85.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,50530.0,0.0,0.0,43084.75,0.0,0.0,1,10,8.0,1,0.0 -10321,15771,3378.6764273219565,58.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16591.0,0.0,16670.0,3,9,7.0,1,1.0 -10322,15772,1144.0077246843173,51.0,211,0.0,68,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,15855.0,31807.75,0.0,15090.0,3,1,2.0,2,3.0 -10323,15774,2744.1013134439077,31.0,111,1800.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38628.55,0.0,39310.0,3,10,8.0,3,2.0 -10324,15775,988.3790534036456,51.0,111,300.0,38,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41259.15,0.0,43590.0,3,7,5.0,2,2.0 -10325,15776,3355.9533401999292,29.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29637.05,0.0,31750.0,3,8,6.0,1,1.0 -10326,15778,960.7104417746897,51.0,111,17100.0,63,2.0,2.0,8.0,4.5,0.0,0.0,0.0,2000.0,0.0,0.0,77634.65,0.0,49860.0,1,9,7.0,4,2.0 -10327,15779,1942.579336886299,54.0,300,0.0,11,2.0,1.0,2.0,1.5,0.0,0.0,0.0,12190.0,0.0,0.0,27741.2,0.0,0.0,1,0,0.0,3,2.0 -10328,15780,2182.8111107883396,89.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16810.0,0.0,0.0,16981.7,0.0,0.0,5,9,7.0,1,0.0 -10329,15781,3242.944431253079,26.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12255.65,0.0,10560.0,3,10,8.0,3,1.0 -10330,15782,1425.5357760864827,52.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23206.65,210.0,23100.0,3,4,4.0,2,1.0 -10331,15783,1731.2965651600296,30.0,111,600.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45236.7,0.0,44050.0,2,9,7.0,4,2.0 -10332,15784,8342.715762926871,29.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42011.55,0.0,23210.0,2,8,6.0,4,2.0 -10333,15786,2179.335146754034,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26800.0,0.0,0.0,27757.5,0.0,0.0,1,7,5.0,3,0.0 -10334,15787,3100.549087272937,37.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,21.0,0.0,117859.8,0.0,54910.0,2,9,7.0,4,2.0 -10335,15788,1366.251824989298,49.0,111,0.0,85,2.0,0.0,5.0,2.8,0.0,8010.0,0.0,0.0,0.0,0.0,19420.0,0.0,0.0,3,9,7.0,2,2.0 -10336,15789,2729.5253772946194,58.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44597.4,0.0,48810.0,1,9,7.0,3,2.0 -10337,15791,2636.3327380376822,57.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31770.0,237.0,0.0,84428.5,0.0,41650.0,1,8,7.0,3,1.0 -10338,15794,3982.3953439989077,48.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20878.65,0.0,21990.0,3,9,7.0,1,1.0 -10339,15795,2976.791099249691,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18490.0,0.0,0.0,17905.0,0.0,0.0,1,9,7.0,3,0.0 -10340,15796,3342.0680048357276,42.0,111,0.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,389.0,0.0,16662.15,0.0,16980.0,1,10,8.0,1,1.0 -10341,15797,3488.97375571492,39.0,300,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38050.5,0.0,36450.0,2,0,1.0,4,2.0 +,ident_men,pondmen,agepr,cataeu,chomage,cs42pr,nactifs,nactoccup,npers,ocde10,prest_precarite_hand,prest_precarite_rsa,prest_precarite_vieil,retraites,rev_valeurs_mobilieres_bruts,rev_etranger,rev_disponible,ppa,salaires,stalog,tau,tuu,typmen,donation_class_1 +0,1,1443.2610177173326,73.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25180.0,0.0,0.0,34009.3,0.0,0.0,1,4,0.0,3,0.0 +1,2,2407.1262995995844,65.0,212,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17170.0,0.0,0.0,15422.05,0.0,0.0,1,2,0.0,1,0.0 +2,3,968.686099856059,40.0,111,0.0,62,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,34021.8,2270.0,19460.0,3,7,5.0,4,2.0 +3,4,2076.2034037169337,78.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23710.0,1771.0,0.0,23743.45,0.0,0.0,1,0,0.0,3,0.0 +4,5,1364.6628510044739,56.0,111,0.0,33,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40984.75,0.0,42870.0,3,8,7.0,4,3.0 +5,6,1834.8595620262238,48.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,130.0,0.0,0.0,0.0,0.0,20441.15,6390.0,13510.0,1,7,0.0,4,2.0 +6,7,4365.148639364243,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3693.0,0.0,0.0,3,7,6.0,1,0.0 +7,8,2409.3564236983652,46.0,111,0.0,64,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,45.0,0.0,50637.8,0.0,41220.0,2,6,5.0,4,2.0 +8,9,2838.8770949380814,36.0,111,6860.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31428.75,0.0,24910.0,3,9,7.0,3,1.0 +9,12,2461.4647651619143,61.0,111,6720.0,62,3,2.0,3.0,2.0,0.0,0.0,0.0,12810.0,0.0,0.0,44625.1,0.0,31620.0,2,9,7.0,4,3.0 +10,13,755.8603817739759,42.0,111,0.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36607.25,0.0,34910.0,1,9,7.0,4,2.0 +11,14,2035.2929129067068,40.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27660.7,0.0,30210.0,2,6,4.0,1,1.0 +12,16,1403.9672542002645,60.0,112,2460.0,33,1.0,0.0,2.0,1.5,0.0,0.0,0.0,35990.0,0.0,0.0,36883.2,0.0,20.0,1,8,0.0,3,1.0 +13,17,2156.3222245494717,79.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25190.0,0.0,0.0,24795.5,0.0,0.0,1,0,1.0,3,0.0 +14,18,2028.9885385804282,45.0,112,0.0,21,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,57727.5,0.0,0.0,2,9,0.0,4,1.0 +15,19,4779.2975941882405,38.0,300,4960.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15467.4,740.0,6790.0,3,0,1.0,1,1.0 +16,20,2225.422466192601,79.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26180.0,0.0,0.0,26262.25,0.0,0.0,1,0,0.0,3,0.0 +17,21,666.089278780956,32.0,111,0.0,81,1.0,0.0,4.0,1.9,0.0,5190.0,0.0,0.0,0.0,0.0,21161.0,0.0,0.0,3,7,6.0,2,1.0 +18,23,3471.1368200759825,37.0,111,940.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34766.25,0.0,34820.0,3,10,8.0,3,2.0 +19,24,1991.7174274932624,57.0,300,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25903.3,0.0,28450.0,1,0,0.0,3,1.0 +20,25,1387.2404248635814,80.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21500.0,0.0,0.0,18227.55,0.0,0.0,1,9,7.0,3,0.0 +21,26,2855.3500202763066,21.0,111,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,11844.0,0.0,0.0,3,8,6.0,1,0.0 +22,28,1890.4634260707105,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47440.0,0.0,0.0,41443.2,0.0,0.0,1,7,6.0,3,0.0 +23,29,1031.2008961107038,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33240.0,0.0,0.0,31790.65,0.0,0.0,3,8,7.0,3,0.0 +24,32,1829.2131170365235,33.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44686.55,0.0,36150.0,2,10,5.0,4,2.0 +25,34,2234.977513829303,43.0,400,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,249.0,0.0,40206.05,0.0,37810.0,2,0,0.0,4,2.0 +26,35,5446.835168305039,58.0,111,0.0,78,1.0,1.0,4.0,2.5,9700.0,0.0,0.0,0.0,0.0,0.0,27885.0,0.0,14170.0,3,10,8.0,4,1.0 +27,38,2327.8883973261636,63.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16430.0,0.0,0.0,21223.5,0.0,4190.0,1,7,5.0,3,1.0 +28,39,1448.1158159501165,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37160.0,0.0,0.0,33889.4,0.0,0.0,1,8,7.0,3,0.0 +29,40,4724.114883566748,78.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1140.0,8230.0,0.0,0.0,9876.75,0.0,0.0,1,8,0.0,1,0.0 +30,43,1946.6509623970333,75.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33020.0,0.0,0.0,31815.05,0.0,0.0,2,8,1.0,3,0.0 +31,44,2740.8485978600324,75.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69010.0,1089.0,0.0,71504.65,0.0,0.0,1,9,1.0,3,0.0 +32,45,104.1483605566685,38.0,112,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,26869.35,0.0,21260.0,2,5,0.0,2,1.0 +33,46,2335.8498005296447,61.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,124708.85,0.0,143900.0,1,7,5.0,4,2.0 +34,47,1166.6992218579433,29.0,111,0.0,56,1.0,0.0,3.0,1.6,0.0,7680.0,0.0,0.0,0.0,0.0,15706.0,0.0,0.0,3,7,5.0,2,1.0 +35,48,589.1078317783387,41.0,211,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38222.15,0.0,17750.0,2,2,2.0,2,1.0 +36,52,3471.4069741335106,27.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24795.15,0.0,27450.0,3,9,7.0,1,1.0 +37,53,1729.25424924465,69.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9040.0,0.0,0.0,12018.0,2760.0,0.0,5,0,0.0,1,0.0 +38,55,5196.968885264095,31.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31954.6,0.0,36080.0,3,10,8.0,1,1.0 +39,57,3621.7097596834515,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,58950.0,0.0,0.0,45859.53565243262,0.0,0.0,1,10,8.0,1,0.0 +40,58,1934.9301693322184,67.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27570.0,0.0,0.0,26702.25,0.0,0.0,1,0,0.0,3,0.0 +41,62,851.5262988384949,44.0,221,7660.0,68,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,33598.0,0.0,12260.0,3,1,3.0,2,2.0 +42,63,3448.9613895374214,57.0,111,0.0,78,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,13020.0,0.0,0.0,3,8,7.0,1,0.0 +43,64,2488.057607323587,54.0,111,17750.0,52,3,1.0,3.0,2.0,0.0,0.0,0.0,5650.0,0.0,0.0,55152.35,0.0,34580.0,3,10,8.0,2,3.0 +44,66,1391.8790322186903,63.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40380.0,0.0,0.0,36227.5,0.0,0.0,1,1,3.0,3,0.0 +45,67,1747.4193348393649,59.0,300,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20010.0,0.0,0.0,39216.95,0.0,18290.0,1,0,1.0,3,1.0 +46,68,1718.4388403910796,44.0,300,8950.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40634.65,0.0,29730.0,2,0,0.0,4,2.0 +47,69,1719.6629230279357,45.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42160.45,0.0,41840.0,1,8,7.0,2,1.0 +48,72,1497.0068606314055,62.0,222,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23720.0,0.0,0.0,25368.8,0.0,0.0,1,1,0.0,3,0.0 +49,73,2536.102174771881,39.0,120,2660.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,23.0,0.0,37536.75,0.0,33370.0,1,0,0.0,4,2.0 +50,74,2973.8092948770895,54.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,676.0,0.0,67834.98175310515,0.0,77170.0,2,9,7.0,1,1.0 +51,75,484.95147107788654,54.0,111,0.0,69,3,0.0,3.0,2.0,0.0,11650.0,0.0,0.0,0.0,0.0,15400.95,0.0,0.0,3,8,7.0,2,3.0 +52,77,1951.9516134447072,63.0,111,0.0,52,1.0,0.0,2.0,1.5,0.0,0.0,0.0,31640.0,0.0,0.0,30018.1,0.0,0.0,1,9,7.0,3,1.0 +53,79,1657.0377486495654,60.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17885.1,0.0,19650.0,1,9,7.0,3,0.0 +54,80,2948.8438237666796,38.0,400,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37019.5,0.0,32650.0,2,0,0.0,4,2.0 +55,82,1399.48355556834,54.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35379.0,0.0,26960.0,1,8,0.0,1,1.0 +56,85,2840.9211598665165,59.0,112,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18610.0,0.0,0.0,42967.85,0.0,31860.0,2,9,3.0,3,1.0 +57,87,1816.6345479317195,79.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44340.0,0.0,0.0,41888.3,0.0,0.0,1,7,1.0,3,0.0 +58,88,2461.9281072899744,38.0,111,0.0,52,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29404.5,0.0,24200.0,1,10,8.0,4,1.0 +59,90,488.03067373515734,48.0,221,0.0,22,1.0,1.0,2.0,1.3,0.0,4390.0,0.0,0.0,0.0,0.0,16750.0,1370.0,0.0,3,1,3.0,2,1.0 +60,92,1624.9821242257512,54.0,112,0.0,31,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29617.6,0.0,31940.0,1,6,0.0,2,1.0 +61,93,1872.5278439465997,48.0,112,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,87291.72119662231,0.0,110800.0,1,9,3.0,3,1.0 +62,94,1883.665899802291,60.0,400,0.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,6470.0,0.0,0.0,33293.4,0.0,28510.0,3,0,0.0,3,2.0 +63,95,2755.7378617872464,58.0,111,0.0,78,0.0,0.0,1.0,1.0,10960.0,0.0,0.0,0.0,0.0,0.0,14233.0,0.0,0.0,3,9,7.0,1,0.0 +64,96,2616.1321550313032,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33250.0,0.0,0.0,30993.3,0.0,0.0,3,6,4.0,1,0.0 +65,97,2575.4177176820713,27.0,112,1310.0,48,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36517.05,450.0,28040.0,3,9,0.0,4,2.0 +66,100,2769.2862169113164,45.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,3572.0,0.0,88346.35,0.0,100360.0,2,10,8.0,4,2.0 +67,101,2661.087939501533,39.0,112,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51272.35,0.0,52070.0,2,10,4.0,4,2.0 +68,103,2129.212024759391,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1865.2,0.0,0.0,3,8,7.0,1,0.0 +69,104,5863.394312347439,27.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23248.25,0.0,25870.0,3,10,8.0,1,1.0 +70,105,1757.335482854578,55.0,400,0.0,85,0.0,0.0,1.0,1.0,1360.0,0.0,0.0,0.0,0.0,0.0,1361.0,0.0,0.0,3,0,1.0,1,0.0 +71,106,2711.8576827987695,44.0,111,0.0,62,2.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,19335.45,0.0,18340.0,3,10,8.0,4,2.0 +72,107,4912.60252899729,25.0,111,6840.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7528.0,0.0,0.0,3,8,7.0,1,1.0 +73,109,587.4758010200029,35.0,111,0.0,47,1.0,1.0,8.0,3.5,0.0,1110.0,0.0,0.0,0.0,0.0,39335.0,2220.0,14890.0,3,8,6.0,4,1.0 +74,110,3971.2439281637617,39.0,111,15640.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19615.35,0.0,750.0,3,8,6.0,1,1.0 +75,113,4233.29975051451,29.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46301.55,0.0,50810.0,3,9,7.0,3,2.0 +76,114,3699.4169545860764,61.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28950.0,0.0,0.0,28624.6,0.0,2780.0,2,8,0.0,3,1.0 +77,115,714.1756916809048,52.0,111,0.0,56,1.0,0.0,2.0,1.3,0.0,7120.0,0.0,0.0,0.0,0.0,12756.0,0.0,0.0,3,7,6.0,2,1.0 +78,116,1796.199623065384,60.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24610.0,0.0,0.0,30838.45,0.0,0.0,1,0,0.0,3,0.0 +79,117,4525.742995851306,66.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26260.0,0.0,0.0,24753.0,0.0,0.0,3,1,2.0,1,0.0 +80,118,1588.368633190437,35.0,111,0.0,37,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,49012.25,0.0,38280.0,1,6,5.0,4,2.0 +81,119,2809.405389198291,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55910.0,935.0,0.0,50519.1,0.0,0.0,1,9,7.0,3,0.0 +82,120,2443.7408944133117,46.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13418.55,0.0,9470.0,3,8,6.0,1,1.0 +83,121,2478.5925457114813,60.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15040.0,0.0,0.0,42101.65,0.0,28140.0,1,9,0.0,3,1.0 +84,123,1203.2534858955178,64.0,221,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,13100.0,0.0,0.0,21629.20881122689,0.0,610.0,3,1,3.0,1,1.0 +85,124,2311.589752088853,39.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15732.25,0.0,16020.0,3,6,4.0,1,1.0 +86,126,1742.35951167583,52.0,221,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35017.45,0.0,40480.0,2,1,2.0,1,1.0 +87,127,6633.094411014925,23.0,112,2260.0,85,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13025.85,0.0,8610.0,3,9,1.0,3,1.0 +88,128,2670.3503228078616,48.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,52971.05,0.0,63940.0,1,10,8.0,1,1.0 +89,129,2383.4659165856656,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18660.0,0.0,0.0,18818.850952877594,0.0,270.0,3,7,4.0,3,0.0 +90,130,1967.0233411951458,47.0,120,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15165.0,0.0,15070.0,5,0,0.0,1,1.0 +91,131,1695.2231928318872,86.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35540.0,0.0,0.0,33261.35,0.0,0.0,1,1,3.0,3,0.0 +92,132,2611.6522339262924,27.0,111,10200.0,47,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36110.05,0.0,24590.0,2,7,5.0,4,2.0 +93,133,1793.8290676411277,54.0,400,4720.0,37,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,61622.05,0.0,62100.0,2,0,1.0,4,3.0 +94,135,2830.521266788431,59.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48269.4,0.0,53270.0,1,9,7.0,3,2.0 +95,136,3199.4274680372923,85.0,111,0.0,78,2.0,2.0,4.0,2.5,0.0,0.0,0.0,23840.0,0.0,0.0,67279.3,0.0,41390.0,1,9,7.0,4,2.0 +96,137,1652.352072995406,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29020.0,0.0,0.0,28994.85,0.0,0.0,1,6,0.0,3,0.0 +97,138,1168.7074700346052,37.0,111,7520.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,63868.55,0.0,63430.0,2,7,5.0,4,3.0 +98,139,2603.316122180565,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48600.0,0.0,0.0,43608.0,0.0,0.0,2,9,7.0,3,0.0 +99,141,1018.8348371952153,49.0,120,0.0,64,1.0,1.0,4.0,2.5,5750.0,0.0,0.0,0.0,0.0,0.0,27126.0,0.0,21340.0,2,0,3.0,4,1.0 +100,142,2147.6121337352038,76.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31990.0,16.0,0.0,31374.9,0.0,0.0,1,8,7.0,3,0.0 +101,143,1874.2153931630617,44.0,111,140.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,187.0,0.0,53119.0,0.0,62620.0,2,10,8.0,3,2.0 +102,144,2097.865774306535,48.0,400,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17761.65,0.0,18840.0,2,0,1.0,1,1.0 +103,145,4808.2587950648485,51.0,221,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9174.2,1650.0,6850.0,3,1,2.0,1,1.0 +104,146,3019.0930477967136,31.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59568.95,0.0,66730.0,3,9,7.0,3,2.0 +105,147,2033.057984061535,57.0,111,12490.0,55,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21077.75,1920.0,7100.0,1,8,7.0,2,2.0 +106,148,5023.5508779932015,60.0,112,3940.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11740.0,0.0,0.0,15467.5,0.0,0.0,1,8,1.0,1,0.0 +107,151,3093.515350462144,36.0,111,11020.0,38,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63149.1,0.0,59990.0,2,9,7.0,4,1.0 +108,152,3743.735372296475,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33500.0,2048.0,0.0,34500.55,0.0,0.0,1,9,7.0,3,0.0 +109,153,1907.071027175745,44.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14313.0,2370.0,10990.0,3,9,7.0,1,1.0 +110,156,2019.616769541452,58.0,300,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13000.0,0.0,0.0,25990.2,0.0,13310.0,1,0,0.0,3,1.0 +111,157,1766.502956550528,58.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31992.05,0.0,37270.0,3,7,5.0,1,1.0 +112,160,1691.7131201298432,52.0,221,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,57630.7860665272,0.0,23370.0,1,1,2.0,4,2.0 +113,161,1783.5918067039086,43.0,111,240.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,48620.6,0.0,34310.0,5,9,7.0,4,2.0 +114,162,2264.879043881927,45.0,300,0.0,12,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,8524.9,3380.0,0.0,1,0,1.0,2,1.0 +115,163,1026.4341607798979,36.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25219.8,2080.0,20170.0,3,8,6.0,2,1.0 +116,164,727.6728703952124,33.0,111,5950.0,68,1.0,0.0,3.0,1.6,0.0,0.0,0.0,3390.0,0.0,0.0,20220.85,0.0,0.0,3,9,7.0,2,1.0 +117,166,2723.046476433052,78.0,112,0.0,77,0.0,0.0,2.0,1.5,1270.0,0.0,0.0,10170.0,0.0,0.0,15195.0,0.0,0.0,3,8,2.0,2,0.0 +118,167,2603.266593791012,56.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1850.0,0.0,0.0,28285.8,0.0,29960.0,3,8,7.0,1,1.0 +119,168,1237.4376315396419,43.0,112,5860.0,85,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,23302.3,700.0,9930.0,3,8,0.0,4,1.0 +120,169,1921.7836544793402,58.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,98272.45,0.0,99290.0,1,7,5.0,4,2.0 +121,170,4605.571725683448,31.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,14842.55,0.0,15310.0,2,10,8.0,4,2.0 +122,171,2552.8260016867707,34.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,83754.05,0.0,29320.0,2,9,7.0,3,2.0 +123,172,1534.1385186349537,64.0,111,4170.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35080.0,0.0,0.0,36653.65,0.0,0.0,1,8,6.0,3,0.0 +124,175,2653.028402721554,51.0,111,16680.0,55,3,2.0,5.0,3.0,0.0,0.0,0.0,16130.0,0.0,0.0,62403.0,0.0,25330.0,3,10,8.0,4,3.0 +125,176,1750.5700631177829,78.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13950.0,0.0,0.0,13855.95,0.0,0.0,1,0,1.0,1,0.0 +126,177,1731.4250168028175,40.0,300,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,51869.8,0.0,46970.0,2,0,0.0,4,2.0 +127,178,2384.8029917863782,57.0,111,0.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56793.5,1890.0,57860.0,3,8,6.0,4,3.0 +128,179,3059.3125417628594,81.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47480.0,0.0,0.0,39857.98656268595,0.0,0.0,1,6,5.0,3,0.0 +129,180,1676.6216912052168,67.0,112,0.0,69,1.0,1.0,2.0,1.5,0.0,0.0,0.0,38910.0,0.0,0.0,46245.95,0.0,11250.0,3,8,3.0,3,1.0 +130,181,2405.1194083510827,37.0,300,4590.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25120.25,160.0,17140.0,2,0,0.0,4,2.0 +131,182,1227.522399667913,63.0,112,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12050.0,0.0,0.0,11530.65,0.0,0.0,1,8,0.0,1,0.0 +132,184,4360.74253922939,32.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,87924.8,0.0,95060.0,1,9,7.0,3,2.0 +133,185,2870.447593608429,59.0,112,34960.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39806.45,0.0,8250.0,1,9,1.0,3,1.0 +134,187,3101.185428967816,39.0,221,1560.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51384.1,0.0,50690.0,2,1,1.0,4,2.0 +135,192,2593.909789133313,65.0,111,5910.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,29580.0,0.0,0.0,40300.45,0.0,8570.0,1,8,7.0,3,1.0 +136,193,2634.0739031206076,55.0,112,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,4004.2,0.0,2810.0,1,9,0.0,4,1.0 +137,195,4124.059532960699,35.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11528.0,2740.0,8310.0,3,6,4.0,1,1.0 +138,196,2407.79795239794,52.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4636.825,0.0,7590.0,2,9,7.0,1,1.0 +139,197,2623.544785776209,69.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24050.0,0.0,0.0,23993.85,0.0,0.0,1,9,1.0,3,0.0 +140,198,2596.1227508238003,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13400.0,0.0,0.0,20151.0,0.0,0.0,1,7,5.0,1,0.0 +141,199,2822.3224761753613,69.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,31740.0,0.0,0.0,36038.2,0.0,710.0,1,6,0.0,4,1.0 +142,200,2536.90480623849,61.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18763.9,560.0,18520.0,3,6,2.0,1,1.0 +143,201,2263.9470303212493,73.0,400,0.0,22,1.0,0.0,1.0,1.0,0.0,0.0,0.0,28060.0,0.0,0.0,29700.445,0.0,0.0,1,0,0.0,1,1.0 +144,202,1821.6601644577026,46.0,111,0.0,85,0.0,0.0,3.0,1.8,0.0,0.0,0.0,7480.0,0.0,0.0,16913.0,0.0,0.0,3,8,6.0,2,0.0 +145,204,2603.927367786302,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21260.0,0.0,0.0,20152.0,0.0,0.0,1,9,7.0,1,0.0 +146,205,2388.485907584128,42.0,400,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34921.4,780.0,33750.0,2,0,0.0,4,2.0 +147,207,3457.5706692498748,84.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10040.0,0.0,0.0,11525.05,0.0,0.0,5,0,0.0,1,0.0 +148,208,440.92107265465313,71.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22460.0,0.0,0.0,34333.198179493345,0.0,9000.0,1,9,7.0,3,1.0 +149,209,2166.157145442686,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19310.0,0.0,0.0,17870.25,0.0,0.0,1,6,4.0,1,0.0 +150,211,2241.924620846137,83.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54010.0,4352.0,0.0,66925.9,0.0,0.0,1,0,0.0,3,0.0 +151,213,1654.4424695896678,53.0,111,17900.0,65,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50538.6,50.0,34070.0,3,9,7.0,4,3.0 +152,219,2122.5787759992945,89.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33380.0,0.0,0.0,29767.75,0.0,0.0,1,8,6.0,1,0.0 +153,220,2679.943942425379,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10980.0,0.0,0.0,13440.0,0.0,0.0,3,9,7.0,1,0.0 +154,221,3304.536000534461,48.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19623.8,1050.0,18820.0,3,9,7.0,1,1.0 +155,222,2374.772682748881,34.0,111,19960.0,85,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28349.6,610.0,8050.0,3,7,5.0,3,0.0 +156,223,1667.8575317572622,52.0,120,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,70739.05,0.0,74580.0,1,0,0.0,4,2.0 +157,224,2856.2335564025343,59.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0,20153.15,550.0,19280.0,3,8,1.0,1,1.0 +158,225,2657.6418077695885,28.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,5.0,0.0,39515.7,0.0,42830.0,2,9,7.0,3,2.0 +159,228,3118.421385417656,78.0,111,0.0,86,0.0,0.0,3.0,2.0,0.0,0.0,8750.0,57230.0,0.0,0.0,55925.55,0.0,0.0,1,10,8.0,5,0.0 +160,229,2577.0266063261697,91.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15090.0,0.0,0.0,14759.55,0.0,0.0,1,9,2.0,1,0.0 +161,231,1776.9951313003755,49.0,111,13310.0,33,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,74861.95,0.0,55560.0,2,10,8.0,4,2.0 +162,232,1739.6250753001011,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67880.0,387.0,0.0,65716.06145823457,0.0,0.0,1,7,5.0,3,0.0 +163,233,1590.9436830523014,63.0,300,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,29020.0,0.0,0.0,26620.43043045416,0.0,0.0,1,0,0.0,4,1.0 +164,234,1129.3245660518598,37.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,8276.25,0.0,2940.0,3,10,8.0,2,1.0 +165,235,2130.6599406987716,59.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35956.45,0.0,37980.0,3,6,4.0,3,2.0 +166,236,2076.7300452433155,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46680.0,0.0,0.0,27187.2,0.0,0.0,1,9,7.0,3,0.0 +167,238,2367.988830647579,61.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42850.0,0.0,0.0,39789.5,0.0,0.0,2,10,8.0,3,0.0 +168,239,1891.9308483374618,53.0,300,4700.0,56,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29886.35,0.0,10560.0,1,0,0.0,4,3.0 +169,240,2448.5727897399493,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35230.0,0.0,0.0,40144.45,0.0,0.0,3,6,4.0,3,0.0 +170,242,1331.2419211087408,81.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56390.0,0.0,0.0,51169.8,0.0,0.0,1,4,4.0,3,0.0 +171,243,1563.0120503487074,58.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46391.95,0.0,50880.0,1,9,1.0,3,2.0 +172,247,1830.5125075262679,53.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,102627.55,0.0,124390.0,1,10,8.0,4,2.0 +173,248,3702.2505810252183,54.0,111,270.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43093.15,0.0,44640.0,3,9,7.0,4,2.0 +174,249,2687.4636721187385,57.0,120,0.0,62,1.0,1.0,3.0,2.0,0.0,6540.0,0.0,0.0,0.0,0.0,23457.45,3160.0,14100.0,1,0,1.0,4,1.0 +175,251,3901.3317652186147,23.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,9,7.0,1,1.0 +176,252,2386.552869007791,69.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13940.0,0.0,0.0,13109.95,0.0,0.0,1,1,2.0,1,0.0 +177,254,563.0811256916365,36.0,111,0.0,85,0.0,0.0,7.0,3.4,0.0,4650.0,0.0,0.0,0.0,0.0,32973.0,0.0,0.0,3,8,7.0,2,0.0 +178,255,2999.9553725462315,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17420.0,0.0,0.0,16640.95,0.0,0.0,1,6,5.0,1,0.0 +179,257,1547.2884020907343,45.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,407.0,0.0,60263.25,0.0,60610.0,2,7,5.0,4,2.0 +180,258,3611.845886891875,59.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16707.55,0.0,18570.0,3,9,7.0,1,0.0 +181,260,2836.5550143610944,62.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,50460.0,204.0,0.0,70777.5,0.0,35430.0,1,10,8.0,3,1.0 +182,261,1830.2688432569407,63.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22950.0,0.0,0.0,22820.5,0.0,530.0,1,0,0.0,3,0.0 +183,262,1163.772107091729,34.0,111,0.0,67,1.0,0.0,4.0,1.9,0.0,3470.0,0.0,0.0,0.0,0.0,24040.0,250.0,3110.0,3,10,8.0,2,1.0 +184,263,1501.3102045513237,72.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,44260.0,0.0,0.0,42523.4,0.0,0.0,1,9,7.0,3,1.0 +185,264,2584.2222036199505,37.0,300,4440.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36235.55,90.0,29840.0,3,0,0.0,4,2.0 +186,265,2812.8585101615135,44.0,112,0.0,23,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52761.0,0.0,56740.0,1,9,2.0,4,2.0 +187,266,2438.2447195448835,76.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30770.0,103.0,0.0,29917.3709016782,0.0,0.0,1,10,8.0,1,0.0 +188,267,418.5314356990924,46.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42015.55,0.0,41470.0,3,7,5.0,4,2.0 +189,268,821.7147561769575,37.0,111,12770.0,85,0.0,0.0,2.0,1.3,0.0,570.0,0.0,0.0,0.0,0.0,19494.8,450.0,0.0,3,8,7.0,2,0.0 +190,269,1253.223311824632,71.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12430.0,0.0,0.0,13018.0,0.0,0.0,3,7,5.0,1,0.0 +191,270,5061.3946972964395,51.0,221,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41886.85,0.0,36030.0,3,1,2.0,3,2.0 +192,271,1416.4846032667851,74.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48330.0,0.0,0.0,43482.868452569346,0.0,0.0,1,8,1.0,3,0.0 +193,273,4474.383252612522,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21200.0,0.0,0.0,20428.65,0.0,0.0,3,8,7.0,1,0.0 +194,276,3307.4693859274194,66.0,400,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32920.0,9.0,0.0,32155.35,0.0,0.0,1,0,0.0,5,0.0 +195,277,660.450367538856,50.0,111,6790.0,52,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29993.7,1710.0,17720.0,3,7,4.0,2,3.0 +196,279,772.273739499116,56.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28421.5,0.0,32350.0,1,7,5.0,1,1.0 +197,281,1736.9703686184882,78.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25960.0,0.0,0.0,25666.25,0.0,0.0,5,9,1.0,3,0.0 +198,282,1833.2125774970575,63.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,218.0,0.0,67813.1,0.0,80880.0,1,9,3.0,3,2.0 +199,283,1821.4266237472823,59.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,372.0,0.0,56573.85,0.0,60950.0,1,10,4.0,3,2.0 +200,284,4318.6766667262345,24.0,111,0.0,63,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25174.0,1550.0,19520.0,3,4,4.0,4,1.0 +201,286,2532.0104444736257,58.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5800.0,0.0,0.0,46697.35,0.0,48020.0,1,8,2.0,3,1.0 +202,287,3763.705862465759,35.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25606.65,0.0,30410.0,2,10,8.0,1,1.0 +203,288,5420.906010900967,46.0,221,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,9470.0,0.0,0.0,59078.65,0.0,52100.0,3,1,2.0,3,2.0 +204,289,1997.4521944559822,66.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41140.0,0.0,0.0,38289.0,0.0,0.0,1,0,0.0,3,0.0 +205,290,456.53500491705694,44.0,221,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24161.25,0.0,24080.0,3,1,2.0,2,1.0 +206,292,2390.536851109908,62.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32770.0,359.0,0.0,39900.55,0.0,0.0,1,8,6.0,3,0.0 +207,293,783.2132739536183,54.0,111,0.0,53,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,50086.75,0.0,41270.0,5,7,5.0,2,1.0 +208,295,4204.124225348431,28.0,120,150.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41355.1,0.0,37810.0,2,0,0.0,4,2.0 +209,297,231.22536438717472,44.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23066.15,0.0,22580.0,5,9,0.0,2,1.0 +210,299,1783.2511019993951,53.0,300,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49660.85,0.0,28040.0,1,0,0.0,3,2.0 +211,301,407.91789972700894,31.0,111,0.0,68,1.0,0.0,3.0,1.6,0.0,6070.0,0.0,0.0,0.0,0.0,17194.0,470.0,1680.0,3,8,6.0,2,1.0 +212,302,3074.7074263103673,40.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28141.35,0.0,15810.0,2,9,3.0,3,2.0 +213,303,1995.5082002165564,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46860.0,493.0,0.0,45792.69602256566,0.0,0.0,1,8,7.0,3,0.0 +214,304,3230.1925633344867,61.0,221,520.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,30200.0,0.0,0.0,37108.4,0.0,6860.0,1,1,1.0,4,1.0 +215,305,1341.8612494689019,43.0,112,4340.0,63,1.0,1.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,41070.0,0.0,17280.0,3,10,5.0,4,1.0 +216,306,2555.307694691777,59.0,112,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26950.0,298.0,0.0,61053.85,0.0,1570.0,1,5,0.0,3,1.0 +217,307,3077.433721370043,37.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55186.0,0.0,54480.0,2,6,0.0,4,2.0 +218,308,1969.0790394213595,44.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44212.25,0.0,43080.0,2,9,7.0,4,2.0 +219,312,1963.550794260713,41.0,112,0.0,56,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23656.35,0.0,24270.0,2,8,0.0,4,2.0 +220,313,7276.02660165695,41.0,112,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55749.0,0.0,59190.0,1,7,1.0,4,2.0 +221,314,2750.0486124105837,59.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11959.35,0.0,7730.0,3,9,7.0,1,1.0 +222,315,1576.6505095230045,48.0,221,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,602.0,0.0,65008.21353469612,0.0,75900.0,1,1,2.0,4,2.0 +223,316,883.5021969265738,40.0,111,6500.0,52,2.0,0.0,4.0,2.5,0.0,4720.0,0.0,0.0,0.0,0.0,11228.1,340.0,0.0,5,10,8.0,4,2.0 +224,317,2284.744277072438,49.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,145.0,0.0,26924.0,0.0,30790.0,1,8,6.0,1,1.0 +225,318,3895.299723279331,50.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40546.45,0.0,42220.0,3,9,7.0,3,2.0 +226,319,1574.371440082579,64.0,120,0.0,78,0.0,0.0,2.0,1.5,17730.0,0.0,0.0,14260.0,0.0,0.0,31679.5,0.0,0.0,1,0,1.0,3,0.0 +227,320,3705.6649737494026,49.0,111,0.0,68,3,2.0,4.0,2.5,8220.0,0.0,0.0,0.0,0.0,0.0,46587.6,4300.0,33400.0,3,9,7.0,2,3.0 +228,322,1788.2010541734544,60.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,63695.1,0.0,74230.0,1,10,2.0,3,2.0 +229,324,1883.702299720511,76.0,112,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30500.0,1325.0,0.0,45589.30768967831,0.0,0.0,1,10,2.0,3,1.0 +230,325,2087.766501487832,42.0,400,0.0,85,0.0,0.0,5.0,2.6,0.0,4060.0,0.0,0.0,0.0,0.0,20178.4,0.0,0.0,3,0,1.0,2,0.0 +231,326,3249.673558910406,83.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1540.0,8050.0,0.0,0.0,9332.236086090832,0.0,0.0,5,0,0.0,1,0.0 +232,327,1764.1448768829432,52.0,112,0.0,33,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61323.2,420.0,62610.0,2,9,0.0,4,3.0 +233,328,1901.2301491064482,75.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60240.0,30315.0,0.0,87747.13383192597,0.0,0.0,5,10,0.0,3,0.0 +234,329,2403.3583806113443,55.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,95789.05,0.0,85450.0,2,10,8.0,4,2.0 +235,331,1351.9781498060568,55.0,112,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,71316.8,0.0,77980.0,1,10,3.0,4,2.0 +236,333,1480.8407484884488,69.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24840.0,0.0,0.0,37394.45,0.0,15200.0,2,9,7.0,3,1.0 +237,335,1870.5635798353596,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38860.0,0.0,0.0,38185.34743054897,0.0,0.0,1,9,7.0,3,0.0 +238,336,2042.9926549281963,31.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,14.0,0.0,47493.45,0.0,47750.0,2,8,0.0,4,2.0 +239,337,903.3315520673337,38.0,120,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,65378.05,0.0,64690.0,3,0,0.0,4,2.0 +240,340,591.4709654977157,51.0,111,0.0,31,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,4525.0,0.0,126190.3,0.0,3430.0,3,10,8.0,2,1.0 +241,344,1341.1816372150745,59.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35839.35,0.0,32420.0,1,7,5.0,1,1.0 +242,345,1953.1038431108013,45.0,120,3790.0,54,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,72317.65,0.0,66290.0,2,0,0.0,4,3.0 +243,346,2215.0858149045243,41.0,111,0.0,48,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,31530.0,0.0,20790.0,3,10,8.0,4,2.0 +244,347,2461.217658146543,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20160.0,0.0,0.0,19809.0,0.0,0.0,1,9,0.0,3,0.0 +245,348,4227.94348636327,75.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20090.0,0.0,0.0,19341.35,0.0,0.0,3,10,8.0,1,0.0 +246,349,1664.6945239103723,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37610.0,0.0,0.0,35898.95,0.0,0.0,1,6,4.0,3,0.0 +247,351,2267.89845270453,36.0,111,5100.0,55,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15116.05,580.0,9440.0,3,8,7.0,3,2.0 +248,352,1223.7305352254796,29.0,111,4110.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,14577.15,0.0,4230.0,3,5,4.0,2,0.0 +249,353,2419.9932541098055,21.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19480.0,1600.0,14330.0,3,7,5.0,3,2.0 +250,354,1565.7343439346073,64.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29320.0,0.0,0.0,28094.15,0.0,0.0,1,0,1.0,3,0.0 +251,355,1719.2938452798642,72.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36160.0,0.0,0.0,32070.35,0.0,0.0,1,1,2.0,3,0.0 +252,356,2961.940838581504,54.0,111,0.0,85,1.0,0.0,3.0,2.0,0.0,6500.0,0.0,0.0,0.0,0.0,12692.0,0.0,0.0,3,10,8.0,4,1.0 +253,357,2716.9615631927345,65.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,5820.0,9640.0,0.0,0.0,0.0,15460.0,0.0,0.0,1,9,7.0,1,1.0 +254,360,3016.5215557764213,61.0,120,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23680.0,0.0,0.0,44740.5,0.0,24840.0,1,0,3.0,3,1.0 +255,361,1326.2999777796422,69.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15140.0,0.0,0.0,14564.3,0.0,0.0,1,9,7.0,1,0.0 +256,362,3065.0566848593094,43.0,120,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18461.25,0.0,18640.0,3,0,3.0,1,1.0 +257,365,1530.16623915708,68.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26990.0,916.0,0.0,29000.45,0.0,0.0,1,8,0.0,3,0.0 +258,367,1228.871532933548,54.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,799.0,0.0,96041.55,0.0,109510.0,1,7,5.0,3,1.0 +259,369,2337.124991378199,49.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,151.0,0.0,37320.11804304542,0.0,41130.0,3,9,7.0,1,1.0 +260,371,1654.0477279085314,47.0,112,0.0,00,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13356.8,0.0,0.0,1,7,4.0,1,1.0 +261,372,2254.269871979981,39.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51422.35,0.0,52730.0,1,9,2.0,4,2.0 +262,373,1808.1210592415641,37.0,400,0.0,67,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,50339.4,0.0,40750.0,2,0,0.0,4,2.0 +263,374,2102.0239037135257,65.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9700.0,311.0,0.0,13241.0,0.0,3200.0,3,8,7.0,1,1.0 +264,375,2550.118336242817,30.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47934.45,0.0,47810.0,2,9,7.0,4,2.0 +265,376,2042.6891775885254,55.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23987.85,0.0,25900.0,1,8,7.0,1,1.0 +266,377,1650.603451663422,50.0,120,9480.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34373.2,0.0,26490.0,1,0,0.0,3,2.0 +267,379,3494.408281354908,51.0,112,0.0,45,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35268.15,0.0,37450.0,1,8,1.0,3,2.0 +268,380,1723.1144478629585,75.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38100.0,0.0,0.0,36871.4,0.0,0.0,1,0,0.0,3,0.0 +269,381,1768.3219903652796,51.0,111,0.0,37,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,101244.95,0.0,107250.0,2,9,7.0,4,4.0 +270,382,1701.71044129172,69.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,89830.0,13990.0,0.0,86907.8,0.0,0.0,1,10,4.0,3,0.0 +271,383,3540.5097668919702,61.0,112,0.0,72,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12830.0,0.0,0.0,3,9,0.0,1,0.0 +272,384,2209.0028669496587,34.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47870.55,0.0,40220.0,2,6,0.0,4,2.0 +273,385,2006.4786296901623,58.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18180.0,0.0,0.0,57114.0,0.0,24540.0,1,4,4.0,3,1.0 +274,386,807.3096601969015,33.0,111,7390.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24464.25,370.0,11880.0,3,9,7.0,2,1.0 +275,389,2721.752963245166,46.0,120,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36891.85,0.0,38690.0,2,0,0.0,4,2.0 +276,391,1659.8021317189002,72.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55430.0,0.0,0.0,51476.9,0.0,0.0,1,0,0.0,3,0.0 +277,392,2552.9552448017735,81.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43290.0,0.0,0.0,34952.35,0.0,0.0,1,10,8.0,1,0.0 +278,393,2029.9950787472587,69.0,111,0.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,7830.0,0.0,0.0,65667.65,0.0,72920.0,1,8,6.0,4,2.0 +279,394,2362.8271650095144,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26010.0,0.0,0.0,28553.25,0.0,0.0,1,8,0.0,3,0.0 +280,396,1690.8128875146622,57.0,112,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,81004.45,0.0,29060.0,1,7,0.0,4,2.0 +281,397,1368.0678840141259,67.0,111,0.0,72,1.0,1.0,4.0,2.1,0.0,0.0,0.0,47830.0,0.0,0.0,48093.8,0.0,0.0,1,6,4.0,4,1.0 +282,399,3662.198906931567,63.0,111,0.0,38,2.0,0.0,2.0,1.5,0.0,8350.0,0.0,0.0,0.0,0.0,12097.0,0.0,0.0,3,10,8.0,3,2.0 +283,400,561.3756775790197,44.0,111,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30412.0,0.0,18220.0,3,9,7.0,2,1.0 +284,401,5074.13788376263,70.0,300,3500.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23880.0,0.0,0.0,24905.3,0.0,0.0,5,0,0.0,1,0.0 +285,402,357.8374072571241,21.0,112,1290.0,68,2.0,0.0,3.0,1.8,0.0,2310.0,0.0,0.0,0.0,0.0,3970.0,0.0,0.0,3,8,0.0,4,2.0 +286,403,1966.696244785101,42.0,111,0.0,56,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,134.0,0.0,55753.8,0.0,49470.0,2,10,8.0,4,2.0 +287,404,3102.717612539489,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25440.0,0.0,0.0,25171.55,0.0,0.0,3,9,7.0,3,0.0 +288,405,1865.5285249612948,85.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29540.0,0.0,0.0,25492.3,0.0,0.0,1,1,3.0,1,0.0 +289,407,2089.673399121863,88.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27000.0,0.0,0.0,26977.85,0.0,0.0,1,0,0.0,3,0.0 +290,409,2189.942072672107,22.0,120,1510.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32948.15,190.0,23740.0,3,0,0.0,4,2.0 +291,410,1662.7718168836143,52.0,120,0.0,47,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,33596.95,0.0,25870.0,1,0,0.0,4,2.0 +292,411,3359.401476856956,55.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14484.45,0.0,13910.0,3,6,5.0,1,1.0 +293,412,2806.461357663849,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3916.0,0.0,0.0,3,9,7.0,1,0.0 +294,413,532.2964788129909,59.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50964.3,0.0,54720.0,1,8,7.0,3,2.0 +295,414,2690.7414414217365,36.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,19859.0,0.0,10980.0,3,9,7.0,2,1.0 +296,415,2711.538219491115,47.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,79796.5,0.0,93700.0,2,10,8.0,4,2.0 +297,417,1207.756046777983,49.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,104110.85,0.0,126360.0,1,8,7.0,4,2.0 +298,418,538.4337527688842,45.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26171.3,1040.0,25270.0,3,9,7.0,2,1.0 +299,419,2495.6699214127657,52.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37279.7,2080.0,39590.0,2,10,4.0,2,2.0 +300,420,2275.8584326317305,58.0,120,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32400.0,46.0,0.0,44002.7,0.0,14890.0,1,0,0.0,3,1.0 +301,421,2551.9479853836665,45.0,111,0.0,62,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27741.55,0.0,29460.0,3,7,5.0,2,1.0 +302,422,1865.14206138129,46.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,311.0,0.0,93024.4,0.0,106010.0,3,9,7.0,4,1.0 +303,423,1670.1927442105118,69.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31720.0,0.0,0.0,30135.95,0.0,0.0,1,9,7.0,3,0.0 +304,424,1253.1384297001302,46.0,111,15840.0,56,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36826.8,3150.0,15980.0,3,7,6.0,4,2.0 +305,425,2256.3516645365894,72.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21920.0,0.0,0.0,20961.25,0.0,0.0,1,8,0.0,1,0.0 +306,426,2101.037445157362,57.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,83919.15,0.0,91520.0,1,6,5.0,3,2.0 +307,428,714.6311572356333,53.0,111,8040.0,77,0.0,0.0,2.0,1.3,4620.0,0.0,0.0,0.0,0.0,0.0,13890.0,0.0,840.0,3,9,7.0,2,0.0 +308,429,2026.1800314840123,36.0,111,0.0,53,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45788.1,0.0,35120.0,2,6,4.0,4,2.0 +309,430,637.7986012539664,48.0,111,0.0,68,1.0,1.0,3.0,2.0,0.0,2630.0,0.0,0.0,0.0,0.0,16862.7,2410.0,2300.0,3,8,6.0,2,1.0 +310,431,3687.905726449458,28.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,113842.95,0.0,130180.0,2,10,0.0,4,2.0 +311,433,1501.0239411115415,35.0,111,0.0,56,1.0,0.0,3.0,1.6,0.0,6040.0,0.0,0.0,0.0,0.0,18170.0,0.0,1540.0,3,10,8.0,2,1.0 +312,434,3114.02352916829,59.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24790.95,0.0,26090.0,1,8,0.0,1,1.0 +313,435,1888.006200064117,68.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31200.0,0.0,0.0,29633.55,0.0,0.0,1,8,7.0,3,0.0 +314,437,1630.6330009187527,38.0,111,0.0,55,1.0,0.0,5.0,2.4,0.0,7660.0,0.0,0.0,0.0,0.0,20949.5,90.0,0.0,3,8,6.0,4,1.0 +315,438,4715.360152244096,84.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35290.0,0.0,0.0,34325.05,0.0,0.0,5,9,7.0,3,0.0 +316,441,2629.657947598947,44.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55665.7,0.0,51300.0,2,9,7.0,4,2.0 +317,442,3478.634137148819,24.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13276.05,0.0,0.0,3,8,7.0,1,0.0 +318,443,2387.076927594163,58.0,212,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23750.0,0.0,0.0,40623.55,0.0,17940.0,1,2,0.0,3,1.0 +319,444,737.5818071531048,39.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,2520.0,0.0,0.0,0.0,0.0,8583.6,0.0,0.0,3,8,7.0,2,0.0 +320,445,2667.981290414031,33.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,65215.5,0.0,51530.0,2,8,7.0,4,2.0 +321,447,1619.049456422819,89.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30760.0,0.0,0.0,31288.0,0.0,0.0,3,4,4.0,2,0.0 +322,448,266.4009806483207,24.0,300,1190.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,9.0,0.0,36215.35,1450.0,33770.0,3,0,0.0,5,2.0 +323,449,1005.585323950869,29.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19953.15,3600.0,13600.0,3,9,7.0,2,1.0 +324,450,1409.479684869873,55.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,22400.0,0.0,0.0,66521.65,0.0,55750.0,2,7,5.0,3,2.0 +325,451,1582.9238829337287,59.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27430.0,0.0,0.0,23883.5,0.0,0.0,1,8,7.0,1,0.0 +326,452,2335.0496492671455,45.0,112,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49149.0,0.0,49830.0,2,8,0.0,4,2.0 +327,453,3136.7591621771444,64.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19300.0,0.0,0.0,18573.1,0.0,0.0,3,0,0.0,1,0.0 +328,454,1752.9131083935554,52.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22849.8,2120.0,18840.0,3,9,7.0,2,1.0 +329,455,2537.3385075047468,52.0,111,0.0,37,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,126.0,0.0,90061.25,0.0,92370.0,3,10,8.0,4,2.0 +330,456,1577.7326849797332,38.0,111,4810.0,56,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,25298.05,0.0,15780.0,3,8,7.0,4,2.0 +331,459,2315.1405657533683,49.0,111,0.0,52,1.0,1.0,3.0,2.0,2430.0,0.0,0.0,0.0,0.0,0.0,34184.7,0.0,35490.0,2,9,7.0,4,1.0 +332,460,2221.7343106702747,31.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31705.9,0.0,31890.0,2,7,0.0,4,2.0 +333,462,2622.58610273764,60.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16110.0,0.0,0.0,16124.0,0.0,0.0,3,8,6.0,3,0.0 +334,463,5893.293637266936,28.0,111,8900.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46405.4,0.0,30280.0,3,10,8.0,3,1.0 +335,464,4211.373572578515,26.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40519.55,0.0,35350.0,3,8,1.0,4,2.0 +336,466,1772.6199242079344,58.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11020.0,0.0,0.0,23883.7,0.0,14380.0,3,8,6.0,3,1.0 +337,467,2702.1044334900357,60.0,112,7910.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13590.0,0.0,0.0,36688.6,0.0,18260.0,1,7,0.0,3,0.0 +338,468,5017.718691593028,48.0,111,0.0,68,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,9500.0,0.0,6950.0,3,10,8.0,4,1.0 +339,469,2671.8100616290003,52.0,400,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18040.0,174.0,0.0,44242.995422369626,0.0,22050.0,2,0,1.0,2,1.0 +340,472,645.9803630608624,49.0,120,7800.0,56,2.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18538.9,0.0,7370.0,3,0,3.0,2,2.0 +341,473,2507.160489258592,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18720.0,0.0,0.0,17971.76709016782,0.0,0.0,1,8,7.0,1,0.0 +342,476,3371.7247092082193,58.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16676.8,0.0,16910.0,3,8,1.0,1,1.0 +343,477,752.3014493512702,27.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,6210.0,0.0,0.0,0.0,0.0,17132.0,0.0,0.0,3,6,5.0,2,0.0 +344,478,2679.314658353874,34.0,300,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49215.15,0.0,48150.0,2,0,0.0,4,2.0 +345,479,4281.267027935493,59.0,112,4550.0,56,1.0,0.0,2.0,1.5,11070.0,0.0,0.0,0.0,0.0,0.0,23086.0,0.0,4170.0,3,9,1.0,3,1.0 +346,480,3033.641766645022,87.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28620.0,0.0,0.0,27128.71514957779,0.0,0.0,1,0,0.0,1,0.0 +347,481,1332.0173850287845,86.0,112,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21480.0,0.0,0.0,19502.7,0.0,0.0,1,8,1.0,1,0.0 +348,482,1573.5838890345346,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13870.0,0.0,0.0,14421.05,0.0,0.0,2,8,7.0,1,0.0 +349,485,2158.717038252693,59.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,50186.7,0.0,56110.0,1,9,2.0,1,1.0 +350,486,1736.085923192221,87.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55710.0,0.0,0.0,50729.7,0.0,0.0,1,7,5.0,3,0.0 +351,489,2649.731838383571,62.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40210.0,0.0,0.0,40334.35,0.0,0.0,1,10,4.0,3,0.0 +352,490,5618.06301485157,36.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,29363.3,0.0,26190.0,2,10,8.0,2,1.0 +353,492,1409.8590149016843,54.0,111,7270.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34502.9,0.0,25590.0,1,5,4.0,3,2.0 +354,493,2453.3619370143415,71.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15530.0,0.0,0.0,15303.15,0.0,0.0,3,0,1.0,1,0.0 +355,494,2274.963062744955,32.0,111,7670.0,52,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33535.55,0.0,22410.0,5,6,4.0,4,2.0 +356,495,3188.4614746437487,68.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16940.0,0.0,0.0,16967.25,0.0,0.0,1,0,0.0,1,0.0 +357,496,5686.105583843035,84.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23900.0,0.0,0.0,41557.7,0.0,0.0,1,7,1.0,1,0.0 +358,497,3243.6201998317306,21.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,8843.0,0.0,6800.0,3,9,7.0,3,1.0 +359,499,2035.5981751561533,47.0,112,110.0,35,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,85902.9063525173,0.0,94430.0,1,10,0.0,4,3.0 +360,500,2378.731070110164,38.0,400,3720.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49636.45,0.0,39560.0,2,0,0.0,4,2.0 +361,501,3699.511918592403,60.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38560.0,0.0,0.0,68628.7,0.0,29190.0,1,8,0.0,3,0.0 +362,504,1734.9833880514916,51.0,400,1670.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24676.65,0.0,23630.0,2,0,0.0,3,2.0 +363,505,1893.1204955911317,64.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34850.0,0.0,0.0,36639.1,0.0,0.0,1,9,0.0,3,0.0 +364,507,1547.196652511037,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46980.0,0.0,0.0,45866.5,0.0,0.0,1,9,7.0,3,0.0 +365,508,325.180170223244,52.0,111,5310.0,56,1.0,0.0,2.0,1.3,0.0,3850.0,0.0,0.0,0.0,0.0,14011.0,0.0,0.0,3,9,7.0,2,1.0 +366,510,2929.8935555992007,66.0,111,5950.0,,0.0,0.0,3.0,2.0,8610.0,0.0,0.0,10280.0,240.0,0.0,25081.0,0.0,0.0,5,9,7.0,4,0.0 +367,511,1668.7926879973702,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48030.0,687.0,0.0,39190.80979630075,0.0,0.0,1,9,7.0,3,0.0 +368,512,3276.7734229371595,58.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24165.1,0.0,25210.0,1,8,0.0,1,1.0 +369,513,2492.5287599227445,80.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25760.0,0.0,0.0,25063.45,0.0,0.0,1,0,3.0,3,0.0 +370,515,1425.6317368635016,54.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44980.3,0.0,48410.0,1,4,4.0,3,2.0 +371,516,2438.5661480466674,59.0,400,0.0,64,1.0,1.0,1.0,1.0,2220.0,0.0,0.0,1570.0,0.0,0.0,15087.75,0.0,9280.0,3,0,0.0,1,1.0 +372,518,1734.8012231472449,37.0,111,0.0,64,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,39675.2,0.0,32000.0,2,8,7.0,4,2.0 +373,519,1795.175975960245,35.0,300,7370.0,64,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41374.95,0.0,23470.0,2,0,0.0,4,2.0 +374,520,1922.1188113415221,36.0,112,9630.0,48,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40374.5,0.0,25980.0,2,8,2.0,4,1.0 +375,523,2225.421725268429,52.0,111,9980.0,22,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31979.15,0.0,22560.0,2,7,6.0,4,2.0 +376,524,2351.654674077259,47.0,111,0.0,48,1.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,44236.9,0.0,31840.0,3,9,7.0,4,1.0 +377,526,3078.464874840183,64.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18350.0,0.0,0.0,18147.0,0.0,0.0,3,0,0.0,1,0.0 +378,527,3307.522084411048,34.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27114.0,0.0,29720.0,3,9,7.0,1,1.0 +379,528,3397.8517903648353,54.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,39050.0,0.0,0.0,46380.7,0.0,13540.0,2,8,1.0,3,1.0 +380,530,1539.3172855092087,28.0,111,0.0,64,1.0,1.0,4.0,2.1,0.0,4500.0,0.0,0.0,0.0,0.0,28148.0,3260.0,12350.0,3,6,5.0,4,1.0 +381,531,2397.345679658114,83.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14450.0,0.0,0.0,14450.0,0.0,0.0,5,8,3.0,1,0.0 +382,536,3590.146984622413,74.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17480.0,4057.0,0.0,23318.75,0.0,0.0,1,10,8.0,1,0.0 +383,537,1891.1458375980435,32.0,400,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34121.5,0.0,31620.0,2,0,0.0,4,2.0 +384,538,1384.990622905343,76.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43570.0,0.0,0.0,40651.65,0.0,0.0,1,9,3.0,3,0.0 +385,540,2507.922648786188,43.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19618.55,0.0,21250.0,3,7,5.0,1,1.0 +386,541,1687.604187618633,77.0,112,0.0,42,1.0,0.0,2.0,1.5,0.0,0.0,0.0,60190.0,0.0,0.0,54737.1,0.0,0.0,1,10,2.0,3,1.0 +387,542,4276.545329704659,32.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55669.25,0.0,59290.0,3,10,8.0,5,2.0 +388,543,1573.9829410909542,52.0,112,4860.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31164.05,0.0,27060.0,1,8,2.0,4,2.0 +389,545,2345.8853787952003,42.0,111,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,77138.0,0.0,80170.0,2,9,7.0,4,2.0 +390,546,1863.5768561170294,63.0,111,5640.0,64,3,1.0,3.0,2.0,0.0,0.0,0.0,20760.0,0.0,0.0,59244.2,0.0,36660.0,1,4,4.0,4,3.0 +391,547,6223.38406905869,35.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32221.3,490.0,23990.0,3,10,8.0,4,2.0 +392,548,2021.5702871010815,86.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37000.0,8767.0,0.0,64070.116075661324,0.0,0.0,1,10,8.0,2,0.0 +393,549,1225.184326769803,28.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22302.7,0.0,13670.0,3,10,8.0,2,1.0 +394,550,3346.8992071877815,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14960.0,0.0,0.0,14685.0,0.0,0.0,1,6,4.0,1,0.0 +395,551,2187.8180630057805,36.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,129587.2,0.0,146840.0,2,9,7.0,4,2.0 +396,553,1951.4527524177759,33.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45213.8,0.0,42290.0,3,8,2.0,4,2.0 +397,554,1627.805091516795,39.0,112,0.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26835.55,0.0,27360.0,3,10,1.0,1,1.0 +398,556,1140.756351281037,37.0,111,0.0,21,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,9687.1,0.0,0.0,1,9,7.0,2,1.0 +399,557,3208.140215213299,42.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3065.85,0.0,0.0,1,8,6.0,1,1.0 +400,558,2119.2237852791523,39.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51342.05,0.0,50050.0,2,4,0.0,4,2.0 +401,559,3356.3709975110855,82.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12150.0,1321.0,0.0,10071.45,0.0,0.0,1,8,6.0,1,0.0 +402,560,1909.2102615774347,53.0,112,0.0,38,1.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,64440.0,79867.9964346707,0.0,21870.0,1,9,2.0,4,1.0 +403,561,809.21287648076,25.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41380.75,800.0,39500.0,3,10,8.0,2,2.0 +404,562,3110.870270140472,84.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19610.0,0.0,0.0,17327.9,0.0,0.0,1,9,7.0,1,0.0 +405,563,1415.0974517945428,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47770.0,0.0,0.0,44449.57093960368,0.0,0.0,1,8,7.0,3,0.0 +406,564,1641.7807188409768,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44030.0,0.0,0.0,40135.2,0.0,0.0,1,6,4.0,3,0.0 +407,565,2120.921761339565,42.0,300,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36880.6,0.0,37120.0,2,0,0.0,4,2.0 +408,566,1368.8930699378125,61.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,72621.1,0.0,85470.0,1,7,5.0,3,2.0 +409,567,4018.118084118872,55.0,112,0.0,45,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,628.0,0.0,79342.45,0.0,91850.0,1,8,1.0,4,3.0 +410,569,2271.6883882992506,33.0,400,4170.0,56,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,18700.45,610.0,7120.0,3,0,0.0,2,1.0 +411,573,3312.488463582259,80.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17260.0,0.0,0.0,17139.5,0.0,0.0,1,0,0.0,1,0.0 +412,577,3933.33556058229,25.0,111,0.0,37,2.0,0.0,2.0,1.5,0.0,500.0,0.0,5710.0,0.0,0.0,26843.0,730.0,4710.0,3,9,7.0,3,2.0 +413,578,1783.4110040799756,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24470.0,0.0,0.0,21635.15,0.0,0.0,1,9,7.0,1,0.0 +414,579,2572.7055143365906,58.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24440.0,0.0,0.0,94583.0,0.0,2630.0,1,8,6.0,3,1.0 +415,580,2950.6266628146736,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28260.0,0.0,0.0,25358.5,0.0,0.0,1,6,5.0,1,0.0 +416,581,2020.4125993153332,49.0,120,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33272.45,0.0,35880.0,1,0,0.0,1,1.0 +417,582,2225.2897331472805,70.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20250.0,0.0,0.0,18839.7,0.0,0.0,5,7,0.0,1,0.0 +418,583,2386.19886986346,53.0,111,16340.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19383.45,0.0,2780.0,1,8,7.0,3,1.0 +419,585,1749.0733544647605,55.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51481.1,0.0,55260.0,1,9,3.0,4,2.0 +420,586,3119.574470709409,64.0,112,0.0,77,0.0,0.0,2.0,1.5,9730.0,0.0,0.0,25280.0,0.0,0.0,34672.51566104141,0.0,0.0,1,6,0.0,5,0.0 +421,587,2350.7137044245937,38.0,111,6640.0,85,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27858.6,0.0,4910.0,3,7,5.0,4,1.0 +422,588,1669.3949055320868,32.0,111,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,47414.25,0.0,38670.0,2,6,5.0,4,2.0 +423,590,2695.0854319265673,54.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17930.15,0.0,19790.0,2,9,7.0,2,1.0 +424,591,2403.0400856124593,69.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22500.0,0.0,0.0,22342.8,0.0,0.0,1,0,0.0,1,0.0 +425,594,915.617668047143,27.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,8090.0,0.0,0.0,0.0,0.0,14850.0,0.0,0.0,3,8,7.0,2,0.0 +426,595,2117.4367916319957,39.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,64.0,0.0,59569.15,0.0,61010.0,1,9,7.0,4,2.0 +427,596,1803.7653423970503,62.0,300,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10440.0,0.0,0.0,36705.3,0.0,0.0,5,0,0.0,3,1.0 +428,597,1723.8219565271506,46.0,111,2440.0,62,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,47210.05,0.0,38040.0,3,6,5.0,4,2.0 +429,599,1902.6768125946535,42.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27513.05,0.0,26950.0,1,8,7.0,2,1.0 +430,600,2574.5706107640376,70.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,28890.0,0.0,0.0,53037.1,0.0,26350.0,1,9,7.0,4,1.0 +431,601,2950.819516188798,43.0,111,0.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17548.1,60.0,17700.0,3,10,8.0,3,2.0 +432,602,2372.584256354368,52.0,111,0.0,85,1.0,0.0,3.0,2.0,0.0,2850.0,0.0,2470.0,0.0,0.0,15117.5,450.0,0.0,3,10,8.0,2,1.0 +433,604,1945.1773756147265,50.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,21920.0,0.0,0.0,74072.25,0.0,62230.0,1,9,7.0,2,1.0 +434,605,1985.9495388635717,38.0,111,0.0,64,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32817.2,790.0,25460.0,2,9,7.0,4,2.0 +435,606,2443.850253740651,46.0,400,0.0,21,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50445.313211966226,0.0,43170.0,1,0,0.0,4,3.0 +436,607,2040.8267234582065,24.0,300,150.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25145.5,710.0,19580.0,1,0,0.0,2,2.0 +437,609,2480.106598127906,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36490.0,0.0,0.0,34444.9,0.0,0.0,1,7,6.0,3,0.0 +438,610,5256.192619429132,35.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49078.25,0.0,39880.0,2,10,8.0,4,2.0 +439,611,1223.3939445188355,67.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27720.0,0.0,0.0,27428.95,0.0,0.0,1,10,1.0,2,0.0 +440,612,2083.0985986306987,29.0,120,0.0,43,2.0,0.0,2.0,1.5,0.0,8210.0,0.0,0.0,0.0,0.0,14282.0,0.0,2400.0,3,0,1.0,3,2.0 +441,613,1962.3200858771906,49.0,111,0.0,37,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,125.0,0.0,68119.85,0.0,74500.0,1,10,8.0,4,3.0 +442,614,3054.402862750385,27.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39646.0,0.0,41660.0,3,9,7.0,3,2.0 +443,615,1188.2086801378264,45.0,111,0.0,85,0.0,0.0,2.0,1.3,10960.0,0.0,0.0,0.0,0.0,0.0,20640.0,0.0,0.0,3,4,3.0,2,0.0 +444,616,3813.6301088957634,32.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15030.0,2290.0,12690.0,3,8,7.0,1,1.0 +445,618,1321.9850827370963,57.0,111,14010.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32443.95,0.0,16090.0,1,9,7.0,3,2.0 +446,619,1275.4320686830933,69.0,400,10.0,71,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20160.0,0.0,0.0,37297.65,0.0,12380.0,1,0,1.0,3,1.0 +447,620,1458.1565415264731,44.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20868.95,0.0,22450.0,2,4,3.0,1,1.0 +448,621,3036.4190117618455,41.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,78748.15,0.0,90240.0,2,10,8.0,4,2.0 +449,622,1796.8904343635547,42.0,111,0.0,53,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39885.5,0.0,33110.0,2,7,5.0,4,1.0 +450,623,2341.6297225174403,45.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,69325.65,0.0,55380.0,3,9,7.0,4,2.0 +451,626,2113.2198389985656,41.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42529.5,0.0,42090.0,2,8,7.0,4,2.0 +452,627,3627.5841918248243,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9612.0,0.0,0.0,3,8,7.0,1,0.0 +453,628,2058.6752527694357,63.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8160.0,0.0,0.0,29678.8,0.0,27430.0,1,10,8.0,1,1.0 +454,629,2116.1704382851776,61.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,43.0,0.0,29206.45,0.0,33710.0,1,0,0.0,1,1.0 +455,630,2030.5012927629946,21.0,120,4370.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22828.0,0.0,18390.0,5,0,0.0,3,2.0 +456,631,1467.7993009866889,69.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30290.0,0.0,0.0,29239.2,0.0,0.0,1,0,0.0,3,0.0 +457,633,2380.36061434378,89.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32090.0,0.0,0.0,31145.55,0.0,0.0,1,9,7.0,3,0.0 +458,634,2051.815828927327,48.0,111,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56170.35,0.0,60540.0,2,10,8.0,4,2.0 +459,635,2635.6946701277043,64.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25140.0,0.0,0.0,23266.95,0.0,0.0,1,0,3.0,1,0.0 +460,636,1582.8105318338464,43.0,111,0.0,52,1.0,0.0,2.0,1.5,0.0,7170.0,0.0,0.0,0.0,0.0,13944.0,0.0,0.0,3,10,8.0,2,1.0 +461,638,1608.7446302761239,64.0,400,0.0,11,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8810.0,0.0,0.0,17427.25,0.0,0.0,1,0,0.0,3,1.0 +462,639,4574.80478434925,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11580.0,0.0,0.0,11580.0,0.0,0.0,3,10,8.0,1,0.0 +463,641,2536.7970613602142,63.0,400,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18150.0,0.0,0.0,26986.6,0.0,9070.0,3,0,0.0,3,1.0 +464,642,1833.603564040057,48.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,62179.15,0.0,66930.0,1,10,8.0,4,2.0 +465,645,753.7134366285206,42.0,211,0.0,52,1.0,1.0,3.0,1.8,0.0,7610.0,0.0,0.0,0.0,0.0,19295.0,1920.0,2410.0,3,1,2.0,2,1.0 +466,646,1835.6983467022721,48.0,112,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,63060.5,0.0,57850.0,2,7,1.0,4,2.0 +467,647,2751.2384652600604,90.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15130.0,0.0,0.0,15428.0,0.0,0.0,1,0,0.0,1,0.0 +468,648,858.8947713371085,37.0,111,0.0,56,1.0,0.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,17524.0,0.0,0.0,3,10,8.0,2,1.0 +469,650,2727.489279586874,45.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,7893.85,1810.0,0.0,3,9,7.0,2,1.0 +470,651,840.3044190199084,51.0,111,0.0,56,3,0.0,5.0,2.8,0.0,7660.0,0.0,0.0,0.0,0.0,22686.4,1240.0,0.0,3,8,7.0,2,3.0 +471,652,1779.8616846844484,51.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40069.15,0.0,41360.0,3,9,7.0,3,2.0 +472,654,3444.774497860728,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55500.0,0.0,0.0,49108.78029915558,0.0,0.0,1,10,8.0,3,0.0 +473,655,3231.6716510190186,51.0,111,60.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4430.0,0.0,0.0,14056.6,2180.0,7240.0,3,8,6.0,1,0.0 +474,657,4661.555157846675,27.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17582.25,1300.0,16680.0,3,10,8.0,1,1.0 +475,658,2733.7551559204317,76.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25050.0,0.0,0.0,30444.45,0.0,0.0,5,9,1.0,3,0.0 +476,659,1620.7116589254354,56.0,120,2960.0,78,0.0,0.0,5.0,2.8,8110.0,4360.0,0.0,450.0,0.0,0.0,21728.8,0.0,0.0,2,0,0.0,4,0.0 +477,660,3510.199691844312,43.0,221,0.0,31,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,37.0,0.0,98281.05,0.0,99770.0,1,1,1.0,4,2.0 +478,661,2705.581752067387,86.0,112,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,0.0,52130.0,0.0,0.0,50344.3,0.0,2230.0,1,10,4.0,4,0.0 +479,662,3088.3075844325676,51.0,111,0.0,85,0.0,0.0,1.0,1.0,9700.0,0.0,0.0,0.0,0.0,0.0,12775.0,0.0,0.0,3,7,5.0,1,0.0 +480,663,2396.925162835563,81.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36110.0,0.0,0.0,30182.95,0.0,0.0,1,9,7.0,1,0.0 +481,666,1304.8018110970281,45.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,37440.75,0.0,24000.0,3,6,5.0,5,1.0 +482,667,3628.7021798895726,40.0,111,0.0,34,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,177023.95,0.0,79640.0,2,10,8.0,2,1.0 +483,668,2597.03881305494,37.0,111,3670.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34016.55,0.0,30560.0,3,9,7.0,3,1.0 +484,669,719.859531584012,53.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20071.05,2110.0,14140.0,3,8,7.0,2,1.0 +485,670,1624.2250155627908,51.0,300,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46093.75,0.0,47130.0,1,0,1.0,3,2.0 +486,671,1850.578194851091,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24660.0,0.0,0.0,22701.1,0.0,0.0,1,9,7.0,1,0.0 +487,672,332.73957975638984,59.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38095.9,0.0,40490.0,2,7,5.0,4,2.0 +488,673,3160.4928860224104,30.0,112,4490.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55080.95,0.0,42260.0,5,8,2.0,4,2.0 +489,674,2724.979906817153,33.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19712.8,1160.0,19240.0,3,6,4.0,1,1.0 +490,675,1280.867548763105,57.0,112,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35594.9,0.0,36510.0,2,8,3.0,2,1.0 +491,677,4502.208160744379,33.0,111,2400.0,64,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14172.25,470.0,9550.0,3,10,8.0,3,2.0 +492,679,1974.4632968721637,42.0,300,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45160.25,0.0,44950.0,2,0,0.0,4,2.0 +493,680,4867.468085088919,29.0,111,5210.0,62,3,2.0,4.0,2.5,0.0,8450.0,0.0,0.0,0.0,0.0,52971.45,470.0,34890.0,3,10,8.0,2,4.0 +494,681,2258.0606456371484,56.0,120,1840.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28983.6,0.0,27310.0,3,0,0.0,3,2.0 +495,682,1796.4212546439658,52.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,41.0,0.0,90174.5,0.0,100570.0,1,8,2.0,4,2.0 +496,683,764.1441682301012,35.0,400,0.0,68,2.0,1.0,4.0,2.1,0.0,1000.0,0.0,0.0,0.0,0.0,21471.0,2420.0,2700.0,3,0,1.0,2,2.0 +497,684,2180.0651122294844,54.0,111,0.0,78,0.0,0.0,2.0,1.5,16470.0,0.0,0.0,0.0,0.0,0.0,20169.0,0.0,0.0,3,6,4.0,3,0.0 +498,686,2202.881101344016,53.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13116.1,0.0,0.0,2,9,7.0,3,2.0 +499,687,1509.9009480749942,56.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,113923.6,0.0,102700.0,1,7,6.0,3,2.0 +500,688,2494.4835369953066,30.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40676.1,0.0,38340.0,3,7,4.0,3,2.0 +501,689,1569.0915467318803,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44730.0,281.0,0.0,40469.85,0.0,0.0,1,7,5.0,3,0.0 +502,691,3507.174396718691,30.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27745.25,0.0,31400.0,3,10,8.0,1,1.0 +503,692,2600.711449401863,61.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25850.0,0.0,0.0,22956.15,0.0,0.0,1,9,1.0,1,0.0 +504,694,2591.868557275208,55.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,117209.6,0.0,140580.0,2,10,8.0,4,2.0 +505,695,693.9303250310264,46.0,111,0.0,47,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,72.0,0.0,45874.65,0.0,36550.0,2,7,5.0,2,1.0 +506,696,1708.8712480156923,45.0,112,11800.0,35,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23737.5,0.0,9960.0,2,8,3.0,2,1.0 +507,698,5953.459932558531,31.0,112,3340.0,53,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37786.8,0.0,33130.0,2,7,0.0,4,2.0 +508,699,1757.6737320293585,68.0,112,0.0,21,1.0,0.0,2.0,1.5,0.0,0.0,0.0,28180.0,1091.0,0.0,28848.2,0.0,0.0,1,8,1.0,3,1.0 +509,701,1419.8311577529741,56.0,111,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,73549.95552258543,0.0,0.0,2,6,5.0,4,2.0 +510,703,1849.125284705217,58.0,112,0.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31264.2,0.0,29380.0,1,8,3.0,2,2.0 +511,704,1975.884342626499,60.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,67991.1,0.0,51410.0,1,7,5.0,3,2.0 +512,705,2174.9312356763135,58.0,112,180.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,97.0,0.0,53817.05,0.0,57150.0,1,9,1.0,4,3.0 +513,708,1693.58886190786,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15880.0,0.0,0.0,15698.6,0.0,0.0,1,6,5.0,1,0.0 +514,709,2254.2028753135037,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21030.0,1760.0,648.0,20944.0,0.0,0.0,1,9,7.0,1,0.0 +515,711,5869.333867269622,29.0,111,6820.0,47,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25360.2,0.0,17480.0,3,9,7.0,4,2.0 +516,712,1970.476588462727,36.0,112,1500.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38837.4,0.0,36430.0,1,8,0.0,4,2.0 +517,713,3024.9418847053425,79.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18110.0,0.0,0.0,17952.6,0.0,100.0,3,0,1.0,1,0.0 +518,714,1811.8913410793625,39.0,111,660.0,64,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,39955.25,0.0,23110.0,3,8,7.0,4,2.0 +519,715,1603.1446432314883,22.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,8360.0,0.0,0.0,0.0,0.0,14590.0,0.0,0.0,5,10,8.0,2,0.0 +520,716,4584.158541273618,50.0,112,0.0,85,0.0,0.0,1.0,1.0,5530.0,0.0,0.0,2510.0,0.0,0.0,9146.75,0.0,0.0,3,8,1.0,1,0.0 +521,717,1809.7959587598248,71.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23720.0,0.0,0.0,24171.6,0.0,0.0,1,0,0.0,3,0.0 +522,718,1305.108769643165,22.0,111,4130.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35067.0,0.0,31580.0,3,8,6.0,3,2.0 +523,719,1692.4165622180096,68.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36990.0,0.0,0.0,34366.2,0.0,0.0,1,7,2.0,3,0.0 +524,720,2576.1613298302555,85.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24580.0,0.0,0.0,23756.75,0.0,0.0,1,1,3.0,3,0.0 +525,721,2488.3129086145877,36.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22448.85,0.0,24950.0,3,9,7.0,1,1.0 +526,723,918.4922129810891,32.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,4650.0,0.0,0.0,0.0,0.0,22516.0,1070.0,9580.0,3,5,4.0,2,1.0 +527,724,2964.8281499932923,33.0,111,6750.0,65,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37322.15,0.0,28460.0,2,9,7.0,4,2.0 +528,726,1956.8845481105684,63.0,112,0.0,68,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8628.0,0.0,0.0,3,8,2.0,1,1.0 +529,727,3895.5290458905492,24.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40976.4,0.0,42220.0,3,8,6.0,3,2.0 +530,728,2203.4256246844793,39.0,112,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,67704.1,0.0,19260.0,2,5,0.0,4,2.0 +531,730,2718.586183837672,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43750.0,0.0,0.0,43415.0,0.0,0.0,3,6,4.0,3,0.0 +532,731,2419.5308616762377,46.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44789.8,0.0,48080.0,1,10,8.0,3,2.0 +533,733,3443.652754128455,19.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12630.0,0.0,5700.0,3,8,6.0,1,1.0 +534,734,2456.100807918273,60.0,112,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,21300.0,0.0,0.0,20845.0,0.0,0.0,1,10,2.0,3,1.0 +535,737,3335.937829369321,78.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39090.0,0.0,0.0,39307.85888604743,0.0,0.0,1,8,7.0,3,0.0 +536,738,2628.131379368079,30.0,111,3040.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,90.0,0.0,0.0,30574.4,490.0,27160.0,3,8,6.0,3,2.0 +537,740,3368.9778221073834,37.0,111,5250.0,11,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25281.7,0.0,4560.0,3,8,6.0,3,2.0 +538,741,1255.3719171196296,46.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20338.1,0.0,14500.0,3,10,8.0,2,1.0 +539,742,3342.718355404144,36.0,111,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47529.4,0.0,17300.0,3,9,7.0,4,2.0 +540,744,2002.1740584533068,27.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,7360.0,0.0,0.0,0.0,0.0,14870.0,0.0,0.0,3,8,7.0,2,0.0 +541,746,1034.6818662729943,48.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18651.35,0.0,14790.0,3,7,1.0,2,2.0 +542,747,3645.5602550056774,51.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,2070.0,0.0,0.0,0.0,0.0,12660.5,1820.0,90.0,3,9,7.0,1,1.0 +543,748,2842.6204664673583,70.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11900.0,0.0,0.0,11832.5,0.0,0.0,1,0,0.0,1,0.0 +544,750,3055.53896504687,43.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,73628.96,0.0,47260.0,2,9,7.0,4,2.0 +545,751,1869.2655385705202,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20150.0,22.0,0.0,20439.95,0.0,0.0,1,8,7.0,1,0.0 +546,752,5060.001601290747,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23870.0,0.0,0.0,23767.35,0.0,0.0,1,9,7.0,3,0.0 +547,753,2407.1954501407063,44.0,400,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44641.25,0.0,47650.0,2,0,0.0,4,2.0 +548,757,2770.861368838974,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2160.0,0.0,0.0,3,9,7.0,1,0.0 +549,758,1869.1331435147883,62.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27710.0,0.0,0.0,33480.75,0.0,5710.0,2,0,0.0,3,0.0 +550,760,188.84493133376859,44.0,400,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27037.65,0.0,25990.0,2,0,0.0,2,1.0 +551,761,3073.0873217416865,66.0,111,0.0,78,0.0,0.0,3.0,2.0,9720.0,0.0,0.0,22950.0,0.0,0.0,31362.0,0.0,0.0,3,9,7.0,4,0.0 +552,764,956.4669017878948,29.0,111,290.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36755.95,0.0,39000.0,3,8,7.0,3,2.0 +553,765,2396.8150075022095,57.0,111,0.0,37,2.0,2.0,5.0,3.0,0.0,0.0,0.0,13770.0,0.0,0.0,98453.1804162605,0.0,101420.0,1,10,8.0,4,2.0 +554,766,772.4518379765477,87.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24820.0,0.0,0.0,24535.3,0.0,0.0,3,4,3.0,3,0.0 +555,769,3736.546349631342,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13810.0,0.0,0.0,14279.0,0.0,0.0,3,9,7.0,1,0.0 +556,770,3185.684973180444,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25050.0,0.0,0.0,21390.3,0.0,0.0,1,10,8.0,1,0.0 +557,771,3447.579104134573,27.0,111,15270.0,42,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29392.577877880354,0.0,15020.0,3,8,6.0,3,2.0 +558,772,3232.9501347084715,53.0,112,0.0,43,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,399.0,0.0,91390.3,0.0,98430.0,1,9,1.0,5,3.0 +559,775,913.326109255725,39.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25673.60036630943,0.0,18420.0,2,6,5.0,2,1.0 +560,776,1706.198410984773,68.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30030.0,0.0,0.0,29217.6,0.0,0.0,1,0,0.0,3,0.0 +561,777,232.78006085888566,28.0,300,0.0,69,1.0,0.0,2.0,1.3,0.0,8210.0,0.0,0.0,0.0,0.0,12807.0,0.0,0.0,3,0,0.0,2,1.0 +562,780,1950.1320674777364,48.0,400,5400.0,67,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,40817.5,0.0,28420.0,1,0,0.0,4,2.0 +563,782,1799.7876104663314,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32060.0,0.0,0.0,30082.5,0.0,0.0,1,6,4.0,3,0.0 +564,784,2270.1722134153965,59.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,2760.0,0.0,0.0,0.0,0.0,14102.15,1340.0,4970.0,3,9,7.0,4,0.0 +565,785,581.1379729724622,45.0,111,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31602.8,0.0,0.0,3,9,7.0,2,1.0 +566,786,1739.9933746505294,65.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,81779.3,0.0,80490.0,1,9,7.0,3,1.0 +567,787,2309.2487925686237,74.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16310.0,0.0,0.0,17190.75,0.0,1230.0,1,7,4.0,3,1.0 +568,789,1222.9441731472127,76.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19940.0,187.0,0.0,24670.0,0.0,0.0,3,4,3.0,1,0.0 +569,793,2328.053980991336,51.0,112,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49063.75,0.0,53450.0,1,10,2.0,4,2.0 +570,794,1284.5969283194702,68.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49280.0,0.0,0.0,44505.65,0.0,0.0,1,1,2.0,3,0.0 +571,795,1361.752147095334,44.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29651.9,0.0,20000.0,5,6,5.0,2,1.0 +572,796,9352.682612856159,39.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22239.05,0.0,23540.0,3,8,7.0,1,1.0 +573,797,3259.4005928377146,35.0,111,5560.0,52,1.0,0.0,1.0,1.0,0.0,1420.0,0.0,0.0,0.0,0.0,12356.9,2130.0,0.0,3,8,7.0,1,1.0 +574,798,1893.2956169913625,64.0,222,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35200.0,0.0,0.0,33680.25,0.0,0.0,1,1,0.0,3,0.0 +575,799,1760.3315205718495,55.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51529.75,0.0,56460.0,2,6,4.0,3,2.0 +576,800,1459.588036763787,50.0,111,0.0,67,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,36135.7,0.0,34140.0,1,7,5.0,4,2.0 +577,802,1024.7007103499566,71.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16500.0,0.0,0.0,16500.0,0.0,0.0,5,1,3.0,1,0.0 +578,803,4133.185906980633,80.0,111,0.0,75,0.0,0.0,2.0,1.5,10960.0,0.0,0.0,31510.0,0.0,0.0,43040.0,0.0,0.0,1,9,7.0,2,0.0 +579,804,2069.9054226048397,58.0,111,5910.0,,1.0,1.0,2.0,1.5,0.0,6170.0,0.0,0.0,0.0,0.0,39340.55,0.0,31800.0,1,10,8.0,3,1.0 +580,805,3261.3707244872116,41.0,111,620.0,35,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,61198.35,0.0,67170.0,3,10,8.0,4,2.0 +581,807,1991.2652193524034,41.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,247.0,0.0,47517.75,0.0,45380.0,2,8,2.0,4,2.0 +582,808,1967.5961739743984,35.0,111,0.0,67,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28694.25,2160.0,16820.0,3,10,8.0,4,1.0 +583,809,4495.121151591222,47.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14944.15,0.0,17160.0,1,6,4.0,1,1.0 +584,811,2581.9474438738093,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20596.1,0.0,22600.0,5,10,8.0,1,1.0 +585,813,2251.069850601822,80.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15850.0,0.0,0.0,16164.7,0.0,0.0,1,4,4.0,3,0.0 +586,814,1327.9877300723888,53.0,400,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,85761.6,1440.0,96320.0,1,0,1.0,3,2.0 +587,816,1223.4187165156707,58.0,211,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15375.6,0.0,16840.0,2,1,3.0,1,1.0 +588,817,1760.2402189674892,46.0,221,6420.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35245.726766385196,0.0,22630.0,1,1,2.0,4,2.0 +589,818,1619.7676458315843,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32470.0,0.0,0.0,30783.35,0.0,0.0,1,8,7.0,3,0.0 +590,819,636.7940433197115,46.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28387.95,0.0,30220.0,3,10,8.0,2,1.0 +591,820,2680.744032419432,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3378.0,0.0,0.0,3,6,5.0,1,0.0 +592,821,4800.791448479832,56.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26863.25,0.0,29600.0,1,10,8.0,1,1.0 +593,822,2738.3421569226775,68.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33630.0,0.0,0.0,32523.8,0.0,0.0,1,8,7.0,3,0.0 +594,823,3833.679794208208,27.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,31.0,0.0,39724.05,0.0,41700.0,2,7,0.0,3,2.0 +595,824,1819.3545039414262,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49780.0,4038.0,0.0,50798.15,0.0,2310.0,1,7,0.0,3,0.0 +596,825,928.5069272591699,53.0,111,0.0,56,1.0,1.0,3.0,2.0,0.0,6130.0,0.0,0.0,0.0,0.0,17738.1,1300.0,2260.0,3,8,7.0,2,1.0 +597,826,1819.978741155067,76.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20820.0,0.0,0.0,20496.3,0.0,0.0,1,0,0.0,3,0.0 +598,827,4183.423642015816,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,240.0,9280.0,0.0,0.0,11560.0,0.0,0.0,3,7,6.0,1,0.0 +599,828,2283.026028995191,36.0,111,15100.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14439.6,0.0,0.0,1,9,7.0,1,1.0 +600,829,3131.9736565153344,82.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27190.0,0.0,0.0,26429.0,0.0,0.0,1,0,0.0,3,0.0 +601,830,1781.9741944619632,35.0,400,0.0,63,1.0,1.0,5.0,2.4,0.0,4430.0,0.0,0.0,0.0,0.0,39725.2,0.0,20290.0,3,0,0.0,4,1.0 +602,832,3414.9103583254164,51.0,300,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33468.55001392599,0.0,34150.0,1,0,0.0,5,2.0 +603,834,2044.6866785251868,54.0,111,0.0,22,1.0,1.0,4.0,2.5,0.0,0.0,0.0,2800.0,1139.0,0.0,67914.95,0.0,34260.0,1,9,7.0,4,1.0 +604,835,3220.649185867283,59.0,112,0.0,77,1.0,1.0,3.0,1.8,0.0,0.0,0.0,24360.0,0.0,0.0,44369.05,0.0,22830.0,2,8,0.0,4,1.0 +605,837,2999.201087302125,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13640.0,0.0,0.0,12520.55,0.0,0.0,1,8,6.0,1,0.0 +606,838,2960.945923585125,43.0,112,0.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48977.05,0.0,48220.0,2,8,3.0,4,2.0 +607,839,2112.8688457357375,40.0,112,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59223.25,0.0,42570.0,3,8,0.0,4,2.0 +608,840,3143.516725502525,23.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13490.0,0.0,13490.0,3,7,5.0,1,1.0 +609,842,1515.7187597926927,57.0,111,6650.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,440.0,0.0,53325.25,0.0,52530.0,2,9,7.0,3,2.0 +610,843,2066.095917339198,60.0,221,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4140.0,0.0,0.0,22366.35,0.0,18940.0,1,1,2.0,1,1.0 +611,844,454.5743062121106,50.0,112,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18537.15,1250.0,15960.0,3,9,5.0,2,1.0 +612,845,3705.82240708785,33.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17288.75,0.0,18190.0,3,6,4.0,1,1.0 +613,846,2574.745788338858,57.0,111,27250.0,75,1.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39129.873049208305,0.0,15350.0,1,6,4.0,4,1.0 +614,847,2110.930848234788,72.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19420.0,0.0,0.0,18353.35,0.0,0.0,1,8,7.0,1,0.0 +615,848,5019.862184430742,90.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17050.0,0.0,0.0,12853.7,0.0,0.0,1,6,5.0,5,0.0 +616,849,765.7836053392591,43.0,211,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19265.6,0.0,21540.0,5,4,4.0,1,1.0 +617,850,3045.3760675184476,43.0,120,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,22140.0,383.0,0.0,43201.3,0.0,20840.0,1,0,0.0,4,1.0 +618,851,773.9416592644998,43.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22308.15,0.0,21340.0,2,6,4.0,2,1.0 +619,853,1828.7313851225329,70.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43920.0,0.0,0.0,40420.65,0.0,0.0,1,0,0.0,3,0.0 +620,854,2142.3096116347547,42.0,111,970.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23837.8,3430.0,12180.0,5,9,7.0,2,1.0 +621,855,2089.631078310667,61.0,111,0.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40870.35,0.0,34860.0,5,4,4.0,2,2.0 +622,857,2104.7018003056364,72.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25180.0,0.0,0.0,22188.689015833887,0.0,0.0,1,10,0.0,1,0.0 +623,858,3630.442229104017,43.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19736.8,0.0,22060.0,5,10,8.0,1,1.0 +624,860,515.9689021281791,45.0,112,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28994.4,0.0,23040.0,2,8,0.0,2,1.0 +625,862,2595.0446293080286,47.0,111,0.0,22,1.0,0.0,3.0,1.8,0.0,9050.0,0.0,0.0,0.0,0.0,13753.55,0.0,0.0,3,7,5.0,4,1.0 +626,864,1452.9750471061227,36.0,111,0.0,35,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,32784.1,0.0,20880.0,3,10,8.0,2,1.0 +627,866,2109.001985158156,31.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51621.15,0.0,35720.0,2,9,7.0,4,2.0 +628,867,2852.0707672778954,56.0,111,0.0,63,2.0,1.0,7.0,3.6,0.0,0.0,0.0,0.0,0.0,0.0,35872.05,0.0,25680.0,3,10,8.0,4,2.0 +629,869,4991.143575945442,38.0,111,0.0,85,0.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,16638.0,0.0,0.0,3,9,7.0,2,0.0 +630,870,3184.3943829543305,23.0,111,12050.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13681.25,0.0,0.0,3,9,7.0,1,1.0 +631,871,2587.460495259179,78.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,8000.0,6920.0,0.0,32297.0,46508.45,0.0,0.0,1,0,1.0,3,0.0 +632,872,1538.3176647253931,60.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57155.6,0.0,64240.0,1,9,7.0,3,2.0 +633,874,2880.945314563291,90.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24820.0,0.0,0.0,23350.8,0.0,0.0,1,6,4.0,1,0.0 +634,875,911.3922346737834,69.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25910.0,0.0,0.0,26167.0,0.0,0.0,3,0,0.0,2,0.0 +635,876,2134.7811971406454,61.0,112,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22010.0,0.0,0.0,71604.3,0.0,0.0,1,4,0.0,3,1.0 +636,878,1891.0510529187525,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,65530.0,0.0,0.0,57561.87050285483,0.0,0.0,1,10,2.0,3,0.0 +637,879,902.3865700461234,39.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25108.2,2310.0,21770.0,3,9,7.0,2,1.0 +638,883,1945.4720325545345,73.0,112,0.0,78,0.0,0.0,2.0,1.5,9700.0,0.0,1570.0,13280.0,0.0,0.0,25934.15,0.0,0.0,3,9,0.0,3,0.0 +639,885,1727.4607550787316,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39680.0,0.0,0.0,35989.4,0.0,0.0,1,7,5.0,3,0.0 +640,886,2224.492636134323,67.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31710.0,119.0,0.0,28575.05,0.0,0.0,3,9,7.0,1,0.0 +641,887,2781.488345367785,61.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15200.0,0.0,0.0,14993.25,0.0,0.0,1,10,8.0,1,0.0 +642,888,2591.0137378667296,43.0,111,13990.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,89.0,0.0,45439.75,0.0,33990.0,3,8,6.0,4,2.0 +643,889,2437.0459388400945,86.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13980.0,0.0,0.0,14118.0,0.0,0.0,5,0,0.0,1,0.0 +644,891,1808.9060238483569,68.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43150.0,0.0,0.0,41228.9,0.0,0.0,1,8,1.0,3,0.0 +645,892,2737.835446830102,34.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,235.0,0.0,94041.7,0.0,0.0,2,9,7.0,1,1.0 +646,894,6306.996201253368,30.0,111,0.0,85,0.0,0.0,3.0,1.8,0.0,7680.0,0.0,0.0,0.0,0.0,14014.0,0.0,0.0,3,10,8.0,4,0.0 +647,896,1869.3006641664083,55.0,112,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,63714.0,0.0,68660.0,1,10,4.0,4,2.0 +648,897,863.4122350935884,31.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24068.5,2690.0,19500.0,3,9,7.0,2,1.0 +649,898,3408.93212259199,26.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3690.0,0.0,0.0,19591.0,0.0,17060.0,2,10,8.0,1,1.0 +650,899,1462.5057988836418,41.0,111,31420.0,37,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,73887.45,0.0,47950.0,2,6,4.0,4,2.0 +651,900,2236.8130268757486,79.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23400.0,0.0,0.0,24932.05,0.0,0.0,1,1,2.0,3,0.0 +652,901,1239.154835104334,66.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16220.0,0.0,0.0,15406.7,0.0,0.0,1,1,3.0,3,0.0 +653,902,2665.2739635888056,64.0,112,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,0.0,31700.0,0.0,0.0,31284.9,0.0,710.0,1,8,0.0,4,0.0 +654,904,3697.8008482473906,27.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34906.8,0.0,36770.0,3,6,5.0,3,2.0 +655,905,1620.4504873007268,74.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34060.0,0.0,0.0,61455.0,0.0,0.0,1,0,0.0,3,0.0 +656,906,1682.6957947535989,48.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51579.65,0.0,53380.0,2,9,7.0,4,2.0 +657,907,3159.781269898921,32.0,111,0.0,48,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48399.4,0.0,46970.0,3,7,5.0,4,2.0 +658,908,1615.367211972336,51.0,111,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46889.55,0.0,49140.0,2,8,6.0,4,2.0 +659,909,2331.898997749001,77.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22620.0,0.0,0.0,45689.0854508391,0.0,21010.0,3,10,3.0,2,1.0 +660,910,2018.2364694682515,70.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29040.0,0.0,0.0,31489.0,0.0,0.0,5,6,5.0,3,0.0 +661,911,2655.405135074851,84.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,57550.0,0.0,0.0,45620.85,0.0,0.0,1,9,2.0,1,0.0 +662,912,1276.287142745008,82.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36020.0,0.0,0.0,33884.99434161719,0.0,0.0,1,3,3.0,3,0.0 +663,914,2637.170051039696,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26040.0,266.0,0.0,24280.3,0.0,0.0,3,7,5.0,1,0.0 +664,915,662.4046289344425,46.0,111,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42694.25,0.0,42680.0,3,9,7.0,2,2.0 +665,916,1574.4280739751118,36.0,112,0.0,33,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,48035.25,0.0,36110.0,2,7,0.0,4,1.0 +666,917,1737.3046299262935,67.0,221,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,53610.0,0.0,0.0,89993.3,0.0,0.0,1,1,2.0,3,1.0 +667,918,1917.7441324444676,69.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62710.0,0.0,0.0,68159.85,0.0,0.0,1,0,0.0,3,0.0 +668,919,4138.506405249398,56.0,111,9420.0,63,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38944.65,0.0,28740.0,2,9,7.0,4,3.0 +669,920,1534.7945075204843,51.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,132389.75,0.0,179560.0,1,9,7.0,3,2.0 +670,922,2996.8389850583744,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23810.0,0.0,0.0,21836.5,0.0,0.0,3,10,8.0,1,0.0 +671,923,3005.981908585672,49.0,221,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,4102.0,0.0,63865.25,0.0,64280.0,1,1,1.0,3,2.0 +672,924,2907.9018134573826,22.0,111,1430.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13640.75,430.0,7680.0,3,8,7.0,1,1.0 +673,926,1838.361666291857,49.0,112,0.0,55,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,70227.0,2090.0,66860.0,1,9,0.0,4,3.0 +674,927,2584.759049512119,45.0,211,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,10.0,0.0,48554.45,0.0,48430.0,1,1,3.0,4,2.0 +675,928,1987.3594056818472,49.0,112,0.0,85,0.0,0.0,3.0,2.0,0.0,8130.0,0.0,0.0,0.0,0.0,10141.25,1950.0,0.0,1,8,1.0,2,0.0 +676,929,2573.8121776759117,41.0,120,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38738.85,0.0,37170.0,2,0,3.0,4,2.0 +677,930,355.6863794687933,34.0,400,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25524.8,1130.0,19320.0,3,0,0.0,2,1.0 +678,932,1827.3717758086252,32.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,8270.0,0.0,0.0,0.0,0.0,15468.0,0.0,0.0,3,9,7.0,2,0.0 +679,933,1909.350063886174,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15740.0,0.0,0.0,13345.55,0.0,0.0,1,6,4.0,1,0.0 +680,934,5308.785297126503,19.0,111,0.0,53,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18018.0,0.0,9010.0,3,9,7.0,1,1.0 +681,935,1968.9231423506885,37.0,120,7920.0,62,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44561.45,0.0,35810.0,2,0,2.0,4,2.0 +682,936,1618.1479825345466,46.0,400,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3465.0,696.0,79528.65,0.0,77300.0,2,0,1.0,3,2.0 +683,938,3194.3901243384507,24.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18542.55,0.0,18940.0,3,9,7.0,1,1.0 +684,939,2897.791990089257,45.0,112,0.0,43,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,66406.1,0.0,66150.0,2,8,0.0,4,2.0 +685,940,1982.788924368712,46.0,300,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56502.35,0.0,58430.0,1,0,0.0,4,2.0 +686,941,2104.926531435571,30.0,112,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43450.15,0.0,41260.0,2,8,0.0,4,2.0 +687,943,1114.1890693940677,22.0,111,910.0,81,1.0,0.0,3.0,1.8,0.0,7210.0,0.0,0.0,0.0,0.0,13060.0,0.0,180.0,3,7,5.0,4,1.0 +688,944,2561.744427738274,49.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58979.75,0.0,67290.0,1,10,8.0,4,2.0 +689,946,1704.0644509815136,52.0,300,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51780.9,0.0,56280.0,1,0,0.0,3,2.0 +690,947,727.3196783386247,36.0,111,5000.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20371.95,490.0,5220.0,3,9,7.0,2,1.0 +691,948,2534.441194291746,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18600.0,0.0,0.0,17761.9,0.0,0.0,3,9,7.0,1,0.0 +692,952,2690.4686560081773,40.0,211,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,24.0,0.0,40450.25,0.0,38580.0,1,1,3.0,4,2.0 +693,954,2248.1747291183647,57.0,111,9890.0,69,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,40314.25,0.0,30060.0,3,9,7.0,4,3.0 +694,956,4035.389766958893,24.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25546.35,0.0,26170.0,3,9,7.0,1,1.0 +695,958,2229.7244789065344,44.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37269.95,0.0,38780.0,3,8,7.0,2,2.0 +696,959,2205.7263763888045,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30830.0,0.0,0.0,27773.5,0.0,0.0,1,9,7.0,1,0.0 +697,960,2980.892116353221,72.0,300,0.0,72,0.0,0.0,3.0,2.0,0.0,0.0,4280.0,9680.0,1515.0,0.0,31327.6,0.0,0.0,1,0,0.0,5,0.0 +698,961,2047.6946271367974,62.0,112,0.0,21,1.0,0.0,2.0,1.5,0.0,0.0,0.0,37240.0,0.0,0.0,68956.15,0.0,19160.0,1,10,0.0,3,1.0 +699,962,3358.8804054873863,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29370.0,0.0,0.0,38903.9,0.0,3980.0,1,9,7.0,3,0.0 +700,963,2175.526562221107,55.0,111,1320.0,55,2.0,0.0,3.0,2.0,0.0,6270.0,0.0,0.0,0.0,0.0,16358.35,2410.0,2580.0,3,9,7.0,4,2.0 +701,964,2683.4482130663773,50.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,52339.65,0.0,33150.0,3,9,7.0,4,2.0 +702,966,3210.466056741394,68.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,9640.0,0.0,0.0,0.0,9640.0,0.0,0.0,5,0,0.0,1,0.0 +703,967,1999.8893192549824,84.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60450.0,0.0,0.0,58460.03837584147,0.0,0.0,1,9,7.0,3,0.0 +704,968,527.1039803841803,57.0,111,0.0,35,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,56.0,0.0,103329.47151540087,0.0,33910.0,1,7,5.0,2,1.0 +705,969,2388.484937134098,47.0,112,0.0,21,2.0,3.0,4.0,2.5,0.0,0.0,0.0,0.0,401.0,0.0,65902.05,0.0,77210.0,1,10,0.0,4,2.0 +706,971,1521.1736573794653,59.0,112,11430.0,42,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55070.15,0.0,28720.0,1,7,1.0,3,2.0 +707,972,2851.1868622453944,26.0,300,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42058.25,0.0,37170.0,2,0,0.0,4,2.0 +708,973,1830.3502901047661,37.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,73844.0,0.0,84240.0,3,7,5.0,4,2.0 +709,975,1463.6013207621124,51.0,111,0.0,63,1.0,1.0,3.0,2.0,0.0,0.0,0.0,5230.0,0.0,0.0,37368.0,0.0,30990.0,3,6,4.0,2,1.0 +710,976,8263.180878481995,57.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36248.8,0.0,42590.0,3,8,7.0,1,1.0 +711,977,1619.1116251258986,62.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,2381.0,0.0,67017.18355530516,0.0,61780.0,1,9,7.0,3,1.0 +712,981,3035.582774723398,47.0,111,15420.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,475.0,0.0,6758.5,0.0,1810.0,2,10,8.0,1,1.0 +713,982,3622.729753512403,34.0,111,0.0,68,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29656.0,2820.0,16490.0,3,8,6.0,4,1.0 +714,983,2411.3817135378367,37.0,112,0.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41097.45,2380.0,15350.0,1,9,1.0,4,2.0 +715,984,1754.5717859472088,55.0,111,410.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41278.55,0.0,43030.0,3,9,7.0,3,2.0 +716,985,3090.438215683964,44.0,111,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,60354.1,0.0,63820.0,2,10,8.0,4,2.0 +717,986,3152.7250147387695,32.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45173.45,0.0,43030.0,2,8,0.0,4,2.0 +718,989,1564.9057505673147,66.0,120,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27290.0,0.0,0.0,62195.4,0.0,41690.0,1,0,1.0,3,1.0 +719,990,856.9681905398002,77.0,111,0.0,75,1.0,1.0,3.0,2.0,6560.0,0.0,0.0,36250.0,0.0,0.0,58363.5,400.0,20690.0,1,9,7.0,4,1.0 +720,992,1210.446560249282,45.0,111,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18483.6,0.0,6860.0,2,6,5.0,2,1.0 +721,993,2384.4137950640197,51.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,83190.7,0.0,95480.0,2,8,6.0,4,2.0 +722,995,2720.581524879695,65.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10570.0,0.0,0.0,11404.7,0.0,1190.0,3,0,0.0,1,0.0 +723,996,2270.4230798251565,70.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30080.0,1144.0,0.0,28148.55,0.0,0.0,1,0,1.0,1,0.0 +724,997,2311.838206471371,65.0,111,0.0,22,1.0,0.0,1.0,1.0,0.0,0.0,0.0,11480.0,0.0,0.0,8754.3,0.0,0.0,1,6,4.0,1,1.0 +725,998,2130.415634554482,76.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60950.0,4161.0,0.0,58194.45,0.0,0.0,1,9,7.0,3,0.0 +726,1000,2682.038149509965,54.0,111,11570.0,45,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47107.2,0.0,36340.0,1,10,8.0,4,3.0 +727,1001,1518.3133034450746,49.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23496.61572160483,0.0,24030.0,3,7,5.0,3,2.0 +728,1003,2502.8744272918652,75.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,75640.0,1720.0,0.0,68882.28029915558,0.0,0.0,1,0,0.0,3,0.0 +729,1005,3939.9591465186904,30.0,120,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36130.3,0.0,19010.0,3,0,0.0,4,2.0 +730,1006,2494.33043592433,59.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1980.0,0.0,0.0,25726.6,0.0,26150.0,1,7,5.0,1,1.0 +731,1007,1828.9864530314114,72.0,120,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33290.0,0.0,0.0,30514.1,0.0,0.0,5,0,0.0,1,0.0 +732,1008,1635.4387749817442,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29050.0,0.0,0.0,28603.85,0.0,0.0,1,5,4.0,3,0.0 +733,1009,6139.359698886959,25.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43640.0,0.0,0.0,3,10,8.0,1,1.0 +734,1011,2132.390662656699,56.0,120,2840.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35721.4,0.0,34110.0,1,0,3.0,3,2.0 +735,1012,1930.0735812659384,70.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27650.0,0.0,0.0,26410.4,0.0,0.0,1,9,7.0,3,0.0 +736,1013,2018.1120360256216,36.0,111,0.0,53,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34813.1,0.0,21790.0,3,5,4.0,4,1.0 +737,1014,3342.582797331936,66.0,111,2700.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,39080.0,0.0,0.0,47854.25,0.0,6390.0,1,9,7.0,4,1.0 +738,1015,1406.5906122291747,77.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24560.0,0.0,0.0,25788.45,0.0,0.0,5,9,3.0,3,0.0 +739,1016,1640.5759583929218,49.0,111,0.0,56,2.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,35570.15,5160.0,16470.0,3,10,8.0,4,2.0 +740,1018,3005.0101186381066,28.0,112,6470.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,160.0,0.0,53527.45,0.0,29150.0,2,8,1.0,4,2.0 +741,1019,1876.3505574242597,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23450.0,0.0,0.0,22707.0,0.0,0.0,1,9,7.0,1,0.0 +742,1020,1402.9080204206393,46.0,111,930.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38924.8,0.0,38910.0,2,8,6.0,2,2.0 +743,1023,2757.1509139153222,44.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,141161.59908974668,0.0,163390.0,2,10,8.0,4,2.0 +744,1024,3143.044092806222,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23730.0,169.0,0.0,20654.1,0.0,0.0,1,7,5.0,1,0.0 +745,1025,2892.610042007454,79.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30560.0,5.0,0.0,29878.1,0.0,0.0,1,7,4.0,3,0.0 +746,1026,3138.733515029942,21.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27719.9,0.0,24020.0,3,8,7.0,3,2.0 +747,1029,958.7960685075917,66.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17630.0,0.0,0.0,17148.5,0.0,0.0,1,4,3.0,1,0.0 +748,1032,2053.0431181361314,40.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,16.0,0.0,54526.55,0.0,42740.0,2,7,6.0,4,2.0 +749,1033,3467.4019257284713,55.0,112,5950.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9179.25,0.0,0.0,3,7,0.0,1,1.0 +750,1034,4387.2626440963795,62.0,111,2190.0,77,0.0,0.0,1.0,1.0,0.0,480.0,0.0,5010.0,0.0,0.0,9535.0,120.0,1650.0,3,10,8.0,1,0.0 +751,1035,10345.475545905016,52.0,111,8150.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,14460.0,0.0,0.0,65058.45,0.0,56760.0,2,9,7.0,4,2.0 +752,1037,2394.8830436153135,65.0,120,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,29990.0,0.0,0.0,29531.45,0.0,0.0,1,0,0.0,3,1.0 +753,1038,2685.410763571299,33.0,400,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4367.15,0.0,0.0,1,0,0.0,1,1.0 +754,1039,1430.4029414271427,19.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,8260.0,0.0,0.0,0.0,0.0,12256.0,0.0,0.0,3,7,5.0,2,0.0 +755,1041,791.3445970358434,42.0,111,0.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27813.55,0.0,20270.0,3,7,5.0,2,1.0 +756,1043,2546.2909972944835,49.0,221,0.0,68,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,22155.85,4440.0,14040.0,2,1,1.0,4,2.0 +757,1045,1677.1174023597987,66.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43870.0,0.0,0.0,39996.75,0.0,0.0,1,5,0.0,3,0.0 +758,1046,504.3293358238149,29.0,112,2360.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20192.2,2450.0,5330.0,3,7,0.0,2,1.0 +759,1047,2045.0030930904932,42.0,400,1650.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36551.5,2440.0,30980.0,2,0,0.0,4,2.0 +760,1049,1729.5329944217613,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48840.0,5.0,2.0,43408.26913747484,0.0,0.0,1,9,7.0,3,0.0 +761,1050,2613.593358844212,51.0,111,5950.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9058.0,0.0,0.0,3,9,7.0,1,1.0 +762,1051,2213.9914324679153,32.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,65848.1,0.0,70700.0,2,6,1.0,4,2.0 +763,1052,2486.808557567914,47.0,112,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23034.3,0.0,23670.0,2,7,0.0,1,1.0 +764,1053,2462.636121888003,35.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40654.75,0.0,39370.0,2,7,0.0,4,2.0 +765,1054,2306.6214266296056,46.0,111,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35663.2,0.0,37750.0,1,10,8.0,4,2.0 +766,1055,2606.110046001283,42.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,35151.35,0.0,35090.0,2,8,6.0,2,1.0 +767,1056,3275.4715048198905,60.0,400,0.0,31,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,1580.0,0.0,0.0,5,0,0.0,2,1.0 +768,1057,5161.822895095133,59.0,112,17470.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28204.15,0.0,11290.0,1,8,0.0,3,1.0 +769,1058,3433.4825231410864,35.0,300,0.0,64,1.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,8468.55,0.0,0.0,3,0,0.0,1,1.0 +770,1060,4001.0895504868536,29.0,300,38610.0,85,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50711.97787788035,0.0,2480.0,3,0,0.0,3,1.0 +771,1061,2806.1607872994487,45.0,111,6670.0,67,1.0,0.0,1.0,1.0,690.0,0.0,0.0,0.0,0.0,0.0,10163.35,0.0,1100.0,3,8,7.0,1,1.0 +772,1062,936.6084785072811,32.0,111,0.0,47,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29835.6,0.0,17880.0,3,7,6.0,2,1.0 +773,1066,1592.4023187189807,69.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43560.0,7.0,0.0,39833.064694451125,0.0,0.0,1,10,0.0,3,0.0 +774,1067,2252.0439316754764,55.0,111,11970.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,74.0,0.0,39696.8,0.0,27990.0,2,9,7.0,2,2.0 +775,1068,2869.89954566349,62.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21310.0,0.0,0.0,42057.9,0.0,24870.0,1,10,4.0,3,1.0 +776,1069,832.9469925082111,44.0,111,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20608.6,0.0,14500.0,2,8,6.0,2,1.0 +777,1071,2010.3569070281853,37.0,111,1770.0,65,1.0,1.0,7.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,36310.0,2440.0,14020.0,3,10,8.0,4,1.0 +778,1073,2742.247295457425,51.0,300,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,79.0,0.0,22111.85,0.0,21670.0,3,0,0.0,2,2.0 +779,1075,2761.34914541298,55.0,112,4520.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,7940.0,0.0,0.0,22804.0,1520.0,5850.0,3,8,1.0,1,1.0 +780,1076,1429.4661456101728,56.0,111,1840.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,9280.0,0.0,0.0,29658.135738682773,0.0,13080.0,3,9,7.0,3,2.0 +781,1079,2424.6203724467864,40.0,300,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46301.05,0.0,50350.0,2,0,0.0,3,2.0 +782,1080,6387.812713105924,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19910.0,0.0,0.0,19256.5,0.0,0.0,1,6,4.0,3,0.0 +783,1081,3435.793376064777,32.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14311.0,0.0,650.0,3,10,8.0,1,1.0 +784,1082,2129.273436059946,85.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22080.0,0.0,0.0,20538.45,0.0,0.0,1,4,3.0,1,0.0 +785,1083,2088.139495791512,59.0,111,0.0,78,0.0,0.0,3.0,1.8,0.0,7800.0,0.0,3390.0,0.0,0.0,15762.0,0.0,0.0,3,5,4.0,5,0.0 +786,1086,1336.9401309622533,45.0,120,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19196.4,2090.0,9510.0,3,0,1.0,2,1.0 +787,1087,2388.1925405583243,73.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25900.0,0.0,0.0,26932.5,0.0,0.0,1,0,0.0,3,0.0 +788,1088,605.3304288070107,23.0,111,0.0,46,1.0,1.0,4.0,2.3,0.0,6070.0,0.0,0.0,0.0,0.0,27219.4,620.0,10780.0,3,9,7.0,2,1.0 +789,1089,2490.497256259555,44.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,57813.05,0.0,61120.0,2,9,7.0,4,2.0 +790,1091,2127.1596087825637,36.0,111,5010.0,52,1.0,1.0,2.0,1.3,0.0,20.0,0.0,0.0,0.0,0.0,10630.0,0.0,3800.0,5,7,5.0,2,1.0 +791,1092,2217.693386909409,34.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57766.5,0.0,51430.0,2,9,3.0,4,2.0 +792,1093,4151.0799079920835,33.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25151.05,0.0,28150.0,3,9,7.0,1,1.0 +793,1094,3004.739930334547,79.0,111,240.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26260.0,0.0,0.0,29164.45,0.0,0.0,1,10,8.0,5,1.0 +794,1095,1768.464753913379,51.0,112,5950.0,69,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45810.25,170.0,42360.0,2,8,0.0,4,2.0 +795,1096,633.9419581166039,45.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,313.0,0.0,133554.0,0.0,124510.0,2,9,7.0,4,2.0 +796,1097,2885.883506092114,71.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20180.0,0.0,0.0,18913.05,0.0,0.0,1,9,1.0,1,0.0 +797,1098,1895.168339888074,37.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55879.5,0.0,54740.0,2,8,7.0,4,2.0 +798,1100,2073.379599799356,50.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,2170.0,0.0,0.0,0.0,0.0,10606.0,2260.0,3800.0,3,9,7.0,1,1.0 +799,1101,5966.4405478159115,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,5730.0,3850.0,0.0,0.0,12664.0,0.0,0.0,3,8,6.0,1,0.0 +800,1102,1399.3975191854388,53.0,111,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48923.25,0.0,50970.0,2,7,5.0,4,2.0 +801,1103,2395.3074705155555,58.0,300,3250.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17100.0,0.0,0.0,19309.25,0.0,1600.0,1,0,0.0,3,1.0 +802,1104,4089.343744538987,32.0,112,3010.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57919.1,0.0,45450.0,3,9,3.0,4,2.0 +803,1106,2230.5635032527084,39.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45704.0,0.0,43210.0,3,8,6.0,4,2.0 +804,1108,1832.9990867398287,69.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,3400.0,6170.0,0.0,0.0,12450.0,0.0,0.0,3,9,7.0,1,0.0 +805,1109,1619.549584822381,53.0,400,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,20.0,0.0,62929.05,0.0,68060.0,1,0,1.0,4,2.0 +806,1110,1921.0776439787896,54.0,112,0.0,22,2.0,2.0,3.0,1.8,0.0,2600.0,0.0,0.0,0.0,0.0,9629.45,2240.0,0.0,1,6,2.0,4,2.0 +807,1112,2319.484011053828,79.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19770.0,0.0,0.0,19012.0,0.0,0.0,1,8,0.0,1,0.0 +808,1113,3328.960819880664,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10640.0,0.0,0.0,10640.0,0.0,0.0,3,8,7.0,1,0.0 +809,1114,1579.519832466421,57.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20514.3,0.0,20590.0,3,6,4.0,3,2.0 +810,1115,2325.3309471680914,62.0,112,14900.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,6964.0,0.0,86480.85,0.0,72280.0,1,9,0.0,3,2.0 +811,1116,4220.45889472339,27.0,111,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,84.0,0.0,53075.45,0.0,58190.0,3,10,8.0,3,2.0 +812,1117,2530.7724666678273,52.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,73812.9,0.0,93010.0,2,10,2.0,2,1.0 +813,1118,1912.9854274439533,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32100.0,0.0,0.0,32239.15,0.0,1140.0,1,10,0.0,3,0.0 +814,1119,3494.794196359813,50.0,221,140.0,47,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,47539.98418033564,0.0,41160.0,3,1,2.0,4,2.0 +815,1121,2181.7831210828904,63.0,111,0.0,72,1.0,1.0,4.0,2.1,0.0,0.0,0.0,30160.0,0.0,0.0,37753.8,0.0,16610.0,1,6,4.0,4,1.0 +816,1123,3796.6821814191785,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5067.0,0.0,3140.0,3,10,8.0,1,0.0 +817,1124,1593.3078771573787,60.0,300,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31270.0,0.0,0.0,40101.1,0.0,8360.0,1,0,0.0,3,1.0 +818,1125,2094.4848776969657,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17950.0,329.0,0.0,20479.1,0.0,0.0,1,9,7.0,1,0.0 +819,1126,2844.9564592486495,53.0,112,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40691.85,0.0,42700.0,3,10,4.0,4,2.0 +820,1127,2878.1545475181206,60.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17190.0,0.0,0.0,40971.85,0.0,27390.0,2,10,8.0,3,1.0 +821,1128,2103.1854373530105,66.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35640.0,0.0,0.0,30788.65,0.0,0.0,1,7,5.0,3,0.0 +822,1129,1710.875992316539,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,65630.0,251.0,0.0,66564.75,0.0,0.0,1,9,7.0,3,0.0 +823,1130,3565.650114904408,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10190.0,0.0,0.0,9807.0,0.0,0.0,5,6,4.0,1,0.0 +824,1132,1864.326710120449,38.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57169.35,0.0,64690.0,2,8,7.0,4,2.0 +825,1134,4493.925442916485,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19520.0,0.0,0.0,18565.05,0.0,0.0,3,6,4.0,1,0.0 +826,1135,1992.368377201768,53.0,120,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54844.85,0.0,52610.0,1,0,3.0,3,2.0 +827,1136,2581.154971724889,55.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25019.2,0.0,26780.0,3,10,8.0,1,1.0 +828,1138,830.3619798704246,81.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17220.0,0.0,0.0,17220.0,0.0,0.0,5,7,5.0,1,0.0 +829,1140,2647.264835662464,53.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,45003.85,0.0,55150.0,3,10,8.0,1,1.0 +830,1141,2695.5516920450714,36.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57764.0,0.0,56260.0,2,10,8.0,4,2.0 +831,1142,1283.1908162285458,49.0,112,0.0,68,1.0,1.0,7.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,33490.0,2510.0,14250.0,3,10,5.0,4,1.0 +832,1143,2302.16668949697,59.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40850.0,447.0,0.0,38737.9,0.0,0.0,3,9,1.0,3,0.0 +833,1145,507.17287376211294,39.0,211,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,33365.6,0.0,27290.0,2,2,3.0,4,1.0 +834,1146,1953.085871706725,47.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,64689.65,0.0,74810.0,1,10,8.0,3,2.0 +835,1148,3411.727574763348,88.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41900.0,0.0,0.0,40389.6,0.0,0.0,1,8,7.0,1,0.0 +836,1150,3782.328536553669,28.0,111,1690.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34476.6,0.0,34470.0,1,5,4.0,3,2.0 +837,1151,1545.2247861121484,59.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53300.188115103825,0.0,62210.0,1,10,8.0,3,2.0 +838,1152,1424.878700366469,32.0,112,0.0,85,0.0,0.0,3.0,1.6,0.0,2450.0,0.0,0.0,0.0,0.0,18168.55,0.0,0.0,3,8,3.0,2,0.0 +839,1153,2205.6467262696115,82.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17040.0,0.0,0.0,17771.0,0.0,0.0,1,0,0.0,3,0.0 +840,1154,1530.0207457121119,55.0,111,0.0,64,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35754.95,0.0,31950.0,3,6,5.0,4,3.0 +841,1155,2297.15896060553,80.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37640.0,792.0,0.0,41366.607065540775,0.0,0.0,3,8,1.0,3,0.0 +842,1160,1385.6580436539036,54.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26222.95,0.0,28600.0,3,8,2.0,1,1.0 +843,1162,1713.4104563738465,40.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43320.3,0.0,42890.0,2,9,7.0,4,2.0 +844,1163,4146.550490511735,77.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15010.0,0.0,0.0,14256.65,0.0,0.0,1,1,3.0,1,0.0 +845,1164,2632.337132845234,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,9,7.0,1,0.0 +846,1165,2628.9387770421176,67.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,5380.0,5830.0,0.0,0.0,14882.0,0.0,0.0,3,7,5.0,3,0.0 +847,1168,1830.5084367534585,56.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,34840.0,0.0,0.0,74026.0,0.0,51900.0,1,9,7.0,3,1.0 +848,1169,1064.2988743582061,42.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,61811.5,0.0,63900.0,2,9,7.0,4,2.0 +849,1171,3081.0957342787024,51.0,112,3060.0,63,1.0,0.0,2.0,1.5,0.0,0.0,0.0,21060.0,0.0,0.0,31293.9,130.0,8430.0,1,8,2.0,5,1.0 +850,1172,2108.641810901765,43.0,400,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59476.25,0.0,61240.0,2,0,0.0,4,2.0 +851,1173,2450.6183915460474,59.0,112,1960.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15040.9,1470.0,8000.0,3,6,2.0,3,2.0 +852,1174,2051.7223806632064,53.0,112,14250.0,67,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32912.976766385196,0.0,19160.0,3,8,2.0,4,1.0 +853,1175,2662.653107569913,45.0,300,0.0,67,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20087.05,0.0,18260.0,2,0,0.0,2,1.0 +854,1176,635.8726668636689,33.0,111,0.0,85,0.0,0.0,4.0,2.1,0.0,0.0,0.0,27420.0,0.0,0.0,27122.35,0.0,0.0,1,6,4.0,2,0.0 +855,1180,1994.7643063872977,54.0,300,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51567.128524698965,0.0,58950.0,1,0,1.0,3,2.0 +856,1182,860.577421045529,43.0,111,0.0,37,1.0,1.0,3.0,1.6,0.0,0.0,0.0,7660.0,0.0,0.0,77219.6899910308,0.0,59820.0,2,9,7.0,2,1.0 +857,1183,2962.466802827387,40.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26602.8,0.0,28080.0,2,9,7.0,1,1.0 +858,1184,3613.0846449268956,38.0,111,0.0,53,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30958.55,0.0,20560.0,3,10,8.0,4,2.0 +859,1185,3870.1442447799686,24.0,111,6710.0,46,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13150.65,430.0,2140.0,3,8,6.0,3,1.0 +860,1186,806.3964314557735,47.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,77104.9,0.0,77120.0,3,8,6.0,2,2.0 +861,1187,2115.1053576444438,42.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16353.25,1160.0,15450.0,1,9,3.0,1,1.0 +862,1188,3257.1633161737054,91.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30510.0,0.0,0.0,28995.1,0.0,0.0,1,10,4.0,3,0.0 +863,1189,1830.826392674343,85.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,490.0,33050.0,0.0,0.0,33244.25,0.0,0.0,3,7,5.0,2,0.0 +864,1190,1699.9191181499864,50.0,112,270.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15440.3,0.0,15650.0,1,7,0.0,1,1.0 +865,1191,2518.6763245618968,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5701.05,0.0,3670.0,3,8,7.0,1,0.0 +866,1192,4228.568475994637,28.0,111,710.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17909.9,0.0,17540.0,3,9,7.0,1,1.0 +867,1193,2584.306262180536,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11280.0,0.0,0.0,11060.0,0.0,0.0,1,10,8.0,1,0.0 +868,1194,2753.394856527395,52.0,120,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,6960.0,0.0,0.0,26250.2,0.0,17240.0,2,0,3.0,5,1.0 +869,1195,2532.9781262316947,54.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18300.0,0.0,0.0,40326.1,0.0,26500.0,1,10,8.0,3,1.0 +870,1198,3888.9821951154613,55.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15326.55,2420.0,10570.0,3,9,7.0,1,1.0 +871,1199,1747.9798627704567,35.0,400,0.0,12,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63371.3,0.0,17650.0,1,0,0.0,4,2.0 +872,1200,1439.2339837413335,49.0,211,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9928.7,1400.0,6410.0,3,2,3.0,1,1.0 +873,1201,4753.341101499035,60.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6840.0,0.0,0.0,30631.7,0.0,25770.0,3,8,0.0,1,0.0 +874,1202,1858.4384235256646,43.0,112,0.0,85,1.0,1.0,4.0,2.1,9720.0,0.0,0.0,9800.0,14.0,0.0,49306.95,0.0,14560.0,1,10,5.0,4,1.0 +875,1203,1252.9393629569017,68.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20530.0,0.0,0.0,20042.75,0.0,0.0,1,8,1.0,3,0.0 +876,1204,621.1197423211709,37.0,221,0.0,22,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,22120.0,0.0,0.0,3,1,3.0,4,2.0 +877,1205,3075.9420467625346,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27970.0,0.0,0.0,26440.6,0.0,0.0,5,8,7.0,1,0.0 +878,1206,1779.9591416753422,71.0,400,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24360.0,0.0,0.0,23735.45,0.0,0.0,1,0,0.0,3,1.0 +879,1207,2573.2963042125803,39.0,400,16870.0,52,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45259.65,240.0,26880.0,3,0,1.0,4,2.0 +880,1208,6015.075845083256,34.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32936.15,0.0,37910.0,2,9,7.0,1,1.0 +881,1210,3481.9114150657165,36.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42082.05,0.0,48670.0,3,8,7.0,1,1.0 +882,1211,2480.6480152969675,44.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,34.0,0.0,34837.3,0.0,19340.0,2,9,1.0,3,2.0 +883,1212,2326.6426300171047,84.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,780.0,8840.0,0.0,0.0,9569.3,0.0,0.0,1,0,0.0,1,0.0 +884,1213,1324.61400636433,40.0,112,12050.0,46,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23593.35,0.0,3050.0,2,10,4.0,2,1.0 +885,1214,607.4287038289672,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24670.0,0.0,0.0,20402.85,0.0,0.0,5,8,7.0,1,0.0 +886,1215,1724.4851029103143,62.0,111,19700.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,56820.0,0.0,0.0,54592.17676638519,0.0,0.0,1,9,7.0,3,1.0 +887,1216,4515.018451357805,20.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19179.65,180.0,12150.0,3,8,6.0,1,1.0 +888,1218,3089.9208946019694,59.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27173.6,670.0,28290.0,3,9,7.0,2,2.0 +889,1219,2815.65221153074,28.0,112,7530.0,62,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32082.05,0.0,19070.0,3,8,3.0,4,2.0 +890,1221,2452.208476315171,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24047.85,0.0,25680.0,1,9,7.0,1,1.0 +891,1223,3048.3762197971046,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,4000.0,5560.0,0.0,0.0,13424.0,0.0,0.0,3,8,6.0,1,0.0 +892,1224,3776.7780411351405,58.0,221,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21385.25,0.0,23120.0,1,1,1.0,1,1.0 +893,1225,3541.636243736888,49.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23726.7,0.0,23820.0,3,0,0.0,1,1.0 +894,1226,4136.235589702767,86.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,4050.0,5330.0,0.0,0.0,12512.0,0.0,0.0,3,8,7.0,1,0.0 +895,1227,2709.112131321798,93.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32480.0,0.0,0.0,32514.0,0.0,0.0,3,0,1.0,3,0.0 +896,1229,3093.9426680025936,41.0,111,22350.0,35,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,101973.45,0.0,86560.0,1,9,7.0,4,1.0 +897,1230,1720.8167277515984,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45180.0,1481.0,0.0,66329.1,0.0,0.0,1,9,3.0,3,0.0 +898,1231,2239.6937506181966,36.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40966.85,0.0,40200.0,2,7,0.0,4,2.0 +899,1233,3472.4696613704823,48.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49445.55,0.0,61120.0,2,10,8.0,4,1.0 +900,1235,3928.756152817924,43.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,15.0,0.0,68725.65,0.0,72280.0,3,8,6.0,4,2.0 +901,1236,1949.4518730017694,54.0,111,7590.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13228.9,0.0,6510.0,1,5,4.0,1,1.0 +902,1237,3998.5794434115737,38.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14200.1,0.0,14320.0,3,10,8.0,1,1.0 +903,1238,1799.4216061570958,62.0,120,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14330.0,0.0,0.0,58192.1,0.0,46550.0,1,0,0.0,3,1.0 +904,1239,1518.6033731964571,71.0,300,10510.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48900.0,0.0,0.0,54934.55,0.0,0.0,1,0,0.0,3,0.0 +905,1240,1629.503262941474,79.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22520.0,0.0,0.0,22757.65,0.0,0.0,1,9,3.0,1,0.0 +906,1241,4400.378723347909,32.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26970.6,0.0,27020.0,3,10,8.0,1,1.0 +907,1242,1983.1571860012243,39.0,120,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,51417.2,0.0,42420.0,2,0,0.0,4,2.0 +908,1243,2180.499412242681,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31660.0,0.0,0.0,30703.15,0.0,0.0,1,6,4.0,3,0.0 +909,1244,1262.7104733214721,27.0,111,30.0,54,1.0,0.0,3.0,1.6,0.0,6860.0,0.0,0.0,0.0,0.0,12414.0,0.0,0.0,3,9,7.0,2,1.0 +910,1245,3853.952449824754,23.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23770.0,0.0,21800.0,3,9,7.0,1,1.0 +911,1247,2198.3139686822487,58.0,211,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,16520.0,0.0,0.0,37976.45,0.0,20610.0,1,2,2.0,3,2.0 +912,1249,1542.6114682449927,45.0,111,12070.0,35,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,26778.8,0.0,3780.0,3,7,5.0,4,1.0 +913,1250,1680.9274511767046,48.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44595.1,0.0,45600.0,2,10,8.0,4,2.0 +914,1252,1076.510417731185,25.0,111,0.0,54,1.0,0.0,2.0,1.3,0.0,5470.0,0.0,0.0,0.0,0.0,13016.25,410.0,0.0,3,7,5.0,2,1.0 +915,1254,2115.120411531525,68.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23280.0,0.0,0.0,26196.268682348174,0.0,0.0,1,0,0.0,3,0.0 +916,1255,2711.6016854767377,86.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37750.0,0.0,0.0,37265.25,0.0,0.0,5,9,7.0,3,0.0 +917,1256,1971.7089371126458,43.0,111,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,59768.0,0.0,52980.0,2,10,8.0,4,2.0 +918,1257,291.0013835219537,42.0,211,0.0,48,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28153.6,0.0,28210.0,3,4,3.0,2,2.0 +919,1259,2047.1631775205474,87.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53810.0,1778.0,0.0,58258.68211966223,0.0,0.0,1,6,5.0,3,0.0 +920,1260,2085.540778084674,63.0,112,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,20150.0,0.0,0.0,18911.9,0.0,0.0,3,9,0.0,4,0.0 +921,1261,2335.5029545638367,56.0,111,18640.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,1950.0,0.0,0.0,32736.35,0.0,13390.0,1,9,7.0,3,1.0 +922,1262,3813.496847356085,60.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16630.0,0.0,0.0,19214.0,0.0,0.0,3,9,1.0,1,0.0 +923,1263,5516.40422986154,54.0,221,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43495.1,0.0,46940.0,1,1,2.0,3,2.0 +924,1265,1738.2117605494836,54.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,19990.0,0.0,0.0,56697.03672134256,0.0,43600.0,2,10,8.0,4,1.0 +925,1266,2218.9395559395916,54.0,112,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9760.0,0.0,0.0,34304.95,0.0,29010.0,1,7,0.0,3,1.0 +926,1267,3935.3007799026354,57.0,111,0.0,54,2.0,2.0,4.0,2.5,0.0,0.0,0.0,19430.0,0.0,0.0,62609.15,0.0,45140.0,1,10,8.0,4,2.0 +927,1269,2969.606548967073,46.0,111,5910.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10431.8,0.0,4800.0,3,9,7.0,1,1.0 +928,1270,2053.7745417806136,76.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17730.0,0.0,0.0,18270.0,0.0,0.0,3,8,0.0,3,0.0 +929,1271,1797.8921870234851,79.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34800.0,0.0,0.0,31847.8,0.0,0.0,1,9,7.0,3,0.0 +930,1272,2212.6939944145906,26.0,211,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17472.55,0.0,18100.0,3,3,3.0,1,1.0 +931,1273,1841.8775849966255,54.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,8190.0,421.0,0.0,72645.23862709776,0.0,58840.0,5,8,7.0,4,2.0 +932,1274,1464.9343596288552,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28960.0,62.0,0.0,28501.65,0.0,0.0,3,9,7.0,3,0.0 +933,1275,2011.9575552262231,77.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44060.0,0.0,0.0,42490.3,0.0,0.0,1,0,0.0,3,0.0 +934,1277,1367.4521016084732,38.0,111,7100.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,39443.95,0.0,14880.0,3,7,5.0,4,1.0 +935,1278,2256.807065501708,81.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34460.0,103.0,0.0,37165.35,0.0,0.0,1,9,7.0,3,0.0 +936,1279,2862.5900120179067,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35340.0,0.0,0.0,33900.5,0.0,0.0,3,7,5.0,3,0.0 +937,1282,3541.71231247238,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,78840.0,0.0,0.0,72463.7,0.0,0.0,1,10,8.0,3,0.0 +938,1283,3542.8983750129773,93.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15110.0,0.0,0.0,15110.0,0.0,0.0,5,9,0.0,3,0.0 +939,1284,2521.7624039066577,58.0,111,0.0,75,0.0,0.0,2.0,1.5,18590.0,0.0,0.0,0.0,0.0,0.0,21302.0,0.0,0.0,3,8,7.0,3,0.0 +940,1287,5295.625269741336,20.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,2107.2,0.0,0.0,3,9,7.0,5,0.0 +941,1288,2263.9848220338,39.0,112,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26993.1,0.0,29620.0,2,8,1.0,1,1.0 +942,1292,828.9657775394654,81.0,111,0.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,25090.0,0.0,0.0,22706.05,0.0,0.0,1,7,5.0,1,1.0 +943,1293,2374.9000426186126,43.0,112,0.0,63,2.0,2.0,7.0,3.6,0.0,0.0,0.0,0.0,0.0,0.0,55743.0,0.0,37890.0,3,9,1.0,4,2.0 +944,1294,1569.3255957532997,64.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18640.0,0.0,0.0,18588.75,0.0,0.0,3,0,0.0,3,0.0 +945,1296,2367.190555738297,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18290.0,0.0,0.0,17519.895444302372,0.0,0.0,1,8,6.0,1,0.0 +946,1298,4771.2574537846685,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31100.0,0.0,0.0,27788.95,0.0,0.0,3,10,8.0,1,0.0 +947,1299,2079.7470688435064,55.0,112,460.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61461.3,0.0,8250.0,1,7,0.0,4,2.0 +948,1300,1712.940047468345,59.0,111,10320.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,78.0,0.0,73954.87301602351,0.0,45210.0,1,5,4.0,3,2.0 +949,1301,2515.0964775330576,68.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23050.0,0.0,0.0,21041.7,0.0,0.0,1,9,2.0,1,0.0 +950,1303,4323.4948621145895,25.0,400,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17402.65,830.0,16580.0,3,0,0.0,1,1.0 +951,1308,1950.9013793296047,53.0,211,6390.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56358.65,1940.0,48430.0,3,3,3.0,4,2.0 +952,1309,2567.9271773714213,39.0,111,5020.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46668.55,0.0,37990.0,5,8,7.0,4,2.0 +953,1310,1396.480409154847,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21780.0,0.0,0.0,22948.0,0.0,0.0,1,4,3.0,1,0.0 +954,1311,2544.6688661118064,43.0,400,0.0,64,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,28956.1,0.0,26660.0,2,0,0.0,4,2.0 +955,1318,2815.0681297952437,41.0,111,0.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,27695.8,0.0,22860.0,5,10,8.0,4,2.0 +956,1319,2264.7753460684635,61.0,211,9310.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38670.0,0.0,0.0,43706.4,0.0,0.0,1,1,2.0,3,0.0 +957,1320,1458.8099389467002,49.0,112,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32893.0,0.0,27880.0,1,7,0.0,4,2.0 +958,1323,2201.215900097204,32.0,111,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,63546.95,0.0,68490.0,3,6,4.0,2,3.0 +959,1324,2797.13565919869,91.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18570.0,0.0,0.0,17678.8,0.0,0.0,1,8,7.0,1,0.0 +960,1325,3581.567860768808,80.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8900.0,0.0,0.0,5292.25,0.0,0.0,5,8,7.0,1,0.0 +961,1326,1713.4225029043332,59.0,400,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2600.0,59.0,0.0,31908.45,0.0,29940.0,1,0,0.0,1,1.0 +962,1327,1866.7730779785925,83.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34180.0,0.0,0.0,43598.5,0.0,0.0,1,7,5.0,3,0.0 +963,1329,1892.410430594295,50.0,111,0.0,34,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,187.0,0.0,79519.2,0.0,86900.0,1,9,7.0,4,2.0 +964,1330,348.0543171542288,45.0,221,0.0,52,1.0,0.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,31447.15,0.0,23990.0,2,1,1.0,2,1.0 +965,1331,1114.618957429261,39.0,111,10750.0,37,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,10.0,0.0,53990.7,0.0,32130.0,2,7,5.0,4,2.0 +966,1332,2663.2874974268707,82.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20600.0,0.0,0.0,20561.3,0.0,0.0,1,0,0.0,1,0.0 +967,1336,3455.662147627409,36.0,111,0.0,67,1.0,0.0,1.0,1.0,9700.0,0.0,0.0,0.0,0.0,0.0,13056.0,0.0,270.0,3,4,4.0,1,1.0 +968,1340,401.7415567580154,48.0,120,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24024.55,0.0,18130.0,3,0,0.0,2,1.0 +969,1341,4399.771232950579,36.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47480.0,0.0,44130.0,2,8,6.0,4,2.0 +970,1342,1989.315813006514,22.0,111,2190.0,63,2.0,1.0,2.0,1.5,0.0,5730.0,0.0,0.0,0.0,0.0,26720.25,0.0,15830.0,3,5,4.0,2,2.0 +971,1344,4371.79471694727,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,74384.1,0.0,79310.0,2,10,8.0,4,2.0 +972,1347,4201.519167962021,24.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,57.0,0.0,22331.3,0.0,22400.0,3,8,6.0,1,1.0 +973,1348,2105.163872592262,62.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24250.0,25.0,0.0,25198.0,0.0,0.0,3,8,3.0,1,0.0 +974,1349,1933.198729337801,40.0,300,0.0,37,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,33529.0,0.0,34340.0,2,0,0.0,2,1.0 +975,1350,1191.973887706299,59.0,111,8800.0,38,1.0,0.0,2.0,1.5,0.0,0.0,0.0,15710.0,655.0,0.0,30197.6,0.0,5230.0,1,7,5.0,3,1.0 +976,1351,3443.1306962629997,46.0,112,0.0,53,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56933.05,0.0,59390.0,2,8,0.0,4,2.0 +977,1352,2026.621089226855,51.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31380.9,0.0,36090.0,3,10,8.0,1,1.0 +978,1353,2544.3570500667456,56.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3072.0,0.0,0.0,3,0,0.0,1,0.0 +979,1354,2670.3293120239987,69.0,300,0.0,78,1.0,1.0,3.0,2.0,11870.0,0.0,0.0,16200.0,10.0,0.0,44774.2,0.0,19110.0,1,0,0.0,4,1.0 +980,1356,1883.9540222294142,55.0,221,4870.0,43,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43930.316514957776,0.0,40290.0,1,1,2.0,4,3.0 +981,1358,3328.1866624126037,82.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17140.0,0.0,0.0,17134.95,0.0,0.0,3,8,6.0,1,0.0 +982,1360,2069.5684940359233,50.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16503.4,0.0,0.0,2,9,7.0,2,1.0 +983,1361,4055.712622187784,86.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27880.0,0.0,0.0,24445.80317625865,0.0,0.0,1,0,1.0,1,0.0 +984,1363,1957.788318994955,59.0,111,6990.0,35,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17091.85,0.0,10980.0,1,10,8.0,1,1.0 +985,1364,2513.8240376662443,85.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26180.0,0.0,0.0,27450.0,0.0,0.0,1,1,2.0,3,0.0 +986,1367,2050.0285984989973,23.0,112,9830.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17360.15,520.0,7260.0,3,8,0.0,1,1.0 +987,1368,1940.5766465404927,69.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20300.0,0.0,0.0,18847.9,0.0,0.0,1,0,1.0,1,0.0 +988,1369,2858.9275092849634,40.0,120,130.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15701.35,0.0,13210.0,3,0,3.0,1,1.0 +989,1370,1718.252843887662,55.0,111,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31209.65,240.0,31450.0,3,8,7.0,4,2.0 +990,1373,3259.301448390768,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35510.0,0.0,0.0,34644.20762302077,0.0,2320.0,1,10,8.0,1,0.0 +991,1375,4788.507415098231,29.0,111,4230.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29388.6,0.0,30260.0,3,10,8.0,1,1.0 +992,1376,3168.311821591548,82.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,71970.0,296.0,0.0,79781.25,0.0,0.0,5,8,6.0,1,0.0 +993,1378,1800.3839994969157,29.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43730.5,0.0,47540.0,2,9,1.0,3,2.0 +994,1379,3055.5065006590207,52.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23172.7,0.0,23330.0,3,9,7.0,1,1.0 +995,1380,1670.8637100908547,23.0,112,0.0,53,1.0,1.0,5.0,2.4,0.0,1800.0,0.0,0.0,0.0,0.0,26123.3,2540.0,16010.0,3,9,3.0,4,1.0 +996,1381,2085.578650807575,59.0,120,11600.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,9540.0,0.0,0.0,52697.4,0.0,33520.0,1,0,0.0,4,2.0 +997,1383,2641.6972132968604,48.0,111,0.0,85,0.0,0.0,1.0,1.0,9700.0,0.0,0.0,0.0,0.0,0.0,9700.0,0.0,0.0,1,9,7.0,1,0.0 +998,1384,1607.9926184159178,52.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8370.15,0.0,8710.0,3,8,2.0,1,1.0 +999,1387,2414.916440737472,25.0,211,13100.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27818.4,610.0,18670.0,3,1,2.0,3,2.0 +1000,1388,3758.2562244560754,47.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17246.6,0.0,6370.0,3,9,7.0,1,1.0 +1001,1389,3184.937437560768,31.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,61859.05,0.0,71760.0,3,8,7.0,3,2.0 +1002,1392,2623.899376163829,39.0,111,0.0,85,0.0,0.0,1.0,1.0,11850.0,0.0,0.0,0.0,0.0,0.0,15118.0,0.0,0.0,3,8,6.0,1,0.0 +1003,1393,959.3184600603333,42.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,18790.0,0.0,0.0,65920.35,0.0,48480.0,3,8,7.0,5,1.0 +1004,1394,1726.3837886643398,45.0,112,0.0,46,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46984.6,0.0,41010.0,2,7,1.0,4,2.0 +1005,1395,2347.488786048304,66.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,150.0,0.0,0.0,42778.95,0.0,11930.0,3,10,8.0,1,1.0 +1006,1396,2749.8087030190245,53.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22844.25,0.0,24560.0,2,6,4.0,1,1.0 +1007,1397,3150.9790928275393,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40560.0,0.0,0.0,36813.95,0.0,0.0,1,6,4.0,3,0.0 +1008,1400,1709.5647440453595,70.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18230.0,0.0,0.0,18067.7,0.0,60.0,1,0,0.0,1,0.0 +1009,1401,1954.9716215360647,63.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22220.0,130.0,0.0,21765.05,0.0,0.0,1,0,0.0,3,0.0 +1010,1402,2514.4766150556266,72.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32590.0,0.0,0.0,30741.0,0.0,0.0,1,1,3.0,3,0.0 +1011,1403,1697.59964454455,82.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42340.0,0.0,0.0,40496.48608609083,0.0,0.0,1,10,8.0,3,0.0 +1012,1404,1653.410398779923,54.0,112,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,83336.7,0.0,91300.0,2,10,0.0,4,2.0 +1013,1405,2838.948664998872,37.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14150.0,0.0,0.0,47149.4,0.0,40060.0,1,8,7.0,2,1.0 +1014,1406,1601.589271992214,63.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47370.0,0.0,0.0,46319.5,0.0,0.0,1,0,1.0,3,0.0 +1015,1407,1577.9494164683215,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43750.0,0.0,0.0,39145.25,0.0,0.0,1,8,6.0,3,0.0 +1016,1408,2043.1927517040153,65.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10070.0,0.0,0.0,11354.0,0.0,0.0,3,9,3.0,1,0.0 +1017,1409,4053.0781945054055,34.0,111,8200.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41983.15,0.0,38560.0,3,10,8.0,3,2.0 +1018,1410,2601.7994065436883,78.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,970.0,13560.0,0.0,0.0,18079.8,0.0,0.0,1,0,0.0,3,0.0 +1019,1411,2015.9285982488109,42.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,26300.0,0.0,0.0,45707.65,0.0,21850.0,1,8,7.0,4,1.0 +1020,1412,1840.5441727939087,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22360.0,0.0,0.0,20211.05,0.0,0.0,2,10,8.0,1,0.0 +1021,1413,2615.72808081978,79.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17500.0,0.0,0.0,18340.0,0.0,0.0,3,0,0.0,1,0.0 +1022,1414,2533.2863171495546,58.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,71316.25,0.0,83900.0,1,4,4.0,3,2.0 +1023,1415,1786.1825974703575,45.0,120,0.0,13,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,110.0,0.0,46298.17403527069,0.0,20840.0,1,0,0.0,4,2.0 +1024,1417,2426.978008008175,55.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19394.15,0.0,20580.0,2,6,0.0,1,1.0 +1025,1418,1400.0773737919098,24.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34519.85,520.0,34770.0,3,6,5.0,3,2.0 +1026,1419,2764.8474825309327,57.0,211,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18190.0,0.0,0.0,47281.794116810466,0.0,31340.0,3,1,2.0,3,1.0 +1027,1420,2154.414378168639,77.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30300.0,0.0,0.0,26028.953176258652,0.0,0.0,1,8,3.0,1,0.0 +1028,1422,6933.947625356833,60.0,112,0.0,77,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,9060.3,0.0,0.0,1,7,1.0,1,0.0 +1029,1423,2237.5516765281814,46.0,111,0.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56142.9,0.0,62050.0,2,9,7.0,4,3.0 +1030,1424,2889.3898260652772,59.0,300,0.0,78,0.0,0.0,3.0,1.8,0.0,0.0,0.0,9850.0,0.0,0.0,39073.1,0.0,29010.0,3,0,0.0,4,0.0 +1031,1425,1693.4592965452412,31.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24630.0,260.0,19300.0,5,10,8.0,2,1.0 +1032,1426,1394.3536426629225,49.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41701.25,0.0,40160.0,3,8,7.0,4,2.0 +1033,1427,2918.4050591560895,26.0,400,0.0,54,2.0,2.0,2.0,1.5,0.0,370.0,0.0,0.0,0.0,0.0,11701.5,0.0,16490.0,3,0,0.0,3,2.0 +1034,1430,775.9540567623944,39.0,111,5570.0,68,3,0.0,4.0,2.5,0.0,8870.0,0.0,0.0,0.0,0.0,23820.0,0.0,0.0,3,9,7.0,2,3.0 +1035,1432,3810.4454501130595,28.0,120,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19321.65,0.0,20880.0,2,0,1.0,1,1.0 +1036,1433,1528.76291101148,80.0,111,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,18480.0,0.0,0.0,18757.0,0.0,0.0,3,6,5.0,3,1.0 +1037,1435,4287.517243170275,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35210.0,0.0,0.0,32468.50317625865,0.0,0.0,1,9,7.0,3,0.0 +1038,1436,890.968185454743,50.0,111,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18101.7,0.0,14180.0,3,8,7.0,2,1.0 +1039,1437,2087.333215016682,35.0,111,2680.0,56,1.0,0.0,4.0,1.9,0.0,5730.0,0.0,0.0,0.0,0.0,22694.0,0.0,0.0,3,10,8.0,2,1.0 +1040,1438,1115.1382670125347,28.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,6030.0,0.0,0.0,0.0,0.0,17948.55,0.0,0.0,3,9,7.0,2,0.0 +1041,1439,2737.0684101321176,54.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16572.05,0.0,16830.0,2,8,1.0,1,1.0 +1042,1442,2624.526783239656,60.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9340.0,0.0,0.0,21356.8,0.0,13720.0,2,0,0.0,1,0.0 +1043,1443,3690.2665723539,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13450.0,0.0,0.0,28994.65,0.0,15970.0,2,10,8.0,1,0.0 +1044,1445,1635.3422785891405,49.0,300,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48256.75,0.0,51620.0,2,0,0.0,4,2.0 +1045,1446,3197.204481220228,48.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16727.95,0.0,16930.0,3,9,7.0,1,1.0 +1046,1447,2225.4229886061466,62.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35790.0,579.0,0.0,39756.1,0.0,0.0,1,9,7.0,1,0.0 +1047,1450,1511.1313473300668,67.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20400.0,0.0,0.0,19513.25,0.0,0.0,1,0,0.0,3,0.0 +1048,1451,2850.0948091466507,68.0,112,0.0,64,1.0,0.0,1.0,1.0,0.0,0.0,0.0,15230.0,0.0,0.0,15081.15,0.0,0.0,3,8,0.0,1,1.0 +1049,1453,1811.126174921475,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20560.0,0.0,0.0,19872.95,0.0,0.0,1,8,0.0,3,0.0 +1050,1456,2468.56750069645,71.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25890.0,0.0,0.0,24762.0,0.0,0.0,3,7,4.0,1,0.0 +1051,1457,701.6061289203409,45.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37865.65,0.0,42350.0,1,9,7.0,1,1.0 +1052,1460,2874.4068169026864,28.0,300,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48085.8,0.0,43780.0,2,0,0.0,4,2.0 +1053,1461,4236.088997008127,57.0,111,0.0,48,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,67765.35,0.0,34920.0,3,10,8.0,5,3.0 +1054,1465,2081.1132455450743,88.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57220.0,0.0,0.0,54202.7,0.0,0.0,3,9,7.0,3,0.0 +1055,1467,2264.14711571556,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,58310.0,2111.0,0.0,46426.12472053071,0.0,0.0,1,6,4.0,1,0.0 +1056,1470,5181.660999995344,74.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37400.0,0.0,0.0,34658.0,0.0,0.0,3,9,3.0,1,0.0 +1057,1471,922.537495804718,44.0,111,5950.0,63,1.0,0.0,5.0,2.4,0.0,720.0,0.0,0.0,0.0,0.0,28423.7,0.0,2810.0,3,9,7.0,4,1.0 +1058,1472,910.0875331521262,50.0,120,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31214.45,1330.0,28180.0,3,0,0.0,2,1.0 +1059,1473,2322.9532094123556,79.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17850.0,0.0,0.0,17528.8,0.0,0.0,1,0,0.0,1,0.0 +1060,1474,1866.1522311609438,62.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32050.3,0.0,35480.0,1,7,6.0,1,1.0 +1061,1477,2138.7043038122824,73.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22950.0,0.0,0.0,21341.35,0.0,0.0,5,8,7.0,1,0.0 +1062,1478,2041.939112933377,54.0,111,0.0,75,2.0,1.0,3.0,2.0,0.0,0.0,0.0,48660.0,0.0,0.0,72051.1,0.0,41090.0,2,10,8.0,4,2.0 +1063,1479,2620.600205651358,61.0,111,0.0,75,2.0,2.0,4.0,2.5,6330.0,0.0,0.0,44040.0,0.0,0.0,76689.30171226374,1210.0,26400.0,1,8,6.0,4,2.0 +1064,1480,2515.5463989962063,64.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,4520.0,5620.0,0.0,0.0,14052.0,0.0,960.0,3,10,4.0,1,0.0 +1065,1481,608.6442122306563,29.0,211,0.0,85,0.0,0.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,16482.0,0.0,0.0,3,1,3.0,2,0.0 +1066,1484,4947.744731213622,70.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28390.0,0.0,0.0,26122.3,0.0,0.0,2,1,3.0,1,0.0 +1067,1485,2239.415018195367,40.0,400,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52864.65,0.0,53310.0,1,0,0.0,4,2.0 +1068,1486,2245.61948380123,59.0,111,5460.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,6020.0,0.0,0.0,17453.0,2420.0,270.0,3,8,7.0,2,1.0 +1069,1487,1704.7137600745884,44.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26107.9,0.0,28220.0,1,7,6.0,2,1.0 +1070,1488,1834.1199864806956,86.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50880.0,0.0,0.0,50159.45,0.0,0.0,3,4,4.0,3,0.0 +1071,1489,3730.422520773693,86.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20140.0,0.0,0.0,19288.9,0.0,0.0,3,6,0.0,1,0.0 +1072,1493,1999.136607527482,57.0,112,21310.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28185.55,0.0,8040.0,1,8,0.0,4,2.0 +1073,1494,1960.3965408526794,54.0,120,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35154.75,0.0,36260.0,2,0,0.0,3,2.0 +1074,1495,2716.373134627238,48.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50603.95,0.0,48330.0,1,8,7.0,4,2.0 +1075,1496,2330.209149908568,49.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37836.15,0.0,37200.0,2,8,7.0,4,2.0 +1076,1497,615.4124303260835,51.0,111,1800.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34530.1,240.0,26850.0,3,8,7.0,4,2.0 +1077,1498,2420.667071495164,80.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,5360.0,1880.0,0.0,0.0,11442.75,0.0,0.0,1,0,0.0,1,0.0 +1078,1499,4287.203383018271,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23540.0,0.0,0.0,21160.25,0.0,0.0,1,10,8.0,1,0.0 +1079,1501,2690.4194745130253,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,65750.0,1553.0,0.0,58979.2,0.0,0.0,1,10,8.0,3,0.0 +1080,1504,3317.05981827612,69.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2600.0,6040.0,0.0,0.0,8847.65,0.0,570.0,1,6,0.0,1,0.0 +1081,1506,2981.9640770939077,33.0,111,7720.0,64,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43393.2,0.0,31220.0,3,6,5.0,4,1.0 +1082,1507,1404.579137657842,51.0,112,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20064.8,0.0,0.0,1,8,0.0,3,1.0 +1083,1508,3382.9538560184924,80.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18830.0,0.0,0.0,21143.0,0.0,0.0,3,9,7.0,1,0.0 +1084,1509,346.1295198924457,45.0,112,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,25426.8,1780.0,17720.0,3,7,0.0,2,1.0 +1085,1511,2919.7709558304555,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39920.0,0.0,0.0,36255.25,0.0,0.0,1,9,7.0,1,0.0 +1086,1512,385.93258802855826,49.0,112,0.0,85,0.0,0.0,8.0,3.9,0.0,14120.0,0.0,0.0,0.0,0.0,36122.0,570.0,8510.0,5,10,3.0,2,0.0 +1087,1513,2790.275740542646,61.0,111,0.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,31240.0,0.0,0.0,54084.05,0.0,39370.0,1,10,8.0,3,2.0 +1088,1514,2689.4621108580222,59.0,112,0.0,78,0.0,0.0,2.0,1.5,2410.0,0.0,0.0,6370.0,0.0,0.0,8399.1,0.0,0.0,1,5,0.0,3,0.0 +1089,1515,2422.2792519917284,70.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30400.0,0.0,0.0,29214.5,0.0,0.0,1,9,3.0,3,0.0 +1090,1516,2474.5169139131135,46.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51441.89018444327,0.0,0.0,2,9,7.0,1,1.0 +1091,1518,4872.69443154902,43.0,111,0.0,31,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,18719.25,0.0,0.0,2,6,5.0,2,1.0 +1092,1519,2065.6002862769046,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32340.0,0.0,0.0,31137.5,0.0,0.0,1,5,0.0,3,0.0 +1093,1521,774.7348976698121,36.0,221,0.0,56,1.0,0.0,3.0,1.8,0.0,6040.0,0.0,0.0,0.0,0.0,15980.2,170.0,1450.0,3,1,2.0,2,1.0 +1094,1522,4472.68508729661,73.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29280.0,0.0,0.0,26494.55,0.0,0.0,3,10,8.0,1,0.0 +1095,1523,4133.115367294492,37.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,179.0,0.0,23719.95,0.0,24750.0,3,9,7.0,1,1.0 +1096,1524,1656.806990646387,41.0,111,5010.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41662.27362290952,0.0,36310.0,2,9,7.0,4,2.0 +1097,1525,2460.9771844918073,60.0,400,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20138.34651559685,0.0,0.0,1,0,0.0,1,1.0 +1098,1527,803.6845868372125,67.0,300,0.0,86,1.0,0.0,5.0,2.6,0.0,5620.0,2930.0,11840.0,0.0,0.0,31591.0,0.0,1050.0,3,0,0.0,5,1.0 +1099,1528,2202.4601815813767,71.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21570.0,0.0,0.0,19355.85,0.0,0.0,1,8,1.0,1,0.0 +1100,1529,3306.837293024762,44.0,112,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21138.45,0.0,23760.0,2,8,3.0,1,1.0 +1101,1530,1536.8649782673367,89.0,120,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7610.0,0.0,0.0,7650.9,0.0,0.0,1,0,0.0,1,0.0 +1102,1531,5359.074745552216,54.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25426.14411681047,0.0,25520.0,3,10,8.0,1,1.0 +1103,1532,2630.117025511763,56.0,111,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39447.4,0.0,42330.0,3,10,8.0,3,2.0 +1104,1533,2002.3393165167292,50.0,120,6310.0,65,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,59103.4,190.0,50910.0,2,0,0.0,4,3.0 +1105,1534,3776.5687214420955,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9240.0,0.0,0.0,11064.0,0.0,0.0,3,9,7.0,1,0.0 +1106,1535,1222.2697366998348,36.0,112,0.0,47,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28658.1,0.0,18560.0,3,9,3.0,2,1.0 +1107,1536,2285.2003905443366,57.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14810.0,0.0,0.0,38739.35,0.0,26660.0,1,8,6.0,2,1.0 +1108,1537,2134.9309674794995,31.0,400,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,238.0,0.0,18070.45,0.0,18830.0,2,0,1.0,1,1.0 +1109,1538,1564.204192710253,54.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35188.95,0.0,44020.0,2,8,7.0,1,1.0 +1110,1539,2373.502529500271,44.0,211,2870.0,64,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,41035.3,0.0,29250.0,1,1,3.0,4,2.0 +1111,1543,1951.2711874123318,82.0,212,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18740.0,0.0,0.0,18685.6,0.0,0.0,1,1,0.0,1,0.0 +1112,1544,2120.220988651074,57.0,112,0.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,17780.0,0.0,0.0,50514.0,0.0,33840.0,1,9,0.0,3,2.0 +1113,1546,1485.2202762564982,62.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22258.45,0.0,23570.0,3,6,5.0,1,1.0 +1114,1551,1840.4986855017507,54.0,111,6490.0,64,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34815.0,0.0,26500.0,3,9,7.0,4,3.0 +1115,1553,1982.3044848640047,59.0,111,5610.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27487.25,0.0,23460.0,2,9,7.0,3,2.0 +1116,1554,2050.701435600058,56.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,404.0,0.0,39259.35,0.0,48190.0,1,9,7.0,2,2.0 +1117,1556,1897.7020047847302,72.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,73270.0,1190.0,0.0,68698.1,0.0,0.0,1,0,1.0,3,0.0 +1118,1557,3499.6145511044915,54.0,111,1180.0,56,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,3626.5,0.0,1760.0,1,10,8.0,2,1.0 +1119,1558,1500.5325487753632,85.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21060.0,0.0,0.0,20042.25,0.0,0.0,1,8,7.0,3,0.0 +1120,1559,1372.9933610989065,61.0,112,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,56.0,0.0,12276.0,0.0,0.0,1,8,1.0,3,2.0 +1121,1560,2898.3812637650676,70.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10030.0,0.0,0.0,11422.0,0.0,0.0,3,6,0.0,1,0.0 +1122,1562,576.4017178373441,49.0,111,170.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,970.0,0.0,0.0,26048.0,0.0,18050.0,3,9,7.0,2,1.0 +1123,1563,2397.716496998863,63.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44940.0,0.0,0.0,43924.18579802251,0.0,0.0,1,0,2.0,3,0.0 +1124,1564,1388.3484240624073,82.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18600.0,0.0,0.0,32906.96899592301,0.0,0.0,5,9,2.0,1,0.0 +1125,1565,1300.0585174917621,58.0,111,0.0,62,1.0,1.0,3.0,2.0,0.0,0.0,0.0,9250.0,0.0,0.0,69375.95,0.0,56070.0,1,8,7.0,4,1.0 +1126,1566,1331.977206126609,66.0,111,0.0,72,0.0,0.0,4.0,2.5,0.0,0.0,0.0,73660.0,15806.0,0.0,69088.08736469634,0.0,0.0,1,5,4.0,4,0.0 +1127,1568,2169.200692323002,86.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11030.0,0.0,0.0,11082.0,0.0,0.0,5,8,7.0,1,0.0 +1128,1569,2311.0931983937717,47.0,111,0.0,33,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,63981.69395088651,0.0,62870.0,4,9,7.0,4,2.0 +1129,1571,1545.6046144839743,65.0,120,1150.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30470.0,0.0,0.0,67989.75,0.0,0.0,1,0,0.0,3,0.0 +1130,1573,2934.4835335729895,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35240.0,0.0,0.0,33914.55,0.0,0.0,3,6,5.0,3,0.0 +1131,1574,1533.108810554345,79.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51140.0,418.0,0.0,48356.4,0.0,0.0,1,0,1.0,3,0.0 +1132,1575,1710.8404945598745,58.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45877.5,0.0,50160.0,3,7,4.0,3,2.0 +1133,1576,763.943086168642,47.0,112,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37579.8,0.0,40140.0,1,7,0.0,2,1.0 +1134,1577,2285.5614060018943,39.0,112,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,926.0,0.0,11467.35,0.0,0.0,1,7,0.0,1,1.0 +1135,1578,1630.4443508600366,36.0,211,0.0,46,2.0,2.0,3.0,1.8,0.0,3410.0,0.0,0.0,0.0,0.0,38446.7,1490.0,29290.0,3,1,3.0,5,2.0 +1136,1579,4038.4947047585983,54.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10617.2,0.0,12050.0,3,6,5.0,1,0.0 +1137,1580,1941.323907386186,58.0,120,500.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3740.0,0.0,0.0,9582.75,0.0,5100.0,1,0,0.0,1,1.0 +1138,1582,2230.085784738989,56.0,400,7630.0,13,3,3.0,3.0,2.0,0.0,0.0,0.0,5940.0,498.0,0.0,41419.7,0.0,8870.0,1,0,0.0,2,3.0 +1139,1584,1462.13653158476,67.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29670.0,1313.0,0.0,30707.55,0.0,0.0,1,0,0.0,3,0.0 +1140,1587,2652.0983626483767,85.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25190.0,0.0,0.0,23746.432119662233,0.0,0.0,1,7,5.0,3,0.0 +1141,1588,1659.484887506127,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,88150.0,0.0,0.0,74692.15,0.0,0.0,1,8,7.0,3,0.0 +1142,1589,1747.6796618060866,52.0,300,14260.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33210.05,0.0,6890.0,3,0,0.0,3,2.0 +1143,1590,3762.659696719215,42.0,111,10270.0,35,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29736.45,330.0,17800.0,3,10,8.0,4,2.0 +1144,1592,1887.9609082574634,37.0,111,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14060.0,0.0,0.0,27263.75,0.0,13740.0,3,7,5.0,2,1.0 +1145,1594,2911.5729073888674,33.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21085.2,0.0,22270.0,3,8,6.0,1,1.0 +1146,1597,2499.190503551927,38.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,81362.8,0.0,85080.0,2,10,8.0,4,2.0 +1147,1598,1238.5732840276935,55.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,26296.1,0.0,23650.0,1,7,5.0,1,1.0 +1148,1600,1605.3914944939986,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43780.0,10.0,0.0,41508.7,0.0,0.0,1,9,7.0,3,0.0 +1149,1602,2208.482432902322,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4570.0,0.0,0.0,3825.5,0.0,0.0,1,9,7.0,1,0.0 +1150,1604,2706.4233188628436,54.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22756.75,0.0,24900.0,3,10,8.0,1,1.0 +1151,1605,3720.4770634748043,19.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18942.0,0.0,15630.0,3,9,7.0,1,1.0 +1152,1606,2041.7417344570893,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15980.0,0.0,0.0,15980.0,0.0,0.0,1,7,5.0,1,0.0 +1153,1608,2412.747549363903,82.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16600.0,0.0,0.0,16274.35,0.0,0.0,1,6,0.0,3,0.0 +1154,1610,1782.8731307174285,47.0,300,560.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34844.0,0.0,35340.0,5,0,0.0,3,1.0 +1155,1612,2790.8392170245893,82.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17680.0,2617.0,0.0,20295.45,0.0,0.0,1,8,0.0,1,0.0 +1156,1613,866.0647209165775,40.0,300,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49984.45,0.0,51580.0,2,0,0.0,4,2.0 +1157,1616,2315.2284464012837,70.0,112,0.0,12,1.0,1.0,2.0,1.5,0.0,0.0,0.0,29920.0,0.0,0.0,30229.7,0.0,0.0,3,8,0.0,3,1.0 +1158,1617,1604.9044911336684,55.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44517.65,0.0,47490.0,1,7,5.0,3,2.0 +1159,1618,2632.3013566456566,34.0,120,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,36696.0,74041.95,0.0,41850.0,2,0,1.0,4,2.0 +1160,1619,2064.335247822602,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38930.0,0.0,0.0,37511.0,0.0,0.0,1,8,6.0,3,0.0 +1161,1620,1495.874253920791,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27090.0,0.0,0.0,26095.5,0.0,0.0,1,7,6.0,3,0.0 +1162,1623,3721.6372761160515,38.0,111,11030.0,48,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43719.9,0.0,29140.0,1,9,7.0,4,2.0 +1163,1624,1511.6660102540338,56.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37624.1,0.0,42130.0,1,8,7.0,4,2.0 +1164,1625,2547.4258110078326,49.0,111,0.0,37,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,3190.0,0.0,89102.75,0.0,96430.0,2,10,8.0,4,3.0 +1165,1626,1876.0027623953972,37.0,111,17930.0,55,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,53974.0,77149.6,0.0,0.0,2,6,4.0,4,2.0 +1166,1627,2793.5461206514565,29.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44454.95,0.0,42780.0,3,9,7.0,3,2.0 +1167,1628,2351.740306950984,82.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22640.0,33.0,0.0,24170.0,0.0,0.0,3,9,7.0,1,0.0 +1168,1630,1152.257648202532,26.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,6030.0,0.0,0.0,0.0,0.0,16758.0,0.0,30.0,3,9,7.0,2,0.0 +1169,1631,2146.456237035951,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40410.0,0.0,0.0,37392.35,0.0,0.0,3,6,4.0,3,0.0 +1170,1633,2177.9709467064645,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40070.0,111.0,0.0,39960.438383192595,0.0,0.0,1,4,4.0,3,0.0 +1171,1634,1811.9250944309722,64.0,300,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1229.0,0.0,30401.660706554077,0.0,32910.0,1,0,0.0,1,1.0 +1172,1635,1448.3272715944645,45.0,211,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,5.0,0.0,57406.65,0.0,52600.0,2,2,3.0,4,2.0 +1173,1637,6022.838919055054,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,2990.0,8300.0,0.0,0.0,13828.0,0.0,0.0,3,10,8.0,1,0.0 +1174,1639,4068.901178032733,44.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35494.45,0.0,34360.0,3,10,8.0,4,2.0 +1175,1640,1839.8808378050621,60.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,8130.0,0.0,0.0,46361.45,0.0,53670.0,1,9,7.0,3,2.0 +1176,1643,1629.2272766969527,69.0,111,6470.0,86,1.0,0.0,4.0,2.1,0.0,0.0,0.0,25180.0,0.0,0.0,32736.15,0.0,0.0,3,10,8.0,5,1.0 +1177,1644,1700.3577126118996,79.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24310.0,0.0,0.0,23572.5,0.0,0.0,1,7,5.0,3,0.0 +1178,1646,3222.0575872607433,39.0,300,1740.0,85,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,12.0,0.0,30087.0,0.0,14010.0,3,0,0.0,4,1.0 +1179,1647,5125.332342340908,45.0,111,0.0,85,0.0,0.0,1.0,1.0,9110.0,0.0,0.0,6280.0,19.0,0.0,14447.35,0.0,0.0,1,9,7.0,1,0.0 +1180,1649,5575.114681143738,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13050.0,0.0,0.0,12804.3,0.0,0.0,3,6,5.0,1,0.0 +1181,1650,555.2844459439813,42.0,211,0.0,85,2.0,0.0,10.0,4.7,0.0,23530.0,0.0,17440.0,0.0,0.0,51888.0,0.0,0.0,3,2,3.0,5,2.0 +1182,1651,4014.2091012946107,56.0,111,9680.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22297.5,0.0,12970.0,3,8,6.0,3,2.0 +1183,1652,2503.633404655289,46.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41000.75,0.0,43430.0,3,9,7.0,4,2.0 +1184,1653,1940.2174158600349,62.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23500.0,829.0,0.0,24074.9,0.0,0.0,1,0,0.0,3,0.0 +1185,1654,3639.022585709135,42.0,111,0.0,68,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,22948.95,0.0,14860.0,3,7,5.0,4,1.0 +1186,1655,1332.579037285904,56.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49811.95,0.0,54430.0,1,9,7.0,3,2.0 +1187,1656,3684.2589245383106,25.0,111,350.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35467.0,760.0,33520.0,3,8,7.0,3,2.0 +1188,1659,2517.5771957029588,89.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19420.0,0.0,0.0,18638.2,0.0,0.0,1,0,0.0,1,0.0 +1189,1661,1685.7449917787173,45.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16357.9,0.0,18530.0,1,9,7.0,1,1.0 +1190,1662,703.4783988502334,31.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18614.75,3900.0,8690.0,3,9,7.0,2,1.0 +1191,1663,2264.4239750024526,41.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63360.15,0.0,58820.0,2,6,4.0,4,2.0 +1192,1664,1566.5645202956011,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31030.0,10.0,0.0,30831.4,0.0,0.0,1,5,0.0,3,0.0 +1193,1666,5141.862957887636,62.0,111,18240.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,45040.0,0.0,0.0,56685.73966908398,0.0,0.0,1,9,7.0,3,1.0 +1194,1667,1742.3122054272253,35.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29691.6,0.0,25830.0,2,9,7.0,4,2.0 +1195,1669,2473.809503425869,81.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,18890.0,0.0,0.0,30859.3,0.0,12080.0,1,9,7.0,4,1.0 +1196,1670,1132.1752206591134,67.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24560.0,0.0,0.0,19609.0,0.0,0.0,1,2,3.0,3,0.0 +1197,1672,691.6133544268783,53.0,211,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,81.0,0.0,90379.25,0.0,108800.0,2,4,3.0,3,2.0 +1198,1673,1090.2845191867575,61.0,112,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20770.0,0.0,0.0,61115.1,0.0,49450.0,5,9,3.0,3,1.0 +1199,1674,4427.507787760272,29.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49349.0,0.0,48830.0,2,9,7.0,4,2.0 +1200,1676,1663.1979345880595,46.0,300,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,138.0,0.0,29102.65,0.0,10340.0,2,0,0.0,4,2.0 +1201,1677,6565.984418171833,27.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27798.6,0.0,29290.0,3,10,8.0,1,1.0 +1202,1682,1989.5707226300674,66.0,211,0.0,63,1.0,0.0,2.0,1.5,0.0,0.0,0.0,27740.0,0.0,0.0,29784.362705034608,0.0,0.0,1,4,4.0,3,1.0 +1203,1683,2493.761638399153,78.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16720.0,0.0,0.0,19148.153532770386,0.0,0.0,1,6,4.0,1,0.0 +1204,1684,748.4433327659523,34.0,111,0.0,85,0.0,0.0,6.0,2.9,0.0,3950.0,0.0,0.0,0.0,0.0,30992.0,0.0,0.0,3,6,5.0,2,0.0 +1205,1685,1622.3970658527048,61.0,221,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1446.0,0.0,11322.6,0.0,0.0,1,3,4.0,1,1.0 +1206,1686,2187.690111188258,52.0,300,0.0,47,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40941.35,0.0,36610.0,2,0,0.0,4,3.0 +1207,1687,1835.3744959591284,50.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24870.8,0.0,26820.0,2,8,2.0,1,1.0 +1208,1688,1730.943453534881,42.0,111,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,44145.6,0.0,44600.0,2,9,7.0,4,2.0 +1209,1689,4777.502048540914,26.0,111,3080.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12369.9,0.0,8340.0,3,9,7.0,1,1.0 +1210,1690,3429.282539846441,51.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,5340.9,0.0,0.0,2,9,7.0,2,1.0 +1211,1691,3615.560121337105,47.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39659.9,0.0,41580.0,3,7,6.0,3,2.0 +1212,1692,2327.2458784533073,40.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18150.35,0.0,18930.0,2,0,1.0,1,1.0 +1213,1694,2442.392018587851,54.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22153.7,0.0,0.0,2,9,0.0,1,1.0 +1214,1695,2354.8341217831653,57.0,120,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24924.3,0.0,23230.0,2,0,0.0,3,2.0 +1215,1698,738.1386994229714,31.0,111,0.0,67,1.0,0.0,3.0,1.6,0.0,6530.0,0.0,0.0,0.0,0.0,12946.55,0.0,0.0,3,6,4.0,2,1.0 +1216,1699,2274.1722495248614,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12700.0,0.0,0.0,12552.3,0.0,0.0,1,8,6.0,1,0.0 +1217,1703,4471.940104924491,23.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18095.0,270.0,18720.0,3,8,6.0,1,1.0 +1218,1704,1892.7700505834055,66.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23980.0,0.0,0.0,23426.95,0.0,0.0,1,0,0.0,3,0.0 +1219,1705,2810.7056977293973,39.0,120,10080.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44436.45,0.0,15350.0,2,0,0.0,4,2.0 +1220,1706,3183.974674332935,60.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30510.0,0.0,0.0,31245.8,0.0,1140.0,1,9,7.0,3,0.0 +1221,1707,2978.1181749969405,64.0,111,7850.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15100.0,0.0,0.0,33291.5,110.0,10950.0,1,8,6.0,2,1.0 +1222,1708,2292.2416944940187,42.0,300,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27456.85,0.0,16050.0,2,0,0.0,4,2.0 +1223,1709,7121.397886040937,74.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21900.0,0.0,0.0,25682.0,0.0,0.0,1,2,3.0,3,0.0 +1224,1710,3073.290197325395,50.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22314.6,0.0,24190.0,3,9,7.0,1,1.0 +1225,1712,2346.2624809791528,83.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35350.0,0.0,0.0,32852.0,0.0,0.0,3,6,4.0,1,0.0 +1226,1713,1368.9241604265362,49.0,111,6760.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,13881.75,0.0,6780.0,1,10,8.0,2,0.0 +1227,1715,2415.083636826788,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28200.0,431.0,0.0,31677.0,0.0,8980.0,1,10,8.0,3,0.0 +1228,1716,1808.6100081915579,47.0,111,5720.0,64,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35399.95,190.0,23070.0,2,7,5.0,4,2.0 +1229,1717,2280.1515465473854,51.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39578.95,0.0,28360.0,1,9,7.0,4,2.0 +1230,1718,1382.952656890517,33.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42772.15,0.0,44660.0,3,9,2.0,4,2.0 +1231,1719,1972.421394419245,55.0,111,0.0,33,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,41178.85,0.0,37260.0,1,9,7.0,4,2.0 +1232,1723,780.2773922769567,39.0,111,0.0,37,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,59324.6,0.0,58930.0,3,9,7.0,2,1.0 +1233,1725,4582.113290542765,28.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44429.7,0.0,48470.0,2,8,0.0,3,2.0 +1234,1726,1674.2934200874763,57.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,334.0,0.0,49075.09101640277,0.0,52920.0,1,10,8.0,3,2.0 +1235,1727,1866.2928924027726,72.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47220.0,0.0,0.0,42719.15,0.0,0.0,1,0,0.0,3,0.0 +1236,1728,2368.416477175473,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36860.0,532.0,0.0,37464.0,0.0,0.0,1,6,5.0,3,0.0 +1237,1730,1557.2873822269596,60.0,120,2660.0,67,2.0,1.0,2.0,1.5,1090.0,0.0,0.0,0.0,0.0,0.0,16633.35,0.0,13170.0,1,0,1.0,3,2.0 +1238,1732,1370.019037794471,38.0,111,850.0,67,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41828.55,0.0,30700.0,3,4,3.0,4,2.0 +1239,1733,1777.2889728509986,56.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20561.9,0.0,23140.0,2,10,8.0,1,1.0 +1240,1734,2348.121871686999,46.0,120,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18351.75,0.0,18570.0,3,0,0.0,1,1.0 +1241,1735,3381.607769299489,35.0,112,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,31003.6,0.0,22780.0,3,10,4.0,4,1.0 +1242,1738,2677.3690616553395,43.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41735.75,0.0,39660.0,3,9,7.0,4,2.0 +1243,1739,3564.212899677852,36.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10678.15,0.0,12290.0,1,4,3.0,1,1.0 +1244,1740,865.5893249212143,47.0,111,330.0,22,1.0,1.0,2.0,1.5,0.0,7020.0,0.0,0.0,0.0,0.0,9516.1,0.0,0.0,3,9,7.0,2,1.0 +1245,1741,4107.024581861732,31.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58603.5,0.0,66340.0,3,7,5.0,3,2.0 +1246,1742,1815.4739337158544,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22330.0,0.0,0.0,21674.15,0.0,0.0,1,8,0.0,3,0.0 +1247,1743,2454.2766698736978,45.0,112,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,206.0,0.0,67093.2,0.0,74730.0,2,8,0.0,4,2.0 +1248,1745,2254.794461346533,66.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39800.0,0.0,0.0,38124.45,0.0,10.0,2,2,2.0,3,0.0 +1249,1746,2086.726611277971,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,75470.0,1323.0,0.0,92523.57055919178,0.0,0.0,1,9,7.0,3,0.0 +1250,1747,2907.1635354998025,37.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46686.0,0.0,49200.0,1,10,4.0,4,2.0 +1251,1749,3409.4805572257587,66.0,111,0.0,77,2.0,2.0,3.0,2.0,0.0,0.0,0.0,33360.0,0.0,0.0,46684.95,0.0,0.0,1,9,7.0,5,2.0 +1252,1750,2664.454474831875,77.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27900.0,0.0,0.0,25474.1,0.0,0.0,1,1,2.0,1,0.0 +1253,1752,1925.1890179870652,71.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13380.0,0.0,0.0,12672.15,0.0,0.0,1,0,0.0,1,0.0 +1254,1753,1744.8281117945294,38.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27325.55,0.0,28680.0,2,8,7.0,4,2.0 +1255,1755,1638.4017253324437,65.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45280.0,0.0,0.0,41914.9,0.0,0.0,1,3,4.0,3,0.0 +1256,1757,1662.776580626265,47.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,10350.0,0.0,0.0,68127.7,0.0,62810.0,2,8,2.0,4,2.0 +1257,1758,1646.3387872491926,54.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,63.0,0.0,67747.5,0.0,74150.0,3,9,1.0,2,2.0 +1258,1759,2972.2659387256376,60.0,111,27420.0,77,2.0,1.0,3.0,2.0,0.0,0.0,0.0,17060.0,0.0,0.0,43938.25,0.0,5540.0,2,10,8.0,4,2.0 +1259,1761,2371.938605617742,51.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26142.8,0.0,25790.0,3,10,8.0,2,2.0 +1260,1764,5645.912508171239,44.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24765.75,0.0,27180.0,3,10,8.0,1,1.0 +1261,1765,3700.697065100175,43.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51663.05,0.0,55760.0,2,9,3.0,4,2.0 +1262,1766,802.145978518734,37.0,111,0.0,52,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,37529.15,710.0,22500.0,3,10,8.0,2,1.0 +1263,1767,2490.137132614105,82.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,76100.0,0.0,0.0,61404.4,0.0,0.0,1,9,3.0,3,0.0 +1264,1768,2035.2851546640602,67.0,300,0.0,69,1.0,0.0,2.0,1.5,0.0,0.0,1070.0,18440.0,0.0,0.0,25836.9,0.0,6700.0,1,0,0.0,3,1.0 +1265,1769,1824.378537197935,54.0,120,3610.0,69,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,7.0,0.0,58891.5,0.0,57150.0,1,0,0.0,4,4.0 +1266,1771,1707.2093578531467,34.0,111,4210.0,45,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,9.0,0.0,47440.2,0.0,40000.0,3,8,7.0,4,2.0 +1267,1775,622.7771518169059,37.0,211,0.0,67,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20178.2,2640.0,8320.0,3,2,2.0,2,1.0 +1268,1776,2561.9237969782544,38.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52363.1,0.0,30950.0,1,9,7.0,3,1.0 +1269,1780,1336.7508340235984,53.0,111,0.0,45,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,36344.25,0.0,24460.0,3,6,5.0,2,1.0 +1270,1781,1420.8547835618172,56.0,112,0.0,00,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,41557.45,0.0,46230.0,1,8,1.0,1,1.0 +1271,1782,2819.2338027532337,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18230.0,0.0,0.0,17913.6,0.0,0.0,3,8,7.0,1,0.0 +1272,1783,1561.5081643456656,57.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,406.0,0.0,35459.9,0.0,36030.0,1,7,5.0,1,1.0 +1273,1784,3410.085622844008,40.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,76273.25,0.0,80060.0,2,10,8.0,4,2.0 +1274,1785,1561.7932114415619,56.0,112,0.0,,0.0,0.0,1.0,1.0,9680.0,0.0,0.0,0.0,0.0,0.0,9603.95,0.0,0.0,1,6,0.0,1,0.0 +1275,1786,1651.9280195410427,55.0,112,6890.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40068.15,0.0,31940.0,2,7,1.0,4,2.0 +1276,1787,2291.481900864758,57.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10650.0,0.0,0.0,10357.5,0.0,0.0,1,9,7.0,1,0.0 +1277,1788,1639.5143820535852,74.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18420.0,0.0,0.0,18826.0,0.0,0.0,1,7,0.0,3,0.0 +1278,1789,1476.0089006161234,77.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27800.0,0.0,0.0,25432.6,0.0,0.0,1,6,4.0,3,0.0 +1279,1792,1552.8362382790474,37.0,112,1130.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52179.1,0.0,51470.0,2,10,3.0,4,2.0 +1280,1793,1776.3996361316429,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44840.0,425.0,0.0,42742.862587828684,0.0,0.0,1,9,7.0,3,0.0 +1281,1794,1733.3624505431515,49.0,112,0.0,37,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,370.0,0.0,78157.4,0.0,81590.0,1,10,0.0,4,2.0 +1282,1795,2853.303283099483,37.0,300,320.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23061.4,3790.0,15330.0,3,0,1.0,4,1.0 +1283,1797,1436.9687661422083,56.0,120,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18270.0,0.0,0.0,47671.8,0.0,32730.0,1,0,0.0,3,1.0 +1284,1798,1944.740968929161,68.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,5820.0,0.0,26340.0,0.0,0.0,41229.65,2440.0,6710.0,1,8,2.0,4,1.0 +1285,1800,2006.8604385780511,44.0,221,0.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,31810.75,0.0,0.0,2,1,3.0,4,2.0 +1286,1801,7042.895987117947,28.0,221,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38853.65,0.0,42780.0,5,1,2.0,3,2.0 +1287,1802,2369.688864212029,30.0,120,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51999.3,0.0,53220.0,2,0,0.0,4,2.0 +1288,1803,1611.7241685651065,47.0,112,1530.0,13,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,77556.8209016782,0.0,29840.0,1,7,0.0,4,2.0 +1289,1804,2587.7950494150286,32.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40975.35,0.0,32140.0,3,9,0.0,4,2.0 +1290,1805,1660.1437908316905,48.0,112,5550.0,67,3,2.0,4.0,2.5,0.0,0.0,0.0,11720.0,0.0,0.0,54759.0,0.0,35900.0,2,8,2.0,4,3.0 +1291,1806,1584.903678976976,63.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18200.0,0.0,0.0,24095.1,0.0,0.0,1,7,0.0,3,0.0 +1292,1807,2273.914968367125,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28990.0,0.0,0.0,27747.65,0.0,0.0,1,8,7.0,1,0.0 +1293,1808,1491.194992828582,73.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41330.0,0.0,0.0,38010.45,0.0,0.0,1,1,2.0,3,0.0 +1294,1810,2462.36865496312,56.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10430.0,0.0,0.0,8756.25,0.0,0.0,5,1,1.0,1,0.0 +1295,1811,6595.724636787722,22.0,111,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39591.0,1950.0,39710.0,3,9,7.0,3,2.0 +1296,1812,5470.246154625784,32.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,90403.15,0.0,90210.0,3,10,8.0,4,2.0 +1297,1814,1859.1254736635615,56.0,112,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,7,0.0,3,2.0 +1298,1815,1987.6639058765018,65.0,112,1410.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23410.0,0.0,0.0,24623.3,0.0,0.0,1,7,0.0,3,0.0 +1299,1816,1106.9856187892167,36.0,300,0.0,56,1.0,0.0,2.0,1.3,0.0,7120.0,0.0,0.0,0.0,0.0,12870.0,0.0,0.0,3,0,0.0,2,1.0 +1300,1818,1100.7279530295245,36.0,112,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,360.0,0.0,0.0,5,8,1.0,2,1.0 +1301,1819,2983.4613041424304,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13220.0,64.0,0.0,41895.35,0.0,32550.0,1,9,7.0,3,0.0 +1302,1820,2683.839488808897,57.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1950.0,20.0,0.0,17554.5,0.0,15040.0,3,8,6.0,1,1.0 +1303,1822,1824.4464940341143,47.0,211,0.0,43,3,2.0,5.0,3.0,0.0,0.0,0.0,4750.0,97.0,0.0,84029.9,0.0,80110.0,2,4,4.0,4,4.0 +1304,1825,695.4494765380462,46.0,300,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30467.75,0.0,30440.0,3,0,0.0,4,2.0 +1305,1826,2365.0009222629305,74.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16110.0,0.0,0.0,16111.0,0.0,0.0,1,0,0.0,1,0.0 +1306,1827,2684.8095322274335,36.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,73051.8,0.0,72480.0,3,9,7.0,4,2.0 +1307,1829,2041.4126918498512,43.0,300,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,318.0,0.0,74821.75,0.0,82140.0,2,0,0.0,4,2.0 +1308,1831,3849.4886580404886,61.0,111,0.0,67,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,11484.0,0.0,0.0,3,9,7.0,1,1.0 +1309,1832,1871.044476538351,56.0,111,0.0,78,0.0,0.0,3.0,2.0,3170.0,0.0,0.0,0.0,0.0,0.0,3171.0,0.0,0.0,1,8,7.0,4,0.0 +1310,1833,1409.787018532309,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50240.0,0.0,0.0,41713.15,0.0,0.0,1,7,5.0,3,0.0 +1311,1834,3365.936361284335,55.0,111,1550.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,16290.0,0.0,0.0,18307.2,0.0,1010.0,1,8,7.0,3,1.0 +1312,1835,2783.314051968408,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31440.0,0.0,0.0,30764.1,0.0,0.0,1,8,0.0,3,0.0 +1313,1838,2725.3898256350826,33.0,300,870.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32886.05,0.0,23970.0,2,0,0.0,4,2.0 +1314,1839,1592.4963452747345,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30610.0,0.0,0.0,28930.25,0.0,0.0,1,8,6.0,3,0.0 +1315,1840,2415.8023026571855,46.0,111,0.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,59123.25,0.0,71190.0,1,8,7.0,4,2.0 +1316,1841,2202.329548668759,46.0,111,820.0,47,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,57705.95,0.0,59860.0,2,8,6.0,4,3.0 +1317,1844,3756.054391507911,35.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48858.9,0.0,51570.0,2,9,7.0,4,2.0 +1318,1845,1989.0676875177949,55.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45596.4,0.0,49470.0,2,8,3.0,3,2.0 +1319,1847,2576.7272608951293,61.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20300.0,0.0,0.0,20049.5,0.0,0.0,3,0,0.0,3,0.0 +1320,1848,1694.950591615655,51.0,211,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40597.2,0.0,44180.0,1,3,3.0,1,1.0 +1321,1849,4229.848998297678,20.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12488.5,0.0,0.0,3,9,7.0,5,0.0 +1322,1850,1677.503077726018,91.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,8940.0,0.0,0.0,10110.8,0.0,0.0,1,0,1.0,3,0.0 +1323,1852,5899.584775256487,43.0,111,0.0,85,0.0,0.0,1.0,1.0,2080.0,0.0,0.0,7570.0,0.0,0.0,9507.8,0.0,0.0,1,9,7.0,1,0.0 +1324,1853,1638.4851298325004,58.0,112,22980.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,21250.0,0.0,0.0,40287.35,0.0,1670.0,1,8,0.0,3,1.0 +1325,1855,2403.4436754645367,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33110.0,0.0,0.0,30904.8,0.0,0.0,1,9,7.0,3,0.0 +1326,1856,560.4481575906036,48.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24648.0,1110.0,22200.0,2,9,7.0,2,1.0 +1327,1857,1858.715108390999,67.0,111,7350.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19350.0,0.0,0.0,26433.35,0.0,0.0,3,6,5.0,3,1.0 +1328,1858,1475.7120707444233,59.0,120,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,10310.0,0.0,0.0,33319.95,0.0,24380.0,1,0,1.0,3,2.0 +1329,1859,1059.6949779529964,38.0,112,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,31121.43354508391,2200.0,22880.0,2,4,0.0,2,1.0 +1330,1860,2665.550301078875,53.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35455.8,0.0,37380.0,3,6,5.0,3,2.0 +1331,1861,1573.1904025270894,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36900.0,0.0,0.0,33106.75,0.0,0.0,1,6,4.0,3,0.0 +1332,1863,2257.495941691971,54.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,695.0,0.0,109450.0,0.0,127420.0,1,10,8.0,4,2.0 +1333,1864,582.4708183607612,37.0,111,0.0,47,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,32748.0,0.0,21130.0,3,6,4.0,4,2.0 +1334,1866,2227.2589489597262,69.0,300,0.0,71,2.0,2.0,3.0,2.0,0.0,0.0,0.0,13280.0,0.0,0.0,31656.0,0.0,20.0,1,0,0.0,4,2.0 +1335,1868,1532.9160077219094,69.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22050.0,0.0,0.0,26517.6,0.0,0.0,1,1,2.0,3,0.0 +1336,1869,3450.026536168901,47.0,120,2830.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34385.1,0.0,33530.0,3,0,0.0,4,2.0 +1337,1870,2647.7122528495497,42.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27166.15,0.0,25860.0,3,9,7.0,4,2.0 +1338,1871,1969.0732905029895,71.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,26140.0,0.0,0.0,25631.05,0.0,0.0,3,9,7.0,3,1.0 +1339,1872,2537.1603878099104,52.0,111,1160.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36496.95,0.0,35660.0,3,8,7.0,3,2.0 +1340,1874,4598.47206442382,79.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13530.0,0.0,0.0,15867.0,0.0,0.0,3,10,8.0,1,0.0 +1341,1875,616.7517105870126,35.0,111,0.0,52,1.0,1.0,6.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46635.1,0.0,18260.0,3,10,8.0,2,1.0 +1342,1877,2406.7842862304365,38.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50943.9,0.0,53900.0,2,8,7.0,4,2.0 +1343,1878,2185.967838538525,35.0,111,1560.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14560.45,1210.0,12010.0,3,7,5.0,1,1.0 +1344,1879,2004.7617146275402,53.0,112,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,70160.4,0.0,72950.0,1,9,0.0,4,2.0 +1345,1880,2361.805242555004,33.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55715.1,0.0,51890.0,2,9,0.0,4,2.0 +1346,1882,4438.709588095304,38.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21381.6,0.0,22090.0,3,8,6.0,1,1.0 +1347,1883,1519.1018577227928,55.0,300,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37821.25,0.0,0.0,1,0,0.0,1,1.0 +1348,1884,1240.7366924842315,57.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9990.0,0.0,0.0,30509.85,0.0,25640.0,1,10,1.0,1,1.0 +1349,1885,435.71136987018707,30.0,112,0.0,64,2.0,0.0,4.0,2.1,0.0,11880.0,0.0,0.0,0.0,0.0,18556.0,0.0,0.0,3,9,0.0,5,2.0 +1350,1886,1865.6471381397357,52.0,111,0.0,56,2.0,1.0,3.0,2.0,9690.0,1220.0,0.0,0.0,0.0,0.0,20872.5,1490.0,7150.0,3,9,7.0,2,2.0 +1351,1888,856.4351472723921,40.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25479.3,2960.0,21870.0,3,8,6.0,2,1.0 +1352,1889,1987.371308870734,56.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,5750.0,0.0,0.0,0.0,0.0,4344.05,0.0,0.0,1,8,1.0,1,0.0 +1353,1890,2859.36203647729,42.0,111,0.0,23,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,165267.38513321325,0.0,198570.0,3,8,7.0,4,2.0 +1354,1894,1670.97663093555,70.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35580.0,0.0,0.0,31662.3,0.0,0.0,1,8,0.0,1,0.0 +1355,1895,2964.3460204482635,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26200.0,0.0,0.0,23507.25,0.0,680.0,1,10,4.0,1,0.0 +1356,1896,1352.475024443041,57.0,111,60.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39019.75,0.0,39230.0,1,6,5.0,4,2.0 +1357,1897,1219.4399728191422,26.0,111,0.0,56,1.0,0.0,2.0,1.3,0.0,8210.0,0.0,0.0,0.0,0.0,13106.0,0.0,0.0,3,9,7.0,2,1.0 +1358,1898,511.6737732883565,49.0,300,0.0,52,1.0,0.0,4.0,1.9,0.0,3500.0,0.0,0.0,0.0,0.0,21254.0,0.0,0.0,3,0,0.0,2,1.0 +1359,1899,2218.8795414595843,77.0,112,0.0,75,1.0,1.0,4.0,2.5,9720.0,0.0,0.0,28680.0,0.0,0.0,53055.8,0.0,19180.0,1,10,3.0,4,1.0 +1360,1900,1428.4440854266797,54.0,120,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23943.05,0.0,24620.0,1,0,1.0,3,1.0 +1361,1901,2456.8529390939234,34.0,400,5040.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31148.8,0.0,25280.0,2,0,0.0,3,1.0 +1362,1905,1266.3091746392204,34.0,211,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50084.25,0.0,47200.0,3,2,3.0,4,2.0 +1363,1906,1161.492392325646,28.0,111,0.0,81,1.0,0.0,3.0,1.6,0.0,7780.0,0.0,0.0,0.0,0.0,15822.0,0.0,0.0,3,6,5.0,2,1.0 +1364,1907,1640.2688032829753,69.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32590.0,0.0,0.0,35661.9,0.0,0.0,1,0,0.0,3,0.0 +1365,1908,1886.1466095008777,46.0,111,0.0,85,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,14244.0,0.0,0.0,3,7,6.0,1,0.0 +1366,1910,2063.4965920195527,67.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19910.0,0.0,0.0,18431.0,0.0,0.0,1,8,1.0,3,0.0 +1367,1911,1602.9032437057847,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59100.0,0.0,0.0,54017.85,0.0,0.0,1,7,5.0,3,0.0 +1368,1913,2088.6353981708417,49.0,111,10440.0,31,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,106489.56673935716,0.0,93710.0,2,9,7.0,4,2.0 +1369,1914,4727.2720709055375,55.0,111,2620.0,77,2.0,1.0,3.0,2.0,0.0,6090.0,0.0,0.0,0.0,0.0,32407.8,0.0,21150.0,3,8,7.0,2,2.0 +1370,1915,3508.3477591459814,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11750.0,0.0,0.0,13305.55,0.0,0.0,1,6,4.0,1,0.0 +1371,1916,2091.7389118643787,50.0,111,3650.0,55,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36992.25,0.0,22980.0,2,9,7.0,4,3.0 +1372,1917,2033.224041763163,53.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28616.65,0.0,28790.0,3,7,0.0,2,1.0 +1373,1918,4532.798621089222,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18342.0,0.0,0.0,3,10,8.0,1,0.0 +1374,1919,2135.683394224027,64.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,24500.0,14.0,0.0,28416.75,0.0,5490.0,1,10,8.0,3,2.0 +1375,1920,1243.4481550319404,44.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33766.65,0.0,31620.0,3,10,8.0,2,1.0 +1376,1921,2510.0448341204146,54.0,111,0.0,77,1.0,0.0,2.0,1.5,1270.0,0.0,0.0,0.0,0.0,0.0,5280.0,0.0,0.0,3,6,5.0,2,1.0 +1377,1922,4061.187379197452,37.0,111,0.0,84,1.0,0.0,2.0,1.5,0.0,5730.0,0.0,0.0,0.0,0.0,12373.0,3040.0,0.0,3,10,8.0,3,1.0 +1378,1923,2986.203135507021,51.0,221,1630.0,38,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,92.0,0.0,78099.3,0.0,78410.0,2,1,2.0,4,2.0 +1379,1924,1141.0930409531127,74.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,68010.0,0.0,0.0,60388.85,0.0,0.0,1,9,3.0,3,0.0 +1380,1927,2645.1653703610073,41.0,221,7820.0,55,1.0,0.0,6.0,2.9,0.0,0.0,0.0,6320.0,0.0,0.0,24782.2,0.0,430.0,2,1,2.0,4,1.0 +1381,1928,4492.470910674902,42.0,400,0.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19107.25,0.0,0.0,3,0,0.0,2,1.0 +1382,1929,2086.3181144843625,65.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21080.0,0.0,0.0,20358.75,0.0,0.0,1,10,0.0,1,0.0 +1383,1930,3730.090112442072,61.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21010.0,0.0,0.0,33894.0,0.0,13980.0,2,9,7.0,2,1.0 +1384,1931,1746.1780378745796,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33990.0,0.0,0.0,32620.8,0.0,0.0,1,6,1.0,3,0.0 +1385,1932,1418.1267249767088,32.0,111,14380.0,45,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41591.35,0.0,27920.0,3,7,6.0,4,2.0 +1386,1933,1603.2863072415164,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60020.0,1064.0,0.0,61380.5,0.0,0.0,1,4,4.0,3,0.0 +1387,1934,2176.3758229431933,54.0,211,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36100.4,0.0,41640.0,1,1,3.0,3,2.0 +1388,1935,2058.810375233204,67.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21860.0,0.0,0.0,21109.3,0.0,0.0,1,8,6.0,3,0.0 +1389,1936,2093.1641903047957,57.0,111,4220.0,54,1.0,1.0,1.0,1.0,6570.0,1090.0,0.0,0.0,0.0,0.0,18473.55,0.0,5000.0,3,5,4.0,1,1.0 +1390,1940,1554.6425131016101,55.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49320.95,0.0,47270.0,1,8,0.0,3,2.0 +1391,1941,4146.765233530974,39.0,112,0.0,53,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,23288.0,1930.0,17340.0,3,10,4.0,4,1.0 +1392,1942,4844.294248440777,56.0,112,5950.0,35,1.0,0.0,2.0,1.5,9720.0,0.0,0.0,0.0,0.0,0.0,18795.0,0.0,0.0,3,9,3.0,5,1.0 +1393,1943,2372.3580503142675,58.0,212,9350.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,33203.8,0.0,24380.0,1,2,0.0,4,2.0 +1394,1944,1721.4087095878556,60.0,300,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,68066.95,0.0,23610.0,1,0,0.0,3,1.0 +1395,1945,2252.080751745191,58.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11350.0,545.0,0.0,31548.3,0.0,20720.0,1,4,3.0,3,1.0 +1396,1946,2601.234194427083,37.0,112,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,17.0,0.0,33243.95,0.0,25080.0,2,9,1.0,4,1.0 +1397,1947,2018.1528661389664,55.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,7110.0,0.0,0.0,10488.0,0.0,2470.0,5,6,4.0,1,1.0 +1398,1948,617.993639986672,49.0,111,0.0,55,1.0,0.0,3.0,1.8,0.0,2470.0,0.0,0.0,0.0,0.0,4280.15,0.0,0.0,2,7,5.0,2,1.0 +1399,1949,6090.857027622111,84.0,120,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39880.0,0.0,0.0,18803.6,0.0,7500.0,1,0,0.0,1,0.0 +1400,1950,2312.007218172388,63.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20310.0,0.0,0.0,19354.75,0.0,0.0,5,8,0.0,1,0.0 +1401,1952,1724.1224599743578,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17800.0,0.0,0.0,17315.15,0.0,0.0,3,6,4.0,1,0.0 +1402,1954,2959.6587738882936,68.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20900.0,0.0,0.0,20539.8,0.0,0.0,1,0,0.0,1,0.0 +1403,1956,2921.811943056243,90.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20770.0,0.0,0.0,19951.3,0.0,0.0,1,6,2.0,1,0.0 +1404,1957,2345.3495562004646,67.0,400,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,30320.0,0.0,0.0,47281.15,0.0,17770.0,1,0,0.0,4,1.0 +1405,1958,1797.8217763611083,59.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14390.0,0.0,0.0,32959.4,0.0,18730.0,3,8,7.0,3,1.0 +1406,1959,1938.8438782886237,44.0,120,0.0,13,3,4.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,72476.45,0.0,26960.0,1,0,0.0,4,4.0 +1407,1961,1790.208935069504,64.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14630.0,0.0,0.0,20391.05,0.0,0.0,1,0,0.0,3,0.0 +1408,1962,1132.513351197824,40.0,111,0.0,54,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37087.1,0.0,20050.0,3,10,8.0,4,1.0 +1409,1963,1841.5988074602392,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44770.0,0.0,0.0,45394.8,0.0,0.0,1,8,6.0,3,0.0 +1410,1965,2109.589078676437,56.0,111,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30165.2,0.0,30700.0,3,8,7.0,3,2.0 +1411,1966,4582.311294379778,32.0,111,1090.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64793.1,0.0,67730.0,3,10,8.0,2,3.0 +1412,1969,962.269745035256,43.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,8910.0,0.0,0.0,33068.25,0.0,17800.0,3,10,8.0,2,1.0 +1413,1970,2118.5698304223465,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26510.0,0.0,0.0,27485.4854508391,0.0,0.0,1,6,5.0,3,0.0 +1414,1971,1965.8471409739295,39.0,400,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,6430.0,0.0,0.0,48360.1,0.0,41880.0,1,0,1.0,3,2.0 +1415,1972,2164.6733397856715,55.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41718.65,0.0,43660.0,3,6,0.0,3,2.0 +1416,1975,3032.1348240942903,45.0,112,0.0,64,2.0,2.0,2.0,1.5,2460.0,0.0,0.0,0.0,0.0,0.0,30639.75,0.0,28450.0,2,9,0.0,3,2.0 +1417,1976,3146.5875220148537,79.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23340.0,0.0,0.0,21589.791915962982,0.0,0.0,1,10,8.0,1,0.0 +1418,1977,1279.4287382346608,59.0,120,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22095.7,0.0,24430.0,2,0,1.0,1,1.0 +1419,1978,1520.3659057038683,47.0,111,0.0,21,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,70521.55,0.0,37230.0,2,9,7.0,4,2.0 +1420,1979,765.3629266306967,49.0,111,0.0,56,1.0,0.0,2.0,1.3,0.0,3840.0,0.0,0.0,0.0,0.0,9381.45,430.0,230.0,3,8,7.0,2,1.0 +1421,1980,3145.339175199007,35.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29140.25,0.0,24400.0,3,6,5.0,1,1.0 +1422,1981,1009.9887501740214,45.0,111,9600.0,52,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21303.35,0.0,2520.0,3,9,7.0,2,1.0 +1423,1983,2562.6926510438793,61.0,112,14060.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1540.0,0.0,0.0,15883.0,0.0,320.0,3,9,0.0,1,0.0 +1424,1984,3080.8327648317677,39.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,19.0,0.0,26621.75,0.0,26300.0,3,10,8.0,4,2.0 +1425,1985,2413.815714693808,56.0,112,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,76804.95,0.0,0.0,1,6,0.0,1,1.0 +1426,1986,1759.669423753215,51.0,112,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43295.873987863844,0.0,47050.0,2,9,2.0,4,2.0 +1427,1987,3490.364800743375,45.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35812.55,0.0,42910.0,2,9,7.0,1,1.0 +1428,1989,4229.408042764779,24.0,111,2160.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15538.65,0.0,13530.0,3,4,4.0,3,2.0 +1429,1990,2576.9906402669944,43.0,111,0.0,85,0.0,0.0,6.0,2.9,0.0,9150.0,0.0,0.0,0.0,0.0,28210.0,0.0,0.0,3,7,5.0,4,0.0 +1430,1992,4084.0208207902797,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16830.0,0.0,0.0,16623.3,0.0,0.0,3,10,8.0,1,0.0 +1431,1993,3980.3833045610695,62.0,111,7580.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,2660.0,0.0,0.0,23679.0,0.0,8370.0,3,10,8.0,2,2.0 +1432,1994,4160.451285616069,48.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7227.0,1740.0,5910.0,2,9,7.0,1,1.0 +1433,1995,2006.8630044404656,48.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,26568.6,500.0,21250.0,1,8,7.0,4,2.0 +1434,1997,2125.332323468305,54.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41189.25,0.0,42040.0,1,9,0.0,3,2.0 +1435,1998,3140.168139483339,49.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11436.0,0.0,13060.0,2,9,7.0,2,1.0 +1436,1999,1075.6181338158078,54.0,111,0.0,56,2.0,0.0,3.0,1.8,0.0,6700.0,0.0,0.0,0.0,0.0,10891.15,0.0,610.0,3,6,5.0,4,2.0 +1437,2001,3261.181921272125,76.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18770.0,802.0,0.0,19102.6,0.0,0.0,1,10,0.0,1,0.0 +1438,2002,2586.7193711401064,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2509.0,0.0,0.0,3,6,4.0,1,0.0 +1439,2003,2189.3465806609574,60.0,300,0.0,86,0.0,0.0,1.0,1.0,5240.0,0.0,0.0,0.0,0.0,0.0,4405.4,0.0,0.0,1,0,1.0,1,0.0 +1440,2004,2717.111146957601,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6770.0,0.0,0.0,25829.85,0.0,0.0,1,8,7.0,1,0.0 +1441,2005,3209.9669254333494,25.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41376.5,0.0,37910.0,2,8,7.0,4,2.0 +1442,2007,1676.290538720522,66.0,300,0.0,78,0.0,0.0,2.0,1.5,1040.0,0.0,0.0,20120.0,21.0,0.0,22003.0,0.0,0.0,1,0,0.0,3,0.0 +1443,2008,1514.7765738567414,53.0,111,0.0,47,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38009.85,0.0,39170.0,1,9,7.0,4,3.0 +1444,2010,2590.053825410013,77.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18950.0,0.0,0.0,18682.0,0.0,0.0,3,9,7.0,1,0.0 +1445,2011,1158.6892057638997,36.0,111,0.0,55,1.0,0.0,2.0,1.3,0.0,7670.0,0.0,0.0,0.0,0.0,12255.9,0.0,0.0,3,8,7.0,2,1.0 +1446,2014,821.3792495380115,60.0,111,0.0,74,0.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,8001.0,0.0,0.0,3,9,7.0,2,0.0 +1447,2015,1790.6269443851922,55.0,111,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,22646.0,0.0,23100.0,3,8,7.0,4,2.0 +1448,2016,2865.0688275537286,54.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,2640.0,0.0,0.0,5025.15,0.0,0.0,3,9,7.0,1,1.0 +1449,2017,2203.299782209725,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12030.0,0.0,0.0,12249.0,0.0,0.0,3,7,4.0,1,0.0 +1450,2020,2574.113142982045,33.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,20.0,0.0,22049.0,900.0,23310.0,2,7,5.0,1,1.0 +1451,2021,1771.1346837214296,66.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,71560.0,2277.0,0.0,63927.46572160483,0.0,0.0,1,7,0.0,3,0.0 +1452,2022,1733.6833187722125,72.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31830.0,0.0,0.0,29794.5,0.0,0.0,1,7,0.0,3,0.0 +1453,2023,2440.7533454786735,68.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14740.0,0.0,0.0,15519.0,0.0,900.0,1,8,0.0,3,0.0 +1454,2024,5132.031039918772,23.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19783.0,640.0,16200.0,3,8,0.0,1,1.0 +1455,2025,5464.7535836547395,22.0,111,0.0,34,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23928.0,0.0,9310.0,3,10,8.0,1,1.0 +1456,2028,3259.5258512972214,35.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41445.8,0.0,36260.0,2,10,8.0,3,2.0 +1457,2029,705.0110799738412,46.0,120,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28813.55,150.0,24030.0,3,0,0.0,2,2.0 +1458,2030,4167.749059217084,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23160.0,0.0,0.0,20921.35,0.0,0.0,3,10,8.0,1,0.0 +1459,2031,2309.704646616692,49.0,221,0.0,22,2.0,2.0,2.0,1.5,0.0,2950.0,0.0,0.0,156.0,0.0,57719.55,250.0,45330.0,1,1,2.0,3,2.0 +1460,2033,1041.0370370482779,31.0,112,0.0,85,1.0,1.0,4.0,2.1,0.0,5670.0,0.0,0.0,0.0,0.0,18095.4,0.0,6380.0,3,10,1.0,4,1.0 +1461,2034,2666.5514136689176,27.0,111,3440.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22083.8,0.0,18840.0,3,10,8.0,4,2.0 +1462,2035,2665.1131733891066,50.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20551.0,0.0,21990.0,3,8,7.0,2,1.0 +1463,2036,1818.1735315402593,53.0,112,0.0,38,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,78734.1,0.0,88600.0,2,8,0.0,4,3.0 +1464,2037,2806.305844502179,63.0,400,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23570.0,0.0,0.0,32770.25,0.0,10360.0,1,0,0.0,3,1.0 +1465,2038,1967.957450586037,60.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,11040.0,0.0,0.0,17700.85,0.0,15700.0,5,9,7.0,1,1.0 +1466,2039,3206.893447329955,23.0,111,7360.0,43,3,2.0,3.0,2.0,0.0,8030.0,0.0,0.0,0.0,0.0,25735.4,0.0,7210.0,3,9,7.0,5,3.0 +1467,2041,2094.7273790596455,38.0,112,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44765.5,0.0,43340.0,2,6,0.0,4,2.0 +1468,2042,1896.9910269006702,42.0,111,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,42726.1,0.0,35660.0,1,8,7.0,4,2.0 +1469,2044,1956.1493633763084,44.0,111,0.0,22,3,0.0,3.0,2.0,0.0,9790.0,0.0,0.0,0.0,0.0,14926.0,0.0,0.0,3,8,7.0,4,3.0 +1470,2045,252.52235774246776,40.0,400,0.0,56,1.0,1.0,4.0,2.3,0.0,0.0,0.0,7160.0,0.0,0.0,23800.45,0.0,5620.0,2,0,0.0,2,1.0 +1471,2046,2736.9821363242263,41.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53040.95,0.0,49980.0,1,6,4.0,4,2.0 +1472,2047,2691.6788353395586,46.0,111,1610.0,56,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49498.5,0.0,51820.0,2,9,7.0,4,3.0 +1473,2050,948.9733658010542,50.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34407.0,0.0,41040.0,2,7,0.0,1,1.0 +1474,2052,3165.483830096379,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1746.0,0.0,0.0,4,9,7.0,1,0.0 +1475,2053,5069.721046594298,28.0,111,8910.0,38,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46845.45,0.0,41260.0,3,9,7.0,4,2.0 +1476,2055,1796.6662848494161,58.0,111,7760.0,,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25978.3,0.0,18570.0,2,9,7.0,2,0.0 +1477,2056,3582.6632706216674,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32830.0,0.0,0.0,32052.35,0.0,0.0,1,9,7.0,3,0.0 +1478,2057,5906.547588276611,32.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15997.0,0.0,16100.0,3,10,8.0,1,1.0 +1479,2058,2193.6311808217297,82.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25990.0,0.0,0.0,26081.65,0.0,0.0,5,4,4.0,3,0.0 +1480,2059,2215.3527064075943,68.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17750.0,0.0,0.0,16964.3,0.0,0.0,1,9,0.0,1,0.0 +1481,2060,5517.720237010853,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18210.0,0.0,0.0,17770.9,0.0,0.0,1,7,0.0,3,0.0 +1482,2062,1601.8725257970752,80.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28030.0,0.0,0.0,28075.703176258652,0.0,0.0,1,8,7.0,3,0.0 +1483,2065,1961.8275843657004,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37720.0,0.0,0.0,35725.2,0.0,0.0,3,10,8.0,3,0.0 +1484,2066,2257.946605533397,35.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,72205.35,0.0,75640.0,1,10,8.0,4,2.0 +1485,2067,1881.5866803312815,39.0,400,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,70843.65,0.0,77390.0,2,0,1.0,4,2.0 +1486,2068,2601.942139133014,30.0,211,3380.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36252.7,0.0,35440.0,2,1,2.0,3,2.0 +1487,2069,3392.714675771226,52.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29032.65,0.0,30430.0,1,10,2.0,3,2.0 +1488,2071,3106.580372826678,76.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,480.0,0.0,0.0,-0.0,0.0,0.0,1,8,7.0,1,0.0 +1489,2075,652.7612221651581,27.0,112,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,15.0,0.0,25261.75,1650.0,20030.0,3,7,0.0,2,1.0 +1490,2077,1763.343294710734,34.0,111,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47826.95,0.0,47930.0,2,9,7.0,4,2.0 +1491,2078,1721.2921501168692,66.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43450.0,0.0,0.0,38101.35,0.0,0.0,1,10,2.0,3,0.0 +1492,2080,1678.6569236227947,70.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36280.0,0.0,0.0,41307.35,0.0,0.0,1,10,4.0,3,0.0 +1493,2081,2050.164488897052,89.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11700.0,0.0,0.0,11801.0,0.0,0.0,5,0,0.0,1,0.0 +1494,2083,998.8178485572395,37.0,111,0.0,68,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20546.95,1370.0,15940.0,3,6,5.0,2,1.0 +1495,2084,1835.479468953292,40.0,111,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,48345.15,0.0,45080.0,2,4,4.0,4,2.0 +1496,2086,2088.785041252654,52.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19606.35,0.0,21190.0,3,8,7.0,1,1.0 +1497,2090,1375.2738388634475,38.0,111,0.0,52,1.0,0.0,2.0,1.3,0.0,4510.0,0.0,0.0,0.0,0.0,13928.0,1180.0,2200.0,3,8,6.0,2,1.0 +1498,2091,1664.9025519239326,69.0,400,80.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30900.0,0.0,0.0,38137.75,0.0,11420.0,1,0,0.0,3,1.0 +1499,2092,2571.337603795519,81.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32280.0,0.0,0.0,30239.0,0.0,0.0,5,8,7.0,1,0.0 +1500,2093,3796.120834793164,51.0,111,2520.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32427.85,0.0,30630.0,3,9,7.0,3,2.0 +1501,2094,3503.4096354625117,43.0,221,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,65246.2,0.0,67780.0,2,1,2.0,4,2.0 +1502,2096,2552.4313874386517,65.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12370.0,0.0,0.0,12324.35,0.0,0.0,1,1,2.0,1,0.0 +1503,2098,4047.731974386098,79.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43390.0,0.0,0.0,47172.75,0.0,510.0,1,8,0.0,3,0.0 +1504,2099,2144.9617188513644,37.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52328.8,0.0,55450.0,2,7,5.0,4,2.0 +1505,2100,3570.6066819663615,24.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19218.35,0.0,20060.0,3,7,5.0,1,1.0 +1506,2102,974.1473905265073,27.0,111,5490.0,52,1.0,0.0,2.0,1.3,0.0,2060.0,0.0,0.0,0.0,0.0,15259.0,0.0,0.0,3,9,7.0,2,1.0 +1507,2103,2573.6628589552,45.0,111,0.0,37,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,1006.0,0.0,123272.85,0.0,130130.0,2,10,8.0,4,2.0 +1508,2105,1876.5082735941292,46.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,4.0,0.0,45408.75,0.0,48860.0,3,10,8.0,3,2.0 +1509,2107,1128.8299385145856,37.0,111,9810.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,150.0,0.0,0.0,34886.1,0.0,20160.0,3,8,6.0,4,2.0 +1510,2108,2008.4694661419999,55.0,221,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14720.0,0.0,0.0,27088.7,0.0,13130.0,2,1,2.0,3,1.0 +1511,2110,4231.8704034948505,48.0,111,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,307.0,0.0,37781.8,0.0,38520.0,1,9,7.0,5,1.0 +1512,2111,779.5300469635339,47.0,111,5950.0,54,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,7449.45,0.0,0.0,5,6,5.0,2,1.0 +1513,2112,1715.370571476457,47.0,211,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20460.0,0.0,137.0,39917.25,0.0,21540.0,2,2,3.0,3,1.0 +1514,2113,1606.4370870692396,71.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35270.0,0.0,0.0,33912.75,0.0,0.0,1,8,0.0,3,0.0 +1515,2114,1384.3669400440353,52.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24945.65,0.0,28300.0,2,9,7.0,1,1.0 +1516,2115,1752.13114776378,76.0,211,0.0,75,0.0,0.0,2.0,1.5,140.0,0.0,0.0,24590.0,0.0,0.0,24730.0,0.0,0.0,3,3,3.0,3,0.0 +1517,2116,3603.7290122605627,82.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48490.0,0.0,0.0,45252.0,0.0,0.0,3,10,4.0,3,0.0 +1518,2118,2454.900182342084,58.0,300,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50872.8,0.0,0.0,1,0,0.0,3,2.0 +1519,2119,3049.8983713718517,55.0,300,0.0,78,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,9655.0,0.0,0.0,1,0,0.0,1,0.0 +1520,2120,619.8083266345321,38.0,111,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30074.4,0.0,24000.0,3,8,7.0,2,1.0 +1521,2121,3985.610956304416,55.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20258.85,0.0,23370.0,1,10,2.0,1,1.0 +1522,2122,2972.693476592196,43.0,111,9560.0,46,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,27353.35,0.0,7980.0,3,10,8.0,4,1.0 +1523,2123,2836.798840073435,41.0,111,0.0,47,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,28452.8,0.0,26730.0,3,10,8.0,4,1.0 +1524,2124,1393.1394836774168,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45040.0,0.0,0.0,41291.6,0.0,0.0,1,8,6.0,3,0.0 +1525,2125,2217.8577051795787,41.0,111,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,46485.85,0.0,47400.0,2,9,7.0,4,2.0 +1526,2128,445.0776495181777,50.0,221,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17359.05,3880.0,7460.0,1,1,1.0,2,1.0 +1527,2129,4732.385089387924,51.0,111,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,14230.0,0.0,0.0,3,9,7.0,1,0.0 +1528,2130,1715.460769476459,74.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,110670.0,0.0,0.0,121613.84544873337,0.0,12520.0,1,8,7.0,3,1.0 +1529,2132,2241.921694122176,54.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17050.0,0.0,0.0,19605.25,0.0,0.0,2,6,4.0,1,0.0 +1530,2133,1941.3354794186334,53.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,19910.0,29.0,0.0,88099.65,0.0,75320.0,2,8,6.0,4,1.0 +1531,2134,2235.756536486376,34.0,400,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57940.1,0.0,56190.0,2,0,0.0,4,2.0 +1532,2135,2298.3333038257256,93.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14620.0,0.0,0.0,14287.85,0.0,0.0,1,1,3.0,1,0.0 +1533,2136,2502.3213927431857,63.0,112,0.0,78,1.0,1.0,3.0,2.0,0.0,6310.0,0.0,26780.0,0.0,0.0,33516.0,130.0,0.0,3,7,1.0,4,1.0 +1534,2137,1377.9395378481606,68.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31820.0,0.0,0.0,32635.95,0.0,0.0,1,2,3.0,3,0.0 +1535,2138,2494.6497616209485,33.0,112,0.0,38,3,3.0,3.0,2.0,0.0,0.0,0.0,6560.0,539.0,0.0,105569.0,0.0,113530.0,3,9,1.0,5,3.0 +1536,2140,4290.401333762586,35.0,111,14070.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,1826.0,0.0,52408.85,0.0,40050.0,1,6,5.0,4,2.0 +1537,2141,2464.7212277949593,30.0,112,4200.0,65,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32183.7,0.0,22520.0,2,8,0.0,4,2.0 +1538,2144,2181.388937400438,62.0,112,0.0,78,0.0,0.0,2.0,1.5,8610.0,0.0,0.0,14840.0,0.0,0.0,23190.0,0.0,0.0,1,8,2.0,3,0.0 +1539,2145,2849.687040443022,51.0,400,0.0,63,3,2.0,4.0,2.5,9700.0,0.0,0.0,0.0,0.0,0.0,32953.65,0.0,23270.0,3,0,1.0,4,4.0 +1540,2148,2409.2001418225495,53.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29463.45,0.0,31050.0,1,10,8.0,4,2.0 +1541,2149,2372.4282790616417,47.0,112,0.0,52,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,32730.6,0.0,25080.0,2,7,0.0,4,2.0 +1542,2150,4680.672713039774,46.0,112,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20365.3,0.0,21590.0,2,7,1.0,4,3.0 +1543,2152,2271.8677449941697,64.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,148.0,0.0,14449.5,0.0,25610.0,1,8,6.0,1,1.0 +1544,2153,2879.0339398083543,55.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28613.6,0.0,32350.0,1,9,1.0,1,1.0 +1545,2154,1984.828558769812,78.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22460.0,0.0,0.0,23023.0,0.0,0.0,1,0,0.0,3,0.0 +1546,2155,4458.786122463821,44.0,111,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34795.15,0.0,34590.0,3,10,8.0,4,1.0 +1547,2156,2075.4750215273593,77.0,300,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9770.0,0.0,0.0,9849.0,0.0,0.0,1,0,0.0,1,0.0 +1548,2158,1760.6399982639325,53.0,300,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,12700.0,0.0,0.0,38259.3,0.0,17660.0,1,0,1.0,4,2.0 +1549,2159,1820.3961436883721,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,82400.0,446.0,0.0,66777.80889352423,0.0,0.0,1,9,7.0,3,0.0 +1550,2160,2464.3899609904674,53.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7410.0,0.0,0.0,10148.75,0.0,0.0,3,8,7.0,1,0.0 +1551,2161,2379.7167298891172,61.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14096.5,0.0,14350.0,3,6,0.0,1,1.0 +1552,2162,2209.8950251106844,48.0,300,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,22230.0,0.0,0.0,47458.8,0.0,24910.0,1,0,0.0,4,1.0 +1553,2164,1936.8191676227214,51.0,120,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50268.2,0.0,51290.0,1,0,1.0,4,2.0 +1554,2165,1534.1710405277504,45.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29497.7,0.0,29940.0,5,7,5.0,2,1.0 +1555,2166,2736.3010102514622,86.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23650.0,0.0,0.0,21853.9,0.0,0.0,1,7,6.0,1,0.0 +1556,2167,2523.8760666696235,39.0,111,0.0,48,1.0,1.0,4.0,2.1,0.0,0.0,0.0,2160.0,0.0,0.0,40750.3,0.0,29720.0,3,9,7.0,4,1.0 +1557,2168,2141.858036336152,63.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9000.0,0.0,0.0,11472.0,0.0,0.0,3,0,1.0,1,0.0 +1558,2169,2565.944943349859,51.0,111,33350.0,38,2.0,1.0,4.0,2.5,0.0,0.0,0.0,36090.0,8.0,0.0,155337.6,0.0,123750.0,3,10,8.0,4,2.0 +1559,2170,2237.0724371722577,39.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,95.0,0.0,55831.65,0.0,54330.0,1,9,0.0,4,2.0 +1560,2171,3365.518469389851,31.0,111,6240.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23397.8,0.0,13650.0,3,8,7.0,4,1.0 +1561,2172,3119.0218921670785,76.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27900.0,0.0,0.0,25241.8,0.0,0.0,1,7,4.0,1,0.0 +1562,2173,2785.3302030038103,36.0,112,4230.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38443.25,0.0,33470.0,2,8,0.0,4,2.0 +1563,2175,2591.4404800225575,64.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23030.0,0.0,0.0,21128.2,0.0,0.0,1,10,8.0,1,0.0 +1564,2177,4017.5196091312187,27.0,120,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16164.75,1130.0,16950.0,3,0,0.0,1,1.0 +1565,2178,863.7285865540624,31.0,111,0.0,85,0.0,0.0,6.0,2.7,0.0,6940.0,0.0,0.0,0.0,0.0,29309.0,0.0,0.0,3,9,7.0,2,0.0 +1566,2181,1599.2683744636884,60.0,111,6720.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11280.0,0.0,0.0,24084.3,0.0,7680.0,1,9,7.0,3,1.0 +1567,2186,2798.5202700695727,52.0,111,0.0,45,1.0,1.0,3.0,2.0,0.0,0.0,0.0,33570.0,0.0,0.0,59345.25,0.0,30540.0,1,10,8.0,4,1.0 +1568,2187,854.3415616176561,47.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,18916.05,0.0,17940.0,1,9,7.0,2,1.0 +1569,2190,2415.5014932534787,51.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18071.8,0.0,19130.0,2,7,0.0,1,1.0 +1570,2191,1853.939147632323,74.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,33070.0,223.0,0.0,50836.30653364735,0.0,19660.0,1,6,0.0,5,1.0 +1571,2192,2100.396901716636,79.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48470.0,632.0,0.0,42221.0,0.0,0.0,1,10,0.0,3,0.0 +1572,2193,2794.7619038877224,65.0,111,0.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,23560.0,0.0,0.0,26637.2,0.0,3410.0,3,9,7.0,3,1.0 +1573,2194,201.30342027600958,28.0,400,0.0,63,1.0,0.0,2.0,1.3,0.0,7030.0,0.0,0.0,0.0,0.0,12657.0,0.0,0.0,3,0,0.0,2,1.0 +1574,2196,650.8151682847385,45.0,120,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41876.1,0.0,43300.0,2,0,2.0,5,2.0 +1575,2198,3199.116091141041,37.0,111,6770.0,48,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,61475.25,0.0,58270.0,2,9,7.0,4,2.0 +1576,2199,2715.947735758242,51.0,111,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62803.593628226714,0.0,63820.0,2,10,8.0,3,2.0 +1577,2201,2349.5232914782823,34.0,111,1140.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42391.3,0.0,35530.0,2,9,7.0,4,2.0 +1578,2202,1931.4874383139704,48.0,112,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,2490.0,0.0,0.0,30215.85,0.0,27980.0,3,9,0.0,3,1.0 +1579,2204,2205.384994630893,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45550.0,0.0,0.0,40728.7,0.0,0.0,1,8,7.0,3,0.0 +1580,2207,3164.877042168258,33.0,300,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34029.0,0.0,22640.0,2,0,1.0,3,2.0 +1581,2208,1072.3852922230894,45.0,111,6010.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20611.95,0.0,8560.0,3,9,7.0,2,1.0 +1582,2211,2080.7696349000116,81.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23860.0,0.0,0.0,23912.0,0.0,0.0,1,0,0.0,3,0.0 +1583,2212,1583.8867366692332,55.0,111,0.0,35,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,110010.7,0.0,117630.0,1,10,8.0,4,2.0 +1584,2213,1190.4963803913217,27.0,111,0.0,85,0.0,0.0,2.0,1.3,9720.0,0.0,0.0,0.0,0.0,0.0,16823.0,0.0,0.0,3,4,4.0,2,0.0 +1585,2214,3987.9738509091035,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17810.0,0.0,0.0,17511.25,0.0,0.0,1,10,8.0,1,0.0 +1586,2215,5143.776998500972,23.0,111,0.0,84,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19738.0,0.0,13450.0,4,9,7.0,5,1.0 +1587,2217,1760.6367964665922,73.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9830.0,0.0,0.0,9630.15,0.0,0.0,1,0,0.0,1,0.0 +1588,2219,1581.8539047115034,48.0,120,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47705.6,0.0,32090.0,1,0,0.0,3,1.0 +1589,2220,1479.5748839248433,44.0,300,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16574.95,2560.0,9200.0,3,0,0.0,2,1.0 +1590,2221,3975.7873021613846,38.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12760.0,0.0,0.0,34274.4,0.0,18810.0,1,10,8.0,3,1.0 +1591,2223,2548.3070312638783,63.0,111,14590.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28310.0,0.0,0.0,39382.85,0.0,0.0,1,9,7.0,3,0.0 +1592,2224,1921.4526936783823,56.0,300,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42454.03055845264,0.0,57250.0,1,0,1.0,4,2.0 +1593,2225,1227.2190992227668,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19750.0,0.0,0.0,19188.0,0.0,0.0,1,7,5.0,1,0.0 +1594,2226,1888.3005127870797,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69380.0,17681.0,0.0,80475.34316867356,0.0,0.0,1,10,8.0,3,0.0 +1595,2228,1520.1890568617225,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23250.0,0.0,0.0,23435.0,0.0,0.0,1,4,4.0,3,0.0 +1596,2229,531.687870148338,35.0,111,4000.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21843.3,570.0,7180.0,3,9,7.0,2,1.0 +1597,2230,1072.0282014606892,44.0,111,22470.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,1563.0,0.0,55838.35,0.0,30030.0,3,7,5.0,4,2.0 +1598,2231,1570.576451910203,61.0,111,0.0,78,1.0,0.0,3.0,2.0,0.0,0.0,0.0,17240.0,0.0,0.0,16767.75,0.0,230.0,3,8,7.0,4,1.0 +1599,2232,2498.6217953107125,46.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33912.55,0.0,37830.0,2,10,8.0,1,1.0 +1600,2233,1713.25727099008,59.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21650.0,0.0,0.0,37903.45,0.0,18020.0,1,7,5.0,3,1.0 +1601,2234,358.4591492243524,46.0,111,5490.0,54,3,2.0,4.0,2.3,0.0,0.0,0.0,1030.0,0.0,0.0,30819.0,0.0,21030.0,5,9,7.0,2,3.0 +1602,2235,3485.087591950228,52.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,94388.55,0.0,114570.0,2,10,8.0,4,2.0 +1603,2237,1017.2579246926139,40.0,111,0.0,42,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30560.0,0.0,28850.0,3,9,7.0,2,1.0 +1604,2238,3786.4501370361695,54.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42235.02860802416,0.0,47310.0,1,10,8.0,1,1.0 +1605,2239,2903.3002156268176,29.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43070.1,0.0,44690.0,3,8,7.0,3,2.0 +1606,2240,1624.1225417422688,50.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,69232.9,0.0,74530.0,1,10,8.0,4,2.0 +1607,2241,1255.6775481471207,46.0,112,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,55562.85,0.0,57830.0,1,6,0.0,4,2.0 +1608,2242,968.1063336998416,56.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30269.3,0.0,32790.0,2,10,1.0,1,1.0 +1609,2244,1219.499992180721,57.0,211,4090.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21170.0,0.0,0.0,45244.6,0.0,22620.0,1,2,3.0,3,1.0 +1610,2245,2553.9460439058685,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15700.0,0.0,0.0,14133.25,0.0,0.0,1,9,7.0,1,0.0 +1611,2248,2596.195221834065,59.0,211,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18659.95,1050.0,17770.0,3,1,3.0,1,1.0 +1612,2249,3964.579078695527,83.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11300.0,0.0,0.0,12357.0,0.0,0.0,3,10,0.0,1,0.0 +1613,2250,671.1867657173766,45.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,108737.43895447573,0.0,27640.0,2,9,7.0,4,2.0 +1614,2251,2088.142890651839,82.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24200.0,0.0,0.0,23634.5,0.0,0.0,5,0,0.0,3,0.0 +1615,2252,1096.1133069973923,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,78710.0,0.0,0.0,65143.8039125701,0.0,0.0,1,7,5.0,3,0.0 +1616,2253,2091.993722072692,77.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26720.0,0.0,0.0,30305.5,0.0,0.0,1,8,2.0,3,0.0 +1617,2254,2839.8181729107273,64.0,112,0.0,74,0.0,0.0,4.0,2.5,0.0,0.0,0.0,37190.0,0.0,0.0,76939.05,0.0,50130.0,1,6,0.0,5,0.0 +1618,2255,1843.5485619648982,80.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,14570.0,0.0,0.0,14229.4,0.0,0.0,3,7,5.0,1,1.0 +1619,2256,1830.1829832563358,33.0,112,1750.0,67,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,17641.85,0.0,15470.0,2,8,0.0,2,1.0 +1620,2257,1794.943092223229,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37330.0,0.0,0.0,30147.75,0.0,380.0,1,9,7.0,3,0.0 +1621,2258,1515.862810661972,70.0,112,7350.0,78,1.0,0.0,3.0,2.0,0.0,0.0,0.0,31120.0,0.0,0.0,38901.05,0.0,1190.0,1,7,0.0,4,1.0 +1622,2260,2620.178878719432,44.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9605.25,0.0,10720.0,1,10,8.0,1,0.0 +1623,2261,2333.87620794663,49.0,111,30330.0,54,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28365.9,0.0,0.0,3,10,8.0,3,1.0 +1624,2262,2195.5707561268905,36.0,300,460.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32069.65,110.0,27230.0,2,0,0.0,4,2.0 +1625,2264,2287.6409071801463,63.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18090.0,0.0,0.0,17163.85,0.0,0.0,2,9,0.0,1,0.0 +1626,2265,1713.486143165824,78.0,112,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,25020.0,0.0,0.0,24171.1,0.0,0.0,1,6,0.0,3,1.0 +1627,2266,3422.342679280248,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6309.0,0.0,0.0,3,9,7.0,1,0.0 +1628,2268,247.95709531215311,36.0,211,1510.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49177.65,0.0,50160.0,3,1,3.0,4,2.0 +1629,2269,1119.9364095623844,23.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,6980.0,0.0,0.0,0.0,0.0,14175.0,100.0,2290.0,3,6,4.0,2,1.0 +1630,2270,1844.9261518451547,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,52600.0,0.0,0.0,48061.75,0.0,0.0,1,9,7.0,1,0.0 +1631,2273,1652.800863252032,45.0,300,7280.0,62,1.0,0.0,2.0,1.5,0.0,2100.0,0.0,0.0,0.0,0.0,18510.1,160.0,6210.0,3,0,0.0,2,1.0 +1632,2274,2605.8675775589454,39.0,112,0.0,38,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,52013.0,0.0,55540.0,3,9,1.0,2,1.0 +1633,2275,1961.9224508602483,71.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31210.0,0.0,0.0,30227.0,0.0,240.0,5,0,1.0,3,0.0 +1634,2276,2900.7342985322944,36.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54140.8,0.0,62780.0,2,10,8.0,3,2.0 +1635,2277,2450.0098675312543,53.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,2740.0,0.0,0.0,36930.75,250.0,36860.0,1,10,8.0,2,2.0 +1636,2278,2099.954088259402,51.0,111,10560.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10278.55,0.0,0.0,3,9,7.0,1,1.0 +1637,2279,1542.7662092301632,37.0,120,0.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29589.45,0.0,26040.0,3,0,3.0,4,1.0 +1638,2280,2436.3821458387624,80.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21350.0,0.0,0.0,20107.1,0.0,0.0,1,9,7.0,1,0.0 +1639,2281,1843.36771725474,51.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,2486.0,0.0,88674.1854508391,0.0,92010.0,2,8,7.0,4,2.0 +1640,2285,954.6090788944387,33.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18076.4,0.0,19680.0,3,10,8.0,1,1.0 +1641,2286,702.453457536964,45.0,111,0.0,52,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,33793.7,0.0,14050.0,3,10,8.0,2,1.0 +1642,2287,4186.825072202494,93.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35180.0,0.0,0.0,31284.623044467622,0.0,0.0,3,6,4.0,1,0.0 +1643,2288,2097.3766082672596,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22790.0,0.0,0.0,21912.3,0.0,0.0,1,9,2.0,1,0.0 +1644,2289,2680.016540496395,40.0,300,110.0,85,1.0,0.0,4.0,2.3,10960.0,690.0,0.0,0.0,0.0,0.0,20972.0,0.0,0.0,3,0,0.0,4,1.0 +1645,2290,1527.074899545536,80.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35400.0,0.0,0.0,34246.4,0.0,0.0,1,7,5.0,3,0.0 +1646,2291,1993.3584473001517,41.0,111,1430.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,298.0,0.0,53916.65,0.0,45490.0,2,9,7.0,4,2.0 +1647,2292,2249.1779134099543,36.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23713.5,0.0,26460.0,2,6,5.0,1,1.0 +1648,2294,1419.3705899179151,48.0,111,2750.0,54,2.0,0.0,2.0,1.5,2500.0,0.0,0.0,0.0,0.0,0.0,12157.0,0.0,4280.0,3,7,5.0,2,2.0 +1649,2295,5514.939629614808,56.0,112,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,20590.0,0.0,0.0,75333.4,0.0,61300.0,1,7,1.0,4,2.0 +1650,2296,4149.487423288645,28.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,63826.35,0.0,69220.0,3,9,7.0,3,2.0 +1651,2298,2055.4231880760694,57.0,111,1270.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13190.0,0.0,0.0,31308.15,0.0,18430.0,1,8,7.0,3,1.0 +1652,2299,1694.155040958452,52.0,400,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33254.95,0.0,42350.0,1,0,0.0,3,2.0 +1653,2301,2519.9284646920632,36.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49316.8,0.0,42580.0,2,8,7.0,4,2.0 +1654,2302,1747.4773307773119,55.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,14.0,0.0,60385.55,0.0,67280.0,1,7,5.0,3,2.0 +1655,2303,1650.7863430261013,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24170.0,0.0,0.0,21855.15,0.0,0.0,1,8,0.0,1,0.0 +1656,2304,1916.446092022061,51.0,300,11380.0,47,3,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61476.85,0.0,69620.0,1,0,0.0,4,3.0 +1657,2305,2326.0136421609172,71.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22500.0,0.0,0.0,20981.5,0.0,0.0,1,10,4.0,1,0.0 +1658,2306,3395.7368685566803,64.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29190.0,0.0,0.0,30931.192438608134,0.0,0.0,1,10,8.0,3,0.0 +1659,2307,1166.1765423590982,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25410.0,0.0,0.0,23960.7,0.0,0.0,1,9,7.0,3,0.0 +1660,2308,2536.184237756078,53.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30216.5,0.0,32950.0,2,8,7.0,1,1.0 +1661,2309,1710.481010338618,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17320.0,0.0,0.0,17043.35,0.0,0.0,3,7,5.0,1,0.0 +1662,2311,1205.9478761414593,57.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,74993.1709016782,0.0,72980.0,1,7,5.0,3,2.0 +1663,2312,2057.8783953377488,60.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26400.0,0.0,0.0,25343.1,0.0,0.0,1,0,0.0,3,0.0 +1664,2313,2336.9492687335055,54.0,111,11090.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62541.35,0.0,59730.0,1,9,7.0,3,2.0 +1665,2314,1182.310194204795,65.0,112,0.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,21260.0,0.0,0.0,26485.851642000784,0.0,6160.0,1,6,0.0,3,2.0 +1666,2315,2388.179403365089,32.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,63678.25,0.0,68360.0,2,9,7.0,4,2.0 +1667,2316,4115.552751835384,82.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47800.0,0.0,0.0,44373.45,0.0,0.0,1,3,0.0,5,0.0 +1668,2318,2628.4120902337436,31.0,111,8200.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,10.0,0.0,34356.65,0.0,25860.0,2,10,8.0,4,2.0 +1669,2319,2951.638999388825,24.0,112,0.0,52,1.0,1.0,3.0,2.0,9720.0,0.0,0.0,0.0,0.0,0.0,31935.0,0.0,17320.0,3,10,4.0,2,1.0 +1670,2321,2295.8169611756275,42.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,547.0,0.0,57804.6,0.0,61800.0,2,7,0.0,3,2.0 +1671,2322,2952.5376784999034,51.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24317.05,0.0,27580.0,3,9,7.0,1,1.0 +1672,2323,533.1145963700695,47.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25395.4,0.0,27010.0,1,8,7.0,1,1.0 +1673,2324,4985.443781578632,83.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25110.0,0.0,0.0,32433.0,0.0,0.0,1,10,8.0,1,0.0 +1674,2325,2291.1850941550415,37.0,112,0.0,43,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,33781.1,0.0,21380.0,1,9,1.0,4,2.0 +1675,2326,2393.65972007112,98.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,42830.0,0.0,0.0,36669.25,0.0,0.0,1,10,8.0,1,0.0 +1676,2328,2825.8842789859923,21.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32220.3,0.0,32310.0,3,5,0.0,3,2.0 +1677,2330,503.20589446988953,63.0,112,0.0,78,0.0,0.0,2.0,1.5,5150.0,0.0,0.0,17420.0,0.0,0.0,22492.0,0.0,0.0,1,4,0.0,3,0.0 +1678,2331,1589.3762288171479,69.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30370.0,0.0,0.0,29011.55,0.0,0.0,2,0,1.0,3,0.0 +1679,2332,1696.2649554694437,63.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25780.0,0.0,0.0,25370.8,0.0,0.0,1,8,1.0,3,0.0 +1680,2333,2448.327372466112,32.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45636.0,0.0,47390.0,2,9,7.0,3,2.0 +1681,2335,1217.5323312608166,53.0,112,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49720.9,0.0,54680.0,1,9,3.0,3,2.0 +1682,2336,1491.3856346846046,47.0,111,0.0,38,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,98442.05,0.0,114040.0,1,10,8.0,4,2.0 +1683,2341,1578.566713696858,71.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15340.0,0.0,0.0,22499.9,0.0,2370.0,1,0,0.0,3,0.0 +1684,2342,1208.254011637604,74.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46690.0,0.0,0.0,42987.5,0.0,0.0,1,10,1.0,3,0.0 +1685,2343,2613.0957924634135,49.0,112,8320.0,56,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,34770.1,0.0,26940.0,3,10,4.0,4,3.0 +1686,2345,1867.3663903407812,78.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10840.0,0.0,0.0,27400.7,0.0,0.0,1,7,0.0,3,0.0 +1687,2346,2788.867927489033,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2126.0,0.0,0.0,3,9,7.0,1,0.0 +1688,2348,2631.5866802271094,45.0,400,0.0,67,1.0,1.0,3.0,2.0,7180.0,0.0,900.0,13960.0,0.0,0.0,46667.85,0.0,22600.0,3,0,0.0,4,1.0 +1689,2349,2772.2805282127033,64.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26210.0,0.0,0.0,24128.15,0.0,0.0,3,0,1.0,1,0.0 +1690,2350,1836.0789459817008,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42930.0,0.0,0.0,40069.7,0.0,0.0,1,7,5.0,3,0.0 +1691,2351,3807.3933526374703,25.0,111,0.0,85,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35947.25,0.0,38170.0,3,9,7.0,3,1.0 +1692,2352,2413.125075961754,42.0,120,0.0,55,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46845.0,0.0,40430.0,3,0,0.0,4,2.0 +1693,2353,2447.491158098334,57.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12580.0,0.0,0.0,22136.81514957779,0.0,0.0,1,9,7.0,3,1.0 +1694,2354,1990.374015941419,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44950.0,19.0,0.0,45838.9,0.0,850.0,1,4,3.0,3,0.0 +1695,2356,2031.2664529812766,66.0,112,0.0,75,0.0,0.0,2.0,1.5,9720.0,0.0,0.0,37680.0,0.0,0.0,42765.65,0.0,0.0,1,8,1.0,2,0.0 +1696,2357,1448.2367232873237,49.0,111,0.0,85,0.0,0.0,3.0,1.8,9570.0,2830.0,0.0,6480.0,0.0,0.0,23960.0,0.0,4610.0,5,8,7.0,5,0.0 +1697,2358,1783.9016725123292,84.0,400,0.0,74,0.0,0.0,2.0,1.5,5620.0,0.0,0.0,19440.0,651.0,0.0,25824.1,0.0,0.0,1,0,1.0,3,0.0 +1698,2359,1815.4885102374292,67.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23100.0,0.0,0.0,20575.25,0.0,0.0,1,3,3.0,1,0.0 +1699,2360,3932.023392818484,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13210.0,0.0,0.0,13691.0,0.0,0.0,3,8,6.0,1,0.0 +1700,2362,773.4507043204417,45.0,111,0.0,43,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41728.5,0.0,21210.0,3,10,8.0,2,1.0 +1701,2363,865.1933646358419,41.0,111,12420.0,52,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35851.4,0.0,21420.0,3,7,5.0,4,2.0 +1702,2364,3159.285033894001,34.0,111,0.0,53,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,44237.15,0.0,25820.0,3,10,8.0,4,2.0 +1703,2368,1555.7926038681028,69.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24610.0,2199.0,0.0,18087.45,0.0,0.0,1,0,1.0,1,0.0 +1704,2369,2530.8886282075205,71.0,111,0.0,31,1.0,0.0,2.0,1.5,0.0,0.0,0.0,34080.0,0.0,0.0,31659.05317625865,0.0,0.0,1,10,8.0,3,1.0 +1705,2370,3242.5792427243255,29.0,221,260.0,63,1.0,1.0,1.0,1.0,0.0,940.0,0.0,0.0,0.0,0.0,12892.0,1710.0,6910.0,3,1,2.0,1,1.0 +1706,2371,3002.0912114053995,33.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24669.95,0.0,26670.0,3,8,7.0,1,1.0 +1707,2372,1446.9988581159323,57.0,112,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26830.0,0.0,0.0,48641.45,0.0,22530.0,1,6,0.0,3,1.0 +1708,2373,1584.0367545012507,51.0,111,0.0,37,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,107390.95,0.0,144130.0,2,9,7.0,4,2.0 +1709,2374,2824.722039778025,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20990.0,340.0,0.0,22016.0,0.0,0.0,3,9,7.0,3,0.0 +1710,2375,2129.3665472372477,37.0,111,0.0,85,1.0,0.0,6.0,3.1,0.0,9150.0,0.0,0.0,0.0,0.0,26310.0,0.0,0.0,3,9,7.0,4,1.0 +1711,2377,3795.217063881586,82.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17250.0,0.0,0.0,17516.65,0.0,0.0,1,10,8.0,3,0.0 +1712,2379,1432.9043616448062,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50250.0,0.0,0.0,50940.0,0.0,0.0,1,9,2.0,3,0.0 +1713,2380,1649.10870191328,68.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48920.0,0.0,0.0,44654.85,0.0,0.0,1,8,6.0,3,0.0 +1714,2381,2896.871851242978,34.0,111,0.0,12,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,64277.65,0.0,60210.0,2,9,7.0,4,2.0 +1715,2382,987.4919473768102,53.0,112,60.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46678.3,0.0,38090.0,2,10,1.0,4,2.0 +1716,2383,3068.0944627789336,52.0,111,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52588.0,0.0,55250.0,2,9,7.0,4,3.0 +1717,2385,2052.3962050443624,49.0,120,6500.0,48,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56625.5,0.0,47850.0,2,0,3.0,4,3.0 +1718,2386,2881.682087346221,42.0,111,0.0,63,1.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,9510.0,540.0,0.0,3,8,6.0,1,1.0 +1719,2387,2625.501997358678,51.0,111,0.0,34,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66061.85,0.0,64310.0,2,10,8.0,4,1.0 +1720,2388,2842.095070844801,86.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,2750.0,6780.0,0.0,0.0,9738.6,0.0,0.0,1,0,0.0,1,0.0 +1721,2389,4095.6207644316705,47.0,111,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,103634.43904467711,0.0,184350.0,3,10,8.0,4,2.0 +1722,2390,1738.8763431261239,85.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33250.0,547.0,0.0,33632.4,0.0,0.0,1,9,1.0,3,0.0 +1723,2391,2524.3996919475303,69.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10250.0,0.0,0.0,12725.0,0.0,0.0,3,6,4.0,1,0.0 +1724,2392,2048.015701868584,41.0,112,150.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37064.2,0.0,35210.0,2,8,1.0,4,2.0 +1725,2395,536.4154984458414,40.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24062.5,0.0,27140.0,2,9,7.0,1,1.0 +1726,2396,1096.8360412649733,45.0,111,0.0,85,0.0,0.0,3.0,1.8,810.0,6340.0,0.0,0.0,0.0,0.0,15106.0,0.0,0.0,3,8,6.0,2,0.0 +1727,2397,3598.8457283394796,49.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38005.55,340.0,16790.0,3,5,4.0,3,2.0 +1728,2398,1674.6322148312333,58.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36657.15,0.0,39380.0,1,9,1.0,2,2.0 +1729,2399,2253.4373565090054,70.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30450.0,0.0,0.0,28096.45,0.0,0.0,1,0,0.0,3,0.0 +1730,2400,1660.2957410872637,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21910.0,0.0,0.0,21304.85,0.0,0.0,1,8,0.0,3,0.0 +1731,2401,1310.4419420436861,90.0,111,0.0,78,0.0,0.0,3.0,2.0,9720.0,0.0,0.0,18060.0,0.0,0.0,34059.0,0.0,0.0,3,8,7.0,5,0.0 +1732,2402,2983.3016165779777,66.0,111,0.0,75,1.0,1.0,3.0,2.0,5830.0,0.0,0.0,44700.0,0.0,0.0,57019.15,610.0,9110.0,1,4,3.0,4,1.0 +1733,2403,2002.6700839838288,59.0,400,5950.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8931.0,0.0,0.0,3,0,0.0,1,1.0 +1734,2404,3788.5007890366824,76.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12950.0,0.0,0.0,14642.0,0.0,0.0,3,9,3.0,5,0.0 +1735,2405,1275.563308317706,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26040.0,0.0,0.0,24905.1,0.0,0.0,1,8,7.0,3,0.0 +1736,2406,1633.9950998615855,56.0,400,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13216.15,0.0,13820.0,2,0,0.0,1,1.0 +1737,2407,2053.9358518476356,61.0,211,4850.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8920.0,0.0,0.0,18372.85,0.0,5440.0,3,4,4.0,1,1.0 +1738,2408,2232.7132078807435,34.0,400,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19689.6,0.0,20510.0,2,0,0.0,1,1.0 +1739,2409,2059.1014472278744,81.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11040.0,0.0,0.0,22844.0,0.0,0.0,1,0,1.0,1,0.0 +1740,2410,2475.7174595231622,55.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,8960.0,480.0,0.0,68492.95,0.0,69470.0,1,8,7.0,3,2.0 +1741,2411,2636.1813807625545,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19850.0,0.0,0.0,25483.6,0.0,6270.0,3,9,7.0,1,0.0 +1742,2412,2146.9638728909863,63.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24270.0,1172.0,0.0,-0.0,0.0,0.0,5,0,0.0,1,0.0 +1743,2413,2844.30570236101,82.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25540.0,0.0,0.0,25947.5,0.0,0.0,1,7,0.0,3,0.0 +1744,2414,2320.8900433925987,28.0,120,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30537.25,0.0,27170.0,3,0,0.0,4,2.0 +1745,2415,4057.542473729737,51.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3870.0,0.0,0.0,50597.7,0.0,48150.0,1,10,8.0,1,1.0 +1746,2416,1989.0357983665103,56.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14800.0,0.0,0.0,32540.95,0.0,18740.0,1,6,0.0,3,1.0 +1747,2417,3344.5254910728772,30.0,120,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27497.5,0.0,16070.0,2,0,0.0,4,1.0 +1748,2418,2357.0067357918283,66.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27590.0,0.0,0.0,25054.95,0.0,0.0,5,0,0.0,1,0.0 +1749,2419,1707.6600074697355,51.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21910.0,3560.0,18570.0,3,9,7.0,2,2.0 +1750,2421,4086.7149826920604,68.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18930.0,0.0,0.0,18055.55,0.0,0.0,1,6,0.0,1,0.0 +1751,2422,2561.67573186929,33.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35484.4,0.0,35060.0,3,7,0.0,4,2.0 +1752,2424,3133.543095823109,48.0,300,21020.0,31,2.0,2.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,46985.4,0.0,5920.0,2,0,0.0,5,2.0 +1753,2425,2130.1408669152997,31.0,111,710.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46772.9,0.0,42020.0,2,9,7.0,4,2.0 +1754,2426,294.29356957855265,33.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,2970.0,0.0,25660.9,0.0,19310.0,1,9,7.0,2,1.0 +1755,2427,1834.2319225797557,61.0,300,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25620.0,42.0,0.0,60461.25,0.0,10080.0,1,0,0.0,3,1.0 +1756,2429,2321.306286136014,73.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26470.0,0.0,0.0,28802.45,0.0,2980.0,1,8,0.0,2,0.0 +1757,2430,1972.6685560816923,75.0,112,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,24370.0,0.0,0.0,24254.55,0.0,0.0,1,7,0.0,3,1.0 +1758,2431,2286.805070044833,85.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24510.0,0.0,0.0,22740.65,0.0,0.0,1,5,4.0,1,0.0 +1759,2432,3781.1967153289693,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2546.0,0.0,0.0,3,10,8.0,1,0.0 +1760,2434,5673.0197444106425,23.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35429.55,0.0,13670.0,3,10,8.0,1,1.0 +1761,2435,810.5532198813985,45.0,112,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28224.35,0.0,27170.0,2,9,3.0,2,1.0 +1762,2437,1263.970989990441,41.0,111,0.0,63,1.0,1.0,2.0,1.3,8420.0,0.0,0.0,0.0,0.0,0.0,23842.0,1790.0,7530.0,3,9,7.0,2,1.0 +1763,2438,3794.1619585155677,20.0,112,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9534.0,0.0,9530.0,5,9,3.0,1,1.0 +1764,2440,2215.7935674198065,82.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30810.0,0.0,0.0,31426.85,0.0,0.0,1,9,7.0,3,0.0 +1765,2441,728.8563451769818,46.0,111,0.0,35,1.0,1.0,2.0,1.3,0.0,5380.0,0.0,0.0,0.0,0.0,12644.0,670.0,1520.0,3,8,7.0,2,1.0 +1766,2442,4639.316328886995,26.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24883.9,0.0,27430.0,2,10,8.0,1,1.0 +1767,2444,1910.3075200647902,56.0,112,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34030.8,0.0,34660.0,3,7,0.0,4,1.0 +1768,2446,1734.7933967051572,49.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37869.9,0.0,39860.0,2,4,3.0,4,2.0 +1769,2447,2032.3951214136123,36.0,111,0.0,56,1.0,0.0,7.0,3.2,11850.0,0.0,0.0,0.0,0.0,0.0,33710.0,0.0,4480.0,3,9,7.0,4,1.0 +1770,2448,2771.482224557062,61.0,111,14070.0,86,1.0,1.0,2.0,1.5,0.0,0.0,0.0,3190.0,0.0,0.0,32286.95,0.0,15480.0,3,6,5.0,3,1.0 +1771,2449,1765.5392893064038,80.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,20330.0,0.0,0.0,43481.55,0.0,26760.0,1,9,2.0,4,1.0 +1772,2451,2730.286807505118,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53610.0,0.0,0.0,47702.8,0.0,0.0,1,8,7.0,3,0.0 +1773,2452,5818.81331962967,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5700.0,0.0,0.0,3,10,8.0,1,0.0 +1774,2454,602.0386413989345,44.0,111,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,11720.0,0.0,0.0,48303.35,0.0,29650.0,3,9,7.0,2,2.0 +1775,2457,1772.0534488070218,61.0,112,0.0,42,2.0,1.0,2.0,1.5,0.0,0.0,0.0,26720.0,0.0,0.0,41952.4,0.0,17930.0,1,9,2.0,3,2.0 +1776,2458,2960.84526154778,29.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31924.8,0.0,32040.0,2,8,0.0,3,2.0 +1777,2459,2199.517812289468,60.0,112,900.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47684.5,0.0,51200.0,1,6,0.0,3,2.0 +1778,2461,2768.0386596049216,38.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21859.7,0.0,24410.0,2,9,7.0,1,1.0 +1779,2462,1312.1878859306757,55.0,300,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41763.5,0.0,44670.0,2,0,1.0,3,2.0 +1780,2466,1490.2814140569533,83.0,111,0.0,78,0.0,0.0,2.0,1.5,9700.0,0.0,0.0,15690.0,0.0,0.0,25362.45,0.0,0.0,1,7,5.0,2,0.0 +1781,2467,1612.3807023068343,65.0,112,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12840.0,0.0,0.0,24306.75,0.0,0.0,1,6,0.0,3,1.0 +1782,2475,1400.645870558518,70.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28990.0,0.0,0.0,31492.2,0.0,0.0,1,9,7.0,3,0.0 +1783,2476,2780.49634991554,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40930.0,455.0,0.0,43987.7,0.0,0.0,1,8,6.0,5,0.0 +1784,2477,1898.5670293728895,23.0,400,2380.0,62,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39518.7,200.0,31420.0,3,0,0.0,4,2.0 +1785,2478,1569.9516804131356,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31250.0,0.0,0.0,29240.25,0.0,0.0,1,9,7.0,3,0.0 +1786,2480,2870.704667333054,50.0,112,5100.0,47,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45133.4,0.0,41590.0,2,9,1.0,4,2.0 +1787,2481,1778.663943569854,46.0,111,5950.0,63,1.0,0.0,5.0,2.4,0.0,2610.0,0.0,0.0,0.0,0.0,20090.1,0.0,0.0,3,9,7.0,4,1.0 +1788,2482,2093.378949467493,38.0,112,0.0,64,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41054.45,0.0,35980.0,2,9,3.0,4,2.0 +1789,2483,2583.51997616464,48.0,111,1030.0,46,1.0,1.0,3.0,1.8,0.0,8910.0,0.0,0.0,0.0,0.0,36826.85,530.0,25580.0,3,10,8.0,5,1.0 +1790,2485,2262.2617203392992,69.0,120,0.0,11,1.0,0.0,1.0,1.0,0.0,0.0,0.0,32670.0,91.0,0.0,37508.1,0.0,0.0,1,0,3.0,1,1.0 +1791,2486,2677.2849861849763,65.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25070.0,0.0,0.0,24070.5,0.0,0.0,1,3,0.0,3,0.0 +1792,2488,543.7145552666739,29.0,221,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,12917.95,4820.0,8220.0,5,1,1.0,2,1.0 +1793,2491,4231.659567411884,22.0,111,0.0,45,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26064.0,0.0,10320.0,3,10,8.0,1,1.0 +1794,2493,2387.4465508736234,34.0,111,2490.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45017.3,0.0,34500.0,2,8,7.0,4,2.0 +1795,2494,2113.9517531629285,42.0,111,0.0,21,1.0,1.0,6.0,3.1,0.0,5620.0,0.0,0.0,0.0,0.0,28505.0,1680.0,0.0,3,8,6.0,4,1.0 +1796,2495,1499.457985134699,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67740.0,124.0,0.0,57160.5,0.0,0.0,1,6,4.0,3,0.0 +1797,2496,1687.6811756358125,53.0,111,0.0,42,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,49932.55,0.0,54350.0,2,9,7.0,4,3.0 +1798,2498,2162.1573864198663,55.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31044.7,2480.0,28740.0,1,10,8.0,1,1.0 +1799,2499,1964.5867854347546,91.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32320.0,0.0,0.0,33381.54944059922,0.0,0.0,1,4,4.0,1,0.0 +1800,2500,1484.405289470702,59.0,300,0.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,24200.0,0.0,0.0,31039.75,0.0,7430.0,1,0,0.0,3,1.0 +1801,2502,2142.961190471823,53.0,111,6210.0,54,2.0,2.0,3.0,2.0,0.0,1380.0,0.0,0.0,0.0,0.0,40154.9,0.0,32330.0,3,9,7.0,2,2.0 +1802,2503,2237.9131033777517,32.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,68479.4,0.0,23750.0,2,9,7.0,4,2.0 +1803,2504,2472.3344729274218,39.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42408.45429547311,0.0,41150.0,3,9,7.0,4,1.0 +1804,2506,2281.716790446576,31.0,112,360.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41877.35,0.0,39990.0,2,9,3.0,4,2.0 +1805,2507,4514.830058436377,67.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16280.0,0.0,0.0,15561.75,0.0,0.0,1,7,0.0,1,0.0 +1806,2508,1506.9590824099935,41.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19830.6,4340.0,11620.0,3,8,7.0,2,1.0 +1807,2509,2502.0400056163026,84.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18850.0,0.0,0.0,21987.5,0.0,0.0,5,6,0.0,1,0.0 +1808,2510,1259.8578924186313,23.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,6410.0,0.0,0.0,0.0,0.0,12826.0,440.0,1730.0,3,7,5.0,1,1.0 +1809,2512,1981.0334988909478,47.0,112,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,72592.6,0.0,80360.0,2,9,1.0,4,2.0 +1810,2513,2146.559274841553,32.0,400,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,13.0,0.0,15829.6,0.0,17630.0,3,0,0.0,1,1.0 +1811,2514,1995.5092641167453,60.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,2400.0,0.0,0.0,24697.3,0.0,23330.0,1,7,0.0,3,1.0 +1812,2515,2617.1164811771596,40.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54580.9,0.0,56970.0,2,10,8.0,4,2.0 +1813,2518,2192.699433817446,49.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39922.85,0.0,41080.0,2,9,7.0,3,2.0 +1814,2520,2900.668152813114,40.0,111,0.0,69,1.0,0.0,2.0,1.3,0.0,8260.0,0.0,0.0,0.0,0.0,11721.0,0.0,0.0,3,7,5.0,2,1.0 +1815,2521,1869.7102249559107,79.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28600.0,0.0,0.0,28764.05,0.0,0.0,1,8,7.0,3,0.0 +1816,2523,2436.8571022584138,52.0,400,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46155.65,0.0,50920.0,2,0,0.0,3,2.0 +1817,2525,1124.56483932541,43.0,111,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24960.0,0.0,13030.0,3,9,7.0,4,1.0 +1818,2527,3378.277785954757,85.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23030.0,0.0,0.0,27245.4,0.0,0.0,3,8,7.0,1,0.0 +1819,2529,3296.9615008737437,59.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29962.85,0.0,34920.0,2,9,7.0,1,1.0 +1820,2532,1029.8398256841485,37.0,111,0.0,38,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,53351.6,0.0,50310.0,3,10,8.0,2,1.0 +1821,2533,4741.6327156367615,32.0,111,0.0,34,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27760.0,790.0,26840.0,3,10,8.0,4,1.0 +1822,2534,2644.190743067552,66.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15960.0,0.0,0.0,18962.55,0.0,0.0,1,8,1.0,1,0.0 +1823,2535,3208.9732031058093,83.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18170.0,0.0,0.0,18201.0,0.0,0.0,3,1,3.0,1,0.0 +1824,2536,2291.2016034029148,66.0,120,0.0,62,1.0,0.0,2.0,1.5,4780.0,0.0,3440.0,28230.0,0.0,0.0,39498.0,0.0,0.0,3,0,0.0,3,1.0 +1825,2538,2804.8116731232767,71.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26810.0,0.0,0.0,25610.3,0.0,0.0,1,9,0.0,1,0.0 +1826,2539,2357.50832650238,19.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,367.25,0.0,0.0,3,8,7.0,3,0.0 +1827,2540,3854.305780770932,44.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12655.95,2760.0,0.0,3,10,8.0,1,1.0 +1828,2541,2287.391665218016,36.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25804.45,0.0,28460.0,2,10,8.0,1,1.0 +1829,2542,4511.595019410229,69.0,120,0.0,71,0.0,0.0,3.0,2.0,0.0,0.0,0.0,30480.0,0.0,0.0,30090.0,0.0,0.0,1,0,3.0,5,0.0 +1830,2543,3267.9919502846647,32.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19110.95,1220.0,18510.0,3,8,7.0,1,1.0 +1831,2544,2711.3752485912396,75.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19610.0,0.0,0.0,21422.3,0.0,0.0,1,0,1.0,1,0.0 +1832,2546,2138.874448803158,68.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20130.0,0.0,0.0,20808.0,0.0,0.0,1,0,0.0,3,0.0 +1833,2548,2141.439392637867,71.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35950.0,0.0,0.0,34910.05,0.0,0.0,3,0,0.0,3,0.0 +1834,2549,1544.8923842448967,50.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20672.85,0.0,22460.0,1,8,7.0,1,1.0 +1835,2551,2680.988508354263,39.0,400,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14418.0,0.0,14780.0,3,0,0.0,1,1.0 +1836,2552,2805.672900575587,27.0,120,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36721.55,0.0,39210.0,2,0,0.0,3,2.0 +1837,2553,1815.081199023666,42.0,300,0.0,62,2.0,1.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,39631.85,210.0,23560.0,3,0,1.0,4,2.0 +1838,2554,2887.8352192995876,63.0,212,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,7221.0,0.0,0.0,1,2,0.0,3,2.0 +1839,2555,2014.9180081245102,39.0,400,4300.0,52,1.0,1.0,1.0,1.0,0.0,280.0,0.0,0.0,0.0,0.0,9782.35,760.0,2450.0,3,0,0.0,1,1.0 +1840,2556,2161.868587310796,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10150.0,4442.0,0.0,14182.3,0.0,0.0,1,8,7.0,1,0.0 +1841,2557,1090.1737155403853,44.0,221,8310.0,65,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,15596.5,0.0,0.0,3,1,3.0,2,1.0 +1842,2559,1921.5013296537554,54.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20604.05,0.0,22390.0,5,9,2.0,1,1.0 +1843,2560,2592.641310568708,63.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23140.0,0.0,0.0,33351.35952877595,0.0,11690.0,1,9,0.0,3,1.0 +1844,2561,2949.0908005561546,55.0,211,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16573.65,0.0,17470.0,3,1,3.0,1,1.0 +1845,2562,3096.7622445400216,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34100.0,0.0,0.0,30030.65,0.0,0.0,1,8,6.0,1,0.0 +1846,2565,1359.537068371644,51.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38355.15,0.0,41500.0,1,7,5.0,3,2.0 +1847,2566,3194.9756336392347,41.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11893.0,0.0,18450.0,3,10,8.0,1,1.0 +1848,2567,2888.9303629191113,82.0,111,0.0,77,1.0,0.0,2.0,1.5,0.0,6300.0,0.0,15710.0,0.0,0.0,21607.65,0.0,0.0,1,8,7.0,2,1.0 +1849,2570,2798.8383722076082,66.0,112,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,37230.0,45.0,0.0,60145.65,0.0,29260.0,1,9,0.0,3,1.0 +1850,2573,1132.125823093553,19.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,99.0,0.0,0.0,3,8,6.0,5,0.0 +1851,2574,2140.4842404863334,36.0,112,10510.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50478.5,0.0,43460.0,3,4,0.0,4,2.0 +1852,2577,1999.9792727964225,70.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26340.0,0.0,0.0,30055.7,0.0,6380.0,3,0,0.0,1,0.0 +1853,2578,2671.4482218937437,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19580.0,0.0,0.0,18160.6,0.0,0.0,2,9,7.0,1,0.0 +1854,2579,1765.4160018776074,42.0,111,6000.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58649.45,0.0,55540.0,1,9,7.0,3,2.0 +1855,2580,2789.759265099125,51.0,300,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10440.0,0.0,0.0,52606.9,0.0,0.0,3,0,0.0,1,1.0 +1856,2581,2132.2218548661886,44.0,300,14240.0,35,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,54291.75,0.0,27520.0,1,0,0.0,4,2.0 +1857,2583,849.8664917097274,35.0,111,1570.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23790.45,360.0,14240.0,3,7,5.0,2,1.0 +1858,2584,3564.439854974476,70.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43290.0,204.0,0.0,39972.85,0.0,0.0,1,9,7.0,3,0.0 +1859,2587,3311.7843125917043,60.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14799.2,0.0,16450.0,1,6,5.0,1,1.0 +1860,2588,1365.9444950795548,39.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,5040.0,0.0,0.0,0.0,0.0,15450.0,1170.0,2500.0,3,10,8.0,2,1.0 +1861,2590,1627.5005153030088,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20320.0,0.0,0.0,18908.5,0.0,0.0,1,7,5.0,1,0.0 +1862,2591,2008.4316410221418,52.0,111,8090.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48532.65,180.0,28690.0,1,9,7.0,4,3.0 +1863,2592,3249.3570399365826,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31580.0,0.0,0.0,31586.15,0.0,0.0,1,10,8.0,3,0.0 +1864,2594,2864.4208090194415,56.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,71157.4,0.0,130.0,1,9,7.0,1,1.0 +1865,2595,1460.1709902340099,62.0,112,18020.0,35,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26160.0,0.0,0.0,1,8,1.0,3,2.0 +1866,2596,2469.1321309543323,45.0,111,0.0,67,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41580.0,0.0,23030.0,3,6,5.0,4,1.0 +1867,2597,1911.4061115357563,77.0,222,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34370.0,0.0,0.0,65484.0354508391,0.0,0.0,1,1,0.0,3,0.0 +1868,2599,2872.821634344366,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22610.0,0.0,0.0,22965.033029915558,0.0,0.0,3,10,8.0,3,0.0 +1869,2600,741.1924429695265,42.0,221,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28245.7,0.0,26870.0,2,1,1.0,2,1.0 +1870,2601,3051.0205489051536,36.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48317.5,0.0,46200.0,1,10,4.0,4,2.0 +1871,2602,1772.7407385406236,61.0,112,0.0,77,0.0,0.0,1.0,1.0,2700.0,0.0,2410.0,7190.0,0.0,0.0,12306.0,0.0,0.0,1,8,0.0,1,0.0 +1872,2603,1830.958713220024,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18740.0,0.0,0.0,28106.25,0.0,11990.0,1,8,6.0,1,0.0 +1873,2606,1945.226380440527,22.0,111,0.0,81,1.0,0.0,2.0,1.3,0.0,6230.0,0.0,0.0,0.0,0.0,9710.0,0.0,0.0,3,9,7.0,2,1.0 +1874,2609,3841.293602059729,56.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,9006.0,0.0,0.0,3,9,7.0,1,0.0 +1875,2610,1205.9412818938363,49.0,111,0.0,52,1.0,1.0,6.0,3.3,0.0,0.0,0.0,4810.0,0.0,0.0,37490.5,0.0,19200.0,1,9,7.0,5,1.0 +1876,2611,1610.551195449627,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31700.0,0.0,0.0,31250.15,0.0,0.0,3,9,7.0,3,0.0 +1877,2612,2691.3148934144738,37.0,211,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,61078.65,0.0,63160.0,2,4,4.0,4,2.0 +1878,2615,865.4173237187254,43.0,111,0.0,56,1.0,1.0,4.0,2.1,0.0,4050.0,0.0,0.0,0.0,0.0,21240.7,1030.0,1730.0,3,8,7.0,2,1.0 +1879,2616,3049.435715078152,58.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48933.05,0.0,55570.0,2,9,7.0,3,2.0 +1880,2617,3712.5252158212274,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40920.0,477.0,0.0,46710.49376599981,0.0,7160.0,1,9,7.0,5,0.0 +1881,2619,3016.381505050817,55.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,20670.0,72.0,0.0,63707.3,0.0,45180.0,3,6,4.0,5,2.0 +1882,2620,3237.2230505729067,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21050.0,0.0,0.0,20349.0,0.0,0.0,1,8,6.0,1,0.0 +1883,2621,5828.226836700115,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13600.0,0.0,0.0,17369.9,0.0,0.0,1,6,4.0,1,0.0 +1884,2622,3466.7895313770487,76.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,51020.0,0.0,0.0,50201.16150856448,0.0,0.0,1,10,8.0,1,0.0 +1885,2625,1841.9753511587148,41.0,111,2800.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34531.25,0.0,35100.0,1,9,7.0,4,2.0 +1886,2628,6784.67635616696,27.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28698.55,910.0,28290.0,3,9,7.0,1,1.0 +1887,2629,1769.4339145384363,52.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18080.0,0.0,1060.0,3,8,7.0,2,1.0 +1888,2630,2606.8770127580633,54.0,111,3490.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,16699.9,880.0,11910.0,3,9,7.0,2,1.0 +1889,2632,2089.2963624131316,47.0,111,0.0,42,1.0,1.0,4.0,2.1,0.0,0.0,0.0,3580.0,0.0,0.0,48093.0,0.0,37270.0,3,10,8.0,5,1.0 +1890,2633,1186.8057627681076,29.0,112,1720.0,68,1.0,1.0,2.0,1.3,0.0,1750.0,0.0,0.0,0.0,0.0,20268.65,1570.0,8930.0,3,8,3.0,2,1.0 +1891,2634,2414.579294988586,54.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22176.25,0.0,24140.0,3,7,6.0,1,1.0 +1892,2636,1814.2649208705693,45.0,112,0.0,55,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48857.570934863,0.0,47350.0,1,7,0.0,4,2.0 +1893,2638,3486.263442335007,49.0,400,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20910.4,0.0,0.0,1,0,0.0,1,0.0 +1894,2639,3398.5619305527343,53.0,111,190.0,68,1.0,1.0,1.0,1.0,0.0,880.0,0.0,0.0,0.0,0.0,9944.1,2470.0,4020.0,3,5,4.0,1,1.0 +1895,2640,1959.9064068123714,85.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,99070.0,0.0,0.0,86297.46051483834,0.0,0.0,1,9,0.0,3,0.0 +1896,2641,3101.8578548084733,40.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,5820.0,0.0,0.0,46.0,0.0,7148.35,0.0,0.0,3,8,7.0,1,1.0 +1897,2642,2253.08110741519,43.0,120,0.0,13,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46770.0,0.0,16610.0,1,0,3.0,4,2.0 +1898,2643,1130.4834638602929,49.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23191.15,200.0,21650.0,3,10,8.0,2,1.0 +1899,2644,2212.8191420024095,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49470.0,0.0,0.0,44559.3,0.0,0.0,2,8,1.0,3,0.0 +1900,2645,1489.1835400697626,45.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43555.9899611415,0.0,41720.0,2,6,0.0,3,2.0 +1901,2647,2724.3340319121385,53.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,69764.2,0.0,82730.0,1,7,5.0,4,2.0 +1902,2648,2047.2610951678773,33.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51141.15,0.0,49130.0,2,9,7.0,4,2.0 +1903,2649,4309.309735103013,28.0,111,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39801.15031762586,0.0,41210.0,3,6,4.0,3,2.0 +1904,2652,1612.6386650856405,54.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20483.4,0.0,22430.0,3,7,5.0,1,1.0 +1905,2653,2011.398661664424,37.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42899.35,0.0,37790.0,1,9,7.0,4,2.0 +1906,2654,2528.5494007389425,38.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55506.7,0.0,31660.0,2,6,5.0,4,2.0 +1907,2655,2181.635937187616,66.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30650.0,934.0,0.0,30876.35,0.0,0.0,1,9,7.0,3,0.0 +1908,2656,1412.2687414847605,55.0,300,12660.0,63,3,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,42169.95,0.0,25480.0,3,0,1.0,4,3.0 +1909,2657,536.2696205969925,36.0,112,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23453.85,390.0,19220.0,2,8,0.0,2,1.0 +1910,2659,2630.476892539922,65.0,111,0.0,77,0.0,0.0,1.0,1.0,9170.0,0.0,0.0,1800.0,2344.0,0.0,17494.0,0.0,0.0,3,7,5.0,1,0.0 +1911,2660,4107.0403051529,62.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25680.0,0.0,0.0,51253.65,0.0,24380.0,1,9,7.0,3,1.0 +1912,2661,3691.6240838116205,26.0,111,0.0,52,2.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,24733.0,2410.0,11850.0,3,10,8.0,4,2.0 +1913,2662,1403.4303333984437,56.0,212,7260.0,12,2.0,2.0,5.0,2.8,9720.0,0.0,0.0,0.0,0.0,0.0,32941.1,1160.0,7570.0,5,4,0.0,4,2.0 +1914,2663,4455.676158535242,52.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37836.05,0.0,44880.0,5,10,8.0,1,1.0 +1915,2664,2130.065950557817,42.0,120,0.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43023.0,0.0,41630.0,2,0,0.0,4,2.0 +1916,2665,1832.6093643219901,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56900.0,0.0,0.0,49322.25,0.0,0.0,1,8,7.0,3,0.0 +1917,2667,2690.960248067855,79.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23130.0,0.0,0.0,22058.1,0.0,0.0,5,0,0.0,1,0.0 +1918,2668,5772.57085574396,85.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,1900.0,6830.0,0.0,0.0,11735.0,0.0,0.0,5,9,7.0,1,0.0 +1919,2669,3311.3582037732276,74.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17190.0,0.0,0.0,21196.5,0.0,0.0,1,7,0.0,1,0.0 +1920,2670,3022.990295892511,93.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28250.0,272.0,0.0,24446.35,0.0,0.0,1,0,1.0,3,0.0 +1921,2672,2569.170634359886,88.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16130.0,0.0,0.0,16188.0,0.0,0.0,5,8,0.0,1,0.0 +1922,2673,808.6755542786904,47.0,111,0.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32241.45,0.0,28890.0,2,8,7.0,2,1.0 +1923,2674,1861.0518780724335,83.0,221,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22590.0,0.0,0.0,29415.45,0.0,0.0,1,1,2.0,3,0.0 +1924,2675,411.1623774079285,47.0,111,5090.0,52,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35777.05,670.0,23640.0,3,7,6.0,4,3.0 +1925,2676,3412.818283092416,32.0,111,0.0,52,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28608.7,870.0,20220.0,3,9,7.0,4,1.0 +1926,2678,2153.351754076666,52.0,300,940.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18078.25,0.0,18660.0,2,0,0.0,1,1.0 +1927,2679,851.8921743724637,33.0,111,0.0,52,1.0,1.0,4.0,1.9,0.0,6300.0,0.0,0.0,0.0,0.0,20129.35,0.0,0.0,3,10,8.0,2,1.0 +1928,2680,3249.5173994904826,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26010.0,0.0,0.0,22994.533758414716,0.0,0.0,1,7,5.0,1,0.0 +1929,2681,3275.9084482518124,57.0,120,0.0,52,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,9000.0,0.0,0.0,3,0,3.0,1,1.0 +1930,2682,2153.7698194689883,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29700.0,0.0,0.0,24776.05,0.0,0.0,1,9,7.0,1,0.0 +1931,2683,2545.2740943810036,33.0,112,4750.0,21,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37346.1,0.0,40.0,1,8,0.0,4,1.0 +1932,2684,2679.2621606789685,83.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17810.0,0.0,0.0,35159.0,0.0,0.0,3,8,6.0,3,0.0 +1933,2685,2812.9797306025253,72.0,400,0.0,78,1.0,0.0,3.0,2.0,9280.0,0.0,0.0,23740.0,0.0,0.0,32605.0,0.0,0.0,1,0,1.0,4,1.0 +1934,2686,3148.592589632774,36.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,68094.0,0.0,66800.0,2,9,7.0,4,2.0 +1935,2687,2540.206328993472,33.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20843.85,0.0,21020.0,3,8,7.0,1,1.0 +1936,2688,2933.776405500242,33.0,111,2670.0,84,1.0,0.0,4.0,2.1,0.0,400.0,0.0,0.0,0.0,0.0,31769.45,410.0,20230.0,3,8,7.0,4,1.0 +1937,2689,746.1558879110702,61.0,111,10480.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12755.0,0.0,20.0,3,5,4.0,1,1.0 +1938,2690,2764.702442526471,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14550.0,0.0,0.0,14665.0,0.0,0.0,3,8,7.0,1,0.0 +1939,2691,1934.5863263427213,38.0,111,0.0,21,1.0,1.0,2.0,1.3,0.0,3520.0,0.0,0.0,0.0,0.0,10256.55,1730.0,0.0,3,10,8.0,2,1.0 +1940,2692,2797.018328754849,45.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21627.35,0.0,23350.0,2,9,7.0,1,1.0 +1941,2694,2757.876209552573,43.0,120,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,8.0,0.0,39432.5,0.0,37230.0,2,0,0.0,4,2.0 +1942,2696,516.3705999394143,42.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25730.25,820.0,19760.0,2,9,7.0,2,1.0 +1943,2697,3045.8950910379835,81.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39850.0,0.0,0.0,37368.15,0.0,0.0,1,1,3.0,3,0.0 +1944,2698,1532.596969036061,51.0,120,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53921.95,0.0,58190.0,2,0,0.0,3,1.0 +1945,2699,5000.678626215738,33.0,120,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47986.65,0.0,44350.0,2,0,0.0,4,2.0 +1946,2700,3877.7727749692704,30.0,111,0.0,53,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26340.35,3310.0,14340.0,3,9,7.0,4,2.0 +1947,2701,264.82534596681046,33.0,400,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,46211.65,0.0,0.0,2,0,1.0,2,1.0 +1948,2702,3405.02923447756,49.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43669.45,0.0,49520.0,2,9,7.0,1,1.0 +1949,2704,1976.2505230813063,37.0,111,0.0,42,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28225.75,0.0,24280.0,3,4,4.0,2,1.0 +1950,2707,2055.816910513655,71.0,120,3730.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22600.0,0.0,0.0,25478.76772541955,0.0,0.0,1,0,0.0,3,0.0 +1951,2708,792.1216179678468,32.0,112,0.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,65497.05,0.0,48470.0,2,10,2.0,4,2.0 +1952,2709,2247.5150887948544,34.0,112,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44063.2,0.0,40340.0,2,4,0.0,4,2.0 +1953,2710,2239.5422669011277,57.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,100.0,0.0,42429.019306485716,0.0,45630.0,3,8,7.0,1,1.0 +1954,2712,2541.1509970693455,60.0,112,0.0,21,2.0,1.0,3.0,2.0,0.0,0.0,0.0,23170.0,0.0,0.0,30762.0,0.0,9200.0,5,10,1.0,4,2.0 +1955,2713,1707.770145938555,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34790.0,0.0,0.0,30238.25,0.0,0.0,1,4,4.0,3,0.0 +1956,2715,2200.9412068127417,80.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21460.0,0.0,0.0,18847.85,0.0,0.0,1,1,2.0,1,0.0 +1957,2716,3221.9237899386153,34.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2012.0,0.0,43655.85,0.0,46190.0,3,9,7.0,1,1.0 +1958,2717,1500.7257241543916,74.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16800.0,0.0,0.0,21575.05,0.0,0.0,1,0,0.0,3,0.0 +1959,2718,2149.5422888718685,50.0,111,3780.0,33,3,3.0,3.0,2.0,0.0,0.0,0.0,14820.0,295.0,0.0,66242.05,480.0,53690.0,2,9,7.0,4,3.0 +1960,2720,2878.3048333109136,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24190.0,0.0,0.0,24042.05,0.0,0.0,5,7,5.0,3,0.0 +1961,2722,2899.903859331487,46.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2021.0,0.0,56150.3,0.0,39730.0,3,9,7.0,1,1.0 +1962,2723,1372.6673779821786,55.0,112,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,47163.8,0.0,42460.0,2,8,0.0,4,2.0 +1963,2725,3922.8613539751886,42.0,111,4810.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19040.0,0.0,1020.0,3,10,8.0,1,1.0 +1964,2727,2752.0039354098185,31.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42780.05,0.0,45980.0,3,8,2.0,3,2.0 +1965,2728,720.3179112592505,49.0,111,0.0,68,1.0,0.0,2.0,1.3,0.0,5730.0,0.0,0.0,0.0,0.0,8702.95,0.0,0.0,3,8,6.0,2,1.0 +1966,2729,2446.38478877852,96.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20250.0,0.0,0.0,19925.3,0.0,0.0,5,8,7.0,1,0.0 +1967,2730,5412.01560660715,26.0,112,3360.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13791.65,0.0,9750.0,3,9,1.0,1,1.0 +1968,2731,3600.5533564785655,56.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14900.6,0.0,0.0,1,10,8.0,1,1.0 +1969,2732,2283.257391442836,80.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14250.0,0.0,0.0,13939.0,0.0,0.0,1,8,7.0,1,0.0 +1970,2734,989.361456761084,30.0,400,0.0,64,1.0,1.0,1.0,1.0,9650.0,0.0,0.0,0.0,0.0,0.0,17847.0,0.0,5120.0,3,0,0.0,1,1.0 +1971,2735,3392.6295697726964,60.0,111,0.0,86,0.0,0.0,1.0,1.0,1270.0,0.0,3740.0,4640.0,0.0,0.0,12914.0,0.0,0.0,3,9,7.0,1,0.0 +1972,2736,1741.8824490981176,60.0,300,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23110.0,0.0,0.0,22919.0,0.0,0.0,1,0,0.0,3,1.0 +1973,2737,2227.066762206466,55.0,120,5940.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,26364.25,0.0,20840.0,1,0,3.0,4,2.0 +1974,2740,2091.2870892266064,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40610.0,0.0,0.0,37708.75,0.0,0.0,1,4,3.0,3,0.0 +1975,2741,2514.6499769009456,48.0,300,4590.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48146.8,0.0,46160.0,1,0,0.0,4,2.0 +1976,2742,739.3554871555991,47.0,111,8580.0,85,0.0,0.0,3.0,1.6,0.0,7060.0,0.0,0.0,0.0,0.0,22100.0,0.0,0.0,3,6,4.0,2,0.0 +1977,2743,3457.4277464849647,58.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28214.5,0.0,31970.0,1,6,5.0,1,1.0 +1978,2744,1886.389283250263,59.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19184.15,0.0,20500.0,2,7,0.0,1,1.0 +1979,2745,297.2530569844213,34.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,4340.0,0.0,0.0,0.0,0.0,20884.0,0.0,0.0,3,4,3.0,2,0.0 +1980,2746,3574.459789632178,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20530.0,0.0,0.0,19524.5,0.0,0.0,1,9,7.0,1,0.0 +1981,2747,2447.5397277005513,36.0,112,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52098.15,0.0,74090.0,2,10,0.0,4,2.0 +1982,2748,1998.5215043281892,48.0,400,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,66392.85,0.0,70850.0,2,0,1.0,4,3.0 +1983,2749,1449.212573212289,50.0,111,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,59099.7,0.0,63310.0,1,9,7.0,4,2.0 +1984,2751,2428.8438921309476,68.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36230.0,0.0,0.0,35124.2,0.0,0.0,1,8,3.0,3,0.0 +1985,2755,3047.9426114833022,64.0,111,5950.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,12060.0,0.0,0.0,17089.6,0.0,0.0,1,10,8.0,3,1.0 +1986,2756,3489.1755023172905,49.0,112,0.0,65,1.0,1.0,4.0,2.3,2430.0,0.0,0.0,7910.0,0.0,0.0,46463.00031762586,0.0,39510.0,1,7,0.0,5,1.0 +1987,2760,2849.4327778864695,35.0,111,0.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28013.85,0.0,26840.0,2,9,7.0,4,2.0 +1988,2761,2923.967190124153,62.0,211,10850.0,33,3,3.0,4.0,2.5,0.0,5820.0,0.0,3340.0,755.0,0.0,51376.2,280.0,41630.0,1,1,2.0,4,3.0 +1989,2762,3058.4131321865793,45.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22580.55,0.0,23200.0,3,9,7.0,1,1.0 +1990,2763,575.1117448064022,32.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22025.85,510.0,17370.0,3,9,7.0,2,1.0 +1991,2764,1912.0187829453155,52.0,221,3930.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12327.6,1190.0,7400.0,3,1,2.0,1,1.0 +1992,2766,550.4195470447903,44.0,112,1440.0,43,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34310.4,0.0,30660.0,2,8,1.0,2,3.0 +1993,2767,2912.1148598845293,66.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28790.0,0.0,0.0,27416.4,0.0,0.0,1,0,0.0,1,0.0 +1994,2769,3903.7680280239942,30.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20579.55,0.0,21820.0,3,9,7.0,1,1.0 +1995,2772,2744.8693632894374,80.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21290.0,0.0,0.0,20152.1,0.0,0.0,1,0,0.0,1,0.0 +1996,2773,1596.809891703427,65.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24120.0,0.0,0.0,23238.6,0.0,0.0,1,0,1.0,3,0.0 +1997,2774,2257.8107099578665,45.0,111,0.0,56,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,11240.0,1410.0,3200.0,3,9,7.0,4,1.0 +1998,2775,1024.8751568850464,65.0,111,0.0,78,0.0,0.0,2.0,1.5,9700.0,0.0,0.0,14820.0,0.0,0.0,24030.3,0.0,0.0,3,8,7.0,5,0.0 +1999,2776,231.17761257514928,46.0,112,11270.0,54,3,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,30594.95,0.0,17770.0,3,8,1.0,4,3.0 +2000,2779,1920.3035286594416,34.0,111,0.0,85,1.0,0.0,7.0,3.2,0.0,9790.0,0.0,0.0,0.0,0.0,34384.0,390.0,1200.0,3,8,6.0,4,1.0 +2001,2780,2881.592354915788,45.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,97604.1,0.0,108050.0,2,10,8.0,4,2.0 +2002,2781,3171.398015526115,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59230.0,1160.0,0.0,56952.95,0.0,0.0,1,9,7.0,3,0.0 +2003,2782,3333.9892364257776,66.0,111,0.0,35,1.0,0.0,1.0,1.0,0.0,0.0,0.0,26500.0,9.0,0.0,26469.61287095857,0.0,0.0,2,10,8.0,1,1.0 +2004,2783,1819.4012872691296,63.0,120,0.0,71,0.0,0.0,1.0,1.0,9730.0,0.0,0.0,0.0,0.0,0.0,9734.0,0.0,0.0,1,0,1.0,1,0.0 +2005,2784,4001.255008441817,83.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12200.0,0.0,0.0,13580.0,0.0,0.0,3,7,6.0,1,0.0 +2006,2787,1395.8368567503353,66.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25300.0,0.0,0.0,31583.75,0.0,0.0,1,6,0.0,3,0.0 +2007,2789,2289.618940278813,46.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26531.2,0.0,29380.0,1,7,6.0,1,1.0 +2008,2790,645.5159329113782,34.0,112,3240.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45522.8,170.0,35490.0,3,6,0.0,4,2.0 +2009,2791,3476.1974944492868,58.0,111,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,27110.0,0.0,0.0,42195.8,1310.0,14470.0,3,5,4.0,2,1.0 +2010,2792,1510.7988225296647,33.0,112,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39916.35,0.0,1800.0,2,10,3.0,3,2.0 +2011,2793,3497.2338339898047,48.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49733.3,0.0,54220.0,5,10,8.0,3,2.0 +2012,2795,1146.639862830498,42.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30079.655015255288,0.0,28160.0,3,6,5.0,1,1.0 +2013,2797,2358.697409602859,48.0,111,0.0,85,0.0,0.0,1.0,1.0,11850.0,0.0,0.0,0.0,0.0,0.0,14155.0,0.0,0.0,3,7,5.0,1,0.0 +2014,2800,5113.550109848257,47.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,3430.0,0.0,0.0,0.0,0.0,10665.75,1420.0,2270.0,3,10,8.0,1,1.0 +2015,2801,575.0316877431559,52.0,211,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17983.35,0.0,18640.0,3,1,3.0,1,1.0 +2016,2802,3138.974961091932,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57760.0,0.0,0.0,54239.45,0.0,0.0,3,8,7.0,3,0.0 +2017,2803,1485.943368187311,50.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3546.0,0.0,63900.97522461854,0.0,49710.0,1,9,3.0,3,2.0 +2018,2805,1917.2244031648468,54.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,11970.0,0.0,0.0,52131.96064258869,0.0,47900.0,1,8,7.0,4,2.0 +2019,2807,428.154019441995,44.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23819.532173353466,0.0,17910.0,3,4,3.0,2,1.0 +2020,2808,1270.1152016097583,51.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62912.65,0.0,68280.0,1,6,0.0,3,2.0 +2021,2809,1718.4162345233633,58.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39696.6,0.0,43260.0,1,8,7.0,3,2.0 +2022,2810,1800.9554648587607,61.0,400,0.0,12,1.0,1.0,2.0,1.5,0.0,0.0,0.0,35070.0,931.0,0.0,40186.75,0.0,0.0,1,0,0.0,3,1.0 +2023,2812,1402.3269564942268,77.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24590.0,0.0,0.0,23666.45,0.0,0.0,1,0,1.0,3,0.0 +2024,2813,1934.749189153326,83.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32680.0,0.0,0.0,31619.2,0.0,0.0,3,0,0.0,3,0.0 +2025,2819,789.0527881278817,29.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19135.1,3650.0,9520.0,3,8,6.0,2,1.0 +2026,2822,510.35576668881686,46.0,112,0.0,56,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,15056.1,0.0,7220.0,2,8,1.0,2,1.0 +2027,2823,2540.7811580014613,42.0,300,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49597.45,0.0,49890.0,2,0,0.0,4,2.0 +2028,2824,2097.6992321846565,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20569.35,0.0,22220.0,3,8,6.0,1,0.0 +2029,2825,2961.8997413158368,43.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14018.55,0.0,14850.0,1,8,6.0,1,1.0 +2030,2827,4248.225261944202,40.0,111,480.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33410.8,0.0,32720.0,2,6,5.0,4,2.0 +2031,2828,1915.26180155919,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29680.0,0.0,0.0,24417.6,0.0,0.0,1,10,8.0,3,0.0 +2032,2829,148.6549192154286,33.0,120,0.0,81,1.0,0.0,4.0,1.9,0.0,2660.0,0.0,5580.0,0.0,0.0,20596.0,0.0,0.0,1,0,0.0,2,1.0 +2033,2831,1230.2587071118996,33.0,111,0.0,54,1.0,0.0,3.0,1.6,0.0,8270.0,0.0,0.0,0.0,0.0,16334.6,0.0,0.0,3,10,8.0,2,1.0 +2034,2833,887.0292275850976,52.0,111,0.0,53,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,33873.9,2390.0,28710.0,3,9,7.0,2,2.0 +2035,2834,4207.551609514512,83.0,211,5770.0,77,0.0,0.0,4.0,2.5,1420.0,0.0,0.0,23480.0,0.0,0.0,29754.8,0.0,0.0,1,1,3.0,4,0.0 +2036,2835,915.0964237474137,24.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43626.05,1120.0,37210.0,3,7,1.0,4,2.0 +2037,2837,1173.0910882915437,80.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15930.0,0.0,0.0,15203.7,0.0,0.0,1,1,3.0,3,0.0 +2038,2838,2194.679854822597,64.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,10760.0,0.0,0.0,18867.0,0.0,8180.0,3,9,7.0,1,1.0 +2039,2840,1879.3045556078418,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28150.0,152.0,0.0,25496.9,0.0,0.0,1,8,7.0,1,0.0 +2040,2841,2967.005315104215,38.0,112,5390.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30189.9,0.0,17400.0,5,9,3.0,4,2.0 +2041,2844,1499.5558633034414,72.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42690.0,3630.0,0.0,46914.2,0.0,0.0,1,9,2.0,3,0.0 +2042,2845,2410.2130061277753,85.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17750.0,0.0,0.0,17027.1,0.0,0.0,1,1,2.0,1,0.0 +2043,2846,3599.886889441807,70.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23480.0,0.0,0.0,21597.8,0.0,0.0,1,1,2.0,1,0.0 +2044,2847,3016.628168914683,46.0,211,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19456.75,0.0,20970.0,3,1,3.0,1,1.0 +2045,2848,2194.9011682406467,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33420.0,57.0,0.0,31955.65,0.0,0.0,3,9,7.0,3,0.0 +2046,2851,1393.2498205999852,38.0,120,0.0,62,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,50604.9,0.0,48330.0,2,0,0.0,4,2.0 +2047,2857,1831.2817954359064,58.0,111,10750.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50210.38481558737,0.0,44800.0,1,10,8.0,3,2.0 +2048,2858,3160.332092716503,38.0,300,6720.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32794.4,0.0,25430.0,2,0,0.0,4,2.0 +2049,2860,1252.6364189082112,38.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19214.0,2480.0,13470.0,3,10,8.0,2,1.0 +2050,2861,2478.216118401114,67.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20870.0,0.0,0.0,25786.158886047426,0.0,0.0,1,9,7.0,3,0.0 +2051,2863,952.9473499570663,62.0,111,0.0,81,1.0,0.0,2.0,1.3,0.0,6930.0,0.0,0.0,0.0,0.0,12776.0,0.0,0.0,3,6,4.0,2,1.0 +2052,2864,2834.22554546343,61.0,111,0.0,78,0.0,0.0,2.0,1.5,3090.0,0.0,0.0,17930.0,0.0,0.0,19803.2,0.0,0.0,1,10,8.0,3,0.0 +2053,2865,1635.9414422520917,75.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27780.0,0.0,0.0,991.45,0.0,0.0,1,8,6.0,3,0.0 +2054,2866,2240.1394904691206,66.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,35710.0,0.0,0.0,50720.5,0.0,0.0,1,8,7.0,4,1.0 +2055,2867,2191.851493745838,59.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25197.3,0.0,26900.0,1,4,0.0,3,1.0 +2056,2869,1977.6657868353227,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46290.0,0.0,0.0,41808.4,0.0,0.0,2,8,7.0,3,0.0 +2057,2870,1448.3786480903416,35.0,112,11220.0,69,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,29253.2,0.0,16290.0,3,8,1.0,4,2.0 +2058,2871,3148.6389587505946,32.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46612.95,0.0,44870.0,2,7,0.0,4,2.0 +2059,2872,3452.634676761818,49.0,111,0.0,45,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23745.8,0.0,23200.0,3,10,8.0,2,2.0 +2060,2873,1825.0085639733463,72.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,48500.0,0.0,0.0,51802.9,0.0,0.0,1,8,7.0,1,0.0 +2061,2874,1868.9337443914133,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18060.0,0.0,0.0,28887.1,0.0,0.0,1,6,5.0,3,0.0 +2062,2875,1662.2790150019948,63.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11030.0,1247.0,0.0,13645.7,0.0,0.0,1,10,8.0,1,0.0 +2063,2876,1270.818379587723,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,72400.0,0.0,0.0,63186.9,0.0,0.0,1,5,4.0,3,0.0 +2064,2877,2129.3132010041977,38.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,69210.9,0.0,76160.0,2,9,7.0,4,2.0 +2065,2878,4179.281845675326,34.0,111,7720.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23188.45,0.0,10650.0,3,9,7.0,4,2.0 +2066,2880,2152.524153190542,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24790.0,0.0,0.0,23613.9,0.0,0.0,3,9,7.0,1,0.0 +2067,2881,2350.214224225002,71.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22340.0,0.0,0.0,21588.75,0.0,0.0,1,9,2.0,1,0.0 +2068,2882,1916.1603956038077,39.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,88382.7,0.0,66290.0,2,9,7.0,4,2.0 +2069,2883,3502.589807544979,74.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19860.0,0.0,0.0,18993.15,0.0,0.0,3,0,3.0,1,0.0 +2070,2885,2527.2062694606943,70.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30800.0,377.0,0.0,30324.5,0.0,0.0,1,7,4.0,1,0.0 +2071,2886,1358.5498548837702,54.0,112,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25372.7,0.0,0.0,1,6,0.0,3,2.0 +2072,2889,1393.251527848864,50.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37344.2,0.0,38740.0,1,7,5.0,4,2.0 +2073,2890,2509.8397156924566,32.0,300,0.0,55,1.0,1.0,4.0,2.1,460.0,0.0,0.0,0.0,0.0,0.0,34431.0,0.0,29410.0,2,0,0.0,4,1.0 +2074,2891,2816.5159533889023,32.0,112,3410.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42417.35,0.0,39260.0,5,6,0.0,3,2.0 +2075,2892,1349.6287294361134,50.0,222,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46719.3,0.0,48350.0,1,1,0.0,4,2.0 +2076,2895,2134.2865722582583,47.0,112,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,68953.65,0.0,69910.0,1,7,0.0,4,2.0 +2077,2896,1881.5710019506441,74.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24500.0,0.0,0.0,22673.45,0.0,0.0,1,0,0.0,1,0.0 +2078,2899,2736.8279088465297,43.0,300,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,740.0,0.0,61967.2,0.0,43220.0,2,0,0.0,4,2.0 +2079,2900,2472.675460749143,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27920.0,2295.0,0.0,29621.4,0.0,0.0,1,8,7.0,3,0.0 +2080,2902,898.5851527488232,33.0,111,3890.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28936.15,1430.0,17230.0,3,9,7.0,4,2.0 +2081,2903,2824.941973281392,39.0,120,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,81219.7,0.0,91740.0,2,0,0.0,4,2.0 +2082,2904,1342.0667461008866,29.0,111,3480.0,54,1.0,0.0,3.0,1.6,0.0,690.0,0.0,0.0,0.0,0.0,16239.5,2290.0,40.0,3,6,5.0,2,1.0 +2083,2905,1042.0154898562514,25.0,112,5000.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34260.0,0.0,29610.0,2,8,0.0,3,2.0 +2084,2906,2162.6772181498222,64.0,111,0.0,22,1.0,0.0,1.0,1.0,0.0,0.0,0.0,58330.0,9815.0,0.0,63600.75,0.0,9630.0,1,9,7.0,1,1.0 +2085,2908,2170.5858243387825,55.0,111,0.0,52,1.0,1.0,1.0,1.0,7080.0,0.0,0.0,0.0,0.0,0.0,16664.0,0.0,8000.0,3,5,4.0,1,1.0 +2086,2909,1775.8114841528895,49.0,400,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44362.45,0.0,6010.0,2,0,0.0,3,2.0 +2087,2911,3581.9145105032894,49.0,211,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17415.25,1260.0,16370.0,3,1,3.0,1,1.0 +2088,2912,2365.1901528860453,47.0,111,0.0,85,0.0,0.0,1.0,1.0,9210.0,0.0,0.0,0.0,0.0,0.0,12570.0,0.0,0.0,3,5,4.0,1,0.0 +2089,2914,1828.9112839438103,39.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51543.15,0.0,53540.0,2,6,4.0,4,2.0 +2090,2915,1600.6576425719002,68.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37140.0,0.0,0.0,36293.75,0.0,0.0,1,0,0.0,3,0.0 +2091,2917,2468.9751576764534,51.0,300,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25938.235714285714,0.0,27330.0,1,0,1.0,1,1.0 +2092,2921,1548.9794047958287,50.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39559.0,0.0,43260.0,5,6,5.0,3,2.0 +2093,2924,2962.532176277574,48.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20706.3,0.0,22320.0,3,6,4.0,1,1.0 +2094,2927,883.7361276627267,44.0,112,0.0,47,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25877.45,1730.0,22290.0,3,9,3.0,2,1.0 +2095,2928,1736.3329006532342,36.0,221,0.0,21,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,30834.95,0.0,0.0,3,1,3.0,4,1.0 +2096,2929,1496.0305548871506,24.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,220.0,40995.25,0.0,39050.0,3,9,7.0,3,2.0 +2097,2930,1651.7873935737416,50.0,112,3490.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,37301.9,0.0,32690.0,3,9,2.0,4,2.0 +2098,2931,1862.9283926933354,53.0,112,8430.0,46,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,47583.3,0.0,24460.0,3,9,2.0,4,2.0 +2099,2933,3047.81554636836,32.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50245.65,0.0,55180.0,2,9,7.0,4,2.0 +2100,2934,906.3632465339988,85.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,12130.0,12410.0,0.0,0.0,26960.0,0.0,0.0,3,4,3.0,3,0.0 +2101,2935,1436.572651885382,73.0,112,0.0,52,2.0,0.0,2.0,1.5,0.0,0.0,0.0,27900.0,0.0,0.0,27746.7,0.0,180.0,3,8,0.0,3,2.0 +2102,2936,2031.9127071923747,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56390.0,239.0,0.0,109046.44038115104,0.0,0.0,1,9,7.0,3,0.0 +2103,2938,2985.8619232208534,45.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28993.2,0.0,31550.0,2,10,8.0,3,2.0 +2104,2939,2406.0403228214523,60.0,300,10770.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,29770.0,0.0,0.0,40118.85,0.0,870.0,1,0,0.0,3,1.0 +2105,2940,2227.929955833394,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16180.0,0.0,0.0,19052.0,0.0,0.0,1,9,7.0,3,0.0 +2106,2941,3309.5115113301317,33.0,120,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,55941.2,0.0,45910.0,2,0,0.0,4,2.0 +2107,2942,1856.5872290164173,48.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34979.75,0.0,37800.0,3,10,8.0,3,2.0 +2108,2944,1755.610540482813,83.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21810.0,0.0,0.0,21817.0,0.0,0.0,3,9,7.0,3,0.0 +2109,2948,2577.6633771128404,35.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45958.75,0.0,41600.0,2,4,0.0,4,2.0 +2110,2949,2252.0013484190836,47.0,300,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,10630.0,0.0,0.0,27691.2,0.0,17350.0,1,0,1.0,4,1.0 +2111,2950,5048.1660350226875,79.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23420.0,0.0,0.0,23154.55,0.0,0.0,1,10,8.0,1,0.0 +2112,2951,1810.355106543081,49.0,112,7290.0,13,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24516.35,0.0,0.0,1,4,0.0,4,3.0 +2113,2952,1930.4736336764909,54.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33860.54766706389,0.0,36410.0,2,8,6.0,2,1.0 +2114,2954,845.4137086364871,42.0,111,5410.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15351.6,2220.0,2410.0,3,6,5.0,2,1.0 +2115,2955,2078.042472092001,57.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17413.085450839102,0.0,22120.0,1,9,7.0,3,2.0 +2116,2956,2135.8625688075444,66.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16040.0,95.0,0.0,17110.15,0.0,0.0,1,1,2.0,1,0.0 +2117,2957,4882.98675975169,38.0,111,13770.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14189.9,0.0,0.0,3,10,8.0,1,0.0 +2118,2958,1898.9666970948078,59.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21207.2,0.0,23200.0,3,9,3.0,1,1.0 +2119,2960,1294.7864707255246,38.0,111,5950.0,62,1.0,0.0,2.0,1.3,0.0,50.0,0.0,0.0,0.0,0.0,14637.0,0.0,3950.0,3,10,8.0,2,1.0 +2120,2962,10517.32713257182,36.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32857.0,0.0,37690.0,3,8,7.0,1,1.0 +2121,2963,3231.6812113667834,25.0,111,11220.0,12,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,19401.0,71594.0,0.0,48160.0,3,6,4.0,3,2.0 +2122,2965,1989.8873520743791,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,5620.0,0.0,0.0,0.0,0.0,4777.0,0.0,0.0,1,7,5.0,1,0.0 +2123,2967,2881.2659033553464,28.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47949.95,0.0,54150.0,2,8,7.0,3,2.0 +2124,2969,1517.4130943221812,41.0,111,0.0,52,2.0,2.0,4.0,2.3,19450.0,0.0,0.0,0.0,0.0,0.0,66588.9,0.0,45420.0,3,9,7.0,5,2.0 +2125,2970,3759.956020773467,52.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21373.85,0.0,23460.0,3,10,4.0,1,1.0 +2126,2971,1414.4410447958828,55.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48027.6,0.0,53910.0,1,8,7.0,3,2.0 +2127,2972,2578.013125319351,56.0,111,390.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,488.04999999999995,230.0,0.0,3,9,7.0,1,0.0 +2128,2974,2526.0207628316443,61.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,257.0,0.0,60046.0,0.0,66690.0,3,10,8.0,2,2.0 +2129,2975,2711.52531966939,45.0,221,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,69695.0,0.0,64870.0,1,1,1.0,4,2.0 +2130,2977,3766.3211792340376,47.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,631.0,0.0,113412.45,0.0,146750.0,1,10,8.0,1,1.0 +2131,2979,2184.7798646545707,75.0,111,0.0,75,2.0,2.0,3.0,2.0,0.0,0.0,0.0,24090.0,0.0,0.0,41314.6,890.0,18300.0,5,9,7.0,2,2.0 +2132,2980,1132.3351243576299,27.0,111,5230.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16160.8,1490.0,8080.0,3,9,7.0,2,1.0 +2133,2981,2656.3111814101653,30.0,111,520.0,68,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,12434.0,40.0,0.0,4,10,8.0,2,1.0 +2134,2982,1416.0539705404715,57.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23597.8,0.0,24240.0,1,8,7.0,3,1.0 +2135,2984,1435.9769549186794,58.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14330.0,0.0,0.0,29085.8,0.0,15910.0,1,9,7.0,3,1.0 +2136,2985,3046.3759271192116,44.0,221,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,13707.75,0.0,12450.0,3,1,2.0,4,1.0 +2137,2987,2146.235257246158,63.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14110.0,0.0,0.0,13922.45,0.0,0.0,2,0,0.0,1,0.0 +2138,2988,1930.4687729009124,51.0,300,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,232.0,0.0,-0.0,0.0,250.0,1,0,0.0,1,1.0 +2139,2990,2442.022714312887,43.0,111,660.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12142.95,2730.0,8790.0,3,7,5.0,2,1.0 +2140,2992,2282.956729844824,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24720.0,0.0,0.0,23580.25,0.0,0.0,1,8,6.0,3,0.0 +2141,2995,2736.0096359663767,82.0,112,0.0,11,1.0,0.0,1.0,1.0,10960.0,0.0,0.0,8760.0,27.0,0.0,20194.0,0.0,0.0,1,8,3.0,1,1.0 +2142,2997,3380.259308338976,33.0,112,0.0,63,1.0,0.0,1.0,1.0,9700.0,0.0,0.0,0.0,0.0,0.0,12916.0,0.0,0.0,3,9,0.0,1,1.0 +2143,2999,2703.479361679627,77.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29320.0,0.0,0.0,29688.05,0.0,0.0,1,0,0.0,3,0.0 +2144,3002,2003.3207790966985,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21220.0,0.0,0.0,19688.5,0.0,0.0,1,9,7.0,1,0.0 +2145,3004,1569.8591459100314,55.0,112,3840.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28563.3,0.0,25230.0,1,8,1.0,3,2.0 +2146,3005,2719.3120186955875,54.0,111,5950.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9150.35,0.0,0.0,3,8,7.0,1,1.0 +2147,3006,1451.8956214609004,82.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13120.0,0.0,0.0,13120.0,0.0,0.0,3,7,6.0,1,0.0 +2148,3008,547.6830780200397,46.0,300,0.0,33,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34369.8,0.0,26120.0,2,0,0.0,2,1.0 +2149,3010,2322.1288707055396,59.0,111,0.0,63,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28873.25,0.0,29390.0,2,6,5.0,4,1.0 +2150,3011,2030.7680741467352,43.0,111,2860.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,35142.35,0.0,19860.0,2,9,7.0,4,2.0 +2151,3012,2210.464383146304,57.0,112,520.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28950.0,0.0,0.0,28905.2,0.0,240.0,1,8,1.0,3,0.0 +2152,3013,1786.9965685793172,52.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40440.1,0.0,43060.0,3,8,6.0,3,2.0 +2153,3014,2951.449880534335,74.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24240.0,0.0,0.0,31171.182119662233,0.0,0.0,5,8,3.0,1,0.0 +2154,3015,1931.4161009835059,54.0,111,2230.0,37,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,58816.4,0.0,92990.0,1,9,7.0,4,3.0 +2155,3016,1747.347949887261,42.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47030.95,0.0,46310.0,2,9,7.0,4,2.0 +2156,3017,1902.5814947602944,70.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22220.0,0.0,0.0,22713.7,0.0,0.0,1,10,8.0,3,0.0 +2157,3018,1723.2461916055834,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37390.0,201.0,0.0,36225.5,0.0,0.0,1,9,7.0,3,0.0 +2158,3019,1920.7727137711208,72.0,120,9660.0,75,1.0,0.0,5.0,2.8,0.0,0.0,0.0,40620.0,0.0,0.0,56621.65,0.0,6850.0,1,0,3.0,5,1.0 +2159,3020,2164.2196210324096,66.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30600.0,0.0,0.0,26512.95,0.0,0.0,5,9,1.0,3,0.0 +2160,3021,2274.9763499776745,50.0,400,0.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37800.0,0.0,37270.0,1,0,0.0,4,2.0 +2161,3022,1567.205383672936,82.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21310.0,0.0,0.0,28482.265577889448,0.0,0.0,1,0,1.0,3,0.0 +2162,3023,2707.077510852862,40.0,111,0.0,54,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,32414.8,0.0,31600.0,3,9,7.0,4,3.0 +2163,3024,2798.118550382199,33.0,111,0.0,38,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,1400.0,0.0,79845.55,0.0,64070.0,2,4,3.0,4,2.0 +2164,3026,2119.2577020687504,61.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,22760.0,0.0,0.0,37498.5,0.0,21160.0,1,6,4.0,1,1.0 +2165,3028,4136.6870705203055,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29580.0,0.0,0.0,28713.2,0.0,0.0,1,9,7.0,3,0.0 +2166,3029,2572.8107890955425,49.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,45490.75,0.0,54490.0,2,10,8.0,1,1.0 +2167,3030,5027.074052172775,56.0,111,9490.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15157.6,0.0,4030.0,3,9,7.0,1,1.0 +2168,3031,4687.009985258104,55.0,112,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30442.2,0.0,29260.0,1,7,1.0,2,1.0 +2169,3032,2706.7768272674107,44.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45877.15,0.0,43230.0,2,10,8.0,4,2.0 +2170,3033,3587.998482956253,61.0,112,0.0,23,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,15610.0,0.0,223475.66588129324,0.0,280260.0,1,10,0.0,4,3.0 +2171,3034,2619.5762426901642,91.0,111,0.0,75,0.0,0.0,3.0,2.0,9700.0,0.0,0.0,33410.0,0.0,0.0,40002.25,0.0,0.0,1,10,8.0,4,0.0 +2172,3035,2109.499505311568,91.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27940.0,0.0,0.0,27346.55,0.0,0.0,5,9,7.0,3,0.0 +2173,3037,2193.227593652088,56.0,111,0.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19901.8,0.0,21530.0,3,9,7.0,2,2.0 +2174,3038,1499.60101088962,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29450.0,0.0,0.0,26972.75,0.0,0.0,1,10,8.0,1,0.0 +2175,3041,2653.0259225909076,95.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11880.0,0.0,0.0,10257.55,0.0,0.0,1,6,0.0,1,0.0 +2176,3042,4357.248827785869,47.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12369.85,2070.0,10330.0,1,9,7.0,1,1.0 +2177,3043,1061.589962878398,52.0,111,0.0,85,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3474.0,0.0,0.0,3,6,5.0,2,0.0 +2178,3044,2432.3317881465537,36.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45328.75,0.0,43890.0,2,8,0.0,4,2.0 +2179,3045,3077.5481697452906,35.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,71685.45,0.0,81790.0,3,4,3.0,4,2.0 +2180,3046,1916.4949954959336,33.0,111,4010.0,47,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31881.7,0.0,27120.0,2,8,7.0,4,2.0 +2181,3047,2935.8847565897277,81.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27720.0,0.0,0.0,28747.2,0.0,0.0,3,1,2.0,3,0.0 +2182,3048,3965.3167674689116,50.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14370.0,0.0,0.0,37394.55,0.0,25380.0,1,7,5.0,5,1.0 +2183,3049,2067.2960316193826,54.0,120,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22577.95,0.0,25290.0,1,0,3.0,3,1.0 +2184,3050,2365.918604622224,55.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,294.0,0.0,38926.3,250.0,34960.0,1,10,8.0,2,1.0 +2185,3051,1677.9575717813202,48.0,120,0.0,47,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27426.0,0.0,28050.0,1,0,0.0,4,1.0 +2186,3052,2800.9484273605217,44.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,15450.0,0.0,0.0,41134.85,0.0,27950.0,3,8,6.0,2,1.0 +2187,3056,4766.278058953263,26.0,211,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22177.1,0.0,0.0,1,1,3.0,1,1.0 +2188,3057,2045.010195069063,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56090.0,0.0,0.0,50026.5,0.0,0.0,1,10,8.0,3,0.0 +2189,3058,1816.1780984765705,35.0,211,0.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26582.4,2800.0,20210.0,3,4,4.0,4,2.0 +2190,3059,2665.9390935548286,57.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,59047.6,0.0,72070.0,3,10,8.0,1,1.0 +2191,3061,2379.1615576154663,33.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43248.05,0.0,55840.0,3,9,7.0,3,2.0 +2192,3063,2580.6131041126155,29.0,111,1400.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49908.55,0.0,45350.0,3,6,5.0,4,2.0 +2193,3065,2356.50025233918,32.0,111,8190.0,56,1.0,0.0,2.0,1.5,0.0,0.0,1390.0,7970.0,0.0,0.0,18473.15,0.0,2260.0,3,9,7.0,2,1.0 +2194,3066,1855.939474499427,62.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12300.0,0.0,0.0,39890.5,0.0,31100.0,2,9,7.0,3,1.0 +2195,3067,1428.4960605488177,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,10,8.0,1,0.0 +2196,3068,1729.0815123838188,44.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50267.85,0.0,53990.0,2,8,6.0,4,1.0 +2197,3069,1966.362702657022,46.0,400,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,24.0,0.0,65049.75,0.0,77560.0,2,0,0.0,4,2.0 +2198,3070,936.0671620995412,46.0,111,0.0,21,1.0,1.0,5.0,2.2,0.0,0.0,0.0,0.0,0.0,0.0,14841.0,0.0,0.0,5,9,7.0,2,1.0 +2199,3071,3158.1234943445347,38.0,112,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18917.0,0.0,17500.0,3,7,1.0,2,1.0 +2200,3075,2903.365650151465,82.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20920.0,0.0,0.0,19034.25,0.0,0.0,1,9,0.0,1,0.0 +2201,3077,2237.374850002836,54.0,112,8710.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9549.7,0.0,1060.0,2,8,3.0,1,1.0 +2202,3079,1958.5265486302515,55.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32098.25,0.0,36030.0,1,8,0.0,1,1.0 +2203,3080,3179.7493120200334,50.0,111,10250.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12894.15,0.0,2000.0,3,8,7.0,1,1.0 +2204,3081,2331.9548978292414,68.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33730.0,0.0,0.0,36842.24394140514,0.0,0.0,1,7,0.0,3,0.0 +2205,3083,1431.0231050289551,57.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50557.2,0.0,56030.0,1,8,7.0,3,2.0 +2206,3084,2416.1868966886022,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10490.0,0.0,0.0,11577.0,0.0,0.0,3,6,5.0,1,0.0 +2207,3085,3068.5613435628757,35.0,221,8830.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29528.65,0.0,21850.0,3,1,1.0,3,2.0 +2208,3086,2899.087516473907,23.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21963.55,0.0,22010.0,3,9,7.0,1,1.0 +2209,3087,5850.5512821137745,76.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11050.0,0.0,0.0,25185.0,0.0,13600.0,3,9,7.0,5,1.0 +2210,3089,2647.3632218431067,50.0,111,29140.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33569.9,0.0,23790.0,3,10,8.0,3,2.0 +2211,3090,911.1168391459014,45.0,112,0.0,21,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,7868.35,0.0,0.0,2,7,0.0,2,1.0 +2212,3091,2095.659470955518,64.0,300,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17750.0,0.0,0.0,31717.95,0.0,15040.0,1,0,0.0,3,1.0 +2213,3092,2096.582079221608,53.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15060.0,0.0,0.0,31516.98799184602,0.0,14400.0,1,9,7.0,2,1.0 +2214,3095,2274.1615141113048,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22550.0,0.0,0.0,20826.5,0.0,0.0,1,6,4.0,1,0.0 +2215,3097,3295.957748326931,89.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21880.0,0.0,0.0,19912.35,0.0,0.0,1,6,4.0,1,0.0 +2216,3098,2442.7709690255906,33.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,60149.1,0.0,27730.0,1,10,8.0,4,2.0 +2217,3099,2229.1198929073876,37.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,60813.9,0.0,58680.0,2,8,6.0,4,2.0 +2218,3101,1824.7830121506158,67.0,112,0.0,33,1.0,0.0,2.0,1.5,0.0,0.0,0.0,44110.0,0.0,0.0,40545.6,0.0,0.0,1,8,0.0,3,1.0 +2219,3103,3359.278820021636,60.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41820.0,0.0,0.0,38543.1,0.0,0.0,2,6,0.0,3,0.0 +2220,3104,2512.918626074742,32.0,120,3320.0,13,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47295.7,0.0,38940.0,1,0,0.0,4,2.0 +2221,3106,1774.6253594903737,54.0,300,0.0,33,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,69534.4,0.0,76410.0,2,0,0.0,4,3.0 +2222,3107,1155.3842018877233,74.0,300,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16440.0,0.0,0.0,16115.0,0.0,0.0,1,0,1.0,1,0.0 +2223,3109,2583.385065133448,61.0,300,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15010.0,0.0,0.0,23141.5,0.0,8020.0,1,0,0.0,3,1.0 +2224,3110,1262.9155230275228,68.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37030.0,0.0,0.0,39659.39241793161,0.0,0.0,1,6,0.0,3,0.0 +2225,3111,2632.2429491280013,77.0,112,0.0,78,0.0,0.0,2.0,1.5,9700.0,0.0,0.0,19950.0,0.0,0.0,29044.0,0.0,0.0,3,9,1.0,2,0.0 +2226,3114,2110.6221953925724,35.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,61551.5,0.0,62390.0,2,10,2.0,4,2.0 +2227,3115,1250.3993111531072,38.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20383.6,0.0,20830.0,2,6,4.0,2,1.0 +2228,3116,2943.6828897949686,56.0,400,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,1490.0,9450.0,0.0,0.0,27342.65,0.0,16840.0,1,0,0.0,2,1.0 +2229,3117,592.0858075672287,63.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62810.4,0.0,0.0,3,8,7.0,3,1.0 +2230,3119,1873.0939992910244,55.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,92922.95,0.0,105350.0,1,10,2.0,3,2.0 +2231,3120,1122.0759661415304,41.0,111,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,46954.15,0.0,34940.0,3,10,8.0,2,2.0 +2232,3121,1175.5257875391844,72.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,28150.0,0.0,0.0,23717.75,0.0,0.0,1,6,5.0,1,1.0 +2233,3122,3122.942053524273,34.0,111,7150.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47091.9,0.0,34890.0,3,7,5.0,4,2.0 +2234,3124,2378.8778415301526,36.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47405.65,0.0,44880.0,2,7,5.0,4,2.0 +2235,3126,2201.336704223099,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40850.0,0.0,0.0,39442.05,0.0,0.0,1,7,5.0,3,0.0 +2236,3127,2132.0247380110777,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35630.0,0.0,0.0,33928.65,0.0,0.0,1,8,7.0,3,0.0 +2237,3128,873.751850409526,37.0,112,4000.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35863.938383192595,0.0,28610.0,3,10,4.0,4,2.0 +2238,3130,2903.5236193354126,49.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36862.25,4120.0,29120.0,3,8,6.0,2,1.0 +2239,3132,2860.6516240747774,34.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17587.5,0.0,18340.0,3,7,5.0,1,1.0 +2240,3133,1640.1139245468128,72.0,120,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21620.0,0.0,0.0,18359.05,0.0,0.0,1,0,3.0,1,0.0 +2241,3134,2210.0070758581237,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17830.0,0.0,0.0,20011.2,0.0,2460.0,3,9,7.0,1,0.0 +2242,3138,917.7502986201672,48.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,4400.0,0.0,0.0,50976.05,0.0,19150.0,1,10,8.0,2,1.0 +2243,3139,1961.422973094138,66.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37070.0,0.0,0.0,40153.4,0.0,0.0,1,9,3.0,1,0.0 +2244,3141,2005.8377634668198,61.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30080.0,138.0,0.0,24086.8,0.0,0.0,1,0,0.0,1,0.0 +2245,3142,2899.611641780053,63.0,300,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30980.0,0.0,0.0,46940.25,0.0,19780.0,1,0,0.0,3,1.0 +2246,3143,1584.1164076500938,55.0,211,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16946.15,1300.0,14440.0,3,3,3.0,1,1.0 +2247,3146,3456.7282356382884,44.0,111,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28965.45,0.0,18040.0,3,9,7.0,4,1.0 +2248,3147,1808.2139839282438,38.0,112,0.0,62,2.0,2.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,40882.5,0.0,23720.0,3,8,0.0,4,2.0 +2249,3148,4095.2133300971113,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44510.0,354.0,0.0,41070.1,0.0,0.0,1,6,4.0,3,0.0 +2250,3149,1870.1405115848675,75.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,40930.0,110.0,0.0,34507.85,0.0,0.0,1,6,0.0,1,0.0 +2251,3150,2497.367860246356,26.0,400,0.0,67,1.0,1.0,1.0,1.0,7940.0,0.0,0.0,0.0,0.0,0.0,20508.0,910.0,7420.0,3,0,1.0,1,1.0 +2252,3151,3424.6965759085006,70.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,84860.0,0.0,0.0,80672.59191596298,0.0,0.0,1,1,3.0,3,0.0 +2253,3152,634.5539013416541,46.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25281.9,0.0,24950.0,3,6,4.0,2,1.0 +2254,3155,1792.007996492474,61.0,111,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,44733.6,0.0,48520.0,3,9,7.0,4,2.0 +2255,3156,2193.668710418072,93.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27970.0,0.0,0.0,27368.75,0.0,0.0,5,9,7.0,1,0.0 +2256,3157,3498.4593768498644,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33020.0,0.0,0.0,32857.65,0.0,0.0,3,8,6.0,5,0.0 +2257,3159,2900.8340889201454,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5194.05,0.0,0.0,3,6,4.0,1,0.0 +2258,3161,2015.4896972565446,45.0,222,0.0,52,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,32423.25,4680.0,16530.0,1,1,0.0,4,2.0 +2259,3163,2456.0688146980156,47.0,111,0.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,77062.2,0.0,83710.0,2,8,7.0,4,3.0 +2260,3164,3375.5859952203373,66.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27810.0,0.0,0.0,25564.7,0.0,0.0,1,0,0.0,1,0.0 +2261,3165,947.2214531670112,39.0,111,0.0,54,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,14636.5,0.0,5850.0,5,9,7.0,4,2.0 +2262,3166,1289.2855137438678,58.0,211,0.0,68,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,149.0,0.0,51071.2,0.0,54090.0,1,3,3.0,4,3.0 +2263,3167,2331.6706993420175,63.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22590.0,0.0,0.0,31399.80254100692,0.0,8030.0,1,6,0.0,3,1.0 +2264,3168,1548.3402646925854,55.0,112,6240.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18204.7,0.0,12460.0,2,6,0.0,3,1.0 +2265,3169,3003.4447870875747,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44570.0,0.0,0.0,46684.52026642647,0.0,0.0,1,10,8.0,3,0.0 +2266,3170,1933.093456715553,56.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,87234.72913570244,0.0,76430.0,1,9,7.0,3,2.0 +2267,3171,1941.8643191332974,38.0,112,410.0,68,2.0,2.0,6.0,2.7,0.0,980.0,0.0,0.0,0.0,0.0,23230.5,5310.0,7950.0,1,8,0.0,4,2.0 +2268,3172,3351.228954802965,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,91540.0,18992.0,0.0,100903.4883831926,0.0,0.0,1,10,8.0,3,0.0 +2269,3173,6647.082925151154,29.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41158.15,0.0,44010.0,2,10,8.0,3,2.0 +2270,3174,4986.711160042483,42.0,111,4010.0,53,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,17295.1,0.0,12270.0,3,9,7.0,4,1.0 +2271,3175,1906.3391905548222,50.0,112,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49743.25,0.0,49910.0,2,8,0.0,4,2.0 +2272,3176,1517.0442308845209,44.0,111,8510.0,63,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,17447.45,0.0,0.0,3,9,7.0,2,1.0 +2273,3179,1210.271054964374,29.0,300,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47346.2,1710.0,34240.0,3,0,0.0,4,2.0 +2274,3180,1777.606738108625,32.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,58273.6,0.0,62110.0,2,8,7.0,4,2.0 +2275,3181,2458.082133122977,40.0,111,6110.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45528.85,0.0,36480.0,3,4,4.0,4,2.0 +2276,3182,1778.211708500583,64.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47630.0,0.0,0.0,44986.85,0.0,0.0,1,0,3.0,3,0.0 +2277,3183,9714.558274188035,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26660.0,0.0,0.0,23777.55,0.0,0.0,1,8,6.0,1,0.0 +2278,3184,2486.8692623705197,67.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21800.0,0.0,0.0,23089.3,0.0,0.0,5,9,0.0,1,0.0 +2279,3185,1643.7856682589256,65.0,112,0.0,22,1.0,0.0,2.0,1.5,0.0,0.0,0.0,60100.0,11442.0,0.0,81239.5,0.0,0.0,1,8,0.0,3,1.0 +2280,3187,2482.5669520333204,69.0,300,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,25300.0,0.0,0.0,46448.1,0.0,20870.0,1,0,0.0,4,1.0 +2281,3188,4336.20367096837,78.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13150.0,0.0,0.0,13493.0,0.0,0.0,3,8,1.0,1,0.0 +2282,3194,5119.023091105785,60.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21563.6,0.0,21270.0,1,7,0.0,3,2.0 +2283,3196,2961.096325352915,84.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21310.0,0.0,0.0,21489.0,0.0,0.0,1,9,0.0,3,0.0 +2284,3198,1472.2212567683061,40.0,111,0.0,68,1.0,1.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,35782.4,0.0,17690.0,3,9,7.0,4,1.0 +2285,3199,1672.6179993521687,56.0,111,24950.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51904.75,0.0,31700.0,2,8,6.0,3,2.0 +2286,3200,2256.8988469128267,80.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21030.0,0.0,0.0,21030.0,0.0,0.0,1,0,3.0,3,0.0 +2287,3201,2040.5215315838848,61.0,300,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22080.0,0.0,0.0,85132.45,0.0,0.0,1,0,0.0,3,1.0 +2288,3204,3272.714343617725,59.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,209.0,0.0,18154.7,0.0,18880.0,3,9,7.0,1,1.0 +2289,3205,2312.682278870527,37.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,349.0,0.0,78853.9,0.0,75590.0,1,9,7.0,4,2.0 +2290,3209,2975.316726056538,62.0,300,19910.0,21,2.0,1.0,3.0,1.8,0.0,0.0,0.0,9030.0,0.0,0.0,30659.6,0.0,0.0,3,0,0.0,4,2.0 +2291,3210,1252.3186581357127,55.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44117.3,0.0,48670.0,2,7,5.0,3,2.0 +2292,3212,2509.298280708664,40.0,300,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,72586.75,0.0,28710.0,2,0,0.0,4,2.0 +2293,3214,2594.287498970431,61.0,111,0.0,78,1.0,1.0,3.0,1.8,0.0,0.0,0.0,19010.0,0.0,0.0,21888.4,0.0,2260.0,3,8,7.0,4,1.0 +2294,3215,1877.0838554640688,38.0,112,7890.0,56,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21074.5,1370.0,0.0,3,7,0.0,2,1.0 +2295,3216,1759.365113519359,60.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69960.0,0.0,0.0,61930.4,0.0,0.0,2,0,0.0,3,0.0 +2296,3218,1969.3988039859482,56.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39135.8,0.0,38530.0,2,7,5.0,4,2.0 +2297,3219,2547.847341542301,70.0,112,0.0,75,1.0,1.0,3.0,2.0,6170.0,0.0,0.0,37340.0,0.0,0.0,58606.85,0.0,14770.0,1,7,0.0,4,1.0 +2298,3220,2935.5537287601933,28.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17217.6,0.0,18080.0,3,9,7.0,1,1.0 +2299,3225,1524.8506146064465,72.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24080.0,0.0,0.0,23939.15,0.0,0.0,1,0,0.0,3,0.0 +2300,3226,1109.369934033707,51.0,111,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30490.3,0.0,27640.0,2,9,7.0,2,1.0 +2301,3227,2461.262916911081,51.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42902.2,0.0,44330.0,1,9,0.0,4,2.0 +2302,3229,1430.203026696667,59.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,11670.0,0.0,0.0,41207.55,0.0,33740.0,1,8,7.0,3,2.0 +2303,3230,867.2532793633239,39.0,111,0.0,68,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18231.8,2020.0,13230.0,3,8,6.0,2,1.0 +2304,3231,2350.425438241067,86.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53250.0,34064.0,0.0,91806.66215627552,0.0,0.0,1,0,0.0,3,0.0 +2305,3232,2225.9153469704715,49.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35105.45,0.0,35040.0,1,8,7.0,3,2.0 +2306,3233,1732.8573376190702,55.0,300,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25883.6,0.0,26180.0,1,0,0.0,3,2.0 +2307,3234,1060.220673643314,52.0,111,120.0,22,2.0,0.0,4.0,2.5,0.0,7630.0,0.0,0.0,0.0,0.0,12664.4,150.0,0.0,2,10,8.0,2,2.0 +2308,3235,1408.0191686383637,41.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16270.55,3750.0,5800.0,3,10,8.0,2,1.0 +2309,3236,2089.027624004683,50.0,211,1570.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10260.0,2740.0,3550.0,3,3,4.0,1,1.0 +2310,3237,2227.052229202333,63.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,29510.0,0.0,0.0,53470.40079757941,0.0,22360.0,1,4,4.0,3,1.0 +2311,3238,2742.939694108072,60.0,111,7940.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,3440.0,15.0,0.0,101910.4,0.0,32440.0,1,6,4.0,3,2.0 +2312,3239,1572.6332040496436,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22493.5,0.0,24650.0,3,9,7.0,1,1.0 +2313,3241,1713.209462583719,40.0,111,640.0,53,2.0,2.0,10.0,4.1,0.0,0.0,0.0,8300.0,0.0,31773.0,84153.0,0.0,19140.0,3,8,7.0,4,2.0 +2314,3242,1138.7398104871663,24.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12576.0,0.0,0.0,3,8,6.0,5,0.0 +2315,3243,544.2474044970246,53.0,300,0.0,64,1.0,1.0,5.0,2.8,0.0,4190.0,0.0,0.0,0.0,0.0,46680.3,550.0,28930.0,3,0,0.0,4,1.0 +2316,3244,2268.371182869842,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17760.0,27.0,0.0,16751.6,0.0,0.0,1,9,7.0,1,0.0 +2317,3245,5448.057440144278,34.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42960.0,0.0,42760.0,3,10,8.0,4,2.0 +2318,3246,1312.0853662998447,49.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31129.2,0.0,31220.0,3,10,8.0,2,1.0 +2319,3248,1702.3558841181296,52.0,112,12320.0,62,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45352.0,0.0,33590.0,2,9,0.0,4,2.0 +2320,3249,1934.340409802279,60.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24260.0,0.0,0.0,61529.00706554077,0.0,30160.0,1,7,0.0,3,1.0 +2321,3250,2024.3257080848539,54.0,400,4350.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15120.0,0.0,0.0,24916.65,0.0,6330.0,1,0,0.0,3,1.0 +2322,3252,2981.095138505332,85.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15830.0,0.0,0.0,15722.9,0.0,0.0,3,5,4.0,1,0.0 +2323,3253,2094.730606109286,76.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11890.0,0.0,0.0,11762.15,0.0,0.0,1,0,0.0,1,0.0 +2324,3254,2644.38889577808,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19860.0,0.0,0.0,17763.509570952916,0.0,0.0,1,9,7.0,1,0.0 +2325,3255,3377.702695330551,40.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24906.25,0.0,27530.0,3,8,6.0,1,1.0 +2326,3259,3604.662189644256,55.0,111,1850.0,52,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56368.25,0.0,60070.0,3,10,8.0,4,3.0 +2327,3261,3215.319607974577,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32700.0,1480.0,0.0,34391.35979630075,0.0,0.0,1,8,7.0,1,0.0 +2328,3266,2645.593212728664,31.0,120,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,18.0,0.0,42141.0,0.0,34550.0,2,0,3.0,4,2.0 +2329,3267,2198.1418964783907,37.0,400,15540.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18242.15,0.0,400.0,1,0,0.0,1,1.0 +2330,3269,1733.0866874806052,51.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12600.0,0.0,0.0,28214.0,0.0,17070.0,1,6,4.0,3,1.0 +2331,3270,4545.395635287175,29.0,111,0.0,62,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8726.55,0.0,0.0,3,8,7.0,1,1.0 +2332,3271,1960.6512090546496,74.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22380.0,0.0,0.0,21445.95,0.0,0.0,1,0,0.0,3,0.0 +2333,3272,879.9628110457141,39.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30635.65,0.0,8430.0,3,9,7.0,2,1.0 +2334,3273,3276.9277278422933,71.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25910.0,0.0,0.0,31774.6,0.0,0.0,1,9,1.0,3,0.0 +2335,3274,2571.422636476416,42.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,148.0,0.0,65874.5,0.0,72850.0,1,10,4.0,4,2.0 +2336,3275,2278.353582718644,46.0,112,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18537.15,0.0,19310.0,2,10,2.0,2,1.0 +2337,3277,2016.8105526295992,46.0,300,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,21.0,0.0,55943.9,0.0,51020.0,2,0,1.0,4,2.0 +2338,3279,1725.132237278576,38.0,111,0.0,22,1.0,0.0,2.0,1.3,0.0,7170.0,0.0,0.0,0.0,0.0,11387.0,0.0,0.0,3,9,7.0,2,1.0 +2339,3280,764.6901709692318,44.0,112,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24040.5,1600.0,21100.0,3,9,1.0,2,1.0 +2340,3282,3308.6550568802973,85.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17460.0,0.0,0.0,17068.2,0.0,0.0,1,0,0.0,1,0.0 +2341,3283,3719.81719962516,23.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18468.0,2280.0,12240.0,3,9,7.0,3,1.0 +2342,3284,4753.0704867110335,23.0,111,9180.0,56,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23665.4,0.0,12460.0,3,10,8.0,4,2.0 +2343,3285,1538.561096000863,38.0,300,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,25589.2,1680.0,16400.0,3,0,1.0,4,1.0 +2344,3286,2416.884485255528,60.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21710.0,2514.0,0.0,24906.2,0.0,0.0,1,7,5.0,1,0.0 +2345,3287,3901.6788033813605,58.0,300,2200.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,16175.35,0.0,14160.0,1,0,0.0,5,1.0 +2346,3288,2041.5669034797136,36.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35995.8,140.0,36480.0,3,4,4.0,3,2.0 +2347,3289,3963.759332888545,62.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22210.0,0.0,0.0,14438.252622517059,0.0,0.0,1,9,7.0,1,0.0 +2348,3290,4643.83923024925,42.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1297.0,0.0,24916.2,0.0,23570.0,3,10,4.0,1,1.0 +2349,3292,3685.385037398855,34.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47485.1,0.0,47240.0,2,9,3.0,4,2.0 +2350,3293,1868.8499996510934,47.0,111,12540.0,62,3,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37993.85,0.0,19120.0,3,7,5.0,4,3.0 +2351,3294,780.5555211223118,35.0,111,0.0,33,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25034.1,0.0,21740.0,3,6,4.0,2,1.0 +2352,3295,2009.9324117254168,32.0,300,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49226.5,0.0,49020.0,2,0,0.0,4,2.0 +2353,3297,3138.1073613595604,75.0,111,10210.0,74,1.0,1.0,3.0,2.0,9650.0,0.0,0.0,29810.0,0.0,0.0,53042.2,0.0,4640.0,3,10,8.0,4,1.0 +2354,3299,3103.3581673490103,72.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24020.0,10.0,0.0,23711.5,0.0,130.0,1,0,0.0,3,0.0 +2355,3300,809.5919331053628,42.0,111,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31251.9,0.0,33200.0,3,9,7.0,2,1.0 +2356,3304,1597.658241738016,53.0,221,0.0,46,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,56753.55,0.0,57080.0,1,1,2.0,4,2.0 +2357,3305,4276.12410944127,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8240.0,0.0,0.0,10400.0,0.0,0.0,3,8,7.0,1,0.0 +2358,3306,3419.6329151665423,62.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11050.0,0.0,0.0,10728.9,0.0,0.0,1,0,0.0,1,0.0 +2359,3307,775.6151826132086,34.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22891.65,2210.0,17470.0,3,7,6.0,2,1.0 +2360,3310,2979.9457130473,49.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40494.75,0.0,40440.0,2,9,7.0,4,2.0 +2361,3311,1692.715311294818,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33850.0,0.0,0.0,34975.8,0.0,2700.0,1,6,4.0,3,0.0 +2362,3313,2703.4094524123325,27.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53911.9,0.0,52620.0,2,7,1.0,4,2.0 +2363,3314,1496.3213987079673,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30170.0,0.0,0.0,29578.75,0.0,0.0,1,6,1.0,3,0.0 +2364,3315,1773.9977504526119,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56380.0,98.0,0.0,52945.65,0.0,0.0,3,7,5.0,3,0.0 +2365,3316,1719.8415383923225,40.0,112,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,49410.75,0.0,49860.0,2,6,1.0,4,2.0 +2366,3318,2717.9052693941785,39.0,221,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,75158.9,0.0,80880.0,2,1,3.0,4,2.0 +2367,3320,2668.4110211204893,47.0,111,10520.0,63,1.0,0.0,4.0,2.1,0.0,5760.0,0.0,0.0,0.0,0.0,24147.6,0.0,210.0,3,8,7.0,4,1.0 +2368,3321,2642.6506674996995,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22600.0,0.0,0.0,21919.9,0.0,0.0,3,8,7.0,1,0.0 +2369,3322,2074.4155660318856,45.0,112,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,59462.015599007456,0.0,62890.0,1,8,3.0,4,2.0 +2370,3323,2690.3735241812597,55.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38490.65300790376,0.0,46660.0,2,9,7.0,1,1.0 +2371,3325,2210.9266961213625,85.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,74620.0,2680.0,0.0,72977.30934117408,0.0,0.0,1,8,6.0,3,0.0 +2372,3326,1728.001558265906,50.0,111,0.0,43,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,660.0,0.0,69373.87249680335,0.0,42670.0,1,9,7.0,4,3.0 +2373,3328,676.4275896690929,37.0,111,1150.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37307.45,0.0,38050.0,3,9,7.0,3,2.0 +2374,3330,1453.2919734433074,40.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20533.5,830.0,14190.0,3,6,5.0,2,1.0 +2375,3331,5195.663940348881,28.0,111,0.0,84,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12516.0,0.0,0.0,3,8,6.0,1,0.0 +2376,3333,1860.8048288258806,50.0,111,5510.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5300.7,0.0,0.0,3,8,7.0,1,0.0 +2377,3334,313.55876066880916,57.0,120,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,28280.0,0.0,0.0,44300.05,220.0,16640.0,1,0,0.0,4,1.0 +2378,3335,2463.448330497613,55.0,112,0.0,13,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,16.0,0.0,44293.8,0.0,34410.0,1,7,0.0,4,3.0 +2379,3336,1631.63087207625,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44800.0,0.0,0.0,32539.25,0.0,0.0,1,9,1.0,3,0.0 +2380,3337,2655.5512288619957,36.0,111,0.0,67,2.0,2.0,6.0,2.9,0.0,5380.0,0.0,0.0,0.0,0.0,41776.0,540.0,28290.0,3,8,6.0,5,2.0 +2381,3338,1909.1427239202762,45.0,112,0.0,56,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37899.75,0.0,38420.0,2,4,0.0,4,3.0 +2382,3339,3551.310460741222,55.0,112,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21690.0,0.0,0.0,38688.1,0.0,19440.0,1,9,0.0,2,1.0 +2383,3340,2420.62102436074,63.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16790.0,0.0,0.0,16576.15,0.0,0.0,3,8,1.0,1,0.0 +2384,3341,2166.3962078025747,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56440.0,0.0,0.0,51959.7,0.0,730.0,1,8,7.0,3,0.0 +2385,3342,2449.1211108420807,62.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,13874.0,0.0,15924.5,0.0,3670.0,1,9,0.0,1,1.0 +2386,3345,7344.550342215203,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15590.0,0.0,0.0,15597.0,0.0,0.0,3,8,7.0,3,0.0 +2387,3346,2205.235026556326,45.0,300,0.0,62,3,3.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,29656.95,2280.0,27470.0,5,0,0.0,4,3.0 +2388,3347,1859.1718712335216,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24900.0,0.0,0.0,23439.35,0.0,0.0,1,7,5.0,1,0.0 +2389,3348,3280.8851469492233,44.0,112,940.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,5810.0,0.0,0.0,26218.15,0.0,12600.0,3,6,2.0,4,1.0 +2390,3349,2198.3053201554294,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24900.0,0.0,0.0,27898.25,0.0,0.0,1,9,7.0,1,0.0 +2391,3350,2276.2855495109634,39.0,111,4620.0,46,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,54993.45,0.0,47120.0,2,4,4.0,4,2.0 +2392,3352,2353.9210086356793,87.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10340.0,0.0,0.0,12015.5,0.0,0.0,1,0,0.0,1,0.0 +2393,3354,1575.7992348031964,31.0,112,1850.0,52,1.0,1.0,2.0,1.3,0.0,190.0,0.0,0.0,0.0,0.0,17147.0,1960.0,6320.0,3,10,4.0,2,1.0 +2394,3355,2711.8537960386093,39.0,111,0.0,33,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,91256.2,0.0,98220.0,1,10,8.0,2,1.0 +2395,3358,2931.9979778591414,60.0,221,6460.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,20270.0,0.0,0.0,41203.55,0.0,8270.0,1,1,1.0,3,1.0 +2396,3359,2133.5123443270077,59.0,112,0.0,75,0.0,0.0,2.0,1.5,9720.0,0.0,0.0,0.0,0.0,0.0,9330.9,0.0,0.0,1,10,3.0,3,0.0 +2397,3362,2089.378560660762,59.0,111,3180.0,64,3,3.0,4.0,2.5,0.0,5820.0,0.0,0.0,0.0,0.0,57703.55,0.0,36430.0,1,9,7.0,4,3.0 +2398,3363,3376.2675509500214,34.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36060.1,0.0,38770.0,3,9,7.0,4,2.0 +2399,3364,2081.6275040765645,56.0,211,0.0,78,0.0,0.0,2.0,1.5,10980.0,0.0,0.0,0.0,0.0,0.0,10737.55,0.0,0.0,1,1,2.0,3,0.0 +2400,3365,2467.7854812608407,26.0,111,150.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21350.5,2430.0,12840.0,3,6,4.0,2,1.0 +2401,3366,2152.5237841992516,69.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33920.0,0.0,0.0,31923.75,0.0,0.0,1,0,0.0,3,0.0 +2402,3367,1790.8574840261572,55.0,120,0.0,46,3,3.0,4.0,2.5,10980.0,0.0,0.0,0.0,0.0,0.0,71678.1,0.0,66230.0,2,0,3.0,4,3.0 +2403,3368,3401.7984341612296,50.0,120,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,70850.2,0.0,79750.0,1,0,0.0,4,2.0 +2404,3369,2080.352694285814,60.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,82342.15,0.0,21130.0,1,8,0.0,3,2.0 +2405,3370,2712.613958622322,47.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21851.0,0.0,21970.0,3,8,7.0,1,1.0 +2406,3371,1611.3716505882471,52.0,111,0.0,48,2.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,21678.05,0.0,23060.0,2,8,7.0,4,2.0 +2407,3373,2040.4882238290784,82.0,221,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10850.0,0.0,0.0,11954.0,0.0,0.0,3,1,2.0,1,0.0 +2408,3374,2957.98882084333,81.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26550.0,683.0,0.0,25294.7,0.0,0.0,1,10,8.0,1,0.0 +2409,3375,1828.1349133973356,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36110.0,0.0,0.0,30087.7,0.0,0.0,1,8,6.0,1,0.0 +2410,3376,2830.5520453933814,76.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10150.0,72.0,0.0,10836.0,0.0,0.0,5,0,1.0,1,0.0 +2411,3377,2162.9008526554185,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27810.0,0.0,0.0,26965.45,0.0,0.0,1,7,5.0,3,0.0 +2412,3378,5179.777333257805,59.0,400,0.0,78,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12300.0,0.0,0.0,3,0,1.0,1,0.0 +2413,3379,827.4702910700136,48.0,211,0.0,85,1.0,0.0,4.0,2.3,9720.0,10050.0,0.0,0.0,0.0,0.0,27162.0,90.0,800.0,3,3,3.0,2,1.0 +2414,3381,2622.9012872826875,48.0,120,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20631.6,0.0,23260.0,2,0,0.0,1,1.0 +2415,3382,2358.616159586842,33.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34093.45,0.0,37950.0,2,8,6.0,4,2.0 +2416,3383,3056.8416893025883,32.0,120,22450.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,86582.1,0.0,53160.0,1,0,0.0,4,2.0 +2417,3384,524.3155914607565,35.0,211,0.0,67,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,19127.0,380.0,10130.0,3,4,4.0,2,1.0 +2418,3385,7171.780545854705,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19490.0,0.0,0.0,19379.5,0.0,0.0,1,9,7.0,1,0.0 +2419,3386,1435.044746142176,28.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22402.0,0.0,12520.0,3,10,8.0,2,1.0 +2420,3389,2827.4182361735143,60.0,120,1150.0,78,0.0,0.0,1.0,1.0,7260.0,0.0,0.0,0.0,0.0,0.0,13500.0,2760.0,3110.0,1,0,0.0,1,0.0 +2421,3390,2895.171158732676,84.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25260.0,0.0,0.0,23784.7,0.0,0.0,1,6,2.0,1,0.0 +2422,3391,1708.1015382015632,76.0,111,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,44010.0,0.0,0.0,42546.6,0.0,0.0,1,10,8.0,3,1.0 +2423,3394,2488.199562009192,56.0,112,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16664.65,0.0,17240.0,1,9,1.0,3,1.0 +2424,3395,2365.279843355941,44.0,120,0.0,85,0.0,0.0,2.0,1.3,0.0,7170.0,0.0,0.0,0.0,0.0,8870.0,0.0,0.0,4,0,3.0,2,0.0 +2425,3396,1800.0545496819923,42.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49943.8,900.0,50340.0,3,9,7.0,4,2.0 +2426,3397,374.3263885528259,38.0,111,0.0,42,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30729.0,0.0,27670.0,2,7,6.0,2,1.0 +2427,3398,2588.9167410660652,46.0,111,5950.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8975.2,0.0,0.0,3,7,5.0,1,1.0 +2428,3399,2065.0971720920143,60.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21265.95,0.0,21560.0,3,5,4.0,1,1.0 +2429,3400,862.4743466681522,49.0,111,4680.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20918.75,0.0,9550.0,3,9,7.0,2,1.0 +2430,3401,2327.4123198243306,54.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13646.25,0.0,13890.0,3,7,5.0,1,1.0 +2431,3402,1635.7495545635497,57.0,112,7450.0,38,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52927.8,0.0,48640.0,1,10,1.0,4,3.0 +2432,3404,3462.8700455742805,31.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25606.5,0.0,24430.0,3,9,7.0,3,2.0 +2433,3405,2206.1824983222477,42.0,112,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48267.15,0.0,50250.0,1,8,0.0,4,2.0 +2434,3407,3485.637050739347,79.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42400.0,0.0,0.0,39709.15,0.0,0.0,1,10,8.0,3,0.0 +2435,3408,2258.8108321619297,70.0,112,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13510.0,170.0,0.0,29439.9,0.0,0.0,1,6,0.0,3,1.0 +2436,3409,1044.0740877877838,28.0,400,13410.0,68,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52535.0,0.0,32110.0,3,0,1.0,4,2.0 +2437,3410,2009.0568719052324,55.0,400,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,15152.8,2360.0,0.0,1,0,0.0,4,2.0 +2438,3412,3031.1266068450245,55.0,111,0.0,23,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,791.0,0.0,22632.1,0.0,23170.0,1,10,8.0,1,1.0 +2439,3413,1610.5848590159985,32.0,111,0.0,62,1.0,0.0,5.0,2.4,0.0,8620.0,0.0,0.0,0.0,0.0,18576.1,320.0,0.0,3,9,7.0,4,1.0 +2440,3414,2868.4552069580113,37.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,75.0,0.0,54320.904295473105,0.0,52780.0,1,9,0.0,4,2.0 +2441,3415,1626.8974232099524,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64200.0,7986.0,0.0,63025.90353277039,0.0,0.0,1,9,7.0,3,0.0 +2442,3416,757.2211875227398,35.0,111,0.0,55,1.0,1.0,3.0,2.0,0.0,260.0,0.0,0.0,0.0,0.0,21622.95,2440.0,8070.0,3,9,7.0,2,1.0 +2443,3417,1943.291317097717,68.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25110.0,0.0,0.0,24128.0,0.0,0.0,1,6,0.0,3,0.0 +2444,3418,1887.0284608662514,60.0,111,14380.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9511.15,0.0,0.0,1,10,8.0,1,0.0 +2445,3421,2504.0544196725277,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21480.0,0.0,0.0,20453.55,0.0,0.0,1,8,6.0,1,0.0 +2446,3422,1281.1761492590788,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21130.0,0.0,0.0,19488.0,0.0,0.0,1,7,6.0,1,0.0 +2447,3423,3355.4615620843338,82.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10530.0,0.0,0.0,12534.0,0.0,0.0,3,1,2.0,1,0.0 +2448,3424,2161.2948069524828,79.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31210.0,0.0,0.0,28992.0,0.0,0.0,1,0,0.0,1,0.0 +2449,3426,1929.7576181237646,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69640.0,159.0,0.0,61120.67289559306,0.0,0.0,1,9,7.0,3,0.0 +2450,3427,1675.4805909872393,50.0,300,0.0,69,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53540.05,0.0,57300.0,1,0,0.0,4,2.0 +2451,3429,2188.512803925541,51.0,112,0.0,64,3,3.0,4.0,2.5,430.0,0.0,0.0,0.0,0.0,0.0,39681.05,0.0,58000.0,1,8,0.0,4,3.0 +2452,3431,1702.3175203920973,66.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15290.0,0.0,0.0,16562.0,0.0,0.0,3,0,0.0,1,0.0 +2453,3432,2944.5183319618413,34.0,221,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58084.1,0.0,49020.0,2,1,1.0,4,2.0 +2454,3433,3361.6123632033878,36.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21407.85,0.0,22400.0,3,8,7.0,2,1.0 +2455,3434,1844.5635563010726,61.0,111,5050.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21860.0,0.0,25.0,32907.4,0.0,8930.0,1,7,5.0,3,1.0 +2456,3440,501.3072572572258,29.0,300,290.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19741.05,0.0,17950.0,1,0,0.0,4,2.0 +2457,3441,665.7868841620923,49.0,111,0.0,54,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,1461.0,0.0,39304.75,0.0,21530.0,1,10,8.0,2,1.0 +2458,3442,2269.3971904216846,44.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,98656.45,0.0,113680.0,1,10,8.0,4,2.0 +2459,3443,2126.22489894639,86.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33730.0,603.0,0.0,33109.37280743339,0.0,0.0,5,6,4.0,1,0.0 +2460,3444,2146.5665248080245,66.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27660.0,0.0,0.0,188.89999999999986,0.0,0.0,5,0,0.0,1,0.0 +2461,3445,707.5893546566577,46.0,111,0.0,45,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,4.0,0.0,32882.0,0.0,17550.0,3,10,8.0,2,1.0 +2462,3446,2297.102102136688,59.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19910.0,0.0,0.0,19824.05,0.0,350.0,1,9,7.0,3,0.0 +2463,3447,653.2600043879527,45.0,112,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,640.0,0.0,46561.5,0.0,32740.0,2,10,4.0,2,1.0 +2464,3449,6608.7839198687025,30.0,111,8720.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11001.65,0.0,20.0,3,9,7.0,1,1.0 +2465,3451,1459.7133491903653,54.0,112,18410.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,601.0,0.0,52300.0282775775,0.0,24840.0,1,8,0.0,4,2.0 +2466,3454,1747.867944170862,66.0,221,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30140.0,0.0,0.0,29205.8,0.0,100.0,1,1,3.0,3,0.0 +2467,3457,3122.9824497846826,35.0,120,6310.0,69,2.0,1.0,2.0,1.5,0.0,6170.0,0.0,0.0,0.0,0.0,25768.9,0.0,14360.0,3,0,0.0,3,2.0 +2468,3458,2475.502666762156,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18150.0,0.0,0.0,18420.75,0.0,0.0,3,8,6.0,1,0.0 +2469,3459,2838.3186201527674,27.0,300,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51880.4,0.0,42840.0,2,0,0.0,4,2.0 +2470,3460,3427.046235365418,28.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55662.15,0.0,62350.0,3,10,8.0,3,2.0 +2471,3461,933.7226201237187,35.0,300,0.0,43,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30967.5,0.0,20570.0,3,0,0.0,4,1.0 +2472,3462,1544.225578788585,66.0,120,0.0,77,0.0,0.0,2.0,1.5,140.0,5730.0,0.0,16070.0,0.0,0.0,25896.0,0.0,0.0,3,0,3.0,3,0.0 +2473,3464,1570.1302942548284,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29910.0,0.0,0.0,27106.25,0.0,0.0,1,9,7.0,1,0.0 +2474,3465,2694.7785984673133,48.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22930.55,0.0,24910.0,3,10,8.0,1,1.0 +2475,3466,2623.5309660952626,60.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19360.0,0.0,0.0,17504.25,0.0,0.0,1,10,8.0,3,0.0 +2476,3468,1505.1048825909033,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52380.0,0.0,0.0,53882.65,0.0,0.0,1,7,5.0,3,0.0 +2477,3469,2250.479460953019,84.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18680.0,0.0,0.0,18107.25,0.0,0.0,5,9,7.0,1,0.0 +2478,3470,2883.4783754834984,82.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19020.0,0.0,0.0,18722.0,0.0,0.0,5,0,0.0,1,0.0 +2479,3471,3177.715951679025,53.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27708.78029915558,0.0,31330.0,3,10,8.0,1,1.0 +2480,3472,2947.455449410001,56.0,111,9870.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,13580.0,0.0,0.0,23312.35,0.0,0.0,1,9,7.0,3,1.0 +2481,3473,2137.429784359344,60.0,300,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,73910.65,0.0,10.0,1,0,0.0,3,2.0 +2482,3478,2636.6551446139583,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6300.0,0.0,0.0,3,9,7.0,1,0.0 +2483,3479,2321.6501489937664,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,590.0,0.0,18120.0,0.0,0.0,18951.0,0.0,0.0,3,6,4.0,3,0.0 +2484,3480,2653.7277042266637,43.0,112,4970.0,53,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,51568.15,0.0,38790.0,2,3,0.0,4,1.0 +2485,3481,2157.334224027768,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37770.0,0.0,0.0,35788.5,0.0,0.0,1,9,7.0,3,0.0 +2486,3483,1726.3725262875862,37.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47342.4,0.0,38370.0,2,8,7.0,4,2.0 +2487,3485,2680.286773429804,37.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,138245.95,0.0,54140.0,2,9,7.0,4,2.0 +2488,3486,2453.246473808563,53.0,221,2370.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53244.7,0.0,48080.0,2,1,2.0,4,3.0 +2489,3488,3108.464508356501,32.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33134.379909860865,0.0,38090.0,1,10,8.0,1,1.0 +2490,3490,1590.2200153507888,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24290.0,0.0,0.0,21166.07050285483,0.0,0.0,1,9,7.0,1,0.0 +2491,3492,1709.451935225129,65.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30280.0,0.0,0.0,30411.25,0.0,0.0,2,1,2.0,3,0.0 +2492,3493,2309.612367025271,39.0,221,8580.0,85,0.0,0.0,2.0,1.3,0.0,9810.0,0.0,0.0,0.0,0.0,18828.0,0.0,0.0,3,1,2.0,2,0.0 +2493,3494,2066.8728685930982,48.0,112,0.0,53,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39469.05,0.0,40230.0,2,8,1.0,4,1.0 +2494,3495,2363.5364060836946,46.0,111,0.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21143.0,0.0,21140.0,5,6,4.0,2,2.0 +2495,3497,3895.9292141906685,32.0,111,2120.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26604.1,0.0,22960.0,3,8,6.0,3,2.0 +2496,3498,1916.8906180742326,53.0,111,0.0,34,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,53162.15,0.0,51840.0,2,8,7.0,4,2.0 +2497,3499,1899.5220035485343,71.0,112,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,52830.0,0.0,0.0,57778.55,0.0,11670.0,1,9,2.0,3,1.0 +2498,3500,2483.5148666299947,27.0,111,10560.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10283.5,0.0,0.0,2,6,4.0,1,1.0 +2499,3501,2892.2830541940903,91.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15160.0,0.0,0.0,15178.45,0.0,0.0,1,0,0.0,1,0.0 +2500,3502,478.5269490799923,32.0,112,0.0,56,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,23435.05,0.0,10970.0,3,9,2.0,2,1.0 +2501,3504,664.0475415183507,50.0,112,0.0,56,2.0,1.0,5.0,2.6,0.0,10750.0,0.0,0.0,0.0,0.0,38551.8,2580.0,21580.0,3,10,5.0,2,2.0 +2502,3505,2036.566012917539,37.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35186.65,0.0,0.0,2,4,3.0,1,1.0 +2503,3506,2328.7031439358116,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32730.0,0.0,0.0,30656.6,0.0,0.0,1,8,7.0,1,0.0 +2504,3507,1602.436279858804,53.0,112,0.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28630.8,1250.0,27860.0,2,10,0.0,4,2.0 +2505,3508,1782.6574343478349,43.0,221,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46123.45,0.0,47390.0,2,1,2.0,4,2.0 +2506,3509,1819.0083201042278,70.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45220.0,0.0,0.0,44994.2,0.0,0.0,1,7,0.0,3,0.0 +2507,3510,2125.3065545529353,82.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16010.0,0.0,0.0,16010.0,0.0,0.0,3,6,5.0,1,0.0 +2508,3511,4764.291872104108,25.0,111,6690.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10186.45,0.0,2750.0,3,9,7.0,1,0.0 +2509,3512,2827.134828413974,63.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,9492.0,0.0,0.0,3,2,3.0,1,0.0 +2510,3513,1068.711654366532,35.0,211,3260.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21415.1,1340.0,15250.0,1,1,3.0,2,1.0 +2511,3514,2201.0854174248857,39.0,211,0.0,85,0.0,0.0,5.0,2.4,9700.0,0.0,0.0,0.0,0.0,0.0,28534.0,0.0,6870.0,3,1,2.0,4,0.0 +2512,3515,1474.5939526381528,69.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20610.0,0.0,0.0,25894.05,0.0,2690.0,1,0,0.0,3,0.0 +2513,3517,2258.6586324231316,55.0,112,9210.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,55500.0,0.0,0.0,70811.9,0.0,9960.0,2,7,0.0,3,1.0 +2514,3518,2106.7026720947674,46.0,300,1400.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38986.7,0.0,36340.0,2,0,0.0,4,2.0 +2515,3519,2594.465029739431,65.0,400,740.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,49610.0,0.0,0.0,55851.4,0.0,7900.0,1,0,0.0,5,0.0 +2516,3522,7355.5666046746155,88.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23240.0,0.0,0.0,28919.1,0.0,0.0,3,7,0.0,1,0.0 +2517,3524,1605.4440255029842,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30480.0,0.0,0.0,29409.7,0.0,0.0,1,7,5.0,3,0.0 +2518,3525,1862.7042907057069,56.0,111,0.0,37,1.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58225.1,0.0,70050.0,1,9,7.0,3,1.0 +2519,3526,1710.9502990296623,69.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25900.0,0.0,0.0,25261.05,0.0,0.0,1,0,0.0,3,0.0 +2520,3527,1348.7341173996947,31.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43458.1,0.0,41800.0,2,9,7.0,4,2.0 +2521,3528,2287.4254774580336,55.0,111,5330.0,37,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,59721.05,0.0,59480.0,3,10,8.0,4,2.0 +2522,3530,762.69165314618,40.0,211,8630.0,85,0.0,0.0,3.0,1.6,0.0,160.0,0.0,0.0,0.0,0.0,15386.1,80.0,170.0,3,1,3.0,2,0.0 +2523,3532,2276.100253444045,35.0,112,7650.0,48,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45573.35,0.0,36910.0,2,6,0.0,4,1.0 +2524,3533,3483.195728583671,31.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42798.1,0.0,51320.0,3,9,7.0,1,1.0 +2525,3534,403.82261013892276,47.0,221,0.0,68,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23621.95,0.0,13130.0,3,1,2.0,2,2.0 +2526,3535,2263.0752698349133,50.0,111,0.0,67,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,70337.25,0.0,78680.0,1,10,8.0,4,3.0 +2527,3536,1937.1061306502158,64.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32970.0,0.0,0.0,30747.65,0.0,0.0,1,1,2.0,3,0.0 +2528,3537,2309.6103593426024,58.0,112,14250.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13386.95,0.0,0.0,1,6,2.0,1,1.0 +2529,3538,1827.2026279639092,74.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21530.0,0.0,0.0,27551.75,0.0,0.0,1,7,5.0,1,0.0 +2530,3539,2613.166276531106,33.0,221,0.0,65,2.0,2.0,5.0,2.4,0.0,2340.0,0.0,0.0,0.0,0.0,33259.6,3210.0,15530.0,3,1,2.0,4,2.0 +2531,3542,2008.018791972136,47.0,111,0.0,56,1.0,0.0,2.0,1.3,0.0,6370.0,0.0,0.0,0.0,0.0,14240.2,130.0,800.0,3,9,7.0,2,1.0 +2532,3543,2202.1101692501315,42.0,111,2360.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22585.0,0.0,18280.0,3,9,7.0,2,1.0 +2533,3545,2264.3408387268496,69.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12610.0,0.0,0.0,13086.0,0.0,0.0,1,8,0.0,1,0.0 +2534,3547,1434.8935107275788,50.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,739.0,0.0,64476.95,0.0,38620.0,1,0,0.0,3,2.0 +2535,3548,1653.0692849683699,59.0,300,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40256.5,0.0,43800.0,1,0,1.0,3,2.0 +2536,3549,1862.1085516789888,71.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,74476.92217218166,0.0,0.0,1,9,7.0,1,0.0 +2537,3552,728.3266301894906,34.0,111,0.0,62,3,2.0,8.0,3.9,0.0,0.0,0.0,0.0,0.0,0.0,60502.0,950.0,43440.0,2,7,5.0,4,4.0 +2538,3553,4956.499856754999,43.0,111,0.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42887.34716481449,0.0,31210.0,1,10,8.0,4,2.0 +2539,3554,1019.5320064837359,65.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32150.0,0.0,0.0,29369.8,0.0,0.0,1,3,3.0,3,0.0 +2540,3556,273.83313615756566,45.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25745.45,2020.0,17210.0,4,4,4.0,2,1.0 +2541,3557,4199.513342443796,71.0,111,0.0,77,0.0,0.0,4.0,2.1,0.0,0.0,0.0,19580.0,0.0,0.0,23890.0,0.0,0.0,3,10,8.0,4,0.0 +2542,3558,3482.327832527514,26.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23635.2,0.0,20070.0,3,8,6.0,3,1.0 +2543,3559,1697.6133700436283,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39020.0,0.0,0.0,37992.35,0.0,0.0,1,7,0.0,3,0.0 +2544,3560,3930.9783843812784,66.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23550.0,0.0,0.0,21809.85,0.0,0.0,3,9,1.0,1,0.0 +2545,3561,4299.642154948001,49.0,111,7600.0,46,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48170.75,140.0,43780.0,3,10,8.0,4,3.0 +2546,3562,1653.6695322996668,54.0,120,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15099.8,3210.0,5860.0,3,0,1.0,2,1.0 +2547,3563,2373.6759847380517,65.0,212,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15450.0,0.0,0.0,20040.0,0.0,0.0,1,2,0.0,1,0.0 +2548,3565,1711.716919363097,60.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17984.65,870.0,17810.0,3,8,7.0,1,1.0 +2549,3568,1916.40242994458,52.0,211,2090.0,52,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,49.0,0.0,46515.6,0.0,44340.0,1,4,4.0,4,3.0 +2550,3569,1987.1351577986825,46.0,221,2480.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38676.4,0.0,36230.0,5,1,2.0,4,2.0 +2551,3570,1835.3986906360901,44.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41634.4,0.0,30510.0,5,7,5.0,3,2.0 +2552,3571,1652.4268977246024,72.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16650.0,0.0,0.0,62448.9,0.0,0.0,2,6,0.0,1,0.0 +2553,3573,3532.2981905220845,47.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5340.0,62.0,0.0,34236.6,0.0,28900.0,3,10,8.0,2,1.0 +2554,3574,1995.9106530307558,59.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27975.65,0.0,31390.0,3,9,7.0,1,1.0 +2555,3575,666.1163766354972,37.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19377.5,3960.0,13500.0,3,4,3.0,2,1.0 +2556,3576,5513.5220908849005,26.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25243.75,0.0,25730.0,5,6,5.0,3,2.0 +2557,3577,1999.7726495720322,83.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20080.0,0.0,0.0,19339.8,0.0,0.0,1,4,0.0,3,0.0 +2558,3578,1971.8167256889283,69.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16750.0,0.0,0.0,16750.0,0.0,0.0,3,9,3.0,1,0.0 +2559,3579,2597.315270613691,53.0,111,0.0,38,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,964.0,0.0,39626.35,0.0,36760.0,2,8,6.0,2,1.0 +2560,3580,1216.5160482891242,47.0,111,0.0,21,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,12658.4,0.0,0.0,5,10,8.0,2,1.0 +2561,3581,322.4825633717372,36.0,112,7570.0,63,1.0,0.0,2.0,1.3,0.0,430.0,0.0,0.0,0.0,0.0,19893.55,560.0,0.0,3,7,4.0,2,1.0 +2562,3583,2079.385544344446,64.0,120,920.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,29490.0,0.0,0.0,48882.35,0.0,17020.0,1,0,1.0,4,1.0 +2563,3584,2748.992831842754,37.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32816.2,0.0,37050.0,3,10,8.0,1,1.0 +2564,3585,2007.6114391668698,49.0,400,7770.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28229.05,0.0,21380.0,1,0,0.0,2,2.0 +2565,3586,2877.446539750953,29.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59714.35,0.0,68080.0,2,9,7.0,3,2.0 +2566,3587,3830.9265587146065,36.0,111,2640.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46518.45,0.0,42320.0,3,10,8.0,4,2.0 +2567,3588,4157.3069992646815,48.0,111,0.0,48,1.0,1.0,5.0,3.0,0.0,0.0,0.0,17890.0,0.0,0.0,45571.5,0.0,27920.0,3,8,6.0,5,1.0 +2568,3589,2225.3545749703985,49.0,111,0.0,65,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,39369.65,0.0,34040.0,3,9,7.0,4,3.0 +2569,3590,3818.669032842563,52.0,111,7430.0,52,1.0,0.0,4.0,2.5,0.0,0.0,0.0,7120.0,0.0,0.0,24600.0,0.0,6410.0,3,10,8.0,4,1.0 +2570,3592,1727.9528099034048,69.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21620.0,0.0,0.0,21060.8,0.0,0.0,1,9,0.0,1,0.0 +2571,3593,1516.3827944166153,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33740.0,0.0,0.0,34001.2,0.0,0.0,1,9,7.0,3,0.0 +2572,3595,1989.1862681307825,46.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11177.2,820.0,10560.0,4,8,7.0,1,1.0 +2573,3596,2418.382463391943,38.0,300,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54060.3,0.0,51730.0,1,0,0.0,4,2.0 +2574,3598,3245.36731990928,58.0,112,2630.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,3850.0,0.0,0.0,50762.05,0.0,47230.0,2,9,1.0,4,2.0 +2575,3600,3186.590310146108,50.0,111,7960.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10125.95,0.0,2320.0,3,8,7.0,1,1.0 +2576,3601,519.6747496189888,47.0,111,1760.0,37,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47313.3,0.0,43300.0,2,10,8.0,2,2.0 +2577,3602,3736.2834605158682,31.0,111,5600.0,23,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55003.15,0.0,51200.0,3,6,5.0,3,2.0 +2578,3603,1833.1746588458777,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42830.0,0.0,0.0,38716.15,0.0,0.0,1,4,4.0,3,0.0 +2579,3604,2511.4223196261523,56.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22599.2,0.0,23290.0,2,10,8.0,1,1.0 +2580,3606,1034.7729829365833,48.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26202.7,0.0,20400.0,3,10,8.0,2,1.0 +2581,3607,4680.733852253569,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,5030.0,4510.0,0.0,0.0,12156.0,0.0,0.0,3,8,7.0,1,0.0 +2582,3609,1764.423507593619,29.0,111,10000.0,46,2.0,1.0,6.0,3.3,0.0,12930.0,0.0,8100.0,0.0,0.0,43017.7,0.0,6630.0,3,10,8.0,5,2.0 +2583,3611,2114.907015750888,56.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42962.25,0.0,41360.0,2,9,7.0,4,2.0 +2584,3612,3063.6846210762983,32.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53820.85,0.0,52940.0,1,9,1.0,4,2.0 +2585,3615,2730.0396582007106,53.0,211,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9140.0,220.0,0.0,22430.05,0.0,13220.0,1,4,4.0,3,1.0 +2586,3617,3517.926966352024,24.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12554.15,0.0,4460.0,3,8,7.0,1,0.0 +2587,3621,3512.0465819210685,50.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37054.45,0.0,45180.0,2,9,7.0,1,1.0 +2588,3622,3099.922098718858,63.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28930.0,0.0,0.0,25472.45,0.0,0.0,1,6,0.0,1,0.0 +2589,3623,2166.0366912197583,80.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18180.0,0.0,0.0,22476.0,0.0,0.0,1,0,0.0,3,0.0 +2590,3625,2758.6921032412884,63.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19110.0,0.0,0.0,19018.2,0.0,540.0,1,0,0.0,1,0.0 +2591,3627,7164.141611598087,58.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5640.0,0.0,0.0,24054.5,40.0,19230.0,3,8,7.0,3,1.0 +2592,3631,622.3011320707418,45.0,211,3960.0,56,2.0,0.0,2.0,1.5,4960.0,0.0,0.0,0.0,0.0,0.0,12064.0,0.0,0.0,3,1,3.0,3,2.0 +2593,3632,1413.4053639953752,89.0,211,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,880.0,8400.0,0.0,0.0,12076.0,0.0,0.0,3,4,3.0,1,0.0 +2594,3634,525.6043804517576,38.0,112,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,32497.2,0.0,21820.0,3,10,1.0,2,1.0 +2595,3635,582.7840692361567,21.0,400,2270.0,68,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24271.3,2520.0,12860.0,3,0,0.0,4,1.0 +2596,3636,835.2066552058534,53.0,111,0.0,63,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27492.05,0.0,22590.0,2,6,4.0,2,1.0 +2597,3637,3298.697316596823,34.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,500.0,0.0,91185.5,0.0,95410.0,1,6,0.0,4,2.0 +2598,3638,6618.780449111649,33.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21735.7,0.0,23410.0,3,10,8.0,1,1.0 +2599,3641,4705.894939549556,31.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,436.0,0.0,33310.8,0.0,31960.0,2,9,7.0,1,1.0 +2600,3644,1728.781358222654,56.0,111,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,17870.0,0.0,0.0,57092.9,0.0,29600.0,1,7,5.0,4,2.0 +2601,3645,1846.609023963131,57.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,0,0.0,1,0.0 +2602,3646,3005.804998194244,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31020.0,0.0,0.0,30196.409974400303,0.0,0.0,1,8,7.0,3,0.0 +2603,3647,2824.958848553915,41.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24725.7,0.0,26830.0,3,10,8.0,1,1.0 +2604,3648,842.7346759489742,44.0,111,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27108.2,560.0,22190.0,3,9,7.0,4,1.0 +2605,3649,2212.0206265568786,78.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25620.0,0.0,0.0,24858.2,0.0,0.0,1,0,0.0,3,0.0 +2606,3650,4952.278139600643,60.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19280.0,0.0,0.0,18801.5,0.0,230.0,3,6,1.0,1,0.0 +2607,3651,2877.991091209371,57.0,112,3250.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9490.0,0.0,0.0,36077.0,0.0,26750.0,1,6,0.0,3,1.0 +2608,3652,2157.7172223812554,73.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39970.0,0.0,0.0,37070.6,0.0,0.0,1,0,0.0,3,0.0 +2609,3654,1984.6050908997438,57.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22200.0,0.0,0.0,49506.05,0.0,19740.0,1,5,0.0,3,0.0 +2610,3655,2169.1303831775263,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57250.0,0.0,0.0,54787.5,0.0,0.0,1,8,7.0,3,0.0 +2611,3658,2594.750768520333,57.0,211,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,4111.0,0.0,65369.2,0.0,69840.0,1,1,2.0,4,2.0 +2612,3659,1525.722136810146,33.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19704.6,3740.0,12780.0,3,10,8.0,2,1.0 +2613,3660,2708.380802607139,58.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10710.0,0.0,0.0,11781.1,0.0,0.0,3,7,5.0,1,0.0 +2614,3661,2235.243984805856,63.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19060.0,0.0,0.0,19143.0,0.0,0.0,3,9,7.0,1,0.0 +2615,3662,656.339729197628,47.0,111,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53060.15,0.0,54750.0,3,9,7.0,4,2.0 +2616,3663,3452.6117426695846,84.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33780.0,0.0,0.0,30183.95,0.0,70.0,1,6,4.0,1,0.0 +2617,3665,2431.0149164456666,60.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14940.0,2360.0,0.0,16983.0,0.0,0.0,1,9,0.0,3,0.0 +2618,3666,3067.953026877592,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15020.0,0.0,0.0,15059.0,0.0,0.0,3,8,7.0,1,0.0 +2619,3667,1913.5259416922822,65.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,2940.0,6810.0,2780.0,0.0,0.0,15470.0,0.0,0.0,3,7,6.0,1,0.0 +2620,3668,668.148258852885,35.0,221,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27508.65,80.0,20890.0,2,1,1.0,2,1.0 +2621,3669,630.7395703725208,34.0,112,1160.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21617.2,1120.0,13160.0,3,9,3.0,2,1.0 +2622,3671,2834.0829023771907,31.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,84248.85,0.0,55540.0,3,9,7.0,3,2.0 +2623,3672,2631.1662199209,48.0,112,5950.0,85,0.0,0.0,7.0,3.6,0.0,0.0,0.0,0.0,0.0,0.0,20839.0,0.0,0.0,3,10,4.0,4,0.0 +2624,3674,3539.6506225779444,60.0,112,0.0,77,0.0,0.0,1.0,1.0,9730.0,0.0,0.0,0.0,0.0,0.0,9782.5,0.0,0.0,1,9,1.0,1,0.0 +2625,3675,2404.9686394947503,56.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23500.95,0.0,25910.0,3,10,8.0,2,1.0 +2626,3677,3673.51776215461,42.0,300,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,470.0,129.0,0.0,35058.85,0.0,42830.0,5,0,0.0,4,2.0 +2627,3678,1710.6784744021722,77.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,750.0,8740.0,0.0,0.0,11302.0,0.0,0.0,3,7,5.0,1,0.0 +2628,3679,2776.031580150205,38.0,120,3850.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11558.1,1520.0,4590.0,3,0,0.0,1,1.0 +2629,3681,2537.201713115237,39.0,300,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49128.8,0.0,49940.0,2,0,1.0,4,2.0 +2630,3682,8085.523443475649,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64360.0,0.0,0.0,55242.2,0.0,0.0,1,9,7.0,3,0.0 +2631,3685,2746.954168387445,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9620.0,0.0,0.0,11336.0,0.0,0.0,3,9,7.0,1,0.0 +2632,3686,2435.271010353867,38.0,111,2440.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12732.35,0.0,9720.0,3,9,7.0,1,1.0 +2633,3687,2206.3749241683436,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41160.0,480.0,0.0,37524.902962927845,0.0,260.0,1,5,4.0,3,0.0 +2634,3688,2137.968518791267,43.0,120,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,221.0,0.0,36308.0,0.0,37130.0,3,0,1.0,4,2.0 +2635,3689,1901.7617638275306,52.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,4272.0,0.0,84415.1,0.0,91150.0,1,7,0.0,4,2.0 +2636,3691,2454.0115654235256,63.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17210.0,0.0,0.0,17581.05,0.0,0.0,3,0,0.0,1,0.0 +2637,3692,1927.938579683315,58.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,82590.45,0.0,98630.0,1,8,7.0,3,2.0 +2638,3693,4122.8830098256585,25.0,400,1390.0,67,1.0,1.0,1.0,1.0,0.0,1560.0,0.0,0.0,0.0,0.0,6034.0,0.0,0.0,3,0,0.0,1,1.0 +2639,3694,1281.879838029615,69.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11900.0,0.0,0.0,11900.0,0.0,0.0,5,8,7.0,1,0.0 +2640,3696,3053.7727745936913,63.0,111,43220.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38520.0,0.0,0.0,66582.98736469635,0.0,0.0,1,9,7.0,1,0.0 +2641,3697,2070.9156006559647,31.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,5760.0,0.0,0.0,0.0,0.0,51916.25,210.0,44530.0,1,4,4.0,4,2.0 +2642,3699,1793.4543059674754,67.0,111,390.0,78,1.0,1.0,7.0,3.4,0.0,0.0,0.0,15100.0,0.0,0.0,40522.0,0.0,7940.0,3,10,8.0,4,1.0 +2643,3702,2749.1352809701366,60.0,111,20.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3260.0,0.0,0.0,13045.65,0.0,9960.0,3,9,7.0,1,1.0 +2644,3703,2060.259267582053,48.0,111,1110.0,62,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,49733.3,0.0,45290.0,1,4,3.0,4,3.0 +2645,3704,1187.158147170241,32.0,111,780.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21813.1,1300.0,15520.0,3,6,5.0,2,1.0 +2646,3705,3344.570032427157,39.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,672.0,0.0,50120.25,0.0,0.0,1,9,7.0,1,1.0 +2647,3706,1800.752597991448,79.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,79960.0,350.0,0.0,103533.15,0.0,0.0,1,6,0.0,3,0.0 +2648,3707,2200.820650158493,36.0,400,1000.0,42,2.0,2.0,3.0,1.8,0.0,1280.0,0.0,0.0,0.0,0.0,25744.0,1990.0,12960.0,3,0,0.0,4,2.0 +2649,3709,2357.827704323864,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,46310.0,214.0,0.0,36571.324490751875,0.0,0.0,5,7,5.0,1,0.0 +2650,3710,2013.8859880348932,36.0,111,9200.0,68,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31910.8,0.0,20720.0,3,9,7.0,4,2.0 +2651,3713,2415.7559942666358,89.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19320.0,0.0,0.0,19395.0,0.0,0.0,1,4,4.0,3,0.0 +2652,3714,1487.7920157461601,51.0,111,2480.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,34447.1,0.0,19280.0,3,9,7.0,4,2.0 +2653,3715,2590.419041640662,53.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51371.65,0.0,56720.0,2,9,7.0,4,2.0 +2654,3717,1176.5673314762353,39.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23945.75,0.0,22940.0,1,10,8.0,2,1.0 +2655,3719,2435.820031595991,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26790.0,1989.0,0.0,25519.75,0.0,0.0,1,8,0.0,1,0.0 +2656,3720,1758.8002984209947,83.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14090.0,0.0,0.0,14534.0,0.0,0.0,3,8,7.0,1,0.0 +2657,3723,1466.463168740435,55.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19748.05,0.0,21950.0,1,8,6.0,1,1.0 +2658,3725,2456.0387065303057,58.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30177.25,0.0,37510.0,2,10,8.0,1,1.0 +2659,3726,2146.7114022737373,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25000.0,0.0,0.0,22931.1,0.0,0.0,3,9,7.0,1,0.0 +2660,3727,2459.15587351681,76.0,112,0.0,75,0.0,0.0,3.0,2.0,9720.0,0.0,0.0,34160.0,0.0,0.0,46459.7,0.0,0.0,1,8,0.0,4,0.0 +2661,3728,1690.705736349933,65.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38880.0,0.0,0.0,40131.15381151038,0.0,0.0,1,8,1.0,3,0.0 +2662,3729,1786.4341715285102,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42950.0,0.0,0.0,40893.4,0.0,0.0,5,9,0.0,3,0.0 +2663,3730,256.3516536554832,59.0,300,8500.0,55,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34878.15,550.0,25340.0,1,0,0.0,5,2.0 +2664,3731,3234.0088034845003,58.0,400,0.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,420.75,0.0,0.0,1,0,1.0,1,1.0 +2665,3736,2501.1648718665065,35.0,112,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,63813.3,0.0,55150.0,2,8,1.0,4,2.0 +2666,3737,2526.4267932650846,62.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19864.05,0.0,21320.0,3,10,8.0,1,1.0 +2667,3738,1570.4268134692882,46.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,100.0,0.0,49289.93523005718,0.0,52330.0,2,9,7.0,4,1.0 +2668,3739,1980.9384427385717,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63460.0,0.0,0.0,58707.15,0.0,0.0,1,8,7.0,3,0.0 +2669,3740,770.0321684525476,49.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25218.7,0.0,22900.0,2,8,6.0,2,1.0 +2670,3741,1973.3573450090482,81.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36830.0,0.0,0.0,36742.65,0.0,0.0,1,6,4.0,3,0.0 +2671,3743,1905.3434021374312,55.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,965.0,0.0,52857.7,0.0,57540.0,2,9,7.0,2,1.0 +2672,3748,2031.5803771018243,62.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49410.0,1927.0,0.0,61958.95,0.0,2630.0,1,0,0.0,3,0.0 +2673,3750,1377.413819649222,49.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50558.95,0.0,53110.0,3,9,7.0,4,2.0 +2674,3751,412.1975289633025,51.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40241.05,0.0,18170.0,3,9,2.0,3,2.0 +2675,3753,3543.2749523173848,33.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,16.0,0.0,42615.0,0.0,27070.0,1,6,5.0,3,2.0 +2676,3754,597.6313643542078,30.0,111,0.0,52,1.0,0.0,2.0,1.3,0.0,1820.0,0.0,0.0,0.0,0.0,15843.9,1420.0,9880.0,3,7,5.0,2,1.0 +2677,3755,1701.028859650065,41.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,6070.0,0.0,0.0,0.0,0.0,15300.0,0.0,0.0,3,10,8.0,2,0.0 +2678,3756,4051.567021664453,48.0,111,0.0,37,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,1653.0,240.0,33427.3,0.0,51000.0,2,10,8.0,4,2.0 +2679,3757,1986.6145388588225,31.0,120,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34205.1,0.0,27350.0,2,0,1.0,4,2.0 +2680,3758,2956.328554392422,26.0,111,5940.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34814.2,0.0,23720.0,3,9,7.0,4,2.0 +2681,3759,1330.7078673956464,49.0,111,2230.0,65,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,124.0,0.0,54364.5,0.0,53400.0,3,7,6.0,4,3.0 +2682,3760,5974.634062920009,58.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,7840.0,0.0,830.0,84354.0,0.0,76280.0,3,8,6.0,3,2.0 +2683,3762,6139.962973489577,71.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22280.0,0.0,0.0,20866.9,0.0,0.0,1,7,0.0,1,0.0 +2684,3763,1604.703619525658,66.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22220.0,0.0,0.0,21928.0,0.0,0.0,1,1,2.0,3,0.0 +2685,3764,3143.6259460308875,27.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,9062.25,0.0,0.0,3,7,6.0,1,1.0 +2686,3765,1952.2306217959047,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29730.0,0.0,0.0,28844.65,0.0,0.0,2,8,0.0,3,0.0 +2687,3766,3693.260015362258,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16440.0,0.0,0.0,16644.85,0.0,0.0,1,9,7.0,1,0.0 +2688,3767,4070.74141185823,38.0,111,22140.0,81,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46009.96070655408,0.0,21520.0,1,10,8.0,4,1.0 +2689,3768,648.5321923627511,47.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,6170.0,0.0,0.0,26187.9,0.0,19000.0,2,6,4.0,2,1.0 +2690,3771,2337.7410211264364,34.0,120,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,84517.95,0.0,71170.0,1,0,0.0,4,2.0 +2691,3772,2564.332715167874,82.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47760.0,0.0,0.0,44215.0,0.0,0.0,1,9,7.0,3,0.0 +2692,3774,2616.9145633138874,51.0,111,5270.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34669.1,0.0,30180.0,1,7,5.0,4,2.0 +2693,3776,6775.800007522511,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20490.25,0.0,0.0,3,10,8.0,1,0.0 +2694,3777,3076.8988247841708,40.0,112,350.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45488.95,0.0,51810.0,3,7,4.0,3,2.0 +2695,3778,2472.3267081106005,33.0,111,2880.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,15877.95,0.0,9460.0,1,8,7.0,4,2.0 +2696,3779,2357.37865021603,59.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30820.0,0.0,0.0,36052.16514957779,0.0,0.0,1,8,7.0,3,0.0 +2697,3780,7657.120745290335,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17870.0,0.0,0.0,17264.85,0.0,0.0,1,8,6.0,1,0.0 +2698,3782,2224.292385656483,42.0,112,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,64597.3,0.0,69170.0,2,8,2.0,4,2.0 +2699,3783,1927.6142896907345,51.0,112,4360.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49258.9,0.0,43920.0,2,8,0.0,4,3.0 +2700,3784,3834.9103027959945,43.0,221,5950.0,56,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,29672.9,0.0,16640.0,3,1,1.0,4,2.0 +2701,3785,4302.790301845614,81.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15370.0,0.0,0.0,15291.1,0.0,0.0,1,6,0.0,1,0.0 +2702,3787,531.6380688072212,40.0,111,0.0,85,2.0,2.0,6.0,2.9,0.0,5690.0,0.0,0.0,0.0,0.0,38640.0,5070.0,0.0,3,8,7.0,2,2.0 +2703,3788,3782.894204140529,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3781.0,0.0,0.0,3,9,7.0,1,0.0 +2704,3789,1670.203894055795,66.0,300,0.0,78,0.0,0.0,2.0,1.5,8280.0,0.0,0.0,14250.0,0.0,0.0,22965.5,0.0,0.0,1,0,1.0,3,0.0 +2705,3790,2738.277292520344,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11200.0,0.0,0.0,11740.0,0.0,0.0,3,9,7.0,1,0.0 +2706,3792,3607.9764779805037,51.0,222,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21696.55,0.0,22290.0,1,1,0.0,3,2.0 +2707,3794,1496.428343501992,84.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25580.0,0.0,0.0,23333.05,0.0,0.0,1,9,7.0,1,0.0 +2708,3795,2740.439630624857,62.0,112,0.0,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,7,0.0,1,1.0 +2709,3796,1614.0438457137384,55.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43960.85,0.0,47440.0,2,9,2.0,3,2.0 +2710,3797,3768.694466718593,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30060.0,0.0,0.0,25910.2,0.0,0.0,1,10,8.0,1,0.0 +2711,3798,2254.4242636790023,25.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40549.45,0.0,41570.0,2,7,5.0,3,2.0 +2712,3799,2757.190498159227,57.0,112,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,7130.0,0.0,0.0,23305.3,0.0,16920.0,3,9,0.0,4,1.0 +2713,3800,3564.3673364820784,60.0,111,490.0,52,2.0,2.0,2.0,1.5,0.0,21870.0,0.0,0.0,0.0,0.0,53639.5,6030.0,27410.0,3,10,8.0,5,2.0 +2714,3802,1258.2502831256952,21.0,111,3750.0,55,2.0,1.0,4.0,2.1,0.0,2640.0,0.0,0.0,0.0,0.0,23192.0,1440.0,8330.0,3,9,7.0,4,2.0 +2715,3803,2530.6956292583213,65.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27870.0,0.0,0.0,28366.7,0.0,0.0,1,1,1.0,3,0.0 +2716,3804,2041.758187673235,82.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41480.0,0.0,0.0,40114.4,0.0,0.0,5,0,0.0,3,0.0 +2717,3806,1101.9552832781874,37.0,111,0.0,22,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25760.7,0.0,19730.0,3,9,7.0,2,1.0 +2718,3807,2699.753711152376,33.0,111,13920.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17525.45,0.0,3750.0,3,8,7.0,2,1.0 +2719,3808,2542.852615136181,44.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,68393.48573868276,0.0,66280.0,2,8,7.0,4,2.0 +2720,3811,2057.7653833800846,33.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44170.75,0.0,47930.0,3,7,5.0,3,2.0 +2721,3812,4849.620079373306,60.0,111,0.0,53,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53488.0,0.0,57800.0,3,10,8.0,4,3.0 +2722,3813,2291.6122237651985,61.0,212,8400.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,5050.0,0.0,0.0,14598.7,0.0,0.0,1,2,0.0,2,0.0 +2723,3814,2233.9045184614124,82.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12930.0,0.0,0.0,12456.05,0.0,0.0,1,0,1.0,1,0.0 +2724,3815,1747.4755644112277,56.0,111,5950.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,25243.8,0.0,15120.0,3,6,4.0,4,2.0 +2725,3817,2802.356768970904,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12410.0,0.0,0.0,12998.0,0.0,0.0,3,8,6.0,1,0.0 +2726,3818,2616.3150944706103,86.0,222,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9570.0,0.0,0.0,9819.55,0.0,0.0,1,1,0.0,1,0.0 +2727,3819,2409.819055539917,37.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44872.2,0.0,42820.0,2,8,7.0,4,2.0 +2728,3820,3098.626764780018,26.0,112,5280.0,21,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25304.5,0.0,11690.0,2,7,0.0,4,1.0 +2729,3821,2349.424196868493,58.0,300,0.0,78,0.0,0.0,1.0,1.0,9600.0,0.0,0.0,0.0,0.0,0.0,12680.0,0.0,0.0,3,0,1.0,1,0.0 +2730,3822,734.157756735112,52.0,111,0.0,43,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,67013.25,0.0,73050.0,2,6,4.0,4,3.0 +2731,3823,1725.7735002088589,86.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,65400.0,0.0,0.0,56037.407860802414,0.0,0.0,1,8,7.0,3,0.0 +2732,3824,3121.0718947285172,56.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19510.0,0.0,0.0,39168.25,0.0,21490.0,1,9,0.0,3,1.0 +2733,3825,1954.5266995074073,75.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28450.0,22.0,0.0,30196.95,0.0,0.0,1,0,0.0,3,0.0 +2734,3826,1916.3621375058972,57.0,400,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,170.0,17681.1,0.0,3520.0,1,0,0.0,3,2.0 +2735,3827,3580.400672138223,46.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,533.0,0.0,13455.75,0.0,0.0,3,4,3.0,1,1.0 +2736,3828,489.0373148039078,34.0,211,8680.0,56,1.0,0.0,3.0,1.6,0.0,470.0,0.0,0.0,0.0,0.0,18876.2,0.0,0.0,3,1,3.0,2,1.0 +2737,3830,2831.6168180764234,48.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22381.3,2660.0,20030.0,3,8,7.0,3,1.0 +2738,3831,2131.0063195272346,51.0,111,0.0,33,1.0,1.0,4.0,2.3,0.0,0.0,0.0,25190.0,5171.0,0.0,109118.05317625865,0.0,55950.0,1,10,8.0,4,1.0 +2739,3832,263.60560288100197,48.0,112,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23793.4,0.0,19570.0,1,10,2.0,2,1.0 +2740,3833,2721.839240685615,67.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29460.0,0.0,0.0,29109.0,0.0,0.0,1,0,0.0,3,0.0 +2741,3834,604.2555280192473,40.0,111,0.0,56,1.0,1.0,4.0,2.3,9720.0,0.0,0.0,0.0,0.0,0.0,39024.0,0.0,13970.0,3,7,5.0,2,1.0 +2742,3835,1823.6214078039538,47.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36893.05,0.0,36580.0,2,8,6.0,4,2.0 +2743,3836,552.1777536493205,34.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25514.55,0.0,23600.0,5,9,7.0,2,1.0 +2744,3837,1881.1781213896766,51.0,221,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38648.55,0.0,39760.0,2,3,4.0,3,2.0 +2745,3839,546.0280477917316,56.0,221,0.0,47,1.0,0.0,2.0,1.5,0.0,7170.0,0.0,0.0,0.0,0.0,13116.0,0.0,0.0,3,1,3.0,2,1.0 +2746,3840,3062.7143808524743,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23840.0,0.0,0.0,22333.0,0.0,0.0,5,7,5.0,1,0.0 +2747,3843,3397.1297414559995,50.0,300,4620.0,68,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31639.4,80.0,22180.0,3,0,1.0,4,2.0 +2748,3845,1678.660110321051,55.0,400,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,89618.45,0.0,109100.0,3,0,1.0,3,2.0 +2749,3846,2153.32659444861,58.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10318.0,0.0,0.0,1,0,0.0,3,2.0 +2750,3847,2238.056790337298,62.0,112,5350.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46410.0,0.0,0.0,46387.26864511235,0.0,0.0,1,8,0.0,3,0.0 +2751,3848,1866.647555674479,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31110.0,0.0,0.0,30218.9,0.0,0.0,1,7,5.0,3,0.0 +2752,3849,1465.0243382549527,68.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23910.0,111.0,0.0,26963.15,0.0,0.0,1,7,5.0,3,0.0 +2753,3851,3778.005899915283,28.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9655.0,2330.0,7320.0,3,10,8.0,1,1.0 +2754,3852,860.9116543040662,47.0,111,0.0,43,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,31172.9,0.0,19700.0,3,8,6.0,2,1.0 +2755,3853,2939.2635373800763,79.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60000.0,0.0,0.0,54439.05,0.0,0.0,1,1,3.0,3,0.0 +2756,3854,2191.3572337810856,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7200.0,0.0,0.0,3,10,8.0,1,0.0 +2757,3856,2220.2846140348684,66.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23030.0,0.0,0.0,21659.5,0.0,0.0,1,6,4.0,1,0.0 +2758,3857,3177.7147039716187,41.0,111,4820.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,112019.35,0.0,114480.0,2,10,8.0,4,2.0 +2759,3858,670.36583337136,41.0,120,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24879.9,0.0,16830.0,2,0,0.0,2,1.0 +2760,3864,964.8893462344059,64.0,111,1090.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,34950.0,0.0,0.0,47180.3,0.0,15420.0,1,6,5.0,3,1.0 +2761,3865,2309.5426917855057,62.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29290.0,0.0,0.0,27743.65,0.0,0.0,1,0,0.0,3,0.0 +2762,3866,2668.2291763835447,35.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19758.05,0.0,21290.0,3,9,7.0,1,1.0 +2763,3867,3509.160037420185,40.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19593.85,0.0,21690.0,3,9,7.0,1,1.0 +2764,3868,3809.284478552288,59.0,111,11550.0,54,1.0,0.0,2.0,1.5,0.0,0.0,0.0,8780.0,0.0,0.0,22193.5,0.0,2650.0,1,9,7.0,3,1.0 +2765,3869,2294.1959305177347,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,66610.0,0.0,0.0,59007.45,0.0,0.0,1,9,7.0,3,0.0 +2766,3872,6611.49604408349,27.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30368.0,0.0,34010.0,3,10,8.0,1,1.0 +2767,3875,819.2157647496999,44.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25587.1,2390.0,23800.0,1,10,8.0,2,1.0 +2768,3876,2080.4453073236255,51.0,112,7250.0,42,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48543.05,0.0,44450.0,3,9,2.0,4,2.0 +2769,3877,1690.9835861766178,56.0,112,0.0,37,2.0,1.0,3.0,2.0,0.0,1360.0,0.0,0.0,0.0,0.0,55626.95,0.0,55590.0,1,8,0.0,4,2.0 +2770,3878,2228.594827656531,74.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39160.0,0.0,0.0,36987.87004772817,0.0,0.0,1,9,2.0,1,0.0 +2771,3879,2499.2233653035028,75.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19910.0,0.0,0.0,19135.1,0.0,0.0,3,1,3.0,1,0.0 +2772,3880,3141.7927379796374,58.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,9790.0,0.0,0.0,0.0,0.0,12070.0,0.0,0.0,3,9,7.0,4,0.0 +2773,3881,1956.6514088176618,60.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,77373.25,0.0,83340.0,1,10,8.0,4,2.0 +2774,3882,3784.8878513759273,86.0,111,5950.0,77,1.0,0.0,2.0,1.5,0.0,2030.0,0.0,12770.0,0.0,0.0,21746.0,0.0,0.0,3,10,8.0,2,1.0 +2775,3883,1913.5905131844434,57.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41463.438627097756,0.0,41750.0,3,10,8.0,4,1.0 +2776,3884,4222.47103033852,20.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5114.0,0.0,1850.0,3,10,4.0,1,1.0 +2777,3886,2008.9303391083765,21.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24833.75,0.0,24360.0,3,9,3.0,1,1.0 +2778,3887,552.0131558386349,40.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26780.0,0.0,23580.0,3,9,7.0,2,1.0 +2779,3890,5385.811387676833,46.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,139.44999999999993,0.0,0.0,2,9,7.0,1,0.0 +2780,3891,2921.6258007258816,37.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,71476.7,0.0,66510.0,2,9,1.0,4,2.0 +2781,3892,1894.5158809396505,72.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18560.0,0.0,0.0,18006.4,0.0,0.0,3,0,0.0,1,0.0 +2782,3893,908.0189854362992,40.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29169.85,6770.0,22550.0,3,9,7.0,5,2.0 +2783,3895,2139.6401198978765,60.0,111,2070.0,13,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,2503.0,0.0,43592.302794629635,0.0,10640.0,3,6,5.0,4,4.0 +2784,3896,1499.1936326344944,70.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31340.0,0.0,0.0,50595.05,0.0,25810.0,1,10,8.0,3,1.0 +2785,3897,5164.323909136494,37.0,111,0.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,7750.0,0.0,7390.0,3,10,8.0,4,2.0 +2786,3898,1985.4035348703785,85.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21810.0,0.0,0.0,21056.35,0.0,0.0,1,9,3.0,3,0.0 +2787,3900,1844.4085320516199,38.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46810.0,0.0,50840.0,2,9,7.0,3,2.0 +2788,3901,2511.8534659480642,84.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26040.0,0.0,0.0,23912.7,0.0,0.0,1,1,2.0,1,0.0 +2789,3902,2777.955475335868,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25930.0,0.0,0.0,24525.85,0.0,0.0,1,10,2.0,3,0.0 +2790,3903,2889.65858663383,40.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,7.0,0.0,108327.981,0.0,126800.0,2,10,8.0,4,2.0 +2791,3904,2173.6139226264977,40.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,135.0,0.0,56582.0,0.0,58550.0,2,7,0.0,4,2.0 +2792,3905,1429.8602229934552,65.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15630.0,140.0,0.0,15427.2,0.0,0.0,1,0,0.0,3,0.0 +2793,3907,2688.946588132995,46.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40229.45,0.0,40950.0,1,9,7.0,4,2.0 +2794,3908,959.1195623467253,36.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31471.5,810.0,21280.0,3,7,5.0,2,1.0 +2795,3909,1709.609634021933,68.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40510.0,138.0,0.0,38351.65,0.0,0.0,1,6,0.0,3,0.0 +2796,3910,3096.560023220823,39.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46443.3,0.0,47430.0,2,10,8.0,4,2.0 +2797,3911,3430.2583464889117,43.0,111,0.0,67,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37558.55,0.0,35740.0,3,10,8.0,4,1.0 +2798,3912,606.7064617616688,47.0,211,0.0,65,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29459.0,0.0,29400.0,2,1,2.0,2,1.0 +2799,3913,4950.127186176308,22.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19170.0,690.0,14880.0,3,10,8.0,1,1.0 +2800,3915,2080.385711263561,82.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45270.0,0.0,0.0,43619.65,0.0,0.0,1,5,0.0,3,0.0 +2801,3916,1847.0305068604039,48.0,111,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,31.0,0.0,34263.4,0.0,35320.0,1,5,4.0,4,2.0 +2802,3918,2726.695275209624,54.0,112,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66438.15,0.0,78390.0,2,10,0.0,2,2.0 +2803,3919,1578.6516703152738,60.0,400,3430.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14693.1,150.0,9630.0,3,0,0.0,1,1.0 +2804,3920,2607.371505099328,43.0,111,0.0,38,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,81.0,0.0,68862.75,0.0,60730.0,3,10,8.0,4,1.0 +2805,3921,2865.890715476011,44.0,112,9370.0,62,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50855.55,0.0,40600.0,3,8,2.0,4,2.0 +2806,3922,690.84017498555,43.0,111,0.0,52,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,36861.25,0.0,28280.0,5,10,8.0,2,1.0 +2807,3923,5296.12068878439,24.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40883.0,0.0,48590.0,3,10,8.0,1,1.0 +2808,3925,2447.235030953249,62.0,112,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3360.0,0.0,0.0,36405.60317625865,0.0,40390.0,1,8,0.0,1,1.0 +2809,3928,1486.0903373825097,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58900.0,2699.0,3.0,56781.64190646799,0.0,0.0,1,8,0.0,3,0.0 +2810,3929,2362.5741183220202,69.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46100.0,0.0,0.0,42039.0,0.0,0.0,1,8,3.0,3,0.0 +2811,3930,2211.282448527515,31.0,112,650.0,54,1.0,0.0,2.0,1.3,0.0,700.0,0.0,0.0,0.0,0.0,3189.0,50.0,0.0,1,8,1.0,2,1.0 +2812,3931,2056.5182353660357,49.0,221,0.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,33896.65,0.0,0.0,2,1,1.0,2,1.0 +2813,3932,2367.3306401876207,37.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22234.95,0.0,24660.0,2,8,7.0,1,1.0 +2814,3933,1844.1896232541728,79.0,112,0.0,46,1.0,0.0,2.0,1.5,0.0,0.0,0.0,40010.0,0.0,0.0,38410.35,0.0,0.0,1,10,0.0,3,1.0 +2815,3934,1044.458572500882,64.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20410.0,0.0,0.0,30669.482119662232,0.0,0.0,1,4,3.0,3,0.0 +2816,3935,2915.9009148912132,58.0,111,0.0,63,2.0,2.0,5.0,2.6,5890.0,0.0,0.0,0.0,0.0,0.0,34926.0,0.0,16150.0,3,9,7.0,4,2.0 +2817,3936,2301.407687429689,40.0,400,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59582.5,0.0,28720.0,2,0,0.0,4,2.0 +2818,3937,950.3473835257023,48.0,111,0.0,35,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33074.45,0.0,33650.0,2,9,7.0,2,1.0 +2819,3938,746.922749605361,33.0,112,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,40746.35,0.0,34370.0,2,8,1.0,4,2.0 +2820,3939,4202.380714607889,21.0,111,0.0,34,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10965.95,140.0,7890.0,3,8,7.0,1,1.0 +2821,3940,4160.232558795443,40.0,111,440.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29910.4,0.0,28350.0,2,6,5.0,4,2.0 +2822,3941,2642.9449743116816,70.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15970.0,0.0,0.0,15892.6,0.0,0.0,1,0,0.0,1,0.0 +2823,3944,715.6239865398466,48.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27624.2,0.0,26960.0,2,7,5.0,2,1.0 +2824,3945,3325.752440822325,65.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17750.0,0.0,0.0,24389.25,0.0,0.0,1,4,4.0,4,1.0 +2825,3946,2230.2078337300136,53.0,111,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35430.35,0.0,36610.0,3,6,4.0,3,2.0 +2826,3947,1506.8575234214932,50.0,120,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53463.6,0.0,53610.0,2,0,3.0,4,2.0 +2827,3948,1985.7708341785735,58.0,120,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51319.2,0.0,61540.0,1,0,0.0,3,2.0 +2828,3950,1576.2260860489312,69.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31770.0,0.0,0.0,30620.15,0.0,0.0,1,7,0.0,3,0.0 +2829,3951,3289.621602149038,44.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45926.1,0.0,48200.0,3,10,8.0,4,2.0 +2830,3953,746.1742003744264,26.0,300,0.0,56,1.0,0.0,3.0,1.6,0.0,6740.0,0.0,0.0,0.0,0.0,18510.3,0.0,0.0,3,0,0.0,2,1.0 +2831,3954,719.5417085449691,41.0,112,10700.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35346.5,0.0,24770.0,3,9,2.0,4,2.0 +2832,3955,2106.646806732948,67.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25620.0,0.0,0.0,23982.0,0.0,0.0,1,8,0.0,1,0.0 +2833,3958,2257.9695038282025,74.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28790.0,0.0,0.0,28540.04978414716,0.0,0.0,1,9,2.0,3,0.0 +2834,3959,1794.386733134299,45.0,400,0.0,13,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,25416.4,3030.0,5060.0,5,0,0.0,4,2.0 +2835,3960,4005.8522167186065,44.0,300,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,23501.45,0.0,25420.0,3,0,0.0,1,1.0 +2836,3962,865.2266837828934,55.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19750.6,0.0,18420.0,3,9,7.0,2,1.0 +2837,3963,1559.4738601362603,72.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,8180.0,28010.0,1852.0,100.0,20137.6,0.0,0.0,1,7,5.0,3,1.0 +2838,3964,2174.5137985531146,31.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15770.25,1520.0,14520.0,3,8,7.0,1,1.0 +2839,3965,1611.8287531639012,59.0,221,23240.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40730.15,0.0,20360.0,3,1,2.0,3,1.0 +2840,3966,1865.490469553868,70.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63860.0,0.0,0.0,63062.4,0.0,0.0,1,1,2.0,3,0.0 +2841,3967,2593.8845341949386,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12720.0,0.0,0.0,12023.85,0.0,0.0,1,9,7.0,1,0.0 +2842,3968,1859.9633577601485,71.0,111,0.0,31,1.0,0.0,2.0,1.5,0.0,0.0,0.0,57460.0,0.0,0.0,59849.25317625865,0.0,0.0,1,9,7.0,3,1.0 +2843,3969,4218.522974312391,44.0,111,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,25.0,0.0,58690.7,0.0,61230.0,2,10,8.0,4,2.0 +2844,3970,975.2698905716206,38.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,26.0,0.0,47749.3,0.0,49660.0,3,10,8.0,2,1.0 +2845,3972,1970.1925330144961,70.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42410.0,0.0,0.0,41263.85,0.0,0.0,1,7,0.0,3,0.0 +2846,3973,1602.4917121070168,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51770.0,170.0,0.0,50025.75888604742,0.0,0.0,1,7,5.0,3,0.0 +2847,3974,2341.77393356657,74.0,111,0.0,78,2.0,1.0,3.0,2.0,0.0,5620.0,0.0,19980.0,0.0,0.0,26952.8,0.0,2710.0,1,8,7.0,4,2.0 +2848,3975,2282.8179712638016,39.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24152.55,0.0,27520.0,1,5,4.0,1,1.0 +2849,3977,1300.7254579409462,53.0,211,3590.0,77,2.0,2.0,4.0,2.5,9280.0,0.0,0.0,0.0,0.0,0.0,42809.55,0.0,31260.0,1,2,3.0,4,2.0 +2850,3978,1865.8557480781835,45.0,111,0.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,49632.0,0.0,38360.0,1,9,7.0,4,2.0 +2851,3979,4090.5036325438327,58.0,112,11670.0,47,2.0,1.0,3.0,2.0,0.0,0.0,0.0,16440.0,0.0,0.0,59659.55,0.0,34100.0,1,10,4.0,4,2.0 +2852,3980,1784.7652669839083,51.0,300,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41938.95,0.0,43760.0,1,0,0.0,4,2.0 +2853,3982,1557.67104593838,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,76470.0,0.0,0.0,62950.95,0.0,0.0,1,9,7.0,3,0.0 +2854,3983,2989.470025456193,34.0,111,17620.0,38,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16917.5,0.0,0.0,3,10,8.0,1,1.0 +2855,3984,1763.7657487219083,62.0,212,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,29990.0,0.0,5676.0,85174.6,0.0,29490.0,1,2,0.0,3,1.0 +2856,3985,1876.8761182355179,57.0,111,17620.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,36290.0,0.0,0.0,47202.35,0.0,0.0,1,9,7.0,3,1.0 +2857,3986,1755.6649958593775,52.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25352.2,0.0,28330.0,1,10,0.0,1,1.0 +2858,3987,3195.6616952732543,29.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57742.5,0.0,64670.0,1,10,8.0,3,2.0 +2859,3988,1890.5145286637248,37.0,120,2110.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31395.8,350.0,26780.0,3,0,1.0,4,1.0 +2860,3989,511.6381836419411,41.0,112,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,59327.85,0.0,56670.0,2,7,0.0,4,2.0 +2861,3990,1811.7054782152245,40.0,111,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,68845.6,0.0,61510.0,2,9,7.0,4,2.0 +2862,3991,2653.165484882704,58.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3747.0,0.0,59637.1,0.0,58960.0,1,7,0.0,3,2.0 +2863,3992,3032.1622343709564,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33420.0,0.0,0.0,32127.85,0.0,0.0,1,8,7.0,3,0.0 +2864,3993,2088.290045188875,57.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,131665.93862709776,0.0,162020.0,2,10,8.0,3,2.0 +2865,3994,4884.834441876279,77.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21680.0,0.0,0.0,23858.5,0.0,0.0,1,7,1.0,3,0.0 +2866,3995,792.837363838294,70.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33090.0,0.0,0.0,40379.15489815037,0.0,0.0,1,4,3.0,3,0.0 +2867,3996,1353.5228258372274,29.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36948.05,0.0,37010.0,3,9,7.0,4,2.0 +2868,3997,2424.695211239561,66.0,112,6850.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25670.0,0.0,0.0,30493.45,0.0,0.0,1,8,1.0,3,0.0 +2869,3998,2582.4830075467185,46.0,111,19060.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46879.35,0.0,35360.0,3,9,7.0,4,2.0 +2870,4000,4740.212406289272,47.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32080.0,0.0,36570.0,3,10,8.0,1,1.0 +2871,4002,2395.936314291568,24.0,111,0.0,85,0.0,0.0,3.0,1.8,0.0,8340.0,0.0,0.0,0.0,0.0,14878.0,0.0,0.0,3,7,5.0,4,0.0 +2872,4003,2526.7370215317937,54.0,111,23150.0,56,2.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24279.3,390.0,950.0,3,5,4.0,4,2.0 +2873,4005,786.718534162902,39.0,221,0.0,85,0.0,0.0,5.0,2.4,0.0,6280.0,0.0,0.0,0.0,0.0,23084.0,0.0,0.0,4,1,3.0,2,0.0 +2874,4007,2489.263816330989,45.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16988.45,0.0,17590.0,3,8,6.0,1,1.0 +2875,4008,2389.5034520528816,51.0,222,0.0,63,3,3.0,5.0,3.0,0.0,0.0,0.0,15420.0,0.0,0.0,69287.25,0.0,56800.0,2,1,0.0,4,4.0 +2876,4009,108.14539579212159,40.0,300,10480.0,46,2.0,0.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,25867.8,160.0,0.0,3,0,0.0,2,2.0 +2877,4010,3522.1172192845006,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32220.0,0.0,0.0,33678.1,0.0,0.0,1,7,0.0,3,0.0 +2878,4011,2057.2285315895347,69.0,112,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27320.0,0.0,0.0,22021.1,0.0,0.0,1,9,0.0,3,0.0 +2879,4012,796.6279390832715,49.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53768.65,0.0,35590.0,3,10,8.0,2,2.0 +2880,4014,1864.1165148027228,50.0,111,0.0,38,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,63847.85,0.0,72870.0,1,9,7.0,4,3.0 +2881,4015,1632.8038843524407,51.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,19013.15,0.0,20010.0,2,7,5.0,4,2.0 +2882,4016,2608.0120245940584,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18410.0,0.0,0.0,18141.0,0.0,0.0,3,5,4.0,1,0.0 +2883,4017,4273.072573292163,60.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6866.05,0.0,6050.0,3,8,1.0,1,0.0 +2884,4018,2140.204761606161,48.0,400,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30849.0,40.0,31030.0,3,0,0.0,3,2.0 +2885,4019,636.5962835751026,36.0,111,0.0,67,1.0,1.0,2.0,1.3,0.0,4800.0,0.0,0.0,0.0,0.0,18818.0,880.0,6040.0,3,8,7.0,2,1.0 +2886,4020,4689.19686868883,57.0,111,0.0,21,2.0,2.0,4.0,2.5,9700.0,0.0,0.0,0.0,0.0,0.0,32307.6,0.0,21280.0,3,7,6.0,4,2.0 +2887,4021,2291.4467309460565,45.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,99.0,0.0,3779.4,0.0,0.0,1,7,5.0,1,0.0 +2888,4022,1511.8851358984969,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62300.0,0.0,0.0,55555.7,0.0,0.0,1,9,7.0,3,0.0 +2889,4023,2565.0167025698447,81.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48620.0,0.0,0.0,46619.45,0.0,0.0,1,0,0.0,3,0.0 +2890,4024,1074.7029133072758,41.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18564.55,3960.0,8430.0,3,9,7.0,2,1.0 +2891,4027,1751.2103819080246,44.0,111,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38341.25,0.0,36940.0,2,10,8.0,2,1.0 +2892,4028,1009.0396911919009,24.0,112,3490.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15812.8,3020.0,6360.0,3,9,2.0,2,1.0 +2893,4029,3476.469013663154,67.0,111,5780.0,77,1.0,0.0,3.0,1.8,0.0,0.0,0.0,29010.0,0.0,0.0,43982.9,0.0,2000.0,2,7,5.0,4,1.0 +2894,4031,3416.085945818023,45.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49786.35,0.0,51900.0,2,6,5.0,4,2.0 +2895,4034,1032.1089546185328,58.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15050.0,0.0,0.0,15345.1,0.0,0.0,3,4,3.0,2,0.0 +2896,4035,2622.461393404583,53.0,111,0.0,21,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42672.85,0.0,48860.0,1,10,8.0,4,2.0 +2897,4037,2164.4377677132097,52.0,112,0.0,31,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,302.0,0.0,60515.81413108154,0.0,27750.0,1,6,0.0,4,2.0 +2898,4039,3097.021545869589,33.0,221,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10858.0,180.0,0.0,3,1,2.0,1,1.0 +2899,4040,2755.0130239340556,39.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48230.65,0.0,48300.0,2,8,7.0,4,2.0 +2900,4041,2727.4309834091064,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,75230.0,0.0,0.0,62848.95,0.0,10.0,1,10,8.0,3,0.0 +2901,4042,2998.1582258498656,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10891.95,0.0,0.0,3,9,7.0,1,0.0 +2902,4043,1949.1285371496758,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39440.0,0.0,0.0,35749.25,0.0,0.0,1,6,5.0,3,0.0 +2903,4044,966.0148341328868,37.0,111,0.0,68,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22232.55,750.0,14780.0,3,9,7.0,2,1.0 +2904,4045,2208.0235461954617,36.0,112,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40913.0447520622,0.0,42110.0,3,10,3.0,4,2.0 +2905,4046,1808.0261985340258,25.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20156.15,720.0,19650.0,3,6,4.0,1,1.0 +2906,4047,2356.220456612101,41.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42486.45,0.0,42180.0,2,10,8.0,4,2.0 +2907,4048,2344.5680469145004,31.0,112,3540.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44515.7,0.0,47070.0,2,8,1.0,4,2.0 +2908,4049,723.4660019735819,50.0,400,0.0,68,1.0,0.0,2.0,1.3,0.0,7030.0,0.0,0.0,0.0,0.0,12926.0,0.0,50.0,3,0,1.0,2,1.0 +2909,4050,2724.1497850963256,58.0,111,14380.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19560.0,0.0,0.0,35984.45,0.0,3300.0,3,10,8.0,3,1.0 +2910,4051,4166.576299423304,44.0,111,1700.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45658.45,0.0,43680.0,3,9,7.0,4,2.0 +2911,4053,1933.4175295817104,59.0,111,0.0,37,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,59.0,0.0,97126.25,0.0,112730.0,1,9,7.0,4,3.0 +2912,4054,2544.5065104607297,64.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1042.0,0.0,83652.9,0.0,125080.0,1,7,5.0,3,2.0 +2913,4055,1807.7310449737042,67.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27400.0,0.0,0.0,26648.4,0.0,0.0,1,0,1.0,3,0.0 +2914,4057,3538.962115465625,19.0,300,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12845.0,0.0,12840.0,3,0,0.0,1,1.0 +2915,4058,2473.3250634703954,64.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9810.0,0.0,0.0,11274.0,0.0,0.0,3,3,4.0,1,0.0 +2916,4059,1717.8049978353313,59.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46340.6,0.0,48340.0,3,8,7.0,3,2.0 +2917,4060,2075.3427260981416,83.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20330.0,0.0,0.0,20334.45,0.0,0.0,1,3,4.0,3,0.0 +2918,4061,1836.0447052195088,73.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29960.0,0.0,0.0,34811.35,0.0,0.0,1,6,0.0,3,0.0 +2919,4062,1461.8270515057088,70.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43340.0,0.0,0.0,41355.05,0.0,0.0,1,8,7.0,3,0.0 +2920,4064,1674.2116389399475,44.0,112,12980.0,21,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46500.0,0.0,31570.0,1,7,0.0,4,3.0 +2921,4065,2279.0832938666667,67.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,11530.0,0.0,0.0,15446.05,0.0,2920.0,3,9,7.0,1,1.0 +2922,4067,1643.2753353177181,51.0,111,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,76132.6,0.0,38150.0,2,9,7.0,4,2.0 +2923,4068,3189.670673698681,28.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,47.0,0.0,49356.6,0.0,38650.0,2,10,4.0,3,2.0 +2924,4071,6382.86077339925,27.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12540.0,0.0,6540.0,3,10,8.0,1,1.0 +2925,4074,525.5147654067738,40.0,112,0.0,68,1.0,1.0,3.0,1.8,9700.0,0.0,0.0,0.0,0.0,0.0,17794.0,0.0,820.0,3,7,0.0,2,1.0 +2926,4075,2620.315388470391,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32070.0,0.0,0.0,30439.1,0.0,0.0,1,9,7.0,3,0.0 +2927,4077,2664.9446227713256,58.0,112,0.0,78,0.0,0.0,1.0,1.0,3230.0,0.0,0.0,290.0,0.0,0.0,2160.1,0.0,0.0,3,9,2.0,1,0.0 +2928,4078,2176.515793219153,45.0,120,0.0,56,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,40983.55,0.0,39640.0,2,0,0.0,4,3.0 +2929,4080,587.5518427935092,43.0,400,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26567.25,150.0,23080.0,3,0,1.0,2,1.0 +2930,4081,2992.5896110641534,79.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53040.0,0.0,0.0,55012.24191596298,0.0,0.0,1,10,8.0,3,0.0 +2931,4082,2315.842648153034,43.0,112,220.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15568.85,0.0,14010.0,3,10,4.0,1,1.0 +2932,4083,3307.1775585499404,37.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28485.0,0.0,28090.0,3,8,6.0,1,1.0 +2933,4085,4870.502296349686,33.0,111,9330.0,46,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23843.25,0.0,7550.0,3,7,6.0,2,1.0 +2934,4086,3231.6632064709665,57.0,111,9100.0,78,1.0,0.0,2.0,1.5,7280.0,0.0,0.0,0.0,0.0,0.0,19782.0,0.0,330.0,3,7,5.0,2,1.0 +2935,4087,3370.584767172001,67.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20640.0,0.0,0.0,20798.0,0.0,0.0,3,10,0.0,1,0.0 +2936,4088,3037.3306675545464,56.0,400,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31013.8,0.0,550.0,1,0,0.0,4,2.0 +2937,4089,310.67956052370766,53.0,111,0.0,56,3,2.0,4.0,2.3,0.0,4410.0,0.0,0.0,0.0,0.0,40559.85,3180.0,27250.0,3,7,5.0,2,3.0 +2938,4092,2229.402227096735,33.0,120,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56252.25,0.0,45460.0,2,0,3.0,4,2.0 +2939,4093,3974.441086418028,23.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16560.3,0.0,17360.0,2,7,6.0,1,1.0 +2940,4094,4026.4456529037216,50.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22417.85,2350.0,18650.0,3,0,0.0,1,1.0 +2941,4095,1962.2566979680273,41.0,111,1150.0,54,1.0,0.0,2.0,1.3,0.0,7120.0,0.0,0.0,0.0,0.0,8660.0,0.0,0.0,5,10,8.0,2,1.0 +2942,4096,2076.3559352129896,52.0,111,0.0,85,1.0,1.0,4.0,2.5,9720.0,0.0,0.0,0.0,0.0,0.0,24808.4,0.0,15460.0,3,10,8.0,4,1.0 +2943,4098,1729.6089072396455,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34380.0,0.0,0.0,35510.2,0.0,0.0,1,8,7.0,3,0.0 +2944,4099,622.9428096354969,51.0,120,0.0,62,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18204.5,0.0,14330.0,3,0,0.0,2,1.0 +2945,4100,1984.0654573082452,71.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27720.0,0.0,0.0,24799.0,0.0,0.0,1,10,0.0,1,0.0 +2946,4101,2271.270447935889,48.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23133.2,0.0,25770.0,2,7,5.0,1,1.0 +2947,4102,2010.5002947458918,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58810.0,0.0,0.0,49097.95,0.0,0.0,3,7,5.0,3,0.0 +2948,4105,1410.387125360493,32.0,112,0.0,62,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,43086.8,0.0,30370.0,2,8,0.0,4,2.0 +2949,4106,1224.8010939164874,34.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36149.0,0.0,34260.0,2,8,7.0,4,2.0 +2950,4107,4065.927001625195,23.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,899.0,0.0,23575.95,0.0,17890.0,3,8,6.0,1,1.0 +2951,4108,3739.8976673007387,34.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1006.0,0.0,35898.7,0.0,40130.0,2,10,8.0,1,1.0 +2952,4110,1385.2447434172764,65.0,111,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13420.0,0.0,0.0,40761.25,0.0,0.0,1,5,4.0,3,1.0 +2953,4111,1848.3852187811174,29.0,111,7550.0,85,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37612.3,0.0,26380.0,3,10,8.0,4,1.0 +2954,4112,240.07928954246051,29.0,112,1160.0,56,1.0,1.0,3.0,1.6,0.0,1380.0,0.0,0.0,0.0,0.0,17286.0,1020.0,6540.0,3,9,1.0,2,1.0 +2955,4114,817.7776132493213,53.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21352.35,0.0,18750.0,3,9,7.0,2,1.0 +2956,4115,2922.8058773933753,32.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,6920.0,0.0,0.0,0.0,0.0,23829.0,0.0,0.0,3,6,5.0,1,1.0 +2957,4116,1879.5812006138638,60.0,300,0.0,37,2.0,1.0,3.0,2.0,0.0,4450.0,0.0,3610.0,0.0,0.0,38031.25,570.0,34030.0,3,0,0.0,4,2.0 +2958,4117,1334.161507375368,35.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36550.95,0.0,34750.0,3,9,7.0,4,2.0 +2959,4118,2627.939491678457,45.0,211,0.0,85,0.0,0.0,3.0,2.0,0.0,7560.0,0.0,0.0,0.0,0.0,11022.660598311157,0.0,0.0,3,2,3.0,5,0.0 +2960,4120,643.4811504307319,31.0,111,8190.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23686.05,0.0,7920.0,3,7,5.0,4,2.0 +2961,4121,2228.1478433776083,22.0,211,0.0,55,2.0,0.0,3.0,1.8,0.0,7880.0,0.0,0.0,0.0,0.0,14596.0,250.0,0.0,3,1,2.0,4,2.0 +2962,4122,1576.3467874993764,53.0,211,3630.0,64,3,2.0,3.0,2.0,390.0,0.0,0.0,0.0,0.0,0.0,43228.75,0.0,40340.0,1,1,2.0,4,3.0 +2963,4123,593.6144725648506,40.0,111,0.0,53,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24935.8,0.0,24140.0,2,8,6.0,2,1.0 +2964,4124,2097.533972768489,43.0,211,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37779.05,0.0,37610.0,2,1,2.0,4,2.0 +2965,4125,2310.2252761969858,39.0,111,0.0,54,1.0,0.0,7.0,3.2,0.0,0.0,0.0,3010.0,0.0,0.0,24492.0,0.0,0.0,3,6,4.0,4,1.0 +2966,4126,2548.1207705732595,32.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24307.7,0.0,26320.0,2,9,7.0,1,1.0 +2967,4130,2427.7829540837656,63.0,211,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,0.0,29810.0,36.0,0.0,33677.95,0.0,0.0,2,4,4.0,4,0.0 +2968,4131,2163.804784876041,46.0,400,4010.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11629.2,210.0,5040.0,2,0,0.0,1,1.0 +2969,4132,2532.3285893021466,37.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27904.45,0.0,30150.0,2,9,7.0,1,1.0 +2970,4133,2493.2869054375137,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32980.0,0.0,0.0,31640.5,0.0,0.0,1,9,0.0,3,0.0 +2971,4134,864.0416600645166,53.0,111,0.0,63,1.0,0.0,2.0,1.5,0.0,7170.0,0.0,0.0,0.0,0.0,11900.0,0.0,590.0,3,9,7.0,2,1.0 +2972,4135,3265.2244001342237,51.0,221,0.0,85,0.0,0.0,2.0,1.5,4800.0,0.0,0.0,23180.0,0.0,0.0,27980.0,0.0,0.0,1,1,2.0,2,0.0 +2973,4136,4313.433083300651,38.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44272.95,0.0,53910.0,2,10,8.0,1,1.0 +2974,4137,2110.9254181903343,86.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11680.0,0.0,0.0,11525.0,0.0,0.0,1,9,3.0,1,0.0 +2975,4138,1565.6048488764827,70.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23900.0,0.0,0.0,23648.5,0.0,0.0,1,9,7.0,3,0.0 +2976,4140,1315.021011800363,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33620.0,0.0,0.0,32116.85,0.0,0.0,1,8,7.0,3,0.0 +2977,4141,1049.7382542268635,77.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30930.0,0.0,0.0,31042.65,0.0,0.0,1,3,3.0,3,0.0 +2978,4142,2381.724428492008,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32200.0,0.0,0.0,31584.25,0.0,0.0,1,8,7.0,3,0.0 +2979,4143,1879.0048961182363,37.0,300,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21199.45,0.0,20360.0,3,0,0.0,2,1.0 +2980,4144,1525.9777147996128,58.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,52450.0,0.0,0.0,64719.35,0.0,21240.0,1,10,5.0,3,1.0 +2981,4145,738.9738825657037,33.0,111,0.0,56,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,27052.25,0.0,10340.0,3,7,5.0,2,1.0 +2982,4146,5435.744583281828,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16100.0,0.0,0.0,15869.25,0.0,0.0,3,9,7.0,1,0.0 +2983,4147,1908.7123375647823,76.0,300,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,1380.0,8180.0,0.0,0.0,9372.25,0.0,0.0,1,0,0.0,1,0.0 +2984,4148,1730.8168473321903,59.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6110.0,0.0,0.0,52224.55,0.0,50650.0,1,8,7.0,1,1.0 +2985,4149,1805.719143068866,61.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1135.0,0.0,31974.1,0.0,0.0,2,9,7.0,1,1.0 +2986,4150,1604.4007763186275,65.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25760.0,0.0,0.0,25937.0,0.0,0.0,1,0,1.0,3,0.0 +2987,4151,1034.122140518505,54.0,111,12810.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34483.0,0.0,22050.0,3,10,8.0,4,2.0 +2988,4152,2557.4656152166935,38.0,112,21590.0,37,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,79134.85,0.0,69630.0,3,9,1.0,4,2.0 +2989,4153,1731.6707421701842,66.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35010.0,0.0,0.0,32986.65,0.0,0.0,1,7,1.0,3,0.0 +2990,4157,2250.476906907478,75.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,44730.0,23.0,0.0,36326.35,0.0,0.0,1,4,0.0,1,0.0 +2991,4158,2636.7965171206524,30.0,112,0.0,13,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,69006.1,0.0,14330.0,3,9,0.0,4,2.0 +2992,4159,2349.5297593007913,67.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39580.0,0.0,0.0,35220.45,0.0,0.0,1,10,8.0,3,0.0 +2993,4160,1747.8585916405639,67.0,112,11580.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18300.0,0.0,0.0,28095.35,0.0,0.0,1,8,0.0,3,0.0 +2994,4161,2512.375971492033,86.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22650.0,5181.0,0.0,33905.9563525173,0.0,0.0,1,9,7.0,1,0.0 +2995,4162,1932.371960803868,46.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,129891.47489903658,0.0,118660.0,2,9,7.0,4,2.0 +2996,4163,643.5615699158533,50.0,112,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31936.55,0.0,26900.0,3,10,4.0,2,1.0 +2997,4167,814.9290672001698,44.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,12320.0,0.0,0.0,26844.8,0.0,9120.0,1,6,4.0,2,1.0 +2998,4169,1023.9935820337279,48.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,69.0,0.0,68988.55317625865,0.0,71320.0,1,10,3.0,4,2.0 +2999,4171,1803.7411952405769,83.0,400,0.0,71,1.0,1.0,3.0,2.0,7730.0,0.0,0.0,17640.0,0.0,0.0,31170.0,0.0,5510.0,1,0,1.0,4,1.0 +3000,4173,1099.5245999143215,43.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25662.55,0.0,26770.0,3,10,8.0,2,1.0 +3001,4174,2655.0240315558226,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,76190.0,0.0,0.0,68875.4,0.0,0.0,3,10,8.0,1,0.0 +3002,4176,3425.813523497299,65.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36770.0,56.0,0.0,131812.24241793161,0.0,0.0,1,8,0.0,3,0.0 +3003,4177,2168.0352403583283,65.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14990.0,0.0,0.0,14990.0,0.0,0.0,3,7,0.0,1,0.0 +3004,4179,2312.585245417171,48.0,300,7270.0,62,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33640.8,0.0,24340.0,2,0,0.0,4,2.0 +3005,4180,1145.184486848801,41.0,111,2680.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36481.0,0.0,34660.0,3,4,4.0,5,2.0 +3006,4181,2654.7824886802546,60.0,120,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16860.0,0.0,0.0,47497.65,0.0,28780.0,2,0,0.0,3,1.0 +3007,4182,1475.1639451784222,50.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34493.2,0.0,32930.0,2,6,5.0,2,1.0 +3008,4185,2301.5625851044856,45.0,112,0.0,12,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37964.35,0.0,38240.0,1,7,0.0,4,2.0 +3009,4186,2021.4126730923385,44.0,111,0.0,85,0.0,0.0,7.0,3.6,0.0,9960.0,0.0,0.0,0.0,0.0,31958.0,0.0,0.0,3,8,7.0,4,0.0 +3010,4187,3586.644858026279,34.0,120,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57563.85393838955,0.0,46380.0,2,0,0.0,4,2.0 +3011,4188,2807.013814025293,53.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18170.1,70.0,18180.0,3,9,7.0,1,1.0 +3012,4189,2094.5107793699376,24.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,35252.0,31458.7,0.0,0.0,2,9,7.0,1,1.0 +3013,4191,2219.9191870975797,90.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,350.0,9240.0,0.0,0.0,9634.0,0.0,0.0,5,2,3.0,1,0.0 +3014,4192,4122.36712924064,31.0,111,0.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,13997.35,0.0,3230.0,3,10,8.0,4,2.0 +3015,4193,1955.385644126403,78.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21320.0,0.0,0.0,21102.5,0.0,0.0,1,8,0.0,3,0.0 +3016,4196,1830.1716353797194,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36510.0,0.0,0.0,35936.02001707794,0.0,0.0,5,9,7.0,1,0.0 +3017,4198,3819.2797611886185,85.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37570.0,0.0,0.0,29204.25,0.0,0.0,1,10,8.0,1,0.0 +3018,4199,125.73581680293124,38.0,112,0.0,46,1.0,1.0,4.0,2.1,0.0,0.0,0.0,1190.0,0.0,0.0,36120.95,120.0,18970.0,3,7,0.0,2,1.0 +3019,4200,2146.5879571003243,60.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42370.1,0.0,49110.0,1,10,8.0,2,1.0 +3020,4201,388.8318879957137,35.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,16127.35,220.0,0.0,3,9,7.0,2,1.0 +3021,4203,2613.4174000751154,63.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,71690.0,0.0,0.0,144371.15,0.0,113000.0,1,10,8.0,2,1.0 +3022,4204,2397.793862892672,57.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30050.55,0.0,30770.0,1,8,7.0,2,2.0 +3023,4205,2134.8857662885243,28.0,111,4330.0,85,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29948.5,0.0,25950.0,3,7,5.0,4,1.0 +3024,4206,523.4735779412754,37.0,111,3240.0,54,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22551.9,450.0,13260.0,3,8,7.0,2,1.0 +3025,4209,3597.6981952606475,44.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6446.05,0.0,180.0,5,9,7.0,1,1.0 +3026,4210,4261.272594238786,31.0,111,350.0,63,1.0,0.0,3.0,1.8,0.0,6110.0,0.0,0.0,0.0,0.0,16137.15,470.0,2440.0,3,8,6.0,4,1.0 +3027,4211,2281.88325079366,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42450.0,0.0,0.0,41426.85,0.0,0.0,1,4,4.0,3,0.0 +3028,4212,1045.011042890705,58.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17600.0,0.0,0.0,38294.1,0.0,24730.0,1,10,5.0,3,1.0 +3029,4213,3348.672344184139,63.0,111,5950.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,6820.0,0.0,0.0,16718.0,0.0,0.0,3,9,7.0,3,0.0 +3030,4214,2436.4482556128005,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32250.0,0.0,0.0,30683.2,0.0,0.0,1,9,7.0,3,0.0 +3031,4215,2263.0435588113855,62.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,97.0,0.0,85607.0,0.0,101070.0,1,10,8.0,3,2.0 +3032,4216,1586.0293636886656,67.0,112,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,109980.0,997.0,0.0,98707.30317625865,0.0,0.0,1,9,1.0,3,1.0 +3033,4217,3068.1122268822137,78.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18960.0,0.0,0.0,18960.0,0.0,0.0,3,0,0.0,1,0.0 +3034,4218,2720.587759335571,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32980.0,0.0,0.0,31331.25,0.0,0.0,1,9,1.0,3,0.0 +3035,4219,3422.3316119492883,27.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34023.6,0.0,34690.0,3,8,7.0,3,2.0 +3036,4220,4368.770255389698,60.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,46520.0,0.0,0.0,49644.4,0.0,3600.0,1,8,7.0,5,1.0 +3037,4221,1485.2217432690288,51.0,111,0.0,67,1.0,0.0,1.0,1.0,3960.0,1410.0,0.0,5410.0,0.0,0.0,11526.4,0.0,920.0,3,8,7.0,1,1.0 +3038,4223,1655.9611592289677,62.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49560.0,1579.0,0.0,68498.11279510762,0.0,400.0,1,5,4.0,3,0.0 +3039,4224,1073.6505972679681,40.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23064.6,4180.0,16260.0,2,6,5.0,2,1.0 +3040,4225,5147.5336618724405,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12920.0,0.0,0.0,13787.0,0.0,0.0,3,10,8.0,1,0.0 +3041,4226,1646.2688193925362,66.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,40600.0,0.0,0.0,74613.2,0.0,44980.0,1,9,7.0,3,2.0 +3042,4227,3062.4675277282363,47.0,112,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,36584.35,0.0,26800.0,2,8,0.0,4,2.0 +3043,4230,1820.5206719550497,44.0,112,0.0,46,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37654.15,0.0,36170.0,3,9,2.0,4,1.0 +3044,4231,1849.5556016093449,59.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15491.5,1670.0,14140.0,3,7,5.0,1,1.0 +3045,4233,1705.2321542341172,43.0,400,0.0,69,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25902.95,220.0,27250.0,2,0,1.0,4,2.0 +3046,4234,1004.0697842366106,54.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28419.25,0.0,29970.0,2,10,8.0,2,1.0 +3047,4235,1915.5628975648215,49.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,809.0,0.0,104740.05,0.0,108210.0,2,8,7.0,4,2.0 +3048,4236,2942.1955038422916,84.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15530.0,0.0,0.0,18315.35,0.0,0.0,1,0,0.0,1,0.0 +3049,4237,1068.0258196171856,42.0,112,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26249.75,2220.0,21150.0,3,8,0.0,2,1.0 +3050,4238,517.923833303058,41.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25355.5,1400.0,22050.0,3,8,2.0,2,1.0 +3051,4240,2820.2976134859346,59.0,111,0.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,90379.4,0.0,109880.0,3,10,8.0,2,2.0 +3052,4245,2065.6836922370144,52.0,300,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32806.25,0.0,33370.0,2,0,1.0,4,2.0 +3053,4247,3126.885692641262,72.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19350.0,0.0,0.0,6937.2,0.0,0.0,1,9,7.0,3,0.0 +3054,4248,1737.5905446770103,74.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29560.0,0.0,0.0,29509.45,0.0,0.0,1,0,1.0,3,0.0 +3055,4249,2998.688962247797,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15280.0,0.0,0.0,17326.8,0.0,0.0,1,8,7.0,1,0.0 +3056,4251,2462.427648792062,78.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19160.0,0.0,0.0,26201.0,0.0,7210.0,1,0,0.0,3,0.0 +3057,4252,2292.667006769657,46.0,112,0.0,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,291.0,0.0,21129.4725,0.0,0.0,1,9,1.0,1,1.0 +3058,4253,2113.5506133444887,48.0,111,4420.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14040.0,0.0,0.0,30823.95,0.0,12530.0,3,9,7.0,3,1.0 +3059,4254,5092.66250096308,80.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29050.0,0.0,0.0,27740.35,0.0,0.0,1,8,0.0,1,0.0 +3060,4257,2539.4945010265806,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45620.0,0.0,0.0,42773.2,0.0,0.0,1,10,8.0,3,0.0 +3061,4258,2034.022570122535,40.0,111,4110.0,12,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,30129.2,10.0,0.0,2,6,4.0,4,1.0 +3062,4259,2020.5864135749562,54.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53373.8,0.0,52790.0,1,8,6.0,4,2.0 +3063,4260,2297.2315913598854,37.0,111,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27429.35,0.0,26000.0,2,8,7.0,4,2.0 +3064,4261,3141.6190880712584,44.0,112,0.0,55,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,41912.4,0.0,34010.0,1,9,1.0,4,2.0 +3065,4262,1448.147764560541,42.0,111,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36735.15,0.0,35410.0,3,7,6.0,4,2.0 +3066,4263,2849.859645709215,62.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30220.0,0.0,0.0,28589.4,0.0,0.0,3,9,7.0,3,0.0 +3067,4264,2082.291383034007,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6650.0,0.0,0.0,8772.75,0.0,0.0,1,8,7.0,1,0.0 +3068,4268,2702.369899838458,55.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32625.55,0.0,21670.0,1,10,4.0,3,2.0 +3069,4269,999.5394085223622,35.0,111,0.0,52,1.0,0.0,4.0,1.9,0.0,8800.0,0.0,0.0,0.0,0.0,15550.0,0.0,0.0,3,10,8.0,2,1.0 +3070,4271,4885.3125186984535,67.0,221,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,49830.0,0.0,0.0,48080.7,0.0,0.0,5,1,1.0,5,0.0 +3071,4272,2852.473151374279,32.0,112,0.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30149.5,0.0,22450.0,2,8,0.0,4,2.0 +3072,4273,1913.0456065138574,79.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11100.0,0.0,0.0,11076.0,0.0,0.0,1,0,0.0,1,0.0 +3073,4275,2475.5181343389454,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9640.0,0.0,0.0,11320.0,0.0,0.0,3,9,7.0,1,0.0 +3074,4276,2480.8213386323523,24.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,9,7.0,3,0.0 +3075,4277,1737.7881808754375,70.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24670.0,0.0,0.0,22097.6,0.0,0.0,1,8,0.0,1,0.0 +3076,4278,1610.9269677813945,52.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17498.25,0.0,17500.0,2,0,0.0,1,1.0 +3077,4279,411.5342578507684,33.0,112,0.0,85,0.0,0.0,3.0,1.6,0.0,6040.0,0.0,0.0,0.0,0.0,15858.0,0.0,0.0,3,6,0.0,2,0.0 +3078,4280,1248.0310580378045,27.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,7030.0,0.0,0.0,0.0,0.0,17611.95,0.0,0.0,3,8,7.0,2,0.0 +3079,4281,1230.2862410200355,36.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23919.8,0.0,16590.0,3,8,6.0,2,2.0 +3080,4283,3038.802622755767,77.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19710.0,0.0,0.0,19103.35,0.0,0.0,1,6,0.0,1,0.0 +3081,4285,256.0995404585488,25.0,300,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36617.3,0.0,36290.0,2,0,0.0,3,2.0 +3082,4286,1631.6638885594755,66.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33080.0,0.0,0.0,44314.97862423882,0.0,17300.0,1,3,4.0,3,0.0 +3083,4287,1861.7768504713758,49.0,120,0.0,46,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,93763.34716481449,0.0,88770.0,1,0,0.0,4,2.0 +3084,4288,1648.7805749597912,64.0,112,0.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,38060.0,750.0,0.0,40333.6,0.0,0.0,3,8,3.0,3,1.0 +3085,4289,1925.6972787954353,89.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,46990.0,0.0,0.0,39669.45,0.0,0.0,1,10,8.0,1,0.0 +3086,4290,993.3324480606309,46.0,111,0.0,37,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,100153.2,0.0,109880.0,5,9,7.0,4,2.0 +3087,4291,3364.7553294206723,42.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,101332.91322082821,0.0,103720.0,1,10,8.0,4,2.0 +3088,4294,2127.1877303016795,63.0,112,2200.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,30700.0,0.0,0.0,28240.45,0.0,0.0,1,7,0.0,3,1.0 +3089,4295,2009.7390903700102,82.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18940.0,0.0,0.0,18675.75,0.0,0.0,3,0,0.0,3,0.0 +3090,4296,2985.008485122595,50.0,111,6350.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,33752.071413108155,0.0,36150.0,1,10,8.0,4,2.0 +3091,4298,2862.9143735200114,42.0,111,1670.0,56,1.0,1.0,1.0,1.0,0.0,1380.0,0.0,0.0,0.0,0.0,15907.15,810.0,9920.0,3,7,5.0,1,1.0 +3092,4299,2882.311702778005,39.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19228.3,0.0,21080.0,1,8,6.0,1,1.0 +3093,4300,2344.590149474251,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23070.0,265.0,0.0,21758.207623020764,0.0,0.0,1,10,8.0,1,0.0 +3094,4301,2112.1684535858617,63.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51680.0,0.0,0.0,52169.75,0.0,0.0,1,9,0.0,3,0.0 +3095,4305,2926.502523045668,37.0,111,16280.0,62,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,14.0,0.0,33059.25,0.0,10000.0,2,9,7.0,4,2.0 +3096,4306,1358.3892804986829,55.0,111,0.0,40,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46060.45,0.0,44090.0,1,5,4.0,3,2.0 +3097,4309,2170.4065796699297,38.0,111,11160.0,47,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49415.2,0.0,37450.0,3,10,8.0,4,2.0 +3098,4310,6384.649373579051,59.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31354.9,2390.0,30300.0,3,10,8.0,2,2.0 +3099,4311,3016.554138557673,32.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56162.25,0.0,13040.0,2,8,1.0,4,2.0 +3100,4312,1866.7460459818874,69.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20910.0,0.0,0.0,66729.85,0.0,0.0,1,4,3.0,3,1.0 +3101,4314,2926.3516840128163,33.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50413.4,0.0,43670.0,3,10,8.0,4,2.0 +3102,4316,2493.430141240365,58.0,221,1510.0,33,3,1.0,3.0,2.0,0.0,0.0,0.0,22990.0,0.0,0.0,33448.04191596298,0.0,1360.0,1,1,1.0,2,3.0 +3103,4317,2355.185481756544,43.0,221,780.0,43,2.0,0.0,5.0,2.4,0.0,3220.0,0.0,0.0,0.0,0.0,16702.75,0.0,0.0,2,1,2.0,4,2.0 +3104,4319,5337.481206643763,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,7130.0,8090.0,0.0,0.0,17416.0,0.0,0.0,3,9,7.0,1,0.0 +3105,4320,2460.7800152550876,45.0,300,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5604.25,0.0,0.0,1,0,0.0,1,1.0 +3106,4321,2167.0812824857635,89.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25200.0,0.0,0.0,24242.0,0.0,0.0,1,4,4.0,3,0.0 +3107,4322,3871.279902304563,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,6390.0,3310.0,0.0,0.0,14466.0,0.0,0.0,3,9,7.0,5,0.0 +3108,4323,2675.1898833637,69.0,111,0.0,31,1.0,0.0,1.0,1.0,0.0,0.0,0.0,20110.0,0.0,0.0,25120.25,0.0,5350.0,3,9,7.0,1,1.0 +3109,4324,1534.077738625064,48.0,212,0.0,38,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,75436.2,0.0,82600.0,1,3,0.0,4,4.0 +3110,4327,1842.275613908328,37.0,112,5910.0,52,2.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,36421.4,0.0,21430.0,2,9,0.0,4,2.0 +3111,4328,3623.1602196254544,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20000.0,0.0,0.0,19291.35,0.0,0.0,3,9,7.0,1,0.0 +3112,4329,2378.8206039633587,38.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25353.05,0.0,20040.0,2,9,7.0,2,1.0 +3113,4330,928.2367009651546,44.0,112,0.0,85,1.0,0.0,4.0,2.1,0.0,10740.0,0.0,0.0,0.0,0.0,19504.0,0.0,0.0,3,8,1.0,2,1.0 +3114,4333,2174.8153259735686,49.0,300,0.0,67,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,30018.15,0.0,18530.0,2,0,0.0,4,1.0 +3115,4334,2267.7601141992136,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51430.0,0.0,0.0,46950.1,0.0,0.0,1,8,0.0,3,0.0 +3116,4335,1824.8103183760852,52.0,112,0.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,5030.0,0.0,0.0,67668.95,0.0,67270.0,1,9,0.0,4,4.0 +3117,4336,2411.4993260309748,50.0,300,0.0,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,0,0.0,1,1.0 +3118,4339,413.25459052352346,44.0,400,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,291.0,0.0,29351.95,0.0,21970.0,2,0,1.0,2,1.0 +3119,4340,2624.371757566845,43.0,111,0.0,55,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,59081.65,0.0,59660.0,3,9,7.0,4,2.0 +3120,4341,2636.960125083394,64.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18980.0,0.0,0.0,18150.2,0.0,0.0,5,9,2.0,1,0.0 +3121,4344,1376.1471513275105,37.0,111,0.0,62,3,2.0,5.0,2.6,0.0,5850.0,0.0,0.0,0.0,0.0,43588.0,120.0,23610.0,3,9,7.0,4,3.0 +3122,4345,3088.7779045915568,29.0,111,3420.0,67,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54378.75,0.0,53100.0,3,8,7.0,4,2.0 +3123,4346,1874.9317897592148,83.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,73190.0,0.0,0.0,61826.181209408904,0.0,0.0,1,6,4.0,3,0.0 +3124,4347,3363.431265432905,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12730.0,0.0,0.0,12730.0,0.0,0.0,3,10,8.0,1,0.0 +3125,4349,1739.9255455637071,50.0,111,0.0,38,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56627.8,1710.0,60270.0,1,6,5.0,4,3.0 +3126,4351,6435.135511523145,45.0,211,0.0,85,0.0,0.0,3.0,1.8,11870.0,0.0,0.0,0.0,0.0,0.0,21052.0,0.0,0.0,3,2,3.0,2,0.0 +3127,4354,1799.5915607933457,49.0,112,4350.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34208.05,1040.0,25700.0,2,5,0.0,4,2.0 +3128,4356,2182.817056027642,84.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19020.0,0.0,0.0,25765.0,0.0,0.0,5,7,1.0,3,0.0 +3129,4357,952.2068111739248,43.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37730.65,0.0,40410.0,1,6,5.0,4,2.0 +3130,4358,5883.209275207856,32.0,111,0.0,38,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41187.4,0.0,44560.0,3,10,8.0,5,1.0 +3131,4359,2917.865514348733,37.0,221,10270.0,52,2.0,1.0,4.0,2.1,9720.0,0.0,0.0,0.0,0.0,0.0,36074.0,420.0,13310.0,2,1,3.0,4,2.0 +3132,4361,1973.050597795024,55.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20890.0,69.0,0.0,27722.8,0.0,12300.0,2,10,8.0,3,1.0 +3133,4362,504.1176870152076,45.0,111,0.0,85,1.0,0.0,4.0,2.5,0.0,3760.0,0.0,0.0,0.0,0.0,22383.75,0.0,0.0,3,8,7.0,2,1.0 +3134,4363,1466.284520103174,30.0,221,8290.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34522.95,0.0,26260.0,3,1,3.0,4,2.0 +3135,4364,2422.46443043809,84.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14710.0,0.0,0.0,14224.45,0.0,0.0,1,8,0.0,1,0.0 +3136,4365,1832.7877086896945,58.0,221,6270.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18280.0,0.0,0.0,35080.65,0.0,19110.0,1,1,2.0,3,1.0 +3137,4366,1480.4650448956747,59.0,111,0.0,21,1.0,1.0,3.0,2.0,0.0,0.0,0.0,5310.0,0.0,0.0,24908.7,0.0,6120.0,1,6,4.0,4,1.0 +3138,4367,327.7866237991228,46.0,300,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30405.3,0.0,29760.0,3,0,1.0,2,1.0 +3139,4369,2094.461178036347,41.0,300,5600.0,62,3,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23565.7,0.0,18650.0,2,0,1.0,4,3.0 +3140,4370,3804.2061527300634,54.0,112,0.0,77,0.0,0.0,1.0,1.0,3980.0,0.0,0.0,0.0,0.0,0.0,6986.0,0.0,0.0,3,9,0.0,1,0.0 +3141,4372,3056.7227223092173,50.0,111,670.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50477.6383831926,0.0,53520.0,1,9,7.0,4,2.0 +3142,4373,4574.600280832985,45.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,125.0,0.0,42591.85,0.0,37840.0,3,10,8.0,2,1.0 +3143,4376,1898.097578234295,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44020.0,0.0,0.0,39909.8,0.0,0.0,1,8,7.0,3,0.0 +3144,4379,2702.797299023574,34.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18717.5,420.0,18600.0,3,7,5.0,1,1.0 +3145,4380,3954.344431669679,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17190.0,0.0,0.0,16173.3,0.0,0.0,3,6,4.0,1,0.0 +3146,4381,3495.4259367613276,40.0,111,0.0,85,0.0,0.0,1.0,1.0,1360.0,0.0,0.0,5380.0,0.0,0.0,9464.0,0.0,0.0,3,9,7.0,1,0.0 +3147,4382,270.7023740159826,40.0,111,0.0,42,2.0,2.0,7.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,57439.15,0.0,50460.0,2,8,6.0,4,2.0 +3148,4384,1866.7125927512818,45.0,400,7670.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28866.2,0.0,20700.0,1,0,0.0,4,2.0 +3149,4386,3149.965965915401,79.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27280.0,0.0,0.0,24919.55409121077,0.0,0.0,1,10,4.0,1,0.0 +3150,4387,2858.837709955307,86.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17210.0,0.0,0.0,16566.5,0.0,0.0,1,9,2.0,1,0.0 +3151,4388,2384.434335381095,73.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16670.0,0.0,0.0,16257.95,0.0,0.0,1,8,0.0,1,0.0 +3152,4389,700.4519516321199,44.0,221,0.0,64,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38994.05,0.0,34900.0,3,1,2.0,2,2.0 +3153,4390,2289.7483930007556,86.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,70.0,9290.0,0.0,0.0,10800.0,0.0,0.0,3,9,7.0,1,0.0 +3154,4392,1895.2245374250167,58.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66892.3,0.0,75880.0,1,10,8.0,3,2.0 +3155,4393,3097.1921997507993,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22640.0,0.0,0.0,22424.05,0.0,0.0,1,8,7.0,1,0.0 +3156,4395,1645.3450879975005,44.0,300,0.0,69,2.0,0.0,2.0,1.5,0.0,7170.0,0.0,0.0,0.0,0.0,12692.0,0.0,0.0,3,0,1.0,2,2.0 +3157,4396,2085.892070640604,56.0,300,680.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30967.6,0.0,31850.0,2,0,1.0,3,2.0 +3158,4397,3165.197943109052,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40650.0,0.0,0.0,45677.52665814228,0.0,0.0,1,10,8.0,3,0.0 +3159,4398,10034.992363605164,47.0,112,8380.0,62,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,35000.0,0.0,19450.0,5,7,0.0,4,2.0 +3160,4399,2340.200079701507,53.0,112,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,51.0,0.0,31252.55,0.0,35980.0,2,10,0.0,1,1.0 +3161,4403,2579.753921934982,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44130.0,0.0,0.0,39568.3,0.0,700.0,2,4,3.0,3,0.0 +3162,4404,3089.399191130602,41.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,790.0,0.0,94560.3,0.0,105890.0,2,9,7.0,4,2.0 +3163,4405,1954.7400180488205,61.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19450.0,0.0,0.0,24919.45,0.0,6250.0,2,0,0.0,3,0.0 +3164,4407,910.5744889405684,44.0,111,0.0,67,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,27549.4,0.0,18410.0,3,7,5.0,4,1.0 +3165,4410,2459.983207595183,51.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20745.4,0.0,21060.0,3,7,5.0,1,1.0 +3166,4411,1772.7121036598976,32.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,5940.0,0.0,0.0,0.0,0.0,17043.0,0.0,0.0,3,9,7.0,2,0.0 +3167,4412,3774.1654805191565,24.0,111,13150.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14718.0,0.0,920.0,3,8,7.0,1,0.0 +3168,4413,2731.0322960021363,40.0,400,0.0,69,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41284.25,0.0,34730.0,3,0,0.0,4,2.0 +3169,4414,1437.5083837451282,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47190.0,0.0,0.0,42907.95,0.0,0.0,1,9,7.0,3,0.0 +3170,4415,2322.679939675445,51.0,120,2270.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33807.7,0.0,25910.0,1,0,0.0,4,2.0 +3171,4416,1648.6744857503563,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10440.0,0.0,0.0,11859.0,0.0,0.0,3,9,7.0,1,0.0 +3172,4418,2277.69895910573,30.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19526.45,0.0,21310.0,1,9,7.0,1,1.0 +3173,4419,1022.2775106798324,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28460.0,887.0,0.0,27837.2,0.0,0.0,1,7,5.0,3,0.0 +3174,4420,744.709014297521,39.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23631.25,4490.0,11440.0,3,9,7.0,2,1.0 +3175,4422,2166.9383546625354,40.0,300,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,53769.95,0.0,58500.0,2,0,0.0,4,2.0 +3176,4424,1379.52531300892,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15180.0,0.0,0.0,15719.55,0.0,0.0,3,4,3.0,1,0.0 +3177,4425,1934.1487988090266,56.0,112,0.0,52,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,770.0,2.0,49162.35,0.0,50990.0,1,6,0.0,4,3.0 +3178,4426,588.3435804576716,46.0,300,0.0,42,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33363.8,0.0,27750.0,2,0,0.0,2,1.0 +3179,4427,1686.4400386581501,55.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6420.0,0.0,0.0,28911.35,0.0,22860.0,1,0,1.0,1,1.0 +3180,4429,2452.71120964496,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36530.0,242.0,0.0,33333.40381151038,0.0,0.0,1,9,7.0,3,0.0 +3181,4430,2549.8439380968102,63.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40900.0,170.0,0.0,38731.75,0.0,0.0,1,0,0.0,2,0.0 +3182,4432,626.2491862155588,44.0,300,0.0,56,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27232.75,0.0,16390.0,1,0,0.0,2,1.0 +3183,4434,2471.5947108482646,52.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48482.55,0.0,53460.0,1,8,0.0,3,2.0 +3184,4435,3478.158854291584,61.0,111,0.0,56,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,76252.85,0.0,95780.0,5,10,8.0,4,4.0 +3185,4436,1108.1678397395237,34.0,111,3520.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34586.45,0.0,31050.0,3,9,7.0,4,2.0 +3186,4437,3105.426857200145,42.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21361.0,310.0,0.0,2,8,6.0,4,2.0 +3187,4438,2948.6170761292665,40.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27409.1,0.0,30430.0,2,0,0.0,1,1.0 +3188,4439,2636.5020508180214,26.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21508.7,2820.0,18830.0,3,7,6.0,1,1.0 +3189,4440,548.6044734867148,36.0,111,6520.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,8347.05,0.0,0.0,3,7,5.0,2,1.0 +3190,4441,1859.883618461426,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,80110.0,17775.0,0.0,94986.233775589,0.0,0.0,1,9,7.0,3,0.0 +3191,4442,1889.558984993671,42.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,203.0,0.0,29098.2,0.0,29280.0,3,8,2.0,1,1.0 +3192,4443,3472.1598940000517,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14120.0,0.0,0.0,13987.0,0.0,0.0,5,9,7.0,3,0.0 +3193,4444,2746.0913974634514,82.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20680.0,0.0,0.0,20085.8,0.0,0.0,1,9,1.0,1,0.0 +3194,4446,2410.207583524886,37.0,400,0.0,38,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31739.9,0.0,35550.0,2,0,1.0,2,1.0 +3195,4447,7006.765042122714,28.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42617.0,150.0,45010.0,3,10,8.0,3,2.0 +3196,4448,1166.692785299226,41.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24624.0,1220.0,13950.0,3,10,8.0,2,1.0 +3197,4449,2662.4002085322777,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13370.0,0.0,0.0,14529.0,0.0,0.0,3,8,6.0,1,0.0 +3198,4450,3874.097759533762,59.0,111,0.0,74,0.0,0.0,3.0,2.0,24080.0,0.0,0.0,8190.0,0.0,0.0,56239.45,0.0,0.0,3,9,7.0,2,0.0 +3199,4452,2346.016140065068,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12330.0,0.0,0.0,13352.0,0.0,0.0,3,9,7.0,1,0.0 +3200,4453,2128.0593408533837,51.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,52668.95,0.0,57780.0,1,8,7.0,4,2.0 +3201,4454,2168.941254964411,72.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29900.0,0.0,0.0,28694.85,0.0,0.0,1,2,2.0,3,0.0 +3202,4455,2726.2408421093414,25.0,300,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24492.0,0.0,23210.0,3,0,1.0,1,1.0 +3203,4456,2487.761183640346,27.0,120,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32472.05,0.0,32710.0,3,0,0.0,4,2.0 +3204,4458,614.2282722760598,43.0,111,0.0,52,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20103.7,3260.0,12520.0,3,6,4.0,2,2.0 +3205,4461,1825.944287263955,62.0,112,5940.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30200.0,0.0,0.0,34216.4,0.0,0.0,1,8,0.0,3,0.0 +3206,4462,1982.312107138619,56.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32676.5,0.0,37080.0,1,6,4.0,3,2.0 +3207,4463,2384.5716875272055,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34920.0,0.0,0.0,30432.4,0.0,0.0,2,8,6.0,1,0.0 +3208,4465,813.563483735994,46.0,111,0.0,33,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44879.3,0.0,45060.0,1,6,5.0,2,1.0 +3209,4466,1851.4910119436381,37.0,221,21810.0,00,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36109.0,0.0,13710.0,3,1,2.0,4,2.0 +3210,4469,2650.530572185502,32.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49468.1,0.0,45100.0,2,8,7.0,4,2.0 +3211,4470,1881.7494804839048,68.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22010.0,0.0,0.0,25489.8,0.0,0.0,1,0,3.0,3,0.0 +3212,4471,2181.195467512402,66.0,300,0.0,72,1.0,1.0,3.0,2.0,0.0,500.0,0.0,26660.0,0.0,0.0,44828.60317625865,1450.0,14960.0,2,0,0.0,4,1.0 +3213,4472,2955.151941590519,70.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10300.0,0.0,0.0,10099.15,0.0,0.0,1,8,3.0,1,0.0 +3214,4474,1689.74412918573,69.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17100.0,0.0,0.0,29086.95,0.0,0.0,1,0,0.0,3,0.0 +3215,4475,1362.9354071297691,40.0,111,0.0,63,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,43313.5,2160.0,34130.0,3,8,7.0,4,2.0 +3216,4476,2833.821613761612,69.0,111,1580.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22920.0,0.0,0.0,25697.65,0.0,1540.0,3,7,5.0,3,0.0 +3217,4478,1812.8110511896866,50.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33844.0,0.0,41810.0,1,8,6.0,1,1.0 +3218,4479,1554.2324162017476,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51980.0,0.0,0.0,48432.45,0.0,0.0,1,8,0.0,3,0.0 +3219,4480,3145.0724902931897,28.0,211,0.0,67,2.0,0.0,3.0,1.8,0.0,9910.0,0.0,0.0,0.0,0.0,14618.05,0.0,0.0,3,1,2.0,4,2.0 +3220,4482,2159.7820541763235,90.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,60230.0,759.0,0.0,50915.4,0.0,0.0,1,5,4.0,1,0.0 +3221,4484,2606.18250319606,43.0,112,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,54147.4,0.0,53990.0,2,9,0.0,4,2.0 +3222,4485,382.1227337616135,37.0,120,5320.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19089.5,0.0,7860.0,3,0,0.0,2,1.0 +3223,4486,2306.7286760589936,62.0,211,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22360.0,0.0,0.0,43831.25,0.0,20840.0,1,1,2.0,3,1.0 +3224,4487,2072.37476452931,46.0,111,840.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45198.35,0.0,48310.0,2,5,4.0,4,2.0 +3225,4488,2256.8660444313673,50.0,120,19030.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66982.7,0.0,52100.0,1,0,0.0,3,2.0 +3226,4489,4151.5146230598775,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16870.0,0.0,0.0,15560.7,0.0,0.0,3,10,8.0,1,0.0 +3227,4490,655.6359948033377,35.0,211,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24175.45,4040.0,14900.0,2,3,4.0,2,1.0 +3228,4491,1778.1629566546385,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17400.0,0.0,0.0,16921.6,0.0,0.0,1,6,4.0,3,0.0 +3229,4492,1984.2573120661616,35.0,112,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39072.2,0.0,37420.0,2,9,3.0,4,2.0 +3230,4494,2566.8854619751996,62.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37100.0,461.0,0.0,37991.05,0.0,0.0,2,1,2.0,3,0.0 +3231,4495,1769.878787099011,48.0,112,9080.0,42,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12120.0,0.0,0.0,3,6,0.0,1,1.0 +3232,4497,4069.016925120548,22.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35354.45,0.0,35750.0,3,9,0.0,3,2.0 +3233,4500,3375.9511810085855,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19990.0,0.0,0.0,19620.0,0.0,0.0,5,10,8.0,1,0.0 +3234,4501,3790.735102037251,26.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28338.95,490.0,28080.0,3,9,7.0,3,2.0 +3235,4502,2689.998883308523,27.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,65623.7,0.0,77650.0,3,8,7.0,3,2.0 +3236,4505,2524.2311456692064,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26190.0,0.0,0.0,25427.1,0.0,0.0,3,8,7.0,1,0.0 +3237,4506,1912.6584317868023,53.0,400,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18525.8,750.0,18020.0,3,0,0.0,1,1.0 +3238,4508,2513.36457526184,36.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48166.4,0.0,47830.0,2,7,0.0,4,2.0 +3239,4510,1677.2191458851141,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49220.0,0.0,0.0,43995.6,0.0,0.0,1,6,4.0,3,0.0 +3240,4511,1139.6620421297991,62.0,112,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27170.0,532.0,0.0,62783.15,0.0,40780.0,1,9,3.0,3,1.0 +3241,4512,2927.3101330903564,51.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,6810.0,0.0,0.0,25687.3,0.0,19710.0,3,5,4.0,3,1.0 +3242,4513,261.1670484099969,48.0,0,2920.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39284.65,0.0,27610.0,3,0,0.0,2,2.0 +3243,4515,516.762941181423,46.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,26867.3,360.0,16160.0,3,6,4.0,2,1.0 +3244,4516,2325.779125932239,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37290.0,0.0,0.0,34942.55,0.0,0.0,1,7,5.0,3,0.0 +3245,4517,2111.6991897177277,57.0,300,29850.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,30.0,0.0,77246.35,0.0,48670.0,1,0,0.0,4,2.0 +3246,4519,1751.2984732642685,47.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,65570.65,0.0,75560.0,2,10,8.0,4,2.0 +3247,4522,1161.1686955483733,37.0,211,0.0,67,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21217.65,1080.0,20410.0,2,2,3.0,2,1.0 +3248,4523,2988.705329128738,24.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39158.1,240.0,31600.0,3,9,7.0,4,2.0 +3249,4526,2189.4399930704876,89.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16460.0,1283.0,0.0,18349.45,0.0,0.0,1,0,0.0,3,0.0 +3250,4527,1248.6983052169558,95.0,112,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23860.0,0.0,0.0,23269.8,0.0,0.0,1,8,0.0,3,0.0 +3251,4528,3077.56175105339,29.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60713.05,0.0,68740.0,1,9,7.0,5,2.0 +3252,4530,632.7228936460393,35.0,111,0.0,68,1.0,1.0,4.0,1.9,0.0,3000.0,0.0,0.0,0.0,0.0,31424.05,100.0,13100.0,3,9,7.0,2,1.0 +3253,4531,2576.5585134323323,57.0,112,7660.0,64,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33582.05,0.0,28490.0,3,10,3.0,2,2.0 +3254,4532,3511.918205955605,53.0,111,0.0,46,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,83106.25,2070.0,82060.0,2,9,7.0,4,3.0 +3255,4534,1898.913774603481,59.0,112,3420.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45300.0,151.0,0.0,45049.23382952499,0.0,0.0,1,10,0.0,3,0.0 +3256,4535,2094.3754718502933,53.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21094.05,0.0,21500.0,3,8,3.0,1,1.0 +3257,4537,3430.3345320998114,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2404.0,0.0,0.0,3,9,7.0,1,0.0 +3258,4538,3628.6555817419976,53.0,221,3580.0,54,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,770.0,0.0,77244.3,0.0,80760.0,1,1,2.0,4,3.0 +3259,4540,1978.0456611958693,72.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,2740.0,45100.0,0.0,0.0,42850.15,0.0,0.0,3,0,0.0,3,0.0 +3260,4541,2813.816025211525,25.0,300,4700.0,68,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,51472.15,0.0,32860.0,3,0,0.0,4,2.0 +3261,4545,2281.290500758422,44.0,111,9280.0,38,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,86505.0,97982.65,0.0,2270.0,3,8,7.0,4,2.0 +3262,4546,1611.4694004835953,60.0,112,3930.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23290.0,0.0,0.0,38116.25,0.0,14280.0,2,4,0.0,3,1.0 +3263,4547,1466.4980907130994,46.0,111,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,3490.0,0.0,0.0,39656.35,0.0,29600.0,3,9,7.0,2,1.0 +3264,4548,2007.997986867846,67.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,3920.0,4880.0,0.0,0.0,8070.7,0.0,0.0,1,0,1.0,1,0.0 +3265,4550,3935.0939098656513,59.0,111,24760.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,16143.0,0.0,36807.15,0.0,0.0,1,9,7.0,1,0.0 +3266,4551,1873.9980102454665,45.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,68060.6,0.0,77880.0,2,5,4.0,3,2.0 +3267,4552,670.2360548494504,35.0,111,8470.0,62,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40771.9,410.0,24450.0,3,9,7.0,4,2.0 +3268,4553,1412.648952400686,25.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19127.6,260.0,19730.0,3,9,7.0,1,1.0 +3269,4555,1615.6691497346035,50.0,112,0.0,37,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,79381.7,0.0,79030.0,1,9,0.0,4,4.0 +3270,4556,2796.0942924607443,40.0,111,0.0,53,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26743.8,4900.0,15420.0,3,10,8.0,4,1.0 +3271,4557,1776.1730038249232,51.0,111,0.0,48,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37392.348569890884,0.0,37180.0,2,9,7.0,4,1.0 +3272,4558,1628.979389957297,77.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24680.0,0.0,0.0,24437.55,0.0,0.0,3,3,3.0,3,0.0 +3273,4560,2967.6780978406614,50.0,120,0.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,58641.85,0.0,58130.0,1,0,0.0,4,2.0 +3274,4563,2129.283761189517,55.0,112,0.0,54,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,2699.0,0.0,41131.9,0.0,43760.0,1,7,1.0,4,4.0 +3275,4566,2883.464479445628,47.0,111,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,57440.0,0.0,57280.0,3,10,8.0,4,2.0 +3276,4567,1664.36304746282,74.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19660.0,0.0,0.0,19255.9,0.0,0.0,1,0,0.0,3,0.0 +3277,4568,2157.3261661266574,80.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13190.0,0.0,0.0,16977.15,0.0,0.0,1,0,0.0,1,0.0 +3278,4571,2324.8886840386335,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17130.0,0.0,0.0,16049.8,0.0,0.0,1,10,8.0,1,0.0 +3279,4572,1561.8148075725553,84.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24360.0,13490.0,0.0,43574.330299155576,0.0,0.0,1,0,0.0,3,0.0 +3280,4577,637.3300037623866,43.0,111,0.0,81,1.0,0.0,3.0,1.8,0.0,7170.0,0.0,0.0,0.0,0.0,15532.0,0.0,0.0,3,9,7.0,2,1.0 +3281,4578,3271.2945541651666,44.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30261.65,0.0,28360.0,3,10,8.0,4,2.0 +3282,4579,1926.5323900426392,68.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18260.0,0.0,0.0,16446.1,0.0,50.0,1,0,0.0,3,0.0 +3283,4581,3653.946330744849,41.0,221,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,62119.65,0.0,59170.0,2,1,2.0,4,2.0 +3284,4583,1717.7771375074974,56.0,111,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36935.6,0.0,38910.0,1,9,7.0,3,2.0 +3285,4585,1851.1737971348891,56.0,112,5850.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,6980.0,0.0,0.0,18615.9,0.0,7160.0,1,9,3.0,4,1.0 +3286,4587,1750.0526859576516,82.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22400.0,0.0,0.0,19800.2,0.0,0.0,1,6,4.0,1,0.0 +3287,4590,1399.5630099752088,74.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21710.0,0.0,0.0,21274.75,0.0,0.0,1,8,1.0,3,0.0 +3288,4591,2857.5872280598055,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22320.0,391.0,0.0,20253.45,0.0,0.0,1,7,4.0,1,0.0 +3289,4592,2842.72348691997,54.0,111,0.0,21,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,80101.95,0.0,60980.0,2,8,6.0,4,4.0 +3290,4593,592.1983246740265,40.0,112,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26965.6,1560.0,27520.0,2,8,1.0,2,1.0 +3291,4594,600.9496380245042,50.0,111,0.0,47,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45533.25,0.0,47300.0,2,8,7.0,2,1.0 +3292,4595,1537.3174534565655,61.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,4350.0,0.0,0.0,57824.35,0.0,59120.0,2,7,0.0,3,2.0 +3293,4597,1091.8346491894558,36.0,300,10660.0,00,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,712.0,0.0,42251.3,0.0,28620.0,3,0,0.0,4,2.0 +3294,4598,2281.1605393205427,47.0,300,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38407.45,0.0,13210.0,2,0,0.0,4,2.0 +3295,4599,1774.5009085613847,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29090.0,0.0,0.0,27659.1,0.0,0.0,1,10,8.0,3,0.0 +3296,4600,1040.1627190113647,34.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45018.0,0.0,44760.0,3,10,8.0,4,2.0 +3297,4601,5557.047628333064,30.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36895.45,0.0,41650.0,3,10,8.0,1,1.0 +3298,4602,1178.7686278827841,50.0,111,13460.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20615.55,0.0,4890.0,3,8,7.0,2,1.0 +3299,4603,8961.015450250576,24.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30139.0,0.0,23350.0,3,8,7.0,3,1.0 +3300,4604,5457.740549339621,35.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19676.05,0.0,21180.0,3,6,4.0,1,1.0 +3301,4605,1516.8550215061177,51.0,221,0.0,43,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,231401.0,0.0,74440.0,1,1,2.0,4,3.0 +3302,4607,2532.864432673391,50.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15198.5,0.0,19700.0,1,8,7.0,1,1.0 +3303,4608,2164.4417099295697,74.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20680.0,0.0,0.0,18365.3,0.0,0.0,3,0,1.0,1,0.0 +3304,4609,2561.2654288616586,30.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50273.0,0.0,14240.0,3,8,7.0,3,2.0 +3305,4610,4017.654720213925,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3303.0,0.0,0.0,3,8,6.0,1,0.0 +3306,4612,1757.1701252506248,45.0,111,10700.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34849.25,0.0,25530.0,3,6,5.0,2,2.0 +3307,4613,368.578265035386,44.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,36.0,0.0,130938.9,0.0,131270.0,1,5,4.0,4,2.0 +3308,4614,3867.7539361606528,43.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,201.0,0.0,33868.95,0.0,37290.0,1,9,7.0,1,1.0 +3309,4615,1892.238726666446,81.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43210.0,0.0,0.0,38606.48672134256,0.0,0.0,1,10,0.0,3,0.0 +3310,4618,3507.243405533031,43.0,211,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20832.35,0.0,22040.0,2,1,3.0,1,1.0 +3311,4620,2267.6664655134746,47.0,111,16630.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39461.215046932775,0.0,9300.0,3,5,4.0,4,2.0 +3312,4621,2670.2222455200044,56.0,111,0.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42568.1,0.0,42450.0,2,9,7.0,3,2.0 +3313,4622,2567.5253765369466,74.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13430.0,0.0,0.0,13247.5,0.0,0.0,5,7,0.0,1,0.0 +3314,4623,1618.6179732791866,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31810.0,457.0,0.0,35481.2,0.0,0.0,1,9,7.0,3,0.0 +3315,4624,2499.372679258588,63.0,111,2300.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15580.0,0.0,0.0,25730.85,0.0,8190.0,3,7,6.0,3,1.0 +3316,4625,1814.6164503755435,88.0,400,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10660.0,0.0,0.0,10660.0,0.0,0.0,1,0,0.0,1,0.0 +3317,4626,2069.358198906439,66.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,23210.0,0.0,0.0,29139.45,0.0,8340.0,3,9,7.0,1,1.0 +3318,4627,2604.8720968985845,70.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20840.0,0.0,0.0,19982.0,0.0,0.0,4,6,0.0,1,0.0 +3319,4628,1123.2134378122266,61.0,111,0.0,77,2.0,0.0,5.0,2.8,0.0,9200.0,0.0,19970.0,0.0,0.0,37908.15,0.0,2660.0,3,8,7.0,5,2.0 +3320,4629,551.0925386866073,45.0,112,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22364.25,0.0,14350.0,2,9,2.0,2,1.0 +3321,4630,1516.865998769217,39.0,111,0.0,63,1.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,37448.7,3240.0,17650.0,3,8,7.0,4,1.0 +3322,4631,2330.6567549905585,50.0,111,0.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,51481.85,0.0,52250.0,2,7,5.0,4,3.0 +3323,4632,3106.801211446681,27.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56633.6,0.0,61640.0,3,10,8.0,3,2.0 +3324,4633,7187.667970540026,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42300.0,0.0,0.0,38403.15,0.0,0.0,1,9,7.0,3,0.0 +3325,4635,1646.1638989824207,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34380.0,446.0,0.0,33363.35,0.0,0.0,1,6,5.0,3,0.0 +3326,4636,3341.910480851632,32.0,111,8310.0,64,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17757.05,0.0,0.0,3,10,8.0,2,1.0 +3327,4638,2057.2980282225953,60.0,111,5350.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16760.0,149.0,0.0,67538.65,0.0,47040.0,1,8,6.0,3,1.0 +3328,4640,2213.53766277857,47.0,111,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,55560.9,0.0,58840.0,2,6,4.0,4,2.0 +3329,4641,946.8996346305302,54.0,221,4970.0,67,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34334.05,0.0,32920.0,1,1,2.0,4,2.0 +3330,4642,3020.8557824965696,46.0,111,6810.0,67,2.0,0.0,3.0,2.0,0.0,1630.0,0.0,0.0,0.0,0.0,9532.0,0.0,0.0,3,7,5.0,4,2.0 +3331,4644,2008.921574630504,75.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32230.0,0.0,0.0,30333.45,0.0,0.0,1,7,0.0,3,0.0 +3332,4645,1093.8499211256724,48.0,112,7660.0,34,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34070.85,0.0,28810.0,1,9,3.0,2,3.0 +3333,4646,2309.0661423217553,57.0,300,5110.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5000.0,0.0,0.0,15803.15,0.0,6470.0,1,0,0.0,1,0.0 +3334,4647,1872.2661386469547,46.0,111,4790.0,65,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,45331.45,0.0,42810.0,2,6,4.0,4,3.0 +3335,4649,1233.5382502873488,30.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26355.9,0.0,28800.0,2,10,8.0,2,1.0 +3336,4650,2895.7527164192193,32.0,120,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42817.1,0.0,36010.0,2,0,0.0,4,2.0 +3337,4652,690.9604368963314,29.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,26306.8,1460.0,17710.0,3,8,7.0,2,1.0 +3338,4655,1306.7115384415615,36.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,13.0,0.0,53711.7,0.0,56600.0,3,10,8.0,4,2.0 +3339,4657,2761.329536503245,61.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,693.0,0.0,28218.791915962982,0.0,27720.0,1,10,8.0,1,1.0 +3340,4659,1438.7540897107813,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47230.0,0.0,0.0,42093.45,0.0,0.0,2,7,5.0,3,0.0 +3341,4660,3484.5931166379387,62.0,222,10000.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16770.0,0.0,0.0,36966.7,0.0,13810.0,1,1,0.0,3,0.0 +3342,4661,836.266206282468,40.0,111,0.0,38,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,33404.05,0.0,14180.0,5,9,7.0,2,1.0 +3343,4662,1630.9848717705931,46.0,111,0.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43416.6,0.0,44660.0,5,7,6.0,4,3.0 +3344,4663,2187.5583739234653,73.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26260.0,0.0,0.0,24918.25,0.0,0.0,1,0,0.0,3,0.0 +3345,4664,1200.3452611928162,24.0,111,6770.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20214.0,0.0,13360.0,3,7,5.0,5,2.0 +3346,4665,1748.930534994159,52.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,7450.0,0.0,0.0,0.0,0.0,14139.6,890.0,0.0,3,6,4.0,2,1.0 +3347,4666,2805.6281157840986,52.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6410.85,0.0,0.0,1,9,7.0,1,1.0 +3348,4667,1681.3959799267682,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30200.0,0.0,0.0,29453.15,0.0,0.0,1,8,0.0,3,0.0 +3349,4668,4660.635220462179,71.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,23740.0,0.0,0.0,26586.85,0.0,4700.0,1,8,6.0,1,1.0 +3350,4669,2493.819849308784,81.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43050.0,0.0,0.0,39097.45,0.0,0.0,3,0,0.0,1,0.0 +3351,4670,566.0462879257493,45.0,221,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28202.55,0.0,30270.0,2,1,3.0,2,1.0 +3352,4672,1645.8396502133423,60.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24590.0,0.0,0.0,23528.9,0.0,0.0,1,8,7.0,1,0.0 +3353,4674,2831.979382578415,37.0,112,18240.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,267.0,0.0,46552.65,0.0,31110.0,3,9,3.0,4,2.0 +3354,4676,2571.3318664723183,89.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19230.0,0.0,0.0,29361.973613349768,0.0,0.0,1,8,7.0,1,0.0 +3355,4678,1612.163985084571,41.0,111,3390.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,15112.0,0.0,0.0,3,8,7.0,2,1.0 +3356,4679,2002.5164746088117,65.0,111,0.0,77,1.0,0.0,3.0,2.0,0.0,10740.0,0.0,37060.0,0.0,0.0,52208.3,1120.0,2080.0,1,7,5.0,4,1.0 +3357,4680,2859.3385085832297,63.0,111,11050.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18177.5,0.0,0.0,1,10,8.0,1,0.0 +3358,4681,2976.998100579434,57.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19935.95,0.0,20700.0,1,9,3.0,1,1.0 +3359,4682,2027.5878199999102,56.0,111,810.0,33,3,3.0,3.0,2.0,0.0,0.0,0.0,3640.0,0.0,0.0,49979.85,0.0,48430.0,1,9,7.0,4,3.0 +3360,4684,3311.560653703806,39.0,111,2140.0,35,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,62343.4,0.0,60380.0,3,6,5.0,4,2.0 +3361,4685,1500.0453887097244,69.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53230.0,0.0,0.0,48814.1,0.0,0.0,1,8,6.0,3,0.0 +3362,4686,2166.534470143055,58.0,112,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14530.3,0.0,0.0,1,7,0.0,3,1.0 +3363,4687,1541.997266329474,32.0,111,7660.0,67,1.0,0.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,22336.0,0.0,0.0,3,7,5.0,4,1.0 +3364,4688,1615.8828591511656,66.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33500.0,0.0,0.0,32178.45,0.0,0.0,1,10,0.0,3,0.0 +3365,4690,1850.5444614711084,67.0,112,4770.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,16210.0,0.0,0.0,21705.0,0.0,1410.0,1,6,2.0,3,1.0 +3366,4691,4643.793185756793,35.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32228.25,0.0,35850.0,2,10,8.0,1,1.0 +3367,4692,3585.8605222594747,23.0,112,0.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16514.25,0.0,3090.0,3,10,4.0,1,1.0 +3368,4693,510.9476727472603,46.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56508.25,0.0,40980.0,3,8,7.0,2,2.0 +3369,4694,2402.845986341077,74.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43480.0,0.0,0.0,37910.1,0.0,0.0,1,0,0.0,3,0.0 +3370,4695,2302.444292922089,63.0,111,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,35360.0,0.0,0.0,40819.4,0.0,0.0,1,4,3.0,3,1.0 +3371,4696,948.7155492813747,39.0,221,0.0,48,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32113.15,2760.0,31180.0,3,1,1.0,4,1.0 +3372,4697,2588.828734575625,62.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18740.0,0.0,0.0,29860.85,0.0,11930.0,3,5,0.0,3,1.0 +3373,4698,7261.991518605439,63.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15340.0,0.0,0.0,15029.75,0.0,0.0,1,9,3.0,1,0.0 +3374,4699,1091.9832231211383,66.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57710.0,0.0,0.0,50402.4,0.0,0.0,1,1,3.0,3,0.0 +3375,4700,869.3604947353331,54.0,111,0.0,62,1.0,1.0,2.0,1.5,8620.0,0.0,0.0,0.0,0.0,0.0,30844.1,0.0,21660.0,1,4,3.0,2,1.0 +3376,4701,2334.260924704885,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20080.0,0.0,0.0,20944.15,0.0,0.0,1,9,7.0,3,0.0 +3377,4702,2635.9609645651244,19.0,111,0.0,54,3,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,6937.0,0.0,0.0,3,9,7.0,5,3.0 +3378,4703,1516.3814509680908,41.0,112,0.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,60360.4,0.0,51250.0,2,8,1.0,4,2.0 +3379,4704,1534.282419448084,50.0,211,0.0,46,1.0,1.0,1.0,1.0,4160.0,0.0,0.0,0.0,0.0,0.0,18212.0,0.0,12630.0,3,1,3.0,1,1.0 +3380,4705,2374.002274622834,69.0,300,0.0,22,2.0,0.0,2.0,1.5,0.0,0.0,0.0,27380.0,0.0,0.0,30804.95,0.0,0.0,1,0,0.0,3,2.0 +3381,4706,2324.9170291516575,53.0,120,470.0,63,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,55300.35,230.0,57640.0,2,0,0.0,4,4.0 +3382,4708,2117.268433597037,39.0,300,5330.0,62,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,45388.2,0.0,21910.0,3,0,0.0,4,2.0 +3383,4713,2654.792891716833,55.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,66649.45,0.0,81290.0,2,10,2.0,1,1.0 +3384,4714,2982.5337946817317,32.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24101.0,0.0,26460.0,3,9,7.0,1,1.0 +3385,4715,1834.8620029084934,50.0,111,580.0,37,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,77285.74934104485,0.0,89240.0,1,9,7.0,4,3.0 +3386,4716,1923.504266221506,83.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23280.0,0.0,0.0,23437.3,0.0,0.0,1,5,4.0,3,0.0 +3387,4717,1967.9750986674062,62.0,300,12020.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,16520.0,0.0,0.0,28492.31514957779,0.0,0.0,1,0,0.0,3,1.0 +3388,4718,2648.280195601859,49.0,111,7920.0,69,1.0,0.0,1.0,1.0,0.0,50.0,0.0,0.0,0.0,0.0,12905.85,2740.0,0.0,3,9,7.0,1,1.0 +3389,4719,2514.212214550007,29.0,120,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21650.0,2080.0,0.0,3,0,1.0,1,1.0 +3390,4721,1953.146056148763,50.0,120,0.0,63,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,27576.0,0.0,24540.0,3,0,0.0,4,1.0 +3391,4723,2549.876716971259,56.0,111,0.0,75,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,4835.05,0.0,0.0,3,9,7.0,1,0.0 +3392,4724,1528.3968372376316,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41980.0,0.0,0.0,37648.1,0.0,0.0,1,6,4.0,3,0.0 +3393,4725,2112.627573178235,50.0,112,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,15700.0,0.0,0.0,43567.3,250.0,34270.0,1,9,2.0,4,2.0 +3394,4729,2002.7028878120166,34.0,111,5130.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50349.0,0.0,34410.0,3,8,7.0,4,2.0 +3395,4730,2321.6520679994924,28.0,111,4640.0,85,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,8.0,0.0,45633.32787788036,0.0,32500.0,3,7,5.0,4,1.0 +3396,4731,2455.3914293059333,52.0,111,8100.0,38,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,79552.79934104484,0.0,85370.0,1,9,7.0,4,3.0 +3397,4734,5760.438842076874,29.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17851.05,0.0,18620.0,3,10,8.0,1,1.0 +3398,4735,3366.699273598256,23.0,300,3900.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27764.5,0.0,20990.0,3,0,0.0,3,2.0 +3399,4736,1911.3868487233312,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29000.0,0.0,0.0,27623.15,0.0,0.0,1,9,7.0,3,0.0 +3400,4737,3898.7729506417245,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26520.0,0.0,0.0,24387.6,0.0,0.0,3,10,8.0,1,0.0 +3401,4738,1974.6447086043638,33.0,300,0.0,85,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,14678.0,0.0,0.0,3,0,1.0,1,0.0 +3402,4739,1349.2541036884902,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43330.0,13.0,0.0,40413.4,0.0,0.0,1,9,7.0,3,0.0 +3403,4740,2725.088871101651,84.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21980.0,0.0,0.0,20044.55,0.0,0.0,1,8,7.0,1,0.0 +3404,4743,1390.7528166564575,70.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24050.0,97.0,0.0,23582.1,0.0,0.0,1,0,1.0,3,0.0 +3405,4745,1877.9420264971898,48.0,111,0.0,64,1.0,1.0,5.0,2.6,9720.0,0.0,0.0,0.0,0.0,0.0,46801.0,0.0,27120.0,3,9,7.0,4,1.0 +3406,4747,240.75525799981932,25.0,300,5370.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35398.55,800.0,29330.0,3,0,0.0,3,2.0 +3407,4748,2305.862372685807,48.0,211,0.0,22,2.0,0.0,2.0,1.5,0.0,6630.0,0.0,0.0,0.0,0.0,11202.0,900.0,0.0,3,3,3.0,3,2.0 +3408,4749,2026.33957557149,62.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11770.0,0.0,0.0,130443.65,0.0,132500.0,1,10,8.0,3,1.0 +3409,4750,3611.2276723617383,46.0,120,0.0,56,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20843.8,3300.0,12230.0,3,0,3.0,4,3.0 +3410,4752,2956.2107777211922,24.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7236.0,0.0,0.0,3,9,7.0,1,0.0 +3411,4753,2705.3802113513498,45.0,400,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,120.0,0.0,72753.64034422515,0.0,28910.0,1,0,0.0,4,2.0 +3412,4754,642.8019466015861,45.0,112,0.0,68,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24642.9,0.0,19680.0,3,6,0.0,2,2.0 +3413,4755,2770.260100977239,62.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16470.0,0.0,0.0,24407.9,0.0,8600.0,1,7,5.0,3,1.0 +3414,4756,1845.8565260714568,66.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11090.0,0.0,0.0,10832.65,0.0,0.0,5,0,0.0,1,0.0 +3415,4758,3018.312928198239,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13980.0,0.0,0.0,14496.0,0.0,0.0,1,9,7.0,1,0.0 +3416,4760,1805.6026166247534,74.0,212,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24550.0,0.0,0.0,25102.3,0.0,0.0,1,2,0.0,3,0.0 +3417,4761,2000.8073387624008,46.0,300,750.0,65,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46675.9,0.0,46380.0,1,0,0.0,4,2.0 +3418,4762,2398.779319476186,82.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43290.0,0.0,0.0,40435.55,0.0,0.0,1,0,0.0,3,0.0 +3419,4763,3321.19736153464,63.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43930.0,313.0,15.0,41273.8,0.0,4240.0,3,10,8.0,1,0.0 +3420,4766,2312.5986721059758,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28580.0,0.0,0.0,27542.6,0.0,0.0,1,10,8.0,3,0.0 +3421,4767,2902.8729475105733,84.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12280.0,0.0,0.0,12141.55,0.0,0.0,3,0,0.0,1,0.0 +3422,4768,2627.6228472389566,70.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16850.0,0.0,0.0,16278.15,0.0,0.0,1,0,0.0,1,0.0 +3423,4769,2635.3810297843897,73.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19300.0,0.0,0.0,18415.55,0.0,0.0,1,0,1.0,1,0.0 +3424,4770,1969.8954629682291,42.0,120,4470.0,47,2.0,3.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,39544.0,0.0,34070.0,2,0,0.0,4,2.0 +3425,4771,3320.821668122055,49.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32405.95,0.0,38080.0,1,10,8.0,2,1.0 +3426,4772,1797.0484127573047,75.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,86280.0,466.0,0.0,71959.71899592302,0.0,0.0,1,0,1.0,3,0.0 +3427,4773,2556.7354074096415,69.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,55.0,0.0,70201.4,0.0,82830.0,1,10,8.0,3,2.0 +3428,4774,1669.0443936908928,54.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31700.3,0.0,31340.0,2,6,0.0,3,2.0 +3429,4776,2455.8083654610996,40.0,111,0.0,43,2.0,2.0,4.0,2.5,290.0,0.0,0.0,0.0,0.0,0.0,43935.8,40.0,46720.0,3,7,5.0,4,2.0 +3430,4777,981.9152494297606,22.0,211,9620.0,63,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20667.25,270.0,5500.0,3,3,3.0,4,1.0 +3431,4779,796.0093149863067,39.0,211,910.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19656.1,0.0,16930.0,3,1,3.0,2,1.0 +3432,4782,1838.020938734123,61.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46930.0,0.0,0.0,43437.8,0.0,0.0,1,6,0.0,3,0.0 +3433,4783,2826.913298241558,47.0,112,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47950.6,0.0,52480.0,1,9,1.0,4,2.0 +3434,4785,4278.592895608692,57.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,68120.0,0.0,86600.0,2,10,8.0,1,1.0 +3435,4787,3088.67259565824,83.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13120.0,0.0,0.0,12280.2,0.0,0.0,1,10,2.0,1,0.0 +3436,4789,2072.1279865689407,76.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19020.0,0.0,0.0,20789.95,0.0,0.0,1,0,0.0,3,0.0 +3437,4790,1410.892860204915,34.0,112,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28967.15,0.0,17390.0,3,10,4.0,2,1.0 +3438,4792,4353.9864796094635,26.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37353.0,100.0,40340.0,2,10,8.0,3,2.0 +3439,4795,2042.9143273539546,34.0,111,3610.0,67,1.0,0.0,1.0,1.0,0.0,3780.0,0.0,0.0,0.0,0.0,9851.8,0.0,0.0,3,9,7.0,1,1.0 +3440,4797,275.49214159994676,47.0,400,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16668.75,3230.0,13570.0,3,0,1.0,2,1.0 +3441,4798,2388.995353945324,43.0,112,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,84250.9,0.0,93510.0,3,10,0.0,4,2.0 +3442,4799,1133.7500403405425,41.0,112,0.0,85,0.0,0.0,2.0,1.3,0.0,5850.0,0.0,0.0,0.0,0.0,8160.0,0.0,0.0,3,9,0.0,2,0.0 +3443,4800,4015.915179384277,43.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,825.0,0.0,50505.05,0.0,59530.0,3,7,6.0,1,1.0 +3444,4801,2569.861487238232,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14570.0,0.0,0.0,14283.05,0.0,0.0,3,9,7.0,1,0.0 +3445,4802,3771.6149093434915,53.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,9528.0,0.0,0.0,3,10,8.0,1,0.0 +3446,4804,1858.4699741623801,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49610.0,0.0,0.0,43666.75,0.0,0.0,1,9,7.0,3,0.0 +3447,4805,4017.8244065510426,80.0,111,0.0,77,0.0,0.0,2.0,1.5,9700.0,0.0,0.0,18290.0,0.0,0.0,27689.8,0.0,0.0,3,9,7.0,2,0.0 +3448,4806,709.5383195872447,52.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23600.2,0.0,24030.0,3,6,5.0,2,1.0 +3449,4807,906.3781647256792,31.0,111,11780.0,84,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,14049.7,1910.0,0.0,1,9,7.0,2,0.0 +3450,4808,2570.2192909397163,51.0,111,0.0,68,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26250.0,0.0,25870.0,3,10,8.0,4,2.0 +3451,4809,2910.714334339067,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25379.0,0.0,16810.0,3,9,7.0,1,0.0 +3452,4811,2312.8079442127028,68.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10870.0,0.0,0.0,11557.8,0.0,0.0,1,1,3.0,1,0.0 +3453,4812,2372.0583727854205,49.0,112,0.0,21,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,64149.45,0.0,69440.0,2,8,0.0,4,3.0 +3454,4814,1451.3372362997432,45.0,112,0.0,43,2.0,2.0,5.0,2.8,0.0,0.0,0.0,9900.0,0.0,0.0,48026.7,0.0,44130.0,1,6,0.0,4,2.0 +3455,4817,1300.3164925422975,49.0,111,1030.0,85,0.0,0.0,7.0,3.8,0.0,1980.0,0.0,0.0,0.0,0.0,26630.55,2910.0,9090.0,3,9,7.0,5,0.0 +3456,4818,2239.8262404403768,54.0,300,0.0,12,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,5756.0,0.0,0.0,1,0,0.0,4,2.0 +3457,4819,811.9004499187458,49.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21835.2,2310.0,17230.0,3,8,6.0,2,1.0 +3458,4820,2082.9224831537226,23.0,111,3300.0,67,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12618.0,0.0,9270.0,3,8,7.0,3,2.0 +3459,4822,4760.437688118404,42.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,1515.0,0.0,121601.25,0.0,136390.0,2,10,8.0,4,2.0 +3460,4823,1554.4487376860475,54.0,112,0.0,38,1.0,2.0,3.0,2.0,1520.0,0.0,0.0,0.0,0.0,0.0,33090.59818635909,70.0,31900.0,1,8,0.0,4,1.0 +3461,4824,3691.6211815920665,50.0,111,0.0,22,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35508.0,0.0,36280.0,2,10,8.0,4,2.0 +3462,4825,4978.721481536274,37.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21183.8,0.0,20640.0,3,9,7.0,2,1.0 +3463,4826,2115.6650667457557,63.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31150.5,0.0,35080.0,3,5,4.0,1,1.0 +3464,4829,1595.1022195922294,58.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1350.0,0.0,55638.2,0.0,60040.0,1,9,7.0,3,2.0 +3465,4831,2296.8601967049194,38.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,62875.85,0.0,58050.0,2,7,5.0,4,2.0 +3466,4832,2405.407336260144,48.0,111,6460.0,65,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,25549.9,0.0,21210.0,2,8,7.0,4,2.0 +3467,4834,3145.5721996398524,61.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29280.0,0.0,0.0,28355.7,0.0,0.0,1,4,3.0,3,0.0 +3468,4835,312.14725165107177,45.0,111,0.0,64,1.0,0.0,4.0,2.1,0.0,3210.0,0.0,0.0,0.0,0.0,21026.0,0.0,0.0,3,7,5.0,2,1.0 +3469,4839,1999.2941595672362,53.0,112,0.0,64,1.0,1.0,4.0,2.5,11560.0,0.0,0.0,0.0,0.0,0.0,27440.0,0.0,11280.0,3,8,1.0,4,1.0 +3470,4841,3499.1028034370925,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10270.0,0.0,0.0,12624.0,0.0,0.0,3,8,6.0,1,0.0 +3471,4842,820.8502792339668,45.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21280.0,2190.0,13540.0,3,8,6.0,2,1.0 +3472,4843,2886.9975573666898,30.0,221,450.0,56,1.0,1.0,2.0,1.3,0.0,3460.0,0.0,0.0,0.0,0.0,8960.0,960.0,3650.0,3,1,3.0,2,1.0 +3473,4844,3394.1078341102657,30.0,300,5460.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13656.8,0.0,8350.0,2,0,0.0,1,1.0 +3474,4846,1341.8991966225199,27.0,111,4660.0,46,1.0,1.0,2.0,1.3,0.0,5570.0,0.0,0.0,0.0,0.0,16239.75,2980.0,3040.0,3,10,8.0,2,1.0 +3475,4847,1631.5742852582696,71.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50310.0,109.0,0.0,46845.8,0.0,0.0,1,1,2.0,3,0.0 +3476,4848,2058.0228391050227,51.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52805.7,0.0,58490.0,1,8,6.0,4,2.0 +3477,4849,1932.9589967794752,53.0,111,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,13660.0,172.0,0.0,83212.25,0.0,22130.0,5,8,6.0,2,2.0 +3478,4850,2670.384599066387,88.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,93510.0,0.0,0.0,72502.5,0.0,0.0,1,7,5.0,1,0.0 +3479,4851,3175.427258580587,56.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,10,8.0,1,1.0 +3480,4852,1592.477809319234,57.0,112,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13940.0,0.0,0.0,42354.85,0.0,31320.0,1,10,0.0,3,1.0 +3481,4855,3481.4669551723387,30.0,300,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,2.0,0.0,36870.1,0.0,34020.0,2,0,0.0,4,2.0 +3482,4858,2282.007598333637,36.0,111,1920.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,90494.8,0.0,89910.0,2,9,7.0,4,2.0 +3483,4860,2389.177022624102,78.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38790.0,254.0,0.0,34140.5,0.0,0.0,1,6,0.0,1,0.0 +3484,4863,3705.758931392867,47.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59905.15,0.0,67070.0,3,10,8.0,3,2.0 +3485,4866,1726.4983854101233,44.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48903.95,0.0,50450.0,2,10,3.0,4,2.0 +3486,4870,1841.0155758489655,93.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15200.0,10.0,0.0,15235.65,0.0,0.0,1,9,7.0,1,0.0 +3487,4871,3818.2681551262317,41.0,111,14530.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,48476.1,0.0,30.0,3,10,8.0,1,1.0 +3488,4872,5050.498017107999,54.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33953.25,0.0,32840.0,2,10,8.0,3,2.0 +3489,4873,1752.038852125142,82.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,68710.0,0.0,0.0,53750.73354508391,0.0,0.0,1,10,8.0,3,1.0 +3490,4876,675.2263105122469,48.0,112,0.0,68,3,2.0,7.0,3.8,0.0,0.0,0.0,0.0,0.0,0.0,50454.8,1420.0,47100.0,2,10,4.0,4,4.0 +3491,4877,1608.8867217559025,39.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,36230.85,0.0,0.0,2,10,8.0,2,1.0 +3492,4879,3271.744167784447,36.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32024.1,0.0,36380.0,1,10,8.0,1,1.0 +3493,4882,636.0237580666984,59.0,111,0.0,67,1.0,1.0,2.0,1.3,0.0,0.0,0.0,1190.0,0.0,0.0,24326.35,0.0,22160.0,1,7,5.0,2,1.0 +3494,4883,2289.903962962274,61.0,112,7770.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,10020.0,0.0,0.0,16681.55,0.0,0.0,1,8,0.0,1,1.0 +3495,4884,1691.6068370891212,81.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22070.0,843.0,0.0,33424.2,0.0,0.0,1,8,1.0,3,0.0 +3496,4885,3786.6574199686843,47.0,112,0.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12967.25,0.0,14240.0,1,10,4.0,1,1.0 +3497,4887,1796.3485417269085,56.0,111,0.0,22,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,135301.8892623495,0.0,179020.0,1,8,7.0,4,2.0 +3498,4888,2840.49222442784,50.0,300,10650.0,56,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,21186.1,0.0,6490.0,1,0,0.0,5,2.0 +3499,4890,2709.491421190756,30.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46527.8,0.0,48190.0,3,9,3.0,4,2.0 +3500,4891,1810.5228697225818,49.0,221,3690.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57281.8,0.0,55320.0,1,3,4.0,4,2.0 +3501,4893,4461.208414529521,26.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21132.92767663852,0.0,23020.0,5,10,8.0,1,1.0 +3502,4894,1103.3287595897552,50.0,111,0.0,53,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48578.1,0.0,54100.0,2,7,5.0,4,3.0 +3503,4896,1953.7649727519308,43.0,112,940.0,62,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,41820.85,0.0,26970.0,2,9,0.0,4,2.0 +3504,4899,3423.7165476996215,40.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,2219.0,348.0,80133.1,0.0,84390.0,1,9,1.0,4,2.0 +3505,4901,2902.5813243942607,76.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38490.0,0.0,0.0,33177.840594481844,0.0,0.0,1,8,1.0,1,0.0 +3506,4902,2633.8690357919363,83.0,112,0.0,78,0.0,0.0,3.0,2.0,6080.0,0.0,0.0,37670.0,0.0,0.0,41479.75,0.0,0.0,1,10,4.0,4,0.0 +3507,4903,2023.6401976017128,56.0,112,0.0,43,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58644.4,0.0,65230.0,1,9,3.0,4,3.0 +3508,4907,5458.3515325495555,27.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45480.45,0.0,49350.0,2,10,8.0,3,2.0 +3509,4909,3920.676272393506,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13600.0,0.0,0.0,17682.25,0.0,5970.0,3,6,5.0,1,0.0 +3510,4910,1596.6081722602357,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49740.0,0.0,0.0,44540.25149577789,0.0,0.0,1,9,7.0,3,0.0 +3511,4911,1363.2932701017746,42.0,400,0.0,85,0.0,0.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,13444.15,0.0,300.0,3,0,0.0,2,0.0 +3512,4913,772.5614460064672,49.0,111,0.0,37,1.0,0.0,5.0,2.8,0.0,3380.0,0.0,0.0,0.0,0.0,20800.0,290.0,6100.0,3,10,8.0,2,1.0 +3513,4914,2554.6196578123486,53.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23533.8,0.0,24390.0,3,10,8.0,1,1.0 +3514,4915,1591.986255193004,51.0,211,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,85415.26868234818,0.0,94810.0,1,3,3.0,3,2.0 +3515,4917,1292.548333991656,51.0,112,0.0,67,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21597.15,0.0,26110.0,2,7,0.0,2,1.0 +3516,4918,2658.3936713269604,36.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,78487.35,0.0,87930.0,3,10,8.0,4,2.0 +3517,4922,6155.567227411937,27.0,111,0.0,63,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8051.05,0.0,0.0,3,9,7.0,1,1.0 +3518,4926,2258.454751715688,47.0,120,0.0,67,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37066.05,930.0,33460.0,2,0,0.0,4,2.0 +3519,4928,2094.042171609939,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33940.0,602.0,0.0,31213.35,0.0,0.0,1,9,7.0,3,0.0 +3520,4931,1845.232717758928,32.0,120,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47019.7,0.0,35340.0,2,0,0.0,3,2.0 +3521,4932,2116.405271127539,29.0,111,9540.0,55,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37130.55,1090.0,12770.0,3,8,7.0,4,2.0 +3522,4933,1220.3694381164112,42.0,111,1770.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27192.65,0.0,18910.0,3,10,8.0,2,1.0 +3523,4934,1796.6139692962006,25.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28368.2,3510.0,21220.0,3,10,8.0,4,2.0 +3524,4935,1545.806899800365,46.0,111,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,4127.0,0.0,89218.2,0.0,81180.0,2,8,6.0,4,2.0 +3525,4936,2075.5288733755388,43.0,120,5320.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,58587.8,0.0,50240.0,2,0,0.0,4,2.0 +3526,4937,2207.8224994397524,50.0,300,0.0,13,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,37520.8,0.0,7720.0,2,0,0.0,4,2.0 +3527,4939,2226.3036447691547,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,98540.0,0.0,0.0,81539.57221511856,0.0,0.0,1,8,0.0,3,0.0 +3528,4940,770.7753097349132,40.0,112,220.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47184.7,0.0,38890.0,3,8,0.0,4,2.0 +3529,4941,2386.0144572547124,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39690.0,1164.0,0.0,39385.23354508391,0.0,0.0,1,10,8.0,3,0.0 +3530,4942,2014.4624571919487,52.0,300,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27929.4,0.0,30880.0,2,0,0.0,3,2.0 +3531,4945,3319.539353999213,30.0,300,2490.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21096.3,0.0,20030.0,3,0,0.0,1,1.0 +3532,4946,2861.9002530252974,55.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17041.4,0.0,14610.0,1,9,7.0,1,1.0 +3533,4947,3184.2222578707024,65.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27540.0,0.0,0.0,24855.1,0.0,0.0,1,6,1.0,1,0.0 +3534,4949,774.7688318313612,34.0,111,0.0,13,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47281.28823362094,360.0,0.0,3,5,4.0,4,1.0 +3535,4950,3149.8877393502516,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18870.0,0.0,0.0,17621.35,0.0,0.0,1,8,7.0,1,0.0 +3536,4951,931.3643405849269,34.0,112,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,26454.8,4250.0,17480.0,3,7,2.0,2,1.0 +3537,4954,1938.6793168870315,83.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9342.524490751877,0.0,0.0,5,0,0.0,1,0.0 +3538,4956,2533.5502467896617,52.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,22740.0,0.0,0.0,51101.565149577786,0.0,31770.0,3,10,8.0,4,2.0 +3539,4957,2587.275870901445,49.0,221,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,26309.8,0.0,27060.0,2,1,2.0,4,2.0 +3540,4960,2020.2292678776444,60.0,112,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,19530.0,0.0,0.0,57344.2,0.0,34010.0,1,4,0.0,4,2.0 +3541,4961,2626.5335205378474,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12150.0,0.0,0.0,12195.0,0.0,0.0,1,10,8.0,1,0.0 +3542,4963,1553.3376207122478,47.0,112,210.0,62,3,3.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,56490.1,0.0,55330.0,2,9,3.0,4,3.0 +3543,4965,2762.507894485262,36.0,111,0.0,42,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,64162.7,0.0,66620.0,3,10,8.0,4,2.0 +3544,4966,2344.170908823729,36.0,111,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,56049.15,0.0,58100.0,2,8,6.0,4,2.0 +3545,4967,2268.9949445341067,49.0,112,0.0,22,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,65313.8,0.0,21810.0,2,4,0.0,4,2.0 +3546,4969,2939.4957516455706,66.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9510.0,0.0,0.0,10776.0,0.0,0.0,3,0,0.0,1,0.0 +3547,4970,834.9588097739604,30.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26238.35,0.0,23340.0,2,9,7.0,2,1.0 +3548,4971,3210.308201632975,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8822.0,0.0,0.0,3,9,7.0,1,0.0 +3549,4972,596.9340617304557,44.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,31312.05,0.0,23380.0,3,8,6.0,2,1.0 +3550,4973,1573.8076633655737,56.0,120,940.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,10680.0,0.0,0.0,47673.25,0.0,39590.0,1,0,1.0,4,3.0 +3551,4975,3628.371965231181,71.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,22280.0,0.0,0.0,17413.8,0.0,0.0,3,10,8.0,1,1.0 +3552,4976,2157.301268463232,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23570.0,0.0,0.0,20383.45,0.0,0.0,1,10,8.0,1,0.0 +3553,4977,2109.352342896807,29.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17144.6,60.0,17400.0,3,8,7.0,1,1.0 +3554,4978,1733.8402650398311,61.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31420.0,0.0,0.0,46050.10317625865,0.0,26130.0,1,8,7.0,3,1.0 +3555,4979,2170.485610529441,65.0,112,0.0,77,0.0,0.0,2.0,1.5,1810.0,0.0,0.0,17300.0,0.0,0.0,19110.0,0.0,0.0,3,6,2.0,3,0.0 +3556,4980,3648.8645712446328,27.0,111,10680.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35359.7,0.0,9840.0,3,9,7.0,4,2.0 +3557,4981,2745.7518048910724,56.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25124.0,0.0,27260.0,3,9,7.0,1,1.0 +3558,4982,2927.6977499407863,37.0,221,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24788.25,710.0,23360.0,2,1,2.0,4,1.0 +3559,4984,852.7278076517028,33.0,111,820.0,43,1.0,0.0,4.0,1.9,0.0,1390.0,0.0,0.0,0.0,0.0,29810.0,0.0,11300.0,4,6,5.0,4,1.0 +3560,4985,989.9943208221971,35.0,111,0.0,38,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,63061.15,0.0,49630.0,2,10,8.0,2,1.0 +3561,4986,1143.718147130816,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12340.0,0.0,0.0,12834.0,0.0,0.0,1,6,5.0,1,0.0 +3562,4987,2127.8184938183463,62.0,111,0.0,74,1.0,0.0,3.0,2.0,0.0,0.0,0.0,55850.0,0.0,0.0,50416.05,0.0,0.0,1,6,4.0,4,1.0 +3563,4988,1327.7261978444833,59.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14660.0,0.0,0.0,38910.7,0.0,27590.0,1,8,7.0,3,1.0 +3564,4989,2524.431499549758,81.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16220.0,0.0,0.0,17714.2,0.0,0.0,1,9,0.0,3,0.0 +3565,4992,2975.508319866794,27.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43346.5,0.0,32140.0,2,4,4.0,4,2.0 +3566,4993,636.9005665028861,49.0,111,0.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,3580.0,0.0,0.0,25743.25,2130.0,15830.0,3,6,5.0,2,2.0 +3567,4995,663.826811188528,36.0,111,3700.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40370.45,570.0,34230.0,3,7,5.0,4,2.0 +3568,4996,5737.452238905587,54.0,111,0.0,62,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,26160.5,3160.0,21570.0,2,6,4.0,4,3.0 +3569,4997,1198.499600154252,87.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39480.0,0.0,0.0,34271.55,0.0,0.0,3,10,3.0,1,0.0 +3570,4998,2445.4806357603543,80.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17640.0,0.0,0.0,18050.0,0.0,0.0,1,8,7.0,1,0.0 +3571,4999,1591.8673270424783,46.0,111,0.0,11,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45106.7,0.0,28640.0,1,6,5.0,4,2.0 +3572,5001,1054.2780306817244,41.0,111,0.0,55,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,34548.6,0.0,20320.0,3,10,8.0,2,1.0 +3573,5002,3380.0990055660955,46.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,405.0,0.0,82974.15,0.0,94360.0,2,10,8.0,4,2.0 +3574,5003,2968.9380148836917,55.0,112,4910.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42314.05,0.0,40920.0,3,10,4.0,3,2.0 +3575,5004,1864.3011530374094,72.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43210.0,0.0,0.0,40707.5,0.0,0.0,1,0,0.0,3,0.0 +3576,5006,1950.6776899912809,66.0,300,0.0,78,0.0,0.0,2.0,1.5,7670.0,0.0,0.0,13480.0,0.0,0.0,21707.45,0.0,740.0,1,0,0.0,3,0.0 +3577,5007,3879.291174226489,43.0,111,0.0,85,0.0,0.0,1.0,1.0,6490.0,0.0,0.0,0.0,0.0,0.0,6447.7,0.0,0.0,1,6,5.0,1,0.0 +3578,5011,696.865495976347,62.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24670.6,0.0,25500.0,3,9,7.0,1,1.0 +3579,5012,3138.226913063232,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15080.0,0.0,0.0,14149.85,0.0,0.0,1,5,4.0,1,0.0 +3580,5013,1631.4292319114757,80.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43520.0,0.0,0.0,40838.15,0.0,0.0,1,0,3.0,3,0.0 +3581,5014,3262.3944657683905,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25330.0,0.0,0.0,23354.7,0.0,0.0,1,10,8.0,1,0.0 +3582,5015,1834.302713903657,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11600.0,0.0,0.0,9476.3,0.0,0.0,1,9,7.0,1,0.0 +3583,5016,1875.854726720583,35.0,111,0.0,69,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23095.1,3830.0,17990.0,2,8,6.0,4,1.0 +3584,5017,2072.0869073968856,46.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47575.0,0.0,48230.0,1,9,7.0,4,2.0 +3585,5018,2086.528281465228,50.0,112,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22060.1,0.0,22590.0,3,9,3.0,1,1.0 +3586,5019,3201.3843290995633,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13220.0,0.0,0.0,13603.0,0.0,0.0,3,8,6.0,1,0.0 +3587,5020,2053.6088151028544,46.0,112,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,165.0,0.0,61742.5,0.0,64090.0,1,8,1.0,4,2.0 +3588,5021,3761.9314745740626,30.0,111,7250.0,64,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25984.1,0.0,18980.0,2,9,7.0,3,2.0 +3589,5022,2516.217590472541,34.0,112,0.0,47,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,56264.55,0.0,43790.0,2,7,0.0,4,1.0 +3590,5023,1564.4892894004477,59.0,400,15890.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,50.0,0.0,0.0,26893.95,0.0,11360.0,1,0,1.0,3,1.0 +3591,5024,2097.701515868903,50.0,111,5950.0,13,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,28711.8,0.0,15630.0,1,5,4.0,4,3.0 +3592,5026,2207.451865797523,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31130.0,0.0,0.0,29316.75,0.0,0.0,1,7,5.0,3,0.0 +3593,5028,1845.48741029306,59.0,111,0.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58242.35,0.0,55190.0,1,9,7.0,3,2.0 +3594,5029,2931.9903594665343,33.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54955.75,0.0,52100.0,2,9,7.0,4,2.0 +3595,5031,1565.9899160679204,50.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,672.0,0.0,73659.2,0.0,76370.0,1,6,5.0,2,1.0 +3596,5032,2495.157125537777,67.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31870.0,0.0,0.0,23961.85,0.0,0.0,1,0,0.0,3,0.0 +3597,5033,3386.9347616323566,45.0,221,0.0,31,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,16199.55,0.0,5950.0,2,1,1.0,4,2.0 +3598,5034,1925.5208645511111,66.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33310.0,0.0,0.0,32611.05,0.0,0.0,3,0,0.0,3,0.0 +3599,5035,2949.571851307052,50.0,111,0.0,85,0.0,0.0,1.0,1.0,9700.0,0.0,0.0,0.0,0.0,0.0,13012.0,0.0,0.0,3,9,7.0,1,0.0 +3600,5036,2819.2006968585333,49.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,391.0,0.0,88154.2,0.0,92950.0,1,10,8.0,4,2.0 +3601,5037,769.9254498776493,40.0,112,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18738.25,0.0,17140.0,5,9,0.0,1,1.0 +3602,5038,841.4469656717891,26.0,221,0.0,67,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30610.5,0.0,29990.0,3,1,3.0,2,1.0 +3603,5039,5509.541545088566,26.0,112,1560.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14703.75,830.0,12360.0,3,9,1.0,1,1.0 +3604,5040,1630.7156621035554,42.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,67195.05,0.0,70820.0,2,10,3.0,4,2.0 +3605,5041,2664.9017749851637,45.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,32.0,0.0,85138.1,0.0,88160.0,2,9,7.0,4,2.0 +3606,5042,2206.778395145196,66.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18830.0,0.0,0.0,18317.2,0.0,0.0,1,0,0.0,1,0.0 +3607,5043,2155.0888574022247,46.0,112,0.0,43,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,66086.85,0.0,63260.0,2,7,0.0,4,2.0 +3608,5044,5335.579045454305,36.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27469.95,0.0,30490.0,2,9,7.0,1,1.0 +3609,5045,3182.643094719378,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22470.0,56.0,0.0,21540.34191596298,0.0,0.0,1,8,7.0,3,0.0 +3610,5047,2982.9757161631446,30.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,68827.7,0.0,64840.0,2,10,2.0,4,2.0 +3611,5050,2769.4275462480455,55.0,111,12770.0,48,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26335.4,0.0,17840.0,2,9,7.0,3,2.0 +3612,5052,412.9871239871272,67.0,211,0.0,78,0.0,0.0,4.0,2.5,0.0,0.0,0.0,22340.0,0.0,0.0,22118.335450839102,0.0,0.0,5,2,3.0,2,0.0 +3613,5054,1568.9990706926374,52.0,111,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,12097.0,0.0,12360.0,2,7,5.0,4,2.0 +3614,5055,3426.603223633181,36.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17276.7,0.0,18160.0,2,6,2.0,1,1.0 +3615,5057,2085.945364923256,91.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7280.0,0.0,17.0,9059.95,0.0,0.0,1,0,1.0,1,0.0 +3616,5058,2872.0389788671237,80.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15970.0,0.0,0.0,15866.5,0.0,0.0,5,0,0.0,1,0.0 +3617,5059,3523.0400409208637,43.0,212,0.0,85,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8893.0,0.0,0.0,3,2,0.0,1,0.0 +3618,5060,2313.269749183777,70.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20710.0,0.0,0.0,19727.2,0.0,0.0,3,10,4.0,1,0.0 +3619,5061,1747.2634748770975,76.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31170.0,0.0,0.0,29921.35,0.0,0.0,1,1,2.0,3,0.0 +3620,5062,317.4396761632673,33.0,112,0.0,68,1.0,0.0,4.0,2.5,0.0,2030.0,0.0,6810.0,0.0,0.0,12291.15,0.0,0.0,1,8,0.0,2,1.0 +3621,5063,2238.708479784918,40.0,400,0.0,64,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22656.95,0.0,22580.0,2,0,0.0,2,1.0 +3622,5065,3348.8867916686177,23.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11163.6,0.0,10530.0,3,8,7.0,1,1.0 +3623,5066,1882.482934495158,36.0,111,12200.0,46,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24154.05,0.0,0.0,2,9,7.0,4,1.0 +3624,5067,1727.778844826269,42.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42049.45,0.0,33450.0,2,8,2.0,4,2.0 +3625,5068,8674.87076196217,44.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,82911.3,0.0,1350.0,3,7,1.0,4,2.0 +3626,5069,4698.8101098332,33.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,64093.2,810.0,36250.0,1,9,7.0,3,2.0 +3627,5071,2149.6800825987007,59.0,300,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,4260.0,0.0,0.0,36834.1,0.0,34260.0,1,0,1.0,3,1.0 +3628,5072,1824.0189163102752,68.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27250.0,0.0,0.0,26170.4,0.0,0.0,1,0,0.0,3,0.0 +3629,5073,2973.6019238168133,43.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,68530.9,0.0,68810.0,3,10,8.0,4,2.0 +3630,5075,4007.2097139101156,43.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22019.67001707794,0.0,16620.0,2,10,8.0,2,1.0 +3631,5078,943.5722653394063,34.0,112,0.0,85,0.0,0.0,3.0,1.6,0.0,8230.0,0.0,0.0,0.0,0.0,15360.0,0.0,0.0,3,6,1.0,2,0.0 +3632,5079,1904.070652657539,49.0,300,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37679.95,0.0,38350.0,2,0,0.0,4,2.0 +3633,5080,2772.5140376883064,51.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,67108.0,0.0,79700.0,2,10,8.0,4,2.0 +3634,5081,3569.0945083655306,39.0,111,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,3310.0,4220.0,0.0,0.0,30280.55,1660.0,22040.0,3,6,4.0,2,1.0 +3635,5082,2677.659449707152,40.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34699.75,2670.0,32430.0,2,8,0.0,4,2.0 +3636,5083,2054.349978386326,50.0,112,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49460.55,0.0,53180.0,2,7,0.0,4,2.0 +3637,5084,1014.137169548198,45.0,300,0.0,31,1.0,1.0,3.0,1.6,0.0,3020.0,0.0,0.0,0.0,0.0,15386.0,1050.0,0.0,3,0,0.0,2,1.0 +3638,5085,1794.1452949626323,43.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,6.0,0.0,77456.9,0.0,89250.0,1,6,4.0,4,2.0 +3639,5086,1563.1831666064954,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50570.0,25.0,0.0,46658.7,0.0,0.0,1,7,5.0,3,0.0 +3640,5088,805.5327267996163,45.0,111,0.0,37,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39890.6,0.0,36530.0,2,9,7.0,2,1.0 +3641,5090,3727.5607032711405,64.0,111,0.0,77,1.0,0.0,3.0,2.0,0.0,11640.0,0.0,26620.0,0.0,0.0,37283.7,0.0,0.0,1,8,6.0,4,1.0 +3642,5091,1985.9095087068613,75.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17740.0,0.0,0.0,23423.251407157957,0.0,0.0,1,4,4.0,3,0.0 +3643,5092,2723.747507414194,76.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40550.0,0.0,0.0,37064.0,0.0,0.0,1,9,7.0,3,0.0 +3644,5093,2751.796078735364,89.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10220.0,0.0,0.0,10228.0,0.0,0.0,1,8,7.0,1,0.0 +3645,5094,648.979073881413,48.0,111,0.0,43,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36129.25,0.0,25560.0,2,10,8.0,2,1.0 +3646,5097,3094.8141178017495,82.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27490.0,11.0,0.0,25302.9,0.0,0.0,1,0,2.0,1,0.0 +3647,5098,1783.5348034371737,84.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10510.0,0.0,0.0,10422.4,0.0,0.0,1,9,7.0,1,0.0 +3648,5101,1099.3430572688892,23.0,111,6220.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24141.7,2060.0,12930.0,3,5,4.0,3,2.0 +3649,5102,2630.898181677647,56.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26550.6,0.0,29560.0,2,8,6.0,1,1.0 +3650,5103,602.8103559930213,49.0,221,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24022.95,2310.0,20130.0,2,1,1.0,2,1.0 +3651,5104,1772.6263960127953,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44790.0,881.0,0.0,49252.85,0.0,0.0,1,8,7.0,3,0.0 +3652,5105,2109.1011434394823,51.0,300,3700.0,52,2.0,2.0,3.0,2.0,2300.0,0.0,0.0,5240.0,0.0,0.0,25632.05,700.0,14430.0,2,0,0.0,4,2.0 +3653,5106,950.66744025447,52.0,111,0.0,85,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17540.0,0.0,0.0,45753.95,0.0,31970.0,1,7,5.0,4,1.0 +3654,5107,4829.403350888808,20.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,200.0,0.0,0.0,3,8,6.0,5,0.0 +3655,5109,2479.123850479588,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,81060.05,0.0,76330.0,2,10,8.0,4,2.0 +3656,5110,3360.241143631576,44.0,111,5000.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49274.8,0.0,44390.0,3,6,4.0,4,2.0 +3657,5115,2668.25556609501,51.0,120,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21752.05,0.0,23750.0,3,0,1.0,1,1.0 +3658,5117,203.9847681756594,37.0,112,0.0,56,1.0,1.0,3.0,1.6,0.0,1310.0,0.0,0.0,0.0,0.0,17779.0,0.0,0.0,3,7,0.0,2,1.0 +3659,5118,3507.160823936299,27.0,112,4320.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31415.35,0.0,26910.0,2,8,1.0,3,2.0 +3660,5119,2077.148809850994,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49820.0,0.0,0.0,49687.55,0.0,0.0,1,4,4.0,3,0.0 +3661,5121,2481.5671310073326,50.0,111,0.0,56,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,51023.35,2840.0,48100.0,3,9,7.0,4,3.0 +3662,5122,818.8277520690564,39.0,111,0.0,56,1.0,0.0,3.0,1.8,0.0,6290.0,0.0,0.0,0.0,0.0,16674.0,1190.0,2250.0,3,8,7.0,2,1.0 +3663,5123,676.6250995301118,33.0,112,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21186.15,2830.0,14830.0,3,9,1.0,2,1.0 +3664,5124,2442.14134276415,31.0,112,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,51387.95,0.0,33160.0,2,8,2.0,4,2.0 +3665,5125,3467.342770802671,32.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51513.6,0.0,48360.0,3,8,6.0,4,2.0 +3666,5126,443.00174750056243,36.0,111,9080.0,43,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,17786.0,0.0,0.0,3,7,5.0,2,1.0 +3667,5129,1763.6298064748091,60.0,400,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35776.4,0.0,36840.0,1,0,0.0,3,2.0 +3668,5130,2738.0515993719005,58.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27930.0,41.0,0.0,27624.0,0.0,0.0,1,7,5.0,3,0.0 +3669,5132,512.9010505095137,45.0,111,7550.0,54,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25476.85,0.0,7190.0,3,9,7.0,2,1.0 +3670,5133,1589.9969297558162,51.0,300,5950.0,22,1.0,0.0,3.0,2.0,0.0,3850.0,0.0,0.0,0.0,0.0,9718.0,0.0,0.0,1,0,0.0,4,1.0 +3671,5134,4078.2648231014514,38.0,111,3400.0,68,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,35370.0,750.0,19140.0,3,10,8.0,4,1.0 +3672,5135,1394.4920572368299,59.0,120,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47646.7,0.0,0.0,1,0,1.0,3,2.0 +3673,5136,3231.2154631196813,27.0,400,3100.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49196.66059831116,0.0,28460.0,2,0,0.0,4,2.0 +3674,5137,1343.5519171376254,39.0,112,0.0,13,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,14822.788233620935,0.0,0.0,1,7,0.0,2,1.0 +3675,5138,1050.8572963940671,41.0,111,0.0,84,0.0,0.0,2.0,1.3,0.0,5810.0,0.0,0.0,0.0,0.0,17340.0,0.0,1330.0,3,10,8.0,2,0.0 +3676,5139,1406.0932217176958,50.0,112,0.0,46,2.0,2.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,53605.63099292306,0.0,46780.0,2,6,1.0,4,2.0 +3677,5141,568.3289593048598,44.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23794.6,2650.0,16350.0,3,7,5.0,2,1.0 +3678,5142,3802.111834627001,89.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10500.0,0.0,0.0,10464.9,0.0,0.0,1,0,0.0,1,0.0 +3679,5143,573.7157025156812,29.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,7500.0,0.0,0.0,0.0,0.0,36263.55,0.0,21230.0,3,7,5.0,2,0.0 +3680,5147,1453.872811341151,51.0,120,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,14069.95,0.0,22820.0,2,0,2.0,4,2.0 +3681,5149,2089.751408960421,60.0,112,5990.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,74283.65797579409,0.0,74660.0,1,10,4.0,4,4.0 +3682,5150,2552.8837386327496,56.0,300,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,8211.0,0.0,72581.98029915558,0.0,77450.0,1,0,0.0,3,2.0 +3683,5151,2200.6360644482784,46.0,111,3300.0,46,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47778.25,0.0,47750.0,3,10,8.0,2,3.0 +3684,5153,2820.9190758490604,41.0,111,350.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,1100.0,0.0,0.0,50220.65,0.0,43210.0,2,9,7.0,4,2.0 +3685,5154,234.22335535063846,56.0,111,0.0,45,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22205.55,0.0,21910.0,3,9,7.0,2,1.0 +3686,5156,2626.5649010750326,56.0,120,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1199.1,0.0,1580.0,1,0,0.0,1,1.0 +3687,5157,405.2049638798376,35.0,112,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25288.65,0.0,23930.0,2,8,1.0,2,1.0 +3688,5158,1975.3024986447203,34.0,112,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,304.0,0.0,61766.4,0.0,58670.0,2,7,0.0,4,2.0 +3689,5159,2574.2134542698577,41.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20739.1,0.0,22710.0,3,9,7.0,1,1.0 +3690,5161,1221.4818151873917,53.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33069.1,0.0,35010.0,2,5,4.0,3,2.0 +3691,5162,1836.778597527908,55.0,400,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23018.75,0.0,0.0,1,0,0.0,3,2.0 +3692,5163,3282.1546712769573,48.0,111,4720.0,63,2.0,2.0,3.0,1.8,0.0,2670.0,0.0,0.0,0.0,0.0,22059.0,0.0,9750.0,3,9,7.0,4,2.0 +3693,5164,5451.67159790817,31.0,111,16270.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17365.8,0.0,3200.0,3,9,7.0,1,1.0 +3694,5165,3222.9054916038785,32.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,14.0,0.0,22197.4,0.0,23910.0,2,10,8.0,1,1.0 +3695,5168,2086.0022568441623,69.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20960.0,258.0,74887.0,92401.1,0.0,0.0,2,10,0.0,3,0.0 +3696,5169,628.2396246123909,33.0,221,0.0,56,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,15035.0,1430.0,4830.0,3,1,3.0,2,1.0 +3697,5170,1289.8017946466357,65.0,112,9890.0,71,1.0,0.0,2.0,1.5,0.0,0.0,0.0,8670.0,74.0,0.0,18729.4,0.0,0.0,1,7,0.0,3,1.0 +3698,5171,2125.4010679915436,35.0,112,9380.0,38,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47351.2,0.0,34760.0,3,8,2.0,4,2.0 +3699,5172,1768.456274319953,69.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,77850.0,0.0,0.0,65352.68384495997,0.0,500.0,1,0,0.0,3,0.0 +3700,5173,3157.948337282356,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36014.0,0.0,0.0,5,10,8.0,3,0.0 +3701,5175,1035.3180915802523,38.0,112,0.0,63,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24715.6,3450.0,17190.0,3,9,2.0,2,1.0 +3702,5176,4178.692942294547,85.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15100.0,0.0,25.0,13253.95,0.0,0.0,1,6,0.0,5,0.0 +3703,5177,3063.171458661391,61.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21224.3,990.0,20690.0,3,7,5.0,1,1.0 +3704,5178,1887.6119865957098,83.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39490.0,0.0,0.0,38832.8,0.0,0.0,1,9,7.0,3,0.0 +3705,5181,1564.3759119860665,47.0,300,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45969.7,0.0,44780.0,1,0,1.0,4,2.0 +3706,5182,3875.147031960734,47.0,111,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45030.9,0.0,45510.0,2,9,7.0,4,2.0 +3707,5183,728.5792100555309,21.0,111,0.0,53,1.0,1.0,4.0,2.3,8110.0,0.0,0.0,0.0,0.0,0.0,38806.9,0.0,20720.0,3,9,7.0,2,1.0 +3708,5184,1933.1673350796673,52.0,112,4430.0,13,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,26321.65,650.0,2470.0,2,9,0.0,4,3.0 +3709,5185,1507.9520886134062,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2404.0,0.0,0.0,3,7,5.0,1,0.0 +3710,5186,1895.8504265521274,41.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22844.2,0.0,24870.0,1,6,4.0,1,1.0 +3711,5187,1137.5221626402488,45.0,221,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,11562.4,2980.0,4510.0,3,1,2.0,2,1.0 +3712,5188,4089.627447807721,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22150.9,0.0,0.0,3,8,7.0,5,0.0 +3713,5190,2733.38831020423,62.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16070.0,0.0,0.0,15118.8,0.0,0.0,1,9,7.0,1,0.0 +3714,5192,738.6700507434272,32.0,112,0.0,48,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,27658.1,0.0,27530.0,2,9,0.0,2,1.0 +3715,5193,4022.7544779335153,84.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,42810.0,0.0,0.0,24869.047150848583,0.0,0.0,1,10,8.0,1,0.0 +3716,5194,2379.780712649002,55.0,111,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32805.8,1940.0,30810.0,3,6,4.0,4,3.0 +3717,5195,848.1249546722597,44.0,111,0.0,64,3,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,29393.8,0.0,29480.0,3,9,7.0,2,3.0 +3718,5196,1496.0482918301238,58.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19351.05,0.0,20760.0,3,10,4.0,1,1.0 +3719,5197,2362.127126580193,43.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,157859.7,0.0,185870.0,2,10,0.0,4,2.0 +3720,5198,2576.6941623470225,42.0,112,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,58794.2,0.0,60400.0,2,8,3.0,4,2.0 +3721,5199,1392.8179294456509,57.0,111,1520.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31581.15,0.0,31680.0,1,7,5.0,3,2.0 +3722,5200,850.5363743757761,47.0,111,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27622.75,0.0,18750.0,3,9,7.0,2,2.0 +3723,5201,1841.357509255848,46.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,57694.2,0.0,59500.0,2,9,7.0,4,2.0 +3724,5202,1550.3774957891283,54.0,111,0.0,68,2.0,1.0,2.0,1.5,0.0,9040.0,0.0,0.0,0.0,0.0,12300.0,0.0,0.0,3,9,7.0,2,2.0 +3725,5204,2109.0376012659826,42.0,400,0.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36537.85,0.0,38900.0,1,0,0.0,2,1.0 +3726,5205,5181.512135789264,52.0,111,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,16669.45,0.0,17910.0,3,10,8.0,5,1.0 +3727,5206,4229.94207940679,36.0,111,32160.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47339.635,0.0,29350.0,2,9,7.0,3,2.0 +3728,5207,1329.2385850714393,57.0,111,0.0,52,3,4.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,76734.75,0.0,83010.0,2,7,6.0,4,4.0 +3729,5208,2821.6710628177125,75.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39970.0,0.0,0.0,37013.85,0.0,0.0,1,10,4.0,3,0.0 +3730,5209,3355.8284990594334,59.0,111,12350.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34950.25,0.0,26360.0,1,9,7.0,3,1.0 +3731,5210,2893.1747586428537,56.0,111,8310.0,63,1.0,0.0,1.0,1.0,5070.0,0.0,0.0,0.0,0.0,0.0,13380.0,0.0,0.0,5,8,6.0,1,1.0 +3732,5214,5371.33346163047,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18100.0,194.0,0.0,18086.25,0.0,0.0,3,10,8.0,1,0.0 +3733,5215,1891.6768678369779,57.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21180.65,0.0,21970.0,2,9,7.0,1,1.0 +3734,5216,2378.9109527187934,44.0,112,500.0,63,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,7512.1,0.0,6860.0,2,8,3.0,2,1.0 +3735,5218,2493.9159072531165,46.0,300,70.0,52,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,20821.3,3450.0,11620.0,3,0,1.0,4,2.0 +3736,5219,3016.62091439672,38.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,87596.1,0.0,90160.0,3,10,8.0,4,2.0 +3737,5220,1838.8750003129774,73.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48060.0,0.0,0.0,45900.5,0.0,0.0,5,0,0.0,3,0.0 +3738,5221,728.3229466694387,33.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20572.45,3490.0,12900.0,3,9,7.0,2,1.0 +3739,5222,3660.079132691001,26.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17413.0,0.0,17940.0,3,6,5.0,1,1.0 +3740,5223,3101.719631331277,37.0,112,1130.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,41961.4,0.0,30880.0,1,10,4.0,4,2.0 +3741,5225,2129.772162435414,50.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19978.3,0.0,20300.0,3,9,7.0,3,1.0 +3742,5227,2357.3777718947895,31.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36361.3,0.0,30560.0,3,9,7.0,4,2.0 +3743,5228,2241.693485285017,33.0,111,6340.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,2100.0,0.0,0.0,41007.6,0.0,32940.0,3,9,7.0,3,2.0 +3744,5229,1218.9630391082574,35.0,111,0.0,45,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23818.8,1150.0,22090.0,3,10,8.0,2,1.0 +3745,5231,2047.4138381405146,54.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42873.3,0.0,45000.0,1,5,0.0,4,2.0 +3746,5232,2708.32002339515,59.0,111,9380.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17101.15,0.0,8370.0,3,5,4.0,1,1.0 +3747,5234,1817.1500758404159,87.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,68490.0,0.0,0.0,83492.28272480979,0.0,0.0,1,0,3.0,3,0.0 +3748,5235,2180.1266714107423,50.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,960.0,0.0,89828.1,0.0,94520.0,1,4,3.0,4,2.0 +3749,5237,2832.4267998439204,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28200.0,0.0,0.0,26059.25,0.0,0.0,3,7,4.0,1,0.0 +3750,5239,3160.692267801096,43.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19142.4,80.0,19770.0,3,10,8.0,3,1.0 +3751,5240,3660.7912343888825,63.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17100.0,0.0,0.0,16905.45,0.0,0.0,3,0,0.0,1,0.0 +3752,5241,822.4460698507326,53.0,111,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,13081.0,0.0,0.0,3,9,7.0,1,0.0 +3753,5243,1757.29527454467,46.0,111,0.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,3840.0,0.0,0.0,27339.65,0.0,22840.0,3,10,8.0,2,2.0 +3754,5245,2017.6287229368397,54.0,211,120.0,67,1.0,1.0,3.0,2.0,10440.0,0.0,0.0,0.0,0.0,0.0,17390.0,50.0,6180.0,3,2,3.0,4,1.0 +3755,5246,3959.7057823661075,34.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,58.0,0.0,25845.8,0.0,25940.0,3,6,5.0,1,1.0 +3756,5248,2484.2805273018666,58.0,111,0.0,43,2.0,1.0,3.0,2.0,0.0,5580.0,0.0,15620.0,0.0,0.0,48261.8,1050.0,29260.0,1,6,4.0,4,2.0 +3757,5249,4629.419345889148,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28410.0,0.0,0.0,27487.0,0.0,0.0,1,7,1.0,3,0.0 +3758,5251,3479.4778842439723,46.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11927.55,0.0,0.0,2,10,8.0,1,1.0 +3759,5252,1870.5024209367875,55.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16080.0,0.0,0.0,52451.0,0.0,39590.0,3,8,0.0,3,1.0 +3760,5253,1464.3556298279636,44.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,121294.45317625866,0.0,116810.0,2,9,7.0,4,2.0 +3761,5254,2714.4260699582537,39.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,69781.75,0.0,77060.0,1,10,8.0,4,2.0 +3762,5256,1734.822337178501,58.0,400,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45191.45,0.0,16170.0,1,0,1.0,3,2.0 +3763,5257,1813.5419878931548,65.0,300,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,26240.0,0.0,0.0,65953.85,0.0,34240.0,1,0,0.0,3,2.0 +3764,5258,2600.9614220926674,55.0,112,3800.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,27710.0,0.0,0.0,72497.65,0.0,49480.0,1,10,0.0,4,2.0 +3765,5259,2217.37452988651,86.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,3320.0,12710.0,0.0,0.0,16043.0,0.0,0.0,5,9,0.0,3,0.0 +3766,5260,670.7283114947572,45.0,400,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19348.75,2380.0,16870.0,5,0,0.0,2,1.0 +3767,5261,2486.855016199265,59.0,111,0.0,,0.0,0.0,1.0,1.0,2700.0,0.0,0.0,6470.0,0.0,0.0,11786.0,0.0,0.0,3,9,7.0,1,0.0 +3768,5263,4205.4327199628615,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,330.0,9260.0,0.0,0.0,8966.45,0.0,0.0,1,10,8.0,1,0.0 +3769,5264,2377.222779397448,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37400.0,0.0,0.0,34766.1,0.0,0.0,1,6,4.0,3,0.0 +3770,5265,1631.9321228409258,36.0,300,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45481.5,0.0,45330.0,2,0,0.0,4,2.0 +3771,5266,586.6371037990391,38.0,400,0.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46866.25,0.0,41000.0,3,0,0.0,4,2.0 +3772,5267,974.5446700867253,36.0,111,3720.0,84,0.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33033.85,0.0,10550.0,3,10,8.0,2,0.0 +3773,5269,2494.855211677252,75.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26440.0,0.0,0.0,23887.3,0.0,0.0,3,9,7.0,1,0.0 +3774,5270,1492.381904065689,53.0,112,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,65563.2,0.0,72920.0,1,10,0.0,3,2.0 +3775,5271,1477.9179184285765,67.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63030.0,0.0,0.0,55746.15,0.0,0.0,1,0,0.0,3,0.0 +3776,5272,2016.2108130052866,68.0,211,0.0,64,1.0,0.0,1.0,1.0,0.0,0.0,0.0,17430.0,4.0,0.0,21969.2,0.0,4670.0,1,4,4.0,1,1.0 +3777,5274,1811.4562418671242,37.0,112,920.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37533.6,0.0,36780.0,2,8,0.0,4,2.0 +3778,5275,2437.780496750621,61.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13470.0,11.0,0.0,13757.0,0.0,0.0,1,9,3.0,1,0.0 +3779,5276,2953.3633089106143,30.0,111,1260.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56790.1,0.0,63540.0,1,10,8.0,3,2.0 +3780,5277,1727.5140505346315,38.0,111,0.0,67,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,35999.1,0.0,26410.0,2,7,5.0,4,2.0 +3781,5278,2010.6816457914774,41.0,111,0.0,38,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,88324.75,0.0,88070.0,3,10,8.0,4,2.0 +3782,5279,1599.0456239339808,59.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,42250.0,449.0,0.0,96370.75,0.0,55750.0,1,7,6.0,3,2.0 +3783,5280,2238.993927711437,31.0,111,0.0,65,2.0,2.0,2.0,1.5,17730.0,0.0,0.0,0.0,0.0,0.0,34031.0,0.0,14630.0,3,7,5.0,3,2.0 +3784,5282,1910.1199636767526,50.0,112,2800.0,54,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,85915.95,0.0,85180.0,2,9,0.0,4,3.0 +3785,5284,4056.1262145155833,53.0,111,0.0,48,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,40906.2,0.0,41590.0,3,10,8.0,4,3.0 +3786,5286,3566.989149964769,48.0,111,0.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35430.3,0.0,37690.0,1,9,7.0,2,2.0 +3787,5287,2997.933730128332,50.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22204.65,0.0,24010.0,3,8,7.0,1,1.0 +3788,5288,2981.2933283612715,59.0,111,20030.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,1930.0,0.0,0.0,32913.2,0.0,12050.0,2,7,5.0,4,1.0 +3789,5289,2116.6154581777923,50.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46149.0,0.0,51710.0,2,9,7.0,4,2.0 +3790,5290,1430.6928638622028,72.0,211,11350.0,22,2.0,0.0,2.0,1.5,0.0,0.0,0.0,22310.0,0.0,0.0,33393.9,0.0,0.0,3,2,3.0,3,2.0 +3791,5291,1309.121623254655,37.0,111,0.0,47,2.0,2.0,6.0,3.1,0.0,7170.0,0.0,0.0,0.0,0.0,64926.2,3620.0,45640.0,3,9,7.0,5,2.0 +3792,5293,2543.0303823272247,30.0,120,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,118461.35,0.0,40120.0,2,0,0.0,4,2.0 +3793,5295,2896.983936318871,77.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30720.0,0.0,0.0,27164.0,0.0,0.0,1,10,8.0,1,0.0 +3794,5298,2425.7421411468363,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49090.0,0.0,0.0,43836.15,0.0,0.0,1,10,8.0,3,0.0 +3795,5299,1887.830190003995,62.0,112,44880.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39470.0,0.0,0.0,37568.7,0.0,0.0,1,8,2.0,3,0.0 +3796,5300,4295.0410265036135,24.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18979.55,0.0,20310.0,5,8,6.0,1,1.0 +3797,5301,3496.837205439077,39.0,211,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12689.0,4710.0,7550.0,5,1,3.0,3,2.0 +3798,5302,7609.645658739784,25.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31140.15,0.0,33880.0,3,10,8.0,1,1.0 +3799,5304,573.0494754213454,28.0,112,0.0,85,0.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23270.0,0.0,0.0,3,9,0.0,2,0.0 +3800,5305,2147.3117455765378,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62670.0,0.0,0.0,54209.45,0.0,0.0,1,8,7.0,3,0.0 +3801,5306,888.3087748073594,56.0,221,8710.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39165.8,0.0,28490.0,2,1,2.0,2,2.0 +3802,5308,4007.0885927733675,83.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20220.0,0.0,0.0,19070.75,0.0,0.0,1,6,4.0,1,0.0 +3803,5309,2978.512525386368,68.0,111,8140.0,77,1.0,0.0,3.0,2.0,0.0,0.0,0.0,8630.0,0.0,0.0,31918.25,2550.0,13330.0,1,10,8.0,4,1.0 +3804,5310,1997.3155345472685,64.0,112,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,32220.0,0.0,0.0,34516.75,0.0,560.0,1,7,0.0,3,1.0 +3805,5313,2654.796485453695,36.0,112,0.0,31,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,104330.85,0.0,13890.0,3,9,0.0,4,2.0 +3806,5314,2967.3650691925286,50.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,78596.0,0.0,90010.0,3,8,7.0,4,2.0 +3807,5319,2159.9708833544923,51.0,111,0.0,45,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42421.95,2310.0,40090.0,2,10,8.0,4,3.0 +3808,5320,3086.1165049082692,75.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20060.0,0.0,0.0,18954.3,0.0,0.0,1,0,0.0,1,0.0 +3809,5321,1143.314314040387,48.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,530.0,0.0,0.0,0.0,0.0,14758.0,4080.0,7420.0,3,10,8.0,2,1.0 +3810,5322,1936.7397976996956,45.0,211,0.0,38,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,78359.85,0.0,79590.0,2,2,2.0,4,2.0 +3811,5323,2632.3998431238088,22.0,111,0.0,56,1.0,1.0,3.0,2.0,4570.0,0.0,0.0,2200.0,0.0,0.0,16706.9,1920.0,8130.0,1,8,7.0,4,1.0 +3812,5325,3023.2315660624463,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23530.0,0.0,0.0,22527.85,0.0,0.0,1,4,3.0,1,0.0 +3813,5327,122.52669081176936,47.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,14900.0,0.0,0.0,39616.0,0.0,23170.0,2,9,0.0,2,2.0 +3814,5329,1613.1448252753896,53.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,72324.95,0.0,74660.0,1,10,8.0,4,2.0 +3815,5330,1711.9362589989514,77.0,111,0.0,22,1.0,0.0,2.0,1.5,0.0,0.0,0.0,123480.0,0.0,0.0,100021.45,0.0,0.0,1,9,7.0,3,1.0 +3816,5331,1708.9072437393058,50.0,112,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59052.5,0.0,58670.0,2,10,0.0,4,2.0 +3817,5332,2798.9028128352097,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14570.0,0.0,0.0,14433.15,0.0,0.0,3,5,4.0,1,0.0 +3818,5333,2067.245201875676,34.0,111,5890.0,68,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,33787.8,430.0,11830.0,3,6,4.0,4,1.0 +3819,5334,1634.0345189169668,64.0,111,0.0,64,2.0,1.0,2.0,1.5,0.0,0.0,0.0,14050.0,0.0,0.0,32013.15,0.0,21100.0,1,8,6.0,3,2.0 +3820,5336,10902.824791467132,45.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18952.3,0.0,19140.0,3,8,6.0,1,1.0 +3821,5337,2436.1614278338543,34.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49470.85,0.0,46990.0,3,8,0.0,4,2.0 +3822,5338,1688.8658728560301,66.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37410.0,0.0,0.0,37048.15,0.0,0.0,1,0,0.0,3,0.0 +3823,5339,2725.3653876834946,39.0,120,1910.0,37,3,3.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,39962.35,0.0,27590.0,3,0,3.0,4,4.0 +3824,5340,1581.1719807544575,47.0,112,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,56280.85,0.0,50620.0,2,8,2.0,4,2.0 +3825,5343,2678.7385984765883,56.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30296.0,0.0,35960.0,2,9,7.0,1,1.0 +3826,5347,4338.611236477617,70.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14390.0,0.0,0.0,15425.0,0.0,1030.0,3,1,2.0,1,0.0 +3827,5348,1724.998784337849,47.0,111,1080.0,46,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,69967.25,0.0,70890.0,3,8,7.0,4,4.0 +3828,5350,3072.2888242097283,41.0,111,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45138.35,0.0,49980.0,2,10,8.0,3,2.0 +3829,5353,2095.5916097841523,46.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,439.0,0.0,52454.39255402651,0.0,56900.0,2,9,0.0,4,2.0 +3830,5354,2311.926532947598,55.0,111,2370.0,21,1.0,1.0,3.0,2.0,9720.0,0.0,0.0,4700.0,24.0,0.0,19948.2,0.0,0.0,1,8,6.0,4,1.0 +3831,5355,2294.506116962915,71.0,212,38890.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,20780.0,0.0,0.0,54249.4,0.0,0.0,1,2,0.0,3,1.0 +3832,5357,2803.779161390369,58.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25766.95,0.0,29060.0,3,10,8.0,1,1.0 +3833,5358,1886.8911140679247,31.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27359.0,0.0,30040.0,2,8,0.0,1,1.0 +3834,5359,3780.59542433941,24.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24529.0,0.0,22440.0,5,8,7.0,1,1.0 +3835,5360,5772.102493461209,42.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18036.9,0.0,18750.0,5,10,8.0,1,1.0 +3836,5361,3368.30017385276,25.0,111,3390.0,67,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20115.0,0.0,11180.0,3,5,4.0,2,1.0 +3837,5362,2196.6878592280236,30.0,112,6120.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48829.75,0.0,42130.0,2,8,2.0,4,2.0 +3838,5363,1699.0311482171378,38.0,400,0.0,13,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24529.9,0.0,15840.0,2,0,0.0,4,2.0 +3839,5364,2110.089199594571,30.0,111,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,56886.8,0.0,57260.0,2,9,7.0,4,2.0 +3840,5365,1631.63087207625,72.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38970.0,1725.0,0.0,41047.5,0.0,0.0,1,9,1.0,3,0.0 +3841,5366,2508.327769842307,80.0,111,0.0,74,1.0,1.0,3.0,2.0,6250.0,0.0,0.0,29190.0,0.0,0.0,51322.1,1420.0,14580.0,1,7,5.0,4,1.0 +3842,5367,4112.556312956627,24.0,112,3100.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3127.0,0.0,0.0,5,9,0.0,1,1.0 +3843,5370,3618.0491310334637,50.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32835.8,0.0,34660.0,2,9,3.0,1,1.0 +3844,5372,2699.816989184023,84.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22060.0,0.0,0.0,21749.55,0.0,0.0,3,6,5.0,1,0.0 +3845,5375,1474.454321284248,90.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40390.0,0.0,0.0,39036.15,0.0,0.0,1,6,5.0,3,0.0 +3846,5376,2254.9536045480036,50.0,111,0.0,37,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,64.0,0.0,76588.30473003941,0.0,91060.0,1,7,5.0,4,3.0 +3847,5377,1135.1900683566323,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21530.0,0.0,0.0,20639.35,0.0,0.0,3,7,5.0,1,0.0 +3848,5378,2081.34910373551,42.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36528.2,0.0,34440.0,2,6,0.0,4,2.0 +3849,5379,2788.866092547585,59.0,221,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,9400.0,0.0,0.0,17172.2,160.0,10270.0,1,1,2.0,3,1.0 +3850,5382,1941.4660840843064,61.0,111,9030.0,72,1.0,1.0,4.0,2.5,0.0,9370.0,0.0,8760.0,0.0,0.0,34283.0,0.0,10490.0,1,10,8.0,4,1.0 +3851,5384,2958.677712815118,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19320.0,0.0,0.0,18429.5,0.0,0.0,1,8,6.0,1,0.0 +3852,5385,2040.7817350125513,37.0,112,0.0,33,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41122.0,0.0,40370.0,2,8,1.0,4,1.0 +3853,5386,1729.8492197900703,44.0,300,0.0,62,1.0,1.0,3.0,1.8,9720.0,0.0,0.0,0.0,0.0,0.0,42979.25,0.0,35910.0,2,0,0.0,4,1.0 +3854,5387,1296.1816010064456,75.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51010.0,0.0,0.0,42809.2,0.0,0.0,1,6,0.0,3,0.0 +3855,5388,2609.6169192545294,66.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11440.0,0.0,0.0,11212.15,0.0,0.0,1,0,0.0,1,0.0 +3856,5389,2236.7685386843546,78.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22220.0,0.0,0.0,25734.95,0.0,0.0,1,9,1.0,3,0.0 +3857,5393,1461.0393231481698,49.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39505.0,0.0,44100.0,1,7,5.0,3,2.0 +3858,5394,1592.3477204602568,56.0,111,0.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,14120.0,15.0,0.0,41633.239185203005,0.0,17760.0,5,9,7.0,2,2.0 +3859,5395,3565.024365638741,36.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15428.05,0.0,0.0,5,9,7.0,1,1.0 +3860,5396,1839.8623048879906,64.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20130.0,0.0,0.0,20304.85,0.0,140.0,1,0,0.0,3,0.0 +3861,5397,2894.5319335392146,49.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,800.0,0.0,63214.55,0.0,71510.0,2,10,8.0,1,1.0 +3862,5398,2477.8587408295703,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7266.0,0.0,0.0,3,8,6.0,1,0.0 +3863,5399,1611.094461910771,67.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34430.0,0.0,0.0,30516.6,0.0,0.0,1,1,2.0,1,0.0 +3864,5400,606.1680408925552,43.0,111,0.0,85,0.0,0.0,3.0,1.8,0.0,6040.0,0.0,0.0,0.0,0.0,13976.0,0.0,0.0,3,9,7.0,2,0.0 +3865,5401,3255.6320349834946,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17870.0,0.0,0.0,26435.85,0.0,9340.0,3,10,8.0,1,0.0 +3866,5402,2879.4432001453883,55.0,120,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31129.3,0.0,33030.0,1,0,0.0,1,1.0 +3867,5405,2250.562985067978,49.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20011.65,0.0,21210.0,3,9,7.0,1,1.0 +3868,5406,1746.6948393345692,61.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19861.7,0.0,21450.0,1,10,8.0,1,1.0 +3869,5407,3289.3751862246168,49.0,111,0.0,23,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,57340.6,0.0,60090.0,1,6,4.0,4,2.0 +3870,5409,1662.1125968197525,61.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,84920.0,0.0,0.0,71674.25,0.0,0.0,1,0,1.0,3,0.0 +3871,5411,1488.4012903245075,72.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18540.0,0.0,0.0,18479.560254100692,0.0,0.0,1,0,0.0,3,0.0 +3872,5412,1395.0743797830507,74.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29700.0,0.0,0.0,29927.05,0.0,0.0,1,0,1.0,3,0.0 +3873,5413,1393.3727650975295,83.0,120,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29430.0,0.0,0.0,28206.7,0.0,0.0,1,0,0.0,3,0.0 +3874,5414,2868.1347133627037,22.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36166.0,1020.0,36270.0,3,4,0.0,3,2.0 +3875,5415,1165.3655012154036,27.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25164.15,0.0,20690.0,2,8,7.0,2,1.0 +3876,5416,4082.136690626927,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11430.0,0.0,0.0,13882.0,0.0,0.0,3,9,7.0,1,0.0 +3877,5417,3324.310136554115,66.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30470.0,0.0,0.0,29658.455353277037,0.0,0.0,1,10,8.0,3,0.0 +3878,5419,2016.9672366278933,52.0,120,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2580.0,0.0,0.0,20883.15,0.0,18790.0,1,0,0.0,1,1.0 +3879,5421,2413.9315996602504,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24690.0,0.0,0.0,24367.05,0.0,310.0,3,9,7.0,1,0.0 +3880,5422,2132.8227835020834,47.0,300,0.0,52,2.0,2.0,8.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,33101.8,0.0,29990.0,2,0,0.0,5,2.0 +3881,5423,2128.5181462211563,22.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21367.0,0.0,21350.0,3,9,0.0,3,2.0 +3882,5425,3296.5897052655882,78.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14030.0,0.0,0.0,14758.0,0.0,0.0,3,7,5.0,1,0.0 +3883,5428,1154.3521913357672,48.0,111,0.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,19610.0,0.0,0.0,42638.85,0.0,24210.0,3,6,5.0,5,1.0 +3884,5429,1902.085631736006,50.0,112,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45155.45,0.0,49430.0,2,9,0.0,4,2.0 +3885,5430,2335.0102804508983,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39000.0,0.0,0.0,31707.2,0.0,0.0,1,8,6.0,1,0.0 +3886,5431,1064.8894798196525,47.0,112,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25598.4,930.0,18360.0,3,9,3.0,2,1.0 +3887,5432,2190.5867667984653,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32040.0,0.0,0.0,31252.2,0.0,0.0,1,9,7.0,3,0.0 +3888,5433,1353.952082668024,48.0,112,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,67909.7,0.0,68010.0,2,9,3.0,4,2.0 +3889,5436,2265.3716642568693,70.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36480.0,0.0,0.0,34356.4,0.0,0.0,1,10,0.0,3,0.0 +3890,5437,2226.89541899022,31.0,120,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34074.95,0.0,33020.0,2,0,1.0,3,2.0 +3891,5438,2412.0098321763226,62.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18090.0,0.0,0.0,15751.95,0.0,0.0,3,8,7.0,1,0.0 +3892,5439,3736.894550624355,27.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47570.8,0.0,48670.0,3,9,7.0,4,2.0 +3893,5440,5207.981491761335,28.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19722.5,0.0,19950.0,3,8,7.0,1,1.0 +3894,5441,2782.3713698621614,36.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20171.75,0.0,20810.0,3,5,4.0,1,1.0 +3895,5442,1440.6917251835378,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42870.0,0.0,0.0,45170.1,0.0,50.0,1,7,5.0,3,0.0 +3896,5443,619.531968449847,51.0,112,0.0,43,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37958.4,0.0,0.0,3,9,2.0,2,2.0 +3897,5444,6034.067190293739,67.0,211,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,23930.0,0.0,0.0,45844.24191596298,0.0,0.0,3,1,3.0,1,1.0 +3898,5446,1602.8290049135815,66.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37300.0,0.0,0.0,37040.336107559284,0.0,0.0,1,7,0.0,3,0.0 +3899,5447,1273.6768217751235,35.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25507.1,1070.0,24330.0,3,8,6.0,2,1.0 +3900,5448,3855.767996884746,60.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17950.0,0.0,0.0,17677.95,0.0,0.0,1,6,0.0,1,0.0 +3901,5449,905.0938744878878,42.0,111,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28869.75,0.0,20220.0,3,10,8.0,2,1.0 +3902,5450,2240.5130442006703,61.0,111,24130.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,188.0,0.0,32530.55,0.0,12380.0,1,7,5.0,3,1.0 +3903,5451,2148.4021518788136,70.0,112,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,67440.0,0.0,0.0,84692.7,0.0,23650.0,2,9,2.0,3,1.0 +3904,5452,2852.2409146681143,56.0,300,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,950.0,0.0,0.0,25549.55,0.0,24680.0,3,0,0.0,2,1.0 +3905,5453,1413.173307412627,72.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,80740.0,0.0,0.0,69443.4,0.0,0.0,1,0,0.0,3,0.0 +3906,5454,4052.9852733753946,59.0,120,2670.0,78,1.0,1.0,6.0,3.1,19450.0,0.0,0.0,15670.0,0.0,0.0,50730.25,0.0,10260.0,1,0,0.0,5,1.0 +3907,5456,1759.3782119569678,69.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39570.0,0.0,0.0,38596.7,0.0,580.0,1,8,0.0,3,0.0 +3908,5457,2031.460836689689,56.0,112,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28517.55,0.0,29670.0,2,6,2.0,3,1.0 +3909,5458,2313.139114950542,54.0,111,5950.0,78,0.0,0.0,1.0,1.0,2180.0,0.0,0.0,0.0,0.0,0.0,10870.0,0.0,0.0,3,10,8.0,1,0.0 +3910,5459,2247.369058408287,83.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15980.0,0.0,0.0,15980.0,0.0,0.0,5,0,1.0,1,0.0 +3911,5462,2281.1616211242786,53.0,300,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38947.25,0.0,40720.0,2,0,0.0,4,2.0 +3912,5463,2427.373606747411,49.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,81622.6,0.0,94930.0,2,10,8.0,4,2.0 +3913,5464,4628.279129800969,55.0,112,7800.0,78,1.0,0.0,2.0,1.5,9720.0,0.0,0.0,0.0,0.0,0.0,27362.0,0.0,6770.0,3,9,1.0,2,1.0 +3914,5466,3054.563075648502,87.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21320.0,0.0,0.0,20087.8,0.0,0.0,3,0,0.0,1,0.0 +3915,5467,2812.910628205191,50.0,112,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6263.0,0.0,6770.0,2,7,0.0,1,0.0 +3916,5468,2966.8441219287215,70.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29760.0,0.0,0.0,27986.753532770384,0.0,0.0,1,9,7.0,3,0.0 +3917,5469,2420.6863563673487,35.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,450.0,0.0,59913.5,0.0,57520.0,2,10,8.0,4,2.0 +3918,5474,2708.9179497361847,35.0,111,7400.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35057.2,0.0,29380.0,3,8,6.0,3,2.0 +3919,5475,1867.9396426562116,43.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,66348.55,0.0,70680.0,2,8,7.0,4,2.0 +3920,5476,3325.970518562843,59.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31738.05,0.0,27160.0,5,10,8.0,1,1.0 +3921,5478,2159.227407204613,64.0,112,3870.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42450.0,0.0,0.0,43191.55,0.0,830.0,1,8,0.0,3,0.0 +3922,5480,2879.9224717466245,29.0,111,0.0,81,1.0,0.0,2.0,1.3,0.0,7070.0,0.0,0.0,0.0,0.0,11556.0,0.0,0.0,3,9,7.0,2,1.0 +3923,5481,4196.984631417486,69.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,5480.0,0.0,21020.0,0.0,0.0,28417.75,2740.0,0.0,1,10,4.0,1,0.0 +3924,5482,2187.3777318388024,47.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,97769.65,0.0,85600.0,2,10,8.0,4,2.0 +3925,5485,2569.911567046333,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23420.0,0.0,0.0,21392.0,0.0,0.0,1,7,5.0,1,0.0 +3926,5486,1143.2412136964101,66.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30640.0,0.0,0.0,29908.1,0.0,0.0,2,2,3.0,3,0.0 +3927,5487,2198.2926285288268,45.0,111,27250.0,38,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,59501.3,0.0,27400.0,2,10,8.0,4,2.0 +3928,5488,2357.6863798388335,48.0,112,5200.0,69,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,36827.55,0.0,27810.0,2,7,0.0,4,4.0 +3929,5490,4071.5455807682124,28.0,400,0.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22948.8,0.0,23090.0,3,0,0.0,3,2.0 +3930,5491,3635.26932889572,83.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35170.0,0.0,0.0,30625.2,0.0,0.0,1,10,8.0,1,0.0 +3931,5492,1791.875256148012,50.0,120,0.0,34,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,31163.951963985346,0.0,78860.0,1,0,0.0,4,3.0 +3932,5494,2474.4006050382322,42.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,49753.1,0.0,67150.0,2,9,7.0,1,1.0 +3933,5495,519.4963630044398,57.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34382.65,0.0,34590.0,3,6,0.0,3,2.0 +3934,5497,2858.7739088281965,62.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31960.0,0.0,0.0,24809.25,0.0,0.0,3,10,8.0,1,0.0 +3935,5498,2769.6690776671626,47.0,111,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1096.0,0.0,49936.35,0.0,0.0,3,5,4.0,1,1.0 +3936,5499,3131.7980372458123,65.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15830.0,0.0,0.0,31440.218682348175,0.0,17930.0,5,10,8.0,3,1.0 +3937,5500,6598.59501528221,41.0,112,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,155.0,0.0,64736.4,0.0,73210.0,2,7,1.0,4,2.0 +3938,5501,3504.826044470357,51.0,111,0.0,56,2.0,2.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,52781.0,0.0,41390.0,3,10,8.0,5,2.0 +3939,5502,746.9096626794178,40.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24088.6,2980.0,15270.0,3,8,6.0,2,1.0 +3940,5503,2476.0125700502795,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42650.0,50.0,0.0,41313.35,0.0,0.0,1,9,7.0,3,0.0 +3941,5504,2087.363958726437,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15120.0,0.0,0.0,13921.85,0.0,0.0,1,10,8.0,1,0.0 +3942,5505,2644.1912444504305,62.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31371.7,0.0,29650.0,1,10,8.0,1,1.0 +3943,5506,446.43435412359435,54.0,112,0.0,47,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33772.0,0.0,29230.0,3,10,0.0,2,1.0 +3944,5507,2702.416313298465,52.0,400,0.0,12,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15595.05,0.0,0.0,1,0,0.0,3,2.0 +3945,5508,4103.440574848878,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14600.0,0.0,0.0,14347.8,0.0,0.0,3,9,7.0,1,0.0 +3946,5509,4183.909118101104,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14840.0,0.0,0.0,15140.0,0.0,0.0,3,9,7.0,1,0.0 +3947,5511,2965.916073458551,50.0,112,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22710.55,0.0,0.0,1,10,0.0,4,2.0 +3948,5513,1967.3714943578254,58.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20280.0,0.0,0.0,19722.95,0.0,0.0,1,4,3.0,3,0.0 +3949,5514,1633.3681401505476,39.0,111,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27268.8,320.0,25690.0,3,9,7.0,2,1.0 +3950,5515,1347.5045128100899,66.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18010.0,0.0,0.0,19525.180299155578,0.0,0.0,1,0,0.0,3,0.0 +3951,5516,2227.7461873309135,61.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,12820.0,0.0,0.0,47923.45,0.0,40210.0,3,8,7.0,3,2.0 +3952,5518,597.3210438457537,49.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,29.0,0.0,30330.5,0.0,29160.0,3,9,7.0,2,1.0 +3953,5522,2543.786559198422,63.0,300,4670.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11667.15,0.0,8790.0,5,0,0.0,1,1.0 +3954,5523,1680.021725775331,77.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31570.0,0.0,0.0,31724.65,0.0,0.0,1,0,0.0,3,0.0 +3955,5524,2491.0220083835375,69.0,111,12940.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25800.0,0.0,0.0,33752.5,0.0,0.0,1,10,8.0,3,0.0 +3956,5526,2651.8946924082074,85.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24410.0,0.0,0.0,26955.5,0.0,0.0,1,0,0.0,3,0.0 +3957,5528,1526.9176621679037,72.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38040.0,0.0,0.0,35192.3,0.0,0.0,1,0,3.0,3,0.0 +3958,5529,2063.0245778844846,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41160.0,0.0,0.0,38250.210241799425,0.0,0.0,1,9,7.0,3,0.0 +3959,5530,879.7578081299076,49.0,111,4920.0,85,0.0,0.0,3.0,2.0,0.0,1210.0,0.0,0.0,0.0,0.0,14107.45,0.0,0.0,3,6,4.0,2,0.0 +3960,5532,1637.8234894123636,64.0,400,2330.0,72,1.0,0.0,2.0,1.5,0.0,0.0,0.0,13930.0,439.0,0.0,34085.75,0.0,480.0,1,0,0.0,3,1.0 +3961,5533,2069.665114733569,47.0,112,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52761.5,0.0,53780.0,2,9,3.0,4,2.0 +3962,5535,2895.849112350272,38.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,113.0,0.0,34181.85,0.0,32980.0,2,10,8.0,4,2.0 +3963,5537,1942.9357149384834,55.0,120,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52137.2,530.0,52370.0,1,0,3.0,4,3.0 +3964,5538,1478.5724567296033,47.0,111,15240.0,52,2.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,36650.95,0.0,12930.0,1,8,7.0,4,2.0 +3965,5539,3335.986807306858,64.0,400,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,34910.0,0.0,0.0,33983.55,0.0,0.0,1,0,0.0,5,0.0 +3966,5540,870.3173514869621,42.0,111,3890.0,68,1.0,0.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,20985.0,0.0,4260.0,3,7,5.0,2,1.0 +3967,5543,757.4954488722574,37.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20841.95,3040.0,8340.0,3,8,6.0,2,1.0 +3968,5544,1706.4393633770205,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42220.0,0.0,0.0,38170.65,0.0,0.0,1,8,6.0,3,0.0 +3969,5545,937.2935125512785,41.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,6840.0,0.0,0.0,0.0,0.0,19289.4,940.0,4180.0,3,5,4.0,2,1.0 +3970,5548,2092.249086186603,61.0,120,1700.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11700.0,0.0,0.0,21251.45,0.0,5080.0,1,0,0.0,3,1.0 +3971,5549,3362.000073403177,51.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28066.55,0.0,30370.0,2,9,3.0,1,1.0 +3972,5551,1662.2890867834146,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24490.0,38.0,77.0,23986.4,0.0,0.0,1,9,7.0,3,0.0 +3973,5553,2244.1339652899837,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,9480.0,0.0,0.0,11304.0,0.0,0.0,3,8,7.0,2,0.0 +3974,5557,6527.788239542674,43.0,221,4180.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47590.2,0.0,46840.0,3,1,2.0,3,2.0 +3975,5558,2449.4742336958066,51.0,111,0.0,62,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,54224.4,0.0,54740.0,2,7,5.0,4,3.0 +3976,5559,1707.0641837647934,51.0,300,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,246.0,0.0,54702.05,0.0,52890.0,1,0,0.0,4,2.0 +3977,5560,2497.7187626004347,28.0,111,90.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26726.0,0.0,18690.0,3,8,6.0,4,2.0 +3978,5561,1649.6498078217132,59.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,750.0,0.0,0.0,45030.9,0.0,48240.0,2,9,2.0,3,2.0 +3979,5563,2103.3012946337985,40.0,300,0.0,53,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,44173.25,0.0,36750.0,2,0,0.0,4,1.0 +3980,5565,686.596907462333,63.0,111,0.0,56,2.0,0.0,3.0,2.0,0.0,7630.0,0.0,0.0,0.0,0.0,15311.1,220.0,0.0,3,8,7.0,2,2.0 +3981,5567,1747.0952959640476,50.0,111,8490.0,63,3,2.0,4.0,2.5,0.0,0.0,2290.0,7120.0,0.0,0.0,56414.7,0.0,39880.0,3,6,5.0,5,3.0 +3982,5568,704.8371521956277,38.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26105.05,0.0,26340.0,3,6,1.0,3,2.0 +3983,5569,1933.9751366513403,45.0,211,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12760.0,0.0,0.0,32040.75,0.0,20250.0,3,1,2.0,2,1.0 +3984,5570,876.9925658820315,36.0,111,9220.0,54,1.0,0.0,3.0,1.8,0.0,520.0,0.0,0.0,0.0,0.0,19886.85,560.0,0.0,3,9,7.0,2,1.0 +3985,5571,3391.378987724738,57.0,111,0.0,55,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20356.35,0.0,22430.0,1,9,7.0,4,1.0 +3986,5572,1784.1778632277246,58.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2660.0,0.0,25477.15,0.0,9340.0,1,9,7.0,3,2.0 +3987,5574,4202.903105027899,81.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19620.0,0.0,0.0,18430.7,0.0,0.0,1,0,1.0,1,0.0 +3988,5576,2015.7296945696135,96.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27820.0,0.0,0.0,24658.872807433392,0.0,0.0,3,8,3.0,1,0.0 +3989,5577,3747.2829860810166,63.0,112,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,47560.0,0.0,0.0,123436.0,0.0,114420.0,1,8,0.0,3,1.0 +3990,5578,3415.3734392647825,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5510.0,0.0,0.0,22535.0,0.0,16890.0,3,7,5.0,1,0.0 +3991,5580,2758.3722487988234,67.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27030.0,0.0,0.0,98444.95,0.0,0.0,1,9,7.0,3,1.0 +3992,5581,1593.5919670110782,55.0,112,0.0,34,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31666.5,0.0,37530.0,2,9,3.0,2,2.0 +3993,5582,2077.1685020837085,51.0,300,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30897.8,0.0,30900.0,2,0,0.0,3,2.0 +3994,5583,3730.652725562704,66.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10490.0,0.0,0.0,12510.0,0.0,2020.0,3,9,7.0,1,1.0 +3995,5584,4017.650299580426,81.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51160.0,30.0,0.0,49810.5,0.0,0.0,1,1,2.0,3,0.0 +3996,5586,1957.6784474503324,67.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16890.0,0.0,0.0,17167.6,0.0,0.0,1,8,6.0,3,0.0 +3997,5587,1565.5597286795792,68.0,111,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,44360.0,124.0,0.0,40093.65,0.0,0.0,2,10,8.0,3,1.0 +3998,5588,320.78659145748867,50.0,111,13060.0,23,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,88417.65,0.0,58080.0,2,7,5.0,4,3.0 +3999,5589,1798.5809170040993,83.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31080.0,0.0,0.0,30076.75,0.0,0.0,1,1,2.0,3,0.0 +4000,5590,1761.4001835658805,84.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36150.0,0.0,0.0,33757.1,0.0,0.0,1,10,8.0,3,0.0 +4001,5591,2893.600687820696,26.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3270.0,0.0,0.0,3,9,7.0,1,0.0 +4002,5592,1762.4160831470758,62.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18010.0,0.0,0.0,22368.65,0.0,0.0,1,10,0.0,3,0.0 +4003,5593,2220.255555582396,63.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25510.0,0.0,0.0,24019.9,0.0,0.0,1,1,2.0,1,0.0 +4004,5594,2253.5665945819583,46.0,111,0.0,46,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,67.0,0.0,24985.95,0.0,23740.0,2,9,7.0,4,1.0 +4005,5595,1600.1642200918088,50.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,68665.1,0.0,78050.0,1,7,0.0,3,2.0 +4006,5596,2305.858747545941,59.0,112,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,1984.0,0.0,0.0,3,8,0.0,2,1.0 +4007,5597,1745.8512422212928,40.0,400,3400.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,39272.55,0.0,30480.0,2,0,0.0,4,2.0 +4008,5598,1494.4097082694677,51.0,112,2480.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34437.5,0.0,33700.0,2,8,0.0,3,2.0 +4009,5599,2131.3149516692347,45.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38791.1,180.0,37300.0,3,8,6.0,4,2.0 +4010,5600,1966.8651830463236,57.0,112,0.0,34,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49852.8,130.0,52040.0,2,10,0.0,4,3.0 +4011,5601,3118.8608365577466,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46140.0,539.0,0.0,42768.85,0.0,0.0,2,9,7.0,3,0.0 +4012,5602,1576.270690831279,67.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13440.0,0.0,0.0,15048.0,0.0,0.0,3,8,7.0,3,0.0 +4013,5603,2942.4907741723437,38.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1168.0,0.0,21444.85,0.0,22700.0,2,9,7.0,1,1.0 +4014,5604,3463.014372091493,61.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,45877.75,0.0,51770.0,1,10,8.0,1,1.0 +4015,5606,2333.662523810968,58.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7219.0,0.0,5640.0,3,0,0.0,1,0.0 +4016,5607,2714.454340316393,40.0,211,1610.0,65,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17992.6,280.0,16030.0,3,3,4.0,2,1.0 +4017,5610,2468.258633805904,59.0,111,2640.0,68,3,3.0,9.0,4.4,0.0,0.0,0.0,0.0,0.0,0.0,55714.45,0.0,36670.0,3,10,8.0,4,3.0 +4018,5612,663.1776987787016,36.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,62.0,0.0,33669.0,1820.0,19190.0,3,8,6.0,2,1.0 +4019,5615,770.0540641016435,53.0,400,7510.0,52,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16404.6,0.0,2200.0,3,0,0.0,2,1.0 +4020,5616,1756.0054411908839,83.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40150.0,1102.0,0.0,44164.47153692993,0.0,0.0,5,2,2.0,3,0.0 +4021,5619,2932.562756323291,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,56650.0,0.0,0.0,49339.3,0.0,0.0,1,6,4.0,1,0.0 +4022,5620,1679.4203435531729,46.0,112,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,25487.9,0.0,25330.0,2,8,2.0,4,2.0 +4023,5622,3163.0834691859122,39.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,72828.3,0.0,76500.0,2,9,3.0,4,2.0 +4024,5623,1479.864592116165,54.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60873.35,0.0,66670.0,2,7,1.0,3,2.0 +4025,5624,2257.119264829007,36.0,111,410.0,65,1.0,1.0,2.0,1.5,7720.0,0.0,0.0,0.0,0.0,0.0,28863.55,0.0,15940.0,3,5,4.0,3,1.0 +4026,5625,3534.996266495522,27.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50295.0,0.0,50030.0,3,9,7.0,3,2.0 +4027,5627,3207.16698633395,54.0,111,1620.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,22.0,0.0,43723.95,0.0,46390.0,3,10,8.0,2,2.0 +4028,5628,1962.883344619671,36.0,120,5790.0,22,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27615.3,0.0,22520.0,2,0,1.0,4,3.0 +4029,5630,2031.7907011423597,48.0,111,0.0,65,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31327.8,0.0,27290.0,3,10,8.0,4,1.0 +4030,5631,3432.067174008876,16.0,300,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8465.0,0.0,6060.0,3,0,0.0,1,1.0 +4031,5632,4407.045263545482,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16400.0,0.0,0.0,16400.0,0.0,0.0,3,6,5.0,1,0.0 +4032,5633,2753.8359945475713,53.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27683.45,0.0,28050.0,2,8,0.0,3,2.0 +4033,5634,3544.186954903959,54.0,111,0.0,23,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1176.0,0.0,80171.4,0.0,95230.0,5,10,8.0,3,2.0 +4034,5636,2168.968567616824,73.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7360.0,0.0,0.0,6603.350635251731,0.0,0.0,1,0,0.0,1,0.0 +4035,5637,2009.0851724075767,34.0,112,13610.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59685.65,0.0,44650.0,2,7,1.0,4,2.0 +4036,5638,1706.6090763962638,70.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25260.0,0.0,0.0,26227.1,0.0,2160.0,1,4,4.0,3,1.0 +4037,5639,2346.066977930811,89.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,8090.0,0.0,0.0,12723.05,0.0,5460.0,1,8,6.0,2,0.0 +4038,5640,2051.486678741168,41.0,300,5180.0,62,2.0,1.0,3.0,1.8,0.0,0.0,0.0,680.0,0.0,0.0,37957.3,0.0,35010.0,2,0,0.0,4,2.0 +4039,5642,2240.867024351876,31.0,120,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28187.05,1210.0,21290.0,3,0,0.0,4,1.0 +4040,5644,2674.1791538676202,73.0,111,0.0,78,0.0,0.0,2.0,1.5,8660.0,0.0,0.0,16520.0,0.0,0.0,24780.1,0.0,0.0,3,10,8.0,3,0.0 +4041,5646,3012.8773239565835,81.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27800.0,0.0,0.0,36899.8,0.0,0.0,1,7,4.0,1,0.0 +4042,5648,2310.7098093186287,41.0,112,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46596.8,0.0,42660.0,2,7,0.0,4,2.0 +4043,5649,1318.2051004420607,32.0,111,0.0,23,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,8899.75,0.0,0.0,3,10,8.0,2,1.0 +4044,5650,2432.2346220853833,82.0,400,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13480.0,0.0,0.0,13727.0,0.0,0.0,3,0,1.0,1,0.0 +4045,5651,2183.6164773871988,60.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,37050.0,0.0,0.0,48559.15,0.0,19490.0,1,10,2.0,3,1.0 +4046,5654,2968.7389715713493,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,1330.0,0.0,0.0,0.0,0.0,13252.0,0.0,0.0,3,8,6.0,1,0.0 +4047,5657,2728.1146044955435,32.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23589.15,0.0,25580.0,3,8,7.0,1,1.0 +4048,5658,1562.6827394518345,68.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41610.0,0.0,0.0,40222.8,0.0,1250.0,1,0,0.0,3,0.0 +4049,5659,3716.8889138187046,30.0,211,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43276.65,0.0,50980.0,3,4,4.0,1,1.0 +4050,5660,1580.2666261888962,58.0,400,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41744.6,0.0,45170.0,1,0,1.0,3,2.0 +4051,5661,2828.267911498967,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58500.0,0.0,0.0,61260.5,0.0,0.0,1,6,4.0,3,0.0 +4052,5662,2363.922727562842,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25680.0,0.0,0.0,22104.400365071902,0.0,0.0,1,8,7.0,1,0.0 +4053,5663,2728.4852871414682,22.0,111,130.0,63,1.0,1.0,5.0,2.4,0.0,1160.0,0.0,0.0,0.0,0.0,47644.05,2210.0,31600.0,3,9,7.0,4,1.0 +4054,5665,2102.1496314725823,31.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,23.0,0.0,51679.3,0.0,52240.0,2,9,3.0,4,2.0 +4055,5666,2883.442793115675,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,81489.5,0.0,82160.0,2,10,8.0,4,2.0 +4056,5668,1743.2349469927424,60.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29798.15,0.0,35290.0,3,9,7.0,1,1.0 +4057,5670,2089.1893366742897,43.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41816.25,0.0,42020.0,2,8,6.0,4,2.0 +4058,5671,594.3694707462689,36.0,111,0.0,52,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,36892.35,0.0,22300.0,3,8,6.0,2,1.0 +4059,5673,4255.860466970011,31.0,111,0.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,2070.0,0.0,20462.5,0.0,17010.0,1,10,8.0,1,1.0 +4060,5674,2471.861356136586,53.0,111,0.0,42,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19365.7,2050.0,13030.0,3,4,4.0,2,3.0 +4061,5675,895.9948374020844,48.0,111,0.0,68,2.0,1.0,3.0,1.8,0.0,0.0,0.0,7260.0,0.0,0.0,57882.35,0.0,52440.0,2,10,8.0,2,2.0 +4062,5676,2535.043980570599,25.0,111,4000.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24699.2,0.0,20010.0,3,8,7.0,3,2.0 +4063,5677,2403.0338225868777,69.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20530.0,441.0,0.0,19707.75,0.0,0.0,3,8,7.0,1,0.0 +4064,5678,2313.3277671236365,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28640.0,0.0,0.0,35381.95,0.0,9670.0,1,10,8.0,3,0.0 +4065,5679,2043.059732522365,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38720.0,0.0,0.0,36628.85,0.0,0.0,1,8,6.0,3,0.0 +4066,5680,1865.7238957883521,60.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12372.585593059637,0.0,0.0,3,0,0.0,3,2.0 +4067,5681,2218.7118725036785,88.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11590.0,0.0,0.0,13318.0,0.0,0.0,3,3,4.0,1,0.0 +4068,5682,1229.1640342132628,46.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,2380.0,0.0,0.0,0.0,0.0,24436.0,1930.0,16220.0,3,8,7.0,4,2.0 +4069,5683,1381.9490078470742,33.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22438.05,0.0,22440.0,3,8,7.0,2,1.0 +4070,5684,4275.517755671606,44.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28514.2,0.0,32840.0,3,10,8.0,1,1.0 +4071,5685,2579.780358249101,40.0,112,0.0,48,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,50503.1,0.0,41790.0,2,6,0.0,4,2.0 +4072,5686,1976.055476844411,61.0,112,6350.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,42370.0,1114.0,0.0,45174.2,0.0,0.0,1,7,0.0,3,1.0 +4073,5687,3400.7635813121665,62.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,76570.0,2228.0,0.0,127584.65,0.0,81900.0,2,10,8.0,3,1.0 +4074,5688,2451.6926570747282,32.0,112,0.0,68,2.0,2.0,4.0,2.1,0.0,690.0,0.0,0.0,0.0,0.0,29341.8,310.0,6280.0,3,6,0.0,4,2.0 +4075,5689,2370.5502843979857,46.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43264.95,0.0,43620.0,2,9,7.0,4,2.0 +4076,5690,1992.980884769458,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21050.0,0.0,0.0,21163.0,0.0,0.0,3,5,4.0,1,0.0 +4077,5691,1851.010734251504,88.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29610.0,0.0,0.0,30036.2,0.0,0.0,1,1,2.0,3,0.0 +4078,5692,3458.4960186006124,80.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12130.0,0.0,0.0,13318.0,0.0,0.0,3,10,8.0,1,0.0 +4079,5693,412.2360000947547,44.0,112,0.0,85,0.0,0.0,2.0,1.5,0.0,8210.0,0.0,0.0,0.0,0.0,8610.0,0.0,0.0,5,8,0.0,2,0.0 +4080,5694,3225.7759273148145,91.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27010.0,0.0,0.0,24406.95,0.0,0.0,1,10,8.0,1,0.0 +4081,5695,1623.1191891262727,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,3850.0,0.0,36063.0,39147.3,0.0,0.0,1,6,4.0,3,0.0 +4082,5696,1906.2216655591285,57.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25196.85,0.0,27920.0,3,6,5.0,1,1.0 +4083,5697,2592.2010232634234,35.0,111,3670.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41812.25,0.0,37560.0,1,10,8.0,4,2.0 +4084,5698,4166.733969276176,37.0,211,5730.0,64,1.0,0.0,1.0,1.0,9110.0,0.0,0.0,0.0,0.0,0.0,17657.85,0.0,0.0,3,1,3.0,1,1.0 +4085,5699,2108.4027697949823,71.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22280.0,0.0,0.0,22435.30979630075,0.0,0.0,1,0,0.0,3,0.0 +4086,5700,2370.4241896899275,43.0,300,950.0,42,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,67149.25,0.0,60240.0,2,0,2.0,4,2.0 +4087,5701,2980.1351735474564,41.0,300,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56969.6,0.0,60670.0,3,0,0.0,3,2.0 +4088,5703,2244.020722138562,67.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18560.0,0.0,0.0,18237.5,0.0,0.0,1,0,0.0,1,0.0 +4089,5704,3941.6590029221575,29.0,111,2240.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25870.2,170.0,21580.0,2,10,8.0,4,2.0 +4090,5705,3242.1746808155335,43.0,112,31630.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,82723.25,0.0,55440.0,2,9,1.0,4,2.0 +4091,5706,4127.950570166013,80.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,6420.0,27440.0,0.0,0.0,33777.95,0.0,0.0,3,9,7.0,3,0.0 +4092,5707,3497.6743898528084,58.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4251.5,0.0,7430.0,3,9,7.0,1,1.0 +4093,5708,2211.1795299636574,45.0,400,0.0,13,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40694.0,0.0,19740.0,2,0,0.0,4,2.0 +4094,5709,1541.5778396923808,65.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32390.0,1871.0,0.0,32093.95,0.0,0.0,1,0,0.0,3,0.0 +4095,5710,5207.339908645756,47.0,111,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,13311.0,0.0,0.0,3,10,8.0,1,0.0 +4096,5711,1989.5333303132927,44.0,112,0.0,37,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,1829.0,0.0,57997.25,0.0,30810.0,3,9,0.0,4,2.0 +4097,5713,1563.6952166401113,25.0,111,9840.0,52,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29289.4,0.0,16870.0,3,9,7.0,4,2.0 +4098,5714,769.5286944442654,29.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29072.9,0.0,22660.0,3,8,7.0,2,1.0 +4099,5717,2132.6438652246716,49.0,111,0.0,56,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,17.0,0.0,42671.45,0.0,33280.0,3,9,7.0,4,2.0 +4100,5718,2172.5662798926323,84.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13510.0,0.0,0.0,13533.0,0.0,0.0,5,0,0.0,1,0.0 +4101,5719,2206.047726633585,34.0,111,830.0,42,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,92.0,0.0,9881.7,0.0,9540.0,2,9,7.0,2,1.0 +4102,5720,2768.5313277823707,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13830.0,0.0,0.0,13568.05,0.0,0.0,3,10,8.0,1,0.0 +4103,5721,3738.4148645306896,57.0,211,3130.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3675.85,0.0,0.0,3,1,3.0,1,0.0 +4104,5722,2243.0959724199,47.0,111,0.0,23,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,131721.35,0.0,140370.0,2,6,5.0,3,2.0 +4105,5723,6575.826309319825,24.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34398.55,810.0,32610.0,3,9,3.0,3,2.0 +4106,5725,2408.451514907465,51.0,300,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9830.0,0.0,0.0,43214.05,0.0,32970.0,1,0,0.0,3,1.0 +4107,5726,2058.53965953331,34.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,27676.3,0.0,24110.0,2,9,7.0,2,1.0 +4108,5727,1997.4156327966316,43.0,111,7450.0,38,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,28490.15,0.0,21210.0,2,7,5.0,4,1.0 +4109,5729,3154.1501007024945,34.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36623.7,0.0,44240.0,3,10,8.0,1,1.0 +4110,5730,2225.106050832855,42.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,62020.7,0.0,64090.0,2,9,7.0,4,2.0 +4111,5731,3023.3900194617545,33.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,46236.75,0.0,57320.0,2,8,7.0,1,1.0 +4112,5732,2162.5288943596092,55.0,211,5710.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16967.7,0.0,12000.0,3,3,3.0,1,1.0 +4113,5733,1952.2086612774233,39.0,112,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,94802.75,0.0,82860.0,2,9,0.0,4,2.0 +4114,5734,720.3427355681151,58.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17681.5,0.0,19400.0,3,10,8.0,1,0.0 +4115,5735,3146.773408661418,70.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,7280.0,2300.0,0.0,0.0,12844.0,0.0,0.0,3,8,6.0,1,0.0 +4116,5737,1915.9524648876152,80.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23840.0,0.0,0.0,24265.0,0.0,0.0,5,0,0.0,3,0.0 +4117,5739,2525.6649637836604,28.0,211,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46741.95,0.0,44630.0,2,3,4.0,4,2.0 +4118,5740,3917.896610681215,88.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18830.0,0.0,0.0,19883.0,0.0,0.0,1,8,0.0,1,0.0 +4119,5741,3562.9493233393623,38.0,111,1240.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37953.05,0.0,36950.0,3,10,8.0,3,2.0 +4120,5742,2116.926356526376,43.0,111,0.0,68,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,15330.45,560.0,14060.0,2,8,7.0,4,1.0 +4121,5743,2464.397019834694,60.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19910.8,0.0,20730.0,3,8,6.0,1,1.0 +4122,5745,3131.873675020069,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9148.0,0.0,0.0,3,9,7.0,1,0.0 +4123,5746,3337.3519064672196,27.0,300,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53368.1,0.0,31590.0,2,0,0.0,4,2.0 +4124,5747,3778.8598855195855,31.0,221,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20646.6,490.0,17660.0,2,1,1.0,1,1.0 +4125,5748,677.7605318641826,26.0,221,0.0,62,1.0,1.0,4.0,2.3,0.0,12570.0,0.0,0.0,0.0,0.0,35073.0,0.0,20340.0,5,1,2.0,5,1.0 +4126,5749,1839.9329285815431,68.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16690.0,0.0,0.0,23607.25,0.0,0.0,1,8,6.0,3,0.0 +4127,5750,1663.2034265886375,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29060.0,0.0,0.0,28435.0,0.0,0.0,1,7,5.0,3,0.0 +4128,5753,1689.8726268239807,73.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39270.0,0.0,0.0,36261.0,0.0,0.0,1,1,2.0,3,0.0 +4129,5754,2296.9940933974144,56.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30139.35,0.0,32240.0,2,6,2.0,3,2.0 +4130,5757,1427.5690543168423,47.0,111,0.0,53,1.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,60906.540409424095,0.0,57530.0,3,9,7.0,4,1.0 +4131,5759,2859.5028524694853,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38380.0,0.0,0.0,50961.4,0.0,13280.0,1,8,1.0,3,0.0 +4132,5760,3371.5748052061585,67.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19750.0,0.0,0.0,18489.75,0.0,0.0,1,7,5.0,5,0.0 +4133,5761,4819.4929627296715,67.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27460.0,1563.0,0.0,26142.95,0.0,0.0,1,9,7.0,1,0.0 +4134,5762,3341.505012227721,48.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,58695.1,0.0,63860.0,2,10,8.0,4,2.0 +4135,5765,2330.6560537620394,87.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27410.0,0.0,0.0,26427.9,0.0,0.0,5,2,3.0,1,0.0 +4136,5766,2876.6196372200525,60.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31035.55,0.0,34270.0,1,9,7.0,1,1.0 +4137,5767,2377.720987776808,44.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51525.0,0.0,55350.0,2,8,7.0,4,2.0 +4138,5768,2574.583788056921,71.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14420.0,21.0,0.0,17235.421413108154,0.0,0.0,3,0,0.0,1,0.0 +4139,5769,1390.0960308909562,61.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22230.0,0.0,0.0,84838.16150856449,0.0,85180.0,1,6,5.0,3,1.0 +4140,5771,2650.6819260113643,36.0,211,0.0,84,0.0,0.0,6.0,2.9,0.0,0.0,0.0,5370.0,0.0,0.0,37985.0,0.0,22390.0,2,1,3.0,4,0.0 +4141,5772,1755.435668422026,67.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44540.0,0.0,0.0,41354.5,0.0,0.0,1,9,3.0,3,0.0 +4142,5773,3447.9534480296647,86.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18000.0,0.0,0.0,17520.7,0.0,0.0,3,9,7.0,1,0.0 +4143,5774,1055.3587757162318,46.0,120,9530.0,65,1.0,0.0,5.0,3.0,11850.0,0.0,0.0,0.0,0.0,0.0,32242.45,0.0,8030.0,3,0,1.0,4,1.0 +4144,5775,1834.3722097188363,53.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,65007.9,0.0,67910.0,2,10,4.0,4,2.0 +4145,5776,3042.650862333909,52.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,2,8,7.0,1,1.0 +4146,5778,2681.7102598689685,76.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12620.0,0.0,0.0,11982.889015833887,0.0,0.0,1,10,8.0,1,0.0 +4147,5779,3872.528457747028,96.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26670.0,0.0,0.0,26447.1,0.0,0.0,1,8,6.0,1,0.0 +4148,5781,1267.0541442129254,70.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47700.0,0.0,0.0,45088.2,0.0,0.0,1,2,3.0,3,0.0 +4149,5782,856.2243426563235,38.0,111,2370.0,56,1.0,1.0,4.0,1.9,0.0,470.0,0.0,0.0,0.0,0.0,24724.15,1140.0,7460.0,3,10,8.0,2,1.0 +4150,5783,1597.951231420267,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33360.0,0.0,0.0,27097.1,0.0,0.0,1,10,8.0,1,0.0 +4151,5785,3495.1196026731936,81.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27720.0,0.0,0.0,28840.8,0.0,0.0,1,10,8.0,1,0.0 +4152,5786,2114.33409504196,51.0,112,0.0,38,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,115060.90317625865,0.0,129070.0,1,10,0.0,4,1.0 +4153,5787,1806.8361579358402,54.0,300,11010.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16747.8,680.0,5830.0,2,0,0.0,3,1.0 +4154,5789,1414.590515692433,69.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35250.0,0.0,0.0,33434.35,0.0,0.0,1,0,0.0,3,0.0 +4155,5793,1155.237294047164,43.0,111,0.0,33,1.0,1.0,3.0,1.8,0.0,0.0,0.0,10070.0,0.0,0.0,41779.85,0.0,32950.0,1,9,7.0,5,1.0 +4156,5794,5291.668203147708,18.0,211,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5790.0,0.0,5190.0,5,1,3.0,1,1.0 +4157,5795,2906.0385779195085,80.0,222,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40350.0,0.0,0.0,39230.0,0.0,0.0,1,1,0.0,3,0.0 +4158,5796,1517.1306164242465,63.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,4550.0,0.0,0.0,56898.0,0.0,55590.0,1,6,0.0,3,2.0 +4159,5797,2628.16035013859,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26130.0,0.0,0.0,24712.55,0.0,0.0,1,10,8.0,1,0.0 +4160,5798,2334.5511288758294,66.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18190.0,0.0,0.0,20533.0,0.0,0.0,3,9,0.0,1,0.0 +4161,5799,2378.001907594708,43.0,111,0.0,63,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,29457.85,70.0,28530.0,3,8,6.0,4,3.0 +4162,5800,4827.999782082042,31.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53630.5,0.0,57300.0,3,10,8.0,4,2.0 +4163,5801,2980.9733190345105,57.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29267.2,0.0,32300.0,3,10,8.0,1,1.0 +4164,5802,2790.7339029681602,59.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54426.15,0.0,47730.0,1,8,6.0,3,2.0 +4165,5805,3105.8020399265642,92.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16500.0,0.0,0.0,16464.45,0.0,0.0,1,10,2.0,1,0.0 +4166,5806,2945.0916341867746,76.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21310.0,0.0,0.0,21780.35,0.0,0.0,1,8,0.0,1,0.0 +4167,5807,3028.9480567797737,57.0,111,6620.0,33,2.0,1.0,3.0,2.0,0.0,0.0,0.0,21120.0,0.0,0.0,59468.0,0.0,36830.0,1,10,8.0,4,2.0 +4168,5808,2810.0966048024716,40.0,111,0.0,64,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28562.35,0.0,18380.0,3,10,8.0,4,1.0 +4169,5809,2390.698774673714,67.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22390.0,1514.0,0.0,21960.95,0.0,0.0,1,10,2.0,1,0.0 +4170,5811,4753.690524723888,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20260.0,0.0,0.0,18946.55,0.0,0.0,1,10,8.0,1,0.0 +4171,5812,1105.396753942585,33.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,35633.05,0.0,33740.0,2,10,8.0,2,1.0 +4172,5814,1242.2257102045442,25.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,149.0,0.0,21625.0,270.0,14930.0,3,5,4.0,2,1.0 +4173,5815,479.06219638385886,31.0,112,1420.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,15140.0,210.0,3320.0,3,9,0.0,2,1.0 +4174,5818,2476.2675223305437,44.0,112,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,36650.84817949335,0.0,41750.0,1,8,3.0,2,1.0 +4175,5819,677.1172594764123,50.0,111,7620.0,52,2.0,1.0,3.0,2.0,0.0,5820.0,0.0,0.0,0.0,0.0,49320.122589361905,0.0,30060.0,2,9,7.0,2,2.0 +4176,5820,1988.374146864153,44.0,111,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,44817.15,0.0,43260.0,3,8,7.0,2,1.0 +4177,5821,2862.752187655063,27.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38969.0,0.0,40010.0,3,9,7.0,3,2.0 +4178,5822,1945.1439278821679,49.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,730.0,0.0,164555.35,0.0,177380.0,1,10,8.0,4,2.0 +4179,5824,2164.381682870348,67.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11460.0,0.0,0.0,12554.0,0.0,290.0,3,6,1.0,1,0.0 +4180,5825,1883.2748847488324,68.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14140.0,0.0,0.0,16388.0,0.0,0.0,1,0,3.0,3,0.0 +4181,5826,1758.2238320222855,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40080.0,0.0,0.0,45680.75,0.0,0.0,1,9,7.0,3,0.0 +4182,5827,3222.7281434935844,50.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19648.65,0.0,19790.0,3,8,0.0,2,1.0 +4183,5828,1048.8706709403587,45.0,111,0.0,85,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,11797.05,0.0,0.0,3,5,4.0,2,0.0 +4184,5829,1926.090030364468,85.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,56190.0,0.0,0.0,45771.75,0.0,0.0,1,9,7.0,1,0.0 +4185,5830,2581.350921275165,41.0,120,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,51566.45,0.0,46180.0,2,0,0.0,4,2.0 +4186,5831,8410.80076015024,31.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43186.5,0.0,43660.0,2,7,1.0,3,2.0 +4187,5832,2316.947604115131,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12320.0,0.0,0.0,13483.0,0.0,0.0,3,7,5.0,1,0.0 +4188,5835,4154.176394442763,43.0,112,0.0,63,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,28893.85,0.0,26780.0,2,9,1.0,4,1.0 +4189,5836,2551.7745751895004,82.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28160.0,0.0,0.0,27802.9,0.0,0.0,3,8,6.0,3,0.0 +4190,5837,791.2238811537951,45.0,112,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,32522.55,0.0,27990.0,2,10,4.0,2,1.0 +4191,5839,2385.8139157706923,30.0,111,5190.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40708.9,0.0,37300.0,1,9,7.0,3,2.0 +4192,5841,1610.2352062538282,29.0,111,2610.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30871.85,0.0,24060.0,3,10,8.0,5,2.0 +4193,5843,9866.189967686583,76.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10490.0,0.0,0.0,10490.0,0.0,0.0,5,7,1.0,1,0.0 +4194,5844,1827.043881742743,61.0,300,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30190.0,0.0,0.0,22291.0,0.0,1240.0,1,0,0.0,3,1.0 +4195,5845,772.7962261288208,45.0,111,6350.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49186.9,0.0,41840.0,2,9,7.0,4,2.0 +4196,5846,1952.3277913580528,54.0,400,0.0,42,2.0,2.0,3.0,2.0,0.0,0.0,0.0,13430.0,44.0,0.0,52637.1,0.0,44560.0,1,0,0.0,4,2.0 +4197,5849,1112.3302136157752,32.0,111,1990.0,55,1.0,0.0,2.0,1.3,0.0,6660.0,0.0,0.0,0.0,0.0,16158.0,1280.0,0.0,3,9,7.0,2,1.0 +4198,5850,1370.6439783550654,51.0,211,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,101170.35,0.0,105840.0,1,1,2.0,4,2.0 +4199,5851,4049.3734702746256,86.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14580.0,0.0,0.0,14597.0,0.0,0.0,3,9,1.0,1,0.0 +4200,5852,2282.520478467254,62.0,111,1310.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28450.05,0.0,27300.0,3,10,8.0,3,2.0 +4201,5853,214.4631630229398,45.0,400,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19448.65,2210.0,13100.0,3,0,0.0,2,1.0 +4202,5856,2511.7128510767766,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21220.0,0.0,0.0,20883.6,0.0,0.0,3,8,6.0,1,0.0 +4203,5857,1856.593932670167,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54400.0,0.0,0.0,49145.0,0.0,0.0,1,9,7.0,3,0.0 +4204,5858,4424.49079286675,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,5990.0,3600.0,0.0,0.0,9598.0,0.0,0.0,5,10,8.0,1,0.0 +4205,5859,2612.532735570402,70.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,4450.0,8880.0,0.0,0.0,14545.25,0.0,0.0,1,0,0.0,3,0.0 +4206,5860,5115.911916461769,42.0,111,0.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,7410.0,0.0,0.0,40300.15,1670.0,31380.0,3,10,8.0,5,1.0 +4207,5863,1900.728153281179,60.0,111,23490.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21417.65,0.0,0.0,2,8,7.0,1,0.0 +4208,5864,1656.3790191438734,31.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42496.6,0.0,45980.0,2,10,3.0,3,2.0 +4209,5865,2523.11206285686,54.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46082.7,0.0,53700.0,1,6,5.0,3,2.0 +4210,5866,2331.031957259185,78.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19510.0,0.0,0.0,20258.0,0.0,0.0,1,9,0.0,3,0.0 +4211,5869,2879.114629296854,76.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17650.0,0.0,0.0,16795.85,0.0,0.0,1,1,2.0,1,0.0 +4212,5870,3361.9003509664444,26.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36405.7,0.0,31990.0,2,6,0.0,4,2.0 +4213,5871,2187.3917267895163,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34250.0,0.0,0.0,32891.8,0.0,0.0,1,8,3.0,3,0.0 +4214,5872,1956.355767757254,84.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20420.0,0.0,0.0,16673.9,0.0,0.0,1,10,8.0,1,0.0 +4215,5873,1949.3752406652816,72.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28440.0,0.0,0.0,23015.3,0.0,0.0,1,9,7.0,1,0.0 +4216,5874,1561.3490373012685,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40240.0,2.0,0.0,38125.4,0.0,0.0,1,8,2.0,3,0.0 +4217,5875,1820.9750804842568,46.0,111,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,68000.55,0.0,72490.0,2,8,6.0,4,2.0 +4218,5877,2390.4322659155387,60.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,61290.1,0.0,65800.0,1,10,8.0,3,2.0 +4219,5878,2253.333828894886,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4294.0,0.0,0.0,3,8,7.0,1,0.0 +4220,5879,1638.4138495869558,56.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37373.85,0.0,41450.0,1,7,5.0,3,2.0 +4221,5880,1917.6035950810824,36.0,112,2330.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49528.0,0.0,22060.0,5,9,2.0,3,2.0 +4222,5882,356.77529828739847,45.0,120,0.0,64,1.0,1.0,5.0,2.4,0.0,10.0,0.0,0.0,0.0,0.0,32581.1,1960.0,17250.0,3,0,3.0,4,1.0 +4223,5883,5003.263811912021,38.0,112,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,43840.0,0.0,52940.0,3,10,4.0,1,1.0 +4224,5884,3266.4032929106743,22.0,111,1950.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18291.05,880.0,12840.0,3,7,5.0,1,1.0 +4225,5885,2543.6600721862706,64.0,112,0.0,77,2.0,2.0,3.0,2.0,0.0,0.0,0.0,22330.0,0.0,0.0,43820.6,0.0,24340.0,2,7,0.0,4,2.0 +4226,5887,2131.623562638296,87.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20560.0,0.0,0.0,20861.0,0.0,0.0,3,10,5.0,3,0.0 +4227,5888,2120.6467874052173,32.0,300,980.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33979.45,0.0,35530.0,2,0,0.0,3,2.0 +4228,5889,2058.3385111360103,40.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33944.55,0.0,39810.0,2,8,7.0,1,1.0 +4229,5890,1910.297954331901,85.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37860.0,0.0,0.0,37562.7,0.0,0.0,1,8,7.0,3,0.0 +4230,5891,562.8119797485164,32.0,120,1410.0,56,1.0,1.0,3.0,1.6,0.0,2220.0,0.0,0.0,0.0,0.0,16278.0,1910.0,4870.0,3,0,2.0,2,1.0 +4231,5893,1750.1559380557374,52.0,112,4440.0,34,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,390.0,0.0,21973.75,0.0,18760.0,1,8,0.0,4,2.0 +4232,5894,2059.512701834653,51.0,300,0.0,13,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,236.0,0.0,35353.4,0.0,15690.0,1,0,0.0,4,2.0 +4233,5895,2687.4843255775463,77.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17770.0,0.0,0.0,17171.65,0.0,0.0,1,0,0.0,1,0.0 +4234,5898,1695.9359223528227,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43940.0,472.0,0.0,42110.75,0.0,0.0,1,9,7.0,3,0.0 +4235,5899,3505.859093218264,49.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14665.45,0.0,14940.0,2,10,8.0,1,1.0 +4236,5900,2804.3139440678474,36.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50647.7,0.0,49190.0,3,10,8.0,4,2.0 +4237,5901,3178.4632532378255,35.0,211,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,67711.9,0.0,60710.0,2,1,3.0,4,2.0 +4238,5903,3420.9533357357623,70.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30930.0,0.0,0.0,29898.8,0.0,0.0,1,8,0.0,3,0.0 +4239,5904,1458.398547776203,24.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,64.0,0.0,36555.85,0.0,37360.0,2,9,7.0,3,2.0 +4240,5905,1471.9685472791493,68.0,111,1200.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,77920.0,0.0,0.0,76942.35,0.0,0.0,1,9,7.0,3,0.0 +4241,5906,4008.0918260031235,39.0,211,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,86789.55,0.0,50330.0,2,1,3.0,3,2.0 +4242,5907,1682.3656737047615,58.0,112,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2380.0,0.0,0.0,41410.4,0.0,44290.0,1,6,2.0,1,1.0 +4243,5908,2908.394106882449,78.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27460.0,0.0,0.0,28537.85,0.0,0.0,1,0,0.0,3,0.0 +4244,5909,3300.564988242387,44.0,111,9970.0,35,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14141.1,230.0,1440.0,3,8,6.0,1,1.0 +4245,5911,1626.3254692262558,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28200.0,0.0,0.0,27396.6,0.0,0.0,1,10,0.0,3,0.0 +4246,5913,3683.3674965672276,30.0,120,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21789.15,0.0,24130.0,2,0,0.0,1,1.0 +4247,5915,1963.9241632904245,41.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28694.45,0.0,29040.0,2,9,7.0,4,2.0 +4248,5916,3781.353033365816,24.0,111,0.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34802.75,0.0,36510.0,3,8,6.0,3,2.0 +4249,5917,1848.4037639367373,30.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27149.3,0.0,29780.0,2,8,1.0,1,1.0 +4250,5918,4907.9489521085325,89.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20910.0,0.0,0.0,20706.8,0.0,0.0,3,9,7.0,1,0.0 +4251,5919,1968.4467852383266,89.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33370.0,0.0,0.0,34862.6,0.0,0.0,5,0,0.0,3,0.0 +4252,5921,3298.5830810516804,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34980.0,0.0,0.0,30255.25,0.0,0.0,1,10,8.0,1,0.0 +4253,5922,1258.1988185448904,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36900.0,0.0,0.0,33987.3,0.0,0.0,1,7,5.0,3,0.0 +4254,5923,291.46265577551975,40.0,112,0.0,47,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38634.85,0.0,22310.0,3,8,0.0,2,1.0 +4255,5925,1702.7196339068923,48.0,111,11710.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11478.4,0.0,0.0,1,5,4.0,1,1.0 +4256,5928,870.5990896818771,50.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27265.55,0.0,28980.0,3,6,4.0,2,1.0 +4257,5929,1832.9499342269005,42.0,112,0.0,67,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,217.0,0.0,56381.803532770384,0.0,47190.0,2,7,0.0,4,2.0 +4258,5930,988.3273831054896,49.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37426.8,0.0,40770.0,1,10,8.0,2,1.0 +4259,5931,1834.5024190928289,56.0,111,0.0,55,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,33845.05,280.0,33500.0,3,8,7.0,4,2.0 +4260,5932,2354.0560865418574,44.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28736.0,0.0,31970.0,3,9,1.0,1,1.0 +4261,5933,1442.707460679532,65.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64650.0,0.0,0.0,57001.75,0.0,0.0,1,9,2.0,3,0.0 +4262,5934,1531.743030690866,51.0,112,0.0,38,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,82940.75,0.0,91670.0,1,8,0.0,4,1.0 +4263,5935,2492.6689580700313,80.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39730.0,2406.0,0.0,40786.75,0.0,0.0,1,6,2.0,1,0.0 +4264,5936,1688.7855662934326,93.0,112,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14120.0,0.0,0.0,13133.55,0.0,0.0,1,9,3.0,1,0.0 +4265,5937,2801.4333300668072,67.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18930.0,0.0,0.0,17695.0,0.0,0.0,5,0,0.0,3,0.0 +4266,5938,2805.4154155997066,41.0,120,4380.0,52,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19213.0,2010.0,10330.0,3,0,1.0,2,1.0 +4267,5939,5579.185559632007,32.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,400.0,0.0,40789.1,0.0,41410.0,3,10,8.0,3,1.0 +4268,5940,1688.5734945801146,55.0,112,0.0,67,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36659.05,0.0,39140.0,1,7,0.0,4,3.0 +4269,5941,3463.9919994863717,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14660.0,0.0,0.0,14571.6,0.0,0.0,1,9,7.0,1,0.0 +4270,5943,2329.1241509215115,60.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,27910.0,0.0,0.0,45784.55,0.0,23280.0,1,7,5.0,4,1.0 +4271,5944,1838.719700435382,43.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49501.5,0.0,53330.0,3,10,5.0,3,2.0 +4272,5948,555.671267703424,49.0,221,0.0,56,1.0,0.0,3.0,2.0,0.0,5990.0,0.0,0.0,0.0,0.0,18095.0,170.0,1560.0,3,1,1.0,2,1.0 +4273,5949,2155.227967721393,50.0,221,0.0,62,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,9114.0,0.0,7760.0,1,1,1.0,2,1.0 +4274,5952,2593.2433839830414,83.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,86950.0,0.0,0.0,82243.35,0.0,0.0,1,0,0.0,3,0.0 +4275,5954,1035.31168414048,36.0,120,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30362.5,0.0,21350.0,2,0,3.0,2,1.0 +4276,5955,2254.5402493234387,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,102940.0,2574.0,0.0,83588.65,0.0,0.0,1,10,8.0,3,0.0 +4277,5956,1693.8269457875774,65.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29880.0,0.0,0.0,41071.25,0.0,13600.0,2,0,1.0,3,0.0 +4278,5957,1758.8759764411097,53.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34585.8,0.0,34090.0,3,6,5.0,4,2.0 +4279,5958,745.5575449906437,44.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21398.05,680.0,21350.0,2,6,4.0,2,1.0 +4280,5959,3123.9859861325917,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,44700.0,0.0,0.0,38712.0,0.0,0.0,1,10,8.0,1,0.0 +4281,5960,2182.278610097201,38.0,300,0.0,37,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43019.25,0.0,37460.0,2,0,0.0,4,1.0 +4282,5962,1790.0513153715713,39.0,111,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32723.75,1380.0,29100.0,2,7,5.0,4,2.0 +4283,5963,1950.3712528366516,38.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31837.95,0.0,36830.0,2,9,7.0,1,1.0 +4284,5964,2327.827504119952,53.0,111,1860.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44805.15,980.0,43870.0,1,8,7.0,4,2.0 +4285,5965,3753.6579600073856,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12521.8,0.0,2990.0,3,9,7.0,1,0.0 +4286,5967,2067.736239162062,47.0,111,0.0,35,1.0,0.0,4.0,2.5,0.0,0.0,0.0,10840.0,0.0,0.0,21208.9,0.0,0.0,1,10,8.0,2,1.0 +4287,5969,2050.1262126509787,84.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23450.0,0.0,0.0,23065.2,0.0,0.0,1,0,0.0,3,0.0 +4288,5971,1430.0725830199208,55.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34814.4,0.0,36290.0,3,5,4.0,3,2.0 +4289,5972,721.1192663917569,36.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20297.35,2000.0,15480.0,3,7,5.0,2,1.0 +4290,5974,2143.0343367472296,54.0,400,3200.0,42,3,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,25249.95,1960.0,20140.0,2,0,0.0,4,3.0 +4291,5976,287.53942974427457,52.0,400,0.0,62,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21194.85,3150.0,18100.0,3,0,1.0,2,1.0 +4292,5977,4148.6729520593335,77.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20560.0,0.0,0.0,19065.0,0.0,0.0,1,10,4.0,1,0.0 +4293,5978,2146.510366410793,38.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54857.75,0.0,48950.0,1,9,7.0,4,2.0 +4294,5979,2796.1943029047293,82.0,112,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13970.0,0.0,0.0,24825.533029915558,0.0,11380.0,5,7,0.0,2,1.0 +4295,5980,2119.3945312469805,77.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42510.0,0.0,0.0,42181.5,0.0,0.0,3,0,0.0,3,0.0 +4296,5981,3877.7237745036527,33.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19973.8,0.0,21700.0,3,8,6.0,1,1.0 +4297,5982,4030.2698300779107,24.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10950.0,0.0,8060.0,3,9,7.0,1,1.0 +4298,5983,4244.010675783132,27.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23392.8,0.0,25680.0,3,9,7.0,1,1.0 +4299,5984,1588.6028651647712,65.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40900.0,0.0,0.0,37434.3,0.0,0.0,1,8,0.0,3,0.0 +4300,5985,1661.8659603791134,52.0,112,5960.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46328.15,0.0,41760.0,1,8,0.0,4,2.0 +4301,5986,1963.8718051443668,44.0,300,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,84880.9,0.0,31800.0,1,0,0.0,4,2.0 +4302,5987,2345.939987327488,26.0,300,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40418.0,0.0,43070.0,3,0,0.0,3,2.0 +4303,5988,2041.6726093739585,74.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30040.0,0.0,0.0,29871.75,0.0,0.0,3,0,0.0,3,0.0 +4304,5989,1446.9454492841464,49.0,400,400.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39411.25,0.0,41010.0,3,0,1.0,4,2.0 +4305,5991,2401.8293688582335,43.0,112,0.0,21,3,3.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,40372.0,0.0,22360.0,2,7,0.0,4,3.0 +4306,5995,1471.0168118620545,53.0,211,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3170.0,0.0,0.0,17478.1,0.0,15020.0,3,1,3.0,1,1.0 +4307,5996,1057.4100894420308,31.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,3250.0,0.0,0.0,0.0,0.0,13880.0,760.0,1640.0,3,6,5.0,2,1.0 +4308,5998,2798.3737879259584,81.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24180.0,0.0,0.0,22110.2,0.0,0.0,1,0,0.0,1,0.0 +4309,5999,2158.333115235083,33.0,300,320.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41628.55,0.0,41590.0,2,0,0.0,4,2.0 +4310,6002,1803.3016103404561,57.0,111,0.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,91.0,0.0,35730.65,0.0,38100.0,2,9,7.0,3,2.0 +4311,6003,716.8264119248099,45.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,610.0,0.0,0.0,0.0,0.0,14191.0,310.0,7780.0,3,7,5.0,2,1.0 +4312,6004,2103.198891690729,68.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37320.0,0.0,0.0,35030.7,0.0,0.0,1,3,0.0,3,0.0 +4313,6005,2664.050196355546,47.0,120,3810.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,17337.65,0.0,12970.0,2,0,0.0,4,3.0 +4314,6006,1957.3053399304101,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21260.0,156.0,0.0,22738.75,0.0,0.0,1,8,7.0,3,0.0 +4315,6007,1735.123401226547,74.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31720.0,0.0,0.0,31290.35,0.0,0.0,3,6,4.0,3,0.0 +4316,6008,1833.557195286539,48.0,111,10110.0,48,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,34990.05,3880.0,21750.0,3,8,7.0,4,3.0 +4317,6010,465.4405416945384,40.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,41390.2,0.0,35200.0,2,6,4.0,2,1.0 +4318,6011,2242.579083088959,65.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11150.0,0.0,0.0,11150.5,0.0,0.0,3,10,2.0,1,0.0 +4319,6012,3747.7848258345944,49.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16870.05,0.0,17410.0,3,7,2.0,1,1.0 +4320,6013,1618.2390810273102,45.0,112,890.0,63,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,32396.15,0.0,28460.0,2,8,0.0,4,4.0 +4321,6014,2159.9697478475446,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44610.0,0.0,0.0,43127.05,0.0,0.0,1,9,7.0,3,0.0 +4322,6015,1431.9839579799602,83.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26240.0,0.0,0.0,25645.1,0.0,0.0,1,6,0.0,3,0.0 +4323,6016,923.2172974226655,37.0,112,0.0,46,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,32438.9,1320.0,18230.0,3,9,3.0,2,1.0 +4324,6018,2132.343103348361,47.0,112,0.0,47,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,13.0,0.0,58104.05,0.0,62790.0,1,9,2.0,4,3.0 +4325,6019,1787.459678094186,64.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40000.0,0.0,0.0,38102.2,0.0,0.0,1,0,0.0,3,0.0 +4326,6020,2409.4709547589387,62.0,221,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,33990.0,0.0,0.0,31958.3,0.0,0.0,1,1,1.0,3,1.0 +4327,6021,2119.5304049133856,63.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16450.0,0.0,0.0,14992.6,0.0,0.0,1,5,0.0,1,0.0 +4328,6022,3380.8372846309794,64.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,9490.0,2147.0,0.0,28171.1,0.0,22710.0,1,10,8.0,1,1.0 +4329,6023,2790.456253203058,33.0,111,120.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,68293.3,0.0,63790.0,2,10,8.0,4,2.0 +4330,6025,2567.80460141061,65.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9230.0,0.0,0.0,12110.0,0.0,0.0,3,0,0.0,1,0.0 +4331,6026,2097.33506806764,39.0,300,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50519.85,0.0,41910.0,2,0,0.0,4,2.0 +4332,6027,2429.3633576389243,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16060.0,0.0,0.0,15116.9,0.0,0.0,1,9,7.0,1,0.0 +4333,6028,2885.8218986982893,40.0,120,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51380.7,0.0,51470.0,2,0,0.0,4,2.0 +4334,6029,2327.0325415867815,27.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,72.0,0.0,44569.85,0.0,48160.0,2,8,6.0,3,2.0 +4335,6031,2189.899047135923,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,91820.0,3146.0,316.0,83628.2,0.0,0.0,1,9,7.0,3,0.0 +4336,6033,2969.5602212766858,85.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30160.0,0.0,0.0,27834.75,0.0,0.0,3,7,5.0,1,0.0 +4337,6034,2037.7798537503654,62.0,400,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14490.0,0.0,0.0,19756.85,0.0,380.0,1,0,1.0,3,1.0 +4338,6037,1914.393706726708,56.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,34256.35,0.0,31780.0,3,10,8.0,4,2.0 +4339,6039,1652.0628500109442,58.0,112,16970.0,65,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43580.85,100.0,27770.0,1,8,0.0,4,4.0 +4340,6040,987.6087670778832,45.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29686.85,0.0,28270.0,2,9,7.0,2,1.0 +4341,6041,3786.6878309541257,24.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26889.0,0.0,16370.0,3,9,7.0,1,0.0 +4342,6043,2625.5349716802943,47.0,400,2370.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12778.9,0.0,11080.0,2,0,0.0,1,1.0 +4343,6044,480.4666997399532,25.0,120,0.0,85,0.0,0.0,2.0,1.3,0.0,7780.0,0.0,0.0,0.0,0.0,13266.0,0.0,0.0,3,0,0.0,2,0.0 +4344,6045,2231.4472842233977,64.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42530.0,0.0,0.0,44631.95196103255,0.0,0.0,1,1,1.0,3,0.0 +4345,6046,1774.0584679435476,76.0,111,0.0,52,1.0,0.0,2.0,1.5,0.0,0.0,0.0,24650.0,0.0,0.0,24370.25,0.0,0.0,3,7,5.0,3,1.0 +4346,6047,3784.2757070640628,24.0,120,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30823.15,0.0,31000.0,3,0,0.0,3,2.0 +4347,6048,3596.3423353688854,66.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15190.0,0.0,0.0,15910.0,0.0,0.0,3,7,5.0,3,0.0 +4348,6053,2382.2490988677814,40.0,112,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28198.32147736554,0.0,22760.0,2,6,2.0,4,1.0 +4349,6054,1593.7601875234552,39.0,111,0.0,37,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,50009.65,0.0,41310.0,2,6,4.0,4,1.0 +4350,6055,2289.5658639097724,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10050.0,0.0,0.0,11613.0,0.0,0.0,3,9,7.0,1,0.0 +4351,6056,1679.072947943942,58.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44393.65,0.0,47490.0,2,9,7.0,3,2.0 +4352,6058,2915.494140368618,46.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19994.35,0.0,21890.0,3,7,5.0,1,1.0 +4353,6059,3593.7429563440037,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,45530.0,0.0,0.0,40146.35,0.0,0.0,1,9,7.0,1,0.0 +4354,6060,1887.5683744530356,62.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32150.0,0.0,0.0,39530.45,0.0,10110.0,1,10,8.0,3,1.0 +4355,6061,2141.7915033987083,93.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15070.0,0.0,0.0,9974.65,0.0,0.0,1,0,0.0,1,0.0 +4356,6063,1347.0324154682667,29.0,211,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,18878.0,44780.2,0.0,27370.0,2,2,3.0,4,2.0 +4357,6065,6173.147713602949,62.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19496.0,0.0,19480.0,3,10,8.0,1,1.0 +4358,6066,2610.512602562982,55.0,112,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16820.0,0.0,0.0,36305.75,0.0,0.0,1,9,0.0,3,1.0 +4359,6067,2731.886431743777,46.0,112,2620.0,55,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41628.35,0.0,40190.0,3,10,0.0,4,2.0 +4360,6069,1847.2721309249628,34.0,111,0.0,47,1.0,1.0,2.0,1.3,0.0,3700.0,0.0,0.0,0.0,0.0,20738.0,190.0,16260.0,5,10,8.0,2,1.0 +4361,6071,3014.6280774881347,24.0,112,9760.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16847.9,1240.0,4340.0,3,9,0.0,1,0.0 +4362,6072,1566.8941585051914,45.0,300,13930.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22511.1,0.0,6320.0,2,0,0.0,2,1.0 +4363,6075,2434.880838247624,56.0,221,0.0,77,0.0,0.0,1.0,1.0,1420.0,0.0,0.0,6510.0,0.0,0.0,7832.5,0.0,0.0,1,1,2.0,1,0.0 +4364,6076,2484.955238257519,80.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26500.0,0.0,0.0,26364.55,0.0,0.0,3,0,0.0,3,0.0 +4365,6079,1669.616776412626,43.0,111,0.0,38,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,2614.0,0.0,79046.4563525173,0.0,82020.0,1,9,7.0,4,1.0 +4366,6080,2704.794001363506,36.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53437.75,0.0,46150.0,2,7,0.0,4,2.0 +4367,6081,3180.033459590666,61.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53112.85,0.0,68540.0,2,10,8.0,1,1.0 +4368,6082,1632.0146605381112,61.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,11940.0,300.0,0.0,138245.1,0.0,83830.0,1,8,6.0,3,2.0 +4369,6083,2545.6089927201947,35.0,300,0.0,85,1.0,0.0,6.0,2.7,0.0,9720.0,0.0,0.0,0.0,0.0,19590.0,0.0,0.0,5,0,0.0,4,1.0 +4370,6084,1994.7227567056136,37.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,510.0,0.0,59006.8,0.0,65750.0,3,4,3.0,3,2.0 +4371,6086,2815.8269499912826,39.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13798.35,1020.0,12530.0,1,7,0.0,1,1.0 +4372,6088,3051.498560372558,93.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14910.0,1.0,0.0,15888.0,0.0,0.0,3,9,3.0,1,0.0 +4373,6091,1773.1442675858245,39.0,300,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26260.35,1550.0,23210.0,2,0,3.0,2,1.0 +4374,6092,1614.3151203285156,63.0,400,0.0,72,0.0,0.0,2.0,1.5,10260.0,0.0,0.0,14040.0,0.0,0.0,24183.3,0.0,0.0,1,0,0.0,3,0.0 +4375,6093,3024.8317105725,35.0,112,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50170.4,0.0,44920.0,2,6,0.0,4,2.0 +4376,6094,3350.779960679191,49.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34418.1,0.0,37300.0,3,10,8.0,1,1.0 +4377,6096,1961.8195351587435,51.0,112,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,19910.0,0.0,0.0,42307.3,0.0,26050.0,2,8,3.0,3,2.0 +4378,6097,1675.0987590381988,54.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57188.1,0.0,58580.0,1,8,6.0,4,2.0 +4379,6098,1709.2438588501977,56.0,400,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14171.3,0.0,14700.0,1,0,0.0,1,1.0 +4380,6099,3032.435529065031,31.0,211,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34031.9,510.0,25840.0,3,4,4.0,4,2.0 +4381,6100,1583.9432613859392,57.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7158.0,0.0,6760.0,2,9,7.0,1,1.0 +4382,6101,2750.3331590638677,77.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30930.0,0.0,0.0,30810.6,0.0,0.0,1,8,0.0,1,0.0 +4383,6102,4705.23797736679,23.0,111,4190.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11841.75,0.0,2610.0,3,9,7.0,1,0.0 +4384,6104,1767.8119008131591,56.0,112,0.0,46,1.0,1.0,2.0,1.5,5510.0,0.0,0.0,4590.0,0.0,0.0,29576.0,0.0,19140.0,2,8,0.0,3,1.0 +4385,6105,2230.505296707354,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19270.0,0.0,0.0,17116.9,0.0,0.0,1,8,7.0,1,0.0 +4386,6106,1800.6835244863757,42.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,841.0,0.0,74164.2,0.0,85630.0,1,8,7.0,3,2.0 +4387,6107,2230.353185806056,62.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18340.0,0.0,0.0,19511.7,0.0,3370.0,2,7,0.0,3,1.0 +4388,6109,2410.894230300409,76.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,45020.0,0.0,0.0,50549.143073859865,0.0,0.0,5,9,7.0,1,0.0 +4389,6110,1966.8869630647582,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46590.0,203.0,0.0,43798.1,0.0,0.0,1,8,6.0,3,0.0 +4390,6112,1740.8897517961705,58.0,112,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25338.85,0.0,26200.0,1,9,0.0,3,2.0 +4391,6113,2600.541313683379,34.0,120,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50927.0,0.0,17740.0,2,0,0.0,4,2.0 +4392,6114,2364.3165780322724,46.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,11120.0,0.0,0.0,51362.35,0.0,35590.0,2,10,0.0,4,2.0 +4393,6115,2075.632604427783,61.0,112,9320.0,78,0.0,0.0,2.0,1.3,0.0,0.0,0.0,31270.0,0.0,0.0,36899.95,0.0,0.0,2,9,3.0,2,0.0 +4394,6116,3295.9096826757786,50.0,111,0.0,85,1.0,1.0,4.0,2.5,430.0,0.0,0.0,0.0,0.0,0.0,21932.35,0.0,21980.0,3,10,8.0,4,1.0 +4395,6117,772.740515529788,44.0,221,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25277.75,3010.0,11720.0,3,1,2.0,2,1.0 +4396,6118,2209.4256309703705,37.0,300,6980.0,64,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32194.5,0.0,20450.0,2,0,0.0,4,2.0 +4397,6119,2280.287137332147,60.0,111,3700.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35430.0,157.0,0.0,36047.3,0.0,2180.0,1,9,7.0,3,0.0 +4398,6120,3869.902371491024,46.0,112,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,340.0,0.0,56863.65,0.0,64310.0,1,8,1.0,4,2.0 +4399,6122,1340.7570384556257,66.0,111,0.0,55,1.0,0.0,2.0,1.5,0.0,0.0,0.0,12260.0,0.0,0.0,10072.60500616289,0.0,190.0,1,6,5.0,3,1.0 +4400,6124,3245.9683422827616,53.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,78810.7,0.0,104980.0,3,10,8.0,1,1.0 +4401,6125,1346.1836903741835,71.0,222,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24750.0,184.0,0.0,51055.95,0.0,28270.0,2,1,0.0,3,0.0 +4402,6126,635.827140664816,31.0,111,5340.0,81,1.0,0.0,4.0,1.9,0.0,2370.0,0.0,0.0,0.0,0.0,25393.0,1580.0,1600.0,3,10,8.0,2,1.0 +4403,6127,1684.6425758461157,30.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21228.55,0.0,23210.0,3,10,5.0,1,1.0 +4404,6128,2236.6985072122425,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49220.0,0.0,0.0,42864.55,0.0,0.0,1,9,7.0,3,0.0 +4405,6130,997.8464200281574,58.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5010.0,0.0,0.0,5276.0,0.0,0.0,3,10,8.0,1,0.0 +4406,6131,1552.8487598008405,61.0,211,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17130.0,0.0,0.0,17871.4,0.0,2790.0,1,2,3.0,3,1.0 +4407,6133,1567.4475658006434,57.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,32137.0,122234.3,0.0,108180.0,1,8,7.0,4,2.0 +4408,6134,2118.9432077422366,46.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53702.05,0.0,56220.0,2,9,7.0,4,2.0 +4409,6135,2143.33388211465,61.0,120,0.0,86,0.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,5730.0,0.0,0.0,3,0,0.0,1,0.0 +4410,6136,1394.1189210183668,64.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11830.0,0.0,0.0,13081.6,0.0,0.0,1,7,5.0,1,0.0 +4411,6137,1263.2751016384439,31.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17778.2,1830.0,10340.0,3,6,5.0,2,1.0 +4412,6138,2180.6257935459034,36.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,48.0,0.0,62379.85,0.0,67850.0,2,9,7.0,4,2.0 +4413,6139,2998.761654996978,47.0,211,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44721.2,450.0,48140.0,3,1,3.0,3,2.0 +4414,6141,1800.3964784111804,43.0,400,100.0,52,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,46104.45,0.0,38280.0,2,0,0.0,4,2.0 +4415,6142,3475.5560122029938,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22360.0,0.0,0.0,20262.2,0.0,0.0,1,4,4.0,1,0.0 +4416,6143,1596.8475344461667,80.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16560.0,0.0,0.0,16466.0,0.0,0.0,1,7,0.0,1,0.0 +4417,6144,2509.582554374467,75.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34310.0,0.0,0.0,33695.1,0.0,0.0,3,6,5.0,3,0.0 +4418,6148,2165.7486078300203,53.0,300,2860.0,31,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,6605.0,0.0,100753.36413108154,0.0,90150.0,1,0,0.0,4,2.0 +4419,6150,1932.9096060085824,40.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63342.7,0.0,61620.0,2,10,8.0,4,2.0 +4420,6151,1847.2279374015563,59.0,221,2370.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13610.0,0.0,0.0,30373.15,0.0,18980.0,2,1,2.0,3,1.0 +4421,6152,2392.585679530567,35.0,120,3880.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,16.0,0.0,45181.35,0.0,31050.0,2,0,0.0,4,2.0 +4422,6153,1459.83776061337,61.0,212,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,970.0,0.0,0.0,42570.2,0.0,0.0,1,4,0.0,3,2.0 +4423,6156,3187.272553768057,32.0,111,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41534.95,0.0,42160.0,2,9,7.0,4,2.0 +4424,6157,1758.5868453598873,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60980.0,1411.0,0.0,56067.1,0.0,0.0,1,10,8.0,3,0.0 +4425,6159,2275.2483526879237,41.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51247.2,0.0,50450.0,2,7,4.0,4,2.0 +4426,6162,2695.907005824951,46.0,112,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,24.0,0.0,64796.28646882657,0.0,67990.0,1,9,1.0,4,2.0 +4427,6164,3111.3468330245705,24.0,111,8390.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21410.9,0.0,13600.0,3,8,7.0,3,1.0 +4428,6165,663.9859380505462,39.0,111,20.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24518.9,950.0,18630.0,3,9,7.0,2,1.0 +4429,6166,3434.0621384508786,70.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34010.0,0.0,22695.0,53254.0,0.0,0.0,1,8,7.0,3,0.0 +4430,6167,2021.5262933734905,54.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,424.0,0.0,101406.7,0.0,121860.0,2,9,7.0,4,2.0 +4431,6168,2322.4294077026334,49.0,111,0.0,55,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40354.2,0.0,38540.0,3,9,7.0,2,2.0 +4432,6169,2208.853948694938,58.0,112,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54283.0,0.0,67630.0,1,9,0.0,3,2.0 +4433,6170,1861.3840854160787,69.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19270.0,0.0,0.0,19270.0,0.0,0.0,3,0,1.0,3,0.0 +4434,6171,3555.319864359844,38.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,68343.6,0.0,59440.0,2,10,8.0,4,2.0 +4435,6172,1902.4244175703564,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2620.0,6920.0,0.0,0.0,11940.0,0.0,0.0,3,7,5.0,1,0.0 +4436,6173,2300.150261122755,40.0,112,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30477.05,0.0,32840.0,3,10,0.0,2,1.0 +4437,6174,2591.5475490295967,47.0,400,0.0,42,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,32028.55,0.0,32800.0,1,0,0.0,4,2.0 +4438,6176,1788.9824781987606,38.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45658.25,0.0,40260.0,2,5,0.0,4,2.0 +4439,6177,2891.58540846288,36.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55567.25,0.0,54400.0,3,9,7.0,4,2.0 +4440,6178,2341.071942413764,77.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27660.0,0.0,0.0,27220.05,0.0,0.0,1,0,1.0,3,0.0 +4441,6179,2467.222611549788,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9.0,0.0,0.0,3,8,7.0,1,0.0 +4442,6180,2700.658404182473,31.0,112,3730.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44556.4,0.0,40300.0,2,7,4.0,4,2.0 +4443,6182,2430.3316295793265,31.0,111,0.0,85,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,18135.0,0.0,13490.0,3,9,7.0,4,1.0 +4444,6183,2209.8594787516895,60.0,400,11790.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14140.0,0.0,0.0,36567.0,0.0,2700.0,3,0,1.0,3,1.0 +4445,6184,1625.948941220599,49.0,120,2210.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33451.85,0.0,30040.0,2,0,3.0,3,2.0 +4446,6186,2532.875708283946,36.0,112,7510.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,85.0,0.0,56536.2,0.0,30220.0,2,8,1.0,4,2.0 +4447,6187,3604.5678610084838,47.0,111,0.0,38,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,43736.25,0.0,49770.0,2,9,7.0,2,1.0 +4448,6188,776.3148162850016,50.0,111,4370.0,62,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17884.0,40.0,11730.0,3,5,4.0,2,1.0 +4449,6191,3274.898533732403,60.0,400,0.0,64,1.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,8814.0,0.0,0.0,3,0,0.0,1,1.0 +4450,6194,6179.341273832409,44.0,111,0.0,85,0.0,0.0,1.0,1.0,6510.0,0.0,0.0,8850.0,0.0,0.0,15016.8,0.0,0.0,1,10,8.0,1,0.0 +4451,6195,4511.898103264542,36.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28151.75,0.0,28370.0,2,9,7.0,1,1.0 +4452,6196,2738.8063238245268,56.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49839.6,0.0,51790.0,1,6,5.0,3,2.0 +4453,6198,135.18364427212686,47.0,300,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19151.55,1540.0,12290.0,3,0,0.0,2,1.0 +4454,6199,4429.364251564317,78.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15140.0,0.0,0.0,15140.0,0.0,0.0,3,1,3.0,1,0.0 +4455,6203,3405.4859587235105,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,46500.0,0.0,0.0,38877.70381151038,0.0,880.0,2,10,8.0,1,0.0 +4456,6204,1897.7799414712201,60.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36180.05,0.0,21990.0,1,7,5.0,3,1.0 +4457,6205,2113.5158166748333,38.0,111,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,56277.8,0.0,43510.0,3,9,7.0,4,2.0 +4458,6206,2298.017576700132,36.0,112,24130.0,46,2.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32981.15,0.0,80.0,2,8,0.0,4,2.0 +4459,6208,716.021025411648,43.0,211,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,29004.3,0.0,21210.0,2,1,3.0,2,1.0 +4460,6209,2137.520299905677,44.0,400,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17547.4,0.0,19020.0,1,0,0.0,1,1.0 +4461,6211,2997.4249810635933,81.0,111,0.0,78,0.0,0.0,4.0,2.5,0.0,18130.0,0.0,12320.0,0.0,0.0,29638.433862709775,0.0,0.0,1,8,7.0,4,0.0 +4462,6212,2298.148676879568,49.0,111,6610.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29115.45,0.0,25380.0,3,9,7.0,4,2.0 +4463,6213,2670.804456788769,36.0,120,0.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31547.6,0.0,30090.0,2,0,0.0,4,2.0 +4464,6215,1872.4389219629074,66.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,72990.0,187.0,0.0,68319.55,0.0,0.0,1,8,1.0,1,0.0 +4465,6216,3791.901191828191,54.0,111,0.0,56,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,28941.0,2570.0,24080.0,3,10,8.0,4,1.0 +4466,6217,3304.1193992183157,48.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18161.4,0.0,19100.0,3,0,0.0,1,1.0 +4467,6219,2576.9958771505762,59.0,111,10600.0,55,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,33727.5,0.0,23740.0,1,9,7.0,4,2.0 +4468,6221,1524.3729614702727,69.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51710.0,625.0,0.0,52530.65,0.0,0.0,1,0,1.0,3,0.0 +4469,6222,3108.1195967055237,61.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1700.0,0.0,0.0,33917.65,0.0,35120.0,2,8,6.0,1,1.0 +4470,6223,3676.6139899141062,22.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8732.3,0.0,8670.0,3,9,7.0,1,1.0 +4471,6224,2410.712165054757,55.0,221,0.0,37,2.0,1.0,2.0,1.5,0.0,2950.0,0.0,0.0,0.0,0.0,46670.95,250.0,54480.0,1,1,2.0,3,2.0 +4472,6226,1824.6901296678338,34.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58313.1,0.0,51220.0,2,10,1.0,4,2.0 +4473,6229,2645.8978117785387,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15280.0,0.0,0.0,16307.0,0.0,0.0,5,7,5.0,1,0.0 +4474,6231,3627.7799565913347,63.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28050.0,0.0,0.0,27641.75,0.0,0.0,1,9,7.0,5,0.0 +4475,6234,3655.7530558080957,25.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32253.9,0.0,32490.0,3,9,7.0,3,2.0 +4476,6236,2874.1731052726136,75.0,111,19770.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51640.0,2706.0,0.0,69361.01524604153,0.0,0.0,1,10,8.0,3,0.0 +4477,6237,3061.555334029579,67.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40050.0,0.0,0.0,36879.75,0.0,0.0,2,6,4.0,3,0.0 +4478,6238,2744.4937068249296,61.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10930.0,0.0,0.0,13986.55,0.0,0.0,1,0,0.0,1,0.0 +4479,6239,4690.46973510374,22.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19303.65,520.0,19290.0,3,9,7.0,1,1.0 +4480,6240,3180.1325602988522,50.0,111,13340.0,56,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,59151.75,40.0,29100.0,1,5,4.0,5,3.0 +4481,6241,918.0393974753563,46.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24633.95,350.0,21760.0,3,10,8.0,2,2.0 +4482,6242,3238.050390918299,89.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15310.0,0.0,0.0,15754.0,0.0,0.0,3,9,7.0,1,0.0 +4483,6243,2084.7456251241233,38.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,299.0,0.0,50354.2,0.0,49080.0,2,5,4.0,4,2.0 +4484,6244,2574.8298076962333,72.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14910.0,0.0,0.0,14539.5,0.0,0.0,1,10,2.0,1,0.0 +4485,6245,2625.4508267432466,54.0,300,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,541.0,0.0,17432.65,0.0,21060.0,1,0,0.0,3,1.0 +4486,6249,2421.107083697055,69.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44930.0,0.0,0.0,44993.3,0.0,4800.0,1,8,0.0,3,0.0 +4487,6251,1896.1012902452176,65.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44480.0,0.0,0.0,40768.0,0.0,0.0,1,7,4.0,3,0.0 +4488,6252,3264.7794467093045,40.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,11146.2,0.0,0.0,3,8,7.0,1,1.0 +4489,6253,3620.6659739245865,36.0,111,5000.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20017.9,0.0,16480.0,3,7,5.0,1,1.0 +4490,6254,3102.16309036865,68.0,111,5950.0,78,1.0,0.0,2.0,1.5,0.0,0.0,3800.0,5490.0,0.0,0.0,19200.0,0.0,0.0,3,9,7.0,3,1.0 +4491,6256,3031.862251958663,59.0,111,0.0,22,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,841.0,0.0,6094.3,0.0,0.0,2,10,8.0,1,1.0 +4492,6257,603.6894172013349,47.0,221,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30478.9,170.0,21450.0,3,1,2.0,2,2.0 +4493,6258,2372.8264685548775,31.0,112,7090.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36096.7,0.0,28080.0,2,7,0.0,4,2.0 +4494,6260,1693.924752035418,36.0,111,0.0,35,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,70578.05,0.0,59850.0,2,9,7.0,4,2.0 +4495,6261,3369.9673869102894,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17810.0,0.0,0.0,17307.2,0.0,0.0,3,7,4.0,1,0.0 +4496,6262,1647.274221063831,59.0,112,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25736.81836067128,0.0,0.0,1,6,0.0,1,1.0 +4497,6263,1564.1412747255392,52.0,111,2330.0,48,3,4.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,64509.85,0.0,65720.0,2,9,7.0,4,4.0 +4498,6265,4802.643769870793,45.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23800.95,0.0,26120.0,3,10,2.0,1,1.0 +4499,6266,2334.890676823248,82.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14440.0,0.0,0.0,13104.95,0.0,0.0,1,9,7.0,1,0.0 +4500,6267,1993.803656221767,58.0,300,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,834.0,0.0,24289.5,0.0,22910.0,1,0,0.0,3,1.0 +4501,6268,132.7191740940469,55.0,120,9370.0,67,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18957.65,130.0,3560.0,3,0,0.0,2,1.0 +4502,6270,4171.004556362333,80.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23760.0,0.0,0.0,22643.15,0.0,0.0,1,1,3.0,1,0.0 +4503,6271,3730.348653040445,72.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,44540.0,0.0,0.0,82201.35,0.0,50310.0,3,10,8.0,4,1.0 +4504,6272,2786.5490390794457,51.0,111,0.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,49962.3,0.0,41580.0,2,9,7.0,4,2.0 +4505,6273,1725.364090185464,53.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,65386.25,0.0,77710.0,1,9,7.0,4,2.0 +4506,6274,3044.382987416924,50.0,111,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35466.5,980.0,35240.0,2,6,5.0,4,2.0 +4507,6276,1645.9135474594905,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28810.0,0.0,0.0,40459.05,0.0,0.0,1,6,4.0,1,0.0 +4508,6277,4170.089487611232,77.0,111,0.0,22,1.0,0.0,1.0,1.0,0.0,0.0,0.0,16530.0,0.0,0.0,23298.0,0.0,0.0,3,10,8.0,1,1.0 +4509,6278,3249.766021656776,22.0,111,0.0,84,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24922.0,0.0,0.0,3,9,7.0,5,0.0 +4510,6280,3763.3387542668333,41.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,102795.85,0.0,122040.0,2,10,8.0,4,2.0 +4511,6281,3044.021878054532,38.0,120,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20993.85,0.0,22660.0,1,0,0.0,1,1.0 +4512,6282,2738.3264415447948,64.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18280.0,0.0,0.0,15947.6,0.0,0.0,1,10,2.0,1,0.0 +4513,6283,2667.8904151768756,22.0,400,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16426.75,1100.0,13880.0,3,0,1.0,1,1.0 +4514,6284,1544.4298592622579,83.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27690.0,0.0,0.0,27344.15,0.0,0.0,1,6,4.0,3,0.0 +4515,6286,3411.1077273492456,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18990.0,191.0,0.0,20086.3,0.0,0.0,1,8,6.0,1,0.0 +4516,6287,2292.899763616037,30.0,221,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32782.8,0.0,22610.0,1,1,2.0,4,2.0 +4517,6289,2300.895420886086,45.0,211,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31687.05,0.0,30530.0,1,1,3.0,4,2.0 +4518,6292,2689.0206924625973,49.0,112,3850.0,62,1.0,1.0,3.0,2.0,0.0,0.0,0.0,8910.0,0.0,0.0,24380.25,0.0,10610.0,3,8,1.0,4,1.0 +4519,6294,2668.7822826549886,52.0,400,0.0,34,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27490.9,0.0,24850.0,3,0,0.0,4,1.0 +4520,6295,2943.1647369222037,56.0,111,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,94520.35,0.0,27000.0,1,9,7.0,4,2.0 +4521,6297,2688.2934512100323,26.0,111,4130.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32439.55,0.0,29110.0,3,6,5.0,3,2.0 +4522,6298,1576.3052170393375,88.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55250.0,0.0,0.0,52438.9,0.0,0.0,1,0,1.0,3,0.0 +4523,6300,2031.5601657018776,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30600.0,0.0,0.0,31824.8,0.0,0.0,5,7,5.0,3,0.0 +4524,6303,1519.657706909851,88.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42480.0,0.0,0.0,48578.97050285483,0.0,0.0,1,9,3.0,3,0.0 +4525,6304,2402.934679407231,60.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23969.6,0.0,25630.0,3,8,7.0,1,1.0 +4526,6305,2620.996190988823,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18080.0,0.0,0.0,17248.6,0.0,0.0,1,8,1.0,1,0.0 +4527,6306,2053.146669373399,66.0,111,0.0,35,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23430.0,0.0,0.0,63496.8123017129,0.0,47330.0,1,10,8.0,3,1.0 +4528,6307,512.06386539838,49.0,111,0.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26425.55,3120.0,22410.0,2,7,5.0,2,1.0 +4529,6308,1391.810799111961,65.0,111,2630.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27470.0,0.0,0.0,37539.55,0.0,9350.0,1,9,7.0,3,1.0 +4530,6310,2345.3728867195214,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27400.0,0.0,0.0,25584.58029915558,0.0,0.0,1,10,8.0,3,0.0 +4531,6311,1955.989495876705,60.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,971.0,0.0,64036.85,0.0,70630.0,2,4,4.0,4,2.0 +4532,6312,1163.376971962406,46.0,111,0.0,85,0.0,0.0,5.0,2.4,4860.0,0.0,0.0,0.0,0.0,0.0,8120.0,0.0,0.0,3,7,5.0,4,0.0 +4533,6313,2401.4677264185993,89.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16000.0,0.0,0.0,15070.5,0.0,0.0,1,6,4.0,1,0.0 +4534,6314,2501.8152991668994,89.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26710.0,0.0,0.0,24707.0,0.0,0.0,1,8,0.0,1,0.0 +4535,6317,2332.7720212191975,32.0,120,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58494.8,0.0,53480.0,2,0,0.0,4,2.0 +4536,6318,2324.114555639182,39.0,111,0.0,22,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,38349.5,0.0,0.0,2,9,7.0,4,2.0 +4537,6321,1770.1214272060115,29.0,400,8220.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31498.9,0.0,21180.0,3,0,0.0,4,2.0 +4538,6322,1448.1447249574853,62.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25739.4,0.0,26700.0,1,8,1.0,2,1.0 +4539,6323,927.0578370364622,34.0,111,8560.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17435.75,2130.0,570.0,3,9,7.0,2,1.0 +4540,6324,2918.748213553785,31.0,112,0.0,13,2.0,1.0,4.0,2.1,0.0,10110.0,0.0,0.0,0.0,0.0,23205.4,170.0,0.0,3,8,0.0,4,2.0 +4541,6325,2432.620272043007,67.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15380.0,0.0,0.0,15242.85,0.0,0.0,3,10,5.0,1,0.0 +4542,6326,6056.2910105218025,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6136.0,0.0,0.0,3,10,8.0,1,0.0 +4543,6327,581.1238688128292,42.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25271.55,0.0,22940.0,2,9,7.0,2,1.0 +4544,6328,2707.052035973572,30.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24198.25,0.0,26550.0,3,10,8.0,1,1.0 +4545,6330,4609.976652355919,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13600.0,0.0,0.0,13803.0,0.0,0.0,5,7,5.0,1,0.0 +4546,6332,4126.354367374312,53.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49423.26772541955,0.0,36240.0,3,9,7.0,4,2.0 +4547,6334,1635.920581465168,53.0,221,360.0,52,1.0,1.0,1.0,1.0,0.0,3120.0,0.0,0.0,0.0,0.0,7070.0,1290.0,2300.0,5,1,2.0,1,1.0 +4548,6335,2522.992974054293,64.0,112,1500.0,64,3,3.0,4.0,2.5,0.0,0.0,0.0,37870.0,0.0,0.0,73460.75,0.0,38290.0,1,10,0.0,4,3.0 +4549,6336,3335.108954525151,40.0,221,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45614.55,0.0,50430.0,2,1,1.0,4,2.0 +4550,6337,2475.2874811862303,76.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17520.0,0.0,0.0,17520.0,0.0,0.0,3,8,6.0,1,0.0 +4551,6339,1531.6719701451666,59.0,111,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,91648.85,0.0,114750.0,2,8,7.0,3,2.0 +4552,6340,1800.927247029825,42.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,934.0,0.0,85765.55,0.0,95600.0,2,7,5.0,4,2.0 +4553,6343,3428.5236200734994,44.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19831.05,0.0,19600.0,3,7,5.0,2,2.0 +4554,6345,1553.604804304573,77.0,400,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15770.0,0.0,0.0,15556.7,0.0,0.0,1,0,0.0,1,0.0 +4555,6346,3664.0257035135487,60.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,7710.0,0.0,0.0,0.0,0.0,39184.0,1510.0,8440.0,3,8,7.0,3,2.0 +4556,6348,2784.703628115054,37.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22857.75,0.0,24050.0,3,8,7.0,2,1.0 +4557,6350,3165.107764883194,89.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22210.0,0.0,0.0,21033.3,0.0,0.0,3,8,7.0,1,0.0 +4558,6351,1195.6872656042722,56.0,111,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33397.75,0.0,20860.0,1,6,4.0,3,2.0 +4559,6353,2364.063924664017,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57056.75,0.0,58760.0,2,9,7.0,4,2.0 +4560,6354,2716.391766675863,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15670.0,0.0,0.0,16416.0,0.0,0.0,1,9,7.0,1,0.0 +4561,6355,477.9955342116471,45.0,111,0.0,47,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39532.5,0.0,27570.0,1,6,4.0,2,1.0 +4562,6356,6366.464124529762,26.0,111,0.0,42,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21783.9,0.0,19100.0,3,9,7.0,3,2.0 +4563,6357,3159.091477430351,81.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8170.0,0.0,0.0,10450.0,0.0,0.0,3,8,3.0,1,0.0 +4564,6358,2110.7388491630795,80.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11040.0,0.0,0.0,10923.0,0.0,0.0,1,0,0.0,1,0.0 +4565,6359,1883.8258467588078,42.0,111,0.0,65,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,46237.25,0.0,38610.0,2,9,7.0,4,2.0 +4566,6360,1202.9289611561446,56.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,57601.0,0.0,69280.0,2,10,1.0,1,1.0 +4567,6361,2345.088480183562,35.0,221,6310.0,56,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,25443.0,100.0,11930.0,2,1,2.0,4,2.0 +4568,6362,1891.2975138657134,42.0,111,7110.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,35861.7,0.0,22290.0,2,7,5.0,4,2.0 +4569,6364,3048.736310988666,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23980.0,0.0,0.0,22623.78029915558,0.0,0.0,1,6,5.0,1,0.0 +4570,6365,1788.3159561158398,62.0,120,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26190.0,0.0,0.0,22144.4,0.0,890.0,1,0,1.0,1,0.0 +4571,6367,2614.1757370090836,35.0,112,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18072.45,0.0,18990.0,2,9,1.0,1,1.0 +4572,6369,1903.8870834641757,39.0,120,3670.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50737.1,0.0,47750.0,2,0,3.0,4,2.0 +4573,6371,1788.585858813627,52.0,111,1020.0,46,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,55891.7,0.0,56090.0,1,8,7.0,4,3.0 +4574,6372,854.4622128073715,56.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17557.45,0.0,17760.0,2,9,7.0,2,1.0 +4575,6374,4584.31250513617,35.0,300,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34256.0,0.0,17130.0,3,0,0.0,4,2.0 +4576,6376,3291.996391604718,35.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46415.1,0.0,51170.0,3,9,7.0,3,2.0 +4577,6377,2024.6761030198315,58.0,111,2800.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44087.7,0.0,45010.0,5,8,6.0,3,2.0 +4578,6379,2019.1727346547166,69.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11020.0,0.0,0.0,13557.0,0.0,0.0,3,3,3.0,1,0.0 +4579,6380,1553.13599728763,70.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49550.0,0.0,0.0,46477.25,0.0,0.0,1,8,1.0,3,0.0 +4580,6381,1702.6609379597223,56.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42187.25,0.0,47140.0,1,8,6.0,3,2.0 +4581,6382,1661.779505884501,56.0,111,0.0,,0.0,0.0,1.0,1.0,11870.0,0.0,0.0,0.0,0.0,0.0,14870.0,0.0,0.0,3,6,5.0,1,0.0 +4582,6383,733.4583673821545,67.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11710.0,0.0,0.0,30056.453532770385,0.0,0.0,1,4,3.0,1,0.0 +4583,6384,3277.066900073765,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3770.0,0.0,0.0,3,8,7.0,1,0.0 +4584,6385,1784.4666821704097,47.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18556.85,1120.0,17660.0,3,9,7.0,1,1.0 +4585,6387,5780.7160967494465,86.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18170.0,0.0,0.0,17508.8,0.0,0.0,1,6,5.0,1,0.0 +4586,6388,1584.0522225986933,56.0,112,1830.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48821.3,0.0,50620.0,1,10,1.0,3,2.0 +4587,6389,5533.419820161739,45.0,111,0.0,85,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,14052.0,0.0,0.0,3,6,5.0,1,0.0 +4588,6390,3459.1793189569557,85.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41380.0,0.0,0.0,34765.2,0.0,0.0,5,9,7.0,1,0.0 +4589,6391,2007.5372250770886,77.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33720.0,0.0,0.0,32989.4,0.0,0.0,1,0,0.0,3,0.0 +4590,6392,573.0565048238087,33.0,111,0.0,38,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,31610.5,0.0,26430.0,3,9,7.0,2,1.0 +4591,6393,1781.7068921725702,69.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29110.0,0.0,0.0,28604.1,0.0,0.0,1,0,0.0,3,0.0 +4592,6394,1807.1489046851098,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63890.0,2085.0,0.0,50364.75,0.0,0.0,1,4,4.0,3,0.0 +4593,6395,2169.916778021146,52.0,111,0.0,21,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,4700.0,1,9,7.0,4,3.0 +4594,6396,1332.6239758925424,38.0,111,8580.0,85,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,39540.9,500.0,19040.0,1,8,6.0,4,1.0 +4595,6398,1046.7950470464855,42.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,80.0,0.0,0.0,0.0,0.0,21059.55,3690.0,12120.0,3,9,7.0,4,1.0 +4596,6399,2181.8659550402103,52.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26716.5,0.0,29480.0,3,7,0.0,1,1.0 +4597,6400,2274.4931028744872,61.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9530.0,677.0,0.0,90887.8,0.0,83670.0,1,9,7.0,3,1.0 +4598,6402,1583.9757889752973,59.0,300,0.0,,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,10800.0,0.0,0.0,3,0,0.0,1,0.0 +4599,6403,2329.4875842593115,61.0,300,11280.0,63,1.0,0.0,4.0,2.5,0.0,5490.0,0.0,0.0,0.0,0.0,15946.45,0.0,0.0,1,0,1.0,4,1.0 +4600,6404,2284.151066211601,66.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22700.0,0.0,0.0,22031.2,0.0,0.0,1,9,7.0,1,0.0 +4601,6405,2253.581449848301,51.0,111,0.0,23,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,135.45,0.0,0.0,1,10,8.0,2,1.0 +4602,6408,2795.7643395566465,57.0,111,0.0,62,2.0,1.0,3.0,2.0,9720.0,0.0,0.0,0.0,0.0,0.0,38004.2,0.0,29280.0,3,8,7.0,4,2.0 +4603,6409,4467.331955336997,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3,9,7.0,1,0.0 +4604,6410,2428.4835636701036,54.0,111,0.0,63,1.0,1.0,4.0,2.5,10980.0,0.0,0.0,0.0,0.0,0.0,31094.0,0.0,17990.0,1,10,8.0,4,1.0 +4605,6413,1187.5531529967864,48.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34854.3,0.0,29110.0,3,10,8.0,3,2.0 +4606,6415,1715.0118767405154,73.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20960.0,431.0,0.0,19225.05,0.0,0.0,1,1,3.0,1,0.0 +4607,6416,4211.134643336478,25.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30241.65,0.0,24020.0,2,9,7.0,3,2.0 +4608,6418,4691.078011793799,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14440.0,0.0,0.0,15132.55,0.0,0.0,3,6,4.0,1,0.0 +4609,6419,1397.1960261046613,65.0,112,0.0,71,1.0,1.0,3.0,2.0,0.0,0.0,0.0,32180.0,0.0,0.0,107137.065,0.0,0.0,1,9,2.0,4,1.0 +4610,6423,2126.2384569746287,66.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,77890.0,187.0,0.0,280746.51059831114,0.0,38150.0,1,10,8.0,3,1.0 +4611,6425,3256.5363456711984,38.0,400,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50458.66165336098,0.0,36670.0,2,0,0.0,3,2.0 +4612,6426,2839.5282562337256,23.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43200.55,0.0,46410.0,3,10,0.0,3,2.0 +4613,6428,1649.0944858303208,56.0,300,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,100563.83747293927,0.0,116360.0,1,0,0.0,3,2.0 +4614,6429,2710.3039276066033,22.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17362.35,1530.0,12660.0,3,9,7.0,3,1.0 +4615,6430,2266.739488424109,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21430.0,0.0,0.0,20327.15,0.0,0.0,2,9,7.0,1,0.0 +4616,6433,1634.0427330949026,68.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23870.0,0.0,0.0,23579.65,0.0,0.0,1,0,0.0,3,0.0 +4617,6435,6961.232108681463,32.0,111,0.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,6,4.0,1,1.0 +4618,6436,1799.7401142789263,70.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17540.0,0.0,0.0,17547.0,0.0,0.0,3,8,7.0,3,0.0 +4619,6438,3264.3001584204926,66.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30350.0,0.0,0.0,30126.4,0.0,0.0,3,9,2.0,3,0.0 +4620,6439,2230.182685938134,36.0,112,2990.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32241.65,410.0,17530.0,3,10,4.0,4,1.0 +4621,6440,1630.970939878591,73.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24680.0,0.0,0.0,25031.35,0.0,0.0,1,0,0.0,3,0.0 +4622,6442,3092.283858438528,22.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18507.4,750.0,17860.0,3,5,4.0,1,1.0 +4623,6443,2677.58644883449,62.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14280.0,0.0,0.0,17811.78145817772,0.0,3320.0,5,0,0.0,1,0.0 +4624,6444,3936.867775893223,28.0,120,2270.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28097.3,0.0,24760.0,2,0,3.0,4,2.0 +4625,6446,2808.145672833507,86.0,112,0.0,62,1.0,0.0,2.0,1.5,0.0,0.0,0.0,24630.0,0.0,0.0,24221.0,0.0,0.0,1,9,1.0,3,1.0 +4626,6447,3370.176706162944,80.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25520.0,0.0,0.0,23765.0,0.0,0.0,1,8,0.0,1,0.0 +4627,6449,890.1150872564086,61.0,111,15860.0,75,0.0,0.0,4.0,2.5,0.0,0.0,0.0,4750.0,0.0,0.0,37498.7,0.0,0.0,3,7,5.0,2,0.0 +4628,6450,4188.397359795295,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33920.0,235.0,0.0,28253.98672134256,0.0,0.0,1,10,8.0,1,0.0 +4629,6452,2376.7608932729,36.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43061.0,0.0,41910.0,5,9,3.0,4,2.0 +4630,6453,842.040598463461,38.0,111,1150.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20146.25,2620.0,8900.0,3,5,4.0,2,1.0 +4631,6455,2016.288965469617,70.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26140.0,0.0,0.0,25303.6,0.0,0.0,1,9,7.0,3,0.0 +4632,6456,2388.525950901813,37.0,400,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34627.05,0.0,34880.0,2,0,0.0,4,2.0 +4633,6457,1901.5895201186904,54.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17965.05,0.0,20240.0,3,8,7.0,1,1.0 +4634,6458,3541.5952886075606,92.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9710.0,0.0,0.0,9769.0,0.0,0.0,1,6,1.0,1,0.0 +4635,6459,1919.5050988022272,65.0,211,1660.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23610.0,0.0,0.0,44021.5,0.0,0.0,1,1,3.0,3,0.0 +4636,6460,2148.9571538248415,60.0,400,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41328.903242628236,0.0,45130.0,1,0,0.0,3,2.0 +4637,6461,3282.8292124847276,21.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10581.05,0.0,7450.0,3,8,6.0,1,1.0 +4638,6463,4667.6709662431385,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9070.0,0.0,0.0,25401.45,0.0,0.0,1,10,8.0,1,0.0 +4639,6464,3003.8613064343635,79.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15780.0,0.0,0.0,15560.95,0.0,0.0,3,9,7.0,1,0.0 +4640,6465,2077.02818529141,42.0,112,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,208.0,0.0,56678.9,0.0,57590.0,2,10,0.0,4,2.0 +4641,6466,2160.3858582423327,54.0,111,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,8020.0,195.0,0.0,67820.35635251731,0.0,61670.0,1,10,8.0,2,1.0 +4642,6467,1760.8339265611291,48.0,400,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32677.45,0.0,38060.0,2,0,0.0,3,1.0 +4643,6468,2434.9650689602836,55.0,111,2080.0,54,3,3.0,4.0,2.5,0.0,0.0,0.0,28010.0,0.0,0.0,81575.6,0.0,61100.0,1,9,7.0,4,3.0 +4644,6469,1305.660724342942,54.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51659.95,0.0,55980.0,1,6,0.0,3,2.0 +4645,6471,2499.532764836762,29.0,300,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42581.9,0.0,39850.0,3,0,2.0,4,2.0 +4646,6472,5826.752276139807,49.0,112,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16500.35,0.0,17340.0,5,8,1.0,2,1.0 +4647,6473,2420.9697678004513,41.0,300,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43131.7,0.0,39480.0,2,0,0.0,4,2.0 +4648,6476,3275.3485395296134,33.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,64564.95,0.0,72240.0,3,10,8.0,4,2.0 +4649,6477,903.0291477169601,40.0,211,0.0,68,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,34208.3,3950.0,20670.0,3,4,3.0,4,1.0 +4650,6479,3065.2928375043184,73.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33420.0,0.0,0.0,31643.85,0.0,0.0,1,7,0.0,3,0.0 +4651,6480,3794.5368817788026,45.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,872.0,0.0,51436.6,0.0,50360.0,2,10,4.0,1,1.0 +4652,6481,2965.221897403304,42.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21808.6,0.0,23660.0,3,7,5.0,1,1.0 +4653,6482,2917.1335051917217,63.0,112,2390.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21360.0,0.0,0.0,22811.65,0.0,0.0,1,8,0.0,1,0.0 +4654,6484,1715.0492631124855,32.0,111,19970.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18956.3,0.0,0.0,3,9,7.0,1,1.0 +4655,6485,4350.458898068248,78.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17810.0,0.0,0.0,27168.15,0.0,0.0,3,10,8.0,1,0.0 +4656,6488,2771.0655077124447,50.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21770.1,0.0,22520.0,3,10,8.0,1,1.0 +4657,6491,2934.6817169554593,43.0,112,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44927.8,0.0,48640.0,2,8,0.0,3,2.0 +4658,6492,3360.2601291078295,86.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16810.0,0.0,0.0,17636.0,0.0,0.0,1,0,0.0,1,0.0 +4659,6493,1796.2240096727796,53.0,111,1070.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35936.3,0.0,36540.0,2,7,5.0,3,1.0 +4660,6494,777.9009897532604,31.0,221,9610.0,43,1.0,0.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,24966.15,0.0,0.0,3,1,3.0,2,1.0 +4661,6497,4760.251696703429,25.0,300,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41748.95,0.0,44970.0,3,0,0.0,3,2.0 +4662,6499,1842.1667990424767,41.0,120,0.0,67,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32614.2,750.0,25580.0,2,0,1.0,4,1.0 +4663,6500,1771.277183262936,55.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23296.6,0.0,19290.0,5,8,7.0,1,1.0 +4664,6501,835.8205521046752,41.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19368.0,0.0,16440.0,3,9,7.0,2,1.0 +4665,6502,3242.33658016657,43.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35881.85,0.0,36210.0,3,8,6.0,1,1.0 +4666,6503,1912.512404633945,81.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30830.0,0.0,0.0,29987.4,0.0,0.0,1,1,2.0,3,0.0 +4667,6504,959.9912990351844,51.0,111,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12795.0,0.0,0.0,3,7,5.0,1,0.0 +4668,6505,3407.887628311018,49.0,111,8760.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10402.0,70.0,0.0,3,10,8.0,1,1.0 +4669,6507,2329.150548375856,53.0,111,0.0,78,1.0,0.0,2.0,1.5,5930.0,0.0,0.0,0.0,0.0,0.0,11204.0,0.0,210.0,3,10,8.0,2,1.0 +4670,6508,1430.8177366533255,67.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55728.05,0.0,61500.0,1,8,0.0,3,2.0 +4671,6509,1756.9653610917214,41.0,400,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49160.8,0.0,42800.0,2,0,1.0,4,2.0 +4672,6510,1831.4384021574633,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36110.0,0.0,0.0,35828.35,0.0,0.0,1,8,7.0,3,0.0 +4673,6512,2635.202512372086,35.0,112,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,61612.8,0.0,62360.0,2,10,0.0,4,2.0 +4674,6513,3433.241919172564,60.0,112,0.0,11,1.0,1.0,1.0,1.0,0.0,2140.0,0.0,0.0,0.0,0.0,4171.0,2270.0,0.0,1,7,0.0,1,1.0 +4675,6514,2791.279153098413,78.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23660.0,0.0,0.0,22933.0,0.0,0.0,3,8,6.0,3,0.0 +4676,6515,847.3035886598356,46.0,211,0.0,85,0.0,0.0,3.0,1.6,11870.0,0.0,0.0,0.0,0.0,0.0,22243.0,0.0,0.0,3,1,3.0,2,0.0 +4677,6517,1333.048307609569,61.0,211,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25490.95,0.0,470.0,1,2,3.0,3,1.0 +4678,6518,2101.817081656473,44.0,111,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41017.2,0.0,41410.0,2,8,6.0,4,2.0 +4679,6519,5695.487080133152,57.0,221,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15689.9,0.0,15920.0,3,1,1.0,3,2.0 +4680,6520,2446.8327631166476,24.0,120,0.0,65,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28367.0,2130.0,19570.0,3,0,0.0,4,1.0 +4681,6523,1757.5601961901177,43.0,120,630.0,47,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,205.0,0.0,46826.5,0.0,39080.0,1,0,3.0,4,2.0 +4682,6524,4837.947924220404,47.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25972.7,0.0,28110.0,1,6,4.0,1,1.0 +4683,6525,4071.6352351612877,27.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20475.95,1800.0,14570.0,3,9,7.0,3,1.0 +4684,6526,1987.2737759433612,61.0,111,4820.0,38,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41292.1411953433,0.0,45340.0,1,10,8.0,4,1.0 +4685,6527,2111.4871500724753,70.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15920.0,0.0,0.0,15270.55,0.0,0.0,1,0,0.0,1,0.0 +4686,6528,4255.274988064659,27.0,112,0.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26938.45,0.0,29490.0,3,10,4.0,4,1.0 +4687,6529,1552.5053657579492,52.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43451.4,0.0,48060.0,1,10,8.0,3,2.0 +4688,6531,1540.2727993795208,48.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,563.0,0.0,78497.45,0.0,85050.0,1,4,4.0,4,2.0 +4689,6532,583.5466397370947,52.0,111,0.0,56,1.0,1.0,3.0,2.0,0.0,4010.0,0.0,0.0,0.0,0.0,17222.0,1480.0,1840.0,3,9,7.0,2,1.0 +4690,6533,3959.866400227023,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18590.0,0.0,0.0,19305.5,0.0,0.0,3,10,8.0,1,0.0 +4691,6534,2462.6188229425275,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5480.0,0.0,0.0,13184.0,0.0,0.0,3,5,4.0,1,0.0 +4692,6536,2125.409181389795,46.0,400,0.0,64,2.0,2.0,5.0,3.0,4480.0,0.0,0.0,0.0,0.0,0.0,34212.0,0.0,27400.0,3,0,0.0,4,2.0 +4693,6537,5028.325250596903,36.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,15.0,0.0,47268.35,0.0,51980.0,3,10,8.0,1,1.0 +4694,6538,1588.1520610811056,68.0,112,0.0,21,1.0,0.0,2.0,1.5,0.0,0.0,0.0,23180.0,15.0,0.0,21131.4,0.0,0.0,2,7,0.0,3,1.0 +4695,6540,801.3966847228036,34.0,111,1750.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20597.75,1320.0,5500.0,3,9,7.0,2,1.0 +4696,6542,4078.927940358464,73.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36460.0,0.0,0.0,31502.7,0.0,0.0,1,9,7.0,1,0.0 +4697,6543,1688.498789014269,55.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,74804.8,0.0,90130.0,2,6,5.0,4,2.0 +4698,6544,2265.7601906070518,50.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32691.55,0.0,37670.0,3,10,8.0,1,1.0 +4699,6545,1918.9444886826834,65.0,112,2890.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26910.0,0.0,0.0,27656.799549304335,0.0,0.0,1,6,1.0,3,0.0 +4700,6546,2212.400432313477,50.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23097.55,0.0,25180.0,2,6,0.0,1,1.0 +4701,6547,2689.797525365914,37.0,111,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43170.45,0.0,42110.0,3,9,7.0,4,2.0 +4702,6548,324.22654433356354,49.0,221,0.0,55,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43803.35,0.0,36220.0,2,1,1.0,2,2.0 +4703,6549,1754.5115108049495,51.0,211,0.0,62,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,60822.9,0.0,62450.0,2,3,3.0,4,3.0 +4704,6550,627.3035572180727,44.0,120,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,3.0,0.0,23645.7,2610.0,21190.0,2,0,0.0,2,1.0 +4705,6552,1486.9380184956328,63.0,112,0.0,34,2.0,1.0,2.0,1.5,0.0,0.0,0.0,40610.0,4415.0,0.0,99455.55,0.0,67200.0,1,8,1.0,3,2.0 +4706,6553,2138.5480004706014,20.0,400,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28759.65,0.0,27090.0,3,0,1.0,3,2.0 +4707,6554,2134.8036778348423,69.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37400.0,0.0,0.0,36004.4,0.0,0.0,1,9,1.0,3,0.0 +4708,6555,2199.493143872474,30.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36375.5,0.0,36230.0,3,8,7.0,4,2.0 +4709,6559,1841.6437661525733,30.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,1700.0,0.0,0.0,5,9,7.0,2,0.0 +4710,6560,3246.1830887872507,55.0,111,5950.0,64,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9084.65,0.0,0.0,3,7,6.0,1,1.0 +4711,6562,3629.1068220959082,26.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33061.55,0.0,34180.0,3,9,0.0,3,2.0 +4712,6563,767.1004395717148,29.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28097.65,0.0,22150.0,3,9,7.0,2,1.0 +4713,6564,2794.2384110475696,57.0,112,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,2270.0,6940.0,0.0,0.0,25766.0,0.0,0.0,5,8,0.0,2,1.0 +4714,6565,2104.3738594766387,46.0,111,25810.0,21,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,26384.0,0.0,90.0,2,9,7.0,2,1.0 +4715,6566,1778.9463715635181,62.0,111,7070.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35280.0,0.0,0.0,37170.7,0.0,0.0,1,9,7.0,3,0.0 +4716,6567,1697.2532674668425,33.0,400,2210.0,68,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37768.1,0.0,25740.0,2,0,0.0,4,2.0 +4717,6568,3638.6398714247707,26.0,111,620.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27111.0,1940.0,16340.0,3,8,7.0,4,1.0 +4718,6569,559.1554243820976,55.0,111,0.0,65,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,23873.0,3810.0,18340.0,1,6,4.0,4,2.0 +4719,6570,2714.2528002724525,60.0,112,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14160.0,45.0,0.0,31213.85,0.0,0.0,1,7,0.0,3,1.0 +4720,6573,1813.5872287484249,73.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20440.0,0.0,0.0,20640.7,0.0,0.0,1,0,0.0,1,0.0 +4721,6574,4952.7019747996965,54.0,111,0.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5,10,8.0,1,1.0 +4722,6575,674.0056322912144,62.0,111,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21414.9,0.0,25470.0,1,10,8.0,3,2.0 +4723,6577,2823.4466070873445,44.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1500.0,0.0,41671.7,0.0,48340.0,2,8,7.0,1,1.0 +4724,6578,2201.759035389378,51.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,254.0,0.0,63767.0,0.0,66340.0,1,7,0.0,4,2.0 +4725,6579,2317.2047028476895,49.0,111,300.0,54,1.0,0.0,3.0,2.0,0.0,50.0,8210.0,680.0,0.0,0.0,28052.1,2740.0,16440.0,1,8,6.0,2,1.0 +4726,6581,2299.967218891929,48.0,112,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53260.55,0.0,56480.0,1,8,0.0,4,2.0 +4727,6584,3221.5306960501,31.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44847.6,0.0,45150.0,2,6,0.0,4,2.0 +4728,6588,1648.4974793461404,44.0,120,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,3265.0,0.0,76463.65,0.0,75240.0,2,0,0.0,4,2.0 +4729,6589,1647.416755951236,73.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28300.0,0.0,0.0,28761.65,0.0,540.0,1,0,0.0,3,0.0 +4730,6590,1709.1772211846462,27.0,111,0.0,55,1.0,1.0,4.0,1.9,0.0,4070.0,0.0,0.0,0.0,0.0,31796.0,160.0,12240.0,3,6,5.0,2,1.0 +4731,6591,2036.4711608643775,46.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,80187.6767663852,0.0,92270.0,2,8,7.0,3,2.0 +4732,6594,1915.2448555655642,65.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19830.0,0.0,0.0,19631.1,0.0,0.0,1,0,0.0,3,0.0 +4733,6596,3522.3841262665796,30.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56593.65,0.0,64590.0,2,10,8.0,3,2.0 +4734,6597,4934.246012046983,82.0,112,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,30130.0,0.0,0.0,54287.713074808,0.0,29350.0,1,7,1.0,4,1.0 +4735,6598,2085.693794319683,55.0,111,520.0,37,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,95873.95,0.0,110570.0,2,10,8.0,4,4.0 +4736,6599,2298.355517355339,63.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27540.0,0.0,0.0,25889.85,0.0,0.0,1,8,7.0,1,0.0 +4737,6600,1449.4033019626715,51.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,75534.55,0.0,87150.0,2,10,8.0,4,2.0 +4738,6602,1148.9210455801724,70.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19340.0,0.0,0.0,22440.35,0.0,0.0,1,8,7.0,3,0.0 +4739,6603,3507.2090971643834,44.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,390.0,0.0,49796.75,0.0,57720.0,3,10,8.0,1,1.0 +4740,6604,4304.660140617914,57.0,111,0.0,77,0.0,0.0,1.0,1.0,5770.0,0.0,0.0,5120.0,0.0,0.0,10691.75,0.0,0.0,3,10,8.0,1,0.0 +4741,6606,1845.0936995018078,46.0,112,19310.0,56,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37655.6,0.0,18520.0,1,10,3.0,4,2.0 +4742,6610,1706.6292610600226,39.0,111,0.0,42,2.0,2.0,4.0,2.5,1390.0,1390.0,0.0,17920.0,0.0,0.0,61773.95,3290.0,38770.0,1,9,7.0,4,2.0 +4743,6611,2246.6834080728595,58.0,300,8250.0,64,2.0,1.0,2.0,1.5,0.0,0.0,0.0,8940.0,0.0,0.0,46229.25,0.0,30750.0,2,0,0.0,3,2.0 +4744,6612,3127.959070898794,45.0,400,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11899.05,0.0,12300.0,1,0,1.0,1,1.0 +4745,6613,2654.9084188506927,56.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25642.25,0.0,23950.0,2,8,0.0,1,1.0 +4746,6616,2114.627019678855,67.0,111,0.0,42,1.0,0.0,2.0,1.5,0.0,0.0,0.0,25520.0,0.0,0.0,34275.97956764957,0.0,9460.0,1,8,7.0,3,1.0 +4747,6617,958.2164740062973,45.0,111,0.0,56,2.0,1.0,3.0,2.0,0.0,4050.0,0.0,0.0,0.0,0.0,23802.0,1760.0,12290.0,3,9,7.0,2,2.0 +4748,6618,871.769845425475,32.0,112,0.0,42,1.0,1.0,2.0,1.3,0.0,40.0,0.0,0.0,0.0,0.0,24433.6,950.0,18390.0,3,10,2.0,2,1.0 +4749,6619,1544.9336153627378,79.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35390.0,0.0,0.0,33732.05,0.0,0.0,5,4,4.0,1,0.0 +4750,6621,1971.9958668663444,67.0,111,7350.0,77,2.0,1.0,3.0,2.0,0.0,1620.0,0.0,21930.0,0.0,0.0,30456.1,0.0,40.0,1,7,5.0,5,2.0 +4751,6622,1712.4688312544706,84.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32730.0,0.0,0.0,40094.053176258654,0.0,0.0,1,9,7.0,3,0.0 +4752,6623,2910.281550105241,61.0,120,0.0,72,2.0,2.0,4.0,2.5,0.0,0.0,0.0,35890.0,0.0,0.0,60968.85,980.0,30300.0,1,0,0.0,4,2.0 +4753,6625,2541.9663834348153,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,5680.0,0.0,38700.0,44301.3,0.0,0.0,3,6,4.0,3,0.0 +4754,6626,1516.2007899189598,45.0,111,0.0,62,3,3.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,68472.8,2350.0,63440.0,2,6,4.0,4,3.0 +4755,6627,711.026102408628,27.0,111,410.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12100.0,2690.0,6870.0,3,9,7.0,1,1.0 +4756,6628,1844.8824610932502,62.0,400,8020.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28950.0,538.0,0.0,35164.8,0.0,0.0,1,0,0.0,3,0.0 +4757,6629,1987.566566177065,63.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35360.0,206.0,0.0,33799.85,0.0,0.0,1,0,0.0,3,0.0 +4758,6631,2380.5629295353283,39.0,112,0.0,46,2.0,2.0,2.0,1.5,760.0,0.0,0.0,0.0,0.0,0.0,44611.3,0.0,45870.0,3,9,1.0,3,2.0 +4759,6632,2910.0340634317404,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13101.5,0.0,14940.0,3,6,5.0,1,1.0 +4760,6633,3751.396744444791,62.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,19290.0,0.0,0.0,22762.2,0.0,2800.0,1,8,6.0,5,1.0 +4761,6634,4240.617940512734,46.0,111,0.0,85,0.0,0.0,1.0,1.0,10960.0,0.0,0.0,10920.0,0.0,0.0,25156.0,0.0,0.0,3,8,6.0,1,0.0 +4762,6636,1836.4091322388786,75.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25520.0,537.0,0.0,33125.6,0.0,0.0,1,0,0.0,3,0.0 +4763,6637,2180.4498827516304,54.0,111,100.0,46,3,2.0,3.0,2.0,0.0,0.0,0.0,11210.0,0.0,0.0,62337.9,0.0,57630.0,1,4,4.0,4,3.0 +4764,6638,2629.1529130781296,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,5980.0,1850.0,11.0,0.0,11776.0,0.0,0.0,3,9,7.0,1,0.0 +4765,6639,1820.8887833004428,37.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44371.35,0.0,42730.0,2,8,7.0,4,2.0 +4766,6643,2229.635422423376,53.0,300,0.0,62,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34965.05,0.0,31850.0,1,0,0.0,2,1.0 +4767,6644,1704.105520790182,54.0,112,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24133.95,0.0,25100.0,1,8,0.0,3,1.0 +4768,6645,1473.1329669300483,43.0,211,0.0,34,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,60149.9,0.0,55230.0,2,2,3.0,4,2.0 +4769,6646,2210.1125313585553,37.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,3790.0,0.0,0.0,37623.1,0.0,24120.0,2,9,0.0,4,2.0 +4770,6647,2603.635469344217,78.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17879.15,0.0,18430.0,5,10,8.0,1,1.0 +4771,6648,2378.1684872375295,52.0,300,0.0,55,1.0,2.0,4.0,2.5,0.0,0.0,0.0,2320.0,19.0,0.0,32385.75,440.0,30030.0,1,0,0.0,4,1.0 +4772,6650,2161.117913801782,81.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46490.0,0.0,0.0,43905.2,0.0,0.0,1,7,4.0,3,0.0 +4773,6652,2205.638532367614,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31620.0,0.0,0.0,30398.65,0.0,0.0,1,4,4.0,3,0.0 +4774,6653,2127.265524456114,52.0,111,10520.0,63,1.0,1.0,3.0,2.0,0.0,1730.0,0.0,0.0,0.0,0.0,16576.75,0.0,120.0,3,7,5.0,4,1.0 +4775,6656,2614.4756200927113,54.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16860.0,0.0,0.0,32163.15,0.0,18660.0,3,9,7.0,3,1.0 +4776,6657,905.4081668540382,32.0,112,0.0,56,1.0,1.0,2.0,1.3,0.0,4830.0,0.0,0.0,0.0,0.0,9553.75,1310.0,2010.0,3,9,1.0,2,1.0 +4777,6659,3644.0697203122545,61.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35660.0,0.0,0.0,31526.0,0.0,0.0,3,0,0.0,1,0.0 +4778,6661,1589.8595293011965,47.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21382.75,0.0,19010.0,3,8,7.0,2,1.0 +4779,6663,4210.324142149393,61.0,111,0.0,78,0.0,0.0,3.0,1.8,810.0,0.0,0.0,5570.0,0.0,0.0,10402.0,0.0,0.0,3,9,7.0,4,0.0 +4780,6665,2156.84149243524,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13930.0,0.0,0.0,13679.75,0.0,0.0,3,8,0.0,1,0.0 +4781,6666,1882.5430675699424,74.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14290.0,0.0,0.0,12990.0,0.0,0.0,3,1,3.0,1,0.0 +4782,6667,1468.868030513135,55.0,111,1760.0,63,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38612.6,2160.0,35520.0,1,6,5.0,4,3.0 +4783,6668,1748.7508968046775,51.0,212,0.0,67,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,950.0,0.0,48269.5,0.0,49270.0,1,2,0.0,4,2.0 +4784,6669,2429.112949698583,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6806.0,0.0,0.0,3,9,7.0,1,0.0 +4785,6672,2838.1569183681454,79.0,120,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43350.0,0.0,0.0,38499.4,0.0,0.0,1,0,0.0,1,0.0 +4786,6673,1732.8365740360632,57.0,300,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,69080.06868234818,0.0,79110.0,1,0,2.0,3,2.0 +4787,6675,1989.850751183481,55.0,111,10620.0,48,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50461.4,0.0,36170.0,2,9,7.0,4,2.0 +4788,6676,1422.97656194262,30.0,111,2450.0,21,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19870.7,0.0,2570.0,2,10,8.0,4,1.0 +4789,6677,5182.248819470193,22.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17342.05,1940.0,12540.0,3,10,8.0,1,1.0 +4790,6678,1849.1786013065055,36.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,19.0,0.0,27520.05,0.0,28310.0,2,7,6.0,1,1.0 +4791,6679,2032.5664876808496,82.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,33190.0,476.0,0.0,33091.65,0.0,0.0,1,9,7.0,3,1.0 +4792,6680,2253.2746338709217,33.0,300,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34889.7,950.0,24270.0,3,0,0.0,4,1.0 +4793,6681,3092.07317262734,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15640.0,0.0,0.0,15663.0,0.0,0.0,3,9,7.0,1,0.0 +4794,6682,2125.2671481378748,61.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36940.0,70.0,0.0,34791.39635898669,0.0,0.0,1,0,0.0,3,0.0 +4795,6683,1880.1468482333541,33.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,61825.0,0.0,71860.0,2,9,7.0,3,2.0 +4796,6684,1699.7822700950114,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29760.0,0.0,0.0,29450.95,0.0,0.0,1,4,4.0,3,0.0 +4797,6685,2338.1255851682745,74.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16860.0,0.0,0.0,16520.05,0.0,0.0,1,0,3.0,1,0.0 +4798,6686,2492.214348984855,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23430.0,0.0,0.0,24347.0,0.0,0.0,1,6,4.0,3,0.0 +4799,6688,4225.0669570741975,34.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,60023.8,0.0,64500.0,2,9,1.0,4,2.0 +4800,6689,3092.791669758706,49.0,111,4840.0,65,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25173.0,0.0,21080.0,3,9,7.0,3,2.0 +4801,6690,2315.8459425771384,90.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40690.0,150.0,0.0,35868.35,0.0,0.0,1,1,3.0,3,0.0 +4802,6691,3189.0402506525875,38.0,111,5100.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31010.25,0.0,29180.0,3,6,5.0,3,2.0 +4803,6692,3359.6535082816335,57.0,112,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22520.0,0.0,0.0,48676.05,0.0,29520.0,1,8,0.0,3,1.0 +4804,6693,4114.288924260069,57.0,111,3700.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,480.0,185.0,0.0,31668.8,170.0,11680.0,1,9,7.0,2,2.0 +4805,6694,4088.943592609891,73.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30670.0,0.0,0.0,29858.4,0.0,0.0,3,9,7.0,3,0.0 +4806,6695,1557.8865301252954,52.0,112,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56509.25,0.0,48050.0,2,8,2.0,3,2.0 +4807,6696,3717.172996843693,51.0,111,850.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46462.75,0.0,48470.0,2,10,8.0,4,2.0 +4808,6698,3097.9660250514794,56.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18484.0,3330.0,14830.0,3,9,7.0,2,1.0 +4809,6700,2070.292902167709,42.0,300,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,177.0,0.0,47642.85,0.0,49200.0,2,0,0.0,3,2.0 +4810,6701,2656.747449172824,78.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,68610.0,0.0,0.0,54224.4,0.0,0.0,1,10,8.0,1,0.0 +4811,6702,2073.9441713288124,77.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41910.0,0.0,0.0,38247.35,0.0,0.0,1,10,2.0,3,0.0 +4812,6703,2317.1084833151394,87.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27180.0,0.0,0.0,26815.45,0.0,0.0,3,8,7.0,3,0.0 +4813,6705,2819.1047624206085,49.0,111,3750.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12453.6,460.0,8100.0,3,5,4.0,2,1.0 +4814,6706,1365.3383174923865,55.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19278.25,0.0,20960.0,2,6,4.0,1,1.0 +4815,6707,538.4063989475268,48.0,111,0.0,48,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,61276.65,0.0,61990.0,2,8,6.0,2,1.0 +4816,6708,1728.6262030375808,77.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25030.0,0.0,0.0,23114.4,0.0,0.0,3,9,2.0,1,0.0 +4817,6709,1725.6808301644724,62.0,111,3240.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24360.0,0.0,0.0,26920.2,0.0,0.0,2,8,7.0,3,0.0 +4818,6710,836.5516161822864,37.0,111,4550.0,21,1.0,0.0,5.0,2.6,0.0,0.0,0.0,5380.0,0.0,0.0,42779.6,0.0,9010.0,3,4,4.0,2,1.0 +4819,6711,4710.929228257046,26.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33623.0,0.0,33050.0,3,9,7.0,1,1.0 +4820,6712,2544.9069105058497,45.0,111,25310.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,34.0,0.0,109112.85,0.0,99160.0,2,10,8.0,4,2.0 +4821,6713,2822.1500547023625,34.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37271.85,0.0,23800.0,2,9,7.0,3,2.0 +4822,6714,1761.484013759087,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47070.0,0.0,0.0,47202.55,0.0,0.0,1,9,7.0,3,0.0 +4823,6716,2119.1708056970574,76.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29250.0,0.0,0.0,27936.8,0.0,0.0,1,8,2.0,3,0.0 +4824,6717,1913.4715131119551,68.0,212,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29030.0,0.0,0.0,28059.8,0.0,0.0,2,1,0.0,3,0.0 +4825,6718,1632.9128921408167,66.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25140.0,0.0,0.0,34092.52676638519,0.0,0.0,1,9,1.0,3,0.0 +4826,6719,2945.575200818917,59.0,111,0.0,69,1.0,0.0,2.0,1.5,10960.0,0.0,0.0,0.0,0.0,0.0,12720.0,0.0,1760.0,3,5,4.0,3,1.0 +4827,6720,2037.0903257918555,62.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27180.0,4729.0,0.0,58509.9,0.0,31340.0,1,6,0.0,3,1.0 +4828,6722,4407.95209285458,32.0,111,5450.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34385.2,0.0,24420.0,3,9,7.0,4,2.0 +4829,6723,386.5019312674565,41.0,300,14340.0,46,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18778.7,0.0,6400.0,2,0,0.0,2,1.0 +4830,6724,2274.785943951234,91.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20220.0,0.0,0.0,19122.15,0.0,0.0,1,9,7.0,1,0.0 +4831,6725,2454.108803870155,62.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10270.0,0.0,0.0,17306.25,0.0,8600.0,1,8,1.0,1,1.0 +4832,6726,1594.2888370340713,38.0,111,5430.0,52,3,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,25560.55,510.0,13300.0,3,9,7.0,4,3.0 +4833,6728,2469.6095924742594,57.0,111,0.0,37,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,739.0,0.0,70185.0,0.0,69540.0,1,10,8.0,4,2.0 +4834,6729,2439.1619707125606,56.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,160953.291915963,0.0,304530.0,1,10,8.0,3,2.0 +4835,6731,1531.993451502259,67.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,14980.0,0.0,0.0,19297.7,2680.0,1860.0,1,10,0.0,1,1.0 +4836,6734,3700.4954411848403,81.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29570.0,0.0,0.0,29048.6,0.0,0.0,5,0,0.0,3,0.0 +4837,6736,2647.786195820722,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23760.0,0.0,0.0,21700.4,0.0,0.0,3,8,7.0,1,0.0 +4838,6737,2722.739288237872,27.0,111,5120.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26489.0,140.0,19650.0,3,9,7.0,3,2.0 +4839,6738,1932.2504838307061,39.0,112,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,57.0,0.0,51300.4,0.0,55780.0,2,7,0.0,3,2.0 +4840,6741,5805.262613571103,26.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30340.0,0.0,19870.0,3,10,8.0,3,2.0 +4841,6743,2887.4963619438167,32.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17688.5,910.0,13620.0,3,9,7.0,1,1.0 +4842,6744,2119.9712340343413,68.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36970.0,0.0,0.0,35518.5,0.0,0.0,1,0,0.0,3,0.0 +4843,6746,5193.822567191304,89.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20350.0,0.0,0.0,19163.0,0.0,0.0,1,10,8.0,1,0.0 +4844,6747,1842.7103917135387,41.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,683.0,0.0,28432.05,0.0,27150.0,2,8,7.0,2,1.0 +4845,6748,2257.790563125754,60.0,111,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43079.5,0.0,0.0,1,9,7.0,3,1.0 +4846,6749,2066.4554267329886,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33250.0,26.0,0.0,33917.25,0.0,0.0,1,7,4.0,3,0.0 +4847,6750,1925.5667504749224,26.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26385.95,0.0,29410.0,3,7,5.0,1,1.0 +4848,6751,1688.57391526598,55.0,300,6150.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31183.0,0.0,26340.0,2,0,0.0,3,2.0 +4849,6752,1673.5047863208554,55.0,111,0.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,63588.2,0.0,55360.0,1,8,7.0,4,3.0 +4850,6753,4511.614120709666,32.0,111,10590.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20536.65,0.0,1750.0,3,10,8.0,1,1.0 +4851,6755,1757.5500260677595,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33220.0,0.0,0.0,32760.45,0.0,0.0,3,4,4.0,3,0.0 +4852,6757,1395.6026651264137,55.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1447.8,0.0,0.0,3,4,3.0,1,1.0 +4853,6759,2957.975476780182,20.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18323.05,2790.0,10570.0,3,8,7.0,1,1.0 +4854,6760,1349.3846497228797,33.0,120,4510.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,14900.4,320.0,5870.0,3,0,1.0,2,1.0 +4855,6761,865.6774070530261,32.0,111,0.0,47,3,3.0,4.0,2.3,0.0,0.0,0.0,9210.0,0.0,0.0,45495.4,700.0,29590.0,1,8,7.0,5,3.0 +4856,6762,1186.2795108483936,35.0,211,8850.0,54,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27065.8,750.0,1690.0,3,2,3.0,2,1.0 +4857,6763,2648.818704385822,34.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48049.35,0.0,34560.0,2,6,4.0,4,2.0 +4858,6764,1483.6268808108978,58.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32660.0,0.0,0.0,44982.0063525173,0.0,21040.0,1,9,7.0,3,1.0 +4859,6765,2587.42963658124,38.0,400,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,14.0,0.0,41714.55,0.0,39680.0,1,0,0.0,4,2.0 +4860,6766,3542.66575939942,84.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24400.0,0.0,0.0,23078.02304446762,0.0,0.0,1,8,6.0,1,0.0 +4861,6767,1644.2938439728066,47.0,112,0.0,22,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,1995.0,0.0,64890.95,0.0,63170.0,1,8,0.0,4,2.0 +4862,6768,3300.5880517442497,61.0,111,0.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,62862.5,0.0,67660.0,5,10,8.0,4,3.0 +4863,6770,2230.8900139690404,46.0,300,0.0,62,1.0,1.0,2.0,1.5,5390.0,0.0,0.0,0.0,0.0,0.0,24415.2,0.0,19500.0,1,0,0.0,3,1.0 +4864,6771,1925.124937806672,61.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,1450.0,0.0,0.0,28646.1,0.0,27860.0,2,7,0.0,3,2.0 +4865,6774,901.36914990477,76.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21950.0,0.0,0.0,21950.0,0.0,0.0,3,4,3.0,3,0.0 +4866,6775,2153.4539686712483,41.0,111,7790.0,65,1.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,19026.25,0.0,3580.0,3,7,5.0,4,1.0 +4867,6778,1912.2948476681129,84.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19730.0,0.0,0.0,19756.0,0.0,0.0,1,0,1.0,3,0.0 +4868,6780,2983.3799201062975,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22850.0,0.0,0.0,21600.0,0.0,0.0,2,10,8.0,1,0.0 +4869,6782,2683.5310968844897,43.0,111,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26807.15,2230.0,12160.0,3,9,7.0,4,1.0 +4870,6783,2254.2658131743906,43.0,211,5120.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31519.1,0.0,28590.0,3,1,2.0,3,2.0 +4871,6784,2423.6628839436435,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26310.0,526.0,0.0,31663.7354508391,0.0,0.0,1,9,7.0,1,0.0 +4872,6785,2260.3545781256166,33.0,111,0.0,22,1.0,1.0,5.0,2.4,0.0,1100.0,0.0,0.0,0.0,0.0,16084.0,2620.0,0.0,3,8,6.0,4,1.0 +4873,6789,1961.191519595146,46.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,155.0,0.0,40146.05,0.0,42560.0,2,8,7.0,4,2.0 +4874,6792,2209.24512629641,37.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,79930.15,0.0,30790.0,1,9,7.0,4,2.0 +4875,6793,1404.5965321673784,62.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16100.0,0.0,0.0,40782.4,0.0,27630.0,1,10,3.0,1,0.0 +4876,6794,3248.9479232935905,89.0,400,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13730.0,0.0,0.0,22705.575,0.0,4300.0,1,0,0.0,2,1.0 +4877,6796,1262.9128263347181,74.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26620.0,0.0,0.0,23886.4,0.0,0.0,1,6,5.0,3,0.0 +4878,6797,1849.53118798985,32.0,112,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24365.45,0.0,24100.0,3,8,1.0,4,2.0 +4879,6798,2668.0095508814907,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,26.0,0.0,37754.2,0.0,41610.0,3,10,8.0,1,1.0 +4880,6800,1225.4321377900453,56.0,111,7700.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48018.6,1300.0,38720.0,3,8,7.0,5,2.0 +4881,6801,1905.286948715463,69.0,111,5560.0,86,1.0,1.0,3.0,2.0,4400.0,0.0,0.0,15880.0,0.0,0.0,36809.75,0.0,11350.0,1,9,7.0,2,1.0 +4882,6802,3497.5689213170285,55.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20885.55,0.0,21130.0,3,10,4.0,1,1.0 +4883,6803,2113.9160806883647,38.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,2730.0,0.0,0.0,44233.8,0.0,45280.0,3,9,7.0,3,2.0 +4884,6804,4836.349453414511,73.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30910.0,0.0,0.0,31885.45,0.0,0.0,1,1,2.0,3,0.0 +4885,6805,2763.433139697187,83.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16120.0,0.0,0.0,16141.0,0.0,0.0,5,0,0.0,1,0.0 +4886,6806,2313.7338612684225,30.0,112,2230.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37998.1,0.0,37560.0,3,8,0.0,3,2.0 +4887,6807,2317.2707832684673,69.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25830.0,0.0,0.0,33848.05,0.0,9310.0,3,6,4.0,3,1.0 +4888,6809,2596.82743429258,37.0,211,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42602.4,0.0,36090.0,2,1,3.0,4,2.0 +4889,6810,3921.969127081391,34.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29865.55,0.0,0.0,5,8,0.0,1,1.0 +4890,6812,1960.9663233274143,49.0,111,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,19.0,0.0,22955.95,0.0,23580.0,2,6,4.0,4,2.0 +4891,6813,1836.9797172352542,67.0,112,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,44720.0,0.0,0.0,52113.5,0.0,3960.0,2,8,0.0,3,1.0 +4892,6814,3115.42978898423,51.0,300,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12794.0,0.0,0.0,3,0,1.0,1,0.0 +4893,6818,2087.0750491866593,32.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43241.0,0.0,40260.0,2,7,1.0,4,2.0 +4894,6819,2087.2830246002377,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11240.0,0.0,0.0,12157.0,0.0,0.0,3,9,7.0,1,0.0 +4895,6821,2332.6527267271576,66.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,1970.0,7560.0,0.0,0.0,11918.0,0.0,0.0,3,8,7.0,1,0.0 +4896,6823,3059.509370046043,30.0,112,0.0,85,0.0,0.0,5.0,2.2,0.0,2520.0,0.0,0.0,0.0,0.0,22643.0,1350.0,0.0,3,6,0.0,5,0.0 +4897,6824,1646.93016871234,58.0,112,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48182.05,0.0,54480.0,2,8,0.0,3,2.0 +4898,6826,680.8516529261054,52.0,111,1350.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37522.95,0.0,30200.0,3,8,7.0,2,2.0 +4899,6827,3277.1462542576423,43.0,111,9390.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14166.95,0.0,4890.0,3,10,8.0,1,1.0 +4900,6828,4473.369291778418,62.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8284.0,0.0,0.0,3,9,7.0,1,0.0 +4901,6829,1026.3609677222025,47.0,111,0.0,45,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31838.15,0.0,29030.0,3,10,8.0,2,1.0 +4902,6830,342.6473578454124,41.0,111,0.0,67,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22867.0,1440.0,12800.0,3,6,5.0,2,1.0 +4903,6832,1584.6913709582248,75.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67110.0,0.0,0.0,58791.9,0.0,0.0,1,1,2.0,3,0.0 +4904,6837,1680.9015864852447,51.0,400,0.0,11,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22536.2,0.0,14280.0,1,0,0.0,4,2.0 +4905,6838,2461.6276037446532,39.0,111,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,1428.0,0.0,43434.7,0.0,40970.0,3,8,7.0,4,2.0 +4906,6841,760.5743257148099,40.0,111,0.0,68,1.0,0.0,2.0,1.5,0.0,5730.0,0.0,0.0,0.0,0.0,9882.0,0.0,0.0,3,7,5.0,2,1.0 +4907,6842,2126.2580608663643,62.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28360.0,0.0,0.0,30720.85,0.0,0.0,1,0,0.0,1,0.0 +4908,6845,2669.428467767206,82.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31960.0,0.0,0.0,29900.05,0.0,0.0,1,8,1.0,3,0.0 +4909,6847,1748.748120320905,45.0,111,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,106803.95,0.0,120800.0,2,10,8.0,4,2.0 +4910,6849,1421.7482547959326,65.0,112,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20850.0,0.0,0.0,63558.25,0.0,13390.0,3,9,2.0,3,1.0 +4911,6853,2585.042515028971,35.0,120,1400.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47902.75,0.0,47160.0,3,0,0.0,3,2.0 +4912,6855,666.3128035349355,42.0,111,0.0,67,1.0,0.0,3.0,1.8,0.0,3270.0,0.0,0.0,0.0,0.0,13557.95,280.0,2190.0,3,9,7.0,2,1.0 +4913,6856,2724.798488896657,55.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23282.55,0.0,24760.0,3,9,7.0,1,1.0 +4914,6857,2074.782973918819,59.0,120,3550.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34583.55,0.0,10660.0,1,0,0.0,3,2.0 +4915,6858,1090.963113335398,42.0,111,0.0,68,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28875.05,3870.0,22910.0,3,5,4.0,4,2.0 +4916,6861,257.12613699063655,43.0,112,1210.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,4640.0,343.0,0.0,16478.0,0.0,970.0,2,8,0.0,2,1.0 +4917,6862,2311.4923453783163,35.0,111,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35837.45,0.0,30460.0,2,7,6.0,4,2.0 +4918,6863,3408.041886633944,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,6210.0,3360.0,0.0,0.0,9167.3,0.0,0.0,1,9,7.0,1,0.0 +4919,6864,1319.1843664329203,34.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,43323.8,0.0,45360.0,2,9,7.0,2,1.0 +4920,6865,2985.419838570625,24.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15108.6,0.0,15670.0,3,9,7.0,1,1.0 +4921,6869,3547.197840706989,63.0,111,2330.0,78,2.0,1.0,3.0,2.0,0.0,0.0,0.0,16090.0,0.0,0.0,25880.0,0.0,7460.0,3,9,7.0,4,2.0 +4922,6870,4419.820946590842,67.0,112,0.0,56,1.0,1.0,4.0,2.3,0.0,0.0,0.0,30430.0,0.0,0.0,37784.4,0.0,5730.0,1,9,0.0,5,1.0 +4923,6871,2409.042391140187,45.0,111,3270.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38325.55,0.0,35930.0,2,4,3.0,4,2.0 +4924,6872,4139.695418849621,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1430.0,8160.0,0.0,0.0,11750.0,0.0,0.0,3,9,7.0,1,0.0 +4925,6873,2910.674367591353,86.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20350.0,0.0,0.0,22865.8,0.0,0.0,1,9,7.0,3,0.0 +4926,6874,2240.131142799589,83.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22240.0,0.0,0.0,22209.7,0.0,0.0,1,10,0.0,1,0.0 +4927,6875,1436.0587737987644,49.0,300,0.0,62,2.0,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,54093.5,0.0,56710.0,1,0,1.0,4,2.0 +4928,6876,4762.574674743014,40.0,111,0.0,21,1.0,0.0,1.0,1.0,0.0,5430.0,0.0,0.0,0.0,0.0,7759.85,480.0,390.0,2,10,8.0,1,1.0 +4929,6878,2049.380740052351,48.0,112,5520.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,81276.38781539202,0.0,14840.0,1,9,0.0,4,2.0 +4930,6880,1664.8033312584096,53.0,221,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,991.0,0.0,35960.8,0.0,38170.0,3,1,3.0,2,1.0 +4931,6881,4605.562583299266,46.0,221,10280.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45535.210842216315,0.0,19920.0,2,1,2.0,4,2.0 +4932,6883,2546.147153486646,53.0,111,5950.0,62,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28606.2,0.0,24930.0,1,9,7.0,4,2.0 +4933,6885,2278.317166732006,39.0,111,0.0,63,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,43844.0,0.0,27940.0,3,9,7.0,4,2.0 +4934,6886,808.3293306361077,36.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,34020.0,0.0,0.0,54089.15,0.0,26760.0,1,9,7.0,2,1.0 +4935,6888,1114.5971024297537,26.0,111,4390.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17717.5,850.0,8060.0,3,9,7.0,2,1.0 +4936,6890,2378.298084830863,66.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40300.0,475.0,0.0,42920.6,0.0,0.0,1,6,4.0,3,0.0 +4937,6891,1869.6883427425769,33.0,111,0.0,63,1.0,0.0,2.0,1.3,0.0,6020.0,0.0,0.0,0.0,0.0,10784.05,0.0,0.0,3,9,7.0,2,1.0 +4938,6893,3885.1903402861853,61.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14830.0,0.0,0.0,14754.95,0.0,0.0,1,8,0.0,1,0.0 +4939,6895,2924.941275088965,44.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46561.55,0.0,47060.0,1,7,5.0,4,2.0 +4940,6898,2118.452830507114,60.0,211,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24220.0,0.0,0.0,76125.4,0.0,57200.0,1,1,2.0,3,1.0 +4941,6899,2937.6012711111075,58.0,111,3320.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54780.0,0.0,0.0,47768.1,0.0,0.0,1,8,7.0,3,0.0 +4942,6900,1704.2996997233092,54.0,221,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18958.65,0.0,19140.0,1,1,2.0,1,1.0 +4943,6901,1359.2715974310433,75.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21300.0,0.0,0.0,25751.7,0.0,0.0,1,0,1.0,3,0.0 +4944,6902,3251.6797066003282,28.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50903.8,0.0,56580.0,3,8,2.0,3,2.0 +4945,6903,2522.346964116989,50.0,111,4390.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14879.65,0.0,10660.0,3,9,7.0,1,1.0 +4946,6904,348.65122731926044,45.0,112,0.0,37,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,36241.5,0.0,28970.0,2,10,3.0,2,1.0 +4947,6905,2107.6511151472564,35.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,39.0,0.0,76600.2,0.0,66960.0,1,7,1.0,4,2.0 +4948,6907,1594.181366298791,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34930.0,0.0,0.0,32832.8,0.0,0.0,1,8,7.0,3,0.0 +4949,6908,2906.035723200357,75.0,112,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,19110.0,0.0,0.0,30035.75,0.0,14530.0,3,10,4.0,3,1.0 +4950,6909,2093.6813247862983,39.0,300,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36238.85,0.0,37080.0,1,0,0.0,4,2.0 +4951,6913,729.463281979903,31.0,111,10440.0,55,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,14244.45,0.0,70.0,3,7,5.0,2,1.0 +4952,6914,3369.2715860371036,40.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,97849.05,0.0,103690.0,3,8,7.0,4,2.0 +4953,6916,2098.5622690886476,45.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34396.55,0.0,40520.0,3,9,2.0,1,1.0 +4954,6917,2937.0700896054086,46.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47410.03401441168,0.0,42300.0,2,7,6.0,4,2.0 +4955,6918,1129.2167075957004,29.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26255.45,280.0,24600.0,3,10,8.0,2,1.0 +4956,6920,2395.4421443482834,45.0,400,9370.0,65,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,22308.45,0.0,12370.0,2,0,0.0,4,2.0 +4957,6921,4211.629567456738,24.0,111,0.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13592.6,0.0,13970.0,3,7,6.0,3,2.0 +4958,6922,3745.3380987070964,68.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18450.0,63.0,0.0,20584.25,0.0,0.0,1,9,7.0,1,0.0 +4959,6923,1422.7602273719026,74.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35050.0,0.0,0.0,35610.5,0.0,0.0,1,6,0.0,3,0.0 +4960,6924,1728.8728108665655,52.0,111,0.0,38,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,78080.95,0.0,87910.0,1,9,7.0,4,3.0 +4961,6925,1769.5450798516113,69.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,883.55,0.0,0.0,3,8,7.0,1,0.0 +4962,6926,1786.0484680535365,52.0,211,0.0,85,2.0,1.0,3.0,2.0,0.0,0.0,0.0,22470.0,0.0,0.0,35743.05,0.0,16010.0,1,2,3.0,4,2.0 +4963,6927,814.805059252312,51.0,111,2350.0,68,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,17984.65,2680.0,8650.0,3,10,8.0,2,1.0 +4964,6928,2704.253692418186,40.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,91917.3,0.0,103460.0,2,10,2.0,4,2.0 +4965,6929,301.9952987510888,40.0,112,9810.0,68,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41131.25,1910.0,22080.0,3,5,0.0,2,1.0 +4966,6930,1521.2839294205262,55.0,400,1750.0,55,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20832.35,0.0,19200.0,3,0,1.0,2,2.0 +4967,6931,1517.6271769743478,64.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20980.0,0.0,0.0,19581.85,0.0,0.0,1,6,0.0,1,0.0 +4968,6936,2235.804390802601,63.0,400,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,72347.7,0.0,0.0,1,0,0.0,1,1.0 +4969,6937,3055.6235628255854,33.0,112,3160.0,63,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29085.6,0.0,21170.0,3,9,0.0,4,1.0 +4970,6938,1313.2457188090577,72.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35730.0,0.0,0.0,34556.4,0.0,0.0,1,8,2.0,3,0.0 +4971,6940,3430.739106679102,36.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41624.2,0.0,42980.0,2,9,7.0,4,2.0 +4972,6941,3500.6102836891905,64.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12960.0,0.0,0.0,12979.0,0.0,0.0,3,1,3.0,1,0.0 +4973,6943,3737.2745152532966,34.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,70730.492796327,0.0,13550.0,2,8,7.0,4,2.0 +4974,6946,3685.4028479073986,32.0,111,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29838.05,0.0,13010.0,3,9,7.0,4,2.0 +4975,6947,739.2998188761431,57.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,553.0,0.0,39888.0,0.0,42670.0,1,4,3.0,3,2.0 +4976,6948,1129.176185421246,34.0,111,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,59916.3,0.0,56550.0,2,10,8.0,4,2.0 +4977,6949,1626.2915009632295,51.0,111,0.0,48,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,57860.15,0.0,63460.0,1,9,7.0,4,4.0 +4978,6950,1868.462381450083,72.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19520.0,0.0,0.0,18607.75,0.0,0.0,1,3,4.0,1,0.0 +4979,6951,2918.7413842041387,84.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9510.0,0.0,0.0,9510.0,0.0,0.0,1,0,0.0,1,0.0 +4980,6953,1119.487214327565,44.0,111,160.0,21,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,8530.05,0.0,0.0,3,7,5.0,2,1.0 +4981,6954,1139.7709582944017,59.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45192.6,0.0,49090.0,1,9,7.0,3,2.0 +4982,6955,817.6768142105068,46.0,112,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,26175.75,0.0,20910.0,2,8,2.0,2,1.0 +4983,6956,2054.5865655327407,39.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,3560.0,0.0,0.0,0.0,0.0,10633.55,490.0,1570.0,3,8,6.0,3,1.0 +4984,6958,2436.158078892215,49.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36526.5,0.0,43540.0,1,10,8.0,1,1.0 +4985,6959,2137.791376643265,64.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37170.0,0.0,0.0,40122.95,0.0,0.0,1,0,0.0,3,0.0 +4986,6962,2314.847308037229,46.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32017.7,0.0,33290.0,2,6,4.0,3,2.0 +4987,6964,2028.745894120418,52.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15600.4,0.0,14480.0,3,10,3.0,1,1.0 +4988,6965,1497.0626528584673,56.0,112,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20690.0,0.0,0.0,42784.1,0.0,29390.0,1,9,2.0,3,1.0 +4989,6966,2198.1225215872896,69.0,111,0.0,31,2.0,0.0,2.0,1.5,0.0,0.0,0.0,45280.0,0.0,0.0,46787.95,0.0,9790.0,1,9,7.0,3,2.0 +4990,6967,3153.8060357005456,78.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,67400.0,0.0,0.0,51681.81059831116,0.0,0.0,3,10,8.0,1,1.0 +4991,6968,783.7450982643284,47.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39502.05,0.0,20770.0,2,8,6.0,2,1.0 +4992,6969,2160.311762199346,59.0,112,5700.0,74,1.0,0.0,2.0,1.5,10980.0,0.0,0.0,0.0,0.0,0.0,20240.0,0.0,0.0,3,9,3.0,3,1.0 +4993,6970,1022.077687704827,43.0,211,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43081.25,0.0,44480.0,2,4,3.0,4,2.0 +4994,6971,2038.015948779636,78.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42330.0,353.0,0.0,43135.11335924907,0.0,0.0,1,0,0.0,3,0.0 +4995,6972,2775.7112860362145,43.0,111,0.0,31,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,77049.828,0.0,71550.0,2,10,8.0,4,2.0 +4996,6975,1697.170630205101,64.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23790.0,1448.0,0.0,26130.99282621631,0.0,0.0,1,0,0.0,3,0.0 +4997,6976,1826.010524474313,69.0,120,2810.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,27670.0,0.0,0.0,32415.05,0.0,210.0,2,0,0.0,3,1.0 +4998,6977,2438.922459543044,47.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,29.0,0.0,52062.1,0.0,46330.0,2,8,0.0,4,2.0 +4999,6978,2773.049297612746,79.0,300,0.0,71,0.0,0.0,2.0,1.5,9680.0,0.0,0.0,16480.0,0.0,0.0,25037.45,0.0,0.0,1,0,0.0,2,0.0 +5000,6979,4125.908940371881,36.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21495.35,0.0,24080.0,2,7,5.0,1,1.0 +5001,6980,1952.0759108658538,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47310.0,0.0,0.0,43425.33747293927,0.0,0.0,1,9,7.0,3,0.0 +5002,6982,1681.9087828329095,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56790.0,0.0,0.0,49260.681209408904,0.0,0.0,1,9,7.0,3,0.0 +5003,6984,1659.7220423146634,32.0,111,0.0,52,2.0,2.0,6.0,2.7,0.0,0.0,0.0,180.0,0.0,0.0,44042.5,0.0,40010.0,3,9,7.0,4,2.0 +5004,6985,2042.4573687954348,48.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,68236.85,0.0,71770.0,1,10,0.0,4,2.0 +5005,6986,2161.4336193413988,75.0,112,0.0,45,1.0,0.0,2.0,1.5,0.0,0.0,0.0,47390.0,0.0,0.0,42459.45,0.0,0.0,1,10,2.0,3,1.0 +5006,6987,4184.529593214284,47.0,111,6840.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17117.6,0.0,6220.0,1,9,7.0,1,1.0 +5007,6988,2641.103802601873,21.0,300,2110.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,67.0,0.0,30720.95,510.0,28390.0,2,0,0.0,3,2.0 +5008,6989,3563.387463193845,45.0,111,5580.0,42,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54519.95,0.0,50790.0,2,10,8.0,4,2.0 +5009,6990,2415.630583638249,45.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17321.7,350.0,17930.0,1,9,7.0,1,1.0 +5010,6993,870.736155697816,38.0,111,0.0,55,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,50051.8,0.0,42270.0,2,4,3.0,4,2.0 +5011,6995,596.0859895408795,38.0,111,0.0,64,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23906.55,0.0,14900.0,3,7,5.0,2,1.0 +5012,6996,1563.1043769320686,51.0,300,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46094.0,0.0,49150.0,1,0,0.0,3,2.0 +5013,7001,3142.982561454583,28.0,112,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,61524.5,0.0,37840.0,2,8,0.0,4,2.0 +5014,7002,2804.5908247336265,23.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7635.25,0.0,7840.0,3,8,7.0,1,1.0 +5015,7003,2131.6998325264312,60.0,111,0.0,78,0.0,0.0,1.0,1.0,5530.0,0.0,0.0,5490.0,0.0,0.0,13617.0,0.0,0.0,3,6,4.0,1,0.0 +5016,7006,447.84584969006136,43.0,300,0.0,46,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35406.1,0.0,24420.0,3,0,0.0,2,1.0 +5017,7007,1297.5539092122258,35.0,111,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33397.1,0.0,32430.0,3,7,5.0,4,2.0 +5018,7008,1589.0428972115496,59.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27445.95,0.0,22340.0,3,9,7.0,4,2.0 +5019,7009,2605.4354068611347,24.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,1250.0,0.0,0.0,0.0,0.0,2683.0,0.0,0.0,3,10,8.0,2,1.0 +5020,7010,2699.5634893139554,36.0,221,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,80301.8,0.0,78750.0,2,1,2.0,4,2.0 +5021,7011,3416.2589120212783,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24900.0,0.0,0.0,22849.1,0.0,0.0,3,5,4.0,1,0.0 +5022,7012,853.071056771178,39.0,111,5950.0,54,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,11782.65,0.0,0.0,3,9,7.0,2,1.0 +5023,7016,1681.9167732944295,63.0,111,0.0,86,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24160.0,0.0,0.0,34488.7,0.0,12470.0,3,9,7.0,2,1.0 +5024,7018,1895.543387746818,56.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57354.25,0.0,64360.0,2,7,5.0,3,2.0 +5025,7019,452.0417721962555,51.0,111,0.0,37,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,673.0,0.0,70731.95,0.0,87470.0,1,9,7.0,4,2.0 +5026,7020,1381.4887629062532,35.0,111,4340.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15481.0,0.0,10660.0,3,8,7.0,1,1.0 +5027,7021,2315.7504274188195,60.0,111,0.0,68,1.0,1.0,2.0,1.5,6320.0,0.0,0.0,11090.0,0.0,0.0,26378.35,0.0,9250.0,3,8,7.0,3,1.0 +5028,7022,648.8571044035776,33.0,211,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,110.0,0.0,24751.0,0.0,20530.0,3,2,3.0,2,1.0 +5029,7023,2170.602405559652,73.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17760.0,135.0,0.0,17564.15,0.0,0.0,3,7,5.0,1,0.0 +5030,7025,4166.004908253946,24.0,300,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16386.4,1270.0,13870.0,3,0,0.0,1,1.0 +5031,7026,2034.4243299226862,54.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,6.0,0.0,46249.1,0.0,42260.0,1,8,7.0,3,2.0 +5032,7030,1704.3977691023772,58.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22430.0,23.0,0.0,87803.12913570245,0.0,80100.0,3,6,5.0,3,1.0 +5033,7031,4222.300743060539,77.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17220.0,0.0,0.0,15749.4,0.0,0.0,1,9,7.0,1,0.0 +5034,7034,1744.5425648969913,55.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42979.95,0.0,46740.0,1,6,0.0,3,2.0 +5035,7035,2133.5374728591137,43.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,4549.0,0.0,0.0,3,9,7.0,2,0.0 +5036,7038,2289.7939192526837,60.0,111,0.0,65,3,3.0,3.0,2.0,0.0,0.0,0.0,8890.0,0.0,0.0,60197.65,0.0,63710.0,2,10,8.0,4,3.0 +5037,7039,2139.341543042562,65.0,111,6360.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53720.0,0.0,0.0,53795.8,0.0,0.0,1,6,4.0,3,0.0 +5038,7040,1664.5613652210059,42.0,300,0.0,52,1.0,1.0,7.0,3.0,0.0,0.0,0.0,7590.0,0.0,0.0,47910.0,0.0,24170.0,3,0,0.0,4,1.0 +5039,7041,1890.6667577827861,49.0,400,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32886.45,0.0,33600.0,1,0,0.0,4,2.0 +5040,7042,2447.467307396306,68.0,300,0.0,78,0.0,0.0,2.0,1.5,5660.0,0.0,0.0,13220.0,0.0,0.0,20320.0,0.0,0.0,3,0,0.0,3,0.0 +5041,7043,2585.756864918838,79.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17960.0,0.0,0.0,17504.2,0.0,0.0,1,0,0.0,1,0.0 +5042,7044,2216.115863542023,52.0,111,0.0,47,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40186.45,0.0,40590.0,3,10,8.0,2,2.0 +5043,7045,2349.6830268873828,41.0,112,0.0,67,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,49065.8,0.0,41170.0,3,10,4.0,4,2.0 +5044,7046,844.3655478841757,39.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33032.0,880.0,27720.0,3,1,2.0,4,2.0 +5045,7049,4965.9763220304585,66.0,111,0.0,77,1.0,0.0,2.0,1.5,9720.0,0.0,0.0,19170.0,0.0,0.0,34344.05,0.0,1670.0,3,10,8.0,2,1.0 +5046,7050,2976.603387329227,58.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16475.65,2520.0,12600.0,3,9,7.0,1,1.0 +5047,7053,553.4495757457566,58.0,111,0.0,68,2.0,0.0,7.0,3.6,9720.0,3000.0,0.0,0.0,0.0,0.0,35065.0,100.0,0.0,3,9,7.0,2,2.0 +5048,7054,1952.6136988993742,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,72890.0,1173.0,0.0,83041.83862709775,0.0,0.0,2,9,7.0,3,0.0 +5049,7056,2105.4353886276754,39.0,211,7710.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15906.9,0.0,5800.0,3,3,3.0,1,0.0 +5050,7057,1911.1489907745304,52.0,221,0.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,29660.5,0.0,22600.0,1,1,2.0,4,2.0 +5051,7058,1691.4093546143083,55.0,112,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39549.9,220.0,40110.0,1,9,0.0,4,2.0 +5052,7059,4762.280040759717,31.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,23.0,0.0,31947.2,0.0,24190.0,1,8,0.0,4,2.0 +5053,7061,2949.5429190689583,57.0,400,11810.0,47,1.0,0.0,3.0,2.0,0.0,0.0,0.0,26580.0,0.0,0.0,39620.3,0.0,2640.0,1,0,0.0,5,1.0 +5054,7062,1670.9342883015067,37.0,111,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,76954.55,0.0,85490.0,2,8,6.0,4,2.0 +5055,7063,3382.537451619681,23.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23716.55,0.0,25520.0,3,8,1.0,1,1.0 +5056,7066,1667.703713686214,78.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21120.0,0.0,0.0,30560.6,0.0,0.0,1,8,1.0,3,0.0 +5057,7067,3583.8833787977037,64.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22900.0,0.0,0.0,22387.15,0.0,0.0,1,0,1.0,3,0.0 +5058,7069,1813.9566898487737,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29990.0,0.0,0.0,25432.2,0.0,0.0,1,9,7.0,1,0.0 +5059,7070,1843.0594838352017,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43240.0,700.0,0.0,39857.15,0.0,0.0,1,9,7.0,3,0.0 +5060,7072,2316.04265714448,44.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21141.25,1630.0,17920.0,2,6,1.0,2,1.0 +5061,7076,1801.8545546505497,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28050.0,0.0,0.0,54580.316059831115,0.0,0.0,1,8,6.0,1,0.0 +5062,7077,2709.9163573891137,29.0,212,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34701.45,0.0,41990.0,2,4,0.0,1,1.0 +5063,7078,1384.7012735134178,48.0,111,0.0,52,1.0,1.0,9.0,4.2,0.0,0.0,0.0,0.0,0.0,0.0,50054.0,0.0,30240.0,2,8,7.0,4,1.0 +5064,7080,2547.5558025821806,52.0,111,0.0,22,2.0,0.0,4.0,2.5,0.0,11450.0,0.0,18990.0,0.0,0.0,30087.25,0.0,0.0,3,10,8.0,4,2.0 +5065,7081,1979.1702679596501,39.0,111,0.0,67,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,27968.65,0.0,27310.0,3,8,7.0,4,2.0 +5066,7082,2514.3858296963017,63.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54450.0,0.0,0.0,46336.4,0.0,100.0,2,0,0.0,3,0.0 +5067,7083,1665.8293178055487,50.0,112,0.0,43,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49963.65,0.0,48790.0,1,9,2.0,4,3.0 +5068,7085,2148.1136256024834,41.0,221,0.0,67,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16653.8,990.0,15000.0,2,1,2.0,2,1.0 +5069,7088,3652.237408033061,41.0,111,4250.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,121183.25,0.0,122540.0,2,9,7.0,4,2.0 +5070,7089,3299.019488212955,37.0,111,11050.0,53,1.0,0.0,1.0,1.0,0.0,470.0,0.0,0.0,0.0,0.0,16976.05,0.0,2350.0,4,8,7.0,1,1.0 +5071,7090,1735.7370316621427,56.0,112,3550.0,62,1.0,1.0,2.0,1.5,9700.0,0.0,0.0,0.0,141.0,0.0,29326.0,0.0,12190.0,1,7,0.0,3,1.0 +5072,7092,2883.4878702963356,78.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35150.0,0.0,0.0,33038.05,0.0,0.0,5,10,0.0,1,0.0 +5073,7093,2956.158344465513,74.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23280.0,0.0,0.0,21422.4,0.0,0.0,1,7,0.0,1,0.0 +5074,7094,2133.7387942304726,81.0,212,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27110.0,31.0,0.0,27162.5,0.0,0.0,1,2,0.0,3,0.0 +5075,7095,864.8064672509395,39.0,111,14130.0,42,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43570.0,0.0,19990.0,3,8,7.0,4,2.0 +5076,7096,1844.4875020044951,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18680.0,0.0,0.0,18489.13211966223,0.0,0.0,1,8,7.0,1,0.0 +5077,7097,4581.417282083104,47.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,5590.0,0.0,0.0,0.0,0.0,10638.0,140.0,0.0,3,10,8.0,1,1.0 +5078,7098,2843.935065612011,51.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15119.85,0.0,15320.0,3,8,6.0,1,1.0 +5079,7099,2726.4451016458106,53.0,111,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41941.45,0.0,44410.0,1,8,6.0,4,2.0 +5080,7100,3504.815455443443,55.0,221,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,2000.0,0.0,0.0,58572.35,0.0,64460.0,1,1,2.0,3,2.0 +5081,7101,3220.0856038581446,45.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18123.15,1060.0,16320.0,3,7,6.0,1,1.0 +5082,7102,1127.1969733075857,41.0,111,490.0,55,2.0,1.0,4.0,2.3,9720.0,0.0,0.0,0.0,0.0,0.0,37340.0,1300.0,13830.0,3,10,8.0,2,2.0 +5083,7103,1004.2562416941995,46.0,111,1620.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21173.65,2080.0,14560.0,3,9,7.0,2,1.0 +5084,7105,2403.0802735951634,51.0,111,0.0,52,1.0,1.0,5.0,3.0,0.0,0.0,0.0,14240.0,0.0,0.0,53243.35,0.0,38470.0,3,8,6.0,4,1.0 +5085,7106,555.5439277426113,46.0,112,370.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21606.9,1010.0,14070.0,3,7,1.0,2,2.0 +5086,7107,850.5406085937058,49.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13925.05,0.0,14190.0,3,9,7.0,1,1.0 +5087,7108,1032.1618517340978,62.0,111,690.0,75,1.0,0.0,5.0,2.6,0.0,7310.0,0.0,18810.0,0.0,0.0,40758.05,2640.0,8070.0,1,10,8.0,5,1.0 +5088,7110,1825.443855699042,52.0,111,0.0,85,0.0,0.0,2.0,1.5,0.0,8250.0,0.0,0.0,0.0,0.0,19553.95,0.0,0.0,3,10,8.0,3,0.0 +5089,7113,948.0501540164937,50.0,112,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43460.8,0.0,43530.0,3,9,3.0,4,2.0 +5090,7114,2369.2572279340484,53.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44931.6,0.0,49580.0,2,9,7.0,3,2.0 +5091,7115,3372.079664296773,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12550.15,0.0,4400.0,3,9,7.0,1,0.0 +5092,7117,1878.7244834786147,51.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29398.2,0.0,30140.0,3,6,1.0,3,2.0 +5093,7118,1217.6051256043993,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34380.0,0.0,0.0,32985.6,0.0,0.0,1,7,5.0,3,0.0 +5094,7119,2165.0840418794037,51.0,112,0.0,37,3,3.0,7.0,3.8,0.0,0.0,0.0,0.0,551.0,0.0,85810.9,0.0,90380.0,1,10,2.0,5,3.0 +5095,7120,2296.2624914967087,62.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,98444.65,0.0,125030.0,1,8,7.0,4,1.0 +5096,7121,2321.8643663603652,70.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30670.0,0.0,0.0,29253.55,0.0,0.0,1,6,0.0,3,0.0 +5097,7122,1881.234575899019,60.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,301.0,0.0,25119.45,0.0,25560.0,3,8,7.0,1,1.0 +5098,7123,2440.615225084805,62.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,4395.0,0.0,116314.7,0.0,136770.0,1,10,8.0,3,2.0 +5099,7124,1094.3954349422977,58.0,111,0.0,,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,7,6.0,2,0.0 +5100,7125,1953.1024680871687,33.0,111,0.0,64,1.0,1.0,4.0,2.1,6160.0,0.0,0.0,0.0,0.0,0.0,36050.55,0.0,28700.0,2,5,4.0,4,1.0 +5101,7128,2644.9342090120567,47.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23687.1,0.0,26760.0,2,8,7.0,1,1.0 +5102,7129,1942.664986404775,76.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36360.0,0.0,0.0,33558.25,0.0,0.0,1,0,0.0,3,0.0 +5103,7133,2336.568077146375,47.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,23.0,0.0,69686.15,0.0,73890.0,2,6,0.0,4,2.0 +5104,7134,2445.721242100678,45.0,112,9600.0,46,1.0,0.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37062.1,0.0,29040.0,1,9,1.0,4,1.0 +5105,7135,586.3383972730871,40.0,120,6300.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16254.9,0.0,5460.0,3,0,0.0,2,1.0 +5106,7136,1675.4726795266183,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37090.0,0.0,0.0,35001.19028159666,0.0,0.0,1,7,5.0,3,0.0 +5107,7137,5135.318460117476,29.0,111,0.0,23,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39309.5,0.0,38860.0,3,10,8.0,3,2.0 +5108,7138,1838.7734879840048,77.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36450.0,0.0,0.0,32722.3,0.0,0.0,1,10,8.0,3,0.0 +5109,7140,2396.2589668058763,61.0,111,4400.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,18700.0,1523.0,0.0,39837.35,0.0,14630.0,2,6,5.0,1,1.0 +5110,7141,1937.378336246179,92.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27360.0,0.0,0.0,27621.9,0.0,0.0,1,5,4.0,3,0.0 +5111,7142,2356.3699898795985,65.0,120,0.0,71,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12000.0,24.0,0.0,27099.35,0.0,0.0,1,0,0.0,2,1.0 +5112,7144,1778.9376263380987,82.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8710.0,0.0,0.0,10834.2,0.0,0.0,1,8,0.0,1,0.0 +5113,7145,3906.904255943885,55.0,112,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20612.5,0.0,21750.0,2,8,1.0,2,1.0 +5114,7146,1720.2513198677943,69.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16510.0,0.0,0.0,17775.98418033564,0.0,0.0,1,7,6.0,3,0.0 +5115,7147,3006.591802788651,52.0,111,0.0,68,1.0,1.0,1.0,1.0,2720.0,0.0,0.0,0.0,0.0,0.0,5992.0,0.0,0.0,3,8,7.0,1,1.0 +5116,7148,1628.6660968324043,51.0,120,0.0,62,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,77756.7,0.0,83500.0,2,0,0.0,4,2.0 +5117,7149,2594.9937305982307,60.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19680.0,0.0,0.0,21674.0,0.0,5060.0,1,9,7.0,3,0.0 +5118,7150,2128.570088166044,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42350.0,0.0,0.0,37711.52676638519,0.0,0.0,1,10,8.0,3,0.0 +5119,7151,1317.566912317689,71.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21260.0,0.0,0.0,21144.8,0.0,0.0,1,0,1.0,3,0.0 +5120,7153,1084.432144351912,57.0,211,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25428.3,0.0,26710.0,2,1,3.0,3,2.0 +5121,7154,2072.74468885069,40.0,111,11980.0,54,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,22.0,0.0,86378.75,0.0,72690.0,2,9,7.0,4,1.0 +5122,7155,3661.8275197661037,30.0,111,6840.0,21,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25015.0,0.0,0.0,3,8,6.0,3,2.0 +5123,7156,870.2699292349189,50.0,111,7230.0,42,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,10651.15,0.0,2520.0,5,9,7.0,2,1.0 +5124,7157,2153.050903242168,47.0,400,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,53003.4,0.0,47060.0,2,0,1.0,4,2.0 +5125,7158,3994.231665057254,84.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24990.0,0.0,0.0,24129.15,0.0,0.0,1,0,0.0,1,0.0 +5126,7159,1518.3963278934916,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45630.0,0.0,0.0,42583.05,0.0,0.0,1,5,4.0,3,0.0 +5127,7160,2100.255712850932,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16924.65,0.0,16890.0,1,9,7.0,1,1.0 +5128,7161,1737.4509740853948,46.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26711.85,1140.0,26030.0,2,8,0.0,3,2.0 +5129,7162,3876.4758247044224,32.0,111,13210.0,47,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41551.75,0.0,21440.0,3,8,6.0,4,1.0 +5130,7163,2373.5524205719375,37.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40118.1,0.0,34230.0,2,9,0.0,4,2.0 +5131,7164,1647.983056649513,69.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26880.0,0.0,0.0,28361.95,0.0,0.0,1,0,1.0,3,0.0 +5132,7165,2207.4803966600107,68.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12500.0,0.0,0.0,11912.45,0.0,0.0,1,9,7.0,1,0.0 +5133,7166,3801.08953832286,35.0,111,12520.0,55,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29876.9,0.0,16030.0,1,8,7.0,4,2.0 +5134,7167,4736.221081142221,65.0,111,12030.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3630.0,0.0,0.0,19542.0,0.0,3610.0,3,8,6.0,1,0.0 +5135,7168,977.3828641587847,31.0,300,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44552.15,1620.0,43230.0,3,0,0.0,4,2.0 +5136,7170,2687.883896914656,35.0,120,0.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55524.2,0.0,53740.0,2,0,0.0,4,2.0 +5137,7171,2512.198243910521,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22930.0,0.0,0.0,22934.0,0.0,0.0,3,8,6.0,3,0.0 +5138,7173,1771.5377906378083,59.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50160.0,0.0,0.0,60768.8,0.0,16780.0,1,0,1.0,3,0.0 +5139,7175,3154.1978947100624,30.0,111,4360.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42221.15,560.0,37850.0,3,8,7.0,4,2.0 +5140,7176,1916.4573665782975,62.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12502.25,0.0,12680.0,3,0,0.0,1,1.0 +5141,7179,1746.9980778932634,43.0,111,7620.0,42,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,31753.85,0.0,30120.0,2,6,4.0,4,3.0 +5142,7180,1405.384696690355,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56610.0,0.0,0.0,53189.65,0.0,0.0,1,8,6.0,3,0.0 +5143,7181,2289.2556611122923,66.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20000.0,0.0,0.0,21654.85,0.0,2890.0,1,0,1.0,1,0.0 +5144,7182,2263.0708315703537,52.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14764.0,2910.0,8590.0,3,8,6.0,1,1.0 +5145,7183,1902.209785189811,62.0,111,4720.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34240.0,71.0,0.0,37043.95,0.0,0.0,3,7,5.0,3,0.0 +5146,7184,1910.991302973753,48.0,112,0.0,13,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,1776.0,0.0,86418.2,0.0,24700.0,1,9,0.0,4,3.0 +5147,7185,2022.6103548112937,70.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14820.0,0.0,0.0,14173.55,0.0,90.0,1,0,0.0,1,0.0 +5148,7187,2690.9163488465256,56.0,112,0.0,23,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,85.0,0.0,21612.0,0.0,22570.0,3,9,0.0,1,1.0 +5149,7188,1720.2626637709184,54.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49971.1,0.0,53370.0,1,4,0.0,3,2.0 +5150,7189,3086.375649323156,29.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18093.85,130.0,18440.0,1,9,1.0,1,1.0 +5151,7190,451.90134868828426,44.0,112,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57219.3,0.0,50910.0,2,7,1.0,4,2.0 +5152,7191,1997.7171514646293,69.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20730.0,0.0,0.0,27143.2,0.0,7840.0,1,9,1.0,3,1.0 +5153,7192,2229.8004966521867,78.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31240.0,0.0,0.0,30730.5,0.0,0.0,1,0,0.0,3,0.0 +5154,7194,2932.0539161203637,84.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19620.0,0.0,0.0,19907.7,0.0,0.0,1,0,0.0,3,0.0 +5155,7195,2000.039174777956,37.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34068.5,0.0,33170.0,2,10,5.0,4,2.0 +5156,7197,3263.139150078076,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35450.0,0.0,0.0,34373.25,0.0,0.0,1,8,1.0,3,0.0 +5157,7198,460.20212327868154,30.0,300,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21324.0,970.0,16380.0,3,0,0.0,2,1.0 +5158,7200,3080.5562166283253,63.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14140.0,0.0,0.0,18109.15,0.0,0.0,1,8,3.0,3,0.0 +5159,7201,2460.268928135106,49.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36585.45,0.0,39390.0,3,8,7.0,1,1.0 +5160,7202,1753.949095054417,61.0,212,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29280.0,0.0,0.0,25954.147972553274,0.0,0.0,1,1,0.0,1,0.0 +5161,7204,2865.4063406372316,62.0,111,0.0,74,0.0,0.0,2.0,1.5,4780.0,0.0,0.0,16530.0,0.0,0.0,20167.5,0.0,0.0,1,7,5.0,3,0.0 +5162,7206,2848.8741605408813,52.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20606.95,0.0,21650.0,1,9,3.0,1,1.0 +5163,7208,2354.3215247472217,66.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17810.0,154.0,0.0,29693.2,0.0,5330.0,1,8,0.0,3,0.0 +5164,7209,1317.6975666256033,30.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46475.75,0.0,18030.0,2,6,5.0,3,2.0 +5165,7211,2426.923816457133,67.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14120.0,0.0,0.0,15310.0,0.0,0.0,3,0,1.0,1,0.0 +5166,7212,807.3418402715293,33.0,111,0.0,62,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,15997.3,0.0,0.0,3,8,6.0,2,1.0 +5167,7214,2688.42966422781,54.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17150.0,0.0,0.0,14548.4,0.0,0.0,3,9,7.0,1,0.0 +5168,7215,2195.0156315126465,74.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,7090.0,2470.0,0.0,0.0,12752.0,0.0,0.0,3,10,8.0,1,0.0 +5169,7216,2248.989482996794,47.0,120,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43698.65,0.0,44980.0,2,0,0.0,4,2.0 +5170,7217,862.6713904278787,32.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,7120.0,0.0,0.0,0.0,0.0,13278.0,0.0,0.0,3,9,7.0,2,0.0 +5171,7220,1112.8235707022613,25.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16940.05,0.0,13380.0,3,9,7.0,2,1.0 +5172,7222,1901.695960146958,93.0,221,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17190.0,0.0,0.0,19930.75,0.0,0.0,1,3,4.0,1,0.0 +5173,7225,2223.675671508863,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21000.0,0.0,0.0,19516.15,0.0,0.0,1,9,7.0,1,0.0 +5174,7227,1840.642810989014,84.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6900.0,0.0,0.0,7798.0,0.0,0.0,1,9,7.0,1,0.0 +5175,7228,2092.2779399252436,62.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30240.65,0.0,33500.0,1,7,6.0,1,1.0 +5176,7230,1987.7306899331968,57.0,120,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35042.85,250.0,35740.0,1,0,0.0,4,2.0 +5177,7231,2707.2800559936827,52.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2550.0,0.0,0.0,20061.75,350.0,17490.0,3,4,3.0,1,1.0 +5178,7232,2676.8633516826694,54.0,120,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20227.85,0.0,21810.0,1,0,0.0,1,1.0 +5179,7233,3332.5456191334456,45.0,111,0.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20898.25,1430.0,18060.0,3,9,7.0,2,2.0 +5180,7234,1581.9412742005554,55.0,112,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10684.35,0.0,0.0,1,7,1.0,1,1.0 +5181,7237,3403.715873530349,57.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,9040.0,0.0,0.0,0.0,0.0,12304.0,0.0,0.0,3,8,7.0,2,1.0 +5182,7238,3275.373600857222,20.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,1088.0,0.0,0.0,3,8,7.0,5,0.0 +5183,7239,4068.0675450465674,24.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41326.55,0.0,44880.0,3,10,8.0,3,2.0 +5184,7240,1292.1964522751878,75.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22340.0,0.0,0.0,19923.95,0.0,0.0,1,9,7.0,3,0.0 +5185,7241,2266.6430576597913,61.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,18370.0,0.0,0.0,30677.95,1250.0,13590.0,1,6,5.0,4,1.0 +5186,7242,772.7577310420438,44.0,400,0.0,63,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6812.85,2650.0,0.0,3,0,0.0,2,1.0 +5187,7243,1671.4909511225537,57.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45518.0,0.0,48770.0,2,6,5.0,3,2.0 +5188,7245,4130.936914506107,46.0,120,0.0,67,1.0,1.0,4.0,2.5,0.0,0.0,0.0,18110.0,0.0,0.0,45759.86152460415,0.0,27770.0,1,0,0.0,5,1.0 +5189,7247,3644.183915257782,44.0,111,6120.0,68,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,14378.0,0.0,3400.0,3,10,8.0,4,1.0 +5190,7248,3500.9359160139857,46.0,111,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12456.0,0.0,0.0,3,8,7.0,1,0.0 +5191,7250,739.6162467998358,27.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,6710.0,0.0,0.0,0.0,0.0,14090.25,0.0,0.0,3,6,5.0,2,0.0 +5192,7251,2960.177372886077,82.0,111,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,41280.0,0.0,0.0,40595.9,0.0,0.0,1,10,8.0,3,1.0 +5193,7253,1087.3992705660821,33.0,111,7670.0,84,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15673.15,0.0,710.0,3,10,8.0,2,0.0 +5194,7254,658.9739382903819,37.0,111,7620.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25963.1,1650.0,8060.0,3,9,7.0,2,1.0 +5195,7255,2618.203627817262,53.0,111,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,76420.25,0.0,28070.0,1,10,8.0,4,2.0 +5196,7256,1622.787834106451,56.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,205.0,0.0,44892.45,0.0,48850.0,1,9,7.0,3,2.0 +5197,7258,1894.7022604894528,92.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53050.0,275.0,0.0,52008.45,0.0,0.0,5,0,1.0,3,0.0 +5198,7259,3327.40515903246,76.0,111,0.0,78,1.0,0.0,3.0,2.0,0.0,7050.0,0.0,16960.0,0.0,0.0,26800.0,2790.0,0.0,1,5,4.0,4,1.0 +5199,7260,1220.8519153013926,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24660.0,0.0,0.0,23329.6,0.0,0.0,1,7,5.0,1,0.0 +5200,7261,2903.0179459661954,56.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,74607.5,0.0,80650.0,1,8,0.0,3,2.0 +5201,7262,2298.0296208825894,33.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37670.177239973455,0.0,41470.0,5,9,7.0,3,2.0 +5202,7263,1725.5495140916196,71.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34960.0,0.0,0.0,33487.9,0.0,0.0,1,0,0.0,3,0.0 +5203,7264,712.9005094238719,48.0,111,5910.0,37,2.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,12509.8,0.0,3050.0,3,9,7.0,2,2.0 +5204,7266,1933.1715101505513,46.0,112,0.0,37,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,150661.4,0.0,207890.0,3,9,2.0,4,2.0 +5205,7267,1915.6807232184876,47.0,111,620.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52335.2,0.0,53830.0,2,6,4.0,4,2.0 +5206,7268,1530.2861703821939,55.0,111,0.0,22,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,60158.55,280.0,65910.0,1,9,7.0,4,4.0 +5207,7272,1653.5016453257122,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54440.0,0.0,0.0,49297.45,0.0,0.0,1,8,7.0,3,0.0 +5208,7273,2971.6905358816875,86.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28320.0,0.0,0.0,26659.0,0.0,0.0,3,9,1.0,3,0.0 +5209,7276,1893.347994560341,41.0,111,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,273.0,0.0,72951.3,0.0,76640.0,2,6,5.0,4,2.0 +5210,7277,2688.743258319992,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6380.0,0.0,0.0,29343.4,0.0,25130.0,3,10,8.0,1,0.0 +5211,7280,2235.275258334542,86.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28210.0,0.0,0.0,28644.0,0.0,0.0,5,9,2.0,1,0.0 +5212,7281,1774.222447017829,66.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50150.0,36.0,0.0,68169.65,0.0,10080.0,1,0,0.0,3,0.0 +5213,7283,1636.7637836320348,24.0,222,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,22870.0,0.0,0.0,40980.05,830.0,13520.0,1,1,0.0,4,1.0 +5214,7286,2057.920292985586,32.0,111,9860.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37515.05,0.0,30150.0,3,5,4.0,3,2.0 +5215,7287,1048.8054563970393,19.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,7140.0,0.0,0.0,0.0,0.0,17871.0,0.0,0.0,3,7,5.0,2,0.0 +5216,7288,2042.932439227942,79.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16570.0,0.0,0.0,15796.75063525173,0.0,0.0,1,9,7.0,1,0.0 +5217,7290,3102.0507138118537,28.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36918.8,0.0,38360.0,3,8,7.0,3,2.0 +5218,7291,1276.2561006444369,42.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,37144.85,0.0,27100.0,3,6,4.0,2,1.0 +5219,7292,1674.9461673683036,59.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59149.65,0.0,64410.0,2,9,7.0,3,2.0 +5220,7294,895.1714878850256,44.0,111,6270.0,37,1.0,0.0,3.0,1.8,0.0,1020.0,0.0,0.0,0.0,0.0,20768.4,0.0,330.0,3,9,7.0,2,1.0 +5221,7298,1889.5093114978545,81.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44420.0,0.0,0.0,41253.85,0.0,0.0,1,8,2.0,3,0.0 +5222,7300,1550.1349956433849,44.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,520.0,0.0,22054.5,0.0,22020.0,1,9,7.0,1,1.0 +5223,7302,3897.0963801707426,29.0,111,0.0,37,3,5.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,126932.6,0.0,148860.0,1,10,8.0,4,5.0 +5224,7303,2243.777897130104,62.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34360.0,0.0,0.0,33718.0,0.0,0.0,1,3,4.0,3,0.0 +5225,7304,1261.3223515464467,22.0,211,4520.0,56,1.0,0.0,2.0,1.3,0.0,310.0,0.0,0.0,0.0,0.0,11704.0,2020.0,2620.0,5,2,3.0,2,1.0 +5226,7307,2887.199638639596,47.0,111,2560.0,54,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53051.7,730.0,51290.0,3,9,7.0,4,4.0 +5227,7308,2803.8178442328353,34.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60290.45,0.0,54670.0,3,9,7.0,4,2.0 +5228,7310,3061.728641839581,28.0,111,2220.0,54,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,33736.0,500.0,15240.0,3,8,7.0,2,1.0 +5229,7312,1659.5239775806162,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62780.0,0.0,0.0,56216.55,0.0,0.0,1,8,7.0,3,0.0 +5230,7313,2516.244883230781,59.0,120,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,69851.65,0.0,76730.0,1,0,0.0,4,3.0 +5231,7314,1578.5197735242564,44.0,120,0.0,64,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,50949.3,0.0,44390.0,2,0,1.0,4,2.0 +5232,7315,471.10357838234887,36.0,112,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18908.4,4590.0,10400.0,3,9,0.0,2,1.0 +5233,7316,890.3819781418705,43.0,111,0.0,85,0.0,0.0,3.0,2.0,0.0,9050.0,0.0,0.0,0.0,0.0,15820.0,0.0,0.0,3,8,7.0,2,0.0 +5234,7317,1343.4703737828972,66.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31550.0,291.0,0.0,33620.55,0.0,0.0,1,7,5.0,3,0.0 +5235,7318,2304.0908392836677,36.0,112,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,37416.05,0.0,40600.0,3,9,1.0,2,1.0 +5236,7319,801.5969634864214,48.0,111,640.0,85,0.0,0.0,2.0,1.5,0.0,0.0,0.0,4400.0,0.0,0.0,10950.0,0.0,0.0,3,6,5.0,2,0.0 +5237,7324,2017.153154043088,69.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,2130.0,0.0,0.0,97234.66059831115,0.0,132500.0,1,8,7.0,3,1.0 +5238,7325,3908.3977579004854,87.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10440.0,0.0,0.0,23186.65,0.0,0.0,5,0,0.0,1,0.0 +5239,7326,2285.5258634409356,84.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23190.0,0.0,0.0,23210.85,0.0,0.0,3,9,7.0,3,0.0 +5240,7327,3559.3099544682022,62.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,270.0,0.0,7850.0,0.0,0.0,7861.3,0.0,0.0,1,5,0.0,1,0.0 +5241,7329,2837.92408528717,53.0,111,0.0,38,1.0,1.0,3.0,2.0,9720.0,0.0,0.0,0.0,0.0,0.0,65608.9,0.0,66520.0,2,9,7.0,4,1.0 +5242,7330,1635.6266326452383,50.0,300,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,1170.0,0.0,74159.53029915558,0.0,35410.0,2,0,0.0,4,2.0 +5243,7331,3651.230286301527,45.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27939.7,0.0,29120.0,3,8,6.0,2,1.0 +5244,7332,1480.2845497105727,34.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20866.0,0.0,13310.0,3,10,8.0,2,1.0 +5245,7334,2154.505013902808,37.0,300,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32434.3,0.0,17900.0,2,0,0.0,4,2.0 +5246,7335,2087.208854798221,36.0,112,12800.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14699.7,0.0,0.0,1,9,3.0,1,1.0 +5247,7336,1920.4667290410348,42.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43638.7,0.0,35570.0,2,7,6.0,4,2.0 +5248,7337,2145.551036214992,34.0,300,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,121023.6,0.0,23040.0,2,0,0.0,4,2.0 +5249,7338,1484.4599067208878,54.0,111,7080.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22633.8,0.0,15910.0,3,8,7.0,3,2.0 +5250,7340,1462.0904635423894,34.0,111,0.0,31,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29151.8,0.0,27960.0,3,10,8.0,2,1.0 +5251,7341,2609.6009606336497,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4097.1,0.0,0.0,3,9,7.0,1,0.0 +5252,7342,688.2670643815898,39.0,112,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,16523.95,0.0,14680.0,2,8,0.0,2,1.0 +5253,7343,3930.5369821710087,27.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52637.6,0.0,55650.0,3,6,1.0,3,2.0 +5254,7344,1908.978966021524,62.0,112,0.0,78,0.0,0.0,3.0,2.0,9280.0,0.0,0.0,37770.0,0.0,0.0,48326.55,0.0,2360.0,1,6,0.0,4,0.0 +5255,7345,4605.284369982805,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29270.0,0.0,0.0,29131.85,0.0,0.0,1,9,7.0,3,0.0 +5256,7347,1973.1383739957407,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19450.0,0.0,0.0,28426.16709016782,0.0,0.0,1,9,7.0,1,0.0 +5257,7348,3721.5029875020127,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35680.0,0.0,0.0,33700.55,0.0,0.0,1,7,0.0,5,0.0 +5258,7350,2419.978067390911,49.0,112,0.0,13,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43509.4,0.0,0.0,2,9,0.0,4,2.0 +5259,7352,1840.9947201970756,60.0,211,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,5160.0,0.0,0.0,27216.15,0.0,22270.0,1,1,2.0,3,2.0 +5260,7353,1723.499879140011,55.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17591.85,0.0,19340.0,1,9,0.0,1,1.0 +5261,7354,2595.700910833173,62.0,111,3980.0,74,0.0,0.0,3.0,2.0,9720.0,0.0,0.0,66600.0,0.0,0.0,63746.4,0.0,0.0,1,9,7.0,4,0.0 +5262,7355,2954.464080046026,38.0,300,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43964.3,0.0,43670.0,2,0,0.0,4,2.0 +5263,7356,3184.8959655652716,53.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,2310.0,0.0,0.0,0.0,0.0,11459.0,1570.0,6820.0,2,10,8.0,1,1.0 +5264,7357,2588.002857478212,91.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29670.0,0.0,0.0,26528.3,0.0,0.0,5,9,7.0,1,0.0 +5265,7358,1841.318464441346,27.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,2380.0,0.0,0.0,0.0,0.0,23567.25,3230.0,16120.0,3,6,4.0,4,1.0 +5266,7359,1087.2857077029169,21.0,111,0.0,68,1.0,0.0,2.0,1.3,0.0,6520.0,0.0,0.0,0.0,0.0,11819.0,310.0,280.0,3,5,4.0,2,1.0 +5267,7362,1749.3517020179215,69.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19680.0,0.0,0.0,18964.65,0.0,0.0,1,7,1.0,1,0.0 +5268,7363,2448.6232508394696,34.0,400,1890.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54003.25,0.0,40620.0,2,0,0.0,4,2.0 +5269,7366,537.9257989174146,53.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18274.95,2330.0,16570.0,2,8,7.0,2,1.0 +5270,7367,3690.896609105597,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13080.0,0.0,0.0,13780.85,0.0,0.0,1,9,7.0,1,0.0 +5271,7368,6644.382953114868,34.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51875.4,0.0,57420.0,3,8,6.0,3,2.0 +5272,7369,1649.1767562917223,32.0,111,610.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38973.7,0.0,29820.0,2,8,7.0,4,2.0 +5273,7370,2647.029473738415,57.0,112,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,10200.0,0.0,0.0,49812.4,0.0,45620.0,1,6,1.0,4,2.0 +5274,7371,2743.0514500082063,52.0,111,0.0,68,2.0,2.0,2.0,1.5,16060.0,0.0,0.0,0.0,0.0,0.0,28276.0,0.0,7750.0,3,10,8.0,3,2.0 +5275,7372,2486.3683938417275,50.0,111,3490.0,37,3,3.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,112153.9,0.0,113370.0,3,10,8.0,4,3.0 +5276,7373,1802.684666258416,48.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19738.7,0.0,18760.0,3,10,8.0,1,1.0 +5277,7374,2908.7942485587037,29.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31360.85,0.0,34890.0,2,6,0.0,1,1.0 +5278,7375,2070.690907529834,73.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21430.0,0.0,0.0,15130.1,0.0,0.0,1,9,7.0,1,0.0 +5279,7376,2172.176030331746,63.0,300,0.0,78,0.0,0.0,2.0,1.5,3880.0,0.0,0.0,16010.0,0.0,0.0,19881.0,0.0,490.0,1,0,0.0,3,0.0 +5280,7377,4921.799772328791,62.0,111,1840.0,72,1.0,1.0,2.0,1.5,910.0,0.0,0.0,21160.0,0.0,0.0,34889.7,1990.0,5990.0,3,10,8.0,3,1.0 +5281,7378,1799.684128102482,58.0,400,0.0,72,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12798.0,0.0,0.0,3,0,0.0,1,0.0 +5282,7379,1642.8019070892474,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59940.0,0.0,0.0,57749.9,0.0,0.0,1,9,7.0,3,0.0 +5283,7381,1644.2413158242966,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,66700.0,0.0,0.0,57509.51514957779,0.0,0.0,1,6,4.0,3,0.0 +5284,7382,742.358054439812,46.0,111,0.0,85,1.0,0.0,3.0,2.0,0.0,7950.0,0.0,0.0,0.0,0.0,16047.0,0.0,0.0,3,9,7.0,2,1.0 +5285,7383,1783.7279463711666,50.0,111,0.0,38,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,72340.1,0.0,80360.0,2,10,8.0,4,3.0 +5286,7385,2015.6180226516346,65.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,3230.0,6290.0,0.0,0.0,12136.0,0.0,0.0,3,8,7.0,1,0.0 +5287,7386,747.4666974987476,38.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,67736.65,0.0,62690.0,2,9,7.0,4,2.0 +5288,7387,4869.292428137098,40.0,112,3610.0,67,1.0,0.0,3.0,1.8,0.0,440.0,0.0,3580.0,0.0,0.0,23423.65,760.0,7820.0,3,9,3.0,2,1.0 +5289,7389,4253.899006136049,63.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21420.0,0.0,0.0,39843.85,0.0,17400.0,1,7,0.0,3,1.0 +5290,7390,2187.294080575173,48.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,153.0,0.0,60486.0,0.0,57970.0,3,10,8.0,4,2.0 +5291,7391,2263.5154854835264,82.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34260.0,0.0,0.0,31724.1,0.0,0.0,1,0,1.0,1,0.0 +5292,7392,3261.459156110175,21.0,111,3460.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32619.0,0.0,29150.0,3,9,7.0,3,2.0 +5293,7393,2269.6244159792773,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36560.0,0.0,0.0,34693.0,0.0,0.0,5,9,0.0,3,0.0 +5294,7394,4181.957433725567,52.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,132.0,0.0,45090.4,0.0,52240.0,2,9,7.0,1,1.0 +5295,7395,2960.000779825001,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10280.0,0.0,0.0,10619.05,0.0,0.0,1,8,1.0,1,0.0 +5296,7397,2407.6456801580307,42.0,112,7870.0,62,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38816.3,0.0,28450.0,2,10,0.0,4,2.0 +5297,7398,2368.015551520066,74.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16670.0,0.0,0.0,16968.0,0.0,0.0,3,9,7.0,1,0.0 +5298,7400,5241.235706630187,74.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11070.0,0.0,0.0,11072.0,0.0,0.0,3,10,8.0,1,0.0 +5299,7403,1561.0665480935027,84.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25790.0,0.0,0.0,29020.6,0.0,0.0,1,1,1.0,3,0.0 +5300,7405,1444.1354623299687,45.0,112,0.0,63,2.0,2.0,5.0,2.6,0.0,7300.0,0.0,0.0,0.0,0.0,46104.75,570.0,35780.0,3,10,3.0,5,2.0 +5301,7406,2482.995844758846,25.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32840.05,0.0,34130.0,3,8,6.0,3,2.0 +5302,7407,847.5593518274243,42.0,112,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,120.0,0.0,0.0,60729.1218545558,0.0,59880.0,2,7,1.0,4,2.0 +5303,7408,1287.8746648429153,75.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30640.0,0.0,0.0,30808.553493884516,0.0,0.0,1,2,3.0,3,0.0 +5304,7410,5271.395219684029,30.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53232.25,0.0,59250.0,3,9,7.0,3,2.0 +5305,7411,3664.9372571785857,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6410.0,0.0,3720.0,3,9,7.0,1,0.0 +5306,7412,2182.9180532653204,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9230.0,0.0,0.0,30344.85,0.0,22720.0,1,9,7.0,1,0.0 +5307,7414,1342.4926385042804,43.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30894.35,0.0,28090.0,3,10,8.0,2,1.0 +5308,7415,706.57087465378,44.0,111,0.0,48,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,26662.1,1350.0,23750.0,2,9,7.0,2,1.0 +5309,7416,2097.3748681983684,61.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44890.0,632.0,0.0,57994.553532770384,0.0,0.0,1,8,0.0,3,0.0 +5310,7417,1403.4617370908645,59.0,112,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56820.8,0.0,59170.0,1,8,1.0,3,2.0 +5311,7418,1635.3209173342234,54.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38532.2,0.0,40050.0,3,9,7.0,3,2.0 +5312,7420,1041.8545797512388,29.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23989.0,0.0,22430.0,2,8,7.0,3,2.0 +5313,7421,2204.745992234283,43.0,112,0.0,65,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38727.1,0.0,38450.0,2,8,1.0,4,2.0 +5314,7422,3593.65344574862,40.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,27649.0,0.0,24240.0,1,10,8.0,4,2.0 +5315,7423,1968.5260559844648,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,80250.0,0.0,0.0,66850.45,0.0,0.0,1,10,8.0,3,0.0 +5316,7425,2107.584538000387,61.0,111,2460.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34230.0,0.0,0.0,32973.5,0.0,870.0,1,9,7.0,3,0.0 +5317,7426,2031.7970178014825,40.0,111,0.0,64,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31810.8,3520.0,20970.0,3,7,6.0,4,1.0 +5318,7427,3245.618283229412,56.0,111,5990.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18466.0,0.0,6940.0,3,5,4.0,1,1.0 +5319,7428,434.1956837294704,43.0,112,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24452.1,0.0,23510.0,3,9,3.0,2,1.0 +5320,7429,3626.049201188695,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44390.0,0.0,0.0,45004.05,0.0,0.0,1,8,7.0,2,0.0 +5321,7431,2276.115808152573,70.0,212,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17800.0,0.0,0.0,17919.75,0.0,0.0,1,2,0.0,1,0.0 +5322,7432,3938.826644554177,27.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21749.25,0.0,24220.0,1,9,7.0,1,1.0 +5323,7434,1793.2335363621814,36.0,120,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42196.15,40.0,35260.0,2,0,1.0,4,2.0 +5324,7435,2503.262719447502,33.0,111,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,18560.0,0.0,0.0,48643.65,0.0,0.0,1,6,5.0,5,2.0 +5325,7436,4404.324387104594,68.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16400.0,0.0,0.0,15903.1,0.0,0.0,1,10,8.0,1,0.0 +5326,7438,3516.239714906028,46.0,211,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28417.3,0.0,27280.0,3,1,3.0,2,1.0 +5327,7440,2446.5927409520737,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19240.0,0.0,0.0,18131.45,0.0,0.0,1,4,3.0,1,0.0 +5328,7442,3079.000083841115,59.0,111,0.0,68,1.0,0.0,1.0,1.0,0.0,5600.0,0.0,0.0,0.0,0.0,13255.8,0.0,5970.0,3,8,6.0,1,1.0 +5329,7443,2383.5776289678765,41.0,120,0.0,31,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,31.0,0.0,96015.43401441169,0.0,84710.0,1,0,0.0,4,2.0 +5330,7444,2403.2860326401988,52.0,111,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27616.05,0.0,31060.0,1,9,7.0,4,2.0 +5331,7446,1777.0584222207874,37.0,111,0.0,68,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19671.0,0.0,12590.0,3,10,8.0,2,1.0 +5332,7447,3864.653119826452,27.0,111,12410.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,22.0,0.0,42163.0,0.0,33710.0,3,10,8.0,3,2.0 +5333,7448,1887.0007607244434,55.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,52.0,0.0,55510.95,0.0,70970.0,1,10,0.0,3,1.0 +5334,7451,1603.5266535356743,52.0,111,3330.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15530.55,0.0,13080.0,1,9,7.0,1,1.0 +5335,7453,928.2750844034434,46.0,111,5950.0,37,2.0,1.0,5.0,2.6,9410.0,0.0,0.0,0.0,0.0,0.0,50865.25,0.0,23870.0,3,10,8.0,4,2.0 +5336,7454,2433.6130306044247,47.0,111,0.0,48,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,35086.8,0.0,32930.0,3,10,8.0,4,1.0 +5337,7455,1934.0309089117407,36.0,111,7490.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37634.25,0.0,29860.0,2,7,5.0,4,2.0 +5338,7456,2168.099107326253,35.0,112,0.0,85,0.0,0.0,3.0,1.6,0.0,4040.0,0.0,0.0,0.0,0.0,13606.0,0.0,0.0,3,8,1.0,2,0.0 +5339,7457,2597.701745794848,27.0,400,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33698.85,220.0,32850.0,2,0,0.0,4,2.0 +5340,7459,1435.7800881519208,83.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11600.0,0.0,0.0,11642.0,0.0,0.0,5,8,0.0,1,0.0 +5341,7460,1096.868652712747,46.0,111,0.0,37,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,51974.0,229448.94817949334,0.0,190630.0,2,10,8.0,4,3.0 +5342,7462,1319.9886197363817,70.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63260.0,0.0,0.0,58027.5,0.0,0.0,1,0,1.0,3,0.0 +5343,7463,1530.371609627995,58.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32925.7,0.0,33830.0,1,8,1.0,3,2.0 +5344,7464,2640.0723699456107,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27000.0,0.0,0.0,26288.3,0.0,0.0,1,8,7.0,3,0.0 +5345,7465,2927.658580592889,87.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40640.0,0.0,0.0,37347.05,0.0,0.0,1,10,8.0,3,0.0 +5346,7466,4559.323091813612,69.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,2360.0,10070.0,0.0,0.0,11455.0,0.0,0.0,1,10,8.0,3,0.0 +5347,7467,2483.0476417938003,61.0,111,0.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,29560.0,0.0,0.0,48666.7,0.0,16940.0,3,9,7.0,3,2.0 +5348,7470,1550.8506421943284,28.0,111,15750.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34882.5,0.0,13780.0,1,9,7.0,4,2.0 +5349,7472,2363.5938285663133,69.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18430.0,0.0,0.0,17587.65,0.0,0.0,1,6,0.0,1,0.0 +5350,7473,2074.49644481434,46.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25500.0,251.0,0.0,58149.2,0.0,38370.0,1,10,8.0,2,1.0 +5351,7475,1846.1130752890215,82.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53710.0,0.0,0.0,52585.15,0.0,0.0,1,7,5.0,3,0.0 +5352,7477,3163.2514872819916,69.0,111,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,48240.0,0.0,0.0,68180.8,0.0,24500.0,1,10,8.0,4,1.0 +5353,7479,3122.212013754943,50.0,112,1220.0,21,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,53527.685450839104,0.0,21750.0,2,10,1.0,5,3.0 +5354,7480,1938.6104302312306,42.0,111,0.0,45,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22507.7,2420.0,16680.0,3,10,8.0,2,1.0 +5355,7481,2501.3625105878414,38.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22827.75,0.0,24760.0,3,10,8.0,1,1.0 +5356,7482,2048.357074939312,57.0,120,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38803.45,0.0,45240.0,3,0,0.0,1,1.0 +5357,7484,2235.880940504981,83.0,300,0.0,71,0.0,0.0,3.0,2.0,13680.0,0.0,0.0,16960.0,0.0,0.0,30420.55063525173,0.0,0.0,1,0,0.0,4,0.0 +5358,7485,2240.123886492854,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9334.0,0.0,0.0,3,9,7.0,1,0.0 +5359,7487,2274.1031316926155,78.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,820.0,8740.0,0.0,0.0,9560.0,0.0,0.0,1,0,0.0,1,0.0 +5360,7488,1924.820398204979,48.0,112,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,64519.75317625865,0.0,64500.0,2,9,3.0,4,2.0 +5361,7490,407.397821911203,57.0,112,7730.0,78,1.0,0.0,3.0,2.0,14590.0,0.0,0.0,0.0,0.0,0.0,24788.0,0.0,2890.0,1,6,0.0,4,1.0 +5362,7491,1901.0753203133108,42.0,120,8370.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43093.55,0.0,28830.0,2,0,0.0,4,2.0 +5363,7492,2475.7075750071685,31.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35657.3,0.0,38570.0,1,5,4.0,3,2.0 +5364,7493,11166.548889244588,40.0,111,0.0,68,1.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,13121.9,0.0,4150.0,3,9,7.0,1,1.0 +5365,7495,3632.2271889848425,60.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19505.95,0.0,20830.0,1,7,0.0,1,1.0 +5366,7496,1016.2849900675719,66.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31680.0,187.0,0.0,30349.674720530707,0.0,0.0,1,7,5.0,1,0.0 +5367,7497,1626.6845337452326,50.0,400,0.0,67,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40806.95,0.0,17630.0,1,0,0.0,4,3.0 +5368,7498,1395.4041916953581,67.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24510.0,0.0,31985.0,54706.6,0.0,0.0,1,0,1.0,3,0.0 +5369,7499,2313.75690455344,52.0,111,0.0,63,1.0,1.0,4.0,2.5,9720.0,0.0,0.0,0.0,0.0,0.0,34483.4,2990.0,21950.0,3,7,6.0,4,1.0 +5370,7500,1128.3285835266406,40.0,111,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,50140.4,0.0,42460.0,5,10,8.0,4,2.0 +5371,7501,1438.6811388846666,72.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21980.0,0.0,0.0,24863.85,0.0,0.0,1,0,0.0,3,0.0 +5372,7502,1464.7598227188935,56.0,111,0.0,34,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64996.2,0.0,75940.0,2,9,7.0,2,2.0 +5373,7504,1478.5704496308754,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50340.0,0.0,0.0,46037.75,0.0,0.0,1,9,7.0,3,0.0 +5374,7505,4384.157815188916,85.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37480.0,0.0,0.0,35751.55,0.0,0.0,1,8,7.0,5,0.0 +5375,7506,2942.9410709562794,55.0,211,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24486.9,0.0,31160.0,2,4,4.0,2,1.0 +5376,7507,3585.551642321154,56.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18094.65,0.0,19270.0,1,8,0.0,1,1.0 +5377,7508,1224.7163412969926,35.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24433.95,1790.0,17540.0,3,10,8.0,2,1.0 +5378,7509,1078.8962105189496,64.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36470.0,0.0,0.0,33875.246527997566,0.0,0.0,1,1,3.0,3,0.0 +5379,7510,1724.598377927301,50.0,111,0.0,33,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,71192.95,0.0,67780.0,2,7,5.0,4,2.0 +5380,7511,2627.4611620352844,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10240.0,0.0,0.0,10240.0,0.0,0.0,3,9,7.0,1,0.0 +5381,7513,4371.625152686307,41.0,111,13420.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12791.25,0.0,0.0,1,6,5.0,1,1.0 +5382,7515,765.2346988867378,40.0,111,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23801.15,2010.0,17880.0,3,8,7.0,2,1.0 +5383,7516,1285.192828299278,59.0,111,15090.0,62,2.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,17734.1,0.0,1730.0,3,9,7.0,2,2.0 +5384,7517,3672.061468120207,53.0,111,5950.0,78,0.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,19844.9,0.0,0.0,3,10,8.0,4,0.0 +5385,7518,2305.5261726843087,58.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6720.0,0.0,0.0,24880.433829524984,0.0,22980.0,1,0,0.0,1,0.0 +5386,7519,1821.4238063415755,33.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20289.5,0.0,22030.0,3,7,5.0,1,1.0 +5387,7520,2992.2198389582077,62.0,111,0.0,86,1.0,1.0,2.0,1.5,0.0,370.0,0.0,14700.0,0.0,0.0,25613.0,60.0,10480.0,3,6,4.0,2,1.0 +5388,7521,2642.761876131403,50.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59255.75,0.0,57820.0,1,7,0.0,3,2.0 +5389,7522,3904.675317423805,31.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,77045.85,0.0,1000.0,2,10,8.0,1,1.0 +5390,7524,2932.5608745501236,50.0,111,0.0,68,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,61867.3,0.0,65970.0,2,10,8.0,4,3.0 +5391,7525,1715.193264842315,42.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,2980.0,0.0,0.0,18922.7,1050.0,12760.0,2,10,8.0,4,1.0 +5392,7527,1963.0349147191666,81.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19180.0,0.0,0.0,19592.0,0.0,0.0,1,8,1.0,1,0.0 +5393,7528,2021.3772524355136,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13230.0,0.0,0.0,14982.0,0.0,0.0,3,9,7.0,1,0.0 +5394,7529,2580.47198287487,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51200.0,0.0,0.0,46895.1180477861,0.0,0.0,1,10,8.0,3,0.0 +5395,7531,1636.597510806855,48.0,400,0.0,13,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,73.0,0.0,20219.4,2450.0,1500.0,2,0,0.0,4,2.0 +5396,7532,1634.9675262095975,51.0,211,9390.0,52,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,72832.2,0.0,66650.0,1,3,3.0,5,4.0 +5397,7534,2748.1098577278844,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16220.0,0.0,0.0,15884.6,0.0,0.0,1,8,0.0,3,0.0 +5398,7535,3279.977365470241,29.0,111,15390.0,33,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,76845.55,0.0,70220.0,3,10,8.0,3,2.0 +5399,7536,1452.181207697155,53.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14058.9,2600.0,11890.0,1,6,5.0,1,1.0 +5400,7537,2522.8059036571367,28.0,120,6640.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25228.45,2690.0,13510.0,3,0,1.0,2,2.0 +5401,7538,4379.509018837657,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49260.0,0.0,0.0,46938.8,0.0,0.0,5,9,7.0,3,0.0 +5402,7539,2372.2491756176532,32.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54407.45,0.0,50780.0,2,9,0.0,4,2.0 +5403,7540,4288.585098821404,87.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20310.0,0.0,0.0,18236.95,0.0,0.0,1,10,8.0,1,0.0 +5404,7541,3369.892995700296,36.0,120,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,51302.75,0.0,50740.0,2,0,3.0,5,2.0 +5405,7542,1589.5550758549434,82.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18360.0,0.0,0.0,17081.15,0.0,0.0,1,10,3.0,1,0.0 +5406,7543,635.383048700144,48.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,950.0,0.0,0.0,23735.95,0.0,21710.0,1,9,7.0,2,1.0 +5407,7544,2165.349649860048,71.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27900.0,0.0,0.0,27260.4,0.0,0.0,1,6,2.0,3,0.0 +5408,7545,3172.9361315879246,32.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1250.35,0.0,0.0,3,6,5.0,1,0.0 +5409,7546,2745.6255537761726,62.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26100.0,0.0,0.0,23103.35,0.0,0.0,1,9,7.0,1,0.0 +5410,7548,3350.8309274053277,38.0,112,0.0,85,0.0,0.0,1.0,1.0,4050.0,0.0,0.0,0.0,0.0,0.0,7038.0,0.0,0.0,3,4,0.0,1,0.0 +5411,7550,2656.7798500856534,72.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43330.0,0.0,0.0,39208.75,0.0,0.0,1,9,1.0,3,0.0 +5412,7552,1712.5014564940846,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,94950.0,676.0,0.0,117306.25,0.0,0.0,1,9,7.0,3,0.0 +5413,7555,2016.3977064922242,83.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24350.0,0.0,0.0,23725.35,0.0,0.0,1,9,2.0,3,0.0 +5414,7556,1463.2668944689333,57.0,112,0.0,11,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45859.26836067128,0.0,0.0,1,7,1.0,3,2.0 +5415,7558,2014.4868527022718,63.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30080.0,0.0,0.0,29019.95,0.0,0.0,3,1,2.0,3,0.0 +5416,7559,3507.700941226414,72.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14280.0,0.0,0.0,21646.9,0.0,0.0,3,4,4.0,1,0.0 +5417,7560,2297.0280680984674,22.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3240.0,0.0,0.0,3,9,7.0,1,1.0 +5418,7561,655.6366027888969,55.0,111,0.0,63,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,13.0,0.0,7829.0,0.0,17360.0,1,9,7.0,2,1.0 +5419,7562,2094.2650654460404,79.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30730.0,4549.0,117.0,36196.61868234818,0.0,0.0,1,9,7.0,1,0.0 +5420,7563,2822.7502113472087,57.0,111,5600.0,45,2.0,0.0,5.0,3.0,10980.0,0.0,0.0,4530.0,0.0,0.0,23669.0,0.0,2640.0,1,9,7.0,4,2.0 +5421,7565,2684.545075855154,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18410.0,0.0,0.0,16847.55,0.0,0.0,1,6,4.0,1,0.0 +5422,7566,1882.7984926515478,59.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31037.55,0.0,31480.0,2,4,0.0,1,1.0 +5423,7567,2758.52602402445,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25230.0,0.0,0.0,24639.2,0.0,0.0,1,8,7.0,1,0.0 +5424,7569,1711.0254059086515,68.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37860.0,0.0,0.0,36317.65,0.0,0.0,1,0,0.0,3,0.0 +5425,7571,3112.196895936523,32.0,112,3110.0,65,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34244.7,0.0,28120.0,3,10,4.0,4,2.0 +5426,7572,2890.785867517248,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17420.0,0.0,0.0,17059.2,0.0,0.0,3,10,8.0,1,0.0 +5427,7573,1793.650840350173,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34010.0,0.0,0.0,32992.85,0.0,0.0,1,8,6.0,3,0.0 +5428,7575,2813.0727227327293,55.0,120,0.0,47,3,2.0,5.0,3.0,0.0,400.0,0.0,0.0,0.0,0.0,48237.55,240.0,48460.0,1,0,0.0,4,3.0 +5429,7576,1539.1249472638647,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33550.0,1572.0,0.0,33294.05,0.0,0.0,1,8,7.0,1,0.0 +5430,7577,2389.6294455146895,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23940.0,0.0,0.0,22572.8,0.0,0.0,1,7,5.0,1,0.0 +5431,7578,682.4004222007676,44.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22533.3,0.0,20520.0,3,10,8.0,2,1.0 +5432,7579,1031.5061766534807,42.0,111,0.0,68,1.0,1.0,3.0,1.6,0.0,660.0,0.0,0.0,0.0,0.0,20925.0,2220.0,7850.0,3,9,7.0,2,1.0 +5433,7581,1748.9522831221989,33.0,221,0.0,21,2.0,2.0,5.0,2.4,0.0,3730.0,0.0,0.0,0.0,0.0,24008.93432255618,3340.0,4320.0,3,1,2.0,4,2.0 +5434,7582,2522.433797547648,55.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37336.0,0.0,39260.0,3,6,1.0,3,2.0 +5435,7584,3774.4608335501457,27.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14646.45,2330.0,11420.0,3,9,7.0,1,1.0 +5436,7585,2368.0795781336597,56.0,400,2050.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17670.55,200.0,15810.0,2,0,0.0,1,1.0 +5437,7586,1808.2528242385185,29.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,41547.95,0.0,30210.0,3,10,8.0,2,1.0 +5438,7589,1971.9066159682661,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57990.0,247.0,0.0,62202.45,0.0,0.0,1,9,7.0,3,0.0 +5439,7591,3884.8596064966828,41.0,111,2210.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49826.05,0.0,48110.0,2,6,4.0,4,2.0 +5440,7596,2227.7866198404386,51.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30345.3,0.0,33680.0,1,8,7.0,3,2.0 +5441,7597,1892.0179762095627,59.0,111,9790.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13790.6,100.0,3880.0,3,8,7.0,1,1.0 +5442,7598,2788.467005435635,54.0,111,2480.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18800.0,0.0,0.0,43790.2,0.0,27280.0,1,7,5.0,3,1.0 +5443,7601,2581.230125258769,27.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34788.6,1220.0,32730.0,3,9,3.0,4,2.0 +5444,7602,2462.2028606243925,39.0,300,2130.0,62,1.0,1.0,3.0,2.0,0.0,0.0,1240.0,21670.0,0.0,0.0,46120.15,0.0,24020.0,1,0,0.0,4,1.0 +5445,7603,2501.3087648700644,57.0,111,0.0,78,1.0,1.0,2.0,1.5,9700.0,0.0,0.0,1940.0,0.0,0.0,22765.85,0.0,12030.0,1,4,3.0,3,1.0 +5446,7604,3448.4166424616487,64.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18910.0,0.0,0.0,18139.75,0.0,0.0,1,9,7.0,1,0.0 +5447,7605,2699.2461607775317,23.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,40.0,0.0,0.0,22177.45,0.0,19420.0,3,8,6.0,3,2.0 +5448,7606,3124.9327492360326,47.0,111,0.0,55,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,25.0,0.0,106720.4,0.0,117890.0,1,10,8.0,4,4.0 +5449,7607,1055.7974896237558,37.0,111,0.0,67,1.0,1.0,3.0,1.6,0.0,5660.0,0.0,0.0,0.0,0.0,22852.0,1800.0,7230.0,3,10,8.0,2,1.0 +5450,7608,3897.9952453894234,90.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29980.0,0.0,0.0,28926.1,0.0,0.0,3,9,7.0,1,0.0 +5451,7610,3502.468171481001,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52010.0,0.0,0.0,46722.3,0.0,0.0,1,9,7.0,3,0.0 +5452,7611,2642.3735560683876,44.0,112,12640.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57313.75,0.0,48020.0,2,8,1.0,4,1.0 +5453,7614,895.4766072466923,43.0,111,10040.0,84,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,41245.6,0.0,13090.0,3,8,6.0,2,1.0 +5454,7615,2533.1792796317623,79.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14700.0,0.0,0.0,14700.0,0.0,0.0,3,1,2.0,1,0.0 +5455,7616,2393.741985133741,77.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27020.0,0.0,0.0,27567.1,0.0,0.0,1,1,1.0,3,0.0 +5456,7619,2363.4194638919166,45.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,7061.0,0.0,39580.48302991556,0.0,34740.0,1,9,7.0,1,1.0 +5457,7620,143.13589253567974,34.0,300,5260.0,64,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27820.95,0.0,11820.0,3,0,0.0,2,1.0 +5458,7621,1725.2284983339111,46.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17127.45,0.0,17950.0,3,6,5.0,1,1.0 +5459,7622,3461.272397301685,80.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16120.0,0.0,0.0,15912.05,0.0,0.0,3,0,0.0,1,0.0 +5460,7624,2241.7909507032373,56.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29012.55,0.0,29710.0,2,5,0.0,3,2.0 +5461,7625,2407.1559678062436,38.0,120,0.0,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20324.55,0.0,0.0,5,0,0.0,1,1.0 +5462,7626,2448.013546622417,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22570.0,0.0,0.0,22108.35,0.0,0.0,1,9,7.0,3,0.0 +5463,7628,1533.1015276270805,53.0,221,0.0,13,2.0,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,39620.7,1450.0,9380.0,1,3,4.0,4,2.0 +5464,7629,126.49248056346363,45.0,400,0.0,21,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,18592.0,0.0,0.0,1,0,0.0,2,2.0 +5465,7633,1868.8983460716888,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60170.0,0.0,0.0,52399.45,0.0,0.0,1,9,7.0,3,0.0 +5466,7634,2585.407000755437,42.0,111,2110.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32165.75,0.0,28520.0,2,8,7.0,4,2.0 +5467,7635,1891.0912957484302,58.0,212,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38634.4,0.0,40710.0,1,2,0.0,3,1.0 +5468,7636,2136.8266869317645,63.0,111,8310.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11426.1,0.0,0.0,3,7,6.0,1,1.0 +5469,7637,1661.1367135135445,38.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25549.7,3260.0,21170.0,3,4,3.0,2,1.0 +5470,7638,1668.8208389785814,56.0,300,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60503.7,0.0,64560.0,1,0,0.0,3,2.0 +5471,7639,2636.9835143743744,60.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27417.9,0.0,28960.0,3,8,7.0,1,1.0 +5472,7640,729.8884226467592,36.0,111,0.0,52,1.0,0.0,5.0,2.6,0.0,7400.0,0.0,0.0,0.0,0.0,29660.0,70.0,330.0,3,10,8.0,2,1.0 +5473,7641,3752.4851756449416,31.0,111,2430.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51120.35,0.0,48090.0,3,10,8.0,4,2.0 +5474,7642,930.5785108529396,31.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,359.0,0.0,46148.901675618145,110.0,39430.0,5,9,0.0,4,2.0 +5475,7645,2379.8508687787635,42.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45984.65,0.0,29030.0,2,10,4.0,4,2.0 +5476,7646,1755.983585511533,55.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,358.0,0.0,63074.85,0.0,68320.0,2,6,1.0,3,2.0 +5477,7647,3464.9227797094527,30.0,111,5080.0,67,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37522.7,0.0,30920.0,2,9,7.0,4,1.0 +5478,7648,2499.5480749788067,72.0,120,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15300.0,0.0,0.0,25435.75,0.0,10490.0,1,0,0.0,3,1.0 +5479,7650,2687.480238523461,61.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16460.0,0.0,0.0,15811.75,0.0,0.0,1,8,0.0,1,0.0 +5480,7651,3995.7071361187477,43.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,16.0,0.0,52092.3,0.0,63940.0,1,10,8.0,1,1.0 +5481,7652,3527.23530493087,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4750.0,0.0,0.0,6307.05,0.0,0.0,3,9,7.0,1,0.0 +5482,7654,2543.889589560799,48.0,112,0.0,65,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,37587.05,0.0,29940.0,2,8,3.0,4,2.0 +5483,7655,343.97893861600636,42.0,111,0.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,8460.0,102.0,0.0,32238.5,0.0,19490.0,2,6,5.0,2,1.0 +5484,7656,2550.984269222608,52.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19432.85,0.0,20640.0,5,6,0.0,1,1.0 +5485,7657,1756.8529693334654,62.0,120,3400.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22250.0,0.0,0.0,24632.85,0.0,0.0,1,0,3.0,3,0.0 +5486,7658,5028.9641972116015,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27400.0,0.0,0.0,27135.95,0.0,0.0,3,10,8.0,5,0.0 +5487,7659,3962.7035662200983,46.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,16.0,0.0,50784.1,0.0,51020.0,2,10,8.0,1,1.0 +5488,7660,2252.446620319318,65.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14860.0,0.0,0.0,21131.05,0.0,0.0,1,6,4.0,2,0.0 +5489,7665,2506.7153126318176,77.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19100.0,0.0,0.0,19096.45,0.0,0.0,1,0,0.0,1,0.0 +5490,7666,2049.753188725439,56.0,120,0.0,38,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54598.55,580.0,54640.0,1,0,1.0,4,3.0 +5491,7668,538.1635100946988,33.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,5700.0,0.0,0.0,0.0,0.0,19522.0,0.0,0.0,3,5,4.0,2,0.0 +5492,7669,2083.095198341127,29.0,111,0.0,63,2.0,0.0,3.0,1.8,0.0,12980.0,0.0,0.0,0.0,0.0,18464.0,0.0,0.0,3,8,7.0,5,2.0 +5493,7670,2943.8191827840215,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27870.0,0.0,0.0,27156.85,0.0,0.0,1,7,5.0,1,0.0 +5494,7671,931.694404781317,45.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23071.65,0.0,22060.0,1,9,1.0,2,1.0 +5495,7672,3021.93714190098,27.0,111,6690.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41354.85,0.0,35730.0,3,8,7.0,3,2.0 +5496,7675,581.6866115838799,64.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32660.0,0.0,0.0,28486.65,0.0,0.0,3,1,3.0,3,0.0 +5497,7676,1059.8167835008114,31.0,111,0.0,47,1.0,0.0,2.0,1.3,0.0,7060.0,0.0,0.0,0.0,0.0,8630.0,0.0,0.0,3,8,7.0,2,1.0 +5498,7677,495.424345473058,44.0,300,0.0,67,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24021.8,1990.0,16910.0,3,0,1.0,2,1.0 +5499,7678,1644.9450694570328,54.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66198.45,0.0,71550.0,5,7,5.0,3,2.0 +5500,7679,2508.7692482381567,52.0,111,0.0,21,1.0,1.0,4.0,2.5,0.0,0.0,0.0,21220.0,0.0,0.0,41719.99191596298,0.0,22140.0,1,9,7.0,4,1.0 +5501,7680,823.9960823431231,47.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26260.0,0.0,23490.0,3,4,3.0,2,1.0 +5502,7681,2716.53112382185,50.0,112,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18200.0,0.0,0.0,35761.65,0.0,18220.0,1,9,3.0,2,1.0 +5503,7682,1434.8039798260263,80.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33670.0,0.0,0.0,28143.26184223002,0.0,0.0,1,10,1.0,1,0.0 +5504,7683,3543.8464350368636,50.0,111,2410.0,21,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35437.7,0.0,17690.0,1,10,8.0,4,3.0 +5505,7684,2209.453007684565,39.0,111,1620.0,54,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,61983.9,0.0,62550.0,2,8,6.0,4,2.0 +5506,7685,3765.3502882137113,27.0,300,0.0,65,2.0,1.0,4.0,2.5,0.0,5820.0,0.0,23200.0,0.0,0.0,47061.15,2810.0,15750.0,1,0,0.0,5,2.0 +5507,7687,2082.487742748894,44.0,400,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,882.0,0.0,21342.15,0.0,29990.0,2,0,0.0,4,2.0 +5508,7688,2214.9376880029977,44.0,111,0.0,34,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,5.0,0.0,64996.80063525173,0.0,61910.0,3,9,7.0,4,1.0 +5509,7689,3762.132432431016,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25010.0,0.0,0.0,43756.15,0.0,0.0,1,10,8.0,1,0.0 +5510,7690,1572.4779139822404,29.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36519.9,0.0,38840.0,1,8,0.0,3,2.0 +5511,7693,2492.190608912366,59.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2092.0,0.0,19503.95,0.0,18120.0,1,9,7.0,1,1.0 +5512,7694,1172.8982622719823,53.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,100206.7828428582,0.0,103850.0,3,6,0.0,4,2.0 +5513,7696,1823.4809063183852,62.0,120,3850.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12780.0,0.0,0.0,78013.65,0.0,77660.0,2,0,0.0,3,1.0 +5514,7697,3401.978636665655,21.0,111,0.0,42,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16303.0,1310.0,10670.0,3,8,7.0,3,2.0 +5515,7700,3329.1942133288776,52.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18529.1,0.0,19190.0,3,0,0.0,1,1.0 +5516,7701,2219.1491683138756,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17400.0,0.0,0.0,15980.5,0.0,0.0,1,9,7.0,1,0.0 +5517,7702,2408.7972834655934,50.0,400,940.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16900.0,0.0,0.0,41650.6,0.0,23970.0,1,0,1.0,3,1.0 +5518,7704,3262.885671676559,35.0,111,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,54131.0,0.0,48320.0,3,10,8.0,4,2.0 +5519,7705,1689.3203389613632,59.0,300,14550.0,47,1.0,0.0,2.0,1.5,0.0,0.0,0.0,25330.0,0.0,0.0,37408.7,0.0,0.0,1,0,1.0,3,1.0 +5520,7706,3459.7038801640906,49.0,111,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44432.05,0.0,46680.0,3,10,8.0,4,2.0 +5521,7709,2044.791445952624,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16570.0,0.0,0.0,16788.95,0.0,490.0,3,7,4.0,1,0.0 +5522,7711,721.776082809108,47.0,211,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,46890.05,0.0,38790.0,3,2,3.0,4,2.0 +5523,7712,4209.396142771048,31.0,111,8070.0,54,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33038.3,0.0,23700.0,2,6,5.0,4,2.0 +5524,7713,626.8517961644188,50.0,111,0.0,52,1.0,0.0,2.0,1.3,0.0,7120.0,0.0,0.0,0.0,0.0,13329.0,0.0,0.0,3,9,7.0,2,1.0 +5525,7714,3318.5496879100992,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17600.0,0.0,0.0,17207.35,0.0,0.0,3,10,8.0,1,0.0 +5526,7715,2220.76324153869,30.0,112,6720.0,33,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,40028.15,0.0,28520.0,2,7,0.0,4,1.0 +5527,7716,3033.1053667854503,76.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29670.0,0.0,0.0,29709.0,0.0,0.0,3,8,7.0,3,0.0 +5528,7719,2339.390950627647,36.0,400,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,25.0,0.0,48759.45,0.0,40380.0,2,0,0.0,4,2.0 +5529,7720,1769.339707862297,50.0,111,0.0,37,1.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,2766.0,0.0,64367.75,0.0,57960.0,2,9,7.0,4,1.0 +5530,7721,1831.7959760632382,59.0,111,0.0,81,1.0,0.0,1.0,1.0,0.0,5280.0,0.0,0.0,0.0,0.0,5280.0,0.0,0.0,3,6,5.0,1,1.0 +5531,7730,583.8715132157021,38.0,111,0.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,20642.95,0.0,10630.0,3,9,7.0,2,2.0 +5532,7731,2079.049985072213,55.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21245.55,0.0,22240.0,2,6,0.0,1,1.0 +5533,7733,2925.760328749078,35.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23558.6,0.0,25940.0,3,9,7.0,1,1.0 +5534,7734,2117.724879948281,47.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36885.1,0.0,45960.0,2,10,8.0,1,1.0 +5535,7738,1434.9271195579972,34.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,81.0,0.0,22086.6,0.0,22380.0,1,7,5.0,1,1.0 +5536,7741,1515.8294292147143,51.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48517.45317625865,0.0,53950.0,1,8,7.0,3,2.0 +5537,7742,1766.2449334831747,39.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52137.8,0.0,49940.0,2,9,7.0,4,2.0 +5538,7744,4365.610174290203,67.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22380.0,0.0,0.0,59898.15,0.0,47900.0,1,10,8.0,2,1.0 +5539,7746,2490.915161852148,37.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,62673.45,0.0,66930.0,2,10,8.0,4,2.0 +5540,7747,2222.5125343188047,43.0,112,5480.0,42,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45606.7,0.0,38490.0,2,10,0.0,4,2.0 +5541,7748,3604.9802355602715,69.0,111,0.0,78,2.0,2.0,5.0,2.8,0.0,0.0,0.0,25550.0,0.0,0.0,88530.46078014009,0.0,47820.0,1,9,7.0,5,2.0 +5542,7749,1078.4664548671774,24.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44191.95,0.0,48580.0,2,10,4.0,3,2.0 +5543,7750,2391.598630780953,44.0,111,0.0,85,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,14245.0,0.0,0.0,3,9,7.0,1,0.0 +5544,7751,923.044604023641,31.0,111,0.0,68,1.0,1.0,4.0,1.9,0.0,330.0,0.0,0.0,0.0,0.0,32848.0,3670.0,12590.0,3,10,8.0,2,1.0 +5545,7752,2220.2481009004314,34.0,111,6090.0,65,1.0,0.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,35463.2,770.0,8230.0,3,6,4.0,5,1.0 +5546,7754,1825.7026040913224,87.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21880.0,0.0,0.0,21807.3,0.0,0.0,1,4,4.0,3,0.0 +5547,7755,696.2994821750208,57.0,221,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40967.5,0.0,40150.0,2,1,3.0,4,2.0 +5548,7757,1533.5866514886477,32.0,111,4690.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54343.95,0.0,41650.0,3,10,8.0,4,2.0 +5549,7758,3454.0637539951413,29.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38322.0,0.0,45280.0,1,7,5.0,1,1.0 +5550,7759,2136.505104782897,55.0,400,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,21.0,0.0,39279.1,0.0,41380.0,2,0,0.0,3,2.0 +5551,7761,2925.8663209240813,28.0,111,0.0,64,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29452.85,680.0,23480.0,3,9,7.0,4,1.0 +5552,7762,1467.9573496893092,76.0,211,0.0,,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21410.0,0.0,0.0,21218.65,0.0,0.0,3,3,4.0,3,0.0 +5553,7763,5147.069336206281,42.0,111,1930.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4843.4,0.0,0.0,3,10,8.0,1,1.0 +5554,7764,1470.4553265047007,66.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,32270.0,47.0,0.0,35336.05,0.0,0.0,1,10,8.0,1,1.0 +5555,7766,2274.241880645514,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,3840.0,11010.0,0.0,0.0,14850.0,0.0,0.0,3,9,7.0,3,0.0 +5556,7767,3496.828331517844,42.0,400,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,6170.0,0.0,0.0,26732.3,0.0,22970.0,2,0,0.0,2,1.0 +5557,7772,1164.456067720108,56.0,111,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,74943.05,0.0,86820.0,3,10,8.0,2,1.0 +5558,7773,1901.5461980504085,60.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44340.0,0.0,0.0,40140.25,0.0,0.0,1,7,5.0,3,0.0 +5559,7774,1314.8993509783313,55.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44337.4,0.0,46870.0,2,8,2.0,3,2.0 +5560,7776,2879.954110873043,50.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33267.7,0.0,36610.0,3,10,8.0,3,2.0 +5561,7777,3861.682487364104,66.0,112,0.0,77,0.0,0.0,3.0,2.0,0.0,0.0,0.0,46820.0,0.0,0.0,46497.85,0.0,0.0,1,6,0.0,5,0.0 +5562,7778,342.1771896449455,52.0,111,0.0,34,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43382.35,0.0,38460.0,3,9,7.0,2,1.0 +5563,7779,1628.873473461335,66.0,112,0.0,22,1.0,0.0,2.0,1.5,0.0,0.0,0.0,52880.0,930.0,0.0,63090.911020521846,0.0,0.0,1,8,1.0,3,1.0 +5564,7780,1043.7969203762966,43.0,111,230.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30732.15,0.0,26720.0,1,10,8.0,2,1.0 +5565,7781,712.6458246640963,43.0,111,0.0,34,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34270.5,0.0,32820.0,1,9,7.0,2,1.0 +5566,7782,1578.1035554810485,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28820.0,0.0,0.0,27932.55,0.0,0.0,2,7,1.0,3,0.0 +5567,7785,4642.964529664665,32.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,117.0,0.0,16876.6,0.0,17310.0,3,6,5.0,1,1.0 +5568,7786,480.2193026288413,44.0,111,0.0,56,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,31772.75,0.0,19430.0,3,8,7.0,2,1.0 +5569,7787,2445.116465496456,44.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40148.95,240.0,42380.0,2,6,4.0,3,2.0 +5570,7788,3077.3831012357946,29.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42218.599440599224,0.0,43260.0,2,5,4.0,3,2.0 +5571,7789,896.980128080128,53.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,108206.55,0.0,172580.0,1,4,3.0,4,2.0 +5572,7790,3867.995074024387,51.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55625.85,0.0,61220.0,1,10,8.0,3,2.0 +5573,7792,2057.9976141161296,39.0,300,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,72325.85,0.0,84600.0,2,0,0.0,4,2.0 +5574,7793,2775.9602011858037,29.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27860.5,0.0,31180.0,3,6,5.0,1,1.0 +5575,7794,759.6970408380388,57.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,92533.7,0.0,104710.0,2,9,7.0,3,2.0 +5576,7795,3259.9161340615983,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29270.0,0.0,0.0,26805.8,0.0,0.0,1,10,8.0,1,0.0 +5577,7796,3895.942814156833,79.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19190.0,0.0,0.0,17917.6,0.0,0.0,1,0,0.0,1,0.0 +5578,7797,1093.7736123835473,60.0,111,0.0,77,0.0,0.0,1.0,1.0,3420.0,0.0,0.0,0.0,0.0,0.0,6109.0,0.0,0.0,3,8,6.0,1,0.0 +5579,7798,1830.6573763087144,60.0,112,0.0,22,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61772.55,0.0,26170.0,3,10,3.0,4,3.0 +5580,7799,2317.8488990864016,34.0,300,0.0,52,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,48308.65,0.0,41990.0,3,0,0.0,4,2.0 +5581,7800,1777.0635449657607,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54600.0,294.0,0.0,51417.1,0.0,0.0,1,10,8.0,3,0.0 +5582,7802,943.2272387302236,52.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,6340.0,0.0,0.0,38828.7,0.0,29100.0,1,7,5.0,2,1.0 +5583,7803,2404.3556901918955,34.0,111,24610.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39432.05,0.0,10420.0,2,9,7.0,4,2.0 +5584,7804,2726.2253262140407,39.0,111,19100.0,38,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30103.3,0.0,9960.0,3,9,7.0,2,1.0 +5585,7805,4224.340986896368,52.0,111,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36175.1,0.0,17060.0,3,8,6.0,4,2.0 +5586,7806,1421.4190640589347,58.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32112.7,0.0,33450.0,2,8,7.0,3,2.0 +5587,7808,1142.1243169274521,40.0,111,140.0,55,1.0,1.0,7.0,3.4,0.0,4180.0,0.0,0.0,0.0,0.0,34541.9,4130.0,6560.0,3,7,6.0,4,1.0 +5588,7809,2801.3485239283978,63.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15030.0,0.0,0.0,22188.6,0.0,7530.0,1,9,7.0,3,1.0 +5589,7810,3137.302307764384,86.0,112,0.0,78,0.0,0.0,2.0,1.5,7930.0,0.0,0.0,18170.0,0.0,0.0,25828.7,0.0,0.0,1,8,0.0,3,0.0 +5590,7811,2784.0640996318025,45.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51552.85,0.0,52260.0,2,4,4.0,4,2.0 +5591,7812,2209.292631970182,64.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11220.0,0.0,0.0,11577.0,0.0,0.0,3,9,1.0,1,0.0 +5592,7815,3968.6029118036195,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43180.0,0.0,0.0,34918.45,0.0,0.0,1,6,5.0,1,0.0 +5593,7817,2018.1210483377117,58.0,111,10160.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,13352.0,129.0,154318.8,0.0,93070.0,2,8,7.0,3,2.0 +5594,7819,2713.4850749524808,54.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,846.0,0.0,166834.5,0.0,162910.0,2,10,8.0,4,2.0 +5595,7820,1959.6701584667867,52.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,103.0,0.0,164975.6339445999,0.0,138440.0,1,9,7.0,3,2.0 +5596,7821,1124.3729413856925,35.0,112,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,26083.65,3100.0,20980.0,2,8,1.0,2,1.0 +5597,7824,2421.2603795507534,36.0,111,13240.0,46,2.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24731.9,0.0,10210.0,2,8,6.0,4,2.0 +5598,7825,3734.412039514338,72.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,5660.0,3910.0,0.0,0.0,13170.0,0.0,0.0,3,10,8.0,1,0.0 +5599,7826,2872.108855861905,56.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3820.0,0.0,0.0,22675.9,660.0,13800.0,3,7,5.0,1,1.0 +5600,7828,1492.0225434468045,38.0,300,1370.0,13,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,30193.35,0.0,0.0,2,0,0.0,4,1.0 +5601,7829,3469.956279081641,52.0,111,2880.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52907.0,0.0,1000.0,3,10,8.0,3,2.0 +5602,7830,3867.44632555372,28.0,112,180.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40720.2,290.0,33600.0,2,10,0.0,4,2.0 +5603,7834,1805.0820208463156,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37850.0,0.0,0.0,34670.45,0.0,0.0,1,10,0.0,3,0.0 +5604,7835,2178.3958283528045,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20810.0,0.0,0.0,19141.05508201384,0.0,0.0,1,9,7.0,1,0.0 +5605,7837,5881.837566359591,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16184.0,0.0,6570.0,3,10,8.0,1,0.0 +5606,7838,1688.913948114323,71.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19270.0,0.0,0.0,35025.2,0.0,18370.0,1,8,7.0,3,1.0 +5607,7839,392.8730518873018,44.0,112,0.0,47,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28112.15,0.0,28690.0,3,9,0.0,2,1.0 +5608,7841,2085.0755491132654,36.0,120,3380.0,42,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38524.4,0.0,33520.0,2,0,0.0,4,2.0 +5609,7842,1893.173032757343,54.0,111,740.0,48,3,1.0,4.0,2.5,0.0,0.0,0.0,26750.0,0.0,0.0,26362.8,0.0,1350.0,3,8,6.0,4,3.0 +5610,7843,2495.1363791418016,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17860.0,0.0,0.0,17642.9,0.0,0.0,3,7,5.0,1,0.0 +5611,7845,1677.3623558879667,90.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,9610.0,43710.0,0.0,0.0,47329.0,0.0,0.0,5,1,3.0,2,0.0 +5612,7847,1920.1543104878674,37.0,111,8750.0,45,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,56296.25,0.0,35500.0,2,10,8.0,4,2.0 +5613,7849,2159.78501981688,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41910.0,0.0,0.0,39141.65,0.0,0.0,1,8,7.0,3,0.0 +5614,7851,2349.7604437710233,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18240.0,0.0,0.0,16464.6,0.0,0.0,1,6,4.0,1,0.0 +5615,7857,2375.8398375975257,75.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26950.0,0.0,0.0,48235.49636848169,0.0,26170.0,2,10,8.0,3,1.0 +5616,7859,3623.0082447865525,25.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18164.8,0.0,20060.0,3,10,8.0,1,1.0 +5617,7861,3908.9447008664547,62.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,5490.5,0.0,0.0,1,1,3.0,1,0.0 +5618,7863,1003.6183141554017,30.0,111,7080.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18041.45,440.0,4840.0,3,4,3.0,2,1.0 +5619,7864,2115.285661521183,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23860.0,0.0,0.0,23357.7,0.0,0.0,1,6,4.0,1,0.0 +5620,7865,1857.5004501834824,59.0,120,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,12660.0,0.0,0.0,14328.7,0.0,1950.0,1,0,0.0,1,1.0 +5621,7867,2701.7442372206183,45.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,507.0,0.0,27992.1,0.0,30250.0,1,5,4.0,1,1.0 +5622,7868,2670.802981568463,45.0,111,12680.0,65,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14529.2,0.0,1680.0,3,8,7.0,1,1.0 +5623,7869,965.4244355759502,26.0,112,0.0,56,1.0,0.0,3.0,1.6,0.0,6040.0,0.0,0.0,0.0,0.0,16858.0,0.0,600.0,3,6,1.0,2,1.0 +5624,7870,2217.407982369894,53.0,300,0.0,85,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8925.0,0.0,0.0,3,0,0.0,1,0.0 +5625,7871,1096.2804334674586,22.0,111,1650.0,56,1.0,1.0,2.0,1.3,0.0,460.0,0.0,0.0,0.0,0.0,15911.45,1960.0,5590.0,3,8,7.0,2,1.0 +5626,7872,3397.120044681143,26.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12790.0,0.0,11300.0,3,7,5.0,1,1.0 +5627,7874,2948.7114762320516,75.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23330.0,0.0,0.0,24006.8,0.0,0.0,5,0,0.0,1,0.0 +5628,7875,3414.573633034128,41.0,111,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31501.95,1660.0,21550.0,3,8,7.0,4,1.0 +5629,7876,1488.2489548019528,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41300.0,0.0,0.0,37798.95,0.0,0.0,1,6,5.0,3,0.0 +5630,7878,1556.1409877540534,59.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4130.0,0.0,0.0,17187.95,0.0,14540.0,2,0,1.0,1,1.0 +5631,7879,2153.9254794933413,52.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10554.05,0.0,9650.0,3,7,5.0,1,1.0 +5632,7880,2014.845710834759,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22030.0,0.0,0.0,23808.75,0.0,0.0,1,9,7.0,1,0.0 +5633,7881,5350.688380722057,64.0,300,0.0,78,1.0,0.0,2.0,1.5,8560.0,0.0,0.0,24870.0,0.0,0.0,39103.15,0.0,5120.0,1,0,0.0,2,1.0 +5634,7883,2877.3612142002194,71.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23210.0,0.0,0.0,20372.0,0.0,0.0,3,0,1.0,5,0.0 +5635,7884,1785.2783186984382,45.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31492.1,0.0,35420.0,3,8,0.0,1,1.0 +5636,7885,1707.979735210798,76.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24220.0,0.0,0.0,24797.0,0.0,0.0,1,0,1.0,3,0.0 +5637,7886,1126.9967213630011,32.0,211,0.0,68,1.0,0.0,4.0,2.1,0.0,2320.0,0.0,0.0,0.0,0.0,22144.0,100.0,1870.0,3,3,3.0,2,1.0 +5638,7887,1866.8944143739977,69.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38180.0,0.0,0.0,35943.0,0.0,0.0,5,4,0.0,1,0.0 +5639,7888,2122.5328015260748,74.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39200.0,0.0,0.0,37863.35,0.0,0.0,3,9,7.0,3,0.0 +5640,7891,2376.580039381453,41.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,108.0,0.0,67612.35,0.0,19550.0,1,7,0.0,4,2.0 +5641,7892,2073.847483696715,39.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59880.0,0.0,64200.0,2,9,7.0,4,2.0 +5642,7893,668.9203708540465,58.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19880.0,0.0,0.0,45652.45,0.0,810.0,1,4,3.0,3,0.0 +5643,7895,2776.1873605891146,48.0,300,2400.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46250.05,0.0,38030.0,2,0,0.0,4,2.0 +5644,7898,2671.786992584897,86.0,221,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19770.0,0.0,0.0,21247.75,0.0,0.0,1,1,2.0,1,0.0 +5645,7899,2576.7832100267615,59.0,112,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,36610.0,0.0,0.0,59192.2,0.0,31180.0,1,10,4.0,4,1.0 +5646,7900,1139.9447074669524,42.0,0,480.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19944.4,2860.0,16140.0,3,0,0.0,2,1.0 +5647,7901,3049.7197731197243,54.0,111,0.0,47,3,3.0,4.0,2.5,8990.0,7200.0,0.0,0.0,0.0,0.0,72684.9,0.0,61750.0,1,8,6.0,4,3.0 +5648,7902,3855.570809291012,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14340.0,0.0,0.0,17580.0,0.0,0.0,3,10,8.0,1,0.0 +5649,7904,1521.9470236627553,65.0,112,7250.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18760.0,0.0,0.0,36486.3,0.0,12320.0,1,10,3.0,3,1.0 +5650,7908,2737.334976979133,56.0,111,3440.0,34,3,4.0,6.0,3.5,0.0,0.0,0.0,22530.0,0.0,0.0,155161.85,790.0,150620.0,1,10,8.0,4,5.0 +5651,7911,1097.5835838164505,42.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28750.25,0.0,21240.0,3,9,7.0,2,1.0 +5652,7912,568.2559679675137,42.0,111,810.0,85,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,29468.0,110.0,3180.0,3,10,8.0,2,1.0 +5653,7913,1786.7584040549134,51.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,2180.0,0.0,0.0,0.0,0.0,13700.0,2250.0,4590.0,3,9,7.0,1,1.0 +5654,7916,1849.3251944863157,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22790.0,0.0,0.0,22097.0,0.0,0.0,1,8,6.0,1,0.0 +5655,7917,1382.0802104203299,65.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19740.0,0.0,0.0,68255.55,0.0,12510.0,1,0,0.0,3,0.0 +5656,7918,3014.490738386936,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30610.0,0.0,0.0,30106.30063525173,0.0,630.0,2,9,7.0,3,0.0 +5657,7920,1433.015119233471,56.0,111,0.0,45,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34677.75,0.0,30570.0,2,7,5.0,2,1.0 +5658,7925,2753.5727011758854,54.0,211,10480.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33579.9,0.0,25120.0,2,1,3.0,2,2.0 +5659,7926,9005.38811654121,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11250.0,0.0,0.0,23969.65,0.0,14140.0,3,8,7.0,1,0.0 +5660,7927,1985.4044235801782,48.0,120,0.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,52218.15,0.0,50700.0,2,0,3.0,4,2.0 +5661,7928,1883.1419650605137,44.0,111,0.0,85,0.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,10002.5,0.0,0.0,2,9,7.0,2,0.0 +5662,7929,2294.469346003231,75.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23560.0,0.0,0.0,23720.15,0.0,0.0,1,0,1.0,3,0.0 +5663,7930,1682.2718437456615,57.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,5220.0,0.0,0.0,38728.1,0.0,34890.0,2,7,5.0,3,2.0 +5664,7931,4366.029457710311,42.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21082.95,0.0,21320.0,3,10,8.0,3,2.0 +5665,7932,1614.921378940987,51.0,400,0.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10131.65,530.0,8010.0,2,0,0.0,3,2.0 +5666,7936,2593.5574107914936,59.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,2,9,7.0,1,0.0 +5667,7937,2441.7261079600885,72.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21700.0,0.0,0.0,28254.9,0.0,0.0,1,0,0.0,1,0.0 +5668,7939,550.1261746404025,36.0,112,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,32398.35,0.0,15840.0,4,4,0.0,2,1.0 +5669,7940,2052.8377376623257,54.0,112,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42905.1,0.0,45200.0,1,8,3.0,3,2.0 +5670,7944,1448.6200961720858,44.0,111,0.0,47,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,16486.7,3440.0,10790.0,3,10,8.0,2,1.0 +5671,7945,1903.0537140260915,56.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11660.0,0.0,0.0,11296.0,0.0,0.0,1,0,1.0,1,0.0 +5672,7946,709.9030460000679,35.0,111,0.0,68,2.0,1.0,3.0,1.8,0.0,5990.0,0.0,0.0,0.0,0.0,16980.0,430.0,5800.0,3,7,5.0,4,2.0 +5673,7950,3684.948309774325,46.0,111,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,1670.0,0.0,162413.4,0.0,227780.0,2,10,8.0,4,2.0 +5674,7951,1436.7494156995317,65.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29290.0,0.0,0.0,31925.35,0.0,0.0,1,0,1.0,3,0.0 +5675,7954,3116.4792432819213,84.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,42710.0,0.0,0.0,62980.85,0.0,24050.0,5,10,8.0,4,1.0 +5676,7956,1011.4027296049486,40.0,111,0.0,67,2.0,1.0,6.0,3.3,0.0,7010.0,0.0,0.0,0.0,0.0,43564.0,1920.0,19990.0,3,9,7.0,4,2.0 +5677,7957,1347.5430593924882,52.0,112,0.0,54,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35174.5,0.0,31920.0,2,10,1.0,4,3.0 +5678,7958,2800.8203924693044,33.0,120,2440.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30561.4,0.0,27110.0,2,0,1.0,3,2.0 +5679,7959,2168.07110329647,76.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47160.0,0.0,0.0,43854.5,0.0,0.0,1,1,1.0,3,0.0 +5680,7960,2340.4972814458674,55.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34061.9,0.0,35540.0,2,5,4.0,3,2.0 +5681,7961,1821.9508918546105,57.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42031.6,0.0,45380.0,1,7,0.0,3,2.0 +5682,7962,3344.285881794377,51.0,111,0.0,68,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,73762.5,160.0,69360.0,1,10,8.0,5,4.0 +5683,7963,2572.8349658257584,32.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53591.8,0.0,48710.0,3,9,7.0,4,2.0 +5684,7964,2386.4972797260725,58.0,400,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25796.05,0.0,27480.0,2,0,0.0,1,1.0 +5685,7966,1307.4289107153297,56.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27079.7,580.0,15240.0,2,0,1.0,3,2.0 +5686,7967,6367.422451321009,29.0,221,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27842.7,0.0,28060.0,3,1,2.0,1,1.0 +5687,7969,2404.969391741983,35.0,300,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,41.0,0.0,22347.45,0.0,23540.0,2,0,0.0,1,1.0 +5688,7970,1989.5374827377875,67.0,112,1180.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18130.0,0.0,0.0,25983.3,0.0,7760.0,1,9,1.0,3,0.0 +5689,7971,3104.9972047042197,83.0,111,0.0,78,1.0,0.0,4.0,2.5,0.0,6900.0,4720.0,16670.0,0.0,0.0,28525.3,0.0,0.0,3,8,7.0,4,1.0 +5690,7972,2068.5620355253905,42.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,2520.0,0.0,117261.7,0.0,130160.0,2,8,7.0,4,2.0 +5691,7975,2448.438264775068,31.0,300,0.0,48,1.0,0.0,1.0,1.0,0.0,6420.0,0.0,0.0,0.0,0.0,6093.05,0.0,0.0,1,0,0.0,1,1.0 +5692,7976,603.5576883278663,24.0,112,890.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30847.0,1250.0,25700.0,3,8,0.0,4,2.0 +5693,7977,3190.4250460162207,57.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19607.85,0.0,20480.0,2,8,6.0,1,1.0 +5694,7979,1314.9880798047825,71.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27100.0,0.0,0.0,25460.4,0.0,0.0,1,0,1.0,3,0.0 +5695,7981,5130.169017047735,38.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23251.6,0.0,25940.0,3,10,8.0,1,1.0 +5696,7982,5057.360033714215,25.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,3630.0,0.0,0.0,0.0,0.0,12887.15,1300.0,6180.0,3,7,6.0,1,1.0 +5697,7983,2122.758893452555,73.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14520.0,0.0,0.0,14364.5,0.0,0.0,1,1,3.0,1,0.0 +5698,7984,2480.5902048217877,56.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,771.0,0.0,45759.9,780.0,46800.0,1,8,0.0,3,2.0 +5699,7985,255.04290880150148,55.0,211,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18871.9,3690.0,9800.0,3,4,3.0,2,1.0 +5700,7986,2494.0051279705917,46.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,78798.1,0.0,91210.0,1,10,8.0,4,2.0 +5701,7988,2552.9253366043367,75.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23190.0,172.0,0.0,23237.45,0.0,0.0,1,0,1.0,1,0.0 +5702,7990,559.6819432831638,40.0,111,5220.0,38,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,27845.55,0.0,490.0,3,7,6.0,2,1.0 +5703,7991,3411.0429628117895,54.0,111,0.0,78,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12601.0,0.0,0.0,3,8,6.0,1,0.0 +5704,7992,4206.483578596386,47.0,112,0.0,47,3,5.0,7.0,3.8,0.0,0.0,0.0,0.0,0.0,0.0,84017.3,0.0,83680.0,1,10,4.0,5,5.0 +5705,7993,1869.161623977129,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37180.0,0.0,0.0,33779.52273158244,0.0,0.0,1,9,7.0,1,0.0 +5706,7994,3288.23146931361,34.0,400,10050.0,64,2.0,1.0,3.0,1.8,0.0,0.0,0.0,1730.0,0.0,0.0,33675.5,0.0,18660.0,2,0,0.0,4,2.0 +5707,7995,1663.4331842853408,73.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33730.0,0.0,0.0,31866.0,0.0,0.0,1,9,3.0,3,0.0 +5708,7996,2145.7390841453707,60.0,300,80.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,7940.0,0.0,0.0,8183.7,0.0,10.0,1,0,0.0,1,1.0 +5709,7997,1833.554341426663,52.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,62182.55,0.0,70400.0,2,9,0.0,4,2.0 +5710,7998,2904.7467219614396,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,1840.0,7970.0,0.0,0.0,11694.0,0.0,0.0,3,8,6.0,1,0.0 +5711,7999,1673.4600135847804,67.0,400,4530.0,69,2.0,1.0,3.0,2.0,0.0,0.0,0.0,19560.0,0.0,0.0,34128.7,0.0,10910.0,1,0,0.0,4,2.0 +5712,8001,385.38457645892805,36.0,221,0.0,22,1.0,1.0,3.0,1.8,0.0,6770.0,0.0,0.0,0.0,0.0,15759.0,590.0,1160.0,3,1,3.0,2,1.0 +5713,8003,3468.505223709695,82.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29570.0,0.0,0.0,29139.75,0.0,0.0,3,4,4.0,3,0.0 +5714,8004,1313.0216429104469,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26140.0,0.0,0.0,23342.85,0.0,0.0,1,6,5.0,3,0.0 +5715,8007,3329.3918854112007,25.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22534.05,0.0,25200.0,2,7,6.0,1,1.0 +5716,8008,3515.963885858901,32.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58197.5,0.0,56400.0,2,9,7.0,4,2.0 +5717,8009,2246.371061463636,63.0,111,2440.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24940.0,0.0,0.0,24752.05,0.0,0.0,1,8,6.0,1,0.0 +5718,8011,3312.7297335144813,91.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30340.0,0.0,0.0,28209.75,0.0,0.0,1,10,8.0,1,0.0 +5719,8013,1334.2400111250406,37.0,221,7960.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32373.45,0.0,20790.0,5,1,3.0,3,2.0 +5720,8014,800.6501480834926,41.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,42160.0,0.0,0.0,92536.7,0.0,54310.0,3,10,8.0,4,2.0 +5721,8017,1335.6609636665921,51.0,111,0.0,65,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,57492.2,0.0,52640.0,1,4,4.0,4,2.0 +5722,8018,990.1713398842587,34.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,2980.0,0.0,0.0,0.0,0.0,19717.4,1770.0,9050.0,3,8,7.0,2,1.0 +5723,8020,2804.95901564308,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21220.0,0.0,0.0,21014.95,0.0,0.0,3,9,7.0,1,0.0 +5724,8024,1771.1346837214296,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50700.0,0.0,0.0,48789.895036017675,0.0,0.0,1,7,0.0,3,0.0 +5725,8025,604.9736043144636,38.0,111,0.0,85,0.0,0.0,3.0,1.6,3310.0,0.0,0.0,0.0,0.0,0.0,12778.0,0.0,0.0,3,6,5.0,2,0.0 +5726,8026,1974.931744108395,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20600.0,0.0,0.0,20027.15,0.0,0.0,2,7,5.0,1,0.0 +5727,8028,2724.9251806386296,54.0,111,0.0,67,1.0,1.0,1.0,1.0,3370.0,0.0,0.0,0.0,0.0,0.0,12028.1,0.0,8580.0,1,6,5.0,1,1.0 +5728,8029,3564.279119306255,25.0,111,1160.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30135.5,0.0,30270.0,3,8,7.0,4,2.0 +5729,8032,1964.0983122178138,47.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,69756.15,0.0,75040.0,1,6,5.0,4,2.0 +5730,8033,3851.3759876040913,68.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32910.0,0.0,0.0,41514.0,0.0,12910.0,1,10,8.0,3,1.0 +5731,8034,2019.5870191963647,46.0,120,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44327.9831189025,0.0,0.0,1,0,0.0,4,2.0 +5732,8036,6467.309350041569,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,8370.0,1240.0,0.0,0.0,13150.0,0.0,0.0,3,9,7.0,1,0.0 +5733,8037,2201.134116436121,41.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,80588.2,0.0,83560.0,1,9,7.0,4,2.0 +5734,8038,1473.8606455123518,64.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10880.0,0.0,0.0,10605.05,0.0,0.0,3,10,5.0,1,0.0 +5735,8039,3329.55278753893,59.0,111,0.0,33,1.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,57211.11514957779,0.0,68260.0,2,9,7.0,4,1.0 +5736,8045,2933.287837704911,60.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8619.55,0.0,0.0,3,9,7.0,1,0.0 +5737,8048,3179.7696372858472,77.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31100.0,0.0,0.0,28661.23418033564,0.0,0.0,1,8,7.0,3,0.0 +5738,8049,4857.760556632616,42.0,111,3120.0,62,1.0,0.0,1.0,1.0,6460.0,0.0,0.0,0.0,0.0,0.0,23148.0,0.0,10520.0,3,7,5.0,1,1.0 +5739,8051,2081.3262105038334,39.0,112,0.0,62,3,3.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,45186.35,0.0,44370.0,2,6,0.0,4,3.0 +5740,8052,2788.46424181393,55.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34270.0,0.0,0.0,30298.6,0.0,0.0,1,0,1.0,1,0.0 +5741,8053,1562.3656455611692,59.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34760.7,0.0,37300.0,1,7,5.0,3,2.0 +5742,8054,1779.8330578897192,36.0,400,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23932.65,0.0,25280.0,2,0,0.0,1,1.0 +5743,8055,1998.5825202990802,40.0,112,340.0,62,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,59510.35,240.0,59880.0,2,7,0.0,4,3.0 +5744,8058,4936.702680634068,89.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26130.0,0.0,0.0,25791.35,0.0,0.0,5,9,7.0,3,0.0 +5745,8059,1134.6336144207964,33.0,111,0.0,21,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,16262.9,0.0,7500.0,3,8,7.0,2,1.0 +5746,8060,1925.9656332734564,45.0,111,0.0,65,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52833.95,0.0,53520.0,3,8,7.0,4,2.0 +5747,8061,2117.619516297409,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54450.0,42.0,0.0,48956.1,0.0,0.0,1,10,8.0,3,0.0 +5748,8062,2007.098734957547,69.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,71450.0,33.0,0.0,62919.0,0.0,0.0,1,9,0.0,3,0.0 +5749,8063,2484.348977185586,34.0,300,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47361.55,0.0,41210.0,2,0,0.0,4,2.0 +5750,8064,1733.6708886166718,53.0,112,0.0,38,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,3931.0,0.0,76228.95,0.0,75260.0,1,9,1.0,2,1.0 +5751,8065,2072.0542325856973,36.0,112,0.0,45,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43998.95,550.0,40660.0,2,8,0.0,4,2.0 +5752,8066,3176.994882284199,46.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22055.05,0.0,24070.0,3,10,8.0,1,1.0 +5753,8067,2565.740960449117,33.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45358.65,0.0,48990.0,3,7,5.0,3,2.0 +5754,8068,1841.6496266547333,54.0,111,1850.0,53,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56127.10353277039,0.0,53930.0,1,9,7.0,4,2.0 +5755,8069,1002.4674495018023,49.0,111,4810.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22964.4,0.0,21420.0,2,4,3.0,1,1.0 +5756,8071,4579.1950758167,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15050.0,0.0,0.0,14208.75,0.0,0.0,1,6,4.0,1,0.0 +5757,8072,1095.2881448889943,78.0,211,5900.0,75,1.0,1.0,5.0,3.0,0.0,12860.0,0.0,48430.0,0.0,0.0,99839.0,2790.0,17050.0,3,1,2.0,5,1.0 +5758,8074,1613.0293207698435,48.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,608.0,0.0,36484.05,0.0,37260.0,1,5,4.0,3,2.0 +5759,8075,481.13478964245525,50.0,111,3080.0,85,1.0,0.0,4.0,2.5,0.0,700.0,0.0,0.0,0.0,0.0,22990.0,60.0,0.0,3,9,7.0,2,1.0 +5760,8077,1950.4691181272344,53.0,400,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26169.2,0.0,26250.0,2,0,0.0,2,1.0 +5761,8080,2745.310946409489,41.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18190.15,590.0,17790.0,3,5,4.0,1,1.0 +5762,8081,1987.9684173483906,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35550.0,0.0,0.0,40113.2,0.0,0.0,1,9,7.0,3,0.0 +5763,8082,1307.368040845542,42.0,111,3690.0,67,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25932.45,0.0,14810.0,3,5,4.0,2,1.0 +5764,8084,3644.3548653754933,52.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18765.6,0.0,19740.0,1,6,4.0,1,1.0 +5765,8085,2151.149208898951,33.0,112,1260.0,55,2.0,0.0,3.0,1.8,0.0,6030.0,0.0,0.0,0.0,0.0,19545.0,0.0,4960.0,3,10,4.0,4,2.0 +5766,8088,2379.4568872578834,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43450.0,19.0,0.0,41804.87358240725,0.0,0.0,1,9,7.0,3,0.0 +5767,8089,3108.9359188927615,33.0,111,0.0,23,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,49262.35,0.0,33190.0,1,8,6.0,4,2.0 +5768,8090,2876.0336415814418,85.0,221,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11660.0,0.0,0.0,11721.0,0.0,0.0,1,1,1.0,1,0.0 +5769,8091,6605.734186344092,25.0,111,8310.0,65,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16709.55,0.0,0.0,3,10,8.0,1,1.0 +5770,8092,2254.17374176639,49.0,112,0.0,12,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39102.85,0.0,37400.0,1,7,4.0,4,3.0 +5771,8093,2263.2961403371096,44.0,112,5240.0,52,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43655.3,840.0,34970.0,2,8,1.0,4,3.0 +5772,8095,3054.133858692995,37.0,120,3660.0,55,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,23636.05,2290.0,6200.0,2,0,3.0,4,1.0 +5773,8096,2371.8948951984294,75.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12080.0,606.0,197.0,12126.75,0.0,0.0,1,8,1.0,1,0.0 +5774,8097,1630.497024605956,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20870.0,0.0,0.0,19343.8,0.0,0.0,1,7,5.0,1,0.0 +5775,8098,3021.5364201180428,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26310.0,0.0,0.0,24236.0,0.0,0.0,5,7,5.0,1,0.0 +5776,8100,2310.5411321441043,49.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,103005.8,0.0,114540.0,1,9,7.0,4,2.0 +5777,8101,2344.620812841232,39.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45789.25,0.0,46250.0,1,9,2.0,4,2.0 +5778,8102,2085.5344801249803,39.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54702.5,0.0,45740.0,2,10,2.0,4,2.0 +5779,8104,2015.764545226271,40.0,300,2450.0,64,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38814.0,0.0,35540.0,2,0,1.0,4,2.0 +5780,8106,3301.92826681253,27.0,111,8740.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36590.1,0.0,32620.0,3,9,7.0,3,2.0 +5781,8107,2265.511064234525,59.0,120,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55220.2,0.0,65490.0,1,0,0.0,3,2.0 +5782,8108,2415.559166635892,26.0,120,4910.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31923.35,0.0,27190.0,3,0,1.0,3,2.0 +5783,8110,4487.941092438341,28.0,221,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17767.9,580.0,17790.0,3,1,2.0,1,1.0 +5784,8111,3079.2495650297483,70.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,45350.0,0.0,0.0,38407.0,0.0,0.0,1,1,3.0,1,0.0 +5785,8112,2310.334912039928,57.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29509.3,0.0,28140.0,2,10,8.0,2,1.0 +5786,8114,1592.5553594748953,69.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37520.0,498.0,0.0,37948.65,0.0,0.0,1,0,0.0,3,0.0 +5787,8115,2075.201098009805,52.0,111,0.0,46,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,57940.9,0.0,59610.0,1,9,7.0,4,3.0 +5788,8116,6104.00787996074,28.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28829.7,0.0,27700.0,3,10,8.0,1,1.0 +5789,8118,2007.253059716617,44.0,111,4990.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60223.9,0.0,64090.0,2,9,7.0,4,2.0 +5790,8119,2962.06803877379,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19980.0,26.0,0.0,20091.6,0.0,0.0,3,9,7.0,1,0.0 +5791,8122,2741.0780186207226,49.0,120,1810.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,38467.0,51889.15,0.0,11770.0,3,0,1.0,4,2.0 +5792,8123,5855.493872266118,36.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,10.0,0.0,28076.05,0.0,31740.0,1,10,8.0,3,1.0 +5793,8124,2585.659909448168,88.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21860.0,2065.0,0.0,25078.6,0.0,0.0,1,8,0.0,3,0.0 +5794,8126,2823.1545535943346,82.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,5820.0,0.0,40570.0,0.0,0.0,41543.71836067128,0.0,1950.0,1,1,3.0,2,0.0 +5795,8127,408.9929913738376,41.0,111,0.0,55,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32626.55,0.0,14990.0,3,9,7.0,2,1.0 +5796,8128,3388.4192497487898,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18440.0,0.0,0.0,19402.0,0.0,0.0,3,8,6.0,1,0.0 +5797,8129,4325.766508390314,35.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39892.1,0.0,39610.0,3,8,6.0,1,1.0 +5798,8130,2108.615441575728,41.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,69611.0,0.0,73750.0,2,5,4.0,4,2.0 +5799,8131,2227.6844098401343,74.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31170.0,0.0,0.0,32100.2,0.0,0.0,1,0,0.0,3,0.0 +5800,8132,3179.542467908313,29.0,112,11400.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32653.5,0.0,22310.0,2,9,0.0,3,2.0 +5801,8135,1848.9880934040207,71.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,42100.0,0.0,0.0,36701.8,0.0,0.0,1,0,0.0,1,0.0 +5802,8136,1734.2239946907682,76.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42420.0,0.0,0.0,38808.48757611819,0.0,0.0,1,0,0.0,3,0.0 +5803,8139,2120.515682680936,58.0,111,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,62413.2,0.0,63390.0,2,9,7.0,4,3.0 +5804,8140,3413.271474670919,39.0,112,40.0,21,2.0,1.0,6.0,2.7,0.0,0.0,0.0,1550.0,0.0,0.0,47301.85,0.0,16830.0,3,9,1.0,4,2.0 +5805,8142,3519.06781411751,55.0,111,0.0,52,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39619.35,2150.0,37350.0,3,10,8.0,2,3.0 +5806,8144,1684.3093454181226,61.0,111,0.0,78,0.0,0.0,7.0,4.0,0.0,0.0,0.0,19840.0,0.0,0.0,26301.75,0.0,0.0,2,7,5.0,4,0.0 +5807,8145,3603.163150458666,57.0,111,1820.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18025.35,0.0,16310.0,3,9,7.0,1,1.0 +5808,8146,2657.3858183658326,75.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,17430.0,0.0,0.0,20600.95,0.0,3450.0,1,7,5.0,1,1.0 +5809,8147,4637.617623459668,26.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18816.4,0.0,20290.0,3,9,7.0,1,1.0 +5810,8149,4020.359031401661,26.0,111,6940.0,68,2.0,0.0,3.0,1.8,0.0,650.0,0.0,0.0,0.0,0.0,12692.7,80.0,170.0,3,6,5.0,4,2.0 +5811,8150,1715.4588130898835,61.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31080.0,0.0,0.0,65498.6,0.0,43590.0,1,10,8.0,3,1.0 +5812,8152,1323.4065678824024,36.0,111,11570.0,63,1.0,1.0,4.0,2.3,0.0,0.0,0.0,10680.0,0.0,0.0,43218.8,0.0,21400.0,3,9,7.0,5,1.0 +5813,8153,3625.9867267693717,38.0,111,18070.0,31,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,169020.55,0.0,330.0,1,10,8.0,4,1.0 +5814,8154,1352.7181060823973,48.0,112,0.0,34,3,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,85871.5,270.0,59800.0,1,9,2.0,4,3.0 +5815,8156,2252.137536667123,84.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53420.0,0.0,0.0,51627.75,0.0,0.0,1,7,4.0,3,0.0 +5816,8157,1929.3739337985007,52.0,300,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35641.15,0.0,35970.0,2,0,0.0,3,2.0 +5817,8158,1135.6534667769056,51.0,111,0.0,55,2.0,0.0,3.0,2.0,0.0,10200.0,0.0,0.0,0.0,0.0,15088.0,0.0,0.0,3,10,8.0,2,2.0 +5818,8159,783.6287220675464,40.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,2910.0,0.0,0.0,0.0,0.0,40274.0,2590.0,25280.0,3,8,7.0,2,2.0 +5819,8160,3629.7685127857003,19.0,112,0.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10933.0,1380.0,0.0,3,7,0.0,1,1.0 +5820,8161,1500.329410397912,59.0,111,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,4840.0,0.0,0.0,47456.0,0.0,46100.0,1,7,5.0,3,2.0 +5821,8162,3846.2941813199404,36.0,112,11540.0,22,2.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25825.75,0.0,1900.0,2,8,1.0,4,2.0 +5822,8163,2881.3851579235907,52.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,4750.0,0.0,1060.0,0.0,0.0,5994.0,110.0,540.0,1,7,5.0,1,0.0 +5823,8164,1654.336738349112,33.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,20.0,0.0,76172.4,0.0,79830.0,2,10,5.0,3,2.0 +5824,8165,3866.5250010238315,51.0,222,0.0,38,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48837.40010083417,0.0,49360.0,1,1,0.0,4,3.0 +5825,8167,4008.1818126416497,89.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19510.0,0.0,0.0,21482.6,0.0,0.0,1,7,6.0,1,0.0 +5826,8169,2770.2978449145025,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45570.0,0.0,0.0,49160.9,0.0,0.0,1,9,1.0,3,0.0 +5827,8170,2333.133798261639,29.0,111,0.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39798.9,0.0,33440.0,3,9,7.0,4,2.0 +5828,8171,1894.7565627904453,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41470.0,0.0,0.0,39333.5,0.0,0.0,2,8,0.0,3,0.0 +5829,8172,2845.4261311352875,36.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47702.3,0.0,47430.0,2,8,1.0,4,2.0 +5830,8173,1626.3491831419276,57.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16942.9,1070.0,16380.0,3,6,5.0,1,1.0 +5831,8174,3676.0139350496256,28.0,111,800.0,56,1.0,1.0,1.0,1.0,0.0,1570.0,0.0,0.0,0.0,0.0,14927.0,1730.0,7560.0,3,9,7.0,1,1.0 +5832,8176,1915.2076873325489,50.0,400,0.0,12,1.0,1.0,2.0,1.5,10960.0,0.0,0.0,0.0,0.0,0.0,13168.5,0.0,0.0,2,0,0.0,3,1.0 +5833,8177,1896.710923649295,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63170.0,0.0,0.0,64596.9,0.0,0.0,1,9,7.0,3,0.0 +5834,8178,3874.2081424064463,32.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,11540.0,0.0,0.0,0.0,0.0,34729.5,0.0,21800.0,3,10,8.0,2,1.0 +5835,8179,706.1988957756116,44.0,112,0.0,45,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26894.95,0.0,23440.0,3,9,2.0,2,1.0 +5836,8180,761.4739805659194,38.0,111,230.0,68,1.0,0.0,3.0,1.6,0.0,5920.0,0.0,0.0,0.0,0.0,15546.0,90.0,0.0,3,7,6.0,2,1.0 +5837,8181,6595.976690422469,39.0,111,0.0,21,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45273.83432255618,0.0,30510.0,2,10,8.0,4,1.0 +5838,8183,2195.0508120991685,93.0,120,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39510.0,0.0,0.0,33581.29328134297,0.0,0.0,1,0,3.0,1,0.0 +5839,8184,2468.2612275898014,83.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46650.0,556.0,0.0,47855.916059831114,0.0,0.0,1,0,0.0,3,0.0 +5840,8185,3426.075164990028,33.0,111,7220.0,38,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,35.0,0.0,61676.8,0.0,58550.0,3,10,8.0,4,2.0 +5841,8187,1920.1484136930812,66.0,111,0.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,87590.0,2176.0,0.0,77288.15,0.0,0.0,1,10,8.0,3,1.0 +5842,8188,2887.117049523886,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18110.0,0.0,0.0,17508.25,0.0,0.0,3,6,4.0,1,0.0 +5843,8189,1426.7826210420892,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43920.0,0.0,0.0,40839.9,0.0,0.0,1,9,7.0,3,0.0 +5844,8191,219.0135557776825,56.0,400,0.0,69,1.0,0.0,3.0,1.8,0.0,6610.0,0.0,0.0,0.0,0.0,10530.0,0.0,0.0,1,0,0.0,2,1.0 +5845,8192,1385.4099600203187,36.0,111,180.0,85,0.0,0.0,3.0,1.6,0.0,470.0,0.0,0.0,0.0,0.0,12418.9,0.0,80.0,3,9,7.0,2,0.0 +5846,8193,1060.5422546069412,55.0,221,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40028.56453493524,0.0,41190.0,1,1,3.0,3,2.0 +5847,8194,2391.5096582635974,47.0,400,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36194.9,2270.0,31970.0,2,0,0.0,4,2.0 +5848,8195,2388.4991867521894,82.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25160.0,0.0,0.0,24771.95,0.0,0.0,1,7,0.0,3,0.0 +5849,8196,2245.4307057743217,62.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21160.0,0.0,0.0,19720.9,0.0,160.0,1,9,3.0,1,0.0 +5850,8197,1646.6433234613532,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49850.0,0.0,0.0,44040.8,0.0,0.0,1,9,2.0,3,0.0 +5851,8200,2705.335526832094,47.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,707.0,0.0,58309.05,0.0,67250.0,1,9,7.0,4,1.0 +5852,8202,1146.9973195115554,69.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59690.0,288.0,0.0,57676.45,0.0,0.0,1,9,3.0,3,0.0 +5853,8203,2417.064819309842,68.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,8930.0,1080.0,0.0,0.0,13741.0,0.0,0.0,3,9,2.0,1,0.0 +5854,8204,2617.1161913177575,59.0,300,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11160.0,38.0,0.0,42683.6,0.0,0.0,1,0,0.0,3,1.0 +5855,8205,2690.3229945561898,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10918.0,0.0,3670.0,3,9,7.0,1,0.0 +5856,8206,1657.5724996107997,64.0,300,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25790.0,0.0,0.0,35854.4,0.0,13550.0,1,0,0.0,3,1.0 +5857,8207,2237.3360737129337,61.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21030.0,0.0,0.0,49850.2,0.0,36380.0,3,8,7.0,3,1.0 +5858,8208,2694.8177155622757,40.0,112,350.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34747.75,0.0,30220.0,2,5,0.0,2,1.0 +5859,8210,2047.6772898301422,21.0,120,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33536.0,0.0,33800.0,3,0,1.0,3,2.0 +5860,8211,3424.1753015639993,37.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28641.35,0.0,28780.0,3,7,5.0,2,1.0 +5861,8212,2328.305991079678,67.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20460.0,0.0,0.0,20917.3,0.0,0.0,1,7,0.0,1,0.0 +5862,8214,1373.0844477995686,62.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11890.0,0.0,0.0,16493.85,0.0,6190.0,1,6,5.0,1,0.0 +5863,8215,3224.8347038116335,57.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32330.0,90.0,34850.0,1,9,7.0,3,2.0 +5864,8216,1200.7927887776327,57.0,111,0.0,77,0.0,0.0,1.0,1.0,6080.0,1160.0,0.0,1590.0,0.0,0.0,11902.0,0.0,0.0,3,7,5.0,1,0.0 +5865,8217,2273.0249236829013,47.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14552.2,2530.0,12230.0,3,9,7.0,1,1.0 +5866,8218,2041.9996667207577,52.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,67537.5,0.0,28180.0,1,9,7.0,4,2.0 +5867,8219,3544.3135356867638,79.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34500.0,155.0,62.0,31155.9,0.0,0.0,1,0,0.0,1,0.0 +5868,8220,2006.3191641485498,58.0,112,5660.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,15410.0,0.0,0.0,27466.35,0.0,6790.0,1,9,0.0,4,1.0 +5869,8221,6452.851747283547,74.0,211,0.0,86,1.0,0.0,3.0,2.0,8630.0,0.0,5450.0,16220.0,0.0,0.0,30970.0,0.0,0.0,3,1,2.0,5,1.0 +5870,8222,2872.179772674741,32.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15708.25,0.0,16260.0,1,8,7.0,1,1.0 +5871,8223,2745.1484052408855,74.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,3300.0,5780.0,0.0,0.0,11780.0,0.0,0.0,3,4,0.0,1,0.0 +5872,8224,3190.7257200485647,50.0,120,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,2270.0,0.0,0.0,32885.0,0.0,30310.0,1,0,0.0,2,1.0 +5873,8225,2233.190417878931,44.0,211,0.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,78427.4,0.0,73760.0,2,2,2.0,4,2.0 +5874,8226,2406.4879402439537,59.0,112,0.0,68,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,5.0,0.0,26350.8,0.0,27700.0,1,10,4.0,4,1.0 +5875,8227,2580.1739724058525,46.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17144.1,0.0,6670.0,2,7,5.0,2,1.0 +5876,8228,1723.5046776702382,52.0,112,640.0,55,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,29091.5,0.0,27480.0,2,6,0.0,4,2.0 +5877,8229,1867.1751905886542,38.0,111,40.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51318.9,0.0,52240.0,2,4,4.0,4,2.0 +5878,8230,2455.831122112749,48.0,120,0.0,21,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56413.9,0.0,48710.0,1,0,0.0,4,3.0 +5879,8231,2009.246801016601,90.0,111,0.0,86,0.0,0.0,1.0,1.0,1360.0,0.0,9640.0,0.0,0.0,0.0,14072.0,0.0,0.0,3,4,4.0,1,0.0 +5880,8232,1843.1687907540797,48.0,112,5530.0,37,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,58017.056352517306,0.0,56700.0,1,7,0.0,4,2.0 +5881,8233,2710.586984262215,48.0,112,430.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35169.2,0.0,34450.0,2,9,1.0,4,2.0 +5882,8234,3222.075231725327,50.0,112,0.0,62,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36084.25,0.0,36360.0,1,9,0.0,5,3.0 +5883,8235,1221.5377840283945,56.0,111,13740.0,56,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,346.0,0.0,23011.6,0.0,9530.0,1,6,5.0,4,2.0 +5884,8238,3165.964401288601,40.0,111,0.0,31,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,8336.0,0.0,187436.35,0.0,0.0,2,9,7.0,4,1.0 +5885,8239,2836.7043543087702,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46930.0,0.0,0.0,43186.15,0.0,0.0,1,7,5.0,3,0.0 +5886,8240,1539.3562263450483,46.0,400,0.0,43,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,48638.137815392016,0.0,47330.0,1,0,0.0,4,2.0 +5887,8241,1607.8263550160066,51.0,120,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,17770.0,0.0,0.0,35983.15,0.0,18720.0,2,0,1.0,1,1.0 +5888,8242,1537.817774821923,75.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14980.0,0.0,0.0,14773.75,0.0,0.0,1,0,0.0,3,0.0 +5889,8243,1821.9525352223297,60.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9870.0,0.0,0.0,9460.5,0.0,0.0,1,7,0.0,1,0.0 +5890,8244,1523.1610165141483,71.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19670.0,0.0,0.0,22852.85639013027,0.0,0.0,1,9,0.0,3,0.0 +5891,8246,1517.3265585090226,52.0,112,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41538.9,0.0,21090.0,1,8,0.0,3,2.0 +5892,8247,1665.29773598748,67.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37690.0,0.0,0.0,34460.05,0.0,0.0,1,0,1.0,3,0.0 +5893,8248,2665.542267169471,47.0,111,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,63837.15,0.0,54630.0,1,10,8.0,4,2.0 +5894,8249,1774.5551275109935,53.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,88067.7,0.0,105330.0,2,8,7.0,1,1.0 +5895,8250,644.4701142781608,42.0,112,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26635.2,0.0,24900.0,2,8,0.0,2,1.0 +5896,8251,2398.2262160803853,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51960.0,0.0,0.0,54083.102898255616,0.0,700.0,1,8,0.0,3,0.0 +5897,8252,1841.95375672131,52.0,120,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,513.0,0.0,56223.35,0.0,22690.0,1,0,0.0,3,2.0 +5898,8253,1672.4242093583744,38.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25562.3,1700.0,23300.0,3,9,7.0,2,1.0 +5899,8254,2056.220466437773,50.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20386.0,0.0,21220.0,3,7,5.0,1,1.0 +5900,8257,1910.5004805634846,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24930.0,0.0,0.0,23314.85,0.0,0.0,1,8,6.0,1,0.0 +5901,8258,2746.5444745784807,33.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,154.0,0.0,134158.25,0.0,146440.0,2,10,8.0,4,2.0 +5902,8259,1880.9204670215727,59.0,300,70.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14099.7,1370.0,10770.0,3,0,0.0,1,1.0 +5903,8260,3491.2288694432173,46.0,111,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,63766.45,0.0,55850.0,1,10,8.0,4,2.0 +5904,8261,880.8372450925772,46.0,111,0.0,68,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,14000.0,0.0,7680.0,3,10,8.0,2,1.0 +5905,8263,1986.575069495158,76.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39190.0,0.0,0.0,38766.65,0.0,0.0,1,8,0.0,3,0.0 +5906,8264,2130.7229203856177,72.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20760.0,0.0,0.0,20985.05,0.0,0.0,1,0,0.0,3,0.0 +5907,8265,1745.253913073415,41.0,111,0.0,31,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,237943.45,0.0,0.0,2,6,4.0,2,1.0 +5908,8267,2226.3942587491665,39.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,64441.25,0.0,61590.0,2,9,7.0,4,2.0 +5909,8268,1224.8188645556886,56.0,111,2560.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,5540.0,1031.0,0.0,34602.4416516545,0.0,22830.0,1,4,4.0,3,2.0 +5910,8269,1389.2546901423416,46.0,111,11960.0,56,2.0,0.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,18958.45,0.0,0.0,3,7,5.0,4,2.0 +5911,8271,2937.4641705022627,46.0,112,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,6740.0,0.0,0.0,25697.15,0.0,21510.0,2,6,0.0,3,1.0 +5912,8272,2824.28883985304,42.0,112,0.0,69,2.0,1.0,3.0,2.0,0.0,960.0,0.0,0.0,0.0,0.0,15960.5,4120.0,6840.0,2,9,1.0,2,2.0 +5913,8274,3058.074237387386,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27540.0,0.0,0.0,26597.438383192595,0.0,0.0,1,9,7.0,3,0.0 +5914,8275,1679.9234693005874,80.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20050.0,0.0,0.0,19580.45,0.0,0.0,5,6,0.0,1,0.0 +5915,8277,2099.3817627623725,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59250.0,0.0,0.0,52525.95,0.0,0.0,3,10,8.0,3,0.0 +5916,8279,1936.743459241067,80.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12210.0,0.0,0.0,12030.15,0.0,0.0,1,0,1.0,3,0.0 +5917,8280,2368.9101139426416,60.0,111,8860.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45845.3,0.0,40260.0,1,8,7.0,2,2.0 +5918,8281,2670.6810998622527,61.0,112,6330.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28040.0,1041.0,0.0,56385.5,0.0,10720.0,1,9,3.0,3,1.0 +5919,8282,3025.4210393222747,39.0,111,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25638.0,0.0,22200.0,3,8,7.0,4,2.0 +5920,8283,809.2412498963162,41.0,111,0.0,65,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24916.4,2120.0,19120.0,3,8,7.0,2,1.0 +5921,8286,2805.060656857689,57.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54274.6,0.0,63440.0,1,9,7.0,3,2.0 +5922,8287,4209.002917787482,40.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,3361.0,0.0,48737.85,0.0,36200.0,1,9,7.0,4,2.0 +5923,8288,1161.1836038246756,66.0,112,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,35040.0,0.0,0.0,37962.35,0.0,5460.0,1,9,3.0,3,1.0 +5924,8289,907.8870209274604,69.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11550.0,0.0,0.0,10432.65,0.0,0.0,1,10,1.0,1,0.0 +5925,8290,2278.2717423376516,50.0,400,5700.0,69,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8146.15,0.0,390.0,3,0,0.0,1,1.0 +5926,8293,5524.20330143272,26.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27057.5,0.0,18680.0,3,10,8.0,4,2.0 +5927,8297,2013.9157547296675,57.0,120,0.0,56,2.0,1.0,3.0,2.0,0.0,0.0,0.0,14890.0,0.0,0.0,34782.0,1140.0,15470.0,3,0,0.0,2,2.0 +5928,8298,1559.0394477698871,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49790.0,392.0,0.0,47597.45,0.0,0.0,1,9,7.0,3,0.0 +5929,8299,1666.7425676184685,44.0,112,0.0,34,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,68790.15,0.0,68460.0,2,8,1.0,4,2.0 +5930,8300,5016.705303332661,37.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46819.0,230.0,46440.0,3,10,8.0,4,2.0 +5931,8301,2942.0663087687753,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15620.0,0.0,0.0,15699.8,0.0,0.0,1,7,5.0,1,0.0 +5932,8302,1880.040083413471,56.0,300,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51133.2,0.0,53400.0,2,0,0.0,3,2.0 +5933,8304,3090.6162447659367,35.0,120,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,47936.0,77248.5,0.0,30440.0,2,0,1.0,3,2.0 +5934,8306,2307.3958605212574,53.0,221,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17059.85,0.0,18630.0,2,1,3.0,1,1.0 +5935,8307,1836.0033095841009,70.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41610.0,380.0,0.0,40014.60254100692,0.0,0.0,1,0,0.0,3,0.0 +5936,8308,4939.4821703672,57.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21154.85,0.0,22630.0,3,10,8.0,1,1.0 +5937,8310,2800.0382726330326,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19990.0,552.0,0.0,34493.2,0.0,18500.0,2,8,7.0,1,0.0 +5938,8311,1757.364690134339,63.0,112,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31919.75381151038,0.0,0.0,1,10,0.0,3,1.0 +5939,8312,5259.3537300786165,52.0,111,10020.0,56,2.0,1.0,4.0,2.5,0.0,0.0,0.0,13190.0,0.0,0.0,42778.95,410.0,19950.0,1,10,8.0,4,2.0 +5940,8313,2402.8247556068873,84.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21930.0,0.0,0.0,21409.8,0.0,0.0,1,10,0.0,3,0.0 +5941,8314,2449.322726571249,61.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,17470.0,0.0,0.0,0.0,0.0,20409.85,0.0,0.0,3,9,7.0,2,0.0 +5942,8315,1945.549403512203,62.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25610.0,0.0,0.0,23984.75,0.0,0.0,1,7,5.0,1,0.0 +5943,8317,1876.7668316672148,58.0,112,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,70221.0,0.0,79160.0,2,8,1.0,3,2.0 +5944,8319,1698.663584163326,47.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,1468.0,0.0,61529.77141310815,0.0,0.0,1,9,7.0,4,2.0 +5945,8320,3492.0602569589496,31.0,211,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16945.0,0.0,16640.0,5,1,2.0,1,1.0 +5946,8321,4281.756992897918,90.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16640.0,0.0,0.0,16745.0,0.0,0.0,3,10,4.0,1,0.0 +5947,8323,1477.1889379140168,43.0,211,0.0,52,1.0,0.0,2.0,1.3,0.0,4930.0,0.0,0.0,0.0,0.0,10456.0,570.0,0.0,3,1,3.0,2,1.0 +5948,8324,2122.0648573194408,56.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2080.0,0.0,0.0,24913.9,0.0,23390.0,3,7,6.0,1,1.0 +5949,8325,2396.013974418344,33.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,157246.4,0.0,157030.0,2,6,5.0,3,2.0 +5950,8326,3236.3394302230217,57.0,111,0.0,78,0.0,0.0,1.0,1.0,3710.0,0.0,0.0,6550.0,0.0,0.0,10131.995448733367,0.0,0.0,1,4,4.0,1,0.0 +5951,8327,1328.3177953338286,68.0,111,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,55720.0,0.0,0.0,46575.2,0.0,0.0,1,8,7.0,3,1.0 +5952,8329,1926.3488502150913,31.0,400,5170.0,13,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43881.75,0.0,8020.0,2,0,0.0,4,1.0 +5953,8330,1698.0851983394014,65.0,400,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29374.65,0.0,0.0,1,0,0.0,1,1.0 +5954,8331,2863.4195237087024,57.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41450.0,0.0,44570.0,2,9,7.0,3,1.0 +5955,8335,2697.9465660767523,25.0,111,0.0,42,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10216.05,0.0,0.0,3,9,7.0,5,2.0 +5956,8336,705.8355314084233,44.0,300,0.0,68,1.0,0.0,3.0,1.6,0.0,5270.0,0.0,0.0,0.0,0.0,12516.65,0.0,0.0,3,0,0.0,2,1.0 +5957,8337,2217.855018859655,60.0,111,1430.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16992.25,2050.0,11690.0,3,6,5.0,5,1.0 +5958,8338,455.417623959422,38.0,300,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23652.1,3830.0,14960.0,3,0,0.0,2,1.0 +5959,8339,4418.975175243701,35.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30298.2,0.0,35340.0,2,8,6.0,1,1.0 +5960,8340,2392.511620809893,90.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,77000.0,0.0,0.0,41989.7,0.0,0.0,1,8,7.0,1,0.0 +5961,8341,1024.1788266237515,27.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40662.3,350.0,40120.0,3,6,5.0,4,2.0 +5962,8342,773.5083679712372,55.0,111,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48895.65,0.0,50060.0,1,7,5.0,4,2.0 +5963,8343,3262.0118815699307,22.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33200.0,980.0,32800.0,3,8,2.0,3,2.0 +5964,8345,1957.1484068470406,48.0,120,8910.0,21,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27810.65,0.0,6800.0,1,0,3.0,4,2.0 +5965,8346,2129.875273149879,62.0,112,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,40580.0,0.0,0.0,103124.00353277038,0.0,83670.0,1,7,4.0,3,1.0 +5966,8350,3972.885400939659,28.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,40519.15,0.0,0.0,3,10,8.0,1,1.0 +5967,8351,2393.259779878937,47.0,300,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13550.0,270.0,0.0,34240.35,0.0,20860.0,1,0,0.0,2,1.0 +5968,8352,2898.7056832346234,54.0,112,11070.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34546.95,0.0,25130.0,1,8,0.0,3,2.0 +5969,8353,1335.9433855870984,30.0,111,11560.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18704.7,0.0,3370.0,3,8,7.0,2,1.0 +5970,8354,1836.0352012063329,55.0,400,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6192.65,110.0,0.0,2,0,0.0,3,2.0 +5971,8355,2285.5003914915605,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26750.0,0.0,0.0,25133.5,0.0,0.0,1,8,7.0,3,0.0 +5972,8356,1679.1557617018705,48.0,300,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43780.15,0.0,43010.0,1,0,0.0,4,2.0 +5973,8357,3819.881990683417,57.0,300,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2494.0,0.0,34226.1,700.0,14880.0,1,0,0.0,5,2.0 +5974,8358,3023.7093017843727,50.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,34199.7,0.0,36480.0,1,6,4.0,2,1.0 +5975,8359,2173.275430861659,59.0,111,4890.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14938.85,0.0,7210.0,2,8,6.0,1,1.0 +5976,8360,2254.619950179788,38.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52149.45,0.0,11540.0,2,6,2.0,2,2.0 +5977,8361,1788.9393284415332,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14590.0,0.0,0.0,14500.8,0.0,0.0,1,4,4.0,1,0.0 +5978,8362,2048.272082148467,78.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37890.0,2529.0,0.0,40254.45,0.0,0.0,1,0,0.0,3,0.0 +5979,8363,3479.0873628895442,54.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15127.3,0.0,15410.0,3,9,7.0,1,1.0 +5980,8364,2108.0211203105646,26.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42863.45,0.0,24550.0,3,6,4.0,3,2.0 +5981,8365,7494.049909283563,30.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19368.0,0.0,20390.0,3,10,8.0,1,1.0 +5982,8366,3181.9625183791177,68.0,111,0.0,78,1.0,0.0,5.0,2.6,0.0,0.0,0.0,12090.0,0.0,0.0,20522.0,180.0,330.0,3,9,7.0,4,1.0 +5983,8367,1953.0491196718178,69.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,1020.0,24350.0,0.0,0.0,26120.1,0.0,0.0,1,9,0.0,5,0.0 +5984,8369,3505.438526423081,26.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16593.85,0.0,16790.0,3,7,5.0,1,1.0 +5985,8370,2021.6490628142506,64.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18690.0,0.0,0.0,17696.5,0.0,0.0,1,10,0.0,1,0.0 +5986,8372,1105.0737971847548,36.0,111,0.0,33,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,899.6,0.0,0.0,2,10,8.0,4,1.0 +5987,8373,675.756635229981,39.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19553.6,1380.0,15980.0,3,7,5.0,2,1.0 +5988,8375,808.7849315950829,71.0,111,0.0,77,1.0,0.0,5.0,2.6,0.0,0.0,0.0,41390.0,0.0,0.0,144409.78383192598,210.0,1450.0,1,9,7.0,5,1.0 +5989,8376,4463.386126848933,29.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15119.9,0.0,12100.0,1,8,6.0,1,1.0 +5990,8377,603.2679233141549,40.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10750.0,0.0,0.0,21421.95,430.0,8270.0,3,8,6.0,2,1.0 +5991,8378,2449.9445054996704,29.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35754.4,0.0,29830.0,2,6,0.0,4,2.0 +5992,8379,2318.9671351525053,66.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11440.0,0.0,0.0,11156.6,0.0,0.0,1,9,0.0,1,0.0 +5993,8380,1527.9208743129666,77.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22880.0,0.0,0.0,26688.55,0.0,0.0,1,7,5.0,3,0.0 +5994,8382,875.0206987397472,50.0,112,0.0,56,1.0,1.0,3.0,1.8,0.0,440.0,0.0,0.0,1.0,0.0,30933.65,3570.0,20640.0,3,8,1.0,2,1.0 +5995,8383,2709.433307927906,52.0,111,4630.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20484.45,0.0,15730.0,3,8,7.0,3,1.0 +5996,8385,884.0006350084055,50.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19362.75,0.0,14470.0,2,6,4.0,2,1.0 +5997,8386,1036.7547729390935,33.0,112,710.0,63,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,41844.1,0.0,25800.0,3,10,1.0,4,1.0 +5998,8387,2622.44451119084,62.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,850.0,246.0,0.0,32549.0,0.0,0.0,1,0,0.0,3,2.0 +5999,8390,2343.05746084847,50.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,3300.0,0.0,0.0,0.0,0.0,11320.0,780.0,7240.0,3,7,5.0,1,1.0 +6000,8391,2425.9933840508606,54.0,400,640.0,78,1.0,1.0,3.0,1.8,0.0,0.0,0.0,6810.0,0.0,0.0,14644.35,0.0,7020.0,3,0,0.0,4,1.0 +6001,8392,1260.758445972753,65.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,10380.0,0.0,0.0,68410.3,0.0,36600.0,2,8,7.0,3,2.0 +6002,8393,2328.0112894320796,60.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8330.0,0.0,0.0,27524.75,0.0,24460.0,1,8,6.0,1,1.0 +6003,8394,949.276949969009,61.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19045.25,0.0,18490.0,1,4,3.0,1,1.0 +6004,8395,4938.417036146513,77.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21850.0,0.0,0.0,21269.0,0.0,0.0,1,0,0.0,1,0.0 +6005,8396,3664.8223131587574,48.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19492.5,2290.0,17560.0,3,9,7.0,1,1.0 +6006,8398,2231.2507578615946,59.0,112,4380.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,132864.95,0.0,169370.0,1,10,0.0,3,1.0 +6007,8401,2298.5256642603445,51.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50937.9,0.0,54070.0,2,9,7.0,4,2.0 +6008,8402,4863.749733006709,53.0,111,1230.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1230.0,0.0,0.0,3,10,8.0,1,1.0 +6009,8403,2512.330375304028,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44470.0,475.0,0.0,46419.318964032966,0.0,2770.0,1,10,8.0,3,0.0 +6010,8404,3137.2966429555477,58.0,111,0.0,22,1.0,0.0,1.0,1.0,0.0,4400.0,0.0,0.0,0.0,0.0,7664.0,0.0,0.0,3,8,7.0,1,1.0 +6011,8407,3223.37036475383,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32830.0,0.0,0.0,31855.85,0.0,0.0,1,10,8.0,3,0.0 +6012,8408,2343.3339900899573,52.0,111,480.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32960.15,0.0,31350.0,3,8,7.0,2,1.0 +6013,8410,1892.0152055614747,34.0,111,320.0,67,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,9291.65,0.0,0.0,3,7,5.0,1,1.0 +6014,8411,4421.7661131910545,80.0,400,4150.0,72,1.0,0.0,2.0,1.5,0.0,0.0,0.0,10130.0,0.0,0.0,26292.0,1140.0,8400.0,3,0,1.0,2,1.0 +6015,8412,5264.745137124791,39.0,111,4020.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52592.25,0.0,52310.0,2,10,8.0,4,2.0 +6016,8413,2074.5791187615914,83.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31030.0,0.0,0.0,29739.1,0.0,0.0,1,8,6.0,3,0.0 +6017,8414,2293.47193779488,45.0,111,0.0,23,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,94743.4,0.0,103420.0,5,10,8.0,4,2.0 +6018,8415,3338.776717371885,63.0,111,0.0,75,0.0,0.0,2.0,1.5,5360.0,0.0,0.0,23920.0,0.0,0.0,31839.85,0.0,0.0,1,10,8.0,3,0.0 +6019,8416,2747.8869589894534,26.0,111,0.0,21,2.0,1.0,2.0,1.5,0.0,5730.0,0.0,0.0,0.0,0.0,13315.6,0.0,8230.0,1,9,7.0,3,2.0 +6020,8417,2229.384666826941,60.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27548.45,0.0,30130.0,3,10,8.0,1,1.0 +6021,8418,2086.5042831188152,71.0,111,5470.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22600.0,0.0,0.0,36209.95,0.0,10630.0,1,8,6.0,3,1.0 +6022,8419,1223.0347634564425,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39180.0,29.0,0.0,35525.4,0.0,0.0,1,9,7.0,3,0.0 +6023,8420,2133.0331225760115,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18250.0,0.0,0.0,17018.9,0.0,0.0,1,7,6.0,1,0.0 +6024,8421,5465.3866151617,27.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62327.8,0.0,28740.0,2,10,8.0,3,2.0 +6025,8422,2190.237898708908,53.0,111,0.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49837.7,0.0,53600.0,1,9,7.0,4,2.0 +6026,8423,1910.688728906067,52.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,1917.0,0.0,705428.75,0.0,796840.0,2,9,7.0,4,2.0 +6027,8424,4969.425838804155,51.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25211.45,120.0,27460.0,3,10,8.0,1,1.0 +6028,8425,2255.537285203905,48.0,300,0.0,46,1.0,0.0,1.0,1.0,0.0,3300.0,0.0,0.0,0.0,0.0,11971.35,60.0,9550.0,2,0,1.0,1,1.0 +6029,8426,5002.152324541258,26.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9045.0,0.0,5560.0,3,8,6.0,1,1.0 +6030,8427,625.4246758214606,36.0,111,0.0,55,1.0,0.0,2.0,1.5,0.0,6000.0,0.0,0.0,0.0,0.0,13203.85,0.0,130.0,3,8,7.0,2,1.0 +6031,8429,1875.0891403491435,56.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,73999.52974084999,0.0,88900.0,1,6,4.0,3,2.0 +6032,8430,3505.86321828469,33.0,111,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,206.0,0.0,69952.78735659429,0.0,72690.0,2,4,4.0,4,2.0 +6033,8433,1197.7537172743423,51.0,111,0.0,85,1.0,0.0,5.0,2.6,0.0,15100.0,0.0,0.0,0.0,0.0,20915.15,0.0,0.0,3,7,5.0,5,1.0 +6034,8435,2797.2779753783557,53.0,400,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16390.0,58.0,0.0,32737.65,0.0,0.0,1,0,0.0,2,1.0 +6035,8436,1496.578849909977,55.0,211,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15340.0,0.0,0.0,31433.7,0.0,18460.0,1,1,2.0,3,1.0 +6036,8437,2984.047848574826,23.0,111,0.0,84,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6604.0,0.0,690.0,3,8,7.0,3,1.0 +6037,8439,2101.582421721241,59.0,221,1510.0,13,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27776.9,0.0,0.0,2,1,2.0,4,3.0 +6038,8440,1486.468300238215,57.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18461.674243860813,0.0,19490.0,1,7,5.0,3,2.0 +6039,8442,3562.188331588781,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18780.0,0.0,0.0,20246.6,0.0,0.0,1,10,8.0,1,0.0 +6040,8444,2281.5238821192324,39.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,31270.0,43418.85,0.0,4930.0,2,6,4.0,3,2.0 +6041,8445,4081.8598109823947,83.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29110.0,0.0,0.0,26414.0,0.0,0.0,1,10,8.0,1,0.0 +6042,8446,2823.893171974541,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,2030.0,0.0,10820.0,0.0,0.0,14842.0,0.0,0.0,3,8,6.0,2,0.0 +6043,8447,1637.4919642500934,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41770.0,0.0,0.0,39791.45,0.0,0.0,1,9,7.0,3,0.0 +6044,8449,1908.410494550647,74.0,211,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35380.0,0.0,0.0,29815.18418033564,0.0,0.0,1,1,2.0,1,0.0 +6045,8450,829.8357223730162,44.0,111,0.0,33,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,65513.75,0.0,62920.0,2,6,4.0,4,2.0 +6046,8452,2145.7605656791607,36.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15413.75,430.0,15840.0,5,9,7.0,1,1.0 +6047,8453,3807.459269752575,21.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12419.0,0.0,12410.0,3,10,1.0,1,1.0 +6048,8454,3357.1385453125504,53.0,111,0.0,23,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,94453.7,0.0,122290.0,3,9,7.0,4,2.0 +6049,8455,5673.992919782024,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,1580.0,8010.0,0.0,0.0,12170.0,0.0,0.0,3,10,8.0,1,0.0 +6050,8457,1994.7110448401754,48.0,111,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,2665.0,0.0,129117.35,0.0,123790.0,2,9,7.0,4,2.0 +6051,8458,1594.5765579468386,83.0,112,0.0,,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29820.0,0.0,0.0,33843.4,0.0,0.0,1,8,0.0,3,0.0 +6052,8459,3670.2088429897813,43.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60967.0,0.0,58580.0,1,9,7.0,4,2.0 +6053,8463,4718.984872752364,57.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5064.0,0.0,0.0,3,10,8.0,2,0.0 +6054,8464,2203.5320952620505,22.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,15070.0,42733.0,0.0,9130.0,3,8,7.0,3,2.0 +6055,8465,2084.126262247414,54.0,111,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51805.8,0.0,55940.0,3,9,7.0,4,2.0 +6056,8466,2153.096414611865,44.0,111,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21214.4,0.0,19930.0,1,8,7.0,4,1.0 +6057,8467,2608.077287858953,29.0,112,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38309.95,0.0,38460.0,3,5,0.0,3,2.0 +6058,8469,2167.7271164641015,76.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1240.0,0.0,0.0,17409.95,0.0,0.0,1,1,1.0,1,0.0 +6059,8471,3656.112096854168,51.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17924.55,0.0,19030.0,1,8,7.0,1,1.0 +6060,8472,710.962537750427,40.0,221,0.0,56,1.0,1.0,4.0,2.1,0.0,2510.0,0.0,0.0,0.0,0.0,33297.55,0.0,16980.0,3,1,1.0,2,1.0 +6061,8473,2470.744384644507,48.0,111,6440.0,62,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,47398.55,0.0,41240.0,3,8,7.0,4,4.0 +6062,8474,1817.789288419979,45.0,111,0.0,63,1.0,0.0,2.0,1.5,0.0,8210.0,0.0,0.0,0.0,0.0,12920.0,0.0,0.0,3,8,7.0,2,1.0 +6063,8475,1861.947293387227,49.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,477.0,0.0,41556.2,0.0,44640.0,1,8,7.0,3,2.0 +6064,8476,2019.4225721401526,51.0,112,1060.0,62,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34940.9,0.0,36880.0,2,8,1.0,4,3.0 +6065,8477,2457.4363336588576,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26097.9,0.0,29830.0,2,6,5.0,1,1.0 +6066,8478,2422.406623919728,79.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27750.0,0.0,0.0,26651.8,0.0,0.0,1,3,4.0,3,0.0 +6067,8479,2288.643477844084,60.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25950.0,0.0,0.0,24636.15,0.0,0.0,1,9,0.0,3,0.0 +6068,8480,1821.6144658310366,45.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,450.0,0.0,58978.85,0.0,64180.0,2,6,4.0,4,2.0 +6069,8481,2278.9175405166025,38.0,300,2150.0,46,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45921.6,0.0,42910.0,2,0,0.0,4,2.0 +6070,8482,2900.7337591196074,64.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27470.0,0.0,0.0,33413.0,0.0,6630.0,3,0,0.0,3,0.0 +6071,8485,2333.347289191761,49.0,111,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30375.35,0.0,22200.0,3,9,7.0,4,1.0 +6072,8486,1613.903726456727,34.0,120,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,44396.65,0.0,41170.0,5,0,0.0,4,2.0 +6073,8487,2494.989570971237,51.0,112,1800.0,22,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,47843.6,0.0,41400.0,1,9,2.0,4,2.0 +6074,8490,1750.741979856011,59.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52780.4,0.0,57100.0,1,7,0.0,3,2.0 +6075,8491,2609.9229299572426,38.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,24.0,0.0,79269.3,0.0,53370.0,2,8,0.0,4,2.0 +6076,8492,2762.9600535736727,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,2480.0,6780.0,720.0,0.0,14683.0,0.0,0.0,3,8,6.0,1,0.0 +6077,8493,4124.634355716357,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46080.0,0.0,0.0,42387.81787238077,0.0,0.0,1,10,8.0,3,0.0 +6078,8494,1578.2865488246061,47.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19386.15,0.0,19730.0,3,9,7.0,2,1.0 +6079,8495,1811.9095094737968,39.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,77699.1,0.0,83200.0,2,8,7.0,4,2.0 +6080,8497,2780.2340070843543,89.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29240.0,0.0,0.0,28095.85,0.0,0.0,1,9,1.0,3,0.0 +6081,8498,4955.633829473679,28.0,111,700.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,8.0,0.0,31229.15,0.0,23870.0,3,10,8.0,4,2.0 +6082,8500,5451.392546908584,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19620.0,0.0,0.0,39501.3,0.0,17960.0,1,7,0.0,3,0.0 +6083,8501,2260.1543556501097,57.0,111,0.0,52,1.0,1.0,4.0,2.5,0.0,0.0,0.0,31550.0,0.0,0.0,38133.02312537189,0.0,12860.0,1,9,7.0,4,1.0 +6084,8502,1583.8979922487,55.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,72093.87780610351,0.0,75850.0,1,9,7.0,3,2.0 +6085,8504,2169.865157486597,91.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15630.0,0.0,0.0,18179.0,0.0,0.0,3,0,0.0,3,0.0 +6086,8505,1129.2437967508179,52.0,111,0.0,35,1.0,1.0,5.0,2.6,0.0,0.0,9610.0,0.0,0.0,0.0,32775.0,2540.0,11820.0,3,10,8.0,5,1.0 +6087,8508,2319.542785048899,32.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,95174.2,0.0,79580.0,2,9,7.0,3,2.0 +6088,8509,2403.7798523554707,35.0,120,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,20.0,0.0,56100.3,0.0,49620.0,3,0,0.0,4,2.0 +6089,8510,1890.5713025191094,44.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,87.0,0.0,63581.5,0.0,70910.0,1,8,7.0,3,2.0 +6090,8512,2469.167438437397,48.0,112,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,32332.8,2980.0,15500.0,2,7,0.0,4,2.0 +6091,8513,4278.1172444117265,35.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,664.0,0.0,105989.8,0.0,0.0,3,10,8.0,4,2.0 +6092,8514,2745.6722001799276,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29040.0,0.0,0.0,26821.95,0.0,0.0,1,8,0.0,1,0.0 +6093,8515,1732.9114723004611,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45930.0,0.0,0.0,41030.2,0.0,0.0,1,9,7.0,3,0.0 +6094,8516,2203.2046201698977,54.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61277.0,0.0,62160.0,1,6,4.0,4,2.0 +6095,8517,1604.74958838446,36.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,80083.8,0.0,75020.0,2,10,8.0,4,2.0 +6096,8518,689.5370015511758,59.0,400,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,390.0,0.0,0.0,32555.05,0.0,1530.0,1,0,0.0,2,1.0 +6097,8519,1366.2565471947821,52.0,111,0.0,33,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,73.0,0.0,94898.75,0.0,104000.0,2,8,6.0,4,2.0 +6098,8520,3055.652622295138,64.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11390.0,0.0,0.0,11224.25,0.0,0.0,1,8,7.0,1,0.0 +6099,8521,1826.019184828328,49.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32583.9,0.0,34860.0,2,1,2.0,4,2.0 +6100,8522,2332.062759205952,38.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24470.0,0.0,0.0,3,8,7.0,1,1.0 +6101,8526,3959.022303090308,90.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27350.0,0.0,0.0,25717.1,0.0,0.0,1,8,6.0,1,0.0 +6102,8528,2180.1606059471997,44.0,112,2340.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49546.1,0.0,43820.0,3,10,1.0,3,2.0 +6103,8530,3281.0886438974712,52.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29101.0,0.0,28030.0,3,10,8.0,2,1.0 +6104,8531,1883.144782057366,50.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37372.25,0.0,37810.0,1,9,0.0,4,2.0 +6105,8532,1806.9277134446793,50.0,111,2260.0,21,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,5389.0,0.0,98901.4,0.0,101030.0,1,7,4.0,4,3.0 +6106,8533,3044.7495067020477,66.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31090.0,0.0,0.0,30377.4,0.0,0.0,3,8,7.0,3,0.0 +6107,8534,459.69838421827814,51.0,111,4640.0,64,1.0,1.0,5.0,2.4,0.0,2160.0,0.0,0.0,0.0,0.0,24518.3,1350.0,3710.0,3,7,5.0,4,1.0 +6108,8537,716.559203747532,48.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23161.05,0.0,23570.0,2,7,0.0,1,1.0 +6109,8538,1122.7019271183144,36.0,111,10530.0,48,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34032.25,0.0,22070.0,2,7,5.0,4,2.0 +6110,8540,3098.7844538411364,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20140.0,0.0,0.0,18573.9,0.0,0.0,1,7,6.0,1,0.0 +6111,8541,1878.467276908342,56.0,300,840.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36719.65,0.0,38650.0,1,0,0.0,3,2.0 +6112,8543,1857.034890144668,54.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10339.8,0.0,4760.0,1,0,1.0,1,1.0 +6113,8544,2314.5564391459316,61.0,111,16270.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,8420.0,0.0,0.0,51615.3,0.0,31080.0,1,10,8.0,4,1.0 +6114,8545,3858.6331223973175,38.0,111,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,13051.0,0.0,0.0,3,8,7.0,1,0.0 +6115,8546,2206.6506926709185,61.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31832.7,0.0,33160.0,3,9,7.0,1,1.0 +6116,8547,1751.2576763889022,88.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21630.0,0.0,0.0,23481.5,0.0,0.0,1,8,0.0,3,0.0 +6117,8548,4142.809909565256,25.0,111,370.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14699.05,1230.0,12180.0,3,9,7.0,1,1.0 +6118,8549,2486.426357167121,53.0,112,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3.0,0.0,43858.75,0.0,48890.0,2,8,2.0,1,1.0 +6119,8550,1744.0046634717353,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59960.0,0.0,0.0,51120.1,0.0,0.0,1,8,7.0,3,0.0 +6120,8552,2488.7373234171587,57.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,4.0,0.0,71271.05,0.0,82630.0,1,10,8.0,4,2.0 +6121,8553,1617.6078568009113,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37770.0,0.0,0.0,38121.65,0.0,0.0,1,10,0.0,3,0.0 +6122,8554,2628.505451582127,32.0,111,0.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50480.35,0.0,57820.0,2,10,8.0,3,2.0 +6123,8555,1657.3310398810102,53.0,111,0.0,56,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,66095.1,0.0,70760.0,1,10,8.0,4,3.0 +6124,8556,2333.8373267910756,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17560.0,0.0,0.0,30233.45,0.0,13350.0,1,7,0.0,3,0.0 +6125,8557,2472.3329132979825,34.0,300,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21266.8,0.0,21320.0,2,0,0.0,4,2.0 +6126,8558,2737.6694877758805,35.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,65389.9,0.0,48670.0,2,10,4.0,4,2.0 +6127,8559,1994.7202224445227,71.0,112,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,15660.0,0.0,0.0,15906.5,0.0,0.0,1,6,0.0,1,1.0 +6128,8560,1898.4556404029443,74.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18910.0,0.0,0.0,20073.5,0.0,0.0,1,0,0.0,1,0.0 +6129,8561,4020.20122782275,68.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17200.0,0.0,0.0,17030.9,0.0,0.0,3,9,7.0,1,0.0 +6130,8562,1785.1053780360467,81.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10410.0,0.0,0.0,10410.0,0.0,0.0,1,8,7.0,1,0.0 +6131,8563,3320.4099005607623,44.0,112,1070.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34940.0,0.0,34230.0,3,8,1.0,4,2.0 +6132,8564,2111.9649018189953,62.0,111,8910.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,76652.7,0.0,86300.0,1,9,7.0,3,2.0 +6133,8566,2543.1638489316297,69.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31780.0,0.0,0.0,27638.0,0.0,0.0,1,9,7.0,1,0.0 +6134,8567,3433.2215443679556,65.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,3650.0,4600.0,0.0,0.0,7956.85,0.0,0.0,1,7,0.0,1,0.0 +6135,8569,4314.334144185846,51.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,9102.0,0.0,0.0,3,8,6.0,1,0.0 +6136,8570,1995.7144775649924,46.0,111,10000.0,55,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29698.3,1450.0,16680.0,3,7,5.0,2,2.0 +6137,8571,1657.1752057959275,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,3330.0,8260.0,0.0,0.0,13535.0,0.0,0.0,3,8,7.0,1,0.0 +6138,8572,1777.3306926709906,40.0,111,0.0,65,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25847.6,70.0,17960.0,2,6,4.0,4,1.0 +6139,8573,2554.3302257256255,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4344.0,0.0,0.0,3,7,5.0,1,0.0 +6140,8574,3381.5560140313323,17.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2492.0,0.0,0.0,4,8,7.0,1,0.0 +6141,8575,4477.44367715172,67.0,112,0.0,77,2.0,2.0,4.0,2.5,1840.0,0.0,0.0,19820.0,0.0,0.0,46163.5,1050.0,19760.0,3,10,4.0,2,2.0 +6142,8576,630.7891595450382,37.0,111,0.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35360.3,0.0,25140.0,3,9,7.0,2,1.0 +6143,8577,944.221015545983,47.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24482.85,0.0,19600.0,3,8,6.0,2,1.0 +6144,8579,4441.856831581152,36.0,400,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,39253.8,2350.0,25310.0,2,0,1.0,4,2.0 +6145,8580,1875.997363917565,54.0,112,0.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,56.0,0.0,21422.65,0.0,22700.0,1,7,0.0,3,2.0 +6146,8582,924.0906459945592,58.0,111,20.0,38,2.0,2.0,4.0,2.5,9220.0,0.0,0.0,0.0,0.0,0.0,56662.95,80.0,44290.0,1,10,8.0,4,2.0 +6147,8583,937.0271280123906,48.0,112,0.0,54,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27769.85,0.0,11850.0,3,9,3.0,2,2.0 +6148,8584,1335.7947946961228,48.0,112,0.0,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6298.7,2290.0,0.0,1,6,1.0,1,1.0 +6149,8585,2054.540780486228,53.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33929.25,0.0,39730.0,2,9,7.0,1,1.0 +6150,8586,3292.633132941325,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19600.0,0.0,0.0,18288.65,0.0,0.0,1,10,8.0,1,0.0 +6151,8590,2188.4638145585154,55.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41209.1,0.0,39920.0,1,9,7.0,4,2.0 +6152,8591,1485.2192832207134,61.0,221,0.0,42,1.0,0.0,1.0,1.0,0.0,5680.0,0.0,0.0,0.0,0.0,5526.0,0.0,590.0,1,1,3.0,1,1.0 +6153,8592,2009.088607290176,61.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23270.0,0.0,0.0,34758.45,0.0,17200.0,1,4,4.0,3,1.0 +6154,8594,2963.4774634990167,34.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44231.25,0.0,47950.0,5,9,7.0,1,1.0 +6155,8595,2647.685295513553,65.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17380.0,0.0,0.0,16736.45,0.0,0.0,1,6,1.0,1,0.0 +6156,8596,793.5202970192579,44.0,111,0.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,37846.411524604155,0.0,31010.0,5,9,7.0,2,1.0 +6157,8598,3911.8188822756388,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40360.0,0.0,0.0,38296.15,0.0,0.0,1,6,4.0,3,0.0 +6158,8599,2222.0229531169557,56.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24659.9,0.0,25280.0,1,5,0.0,3,2.0 +6159,8600,1277.3647782026994,54.0,211,0.0,85,1.0,1.0,4.0,2.3,0.0,0.0,0.0,4040.0,0.0,0.0,22208.7,0.0,12670.0,3,3,3.0,4,1.0 +6160,8601,3552.454244197185,21.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14366.0,0.0,11760.0,3,9,7.0,1,1.0 +6161,8602,2477.726686424289,33.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40256.4,0.0,37160.0,2,10,8.0,4,2.0 +6162,8603,1856.8269705718023,53.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25650.0,0.0,0.0,36561.4,0.0,11610.0,2,7,0.0,3,0.0 +6163,8604,1732.6568945304934,59.0,211,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31336.5,0.0,34450.0,2,1,3.0,1,1.0 +6164,8605,4783.9351325816915,22.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29308.0,0.0,20980.0,3,10,8.0,1,1.0 +6165,8607,2284.8623759688317,36.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51760.6,0.0,47990.0,2,6,0.0,4,2.0 +6166,8609,2096.3603990429697,44.0,111,4360.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,39390.6,0.0,28480.0,2,9,7.0,4,2.0 +6167,8610,1734.863259933465,67.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,35010.0,0.0,0.0,40985.05,0.0,11640.0,1,8,7.0,3,1.0 +6168,8612,2631.209914127346,71.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35320.0,0.0,0.0,33853.25,0.0,0.0,1,8,6.0,3,0.0 +6169,8613,478.5147835845751,47.0,120,0.0,85,0.0,0.0,3.0,1.8,0.0,0.0,0.0,11920.0,0.0,0.0,16613.15,0.0,0.0,2,0,1.0,2,0.0 +6170,8615,5472.323903247774,29.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,1520.0,0.0,0.0,0.0,0.0,20084.15,610.0,16450.0,3,10,8.0,1,1.0 +6171,8616,874.3292010459622,50.0,211,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20743.85,0.0,21050.0,3,4,4.0,1,1.0 +6172,8617,1665.5449723685,46.0,111,0.0,37,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,87475.35,0.0,87570.0,2,8,7.0,4,3.0 +6173,8618,1867.552853895172,35.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,64566.95,0.0,32660.0,2,10,8.0,3,2.0 +6174,8620,4268.219096800748,63.0,112,0.0,75,0.0,0.0,2.0,1.5,9700.0,0.0,0.0,20550.0,0.0,0.0,30805.05,0.0,0.0,1,7,0.0,5,0.0 +6175,8621,2276.931250143556,75.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41440.0,0.0,0.0,40293.0,0.0,0.0,1,9,7.0,1,0.0 +6176,8623,1453.3032042009293,48.0,112,23360.0,85,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35905.5,0.0,20040.0,2,8,0.0,3,1.0 +6177,8625,2074.4219908538544,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10270.0,0.0,0.0,11590.0,0.0,0.0,3,6,4.0,1,0.0 +6178,8626,3713.928143052652,61.0,112,0.0,74,0.0,0.0,2.0,1.5,13780.0,0.0,0.0,7900.0,0.0,0.0,21064.833729031074,0.0,0.0,1,9,1.0,2,0.0 +6179,8627,3128.399133629581,42.0,300,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52666.2635,0.0,55460.0,5,0,0.0,4,2.0 +6180,8628,2359.811754300586,92.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,3620.0,10680.0,0.0,0.0,14624.0,0.0,0.0,5,0,0.0,3,0.0 +6181,8632,2040.2244556977914,46.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25508.65,0.0,29060.0,2,8,7.0,1,1.0 +6182,8633,2343.6007228669946,30.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14391.45,370.0,14380.0,2,7,0.0,1,1.0 +6183,8634,1703.4015529236167,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,78220.0,0.0,0.0,63631.788309471885,0.0,0.0,1,9,7.0,3,0.0 +6184,8635,3949.8687482295877,32.0,112,0.0,63,1.0,1.0,3.0,2.0,0.0,0.0,0.0,25900.0,0.0,0.0,47475.05,0.0,23610.0,1,4,0.0,4,1.0 +6185,8636,655.6401202719314,41.0,111,0.0,68,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27715.3,0.0,9130.0,3,9,7.0,2,1.0 +6186,8637,5170.288793789832,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15150.0,0.0,0.0,16543.0,0.0,0.0,3,9,7.0,1,0.0 +6187,8639,3973.2211741165534,32.0,221,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17588.4,0.0,19680.0,2,1,1.0,1,1.0 +6188,8640,2419.7450188548796,47.0,111,5580.0,47,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,40243.8,0.0,25060.0,3,8,6.0,4,1.0 +6189,8641,1513.553285151295,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33680.0,0.0,0.0,34022.55,0.0,0.0,1,8,6.0,3,0.0 +6190,8642,2498.1368220951786,57.0,112,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21708.25,0.0,0.0,1,9,1.0,3,2.0 +6191,8643,329.5089062588791,40.0,112,0.0,54,1.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43051.15,0.0,30970.0,1,9,0.0,4,1.0 +6192,8645,783.7491730777226,48.0,111,1700.0,67,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32712.2,220.0,26220.0,3,7,5.0,2,2.0 +6193,8646,2662.962976000159,29.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,77952.55,0.0,77790.0,2,9,7.0,4,2.0 +6194,8647,1225.2202062757074,29.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,33161.4,90.0,23650.0,3,10,8.0,2,1.0 +6195,8648,1822.3016551606104,72.0,111,0.0,72,0.0,0.0,2.0,1.5,9700.0,0.0,0.0,21770.0,0.0,0.0,35947.8,0.0,0.0,1,5,4.0,2,0.0 +6196,8649,3807.8140176603893,28.0,222,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47579.4,0.0,43540.0,2,1,0.0,4,2.0 +6197,8651,2202.7238214165395,43.0,400,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35618.95,610.0,33820.0,3,0,0.0,4,2.0 +6198,8653,3901.126002383951,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18280.0,0.0,0.0,17646.72346339364,0.0,0.0,1,10,8.0,1,0.0 +6199,8654,1891.2992849684595,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10740.0,0.0,0.0,10766.0,0.0,0.0,3,8,7.0,1,0.0 +6200,8658,1797.103350796568,58.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30746.85,0.0,27390.0,1,7,5.0,1,1.0 +6201,8659,3551.9281044117015,33.0,111,3180.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45483.75,0.0,40950.0,3,9,7.0,3,2.0 +6202,8660,1715.0109497346534,51.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64957.85,0.0,72740.0,1,7,5.0,4,2.0 +6203,8661,1710.09366561592,49.0,111,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,1087.0,0.0,7586.7,0.0,36710.0,2,7,5.0,4,2.0 +6204,8662,1450.4822934061767,55.0,111,5820.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5008.15,0.0,0.0,1,6,5.0,1,1.0 +6205,8663,2645.341957895183,51.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,65629.6,0.0,67800.0,3,10,8.0,4,2.0 +6206,8664,2283.902444132673,74.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15660.0,0.0,0.0,18484.570744746678,0.0,0.0,1,0,0.0,1,0.0 +6207,8666,542.2719039879265,38.0,111,0.0,85,0.0,0.0,5.0,2.8,0.0,2980.0,0.0,0.0,0.0,0.0,27310.0,0.0,0.0,3,8,6.0,2,0.0 +6208,8667,1537.0556218990625,69.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35550.0,0.0,0.0,34864.6,0.0,0.0,1,0,0.0,3,0.0 +6209,8668,2158.0732993018246,79.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49030.0,0.0,0.0,45713.45564141462,0.0,0.0,5,6,1.0,3,0.0 +6210,8669,2922.7762498802613,35.0,111,0.0,67,1.0,0.0,2.0,1.5,0.0,11640.0,0.0,0.0,0.0,0.0,14361.0,30.0,0.0,3,7,5.0,2,1.0 +6211,8671,914.6853119239745,46.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,4120.0,0.0,0.0,0.0,0.0,17176.95,0.0,0.0,3,8,7.0,2,0.0 +6212,8672,1370.570975530416,84.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19600.0,0.0,0.0,21086.05,0.0,0.0,1,6,5.0,3,0.0 +6213,8674,4621.508366905649,37.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49537.75,0.0,47840.0,2,7,5.0,4,2.0 +6214,8678,1821.5651259822475,28.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36720.5,0.0,37240.0,5,4,4.0,3,2.0 +6215,8680,1527.9727716321584,85.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43420.0,0.0,0.0,41024.3,0.0,0.0,1,0,1.0,3,0.0 +6216,8681,2196.141546444504,70.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27130.0,204.0,0.0,24660.15,0.0,0.0,1,0,0.0,1,0.0 +6217,8682,629.90789877976,46.0,111,4460.0,67,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,23992.0,1240.0,12090.0,3,7,5.0,4,2.0 +6218,8683,10219.181290248838,66.0,111,5620.0,78,0.0,0.0,2.0,1.5,3800.0,0.0,7890.0,1080.0,0.0,0.0,21155.0,0.0,0.0,3,9,7.0,3,0.0 +6219,8684,2598.7670361623113,89.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18240.0,0.0,0.0,18183.85,0.0,0.0,1,6,2.0,3,0.0 +6220,8685,1882.5116672150884,36.0,112,9650.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,12687.25,0.0,3110.0,1,9,0.0,2,1.0 +6221,8686,2836.873171547161,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39160.0,0.0,0.0,34129.55,0.0,0.0,3,8,6.0,1,0.0 +6222,8687,2119.065022413481,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35000.0,0.0,0.0,34730.5,0.0,0.0,1,6,4.0,3,0.0 +6223,8688,1781.4249343967917,60.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29840.0,0.0,0.0,29846.3,0.0,1260.0,1,0,1.0,3,0.0 +6224,8689,1354.882939336007,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30460.0,0.0,0.0,29415.2,0.0,0.0,1,7,5.0,3,0.0 +6225,8691,2514.5867526651923,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27760.0,0.0,0.0,26786.95,0.0,0.0,2,8,0.0,3,0.0 +6226,8692,2759.9797918118024,82.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13600.0,0.0,0.0,13391.45,0.0,0.0,1,8,7.0,1,0.0 +6227,8693,1514.856427694435,55.0,300,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34777.2,0.0,35580.0,3,0,0.0,3,2.0 +6228,8694,2692.4054299303834,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19570.0,0.0,0.0,21423.5,0.0,1900.0,1,9,7.0,3,0.0 +6229,8695,2488.1058051186883,55.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19635.4,770.0,19180.0,3,7,6.0,1,1.0 +6230,8696,904.3200409641564,37.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,19550.35,1160.0,15790.0,2,9,7.0,2,1.0 +6231,8697,1536.5852646072183,57.0,111,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41741.9,0.0,44410.0,2,6,4.0,4,2.0 +6232,8698,2140.4704780367338,47.0,111,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53439.95,0.0,57490.0,1,5,4.0,4,2.0 +6233,8699,3071.9404734214604,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3240.0,0.0,7817.0,13093.0,0.0,0.0,3,8,7.0,1,0.0 +6234,8701,567.366206053327,58.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26753.6,0.0,26060.0,2,8,6.0,2,1.0 +6235,8702,2841.6858359094167,42.0,300,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,52.0,0.0,39017.05,0.0,30260.0,2,0,1.0,4,2.0 +6236,8703,2891.5051568786266,83.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11990.0,0.0,0.0,28200.778086542417,0.0,0.0,5,9,7.0,1,0.0 +6237,8704,3153.2744566271735,64.0,221,0.0,56,3,2.0,4.0,2.5,0.0,0.0,0.0,28020.0,399.0,0.0,76688.45,0.0,45100.0,1,1,1.0,4,3.0 +6238,8707,7199.059542863304,31.0,112,15740.0,31,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43625.55,0.0,26890.0,3,7,1.0,4,2.0 +6239,8708,2777.4299405367337,51.0,112,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,20860.0,0.0,0.0,51760.85,0.0,31940.0,1,8,0.0,4,2.0 +6240,8709,2928.00835064372,83.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15560.0,0.0,0.0,16824.0,0.0,0.0,1,1,2.0,1,0.0 +6241,8710,2000.8850365234257,38.0,111,0.0,54,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45170.5,0.0,40280.0,2,7,5.0,4,3.0 +6242,8711,2045.3242672848235,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51010.0,0.0,0.0,46911.95,0.0,0.0,1,9,7.0,3,0.0 +6243,8712,2337.494765612072,56.0,400,0.0,77,0.0,0.0,1.0,1.0,2330.0,0.0,0.0,8370.0,0.0,0.0,10538.0,0.0,0.0,1,0,1.0,1,0.0 +6244,8714,2633.046626406575,31.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20690.3,0.0,22570.0,3,9,7.0,1,1.0 +6245,8716,2567.6497160226704,52.0,300,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,58206.05,0.0,48910.0,2,0,0.0,4,2.0 +6246,8718,714.0306251449731,51.0,112,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,17800.0,0.0,0.0,32681.25,0.0,16140.0,2,6,2.0,4,2.0 +6247,8719,2530.8963880942333,27.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37852.55,0.0,40550.0,3,9,7.0,3,2.0 +6248,8720,1839.8952698057913,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,66430.0,875.0,0.0,66171.20317625866,0.0,0.0,1,8,6.0,3,0.0 +6249,8721,5034.65247150562,93.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13110.0,0.0,0.0,13013.8,0.0,0.0,1,8,7.0,1,0.0 +6250,8722,649.2497483916619,43.0,120,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,1870.0,0.0,0.0,10541.6,0.0,4450.0,2,0,0.0,2,1.0 +6251,8723,775.391098212381,33.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40258.4,3470.0,35810.0,2,4,4.0,4,2.0 +6252,8724,2756.576097371753,53.0,112,760.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37894.65,0.0,37520.0,1,9,1.0,4,3.0 +6253,8726,2568.4687823883082,85.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37640.0,0.0,0.0,34490.95,0.0,0.0,1,10,0.0,1,0.0 +6254,8727,1490.1022612554034,53.0,112,0.0,22,1.0,0.0,2.0,1.5,0.0,7170.0,0.0,0.0,0.0,0.0,13100.0,0.0,20.0,3,7,4.0,2,1.0 +6255,8728,1650.9686116511016,50.0,112,7950.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,591.0,0.0,71269.9,0.0,64610.0,2,10,2.0,3,2.0 +6256,8729,3502.5957706833005,86.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11920.0,0.0,0.0,13457.0,0.0,0.0,5,0,0.0,1,0.0 +6257,8730,3198.5563554412684,45.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,161.0,0.0,66392.35,0.0,72450.0,3,10,8.0,3,2.0 +6258,8731,2028.6439475343777,31.0,112,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,52845.6,0.0,43370.0,2,8,1.0,4,2.0 +6259,8734,1537.9972444038551,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44790.0,0.0,0.0,59634.8844979615,0.0,0.0,1,6,0.0,3,0.0 +6260,8736,784.8845411838405,42.0,111,410.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,3845.7,0.0,1640.0,1,9,7.0,2,1.0 +6261,8737,4011.8817029663187,29.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25293.1,0.0,22900.0,2,9,1.0,1,1.0 +6262,8740,2298.7426327973976,60.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,135022.5209016782,0.0,176560.0,1,7,5.0,3,2.0 +6263,8742,1295.016619581283,37.0,112,0.0,53,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24077.3,1490.0,17420.0,3,8,1.0,2,1.0 +6264,8743,2627.1990891597793,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,5070.0,4500.0,0.0,0.0,9585.0,0.0,0.0,1,8,7.0,1,0.0 +6265,8745,2458.8099286989036,63.0,111,7740.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14351.0,2180.0,4360.0,3,9,7.0,1,1.0 +6266,8746,2679.824354311692,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2630.0,6880.0,0.0,0.0,13801.0,0.0,0.0,3,8,7.0,1,0.0 +6267,8748,2736.8361452602103,62.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34150.0,21.0,0.0,32777.75,0.0,0.0,1,0,0.0,3,0.0 +6268,8750,1600.0627621356155,46.0,111,0.0,21,1.0,1.0,3.0,1.8,0.0,1690.0,0.0,5380.0,0.0,0.0,8509.25,0.0,0.0,2,8,7.0,2,1.0 +6269,8751,2073.1816518841115,48.0,111,0.0,68,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23792.55,4430.0,16460.0,3,7,5.0,4,1.0 +6270,8752,1892.6536629572697,35.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41918.677512808456,0.0,40310.0,2,6,4.0,4,2.0 +6271,8753,259.88572534845815,43.0,400,0.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19475.85,470.0,13190.0,2,0,0.0,2,1.0 +6272,8754,2739.1792866515016,42.0,300,4940.0,64,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,43281.8,0.0,29960.0,2,0,0.0,4,2.0 +6273,8756,2125.6946732680935,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25040.0,295.0,0.0,24559.55,0.0,0.0,1,9,7.0,3,0.0 +6274,8758,2284.1932592958165,94.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16010.0,0.0,0.0,15500.4,0.0,0.0,1,5,4.0,1,0.0 +6275,8759,2210.794247026255,47.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,57590.65,0.0,59660.0,2,9,7.0,4,2.0 +6276,8760,1804.811667926353,54.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17977.3,0.0,36500.0,2,7,5.0,1,1.0 +6277,8761,2423.181741338457,47.0,120,4210.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13861.45,0.0,7100.0,3,0,0.0,1,1.0 +6278,8762,1781.5527998423354,26.0,120,0.0,69,2.0,0.0,3.0,2.0,0.0,12750.0,0.0,0.0,0.0,0.0,14916.0,0.0,0.0,3,0,2.0,2,2.0 +6279,8763,1850.7509248980857,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21970.0,0.0,0.0,22709.3,0.0,0.0,2,4,4.0,1,0.0 +6280,8766,3197.6557428314777,28.0,112,1510.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27084.6,0.0,27120.0,2,10,0.0,3,2.0 +6281,8770,2886.746729225794,79.0,221,0.0,72,1.0,1.0,3.0,2.0,2420.0,0.0,0.0,30460.0,0.0,0.0,46054.8,0.0,15010.0,1,1,1.0,4,1.0 +6282,8771,2261.063902699397,38.0,111,160.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40599.2,0.0,30310.0,3,5,4.0,4,2.0 +6283,8773,3191.4631749997598,63.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22600.0,0.0,0.0,22027.55,0.0,0.0,1,0,0.0,1,0.0 +6284,8774,1448.0157293333043,52.0,112,0.0,43,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,74768.55,0.0,82080.0,3,5,0.0,4,3.0 +6285,8775,1699.338697169831,68.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41160.0,0.0,0.0,38203.0,0.0,0.0,1,1,3.0,3,0.0 +6286,8779,1201.7237078702078,73.0,211,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35500.0,0.0,0.0,32239.2,0.0,0.0,1,2,3.0,3,0.0 +6287,8781,2177.677792926564,44.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,51864.05,0.0,65220.0,1,10,8.0,1,1.0 +6288,8782,2235.2261340756118,57.0,400,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,1380.0,0.0,0.0,41189.0,0.0,39520.0,3,0,0.0,3,2.0 +6289,8783,1620.213747835179,62.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6942.75,0.0,7550.0,1,10,8.0,1,1.0 +6290,8785,1569.6721628251316,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44690.0,0.0,0.0,39388.24538731393,0.0,0.0,1,9,7.0,3,0.0 +6291,8787,910.6474958339024,42.0,112,230.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,13918.375,0.0,11590.0,2,9,1.0,4,2.0 +6292,8788,1786.9628880755272,64.0,111,23540.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,17790.0,55.0,0.0,46693.15,0.0,0.0,1,7,5.0,3,1.0 +6293,8790,5413.254463539861,26.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20142.0,0.0,20290.0,3,9,7.0,3,2.0 +6294,8791,2201.7182123843277,68.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19030.0,247.0,0.0,18163.45,0.0,0.0,1,1,2.0,1,0.0 +6295,8793,4106.934387828351,80.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45370.0,0.0,0.0,36759.75,0.0,0.0,1,7,0.0,2,0.0 +6296,8794,1749.363905560618,53.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15466.6,920.0,14790.0,3,8,7.0,1,1.0 +6297,8795,3389.456878007291,53.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4032.0,0.0,29877.05,0.0,36490.0,1,9,7.0,1,1.0 +6298,8797,3064.967109167785,44.0,111,0.0,64,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,48223.6,0.0,36970.0,2,7,6.0,5,2.0 +6299,8799,549.8626502466326,50.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53452.45,0.0,40220.0,1,9,7.0,4,2.0 +6300,8801,836.3197863629687,63.0,212,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18330.0,0.0,0.0,19868.55,0.0,1460.0,1,4,0.0,1,0.0 +6301,8802,3069.285722699734,67.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32800.0,0.0,0.0,29498.0,0.0,0.0,3,10,4.0,1,0.0 +6302,8806,2854.8674780846713,40.0,112,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51308.7,0.0,50980.0,3,9,1.0,4,2.0 +6303,8807,2985.4158931027046,69.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18520.0,0.0,0.0,17856.6,0.0,0.0,1,0,0.0,1,0.0 +6304,8808,2513.581994265843,57.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6020.0,0.0,0.0,7700.0,0.0,0.0,3,8,7.0,1,0.0 +6305,8809,1092.7427418221057,32.0,111,0.0,34,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35102.0,0.0,32300.0,2,9,7.0,4,2.0 +6306,8810,1838.9656416528946,81.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20170.0,385.0,0.0,21800.95,0.0,0.0,1,0,2.0,3,0.0 +6307,8812,2053.6330595468858,80.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15050.0,0.0,0.0,14383.1,0.0,0.0,5,0,0.0,1,0.0 +6308,8813,324.9286176761221,70.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17180.0,0.0,0.0,17256.0,0.0,0.0,3,9,0.0,1,0.0 +6309,8815,886.7451139484634,44.0,111,1630.0,85,1.0,0.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,23966.95,0.0,0.0,3,9,7.0,2,1.0 +6310,8816,2310.018573899898,67.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14640.0,0.0,0.0,14712.0,0.0,0.0,3,9,7.0,3,0.0 +6311,8817,2751.2812603855573,58.0,300,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16710.0,0.0,0.0,34016.85,0.0,19290.0,1,0,0.0,3,1.0 +6312,8818,3058.494652242041,53.0,111,0.0,53,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,18739.35,0.0,17880.0,3,10,8.0,4,1.0 +6313,8820,1619.8115099146623,50.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30020.1,0.0,32650.0,3,8,7.0,2,1.0 +6314,8821,3991.6377196031694,50.0,300,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,208.0,0.0,21446.15,0.0,20370.0,3,0,0.0,2,1.0 +6315,8822,670.5202191297537,40.0,111,0.0,37,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49200.45,0.0,47050.0,3,8,6.0,2,1.0 +6316,8824,623.1670695012457,44.0,111,0.0,56,1.0,1.0,3.0,2.0,0.0,5200.0,0.0,0.0,0.0,0.0,17425.05,2680.0,2370.0,3,6,4.0,2,1.0 +6317,8825,2978.115329362101,38.0,221,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,71687.65,0.0,81770.0,2,1,1.0,4,2.0 +6318,8827,4686.9752790793245,84.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20150.0,0.0,0.0,20168.0,0.0,0.0,1,9,7.0,3,0.0 +6319,8829,2366.2639902564392,56.0,120,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19030.6,0.0,19610.0,1,0,0.0,3,1.0 +6320,8830,1659.6270186441075,57.0,111,190.0,38,2.0,2.0,3.0,2.0,0.0,460.0,0.0,0.0,0.0,0.0,75408.7,0.0,83920.0,1,8,6.0,4,2.0 +6321,8831,5195.546807392389,42.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14585.5,0.0,14800.0,2,9,7.0,1,1.0 +6322,8833,1938.5567193076079,38.0,400,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33045.8,0.0,31770.0,2,0,0.0,4,2.0 +6323,8838,2345.819631266556,29.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35697.8,0.0,35980.0,2,1,2.0,4,2.0 +6324,8839,217.3413676696808,28.0,112,12810.0,37,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34954.4,0.0,19730.0,3,6,0.0,4,2.0 +6325,8841,2364.2879325718773,71.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33210.0,0.0,0.0,29317.05,0.0,0.0,1,0,3.0,3,0.0 +6326,8842,2781.386230500392,31.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,2660.0,0.0,0.0,24945.3,0.0,13360.0,3,8,7.0,2,1.0 +6327,8843,3044.0758103383687,46.0,111,0.0,63,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,29682.0,0.0,14240.0,1,10,8.0,4,1.0 +6328,8844,3870.049560464779,32.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,57637.25,0.0,59320.0,2,9,7.0,4,2.0 +6329,8846,1603.8052467369025,40.0,400,0.0,52,2.0,3.0,5.0,2.8,0.0,0.0,0.0,0.0,1542.0,0.0,46903.75,0.0,19570.0,1,0,0.0,4,2.0 +6330,8847,3357.9231176210947,28.0,120,8860.0,56,2.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32073.3,0.0,17530.0,3,0,0.0,4,2.0 +6331,8849,2683.5582542402267,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28470.0,0.0,0.0,27375.9,0.0,0.0,1,10,8.0,1,0.0 +6332,8850,2914.831848660964,33.0,221,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32286.65,0.0,32880.0,1,3,4.0,3,2.0 +6333,8851,2496.147787317644,37.0,111,0.0,47,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35871.35,0.0,34800.0,2,4,4.0,4,1.0 +6334,8852,1899.2070403145433,55.0,112,4890.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32648.35127050346,0.0,25300.0,1,8,0.0,3,2.0 +6335,8853,2264.7315025728913,34.0,112,0.0,12,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18803.2,0.0,0.0,2,5,0.0,1,1.0 +6336,8854,2596.692888725251,62.0,400,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,35730.0,0.0,0.0,54169.6,0.0,20050.0,3,0,1.0,4,1.0 +6337,8856,1918.2741851085796,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45310.0,272.0,0.0,60315.55,0.0,0.0,1,8,2.0,3,0.0 +6338,8857,2631.5363386670247,73.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15960.0,0.0,0.0,15401.0,0.0,0.0,2,0,0.0,1,0.0 +6339,8859,2295.0263388784783,55.0,300,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37475.9,0.0,15730.0,1,0,0.0,4,2.0 +6340,8861,2475.657118765226,56.0,400,6100.0,62,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,25828.5,0.0,19940.0,1,0,1.0,4,1.0 +6341,8862,1734.6426202671153,46.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,77.0,0.0,41004.0,0.0,40730.0,2,7,5.0,4,2.0 +6342,8864,1857.52181875961,47.0,120,0.0,67,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,55044.0,55948.35,0.0,0.0,1,0,1.0,4,2.0 +6343,8866,3988.3748713876867,70.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24150.0,0.0,0.0,24162.0,0.0,0.0,3,8,0.0,1,0.0 +6344,8867,2753.3727066555603,52.0,120,0.0,53,1.0,1.0,3.0,2.0,0.0,0.0,0.0,47150.0,0.0,0.0,61595.75,0.0,18100.0,1,0,0.0,4,1.0 +6345,8868,2006.8339161799565,43.0,111,0.0,67,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27620.35,6210.0,16180.0,3,8,7.0,4,1.0 +6346,8869,2151.8473620554305,46.0,112,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63465.35,0.0,65720.0,2,7,0.0,4,2.0 +6347,8870,2417.8469397180634,30.0,111,6050.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29924.95,450.0,23400.0,3,9,7.0,3,2.0 +6348,8871,3509.84934256802,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14160.0,0.0,0.0,13152.5,0.0,0.0,1,10,8.0,1,0.0 +6349,8872,3226.217465700391,56.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,40320.0,0.0,0.0,49190.75,0.0,13820.0,2,8,1.0,3,1.0 +6350,8873,1657.7903247635743,50.0,111,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44783.8,0.0,44840.0,2,6,4.0,4,2.0 +6351,8874,3668.1316001961904,81.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12760.0,0.0,0.0,19417.4,0.0,0.0,3,0,0.0,1,0.0 +6352,8875,2201.592340259015,39.0,300,6870.0,54,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29270.4,0.0,22600.0,2,0,0.0,4,2.0 +6353,8876,2663.1726473994836,41.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34663.85,0.0,39170.0,2,7,5.0,1,1.0 +6354,8878,3850.861884286542,27.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40370.8,0.0,22280.0,2,8,7.0,3,2.0 +6355,8879,678.2301736664482,67.0,300,0.0,75,0.0,0.0,2.0,1.3,0.0,0.0,0.0,19810.0,0.0,0.0,21379.85,0.0,0.0,1,0,0.0,5,0.0 +6356,8880,643.8884120680082,41.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15558.8,3350.0,9660.0,3,9,7.0,2,1.0 +6357,8882,3914.506429846569,44.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31213.0,0.0,37660.0,3,9,7.0,2,1.0 +6358,8883,2521.2359568979637,35.0,112,7120.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45341.75,0.0,37240.0,2,10,0.0,4,2.0 +6359,8885,1922.8731740725955,57.0,111,0.0,37,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,105665.83029915558,0.0,125420.0,2,10,8.0,4,3.0 +6360,8886,2876.8789971328697,34.0,400,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,161.0,0.0,50935.15,0.0,49040.0,2,0,0.0,3,2.0 +6361,8888,2721.649148759155,59.0,111,1830.0,63,1.0,0.0,1.0,1.0,5740.0,0.0,0.0,0.0,0.0,0.0,10895.3,50.0,60.0,3,9,7.0,1,1.0 +6362,8889,2703.9388191021067,68.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36630.0,0.0,0.0,35085.65,0.0,0.0,1,9,3.0,3,0.0 +6363,8890,2169.0457370891722,40.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44135.15,550.0,39840.0,3,8,7.0,4,2.0 +6364,8891,1019.5313089326872,32.0,111,2790.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24616.65,1780.0,12240.0,3,9,7.0,2,1.0 +6365,8893,2148.3839393869043,43.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50865.8,0.0,53240.0,2,8,6.0,4,2.0 +6366,8895,2047.3130310862653,59.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,130225.3,0.0,182330.0,1,7,5.0,3,2.0 +6367,8896,2236.2619974875333,29.0,400,20.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34750.1,0.0,34490.0,3,0,1.0,4,2.0 +6368,8897,465.0136257679007,45.0,221,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16767.25,1750.0,12490.0,3,1,2.0,2,1.0 +6369,8898,2613.696571795943,56.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,150.0,0.0,47935.9,0.0,57990.0,2,9,2.0,1,1.0 +6370,8900,500.1495506902923,45.0,400,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,8.0,0.0,23890.15,0.0,22370.0,3,0,0.0,2,1.0 +6371,8903,2531.2039161779153,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19290.0,0.0,0.0,18596.5,0.0,0.0,1,8,6.0,1,0.0 +6372,8904,4247.077378178044,49.0,111,0.0,21,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8099.55,0.0,0.0,3,8,7.0,1,1.0 +6373,8905,2133.0788882008947,45.0,112,11420.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16220.35,0.0,5280.0,1,8,1.0,1,1.0 +6374,8907,1637.5274177096303,65.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14470.0,0.0,0.0,24997.65,0.0,4350.0,1,6,5.0,3,1.0 +6375,8909,3136.8975870515374,20.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11467.75,0.0,6650.0,3,9,7.0,1,1.0 +6376,8911,1712.4500072345982,42.0,112,0.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,1454.0,0.0,47655.85,0.0,45570.0,2,10,1.0,4,1.0 +6377,8913,2697.5246956850215,54.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,70904.23862709776,0.0,77750.0,5,10,8.0,3,2.0 +6378,8914,2194.4700728026,63.0,111,0.0,78,0.0,0.0,1.0,1.0,2330.0,0.0,0.0,12200.0,0.0,0.0,17794.0,0.0,0.0,3,8,7.0,1,0.0 +6379,8915,3237.6563337532666,42.0,111,0.0,54,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,44487.35,0.0,37470.0,3,10,8.0,4,2.0 +6380,8917,2326.346238429067,48.0,112,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19469.35,0.0,20250.0,1,9,1.0,3,2.0 +6381,8920,1812.3296888224486,88.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32810.0,0.0,0.0,29627.65,0.0,0.0,1,3,4.0,1,0.0 +6382,8921,1762.6403222527285,65.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16580.0,0.0,0.0,16000.85,0.0,0.0,1,0,1.0,1,0.0 +6383,8922,702.509260862616,46.0,111,5430.0,52,2.0,0.0,4.0,2.1,0.0,1440.0,0.0,0.0,0.0,0.0,20466.75,340.0,3820.0,3,8,7.0,2,2.0 +6384,8924,1583.5322265702118,58.0,112,0.0,,1.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34594.195856385064,0.0,31530.0,1,8,3.0,3,1.0 +6385,8926,889.1906859467562,38.0,111,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24579.25,1440.0,17320.0,3,8,6.0,2,1.0 +6386,8927,2281.2156291149126,51.0,120,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,16398.8,0.0,20870.0,1,0,0.0,2,1.0 +6387,8929,1704.8309955490613,73.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32900.0,0.0,0.0,30736.8,0.0,0.0,1,6,0.0,3,0.0 +6388,8931,2091.2777751074673,55.0,112,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40376.8,0.0,41780.0,2,7,0.0,4,2.0 +6389,8932,1060.4148940752825,28.0,120,0.0,85,0.0,0.0,4.0,1.9,0.0,8140.0,0.0,0.0,0.0,0.0,23053.0,710.0,1000.0,3,0,3.0,4,0.0 +6390,8934,4687.80279194797,87.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42780.0,0.0,0.0,40280.7,0.0,0.0,1,8,7.0,3,0.0 +6391,8935,1466.7890277320219,55.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38542.15,0.0,40310.0,2,7,5.0,3,2.0 +6392,8936,2643.6092633499493,40.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43828.6,0.0,44830.0,3,9,7.0,4,2.0 +6393,8937,2860.780365687426,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20150.0,12.0,0.0,18014.193736469635,0.0,0.0,1,8,7.0,1,0.0 +6394,8938,2020.76146044515,29.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18979.55,0.0,19800.0,3,9,2.0,1,1.0 +6395,8940,2803.7546056236774,54.0,111,0.0,31,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,19.0,0.0,56299.805,0.0,62060.0,2,10,8.0,4,2.0 +6396,8941,3130.6089948908307,42.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29867.9,320.0,24560.0,2,9,1.0,4,2.0 +6397,8942,5121.401233976578,25.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23259.0,0.0,25120.0,3,10,8.0,1,1.0 +6398,8943,2869.4093259949764,21.0,221,9300.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17642.0,0.0,8310.0,3,1,2.0,3,2.0 +6399,8944,2118.2665231384963,57.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24116.710254100693,0.0,26110.0,3,8,7.0,3,2.0 +6400,8946,2169.240115590277,42.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44046.25,0.0,41800.0,2,10,8.0,4,2.0 +6401,8947,3030.797701517008,43.0,300,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38015.0,0.0,43660.0,2,0,0.0,1,1.0 +6402,8948,1654.6408559246456,67.0,112,0.0,77,0.0,0.0,2.0,1.5,5150.0,0.0,0.0,18470.0,0.0,0.0,23261.0,0.0,0.0,1,6,0.0,3,0.0 +6403,8951,1595.0968297771306,45.0,111,0.0,53,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,2.0,0.0,62655.8,0.0,58110.0,1,6,4.0,4,2.0 +6404,8952,1994.1463190556713,44.0,211,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22579.0,560.0,23740.0,3,4,4.0,1,1.0 +6405,8954,4241.361715472048,45.0,111,4030.0,85,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,30303.55,0.0,24990.0,3,9,7.0,4,2.0 +6406,8955,2560.912923712713,78.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15110.0,0.0,0.0,14688.15,0.0,0.0,1,10,3.0,1,0.0 +6407,8956,2478.626954828388,57.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30682.7,0.0,0.0,1,9,0.0,3,1.0 +6408,8957,2933.0614843565727,90.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14140.0,0.0,0.0,14874.0,0.0,0.0,1,8,7.0,1,0.0 +6409,8958,2343.2090732613615,22.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14400.0,0.0,0.0,4,8,7.0,3,0.0 +6410,8960,5147.187296463999,34.0,111,17260.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41189.7,0.0,29110.0,2,10,8.0,3,2.0 +6411,8962,2019.008243868226,54.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,1211.0,0.0,53087.85,0.0,66980.0,1,9,7.0,2,1.0 +6412,8963,2001.3408454680068,65.0,111,19780.0,35,2.0,2.0,3.0,2.0,0.0,0.0,0.0,21020.0,0.0,0.0,47000.25,0.0,10800.0,2,9,7.0,4,2.0 +6413,8965,4088.178193054353,22.0,111,9690.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13167.25,0.0,560.0,3,9,7.0,1,1.0 +6414,8966,3219.2698973724378,40.0,111,21340.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20903.35,0.0,0.0,2,9,7.0,1,1.0 +6415,8967,2093.3992865346145,48.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,55148.95,0.0,60680.0,2,9,7.0,4,2.0 +6416,8968,2632.8220367549634,51.0,111,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37520.6,0.0,37230.0,5,9,7.0,4,2.0 +6417,8970,1331.0234699742384,67.0,111,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30680.0,0.0,0.0,63571.35,0.0,27170.0,1,7,6.0,3,1.0 +6418,8974,3262.889776778542,53.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43463.75,0.0,42870.0,2,8,1.0,4,2.0 +6419,8976,2008.7437102589154,61.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29260.0,0.0,0.0,31757.65,0.0,4930.0,1,8,0.0,3,0.0 +6420,8979,2906.946589514008,39.0,111,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49884.6,0.0,53240.0,2,9,7.0,4,2.0 +6421,8980,1873.9924015249437,47.0,300,2690.0,64,2.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,46189.55,0.0,31940.0,2,0,0.0,4,2.0 +6422,8981,1459.7642425052175,32.0,112,12190.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29858.9,0.0,13640.0,3,8,0.0,3,2.0 +6423,8982,1823.0451477089123,44.0,300,6670.0,69,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,21237.0,61896.05,0.0,31680.0,2,0,0.0,4,2.0 +6424,8983,1981.5270738457364,67.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16320.0,130.0,0.0,19430.0,0.0,0.0,1,0,3.0,3,0.0 +6425,8984,2289.177890857686,30.0,300,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,87.0,0.0,39002.6,0.0,40670.0,2,0,0.0,3,2.0 +6426,8985,3193.4258134544307,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16920.0,72.0,0.0,16665.7,0.0,0.0,1,10,8.0,1,0.0 +6427,8986,2233.1423323857107,22.0,300,0.0,56,1.0,1.0,2.0,1.5,0.0,5730.0,0.0,0.0,0.0,0.0,15777.2,2450.0,8190.0,1,0,0.0,2,1.0 +6428,8987,1402.6214954102836,51.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27162.0,0.0,24480.0,3,10,8.0,2,1.0 +6429,8988,1849.316632750472,58.0,111,0.0,23,3,3.0,3.0,2.0,0.0,0.0,0.0,1830.0,592.0,0.0,97553.6,0.0,110740.0,1,7,5.0,4,3.0 +6430,8991,1909.0658074144571,72.0,111,15280.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67920.0,592.0,0.0,91471.05,0.0,16720.0,1,4,3.0,3,0.0 +6431,8993,3611.564590233798,27.0,111,0.0,68,1.0,0.0,2.0,1.3,0.0,6700.0,0.0,0.0,0.0,0.0,14972.45,440.0,930.0,3,10,8.0,2,1.0 +6432,8994,2912.736572905524,43.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,41153.85,0.0,41330.0,2,6,5.0,4,2.0 +6433,8995,3185.5319397869052,79.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21790.0,0.0,0.0,19951.05,0.0,0.0,1,1,2.0,1,0.0 +6434,8997,1617.3205542684443,45.0,111,160.0,42,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34056.1,0.0,35130.0,3,7,6.0,4,2.0 +6435,8999,2518.847231256962,53.0,111,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,475.0,0.0,130533.95,0.0,146670.0,1,10,8.0,4,2.0 +6436,9000,1951.4059815255387,77.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42100.0,13.0,0.0,44752.95,0.0,0.0,1,1,2.0,3,0.0 +6437,9002,1899.709812673731,82.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67340.0,0.0,0.0,57368.1,0.0,0.0,1,10,8.0,3,0.0 +6438,9003,2744.69409488344,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21170.0,0.0,0.0,19549.45,0.0,0.0,3,9,7.0,1,0.0 +6439,9005,3002.384068422921,29.0,111,4330.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,11011.45,0.0,0.0,3,9,7.0,4,2.0 +6440,9007,2151.572955743969,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21260.0,0.0,0.0,20399.250848582535,0.0,0.0,1,5,4.0,1,0.0 +6441,9009,2876.668726007134,83.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,49000.0,827.0,0.0,44506.35,0.0,0.0,5,0,0.0,1,0.0 +6442,9010,1802.0444654042537,59.0,112,14290.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25970.0,0.0,0.0,37135.9,0.0,0.0,1,8,1.0,3,0.0 +6443,9013,3584.9596438916974,81.0,221,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,32910.0,0.0,0.0,34543.4,0.0,0.0,1,1,1.0,3,1.0 +6444,9014,1865.7974495956366,53.0,112,0.0,67,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19876.5,0.0,22480.0,3,8,0.0,4,2.0 +6445,9016,2918.2509169732966,64.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34030.0,6.0,45.0,42473.37558547454,0.0,0.0,1,9,7.0,1,0.0 +6446,9018,2753.743591209582,64.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10280.0,0.0,0.0,10045.35,0.0,0.0,1,0,1.0,1,0.0 +6447,9022,3175.6984674986315,40.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,69146.5,0.0,74250.0,2,4,4.0,3,2.0 +6448,9024,2926.989407540005,60.0,111,0.0,77,0.0,0.0,1.0,1.0,3420.0,0.0,0.0,0.0,0.0,0.0,6492.0,0.0,0.0,3,6,5.0,1,0.0 +6449,9026,561.7095741360491,46.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28410.25,0.0,24520.0,2,9,7.0,2,1.0 +6450,9028,3235.7024728948168,40.0,120,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,14.0,0.0,60638.1,0.0,62920.0,2,0,0.0,4,2.0 +6451,9029,3005.3957965180552,37.0,211,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45085.8,0.0,43760.0,3,4,4.0,4,2.0 +6452,9030,4193.891657379393,31.0,111,0.0,64,1.0,1.0,6.0,2.7,0.0,5530.0,0.0,0.0,0.0,0.0,53740.0,2370.0,23410.0,3,10,8.0,4,1.0 +6453,9031,2782.525236346257,49.0,112,0.0,21,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,71495.95,0.0,77040.0,1,9,0.0,4,3.0 +6454,9032,1627.8052853832237,46.0,111,0.0,31,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47103.55,0.0,47940.0,2,9,7.0,4,2.0 +6455,9033,672.8430555415504,47.0,111,0.0,56,2.0,2.0,3.0,1.8,0.0,300.0,0.0,6750.0,0.0,0.0,18961.0,450.0,790.0,3,6,4.0,2,2.0 +6456,9034,2656.008944054525,83.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19340.0,0.0,0.0,22529.3,0.0,0.0,1,0,0.0,1,0.0 +6457,9035,3032.8738609775583,26.0,300,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38861.1,0.0,40670.0,2,0,0.0,3,2.0 +6458,9036,1649.333092344256,77.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48730.0,0.0,0.0,51230.35,0.0,0.0,1,9,7.0,3,0.0 +6459,9037,2437.359528632276,33.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35584.45,0.0,41940.0,3,8,7.0,1,1.0 +6460,9041,2034.0590361115812,92.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13620.0,0.0,0.0,14678.15,0.0,0.0,3,0,0.0,1,0.0 +6461,9042,1812.0516532324775,37.0,400,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,53530.9,0.0,44610.0,1,0,1.0,4,2.0 +6462,9043,2690.0333753262303,52.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15503.0,0.0,16110.0,1,8,6.0,1,1.0 +6463,9044,2141.695457306918,69.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12230.0,0.0,0.0,11754.65,0.0,0.0,2,0,1.0,1,0.0 +6464,9046,2149.2290249815965,53.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,175.0,0.0,84183.05,0.0,100820.0,2,10,8.0,3,2.0 +6465,9047,333.8506961192314,48.0,300,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22077.2,0.0,14760.0,3,0,0.0,2,1.0 +6466,9048,2633.674164529467,50.0,400,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,8866.35,0.0,0.0,1,0,0.0,1,0.0 +6467,9049,809.8865502987726,38.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19798.1,0.0,13730.0,3,9,7.0,2,1.0 +6468,9050,3913.7610015365694,64.0,111,0.0,74,2.0,2.0,3.0,2.0,0.0,0.0,0.0,28190.0,0.0,0.0,77633.2,0.0,58860.0,1,10,8.0,4,2.0 +6469,9051,1961.216786268247,70.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24400.0,0.0,0.0,23095.1,0.0,0.0,1,0,0.0,1,0.0 +6470,9052,1343.9983442786397,34.0,211,4950.0,65,1.0,0.0,7.0,3.2,0.0,6390.0,0.0,0.0,0.0,0.0,37528.6,0.0,4320.0,3,1,3.0,4,1.0 +6471,9053,3325.92342088102,57.0,111,10980.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10784.7,0.0,0.0,3,8,6.0,1,1.0 +6472,9054,849.3553728370829,46.0,300,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21970.05,1020.0,16680.0,3,0,0.0,2,1.0 +6473,9055,3037.9050437186565,42.0,120,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31217.25,0.0,29040.0,2,0,0.0,4,2.0 +6474,9057,664.689929949544,43.0,112,0.0,54,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51828.15,0.0,38590.0,2,10,0.0,2,1.0 +6475,9058,2117.9604319307005,35.0,221,330.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34639.25,130.0,32140.0,2,3,4.0,4,2.0 +6476,9059,1517.9124709608259,69.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31110.0,0.0,0.0,29583.7,0.0,0.0,1,0,1.0,3,0.0 +6477,9060,2826.6986603520972,30.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15551.65,0.0,21600.0,2,8,0.0,1,1.0 +6478,9061,3967.845679200329,28.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19087.65,0.0,20290.0,3,9,7.0,1,1.0 +6479,9063,1832.9436620919294,76.0,111,2030.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,35610.0,0.0,0.0,64022.45,0.0,0.0,1,8,7.0,4,1.0 +6480,9065,2636.1542143294832,65.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16950.0,0.0,0.0,16657.5,0.0,0.0,1,0,0.0,1,0.0 +6481,9066,1809.5651238698642,80.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21800.0,0.0,0.0,33792.0,0.0,0.0,1,8,1.0,3,0.0 +6482,9067,1620.7276294191252,67.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20550.0,0.0,0.0,20104.0,0.0,0.0,1,0,1.0,3,0.0 +6483,9068,4970.275668584371,40.0,221,0.0,37,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58207.0,0.0,61430.0,3,1,2.0,4,3.0 +6484,9069,2337.6080954883364,67.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25610.0,0.0,0.0,24847.1,0.0,0.0,1,9,7.0,1,0.0 +6485,9070,2673.8968345597928,65.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41850.0,0.0,0.0,43094.05,0.0,0.0,1,8,3.0,1,0.0 +6486,9071,1563.158035379116,61.0,111,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3072.0,0.0,88629.4,0.0,20890.0,1,8,7.0,3,2.0 +6487,9073,2236.944006483913,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21870.0,0.0,0.0,20642.6,0.0,0.0,3,9,7.0,1,0.0 +6488,9074,2087.6389678432847,39.0,111,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37265.05,4390.0,21510.0,3,10,8.0,4,1.0 +6489,9075,590.5237987841374,50.0,112,2990.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,460.0,0.0,0.0,39871.0,0.0,35110.0,3,9,0.0,2,2.0 +6490,9076,3526.9478815552598,40.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20127.6,0.0,19920.0,2,8,7.0,1,1.0 +6491,9077,2101.9674983625846,62.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25725.6,0.0,29020.0,3,7,5.0,1,1.0 +6492,9078,1469.9494214872207,51.0,112,0.0,68,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32201.5,0.0,32730.0,1,8,2.0,4,2.0 +6493,9080,1733.4219055340498,46.0,300,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,59260.05,0.0,61550.0,2,0,1.0,4,2.0 +6494,9083,2668.7149883862603,48.0,112,0.0,62,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,18943.95,0.0,17080.0,1,6,0.0,2,1.0 +6495,9085,3927.3774412824027,46.0,400,0.0,65,3,3.0,5.0,3.0,0.0,0.0,0.0,27400.0,0.0,0.0,82374.3,110.0,62920.0,1,0,1.0,4,3.0 +6496,9088,822.0071246197693,37.0,111,0.0,54,1.0,0.0,3.0,1.6,0.0,7750.0,0.0,0.0,0.0,0.0,17420.0,0.0,0.0,3,9,7.0,2,1.0 +6497,9093,789.0532857837226,40.0,111,1350.0,64,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,16336.0,35326.0,0.0,11730.0,3,9,7.0,4,1.0 +6498,9094,1730.7112139998073,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,42380.0,1417.0,0.0,45266.155717265574,0.0,0.0,1,9,7.0,1,0.0 +6499,9095,2177.1958120127438,44.0,211,5950.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8828.25,0.0,0.0,3,1,3.0,1,1.0 +6500,9096,1702.7587612506352,49.0,111,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29905.2,2830.0,16510.0,3,7,5.0,4,1.0 +6501,9097,3160.4962535570994,57.0,111,8690.0,21,3,1.0,4.0,2.5,8030.0,4400.0,0.0,0.0,0.0,0.0,33423.55,0.0,30.0,1,10,8.0,4,3.0 +6502,9098,1063.1788937234217,54.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,69378.3,0.0,79770.0,1,7,5.0,4,2.0 +6503,9099,3869.331163323183,75.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17220.0,0.0,0.0,16974.65,0.0,0.0,1,7,5.0,1,0.0 +6504,9101,2133.2852624581374,64.0,221,80.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13600.0,0.0,0.0,21798.45,0.0,8490.0,1,1,1.0,3,1.0 +6505,9102,788.6238471064179,43.0,111,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28603.1,0.0,30030.0,2,10,8.0,2,1.0 +6506,9103,2632.5838743505283,34.0,300,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35451.7,0.0,35580.0,4,0,0.0,4,2.0 +6507,9105,2288.9034291407,48.0,112,0.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,66609.95,0.0,69620.0,2,7,0.0,4,2.0 +6508,9109,529.8050706748573,44.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35780.55,0.0,26570.0,2,9,7.0,2,1.0 +6509,9110,2396.4822294089176,29.0,120,6940.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30267.85,0.0,23210.0,3,0,3.0,4,2.0 +6510,9111,2073.2908547322368,82.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29510.0,0.0,0.0,37195.595448733366,0.0,0.0,1,8,7.0,3,0.0 +6511,9112,1279.5339678567823,24.0,111,1910.0,54,3,4.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,70210.0,3050.0,57220.0,3,9,7.0,5,4.0 +6512,9113,2332.0650126862038,57.0,112,0.0,68,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22769.15,0.0,23050.0,2,6,0.0,4,2.0 +6513,9114,1899.9523904368539,61.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,326.0,0.0,24786.55,0.0,25430.0,1,10,8.0,1,1.0 +6514,9115,2948.609037758117,30.0,112,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35402.9,0.0,35520.0,3,9,0.0,4,2.0 +6515,9116,1625.9068063025486,39.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,59331.55,0.0,51420.0,2,6,5.0,4,2.0 +6516,9118,533.6927211888508,32.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,5.0,0.0,46049.25,0.0,40060.0,3,9,3.0,4,2.0 +6517,9119,2943.073912160827,37.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,31.0,0.0,70179.05,0.0,71420.0,2,9,7.0,4,2.0 +6518,9122,3275.66550204571,58.0,300,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18204.3,0.0,18810.0,3,0,1.0,1,1.0 +6519,9123,2538.923746061727,82.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29810.0,0.0,0.0,28789.4,0.0,0.0,1,8,7.0,3,0.0 +6520,9124,1046.504030866859,29.0,111,0.0,85,0.0,0.0,3.0,1.8,3480.0,13940.0,0.0,0.0,0.0,0.0,23768.0,0.0,0.0,3,9,7.0,2,0.0 +6521,9125,1769.837409036667,31.0,112,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23599.3,1880.0,21290.0,3,9,3.0,2,1.0 +6522,9126,1998.1970940829506,68.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17110.0,0.0,0.0,16978.7,0.0,0.0,1,0,0.0,1,0.0 +6523,9127,638.444263895821,51.0,400,4710.0,85,1.0,1.0,5.0,2.8,6980.0,0.0,0.0,0.0,0.0,0.0,51803.1947520622,0.0,27440.0,2,0,0.0,2,1.0 +6524,9130,5510.535384741245,31.0,112,0.0,85,1.0,1.0,5.0,2.4,9720.0,0.0,0.0,0.0,0.0,0.0,24762.65,540.0,1370.0,2,8,1.0,4,1.0 +6525,9132,1815.227731428948,32.0,112,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43669.4,0.0,24450.0,3,8,1.0,3,2.0 +6526,9134,2865.550698400157,64.0,111,0.0,75,1.0,0.0,3.0,2.0,0.0,0.0,0.0,28470.0,0.0,0.0,22826.85,0.0,300.0,1,10,8.0,4,1.0 +6527,9135,1695.9488806085142,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29690.0,0.0,0.0,26506.243736469634,0.0,0.0,1,5,4.0,1,0.0 +6528,9136,2213.7473768694704,76.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14430.0,0.0,0.0,14413.55,0.0,0.0,1,7,0.0,1,0.0 +6529,9137,2865.727924215934,82.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,2540.0,11650.0,0.0,0.0,14099.0,0.0,0.0,1,0,0.0,3,0.0 +6530,9138,1743.3556540090449,57.0,112,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19930.0,0.0,0.0,43780.4,0.0,27720.0,1,6,0.0,3,1.0 +6531,9139,1826.1135425019265,56.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38441.25,0.0,46450.0,2,8,6.0,1,1.0 +6532,9142,2945.490582834682,34.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20008.5,0.0,130.0,1,10,8.0,1,1.0 +6533,9144,1300.827052825232,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36860.0,0.0,0.0,35414.3,0.0,0.0,1,4,3.0,3,0.0 +6534,9145,2733.6397488598313,37.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46038.1,0.0,26100.0,2,8,0.0,4,2.0 +6535,9146,588.8953456858671,45.0,111,0.0,34,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,291.0,0.0,55529.15,0.0,53560.0,2,8,6.0,2,1.0 +6536,9148,1191.6577674969021,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32590.0,0.0,0.0,27239.05,0.0,0.0,1,10,1.0,1,0.0 +6537,9149,3670.93744823912,51.0,300,0.0,62,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,20030.0,0.0,19670.0,3,0,1.0,5,2.0 +6538,9151,1668.3710725983105,57.0,221,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3546.55,0.0,0.0,1,3,4.0,3,2.0 +6539,9152,1723.81942562071,73.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28570.0,0.0,0.0,27829.15,0.0,0.0,1,0,0.0,3,0.0 +6540,9153,2800.397967397656,42.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39868.0,0.0,22200.0,5,8,1.0,3,2.0 +6541,9154,2952.4146173282556,77.0,211,0.0,78,0.0,0.0,3.0,2.0,9720.0,0.0,0.0,26410.0,0.0,0.0,36381.0,0.0,0.0,1,1,3.0,4,0.0 +6542,9155,1001.2972508657331,39.0,111,0.0,55,1.0,0.0,4.0,2.1,0.0,5490.0,0.0,0.0,0.0,0.0,22013.75,0.0,0.0,2,10,8.0,2,1.0 +6543,9156,4062.7792717748953,18.0,111,6970.0,84,0.0,0.0,1.0,1.0,5070.0,2550.0,0.0,0.0,0.0,0.0,29651.75,1970.0,1370.0,3,8,6.0,1,0.0 +6544,9157,3163.34503023273,38.0,111,3030.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14747.2,0.0,10490.0,3,9,7.0,1,1.0 +6545,9159,2438.584078317534,52.0,111,0.0,31,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,40821.55,0.0,54570.0,2,10,8.0,4,1.0 +6546,9160,3440.2709480940407,27.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21948.95,0.0,2860.0,3,9,7.0,1,1.0 +6547,9164,2652.698380435024,65.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26930.0,0.0,0.0,28714.2,0.0,0.0,1,8,1.0,1,0.0 +6548,9166,396.0005035857901,38.0,211,0.0,85,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26788.15,0.0,0.0,3,2,2.0,2,1.0 +6549,9167,4078.6557772753204,26.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27287.75,0.0,27010.0,3,9,7.0,1,1.0 +6550,9168,1296.2890567401655,34.0,111,0.0,33,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,48398.88862709775,0.0,39410.0,3,9,7.0,4,1.0 +6551,9169,2429.193502559811,76.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31570.0,0.0,0.0,31107.05,0.0,0.0,1,0,0.0,3,0.0 +6552,9171,1650.8502001979243,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32790.0,0.0,0.0,32274.026766385192,0.0,0.0,1,6,5.0,3,0.0 +6553,9173,3491.785128487363,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15630.0,0.0,0.0,15630.0,0.0,0.0,3,8,7.0,1,0.0 +6554,9174,3073.8351033358135,73.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16810.0,0.0,0.0,16385.85,0.0,0.0,1,0,0.0,1,0.0 +6555,9176,2968.9064132878516,23.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8840.5,0.0,5780.0,3,7,5.0,1,1.0 +6556,9177,1806.1826352742,62.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34520.0,0.0,0.0,32901.6,0.0,0.0,1,8,2.0,3,0.0 +6557,9179,1662.717032617474,45.0,111,0.0,47,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,67787.4,0.0,56900.0,2,8,7.0,4,1.0 +6558,9180,2000.9292624130924,45.0,111,0.0,62,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,44683.15,0.0,37010.0,3,9,7.0,4,2.0 +6559,9182,2414.5459860888673,51.0,111,0.0,38,1.0,1.0,4.0,2.5,0.0,0.0,0.0,30790.0,1837.0,0.0,73581.8,0.0,52460.0,1,8,6.0,4,1.0 +6560,9183,2240.4047920721987,78.0,120,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14330.0,0.0,0.0,15163.0,0.0,0.0,1,0,0.0,1,0.0 +6561,9184,6574.342174116548,39.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26150.05,0.0,28660.0,3,9,7.0,1,1.0 +6562,9186,681.6840787226389,50.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,358.0,0.0,140447.55,0.0,143040.0,2,10,8.0,2,1.0 +6563,9188,3481.8832385137284,34.0,111,0.0,23,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40616.05,0.0,39370.0,5,9,7.0,4,2.0 +6564,9190,3912.261484100652,25.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34591.15,2440.0,38000.0,3,10,8.0,1,1.0 +6565,9192,6618.43492790183,35.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42174.3,0.0,47720.0,3,10,8.0,1,1.0 +6566,9193,2696.100493064476,48.0,112,0.0,67,2.0,1.0,5.0,3.0,2080.0,0.0,0.0,14640.0,0.0,0.0,40070.2,0.0,20420.0,2,7,0.0,4,2.0 +6567,9194,1623.5609775813173,40.0,111,5950.0,85,2.0,0.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,20971.7,0.0,0.0,3,6,4.0,4,2.0 +6568,9200,2585.3731524227405,19.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3964.0,0.0,0.0,3,9,7.0,3,0.0 +6569,9202,2431.03269049338,50.0,112,0.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32497.7,0.0,32920.0,3,8,1.0,4,2.0 +6570,9203,3381.207039141681,26.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22073.3,2070.0,20120.0,3,9,7.0,1,1.0 +6571,9204,4258.473981297653,26.0,112,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,43.0,0.0,50393.35,0.0,39130.0,3,8,0.0,4,2.0 +6572,9205,3368.923467374082,42.0,111,0.0,31,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,65746.25,0.0,33430.0,2,10,8.0,4,2.0 +6573,9206,3574.930304695338,23.0,111,5110.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27202.0,1300.0,20790.0,3,10,8.0,3,2.0 +6574,9207,2011.2620503454536,62.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20770.0,0.0,0.0,18839.65,0.0,0.0,1,10,2.0,3,0.0 +6575,9208,2526.0054869831024,87.0,111,0.0,86,0.0,0.0,3.0,2.0,0.0,12640.0,0.0,25240.0,0.0,0.0,36342.15,0.0,0.0,1,10,8.0,4,0.0 +6576,9210,1648.594809287208,56.0,111,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,207.0,0.0,43902.55,0.0,42470.0,1,10,8.0,4,2.0 +6577,9211,2175.4286796413353,35.0,120,0.0,68,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,29576.65,0.0,24920.0,3,0,1.0,2,1.0 +6578,9212,4256.397926190999,25.0,112,0.0,85,0.0,0.0,2.0,1.3,0.0,7510.0,0.0,0.0,0.0,0.0,13057.0,0.0,0.0,3,8,3.0,2,0.0 +6579,9213,1741.6393926911471,55.0,112,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42561.25,0.0,44200.0,3,10,1.0,3,2.0 +6580,9214,2193.9988808868634,46.0,111,14880.0,62,2.0,1.0,2.0,1.5,6600.0,0.0,0.0,0.0,0.0,0.0,26013.6,0.0,3520.0,3,4,4.0,3,2.0 +6581,9216,2167.3345036013807,47.0,112,0.0,33,1.0,1.0,4.0,2.3,0.0,0.0,0.0,25430.0,0.0,0.0,75064.4,0.0,47320.0,1,9,2.0,4,1.0 +6582,9217,6461.586229547169,36.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23833.5,0.0,33920.0,3,10,8.0,1,1.0 +6583,9218,2088.647882429115,50.0,111,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39531.05,0.0,42210.0,3,10,8.0,4,2.0 +6584,9219,2241.482341410583,46.0,212,0.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,29323.6,0.0,24220.0,2,2,0.0,4,3.0 +6585,9220,652.1543934351954,44.0,111,0.0,52,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27752.6,960.0,18470.0,3,8,7.0,2,2.0 +6586,9223,1635.4527475324296,42.0,400,0.0,13,1.0,1.0,3.0,2.0,19450.0,0.0,0.0,16880.0,0.0,0.0,40782.35,0.0,0.0,1,0,0.0,4,1.0 +6587,9225,4419.620186753658,33.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46873.05,0.0,50280.0,3,9,7.0,3,2.0 +6588,9227,2830.7365808815116,42.0,221,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52751.35,0.0,53050.0,2,1,2.0,4,2.0 +6589,9229,929.996741845156,23.0,221,0.0,85,0.0,0.0,4.0,1.9,0.0,6070.0,0.0,0.0,0.0,0.0,19000.0,0.0,0.0,3,1,2.0,2,0.0 +6590,9230,2236.4449088391157,55.0,112,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,105598.9,0.0,130760.0,2,10,2.0,4,2.0 +6591,9231,2182.7121120225233,84.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,68770.0,0.0,0.0,57142.65,0.0,0.0,1,10,8.0,3,0.0 +6592,9233,1966.2304284773643,53.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,264.0,0.0,45863.3,0.0,48080.0,1,8,0.0,3,2.0 +6593,9234,2339.837599576609,33.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36115.15,0.0,33460.0,3,8,7.0,4,2.0 +6594,9236,1935.2898710306638,71.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25630.0,0.0,0.0,24212.65,0.0,0.0,1,9,1.0,3,0.0 +6595,9237,2334.097413327771,41.0,111,0.0,53,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27554.75,0.0,23970.0,3,10,8.0,4,1.0 +6596,9238,737.3340319715278,44.0,111,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33902.85,0.0,32110.0,3,9,7.0,2,1.0 +6597,9239,2427.1189536538436,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58260.0,678.0,0.0,53555.83862709775,0.0,0.0,3,10,8.0,3,0.0 +6598,9240,1576.825032786614,65.0,112,0.0,34,1.0,0.0,1.0,1.0,0.0,0.0,0.0,25750.0,0.0,0.0,25362.15,0.0,0.0,1,9,1.0,1,1.0 +6599,9241,1744.0578435410719,61.0,111,0.0,86,0.0,0.0,2.0,1.5,9720.0,2830.0,0.0,1870.0,0.0,0.0,18908.0,0.0,0.0,3,8,7.0,2,0.0 +6600,9242,2373.896794922155,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27790.0,0.0,0.0,26386.603602920262,0.0,0.0,1,6,4.0,1,0.0 +6601,9244,2654.75496338239,59.0,221,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15606.05,1830.0,12940.0,1,1,2.0,1,1.0 +6602,9245,4512.75102397911,84.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42350.0,0.0,0.0,38103.95,0.0,0.0,1,9,7.0,3,0.0 +6603,9249,2375.0881252888876,39.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2.0,0.0,17577.65,0.0,18380.0,3,8,6.0,1,1.0 +6604,9250,927.2594674338804,46.0,300,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,127.0,0.0,48576.25,0.0,50310.0,3,0,1.0,4,2.0 +6605,9251,1677.7672775878991,43.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,47.0,0.0,103863.75,0.0,105450.0,1,9,7.0,4,2.0 +6606,9252,1846.2217258672813,60.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21630.0,0.0,0.0,20078.15,0.0,0.0,1,3,4.0,1,0.0 +6607,9253,2653.4072451764664,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12000.0,0.0,0.0,12037.0,0.0,0.0,5,8,6.0,1,0.0 +6608,9256,608.7506151139174,61.0,111,16630.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14597.85,0.0,0.0,3,4,4.0,1,0.0 +6609,9257,2974.008818735273,41.0,111,0.0,43,3,3.0,4.0,2.3,3500.0,0.0,0.0,0.0,0.0,0.0,42353.15,0.0,39390.0,2,4,3.0,4,3.0 +6610,9258,3197.1182483447556,57.0,111,0.0,23,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,521.0,0.0,57914.5063525173,0.0,61900.0,3,8,6.0,4,2.0 +6611,9259,3989.046795841355,80.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,260.0,9320.0,0.0,0.0,10957.0,0.0,0.0,3,6,4.0,1,0.0 +6612,9260,1604.3711997508638,45.0,300,0.0,69,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47612.15,0.0,52200.0,1,0,1.0,4,2.0 +6613,9261,1045.9391960715875,44.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,11640.0,0.0,0.0,50827.1,0.0,35930.0,3,10,8.0,2,2.0 +6614,9262,878.489467331875,37.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,17740.0,2080.0,5470.0,3,10,8.0,2,1.0 +6615,9263,1991.4014683716443,39.0,300,17870.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,58740.2,0.0,39470.0,2,0,0.0,4,2.0 +6616,9264,3247.5998036038322,26.0,111,0.0,56,1.0,0.0,2.0,1.3,0.0,7510.0,0.0,0.0,0.0,0.0,12042.0,0.0,0.0,4,10,8.0,2,1.0 +6617,9265,4669.334995563114,34.0,221,0.0,85,0.0,0.0,2.0,1.5,9700.0,4450.0,0.0,0.0,0.0,0.0,16608.3,0.0,0.0,3,1,1.0,2,0.0 +6618,9266,1197.6055141339489,53.0,111,0.0,43,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50375.65,1320.0,46770.0,1,9,7.0,2,3.0 +6619,9267,3990.4444588372194,59.0,111,14310.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8710.0,0.0,0.0,21811.6,0.0,0.0,3,9,7.0,1,0.0 +6620,9268,2130.7327876538943,52.0,111,6020.0,63,2.0,1.0,3.0,2.0,0.0,7230.0,0.0,0.0,0.0,0.0,25641.65,2980.0,4260.0,3,8,7.0,2,2.0 +6621,9270,1390.4794837797997,73.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59830.0,0.0,0.0,52515.5,0.0,0.0,1,9,7.0,3,0.0 +6622,9271,752.4881550880286,38.0,111,5820.0,84,0.0,0.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,33000.5,0.0,10960.0,3,7,5.0,2,0.0 +6623,9272,2407.775052668322,36.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,9,7.0,1,1.0 +6624,9273,2191.2740531866552,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34310.0,0.0,0.0,33256.2,0.0,0.0,1,8,7.0,3,0.0 +6625,9274,3362.8426284151883,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17150.0,0.0,0.0,17076.0,0.0,0.0,3,5,4.0,1,0.0 +6626,9275,2520.5222646940892,33.0,300,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42718.45,0.0,46790.0,2,0,0.0,4,2.0 +6627,9277,1783.173333488469,69.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27960.0,687.0,0.0,38912.0,0.0,0.0,1,0,0.0,3,0.0 +6628,9279,3017.5008752471626,41.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,181.0,0.0,40350.25,0.0,55180.0,2,10,8.0,1,1.0 +6629,9281,2268.80872017824,28.0,111,3590.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36451.65,0.0,26360.0,3,8,7.0,4,2.0 +6630,9282,2106.8210969109914,58.0,111,0.0,67,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22239.7,0.0,22540.0,3,4,3.0,3,1.0 +6631,9283,1074.6643322812042,48.0,111,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41396.8,0.0,40860.0,2,10,8.0,4,2.0 +6632,9284,176.0125944427414,55.0,300,5930.0,54,2.0,1.0,3.0,2.0,0.0,540.0,0.0,0.0,0.0,0.0,23827.95,0.0,130.0,3,0,1.0,2,2.0 +6633,9286,2862.894424873966,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25020.0,0.0,0.0,23750.0,0.0,0.0,5,9,7.0,1,0.0 +6634,9288,1884.7034230534907,57.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,488.0,0.0,50021.05,0.0,54080.0,1,8,7.0,3,2.0 +6635,9291,1800.042581692408,67.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20430.0,0.0,0.0,18678.4,0.0,0.0,1,7,4.0,3,0.0 +6636,9293,3477.336846801491,88.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28150.0,0.0,0.0,28001.35,0.0,0.0,5,0,0.0,1,0.0 +6637,9294,822.772008408788,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58490.0,390.0,0.0,53912.466744097845,0.0,0.0,1,10,3.0,3,0.0 +6638,9295,2558.3083490058752,40.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34497.55,0.0,38850.0,2,10,8.0,3,2.0 +6639,9296,2548.398113731539,54.0,400,0.0,64,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39562.05,3920.0,36670.0,3,0,0.0,4,3.0 +6640,9297,2686.6298123368338,37.0,120,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,2,0,1.0,1,1.0 +6641,9299,2305.7043540321993,27.0,112,20370.0,42,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22624.95,0.0,0.0,3,10,5.0,4,2.0 +6642,9301,2783.8699479073384,40.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,199.0,0.0,76679.85,0.0,82840.0,2,10,8.0,4,2.0 +6643,9302,2621.3774130580787,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29320.0,0.0,0.0,28663.097217218165,0.0,0.0,3,10,8.0,3,0.0 +6644,9304,2080.8394465863785,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44680.0,0.0,0.0,38980.35,0.0,0.0,1,8,0.0,3,0.0 +6645,9306,2180.548680766751,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10240.0,0.0,0.0,11560.0,0.0,0.0,3,7,5.0,1,0.0 +6646,9307,4529.162180750464,36.0,111,0.0,68,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,28229.15,2120.0,15500.0,3,9,7.0,5,2.0 +6647,9308,2044.0097998572692,47.0,112,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51304.6,0.0,54140.0,2,7,0.0,4,2.0 +6648,9309,1841.338381287364,43.0,111,0.0,53,1.0,1.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,82074.15,0.0,68510.0,2,9,7.0,4,1.0 +6649,9310,2713.972414509324,22.0,120,0.0,85,0.0,0.0,2.0,1.3,0.0,6690.0,0.0,0.0,0.0,0.0,14498.0,130.0,0.0,3,0,3.0,2,0.0 +6650,9311,1945.07683801725,20.0,300,5540.0,62,2.0,1.0,3.0,1.8,0.0,2580.0,0.0,0.0,0.0,0.0,31889.45,610.0,16790.0,3,0,0.0,4,2.0 +6651,9313,1733.4793108603183,74.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31150.0,0.0,0.0,30350.85,0.0,0.0,1,0,0.0,3,0.0 +6652,9314,2215.737413336734,31.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23858.0,0.0,25670.0,2,9,7.0,1,1.0 +6653,9315,3965.9451671745846,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18040.0,0.0,0.0,16977.45,0.0,0.0,1,8,7.0,1,0.0 +6654,9316,1302.2208081836823,35.0,221,0.0,56,1.0,0.0,4.0,2.1,0.0,4610.0,0.0,0.0,0.0,0.0,19331.55,0.0,0.0,3,1,3.0,4,1.0 +6655,9318,769.1610281306146,50.0,111,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20848.65,2170.0,12950.0,3,9,7.0,2,1.0 +6656,9322,2073.7766507914557,39.0,112,0.0,13,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,8,0.0,4,2.0 +6657,9324,2558.3798684285484,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25760.0,0.0,0.0,24223.55,0.0,0.0,3,8,7.0,1,0.0 +6658,9325,604.4656006087733,45.0,111,5670.0,46,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24594.0,0.0,8780.0,3,8,7.0,2,1.0 +6659,9326,2265.6779576467784,41.0,111,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,90275.9,0.0,94220.0,2,8,6.0,4,2.0 +6660,9327,2453.433597516042,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18620.0,0.0,0.0,17613.9,0.0,0.0,2,6,4.0,1,0.0 +6661,9328,2145.1474930192753,58.0,300,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1879.0,0.0,82707.65,0.0,0.0,1,0,0.0,1,1.0 +6662,9329,3657.320500541595,53.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1072.0,0.0,56871.75,0.0,56930.0,3,10,8.0,1,1.0 +6663,9330,1481.9143669986063,64.0,111,1360.0,72,1.0,0.0,2.0,1.5,0.0,0.0,0.0,22480.0,0.0,0.0,33860.8,0.0,6860.0,1,7,5.0,3,1.0 +6664,9331,2353.364872224264,71.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18800.0,5540.0,0.0,24525.4,0.0,0.0,1,7,1.0,1,0.0 +6665,9332,1672.546146990741,67.0,112,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,42130.0,0.0,0.0,38606.6,0.0,0.0,1,8,2.0,3,1.0 +6666,9334,660.9056567981881,43.0,111,0.0,64,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23202.85,0.0,21640.0,3,8,6.0,2,1.0 +6667,9337,3034.1981914893718,76.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14780.0,0.0,0.0,15799.45,0.0,0.0,1,0,0.0,1,0.0 +6668,9339,1998.7826498850186,36.0,111,0.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23224.85,790.0,16250.0,3,9,7.0,2,1.0 +6669,9340,2341.547887027368,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39010.0,380.0,0.0,31873.1,0.0,0.0,1,8,7.0,1,0.0 +6670,9341,3092.232907649969,55.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18895.7,0.0,19300.0,3,6,4.0,3,1.0 +6671,9343,3149.5806965001498,29.0,111,2220.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21745.05,0.0,21490.0,3,7,5.0,3,2.0 +6672,9344,2219.488016346596,48.0,111,2170.0,45,1.0,1.0,2.0,1.5,3960.0,0.0,0.0,0.0,0.0,0.0,28528.55,190.0,21850.0,3,7,5.0,2,1.0 +6673,9345,1634.0015672880318,59.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50513.25,0.0,57530.0,2,10,8.0,3,2.0 +6674,9346,1645.087365058816,68.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28840.0,0.0,0.0,27668.7,0.0,0.0,1,0,1.0,3,0.0 +6675,9347,1812.6026097405606,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,87120.0,1375.0,0.0,70355.95,0.0,0.0,1,10,8.0,3,0.0 +6676,9350,1107.0958160635048,46.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30599.75,550.0,19180.0,3,4,4.0,2,1.0 +6677,9354,1916.867137448955,40.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,4.0,0.0,90559.2,0.0,96770.0,2,8,2.0,4,2.0 +6678,9355,1212.927221284683,52.0,111,4020.0,64,2.0,1.0,5.0,3.0,0.0,770.0,0.0,0.0,0.0,0.0,25881.4,2670.0,18240.0,1,6,4.0,4,2.0 +6679,9358,2529.1812962568197,34.0,120,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55217.85,0.0,46670.0,2,0,0.0,4,2.0 +6680,9359,5954.453844964025,28.0,111,5760.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24576.0,0.0,19700.0,5,9,7.0,3,2.0 +6681,9360,691.3348578081109,33.0,112,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23963.65,590.0,21920.0,2,8,0.0,2,1.0 +6682,9363,1615.5589337643094,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33730.0,114.0,0.0,33031.5354508391,0.0,0.0,1,9,7.0,3,0.0 +6683,9364,3827.65026021002,45.0,112,5570.0,54,1.0,0.0,1.0,1.0,0.0,480.0,0.0,0.0,0.0,0.0,14985.05,0.0,5600.0,3,9,2.0,1,1.0 +6684,9365,1292.7369503987836,42.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22386.85,2650.0,10180.0,3,9,7.0,2,1.0 +6685,9367,4019.9829363016406,65.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11010.0,9.0,0.0,13301.0,0.0,0.0,1,1,2.0,1,0.0 +6686,9368,2198.596779264341,40.0,112,2570.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40406.85,0.0,36690.0,2,6,1.0,4,2.0 +6687,9369,4500.536940731755,46.0,112,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13663.05,0.0,0.0,2,8,0.0,1,1.0 +6688,9373,1390.5395551396211,44.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36851.05,0.0,35190.0,2,5,4.0,4,2.0 +6689,9374,2677.55405374372,80.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36600.0,0.0,0.0,35527.55,0.0,0.0,3,0,0.0,1,0.0 +6690,9375,995.8111121808032,71.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33120.0,0.0,0.0,31316.55,0.0,0.0,1,10,1.0,3,0.0 +6691,9377,3361.9153991296375,24.0,300,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,268.0,0.0,36098.65,0.0,10770.0,2,0,0.0,3,2.0 +6692,9378,2437.537695502358,39.0,111,7320.0,85,1.0,0.0,6.0,2.9,0.0,1690.0,0.0,0.0,0.0,0.0,27184.4,70.0,2680.0,3,8,6.0,4,1.0 +6693,9380,1691.8066356919935,38.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41093.2,0.0,41540.0,2,8,7.0,4,2.0 +6694,9381,566.3332218221743,50.0,112,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26792.55,0.0,0.0,3,10,4.0,2,1.0 +6695,9382,1346.0112014484246,58.0,111,0.0,68,1.0,1.0,5.0,2.8,9720.0,6070.0,0.0,0.0,0.0,0.0,36009.15,4340.0,11340.0,3,7,5.0,5,1.0 +6696,9383,1816.640370748945,72.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13900.0,0.0,0.0,16092.55,0.0,0.0,1,0,0.0,1,0.0 +6697,9386,4744.664734568842,51.0,111,0.0,85,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,14688.0,0.0,0.0,3,10,8.0,1,0.0 +6698,9387,1751.9650706783807,45.0,111,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49550.65,0.0,51980.0,1,10,8.0,4,2.0 +6699,9388,759.4102938609876,50.0,112,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20909.3,0.0,15260.0,2,8,1.0,2,1.0 +6700,9391,2485.8517518089266,64.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26640.0,0.0,0.0,24798.108543594677,0.0,0.0,1,9,0.0,3,0.0 +6701,9392,2166.1541019428423,30.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13931.1,2820.0,11260.0,5,9,0.0,1,1.0 +6702,9393,3024.1492230334493,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13960.0,0.0,0.0,13972.0,0.0,0.0,3,8,7.0,1,0.0 +6703,9395,722.8208804224421,48.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56207.05,0.0,58580.0,2,8,7.0,4,2.0 +6704,9399,1884.4697490507501,69.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28400.0,0.0,0.0,31561.75,0.0,0.0,1,8,0.0,3,0.0 +6705,9400,3328.604908035829,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,98680.0,0.0,0.0,85886.81308979732,0.0,0.0,1,10,8.0,3,0.0 +6706,9403,5458.682540075161,41.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22378.7,0.0,16980.0,2,10,8.0,4,2.0 +6707,9404,3231.243263472583,35.0,111,0.0,65,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45063.35,110.0,34910.0,3,8,7.0,4,2.0 +6708,9405,2056.4111993768565,59.0,112,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9930.0,0.0,0.0,26840.8,0.0,17540.0,1,5,0.0,3,1.0 +6709,9406,1878.8090890297951,49.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37865.7,0.0,38620.0,1,7,0.0,4,2.0 +6710,9407,1894.0277198964686,57.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31850.0,0.0,0.0,28152.55,0.0,640.0,1,0,0.0,3,0.0 +6711,9408,1831.1049351598533,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55840.0,84.0,0.0,51379.95,0.0,0.0,1,8,7.0,3,0.0 +6712,9412,583.5221201247522,50.0,111,0.0,33,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48595.1,0.0,53110.0,1,8,6.0,2,1.0 +6713,9414,2423.5699620612404,84.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24170.0,0.0,0.0,23741.65,0.0,0.0,1,0,1.0,3,0.0 +6714,9416,5196.924215416766,42.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,231.0,0.0,12960.9,0.0,0.0,5,10,8.0,1,1.0 +6715,9417,676.1985645973641,41.0,111,0.0,34,2.0,2.0,7.0,3.2,0.0,0.0,0.0,0.0,0.0,0.0,100788.0,0.0,89510.0,1,9,7.0,4,2.0 +6716,9418,2857.9964817476134,61.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,1287.75,0.0,0.0,1,9,7.0,3,1.0 +6717,9419,2195.638794252497,40.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16733.2,0.0,16910.0,3,6,5.0,1,1.0 +6718,9420,2041.414111478056,89.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13520.0,0.0,0.0,14204.9,0.0,0.0,1,7,0.0,1,0.0 +6719,9423,1324.1767033246288,58.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23510.0,46.0,0.0,43966.7,0.0,28970.0,1,10,8.0,3,1.0 +6720,9425,4720.94595931099,62.0,112,0.0,21,3,2.0,3.0,2.0,0.0,0.0,0.0,23540.0,176.0,0.0,49677.7,0.0,29230.0,1,8,0.0,4,3.0 +6721,9426,3293.478872831591,44.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,25552.1,0.0,29190.0,2,9,7.0,1,1.0 +6722,9427,1556.3965913354998,56.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13560.0,595.0,0.0,34555.483606712805,0.0,14790.0,1,10,8.0,3,1.0 +6723,9429,2503.7045629705344,54.0,111,11320.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,275.0,0.0,20771.25,0.0,10520.0,3,9,7.0,1,1.0 +6724,9430,1377.7902896717455,35.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,65482.25,0.0,53390.0,2,7,5.0,4,2.0 +6725,9431,2474.877023076435,58.0,112,0.0,53,1.0,0.0,2.0,1.5,0.0,0.0,0.0,14510.0,2.0,0.0,24024.85,0.0,10050.0,1,9,1.0,3,1.0 +6726,9432,1763.0107098655228,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27280.0,0.0,0.0,25570.25,0.0,0.0,1,9,7.0,3,0.0 +6727,9434,1082.5694483897753,46.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20620.0,480.0,21550.0,3,10,8.0,1,1.0 +6728,9435,6888.396836329809,34.0,211,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18967.25,0.0,20080.0,5,1,3.0,1,1.0 +6729,9436,2024.6403319894055,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14340.0,0.0,0.0,14433.0,0.0,0.0,3,8,6.0,1,0.0 +6730,9438,2712.644220898885,54.0,111,12370.0,34,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,126.0,0.0,61632.18747293927,0.0,58500.0,3,10,8.0,3,2.0 +6731,9439,1529.4795811418455,67.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,82290.0,0.0,0.0,75884.39954930433,0.0,110.0,1,8,1.0,3,0.0 +6732,9440,1833.9479090128937,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46850.0,0.0,0.0,42546.2,0.0,0.0,1,7,5.0,3,0.0 +6733,9442,1280.8710072929962,26.0,111,0.0,52,1.0,0.0,3.0,1.6,0.0,8270.0,0.0,0.0,0.0,0.0,15789.45,0.0,0.0,3,10,8.0,2,1.0 +6734,9443,2039.1863161854958,71.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30700.0,0.0,0.0,30774.85,0.0,0.0,1,6,0.0,3,0.0 +6735,9444,2586.011494559411,34.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22580.2,0.0,22650.0,3,8,7.0,1,1.0 +6736,9445,1505.6282131155097,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45350.0,0.0,0.0,43622.637598369205,0.0,0.0,5,7,1.0,3,0.0 +6737,9446,2499.674937877467,75.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49830.0,0.0,0.0,45193.95,0.0,0.0,1,6,0.0,3,0.0 +6738,9448,1103.1513639741877,32.0,111,0.0,67,1.0,0.0,2.0,1.3,0.0,7560.0,0.0,0.0,0.0,0.0,14250.7,290.0,0.0,3,8,7.0,2,1.0 +6739,9451,2731.4420332609516,54.0,111,9080.0,47,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53601.25,0.0,50140.0,1,9,7.0,4,3.0 +6740,9453,1829.6744661232356,66.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,65940.0,0.0,0.0,58429.9,0.0,0.0,1,9,0.0,3,0.0 +6741,9454,1915.5641352374905,46.0,400,0.0,13,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,32051.7,0.0,7700.0,2,0,0.0,4,2.0 +6742,9455,2749.6441378685345,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38890.0,1077.0,0.0,38797.6,0.0,0.0,1,9,7.0,3,0.0 +6743,9457,2948.9946127824037,44.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,72174.7,0.0,74350.0,1,8,7.0,4,2.0 +6744,9458,1790.0756295246488,78.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17190.0,0.0,0.0,23402.3,0.0,3320.0,1,8,0.0,3,0.0 +6745,9459,1812.085328598347,35.0,120,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51374.15,0.0,34200.0,2,0,1.0,4,2.0 +6746,9460,3493.305300616385,41.0,211,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52168.35,0.0,52410.0,2,1,3.0,4,2.0 +6747,9461,1661.3084134422456,34.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18014.4,0.0,10660.0,3,9,7.0,2,1.0 +6748,9463,3107.6309530323438,39.0,111,0.0,85,0.0,0.0,5.0,2.4,0.0,8820.0,0.0,0.0,0.0,0.0,37818.0,0.0,0.0,3,9,7.0,4,0.0 +6749,9466,4342.183843982666,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23490.0,0.0,0.0,22418.15,0.0,0.0,1,9,7.0,1,0.0 +6750,9471,3452.2448552554406,56.0,300,5950.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8744.35,0.0,0.0,3,0,0.0,1,1.0 +6751,9472,1459.5144805252692,52.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17193.6,0.0,18290.0,2,9,7.0,1,1.0 +6752,9473,3364.313473545429,50.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27958.45,0.0,31920.0,2,9,7.0,1,1.0 +6753,9474,1389.089089995263,45.0,111,5950.0,54,1.0,0.0,2.0,1.5,0.0,1000.0,0.0,0.0,0.0,0.0,12969.0,0.0,0.0,3,7,6.0,2,1.0 +6754,9475,2232.7229907647825,33.0,300,3440.0,48,1.0,1.0,5.0,2.4,0.0,0.0,0.0,5450.0,0.0,0.0,63870.45,0.0,55170.0,2,0,0.0,4,1.0 +6755,9476,1459.045169291568,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63550.0,8724.0,0.0,72979.3201631067,0.0,0.0,1,8,6.0,3,0.0 +6756,9477,3431.070863583985,80.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33360.0,0.0,0.0,29067.0,0.0,0.0,1,2,3.0,1,0.0 +6757,9478,2001.8393033249274,71.0,300,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,38790.0,0.0,0.0,60275.2,0.0,0.0,1,0,0.0,3,1.0 +6758,9479,2190.975594720594,75.0,221,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,51280.0,819.0,0.0,51522.7,0.0,0.0,1,1,1.0,1,0.0 +6759,9480,1895.3822903945463,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37090.0,0.0,0.0,34485.95,0.0,0.0,1,8,0.0,3,0.0 +6760,9481,2136.4787443317296,55.0,111,0.0,31,1.0,1.0,5.0,2.4,0.0,6400.0,0.0,0.0,0.0,0.0,24678.75,1500.0,0.0,1,8,6.0,4,1.0 +6761,9482,2016.8026025244112,53.0,111,0.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,174.0,0.0,60515.9,2840.0,58900.0,1,8,6.0,4,3.0 +6762,9484,1696.0015646085194,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37250.0,0.0,0.0,35970.7,0.0,0.0,1,10,8.0,3,0.0 +6763,9485,3779.283855780364,48.0,300,0.0,22,1.0,1.0,1.0,1.0,0.0,5510.0,0.0,0.0,0.0,0.0,8407.1,140.0,0.0,3,0,0.0,1,1.0 +6764,9486,2490.1833595762055,40.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17044.0,0.0,15780.0,5,9,7.0,1,1.0 +6765,9487,2263.7652145414945,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25020.0,126.0,0.0,25809.85,0.0,0.0,3,8,7.0,3,0.0 +6766,9489,971.0381750591613,49.0,221,8380.0,68,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,28824.7,0.0,3600.0,3,1,2.0,4,2.0 +6767,9491,3050.7997188373133,37.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11871.65,0.0,14030.0,3,9,7.0,1,1.0 +6768,9492,4116.409291092202,43.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,200150.15,0.0,229670.0,1,10,8.0,4,2.0 +6769,9493,968.7986421240972,55.0,211,0.0,12,2.0,2.0,2.0,1.5,7670.0,0.0,0.0,0.0,0.0,0.0,17126.25,0.0,0.0,1,2,3.0,3,2.0 +6770,9495,1821.115577568341,83.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29140.0,0.0,0.0,28297.45,0.0,0.0,1,6,4.0,3,0.0 +6771,9500,1488.5540855536283,24.0,111,3700.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6934.0,0.0,2440.0,3,9,7.0,1,1.0 +6772,9501,1669.3795572349125,65.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18429.3,0.0,16070.0,1,9,7.0,3,2.0 +6773,9502,661.7424018572259,40.0,111,0.0,38,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,41821.05,0.0,27280.0,2,8,7.0,2,1.0 +6774,9503,3034.198282988389,40.0,112,0.0,38,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,27275.9,0.0,28400.0,2,8,0.0,2,1.0 +6775,9505,3229.5798191402628,82.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38410.0,0.0,0.0,36906.7,0.0,0.0,1,8,0.0,3,0.0 +6776,9507,2102.454092063064,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52470.0,0.0,0.0,49338.0,0.0,0.0,1,8,7.0,3,0.0 +6777,9508,2001.6400651596944,60.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16250.0,0.0,0.0,32030.65,0.0,18640.0,1,8,6.0,3,1.0 +6778,9510,2657.83037392242,30.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50684.85,0.0,56600.0,2,8,7.0,3,2.0 +6779,9512,1044.499015863004,44.0,112,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20611.6,2560.0,17780.0,3,9,3.0,2,1.0 +6780,9513,1686.2072523700347,58.0,111,8830.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24830.0,0.0,0.0,50419.7,0.0,22890.0,1,8,7.0,3,0.0 +6781,9514,4555.19164954606,36.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17915.2,0.0,18900.0,5,9,7.0,1,1.0 +6782,9515,2080.4303528634127,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19420.0,0.0,0.0,18304.9,0.0,0.0,1,9,7.0,1,0.0 +6783,9516,1830.543562436938,46.0,120,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31279.75,0.0,35000.0,2,0,0.0,1,1.0 +6784,9517,2796.871744463193,68.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27210.0,0.0,0.0,44846.35,0.0,23360.0,1,10,8.0,3,1.0 +6785,9518,1546.9965192076338,65.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32690.0,0.0,0.0,40524.3,0.0,11780.0,1,4,4.0,3,1.0 +6786,9519,4125.916316727124,35.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24590.05,0.0,27040.0,3,9,7.0,1,1.0 +6787,9521,1366.1179177594424,58.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1470.0,0.0,0.0,12390.0,730.0,9230.0,3,8,7.0,1,1.0 +6788,9522,5619.494145904054,25.0,111,6250.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31498.15,660.0,25550.0,5,8,6.0,3,2.0 +6789,9523,3690.137536088555,26.0,300,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16561.0,0.0,16780.0,3,0,0.0,1,1.0 +6790,9524,1313.3945325489651,36.0,112,7900.0,64,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,109.0,0.0,38379.55,0.0,20360.0,2,10,0.0,4,2.0 +6791,9526,2914.3475970442255,45.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,300.0,0.0,37034.6,0.0,39870.0,2,8,6.0,1,1.0 +6792,9527,1888.592776548151,41.0,112,4510.0,63,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,52532.4,0.0,39920.0,2,7,0.0,4,2.0 +6793,9528,2631.394821238348,26.0,300,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41951.0,0.0,44290.0,3,0,0.0,3,2.0 +6794,9529,1652.997856062304,52.0,111,1920.0,47,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,47218.6,0.0,39280.0,1,7,5.0,4,2.0 +6795,9530,1734.7204736728283,57.0,111,16520.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53606.6,0.0,45520.0,2,10,8.0,3,2.0 +6796,9532,2835.6772572805503,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21310.0,0.0,0.0,15955.95,0.0,0.0,1,6,0.0,1,0.0 +6797,9533,764.5744127354732,52.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,7170.0,0.0,0.0,0.0,0.0,12878.0,0.0,0.0,3,8,6.0,2,0.0 +6798,9534,2498.4824588561546,38.0,120,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43836.75,0.0,42770.0,2,0,0.0,4,2.0 +6799,9535,1600.578382483938,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,68950.0,318.0,0.0,54832.25267885402,0.0,1930.0,1,10,8.0,1,0.0 +6800,9536,1488.7018324635635,64.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,4070.0,0.0,0.0,31732.4,0.0,0.0,1,4,0.0,3,1.0 +6801,9539,4299.336064464705,62.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22960.0,0.0,0.0,22536.05,0.0,0.0,1,10,8.0,1,0.0 +6802,9540,2538.832863428836,30.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39380.65,0.0,32690.0,3,6,4.0,4,2.0 +6803,9541,929.8671527642304,44.0,111,1030.0,68,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,20782.55,80.0,13680.0,3,9,7.0,2,1.0 +6804,9543,1636.8455612594491,56.0,112,1390.0,43,3,3.0,4.0,2.5,0.0,0.0,0.0,4940.0,0.0,0.0,52103.65,0.0,49090.0,1,8,2.0,4,4.0 +6805,9544,648.6149844510015,41.0,112,17620.0,37,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22687.15,0.0,0.0,2,7,2.0,2,1.0 +6806,9547,4366.317811014984,56.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,14340.0,0.0,0.0,16747.6,0.0,2940.0,1,9,7.0,1,1.0 +6807,9548,2021.5282714820714,78.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15140.0,0.0,0.0,15102.1,0.0,0.0,1,0,0.0,1,0.0 +6808,9549,3278.6865260550326,87.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16140.0,0.0,0.0,15809.65,0.0,0.0,1,0,0.0,1,0.0 +6809,9551,798.559871388282,40.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22163.65,1090.0,18920.0,3,9,7.0,2,1.0 +6810,9552,2135.2110902480745,60.0,111,4450.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17290.0,0.0,0.0,21094.4,0.0,410.0,1,9,7.0,3,1.0 +6811,9553,4524.005347545967,40.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6262.0,1850.0,0.0,3,7,4.0,1,1.0 +6812,9555,2958.938492953918,54.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,59397.55,0.0,64940.0,3,10,8.0,4,2.0 +6813,9557,2296.416143954414,77.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41940.0,0.0,0.0,54537.13120940891,0.0,0.0,5,8,7.0,1,0.0 +6814,9558,2145.9386467358004,48.0,112,0.0,56,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,943.0,0.0,20049.95,0.0,15310.0,1,10,4.0,4,2.0 +6815,9559,2333.1700678960447,49.0,111,0.0,67,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,59498.75,0.0,59660.0,5,10,8.0,4,3.0 +6816,9560,2759.4850883800054,32.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41760.45,0.0,39420.0,2,8,7.0,4,2.0 +6817,9561,2888.903515891284,54.0,111,0.0,22,2.0,2.0,3.0,2.0,0.0,0.0,0.0,31110.0,1757.0,0.0,39465.45584682184,0.0,0.0,1,9,7.0,2,2.0 +6818,9562,2322.6675654256082,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19150.0,0.0,0.0,18300.4,0.0,0.0,3,9,7.0,1,0.0 +6819,9563,1671.2127602479477,67.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22430.0,0.0,0.0,21544.7,0.0,0.0,1,0,0.0,3,0.0 +6820,9564,1557.448832176808,53.0,221,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18663.55,0.0,20350.0,1,1,1.0,1,1.0 +6821,9567,2426.7750564896055,46.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,59947.8,0.0,61670.0,2,7,0.0,4,2.0 +6822,9570,1790.191254660228,48.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34178.95,0.0,32530.0,2,10,8.0,4,2.0 +6823,9571,1912.0998886176812,65.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18470.0,0.0,0.0,18341.95,0.0,0.0,1,8,7.0,3,0.0 +6824,9574,1975.5452363424936,57.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55430.0,0.0,60720.0,1,8,3.0,3,2.0 +6825,9575,2891.2785645430895,41.0,112,5120.0,46,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,15281.8,0.0,5550.0,3,9,3.0,2,1.0 +6826,9576,2376.470022849822,61.0,111,10110.0,68,2.0,0.0,3.0,2.0,9720.0,0.0,0.0,0.0,0.0,0.0,30917.0,0.0,6850.0,3,9,7.0,4,2.0 +6827,9577,5758.852404192842,29.0,111,0.0,62,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,9060.0,0.0,0.0,3,9,7.0,1,1.0 +6828,9578,2468.885464656218,34.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46227.3,0.0,50730.0,2,8,6.0,3,2.0 +6829,9579,2324.9416495184864,64.0,221,530.0,78,1.0,0.0,2.0,1.5,0.0,0.0,130.0,9320.0,0.0,0.0,24310.0,1430.0,8650.0,3,1,3.0,2,1.0 +6830,9580,1683.49190126619,49.0,111,0.0,38,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,5651.0,0.0,121261.4,0.0,94880.0,3,8,7.0,4,2.0 +6831,9581,2299.0600924097116,41.0,111,21660.0,31,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,1103.0,0.0,32337.0,0.0,9810.0,3,10,8.0,2,1.0 +6832,9582,1869.377655043618,73.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18980.0,0.0,0.0,18113.4,0.0,0.0,1,0,0.0,1,0.0 +6833,9583,1715.5498076895303,53.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46338.5,0.0,53010.0,2,8,7.0,3,2.0 +6834,9584,1113.4276312424765,66.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38700.0,35.0,0.0,35517.11514957779,0.0,0.0,1,1,3.0,3,0.0 +6835,9587,3595.626372156116,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21230.0,0.0,0.0,20890.7,0.0,0.0,3,10,8.0,3,0.0 +6836,9589,2816.1829699666023,54.0,111,0.0,64,1.0,0.0,1.0,1.0,0.0,4870.0,0.0,0.0,0.0,0.0,5070.0,0.0,0.0,3,9,7.0,1,1.0 +6837,9591,4348.464725795722,46.0,111,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50759.65,0.0,55210.0,3,10,8.0,4,2.0 +6838,9593,2854.836244625099,29.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,11902.0,270.0,2830.0,3,6,5.0,1,1.0 +6839,9594,2603.9444475202267,50.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17090.0,0.0,0.0,38501.6,0.0,22020.0,1,9,7.0,2,1.0 +6840,9595,2796.600930344223,50.0,111,24470.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34363.2,0.0,0.0,1,7,5.0,3,2.0 +6841,9597,4366.270625355692,33.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21145.0,0.0,22470.0,3,10,8.0,1,1.0 +6842,9598,2348.088784124062,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37300.0,0.0,0.0,46607.5,0.0,0.0,1,9,7.0,3,0.0 +6843,9599,3686.17233869451,69.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15850.0,0.0,0.0,17616.5,0.0,0.0,3,8,1.0,1,0.0 +6844,9600,2035.3410173816487,45.0,112,6130.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38352.45,0.0,10350.0,2,10,0.0,4,2.0 +6845,9601,6997.54251435442,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,51910.0,0.0,0.0,48521.2,0.0,0.0,1,8,7.0,1,0.0 +6846,9602,2004.335597139316,37.0,120,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,57109.7,0.0,17340.0,2,0,0.0,1,1.0 +6847,9603,1994.4008951409166,34.0,300,11530.0,53,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42820.45,0.0,30150.0,2,0,1.0,4,1.0 +6848,9604,5689.169428806103,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12300.0,0.0,0.0,15420.0,0.0,0.0,3,10,8.0,1,0.0 +6849,9605,3105.3891404011183,58.0,111,0.0,21,3,4.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,22127.9,0.0,20330.0,3,9,7.0,4,5.0 +6850,9607,2162.269941633726,42.0,111,11270.0,52,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36781.3,0.0,26010.0,2,10,8.0,4,2.0 +6851,9608,2676.1217392575672,77.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,6850.0,2780.0,0.0,0.0,9630.0,0.0,0.0,1,1,1.0,1,0.0 +6852,9610,4147.754754233889,72.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2780.0,6890.0,0.0,0.0,13378.0,0.0,0.0,3,10,8.0,1,0.0 +6853,9611,2008.663239800065,48.0,400,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,9.0,0.0,62303.55,0.0,61370.0,1,0,0.0,3,2.0 +6854,9612,1759.6541369098147,89.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22070.0,0.0,0.0,22076.0,0.0,0.0,5,2,3.0,1,0.0 +6855,9613,3008.704350639303,27.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25065.8,0.0,30110.0,2,9,7.0,1,1.0 +6856,9614,2324.644797882951,52.0,112,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36789.55,0.0,37920.0,3,9,2.0,4,2.0 +6857,9615,787.1016656150987,45.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25955.9,0.0,24780.0,2,9,7.0,2,1.0 +6858,9617,2895.0681514910616,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23100.0,0.0,0.0,23880.0,0.0,0.0,3,9,7.0,3,0.0 +6859,9620,2261.682481656582,54.0,111,0.0,65,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24248.65,0.0,17200.0,3,10,8.0,4,2.0 +6860,9621,2366.7069150071957,48.0,120,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,31888.0,75698.8,0.0,33260.0,2,0,1.0,4,2.0 +6861,9622,2648.3603744440666,42.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27660.0,0.0,30400.0,2,10,8.0,1,1.0 +6862,9623,1387.8415421483091,49.0,112,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49664.2,0.0,51100.0,1,9,2.0,4,2.0 +6863,9624,2996.6551633079116,79.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2860.0,0.0,0.0,14371.8,0.0,0.0,1,1,3.0,1,0.0 +6864,9625,2737.730099221934,32.0,111,820.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47583.55,0.0,51550.0,2,10,8.0,3,2.0 +6865,9628,1067.975760373807,51.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,16.0,0.0,77754.55,0.0,0.0,1,5,4.0,2,1.0 +6866,9629,2111.8026830561876,81.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29250.0,0.0,0.0,28293.5,0.0,0.0,1,7,5.0,3,0.0 +6867,9630,1730.3311317760272,89.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11900.0,0.0,0.0,11900.0,0.0,0.0,5,4,4.0,1,0.0 +6868,9631,1572.9639805476356,64.0,111,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,27630.0,96.0,0.0,30991.45,0.0,5280.0,1,8,7.0,3,1.0 +6869,9632,2204.62734228374,57.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14360.0,0.0,0.0,18507.5,0.0,4330.0,3,8,2.0,3,1.0 +6870,9636,1914.5558248272282,62.0,112,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,43090.0,570.0,0.0,98827.87090167821,0.0,0.0,1,6,0.0,3,1.0 +6871,9637,1415.071213399458,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40290.0,104.0,0.0,35621.25,0.0,0.0,1,8,7.0,3,0.0 +6872,9638,2506.6505617301104,46.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18512.65,0.0,19550.0,3,9,7.0,1,1.0 +6873,9640,1613.001903434459,32.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,7520.0,0.0,0.0,0.0,0.0,19682.0,0.0,0.0,3,8,6.0,2,0.0 +6874,9641,2741.6610990677787,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18930.0,0.0,0.0,18657.4,0.0,0.0,3,6,4.0,3,0.0 +6875,9642,2699.3992163732796,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25770.0,0.0,0.0,25452.8,0.0,0.0,1,10,8.0,3,0.0 +6876,9643,2552.602944793391,45.0,120,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37374.0,0.0,36810.0,2,0,0.0,4,2.0 +6877,9646,544.8023218122843,47.0,221,0.0,43,2.0,1.0,4.0,2.5,0.0,0.0,0.0,5620.0,0.0,0.0,38718.5,0.0,0.0,2,1,2.0,2,2.0 +6878,9647,1909.1857906622524,59.0,111,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,16150.0,0.0,0.0,35441.45,0.0,21040.0,1,6,4.0,4,1.0 +6879,9648,3055.7708500247577,68.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,900.0,13690.0,0.0,0.0,15574.0,0.0,0.0,3,0,0.0,3,0.0 +6880,9650,1036.9230152660678,47.0,111,0.0,85,0.0,0.0,7.0,3.6,0.0,0.0,0.0,0.0,0.0,0.0,19603.25,0.0,0.0,3,10,8.0,2,0.0 +6881,9651,4307.747061041822,55.0,211,0.0,35,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,24377.1,0.0,0.0,1,1,3.0,4,1.0 +6882,9653,1829.9437507279742,70.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46660.0,0.0,0.0,41071.55,0.0,0.0,1,2,2.0,3,0.0 +6883,9654,2069.419737021706,58.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35690.0,0.0,0.0,34083.5,0.0,0.0,1,0,0.0,3,0.0 +6884,9655,1924.5985571535355,54.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28242.1,0.0,31680.0,1,10,4.0,1,1.0 +6885,9656,2026.4460665038357,80.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13340.0,0.0,0.0,13341.0,0.0,0.0,1,0,0.0,3,0.0 +6886,9657,5149.783456741006,40.0,221,2030.0,46,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41164.35,0.0,36980.0,3,1,2.0,4,1.0 +6887,9658,1788.5685138308659,44.0,111,0.0,42,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,52852.05,1050.0,52220.0,3,5,4.0,4,2.0 +6888,9659,1630.1641638540227,76.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17540.0,0.0,0.0,17207.5,0.0,0.0,1,3,3.0,1,0.0 +6889,9660,1616.7909576936936,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32540.0,0.0,0.0,43794.15,0.0,0.0,1,7,5.0,3,0.0 +6890,9662,3274.623668956741,38.0,111,5200.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17288.1,0.0,11970.0,3,9,7.0,1,1.0 +6891,9664,2498.958606173006,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31510.0,0.0,0.0,27196.85,0.0,0.0,1,7,5.0,1,0.0 +6892,9666,2486.6717841132217,41.0,120,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42875.65,0.0,41670.0,1,0,0.0,4,2.0 +6893,9667,3042.3563106804736,57.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1145.0,0.0,57197.15,0.0,54880.0,1,9,7.0,3,2.0 +6894,9668,552.6969337761205,50.0,111,0.0,55,1.0,1.0,3.0,2.0,0.0,0.0,0.0,1380.0,0.0,0.0,25185.0,0.0,17660.0,3,7,5.0,2,1.0 +6895,9669,2117.546409579408,57.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7390.0,0.0,0.0,11303.0,0.0,4850.0,3,0,1.0,1,0.0 +6896,9670,3260.569034176899,85.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15770.0,0.0,0.0,15901.0,0.0,0.0,3,8,7.0,1,0.0 +6897,9671,1891.5243159892466,36.0,400,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,62664.1,0.0,31500.0,2,0,0.0,4,2.0 +6898,9672,1852.445245063801,64.0,111,0.0,35,1.0,0.0,2.0,1.5,0.0,0.0,0.0,61220.0,0.0,0.0,101058.52221511856,0.0,37800.0,1,10,8.0,3,1.0 +6899,9673,2003.9648869842636,79.0,212,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33470.0,0.0,0.0,32487.717725419552,0.0,0.0,1,1,0.0,3,0.0 +6900,9674,3546.2569638519813,49.0,111,60250.0,37,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,61648.1,0.0,30.0,2,10,8.0,3,2.0 +6901,9675,1980.5547097365477,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25840.0,0.0,0.0,26063.75,0.0,0.0,3,8,7.0,3,0.0 +6902,9678,1287.4813844353264,51.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17920.3,0.0,19200.0,1,7,5.0,1,1.0 +6903,9679,1453.428185100918,40.0,112,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,39576.15,0.0,43400.0,3,9,3.0,2,1.0 +6904,9680,1013.3117534883613,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17030.0,0.0,0.0,16769.9,0.0,0.0,1,7,5.0,1,0.0 +6905,9681,597.0985847286131,44.0,111,4620.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22578.3,0.0,10770.0,3,9,7.0,2,2.0 +6906,9682,3842.303884708091,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,3,9,7.0,1,0.0 +6907,9683,4927.517225248508,28.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27247.15,0.0,30230.0,2,9,7.0,1,1.0 +6908,9684,2249.979799033698,43.0,111,0.0,37,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,73003.0,114370.8,0.0,40580.0,2,8,7.0,4,2.0 +6909,9685,1560.7571575959598,60.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,4387.0,0.0,78799.6,0.0,70470.0,1,7,0.0,4,2.0 +6910,9686,1356.391877916319,58.0,221,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27130.0,0.0,0.0,110503.0,0.0,0.0,1,1,3.0,3,1.0 +6911,9687,1795.2421862714846,57.0,112,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18380.0,8.0,0.0,43192.75,0.0,28280.0,2,8,1.0,3,1.0 +6912,9688,945.9948679664767,45.0,112,0.0,46,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23233.5,0.0,15740.0,3,8,0.0,2,3.0 +6913,9689,2646.976195678325,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39720.0,168.0,0.0,39777.95,0.0,0.0,1,7,6.0,2,0.0 +6914,9691,1380.346523111254,59.0,211,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19600.0,0.0,0.0,33533.6,0.0,16900.0,1,2,3.0,3,1.0 +6915,9692,2376.9053209776507,32.0,120,0.0,21,1.0,1.0,6.0,2.7,0.0,4620.0,0.0,0.0,0.0,0.0,27050.1,2720.0,0.0,3,0,0.0,4,1.0 +6916,9693,4098.398539536567,54.0,111,0.0,31,1.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,2,10,8.0,4,1.0 +6917,9695,2157.743976680793,46.0,112,0.0,68,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36392.8,0.0,37010.0,1,8,3.0,4,2.0 +6918,9696,1943.042619133729,56.0,112,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,74145.4,0.0,75170.0,2,10,0.0,4,2.0 +6919,9697,3235.4235221360364,89.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16150.0,0.0,0.0,19766.4,0.0,0.0,3,6,0.0,1,0.0 +6920,9699,3916.7449397845808,64.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35010.0,0.0,0.0,34802.5,0.0,0.0,1,10,8.0,1,0.0 +6921,9702,105.8412419979695,31.0,300,2050.0,67,1.0,1.0,3.0,1.6,0.0,2500.0,0.0,0.0,0.0,0.0,22948.1,230.0,7770.0,3,0,0.0,2,1.0 +6922,9703,3172.463019466323,45.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,72099.05,0.0,58670.0,2,10,8.0,4,2.0 +6923,9707,3448.0827536410347,48.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26300.15,0.0,28870.0,3,10,8.0,1,1.0 +6924,9708,3507.3980293350164,74.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27930.0,0.0,0.0,25640.95,0.0,0.0,3,9,1.0,1,0.0 +6925,9709,5283.183222729135,25.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35902.95,0.0,33800.0,3,6,4.0,3,2.0 +6926,9710,2253.9284819094787,86.0,111,0.0,,0.0,0.0,2.0,1.5,2420.0,0.0,0.0,14160.0,0.0,0.0,16501.0,0.0,0.0,1,9,7.0,2,0.0 +6927,9711,1985.490332474432,47.0,112,0.0,48,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,40124.65,0.0,30390.0,5,9,2.0,4,1.0 +6928,9715,1061.8621112106794,41.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36936.35,0.0,35420.0,3,9,7.0,4,2.0 +6929,9716,1050.2949897067936,25.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30535.45,0.0,31220.0,3,9,3.0,1,1.0 +6930,9717,1741.8392356944885,34.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59403.95,0.0,41270.0,2,6,5.0,4,2.0 +6931,9718,2234.4705535136,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27590.0,0.0,0.0,26531.55,0.0,0.0,1,10,0.0,3,0.0 +6932,9721,1541.4639859306083,50.0,211,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41071.95,0.0,44070.0,3,3,4.0,3,2.0 +6933,9722,2253.2050718302503,50.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,74441.42382193988,0.0,72180.0,1,10,8.0,4,2.0 +6934,9723,2337.180666422641,51.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,83607.8,0.0,93690.0,1,6,4.0,4,2.0 +6935,9724,4186.269952301527,42.0,112,320.0,21,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,179.0,0.0,41093.95,0.0,28960.0,2,9,3.0,4,2.0 +6936,9725,2837.3386229023204,52.0,111,0.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,24410.0,0.0,0.0,42279.1,0.0,21680.0,2,9,7.0,4,2.0 +6937,9726,1933.8073220957797,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12040.0,0.0,0.0,12602.0,0.0,0.0,3,7,5.0,1,0.0 +6938,9727,6256.270241906363,36.0,111,0.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26313.0,0.0,0.0,3,10,8.0,1,1.0 +6939,9728,2653.467602782998,32.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18170.25,2110.0,16330.0,3,8,7.0,3,1.0 +6940,9729,2153.8040710796013,53.0,112,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41854.0,0.0,43040.0,1,7,0.0,4,2.0 +6941,9730,3661.9838409919244,58.0,112,4650.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,34410.0,122.0,0.0,48470.45,0.0,12850.0,3,8,1.0,5,2.0 +6942,9731,3308.9964673927448,29.0,112,18720.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47393.05,0.0,4560.0,2,9,1.0,4,2.0 +6943,9732,1844.646794953386,83.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19860.0,0.0,0.0,19008.9,0.0,0.0,3,7,5.0,1,0.0 +6944,9733,1789.5401462673185,58.0,111,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41151.95,0.0,43750.0,2,9,7.0,3,2.0 +6945,9734,1838.7883839716662,24.0,111,12630.0,45,3,1.0,5.0,3.0,0.0,4550.0,0.0,0.0,0.0,0.0,48142.45,0.0,28290.0,3,6,5.0,4,3.0 +6946,9735,3163.381844459889,56.0,111,1180.0,62,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24271.7,2840.0,20630.0,3,9,7.0,4,2.0 +6947,9736,2517.4530452307486,60.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34624.6,0.0,40520.0,3,6,4.0,1,1.0 +6948,9737,886.6729312305805,35.0,111,0.0,54,1.0,0.0,3.0,1.8,0.0,7990.0,0.0,0.0,0.0,0.0,16663.0,220.0,0.0,3,8,7.0,2,1.0 +6949,9738,2437.160730785067,54.0,111,13440.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13463.2,0.0,0.0,3,9,7.0,1,1.0 +6950,9739,2354.948681290185,85.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24760.0,0.0,0.0,23894.3,0.0,0.0,5,0,0.0,1,0.0 +6951,9740,2620.7771960963737,50.0,112,790.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20958.35,0.0,18080.0,1,9,2.0,2,1.0 +6952,9741,2067.401903424184,53.0,111,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23755.35,0.0,28010.0,3,8,6.0,2,1.0 +6953,9743,4488.248173853821,56.0,211,0.0,78,0.0,0.0,3.0,2.0,29100.0,0.0,0.0,0.0,0.0,0.0,34008.0,0.0,0.0,3,1,3.0,2,0.0 +6954,9744,3946.690888417972,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22050.0,0.0,0.0,22050.0,0.0,0.0,3,9,7.0,3,0.0 +6955,9745,2992.0337605551863,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18260.0,607.0,0.0,18141.15,0.0,0.0,1,9,7.0,1,0.0 +6956,9747,3723.5092858759094,36.0,111,0.0,81,1.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,8994.0,0.0,0.0,3,8,7.0,1,1.0 +6957,9748,784.4206945576182,41.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23873.9,1940.0,21110.0,3,8,7.0,2,1.0 +6958,9749,3875.5148639635204,28.0,112,0.0,62,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,34732.95,0.0,21430.0,3,8,0.0,4,1.0 +6959,9750,2761.9443984378768,49.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36656.35,0.0,37320.0,2,6,5.0,4,2.0 +6960,9751,3063.5475738862724,86.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53550.0,0.0,0.0,50101.05,0.0,0.0,3,7,0.0,5,0.0 +6961,9752,2851.847109731521,35.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36590.4,0.0,33500.0,3,9,7.0,4,2.0 +6962,9753,4456.4852292275755,45.0,111,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23348.65,5120.0,11190.0,3,10,8.0,4,1.0 +6963,9755,3822.816973565088,36.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,53370.7,0.0,63100.0,3,10,8.0,2,1.0 +6964,9756,6718.521145420456,35.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7076.7,0.0,0.0,2,7,1.0,1,1.0 +6965,9757,722.5379104150484,46.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,2960.0,0.0,0.0,0.0,0.0,9536.0,1200.0,2100.0,3,10,8.0,1,0.0 +6966,9758,2426.6499337645632,24.0,400,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28125.0,0.0,17710.0,5,0,0.0,4,2.0 +6967,9759,2678.243478371374,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22650.0,0.0,0.0,21390.9,0.0,0.0,1,8,7.0,1,0.0 +6968,9760,2042.1607419300576,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18000.0,0.0,0.0,17640.0,0.0,0.0,3,9,7.0,1,0.0 +6969,9761,605.613556050598,42.0,111,5830.0,43,1.0,0.0,2.0,1.3,0.0,3100.0,0.0,0.0,0.0,0.0,14808.75,30.0,470.0,3,8,7.0,2,1.0 +6970,9762,3431.217723997221,22.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7250.85,1630.0,2390.0,3,9,7.0,1,1.0 +6971,9763,1848.154346082838,60.0,111,770.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12290.0,0.0,0.0,25940.2,0.0,13000.0,3,7,5.0,3,1.0 +6972,9764,3425.7898217655097,56.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52334.3,0.0,19560.0,1,8,0.0,3,2.0 +6973,9766,1687.7299178304777,67.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,20260.0,0.0,0.0,63120.366505462785,0.0,52890.0,1,5,4.0,3,2.0 +6974,9767,3939.385220906494,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14760.0,0.0,0.0,14672.85,0.0,0.0,3,7,5.0,1,0.0 +6975,9768,2322.6120565504975,70.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29970.0,0.0,0.0,29256.9,0.0,0.0,1,0,0.0,3,0.0 +6976,9769,1953.8365090576915,54.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12521.50063525173,2740.0,9780.0,2,8,7.0,1,1.0 +6977,9770,3724.404997309587,41.0,111,0.0,53,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,33373.1,0.0,24450.0,3,10,8.0,4,2.0 +6978,9772,1702.7757460025607,50.0,111,0.0,63,1.0,1.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,40450.55,0.0,25340.0,3,4,3.0,4,1.0 +6979,9773,2671.204625534004,82.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,95440.0,0.0,0.0,82951.57004772816,0.0,0.0,1,9,7.0,3,0.0 +6980,9774,2023.0728417504943,52.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,422.0,0.0,33353.79282621631,0.0,35370.0,3,9,7.0,1,1.0 +6981,9775,2597.1966046330726,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23410.0,0.0,0.0,22255.05,0.0,0.0,3,10,8.0,3,0.0 +6982,9777,750.0712962642328,43.0,111,280.0,43,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,30379.1,1300.0,13460.0,3,9,7.0,2,2.0 +6983,9779,5566.003623390535,42.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45669.9,0.0,46190.0,1,10,8.0,4,2.0 +6984,9780,2302.1135317358526,60.0,112,0.0,,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42410.0,1219.0,0.0,24906.25,0.0,0.0,2,9,1.0,3,0.0 +6985,9781,456.1093413437793,42.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57318.45,0.0,57050.0,1,10,4.0,4,2.0 +6986,9783,4443.905847059792,40.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46012.55,0.0,46040.0,2,9,7.0,4,2.0 +6987,9785,4702.753683235891,23.0,111,7770.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7188.0,0.0,0.0,2,9,7.0,1,1.0 +6988,9786,1781.0004517001196,61.0,112,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,227.0,0.0,32773.9,0.0,8760.0,1,4,0.0,3,2.0 +6989,9787,2956.046759081282,39.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,74507.2,0.0,70440.0,2,9,1.0,4,2.0 +6990,9788,2767.4458776644583,22.0,111,0.0,43,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23322.45,0.0,15530.0,3,8,6.0,3,1.0 +6991,9789,2017.3847685509718,39.0,112,0.0,48,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,54290.85,0.0,48250.0,2,8,1.0,4,2.0 +6992,9790,2632.7851380015823,72.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23580.0,0.0,0.0,23371.25,0.0,0.0,3,0,1.0,3,0.0 +6993,9792,4206.043578811341,62.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25680.0,0.0,0.0,23723.05,0.0,0.0,3,10,8.0,1,0.0 +6994,9794,1941.3520979287962,58.0,111,1270.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14328.55,0.0,13240.0,5,9,7.0,1,1.0 +6995,9795,1597.4170566514053,53.0,300,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21212.95,0.0,23460.0,2,0,0.0,1,1.0 +6996,9796,1436.3010597655239,50.0,120,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34499.7,0.0,35200.0,2,0,0.0,3,2.0 +6997,9799,3076.6218081571214,60.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32710.0,0.0,0.0,56116.65,0.0,32180.0,1,10,8.0,3,1.0 +6998,9800,1171.7109291142829,82.0,211,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14770.0,0.0,0.0,15133.0,0.0,0.0,5,2,3.0,1,0.0 +6999,9802,2927.786353661635,41.0,111,2770.0,68,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,31909.35,0.0,29180.0,2,8,6.0,4,2.0 +7000,9804,3094.1372036635926,58.0,111,0.0,31,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,86481.05,0.0,93890.0,1,10,8.0,4,2.0 +7001,9805,3102.867215034922,33.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,65.0,0.0,48883.55,0.0,46060.0,2,8,7.0,4,2.0 +7002,9807,2419.3294679034925,59.0,112,4370.0,48,1.0,1.0,3.0,2.0,0.0,0.0,0.0,7910.0,58.0,0.0,73707.65,0.0,8520.0,5,8,3.0,4,1.0 +7003,9808,13026.193749333182,50.0,221,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48375.1,0.0,51110.0,1,1,2.0,4,2.0 +7004,9809,2043.0745064918383,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33560.0,0.0,0.0,31992.55,0.0,0.0,1,10,8.0,3,0.0 +7005,9811,1206.0822903116818,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25580.0,0.0,0.0,24325.3,0.0,0.0,1,9,7.0,3,0.0 +7006,9813,4093.07734299224,82.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19280.0,0.0,0.0,18824.85,0.0,0.0,3,10,8.0,1,0.0 +7007,9814,2983.95964427771,41.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32677.45,640.0,32640.0,3,10,8.0,4,2.0 +7008,9816,797.3811944102017,42.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,4910.0,0.0,0.0,0.0,0.0,16441.0,1230.0,2290.0,3,6,4.0,2,1.0 +7009,9817,665.5133762490374,30.0,111,9170.0,56,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,39452.75,0.0,16060.0,3,6,4.0,4,2.0 +7010,9818,1842.3430917707562,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14350.0,0.0,0.0,15046.7,0.0,0.0,1,5,4.0,1,0.0 +7011,9819,2420.501410257524,47.0,112,3400.0,69,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,22988.65,0.0,20520.0,1,7,2.0,4,2.0 +7012,9821,2467.933459829721,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28490.0,0.0,0.0,26090.05,0.0,0.0,3,5,4.0,1,0.0 +7013,9822,736.0892512221288,48.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,5640.0,0.0,0.0,54343.3,0.0,43120.0,2,8,7.0,2,2.0 +7014,9823,1850.1248023811834,73.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48360.0,0.0,0.0,43196.0,0.0,0.0,1,7,0.0,3,0.0 +7015,9824,1331.7499240330903,56.0,120,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37981.0,0.0,34090.0,1,0,0.0,3,2.0 +7016,9826,3058.917400480646,57.0,120,0.0,56,1.0,1.0,4.0,2.1,0.0,0.0,0.0,21930.0,0.0,0.0,27494.8,0.0,3090.0,1,0,0.0,5,1.0 +7017,9828,2255.492885966795,36.0,120,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,51.0,0.0,48660.7,0.0,48580.0,2,0,0.0,4,2.0 +7018,9829,1718.9746542433804,76.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11900.0,0.0,0.0,13424.0,0.0,0.0,3,9,7.0,1,0.0 +7019,9830,3189.429254913989,45.0,211,0.0,34,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45297.6,0.0,49910.0,2,1,2.0,4,3.0 +7020,9831,2297.5152957378655,39.0,111,0.0,65,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,33654.35,0.0,22530.0,3,8,6.0,4,1.0 +7021,9832,4182.313394048455,54.0,111,8280.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28957.65,0.0,21470.0,3,9,7.0,2,2.0 +7022,9833,1702.4772991412087,34.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66493.75,0.0,68310.0,2,10,3.0,4,2.0 +7023,9834,1971.9189213725597,36.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,90.0,0.0,49787.2,0.0,45900.0,2,7,1.0,4,2.0 +7024,9838,660.8729597263294,41.0,112,12140.0,68,1.0,0.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,28780.0,210.0,0.0,3,8,1.0,4,1.0 +7025,9839,1776.4326165818404,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43460.0,0.0,0.0,40666.75,0.0,0.0,5,9,7.0,3,0.0 +7026,9840,736.8539289617557,28.0,111,0.0,56,1.0,0.0,5.0,2.4,8910.0,1390.0,0.0,0.0,0.0,0.0,22014.0,0.0,0.0,3,6,4.0,4,1.0 +7027,9841,1848.8024294515603,46.0,111,0.0,34,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,98.0,0.0,85167.9,0.0,74170.0,2,5,4.0,4,2.0 +7028,9843,2690.556403322022,59.0,300,0.0,77,2.0,1.0,3.0,2.0,13780.0,4750.0,0.0,5960.0,0.0,0.0,28987.0,0.0,4410.0,1,0,0.0,4,2.0 +7029,9844,4207.47212167825,52.0,111,0.0,85,0.0,0.0,4.0,2.3,0.0,0.0,0.0,22870.0,0.0,0.0,24720.4,0.0,0.0,1,6,4.0,4,0.0 +7030,9845,2030.5231503941109,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48450.0,0.0,0.0,44804.8,0.0,0.0,1,10,8.0,3,0.0 +7031,9846,1883.571871063062,45.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,73813.8,0.0,83840.0,3,9,2.0,4,2.0 +7032,9847,2121.836876280326,75.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23780.0,21.0,0.0,23029.45,0.0,0.0,1,9,0.0,3,0.0 +7033,9848,4436.2192646806,65.0,112,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,37690.0,0.0,0.0,37324.7,0.0,0.0,1,6,1.0,5,0.0 +7034,9849,2844.290730601298,27.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55717.6,0.0,60420.0,3,9,7.0,3,2.0 +7035,9850,2058.5217167656674,33.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43024.0,0.0,44580.0,2,7,0.0,4,2.0 +7036,9851,4019.678760061328,50.0,112,3300.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50028.9,0.0,48590.0,3,10,2.0,2,3.0 +7037,9852,3068.3072193841153,77.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,62010.0,0.0,0.0,60523.85,0.0,0.0,3,9,7.0,1,0.0 +7038,9853,1977.486534116128,45.0,112,0.0,56,2.0,2.0,5.0,2.8,0.0,0.0,0.0,16410.0,0.0,0.0,45557.5,0.0,21120.0,2,10,0.0,4,2.0 +7039,9854,4212.808163876721,47.0,111,380.0,56,3,1.0,4.0,2.5,0.0,810.0,0.0,0.0,0.0,0.0,13377.6,3450.0,7450.0,3,10,8.0,4,3.0 +7040,9855,1584.6228595960908,79.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14680.0,0.0,0.0,14697.85,0.0,0.0,1,6,0.0,1,0.0 +7041,9857,4278.011370498982,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8691.0,0.0,0.0,3,9,7.0,1,0.0 +7042,9859,2537.955970916121,48.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44459.3,0.0,54620.0,1,7,0.0,3,2.0 +7043,9861,1497.3266718788316,75.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18770.0,0.0,0.0,18437.0,0.0,0.0,3,7,4.0,1,0.0 +7044,9863,2252.1571392103633,62.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34770.0,0.0,0.0,33612.381983567335,0.0,0.0,1,10,8.0,3,0.0 +7045,9864,2750.8179304962487,37.0,221,6650.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29962.8,0.0,21450.0,2,1,2.0,4,2.0 +7046,9866,2403.1267012583317,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14780.0,0.0,0.0,14786.0,0.0,0.0,3,9,7.0,1,0.0 +7047,9867,678.5308828626678,71.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24750.0,0.0,0.0,24750.0,0.0,0.0,3,0,1.0,3,0.0 +7048,9868,1386.6017344199304,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15840.0,0.0,0.0,17640.0,0.0,0.0,3,8,6.0,2,0.0 +7049,9869,2154.5517083013847,83.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39520.0,0.0,0.0,38508.75,0.0,0.0,1,5,4.0,3,0.0 +7050,9870,1746.5429187773343,81.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41550.0,0.0,0.0,36269.89544873337,0.0,0.0,1,9,2.0,3,0.0 +7051,9871,1885.3029449176393,73.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57590.0,0.0,0.0,97621.12626813311,0.0,0.0,1,8,6.0,3,0.0 +7052,9874,1351.0249313162226,50.0,120,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50506.5,0.0,50240.0,2,0,3.0,4,2.0 +7053,9875,2771.6003140671933,42.0,111,0.0,55,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,31495.65,2960.0,25580.0,3,8,7.0,4,1.0 +7054,9876,2021.918797917637,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35670.0,0.0,0.0,34801.8,0.0,0.0,1,9,7.0,3,0.0 +7055,9877,1399.8540448593405,46.0,112,0.0,55,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48119.85,0.0,45550.0,2,6,0.0,4,2.0 +7056,9878,2026.5958006432436,37.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,212.0,0.0,35082.65,0.0,36270.0,2,8,7.0,2,1.0 +7057,9879,1069.103803617394,31.0,111,4440.0,54,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,39094.2,710.0,18900.0,3,8,6.0,4,2.0 +7058,9880,1935.4959774466997,64.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21220.0,0.0,0.0,26932.75,0.0,9210.0,1,10,8.0,1,0.0 +7059,9881,2292.0710939239516,53.0,300,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19061.65,0.0,17910.0,3,0,1.0,2,1.0 +7060,9883,1492.6046929677482,60.0,211,0.0,46,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,60528.3,0.0,62530.0,2,2,3.0,4,3.0 +7061,9884,2145.365042206447,59.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18854.65,0.0,19140.0,3,8,7.0,2,2.0 +7062,9885,2982.528410462787,85.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11540.0,0.0,0.0,11499.5,0.0,0.0,1,0,0.0,1,0.0 +7063,9886,1234.0593443820687,50.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55524.5,0.0,30700.0,3,9,7.0,2,1.0 +7064,9887,3258.2517895588658,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3033.0,0.0,0.0,3,9,7.0,1,0.0 +7065,9888,1933.05330796598,52.0,111,0.0,13,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,44079.5,0.0,21920.0,2,6,5.0,4,3.0 +7066,9891,3001.3664568386525,89.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30040.0,0.0,0.0,26957.05,0.0,0.0,1,7,5.0,1,0.0 +7067,9893,2736.983601388817,33.0,300,2990.0,46,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,66364.15,0.0,71470.0,2,0,0.0,4,2.0 +7068,9894,1727.8730753879158,48.0,112,0.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,47631.4,0.0,49350.0,1,9,0.0,4,3.0 +7069,9895,3312.7978830500792,24.0,120,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25553.0,0.0,27670.0,3,0,1.0,1,1.0 +7070,9897,3752.7680342039016,79.0,120,0.0,78,0.0,0.0,2.0,1.5,9720.0,0.0,0.0,20070.0,0.0,0.0,28114.35,0.0,160.0,3,0,0.0,2,0.0 +7071,9899,2208.0893524808776,55.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3610.0,0.0,0.0,24202.0,0.0,21180.0,2,9,7.0,1,1.0 +7072,9900,1424.759375932751,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48160.0,0.0,0.0,42625.25,0.0,0.0,1,6,5.0,3,0.0 +7073,9901,1491.3970438829149,49.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,112226.65,0.0,126800.0,2,9,7.0,4,2.0 +7074,9902,2903.9352749575205,23.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,6860.0,0.0,0.0,0.0,0.0,18156.0,0.0,0.0,3,6,4.0,2,0.0 +7075,9906,2144.656530843731,53.0,211,5950.0,77,1.0,1.0,4.0,2.3,8990.0,0.0,0.0,0.0,0.0,0.0,22425.0,60.0,0.0,3,1,3.0,4,1.0 +7076,9907,1553.0990413894667,73.0,111,3700.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67710.0,0.0,0.0,66271.0,0.0,720.0,1,8,7.0,3,0.0 +7077,9909,1818.4316784477476,56.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33670.0,0.0,0.0,29328.5,0.0,0.0,1,9,2.0,3,0.0 +7078,9911,1600.010479394784,71.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51300.0,142.0,0.0,47129.8,0.0,0.0,5,0,0.0,3,0.0 +7079,9912,2459.495404920931,83.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33570.0,0.0,0.0,50147.0,0.0,0.0,1,0,0.0,3,0.0 +7080,9913,769.1637904633909,31.0,111,0.0,85,1.0,0.0,5.0,2.4,0.0,15620.0,0.0,0.0,0.0,0.0,24370.0,0.0,0.0,3,8,6.0,5,1.0 +7081,9915,1675.3046295578654,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41310.0,0.0,0.0,38068.85,0.0,0.0,1,7,5.0,3,0.0 +7082,9916,2590.0144426346947,35.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,60792.3,0.0,66880.0,3,8,7.0,4,2.0 +7083,9919,1485.1877187691941,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49670.0,0.0,0.0,44419.2,0.0,0.0,1,10,8.0,3,0.0 +7084,9922,2198.4971027152137,63.0,111,2150.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51200.0,0.0,0.0,53447.08286090468,0.0,0.0,1,9,7.0,3,0.0 +7085,9923,1813.480107387681,30.0,400,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32700.3,0.0,32140.0,3,0,1.0,3,2.0 +7086,9929,2549.663977112984,46.0,300,3720.0,64,3,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,29106.95,0.0,21390.0,3,0,1.0,4,3.0 +7087,9930,1700.6471387080935,49.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,97445.1,0.0,100470.0,2,8,7.0,4,2.0 +7088,9931,2775.158382415258,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21900.0,0.0,0.0,20817.3,0.0,0.0,1,8,6.0,1,0.0 +7089,9932,2283.410929332938,59.0,111,1500.0,54,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,55814.3,0.0,55650.0,3,10,8.0,4,2.0 +7090,9934,3239.287152870798,27.0,211,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46706.4,0.0,49180.0,2,4,4.0,3,2.0 +7091,9938,4086.5267060221927,48.0,120,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51724.2,0.0,53230.0,2,0,0.0,5,3.0 +7092,9939,3137.1007287407283,62.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,240.0,0.0,0.0,22804.7,0.0,24550.0,3,8,7.0,1,1.0 +7093,9940,1730.0667122885436,41.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59639.6,0.0,24990.0,1,8,1.0,4,2.0 +7094,9942,1611.7120371101068,54.0,400,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,489.0,0.0,51024.1,0.0,47310.0,1,0,0.0,4,2.0 +7095,9944,3676.1553780709905,39.0,111,1570.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47546.3,0.0,47990.0,2,8,6.0,4,2.0 +7096,9945,1545.8333155183393,49.0,400,13960.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32410.8,0.0,19760.0,2,0,1.0,3,2.0 +7097,9948,4616.732769945467,23.0,111,9220.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24806.65,50.0,15950.0,3,8,7.0,3,2.0 +7098,9949,4710.229263447096,27.0,112,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20650.65,0.0,21880.0,3,10,2.0,1,1.0 +7099,9950,1217.7562397050206,61.0,111,2060.0,,0.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,407.0,0.0,83700.83383192596,0.0,107030.0,1,9,7.0,3,0.0 +7100,9951,1968.4159963894003,86.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20800.0,0.0,0.0,20883.0,0.0,0.0,1,0,0.0,3,0.0 +7101,9952,3752.682107326639,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16130.0,0.0,0.0,15731.2,0.0,0.0,3,7,5.0,1,0.0 +7102,9953,1345.621064169465,50.0,120,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7580.0,0.0,0.0,6608.049999999999,0.0,0.0,1,0,3.0,1,0.0 +7103,9954,1815.5114304146068,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38930.0,1317.0,0.0,38054.85,0.0,0.0,1,5,4.0,3,0.0 +7104,9955,2240.7253201235094,45.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56285.4,0.0,60880.0,2,10,2.0,4,2.0 +7105,9956,750.3210450484703,37.0,300,0.0,85,0.0,0.0,5.0,2.2,0.0,0.0,0.0,5060.0,0.0,0.0,26710.0,0.0,0.0,3,0,0.0,2,0.0 +7106,9957,2586.685575262374,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21230.0,0.0,0.0,19944.4,0.0,0.0,1,10,8.0,1,0.0 +7107,9958,2242.69608628018,65.0,112,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24820.0,429.0,0.0,43161.9,0.0,20320.0,1,7,0.0,3,1.0 +7108,9959,2775.540791912759,43.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,59300.15501525529,0.0,76560.0,1,10,8.0,1,1.0 +7109,9960,1956.3337795466048,33.0,112,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,153.0,0.0,33993.9,0.0,12780.0,5,9,0.0,3,2.0 +7110,9964,1505.3639526663535,53.0,112,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18320.0,0.0,0.0,45223.7,0.0,31270.0,1,8,1.0,3,1.0 +7111,9966,701.4999855439105,46.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,17886.9,0.0,10560.0,3,8,7.0,2,1.0 +7112,9967,2203.657471678127,51.0,112,2760.0,68,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13241.85,2130.0,6840.0,3,7,0.0,3,1.0 +7113,9968,3168.655327043829,59.0,112,0.0,78,1.0,1.0,2.0,1.5,6330.0,0.0,0.0,0.0,0.0,0.0,18282.7,0.0,11940.0,1,6,0.0,3,1.0 +7114,9969,2727.334252859519,61.0,111,16510.0,74,0.0,0.0,1.0,1.0,0.0,3300.0,0.0,0.0,0.0,0.0,18418.85,70.0,0.0,3,6,4.0,1,0.0 +7115,9970,1978.206485236244,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46130.0,0.0,0.0,40798.2,0.0,0.0,1,8,6.0,3,0.0 +7116,9971,2272.24125701462,44.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,10338.8,0.0,20720.0,2,8,7.0,2,1.0 +7117,9972,5703.934791682038,45.0,300,0.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,54312.55,0.0,51010.0,2,0,0.0,4,2.0 +7118,9974,3024.8729378059306,51.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,444.0,0.0,23026.05,0.0,23050.0,3,10,0.0,1,1.0 +7119,9975,1613.3428502270694,59.0,111,0.0,46,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,68410.4,1400.0,73990.0,3,9,7.0,4,3.0 +7120,9976,2138.019907026291,35.0,400,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33263.7,0.0,38840.0,2,0,0.0,4,2.0 +7121,9977,2499.851674901228,59.0,111,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19010.0,0.0,0.0,41925.0,0.0,27300.0,1,9,7.0,3,1.0 +7122,9978,4689.768671941841,24.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23730.25,0.0,25710.0,3,8,6.0,1,1.0 +7123,9980,1772.4930903040213,49.0,111,0.0,33,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,6183.35,0.0,6590.0,3,9,7.0,4,1.0 +7124,9981,2227.7158951504634,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10170.0,0.0,0.0,9814.0,0.0,0.0,1,9,7.0,1,0.0 +7125,9982,3325.4690394718627,27.0,111,12500.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18188.4,0.0,5150.0,3,10,8.0,1,0.0 +7126,9984,1933.7032075399036,59.0,120,9460.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31884.55,0.0,23020.0,1,0,0.0,3,1.0 +7127,9985,2605.1943058447123,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,73460.0,0.0,0.0,61150.09350409231,0.0,0.0,1,10,8.0,3,0.0 +7128,9986,2331.440123262009,43.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56687.0,0.0,44840.0,2,10,0.0,4,2.0 +7129,9987,2867.6550921161834,76.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13140.0,0.0,0.0,12685.0,0.0,0.0,1,0,0.0,1,0.0 +7130,9989,1679.090773548411,43.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23262.0,3190.0,14310.0,3,10,8.0,2,1.0 +7131,9991,4012.447258394524,59.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20510.0,0.0,0.0,19385.3,0.0,0.0,3,7,6.0,1,0.0 +7132,9994,3898.397862741176,42.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,20012.0,213862.6,0.0,240520.0,2,10,8.0,4,2.0 +7133,9996,1362.3548224300682,45.0,111,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39718.85,0.0,44270.0,1,6,5.0,4,2.0 +7134,9997,1547.819779038382,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46160.0,52.0,0.0,42596.9,0.0,0.0,1,9,7.0,3,0.0 +7135,9998,1762.1578389628562,51.0,120,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,72882.3,0.0,76740.0,2,0,0.0,4,3.0 +7136,10001,12125.921549462557,44.0,111,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12986.0,0.0,0.0,3,9,7.0,1,0.0 +7137,10003,3320.293532673264,47.0,111,5100.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47578.8,650.0,42700.0,1,9,7.0,4,3.0 +7138,10005,4103.151020986681,44.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,84594.9,0.0,93010.0,2,9,3.0,4,2.0 +7139,10007,3812.108337325521,35.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,65143.25,0.0,72110.0,3,10,8.0,3,2.0 +7140,10009,3079.940945500461,60.0,112,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31109.5,0.0,0.0,1,8,0.0,3,2.0 +7141,10010,2678.775772033954,63.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,62.0,0.0,25241.4,0.0,28130.0,1,9,7.0,1,1.0 +7142,10011,6662.519627452481,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14740.0,19.0,0.0,15253.0,0.0,0.0,3,10,8.0,1,0.0 +7143,10012,1763.0747419468726,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23920.0,475.0,0.0,22423.4,0.0,0.0,1,9,3.0,3,0.0 +7144,10013,1863.0369579434346,67.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28510.0,0.0,0.0,29038.5,0.0,0.0,1,0,0.0,3,0.0 +7145,10014,687.6484267243248,37.0,111,0.0,85,0.0,0.0,4.0,1.9,6320.0,0.0,0.0,0.0,0.0,0.0,24376.0,0.0,0.0,3,10,8.0,2,0.0 +7146,10015,3623.2220050278797,69.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12610.0,0.0,0.0,13114.0,0.0,0.0,3,0,0.0,1,0.0 +7147,10018,1704.1088085218407,39.0,112,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37636.0,0.0,53070.0,3,10,3.0,1,1.0 +7148,10019,3903.0258477400894,23.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19657.65,890.0,16670.0,3,8,7.0,1,1.0 +7149,10020,2843.5900198292957,67.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22730.0,0.0,0.0,20539.5,0.0,0.0,1,9,7.0,1,0.0 +7150,10021,749.0997245369051,38.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31662.8,0.0,30080.0,3,9,7.0,2,1.0 +7151,10022,3037.687022917809,72.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11750.0,0.0,0.0,12710.0,0.0,0.0,3,9,7.0,1,0.0 +7152,10023,2358.517384134897,80.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34530.0,0.0,0.0,35739.5,0.0,0.0,1,6,0.0,3,0.0 +7153,10024,1183.8782637373797,57.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26147.25,0.0,27200.0,2,8,7.0,1,1.0 +7154,10025,1489.0665280073092,67.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49050.0,0.0,0.0,44912.75,0.0,0.0,1,0,1.0,3,0.0 +7155,10027,1826.9007474498637,61.0,400,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19889.35,0.0,2990.0,1,0,0.0,3,2.0 +7156,10028,3099.0424474992815,94.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23200.0,0.0,0.0,21972.15,0.0,0.0,1,9,7.0,1,0.0 +7157,10029,2319.6124029501498,83.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13330.0,0.0,0.0,13049.85,0.0,0.0,5,8,7.0,1,0.0 +7158,10031,3084.972843542195,40.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8994.75,0.0,0.0,3,10,8.0,1,1.0 +7159,10032,1692.7512095508978,67.0,211,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22720.0,0.0,0.0,30730.4,0.0,9020.0,1,1,2.0,3,1.0 +7160,10034,1529.016562525534,38.0,112,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32441.85,0.0,25050.0,2,8,1.0,4,2.0 +7161,10036,3514.5957672638388,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24450.0,0.0,0.0,26545.75,0.0,2420.0,3,8,6.0,3,0.0 +7162,10037,2190.69409774816,49.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49408.95,0.0,50790.0,2,9,7.0,4,2.0 +7163,10038,1868.264480113215,42.0,111,0.0,63,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24110.8,4250.0,16210.0,2,8,7.0,4,1.0 +7164,10039,2540.603557327796,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23290.0,1238.0,0.0,25529.6,0.0,0.0,1,9,7.0,1,0.0 +7165,10040,3508.155857094905,60.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20580.0,0.0,0.0,20251.55,0.0,0.0,3,8,6.0,1,0.0 +7166,10041,402.92969961868374,44.0,111,0.0,63,1.0,1.0,3.0,1.8,0.0,0.0,0.0,6380.0,0.0,0.0,27893.05,0.0,22170.0,2,9,7.0,2,1.0 +7167,10042,2768.1152946810003,55.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26069.15,0.0,26400.0,3,6,5.0,2,1.0 +7168,10045,1982.4732892881732,75.0,112,12480.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26170.0,0.0,0.0,66243.5,0.0,15340.0,5,9,1.0,1,0.0 +7169,10046,2106.844990745761,61.0,211,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18400.0,0.0,0.0,56159.75,0.0,43130.0,1,1,3.0,3,1.0 +7170,10047,1749.9590806633125,40.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,88794.55,0.0,90610.0,2,10,8.0,4,2.0 +7171,10048,2331.635467767904,57.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19057.8,0.0,20300.0,3,10,8.0,1,1.0 +7172,10051,1642.3934372333263,68.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35250.0,0.0,0.0,58463.85,0.0,38810.0,1,10,8.0,3,0.0 +7173,10053,1437.0924605434077,60.0,120,0.0,71,1.0,1.0,2.0,1.5,0.0,0.0,0.0,4070.0,0.0,0.0,38423.05,0.0,0.0,1,0,1.0,3,1.0 +7174,10056,3455.2014622195043,37.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14686.8,0.0,16820.0,1,10,8.0,1,1.0 +7175,10057,3471.6880240202177,21.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,759.5,0.0,1400.0,3,9,7.0,1,1.0 +7176,10058,605.2247085054493,43.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22886.3,2620.0,16530.0,3,8,7.0,2,1.0 +7177,10059,4395.006256150831,58.0,111,0.0,78,1.0,1.0,2.0,1.5,10980.0,0.0,0.0,0.0,0.0,0.0,16849.0,0.0,0.0,3,8,7.0,2,1.0 +7178,10060,3234.2373569357683,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,44990.0,0.0,0.0,36463.2,0.0,0.0,2,8,6.0,1,0.0 +7179,10061,3497.7509412552745,23.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14300.0,280.0,14020.0,3,8,7.0,1,1.0 +7180,10062,471.93539708535263,40.0,111,0.0,62,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19167.3,1700.0,16260.0,1,8,7.0,2,1.0 +7181,10063,2987.809629997056,44.0,120,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,26926.45,0.0,22080.0,2,0,0.0,4,2.0 +7182,10065,2258.1014370538405,79.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18110.0,0.0,0.0,18366.85,0.0,0.0,3,7,6.0,1,0.0 +7183,10066,2846.500496675066,66.0,111,0.0,68,1.0,0.0,2.0,1.5,0.0,0.0,0.0,37010.0,0.0,0.0,30730.6,0.0,970.0,1,10,8.0,3,1.0 +7184,10067,1691.8676849306687,41.0,112,0.0,48,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,50117.1,0.0,50520.0,2,6,0.0,4,2.0 +7185,10068,3633.364129354941,57.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33031.55,0.0,34860.0,3,10,8.0,2,2.0 +7186,10069,2234.3864538774574,50.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37803.7,0.0,40200.0,1,4,3.0,3,2.0 +7187,10070,1777.3870729197085,66.0,300,770.0,33,1.0,0.0,2.0,1.5,0.0,0.0,0.0,30080.0,0.0,0.0,30123.8,0.0,0.0,1,0,1.0,3,1.0 +7188,10071,1338.8434599887648,65.0,111,8330.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,47850.0,0.0,0.0,55402.25,0.0,4280.0,1,7,6.0,4,1.0 +7189,10074,2157.0197471960896,73.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,65360.0,1077.0,0.0,64582.5,0.0,0.0,1,7,5.0,1,0.0 +7190,10075,3557.112031955093,41.0,400,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46891.2,0.0,35270.0,1,0,0.0,4,2.0 +7191,10076,1762.7902480673902,43.0,211,3700.0,68,2.0,2.0,5.0,3.0,0.0,5820.0,0.0,22980.0,0.0,0.0,44529.2,5310.0,4800.0,1,3,3.0,5,2.0 +7192,10077,1235.509561828703,78.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14810.0,0.0,0.0,14884.0,0.0,0.0,1,7,5.0,1,0.0 +7193,10078,2520.407038918176,45.0,111,3070.0,56,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27737.5,1910.0,18970.0,3,9,7.0,4,2.0 +7194,10079,2594.7075530606417,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12690.0,0.0,0.0,11927.1,0.0,0.0,1,9,7.0,1,0.0 +7195,10080,358.08641955003577,51.0,120,3320.0,46,3,3.0,4.0,2.5,0.0,0.0,0.0,13520.0,1717.0,0.0,57603.1,0.0,33400.0,1,0,3.0,4,3.0 +7196,10081,3214.941339788412,39.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,64098.15,0.0,60220.0,2,9,1.0,4,2.0 +7197,10082,2600.5985346966913,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14580.0,0.0,0.0,14602.0,0.0,0.0,3,9,7.0,1,0.0 +7198,10083,2480.990648644,63.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,933.0,0.0,28636.65,820.0,26120.0,3,8,7.0,3,2.0 +7199,10085,2062.6763482628235,46.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19938.0,0.0,21040.0,3,7,5.0,1,1.0 +7200,10086,1459.0828421738117,55.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39219.8,0.0,36660.0,1,8,7.0,3,2.0 +7201,10087,2539.1147948594958,89.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61570.0,1537.0,0.0,63530.85,0.0,0.0,1,8,7.0,3,0.0 +7202,10088,1860.8662096467842,48.0,111,0.0,37,2.0,2.0,4.0,2.5,2430.0,0.0,0.0,0.0,142.0,0.0,53176.0,0.0,36320.0,1,5,4.0,4,2.0 +7203,10090,4240.0765552183,46.0,111,5610.0,54,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13703.95,260.0,1780.0,3,9,7.0,2,1.0 +7204,10091,1656.1597339509485,48.0,111,0.0,62,1.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,8957.75,0.0,800.0,3,6,5.0,1,1.0 +7205,10092,1808.6940586899839,52.0,300,8510.0,67,1.0,0.0,2.0,1.5,6980.0,0.0,0.0,3650.0,0.0,0.0,24825.6,0.0,6060.0,1,0,0.0,3,1.0 +7206,10093,2304.5418211525275,47.0,112,0.0,65,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,51209.8,0.0,41630.0,2,9,0.0,4,2.0 +7207,10094,2405.0808898276687,29.0,111,5120.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38232.0,0.0,33970.0,3,8,6.0,3,2.0 +7208,10095,1577.029406722562,51.0,111,0.0,85,2.0,0.0,3.0,2.0,0.0,16330.0,0.0,0.0,0.0,0.0,16330.0,0.0,0.0,5,8,7.0,2,2.0 +7209,10096,666.1169014360638,32.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,14231.65,0.0,0.0,3,6,5.0,2,0.0 +7210,10097,1007.0265695100264,38.0,111,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47430.0,0.0,40920.0,3,7,6.0,4,2.0 +7211,10098,4473.762496813156,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17190.0,0.0,0.0,17119.9,0.0,0.0,1,9,7.0,1,0.0 +7212,10100,2642.0497339899607,65.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37160.0,0.0,0.0,34433.6,0.0,0.0,1,8,3.0,1,0.0 +7213,10101,2305.336001195742,64.0,111,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,35600.0,0.0,0.0,34739.55,0.0,0.0,1,9,7.0,4,0.0 +7214,10102,3774.201190610858,46.0,111,0.0,85,0.0,0.0,1.0,1.0,9100.0,0.0,0.0,0.0,0.0,0.0,12236.0,0.0,0.0,3,8,7.0,1,0.0 +7215,10105,1623.8220538422838,80.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21160.0,0.0,0.0,27633.2,0.0,0.0,1,9,2.0,3,0.0 +7216,10106,4500.514980285526,59.0,111,0.0,64,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27150.220901678204,0.0,28360.0,5,9,7.0,3,2.0 +7217,10107,2420.3360260513873,57.0,112,0.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,54296.55,0.0,55250.0,1,7,0.0,4,4.0 +7218,10108,683.6193099243549,19.0,211,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14065.0,610.0,11150.0,3,1,2.0,1,1.0 +7219,10111,3741.482365773435,27.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14790.0,0.0,13380.0,3,8,6.0,1,1.0 +7220,10113,1496.463556947867,50.0,120,0.0,47,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,53320.1,0.0,46950.0,1,0,2.0,4,2.0 +7221,10115,3960.545594084798,28.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27450.05,0.0,30550.0,3,7,5.0,1,1.0 +7222,10116,1810.2257524180866,34.0,400,410.0,69,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32694.0,0.0,32960.0,2,0,0.0,4,2.0 +7223,10117,1975.3334405813011,76.0,111,4930.0,86,2.0,2.0,5.0,2.8,9720.0,0.0,0.0,12110.0,0.0,0.0,52200.7,0.0,21890.0,3,10,8.0,5,2.0 +7224,10118,1007.8264314621658,56.0,111,0.0,52,1.0,0.0,3.0,2.0,0.0,5180.0,0.0,0.0,0.0,0.0,22601.4,1500.0,12960.0,3,9,7.0,2,1.0 +7225,10119,1379.5245978111302,32.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,7120.0,0.0,0.0,0.0,0.0,12774.0,0.0,0.0,3,8,7.0,2,0.0 +7226,10120,853.4188959047872,35.0,112,0.0,52,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,30729.0,1800.0,14720.0,3,8,1.0,4,1.0 +7227,10122,907.5893930263255,48.0,111,5650.0,63,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,33393.55,1250.0,27810.0,3,8,7.0,5,1.0 +7228,10123,87.05917586919806,30.0,211,0.0,55,1.0,0.0,4.0,1.9,0.0,2610.0,0.0,0.0,0.0,0.0,9170.0,0.0,0.0,3,1,2.0,2,1.0 +7229,10124,3233.1469147304665,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31280.0,0.0,0.0,27530.5,0.0,0.0,3,8,7.0,1,0.0 +7230,10128,791.8136849031512,48.0,112,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30436.85,0.0,29940.0,2,10,2.0,2,1.0 +7231,10132,4293.901232279452,29.0,111,9200.0,54,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,19826.3,0.0,0.0,3,4,4.0,2,1.0 +7232,10133,1134.870045583239,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,50930.0,0.0,0.0,34971.75,0.0,0.0,5,7,6.0,1,0.0 +7233,10134,1564.930463863592,49.0,111,0.0,84,2.0,1.0,4.0,2.5,3250.0,0.0,0.0,0.0,0.0,0.0,38874.55,2410.0,30790.0,3,9,7.0,2,2.0 +7234,10135,3452.337748423046,93.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19720.0,1570.0,0.0,19824.25,0.0,0.0,1,7,5.0,1,0.0 +7235,10140,3477.152734334016,36.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,64606.1,0.0,65690.0,2,10,8.0,4,2.0 +7236,10142,1218.6177349486304,24.0,300,4350.0,69,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24260.3,0.0,12080.0,3,0,0.0,2,1.0 +7237,10143,4471.828489796644,45.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,79189.4,0.0,91810.0,2,9,7.0,4,2.0 +7238,10144,2671.9653489540365,42.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46838.7,0.0,48290.0,3,8,0.0,4,2.0 +7239,10146,2757.4276802204745,40.0,111,0.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,15.0,0.0,246955.65,0.0,94810.0,2,9,7.0,4,2.0 +7240,10147,1532.8046038194684,72.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26640.0,0.0,0.0,30456.0,0.0,0.0,1,9,1.0,3,0.0 +7241,10149,505.43766028523106,42.0,111,0.0,56,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,32471.65,790.0,12740.0,3,8,6.0,2,1.0 +7242,10150,3462.60595030431,89.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37870.0,0.0,0.0,32133.55,0.0,0.0,1,9,7.0,1,0.0 +7243,10151,2248.753307699962,63.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32530.0,0.0,0.0,31114.2,0.0,0.0,1,0,0.0,3,0.0 +7244,10152,1625.043157750176,76.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20710.0,0.0,0.0,20477.8,0.0,0.0,1,0,2.0,3,0.0 +7245,10153,2366.568838655854,72.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11810.0,0.0,0.0,11658.0,0.0,0.0,1,0,1.0,1,0.0 +7246,10154,1094.658919703865,48.0,211,0.0,53,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,48162.1,0.0,35840.0,2,2,3.0,4,2.0 +7247,10155,1621.0591074278195,52.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66920.3,0.0,70530.0,1,10,0.0,4,2.0 +7248,10157,1860.1737447613964,33.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,60958.7,0.0,44400.0,2,7,5.0,4,2.0 +7249,10160,1713.2546890871151,50.0,221,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39956.75,0.0,41560.0,2,1,2.0,3,2.0 +7250,10161,2566.509707076367,37.0,112,530.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,43673.0,0.0,34680.0,3,7,0.0,4,2.0 +7251,10162,2477.3624090048966,41.0,112,9690.0,52,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,60914.75,0.0,44940.0,3,7,0.0,4,2.0 +7252,10163,2019.4480610558387,46.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45277.2,0.0,47420.0,3,10,8.0,4,2.0 +7253,10167,1919.5584983753738,42.0,112,0.0,38,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,210.0,0.0,66925.35,0.0,61150.0,2,9,0.0,4,2.0 +7254,10170,800.1545428853863,43.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66339.8,0.0,73590.0,1,9,7.0,4,2.0 +7255,10173,3352.5595969397145,28.0,111,3160.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40746.15,110.0,34560.0,3,9,7.0,4,2.0 +7256,10174,2613.634160541196,37.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26902.1,0.0,29480.0,3,7,5.0,1,1.0 +7257,10176,3203.572625473127,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12920.0,0.0,0.0,16220.0,0.0,3300.0,3,9,7.0,1,0.0 +7258,10177,2545.6804893932904,65.0,112,0.0,68,2.0,1.0,2.0,1.5,0.0,0.0,0.0,14200.0,0.0,0.0,14340.55,0.0,760.0,1,9,1.0,2,2.0 +7259,10180,920.6194140062084,44.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,6490.0,0.0,0.0,0.0,0.0,14015.0,0.0,0.0,3,8,7.0,2,0.0 +7260,10181,2246.7561799071623,46.0,112,9880.0,46,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45480.2,0.0,34590.0,1,7,0.0,4,2.0 +7261,10182,1842.6271463392804,39.0,300,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42015.5,0.0,37350.0,2,0,0.0,4,2.0 +7262,10185,2324.735913755466,52.0,111,7310.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14521.75,0.0,0.0,3,8,7.0,1,1.0 +7263,10187,1785.1053780360467,77.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12850.0,0.0,0.0,12855.0,0.0,0.0,5,8,7.0,1,0.0 +7264,10188,10020.30318305883,48.0,111,0.0,68,1.0,1.0,1.0,1.0,9600.0,0.0,0.0,0.0,0.0,0.0,10306.35,0.0,0.0,3,8,7.0,1,1.0 +7265,10189,2883.3076264920505,30.0,111,4130.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15102.75,800.0,7280.0,3,7,5.0,1,1.0 +7266,10190,3667.159013928598,77.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17070.0,0.0,0.0,19478.95,0.0,0.0,1,6,0.0,1,0.0 +7267,10191,2995.343390765195,28.0,111,4530.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15256.8,0.0,11810.0,3,7,5.0,1,1.0 +7268,10192,774.2497811570389,39.0,112,0.0,22,2.0,1.0,3.0,1.8,0.0,7120.0,0.0,0.0,0.0,0.0,31023.0,0.0,0.0,3,7,0.0,4,2.0 +7269,10193,4194.611994640937,32.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32645.05,0.0,37470.0,3,10,8.0,1,1.0 +7270,10194,301.75618885560715,34.0,221,6370.0,67,1.0,0.0,4.0,2.1,0.0,580.0,0.0,0.0,0.0,0.0,27030.3,0.0,1840.0,3,1,1.0,2,1.0 +7271,10195,4142.90848521982,28.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,224.0,0.0,21074.8,0.0,21790.0,2,9,7.0,1,1.0 +7272,10196,2067.574466026947,41.0,112,0.0,85,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39372.05,0.0,38120.0,2,10,0.0,4,1.0 +7273,10198,2077.3994921580215,83.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24870.0,0.0,0.0,25595.005717265572,0.0,0.0,1,8,1.0,3,0.0 +7274,10199,1483.6921283914633,71.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52470.0,2617.0,0.0,50047.25,0.0,0.0,1,0,0.0,3,0.0 +7275,10200,2073.4861279589263,35.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,198.0,0.0,70852.0,0.0,76030.0,1,7,5.0,4,2.0 +7276,10201,5172.728678721696,24.0,111,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15108.85,0.0,11980.0,3,6,5.0,1,1.0 +7277,10202,4968.874988690112,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6400.0,0.0,0.0,3,10,8.0,1,0.0 +7278,10203,2175.700139696581,50.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,74.0,0.0,53892.3,0.0,60790.0,1,9,7.0,3,2.0 +7279,10204,1786.386257902802,82.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24260.0,0.0,0.0,24236.0,0.0,0.0,5,0,0.0,3,0.0 +7280,10206,1365.4101779625578,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47910.0,0.0,0.0,42935.05,0.0,0.0,1,7,5.0,3,0.0 +7281,10207,4241.278320541291,22.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38079.0,0.0,41340.0,2,8,7.0,3,2.0 +7282,10208,4190.226883177627,21.0,120,0.0,68,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5441.0,0.0,0.0,3,0,0.0,1,1.0 +7283,10210,2502.888646292844,29.0,111,9050.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32571.55,0.0,23980.0,3,9,7.0,3,2.0 +7284,10213,3890.883673638952,27.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3.0,0.0,39856.0,0.0,42200.0,2,9,3.0,3,2.0 +7285,10214,1982.0205678996333,70.0,120,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19680.0,0.0,0.0,19160.8,0.0,0.0,1,0,0.0,1,0.0 +7286,10215,599.8566296179605,32.0,112,6470.0,43,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,13911.05,570.0,1760.0,3,9,3.0,2,1.0 +7287,10217,1424.3298168811832,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27090.0,0.0,0.0,25968.4,0.0,0.0,1,5,4.0,3,0.0 +7288,10218,1904.2820273684895,66.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32430.0,0.0,0.0,32445.8,0.0,0.0,1,0,0.0,2,0.0 +7289,10219,2262.768529568752,43.0,111,0.0,23,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,66031.8095,0.0,55940.0,1,9,7.0,4,2.0 +7290,10220,3383.8670598928666,73.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27870.0,0.0,0.0,27090.65,0.0,0.0,1,6,4.0,3,0.0 +7291,10221,1920.6616266759324,50.0,112,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,20.0,0.0,86303.25,0.0,96630.0,3,10,0.0,4,2.0 +7292,10222,2853.8241128679297,64.0,120,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22770.0,0.0,0.0,28815.0,2440.0,2830.0,1,0,0.0,5,1.0 +7293,10223,1785.8341048669763,49.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44556.5,0.0,4620.0,2,8,6.0,2,1.0 +7294,10226,7518.533888828364,27.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23324.0,0.0,21660.0,3,10,8.0,1,1.0 +7295,10227,4119.921251337953,54.0,300,0.0,69,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,42856.5,0.0,44240.0,1,0,0.0,5,3.0 +7296,10228,1656.007986083386,39.0,111,110.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,70.0,0.0,0.0,32166.15,0.0,21030.0,3,8,7.0,4,2.0 +7297,10229,2253.1632355339143,57.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,404.0,0.0,33761.0,0.0,39410.0,1,10,8.0,1,1.0 +7298,10230,1879.6670185885189,76.0,300,0.0,75,0.0,0.0,2.0,1.5,8690.0,0.0,6170.0,3610.0,0.0,0.0,20901.15,0.0,0.0,1,0,0.0,3,0.0 +7299,10232,1762.2216274524117,102.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37890.0,0.0,0.0,37536.6,0.0,0.0,3,8,7.0,3,0.0 +7300,10233,2992.4453091763935,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19050.0,0.0,2998.0,22650.6,0.0,1120.0,1,7,0.0,3,0.0 +7301,10235,1897.1538615593565,61.0,111,0.0,56,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,9569.05,0.0,10130.0,2,9,7.0,4,2.0 +7302,10236,2182.0055073278677,43.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47617.6,0.0,47500.0,2,8,7.0,4,2.0 +7303,10237,3016.2043565295844,41.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,101.0,0.0,58940.55,0.0,59610.0,3,6,5.0,4,2.0 +7304,10239,2843.9301216516296,39.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57689.2,0.0,23770.0,1,4,3.0,4,2.0 +7305,10240,1263.921151238287,62.0,120,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18860.0,0.0,0.0,17832.5,0.0,0.0,1,0,3.0,1,0.0 +7306,10242,3398.7367650638703,28.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47065.25,0.0,45310.0,2,9,0.0,4,2.0 +7307,10243,2473.473178302656,21.0,300,0.0,62,1.0,1.0,3.0,1.8,0.0,3120.0,0.0,0.0,0.0,0.0,25783.0,120.0,16440.0,3,0,0.0,4,1.0 +7308,10244,1738.644544467279,47.0,112,5420.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13500.0,0.0,8080.0,3,9,3.0,3,1.0 +7309,10248,5260.09581077716,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10200.0,0.0,0.0,11285.8,0.0,0.0,3,9,7.0,1,0.0 +7310,10250,3943.8580042840467,48.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34007.4,0.0,35310.0,3,10,8.0,3,2.0 +7311,10252,1975.4333925206915,60.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8720.0,0.0,0.0,22184.1,0.0,15240.0,1,9,7.0,1,1.0 +7312,10253,2388.4697605818283,24.0,111,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,24671.6,4150.0,12690.0,3,8,7.0,4,1.0 +7313,10254,2402.1019308756836,50.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,15840.0,658.0,0.0,55103.7,0.0,45610.0,1,10,8.0,4,1.0 +7314,10256,2034.784492146265,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32420.0,0.0,0.0,30651.0,0.0,0.0,1,8,7.0,3,0.0 +7315,10257,1015.210620408887,61.0,212,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23850.0,0.0,0.0,21315.75,0.0,0.0,1,4,0.0,3,0.0 +7316,10260,1054.169928116274,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19740.0,0.0,0.0,17978.6,0.0,0.0,1,9,7.0,1,0.0 +7317,10262,1809.2095938240618,39.0,400,0.0,85,1.0,1.0,7.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,13303.9,0.0,0.0,1,0,0.0,4,1.0 +7318,10263,1986.1575832385633,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34920.0,159.0,0.0,32267.0,0.0,0.0,1,5,4.0,3,0.0 +7319,10264,1870.9359086988052,49.0,300,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,465.4,0.0,0.0,5,0,1.0,1,0.0 +7320,10265,3723.5739297642217,45.0,211,0.0,69,1.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,31796.3,0.0,16290.0,3,1,2.0,4,1.0 +7321,10266,857.4839754852487,52.0,120,22520.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54652.95,0.0,0.0,2,0,0.0,4,2.0 +7322,10268,1800.5574361495426,85.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10810.0,0.0,0.0,11013.0,0.0,0.0,1,0,1.0,1,0.0 +7323,10269,2299.2701939434996,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18150.0,0.0,0.0,17475.8,0.0,0.0,1,8,6.0,1,0.0 +7324,10272,2570.6588206331066,49.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,99020.4,0.0,111100.0,2,10,8.0,4,2.0 +7325,10273,478.8053774821827,37.0,111,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23117.5,0.0,16100.0,2,9,7.0,2,1.0 +7326,10276,3889.33420642497,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,1390.0,9850.0,0.0,0.0,11588.0,0.0,0.0,3,9,7.0,1,0.0 +7327,10277,823.5575070087922,50.0,111,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26904.8,0.0,27870.0,1,7,5.0,2,1.0 +7328,10278,1860.9522767474853,54.0,120,0.0,11,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,78451.15,0.0,50510.0,1,0,0.0,5,3.0 +7329,10279,3116.5569625099006,64.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45060.0,0.0,0.0,41031.717737647814,0.0,0.0,1,0,0.0,3,0.0 +7330,10280,774.5302336231052,44.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44781.05,0.0,45100.0,2,8,7.0,4,2.0 +7331,10281,2295.4229923360285,35.0,120,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,36.0,0.0,47095.35,0.0,50880.0,2,0,0.0,3,2.0 +7332,10282,4752.3793262473955,61.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10630.0,0.0,0.0,25224.0,0.0,11210.0,3,10,8.0,1,0.0 +7333,10283,1864.6196728985533,42.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,33655.3,0.0,26650.0,2,7,5.0,2,1.0 +7334,10285,975.6504765732057,53.0,111,0.0,68,1.0,0.0,2.0,1.3,9720.0,0.0,0.0,0.0,0.0,0.0,15933.0,0.0,0.0,3,9,7.0,2,1.0 +7335,10286,891.0309850072957,46.0,112,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,574.0,0.0,29611.8,0.0,22830.0,1,10,0.0,2,1.0 +7336,10287,2918.1629777622006,93.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29180.0,0.0,0.0,28640.426766385193,0.0,4240.0,1,8,7.0,2,0.0 +7337,10289,4449.835149559792,30.0,111,730.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15758.7,0.0,16860.0,2,10,8.0,1,1.0 +7338,10290,3433.204469442811,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14370.0,0.0,0.0,14647.5,0.0,0.0,1,10,8.0,1,0.0 +7339,10291,2165.597533158277,54.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19814.95,0.0,20770.0,3,6,5.0,1,1.0 +7340,10292,1825.8849868759967,69.0,111,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,23980.0,0.0,0.0,24761.2,0.0,1030.0,3,7,5.0,3,1.0 +7341,10293,2182.697244665381,43.0,112,5310.0,68,2.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,46804.4,0.0,28300.0,2,9,0.0,4,2.0 +7342,10294,2050.522372278604,48.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22730.25,0.0,21590.0,3,9,2.0,1,1.0 +7343,10295,1744.5224219175973,44.0,111,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,96110.55,0.0,94500.0,2,9,7.0,4,2.0 +7344,10297,2031.0422520518705,45.0,400,0.0,67,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46669.95,890.0,35580.0,2,0,0.0,4,2.0 +7345,10298,1984.0629889374184,47.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63692.55,0.0,65290.0,2,8,7.0,4,2.0 +7346,10299,5073.644174245161,22.0,111,0.0,34,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,7912.15,0.0,0.0,3,9,7.0,5,2.0 +7347,10300,2165.959292006826,60.0,112,2520.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17535.4,0.0,16450.0,3,10,4.0,1,1.0 +7348,10301,1522.2445904164763,62.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15484.045448733368,0.0,17060.0,3,10,8.0,1,0.0 +7349,10302,2901.2510620448847,32.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34390.95,0.0,38800.0,2,10,8.0,1,1.0 +7350,10303,3742.013952955282,31.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34800.05,0.0,39080.0,2,10,8.0,3,2.0 +7351,10306,4626.392795315962,46.0,111,0.0,68,3,2.0,4.0,2.5,0.0,7130.0,0.0,0.0,0.0,0.0,44976.45,6910.0,26440.0,3,10,8.0,2,4.0 +7352,10308,2138.048927219983,57.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17058.85,0.0,18710.0,3,9,3.0,1,1.0 +7353,10309,2766.8297884795707,66.0,111,5850.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35880.0,0.0,0.0,36738.8,0.0,0.0,1,10,8.0,3,0.0 +7354,10310,3118.132964142362,62.0,111,20540.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,637.0,0.0,36270.65,0.0,12030.0,1,9,7.0,3,1.0 +7355,10311,1424.6725530356227,45.0,221,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2451.75,0.0,0.0,2,1,3.0,1,1.0 +7356,10312,2550.411528783309,20.0,111,0.0,62,3,4.0,4.0,2.5,0.0,0.0,0.0,6350.0,0.0,0.0,73928.9,0.0,72570.0,2,9,7.0,4,4.0 +7357,10313,765.9038089500895,45.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,570.0,0.0,0.0,0.0,0.0,19248.0,0.0,0.0,3,8,6.0,2,0.0 +7358,10318,1626.0248039160563,70.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26780.0,0.0,0.0,25947.45,0.0,0.0,1,0,0.0,3,0.0 +7359,10322,464.36740085512264,43.0,300,12070.0,67,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,17347.3,0.0,0.0,3,0,0.0,2,1.0 +7360,10323,3772.6487882210126,54.0,111,6830.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12561.85,0.0,5770.0,3,10,8.0,1,0.0 +7361,10324,5649.7654188242095,40.0,111,56800.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,73430.65,0.0,18200.0,2,10,8.0,4,2.0 +7362,10325,2904.79576255914,56.0,211,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38443.8,0.0,42900.0,2,1,3.0,1,1.0 +7363,10327,1746.855853874807,43.0,300,0.0,43,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,62387.1,0.0,56420.0,2,0,0.0,4,2.0 +7364,10328,2153.437604806757,43.0,400,2000.0,45,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,71425.45,0.0,56190.0,2,0,0.0,4,2.0 +7365,10329,3734.9494501992,58.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22510.3,0.0,24250.0,3,10,2.0,1,1.0 +7366,10330,2976.7151923384245,62.0,400,0.0,23,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,132271.6709016782,0.0,119840.0,2,0,1.0,4,3.0 +7367,10331,1493.0446050565665,46.0,111,11180.0,67,2.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,23561.65,0.0,0.0,3,8,7.0,4,2.0 +7368,10332,2340.51728820757,60.0,112,0.0,23,2.0,2.0,2.0,1.5,0.0,0.0,0.0,13640.0,0.0,0.0,67121.63383192597,0.0,108690.0,1,10,0.0,3,2.0 +7369,10333,2307.063209700006,93.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35440.0,0.0,0.0,34985.1,0.0,0.0,1,0,0.0,5,0.0 +7370,10334,721.0589669286533,51.0,111,0.0,85,0.0,0.0,8.0,4.1,0.0,9260.0,0.0,0.0,0.0,0.0,37206.0,120.0,1850.0,3,8,7.0,2,0.0 +7371,10335,2445.0751754852154,40.0,112,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,78145.15,0.0,85190.0,2,10,0.0,4,2.0 +7372,10336,1073.007447304568,51.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30533.5,0.0,26960.0,1,9,7.0,2,1.0 +7373,10338,761.2777702007833,44.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24261.15,1150.0,20000.0,3,9,7.0,2,1.0 +7374,10339,2311.817045856645,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49070.0,0.0,0.0,47834.5,0.0,0.0,1,9,0.0,3,0.0 +7375,10342,2469.339782975597,55.0,111,0.0,23,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,15500.0,0.0,89820.75,0.0,73810.0,1,7,5.0,1,1.0 +7376,10343,3111.7745386516162,84.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16940.0,0.0,0.0,16700.2,0.0,0.0,3,8,7.0,1,0.0 +7377,10345,701.4465299732669,51.0,111,0.0,40,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27158.3,0.0,28050.0,2,7,5.0,1,1.0 +7378,10346,2311.2854177596,39.0,120,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48316.6,0.0,49090.0,2,0,1.0,4,2.0 +7379,10347,4023.196547067734,45.0,111,0.0,37,1.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,138553.7354508391,0.0,242390.0,3,10,8.0,4,1.0 +7380,10348,2065.3012685372223,59.0,300,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23699.7,0.0,24220.0,3,0,0.0,1,1.0 +7381,10349,2709.1773460393874,44.0,111,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27968.6,520.0,27880.0,3,8,6.0,4,3.0 +7382,10350,1626.0755863142233,54.0,300,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21204.15,790.0,21180.0,3,0,0.0,2,1.0 +7383,10351,547.4293764703161,34.0,111,0.0,53,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20707.0,0.0,21000.0,2,8,6.0,2,1.0 +7384,10352,3247.926714142741,52.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21701.95,0.0,24060.0,1,9,1.0,1,1.0 +7385,10353,3426.7617213699127,86.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10570.0,0.0,0.0,9621.65,0.0,0.0,5,8,6.0,1,0.0 +7386,10354,1577.80688484844,34.0,112,4270.0,43,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,2.0,0.0,24612.6,0.0,9810.0,2,7,1.0,2,1.0 +7387,10356,2122.1992037141927,40.0,221,7430.0,43,1.0,0.0,1.0,1.0,0.0,350.0,0.0,0.0,0.0,0.0,12130.25,160.0,0.0,3,1,2.0,1,1.0 +7388,10357,1731.2211199660283,57.0,111,4370.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30310.25,0.0,27360.0,1,6,4.0,3,2.0 +7389,10360,2317.9998266256766,40.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45219.65,0.0,38430.0,2,8,0.0,4,2.0 +7390,10361,3341.6176210006165,60.0,112,0.0,22,3,1.0,3.0,2.0,0.0,14860.0,0.0,3610.0,0.0,0.0,53091.85,0.0,6570.0,1,9,0.0,5,3.0 +7391,10362,2930.4700372606817,74.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16750.0,0.0,0.0,15469.65,0.0,0.0,1,8,6.0,3,0.0 +7392,10363,1853.6009927543396,73.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23800.0,0.0,0.0,23520.7,0.0,0.0,3,3,3.0,1,0.0 +7393,10364,1719.2372143745383,62.0,300,4340.0,43,3,2.0,3.0,2.0,0.0,0.0,0.0,12030.0,0.0,0.0,68992.1,0.0,15940.0,1,0,0.0,4,3.0 +7394,10365,1697.5899643410112,59.0,112,64020.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,22040.0,0.0,0.0,72469.35,0.0,2690.0,2,10,0.0,3,1.0 +7395,10368,3900.955455340335,35.0,111,2530.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14823.2,0.0,15980.0,2,9,7.0,1,1.0 +7396,10370,3929.748530674971,44.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25631.9,0.0,28330.0,3,6,5.0,1,1.0 +7397,10371,1948.7635957118423,86.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17370.0,0.0,0.0,18102.0,0.0,0.0,3,3,3.0,1,0.0 +7398,10372,1155.1022989662133,21.0,211,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19667.0,0.0,15930.0,3,4,3.0,3,2.0 +7399,10373,1847.8396560410836,41.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33546.55,0.0,33350.0,2,9,1.0,4,2.0 +7400,10374,1743.587643180839,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33340.0,166.0,0.0,32845.2,0.0,0.0,1,7,0.0,3,0.0 +7401,10375,2462.545329134732,62.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32259.1,0.0,37130.0,3,8,7.0,1,1.0 +7402,10377,465.422914804645,66.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14620.0,0.0,0.0,14103.768360671282,0.0,0.0,1,0,0.0,3,0.0 +7403,10378,2955.7941327287317,39.0,111,0.0,85,0.0,0.0,4.0,2.1,2730.0,0.0,0.0,0.0,0.0,0.0,12136.0,0.0,0.0,3,9,7.0,4,0.0 +7404,10379,2823.3605459446694,65.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13040.0,0.0,0.0,12992.95,0.0,0.0,1,9,7.0,1,0.0 +7405,10381,383.9825802976863,49.0,112,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25910.55,0.0,22540.0,3,10,1.0,2,1.0 +7406,10382,1347.6780975807842,86.0,400,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5350.0,0.0,0.0,14762.5,0.0,0.0,1,0,1.0,1,0.0 +7407,10383,1419.7132841984408,72.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56410.0,180.0,0.0,60990.88675926804,0.0,0.0,1,8,1.0,3,0.0 +7408,10384,2435.65471361413,46.0,111,12120.0,37,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,70718.9,0.0,64560.0,2,10,8.0,4,2.0 +7409,10387,2304.2974627266317,48.0,400,4850.0,67,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38736.1,0.0,33180.0,3,0,1.0,4,2.0 +7410,10388,2619.0304362810725,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37510.0,0.0,0.0,35379.759808476345,0.0,0.0,1,10,8.0,3,0.0 +7411,10389,2573.1485392385225,75.0,300,0.0,86,1.0,0.0,2.0,1.5,0.0,6490.0,0.0,1000.0,0.0,0.0,10574.0,0.0,0.0,3,0,0.0,2,1.0 +7412,10390,2153.404244433419,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2059.7,0.0,0.0,3,8,7.0,1,0.0 +7413,10392,3787.134568381349,43.0,111,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45446.2,0.0,46650.0,3,10,8.0,4,2.0 +7414,10393,2632.182423711934,33.0,300,0.0,23,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,53528.85,0.0,44670.0,2,0,0.0,4,2.0 +7415,10394,2593.88035306943,90.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24180.0,0.0,0.0,21637.0,0.0,0.0,1,10,5.0,1,0.0 +7416,10396,1838.9827148053673,67.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31590.0,0.0,0.0,26271.465260263583,0.0,0.0,1,9,7.0,3,0.0 +7417,10397,2772.0436998118303,38.0,400,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20860.85,0.0,21650.0,2,0,0.0,1,1.0 +7418,10398,1361.0351141434012,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39890.0,0.0,0.0,36027.6,0.0,0.0,1,10,8.0,3,0.0 +7419,10401,6455.135705246362,43.0,111,0.0,47,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,32917.2,0.0,34760.0,2,9,7.0,2,1.0 +7420,10402,4978.9753810730235,76.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,63870.0,1215.0,24.0,55683.23029915558,0.0,0.0,1,10,8.0,1,0.0 +7421,10403,1365.1143803991113,45.0,111,19000.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23998.2,0.0,0.0,3,8,7.0,2,0.0 +7422,10404,2159.7555110686094,63.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35485.812870958565,0.0,43210.0,1,9,7.0,1,1.0 +7423,10406,1786.9133412974754,43.0,111,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,42399.35,0.0,38150.0,1,6,5.0,4,2.0 +7424,10407,626.6430001573256,34.0,112,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21202.7,0.0,18110.0,2,10,0.0,2,1.0 +7425,10409,1994.0843865544716,62.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59083.25,0.0,67260.0,1,9,7.0,3,2.0 +7426,10410,2836.7253847692305,28.0,300,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38827.15,0.0,46170.0,3,0,0.0,1,1.0 +7427,10411,1536.9940723301947,53.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,55987.0,0.0,72960.0,2,9,7.0,1,1.0 +7428,10413,2463.2043924116388,39.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46917.1,0.0,49950.0,2,10,4.0,4,2.0 +7429,10414,1741.627258468246,41.0,400,0.0,12,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,83900.65,0.0,24030.0,2,0,1.0,4,2.0 +7430,10415,4381.751399410142,75.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19950.0,0.0,0.0,19541.45,0.0,0.0,1,7,0.0,3,0.0 +7431,10417,2783.7030005708625,51.0,112,0.0,85,0.0,0.0,1.0,1.0,6920.0,0.0,0.0,0.0,0.0,0.0,17393.45,0.0,10920.0,1,7,0.0,1,0.0 +7432,10418,2502.676245731972,51.0,112,0.0,54,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,23912.1,0.0,26480.0,2,8,0.0,4,1.0 +7433,10423,3406.67356146426,37.0,111,0.0,54,1.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,15936.0,100.0,2850.0,3,6,5.0,1,1.0 +7434,10424,387.25892339212317,37.0,120,0.0,62,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,41725.55,0.0,44780.0,2,0,2.0,2,1.0 +7435,10425,903.6886567648847,54.0,112,0.0,46,1.0,0.0,2.0,1.5,0.0,9100.0,0.0,0.0,0.0,0.0,18272.0,0.0,3250.0,3,8,0.0,2,1.0 +7436,10427,1876.8796302008316,52.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,55605.65,0.0,57020.0,2,8,7.0,4,2.0 +7437,10428,3574.538610798524,21.0,111,2750.0,65,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20091.0,0.0,14680.0,3,8,7.0,1,1.0 +7438,10429,3263.8968846139433,29.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40742.9,0.0,44700.0,3,10,8.0,3,2.0 +7439,10430,5498.626478575132,26.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21060.75,0.0,22060.0,3,10,8.0,1,1.0 +7440,10434,4580.594649094572,39.0,111,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48062.95,0.0,49440.0,2,6,5.0,4,2.0 +7441,10435,3785.0982232904125,83.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15660.0,0.0,0.0,15660.0,0.0,0.0,3,9,7.0,1,0.0 +7442,10436,2418.6703453920923,44.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,60991.0,0.0,63460.0,1,9,3.0,4,2.0 +7443,10437,820.0963099361169,38.0,120,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36083.3,0.0,33800.0,3,0,0.0,4,2.0 +7444,10440,2875.277970716586,36.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,91249.95353277039,0.0,101420.0,1,10,8.0,4,2.0 +7445,10441,857.5656416193651,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48600.0,0.0,0.0,43928.9,0.0,0.0,1,4,3.0,3,0.0 +7446,10442,2173.5732121224637,50.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,200.0,0.0,52141.85,0.0,55900.0,1,6,5.0,4,2.0 +7447,10444,3946.3169804642885,42.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,894.0,0.0,107817.05,0.0,125050.0,5,10,8.0,4,2.0 +7448,10445,3083.4701484436778,38.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,46.0,0.0,81610.5,0.0,92870.0,2,10,8.0,4,2.0 +7449,10446,827.6531159010174,36.0,221,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23080.0,0.0,22300.0,3,1,2.0,2,1.0 +7450,10447,2055.4382145622976,32.0,112,220.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36905.25,0.0,37950.0,3,8,0.0,4,2.0 +7451,10451,1725.950962603352,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34650.0,0.0,0.0,32636.2,0.0,0.0,1,7,5.0,3,0.0 +7452,10453,3228.931822192878,51.0,111,0.0,55,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,28410.25,0.0,11170.0,3,10,8.0,4,2.0 +7453,10455,2617.468528473164,65.0,300,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,2340.9,0.0,60.0,1,0,0.0,1,1.0 +7454,10456,2459.1955831238033,41.0,111,0.0,33,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,63219.15,0.0,55240.0,1,9,7.0,4,2.0 +7455,10457,4575.506928763283,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7974.0,0.0,0.0,3,9,7.0,1,0.0 +7456,10458,2269.6942280391927,81.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10170.0,0.0,0.0,14276.886086090832,0.0,0.0,1,0,0.0,3,0.0 +7457,10461,3250.0410764641892,89.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19550.0,0.0,0.0,19449.0,0.0,0.0,3,10,8.0,3,0.0 +7458,10462,501.690983144713,44.0,112,3080.0,56,2.0,1.0,4.0,2.5,0.0,0.0,0.0,1410.0,0.0,0.0,19950.0,0.0,6810.0,2,8,1.0,2,2.0 +7459,10464,2313.2855300315073,77.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26480.0,0.0,0.0,27858.0,0.0,0.0,1,0,0.0,3,0.0 +7460,10465,2471.512331731618,51.0,111,680.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34776.55,0.0,34690.0,3,10,8.0,4,2.0 +7461,10468,2465.1391983928092,39.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,52130.3,0.0,55510.0,1,10,8.0,4,2.0 +7462,10469,2017.0311797344827,69.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22970.0,0.0,0.0,21152.2,0.0,0.0,1,0,0.0,1,0.0 +7463,10472,1269.979698203973,47.0,112,2730.0,67,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,28485.95,2440.0,18010.0,3,10,5.0,2,1.0 +7464,10475,1915.9470525365043,62.0,300,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51877.65,0.0,0.0,1,0,0.0,3,2.0 +7465,10476,1755.9497162224432,86.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16880.0,0.0,0.0,18445.8,0.0,0.0,1,0,0.0,3,0.0 +7466,10477,4743.302786257167,53.0,111,0.0,47,1.0,1.0,2.0,1.5,9720.0,0.0,0.0,0.0,0.0,0.0,23978.6,0.0,14490.0,3,10,8.0,2,1.0 +7467,10478,888.9368092694632,48.0,120,6410.0,85,2.0,1.0,5.0,3.0,0.0,0.0,0.0,7510.0,0.0,0.0,41773.65,0.0,11590.0,1,0,0.0,4,2.0 +7468,10479,1543.9148810516256,63.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14310.0,815.0,0.0,13790.9,0.0,0.0,1,4,4.0,1,0.0 +7469,10480,1458.1972760839813,48.0,111,14980.0,65,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28260.75,0.0,13740.0,3,6,5.0,3,2.0 +7470,10481,2443.619261645336,36.0,112,0.0,63,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,44836.9,0.0,32140.0,2,10,4.0,4,2.0 +7471,10482,1579.7243466889784,27.0,111,6220.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16529.25,0.0,8160.0,3,7,5.0,3,2.0 +7472,10483,2428.1054133716443,32.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41515.3,0.0,41110.0,2,7,0.0,4,2.0 +7473,10485,2918.280242238542,28.0,120,0.0,69,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,17610.85,0.0,14010.0,2,0,0.0,4,1.0 +7474,10486,4081.4912744483236,43.0,111,4870.0,85,0.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,20276.47221511856,0.0,2960.0,3,10,8.0,4,0.0 +7475,10487,3505.2450295517765,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18330.0,0.0,0.0,19580.0,0.0,0.0,3,9,7.0,3,0.0 +7476,10489,3907.812240192199,79.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53760.0,0.0,0.0,48961.55,0.0,0.0,1,8,0.0,5,0.0 +7477,10490,1684.3608403511794,60.0,111,5950.0,81,1.0,0.0,2.0,1.5,0.0,0.0,3250.0,11420.0,0.0,0.0,23424.0,0.0,0.0,3,8,7.0,5,1.0 +7478,10491,1811.335345156005,83.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11870.0,0.0,0.0,14270.0,0.0,0.0,5,8,7.0,1,0.0 +7479,10492,2413.042625135539,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,4420.0,10430.0,0.0,0.0,17587.0,0.0,0.0,3,5,4.0,3,0.0 +7480,10494,1791.778360413101,34.0,120,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,68346.15,0.0,30700.0,2,0,3.0,4,2.0 +7481,10495,7174.938424894469,46.0,112,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42843.6,0.0,42750.0,2,7,0.0,4,2.0 +7482,10496,2044.8371664399199,42.0,112,9480.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50188.35,0.0,46480.0,2,8,1.0,3,2.0 +7483,10498,2950.1384576649425,40.0,111,0.0,56,1.0,0.0,1.0,1.0,4050.0,4870.0,0.0,0.0,0.0,0.0,11800.0,0.0,0.0,3,8,7.0,1,1.0 +7484,10499,1444.5535424397276,56.0,400,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19187.45,0.0,25200.0,2,0,0.0,3,1.0 +7485,10500,1726.1072713651602,64.0,111,0.0,22,2.0,0.0,2.0,1.5,0.0,0.0,0.0,23970.0,6511.0,0.0,51207.05,0.0,0.0,1,8,6.0,3,2.0 +7486,10501,1689.708602104338,49.0,211,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59251.929670587044,0.0,52470.0,2,3,4.0,3,2.0 +7487,10505,3334.8471343477104,29.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33761.05,0.0,32990.0,3,9,7.0,3,2.0 +7488,10506,1943.8664269770898,29.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51575.35,0.0,45060.0,2,9,3.0,4,2.0 +7489,10508,1284.9109228153911,53.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58290.43747293927,0.0,64780.0,3,9,7.0,3,2.0 +7490,10509,2042.5433150441422,79.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28310.0,0.0,0.0,28321.6,0.0,0.0,1,9,1.0,3,0.0 +7491,10510,4898.817446664678,45.0,112,0.0,43,1.0,1.0,4.0,2.5,0.0,0.0,0.0,10910.0,0.0,0.0,54854.7,0.0,49720.0,1,10,4.0,5,1.0 +7492,10511,6931.040379461441,25.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15676.0,1530.0,12010.0,3,8,6.0,1,1.0 +7493,10512,1151.0978563435792,69.0,111,0.0,78,2.0,1.0,5.0,3.0,0.0,6310.0,0.0,29570.0,0.0,0.0,50607.5,4080.0,10360.0,1,8,6.0,5,2.0 +7494,10513,4087.614057512942,28.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37507.05,0.0,19710.0,3,10,8.0,4,2.0 +7495,10514,1766.500454210674,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28110.0,297.0,0.0,28650.35,0.0,0.0,1,7,5.0,3,0.0 +7496,10515,3420.971812942615,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33640.0,0.0,0.0,32168.5,0.0,0.0,1,10,8.0,1,0.0 +7497,10516,851.3055464664973,43.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,1669.0,0.0,70438.85,0.0,84590.0,2,10,8.0,2,1.0 +7498,10517,1986.6181216316838,68.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24190.0,0.0,0.0,31581.142344274638,0.0,0.0,1,0,1.0,3,0.0 +7499,10518,1883.1239503191255,31.0,112,21480.0,85,1.0,0.0,6.0,2.7,0.0,2050.0,0.0,0.0,0.0,0.0,41520.0,0.0,0.0,3,8,0.0,4,1.0 +7500,10519,1952.2910597523992,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17420.0,0.0,0.0,17273.55,0.0,0.0,1,6,5.0,1,0.0 +7501,10521,2706.820631115202,53.0,120,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29641.35,0.0,15880.0,1,0,0.0,3,2.0 +7502,10522,1878.612477411341,64.0,111,490.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56760.0,15.0,0.0,52032.1,0.0,0.0,1,9,7.0,3,0.0 +7503,10523,2001.357484009101,51.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,11020.0,0.0,0.0,90776.55,0.0,90000.0,2,9,7.0,4,2.0 +7504,10525,2871.495087208637,38.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,81222.95,0.0,79500.0,1,6,0.0,4,2.0 +7505,10526,3756.113191478534,70.0,111,0.0,74,2.0,1.0,4.0,2.5,0.0,6180.0,0.0,30460.0,2430.0,0.0,61868.2,3410.0,20830.0,1,10,8.0,4,2.0 +7506,10529,2028.3631310320495,85.0,300,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16520.0,0.0,0.0,16520.0,0.0,0.0,5,0,0.0,1,0.0 +7507,10531,2345.2308496474275,38.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,55734.3,0.0,62140.0,2,9,7.0,1,1.0 +7508,10532,2005.9764076841082,52.0,111,9280.0,35,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17775.25,0.0,11150.0,1,8,7.0,2,2.0 +7509,10533,345.8330492145361,51.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,34576.8,0.0,31230.0,1,7,5.0,2,1.0 +7510,10534,4439.355300284522,49.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21826.85,0.0,23880.0,3,10,8.0,1,1.0 +7511,10535,2544.50741835583,61.0,120,11270.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23470.0,0.0,0.0,33905.25,0.0,0.0,1,0,0.0,3,0.0 +7512,10536,1353.389300996806,38.0,111,0.0,31,2.0,1.0,4.0,2.5,0.0,18230.0,0.0,0.0,0.0,0.0,25320.0,0.0,0.0,3,9,7.0,5,2.0 +7513,10537,2387.6958535312165,33.0,211,2320.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38668.45,0.0,33310.0,2,1,2.0,4,2.0 +7514,10538,1881.001899919787,79.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35380.0,0.0,0.0,41392.25,0.0,0.0,1,8,2.0,3,0.0 +7515,10540,2609.7688070555505,39.0,111,6600.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20809.4,0.0,14160.0,3,9,7.0,4,2.0 +7516,10541,2958.031345042562,62.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10726.0,0.0,10490.0,5,9,7.0,1,1.0 +7517,10542,946.9162191951028,30.0,111,0.0,54,1.0,0.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,25953.35,0.0,21630.0,5,10,8.0,2,1.0 +7518,10543,4900.219983699868,20.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26203.55,1530.0,19690.0,3,9,7.0,1,1.0 +7519,10544,1512.7400253289268,48.0,111,0.0,46,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,49844.8,0.0,41960.0,2,6,4.0,4,2.0 +7520,10545,557.001298906416,38.0,111,5200.0,67,1.0,1.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,35894.0,1060.0,15540.0,3,9,7.0,4,1.0 +7521,10546,1953.3853974178903,56.0,400,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16850.0,0.0,0.0,34906.7,0.0,19060.0,2,0,0.0,3,1.0 +7522,10547,3698.577510649526,47.0,111,0.0,31,1.0,1.0,8.0,3.9,0.0,0.0,0.0,0.0,0.0,0.0,111725.8,0.0,116700.0,1,9,7.0,4,1.0 +7523,10549,920.127541835463,38.0,111,0.0,31,1.0,1.0,2.0,1.3,0.0,940.0,0.0,0.0,0.0,0.0,14379.05,0.0,4100.0,3,9,7.0,2,1.0 +7524,10550,3028.0310977429353,50.0,111,0.0,22,1.0,0.0,1.0,1.0,6570.0,0.0,0.0,0.0,0.0,0.0,20544.0,350.0,10080.0,3,9,7.0,1,1.0 +7525,10551,3596.825993077804,79.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19200.0,0.0,0.0,20596.0,0.0,0.0,3,0,0.0,1,0.0 +7526,10552,1069.8678044775322,38.0,221,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36899.95,0.0,37860.0,3,1,3.0,4,2.0 +7527,10553,1800.4797645613426,64.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12530.0,0.0,0.0,13913.5,0.0,0.0,1,0,0.0,1,0.0 +7528,10554,1681.9742384036872,61.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37460.0,0.0,0.0,30917.55,0.0,0.0,1,9,7.0,3,0.0 +7529,10555,3740.1398965963867,36.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,82371.2,0.0,94120.0,2,9,3.0,3,2.0 +7530,10557,1387.8849268680472,70.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28640.0,0.0,0.0,22571.53211966223,0.0,0.0,1,0,0.0,3,0.0 +7531,10559,2387.873725389017,71.0,221,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30620.0,0.0,0.0,41607.75,0.0,12590.0,5,1,1.0,3,1.0 +7532,10562,1807.6107544296099,71.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30850.0,0.0,0.0,29735.15,0.0,0.0,2,7,0.0,3,0.0 +7533,10563,2102.2863900113316,60.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,567.0,0.0,21891.8,0.0,10130.0,1,7,0.0,1,1.0 +7534,10564,1856.5839702155379,31.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45459.75,0.0,45310.0,2,8,6.0,4,2.0 +7535,10566,4532.503702065465,37.0,111,0.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11252.15,0.0,11610.0,2,8,6.0,1,1.0 +7536,10567,1720.967988975323,27.0,111,0.0,55,1.0,0.0,3.0,1.6,0.0,6040.0,0.0,0.0,0.0,0.0,14348.0,0.0,0.0,3,8,7.0,2,1.0 +7537,10569,2102.4832455058986,54.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,158.0,0.0,45088.9,0.0,44940.0,2,9,7.0,1,1.0 +7538,10571,3013.4124545202803,67.0,111,3670.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26880.0,0.0,0.0,29139.1,0.0,0.0,3,10,8.0,1,0.0 +7539,10572,3129.2520090200264,35.0,111,470.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36953.1,0.0,34190.0,2,9,7.0,4,2.0 +7540,10574,2100.1350749364387,60.0,111,0.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,13640.0,0.0,0.0,13660.462705034606,0.0,1910.0,1,6,4.0,1,1.0 +7541,10576,2334.620831190272,25.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,3120.0,0.0,0.0,0.0,0.0,16721.7,2820.0,9130.0,3,10,8.0,2,1.0 +7542,10577,3580.815825893806,44.0,120,1490.0,56,1.0,0.0,6.0,2.9,3140.0,0.0,0.0,11270.0,0.0,0.0,22195.0,0.0,0.0,1,0,0.0,5,1.0 +7543,10578,4314.451980905668,23.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18596.05,0.0,8920.0,3,9,7.0,1,1.0 +7544,10580,3190.8870683927476,26.0,120,2200.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33926.65,0.0,25190.0,3,0,0.0,4,1.0 +7545,10582,3776.5416841130163,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24320.0,57.0,0.0,24927.1,0.0,0.0,3,9,7.0,1,0.0 +7546,10583,2194.7268730679025,33.0,111,0.0,62,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,35269.55,0.0,35590.0,3,4,4.0,4,3.0 +7547,10586,1725.015669167612,59.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15450.0,69.0,0.0,50567.8,0.0,39650.0,3,8,7.0,3,1.0 +7548,10588,2012.1917950977652,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49350.0,0.0,0.0,85659.6,0.0,49960.0,1,10,8.0,3,0.0 +7549,10590,3558.1798679902636,77.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11640.0,0.0,0.0,11640.0,0.0,0.0,5,0,0.0,1,0.0 +7550,10591,859.5121535330993,30.0,211,3850.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47697.2,4890.0,32740.0,3,1,3.0,4,2.0 +7551,10592,4021.6409113097016,28.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28706.5,0.0,27870.0,2,6,0.0,3,2.0 +7552,10593,1465.7934602669973,63.0,400,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16542.9,0.0,13870.0,1,0,0.0,1,1.0 +7553,10594,1814.612236008768,55.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,175.0,0.0,26735.8,0.0,29170.0,2,7,5.0,1,1.0 +7554,10595,1598.6858313482287,45.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,22837.55,4070.0,16870.0,3,6,5.0,4,1.0 +7555,10597,3536.7253992044007,28.0,300,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43753.8,0.0,41230.0,2,0,0.0,4,2.0 +7556,10598,1834.3744568129923,48.0,111,5260.0,63,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50976.1,0.0,47990.0,2,9,7.0,4,4.0 +7557,10599,3227.783557465468,35.0,111,0.0,63,1.0,0.0,5.0,2.4,0.0,7520.0,0.0,0.0,0.0,0.0,17710.55,0.0,0.0,3,9,7.0,4,1.0 +7558,10602,1898.3364242359935,57.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48832.05,0.0,51990.0,3,8,6.0,4,2.0 +7559,10603,3046.1758109462694,53.0,211,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18916.65,0.0,19150.0,3,2,3.0,1,1.0 +7560,10604,3931.8517374447756,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19380.0,0.0,0.0,16713.05,0.0,0.0,1,10,8.0,1,0.0 +7561,10608,2363.7562151898933,83.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,45590.0,0.0,0.0,58757.576766385195,0.0,15200.0,1,9,7.0,4,1.0 +7562,10609,740.9900149750391,56.0,111,0.0,38,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,250.0,0.0,90089.89021996777,0.0,89770.0,3,8,6.0,4,3.0 +7563,10610,2909.177417181647,63.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56088.2209016782,0.0,62700.0,1,10,8.0,3,2.0 +7564,10612,1738.543683713299,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,83690.0,0.0,0.0,71154.65979630075,0.0,0.0,1,7,6.0,3,0.0 +7565,10614,851.8712387341592,37.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,27480.65,1450.0,21220.0,2,8,6.0,2,1.0 +7566,10615,1298.6153061669336,27.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34328.0,690.0,33610.0,3,7,5.0,4,2.0 +7567,10616,1569.2107359887789,28.0,112,2370.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37851.95,0.0,32120.0,3,8,3.0,4,2.0 +7568,10618,1746.4858673536544,50.0,111,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45066.35,0.0,45350.0,2,9,7.0,4,2.0 +7569,10619,1566.3392190751683,49.0,111,0.0,38,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,86378.05,0.0,93730.0,1,10,8.0,4,2.0 +7570,10621,2040.8054153519981,74.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31030.0,0.0,0.0,31745.85,0.0,0.0,1,6,4.0,3,0.0 +7571,10622,1931.8374397469104,81.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12560.0,0.0,0.0,12651.0,0.0,0.0,1,0,1.0,1,0.0 +7572,10623,1685.6702078424669,77.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31550.0,4.0,0.0,26260.45,0.0,0.0,1,0,0.0,3,0.0 +7573,10624,2856.771358195047,52.0,212,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,620.0,17490.0,0.0,0.0,65377.7,0.0,53090.0,1,4,0.0,5,2.0 +7574,10626,3357.365420985412,30.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39045.55,0.0,41730.0,2,4,4.0,3,2.0 +7575,10627,1840.9239290625594,49.0,112,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,51490.95,0.0,50010.0,1,7,1.0,4,2.0 +7576,10628,706.0240289373702,30.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25490.95,2430.0,16550.0,3,8,7.0,2,1.0 +7577,10632,2539.242985817647,71.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,39720.0,0.0,0.0,34560.051905755194,0.0,0.0,1,10,2.0,1,0.0 +7578,10633,3996.5783419694176,24.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2314.05,0.0,0.0,3,7,5.0,1,1.0 +7579,10634,2437.235200033867,28.0,120,9880.0,21,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,52183.0,0.0,0.0,2,0,1.0,4,2.0 +7580,10635,2170.5518353300636,66.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18750.0,0.0,0.0,18638.2,0.0,0.0,1,0,0.0,1,0.0 +7581,10636,6500.163121790226,21.0,112,0.0,55,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16829.0,1300.0,15480.0,3,10,4.0,5,2.0 +7582,10638,1709.663985831048,53.0,120,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56020.15961314754,0.0,50490.0,5,0,3.0,3,2.0 +7583,10639,6455.340540148655,30.0,111,0.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,3,8,6.0,1,1.0 +7584,10640,3262.4387122488106,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9344.0,0.0,3620.0,3,9,7.0,1,0.0 +7585,10641,2464.789287693827,25.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33617.0,0.0,33630.0,3,8,0.0,3,2.0 +7586,10642,2711.865921140516,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36750.0,0.0,0.0,41723.8,0.0,7030.0,1,4,3.0,3,0.0 +7587,10643,1648.6276882239003,53.0,111,13680.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47571.25,0.0,35680.0,2,9,7.0,4,2.0 +7588,10645,1926.2155975094354,65.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19310.0,0.0,0.0,29926.05,0.0,11790.0,3,9,7.0,3,1.0 +7589,10646,5088.358085935655,41.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19327.8,0.0,21190.0,1,9,7.0,1,1.0 +7590,10647,1707.152735598044,47.0,112,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,28992.0,50952.6,0.0,25170.0,3,9,3.0,3,2.0 +7591,10648,1767.0421990291995,45.0,111,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,3.0,0.0,64590.0,0.0,66690.0,2,9,7.0,4,2.0 +7592,10649,3745.5932929939413,29.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23771.8,0.0,25850.0,3,8,7.0,1,1.0 +7593,10650,2475.894722642696,37.0,112,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39236.6,0.0,40340.0,2,9,0.0,4,2.0 +7594,10651,1500.9703342785988,42.0,111,0.0,38,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,496.0,0.0,36566.25,0.0,38240.0,2,7,5.0,4,1.0 +7595,10652,1614.0605514203198,50.0,111,0.0,53,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,42233.2,0.0,33010.0,1,6,5.0,4,2.0 +7596,10653,2080.8931495723464,68.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61990.0,41.0,0.0,54447.75,0.0,0.0,2,8,6.0,3,0.0 +7597,10654,2558.29831448276,31.0,111,530.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32653.8,830.0,25060.0,3,9,7.0,4,2.0 +7598,10656,3319.0755760582133,63.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31580.0,0.0,0.0,30625.0,0.0,0.0,1,8,1.0,3,0.0 +7599,10657,3526.676483838534,84.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14880.0,0.0,0.0,22875.55,0.0,0.0,1,6,4.0,3,0.0 +7600,10660,2611.9398440437876,75.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24410.0,0.0,0.0,23775.25,0.0,0.0,1,1,3.0,3,0.0 +7601,10661,3520.4146902050265,44.0,112,0.0,54,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,24351.55,0.0,18690.0,1,9,0.0,4,1.0 +7602,10662,1734.6377265497265,46.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,357.0,0.0,58991.95,0.0,62090.0,2,8,6.0,4,2.0 +7603,10663,3354.4352621601747,38.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52405.15,0.0,52580.0,2,9,1.0,4,2.0 +7604,10665,2636.6872398085707,61.0,111,0.0,72,0.0,0.0,2.0,1.5,5660.0,0.0,0.0,28130.0,0.0,0.0,33727.5,0.0,0.0,1,9,7.0,3,0.0 +7605,10666,2857.6651541232745,89.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15410.0,0.0,0.0,15353.45,0.0,0.0,1,7,0.0,1,0.0 +7606,10667,1433.9643837927792,55.0,300,4660.0,81,1.0,0.0,1.0,1.0,0.0,4400.0,0.0,0.0,0.0,0.0,12059.2,0.0,0.0,3,0,0.0,1,1.0 +7607,10668,4033.7242840797053,33.0,111,1860.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11629.8,0.0,9840.0,3,9,7.0,1,1.0 +7608,10669,4136.634806474414,35.0,111,0.0,48,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21532.9,0.0,23180.0,3,8,6.0,2,1.0 +7609,10670,2356.639169021742,60.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16740.0,0.0,0.0,31722.55,0.0,16060.0,2,9,7.0,3,1.0 +7610,10671,2883.0825517081503,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22920.0,0.0,0.0,21635.65,0.0,0.0,1,9,7.0,1,0.0 +7611,10672,2447.270964751875,49.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,1320.0,0.0,0.0,0.0,0.0,13092.0,2510.0,5950.0,3,8,6.0,1,1.0 +7612,10674,3181.300332912007,46.0,111,0.0,85,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,14052.0,0.0,0.0,3,4,4.0,1,0.0 +7613,10675,1885.1630352191169,57.0,111,0.0,23,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66193.45353277039,0.0,78090.0,2,9,7.0,3,2.0 +7614,10677,2007.1282728285476,64.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,12770.0,0.0,0.0,12770.0,0.0,0.0,5,5,4.0,1,1.0 +7615,10679,2393.4239532830384,44.0,300,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30873.9,0.0,19830.0,1,0,0.0,1,1.0 +7616,10681,2596.534321997755,81.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12710.0,0.0,0.0,12710.0,0.0,0.0,1,1,3.0,1,0.0 +7617,10682,1802.1891181390224,47.0,112,0.0,54,1.0,0.0,4.0,2.5,2430.0,5440.0,0.0,0.0,0.0,0.0,15374.3,1910.0,4990.0,1,9,1.0,2,1.0 +7618,10683,2955.015041765047,77.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25000.0,0.0,0.0,23062.25,0.0,0.0,5,0,0.0,3,0.0 +7619,10684,1861.3123855529025,48.0,112,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,1850.0,0.0,0.0,23774.35,540.0,22130.0,1,8,2.0,2,1.0 +7620,10685,2993.9913344516003,32.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19376.0,0.0,17200.0,3,9,7.0,1,1.0 +7621,10686,2414.1838129437806,32.0,111,8630.0,55,2.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34365.2,0.0,18010.0,2,7,5.0,4,2.0 +7622,10687,2114.398311435161,65.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15000.0,0.0,0.0,14946.65,0.0,0.0,5,1,1.0,1,0.0 +7623,10688,2053.812556584008,48.0,112,0.0,34,2.0,2.0,2.0,1.5,0.0,630.0,0.0,0.0,0.0,0.0,179997.375,0.0,37170.0,1,9,2.0,3,2.0 +7624,10689,3736.3377733377597,53.0,111,0.0,68,1.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,10605.0,0.0,0.0,3,6,4.0,1,1.0 +7625,10690,1311.3538452859605,39.0,111,0.0,56,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,13469.0,0.0,0.0,3,10,8.0,2,1.0 +7626,10691,2454.126153435705,53.0,112,0.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,72090.6,0.0,79360.0,1,9,1.0,4,3.0 +7627,10695,1433.3516969676173,44.0,111,80.0,64,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,55696.2,0.0,48570.0,2,8,7.0,4,2.0 +7628,10699,2369.4024625102297,25.0,111,15000.0,43,3,2.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,54915.0,0.0,42710.0,2,10,8.0,5,4.0 +7629,10701,1756.765555297577,59.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21880.0,0.0,0.0,39634.7,0.0,21460.0,1,8,7.0,3,1.0 +7630,10702,2627.878915296126,90.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41160.0,455.0,0.0,42489.2,0.0,0.0,3,8,7.0,1,0.0 +7631,10703,554.3789707023258,49.0,300,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23892.35,2270.0,20480.0,3,0,2.0,2,1.0 +7632,10704,3345.027616909617,32.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23139.65,0.0,25860.0,2,9,7.0,1,1.0 +7633,10705,1405.4520062227582,72.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32620.0,0.0,0.0,31161.0,0.0,0.0,1,0,0.0,3,0.0 +7634,10706,1051.3840189378789,27.0,111,0.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,5319.5,0.0,0.0,3,9,7.0,2,1.0 +7635,10707,6072.350858211181,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24360.0,0.0,0.0,22705.75,0.0,0.0,3,10,8.0,1,0.0 +7636,10708,4934.6298935136,74.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34890.0,0.0,0.0,34320.75,0.0,0.0,3,9,7.0,5,0.0 +7637,10709,3812.8115486247484,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23140.0,0.0,0.0,22211.1,0.0,0.0,3,10,8.0,1,0.0 +7638,10710,793.3632207862638,44.0,111,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19768.45,0.0,20760.0,2,7,5.0,2,1.0 +7639,10711,2596.8215159016995,29.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22384.0,0.0,23540.0,2,9,7.0,1,1.0 +7640,10714,3608.367724060332,26.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16971.4,1140.0,14030.0,3,7,5.0,1,1.0 +7641,10717,652.9913679143556,39.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21658.9,720.0,0.0,3,9,7.0,2,1.0 +7642,10719,2510.3443218403218,56.0,400,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6713.3,0.0,7660.0,5,0,0.0,3,2.0 +7643,10720,2619.8979276002383,42.0,221,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27126.1,0.0,27680.0,2,1,2.0,3,1.0 +7644,10722,3691.362711336551,59.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8120.0,0.0,0.0,9970.0,0.0,0.0,3,8,7.0,1,0.0 +7645,10723,3370.907086673958,44.0,120,11700.0,64,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,39664.6,0.0,22380.0,3,0,0.0,5,3.0 +7646,10724,2074.039508879834,78.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20930.0,0.0,0.0,20877.2,0.0,0.0,1,6,5.0,3,0.0 +7647,10725,2373.963707061008,31.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43799.1,0.0,34160.0,3,7,0.0,4,2.0 +7648,10726,2313.616339225476,52.0,111,1260.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66916.1,0.0,67650.0,2,6,5.0,3,2.0 +7649,10728,1682.3682676390256,56.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51290.65,0.0,56630.0,1,9,7.0,3,2.0 +7650,10729,3326.1866152351326,46.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,41.0,0.0,65013.4,0.0,68750.0,2,8,6.0,4,2.0 +7651,10733,700.5331918174446,64.0,111,0.0,77,0.0,0.0,2.0,1.3,0.0,0.0,0.0,18040.0,0.0,0.0,27879.0,0.0,0.0,1,9,7.0,2,0.0 +7652,10734,4406.5180386411375,24.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27152.4,0.0,28360.0,3,9,7.0,3,2.0 +7653,10735,1485.796477224314,43.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22573.2,0.0,23810.0,2,6,5.0,1,1.0 +7654,10736,2214.2836783602124,87.0,300,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14090.0,0.0,0.0,14114.5,0.0,0.0,1,0,1.0,1,0.0 +7655,10739,1459.25345543522,42.0,111,0.0,46,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54022.7,0.0,61470.0,2,9,7.0,4,3.0 +7656,10740,2600.3752106928528,68.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7830.0,0.0,0.0,7602.3,0.0,0.0,2,0,0.0,1,0.0 +7657,10741,592.0325001384591,47.0,111,0.0,45,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27566.0,0.0,26290.0,3,6,5.0,2,1.0 +7658,10742,2279.924979162412,60.0,212,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11514.0,0.0,12090.0,1,2,0.0,3,2.0 +7659,10745,1469.3462582780946,57.0,111,0.0,56,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,340.0,12975.0,28205.05,0.0,1480.0,1,8,7.0,4,1.0 +7660,10747,1802.4494272951508,67.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50360.0,0.0,0.0,59476.2,0.0,0.0,1,0,0.0,3,0.0 +7661,10748,1962.6729503471217,48.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38317.75,0.0,42780.0,2,10,0.0,3,2.0 +7662,10749,863.57341636899,48.0,111,0.0,54,1.0,0.0,3.0,1.6,0.0,6070.0,0.0,0.0,0.0,0.0,16224.0,0.0,0.0,3,9,7.0,2,1.0 +7663,10751,2232.003735805185,78.0,112,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14420.0,0.0,0.0,11459.15,0.0,0.0,1,9,1.0,1,0.0 +7664,10754,2343.4653613540127,45.0,112,10680.0,48,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34306.4,0.0,23320.0,3,9,0.0,3,2.0 +7665,10755,2635.8992856362092,57.0,112,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15500.0,0.0,0.0,29206.8,0.0,17420.0,3,10,0.0,3,1.0 +7666,10756,1106.2879919478394,56.0,112,0.0,85,0.0,0.0,4.0,2.3,0.0,0.0,0.0,6270.0,0.0,0.0,10442.0,0.0,0.0,3,8,0.0,4,0.0 +7667,10757,2211.831137814675,73.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27240.0,0.0,0.0,24738.85,0.0,0.0,1,0,0.0,1,0.0 +7668,10758,596.6584222889016,25.0,211,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18769.0,0.0,19700.0,3,1,2.0,3,2.0 +7669,10760,2219.5291967497196,41.0,221,0.0,52,3,3.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,31960.95,0.0,20140.0,1,3,4.0,4,3.0 +7670,10761,1918.8267538589557,41.0,111,0.0,62,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,38671.1,0.0,28430.0,2,9,7.0,4,1.0 +7671,10762,2908.3224255907317,40.0,300,0.0,67,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,37.0,0.0,42775.2,0.0,40070.0,2,0,0.0,4,2.0 +7672,10765,3139.215473360514,56.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,8950.0,0.0,0.0,28264.35,0.0,31300.0,1,9,3.0,4,1.0 +7673,10767,1094.0315920040705,29.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,5690.0,0.0,0.0,0.0,0.0,25580.0,0.0,0.0,3,8,7.0,2,0.0 +7674,10768,2924.22337511208,36.0,211,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48095.35,0.0,50250.0,2,1,3.0,4,2.0 +7675,10769,2377.298717800243,35.0,111,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,311.0,0.0,49501.25,0.0,45900.0,2,9,7.0,4,2.0 +7676,10770,5308.199297776478,26.0,111,370.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16252.0,960.0,14910.0,3,7,6.0,1,1.0 +7677,10771,2242.4757159931023,53.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56979.99278467811,0.0,63820.0,1,9,7.0,3,2.0 +7678,10772,3560.3908776477792,33.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2.0,0.0,32589.75,0.0,33020.0,3,9,7.0,3,2.0 +7679,10773,1725.0230853298665,49.0,211,0.0,85,0.0,0.0,2.0,1.5,20700.0,0.0,0.0,0.0,0.0,0.0,20700.0,0.0,0.0,3,2,3.0,3,0.0 +7680,10776,1449.2297360039531,66.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37530.0,426.0,0.0,40799.1,0.0,0.0,1,8,6.0,3,0.0 +7681,10778,1765.2839774170711,59.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,3710.0,0.0,0.0,22254.25,0.0,3490.0,3,5,0.0,1,1.0 +7682,10779,3425.443946135137,85.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30680.0,0.0,0.0,33424.2,0.0,0.0,1,9,7.0,3,0.0 +7683,10780,855.9898649382349,49.0,111,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22464.35,0.0,22330.0,3,9,7.0,2,1.0 +7684,10781,678.6591514876108,48.0,111,0.0,31,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47471.35,0.0,0.0,2,5,4.0,2,1.0 +7685,10782,3346.4291358756745,61.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,493.0,0.0,35716.1,0.0,40540.0,3,9,7.0,1,1.0 +7686,10783,1470.2337003208904,58.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14810.0,0.0,0.0,20462.65,0.0,6060.0,3,4,4.0,3,1.0 +7687,10784,2010.5182312947852,65.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,31210.0,0.0,0.0,69750.35,0.0,23260.0,1,8,0.0,3,2.0 +7688,10785,2933.4342815879163,31.0,112,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36259.05,0.0,26090.0,5,8,0.0,4,2.0 +7689,10787,2365.42237344427,66.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43920.0,0.0,0.0,40277.95,0.0,0.0,1,0,0.0,3,0.0 +7690,10788,1812.804035304123,41.0,112,870.0,43,1.0,0.0,3.0,1.6,0.0,5040.0,0.0,0.0,0.0,0.0,9384.4,260.0,1300.0,3,10,2.0,2,1.0 +7691,10789,2307.3608679917875,55.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,71586.55,0.0,83130.0,1,9,7.0,3,2.0 +7692,10790,2269.4128156471115,59.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22660.0,222.0,0.0,22192.45,0.0,0.0,2,8,7.0,3,1.0 +7693,10791,2507.5307875688345,39.0,111,0.0,22,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,69114.6709016782,0.0,50660.0,2,7,5.0,4,2.0 +7694,10792,2789.6406005921267,34.0,112,0.0,31,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,119.0,0.0,160038.35,0.0,0.0,3,8,0.0,4,1.0 +7695,10793,705.537109428312,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,70400.0,2339.0,0.0,89346.85,0.0,0.0,1,10,0.0,3,0.0 +7696,10794,2112.6212017535163,42.0,112,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51950.0,0.0,50540.0,2,7,0.0,4,2.0 +7697,10795,2418.72780620321,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,907.0,0.0,48061.45,0.0,56570.0,1,8,6.0,1,0.0 +7698,10796,2277.8840802001955,43.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,88130.65,0.0,0.0,2,8,7.0,4,2.0 +7699,10798,1863.9694739531394,58.0,111,0.0,85,0.0,0.0,2.0,1.5,9860.0,0.0,0.0,0.0,0.0,0.0,9340.0,0.0,0.0,1,9,7.0,5,0.0 +7700,10799,1505.4345249792018,51.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38067.7,0.0,39780.0,3,6,5.0,3,2.0 +7701,10800,2827.2888369678594,39.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,65836.75,0.0,72210.0,2,10,8.0,3,2.0 +7702,10802,1387.7873451712476,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29930.0,0.0,0.0,28973.85,0.0,0.0,1,7,6.0,3,0.0 +7703,10803,646.6659505697883,30.0,211,0.0,56,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27535.0,0.0,16850.0,3,1,2.0,4,1.0 +7704,10804,4791.803167515332,78.0,111,1810.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16230.0,0.0,0.0,19030.0,0.0,990.0,3,10,8.0,3,0.0 +7705,10805,3271.2078955968077,49.0,300,4820.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13670.4,0.0,9560.0,5,0,0.0,1,1.0 +7706,10806,2208.9701244492394,55.0,300,390.0,21,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58872.3,0.0,35390.0,1,0,0.0,4,3.0 +7707,10807,548.2247923674795,34.0,112,2970.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21106.65,780.0,12460.0,3,9,1.0,2,1.0 +7708,10808,2540.0520995989705,52.0,120,0.0,67,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43317.35,0.0,43970.0,2,0,0.0,4,2.0 +7709,10809,1850.6637464146872,46.0,400,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43190.15,0.0,44700.0,2,0,0.0,4,2.0 +7710,10810,2015.4850993122254,48.0,120,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,2648.0,0.0,129420.75,0.0,135780.0,1,0,3.0,4,2.0 +7711,10811,2214.1432245817045,37.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,65918.0,0.0,70280.0,3,9,7.0,4,2.0 +7712,10813,2578.7473779911775,63.0,111,3170.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,19310.0,0.0,0.0,23866.0,0.0,2730.0,1,8,7.0,2,1.0 +7713,10814,2575.9308887809293,38.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,66240.0,0.0,62890.0,2,5,0.0,4,2.0 +7714,10816,2655.040789992086,45.0,111,19960.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,125492.65,0.0,116550.0,1,10,8.0,4,2.0 +7715,10817,4137.612656420772,31.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17118.3,0.0,17460.0,3,5,4.0,1,1.0 +7716,10818,777.0258420452983,33.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25249.85,1560.0,21680.0,3,6,5.0,2,1.0 +7717,10819,983.0378166297932,35.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19220.9,0.0,15800.0,3,9,7.0,2,1.0 +7718,10820,2215.1953823812023,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58460.0,0.0,0.0,56974.45,0.0,0.0,1,9,7.0,3,0.0 +7719,10821,2567.93737175279,80.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27700.0,0.0,0.0,27435.6,0.0,0.0,1,10,0.0,3,0.0 +7720,10824,2463.501608936665,77.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18200.0,0.0,0.0,18289.05,0.0,0.0,1,1,2.0,1,0.0 +7721,10826,3096.3018025024767,82.0,111,0.0,86,0.0,0.0,3.0,2.0,0.0,0.0,2740.0,43730.0,0.0,0.0,44910.0,0.0,0.0,3,10,8.0,5,0.0 +7722,10828,2468.112664876009,58.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16940.0,0.0,0.0,26622.0,0.0,10910.0,1,8,0.0,3,1.0 +7723,10829,2999.994111788371,75.0,400,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12090.0,0.0,0.0,33971.55,0.0,23110.0,5,0,0.0,2,1.0 +7724,10830,3683.192667968707,37.0,111,0.0,68,3,2.0,4.0,2.3,0.0,3440.0,0.0,8560.0,0.0,0.0,36718.65,3590.0,16680.0,3,8,7.0,5,3.0 +7725,10832,2145.168468000718,56.0,111,8730.0,47,3,2.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,71463.1,0.0,59060.0,1,9,7.0,4,3.0 +7726,10836,1942.7778167750207,37.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45820.35,0.0,43280.0,2,9,7.0,4,2.0 +7727,10839,3554.029197594626,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22240.0,0.0,0.0,25506.95,0.0,0.0,2,10,8.0,1,0.0 +7728,10840,2209.3247530674307,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31100.0,0.0,0.0,28364.45,0.0,0.0,2,7,5.0,1,0.0 +7729,10843,2735.8249358180005,61.0,111,0.0,48,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56707.65,280.0,59760.0,1,10,8.0,4,3.0 +7730,10844,3292.560075617551,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21710.0,0.0,0.0,19964.6,0.0,0.0,1,9,7.0,1,0.0 +7731,10845,1320.8788114745453,52.0,111,3680.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43284.45,0.0,36010.0,1,7,5.0,3,2.0 +7732,10848,870.3315435826366,43.0,111,0.0,64,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20449.95,0.0,19570.0,3,9,7.0,2,1.0 +7733,10849,1861.5224751724975,31.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42085.65,0.0,42480.0,2,4,4.0,4,2.0 +7734,10850,2070.5061187290485,56.0,111,0.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38218.35,0.0,39280.0,3,8,6.0,2,3.0 +7735,10851,2916.541328580203,39.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48300.35,0.0,48410.0,2,4,3.0,4,2.0 +7736,10852,2477.7879597610286,43.0,300,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35768.15,0.0,35470.0,1,0,2.0,1,1.0 +7737,10853,1177.6466422047124,42.0,111,380.0,52,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30411.05,790.0,19670.0,3,9,7.0,4,2.0 +7738,10855,2231.042210398731,30.0,111,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,44007.4,0.0,32790.0,2,9,7.0,4,2.0 +7739,10857,1627.9946458564593,53.0,111,2200.0,62,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,58845.95,0.0,61940.0,2,9,7.0,4,3.0 +7740,10858,3230.4939836121334,51.0,111,0.0,35,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,363.0,0.0,82137.3,0.0,95260.0,1,10,8.0,4,2.0 +7741,10860,3450.1666868464417,52.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27902.55,0.0,28890.0,1,8,6.0,1,1.0 +7742,10862,2608.307858264719,31.0,211,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44669.75,0.0,39360.0,2,4,4.0,4,2.0 +7743,10863,2248.010144929688,41.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,79900.25,0.0,92720.0,2,10,8.0,4,2.0 +7744,10864,2084.407322500619,39.0,111,530.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24601.25,1230.0,21440.0,2,4,4.0,4,2.0 +7745,10865,2513.2182029181236,47.0,112,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30140.1,0.0,30620.0,2,6,0.0,4,2.0 +7746,10867,2271.218177665208,42.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29778.4,0.0,32360.0,2,9,7.0,2,1.0 +7747,10868,2522.3914251445267,53.0,221,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20527.010706554076,870.0,20900.0,1,1,1.0,3,1.0 +7748,10869,2158.9692143996676,74.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17000.0,0.0,0.0,18864.85,0.0,0.0,3,0,0.0,1,0.0 +7749,10871,1962.520673864295,66.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,33460.0,0.0,0.0,99855.6,0.0,0.0,1,9,7.0,3,1.0 +7750,10872,2102.2895391936645,77.0,221,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25850.0,0.0,0.0,26063.4,0.0,0.0,1,1,2.0,3,0.0 +7751,10873,2391.7654294913805,88.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25310.0,0.0,0.0,29822.6,0.0,0.0,5,9,7.0,1,0.0 +7752,10874,1731.382441976091,65.0,111,0.0,31,2.0,1.0,2.0,1.5,0.0,0.0,0.0,34720.0,0.0,0.0,55137.5,0.0,17340.0,2,8,7.0,3,2.0 +7753,10875,2602.430392819102,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22810.0,0.0,0.0,22246.5,0.0,0.0,1,9,7.0,1,0.0 +7754,10877,2387.7898799498907,29.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44854.3,0.0,43980.0,2,7,0.0,4,2.0 +7755,10879,1899.9204523614928,60.0,400,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13603.05,460.0,13210.0,3,0,0.0,1,1.0 +7756,10880,2021.2697695130378,48.0,112,6960.0,65,2.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,38723.2,0.0,21960.0,1,9,0.0,4,2.0 +7757,10881,3823.8708048959725,68.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15960.0,0.0,0.0,15960.0,0.0,0.0,3,8,6.0,1,0.0 +7758,10882,3725.702126819642,47.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20960.0,37.0,0.0,48588.1,0.0,33000.0,2,10,8.0,3,1.0 +7759,10883,3639.2983118075767,95.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20440.0,0.0,0.0,20440.0,0.0,0.0,3,9,7.0,1,0.0 +7760,10884,2817.292751629676,31.0,111,0.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36845.25,0.0,28360.0,3,10,8.0,4,2.0 +7761,10885,3931.428104728113,41.0,400,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13307.2,3330.0,0.0,1,0,0.0,1,1.0 +7762,10886,2027.0142827626287,30.0,212,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29927.0,0.0,16540.0,1,3,0.0,4,2.0 +7763,10887,3074.0625549099336,42.0,111,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,81482.5,0.0,82000.0,2,10,8.0,4,2.0 +7764,10889,2606.0594484397448,80.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32300.0,0.0,0.0,32042.8,0.0,0.0,1,8,1.0,1,0.0 +7765,10890,1422.249245551726,61.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,17910.0,0.0,0.0,42225.1,0.0,28370.0,1,10,0.0,3,2.0 +7766,10891,3505.6321122631834,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23910.0,0.0,0.0,23992.0,0.0,0.0,5,10,8.0,1,0.0 +7767,10892,1244.539732828106,44.0,112,18910.0,54,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46458.7,0.0,28240.0,2,9,3.0,4,2.0 +7768,10893,1718.154768529673,87.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13420.0,0.0,0.0,13445.0,0.0,0.0,1,8,7.0,1,0.0 +7769,10894,4096.481966888372,63.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9840.0,0.0,0.0,9777.0,0.0,0.0,1,0,0.0,1,0.0 +7770,10895,1646.4133475870967,59.0,112,0.0,54,2.0,2.0,4.0,2.5,0.0,0.0,0.0,15750.0,0.0,0.0,33938.35,0.0,18980.0,1,8,0.0,4,2.0 +7771,10896,994.480718101314,49.0,111,0.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,40899.05,0.0,42540.0,3,10,8.0,2,1.0 +7772,10897,1741.5314431160775,61.0,400,12830.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12830.0,0.0,0.0,5,0,1.0,1,0.0 +7773,10902,1525.8516360412693,52.0,120,0.0,85,1.0,0.0,2.0,1.5,0.0,8600.0,0.0,0.0,0.0,0.0,11707.0,0.0,0.0,3,0,1.0,2,1.0 +7774,10903,1806.6133146542927,64.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56440.0,0.0,0.0,52888.75,0.0,0.0,1,0,0.0,3,0.0 +7775,10905,2379.1924278586516,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18960.0,0.0,0.0,33854.3,0.0,0.0,1,10,8.0,3,0.0 +7776,10907,1176.5534182086192,75.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25370.0,0.0,0.0,24277.85,0.0,0.0,1,7,5.0,3,0.0 +7777,10910,2740.5470474467215,51.0,111,7570.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,13850.0,0.0,0.0,43400.9,0.0,22440.0,3,6,5.0,4,2.0 +7778,10912,4026.6026226125405,23.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24873.8,0.0,20190.0,3,6,4.0,1,1.0 +7779,10913,1948.2701926919888,65.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,40.0,5030.0,0.0,0.0,12829.0,1500.0,0.0,3,7,5.0,1,1.0 +7780,10914,1953.2841200368703,69.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,9250.0,350.0,0.0,0.0,9466.75,0.0,0.0,1,4,0.0,1,0.0 +7781,10915,2289.9679573962662,44.0,112,0.0,31,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,175642.55,0.0,270.0,2,10,4.0,4,2.0 +7782,10917,3653.5627206391264,45.0,111,0.0,12,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50192.3,0.0,23680.0,2,9,7.0,4,2.0 +7783,10919,3322.85406639068,23.0,111,5510.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13753.2,0.0,8390.0,3,7,5.0,1,1.0 +7784,10921,1726.5492395648612,53.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34319.31772541955,0.0,36170.0,1,8,0.0,3,2.0 +7785,10923,5893.846360020543,27.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12570.0,2510.0,0.0,3,10,8.0,1,1.0 +7786,10924,2817.272747585113,83.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34850.0,0.0,0.0,35874.35,0.0,0.0,1,10,8.0,1,0.0 +7787,10925,1632.0584003790977,83.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46150.0,0.0,0.0,42585.45,0.0,0.0,3,0,1.0,3,0.0 +7788,10927,274.6852019970618,31.0,112,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25441.85,2480.0,17000.0,3,9,0.0,2,1.0 +7789,10928,2666.672969500426,62.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16860.0,0.0,0.0,16405.65,0.0,0.0,1,0,0.0,1,0.0 +7790,10929,4538.060065420414,34.0,111,0.0,37,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19809.55,0.0,21330.0,2,10,8.0,2,1.0 +7791,10930,2650.3545078295547,40.0,111,0.0,37,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,76742.05,0.0,90530.0,2,10,8.0,4,3.0 +7792,10931,2326.4174200665775,60.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,7350.0,0.0,0.0,39637.15,0.0,30410.0,2,7,0.0,3,2.0 +7793,10932,3768.3382018851703,27.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,16.0,0.0,22573.85,0.0,23880.0,3,8,6.0,1,1.0 +7794,10934,1169.4159091501015,42.0,111,5950.0,85,0.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,20605.3,0.0,0.0,3,7,6.0,2,0.0 +7795,10935,1477.1729540465542,50.0,111,0.0,38,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51808.25,0.0,59490.0,3,8,6.0,2,1.0 +7796,10936,2240.1453471764257,63.0,112,0.0,74,0.0,1.0,3.0,2.0,0.0,0.0,0.0,54080.0,0.0,0.0,71661.7138442395,300.0,22950.0,1,8,2.0,4,0.0 +7797,10937,513.9497401092398,53.0,300,1370.0,67,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27687.1,310.0,19240.0,3,0,0.0,2,2.0 +7798,10938,2031.7286319532163,60.0,400,0.0,55,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,10722.0,0.0,10910.0,1,0,0.0,4,3.0 +7799,10941,2541.7175957442423,48.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26727.0,0.0,29350.0,3,5,4.0,1,1.0 +7800,10942,2063.6904068477015,70.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26500.0,0.0,0.0,26721.95,0.0,0.0,1,8,0.0,3,0.0 +7801,10944,3792.177422213736,41.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28375.25,0.0,31880.0,3,9,7.0,1,1.0 +7802,10945,5349.062883335197,24.0,111,8710.0,38,3,2.0,4.0,2.5,0.0,1420.0,0.0,11120.0,0.0,0.0,73221.8,0.0,54350.0,3,9,7.0,5,3.0 +7803,10946,1536.8532037561745,60.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,680.0,0.0,0.0,80696.75,0.0,96690.0,1,8,7.0,4,2.0 +7804,10947,2490.721614279554,37.0,112,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,14.0,0.0,74260.5,0.0,77810.0,2,10,0.0,4,2.0 +7805,10948,2319.0576408946217,44.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41673.55,0.0,46440.0,2,9,7.0,4,2.0 +7806,10949,1868.662496328181,59.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21520.0,0.0,0.0,27083.3,0.0,6090.0,1,8,7.0,3,1.0 +7807,10950,3014.137527895068,50.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12160.85,0.0,13960.0,1,10,8.0,1,1.0 +7808,10952,766.802848731281,49.0,112,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,178.0,0.0,46906.208886047425,0.0,47660.0,1,9,0.0,4,2.0 +7809,10953,2867.8307116929304,46.0,112,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24684.65,0.0,22670.0,3,7,0.0,4,2.0 +7810,10955,2077.8595818094304,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19320.0,0.0,0.0,18339.25,0.0,0.0,1,9,7.0,1,0.0 +7811,10956,1935.3232097458556,49.0,300,0.0,62,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,61184.75,0.0,66170.0,2,0,0.0,4,3.0 +7812,10957,1917.1424458158683,78.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32070.0,0.0,0.0,29925.497164814493,0.0,0.0,1,6,0.0,3,0.0 +7813,10959,748.491911428058,32.0,111,0.0,56,1.0,0.0,5.0,2.2,0.0,5840.0,0.0,0.0,0.0,0.0,25290.0,0.0,0.0,3,8,7.0,2,1.0 +7814,10961,2676.684656882141,50.0,111,0.0,64,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26185.0,0.0,18800.0,3,10,8.0,4,2.0 +7815,10962,5577.2927908022875,43.0,111,5310.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38265.05,0.0,36710.0,3,10,8.0,1,1.0 +7816,10963,3091.3958124818946,57.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38042.15,0.0,45500.0,1,7,5.0,1,1.0 +7817,10964,4274.570526399001,28.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57530.25,0.0,60210.0,2,9,7.0,3,2.0 +7818,10965,1672.0192302357332,34.0,112,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,2436.0,0.0,4755.75,0.0,150.0,1,8,0.0,3,1.0 +7819,10967,4387.978155703259,62.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27510.0,0.0,0.0,26560.95,0.0,0.0,3,9,7.0,1,0.0 +7820,10968,1687.6972265305867,33.0,112,3970.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41393.45,0.0,36570.0,2,8,1.0,4,2.0 +7821,10969,1340.8067272114076,65.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46330.0,0.0,0.0,37991.83089923913,0.0,0.0,1,9,2.0,3,0.0 +7822,10970,1448.3112841058698,54.0,400,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,8504.0,0.0,0.0,1,0,0.0,3,2.0 +7823,10971,1526.611587494897,52.0,111,2070.0,45,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,64810.85,1150.0,67120.0,2,5,4.0,4,3.0 +7824,10974,1489.397098877469,53.0,400,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23382.65,0.0,28920.0,1,0,0.0,3,2.0 +7825,10975,1526.43030918048,72.0,111,0.0,77,0.0,0.0,2.0,1.5,1900.0,0.0,0.0,23570.0,0.0,0.0,25543.0,0.0,0.0,2,8,6.0,3,0.0 +7826,10979,2249.069204301853,55.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,4700.0,0.0,0.0,20229.0,0.0,16260.0,3,7,5.0,1,1.0 +7827,10980,1495.5616289374877,61.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34180.0,0.0,0.0,33638.15,0.0,0.0,3,10,5.0,3,0.0 +7828,10982,6564.7411870495425,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11000.0,0.0,0.0,13046.0,0.0,0.0,3,8,7.0,1,0.0 +7829,10984,2977.416382561204,38.0,111,20550.0,63,2.0,0.0,4.0,2.3,6260.0,990.0,0.0,1660.0,0.0,0.0,34950.0,0.0,1120.0,3,7,5.0,4,2.0 +7830,10985,1950.2991743561076,54.0,300,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41098.45,0.0,42570.0,1,0,0.0,3,2.0 +7831,10990,2727.5345462969212,85.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,42160.0,1073.0,0.0,34387.05,0.0,0.0,1,10,8.0,1,0.0 +7832,10991,1154.940596590933,54.0,300,1500.0,37,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51670.6,0.0,48850.0,3,0,1.0,4,2.0 +7833,10993,2462.7540625983925,85.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16590.0,0.0,0.0,17180.0,0.0,0.0,3,8,6.0,1,0.0 +7834,10994,3296.198884668801,78.0,211,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18080.0,0.0,0.0,19495.05,0.0,0.0,1,1,3.0,3,0.0 +7835,10995,2229.541166822813,42.0,120,12700.0,54,2.0,1.0,7.0,3.4,0.0,0.0,0.0,0.0,0.0,0.0,43613.9,0.0,21780.0,2,0,0.0,4,2.0 +7836,10996,2140.03837508703,34.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55582.25,0.0,49520.0,2,8,0.0,4,2.0 +7837,10997,2084.4058061282158,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33720.0,0.0,0.0,32343.6,0.0,0.0,3,9,0.0,3,0.0 +7838,10998,1836.1434847366627,37.0,120,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,53366.25,0.0,45630.0,2,0,0.0,4,2.0 +7839,10999,908.8888413019479,86.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26980.0,0.0,0.0,24591.4,0.0,0.0,1,4,3.0,1,0.0 +7840,11003,589.7064158376221,22.0,300,13210.0,56,3,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,18657.85,0.0,5880.0,1,0,1.0,4,3.0 +7841,11004,659.7184833032657,51.0,111,0.0,31,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,54524.4,0.0,0.0,1,6,5.0,2,1.0 +7842,11005,3491.211443602407,33.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44442.1,0.0,49780.0,2,5,4.0,1,1.0 +7843,11006,4470.823556723427,26.0,111,0.0,31,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11186.85,0.0,0.0,3,9,7.0,1,1.0 +7844,11007,730.599404450461,46.0,111,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,54916.75,0.0,59300.0,1,9,7.0,4,2.0 +7845,11008,668.1066318945052,34.0,112,0.0,55,1.0,0.0,3.0,1.6,0.0,5420.0,0.0,0.0,0.0,0.0,12762.6,0.0,0.0,3,8,0.0,2,1.0 +7846,11010,1011.2727865354877,41.0,111,0.0,46,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,35477.65,3060.0,17650.0,3,10,8.0,2,1.0 +7847,11012,3957.495498779086,70.0,111,0.0,74,0.0,0.0,3.0,1.8,0.0,0.0,0.0,39850.0,1188.0,0.0,44083.69191596298,0.0,0.0,1,10,8.0,5,0.0 +7848,11013,1547.4024958014493,29.0,111,0.0,81,1.0,0.0,3.0,1.8,9700.0,7670.0,0.0,0.0,0.0,0.0,24448.0,0.0,0.0,3,8,7.0,4,1.0 +7849,11015,1947.5833974850514,40.0,120,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,5.0,0.0,42127.12955226097,0.0,34930.0,3,0,0.0,2,1.0 +7850,11016,1212.1613730999345,39.0,211,620.0,43,1.0,1.0,2.0,1.3,0.0,2570.0,0.0,0.0,0.0,0.0,14352.0,1850.0,3550.0,3,4,3.0,2,1.0 +7851,11017,2082.311492544405,47.0,112,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49103.84,0.0,53680.0,1,7,0.0,4,3.0 +7852,11018,1855.1388230630237,45.0,120,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38779.0,0.0,40070.0,2,0,0.0,3,2.0 +7853,11019,2027.6364027604052,61.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12650.0,333.0,0.0,14194.3,0.0,0.0,1,0,1.0,1,0.0 +7854,11021,2322.2130993593432,61.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28610.0,0.0,0.0,28191.55,0.0,1690.0,1,9,0.0,1,0.0 +7855,11023,3318.4126491634656,59.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,9380.0,0.0,0.0,26374.45,0.0,17840.0,3,9,7.0,4,1.0 +7856,11025,1684.318957707618,54.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22410.0,0.0,0.0,53832.95,0.0,38570.0,1,7,5.0,3,1.0 +7857,11026,3412.37087706882,61.0,112,0.0,77,2.0,2.0,3.0,2.0,0.0,0.0,0.0,17450.0,0.0,0.0,56565.4,0.0,41090.0,1,7,0.0,4,2.0 +7858,11027,1352.5538966713339,86.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13200.0,0.0,0.0,12859.4,0.0,0.0,5,8,0.0,1,0.0 +7859,11028,2811.157139649124,54.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20862.9,0.0,24150.0,2,4,3.0,1,1.0 +7860,11030,2301.1656219629544,30.0,111,2600.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41586.4,0.0,35970.0,3,9,7.0,4,2.0 +7861,11031,4093.1090908755377,64.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34620.0,677.0,0.0,31615.15,0.0,0.0,3,10,8.0,1,0.0 +7862,11032,2079.6678941911396,31.0,112,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21561.5,0.0,22010.0,2,7,0.0,2,1.0 +7863,11033,2210.141561659041,66.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24800.0,0.0,0.0,25647.45,0.0,260.0,1,0,0.0,3,0.0 +7864,11035,887.0575143452635,42.0,112,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,40154.4,0.0,45550.0,1,9,2.0,2,1.0 +7865,11036,1743.700858540787,52.0,112,0.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49747.85,0.0,54710.0,1,4,0.0,3,2.0 +7866,11037,2701.610329415148,28.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47189.95,0.0,51910.0,2,9,7.0,3,2.0 +7867,11038,3428.7018606596716,47.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6815.7,460.0,0.0,3,6,4.0,2,1.0 +7868,11040,2331.2410221601026,81.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23430.0,0.0,0.0,23430.0,0.0,0.0,5,8,7.0,3,0.0 +7869,11042,2395.969137082023,46.0,400,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28205.35,0.0,31440.0,2,0,1.0,1,1.0 +7870,11043,1235.832709957424,31.0,111,3720.0,47,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26371.0,2400.0,15620.0,3,9,7.0,4,2.0 +7871,11044,2372.130260746705,81.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26140.0,0.0,0.0,25526.05,0.0,0.0,1,7,5.0,3,0.0 +7872,11045,1160.050661763684,53.0,111,0.0,77,1.0,1.0,3.0,1.8,0.0,6040.0,0.0,0.0,0.0,0.0,25456.0,110.0,11340.0,3,9,7.0,2,1.0 +7873,11050,3156.9620139394524,79.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16380.0,0.0,0.0,16120.0,0.0,0.0,3,9,3.0,1,0.0 +7874,11051,2715.160412586324,62.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24700.0,0.0,0.0,24678.1,0.0,190.0,3,6,0.0,3,0.0 +7875,11052,800.8964606154908,44.0,112,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22572.7,2050.0,17070.0,3,8,2.0,2,1.0 +7876,11053,1841.5788755289582,38.0,112,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,24190.25,0.0,22770.0,2,8,0.0,4,2.0 +7877,11054,3549.169996460011,26.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37515.45,0.0,39720.0,3,9,7.0,3,2.0 +7878,11055,1763.3525250402492,35.0,300,0.0,62,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,36425.2,0.0,27780.0,3,0,0.0,4,2.0 +7879,11056,1418.01750960479,82.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,101220.0,3893.0,0.0,96352.05,0.0,0.0,5,7,5.0,3,0.0 +7880,11057,626.8689008934341,51.0,111,13250.0,35,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,41351.05,0.0,29080.0,1,7,5.0,2,1.0 +7881,11058,1404.6818045910425,45.0,112,210.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47731.9,0.0,51330.0,2,6,1.0,4,2.0 +7882,11061,1391.5012850813382,40.0,111,10090.0,47,1.0,0.0,2.0,1.3,0.0,7170.0,0.0,0.0,0.0,0.0,18254.75,0.0,0.0,3,10,8.0,2,1.0 +7883,11062,2122.9111101556673,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17210.0,0.0,0.0,17947.25,0.0,0.0,1,9,7.0,1,0.0 +7884,11063,1576.547851026535,57.0,400,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11980.0,280.0,0.0,26996.95,0.0,730.0,1,0,0.0,3,1.0 +7885,11065,1592.2006536589538,54.0,120,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29434.3,0.0,29460.0,3,0,1.0,3,2.0 +7886,11066,6588.835797877753,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32250.0,0.0,0.0,25382.0,0.0,0.0,1,6,4.0,1,0.0 +7887,11069,1876.9431701226483,36.0,112,7020.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34428.4,700.0,25580.0,2,8,0.0,4,2.0 +7888,11070,1831.2918686948965,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,66400.0,0.0,0.0,54837.35,0.0,0.0,1,7,5.0,3,0.0 +7889,11071,1983.2696712799993,57.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30896.95,0.0,32060.0,1,8,7.0,3,2.0 +7890,11072,1971.7656422656858,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,81220.0,88.0,0.0,75299.11628899213,0.0,0.0,1,10,8.0,3,0.0 +7891,11073,1854.4445830810957,72.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33150.0,0.0,0.0,32494.85,0.0,0.0,1,0,1.0,3,0.0 +7892,11075,1661.1172681481185,57.0,111,280.0,75,0.0,0.0,2.0,1.3,3630.0,0.0,0.0,0.0,0.0,0.0,5967.5,0.0,640.0,1,10,8.0,2,0.0 +7893,11077,1950.9989649152199,35.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,16.0,0.0,64649.35,0.0,62470.0,2,8,2.0,4,2.0 +7894,11078,1043.3825311541648,42.0,111,7910.0,37,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18310.3,0.0,7160.0,3,9,7.0,2,1.0 +7895,11079,2752.418340633501,78.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33480.0,0.0,0.0,29309.0,0.0,0.0,1,10,8.0,1,0.0 +7896,11080,2430.2689596893856,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,4040.0,12750.0,0.0,0.0,18770.0,0.0,0.0,3,8,7.0,3,0.0 +7897,11082,1103.9556587194088,43.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19897.45,1770.0,17910.0,3,4,4.0,2,1.0 +7898,11083,1325.0706888708619,36.0,111,4350.0,43,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17872.0,0.0,950.0,3,8,6.0,2,1.0 +7899,11084,2915.7032813841447,48.0,111,4810.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11294.1,0.0,6320.0,1,6,4.0,1,1.0 +7900,11085,1481.826215598969,64.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24570.0,0.0,0.0,52050.6,0.0,28970.0,1,8,7.0,2,1.0 +7901,11086,2839.3927879920802,47.0,111,0.0,43,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,34369.6,2750.0,18440.0,3,10,8.0,4,1.0 +7902,11087,3105.4035930906816,33.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,68149.05,0.0,71480.0,2,9,7.0,4,2.0 +7903,11088,3200.2566268010282,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18630.0,0.0,0.0,18181.4,0.0,0.0,1,6,5.0,1,0.0 +7904,11092,2380.4417832808203,64.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11650.0,0.0,0.0,12095.35,0.0,0.0,1,0,0.0,1,0.0 +7905,11093,2566.709571289812,56.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,6890.0,0.0,0.0,25473.25,0.0,19530.0,3,10,8.0,4,1.0 +7906,11094,1668.7478629795849,73.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25800.0,0.0,0.0,25618.0,0.0,0.0,3,0,0.0,3,0.0 +7907,11095,2710.408690885725,44.0,112,380.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53037.7,0.0,41360.0,2,8,3.0,4,2.0 +7908,11096,2288.9351839824526,58.0,400,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17910.0,0.0,0.0,35909.90063525173,0.0,19010.0,1,0,1.0,3,1.0 +7909,11097,2919.77636996061,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24350.0,0.0,0.0,24155.0,0.0,0.0,1,4,3.0,3,0.0 +7910,11098,4230.614393792261,26.0,111,5710.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29172.3,0.0,22980.0,3,10,8.0,3,2.0 +7911,11101,1751.0090574688209,52.0,300,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41772.9,0.0,40460.0,1,0,0.0,3,2.0 +7912,11103,1460.5130813121648,28.0,120,3770.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23239.1,430.0,17330.0,1,0,3.0,3,2.0 +7913,11104,2761.8171956043557,44.0,112,20040.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,56413.1,0.0,47000.0,2,8,1.0,4,2.0 +7914,11105,2367.051166999982,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20930.0,0.0,0.0,18960.05,0.0,0.0,1,5,4.0,1,0.0 +7915,11106,3852.747580543864,68.0,111,0.0,78,2.0,1.0,4.0,2.5,0.0,5750.0,0.0,13170.0,0.0,0.0,36533.2,2570.0,14080.0,3,9,7.0,4,2.0 +7916,11107,2236.5039155848667,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10500.0,0.0,0.0,10453.0,0.0,0.0,1,5,4.0,1,0.0 +7917,11109,3261.0276728089616,41.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23855.55,0.0,25060.0,3,6,4.0,1,1.0 +7918,11110,5147.101868081589,44.0,300,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3281.0,0.0,0.0,3,0,0.0,1,0.0 +7919,11113,1841.2958873765488,57.0,300,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16422.85,0.0,17250.0,1,0,0.0,1,1.0 +7920,11114,1271.1168139899355,52.0,111,9680.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13140.35,0.0,4240.0,1,6,5.0,1,0.0 +7921,11117,1374.6194941488964,38.0,112,1330.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18254.8,0.0,9880.0,3,9,2.0,1,1.0 +7922,11119,2058.966092551073,52.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32896.0,0.0,37740.0,3,7,0.0,1,1.0 +7923,11121,2047.4720728645218,39.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51670.50353277039,0.0,47130.0,2,6,5.0,4,2.0 +7924,11123,2493.794157249781,45.0,111,0.0,23,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,103426.2390446771,0.0,121830.0,2,9,7.0,4,2.0 +7925,11125,1982.5669944145093,47.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,78824.95,0.0,90210.0,2,9,7.0,4,2.0 +7926,11126,2095.295168009118,68.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22410.0,0.0,0.0,27837.7,0.0,9050.0,1,0,0.0,3,0.0 +7927,11127,2886.4951018377537,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,68450.0,430.0,0.0,62205.43407876769,0.0,0.0,1,10,8.0,3,0.0 +7928,11129,1781.9446094191892,34.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48299.65,0.0,40640.0,2,8,2.0,4,2.0 +7929,11130,1366.5261170913452,55.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,205.0,0.0,50843.25,0.0,54130.0,1,8,7.0,3,2.0 +7930,11132,2245.6654394087122,53.0,111,0.0,37,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,12711.0,0.0,192661.43280906606,0.0,203140.0,1,10,8.0,4,2.0 +7931,11133,2213.161574419875,58.0,300,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,5020.0,0.0,100829.55,0.0,109630.0,1,0,0.0,3,2.0 +7932,11134,3991.9178137339477,41.0,111,0.0,85,0.0,0.0,1.0,1.0,9690.0,0.0,0.0,0.0,0.0,0.0,12954.0,0.0,0.0,3,9,7.0,1,0.0 +7933,11135,4782.799771129045,35.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24365.45,0.0,26110.0,5,10,8.0,1,1.0 +7934,11136,4422.693659712482,33.0,111,0.0,46,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35202.3,0.0,24990.0,3,10,8.0,4,1.0 +7935,11137,2258.1880083151195,58.0,300,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44970.95,0.0,13410.0,1,0,0.0,3,2.0 +7936,11138,3497.197383916862,59.0,111,0.0,77,0.0,0.0,1.0,1.0,11870.0,0.0,0.0,0.0,0.0,0.0,16340.5,0.0,0.0,3,8,7.0,1,0.0 +7937,11141,2799.535926477656,80.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10860.0,0.0,0.0,10427.700635251731,0.0,0.0,1,0,0.0,1,0.0 +7938,11142,1866.8443327997957,84.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31110.0,0.0,0.0,29758.45,0.0,0.0,1,8,7.0,3,0.0 +7939,11143,2210.205096884802,82.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24830.0,0.0,0.0,24977.0,0.0,0.0,1,0,0.0,3,0.0 +7940,11144,2877.978530449322,56.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8122.35,0.0,8450.0,5,8,6.0,1,1.0 +7941,11145,3270.644761010284,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22550.0,0.0,0.0,20805.0,0.0,0.0,5,7,5.0,1,0.0 +7942,11147,832.4837275232622,47.0,111,0.0,85,0.0,0.0,2.0,1.5,1270.0,0.0,0.0,0.0,0.0,0.0,6076.0,0.0,170.0,3,7,5.0,2,0.0 +7943,11149,2212.4692080341433,33.0,111,9010.0,63,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,38802.0,0.0,21070.0,3,7,5.0,4,2.0 +7944,11150,2096.470883985775,43.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,67132.85,0.0,65880.0,3,8,1.0,3,2.0 +7945,11151,3053.535037368886,85.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21370.0,0.0,0.0,22200.0,0.0,0.0,1,0,0.0,1,0.0 +7946,11156,3756.940722955839,33.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27167.05,0.0,9500.0,1,9,7.0,1,1.0 +7947,11158,3481.2943521971497,34.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,59520.2,0.0,64410.0,2,9,7.0,4,2.0 +7948,11159,2241.994383482015,40.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23070.95,0.0,25150.0,2,9,7.0,1,1.0 +7949,11160,1291.0173233598227,58.0,211,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17451.15,1280.0,16250.0,3,2,3.0,1,1.0 +7950,11161,3974.452649980032,36.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,90643.4,0.0,106890.0,2,10,8.0,4,2.0 +7951,11165,1873.3777742095651,83.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14920.0,0.0,0.0,18420.0,0.0,0.0,5,0,0.0,1,0.0 +7952,11166,1843.1305722836096,53.0,111,130.0,48,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,49606.3,0.0,48490.0,2,8,7.0,4,3.0 +7953,11167,1710.4626260398281,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15790.0,0.0,0.0,16509.0,0.0,0.0,3,7,5.0,3,0.0 +7954,11169,1563.3529661591729,71.0,221,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19840.0,0.0,0.0,21949.05063525173,0.0,0.0,1,1,2.0,3,0.0 +7955,11172,2053.1076396736667,54.0,120,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,35.0,0.0,19468.75,0.0,23640.0,1,0,2.0,3,1.0 +7956,11173,2414.6943865864932,47.0,112,8390.0,55,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29806.05,0.0,19460.0,2,6,0.0,4,2.0 +7957,11175,706.9677654137446,47.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22543.8,1020.0,19150.0,3,9,7.0,2,1.0 +7958,11176,1833.2866547684823,36.0,112,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,62886.05,0.0,31800.0,2,6,0.0,4,2.0 +7959,11178,1786.0020404533843,48.0,111,0.0,85,0.0,0.0,3.0,2.0,0.0,4000.0,0.0,0.0,0.0,0.0,26902.1,810.0,7270.0,3,7,5.0,2,0.0 +7960,11179,2884.9965109866957,43.0,120,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,53609.59,0.0,36320.0,2,0,0.0,4,2.0 +7961,11180,760.5097243703086,54.0,211,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22588.95,0.0,23650.0,3,4,3.0,1,1.0 +7962,11183,5405.407087352335,36.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27686.25,0.0,30390.0,2,9,7.0,1,1.0 +7963,11184,2783.9033888989848,58.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53306.9,0.0,57030.0,3,10,8.0,4,1.0 +7964,11185,351.99763690786887,20.0,120,8880.0,63,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30504.25,0.0,17560.0,3,0,1.0,2,3.0 +7965,11186,1063.5593928113512,44.0,211,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22904.5,0.0,24670.0,2,4,3.0,1,1.0 +7966,11187,648.208043439591,53.0,111,9020.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,2950.0,598.0,0.0,23786.35,0.0,6420.0,3,9,7.0,2,1.0 +7967,11188,159.55159501875946,46.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37535.65,0.0,37670.0,1,7,6.0,2,1.0 +7968,11189,2285.8390133732505,44.0,112,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39425.8,0.0,40250.0,2,10,2.0,4,2.0 +7969,11190,2922.7654368431054,48.0,300,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,23201.1,2940.0,0.0,1,0,0.0,4,2.0 +7970,11191,1738.6948592593499,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39470.0,0.0,0.0,36771.6,0.0,0.0,1,9,7.0,3,0.0 +7971,11192,2726.154153158057,44.0,111,560.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,28251.2,0.0,30350.0,2,9,7.0,4,2.0 +7972,11194,1897.2308320619268,41.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43847.05,0.0,43540.0,2,8,0.0,4,2.0 +7973,11195,1079.0425109158512,47.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,26821.75,1190.0,19360.0,3,9,7.0,2,1.0 +7974,11196,2983.667044259145,85.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31840.0,0.0,0.0,31778.4,0.0,0.0,1,6,5.0,3,0.0 +7975,11197,2104.7260511108666,51.0,221,2340.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,54432.85,0.0,52520.0,2,1,2.0,4,2.0 +7976,11198,2081.471868341944,31.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38356.9,0.0,36780.0,2,8,7.0,4,2.0 +7977,11199,2561.056891390151,62.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,26760.0,0.0,0.0,38863.5,0.0,21070.0,1,10,8.0,1,1.0 +7978,11200,891.4996833339874,37.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30385.1,0.0,33150.0,3,9,7.0,2,1.0 +7979,11201,2935.3870685443435,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17490.0,0.0,0.0,17240.4,0.0,0.0,3,7,6.0,1,0.0 +7980,11202,991.5646280398689,50.0,400,0.0,85,0.0,0.0,2.0,1.3,0.0,8210.0,0.0,0.0,0.0,0.0,12802.0,0.0,0.0,3,0,1.0,2,0.0 +7981,11203,4027.4881215114865,45.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17381.7,0.0,40870.0,2,6,1.0,1,1.0 +7982,11204,2527.7210441857083,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17590.0,0.0,0.0,17140.0,0.0,0.0,1,9,7.0,1,0.0 +7983,11205,2442.521083101934,38.0,300,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53029.7,0.0,46790.0,2,0,0.0,4,2.0 +7984,11208,4760.770414296806,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18310.0,0.0,0.0,18080.0,0.0,0.0,3,10,8.0,1,0.0 +7985,11209,2418.9850528116935,78.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10720.0,40.0,0.0,11086.0,0.0,0.0,1,0,0.0,1,0.0 +7986,11210,1820.2222585119187,70.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17100.0,0.0,0.0,17350.0,0.0,0.0,1,0,0.0,3,0.0 +7987,11211,2316.491351936053,53.0,112,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46088.15,0.0,50410.0,2,6,2.0,3,2.0 +7988,11212,188.3977306193087,42.0,400,4060.0,48,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34540.0,0.0,31530.0,2,0,0.0,4,2.0 +7989,11214,2904.871164480948,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21810.0,0.0,0.0,30721.75,0.0,9880.0,1,10,8.0,2,0.0 +7990,11215,3062.81510584659,46.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18250.95,0.0,19440.0,3,10,8.0,1,1.0 +7991,11216,1857.9333790463693,46.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,73977.7,0.0,80620.0,2,10,8.0,4,2.0 +7992,11217,1970.8247529524265,39.0,112,0.0,43,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,55832.3,0.0,46820.0,2,6,0.0,4,2.0 +7993,11218,3434.618227787455,32.0,221,5810.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13519.85,0.0,8090.0,3,3,4.0,1,1.0 +7994,11219,1774.5489097976233,42.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49452.2,0.0,53740.0,2,8,7.0,4,2.0 +7995,11220,1042.8117678947135,30.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,27934.45,0.0,23090.0,3,10,8.0,2,1.0 +7996,11222,3801.9724334985785,28.0,112,3400.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32180.05,0.0,27300.0,2,3,0.0,4,1.0 +7997,11223,1241.9408171003358,54.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57642.95,0.0,74450.0,1,6,0.0,3,2.0 +7998,11224,2807.4249518269326,53.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37616.05,0.0,39670.0,1,9,7.0,3,2.0 +7999,11225,5042.683281295263,59.0,400,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19420.0,0.0,0.0,33853.8,0.0,18730.0,1,0,0.0,5,1.0 +8000,11229,1898.841195690467,68.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32260.0,78.0,0.0,30975.970901678204,0.0,0.0,1,0,0.0,3,0.0 +8001,11230,4681.810128357907,76.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18650.0,0.0,0.0,18697.55,0.0,0.0,1,7,6.0,1,0.0 +8002,11232,2748.092216523524,86.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19050.0,0.0,0.0,19581.6,0.0,0.0,1,0,1.0,1,0.0 +8003,11233,1040.212074139479,46.0,112,0.0,13,1.0,1.0,3.0,2.0,11870.0,0.0,0.0,0.0,0.0,0.0,11604.55,0.0,0.0,1,8,0.0,2,1.0 +8004,11234,2403.627658131416,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15200.0,0.0,0.0,14180.0,0.0,0.0,1,6,5.0,1,0.0 +8005,11235,2268.6765243442333,44.0,112,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,512.0,0.0,66851.45,0.0,70850.0,2,8,0.0,4,2.0 +8006,11236,2634.039919784731,65.0,111,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,49440.0,0.0,0.0,43932.45,0.0,5720.0,2,10,8.0,4,1.0 +8007,11238,1925.6031330834605,63.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5910.0,0.0,0.0,54890.23286090468,0.0,57220.0,1,8,6.0,3,1.0 +8008,11239,2935.669583125153,32.0,112,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44648.0,0.0,43140.0,2,8,1.0,4,2.0 +8009,11241,882.9915040847304,24.0,111,0.0,85,0.0,0.0,4.0,2.1,0.0,6910.0,0.0,0.0,0.0,0.0,17958.0,0.0,0.0,3,8,7.0,4,0.0 +8010,11245,1562.804541464502,26.0,111,5390.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28785.4,0.0,21120.0,3,9,7.0,4,2.0 +8011,11246,1614.79371222094,64.0,111,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14518.3,0.0,15530.0,1,9,7.0,3,1.0 +8012,11247,2328.447961514556,52.0,112,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,84.0,0.0,30613.7,0.0,31110.0,1,8,1.0,3,2.0 +8013,11250,3760.2647633645342,54.0,111,0.0,37,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,69001.5,0.0,74590.0,3,10,8.0,4,3.0 +8014,11251,1915.5568640554716,57.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,9440.0,0.0,0.0,70604.65,0.0,0.0,1,8,7.0,3,0.0 +8015,11252,2347.341458933378,53.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34424.8,0.0,40320.0,1,7,4.0,1,1.0 +8016,11253,2253.5271674932033,65.0,221,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33660.0,0.0,0.0,34292.5,0.0,0.0,1,1,2.0,3,0.0 +8017,11254,2386.1905964557445,31.0,111,16220.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,148.0,0.0,44360.95,0.0,31840.0,3,8,6.0,3,2.0 +8018,11255,1411.2551117086634,66.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35490.0,0.0,0.0,33914.69191596298,0.0,0.0,1,9,7.0,3,0.0 +8019,11257,3309.9023751385675,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17580.0,0.0,0.0,16390.5,0.0,0.0,1,9,7.0,1,0.0 +8020,11258,1766.206862835414,55.0,120,3130.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39770.3,0.0,39870.0,2,0,0.0,4,3.0 +8021,11259,1185.9085158650178,51.0,300,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20347.1,5010.0,8770.0,3,0,0.0,2,1.0 +8022,11260,3810.7005511363686,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17240.0,1103.0,0.0,18090.5,0.0,0.0,1,10,8.0,1,0.0 +8023,11263,4131.140087687407,53.0,111,10870.0,65,2.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,12093.8,0.0,920.0,3,10,8.0,2,2.0 +8024,11265,851.7356405363842,54.0,111,0.0,68,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26276.9,960.0,17350.0,3,10,8.0,4,2.0 +8025,11267,2719.2277821760126,59.0,400,0.0,75,2.0,2.0,3.0,2.0,0.0,0.0,0.0,25410.0,0.0,0.0,65788.1,0.0,44180.0,1,0,1.0,4,2.0 +8026,11268,3105.5247606243165,35.0,111,0.0,46,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,36852.0,0.0,23460.0,3,8,7.0,4,1.0 +8027,11269,1636.2001649519107,68.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31740.0,0.0,0.0,31141.15,0.0,0.0,1,6,0.0,3,0.0 +8028,11270,2222.370832487878,80.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17370.0,0.0,0.0,17322.05,0.0,0.0,1,0,0.0,3,0.0 +8029,11271,1436.1637057747275,70.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54650.0,0.0,0.0,49633.85,0.0,0.0,1,0,1.0,3,0.0 +8030,11272,1207.8755614169113,38.0,111,0.0,85,0.0,0.0,3.0,2.0,810.0,1080.0,0.0,0.0,0.0,0.0,12684.0,0.0,0.0,3,4,4.0,2,0.0 +8031,11273,2720.1462667822902,60.0,300,5950.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8758.6,0.0,0.0,3,0,0.0,1,1.0 +8032,11274,2240.61958968272,68.0,120,0.0,78,0.0,0.0,2.0,1.5,7930.0,0.0,0.0,2190.0,0.0,32368.0,41656.85,0.0,0.0,1,0,1.0,3,0.0 +8033,11275,1617.0190626913538,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,81100.0,0.0,0.0,85158.80158812932,0.0,5100.0,1,10,8.0,3,0.0 +8034,11276,906.3641285894652,31.0,111,0.0,55,1.0,1.0,3.0,2.0,0.0,0.0,0.0,7550.0,0.0,0.0,32689.55,0.0,18580.0,3,10,8.0,2,1.0 +8035,11277,2333.0820041329607,55.0,112,0.0,48,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29048.28753199962,0.0,31660.0,2,9,0.0,2,1.0 +8036,11278,1596.940195032864,67.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20340.0,0.0,0.0,19695.75,0.0,0.0,2,8,0.0,3,0.0 +8037,11279,2499.8772620845157,37.0,111,10470.0,85,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,10050.20502561691,0.0,0.0,1,10,8.0,4,1.0 +8038,11280,2759.321115465689,53.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36026.7,0.0,37780.0,1,8,0.0,3,2.0 +8039,11281,2219.7069429967332,57.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12750.0,0.0,0.0,31256.85,0.0,19670.0,3,10,4.0,3,1.0 +8040,11284,1037.4014593037714,40.0,111,0.0,85,0.0,0.0,4.0,2.3,0.0,600.0,0.0,0.0,0.0,0.0,20119.0,0.0,9400.0,3,6,5.0,2,0.0 +8041,11285,1712.5014564940846,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57890.0,124.0,0.0,55533.41709016782,0.0,0.0,1,9,7.0,3,0.0 +8042,11287,4540.037957236892,34.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66119.65,0.0,66010.0,2,10,8.0,3,2.0 +8043,11290,2529.755056729056,80.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24470.0,0.0,0.0,24141.2,0.0,0.0,5,7,5.0,3,0.0 +8044,11292,3730.6869878815987,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19760.0,0.0,0.0,18156.1,0.0,0.0,1,10,8.0,1,0.0 +8045,11293,3795.231865556561,41.0,300,350.0,68,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24957.9,0.0,23870.0,3,0,1.0,4,2.0 +8046,11294,1927.8674896364423,47.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50931.1,0.0,53280.0,1,8,7.0,3,2.0 +8047,11297,2501.9886653736826,58.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18371.0,0.0,19390.0,3,10,8.0,1,1.0 +8048,11298,3986.1474402224853,26.0,400,0.0,85,0.0,0.0,3.0,1.6,0.0,6220.0,0.0,0.0,0.0,0.0,17515.0,0.0,0.0,3,0,0.0,2,0.0 +8049,11299,851.477396820868,33.0,111,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,2310.0,0.0,0.0,47648.0,0.0,38250.0,3,9,7.0,4,2.0 +8050,11301,3434.1290135610834,79.0,111,0.0,78,0.0,0.0,3.0,2.0,10980.0,0.0,1670.0,13380.0,0.0,0.0,27566.0,0.0,0.0,3,6,5.0,4,0.0 +8051,11302,1718.1019240727549,43.0,111,8790.0,56,3,4.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,44833.6,1650.0,30410.0,3,9,7.0,4,4.0 +8052,11303,510.0713605913938,47.0,112,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20595.65,240.0,14860.0,3,6,1.0,2,1.0 +8053,11304,1606.961640641562,86.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13900.0,0.0,0.0,13900.0,0.0,0.0,5,8,7.0,1,0.0 +8054,11306,3715.9592927640633,26.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34944.0,20.0,35920.0,3,8,0.0,3,2.0 +8055,11307,2920.4074653828725,67.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39790.0,0.0,0.0,36169.40079757941,0.0,0.0,1,1,2.0,3,0.0 +8056,11309,1582.1696417265966,68.0,111,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30050.0,0.0,0.0,33223.0,0.0,7610.0,3,7,5.0,3,1.0 +8057,11310,3075.4997405319364,20.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8421.8,0.0,5750.0,3,9,7.0,1,1.0 +8058,11311,3053.038950458097,67.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,3751.0,0.0,36470.35,0.0,38030.0,1,10,8.0,1,1.0 +8059,11313,639.0647373320877,40.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20986.95,0.0,15760.0,3,9,7.0,2,1.0 +8060,11314,3738.690159234786,52.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19192.6,0.0,19320.0,3,7,6.0,1,1.0 +8061,11315,844.3228638518725,43.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40963.8,0.0,43350.0,2,6,0.0,3,2.0 +8062,11316,2537.314177909273,26.0,112,6710.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39922.85,0.0,36690.0,3,9,3.0,3,2.0 +8063,11317,7317.884804514402,60.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35330.0,0.0,0.0,55297.3,0.0,28670.0,1,8,6.0,3,0.0 +8064,11318,2547.10858385354,77.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,3810.0,11040.0,0.0,0.0,14850.0,0.0,0.0,3,0,0.0,3,0.0 +8065,11319,2867.5074893886313,80.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15210.0,0.0,0.0,16417.65,0.0,0.0,5,6,2.0,1,0.0 +8066,11320,2209.1971568046274,89.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42010.0,0.0,0.0,42092.05,0.0,0.0,1,8,1.0,3,0.0 +8067,11321,659.8139382920443,46.0,112,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44590.7,0.0,38630.0,2,6,2.0,4,2.0 +8068,11322,3940.1945782019625,27.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20181.85,720.0,16500.0,3,8,6.0,1,1.0 +8069,11323,1840.8969919359956,51.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21218.45,1400.0,20020.0,1,8,7.0,2,1.0 +8070,11324,1905.1247347629455,29.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24815.55,0.0,19520.0,3,9,7.0,2,1.0 +8071,11325,1504.767010844218,54.0,300,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,18.0,0.0,41300.55,0.0,44390.0,1,0,0.0,3,2.0 +8072,11326,2886.3124601648515,79.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29380.0,0.0,0.0,26862.55,0.0,0.0,1,0,0.0,1,0.0 +8073,11328,1348.2448010505882,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48760.0,0.0,0.0,42516.57862423882,0.0,0.0,1,6,5.0,3,0.0 +8074,11329,2106.552366978226,73.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16100.0,0.0,0.0,16104.0,0.0,0.0,3,6,5.0,1,0.0 +8075,11330,2020.4572286140012,56.0,120,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,16530.0,0.0,0.0,70744.58747293927,0.0,57440.0,1,0,0.0,4,2.0 +8076,11331,2991.5140215814317,72.0,111,0.0,78,0.0,0.0,3.0,2.0,9720.0,0.0,0.0,30040.0,0.0,0.0,37561.9,0.0,0.0,1,9,7.0,4,0.0 +8077,11332,2050.5707215682246,63.0,112,990.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30790.0,0.0,0.0,56542.55,0.0,25290.0,1,9,0.0,3,1.0 +8078,11333,1243.7147732215424,20.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,5940.0,0.0,0.0,0.0,0.0,15314.0,270.0,1890.0,3,10,8.0,2,1.0 +8079,11334,1129.1554537925579,48.0,111,2700.0,56,1.0,1.0,2.0,1.3,3240.0,0.0,0.0,0.0,0.0,0.0,11535.4,0.0,4810.0,1,9,7.0,2,1.0 +8080,11335,1756.9724051071355,46.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38594.4,0.0,38120.0,2,10,8.0,2,1.0 +8081,11336,3148.2884096785538,73.0,111,0.0,72,1.0,0.0,2.0,1.5,0.0,0.0,0.0,17090.0,3071.0,0.0,16864.165149577788,0.0,0.0,1,10,8.0,3,1.0 +8082,11337,1211.1656569228085,69.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46490.0,0.0,0.0,42461.3854508391,0.0,0.0,1,9,3.0,3,0.0 +8083,11338,2306.794196314166,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14500.0,0.0,0.0,14193.85,0.0,0.0,3,8,7.0,1,0.0 +8084,11340,2369.8512854604937,34.0,111,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27493.0,0.0,28020.0,3,8,6.0,3,2.0 +8085,11342,2962.858601705305,37.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22521.85,0.0,25430.0,2,8,0.0,1,1.0 +8086,11343,1424.3661843414507,72.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35940.0,0.0,0.0,30763.4,0.0,0.0,1,9,3.0,1,0.0 +8087,11344,2406.4628289439056,76.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,72630.0,29.0,0.0,83146.95,0.0,0.0,1,0,1.0,3,0.0 +8088,11345,1953.2837447221448,76.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59200.0,1578.0,0.0,58689.55,0.0,0.0,1,8,7.0,3,0.0 +8089,11346,3813.6196130616304,26.0,120,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,65695.2,0.0,40130.0,3,0,0.0,4,2.0 +8090,11347,1943.4678522148938,96.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28280.0,0.0,0.0,35164.98290225973,0.0,0.0,5,7,0.0,5,0.0 +8091,11348,1814.6293358409914,50.0,111,0.0,38,2.0,3.0,5.0,3.0,0.0,0.0,0.0,0.0,201.0,0.0,90054.45,0.0,81590.0,1,9,7.0,4,2.0 +8092,11349,1159.3932640863402,45.0,111,2160.0,85,0.0,0.0,3.0,1.6,0.0,2240.0,0.0,0.0,0.0,0.0,18076.0,0.0,0.0,3,7,5.0,2,0.0 +8093,11355,1861.169852849454,35.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18074.2,0.0,18200.0,5,10,4.0,1,1.0 +8094,11356,2709.7750177685966,52.0,111,0.0,31,2.0,2.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,123845.60780548172,0.0,29580.0,2,10,8.0,4,2.0 +8095,11357,3339.4380338060114,71.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27400.0,0.0,0.0,26488.75,0.0,0.0,1,0,0.0,5,0.0 +8096,11359,3279.64752251218,69.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,660.0,8780.0,0.0,0.0,11240.0,0.0,0.0,3,0,3.0,1,0.0 +8097,11360,823.7767071866787,73.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,17020.0,0.0,0.0,19780.15,0.0,3550.0,2,7,5.0,1,1.0 +8098,11361,1938.4348575424158,58.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,118969.73811510383,0.0,140610.0,1,10,8.0,3,2.0 +8099,11363,2246.8835066441957,78.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31440.0,0.0,0.0,32469.2,0.0,0.0,1,6,0.0,3,0.0 +8100,11366,2630.5015977118965,34.0,111,640.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,6.0,0.0,36589.55,0.0,40740.0,2,9,7.0,3,2.0 +8101,11367,3649.059860711837,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2737.0,0.0,0.0,3,8,7.0,1,0.0 +8102,11369,1761.9548796846639,70.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17160.0,0.0,0.0,17032.1,0.0,0.0,3,9,3.0,1,0.0 +8103,11371,2525.2260082192747,58.0,221,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3634.0,0.0,104860.9,0.0,120750.0,1,1,1.0,3,2.0 +8104,11372,2023.6286342864755,84.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24490.0,0.0,0.0,23802.85,0.0,0.0,1,0,0.0,3,0.0 +8105,11373,1431.4947811928778,69.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21060.0,0.0,0.0,19529.8,0.0,0.0,1,0,1.0,1,0.0 +8106,11374,2567.8349974567236,29.0,112,0.0,56,1.0,1.0,3.0,1.6,0.0,480.0,0.0,0.0,0.0,0.0,20465.0,1630.0,11680.0,3,9,3.0,2,1.0 +8107,11375,5896.386364479472,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3610.0,0.0,0.0,3,10,8.0,1,0.0 +8108,11377,1528.6813311926787,46.0,112,0.0,37,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,89609.8,0.0,97910.0,1,10,4.0,4,2.0 +8109,11378,1940.0200019303825,62.0,111,9280.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33510.0,0.0,0.0,39238.75,0.0,0.0,1,4,4.0,3,0.0 +8110,11379,1629.8692125841942,77.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25030.0,0.0,0.0,24510.65,0.0,0.0,1,4,3.0,3,0.0 +8111,11384,1770.0252671181556,74.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25340.0,0.0,0.0,25957.85,0.0,0.0,1,0,0.0,3,0.0 +8112,11386,2593.2403915286227,43.0,112,0.0,21,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,55182.65,0.0,0.0,3,10,4.0,4,1.0 +8113,11387,703.251860626367,56.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25757.75,0.0,25790.0,1,9,0.0,2,1.0 +8114,11389,1970.6137237512532,65.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21360.0,0.0,0.0,21148.4,0.0,0.0,1,0,0.0,3,0.0 +8115,11390,2657.396144301733,33.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,7.0,0.0,76371.9,0.0,85200.0,3,6,0.0,4,2.0 +8116,11391,1661.1514495425822,27.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26279.35,0.0,21490.0,3,9,7.0,2,1.0 +8117,11392,2480.5132854504873,71.0,111,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,15960.0,0.0,0.0,48756.5,430.0,34110.0,3,7,6.0,4,2.0 +8118,11393,1983.9778528663496,46.0,212,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59237.9,0.0,56910.0,1,2,0.0,4,2.0 +8119,11394,2715.8285902981456,37.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25708.2,0.0,28290.0,2,4,4.0,1,1.0 +8120,11395,5301.31555856331,24.0,111,4620.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34585.35,0.0,31800.0,3,9,7.0,3,2.0 +8121,11397,1783.173333488469,72.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41580.0,0.0,0.0,37501.85353277039,0.0,0.0,1,0,0.0,3,0.0 +8122,11398,1689.1856585823148,82.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18300.0,0.0,0.0,18177.15,0.0,0.0,1,0,0.0,3,0.0 +8123,11399,1580.1036934185433,87.0,400,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10960.0,0.0,0.0,10978.0,0.0,0.0,5,0,1.0,1,0.0 +8124,11401,3512.4595873315297,39.0,111,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37965.15,0.0,35140.0,3,8,7.0,4,2.0 +8125,11402,1755.950895619572,38.0,112,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37469.0,510.0,26600.0,2,7,0.0,4,2.0 +8126,11403,3199.0025784489753,50.0,221,5060.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17297.95,1080.0,11190.0,3,1,1.0,1,1.0 +8127,11404,1572.7712207733598,47.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17193.5,0.0,19160.0,1,7,5.0,1,1.0 +8128,11406,2240.1492810290115,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,78420.0,0.0,0.0,56983.60377204421,0.0,0.0,1,10,8.0,3,0.0 +8129,11409,2209.2271045896855,38.0,111,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,44889.55,0.0,40090.0,3,9,7.0,2,1.0 +8130,11410,4426.0011472196575,42.0,111,6310.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,109859.9,0.0,107460.0,1,10,8.0,4,2.0 +8131,11411,2515.2615722152555,29.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19003.0,0.0,19980.0,3,8,6.0,1,1.0 +8132,11413,2026.5077903565523,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35180.0,0.0,0.0,33710.8,0.0,0.0,3,10,8.0,3,0.0 +8133,11414,2625.4310712587285,50.0,111,0.0,85,1.0,1.0,4.0,2.5,0.0,0.0,0.0,19390.0,1.0,0.0,54384.9,0.0,16990.0,3,9,7.0,4,1.0 +8134,11416,2434.422834387248,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15740.0,0.0,0.0,15381.55,0.0,0.0,1,4,4.0,1,0.0 +8135,11417,580.1895252520793,47.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23054.55,0.0,18080.0,2,8,6.0,2,1.0 +8136,11418,935.4625385534442,34.0,112,5900.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16552.05,0.0,5770.0,3,10,4.0,2,1.0 +8137,11421,1599.3891106975298,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34380.0,0.0,0.0,29281.4,0.0,0.0,1,8,6.0,1,0.0 +8138,11422,1284.7715274764453,22.0,111,7390.0,67,2.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,17925.05,460.0,8600.0,3,4,3.0,4,2.0 +8139,11423,3487.045404720339,44.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39140.35,0.0,34070.0,2,6,4.0,4,2.0 +8140,11424,2347.203372650534,42.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,83160.4,0.0,76800.0,2,9,7.0,4,2.0 +8141,11426,2139.69769689479,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39950.0,0.0,0.0,38806.75,0.0,0.0,3,10,8.0,3,0.0 +8142,11427,2815.7204205843227,84.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24820.0,0.0,0.0,24177.25,0.0,0.0,1,8,3.0,3,0.0 +8143,11431,2965.6514246647425,76.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24740.0,0.0,0.0,23686.2,0.0,0.0,1,9,2.0,1,0.0 +8144,11432,1106.6403172726539,35.0,112,13960.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35935.1,0.0,22270.0,3,8,0.0,4,2.0 +8145,11433,4594.82146525209,44.0,221,1780.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41769.4,0.0,40580.0,3,1,2.0,3,2.0 +8146,11434,1596.2859131275368,48.0,111,0.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24310.75,0.0,25940.0,3,5,4.0,2,2.0 +8147,11435,3834.1894089457405,38.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36299.3,0.0,38930.0,3,10,8.0,1,1.0 +8148,11437,1901.8474696058142,69.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,47180.0,0.0,0.0,38594.55,0.0,0.0,1,0,0.0,1,0.0 +8149,11439,1555.1429130288238,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22420.0,0.0,0.0,20064.45,0.0,0.0,1,6,5.0,1,0.0 +8150,11440,2982.0626106549294,71.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,21880.0,58.0,0.0,20531.75,0.0,0.0,3,8,7.0,1,1.0 +8151,11441,2448.126797685809,61.0,111,4190.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10628.0,1660.0,3710.0,3,8,6.0,1,1.0 +8152,11442,2749.3377383015736,49.0,111,0.0,48,3,3.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,49784.3,0.0,49650.0,2,10,8.0,4,3.0 +8153,11443,1988.1348326687653,44.0,300,0.0,67,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,38.0,0.0,44321.3,0.0,34800.0,2,0,0.0,4,2.0 +8154,11445,1624.2726833023858,46.0,112,0.0,34,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46639.0,0.0,46050.0,3,10,2.0,2,1.0 +8155,11447,844.3409104128508,53.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,2350.0,0.0,0.0,0.0,0.0,15075.95,4370.0,8000.0,5,10,8.0,2,1.0 +8156,11448,3098.738771988792,39.0,211,6860.0,65,1.0,0.0,6.0,3.1,0.0,4570.0,0.0,0.0,0.0,0.0,28967.6,0.0,170.0,3,1,3.0,4,1.0 +8157,11449,3370.0434006627506,27.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6549.25,0.0,0.0,3,9,7.0,1,0.0 +8158,11450,3185.9761150974855,63.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17090.0,0.0,0.0,15900.5,0.0,0.0,1,1,3.0,1,0.0 +8159,11451,3671.3772810445944,57.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,9084.0,0.0,0.0,3,9,7.0,1,0.0 +8160,11452,1140.539709850656,50.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46125.05,0.0,49610.0,2,8,7.0,2,1.0 +8161,11453,4034.457532469084,63.0,111,1530.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11760.0,0.0,0.0,13140.25,0.0,0.0,3,9,7.0,1,0.0 +8162,11454,1447.9372570718524,50.0,112,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,55502.4,0.0,58410.0,1,8,0.0,4,2.0 +8163,11455,2764.100356435177,82.0,221,0.0,78,0.0,0.0,2.0,1.5,9720.0,0.0,0.0,9930.0,0.0,0.0,19365.2,0.0,0.0,1,1,3.0,5,0.0 +8164,11456,2081.564847615,60.0,111,5700.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10579.6,0.0,1870.0,3,6,5.0,1,1.0 +8165,11457,2542.4795661547,82.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19330.0,0.0,0.0,19123.35,0.0,0.0,1,5,4.0,1,0.0 +8166,11458,1730.8332684026996,39.0,300,900.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,44935.05,0.0,37750.0,2,0,1.0,4,2.0 +8167,11459,4795.922286637998,26.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15095.0,0.0,15850.0,3,9,7.0,1,1.0 +8168,11463,1391.8879093357064,39.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,61776.1,0.0,66130.0,2,7,6.0,4,2.0 +8169,11467,2246.6774617858523,41.0,111,0.0,34,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,49758.0,0.0,43910.0,4,6,4.0,4,2.0 +8170,11468,1457.8197509572542,52.0,300,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34482.9,0.0,22310.0,1,0,0.0,3,2.0 +8171,11469,1760.7052399906809,58.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,15950.0,194.0,0.0,70714.66931354887,0.0,65450.0,1,10,1.0,4,2.0 +8172,11470,3327.9297278068216,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14390.0,0.0,0.0,14390.0,0.0,0.0,3,9,7.0,1,0.0 +8173,11472,3142.7270712794957,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15020.0,0.0,0.0,14263.736086090832,0.0,0.0,1,9,7.0,1,0.0 +8174,11473,3866.779028141451,33.0,211,0.0,85,1.0,0.0,2.0,1.5,0.0,9400.0,0.0,0.0,0.0,0.0,16764.0,0.0,3500.0,3,1,2.0,5,1.0 +8175,11474,527.346956092812,37.0,221,0.0,85,0.0,0.0,3.0,2.0,10960.0,0.0,0.0,0.0,0.0,0.0,20926.0,0.0,0.0,3,1,2.0,2,0.0 +8176,11475,3571.923129537866,42.0,111,0.0,68,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34208.2,940.0,33440.0,3,8,6.0,4,3.0 +8177,11477,2376.771829743934,43.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48853.9,0.0,51180.0,2,9,7.0,4,2.0 +8178,11478,2890.510653421023,31.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19952.8,0.0,20530.0,3,8,1.0,1,1.0 +8179,11483,698.5194438936821,39.0,111,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20275.55,0.0,14910.0,3,5,4.0,2,1.0 +8180,11484,1043.113241403814,38.0,112,0.0,85,0.0,0.0,5.0,2.4,0.0,880.0,0.0,0.0,0.0,0.0,38758.7,820.0,19120.0,3,10,0.0,4,0.0 +8181,11485,1910.259331878858,42.0,111,0.0,21,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28262.0,0.0,19370.0,2,10,8.0,2,1.0 +8182,11487,1709.9217424530411,53.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,65046.35,0.0,73990.0,2,10,0.0,3,2.0 +8183,11489,2627.192080262118,59.0,221,5860.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,24.0,0.0,11140.3,0.0,1490.0,3,1,2.0,1,1.0 +8184,11490,1970.5387313686047,55.0,112,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,62188.288383192594,0.0,66660.0,1,9,0.0,4,2.0 +8185,11491,1851.0321952397612,75.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25180.0,0.0,0.0,24108.75,0.0,0.0,1,10,0.0,3,0.0 +8186,11492,3546.066891322128,61.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11790.0,0.0,0.0,23336.1,0.0,11720.0,3,9,1.0,1,0.0 +8187,11497,2029.8181931949987,49.0,111,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,13700.0,0.0,0.0,62998.8,0.0,52410.0,2,7,5.0,4,2.0 +8188,11498,1487.8873825938165,69.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39520.0,1284.0,0.0,39777.718682348175,0.0,0.0,1,8,6.0,3,0.0 +8189,11499,2219.331958816971,65.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25280.0,0.0,0.0,24737.0,0.0,0.0,1,0,0.0,3,0.0 +8190,11500,3962.4620127183557,33.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,2070.0,0.0,0.0,0.0,0.0,26432.3,2720.0,12270.0,3,9,7.0,4,2.0 +8191,11501,2535.082740520413,51.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44776.0,0.0,49810.0,1,10,8.0,2,1.0 +8192,11503,957.0334634175739,70.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35950.0,0.0,0.0,35328.5,0.0,0.0,1,2,3.0,3,0.0 +8193,11505,2267.0929969705476,53.0,112,0.0,,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8940.0,0.0,0.0,3,8,1.0,1,0.0 +8194,11506,968.2561433635423,35.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18055.05,3630.0,9610.0,3,8,6.0,2,1.0 +8195,11507,725.1424044630271,48.0,212,0.0,52,1.0,1.0,3.0,1.8,0.0,710.0,0.0,0.0,0.0,0.0,43681.0,2070.0,24920.0,2,1,0.0,2,1.0 +8196,11508,1998.6720947253327,59.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25091.25,0.0,27700.0,1,9,7.0,1,1.0 +8197,11510,2371.9549782359204,36.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,76436.65,0.0,79050.0,2,7,5.0,4,2.0 +8198,11513,3493.014303891631,27.0,211,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25140.4,0.0,27760.0,2,1,2.0,1,1.0 +8199,11514,2140.391513297926,39.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38371.6,0.0,37550.0,2,7,1.0,4,2.0 +8200,11515,4865.247873083666,25.0,400,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20862.9,0.0,19480.0,3,0,1.0,1,1.0 +8201,11516,730.6931681284863,36.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,7760.0,0.0,0.0,0.0,0.0,17607.0,0.0,0.0,3,6,4.0,2,0.0 +8202,11517,813.6402352361328,53.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32244.3,0.0,34090.0,1,4,3.0,3,2.0 +8203,11518,2562.8440302962235,61.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18268.25,0.0,18650.0,3,8,6.0,1,1.0 +8204,11520,4418.094606718698,27.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38949.55,0.0,46080.0,2,10,4.0,3,2.0 +8205,11521,1784.9848658278336,74.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39700.0,0.0,0.0,33931.46363141351,0.0,0.0,1,7,0.0,3,0.0 +8206,11522,1074.2116227872532,35.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22671.55,2740.0,19010.0,3,8,7.0,2,1.0 +8207,11524,1784.766123685571,67.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28940.0,0.0,0.0,29232.3,0.0,0.0,1,6,0.0,3,0.0 +8208,11525,2068.685494770761,52.0,111,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25870.0,0.0,26650.0,2,7,5.0,3,1.0 +8209,11526,1838.6109556367715,54.0,111,0.0,62,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,66189.75,0.0,69000.0,3,8,6.0,4,4.0 +8210,11527,1568.3808120196722,64.0,400,0.0,33,2.0,1.0,2.0,1.5,0.0,0.0,0.0,20080.0,0.0,0.0,23372.3,0.0,3610.0,1,0,0.0,3,2.0 +8211,11528,2647.9859769870427,59.0,300,25700.0,46,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,93159.3,0.0,76500.0,2,0,0.0,4,3.0 +8212,11529,2163.6315445815003,57.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38330.05,0.0,43850.0,3,9,7.0,1,1.0 +8213,11530,3193.01626546262,50.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,1260.0,0.0,0.0,37213.05,1540.0,34420.0,3,10,4.0,2,2.0 +8214,11531,3422.224463660273,29.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51955.05,0.0,56880.0,3,9,7.0,3,2.0 +8215,11533,1420.9755533663238,34.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54386.7,0.0,57040.0,2,9,7.0,4,2.0 +8216,11535,5967.35923252851,49.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20571.55,0.0,21830.0,3,9,7.0,1,1.0 +8217,11536,604.7022368835704,49.0,111,18060.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,38486.1,0.0,19430.0,3,9,7.0,2,1.0 +8218,11538,2543.618140608171,29.0,112,970.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31006.75,0.0,31190.0,2,9,1.0,3,2.0 +8219,11539,1586.9431672522467,56.0,400,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13925.35,0.0,0.0,3,0,0.0,3,2.0 +8220,11541,2113.7109817957307,81.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13760.0,0.0,0.0,12734.0,0.0,0.0,1,4,0.0,1,0.0 +8221,11545,2599.6110549150753,32.0,221,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45145.5,0.0,46860.0,2,1,2.0,4,2.0 +8222,11546,3660.3135490454442,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38020.0,0.0,0.0,34949.55,0.0,0.0,3,9,7.0,1,0.0 +8223,11547,782.6994468074272,38.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24954.85,0.0,17400.0,3,7,6.0,2,1.0 +8224,11548,1792.3010748797167,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50770.0,25.0,0.0,57822.85,0.0,0.0,1,10,8.0,3,0.0 +8225,11549,6333.971555440909,39.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55156.4,0.0,54730.0,2,8,7.0,4,2.0 +8226,11550,1027.2301475486947,44.0,211,2590.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23268.0,0.0,1320.0,3,4,3.0,1,1.0 +8227,11551,2308.448604066965,62.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31210.0,0.0,0.0,56486.48893998293,0.0,26200.0,1,7,6.0,3,1.0 +8228,11553,863.152376180874,53.0,400,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21305.65,4130.0,11950.0,3,0,0.0,2,1.0 +8229,11554,1677.7625920556734,57.0,112,0.0,22,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,9455.0,0.0,126389.69164820419,0.0,67990.0,1,9,2.0,4,2.0 +8230,11555,1221.1139824936927,39.0,111,2190.0,56,1.0,1.0,3.0,1.8,0.0,580.0,0.0,0.0,0.0,0.0,12001.6,250.0,3230.0,3,9,7.0,2,1.0 +8231,11556,1906.9183605450698,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31710.0,0.0,0.0,58779.95,0.0,11700.0,1,8,7.0,3,0.0 +8232,11557,1272.1864306729951,60.0,112,0.0,45,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,47957.7,0.0,52790.0,1,9,3.0,4,4.0 +8233,11558,1147.689189308051,27.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,6830.0,0.0,0.0,0.0,0.0,12849.85,0.0,0.0,1,9,7.0,2,0.0 +8234,11560,2563.4019113096383,26.0,120,11140.0,85,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24138.7,0.0,1880.0,3,0,1.0,4,1.0 +8235,11561,2936.814307312101,59.0,112,10920.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57300.4,0.0,50160.0,1,8,0.0,3,2.0 +8236,11562,5345.594608003195,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19221.0,0.0,0.0,3,10,8.0,1,0.0 +8237,11563,3338.055962485589,63.0,300,0.0,77,0.0,0.0,3.0,1.8,0.0,0.0,0.0,27960.0,0.0,0.0,30947.0,0.0,0.0,1,0,0.0,5,0.0 +8238,11564,717.8093887075388,59.0,111,0.0,64,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21921.95,2670.0,17580.0,3,10,8.0,2,1.0 +8239,11566,1409.9343906510067,56.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19149.05,0.0,21120.0,5,6,4.0,1,1.0 +8240,11568,1416.1461923756146,91.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13200.0,0.0,0.0,13300.0,0.0,0.0,1,8,7.0,1,0.0 +8241,11569,1071.7211177616423,29.0,111,0.0,85,0.0,0.0,2.0,1.3,10530.0,0.0,0.0,0.0,0.0,0.0,15136.0,0.0,0.0,3,6,4.0,2,0.0 +8242,11570,2537.552458756815,48.0,120,860.0,65,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31981.45,0.0,32310.0,2,0,0.0,4,2.0 +8243,11571,1833.1791766678302,31.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50404.9,0.0,55370.0,2,8,7.0,3,2.0 +8244,11572,1787.9597701511657,50.0,112,3870.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37724.65,0.0,35200.0,1,8,0.0,4,2.0 +8245,11574,2647.669909313587,81.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29430.0,0.0,0.0,28879.25,0.0,0.0,1,1,1.0,3,0.0 +8246,11576,2403.3461745348795,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38510.0,0.0,0.0,36518.35,0.0,0.0,1,6,5.0,3,0.0 +8247,11577,1514.4278195403879,73.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19190.0,0.0,0.0,34369.65,0.0,0.0,1,1,2.0,3,0.0 +8248,11578,3389.4257046691014,34.0,111,0.0,63,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,38597.05,0.0,21050.0,3,9,7.0,4,1.0 +8249,11579,3206.6939563186825,75.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9280.0,0.0,0.0,9280.0,0.0,0.0,5,8,0.0,1,0.0 +8250,11580,3454.0293921443217,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2397.35,0.0,0.0,3,8,7.0,1,0.0 +8251,11582,844.8413496566989,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19990.0,0.0,0.0,19254.95,0.0,610.0,3,4,3.0,1,0.0 +8252,11584,860.1898863744741,37.0,111,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31983.05,0.0,35060.0,3,8,7.0,2,1.0 +8253,11585,1929.36970706069,58.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46253.7,0.0,54620.0,1,9,2.0,3,2.0 +8254,11586,2513.147396171318,45.0,300,0.0,62,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,31592.6,0.0,24230.0,1,0,0.0,4,3.0 +8255,11587,1875.5012005938186,43.0,111,1250.0,56,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,12350.0,0.0,8740.0,5,10,8.0,2,2.0 +8256,11588,2158.4889216022552,49.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,61938.8,0.0,65370.0,2,10,8.0,4,2.0 +8257,11591,4487.341508954506,72.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50230.0,0.0,0.0,75181.95,0.0,29230.0,1,7,1.0,3,0.0 +8258,11592,1692.2476315017639,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,70730.0,0.0,0.0,65575.9,0.0,0.0,5,8,7.0,3,0.0 +8259,11593,2720.857066897835,35.0,112,0.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,24321.85,0.0,18230.0,3,8,1.0,4,1.0 +8260,11594,2527.712846680545,36.0,300,0.0,69,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39069.5,0.0,38140.0,2,0,2.0,4,2.0 +8261,11595,2339.8975736798557,48.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23882.45,0.0,27050.0,2,8,7.0,1,1.0 +8262,11596,1429.230810409325,66.0,112,0.0,33,2.0,1.0,2.0,1.5,0.0,0.0,0.0,17060.0,0.0,0.0,39649.35,0.0,25680.0,1,6,0.0,3,2.0 +8263,11599,823.735993158461,25.0,111,5730.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28639.0,540.0,22470.0,3,4,4.0,3,2.0 +8264,11600,2361.713695064919,70.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,53530.0,0.0,0.0,45455.3,0.0,0.0,1,10,8.0,1,1.0 +8265,11601,3111.6618299499355,57.0,112,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,14090.0,0.0,0.0,94595.3,0.0,94140.0,1,9,2.0,5,2.0 +8266,11602,1931.852077534972,65.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,17220.0,209.0,0.0,97824.95,0.0,92100.0,1,10,0.0,3,2.0 +8267,11606,2237.0268744427317,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56230.0,134.0,0.0,55239.846710934435,0.0,0.0,1,9,7.0,3,0.0 +8268,11607,2878.7879201349283,88.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30390.0,0.0,0.0,32536.0,0.0,0.0,3,8,7.0,1,0.0 +8269,11608,4128.713037494104,30.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53961.427512808456,0.0,52110.0,2,9,7.0,3,2.0 +8270,11609,1528.295508119337,49.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16842.0,0.0,17160.0,5,10,3.0,1,1.0 +8271,11610,1151.3148679439364,45.0,111,0.0,46,1.0,0.0,2.0,1.3,0.0,6080.0,0.0,0.0,0.0,0.0,11768.0,0.0,0.0,3,8,6.0,2,1.0 +8272,11612,1649.3349544705993,57.0,112,5190.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,42050.0,0.0,0.0,56907.35,0.0,15650.0,3,9,3.0,3,1.0 +8273,11614,2100.2960658888633,51.0,111,13580.0,63,3,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40327.7,0.0,22670.0,3,8,7.0,4,3.0 +8274,11615,1517.081510626551,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15630.0,0.0,0.0,13219.7,0.0,330.0,2,7,5.0,1,0.0 +8275,11616,1299.8286166222153,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59400.0,0.0,0.0,64784.05,0.0,220.0,1,9,3.0,3,0.0 +8276,11617,5073.780078298813,63.0,111,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,12480.0,0.0,0.0,36868.6,570.0,24800.0,3,9,7.0,5,2.0 +8277,11618,2061.1419723766744,57.0,111,13500.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32674.3,60.0,16940.0,1,9,7.0,2,2.0 +8278,11620,2797.892121914022,61.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,2520.0,9.0,0.0,71776.46307587132,0.0,83370.0,3,10,8.0,3,2.0 +8279,11621,2945.9358710515417,33.0,111,2020.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40596.35,0.0,38410.0,1,10,8.0,4,2.0 +8280,11622,1979.9385090674705,46.0,221,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,628.0,0.0,57090.9,0.0,53020.0,1,1,2.0,4,2.0 +8281,11625,5370.3254889634445,28.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59018.4,0.0,48380.0,3,10,8.0,3,2.0 +8282,11626,2478.517823404605,60.0,112,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3.0,0.0,39652.5,0.0,41750.0,2,8,0.0,3,2.0 +8283,11627,719.3816024778398,57.0,111,0.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36281.2,0.0,40640.0,3,9,7.0,4,2.0 +8284,11628,1966.7234457441118,31.0,111,12680.0,55,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26124.35,0.0,13710.0,3,7,6.0,3,2.0 +8285,11629,2829.072757357721,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36540.0,1319.0,0.0,35693.5,0.0,0.0,1,8,6.0,3,0.0 +8286,11630,3286.5180190192964,78.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33310.0,343.0,0.0,29923.668452569345,0.0,0.0,5,10,8.0,1,0.0 +8287,11631,4745.999149079469,44.0,112,5950.0,65,1.0,0.0,4.0,2.3,19400.0,0.0,0.0,0.0,0.0,0.0,32510.0,0.0,0.0,3,8,0.0,4,1.0 +8288,11633,2771.1348980402895,32.0,300,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32371.0,0.0,25000.0,2,0,0.0,4,2.0 +8289,11634,460.4067713299777,41.0,111,170.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,12143.65,0.0,5950.0,3,8,7.0,2,1.0 +8290,11635,1212.974100592212,68.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,9020.0,0.0,15460.0,0.0,0.0,28567.15,1410.0,820.0,1,9,7.0,2,1.0 +8291,11636,2273.467199015603,72.0,221,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23550.0,0.0,0.0,21564.85,0.0,0.0,1,1,2.0,3,0.0 +8292,11637,2832.489580700536,31.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19917.4,0.0,21830.0,3,8,7.0,1,1.0 +8293,11638,2561.969080604218,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25470.0,0.0,0.0,22127.0,0.0,0.0,1,10,8.0,1,0.0 +8294,11639,1052.2429738945016,54.0,111,0.0,31,1.0,1.0,3.0,2.0,0.0,0.0,0.0,9530.0,0.0,0.0,58026.6,0.0,0.0,2,9,7.0,2,1.0 +8295,11641,2379.8488268610527,54.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1080.0,0.0,0.0,9324.0,0.0,0.0,1,7,4.0,1,1.0 +8296,11642,2463.919412108091,45.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17612.55,4100.0,7480.0,3,9,7.0,2,1.0 +8297,11643,2541.091122247045,37.0,221,21880.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50417.95,0.0,24820.0,2,1,2.0,4,2.0 +8298,11644,1895.8017069192085,31.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45308.6,0.0,45270.0,2,8,0.0,4,2.0 +8299,11647,3932.1660387602533,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4848.0,0.0,0.0,5,10,8.0,1,0.0 +8300,11650,1800.1548913277784,53.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52953.97393097563,0.0,55190.0,2,9,1.0,4,2.0 +8301,11651,1516.023355172325,34.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22225.8,0.0,17120.0,3,10,8.0,2,1.0 +8302,11652,660.2997874227246,40.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,71150.45,0.0,78970.0,2,9,7.0,4,2.0 +8303,11654,1234.4585658433705,29.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23060.0,2230.0,14000.0,3,8,6.0,2,1.0 +8304,11655,2855.1908741972225,37.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50420.85,0.0,51530.0,2,6,0.0,4,2.0 +8305,11658,1929.8247045342537,47.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31393.7,0.0,33630.0,3,7,6.0,3,2.0 +8306,11660,2185.5392924098546,52.0,120,2280.0,67,2.0,1.0,3.0,2.0,0.0,1480.0,0.0,0.0,0.0,0.0,14559.0,1550.0,8990.0,1,0,0.0,4,2.0 +8307,11661,2990.0942061520063,39.0,120,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,67944.3,0.0,71560.0,1,0,3.0,4,2.0 +8308,11662,2667.7693072515835,87.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24640.0,0.0,0.0,24125.8,0.0,0.0,1,0,0.0,3,0.0 +8309,11665,1266.2600470410312,72.0,120,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26580.0,0.0,0.0,25917.8,0.0,0.0,1,0,1.0,3,0.0 +8310,11666,672.5127226420707,34.0,300,780.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38539.55,1100.0,29850.0,3,0,0.0,4,2.0 +8311,11667,1393.1363921017878,44.0,111,0.0,68,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,28345.0,0.0,20260.0,3,10,8.0,4,1.0 +8312,11671,2212.0803918020706,51.0,112,0.0,45,1.0,1.0,3.0,1.8,0.0,0.0,0.0,12940.0,0.0,0.0,43406.1,0.0,33010.0,2,7,0.0,4,1.0 +8313,11672,2043.6192897805,45.0,112,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,110134.95,0.0,103340.0,1,9,3.0,4,2.0 +8314,11673,2098.3339049531696,45.0,300,0.0,67,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41495.1,0.0,40050.0,1,0,0.0,4,2.0 +8315,11675,1604.9449981973487,70.0,112,2420.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18710.0,0.0,0.0,22240.5,0.0,0.0,1,7,0.0,3,0.0 +8316,11677,2362.0671523870087,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10200.0,0.0,0.0,11524.0,0.0,0.0,3,5,4.0,1,0.0 +8317,11678,1710.5031415760288,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41330.0,7185.0,0.0,50439.00421767588,0.0,0.0,5,4,0.0,3,0.0 +8318,11679,2679.326692223657,70.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14890.0,0.0,0.0,14732.05,0.0,0.0,3,9,0.0,1,0.0 +8319,11680,1603.6119983227436,46.0,111,0.0,21,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,24958.0,900.0,7330.0,3,7,6.0,4,1.0 +8320,11682,2930.900547316473,59.0,211,1080.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21791.0,0.0,21360.0,1,1,3.0,3,2.0 +8321,11683,1161.2510157849806,69.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37840.0,0.0,0.0,33181.5,0.0,0.0,1,3,3.0,3,0.0 +8322,11684,1572.038559295607,57.0,120,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28501.3,0.0,14660.0,1,0,0.0,3,2.0 +8323,11685,1114.0314709965,48.0,111,0.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28718.35,90.0,24100.0,3,10,8.0,2,1.0 +8324,11687,2285.096890856492,45.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17426.1,0.0,18350.0,3,8,2.0,1,1.0 +8325,11688,2598.069285673522,64.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21480.0,227.0,0.0,21436.2,0.0,0.0,3,10,4.0,3,0.0 +8326,11690,1698.1405654081675,65.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30920.0,0.0,0.0,54742.365,0.0,0.0,1,10,8.0,3,1.0 +8327,11691,2820.3172646487037,48.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30008.75,0.0,27090.0,3,10,8.0,2,2.0 +8328,11692,2443.2280552280513,50.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52287.3,0.0,57140.0,3,10,8.0,3,2.0 +8329,11693,1699.3613965493296,59.0,111,0.0,85,1.0,0.0,2.0,1.5,11870.0,0.0,0.0,3140.0,0.0,0.0,17878.0,0.0,0.0,3,7,5.0,2,1.0 +8330,11694,1659.9309104857962,45.0,300,0.0,34,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34921.65,0.0,27830.0,2,0,0.0,4,2.0 +8331,11696,592.0462400158411,44.0,120,5950.0,55,1.0,0.0,2.0,1.3,9700.0,0.0,0.0,0.0,0.0,0.0,21526.0,0.0,0.0,3,0,1.0,2,1.0 +8332,11698,2121.5761546247,37.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,9902.0,60690.95,0.0,54100.0,1,9,7.0,4,2.0 +8333,11700,1908.198211459308,79.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47100.0,0.0,0.0,43846.42260947727,0.0,0.0,1,8,6.0,3,0.0 +8334,11704,2353.1205163607196,33.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,69239.05,0.0,63920.0,3,8,6.0,4,2.0 +8335,11706,1284.746891975362,45.0,111,0.0,65,1.0,1.0,4.0,2.3,0.0,0.0,0.0,20490.0,0.0,0.0,45981.0,4880.0,18310.0,3,10,8.0,5,1.0 +8336,11707,1867.5048931961735,45.0,300,12530.0,56,3,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,31237.35,0.0,16140.0,3,0,1.0,4,3.0 +8337,11708,1536.5145573284938,71.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27430.0,0.0,0.0,33283.65,0.0,0.0,1,9,2.0,3,0.0 +8338,11709,2477.1738616468583,40.0,111,0.0,63,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28350.0,3150.0,22910.0,3,8,7.0,2,1.0 +8339,11710,1329.137625943333,35.0,111,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28927.15,0.0,27530.0,3,8,6.0,2,1.0 +8340,11711,2420.070577636135,59.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,18.0,0.0,43322.2,0.0,44870.0,1,8,0.0,3,2.0 +8341,11713,2149.4127395489563,33.0,111,7730.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,1377.0,0.0,43371.65,0.0,30090.0,3,5,4.0,3,2.0 +8342,11714,1707.8966230874805,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30560.0,0.0,0.0,28576.200952877596,0.0,0.0,1,9,7.0,1,0.0 +8343,11715,2705.6279508440525,53.0,111,960.0,42,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25134.1,1420.0,18250.0,3,8,6.0,4,2.0 +8344,11718,2345.621956567979,66.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16360.0,0.0,0.0,16226.6,0.0,0.0,3,0,0.0,1,0.0 +8345,11719,1788.1702947573474,49.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49390.25,0.0,50700.0,2,9,7.0,4,2.0 +8346,11722,3042.571950668014,86.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46660.0,0.0,0.0,41750.7,0.0,0.0,1,10,8.0,3,0.0 +8347,11723,2583.8665873719597,35.0,112,0.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46419.6,0.0,22040.0,2,6,0.0,4,2.0 +8348,11724,2598.9514485223926,89.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35470.0,0.0,0.0,33680.25,0.0,0.0,1,1,2.0,3,0.0 +8349,11726,3842.0577950654933,54.0,221,0.0,69,2.0,2.0,2.0,1.5,0.0,7200.0,0.0,0.0,0.0,0.0,43269.3,810.0,33790.0,3,3,4.0,2,2.0 +8350,11728,3253.7115343652417,29.0,400,9330.0,85,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37010.6,0.0,29370.0,3,0,1.0,3,1.0 +8351,11729,2575.713125818132,33.0,112,0.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,64217.75,0.0,66900.0,2,10,0.0,4,2.0 +8352,11730,2934.119229483786,53.0,111,900.0,65,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46475.05,0.0,46020.0,3,10,8.0,4,3.0 +8353,11733,2054.1766514001783,85.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13610.0,0.0,0.0,12787.5,0.0,0.0,1,9,7.0,1,0.0 +8354,11740,1773.6576309643547,60.0,111,5950.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9022.0,0.0,0.0,3,5,4.0,1,1.0 +8355,11741,2205.1947529053864,69.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12010.0,53.0,0.0,12455.6,0.0,0.0,1,0,0.0,1,0.0 +8356,11742,1679.5584951189032,82.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,119910.0,0.0,0.0,75476.2127050346,0.0,0.0,1,9,7.0,3,0.0 +8357,11743,2856.3499296455466,56.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28590.4,2170.0,25090.0,3,8,6.0,2,1.0 +8358,11744,894.7907268999087,43.0,111,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39407.2,0.0,41800.0,3,9,7.0,2,1.0 +8359,11745,342.92186405635573,39.0,120,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,23766.0,3560.0,12590.0,3,0,0.0,4,1.0 +8360,11748,1915.6658400347794,53.0,111,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,11620.0,0.0,0.0,102338.9,0.0,64350.0,1,8,6.0,4,2.0 +8361,11749,827.2047971092543,29.0,221,7620.0,67,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15820.0,0.0,3160.0,3,1,2.0,2,1.0 +8362,11750,1480.5647856084959,68.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32360.0,0.0,0.0,30248.75,0.0,0.0,1,6,4.0,3,0.0 +8363,11751,2690.0078792252557,70.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24030.0,0.0,0.0,23533.45,0.0,0.0,1,0,0.0,3,0.0 +8364,11752,2944.3136998845753,59.0,211,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31050.35,0.0,31420.0,1,1,3.0,3,2.0 +8365,11753,1596.8500334092982,52.0,111,0.0,56,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43672.95,0.0,45240.0,1,7,5.0,4,2.0 +8366,11754,1519.106283593293,65.0,111,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,22020.0,0.0,0.0,21837.2,0.0,0.0,1,9,7.0,3,1.0 +8367,11755,3991.5473475595345,22.0,111,0.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50311.35,0.0,51810.0,4,10,8.0,5,2.0 +8368,11756,735.5707136303129,31.0,112,2640.0,55,1.0,0.0,4.0,1.9,0.0,850.0,0.0,0.0,0.0,0.0,23410.0,180.0,4620.0,3,9,0.0,2,1.0 +8369,11757,5395.75721847579,89.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22650.0,0.0,0.0,22371.8,0.0,0.0,3,10,8.0,1,0.0 +8370,11758,3780.052583995559,36.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26575.25,0.0,28840.0,3,8,7.0,1,1.0 +8371,11760,1792.2801223092733,54.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21591.65,0.0,25250.0,3,9,7.0,4,2.0 +8372,11761,1741.1919155505059,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35720.0,0.0,0.0,36985.45,0.0,0.0,1,4,4.0,3,0.0 +8373,11762,1606.7035046184521,66.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27430.0,0.0,0.0,23567.3,0.0,0.0,1,0,1.0,1,0.0 +8374,11763,1780.9949391419102,65.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31220.0,0.0,0.0,31046.3,0.0,0.0,1,0,0.0,3,0.0 +8375,11765,3767.1980303040796,48.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11965.4,0.0,4510.0,2,10,8.0,1,1.0 +8376,11766,2253.1638318935934,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16520.0,0.0,0.0,15627.75,0.0,0.0,1,9,7.0,1,0.0 +8377,11767,2768.484152287927,58.0,211,1350.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10170.0,0.0,0.0,11743.0,0.0,780.0,1,1,3.0,1,1.0 +8378,11768,1741.5484893606056,50.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50363.1,0.0,56400.0,2,10,0.0,3,2.0 +8379,11769,2032.580949858586,59.0,120,17180.0,74,1.0,1.0,4.0,2.3,0.0,0.0,0.0,22110.0,0.0,0.0,49912.3,0.0,9110.0,1,0,0.0,4,1.0 +8380,11772,1556.514524694655,90.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17500.0,0.0,0.0,17395.15,0.0,0.0,1,8,0.0,1,0.0 +8381,11773,3865.0360782481507,50.0,221,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14090.0,20.0,0.0,41568.65,0.0,29690.0,1,1,1.0,2,1.0 +8382,11775,2642.0005627718015,29.0,111,0.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21215.55,2450.0,18590.0,3,9,7.0,3,2.0 +8383,11776,840.3832270936367,50.0,111,0.0,31,1.0,0.0,2.0,1.5,0.0,2400.0,0.0,0.0,0.0,0.0,13673.0,160.0,240.0,3,8,6.0,2,1.0 +8384,11777,2754.2235197512673,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,6100.0,3520.0,0.0,6174.0,14712.2,0.0,0.0,1,10,8.0,1,0.0 +8385,11778,2799.8791491511556,88.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22290.0,0.0,0.0,21992.7,0.0,0.0,1,0,0.0,1,0.0 +8386,11781,2911.07673727539,71.0,111,18300.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,15310.0,0.0,0.0,33384.5,0.0,1500.0,3,10,8.0,2,2.0 +8387,11782,1949.629164022006,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61300.0,2537.0,19.0,60132.35508201384,0.0,0.0,1,5,4.0,3,0.0 +8388,11783,2622.4153556276624,75.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33140.0,0.0,0.0,32555.8,0.0,0.0,1,8,6.0,3,0.0 +8389,11785,3354.791345394443,53.0,111,5950.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25034.55,0.0,20220.0,3,8,7.0,5,2.0 +8390,11787,3821.0694434546554,44.0,111,6130.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14282.25,0.0,8160.0,3,9,7.0,1,1.0 +8391,11789,895.7104339231283,40.0,111,0.0,81,1.0,0.0,3.0,2.0,0.0,10010.0,0.0,0.0,0.0,0.0,25101.0,0.0,0.0,4,10,8.0,4,1.0 +8392,11790,2516.985288128388,66.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,16750.0,108.0,0.0,34117.2,0.0,18190.0,1,10,8.0,1,1.0 +8393,11791,2304.9576641239187,23.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15663.65,0.0,16010.0,3,6,4.0,1,1.0 +8394,11793,4610.412169148974,49.0,111,0.0,38,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,94196.15,0.0,106100.0,3,10,8.0,4,3.0 +8395,11794,1580.9786038205762,56.0,111,0.0,85,0.0,0.0,1.0,1.0,340.0,0.0,0.0,9340.0,0.0,0.0,11305.0,0.0,0.0,3,7,5.0,1,0.0 +8396,11795,2669.2894108456926,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37130.0,0.0,0.0,36601.0,0.0,0.0,1,7,0.0,3,0.0 +8397,11796,2454.720363846409,66.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16480.0,0.0,0.0,16691.8,0.0,0.0,3,8,0.0,1,0.0 +8398,11797,3131.1081448544196,28.0,112,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40698.15,0.0,34970.0,2,9,0.0,4,2.0 +8399,11798,2158.2370932269623,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17750.0,0.0,0.0,17435.742708827154,0.0,0.0,1,7,5.0,1,0.0 +8400,11800,1034.4235314957914,42.0,112,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,34369.95,0.0,34140.0,3,10,4.0,2,1.0 +8401,11801,2968.0442693836108,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1994.0,0.0,0.0,3,9,7.0,1,0.0 +8402,11802,2306.203734463902,62.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,41582.45,0.0,51220.0,1,10,8.0,1,1.0 +8403,11804,1836.4260060412187,46.0,112,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50372.1,0.0,51300.0,2,9,0.0,4,2.0 +8404,11806,3477.8041664148623,60.0,111,0.0,78,0.0,0.0,1.0,1.0,9700.0,0.0,0.0,0.0,0.0,0.0,13021.0,0.0,0.0,3,7,5.0,1,0.0 +8405,11807,2073.2380466297554,46.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43987.65,0.0,47420.0,3,8,7.0,3,2.0 +8406,11809,1610.4474447907935,61.0,111,0.0,,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47760.0,0.0,0.0,45103.45,0.0,0.0,1,7,5.0,3,0.0 +8407,11811,2134.4307352123847,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17390.0,0.0,0.0,16337.9,0.0,0.0,1,7,5.0,1,0.0 +8408,11813,2290.2464306303823,58.0,300,12760.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12226.0,0.0,0.0,1,0,0.0,1,0.0 +8409,11814,1714.3175198299696,43.0,111,30830.0,00,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62124.6,0.0,36430.0,3,9,7.0,3,2.0 +8410,11815,1151.850844264685,44.0,211,0.0,54,1.0,1.0,2.0,1.5,4040.0,0.0,0.0,0.0,0.0,0.0,12272.0,3090.0,4230.0,3,4,3.0,3,1.0 +8411,11816,751.6841846341932,40.0,111,0.0,45,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30712.25,0.0,29180.0,5,8,6.0,2,1.0 +8412,11818,2088.518556539422,36.0,120,0.0,62,2.0,2.0,3.0,1.8,4710.0,0.0,0.0,0.0,0.0,0.0,42022.05,0.0,37390.0,2,0,0.0,4,2.0 +8413,11819,2060.6140552426414,62.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,4400.0,0.0,0.0,0.0,0.0,12973.0,0.0,7340.0,3,9,7.0,1,1.0 +8414,11822,2151.306463177048,84.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10120.0,164.0,0.0,10692.177877880356,0.0,0.0,1,7,0.0,1,0.0 +8415,11823,2296.624349044013,60.0,111,6570.0,62,1.0,0.0,2.0,1.5,0.0,0.0,0.0,5130.0,0.0,0.0,24537.15,0.0,13230.0,3,8,6.0,3,1.0 +8416,11824,2424.7372634657977,52.0,221,60.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44341.910706554074,0.0,42650.0,1,1,2.0,3,2.0 +8417,11828,2903.0663913216626,33.0,300,6270.0,43,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,84883.95,0.0,6270.0,2,0,1.0,4,1.0 +8418,11829,1477.6740407125,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,86030.0,114.0,0.0,73811.9,0.0,0.0,2,5,4.0,3,0.0 +8419,11830,3447.5060795281643,26.0,400,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31290.75,0.0,32440.0,3,0,0.0,3,2.0 +8420,11831,1947.060740583964,54.0,120,0.0,42,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,139.0,0.0,43880.75,0.0,47040.0,1,0,0.0,4,2.0 +8421,11833,1936.1262824161395,76.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14180.0,0.0,0.0,13549.5,0.0,0.0,1,2,3.0,1,0.0 +8422,11834,4002.963906882796,42.0,111,0.0,68,1.0,0.0,5.0,2.4,0.0,9240.0,0.0,0.0,0.0,0.0,20775.0,140.0,340.0,3,9,7.0,4,1.0 +8423,11837,3809.482895691584,42.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,93440.6354508391,0.0,104210.0,3,10,8.0,4,2.0 +8424,11839,1728.2821060769318,52.0,111,0.0,62,3,3.0,4.0,2.5,0.0,4990.0,0.0,0.0,0.0,0.0,24340.65,3830.0,11920.0,3,10,8.0,4,3.0 +8425,11840,1908.1506866752954,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,42370.0,1732.0,0.0,39897.95,0.0,0.0,1,6,4.0,1,0.0 +8426,11842,2661.4820534059777,68.0,112,0.0,77,0.0,0.0,2.0,1.5,2070.0,0.0,0.0,30310.0,0.0,0.0,31809.45,0.0,0.0,1,4,0.0,2,0.0 +8427,11844,2198.3903895372814,67.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24030.0,0.0,0.0,23605.3,0.0,0.0,3,9,2.0,1,0.0 +8428,11845,2540.105821011304,55.0,111,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21241.7,2530.0,0.0,1,9,7.0,1,1.0 +8429,11847,1930.5435523771607,42.0,112,450.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,290.0,0.0,0.0,57423.75,0.0,50390.0,2,8,0.0,4,2.0 +8430,11849,3314.35666846056,30.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45816.55,0.0,48740.0,3,10,4.0,4,2.0 +8431,11850,1130.286871772044,65.0,112,0.0,75,0.0,0.0,3.0,2.0,0.0,5730.0,0.0,46630.0,0.0,0.0,46902.33298568313,0.0,0.0,1,10,3.0,4,0.0 +8432,11851,3543.6373058870513,60.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20.05000000000001,0.0,0.0,3,0,3.0,1,0.0 +8433,11852,1500.101558959089,52.0,111,0.0,37,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,72250.55,0.0,85480.0,1,10,8.0,4,1.0 +8434,11853,541.4748493836719,48.0,111,0.0,52,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30998.8,0.0,19210.0,3,9,7.0,2,1.0 +8435,11854,2171.715544171445,40.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39210.25,0.0,39090.0,3,9,7.0,4,2.0 +8436,11856,1473.1758073815643,67.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25780.0,3.0,0.0,25050.25,0.0,0.0,1,0,1.0,3,0.0 +8437,11858,3651.684737155977,29.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25524.15,0.0,27920.0,3,9,7.0,1,1.0 +8438,11859,1251.6245408113502,71.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24620.0,0.0,0.0,23940.1,0.0,0.0,1,0,3.0,3,0.0 +8439,11861,2092.2802455718333,75.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21960.0,0.0,0.0,22059.0,0.0,0.0,1,2,2.0,1,0.0 +8440,11862,1764.6393113896397,26.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20067.75,0.0,17820.0,3,7,5.0,1,1.0 +8441,11863,3009.659119367908,49.0,111,6530.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31634.6,0.0,28270.0,2,9,7.0,1,1.0 +8442,11864,6375.094449048539,74.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26330.0,144.0,0.0,23469.0,0.0,0.0,1,0,0.0,1,0.0 +8443,11865,3482.471921255735,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35340.0,0.0,0.0,33252.1180477861,0.0,0.0,1,10,8.0,3,0.0 +8444,11866,2820.2959766471217,26.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31577.2,0.0,33120.0,3,9,2.0,3,2.0 +8445,11867,2113.959662838871,58.0,112,2820.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3.0,0.0,27350.65,0.0,4940.0,1,4,0.0,3,2.0 +8446,11868,1016.3472575364161,27.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44352.55,750.0,46020.0,3,10,4.0,4,2.0 +8447,11869,1200.452817510203,50.0,111,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31583.95,0.0,31930.0,3,8,6.0,4,2.0 +8448,11871,2358.0870730949505,62.0,112,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,54240.0,0.0,0.0,66343.65,0.0,17680.0,3,10,5.0,4,1.0 +8449,11872,2838.793860084293,33.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46157.3,0.0,40160.0,3,8,6.0,3,2.0 +8450,11873,2325.196776783433,36.0,120,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53450.45,0.0,39750.0,2,0,2.0,4,2.0 +8451,11874,3375.3487043907044,18.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10557.0,0.0,0.0,3,9,7.0,1,0.0 +8452,11875,1621.1206788446077,52.0,111,4240.0,37,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,89543.0,0.0,96590.0,2,4,4.0,4,2.0 +8453,11876,1714.1565106292965,34.0,111,6630.0,68,2.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,37890.6,0.0,20690.0,1,7,6.0,4,2.0 +8454,11878,1772.5101162522271,38.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16981.5,890.0,16880.0,2,9,7.0,1,1.0 +8455,11879,2868.767274791349,53.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,61718.1,0.0,76900.0,2,10,8.0,1,1.0 +8456,11880,1424.13267418556,57.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15450.0,0.0,0.0,41170.15,0.0,26030.0,1,8,7.0,3,1.0 +8457,11883,3488.056840897929,29.0,111,14120.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29189.65,0.0,10470.0,2,9,7.0,4,2.0 +8458,11884,1592.9783971343566,44.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19667.1,0.0,21470.0,5,7,5.0,1,1.0 +8459,11885,1961.0837385842387,59.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17230.0,0.0,0.0,41250.05,0.0,26880.0,1,8,1.0,3,1.0 +8460,11886,1244.187481371308,63.0,211,0.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,34370.0,0.0,0.0,31475.55,0.0,370.0,3,4,4.0,1,1.0 +8461,11887,3005.101056924753,59.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,188.0,0.0,426713.92221511854,0.0,568630.0,1,10,8.0,3,2.0 +8462,11888,2536.275483020892,86.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19320.0,0.0,0.0,19426.35,0.0,0.0,1,6,4.0,1,0.0 +8463,11891,3396.6189878814334,51.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8737.0,0.0,0.0,3,7,5.0,1,0.0 +8464,11892,2668.335805040944,60.0,111,5950.0,52,1.0,0.0,2.0,1.5,0.0,0.0,0.0,8850.0,0.0,0.0,16408.0,0.0,0.0,3,7,5.0,3,1.0 +8465,11893,2682.185210179056,34.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20144.2,0.0,21650.0,3,7,5.0,1,1.0 +8466,11894,1532.5455792409643,36.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15194.0,0.0,8970.0,3,7,6.0,2,1.0 +8467,11895,1905.9809662244836,67.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,45450.0,0.0,0.0,37099.5,0.0,0.0,1,8,1.0,1,0.0 +8468,11897,2455.521631425085,40.0,111,0.0,48,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25863.9,0.0,21730.0,3,9,7.0,4,1.0 +8469,11898,2701.4148096797107,21.0,111,0.0,54,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11300.55,0.0,0.0,3,8,7.0,3,1.0 +8470,11899,2005.2242727341015,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42230.0,0.0,0.0,41707.3,0.0,0.0,1,6,5.0,3,0.0 +8471,11900,2680.9670103780763,53.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,67831.8053996397,0.0,84790.0,3,10,8.0,1,1.0 +8472,11901,3909.3291132112663,46.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19754.05,0.0,20610.0,3,9,7.0,2,1.0 +8473,11906,2608.5748290643737,44.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20436.2,0.0,16430.0,3,7,5.0,1,0.0 +8474,11907,1903.8228522561815,50.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,934.0,0.0,57272.0,0.0,55760.0,1,9,7.0,4,2.0 +8475,11909,918.1616935939106,22.0,120,3900.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39158.45,990.0,25460.0,3,0,0.0,4,2.0 +8476,11912,2616.7627292820102,46.0,111,0.0,31,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,92121.06300452423,0.0,0.0,1,6,5.0,4,1.0 +8477,11913,2313.5528436458867,51.0,111,0.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39450.75,0.0,43170.0,2,10,8.0,4,2.0 +8478,11914,1335.470046182222,38.0,111,0.0,67,1.0,0.0,7.0,3.2,0.0,9740.0,0.0,0.0,0.0,0.0,28287.0,0.0,0.0,3,9,7.0,4,1.0 +8479,11915,1236.857277534538,42.0,111,0.0,33,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37124.05,0.0,39550.0,2,8,7.0,2,1.0 +8480,11916,1798.9280914090016,47.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44211.0,0.0,46320.0,3,9,2.0,3,2.0 +8481,11917,3171.7257791763695,60.0,112,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,13430.0,0.0,0.0,22632.8,0.0,10430.0,2,8,0.0,3,1.0 +8482,11918,5003.819413085821,81.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,3010.0,6590.0,0.0,0.0,12764.0,0.0,0.0,3,10,8.0,1,0.0 +8483,11919,814.5030407289534,38.0,111,6300.0,37,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,627.0,0.0,38953.45,0.0,24530.0,3,9,7.0,2,1.0 +8484,11920,3322.771400628261,88.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16810.0,0.0,0.0,16360.55,0.0,0.0,1,8,3.0,1,0.0 +8485,11921,3989.308902451724,50.0,111,15410.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23736.7,0.0,0.0,3,10,8.0,1,1.0 +8486,11922,2670.6778747599174,40.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19290.8,0.0,19430.0,5,10,8.0,1,1.0 +8487,11923,3406.5580393431537,46.0,112,0.0,52,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24168.2,4540.0,19630.0,2,7,0.0,4,2.0 +8488,11924,3643.490831622066,83.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23050.0,72.0,0.0,20915.2,0.0,0.0,1,10,4.0,1,0.0 +8489,11927,1823.8095630078421,76.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23940.0,0.0,0.0,31908.95,0.0,0.0,1,0,0.0,3,0.0 +8490,11928,3084.2099720422775,28.0,112,1760.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29759.5,0.0,28160.0,3,9,0.0,3,2.0 +8491,11929,2903.730312530282,42.0,111,4230.0,68,1.0,0.0,6.0,2.7,0.0,4860.0,0.0,0.0,0.0,0.0,30354.0,70.0,7040.0,3,9,7.0,4,1.0 +8492,11933,3625.8693130487763,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37940.0,11.0,0.0,36785.2,0.0,0.0,1,10,8.0,1,0.0 +8493,11935,1091.3263275965235,34.0,111,0.0,85,0.0,0.0,4.0,2.5,9720.0,5620.0,0.0,500.0,0.0,0.0,23566.85,0.0,0.0,3,8,7.0,2,0.0 +8494,11936,1178.7099979148377,45.0,111,0.0,38,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,43232.7,0.0,40850.0,2,10,8.0,2,1.0 +8495,11937,2748.0287037757066,39.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,10.0,0.0,75561.15,0.0,89300.0,3,9,7.0,3,2.0 +8496,11938,2184.09429772083,52.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21863.25,0.0,23180.0,2,9,7.0,1,1.0 +8497,11941,2349.897275593397,42.0,112,0.0,43,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58519.9,0.0,57290.0,2,4,0.0,4,2.0 +8498,11942,2860.8598624778315,49.0,111,0.0,63,1.0,0.0,7.0,3.4,0.0,9970.0,0.0,0.0,0.0,0.0,34084.0,340.0,4260.0,3,6,4.0,4,1.0 +8499,11943,2521.1902647113225,65.0,111,0.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60187.5,0.0,64160.0,1,10,8.0,4,3.0 +8500,11945,2215.9613253737853,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21960.0,0.0,0.0,21222.2,0.0,0.0,1,9,7.0,3,0.0 +8501,11946,1821.6117914861418,80.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50580.0,0.0,0.0,46678.83608609083,0.0,0.0,1,10,4.0,3,0.0 +8502,11947,1365.9442885055835,51.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24713.1,0.0,20010.0,2,10,5.0,3,2.0 +8503,11948,3229.4992410512996,39.0,111,0.0,22,2.0,1.0,4.0,2.1,0.0,6400.0,0.0,0.0,0.0,0.0,19204.0,1030.0,0.0,3,9,7.0,4,2.0 +8504,11949,2519.8859187621933,52.0,111,7840.0,69,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13282.0,0.0,480.0,3,8,7.0,2,1.0 +8505,11952,1312.0421285341013,55.0,111,5640.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12570.0,0.0,0.0,20654.9,0.0,1090.0,3,6,4.0,2,0.0 +8506,11953,1941.914488500117,55.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59761.8,0.0,64520.0,1,7,4.0,3,2.0 +8507,11954,4436.056741960456,43.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,25.0,0.0,21075.0,0.0,21430.0,2,8,1.0,1,1.0 +8508,11956,2780.4448205505323,84.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33570.0,0.0,0.0,33291.7383831926,0.0,0.0,1,9,7.0,3,0.0 +8509,11958,2440.87006129073,67.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64290.0,0.0,0.0,65108.62592286227,0.0,0.0,1,0,0.0,3,0.0 +8510,11959,1887.032081341695,48.0,120,7220.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50977.75,0.0,47520.0,1,0,0.0,4,2.0 +8511,11960,1611.5085123745139,60.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40610.0,0.0,0.0,37972.45,0.0,0.0,1,6,0.0,3,0.0 +8512,11961,3112.1471863812876,61.0,111,9540.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9158.15,0.0,0.0,1,6,5.0,1,1.0 +8513,11963,731.3175874501584,30.0,120,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25132.3,2900.0,16630.0,3,0,1.0,2,1.0 +8514,11964,4570.255451565407,27.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,24182.9,0.0,26140.0,4,9,7.0,1,1.0 +8515,11965,1502.4912351972323,47.0,111,2800.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42767.0,0.0,38170.0,2,5,4.0,4,2.0 +8516,11966,3612.0072712887663,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8642.0,0.0,0.0,5,9,7.0,1,0.0 +8517,11967,1940.9458923179475,58.0,300,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18570.0,0.0,0.0,30202.45,0.0,12250.0,2,0,0.0,3,1.0 +8518,11968,2814.1496874454415,23.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15350.75,0.0,15630.0,3,7,5.0,1,1.0 +8519,11970,1379.6041799353472,32.0,111,0.0,38,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,47322.8,0.0,46310.0,3,10,8.0,2,1.0 +8520,11971,1049.8386672191093,49.0,300,6500.0,52,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16498.45,1210.0,5220.0,3,0,0.0,2,1.0 +8521,11973,6904.503514885956,93.0,111,0.0,75,1.0,1.0,2.0,1.5,690.0,0.0,0.0,17860.0,0.0,0.0,23647.51514957779,0.0,5770.0,1,9,7.0,2,1.0 +8522,11974,1352.3055178076302,66.0,400,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,56820.0,0.0,0.0,64272.25667014317,0.0,23620.0,1,0,0.0,3,1.0 +8523,11975,3427.9257318523323,67.0,400,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26570.0,0.0,0.0,42698.55,0.0,20310.0,1,0,0.0,3,1.0 +8524,11977,1754.060672450364,64.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23030.0,0.0,0.0,20381.75,0.0,0.0,1,0,0.0,1,0.0 +8525,11978,781.8947478848013,42.0,111,0.0,85,0.0,0.0,5.0,2.2,0.0,0.0,0.0,78270.0,2701.0,0.0,92338.0,0.0,0.0,1,10,8.0,2,0.0 +8526,11979,560.1768876930628,41.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,6810.0,0.0,0.0,0.0,0.0,28073.0,0.0,0.0,3,6,5.0,2,0.0 +8527,11981,2544.0843524192437,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38880.0,0.0,0.0,39286.95,0.0,0.0,1,9,7.0,3,0.0 +8528,11982,2958.1126579347974,38.0,300,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,14.0,0.0,120340.55,0.0,170840.0,1,0,0.0,4,2.0 +8529,11983,3705.190024625745,74.0,112,6690.0,75,2.0,1.0,5.0,3.0,0.0,0.0,0.0,68760.0,0.0,0.0,107158.08043045415,0.0,26180.0,1,10,2.0,4,2.0 +8530,11984,2902.6611641965783,62.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14010.0,0.0,0.0,13647.6,0.0,0.0,1,1,2.0,1,0.0 +8531,11987,632.1249926647974,50.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28077.7,0.0,29450.0,1,9,7.0,1,1.0 +8532,11988,685.5178500456965,41.0,400,0.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19213.15,800.0,8770.0,3,0,1.0,2,1.0 +8533,11989,3975.988218537444,26.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12233.6,0.0,13280.0,3,9,7.0,1,1.0 +8534,11990,2138.050292190659,47.0,111,4520.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,71816.8,0.0,58910.0,1,9,7.0,3,2.0 +8535,11992,2595.789085396679,54.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23545.1,0.0,25820.0,2,8,1.0,1,1.0 +8536,11993,2476.8453678432297,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26650.0,0.0,0.0,25684.25,0.0,110.0,1,9,7.0,3,0.0 +8537,11995,2519.606989348165,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,73880.0,4466.0,0.0,71201.9233545329,0.0,3490.0,1,10,8.0,3,0.0 +8538,11996,1970.2335623669858,70.0,300,1810.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20600.0,0.0,0.0,22249.0,0.0,0.0,1,0,0.0,3,0.0 +8539,11997,1836.8591865787475,74.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53850.0,0.0,0.0,49728.65,0.0,0.0,1,0,0.0,3,0.0 +8540,12002,698.5518822182947,46.0,211,0.0,52,1.0,1.0,3.0,1.6,8910.0,0.0,0.0,850.0,0.0,0.0,24763.3,0.0,8630.0,2,4,3.0,2,1.0 +8541,12003,4955.208693305772,35.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27655.0,0.0,29370.0,3,9,7.0,1,1.0 +8542,12004,695.969640129518,58.0,120,0.0,43,1.0,0.0,3.0,2.0,0.0,11280.0,0.0,0.0,0.0,0.0,21899.6,830.0,6690.0,2,0,0.0,2,1.0 +8543,12005,1372.9044878210564,20.0,111,2710.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11883.0,0.0,6330.0,3,8,6.0,1,1.0 +8544,12006,1997.9454875207139,37.0,111,2840.0,34,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26145.25,0.0,23540.0,3,4,4.0,3,2.0 +8545,12007,1734.4042999439257,49.0,111,10920.0,35,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,815.0,0.0,48165.235,0.0,11780.0,1,9,7.0,2,1.0 +8546,12008,1846.2260208824007,40.0,111,0.0,37,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,57925.2,0.0,53700.0,2,7,5.0,4,1.0 +8547,12009,2789.003266993276,46.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,87006.8,0.0,94850.0,1,9,7.0,4,2.0 +8548,12012,2151.028113736343,30.0,111,0.0,85,0.0,0.0,2.0,1.3,9720.0,0.0,0.0,0.0,0.0,0.0,16558.0,0.0,50.0,3,8,7.0,2,0.0 +8549,12013,7875.652103185991,49.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15242.75,970.0,13830.0,3,7,0.0,1,1.0 +8550,12014,2959.993207525575,27.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31140.0,0.0,35200.0,4,4,4.0,1,1.0 +8551,12015,547.4354169019882,47.0,400,0.0,55,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19716.75,1230.0,18300.0,1,0,0.0,2,2.0 +8552,12016,897.7767871598702,43.0,111,5380.0,52,2.0,0.0,6.0,3.1,0.0,2870.0,0.0,0.0,0.0,0.0,32701.0,0.0,1880.0,3,7,6.0,2,2.0 +8553,12017,2656.4739137245933,61.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5390.0,0.0,0.0,12639.2,0.0,9390.0,1,0,0.0,1,1.0 +8554,12018,189.8662315939369,44.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,9.0,0.0,69757.2,0.0,64970.0,2,7,1.0,4,2.0 +8555,12020,1910.5529419866696,39.0,112,5950.0,52,2.0,1.0,5.0,2.8,0.0,270.0,0.0,0.0,0.0,0.0,26753.8,300.0,13110.0,3,8,1.0,4,2.0 +8556,12021,2610.9512821371886,51.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39421.2,0.0,45060.0,1,10,8.0,1,1.0 +8557,12022,1774.7561247954548,68.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15410.0,0.0,0.0,17377.688627097752,0.0,2760.0,1,6,0.0,3,1.0 +8558,12023,3359.3200207973473,51.0,111,1590.0,46,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,47198.25,0.0,46770.0,3,9,7.0,4,3.0 +8559,12024,633.9275578910663,44.0,120,0.0,85,0.0,0.0,2.0,1.3,0.0,3930.0,0.0,0.0,0.0,0.0,4451.0,0.0,0.0,1,0,3.0,2,0.0 +8560,12025,1426.9324925201731,49.0,111,0.0,38,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,36243.55,0.0,36530.0,3,10,8.0,2,1.0 +8561,12026,2057.2735276852572,67.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37950.0,0.0,0.0,36573.3,0.0,2100.0,1,0,0.0,3,0.0 +8562,12027,1996.6246413712101,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33500.0,58.0,0.0,34354.64933630416,0.0,0.0,1,7,5.0,3,0.0 +8563,12029,4745.622174374636,63.0,111,5840.0,78,0.0,0.0,4.0,2.5,810.0,2980.0,0.0,43960.0,0.0,0.0,52655.9,0.0,730.0,3,10,8.0,5,0.0 +8564,12032,1808.60959430124,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52210.0,0.0,0.0,40815.9,0.0,0.0,1,8,7.0,3,0.0 +8565,12033,1603.9107335192289,58.0,300,2720.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28615.8,0.0,26420.0,1,0,0.0,3,2.0 +8566,12034,1491.5913281114213,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18760.0,0.0,0.0,17596.2,0.0,0.0,1,8,7.0,1,0.0 +8567,12036,2771.6770574864436,38.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50051.8,0.0,50280.0,2,6,0.0,4,2.0 +8568,12037,2104.9131051660756,81.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19830.0,0.0,0.0,23291.0,0.0,0.0,5,0,0.0,3,0.0 +8569,12038,4899.689014814601,42.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34674.95,0.0,40360.0,3,10,8.0,1,1.0 +8570,12039,1942.2014184501563,43.0,111,3310.0,63,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,34514.1,650.0,26960.0,3,7,6.0,4,2.0 +8571,12040,1418.5554361074544,58.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11617.2,2440.0,9330.0,5,8,0.0,1,1.0 +8572,12041,2105.0146836187455,51.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43679.25,0.0,46460.0,3,7,5.0,3,2.0 +8573,12042,5025.500626235969,59.0,211,0.0,68,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17715.3,0.0,18420.0,3,1,2.0,2,2.0 +8574,12043,5174.285316629702,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14640.0,0.0,0.0,14976.0,0.0,0.0,3,10,8.0,1,0.0 +8575,12044,2083.2871930589044,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11600.0,0.0,0.0,13256.0,0.0,610.0,3,9,7.0,1,0.0 +8576,12046,1159.4050408188486,47.0,111,0.0,63,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,14301.65,0.0,9670.0,2,9,7.0,2,2.0 +8577,12047,2851.9676813104757,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2402.0,0.0,0.0,3,7,5.0,1,0.0 +8578,12049,3347.641011433004,34.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31806.65,0.0,33050.0,2,6,4.0,3,2.0 +8579,12050,1720.7403583601458,62.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,48720.45,0.0,8150.0,1,9,7.0,1,1.0 +8580,12051,3923.2917451328144,44.0,120,2650.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,8300.0,0.0,0.0,24757.1,0.0,15670.0,3,0,0.0,1,1.0 +8581,12053,667.8467278361759,33.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,7710.0,0.0,0.0,0.0,0.0,14202.0,580.0,1400.0,3,7,5.0,2,0.0 +8582,12054,2093.938781191222,79.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43500.0,0.0,0.0,42085.45,0.0,0.0,3,9,3.0,3,0.0 +8583,12056,2309.315585430308,25.0,111,4260.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18011.15,380.0,8170.0,3,8,7.0,2,1.0 +8584,12057,3200.9438999833383,52.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23938.7,0.0,26700.0,3,8,6.0,1,1.0 +8585,12058,2144.597886424439,63.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39580.0,0.0,0.0,36765.95,0.0,0.0,1,9,7.0,3,0.0 +8586,12059,1426.24765919985,56.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,121.0,0.0,61416.6,0.0,70740.0,2,8,0.0,3,2.0 +8587,12061,4416.578669078964,29.0,221,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17038.9,0.0,17500.0,3,1,2.0,1,1.0 +8588,12062,3905.573599333034,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28240.0,0.0,0.0,28761.6,0.0,4550.0,3,10,8.0,1,0.0 +8589,12063,2124.4985518143117,52.0,111,10920.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,799.0,0.0,16004.5,2440.0,1770.0,5,4,4.0,1,1.0 +8590,12064,1099.1613629867663,46.0,111,0.0,85,0.0,0.0,2.0,1.5,0.0,7170.0,0.0,0.0,0.0,0.0,13413.05,0.0,0.0,3,7,6.0,2,0.0 +8591,12067,2446.930383566891,61.0,221,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32830.0,488.0,0.0,53889.326766385195,0.0,21790.0,1,1,1.0,3,1.0 +8592,12068,2083.819130304693,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29540.0,0.0,0.0,28371.25,0.0,0.0,5,6,4.0,1,0.0 +8593,12070,2142.3823268108317,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42980.0,0.0,0.0,38975.0,0.0,0.0,1,7,5.0,3,0.0 +8594,12071,1868.223623230175,36.0,111,0.0,69,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36360.95,0.0,35350.0,2,7,5.0,4,2.0 +8595,12072,2596.578513335828,57.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9290.0,0.0,0.0,28013.8,0.0,20030.0,1,7,0.0,3,1.0 +8596,12074,1098.2084683264136,62.0,211,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,1057.0,0.0,104142.5,0.0,129260.0,5,4,4.0,4,1.0 +8597,12078,1831.9423862233,90.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16190.0,0.0,0.0,15621.25,0.0,0.0,1,9,7.0,1,0.0 +8598,12079,2190.9659371662415,84.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13100.0,0.0,0.0,12869.6,0.0,0.0,1,0,0.0,1,0.0 +8599,12080,1534.0865793837406,53.0,300,0.0,54,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,5655.55,0.0,0.0,1,0,0.0,1,1.0 +8600,12081,599.8531031792413,39.0,111,0.0,52,1.0,1.0,5.0,2.6,9700.0,0.0,0.0,0.0,0.0,0.0,35162.0,60.0,3430.0,3,10,8.0,2,1.0 +8601,12082,2931.881905529658,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24040.0,0.0,0.0,23331.55,0.0,0.0,3,7,5.0,1,0.0 +8602,12086,1753.9532331564724,35.0,111,0.0,47,2.0,1.0,6.0,3.5,0.0,0.0,0.0,20630.0,0.0,0.0,50337.0,0.0,43550.0,1,10,8.0,4,2.0 +8603,12087,1581.3981779044648,75.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61780.0,0.0,0.0,52133.42141310815,0.0,0.0,2,8,0.0,3,0.0 +8604,12089,1994.407047449044,55.0,400,0.0,31,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,238338.4,0.0,0.0,1,0,0.0,4,2.0 +8605,12091,2371.513650334878,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28440.0,0.0,0.0,25760.95,0.0,0.0,3,9,7.0,1,0.0 +8606,12092,1197.4245324755545,79.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,9610.0,0.0,0.0,0.0,8789.15,0.0,0.0,1,8,7.0,1,0.0 +8607,12093,3077.053931093269,83.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,40510.0,0.0,0.0,22090.63565243262,0.0,0.0,1,10,8.0,1,0.0 +8608,12094,846.8363008862851,67.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34920.0,0.0,0.0,35305.05,0.0,0.0,1,4,3.0,3,0.0 +8609,12095,8565.899242514408,60.0,112,0.0,78,0.0,0.0,1.0,1.0,11870.0,0.0,0.0,0.0,0.0,0.0,14954.0,0.0,0.0,3,9,3.0,1,0.0 +8610,12097,1288.8238444773417,50.0,111,0.0,37,2.0,2.0,7.0,3.6,0.0,0.0,0.0,0.0,52.0,0.0,87825.45,0.0,77500.0,1,7,6.0,4,2.0 +8611,12098,1636.9739761147612,56.0,111,8960.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25816.85,0.0,18580.0,1,10,8.0,3,2.0 +8612,12099,2245.9326434464924,68.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21730.0,0.0,0.0,24691.75,0.0,0.0,1,8,1.0,3,0.0 +8613,12100,3000.1751935127495,68.0,112,0.0,64,1.0,0.0,1.0,1.0,0.0,0.0,920.0,7260.0,0.0,0.0,8457.1,0.0,0.0,1,7,0.0,1,1.0 +8614,12101,910.0442599144872,51.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,3370.0,0.0,0.0,0.0,0.0,14203.25,2360.0,4060.0,3,9,7.0,2,1.0 +8615,12103,2284.0374412612014,88.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40250.0,0.0,0.0,38301.1,0.0,0.0,1,9,2.0,3,0.0 +8616,12106,1767.6780362022475,50.0,112,0.0,53,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56573.2,0.0,61000.0,2,7,0.0,4,2.0 +8617,12109,3694.0842613822388,23.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17576.2,360.0,17150.0,3,6,4.0,1,1.0 +8618,12110,1534.6949991276954,45.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41455.95,0.0,44540.0,3,9,7.0,4,2.0 +8619,12111,2037.6155595524035,63.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31960.0,0.0,0.0,31245.05,0.0,0.0,3,8,7.0,3,0.0 +8620,12112,1819.116192815803,38.0,111,0.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38657.85,0.0,34750.0,2,8,6.0,4,2.0 +8621,12113,512.9247599797911,46.0,211,0.0,43,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38171.9,0.0,33060.0,2,2,3.0,2,1.0 +8622,12114,1142.8770554959615,24.0,112,1540.0,52,2.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,32272.0,2690.0,12950.0,3,4,0.0,5,2.0 +8623,12115,3503.785051602775,56.0,111,0.0,47,2.0,2.0,5.0,3.0,0.0,0.0,0.0,18210.0,0.0,0.0,80674.35,0.0,69320.0,2,8,7.0,5,2.0 +8624,12119,3225.091234740422,45.0,111,0.0,85,0.0,1.0,2.0,1.5,0.0,0.0,0.0,19110.0,0.0,0.0,39713.2,0.0,23350.0,2,9,7.0,2,0.0 +8625,12120,3465.301712297551,52.0,120,0.0,67,1.0,1.0,1.0,1.0,4230.0,0.0,0.0,0.0,683.0,0.0,17556.786970970643,0.0,11210.0,1,0,0.0,1,1.0 +8626,12122,2514.6548775469546,38.0,111,5430.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13383.7,470.0,6790.0,3,9,7.0,1,1.0 +8627,12123,4816.421630510628,37.0,112,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58851.5,0.0,50960.0,2,8,0.0,4,2.0 +8628,12125,1392.3828907429013,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24250.0,0.0,0.0,29131.81836067128,0.0,70.0,1,7,5.0,3,0.0 +8629,12126,614.1738241892683,38.0,111,0.0,62,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,33879.85,0.0,34530.0,2,9,7.0,2,1.0 +8630,12129,1801.2539942789838,48.0,111,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37586.9,0.0,29650.0,3,8,7.0,4,2.0 +8631,12130,1868.3630758058841,33.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43013.4,0.0,42160.0,2,7,5.0,4,2.0 +8632,12131,2090.4745469878394,54.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12470.0,0.0,0.0,3,0,0.0,3,2.0 +8633,12132,2793.088205587105,46.0,111,0.0,21,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,182.0,0.0,22634.4,0.0,22210.0,1,6,5.0,2,1.0 +8634,12134,1512.6595073934077,55.0,211,20.0,78,2.0,2.0,4.0,2.5,0.0,0.0,0.0,21470.0,0.0,0.0,47269.95,0.0,26400.0,2,2,3.0,4,2.0 +8635,12135,1499.5628385606367,60.0,120,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6467.65,1230.0,3870.0,3,0,1.0,1,1.0 +8636,12136,1541.8802523439062,49.0,221,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,2690.0,0.0,0.0,23639.95,2910.0,18260.0,1,1,1.0,2,2.0 +8637,12138,3167.386555555311,41.0,111,3020.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50319.3,0.0,54790.0,2,10,8.0,4,2.0 +8638,12139,1783.7465580393266,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13520.0,0.0,0.0,11998.5,0.0,0.0,1,6,5.0,3,0.0 +8639,12140,1674.1004574357676,44.0,111,0.0,34,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,52567.95063525173,0.0,54310.0,3,9,7.0,4,2.0 +8640,12141,2005.2609724868028,51.0,111,0.0,85,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8609.5,0.0,0.0,3,8,6.0,1,0.0 +8641,12142,2297.361139996526,47.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40710.4,0.0,13220.0,2,5,4.0,4,2.0 +8642,12143,1937.3498482966422,62.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17790.0,0.0,0.0,17602.15,0.0,0.0,3,7,5.0,3,0.0 +8643,12145,1670.2260280387968,37.0,300,8800.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24215.9,290.0,16230.0,2,0,1.0,4,2.0 +8644,12146,3586.97034708826,71.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21970.0,0.0,0.0,20878.05,0.0,0.0,3,9,1.0,1,0.0 +8645,12147,1829.1589240655458,70.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20140.0,0.0,0.0,19552.4,0.0,0.0,1,8,0.0,1,0.0 +8646,12149,1014.8933776629663,38.0,111,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47894.7,0.0,48330.0,2,7,5.0,4,2.0 +8647,12150,2241.277654513497,48.0,300,0.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43821.05,0.0,45210.0,2,0,1.0,4,2.0 +8648,12151,1838.121628791608,45.0,120,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,57689.15,0.0,58800.0,2,0,0.0,4,2.0 +8649,12152,2140.167169468846,45.0,111,0.0,53,1.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,42058.3,0.0,27820.0,3,9,7.0,4,1.0 +8650,12153,2779.2463074329194,82.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12940.0,0.0,0.0,13228.0,0.0,0.0,3,0,0.0,1,0.0 +8651,12155,524.7846236637427,40.0,111,5950.0,56,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,16127.1,0.0,0.0,3,8,7.0,2,1.0 +8652,12156,1010.8157559009303,59.0,111,5950.0,46,2.0,1.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,50353.15,0.0,31470.0,3,10,8.0,4,2.0 +8653,12157,3785.075735372021,70.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23320.0,237.0,0.0,24057.7,0.0,0.0,1,8,0.0,3,0.0 +8654,12158,4352.657398372718,79.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28460.0,809.0,0.0,32075.45,0.0,0.0,3,9,7.0,1,0.0 +8655,12160,1889.6244766588989,53.0,120,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11178.681079927941,0.0,11480.0,1,0,0.0,1,1.0 +8656,12161,1058.952898640886,49.0,112,6280.0,63,2.0,2.0,5.0,3.0,0.0,0.0,0.0,8320.0,0.0,0.0,48978.0,0.0,30310.0,2,9,3.0,4,2.0 +8657,12163,2843.0534675249914,70.0,112,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,36890.0,0.0,0.0,35745.781297999434,0.0,0.0,5,8,3.0,3,1.0 +8658,12164,1059.443705900385,37.0,111,1140.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23588.6,0.0,17670.0,3,9,7.0,2,1.0 +8659,12168,3092.2495611283525,23.0,111,0.0,63,1.0,0.0,3.0,1.8,0.0,8000.0,0.0,0.0,0.0,0.0,16748.0,0.0,0.0,3,7,6.0,4,1.0 +8660,12169,3494.352329394875,28.0,300,0.0,64,1.0,1.0,4.0,2.1,0.0,7580.0,0.0,0.0,0.0,0.0,34402.0,0.0,18580.0,3,0,1.0,4,1.0 +8661,12170,1520.6963289429164,49.0,300,10360.0,54,2.0,1.0,3.0,2.0,0.0,0.0,0.0,11010.0,0.0,0.0,44068.85,0.0,21330.0,1,0,0.0,4,2.0 +8662,12171,2485.7380381805365,40.0,211,40.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,25740.55,1260.0,12680.0,3,1,2.0,4,1.0 +8663,12172,2324.1568729477476,29.0,111,1760.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16110.1,0.0,14540.0,3,6,5.0,1,1.0 +8664,12173,2066.766123483793,48.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56462.7302029013,0.0,65030.0,1,9,7.0,4,2.0 +8665,12174,1970.3595029487187,67.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33400.0,0.0,0.0,30137.585652432615,0.0,0.0,1,9,2.0,1,0.0 +8666,12175,2526.1056244187944,60.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14680.0,0.0,0.0,14501.25,0.0,0.0,1,0,0.0,3,0.0 +8667,12176,2680.312800800569,35.0,111,0.0,47,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,40128.0,0.0,27020.0,3,10,8.0,4,2.0 +8668,12177,1697.5013283272224,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61710.0,0.0,0.0,54644.25,0.0,0.0,3,8,7.0,3,0.0 +8669,12178,730.3918646876635,41.0,111,1840.0,55,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,29702.35,0.0,16650.0,3,8,7.0,2,1.0 +8670,12180,2638.4135831817366,23.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9148.0,0.0,5880.0,3,7,6.0,1,1.0 +8671,12183,1545.0775229041542,50.0,120,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,404.0,0.0,67265.0,0.0,91730.0,3,0,0.0,2,1.0 +8672,12187,2361.158232553336,32.0,111,0.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40596.25,0.0,39910.0,3,9,7.0,4,2.0 +8673,12189,755.8457702996251,37.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38412.15,0.0,34640.0,3,9,7.0,4,1.0 +8674,12190,3139.47030662645,49.0,111,0.0,23,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,651.0,0.0,76851.85,0.0,88440.0,2,8,6.0,4,2.0 +8675,12191,3204.918144131921,68.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27690.0,0.0,0.0,25567.15,0.0,0.0,3,9,7.0,1,0.0 +8676,12193,1668.9124916547187,68.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20820.0,0.0,0.0,21749.5,0.0,0.0,1,0,0.0,3,0.0 +8677,12195,944.3118675288058,46.0,111,0.0,85,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,15924.0,0.0,0.0,3,9,7.0,1,0.0 +8678,12196,3015.952883833144,56.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,396.0,0.0,103658.55,0.0,119240.0,1,10,8.0,2,1.0 +8679,12197,1195.9271346889666,35.0,111,7390.0,52,1.0,0.0,2.0,1.3,0.0,1210.0,0.0,0.0,0.0,0.0,13993.45,210.0,0.0,3,8,7.0,2,1.0 +8680,12198,2513.476210791048,55.0,300,5950.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,2324.7,0.0,0.0,2,0,0.0,3,2.0 +8681,12200,1251.2397910801392,72.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62550.0,3575.0,0.0,66557.1,0.0,0.0,1,0,1.0,3,0.0 +8682,12201,1726.966565597382,84.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20730.0,0.0,0.0,20730.0,0.0,0.0,3,0,0.0,3,0.0 +8683,12203,2002.7821818353675,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,92560.0,321.0,0.0,88876.6,0.0,0.0,2,9,0.0,3,0.0 +8684,12205,1882.233333939569,33.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,1230.0,0.0,0.0,31568.55,0.0,29410.0,2,10,8.0,2,1.0 +8685,12206,1910.5035273470644,67.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10170.0,0.0,0.0,11919.2,0.0,2120.0,1,7,0.0,1,1.0 +8686,12207,641.6677241943141,32.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22439.8,2830.0,12420.0,3,4,4.0,2,1.0 +8687,12208,1917.9798191795808,53.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24247.0,0.0,25000.0,2,8,0.0,3,2.0 +8688,12209,3342.5903696983946,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6827.0,0.0,0.0,3,9,7.0,1,0.0 +8689,12210,2156.6843317716616,48.0,112,0.0,63,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,3.0,0.0,40947.35,0.0,40350.0,2,8,3.0,4,2.0 +8690,12212,858.1128794899774,42.0,111,9630.0,21,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,16974.45,0.0,1690.0,3,8,6.0,2,1.0 +8691,12213,692.8898403526008,34.0,112,10600.0,55,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24706.65,640.0,8720.0,3,10,5.0,2,1.0 +8692,12214,974.1516202923862,51.0,111,7570.0,63,1.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,26405.85,0.0,0.0,3,9,7.0,2,1.0 +8693,12215,2477.0221036450944,29.0,120,11780.0,43,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,424.0,0.0,43909.55,0.0,0.0,2,0,0.0,4,2.0 +8694,12216,2456.3810313114122,36.0,221,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30009.9,0.0,27870.0,2,3,4.0,4,2.0 +8695,12217,2032.6830648534574,43.0,400,10360.0,21,2.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,26596.4,170.0,13120.0,2,0,0.0,4,2.0 +8696,12219,1708.6605895969376,48.0,112,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26940.4,0.0,29640.0,1,5,0.0,1,1.0 +8697,12220,2453.210645568296,42.0,112,1840.0,68,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35180.1,0.0,31610.0,3,6,1.0,4,2.0 +8698,12221,3079.8004320588943,47.0,400,7410.0,11,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12798.6,0.0,4650.0,5,0,0.0,1,1.0 +8699,12222,1845.054809614611,87.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24390.0,0.0,0.0,23399.95,0.0,0.0,1,8,7.0,3,0.0 +8700,12223,3680.652600908933,55.0,111,9140.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51563.7354508391,0.0,48450.0,1,10,8.0,3,2.0 +8701,12224,6347.308771172601,22.0,111,0.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9214.7,0.0,8640.0,3,10,8.0,1,1.0 +8702,12225,3145.243716218716,25.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23269.0,0.0,25070.0,3,6,4.0,1,1.0 +8703,12226,937.029107915648,43.0,111,0.0,31,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,32592.2,0.0,5720.0,2,9,7.0,2,1.0 +8704,12227,1251.9672795112951,50.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15057.5,0.0,14850.0,2,10,8.0,2,1.0 +8705,12229,2475.8284307328877,55.0,111,3130.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34484.2,0.0,34780.0,3,10,8.0,3,2.0 +8706,12230,1996.9169622388144,55.0,400,0.0,67,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,46567.85317625865,0.0,33800.0,3,0,1.0,4,2.0 +8707,12231,1605.7550317783523,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51970.0,0.0,0.0,47193.7,0.0,0.0,1,9,7.0,3,0.0 +8708,12232,2257.868418625566,54.0,111,680.0,77,1.0,1.0,2.0,1.5,7100.0,2390.0,0.0,0.0,3.0,0.0,17940.6,0.0,7970.0,3,6,5.0,3,1.0 +8709,12233,1781.7068921725702,67.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23110.0,0.0,0.0,22532.4,0.0,0.0,1,0,0.0,3,0.0 +8710,12234,2022.1401651914641,53.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36140.95,0.0,29810.0,1,7,5.0,2,1.0 +8711,12235,2229.561739468717,76.0,111,0.0,77,1.0,1.0,2.0,1.5,4950.0,0.0,0.0,18310.0,0.0,0.0,36514.15,910.0,9970.0,3,6,5.0,2,1.0 +8712,12236,1739.047965877697,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13440.0,0.0,0.0,13147.5,0.0,0.0,1,8,6.0,1,0.0 +8713,12237,3050.7592510947843,53.0,300,0.0,69,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8700.0,0.0,0.0,3,0,0.0,1,1.0 +8714,12240,3569.94667745414,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21440.0,0.0,0.0,19940.0,0.0,0.0,1,10,8.0,1,0.0 +8715,12241,1780.3725145271378,77.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23550.0,0.0,0.0,35064.65,0.0,0.0,1,0,0.0,3,0.0 +8716,12242,4495.75393655268,26.0,111,8510.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27136.4,0.0,19850.0,3,9,7.0,3,1.0 +8717,12243,2772.8795182298804,87.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14810.0,0.0,0.0,15654.0,0.0,0.0,3,4,4.0,1,0.0 +8718,12244,1238.1032936992092,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36860.0,0.0,0.0,43238.75,0.0,0.0,1,9,7.0,3,0.0 +8719,12245,4582.903146650859,28.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,59888.85,0.0,68390.0,3,10,8.0,3,2.0 +8720,12246,2025.4414113607893,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19070.0,0.0,0.0,18366.8,0.0,0.0,3,9,7.0,1,0.0 +8721,12248,2458.0440291442496,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22345.2,0.0,24520.0,3,9,7.0,1,1.0 +8722,12249,1560.9289111877981,61.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,23371.0,0.0,115828.65,0.0,105780.0,5,5,4.0,4,2.0 +8723,12250,2369.0576376400736,45.0,112,0.0,21,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,53858.45,0.0,48700.0,2,5,0.0,4,2.0 +8724,12253,1913.7255042295365,44.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63536.95,0.0,65560.0,2,8,7.0,4,2.0 +8725,12255,1925.643198688874,35.0,221,0.0,55,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8874.15,0.0,0.0,3,1,3.0,1,1.0 +8726,12256,2882.0821956198843,30.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,61412.65,0.0,58560.0,2,8,0.0,4,2.0 +8727,12257,2634.3046418994454,35.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20269.1,0.0,20950.0,2,4,4.0,1,1.0 +8728,12258,2325.5430680177174,30.0,111,0.0,62,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,33983.55,0.0,17780.0,3,9,7.0,4,2.0 +8729,12259,2463.922136933563,71.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15180.0,0.0,0.0,14203.0,0.0,0.0,5,0,0.0,1,0.0 +8730,12260,1879.7904847847342,68.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15430.0,0.0,0.0,17893.35,0.0,0.0,1,1,2.0,1,0.0 +8731,12261,2908.8163019072404,58.0,300,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,61215.95,0.0,61050.0,2,0,1.0,5,2.0 +8732,12267,1356.4127213958723,56.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,5580.0,0.0,0.0,47383.05,0.0,47440.0,1,7,5.0,4,2.0 +8733,12268,1997.0539385557306,22.0,300,0.0,69,2.0,0.0,6.0,2.7,0.0,8750.0,0.0,0.0,0.0,0.0,25590.0,530.0,1980.0,3,0,0.0,4,2.0 +8734,12269,2591.9368937605127,34.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,61158.0,0.0,40410.0,3,8,7.0,4,2.0 +8735,12270,2424.180151808618,48.0,120,0.0,21,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27084.6,0.0,26040.0,2,0,0.0,4,3.0 +8736,12271,4506.0780256181815,52.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,48489.85,0.0,61470.0,2,8,0.0,1,1.0 +8737,12273,2162.141350574943,77.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21340.0,0.0,0.0,20913.053532770387,0.0,0.0,1,0,0.0,3,0.0 +8738,12274,538.471995184801,61.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29600.3,0.0,31410.0,1,10,8.0,2,1.0 +8739,12275,3477.206982345569,26.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,12492.0,0.0,0.0,3,6,4.0,1,1.0 +8740,12276,1312.6285253822684,69.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19570.0,0.0,0.0,33366.0,0.0,0.0,1,5,4.0,3,0.0 +8741,12277,2446.7633828317953,54.0,111,940.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27595.1,0.0,27270.0,1,9,7.0,2,2.0 +8742,12282,5061.900023381868,66.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11570.0,0.0,0.0,19023.65,0.0,0.0,1,7,0.0,1,0.0 +8743,12286,4059.8926722436977,81.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29950.0,0.0,0.0,27917.9,0.0,0.0,3,9,7.0,1,0.0 +8744,12287,1374.0631569815996,83.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18410.0,21.0,0.0,18155.15,0.0,0.0,5,4,4.0,1,0.0 +8745,12288,2009.4294841744231,79.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20850.0,8.0,0.0,21089.05,0.0,0.0,1,0,0.0,3,0.0 +8746,12289,666.2831533588529,45.0,111,0.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,21490.1,0.0,10730.0,3,9,7.0,2,1.0 +8747,12290,1373.3784128748396,31.0,221,6760.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29823.45,0.0,8470.0,3,1,1.0,3,2.0 +8748,12292,1080.2608502238625,55.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12330.0,0.0,0.0,14741.0,0.0,2110.0,3,4,3.0,3,0.0 +8749,12293,1966.3175736641956,56.0,111,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,90559.91913108155,0.0,106020.0,1,10,8.0,4,2.0 +8750,12294,2626.4529142633237,88.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,44560.0,0.0,0.0,40330.35,0.0,0.0,3,8,7.0,1,0.0 +8751,12297,2559.1121358207324,36.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51826.5,0.0,53440.0,2,10,8.0,4,2.0 +8752,12298,2366.362811159689,28.0,300,0.0,68,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15173.65,0.0,15060.0,5,0,0.0,2,1.0 +8753,12299,2660.8657334554255,78.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,20070.0,0.0,0.0,22558.0,0.0,0.0,5,8,7.0,1,1.0 +8754,12301,1698.913843639179,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22370.0,0.0,0.0,21340.217090167822,0.0,0.0,1,8,7.0,1,0.0 +8755,12302,2023.693944607977,47.0,112,16520.0,56,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,25147.3,0.0,6490.0,2,9,3.0,4,2.0 +8756,12303,1084.619328479818,44.0,211,0.0,56,1.0,1.0,3.0,1.8,0.0,130.0,0.0,0.0,0.0,0.0,21555.4,3250.0,9750.0,3,2,3.0,2,1.0 +8757,12304,1713.651792422971,63.0,221,0.0,75,1.0,1.0,5.0,3.0,0.0,0.0,0.0,21070.0,0.0,0.0,43247.5,0.0,22790.0,2,1,2.0,4,1.0 +8758,12307,1778.1620406780175,23.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,8320.0,0.0,0.0,0.0,0.0,17102.0,0.0,0.0,3,6,5.0,2,0.0 +8759,12308,1849.3938976970865,55.0,111,4760.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,350.0,0.0,37640.45,0.0,33440.0,1,6,5.0,3,2.0 +8760,12309,2715.033658342364,54.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15959.1,0.0,17660.0,1,0,0.0,1,1.0 +8761,12310,3784.5655551189866,37.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,74629.4,0.0,94020.0,2,10,8.0,3,2.0 +8762,12311,1333.6163658595547,55.0,211,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17463.7,450.0,17830.0,3,2,3.0,1,1.0 +8763,12312,3217.214924936239,58.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28620.0,600.0,0.0,26537.95,0.0,0.0,2,8,6.0,1,0.0 +8764,12313,1975.498196989049,53.0,111,0.0,46,1.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17983.51234855486,0.0,0.0,3,6,4.0,3,1.0 +8765,12314,1889.9684005317326,49.0,111,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42839.35,0.0,48000.0,2,9,7.0,2,1.0 +8766,12315,1959.7164636594146,54.0,120,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8860.0,1749.0,0.0,32830.9,0.0,23350.0,1,0,0.0,3,1.0 +8767,12316,1472.6287672281353,51.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45774.25,0.0,47330.0,1,7,5.0,3,2.0 +8768,12319,2187.0312331124874,58.0,111,0.0,63,3,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,39154.8,0.0,30560.0,3,9,7.0,4,3.0 +8769,12321,1345.3216311157523,42.0,112,0.0,52,1.0,1.0,5.0,2.8,0.0,0.0,0.0,4460.0,0.0,0.0,28245.85,0.0,14610.0,1,8,1.0,4,1.0 +8770,12322,1916.4522126512243,59.0,112,1690.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,4530.0,0.0,0.0,35934.5,0.0,31700.0,1,6,0.0,3,2.0 +8771,12324,1820.2020847165156,58.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24290.0,258.0,0.0,65852.4209016782,0.0,46650.0,1,9,7.0,3,1.0 +8772,12327,1606.3103449067614,80.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13790.0,0.0,0.0,8666.0,0.0,0.0,5,0,3.0,1,0.0 +8773,12329,6219.9995780047975,69.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38910.0,0.0,0.0,33593.45,0.0,0.0,3,10,8.0,1,0.0 +8774,12330,4149.345875404117,59.0,221,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14456.3,180.0,12780.0,3,1,1.0,1,1.0 +8775,12331,3708.9741023281695,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11660.95,0.0,0.0,3,7,5.0,1,0.0 +8776,12333,1071.3369441663083,48.0,111,7580.0,68,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15848.7,370.0,1610.0,3,7,6.0,2,1.0 +8777,12334,1866.9784741955857,76.0,400,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12980.0,0.0,0.0,13544.15,0.0,0.0,1,0,0.0,1,0.0 +8778,12335,3338.9732263869737,32.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53783.4,0.0,56860.0,3,9,7.0,3,2.0 +8779,12336,3328.83269493221,31.0,112,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18108.05,0.0,12820.0,3,5,0.0,1,1.0 +8780,12338,1342.1328435291346,57.0,112,0.0,,0.0,0.0,1.0,1.0,11870.0,0.0,0.0,0.0,0.0,0.0,14954.0,0.0,0.0,3,9,3.0,1,0.0 +8781,12339,1678.13381951933,38.0,211,0.0,37,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,30319.05,1020.0,23310.0,2,2,3.0,2,1.0 +8782,12340,2776.90936061925,67.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23770.0,0.0,0.0,23771.0,0.0,0.0,3,9,7.0,3,0.0 +8783,12342,2431.8789900578645,39.0,111,0.0,42,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,64101.7,0.0,61170.0,2,9,7.0,4,1.0 +8784,12344,196.0029346597453,36.0,211,0.0,52,1.0,1.0,2.0,1.3,9720.0,0.0,0.0,0.0,0.0,0.0,21769.6,1710.0,8380.0,2,3,3.0,2,1.0 +8785,12345,1940.063142059374,38.0,111,0.0,45,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,28.0,0.0,52349.0,0.0,38460.0,3,7,5.0,4,2.0 +8786,12348,2478.436436606674,92.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11210.0,0.0,0.0,10817.1,0.0,0.0,5,0,0.0,1,0.0 +8787,12349,2719.97298200804,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27670.0,15.0,0.0,26144.9,0.0,0.0,1,7,5.0,1,0.0 +8788,12350,3430.7040019901,25.0,120,0.0,63,3,3.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,81808.6,0.0,48310.0,1,0,2.0,5,3.0 +8789,12352,1449.2745133340043,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42910.0,0.0,0.0,44559.2,0.0,0.0,1,6,4.0,3,0.0 +8790,12353,1974.5846540008663,63.0,112,5510.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,625.0,0.0,66508.45,0.0,77310.0,1,9,2.0,4,2.0 +8791,12354,3346.179569641074,44.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53233.65,0.0,54930.0,2,8,0.0,4,2.0 +8792,12355,2427.096220071651,44.0,120,5750.0,65,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48258.75,0.0,46130.0,1,0,0.0,4,2.0 +8793,12357,2717.08076838319,42.0,300,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15044.55,0.0,15180.0,3,0,1.0,1,1.0 +8794,12358,2709.8524481846384,54.0,400,0.0,12,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20821.5,2570.0,0.0,1,0,0.0,2,1.0 +8795,12359,2230.4546604246448,76.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48810.0,599.0,0.0,46594.51173793496,0.0,0.0,1,10,4.0,3,0.0 +8796,12360,450.95226223616316,41.0,221,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23838.2,1720.0,22250.0,2,1,2.0,2,1.0 +8797,12361,2336.6998710178364,29.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39688.55,0.0,42030.0,3,8,1.0,3,2.0 +8798,12362,1989.9602392580741,87.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36210.0,145.0,0.0,44320.25,0.0,0.0,1,0,0.0,3,0.0 +8799,12363,1634.5483816818135,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55760.0,0.0,0.0,60544.85,0.0,0.0,1,9,7.0,3,0.0 +8800,12364,168.46211417272835,52.0,400,2890.0,56,2.0,0.0,3.0,2.0,0.0,7170.0,0.0,0.0,0.0,0.0,14696.0,0.0,0.0,3,0,0.0,2,2.0 +8801,12365,1300.6029593737046,56.0,300,6200.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26572.15,0.0,20930.0,1,0,1.0,3,2.0 +8802,12366,1960.9857424330942,36.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,88726.25,0.0,107220.0,3,9,7.0,4,2.0 +8803,12367,1500.3273138779348,61.0,112,17910.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23720.0,0.0,0.0,39033.4,0.0,0.0,1,8,1.0,3,0.0 +8804,12368,4373.905005825543,61.0,111,0.0,54,2.0,2.0,3.0,2.0,2500.0,3230.0,0.0,0.0,0.0,0.0,26385.0,470.0,18840.0,3,10,8.0,2,2.0 +8805,12369,421.5767140740955,38.0,300,0.0,63,2.0,2.0,4.0,2.3,0.0,4890.0,0.0,0.0,0.0,0.0,35365.2,1160.0,22980.0,3,0,1.0,4,2.0 +8806,12370,2650.5701022228673,79.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27030.0,0.0,0.0,28819.05,0.0,0.0,5,9,0.0,3,0.0 +8807,12372,1880.6489714953962,53.0,300,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9640.0,0.0,0.0,41218.4,0.0,35110.0,1,0,1.0,3,1.0 +8808,12373,2271.190871007756,85.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43220.0,0.0,0.0,41048.8563525173,0.0,0.0,1,10,8.0,3,0.0 +8809,12376,1738.9313447700672,35.0,300,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21899.25,0.0,19870.0,2,0,1.0,2,1.0 +8810,12377,1654.4860898823806,44.0,111,0.0,31,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43129.1354508391,0.0,23070.0,2,7,5.0,4,2.0 +8811,12378,3295.10561880682,71.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14600.0,0.0,0.0,14325.55,0.0,0.0,1,0,0.0,1,0.0 +8812,12380,3070.374025176418,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19970.0,0.0,0.0,17600.874035625213,0.0,0.0,1,9,7.0,1,0.0 +8813,12381,2087.2199152965945,63.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,31630.0,0.0,0.0,30612.0,0.0,0.0,1,10,8.0,1,1.0 +8814,12382,2503.6316069032596,55.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4125.0,0.0,44816.25,0.0,49570.0,1,10,0.0,1,1.0 +8815,12384,3284.097822916345,37.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35355.95,0.0,36690.0,2,7,0.0,3,2.0 +8816,12385,2384.7134792264496,23.0,221,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18230.0,0.0,18230.0,3,1,3.0,2,1.0 +8817,12387,3572.159099637283,26.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,62413.05,0.0,20270.0,2,8,1.0,4,2.0 +8818,12389,2595.322634025255,82.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21170.0,0.0,0.0,21058.85,0.0,0.0,1,0,0.0,3,0.0 +8819,12390,3098.444503978624,40.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,27.0,0.0,81317.8,0.0,52120.0,2,10,8.0,3,2.0 +8820,12391,2645.2479599500653,35.0,120,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21737.15,870.0,20120.0,3,0,1.0,1,1.0 +8821,12392,1975.452901700837,51.0,112,0.0,48,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52572.25,0.0,55000.0,2,8,3.0,4,3.0 +8822,12393,1102.9946950299643,32.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,10.0,0.0,49830.55,0.0,50540.0,3,7,4.0,4,2.0 +8823,12394,1322.6354393056104,54.0,221,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10063.0,0.0,0.0,2,1,2.0,1,1.0 +8824,12398,684.6082480162374,52.0,120,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,150.0,0.0,0.0,30092.0,0.0,30330.0,2,0,0.0,2,1.0 +8825,12399,2182.277516673871,42.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52391.7,0.0,54640.0,2,8,6.0,4,2.0 +8826,12400,2184.45941767579,56.0,112,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9860.0,0.0,0.0,74029.98029915558,0.0,0.0,1,8,0.0,3,1.0 +8827,12401,3034.4663772209565,42.0,400,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21170.4,0.0,22200.0,2,0,0.0,1,1.0 +8828,12402,2340.1382017329156,62.0,111,1990.0,78,1.0,1.0,3.0,1.8,0.0,0.0,0.0,18540.0,0.0,0.0,23091.0,0.0,310.0,3,8,6.0,4,1.0 +8829,12403,1687.5727059579324,47.0,111,1480.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37855.34282621631,0.0,32450.0,2,6,4.0,4,2.0 +8830,12404,2712.750228027621,54.0,111,4640.0,56,1.0,0.0,1.0,1.0,3710.0,0.0,0.0,2520.0,0.0,0.0,12511.7,0.0,0.0,3,10,8.0,1,1.0 +8831,12405,4265.170114400881,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17750.0,0.0,0.0,17538.75,0.0,0.0,3,10,8.0,1,0.0 +8832,12407,2850.29192291837,79.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15830.0,0.0,0.0,15709.0,0.0,0.0,1,0,1.0,1,0.0 +8833,12408,2312.298082520903,71.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24120.0,126.0,0.0,28774.85,0.0,0.0,1,8,2.0,1,0.0 +8834,12411,1861.186187918743,63.0,120,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,37750.0,0.0,0.0,68015.2,0.0,32230.0,2,0,2.0,3,1.0 +8835,12414,2787.5983140895187,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15900.0,0.0,0.0,14885.2,0.0,0.0,1,8,7.0,1,0.0 +8836,12415,947.2381905122194,54.0,111,0.0,,1.0,1.0,4.0,2.1,0.0,5730.0,0.0,0.0,0.0,0.0,21931.95,0.0,15110.0,1,9,7.0,4,1.0 +8837,12416,1627.8949090044107,52.0,221,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,831.0,0.0,62040.50836508881,0.0,25180.0,1,1,2.0,4,2.0 +8838,12417,563.377842559072,42.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36674.7,0.0,36900.0,2,6,4.0,4,2.0 +8839,12420,1411.7774237493566,47.0,112,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17812.35,1710.0,14530.0,1,8,0.0,2,1.0 +8840,12421,1849.0565437687867,73.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,3380.0,6230.0,0.0,0.0,9590.8,0.0,0.0,3,3,3.0,1,0.0 +8841,12422,3274.678341585788,77.0,300,0.0,75,0.0,0.0,2.0,1.5,7940.0,0.0,0.0,25400.0,0.0,0.0,32410.4,0.0,0.0,1,0,0.0,2,0.0 +8842,12423,760.0372621503589,46.0,111,0.0,68,1.0,1.0,3.0,1.6,0.0,0.0,0.0,4110.0,0.0,0.0,41379.25,0.0,24360.0,2,9,7.0,2,1.0 +8843,12426,785.6594905651989,38.0,211,7300.0,85,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,46151.45,0.0,20740.0,3,1,3.0,4,1.0 +8844,12428,1905.622450346592,27.0,112,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20453.45,3780.0,14400.0,3,9,1.0,2,1.0 +8845,12429,1871.6393079413037,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26680.0,0.0,0.0,25692.567407793686,0.0,0.0,1,6,0.0,3,0.0 +8846,12430,1905.2223763923273,59.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,14660.0,1599.0,0.0,29338.55,0.0,15550.0,1,7,4.0,3,2.0 +8847,12431,1578.4292362307738,81.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34070.0,0.0,0.0,32495.0,0.0,0.0,1,0,1.0,3,0.0 +8848,12432,3532.8722418020943,61.0,111,5950.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1150.0,0.0,0.0,10364.0,0.0,0.0,3,9,7.0,1,0.0 +8849,12434,1633.4024616101547,45.0,111,2460.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5705.9,430.0,3820.0,1,9,7.0,1,1.0 +8850,12435,3246.054999305643,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6900.0,0.0,0.0,3,9,7.0,1,0.0 +8851,12436,3870.245955702132,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17710.0,0.0,0.0,16948.8,0.0,0.0,1,8,7.0,1,0.0 +8852,12438,4952.4937034364975,69.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15840.0,0.0,0.0,16141.0,0.0,0.0,3,10,4.0,1,0.0 +8853,12439,3122.8598509225812,26.0,300,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22836.65,2630.0,13030.0,3,0,0.0,4,1.0 +8854,12441,1962.8090277798046,51.0,300,0.0,67,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,23764.5,1160.0,22890.0,2,0,0.0,4,2.0 +8855,12445,607.3261392553995,35.0,300,4170.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37603.1,0.0,17720.0,3,0,1.0,4,1.0 +8856,12446,4014.059276542275,34.0,112,20360.0,37,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34293.25,0.0,9960.0,3,9,3.0,3,2.0 +8857,12447,2361.997403862753,74.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,77860.0,0.0,0.0,65458.305353277035,0.0,0.0,1,10,0.0,3,0.0 +8858,12448,2591.8349644047935,61.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22690.0,0.0,0.0,20111.9,0.0,70.0,1,6,0.0,1,0.0 +8859,12449,2122.3527020110278,27.0,112,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22921.05,1850.0,13290.0,3,10,1.0,3,2.0 +8860,12451,3648.515440067982,35.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36132.7,1610.0,34810.0,3,9,7.0,3,2.0 +8861,12453,3309.704637313933,42.0,111,0.0,68,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,11944.65,0.0,12100.0,3,9,7.0,4,1.0 +8862,12454,2479.7400099514734,25.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32960.0,0.0,34250.0,3,9,7.0,5,2.0 +8863,12456,879.864016342915,61.0,111,240.0,68,3,1.0,7.0,3.8,0.0,0.0,0.0,0.0,0.0,0.0,27155.0,470.0,24830.0,2,10,8.0,4,4.0 +8864,12457,3659.543686157287,71.0,111,0.0,31,2.0,1.0,2.0,1.5,0.0,0.0,0.0,38380.0,115.0,0.0,45522.85,0.0,6430.0,1,10,8.0,3,2.0 +8865,12458,2791.184618772047,82.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22470.0,0.0,0.0,21392.3,0.0,0.0,3,10,3.0,1,0.0 +8866,12462,1700.260984265387,33.0,111,0.0,64,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,37855.4,0.0,27000.0,2,8,7.0,4,2.0 +8867,12463,1147.0695458149069,46.0,111,0.0,85,0.0,0.0,5.0,3.0,8110.0,1170.0,0.0,0.0,0.0,0.0,32710.0,0.0,0.0,3,9,7.0,2,0.0 +8868,12466,2545.4478976626815,33.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21192.0,0.0,22790.0,3,8,6.0,1,1.0 +8869,12467,1624.2263156161678,51.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24735.939304012078,0.0,25920.0,5,9,7.0,2,1.0 +8870,12468,3850.274790214545,36.0,112,17760.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17572.8,0.0,0.0,3,9,0.0,1,1.0 +8871,12469,1772.5267248131709,43.0,112,0.0,53,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,40885.8,0.0,25840.0,2,6,1.0,4,2.0 +8872,12470,2361.0462267279227,53.0,111,0.0,43,3,3.0,3.0,2.0,0.0,0.0,0.0,960.0,0.0,0.0,58320.85,0.0,61650.0,3,10,8.0,2,3.0 +8873,12471,2575.2422637885315,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52960.0,1930.0,0.0,50033.51896403296,0.0,0.0,1,10,8.0,3,0.0 +8874,12472,3488.701236381124,36.0,111,0.0,68,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28120.0,2450.0,14840.0,3,9,7.0,4,1.0 +8875,12473,2868.45067412241,40.0,400,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60321.85,0.0,55280.0,2,0,0.0,4,2.0 +8876,12474,4379.637170414238,66.0,111,0.0,74,0.0,0.0,1.0,1.0,3830.0,0.0,0.0,7110.0,0.0,0.0,14048.0,0.0,0.0,3,10,8.0,1,0.0 +8877,12475,2211.278110999215,63.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33450.0,0.0,0.0,30132.0,0.0,0.0,3,4,4.0,1,0.0 +8878,12476,1370.1406861902956,55.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,30850.0,0.0,0.0,59556.55,0.0,34650.0,2,6,4.0,3,1.0 +8879,12478,1652.0276910217929,62.0,111,7200.0,56,2.0,2.0,7.0,3.8,0.0,9480.0,0.0,17820.0,0.0,0.0,76630.0,4910.0,33730.0,3,10,8.0,5,2.0 +8880,12479,1840.3855787985508,60.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18794.2,0.0,20400.0,2,7,6.0,1,1.0 +8881,12481,1463.9136814789063,53.0,211,0.0,77,0.0,0.0,2.0,1.5,9720.0,0.0,0.0,0.0,0.0,0.0,8883.25,0.0,0.0,3,3,3.0,3,0.0 +8882,12482,468.23952134251795,32.0,112,1170.0,54,1.0,0.0,2.0,1.3,0.0,1600.0,0.0,0.0,0.0,0.0,20003.1,510.0,9590.0,3,8,3.0,2,1.0 +8883,12486,2322.614401843794,67.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16100.0,0.0,6969.0,25034.5,0.0,0.0,1,0,0.0,3,0.0 +8884,12487,2509.6201455408036,67.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24290.0,0.0,0.0,41285.15,0.0,20950.0,3,8,7.0,3,1.0 +8885,12488,1746.2698998101691,78.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49340.0,487.0,0.0,53288.15,0.0,0.0,1,9,1.0,3,0.0 +8886,12489,1829.6326255461508,33.0,111,15400.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,64254.05,0.0,54540.0,3,10,8.0,3,2.0 +8887,12491,482.75304834494966,54.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19640.0,0.0,0.0,21222.5,0.0,0.0,1,9,7.0,2,1.0 +8888,12493,1950.1917673998162,42.0,300,7440.0,62,2.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,22226.95,3090.0,4730.0,3,0,1.0,4,2.0 +8889,12494,3148.432782605184,60.0,111,4760.0,78,1.0,0.0,2.0,1.5,9700.0,0.0,0.0,0.0,0.0,0.0,19595.0,0.0,840.0,3,10,8.0,3,1.0 +8890,12495,2298.3436884385037,24.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18558.0,1070.0,17970.0,3,4,3.0,1,1.0 +8891,12497,1589.3002180925703,48.0,120,0.0,46,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,75590.7,0.0,60640.0,2,0,1.0,4,2.0 +8892,12498,2666.8287820162814,39.0,221,0.0,56,2.0,0.0,5.0,2.4,0.0,8820.0,0.0,0.0,0.0,0.0,21744.0,0.0,0.0,4,3,4.0,4,2.0 +8893,12499,2145.359810237709,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27970.0,0.0,0.0,27366.4,0.0,0.0,1,9,3.0,3,0.0 +8894,12501,2532.166655970461,54.0,120,2120.0,63,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53002.85,0.0,52750.0,1,0,0.0,4,3.0 +8895,12502,3287.638293667249,38.0,300,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27799.2,0.0,29000.0,3,0,0.0,4,2.0 +8896,12504,4653.699446649824,55.0,111,3670.0,52,1.0,1.0,4.0,2.5,9720.0,0.0,0.0,0.0,0.0,0.0,34627.85,0.0,19010.0,3,9,7.0,4,1.0 +8897,12506,2398.3333821166502,56.0,112,2260.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,24050.0,0.0,0.0,38710.95,0.0,17150.0,2,10,0.0,4,0.0 +8898,12507,3510.868661975198,42.0,111,0.0,85,0.0,0.0,1.0,1.0,5240.0,0.0,0.0,0.0,547.0,0.0,5956.85,0.0,0.0,3,9,7.0,1,0.0 +8899,12509,2650.176907720072,51.0,112,6270.0,65,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15448.85,0.0,10720.0,1,7,0.0,1,1.0 +8900,12510,2388.9910885741433,34.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28557.2,0.0,31000.0,2,8,1.0,1,1.0 +8901,12511,2055.1048085349616,69.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23730.0,0.0,0.0,22233.2,0.0,0.0,1,0,1.0,1,0.0 +8902,12512,3543.576693795907,55.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21660.9,0.0,21930.0,3,10,8.0,1,1.0 +8903,12514,2372.844913597715,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,72610.0,0.0,0.0,69642.55975917629,0.0,0.0,1,7,4.0,3,0.0 +8904,12515,1661.4727137571058,78.0,221,0.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,24220.0,0.0,0.0,24835.070901678202,0.0,0.0,1,1,2.0,3,1.0 +8905,12517,1888.1154066729923,65.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34430.0,0.0,0.0,33409.6,0.0,0.0,1,1,2.0,3,0.0 +8906,12518,2297.693783979822,48.0,112,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,18.0,0.0,68953.58532390586,0.0,67560.0,1,9,0.0,4,2.0 +8907,12519,1389.2162887038646,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32120.0,1006.0,0.0,30796.3,0.0,0.0,1,7,5.0,1,0.0 +8908,12520,2356.9066719694665,57.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16847.55,0.0,0.0,1,4,4.0,1,1.0 +8909,12527,1339.825208857846,65.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15330.0,0.0,0.0,43387.9,0.0,31000.0,1,10,2.0,3,1.0 +8910,12528,2648.0145211889007,65.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15380.0,582.0,0.0,16183.3,0.0,0.0,3,9,1.0,1,0.0 +8911,12529,4769.398912456687,25.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12703.05,0.0,13100.0,3,10,8.0,1,1.0 +8912,12530,2351.338595591577,70.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17520.0,0.0,0.0,22768.1,0.0,0.0,1,1,2.0,1,0.0 +8913,12531,1530.259145772479,45.0,120,0.0,85,1.0,1.0,5.0,3.0,0.0,0.0,0.0,1490.0,0.0,0.0,37146.9,0.0,28850.0,1,0,1.0,4,1.0 +8914,12533,3017.6762364096385,67.0,111,1980.0,78,1.0,1.0,3.0,2.0,9720.0,0.0,1060.0,8460.0,0.0,0.0,31934.0,0.0,8650.0,3,8,6.0,2,1.0 +8915,12535,3799.828362279292,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,1610.0,0.0,0.0,34466.0,0.0,0.0,1,9,7.0,1,0.0 +8916,12536,3612.9234202661037,48.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35676.4,0.0,41930.0,3,10,8.0,2,1.0 +8917,12537,2120.6515266594483,30.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48088.65,0.0,47200.0,2,10,8.0,4,2.0 +8918,12538,712.9903463865157,48.0,111,5020.0,38,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,85771.4,0.0,97560.0,2,9,7.0,4,1.0 +8919,12539,1651.4360011755368,56.0,111,3480.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21331.9,0.0,19960.0,3,10,8.0,1,1.0 +8920,12542,2791.355135056925,43.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24229.2,0.0,26370.0,3,8,7.0,1,1.0 +8921,12543,2251.104494254732,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29780.0,0.0,0.0,29371.9,0.0,0.0,3,7,6.0,3,0.0 +8922,12546,1859.9076684360614,59.0,112,17250.0,43,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37131.5,0.0,17920.0,2,8,3.0,4,2.0 +8923,12547,555.740339110149,47.0,111,0.0,56,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,28669.85,3380.0,17370.0,3,8,7.0,2,1.0 +8924,12549,632.3609056043576,36.0,111,0.0,37,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,34514.05,0.0,26540.0,2,8,7.0,2,1.0 +8925,12552,1404.8583050431384,32.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25427.35,2860.0,22880.0,3,10,8.0,2,1.0 +8926,12553,1251.2397910801392,66.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51290.0,0.0,0.0,46006.85,0.0,0.0,1,0,1.0,3,0.0 +8927,12554,1755.6329037726787,61.0,112,5860.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,38450.0,0.0,0.0,67344.5,0.0,30810.0,1,8,0.0,4,1.0 +8928,12555,2207.1418135372082,51.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,69739.716219347,0.0,58400.0,2,9,7.0,4,2.0 +8929,12556,1204.6777428196958,43.0,300,0.0,56,1.0,1.0,2.0,1.3,0.0,9810.0,0.0,0.0,0.0,0.0,26355.0,0.0,10600.0,3,0,0.0,2,1.0 +8930,12557,1353.0758166694839,47.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42712.45,0.0,44550.0,2,6,0.0,4,2.0 +8931,12559,2060.0105833922544,30.0,111,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37098.15,0.0,33140.0,2,6,4.0,4,2.0 +8932,12560,1435.1234650018648,33.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,5870.0,0.0,0.0,0.0,0.0,15447.1,0.0,2420.0,3,9,7.0,2,0.0 +8933,12561,1634.2916338146122,55.0,111,0.0,34,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,83687.3,0.0,99080.0,1,9,7.0,3,2.0 +8934,12563,3981.7220876207116,38.0,111,0.0,31,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,163061.2,0.0,221170.0,2,9,7.0,4,1.0 +8935,12564,3750.1977428966898,42.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,46896.35,0.0,11090.0,2,9,7.0,4,2.0 +8936,12565,2872.6617012368097,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13190.0,0.0,0.0,13742.0,0.0,0.0,3,9,7.0,1,0.0 +8937,12566,2755.2161036167745,71.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20040.0,0.0,0.0,18609.95,0.0,0.0,1,0,0.0,1,0.0 +8938,12567,2214.394849353021,57.0,120,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46284.4,0.0,57020.0,1,0,0.0,3,2.0 +8939,12568,8.805595705892259,40.0,112,570.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,6.0,0.0,29368.6,0.0,18420.0,3,10,0.0,2,1.0 +8940,12569,1536.5793869892868,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48690.0,6213.0,0.0,63312.448634620014,0.0,620.0,1,5,4.0,3,0.0 +8941,12570,818.6284517206147,60.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41340.0,493.0,0.0,38428.6,0.0,0.0,1,4,3.0,3,0.0 +8942,12571,3734.2842144432625,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,9678.0,0.0,0.0,3,9,7.0,1,0.0 +8943,12572,1819.626163335585,57.0,112,22190.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,71102.6,0.0,53730.0,3,9,3.0,3,2.0 +8944,12573,807.1311937971963,44.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21304.35,0.0,21370.0,3,10,8.0,2,1.0 +8945,12574,3779.196675747025,46.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,57818.75,0.0,62210.0,2,10,8.0,4,2.0 +8946,12575,1583.128382832209,71.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16560.0,0.0,0.0,13948.9,0.0,0.0,1,0,0.0,1,0.0 +8947,12577,2170.4484990410497,55.0,111,620.0,62,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20766.85,3340.0,13290.0,3,4,4.0,2,1.0 +8948,12578,1991.7348289538145,53.0,111,6910.0,67,1.0,0.0,1.0,1.0,0.0,230.0,0.0,0.0,0.0,0.0,13343.4,380.0,2330.0,3,6,4.0,1,1.0 +8949,12580,2339.272704538186,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39582.55,0.0,49950.0,1,8,6.0,1,1.0 +8950,12581,4368.855005582772,29.0,111,5850.0,69,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,15318.0,90.0,3320.0,3,7,5.0,4,1.0 +8951,12582,3392.3947938439374,24.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28169.9,960.0,27550.0,3,8,7.0,3,2.0 +8952,12583,2337.8326088203535,43.0,111,2310.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19266.35,110.0,15570.0,3,6,4.0,2,1.0 +8953,12585,1875.3568890342174,63.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39910.0,0.0,0.0,37590.85,0.0,0.0,3,0,1.0,3,0.0 +8954,12586,5488.56419519418,22.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29725.05,0.0,28270.0,3,10,8.0,1,1.0 +8955,12588,3117.472731920005,34.0,111,2290.0,52,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,61170.1,190.0,42790.0,3,8,6.0,4,2.0 +8956,12591,2714.5526706796672,35.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50374.7,0.0,56930.0,3,9,7.0,3,2.0 +8957,12592,2994.762018459895,39.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46386.35,0.0,44390.0,3,9,7.0,4,2.0 +8958,12593,2254.9040369020154,88.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25290.0,0.0,0.0,25988.15,0.0,0.0,3,4,4.0,3,0.0 +8959,12596,229.30862144161568,46.0,300,0.0,54,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,17271.45,1890.0,12250.0,3,0,0.0,2,1.0 +8960,12599,4415.517989401603,88.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18210.0,0.0,0.0,16635.3,0.0,0.0,3,9,7.0,1,0.0 +8961,12600,1119.647929204291,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41400.0,0.0,0.0,34487.55,0.0,0.0,3,10,8.0,1,0.0 +8962,12601,1936.5489242771748,58.0,112,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,326.0,0.0,29302.576789608418,0.0,37300.0,1,6,0.0,1,1.0 +8963,12602,1874.1228807105122,91.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13970.0,0.0,0.0,13995.0,0.0,0.0,5,9,0.0,1,0.0 +8964,12603,3581.433453589099,92.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16630.0,0.0,0.0,18288.6,0.0,0.0,1,9,7.0,1,0.0 +8965,12604,3809.732290648655,94.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41160.0,0.0,0.0,32731.453811510382,0.0,0.0,1,10,8.0,1,0.0 +8966,12605,3241.287265643086,42.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25911.3,0.0,28190.0,5,8,3.0,1,1.0 +8967,12606,4186.131388172948,60.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,5300.0,0.0,0.0,4296.05,0.0,0.0,1,1,2.0,1,0.0 +8968,12607,5024.524505988652,53.0,221,0.0,22,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,146.0,0.0,60791.35,0.0,65080.0,2,1,2.0,4,3.0 +8969,12608,2508.7138541344143,40.0,211,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,49086.1,0.0,45000.0,2,2,2.0,4,2.0 +8970,12609,4050.7977607470734,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13460.0,0.0,0.0,13937.0,0.0,0.0,3,5,4.0,1,0.0 +8971,12610,2014.3709755501884,48.0,300,0.0,55,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54775.3,710.0,51410.0,1,0,2.0,4,3.0 +8972,12612,3891.3091971760086,25.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19040.25,0.0,16050.0,3,9,7.0,1,1.0 +8973,12613,2946.071142561778,48.0,111,0.0,85,0.0,0.0,2.0,1.5,0.0,0.0,0.0,6100.0,0.0,0.0,5898.7,0.0,0.0,2,9,7.0,3,0.0 +8974,12615,2976.941717728889,70.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12560.0,0.0,0.0,12573.75,0.0,0.0,1,0,0.0,1,0.0 +8975,12616,585.6286618569487,37.0,211,0.0,46,1.0,1.0,5.0,2.2,0.0,0.0,0.0,0.0,0.0,0.0,32385.15,0.0,22650.0,3,2,3.0,2,1.0 +8976,12617,1414.0428255362942,57.0,112,8000.0,47,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,70833.1,0.0,69800.0,2,9,2.0,4,3.0 +8977,12618,1970.9890655855525,49.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6967.8,1130.0,6140.0,3,6,4.0,1,1.0 +8978,12620,4813.850603551564,72.0,400,1330.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28420.0,0.0,0.0,30394.4354508391,0.0,1400.0,3,0,1.0,3,0.0 +8979,12624,2677.1240090442016,54.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,44283.75,0.0,47600.0,3,8,1.0,4,2.0 +8980,12625,504.880064467916,45.0,111,0.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,28445.2,450.0,15340.0,3,8,6.0,2,1.0 +8981,12627,3088.9354103162277,60.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56319.05,0.0,64110.0,1,10,8.0,2,2.0 +8982,12628,2828.8742082133567,59.0,111,0.0,74,1.0,0.0,3.0,2.0,0.0,0.0,0.0,40650.0,0.0,0.0,34256.69292215796,0.0,0.0,3,10,8.0,2,1.0 +8983,12629,2349.2394245526657,66.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,36480.0,380.0,0.0,44754.55,0.0,5690.0,3,6,5.0,3,1.0 +8984,12630,2700.487229811481,85.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17520.0,0.0,0.0,17236.15,0.0,0.0,5,9,7.0,1,0.0 +8985,12633,1998.0813903022308,42.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46384.1,0.0,44550.0,2,10,0.0,4,2.0 +8986,12634,2333.918074691368,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,79920.0,656.0,0.0,157344.5354508391,0.0,63890.0,1,10,8.0,3,0.0 +8987,12635,2065.83119625688,64.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29250.0,0.0,0.0,28371.9,0.0,0.0,1,0,0.0,3,0.0 +8988,12636,1760.8584112024348,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46300.0,41.0,0.0,38802.96607838844,0.0,0.0,1,9,7.0,3,0.0 +8989,12637,2186.9299378622836,53.0,112,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14591.55,0.0,14630.0,1,9,1.0,1,1.0 +8990,12638,2693.477884574197,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10393.0,0.0,0.0,3,7,5.0,1,0.0 +8991,12639,2332.89770615861,39.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,68173.8,0.0,77430.0,3,10,4.0,4,2.0 +8992,12640,2216.5625764529846,69.0,211,0.0,71,1.0,1.0,3.0,2.0,0.0,0.0,0.0,24650.0,0.0,0.0,41307.65,0.0,7890.0,1,1,3.0,5,1.0 +8993,12641,1235.7593190065213,39.0,112,1140.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57098.45,0.0,55010.0,2,10,1.0,4,2.0 +8994,12642,2482.0541846235847,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48710.0,0.0,0.0,47000.55,0.0,0.0,1,6,4.0,3,0.0 +8995,12643,3041.1110128318237,29.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17093.0,440.0,16950.0,3,9,7.0,1,1.0 +8996,12645,4359.290282947197,35.0,111,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,55457.8,0.0,53070.0,3,10,8.0,4,2.0 +8997,12646,2841.3685399603983,37.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54182.35,0.0,59600.0,2,7,5.0,4,2.0 +8998,12647,1349.7785592280663,41.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,45559.05,0.0,49930.0,2,9,7.0,2,1.0 +8999,12649,1395.3728440426528,37.0,221,0.0,37,1.0,0.0,2.0,1.3,0.0,8260.0,0.0,0.0,0.0,0.0,12595.0,0.0,0.0,3,1,2.0,2,1.0 +9000,12650,1504.8257831102644,60.0,120,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,15290.0,0.0,0.0,82407.50667014316,0.0,58680.0,1,0,1.0,3,2.0 +9001,12651,2684.932735170816,47.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,119.0,0.0,48265.85,0.0,56640.0,3,7,5.0,1,1.0 +9002,12653,2159.9968061216837,62.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5120.0,0.0,0.0,33326.9,0.0,29800.0,1,7,5.0,1,1.0 +9003,12654,2963.121894495673,40.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,75003.6,0.0,64710.0,2,8,0.0,4,2.0 +9004,12655,3989.089637356398,28.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20299.5,4400.0,10370.0,3,4,3.0,2,1.0 +9005,12657,966.749107315063,48.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29935.0,1110.0,26730.0,3,7,5.0,4,2.0 +9006,12658,3647.8041711924957,33.0,300,6840.0,21,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,17210.05,0.0,0.0,3,0,0.0,4,2.0 +9007,12659,1439.6482159957711,30.0,111,7300.0,85,0.0,0.0,2.0,1.3,0.0,1120.0,0.0,0.0,0.0,0.0,14186.0,0.0,0.0,3,10,8.0,2,0.0 +9008,12660,1467.665742539019,59.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53491.2,0.0,58250.0,2,6,4.0,1,1.0 +9009,12661,2009.1564806174297,60.0,112,0.0,46,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,22.0,0.0,40227.75,0.0,40100.0,3,7,4.0,4,3.0 +9010,12663,1163.6937237915886,50.0,221,17900.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53604.95,0.0,37370.0,2,1,3.0,3,1.0 +9011,12665,2593.5852769066973,56.0,112,19970.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,101.0,0.0,19049.55,0.0,0.0,1,7,0.0,1,1.0 +9012,12666,1632.4976500889784,76.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53550.0,0.0,0.0,46661.68211966223,0.0,0.0,1,10,3.0,3,0.0 +9013,12668,1927.3981694498818,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27260.0,0.0,0.0,25782.85,0.0,0.0,1,5,4.0,3,0.0 +9014,12669,295.8200104033064,47.0,300,3140.0,47,2.0,2.0,7.0,3.6,0.0,0.0,0.0,0.0,0.0,0.0,45937.55,0.0,34470.0,2,0,0.0,4,2.0 +9015,12671,1647.0173240687166,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10852.05,0.0,0.0,3,8,7.0,5,0.0 +9016,12672,3881.144953977651,32.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,14747.55,0.0,13020.0,3,9,7.0,2,1.0 +9017,12673,458.6622343004108,33.0,111,1850.0,55,1.0,1.0,5.0,2.4,0.0,4600.0,0.0,0.0,0.0,0.0,26214.0,560.0,6380.0,3,9,7.0,2,1.0 +9018,12674,1383.8685602815474,35.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,1710.0,0.0,0.0,0.0,0.0,19052.95,3230.0,9200.0,3,9,7.0,2,1.0 +9019,12676,2545.146579059531,38.0,120,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45708.6,0.0,44510.0,2,0,0.0,4,2.0 +9020,12677,362.99426935442904,34.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,6040.0,0.0,0.0,0.0,0.0,20156.0,0.0,0.0,3,6,4.0,2,0.0 +9021,12678,3104.6990993204545,75.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19040.0,0.0,0.0,20668.95,0.0,0.0,5,0,0.0,1,0.0 +9022,12679,2157.7579198798085,72.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,65130.0,0.0,0.0,57856.8,0.0,0.0,1,6,0.0,3,0.0 +9023,12680,4219.146962525339,75.0,111,0.0,78,2.0,0.0,3.0,2.0,0.0,11600.0,0.0,18100.0,0.0,0.0,33271.05,4050.0,0.0,3,9,7.0,2,2.0 +9024,12681,2450.285522133195,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10302.0,0.0,0.0,3,8,7.0,1,0.0 +9025,12682,2068.0975552943178,47.0,400,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,62684.25,0.0,64520.0,1,0,1.0,4,2.0 +9026,12683,1762.165885504764,52.0,111,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30576.8,2960.0,27840.0,3,4,3.0,4,2.0 +9027,12684,471.1565052908861,42.0,111,0.0,68,1.0,0.0,3.0,1.6,9720.0,2020.0,0.0,0.0,0.0,0.0,19630.0,0.0,0.0,3,7,5.0,2,1.0 +9028,12685,1512.8787512245883,56.0,221,0.0,34,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,67814.6,0.0,37230.0,2,3,4.0,4,2.0 +9029,12687,520.4935803144494,49.0,111,15760.0,37,2.0,0.0,6.0,3.1,0.0,0.0,0.0,15190.0,0.0,0.0,42384.65,0.0,10840.0,2,9,7.0,2,2.0 +9030,12688,1153.2414690446553,46.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,500.0,65.0,0.0,35331.7,0.0,30460.0,2,10,8.0,2,1.0 +9031,12689,1848.213775127059,61.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24790.0,0.0,0.0,48724.3,0.0,27870.0,1,8,0.0,3,1.0 +9032,12690,3965.9346165382067,70.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22610.0,0.0,0.0,21049.0,0.0,0.0,5,1,2.0,1,0.0 +9033,12691,2146.191357497023,75.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43400.0,0.0,0.0,39800.15,0.0,0.0,1,1,1.0,3,0.0 +9034,12692,3416.989846681299,34.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33117.3,0.0,37470.0,2,10,8.0,1,1.0 +9035,12694,1395.804774961724,54.0,111,0.0,52,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47954.75,760.0,51470.0,2,9,7.0,4,3.0 +9036,12695,1487.4346500681083,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69570.0,1186.0,0.0,61188.0,0.0,0.0,1,10,8.0,3,0.0 +9037,12697,2490.0298843582946,64.0,221,0.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12030.0,0.0,0.0,30719.1,0.0,18960.0,3,1,3.0,5,1.0 +9038,12698,2052.59831740729,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4203.0,0.0,0.0,3,8,6.0,1,0.0 +9039,12699,2408.2253168706993,74.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14520.0,0.0,0.0,14291.55,0.0,0.0,1,9,0.0,1,0.0 +9040,12700,2494.2707741549234,76.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14740.0,0.0,0.0,14740.0,0.0,0.0,1,0,0.0,1,0.0 +9041,12701,1802.4773485605963,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14010.0,122.0,0.0,13688.85,0.0,0.0,1,8,6.0,1,0.0 +9042,12702,3042.412203038395,34.0,111,8580.0,85,0.0,0.0,2.0,1.3,0.0,6880.0,0.0,0.0,0.0,0.0,18467.3,0.0,0.0,3,9,7.0,2,0.0 +9043,12703,4977.945554577572,83.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15120.0,0.0,0.0,15897.0,0.0,0.0,3,8,1.0,2,0.0 +9044,12704,1523.8145086885427,66.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34870.0,0.0,0.0,35356.0,0.0,0.0,1,0,3.0,3,0.0 +9045,12706,555.6370462094688,38.0,112,0.0,68,1.0,1.0,2.0,1.5,0.0,2730.0,0.0,0.0,0.0,0.0,16659.8,2750.0,4640.0,3,4,0.0,2,1.0 +9046,12709,1510.0965626796292,72.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36090.0,0.0,0.0,35634.45,0.0,0.0,1,0,1.0,3,0.0 +9047,12710,1248.9146311890863,32.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40489.9,0.0,43120.0,3,8,1.0,4,2.0 +9048,12711,2685.6825381414087,36.0,112,5160.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8465.0,0.0,0.0,1,7,1.0,1,1.0 +9049,12712,1661.2083609910876,87.0,400,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14730.0,0.0,0.0,18823.0,0.0,0.0,1,0,0.0,1,0.0 +9050,12713,2419.9948388354496,28.0,120,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44671.65,0.0,44970.0,2,0,0.0,3,2.0 +9051,12715,2905.7295997601905,29.0,112,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22678.95,0.0,10830.0,3,8,1.0,4,1.0 +9052,12716,3801.098544572886,60.0,111,0.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,11610.0,0.0,0.0,28360.45,0.0,17610.0,3,10,8.0,4,2.0 +9053,12717,3390.5124884802062,94.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,2250.0,4400.0,0.0,0.0,6650.0,0.0,0.0,3,9,7.0,1,0.0 +9054,12721,2080.26523389094,39.0,111,1800.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12313.5,0.0,10700.0,5,7,5.0,1,1.0 +9055,12722,1569.2289531835129,42.0,300,0.0,12,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,22294.0,124151.15,0.0,68110.0,2,0,1.0,4,2.0 +9056,12724,1341.7883574842451,63.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37750.0,0.0,0.0,37311.8,0.0,490.0,1,0,0.0,3,0.0 +9057,12725,3426.4339648132504,26.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26186.2,0.0,28340.0,3,10,8.0,1,1.0 +9058,12726,2706.9695948674507,56.0,211,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,70000.32238412944,0.0,83020.0,2,1,3.0,3,1.0 +9059,12727,3095.913610464819,42.0,112,0.0,64,2.0,2.0,5.0,2.6,8910.0,0.0,0.0,0.0,0.0,0.0,48838.85,0.0,31590.0,2,7,0.0,4,2.0 +9060,12728,1967.679126386676,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24310.0,0.0,0.0,22191.05,0.0,0.0,3,7,5.0,1,0.0 +9061,12729,4498.994950379687,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23570.0,0.0,0.0,21492.6,0.0,0.0,1,8,6.0,1,0.0 +9062,12730,4493.329097806238,79.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15860.0,0.0,0.0,17432.15,0.0,0.0,5,1,1.0,1,0.0 +9063,12731,2755.840032187494,34.0,112,0.0,42,2.0,1.0,2.0,1.5,0.0,5340.0,0.0,0.0,0.0,0.0,47663.0,110.0,50190.0,1,10,3.0,5,2.0 +9064,12732,1918.72212498157,30.0,111,8090.0,69,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,208.0,0.0,33833.15,0.0,23360.0,3,7,6.0,4,2.0 +9065,12734,1960.6997895056013,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26210.0,0.0,0.0,22467.105082013844,0.0,0.0,1,9,7.0,1,0.0 +9066,12735,2824.651720027512,21.0,111,0.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10485.0,0.0,7480.0,5,8,7.0,1,1.0 +9067,12736,9688.330151410568,21.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25393.6,680.0,22360.0,3,9,7.0,3,2.0 +9068,12737,2516.022663246856,38.0,111,0.0,33,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,34998.4,0.0,26280.0,3,9,7.0,2,1.0 +9069,12738,2789.550693162292,24.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34376.9,2390.0,32940.0,3,8,6.0,3,2.0 +9070,12739,2108.7937553785614,65.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34958.0125,0.0,0.0,5,10,8.0,3,2.0 +9071,12740,1831.3925168951343,34.0,112,2940.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40343.55,0.0,38750.0,5,8,0.0,3,2.0 +9072,12741,2050.0608860936677,42.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,109446.2,0.0,120960.0,1,7,5.0,4,2.0 +9073,12742,2130.7241901499915,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53510.0,0.0,0.0,47770.897164814494,0.0,0.0,1,10,0.0,3,0.0 +9074,12743,774.1983354425284,30.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58204.85,0.0,62780.0,3,9,7.0,3,2.0 +9075,12745,3073.236848848018,21.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44477.0,340.0,47880.0,3,8,7.0,3,2.0 +9076,12747,1633.535404286285,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16710.0,0.0,0.0,16214.5,0.0,0.0,1,7,5.0,1,0.0 +9077,12748,2652.490262166705,46.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61100.6,0.0,63550.0,2,8,6.0,4,2.0 +9078,12749,1677.2760752063357,72.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53520.0,0.0,0.0,49659.8,0.0,0.0,1,9,1.0,3,0.0 +9079,12751,3424.95431618561,36.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28175.55,0.0,29390.0,3,10,8.0,1,1.0 +9080,12752,3005.1284669288198,61.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7510.0,0.0,0.0,18991.3,0.0,13430.0,1,7,6.0,1,0.0 +9081,12753,487.48403299704165,49.0,111,23620.0,22,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,1895.0,0.0,83015.75,0.0,48040.0,1,7,5.0,4,1.0 +9082,12754,1422.6405260185481,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37440.0,0.0,0.0,36168.1,0.0,0.0,1,8,6.0,3,0.0 +9083,12756,2732.183669844476,74.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17470.0,0.0,0.0,17081.3,0.0,0.0,4,10,8.0,1,0.0 +9084,12757,1231.0907173469086,58.0,211,0.0,42,2.0,2.0,3.0,2.0,0.0,0.0,0.0,660.0,0.0,0.0,60372.95,0.0,64680.0,1,4,4.0,4,2.0 +9085,12758,2969.7845421724737,91.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23270.0,0.0,0.0,25392.0,0.0,0.0,5,8,6.0,1,0.0 +9086,12760,2016.288965469617,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41560.0,0.0,0.0,38243.05,0.0,0.0,1,9,7.0,3,0.0 +9087,12762,3632.8046524600104,27.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,16.0,0.0,42074.35,0.0,45000.0,2,7,5.0,3,2.0 +9088,12763,2269.2567029844727,56.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16606.35,0.0,17310.0,3,8,7.0,1,1.0 +9089,12767,2641.873145485674,32.0,212,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37899.6,0.0,34100.0,2,4,0.0,4,2.0 +9090,12768,3555.348868532065,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,340.0,9250.0,0.0,0.0,9069.1,0.0,0.0,1,10,8.0,1,0.0 +9091,12770,2085.6686387496275,37.0,400,9480.0,65,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27344.4,1350.0,14740.0,2,0,0.0,4,2.0 +9092,12771,2479.283802949278,78.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,72280.0,0.0,0.0,74838.2,0.0,0.0,1,6,4.0,3,1.0 +9093,12772,1992.4912859611968,81.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24070.0,0.0,0.0,24074.0,0.0,0.0,3,9,7.0,3,0.0 +9094,12773,2309.3815753694607,70.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36740.0,0.0,0.0,55162.233831925965,0.0,0.0,1,10,8.0,1,0.0 +9095,12775,970.5050682385515,48.0,112,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23923.25,0.0,21370.0,3,10,3.0,2,1.0 +9096,12777,2396.2221370317443,54.0,300,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46160.35,0.0,48460.0,1,0,1.0,4,2.0 +9097,12778,5280.341411585762,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13480.0,0.0,0.0,9549.9,0.0,0.0,1,9,7.0,1,0.0 +9098,12780,3472.601580303891,46.0,300,0.0,54,1.0,1.0,4.0,2.3,0.0,0.0,0.0,26270.0,0.0,0.0,66364.45,0.0,42270.0,2,0,0.0,5,1.0 +9099,12782,2479.594364929587,89.0,400,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24920.0,0.0,0.0,24757.5,0.0,0.0,1,0,0.0,2,0.0 +9100,12783,3449.714966937154,47.0,111,1810.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13478.4,0.0,7510.0,3,10,8.0,1,1.0 +9101,12784,2046.0994334099141,84.0,111,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13440.0,0.0,0.0,14179.5,0.0,0.0,1,9,7.0,1,0.0 +9102,12785,2358.289001978993,49.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20305.95,2420.0,14250.0,1,8,7.0,3,2.0 +9103,12786,1673.015260152109,45.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46199.15,0.0,48680.0,1,9,7.0,4,2.0 +9104,12788,2604.3336746510377,70.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52340.0,0.0,0.0,48998.75,0.0,0.0,1,0,0.0,3,0.0 +9105,12791,3809.6497552927262,57.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25743.85,0.0,29960.0,1,9,7.0,1,1.0 +9106,12793,1947.3697913822932,59.0,211,0.0,12,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24910.0,0.0,0.0,18528.75,0.0,0.0,1,2,3.0,3,1.0 +9107,12794,1874.07138887693,86.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11090.0,0.0,0.0,10973.0,0.0,0.0,1,9,7.0,1,0.0 +9108,12795,1962.0932372786876,51.0,120,0.0,54,1.0,1.0,2.0,1.5,2460.0,0.0,0.0,0.0,0.0,0.0,20302.3,0.0,18410.0,1,0,1.0,3,1.0 +9109,12796,735.1966337847206,58.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,10410.0,0.0,0.0,26521.3,0.0,14750.0,1,9,0.0,2,1.0 +9110,12798,1637.8403935558874,64.0,111,0.0,75,0.0,0.0,2.0,1.3,0.0,0.0,0.0,22630.0,272.0,0.0,28812.4,0.0,0.0,1,9,7.0,2,0.0 +9111,12805,1377.6275779306109,45.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22217.05,0.0,23040.0,2,6,5.0,1,1.0 +9112,12807,240.73590250522656,33.0,0,0.0,33,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24476.45,340.0,24550.0,3,0,0.0,2,1.0 +9113,12808,771.0171574158828,59.0,112,0.0,52,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,36360.05,0.0,26540.0,3,10,5.0,2,1.0 +9114,12809,1991.673048237992,38.0,111,0.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,51401.75,130.0,39950.0,3,4,4.0,4,2.0 +9115,12810,1699.2525636749397,54.0,120,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56374.9,0.0,61160.0,1,0,0.0,3,2.0 +9116,12811,2335.0118947116257,49.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46755.95,0.0,51470.0,2,9,7.0,3,2.0 +9117,12814,5975.576345490203,27.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19162.85,0.0,20390.0,3,9,3.0,1,1.0 +9118,12816,3302.4810753165953,59.0,111,0.0,77,3,2.0,5.0,3.0,0.0,0.0,0.0,27690.0,0.0,0.0,24552.65,0.0,0.0,1,4,3.0,4,3.0 +9119,12817,957.706175482557,47.0,111,0.0,21,2.0,1.0,3.0,1.8,0.0,5420.0,0.0,0.0,0.0,0.0,16745.25,0.0,0.0,1,6,5.0,4,2.0 +9120,12818,962.4389135591521,33.0,112,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19079.05,990.0,14170.0,2,9,2.0,2,1.0 +9121,12819,2260.0595419682004,51.0,111,15710.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48612.35,0.0,38100.0,1,9,7.0,4,2.0 +9122,12821,2431.2269393638,30.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50215.65,0.0,55410.0,1,8,0.0,3,2.0 +9123,12822,785.6655436265721,44.0,221,0.0,56,2.0,0.0,3.0,2.0,0.0,3260.0,0.0,0.0,0.0,0.0,16460.0,1000.0,3540.0,3,1,2.0,2,2.0 +9124,12824,2625.7687337542266,58.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21762.6,0.0,24160.0,2,7,6.0,1,1.0 +9125,12825,2302.4854633699542,58.0,111,2980.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,55953.6,0.0,54400.0,3,7,5.0,4,3.0 +9126,12826,3112.2464078031567,32.0,221,6850.0,21,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,48203.88432255618,0.0,42530.0,3,1,2.0,4,2.0 +9127,12828,5535.511499567206,37.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34794.0,0.0,40380.0,3,9,7.0,1,1.0 +9128,12829,1800.43963192022,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62820.0,0.0,0.0,53533.55,0.0,0.0,1,10,8.0,3,0.0 +9129,12830,1786.0598279597361,44.0,120,4440.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,18153.35,0.0,8250.0,2,0,1.0,4,2.0 +9130,12831,3098.597246126758,73.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33230.0,0.0,0.0,32426.35,0.0,0.0,5,9,7.0,3,0.0 +9131,12832,3227.2756704356802,58.0,111,20560.0,74,1.0,1.0,4.0,2.5,0.0,0.0,0.0,43140.0,0.0,0.0,84146.2,0.0,31310.0,1,9,7.0,4,1.0 +9132,12833,907.8225821630324,51.0,112,0.0,68,2.0,0.0,3.0,2.0,0.0,12990.0,0.0,0.0,0.0,0.0,15660.0,350.0,610.0,3,8,2.0,2,2.0 +9133,12834,3659.6869919968026,81.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27080.0,0.0,0.0,26713.4,0.0,0.0,3,4,4.0,3,0.0 +9134,12835,2463.3632505590085,31.0,112,22910.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,11.0,0.0,35282.585,0.0,16440.0,2,8,1.0,3,2.0 +9135,12836,2130.290792534861,38.0,112,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50473.55,0.0,50160.0,2,8,0.0,4,2.0 +9136,12837,639.8923849080502,59.0,211,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12692.3,0.0,12830.0,3,3,4.0,1,1.0 +9137,12839,1988.6228918852848,53.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43817.85,0.0,44050.0,2,7,0.0,4,2.0 +9138,12841,1783.506786651142,62.0,112,0.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,55190.0,0.0,0.0,53931.25256210468,0.0,5240.0,1,7,4.0,3,1.0 +9139,12842,3925.056207342637,61.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19565.45,0.0,19830.0,3,10,8.0,1,1.0 +9140,12844,2259.76136278492,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14340.0,0.0,0.0,18540.0,0.0,0.0,3,7,5.0,2,0.0 +9141,12845,2464.5368639374988,25.0,112,0.0,81,1.0,0.0,4.0,1.9,0.0,470.0,0.0,0.0,0.0,0.0,15269.75,850.0,0.0,3,6,0.0,2,1.0 +9142,12846,2520.5896293051433,60.0,120,0.0,74,0.0,0.0,3.0,2.0,9720.0,0.0,0.0,25870.0,440.0,0.0,32671.9,0.0,0.0,1,0,1.0,4,0.0 +9143,12849,689.8931327813644,35.0,111,4600.0,52,1.0,1.0,3.0,1.6,0.0,70.0,0.0,0.0,0.0,0.0,24967.9,1550.0,2700.0,3,8,7.0,2,1.0 +9144,12850,1490.0205638956725,58.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,138.0,0.0,58739.65,0.0,60570.0,1,7,1.0,3,2.0 +9145,12851,3076.380900119075,40.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21893.1,0.0,23990.0,3,8,6.0,1,1.0 +9146,12852,1709.404079880477,50.0,111,0.0,56,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,51090.2,650.0,51390.0,3,9,7.0,2,4.0 +9147,12853,1452.4751074333642,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56590.0,0.0,0.0,48836.03650634899,0.0,0.0,1,10,8.0,3,0.0 +9148,12854,3547.6067518715054,32.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47064.05,0.0,51320.0,3,10,8.0,3,2.0 +9149,12856,2386.8988703875516,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18050.0,0.0,0.0,17995.8,0.0,0.0,1,4,4.0,1,0.0 +9150,12860,2278.8503614459883,60.0,221,12830.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,13410.0,0.0,0.0,29703.85,0.0,4190.0,1,3,4.0,3,0.0 +9151,12861,1954.8430790179605,67.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33500.0,0.0,0.0,32724.1,0.0,0.0,1,1,2.0,3,0.0 +9152,12862,2043.583857974745,53.0,111,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,68835.19100570965,0.0,55380.0,1,10,8.0,4,2.0 +9153,12863,3546.7779410853973,23.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20469.0,1630.0,16250.0,3,10,8.0,1,1.0 +9154,12866,647.8069646732304,48.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,0.0,0.0,2860.0,0.0,0.0,29591.41059831116,0.0,0.0,1,8,7.0,2,0.0 +9155,12867,2236.3305580018505,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35830.0,0.0,0.0,13539.35,0.0,0.0,1,10,8.0,3,0.0 +9156,12868,3476.9371120799874,27.0,112,170.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45371.6,0.0,39380.0,2,7,0.0,4,2.0 +9157,12869,2807.247293648325,52.0,111,1460.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24341.3,0.0,24340.0,3,9,7.0,1,1.0 +9158,12870,2482.835459409211,46.0,112,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,9300.0,0.0,0.0,52790.1,0.0,42930.0,2,9,0.0,4,2.0 +9159,12871,2574.5379697564144,23.0,111,11150.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27078.2,230.0,13510.0,3,6,4.0,3,2.0 +9160,12874,2326.7112197304277,34.0,111,0.0,68,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,12272.6,0.0,12400.0,3,10,8.0,2,1.0 +9161,12875,2194.389532372277,58.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50901.65,0.0,24090.0,1,6,4.0,2,2.0 +9162,12876,782.8250166258678,38.0,111,0.0,69,1.0,0.0,6.0,2.9,0.0,4450.0,0.0,0.0,0.0,0.0,27924.0,0.0,0.0,3,9,7.0,2,1.0 +9163,12877,2438.037560851009,54.0,300,5950.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6830.0,0.0,0.0,12504.4,0.0,0.0,1,0,1.0,1,0.0 +9164,12878,3036.8995925307895,46.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,29.0,0.0,51013.59803261591,0.0,56180.0,3,10,8.0,3,2.0 +9165,12879,777.7182896651397,47.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22234.4,1050.0,20890.0,3,8,7.0,2,1.0 +9166,12881,2659.57070432437,73.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33450.0,0.0,0.0,29852.65,0.0,0.0,1,8,1.0,1,0.0 +9167,12883,1464.575416775062,52.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,6877.45,0.0,3660.0,1,8,7.0,2,1.0 +9168,12884,2075.230360714357,54.0,111,0.0,31,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,114780.1,0.0,21420.0,2,10,8.0,4,2.0 +9169,12885,2516.3122503661825,30.0,300,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,61793.65,0.0,51800.0,2,0,1.0,4,2.0 +9170,12886,1940.3683040831952,61.0,300,4780.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,13190.0,0.0,0.0,18160.45,0.0,0.0,3,0,1.0,1,1.0 +9171,12888,2736.491428165274,63.0,112,0.0,75,0.0,0.0,3.0,2.0,0.0,0.0,0.0,37180.0,0.0,0.0,35619.7,0.0,0.0,1,9,1.0,4,0.0 +9172,12889,2484.4370305311736,52.0,120,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15822.95,0.0,22160.0,1,0,0.0,3,2.0 +9173,12890,1862.5577966104738,27.0,111,0.0,62,1.0,0.0,3.0,1.6,0.0,7010.0,0.0,0.0,0.0,0.0,17879.0,0.0,0.0,3,8,7.0,2,1.0 +9174,12891,3253.3351321503433,25.0,111,11130.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16501.0,190.0,0.0,3,8,7.0,1,1.0 +9175,12892,1526.1330095800672,79.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30450.0,247.0,0.0,30202.5,0.0,0.0,1,9,7.0,3,0.0 +9176,12896,2079.761847775965,33.0,112,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25159.65,3130.0,20940.0,2,9,2.0,4,2.0 +9177,12897,2084.416565049398,40.0,300,0.0,21,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,56974.5,0.0,49620.0,2,0,0.0,4,2.0 +9178,12898,4030.9129999381353,75.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18520.0,0.0,0.0,17868.3,0.0,0.0,3,10,8.0,1,0.0 +9179,12899,2152.856879558526,25.0,111,0.0,67,1.0,0.0,3.0,1.6,0.0,6450.0,0.0,0.0,0.0,0.0,20346.0,540.0,2530.0,3,7,6.0,2,1.0 +9180,12901,3970.8910718217476,28.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50784.9,0.0,22510.0,3,9,7.0,4,2.0 +9181,12903,2364.419680812292,33.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5850.0,461.0,0.0,39771.55,0.0,0.0,2,7,4.0,2,1.0 +9182,12905,1913.9970797021736,52.0,111,10860.0,43,3,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,53080.95,0.0,42200.0,1,8,6.0,4,3.0 +9183,12906,2630.8466808628714,56.0,300,5950.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9078.0,0.0,0.0,3,0,0.0,1,1.0 +9184,12907,1523.9965755366443,58.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21832.5,0.0,23170.0,1,6,5.0,1,1.0 +9185,12908,1639.9858822057868,38.0,111,3220.0,38,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,51036.3,0.0,40910.0,2,9,7.0,4,2.0 +9186,12909,2268.4850759238752,54.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41232.45,0.0,42680.0,3,6,4.0,3,2.0 +9187,12910,1209.518916923684,40.0,111,8260.0,52,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21029.2,0.0,5620.0,3,9,7.0,2,1.0 +9188,12911,1656.818822036417,41.0,111,0.0,48,1.0,1.0,3.0,1.6,0.0,7170.0,0.0,0.0,0.0,0.0,33220.55,0.0,23810.0,3,7,6.0,2,1.0 +9189,12915,2328.1967187925934,62.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17590.0,0.0,0.0,17156.95,0.0,0.0,1,7,0.0,1,0.0 +9190,12916,1116.9082014072335,38.0,111,0.0,56,1.0,0.0,4.0,2.3,0.0,5800.0,0.0,0.0,0.0,0.0,18728.0,0.0,0.0,3,6,5.0,2,1.0 +9191,12917,2254.6435266515628,29.0,112,1340.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,69489.25,0.0,69920.0,2,8,1.0,4,2.0 +9192,12919,2718.639292259855,73.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,75590.0,707.0,0.0,66848.05,0.0,0.0,1,10,8.0,3,0.0 +9193,12921,2071.422041122687,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19530.0,0.0,0.0,19208.7,0.0,0.0,1,7,6.0,1,0.0 +9194,12922,1669.7144473919357,52.0,211,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44071.95,0.0,49530.0,2,1,2.0,1,1.0 +9195,12924,2576.4645240388973,75.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55120.0,0.0,0.0,49798.3,0.0,0.0,1,8,0.0,3,0.0 +9196,12925,3489.0787770170678,54.0,400,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4200.0,0.0,0.0,3,0,0.0,1,1.0 +9197,12926,1117.6096060057168,68.0,111,0.0,54,1.0,0.0,2.0,1.5,2750.0,0.0,0.0,24450.0,0.0,0.0,26401.3,0.0,0.0,1,6,4.0,3,1.0 +9198,12927,1938.4922137259246,35.0,112,0.0,37,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,83828.35,0.0,79380.0,2,9,3.0,4,1.0 +9199,12928,2368.7652376678157,27.0,111,0.0,53,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,28.0,0.0,15773.0,0.0,15700.0,3,8,7.0,3,2.0 +9200,12929,2232.0565496642225,31.0,111,4110.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,30.0,0.0,76553.0,0.0,56090.0,3,9,7.0,3,2.0 +9201,12930,2454.6427562292174,62.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6960.0,0.0,0.0,8586.0,0.0,0.0,3,7,0.0,1,0.0 +9202,12931,1338.4236044726583,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39980.0,0.0,0.0,39387.7,0.0,30.0,1,9,3.0,3,0.0 +9203,12933,2611.4758667855467,53.0,221,0.0,22,1.0,1.0,4.0,2.5,0.0,0.0,0.0,11010.0,0.0,0.0,47968.9,0.0,30890.0,1,1,2.0,4,1.0 +9204,12934,2537.8124386439895,82.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8250.0,0.0,0.0,10568.7,0.0,0.0,1,9,2.0,1,0.0 +9205,12935,739.8225162116069,54.0,211,5820.0,85,1.0,0.0,5.0,2.4,10980.0,0.0,0.0,0.0,0.0,0.0,30470.0,0.0,200.0,3,2,3.0,4,1.0 +9206,12936,584.9360400249152,37.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,27922.4,0.0,21410.0,3,5,4.0,2,1.0 +9207,12938,2848.958435035458,82.0,120,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38150.0,0.0,0.0,37527.45,0.0,0.0,1,0,0.0,1,0.0 +9208,12941,2179.973788650609,45.0,300,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,277.0,0.0,24723.5,0.0,21840.0,2,0,0.0,4,2.0 +9209,12942,4944.472175606415,30.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22880.0,0.0,21910.0,3,8,0.0,1,1.0 +9210,12943,1710.2723842202138,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23020.0,0.0,0.0,22663.0,0.0,0.0,1,10,8.0,3,0.0 +9211,12944,1511.3969010854494,64.0,111,0.0,77,0.0,0.0,6.0,2.7,0.0,5840.0,0.0,12670.0,0.0,0.0,35263.25,0.0,790.0,5,10,8.0,5,0.0 +9212,12945,1786.4478766544655,55.0,112,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,850.0,0.0,0.0,55142.2,0.0,49820.0,2,8,0.0,4,2.0 +9213,12946,2799.9515290540753,49.0,400,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34178.8,0.0,36530.0,2,0,0.0,2,2.0 +9214,12947,2237.6104749139954,53.0,111,28060.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,2480.0,0.0,0.0,47541.95,0.0,17390.0,3,7,6.0,4,1.0 +9215,12948,3168.545777891285,31.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53163.1,0.0,44830.0,2,8,7.0,4,2.0 +9216,12949,2974.0998215194245,61.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,128726.28297800959,0.0,158690.0,2,9,7.0,3,2.0 +9217,12950,4409.672752053882,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12860.0,0.0,0.0,12875.0,0.0,0.0,1,6,5.0,1,0.0 +9218,12952,3220.1484100110024,49.0,111,0.0,22,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,77742.55,0.0,80180.0,3,8,7.0,4,3.0 +9219,12953,1646.2080184588385,52.0,111,5790.0,64,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,39566.8,0.0,31970.0,1,8,7.0,4,3.0 +9220,12954,3412.267836210967,84.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9550.0,10569.0,0.0,19055.55,0.0,0.0,1,0,0.0,1,0.0 +9221,12955,2730.0921065228476,45.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22271.3,0.0,22780.0,3,7,5.0,1,1.0 +9222,12956,1452.6480569085613,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49150.0,0.0,0.0,46304.191284449655,0.0,0.0,1,10,0.0,3,0.0 +9223,12957,2224.1729951059224,50.0,111,9970.0,35,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,325.0,0.0,38935.45,0.0,30250.0,3,6,4.0,4,2.0 +9224,12959,1597.1800656873859,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44540.0,0.0,0.0,41114.25,0.0,0.0,1,7,5.0,3,0.0 +9225,12960,1794.7562251430015,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44910.0,872.0,0.0,41621.95,0.0,0.0,1,6,5.0,3,0.0 +9226,12961,1629.9342551614402,44.0,111,2710.0,37,1.0,1.0,9.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0,50679.2,0.0,30960.0,2,8,7.0,4,1.0 +9227,12962,2733.4083410043995,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34720.0,0.0,0.0,31306.720597671647,0.0,0.0,1,10,8.0,1,0.0 +9228,12963,2437.1180304380846,77.0,111,0.0,74,0.0,0.0,3.0,2.0,1900.0,0.0,0.0,59320.0,824.0,0.0,61094.75,0.0,0.0,1,10,8.0,5,0.0 +9229,12964,1829.205046848411,78.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27640.0,0.0,0.0,26620.15,0.0,0.0,1,0,0.0,3,0.0 +9230,12965,1770.881220602448,64.0,111,0.0,74,0.0,0.0,3.0,2.0,9700.0,0.0,0.0,79570.0,0.0,0.0,84117.8,0.0,9510.0,1,6,4.0,4,0.0 +9231,12966,2103.915613585286,70.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27610.0,0.0,0.0,26719.05,0.0,450.0,1,9,7.0,3,0.0 +9232,12967,2657.973551857835,69.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19060.0,0.0,0.0,20361.1,0.0,0.0,3,0,1.0,3,0.0 +9233,12969,3495.6855416744093,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7174.75,0.0,3670.0,5,9,7.0,1,0.0 +9234,12971,2993.9080270635022,76.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24880.0,0.0,0.0,23406.45,0.0,0.0,1,9,7.0,1,0.0 +9235,12972,1950.3275715989994,45.0,112,0.0,69,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,45682.8,0.0,45460.0,2,8,0.0,4,2.0 +9236,12973,2243.672540249253,83.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16640.0,154.0,0.0,18624.7,0.0,0.0,1,0,1.0,3,0.0 +9237,12974,4294.289235338693,27.0,111,0.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,15607.35,0.0,9680.0,3,9,7.0,4,2.0 +9238,12976,860.2992692719307,30.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,7380.0,0.0,0.0,0.0,0.0,14738.0,0.0,0.0,3,7,6.0,2,0.0 +9239,12977,4399.527473212644,65.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32650.0,0.0,0.0,28239.35,0.0,0.0,1,7,0.0,1,0.0 +9240,12982,6256.568029765211,20.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10417.0,0.0,3070.0,3,10,8.0,1,1.0 +9241,12984,2174.0482379049613,56.0,112,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,47945.65,0.0,49540.0,1,8,1.0,4,2.0 +9242,12985,3332.559561484564,61.0,111,590.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,20420.0,0.0,0.0,19535.4,0.0,0.0,3,10,8.0,2,1.0 +9243,12986,4011.1688725603854,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23150.0,0.0,0.0,21903.997150848583,0.0,0.0,1,10,8.0,1,0.0 +9244,12987,2392.5787332607533,34.0,111,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42978.15,0.0,46960.0,1,8,7.0,3,2.0 +9245,12988,1426.9828011327552,60.0,120,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25684.5,1060.0,0.0,5,0,0.0,3,2.0 +9246,12989,2175.0441467194446,40.0,400,8310.0,85,1.0,0.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,21208.8,0.0,0.0,3,0,0.0,4,1.0 +9247,12990,6454.13493810465,33.0,211,0.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,1110.0,0.0,32315.8,0.0,23230.0,2,2,3.0,4,1.0 +9248,12991,2574.072767621163,61.0,111,5850.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,15590.0,0.0,0.0,22597.4,0.0,0.0,2,8,6.0,2,1.0 +9249,12992,2173.5205096489544,42.0,112,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,575.0,0.0,76522.55,0.0,78490.0,2,10,0.0,4,2.0 +9250,12993,596.7298529838141,49.0,111,0.0,85,0.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,9278.0,0.0,0.0,2,10,8.0,2,0.0 +9251,12994,2794.7248764446417,31.0,111,4090.0,63,1.0,1.0,3.0,1.8,0.0,4900.0,0.0,0.0,0.0,0.0,31488.2,1360.0,16530.0,3,9,7.0,4,1.0 +9252,12995,2482.8509034608323,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19860.0,0.0,0.0,20046.0,0.0,0.0,1,6,4.0,3,0.0 +9253,12996,2061.244291609399,41.0,112,0.0,55,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42205.4,0.0,41140.0,2,7,1.0,4,2.0 +9254,12997,2731.6697920292804,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,4320.0,0.0,0.0,3,10,8.0,3,0.0 +9255,12999,2277.1558079900155,33.0,112,9940.0,33,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47864.9,0.0,36350.0,2,6,0.0,4,1.0 +9256,13001,1944.548164855493,47.0,111,0.0,52,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46032.35,0.0,45790.0,5,8,6.0,4,2.0 +9257,13002,367.8425894987804,35.0,300,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,18.0,0.0,22863.65,4030.0,13970.0,3,0,0.0,2,1.0 +9258,13003,3122.7099139448414,44.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46054.2,0.0,49850.0,1,10,8.0,4,2.0 +9259,13004,1764.899932797034,50.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2349.2,0.0,2570.0,2,7,0.0,1,1.0 +9260,13005,4561.7089136745235,59.0,112,5080.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5656.23747293927,0.0,2090.0,2,9,3.0,1,0.0 +9261,13006,2459.7990902710735,31.0,111,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28631.05,530.0,25600.0,3,5,4.0,4,1.0 +9262,13010,4895.6586150887315,31.0,111,1530.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,51759.65,0.0,42420.0,3,10,8.0,4,2.0 +9263,13011,1977.5227311404835,64.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19040.0,0.0,0.0,88484.4,0.0,79810.0,1,10,8.0,3,1.0 +9264,13012,2233.851120814559,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26720.0,0.0,0.0,26104.45,0.0,0.0,1,9,7.0,3,0.0 +9265,13014,3936.4158959162323,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19820.0,0.0,0.0,19283.0,0.0,0.0,3,9,7.0,1,0.0 +9266,13015,2901.8838041027493,29.0,111,7570.0,63,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,11614.6,50.0,0.0,3,8,7.0,2,1.0 +9267,13016,2429.4003060370496,82.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21830.0,565.0,0.0,25946.4,0.0,0.0,1,0,0.0,3,0.0 +9268,13017,547.9317140308119,35.0,112,0.0,67,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22943.85,4180.0,16390.0,2,7,1.0,2,1.0 +9269,13018,2813.1881535021885,59.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17146.45,0.0,20150.0,3,10,8.0,1,0.0 +9270,13019,3362.7668282482914,62.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6560.0,0.0,0.0,32081.1,0.0,21300.0,3,10,8.0,1,1.0 +9271,13020,4266.1426679903825,49.0,300,620.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,12160.0,0.0,0.0,54284.1,0.0,44150.0,1,0,0.0,2,2.0 +9272,13021,3981.584574044891,27.0,112,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17360.53506210297,0.0,23480.0,1,10,0.0,3,1.0 +9273,13022,1921.335330831328,43.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37896.3,0.0,35230.0,1,4,0.0,1,1.0 +9274,13023,1981.3990465403517,39.0,112,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,74954.6,0.0,81450.0,3,10,4.0,4,2.0 +9275,13025,529.8854431692197,35.0,111,0.0,81,1.0,0.0,4.0,1.9,0.0,1610.0,0.0,0.0,0.0,0.0,20820.0,0.0,0.0,3,8,6.0,2,1.0 +9276,13026,2169.5260888550897,62.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33570.0,71.0,0.0,31513.25,0.0,850.0,1,8,1.0,3,0.0 +9277,13027,696.247694838501,51.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,3570.0,0.0,0.0,0.0,0.0,20146.85,980.0,6200.0,3,9,7.0,2,1.0 +9278,13029,633.3387540197072,36.0,221,2870.0,63,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28625.0,0.0,8480.0,3,1,1.0,2,1.0 +9279,13030,2022.7226409546424,55.0,111,0.0,46,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53477.4,0.0,57490.0,1,8,7.0,4,2.0 +9280,13031,1833.9821249916135,63.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14480.0,0.0,0.0,32424.25,0.0,19720.0,3,7,6.0,3,1.0 +9281,13036,1501.3613806328547,63.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,67040.0,0.0,0.0,73847.8,0.0,23450.0,1,8,0.0,3,0.0 +9282,13037,3574.878507102419,43.0,111,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36085.8,0.0,35090.0,2,4,4.0,4,2.0 +9283,13038,1911.4570632557081,60.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16170.0,0.0,0.0,27919.6,0.0,11660.0,1,6,0.0,3,0.0 +9284,13039,2146.661855823171,65.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18050.0,0.0,0.0,33293.3,0.0,15600.0,2,7,0.0,3,1.0 +9285,13041,1541.25521785548,79.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13680.0,0.0,0.0,13680.0,0.0,0.0,1,10,1.0,1,0.0 +9286,13042,800.3737914292626,33.0,112,0.0,68,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28337.3,1880.0,12810.0,3,10,4.0,2,1.0 +9287,13043,3141.023379735127,36.0,112,0.0,38,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45131.2,0.0,33310.0,1,9,1.0,4,1.0 +9288,13044,1283.3978021042874,27.0,112,0.0,56,1.0,0.0,2.0,1.3,0.0,6380.0,0.0,0.0,0.0,0.0,12994.0,0.0,0.0,3,8,1.0,2,1.0 +9289,13045,2364.1545063326353,47.0,112,7640.0,62,2.0,0.0,5.0,2.6,0.0,1380.0,0.0,0.0,0.0,0.0,25929.55,120.0,8520.0,2,10,4.0,4,2.0 +9290,13046,2765.2697667904345,74.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25080.0,0.0,0.0,25178.6,0.0,0.0,1,0,0.0,3,0.0 +9291,13048,1404.906467411858,55.0,112,8330.0,65,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26470.0,0.0,15930.0,3,9,3.0,2,1.0 +9292,13054,1622.38259023896,36.0,111,0.0,53,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,35324.85,0.0,28830.0,3,8,7.0,4,1.0 +9293,13057,1685.6208403593262,54.0,112,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,487.0,0.0,56282.35,0.0,54490.0,1,10,4.0,3,2.0 +9294,13059,813.1225582539811,36.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19252.05,2290.0,12720.0,3,9,7.0,2,1.0 +9295,13060,1621.7877629697464,50.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,53396.55,0.0,53560.0,1,4,4.0,4,2.0 +9296,13062,713.1276509539458,37.0,111,0.0,54,1.0,0.0,3.0,1.6,0.0,5110.0,0.0,0.0,0.0,0.0,10136.35,0.0,0.0,3,10,8.0,2,1.0 +9297,13063,3746.210344789915,49.0,120,0.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42901.15,0.0,9930.0,1,0,3.0,4,2.0 +9298,13064,1654.155322027367,51.0,221,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,76227.9,0.0,80020.0,1,1,2.0,4,2.0 +9299,13066,2033.3231526960383,43.0,222,4500.0,63,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,247.0,0.0,30309.15,0.0,10450.0,1,1,0.0,4,3.0 +9300,13067,582.646873216657,44.0,111,0.0,31,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36581.8,0.0,38120.0,2,9,7.0,2,1.0 +9301,13068,611.9842267629291,48.0,111,0.0,43,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,9,7.0,2,1.0 +9302,13069,2342.8461103824848,49.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,60879.7,0.0,63600.0,2,10,8.0,4,2.0 +9303,13070,2772.1930494581025,69.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10480.0,0.0,0.0,11875.1,0.0,0.0,1,8,0.0,1,0.0 +9304,13071,2159.3894673780924,70.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49440.0,0.0,0.0,46507.05,0.0,0.0,1,8,0.0,3,0.0 +9305,13074,2199.642839754852,47.0,400,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,39607.1,0.0,43080.0,2,0,0.0,4,2.0 +9306,13079,2387.1526407176143,87.0,111,0.0,,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47290.0,0.0,0.0,43373.45,0.0,0.0,1,6,4.0,3,0.0 +9307,13080,1941.6498121772208,17.0,400,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,20437.2,0.0,17940.0,2,0,0.0,4,2.0 +9308,13081,1173.3797130039773,84.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45980.0,0.0,0.0,41626.5354508391,0.0,0.0,1,9,7.0,3,0.0 +9309,13085,3148.335892000008,49.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,16.0,0.0,43902.1,0.0,35700.0,3,10,8.0,2,1.0 +9310,13086,2195.692165266707,79.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26260.0,0.0,0.0,24863.0,0.0,0.0,1,8,1.0,1,0.0 +9311,13088,1108.728799642561,44.0,111,4510.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,39060.2,0.0,23470.0,3,10,8.0,4,2.0 +9312,13089,2388.852013514391,79.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22420.0,0.0,0.0,24671.15,0.0,0.0,1,9,7.0,1,0.0 +9313,13090,1557.1138546624766,40.0,111,0.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,39553.4,0.0,31790.0,2,9,7.0,4,2.0 +9314,13091,2150.553868644904,42.0,120,4170.0,84,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47392.0,0.0,44450.0,2,0,0.0,4,1.0 +9315,13095,2794.6851377663606,39.0,111,13700.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45394.25,0.0,30390.0,2,5,4.0,4,1.0 +9316,13096,1500.0341278268133,56.0,112,1790.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49718.5,0.0,14480.0,1,8,0.0,3,2.0 +9317,13097,2571.1180574898453,84.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38270.0,0.0,0.0,38216.05,0.0,0.0,1,10,8.0,3,0.0 +9318,13098,2341.8336334935098,77.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19430.0,0.0,0.0,16843.331443209663,0.0,0.0,1,9,3.0,1,0.0 +9319,13099,4085.8596843385094,66.0,111,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16820.0,0.0,0.0,33868.56270503461,0.0,21310.0,3,10,8.0,3,1.0 +9320,13100,2517.7937160629745,56.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38470.0,0.0,0.0,35741.4,0.0,0.0,1,0,0.0,1,0.0 +9321,13104,890.3805871019326,47.0,111,10830.0,56,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,25659.4,2060.0,5510.0,3,10,8.0,2,1.0 +9322,13105,3909.8810164329893,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15190.0,0.0,0.0,14675.0,0.0,0.0,1,6,5.0,1,0.0 +9323,13107,2993.5385546649427,36.0,111,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45758.45,0.0,42170.0,3,10,8.0,4,2.0 +9324,13108,2987.72765557702,60.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27439.4,0.0,31840.0,1,10,8.0,1,1.0 +9325,13109,1672.5167605531117,68.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,3730.0,5830.0,0.0,0.0,12830.0,0.0,0.0,3,8,7.0,1,0.0 +9326,13111,2395.598408204442,45.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,44374.15,0.0,34850.0,2,6,0.0,4,2.0 +9327,13112,2237.4141929104267,37.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51119.6,0.0,46410.0,2,8,6.0,4,2.0 +9328,13113,2591.958598898984,52.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,20660.0,0.0,0.0,58208.95,0.0,44870.0,1,6,5.0,4,2.0 +9329,13114,2075.008568457854,52.0,120,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8330.0,0.0,0.0,29959.9,0.0,24080.0,3,0,0.0,3,1.0 +9330,13115,2191.1382202827613,76.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29060.0,0.0,0.0,29033.5,0.0,0.0,1,0,0.0,3,0.0 +9331,13117,1645.7588932060037,53.0,112,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41405.1,4690.0,17670.0,1,7,0.0,4,2.0 +9332,13120,3401.6720809754415,66.0,111,0.0,78,2.0,2.0,4.0,2.5,6210.0,0.0,0.0,18440.0,0.0,0.0,52778.0,1840.0,24440.0,3,10,8.0,4,2.0 +9333,13122,3687.0761382318724,63.0,111,5490.0,78,2.0,2.0,3.0,2.0,6350.0,0.0,0.0,14580.0,0.0,0.0,39285.25,1040.0,13070.0,2,4,3.0,4,2.0 +9334,13125,1578.3777599209411,68.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32110.0,0.0,0.0,31061.75,0.0,0.0,1,10,0.0,3,0.0 +9335,13128,3742.9525302190486,38.0,111,15870.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56874.05,0.0,48870.0,3,10,8.0,3,2.0 +9336,13129,2754.8001988175924,41.0,221,1180.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28415.3,0.0,25620.0,2,1,2.0,4,2.0 +9337,13130,1947.7332637698357,44.0,120,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24453.25,0.0,27050.0,2,0,0.0,1,1.0 +9338,13131,3813.5389305917806,67.0,120,0.0,69,1.0,0.0,3.0,2.0,0.0,0.0,0.0,32810.0,0.0,0.0,37636.8,0.0,6090.0,1,0,0.0,5,1.0 +9339,13133,2664.3711224410167,78.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18350.0,0.0,0.0,17615.5,0.0,0.0,1,0,0.0,1,0.0 +9340,13134,1703.070623049541,65.0,112,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,39430.0,0.0,0.0,37126.25,0.0,780.0,1,9,3.0,3,1.0 +9341,13135,2016.3967305368878,39.0,111,0.0,53,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27230.6,2240.0,19610.0,3,7,5.0,4,1.0 +9342,13138,2346.3048490259866,75.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23720.0,0.0,0.0,23322.65,0.0,0.0,1,7,0.0,1,0.0 +9343,13140,2179.653599937067,70.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15210.0,0.0,0.0,14211.95,0.0,0.0,1,9,2.0,1,0.0 +9344,13141,2784.2715750831603,66.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45480.0,0.0,0.0,41700.85,0.0,0.0,3,10,8.0,3,0.0 +9345,13143,3142.9630922684146,79.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,5820.0,9640.0,23630.0,0.0,0.0,38670.85,0.0,0.0,3,10,8.0,3,1.0 +9346,13144,1696.2647916418116,75.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53590.0,0.0,0.0,49521.97305510894,0.0,0.0,1,0,0.0,3,0.0 +9347,13147,2612.5573741099206,60.0,111,8310.0,69,3,1.0,7.0,4.0,0.0,4400.0,0.0,0.0,0.0,0.0,35096.4,0.0,16360.0,1,8,6.0,4,3.0 +9348,13148,3482.6746491101517,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15490.0,0.0,0.0,15286.7,0.0,0.0,3,8,6.0,1,0.0 +9349,13149,3475.9114258148443,61.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17720.0,0.0,0.0,30860.25,0.0,13860.0,1,7,0.0,3,1.0 +9350,13151,2261.8303850350803,73.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21570.0,0.0,0.0,20810.0,0.0,0.0,1,4,4.0,3,0.0 +9351,13152,1191.3941277818449,36.0,111,0.0,68,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,34683.55,0.0,19570.0,3,10,8.0,4,2.0 +9352,13153,527.7703940620147,49.0,111,0.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32995.75,0.0,25660.0,3,7,6.0,2,1.0 +9353,13154,2781.9384552078045,46.0,120,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1435.0,0.0,48691.05,0.0,55020.0,1,0,0.0,1,1.0 +9354,13155,1766.8602779110286,81.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17100.0,0.0,0.0,26603.6,0.0,0.0,1,0,0.0,3,0.0 +9355,13156,1799.0192813558342,74.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27990.0,0.0,0.0,27996.0,0.0,0.0,3,2,3.0,3,0.0 +9356,13158,2710.3059970815707,29.0,300,0.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26565.0,120.0,26420.0,5,0,0.0,3,2.0 +9357,13160,948.0363548807845,30.0,111,4150.0,55,1.0,0.0,2.0,1.3,0.0,50.0,0.0,0.0,0.0,0.0,26843.0,180.0,16910.0,3,10,8.0,2,1.0 +9358,13162,2275.2244828808707,60.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23570.0,0.0,0.0,35437.285738682775,0.0,14700.0,1,9,2.0,3,0.0 +9359,13163,1926.6932766761365,85.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62780.0,27.0,0.0,51589.60254100692,0.0,0.0,1,8,6.0,3,0.0 +9360,13164,2635.8480375646072,82.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18220.0,0.0,0.0,17954.55,0.0,0.0,1,0,0.0,1,0.0 +9361,13165,3015.392962774096,48.0,111,5500.0,21,2.0,2.0,8.0,4.1,0.0,0.0,0.0,0.0,0.0,0.0,57267.05,0.0,0.0,3,8,7.0,5,2.0 +9362,13168,1392.991780775827,26.0,400,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40510.25,1210.0,41840.0,3,0,0.0,3,2.0 +9363,13169,2723.47808208003,57.0,112,980.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7884.35,0.0,6190.0,1,9,0.0,1,1.0 +9364,13171,3452.5980147447754,44.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32583.455015255287,0.0,35280.0,2,9,7.0,1,1.0 +9365,13172,3004.9318386621458,24.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25312.55,0.0,24280.0,1,9,7.0,3,1.0 +9366,13174,1283.722733331376,83.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19960.0,0.0,0.0,19537.0,0.0,0.0,1,3,3.0,1,0.0 +9367,13175,1715.7684694997345,40.0,300,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58634.45,0.0,49510.0,1,0,0.0,4,2.0 +9368,13176,2166.946093588734,34.0,112,0.0,62,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29175.3,0.0,27140.0,5,8,2.0,2,1.0 +9369,13179,3382.9427578571213,62.0,111,0.0,31,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,1662.0,0.0,14990.9,0.0,1990.0,1,10,8.0,4,1.0 +9370,13181,2369.9719442762175,52.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50157.45,0.0,50440.0,1,10,8.0,3,2.0 +9371,13183,1801.3654528651182,68.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47700.0,0.0,0.0,39460.00666675107,0.0,0.0,1,9,7.0,3,0.0 +9372,13184,2064.2867287192284,67.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31010.0,0.0,0.0,29467.1,0.0,0.0,1,10,4.0,1,0.0 +9373,13186,1671.7951706023346,74.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38280.0,175.0,0.0,34210.419631174744,0.0,0.0,1,0,0.0,3,0.0 +9374,13187,1090.288232180462,30.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35646.85,0.0,41940.0,3,7,4.0,1,1.0 +9375,13189,2273.145732814475,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29320.0,0.0,0.0,28468.65,0.0,0.0,1,9,7.0,3,0.0 +9376,13191,2068.715923245885,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29600.0,0.0,0.0,29526.6,0.0,0.0,3,8,7.0,3,0.0 +9377,13192,2769.5560935475737,56.0,112,0.0,42,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36734.1,0.0,38790.0,1,8,0.0,5,2.0 +9378,13194,1601.1306049493303,49.0,112,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39588.2,0.0,41000.0,1,8,1.0,4,2.0 +9379,13195,2968.312041331562,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10120.0,319.0,0.0,15373.0,0.0,0.0,1,5,4.0,1,0.0 +9380,13196,3744.134201567442,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,95730.0,16148.0,0.0,103174.69631174742,0.0,0.0,1,10,8.0,3,0.0 +9381,13197,3491.0649071010885,25.0,112,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16109.2,1690.0,14320.0,3,6,0.0,1,1.0 +9382,13198,2006.3898896317512,60.0,120,0.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,10780.0,0.0,0.0,58278.7,0.0,47880.0,1,0,0.0,4,2.0 +9383,13199,631.1267259081679,50.0,111,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29478.7,0.0,29960.0,5,8,7.0,2,1.0 +9384,13200,1713.1169960304987,55.0,111,3930.0,67,2.0,0.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,31279.6,940.0,12680.0,3,8,7.0,4,2.0 +9385,13202,3206.518664007879,71.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,42130.0,0.0,0.0,35522.95,0.0,0.0,5,10,0.0,1,0.0 +9386,13204,3689.407475546225,49.0,111,50.0,85,1.0,1.0,4.0,2.1,0.0,0.0,0.0,5540.0,0.0,0.0,8210.0,260.0,3050.0,5,4,4.0,4,1.0 +9387,13205,2835.5488604229245,65.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19970.0,0.0,0.0,19673.35,0.0,0.0,1,0,0.0,3,0.0 +9388,13206,271.31044633346636,50.0,112,0.0,34,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39584.05,0.0,42340.0,1,10,2.0,2,1.0 +9389,13209,738.0464822450191,45.0,211,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29118.0,2000.0,27980.0,3,1,3.0,2,1.0 +9390,13210,3668.8811821409377,37.0,120,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18358.3,0.0,18600.0,3,0,0.0,1,1.0 +9391,13211,2788.2748769344034,82.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14990.0,0.0,0.0,13648.25,0.0,0.0,1,8,6.0,1,0.0 +9392,13212,981.9366300852306,35.0,111,1970.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25934.4,0.0,20130.0,3,10,8.0,2,1.0 +9393,13213,2352.4114792692835,37.0,111,9480.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29570.5,0.0,20340.0,3,9,7.0,3,2.0 +9394,13214,1960.2654953190297,65.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31930.0,0.0,0.0,36497.1,0.0,0.0,1,0,0.0,3,0.0 +9395,13215,2781.980618709822,36.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42904.8,0.0,46370.0,2,10,8.0,3,2.0 +9396,13216,1967.445748680653,49.0,111,11800.0,37,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,48461.6,0.0,30920.0,2,10,8.0,4,2.0 +9397,13217,4040.2021999639264,78.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24470.0,0.0,0.0,24131.35,0.0,0.0,3,10,8.0,3,0.0 +9398,13221,2032.0386230865088,70.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27500.0,0.0,0.0,26697.05,0.0,0.0,1,0,0.0,3,0.0 +9399,13222,3120.024818699688,31.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,65588.05,0.0,76150.0,3,9,7.0,3,2.0 +9400,13223,3388.4138606457573,53.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,627.0,0.0,25840.7,0.0,32390.0,1,9,7.0,1,1.0 +9401,13224,1990.8183377944322,63.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30790.0,0.0,0.0,30289.7,0.0,0.0,1,0,0.0,3,0.0 +9402,13225,2707.968106775668,23.0,111,0.0,84,0.0,0.0,1.0,1.0,3830.0,0.0,0.0,640.0,0.0,0.0,10874.65,0.0,4370.0,3,9,7.0,1,0.0 +9403,13226,2107.483710725954,60.0,400,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24880.0,0.0,0.0,41967.2,0.0,19580.0,2,0,0.0,3,1.0 +9404,13227,2942.6861756026246,32.0,111,0.0,52,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,44154.0,0.0,34250.0,3,10,8.0,4,2.0 +9405,13230,2282.983972687205,72.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,50210.0,0.0,0.0,50973.99038115104,0.0,0.0,1,9,7.0,3,0.0 +9406,13231,4676.122929865849,67.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,2370.0,0.0,0.0,11930.0,0.0,5640.0,3,10,8.0,5,1.0 +9407,13232,902.0167790604467,38.0,111,4200.0,62,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19315.3,720.0,8600.0,3,6,5.0,2,1.0 +9408,13233,3393.9815669719933,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19560.0,0.0,0.0,18574.15,0.0,0.0,3,8,7.0,1,0.0 +9409,13236,4929.50138244525,34.0,120,0.0,85,0.0,0.0,1.0,1.0,9730.0,2680.0,0.0,0.0,0.0,0.0,28650.0,0.0,11950.0,3,0,3.0,1,0.0 +9410,13238,4340.494929971803,56.0,111,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27427.6,0.0,28180.0,3,10,8.0,2,1.0 +9411,13240,603.8966799665988,22.0,111,0.0,81,1.0,0.0,3.0,1.6,0.0,8550.0,0.0,0.0,0.0,0.0,16538.0,0.0,0.0,3,8,7.0,2,1.0 +9412,13241,1372.5301083976608,56.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,64118.3,0.0,72370.0,2,6,0.0,3,2.0 +9413,13242,1759.2768728403137,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,72180.0,0.0,0.0,62274.1,0.0,0.0,1,4,3.0,3,0.0 +9414,13243,2693.325927844125,60.0,221,49370.0,38,2.0,0.0,3.0,2.0,0.0,0.0,0.0,3760.0,0.0,0.0,50418.941195343294,0.0,2980.0,3,1,2.0,4,2.0 +9415,13245,4702.963392365706,32.0,111,28200.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,67842.25,0.0,0.0,2,10,8.0,3,2.0 +9416,13246,9771.175217327645,24.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38258.9,0.0,39650.0,3,8,7.0,3,2.0 +9417,13248,2412.7356213450685,51.0,112,4250.0,38,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57596.65,0.0,62660.0,1,8,1.0,4,3.0 +9418,13249,1647.8407520679516,43.0,211,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,46329.15,0.0,54670.0,1,2,3.0,1,1.0 +9419,13250,1183.3054639798029,58.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47671.1,0.0,51650.0,1,10,3.0,3,2.0 +9420,13251,2585.848096198455,43.0,112,0.0,46,2.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,512.0,0.0,69274.15,0.0,72620.0,2,8,1.0,5,2.0 +9421,13252,2812.392903307429,36.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41743.4,0.0,41070.0,2,4,3.0,4,2.0 +9422,13256,1713.8456749351253,59.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,107.0,0.0,44116.55,0.0,53100.0,3,9,3.0,3,1.0 +9423,13257,2133.3671843898255,48.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54595.55,0.0,58890.0,2,9,7.0,3,2.0 +9424,13258,1602.5703855644917,39.0,111,0.0,85,0.0,0.0,5.0,2.4,0.0,8620.0,0.0,0.0,0.0,0.0,20070.0,0.0,0.0,3,9,7.0,4,0.0 +9425,13259,3487.055030998721,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25890.0,0.0,0.0,42177.4,0.0,0.0,1,4,4.0,3,0.0 +9426,13260,4264.743768394269,27.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48777.7,0.0,54220.0,3,10,8.0,3,2.0 +9427,13261,2220.0454474941557,59.0,111,5950.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8962.1,0.0,0.0,3,7,5.0,1,1.0 +9428,13262,1860.578475552656,63.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27520.0,0.0,0.0,27608.1,0.0,0.0,1,0,0.0,3,0.0 +9429,13263,2920.603261561231,79.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24000.0,0.0,0.0,24588.8,0.0,0.0,1,0,0.0,3,0.0 +9430,13264,2384.999333789167,34.0,400,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53794.0,0.0,56090.0,3,0,0.0,4,2.0 +9431,13267,2927.6495989353807,34.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,2617.0,1390.0,88215.45,0.0,86840.0,1,10,8.0,4,2.0 +9432,13268,2270.4220351931535,53.0,300,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51470.0,0.0,0.0,3,0,1.0,4,2.0 +9433,13269,1935.6350406416266,74.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21840.0,0.0,0.0,20859.35,0.0,0.0,1,6,5.0,1,0.0 +9434,13270,2263.991876032894,24.0,221,3390.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35644.8,0.0,32870.0,2,1,2.0,3,2.0 +9435,13271,1216.4845868797888,49.0,111,0.0,38,3,2.0,7.0,3.8,0.0,0.0,0.0,0.0,1999.0,0.0,123157.05,0.0,122990.0,1,9,7.0,4,3.0 +9436,13272,1253.306265269051,32.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39795.2,0.0,43220.0,3,7,5.0,3,2.0 +9437,13273,714.8965969158098,46.0,111,0.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36802.0,0.0,37110.0,2,9,7.0,2,1.0 +9438,13274,1823.0302755355808,59.0,400,24080.0,38,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,8.0,0.0,34918.24191596298,0.0,0.0,1,0,0.0,3,2.0 +9439,13275,869.0462306636359,37.0,111,7420.0,68,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,13940.5,2550.0,0.0,3,7,5.0,2,1.0 +9440,13276,650.8140165356592,45.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29423.0,0.0,23100.0,3,9,7.0,2,1.0 +9441,13277,2577.989203211663,60.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38660.0,0.0,0.0,32527.6,0.0,0.0,1,6,5.0,1,0.0 +9442,13278,2519.335102822142,47.0,221,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18226.45,2610.0,13180.0,3,1,2.0,1,1.0 +9443,13281,5073.378980739391,38.0,111,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12792.0,0.0,0.0,3,7,5.0,1,0.0 +9444,13282,3278.218857157631,77.0,112,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,39230.0,2446.0,0.0,64133.55,0.0,19950.0,1,9,1.0,4,1.0 +9445,13284,2818.391421112363,58.0,300,0.0,22,2.0,0.0,3.0,2.0,0.0,9910.0,0.0,0.0,0.0,0.0,9608.0,0.0,0.0,2,0,0.0,4,2.0 +9446,13285,192.1886694566594,41.0,111,0.0,56,1.0,1.0,3.0,1.8,0.0,1780.0,0.0,0.0,0.0,0.0,14993.85,4950.0,7660.0,3,7,5.0,2,1.0 +9447,13286,2398.5446478520585,61.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28820.0,0.0,0.0,35927.85,0.0,8920.0,1,10,0.0,1,0.0 +9448,13287,3021.9053299811185,58.0,111,1230.0,21,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,65519.6,0.0,69410.0,1,6,4.0,4,3.0 +9449,13289,2664.3482510950107,40.0,111,0.0,34,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,60669.9,0.0,57590.0,2,6,4.0,4,2.0 +9450,13290,2353.7810992290306,59.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,222.0,0.0,29254.5,0.0,32300.0,3,5,4.0,1,1.0 +9451,13291,1747.9248936949643,53.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41701.35,0.0,44300.0,3,8,7.0,2,2.0 +9452,13292,1774.3992471495799,34.0,120,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,64244.45,0.0,58660.0,2,0,0.0,4,2.0 +9453,13293,1882.481426555778,32.0,112,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48446.3,0.0,51640.0,3,9,3.0,3,2.0 +9454,13294,1563.779408045804,50.0,120,7070.0,63,1.0,0.0,2.0,1.5,0.0,0.0,0.0,5230.0,0.0,0.0,26371.6,0.0,7220.0,1,0,1.0,3,1.0 +9455,13295,1990.7094797358866,56.0,111,0.0,64,2.0,2.0,5.0,2.6,0.0,5380.0,0.0,0.0,0.0,0.0,49999.75,0.0,42440.0,3,10,8.0,5,2.0 +9456,13297,868.3060339310598,54.0,111,0.0,63,1.0,1.0,4.0,2.1,11870.0,0.0,0.0,0.0,0.0,0.0,35029.0,0.0,18190.0,3,10,8.0,4,1.0 +9457,13298,727.5299800964822,47.0,111,6250.0,42,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19028.35,1750.0,9110.0,3,9,7.0,2,1.0 +9458,13299,2795.4946511156336,58.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18089.15,0.0,18760.0,3,6,5.0,1,1.0 +9459,13301,3284.0150238316046,46.0,112,19290.0,85,1.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,21084.55,0.0,1810.0,3,9,0.0,4,1.0 +9460,13302,874.5326624512139,49.0,400,0.0,13,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,16817.55,0.0,18210.0,1,0,0.0,2,3.0 +9461,13303,2764.8933952965754,71.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42550.0,0.0,0.0,41371.9,0.0,0.0,1,0,0.0,3,0.0 +9462,13304,3081.6708123974277,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18870.0,0.0,0.0,18917.5,0.0,0.0,1,8,7.0,1,0.0 +9463,13305,2553.065913674839,48.0,300,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17613.85,0.0,18110.0,2,0,0.0,1,1.0 +9464,13307,1902.481352615478,74.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24890.0,0.0,0.0,29539.5,0.0,3450.0,1,8,0.0,3,0.0 +9465,13312,1612.7322394167536,69.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60520.0,0.0,0.0,59178.70532378875,0.0,0.0,1,0,0.0,3,0.0 +9466,13315,2624.397053189314,47.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,75183.25,0.0,76030.0,2,8,6.0,4,2.0 +9467,13316,11513.269802619003,44.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37979.8,0.0,34760.0,3,9,7.0,4,2.0 +9468,13317,1333.4966441226243,23.0,111,1860.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32980.0,0.0,31740.0,3,9,7.0,3,2.0 +9469,13319,2439.7561983157975,38.0,211,1270.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,62686.7,0.0,63900.0,2,2,3.0,4,2.0 +9470,13320,2504.512060812597,63.0,111,0.0,55,2.0,2.0,3.0,2.0,0.0,0.0,0.0,16270.0,0.0,0.0,43829.65,0.0,31220.0,3,10,8.0,4,2.0 +9471,13321,887.9008631975457,59.0,112,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21710.0,0.0,0.0,58804.1,0.0,38550.0,1,10,0.0,2,1.0 +9472,13322,2191.3330012620645,29.0,300,0.0,69,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24145.05,550.0,23270.0,3,0,0.0,4,2.0 +9473,13323,1892.0296485997221,87.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17140.0,0.0,0.0,17227.0,0.0,0.0,1,6,4.0,1,0.0 +9474,13325,3499.268872581812,42.0,112,0.0,22,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,44407.2910563572,0.0,43690.0,2,8,0.0,2,1.0 +9475,13326,3374.3546091857665,24.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19529.0,0.0,20050.0,3,9,7.0,3,0.0 +9476,13327,1617.1806110160323,34.0,120,0.0,69,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,178.0,0.0,42299.85,0.0,42370.0,2,0,3.0,4,3.0 +9477,13328,2062.111830979402,37.0,111,0.0,45,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,45603.65,0.0,38960.0,1,4,4.0,4,1.0 +9478,13329,1911.1709410051164,78.0,120,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14290.0,0.0,0.0,13786.3,0.0,0.0,1,0,2.0,1,0.0 +9479,13330,4828.089551573481,34.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24640.65,0.0,27940.0,2,10,8.0,1,1.0 +9480,13331,1389.4773716852683,86.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33170.0,0.0,0.0,31008.45,0.0,0.0,1,7,6.0,3,0.0 +9481,13332,2977.8285464283754,46.0,111,0.0,65,1.0,0.0,5.0,2.4,0.0,3840.0,0.0,0.0,0.0,0.0,21782.9,0.0,1370.0,3,9,7.0,4,1.0 +9482,13333,2600.9979133248835,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30020.0,0.0,0.0,31472.51514957779,0.0,0.0,1,10,8.0,1,0.0 +9483,13334,1873.1521240651605,46.0,400,0.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,38151.8,0.0,30510.0,3,0,0.0,4,2.0 +9484,13336,2109.8134087562544,50.0,300,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60153.0,130.0,61940.0,2,0,0.0,4,3.0 +9485,13337,1893.6843928698897,46.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,5000.0,0.0,0.0,0.0,0.0,10462.8,2060.0,1470.0,3,10,8.0,2,1.0 +9486,13338,3842.397544163578,88.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28770.0,0.0,0.0,27150.5,0.0,0.0,1,10,8.0,1,0.0 +9487,13339,2921.2655914430193,40.0,111,0.0,65,1.0,1.0,4.0,2.3,11550.0,0.0,0.0,0.0,0.0,0.0,39138.0,0.0,20520.0,3,9,7.0,4,1.0 +9488,13341,1466.0530745880658,68.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22970.0,0.0,0.0,22149.35,0.0,0.0,1,0,3.0,3,0.0 +9489,13343,6568.975811611403,73.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,35110.0,0.0,0.0,33418.0,0.0,0.0,1,8,6.0,1,0.0 +9490,13346,1298.573893680894,28.0,111,11230.0,67,1.0,0.0,2.0,1.3,0.0,1110.0,0.0,0.0,0.0,0.0,19681.15,0.0,600.0,3,9,7.0,2,1.0 +9491,13347,3885.3136441996007,83.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25450.0,0.0,0.0,28515.67767663852,0.0,3450.0,5,10,8.0,3,1.0 +9492,13352,1670.98281803049,45.0,120,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,65864.2,0.0,0.0,2,0,1.0,4,2.0 +9493,13353,3653.112420233785,33.0,112,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30274.1,0.0,33720.0,3,8,0.0,1,1.0 +9494,13354,536.3271828972048,36.0,300,0.0,46,1.0,1.0,2.0,1.5,9720.0,0.0,0.0,0.0,0.0,0.0,17258.0,0.0,450.0,3,0,0.0,2,1.0 +9495,13355,953.5919405187994,39.0,111,6340.0,55,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,12892.85,0.0,1370.0,3,9,7.0,2,1.0 +9496,13357,1070.621887445499,42.0,111,0.0,85,0.0,0.0,4.0,2.3,10960.0,0.0,0.0,0.0,0.0,0.0,32037.0,0.0,0.0,3,9,7.0,2,0.0 +9497,13358,106.6784646360265,42.0,211,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44655.45,0.0,40410.0,2,1,2.0,4,2.0 +9498,13359,1274.3063562801121,23.0,111,0.0,22,2.0,2.0,5.0,2.6,0.0,4230.0,0.0,0.0,0.0,0.0,46183.0,2080.0,26870.0,3,9,7.0,4,2.0 +9499,13360,1919.583309869301,54.0,111,1410.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,3340.0,434.0,0.0,90531.66867829715,0.0,89290.0,1,9,7.0,4,2.0 +9500,13361,2171.7334839603304,69.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10200.0,0.0,0.0,11040.0,0.0,0.0,3,0,1.0,1,0.0 +9501,13362,3737.1651134187427,47.0,112,0.0,56,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,31388.85,690.0,31200.0,1,5,0.0,5,2.0 +9502,13366,2473.5450094082757,89.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26590.0,0.0,0.0,28763.05,0.0,0.0,1,1,2.0,1,0.0 +9503,13367,2394.12818944207,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32760.0,0.0,0.0,31627.1,0.0,0.0,1,9,7.0,3,0.0 +9504,13368,2660.7255251127676,35.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20367.85,0.0,22360.0,3,10,8.0,1,1.0 +9505,13369,2565.202088778546,46.0,120,0.0,21,2.0,2.0,2.0,1.5,2160.0,0.0,0.0,0.0,0.0,0.0,21846.05,0.0,7150.0,1,0,0.0,2,2.0 +9506,13372,4494.941503543521,59.0,400,0.0,77,0.0,0.0,1.0,1.0,10960.0,0.0,0.0,0.0,0.0,0.0,13947.0,0.0,0.0,3,0,1.0,1,0.0 +9507,13373,3487.1098788830022,44.0,111,0.0,56,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,33240.95,0.0,15270.0,3,8,6.0,4,2.0 +9508,13375,1341.0650611953256,79.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19700.0,0.0,0.0,18222.55,0.0,0.0,1,1,3.0,1,0.0 +9509,13376,1486.690038797884,52.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49229.0,0.0,53590.0,2,8,0.0,3,2.0 +9510,13377,1708.6179594882371,55.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1170.0,0.0,52948.0,0.0,0.0,1,0,0.0,3,2.0 +9511,13378,2023.7518280076818,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24970.0,0.0,0.0,24620.95,0.0,0.0,3,6,4.0,3,0.0 +9512,13380,578.0952693967408,35.0,120,0.0,85,0.0,0.0,3.0,1.6,0.0,7920.0,0.0,0.0,0.0,0.0,14351.0,0.0,0.0,3,0,2.0,2,0.0 +9513,13381,3304.090392468289,44.0,120,0.0,21,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,78692.28418033564,0.0,49810.0,2,0,0.0,4,2.0 +9514,13382,617.3898334716666,40.0,400,0.0,63,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,39854.0,0.0,17290.0,3,0,0.0,2,2.0 +9515,13383,1256.017045879379,80.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54540.0,0.0,0.0,48968.65,0.0,0.0,1,1,3.0,3,0.0 +9516,13384,892.0214104859155,40.0,112,0.0,68,1.0,1.0,2.0,1.3,0.0,1010.0,0.0,0.0,0.0,0.0,14617.0,2850.0,4980.0,3,10,0.0,2,1.0 +9517,13385,4539.187198352444,25.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20452.1,0.0,21750.0,3,7,6.0,1,1.0 +9518,13386,3324.25772431711,77.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22730.0,0.0,0.0,21309.05,0.0,0.0,1,8,1.0,1,0.0 +9519,13387,2266.9873441822533,77.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46970.0,0.0,0.0,52798.7,0.0,0.0,1,7,4.0,3,0.0 +9520,13388,1815.253199140971,35.0,112,10300.0,43,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,47056.55,740.0,31040.0,3,8,1.0,4,2.0 +9521,13389,3502.4289627163707,28.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21814.5,1540.0,21930.0,2,7,5.0,1,1.0 +9522,13391,2871.68783175709,38.0,111,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25389.45,0.0,21950.0,5,9,7.0,4,2.0 +9523,13393,1291.2177157348808,68.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28020.0,0.0,0.0,27076.6,0.0,0.0,1,4,4.0,3,0.0 +9524,13394,1755.4184180923692,46.0,120,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,62892.3,0.0,66910.0,1,0,0.0,4,2.0 +9525,13396,2841.3589038160626,43.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31428.05,0.0,34920.0,2,10,8.0,1,1.0 +9526,13397,1043.112022427467,35.0,111,5810.0,63,2.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,43509.5,450.0,21490.0,3,10,8.0,4,2.0 +9527,13398,4390.049185832566,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16420.0,0.0,0.0,16422.0,0.0,0.0,1,10,8.0,1,0.0 +9528,13400,2717.786125187066,45.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,2,8,7.0,1,1.0 +9529,13401,1049.9990366093134,33.0,111,2180.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29323.9,0.0,23610.0,3,9,7.0,4,2.0 +9530,13402,2265.314405587887,39.0,111,190.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39575.3,0.0,34810.0,3,7,5.0,4,2.0 +9531,13404,2074.9320745718073,43.0,111,890.0,48,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,10258.75,0.0,17600.0,3,9,7.0,2,1.0 +9532,13405,2040.63137070062,73.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,84580.0,0.0,0.0,79866.7,0.0,0.0,1,9,7.0,3,1.0 +9533,13406,1886.2299994580806,45.0,112,0.0,63,1.0,1.0,4.0,2.5,0.0,0.0,0.0,9520.0,0.0,0.0,37463.15,0.0,26600.0,3,9,2.0,4,1.0 +9534,13407,2919.8741931605646,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17180.0,0.0,0.0,17662.0,0.0,0.0,3,9,7.0,1,0.0 +9535,13408,1127.221519050678,47.0,112,0.0,85,0.0,0.0,5.0,2.4,9700.0,0.0,0.0,0.0,0.0,0.0,29861.0,0.0,0.0,3,9,3.0,4,0.0 +9536,13409,1113.0832814703695,83.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32820.0,0.0,0.0,34232.8,0.0,0.0,1,2,3.0,3,0.0 +9537,13410,6858.558112987303,23.0,221,0.0,67,1.0,1.0,1.0,1.0,4640.0,0.0,0.0,0.0,0.0,0.0,14147.0,0.0,7180.0,3,1,2.0,1,1.0 +9538,13411,817.9875860973482,30.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23013.05,1170.0,16410.0,3,10,8.0,2,1.0 +9539,13413,2448.811158457914,29.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,67673.05,0.0,68570.0,2,8,3.0,4,2.0 +9540,13414,2261.9474171238103,69.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42480.0,0.0,0.0,38491.0,0.0,0.0,1,9,7.0,3,0.0 +9541,13415,3014.5256361062998,64.0,400,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,26480.0,0.0,0.0,22975.4,0.0,0.0,1,0,0.0,1,1.0 +9542,13416,1245.2475029959196,26.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37726.55,0.0,41590.0,2,8,6.0,3,2.0 +9543,13417,2345.1417951022568,37.0,112,0.0,43,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,36797.8,0.0,27690.0,2,4,0.0,4,2.0 +9544,13418,2000.914114316329,64.0,120,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19000.0,0.0,0.0,25044.4,0.0,6450.0,1,0,0.0,3,1.0 +9545,13420,1455.636275543,50.0,112,0.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,72239.5,0.0,83930.0,1,5,0.0,3,2.0 +9546,13421,1806.36783402037,42.0,111,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50431.7,0.0,51350.0,2,8,6.0,4,2.0 +9547,13424,5481.053447633084,28.0,111,9130.0,52,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16184.0,0.0,1690.0,3,9,7.0,2,1.0 +9548,13428,2186.1201546599273,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58220.0,0.0,0.0,44229.85,0.0,0.0,1,9,7.0,3,0.0 +9549,13429,1719.7819639868867,54.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,103053.9,0.0,132860.0,1,9,7.0,3,2.0 +9550,13431,1325.1428478023747,48.0,112,0.0,52,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,42551.7,0.0,35620.0,2,7,0.0,4,2.0 +9551,13433,2469.2328712307,76.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16140.0,0.0,0.0,16384.65,0.0,0.0,5,9,2.0,1,0.0 +9552,13435,2480.86241877602,63.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23350.0,0.0,0.0,30083.1,0.0,0.0,2,7,0.0,1,0.0 +9553,13437,3035.247861350726,51.0,300,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46053.05,0.0,50230.0,1,0,0.0,2,1.0 +9554,13440,2970.342595525493,31.0,112,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42378.8,0.0,38000.0,2,9,1.0,4,2.0 +9555,13441,2908.715365314126,86.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28810.0,0.0,0.0,28423.35,0.0,0.0,3,8,7.0,3,0.0 +9556,13442,1016.2207172366723,31.0,111,10630.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17554.0,0.0,3850.0,3,6,5.0,3,2.0 +9557,13443,2636.1021981349336,62.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9500.0,0.0,0.0,9270.65,0.0,0.0,1,0,1.0,1,0.0 +9558,13444,2792.6649699249383,34.0,111,5570.0,56,1.0,1.0,1.0,1.0,0.0,920.0,0.0,0.0,0.0,0.0,16122.95,810.0,5570.0,3,8,7.0,1,1.0 +9559,13445,946.153267324015,32.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,8060.0,0.0,0.0,0.0,0.0,20997.2,0.0,0.0,3,8,6.0,2,0.0 +9560,13447,3679.6853509410303,27.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25355.75,0.0,27270.0,3,10,8.0,1,1.0 +9561,13448,1891.4424290192296,38.0,120,0.0,42,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,40386.85,0.0,28050.0,2,0,0.0,4,2.0 +9562,13449,2579.3426603259054,48.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53915.7,0.0,64050.0,1,10,8.0,2,1.0 +9563,13450,3336.9028421406833,36.0,120,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27005.35,0.0,24570.0,3,0,0.0,4,1.0 +9564,13452,3011.3514114900822,30.0,111,0.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,38897.95,0.0,35000.0,3,9,7.0,4,2.0 +9565,13453,3375.5822048125806,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26190.0,252.0,0.0,23852.1,0.0,0.0,1,8,7.0,1,0.0 +9566,13454,2225.756187715076,51.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33916.85,0.0,36100.0,3,9,7.0,1,1.0 +9567,13455,344.8174931689719,59.0,300,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,273.0,0.0,26293.15,0.0,20930.0,1,0,0.0,2,1.0 +9568,13456,2990.9036169213173,58.0,111,0.0,69,1.0,1.0,2.0,1.5,0.0,0.0,0.0,1390.0,0.0,0.0,85460.91403296661,0.0,890.0,1,9,7.0,2,1.0 +9569,13457,1727.0340708798606,82.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17610.0,0.0,0.0,19614.45,0.0,0.0,1,0,0.0,3,0.0 +9570,13458,2236.1692811686985,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33540.0,132.0,0.0,28738.1,0.0,0.0,1,9,7.0,1,0.0 +9571,13459,2704.5650378473624,73.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12040.0,0.0,0.0,11807.3,0.0,0.0,1,0,0.0,1,0.0 +9572,13460,1810.3011264553402,67.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18510.0,0.0,0.0,17969.85,0.0,0.0,1,0,0.0,1,0.0 +9573,13461,1499.1998507331575,76.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,96050.0,850.0,0.0,81156.57008950613,0.0,0.0,1,5,4.0,3,0.0 +9574,13462,1382.3978101333748,32.0,111,0.0,22,1.0,1.0,5.0,2.2,0.0,0.0,0.0,0.0,0.0,0.0,33920.0,0.0,0.0,3,6,5.0,2,1.0 +9575,13464,1302.726807644441,50.0,112,0.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43365.85,0.0,46940.0,1,6,0.0,4,2.0 +9576,13466,2248.181996126689,89.0,400,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17470.0,0.0,0.0,16806.15,0.0,0.0,1,0,0.0,1,0.0 +9577,13467,1725.661310015958,52.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55091.15,0.0,60270.0,2,10,8.0,4,2.0 +9578,13468,2856.6747473965393,76.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13760.0,0.0,0.0,14105.0,0.0,0.0,3,9,7.0,1,0.0 +9579,13469,2719.264893491382,50.0,111,16190.0,85,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16128.0,0.0,1960.0,3,6,5.0,1,0.0 +9580,13470,785.3995610365353,63.0,111,0.0,22,1.0,0.0,2.0,1.5,0.0,6330.0,0.0,0.0,0.0,0.0,8739.95,460.0,1100.0,1,8,7.0,2,1.0 +9581,13472,2169.2082786559045,52.0,111,0.0,52,2.0,1.0,4.0,2.5,0.0,22580.0,0.0,35830.0,0.0,0.0,79011.0,0.0,25330.0,1,10,8.0,2,2.0 +9582,13474,990.1830430414612,39.0,111,1250.0,22,1.0,1.0,2.0,1.5,0.0,1540.0,0.0,0.0,0.0,0.0,17587.4,400.0,0.0,3,8,7.0,2,1.0 +9583,13476,4775.58217560235,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9754.0,0.0,0.0,3,10,8.0,1,0.0 +9584,13477,2540.730143306546,68.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,2570.0,0.0,0.0,75997.5,0.0,0.0,1,1,2.0,3,0.0 +9585,13478,1894.1949638909598,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22370.0,0.0,0.0,20916.2,0.0,0.0,3,7,6.0,1,0.0 +9586,13480,2003.4351363959222,54.0,111,1050.0,45,2.0,2.0,3.0,2.0,0.0,0.0,0.0,6730.0,0.0,0.0,38420.9,0.0,33690.0,1,9,7.0,4,2.0 +9587,13481,2597.513039685947,60.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4330.0,0.0,0.0,4135.5,0.0,0.0,1,0,0.0,1,0.0 +9588,13482,3794.979926660638,36.0,111,0.0,56,2.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,48787.0,1100.0,26450.0,3,10,8.0,4,2.0 +9589,13483,2644.355742049113,41.0,221,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17146.95,0.0,18110.0,3,1,3.0,1,1.0 +9590,13484,1264.483512569244,56.0,112,36260.0,38,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,61135.8,0.0,23990.0,1,10,1.0,4,2.0 +9591,13485,1414.5952812028727,72.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27310.0,0.0,0.0,26621.0,0.0,0.0,1,0,1.0,3,0.0 +9592,13486,1929.3718504173266,43.0,112,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32585.5,0.0,33310.0,1,8,0.0,4,2.0 +9593,13487,4131.874296506831,43.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,37326.05,0.0,43300.0,3,10,8.0,1,1.0 +9594,13488,696.6671128047485,48.0,111,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50352.85,0.0,49220.0,3,7,5.0,4,2.0 +9595,13490,451.59173939491654,49.0,112,3110.0,56,1.0,1.0,5.0,2.4,0.0,0.0,0.0,13330.0,1857.0,0.0,39342.3,0.0,4640.0,1,9,0.0,2,1.0 +9596,13491,1814.095309316212,47.0,112,20940.0,46,3,1.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,40117.95,0.0,17350.0,1,8,0.0,4,3.0 +9597,13493,3188.9695760629284,75.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14930.0,0.0,0.0,15462.0,0.0,0.0,3,0,0.0,1,0.0 +9598,13496,2862.040847381913,47.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,2319.0,0.0,76020.04009545632,0.0,69020.0,1,10,8.0,4,2.0 +9599,13497,3089.7266940846525,62.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6200.0,0.0,0.0,10657.1,0.0,4560.0,3,0,0.0,1,0.0 +9600,13502,1940.5149901183268,59.0,120,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,14300.0,0.0,0.0,90945.03322677841,0.0,87310.0,1,0,3.0,1,1.0 +9601,13504,1446.3225434362193,88.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17800.0,0.0,0.0,18000.1,0.0,0.0,5,2,3.0,1,0.0 +9602,13505,2007.2610333125915,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13900.0,0.0,0.0,14356.0,0.0,0.0,3,9,7.0,1,0.0 +9603,13506,1717.083090445609,50.0,300,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34393.75,1260.0,35040.0,3,0,0.0,3,2.0 +9604,13507,3043.9721356993764,43.0,112,0.0,22,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,47139.65,0.0,39810.0,2,6,0.0,4,2.0 +9605,13509,1484.4283014377716,57.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,954.0,0.0,288618.45,0.0,302330.0,1,9,7.0,4,1.0 +9606,13510,2077.7709735575136,69.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46160.0,0.0,0.0,44442.9,0.0,0.0,1,0,0.0,3,0.0 +9607,13512,4322.646016390748,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14080.0,0.0,0.0,13638.0,0.0,0.0,1,8,6.0,1,0.0 +9608,13515,2359.4502481426484,23.0,111,0.0,53,1.0,1.0,2.0,1.5,0.0,0.0,0.0,500.0,0.0,0.0,18552.0,660.0,14650.0,3,6,4.0,3,1.0 +9609,13516,2347.8508334318312,41.0,120,6960.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33335.6,500.0,13520.0,3,0,0.0,4,1.0 +9610,13517,553.671275260496,36.0,111,0.0,55,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,34760.25,0.0,18870.0,3,10,8.0,2,1.0 +9611,13518,2582.9210390676726,49.0,112,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39707.75,0.0,41010.0,2,9,1.0,4,2.0 +9612,13520,1944.7774637607267,48.0,112,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52671.8,0.0,51230.0,1,5,0.0,4,2.0 +9613,13521,2045.5049054617398,65.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17750.0,0.0,0.0,18319.0,0.0,0.0,3,6,5.0,3,0.0 +9614,13523,1502.2705282342995,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36200.0,0.0,0.0,34998.5,0.0,0.0,1,6,4.0,1,0.0 +9615,13524,3022.1871195832837,69.0,112,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,44160.0,3707.0,0.0,73642.99009545633,0.0,8440.0,1,9,3.0,3,1.0 +9616,13525,4135.559843614541,33.0,111,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18021.85,0.0,18660.0,3,9,7.0,1,1.0 +9617,13526,2388.456131392098,61.0,111,6410.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7621.0,0.0,450.0,3,9,7.0,1,1.0 +9618,13527,2831.1768174838753,70.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,68150.0,0.0,0.0,167593.97890052796,0.0,126510.0,1,10,8.0,4,2.0 +9619,13528,1612.3922148785448,56.0,300,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1657.0,0.0,91218.4,0.0,103500.0,1,0,0.0,3,2.0 +9620,13529,1914.899480685976,62.0,112,0.0,42,1.0,0.0,2.0,1.5,0.0,0.0,0.0,66930.0,0.0,0.0,51553.05,0.0,0.0,1,7,4.0,3,1.0 +9621,13530,1067.3168968969264,49.0,111,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15111.55,1670.0,8030.0,3,9,7.0,2,1.0 +9622,13531,5167.460717321289,47.0,111,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,1392.0,0.0,37448.468540817295,0.0,17000.0,1,8,7.0,4,2.0 +9623,13532,2488.3481000075126,35.0,300,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,71073.15,0.0,79430.0,2,0,0.0,3,2.0 +9624,13533,2590.896075673788,31.0,112,5630.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14502.55,0.0,9510.0,3,6,0.0,1,1.0 +9625,13535,3048.821069395933,30.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,250.0,0.0,0.0,0.0,0.0,1879.45,130.0,1980.0,2,9,7.0,1,1.0 +9626,13536,1813.7439155320478,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52970.0,50.0,0.0,48506.701412723996,0.0,0.0,1,10,0.0,3,0.0 +9627,13538,2249.6016441862594,67.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30200.0,0.0,0.0,27053.95,0.0,0.0,1,10,2.0,1,0.0 +9628,13539,2906.582490383243,77.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16570.0,0.0,0.0,16240.6,0.0,0.0,1,1,3.0,1,0.0 +9629,13540,1562.1545906886831,59.0,400,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19470.0,663.0,0.0,48242.25,0.0,31060.0,2,0,0.0,3,1.0 +9630,13543,2248.73983822271,31.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55515.5,0.0,59590.0,3,9,1.0,3,2.0 +9631,13544,7774.582331802916,67.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19180.0,0.0,0.0,18441.5,0.0,0.0,3,2,3.0,1,0.0 +9632,13545,4429.778241779898,29.0,111,0.0,68,2.0,1.0,4.0,2.5,0.0,14170.0,0.0,0.0,0.0,0.0,30331.75,60.0,17680.0,1,7,6.0,4,2.0 +9633,13547,3519.8760512030026,40.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,2,8,6.0,1,1.0 +9634,13548,1514.0705841052666,64.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38380.0,0.0,0.0,37036.05,0.0,0.0,1,6,0.0,3,0.0 +9635,13549,3746.633115499566,69.0,111,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,37700.0,0.0,0.0,51967.65,0.0,18360.0,1,9,7.0,4,1.0 +9636,13550,1160.1582799082755,42.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43074.8,0.0,42430.0,3,7,5.0,4,2.0 +9637,13552,4814.738371764299,32.0,111,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33822.0,0.0,39630.0,3,10,8.0,1,1.0 +9638,13554,4274.172965808989,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18080.0,0.0,0.0,18185.0,0.0,0.0,3,10,8.0,1,0.0 +9639,13555,2339.5913883557414,32.0,111,0.0,31,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,67932.0,0.0,69100.0,2,8,6.0,4,2.0 +9640,13556,1150.582531274498,60.0,111,0.0,52,3,4.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,72021.1,1900.0,68370.0,3,10,8.0,5,4.0 +9641,13557,1903.4660113359425,47.0,111,0.0,67,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,29014.8,910.0,26060.0,1,5,4.0,4,2.0 +9642,13558,1822.7974740784146,33.0,120,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35868.25,0.0,35010.0,2,0,1.0,4,2.0 +9643,13559,724.6897225652007,47.0,111,0.0,46,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,30666.45,0.0,18930.0,2,6,5.0,2,1.0 +9644,13560,1789.032798459815,45.0,400,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,15992.675,1370.0,23190.0,2,0,0.0,4,2.0 +9645,13561,1081.1147472561447,66.0,112,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26602.2,0.0,27400.0,1,10,3.0,3,1.0 +9646,13562,2688.1808932065255,49.0,112,1870.0,46,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,64930.35,2740.0,56180.0,1,4,0.0,4,3.0 +9647,13565,1835.144047029968,57.0,211,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52527.2,0.0,26270.0,1,1,3.0,3,2.0 +9648,13566,1720.0227107620835,58.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35913.3,0.0,38150.0,2,8,7.0,2,1.0 +9649,13567,1332.269725190608,72.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27700.0,0.0,0.0,26605.3,0.0,0.0,1,0,3.0,3,0.0 +9650,13569,1330.849149909278,56.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12155.0,0.0,12120.0,3,10,0.0,1,1.0 +9651,13572,6106.629756960473,28.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21775.75,0.0,22660.0,3,10,8.0,1,1.0 +9652,13573,705.2915069272296,44.0,111,0.0,52,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,48914.05,0.0,28380.0,2,10,8.0,2,1.0 +9653,13574,3584.513591750321,29.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28438.6,0.0,0.0,3,9,7.0,1,1.0 +9654,13576,730.3338071513846,55.0,111,0.0,67,1.0,0.0,3.0,1.8,0.0,7490.0,0.0,0.0,0.0,0.0,13426.0,0.0,0.0,3,5,4.0,2,1.0 +9655,13577,1121.8083638185378,45.0,111,6720.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10377.8,0.0,2400.0,3,8,7.0,1,0.0 +9656,13578,2034.8865963630312,59.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,62874.65,0.0,73340.0,1,10,8.0,3,2.0 +9657,13580,4896.166682606007,29.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20617.35,0.0,22350.0,3,9,7.0,1,1.0 +9658,13581,2075.981272103931,70.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29290.0,102.0,0.0,28299.95,0.0,0.0,1,0,0.0,3,0.0 +9659,13582,1883.2039104569365,66.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,610.0,8290.0,763.0,0.0,9752.5,0.0,0.0,1,9,2.0,1,0.0 +9660,13583,3302.5815669901185,49.0,111,0.0,55,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8964.0,0.0,0.0,3,8,7.0,1,1.0 +9661,13584,1182.785044051917,30.0,221,0.0,85,0.0,0.0,3.0,1.6,0.0,5490.0,0.0,0.0,0.0,0.0,16236.0,0.0,0.0,3,1,2.0,2,0.0 +9662,13585,1591.0487679083421,53.0,112,0.0,46,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,50758.18573868277,0.0,51620.0,1,10,4.0,4,2.0 +9663,13586,2754.124391770152,81.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,48010.0,0.0,0.0,45183.75,0.0,0.0,1,8,6.0,1,0.0 +9664,13587,3183.0552602776065,23.0,211,1890.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14154.65,1500.0,11050.0,3,1,2.0,1,1.0 +9665,13588,13207.053646243194,56.0,221,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42834.3,0.0,45950.0,1,1,3.0,4,2.0 +9666,13589,2297.825259764484,46.0,111,2450.0,33,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,63855.75,0.0,66530.0,3,9,7.0,4,2.0 +9667,13590,3070.806286245945,83.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43020.0,0.0,0.0,44688.5,0.0,0.0,1,8,7.0,1,0.0 +9668,13591,2585.9926282740744,85.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26050.0,0.0,0.0,25428.6,0.0,0.0,1,1,3.0,3,0.0 +9669,13592,2074.0300082939507,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24630.0,0.0,0.0,24084.0,0.0,0.0,1,9,7.0,3,0.0 +9670,13593,1686.8000592235026,51.0,120,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51981.6,0.0,56620.0,1,0,0.0,4,2.0 +9671,13594,4283.419458197052,21.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8333.0,0.0,6650.0,3,9,7.0,1,1.0 +9672,13595,2918.354122953596,49.0,111,0.0,21,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48134.05,450.0,6430.0,2,6,5.0,4,2.0 +9673,13596,3127.4407210749614,57.0,111,0.0,56,2.0,2.0,3.0,2.0,0.0,0.0,0.0,11270.0,0.0,0.0,69735.85,0.0,62790.0,3,9,7.0,4,2.0 +9674,13598,3392.0887741771094,38.0,112,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24333.0,0.0,24640.0,2,9,0.0,1,1.0 +9675,13600,2002.9716102273599,49.0,111,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,72968.05,0.0,79820.0,2,9,7.0,4,2.0 +9676,13602,573.4106691072999,47.0,112,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31663.1,0.0,30420.0,1,10,0.0,2,1.0 +9677,13603,2203.8790668626484,67.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17340.0,0.0,0.0,17075.75,0.0,0.0,1,1,2.0,1,0.0 +9678,13604,1646.009432378277,76.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57050.0,0.0,0.0,48901.72528833128,0.0,0.0,1,9,7.0,3,0.0 +9679,13605,3363.441427580399,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32230.0,0.0,0.0,28158.0,0.0,0.0,3,9,7.0,1,0.0 +9680,13606,2771.5735481281326,52.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26876.75,0.0,29130.0,3,4,4.0,1,1.0 +9681,13608,1761.6765814905484,65.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48850.0,0.0,0.0,44187.9,0.0,0.0,1,7,0.0,3,0.0 +9682,13610,2245.9109733888445,36.0,112,13890.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33522.75,0.0,18420.0,2,5,0.0,4,2.0 +9683,13611,1533.357771540625,62.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23710.0,0.0,0.0,23568.25,0.0,0.0,1,8,0.0,3,0.0 +9684,13612,3141.5644299600494,35.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,42351.55,0.0,48740.0,2,10,8.0,1,1.0 +9685,13614,587.3899696631195,50.0,111,950.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8893.25,0.0,5640.0,3,9,7.0,1,1.0 +9686,13616,3840.3264541829267,79.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10810.0,0.0,0.0,12244.5,0.0,0.0,1,10,8.0,1,0.0 +9687,13617,2179.893042712193,74.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15300.0,0.0,0.0,14856.2,0.0,0.0,1,8,1.0,1,0.0 +9688,13618,869.632775844794,39.0,112,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,6077.049999999999,200.0,60.0,2,9,3.0,2,1.0 +9689,13620,1225.543407298019,82.0,112,0.0,75,0.0,0.0,2.0,1.5,9720.0,0.0,0.0,21830.0,0.0,0.0,29270.95,0.0,0.0,1,10,3.0,2,0.0 +9690,13622,2090.308864668283,60.0,221,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,38933.6,0.0,0.0,1,1,2.0,1,1.0 +9691,13624,1105.5072134089512,24.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,29513.5,980.0,16250.0,3,6,4.0,2,1.0 +9692,13625,729.7956315183172,36.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21312.1,900.0,17840.0,3,9,7.0,2,1.0 +9693,13626,2434.445638818711,43.0,400,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49066.05,0.0,49290.0,2,0,0.0,4,2.0 +9694,13628,555.1000017645476,35.0,400,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23077.0,1930.0,19470.0,3,0,0.0,2,1.0 +9695,13629,2135.1765915529554,42.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,60946.9,0.0,63030.0,1,7,5.0,4,2.0 +9696,13630,1915.1280543702496,71.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24940.0,0.0,0.0,29400.6,0.0,0.0,3,1,2.0,3,0.0 +9697,13631,1957.1254307528686,39.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49638.95,0.0,53150.0,2,9,7.0,4,2.0 +9698,13632,1749.646286236274,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56340.0,0.0,0.0,50246.2,0.0,0.0,1,6,5.0,3,0.0 +9699,13634,2627.9796865562025,32.0,400,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41482.4,0.0,39220.0,2,0,1.0,4,2.0 +9700,13635,2285.4490630991654,34.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53211.5,0.0,54530.0,1,10,2.0,4,2.0 +9701,13636,2693.1443679290437,50.0,120,110.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13641.3,2740.0,8050.0,3,0,1.0,1,1.0 +9702,13637,1896.4532960021854,51.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36532.3,0.0,38710.0,2,8,6.0,2,1.0 +9703,13638,1192.2708402387902,58.0,111,0.0,77,1.0,1.0,5.0,3.0,0.0,0.0,0.0,33980.0,0.0,0.0,64001.5,0.0,28380.0,1,9,7.0,5,1.0 +9704,13640,824.6726244769511,40.0,112,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24895.75,0.0,20300.0,2,8,3.0,2,1.0 +9705,13642,2307.617412638099,57.0,111,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1525.0,0.0,20945.8,0.0,20470.0,3,8,6.0,1,1.0 +9706,13643,5714.442679555544,56.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30406.95,0.0,28900.0,1,8,7.0,3,1.0 +9707,13644,463.9972830905568,36.0,111,5960.0,56,1.0,1.0,5.0,2.2,0.0,0.0,0.0,0.0,0.0,0.0,38847.0,1160.0,4510.0,3,10,8.0,2,1.0 +9708,13647,2678.458175933978,62.0,111,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,37530.0,0.0,0.0,50611.1,0.0,13850.0,3,6,5.0,4,1.0 +9709,13648,4173.801166592862,26.0,111,0.0,34,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19888.0,0.0,15880.0,3,9,7.0,1,1.0 +9710,13649,654.1283615962707,47.0,221,0.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30189.25,0.0,21930.0,3,1,2.0,2,1.0 +9711,13650,2361.215102746064,28.0,120,1910.0,47,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,26992.05,0.0,17850.0,3,0,1.0,4,1.0 +9712,13651,2380.955891680948,41.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50768.6,0.0,52590.0,2,8,1.0,3,2.0 +9713,13652,1682.2821003333092,56.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,561.0,0.0,48844.63481558737,0.0,50530.0,1,9,7.0,3,2.0 +9714,13653,2247.5459904709155,41.0,111,17370.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35367.25,0.0,20480.0,1,6,4.0,3,1.0 +9715,13654,2111.1233991671147,27.0,112,10000.0,68,1.0,1.0,5.0,2.4,0.0,410.0,0.0,0.0,0.0,0.0,28584.45,160.0,7270.0,3,9,3.0,4,1.0 +9716,13656,2350.5000862505453,49.0,400,0.0,55,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,32836.188627097756,0.0,21850.0,5,0,0.0,4,2.0 +9717,13657,2420.7322115927645,58.0,111,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17840.0,0.0,0.0,26202.15,0.0,13270.0,1,4,3.0,3,1.0 +9718,13658,2087.2186414569533,41.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,64733.45,0.0,66050.0,2,9,7.0,4,2.0 +9719,13659,2266.3264385574444,81.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14460.0,0.0,0.0,13869.65,0.0,0.0,1,8,0.0,1,0.0 +9720,13660,2561.9991110518,67.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,40480.0,0.0,0.0,39050.2,0.0,1410.0,1,9,1.0,3,2.0 +9721,13661,1877.717347068447,62.0,112,800.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,19640.0,103.0,0.0,21491.5,0.0,1200.0,1,10,0.0,3,1.0 +9722,13662,3726.445268648413,36.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33904.65,0.0,39640.0,2,10,8.0,1,1.0 +9723,13663,3488.429101776137,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20010.0,0.0,0.0,19724.0,0.0,0.0,3,8,6.0,1,0.0 +9724,13666,5491.651234601228,28.0,111,13280.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16547.45,0.0,3920.0,1,10,8.0,3,1.0 +9725,13667,5620.505263043857,56.0,111,6890.0,63,2.0,2.0,5.0,3.0,9720.0,2900.0,0.0,10640.0,0.0,0.0,52924.3,2640.0,20320.0,3,8,6.0,5,2.0 +9726,13668,2459.841014912071,62.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28720.0,0.0,0.0,55257.45,0.0,32340.0,1,6,0.0,3,1.0 +9727,13669,2814.122961090538,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4045.0,0.0,1920.0,3,9,7.0,1,0.0 +9728,13670,1368.4342074782526,66.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31320.0,0.0,0.0,30503.3,0.0,0.0,1,2,3.0,3,0.0 +9729,13671,3715.955760865202,54.0,111,0.0,78,1.0,1.0,2.0,1.5,15790.0,0.0,0.0,0.0,0.0,0.0,26312.0,0.0,7450.0,3,5,4.0,2,1.0 +9730,13672,3794.2487710333185,27.0,112,2570.0,42,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27328.5,0.0,17520.0,2,8,1.0,4,2.0 +9731,13673,2469.5814462661288,37.0,111,2020.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32029.55,0.0,26360.0,3,4,4.0,4,2.0 +9732,13674,2509.029339253388,48.0,111,0.0,52,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24530.55,0.0,24530.0,3,10,8.0,4,2.0 +9733,13675,2774.1223931755108,30.0,211,0.0,48,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26386.4,2020.0,21960.0,3,1,3.0,2,1.0 +9734,13678,1176.9514680819934,43.0,112,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28380.85,0.0,28510.0,3,10,4.0,2,1.0 +9735,13681,2248.235462590958,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21180.0,0.0,0.0,21143.45,0.0,0.0,2,9,7.0,1,0.0 +9736,13682,2882.1713657192313,43.0,111,17640.0,37,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18202.6,0.0,0.0,2,8,6.0,2,1.0 +9737,13683,2674.6184272373002,49.0,111,0.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,34128.85,50.0,32100.0,2,9,7.0,4,2.0 +9738,13684,564.7858314148876,41.0,111,3560.0,64,1.0,0.0,2.0,1.5,0.0,3290.0,0.0,0.0,0.0,0.0,10988.75,0.0,1200.0,3,5,4.0,2,1.0 +9739,13685,2386.3570451693945,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32570.0,0.0,0.0,31590.95,0.0,0.0,3,10,8.0,1,0.0 +9740,13687,2334.0979459987816,60.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20260.0,0.0,0.0,20003.0,0.0,0.0,5,8,0.0,1,0.0 +9741,13689,4297.61356560562,55.0,111,0.0,31,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,79412.4,0.0,113840.0,1,8,6.0,4,2.0 +9742,13690,819.9727008213373,35.0,111,0.0,68,1.0,0.0,3.0,1.6,0.0,6040.0,0.0,0.0,0.0,0.0,16273.05,0.0,0.0,3,8,7.0,2,1.0 +9743,13691,1385.324234125755,67.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18710.0,410.0,0.0,19492.95,0.0,0.0,1,8,2.0,1,0.0 +9744,13693,2663.5468838824477,29.0,120,0.0,63,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26095.7,1020.0,21030.0,3,0,0.0,4,2.0 +9745,13694,3173.0511260269554,58.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30850.0,881.0,0.0,30347.55,0.0,0.0,1,0,0.0,3,0.0 +9746,13695,3478.97713440102,73.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,44800.0,11627.0,0.0,57684.789262349484,0.0,0.0,1,8,7.0,1,0.0 +9747,13696,1616.6284609899485,63.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28070.0,471.0,0.0,42620.05,0.0,0.0,1,4,4.0,3,0.0 +9748,13702,3611.2098656069998,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19530.0,0.0,0.0,19039.35,0.0,0.0,1,8,6.0,1,0.0 +9749,13703,2373.925631986176,50.0,111,24250.0,85,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,3091.0,0.0,72491.5,0.0,57540.0,2,10,8.0,4,2.0 +9750,13705,2887.9200616463513,34.0,111,9460.0,43,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21407.85,590.0,3930.0,3,7,5.0,4,1.0 +9751,13708,3073.716728262276,39.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12667.3,2410.0,9280.0,3,8,3.0,1,1.0 +9752,13712,1693.925124685004,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31800.0,0.0,0.0,31164.3,0.0,0.0,3,6,5.0,3,0.0 +9753,13713,1097.6006710534566,49.0,111,0.0,85,0.0,0.0,4.0,2.1,0.0,2960.0,0.0,0.0,0.0,0.0,14054.0,0.0,0.0,3,8,7.0,2,0.0 +9754,13714,3067.7573561570866,40.0,111,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,65756.05,0.0,59630.0,1,10,8.0,4,2.0 +9755,13715,2631.0902166843844,37.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50692.15,0.0,57140.0,2,9,7.0,3,2.0 +9756,13716,3787.67641267602,30.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,36372.55,0.0,42700.0,2,10,8.0,1,1.0 +9757,13717,1316.2674995483915,52.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,71665.5,0.0,81970.0,2,8,7.0,4,2.0 +9758,13718,2114.1705089091984,73.0,120,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16980.0,411.0,0.0,17293.05,0.0,0.0,5,0,0.0,1,0.0 +9759,13719,2323.7762382924743,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18470.0,0.0,0.0,17510.35,0.0,0.0,1,8,7.0,1,0.0 +9760,13720,1622.6703267795772,68.0,120,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,47040.0,328.0,0.0,43123.2,0.0,0.0,1,0,0.0,3,1.0 +9761,13721,1946.5197925520508,55.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17372.45,0.0,18800.0,1,8,7.0,1,1.0 +9762,13722,2527.4655320819875,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19730.0,11.0,0.0,18638.35,0.0,0.0,1,9,7.0,1,0.0 +9763,13723,6016.58988753002,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23830.0,0.0,0.0,22022.9,0.0,0.0,1,9,7.0,1,0.0 +9764,13725,2831.912092722013,69.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28400.0,0.0,0.0,24814.55,0.0,0.0,1,8,1.0,1,0.0 +9765,13726,1874.684459265648,50.0,120,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44073.95,0.0,26410.0,2,0,1.0,4,2.0 +9766,13728,4379.270376423364,55.0,221,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17672.55,180.0,18190.0,3,1,2.0,1,1.0 +9767,13731,2555.7265476511343,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25120.0,0.0,0.0,23707.35,0.0,0.0,1,9,7.0,1,0.0 +9768,13733,2130.7502801861556,47.0,111,50.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25421.0,0.0,27620.0,2,9,7.0,3,2.0 +9769,13734,1935.087565226309,41.0,111,0.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44885.7,0.0,44570.0,2,8,7.0,4,2.0 +9770,13735,1711.6287708689254,35.0,400,0.0,63,2.0,1.0,6.0,3.1,9700.0,0.0,0.0,0.0,0.0,0.0,35296.25,0.0,24440.0,3,0,0.0,4,2.0 +9771,13737,2334.832685220392,55.0,111,110.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53418.65,0.0,48450.0,1,8,6.0,4,2.0 +9772,13738,2356.1338927792667,39.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22746.95,620.0,17270.0,3,8,7.0,2,1.0 +9773,13739,2165.589627389012,47.0,300,840.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40237.8,0.0,37500.0,2,0,1.0,4,2.0 +9774,13741,1878.4099049956521,73.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27120.0,0.0,0.0,26157.45,0.0,0.0,1,0,0.0,3,0.0 +9775,13742,4857.355096566322,37.0,112,0.0,64,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25216.25,0.0,19230.0,2,8,0.0,2,1.0 +9776,13743,1457.9152172688905,49.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15533.2,0.0,17130.0,3,4,3.0,1,1.0 +9777,13744,1857.1672224371403,63.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30470.0,256.0,0.0,37978.85,0.0,0.0,1,10,0.0,3,0.0 +9778,13745,1888.98094567913,70.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19390.0,0.0,0.0,20109.05,0.0,0.0,1,8,7.0,3,0.0 +9779,13746,2324.794323451635,35.0,112,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20054.4,0.0,21010.0,3,8,0.0,1,1.0 +9780,13747,1994.522870554317,58.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14780.0,0.0,0.0,30809.9,0.0,18710.0,3,8,6.0,3,1.0 +9781,13748,590.5857245355346,45.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,35859.8,0.0,16600.0,3,9,7.0,2,1.0 +9782,13750,3371.6437221302913,55.0,111,3430.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37180.0,0.0,0.0,41827.05,0.0,5930.0,1,8,7.0,1,0.0 +9783,13751,2300.3936639627964,48.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45028.05,0.0,50150.0,1,9,7.0,4,2.0 +9784,13754,1157.1425131562366,68.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21740.0,0.0,0.0,35328.7,0.0,7080.0,1,9,7.0,3,1.0 +9785,13755,1927.6534807239823,69.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35380.0,0.0,0.0,33702.75,0.0,720.0,1,0,0.0,3,0.0 +9786,13756,3374.9408532500393,24.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,970.0,0.0,40090.3,0.0,35820.0,3,8,6.0,3,2.0 +9787,13757,1924.3688213822054,62.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15140.0,0.0,0.0,21915.0,0.0,0.0,1,8,7.0,1,0.0 +9788,13758,2134.7104594635694,51.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,61327.25,0.0,68950.0,2,9,0.0,4,2.0 +9789,13760,2043.0301995693387,86.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39650.0,0.0,0.0,36159.2,0.0,0.0,1,7,5.0,3,0.0 +9790,13761,1724.0856791369622,57.0,112,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,107132.35,0.0,0.0,1,8,0.0,3,2.0 +9791,13762,1522.3693589186823,50.0,112,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27009.65,0.0,28470.0,2,8,0.0,4,2.0 +9792,13764,1237.9059104166863,46.0,211,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,56649.5,0.0,58460.0,2,1,3.0,4,2.0 +9793,13765,616.4401498961795,40.0,111,0.0,33,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35360.3,0.0,22350.0,3,10,8.0,2,1.0 +9794,13766,1796.331567291297,44.0,111,0.0,46,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46640.45,0.0,47850.0,2,9,7.0,4,3.0 +9795,13767,4501.732835193388,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,270.0,23210.0,0.0,0.0,23210.8,0.0,0.0,1,7,5.0,5,0.0 +9796,13768,5009.143215803984,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16200.0,0.0,0.0,15613.1,0.0,0.0,3,10,8.0,1,0.0 +9797,13769,3377.4623999499177,61.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4210.0,0.0,0.0,4286.0,0.0,0.0,3,8,7.0,1,0.0 +9798,13770,380.86864175807955,41.0,211,7430.0,56,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,25085.85,490.0,6710.0,3,2,3.0,2,1.0 +9799,13771,505.30482466367,50.0,112,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31850.35,0.0,16300.0,1,6,2.0,2,1.0 +9800,13772,1995.1203741024412,56.0,112,0.0,11,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,7,0.0,3,1.0 +9801,13773,2512.2465906319367,70.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13960.0,0.0,0.0,14014.0,0.0,0.0,3,6,5.0,1,0.0 +9802,13775,2579.0164717516836,46.0,400,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34056.35,0.0,21350.0,1,0,0.0,1,1.0 +9803,13776,4012.533455426193,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18710.0,0.0,0.0,17166.45,0.0,0.0,1,7,5.0,1,0.0 +9804,13778,5117.901284012742,27.0,112,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34396.75,0.0,35920.0,2,10,4.0,3,2.0 +9805,13779,3744.4921675444075,20.0,111,0.0,84,0.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,249.0,0.0,3221.2,0.0,0.0,3,9,7.0,5,0.0 +9806,13780,673.6519597073216,48.0,111,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31376.4,0.0,24520.0,3,9,7.0,2,1.0 +9807,13781,3002.868155971684,31.0,112,0.0,67,1.0,0.0,1.0,1.0,0.0,5380.0,0.0,0.0,0.0,0.0,9133.1,180.0,0.0,3,8,0.0,1,1.0 +9808,13784,3429.438711211645,66.0,111,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11800.0,0.0,0.0,10613.05,0.0,0.0,1,9,7.0,3,1.0 +9809,13786,2209.960605324412,65.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44050.0,547.0,0.0,40563.5,0.0,0.0,1,9,0.0,3,0.0 +9810,13788,1105.5993858836764,53.0,211,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44236.85,0.0,45340.0,2,1,3.0,3,2.0 +9811,13790,2024.6032411696506,38.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,126.0,0.0,51115.7,0.0,50410.0,2,9,7.0,4,2.0 +9812,13792,2915.8055455350204,62.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13900.0,0.0,0.0,13736.6,0.0,0.0,1,0,0.0,1,0.0 +9813,13794,3055.513624156715,52.0,111,0.0,85,1.0,1.0,3.0,2.0,10960.0,0.0,0.0,0.0,0.0,0.0,20778.0,0.0,4880.0,3,9,7.0,2,1.0 +9814,13795,2284.5160746243314,60.0,212,720.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,52244.7,0.0,54920.0,1,1,0.0,4,2.0 +9815,13796,1854.2409170076423,65.0,112,1780.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,25110.0,0.0,0.0,26440.4,0.0,330.0,1,8,1.0,3,1.0 +9816,13797,2364.3482733810906,56.0,112,690.0,38,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57305.605921115006,2170.0,57190.0,1,9,1.0,4,3.0 +9817,13798,1664.1146937813755,52.0,112,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24836.3,0.0,25420.0,1,8,0.0,3,1.0 +9818,13799,3680.132995537909,41.0,300,4690.0,68,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30938.55,920.0,11990.0,2,0,0.0,4,2.0 +9819,13800,1825.8019216813252,78.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48150.0,0.0,0.0,49347.565149577786,0.0,0.0,1,7,4.0,3,0.0 +9820,13801,1759.2202212089499,58.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54313.9,0.0,60460.0,2,10,8.0,3,2.0 +9821,13802,709.3552094228908,24.0,221,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24727.2,1970.0,15960.0,3,1,2.0,2,1.0 +9822,13804,2137.2422371796683,42.0,221,5210.0,48,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34634.4,0.0,21180.0,2,3,4.0,4,2.0 +9823,13805,2558.0998725587306,45.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37817.05,0.0,37010.0,2,4,4.0,4,2.0 +9824,13806,2002.5465637368402,62.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1568.0,0.0,84196.9,0.0,74810.0,1,9,7.0,3,2.0 +9825,13807,1592.302377171673,68.0,400,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,7770.0,0.0,0.0,35571.6,0.0,0.0,1,0,0.0,1,1.0 +9826,13808,1715.5491049133122,38.0,111,5680.0,52,3,1.0,4.0,2.5,0.0,400.0,0.0,0.0,0.0,0.0,20480.8,2130.0,6720.0,3,6,5.0,4,3.0 +9827,13809,3396.2026925471564,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,8510.0,0.0,0.0,32149.006228695525,0.0,0.0,1,9,7.0,1,0.0 +9828,13811,1944.6427676391681,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58550.0,1979.0,0.0,45127.38736469635,0.0,0.0,1,10,8.0,3,0.0 +9829,13813,1936.5932881764436,46.0,400,6490.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2480.0,0.0,0.0,14944.85,0.0,7660.0,1,0,0.0,1,1.0 +9830,13814,2093.5759224142594,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26520.0,0.0,0.0,27922.2,0.0,0.0,5,9,7.0,1,0.0 +9831,13815,4471.791579362062,51.0,221,6420.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,37.0,13769.3,0.0,6840.0,3,1,1.0,3,1.0 +9832,13816,1453.4790292620671,63.0,112,0.0,78,1.0,1.0,7.0,3.8,0.0,0.0,0.0,11960.0,0.0,0.0,22140.05,360.0,9120.0,3,10,5.0,4,1.0 +9833,13817,3962.8587298911802,27.0,111,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,61370.65,0.0,44330.0,3,9,7.0,4,2.0 +9834,13818,1776.8473658977648,83.0,120,0.0,86,0.0,0.0,2.0,1.5,9700.0,6260.0,0.0,23830.0,0.0,0.0,39336.0,810.0,0.0,1,0,3.0,5,0.0 +9835,13820,2863.0898896419335,57.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9710.0,0.0,0.0,43996.502842800895,0.0,27240.0,1,9,0.0,3,1.0 +9836,13821,2668.7075430319196,49.0,120,0.0,85,0.0,0.0,2.0,1.5,13860.0,0.0,0.0,0.0,0.0,0.0,22222.3,0.0,8530.0,5,0,1.0,5,0.0 +9837,13822,1959.3682942092134,67.0,111,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,11900.0,0.0,0.0,12300.0,0.0,0.0,3,6,5.0,4,0.0 +9838,13823,2598.1798797768547,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,73850.0,0.0,0.0,60950.50172618972,0.0,0.0,5,10,8.0,3,0.0 +9839,13825,3344.5325242255662,53.0,111,14410.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14146.45,0.0,0.0,3,9,7.0,1,0.0 +9840,13826,1708.4849969499494,49.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,62785.2,0.0,69860.0,2,9,7.0,4,2.0 +9841,13827,2429.7892054302765,41.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,64977.9,0.0,67190.0,2,9,7.0,4,2.0 +9842,13829,778.4706902136288,37.0,111,0.0,84,0.0,0.0,5.0,2.2,0.0,5270.0,0.0,0.0,0.0,0.0,23475.0,0.0,0.0,3,9,7.0,2,0.0 +9843,13831,1540.5964643928992,50.0,111,10920.0,53,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45567.15,640.0,37770.0,1,6,4.0,4,3.0 +9844,13832,2422.868339474937,54.0,111,800.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,33350.0,0.0,0.0,33532.75,0.0,5420.0,1,10,8.0,3,1.0 +9845,13835,1353.2547619384927,44.0,211,0.0,63,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,28369.15,0.0,25730.0,3,2,3.0,4,1.0 +9846,13836,2353.1711716395857,48.0,111,6330.0,68,2.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,15539.55,0.0,640.0,3,9,7.0,4,2.0 +9847,13837,552.5703544109418,32.0,400,0.0,85,0.0,0.0,6.0,2.5,0.0,7780.0,0.0,0.0,0.0,0.0,19900.0,0.0,0.0,3,0,0.0,2,0.0 +9848,13838,2401.5109778217957,82.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23970.0,0.0,0.0,22826.65,0.0,0.0,1,9,0.0,1,0.0 +9849,13839,2306.181370387523,30.0,211,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46410.5,0.0,41890.0,2,2,3.0,4,2.0 +9850,13841,906.7568356333899,49.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28800.0,0.0,26730.0,1,10,8.0,2,1.0 +9851,13842,1706.8321373323938,80.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,83360.0,0.0,0.0,80605.2074453405,0.0,140.0,5,0,0.0,3,0.0 +9852,13844,2557.3281579739555,59.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15316.55,0.0,15710.0,5,9,7.0,1,1.0 +9853,13845,1860.2670438145421,39.0,112,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34515.05,0.0,32760.0,2,8,2.0,4,2.0 +9854,13846,3306.756035963258,67.0,111,0.0,77,1.0,0.0,3.0,1.8,9720.0,0.0,0.0,17480.0,0.0,0.0,30822.7,0.0,80.0,3,9,7.0,5,1.0 +9855,13849,2188.126048959506,61.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,15380.0,0.0,0.0,20517.3,0.0,5300.0,3,8,7.0,1,1.0 +9856,13852,2838.4571878590054,62.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23800.0,0.0,0.0,19878.56632695692,0.0,0.0,1,0,1.0,3,0.0 +9857,13853,2091.000937974321,49.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,58474.4,0.0,73300.0,1,9,7.0,3,2.0 +9858,13854,868.882592433754,47.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21582.7,0.0,19920.0,3,6,5.0,2,1.0 +9859,13855,1205.9285492256752,42.0,111,0.0,63,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25079.35,0.0,17320.0,3,10,8.0,2,1.0 +9860,13856,2082.796437506081,43.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,105.0,0.0,55921.05,0.0,58650.0,1,9,3.0,4,2.0 +9861,13861,1184.5778738290778,36.0,111,0.0,68,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,18554.0,2610.0,7300.0,3,9,7.0,2,1.0 +9862,13862,645.2180197654143,44.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18121.85,900.0,18160.0,2,9,7.0,1,1.0 +9863,13863,1297.7589327155422,72.0,112,0.0,33,1.0,0.0,2.0,1.5,0.0,0.0,0.0,55990.0,0.0,0.0,52934.5,0.0,0.0,1,8,0.0,3,1.0 +9864,13864,4350.358236565358,83.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16980.0,0.0,0.0,17013.45,0.0,0.0,3,9,7.0,1,0.0 +9865,13865,2087.961550528549,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9422.0,0.0,3710.0,3,7,5.0,1,0.0 +9866,13866,2357.681263558878,87.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14920.0,0.0,0.0,15544.0,0.0,0.0,3,1,2.0,1,0.0 +9867,13867,1959.8699850105656,42.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,28080.05,0.0,28030.0,2,8,7.0,4,2.0 +9868,13868,940.9087315382038,56.0,111,0.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27662.45,0.0,26630.0,3,6,5.0,2,2.0 +9869,13869,2972.2384781031574,28.0,112,0.0,38,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,101788.1,0.0,114010.0,1,10,2.0,4,4.0 +9870,13870,2497.0979198855675,46.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10518.75,0.0,11480.0,3,9,7.0,1,1.0 +9871,13871,2779.8376167537685,48.0,120,16800.0,62,1.0,0.0,3.0,2.0,9720.0,0.0,0.0,0.0,0.0,0.0,28337.1,0.0,1710.0,1,0,1.0,4,1.0 +9872,13872,2262.7977711161366,43.0,111,1280.0,53,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,40119.15,0.0,32790.0,2,8,6.0,4,2.0 +9873,13873,2672.210476428381,54.0,111,0.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1440.0,0.0,0.0,3,6,4.0,1,1.0 +9874,13874,2466.581407914597,49.0,112,5950.0,38,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,6076.1,0.0,0.0,1,9,0.0,2,1.0 +9875,13875,1909.362337555109,47.0,300,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,21634.5,0.0,19190.0,2,0,1.0,4,2.0 +9876,13877,792.1885146737636,47.0,111,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,300.0,0.0,0.0,26546.0,0.0,21050.0,1,10,8.0,2,1.0 +9877,13879,2971.2842068533123,25.0,111,14510.0,64,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29129.0,700.0,13400.0,3,7,4.0,3,2.0 +9878,13880,1642.6615470640747,53.0,112,0.0,13,3,3.0,3.0,2.0,4040.0,0.0,0.0,0.0,0.0,0.0,3116.75,0.0,3290.0,1,8,0.0,4,3.0 +9879,13881,1139.0707288535007,52.0,211,0.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53457.1,0.0,61190.0,1,2,3.0,2,2.0 +9880,13882,2344.911927001432,35.0,111,15980.0,46,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37897.75,0.0,18580.0,2,8,7.0,4,2.0 +9881,13883,2204.955473647623,65.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14030.0,0.0,0.0,16810.0,0.0,0.0,1,0,0.0,3,0.0 +9882,13884,1992.8244302078892,48.0,112,0.0,63,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,43488.2,0.0,37200.0,2,4,0.0,4,2.0 +9883,13888,2704.1643390214062,32.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,60173.6,0.0,69810.0,2,10,8.0,3,2.0 +9884,13889,2898.555224083133,54.0,300,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,78848.11196369115,0.0,69600.0,1,0,0.0,3,2.0 +9885,13890,2335.3649795361066,64.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35620.0,0.0,0.0,34064.65,0.0,0.0,1,0,0.0,3,0.0 +9886,13891,5399.163224603289,29.0,111,7750.0,52,1.0,0.0,2.0,1.3,0.0,2510.0,0.0,0.0,0.0,0.0,19395.8,0.0,3590.0,5,8,6.0,2,1.0 +9887,13892,615.2796989329306,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42710.0,0.0,0.0,39345.15,0.0,0.0,1,6,4.0,3,0.0 +9888,13893,1746.9836880490434,59.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,1386.0,0.0,71446.83029915558,0.0,75110.0,1,6,4.0,3,2.0 +9889,13894,3224.410183882017,64.0,300,1080.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,19920.0,23.0,0.0,19965.4,0.0,0.0,1,0,1.0,3,1.0 +9890,13895,5128.056226913647,24.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21045.55,0.0,23250.0,3,10,8.0,5,1.0 +9891,13896,2039.278863873243,62.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12070.0,0.0,0.0,20007.0,0.0,10080.0,1,0,1.0,1,0.0 +9892,13898,1749.3071205840354,58.0,400,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,20.0,0.0,0.0,244.1,0.0,410.0,1,0,0.0,1,1.0 +9893,13899,2375.314186621106,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47320.0,0.0,0.0,44641.96836067128,0.0,890.0,1,10,8.0,3,0.0 +9894,13902,2044.3254784727817,45.0,111,350.0,62,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,30293.2,0.0,22980.0,2,7,5.0,4,2.0 +9895,13904,1509.8939726433334,54.0,300,300.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31627.95,0.0,33650.0,2,0,1.0,3,2.0 +9896,13905,1478.8652150105104,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24620.0,0.0,0.0,23513.7,0.0,0.0,1,5,4.0,3,0.0 +9897,13906,689.520331742736,44.0,221,0.0,45,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37653.7,0.0,26480.0,2,1,2.0,2,1.0 +9898,13907,2403.0910852738693,81.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18900.0,0.0,0.0,18900.0,0.0,0.0,3,7,5.0,3,0.0 +9899,13908,3027.8175406859186,39.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54206.6,0.0,49700.0,2,10,8.0,4,2.0 +9900,13909,1327.163202880999,46.0,300,0.0,63,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,30341.35,0.0,18290.0,2,0,3.0,2,2.0 +9901,13910,2311.712980200055,43.0,111,0.0,31,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27576.0,0.0,0.0,3,7,5.0,4,1.0 +9902,13911,3497.117391409379,35.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31159.35,0.0,35140.0,3,10,8.0,1,1.0 +9903,13912,2781.8371327024684,55.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26875.45063525173,0.0,29860.0,3,10,8.0,1,1.0 +9904,13913,1508.19409239991,49.0,111,5690.0,52,2.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,30003.85,380.0,21750.0,2,7,5.0,4,2.0 +9905,13914,1909.1864950356735,72.0,120,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11230.0,0.0,0.0,10934.336755117802,0.0,510.0,1,0,0.0,1,0.0 +9906,13915,2959.1387730195243,46.0,111,0.0,63,3,3.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,60569.9,0.0,54490.0,3,10,8.0,4,3.0 +9907,13916,4049.7243641784758,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13320.0,0.0,0.0,13364.95,0.0,0.0,1,9,7.0,1,0.0 +9908,13917,2668.8527793997555,31.0,111,4340.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19308.0,590.0,14140.0,3,6,5.0,1,1.0 +9909,13918,1682.1985852330672,30.0,120,0.0,85,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,14065.0,0.0,0.0,3,0,1.0,1,0.0 +9910,13919,2746.847010086156,74.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17150.0,131.0,0.0,26909.05,0.0,0.0,1,6,4.0,1,0.0 +9911,13920,1627.3452430934776,56.0,112,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50744.85,0.0,57350.0,1,6,2.0,3,2.0 +9912,13922,670.6529265149567,36.0,111,0.0,52,1.0,0.0,4.0,1.9,0.0,2880.0,0.0,0.0,0.0,0.0,23334.0,50.0,4930.0,3,9,7.0,2,1.0 +9913,13924,1091.3566375851242,50.0,111,7060.0,55,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21220.0,1220.0,4620.0,3,10,8.0,2,1.0 +9914,13925,1856.5035864635104,57.0,112,0.0,69,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19541.0,2850.0,17060.0,1,8,0.0,3,1.0 +9915,13928,1743.7801528122404,31.0,120,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41817.0,0.0,31280.0,2,0,0.0,4,2.0 +9916,13929,2177.400770696595,33.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,180.0,0.0,49309.1,0.0,41520.0,2,10,0.0,4,2.0 +9917,13930,2328.3206324827142,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21480.0,0.0,0.0,19600.95,0.0,0.0,1,10,8.0,1,0.0 +9918,13933,2535.2073088312213,70.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,48100.0,3395.0,0.0,49098.05,0.0,0.0,1,9,1.0,1,0.0 +9919,13934,3147.2277895226052,31.0,111,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49314.35,0.0,40270.0,3,9,7.0,4,2.0 +9920,13935,2762.014856952115,32.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,29679.35,0.0,33420.0,3,9,7.0,1,1.0 +9921,13936,714.4411373083445,34.0,112,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44605.5,0.0,47120.0,1,10,0.0,4,2.0 +9922,13937,1839.7549041834245,54.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21320.25,0.0,22130.0,2,6,4.0,1,1.0 +9923,13938,1804.5480477044882,65.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20300.0,0.0,0.0,19570.9,0.0,420.0,1,0,1.0,1,0.0 +9924,13940,1314.6658893015217,45.0,112,20500.0,56,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,46456.65,0.0,26190.0,2,10,3.0,4,2.0 +9925,13942,3367.2616826421727,34.0,300,0.0,55,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40491.65,1730.0,23280.0,3,0,0.0,4,2.0 +9926,13943,3375.869145376922,67.0,111,620.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,59290.0,0.0,0.0,80483.8,0.0,29630.0,1,10,8.0,4,1.0 +9927,13944,2860.558549631964,62.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21640.0,0.0,0.0,20958.45,0.0,0.0,3,6,4.0,1,0.0 +9928,13946,2082.7888043562525,85.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21350.0,0.0,0.0,21350.0,0.0,0.0,3,8,6.0,3,0.0 +9929,13948,2139.3039668686424,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11000.0,0.0,0.0,10715.7,0.0,0.0,1,6,4.0,1,0.0 +9930,13949,2583.9945793556594,37.0,300,1450.0,64,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,41928.4,0.0,34020.0,2,0,0.0,4,2.0 +9931,13951,2186.6122337394963,42.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,52500.5,0.0,52190.0,1,5,4.0,4,2.0 +9932,13952,1648.4294003196098,51.0,111,6910.0,54,1.0,1.0,3.0,2.0,0.0,430.0,0.0,0.0,0.0,0.0,17639.05,270.0,5460.0,3,6,4.0,2,1.0 +9933,13953,2637.61356805889,55.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27853.6,0.0,29730.0,3,9,7.0,1,1.0 +9934,13958,2491.924733983158,58.0,111,16560.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40771.54519553355,0.0,27940.0,1,9,7.0,3,1.0 +9935,13959,1464.0814079641445,51.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16939.5,0.0,18320.0,3,7,5.0,1,1.0 +9936,13960,2137.9699043946243,32.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49895.6,0.0,41980.0,2,8,2.0,4,2.0 +9937,13962,1513.5485890232799,60.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49829.63386270977,0.0,54780.0,1,8,7.0,3,2.0 +9938,13963,1674.0442816520451,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20760.0,0.0,0.0,19972.3,0.0,0.0,1,6,4.0,3,0.0 +9939,13966,4522.732597594864,26.0,112,10090.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11165.0,0.0,0.0,3,8,3.0,1,1.0 +9940,13969,1769.5084681974677,66.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21940.0,659.0,0.0,25052.5,0.0,200.0,1,0,0.0,3,0.0 +9941,13971,619.0149392705737,44.0,112,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,15.0,0.0,28151.75,0.0,26060.0,3,9,2.0,2,1.0 +9942,13972,2468.002551779604,46.0,111,0.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,60463.9,0.0,61060.0,1,9,7.0,4,2.0 +9943,13974,2231.80779012707,74.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37050.0,0.0,0.0,34922.85,0.0,0.0,1,0,0.0,3,0.0 +9944,13977,1819.6745470053963,34.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36844.7,0.0,35910.0,3,8,7.0,4,2.0 +9945,13978,2209.2320798402493,44.0,111,3720.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42747.55,0.0,42220.0,3,6,5.0,3,2.0 +9946,13981,2402.5615377830277,53.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,25720.0,0.0,0.0,44349.2,0.0,20140.0,1,7,5.0,3,1.0 +9947,13982,2325.5837630543615,72.0,120,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31710.0,0.0,0.0,28286.55,0.0,0.0,5,0,3.0,1,0.0 +9948,13983,3197.1127978208783,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18620.0,0.0,0.0,18437.55,0.0,0.0,3,9,7.0,1,0.0 +9949,13985,5048.135831197456,24.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20089.05,0.0,20670.0,3,9,7.0,1,1.0 +9950,13986,2357.54031944893,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55540.0,0.0,0.0,49743.83961316014,0.0,0.0,1,10,8.0,3,0.0 +9951,13987,2785.0835209745755,71.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21340.0,0.0,0.0,20123.1,0.0,0.0,3,10,4.0,1,0.0 +9952,13988,2463.194125106807,42.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30289.55,440.0,20410.0,3,10,8.0,1,1.0 +9953,13989,229.1991870536213,51.0,211,0.0,53,2.0,2.0,4.0,2.5,0.0,0.0,0.0,12780.0,0.0,0.0,50406.9,0.0,42360.0,2,4,3.0,4,2.0 +9954,13990,3856.522474291113,52.0,111,0.0,85,1.0,1.0,3.0,2.0,0.0,0.0,0.0,12070.0,0.0,0.0,26712.95,0.0,13440.0,1,10,8.0,2,1.0 +9955,13991,3386.277840085516,75.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25600.0,48.0,0.0,25016.8,0.0,0.0,3,8,7.0,1,0.0 +9956,13993,515.2756369875959,49.0,221,0.0,81,2.0,0.0,4.0,2.3,0.0,9120.0,0.0,0.0,0.0,0.0,18160.0,0.0,0.0,3,1,3.0,2,2.0 +9957,13994,3020.9323078754246,45.0,221,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12736.25,2440.0,9370.0,5,1,1.0,1,1.0 +9958,13995,3837.9248165152535,79.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23390.0,0.0,0.0,22380.4,0.0,0.0,1,9,7.0,3,0.0 +9959,13997,2415.4140202273397,58.0,120,15930.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,11.0,0.0,15043.35,0.0,0.0,1,0,0.0,1,0.0 +9960,13998,2854.9569537356356,62.0,111,26280.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12930.0,0.0,0.0,63891.95,0.0,31840.0,1,9,7.0,3,1.0 +9961,13999,2376.509342278132,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21160.0,0.0,0.0,20668.35,0.0,0.0,3,7,5.0,1,0.0 +9962,14001,1738.7895448512222,73.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33910.0,0.0,0.0,32507.05,0.0,0.0,1,0,1.0,3,0.0 +9963,14002,3427.9763555680893,23.0,111,6600.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33199.85,0.0,24430.0,3,8,6.0,3,2.0 +9964,14003,751.9149386680634,50.0,111,0.0,37,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,74954.4,0.0,83800.0,3,9,7.0,2,1.0 +9965,14005,4363.491778087308,31.0,221,2460.0,53,1.0,0.0,3.0,2.0,11870.0,0.0,3940.0,10670.0,0.0,0.0,48160.0,0.0,16580.0,3,1,1.0,4,1.0 +9966,14006,3696.0316095056105,34.0,111,9380.0,47,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,21267.0,0.0,7440.0,4,10,8.0,4,1.0 +9967,14007,1598.7744810254337,55.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,449.0,0.0,43360.046345060706,0.0,31020.0,1,4,4.0,3,2.0 +9968,14009,2274.7746099779924,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28450.0,62.0,0.0,31640.0,0.0,0.0,1,9,7.0,1,0.0 +9969,14011,1222.355798212643,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41250.0,0.0,0.0,37067.85,0.0,0.0,1,7,5.0,3,0.0 +9970,14012,1558.8915493261177,66.0,112,0.0,64,2.0,0.0,2.0,1.5,0.0,0.0,0.0,24190.0,0.0,0.0,29824.05,0.0,6140.0,3,8,0.0,3,2.0 +9971,14013,698.7093222393687,47.0,111,0.0,45,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39436.4,0.0,24680.0,1,10,8.0,2,1.0 +9972,14014,2634.211692131291,42.0,111,8070.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13801.45,0.0,4190.0,3,9,7.0,1,1.0 +9973,14015,1928.5509934738257,65.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25520.0,0.0,0.0,25021.45,0.0,0.0,1,8,0.0,3,0.0 +9974,14017,1659.2349433030738,56.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,14.0,0.0,51256.1,0.0,55970.0,1,10,8.0,3,2.0 +9975,14018,2126.591801336852,80.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12390.0,0.0,0.0,13288.8,0.0,0.0,1,8,1.0,1,0.0 +9976,14020,3183.0049862151964,53.0,112,2460.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18312.0,0.0,16500.0,3,7,4.0,1,1.0 +9977,14021,1749.0935979254675,59.0,111,0.0,21,1.0,1.0,3.0,2.0,0.0,0.0,0.0,17820.0,0.0,0.0,64288.3,0.0,22600.0,1,10,8.0,4,1.0 +9978,14022,1712.1525878562752,55.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19949.85,0.0,21240.0,1,8,0.0,3,2.0 +9979,14023,1927.9967773082724,39.0,112,0.0,34,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,67011.1,0.0,61000.0,2,9,2.0,4,2.0 +9980,14024,1674.8728682117335,44.0,400,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38373.1,0.0,40560.0,2,0,0.0,3,2.0 +9981,14025,1737.6786806578016,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17220.0,0.0,0.0,16503.45,0.0,0.0,1,6,4.0,3,0.0 +9982,14026,2219.365231608072,44.0,112,0.0,54,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,50249.75,0.0,49380.0,2,10,0.0,4,2.0 +9983,14027,3306.8196276353697,86.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28930.0,0.0,0.0,27354.0,0.0,0.0,5,7,0.0,1,0.0 +9984,14031,2670.270036271699,85.0,400,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13840.0,0.0,0.0,18282.9,0.0,0.0,1,0,0.0,1,0.0 +9985,14032,1040.322038874346,40.0,111,0.0,23,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,66579.45,0.0,81470.0,2,9,7.0,1,1.0 +9986,14033,725.0715955318626,47.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27387.8,0.0,26670.0,2,9,7.0,2,2.0 +9987,14034,3076.8531279088625,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22480.0,0.0,0.0,21626.3,0.0,0.0,1,4,3.0,1,0.0 +9988,14036,4241.379801445682,66.0,111,40890.0,37,1.0,0.0,2.0,1.5,0.0,0.0,0.0,83320.0,0.0,0.0,105387.15,0.0,0.0,1,8,7.0,3,1.0 +9989,14037,1548.2283823672228,57.0,112,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,1150.0,16.0,0.0,25129.054330349794,0.0,28550.0,1,10,4.0,1,1.0 +9990,14039,2135.8682206067897,66.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17190.0,0.0,0.0,17236.7,0.0,0.0,5,1,2.0,1,0.0 +9991,14042,3269.990666012534,24.0,300,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32079.0,0.0,32960.0,3,0,0.0,3,2.0 +9992,14044,2852.128433341499,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,9600.0,3260.0,0.0,0.0,17116.0,0.0,0.0,3,10,8.0,3,0.0 +9993,14047,2620.276314643578,45.0,211,0.0,85,1.0,1.0,4.0,2.5,2970.0,3260.0,0.0,0.0,0.0,0.0,15837.417725419551,1120.0,0.0,3,1,2.0,4,1.0 +9994,14049,3195.044791928449,50.0,112,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37743.95,0.0,35990.0,2,9,3.0,4,2.0 +9995,14050,3143.175162591314,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38160.0,0.0,0.0,35930.95,0.0,0.0,1,7,6.0,3,0.0 +9996,14051,1216.0103052327895,29.0,111,6000.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30577.0,4410.0,14280.0,3,8,7.0,2,2.0 +9997,14052,3138.4204386748033,85.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14340.0,0.0,0.0,14017.4,0.0,0.0,1,1,3.0,1,0.0 +9998,14054,3763.8191706929356,40.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17582.3,0.0,18040.0,3,8,7.0,1,1.0 +9999,14056,1529.361812289187,60.0,112,0.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,64774.65,0.0,66800.0,1,6,0.0,4,2.0 +10000,14057,2846.076579293981,48.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17418.1,0.0,18050.0,3,8,6.0,1,1.0 +10001,14058,1774.3227570708113,53.0,300,0.0,67,3,4.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,52302.65,0.0,51370.0,1,0,0.0,5,4.0 +10002,14059,3204.474986225781,28.0,111,0.0,48,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40675.45,0.0,49110.0,3,8,6.0,3,1.0 +10003,14060,2507.574971652161,54.0,211,0.0,65,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53131.45,0.0,54650.0,1,4,4.0,4,3.0 +10004,14061,3529.9128362975584,29.0,111,5440.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13544.0,0.0,7550.0,3,7,5.0,1,1.0 +10005,14062,2475.540084845863,30.0,300,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34016.0,0.0,33580.0,2,0,0.0,3,2.0 +10006,14064,2319.5868133309214,49.0,300,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26953.9,0.0,27830.0,2,0,0.0,2,1.0 +10007,14065,4221.519331362319,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11440.0,0.0,0.0,14020.0,0.0,0.0,3,10,8.0,1,0.0 +10008,14066,2226.1647374097493,45.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,74766.75,0.0,72980.0,2,10,4.0,4,2.0 +10009,14067,6486.636739404945,43.0,111,0.0,23,1.0,1.0,1.0,1.0,0.0,780.0,0.0,0.0,829.0,0.0,50051.75,100.0,45800.0,3,10,8.0,1,1.0 +10010,14069,3842.3976367946,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35540.0,0.0,0.0,34390.5,0.0,0.0,3,10,8.0,3,0.0 +10011,14070,3229.7666048195724,54.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52531.25,0.0,56100.0,2,9,7.0,3,2.0 +10012,14071,789.9692535180349,36.0,112,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39891.1,0.0,27540.0,2,8,0.0,4,2.0 +10013,14073,2240.386170030627,83.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44390.0,86.0,0.0,44241.85,0.0,0.0,1,8,7.0,3,0.0 +10014,14076,1664.5155365797143,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22660.0,0.0,0.0,21071.1,0.0,0.0,5,8,6.0,1,0.0 +10015,14077,1303.8070156663555,68.0,120,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41560.0,773.0,0.0,39796.05,0.0,0.0,1,0,1.0,3,0.0 +10016,14078,1398.7336643305825,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42290.0,0.0,0.0,38541.05,0.0,0.0,1,8,7.0,3,0.0 +10017,14079,1130.075177662349,49.0,221,0.0,22,1.0,0.0,2.0,1.5,0.0,6460.0,0.0,0.0,0.0,0.0,12786.0,0.0,0.0,3,1,3.0,2,1.0 +10018,14080,1922.101417996543,87.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27330.0,0.0,0.0,26162.7,0.0,0.0,1,10,2.0,3,0.0 +10019,14082,1707.2131929433535,50.0,300,5440.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,13121.7,0.0,4240.0,2,0,1.0,3,1.0 +10020,14083,1315.885437086735,55.0,112,1810.0,52,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,31896.55,3440.0,23150.0,3,8,2.0,2,3.0 +10021,14084,3094.7670635958966,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15960.0,3.0,0.0,20458.0,0.0,0.0,1,5,4.0,1,0.0 +10022,14086,2672.201179891837,53.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,53.0,0.0,18977.35,1010.0,19240.0,2,8,6.0,1,1.0 +10023,14089,1671.8704174496638,57.0,112,1200.0,34,3,3.0,3.0,2.0,0.0,0.0,0.0,14320.0,0.0,0.0,131900.85,0.0,101990.0,1,8,2.0,4,3.0 +10024,14090,4369.436499268793,93.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29560.0,0.0,0.0,29406.0,0.0,0.0,5,10,8.0,1,0.0 +10025,14091,2435.8574587715066,33.0,112,6420.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46102.2,0.0,42390.0,2,10,4.0,4,2.0 +10026,14092,1993.649683903639,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42900.0,0.0,0.0,40032.7,0.0,0.0,1,8,7.0,3,0.0 +10027,14093,1985.956745537229,78.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44540.0,2.0,0.0,41968.95,0.0,0.0,1,9,0.0,3,0.0 +10028,14096,3615.864526138281,60.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19487.0,0.0,17970.0,3,9,7.0,1,1.0 +10029,14098,628.4985063505613,29.0,111,1830.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50420.35,0.0,0.0,2,9,7.0,4,2.0 +10030,14099,1529.6970713189496,54.0,400,5880.0,64,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,29.0,0.0,52722.75,370.0,49640.0,1,0,0.0,4,3.0 +10031,14101,2334.8080321918596,56.0,111,4290.0,64,1.0,1.0,3.0,2.0,0.0,0.0,0.0,10120.0,0.0,0.0,26911.25,0.0,14650.0,1,9,7.0,4,1.0 +10032,14102,1701.6465047828333,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56330.0,0.0,0.0,48188.25,0.0,0.0,5,9,0.0,3,0.0 +10033,14103,2698.8502971797957,50.0,111,0.0,33,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60766.15,0.0,68230.0,3,10,8.0,4,2.0 +10034,14107,1574.8964470853487,71.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25960.0,0.0,0.0,25301.95,0.0,0.0,1,0,3.0,3,0.0 +10035,14109,3287.2676818622085,60.0,112,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24670.0,0.0,0.0,38903.3,0.0,17710.0,1,6,0.0,3,1.0 +10036,14112,3904.293257761828,65.0,111,0.0,72,0.0,0.0,1.0,1.0,1220.0,0.0,1100.0,8470.0,0.0,0.0,10530.0,0.0,0.0,1,10,8.0,1,0.0 +10037,14113,1530.4585155034756,69.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52350.0,0.0,73.0,47099.8,0.0,0.0,1,10,2.0,3,0.0 +10038,14114,3485.7897860154235,50.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,704.0,0.0,133142.7,0.0,158200.0,1,10,8.0,4,2.0 +10039,14117,2510.9155430257865,82.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17920.0,0.0,0.0,17426.5,0.0,0.0,1,0,1.0,1,0.0 +10040,14122,1760.6577194576557,45.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49380.85,0.0,50860.0,2,7,6.0,4,2.0 +10041,14124,1384.2637463825376,70.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56180.0,0.0,0.0,51510.58608609083,0.0,0.0,1,1,2.0,3,0.0 +10042,14125,1732.2373802079846,47.0,111,0.0,54,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27223.0,3890.0,24210.0,3,8,7.0,2,3.0 +10043,14126,2335.0736248226685,37.0,112,0.0,48,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,50646.8,0.0,27760.0,2,10,0.0,4,2.0 +10044,14127,1971.8234054205097,42.0,112,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32497.25,0.0,30900.0,2,8,0.0,4,2.0 +10045,14128,2939.3498499326115,52.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,15.0,0.0,53754.3,0.0,54700.0,2,8,1.0,3,2.0 +10046,14129,1125.927119701148,45.0,111,0.0,37,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,2.0,0.0,36825.75,0.0,38600.0,1,9,7.0,2,1.0 +10047,14132,2467.751937823347,42.0,111,0.0,68,1.0,0.0,6.0,2.9,0.0,9200.0,0.0,0.0,0.0,0.0,26738.0,0.0,3020.0,3,6,5.0,4,1.0 +10048,14133,3733.1855437457843,56.0,112,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,5016.0,0.0,17370.85,2330.0,5800.0,1,8,0.0,1,1.0 +10049,14134,1828.1171934915212,76.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25400.0,146.0,0.0,25594.35,0.0,0.0,1,4,4.0,3,0.0 +10050,14135,2642.330382505037,56.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17988.05,0.0,18950.0,3,8,6.0,1,1.0 +10051,14136,2521.3020873567134,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22520.0,0.0,0.0,22222.0,0.0,0.0,3,7,4.0,1,0.0 +10052,14137,1664.018140920778,78.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58060.0,0.0,0.0,53481.35,0.0,0.0,1,0,1.0,3,0.0 +10053,14138,3322.776730519688,43.0,111,0.0,85,0.0,0.0,1.0,1.0,10960.0,0.0,0.0,0.0,0.0,0.0,13360.0,0.0,0.0,3,8,7.0,1,0.0 +10054,14139,1503.4314213067219,65.0,112,0.0,64,1.0,0.0,2.0,1.5,0.0,0.0,0.0,29980.0,0.0,0.0,31295.95,0.0,3140.0,1,10,0.0,3,1.0 +10055,14141,3105.553058464957,33.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28109.05,0.0,28540.0,3,10,8.0,1,1.0 +10056,14142,3542.613108909741,82.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20440.0,0.0,0.0,20476.0,0.0,0.0,3,9,7.0,3,0.0 +10057,14143,497.3259032142721,28.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41566.25,0.0,44410.0,2,9,0.0,3,2.0 +10058,14144,2523.492542253864,34.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16830.6,140.0,17000.0,2,4,4.0,1,1.0 +10059,14145,1150.2024288615012,54.0,111,0.0,42,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,55065.05,0.0,57020.0,2,7,6.0,4,2.0 +10060,14146,1588.0070404208818,52.0,112,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,7272.0,0.0,62139.1,0.0,65340.0,1,10,4.0,4,2.0 +10061,14147,2431.7808954600855,54.0,112,2640.0,48,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,78917.35,0.0,78520.0,1,10,2.0,4,4.0 +10062,14148,1991.5920408870345,35.0,300,0.0,56,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31758.9,0.0,27510.0,2,0,0.0,4,2.0 +10063,14149,2240.4249775902003,55.0,111,6980.0,68,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,50833.0,0.0,47600.0,2,9,7.0,4,3.0 +10064,14150,2492.417441188043,53.0,400,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21455.9,0.0,22760.0,2,0,0.0,1,1.0 +10065,14151,644.3034145716114,51.0,112,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22166.95,1100.0,15120.0,3,9,0.0,2,1.0 +10066,14153,3549.1051633404477,89.0,112,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13740.0,0.0,0.0,14613.0,0.0,0.0,3,6,0.0,1,0.0 +10067,14155,1211.9224635637258,73.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33590.0,0.0,0.0,32171.95,0.0,0.0,1,6,0.0,3,0.0 +10068,14156,1910.470677580077,43.0,112,2540.0,62,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,34043.85,0.0,20980.0,2,8,0.0,4,1.0 +10069,14157,1846.4678532669775,24.0,111,0.0,47,3,4.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,49302.0,620.0,45010.0,3,9,7.0,4,4.0 +10070,14158,2817.5617159291332,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,2370.0,7140.0,0.0,0.0,12774.0,0.0,0.0,3,9,7.0,1,0.0 +10071,14160,3560.0365798450157,77.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28300.0,0.0,0.0,28311.0,0.0,0.0,1,6,5.0,3,0.0 +10072,14162,3243.6788426335934,67.0,300,0.0,78,0.0,0.0,2.0,1.5,7180.0,0.0,0.0,11430.0,0.0,0.0,18875.0,0.0,0.0,3,0,0.0,3,0.0 +10073,14164,2225.6076868297587,55.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,69365.5,0.0,67730.0,1,9,7.0,4,2.0 +10074,14165,2127.6443764584133,56.0,400,13080.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10500.06,0.0,0.0,2,0,0.0,1,1.0 +10075,14166,843.2090329271548,40.0,111,0.0,56,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,23904.0,480.0,14190.0,3,9,7.0,2,1.0 +10076,14168,2113.7042710620262,49.0,120,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,69.0,0.0,54883.2,0.0,57330.0,2,0,0.0,3,2.0 +10077,14169,2672.605915960271,79.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25540.0,0.0,0.0,24016.05,0.0,0.0,1,10,4.0,1,0.0 +10078,14170,1532.7036939626446,37.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,74410.25,0.0,81550.0,2,8,7.0,4,2.0 +10079,14173,756.6149942903805,55.0,111,0.0,56,1.0,1.0,2.0,1.5,0.0,0.0,0.0,6970.0,0.0,0.0,15801.0,0.0,4550.0,3,7,5.0,2,1.0 +10080,14174,2388.7200174667946,62.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36460.0,0.0,0.0,34452.1,0.0,0.0,1,10,8.0,3,0.0 +10081,14176,2664.701278371235,78.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56920.0,0.0,0.0,57323.95,0.0,0.0,1,9,2.0,5,0.0 +10082,14178,3729.778562961974,31.0,111,5290.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17126.0,230.0,9490.0,3,10,8.0,1,1.0 +10083,14182,2248.2103202558847,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,150.0,9280.0,0.0,0.0,12741.0,0.0,0.0,3,8,7.0,1,0.0 +10084,14186,2083.505971697931,60.0,112,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,10450.0,0.0,0.0,34730.3,0.0,26180.0,1,9,0.0,3,2.0 +10085,14188,5948.244140572187,31.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,50794.55,0.0,62810.0,3,10,8.0,1,1.0 +10086,14189,4194.1945098169945,34.0,111,0.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24340.8,0.0,24620.0,3,10,8.0,3,2.0 +10087,14190,1807.7797130120955,48.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,77851.7,0.0,85720.0,1,8,7.0,4,2.0 +10088,14191,2723.7365092738337,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30770.0,0.0,0.0,30670.85,0.0,0.0,3,10,8.0,3,0.0 +10089,14192,2972.3045310339876,42.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,84751.25,0.0,122230.0,3,9,7.0,1,1.0 +10090,14193,2946.044596634848,89.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22320.0,0.0,0.0,20491.0,0.0,0.0,1,0,0.0,1,0.0 +10091,14195,1516.675849033005,72.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42860.0,0.0,0.0,41390.0,0.0,0.0,1,9,0.0,3,0.0 +10092,14196,3121.0141362040786,50.0,221,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,155546.15,0.0,152110.0,1,1,2.0,2,1.0 +10093,14197,1165.106506796124,30.0,112,0.0,56,1.0,1.0,2.0,1.3,0.0,7090.0,0.0,0.0,0.0,0.0,13788.65,880.0,320.0,3,9,1.0,2,1.0 +10094,14198,2321.2905258851115,53.0,111,5950.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,31048.95,70.0,18780.0,3,8,7.0,4,1.0 +10095,14199,4881.391993686936,52.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31059.3,0.0,35680.0,3,10,8.0,1,1.0 +10096,14201,658.2109355729317,18.0,111,4690.0,67,1.0,1.0,6.0,3.1,0.0,2250.0,0.0,0.0,0.0,0.0,39765.0,1000.0,10500.0,3,5,4.0,4,1.0 +10097,14202,510.5325720843878,39.0,112,0.0,55,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31822.0,0.0,13800.0,2,6,0.0,2,1.0 +10098,14204,2208.4707461425605,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,5730.0,9600.0,610.0,0.0,0.0,19204.0,0.0,0.0,3,9,7.0,1,0.0 +10099,14205,2568.182540940156,86.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17740.0,0.0,0.0,17426.05,0.0,0.0,1,0,0.0,1,0.0 +10100,14206,3860.9955639683403,45.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,9006.0,0.0,0.0,3,8,7.0,1,1.0 +10101,14207,2890.527232477737,80.0,111,5950.0,77,1.0,0.0,4.0,2.5,8560.0,0.0,0.0,22610.0,0.0,0.0,37120.0,0.0,0.0,3,8,6.0,4,1.0 +10102,14209,4066.0762519884597,51.0,112,300.0,22,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54580.05,2070.0,19320.0,1,8,0.0,5,3.0 +10103,14210,597.7646812579105,51.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22549.45,1860.0,18960.0,3,8,7.0,2,1.0 +10104,14211,2103.488950575897,56.0,111,0.0,55,2.0,1.0,2.0,1.5,1620.0,0.0,0.0,0.0,0.0,0.0,12057.6,0.0,10630.0,5,9,7.0,3,2.0 +10105,14213,2063.7729679295944,72.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,3410.0,4070.0,0.0,0.0,13264.3,0.0,0.0,1,10,8.0,3,1.0 +10106,14215,1465.794013338227,73.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33210.0,0.0,0.0,36211.8,0.0,0.0,1,8,7.0,3,0.0 +10107,14216,4415.893713079842,85.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10450.0,0.0,0.0,11523.0,0.0,0.0,3,0,1.0,1,0.0 +10108,14217,3458.8609298920187,54.0,112,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17273.3,1630.0,15250.0,3,10,4.0,1,1.0 +10109,14218,1608.691057897458,27.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20736.45,0.0,22580.0,3,0,1.0,1,1.0 +10110,14219,2710.3153404972436,62.0,111,4960.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2060.0,0.0,0.0,9624.0,0.0,0.0,3,5,4.0,1,0.0 +10111,14220,2135.9995022880557,88.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42780.0,0.0,0.0,38991.6,0.0,0.0,1,10,2.0,3,0.0 +10112,14222,2252.6818363407606,37.0,111,260.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45326.25,0.0,51340.0,2,7,5.0,3,2.0 +10113,14223,3120.2840605298466,34.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50045.1,0.0,52730.0,2,5,0.0,4,2.0 +10114,14224,3681.5108733417583,23.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19326.05,1980.0,15660.0,3,7,5.0,1,1.0 +10115,14225,525.7099012127733,40.0,111,0.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25917.15,0.0,24920.0,2,8,7.0,2,1.0 +10116,14227,3022.5582761577834,28.0,111,2230.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45614.1,0.0,47450.0,2,7,5.0,3,2.0 +10117,14228,2270.0849995064714,56.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,305334.53811510385,0.0,453050.0,1,10,8.0,3,2.0 +10118,14229,2984.256783112631,42.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24200.8,0.0,28040.0,2,8,7.0,1,1.0 +10119,14230,3177.689861031322,32.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,5150.0,0.0,0.0,47955.2,0.0,43300.0,3,5,4.0,3,2.0 +10120,14231,6505.333405407951,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25420.0,0.0,0.0,22662.289262349484,0.0,0.0,3,10,8.0,1,0.0 +10121,14232,2975.1801066400794,71.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7460.0,4715.0,0.0,11400.2,0.0,0.0,1,0,0.0,1,0.0 +10122,14233,472.3459846983957,32.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,3500.0,0.0,0.0,0.0,0.0,15203.0,0.0,0.0,2,7,5.0,2,0.0 +10123,14234,2046.885949102992,61.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20027.3,0.0,20820.0,2,0,0.0,1,1.0 +10124,14235,976.8200042388605,36.0,111,2590.0,55,1.0,1.0,2.0,1.3,0.0,20.0,0.0,0.0,0.0,0.0,24972.4,3030.0,13480.0,3,7,5.0,2,1.0 +10125,14237,1549.545670986333,68.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53440.0,0.0,0.0,50648.7,0.0,0.0,1,5,4.0,3,0.0 +10126,14238,3101.109066721213,22.0,111,520.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17394.5,0.0,15530.0,3,9,7.0,1,1.0 +10127,14242,1757.4083585219946,41.0,111,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,17540.0,0.0,0.0,67458.2,0.0,54860.0,2,7,5.0,4,2.0 +10128,14243,1944.1585349853315,52.0,400,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27751.2,0.0,28960.0,2,0,0.0,1,1.0 +10129,14244,5703.476051548948,24.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38894.0,0.0,25630.0,3,9,7.0,3,1.0 +10130,14247,2099.1168543991166,36.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51330.5,0.0,37650.0,2,8,7.0,4,2.0 +10131,14248,1819.619152899902,69.0,221,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33320.0,0.0,0.0,32014.8,0.0,0.0,1,1,3.0,3,0.0 +10132,14250,3473.143100300706,40.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18861.0,0.0,18850.0,3,9,7.0,1,1.0 +10133,14251,2650.3641762413417,68.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,30090.0,0.0,0.0,36704.35,0.0,0.0,1,8,6.0,4,1.0 +10134,14255,1534.925616143607,67.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41710.0,0.0,0.0,38672.8,0.0,0.0,1,4,4.0,3,0.0 +10135,14256,469.76021580775665,39.0,112,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18438.9,1660.0,15210.0,2,8,2.0,2,1.0 +10136,14257,1378.044724455896,54.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,6780.0,0.0,0.0,36979.15,0.0,21010.0,2,7,5.0,2,1.0 +10137,14258,3180.8260899389593,34.0,400,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,1340.0,0.0,3,0,0.0,1,1.0 +10138,14259,4217.943988354962,28.0,111,10730.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,13882.3,0.0,2750.0,3,9,7.0,2,1.0 +10139,14261,3278.9882436538305,56.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22435.8,0.0,0.0,1,4,3.0,1,1.0 +10140,14263,3480.0870508742537,35.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26080.45,0.0,0.0,3,9,7.0,3,2.0 +10141,14264,1813.462821519107,72.0,221,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,32050.0,0.0,0.0,46356.2,0.0,20450.0,2,1,2.0,3,1.0 +10142,14265,3099.8021941390807,53.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26034.1,0.0,20670.0,2,9,7.0,2,1.0 +10143,14266,2706.9996353106762,52.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30038.35,0.0,29670.0,2,9,0.0,3,2.0 +10144,14267,2263.2907331573692,51.0,111,0.0,33,1.0,1.0,3.0,1.8,0.0,0.0,0.0,30640.0,846.0,0.0,64528.20063525173,0.0,41780.0,1,9,7.0,4,1.0 +10145,14268,3609.0858137184728,51.0,111,0.0,85,0.0,0.0,1.0,1.0,11870.0,0.0,0.0,0.0,0.0,0.0,14942.0,0.0,0.0,3,4,4.0,1,0.0 +10146,14269,2924.7890909581024,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13060.0,0.0,0.0,14683.0,0.0,0.0,3,6,5.0,1,0.0 +10147,14270,1779.0202014026113,43.0,120,1200.0,69,3,1.0,6.0,3.5,0.0,7790.0,0.0,0.0,0.0,0.0,37144.1,2610.0,12290.0,3,0,1.0,4,5.0 +10148,14271,4308.702611802013,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11930.0,20.0,0.0,16406.35,0.0,0.0,1,10,8.0,1,0.0 +10149,14272,3085.957813357209,37.0,111,0.0,62,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28429.05,1900.0,23740.0,3,9,7.0,4,2.0 +10150,14274,597.8133379388727,52.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,25175.6,0.0,22790.0,3,6,5.0,2,1.0 +10151,14275,3054.7998408243434,35.0,111,6050.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46364.55,0.0,37530.0,3,7,6.0,4,2.0 +10152,14276,6458.292869316716,33.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17103.0,0.0,18180.0,3,10,8.0,1,1.0 +10153,14278,1313.5492836428482,70.0,400,0.0,31,1.0,0.0,2.0,1.5,0.0,0.0,0.0,42760.0,0.0,0.0,41680.65,0.0,0.0,1,0,1.0,3,1.0 +10154,14279,2661.881875877781,42.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28121.45,0.0,30230.0,3,8,7.0,1,1.0 +10155,14280,2148.781142962786,43.0,112,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,125710.83418033565,0.0,35100.0,2,7,0.0,4,2.0 +10156,14281,3731.613998077194,45.0,111,5400.0,63,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23407.75,0.0,11940.0,3,10,8.0,4,1.0 +10157,14283,1944.134482723508,35.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35419.85,0.0,32200.0,2,7,5.0,4,2.0 +10158,14284,2386.143589702262,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15170.0,0.0,0.0,14857.4,0.0,0.0,1,6,4.0,1,0.0 +10159,14285,1184.0341932847698,40.0,112,0.0,54,1.0,1.0,3.0,1.8,0.0,7170.0,0.0,0.0,0.0,0.0,39872.45,0.0,18530.0,3,8,0.0,2,1.0 +10160,14286,2374.295183132822,74.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32970.0,242.0,0.0,33244.45,0.0,0.0,1,9,7.0,1,0.0 +10161,14287,1849.648617991438,64.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32550.0,0.0,0.0,30958.1,0.0,0.0,1,8,7.0,3,0.0 +10162,14288,3645.332132007905,84.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11260.0,0.0,0.0,12651.0,0.0,0.0,3,9,7.0,1,0.0 +10163,14289,1762.6953326562823,59.0,120,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52871.55,0.0,56650.0,1,0,3.0,3,2.0 +10164,14290,3165.2179297143293,70.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24410.0,0.0,0.0,23289.75,0.0,0.0,1,6,2.0,1,0.0 +10165,14291,2183.403629003215,80.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7360.0,0.0,0.0,9830.0,0.0,0.0,5,7,0.0,1,0.0 +10166,14295,1448.359979793216,76.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17050.0,0.0,0.0,16768.0,0.0,0.0,1,9,3.0,1,0.0 +10167,14299,2547.063079984532,40.0,300,660.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36194.65,0.0,35800.0,3,0,0.0,4,2.0 +10168,14302,1342.2197675460852,56.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,68305.75,0.0,76030.0,2,9,7.0,3,1.0 +10169,14304,2149.6083158134293,64.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,34120.0,0.0,0.0,50096.1,0.0,35530.0,2,10,8.0,3,1.0 +10170,14305,1844.6913122816425,62.0,111,0.0,34,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49083.95,0.0,56670.0,2,10,8.0,4,2.0 +10171,14307,533.8547659296314,36.0,120,510.0,56,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,21737.6,70.0,11760.0,3,0,1.0,2,1.0 +10172,14308,2186.543899717598,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20060.0,0.0,0.0,20184.7,0.0,1530.0,1,6,5.0,3,0.0 +10173,14309,2820.8685397010227,88.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15610.0,0.0,0.0,15610.0,0.0,0.0,3,7,6.0,1,0.0 +10174,14310,3054.799485256654,53.0,112,0.0,55,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35967.3,0.0,37020.0,3,9,1.0,4,2.0 +10175,14311,1512.5628536272516,39.0,111,28080.0,63,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,31.0,0.0,40692.7,0.0,4650.0,3,7,5.0,4,2.0 +10176,14312,1733.2763074081238,45.0,112,16390.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,53279.7,0.0,38900.0,1,6,0.0,4,2.0 +10177,14313,1809.6276730153716,53.0,111,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48527.85,0.0,52690.0,2,9,7.0,3,2.0 +10178,14314,1592.9793900620816,66.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25580.0,0.0,0.0,25957.4,0.0,0.0,1,0,1.0,1,0.0 +10179,14315,2945.5473506441303,81.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12790.0,0.0,0.0,13428.077877880356,0.0,0.0,5,0,0.0,1,0.0 +10180,14317,1744.6394377355389,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29600.0,0.0,0.0,29488.7,0.0,0.0,1,5,4.0,3,0.0 +10181,14321,3391.8334352517763,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17630.0,0.0,0.0,17431.2,0.0,0.0,3,10,8.0,1,0.0 +10182,14322,3051.7210874327434,47.0,111,0.0,64,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,46938.35,0.0,39590.0,2,6,4.0,4,2.0 +10183,14323,1055.2969555364512,30.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44463.35,0.0,46050.0,2,9,7.0,4,2.0 +10184,14324,754.6291282019648,45.0,112,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43113.95,0.0,41200.0,3,9,3.0,4,2.0 +10185,14325,2949.173861640881,29.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24087.0,0.0,0.0,3,6,4.0,1,1.0 +10186,14328,965.5732296930511,51.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43401.7,0.0,44620.0,3,9,7.0,4,2.0 +10187,14329,2102.971435263824,30.0,111,8780.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40769.6,210.0,22010.0,3,9,7.0,4,2.0 +10188,14330,2390.403025908351,45.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,17850.0,0.0,0.0,32027.05,0.0,15610.0,1,7,5.0,4,1.0 +10189,14331,2381.9840145632456,52.0,111,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,124061.02312537188,0.0,147850.0,2,10,8.0,4,2.0 +10190,14332,1387.460405926735,49.0,111,0.0,34,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,85846.4,0.0,86000.0,3,10,8.0,4,2.0 +10191,14333,2605.0034452389136,47.0,111,15440.0,85,1.0,0.0,8.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,48206.0,0.0,11550.0,3,9,7.0,4,1.0 +10192,14334,1463.7651001169115,83.0,111,0.0,86,0.0,0.0,2.0,1.5,1500.0,0.0,6580.0,3040.0,0.0,0.0,10745.0,0.0,0.0,1,8,6.0,2,0.0 +10193,14335,2630.846764928927,43.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,45459.6,0.0,46230.0,2,9,7.0,4,2.0 +10194,14336,905.2257043672322,52.0,400,5550.0,69,1.0,0.0,2.0,1.3,0.0,1910.0,0.0,0.0,0.0,0.0,15308.552223381057,840.0,3140.0,3,0,0.0,2,1.0 +10195,14338,923.6542147868479,24.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7424.0,0.0,4250.0,3,0,1.0,1,1.0 +10196,14339,1451.6464270747244,67.0,112,14940.0,22,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17187.95,0.0,19790.0,2,10,0.0,3,2.0 +10197,14340,1868.0632399236065,64.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17800.0,0.0,0.0,27408.3,0.0,10150.0,1,4,0.0,3,1.0 +10198,14343,3682.7127249606965,46.0,112,920.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8970.0,0.0,0.0,24990.9,0.0,15900.0,2,8,1.0,2,1.0 +10199,14345,1817.7402288400917,83.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17470.0,0.0,0.0,16379.5,0.0,0.0,1,6,5.0,1,0.0 +10200,14346,4572.638910638561,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15010.0,0.0,0.0,15039.0,0.0,0.0,3,9,7.0,1,0.0 +10201,14347,2124.1211896423447,39.0,111,0.0,23,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,172864.6272541955,0.0,205090.0,2,9,7.0,4,2.0 +10202,14348,2462.4772235659616,46.0,111,0.0,23,1.0,2.0,6.0,3.3,0.0,0.0,0.0,0.0,565.0,0.0,137117.4209016782,0.0,158190.0,3,8,7.0,4,1.0 +10203,14349,752.840157445419,39.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,35728.0,480.0,27030.0,3,8,7.0,2,1.0 +10204,14350,5944.467706886284,46.0,111,0.0,21,2.0,1.0,5.0,2.8,0.0,680.0,0.0,0.0,0.0,0.0,14534.0,2950.0,0.0,4,9,7.0,4,2.0 +10205,14351,1969.290471200539,48.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45379.95,990.0,49760.0,1,10,8.0,2,2.0 +10206,14352,2257.356193920611,79.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59110.0,0.0,0.0,51149.3,0.0,0.0,1,9,7.0,3,0.0 +10207,14355,3154.29529030598,33.0,112,0.0,48,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52832.2,0.0,45410.0,2,7,0.0,4,1.0 +10208,14356,1886.2817146654006,57.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18100.0,0.0,0.0,30798.75,0.0,20510.0,1,9,7.0,3,1.0 +10209,14357,1485.712947728275,26.0,111,3520.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18769.0,790.0,8660.0,3,8,6.0,2,1.0 +10210,14358,1765.499698030061,58.0,400,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18930.0,0.0,0.0,39165.95,0.0,22220.0,2,0,0.0,3,1.0 +10211,14359,1084.7568741543437,34.0,221,0.0,22,1.0,1.0,2.0,1.3,0.0,6230.0,0.0,0.0,0.0,0.0,17006.0,0.0,0.0,3,1,2.0,2,1.0 +10212,14363,2093.025454288489,49.0,400,0.0,46,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,44182.35,0.0,26980.0,1,0,0.0,4,3.0 +10213,14364,2073.4592102170586,37.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31761.4,0.0,33450.0,5,6,5.0,3,2.0 +10214,14365,717.9002413256995,35.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51960.85,0.0,48570.0,3,8,6.0,4,2.0 +10215,14366,1665.4066240548873,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,11520.0,818.0,0.0,13219.85,0.0,0.0,1,9,7.0,3,0.0 +10216,14367,1982.9638175234982,34.0,112,0.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54458.2,0.0,50020.0,2,8,1.0,4,2.0 +10217,14369,741.2214049392009,48.0,111,1120.0,67,1.0,1.0,3.0,1.8,0.0,920.0,0.0,0.0,0.0,0.0,19992.4,1060.0,12460.0,1,9,7.0,2,1.0 +10218,14370,1896.1787525279997,33.0,120,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26728.25,0.0,30060.0,2,0,2.0,1,1.0 +10219,14371,2500.9036425263143,36.0,300,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51574.05,0.0,43870.0,2,0,0.0,4,2.0 +10220,14373,1820.3729246878934,86.0,111,4610.0,86,1.0,0.0,2.0,1.5,0.0,0.0,4560.0,5030.0,0.0,0.0,20480.0,600.0,2080.0,3,9,7.0,2,1.0 +10221,14375,1967.9611593006036,68.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21010.0,4394.0,0.0,28810.0,0.0,0.0,1,7,4.0,3,0.0 +10222,14376,1687.3516301228356,51.0,112,0.0,47,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38658.15,0.0,38570.0,2,6,1.0,4,2.0 +10223,14377,2383.664809184521,64.0,111,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,32990.0,0.0,0.0,54577.13386270977,0.0,24290.0,1,8,6.0,4,1.0 +10224,14378,1380.7457145542003,22.0,111,780.0,55,2.0,0.0,4.0,2.1,0.0,9370.0,0.0,0.0,0.0,0.0,22017.15,530.0,1640.0,3,10,8.0,4,2.0 +10225,14380,1733.5728673736405,52.0,111,0.0,64,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48943.1,0.0,47000.0,3,8,6.0,4,2.0 +10226,14381,1923.6222038881936,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27140.0,0.0,0.0,25888.75,0.0,0.0,1,9,7.0,3,0.0 +10227,14382,1830.2716421448047,52.0,111,5950.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,5223.3,0.0,0.0,1,6,4.0,1,1.0 +10228,14383,4064.4720528022285,73.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14790.0,0.0,0.0,15619.0,0.0,0.0,3,1,1.0,1,0.0 +10229,14384,2464.9265134031016,78.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28040.0,0.0,0.0,26631.55,0.0,0.0,1,8,7.0,3,0.0 +10230,14385,2064.750379126362,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30340.0,0.0,0.0,29030.9,0.0,0.0,1,9,7.0,3,0.0 +10231,14389,1772.0222741292705,75.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28300.0,0.0,0.0,25150.2354508391,0.0,0.0,1,9,7.0,1,0.0 +10232,14392,2136.206491945319,57.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,215.0,0.0,22791.35340381151,0.0,26960.0,3,10,8.0,1,1.0 +10233,14394,1993.6354210845263,37.0,112,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36643.8,0.0,34360.0,2,7,1.0,4,2.0 +10234,14396,3259.543096197361,17.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24326.0,750.0,0.0,3,9,7.0,3,1.0 +10235,14397,2017.9719069910166,40.0,120,0.0,13,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,14385.0,0.0,710.0,1,0,0.0,4,2.0 +10236,14398,2757.785617623092,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22680.0,0.0,0.0,21688.45,0.0,0.0,1,9,7.0,1,0.0 +10237,14399,1617.280943803361,53.0,212,0.0,53,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,303.0,0.0,71727.9385097925,0.0,75040.0,2,2,0.0,4,3.0 +10238,14400,4171.70971657427,30.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49384.4,0.0,49510.0,3,10,8.0,4,2.0 +10239,14402,2563.2922770478563,35.0,111,1660.0,52,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,25309.9,0.0,20630.0,3,6,5.0,4,2.0 +10240,14404,3533.370559014689,35.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,730.0,0.0,0.0,0.0,0.0,13020.0,3100.0,5950.0,3,8,6.0,1,1.0 +10241,14405,601.1736832393532,45.0,112,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,56610.45,0.0,54000.0,1,10,2.0,4,2.0 +10242,14407,2975.0652377170186,64.0,111,6700.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,57470.0,0.0,0.0,110240.8,0.0,66930.0,2,10,8.0,3,1.0 +10243,14408,3139.411718100267,49.0,111,11820.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12872.3,0.0,1230.0,3,10,8.0,1,1.0 +10244,14410,1309.077643718604,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36760.0,0.0,0.0,34087.0,0.0,0.0,1,7,5.0,3,0.0 +10245,14411,3018.6445881050827,42.0,111,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34962.7,0.0,33450.0,2,7,6.0,4,2.0 +10246,14413,1801.6434163089898,58.0,400,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,7847.0,1990.0,5660.0,1,0,0.0,3,2.0 +10247,14415,1750.313184731253,48.0,111,4430.0,55,1.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,7994.25,0.0,0.0,1,10,8.0,2,1.0 +10248,14416,3902.065904573417,24.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53740.8,0.0,21210.0,3,8,7.0,3,2.0 +10249,14418,3842.843259310571,30.0,111,9420.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,3965.0,0.0,59205.15,0.0,44350.0,3,10,8.0,4,2.0 +10250,14419,5109.308124714551,44.0,111,780.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48468.25,0.0,48760.0,3,10,8.0,4,2.0 +10251,14420,3474.5138526433498,42.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21398.55,0.0,23390.0,2,8,6.0,1,1.0 +10252,14421,1429.0788919397273,71.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23000.0,0.0,0.0,22293.45,0.0,0.0,1,0,1.0,3,0.0 +10253,14423,2604.4169735694427,24.0,112,8510.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31050.0,0.0,21440.0,3,10,5.0,3,1.0 +10254,14425,2535.800037049131,44.0,211,1730.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,39428.85,0.0,33790.0,2,4,4.0,4,2.0 +10255,14426,2115.660166669575,47.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,33968.95,0.0,39510.0,2,8,6.0,2,1.0 +10256,14430,2712.1773671217434,56.0,300,3850.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,400.0,0.0,0.0,13290.0,1940.0,7150.0,1,0,0.0,3,1.0 +10257,14431,1821.8258096729191,52.0,112,0.0,22,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,42690.6,0.0,33000.0,2,8,1.0,4,2.0 +10258,14432,2423.3940729774145,66.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22420.0,0.0,0.0,22777.65,0.0,0.0,1,9,7.0,3,0.0 +10259,14433,1973.3650640017738,53.0,112,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17785.5,0.0,18300.0,1,8,2.0,1,1.0 +10260,14435,2020.0073336455594,73.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22120.0,0.0,0.0,21305.1,0.0,0.0,1,0,1.0,1,0.0 +10261,14436,4136.820879720228,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4589.0,0.0,0.0,3,9,7.0,1,0.0 +10262,14440,1551.2737344402783,65.0,300,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,29.0,0.0,37309.4,0.0,41480.0,1,0,0.0,1,1.0 +10263,14442,5218.147683352292,59.0,111,0.0,77,2.0,1.0,6.0,3.3,0.0,0.0,0.0,22210.0,0.0,0.0,48265.3,150.0,26700.0,3,10,8.0,5,2.0 +10264,14443,809.5566400580077,40.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25510.0,0.0,18170.0,3,9,7.0,2,1.0 +10265,14444,2152.0208831111067,81.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21940.0,0.0,0.0,20978.9,0.0,0.0,1,6,4.0,1,0.0 +10266,14446,1734.9250092272225,58.0,400,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56721.35,0.0,12690.0,1,0,1.0,3,2.0 +10267,14448,11447.677505751144,48.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18030.95,0.0,18870.0,3,7,1.0,1,1.0 +10268,14451,2360.7501723779746,56.0,112,0.0,55,3,3.0,4.0,2.5,0.0,0.0,0.0,21780.0,0.0,0.0,76124.6,1710.0,57780.0,2,10,2.0,4,3.0 +10269,14452,696.4177514724779,48.0,111,4020.0,56,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24843.0,0.0,5050.0,3,8,7.0,2,1.0 +10270,14454,1219.3432563075637,30.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43832.55,0.0,47360.0,3,8,7.0,3,2.0 +10271,14455,2639.9794939976196,53.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,3170.0,0.0,86687.2985588319,0.0,90690.0,1,10,8.0,4,2.0 +10272,14456,3711.39281285057,63.0,111,4150.0,77,1.0,0.0,2.0,1.5,0.0,1270.0,0.0,15640.0,0.0,0.0,20709.65,0.0,0.0,3,6,4.0,5,1.0 +10273,14457,2551.399395009463,72.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26710.0,0.0,0.0,42453.5,0.0,0.0,1,9,7.0,3,0.0 +10274,14458,195.11042161977784,37.0,112,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22596.95,4210.0,12540.0,3,9,0.0,2,1.0 +10275,14460,2640.305286026847,49.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20618.4,0.0,19570.0,2,7,6.0,1,1.0 +10276,14461,3412.390932589305,34.0,111,0.0,63,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38009.35,0.0,37690.0,3,10,8.0,4,2.0 +10277,14463,3065.3194989376043,46.0,112,4250.0,63,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12757.8,100.0,8560.0,1,6,0.0,1,1.0 +10278,14464,3501.937125348278,85.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18580.0,0.0,0.0,18462.35,0.0,0.0,1,9,1.0,1,0.0 +10279,14465,3348.1958913310705,75.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17840.0,0.0,0.0,19158.0,0.0,0.0,3,9,0.0,1,0.0 +10280,14468,2097.7534179562517,57.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,2005.0,0.0,35555.1,0.0,44670.0,1,9,7.0,1,1.0 +10281,14469,4153.194731228652,59.0,111,0.0,52,1.0,1.0,4.0,2.5,9720.0,0.0,0.0,23940.0,0.0,0.0,54353.13862709775,0.0,23870.0,1,9,7.0,5,1.0 +10282,14471,3149.3786916692566,24.0,111,5510.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31683.7,0.0,27910.0,3,8,7.0,3,2.0 +10283,14472,4615.137026759286,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23570.0,0.0,0.0,21541.169948800605,0.0,0.0,3,9,7.0,1,0.0 +10284,14474,3236.746285592281,58.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,13544.0,0.0,57140.580299155576,0.0,62720.0,2,8,6.0,1,1.0 +10285,14476,2513.786018848508,57.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,11550.0,0.0,0.0,45877.05,0.0,36550.0,3,8,7.0,3,2.0 +10286,14477,2105.132030305372,62.0,112,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27590.0,0.0,0.0,51346.4,0.0,24940.0,1,7,1.0,3,1.0 +10287,14478,2148.3770941424127,42.0,111,0.0,64,3,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32288.6,1010.0,30690.0,2,4,3.0,4,3.0 +10288,14482,892.9494712920274,68.0,111,0.0,75,0.0,0.0,2.0,1.5,6170.0,0.0,0.0,17750.0,0.0,0.0,25610.4,0.0,0.0,3,6,4.0,2,0.0 +10289,14483,3226.8871655981366,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2936.0,0.0,0.0,3,9,7.0,1,0.0 +10290,14484,4025.9703614533187,68.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35680.0,0.0,0.0,33765.25,0.0,0.0,3,10,4.0,3,0.0 +10291,14488,1821.381495890519,50.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43470.35,0.0,46210.0,2,7,5.0,3,2.0 +10292,14489,931.3533930835688,37.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,2120.0,0.0,0.0,0.0,0.0,11978.25,2580.0,0.0,3,9,7.0,2,1.0 +10293,14490,2377.6881818841,70.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28280.0,0.0,0.0,27807.6,0.0,0.0,1,0,3.0,3,0.0 +10294,14491,927.2344630626847,33.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23864.55,2570.0,18350.0,2,7,6.0,2,1.0 +10295,14492,2138.4640362254104,47.0,120,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,158.0,0.0,59172.0,0.0,61600.0,2,0,0.0,4,2.0 +10296,14495,17155.476657239302,69.0,221,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18560.0,0.0,0.0,17442.0,0.0,0.0,1,1,3.0,1,0.0 +10297,14497,1172.8721513821906,61.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31448.8,0.0,34840.0,1,6,5.0,1,1.0 +10298,14498,1140.7203397035848,42.0,111,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22582.9,2050.0,17970.0,3,8,7.0,2,1.0 +10299,14499,2317.4462821619145,20.0,111,0.0,84,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5253.0,0.0,0.0,3,9,7.0,3,1.0 +10300,14500,6351.116436308121,52.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44158.3,0.0,53440.0,1,9,7.0,1,1.0 +10301,14501,1620.2976284109536,46.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,68364.95,0.0,69960.0,2,9,7.0,4,2.0 +10302,14502,2615.8752520440935,60.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,72608.4,0.0,83900.0,1,6,5.0,3,2.0 +10303,14503,539.9460498450986,35.0,112,0.0,63,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,31478.6,0.0,21820.0,3,10,5.0,4,1.0 +10304,14504,499.624805244449,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41270.0,802.0,0.0,37598.05,0.0,0.0,1,9,7.0,3,0.0 +10305,14505,1447.9259956482128,21.0,111,0.0,67,1.0,0.0,2.0,1.3,0.0,3120.0,0.0,0.0,0.0,0.0,11966.0,200.0,0.0,3,4,3.0,2,1.0 +10306,14508,2282.980541173639,81.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24030.0,0.0,0.0,23809.5,0.0,0.0,1,0,1.0,3,0.0 +10307,14511,477.465840030801,21.0,112,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15414.0,50.0,12420.0,3,8,0.0,1,1.0 +10308,14514,1119.41765813863,27.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,8260.0,0.0,0.0,0.0,0.0,13190.0,0.0,0.0,4,8,7.0,2,0.0 +10309,14515,3550.542432383518,61.0,111,0.0,77,0.0,0.0,1.0,1.0,1470.0,0.0,0.0,0.0,0.0,0.0,3390.0,0.0,0.0,3,9,7.0,1,0.0 +10310,14516,3131.4612510223064,44.0,212,0.0,21,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23231.5,4990.0,0.0,1,2,0.0,4,2.0 +10311,14517,2726.3155176112978,91.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22590.0,0.0,0.0,21351.9,0.0,0.0,1,9,2.0,1,0.0 +10312,14518,2834.4119444198263,62.0,111,12730.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16170.0,0.0,0.0,27336.15,0.0,10.0,1,8,7.0,3,0.0 +10313,14519,2084.923748540859,41.0,120,0.0,68,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,46909.75,0.0,14130.0,2,0,0.0,4,2.0 +10314,14520,2452.818970078391,75.0,221,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15140.0,0.0,0.0,15590.1,0.0,0.0,1,1,2.0,1,0.0 +10315,14521,2589.4672360485856,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31870.0,0.0,0.0,29389.0,0.0,0.0,1,10,8.0,1,0.0 +10316,14522,1851.878176298586,56.0,111,3520.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,13670.0,0.0,0.0,37659.6,0.0,24460.0,2,7,6.0,3,2.0 +10317,14523,2145.9248461902985,47.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,88379.95,0.0,87100.0,1,10,8.0,4,2.0 +10318,14524,2408.9878552751707,37.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,283.0,0.0,51532.05,0.0,52910.0,3,9,7.0,4,2.0 +10319,14525,2199.8494814722962,34.0,111,0.0,85,0.0,0.0,1.0,1.0,11850.0,0.0,0.0,0.0,0.0,0.0,15321.0,0.0,0.0,3,9,7.0,1,0.0 +10320,14529,2687.6647925729776,76.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26170.0,0.0,0.0,25616.55,0.0,0.0,1,1,1.0,3,0.0 +10321,14530,2691.2111105105714,44.0,111,0.0,56,1.0,1.0,2.0,1.5,2410.0,0.0,0.0,0.0,0.0,0.0,17777.4,0.0,15540.0,3,8,7.0,3,1.0 +10322,14531,3024.998033426259,31.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20516.8,0.0,22590.0,3,9,7.0,1,1.0 +10323,14533,1818.0162900600928,63.0,111,5580.0,33,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31446.9,0.0,32560.0,3,7,5.0,3,2.0 +10324,14534,876.7960278253839,36.0,111,0.0,55,1.0,0.0,4.0,1.9,0.0,8940.0,0.0,0.0,0.0,0.0,18692.0,0.0,0.0,3,10,8.0,2,1.0 +10325,14535,2141.307712233528,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36450.0,0.0,0.0,48174.95,0.0,0.0,1,9,7.0,3,0.0 +10326,14536,2980.0414518575326,68.0,111,5900.0,72,1.0,0.0,2.0,1.5,0.0,5060.0,0.0,20760.0,148.0,0.0,31325.5,950.0,0.0,1,8,7.0,2,1.0 +10327,14539,2272.851362870571,79.0,212,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52720.0,0.0,0.0,52449.6,0.0,0.0,1,2,0.0,3,0.0 +10328,14540,3719.249542579526,85.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19650.0,0.0,0.0,20296.6,0.0,0.0,3,8,6.0,1,0.0 +10329,14541,2808.0321283841886,78.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20580.0,0.0,0.0,19881.4,0.0,0.0,1,8,0.0,1,0.0 +10330,14542,3724.042560892672,23.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6781.6,0.0,0.0,3,9,7.0,1,0.0 +10331,14543,1283.598677059628,58.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,217.0,0.0,56681.259348629945,0.0,65320.0,1,7,5.0,3,2.0 +10332,14544,2597.3078444048,43.0,111,2740.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,134.0,0.0,57233.25,0.0,56030.0,4,9,7.0,4,2.0 +10333,14545,1611.9832589688838,49.0,111,0.0,54,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,69092.85,0.0,75500.0,2,9,7.0,4,3.0 +10334,14546,2623.9990632602635,24.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30871.45,0.0,30740.0,1,7,4.0,2,2.0 +10335,14548,4242.77523528972,57.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3245.0,0.0,0.0,3,9,7.0,1,0.0 +10336,14549,3174.8735510920915,39.0,111,8310.0,43,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28889.05,0.0,18570.0,3,6,4.0,4,2.0 +10337,14551,3107.314001513339,60.0,112,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,27970.0,0.0,0.0,22082.2,0.0,0.0,2,9,0.0,2,1.0 +10338,14552,2391.6602303573654,55.0,400,360.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39464.9,0.0,38420.0,1,0,1.0,3,2.0 +10339,14553,917.1476342227511,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25630.0,0.0,0.0,25898.504466444694,0.0,0.0,1,7,5.0,3,0.0 +10340,14554,3047.0276719897097,35.0,111,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42097.05,0.0,38170.0,2,9,7.0,4,2.0 +10341,14555,1082.1984540586127,30.0,221,0.0,85,0.0,0.0,4.0,1.9,0.0,5930.0,0.0,0.0,0.0,0.0,19639.05,0.0,0.0,3,1,2.0,2,0.0 +10342,14557,3485.716977290394,40.0,400,620.0,21,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,36751.05,0.0,9190.0,1,0,1.0,4,2.0 +10343,14558,1930.6702607504606,53.0,300,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,443.0,0.0,45524.35,0.0,46830.0,1,0,0.0,4,2.0 +10344,14561,3503.4911909404977,43.0,111,0.0,65,1.0,1.0,7.0,3.2,0.0,0.0,0.0,11160.0,0.0,0.0,33716.0,0.0,18350.0,3,9,7.0,5,1.0 +10345,14562,4945.719062485688,44.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26396.35,0.0,30270.0,2,10,8.0,1,1.0 +10346,14564,1553.178797246026,54.0,211,0.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,26390.0,0.0,0.0,27322.9,0.0,1280.0,5,2,3.0,4,0.0 +10347,14565,1631.6971169114593,67.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27310.0,0.0,0.0,26827.7,0.0,0.0,5,0,0.0,3,0.0 +10348,14568,2669.181472235918,82.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20220.0,0.0,0.0,19564.15,0.0,0.0,1,6,5.0,3,0.0 +10349,14569,1866.7606727065627,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31560.0,0.0,0.0,28700.9,0.0,0.0,1,10,8.0,1,0.0 +10350,14570,1372.444991258734,73.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23100.0,0.0,0.0,30490.39282621631,0.0,0.0,1,0,0.0,3,0.0 +10351,14571,2993.9178036666385,34.0,111,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,109272.55,0.0,110840.0,2,8,6.0,4,2.0 +10352,14572,4536.362295189661,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18420.0,0.0,0.0,18074.55,0.0,0.0,3,10,8.0,1,0.0 +10353,14573,2086.3852990255177,66.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28450.0,0.0,0.0,27658.95,0.0,0.0,1,7,0.0,3,0.0 +10354,14575,5188.97028514058,37.0,120,0.0,85,0.0,0.0,1.0,1.0,10960.0,0.0,0.0,0.0,0.0,0.0,13904.0,0.0,0.0,3,0,3.0,1,0.0 +10355,14576,1992.3341784966753,59.0,111,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56166.75,0.0,61800.0,1,9,7.0,3,2.0 +10356,14577,1803.3397870708557,45.0,111,0.0,67,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,7.0,0.0,30531.1,0.0,29100.0,2,4,4.0,4,1.0 +10357,14578,1226.179370885625,57.0,111,4000.0,62,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40777.6,0.0,37620.0,3,7,5.0,3,2.0 +10358,14581,2551.2247630803263,57.0,111,400.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31718.7,0.0,35090.0,1,8,7.0,3,2.0 +10359,14582,5604.589429106195,29.0,111,1230.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35459.85,0.0,24800.0,2,8,6.0,4,1.0 +10360,14583,2278.555414922775,55.0,120,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,191.0,0.0,15425.05,2180.0,0.0,1,0,0.0,1,1.0 +10361,14585,4107.905712263901,25.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44679.25,0.0,47990.0,3,9,7.0,3,2.0 +10362,14587,1826.397121605743,68.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15300.0,0.0,0.0,15070.35,0.0,0.0,3,9,7.0,1,0.0 +10363,14589,2612.9494418981008,42.0,111,0.0,68,1.0,1.0,1.0,1.0,3370.0,0.0,0.0,0.0,0.0,0.0,19140.0,0.0,14570.0,3,10,8.0,1,1.0 +10364,14590,2476.396849590769,43.0,120,0.0,22,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,273475.91554470465,0.0,0.0,2,0,0.0,4,2.0 +10365,14591,1549.4772380168356,69.0,112,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,37700.0,0.0,0.0,33128.0,0.0,0.0,1,5,0.0,3,1.0 +10366,14592,2632.2384554368905,43.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,59570.75,0.0,65850.0,2,9,7.0,4,2.0 +10367,14593,2503.7649215956685,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21850.0,0.0,0.0,20634.05957095292,0.0,0.0,1,9,7.0,1,0.0 +10368,14595,3361.655268747173,56.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24298.6,0.0,25560.0,1,10,8.0,3,1.0 +10369,14597,2677.635637728193,39.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,165685.05,0.0,10910.0,2,4,3.0,4,2.0 +10370,14598,2840.155972670731,34.0,221,6370.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,43418.45,0.0,30920.0,2,1,2.0,4,2.0 +10371,14600,2849.5512446232015,23.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27490.0,0.0,26310.0,3,8,7.0,1,1.0 +10372,14601,2616.658635944736,45.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33821.1,0.0,32930.0,1,9,7.0,4,2.0 +10373,14602,2126.378446401001,59.0,211,8380.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,4930.0,0.0,0.0,14870.25,0.0,0.0,3,3,3.0,1,0.0 +10374,14604,2553.9012690370582,47.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12552.05,2690.0,10020.0,3,10,0.0,1,1.0 +10375,14605,5301.603487486732,32.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24585.95,0.0,18970.0,3,10,8.0,2,1.0 +10376,14607,7328.29150809781,25.0,111,3470.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49761.85,0.0,49650.0,3,10,8.0,3,2.0 +10377,14608,1818.9632334808373,58.0,221,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43047.6,0.0,41250.0,2,1,2.0,4,2.0 +10378,14609,2370.6544664659873,49.0,120,0.0,52,2.0,1.0,2.0,1.5,0.0,5480.0,0.0,0.0,0.0,0.0,25232.8,2740.0,12830.0,3,0,0.0,2,2.0 +10379,14610,4178.180641131561,22.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8002.1,0.0,0.0,3,10,8.0,1,0.0 +10380,14611,1758.0530546650834,59.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,70499.3,0.0,81310.0,1,9,7.0,3,2.0 +10381,14612,2674.4735993706117,42.0,300,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,47074.35,0.0,47700.0,2,0,0.0,4,2.0 +10382,14613,1521.2212821442201,35.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39609.15,0.0,43710.0,2,1,3.0,4,2.0 +10383,14614,1731.8176990052068,65.0,300,5950.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15210.0,0.0,0.0,20267.7,0.0,0.0,1,0,0.0,3,0.0 +10384,14615,941.0690878897824,52.0,111,0.0,85,0.0,0.0,2.0,1.5,0.0,7170.0,0.0,0.0,0.0,0.0,13033.0,0.0,0.0,3,8,7.0,2,0.0 +10385,14616,4574.926924969675,27.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23398.0,0.0,25330.0,3,10,8.0,1,1.0 +10386,14618,3867.6114702498676,69.0,300,0.0,78,0.0,0.0,2.0,1.5,9720.0,0.0,0.0,11220.0,0.0,0.0,20940.0,0.0,0.0,5,0,0.0,3,0.0 +10387,14620,4005.075381240393,49.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36218.3,0.0,36630.0,3,9,7.0,5,2.0 +10388,14622,2089.460175098178,88.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23710.0,0.0,0.0,21732.4,0.0,0.0,1,8,6.0,3,0.0 +10389,14623,2270.136043026229,57.0,300,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,7500.0,0.0,0.0,45894.35,0.0,40900.0,1,0,0.0,4,2.0 +10390,14624,887.0749054060926,36.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,3500.0,0.0,0.0,0.0,0.0,20961.0,0.0,20.0,3,7,5.0,2,0.0 +10391,14625,2653.3183657820377,88.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23990.0,0.0,0.0,22325.65,0.0,0.0,1,10,2.0,1,0.0 +10392,14626,2485.152017396304,41.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20987.95,0.0,22730.0,2,7,5.0,1,1.0 +10393,14627,2068.215236286948,70.0,212,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24940.0,0.0,0.0,18077.0,0.0,0.0,1,2,0.0,1,0.0 +10394,14628,6480.229340861202,35.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,5.0,0.0,14971.1,0.0,18920.0,3,9,7.0,1,1.0 +10395,14629,3411.003625693954,83.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22370.0,38.0,0.0,21768.1,0.0,0.0,5,7,0.0,1,0.0 +10396,14630,2688.6665015629187,48.0,111,13720.0,54,2.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16489.25,0.0,0.0,3,10,8.0,2,2.0 +10397,14632,1754.9607694733427,47.0,112,0.0,13,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,56629.35,0.0,13000.0,2,6,0.0,4,2.0 +10398,14634,2467.482369056479,44.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25606.55,0.0,23350.0,2,9,7.0,2,1.0 +10399,14635,1811.3606151485967,65.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41400.0,0.0,0.0,36975.05,0.0,0.0,1,8,7.0,3,0.0 +10400,14636,11746.123764311962,81.0,221,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13350.0,0.0,0.0,13411.0,0.0,0.0,3,1,3.0,1,0.0 +10401,14637,1618.8507595361816,42.0,112,0.0,38,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,176.0,0.0,109839.8875983692,0.0,115970.0,1,8,2.0,4,2.0 +10402,14638,1578.1035554810485,69.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,48330.0,0.0,0.0,44242.05,0.0,0.0,1,7,1.0,3,0.0 +10403,14640,2463.7918637982916,39.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,28.0,0.0,77751.2,0.0,78330.0,2,9,7.0,4,2.0 +10404,14641,1010.0087654212392,36.0,112,10830.0,33,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45163.7,0.0,36500.0,3,10,4.0,4,2.0 +10405,14642,2246.451522009015,53.0,221,2360.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,66166.7,0.0,72480.0,1,1,1.0,4,2.0 +10406,14643,810.2020035497546,40.0,111,3140.0,63,2.0,0.0,8.0,3.7,0.0,10340.0,0.0,0.0,0.0,0.0,33570.0,0.0,0.0,3,7,5.0,4,2.0 +10407,14644,2442.4775053202825,74.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10880.0,0.0,0.0,11720.0,0.0,0.0,3,10,8.0,1,0.0 +10408,14645,1653.4306191512737,55.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56258.15,0.0,0.0,1,0,0.0,3,2.0 +10409,14646,2517.366880286185,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62510.0,0.0,0.0,71546.09180335641,0.0,0.0,1,10,8.0,3,0.0 +10410,14648,2985.836460874774,40.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21152.25,0.0,21950.0,3,6,4.0,1,1.0 +10411,14649,1063.0887959850138,78.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39970.0,34.0,0.0,37807.82534844032,0.0,0.0,1,2,3.0,3,0.0 +10412,14650,194.8773955283204,34.0,112,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,38461.8,0.0,0.0,3,8,0.0,2,1.0 +10413,14651,1665.785245684069,25.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21328.45,2720.0,16110.0,3,10,8.0,2,1.0 +10414,14653,446.7629271196281,53.0,111,1130.0,43,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,42897.95,0.0,39850.0,2,9,7.0,2,1.0 +10415,14656,3285.950703283837,34.0,111,3040.0,38,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,484.0,0.0,60881.90109762119,330.0,65550.0,3,9,7.0,3,2.0 +10416,14657,719.6331947244167,40.0,112,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32397.95,0.0,32390.0,3,10,4.0,2,1.0 +10417,14659,1374.0739312812568,27.0,111,3060.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3240.0,180.0,0.0,3,9,7.0,1,1.0 +10418,14661,3523.9992537678263,56.0,400,0.0,45,1.0,1.0,2.0,1.5,2750.0,0.0,0.0,0.0,0.0,0.0,19233.05,0.0,17070.0,1,0,0.0,3,1.0 +10419,14662,2564.672141222266,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35200.0,0.0,0.0,32860.05,0.0,0.0,1,7,2.0,3,0.0 +10420,14663,1304.7618203460497,70.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41480.0,0.0,0.0,50883.110598311156,0.0,0.0,1,10,8.0,3,0.0 +10421,14665,3213.637957662411,22.0,111,6310.0,67,1.0,0.0,4.0,2.1,0.0,2520.0,0.0,0.0,0.0,0.0,21544.0,1560.0,2120.0,3,9,7.0,4,1.0 +10422,14666,2139.076763602812,39.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,100891.8,0.0,124650.0,3,8,6.0,3,2.0 +10423,14668,425.45912213811124,44.0,120,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,64.0,0.0,19733.0,1060.0,8840.0,3,0,0.0,2,1.0 +10424,14669,1898.5708886151479,56.0,300,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30941.6,0.0,29010.0,1,0,0.0,3,2.0 +10425,14670,1488.377363810035,59.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,2220.0,0.0,123381.9,0.0,128960.0,1,10,8.0,3,2.0 +10426,14671,1442.585692092146,36.0,112,0.0,47,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30353.4,0.0,32040.0,2,8,0.0,2,1.0 +10427,14672,3968.699789624086,58.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23590.2,0.0,24140.0,4,9,7.0,1,1.0 +10428,14673,1309.535958579001,52.0,211,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,43295.25,0.0,40680.0,2,4,4.0,4,2.0 +10429,14675,2183.559758511106,73.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13290.0,0.0,0.0,12804.05,0.0,0.0,5,0,0.0,1,0.0 +10430,14676,2056.6329954941216,50.0,111,2050.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40452.6,0.0,41470.0,1,9,7.0,3,2.0 +10431,14677,4992.427153383707,53.0,111,11490.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23448.55,0.0,8130.0,3,10,8.0,5,1.0 +10432,14678,1166.364265883547,33.0,111,3000.0,56,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,19708.1,0.0,0.0,2,9,7.0,2,1.0 +10433,14679,4049.030489860402,37.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,120983.05,0.0,153920.0,3,10,8.0,3,2.0 +10434,14680,2186.897056754675,45.0,112,0.0,64,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40500.55,0.0,41700.0,2,8,1.0,4,3.0 +10435,14681,2164.6172684859534,63.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,10150.0,10180.0,0.0,0.0,23498.0,0.0,0.0,3,4,4.0,3,0.0 +10436,14683,3479.1294930027425,43.0,111,2220.0,53,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,35.0,0.0,28177.3,0.0,28010.0,3,9,7.0,1,1.0 +10437,14684,1003.7031782456744,42.0,111,5260.0,85,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17593.9,1360.0,10260.0,3,9,7.0,2,0.0 +10438,14685,4598.0143159486415,51.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44839.68175310515,0.0,53190.0,3,10,4.0,1,1.0 +10439,14687,2633.533678071133,52.0,112,0.0,48,3,3.0,4.0,2.5,2070.0,0.0,0.0,0.0,0.0,0.0,41882.6,0.0,40610.0,1,10,0.0,4,3.0 +10440,14689,2181.498447246563,44.0,300,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,75.0,0.0,25604.0,0.0,23040.0,2,0,0.0,1,1.0 +10441,14690,1510.5229538708354,65.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43680.0,0.0,0.0,47635.0,0.0,0.0,2,0,0.0,3,0.0 +10442,14691,3023.0370600579167,46.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,44.0,0.0,49736.65,0.0,52120.0,2,10,8.0,1,1.0 +10443,14696,1245.543859957163,68.0,112,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55280.0,0.0,0.0,49788.25,0.0,0.0,1,8,0.0,3,0.0 +10444,14698,2474.9074494928846,67.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23200.0,0.0,0.0,22689.15,0.0,0.0,3,9,7.0,1,0.0 +10445,14699,429.8812518161268,49.0,112,0.0,85,2.0,0.0,4.0,2.3,0.0,4910.0,0.0,0.0,0.0,0.0,23326.25,210.0,0.0,3,7,2.0,2,2.0 +10446,14700,1875.9820124554788,44.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44658.55,0.0,41580.0,2,7,5.0,4,2.0 +10447,14701,3091.132477206951,32.0,300,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38666.35,0.0,25510.0,2,0,0.0,4,2.0 +10448,14703,4256.786531548971,84.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14830.0,0.0,0.0,14830.0,0.0,0.0,3,8,7.0,1,0.0 +10449,14705,1705.9887570251617,59.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,5920.0,0.0,0.0,21121.4,0.0,19610.0,1,8,7.0,1,1.0 +10450,14706,1293.9379957676572,80.0,111,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20720.0,0.0,0.0,20203.95,0.0,0.0,1,9,7.0,3,0.0 +10451,14709,2151.7003123757518,61.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,10590.0,0.0,0.0,24053.15,0.0,15220.0,1,8,7.0,1,1.0 +10452,14710,2919.9710416666676,76.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30080.0,0.0,0.0,27466.05,0.0,0.0,1,8,7.0,1,0.0 +10453,14711,2457.3740046161333,58.0,111,4330.0,63,1.0,0.0,1.0,1.0,0.0,480.0,0.0,0.0,0.0,0.0,7418.55,0.0,0.0,3,8,6.0,1,1.0 +10454,14712,4466.723558631738,42.0,111,5330.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38718.2,0.0,33080.0,5,9,7.0,4,2.0 +10455,14713,3439.9095625574105,30.0,111,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40893.0,0.0,40910.0,2,6,5.0,4,2.0 +10456,14714,1723.7830359355203,66.0,111,0.0,35,2.0,2.0,2.0,1.5,0.0,0.0,11290.0,0.0,616.0,0.0,16877.0,0.0,0.0,3,9,7.0,3,2.0 +10457,14718,2888.321629742432,35.0,111,18290.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,85934.25,0.0,69270.0,2,9,7.0,4,2.0 +10458,14720,2649.6058173015945,59.0,111,0.0,77,0.0,0.0,1.0,1.0,7260.0,0.0,0.0,2450.0,0.0,0.0,12662.0,0.0,0.0,3,7,5.0,1,0.0 +10459,14722,2422.0122355624444,31.0,111,0.0,54,1.0,0.0,1.0,1.0,8030.0,0.0,0.0,0.0,0.0,0.0,7684.85,0.0,0.0,3,8,6.0,1,1.0 +10460,14723,596.8132098708564,51.0,221,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20593.6,0.0,20510.0,3,1,2.0,2,1.0 +10461,14724,3044.8396950312153,37.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27126.25,0.0,27630.0,2,9,7.0,1,1.0 +10462,14725,1486.9854447894452,56.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14806.85,0.0,15950.0,1,4,4.0,1,1.0 +10463,14727,1126.4956241674433,37.0,111,0.0,85,0.0,0.0,6.0,2.9,0.0,4270.0,0.0,0.0,0.0,0.0,30145.0,0.0,0.0,3,9,7.0,4,0.0 +10464,14729,1823.6972569460759,43.0,120,0.0,65,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,33065.9,2690.0,17620.0,3,0,3.0,4,1.0 +10465,14730,3502.5193352439364,26.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,55251.5,0.0,61750.0,3,8,7.0,3,2.0 +10466,14731,2558.6814210921443,44.0,400,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53990.55,0.0,0.0,1,0,0.0,3,1.0 +10467,14733,1631.214765922992,52.0,112,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,67831.45,0.0,77110.0,1,8,0.0,4,2.0 +10468,14734,2812.626466308352,31.0,111,3870.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36575.7,0.0,20430.0,2,9,7.0,3,2.0 +10469,14735,667.2561057664201,41.0,400,7010.0,85,1.0,1.0,3.0,1.8,0.0,1740.0,0.0,0.0,0.0,0.0,22525.6,3970.0,5230.0,3,0,0.0,4,1.0 +10470,14736,2737.6737839166867,62.0,112,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,65.0,0.0,5926.45,2020.0,4330.0,5,10,0.0,1,1.0 +10471,14738,2170.942444294793,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16820.0,0.0,0.0,16030.9,0.0,0.0,1,6,5.0,1,0.0 +10472,14740,3450.8884516326543,81.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17570.0,0.0,0.0,17372.4,0.0,0.0,3,8,7.0,1,0.0 +10473,14741,1881.5344152208575,43.0,112,0.0,54,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,49554.85,0.0,48950.0,2,8,2.0,4,2.0 +10474,14742,5624.551807904083,76.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,4790.0,4460.0,0.0,0.0,9185.3,0.0,0.0,1,9,3.0,1,0.0 +10475,14743,1857.4745708889639,60.0,111,0.0,33,1.0,1.0,2.0,1.5,0.0,0.0,0.0,42640.0,0.0,0.0,81070.83799184603,0.0,58540.0,1,8,7.0,3,1.0 +10476,14744,1829.3043473282294,53.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18170.0,0.0,0.0,62861.0,0.0,52780.0,2,6,5.0,3,1.0 +10477,14745,1699.7032883384104,51.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,146.0,0.0,59767.55,0.0,65370.0,2,9,0.0,4,2.0 +10478,14746,4077.5783197447045,45.0,120,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,68358.4,0.0,0.0,1,0,0.0,4,2.0 +10479,14747,2275.8450930686963,49.0,211,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36781.05,0.0,37670.0,3,3,4.0,4,1.0 +10480,14748,4174.718391405836,52.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40710.0,180.0,41700.0,3,9,7.0,3,2.0 +10481,14749,2384.7204438580025,90.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18310.0,0.0,0.0,17708.1,0.0,0.0,5,9,7.0,1,0.0 +10482,14751,1512.9664446378133,51.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41959.55,0.0,45480.0,2,9,7.0,3,2.0 +10483,14752,2690.7418108471693,77.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34030.0,0.0,0.0,31711.6,0.0,0.0,1,8,3.0,3,0.0 +10484,14753,2072.0160928158793,58.0,300,14960.0,63,2.0,1.0,3.0,2.0,0.0,0.0,0.0,14580.0,64.0,0.0,42060.1,0.0,15240.0,1,0,0.0,4,2.0 +10485,14755,2455.909219841929,81.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10770.0,0.0,0.0,10821.0,0.0,0.0,5,0,0.0,1,0.0 +10486,14756,3800.719711928588,28.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33474.4,0.0,41870.0,2,10,8.0,1,1.0 +10487,14757,2433.561554192182,46.0,111,0.0,64,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,46113.35,0.0,46610.0,3,9,7.0,4,2.0 +10488,14758,1720.901201898867,29.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42501.55,0.0,42060.0,3,6,0.0,3,2.0 +10489,14759,1996.257883903427,54.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33959.3,0.0,36720.0,2,8,0.0,3,2.0 +10490,14760,875.5225702721634,28.0,300,8020.0,62,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34085.8,740.0,23250.0,3,0,0.0,4,1.0 +10491,14761,680.8381196309589,38.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23609.2,0.0,24130.0,3,8,7.0,2,1.0 +10492,14762,2437.19648741115,57.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36104.9,0.0,37500.0,3,5,4.0,3,2.0 +10493,14763,2010.4102103141659,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34500.0,0.0,0.0,31900.35,0.0,0.0,1,7,5.0,3,0.0 +10494,14764,2821.5829638688006,45.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,268.0,0.0,31595.85,0.0,28110.0,2,8,7.0,1,1.0 +10495,14765,2640.134822762633,86.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47090.0,122.0,0.0,43328.0,0.0,0.0,1,8,6.0,3,0.0 +10496,14767,1600.0369450501366,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,55970.0,2048.0,0.0,57005.48862709775,0.0,0.0,1,9,7.0,3,0.0 +10497,14768,2412.684732724771,43.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,2830.0,0.0,0.0,0.0,0.0,9112.45,1910.0,4090.0,3,7,5.0,1,1.0 +10498,14769,1776.2731594371262,92.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34150.0,0.0,0.0,33350.16514957779,0.0,0.0,5,6,4.0,1,0.0 +10499,14771,1707.9230314951706,62.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,88764.95,0.0,108030.0,2,10,8.0,3,2.0 +10500,14772,2176.4133707192373,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19490.0,0.0,0.0,19264.73122214848,0.0,0.0,1,7,5.0,3,0.0 +10501,14774,3339.058426929462,78.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16220.0,0.0,0.0,15410.55,0.0,0.0,1,7,4.0,1,0.0 +10502,14775,782.2099840877812,32.0,111,0.0,55,1.0,0.0,3.0,1.6,0.0,6070.0,0.0,0.0,0.0,0.0,20584.15,800.0,3940.0,3,9,7.0,2,1.0 +10503,14776,4188.364089735429,41.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21058.5,0.0,22560.0,3,9,7.0,1,1.0 +10504,14777,1526.974952905222,51.0,300,0.0,13,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,30877.95233640127,0.0,19450.0,1,0,0.0,4,2.0 +10505,14778,3479.9270044778086,47.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,1420.0,0.0,0.0,0.0,0.0,11194.0,2060.0,4450.0,3,7,6.0,1,1.0 +10506,14779,1178.482445629905,47.0,111,0.0,42,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,42163.7,0.0,25470.0,2,9,7.0,2,1.0 +10507,14780,1049.0840338701225,36.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,57989.73197477373,0.0,52150.0,3,8,6.0,4,2.0 +10508,14781,1551.2481979686713,44.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41215.8,0.0,44380.0,2,9,7.0,3,2.0 +10509,14784,2024.2219363403754,60.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,31790.0,0.0,0.0,35864.35,0.0,9390.0,1,10,8.0,3,1.0 +10510,14785,661.0396961934069,36.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24647.85,0.0,21540.0,3,9,7.0,2,1.0 +10511,14787,1689.440456276128,27.0,112,0.0,67,1.0,1.0,5.0,2.4,0.0,6280.0,0.0,2730.0,0.0,0.0,25885.0,180.0,11800.0,1,10,4.0,5,1.0 +10512,14790,775.4570320392926,44.0,112,0.0,65,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29571.75,140.0,21420.0,3,10,4.0,2,1.0 +10513,14791,2614.631987625085,33.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,83604.6,0.0,89960.0,2,10,8.0,4,2.0 +10514,14792,3555.5943712963526,26.0,112,12670.0,85,0.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,16222.1,0.0,1370.0,5,10,0.0,2,0.0 +10515,14793,2578.0859092720843,28.0,112,8570.0,42,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31729.5,180.0,18560.0,3,8,0.0,4,2.0 +10516,14794,1780.7511841532285,84.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40380.0,356.0,0.0,38527.35,0.0,0.0,1,2,3.0,3,0.0 +10517,14796,2684.5062160956904,31.0,111,1840.0,85,0.0,0.0,5.0,2.2,0.0,1070.0,0.0,0.0,0.0,0.0,24735.0,0.0,1480.0,3,9,7.0,2,0.0 +10518,14798,2097.713481773097,47.0,221,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48851.0,0.0,53200.0,1,1,2.0,3,2.0 +10519,14799,2771.9629016829426,30.0,111,470.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27387.55,1810.0,22970.0,3,4,3.0,3,2.0 +10520,14800,2421.0282255125117,34.0,111,11940.0,63,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,34660.85,0.0,20770.0,3,7,5.0,4,2.0 +10521,14801,2397.5750663201266,58.0,300,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16350.0,0.0,0.0,43604.0,0.0,30700.0,1,0,0.0,3,1.0 +10522,14802,1668.0001348018059,43.0,120,0.0,65,2.0,2.0,8.0,3.7,0.0,0.0,0.0,0.0,0.0,0.0,39010.85,770.0,31100.0,2,0,0.0,4,2.0 +10523,14803,5125.379912038388,93.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10340.0,0.0,0.0,10376.0,0.0,0.0,1,9,7.0,1,0.0 +10524,14809,2147.3712988733837,75.0,111,0.0,21,1.0,0.0,1.0,1.0,0.0,0.0,0.0,15020.0,0.0,0.0,18943.8,0.0,0.0,5,10,8.0,1,1.0 +10525,14813,2437.385910778981,59.0,300,0.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31230.75,0.0,32010.0,1,0,0.0,3,2.0 +10526,14816,2151.6065377070395,77.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13800.0,0.0,0.0,14291.0,0.0,0.0,1,6,2.0,1,0.0 +10527,14817,2381.2234141498825,54.0,111,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29903.2,0.0,31330.0,3,8,7.0,3,2.0 +10528,14818,1619.7725420523236,64.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13290.0,0.0,0.0,12471.0,0.0,0.0,1,8,7.0,1,0.0 +10529,14820,2562.625893423558,65.0,112,0.0,21,1.0,1.0,1.0,1.0,0.0,1020.0,0.0,0.0,0.0,0.0,12903.0,2430.0,0.0,3,8,1.0,1,1.0 +10530,14821,3148.5907743259327,30.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23426.4,0.0,25380.0,3,9,1.0,1,1.0 +10531,14822,1157.10988836701,38.0,111,870.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24025.2,1710.0,12190.0,3,10,8.0,2,1.0 +10532,14823,3212.2355207740784,53.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22226.3,0.0,25100.0,2,9,1.0,1,1.0 +10533,14824,2593.8140819113974,51.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18454.0,0.0,19710.0,2,8,7.0,1,1.0 +10534,14825,1808.34562075228,89.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22280.0,0.0,0.0,21872.45,0.0,0.0,1,0,0.0,3,0.0 +10535,14826,3208.6212294328584,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51700.0,0.0,0.0,48542.94933630416,0.0,0.0,1,6,4.0,3,0.0 +10536,14828,2077.060278126936,70.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15600.0,0.0,0.0,18411.1,0.0,0.0,1,7,5.0,3,0.0 +10537,14829,1538.9707430549013,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36280.0,0.0,0.0,34698.85,0.0,0.0,1,9,7.0,3,0.0 +10538,14830,1899.289607600999,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31990.0,0.0,0.0,26285.4,0.0,0.0,1,10,8.0,1,0.0 +10539,14832,1221.8020374041403,60.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,56074.05,0.0,64210.0,2,9,7.0,3,2.0 +10540,14833,2135.5810110553034,66.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17340.0,0.0,0.0,22047.1,0.0,5920.0,1,9,7.0,3,1.0 +10541,14834,3309.0317288030406,22.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21131.5,0.0,20280.0,3,8,7.0,1,1.0 +10542,14836,2907.662925027307,51.0,111,3640.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23576.55,0.0,21460.0,3,8,7.0,3,2.0 +10543,14837,2092.399181215357,66.0,211,11480.0,72,2.0,0.0,3.0,2.0,0.0,4460.0,0.0,20860.0,0.0,0.0,36559.553532770384,0.0,0.0,2,1,2.0,4,2.0 +10544,14838,2111.810896615812,30.0,111,5120.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49781.15,0.0,48720.0,3,8,6.0,3,2.0 +10545,14839,1528.9612366672384,54.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21650.5,0.0,22100.0,3,7,6.0,3,2.0 +10546,14840,2751.4850915254137,88.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,49310.0,0.0,0.0,42259.75190575519,0.0,0.0,1,6,4.0,3,0.0 +10547,14841,2317.124083821823,59.0,111,0.0,46,2.0,2.0,3.0,2.0,9720.0,0.0,0.0,0.0,0.0,0.0,28198.65,0.0,18530.0,1,10,8.0,4,2.0 +10548,14842,1545.776436762866,57.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43098.0,0.0,40510.0,3,9,7.0,2,2.0 +10549,14843,4512.941857143431,35.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17300.0,0.0,17300.0,3,10,8.0,1,1.0 +10550,14844,2014.6699097253324,81.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26280.0,0.0,0.0,26382.85,0.0,0.0,1,9,7.0,3,0.0 +10551,14845,2397.8316923996954,65.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25240.0,0.0,0.0,23466.8,0.0,0.0,3,10,8.0,1,0.0 +10552,14846,2286.858548671719,80.0,111,0.0,86,0.0,0.0,2.0,1.5,9720.0,0.0,0.0,18880.0,0.0,0.0,28247.0,0.0,0.0,1,6,4.0,2,0.0 +10553,14847,57.25013384482004,46.0,120,0.0,56,1.0,0.0,3.0,2.0,0.0,0.0,0.0,10750.0,0.0,0.0,18278.5,0.0,3050.0,1,0,0.0,2,1.0 +10554,14848,3437.0111018291386,28.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19946.55,0.0,21650.0,1,9,7.0,1,1.0 +10555,14849,2991.9875650251033,62.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14360.0,0.0,0.0,14162.4,0.0,0.0,3,8,7.0,1,0.0 +10556,14850,2232.290146840436,45.0,120,0.0,62,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,66352.0,0.0,69580.0,1,0,0.0,4,2.0 +10557,14851,3395.4568287170673,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18120.0,961.0,0.0,18629.45,0.0,0.0,1,9,7.0,1,0.0 +10558,14852,817.1298920919539,41.0,111,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28927.8,0.0,26070.0,3,4,3.0,2,1.0 +10559,14853,1744.9242197445476,67.0,400,0.0,11,1.0,0.0,2.0,1.5,0.0,0.0,0.0,53300.0,0.0,0.0,-0.0,0.0,0.0,1,0,0.0,3,1.0 +10560,14854,2070.5311373631703,81.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13810.0,0.0,0.0,13589.65,0.0,0.0,1,7,0.0,1,0.0 +10561,14855,1681.0002267585883,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41430.0,0.0,0.0,38211.25,0.0,0.0,1,8,7.0,3,0.0 +10562,14856,2527.3670775784954,48.0,111,0.0,52,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,34323.05,290.0,24480.0,3,10,8.0,4,1.0 +10563,14858,2376.9804594321567,43.0,120,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,62728.45,0.0,65020.0,2,0,0.0,4,2.0 +10564,14859,1488.9519025323589,48.0,112,0.0,55,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,57811.8,310.0,63070.0,1,10,2.0,4,3.0 +10565,14860,2349.111058443521,65.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,21230.0,0.0,0.0,52424.35,0.0,31520.0,3,6,4.0,3,1.0 +10566,14862,2187.743974361411,44.0,112,6590.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,63212.8,0.0,46120.0,2,8,0.0,4,2.0 +10567,14863,2108.0911622283425,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28500.0,0.0,0.0,26461.85,0.0,0.0,3,8,7.0,1,0.0 +10568,14864,2238.395960493727,38.0,111,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47523.4,0.0,47390.0,2,9,7.0,4,2.0 +10569,14865,1910.757160684263,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52050.0,377.0,0.0,45464.4,0.0,0.0,1,9,7.0,3,0.0 +10570,14866,3160.8413058665346,27.0,111,10600.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33451.95,0.0,23920.0,3,10,8.0,3,2.0 +10571,14867,1409.717172653112,70.0,211,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33190.0,0.0,0.0,31958.1,0.0,0.0,1,2,3.0,3,0.0 +10572,14869,3157.6463344842577,77.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19760.0,0.0,0.0,22820.4,0.0,0.0,1,8,7.0,1,0.0 +10573,14871,2392.9712191284734,75.0,112,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,53160.0,6010.0,0.0,120631.055,0.0,0.0,1,10,0.0,1,1.0 +10574,14873,1666.032832062275,51.0,211,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,9950.0,0.0,0.0,25575.85,0.0,16990.0,1,2,2.0,3,1.0 +10575,14874,3067.762147853628,69.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23340.0,0.0,0.0,21517.05,0.0,0.0,1,0,0.0,1,0.0 +10576,14875,661.7742263140207,53.0,112,0.0,74,0.0,0.0,3.0,2.0,0.0,0.0,0.0,23690.0,0.0,0.0,26102.85,0.0,0.0,1,10,0.0,2,0.0 +10577,14878,1601.910670501488,90.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15920.0,0.0,0.0,15927.0,0.0,0.0,5,0,0.0,3,0.0 +10578,14879,3527.7436886574524,65.0,112,5950.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,13240.0,0.0,0.0,20511.65,0.0,0.0,3,6,0.0,3,1.0 +10579,14881,1212.8104295680403,68.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39030.0,458.0,0.0,38247.7,0.0,0.0,1,6,0.0,3,0.0 +10580,14882,2038.019348221739,35.0,112,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,26024.1,0.0,24530.0,1,10,1.0,2,1.0 +10581,14884,2921.3830418185544,37.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,30499.05,0.0,29960.0,2,6,2.0,4,2.0 +10582,14885,2528.2091195483454,24.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17354.55,1040.0,16370.0,3,4,3.0,1,1.0 +10583,14886,714.2282920385456,58.0,111,0.0,54,1.0,1.0,2.0,1.5,0.0,0.0,0.0,3760.0,0.0,0.0,24369.0,0.0,18450.0,3,9,7.0,2,1.0 +10584,14887,4775.011726688963,68.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13700.0,0.0,0.0,14116.0,0.0,0.0,3,1,2.0,1,0.0 +10585,14888,804.657881907564,47.0,112,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18590.0,0.0,0.0,43817.0,0.0,22010.0,1,9,2.0,2,1.0 +10586,14890,2815.038681388092,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14820.0,0.0,0.0,14580.8,0.0,0.0,3,9,7.0,1,0.0 +10587,14892,1874.3619627550888,42.0,112,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53248.55,0.0,57270.0,1,4,0.0,4,2.0 +10588,14895,3735.010069162234,82.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22220.0,0.0,0.0,22762.85,0.0,0.0,1,10,8.0,1,0.0 +10589,14896,1810.3811156268407,67.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42400.0,0.0,0.0,38476.0,0.0,0.0,1,7,0.0,3,0.0 +10590,14897,1647.9700615255272,65.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12770.0,0.0,0.0,12110.4,0.0,0.0,2,6,0.0,1,0.0 +10591,14898,1923.7309714673286,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32810.0,0.0,0.0,30785.1,0.0,0.0,1,10,8.0,3,0.0 +10592,14899,1695.5582673590875,63.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2800.0,0.0,0.0,19988.65,0.0,18530.0,1,8,6.0,1,0.0 +10593,14900,2067.883950253183,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20020.0,0.0,0.0,19305.9,0.0,0.0,1,9,7.0,3,0.0 +10594,14901,2641.764408426064,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,114300.0,0.0,0.0,91198.4018907696,0.0,0.0,1,10,8.0,3,0.0 +10595,14902,864.7922164810271,45.0,300,0.0,85,0.0,0.0,2.0,1.3,0.0,3790.0,0.0,0.0,0.0,0.0,8126.0,0.0,0.0,3,0,0.0,2,0.0 +10596,14904,1313.3032548242031,51.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,323.0,0.0,27396.55,0.0,27590.0,1,7,6.0,1,1.0 +10597,14905,3893.2900515477504,25.0,111,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36430.35,840.0,33300.0,3,9,7.0,3,2.0 +10598,14906,3647.31114163968,39.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18600.25,0.0,19710.0,3,6,4.0,1,1.0 +10599,14908,2096.6973258229627,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18200.0,0.0,0.0,17294.0,0.0,0.0,1,7,5.0,1,0.0 +10600,14909,2004.3709332495307,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51360.0,0.0,0.0,45532.2209016782,0.0,0.0,1,8,7.0,3,0.0 +10601,14911,2425.2780680833316,38.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36366.7,0.0,39820.0,3,6,0.0,3,2.0 +10602,14912,844.2874179321636,46.0,111,12630.0,68,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21481.45,0.0,1330.0,3,5,4.0,2,1.0 +10603,14913,5130.925550917156,41.0,111,0.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24511.9,230.0,24100.0,3,10,8.0,2,2.0 +10604,14914,1816.8003523498758,60.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45240.65,0.0,50280.0,1,9,7.0,3,2.0 +10605,14916,3633.448775227638,66.0,211,5450.0,78,2.0,2.0,4.0,2.5,0.0,0.0,0.0,15060.0,0.0,0.0,47975.65,0.0,27880.0,3,1,3.0,4,2.0 +10606,14917,1166.7416376007584,64.0,120,0.0,75,0.0,0.0,2.0,1.5,2980.0,0.0,0.0,34060.0,0.0,0.0,34369.5,0.0,0.0,1,0,3.0,3,0.0 +10607,14920,2002.9493596019265,31.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40875.5,0.0,43040.0,2,7,1.0,4,2.0 +10608,14921,3895.6668868711035,70.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34370.0,0.0,0.0,29407.6,0.0,0.0,1,9,7.0,1,0.0 +10609,14922,3372.3987823609045,89.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12070.0,0.0,0.0,12154.0,0.0,0.0,5,0,0.0,1,0.0 +10610,14925,2181.568347741124,59.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16118.1,0.0,16730.0,3,10,8.0,1,1.0 +10611,14926,1980.8755135309843,49.0,112,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33537.9,0.0,35100.0,2,7,0.0,3,2.0 +10612,14927,1783.076272996516,69.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,41650.0,0.0,0.0,39311.2,0.0,0.0,1,0,0.0,3,0.0 +10613,14928,3471.65931532046,59.0,112,5310.0,64,3,4.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,97501.3,0.0,95160.0,1,10,0.0,5,4.0 +10614,14929,1347.2301893352512,70.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20700.0,0.0,0.0,19559.6,0.0,0.0,1,0,0.0,3,0.0 +10615,14930,2183.491079576264,76.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58060.0,549.0,0.0,51273.15,0.0,0.0,1,10,8.0,3,0.0 +10616,14931,923.1819394723708,39.0,300,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28119.0,1260.0,23310.0,3,0,0.0,2,1.0 +10617,14932,2636.736657028074,92.0,300,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,820.0,7840.0,0.0,0.0,8864.0,0.0,0.0,5,0,0.0,1,0.0 +10618,14934,2203.698449465945,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,2590.0,808.0,0.0,22257.0,0.0,0.0,1,4,4.0,1,0.0 +10619,14935,1696.1675206207462,67.0,112,4560.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,73780.0,12.0,0.0,72606.17123460228,0.0,0.0,1,7,0.0,3,0.0 +10620,14936,3057.4474902974,37.0,112,600.0,56,2.0,2.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,21296.55,0.0,11340.0,2,10,4.0,4,2.0 +10621,14937,2005.705915856296,63.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52780.0,0.0,0.0,47667.75,0.0,0.0,1,0,0.0,3,0.0 +10622,14938,1727.2686750030625,49.0,111,2600.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,22342.6,2020.0,18040.0,1,9,7.0,2,1.0 +10623,14940,3571.113551008423,33.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28061.4,530.0,23150.0,2,10,0.0,4,2.0 +10624,14941,3723.427748636164,40.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17470.3,50.0,17440.0,2,9,7.0,1,1.0 +10625,14942,2144.926571423382,78.0,111,10220.0,75,2.0,2.0,3.0,2.0,0.0,0.0,0.0,27050.0,0.0,0.0,42709.10353277039,0.0,0.0,3,7,5.0,5,2.0 +10626,14943,3166.609383908686,81.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29220.0,0.0,0.0,26903.0,0.0,0.0,1,7,6.0,1,0.0 +10627,14944,1541.7493672634175,63.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28030.0,0.0,0.0,27795.7,0.0,0.0,3,0,1.0,3,0.0 +10628,14945,1345.0760120602013,39.0,111,0.0,64,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,29105.05,0.0,27030.0,3,10,8.0,4,1.0 +10629,14946,3111.5447121430743,31.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,5780.0,0.0,0.0,0.0,0.0,17720.0,2410.0,3480.0,3,9,7.0,2,1.0 +10630,14947,1760.0076285607486,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21590.0,0.0,0.0,21034.1,0.0,0.0,1,7,5.0,3,0.0 +10631,14948,2620.751594840683,57.0,111,0.0,37,3,3.0,5.0,3.0,0.0,0.0,0.0,0.0,10.0,0.0,110192.45,0.0,127940.0,2,10,8.0,4,3.0 +10632,14950,4020.683716373545,31.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,18.0,0.0,20203.5,0.0,21000.0,3,10,8.0,1,1.0 +10633,14951,1915.6238197211767,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16730.0,0.0,0.0,17658.2,0.0,0.0,1,4,4.0,1,0.0 +10634,14953,3587.1483064787194,85.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28620.0,0.0,0.0,23912.1,0.0,0.0,1,1,3.0,1,0.0 +10635,14955,2201.6984458641796,71.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16730.0,0.0,0.0,16694.95,0.0,0.0,5,0,0.0,1,0.0 +10636,14957,3046.101234810846,43.0,112,0.0,62,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44220.25,0.0,43200.0,3,10,4.0,4,2.0 +10637,14958,1673.4031087083579,41.0,221,20600.0,63,2.0,0.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46006.65,0.0,24070.0,2,1,3.0,4,2.0 +10638,14959,1337.0074210047458,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45100.0,115.0,0.0,41977.75,0.0,0.0,1,7,5.0,3,0.0 +10639,14960,3285.286980128814,43.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,4041.0,0.0,32251.4,0.0,29240.0,3,9,7.0,1,1.0 +10640,14961,1984.1499176447664,70.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25800.0,0.0,0.0,25501.5,0.0,0.0,5,5,4.0,3,0.0 +10641,14962,1471.553906720822,65.0,400,1320.0,72,1.0,0.0,2.0,1.5,0.0,0.0,0.0,24840.0,0.0,0.0,39682.35,0.0,25640.0,1,0,1.0,3,1.0 +10642,14963,1532.1505743561063,65.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10260.0,0.0,0.0,9710.55,0.0,0.0,1,6,5.0,1,0.0 +10643,14964,3706.134425668571,27.0,112,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36503.1,0.0,28830.0,3,10,4.0,3,2.0 +10644,14965,1257.8366985509742,58.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23027.95,0.0,25310.0,1,7,5.0,1,1.0 +10645,14966,2641.5467322908353,64.0,111,8150.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,21320.0,0.0,0.0,28172.75,0.0,0.0,2,6,4.0,3,1.0 +10646,14969,899.8030883761138,42.0,111,0.0,37,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,43802.35,0.0,35390.0,1,9,7.0,2,1.0 +10647,14970,2123.716350919694,62.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,236.0,0.0,111024.26925014876,0.0,62440.0,1,10,8.0,3,2.0 +10648,14972,847.787644578333,25.0,111,0.0,85,0.0,0.0,2.0,1.3,0.0,8030.0,0.0,0.0,0.0,0.0,13872.05,0.0,0.0,3,6,4.0,2,0.0 +10649,14973,2264.740956287808,65.0,112,1050.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31940.0,0.0,0.0,38253.2,0.0,7440.0,1,9,0.0,3,0.0 +10650,14974,2617.030437727325,60.0,112,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,16510.0,124.0,0.0,34333.5,0.0,21960.0,1,9,2.0,3,2.0 +10651,14977,2222.5064250981773,51.0,111,2060.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46922.15,0.0,48450.0,1,8,7.0,2,2.0 +10652,14978,2727.324332172108,49.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16444.5,0.0,18180.0,2,8,6.0,1,1.0 +10653,14980,2339.51563144068,46.0,120,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23624.0,0.0,19330.0,1,0,1.0,1,1.0 +10654,14981,2775.46294361636,56.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13513.65,0.0,14280.0,1,10,8.0,1,1.0 +10655,14982,4085.747997747094,27.0,111,8160.0,35,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27870.15,0.0,22090.0,2,9,7.0,3,2.0 +10656,14983,1818.3547470037067,69.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,53200.0,0.0,0.0,48752.95,0.0,0.0,1,0,1.0,3,0.0 +10657,14984,2456.667644562691,61.0,112,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41474.3,0.0,44160.0,1,6,0.0,3,2.0 +10658,14985,2456.3212029783817,48.0,211,14650.0,64,2.0,1.0,3.0,2.0,0.0,0.0,0.0,2410.0,276.0,0.0,43097.55,0.0,23130.0,3,1,3.0,4,2.0 +10659,14991,1821.210589889596,68.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35410.0,0.0,0.0,33828.55,0.0,0.0,1,0,0.0,3,0.0 +10660,14992,1537.8972439936904,50.0,111,2450.0,67,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58252.0,0.0,57840.0,5,9,7.0,4,3.0 +10661,14993,1845.119493156445,72.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23850.0,0.0,0.0,22433.65,0.0,0.0,3,0,1.0,1,0.0 +10662,14994,2319.0495161771046,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24260.0,0.0,0.0,23803.6,0.0,0.0,3,7,5.0,1,0.0 +10663,14996,2638.95031053554,21.0,112,7080.0,67,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14877.05,0.0,4740.0,3,9,3.0,1,1.0 +10664,14997,803.109792002887,44.0,111,0.0,33,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,11.0,0.0,66548.85,0.0,48720.0,2,8,7.0,2,1.0 +10665,14998,1350.6302492705972,53.0,112,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32251.85,0.0,31430.0,2,10,1.0,1,1.0 +10666,14999,3153.6003689967656,41.0,111,8410.0,85,0.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,33814.65,0.0,13250.0,3,8,7.0,4,0.0 +10667,15000,1808.694952304157,77.0,111,0.0,72,0.0,0.0,2.0,1.5,9720.0,0.0,4180.0,10720.0,0.0,0.0,27380.0,0.0,0.0,3,6,4.0,3,0.0 +10668,15001,4635.250764901914,60.0,111,0.0,75,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,10823.25,0.0,0.0,1,10,8.0,1,0.0 +10669,15002,3620.1879934141743,39.0,211,470.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52768.4,0.0,52700.0,2,1,3.0,4,2.0 +10670,15004,2835.139263453955,77.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31760.0,0.0,0.0,27855.9,0.0,0.0,1,8,7.0,1,0.0 +10671,15005,3555.621735971977,47.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,67094.4,0.0,0.0,3,9,7.0,2,1.0 +10672,15006,1753.3289588144269,23.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37399.1,1200.0,34760.0,3,7,5.0,2,2.0 +10673,15007,3102.583678420781,35.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,91399.6,0.0,39750.0,2,9,7.0,4,2.0 +10674,15009,1952.4961413889164,93.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20270.0,0.0,0.0,19615.55,0.0,0.0,1,7,5.0,1,0.0 +10675,15010,2018.853515117546,61.0,111,10090.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12090.0,0.0,0.0,25143.2,0.0,3490.0,1,6,4.0,3,1.0 +10676,15011,1779.544505835332,53.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21128.3,0.0,21920.0,2,7,0.0,1,1.0 +10677,15012,3051.443318176554,52.0,400,0.0,21,2.0,2.0,4.0,2.5,0.0,3230.0,0.0,0.0,0.0,0.0,14424.8,4100.0,0.0,1,0,0.0,4,2.0 +10678,15013,685.1534591401244,44.0,111,6730.0,63,1.0,0.0,3.0,1.8,0.0,5930.0,0.0,0.0,0.0,0.0,19780.0,0.0,0.0,3,8,7.0,4,1.0 +10679,15014,2657.2320779789793,60.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22370.0,12482.0,0.0,88804.75,0.0,49120.0,1,10,8.0,3,1.0 +10680,15015,638.0702715890193,33.0,111,290.0,68,1.0,0.0,4.0,2.3,0.0,3260.0,0.0,0.0,0.0,0.0,24026.0,690.0,2010.0,3,7,5.0,2,1.0 +10681,15017,3168.7789216472925,24.0,111,8310.0,62,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,8377.0,0.0,0.0,3,7,4.0,1,1.0 +10682,15018,2090.460194869913,39.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,80337.1,0.0,91740.0,2,9,3.0,4,2.0 +10683,15019,1941.1875106810664,50.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30754.55,0.0,19450.0,1,10,8.0,3,2.0 +10684,15020,1235.3631089665512,53.0,211,0.0,21,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,49007.45,0.0,49760.0,1,2,3.0,4,2.0 +10685,15021,2385.7681388434444,34.0,112,0.0,64,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,24280.95,1480.0,19660.0,3,9,3.0,4,1.0 +10686,15023,2410.1081107326986,82.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22010.0,180.0,0.0,29902.35,0.0,0.0,1,6,5.0,3,0.0 +10687,15024,1301.9523310690493,49.0,111,5950.0,53,2.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,37094.35,0.0,14630.0,3,8,7.0,4,2.0 +10688,15025,3219.0173496999428,34.0,111,0.0,67,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8892.0,0.0,0.0,3,4,4.0,1,1.0 +10689,15026,1356.6876043509099,67.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,50800.0,0.0,0.0,58284.0,0.0,18110.0,1,7,5.0,2,1.0 +10690,15028,3624.171706601239,81.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19850.0,101.0,0.0,21004.95,0.0,0.0,1,0,0.0,5,0.0 +10691,15029,2364.9364693434786,68.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16340.0,0.0,0.0,17341.9,0.0,0.0,3,9,3.0,1,0.0 +10692,15030,2080.247883117967,48.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56745.35,0.0,59990.0,2,7,0.0,4,2.0 +10693,15031,2496.581240389972,22.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16691.85,400.0,15770.0,3,8,7.0,1,1.0 +10694,15032,1768.458307187209,65.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21420.0,0.0,0.0,37025.3,0.0,23430.0,1,8,1.0,1,0.0 +10695,15033,2578.9301462148123,28.0,111,5170.0,56,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24233.8,0.0,18140.0,3,8,6.0,3,2.0 +10696,15036,2403.4965579369446,35.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48945.65,0.0,54840.0,2,10,8.0,3,2.0 +10697,15039,1992.607281351953,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59920.0,0.0,0.0,60046.0,0.0,0.0,3,9,7.0,3,0.0 +10698,15040,1677.6925950566476,78.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,46660.0,0.0,0.0,43032.2,0.0,0.0,1,10,8.0,3,0.0 +10699,15041,1318.7369792441482,71.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19630.0,5571.0,0.0,24922.139811400142,0.0,0.0,1,0,0.0,3,0.0 +10700,15042,1280.4103090636897,59.0,111,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,86491.97996112639,0.0,87410.0,1,8,7.0,3,1.0 +10701,15043,623.8196902760725,44.0,111,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,21588.9,0.0,4460.0,3,9,7.0,2,1.0 +10702,15045,1499.9994090846085,48.0,111,0.0,85,0.0,0.0,4.0,2.1,0.0,7650.0,0.0,0.0,0.0,0.0,21490.0,0.0,0.0,3,7,5.0,2,0.0 +10703,15048,4183.9672653263515,31.0,111,5250.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22203.45,0.0,18750.0,2,10,8.0,1,1.0 +10704,15051,2784.286019248852,81.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31410.0,0.0,0.0,29296.6,0.0,0.0,1,6,4.0,3,0.0 +10705,15054,6638.088610219797,36.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,35036.45,0.0,41320.0,3,10,8.0,1,1.0 +10706,15057,3069.88763113608,27.0,111,8010.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28182.75,0.0,6220.0,3,4,4.0,3,2.0 +10707,15058,6293.448292676317,27.0,111,2130.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20707.7,0.0,13630.0,3,10,8.0,1,1.0 +10708,15059,2686.8721133586846,36.0,111,0.0,53,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,24449.65,3400.0,14140.0,3,10,8.0,4,1.0 +10709,15060,1420.5725732125686,79.0,400,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19240.0,0.0,0.0,24466.0,0.0,0.0,1,0,0.0,3,0.0 +10710,15061,719.7613566931743,36.0,111,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24743.1,0.0,21000.0,3,9,7.0,2,1.0 +10711,15062,2028.3068765940793,48.0,112,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31789.3,0.0,34150.0,2,8,1.0,3,2.0 +10712,15065,1464.5798999146896,64.0,120,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37930.0,3535.0,0.0,38419.45,0.0,0.0,1,0,0.0,3,0.0 +10713,15066,2839.710980460843,70.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27420.0,0.0,0.0,26084.9,0.0,0.0,1,1,3.0,3,0.0 +10714,15067,1708.8238589858208,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29710.0,0.0,0.0,29165.85,0.0,0.0,1,7,5.0,3,0.0 +10715,15068,1552.0038365670687,60.0,111,0.0,67,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,34217.0,0.0,34810.0,2,10,8.0,4,2.0 +10716,15072,2054.0747501005744,59.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,12670.0,0.0,0.0,65430.472876603075,0.0,48370.0,1,9,7.0,3,0.0 +10717,15073,1755.7936924503051,44.0,300,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,58574.85,0.0,61430.0,2,0,0.0,4,2.0 +10718,15074,1940.2798095855394,53.0,111,0.0,53,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45024.0,0.0,46700.0,3,9,7.0,4,2.0 +10719,15076,3532.9347339272235,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32760.0,0.0,0.0,28508.8,0.0,0.0,1,10,8.0,1,0.0 +10720,15077,2118.520025998708,61.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43100.0,0.0,0.0,41683.75,0.0,0.0,1,0,0.0,3,0.0 +10721,15078,1887.8605167276635,72.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,87220.0,0.0,0.0,65134.71735874616,0.0,0.0,1,9,7.0,3,0.0 +10722,15079,2191.6070124487073,69.0,111,34610.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,59770.0,3185.0,0.0,80864.0,0.0,0.0,1,9,7.0,3,1.0 +10723,15080,2009.2857623217417,65.0,111,0.0,43,2.0,0.0,2.0,1.5,0.0,0.0,0.0,54830.0,0.0,0.0,53982.05,0.0,6930.0,1,9,7.0,3,2.0 +10724,15081,2111.0724525992073,63.0,111,0.0,78,0.0,0.0,1.0,1.0,1360.0,0.0,1850.0,7690.0,0.0,0.0,13804.0,0.0,0.0,3,8,7.0,1,0.0 +10725,15082,997.5819307648891,37.0,111,0.0,42,1.0,0.0,3.0,1.6,0.0,7170.0,0.0,0.0,0.0,0.0,14213.25,0.0,0.0,3,10,8.0,2,1.0 +10726,15083,1547.0634246831016,58.0,112,0.0,33,1.0,0.0,2.0,1.5,0.0,0.0,0.0,25490.0,0.0,0.0,29683.25,0.0,5680.0,1,10,0.0,3,1.0 +10727,15084,955.8847897197896,27.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,5690.0,0.0,0.0,0.0,0.0,21780.0,0.0,0.0,3,9,7.0,2,0.0 +10728,15085,3559.450788491742,86.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59240.0,11774.0,0.0,66363.5354508391,0.0,0.0,1,10,8.0,3,0.0 +10729,15086,2727.740796348054,65.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14040.0,0.0,0.0,12415.0,0.0,0.0,1,9,7.0,2,0.0 +10730,15087,1781.1378722956342,67.0,111,4050.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28320.0,161.0,0.0,30199.75,0.0,0.0,1,10,8.0,1,0.0 +10731,15089,3791.3896738796147,36.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39916.55,0.0,23440.0,3,10,8.0,4,2.0 +10732,15090,5707.458892007504,82.0,211,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30000.0,0.0,0.0,26178.57494587854,0.0,0.0,1,2,3.0,3,0.0 +10733,15091,1924.0570461872887,78.0,120,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18330.0,0.0,0.0,17361.85,0.0,0.0,1,0,1.0,1,0.0 +10734,15092,2906.401952245998,66.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34740.0,0.0,0.0,34754.05,0.0,0.0,1,8,0.0,3,0.0 +10735,15093,2064.562964139338,48.0,400,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,20953.6,0.0,0.0,1,0,0.0,4,2.0 +10736,15095,3271.3040655863556,49.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32890.05,0.0,34750.0,1,7,5.0,1,1.0 +10737,15096,3826.527655052524,52.0,300,0.0,21,1.0,1.0,1.0,1.0,0.0,5730.0,0.0,0.0,0.0,0.0,5706.6,0.0,0.0,1,0,0.0,1,1.0 +10738,15097,3352.125006213321,51.0,111,10010.0,64,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39080.1,0.0,31100.0,3,10,8.0,4,3.0 +10739,15099,537.4024226084574,39.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26213.45,2970.0,14320.0,3,8,7.0,2,1.0 +10740,15100,2115.504391761465,48.0,111,1260.0,63,2.0,1.0,5.0,2.6,0.0,11590.0,0.0,0.0,0.0,0.0,31006.0,0.0,5090.0,3,9,7.0,4,2.0 +10741,15101,2041.8782578884523,47.0,300,0.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,72768.05,0.0,67770.0,2,0,1.0,4,2.0 +10742,15102,2447.7120514966423,23.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,14316.0,0.0,0.0,3,9,7.0,3,0.0 +10743,15103,1939.4948246978265,32.0,300,12640.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36109.95,0.0,10240.0,2,0,0.0,4,2.0 +10744,15105,759.0336571556629,56.0,111,0.0,78,0.0,0.0,3.0,1.8,0.0,6070.0,0.0,0.0,0.0,0.0,15584.0,0.0,0.0,3,8,6.0,2,0.0 +10745,15106,2294.8098202477217,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,139450.0,15467.0,0.0,146877.95706554077,0.0,0.0,1,10,8.0,3,0.0 +10746,15107,2030.732875034438,47.0,112,0.0,13,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,168.0,0.0,41915.9,0.0,0.0,1,8,0.0,4,2.0 +10747,15108,6842.508306143383,47.0,111,0.0,62,1.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,9422.0,0.0,0.0,3,10,8.0,1,1.0 +10748,15109,2060.426346210315,31.0,112,0.0,68,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,34609.15,410.0,27560.0,2,9,0.0,4,2.0 +10749,15110,2528.344253091067,48.0,111,1160.0,64,3,1.0,7.0,3.6,0.0,0.0,0.0,0.0,0.0,0.0,27159.0,3570.0,18210.0,3,9,7.0,4,3.0 +10750,15111,2177.8554089181957,63.0,300,11860.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39110.0,82.0,0.0,61483.45,0.0,0.0,1,0,1.0,3,0.0 +10751,15112,2723.1177594085616,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22760.0,0.0,0.0,25176.1,0.0,0.0,5,7,5.0,1,0.0 +10752,15114,1263.3590584259857,74.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23150.0,15.0,0.0,22348.0,0.0,0.0,1,2,3.0,1,0.0 +10753,15115,2643.2417379736535,46.0,111,0.0,52,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40230.4,650.0,42260.0,3,8,7.0,4,3.0 +10754,15116,1870.5236905119637,52.0,111,0.0,22,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,78.0,0.0,48647.394698693286,0.0,86180.0,1,8,7.0,4,2.0 +10755,15117,1670.6969999140306,51.0,112,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,724.0,0.0,53602.2,0.0,55700.0,1,9,1.0,4,2.0 +10756,15118,2199.8569674363,69.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31450.0,5919.0,0.0,37641.9,0.0,0.0,1,4,4.0,1,0.0 +10757,15119,2852.250217798627,59.0,111,0.0,77,1.0,0.0,2.0,1.5,1300.0,0.0,0.0,5320.0,0.0,0.0,22769.0,1120.0,12090.0,3,9,7.0,2,1.0 +10758,15120,2279.0126661734666,76.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14220.0,0.0,0.0,13950.0,0.0,0.0,1,0,0.0,1,0.0 +10759,15121,4243.834053269211,41.0,111,32370.0,22,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,73.0,0.0,36475.15,0.0,1440.0,1,10,8.0,4,1.0 +10760,15122,1502.613782451383,70.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,43310.0,242.0,0.0,38060.8,0.0,0.0,1,7,5.0,1,0.0 +10761,15123,779.3299543959217,36.0,111,0.0,46,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,202.0,0.0,29064.05,620.0,23250.0,2,9,7.0,2,1.0 +10762,15125,2594.250565206784,53.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21595.0,0.0,23130.0,3,9,7.0,1,1.0 +10763,15126,2153.812026721932,67.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26860.0,0.0,0.0,23574.25,0.0,0.0,1,9,1.0,1,0.0 +10764,15129,1531.7160199557777,91.0,221,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34300.0,0.0,0.0,40820.45,0.0,0.0,5,1,2.0,3,0.0 +10765,15131,819.1170193565212,56.0,111,0.0,46,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,12654.9,2440.0,8670.0,3,7,5.0,2,1.0 +10766,15132,4659.401414070457,62.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,25820.0,0.0,0.0,22862.6,0.0,0.0,1,6,4.0,1,1.0 +10767,15133,1559.0743443068106,69.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9520.0,0.0,0.0,11068.0,0.0,0.0,3,1,2.0,1,0.0 +10768,15134,2210.5807126326727,45.0,120,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48777.45,0.0,53360.0,2,0,0.0,4,2.0 +10769,15136,3446.531853504975,63.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41450.0,0.0,0.0,36146.65,0.0,0.0,1,8,1.0,1,0.0 +10770,15137,901.510994198888,49.0,111,0.0,85,0.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,9,7.0,4,0.0 +10771,15138,3736.0568813726813,38.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3661.9,0.0,0.0,3,10,8.0,1,1.0 +10772,15139,1365.2435866522192,56.0,112,12840.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21927.45,0.0,8280.0,1,8,0.0,3,2.0 +10773,15140,2305.4414939620306,59.0,111,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,94103.8775,0.0,39470.0,2,9,7.0,4,2.0 +10774,15141,2868.4143288631294,59.0,111,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14360.0,0.0,0.0,30060.95,0.0,19600.0,1,10,8.0,3,1.0 +10775,15142,2743.540013180422,36.0,300,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44386.95,0.0,43520.0,2,0,0.0,4,2.0 +10776,15143,919.965637398846,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,7710.0,0.0,18210.0,0.0,0.0,29277.05,1510.0,0.0,3,8,6.0,3,0.0 +10777,15144,2209.296348134869,43.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58376.7,0.0,59670.0,2,6,0.0,4,2.0 +10778,15146,1976.6758932558585,69.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25910.0,0.0,0.0,25746.1,0.0,0.0,3,8,7.0,3,0.0 +10779,15147,4048.104831225262,42.0,111,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27429.65,0.0,36380.0,1,10,8.0,1,1.0 +10780,15149,2091.7584071678825,63.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33040.0,0.0,0.0,31598.65,0.0,0.0,1,9,7.0,3,0.0 +10781,15150,2293.6114270175517,76.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,40060.0,0.0,0.0,40444.05,0.0,10800.0,2,10,8.0,1,1.0 +10782,15151,2140.4325739803076,46.0,111,3520.0,21,3,3.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,69938.85,120.0,66370.0,3,6,5.0,4,3.0 +10783,15152,3429.72050579032,34.0,111,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31265.9,0.0,34020.0,2,10,8.0,1,1.0 +10784,15155,1334.8124284232774,43.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22433.7,0.0,19920.0,3,6,4.0,2,2.0 +10785,15156,4441.351763657285,63.0,120,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17250.0,0.0,0.0,16209.25,0.0,0.0,2,0,0.0,1,0.0 +10786,15157,2381.4242095194477,35.0,300,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44795.85,0.0,34670.0,2,0,0.0,4,2.0 +10787,15158,3530.459836709385,30.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,91.0,0.0,69923.2,0.0,69010.0,3,6,5.0,4,2.0 +10788,15160,3152.689112830364,95.0,222,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25130.0,0.0,0.0,23912.45,0.0,0.0,1,1,0.0,1,0.0 +10789,15161,2554.0207353131555,59.0,120,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26660.4,2700.0,0.0,3,0,1.0,1,1.0 +10790,15162,208.81274722588537,45.0,400,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15630.95,2730.0,1410.0,5,0,0.0,2,1.0 +10791,15163,2475.824396111133,32.0,221,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40479.75,0.0,40580.0,2,1,3.0,4,2.0 +10792,15164,2290.719407080781,36.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38415.55,0.0,39740.0,2,8,1.0,4,2.0 +10793,15165,2593.283177454242,59.0,111,0.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,63041.15,0.0,71530.0,5,9,7.0,3,2.0 +10794,15166,4677.517021275039,24.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57158.3,0.0,65560.0,3,8,6.0,3,2.0 +10795,15168,1397.2528702737636,75.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52280.0,421.0,0.0,51378.8,0.0,0.0,1,10,5.0,3,0.0 +10796,15169,1681.8390186011843,50.0,400,670.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,14150.0,0.0,0.0,52590.75,0.0,40820.0,2,0,0.0,3,2.0 +10797,15171,3005.782589946032,60.0,112,3440.0,78,2.0,2.0,3.0,2.0,0.0,0.0,0.0,2810.0,0.0,0.0,33774.3,730.0,27390.0,1,3,0.0,4,2.0 +10798,15172,1922.6262759975716,54.0,112,0.0,63,3,2.0,4.0,2.3,0.0,0.0,0.0,0.0,255.0,0.0,37079.75,0.0,39250.0,2,9,1.0,4,3.0 +10799,15174,944.6245665919178,68.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18100.0,0.0,0.0,17191.75,0.0,0.0,1,7,5.0,1,0.0 +10800,15175,2157.0953288711194,87.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35060.0,769.0,0.0,34613.9,0.0,0.0,5,9,7.0,5,0.0 +10801,15177,2818.6013610000177,28.0,300,0.0,52,2.0,2.0,3.0,2.0,0.0,20490.0,0.0,0.0,0.0,0.0,42238.55,0.0,20630.0,3,0,1.0,2,2.0 +10802,15179,1466.0716337533418,71.0,112,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,60380.0,0.0,0.0,68889.35,0.0,0.0,1,9,1.0,3,1.0 +10803,15180,4522.660459907611,60.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,3580.0,0.0,0.0,0.0,0.0,10215.05,0.0,6620.0,3,9,7.0,1,1.0 +10804,15181,1759.175883356704,58.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36452.15,0.0,39320.0,2,8,7.0,3,2.0 +10805,15182,2426.363043483802,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,57050.0,0.0,0.0,62345.8,0.0,0.0,1,6,4.0,3,0.0 +10806,15183,741.362065960451,53.0,111,0.0,38,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,54950.35,0.0,54710.0,2,9,7.0,2,2.0 +10807,15184,4340.8659801118265,87.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14410.0,0.0,0.0,15754.0,0.0,0.0,3,10,8.0,1,0.0 +10808,15185,5889.240061833443,67.0,111,0.0,75,1.0,0.0,3.0,2.0,0.0,9700.0,1050.0,26980.0,0.0,0.0,41642.15,510.0,2540.0,3,8,7.0,5,1.0 +10809,15186,2992.9937530335205,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16620.0,0.0,0.0,16620.0,0.0,0.0,3,9,7.0,1,0.0 +10810,15188,1074.493177183958,36.0,111,0.0,85,0.0,0.0,3.0,1.6,10980.0,0.0,0.0,0.0,0.0,0.0,21316.0,0.0,0.0,3,9,7.0,2,0.0 +10811,15189,2845.846513620418,52.0,120,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11053.0,0.0,11230.0,2,0,0.0,1,1.0 +10812,15190,931.9179531944396,36.0,120,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,56835.0,3150.0,53010.0,2,0,1.0,4,2.0 +10813,15191,3157.051422897874,51.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15390.0,0.0,0.0,33667.8,0.0,18680.0,1,10,8.0,5,1.0 +10814,15195,565.9022751304022,21.0,112,2230.0,69,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,28910.75,60.0,26910.0,3,6,1.0,3,2.0 +10815,15196,1961.682728615706,55.0,112,70.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21703.65,0.0,22180.0,1,8,0.0,3,2.0 +10816,15197,2391.455838078998,77.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10870.0,0.0,0.0,9391.9,0.0,0.0,1,5,4.0,1,0.0 +10817,15198,765.8074520267152,41.0,111,0.0,38,1.0,1.0,3.0,1.8,0.0,0.0,0.0,2890.0,0.0,0.0,35160.0,0.0,28130.0,1,10,8.0,2,1.0 +10818,15200,1554.1969862598917,58.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8090.0,0.0,0.0,26230.0,0.0,18140.0,3,8,6.0,3,1.0 +10819,15201,1727.1112037615003,68.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16540.0,0.0,0.0,28067.668043045414,0.0,12450.0,1,7,4.0,3,1.0 +10820,15202,1537.3174366083997,43.0,112,0.0,37,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,97616.0,0.0,94990.0,1,10,0.0,4,2.0 +10821,15204,502.5591960858014,37.0,111,0.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51860.05,0.0,49740.0,2,9,7.0,4,2.0 +10822,15205,3070.589146653539,25.0,300,0.0,62,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50231.6,0.0,46740.0,3,0,1.0,4,2.0 +10823,15206,1609.4865380346055,41.0,111,0.0,33,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,689.0,0.0,89853.8,0.0,86590.0,2,7,5.0,4,2.0 +10824,15207,1709.0532840272408,60.0,112,58530.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,49881.45,0.0,0.0,1,10,2.0,3,0.0 +10825,15208,3034.4293995822118,45.0,111,560.0,63,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,41592.25,0.0,43420.0,2,7,5.0,4,3.0 +10826,15209,953.162667781887,63.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31700.0,0.0,0.0,30287.8,0.0,2050.0,3,4,3.0,3,0.0 +10827,15210,2303.2409370582395,36.0,112,0.0,22,2.0,0.0,5.0,2.4,0.0,8590.0,0.0,0.0,0.0,0.0,26340.0,1480.0,2850.0,3,7,0.0,4,2.0 +10828,15213,6540.01572928357,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,98870.0,42.0,0.0,89955.15,0.0,0.0,1,8,6.0,3,0.0 +10829,15214,2121.577578663917,77.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20100.0,0.0,0.0,20152.5,0.0,0.0,1,0,0.0,1,0.0 +10830,15215,1615.1331874686311,54.0,400,5140.0,69,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21289.6,40.0,15360.0,3,0,0.0,3,2.0 +10831,15216,2443.8018765551055,42.0,112,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18444.6,0.0,20720.0,2,4,0.0,1,1.0 +10832,15217,2836.2136575956,45.0,211,1250.0,67,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32417.65,1980.0,25660.0,3,1,3.0,4,2.0 +10833,15218,3875.5916422797854,25.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19793.1,0.0,19930.0,3,9,7.0,1,1.0 +10834,15219,1809.3884862172101,59.0,112,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22380.0,0.0,0.0,52856.46270503461,0.0,34060.0,1,8,0.0,3,1.0 +10835,15221,2706.7898610392185,61.0,111,5900.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5490.0,0.0,0.0,63926.2,0.0,57920.0,3,6,5.0,3,1.0 +10836,15222,2235.1410161537137,38.0,112,5140.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39577.1,0.0,31260.0,2,9,0.0,4,2.0 +10837,15224,2566.0824070868593,56.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26700.8,0.0,30250.0,3,10,8.0,1,1.0 +10838,15227,2694.2072864890224,62.0,112,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,30040.0,0.0,0.0,34954.05,0.0,0.0,5,7,0.0,3,1.0 +10839,15228,1999.5202629284888,51.0,400,5600.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42059.0,0.0,43130.0,1,0,0.0,3,1.0 +10840,15229,2203.995651112763,53.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46428.65,0.0,51580.0,1,9,7.0,3,2.0 +10841,15230,3758.348768826872,24.0,111,0.0,81,2.0,0.0,2.0,1.5,0.0,8630.0,0.0,0.0,0.0,0.0,13371.0,0.0,0.0,3,8,7.0,3,2.0 +10842,15231,1953.6708396649758,55.0,120,0.0,42,3,3.0,4.0,2.5,0.0,0.0,0.0,12840.0,0.0,0.0,58978.05,0.0,46350.0,2,0,0.0,4,3.0 +10843,15233,1402.5882876127089,41.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60073.2,0.0,60810.0,3,10,8.0,4,2.0 +10844,15234,2953.7171138047806,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12250.0,0.0,0.0,13037.0,0.0,0.0,3,8,7.0,1,0.0 +10845,15235,3349.78416244141,29.0,400,3680.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,1.0,0.0,47234.0,0.0,45830.0,3,0,0.0,3,1.0 +10846,15236,2150.294466476289,55.0,111,520.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11400.05,0.0,10940.0,3,8,7.0,1,1.0 +10847,15237,1048.0904436193919,32.0,111,0.0,46,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,36156.35,0.0,15490.0,3,9,7.0,2,1.0 +10848,15238,1913.3353593480972,46.0,112,0.0,65,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,43699.3,0.0,44160.0,3,10,5.0,4,2.0 +10849,15240,2362.854620880622,54.0,111,5830.0,55,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12033.0,1080.0,5240.0,3,7,6.0,1,1.0 +10850,15241,924.6252432241438,40.0,111,0.0,85,0.0,0.0,4.0,2.3,0.0,3780.0,0.0,0.0,0.0,0.0,20022.0,0.0,0.0,3,8,7.0,2,0.0 +10851,15242,2252.155917121633,62.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22810.0,0.0,0.0,29883.5,0.0,6980.0,1,0,0.0,3,0.0 +10852,15245,1737.9391569449485,33.0,112,5110.0,47,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,60811.7,0.0,60990.0,2,8,2.0,4,2.0 +10853,15246,1981.1834110779143,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59090.0,0.0,0.0,57160.2,0.0,0.0,1,9,7.0,3,0.0 +10854,15247,2177.938192832712,37.0,300,7270.0,33,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,40673.8,0.0,31990.0,2,0,0.0,4,2.0 +10855,15248,2176.2307048984258,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,88180.0,0.0,0.0,82429.8,0.0,0.0,1,10,8.0,3,0.0 +10856,15250,1858.1720647628456,38.0,300,3030.0,62,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,44952.2,0.0,34120.0,3,0,0.0,4,2.0 +10857,15251,2013.40894154291,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23310.0,0.0,0.0,22279.75,0.0,0.0,1,8,6.0,3,0.0 +10858,15252,2416.318903156734,31.0,111,0.0,34,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,50091.9,0.0,45490.0,2,9,7.0,4,2.0 +10859,15253,5855.376543486983,68.0,112,9960.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,50910.0,0.0,0.0,50711.65,0.0,0.0,1,7,1.0,2,1.0 +10860,15254,1705.1654134328637,45.0,112,0.0,38,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,92907.8,0.0,101930.0,1,9,2.0,4,2.0 +10861,15255,1347.0570323414456,73.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29200.0,2376.0,0.0,43664.55,0.0,0.0,1,7,0.0,3,0.0 +10862,15256,874.2372023139209,33.0,111,0.0,67,1.0,1.0,2.0,1.3,0.0,0.0,0.0,250.0,0.0,0.0,17082.55,0.0,14950.0,3,8,7.0,2,1.0 +10863,15257,1939.2557177564772,46.0,300,0.0,13,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,57737.8,0.0,240.0,2,0,0.0,4,2.0 +10864,15258,12390.08227183443,27.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26864.65,0.0,29950.0,2,8,6.0,1,1.0 +10865,15259,3159.4835774600524,50.0,111,10250.0,21,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34132.05,0.0,0.0,2,10,8.0,1,1.0 +10866,15260,1694.4956162276308,53.0,111,0.0,48,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,50400.15,0.0,48350.0,1,8,6.0,4,1.0 +10867,15261,1603.168185312215,56.0,120,1580.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,16210.0,0.0,0.0,39481.5,0.0,22030.0,1,0,0.0,3,1.0 +10868,15262,2801.14769393117,37.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,56015.45,0.0,49770.0,2,9,7.0,4,2.0 +10869,15263,2495.4911224675657,40.0,120,0.0,23,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,458.0,0.0,143762.2,0.0,178080.0,2,0,1.0,4,2.0 +10870,15264,3659.710874148012,26.0,300,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26245.9,0.0,28810.0,3,0,0.0,1,1.0 +10871,15266,2370.1158959939103,62.0,400,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28550.0,0.0,0.0,43916.8,0.0,12890.0,2,0,0.0,3,1.0 +10872,15267,1492.4498455855744,57.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,111226.35,0.0,136830.0,1,10,0.0,3,2.0 +10873,15269,978.6623379154355,32.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,5900.0,0.0,0.0,0.0,0.0,25492.2,280.0,0.0,3,9,7.0,2,0.0 +10874,15270,1887.2727447560226,77.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47090.0,316.0,0.0,47107.13383192597,0.0,0.0,5,0,0.0,3,0.0 +10875,15271,2677.4507675249674,46.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11733.05,0.0,11930.0,3,10,8.0,3,2.0 +10876,15274,2717.090005880916,36.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17640.8,0.0,17640.0,3,6,4.0,1,1.0 +10877,15275,2341.1113330675785,89.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25890.0,0.0,0.0,22679.191231057488,0.0,0.0,1,6,4.0,1,0.0 +10878,15276,2605.402923684446,42.0,112,0.0,46,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,38081.05,0.0,25100.0,2,8,0.0,2,1.0 +10879,15277,2426.3622787359877,26.0,111,0.0,69,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,23856.2,0.0,13180.0,3,5,4.0,4,2.0 +10880,15279,2605.4892660589517,37.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28098.95,0.0,30460.0,3,6,5.0,2,1.0 +10881,15280,1389.6894840463615,47.0,111,21270.0,34,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,83424.1,0.0,66090.0,2,8,7.0,4,2.0 +10882,15281,3372.376806908434,86.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14800.0,0.0,0.0,14187.55,0.0,0.0,1,6,4.0,1,0.0 +10883,15282,2866.041267759299,42.0,221,1080.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14392.0,0.0,3180.0,2,1,2.0,1,1.0 +10884,15283,3013.3053103424245,41.0,400,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,65274.01321196622,0.0,63090.0,2,0,1.0,4,2.0 +10885,15286,1139.2438934485936,65.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,27160.0,0.0,0.0,27105.4,0.0,1170.0,5,9,7.0,3,1.0 +10886,15287,3547.789698042163,46.0,111,0.0,12,1.0,1.0,3.0,1.8,0.0,12370.0,0.0,0.0,0.0,0.0,33996.7,0.0,0.0,2,6,4.0,5,1.0 +10887,15288,3075.7702465950224,43.0,112,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,56593.75,0.0,23660.0,2,8,0.0,4,2.0 +10888,15289,4524.369311703898,41.0,111,0.0,53,1.0,1.0,1.0,1.0,9170.0,0.0,0.0,0.0,0.0,0.0,28928.0,2740.0,13120.0,3,9,7.0,1,1.0 +10889,15290,1887.4329286316056,53.0,112,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,103.0,0.0,44156.75,0.0,43040.0,5,8,0.0,4,2.0 +10890,15291,4865.491997500476,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,4200.0,0.0,0.0,3,9,7.0,1,0.0 +10891,15292,1795.2421862714846,59.0,112,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,28480.0,0.0,0.0,36462.25,0.0,4820.0,1,8,1.0,3,1.0 +10892,15293,3445.2708319580474,29.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34661.1,0.0,39540.0,3,9,7.0,1,1.0 +10893,15295,2364.2127644887773,70.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19950.0,0.0,0.0,19223.7,0.0,0.0,3,0,0.0,1,0.0 +10894,15297,1887.0042989219435,52.0,111,6190.0,63,2.0,2.0,6.0,3.1,0.0,0.0,0.0,0.0,0.0,0.0,35501.1,0.0,15130.0,2,8,7.0,4,2.0 +10895,15298,1898.017608045036,47.0,112,0.0,11,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,167.0,0.0,-0.0,0.0,0.0,1,7,0.0,2,1.0 +10896,15300,2869.5397428279466,60.0,112,0.0,35,1.0,1.0,2.0,1.5,0.0,0.0,0.0,5840.0,25.0,0.0,33617.0,0.0,28230.0,3,8,1.0,3,1.0 +10897,15301,3629.274926791623,19.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17062.0,890.0,13220.0,3,9,7.0,1,1.0 +10898,15303,1538.0637894336853,51.0,111,380.0,68,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24152.75,0.0,20760.0,3,10,8.0,2,1.0 +10899,15304,1004.1693938395198,67.0,111,610.0,75,2.0,0.0,3.0,2.0,0.0,8290.0,0.0,35430.0,0.0,0.0,54385.75,0.0,7350.0,1,10,8.0,2,2.0 +10900,15305,1813.5463544342824,56.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,34000.0,706.0,0.0,68343.95,0.0,30380.0,1,8,7.0,3,1.0 +10901,15306,2084.3469042543516,35.0,112,0.0,53,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51786.5,0.0,58830.0,1,9,2.0,4,2.0 +10902,15307,3101.714726733425,50.0,111,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,647.0,0.0,107623.35,0.0,186500.0,3,10,8.0,4,2.0 +10903,15308,3065.9403701544857,44.0,111,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,44914.6,0.0,45190.0,2,8,6.0,4,2.0 +10904,15310,763.658984933196,49.0,111,0.0,85,1.0,0.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,114870.4,0.0,108950.0,3,9,7.0,2,1.0 +10905,15312,2911.320825355426,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18290.0,0.0,0.0,17133.5,0.0,0.0,1,7,5.0,1,0.0 +10906,15313,1395.7419213657715,85.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18290.0,0.0,0.0,19212.5,0.0,0.0,1,4,3.0,1,0.0 +10907,15317,1847.146228346729,56.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16805.3,1110.0,15870.0,3,8,7.0,1,1.0 +10908,15318,2376.3222070378715,59.0,400,1650.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20912.55,370.0,16070.0,3,0,0.0,1,1.0 +10909,15319,1538.4472048973864,48.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,23540.0,0.0,0.0,40978.9,0.0,18820.0,1,8,7.0,4,1.0 +10910,15320,2144.427344694248,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7810.0,0.0,0.0,9930.0,0.0,2120.0,3,7,5.0,1,0.0 +10911,15321,2851.8332960877015,82.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21590.0,0.0,0.0,21018.5,0.0,0.0,1,9,1.0,1,0.0 +10912,15322,2451.4334259556545,33.0,300,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,52899.3,0.0,52950.0,2,0,1.0,4,2.0 +10913,15324,1893.1132580339172,65.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25560.0,0.0,0.0,24849.55,0.0,0.0,1,0,0.0,3,0.0 +10914,15325,3417.7573301490274,51.0,111,0.0,68,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19426.0,810.0,15400.0,3,8,6.0,4,2.0 +10915,15327,2032.4557125698307,63.0,400,3950.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,18290.0,0.0,0.0,38148.4,0.0,16350.0,3,0,0.0,3,1.0 +10916,15328,2547.1203939351,86.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16160.0,0.0,0.0,14951.9,0.0,0.0,1,8,6.0,1,0.0 +10917,15330,898.1257047684124,25.0,112,0.0,85,0.0,0.0,2.0,1.3,0.0,8330.0,0.0,0.0,0.0,0.0,8330.0,0.0,0.0,1,9,0.0,2,0.0 +10918,15332,2406.2830170900734,70.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21980.0,0.0,0.0,20733.0,0.0,0.0,1,8,3.0,1,0.0 +10919,15333,2198.1480055289762,79.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38310.0,0.0,0.0,23071.55,0.0,0.0,1,0,1.0,3,0.0 +10920,15335,1637.2112843402253,66.0,111,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,34980.0,0.0,0.0,34519.3,0.0,0.0,1,8,7.0,3,1.0 +10921,15336,2518.2854732262163,58.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17338.05,0.0,16960.0,3,8,6.0,1,1.0 +10922,15337,3490.547924959537,32.0,112,0.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20706.35,0.0,0.0,3,8,2.0,1,1.0 +10923,15338,1753.5739366538985,49.0,221,0.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,617.0,0.0,53336.75,0.0,54080.0,1,1,2.0,4,3.0 +10924,15339,2629.112027007087,29.0,111,5180.0,85,1.0,1.0,4.0,2.1,0.0,1170.0,0.0,0.0,0.0,0.0,25135.0,500.0,7680.0,3,5,4.0,4,1.0 +10925,15340,1892.683815848492,32.0,111,7480.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39077.45,0.0,34390.0,2,9,7.0,3,2.0 +10926,15342,3212.8580943648026,37.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,73376.45,0.0,78780.0,1,10,8.0,4,2.0 +10927,15343,3462.231074460797,27.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18229.75,0.0,18920.0,3,8,6.0,1,1.0 +10928,15344,1235.4568185655432,43.0,111,4110.0,55,1.0,0.0,3.0,1.6,0.0,540.0,0.0,0.0,0.0,0.0,18042.9,0.0,520.0,3,5,4.0,2,1.0 +10929,15346,789.1588701816867,40.0,111,1130.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15664.15,3260.0,6010.0,3,8,6.0,2,1.0 +10930,15347,3261.7179133656396,24.0,111,0.0,55,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36566.6,0.0,38660.0,3,4,4.0,3,2.0 +10931,15348,2077.54886301316,53.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14536.6,0.0,9760.0,3,7,0.0,1,1.0 +10932,15350,858.7208618266832,46.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,23888.5,0.0,22260.0,3,6,4.0,2,1.0 +10933,15351,2144.964179344761,72.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37140.0,0.0,0.0,36061.8,0.0,0.0,1,7,5.0,3,0.0 +10934,15352,3093.6380986428517,53.0,120,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24130.25,0.0,26140.0,2,0,0.0,1,1.0 +10935,15353,2649.918071064489,61.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19120.0,0.0,0.0,18722.85,0.0,0.0,3,9,7.0,3,0.0 +10936,15356,2424.916045441822,78.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15370.0,0.0,0.0,15451.95,0.0,0.0,1,0,0.0,1,0.0 +10937,15357,2925.1356713117148,34.0,120,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,28851.0,28729.6,0.0,0.0,3,0,1.0,1,1.0 +10938,15358,1235.6493514435433,27.0,111,0.0,43,1.0,0.0,2.0,1.3,0.0,5510.0,0.0,0.0,0.0,0.0,15118.0,190.0,500.0,3,8,7.0,2,1.0 +10939,15359,2718.4796473522483,71.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37330.0,0.0,0.0,34053.1,0.0,0.0,1,9,7.0,3,0.0 +10940,15360,4171.535973331007,84.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17270.0,0.0,0.0,17099.15,0.0,0.0,1,10,8.0,1,0.0 +10941,15363,2499.820002018549,55.0,111,0.0,65,1.0,1.0,2.0,1.5,4680.0,0.0,0.0,0.0,0.0,0.0,21260.75,0.0,16880.0,1,9,7.0,3,1.0 +10942,15364,1578.9045255305798,54.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53146.6,0.0,56970.0,1,8,6.0,3,2.0 +10943,15365,2671.740154686904,36.0,300,6000.0,64,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28809.3,0.0,20930.0,2,0,0.0,4,2.0 +10944,15367,562.7206618618852,47.0,111,0.0,42,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,37458.65,0.0,30640.0,3,8,7.0,2,1.0 +10945,15368,801.4497917636215,39.0,111,3070.0,56,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25489.0,0.0,13290.0,5,7,5.0,2,1.0 +10946,15369,2271.0442630103785,77.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17750.0,0.0,0.0,18870.0,0.0,0.0,1,0,0.0,3,0.0 +10947,15370,2370.5845457252776,42.0,112,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,1135.0,0.0,64032.3,0.0,63140.0,3,7,4.0,4,2.0 +10948,15373,3202.259509375445,35.0,300,4120.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32029.25,0.0,29950.0,3,0,0.0,3,2.0 +10949,15374,2196.556884209956,74.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28480.0,0.0,0.0,26313.65,0.0,0.0,1,0,0.0,1,0.0 +10950,15375,2193.4203080908883,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1602.0,0.0,0.0,3,8,7.0,1,0.0 +10951,15376,1593.186367122397,65.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,5950.0,3300.0,588.0,0.0,9502.6,0.0,0.0,1,0,0.0,1,0.0 +10952,15377,2402.310627875867,77.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30390.0,0.0,0.0,29321.5,0.0,0.0,1,0,2.0,3,0.0 +10953,15378,3611.773636081911,32.0,221,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57717.6,0.0,65060.0,2,1,1.0,3,2.0 +10954,15379,2457.126506233459,74.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10650.0,0.0,0.0,10249.6,0.0,0.0,1,4,4.0,1,0.0 +10955,15381,2442.8872737374245,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37760.0,5725.0,0.0,44919.1,0.0,0.0,5,8,6.0,1,0.0 +10956,15382,3008.6612963005173,48.0,111,0.0,22,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,79264.65,0.0,84660.0,3,10,8.0,4,2.0 +10957,15383,2870.498272359893,62.0,112,2420.0,75,3,1.0,4.0,2.5,0.0,12890.0,0.0,31570.0,256.0,0.0,51283.75,0.0,7710.0,1,7,0.0,4,3.0 +10958,15384,2151.5739279448526,35.0,111,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36839.8,0.0,36940.0,3,9,7.0,3,2.0 +10959,15385,1552.8142338054886,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,51240.0,0.0,0.0,45312.139669083976,0.0,0.0,1,9,7.0,3,0.0 +10960,15386,1391.7382539802038,70.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47870.0,475.0,0.0,49423.85,0.0,0.0,1,9,7.0,3,0.0 +10961,15387,1554.490815285834,26.0,111,7070.0,55,1.0,0.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22844.65,960.0,3870.0,3,9,7.0,2,1.0 +10962,15388,1623.066387997777,69.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20010.0,0.0,0.0,22263.5,0.0,0.0,1,0,0.0,3,0.0 +10963,15390,3597.9950000187514,65.0,111,0.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,24240.0,0.0,0.0,38145.15,0.0,15230.0,3,10,8.0,4,1.0 +10964,15392,3492.6020909130357,20.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7589.0,0.0,0.0,3,9,7.0,1,0.0 +10965,15393,2309.2948515856806,46.0,111,0.0,42,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34917.7,1630.0,32530.0,2,8,7.0,4,2.0 +10966,15394,779.6384645084042,40.0,111,0.0,21,1.0,1.0,4.0,1.9,0.0,1520.0,0.0,0.0,0.0,0.0,32524.9,930.0,0.0,3,6,4.0,2,1.0 +10967,15395,1240.9610769049577,68.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38520.0,0.0,0.0,43360.5,0.0,0.0,1,7,5.0,3,0.0 +10968,15397,1993.9262417655566,70.0,111,15290.0,78,1.0,1.0,4.0,2.5,0.0,0.0,0.0,21780.0,0.0,0.0,41420.0,190.0,4160.0,1,9,7.0,4,1.0 +10969,15398,3101.771198367769,83.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24430.0,0.0,0.0,28742.2,0.0,0.0,1,10,8.0,3,0.0 +10970,15399,1285.5624528021344,45.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34138.2,0.0,35460.0,2,9,7.0,2,1.0 +10971,15401,1407.073860257709,52.0,112,930.0,65,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,36828.9,0.0,28240.0,1,8,0.0,4,2.0 +10972,15405,1063.855545647467,23.0,111,0.0,21,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,15126.7,0.0,0.0,3,6,4.0,4,2.0 +10973,15406,2085.0910830520115,52.0,111,0.0,38,1.0,1.0,4.0,2.5,0.0,0.0,0.0,9440.0,1313.0,0.0,58299.45,0.0,53800.0,1,10,8.0,4,1.0 +10974,15407,1739.427454004162,50.0,111,0.0,33,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,1165.0,0.0,151210.1,0.0,137640.0,2,10,8.0,4,2.0 +10975,15408,3194.1157298485123,43.0,112,4620.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34469.55,0.0,29940.0,3,10,4.0,3,2.0 +10976,15410,2092.713068043627,47.0,111,19360.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17287.7,0.0,0.0,3,6,5.0,1,1.0 +10977,15411,1195.7169703935447,41.0,111,0.0,34,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28104.0,0.0,29540.0,3,6,5.0,5,1.0 +10978,15412,2308.991944914392,51.0,112,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,198870.2,0.0,38980.0,2,8,1.0,4,2.0 +10979,15413,1343.2627541256575,69.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,104800.0,0.0,0.0,107571.5,0.0,0.0,1,9,2.0,3,0.0 +10980,15414,3882.439900980604,26.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18544.55,610.0,17300.0,3,9,7.0,1,1.0 +10981,15415,3410.2418217650043,75.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14980.0,0.0,0.0,15105.0,0.0,0.0,3,5,4.0,1,0.0 +10982,15419,3120.2381075460007,57.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22970.0,2500.0,20470.0,3,10,8.0,3,1.0 +10983,15420,1223.3760543833678,75.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,60440.0,11466.0,0.0,77626.5563525173,0.0,0.0,1,9,7.0,3,1.0 +10984,15422,2954.79385355141,59.0,111,0.0,78,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12984.0,0.0,0.0,3,8,7.0,1,0.0 +10985,15424,1594.0749260469217,55.0,112,0.0,37,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,80480.65,0.0,99880.0,2,8,2.0,4,2.0 +10986,15426,1953.3672219441135,32.0,111,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5139.0,0.0,0.0,3,10,8.0,5,1.0 +10987,15427,2817.928577666446,75.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21050.0,0.0,0.0,19496.95,0.0,0.0,1,7,5.0,1,0.0 +10988,15429,2158.6749018924775,55.0,111,5030.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40419.65,0.0,24170.0,1,6,4.0,3,2.0 +10989,15430,900.9003364045763,31.0,111,0.0,55,1.0,0.0,4.0,1.9,0.0,3590.0,0.0,0.0,0.0,0.0,26157.8,870.0,5180.0,3,10,8.0,2,1.0 +10990,15431,1694.3960130386645,61.0,300,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11693.5,0.0,11960.0,1,0,0.0,1,1.0 +10991,15432,2266.3740941138767,53.0,222,0.0,21,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,43325.95,0.0,15550.0,1,1,0.0,4,4.0 +10992,15434,1639.9709289731707,40.0,111,0.0,67,1.0,1.0,2.0,1.3,2220.0,0.0,0.0,0.0,0.0,0.0,7138.0,0.0,0.0,3,7,6.0,2,1.0 +10993,15435,2770.54230233421,61.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13970.0,0.0,0.0,13005.25,0.0,0.0,1,0,1.0,1,0.0 +10994,15437,5664.146387163326,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12150.0,0.0,0.0,12810.0,0.0,0.0,3,7,5.0,1,0.0 +10995,15439,3907.5371417426736,27.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23081.65,0.0,25690.0,2,10,8.0,1,1.0 +10996,15441,6931.155510602826,55.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,5900.0,0.0,0.0,0.0,0.0,5900.0,0.0,0.0,5,10,8.0,1,1.0 +10997,15444,1356.4472476311437,50.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53570.75,0.0,59150.0,3,9,7.0,2,1.0 +10998,15445,3437.1324635328515,28.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18139.0,0.0,18850.0,4,5,4.0,1,1.0 +10999,15446,5066.565775308138,32.0,111,0.0,42,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45652.3,0.0,46300.0,3,9,7.0,4,2.0 +11000,15447,1519.0885988159591,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,65870.0,2243.0,0.0,59532.62449075188,0.0,0.0,5,9,7.0,3,0.0 +11001,15448,4208.324780965725,84.0,221,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11040.0,0.0,0.0,11058.0,0.0,0.0,5,1,1.0,1,0.0 +11002,15450,2978.0112938384004,50.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19549.2,0.0,20660.0,2,7,6.0,1,1.0 +11003,15451,2451.3457016241955,66.0,221,0.0,78,1.0,1.0,3.0,2.0,0.0,0.0,0.0,36220.0,13.0,0.0,44642.2,1050.0,12220.0,2,1,3.0,5,1.0 +11004,15452,2617.831171224649,34.0,111,0.0,38,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55256.55,0.0,58470.0,2,10,8.0,4,2.0 +11005,15453,3655.203867563354,88.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22300.0,0.0,0.0,31167.65,0.0,0.0,3,9,7.0,3,0.0 +11006,15455,1393.8164300726569,72.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37120.0,0.0,0.0,36184.2,0.0,0.0,1,4,4.0,3,0.0 +11007,15456,3907.0200644440683,40.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,68245.95,0.0,66720.0,2,10,8.0,4,2.0 +11008,15457,2661.4170043364893,31.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,56389.6,0.0,60360.0,2,9,7.0,4,2.0 +11009,15458,2011.1737243309626,84.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24650.0,0.0,0.0,23896.3,0.0,0.0,1,8,6.0,3,0.0 +11010,15459,4975.824004752288,44.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24700.1,0.0,27450.0,2,9,7.0,1,1.0 +11011,15462,3159.565295498356,74.0,300,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27270.0,0.0,0.0,25010.85,0.0,0.0,1,0,0.0,1,0.0 +11012,15463,946.6636005818367,66.0,120,0.0,78,1.0,0.0,4.0,2.3,0.0,6810.0,0.0,27300.0,0.0,0.0,41281.9,0.0,0.0,5,0,0.0,5,1.0 +11013,15464,3716.624438222913,46.0,221,0.0,54,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,36520.85,0.0,37060.0,1,1,2.0,2,1.0 +11014,15466,583.8513715892943,57.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,26445.6,0.0,18690.0,3,9,7.0,2,1.0 +11015,15467,1811.8744042517696,46.0,112,0.0,52,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,38795.85,80.0,41320.0,1,9,2.0,4,2.0 +11016,15468,4254.981567348608,36.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,51.0,0.0,43290.0,0.0,46140.0,1,10,8.0,3,2.0 +11017,15469,2070.6703334500608,55.0,111,0.0,47,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60793.2,0.0,64180.0,1,8,7.0,4,3.0 +11018,15470,1697.146157716506,70.0,400,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36850.0,0.0,0.0,34780.0,0.0,0.0,1,0,0.0,3,0.0 +11019,15471,2494.218525187159,82.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23980.0,0.0,0.0,22758.2,0.0,0.0,1,10,2.0,3,0.0 +11020,15473,4132.13488553533,43.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,423.0,0.0,71437.6,0.0,75460.0,1,9,7.0,4,2.0 +11021,15475,1836.7086172255072,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22050.0,0.0,0.0,23859.5,0.0,2440.0,1,9,7.0,3,0.0 +11022,15478,3681.029444699072,36.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28691.45,0.0,33850.0,4,10,8.0,1,1.0 +11023,15479,1524.746508682421,59.0,112,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20860.0,0.0,0.0,37807.269273569735,0.0,20570.0,1,8,0.0,3,1.0 +11024,15481,3030.2807233973745,68.0,112,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10520.0,0.0,48.0,12141.1,0.0,0.0,1,7,4.0,1,0.0 +11025,15482,3243.692932262884,27.0,111,0.0,34,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25344.0,2230.0,20140.0,3,9,7.0,4,2.0 +11026,15484,2342.983089950043,72.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24090.0,0.0,0.0,23661.2,0.0,0.0,1,0,1.0,1,0.0 +11027,15486,2611.7843525313265,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17770.0,0.0,0.0,16611.25,0.0,0.0,1,4,0.0,1,0.0 +11028,15487,2341.0149423421553,52.0,400,11030.0,46,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30521.95,0.0,20570.0,3,0,0.0,3,2.0 +11029,15488,619.9510957440218,39.0,111,0.0,65,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,59852.15,0.0,54540.0,2,8,7.0,4,2.0 +11030,15489,1940.7151604340925,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21870.0,0.0,0.0,21356.6,0.0,0.0,1,8,7.0,1,0.0 +11031,15490,3983.5302105290093,82.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10540.0,0.0,0.0,11334.6,0.0,0.0,1,8,1.0,1,0.0 +11032,15494,3004.280192345044,44.0,120,0.0,13,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1263.9499999999998,0.0,0.0,5,0,2.0,1,1.0 +11033,15495,1735.4334175223644,65.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23280.0,0.0,0.0,21559.45,0.0,0.0,3,4,3.0,1,0.0 +11034,15499,2185.8264360650323,70.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22750.0,0.0,0.0,22475.3,0.0,0.0,1,0,0.0,3,0.0 +11035,15500,1243.1176393797455,66.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25190.0,0.0,0.0,23192.8,0.0,0.0,1,10,3.0,1,0.0 +11036,15501,3352.1593892535557,38.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,58445.7,0.0,55620.0,2,10,8.0,4,2.0 +11037,15502,2036.763364002883,33.0,221,3050.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,33345.05,0.0,22950.0,3,1,2.0,4,2.0 +11038,15504,1691.5786053339848,78.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23450.0,0.0,0.0,20772.7,0.0,0.0,1,8,7.0,1,0.0 +11039,15505,1431.0965987701222,65.0,120,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34860.0,0.0,0.0,33676.9,0.0,0.0,1,0,1.0,3,0.0 +11040,15506,3170.7465811744555,34.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,96579.65,0.0,103370.0,2,8,7.0,4,2.0 +11041,15507,3181.8539252374812,46.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15790.0,0.0,15790.0,3,10,8.0,3,1.0 +11042,15508,961.094497315244,35.0,111,0.0,21,1.0,1.0,2.0,1.3,0.0,5680.0,0.0,0.0,0.0,0.0,13752.3,820.0,0.0,3,8,6.0,2,1.0 +11043,15510,2172.1245273321006,63.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16410.0,0.0,0.0,26235.15,0.0,0.0,1,7,4.0,1,0.0 +11044,15512,1408.5763774917145,53.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22995.75,0.0,25640.0,2,5,4.0,2,1.0 +11045,15513,2174.0519430743807,54.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31105.0,0.0,33270.0,3,8,7.0,4,2.0 +11046,15514,2499.7212152280676,84.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30680.0,0.0,0.0,29862.25,0.0,0.0,3,9,7.0,3,0.0 +11047,15515,2020.2219449671331,84.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12060.0,0.0,0.0,13097.0,0.0,0.0,3,1,3.0,1,0.0 +11048,15517,2396.5459867956924,32.0,112,5990.0,64,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,27913.0,0.0,19660.0,3,7,0.0,4,2.0 +11049,15518,2675.51623603079,73.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16380.0,0.0,0.0,16183.05,0.0,0.0,1,5,4.0,1,0.0 +11050,15519,3022.9447482406954,44.0,111,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,53895.45,0.0,57110.0,1,10,8.0,4,2.0 +11051,15520,582.7772363041388,61.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,1790.0,0.0,3970.0,0.0,0.0,5760.0,0.0,0.0,5,8,7.0,1,0.0 +11052,15521,722.7043771114596,37.0,211,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53942.1,0.0,53460.0,2,3,4.0,4,2.0 +11053,15522,5216.573665060922,71.0,111,630.0,75,1.0,0.0,2.0,1.5,0.0,1420.0,0.0,18050.0,0.0,0.0,20871.4,0.0,0.0,3,9,7.0,2,1.0 +11054,15523,3748.714398642439,32.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36311.9,0.0,36850.0,3,10,8.0,4,2.0 +11055,15524,3268.8286828769055,61.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32414.3,0.0,37040.0,2,6,4.0,1,1.0 +11056,15526,1586.2491031230682,66.0,120,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,27480.0,2202.0,0.0,31562.5,0.0,0.0,1,0,0.0,3,1.0 +11057,15529,1731.5041127101877,62.0,111,0.0,54,1.0,0.0,2.0,1.5,0.0,0.0,0.0,62690.0,151.0,0.0,57037.75,0.0,2850.0,1,8,7.0,3,1.0 +11058,15530,3239.1134585099753,61.0,111,1330.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13880.0,135.0,0.0,14681.5,0.0,0.0,3,5,4.0,1,0.0 +11059,15531,5134.3804946899245,40.0,111,6410.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,290.0,0.0,17785.85,0.0,1400.0,3,9,7.0,1,1.0 +11060,15532,2161.2042704161413,49.0,111,2950.0,53,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,24262.3,750.0,14860.0,3,9,7.0,4,1.0 +11061,15533,3611.4127275461524,31.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,54350.1,0.0,60350.0,2,10,8.0,3,2.0 +11062,15534,1527.7259794316712,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45860.0,612.0,0.0,45619.0,0.0,0.0,2,9,7.0,3,0.0 +11063,15535,2371.0669996519077,24.0,120,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,3270.0,0.0,0.0,22046.15,540.0,11160.0,1,0,3.0,2,1.0 +11064,15538,3411.01863139055,36.0,111,7550.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,35266.05,0.0,30160.0,3,6,4.0,3,2.0 +11065,15540,1992.6001358244607,37.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54915.9,0.0,55600.0,2,8,7.0,4,2.0 +11066,15541,4945.453428756019,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6880.0,0.0,0.0,9784.0,0.0,0.0,3,10,8.0,1,0.0 +11067,15543,5313.281888363265,82.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17280.0,0.0,0.0,17846.0,0.0,0.0,3,9,7.0,1,0.0 +11068,15544,4227.276232214978,55.0,111,0.0,77,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,14244.0,0.0,0.0,3,9,7.0,1,0.0 +11069,15545,2206.584403538071,38.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,15.0,0.0,36855.7,0.0,40650.0,2,7,5.0,3,2.0 +11070,15546,1963.2885008943824,38.0,120,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,73084.05,0.0,73460.0,2,0,1.0,4,2.0 +11071,15548,1812.3662620368889,60.0,211,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34839.3,0.0,35170.0,3,1,3.0,2,2.0 +11072,15549,791.2116871277666,39.0,111,360.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,17460.05,2680.0,8770.0,3,6,5.0,2,1.0 +11073,15551,2345.0290521956226,44.0,300,0.0,69,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,36215.1,110.0,34070.0,2,0,0.0,4,3.0 +11074,15552,603.400930114788,39.0,111,0.0,55,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23426.45,340.0,19970.0,3,10,8.0,2,1.0 +11075,15554,3429.6570880147824,55.0,112,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14528.55,850.0,14400.0,1,9,3.0,1,1.0 +11076,15556,2444.1576247035305,47.0,111,0.0,38,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,64434.55,0.0,62510.0,2,6,5.0,4,2.0 +11077,15557,3234.6818454182408,22.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19103.3,560.0,18960.0,3,8,6.0,1,1.0 +11078,15560,3796.614874351482,28.0,111,0.0,64,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37340.6,0.0,38050.0,3,7,5.0,4,2.0 +11079,15561,1865.7452335412866,50.0,112,0.0,12,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,738.0,0.0,104918.87860802416,0.0,22890.0,2,9,0.0,3,2.0 +11080,15562,3087.55086192681,83.0,112,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,33100.0,0.0,0.0,31252.4,0.0,0.0,1,10,2.0,3,1.0 +11081,15563,1944.6918523034565,69.0,111,0.0,23,2.0,2.0,3.0,1.8,0.0,0.0,0.0,54640.0,911.0,0.0,76879.00370178126,0.0,21840.0,3,9,7.0,4,2.0 +11082,15565,2633.5425736128923,84.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30450.0,0.0,0.0,28040.3,0.0,0.0,1,8,1.0,1,0.0 +11083,15566,2049.5508130563626,94.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21280.0,0.0,0.0,20324.2,0.0,0.0,1,9,7.0,1,0.0 +11084,15568,2124.280954776712,66.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56120.0,0.0,0.0,48621.7,0.0,0.0,1,7,0.0,3,0.0 +11085,15569,2192.521186124159,55.0,111,850.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36308.0,0.0,36550.0,3,7,5.0,3,2.0 +11086,15572,1864.4977513640201,54.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,20.0,0.0,77350.48658607916,0.0,91610.0,1,10,4.0,4,2.0 +11087,15573,917.2346211513211,43.0,111,0.0,53,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39995.1,0.0,49390.0,2,9,7.0,4,2.0 +11088,15575,1559.3837720984461,50.0,111,0.0,38,1.0,1.0,4.0,2.5,0.0,0.0,0.0,14070.0,0.0,0.0,129769.1,0.0,136700.0,1,10,8.0,4,1.0 +11089,15576,2885.63410072689,62.0,112,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13450.0,0.0,0.0,64271.45,0.0,0.0,1,8,0.0,3,1.0 +11090,15577,1817.8479196220505,67.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17710.0,0.0,0.0,16723.05,0.0,0.0,1,5,4.0,1,0.0 +11091,15579,4479.877300512806,40.0,111,24760.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,8247.0,1079.0,26632.85,0.0,0.0,5,10,8.0,1,1.0 +11092,15580,3795.1563666665475,54.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,13.0,0.0,21805.3,0.0,23550.0,1,10,8.0,1,1.0 +11093,15581,3382.867307598426,32.0,221,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20115.1,0.0,22560.0,3,1,1.0,1,1.0 +11094,15582,3528.4357179220337,27.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27961.1,0.0,30290.0,3,9,7.0,1,1.0 +11095,15583,966.9752027413568,46.0,120,0.0,64,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38711.3,680.0,38060.0,2,0,2.0,4,2.0 +11096,15584,254.45069288700543,39.0,112,0.0,85,0.0,0.0,2.0,1.5,0.0,7120.0,0.0,0.0,0.0,0.0,9856.55,0.0,0.0,1,5,0.0,2,0.0 +11097,15585,2939.8751416918785,50.0,300,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19432.55,1140.0,19110.0,3,0,0.0,1,1.0 +11098,15586,2438.314175191465,21.0,111,0.0,84,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3848.3,0.0,0.0,3,8,6.0,3,0.0 +11099,15587,1810.9555273462852,52.0,111,0.0,42,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,61328.1,0.0,62130.0,1,9,7.0,4,2.0 +11100,15589,3053.5126370947114,35.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,45464.55,0.0,53310.0,3,10,8.0,1,1.0 +11101,15590,2244.4515629108873,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,69070.0,0.0,0.0,64565.80006076796,0.0,0.0,1,9,1.0,3,0.0 +11102,15591,2560.8071099060794,48.0,120,0.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,40247.8,0.0,41380.0,2,0,0.0,4,3.0 +11103,15594,1592.2126076228967,68.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,10420.0,0.0,0.0,13180.0,0.0,0.0,3,9,7.0,3,1.0 +11104,15596,1496.0508974700742,38.0,111,0.0,62,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25658.2,0.0,21980.0,3,8,7.0,4,1.0 +11105,15597,1469.1743052852967,19.0,112,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17250.65,0.0,18000.0,3,9,3.0,1,1.0 +11106,15598,1973.769920457475,33.0,221,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,19.0,0.0,19878.85,0.0,21870.0,2,1,3.0,1,1.0 +11107,15599,2340.7784262329224,80.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33730.0,0.0,0.0,28171.61963117474,0.0,0.0,1,8,0.0,3,0.0 +11108,15600,3453.479368756559,81.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25400.0,0.0,0.0,28419.83328311537,0.0,0.0,1,0,1.0,1,0.0 +11109,15605,2778.1181023226927,29.0,111,5490.0,37,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21915.35,0.0,18950.0,3,9,7.0,1,1.0 +11110,15608,2431.373288830856,28.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,80244.05,0.0,31790.0,2,5,4.0,3,2.0 +11111,15609,2072.926659657586,59.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,2100.0,0.0,0.0,19044.55,0.0,19240.0,1,8,6.0,1,1.0 +11112,15610,2017.8333676338427,49.0,112,0.0,63,3,3.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,73246.65,0.0,78950.0,1,10,0.0,4,3.0 +11113,15611,3062.258598094825,64.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13190.0,0.0,0.0,15590.0,0.0,0.0,3,0,0.0,1,0.0 +11114,15612,458.5146255077236,50.0,111,0.0,21,1.0,0.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,29693.0,0.0,0.0,3,10,8.0,2,1.0 +11115,15613,2746.907025194853,31.0,111,5430.0,37,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,50789.8,0.0,44860.0,3,8,7.0,3,2.0 +11116,15614,1592.1169463338015,65.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,63310.0,0.0,0.0,59778.00254100692,0.0,0.0,1,8,0.0,3,0.0 +11117,15615,2644.639483527189,53.0,111,0.0,54,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,60900.5,0.0,64950.0,3,9,7.0,4,3.0 +11118,15616,2090.875392322014,49.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22938.75,0.0,23160.0,3,8,7.0,1,1.0 +11119,15617,1933.0159753270868,55.0,111,0.0,38,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,39864.55,0.0,41720.0,1,8,6.0,4,1.0 +11120,15618,2439.1173157055414,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22020.0,0.0,0.0,21288.2,0.0,0.0,1,9,7.0,1,0.0 +11121,15619,637.0464896001016,39.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24382.95,0.0,21380.0,3,6,5.0,2,1.0 +11122,15620,3279.7893998055356,58.0,221,0.0,52,2.0,1.0,2.0,1.5,0.0,0.0,0.0,330.0,0.0,0.0,21841.0,0.0,21950.0,3,1,2.0,2,2.0 +11123,15622,1111.244150538702,61.0,111,0.0,68,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15400.0,0.0,0.0,44541.45,0.0,30940.0,2,7,6.0,3,1.0 +11124,15624,1636.3608091482322,64.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,51600.0,0.0,0.0,160244.0,0.0,147640.0,1,8,7.0,3,2.0 +11125,15625,3213.6497680788443,32.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27361.85,0.0,30210.0,1,10,8.0,1,1.0 +11126,15626,805.1819535779729,58.0,111,930.0,52,3,3.0,3.0,2.0,4600.0,0.0,0.0,2750.0,0.0,0.0,56244.6,3430.0,38920.0,3,7,5.0,2,3.0 +11127,15627,1297.2895749035174,52.0,400,0.0,12,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17832.3,0.0,0.0,1,0,1.0,3,2.0 +11128,15628,3234.1882892517606,37.0,111,0.0,34,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12613.1,0.0,12240.0,3,9,7.0,1,1.0 +11129,15629,1809.4963268981498,40.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,259.0,0.0,73279.95,0.0,69670.0,2,8,7.0,4,2.0 +11130,15631,2674.6071043579714,64.0,211,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,81200.0,0.0,0.0,84920.0,0.0,13490.0,1,1,2.0,3,0.0 +11131,15632,2022.0840890019774,41.0,112,0.0,35,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,77006.5,0.0,76490.0,2,10,0.0,4,2.0 +11132,15633,4094.749284761798,58.0,111,5820.0,35,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,231.0,0.0,28492.853532770387,0.0,30650.0,2,10,8.0,1,1.0 +11133,15634,3092.741002315543,60.0,112,7130.0,54,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11410.85,0.0,0.0,3,9,0.0,1,1.0 +11134,15635,2193.7671668010553,72.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25580.0,0.0,0.0,25761.75,0.0,0.0,1,7,0.0,3,0.0 +11135,15639,1638.0153315027649,86.0,400,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18980.0,0.0,0.0,18529.55,0.0,0.0,1,0,0.0,3,0.0 +11136,15640,3321.48261111906,59.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,27315.3,0.0,30160.0,3,10,4.0,1,1.0 +11137,15642,1775.2284160498034,62.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,4200.0,0.0,36040.0,0.0,0.0,38375.15,0.0,270.0,1,0,0.0,3,0.0 +11138,15643,6839.58271463934,55.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22312.1,0.0,22550.0,3,8,6.0,1,1.0 +11139,15644,1678.2670920646626,46.0,111,14370.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,76298.05,0.0,66100.0,2,9,7.0,4,2.0 +11140,15645,1705.4562376362023,30.0,112,0.0,85,0.0,0.0,2.0,1.3,0.0,7500.0,0.0,0.0,0.0,0.0,13130.0,0.0,860.0,3,8,2.0,2,0.0 +11141,15646,4722.269005122001,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,5630.0,3150.0,0.0,0.0,10307.0,0.0,0.0,3,10,8.0,1,0.0 +11142,15647,3381.457681183938,25.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6384.0,0.0,0.0,3,7,5.0,1,0.0 +11143,15648,2059.177421079408,50.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,38558.8,0.0,42100.0,1,7,4.0,4,2.0 +11144,15649,2689.1625414114146,52.0,112,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26248.75,0.0,28550.0,2,7,0.0,1,1.0 +11145,15651,322.7123815925281,44.0,112,5910.0,56,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27276.35,0.0,20060.0,3,4,0.0,5,2.0 +11146,15652,2068.0402238138963,74.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24270.0,0.0,0.0,24011.35,0.0,0.0,5,0,0.0,3,0.0 +11147,15653,2966.333399600295,35.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22142.55,0.0,23200.0,2,10,8.0,1,1.0 +11148,15654,2712.5797201943747,30.0,300,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36338.15,0.0,28430.0,2,0,0.0,4,2.0 +11149,15655,4076.5997769594783,27.0,111,8670.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13086.0,50.0,3280.0,3,7,5.0,1,1.0 +11150,15656,2356.911020761467,66.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,20020.0,0.0,0.0,20620.0,0.0,0.0,3,1,2.0,3,0.0 +11151,15657,2684.3180932169544,29.0,112,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19062.05,0.0,19310.0,1,9,0.0,1,1.0 +11152,15659,3904.717819150059,26.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14661.45,1670.0,13680.0,3,9,7.0,1,1.0 +11153,15661,1563.5584342685165,49.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,34913.45,0.0,37580.0,1,9,7.0,4,2.0 +11154,15662,2239.840895159904,43.0,112,0.0,63,1.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,29225.4,1830.0,25710.0,2,7,0.0,4,1.0 +11155,15664,2653.241657781388,47.0,112,0.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,19879.9,0.0,21160.0,2,8,1.0,2,1.0 +11156,15665,2032.9353640577651,46.0,111,0.0,64,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,25476.5,0.0,27030.0,2,8,6.0,4,1.0 +11157,15666,2241.742413719491,50.0,111,2070.0,48,2.0,2.0,4.0,2.5,0.0,0.0,0.0,670.0,0.0,0.0,57249.1,0.0,47620.0,1,8,7.0,4,2.0 +11158,15667,1481.9278443655817,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40580.0,0.0,0.0,37690.01836067128,0.0,0.0,1,7,5.0,3,0.0 +11159,15669,4323.75026898035,51.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,11712.45,0.0,0.0,3,9,0.0,1,1.0 +11160,15671,3597.9736549400695,36.0,111,6800.0,62,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,26166.4,0.0,9480.0,3,9,7.0,4,1.0 +11161,15672,3575.4597305914176,48.0,221,0.0,22,1.0,1.0,1.0,1.0,0.0,6920.0,0.0,0.0,0.0,0.0,38024.05,0.0,0.0,3,1,1.0,1,1.0 +11162,15673,4191.680380778605,73.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31510.0,0.0,0.0,30636.1,0.0,0.0,3,1,2.0,3,0.0 +11163,15674,2854.4113895852206,37.0,221,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15718.0,0.0,0.0,3,1,3.0,1,1.0 +11164,15675,2068.3308499871496,78.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31080.0,0.0,0.0,31460.6,0.0,240.0,1,0,1.0,3,0.0 +11165,15676,2201.70502861617,79.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24990.0,0.0,0.0,24246.25,0.0,0.0,1,0,0.0,3,0.0 +11166,15678,2010.4515551259922,77.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18200.0,0.0,0.0,18200.0,0.0,0.0,3,8,6.0,3,0.0 +11167,15679,3166.1321704211505,67.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12080.0,0.0,0.0,14072.0,0.0,0.0,3,1,2.0,1,0.0 +11168,15680,2870.373759985216,67.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24440.0,0.0,0.0,23464.6,0.0,0.0,3,6,5.0,1,0.0 +11169,15683,1252.1924905313736,44.0,120,0.0,85,0.0,0.0,2.0,1.5,0.0,4520.0,0.0,0.0,0.0,0.0,9056.3,0.0,0.0,3,0,3.0,2,0.0 +11170,15685,2006.2365209492223,67.0,212,0.0,71,1.0,1.0,3.0,1.8,0.0,0.0,0.0,13250.0,0.0,0.0,28596.5,0.0,0.0,1,2,0.0,4,1.0 +11171,15687,2152.576209919696,87.0,400,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25280.0,0.0,0.0,23967.6,0.0,0.0,5,0,0.0,1,0.0 +11172,15688,1803.1200378003327,50.0,112,4680.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,53855.25,0.0,52910.0,3,8,0.0,4,2.0 +11173,15689,2573.2352446527507,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24790.0,0.0,0.0,23927.65,0.0,0.0,1,7,5.0,3,0.0 +11174,15690,1891.004999644664,32.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,38512.25,0.0,39140.0,2,8,6.0,4,2.0 +11175,15692,564.4554179846224,45.0,112,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25733.9,0.0,17680.0,3,9,1.0,2,1.0 +11176,15694,2240.1595321262976,84.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17370.0,0.0,0.0,20668.25,0.0,0.0,1,4,0.0,3,0.0 +11177,15695,3028.3930543848364,74.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,44190.0,0.0,0.0,40809.0,0.0,0.0,3,9,7.0,1,0.0 +11178,15697,2436.895088670666,71.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24380.0,0.0,0.0,22412.45,0.0,0.0,5,0,0.0,1,0.0 +11179,15698,956.9239330974101,39.0,400,0.0,55,1.0,1.0,2.0,1.3,0.0,5310.0,0.0,0.0,0.0,0.0,10924.1,0.0,0.0,3,0,0.0,2,1.0 +11180,15700,3677.331123746501,32.0,112,4750.0,63,1.0,0.0,1.0,1.0,0.0,1420.0,0.0,0.0,0.0,0.0,8526.75,550.0,2070.0,3,8,0.0,1,1.0 +11181,15703,2236.492709508308,52.0,111,0.0,45,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,163.0,0.0,77198.0,0.0,86770.0,1,9,7.0,4,3.0 +11182,15704,2086.219257263483,73.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27100.0,0.0,0.0,25929.3,0.0,0.0,1,8,7.0,3,0.0 +11183,15705,728.0360909564041,51.0,111,0.0,62,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,20152.2,770.0,17480.0,3,8,7.0,2,1.0 +11184,15706,1825.1971679787187,43.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,47086.05,0.0,47390.0,2,9,7.0,4,2.0 +11185,15707,3553.8041924293047,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10310.0,0.0,0.0,10848.0,0.0,0.0,3,7,6.0,1,0.0 +11186,15708,1340.0374157864383,83.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22840.0,0.0,0.0,20773.0,0.0,0.0,1,9,7.0,3,0.0 +11187,15709,2142.1147813266425,76.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33460.0,0.0,0.0,35154.12726835382,0.0,0.0,1,0,0.0,3,0.0 +11188,15710,3680.035697116935,87.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17100.0,0.0,0.0,17446.0,0.0,0.0,3,1,3.0,1,0.0 +11189,15711,7927.299923713453,36.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30647.0,0.0,33370.0,3,10,8.0,1,1.0 +11190,15712,1879.3862846503923,79.0,212,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33050.0,0.0,0.0,32626.35,0.0,0.0,1,3,0.0,3,0.0 +11191,15714,2586.1185502055478,56.0,120,8590.0,48,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,276.0,0.0,61971.25,0.0,55440.0,1,0,3.0,4,3.0 +11192,15716,1436.322003562706,59.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,520.0,0.0,0.0,26299.45,0.0,29170.0,2,8,7.0,3,1.0 +11193,15717,1807.4636308803408,56.0,111,0.0,43,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19350.0,0.0,14490.0,5,9,7.0,2,1.0 +11194,15718,1875.182749126463,35.0,112,9050.0,67,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,31228.2,320.0,18710.0,2,8,0.0,4,2.0 +11195,15719,1127.0015690403857,47.0,111,0.0,21,1.0,0.0,4.0,2.1,0.0,8240.0,0.0,0.0,0.0,0.0,17524.0,0.0,0.0,3,9,7.0,4,1.0 +11196,15720,2258.778478297481,39.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,51429.65,0.0,52140.0,2,9,7.0,4,2.0 +11197,15721,2423.861064448734,67.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21800.0,0.0,0.0,21475.0,0.0,0.0,1,0,0.0,3,0.0 +11198,15722,1332.4884981569098,70.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26200.0,0.0,0.0,24689.1,0.0,0.0,1,10,3.0,3,0.0 +11199,15723,1500.3513457986053,42.0,112,0.0,63,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,63280.65,0.0,55130.0,2,10,3.0,4,2.0 +11200,15724,3283.9582832718065,30.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21028.1,0.0,23150.0,3,8,7.0,1,1.0 +11201,15725,1005.1087141972782,30.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,24284.55,1590.0,19390.0,3,10,8.0,2,1.0 +11202,15726,3185.481213634276,43.0,120,7510.0,22,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,46728.95,0.0,0.0,2,0,0.0,4,1.0 +11203,15727,2088.3979236685987,45.0,300,3760.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35751.0,0.0,32610.0,2,0,1.0,4,2.0 +11204,15729,1224.585160622689,65.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43490.0,326.0,0.0,39657.15,0.0,0.0,1,7,5.0,3,0.0 +11205,15730,2781.4770417637806,22.0,300,0.0,13,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,10676.3,0.0,9410.0,3,0,0.0,3,2.0 +11206,15731,1327.3037126847353,59.0,112,0.0,22,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,-0.0,0.0,0.0,1,10,3.0,3,1.0 +11207,15734,607.4534853375508,48.0,111,1590.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,23453.0,0.0,12360.0,3,4,4.0,2,1.0 +11208,15736,1933.711856870861,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27310.0,0.0,0.0,27083.1,0.0,650.0,1,7,1.0,3,0.0 +11209,15738,2662.301745205565,53.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,1420.0,0.0,0.0,0.0,0.0,10577.2,550.0,6160.0,3,6,5.0,1,1.0 +11210,15739,1974.9825113055451,43.0,111,0.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,40666.65,0.0,35590.0,2,8,7.0,4,2.0 +11211,15740,4163.5817160269,72.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23740.0,0.0,0.0,21336.553532770387,0.0,0.0,5,10,8.0,1,0.0 +11212,15741,3688.89642470997,68.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19640.0,0.0,0.0,21388.1,0.0,0.0,1,10,8.0,1,0.0 +11213,15742,1767.5217044120814,32.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,53798.05,850.0,47550.0,3,10,8.0,4,2.0 +11214,15743,10335.82279527833,22.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22663.0,1570.0,18650.0,3,9,7.0,1,1.0 +11215,15744,1613.9971599984976,70.0,111,0.0,78,1.0,0.0,2.0,1.5,0.0,0.0,0.0,26610.0,0.0,0.0,27679.3,0.0,1300.0,3,7,6.0,3,1.0 +11216,15746,2156.9806067443615,45.0,111,0.0,48,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,57221.9,0.0,61890.0,2,8,7.0,4,2.0 +11217,15748,542.8212879240174,40.0,111,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31853.15,0.0,27380.0,2,9,7.0,2,1.0 +11218,15750,2949.795120118421,58.0,111,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,34420.0,249.0,0.0,192194.7,0.0,0.0,2,10,8.0,4,2.0 +11219,15751,2538.6110891789112,42.0,111,0.0,42,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55284.5,0.0,57080.0,2,8,6.0,4,2.0 +11220,15753,1854.2286390841796,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,3240.0,724.0,0.0,2954.65,0.0,0.0,1,8,6.0,1,0.0 +11221,15754,1966.1746392179382,81.0,211,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,36960.0,1249.0,0.0,39913.79544873337,0.0,0.0,1,1,2.0,3,1.0 +11222,15756,863.7601511955505,58.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40456.05,0.0,44160.0,2,10,2.0,2,2.0 +11223,15757,1935.901981703924,33.0,112,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44984.1,0.0,38060.0,2,8,0.0,4,2.0 +11224,15759,3130.891530772468,83.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,40910.0,465.0,0.0,36590.65,0.0,0.0,1,8,7.0,1,0.0 +11225,15762,761.7126164952273,68.0,211,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,30250.0,0.0,0.0,29210.35,0.0,0.0,1,4,3.0,1,0.0 +11226,15763,2920.436059198482,53.0,112,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34145.1,0.0,35690.0,3,7,4.0,2,2.0 +11227,15764,1595.5550703516735,32.0,120,0.0,35,1.0,1.0,2.0,1.3,0.0,1750.0,0.0,0.0,0.0,0.0,28856.2,1730.0,20510.0,3,0,4.0,2,1.0 +11228,15765,1492.619869438951,72.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21490.0,0.0,0.0,20916.55,0.0,0.0,1,0,0.0,3,0.0 +11229,15766,1519.0635495878576,47.0,111,0.0,64,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,19139.65,0.0,20410.0,2,6,4.0,2,1.0 +11230,15768,2315.311167246918,30.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22493.15,0.0,10400.0,3,10,8.0,4,2.0 +11231,15769,1854.3537270863271,36.0,111,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32946.9,0.0,28380.0,3,9,7.0,4,2.0 +11232,15770,1818.690368603898,41.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33135.65,0.0,34090.0,2,6,4.0,2,1.0 +11233,15771,1898.285260642429,62.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,12660.0,0.0,0.0,48509.05,0.0,29590.0,1,8,7.0,1,1.0 +11234,15772,3033.486210665706,79.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25520.0,0.0,0.0,25221.133029915556,0.0,0.0,3,10,8.0,3,0.0 +11235,15773,4346.06464394624,58.0,112,5950.0,65,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9107.45,0.0,220.0,3,9,3.0,1,1.0 +11236,15774,1607.1688526717066,60.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,515.0,0.0,85208.2,0.0,97630.0,2,10,8.0,3,2.0 +11237,15775,3386.621815007647,60.0,111,3360.0,78,0.0,0.0,3.0,2.0,0.0,0.0,0.0,14490.0,0.0,0.0,21123.8,690.0,0.0,3,8,6.0,4,0.0 +11238,15777,2750.495868920354,82.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10200.0,0.0,0.0,10937.0,0.0,0.0,5,9,0.0,1,0.0 +11239,15779,2126.7387062859716,76.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42010.0,0.0,0.0,40980.75,0.0,0.0,5,9,0.0,3,0.0 +11240,15780,2231.6709275001563,44.0,120,2570.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,46147.6,0.0,42300.0,2,0,0.0,4,2.0 +11241,15782,2204.1392369819323,68.0,111,1680.0,77,1.0,1.0,3.0,2.0,0.0,0.0,0.0,15600.0,0.0,0.0,16116.5,0.0,0.0,1,8,7.0,4,1.0 +11242,15784,2225.6512455719567,31.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23482.65,0.0,25120.0,3,9,7.0,1,1.0 +11243,15785,1533.78208464363,70.0,111,0.0,,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11450.0,0.0,0.0,11095.1,0.0,0.0,3,6,4.0,1,0.0 +11244,15786,122.07336483105873,36.0,112,0.0,43,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,30706.2,0.0,24750.0,1,8,0.0,2,1.0 +11245,15787,2618.74673103993,41.0,112,0.0,53,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,25475.4,0.0,14410.0,3,4,0.0,4,1.0 +11246,15788,3653.718904398592,51.0,111,4010.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12070.9,0.0,5510.0,3,10,8.0,1,1.0 +11247,15791,4612.161423998546,44.0,111,0.0,38,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,118850.2,0.0,140160.0,1,10,8.0,4,2.0 +11248,15792,2142.2556107700248,65.0,111,0.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,42670.0,0.0,0.0,45688.5,600.0,7470.0,1,6,4.0,4,1.0 +11249,15794,4052.9669569748053,91.0,211,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21430.0,0.0,0.0,20014.4,0.0,0.0,5,1,3.0,1,0.0 +11250,15795,596.874770941846,46.0,111,840.0,68,2.0,0.0,5.0,2.6,0.0,0.0,0.0,1120.0,0.0,0.0,26904.0,0.0,5610.0,3,10,8.0,2,2.0 +11251,15797,1824.0239700230386,80.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29200.0,0.0,0.0,30309.3,0.0,0.0,3,8,0.0,3,0.0 +11252,15799,745.0594014661456,52.0,111,9250.0,63,1.0,0.0,2.0,1.5,0.0,50.0,0.0,0.0,0.0,0.0,15076.4,0.0,30.0,3,8,6.0,2,1.0 +11253,15800,1540.116493577979,57.0,112,0.0,55,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,41966.5,0.0,43320.0,3,4,0.0,4,3.0 +11254,15801,2452.8242926588537,60.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,5820.0,0.0,13270.0,0.0,0.0,20304.0,0.0,0.0,3,0,1.0,2,0.0 +11255,15802,2893.1135968111175,44.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,86363.7,0.0,94350.0,2,10,0.0,4,2.0 +11256,15803,2613.4853147786826,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21140.0,0.0,0.0,20246.9,0.0,0.0,1,9,7.0,3,0.0 +11257,15804,1079.2476411076022,54.0,211,1050.0,53,1.0,2.0,3.0,2.0,0.0,0.0,0.0,14710.0,0.0,0.0,45538.55,0.0,35050.0,2,3,3.0,4,1.0 +11258,15805,4778.058822069955,44.0,111,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,46965.55,0.0,50510.0,2,9,7.0,4,2.0 +11259,15806,1913.4959459688032,56.0,112,0.0,68,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22654.0,550.0,22460.0,3,8,3.0,3,2.0 +11260,15807,950.6756452634388,60.0,111,5940.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16150.0,0.0,0.0,21177.0,0.0,0.0,1,10,8.0,3,0.0 +11261,15808,2043.3412164592542,45.0,120,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,34727.55,0.0,28490.0,1,0,0.0,4,2.0 +11262,15809,4092.183639174973,40.0,111,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22313.4,0.0,24370.0,3,8,7.0,1,1.0 +11263,15812,2469.7680891745867,48.0,111,6940.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45250.1,0.0,41680.0,3,9,7.0,3,2.0 +11264,15813,2555.3362656307395,49.0,111,0.0,53,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18141.1,2240.0,16250.0,3,9,7.0,1,1.0 +11265,15814,2400.3570577880987,34.0,112,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,520.0,0.0,30991.2,0.0,30230.0,2,7,1.0,1,1.0 +11266,15815,2110.716074974384,51.0,111,0.0,54,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42854.55,0.0,43710.0,1,7,5.0,4,2.0 +11267,15816,2544.7035232177873,39.0,300,0.0,69,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38215.7,0.0,37600.0,2,0,0.0,4,2.0 +11268,15818,2080.4139404835023,52.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29038.85,0.0,29940.0,2,9,7.0,2,1.0 +11269,15820,3146.0881964108135,25.0,111,7250.0,47,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,16534.0,0.0,9280.0,3,7,5.0,3,2.0 +11270,15821,1367.5684857766291,51.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,74.0,0.0,111211.2,0.0,91180.0,2,8,7.0,3,2.0 +11271,15822,2878.563868672215,37.0,112,0.0,65,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,39460.0,0.0,35220.0,3,6,0.0,4,2.0 +11272,15823,2992.142045335609,44.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,254.0,0.0,28788.35,0.0,31750.0,1,9,7.0,1,1.0 +11273,15824,1822.3375184867616,45.0,400,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,32865.85,0.0,34470.0,1,0,1.0,2,1.0 +11274,15825,3315.481641401368,45.0,111,10320.0,35,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15841.95,0.0,5730.0,1,10,8.0,2,1.0 +11275,15826,1956.7785853521275,47.0,111,0.0,34,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,64700.45,0.0,61090.0,2,8,7.0,4,2.0 +11276,15829,1040.0400005782828,35.0,112,0.0,56,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21148.0,5260.0,8300.0,5,9,3.0,2,1.0 +11277,15830,1762.6544608400648,64.0,400,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38510.0,288.0,0.0,38695.05,0.0,0.0,1,0,0.0,3,0.0 +11278,15832,1813.6643950437415,64.0,111,0.0,86,1.0,1.0,3.0,2.0,0.0,0.0,0.0,6210.0,0.0,0.0,48405.55,0.0,37350.0,1,9,7.0,4,1.0 +11279,15834,4250.452952911322,56.0,221,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,39027.41150413349,0.0,35910.0,2,1,2.0,1,1.0 +11280,15835,3568.5762037313625,58.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24309.0,0.0,26110.0,3,9,7.0,1,1.0 +11281,15836,4036.320409772001,30.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,32680.0,0.0,35340.0,3,10,8.0,1,1.0 +11282,15837,2829.298554633024,39.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,33.0,0.0,46594.0,0.0,38860.0,2,9,7.0,4,2.0 +11283,15838,608.7410487186598,50.0,111,0.0,68,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,15930.0,3660.0,6680.0,3,7,5.0,2,1.0 +11284,15839,2847.417310964934,43.0,111,0.0,31,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49408.65,0.0,53750.0,2,9,7.0,4,2.0 +11285,15840,1969.098196643177,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38350.0,0.0,0.0,39634.4,0.0,0.0,1,9,7.0,3,0.0 +11286,15841,3580.3501825584567,36.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33002.35,660.0,32220.0,3,6,1.0,4,2.0 +11287,15842,713.5517958639749,36.0,111,0.0,63,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27526.15,0.0,21650.0,3,8,7.0,2,1.0 +11288,15845,2633.258467521157,38.0,120,0.0,47,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28816.45,0.0,25490.0,2,0,0.0,4,2.0 +11289,15846,2273.575559110187,48.0,112,1700.0,85,0.0,0.0,2.0,1.5,1910.0,0.0,0.0,0.0,0.0,0.0,17920.0,0.0,4980.0,1,6,1.0,2,0.0 +11290,15847,2307.4931702988756,44.0,111,7500.0,63,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,32415.7,0.0,18990.0,2,10,8.0,4,2.0 +11291,15848,1594.7073273220187,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,36000.0,635.0,0.0,49114.05,0.0,0.0,1,9,7.0,3,0.0 +11292,15849,746.0189599567392,40.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25033.9,0.0,22220.0,2,9,7.0,2,1.0 +11293,15850,3195.6351860986174,63.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,33280.0,0.0,0.0,57805.0,0.0,29040.0,1,8,6.0,3,1.0 +11294,15851,2694.423971336249,75.0,111,0.0,74,0.0,0.0,3.0,2.0,6420.0,0.0,0.0,32450.0,0.0,0.0,59752.7,0.0,27390.0,3,10,8.0,4,0.0 +11295,15853,1226.952426819737,38.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30858.9,770.0,29840.0,3,10,8.0,4,2.0 +11296,15854,2949.176220245393,52.0,400,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,42908.9,0.0,43160.0,2,0,0.0,4,2.0 +11297,15855,2320.474394702274,43.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20506.55,0.0,22350.0,1,8,7.0,1,1.0 +11298,15857,2928.7477492080343,26.0,300,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31305.95,2370.0,25480.0,3,0,1.0,4,1.0 +11299,15858,633.999462894763,51.0,111,0.0,85,0.0,0.0,4.0,2.5,3230.0,9730.0,0.0,0.0,0.0,0.0,23769.15,0.0,430.0,3,6,5.0,2,0.0 +11300,15859,1291.0139924845862,36.0,211,0.0,55,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,22961.05,1310.0,17200.0,3,1,3.0,2,1.0 +11301,15863,2576.4159099609997,26.0,111,13070.0,43,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42116.4,0.0,32720.0,3,10,8.0,3,2.0 +11302,15866,1931.2061214245828,46.0,120,4390.0,64,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,48845.95,800.0,45470.0,2,0,0.0,4,3.0 +11303,15867,2020.218548705258,77.0,111,0.0,68,1.0,0.0,2.0,1.5,1520.0,0.0,0.0,17190.0,0.0,0.0,18710.0,0.0,0.0,3,5,4.0,3,1.0 +11304,15869,2598.3220005800476,39.0,112,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39629.0,0.0,18070.0,2,7,0.0,4,2.0 +11305,15870,2573.0391414104643,35.0,112,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44539.25,0.0,46570.0,2,6,0.0,4,2.0 +11306,15871,2519.3396540320314,31.0,400,0.0,23,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,188.0,0.0,52552.9,0.0,52480.0,2,0,0.0,4,2.0 +11307,15872,3043.161498695115,51.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24103.7,0.0,27110.0,2,10,8.0,1,1.0 +11308,15873,3203.3287848479144,50.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13820.0,0.0,0.0,31202.0,0.0,17930.0,3,10,2.0,2,1.0 +11309,15875,2050.428061356769,61.0,112,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12370.0,0.0,0.0,14470.35,0.0,6720.0,1,7,4.0,3,1.0 +11310,15876,1861.778011623147,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,60640.0,0.0,0.0,52773.25,0.0,0.0,1,7,4.0,3,0.0 +11311,15878,2744.050074030107,32.0,112,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,28.0,0.0,46805.05,0.0,38200.0,2,8,1.0,4,2.0 +11312,15879,1745.4270046538822,45.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,64894.65,0.0,68330.0,2,8,6.0,4,2.0 +11313,15880,2323.2901399553134,45.0,112,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,26997.2,0.0,20770.0,1,7,0.0,4,2.0 +11314,15881,2148.351446150223,27.0,111,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,23311.25,0.0,21930.0,3,10,8.0,4,1.0 +11315,15882,884.003199264708,48.0,111,0.0,33,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,42629.15,0.0,43860.0,2,10,8.0,2,1.0 +11316,15885,3232.048863244632,28.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51672.3,0.0,58400.0,2,9,7.0,3,2.0 +11317,15886,2725.4809477289245,26.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,32420.0,0.0,23770.0,3,8,7.0,1,1.0 +11318,15888,3210.677632985805,39.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22324.407860802417,0.0,19260.0,3,9,7.0,1,1.0 +11319,15889,2294.3756936144255,57.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7207.3,0.0,9880.0,1,10,2.0,1,0.0 +11320,15892,2953.394750853718,83.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33050.0,0.0,0.0,32668.95,0.0,0.0,1,9,7.0,3,0.0 +11321,15896,1687.2834593946138,50.0,400,0.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31026.25,0.0,9590.0,1,0,1.0,3,2.0 +11322,15897,838.0546981832944,30.0,300,0.0,21,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25649.75,4960.0,0.0,2,0,0.0,2,1.0 +11323,15899,1319.3280574213343,71.0,120,0.0,63,1.0,0.0,2.0,1.5,0.0,0.0,0.0,21480.0,0.0,0.0,25052.5,0.0,3930.0,3,0,0.0,3,1.0 +11324,15900,2534.793028575904,55.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,15531.9,0.0,3110.0,3,5,4.0,3,2.0 +11325,15901,3676.4866113928015,46.0,111,0.0,85,1.0,1.0,3.0,2.0,3240.0,0.0,0.0,0.0,0.0,0.0,18846.1,0.0,15820.0,3,10,8.0,2,1.0 +11326,15903,1376.6662881544355,48.0,120,0.0,46,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52156.95,0.0,53280.0,1,0,1.0,4,2.0 +11327,15904,4423.002384832963,26.0,111,0.0,63,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35252.45,0.0,29380.0,2,4,4.0,4,2.0 +11328,15905,2415.2528050562482,37.0,112,4000.0,65,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13112.85,0.0,9530.0,3,10,5.0,1,1.0 +11329,15907,3551.9688189025605,63.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,15720.0,0.0,0.0,14067.95,0.0,0.0,1,10,8.0,3,0.0 +11330,15908,3102.3222935664644,55.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25053.95,0.0,27410.0,1,10,8.0,1,1.0 +11331,15909,2789.7982109560544,80.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,7940.0,0.0,0.0,31461.8,0.0,0.0,1,9,7.0,1,0.0 +11332,15910,867.0756618429743,50.0,111,0.0,85,0.0,0.0,2.0,1.5,0.0,8260.0,0.0,0.0,0.0,0.0,14816.0,0.0,0.0,3,6,4.0,2,0.0 +11333,15911,2101.855603408552,56.0,120,4050.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,3870.1310799279418,0.0,0.0,1,0,3.0,2,1.0 +11334,15912,1406.9050939454146,53.0,112,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51916.95,460.0,26400.0,1,6,0.0,4,2.0 +11335,15913,3380.28854392472,31.0,111,3360.0,34,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,40304.0,0.0,37340.0,2,10,8.0,4,2.0 +11336,15914,2446.886615033114,46.0,112,0.0,46,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,64819.95,0.0,56860.0,2,8,0.0,4,2.0 +11337,15915,1605.9693812220376,48.0,120,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52153.35,0.0,59240.0,2,0,1.0,3,2.0 +11338,15916,2733.897444588863,86.0,300,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17130.0,0.0,0.0,16776.5,0.0,0.0,1,0,0.0,3,0.0 +11339,15918,1994.1770702516865,40.0,111,3820.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,36465.3,0.0,28050.0,3,10,8.0,4,2.0 +11340,15920,2273.2389011148084,43.0,112,0.0,45,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,48923.75,0.0,45190.0,2,9,0.0,4,2.0 +11341,15921,4079.392868022732,24.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16926.0,0.0,17310.0,3,9,7.0,1,1.0 +11342,15922,2842.685956932305,90.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,44870.0,500.0,0.0,38803.65,0.0,0.0,5,4,3.0,1,0.0 +11343,15923,8956.7734254313,50.0,111,0.0,85,0.0,0.0,1.0,1.0,1500.0,0.0,0.0,3130.0,0.0,0.0,4695.0,0.0,0.0,1,9,7.0,1,0.0 +11344,15925,968.6651192556319,87.0,211,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35250.0,0.0,0.0,32065.95,0.0,0.0,1,4,3.0,3,0.0 +11345,15926,6687.7700725790855,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,41860.0,0.0,0.0,34157.426984574784,0.0,0.0,1,9,7.0,1,0.0 +11346,15927,687.23861290888,45.0,111,0.0,53,2.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,34684.35,0.0,19520.0,3,10,8.0,2,2.0 +11347,15929,1327.8733000775926,76.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21190.0,0.0,0.0,20638.4,0.0,0.0,1,1,3.0,3,0.0 +11348,15932,5055.206390007532,35.0,211,11520.0,68,1.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,21707.65,0.0,0.0,3,1,2.0,4,1.0 +11349,15935,3585.417669888173,80.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27430.0,0.0,0.0,27231.1,0.0,0.0,1,0,1.0,3,0.0 +11350,15936,2709.2557921263506,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19070.0,0.0,0.0,23583.9,0.0,0.0,1,5,4.0,1,0.0 +11351,15937,1561.2057371029398,39.0,400,0.0,48,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,959.0,0.0,55691.05,0.0,41150.0,2,0,0.0,4,2.0 +11352,15938,2873.084079375354,36.0,111,0.0,63,2.0,1.0,2.0,1.5,4850.0,0.0,0.0,0.0,0.0,0.0,20740.0,990.0,13640.0,3,6,4.0,3,2.0 +11353,15940,3083.931664981582,31.0,111,0.0,47,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,37167.3,0.0,38900.0,3,9,7.0,3,1.0 +11354,15941,512.1709431994104,44.0,111,0.0,52,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27697.45,0.0,18550.0,2,8,6.0,2,1.0 +11355,15942,2090.033440090409,69.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20210.0,0.0,0.0,19310.55,0.0,0.0,3,9,7.0,1,0.0 +11356,15943,1514.0804516134476,56.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,67169.8,0.0,74760.0,2,9,3.0,4,2.0 +11357,15946,1705.6284276896038,72.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18150.0,0.0,0.0,17860.0,0.0,0.0,1,0,0.0,3,0.0 +11358,15947,4616.757996674287,67.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11740.0,0.0,0.0,11740.0,0.0,0.0,3,0,0.0,1,0.0 +11359,15948,846.9037813485495,26.0,221,0.0,56,1.0,0.0,2.0,1.3,0.0,8160.0,0.0,0.0,0.0,0.0,14096.9,610.0,730.0,3,1,2.0,2,1.0 +11360,15950,1522.987470969364,46.0,211,790.0,54,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,32982.05,0.0,33060.0,2,4,4.0,3,2.0 +11361,15951,1062.7849876297316,53.0,112,0.0,38,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,2.0,0.0,77667.9,0.0,83400.0,2,9,3.0,4,2.0 +11362,15953,1386.6143983577315,40.0,112,0.0,43,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47580.7,0.0,51400.0,2,10,5.0,4,2.0 +11363,15957,1964.7318142481938,74.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,17720.0,0.0,0.0,15559.6,0.0,0.0,1,9,7.0,3,0.0 +11364,15958,3324.402780716059,23.0,120,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26570.8,0.0,29240.0,3,0,0.0,1,1.0 +11365,15959,1913.1492191214923,55.0,111,0.0,38,2.0,2.0,3.0,2.0,9700.0,0.0,0.0,0.0,0.0,0.0,134357.3,0.0,152250.0,1,8,7.0,4,2.0 +11366,15962,3545.685251720782,24.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40997.0,0.0,43260.0,3,8,6.0,3,2.0 +11367,15963,1024.22377954147,40.0,111,0.0,52,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35642.95,630.0,36250.0,1,6,4.0,4,2.0 +11368,15964,736.551825779513,50.0,112,0.0,46,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,32102.05,1240.0,25910.0,2,9,1.0,2,1.0 +11369,15965,3453.8546495865753,30.0,120,0.0,21,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16514.75,0.0,0.0,3,0,3.0,1,1.0 +11370,15966,712.3597004503749,48.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,36350.95,0.0,31800.0,2,9,7.0,2,1.0 +11371,15967,2128.0469901212655,59.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,66091.3,0.0,70730.0,2,9,7.0,3,1.0 +11372,15968,2586.195841111558,36.0,112,0.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16613.65,0.0,16780.0,3,8,0.0,2,1.0 +11373,15970,1487.61556016353,65.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,29880.0,8505.0,0.0,90158.05,0.0,22500.0,2,8,6.0,3,1.0 +11374,15972,2421.990043825721,37.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37769.65,0.0,33800.0,3,10,8.0,4,2.0 +11375,15973,2434.232280630268,55.0,111,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,17230.0,107.0,0.0,149540.01059831114,0.0,169900.0,1,10,8.0,3,1.0 +11376,15974,2029.0193031809608,37.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,60140.45,0.0,66930.0,2,7,5.0,4,2.0 +11377,15975,2139.132444865652,64.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19070.0,0.0,0.0,102060.35,0.0,85740.0,1,8,6.0,3,1.0 +11378,15977,2104.651570309892,80.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20360.0,0.0,0.0,31169.6,0.0,0.0,1,9,7.0,1,0.0 +11379,15979,3694.156883082245,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12220.0,0.0,0.0,12589.0,0.0,0.0,1,6,4.0,1,0.0 +11380,15981,3199.5065664056287,32.0,111,0.0,38,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,44994.5,0.0,54990.0,3,9,7.0,1,1.0 +11381,15982,2528.4971998356295,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12190.0,0.0,0.0,15225.3,0.0,3190.0,2,7,5.0,1,0.0 +11382,15983,4698.626328748604,43.0,211,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14540.640400562104,0.0,14320.0,3,1,3.0,1,1.0 +11383,15985,1611.6516676927145,27.0,111,0.0,68,1.0,1.0,3.0,1.6,0.0,1950.0,0.0,0.0,0.0,0.0,26283.05,80.0,12680.0,3,10,8.0,2,1.0 +11384,15986,1993.2484116742075,47.0,112,0.0,13,1.0,1.0,5.0,2.8,0.0,0.0,0.0,0.0,5674.0,0.0,39489.79546209976,0.0,0.0,1,9,1.0,4,1.0 +11385,15987,2705.075428489783,71.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28040.0,0.0,0.0,24872.25,0.0,0.0,1,8,6.0,1,0.0 +11386,15989,1327.921938765928,55.0,111,3140.0,53,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38305.85,0.0,37720.0,1,9,7.0,3,2.0 +11387,15990,2059.8386257005304,70.0,111,0.0,77,0.0,0.0,2.0,1.5,6330.0,0.0,1030.0,9920.0,0.0,0.0,19668.0,0.0,0.0,3,6,4.0,3,0.0 +11388,15991,1872.7755071396841,56.0,111,0.0,31,3,2.0,4.0,2.5,0.0,0.0,0.0,0.0,232.0,0.0,79402.95,0.0,36800.0,1,7,5.0,4,3.0 +11389,15992,833.4670479509153,32.0,111,0.0,33,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29288.0,0.0,31780.0,3,8,7.0,3,2.0 +11390,15993,5170.6278276485655,54.0,400,0.0,78,0.0,0.0,1.0,1.0,7280.0,1380.0,0.0,9760.0,0.0,0.0,21515.0,0.0,0.0,3,0,0.0,1,0.0 +11391,15994,1496.3744346714966,44.0,111,0.0,52,1.0,0.0,2.0,1.3,0.0,5870.0,0.0,0.0,0.0,0.0,12860.0,0.0,0.0,3,4,3.0,2,1.0 +11392,15996,2915.9577945565716,39.0,111,0.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42558.05,0.0,38700.0,1,4,3.0,4,2.0 +11393,15997,2320.2627921136295,43.0,111,0.0,64,1.0,1.0,3.0,1.8,0.0,630.0,0.0,0.0,0.0,0.0,22792.7,2140.0,12350.0,3,8,7.0,4,1.0 +11394,15998,5165.892786322087,44.0,111,0.0,64,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27135.25,2900.0,22150.0,3,9,7.0,4,2.0 +11395,15999,3900.6383124655445,53.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2668.45,0.0,2710.0,3,9,7.0,1,1.0 +11396,16000,2391.1760449591957,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,13760.0,1200.0,0.0,0.0,14535.45,0.0,0.0,3,10,8.0,3,0.0 +11397,16001,1997.0810306164308,52.0,111,0.0,34,2.0,2.0,6.0,3.5,0.0,0.0,0.0,0.0,0.0,0.0,106319.45,0.0,112240.0,1,10,8.0,4,2.0 +11398,16003,3386.229162811187,34.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15121.05,0.0,14280.0,3,9,7.0,1,1.0 +11399,16005,1920.9729468750152,54.0,111,7290.0,78,0.0,0.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,33912.0,400.0,13500.0,3,10,8.0,4,0.0 +11400,16006,2571.873859852319,54.0,211,0.0,65,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30041.8,0.0,29570.0,2,1,3.0,3,2.0 +11401,16007,631.0186470163168,52.0,111,0.0,43,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,38315.6,0.0,27950.0,2,6,4.0,2,2.0 +11402,16008,2332.958250798212,43.0,400,0.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,22856.95,0.0,11470.0,1,0,0.0,4,2.0 +11403,16011,2613.3915706197013,45.0,112,0.0,23,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,147.0,0.0,97315.3,0.0,121830.0,1,9,1.0,4,2.0 +11404,16012,2472.0116200843368,68.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15950.0,0.0,0.0,15900.15,0.0,0.0,1,6,1.0,1,0.0 +11405,16015,2234.5451835941503,35.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,62052.2,0.0,62500.0,2,9,7.0,4,2.0 +11406,16016,232.59431393033222,48.0,111,0.0,47,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,25330.3,0.0,23950.0,3,4,4.0,2,1.0 +11407,16018,3959.8906982682693,26.0,111,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,39783.0,0.0,41750.0,3,9,7.0,3,2.0 +11408,16019,1674.11074962326,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,34480.0,0.0,0.0,32744.0,0.0,0.0,1,7,5.0,3,0.0 +11409,16020,2469.891160676441,78.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28770.0,0.0,0.0,28156.7,0.0,0.0,1,5,4.0,1,0.0 +11410,16021,2127.875853308508,25.0,111,0.0,56,1.0,0.0,3.0,1.6,0.0,1800.0,0.0,0.0,0.0,0.0,17066.0,0.0,0.0,3,7,5.0,2,1.0 +11411,16023,2296.9857978033783,34.0,400,7360.0,63,2.0,1.0,4.0,2.1,5560.0,0.0,0.0,0.0,0.0,0.0,35594.4,0.0,21040.0,2,0,0.0,4,2.0 +11412,16024,2364.671652205018,44.0,112,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22639.4,0.0,26890.0,1,9,2.0,1,1.0 +11413,16026,5452.427883826127,62.0,111,0.0,77,0.0,0.0,1.0,1.0,810.0,0.0,3920.0,7100.0,0.0,0.0,15539.0,0.0,0.0,3,10,8.0,1,0.0 +11414,16027,2819.640062353932,62.0,112,0.0,31,1.0,1.0,3.0,2.0,0.0,0.0,0.0,35470.0,0.0,0.0,84052.66514957779,0.0,0.0,1,9,1.0,5,1.0 +11415,16028,1723.0793608926192,68.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21990.0,550.0,0.0,22304.1,0.0,0.0,3,5,4.0,3,0.0 +11416,16029,3786.307542095621,27.0,111,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,4.0,0.0,41951.4,0.0,39560.0,2,6,5.0,4,2.0 +11417,16032,2415.1135836021167,53.0,111,0.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22574.25,0.0,23940.0,3,8,6.0,1,1.0 +11418,16033,3999.9642754381025,31.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22761.8,0.0,26430.0,2,10,8.0,1,1.0 +11419,16034,2187.2215388402014,30.0,111,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59101.1,0.0,62130.0,2,10,8.0,4,2.0 +11420,16037,1853.5767406436287,67.0,111,0.0,53,3,2.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,62750.85,6160.0,71180.0,3,10,8.0,4,3.0 +11421,16038,1188.7238646248477,34.0,111,0.0,55,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,55430.4,0.0,53030.0,3,9,7.0,4,2.0 +11422,16039,700.4950068288363,43.0,111,0.0,45,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28579.6,4360.0,18900.0,3,7,5.0,2,1.0 +11423,16042,1747.3125141897717,71.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,36190.0,28.0,0.0,34959.61772541955,0.0,0.0,1,6,4.0,1,0.0 +11424,16043,2404.5466068340347,51.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,41077.05,0.0,45200.0,2,9,7.0,3,2.0 +11425,16044,682.6445050283982,39.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,28356.65,0.0,22150.0,2,9,7.0,2,1.0 +11426,16045,3341.369315956128,38.0,111,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18365.1,620.0,17900.0,3,8,7.0,2,1.0 +11427,16046,2046.098485665618,43.0,111,0.0,43,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,99025.05,0.0,120320.0,1,10,8.0,4,2.0 +11428,16047,2430.9791005568904,43.0,111,0.0,67,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32465.3,0.0,30800.0,2,6,5.0,4,2.0 +11429,16050,1749.5503264435001,75.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31810.0,0.0,0.0,29826.2,0.0,0.0,1,6,5.0,3,0.0 +11430,16051,2457.100573166096,81.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15040.0,0.0,0.0,14829.0,0.0,0.0,1,6,5.0,1,0.0 +11431,16052,1956.3775728767991,45.0,300,16050.0,67,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,20442.4,0.0,1240.0,3,0,0.0,3,1.0 +11432,16053,667.3075989344487,46.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,27139.2,1860.0,25430.0,3,9,7.0,2,2.0 +11433,16055,3514.40913489485,42.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,89669.65,0.0,103920.0,2,10,8.0,4,2.0 +11434,16056,1568.4501999747902,24.0,111,5970.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30408.85,240.0,24330.0,3,7,5.0,3,2.0 +11435,16057,2260.3684124778415,49.0,221,4890.0,63,1.0,1.0,3.0,2.0,0.0,0.0,0.0,14080.0,0.0,0.0,35854.35,0.0,18880.0,1,1,3.0,5,1.0 +11436,16060,3670.016984929251,45.0,111,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,48534.65,0.0,48800.0,3,9,7.0,4,2.0 +11437,16061,1661.1647612302136,61.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31610.0,0.0,0.0,31469.05,0.0,0.0,1,8,1.0,3,0.0 +11438,16062,3269.961451817243,24.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,57328.0,0.0,63690.0,3,7,5.0,3,2.0 +11439,16063,4618.4103255380005,25.0,111,0.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29704.0,0.0,16300.0,3,10,8.0,5,2.0 +11440,16065,2194.2885570578733,29.0,112,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,43012.15,0.0,52720.0,2,9,3.0,3,2.0 +11441,16066,5106.259878333436,83.0,112,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11380.0,0.0,0.0,11582.0,0.0,0.0,3,9,1.0,1,0.0 +11442,16067,2221.6015801777503,80.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,20.0,9540.0,0.0,0.0,9571.0,0.0,0.0,5,8,7.0,1,0.0 +11443,16068,2839.429655713312,54.0,222,0.0,43,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,33449.65,0.0,0.0,1,1,0.0,1,1.0 +11444,16069,1588.9002481582806,30.0,211,4030.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,24949.65,750.0,19850.0,3,3,3.0,3,2.0 +11445,16072,1716.4371540714758,70.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45890.0,0.0,0.0,42910.8,0.0,0.0,1,0,0.0,3,0.0 +11446,16073,5105.252268823024,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21740.0,0.0,0.0,20643.338383192597,0.0,0.0,3,10,8.0,1,0.0 +11447,16074,2904.891689567124,56.0,111,4300.0,56,3,2.0,3.0,2.0,0.0,0.0,0.0,23060.0,0.0,0.0,59665.4,0.0,36060.0,1,9,7.0,4,3.0 +11448,16075,1531.8729578908412,57.0,112,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14460.0,0.0,0.0,18616.3,0.0,5460.0,1,8,0.0,3,1.0 +11449,16076,3044.2814388791962,45.0,111,2790.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27319.4,0.0,21860.0,1,10,8.0,4,1.0 +11450,16078,2545.933348589927,62.0,300,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19950.0,50.0,0.0,27426.65,0.0,0.0,1,0,0.0,1,0.0 +11451,16079,2597.442078041682,42.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,404.0,0.0,93308.6,0.0,103900.0,2,9,1.0,4,2.0 +11452,16080,4467.7742179913985,86.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29340.0,0.0,0.0,29103.1,0.0,0.0,1,8,0.0,3,0.0 +11453,16082,1491.0636163188822,54.0,112,0.0,38,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,49729.8,0.0,53400.0,3,8,1.0,4,3.0 +11454,16083,4642.807383449009,59.0,111,0.0,78,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,14184.0,0.0,0.0,3,8,6.0,1,0.0 +11455,16084,2022.513713301057,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,61790.0,0.0,0.0,56025.55,0.0,0.0,1,8,7.0,3,0.0 +11456,16085,1909.675655965255,69.0,300,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14090.0,0.0,0.0,13407.5,0.0,0.0,1,0,0.0,1,0.0 +11457,16087,3851.8075756891367,64.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26400.0,0.0,0.0,32158.8,0.0,0.0,1,9,7.0,1,0.0 +11458,16089,3283.0258290969323,38.0,112,1160.0,85,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,36399.45,0.0,26380.0,2,9,0.0,4,1.0 +11459,16091,2930.9044059488774,74.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33000.0,0.0,0.0,31732.85,0.0,70.0,1,8,0.0,3,0.0 +11460,16092,3507.215877277225,63.0,111,0.0,31,1.0,0.0,2.0,1.5,0.0,0.0,0.0,249300.0,16863.0,0.0,385822.9453361268,0.0,76480.0,1,10,8.0,3,1.0 +11461,16093,3111.6692302314905,34.0,300,350.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21133.55,0.0,18350.0,2,0,0.0,4,2.0 +11462,16094,3280.3531642734,62.0,300,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34636.0,0.0,32600.0,1,0,0.0,1,1.0 +11463,16100,2138.9179527330616,59.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,33.0,0.0,57350.5,0.0,64840.0,2,6,4.0,3,2.0 +11464,16101,1884.7600171428164,43.0,111,0.0,65,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,52086.85,0.0,50820.0,1,9,7.0,4,2.0 +11465,16102,1551.122594724192,63.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13960.0,0.0,0.0,85897.40353277039,0.0,16370.0,3,7,5.0,3,1.0 +11466,16103,2101.31036767376,71.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,44750.0,0.0,0.0,41757.17167440979,0.0,880.0,1,6,4.0,3,0.0 +11467,16104,3551.093974569288,64.0,111,370.0,77,1.0,0.0,2.0,1.5,0.0,6950.0,0.0,10600.0,0.0,0.0,20496.8,260.0,0.0,1,8,7.0,5,1.0 +11468,16106,2078.1299975048996,70.0,400,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37770.0,240.0,0.0,32717.95,0.0,0.0,3,0,0.0,1,0.0 +11469,16107,2805.7424617531506,78.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38570.0,0.0,0.0,41025.65,0.0,0.0,1,4,3.0,3,0.0 +11470,16108,2178.967177062122,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22140.0,0.0,0.0,22155.0,0.0,0.0,5,7,5.0,1,0.0 +11471,16109,1787.3890545879447,68.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28270.0,0.0,0.0,37435.41526026358,0.0,0.0,1,9,7.0,3,0.0 +11472,16110,1721.8301850280245,62.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40710.0,0.0,0.0,38678.92295193001,0.0,0.0,1,9,2.0,3,0.0 +11473,16111,2087.893503287841,36.0,112,17470.0,45,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,48278.0,0.0,23730.0,2,8,2.0,4,2.0 +11474,16112,2565.3983346608334,34.0,400,7310.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,60.0,39.0,53767.054295473106,0.0,30880.0,1,0,1.0,3,2.0 +11475,16113,3653.275516650652,48.0,112,0.0,63,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,45062.05,650.0,45860.0,1,8,1.0,4,3.0 +11476,16114,2296.7972957357138,64.0,120,0.0,71,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9500.0,0.0,0.0,11564.0,0.0,0.0,1,0,0.0,1,0.0 +11477,16115,1381.5122151105006,26.0,111,0.0,21,1.0,1.0,2.0,1.5,0.0,0.0,0.0,8640.0,0.0,0.0,37583.3,0.0,0.0,3,10,8.0,2,1.0 +11478,16116,1969.0025695802342,85.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31990.0,0.0,0.0,33904.6,0.0,0.0,1,0,0.0,3,0.0 +11479,16117,1351.5155653794054,49.0,211,0.0,85,0.0,0.0,2.0,1.3,11350.0,0.0,0.0,0.0,0.0,0.0,17288.0,0.0,0.0,3,2,2.0,2,0.0 +11480,16118,2429.0376669857287,46.0,111,0.0,46,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,56073.7,0.0,57900.0,1,4,3.0,4,2.0 +11481,16119,1935.8446390851486,58.0,111,0.0,13,2.0,2.0,3.0,2.0,9720.0,0.0,0.0,0.0,11.0,0.0,42263.1,0.0,21170.0,1,8,6.0,4,2.0 +11482,16122,2338.436040332425,53.0,112,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,30985.35,0.0,31500.0,3,4,0.0,3,1.0 +11483,16125,1678.132167480164,42.0,112,0.0,47,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,46728.75,2340.0,28830.0,3,8,1.0,4,2.0 +11484,16126,2696.313585432273,56.0,112,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14167.85,0.0,15440.0,1,9,2.0,1,1.0 +11485,16127,3733.966885583835,25.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47023.15,0.0,52020.0,2,10,8.0,3,2.0 +11486,16129,3091.6458083061193,43.0,111,0.0,31,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23090.15,0.0,25790.0,2,9,7.0,1,1.0 +11487,16130,2611.301261083418,60.0,111,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,11220.0,0.0,0.0,48067.1,0.0,45360.0,1,10,8.0,3,1.0 +11488,16131,3614.783700570075,62.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21300.0,0.0,0.0,20858.75,0.0,0.0,3,8,6.0,3,0.0 +11489,16132,1822.239141833212,56.0,112,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34413.8,0.0,34900.0,2,7,0.0,3,2.0 +11490,16133,3255.747101753873,75.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31630.0,0.0,0.0,31423.75,0.0,0.0,1,9,7.0,3,0.0 +11491,16134,1945.9660655585833,61.0,111,7570.0,52,1.0,0.0,1.0,1.0,0.0,0.0,0.0,11510.0,0.0,0.0,17982.2,0.0,0.0,1,8,7.0,1,1.0 +11492,16135,2162.733458829206,55.0,120,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40044.4,0.0,43750.0,1,0,0.0,3,2.0 +11493,16136,2912.8662325605746,79.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16920.0,0.0,0.0,16181.05,0.0,0.0,1,6,4.0,1,0.0 +11494,16138,1935.1025245803428,36.0,112,0.0,37,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,68915.85,0.0,68500.0,2,9,2.0,4,2.0 +11495,16139,4009.553330119301,79.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37900.0,0.0,0.0,41341.0,0.0,0.0,3,10,8.0,1,0.0 +11496,16140,2061.66983940201,49.0,400,9690.0,53,3,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,21989.55,50.0,7240.0,3,0,0.0,4,3.0 +11497,16141,1848.570196583703,46.0,400,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,52209.62676638519,0.0,45140.0,1,0,0.0,3,2.0 +11498,16142,1777.468571830308,76.0,120,0.0,12,1.0,0.0,1.0,1.0,0.0,0.0,0.0,9110.0,26.0,0.0,9022.5,0.0,0.0,1,0,1.0,1,1.0 +11499,16143,1878.0189753306465,58.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,10340.0,0.0,0.0,33867.0,0.0,23980.0,1,8,0.0,3,0.0 +11500,16144,666.357876285064,45.0,111,0.0,46,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,24557.3,0.0,25790.0,3,9,7.0,2,1.0 +11501,16145,4586.232193013777,63.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14910.0,0.0,0.0,14688.5,0.0,0.0,1,9,2.0,1,0.0 +11502,16147,2896.8282606224175,21.0,112,3360.0,67,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,22225.0,0.0,19430.0,3,7,1.0,3,2.0 +11503,16148,729.6111582034238,45.0,400,4870.0,67,1.0,1.0,3.0,2.0,3790.0,0.0,0.0,0.0,0.0,0.0,31328.45,0.0,23370.0,1,0,0.0,4,1.0 +11504,16149,2342.983089950043,71.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20260.0,0.0,0.0,19639.95,0.0,0.0,1,0,1.0,1,0.0 +11505,16150,3289.5313100110175,32.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18422.7,0.0,18540.0,3,9,7.0,1,1.0 +11506,16151,221.08156725365833,44.0,211,4480.0,56,1.0,0.0,3.0,1.8,0.0,300.0,0.0,0.0,0.0,0.0,12045.5,0.0,0.0,3,3,3.0,2,1.0 +11507,16153,2470.299276018292,78.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17010.0,0.0,0.0,17010.0,0.0,0.0,3,2,3.0,1,0.0 +11508,16154,3178.827909617357,69.0,112,0.0,74,1.0,1.0,3.0,2.0,0.0,0.0,0.0,49620.0,296.0,0.0,59148.55,2260.0,10530.0,1,8,1.0,4,1.0 +11509,16156,2413.2862332969303,39.0,111,7040.0,63,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,495.0,26581.0,37178.85,0.0,0.0,2,6,4.0,3,2.0 +11510,16157,1355.5208272607579,60.0,300,0.0,38,1.0,1.0,2.0,1.5,0.0,0.0,0.0,19190.0,8.0,0.0,43554.2,0.0,19550.0,1,0,1.0,3,1.0 +11511,16158,652.254777585402,46.0,111,0.0,52,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,28190.95,1520.0,24090.0,3,8,6.0,2,1.0 +11512,16159,2280.1353596931654,34.0,111,0.0,64,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,60431.1,0.0,52620.0,2,8,7.0,4,2.0 +11513,16160,2088.1991138626518,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27600.0,0.0,0.0,24891.55,0.0,0.0,5,8,7.0,1,0.0 +11514,16161,3916.4505728906133,25.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17961.75,1400.0,17010.0,3,10,8.0,1,1.0 +11515,16162,2867.6059846998182,40.0,112,0.0,33,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37334.55,0.0,34610.0,2,7,0.0,4,2.0 +11516,16163,1470.400523723398,67.0,111,0.0,74,0.0,0.0,3.0,2.0,9730.0,0.0,0.0,53080.0,0.0,0.0,33548.05,0.0,0.0,1,8,7.0,4,0.0 +11517,16164,1610.8861871527356,61.0,112,1750.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24210.0,0.0,0.0,27401.55,0.0,0.0,1,6,0.0,3,0.0 +11518,16168,2309.756440943099,62.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38360.0,0.0,0.0,33923.1,0.0,0.0,1,8,0.0,1,0.0 +11519,16169,1530.7703614883471,81.0,112,0.0,71,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21620.0,0.0,0.0,21453.65,0.0,0.0,1,8,2.0,3,0.0 +11520,16170,2771.935346764864,77.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29570.0,0.0,0.0,29113.05,0.0,0.0,3,7,5.0,3,0.0 +11521,16171,2772.3900676584904,37.0,300,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19895.0,0.0,21150.0,3,0,0.0,1,1.0 +11522,16172,5408.193500967685,69.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14740.0,0.0,0.0,14740.0,0.0,0.0,1,9,7.0,1,0.0 +11523,16173,3973.1852214318674,27.0,111,0.0,67,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,41279.05,0.0,38800.0,3,9,7.0,4,2.0 +11524,16174,1891.3658652366169,57.0,112,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34817.25,0.0,36000.0,1,8,0.0,3,2.0 +11525,16175,2976.9127988894875,31.0,112,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39397.95,0.0,39530.0,3,5,0.0,4,2.0 +11526,16176,2336.520865785216,37.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,51788.2,0.0,54090.0,1,7,4.0,4,2.0 +11527,16177,2068.6907591300555,64.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29930.0,14.0,0.0,27169.45,0.0,0.0,1,7,1.0,1,0.0 +11528,16178,3248.6328048207142,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18720.0,0.0,0.0,18611.0,0.0,0.0,3,8,6.0,1,0.0 +11529,16180,3140.349267140644,48.0,111,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26847.8,830.0,20940.0,3,10,8.0,2,1.0 +11530,16181,1887.4817443328432,49.0,111,0.0,52,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37746.75,0.0,38830.0,2,5,4.0,4,2.0 +11531,16182,713.1074989727903,43.0,112,1410.0,64,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,33510.0,890.0,31430.0,3,9,2.0,4,2.0 +11532,16184,2535.3459143099058,60.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,6070.0,0.0,0.0,20611.7,710.0,15040.0,3,8,6.0,1,1.0 +11533,16185,1927.3225246568688,60.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18590.0,0.0,0.0,22357.5,0.0,0.0,1,9,7.0,3,0.0 +11534,16186,2940.7086829634936,52.0,111,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,5644.45,0.0,6050.0,3,9,7.0,4,1.0 +11535,16187,3677.0431204373813,21.0,111,6960.0,63,1.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37356.8,0.0,23520.0,3,8,6.0,4,1.0 +11536,16189,458.2064471280395,38.0,111,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,35486.55,190.0,24790.0,3,8,6.0,2,1.0 +11537,16190,2901.601841436508,69.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32030.0,0.0,0.0,26038.55,0.0,0.0,1,10,8.0,3,0.0 +11538,16191,1137.897640173917,52.0,112,0.0,34,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,62254.45,0.0,66050.0,2,9,3.0,4,2.0 +11539,16192,3741.348263617455,22.0,111,0.0,43,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12028.0,800.0,9500.0,3,9,7.0,1,1.0 +11540,16193,3310.487385072111,66.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33750.0,0.0,0.0,30827.438627097752,0.0,0.0,1,9,7.0,3,0.0 +11541,16194,1533.179919948976,50.0,111,6450.0,85,0.0,0.0,3.0,1.8,0.0,0.0,0.0,1390.0,0.0,0.0,19104.0,0.0,1460.0,3,8,7.0,2,0.0 +11542,16195,575.3322319536204,54.0,111,0.0,56,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,24755.571428571428,1020.0,9930.0,3,5,4.0,2,1.0 +11543,16196,2373.0891836162427,49.0,111,0.0,85,1.0,0.0,6.0,3.1,0.0,9810.0,0.0,0.0,0.0,0.0,29530.9,0.0,0.0,3,9,7.0,5,1.0 +11544,16197,1110.0746147450718,45.0,111,0.0,34,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34728.6,0.0,34480.0,3,10,8.0,2,1.0 +11545,16199,2123.446974921782,57.0,300,10830.0,00,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12802.4,0.0,1520.0,3,0,1.0,1,1.0 +11546,16200,1687.1721945702677,47.0,400,0.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20556.8,0.0,21090.0,2,0,0.0,1,1.0 +11547,16201,1399.3899042967025,36.0,111,0.0,63,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,26274.7,2220.0,16590.0,3,10,8.0,2,1.0 +11548,16202,3749.554040994681,28.0,111,1080.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13891.7,2070.0,10790.0,3,8,7.0,1,1.0 +11549,16203,2590.6619654647398,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25270.0,0.0,0.0,23448.25,0.0,0.0,3,10,8.0,1,0.0 +11550,16204,1994.8112237697912,39.0,111,0.0,21,1.0,0.0,5.0,2.4,0.0,10730.0,0.0,0.0,0.0,0.0,21830.0,0.0,0.0,2,10,8.0,4,1.0 +11551,16206,4438.038407876759,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,13950.0,0.0,0.0,13865.5,0.0,0.0,1,10,8.0,1,0.0 +11552,16208,1886.468879899746,65.0,112,0.0,72,0.0,0.0,2.0,1.5,9720.0,0.0,0.0,11800.0,0.0,0.0,48688.6,0.0,0.0,1,10,0.0,2,0.0 +11553,16209,3083.2159091592966,32.0,111,0.0,21,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48413.73432255618,0.0,48660.0,2,9,7.0,3,2.0 +11554,16210,3276.8652883715617,32.0,211,23210.0,22,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,29992.949999999997,0.0,17470.0,2,4,4.0,4,2.0 +11555,16211,1701.4223136472467,65.0,111,0.0,74,1.0,0.0,2.0,1.5,0.0,0.0,0.0,6500.0,0.0,0.0,5206.45,0.0,0.0,1,5,4.0,3,1.0 +11556,16213,2500.4958752382863,36.0,111,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50117.0,0.0,47490.0,2,9,7.0,4,2.0 +11557,16215,1983.6712048145096,37.0,221,0.0,13,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,118857.55,0.0,21650.0,2,1,1.0,4,2.0 +11558,16216,2875.715070176834,71.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11380.0,0.0,0.0,11079.7,0.0,0.0,1,8,0.0,1,0.0 +11559,16218,2455.1925390279075,40.0,300,0.0,67,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42266.9,0.0,41560.0,2,0,0.0,4,2.0 +11560,16219,2834.4770535000875,70.0,400,0.0,74,1.0,0.0,2.0,1.5,0.0,11540.0,0.0,29480.0,0.0,0.0,56482.65,0.0,0.0,1,0,0.0,2,1.0 +11561,16220,2434.0822466011373,46.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,10722.0,0.0,9460.0,1,10,8.0,2,1.0 +11562,16221,2820.1411916609613,34.0,300,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54341.6,0.0,48510.0,2,0,0.0,4,2.0 +11563,16222,1318.9679020873257,64.0,112,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30220.0,0.0,0.0,29515.2,0.0,0.0,1,8,1.0,3,0.0 +11564,16223,1906.239330737859,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,59620.0,0.0,0.0,54084.1,0.0,0.0,1,8,6.0,3,0.0 +11565,16226,1639.5095187773413,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23044.4,0.0,25670.0,1,7,5.0,1,1.0 +11566,16227,687.255926786468,27.0,211,0.0,52,1.0,0.0,3.0,1.6,0.0,5220.0,0.0,0.0,0.0,0.0,13537.55,0.0,0.0,3,2,3.0,2,1.0 +11567,16229,1156.472078168349,47.0,111,6810.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,12026.0,0.0,0.0,3,7,5.0,2,1.0 +11568,16231,1511.429474884384,43.0,112,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,62691.2,0.0,63370.0,2,7,0.0,4,2.0 +11569,16232,1110.0783634851261,43.0,111,0.0,55,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,11929.35,0.0,10900.0,3,6,5.0,2,1.0 +11570,16234,415.8779173087288,41.0,111,0.0,85,0.0,0.0,3.0,1.6,0.0,7170.0,0.0,0.0,0.0,0.0,16304.0,0.0,0.0,3,9,7.0,2,0.0 +11571,16235,2530.352391567363,78.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33850.0,0.0,0.0,36172.75,0.0,0.0,3,8,0.0,3,0.0 +11572,16236,1953.4987969346266,40.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37934.8,0.0,37860.0,2,8,1.0,4,2.0 +11573,16237,2474.877023076435,54.0,112,0.0,52,1.0,1.0,2.0,1.5,0.0,0.0,0.0,13790.0,0.0,0.0,31782.45,0.0,22050.0,1,9,1.0,3,1.0 +11574,16238,3580.180816013873,41.0,111,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,66377.9,0.0,60320.0,2,10,8.0,4,2.0 +11575,16239,2902.26243048335,74.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16170.0,0.0,0.0,15818.1,0.0,0.0,1,1,2.0,1,0.0 +11576,16240,1751.5430051211465,54.0,112,0.0,48,2.0,2.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,56181.85,0.0,60390.0,1,8,0.0,4,2.0 +11577,16241,3244.2527906032883,87.0,400,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16390.0,0.0,0.0,16429.0,0.0,0.0,5,0,0.0,3,0.0 +11578,16243,2208.403323695203,72.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,2240.0,7330.0,0.0,0.0,9507.75,0.0,0.0,1,0,0.0,1,0.0 +11579,16245,3882.673997584865,43.0,111,20370.0,52,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,32005.1,0.0,8310.0,3,10,8.0,4,2.0 +11580,16248,1904.7070680542831,49.0,112,5540.0,67,1.0,1.0,5.0,2.8,10980.0,0.0,0.0,0.0,0.0,0.0,39264.0,0.0,7310.0,3,8,0.0,4,1.0 +11581,16249,3190.33686508367,61.0,111,0.0,52,2.0,1.0,2.0,1.5,0.0,15340.0,0.0,2750.0,0.0,0.0,39687.0,0.0,22810.0,3,7,5.0,2,2.0 +11582,16250,2091.3703133700437,63.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21540.0,0.0,0.0,19677.6,0.0,0.0,3,8,0.0,1,0.0 +11583,16251,2122.3883385638173,23.0,111,0.0,81,1.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,14644.0,0.0,0.0,3,7,4.0,1,1.0 +11584,16253,3299.602748230569,28.0,112,0.0,56,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,15173.05,0.0,0.0,2,8,1.0,4,2.0 +11585,16254,2765.4859615189516,46.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,54444.05,0.0,60040.0,2,10,4.0,4,2.0 +11586,16258,2502.2765176618227,63.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15120.0,0.0,0.0,13047.25,0.0,0.0,1,8,7.0,1,0.0 +11587,16259,2247.346123154915,54.0,111,0.0,34,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,53441.920901678204,0.0,67860.0,1,6,4.0,1,1.0 +11588,16260,2539.164335753992,64.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39230.0,0.0,0.0,35352.7,0.0,0.0,1,8,6.0,3,0.0 +11589,16261,1683.4618029118587,58.0,111,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30182.15,0.0,36350.0,2,8,6.0,1,1.0 +11590,16262,3717.7951007679794,78.0,300,5950.0,77,1.0,0.0,2.0,1.5,0.0,19670.0,0.0,11080.0,0.0,0.0,41845.35,4710.0,0.0,1,0,0.0,2,1.0 +11591,16263,977.1412200280074,36.0,111,0.0,52,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41017.05,0.0,31620.0,2,9,7.0,4,2.0 +11592,16264,4139.581835601173,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22130.0,0.0,0.0,21295.85,0.0,0.0,3,10,8.0,1,0.0 +11593,16265,1620.0667685626595,51.0,300,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,37007.0,0.0,34920.0,2,0,0.0,4,2.0 +11594,16266,2630.715821693493,32.0,120,0.0,47,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,43570.0,81892.5,0.0,39380.0,1,0,0.0,5,2.0 +11595,16267,2969.8982487898097,44.0,111,450.0,68,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,28697.7,300.0,20500.0,3,7,5.0,4,1.0 +11596,16268,2230.3886247291116,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,239980.0,2569.0,0.0,388091.2676638519,0.0,433250.0,1,10,8.0,3,0.0 +11597,16269,3115.0666388711848,45.0,112,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,26507.4,0.0,29110.0,3,8,0.0,1,1.0 +11598,16272,1117.0001915314442,64.0,112,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29580.0,0.0,0.0,28381.8,0.0,0.0,1,10,1.0,3,0.0 +11599,16273,3207.523322010513,41.0,111,0.0,46,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41902.525,0.0,41580.0,1,6,4.0,4,2.0 +11600,16275,2693.820132996913,67.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,22980.0,0.0,0.0,23322.0,0.0,0.0,3,9,7.0,3,0.0 +11601,16276,5270.46549830006,41.0,400,0.0,85,0.0,0.0,1.0,1.0,9720.0,0.0,0.0,0.0,0.0,0.0,12780.0,0.0,0.0,3,0,1.0,1,0.0 +11602,16277,555.2315659201269,42.0,111,0.0,43,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35879.2,0.0,30890.0,2,6,4.0,2,1.0 +11603,16278,1820.5744955086525,55.0,111,0.0,44,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5562.0,0.0,5390.0,5,6,4.0,3,1.0 +11604,16279,4599.061512179116,66.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16890.0,0.0,0.0,16967.0,0.0,0.0,3,7,5.0,1,0.0 +11605,16280,2330.2945804534374,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52860.0,0.0,0.0,48303.75,0.0,70.0,1,9,7.0,3,0.0 +11606,16281,1961.3703274848976,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,62790.0,0.0,0.0,50623.00984640182,0.0,0.0,1,10,8.0,3,0.0 +11607,16283,4177.919175706803,52.0,111,5280.0,64,1.0,1.0,3.0,2.0,1420.0,0.0,0.0,6210.0,0.0,0.0,41351.4,0.0,30620.0,2,10,8.0,5,1.0 +11608,16285,1501.1538531326019,63.0,111,0.0,48,1.0,1.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,32566.0,0.0,24940.0,3,6,4.0,4,1.0 +11609,16286,1185.6034068530867,31.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28604.45,0.0,28590.0,3,9,7.0,2,1.0 +11610,16287,1845.3068611893327,47.0,221,0.0,37,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,42879.75,0.0,45260.0,1,3,4.0,4,2.0 +11611,16290,2203.421632647435,61.0,400,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42990.0,980.0,0.0,41085.5,0.0,0.0,1,0,0.0,3,0.0 +11612,16291,4177.422805891386,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21010.0,0.0,0.0,19742.521413108156,0.0,0.0,5,9,7.0,1,0.0 +11613,16292,2103.400037596333,66.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29540.0,0.0,0.0,29523.1,0.0,0.0,1,0,0.0,3,0.0 +11614,16294,1209.1828231919237,49.0,111,0.0,85,0.0,0.0,7.0,3.6,10980.0,0.0,0.0,0.0,0.0,0.0,41640.0,0.0,14280.0,3,8,7.0,4,0.0 +11615,16295,2139.681775533007,60.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3135.0,0.0,88184.48576846496,0.0,72460.0,1,9,7.0,3,2.0 +11616,16296,791.5338429471196,53.0,111,0.0,52,2.0,1.0,2.0,1.5,9720.0,7380.0,0.0,0.0,0.0,0.0,36714.3,0.0,20080.0,3,8,6.0,2,2.0 +11617,16297,4413.451354117976,61.0,111,0.0,,0.0,0.0,1.0,1.0,210.0,0.0,0.0,0.0,0.0,0.0,3786.0,0.0,0.0,3,10,8.0,1,0.0 +11618,16298,2479.302383032854,82.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21290.0,0.0,0.0,21010.2,0.0,0.0,3,8,7.0,1,0.0 +11619,16300,2553.0532635315903,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10954.0,0.0,2860.0,3,9,7.0,1,0.0 +11620,16302,1766.1923261811273,64.0,112,11280.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,1820.0,22.0,0.0,49866.45,0.0,39130.0,1,6,0.0,3,2.0 +11621,16306,3118.80228889234,57.0,111,9070.0,47,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16072.25,0.0,6750.0,3,7,5.0,1,1.0 +11622,16308,4815.7905546573265,25.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21905.0,0.0,23610.0,3,6,4.0,1,1.0 +11623,16309,3625.15886001928,76.0,111,0.0,78,0.0,0.0,2.0,1.5,7100.0,0.0,0.0,16230.0,0.0,0.0,22696.25,0.0,0.0,1,7,5.0,3,0.0 +11624,16315,6615.899418470609,28.0,111,1240.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14088.15,510.0,10100.0,3,10,8.0,1,1.0 +11625,16316,24453.781779600886,29.0,221,0.0,81,1.0,0.0,3.0,1.6,0.0,5720.0,0.0,0.0,0.0,0.0,14677.7,0.0,0.0,3,1,3.0,2,1.0 +11626,16318,2474.449205042402,53.0,111,810.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21094.3,0.0,20950.0,3,9,7.0,1,1.0 +11627,16319,1981.079296820757,36.0,111,0.0,62,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,36684.9,1550.0,21250.0,3,8,6.0,4,1.0 +11628,16321,3655.2451813523826,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12840.0,0.0,0.0,12615.1,0.0,0.0,1,7,5.0,1,0.0 +11629,16322,2360.7030030992896,33.0,111,1040.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41592.1,0.0,30190.0,2,8,7.0,4,2.0 +11630,16324,3295.984589239723,58.0,111,1010.0,64,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28974.3,0.0,30240.0,3,10,8.0,1,1.0 +11631,16326,1632.1970747238954,61.0,111,0.0,46,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,63441.75,0.0,52520.0,1,10,8.0,3,2.0 +11632,16328,1849.2902788900876,49.0,112,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,37710.4,0.0,39250.0,1,10,0.0,4,2.0 +11633,16329,2617.3858009747823,36.0,300,0.0,45,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,47516.15,0.0,47510.0,2,0,0.0,3,2.0 +11634,16330,6409.186220842072,51.0,111,0.0,85,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,16506.0,0.0,0.0,3,10,8.0,1,0.0 +11635,16331,1178.5681364804761,35.0,111,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,76848.0,0.0,90480.0,2,10,8.0,3,2.0 +11636,16332,1743.6876911812763,57.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,630.0,0.0,0.0,15696.35,0.0,13820.0,3,7,5.0,1,1.0 +11637,16333,2837.5698435077375,59.0,211,0.0,77,0.0,0.0,1.0,1.0,0.0,5820.0,0.0,0.0,0.0,0.0,8820.0,0.0,0.0,3,2,3.0,1,0.0 +11638,16336,1652.1565653299754,68.0,221,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,21500.0,0.0,0.0,27023.9,0.0,0.0,1,1,1.0,3,0.0 +11639,16337,2348.407748208665,66.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29090.0,0.0,0.0,34528.0,0.0,0.0,1,7,5.0,1,0.0 +11640,16338,2838.9216552998864,43.0,111,6310.0,38,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,59041.4,0.0,55080.0,2,9,7.0,4,2.0 +11641,16339,1428.9071661192597,68.0,111,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64880.0,0.0,0.0,60522.95,0.0,0.0,1,10,8.0,3,0.0 +11642,16341,338.28779178497297,45.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,16770.15,0.0,13960.0,1,9,7.0,2,1.0 +11643,16342,2005.4389909422407,50.0,111,0.0,23,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,225.0,0.0,79289.9,0.0,91920.0,5,8,6.0,3,2.0 +11644,16343,3108.1719338424186,59.0,112,0.0,21,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,21896.2,0.0,0.0,1,7,0.0,4,2.0 +11645,16348,1348.2866274261003,30.0,111,3200.0,63,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27605.25,0.0,12450.0,3,7,5.0,4,1.0 +11646,16349,2367.911844498738,39.0,112,2360.0,47,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,171.0,0.0,75298.25,0.0,75060.0,2,9,0.0,4,2.0 +11647,16351,421.01513833799936,59.0,300,0.0,42,2.0,2.0,2.0,1.5,0.0,0.0,0.0,10320.0,0.0,0.0,50535.95,0.0,45310.0,3,0,0.0,3,2.0 +11648,16353,1754.2314507795938,56.0,400,0.0,62,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,469.59999999999997,0.0,740.0,3,0,1.0,3,1.0 +11649,16354,3162.675903286709,49.0,400,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13611.1,0.0,14690.0,1,0,0.0,1,1.0 +11650,16355,6479.781234933992,43.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18230.5,0.0,19400.0,3,9,7.0,1,1.0 +11651,16356,2325.954624761662,32.0,111,0.0,48,1.0,1.0,6.0,2.7,0.0,0.0,0.0,0.0,0.0,0.0,26273.7,60.0,750.0,3,10,8.0,4,1.0 +11652,16357,2493.9507935489783,53.0,111,0.0,52,1.0,1.0,5.0,2.8,0.0,0.0,0.0,16810.0,0.0,0.0,27720.5,0.0,11450.0,3,10,8.0,4,1.0 +11653,16358,900.8297356844881,53.0,211,0.0,68,1.0,0.0,1.0,1.0,0.0,4850.0,0.0,0.0,0.0,0.0,9337.0,540.0,940.0,3,4,3.0,1,1.0 +11654,16359,2773.9404821870116,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31010.0,0.0,0.0,29362.85,0.0,0.0,3,10,8.0,3,0.0 +11655,16360,1970.2720839770411,72.0,300,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24100.0,0.0,0.0,23186.6,0.0,0.0,1,0,0.0,3,0.0 +11656,16362,1667.7015117389576,56.0,111,0.0,38,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,58828.25,0.0,63760.0,1,10,8.0,4,2.0 +11657,16363,4339.386173260593,24.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20759.8,0.0,22360.0,3,9,7.0,1,1.0 +11658,16365,2344.671644088768,61.0,112,0.0,56,1.0,1.0,3.0,2.0,9720.0,0.0,0.0,21740.0,0.0,0.0,44170.1,0.0,15370.0,2,7,0.0,4,1.0 +11659,16366,1672.704859948196,77.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38720.0,0.0,0.0,43535.05,0.0,0.0,1,8,0.0,3,0.0 +11660,16367,2868.769056015798,42.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20636.5,0.0,22020.0,3,10,8.0,1,1.0 +11661,16369,619.2719245977947,36.0,111,2970.0,54,1.0,1.0,4.0,1.9,0.0,0.0,0.0,0.0,0.0,0.0,36249.25,0.0,17680.0,3,9,7.0,2,1.0 +11662,16370,4699.908336830679,30.0,111,0.0,56,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7682.8,0.0,7560.0,3,10,8.0,1,1.0 +11663,16372,2985.657976437696,67.0,111,0.0,78,0.0,0.0,3.0,2.0,9700.0,0.0,0.0,35690.0,0.0,0.0,43977.75,0.0,0.0,1,7,5.0,4,0.0 +11664,16374,2299.2430109771985,33.0,300,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42889.6,0.0,33360.0,2,0,0.0,4,2.0 +11665,16375,1849.4820714191164,65.0,111,0.0,31,1.0,1.0,2.0,1.5,0.0,0.0,0.0,33380.0,0.0,0.0,112731.75,0.0,0.0,1,7,5.0,3,1.0 +11666,16376,2277.6060233866856,60.0,111,0.0,43,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51211.11587181189,0.0,60150.0,1,10,8.0,3,1.0 +11667,16377,2774.599059493658,55.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,33600.0,0.0,0.0,29433.8,0.0,0.0,3,9,7.0,1,0.0 +11668,16378,1483.5265214018455,64.0,112,5620.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,3340.0,0.0,0.0,36348.7,0.0,30330.0,1,9,0.0,3,2.0 +11669,16379,1645.585865661505,68.0,300,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,13110.0,0.0,0.0,20876.45,0.0,7940.0,3,0,1.0,1,1.0 +11670,16381,3068.0148259958387,83.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,40230.0,0.0,0.0,33839.05,0.0,0.0,1,9,7.0,1,0.0 +11671,16382,3062.865008676371,32.0,112,4810.0,52,2.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,35161.65,0.0,26230.0,2,7,0.0,4,2.0 +11672,16383,3113.439917792602,43.0,111,0.0,42,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33159.05,0.0,34860.0,3,10,8.0,2,1.0 +11673,16385,2578.9831581756794,40.0,111,0.0,22,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51491.5,0.0,29110.0,2,9,7.0,3,2.0 +11674,16387,1485.1197176255016,59.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,36007.2,0.0,34560.0,1,8,0.0,3,2.0 +11675,16388,2514.168217923985,39.0,300,0.0,47,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,49646.25,0.0,51720.0,1,0,0.0,4,2.0 +11676,16389,1824.8566516144188,58.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33054.0,0.0,34100.0,3,8,7.0,2,1.0 +11677,16391,1768.4499625694605,33.0,111,0.0,69,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,7032.0,46663.15,0.0,29940.0,2,6,4.0,4,2.0 +11678,16392,3282.781591821071,75.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16220.0,0.0,0.0,15945.2,0.0,0.0,3,10,8.0,1,0.0 +11679,16393,3414.64381490344,54.0,111,0.0,77,1.0,0.0,2.0,1.5,0.0,5080.0,0.0,0.0,0.0,0.0,9112.45,0.0,0.0,3,7,5.0,2,1.0 +11680,16394,4917.518191288829,82.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19970.0,0.0,0.0,20979.4,0.0,0.0,3,10,8.0,1,0.0 +11681,16395,2509.751889722634,54.0,111,0.0,48,3,3.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,58438.75,0.0,62990.0,1,9,7.0,4,3.0 +11682,16396,7192.0306340649495,40.0,111,0.0,21,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,32466.5,0.0,30970.0,3,10,8.0,4,2.0 +11683,16397,804.3720443090043,36.0,111,760.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,4.0,0.0,35191.4,0.0,22020.0,2,9,7.0,2,1.0 +11684,16398,1945.8566753166072,55.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,12737.25,2680.0,8250.0,3,6,4.0,1,1.0 +11685,16399,1782.115569382494,32.0,111,0.0,53,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,30013.9,1800.0,15650.0,3,8,6.0,4,1.0 +11686,16401,1453.644872340171,52.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,74332.25,0.0,79700.0,3,10,8.0,2,2.0 +11687,16402,2737.8774188843227,58.0,111,0.0,65,2.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21530.85,0.0,23580.0,3,8,7.0,3,2.0 +11688,16403,5812.479810557637,32.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,25169.6,0.0,27750.0,3,10,8.0,1,1.0 +11689,16404,2909.251349065615,55.0,120,0.0,67,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22093.8,0.0,24090.0,1,0,1.0,1,1.0 +11690,16405,2434.7855784390995,80.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27040.0,0.0,0.0,27985.85,0.0,0.0,3,9,7.0,3,0.0 +11691,16408,2122.160407098327,67.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54620.0,0.0,0.0,50742.3854508391,0.0,0.0,1,6,0.0,3,0.0 +11692,16410,569.0698535467129,47.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,19394.3,3650.0,11410.0,3,6,4.0,2,1.0 +11693,16413,4054.2407225378715,39.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,506.0,0.0,29548.95,0.0,33990.0,2,10,8.0,1,1.0 +11694,16414,3167.6167201891253,56.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,95840.45,0.0,22050.0,3,9,7.0,3,2.0 +11695,16415,2850.5846584118335,64.0,111,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,18730.0,0.0,0.0,69023.1,0.0,0.0,1,9,7.0,3,2.0 +11696,16416,2098.6492324873525,47.0,111,0.0,47,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,96678.85,0.0,85440.0,1,10,8.0,4,2.0 +11697,16418,1966.3398886729894,62.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21490.0,0.0,0.0,20102.85,0.0,280.0,2,8,0.0,1,0.0 +11698,16421,2830.8504985795666,33.0,111,13010.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,247.0,0.0,48322.9,0.0,35560.0,3,9,7.0,4,2.0 +11699,16423,2988.61955382302,67.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,83500.0,331.0,0.0,72913.70353277039,0.0,0.0,1,9,7.0,3,0.0 +11700,16427,3133.103926115992,22.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,7600.0,0.0,7600.0,3,7,5.0,1,1.0 +11701,16428,2311.281086326827,47.0,112,0.0,56,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,26351.55,0.0,23740.0,2,8,0.0,4,2.0 +11702,16430,3092.3314845686305,60.0,300,2310.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,18570.0,0.0,0.0,71048.75,0.0,49270.0,1,0,0.0,2,1.0 +11703,16432,3432.407383688559,37.0,111,380.0,63,1.0,0.0,6.0,2.7,0.0,7510.0,0.0,0.0,0.0,0.0,17560.0,800.0,1480.0,3,9,7.0,4,1.0 +11704,16433,1839.784236400497,51.0,111,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,45509.15,0.0,46820.0,1,8,7.0,4,2.0 +11705,16435,705.8762494492364,43.0,111,0.0,52,1.0,1.0,3.0,1.8,0.0,0.0,0.0,4380.0,0.0,0.0,37047.75,0.0,25900.0,3,9,7.0,2,1.0 +11706,16436,2122.348915662259,71.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28850.0,0.0,0.0,26005.8,0.0,0.0,1,8,7.0,1,0.0 +11707,16437,2521.9972653499003,57.0,112,0.0,31,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,3726.0,0.0,67013.3,0.0,14290.0,1,10,2.0,3,2.0 +11708,16439,2343.108862877311,70.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,31120.0,0.0,0.0,26498.45,0.0,0.0,1,8,7.0,1,0.0 +11709,16440,2155.39753077563,72.0,400,0.0,72,1.0,0.0,2.0,1.5,0.0,0.0,1100.0,13790.0,0.0,0.0,14110.0,0.0,0.0,5,0,0.0,3,1.0 +11710,16442,3459.03047103771,24.0,111,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,31896.3,0.0,35400.0,2,4,3.0,3,2.0 +11711,16443,3613.4001706328872,44.0,111,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,46865.1,0.0,54810.0,1,10,8.0,1,1.0 +11712,16445,734.8765214910516,39.0,111,0.0,56,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,25844.2,500.0,23740.0,3,10,8.0,2,1.0 +11713,16447,3362.1672631480815,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1248.55,0.0,1300.0,1,9,7.0,1,0.0 +11714,16448,2189.3881060504455,54.0,112,18130.0,48,3,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,51108.9,0.0,36930.0,2,10,2.0,4,3.0 +11715,16449,3360.1305160748775,32.0,111,0.0,37,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,80813.05,0.0,89960.0,2,10,8.0,4,2.0 +11716,16450,1473.0733720433655,75.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,86730.0,0.0,0.0,71357.3875761182,0.0,0.0,1,10,0.0,3,0.0 +11717,16452,1091.523164593775,56.0,111,0.0,34,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,79326.45,0.0,73750.0,2,6,5.0,4,2.0 +11718,16454,2594.6246068346873,33.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,51171.45,0.0,57860.0,2,8,7.0,3,2.0 +11719,16455,3255.7741979304324,90.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,9040.0,0.0,0.0,9134.0,0.0,0.0,3,9,1.0,1,0.0 +11720,16456,2493.127861127673,67.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24980.0,62.0,0.0,22796.55,0.0,0.0,3,9,7.0,1,0.0 +11721,16457,460.9142046650603,40.0,112,0.0,67,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21354.7,2610.0,16730.0,3,7,0.0,2,1.0 +11722,16458,2433.8159805071236,54.0,111,5950.0,68,3,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,17181.4,0.0,9400.0,2,10,8.0,4,3.0 +11723,16459,1955.5790552667982,52.0,111,0.0,38,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,189.0,0.0,60988.2,0.0,70830.0,1,10,8.0,3,2.0 +11724,16460,3455.1641538296485,74.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17840.0,0.0,0.0,17023.2,0.0,0.0,1,4,3.0,1,0.0 +11725,16462,1939.5219865544295,69.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40390.0,0.0,0.0,37191.1,0.0,0.0,1,8,1.0,3,0.0 +11726,16465,438.4083081617234,40.0,112,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,31613.8,0.0,32220.0,2,7,1.0,2,1.0 +11727,16466,5402.359997514594,82.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21640.0,0.0,0.0,21738.75,0.0,0.0,1,10,8.0,1,0.0 +11728,16467,5135.350567943196,24.0,111,4680.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20903.6,0.0,15420.0,3,9,7.0,1,1.0 +11729,16468,3737.2314656399512,37.0,112,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,28014.5,0.0,29780.0,3,6,0.0,1,1.0 +11730,16470,2278.450299750959,29.0,300,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,100.0,0.0,47039.85,0.0,51060.0,1,0,0.0,3,2.0 +11731,16471,3342.384372256095,80.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22900.0,12.0,0.0,20016.541803356406,0.0,0.0,1,8,7.0,1,0.0 +11732,16472,1646.4656839833967,76.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19100.0,0.0,0.0,18861.85,0.0,0.0,3,4,3.0,1,0.0 +11733,16473,335.31252002013997,48.0,112,9610.0,85,0.0,0.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,28153.55,0.0,0.0,3,6,0.0,2,0.0 +11734,16474,648.579796625198,51.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,13970.0,0.0,0.0,27293.4,0.0,6750.0,2,5,4.0,2,1.0 +11735,16475,2905.6819855488993,38.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21798.8,0.0,22360.0,3,7,5.0,2,1.0 +11736,16476,3816.709404945862,69.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,28650.0,0.0,0.0,26101.0,0.0,0.0,3,10,8.0,1,0.0 +11737,16478,1064.978688389151,44.0,111,460.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,14035.0,0.0,8500.0,3,10,8.0,2,1.0 +11738,16481,2623.8501433422716,36.0,300,0.0,12,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,32897.5,0.0,25280.0,1,0,0.0,4,2.0 +11739,16482,2101.199479226998,77.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28340.0,0.0,0.0,27872.0,0.0,0.0,3,8,7.0,3,0.0 +11740,16483,2446.727218394169,56.0,111,0.0,47,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,56666.15,0.0,59580.0,3,9,7.0,4,2.0 +11741,16484,3438.2108925395905,45.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22243.0,0.0,21400.0,3,5,4.0,2,1.0 +11742,16485,4338.316936809469,48.0,111,0.0,31,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,30036.25,420.0,0.0,3,8,6.0,4,1.0 +11743,16488,1729.832822127644,45.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,67951.8,0.0,68880.0,3,9,7.0,4,2.0 +11744,16489,4068.9541777354766,78.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,1650.0,7940.0,0.0,0.0,12722.0,0.0,0.0,3,7,6.0,1,0.0 +11745,16490,668.7125085122767,45.0,111,0.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,32123.2,0.0,30800.0,2,8,6.0,2,1.0 +11746,16491,3073.605989478028,28.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15631.1,950.0,14150.0,3,0,0.0,1,1.0 +11747,16492,3420.1056660099052,80.0,112,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,11180.0,0.0,0.0,11329.0,0.0,0.0,5,7,0.0,1,0.0 +11748,16493,2634.137863221785,51.0,300,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10562.95,1630.0,9100.0,3,0,0.0,1,1.0 +11749,16495,2607.477064810774,69.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23750.0,0.0,0.0,24065.75,0.0,0.0,3,8,7.0,3,0.0 +11750,16498,4659.46292209198,35.0,111,6810.0,56,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,19996.9,570.0,6330.0,3,9,7.0,4,2.0 +11751,16499,2938.4187144032144,24.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23732.85,590.0,19460.0,3,9,7.0,1,1.0 +11752,16500,1636.8121051351654,62.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23350.0,0.0,0.0,25222.45,0.0,3090.0,1,8,0.0,3,0.0 +11753,16501,3300.113289050684,61.0,221,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,64967.5,0.0,18350.0,1,1,1.0,1,1.0 +11754,16502,2182.12082931686,84.0,300,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33380.0,0.0,0.0,32824.4,0.0,0.0,1,0,0.0,3,0.0 +11755,16503,658.0494257432196,46.0,221,0.0,85,0.0,0.0,2.0,1.5,0.0,6460.0,0.0,0.0,0.0,0.0,11060.0,0.0,0.0,3,1,3.0,2,0.0 +11756,16505,4238.17039558632,32.0,120,0.0,22,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13358.0,0.0,13410.0,3,0,3.0,1,1.0 +11757,16507,3392.848501344154,21.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,3929.0,0.0,0.0,5,8,7.0,1,0.0 +11758,16508,1568.0500538879633,70.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,3410.0,6170.0,0.0,0.0,12472.0,0.0,0.0,3,8,7.0,1,0.0 +11759,16509,2661.5459719867654,64.0,112,0.0,72,1.0,1.0,2.0,1.5,0.0,0.0,0.0,15530.0,0.0,0.0,26792.35,0.0,0.0,1,7,0.0,3,1.0 +11760,16510,1659.802713825052,55.0,120,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44313.35,0.0,43610.0,1,0,0.0,3,1.0 +11761,16511,244.2293172583845,34.0,300,0.0,85,0.0,0.0,5.0,2.2,0.0,5830.0,0.0,0.0,0.0,0.0,20432.0,0.0,0.0,3,0,0.0,2,0.0 +11762,16512,2859.6197857866123,33.0,111,5310.0,45,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,22.0,0.0,45824.1,0.0,32660.0,3,8,7.0,4,2.0 +11763,16513,3392.442615584708,33.0,111,0.0,47,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19146.7,400.0,18440.0,3,9,7.0,1,1.0 +11764,16514,2331.1038094231567,52.0,111,0.0,42,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20799.5,0.0,24300.0,1,6,4.0,1,1.0 +11765,16515,2273.9840371167325,22.0,300,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33310.45,0.0,34310.0,3,0,0.0,3,2.0 +11766,16516,4051.6299117194512,79.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19450.0,0.0,0.0,17885.0,0.0,0.0,1,10,8.0,1,0.0 +11767,16518,2794.8591216220525,64.0,300,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,12840.0,0.0,0.0,23617.35,0.0,8710.0,1,0,0.0,3,1.0 +11768,16519,3573.0981525418943,62.0,112,5950.0,78,1.0,0.0,2.0,1.5,0.0,0.0,5170.0,3240.0,0.0,0.0,15357.0,0.0,0.0,1,8,1.0,2,1.0 +11769,16523,3703.342523979541,55.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31923.6,0.0,35690.0,3,10,8.0,1,1.0 +11770,16524,2579.370570631053,81.0,112,0.0,72,0.0,0.0,2.0,1.5,9700.0,0.0,0.0,13480.0,0.0,0.0,23432.0,0.0,0.0,1,10,1.0,2,0.0 +11771,16525,2792.8995872467913,30.0,111,0.0,85,0.0,0.0,1.0,1.0,5580.0,0.0,0.0,0.0,0.0,0.0,10652.0,0.0,70.0,3,9,7.0,1,0.0 +11772,16526,2208.9537784568147,35.0,111,0.0,63,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,21116.3,0.0,15040.0,1,7,5.0,4,2.0 +11773,16527,3154.0230492131786,52.0,111,0.0,22,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,26402.05,0.0,20050.0,1,9,7.0,4,2.0 +11774,16528,1189.0911993386972,46.0,111,0.0,52,2.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,28633.205082013843,0.0,21890.0,3,7,6.0,2,2.0 +11775,16529,295.94287351370036,42.0,300,320.0,55,1.0,1.0,3.0,1.6,0.0,1350.0,0.0,0.0,0.0,0.0,20300.9,940.0,7140.0,3,0,0.0,2,1.0 +11776,16530,2525.4943834661817,44.0,221,1690.0,55,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,37828.4,0.0,35000.0,3,1,2.0,4,2.0 +11777,16531,2719.768033152916,85.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38750.0,0.0,0.0,34220.7,0.0,0.0,1,8,6.0,3,0.0 +11778,16532,625.9916836303502,35.0,111,0.0,62,2.0,2.0,6.0,2.9,0.0,0.0,0.0,0.0,0.0,0.0,68036.65,0.0,50120.0,3,5,4.0,4,2.0 +11779,16533,3129.2985581098164,61.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15350.0,0.0,0.0,17971.85,0.0,3960.0,3,10,8.0,1,0.0 +11780,16534,3464.728761440415,54.0,111,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,31140.0,0.0,0.0,37659.65,0.0,2440.0,3,6,4.0,3,1.0 +11781,16537,1897.4480226930186,52.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26483.0,0.0,26990.0,2,4,3.0,3,2.0 +11782,16538,3292.429803565126,37.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,58.0,0.0,86649.45,0.0,91420.0,2,10,8.0,4,2.0 +11783,16540,4950.684487875325,32.0,111,1280.0,54,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29418.05,1860.0,24650.0,3,8,6.0,5,2.0 +11784,16541,1593.2956158211796,57.0,111,3220.0,62,2.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,35067.7,0.0,18980.0,3,9,7.0,4,2.0 +11785,16542,901.7659545952417,50.0,111,0.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22627.75,0.0,22540.0,3,8,7.0,2,1.0 +11786,16543,1974.2422292912202,58.0,111,8530.0,54,3,2.0,3.0,2.0,0.0,2800.0,0.0,0.0,0.0,0.0,45287.85,1610.0,34700.0,1,6,4.0,2,3.0 +11787,16545,3147.2414805416092,87.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,4050.0,5380.0,0.0,0.0,12671.0,0.0,0.0,3,8,7.0,1,0.0 +11788,16546,3001.3848072023784,33.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,18178.55,0.0,19080.0,3,9,7.0,1,1.0 +11789,16547,988.2223790725295,32.0,112,0.0,85,1.0,0.0,3.0,1.8,9720.0,30.0,0.0,0.0,0.0,0.0,13994.0,0.0,0.0,3,9,1.0,4,1.0 +11790,16548,1977.9601965042352,30.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,44731.6,0.0,43160.0,2,9,7.0,3,2.0 +11791,16551,4512.335884887072,85.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,38560.0,0.0,0.0,39960.703532770385,0.0,0.0,1,6,4.0,1,0.0 +11792,16552,736.9603355103272,59.0,211,14150.0,78,0.0,0.0,2.0,1.5,2980.0,0.0,0.0,420.0,0.0,0.0,18145.6,0.0,1250.0,1,4,3.0,3,0.0 +11793,16554,2298.504840096311,57.0,112,8130.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26470.0,0.0,0.0,46249.05,0.0,17160.0,1,7,4.0,3,1.0 +11794,16555,2301.3578041192413,87.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,29720.0,0.0,0.0,28356.8,0.0,0.0,1,9,7.0,3,0.0 +11795,16557,4230.342247362673,82.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,19580.0,0.0,0.0,19243.75,0.0,0.0,5,8,7.0,1,0.0 +11796,16558,1542.9250644418455,60.0,112,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34582.15,0.0,39580.0,1,9,3.0,1,1.0 +11797,16559,2129.9958141567045,54.0,111,0.0,78,1.0,0.0,2.0,1.5,10960.0,0.0,0.0,0.0,0.0,0.0,13353.0,0.0,0.0,3,8,7.0,3,1.0 +11798,16560,2618.8417705654583,58.0,111,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,2765.0,0.0,102291.6,0.0,65340.0,1,9,7.0,4,2.0 +11799,16562,2451.521093975057,53.0,111,550.0,53,1.0,1.0,8.0,3.9,0.0,0.0,0.0,0.0,0.0,0.0,38378.25,1930.0,15860.0,3,9,7.0,4,1.0 +11800,16564,737.2978340261153,55.0,111,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,250.0,0.0,84595.25,0.0,97780.0,2,6,5.0,2,1.0 +11801,16565,1930.879998073692,74.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40670.0,0.0,0.0,37722.85,0.0,0.0,1,9,7.0,3,0.0 +11802,16566,877.4681841584319,51.0,221,0.0,65,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,15444.05,1270.0,11500.0,3,1,2.0,1,1.0 +11803,16568,1990.7970784614731,63.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23960.0,0.0,0.0,23179.2,0.0,120.0,1,8,0.0,3,0.0 +11804,16569,2530.4732568278196,86.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,29910.0,0.0,0.0,26476.6,0.0,0.0,1,9,7.0,1,0.0 +11805,16570,2309.275367659439,59.0,111,0.0,78,0.0,0.0,3.0,2.0,9720.0,0.0,0.0,0.0,0.0,0.0,14723.0,0.0,0.0,3,8,7.0,4,0.0 +11806,16571,2986.7497255480807,60.0,111,0.0,78,0.0,0.0,2.0,1.5,9700.0,0.0,0.0,0.0,0.0,0.0,12966.0,0.0,0.0,3,9,7.0,2,0.0 +11807,16572,1943.1554370387344,77.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39400.0,110.0,0.0,36874.85,0.0,0.0,1,6,5.0,3,0.0 +11808,16575,673.3030888127446,49.0,221,0.0,68,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,18899.25,0.0,14570.0,3,1,2.0,2,1.0 +11809,16576,2931.5871451391085,81.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16320.0,0.0,0.0,16536.3,0.0,0.0,1,8,2.0,1,0.0 +11810,16577,4503.3786234986155,32.0,120,5630.0,85,0.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,22674.3,0.0,15750.0,2,0,0.0,2,0.0 +11811,16578,623.3807717779354,47.0,111,0.0,56,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,42086.0,1470.0,37330.0,3,9,7.0,2,2.0 +11812,16581,2301.736367093443,42.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,14563.5,1380.0,13290.0,3,9,3.0,1,1.0 +11813,16582,3697.804318520147,68.0,112,0.0,77,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14940.0,0.0,0.0,29356.05,930.0,10940.0,3,9,1.0,2,1.0 +11814,16584,2272.938411578205,58.0,111,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53807.8,0.0,59850.0,2,6,5.0,3,2.0 +11815,16585,2052.249075593559,39.0,112,0.0,53,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,42155.5,0.0,40360.0,2,7,0.0,4,2.0 +11816,16588,774.7776600908666,50.0,111,0.0,43,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21272.15,1200.0,17510.0,3,9,7.0,2,1.0 +11817,16589,1345.3181382317648,64.0,400,2710.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,14860.0,0.0,0.0,28378.85,0.0,11570.0,1,0,1.0,3,2.0 +11818,16590,4500.510927191081,48.0,112,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,23240.0,0.0,0.0,48853.7,0.0,29460.0,1,9,0.0,5,1.0 +11819,16591,3429.280933167285,71.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30620.0,0.0,0.0,17479.30140715796,0.0,0.0,1,6,4.0,3,0.0 +11820,16592,1893.9278258902818,74.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,99410.0,609.0,45.0,94941.57449075188,0.0,0.0,1,8,3.0,3,0.0 +11821,16593,1790.1474662371006,36.0,300,0.0,54,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,36.0,0.0,38533.8,0.0,36410.0,2,0,0.0,4,2.0 +11822,16595,637.2346274105024,33.0,111,0.0,85,0.0,0.0,5.0,2.4,0.0,3120.0,0.0,0.0,0.0,0.0,25617.0,0.0,0.0,3,8,7.0,2,0.0 +11823,16597,3634.5402076598025,45.0,111,0.0,56,2.0,1.0,4.0,2.1,0.0,580.0,0.0,0.0,0.0,0.0,28392.0,6360.0,12690.0,3,6,4.0,4,2.0 +11824,16598,1265.7216640395768,36.0,112,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,82000.0,97708.9,0.0,6270.0,3,8,1.0,4,2.0 +11825,16599,3365.1515549748874,41.0,211,6000.0,48,1.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9072.0,0.0,0.0,3,3,4.0,1,1.0 +11826,16600,2542.268661362404,56.0,300,24780.0,78,3,2.0,5.0,3.0,0.0,0.0,0.0,0.0,2.0,0.0,53742.45,1210.0,30760.0,1,0,1.0,5,3.0 +11827,16602,587.0368326712191,44.0,111,0.0,55,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,25713.85,4220.0,15910.0,3,8,6.0,2,1.0 +11828,16603,2365.8685577618885,61.0,300,0.0,37,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,75767.8,0.0,90400.0,1,0,0.0,4,1.0 +11829,16605,2055.6722726404964,47.0,111,0.0,37,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,66626.2,0.0,82780.0,2,7,5.0,2,1.0 +11830,16607,1576.5278372880105,66.0,112,0.0,23,1.0,1.0,2.0,1.5,0.0,0.0,0.0,47060.0,0.0,0.0,72792.55,0.0,57980.0,1,8,0.0,3,1.0 +11831,16609,1919.330744866761,86.0,120,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15060.0,0.0,0.0,14704.0,0.0,0.0,1,0,0.0,1,0.0 +11832,16610,1558.7932307684525,71.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,35850.0,0.0,0.0,34632.85,0.0,60.0,1,5,4.0,3,0.0 +11833,16612,2328.440611439469,33.0,112,0.0,64,2.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,29551.25,1740.0,16570.0,3,7,0.0,4,2.0 +11834,16614,2273.3452074208085,68.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16110.0,0.0,0.0,18080.333023608608,0.0,0.0,1,8,7.0,1,0.0 +11835,16615,658.5505143585605,43.0,112,0.0,85,0.0,0.0,5.0,2.6,0.0,5200.0,0.0,0.0,0.0,0.0,24078.7,0.0,0.0,2,8,0.0,2,0.0 +11836,16617,2240.1980302431075,81.0,300,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15680.0,0.0,0.0,14920.1,0.0,0.0,1,0,1.0,1,0.0 +11837,16618,886.142036687957,31.0,111,0.0,85,0.0,0.0,4.0,1.9,0.0,6690.0,0.0,0.0,0.0,0.0,13220.0,0.0,0.0,3,8,6.0,2,0.0 +11838,16619,2309.2936175146174,30.0,111,0.0,65,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,50769.5,0.0,48600.0,3,8,7.0,4,2.0 +11839,16621,2449.6176495820837,58.0,112,0.0,46,1.0,1.0,3.0,2.0,0.0,0.0,0.0,21240.0,0.0,0.0,45282.0,0.0,28580.0,1,6,0.0,4,1.0 +11840,16623,1775.3959635477,64.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,26920.0,0.0,0.0,19675.2,0.0,0.0,1,0,2.0,1,0.0 +11841,16624,3013.566164177408,55.0,111,820.0,45,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,33763.8,190.0,31160.0,1,10,8.0,4,2.0 +11842,16625,2198.560226333559,48.0,112,0.0,65,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,56882.75,0.0,52620.0,2,9,3.0,4,2.0 +11843,16626,1741.9587433081526,44.0,111,0.0,55,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,19239.9,2240.0,12450.0,2,9,7.0,2,1.0 +11844,16627,683.9633735089636,30.0,111,3230.0,67,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,20584.5,590.0,11190.0,3,9,7.0,2,1.0 +11845,16628,867.4890502589247,44.0,300,1900.0,56,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,31310.1,0.0,14010.0,1,0,0.0,2,1.0 +11846,16629,667.2437551113518,74.0,111,0.0,75,1.0,1.0,4.0,2.3,9720.0,0.0,0.0,15330.0,0.0,0.0,38538.0,0.0,8370.0,4,9,7.0,5,1.0 +11847,16630,3854.431554501941,60.0,112,31080.0,75,1.0,1.0,3.0,2.0,0.0,0.0,0.0,14730.0,0.0,0.0,67370.25,0.0,29090.0,2,10,2.0,4,1.0 +11848,16631,2162.4504190760467,42.0,111,0.0,45,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39024.05,0.0,34440.0,3,9,7.0,4,2.0 +11849,16633,2780.7594480169532,44.0,111,0.0,33,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,74712.05,0.0,72660.0,2,6,4.0,4,2.0 +11850,16634,1437.0972646070043,69.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,56970.0,0.0,0.0,56619.4701631067,0.0,0.0,1,8,7.0,3,0.0 +11851,16635,13160.42532713696,90.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22850.0,0.0,0.0,23062.6,0.0,0.0,3,9,7.0,1,0.0 +11852,16636,4640.080953670883,77.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15480.0,0.0,0.0,15480.0,0.0,0.0,3,8,7.0,1,0.0 +11853,16638,720.2524503687755,52.0,111,0.0,67,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39999.6,330.0,38840.0,3,9,7.0,2,1.0 +11854,16639,1749.9642318082017,57.0,111,3800.0,33,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,42018.9,0.0,44600.0,1,9,7.0,3,2.0 +11855,16642,991.5525960443227,28.0,111,0.0,84,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26537.45,0.0,11040.0,3,9,7.0,3,1.0 +11856,16643,2035.6562220502235,57.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20358.0,0.0,21760.0,5,6,4.0,1,1.0 +11857,16645,1489.2634210330955,38.0,111,0.0,55,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,6693.5,0.0,6340.0,5,9,7.0,2,1.0 +11858,16646,1874.6164603584286,72.0,400,0.0,78,0.0,0.0,2.0,1.5,9720.0,0.0,110.0,14720.0,42.0,0.0,24214.5,0.0,0.0,1,0,0.0,3,0.0 +11859,16647,2995.70939161484,34.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23948.5,0.0,25990.0,2,10,8.0,1,1.0 +11860,16648,2046.0138452459498,76.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,58960.0,0.0,0.0,55089.7,0.0,0.0,1,9,0.0,3,0.0 +11861,16649,1779.6733270475563,49.0,400,0.0,62,2.0,2.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,40024.0,0.0,38390.0,2,0,0.0,4,2.0 +11862,16651,2998.759744478049,68.0,111,0.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,22110.0,13.0,0.0,36754.0,0.0,17370.0,3,10,8.0,3,1.0 +11863,16652,1886.6387199211542,66.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23770.0,0.0,0.0,21481.95,0.0,0.0,1,6,4.0,1,0.0 +11864,16653,3280.4965548923233,70.0,111,0.0,46,1.0,0.0,1.0,1.0,0.0,0.0,0.0,16670.0,0.0,0.0,46505.15,0.0,29140.0,3,10,8.0,1,1.0 +11865,16654,1915.1522151548843,43.0,120,0.0,67,1.0,1.0,2.0,1.5,6980.0,0.0,0.0,0.0,0.0,0.0,23474.2,0.0,17260.0,2,0,0.0,3,1.0 +11866,16655,2635.378192474431,63.0,111,3000.0,21,3,2.0,3.0,2.0,0.0,0.0,0.0,23420.0,0.0,0.0,63476.3,0.0,45880.0,2,9,7.0,4,3.0 +11867,16658,2053.000387350336,70.0,111,0.0,22,2.0,1.0,3.0,1.8,0.0,0.0,0.0,54950.0,0.0,0.0,67802.63862709775,0.0,23680.0,1,10,8.0,4,2.0 +11868,16659,3373.5189204709363,63.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,9040.0,3250.0,5790.0,5,9,7.0,1,1.0 +11869,16660,3241.606486916171,45.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20119.15,0.0,21230.0,3,8,6.0,1,1.0 +11870,16661,497.58532237756936,31.0,112,0.0,34,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,28628.15,0.0,22400.0,3,8,0.0,2,1.0 +11871,16663,3027.734140005127,32.0,111,0.0,55,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,44824.75,0.0,45220.0,2,9,7.0,4,2.0 +11872,16666,3242.6831574222597,43.0,111,3870.0,64,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,35037.6,0.0,30070.0,2,9,7.0,4,2.0 +11873,16667,1935.0619084851778,63.0,120,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,45390.0,0.0,0.0,45728.2,0.0,0.0,1,0,0.0,3,0.0 +11874,16669,2021.8323211887835,63.0,111,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,26610.0,125.0,0.0,39056.85,0.0,15230.0,1,8,7.0,3,1.0 +11875,16670,2342.983162657141,56.0,111,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,46345.95232767612,0.0,49480.0,1,9,7.0,3,2.0 +11876,16672,172.9719392899623,46.0,300,4610.0,37,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,255.0,0.0,30280.05,0.0,17880.0,1,0,0.0,2,1.0 +11877,16673,1985.8230889344613,60.0,111,0.0,64,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33806.9,0.0,34880.0,1,4,4.0,3,2.0 +11878,16674,1801.0753065489907,61.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34940.85,0.0,48210.0,1,7,0.0,3,0.0 +11879,16675,2332.3289010650888,65.0,111,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,32410.0,0.0,0.0,30597.7,0.0,0.0,1,8,7.0,1,0.0 +11880,16676,1988.725821134212,61.0,300,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,14500.0,0.0,0.0,27746.7,0.0,14980.0,1,0,0.0,3,1.0 +11881,16677,5114.352958230086,81.0,111,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,12510.0,0.0,0.0,13218.0,0.0,0.0,3,9,7.0,1,0.0 +11882,16678,1642.4900293756918,68.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,15460.0,144.0,0.0,15645.0,0.0,0.0,5,6,1.0,1,0.0 +11883,16679,4499.257003902511,26.0,300,4740.0,85,0.0,0.0,1.0,1.0,0.0,1090.0,0.0,0.0,0.0,0.0,11108.55,0.0,3570.0,3,0,0.0,1,0.0 +11884,16681,925.9520626759279,47.0,111,5350.0,54,2.0,1.0,4.0,2.5,0.0,0.0,0.0,0.0,0.0,0.0,47314.0,2450.0,30200.0,2,6,4.0,2,2.0 +11885,16682,2037.6543966718764,56.0,112,0.0,46,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,61617.6542049872,0.0,73350.0,1,9,2.0,4,2.0 +11886,16683,1525.284401743357,47.0,112,11290.0,52,2.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,35568.2,0.0,23480.0,2,7,0.0,4,2.0 +11887,16684,1684.5293111500516,72.0,211,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10170.0,0.0,0.0,11498.0,0.0,0.0,3,1,2.0,1,0.0 +11888,16685,3388.647382612008,55.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,58443.15,0.0,62660.0,3,10,8.0,1,1.0 +11889,16686,3189.6139762636362,63.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25870.0,0.0,0.0,24741.95,0.0,0.0,3,10,8.0,1,0.0 +11890,16687,4108.67261856172,27.0,111,0.0,47,1.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,53586.1,0.0,57450.0,3,8,6.0,5,1.0 +11891,16688,2343.3424893626534,60.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,16780.0,0.0,0.0,42320.35381151038,0.0,29670.0,1,7,6.0,3,0.0 +11892,16689,799.3007350029977,37.0,211,0.0,62,2.0,1.0,3.0,1.8,0.0,790.0,0.0,0.0,0.0,0.0,24244.0,1570.0,21280.0,3,1,2.0,4,2.0 +11893,16690,2189.330472464647,49.0,112,0.0,56,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,40353.85,0.0,42940.0,1,8,0.0,3,2.0 +11894,16692,2782.859393411718,62.0,111,1430.0,74,1.0,1.0,2.0,1.5,0.0,0.0,0.0,24670.0,37.0,0.0,26543.05,0.0,3640.0,1,9,7.0,3,1.0 +11895,16693,1816.7218133479523,66.0,111,0.0,75,1.0,0.0,2.0,1.5,0.0,0.0,0.0,30660.0,0.0,0.0,24291.15,0.0,0.0,1,8,6.0,3,1.0 +11896,16697,2748.5364760164002,70.0,112,10560.0,77,1.0,0.0,2.0,1.5,0.0,0.0,0.0,16250.0,0.0,0.0,26086.15,0.0,0.0,1,10,2.0,5,1.0 +11897,16698,2755.682795490325,59.0,111,0.0,63,1.0,1.0,1.0,1.0,0.0,310.0,0.0,0.0,0.0,0.0,13051.35,140.0,9450.0,3,5,4.0,1,1.0 +11898,16700,2180.277693556251,76.0,400,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,23450.0,0.0,0.0,21761.6,0.0,0.0,3,0,1.0,1,0.0 +11899,16702,2388.4290677164577,49.0,111,7270.0,55,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,25732.85,0.0,12620.0,3,8,6.0,4,2.0 +11900,16703,1997.2505786571273,88.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19300.0,0.0,0.0,19294.85,0.0,0.0,1,0,0.0,3,0.0 +11901,16704,2410.604142724202,35.0,111,0.0,68,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41211.9,120.0,34750.0,3,6,4.0,4,2.0 +11902,16706,1443.2728574332423,63.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,75870.0,0.0,0.0,61247.1,0.0,0.0,1,8,0.0,3,0.0 +11903,16707,1711.7035845970056,47.0,111,0.0,43,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,228.0,0.0,43496.05,0.0,44550.0,2,8,7.0,4,2.0 +11904,16708,3397.299639164,80.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,14570.0,0.0,0.0,11785.1,0.0,0.0,3,10,8.0,3,0.0 +11905,16709,2199.4334709081127,64.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,47430.0,0.0,0.0,41464.203532770385,0.0,0.0,1,9,7.0,3,0.0 +11906,16711,1545.4511620542676,56.0,111,0.0,33,1.0,1.0,5.0,3.0,0.0,0.0,0.0,25570.0,0.0,0.0,70370.60423961867,0.0,61920.0,1,7,5.0,4,1.0 +11907,16713,1940.9264344905753,88.0,222,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24810.0,0.0,0.0,25010.1,0.0,0.0,5,1,0.0,3,0.0 +11908,16715,2296.581270945217,74.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32900.0,0.0,0.0,31270.65,0.0,0.0,1,10,8.0,3,0.0 +11909,16717,1672.5928608310267,70.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,66350.0,0.0,0.0,64118.0,0.0,0.0,1,8,7.0,3,0.0 +11910,16718,2321.8021833082807,67.0,112,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,19160.0,0.0,0.0,19563.15,0.0,0.0,1,5,0.0,3,0.0 +11911,16719,1681.6926064502013,74.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28970.0,0.0,0.0,28315.45,0.0,0.0,1,0,0.0,3,0.0 +11912,16721,1619.254759501529,71.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32880.0,0.0,0.0,32213.35,0.0,0.0,1,0,0.0,3,0.0 +11913,16724,3172.3111259537764,46.0,112,0.0,53,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48470.4,0.0,52080.0,2,8,0.0,3,2.0 +11914,16725,1706.404562150006,68.0,120,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,24010.0,0.0,0.0,23009.85,0.0,0.0,1,0,1.0,1,0.0 +11915,16727,2919.2019914713533,25.0,111,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,16511.2,1350.0,15390.0,3,9,7.0,2,1.0 +11916,16728,1610.5050093480254,69.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,33620.0,8.0,0.0,35698.35509615623,0.0,0.0,1,0,0.0,3,0.0 +11917,16729,3319.4040076070746,85.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25690.0,0.0,0.0,22751.9,0.0,0.0,1,10,8.0,1,0.0 +11918,16730,1670.1157979788975,76.0,111,0.0,46,1.0,0.0,2.0,1.5,0.0,0.0,0.0,30260.0,0.0,0.0,28468.975856131867,0.0,0.0,1,9,7.0,3,1.0 +11919,16731,3346.6602346793507,22.0,111,150.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13834.0,2620.0,8160.0,3,9,7.0,1,1.0 +11920,16732,1718.5093893087196,71.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18410.0,0.0,0.0,17094.55,0.0,0.0,1,7,6.0,1,0.0 +11921,16735,2120.0815710279007,77.0,120,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,24180.0,0.0,0.0,25933.25,0.0,0.0,1,0,0.0,3,0.0 +11922,16736,2573.344339340919,24.0,112,0.0,63,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,34629.25,0.0,35160.0,3,8,0.0,3,2.0 +11923,16737,3164.2913710921594,43.0,111,3210.0,62,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21329.95,0.0,19290.0,3,8,7.0,1,1.0 +11924,16739,1845.11546532346,68.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10970.0,0.0,0.0,12520.0,0.0,0.0,3,2,3.0,1,0.0 +11925,16740,2371.7356951797397,45.0,111,1880.0,35,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,101.0,0.0,109097.25,0.0,108180.0,1,9,7.0,4,2.0 +11926,16742,2222.932245101174,63.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,32930.0,0.0,0.0,31979.95,0.0,0.0,1,7,5.0,3,0.0 +11927,16743,2111.1260111172487,81.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,18640.0,0.0,0.0,27729.45,0.0,0.0,1,4,0.0,3,0.0 +11928,16748,2460.782382298189,62.0,111,0.0,63,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,17628.4,0.0,17720.0,3,8,7.0,2,1.0 +11929,16749,2854.976645839868,57.0,112,0.0,48,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,23067.45,0.0,24970.0,2,8,1.0,1,1.0 +11930,16750,2603.1149663451306,42.0,120,0.0,22,1.0,1.0,3.0,1.6,0.0,1030.0,0.0,0.0,0.0,0.0,26473.35,1880.0,20220.0,3,0,3.0,2,1.0 +11931,16752,4986.879805884832,57.0,111,0.0,56,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13973.05,990.0,11500.0,3,9,7.0,1,1.0 +11932,16753,2474.414221259551,31.0,112,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,55502.0,0.0,53730.0,2,8,0.0,4,2.0 +11933,16755,1999.4859878468533,61.0,300,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,25190.0,0.0,0.0,36807.3,0.0,14480.0,1,0,0.0,3,0.0 +11934,16756,1363.935905682559,60.0,211,0.0,78,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,26713.35,0.0,29710.0,1,3,3.0,3,1.0 +11935,16759,2058.688605003213,73.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21720.0,0.0,0.0,20401.15,0.0,0.0,3,9,2.0,1,0.0 +11936,16760,2516.741773772733,57.0,112,0.0,37,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,73173.55,0.0,85810.0,1,10,4.0,3,2.0 +11937,16761,2373.141260518144,90.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17920.0,0.0,0.0,16972.786086090833,0.0,0.0,5,4,4.0,1,0.0 +11938,16762,853.0280883722742,54.0,112,4420.0,46,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18913.25,1790.0,8990.0,2,8,1.0,2,1.0 +11939,16763,627.4267203874027,47.0,300,0.0,45,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,21350.7,540.0,19020.0,2,0,0.0,2,1.0 +11940,16764,561.0086912464244,38.0,111,0.0,48,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,45296.75,0.0,48880.0,2,8,7.0,3,2.0 +11941,16767,872.2533977223546,37.0,120,0.0,52,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,31.0,0.0,20359.95,0.0,16420.0,3,0,0.0,2,1.0 +11942,16769,831.2754947804453,47.0,400,0.0,63,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,21938.0,3390.0,15820.0,3,0,0.0,2,1.0 +11943,16771,754.3621912453181,23.0,111,0.0,34,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,94750.43383192597,0.0,41230.0,1,10,8.0,2,1.0 +11944,16774,2008.6139228310817,43.0,111,0.0,46,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,56636.05,0.0,51520.0,2,8,6.0,4,2.0 +11945,16776,1905.5006487364994,35.0,111,9960.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,450.0,0.0,0.0,50077.1,0.0,28120.0,2,8,7.0,4,2.0 +11946,16777,2170.0687858604906,38.0,112,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,41784.6,0.0,41590.0,1,9,1.0,4,2.0 +11947,16778,2150.4078132000855,57.0,400,0.0,75,1.0,1.0,2.0,1.5,0.0,0.0,0.0,20720.0,0.0,0.0,31952.95,0.0,11790.0,1,0,0.0,3,1.0 +11948,16779,902.994205678446,35.0,111,0.0,54,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,27793.75,3460.0,20540.0,3,8,7.0,2,1.0 +11949,16780,631.8934088288884,44.0,111,0.0,34,2.0,2.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,58873.55,0.0,56180.0,1,9,7.0,4,2.0 +11950,16781,2207.0397014700316,54.0,111,0.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,17778.9,0.0,17310.0,1,8,6.0,1,1.0 +11951,16782,1057.1344435383025,48.0,111,0.0,38,3,3.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,93493.5,1040.0,74960.0,3,9,7.0,5,3.0 +11952,16783,2124.678461707236,59.0,112,4790.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40190.0,0.0,0.0,40991.45,0.0,350.0,1,10,0.0,3,0.0 +11953,16785,3047.4420608212663,19.0,111,0.0,84,0.0,0.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,6619.4,0.0,0.0,3,8,6.0,1,0.0 +11954,16786,4206.271810520564,38.0,111,0.0,45,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,29577.25,0.0,26930.0,3,10,8.0,2,1.0 +11955,16787,1413.7845022447166,53.0,111,0.0,62,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,32404.15,0.0,33370.0,1,6,5.0,4,2.0 +11956,16788,3493.7984322992656,67.0,111,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31580.0,0.0,0.0,31256.75,0.0,0.0,3,9,7.0,5,0.0 +11957,16791,1019.4451216265622,44.0,211,0.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,43538.4,0.0,45040.0,2,1,3.0,2,1.0 +11958,16792,2105.4313100361583,41.0,111,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,54453.55,0.0,52940.0,2,4,4.0,4,2.0 +11959,16793,3441.8572464501262,56.0,111,0.0,46,3,2.0,4.0,2.5,0.0,11550.0,0.0,0.0,0.0,0.0,57870.15,0.0,51910.0,3,10,8.0,4,4.0 +11960,16794,3052.7781923717343,29.0,111,0.0,43,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,38521.35,0.0,40100.0,3,9,7.0,3,2.0 +11961,16795,2324.8835069883726,62.0,120,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,22710.0,0.0,0.0,21135.0,0.0,0.0,1,0,1.0,1,0.0 +11962,16796,1687.6583430229716,29.0,111,0.0,45,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,20472.8,0.0,21320.0,3,7,5.0,1,1.0 +11963,16798,4265.800185808924,61.0,112,0.0,78,0.0,0.0,1.0,1.0,9100.0,0.0,0.0,5740.0,0.0,0.0,14682.05,0.0,0.0,1,9,1.0,1,0.0 +11964,16799,1695.6304145101915,67.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54210.0,1565.0,0.0,60664.9,0.0,0.0,1,10,0.0,3,0.0 +11965,16800,2963.338397647239,82.0,300,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18700.0,0.0,0.0,22356.5,0.0,0.0,1,0,0.0,1,0.0 +11966,16801,2236.329260817733,55.0,111,0.0,31,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,0.0,0.0,75082.89942637717,0.0,78450.0,1,9,7.0,4,2.0 +11967,16803,1667.5689223013446,57.0,112,0.0,34,1.0,1.0,5.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,55731.15,0.0,47270.0,2,7,0.0,4,1.0 +11968,16804,1922.8861240174751,63.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,42090.0,0.0,0.0,43079.56059388016,0.0,0.0,1,7,1.0,3,0.0 +11969,16806,673.0709644782606,36.0,112,1270.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,70762.45,0.0,67390.0,2,8,0.0,4,2.0 +11970,16807,3996.5444909293296,29.0,120,0.0,62,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,29097.65,1150.0,28280.0,3,0,0.0,3,2.0 +11971,16808,3837.499437965483,41.0,111,0.0,21,1.0,1.0,3.0,2.0,9720.0,0.0,0.0,0.0,0.0,0.0,25362.5,0.0,16080.0,3,9,7.0,4,1.0 +11972,16810,3490.8064870907065,78.0,400,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16150.0,0.0,0.0,16161.0,0.0,0.0,3,0,1.0,1,0.0 +11973,16812,971.7994057042077,35.0,111,0.0,85,0.0,0.0,5.0,2.2,0.0,5340.0,0.0,0.0,0.0,0.0,26896.3,0.0,0.0,3,10,8.0,2,0.0 +11974,16814,520.6325795670527,43.0,112,8490.0,54,1.0,1.0,2.0,1.3,0.0,0.0,0.0,0.0,62.0,0.0,34557.5,0.0,15920.0,2,9,0.0,2,1.0 +11975,16815,1880.8002016195596,37.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,19658.4,0.0,19920.0,2,8,7.0,1,1.0 +11976,16817,3258.1281304738513,75.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,23830.0,0.0,0.0,23830.0,0.0,0.0,5,7,5.0,3,0.0 +11977,16818,2420.898279693787,40.0,112,0.0,34,2.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,304.0,0.0,64209.95,0.0,68070.0,2,8,3.0,4,2.0 +11978,16820,1914.5726270046146,44.0,111,0.0,68,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16726.9,0.0,17030.0,3,7,5.0,1,1.0 +11979,16821,1325.6922400238059,47.0,111,0.0,56,1.0,0.0,2.0,1.5,0.0,7120.0,0.0,0.0,0.0,0.0,13006.0,0.0,0.0,3,6,5.0,2,1.0 +11980,16822,6611.352070350638,57.0,111,0.0,37,3,2.0,4.0,2.5,13780.0,0.0,0.0,0.0,0.0,0.0,24380.9,0.0,10700.0,3,10,8.0,4,4.0 +11981,16823,2123.17853783764,57.0,120,3260.0,21,2.0,0.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,15793.4,3820.0,9210.0,1,0,0.0,4,2.0 +11982,16824,3282.0659474688246,81.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,16700.0,0.0,0.0,16818.45,0.0,0.0,1,7,0.0,1,0.0 +11983,16826,2149.8867248792644,37.0,111,0.0,38,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,59333.1,0.0,54050.0,3,9,7.0,4,2.0 +11984,16827,751.8525429806901,31.0,111,0.0,52,1.0,1.0,4.0,1.9,0.0,3520.0,0.0,0.0,0.0,0.0,25077.9,1350.0,1210.0,3,10,8.0,2,1.0 +11985,16829,920.5241781698212,46.0,111,11820.0,56,1.0,0.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,18312.25,0.0,2520.0,3,10,8.0,2,1.0 +11986,16832,1932.710474583538,61.0,300,520.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,22096.4,0.0,22160.0,1,0,0.0,1,1.0 +11987,16834,2951.3764833478494,63.0,111,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,3670.0,5900.0,0.0,0.0,12834.0,0.0,0.0,3,8,6.0,1,0.0 +11988,16835,4179.745756637874,75.0,111,0.0,21,1.0,0.0,1.0,1.0,0.0,0.0,1370.0,8170.0,0.0,0.0,9443.8,0.0,0.0,1,10,8.0,1,1.0 +11989,16836,5147.7724253257575,33.0,111,1610.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,100944.75,0.0,96030.0,3,10,8.0,4,2.0 +11990,16840,3345.8766965906802,62.0,111,2970.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,6430.0,0.0,0.0,12497.0,0.0,0.0,3,5,4.0,1,0.0 +11991,16841,1020.4913359727353,40.0,111,0.0,68,1.0,0.0,4.0,2.5,0.0,6820.0,0.0,0.0,0.0,0.0,22250.0,610.0,2250.0,3,7,6.0,2,1.0 +11992,16842,1376.4616586529278,61.0,120,0.0,13,1.0,1.0,2.0,1.5,0.0,0.0,9490.0,0.0,0.0,0.0,19590.75,0.0,0.0,1,0,3.0,3,1.0 +11993,16844,2659.3587867827846,71.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,52400.0,0.0,0.0,55615.95,0.0,0.0,1,10,4.0,3,0.0 +11994,16846,2490.9439239836543,51.0,400,0.0,31,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,92604.2,0.0,20470.0,2,0,0.0,4,2.0 +11995,16852,4542.567024630066,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64330.0,0.0,0.0,61661.55,0.0,0.0,1,6,5.0,3,0.0 +11996,16853,1733.644280452488,85.0,300,0.0,86,0.0,0.0,2.0,1.5,0.0,0.0,0.0,28330.0,0.0,0.0,27663.8,0.0,0.0,1,0,1.0,3,0.0 +11997,16854,4836.945061318854,72.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,38050.0,0.0,0.0,41339.4,0.0,0.0,5,6,4.0,3,0.0 +11998,16856,5605.425940575061,33.0,111,9660.0,67,2.0,1.0,2.0,1.5,0.0,0.0,0.0,3060.0,0.0,0.0,27744.05,0.0,15260.0,3,9,7.0,3,2.0 +11999,16858,2935.0900431956566,36.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,30127.8,0.0,35100.0,1,10,8.0,1,1.0 +12000,16862,917.3003530390473,48.0,112,0.0,52,1.0,1.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,27067.35,0.0,18720.0,3,7,2.0,2,1.0 +12001,16863,3615.818466178249,54.0,111,0.0,46,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,31119.15,0.0,34380.0,3,10,8.0,1,1.0 +12002,16866,2552.9600746927595,58.0,111,0.0,55,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,1332.6,390.0,1040.0,1,8,6.0,1,1.0 +12003,16867,1401.9758477438002,73.0,112,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40020.0,0.0,0.0,44687.31090341693,0.0,20.0,1,8,2.0,3,0.0 +12004,16868,1824.2798442574394,70.0,300,0.0,77,0.0,0.0,2.0,1.5,0.0,0.0,0.0,26970.0,0.0,0.0,27551.05,0.0,0.0,1,0,0.0,3,0.0 +12005,16869,2331.157035321556,63.0,400,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43920.0,85.0,0.0,45516.85,0.0,0.0,1,0,0.0,3,0.0 +12006,16870,4202.032242206378,31.0,111,7070.0,42,1.0,1.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,18854.9,490.0,11350.0,3,9,7.0,4,1.0 +12007,16872,1680.2628549790982,75.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,4910.0,1350.0,0.0,0.0,15807.8,0.0,0.0,1,8,0.0,1,0.0 +12008,16874,4406.817625834065,42.0,111,2650.0,38,2.0,2.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,0.0,58920.7,0.0,51700.0,2,10,8.0,4,2.0 +12009,16875,1872.2841741680966,40.0,212,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,234.0,0.0,19044.25,0.0,19360.0,1,2,0.0,1,1.0 +12010,16876,3178.031735828347,63.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20450.0,0.0,0.0,19369.65,0.0,0.0,2,7,0.0,1,0.0 +12011,16879,2098.5940334893644,76.0,211,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,27860.0,0.0,0.0,27100.8,0.0,0.0,1,1,2.0,3,0.0 +12012,16880,2847.7391596650527,50.0,111,990.0,52,3,3.0,5.0,3.0,0.0,0.0,0.0,14250.0,0.0,0.0,52130.0,950.0,36480.0,1,4,3.0,4,4.0 +12013,16881,3060.5366260204055,47.0,400,0.0,63,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,24378.95,0.0,24540.0,3,0,0.0,1,1.0 +12014,16884,1807.0655953969301,34.0,111,0.0,54,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,47904.5,0.0,46770.0,2,9,7.0,4,2.0 +12015,16886,1731.297351327647,53.0,112,0.0,37,2.0,2.0,3.0,2.0,0.0,0.0,0.0,0.0,208.0,0.0,111979.2,0.0,119600.0,2,10,0.0,4,2.0 +12016,16887,2164.705015789275,70.0,112,0.0,74,0.0,0.0,1.0,1.0,0.0,0.0,0.0,50560.0,0.0,0.0,42683.75,0.0,0.0,1,8,1.0,1,0.0 +12017,16888,3249.4981599143634,27.0,111,3250.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33818.15,290.0,26400.0,3,6,5.0,3,2.0 +12018,16889,934.2205861405814,32.0,111,15260.0,65,2.0,0.0,3.0,1.8,0.0,540.0,0.0,0.0,0.0,0.0,19282.0,0.0,2540.0,3,6,4.0,4,2.0 +12019,16891,2301.02496354319,57.0,111,170.0,48,2.0,2.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,45450.65,0.0,44640.0,2,8,7.0,4,2.0 +12020,16893,2540.554370632127,38.0,300,0.0,34,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48930.1,0.0,53330.0,2,0,0.0,3,2.0 +12021,16896,348.0555214896691,45.0,112,0.0,52,1.0,1.0,5.0,2.6,0.0,0.0,0.0,0.0,0.0,0.0,33887.45,0.0,27330.0,2,10,2.0,2,1.0 +12022,16897,2396.292506145865,54.0,111,0.0,22,1.0,0.0,4.0,2.3,0.0,0.0,0.0,0.0,1568.0,0.0,56528.55,0.0,53960.0,1,8,7.0,4,1.0 +12023,16898,1953.4819180258378,65.0,111,0.0,86,0.0,0.0,1.0,1.0,0.0,0.0,0.0,14980.0,0.0,0.0,15736.0,0.0,0.0,3,8,7.0,1,0.0 +12024,16900,915.1466580858566,48.0,111,0.0,56,1.0,1.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,27453.95,410.0,9790.0,3,10,8.0,2,1.0 +12025,16901,2274.3167066763826,69.0,400,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,18490.0,81.0,0.0,18573.4,0.0,0.0,3,0,0.0,1,0.0 +12026,16902,4311.005847833182,21.0,112,0.0,69,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,13724.0,760.0,7080.0,3,9,2.0,1,1.0 +12027,16904,2075.740415560677,54.0,111,13950.0,31,3,3.0,3.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,34785.25,1670.0,21830.0,1,8,6.0,4,3.0 +12028,16905,4261.297378627166,42.0,111,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,16887.0,0.0,17260.0,3,6,4.0,1,1.0 +12029,16907,628.1266932172922,43.0,111,0.0,55,1.0,1.0,4.0,2.3,0.0,0.0,0.0,0.0,0.0,0.0,27956.35,1570.0,14670.0,3,8,7.0,2,1.0 +12030,16908,1853.7590388938943,76.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,31280.0,0.0,0.0,30159.6,0.0,0.0,3,6,4.0,3,0.0 +12031,16909,2998.824918643668,75.0,221,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,37240.0,0.0,0.0,34846.15,0.0,0.0,5,1,1.0,3,0.0 +12032,16912,3324.9069076363867,77.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,37380.0,0.0,0.0,31294.7,0.0,0.0,1,9,7.0,1,0.0 +12033,16913,3186.2296618898927,42.0,111,550.0,54,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,1648.0,0.0,20629.3,0.0,21020.0,2,4,4.0,1,1.0 +12034,16916,848.9598038263009,40.0,111,7870.0,42,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,18786.35,0.0,0.0,3,6,5.0,2,1.0 +12035,16918,2139.6030230201127,78.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34550.0,35.0,0.0,32738.45,0.0,0.0,1,9,7.0,1,0.0 +12036,16919,1479.7281751538208,74.0,300,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,54680.0,0.0,0.0,50844.9,0.0,0.0,1,0,1.0,3,0.0 +12037,16920,2686.7746946825814,40.0,111,0.0,37,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,34694.85,0.0,37940.0,2,8,7.0,1,1.0 +12038,16922,1604.8792637955673,72.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30630.0,0.0,0.0,32015.7,0.0,0.0,1,9,7.0,3,0.0 +12039,16923,1938.3126634816826,56.0,300,0.0,38,3,3.0,4.0,2.5,0.0,0.0,0.0,8700.0,0.0,0.0,73374.55,0.0,68900.0,2,0,0.0,4,3.0 +12040,16924,1725.3375677362528,59.0,111,0.0,46,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,71648.5,0.0,81250.0,3,7,6.0,4,2.0 +12041,16925,1761.1239970452173,59.0,111,0.0,75,1.0,1.0,2.0,1.5,9700.0,0.0,0.0,0.0,0.0,0.0,11308.35,0.0,1950.0,1,8,7.0,3,1.0 +12042,16926,1697.9719379271073,60.0,112,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,79981.2,0.0,78740.0,1,9,0.0,3,2.0 +12043,16927,2271.8098977901345,30.0,111,0.0,47,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,48276.0,0.0,51920.0,2,9,7.0,3,2.0 +12044,16928,2105.600160407639,83.0,400,0.0,72,0.0,0.0,1.0,1.0,0.0,0.0,0.0,34100.0,0.0,0.0,33935.1,0.0,0.0,5,0,0.0,1,0.0 +12045,16930,5384.556230961631,83.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,27750.0,0.0,0.0,25267.4,0.0,0.0,1,10,8.0,1,0.0 +12046,16931,2548.9943158388382,61.0,111,0.0,77,0.0,0.0,1.0,1.0,5770.0,0.0,0.0,5160.0,0.0,0.0,14121.35,0.0,0.0,3,10,8.0,1,0.0 +12047,16933,2199.005566539046,43.0,112,0.0,37,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,84947.0,0.0,94440.0,2,6,0.0,4,2.0 +12048,16934,2810.366589054497,62.0,111,100.0,78,1.0,1.0,3.0,2.0,0.0,0.0,9600.0,350.0,0.0,0.0,23986.0,0.0,10300.0,3,8,7.0,4,1.0 +12049,16935,2134.004131756903,39.0,111,0.0,23,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,39746.45,0.0,33130.0,2,4,4.0,4,2.0 +12050,16937,2152.1431167483747,49.0,111,6620.0,56,1.0,0.0,2.0,1.3,0.0,0.0,0.0,0.0,0.0,0.0,18803.8,0.0,8390.0,3,8,7.0,2,1.0 +12051,16940,1992.627631857797,82.0,111,0.0,72,0.0,0.0,2.0,1.5,0.0,0.0,0.0,40900.0,0.0,0.0,38991.3,0.0,0.0,1,10,8.0,3,0.0 +12052,16941,4573.487632756739,33.0,221,0.0,55,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,44758.95,0.0,43790.0,3,1,2.0,4,2.0 +12053,16942,3540.4766987038747,21.0,111,0.0,34,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,5391.8,0.0,3570.0,5,8,7.0,5,1.0 +12054,16943,1886.5152205941831,52.0,112,0.0,52,2.0,2.0,2.0,1.5,0.0,0.0,0.0,0.0,149.0,0.0,30616.65,0.0,31490.0,1,8,0.0,2,2.0 +12055,16944,2363.2007397814455,39.0,112,0.0,85,1.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,533.0,531.0,62619.0,0.0,54650.0,2,7,0.0,4,1.0 +12056,16947,2400.5237863174284,81.0,111,0.0,74,0.0,0.0,2.0,1.5,0.0,0.0,0.0,64910.0,0.0,0.0,66449.3,0.0,0.0,1,9,7.0,3,0.0 +12057,16949,1652.7435858859599,42.0,112,0.0,48,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,939.0,0.0,81549.45,0.0,84000.0,3,9,3.0,4,2.0 +12058,16950,3237.1069124906285,81.0,111,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,21540.0,0.0,0.0,21191.6,0.0,0.0,3,8,7.0,1,0.0 +12059,16951,1842.4696167587858,72.0,111,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20010.0,0.0,0.0,18574.3,0.0,0.0,2,9,7.0,1,0.0 +12060,16952,1851.1557121208607,30.0,120,2090.0,54,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,37038.45,0.0,30920.0,2,0,1.0,4,2.0 +12061,16954,1948.8773854438953,63.0,111,110.0,34,1.0,1.0,6.0,3.3,0.0,0.0,0.0,0.0,0.0,0.0,107320.9,0.0,123550.0,1,10,8.0,4,1.0 +12062,16955,2990.532133244597,76.0,112,0.0,77,0.0,0.0,1.0,1.0,0.0,0.0,0.0,20730.0,0.0,0.0,19320.95,0.0,0.0,1,7,0.0,1,0.0 +12063,16956,3939.4583336398655,62.0,112,0.0,75,0.0,0.0,1.0,1.0,0.0,0.0,0.0,25630.0,15.0,0.0,23279.75,0.0,0.0,1,3,0.0,1,0.0 +12064,16957,3118.2387949544745,33.0,111,0.0,43,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,55462.6,0.0,28630.0,3,9,7.0,4,2.0 +12065,16959,2507.6427282117506,60.0,111,0.0,74,0.0,0.0,1.0,1.0,10980.0,0.0,0.0,0.0,0.0,0.0,10425.3,0.0,0.0,3,9,7.0,1,0.0 +12066,16960,2132.9933896965476,39.0,112,0.0,52,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,21184.2,2440.0,19640.0,2,7,1.0,1,1.0 +12067,16961,2082.175338252865,53.0,112,0.0,48,2.0,2.0,3.0,1.8,0.0,0.0,0.0,0.0,0.0,0.0,53187.7,0.0,55100.0,2,8,0.0,4,2.0 +12068,16962,3095.3122929991555,32.0,111,0.0,33,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,45156.0,0.0,54210.0,3,10,8.0,1,1.0 +12069,16963,1732.0613813784175,48.0,112,0.0,53,2.0,2.0,4.0,2.3,0.0,0.0,0.0,9070.0,0.0,0.0,66675.6,0.0,57820.0,1,7,0.0,4,2.0 +12070,16964,1825.130321418262,55.0,120,0.0,37,1.0,1.0,2.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,33687.35,430.0,28700.0,2,0,0.0,2,1.0 +12071,16965,2277.585774055759,39.0,111,0.0,62,1.0,1.0,5.0,2.4,0.0,0.0,0.0,0.0,0.0,22019.0,27527.0,380.0,460.0,3,9,7.0,4,1.0 +12072,16967,2680.8137402235407,85.0,221,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,17090.0,0.0,0.0,16964.4,0.0,0.0,3,1,2.0,1,0.0 +12073,16968,2120.605632427535,68.0,111,0.0,78,0.0,0.0,2.0,1.5,0.0,0.0,0.0,30100.0,0.0,0.0,30544.5,0.0,0.0,3,9,7.0,3,0.0 +12074,16969,797.3871494647581,40.0,111,0.0,34,1.0,1.0,3.0,1.6,0.0,0.0,0.0,0.0,0.0,0.0,36219.6,0.0,31720.0,3,9,7.0,2,1.0 +12075,16970,2075.7634128452855,47.0,112,0.0,62,2.0,2.0,5.0,2.8,0.0,0.0,0.0,0.0,1003.0,0.0,55785.75,0.0,44020.0,1,8,0.0,4,2.0 +12076,16972,3702.262361120298,41.0,112,0.0,21,2.0,2.0,4.0,2.1,0.0,0.0,0.0,0.0,0.0,0.0,49066.15,0.0,49190.0,2,9,1.0,4,2.0 +12077,16975,1743.5264824317474,77.0,111,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,39040.0,0.0,0.0,37339.75,0.0,0.0,1,7,6.0,3,0.0 +12078,16976,1571.2963728710479,70.0,112,0.0,75,0.0,0.0,2.0,1.5,0.0,0.0,0.0,43580.0,0.0,0.0,41606.3,0.0,0.0,1,9,3.0,3,0.0 +12079,16977,1087.7989124634569,65.0,211,0.0,78,0.0,0.0,1.0,1.0,0.0,0.0,0.0,10270.0,0.0,0.0,13007.0,0.0,0.0,3,4,3.0,1,0.0 +12080,16978,1407.4726144723613,71.0,221,0.0,71,1.0,0.0,2.0,1.5,0.0,0.0,0.0,23390.0,0.0,0.0,22524.2,0.0,0.0,1,3,4.0,3,1.0 diff --git a/openfisca_france_indirect_taxation/assets/part_des_types_de_supercarburants.csv b/openfisca_france_indirect_taxation/assets/part_des_types_de_supercarburants.csv index 59d98175..a9e27796 100644 --- a/openfisca_france_indirect_taxation/assets/part_des_types_de_supercarburants.csv +++ b/openfisca_france_indirect_taxation/assets/part_des_types_de_supercarburants.csv @@ -6,16 +6,19 @@ Source;annee;super_plombe;sp_95;sp_98;sp_e10;sp_e85;somme ;2004;0.068852459;0.609836066;0.314754098;0;0;0.993442623 ;2005;0.031578947;0.673684211;0.294736842;0;0;1 ;2006;0.007407407;0.733333333;0.259259259;0;0;1 -;2007;0;0.76;0.24;0;0;1 -;2008;0;0.791666667;0.208333333;0;0;1 -;2009;0;0.745;0.193;0.059;0.003;1 -;2010;0;0.658;0.198;0.141;0.003;1 -;2011;0;0.627;0.188;0.181;0.005;1.001 -;2012;0;0.627;0.188;0.181;0.005;1.001 -;2013;0;0.627;0.188;0.181;0.005;1.001 -;2014;0;0.475;0.199;0.326;0.0;1.001 -;2015;0;0.447;0.212;0.341;0.0;1.001 -;2016;0;0.447;0.212;0.341;0.0;1.001 -;2017;0;0.447;0.212;0.341;0.0;1.001 -;;;;;;; -Source : Rapports sur l'industrie pétrolière et gazière et ufip;;;;;;; +;2007;0.0;0.76;0.24;0;0;1 +;2008;0.0;0.791666667;0.208333333;0;0;1 +;2009;0.0;0.745;0.193;0.059;0.003;1 +;2010;0.0;0.658;0.198;0.141;0.003;1 +;2011;0.0;0.627;0.188;0.181;0.005;1.001 +;2012;0.0;0.627;0.188;0.181;0.005;1.001 +;2013;0.0;0.627;0.188;0.181;0.005;1.001 +;2014;0.0;0.475;0.199;0.326;0.0;1.001 +;2015;0.0;0.447;0.212;0.341;0.0;1.001 +;2016;0.0;0.447;0.212;0.341;0.0;1.001 +;2017;0.0;0.447;0.212;0.341;0.0;1.001 +;2018;0.0;0.329;0.225;0.428;0.017;1.0 +;2019;0.0;0.278;0.216;0.476;0.03;1.0 +;2020;0.0;0.248;0.238;0.484;0.03;1.0 +;2021;0.0;0.218;0.227;0.512;0.041;1.0 +;2022;0.0;0.218;0.227;0.512;0.041;1.0 \ No newline at end of file diff --git a/openfisca_france_indirect_taxation/assets/prix/README.md b/openfisca_france_indirect_taxation/assets/prix/README.md new file mode 100644 index 00000000..b003c5db --- /dev/null +++ b/openfisca_france_indirect_taxation/assets/prix/README.md @@ -0,0 +1 @@ +Pour mettre à jour les prix des carburants vous pouvez utiliser le dépôt https://git.leximpact.dev/leximpact/simulateur-socio-fiscal/openfisca/prix-carburants diff --git a/openfisca_france_indirect_taxation/assets/prix/prix_annuel_carburants.csv b/openfisca_france_indirect_taxation/assets/prix/prix_annuel_carburants.csv index af30119a..b62e63e2 100644 --- a/openfisca_france_indirect_taxation/assets/prix/prix_annuel_carburants.csv +++ b/openfisca_france_indirect_taxation/assets/prix/prix_annuel_carburants.csv @@ -31,3 +31,6 @@ Date,diesel_ht,diesel_ttc,gplc_ht,gplc_ttc,super_95_e10_ht,super_95_e10_ttc,supe 2019,,1.4433,,,,,,1.51,,1.56,, 2020,,1.2733,,,,,,1.37,,1.42,, 2021,,1.4433,,,,,,1.56,,1.62,, +2022,,1.86,,,,1.78,,1.83,,1.88,, +2023,,1.82,,,,1.88,,1.89,,1.95,, +2024,,1.78,,,,1.85,,1.89,,1.94,, diff --git a/openfisca_france_indirect_taxation/assets/prix/prix_annuel_carburants_par_regions_hectolitre.csv b/openfisca_france_indirect_taxation/assets/prix/prix_annuel_carburants_par_regions_hectolitre.csv new file mode 100644 index 00000000..b5b24715 --- /dev/null +++ b/openfisca_france_indirect_taxation/assets/prix/prix_annuel_carburants_par_regions_hectolitre.csv @@ -0,0 +1,2706 @@ +region,carburant,annee,prix_moyen_par_hectolitre +82,Gazole,2007,110.12 +82,Gazole,2008,128.43 +82,Gazole,2009,101.39 +82,Gazole,2010,116.41 +82,Gazole,2011,134.98 +82,Gazole,2012,140.56 +82,Gazole,2013,136.38 +82,Gazole,2014,131.49 +82,Gazole,2015,117.74 +82,Gazole,2016, +82,Gazole,2017, +82,Gazole,2018, +82,Gazole,2019, +82,Gazole,2020, +82,Gazole,2021, +82,Gazole,2022, +82,Gazole,2023, +82,Gazole,2024, +82,SP95,2007,128.49 +82,SP95,2008,137.69 +82,SP95,2009,122.92 +82,SP95,2010,137.0 +82,SP95,2011,151.98 +82,SP95,2012,158.8 +82,SP95,2013,156.49 +82,SP95,2014,151.44 +82,SP95,2015,138.05 +82,SP95,2016, +82,SP95,2017, +82,SP95,2018, +82,SP95,2019, +82,SP95,2020, +82,SP95,2021, +82,SP95,2022, +82,SP95,2023, +82,SP95,2024, +82,GPLc,2007,73.86 +82,GPLc,2008,75.84 +82,GPLc,2009,66.28 +82,GPLc,2010,74.65 +82,GPLc,2011,84.64 +82,GPLc,2012,87.82 +82,GPLc,2013,88.32 +82,GPLc,2014,87.31 +82,GPLc,2015,80.13 +82,GPLc,2016, +82,GPLc,2017, +82,GPLc,2018, +82,GPLc,2019, +82,GPLc,2020, +82,GPLc,2021, +82,GPLc,2022, +82,GPLc,2023, +82,GPLc,2024, +82,E85,2007,83.04 +82,E85,2008,89.34 +82,E85,2009,95.05 +82,E85,2010,108.88 +82,E85,2011,90.59 +82,E85,2012,93.92 +82,E85,2013,94.96 +82,E85,2014,92.83 +82,E85,2015,94.17 +82,E85,2016, +82,E85,2017, +82,E85,2018, +82,E85,2019, +82,E85,2020, +82,E85,2021, +82,E85,2022, +82,E85,2023, +82,E85,2024, +82,E10,2009,123.75 +82,E10,2010,135.51 +82,E10,2011,150.13 +82,E10,2012,156.45 +82,E10,2013,154.73 +82,E10,2014,149.95 +82,E10,2015,136.78 +82,E10,2016, +82,E10,2017, +82,E10,2018, +82,E10,2019, +82,E10,2020, +82,E10,2021, +82,E10,2022, +82,E10,2023, +82,E10,2024, +82,SP98,2013,158.39 +82,SP98,2014,156.28 +82,SP98,2015,142.78 +82,SP98,2016, +82,SP98,2017, +82,SP98,2018, +82,SP98,2019, +82,SP98,2020, +82,SP98,2021, +82,SP98,2022, +82,SP98,2023, +82,SP98,2024, +22,Gazole,2007,109.44 +22,Gazole,2008,127.2 +22,Gazole,2009,100.44 +22,Gazole,2010,115.4 +22,Gazole,2011,135.4 +22,Gazole,2012,141.45 +22,Gazole,2013,137.09 +22,Gazole,2014,130.11 +22,Gazole,2015,116.28 +22,Gazole,2016, +22,Gazole,2017, +22,Gazole,2018, +22,Gazole,2019, +22,Gazole,2020, +22,Gazole,2021, +22,Gazole,2022, +22,Gazole,2023, +22,Gazole,2024, +22,SP95,2007,129.29 +22,SP95,2008,137.12 +22,SP95,2009,120.76 +22,SP95,2010,134.94 +22,SP95,2011,150.65 +22,SP95,2012,158.22 +22,SP95,2013,155.6 +22,SP95,2014,149.77 +22,SP95,2015,136.65 +22,SP95,2016, +22,SP95,2017, +22,SP95,2018, +22,SP95,2019, +22,SP95,2020, +22,SP95,2021, +22,SP95,2022, +22,SP95,2023, +22,SP95,2024, +22,E85,2007,81.5 +22,E85,2008,83.09 +22,E85,2009,87.63 +22,E85,2010,96.89 +22,E85,2011,88.33 +22,E85,2012,92.38 +22,E85,2013,91.38 +22,E85,2014,84.66 +22,E85,2015,76.63 +22,E85,2016, +22,E85,2017, +22,E85,2018, +22,E85,2019, +22,E85,2020, +22,E85,2021, +22,E85,2022, +22,E85,2023, +22,E85,2024, +22,GPLc,2007,72.8 +22,GPLc,2008,76.2 +22,GPLc,2009,65.83 +22,GPLc,2010,73.63 +22,GPLc,2011,82.96 +22,GPLc,2012,88.45 +22,GPLc,2013,89.24 +22,GPLc,2014,87.44 +22,GPLc,2015,80.58 +22,GPLc,2016, +22,GPLc,2017, +22,GPLc,2018, +22,GPLc,2019, +22,GPLc,2020, +22,GPLc,2021, +22,GPLc,2022, +22,GPLc,2023, +22,GPLc,2024, +22,E10,2009,125.84 +22,E10,2010,137.15 +22,E10,2011,152.5 +22,E10,2012,158.19 +22,E10,2013,154.9 +22,E10,2014,149.37 +22,E10,2015,136.34 +22,E10,2016, +22,E10,2017, +22,E10,2018, +22,E10,2019, +22,E10,2020, +22,E10,2021, +22,E10,2022, +22,E10,2023, +22,E10,2024, +22,SP98,2013,158.44 +22,SP98,2014,154.83 +22,SP98,2015,141.78 +22,SP98,2016, +22,SP98,2017, +22,SP98,2018, +22,SP98,2019, +22,SP98,2020, +22,SP98,2021, +22,SP98,2022, +22,SP98,2023, +22,SP98,2024, +83,Gazole,2007,111.58 +83,Gazole,2008,129.97 +83,Gazole,2009,102.9 +83,Gazole,2010,117.75 +83,Gazole,2011,137.59 +83,Gazole,2012,143.17 +83,Gazole,2013,138.62 +83,Gazole,2014,131.88 +83,Gazole,2015,117.82 +83,Gazole,2016, +83,Gazole,2017, +83,Gazole,2018, +83,Gazole,2019, +83,Gazole,2020, +83,Gazole,2021, +83,Gazole,2022, +83,Gazole,2023, +83,Gazole,2024, +83,SP95,2007,130.24 +83,SP95,2008,139.43 +83,SP95,2009,124.45 +83,SP95,2010,138.81 +83,SP95,2011,154.54 +83,SP95,2012,161.52 +83,SP95,2013,158.83 +83,SP95,2014,153.07 +83,SP95,2015,138.68 +83,SP95,2016, +83,SP95,2017, +83,SP95,2018, +83,SP95,2019, +83,SP95,2020, +83,SP95,2021, +83,SP95,2022, +83,SP95,2023, +83,SP95,2024, +83,GPLc,2007,72.78 +83,GPLc,2008,75.5 +83,GPLc,2009,65.91 +83,GPLc,2010,72.94 +83,GPLc,2011,80.9 +83,GPLc,2012,85.85 +83,GPLc,2013,86.0 +83,GPLc,2014,84.84 +83,GPLc,2015,78.78 +83,GPLc,2016, +83,GPLc,2017, +83,GPLc,2018, +83,GPLc,2019, +83,GPLc,2020, +83,GPLc,2021, +83,GPLc,2022, +83,GPLc,2023, +83,GPLc,2024, +83,E85,2007,84.0 +83,E85,2008,84.91 +83,E85,2009,92.69 +83,E85,2010,133.89 +83,E85,2011,82.8 +83,E85,2012,86.2 +83,E85,2013,91.19 +83,E85,2014,80.67 +83,E85,2015,91.42 +83,E85,2016, +83,E85,2017, +83,E85,2018, +83,E85,2019, +83,E85,2020, +83,E85,2021, +83,E85,2022, +83,E85,2023, +83,E85,2024, +83,E10,2009,119.75 +83,E10,2010,135.16 +83,E10,2011,150.62 +83,E10,2012,156.8 +83,E10,2013,154.59 +83,E10,2014,148.88 +83,E10,2015,136.04 +83,E10,2016, +83,E10,2017, +83,E10,2018, +83,E10,2019, +83,E10,2020, +83,E10,2021, +83,E10,2022, +83,E10,2023, +83,E10,2024, +83,SP98,2013,159.97 +83,SP98,2014,156.29 +83,SP98,2015,142.57 +83,SP98,2016, +83,SP98,2017, +83,SP98,2018, +83,SP98,2019, +83,SP98,2020, +83,SP98,2021, +83,SP98,2022, +83,SP98,2023, +83,SP98,2024, +93,Gazole,2007,110.48 +93,Gazole,2008,129.16 +93,Gazole,2009,101.95 +93,Gazole,2010,116.7 +93,Gazole,2011,135.44 +93,Gazole,2012,142.81 +93,Gazole,2013,138.29 +93,Gazole,2014,132.08 +93,Gazole,2015,118.12 +93,Gazole,2016,113.61 +93,Gazole,2017,126.15 +93,Gazole,2018,146.75 +93,Gazole,2019,146.84 +93,Gazole,2020,129.56 +93,Gazole,2021,145.73 +93,Gazole,2022,188.0 +93,Gazole,2023,183.0 +93,Gazole,2024,177.0 +93,SP95,2007,128.75 +93,SP95,2008,138.1 +93,SP95,2009,123.0 +93,SP95,2010,137.22 +93,SP95,2011,152.31 +93,SP95,2012,159.84 +93,SP95,2013,157.64 +93,SP95,2014,152.29 +93,SP95,2015,138.9 +93,SP95,2016,133.85 +93,SP95,2017,141.61 +93,SP95,2018,154.53 +93,SP95,2019,153.84 +93,SP95,2020,141.15 +93,SP95,2021,158.05 +93,SP95,2022,184.0 +93,SP95,2023,192.0 +93,SP95,2024,190.0 +93,GPLc,2007,73.82 +93,GPLc,2008,76.32 +93,GPLc,2009,66.15 +93,GPLc,2010,72.54 +93,GPLc,2011,83.82 +93,GPLc,2012,87.45 +93,GPLc,2013,88.1 +93,GPLc,2014,86.66 +93,GPLc,2015,80.5 +93,GPLc,2016,71.83 +93,GPLc,2017,75.55 +93,GPLc,2018,83.48 +93,GPLc,2019,87.39 +93,GPLc,2020,86.6 +93,GPLc,2021,86.96 +93,GPLc,2022,86.0 +93,GPLc,2023,101.0 +93,GPLc,2024,100.0 +93,E85,2007,81.43 +93,E85,2008,86.0 +93,E85,2009,93.88 +93,E85,2010,105.24 +93,E85,2011,92.55 +93,E85,2012,92.81 +93,E85,2013,93.98 +93,E85,2014,90.3 +93,E85,2015,86.42 +93,E85,2016,79.87 +93,E85,2017,71.32 +93,E85,2018,71.46 +93,E85,2019,68.15 +93,E85,2020,68.38 +93,E85,2021,70.8 +93,E85,2022,82.0 +93,E85,2023,110.0 +93,E85,2024,90.0 +93,E10,2009,124.39 +93,E10,2010,135.03 +93,E10,2011,149.37 +93,E10,2012,157.01 +93,E10,2013,154.93 +93,E10,2014,149.65 +93,E10,2015,136.33 +93,E10,2016,129.67 +93,E10,2017,136.85 +93,E10,2018,149.81 +93,E10,2019,149.69 +93,E10,2020,136.32 +93,E10,2021,154.95 +93,E10,2022,178.0 +93,E10,2023,188.0 +93,E10,2024,186.0 +93,SP98,2013,159.53 +93,SP98,2014,156.71 +93,SP98,2015,143.34 +93,SP98,2016,138.37 +93,SP98,2017,146.49 +93,SP98,2018,159.64 +93,SP98,2019,158.76 +93,SP98,2020,145.61 +93,SP98,2021,164.22 +93,SP98,2022,188.0 +93,SP98,2023,197.0 +93,SP98,2024,195.0 +73,Gazole,2007,110.9 +73,Gazole,2008,129.03 +73,Gazole,2009,101.88 +73,Gazole,2010,116.93 +73,Gazole,2011,136.64 +73,Gazole,2012,142.58 +73,Gazole,2013,138.35 +73,Gazole,2014,131.57 +73,Gazole,2015,117.76 +73,Gazole,2016, +73,Gazole,2017, +73,Gazole,2018, +73,Gazole,2019, +73,Gazole,2020, +73,Gazole,2021, +73,Gazole,2022, +73,Gazole,2023, +73,Gazole,2024, +73,SP95,2007,129.75 +73,SP95,2008,138.93 +73,SP95,2009,123.93 +73,SP95,2010,138.33 +73,SP95,2011,154.2 +73,SP95,2012,160.89 +73,SP95,2013,158.27 +73,SP95,2014,152.31 +73,SP95,2015,138.77 +73,SP95,2016, +73,SP95,2017, +73,SP95,2018, +73,SP95,2019, +73,SP95,2020, +73,SP95,2021, +73,SP95,2022, +73,SP95,2023, +73,SP95,2024, +73,GPLc,2007,72.33 +73,GPLc,2008,74.31 +73,GPLc,2009,65.6 +73,GPLc,2010,71.21 +73,GPLc,2011,80.88 +73,GPLc,2012,86.44 +73,GPLc,2013,87.07 +73,GPLc,2014,85.22 +73,GPLc,2015,79.59 +73,GPLc,2016, +73,GPLc,2017, +73,GPLc,2018, +73,GPLc,2019, +73,GPLc,2020, +73,GPLc,2021, +73,GPLc,2022, +73,GPLc,2023, +73,GPLc,2024, +73,E85,2007,82.61 +73,E85,2008,86.86 +73,E85,2009,91.28 +73,E85,2010,97.37 +73,E85,2011,91.04 +73,E85,2012,94.47 +73,E85,2013,95.73 +73,E85,2014,91.2 +73,E85,2015,87.22 +73,E85,2016, +73,E85,2017, +73,E85,2018, +73,E85,2019, +73,E85,2020, +73,E85,2021, +73,E85,2022, +73,E85,2023, +73,E85,2024, +73,E10,2009,122.75 +73,E10,2010,134.08 +73,E10,2011,151.84 +73,E10,2012,157.88 +73,E10,2013,155.78 +73,E10,2014,149.78 +73,E10,2015,136.41 +73,E10,2016, +73,E10,2017, +73,E10,2018, +73,E10,2019, +73,E10,2020, +73,E10,2021, +73,E10,2022, +73,E10,2023, +73,E10,2024, +73,SP98,2013,160.15 +73,SP98,2014,156.44 +73,SP98,2015,142.92 +73,SP98,2016, +73,SP98,2017, +73,SP98,2018, +73,SP98,2019, +73,SP98,2020, +73,SP98,2021, +73,SP98,2022, +73,SP98,2023, +73,SP98,2024, +21,Gazole,2007,110.23 +21,Gazole,2008,128.17 +21,Gazole,2009,101.24 +21,Gazole,2010,116.17 +21,Gazole,2011,136.43 +21,Gazole,2012,142.39 +21,Gazole,2013,137.46 +21,Gazole,2014,131.09 +21,Gazole,2015,117.06 +21,Gazole,2016, +21,Gazole,2017, +21,Gazole,2018, +21,Gazole,2019, +21,Gazole,2020, +21,Gazole,2021, +21,Gazole,2022, +21,Gazole,2023, +21,Gazole,2024, +21,SP95,2007,129.65 +21,SP95,2008,138.12 +21,SP95,2009,122.68 +21,SP95,2010,136.77 +21,SP95,2011,152.6 +21,SP95,2012,159.62 +21,SP95,2013,156.25 +21,SP95,2014,151.36 +21,SP95,2015,137.88 +21,SP95,2016, +21,SP95,2017, +21,SP95,2018, +21,SP95,2019, +21,SP95,2020, +21,SP95,2021, +21,SP95,2022, +21,SP95,2023, +21,SP95,2024, +21,E85,2007,80.52 +21,E85,2008,82.58 +21,E85,2009,90.27 +21,E85,2010,96.89 +21,E85,2011,87.73 +21,E85,2012,90.95 +21,E85,2013,88.1 +21,E85,2014,83.57 +21,E85,2015,78.94 +21,E85,2016, +21,E85,2017, +21,E85,2018, +21,E85,2019, +21,E85,2020, +21,E85,2021, +21,E85,2022, +21,E85,2023, +21,E85,2024, +21,GPLc,2007,72.75 +21,GPLc,2008,75.24 +21,GPLc,2009,65.28 +21,GPLc,2010,75.47 +21,GPLc,2011,82.76 +21,GPLc,2012,88.27 +21,GPLc,2013,87.31 +21,GPLc,2014,84.4 +21,GPLc,2015,80.63 +21,GPLc,2016, +21,GPLc,2017, +21,GPLc,2018, +21,GPLc,2019, +21,GPLc,2020, +21,GPLc,2021, +21,GPLc,2022, +21,GPLc,2023, +21,GPLc,2024, +21,E10,2009,124.76 +21,E10,2010,136.15 +21,E10,2011,151.71 +21,E10,2012,157.17 +21,E10,2013,153.93 +21,E10,2014,149.11 +21,E10,2015,135.72 +21,E10,2016, +21,E10,2017, +21,E10,2018, +21,E10,2019, +21,E10,2020, +21,E10,2021, +21,E10,2022, +21,E10,2023, +21,E10,2024, +21,SP98,2013,158.93 +21,SP98,2014,155.8 +21,SP98,2015,142.44 +21,SP98,2016, +21,SP98,2017, +21,SP98,2018, +21,SP98,2019, +21,SP98,2020, +21,SP98,2021, +21,SP98,2022, +21,SP98,2023, +21,SP98,2024, +91,Gazole,2007,110.17 +91,Gazole,2008,128.51 +91,Gazole,2009,101.12 +91,Gazole,2010,116.1 +91,Gazole,2011,135.99 +91,Gazole,2012,141.93 +91,Gazole,2013,137.68 +91,Gazole,2014,131.17 +91,Gazole,2015,117.26 +91,Gazole,2016, +91,Gazole,2017, +91,Gazole,2018, +91,Gazole,2019, +91,Gazole,2020, +91,Gazole,2021, +91,Gazole,2022, +91,Gazole,2023, +91,Gazole,2024, +91,SP95,2007,129.19 +91,SP95,2008,138.28 +91,SP95,2009,123.07 +91,SP95,2010,137.5 +91,SP95,2011,153.15 +91,SP95,2012,160.31 +91,SP95,2013,157.7 +91,SP95,2014,151.95 +91,SP95,2015,138.31 +91,SP95,2016, +91,SP95,2017, +91,SP95,2018, +91,SP95,2019, +91,SP95,2020, +91,SP95,2021, +91,SP95,2022, +91,SP95,2023, +91,SP95,2024, +91,GPLc,2007,72.96 +91,GPLc,2008,74.77 +91,GPLc,2009,65.5 +91,GPLc,2010,71.5 +91,GPLc,2011,82.86 +91,GPLc,2012,87.89 +91,GPLc,2013,88.94 +91,GPLc,2014,87.07 +91,GPLc,2015,80.97 +91,GPLc,2016, +91,GPLc,2017, +91,GPLc,2018, +91,GPLc,2019, +91,GPLc,2020, +91,GPLc,2021, +91,GPLc,2022, +91,GPLc,2023, +91,GPLc,2024, +91,E85,2007,82.88 +91,E85,2008,86.88 +91,E85,2009,94.75 +91,E85,2010,107.75 +91,E85,2011,92.83 +91,E85,2012,92.2 +91,E85,2013,95.0 +91,E85,2014,93.33 +91,E85,2015,88.57 +91,E85,2016, +91,E85,2017, +91,E85,2018, +91,E85,2019, +91,E85,2020, +91,E85,2021, +91,E85,2022, +91,E85,2023, +91,E85,2024, +91,E10,2009,124.18 +91,E10,2010,134.78 +91,E10,2011,149.3 +91,E10,2012,156.04 +91,E10,2013,154.77 +91,E10,2014,149.01 +91,E10,2015,135.81 +91,E10,2016, +91,E10,2017, +91,E10,2018, +91,E10,2019, +91,E10,2020, +91,E10,2021, +91,E10,2022, +91,E10,2023, +91,E10,2024, +91,SP98,2013,159.18 +91,SP98,2014,155.83 +91,SP98,2015,142.51 +91,SP98,2016, +91,SP98,2017, +91,SP98,2018, +91,SP98,2019, +91,SP98,2020, +91,SP98,2021, +91,SP98,2022, +91,SP98,2023, +91,SP98,2024, +24,Gazole,2007,109.65 +24,Gazole,2008,127.12 +24,Gazole,2009,100.47 +24,Gazole,2010,115.56 +24,Gazole,2011,134.94 +24,Gazole,2012,141.23 +24,Gazole,2013,136.99 +24,Gazole,2014,130.09 +24,Gazole,2015,116.03 +24,Gazole,2016,111.75 +24,Gazole,2017,124.15 +24,Gazole,2018,144.46 +24,Gazole,2019,145.06 +24,Gazole,2020,127.29 +24,Gazole,2021,144.18 +24,Gazole,2022,187.0 +24,Gazole,2023,182.0 +24,Gazole,2024,176.0 +24,SP95,2007,129.37 +24,SP95,2008,137.16 +24,SP95,2009,121.66 +24,SP95,2010,135.19 +24,SP95,2011,150.62 +24,SP95,2012,158.16 +24,SP95,2013,155.21 +24,SP95,2014,149.8 +24,SP95,2015,136.46 +24,SP95,2016,131.52 +24,SP95,2017,139.1 +24,SP95,2018,151.81 +24,SP95,2019,151.95 +24,SP95,2020,137.25 +24,SP95,2021,156.32 +24,SP95,2022,184.0 +24,SP95,2023,190.0 +24,SP95,2024,187.0 +24,GPLc,2007,73.52 +24,GPLc,2008,76.58 +24,GPLc,2009,67.39 +24,GPLc,2010,75.31 +24,GPLc,2011,83.95 +24,GPLc,2012,87.6 +24,GPLc,2013,88.66 +24,GPLc,2014,87.36 +24,GPLc,2015,81.3 +24,GPLc,2016,74.38 +24,GPLc,2017,75.69 +24,GPLc,2018,85.07 +24,GPLc,2019,88.33 +24,GPLc,2020,88.45 +24,GPLc,2021,89.84 +24,GPLc,2022,87.0 +24,GPLc,2023,101.0 +24,GPLc,2024,101.0 +24,E85,2007,81.99 +24,E85,2008,84.9 +24,E85,2009,93.13 +24,E85,2010,116.5 +24,E85,2011,88.84 +24,E85,2012,92.27 +24,E85,2013,93.71 +24,E85,2014,87.88 +24,E85,2015,87.59 +24,E85,2016,76.46 +24,E85,2017,70.96 +24,E85,2018,69.24 +24,E85,2019,66.04 +24,E85,2020,65.09 +24,E85,2021,67.74 +24,E85,2022,83.0 +24,E85,2023,108.0 +24,E85,2024,87.0 +24,E10,2009,124.41 +24,E10,2010,137.92 +24,E10,2011,151.5 +24,E10,2012,156.4 +24,E10,2013,154.09 +24,E10,2014,148.45 +24,E10,2015,135.05 +24,E10,2016,128.98 +24,E10,2017,136.11 +24,E10,2018,149.04 +24,E10,2019,149.34 +24,E10,2020,134.89 +24,E10,2021,153.82 +24,E10,2022,179.0 +24,E10,2023,188.0 +24,E10,2024,184.0 +24,SP98,2013,157.74 +24,SP98,2014,154.4 +24,SP98,2015,141.13 +24,SP98,2016,136.32 +24,SP98,2017,143.95 +24,SP98,2018,156.85 +24,SP98,2019,157.11 +24,SP98,2020,142.22 +24,SP98,2021,162.0 +24,SP98,2022,189.0 +24,SP98,2023,195.0 +24,SP98,2024,193.0 +25,Gazole,2007,109.39 +25,Gazole,2008,127.08 +25,Gazole,2009,100.72 +25,Gazole,2010,115.71 +25,Gazole,2011,135.17 +25,Gazole,2012,141.3 +25,Gazole,2013,136.84 +25,Gazole,2014,129.88 +25,Gazole,2015,116.33 +25,Gazole,2016, +25,Gazole,2017, +25,Gazole,2018, +25,Gazole,2019, +25,Gazole,2020, +25,Gazole,2021, +25,Gazole,2022, +25,Gazole,2023, +25,Gazole,2024, +25,SP95,2007,128.87 +25,SP95,2008,136.92 +25,SP95,2009,122.07 +25,SP95,2010,136.35 +25,SP95,2011,151.65 +25,SP95,2012,159.44 +25,SP95,2013,155.49 +25,SP95,2014,150.16 +25,SP95,2015,137.07 +25,SP95,2016, +25,SP95,2017, +25,SP95,2018, +25,SP95,2019, +25,SP95,2020, +25,SP95,2021, +25,SP95,2022, +25,SP95,2023, +25,SP95,2024, +25,GPLc,2007,73.34 +25,GPLc,2008,76.07 +25,GPLc,2009,66.61 +25,GPLc,2010,73.28 +25,GPLc,2011,84.99 +25,GPLc,2012,87.32 +25,GPLc,2013,87.2 +25,GPLc,2014,85.9 +25,GPLc,2015,78.89 +25,GPLc,2016, +25,GPLc,2017, +25,GPLc,2018, +25,GPLc,2019, +25,GPLc,2020, +25,GPLc,2021, +25,GPLc,2022, +25,GPLc,2023, +25,GPLc,2024, +25,E85,2007,82.14 +25,E85,2008,82.38 +25,E85,2009,102.06 +25,E85,2010,109.44 +25,E85,2011,89.58 +25,E85,2012,91.92 +25,E85,2013,90.13 +25,E85,2014,83.46 +25,E85,2015,85.22 +25,E85,2016, +25,E85,2017, +25,E85,2018, +25,E85,2019, +25,E85,2020, +25,E85,2021, +25,E85,2022, +25,E85,2023, +25,E85,2024, +25,E10,2009,122.9 +25,E10,2010,134.35 +25,E10,2011,150.33 +25,E10,2012,156.21 +25,E10,2013,154.06 +25,E10,2014,148.77 +25,E10,2015,136.03 +25,E10,2016, +25,E10,2017, +25,E10,2018, +25,E10,2019, +25,E10,2020, +25,E10,2021, +25,E10,2022, +25,E10,2023, +25,E10,2024, +25,SP98,2013,158.18 +25,SP98,2014,154.93 +25,SP98,2015,142.1 +25,SP98,2016, +25,SP98,2017, +25,SP98,2018, +25,SP98,2019, +25,SP98,2020, +25,SP98,2021, +25,SP98,2022, +25,SP98,2023, +25,SP98,2024, +54,Gazole,2007,108.3 +54,Gazole,2008,125.6 +54,Gazole,2009,99.27 +54,Gazole,2010,113.72 +54,Gazole,2011,131.82 +54,Gazole,2012,138.18 +54,Gazole,2013,133.66 +54,Gazole,2014,126.74 +54,Gazole,2015,113.13 +54,Gazole,2016, +54,Gazole,2017, +54,Gazole,2018, +54,Gazole,2019, +54,Gazole,2020, +54,Gazole,2021, +54,Gazole,2022, +54,Gazole,2023, +54,Gazole,2024, +54,SP95,2007,127.78 +54,SP95,2008,135.5 +54,SP95,2009,120.73 +54,SP95,2010,134.16 +54,SP95,2011,148.43 +54,SP95,2012,156.54 +54,SP95,2013,153.32 +54,SP95,2014,148.05 +54,SP95,2015,135.08 +54,SP95,2016, +54,SP95,2017, +54,SP95,2018, +54,SP95,2019, +54,SP95,2020, +54,SP95,2021, +54,SP95,2022, +54,SP95,2023, +54,SP95,2024, +54,E85,2007,80.97 +54,E85,2008,84.14 +54,E85,2009,97.22 +54,E85,2010,109.11 +54,E85,2011,92.32 +54,E85,2012,95.39 +54,E85,2013,89.55 +54,E85,2014,88.7 +54,E85,2015,80.82 +54,E85,2016, +54,E85,2017, +54,E85,2018, +54,E85,2019, +54,E85,2020, +54,E85,2021, +54,E85,2022, +54,E85,2023, +54,E85,2024, +54,GPLc,2007,69.15 +54,GPLc,2008,71.68 +54,GPLc,2009,63.45 +54,GPLc,2010,70.21 +54,GPLc,2011,80.68 +54,GPLc,2012,84.18 +54,GPLc,2013,84.0 +54,GPLc,2014,82.7 +54,GPLc,2015,76.65 +54,GPLc,2016, +54,GPLc,2017, +54,GPLc,2018, +54,GPLc,2019, +54,GPLc,2020, +54,GPLc,2021, +54,GPLc,2022, +54,GPLc,2023, +54,GPLc,2024, +54,E10,2009,125.46 +54,E10,2010,136.14 +54,E10,2011,149.61 +54,E10,2012,153.55 +54,E10,2013,150.84 +54,E10,2014,144.63 +54,E10,2015,131.59 +54,E10,2016, +54,E10,2017, +54,E10,2018, +54,E10,2019, +54,E10,2020, +54,E10,2021, +54,E10,2022, +54,E10,2023, +54,E10,2024, +54,SP98,2013,154.59 +54,SP98,2014,151.16 +54,SP98,2015,138.73 +54,SP98,2016, +54,SP98,2017, +54,SP98,2018, +54,SP98,2019, +54,SP98,2020, +54,SP98,2021, +54,SP98,2022, +54,SP98,2023, +54,SP98,2024, +74,Gazole,2007,111.12 +74,Gazole,2008,128.67 +74,Gazole,2009,101.7 +74,Gazole,2010,116.62 +74,Gazole,2011,136.45 +74,Gazole,2012,142.79 +74,Gazole,2013,138.34 +74,Gazole,2014,131.73 +74,Gazole,2015,117.99 +74,Gazole,2016, +74,Gazole,2017, +74,Gazole,2018, +74,Gazole,2019, +74,Gazole,2020, +74,Gazole,2021, +74,Gazole,2022, +74,Gazole,2023, +74,Gazole,2024, +74,SP95,2007,131.49 +74,SP95,2008,139.15 +74,SP95,2009,123.95 +74,SP95,2010,137.8 +74,SP95,2011,153.58 +74,SP95,2012,161.45 +74,SP95,2013,157.8 +74,SP95,2014,152.72 +74,SP95,2015,139.16 +74,SP95,2016, +74,SP95,2017, +74,SP95,2018, +74,SP95,2019, +74,SP95,2020, +74,SP95,2021, +74,SP95,2022, +74,SP95,2023, +74,SP95,2024, +74,GPLc,2007,73.85 +74,GPLc,2008,77.61 +74,GPLc,2009,66.25 +74,GPLc,2010,72.85 +74,GPLc,2011,84.76 +74,GPLc,2012,87.38 +74,GPLc,2013,87.11 +74,GPLc,2014,87.86 +74,GPLc,2015,81.92 +74,GPLc,2016, +74,GPLc,2017, +74,GPLc,2018, +74,GPLc,2019, +74,GPLc,2020, +74,GPLc,2021, +74,GPLc,2022, +74,GPLc,2023, +74,GPLc,2024, +74,E85,2007,85.0 +74,E85,2008,86.92 +74,E85,2009,100.73 +74,E85,2010,124.66 +74,E85,2011,94.95 +74,E85,2012,95.0 +74,E85,2013,93.04 +74,E85,2014,92.62 +74,E85,2015,110.23 +74,E85,2016, +74,E85,2017, +74,E85,2018, +74,E85,2019, +74,E85,2020, +74,E85,2021, +74,E85,2022, +74,E85,2023, +74,E85,2024, +74,E10,2009,125.89 +74,E10,2010,138.79 +74,E10,2011,152.84 +74,E10,2012,159.52 +74,E10,2013,156.05 +74,E10,2014,150.74 +74,E10,2015,137.29 +74,E10,2016, +74,E10,2017, +74,E10,2018, +74,E10,2019, +74,E10,2020, +74,E10,2021, +74,E10,2022, +74,E10,2023, +74,E10,2024, +74,SP98,2013,160.36 +74,SP98,2014,156.41 +74,SP98,2015,143.45 +74,SP98,2016, +74,SP98,2017, +74,SP98,2018, +74,SP98,2019, +74,SP98,2020, +74,SP98,2021, +74,SP98,2022, +74,SP98,2023, +74,SP98,2024, +94,Gazole,2007,117.03 +94,Gazole,2008,135.22 +94,Gazole,2009,109.01 +94,Gazole,2010,122.27 +94,Gazole,2011,140.54 +94,Gazole,2012,148.3 +94,Gazole,2013,144.74 +94,Gazole,2014,138.46 +94,Gazole,2015,125.39 +94,Gazole,2016,120.72 +94,Gazole,2017,134.32 +94,Gazole,2018,154.25 +94,Gazole,2019,154.47 +94,Gazole,2020,140.28 +94,Gazole,2021,155.04 +94,Gazole,2022,190.0 +94,Gazole,2023,190.0 +94,Gazole,2024,185.0 +94,SP95,2007,133.6 +94,SP95,2008,142.07 +94,SP95,2009,127.62 +94,SP95,2010,141.02 +94,SP95,2011,156.79 +94,SP95,2012,165.36 +94,SP95,2013,163.59 +94,SP95,2014,157.73 +94,SP95,2015,144.64 +94,SP95,2016,139.65 +94,SP95,2017,150.14 +94,SP95,2018,162.73 +94,SP95,2019,162.23 +94,SP95,2020,148.65 +94,SP95,2021,165.67 +94,SP95,2022,186.0 +94,SP95,2023,195.0 +94,SP95,2024,195.0 +94,GPLc,2007,80.17 +94,GPLc,2008,84.38 +94,GPLc,2009,78.68 +94,GPLc,2010,81.26 +94,GPLc,2011,89.06 +94,GPLc,2012,93.35 +94,GPLc,2013,102.79 +94,GPLc,2014,101.75 +94,GPLc,2015,102.32 +94,GPLc,2016,101.17 +94,GPLc,2017,101.48 +94,GPLc,2018,104.85 +94,GPLc,2019,110.35 +94,GPLc,2020,111.06 +94,GPLc,2021,111.49 +94,GPLc,2022,119.0 +94,GPLc,2023,126.0 +94,GPLc,2024,127.0 +94,E85,2008,100.0 +94,E85,2009,133.22 +94,E85,2010,135.85 +94,E85,2011,79.37 +94,E85,2012,86.0 +94,E85,2013, +94,E85,2014, +94,E85,2015,129.45 +94,E85,2016,137.78 +94,E85,2017,100.0 +94,E85,2018,157.15 +94,E85,2019,162.67 +94,E85,2020,106.52 +94,E85,2021,135.04 +94,E85,2022,201.0 +94,E85,2023,189.0 +94,E85,2024,196.0 +94,E10,2011,161.9 +94,E10,2012,144.74 +94,E10,2013,161.84 +94,E10,2014,158.58 +94,E10,2015,153.5 +94,E10,2016,122.1 +94,E10,2017,147.0 +94,E10,2018,167.87 +94,E10,2019,165.14 +94,E10,2020,157.57 +94,E10,2021,162.08 +94,E10,2022,189.0 +94,E10,2023,194.0 +94,E10,2024,194.0 +94,SP98,2014,151.8 +94,SP98,2015,132.86 +94,SP98,2016, +94,SP98,2017,154.5 +94,SP98,2018, +94,SP98,2019,164.0 +94,SP98,2020,147.0 +94,SP98,2021,159.33 +94,SP98,2022,150.0 +94,SP98,2023,195.0 +94,SP98,2024, +26,Gazole,2007,109.98 +26,Gazole,2008,128.21 +26,Gazole,2009,101.39 +26,Gazole,2010,116.37 +26,Gazole,2011,136.53 +26,Gazole,2012,142.44 +26,Gazole,2013,138.02 +26,Gazole,2014,131.71 +26,Gazole,2015,117.68 +26,Gazole,2016, +26,Gazole,2017, +26,Gazole,2018, +26,Gazole,2019, +26,Gazole,2020, +26,Gazole,2021, +26,Gazole,2022, +26,Gazole,2023, +26,Gazole,2024, +26,SP95,2007,128.64 +26,SP95,2008,137.96 +26,SP95,2009,123.13 +26,SP95,2010,137.08 +26,SP95,2011,152.66 +26,SP95,2012,159.81 +26,SP95,2013,156.84 +26,SP95,2014,151.41 +26,SP95,2015,137.59 +26,SP95,2016, +26,SP95,2017, +26,SP95,2018, +26,SP95,2019, +26,SP95,2020, +26,SP95,2021, +26,SP95,2022, +26,SP95,2023, +26,SP95,2024, +26,GPLc,2007,74.8 +26,GPLc,2008,76.52 +26,GPLc,2009,67.57 +26,GPLc,2010,73.34 +26,GPLc,2011,85.31 +26,GPLc,2012,88.71 +26,GPLc,2013,89.56 +26,GPLc,2014,87.8 +26,GPLc,2015,81.76 +26,GPLc,2016, +26,GPLc,2017, +26,GPLc,2018, +26,GPLc,2019, +26,GPLc,2020, +26,GPLc,2021, +26,GPLc,2022, +26,GPLc,2023, +26,GPLc,2024, +26,E85,2007,79.9 +26,E85,2008,81.75 +26,E85,2009,95.26 +26,E85,2010,118.53 +26,E85,2011,88.26 +26,E85,2012,91.86 +26,E85,2013,90.7 +26,E85,2014,87.64 +26,E85,2015,102.39 +26,E85,2016, +26,E85,2017, +26,E85,2018, +26,E85,2019, +26,E85,2020, +26,E85,2021, +26,E85,2022, +26,E85,2023, +26,E85,2024, +26,E10,2009,124.11 +26,E10,2010,137.18 +26,E10,2011,153.14 +26,E10,2012,158.21 +26,E10,2013,155.6 +26,E10,2014,150.2 +26,E10,2015,137.1 +26,E10,2016, +26,E10,2017, +26,E10,2018, +26,E10,2019, +26,E10,2020, +26,E10,2021, +26,E10,2022, +26,E10,2023, +26,E10,2024, +26,SP98,2013,159.2 +26,SP98,2014,155.95 +26,SP98,2015,142.56 +26,SP98,2016, +26,SP98,2017, +26,SP98,2018, +26,SP98,2019, +26,SP98,2020, +26,SP98,2021, +26,SP98,2022, +26,SP98,2023, +26,SP98,2024, +53,Gazole,2007,108.94 +53,Gazole,2008,126.49 +53,Gazole,2009,99.9 +53,Gazole,2010,114.95 +53,Gazole,2011,134.6 +53,Gazole,2012,140.67 +53,Gazole,2013,136.1 +53,Gazole,2014,129.26 +53,Gazole,2015,115.32 +53,Gazole,2016,110.49 +53,Gazole,2017,122.62 +53,Gazole,2018,142.84 +53,Gazole,2019,143.34 +53,Gazole,2020,125.11 +53,Gazole,2021,142.18 +53,Gazole,2022,185.0 +53,Gazole,2023,179.0 +53,Gazole,2024,173.0 +53,SP95,2007,128.54 +53,SP95,2008,136.98 +53,SP95,2009,122.34 +53,SP95,2010,136.3 +53,SP95,2011,151.65 +53,SP95,2012,159.01 +53,SP95,2013,155.82 +53,SP95,2014,150.26 +53,SP95,2015,137.01 +53,SP95,2016,131.73 +53,SP95,2017,138.53 +53,SP95,2018,151.0 +53,SP95,2019,151.35 +53,SP95,2020,136.46 +53,SP95,2021,154.95 +53,SP95,2022,183.0 +53,SP95,2023,188.0 +53,SP95,2024,185.0 +53,GPLc,2007,72.53 +53,GPLc,2008,74.55 +53,GPLc,2009,64.52 +53,GPLc,2010,71.38 +53,GPLc,2011,81.79 +53,GPLc,2012,84.69 +53,GPLc,2013,85.05 +53,GPLc,2014,83.11 +53,GPLc,2015,77.22 +53,GPLc,2016,67.77 +53,GPLc,2017,72.5 +53,GPLc,2018,80.57 +53,GPLc,2019,84.47 +53,GPLc,2020,81.93 +53,GPLc,2021,85.25 +53,GPLc,2022,85.0 +53,GPLc,2023,98.0 +53,GPLc,2024,96.0 +53,E85,2007,81.94 +53,E85,2008,83.0 +53,E85,2009,95.93 +53,E85,2010,112.85 +53,E85,2011,91.11 +53,E85,2012,92.89 +53,E85,2013,92.11 +53,E85,2014,88.17 +53,E85,2015,88.85 +53,E85,2016,82.11 +53,E85,2017,76.41 +53,E85,2018,73.02 +53,E85,2019,71.94 +53,E85,2020,69.65 +53,E85,2021,68.55 +53,E85,2022,81.0 +53,E85,2023,106.0 +53,E85,2024,87.0 +53,E10,2009,126.02 +53,E10,2010,137.75 +53,E10,2011,153.39 +53,E10,2012,157.64 +53,E10,2013,154.19 +53,E10,2014,148.2 +53,E10,2015,134.7 +53,E10,2016,127.7 +53,E10,2017,134.45 +53,E10,2018,147.17 +53,E10,2019,147.37 +53,E10,2020,132.27 +53,E10,2021,151.51 +53,E10,2022,176.0 +53,E10,2023,184.0 +53,E10,2024,180.0 +53,SP98,2013,158.12 +53,SP98,2014,154.89 +53,SP98,2015,141.67 +53,SP98,2016,135.7 +53,SP98,2017,142.98 +53,SP98,2018,155.66 +53,SP98,2019,155.81 +53,SP98,2020,140.64 +53,SP98,2021,159.87 +53,SP98,2022,186.0 +53,SP98,2023,192.0 +53,SP98,2024,190.0 +72,Gazole,2007,110.3 +72,Gazole,2008,128.05 +72,Gazole,2009,101.45 +72,Gazole,2010,116.58 +72,Gazole,2011,136.21 +72,Gazole,2012,142.51 +72,Gazole,2013,137.85 +72,Gazole,2014,130.9 +72,Gazole,2015,117.29 +72,Gazole,2016, +72,Gazole,2017, +72,Gazole,2018, +72,Gazole,2019, +72,Gazole,2020, +72,Gazole,2021, +72,Gazole,2022, +72,Gazole,2023, +72,Gazole,2024, +72,SP95,2007,129.98 +72,SP95,2008,138.44 +72,SP95,2009,123.85 +72,SP95,2010,137.4 +72,SP95,2011,153.23 +72,SP95,2012,160.81 +72,SP95,2013,157.53 +72,SP95,2014,151.91 +72,SP95,2015,138.74 +72,SP95,2016, +72,SP95,2017, +72,SP95,2018, +72,SP95,2019, +72,SP95,2020, +72,SP95,2021, +72,SP95,2022, +72,SP95,2023, +72,SP95,2024, +72,GPLc,2007,73.26 +72,GPLc,2008,75.13 +72,GPLc,2009,65.94 +72,GPLc,2010,73.09 +72,GPLc,2011,82.3 +72,GPLc,2012,86.24 +72,GPLc,2013,87.38 +72,GPLc,2014,85.12 +72,GPLc,2015,78.88 +72,GPLc,2016, +72,GPLc,2017, +72,GPLc,2018, +72,GPLc,2019, +72,GPLc,2020, +72,GPLc,2021, +72,GPLc,2022, +72,GPLc,2023, +72,GPLc,2024, +72,E85,2007,82.81 +72,E85,2008,86.47 +72,E85,2009,98.13 +72,E85,2010,113.59 +72,E85,2011,89.18 +72,E85,2012,93.49 +72,E85,2013,94.41 +72,E85,2014,88.41 +72,E85,2015,89.06 +72,E85,2016, +72,E85,2017, +72,E85,2018, +72,E85,2019, +72,E85,2020, +72,E85,2021, +72,E85,2022, +72,E85,2023, +72,E85,2024, +72,E10,2009,124.02 +72,E10,2010,138.97 +72,E10,2011,153.66 +72,E10,2012,158.89 +72,E10,2013,155.21 +72,E10,2014,149.56 +72,E10,2015,136.11 +72,E10,2016, +72,E10,2017, +72,E10,2018, +72,E10,2019, +72,E10,2020, +72,E10,2021, +72,E10,2022, +72,E10,2023, +72,E10,2024, +72,SP98,2013,159.91 +72,SP98,2014,156.34 +72,SP98,2015,142.92 +72,SP98,2016, +72,SP98,2017, +72,SP98,2018, +72,SP98,2019, +72,SP98,2020, +72,SP98,2021, +72,SP98,2022, +72,SP98,2023, +72,SP98,2024, +43,Gazole,2007,109.36 +43,Gazole,2008,127.25 +43,Gazole,2009,100.56 +43,Gazole,2010,115.4 +43,Gazole,2011,135.45 +43,Gazole,2012,141.54 +43,Gazole,2013,137.61 +43,Gazole,2014,130.78 +43,Gazole,2015,117.15 +43,Gazole,2016, +43,Gazole,2017, +43,Gazole,2018, +43,Gazole,2019, +43,Gazole,2020, +43,Gazole,2021, +43,Gazole,2022, +43,Gazole,2023, +43,Gazole,2024, +43,SP95,2007,128.29 +43,SP95,2008,136.89 +43,SP95,2009,122.83 +43,SP95,2010,137.02 +43,SP95,2011,152.81 +43,SP95,2012,159.57 +43,SP95,2013,157.26 +43,SP95,2014,151.53 +43,SP95,2015,137.87 +43,SP95,2016, +43,SP95,2017, +43,SP95,2018, +43,SP95,2019, +43,SP95,2020, +43,SP95,2021, +43,SP95,2022, +43,SP95,2023, +43,SP95,2024, +43,GPLc,2007,71.68 +43,GPLc,2008,74.68 +43,GPLc,2009,65.96 +43,GPLc,2010,72.74 +43,GPLc,2011,80.76 +43,GPLc,2012,85.92 +43,GPLc,2013,87.54 +43,GPLc,2014,86.32 +43,GPLc,2015,79.8 +43,GPLc,2016, +43,GPLc,2017, +43,GPLc,2018, +43,GPLc,2019, +43,GPLc,2020, +43,GPLc,2021, +43,GPLc,2022, +43,GPLc,2023, +43,GPLc,2024, +43,E85,2007,83.06 +43,E85,2008,87.1 +43,E85,2009,95.62 +43,E85,2010,111.42 +43,E85,2011,91.88 +43,E85,2012,96.98 +43,E85,2013,105.72 +43,E85,2014,94.6 +43,E85,2015,102.83 +43,E85,2016, +43,E85,2017, +43,E85,2018, +43,E85,2019, +43,E85,2020, +43,E85,2021, +43,E85,2022, +43,E85,2023, +43,E85,2024, +43,E10,2009,119.57 +43,E10,2010,131.45 +43,E10,2011,150.71 +43,E10,2012,157.15 +43,E10,2013,155.41 +43,E10,2014,150.05 +43,E10,2015,136.41 +43,E10,2016, +43,E10,2017, +43,E10,2018, +43,E10,2019, +43,E10,2020, +43,E10,2021, +43,E10,2022, +43,E10,2023, +43,E10,2024, +43,SP98,2013,159.45 +43,SP98,2014,156.43 +43,SP98,2015,142.88 +43,SP98,2016, +43,SP98,2017, +43,SP98,2018, +43,SP98,2019, +43,SP98,2020, +43,SP98,2021, +43,SP98,2022, +43,SP98,2023, +43,SP98,2024, +23,Gazole,2007,109.36 +23,Gazole,2008,126.99 +23,Gazole,2009,100.2 +23,Gazole,2010,115.27 +23,Gazole,2011,134.93 +23,Gazole,2012,141.07 +23,Gazole,2013,136.68 +23,Gazole,2014,129.85 +23,Gazole,2015,116.07 +23,Gazole,2016, +23,Gazole,2017, +23,Gazole,2018, +23,Gazole,2019, +23,Gazole,2020, +23,Gazole,2021, +23,Gazole,2022, +23,Gazole,2023, +23,Gazole,2024, +23,SP95,2007,129.4 +23,SP95,2008,137.01 +23,SP95,2009,121.76 +23,SP95,2010,136.31 +23,SP95,2011,151.52 +23,SP95,2012,159.15 +23,SP95,2013,156.11 +23,SP95,2014,150.08 +23,SP95,2015,136.78 +23,SP95,2016, +23,SP95,2017, +23,SP95,2018, +23,SP95,2019, +23,SP95,2020, +23,SP95,2021, +23,SP95,2022, +23,SP95,2023, +23,SP95,2024, +23,GPLc,2007,73.91 +23,GPLc,2008,76.3 +23,GPLc,2009,70.02 +23,GPLc,2010,73.42 +23,GPLc,2011,83.1 +23,GPLc,2012,88.65 +23,GPLc,2013,89.29 +23,GPLc,2014,87.71 +23,GPLc,2015,80.83 +23,GPLc,2016, +23,GPLc,2017, +23,GPLc,2018, +23,GPLc,2019, +23,GPLc,2020, +23,GPLc,2021, +23,GPLc,2022, +23,GPLc,2023, +23,GPLc,2024, +23,E85,2007,79.89 +23,E85,2008,82.04 +23,E85,2009,88.1 +23,E85,2010,103.2 +23,E85,2011,95.27 +23,E85,2012,91.28 +23,E85,2013,93.23 +23,E85,2014,82.53 +23,E85,2015,92.54 +23,E85,2016, +23,E85,2017, +23,E85,2018, +23,E85,2019, +23,E85,2020, +23,E85,2021, +23,E85,2022, +23,E85,2023, +23,E85,2024, +23,E10,2009,121.85 +23,E10,2010,133.26 +23,E10,2011,147.63 +23,E10,2012,155.27 +23,E10,2013,153.74 +23,E10,2014,148.26 +23,E10,2015,135.52 +23,E10,2016, +23,E10,2017, +23,E10,2018, +23,E10,2019, +23,E10,2020, +23,E10,2021, +23,E10,2022, +23,E10,2023, +23,E10,2024, +23,SP98,2013,158.08 +23,SP98,2014,154.77 +23,SP98,2015,141.78 +23,SP98,2016, +23,SP98,2017, +23,SP98,2018, +23,SP98,2019, +23,SP98,2020, +23,SP98,2021, +23,SP98,2022, +23,SP98,2023, +23,SP98,2024, +52,Gazole,2007,109.28 +52,Gazole,2008,126.78 +52,Gazole,2009,100.62 +52,Gazole,2010,115.46 +52,Gazole,2011,134.72 +52,Gazole,2012,140.99 +52,Gazole,2013,136.45 +52,Gazole,2014,129.52 +52,Gazole,2015,115.92 +52,Gazole,2016,111.43 +52,Gazole,2017,123.49 +52,Gazole,2018,143.8 +52,Gazole,2019,144.4 +52,Gazole,2020,126.31 +52,Gazole,2021,143.28 +52,Gazole,2022,185.0 +52,Gazole,2023,180.0 +52,Gazole,2024,174.0 +52,SP95,2007,128.66 +52,SP95,2008,136.86 +52,SP95,2009,122.57 +52,SP95,2010,135.64 +52,SP95,2011,150.58 +52,SP95,2012,158.27 +52,SP95,2013,155.25 +52,SP95,2014,150.16 +52,SP95,2015,137.26 +52,SP95,2016,132.19 +52,SP95,2017,139.27 +52,SP95,2018,152.05 +52,SP95,2019,152.56 +52,SP95,2020,137.61 +52,SP95,2021,156.55 +52,SP95,2022,184.0 +52,SP95,2023,190.0 +52,SP95,2024,187.0 +52,GPLc,2007,71.85 +52,GPLc,2008,75.06 +52,GPLc,2009,65.21 +52,GPLc,2010,71.23 +52,GPLc,2011,81.34 +52,GPLc,2012,85.12 +52,GPLc,2013,85.51 +52,GPLc,2014,84.05 +52,GPLc,2015,77.76 +52,GPLc,2016,69.5 +52,GPLc,2017,72.53 +52,GPLc,2018,81.82 +52,GPLc,2019,84.95 +52,GPLc,2020,84.43 +52,GPLc,2021,84.91 +52,GPLc,2022,83.0 +52,GPLc,2023,98.0 +52,GPLc,2024,98.0 +52,E85,2007,83.04 +52,E85,2008,83.97 +52,E85,2009,91.41 +52,E85,2010,116.58 +52,E85,2011,95.28 +52,E85,2012,91.76 +52,E85,2013,94.8 +52,E85,2014,89.68 +52,E85,2015,92.46 +52,E85,2016,76.85 +52,E85,2017,71.8 +52,E85,2018,70.14 +52,E85,2019,67.43 +52,E85,2020,64.82 +52,E85,2021,67.76 +52,E85,2022,82.0 +52,E85,2023,106.0 +52,E85,2024,86.0 +52,E10,2009,124.86 +52,E10,2010,137.42 +52,E10,2011,152.05 +52,E10,2012,157.24 +52,E10,2013,153.97 +52,E10,2014,147.87 +52,E10,2015,134.53 +52,E10,2016,128.11 +52,E10,2017,135.08 +52,E10,2018,147.95 +52,E10,2019,148.35 +52,E10,2020,133.41 +52,E10,2021,152.58 +52,E10,2022,177.0 +52,E10,2023,185.0 +52,E10,2024,182.0 +52,SP98,2013,157.63 +52,SP98,2014,154.23 +52,SP98,2015,141.48 +52,SP98,2016,136.04 +52,SP98,2017,143.4 +52,SP98,2018,156.47 +52,SP98,2019,156.9 +52,SP98,2020,141.59 +52,SP98,2021,160.92 +52,SP98,2022,187.0 +52,SP98,2023,194.0 +52,SP98,2024,191.0 +31,Gazole,2007,108.98 +31,Gazole,2008,126.28 +31,Gazole,2009,99.78 +31,Gazole,2010,114.99 +31,Gazole,2011,135.04 +31,Gazole,2012,141.04 +31,Gazole,2013,136.52 +31,Gazole,2014,129.36 +31,Gazole,2015,115.36 +31,Gazole,2016, +31,Gazole,2017, +31,Gazole,2018, +31,Gazole,2019, +31,Gazole,2020, +31,Gazole,2021, +31,Gazole,2022, +31,Gazole,2023, +31,Gazole,2024, +31,SP95,2007,128.92 +31,SP95,2008,136.66 +31,SP95,2009,120.75 +31,SP95,2010,135.25 +31,SP95,2011,151.33 +31,SP95,2012,158.82 +31,SP95,2013,155.91 +31,SP95,2014,150.18 +31,SP95,2015,136.95 +31,SP95,2016, +31,SP95,2017, +31,SP95,2018, +31,SP95,2019, +31,SP95,2020, +31,SP95,2021, +31,SP95,2022, +31,SP95,2023, +31,SP95,2024, +31,GPLc,2007,73.65 +31,GPLc,2008,75.34 +31,GPLc,2009,65.76 +31,GPLc,2010,72.36 +31,GPLc,2011,84.0 +31,GPLc,2012,86.8 +31,GPLc,2013,86.55 +31,GPLc,2014,85.4 +31,GPLc,2015,76.89 +31,GPLc,2016, +31,GPLc,2017, +31,GPLc,2018, +31,GPLc,2019, +31,GPLc,2020, +31,GPLc,2021, +31,GPLc,2022, +31,GPLc,2023, +31,GPLc,2024, +31,E85,2007,82.06 +31,E85,2008,84.07 +31,E85,2009,91.43 +31,E85,2010,107.39 +31,E85,2011,90.79 +31,E85,2012,92.18 +31,E85,2013,93.29 +31,E85,2014,85.64 +31,E85,2015,84.29 +31,E85,2016, +31,E85,2017, +31,E85,2018, +31,E85,2019, +31,E85,2020, +31,E85,2021, +31,E85,2022, +31,E85,2023, +31,E85,2024, +31,E10,2009,126.46 +31,E10,2010,136.37 +31,E10,2011,151.83 +31,E10,2012,157.98 +31,E10,2013,155.18 +31,E10,2014,149.25 +31,E10,2015,136.02 +31,E10,2016, +31,E10,2017, +31,E10,2018, +31,E10,2019, +31,E10,2020, +31,E10,2021, +31,E10,2022, +31,E10,2023, +31,E10,2024, +31,SP98,2013,158.75 +31,SP98,2014,154.96 +31,SP98,2015,141.6 +31,SP98,2016, +31,SP98,2017, +31,SP98,2018, +31,SP98,2019, +31,SP98,2020, +31,SP98,2021, +31,SP98,2022, +31,SP98,2023, +31,SP98,2024, +41,Gazole,2007,110.31 +41,Gazole,2008,128.21 +41,Gazole,2009,101.65 +41,Gazole,2010,116.37 +41,Gazole,2011,136.33 +41,Gazole,2012,142.63 +41,Gazole,2013,138.07 +41,Gazole,2014,131.24 +41,Gazole,2015,117.61 +41,Gazole,2016, +41,Gazole,2017, +41,Gazole,2018, +41,Gazole,2019, +41,Gazole,2020, +41,Gazole,2021, +41,Gazole,2022, +41,Gazole,2023, +41,Gazole,2024, +41,SP95,2007,129.82 +41,SP95,2008,138.01 +41,SP95,2009,122.82 +41,SP95,2010,136.95 +41,SP95,2011,152.69 +41,SP95,2012,160.13 +41,SP95,2013,157.24 +41,SP95,2014,151.34 +41,SP95,2015,138.14 +41,SP95,2016, +41,SP95,2017, +41,SP95,2018, +41,SP95,2019, +41,SP95,2020, +41,SP95,2021, +41,SP95,2022, +41,SP95,2023, +41,SP95,2024, +41,GPLc,2007,70.43 +41,GPLc,2008,73.3 +41,GPLc,2009,65.13 +41,GPLc,2010,68.87 +41,GPLc,2011,79.72 +41,GPLc,2012,85.49 +41,GPLc,2013,84.83 +41,GPLc,2014,83.02 +41,GPLc,2015,77.22 +41,GPLc,2016, +41,GPLc,2017, +41,GPLc,2018, +41,GPLc,2019, +41,GPLc,2020, +41,GPLc,2021, +41,GPLc,2022, +41,GPLc,2023, +41,GPLc,2024, +41,E85,2007,84.46 +41,E85,2008,89.15 +41,E85,2009,87.39 +41,E85,2010,101.28 +41,E85,2011,94.72 +41,E85,2012,90.9 +41,E85,2013,92.33 +41,E85,2014,90.07 +41,E85,2015,90.03 +41,E85,2016, +41,E85,2017, +41,E85,2018, +41,E85,2019, +41,E85,2020, +41,E85,2021, +41,E85,2022, +41,E85,2023, +41,E85,2024, +41,E10,2009,124.0 +41,E10,2010,134.53 +41,E10,2011,150.7 +41,E10,2012,157.37 +41,E10,2013,154.6 +41,E10,2014,149.22 +41,E10,2015,136.04 +41,E10,2016, +41,E10,2017, +41,E10,2018, +41,E10,2019, +41,E10,2020, +41,E10,2021, +41,E10,2022, +41,E10,2023, +41,E10,2024, +41,SP98,2013,159.08 +41,SP98,2014,155.8 +41,SP98,2015,142.5 +41,SP98,2016, +41,SP98,2017, +41,SP98,2018, +41,SP98,2019, +41,SP98,2020, +41,SP98,2021, +41,SP98,2022, +41,SP98,2023, +41,SP98,2024, +42,Gazole,2007,110.34 +42,Gazole,2008,128.54 +42,Gazole,2009,101.56 +42,Gazole,2010,115.82 +42,Gazole,2011,136.38 +42,Gazole,2012,142.21 +42,Gazole,2013,137.32 +42,Gazole,2014,130.18 +42,Gazole,2015,117.05 +42,Gazole,2016, +42,Gazole,2017, +42,Gazole,2018, +42,Gazole,2019, +42,Gazole,2020, +42,Gazole,2021, +42,Gazole,2022, +42,Gazole,2023, +42,Gazole,2024, +42,SP95,2007,128.75 +42,SP95,2008,137.51 +42,SP95,2009,122.91 +42,SP95,2010,136.84 +42,SP95,2011,152.43 +42,SP95,2012,158.93 +42,SP95,2013,156.08 +42,SP95,2014,150.17 +42,SP95,2015,137.02 +42,SP95,2016, +42,SP95,2017, +42,SP95,2018, +42,SP95,2019, +42,SP95,2020, +42,SP95,2021, +42,SP95,2022, +42,SP95,2023, +42,SP95,2024, +42,GPLc,2007,72.03 +42,GPLc,2008,74.5 +42,GPLc,2009,65.73 +42,GPLc,2010,72.43 +42,GPLc,2011,85.27 +42,GPLc,2012,86.78 +42,GPLc,2013,87.33 +42,GPLc,2014,84.62 +42,GPLc,2015,77.3 +42,GPLc,2016, +42,GPLc,2017, +42,GPLc,2018, +42,GPLc,2019, +42,GPLc,2020, +42,GPLc,2021, +42,GPLc,2022, +42,GPLc,2023, +42,GPLc,2024, +42,E85,2007,83.24 +42,E85,2008,85.76 +42,E85,2009,91.13 +42,E85,2010,101.68 +42,E85,2011,88.58 +42,E85,2012,92.24 +42,E85,2013,92.88 +42,E85,2014,89.53 +42,E85,2015,89.66 +42,E85,2016, +42,E85,2017, +42,E85,2018, +42,E85,2019, +42,E85,2020, +42,E85,2021, +42,E85,2022, +42,E85,2023, +42,E85,2024, +42,E10,2009,121.92 +42,E10,2010,136.58 +42,E10,2011,153.5 +42,E10,2012,159.02 +42,E10,2013,155.71 +42,E10,2014,149.78 +42,E10,2015,136.7 +42,E10,2016, +42,E10,2017, +42,E10,2018, +42,E10,2019, +42,E10,2020, +42,E10,2021, +42,E10,2022, +42,E10,2023, +42,E10,2024, +42,SP98,2013,159.21 +42,SP98,2014,155.66 +42,SP98,2015,142.84 +42,SP98,2016, +42,SP98,2017, +42,SP98,2018, +42,SP98,2019, +42,SP98,2020, +42,SP98,2021, +42,SP98,2022, +42,SP98,2023, +42,SP98,2024, +02,Gazole,2007,108.88 +02,Gazole,2008,127.06 +02,Gazole,2009,100.37 +02,Gazole,2010,116.33 +02,Gazole,2011,137.81 +02,Gazole,2012,144.88 +02,Gazole,2013,141.14 +02,Gazole,2014,134.29 +02,Gazole,2015, +02,Gazole,2016, +02,Gazole,2017, +02,Gazole,2018, +02,Gazole,2019, +02,Gazole,2020, +02,Gazole,2021, +02,Gazole,2022, +02,Gazole,2023, +02,Gazole,2024, +02,SP95,2007,129.5 +02,SP95,2008,138.44 +02,SP95,2009,120.08 +02,SP95,2010, +02,SP95,2011,157.31 +02,SP95,2012,164.14 +02,SP95,2013,162.22 +02,SP95,2014,156.73 +02,SP95,2015, +02,SP95,2016, +02,SP95,2017, +02,SP95,2018, +02,SP95,2019, +02,SP95,2020, +02,SP95,2021, +02,SP95,2022, +02,SP95,2023, +02,SP95,2024, +02,E10,2009,124.06 +02,E10,2010,136.68 +02,E10,2011,153.24 +02,E10,2012,161.56 +02,E10,2013,159.51 +02,E10,2014,153.66 +02,E10,2015, +02,E10,2016, +02,E10,2017, +02,E10,2018, +02,E10,2019, +02,E10,2020, +02,E10,2021, +02,E10,2022, +02,E10,2023, +02,E10,2024, +02,SP98,2013,166.63 +02,SP98,2014,160.85 +02,SP98,2015, +02,SP98,2016, +02,SP98,2017, +02,SP98,2018, +02,SP98,2019, +02,SP98,2020, +02,SP98,2021, +02,SP98,2022, +02,SP98,2023, +02,SP98,2024, +11,Gazole,2007,111.29 +11,Gazole,2008,128.72 +11,Gazole,2009,101.97 +11,Gazole,2010,117.24 +11,Gazole,2011,135.9 +11,Gazole,2012,143.46 +11,Gazole,2013,138.59 +11,Gazole,2014,132.05 +11,Gazole,2015,118.37 +11,Gazole,2016,114.37 +11,Gazole,2017,129.07 +11,Gazole,2018,149.42 +11,Gazole,2019,150.24 +11,Gazole,2020,132.67 +11,Gazole,2021,149.88 +11,Gazole,2022,192.0 +11,Gazole,2023,189.0 +11,Gazole,2024,181.0 +11,SP95,2007,130.14 +11,SP95,2008,137.52 +11,SP95,2009,120.85 +11,SP95,2010,135.57 +11,SP95,2011,150.27 +11,SP95,2012,159.13 +11,SP95,2013,155.95 +11,SP95,2014,150.57 +11,SP95,2015,137.48 +11,SP95,2016,132.97 +11,SP95,2017,141.28 +11,SP95,2018,154.34 +11,SP95,2019,154.56 +11,SP95,2020,139.26 +11,SP95,2021,157.94 +11,SP95,2022,187.0 +11,SP95,2023,194.0 +11,SP95,2024,190.0 +11,GPLc,2007,74.74 +11,GPLc,2008,76.21 +11,GPLc,2009,66.75 +11,GPLc,2010,74.2 +11,GPLc,2011,84.77 +11,GPLc,2012,88.2 +11,GPLc,2013,88.29 +11,GPLc,2014,87.07 +11,GPLc,2015,80.62 +11,GPLc,2016,72.53 +11,GPLc,2017,76.22 +11,GPLc,2018,85.11 +11,GPLc,2019,87.44 +11,GPLc,2020,87.22 +11,GPLc,2021,87.8 +11,GPLc,2022,87.0 +11,GPLc,2023,101.0 +11,GPLc,2024,100.0 +11,E85,2007,81.29 +11,E85,2008,87.18 +11,E85,2009,93.49 +11,E85,2010,106.1 +11,E85,2011,90.42 +11,E85,2012,91.26 +11,E85,2013,90.36 +11,E85,2014,87.41 +11,E85,2015,82.28 +11,E85,2016,75.41 +11,E85,2017,72.32 +11,E85,2018,72.6 +11,E85,2019,72.63 +11,E85,2020,72.73 +11,E85,2021,73.07 +11,E85,2022,82.0 +11,E85,2023,110.0 +11,E85,2024,88.0 +11,E10,2009,125.98 +11,E10,2010,136.77 +11,E10,2011,151.29 +11,E10,2012,158.21 +11,E10,2013,155.02 +11,E10,2014,149.79 +11,E10,2015,137.49 +11,E10,2016,131.08 +11,E10,2017,139.75 +11,E10,2018,152.63 +11,E10,2019,153.24 +11,E10,2020,138.87 +11,E10,2021,158.44 +11,E10,2022,183.0 +11,E10,2023,193.0 +11,E10,2024,188.0 +11,SP98,2013,159.64 +11,SP98,2014,155.77 +11,SP98,2015,143.0 +11,SP98,2016,138.71 +11,SP98,2017,147.7 +11,SP98,2018,160.64 +11,SP98,2019,161.28 +11,SP98,2020,147.38 +11,SP98,2021,167.48 +11,SP98,2022,194.0 +11,SP98,2023,201.0 +11,SP98,2024,197.0 +04,Gazole,2011,145.25 +04,Gazole,2012,151.12 +04,Gazole,2013,148.01 +04,Gazole,2014,139.17 +04,Gazole,2015,120.64 +04,Gazole,2016,113.2 +04,Gazole,2017,133.41 +04,Gazole,2018, +04,Gazole,2019, +04,Gazole,2020, +04,Gazole,2021, +04,Gazole,2022, +04,Gazole,2023, +04,Gazole,2024, +04,SP95,2011,160.38 +04,SP95,2012,166.04 +04,SP95,2013, +04,SP95,2014, +04,SP95,2015, +04,SP95,2016, +04,SP95,2017, +04,SP95,2018, +04,SP95,2019, +04,SP95,2020, +04,SP95,2021, +04,SP95,2022, +04,SP95,2023, +04,SP95,2024, +04,GPLc,2011,89.16 +04,GPLc,2012,95.33 +04,GPLc,2013,95.17 +04,GPLc,2014,94.15 +04,GPLc,2015, +04,GPLc,2016, +04,GPLc,2017, +04,GPLc,2018, +04,GPLc,2019, +04,GPLc,2020, +04,GPLc,2021, +04,GPLc,2022, +04,GPLc,2023, +04,GPLc,2024, +04,E10,2012,167.32 +04,E10,2013,163.98 +04,E10,2014,156.67 +04,E10,2015,140.11 +04,E10,2016,130.54 +04,E10,2017,144.32 +04,E10,2018, +04,E10,2019, +04,E10,2020, +04,E10,2021, +04,E10,2022, +04,E10,2023, +04,E10,2024, +04,SP98,2013,168.11 +04,SP98,2014,167.19 +04,SP98,2015, +04,SP98,2016,131.93 +04,SP98,2017, +04,SP98,2018, +04,SP98,2019, +04,SP98,2020, +04,SP98,2021, +04,SP98,2022, +04,SP98,2023, +04,SP98,2024, +84,Gazole,2016,113.38 +84,Gazole,2017,125.87 +84,Gazole,2018,146.3 +84,Gazole,2019,146.35 +84,Gazole,2020,128.77 +84,Gazole,2021,145.6 +84,Gazole,2022,188.0 +84,Gazole,2023,183.0 +84,Gazole,2024,177.0 +84,SP95,2016,133.31 +84,SP95,2017,140.76 +84,SP95,2018,153.27 +84,SP95,2019,153.25 +84,SP95,2020,139.27 +84,SP95,2021,157.66 +84,SP95,2022,183.0 +84,SP95,2023,192.0 +84,SP95,2024,190.0 +84,SP98,2016,137.88 +84,SP98,2017,145.67 +84,SP98,2018,158.52 +84,SP98,2019,157.91 +84,SP98,2020,144.49 +84,SP98,2021,163.32 +84,SP98,2022,188.0 +84,SP98,2023,197.0 +84,SP98,2024,195.0 +84,GPLc,2016,72.54 +84,GPLc,2017,77.1 +84,GPLc,2018,85.18 +84,GPLc,2019,88.5 +84,GPLc,2020,86.96 +84,GPLc,2021,87.74 +84,GPLc,2022,89.0 +84,GPLc,2023,102.0 +84,GPLc,2024,102.0 +84,E10,2016,130.23 +84,E10,2017,136.99 +84,E10,2018,149.57 +84,E10,2019,149.35 +84,E10,2020,136.05 +84,E10,2021,154.55 +84,E10,2022,177.0 +84,E10,2023,188.0 +84,E10,2024,186.0 +84,E85,2016,81.46 +84,E85,2017,74.13 +84,E85,2018,71.64 +84,E85,2019,71.26 +84,E85,2020,71.0 +84,E85,2021,71.5 +84,E85,2022,84.0 +84,E85,2023,111.0 +84,E85,2024,89.0 +27,Gazole,2016,112.75 +27,Gazole,2017,125.46 +27,Gazole,2018,146.26 +27,Gazole,2019,146.52 +27,Gazole,2020,128.92 +27,Gazole,2021,145.55 +27,Gazole,2022,189.0 +27,Gazole,2023,183.0 +27,Gazole,2024,177.0 +27,SP95,2016,132.76 +27,SP95,2017,140.08 +27,SP95,2018,153.28 +27,SP95,2019,152.93 +27,SP95,2020,139.17 +27,SP95,2021,157.83 +27,SP95,2022,186.0 +27,SP95,2023,192.0 +27,SP95,2024,189.0 +27,E10,2016,130.09 +27,E10,2017,136.77 +27,E10,2018,149.88 +27,E10,2019,149.89 +27,E10,2020,135.9 +27,E10,2021,154.58 +27,E10,2022,178.0 +27,E10,2023,188.0 +27,E10,2024,185.0 +27,SP98,2016,137.28 +27,SP98,2017,145.15 +27,SP98,2018,158.45 +27,SP98,2019,157.96 +27,SP98,2020,144.58 +27,SP98,2021,163.06 +27,SP98,2022,190.0 +27,SP98,2023,197.0 +27,SP98,2024,194.0 +27,GPLc,2016,72.89 +27,GPLc,2017,77.04 +27,GPLc,2018,88.81 +27,GPLc,2019,89.37 +27,GPLc,2020,89.86 +27,GPLc,2021,90.13 +27,GPLc,2022,89.0 +27,GPLc,2023,103.0 +27,GPLc,2024,102.0 +27,E85,2016,86.4 +27,E85,2017,71.16 +27,E85,2018,74.5 +27,E85,2019,70.37 +27,E85,2020,69.63 +27,E85,2021,69.74 +27,E85,2022,83.0 +27,E85,2023,109.0 +27,E85,2024,88.0 +32,Gazole,2016,111.21 +32,Gazole,2017,123.61 +32,Gazole,2018,144.26 +32,Gazole,2019,144.65 +32,Gazole,2020,126.8 +32,Gazole,2021,143.3 +32,Gazole,2022,186.0 +32,Gazole,2023,181.0 +32,Gazole,2024,175.0 +32,SP95,2016,131.43 +32,SP95,2017,138.61 +32,SP95,2018,151.61 +32,SP95,2019,151.95 +32,SP95,2020,136.81 +32,SP95,2021,155.51 +32,SP95,2022,184.0 +32,SP95,2023,190.0 +32,SP95,2024,186.0 +32,SP98,2016,136.3 +32,SP98,2017,143.79 +32,SP98,2018,156.72 +32,SP98,2019,156.6 +32,SP98,2020,141.68 +32,SP98,2021,160.94 +32,SP98,2022,188.0 +32,SP98,2023,194.0 +32,SP98,2024,192.0 +32,E10,2016,129.57 +32,E10,2017,136.39 +32,E10,2018,149.19 +32,E10,2019,149.24 +32,E10,2020,134.89 +32,E10,2021,153.36 +32,E10,2022,178.0 +32,E10,2023,187.0 +32,E10,2024,183.0 +32,E85,2016,73.88 +32,E85,2017,63.51 +32,E85,2018,64.96 +32,E85,2019,63.75 +32,E85,2020,63.89 +32,E85,2021,67.23 +32,E85,2022,82.0 +32,E85,2023,107.0 +32,E85,2024,87.0 +32,GPLc,2016,70.68 +32,GPLc,2017,74.53 +32,GPLc,2018,82.9 +32,GPLc,2019,85.03 +32,GPLc,2020,84.14 +32,GPLc,2021,85.44 +32,GPLc,2022,86.0 +32,GPLc,2023,103.0 +32,GPLc,2024,100.0 +44,Gazole,2016,112.36 +44,Gazole,2017,125.03 +44,Gazole,2018,145.76 +44,Gazole,2019,146.08 +44,Gazole,2020,128.16 +44,Gazole,2021,144.79 +44,Gazole,2022,189.0 +44,Gazole,2023,183.0 +44,Gazole,2024,176.0 +44,SP95,2016,132.23 +44,SP95,2017,139.64 +44,SP95,2018,152.28 +44,SP95,2019,152.84 +44,SP95,2020,137.81 +44,SP95,2021,157.24 +44,SP95,2022,185.0 +44,SP95,2023,190.0 +44,SP95,2024,187.0 +44,E85,2016,75.86 +44,E85,2017,70.2 +44,E85,2018,72.59 +44,E85,2019,69.99 +44,E85,2020,69.85 +44,E85,2021,70.11 +44,E85,2022,81.0 +44,E85,2023,108.0 +44,E85,2024,88.0 +44,SP98,2016,136.87 +44,SP98,2017,144.88 +44,SP98,2018,157.69 +44,SP98,2019,157.67 +44,SP98,2020,142.81 +44,SP98,2021,162.08 +44,SP98,2022,189.0 +44,SP98,2023,195.0 +44,SP98,2024,192.0 +44,E10,2016,129.31 +44,E10,2017,136.26 +44,E10,2018,149.02 +44,E10,2019,149.24 +44,E10,2020,134.78 +44,E10,2021,153.7 +44,E10,2022,178.0 +44,E10,2023,187.0 +44,E10,2024,183.0 +44,GPLc,2016,70.41 +44,GPLc,2017,73.69 +44,GPLc,2018,82.6 +44,GPLc,2019,85.84 +44,GPLc,2020,86.16 +44,GPLc,2021,87.12 +44,GPLc,2022,87.0 +44,GPLc,2023,101.0 +44,GPLc,2024,100.0 +76,Gazole,2016,112.8 +76,Gazole,2017,125.18 +76,Gazole,2018,145.53 +76,Gazole,2019,145.72 +76,Gazole,2020,127.93 +76,Gazole,2021,144.79 +76,Gazole,2022,187.0 +76,Gazole,2023,182.0 +76,Gazole,2024,176.0 +76,GPLc,2016,72.5 +76,GPLc,2017,75.77 +76,GPLc,2018,84.03 +76,GPLc,2019,86.73 +76,GPLc,2020,87.29 +76,GPLc,2021,88.64 +76,GPLc,2022,89.0 +76,GPLc,2023,103.0 +76,GPLc,2024,102.0 +76,E10,2016,129.44 +76,E10,2017,136.44 +76,E10,2018,148.71 +76,E10,2019,148.55 +76,E10,2020,135.1 +76,E10,2021,153.72 +76,E10,2022,177.0 +76,E10,2023,187.0 +76,E10,2024,185.0 +76,SP98,2016,137.45 +76,SP98,2017,145.18 +76,SP98,2018,157.6 +76,SP98,2019,157.04 +76,SP98,2020,143.24 +76,SP98,2021,162.09 +76,SP98,2022,187.0 +76,SP98,2023,195.0 +76,SP98,2024,194.0 +76,SP95,2016,133.36 +76,SP95,2017,140.78 +76,SP95,2018,153.45 +76,SP95,2019,153.0 +76,SP95,2020,139.65 +76,SP95,2021,157.84 +76,SP95,2022,184.0 +76,SP95,2023,192.0 +76,SP95,2024,189.0 +76,E85,2016,77.36 +76,E85,2017,72.63 +76,E85,2018,71.41 +76,E85,2019,69.83 +76,E85,2020,67.83 +76,E85,2021,69.82 +76,E85,2022,83.0 +76,E85,2023,110.0 +76,E85,2024,88.0 +28,Gazole,2016,111.7 +28,Gazole,2017,123.86 +28,Gazole,2018,144.43 +28,Gazole,2019,144.85 +28,Gazole,2020,126.89 +28,Gazole,2021,143.65 +28,Gazole,2022,186.0 +28,Gazole,2023,181.0 +28,Gazole,2024,175.0 +28,GPLc,2016,73.27 +28,GPLc,2017,76.0 +28,GPLc,2018,84.05 +28,GPLc,2019,87.32 +28,GPLc,2020,86.77 +28,GPLc,2021,87.49 +28,GPLc,2022,86.0 +28,GPLc,2023,99.0 +28,GPLc,2024,100.0 +28,E10,2016,129.2 +28,E10,2017,136.05 +28,E10,2018,149.27 +28,E10,2019,149.65 +28,E10,2020,134.84 +28,E10,2021,153.36 +28,E10,2022,178.0 +28,E10,2023,187.0 +28,E10,2024,183.0 +28,SP98,2016,136.7 +28,SP98,2017,144.3 +28,SP98,2018,157.46 +28,SP98,2019,157.4 +28,SP98,2020,142.34 +28,SP98,2021,161.37 +28,SP98,2022,188.0 +28,SP98,2023,194.0 +28,SP98,2024,192.0 +28,SP95,2016,131.92 +28,SP95,2017,138.93 +28,SP95,2018,151.95 +28,SP95,2019,152.31 +28,SP95,2020,137.01 +28,SP95,2021,156.16 +28,SP95,2022,185.0 +28,SP95,2023,190.0 +28,SP95,2024,186.0 +28,E85,2016,80.39 +28,E85,2017,67.54 +28,E85,2018,67.1 +28,E85,2019,68.13 +28,E85,2020,64.65 +28,E85,2021,66.67 +28,E85,2022,82.0 +28,E85,2023,107.0 +28,E85,2024,87.0 +75,Gazole,2016,112.03 +75,Gazole,2017,124.91 +75,Gazole,2018,145.05 +75,Gazole,2019,145.5 +75,Gazole,2020,127.67 +75,Gazole,2021,144.09 +75,Gazole,2022,187.0 +75,Gazole,2023,181.0 +75,Gazole,2024,175.0 +75,SP95,2016,133.0 +75,SP95,2017,140.46 +75,SP95,2018,153.04 +75,SP95,2019,153.11 +75,SP95,2020,138.7 +75,SP95,2021,156.85 +75,SP95,2022,184.0 +75,SP95,2023,190.0 +75,SP95,2024,187.0 +75,E85,2016,78.29 +75,E85,2017,68.83 +75,E85,2018,68.18 +75,E85,2019,71.63 +75,E85,2020,68.16 +75,E85,2021,69.14 +75,E85,2022,82.0 +75,E85,2023,107.0 +75,E85,2024,87.0 +75,SP98,2016,136.85 +75,SP98,2017,144.89 +75,SP98,2018,157.69 +75,SP98,2019,157.96 +75,SP98,2020,142.62 +75,SP98,2021,161.74 +75,SP98,2022,189.0 +75,SP98,2023,194.0 +75,SP98,2024,192.0 +75,E10,2016,128.87 +75,E10,2017,136.34 +75,E10,2018,148.92 +75,E10,2019,149.55 +75,E10,2020,134.62 +75,E10,2021,153.48 +75,E10,2022,179.0 +75,E10,2023,186.0 +75,E10,2024,183.0 +75,GPLc,2016,70.9 +75,GPLc,2017,75.21 +75,GPLc,2018,83.85 +75,GPLc,2019,86.75 +75,GPLc,2020,87.24 +75,GPLc,2021,87.1 +75,GPLc,2022,86.0 +75,GPLc,2023,100.0 +75,GPLc,2024,100.0 diff --git a/openfisca_france_indirect_taxation/assets/prix/prix_litre_annuel_carburants.csv b/openfisca_france_indirect_taxation/assets/prix/prix_litre_annuel_carburants.csv new file mode 100644 index 00000000..97528ed7 --- /dev/null +++ b/openfisca_france_indirect_taxation/assets/prix/prix_litre_annuel_carburants.csv @@ -0,0 +1,33 @@ +Date,diesel_ttc,super_98_ttc,super_95_ttc,super_plombe_ttc,super_95_e10_ttc +2023,1.8,1.96,1.9,,1.88 +2022,1.86,1.88,1.83,,1.78 +2021,1.44,1.62,1.56,,1.54 +2020,1.27,1.42,1.37,,1.35 +2019,1.44,1.56,1.51,,1.49 +2018,1.44,1.57,1.51,, +2017,1.23,1.45,1.38,, +2016,1.11,1.35,1.32,, +2015,1.17,1.41,1.37,, +2014,1.3,1.54,1.5,, +2013,1.36,1.6,1.56,, +2012,1.41,1.63,1.59,, +2011,1.34,1.55,1.5,, +2010,1.16,1.4,1.36,, +2009,1.01,1.25,1.22,, +2008,1.28,1.42,1.38,, +2007,1.1,1.32,1.29,, +2006,1.09,1.29,1.25,, +2005,1.03,1.21,1.18,1.24, +2004,0.89,1.09,1.08,1.16, +2003,0.8,1.04,1.02,1.11, +2002,0.77,1.03,1.0,1.1, +2001,0.8,1.05,,1.13, +2000,0.85,1.11,,1.18, +1999,0.69,0.96,,1.01, +1998,0.64,0.93,,0.96, +1997,0.68,0.96,,0.99, +1996,0.66,0.92,,0.96, +1995,0.59,0.87,,0.9, +1994,0.6,0.82,,0.87, +1993,0.56,0.79,,0.84, +1992,0.54,0.78,,0.81, diff --git a/openfisca_france_indirect_taxation/assets/prix/prix_mensuel_carburants.csv b/openfisca_france_indirect_taxation/assets/prix/prix_mensuel_carburants.csv index 4e705c0c..cfd5ed38 100644 --- a/openfisca_france_indirect_taxation/assets/prix/prix_mensuel_carburants.csv +++ b/openfisca_france_indirect_taxation/assets/prix/prix_mensuel_carburants.csv @@ -1,385 +1,390 @@ -Date,diesel_ht,diesel_ttc,gplc_ht,gplc_ttc,super_95_e10_ht,super_95_e10_ttc,super_95_ht,super_95_ttc,super_98_ht,super_98_ttc,super_plombe_ht,super_plombe_ttc -1990/1,0.223337805,0.5491975825,,,,,,,,,0.18751229,0.774441 -1990/2,0.20428168,0.533190435,,,,,,,,,0.1856066775,0.78663692 -1990/3,0.19513474,0.52290012,,,,,,,,,0.184768208,0.78511243 -1990/4,0.1859878,0.5118475675,,,,,,,,,0.1825576975,0.782825695 -1990/5,0.1772219775,0.5019383825,,,,,0.2084740275,0.74852467,0.2221944375,0.76529406,0.179127595,0.778252225 -1990/6,0.1692184,0.492105422,,,,,0.20733066,0.747305078,0.22105107,0.764074468,0.177755548,0.776880184 -1990/7,0.1692184,0.4920291975,,,,,0.214190865,0.7557659975,0.2298168875,0.774441,0.182938815,0.782825695 -1990/8,0.210989436,0.541803804,,,,,0.282640472,0.837249996,0.292702108,0.848531226,0.240869444,0.851885104 -1990/9,0.2431561775,0.5796873825,,,,,0.331576605,0.894494605,0.337674565,0.9021170575,0.2869852725,0.906309405 -1990/10,0.27021588,0.611701675,,,,,0.3258597675,0.888396645,0.3304332375,0.8941134825,0.27783833,0.8956379725 -1990/11,0.25306536,0.59150218,,,,,0.283250272,0.837554896,0.28812864,0.843347958,0.235686174,0.845482244 -1990/12,0.243156175,0.57930626,,,,,0.250778625,0.798832845,0.253446485,0.801881825,0.201994945,0.8060741775 -1991/1,0.2435372975,0.5850230975,,,,,0.24086944,0.794640495,0.2412505625,0.7957838625,0.1978025975,0.8098854025 -1991/2,0.2465862775,0.5880720775,,,,,0.2252434175,0.776727735,0.22714903,0.7786333475,0.1863689225,0.795783865 -1991/3,0.210684538,0.54546258,,,,,0.222880458,0.774136102,0.223490254,0.774441,0.188122086,0.797613254 -1991/4,0.192848005,0.52442461,,,,,0.22257556,0.7740598775,0.2260056625,0.7778711025,0.194372495,0.8053119325 -1991/5,0.196964128,0.529607876,,,,,0.229893112,0.781758552,0.236600868,0.790295696,0.203062088,0.815907138 -1991/6,0.198945965,0.53204707,,,,,0.237058215,0.7908292675,0.24391842,0.7992139675,0.21190413,0.8251303025 -1991/7,0.2016138225,0.535858295,,,,,0.238582705,0.7923537575,0.247729645,0.8037874425,0.2153342325,0.830084895 -1991/8,0.203671884,0.53814503,,,,,0.238430256,0.792429982,0.247882094,0.80340632,0.213123722,0.828407956 -1991/9,0.2039005575,0.53814503,,,,,0.2336281125,0.78663692,0.244680665,0.7999762175,0.2107607625,0.825511425 -1991/10,0.21495311,0.5507220725,,,,,0.2317225,0.784350185,0.24086944,0.7957838625,0.20885515,0.8228435675 -1991/11,0.218611886,0.555219318,,,,,0.230807806,0.782673246,0.240564542,0.795174068,0.208245354,0.822005098 -1991/12,0.2000893325,0.53280931,,,,,0.2160964775,0.7656751825,0.226386785,0.7786333475,0.189799025,0.7999762125 -1992/1,0.189341678,0.52747359,,,,,0.207940456,0.762549978,0.218306988,0.774745898,0.180499636,0.796393662 -1992/2,0.1901801475,0.5305225725,,,,,0.2077117825,0.7641506925,0.2176209675,0.77596549,0.18293882,0.801119585 -1992/3,0.1859878,0.5255679775,,,,,0.2069495375,0.763007325,0.215715355,0.773678755,0.1810332075,0.79883285 -1992/4,0.1863689225,0.525186855,,,,,0.206568415,0.7618639575,0.215715355,0.7732976325,0.1825576975,0.7999762175 -1992/5,0.18903678,0.52899808,,,,,0.209464946,0.766208754,0.220441274,0.77901447,0.18751229,0.806150402 -1992/6,0.191323515,0.531665945,,,,,0.2130474975,0.7702486525,0.224862295,0.784350185,0.1909423925,0.810266525 -1992/7,0.189341678,0.52930298,,,,,0.209160048,0.765903856,0.22257556,0.781453654,0.187207392,0.8064553 -1992/8,0.18293882,0.522137875,,,,,0.2023760675,0.75767161,0.215715355,0.773678755,0.180652085,0.7980706025 -1992/9,0.18027096,0.519088895,,,,,0.1978025975,0.752335895,0.2107607625,0.7671996725,0.17645973,0.793497125 -1992/10,0.187207392,0.526863794,,,,,0.198793516,0.753403038,0.211599232,0.76834304,0.178365346,0.795783864 -1992/11,0.1901801475,0.53128482,,,,,0.1985648425,0.75309814,0.21037964,0.7671996725,0.17988984,0.79730836 -1992/12,0.188274535,0.528235835,,,,,0.195896985,0.75004916,0.208092905,0.7641506925,0.1772219775,0.7938782475 -1993/1,0.187207392,0.531742168,,,,,0.192390658,0.750963854,0.204586578,0.765598958,0.174096768,0.795783866 -1993/2,0.189799025,0.538907275,,,,,0.1924668825,0.753860385,0.2054250475,0.769105285,0.176078605,0.8007384625 -1993/3,0.1924668825,0.5427185,,,,,0.1932291275,0.75462263,0.2077117825,0.77291651,0.17836535,0.8037874425 -1993/4,0.191780862,0.543328296,,,,,0.19513474,0.7591961,0.209464946,0.77596549,0.179584942,0.807674892 -1993/5,0.19056127,0.5438618675,,,,,0.19513474,0.76072059,0.2099985175,0.778252225,0.1810332075,0.810266525 -1993/6,0.188274535,0.540431765,,,,,0.1947536175,0.759958345,0.2084740275,0.7763466125,0.1795087175,0.809027875 -1993/7,0.188426984,0.541498908,,,,,0.194220046,0.799747542,0.209160048,0.817736524,0.181109432,0.85066551 -1993/8,0.1894179025,0.567872585,,,,,0.1947536175,0.81102877,0.21037964,0.8297037725,0.18141433,0.8617180625 -1993/9,0.185225555,0.587690955,,,,,0.1917046375,0.807217545,0.208092905,0.82627367,0.1779842225,0.8571445925 -1993/10,0.189951474,0.59302667,,,,,0.186292698,0.800662238,0.203976782,0.822614894,0.176840852,0.855848776 -1993/11,0.1917046375,0.595313405,,,,,0.1840821875,0.7980706025,0.2031383125,0.82017571,0.1749352375,0.85371449 -1993/12,0.1859878,0.589367894,,,,,0.174706566,0.787551614,0.193000454,0.809809178,0.165559624,0.842738162 -1994/1,0.1810332075,0.59455116,,,,,0.165407175,0.7919726375,0.1863689225,0.8167456075,0.1596903375,0.84761653 -1994/2,0.17988984,0.5972190175,,,,,0.1604525825,0.7908292675,0.1840821875,0.8190323425,0.160833705,0.8518088775 -1994/3,0.175697485,0.592264425,,,,,0.1574036025,0.7877802875,0.1810332075,0.8159833625,0.1581658475,0.84914102 -1994/4,0.177450652,0.594246262,,,,,0.162205746,0.793649578,0.186902494,0.822919792,0.163425338,0.85523898 -1994/5,0.179127595,0.59607565,,,,,0.1650260525,0.7969272325,0.1924668825,0.82932265,0.16769391,0.8609558175 -1994/6,0.17226738,0.5880720775,,,,,0.1756974825,0.8091231575,0.1817954525,0.8167456075,0.1665505425,0.859050205 -1994/7,0.168913502,0.584184628,,,,,0.174401666,0.807674892,0.180499636,0.814992444,0.16464493,0.85676347 -1994/8,0.1718862575,0.587690955,,,,,0.1871311675,0.8228435675,0.19208576,0.8289415275,0.17379187,0.868197145 -1994/9,0.166474318,0.581135648,,,,,0.180499634,0.815297342,0.186292698,0.8217002,0.165864522,0.858592858 -1994/10,0.1673127875,0.58235524,,,,,0.1741729925,0.80797979,0.180652085,0.8152211175,0.1619770725,0.85371449 -1994/11,0.1673127875,0.5819741175,,,,,0.174554115,0.8083609125,0.18141433,0.8159833625,0.1619770725,0.85371449 -1994/12,0.165864522,0.58083075,,,,,0.169828196,0.802186728,0.177145752,0.811333668,0.159156766,0.850055714 -1995/1,0.1665505425,0.5857853425,,,,,0.166931665,0.8373262225,0.174554115,0.845329795,0.157784725,0.8758195975 -1995/2,0.1657882975,0.5865475875,,,,,0.165407175,0.8479976525,0.1734107475,0.8571445925,0.15549799,0.8838231675 -1995/3,0.161900848,0.58235524,,,,,0.165559624,0.847006734,0.173182074,0.856458572,0.155193092,0.8826798 -1995/4,0.1627393175,0.583117485,,,,,0.1695995225,0.8525711225,0.17645973,0.8609558175,0.1589280925,0.886872155 -1995/5,0.16464493,0.58540422,,,,,0.176840855,0.860574695,0.182176575,0.8674349,0.165407175,0.8952568525 -1995/6,0.161900848,0.582660138,,,,,0.176840854,0.860422246,0.18110943,0.86591041,0.164035134,0.89335124 -1995/7,0.15702248,0.5766384025,,,,,0.17074289,0.85371449,0.1734107475,0.8571445925,0.1558791125,0.8830609225 -1995/8,0.156260235,0.5857853425,,,,,0.1680750325,0.865148165,0.17074289,0.8674349,0.1535923775,0.8960190975 -1995/9,0.161900848,0.592416874,,,,,0.169828196,0.8674349,0.172572278,0.87048388,0.156107786,0.898839404 -1995/10,0.15854697,0.5884532,,,,,0.1657882975,0.8617180625,0.1692184,0.8662915325,0.1528301325,0.89487573 -1995/11,0.160833705,0.5903588125,,,,,0.1665505425,0.86286143,0.171505135,0.8693405125,0.1566413575,0.8990680775 -1995/12,0.1692184,0.600954018,,,,,0.167389012,0.864081022,0.173182074,0.870788778,0.158242072,0.90097369 -1996/1,0.1718862575,0.6227542325,,,,,0.1665505425,0.8800119475,0.17226738,0.8872532775,0.15702248,0.9165997125 -1996/2,0.17455412,0.6322822975,,,,,0.165407175,0.884585415,0.171505135,0.89182675,0.156260235,0.92231655 -1996/3,0.183243718,0.642420156,,,,,0.171352688,0.892131648,0.178060446,0.900058996,0.164035134,0.93146349 -1996/4,0.1901801475,0.6505761775,,,,,0.1871311675,0.910882875,0.19361025,0.9188864475,0.1798898375,0.9501384925 -1996/5,0.183548616,0.642725054,,,,,0.19361025,0.918657774,0.200318006,0.926585122,0.185073106,0.95737982 -1996/6,0.1760786075,0.633425665,,,,,0.1863689225,0.9097395075,0.1917046375,0.9165997125,0.1756974825,0.9455650225 -1996/7,0.1764825975,0.6338067875,,,,,0.1848634875,0.9089772625,0.19056127,0.915456345,0.176078605,0.9455650225 -1996/8,0.178060448,0.636017298,,,,,0.184768208,0.908291242,0.189951474,0.914389202,0.175011462,0.944574104 -1996/9,0.2035613575,0.6666633575,,,,,0.191201555,0.9158527125,0.1981951525,0.92393632,0.1818754875,0.9531722275 -1996/10,0.22689749,0.695335205,,,,,0.1972842675,0.9233989375,0.2049829425,0.931787445,0.1882211775,0.9604021225 -1996/11,0.224502516,0.692341106,,,,,0.199564908,0.926612562,0.208666112,0.936680294,0.192168082,0.965429128 -1996/12,0.2244811725,0.6917374075,,,,,0.2016138225,0.9280333875,0.21037964,0.93908594,0.194372495,0.9676701275 -1997/1,0.224709846,0.70126547,0.287518844,0.428991526,,,0.20275719,0.938781042,0.21190413,0.949147574,0.19513474,0.979332484 -1997/2,0.2191454575,0.695929755,0.28812864,0.42990622,,,0.20275719,0.94061043,0.21190413,0.9516629825,0.195896985,0.982533915 -1997/3,0.208352065,0.6836118775,0.28815913,0.430066295,,,0.2007334275,0.93836943,0.20917148,0.948404385,0.1941057075,0.9804529825 -1997/4,0.199856845,0.6731538725,0.28815913,0.430066295,,,0.198111305,0.935366185,0.20559274,0.9443301875,0.1902906675,0.975704195 -1997/5,0.197214144,0.670251246,0.28830548,0.43003428,,,0.19713487,0.933670952,0.204479864,0.94345208,0.191055204,0.976701214 -1997/6,0.1925354825,0.6646548425,0.28857074,0.43022637,,,0.1956873625,0.9322486025,0.2022312375,0.9400654275,0.1888042925,0.9740310675 -1997/7,0.1888233475,0.6601766525,0.288460215,0.4301463325,,,0.1923525425,0.92835353,0.1992661075,0.9363228,0.1849054075,0.969145075 -1997/8,0.19601894,0.66885786,0.294655314,0.437413526,,,0.21181266,0.951696526,0.218127098,0.959245798,0.198988648,0.986311598 -1997/9,0.195089005,0.667307455,0.30169279,0.4450558475,,,0.214350935,0.9546509825,0.221718035,0.9631843175,0.20132798,0.9893407625 -1997/10,0.20021129,0.674178332,0.30086423,0.444922452,,,0.209077726,0.948437164,0.216501992,0.95733104,0.19656166,0.983305304 -1997/11,0.2054326675,0.68010174,0.2997033325,0.4438857975,,,0.2083978025,0.94776029,0.216595745,0.95712066,0.19695269,0.983883085 -1997/12,0.201468995,0.6750747325,0.298479925,0.442410855,,,0.20292107,0.9411897375,0.212300495,0.9519069025,0.1927222325,0.9786617075 -1998/1,0.192698604,0.673663054,0.29536082,0.43517181,,,0.19713487,0.94255568,0.205675064,0.95328504,0.186750044,0.980222788 -1998/2,0.1831789225,0.6680620775,0.2941236925,0.4313506775,,,0.189993395,0.9400844825,0.19949859,0.95136952,0.18104845,0.9791114325 -1998/3,0.17374614,0.6567808525,0.293125155,0.430314025,,,0.1831331875,0.93170741,0.19214674,0.94253129,0.1745198175,0.9711726475 -1998/4,0.1715013275,0.654002465,0.2891081225,0.4253175075,,,0.180415785,0.9285402775,0.188099215,0.937732955,0.170963945,0.96722422 -1998/5,0.16677922,0.648298588,0.280716566,0.41519489,,,0.17745065,0.924963062,0.184661488,0.93358863,0.167648178,0.963227768 -1998/6,0.15932065,0.639314005,0.28076535,0.41525587,,,0.1710020575,0.91718664,0.1785635325,0.9262306775,0.1627126425,0.957269295 -1998/7,0.154058874,0.632965266,0.28076535,0.41525587,,,0.17047763,0.916557028,0.17695062,0.924289238,0.161492288,0.9558035 -1998/8,0.149102755,0.62698088,0.28076535,0.41525587,,,0.16752241,0.9129904825,0.17374614,0.92042618,0.1573959825,0.9509083625 -1998/9,0.15140855,0.629766885,0.28076535,0.41525587,,,0.16432479,0.90913352,0.1703389075,0.91631387,0.15473956,0.947649765 -1998/10,0.152833184,0.631480412,0.280478568,0.414905238,,,0.160394652,0.904394642,0.167608544,0.913023256,0.152433768,0.944872906 -1998/11,0.1482490425,0.62595566,0.27931524,0.41350271,,,0.156626115,0.899845565,0.1644010175,0.9091563875,0.149811645,0.9417233075 -1998/12,0.14099628,0.61721652,0.27980823,0.41409726,,,0.1497430425,0.8915485275,0.1584516925,0.9019722275,0.143683195,0.9343181 -1999/1,0.140537714059,0.62437380643,0.281322488395,0.412779556217,,,0.149076331734,0.890739804925,0.157654046627,0.901008834739,0.142186623073,0.936599854438 -1999/2,0.139364380838,0.628102515318,0.283145852308,0.41288352465,,,0.147670348877,0.889040336231,0.156630594927,0.899775305087,0.141270183353,0.93820846761 -1999/3,0.152821072264,0.644331285177,0.282671973163,0.412311104778,,,0.154418306691,0.897178373355,0.163635233061,0.908222898676,0.148629664022,0.947084001297 -1999/4,0.173756825277,0.669579803312,0.281271042906,0.410621582888,,,0.178449544413,0.926160046048,0.187276824723,0.936734658221,0.171253512945,0.974368363098 -1999/5,0.174274587642,0.670204224724,0.281271042906,0.410621582888,,,0.186653471025,0.936053981541,0.193726887572,0.944513434016,0.176308751417,0.980464980695 -1999/6,0.171947386113,0.667397619679,0.281271042906,0.410621582888,,,0.186309943387,0.93563968721,0.192802526426,0.943398654474,0.176715791236,0.980955870717 -1999/7,0.18848787465,0.687345448856,0.292293665472,0.423914865703,,,0.204129053435,0.957129533929,0.208519944131,0.962353860227,0.191915024746,0.99928614633 -1999/8,0.199228341143,0.700298451446,0.302896735445,0.43670216809,,,0.223786943796,0.980836949704,0.228427479992,0.986362348475,0.211489359921,1.02289279455 -1999/9,0.209819812201,0.713071765542,0.313016329464,0.449329261561,,,0.23308098354,0.992045561634,0.236877222489,0.996552737926,0.221649563149,1.03514599964 -1999/10,0.216536594787,0.721172205341,0.322533547885,0.461229890061,,,0.237279626778,0.99710912538,0.243792632864,1.00489272284,0.228818444334,1.04379167035 -1999/11,0.239021725317,0.74828927276,0.323746496764,0.462692706409,,,0.247975486853,1.00997278869,0.25695406337,1.02076540803,0.245760706198,1.06422403816 -1999/12,0.27693724009,0.794015383577,0.336659979169,0.478266366189,,,0.272284568565,1.03925399729,0.280833457111,1.04956395688,0.272995476724,1.09706917141 -2000/1,0.279122769523,0.806144867942,0.343648672465,0.486694730305,,,0.269929353484,1.03625503425,0.279585770655,1.04790067336,0.274179315404,1.10120642204 -2000/2,0.279611506688,0.809898861132,0.346830750525,0.490532321636,,,0.279807584982,1.04811532755,0.291861918192,1.06265284664,0.291685017703,1.12322147573 -2000/3,0.291137586763,0.823799319163,0.360695624866,0.507251643019,,,0.319552190159,1.09604731408,0.328973652236,1.10740960154,0.327503872967,1.16641902442 -2000/4,0.279887443079,0.80351330575,0.35905144697,0.501080836854,,,0.310290217194,1.07588171176,0.321823431262,1.08967543604,0.318237323483,1.14566442236 -2000/5,0.283622809879,0.807978445996,0.348360837677,0.488294286058,,,0.32358356188,1.09177937731,0.339925467676,1.11132898955,0.339494052202,1.17109098615 -2000/6,0.296327731848,0.823175345335,0.368681532479,0.512599353311,,,0.360053719985,1.13539681717,0.37753044788,1.15629858969,0.375996018032,1.21474436282 -2000/7,0.301700145741,0.829601292463,0.375158089631,0.520344374707,,,0.358509776555,1.13355230221,0.370871387149,1.14833679647,0.365544128655,1.20224336351 -2000/8,0.310607227303,0.840252836695,0.377784816688,0.523490792842,,,0.336630209755,1.10738562512,0.35117919696,1.12479035973,0.350204037765,1.18389676839 -2000/9,0.373914817587,0.915969251033,0.398148415216,0.547836711858,,,0.356095405644,1.13066669309,0.373348188982,1.15130295126,0.374102637825,1.21247651294 -2000/10,0.391973101895,0.907083086239,0.409196029618,0.561046684463,,,0.352526918685,1.09591406144,0.371503010106,1.11861372011,0.375558153964,1.18371707292 -2000/11,0.394697468137,0.910344096122,0.408808459845,0.560591383262,,,0.351527838148,1.09471769761,0.369435345434,1.11613586906,0.372540204407,1.1801099987 -2000/12,0.362814451325,0.87220532465,0.419825248586,0.573763206219,,,0.309968682749,1.04501237759,0.327593023259,1.06609529643,0.330261645156,1.12954272279 -2001/1,0.305881330636,0.804115208771,0.404500599887,0.555440371854,,,0.279217997521,1.00823300918,0.300496069102,1.03367293893,0.306220529699,1.10078861877 -2001/2,0.302519829806,0.800098177167,0.379441792678,0.525461272614,,,0.302798049262,1.03643988859,0.323557794185,1.06126239982,0.32674016742,1.12533291054 -2001/3,0.296665787544,0.797866323555,0.377189358449,0.522762925009,,,0.29990075569,1.03779363586,0.320389903606,1.06230743784,0.323198014504,1.1255097514 -2001/4,0.302851406418,0.812435113887,0.365633722942,0.508951044047,,,0.332552286202,1.08408782893,0.353205316812,1.10878838095,0.355915098093,1.17128104434 -2001/5,0.308175688345,0.818807482808,0.365054416677,0.508265023469,,,0.36702863145,1.12532147687,0.388478208175,1.15098245769,0.390052244278,1.21210307993 -2001/6,0.311614938174,0.822916746067,0.371914622452,0.516472878558,,,0.343644476696,1.09735851588,0.360526680865,1.11754581474,0.359538811233,1.17560754745 -2001/7,0.297834527709,0.806434195208,0.363248456318,0.506103280735,,,0.294881290564,1.03903574228,0.312946703138,1.06064235657,0.314249418512,1.12144068997 -2001/8,0.289088199,0.7959587344,0.35852834216,0.50047094256,,,0.28212359148,1.0237877996,0.30147475308,1.0469101088,0.30319068644,1.1082102054 -2001/9,0.293607720275,0.80137989395,0.3616506809,0.50418952105,,,0.2951893107,1.03940579625,0.313964508725,1.06186093275,0.31475917785,1.12205005725 -2001/10,0.2844394906,0.790414691225,0.359241901175,0.501308620475,,,0.259150300925,0.99630314025,0.277296324025,1.01800578375,0.27636634935,1.076132234 -2001/11,0.25865271796,0.7595737057,0.33949509182,0.47769144588,,,0.22995922668,0.96139062544,0.25235812602,0.98817967358,0.25378881152,1.0491295086 -2001/12,0.245764375,0.7441593,0.3245513,0.4598187,,,0.2189504,0.94822405,0.243411875,0.97747995,0.245401375,1.0390981 -2002/1,0.24332215,0.74120585,0.322799775,0.45770575,,,0.225572675,0.95615765,0.24953595,0.98482215,0.252017975,1.046991125 -2002/2,0.241125,0.73855,0.3228,0.4577,,,0.229825,0.96125,0.253475,0.989525,0.253025,1.048175 -2002/3,0.25934,0.76036,0.32664,0.4623,,,0.25394,0.9901,0.27628,1.01684,0.27638,1.07618 -2002/4,0.277,0.78145,0.34935,0.48945,,,0.294825,1.038975,0.313925,1.061825,0.3132,1.120175 -2002/5,0.27002,0.7731,0.3518,0.4924,,,0.28678,1.02936,0.30394,1.0499,0.30376,1.10886 -2002/6,0.25415,0.754125,0.3518,0.4924,,,0.26925,1.008375,0.287725,1.03045,0.285825,1.087425 -2002/7,0.247675,0.751025,0.3518,0.4924,,,0.2652,1.0081,0.28115,1.02725,0.279375,1.08455 -2002/8,0.25638,0.77538,0.35432,0.49542,,,0.2726,1.0307,0.28896,1.05028,0.28686,1.10804 -2002/9,0.272825,0.795,0.37785,0.5235,,,0.284375,1.0448,0.299825,1.063225,0.297225,1.120475 -2002/10,0.2841,0.8085,0.3853,0.5324,,,0.288925,1.050225,0.304775,1.06925,0.302575,1.12685 -2002/11,0.26392,0.78436,0.3853,0.5324,,,0.26646,1.02338,0.2817,1.04164,0.28108,1.10114 -2002/12,0.2813,0.80515,0.39095,0.5392,,,0.271925,1.029925,0.288625,1.04985,0.288825,1.1104 -2003/1,0.29338,0.8196,0.40328,0.55396,,,0.28856,1.04978,0.3017,1.0655,0.30076,1.12468 -2003/2,0.321675,0.85345,0.4162,0.5694,,,0.31415,1.080375,0.326175,1.0948,0.324875,1.153525 -2003/3,0.35655,0.89515,0.426675,0.58195,,,0.307225,1.072125,0.31735,1.084225,0.3153,1.142075 -2003/4,0.28445,0.80895,0.420375,0.5744,,,0.2785,1.0378,0.2917,1.05355,0.291675,1.1138 -2003/5,0.24464,0.76136,0.38204,0.52858,,,0.24386,0.99634,0.26122,1.01712,0.2624,1.07882 -2003/6,0.239275,0.75485,0.3787,0.5246,,,0.23555,0.986375,0.2539,1.00835,0.25315,1.0677 -2003/7,0.2429,0.759225,0.377375,0.523025,,,0.24185,0.993925,0.2601,1.01575,0.258475,1.074075 -2003/8,0.25216,0.77026,0.3734,0.5183,,,0.25724,1.01236,0.27572,1.03444,0.2726,1.09102 -2003/9,0.245525,0.762375,0.3734,0.5183,,,0.24875,1.002175,0.270975,1.02875,0.2688,1.08645 -2003/10,0.25904,0.77854,0.3734,0.5183,,,0.23826,0.98964,0.25922,1.0147,0.26184,1.07812 -2003/11,0.2654,0.78615,0.37655,0.522,,,0.240375,0.992175,0.259525,1.0151,0.259375,1.075225 -2003/12,0.26255,0.782775,0.3797,0.5257,,,0.236075,0.987025,0.2552,1.009925,0.254875,1.069775 -2004/1,0.26546,0.80412,0.38066,0.52686,,,0.24764,1.0009,0.26594,1.02274,0.26588,1.08294 -2004/2,0.254225,0.80265,0.38885,0.536675,,,0.25295,1.00725,0.271075,1.0289,0.27105,1.08915 -2004/3,0.2809,0.83455,0.390575,0.53875,,,0.275575,1.03425,0.29295,1.05505,0.292325,1.114575 -2004/4,0.29142,0.84714,0.3923,0.5409,,,0.29112,1.05288,0.30922,1.0745,0.3083,1.13372 -2004/5,0.3185,0.8795,0.3961,0.5454,,,0.3363,1.1069,0.356425,1.130925,0.353875,1.188175 -2004/6,0.300625,0.858175,0.3999,0.5499,,,0.30165,1.06545,0.3217,1.089475,0.319075,1.1466 -2004/7,0.31462,0.87494,0.40412,0.55496,,,0.31288,1.07888,0.33336,1.10338,0.3293,1.1588 -2004/8,0.3465,0.91305,0.419725,0.573675,,,0.316375,1.0831,0.3349,1.105225,0.33165,1.1616 -2004/9,0.35235,0.92005,0.428,0.583525,,,0.311675,1.07745,0.3308,1.10035,0.328775,1.15815 -2004/10,0.39578,0.97198,0.4448,0.60366,,,0.33752,1.10838,0.35558,1.12998,0.35352,1.18774 -2004/11,0.3851,0.95915,0.456675,0.61785,,,0.312525,1.078425,0.331625,1.1013,0.32875,1.158125 -2004/12,0.3741,0.94604,0.45686,0.61802,,,0.2767,1.0356,0.29448,1.05688,0.29506,1.11786 -2005/1,0.35355,0.921475,0.455425,0.61635,,,0.289475,1.05085,0.3083,1.073425,0.31185,1.137925 -2005/2,0.366375,0.9368,0.455225,0.616025,,,0.319425,1.0867,0.33775,1.108625,0.3378,1.169 -2005/3,0.4158,0.9959,0.455125,0.616,,,0.33655,1.107175,0.353825,1.12785,0.354925,1.18945 -2005/4,0.42864,1.01126,0.47058,0.63446,,,0.36888,1.14588,0.3876,1.16826,0.38778,1.22874 -2005/5,0.406625,0.984925,0.47935,0.644925,,,0.3524,1.1261,0.373275,1.1511,0.375,1.213475 -2005/6,0.444875,1.03065,0.4791,0.6446,,,0.375225,1.153475,0.3966,1.17905,0.395275,1.237675 -2005/7,0.46682,1.05694,0.47362,0.6381,,,0.41118,1.19642,0.44276,1.23422,0.43966,1.2908 -2005/8,0.47895,1.071425,0.4506,0.6106,,,0.437825,1.228325,0.480225,1.279,0.476725,1.335125 -2005/9,0.5056,1.10332,0.48466,0.65126,,,0.48808,1.28844,0.54224,1.35322,0.54992,1.42264 -2005/10,0.506875,1.104775,0.50215,0.672225,,,0.441725,1.232975,0.4912,1.292175,0.5123,1.3777 -2005/11,0.45745,1.045725,0.5067,0.677675,,,0.388625,1.169475,0.439775,1.23065,0.471725,1.32915 -2005/12,0.44758,1.0339,0.51496,0.68756,,,0.38966,1.1707,0.43558,1.22564,0.46598,1.32224 -2006/1,0.4686,1.059025,0.5275,0.702525,,,0.43085,1.22,0.46925,1.2659,0.489925,1.3509 -2006/2,0.473075,1.0644,0.540075,0.717575,,,0.420775,1.2079,0.4591,1.25375,0.480275,1.339375 -2006/3,0.48786,1.0821,0.54192,0.7198,,,0.43728,1.22768,0.46958,1.26628,0.49136,1.35266 -2006/4,0.511625,1.110525,0.5229,0.697025,,,0.49095,1.29185,0.521525,1.3284,0.533925,1.403525 -2006/5,0.513125,1.112275,0.522675,0.696775,,,0.4957,1.2975,0.522975,1.33015,0.536475,1.406575 -2006/6,0.50492,1.1025,0.5225,0.69654,,,0.4921,1.29322,0.5214,1.3283,0.53352,1.40304 -2006/7,0.51655,1.1164,0.539725,0.717175,,,0.520825,1.327575,0.547575,1.359575,0.56095,1.43585 -2006/8,0.52095,1.121675,0.5434,0.721575,,,0.50565,1.30945,0.53895,1.349275,0.5579,1.4322 -2006/9,0.478,1.0703,0.5432,0.72132,,,0.41356,1.19928,0.45044,1.24342,0.47148,1.32884 -2006/10,0.451775,1.038975,0.538975,0.716275,,,0.378925,1.157875,0.41065,1.195825,0.427525,1.276275 -2006/11,0.444425,1.030125,0.5386,0.715775,,,0.377225,1.155875,0.40425,1.18815,0.415,1.261325 -2006/12,0.44304,1.02848,0.52872,0.70398,,,0.38764,1.1683,0.41244,1.19794,0.42388,1.2719 -2007/1,0.4184,1.009675,0.52455,0.699,,,0.3717,1.164875,0.397825,1.196175,, -2007/2,0.427125,1.0201,0.5324,0.7084,,,0.383925,1.179525,0.408375,1.20875,, -2007/3,0.44538,1.04194,0.53282,0.70888,,,0.43114,1.23598,0.45524,1.2648,, -2007/4,0.464225,1.06445,0.532475,0.708475,,,0.468275,1.2804,0.49095,1.30755,, -2007/5,0.466725,1.06745,0.5326,0.70865,,,0.499375,1.3176,0.523675,1.346675,, -2007/6,0.47964,1.0829,0.53274,0.7088,,,0.49778,1.31566,0.52322,1.34612,, -2007/7,0.48995,1.0952,0.533075,0.709175,,,0.49175,1.308475,0.51835,1.340275,, -2007/8,0.48774,1.09262,0.53308,0.70922,,,0.4621,1.27302,0.49162,1.30832,, -2007/9,0.5061,1.114525,0.535975,0.712675,,,0.46895,1.2812,0.5029,1.3218,, -2007/10,0.51685,1.127425,0.531475,0.707275,,,0.467775,1.279775,0.499075,1.31725,, -2007/11,0.58418,1.20798,0.54558,0.72416,,,0.51576,1.33722,0.54218,1.36884,, -2007/12,0.580475,1.2035,0.55225,0.73215,,,0.509475,1.329675,0.537025,1.3626,, -2008/1,0.576275,1.1985,0.566325,0.748925,,,0.5264,1.349925,0.554925,1.384075,, -2008/2,0.58272,1.20822,0.56742,0.7503,,,0.52492,1.3518,0.55552,1.38842,, -2008/3,0.63135,1.266875,0.56725,0.750075,,,0.53475,1.364475,0.5644,1.3999,, -2008/4,0.651375,1.290825,0.5706,0.754075,,,0.5511,1.384,0.582625,1.421725,, -2008/5,0.74014,1.397,0.5832,0.76916,,,0.59964,1.44208,0.63164,1.48034,, -2008/6,0.774175,1.437675,0.587725,0.774575,,,0.63825,1.4882,0.66805,1.523875,, -2008/7,0.766725,1.42875,0.6031,0.792925,,,0.626625,1.47435,0.657775,1.511575,, -2008/8,0.69148,1.3388,0.59464,0.78282,,,0.58318,1.42238,0.61684,1.4626,, -2008/9,0.661175,1.30255,0.59475,0.78295,,,0.571075,1.4079,0.606175,1.449875,, -2008/10,0.58356,1.2097,0.58406,0.77022,,,0.47658,1.29488,0.51318,1.33864,, -2008/11,0.500225,1.110075,0.567425,0.750275,,,0.36355,1.1597,0.4001,1.203425,, -2008/12,0.403875,0.9948,0.543125,0.7212,,,0.298025,1.08135,0.3348,1.125325,, -2009/1,0.39412,0.98312,0.52388,0.69818,,,0.31432,1.10084,0.34508,1.13762,, -2009/2,0.37715,0.962825,0.519375,0.6928,,,0.344375,1.1369,0.3727,1.1708,, -2009/3,0.3627,0.945525,0.51101292275,0.68284545575,,,0.34735,1.14045,0.37694344725,1.1758406625,, -2009/4,0.38325,0.97015,0.493875,0.6623,,,0.370625,1.16825,0.3964,1.1991,, -2009/5,0.38322,0.9701,0.48874,0.65618,,,0.40282,1.2068,0.42742,1.23618,, -2009/6,0.4283,1.024,0.488975,0.65645,,,0.456,1.2704,0.483325,1.30305,, -2009/7,0.41048,1.00272,0.49444,0.663,,,0.42552,1.23392,0.45294,1.26672,, -2009/8,0.442525,1.041,0.50485,0.675375,,,0.458375,1.2732,0.48675,1.3072,, -2009/9,0.42095,1.0152,0.5053,0.675975,,,0.429475,1.2387,0.4597,1.274875,, -2009/10,0.4329,1.02952,0.50602,0.67682,,,0.4271,1.23582,0.45636,1.27082,, -2009/11,0.44905,1.0488,0.504375,0.674875,,,0.4516,1.265125,0.4807,1.2999,, -2009/12,0.4427,1.041225,0.513325,0.685575,,,0.443075,1.254925,0.4725,1.290125,, -2010/1,0.47066,1.07468,0.52142,0.69526,,,0.47464,1.29266,0.5044,1.32828,, -2010/2,0.477525,1.08285,0.52825,0.7034,,,0.48875,1.309575,0.5161,1.342275,, -2010/3,0.50825,1.119625,0.53255,0.708575,,,0.5246,1.352475,0.552975,1.386375,, -2010/4,0.5387,1.15602,0.53408,0.71038,,,0.54278,1.37418,0.5711,1.40804,, -2010/5,0.5473,1.1663,0.54,0.717475,,,0.53655,1.366725,0.5685,1.40495,, -2010/6,0.54655,1.1654,0.542925,0.720975,,,0.527925,1.356425,0.56,1.394775,, -2010/7,0.523,1.13724,0.56912,0.7523,,,0.50636,1.33064,0.53994,1.37078,, -2010/8,0.52565,1.14045,0.5755,0.759925,,,0.503525,1.32725,0.53435,1.3641,, -2010/9,0.52975,1.145325,0.569275,0.752475,,,0.503525,1.327225,0.5343,1.36405,, -2010/10,0.54602,1.1648,0.5834,0.76936,,,0.51634,1.34252,0.54404,1.37568,, -2010/11,0.557125,1.1781,0.573675,0.7577,,,0.530425,1.3594,0.55925,1.3939,, -2010/12,0.59582,1.22436,0.60544,0.79576,,,0.57488,1.4126,0.60418,1.44764,, -2011/1,0.63115,1.277675,0.6274,0.822025,,,0.607625,1.45745,0.638925,1.494925,, -2011/2,0.656075,1.30745,0.630075,0.8252,,,0.616325,1.4679,0.6448,1.501975,, -2011/3,0.70035,1.360375,0.653025,0.852625,,,0.6481,1.50585,0.6794,1.54335,, -2011/4,0.70378,1.36448,0.66262,0.86412,,,0.6709,1.53314,0.70272,1.57122,, -2011/5,0.667975,1.321675,0.6635,0.865175,,,0.668275,1.53,0.7018,1.5701,, -2011/6,0.665875,1.319125,0.668525,0.871225,,,0.6434,1.50025,0.67675,1.540175,, -2011/7,0.66854,1.32238,0.65664,0.857,,,0.64584,1.5032,0.6778,1.54138,, -2011/8,0.658925,1.31085,0.662075,0.8635,,,0.639,1.495,0.6725,1.535075,, -2011/9,0.6772,1.3327,0.65862,0.85932,,,0.6553,1.51452,0.68628,1.55158,, -2011/10,0.68935,1.3472,0.656175,0.856425,,,0.6392,1.49525,0.67165,1.534025,, -2011/11,0.71535,1.37835,0.657275,0.85775,,,0.63325,1.488125,0.665525,1.5267,, -2011/12,0.7091,1.37088,0.65082,0.85004,,,0.63686,1.49244,0.6666,1.52802,, -2012/1,0.74,1.409275,0.655975,0.856175,,,0.6844,1.5502,0.7191,1.591725,, -2012/2,0.747175,1.419275,0.668625,0.8713,,,0.711125,1.5831,0.744525,1.623025,, -2012/3,0.76896,1.4453,0.69032,0.89724,,,0.75542,1.63604,0.79076,1.67828,, -2012/4,0.75755,1.4317,0.6973,0.90565,,,0.768625,1.6518,0.809775,1.701025,, -2012/5,0.730575,1.399375,0.6953,0.9032,,,0.70955,1.58115,0.7584,1.639575,, -2012/6,0.68256,1.34202,0.69498,0.90282,,,0.66572,1.52872,0.71448,1.58706,, -2012/7,0.712675,1.378,0.6798,0.8847,,,0.683225,1.549675,0.731625,1.6076,, -2012/8,0.7598,1.42722,0.6656,0.86772,,,0.73864,1.60878,0.78352,1.66248,, -2012/9,0.749225,1.385825,0.66535,0.8674,,,0.724725,1.563475,0.774425,1.622875,, -2012/10,0.753675,1.391175,0.6649,0.86685,,,0.709675,1.54545,0.75755,1.602675,, -2012/11,0.73408,1.36774,0.67374,0.87744,,,0.66426,1.49112,0.71136,1.54744,, -2012/12,0.705175,1.3526,0.677925,0.88245,,,0.6549,1.4994,0.700275,1.5536,, -2013/1,0.715675,1.3786,0.681975,0.887275,,,0.68715,1.5514,0.72805,1.600275,, -2013/2,0.73595,1.405725,0.68045,0.88545,,,0.72925,1.604725,0.769225,1.6526,, -2013/3,0.7226,1.38976,0.68474,0.89062,,,0.72174,1.59574,0.76578,1.6484,, -2013/4,0.686175,1.34615,0.68435,0.890125,,,0.68485,1.5516,0.7353,1.612,, -2013/5,0.67022,1.3271,0.6708,0.87392,,,0.66484,1.5277,0.71338,1.58576,, -2013/6,0.667625,1.323975,0.666725,0.8691,,,0.6687,1.53235,0.715375,1.588125,, -2013/7,0.682575,1.341875,0.66665,0.86895,0.67755,1.54335,0.673325,1.53785,0.72455,1.5991,, -2013/8,0.69126,1.35224,0.66406,0.86588,0.68472,1.55196,0.68128,1.54738,0.73364,1.60994,, -2013/9,0.70105,1.364025,0.663475,0.865175,0.668425,1.532475,0.6661,1.529225,0.7219,1.595925,, -2013/10,0.67155,1.3287,0.660075,0.8611,0.6267,1.48255,0.630375,1.486475,0.6827,1.54905,, -2013/11,0.66164,1.31684,0.6579,0.85854,0.61592,1.46964,0.62442,1.47934,0.67216,1.53644,, -2013/12,0.67335,1.330875,0.660975,0.86215,0.629675,1.4861,0.638525,1.496225,0.68585,1.55285,, -2014/1,0.6667,1.32836,0.66246,0.86684,0.62714,1.48852,0.63628,1.49912,0.68238,1.55444,, -2014/2,0.667125,1.329625,0.662875,0.867325,0.631775,1.49445,0.64445,1.509275,0.6887,1.562375,, -2014/3,0.651675,1.311125,0.66005,0.863925,0.63055,1.49295,0.640725,1.50485,0.686975,1.56035,, -2014/4,0.648725,1.30755,0.660025,0.86395,0.640475,1.5049,0.648875,1.514625,0.695775,1.570875,, -2014/5,0.64832,1.30706,0.66166,0.86586,0.64568,1.51108,0.65396,1.52074,0.70124,1.57744,, -2014/6,0.650625,1.30985,0.6597,0.863525,0.6573,1.52505,0.664625,1.53355,0.7125,1.59095,, -2014/7,0.645475,1.30365,0.652725,0.85515,0.65725,1.525075,0.662425,1.5309,0.71505,1.594025,, -2014/8,0.6417,1.29914,0.65752,0.8609,0.63492,1.49826,0.63586,1.49898,0.69096,1.5651,, -2014/9,0.635725,1.291975,0.648775,0.8504,0.626525,1.48815,0.62955,1.49145,0.683375,1.556025,, -2014/10,0.60828,1.25902,0.64476,0.84558,0.59518,1.45048,0.60244,1.45888,0.65628,1.52352,, -2014/11,0.585325,1.2315,0.639325,0.839075,0.559125,1.407275,0.569325,1.41915,0.621375,1.481625,, -2014/12,0.505575,1.1358,0.6333,0.831825,0.480525,1.31295,0.48975,1.323625,0.545525,1.3906,, -2015/1,0.44838,1.11488,0.60544,0.81338,0.42702,1.2694,0.4333,1.27656,0.48506,1.33868,, -2015/2,0.50805,1.186475,0.599025,0.805675,0.481525,1.334825,0.487,1.341,0.53515,1.3988,, -2015/3,0.52505,1.206925,0.595725,0.801775,0.5192,1.38,0.527875,1.390025,0.574775,1.4463,, -2015/4,0.520475,1.2014,0.598775,0.8054,0.534375,1.398225,0.539725,1.4043,0.5904,1.465075,, -2015/5,0.54768,1.23408,0.60564,0.81364,0.5613,1.4305,0.56652,1.43642,0.6176,1.4977,, -2015/6,0.53155,1.2147,0.59795,0.80445,0.567175,1.43755,0.57215,1.4432,0.62425,1.5057,, -2015/7,0.4965,1.17262,0.58614,0.79026,0.5545,1.42238,0.55802,1.42622,0.61312,1.49234,, -2015/8,0.450575,1.11755,0.588875,0.7935,0.504525,1.3624,0.5085,1.3668,0.56515,1.4348,, -2015/9,0.44015,1.10505,0.568425,0.769,0.450375,1.297425,0.453425,1.300725,0.509125,1.367525,, -2015/10,0.43684,1.10104,0.5556,0.7536,0.43342,1.27706,0.44328,1.28854,0.49372,1.34906,, -2015/11,0.4361,1.100175,0.548375,0.744875,0.43515,1.279125,0.44625,1.2921,0.49535,1.351025,, -2015/12,0.3787,1.0313,0.542875,0.7383,0.41415,1.253975,0.425875,1.2676,0.476225,1.328075,, -2016/1,0.33822,1.0186,0.52784,0.7268,0.40916,1.2445,0.40826,1.26706,0.4565,1.3249,, -2016/2,0.336225,1.016175,0.522625,0.720525,0.383375,1.213525,0.386,1.2403,0.4328,1.29645,, -2016/3,0.37165,1.058725,0.51325,0.70925,0.401,1.23465,0.401525,1.258975,0.44625,1.312625,, -2016/4,0.3775,1.06572,0.50618,0.70076,0.43892,1.28018,0.43868,1.3035,0.48432,1.3583,, -2016/5,0.4248,1.12245,0.50675,0.701475,0.463675,1.309875,0.4612,1.33055,0.510225,1.389425,, -2016/6,0.453925,1.157425,0.5115,0.70715,0.4848,1.33525,0.479925,1.35305,0.532575,1.4162,, -2016/7,0.42272,1.12,0.51878,0.71586,0.44102,1.28268,0.4361,1.30046,0.49038,1.36556,, -2016/8,0.406525,1.10055,0.5149,0.7112,0.424825,1.263275,0.41995,1.281075,0.469725,1.3408,, -2016/9,0.4155,1.11134,0.5071,0.70188,0.43352,1.27372,0.4306,1.29384,0.4806,1.35384,, -2016/10,0.454925,1.1586,0.50445,0.698725,0.4612,1.306925,0.463575,1.3334,0.510575,1.389825,, -2016/11,0.443925,1.14545,0.509175,0.704375,0.4488,1.29205,0.4516,1.31905,0.50065,1.3779,, -2016/12,0.4853,1.19512,0.51434,0.71056,0.48622,1.33694,0.48884,1.36374,0.536,1.42032,, -2017/1,0.5087,"1,2665",0.503925,0.714975,0.51255,1.383775,0.517275,1.412,0.568125,1.473025,, -2017/2,0.507975,"1,265625",0.515925,0.7294,0.515575,1.387425,0.520325,1.41565,0.5722,1.47795,, -2017/3,0.488582,"1,242356",0.523,0.737892,0.492608,1.35988,0.497676,1.388516,0.550438,1.451814,, -2017/4,0.4903,"1,244425",0.528475,0.744475,0.506975,1.377025,0.5083,1.401225,0.56235,1.466075,, -2017/5,0.46155,"1,209875",0.528675,0.7447,0.480375,1.3452,0.48245,1.37025,0.538375,1.437325,, -2017/6,0.436826,"1,18024",0.528248,0.74418,0.458724,1.31914,0.460486,1.34388,0.516552,1.41114,, -2017/7,,"1,17",,,,,,1.38,,1.39,2017/7, -2017/8,,"1,2",,,,,,1.38,,1.41,2017/8, -2017/9,,"1,22",,,,,,1.38,,1.44,2017/9, -2017/10,,"1,24",,,,,,1.38,,1.43,2017/10, -2017/11,,"1,27",,,,,,1.38,,1.54,2017/11, -2017/12,,"1,28",,,,,,1.38,,1.53,2017/12, -2018/1,,"1,39",,,,,,1.51,,1.54,2018/1, -2018/2,,"1,38",,,,,,1.51,,1.53,2018/2, -2018/3,,"1,37",,,,,,1.51,,1.52,2018/3, -2018/4,,"1,4",,"1,23241841666667",,,,1.51,,1.55,2018/4, -2018/5,,"1,45",,"1,4375",,,,1.51,,1.6,2018/5, -2018/6,,"1,46",,"1,44333333333333",,,,1.51,,1.62,2018/6, -2018/7,,"1,45",,"1,27333333333333",,,,1.51,,1.6,2018/7, -2018/8,,"1,45",,"1,44333333333333",,,,1.51,,1.61,2018/8, -2018/9,,"1,48",,,,,,1.51,,1.62,2018/9, -2018/10,,"1,52",,,,,,1.51,,1.63,2018/10, -2018/11,,"1,48",,,,,,1.51,,1.55,2018/11, -2018/12,,"1,42",,,,,,1.51,,1.5,2018/12, -2019/1,,"1,4",,,,,,1.51,,1.48,2019/1, -2019/2,,"1,44",,,,,,1.51,,1.5,2019/2, -2019/3,,"1,46",,,,,,1.51,,1.54,2019/3, -2019/4,,"1,47",,,,,,1.51,,1.61,2019/4, -2019/5,,"1,49",,,,,,1.51,,1.64,2019/5, -2019/6,,"1,43",,,,,,1.51,,1.59,2019/6, -2019/7,,"1,42",,,,,,1.51,,1.57,2019/7, -2019/8,,"1,42",,,,,,1.51,,1.56,2019/8, -2019/9,,"1,44",,,,,,1.51,,1.55,2019/9, -2019/10,,"1,44",,,,,,1.51,,1.55,2019/10, -2019/11,,"1,44",,,,,,1.51,,1.56,2019/11, -2019/12,,"1,47",,,,,,1.51,,1.58,2019/12, -2020/1,,"1,49",,,,,,1.37,,1.6,2020/1, -2020/2,,"1,42",,,,,,1.37,,1.56,2020/2, -2020/3,,"1,32",,,,,,1.37,,1.47,2020/3, -2020/4,,"1,23",,,,,,1.37,,1.35,2020/4, -2020/5,,"1,18",,,,,,1.37,,1.31,2020/5, -2020/6,,"1,22",,,,,,1.37,,1.37,2020/6, -2020/7,,"1,25",,,,,,1.37,,1.41,2020/7, -2020/8,,"1,25",,,,,,1.37,,1.4,2020/8, -2020/9,,"1,22",,,,,,1.37,,1.4,2020/9, -2020/10,,"1,21",,,,,,1.37,,1.4,2020/10, -2020/11,,"1,22",,,,,,1.37,,1.39,2020/11, -2020/12,,"1,27",,,,,,1.37,,1.42,2020/12, -2021/1,,"1,31",,,,,,1.56,,1.47,2021/1, -2021/2,,"1,36",,,,,,1.56,,1.52,2021/2, -2021/3,,"1,4",,,,,,1.56,,1.57,2021/3, -2021/4,,"1,39",,,,,,1.56,,1.59,2021/4, -2021/5,,"1,4",,,,,,1.56,,1.59,2021/5, -2021/6,,"1,43",,,,,,1.56,,1.6,2021/6, -2021/7,,"1,45",,,,,,1.56,,1.65,2021/7, -2021/8,,"1,45",,,,,,1.56,,1.65,2021/8, -2021/9,,"1,46",,,,,,1.56,,1.65,2021/9, -2021/10,,"1,56",,,,,,1.56,,1.71,2021/10, -2021/11,,"1,57",,,,,,1.56,,1.74,2021/11, -2021/12,,"1,54",,,,,,1.56,,1.7,2021/12, +Date,diesel_ttc,super_98_ttc,super_95_ttc,super_plombe_ttc,super_95_e10_ttc +1992/01,0.54,0.78,,0.8, +1992/02,0.54,0.78,,0.81, +1992/03,0.54,0.77,,0.81, +1992/04,0.53,0.77,,0.81, +1992/05,0.54,0.78,,0.81, +1992/06,0.54,0.78,,0.82, +1992/07,0.54,0.78,,0.82, +1992/08,0.54,0.78,,0.81, +1992/09,0.53,0.77,,0.8, +1992/10,0.53,0.77,,0.8, +1992/11,0.54,0.77,,0.81, +1992/12,0.54,0.77,,0.8, +1993/01,0.53,0.76,,0.81, +1993/02,0.54,0.76,,0.81, +1993/03,0.54,0.76,,0.81, +1993/04,0.55,0.77,,0.82, +1993/05,0.55,0.77,,0.82, +1993/06,0.54,0.77,,0.82, +1993/07,0.54,0.8,,0.85, +1993/08,0.56,0.82,,0.87, +1993/09,0.59,0.82,,0.87, +1993/10,0.6,0.81,,0.86, +1993/11,0.6,0.81,,0.86, +1993/12,0.59,0.81,,0.86, +1994/01,0.6,0.81,,0.86, +1994/02,0.6,0.81,,0.86, +1994/03,0.6,0.81,,0.86, +1994/04,0.6,0.81,,0.86, +1994/05,0.6,0.82,,0.87, +1994/06,0.6,0.82,,0.87, +1994/07,0.59,0.82,,0.87, +1994/08,0.59,0.83,,0.88, +1994/09,0.59,0.83,,0.87, +1994/10,0.59,0.82,,0.87, +1994/11,0.59,0.82,,0.87, +1994/12,0.59,0.82,,0.87, +1995/01,0.59,0.85,,0.89, +1995/02,0.59,0.86,,0.9, +1995/03,0.59,0.86,,0.9, +1995/04,0.59,0.87,,0.9, +1995/05,0.59,0.87,,0.91, +1995/06,0.59,0.87,,0.91, +1995/07,0.59,0.86,,0.9, +1995/08,0.59,0.87,,0.91, +1995/09,0.6,0.87,,0.91, +1995/10,0.6,0.87,,0.91, +1995/11,0.6,0.87,,0.91, +1995/12,0.6,0.88,,0.91, +1996/01,0.62,0.89,,0.92, +1996/02,0.63,0.9,,0.93, +1996/03,0.65,0.9,,0.94, +1996/04,0.66,0.92,,0.96, +1996/05,0.65,0.93,,0.97, +1996/06,0.64,0.92,,0.96, +1996/07,0.64,0.92,,0.96, +1996/08,0.64,0.92,,0.96, +1996/09,0.66,0.93,,0.96, +1996/10,0.7,0.93,,0.97, +1996/11,0.7,0.94,,0.98, +1996/12,0.7,0.94,,0.98, +1997/01,0.71,0.95,,0.99, +1997/02,0.7,0.96,,0.99, +1997/03,0.69,0.95,,0.99, +1997/04,0.68,0.95,,0.99, +1997/05,0.68,0.95,,0.99, +1997/06,0.67,0.95,,0.99, +1997/07,0.67,0.94,,0.98, +1997/08,0.68,0.96,,1.0, +1997/09,0.67,0.97,,1.0, +1997/10,0.68,0.96,,1.0, +1997/11,0.69,0.96,,1.0, +1997/12,0.68,0.96,,0.99, +1998/01,0.68,0.95,,0.99, +1998/02,0.67,0.95,,0.99, +1998/03,0.66,0.94,,0.98, +1998/04,0.66,0.94,,0.97, +1998/05,0.65,0.93,,0.97, +1998/06,0.64,0.93,,0.96, +1998/07,0.64,0.92,,0.96, +1998/08,0.63,0.92,,0.96, +1998/09,0.63,0.91,,0.95, +1998/10,0.63,0.91,,0.95, +1998/11,0.63,0.91,,0.95, +1998/12,0.62,0.91,,0.95, +1999/01,0.63,0.9,,0.95, +1999/02,0.63,0.9,,0.95, +1999/03,0.64,0.9,,0.95, +1999/04,0.67,0.93,,0.98, +1999/05,0.67,0.94,,0.99, +1999/06,0.67,0.94,,0.99, +1999/07,0.68,0.95,,1.0, +1999/08,0.7,0.98,,1.03, +1999/09,0.71,0.99,,1.04, +1999/10,0.72,1.0,,1.05, +1999/11,0.73,1.0,,1.05, +1999/12,0.78,1.04,,1.1, +2000/01,0.81,1.04,,1.11, +2000/02,0.81,1.06,,1.12, +2000/03,0.82,1.1,,1.16, +2000/04,0.8,1.09,,1.16, +2000/05,0.81,1.1,,1.17, +2000/06,0.82,1.15,,1.21, +2000/07,0.83,1.15,,1.22, +2000/08,0.84,1.12,,1.19, +2000/09,0.93,1.16,,1.23, +2000/10,0.9,1.11,,1.19, +2000/11,0.91,1.12,,1.19, +2000/12,0.89,1.08,,1.16, +2001/01,0.81,1.03,,1.1, +2001/02,0.8,1.05,,1.13, +2001/03,0.8,1.05,,1.13, +2001/04,0.8,1.08,,1.15, +2001/05,0.82,1.14,,1.21, +2001/06,0.82,1.13,,1.2, +2001/07,0.82,1.07,,1.14, +2001/08,0.8,1.04,,1.11, +2001/09,0.8,1.06,,1.13, +2001/10,0.79,1.03,,1.1, +2001/11,0.78,0.99,,1.06, +2001/12,0.75,0.98,,1.05, +2002/01,0.74,0.98,0.95,1.05, +2002/02,0.74,0.99,0.95,1.05, +2002/03,0.75,1.0,0.97,1.07, +2002/04,0.78,1.04,1.02,1.11, +2002/05,0.77,1.05,1.02,1.11, +2002/06,0.76,1.03,1.0,1.09, +2002/07,0.75,1.02,0.99,1.09, +2002/08,0.77,1.04,1.02,1.11, +2002/09,0.79,1.05,1.03,1.12, +2002/10,0.81,1.06,1.04,1.13, +2002/11,0.79,1.04,1.02,1.11, +2002/12,0.79,1.03,1.01,1.1, +2003/01,0.82,1.06,1.04,1.13, +2003/02,0.84,1.09,1.07,1.15, +2003/03,0.89,1.09,1.07,1.15, +2003/04,0.82,1.05,1.03,1.12, +2003/05,0.77,1.02,0.99,1.09, +2003/06,0.76,1.01,0.99,1.08, +2003/07,0.76,1.02,1.0,1.09, +2003/08,0.77,1.03,1.01,1.1, +2003/09,0.77,1.04,1.02,1.11, +2003/10,0.78,1.02,1.0,1.09, +2003/11,0.79,1.02,1.0,1.09, +2003/12,0.79,1.02,1.0,1.09, +2004/01,0.81,1.03,1.01,1.1, +2004/02,0.81,1.03,1.02,1.1, +2004/03,0.83,1.06,1.04,1.13, +2004/04,0.84,1.07,1.05,1.14, +2004/05,0.88,1.13,1.11,1.2, +2004/06,0.86,1.11,1.09,1.17, +2004/07,0.87,1.1,1.08,1.17, +2004/08,0.91,1.12,1.1,1.18, +2004/09,0.92,1.11,1.09,1.18, +2004/10,0.96,1.14,1.12,1.2, +2004/11,0.97,1.13,1.11,1.19, +2004/12,0.97,1.1,1.08,1.16, +2005/01,0.93,1.08,1.05,, +2005/02,0.94,1.12,1.1,, +2005/03,0.99,1.13,1.12,, +2005/04,1.02,1.18,1.16,1.24, +2005/05,0.99,1.17,1.15,, +2005/06,1.02,1.18,1.16,, +2005/07,1.06,1.23,1.2,, +2005/08,1.07,1.28,1.23,, +2005/09,1.1,1.36,1.3,, +2005/10,1.12,1.34,1.28,, +2005/11,1.07,1.26,1.2,, +2005/12,1.04,1.24,1.18,, +2006/01,1.06,1.27,1.23,, +2006/02,1.07,1.27,1.23,, +2006/03,1.08,1.27,1.23,, +2006/04,1.1,1.31,1.28,, +2006/05,1.12,1.34,1.32,, +2006/06,1.11,1.34,1.3,, +2006/07,1.12,1.36,1.33,, +2006/08,1.13,1.37,1.33,, +2006/09,1.1,1.28,1.24,, +2006/10,1.05,1.22,1.18,, +2006/11,1.04,1.2,1.17,, +2006/12,1.04,1.21,1.18,, +2007/01,1.02,1.21,1.18,, +2007/02,1.02,1.21,1.19,, +2007/03,1.04,1.26,1.24,, +2007/04,1.07,1.3,1.28,, +2007/05,1.07,1.35,1.33,, +2007/06,1.08,1.36,1.33,, +2007/07,1.1,1.36,1.33,, +2007/08,1.1,1.32,1.29,, +2007/09,1.11,1.33,1.29,, +2007/10,1.12,1.33,1.29,, +2007/11,1.2,1.37,1.35,, +2007/12,1.22,1.38,1.34,, +2008/01,1.21,1.4,1.37,, +2008/02,1.2,1.39,1.35,, +2008/03,1.26,1.42,1.38,, +2008/04,1.29,1.43,1.39,, +2008/05,1.37,1.47,1.44,, +2008/06,1.46,1.53,1.5,, +2008/07,1.45,1.54,1.51,, +2008/08,1.36,1.48,1.44,, +2008/09,1.33,1.48,1.44,, +2008/10,1.26,1.4,1.35,, +2008/11,1.15,1.27,1.22,, +2008/12,1.05,1.17,1.13,, +2009/01,0.99,1.14,1.1,, +2009/02,0.99,1.19,1.15,, +2009/03,0.95,1.18,1.15,, +2009/04,0.98,1.21,1.18,, +2009/05,0.98,1.24,1.2,, +2009/06,1.02,1.31,1.28,, +2009/07,1.01,1.28,1.25,, +2009/08,1.04,1.31,1.28,, +2009/09,1.02,1.29,1.25,, +2009/10,1.02,1.27,1.24,, +2009/11,1.05,1.31,1.28,, +2009/12,1.05,1.3,1.26,, +2010/01,1.09,1.35,1.31,, +2010/02,1.09,1.36,1.32,, +2010/03,1.13,1.4,1.36,, +2010/04,1.16,1.42,1.39,, +2010/05,1.18,1.43,1.4,, +2010/06,1.17,1.41,1.38,, +2010/07,1.16,1.39,1.36,, +2010/08,1.15,1.38,1.35,, +2010/09,1.16,1.38,1.34,, +2010/10,1.17,1.39,1.35,, +2010/11,1.19,1.41,1.38,, +2010/12,1.22,1.46,1.42,, +2011/01,1.29,1.51,1.46,, +2011/02,1.31,1.51,1.47,, +2011/03,1.37,1.56,1.5,, +2011/04,1.38,1.58,1.52,, +2011/05,1.34,1.59,1.53,, +2011/06,1.33,1.56,1.51,, +2011/07,1.33,1.55,1.5,, +2011/08,1.33,1.55,1.49,, +2011/09,1.34,1.56,1.52,, +2011/10,1.35,1.55,1.5,, +2011/11,1.39,1.54,1.49,, +2011/12,1.38,1.54,1.49,, +2012/01,1.42,1.6,1.56,, +2012/02,1.43,1.63,1.6,, +2012/03,1.46,1.68,1.65,, +2012/04,1.45,1.72,1.67,, +2012/05,1.42,1.66,1.61,, +2012/06,1.37,1.61,1.57,, +2012/07,1.36,1.59,1.56,, +2012/08,1.44,1.66,1.63,, +2012/09,1.42,1.65,1.62,, +2012/10,1.4,1.63,1.59,, +2012/11,1.38,1.57,1.52,, +2012/12,1.38,1.57,1.53,, +2013/01,1.39,1.6,1.56,, +2013/02,1.41,1.65,1.61,, +2013/03,1.41,1.65,1.62,, +2013/04,1.38,1.64,1.6,, +2013/05,1.34,1.59,1.55,, +2013/06,1.34,1.59,1.55,, +2013/07,1.35,1.59,1.56,, +2013/08,1.36,1.6,1.56,, +2013/09,1.38,1.61,1.57,, +2013/10,1.34,1.55,1.51,, +2013/11,1.33,1.53,1.5,, +2013/12,1.34,1.55,1.52,, +2014/01,1.34,1.55,1.52,, +2014/02,1.34,1.56,1.52,, +2014/03,1.33,1.56,1.52,, +2014/04,1.32,1.56,1.53,, +2014/05,1.32,1.57,1.53,, +2014/06,1.32,1.58,1.54,, +2014/07,1.32,1.59,1.55,, +2014/08,1.31,1.56,1.51,, +2014/09,1.3,1.55,1.51,, +2014/10,1.28,1.53,1.49,, +2014/11,1.25,1.49,1.44,, +2014/12,1.19,1.43,1.39,, +2015/01,1.13,1.33,1.29,, +2015/02,1.19,1.39,1.34,, +2015/03,1.22,1.44,1.4,, +2015/04,1.22,1.46,1.42,, +2015/05,1.24,1.49,1.45,, +2015/06,1.23,1.49,1.46,, +2015/07,1.2,1.49,1.45,, +2015/08,1.14,1.43,1.39,, +2015/09,1.12,1.37,1.32,, +2015/10,1.12,1.35,1.31,, +2015/11,1.11,1.35,1.3,, +2015/12,1.08,1.34,1.3,, +2016/01,1.03,1.32,1.29,, +2016/02,1.03,1.29,1.26,, +2016/03,1.06,1.29,1.27,, +2016/04,1.07,1.34,1.31,, +2016/05,1.12,1.37,1.34,, +2016/06,1.17,1.41,1.37,, +2016/07,1.14,1.38,1.33,, +2016/08,1.11,1.33,1.29,, +2016/09,1.12,1.34,1.31,, +2016/10,1.15,1.37,1.33,, +2016/11,1.16,1.38,1.34,, +2016/12,1.18,1.38,1.35,, +2017/01,1.27,1.48,1.42,, +2017/02,1.27,1.48,1.42,, +2017/03,1.25,1.46,1.4,, +2017/04,1.24,1.47,1.4,, +2017/05,1.21,1.44,1.38,, +2017/06,1.18,1.42,1.35,, +2017/07,1.17,1.39,1.33,, +2017/08,1.2,1.41,1.34,, +2017/09,1.22,1.44,1.37,, +2017/10,1.24,1.43,1.36,, +2017/11,1.27,1.47,1.41,, +2017/12,1.28,1.48,1.41,, +2018/01,1.39,1.54,1.47,, +2018/02,1.38,1.53,1.47,, +2018/03,1.37,1.52,1.46,, +2018/04,1.4,1.55,1.49,, +2018/05,1.45,1.6,1.54,, +2018/06,1.46,1.62,1.55,, +2018/07,1.45,1.6,1.54,, +2018/08,1.45,1.61,1.55,, +2018/09,1.48,1.62,1.56,, +2018/10,1.52,1.63,1.57,, +2018/11,1.48,1.55,1.49,, +2018/12,1.42,1.5,1.44,, +2019/01,1.4,1.48,1.43,,1.4 +2019/02,1.44,1.5,1.45,,1.43 +2019/03,1.46,1.54,1.49,,1.47 +2019/04,1.47,1.61,1.57,,1.54 +2019/05,1.49,1.64,1.59,,1.56 +2019/06,1.43,1.59,1.53,,1.51 +2019/07,1.42,1.57,1.52,,1.5 +2019/08,1.42,1.56,1.51,,1.48 +2019/09,1.44,1.55,1.5,,1.48 +2019/10,1.44,1.55,1.5,,1.48 +2019/11,1.44,1.56,1.52,,1.49 +2019/12,1.47,1.58,1.53,,1.51 +2020/01,1.49,1.6,1.55,,1.53 +2020/02,1.42,1.56,1.51,,1.49 +2020/03,1.32,1.47,1.41,,1.39 +2020/04,1.23,1.35,1.29,,1.27 +2020/05,1.18,1.31,1.26,,1.25 +2020/06,1.22,1.37,1.32,,1.31 +2020/07,1.25,1.41,1.36,,1.34 +2020/08,1.25,1.4,1.35,,1.33 +2020/09,1.22,1.4,1.35,,1.33 +2020/10,1.21,1.4,1.35,,1.33 +2020/11,1.22,1.39,1.34,,1.33 +2020/12,1.27,1.42,1.37,,1.35 +2021/01,1.31,1.47,1.42,,1.4 +2021/02,1.36,1.52,1.46,,1.45 +2021/03,1.4,1.57,1.52,,1.5 +2021/04,1.39,1.59,1.53,,1.51 +2021/05,1.4,1.59,1.54,,1.51 +2021/06,1.43,1.6,1.55,,1.53 +2021/07,1.45,1.65,1.59,,1.56 +2021/08,1.45,1.65,1.59,,1.57 +2021/09,1.46,1.65,1.6,,1.57 +2021/10,1.56,1.71,1.65,,1.63 +2021/11,1.57,1.74,1.68,,1.65 +2021/12,1.54,1.7,1.64,,1.61 +2022/01,1.63,1.77,1.71,,1.69 +2022/02,1.72,1.86,1.8,,1.77 +2022/03,2.02,2.05,2.0,,1.96 +2022/04,1.87,1.87,1.82,,1.76 +2022/05,1.9,1.98,1.92,,1.89 +2022/06,2.09,2.19,2.12,,2.08 +2022/07,2.0,2.07,2.01,,1.95 +2022/08,1.87,1.88,1.82,,1.77 +2022/09,1.74,1.63,1.59,,1.51 +2022/10,1.87,1.73,1.69,,1.62 +2022/11,1.88,1.79,1.74,,1.68 +2022/12,1.78,1.76,1.71,,1.65 +2023/01,1.92,1.94,1.87,,1.86 +2023/02,1.86,1.98,1.92,,1.89 +2023/03,1.85,1.98,1.92,,1.9 +2023/04,1.81,2.0,1.95,,1.93 +2023/05,1.69,1.93,1.87,,1.85 +2023/06,1.7,1.94,1.88,,1.86 +2023/07,1.72,1.91,1.85,,1.84 +2023/08,1.85,1.99,1.94,,1.93 +2023/09,1.93,2.02,1.97,,1.95 +2023/10,1.91,1.94,1.89,,1.87 +2023/11,1.84,1.91,1.85,,1.83 +2023/12,1.77,1.87,1.81,,1.79 +2024/01,1.75,1.87,1.82,,1.79 +2024/02,1.83,1.92,1.86,,1.83 +2024/03,1.8,1.94,1.89,,1.86 +2024/04,1.79,1.99,1.94,,1.91 +2024/05,1.73,1.97,1.92,,1.88 diff --git a/openfisca_france_indirect_taxation/assets/prix/prix_mensuel_carburants_par_regions_hectolitre.csv b/openfisca_france_indirect_taxation/assets/prix/prix_mensuel_carburants_par_regions_hectolitre.csv new file mode 100644 index 00000000..352f7288 --- /dev/null +++ b/openfisca_france_indirect_taxation/assets/prix/prix_mensuel_carburants_par_regions_hectolitre.csv @@ -0,0 +1,32461 @@ +region,carburant,annee,mois,prix_moyen_par_hectolitre +82,Gazole,2007,1,102.04 +82,Gazole,2007,2,102.66 +82,Gazole,2007,3,104.28 +82,Gazole,2007,4,107.07 +82,Gazole,2007,5,107.77 +82,Gazole,2007,6,108.82 +82,Gazole,2007,7,109.87 +82,Gazole,2007,8,109.87 +82,Gazole,2007,9,111.57 +82,Gazole,2007,10,113.19 +82,Gazole,2007,11,121.56 +82,Gazole,2007,12,122.36 +82,Gazole,2008,1,121.3 +82,Gazole,2008,2,121.61 +82,Gazole,2008,3,128.08 +82,Gazole,2008,4,130.72 +82,Gazole,2008,5,140.18 +82,Gazole,2008,6,145.9 +82,Gazole,2008,7,144.68 +82,Gazole,2008,8,136.16 +82,Gazole,2008,9,132.21 +82,Gazole,2008,10,123.74 +82,Gazole,2008,11,113.55 +82,Gazole,2008,12,102.92 +82,Gazole,2009,1,99.73 +82,Gazole,2009,2,98.34 +82,Gazole,2009,3,95.81 +82,Gazole,2009,4,98.12 +82,Gazole,2009,5,98.38 +82,Gazole,2009,6,102.94 +82,Gazole,2009,7,101.42 +82,Gazole,2009,8,104.48 +82,Gazole,2009,9,102.8 +82,Gazole,2009,10,103.47 +82,Gazole,2009,11,105.86 +82,Gazole,2009,12,105.21 +82,Gazole,2010,1,109.09 +82,Gazole,2010,2,109.6 +82,Gazole,2010,3,113.36 +82,Gazole,2010,4,117.01 +82,Gazole,2010,5,118.52 +82,Gazole,2010,6,118.11 +82,Gazole,2010,7,116.01 +82,Gazole,2010,8,115.85 +82,Gazole,2010,9,115.92 +82,Gazole,2010,10,119.36 +82,Gazole,2010,11,120.05 +82,Gazole,2010,12,123.58 +82,Gazole,2011,1,128.79 +82,Gazole,2011,2,131.76 +82,Gazole,2011,3,137.19 +82,Gazole,2011,4,138.3 +82,Gazole,2011,5,134.8 +82,Gazole,2011,6,133.76 +82,Gazole,2011,7,134.26 +82,Gazole,2011,8,133.45 +82,Gazole,2011,9,134.68 +82,Gazole,2011,10,135.33 +82,Gazole,2011,11,138.5 +82,Gazole,2011,12,138.75 +82,Gazole,2012,1,141.19 +82,Gazole,2012,2,143.02 +82,Gazole,2012,3,145.64 +82,Gazole,2012,4,144.32 +82,Gazole,2012,5,141.32 +82,Gazole,2012,6,135.46 +82,Gazole,2012,7,138.29 +82,Gazole,2012,8,143.91 +82,Gazole,2012,9,140.22 +82,Gazole,2012,10,139.41 +82,Gazole,2012,11,137.09 +82,Gazole,2012,12,136.81 +82,Gazole,2013,1,138.66 +82,Gazole,2013,2,141.9 +82,Gazole,2013,3,140.26 +82,Gazole,2013,4,136.11 +82,Gazole,2013,5,133.79 +82,Gazole,2013,6,133.97 +82,Gazole,2013,7,135.81 +82,Gazole,2013,8,136.27 +82,Gazole,2013,9,137.87 +82,Gazole,2013,10,134.26 +82,Gazole,2013,11,133.14 +82,Gazole,2013,12,134.88 +82,Gazole,2014,1,135.09 +82,Gazole,2014,2,135.4 +82,Gazole,2014,3,134.35 +82,Gazole,2014,4,133.64 +82,Gazole,2014,5,133.55 +82,Gazole,2014,6,133.77 +82,Gazole,2014,7,133.62 +82,Gazole,2014,8,132.98 +82,Gazole,2014,9,132.25 +82,Gazole,2014,10,129.38 +82,Gazole,2014,11,126.43 +82,Gazole,2014,12,117.83 +82,Gazole,2015,1,114.2 +82,Gazole,2015,2,119.87 +82,Gazole,2015,3,123.28 +82,Gazole,2015,4,122.95 +82,Gazole,2015,5,126.04 +82,Gazole,2015,6,124.54 +82,Gazole,2015,7,121.1 +82,Gazole,2015,8,115.52 +82,Gazole,2015,9,113.49 +82,Gazole,2015,10,112.9 +82,Gazole,2015,11,112.56 +82,Gazole,2015,12,106.69 +82,Gazole,2016,1, +82,Gazole,2016,2, +82,Gazole,2016,3, +82,Gazole,2016,4, +82,Gazole,2016,5, +82,Gazole,2016,6, +82,Gazole,2016,7, +82,Gazole,2016,8, +82,Gazole,2016,9, +82,Gazole,2016,10, +82,Gazole,2016,11, +82,Gazole,2016,12, +82,Gazole,2017,1, +82,Gazole,2017,2, +82,Gazole,2017,3, +82,Gazole,2017,4, +82,Gazole,2017,5, +82,Gazole,2017,6, +82,Gazole,2017,7, +82,Gazole,2017,8, +82,Gazole,2017,9, +82,Gazole,2017,10, +82,Gazole,2017,11, +82,Gazole,2017,12, +82,Gazole,2018,1, +82,Gazole,2018,2, +82,Gazole,2018,3, +82,Gazole,2018,4, +82,Gazole,2018,5, +82,Gazole,2018,6, +82,Gazole,2018,7, +82,Gazole,2018,8, +82,Gazole,2018,9, +82,Gazole,2018,10, +82,Gazole,2018,11, +82,Gazole,2018,12, +82,Gazole,2019,1, +82,Gazole,2019,2, +82,Gazole,2019,3, +82,Gazole,2019,4, +82,Gazole,2019,5, +82,Gazole,2019,6, +82,Gazole,2019,7, +82,Gazole,2019,8, +82,Gazole,2019,9, +82,Gazole,2019,10, +82,Gazole,2019,11, +82,Gazole,2019,12, +82,Gazole,2020,1, +82,Gazole,2020,2, +82,Gazole,2020,3, +82,Gazole,2020,4, +82,Gazole,2020,5, +82,Gazole,2020,6, +82,Gazole,2020,7, +82,Gazole,2020,8, +82,Gazole,2020,9, +82,Gazole,2020,10, +82,Gazole,2020,11, +82,Gazole,2020,12, +82,Gazole,2021,1, +82,Gazole,2021,2, +82,Gazole,2021,3, +82,Gazole,2021,4, +82,Gazole,2021,5, +82,Gazole,2021,6, +82,Gazole,2021,7, +82,Gazole,2021,8, +82,Gazole,2021,9, +82,Gazole,2021,10, +82,Gazole,2021,11, +82,Gazole,2021,12, +82,Gazole,2022,1, +82,Gazole,2022,2, +82,Gazole,2022,3, +82,Gazole,2022,4, +82,Gazole,2022,5, +82,Gazole,2022,6, +82,Gazole,2022,7, +82,Gazole,2022,8, +82,Gazole,2022,9, +82,Gazole,2022,10, +82,Gazole,2022,11, +82,Gazole,2022,12, +82,Gazole,2023,1, +82,Gazole,2023,2, +82,Gazole,2023,3, +82,Gazole,2023,4, +82,Gazole,2023,5, +82,Gazole,2023,6, +82,Gazole,2023,7, +82,Gazole,2023,8, +82,Gazole,2023,9, +82,Gazole,2023,10, +82,Gazole,2023,11, +82,Gazole,2023,12, +82,Gazole,2024,1, +82,Gazole,2024,2, +82,Gazole,2024,3, +82,Gazole,2024,4, +82,Gazole,2024,5, +82,Gazole,2024,6, +82,Gazole,2024,7, +82,Gazole,2024,8, +82,Gazole,2024,9, +82,Gazole,2024,10, +82,Gazole,2024,11, +82,Gazole,2024,12, +82,SP95,2007,1,117.83 +82,SP95,2007,2,118.96 +82,SP95,2007,3,123.96 +82,SP95,2007,4,128.37 +82,SP95,2007,5,132.26 +82,SP95,2007,6,132.46 +82,SP95,2007,7,131.55 +82,SP95,2007,8,128.35 +82,SP95,2007,9,128.82 +82,SP95,2007,10,129.2 +82,SP95,2007,11,134.9 +82,SP95,2007,12,134.61 +82,SP95,2008,1,136.53 +82,SP95,2008,2,136.36 +82,SP95,2008,3,138.18 +82,SP95,2008,4,139.94 +82,SP95,2008,5,145.87 +82,SP95,2008,6,151.0 +82,SP95,2008,7,149.74 +82,SP95,2008,8,144.12 +82,SP95,2008,9,143.54 +82,SP95,2008,10,133.69 +82,SP95,2008,11,120.88 +82,SP95,2008,12,112.53 +82,SP95,2009,1,112.61 +82,SP95,2009,2,116.34 +82,SP95,2009,3,116.23 +82,SP95,2009,4,118.92 +82,SP95,2009,5,122.15 +82,SP95,2009,6,127.93 +82,SP95,2009,7,125.42 +82,SP95,2009,8,128.28 +82,SP95,2009,9,125.72 +82,SP95,2009,10,125.41 +82,SP95,2009,11,128.16 +82,SP95,2009,12,127.48 +82,SP95,2010,1,131.75 +82,SP95,2010,2,133.0 +82,SP95,2010,3,137.1 +82,SP95,2010,4,139.27 +82,SP95,2010,5,139.16 +82,SP95,2010,6,137.88 +82,SP95,2010,7,136.15 +82,SP95,2010,8,135.05 +82,SP95,2010,9,134.95 +82,SP95,2010,10,137.57 +82,SP95,2010,11,138.93 +82,SP95,2010,12,142.94 +82,SP95,2011,1,148.37 +82,SP95,2011,2,149.08 +82,SP95,2011,3,152.92 +82,SP95,2011,4,154.74 +82,SP95,2011,5,154.67 +82,SP95,2011,6,152.0 +82,SP95,2011,7,152.49 +82,SP95,2011,8,151.96 +82,SP95,2011,9,153.1 +82,SP95,2011,10,151.86 +82,SP95,2011,11,151.39 +82,SP95,2011,12,151.0 +82,SP95,2012,1,155.88 +82,SP95,2012,2,160.42 +82,SP95,2012,3,164.9 +82,SP95,2012,4,167.52 +82,SP95,2012,5,160.81 +82,SP95,2012,6,154.75 +82,SP95,2012,7,156.3 +82,SP95,2012,8,163.08 +82,SP95,2012,9,159.58 +82,SP95,2012,10,156.99 +82,SP95,2012,11,152.28 +82,SP95,2012,12,153.16 +82,SP95,2013,1,157.67 +82,SP95,2013,2,164.0 +82,SP95,2013,3,162.75 +82,SP95,2013,4,157.96 +82,SP95,2013,5,155.04 +82,SP95,2013,6,155.98 +82,SP95,2013,7,156.52 +82,SP95,2013,8,156.77 +82,SP95,2013,9,156.06 +82,SP95,2013,10,151.94 +82,SP95,2013,11,150.99 +82,SP95,2013,12,152.8 +82,SP95,2014,1,152.39 +82,SP95,2014,2,153.44 +82,SP95,2014,3,153.72 +82,SP95,2014,4,154.22 +82,SP95,2014,5,154.5 +82,SP95,2014,6,155.03 +82,SP95,2014,7,155.58 +82,SP95,2014,8,153.42 +82,SP95,2014,9,152.12 +82,SP95,2014,10,149.55 +82,SP95,2014,11,145.89 +82,SP95,2014,12,137.71 +82,SP95,2015,1,131.06 +82,SP95,2015,2,136.44 +82,SP95,2015,3,141.76 +82,SP95,2015,4,142.7 +82,SP95,2015,5,145.5 +82,SP95,2015,6,146.03 +82,SP95,2015,7,145.03 +82,SP95,2015,8,138.98 +82,SP95,2015,9,133.3 +82,SP95,2015,10,132.53 +82,SP95,2015,11,132.2 +82,SP95,2015,12,130.96 +82,SP95,2016,1, +82,SP95,2016,2, +82,SP95,2016,3, +82,SP95,2016,4, +82,SP95,2016,5, +82,SP95,2016,6, +82,SP95,2016,7, +82,SP95,2016,8, +82,SP95,2016,9, +82,SP95,2016,10, +82,SP95,2016,11, +82,SP95,2016,12, +82,SP95,2017,1, +82,SP95,2017,2, +82,SP95,2017,3, +82,SP95,2017,4, +82,SP95,2017,5, +82,SP95,2017,6, +82,SP95,2017,7, +82,SP95,2017,8, +82,SP95,2017,9, +82,SP95,2017,10, +82,SP95,2017,11, +82,SP95,2017,12, +82,SP95,2018,1, +82,SP95,2018,2, +82,SP95,2018,3, +82,SP95,2018,4, +82,SP95,2018,5, +82,SP95,2018,6, +82,SP95,2018,7, +82,SP95,2018,8, +82,SP95,2018,9, +82,SP95,2018,10, +82,SP95,2018,11, +82,SP95,2018,12, +82,SP95,2019,1, +82,SP95,2019,2, +82,SP95,2019,3, +82,SP95,2019,4, +82,SP95,2019,5, +82,SP95,2019,6, +82,SP95,2019,7, +82,SP95,2019,8, +82,SP95,2019,9, +82,SP95,2019,10, +82,SP95,2019,11, +82,SP95,2019,12, +82,SP95,2020,1, +82,SP95,2020,2, +82,SP95,2020,3, +82,SP95,2020,4, +82,SP95,2020,5, +82,SP95,2020,6, +82,SP95,2020,7, +82,SP95,2020,8, +82,SP95,2020,9, +82,SP95,2020,10, +82,SP95,2020,11, +82,SP95,2020,12, +82,SP95,2021,1, +82,SP95,2021,2, +82,SP95,2021,3, +82,SP95,2021,4, +82,SP95,2021,5, +82,SP95,2021,6, +82,SP95,2021,7, +82,SP95,2021,8, +82,SP95,2021,9, +82,SP95,2021,10, +82,SP95,2021,11, +82,SP95,2021,12, +82,SP95,2022,1, +82,SP95,2022,2, +82,SP95,2022,3, +82,SP95,2022,4, +82,SP95,2022,5, +82,SP95,2022,6, +82,SP95,2022,7, +82,SP95,2022,8, +82,SP95,2022,9, +82,SP95,2022,10, +82,SP95,2022,11, +82,SP95,2022,12, +82,SP95,2023,1, +82,SP95,2023,2, +82,SP95,2023,3, +82,SP95,2023,4, +82,SP95,2023,5, +82,SP95,2023,6, +82,SP95,2023,7, +82,SP95,2023,8, +82,SP95,2023,9, +82,SP95,2023,10, +82,SP95,2023,11, +82,SP95,2023,12, +82,SP95,2024,1, +82,SP95,2024,2, +82,SP95,2024,3, +82,SP95,2024,4, +82,SP95,2024,5, +82,SP95,2024,6, +82,SP95,2024,7, +82,SP95,2024,8, +82,SP95,2024,9, +82,SP95,2024,10, +82,SP95,2024,11, +82,SP95,2024,12, +82,GPLc,2007,12,73.85 +82,GPLc,2007,11,73.95 +82,GPLc,2007,1, +82,GPLc,2007,2, +82,GPLc,2007,3, +82,GPLc,2007,4, +82,GPLc,2007,5, +82,GPLc,2007,6, +82,GPLc,2007,7, +82,GPLc,2007,8, +82,GPLc,2007,9, +82,GPLc,2007,10, +82,GPLc,2008,1,74.29 +82,GPLc,2008,3,74.29 +82,GPLc,2008,4,73.96 +82,GPLc,2008,5,74.78 +82,GPLc,2008,7,76.94 +82,GPLc,2008,10,78.34 +82,GPLc,2008,11,77.25 +82,GPLc,2008,12,74.09 +82,GPLc,2008,2,74.27 +82,GPLc,2008,6,75.97 +82,GPLc,2008,8,77.87 +82,GPLc,2008,9,78.0 +82,GPLc,2009,1,70.79 +82,GPLc,2009,3,67.6 +82,GPLc,2009,4,64.65 +82,GPLc,2009,5,63.65 +82,GPLc,2009,6,63.69 +82,GPLc,2009,8,64.55 +82,GPLc,2009,9,66.12 +82,GPLc,2009,10,65.94 +82,GPLc,2009,12,67.6 +82,GPLc,2009,2,70.28 +82,GPLc,2009,7,64.33 +82,GPLc,2009,11,66.41 +82,GPLc,2010,1,70.64 +82,GPLc,2010,3,70.05 +82,GPLc,2010,6,73.27 +82,GPLc,2010,8,75.68 +82,GPLc,2010,9,76.56 +82,GPLc,2010,10,77.98 +82,GPLc,2010,7,74.83 +82,GPLc,2010,11,79.68 +82,GPLc,2010,12,82.57 +82,GPLc,2010,5,72.39 +82,GPLc,2010,2,71.1 +82,GPLc,2010,4,70.81 +82,GPLc,2011,1,82.92 +82,GPLc,2011,6,85.04 +82,GPLc,2011,7,85.49 +82,GPLc,2011,8,85.6 +82,GPLc,2011,4,83.68 +82,GPLc,2011,5,84.19 +82,GPLc,2011,9,85.62 +82,GPLc,2011,11,85.56 +82,GPLc,2011,3,83.38 +82,GPLc,2011,12,85.61 +82,GPLc,2011,2,82.81 +82,GPLc,2011,10,85.63 +82,GPLc,2012,1,85.29 +82,GPLc,2012,10,87.82 +82,GPLc,2012,2,86.48 +82,GPLc,2012,3,88.49 +82,GPLc,2012,4,89.16 +82,GPLc,2012,5,89.15 +82,GPLc,2012,6,88.85 +82,GPLc,2012,7,87.38 +82,GPLc,2012,8,87.06 +82,GPLc,2012,9,86.92 +82,GPLc,2012,11,88.49 +82,GPLc,2012,12,88.75 +82,GPLc,2013,4,89.58 +82,GPLc,2013,9,87.73 +82,GPLc,2013,2,89.58 +82,GPLc,2013,3,89.78 +82,GPLc,2013,6,88.18 +82,GPLc,2013,1,89.45 +82,GPLc,2013,5,88.46 +82,GPLc,2013,7,87.6 +82,GPLc,2013,8,87.45 +82,GPLc,2013,10,87.2 +82,GPLc,2013,11,87.14 +82,GPLc,2013,12,87.77 +82,GPLc,2014,2,88.26 +82,GPLc,2014,6,87.47 +82,GPLc,2014,12,85.82 +82,GPLc,2014,11,86.58 +82,GPLc,2014,1,88.7 +82,GPLc,2014,3,88.0 +82,GPLc,2014,4,87.79 +82,GPLc,2014,5,87.6 +82,GPLc,2014,7,87.13 +82,GPLc,2014,8,87.0 +82,GPLc,2014,10,86.68 +82,GPLc,2014,9,86.78 +82,GPLc,2015,5,81.84 +82,GPLc,2015,10,77.46 +82,GPLc,2015,11,76.75 +82,GPLc,2015,12,76.21 +82,GPLc,2015,8,80.05 +82,GPLc,2015,2,82.51 +82,GPLc,2015,6,81.06 +82,GPLc,2015,3,81.5 +82,GPLc,2015,4,81.5 +82,GPLc,2015,7,80.17 +82,GPLc,2015,1,84.2 +82,GPLc,2015,9,78.42 +82,GPLc,2016,1, +82,GPLc,2016,2, +82,GPLc,2016,3, +82,GPLc,2016,4, +82,GPLc,2016,5, +82,GPLc,2016,6, +82,GPLc,2016,7, +82,GPLc,2016,8, +82,GPLc,2016,9, +82,GPLc,2016,10, +82,GPLc,2016,11, +82,GPLc,2016,12, +82,GPLc,2017,1, +82,GPLc,2017,2, +82,GPLc,2017,3, +82,GPLc,2017,4, +82,GPLc,2017,5, +82,GPLc,2017,6, +82,GPLc,2017,7, +82,GPLc,2017,8, +82,GPLc,2017,9, +82,GPLc,2017,10, +82,GPLc,2017,11, +82,GPLc,2017,12, +82,GPLc,2018,1, +82,GPLc,2018,2, +82,GPLc,2018,3, +82,GPLc,2018,4, +82,GPLc,2018,5, +82,GPLc,2018,6, +82,GPLc,2018,7, +82,GPLc,2018,8, +82,GPLc,2018,9, +82,GPLc,2018,10, +82,GPLc,2018,11, +82,GPLc,2018,12, +82,GPLc,2019,1, +82,GPLc,2019,2, +82,GPLc,2019,3, +82,GPLc,2019,4, +82,GPLc,2019,5, +82,GPLc,2019,6, +82,GPLc,2019,7, +82,GPLc,2019,8, +82,GPLc,2019,9, +82,GPLc,2019,10, +82,GPLc,2019,11, +82,GPLc,2019,12, +82,GPLc,2020,1, +82,GPLc,2020,2, +82,GPLc,2020,3, +82,GPLc,2020,4, +82,GPLc,2020,5, +82,GPLc,2020,6, +82,GPLc,2020,7, +82,GPLc,2020,8, +82,GPLc,2020,9, +82,GPLc,2020,10, +82,GPLc,2020,11, +82,GPLc,2020,12, +82,GPLc,2021,1, +82,GPLc,2021,2, +82,GPLc,2021,3, +82,GPLc,2021,4, +82,GPLc,2021,5, +82,GPLc,2021,6, +82,GPLc,2021,7, +82,GPLc,2021,8, +82,GPLc,2021,9, +82,GPLc,2021,10, +82,GPLc,2021,11, +82,GPLc,2021,12, +82,GPLc,2022,1, +82,GPLc,2022,2, +82,GPLc,2022,3, +82,GPLc,2022,4, +82,GPLc,2022,5, +82,GPLc,2022,6, +82,GPLc,2022,7, +82,GPLc,2022,8, +82,GPLc,2022,9, +82,GPLc,2022,10, +82,GPLc,2022,11, +82,GPLc,2022,12, +82,GPLc,2023,1, +82,GPLc,2023,2, +82,GPLc,2023,3, +82,GPLc,2023,4, +82,GPLc,2023,5, +82,GPLc,2023,6, +82,GPLc,2023,7, +82,GPLc,2023,8, +82,GPLc,2023,9, +82,GPLc,2023,10, +82,GPLc,2023,11, +82,GPLc,2023,12, +82,GPLc,2024,1, +82,GPLc,2024,2, +82,GPLc,2024,3, +82,GPLc,2024,4, +82,GPLc,2024,5, +82,GPLc,2024,6, +82,GPLc,2024,7, +82,GPLc,2024,8, +82,GPLc,2024,9, +82,GPLc,2024,10, +82,GPLc,2024,11, +82,GPLc,2024,12, +82,E85,2007,7,82.86 +82,E85,2007,9,82.5 +82,E85,2007,10,82.63 +82,E85,2007,11,83.01 +82,E85,2007,12,84.55 +82,E85,2007,6,82.94 +82,E85,2007,8,82.81 +82,E85,2007,4,83.0 +82,E85,2007,5,83.0 +82,E85,2007,1, +82,E85,2007,2, +82,E85,2007,3, +82,E85,2008,3,87.43 +82,E85,2008,6,88.28 +82,E85,2008,7,90.0 +82,E85,2008,8,91.85 +82,E85,2008,12,90.85 +82,E85,2008,9,92.16 +82,E85,2008,10,92.17 +82,E85,2008,11,91.42 +82,E85,2008,5,87.93 +82,E85,2008,1,85.49 +82,E85,2008,2,87.14 +82,E85,2008,4,87.31 +82,E85,2009,7,95.3 +82,E85,2009,8,101.04 +82,E85,2009,10,105.44 +82,E85,2009,11,107.09 +82,E85,2009,12,108.12 +82,E85,2009,3,87.08 +82,E85,2009,9,104.42 +82,E85,2009,6,88.39 +82,E85,2009,1,83.54 +82,E85,2009,4,88.5 +82,E85,2009,5,87.96 +82,E85,2009,2,82.36 +82,E85,2010,1,104.22 +82,E85,2010,2,102.44 +82,E85,2010,4,104.99 +82,E85,2010,6,109.75 +82,E85,2010,3,103.04 +82,E85,2010,7,110.47 +82,E85,2010,8,110.09 +82,E85,2010,12,115.35 +82,E85,2010,11,113.65 +82,E85,2010,5,106.38 +82,E85,2010,10,113.4 +82,E85,2010,9,112.3 +82,E85,2011,7,90.98 +82,E85,2011,1,88.99 +82,E85,2011,3,89.31 +82,E85,2011,5,90.41 +82,E85,2011,6,90.76 +82,E85,2011,2,88.7 +82,E85,2011,8,91.6 +82,E85,2011,9,91.6 +82,E85,2011,4,90.03 +82,E85,2011,10,91.52 +82,E85,2011,11,91.52 +82,E85,2011,12,91.51 +82,E85,2012,7,93.49 +82,E85,2012,8,94.03 +82,E85,2012,9,92.9 +82,E85,2012,10,93.57 +82,E85,2012,11,94.38 +82,E85,2012,1,93.45 +82,E85,2012,3,94.03 +82,E85,2012,2,93.77 +82,E85,2012,5,94.13 +82,E85,2012,12,94.97 +82,E85,2012,4,94.41 +82,E85,2012,6,93.82 +82,E85,2013,1,95.31 +82,E85,2013,2,95.94 +82,E85,2013,7,94.54 +82,E85,2013,8,94.68 +82,E85,2013,10,93.82 +82,E85,2013,6,95.18 +82,E85,2013,9,94.87 +82,E85,2013,11,93.38 +82,E85,2013,12,93.28 +82,E85,2013,3,96.82 +82,E85,2013,5,95.37 +82,E85,2013,4,96.46 +82,E85,2014,8,92.72 +82,E85,2014,7,93.05 +82,E85,2014,9,92.44 +82,E85,2014,10,91.97 +82,E85,2014,12,92.18 +82,E85,2014,2,92.74 +82,E85,2014,3,93.76 +82,E85,2014,4,93.48 +82,E85,2014,5,93.64 +82,E85,2014,6,93.05 +82,E85,2014,1,92.93 +82,E85,2014,11,91.92 +82,E85,2015,8,93.86 +82,E85,2015,10,94.68 +82,E85,2015,11,94.68 +82,E85,2015,12,94.36 +82,E85,2015,2,94.55 +82,E85,2015,1,91.39 +82,E85,2015,6,94.82 +82,E85,2015,7,93.44 +82,E85,2015,9,93.94 +82,E85,2015,3,94.28 +82,E85,2015,4,94.89 +82,E85,2015,5,95.24 +82,E85,2016,1, +82,E85,2016,2, +82,E85,2016,3, +82,E85,2016,4, +82,E85,2016,5, +82,E85,2016,6, +82,E85,2016,7, +82,E85,2016,8, +82,E85,2016,9, +82,E85,2016,10, +82,E85,2016,11, +82,E85,2016,12, +82,E85,2017,1, +82,E85,2017,2, +82,E85,2017,3, +82,E85,2017,4, +82,E85,2017,5, +82,E85,2017,6, +82,E85,2017,7, +82,E85,2017,8, +82,E85,2017,9, +82,E85,2017,10, +82,E85,2017,11, +82,E85,2017,12, +82,E85,2018,1, +82,E85,2018,2, +82,E85,2018,3, +82,E85,2018,4, +82,E85,2018,5, +82,E85,2018,6, +82,E85,2018,7, +82,E85,2018,8, +82,E85,2018,9, +82,E85,2018,10, +82,E85,2018,11, +82,E85,2018,12, +82,E85,2019,1, +82,E85,2019,2, +82,E85,2019,3, +82,E85,2019,4, +82,E85,2019,5, +82,E85,2019,6, +82,E85,2019,7, +82,E85,2019,8, +82,E85,2019,9, +82,E85,2019,10, +82,E85,2019,11, +82,E85,2019,12, +82,E85,2020,1, +82,E85,2020,2, +82,E85,2020,3, +82,E85,2020,4, +82,E85,2020,5, +82,E85,2020,6, +82,E85,2020,7, +82,E85,2020,8, +82,E85,2020,9, +82,E85,2020,10, +82,E85,2020,11, +82,E85,2020,12, +82,E85,2021,1, +82,E85,2021,2, +82,E85,2021,3, +82,E85,2021,4, +82,E85,2021,5, +82,E85,2021,6, +82,E85,2021,7, +82,E85,2021,8, +82,E85,2021,9, +82,E85,2021,10, +82,E85,2021,11, +82,E85,2021,12, +82,E85,2022,1, +82,E85,2022,2, +82,E85,2022,3, +82,E85,2022,4, +82,E85,2022,5, +82,E85,2022,6, +82,E85,2022,7, +82,E85,2022,8, +82,E85,2022,9, +82,E85,2022,10, +82,E85,2022,11, +82,E85,2022,12, +82,E85,2023,1, +82,E85,2023,2, +82,E85,2023,3, +82,E85,2023,4, +82,E85,2023,5, +82,E85,2023,6, +82,E85,2023,7, +82,E85,2023,8, +82,E85,2023,9, +82,E85,2023,10, +82,E85,2023,11, +82,E85,2023,12, +82,E85,2024,1, +82,E85,2024,2, +82,E85,2024,3, +82,E85,2024,4, +82,E85,2024,5, +82,E85,2024,6, +82,E85,2024,7, +82,E85,2024,8, +82,E85,2024,9, +82,E85,2024,10, +82,E85,2024,11, +82,E85,2024,12, +82,E10,2009,4,116.45 +82,E10,2009,5,121.23 +82,E10,2009,6,126.71 +82,E10,2009,7,124.26 +82,E10,2009,8,126.01 +82,E10,2009,9,123.76 +82,E10,2009,10,123.04 +82,E10,2009,11,125.85 +82,E10,2009,12,125.43 +82,E10,2009,1, +82,E10,2009,2, +82,E10,2009,3, +82,E10,2010,1,129.79 +82,E10,2010,2,130.84 +82,E10,2010,3,134.89 +82,E10,2010,4,137.93 +82,E10,2010,5,138.28 +82,E10,2010,6,136.95 +82,E10,2010,7,135.39 +82,E10,2010,8,134.32 +82,E10,2010,9,134.02 +82,E10,2010,10,135.38 +82,E10,2010,11,136.87 +82,E10,2010,12,141.12 +82,E10,2011,1,145.64 +82,E10,2011,2,146.5 +82,E10,2011,3,150.47 +82,E10,2011,4,152.33 +82,E10,2011,5,152.1 +82,E10,2011,6,150.63 +82,E10,2011,7,151.44 +82,E10,2011,8,150.8 +82,E10,2011,9,152.22 +82,E10,2011,10,150.43 +82,E10,2011,11,149.69 +82,E10,2011,12,149.05 +82,E10,2012,1,154.15 +82,E10,2012,2,158.36 +82,E10,2012,3,163.24 +82,E10,2012,4,166.04 +82,E10,2012,5,159.08 +82,E10,2012,6,152.94 +82,E10,2012,7,154.86 +82,E10,2012,8,161.2 +82,E10,2012,9,156.67 +82,E10,2012,10,153.49 +82,E10,2012,11,147.93 +82,E10,2012,12,149.53 +82,E10,2013,1,155.21 +82,E10,2013,2,161.83 +82,E10,2013,3,160.18 +82,E10,2013,4,156.07 +82,E10,2013,5,153.27 +82,E10,2013,6,154.32 +82,E10,2013,7,155.37 +82,E10,2013,8,155.6 +82,E10,2013,9,154.61 +82,E10,2013,10,150.35 +82,E10,2013,11,149.44 +82,E10,2013,12,151.08 +82,E10,2014,3,152.08 +82,E10,2014,6,153.55 +82,E10,2014,7,154.13 +82,E10,2014,8,152.1 +82,E10,2014,9,150.77 +82,E10,2014,10,148.14 +82,E10,2014,11,144.39 +82,E10,2014,12,136.39 +82,E10,2014,1,150.72 +82,E10,2014,2,151.75 +82,E10,2014,4,152.69 +82,E10,2014,5,152.89 +82,E10,2015,2,135.14 +82,E10,2015,1,130.39 +82,E10,2015,3,140.35 +82,E10,2015,4,141.49 +82,E10,2015,6,144.83 +82,E10,2015,7,143.9 +82,E10,2015,8,137.63 +82,E10,2015,9,132.16 +82,E10,2015,10,131.02 +82,E10,2015,11,130.72 +82,E10,2015,12,129.45 +82,E10,2015,5,144.21 +82,E10,2016,1, +82,E10,2016,2, +82,E10,2016,3, +82,E10,2016,4, +82,E10,2016,5, +82,E10,2016,6, +82,E10,2016,7, +82,E10,2016,8, +82,E10,2016,9, +82,E10,2016,10, +82,E10,2016,11, +82,E10,2016,12, +82,E10,2017,1, +82,E10,2017,2, +82,E10,2017,3, +82,E10,2017,4, +82,E10,2017,5, +82,E10,2017,6, +82,E10,2017,7, +82,E10,2017,8, +82,E10,2017,9, +82,E10,2017,10, +82,E10,2017,11, +82,E10,2017,12, +82,E10,2018,1, +82,E10,2018,2, +82,E10,2018,3, +82,E10,2018,4, +82,E10,2018,5, +82,E10,2018,6, +82,E10,2018,7, +82,E10,2018,8, +82,E10,2018,9, +82,E10,2018,10, +82,E10,2018,11, +82,E10,2018,12, +82,E10,2019,1, +82,E10,2019,2, +82,E10,2019,3, +82,E10,2019,4, +82,E10,2019,5, +82,E10,2019,6, +82,E10,2019,7, +82,E10,2019,8, +82,E10,2019,9, +82,E10,2019,10, +82,E10,2019,11, +82,E10,2019,12, +82,E10,2020,1, +82,E10,2020,2, +82,E10,2020,3, +82,E10,2020,4, +82,E10,2020,5, +82,E10,2020,6, +82,E10,2020,7, +82,E10,2020,8, +82,E10,2020,9, +82,E10,2020,10, +82,E10,2020,11, +82,E10,2020,12, +82,E10,2021,1, +82,E10,2021,2, +82,E10,2021,3, +82,E10,2021,4, +82,E10,2021,5, +82,E10,2021,6, +82,E10,2021,7, +82,E10,2021,8, +82,E10,2021,9, +82,E10,2021,10, +82,E10,2021,11, +82,E10,2021,12, +82,E10,2022,1, +82,E10,2022,2, +82,E10,2022,3, +82,E10,2022,4, +82,E10,2022,5, +82,E10,2022,6, +82,E10,2022,7, +82,E10,2022,8, +82,E10,2022,9, +82,E10,2022,10, +82,E10,2022,11, +82,E10,2022,12, +82,E10,2023,1, +82,E10,2023,2, +82,E10,2023,3, +82,E10,2023,4, +82,E10,2023,5, +82,E10,2023,6, +82,E10,2023,7, +82,E10,2023,8, +82,E10,2023,9, +82,E10,2023,10, +82,E10,2023,11, +82,E10,2023,12, +82,E10,2024,1, +82,E10,2024,2, +82,E10,2024,3, +82,E10,2024,4, +82,E10,2024,5, +82,E10,2024,6, +82,E10,2024,7, +82,E10,2024,8, +82,E10,2024,9, +82,E10,2024,10, +82,E10,2024,11, +82,E10,2024,12, +82,SP98,2013,6,158.41 +82,SP98,2013,7,160.65 +82,SP98,2013,8,161.07 +82,SP98,2013,9,160.47 +82,SP98,2013,10,156.17 +82,SP98,2013,11,155.12 +82,SP98,2013,12,156.8 +82,SP98,2013,1, +82,SP98,2013,2, +82,SP98,2013,3, +82,SP98,2013,4, +82,SP98,2013,5, +82,SP98,2014,1,156.86 +82,SP98,2014,2,157.88 +82,SP98,2014,3,158.32 +82,SP98,2014,4,158.84 +82,SP98,2014,5,159.16 +82,SP98,2014,6,159.69 +82,SP98,2014,7,160.32 +82,SP98,2014,8,158.32 +82,SP98,2014,9,157.04 +82,SP98,2014,10,154.71 +82,SP98,2014,11,151.17 +82,SP98,2014,12,143.3 +82,SP98,2015,1,136.37 +82,SP98,2015,2,140.72 +82,SP98,2015,3,146.09 +82,SP98,2015,4,147.35 +82,SP98,2015,5,150.13 +82,SP98,2015,6,150.84 +82,SP98,2015,7,149.93 +82,SP98,2015,8,144.08 +82,SP98,2015,9,138.22 +82,SP98,2015,10,137.14 +82,SP98,2015,11,136.76 +82,SP98,2015,12,135.57 +82,SP98,2016,1, +82,SP98,2016,2, +82,SP98,2016,3, +82,SP98,2016,4, +82,SP98,2016,5, +82,SP98,2016,6, +82,SP98,2016,7, +82,SP98,2016,8, +82,SP98,2016,9, +82,SP98,2016,10, +82,SP98,2016,11, +82,SP98,2016,12, +82,SP98,2017,1, +82,SP98,2017,2, +82,SP98,2017,3, +82,SP98,2017,4, +82,SP98,2017,5, +82,SP98,2017,6, +82,SP98,2017,7, +82,SP98,2017,8, +82,SP98,2017,9, +82,SP98,2017,10, +82,SP98,2017,11, +82,SP98,2017,12, +82,SP98,2018,1, +82,SP98,2018,2, +82,SP98,2018,3, +82,SP98,2018,4, +82,SP98,2018,5, +82,SP98,2018,6, +82,SP98,2018,7, +82,SP98,2018,8, +82,SP98,2018,9, +82,SP98,2018,10, +82,SP98,2018,11, +82,SP98,2018,12, +82,SP98,2019,1, +82,SP98,2019,2, +82,SP98,2019,3, +82,SP98,2019,4, +82,SP98,2019,5, +82,SP98,2019,6, +82,SP98,2019,7, +82,SP98,2019,8, +82,SP98,2019,9, +82,SP98,2019,10, +82,SP98,2019,11, +82,SP98,2019,12, +82,SP98,2020,1, +82,SP98,2020,2, +82,SP98,2020,3, +82,SP98,2020,4, +82,SP98,2020,5, +82,SP98,2020,6, +82,SP98,2020,7, +82,SP98,2020,8, +82,SP98,2020,9, +82,SP98,2020,10, +82,SP98,2020,11, +82,SP98,2020,12, +82,SP98,2021,1, +82,SP98,2021,2, +82,SP98,2021,3, +82,SP98,2021,4, +82,SP98,2021,5, +82,SP98,2021,6, +82,SP98,2021,7, +82,SP98,2021,8, +82,SP98,2021,9, +82,SP98,2021,10, +82,SP98,2021,11, +82,SP98,2021,12, +82,SP98,2022,1, +82,SP98,2022,2, +82,SP98,2022,3, +82,SP98,2022,4, +82,SP98,2022,5, +82,SP98,2022,6, +82,SP98,2022,7, +82,SP98,2022,8, +82,SP98,2022,9, +82,SP98,2022,10, +82,SP98,2022,11, +82,SP98,2022,12, +82,SP98,2023,1, +82,SP98,2023,2, +82,SP98,2023,3, +82,SP98,2023,4, +82,SP98,2023,5, +82,SP98,2023,6, +82,SP98,2023,7, +82,SP98,2023,8, +82,SP98,2023,9, +82,SP98,2023,10, +82,SP98,2023,11, +82,SP98,2023,12, +82,SP98,2024,1, +82,SP98,2024,2, +82,SP98,2024,3, +82,SP98,2024,4, +82,SP98,2024,5, +82,SP98,2024,6, +82,SP98,2024,7, +82,SP98,2024,8, +82,SP98,2024,9, +82,SP98,2024,10, +82,SP98,2024,11, +82,SP98,2024,12, +22,Gazole,2007,1,101.71 +22,Gazole,2007,2,102.3 +22,Gazole,2007,4,106.08 +22,Gazole,2007,5,106.64 +22,Gazole,2007,6,108.32 +22,Gazole,2007,7,109.41 +22,Gazole,2007,8,109.44 +22,Gazole,2007,9,110.94 +22,Gazole,2007,10,112.65 +22,Gazole,2007,11,120.34 +22,Gazole,2007,12,120.92 +22,Gazole,2007,3,104.04 +22,Gazole,2008,1,120.07 +22,Gazole,2008,2,120.56 +22,Gazole,2008,3,126.22 +22,Gazole,2008,4,129.03 +22,Gazole,2008,5,139.11 +22,Gazole,2008,6,144.21 +22,Gazole,2008,7,143.28 +22,Gazole,2008,8,134.71 +22,Gazole,2008,9,131.54 +22,Gazole,2008,10,123.29 +22,Gazole,2008,11,112.95 +22,Gazole,2008,12,101.32 +22,Gazole,2009,1,98.73 +22,Gazole,2009,2,97.34 +22,Gazole,2009,3,94.86 +22,Gazole,2009,4,97.29 +22,Gazole,2009,5,97.34 +22,Gazole,2009,6,102.12 +22,Gazole,2009,7,100.45 +22,Gazole,2009,8,103.57 +22,Gazole,2009,9,101.68 +22,Gazole,2009,10,102.71 +22,Gazole,2009,11,104.83 +22,Gazole,2009,12,104.17 +22,Gazole,2010,1,108.3 +22,Gazole,2010,2,108.65 +22,Gazole,2010,3,112.36 +22,Gazole,2010,4,116.24 +22,Gazole,2010,5,117.51 +22,Gazole,2010,6,117.08 +22,Gazole,2010,7,114.74 +22,Gazole,2010,8,114.84 +22,Gazole,2010,9,115.39 +22,Gazole,2010,10,117.55 +22,Gazole,2010,11,118.76 +22,Gazole,2010,12,122.91 +22,Gazole,2011,1,129.36 +22,Gazole,2011,2,132.31 +22,Gazole,2011,3,137.91 +22,Gazole,2011,4,138.55 +22,Gazole,2011,5,134.57 +22,Gazole,2011,6,133.83 +22,Gazole,2011,7,134.57 +22,Gazole,2011,8,133.14 +22,Gazole,2011,9,135.06 +22,Gazole,2011,10,136.48 +22,Gazole,2011,11,139.95 +22,Gazole,2011,12,139.0 +22,Gazole,2012,1,142.15 +22,Gazole,2012,2,143.54 +22,Gazole,2012,3,146.01 +22,Gazole,2012,4,145.03 +22,Gazole,2012,5,141.68 +22,Gazole,2012,6,135.96 +22,Gazole,2012,7,138.92 +22,Gazole,2012,8,144.87 +22,Gazole,2012,9,141.26 +22,Gazole,2012,10,141.15 +22,Gazole,2012,11,139.07 +22,Gazole,2012,12,137.7 +22,Gazole,2013,1,139.41 +22,Gazole,2013,2,142.69 +22,Gazole,2013,3,141.25 +22,Gazole,2013,4,137.12 +22,Gazole,2013,5,134.76 +22,Gazole,2013,6,134.52 +22,Gazole,2013,7,136.5 +22,Gazole,2013,8,137.02 +22,Gazole,2013,9,138.51 +22,Gazole,2013,10,134.71 +22,Gazole,2013,11,133.65 +22,Gazole,2013,12,135.3 +22,Gazole,2014,1,133.88 +22,Gazole,2014,2,134.24 +22,Gazole,2014,3,132.85 +22,Gazole,2014,4,132.56 +22,Gazole,2014,6,132.7 +22,Gazole,2014,7,132.2 +22,Gazole,2014,8,131.57 +22,Gazole,2014,9,130.97 +22,Gazole,2014,10,127.7 +22,Gazole,2014,11,124.94 +22,Gazole,2014,12,115.81 +22,Gazole,2014,5,132.33 +22,Gazole,2015,1,113.01 +22,Gazole,2015,2,118.95 +22,Gazole,2015,3,122.2 +22,Gazole,2015,4,121.87 +22,Gazole,2015,5,124.72 +22,Gazole,2015,6,122.87 +22,Gazole,2015,7,119.29 +22,Gazole,2015,8,113.57 +22,Gazole,2015,9,111.94 +22,Gazole,2015,10,111.63 +22,Gazole,2015,11,111.22 +22,Gazole,2015,12,104.45 +22,Gazole,2016,1, +22,Gazole,2016,2, +22,Gazole,2016,3, +22,Gazole,2016,4, +22,Gazole,2016,5, +22,Gazole,2016,6, +22,Gazole,2016,7, +22,Gazole,2016,8, +22,Gazole,2016,9, +22,Gazole,2016,10, +22,Gazole,2016,11, +22,Gazole,2016,12, +22,Gazole,2017,1, +22,Gazole,2017,2, +22,Gazole,2017,3, +22,Gazole,2017,4, +22,Gazole,2017,5, +22,Gazole,2017,6, +22,Gazole,2017,7, +22,Gazole,2017,8, +22,Gazole,2017,9, +22,Gazole,2017,10, +22,Gazole,2017,11, +22,Gazole,2017,12, +22,Gazole,2018,1, +22,Gazole,2018,2, +22,Gazole,2018,3, +22,Gazole,2018,4, +22,Gazole,2018,5, +22,Gazole,2018,6, +22,Gazole,2018,7, +22,Gazole,2018,8, +22,Gazole,2018,9, +22,Gazole,2018,10, +22,Gazole,2018,11, +22,Gazole,2018,12, +22,Gazole,2019,1, +22,Gazole,2019,2, +22,Gazole,2019,3, +22,Gazole,2019,4, +22,Gazole,2019,5, +22,Gazole,2019,6, +22,Gazole,2019,7, +22,Gazole,2019,8, +22,Gazole,2019,9, +22,Gazole,2019,10, +22,Gazole,2019,11, +22,Gazole,2019,12, +22,Gazole,2020,1, +22,Gazole,2020,2, +22,Gazole,2020,3, +22,Gazole,2020,4, +22,Gazole,2020,5, +22,Gazole,2020,6, +22,Gazole,2020,7, +22,Gazole,2020,8, +22,Gazole,2020,9, +22,Gazole,2020,10, +22,Gazole,2020,11, +22,Gazole,2020,12, +22,Gazole,2021,1, +22,Gazole,2021,2, +22,Gazole,2021,3, +22,Gazole,2021,4, +22,Gazole,2021,5, +22,Gazole,2021,6, +22,Gazole,2021,7, +22,Gazole,2021,8, +22,Gazole,2021,9, +22,Gazole,2021,10, +22,Gazole,2021,11, +22,Gazole,2021,12, +22,Gazole,2022,1, +22,Gazole,2022,2, +22,Gazole,2022,3, +22,Gazole,2022,4, +22,Gazole,2022,5, +22,Gazole,2022,6, +22,Gazole,2022,7, +22,Gazole,2022,8, +22,Gazole,2022,9, +22,Gazole,2022,10, +22,Gazole,2022,11, +22,Gazole,2022,12, +22,Gazole,2023,1, +22,Gazole,2023,2, +22,Gazole,2023,3, +22,Gazole,2023,4, +22,Gazole,2023,5, +22,Gazole,2023,6, +22,Gazole,2023,7, +22,Gazole,2023,8, +22,Gazole,2023,9, +22,Gazole,2023,10, +22,Gazole,2023,11, +22,Gazole,2023,12, +22,Gazole,2024,1, +22,Gazole,2024,2, +22,Gazole,2024,3, +22,Gazole,2024,4, +22,Gazole,2024,5, +22,Gazole,2024,6, +22,Gazole,2024,7, +22,Gazole,2024,8, +22,Gazole,2024,9, +22,Gazole,2024,10, +22,Gazole,2024,11, +22,Gazole,2024,12, +22,SP95,2007,1,118.67 +22,SP95,2007,4,129.09 +22,SP95,2007,5,133.14 +22,SP95,2007,6,133.55 +22,SP95,2007,7,133.04 +22,SP95,2007,8,129.5 +22,SP95,2007,9,129.88 +22,SP95,2007,10,129.84 +22,SP95,2007,11,135.17 +22,SP95,2007,12,134.75 +22,SP95,2007,2,119.69 +22,SP95,2007,3,124.59 +22,SP95,2008,1,136.43 +22,SP95,2008,2,136.36 +22,SP95,2008,3,138.2 +22,SP95,2008,4,139.8 +22,SP95,2008,5,144.86 +22,SP95,2008,6,150.0 +22,SP95,2008,7,148.98 +22,SP95,2008,8,143.99 +22,SP95,2008,9,143.22 +22,SP95,2008,10,133.27 +22,SP95,2008,11,119.46 +22,SP95,2008,12,110.92 +22,SP95,2009,1,110.7 +22,SP95,2009,2,115.18 +22,SP95,2009,3,115.42 +22,SP95,2009,4,117.71 +22,SP95,2009,5,120.59 +22,SP95,2009,6,125.39 +22,SP95,2009,7,122.72 +22,SP95,2009,8,125.24 +22,SP95,2009,9,123.29 +22,SP95,2009,10,122.72 +22,SP95,2009,11,125.22 +22,SP95,2009,12,124.64 +22,SP95,2010,1,129.82 +22,SP95,2010,2,131.17 +22,SP95,2010,3,135.28 +22,SP95,2010,4,137.16 +22,SP95,2010,5,137.12 +22,SP95,2010,6,136.04 +22,SP95,2010,7,133.71 +22,SP95,2010,8,133.34 +22,SP95,2010,9,133.16 +22,SP95,2010,10,134.76 +22,SP95,2010,11,136.24 +22,SP95,2010,12,141.26 +22,SP95,2011,1,146.3 +22,SP95,2011,2,146.98 +22,SP95,2011,3,151.44 +22,SP95,2011,4,154.11 +22,SP95,2011,5,154.24 +22,SP95,2011,6,151.23 +22,SP95,2011,7,151.07 +22,SP95,2011,8,150.23 +22,SP95,2011,9,152.32 +22,SP95,2011,10,150.32 +22,SP95,2011,11,149.55 +22,SP95,2011,12,149.85 +22,SP95,2012,1,155.37 +22,SP95,2012,2,159.44 +22,SP95,2012,3,164.27 +22,SP95,2012,4,166.3 +22,SP95,2012,5,160.14 +22,SP95,2012,6,155.1 +22,SP95,2012,7,156.48 +22,SP95,2012,8,162.28 +22,SP95,2012,9,159.32 +22,SP95,2012,10,156.67 +22,SP95,2012,11,151.46 +22,SP95,2012,12,151.94 +22,SP95,2013,1,155.86 +22,SP95,2013,2,161.38 +22,SP95,2013,3,161.09 +22,SP95,2013,4,158.31 +22,SP95,2013,5,154.84 +22,SP95,2013,6,154.98 +22,SP95,2013,7,156.19 +22,SP95,2013,8,156.62 +22,SP95,2013,9,155.6 +22,SP95,2013,10,150.93 +22,SP95,2013,11,150.18 +22,SP95,2013,12,151.65 +22,SP95,2014,1,150.31 +22,SP95,2014,2,151.29 +22,SP95,2014,3,151.28 +22,SP95,2014,4,152.35 +22,SP95,2014,5,153.05 +22,SP95,2014,6,154.52 +22,SP95,2014,7,154.82 +22,SP95,2014,8,151.65 +22,SP95,2014,9,151.01 +22,SP95,2014,10,148.07 +22,SP95,2014,11,143.99 +22,SP95,2014,12,135.2 +22,SP95,2015,1,128.12 +22,SP95,2015,2,133.82 +22,SP95,2015,3,139.25 +22,SP95,2015,4,141.87 +22,SP95,2015,5,144.75 +22,SP95,2015,6,145.41 +22,SP95,2015,7,144.84 +22,SP95,2015,8,139.41 +22,SP95,2015,9,132.23 +22,SP95,2015,10,130.57 +22,SP95,2015,11,130.88 +22,SP95,2015,12,128.46 +22,SP95,2016,1, +22,SP95,2016,2, +22,SP95,2016,3, +22,SP95,2016,4, +22,SP95,2016,5, +22,SP95,2016,6, +22,SP95,2016,7, +22,SP95,2016,8, +22,SP95,2016,9, +22,SP95,2016,10, +22,SP95,2016,11, +22,SP95,2016,12, +22,SP95,2017,1, +22,SP95,2017,2, +22,SP95,2017,3, +22,SP95,2017,4, +22,SP95,2017,5, +22,SP95,2017,6, +22,SP95,2017,7, +22,SP95,2017,8, +22,SP95,2017,9, +22,SP95,2017,10, +22,SP95,2017,11, +22,SP95,2017,12, +22,SP95,2018,1, +22,SP95,2018,2, +22,SP95,2018,3, +22,SP95,2018,4, +22,SP95,2018,5, +22,SP95,2018,6, +22,SP95,2018,7, +22,SP95,2018,8, +22,SP95,2018,9, +22,SP95,2018,10, +22,SP95,2018,11, +22,SP95,2018,12, +22,SP95,2019,1, +22,SP95,2019,2, +22,SP95,2019,3, +22,SP95,2019,4, +22,SP95,2019,5, +22,SP95,2019,6, +22,SP95,2019,7, +22,SP95,2019,8, +22,SP95,2019,9, +22,SP95,2019,10, +22,SP95,2019,11, +22,SP95,2019,12, +22,SP95,2020,1, +22,SP95,2020,2, +22,SP95,2020,3, +22,SP95,2020,4, +22,SP95,2020,5, +22,SP95,2020,6, +22,SP95,2020,7, +22,SP95,2020,8, +22,SP95,2020,9, +22,SP95,2020,10, +22,SP95,2020,11, +22,SP95,2020,12, +22,SP95,2021,1, +22,SP95,2021,2, +22,SP95,2021,3, +22,SP95,2021,4, +22,SP95,2021,5, +22,SP95,2021,6, +22,SP95,2021,7, +22,SP95,2021,8, +22,SP95,2021,9, +22,SP95,2021,10, +22,SP95,2021,11, +22,SP95,2021,12, +22,SP95,2022,1, +22,SP95,2022,2, +22,SP95,2022,3, +22,SP95,2022,4, +22,SP95,2022,5, +22,SP95,2022,6, +22,SP95,2022,7, +22,SP95,2022,8, +22,SP95,2022,9, +22,SP95,2022,10, +22,SP95,2022,11, +22,SP95,2022,12, +22,SP95,2023,1, +22,SP95,2023,2, +22,SP95,2023,3, +22,SP95,2023,4, +22,SP95,2023,5, +22,SP95,2023,6, +22,SP95,2023,7, +22,SP95,2023,8, +22,SP95,2023,9, +22,SP95,2023,10, +22,SP95,2023,11, +22,SP95,2023,12, +22,SP95,2024,1, +22,SP95,2024,2, +22,SP95,2024,3, +22,SP95,2024,4, +22,SP95,2024,5, +22,SP95,2024,6, +22,SP95,2024,7, +22,SP95,2024,8, +22,SP95,2024,9, +22,SP95,2024,10, +22,SP95,2024,11, +22,SP95,2024,12, +22,E85,2007,3,79.3 +22,E85,2007,5,79.59 +22,E85,2007,7,83.01 +22,E85,2007,8,82.93 +22,E85,2007,6,80.98 +22,E85,2007,11,82.48 +22,E85,2007,12,82.45 +22,E85,2007,4,79.35 +22,E85,2007,10,83.14 +22,E85,2007,2,79.3 +22,E85,2007,1, +22,E85,2007,9,83.07 +22,E85,2008,1,80.78 +22,E85,2008,5,82.69 +22,E85,2008,7,84.46 +22,E85,2008,8,84.67 +22,E85,2008,9,85.18 +22,E85,2008,2,80.7 +22,E85,2008,10,84.75 +22,E85,2008,11,83.57 +22,E85,2008,12,82.24 +22,E85,2008,3,81.93 +22,E85,2008,4,82.23 +22,E85,2008,6,83.7 +22,E85,2009,3,78.51 +22,E85,2009,7,92.54 +22,E85,2009,8,96.7 +22,E85,2009,2,78.61 +22,E85,2009,4,78.3 +22,E85,2009,6,82.05 +22,E85,2009,1,78.45 +22,E85,2009,5,78.98 +22,E85,2009,9,96.89 +22,E85,2009,10,96.52 +22,E85,2009,11,96.52 +22,E85,2009,12,96.46 +22,E85,2010,1,85.73 +22,E85,2010,7,100.22 +22,E85,2010,8,100.83 +22,E85,2010,10,102.52 +22,E85,2010,12,105.18 +22,E85,2010,5,96.19 +22,E85,2010,3,89.59 +22,E85,2010,4,94.4 +22,E85,2010,11,104.03 +22,E85,2010,2,82.21 +22,E85,2010,6,98.33 +22,E85,2010,9,101.35 +22,E85,2011,2,85.59 +22,E85,2011,4,88.86 +22,E85,2011,7,88.86 +22,E85,2011,8,88.59 +22,E85,2011,9,88.7 +22,E85,2011,1,83.67 +22,E85,2011,3,87.81 +22,E85,2011,5,89.38 +22,E85,2011,6,88.92 +22,E85,2011,10,88.9 +22,E85,2011,11,89.16 +22,E85,2011,12,91.01 +22,E85,2012,1,91.6 +22,E85,2012,2,92.6 +22,E85,2012,4,93.27 +22,E85,2012,5,92.53 +22,E85,2012,6,91.68 +22,E85,2012,7,91.36 +22,E85,2012,8,92.05 +22,E85,2012,9,91.75 +22,E85,2012,10,92.03 +22,E85,2012,11,93.19 +22,E85,2012,3,92.13 +22,E85,2012,12,94.42 +22,E85,2013,4,93.02 +22,E85,2013,5,92.0 +22,E85,2013,6,92.17 +22,E85,2013,7,91.08 +22,E85,2013,8,90.69 +22,E85,2013,10,89.56 +22,E85,2013,12,88.36 +22,E85,2013,1,92.7 +22,E85,2013,11,88.73 +22,E85,2013,2,93.73 +22,E85,2013,3,93.95 +22,E85,2013,9,90.8 +22,E85,2014,1,87.19 +22,E85,2014,3,86.49 +22,E85,2014,4,85.67 +22,E85,2014,5,85.8 +22,E85,2014,6,86.31 +22,E85,2014,7,84.48 +22,E85,2014,8,82.24 +22,E85,2014,9,82.09 +22,E85,2014,10,81.94 +22,E85,2014,11,83.39 +22,E85,2014,2,86.88 +22,E85,2014,12,83.74 +22,E85,2015,2,80.35 +22,E85,2015,3,81.41 +22,E85,2015,7,76.97 +22,E85,2015,8,78.24 +22,E85,2015,10,73.25 +22,E85,2015,12,68.98 +22,E85,2015,9,77.6 +22,E85,2015,1,79.61 +22,E85,2015,11,69.09 +22,E85,2015,4,78.45 +22,E85,2015,5,78.52 +22,E85,2015,6,77.45 +22,E85,2016,1, +22,E85,2016,2, +22,E85,2016,3, +22,E85,2016,4, +22,E85,2016,5, +22,E85,2016,6, +22,E85,2016,7, +22,E85,2016,8, +22,E85,2016,9, +22,E85,2016,10, +22,E85,2016,11, +22,E85,2016,12, +22,E85,2017,1, +22,E85,2017,2, +22,E85,2017,3, +22,E85,2017,4, +22,E85,2017,5, +22,E85,2017,6, +22,E85,2017,7, +22,E85,2017,8, +22,E85,2017,9, +22,E85,2017,10, +22,E85,2017,11, +22,E85,2017,12, +22,E85,2018,1, +22,E85,2018,2, +22,E85,2018,3, +22,E85,2018,4, +22,E85,2018,5, +22,E85,2018,6, +22,E85,2018,7, +22,E85,2018,8, +22,E85,2018,9, +22,E85,2018,10, +22,E85,2018,11, +22,E85,2018,12, +22,E85,2019,1, +22,E85,2019,2, +22,E85,2019,3, +22,E85,2019,4, +22,E85,2019,5, +22,E85,2019,6, +22,E85,2019,7, +22,E85,2019,8, +22,E85,2019,9, +22,E85,2019,10, +22,E85,2019,11, +22,E85,2019,12, +22,E85,2020,1, +22,E85,2020,2, +22,E85,2020,3, +22,E85,2020,4, +22,E85,2020,5, +22,E85,2020,6, +22,E85,2020,7, +22,E85,2020,8, +22,E85,2020,9, +22,E85,2020,10, +22,E85,2020,11, +22,E85,2020,12, +22,E85,2021,1, +22,E85,2021,2, +22,E85,2021,3, +22,E85,2021,4, +22,E85,2021,5, +22,E85,2021,6, +22,E85,2021,7, +22,E85,2021,8, +22,E85,2021,9, +22,E85,2021,10, +22,E85,2021,11, +22,E85,2021,12, +22,E85,2022,1, +22,E85,2022,2, +22,E85,2022,3, +22,E85,2022,4, +22,E85,2022,5, +22,E85,2022,6, +22,E85,2022,7, +22,E85,2022,8, +22,E85,2022,9, +22,E85,2022,10, +22,E85,2022,11, +22,E85,2022,12, +22,E85,2023,1, +22,E85,2023,2, +22,E85,2023,3, +22,E85,2023,4, +22,E85,2023,5, +22,E85,2023,6, +22,E85,2023,7, +22,E85,2023,8, +22,E85,2023,9, +22,E85,2023,10, +22,E85,2023,11, +22,E85,2023,12, +22,E85,2024,1, +22,E85,2024,2, +22,E85,2024,3, +22,E85,2024,4, +22,E85,2024,5, +22,E85,2024,6, +22,E85,2024,7, +22,E85,2024,8, +22,E85,2024,9, +22,E85,2024,10, +22,E85,2024,11, +22,E85,2024,12, +22,GPLc,2007,11,74.51 +22,GPLc,2007,12,72.68 +22,GPLc,2007,1, +22,GPLc,2007,2, +22,GPLc,2007,3, +22,GPLc,2007,4, +22,GPLc,2007,5, +22,GPLc,2007,6, +22,GPLc,2007,7, +22,GPLc,2007,8, +22,GPLc,2007,9, +22,GPLc,2007,10, +22,GPLc,2008,1,75.0 +22,GPLc,2008,5,74.34 +22,GPLc,2008,6,75.76 +22,GPLc,2008,7,76.38 +22,GPLc,2008,8,77.82 +22,GPLc,2008,10,79.22 +22,GPLc,2008,11,78.53 +22,GPLc,2008,12,76.29 +22,GPLc,2008,4,73.81 +22,GPLc,2008,2,73.92 +22,GPLc,2008,3,74.15 +22,GPLc,2008,9,79.06 +22,GPLc,2009,3,68.18 +22,GPLc,2009,4,65.4 +22,GPLc,2009,7,64.12 +22,GPLc,2009,8,64.01 +22,GPLc,2009,12,65.88 +22,GPLc,2009,1,69.8 +22,GPLc,2009,5,64.28 +22,GPLc,2009,10,64.61 +22,GPLc,2009,6,64.4 +22,GPLc,2009,9,64.91 +22,GPLc,2009,11,65.1 +22,GPLc,2009,2,69.63 +22,GPLc,2010,1,70.02 +22,GPLc,2010,5,70.0 +22,GPLc,2010,7,73.2 +22,GPLc,2010,8,75.14 +22,GPLc,2010,9,77.05 +22,GPLc,2010,11,79.04 +22,GPLc,2010,3,68.82 +22,GPLc,2010,4,68.57 +22,GPLc,2010,6,71.25 +22,GPLc,2010,12,81.27 +22,GPLc,2010,10,78.33 +22,GPLc,2010,2,70.65 +22,GPLc,2011,3,81.79 +22,GPLc,2011,4,81.55 +22,GPLc,2011,7,83.38 +22,GPLc,2011,8,83.52 +22,GPLc,2011,9,83.5 +22,GPLc,2011,5,82.09 +22,GPLc,2011,2,82.17 +22,GPLc,2011,10,83.5 +22,GPLc,2011,12,83.67 +22,GPLc,2011,1,83.59 +22,GPLc,2011,6,83.17 +22,GPLc,2011,11,83.49 +22,GPLc,2012,2,87.12 +22,GPLc,2012,7,88.05 +22,GPLc,2012,12,89.55 +22,GPLc,2012,1,86.69 +22,GPLc,2012,3,88.91 +22,GPLc,2012,5,89.38 +22,GPLc,2012,11,88.97 +22,GPLc,2012,4,89.44 +22,GPLc,2012,6,89.05 +22,GPLc,2012,9,87.86 +22,GPLc,2012,10,88.39 +22,GPLc,2012,8,87.9 +22,GPLc,2013,10,87.34 +22,GPLc,2013,8,87.89 +22,GPLc,2013,11,87.26 +22,GPLc,2013,3,91.78 +22,GPLc,2013,6,89.1 +22,GPLc,2013,7,88.21 +22,GPLc,2013,9,87.73 +22,GPLc,2013,12,87.6 +22,GPLc,2013,1,91.64 +22,GPLc,2013,2,91.6 +22,GPLc,2013,4,91.02 +22,GPLc,2013,5,89.85 +22,GPLc,2014,4,87.9 +22,GPLc,2014,7,87.05 +22,GPLc,2014,8,87.04 +22,GPLc,2014,2,88.53 +22,GPLc,2014,12,85.96 +22,GPLc,2014,11,86.57 +22,GPLc,2014,3,88.39 +22,GPLc,2014,9,87.01 +22,GPLc,2014,1,88.87 +22,GPLc,2014,5,87.64 +22,GPLc,2014,10,86.99 +22,GPLc,2014,6,87.45 +22,GPLc,2015,3,82.28 +22,GPLc,2015,7,79.79 +22,GPLc,2015,8,79.65 +22,GPLc,2015,10,77.82 +22,GPLc,2015,1,86.29 +22,GPLc,2015,2,83.48 +22,GPLc,2015,6,81.1 +22,GPLc,2015,9,78.9 +22,GPLc,2015,4,82.03 +22,GPLc,2015,12,76.6 +22,GPLc,2015,11,77.0 +22,GPLc,2015,5,82.16 +22,GPLc,2016,1, +22,GPLc,2016,2, +22,GPLc,2016,3, +22,GPLc,2016,4, +22,GPLc,2016,5, +22,GPLc,2016,6, +22,GPLc,2016,7, +22,GPLc,2016,8, +22,GPLc,2016,9, +22,GPLc,2016,10, +22,GPLc,2016,11, +22,GPLc,2016,12, +22,GPLc,2017,1, +22,GPLc,2017,2, +22,GPLc,2017,3, +22,GPLc,2017,4, +22,GPLc,2017,5, +22,GPLc,2017,6, +22,GPLc,2017,7, +22,GPLc,2017,8, +22,GPLc,2017,9, +22,GPLc,2017,10, +22,GPLc,2017,11, +22,GPLc,2017,12, +22,GPLc,2018,1, +22,GPLc,2018,2, +22,GPLc,2018,3, +22,GPLc,2018,4, +22,GPLc,2018,5, +22,GPLc,2018,6, +22,GPLc,2018,7, +22,GPLc,2018,8, +22,GPLc,2018,9, +22,GPLc,2018,10, +22,GPLc,2018,11, +22,GPLc,2018,12, +22,GPLc,2019,1, +22,GPLc,2019,2, +22,GPLc,2019,3, +22,GPLc,2019,4, +22,GPLc,2019,5, +22,GPLc,2019,6, +22,GPLc,2019,7, +22,GPLc,2019,8, +22,GPLc,2019,9, +22,GPLc,2019,10, +22,GPLc,2019,11, +22,GPLc,2019,12, +22,GPLc,2020,1, +22,GPLc,2020,2, +22,GPLc,2020,3, +22,GPLc,2020,4, +22,GPLc,2020,5, +22,GPLc,2020,6, +22,GPLc,2020,7, +22,GPLc,2020,8, +22,GPLc,2020,9, +22,GPLc,2020,10, +22,GPLc,2020,11, +22,GPLc,2020,12, +22,GPLc,2021,1, +22,GPLc,2021,2, +22,GPLc,2021,3, +22,GPLc,2021,4, +22,GPLc,2021,5, +22,GPLc,2021,6, +22,GPLc,2021,7, +22,GPLc,2021,8, +22,GPLc,2021,9, +22,GPLc,2021,10, +22,GPLc,2021,11, +22,GPLc,2021,12, +22,GPLc,2022,1, +22,GPLc,2022,2, +22,GPLc,2022,3, +22,GPLc,2022,4, +22,GPLc,2022,5, +22,GPLc,2022,6, +22,GPLc,2022,7, +22,GPLc,2022,8, +22,GPLc,2022,9, +22,GPLc,2022,10, +22,GPLc,2022,11, +22,GPLc,2022,12, +22,GPLc,2023,1, +22,GPLc,2023,2, +22,GPLc,2023,3, +22,GPLc,2023,4, +22,GPLc,2023,5, +22,GPLc,2023,6, +22,GPLc,2023,7, +22,GPLc,2023,8, +22,GPLc,2023,9, +22,GPLc,2023,10, +22,GPLc,2023,11, +22,GPLc,2023,12, +22,GPLc,2024,1, +22,GPLc,2024,2, +22,GPLc,2024,3, +22,GPLc,2024,4, +22,GPLc,2024,5, +22,GPLc,2024,6, +22,GPLc,2024,7, +22,GPLc,2024,8, +22,GPLc,2024,9, +22,GPLc,2024,10, +22,GPLc,2024,11, +22,GPLc,2024,12, +22,E10,2009,5,122.69 +22,E10,2009,6,129.47 +22,E10,2009,7,125.96 +22,E10,2009,8,128.57 +22,E10,2009,9,126.46 +22,E10,2009,10,125.53 +22,E10,2009,11,127.58 +22,E10,2009,12,127.35 +22,E10,2009,4,118.71 +22,E10,2009,1, +22,E10,2009,2, +22,E10,2009,3, +22,E10,2010,1,131.43 +22,E10,2010,2,133.14 +22,E10,2010,3,137.53 +22,E10,2010,4,139.63 +22,E10,2010,5,139.75 +22,E10,2010,6,138.35 +22,E10,2010,7,136.3 +22,E10,2010,8,135.63 +22,E10,2010,9,135.42 +22,E10,2010,10,136.62 +22,E10,2010,11,138.06 +22,E10,2010,12,143.61 +22,E10,2011,1,148.19 +22,E10,2011,2,148.82 +22,E10,2011,3,153.37 +22,E10,2011,4,155.77 +22,E10,2011,5,156.25 +22,E10,2011,6,153.14 +22,E10,2011,7,153.09 +22,E10,2011,8,151.8 +22,E10,2011,9,154.52 +22,E10,2011,10,152.34 +22,E10,2011,11,151.57 +22,E10,2011,12,150.92 +22,E10,2012,1,156.53 +22,E10,2012,2,159.75 +22,E10,2012,3,164.74 +22,E10,2012,4,166.93 +22,E10,2012,5,160.43 +22,E10,2012,6,155.53 +22,E10,2012,7,157.44 +22,E10,2012,8,162.01 +22,E10,2012,9,158.79 +22,E10,2012,10,155.44 +22,E10,2012,11,150.0 +22,E10,2012,12,150.73 +22,E10,2013,1,154.98 +22,E10,2013,2,160.71 +22,E10,2013,3,160.05 +22,E10,2013,4,157.45 +22,E10,2013,5,154.23 +22,E10,2013,6,154.34 +22,E10,2013,7,155.76 +22,E10,2013,8,156.28 +22,E10,2013,9,155.29 +22,E10,2013,10,150.2 +22,E10,2013,11,149.3 +22,E10,2013,12,150.73 +22,E10,2014,4,152.0 +22,E10,2014,1,150.07 +22,E10,2014,2,150.74 +22,E10,2014,3,150.82 +22,E10,2014,5,152.67 +22,E10,2014,6,154.08 +22,E10,2014,7,154.25 +22,E10,2014,8,151.07 +22,E10,2014,10,147.65 +22,E10,2014,11,143.65 +22,E10,2014,12,135.01 +22,E10,2014,9,150.64 +22,E10,2015,1,128.82 +22,E10,2015,2,133.89 +22,E10,2015,3,139.23 +22,E10,2015,4,141.71 +22,E10,2015,5,143.93 +22,E10,2015,6,144.63 +22,E10,2015,7,144.13 +22,E10,2015,8,139.11 +22,E10,2015,9,132.2 +22,E10,2015,10,130.32 +22,E10,2015,11,130.26 +22,E10,2015,12,127.69 +22,E10,2016,1, +22,E10,2016,2, +22,E10,2016,3, +22,E10,2016,4, +22,E10,2016,5, +22,E10,2016,6, +22,E10,2016,7, +22,E10,2016,8, +22,E10,2016,9, +22,E10,2016,10, +22,E10,2016,11, +22,E10,2016,12, +22,E10,2017,1, +22,E10,2017,2, +22,E10,2017,3, +22,E10,2017,4, +22,E10,2017,5, +22,E10,2017,6, +22,E10,2017,7, +22,E10,2017,8, +22,E10,2017,9, +22,E10,2017,10, +22,E10,2017,11, +22,E10,2017,12, +22,E10,2018,1, +22,E10,2018,2, +22,E10,2018,3, +22,E10,2018,4, +22,E10,2018,5, +22,E10,2018,6, +22,E10,2018,7, +22,E10,2018,8, +22,E10,2018,9, +22,E10,2018,10, +22,E10,2018,11, +22,E10,2018,12, +22,E10,2019,1, +22,E10,2019,2, +22,E10,2019,3, +22,E10,2019,4, +22,E10,2019,5, +22,E10,2019,6, +22,E10,2019,7, +22,E10,2019,8, +22,E10,2019,9, +22,E10,2019,10, +22,E10,2019,11, +22,E10,2019,12, +22,E10,2020,1, +22,E10,2020,2, +22,E10,2020,3, +22,E10,2020,4, +22,E10,2020,5, +22,E10,2020,6, +22,E10,2020,7, +22,E10,2020,8, +22,E10,2020,9, +22,E10,2020,10, +22,E10,2020,11, +22,E10,2020,12, +22,E10,2021,1, +22,E10,2021,2, +22,E10,2021,3, +22,E10,2021,4, +22,E10,2021,5, +22,E10,2021,6, +22,E10,2021,7, +22,E10,2021,8, +22,E10,2021,9, +22,E10,2021,10, +22,E10,2021,11, +22,E10,2021,12, +22,E10,2022,1, +22,E10,2022,2, +22,E10,2022,3, +22,E10,2022,4, +22,E10,2022,5, +22,E10,2022,6, +22,E10,2022,7, +22,E10,2022,8, +22,E10,2022,9, +22,E10,2022,10, +22,E10,2022,11, +22,E10,2022,12, +22,E10,2023,1, +22,E10,2023,2, +22,E10,2023,3, +22,E10,2023,4, +22,E10,2023,5, +22,E10,2023,6, +22,E10,2023,7, +22,E10,2023,8, +22,E10,2023,9, +22,E10,2023,10, +22,E10,2023,11, +22,E10,2023,12, +22,E10,2024,1, +22,E10,2024,2, +22,E10,2024,3, +22,E10,2024,4, +22,E10,2024,5, +22,E10,2024,6, +22,E10,2024,7, +22,E10,2024,8, +22,E10,2024,9, +22,E10,2024,10, +22,E10,2024,11, +22,E10,2024,12, +22,SP98,2013,7,161.0 +22,SP98,2013,8,161.7 +22,SP98,2013,9,160.94 +22,SP98,2013,10,155.95 +22,SP98,2013,11,154.83 +22,SP98,2013,12,156.26 +22,SP98,2013,6,157.97 +22,SP98,2013,1, +22,SP98,2013,2, +22,SP98,2013,3, +22,SP98,2013,4, +22,SP98,2013,5, +22,SP98,2014,1,155.55 +22,SP98,2014,2,156.13 +22,SP98,2014,3,156.36 +22,SP98,2014,4,157.33 +22,SP98,2014,6,159.41 +22,SP98,2014,7,159.88 +22,SP98,2014,8,156.86 +22,SP98,2014,9,156.16 +22,SP98,2014,10,153.26 +22,SP98,2014,11,148.96 +22,SP98,2014,12,140.35 +22,SP98,2014,5,157.92 +22,SP98,2015,1,133.93 +22,SP98,2015,2,138.7 +22,SP98,2015,3,144.36 +22,SP98,2015,4,147.04 +22,SP98,2015,5,149.87 +22,SP98,2015,6,150.7 +22,SP98,2015,7,150.19 +22,SP98,2015,8,144.94 +22,SP98,2015,9,137.51 +22,SP98,2015,10,135.51 +22,SP98,2015,11,135.46 +22,SP98,2015,12,132.98 +22,SP98,2016,1, +22,SP98,2016,2, +22,SP98,2016,3, +22,SP98,2016,4, +22,SP98,2016,5, +22,SP98,2016,6, +22,SP98,2016,7, +22,SP98,2016,8, +22,SP98,2016,9, +22,SP98,2016,10, +22,SP98,2016,11, +22,SP98,2016,12, +22,SP98,2017,1, +22,SP98,2017,2, +22,SP98,2017,3, +22,SP98,2017,4, +22,SP98,2017,5, +22,SP98,2017,6, +22,SP98,2017,7, +22,SP98,2017,8, +22,SP98,2017,9, +22,SP98,2017,10, +22,SP98,2017,11, +22,SP98,2017,12, +22,SP98,2018,1, +22,SP98,2018,2, +22,SP98,2018,3, +22,SP98,2018,4, +22,SP98,2018,5, +22,SP98,2018,6, +22,SP98,2018,7, +22,SP98,2018,8, +22,SP98,2018,9, +22,SP98,2018,10, +22,SP98,2018,11, +22,SP98,2018,12, +22,SP98,2019,1, +22,SP98,2019,2, +22,SP98,2019,3, +22,SP98,2019,4, +22,SP98,2019,5, +22,SP98,2019,6, +22,SP98,2019,7, +22,SP98,2019,8, +22,SP98,2019,9, +22,SP98,2019,10, +22,SP98,2019,11, +22,SP98,2019,12, +22,SP98,2020,1, +22,SP98,2020,2, +22,SP98,2020,3, +22,SP98,2020,4, +22,SP98,2020,5, +22,SP98,2020,6, +22,SP98,2020,7, +22,SP98,2020,8, +22,SP98,2020,9, +22,SP98,2020,10, +22,SP98,2020,11, +22,SP98,2020,12, +22,SP98,2021,1, +22,SP98,2021,2, +22,SP98,2021,3, +22,SP98,2021,4, +22,SP98,2021,5, +22,SP98,2021,6, +22,SP98,2021,7, +22,SP98,2021,8, +22,SP98,2021,9, +22,SP98,2021,10, +22,SP98,2021,11, +22,SP98,2021,12, +22,SP98,2022,1, +22,SP98,2022,2, +22,SP98,2022,3, +22,SP98,2022,4, +22,SP98,2022,5, +22,SP98,2022,6, +22,SP98,2022,7, +22,SP98,2022,8, +22,SP98,2022,9, +22,SP98,2022,10, +22,SP98,2022,11, +22,SP98,2022,12, +22,SP98,2023,1, +22,SP98,2023,2, +22,SP98,2023,3, +22,SP98,2023,4, +22,SP98,2023,5, +22,SP98,2023,6, +22,SP98,2023,7, +22,SP98,2023,8, +22,SP98,2023,9, +22,SP98,2023,10, +22,SP98,2023,11, +22,SP98,2023,12, +22,SP98,2024,1, +22,SP98,2024,2, +22,SP98,2024,3, +22,SP98,2024,4, +22,SP98,2024,5, +22,SP98,2024,6, +22,SP98,2024,7, +22,SP98,2024,8, +22,SP98,2024,9, +22,SP98,2024,10, +22,SP98,2024,11, +22,SP98,2024,12, +83,Gazole,2007,1,103.09 +83,Gazole,2007,2,104.0 +83,Gazole,2007,3,105.73 +83,Gazole,2007,4,108.62 +83,Gazole,2007,5,109.17 +83,Gazole,2007,6,110.28 +83,Gazole,2007,7,111.35 +83,Gazole,2007,8,111.37 +83,Gazole,2007,9,112.91 +83,Gazole,2007,10,114.63 +83,Gazole,2007,11,123.45 +83,Gazole,2007,12,123.95 +83,Gazole,2008,1,123.04 +83,Gazole,2008,2,123.34 +83,Gazole,2008,3,129.68 +83,Gazole,2008,4,132.2 +83,Gazole,2008,5,141.41 +83,Gazole,2008,6,147.15 +83,Gazole,2008,7,146.01 +83,Gazole,2008,8,137.38 +83,Gazole,2008,9,133.64 +83,Gazole,2008,10,125.48 +83,Gazole,2008,11,115.28 +83,Gazole,2008,12,104.84 +83,Gazole,2009,1,102.0 +83,Gazole,2009,2,100.12 +83,Gazole,2009,3,97.41 +83,Gazole,2009,4,99.59 +83,Gazole,2009,5,99.74 +83,Gazole,2009,6,104.14 +83,Gazole,2009,7,102.75 +83,Gazole,2009,8,105.7 +83,Gazole,2009,9,104.24 +83,Gazole,2009,10,104.76 +83,Gazole,2009,11,107.55 +83,Gazole,2009,12,106.7 +83,Gazole,2010,1,110.7 +83,Gazole,2010,2,111.4 +83,Gazole,2010,3,114.79 +83,Gazole,2010,4,118.29 +83,Gazole,2010,5,120.02 +83,Gazole,2010,6,119.4 +83,Gazole,2010,7,117.15 +83,Gazole,2010,8,117.12 +83,Gazole,2010,9,117.16 +83,Gazole,2010,10,120.36 +83,Gazole,2010,11,121.33 +83,Gazole,2010,12,124.84 +83,Gazole,2011,1,131.86 +83,Gazole,2011,2,134.47 +83,Gazole,2011,3,139.9 +83,Gazole,2011,4,140.8 +83,Gazole,2011,5,137.53 +83,Gazole,2011,6,136.12 +83,Gazole,2011,7,136.68 +83,Gazole,2011,8,135.77 +83,Gazole,2011,9,137.11 +83,Gazole,2011,10,137.95 +83,Gazole,2011,11,141.12 +83,Gazole,2011,12,141.62 +83,Gazole,2012,1,144.06 +83,Gazole,2012,2,145.65 +83,Gazole,2012,3,148.13 +83,Gazole,2012,4,147.13 +83,Gazole,2012,5,144.04 +83,Gazole,2012,6,138.62 +83,Gazole,2012,7,140.75 +83,Gazole,2012,8,146.16 +83,Gazole,2012,9,142.89 +83,Gazole,2012,10,141.75 +83,Gazole,2012,11,139.63 +83,Gazole,2012,12,139.34 +83,Gazole,2013,1,140.71 +83,Gazole,2013,2,144.05 +83,Gazole,2013,3,142.67 +83,Gazole,2013,4,138.58 +83,Gazole,2013,5,136.08 +83,Gazole,2013,6,136.23 +83,Gazole,2013,7,137.77 +83,Gazole,2013,8,138.41 +83,Gazole,2013,9,140.2 +83,Gazole,2013,10,136.58 +83,Gazole,2013,11,135.46 +83,Gazole,2013,12,137.05 +83,Gazole,2014,1,134.96 +83,Gazole,2014,2,135.75 +83,Gazole,2014,3,135.4 +83,Gazole,2014,4,134.35 +83,Gazole,2014,5,134.16 +83,Gazole,2014,6,134.3 +83,Gazole,2014,7,133.93 +83,Gazole,2014,8,133.16 +83,Gazole,2014,9,132.59 +83,Gazole,2014,10,129.82 +83,Gazole,2014,11,126.66 +83,Gazole,2014,12,117.9 +83,Gazole,2015,1,114.24 +83,Gazole,2015,2,119.73 +83,Gazole,2015,3,123.52 +83,Gazole,2015,4,123.11 +83,Gazole,2015,5,126.05 +83,Gazole,2015,6,124.64 +83,Gazole,2015,7,120.92 +83,Gazole,2015,8,115.46 +83,Gazole,2015,9,113.59 +83,Gazole,2015,10,113.07 +83,Gazole,2015,11,112.74 +83,Gazole,2015,12,107.04 +83,Gazole,2016,1, +83,Gazole,2016,2, +83,Gazole,2016,3, +83,Gazole,2016,4, +83,Gazole,2016,5, +83,Gazole,2016,6, +83,Gazole,2016,7, +83,Gazole,2016,8, +83,Gazole,2016,9, +83,Gazole,2016,10, +83,Gazole,2016,11, +83,Gazole,2016,12, +83,Gazole,2017,1, +83,Gazole,2017,2, +83,Gazole,2017,3, +83,Gazole,2017,4, +83,Gazole,2017,5, +83,Gazole,2017,6, +83,Gazole,2017,7, +83,Gazole,2017,8, +83,Gazole,2017,9, +83,Gazole,2017,10, +83,Gazole,2017,11, +83,Gazole,2017,12, +83,Gazole,2018,1, +83,Gazole,2018,2, +83,Gazole,2018,3, +83,Gazole,2018,4, +83,Gazole,2018,5, +83,Gazole,2018,6, +83,Gazole,2018,7, +83,Gazole,2018,8, +83,Gazole,2018,9, +83,Gazole,2018,10, +83,Gazole,2018,11, +83,Gazole,2018,12, +83,Gazole,2019,1, +83,Gazole,2019,2, +83,Gazole,2019,3, +83,Gazole,2019,4, +83,Gazole,2019,5, +83,Gazole,2019,6, +83,Gazole,2019,7, +83,Gazole,2019,8, +83,Gazole,2019,9, +83,Gazole,2019,10, +83,Gazole,2019,11, +83,Gazole,2019,12, +83,Gazole,2020,1, +83,Gazole,2020,2, +83,Gazole,2020,3, +83,Gazole,2020,4, +83,Gazole,2020,5, +83,Gazole,2020,6, +83,Gazole,2020,7, +83,Gazole,2020,8, +83,Gazole,2020,9, +83,Gazole,2020,10, +83,Gazole,2020,11, +83,Gazole,2020,12, +83,Gazole,2021,1, +83,Gazole,2021,2, +83,Gazole,2021,3, +83,Gazole,2021,4, +83,Gazole,2021,5, +83,Gazole,2021,6, +83,Gazole,2021,7, +83,Gazole,2021,8, +83,Gazole,2021,9, +83,Gazole,2021,10, +83,Gazole,2021,11, +83,Gazole,2021,12, +83,Gazole,2022,1, +83,Gazole,2022,2, +83,Gazole,2022,3, +83,Gazole,2022,4, +83,Gazole,2022,5, +83,Gazole,2022,6, +83,Gazole,2022,7, +83,Gazole,2022,8, +83,Gazole,2022,9, +83,Gazole,2022,10, +83,Gazole,2022,11, +83,Gazole,2022,12, +83,Gazole,2023,1, +83,Gazole,2023,2, +83,Gazole,2023,3, +83,Gazole,2023,4, +83,Gazole,2023,5, +83,Gazole,2023,6, +83,Gazole,2023,7, +83,Gazole,2023,8, +83,Gazole,2023,9, +83,Gazole,2023,10, +83,Gazole,2023,11, +83,Gazole,2023,12, +83,Gazole,2024,1, +83,Gazole,2024,2, +83,Gazole,2024,3, +83,Gazole,2024,4, +83,Gazole,2024,5, +83,Gazole,2024,6, +83,Gazole,2024,7, +83,Gazole,2024,8, +83,Gazole,2024,9, +83,Gazole,2024,10, +83,Gazole,2024,11, +83,Gazole,2024,12, +83,SP95,2007,1,119.46 +83,SP95,2007,2,120.95 +83,SP95,2007,3,125.33 +83,SP95,2007,4,129.8 +83,SP95,2007,5,133.71 +83,SP95,2007,6,134.29 +83,SP95,2007,7,133.56 +83,SP95,2007,8,130.49 +83,SP95,2007,9,130.76 +83,SP95,2007,10,131.1 +83,SP95,2007,11,136.59 +83,SP95,2007,12,136.3 +83,SP95,2008,1,137.86 +83,SP95,2008,2,137.73 +83,SP95,2008,3,140.06 +83,SP95,2008,4,141.5 +83,SP95,2008,5,147.35 +83,SP95,2008,6,152.5 +83,SP95,2008,7,151.55 +83,SP95,2008,8,145.67 +83,SP95,2008,9,145.17 +83,SP95,2008,10,135.81 +83,SP95,2008,11,123.35 +83,SP95,2008,12,114.62 +83,SP95,2009,1,114.67 +83,SP95,2009,2,117.6 +83,SP95,2009,3,117.58 +83,SP95,2009,4,120.07 +83,SP95,2009,5,123.33 +83,SP95,2009,6,129.29 +83,SP95,2009,7,126.69 +83,SP95,2009,8,129.84 +83,SP95,2009,9,127.54 +83,SP95,2009,10,127.08 +83,SP95,2009,11,129.85 +83,SP95,2009,12,129.44 +83,SP95,2010,1,133.48 +83,SP95,2010,2,135.05 +83,SP95,2010,3,138.74 +83,SP95,2010,4,140.96 +83,SP95,2010,5,141.09 +83,SP95,2010,6,139.53 +83,SP95,2010,7,137.73 +83,SP95,2010,8,136.77 +83,SP95,2010,9,136.75 +83,SP95,2010,10,139.35 +83,SP95,2010,11,140.99 +83,SP95,2010,12,145.01 +83,SP95,2011,1,151.43 +83,SP95,2011,2,151.75 +83,SP95,2011,3,155.51 +83,SP95,2011,4,157.18 +83,SP95,2011,5,157.36 +83,SP95,2011,6,154.83 +83,SP95,2011,7,154.7 +83,SP95,2011,8,154.22 +83,SP95,2011,9,155.4 +83,SP95,2011,10,154.26 +83,SP95,2011,11,153.9 +83,SP95,2011,12,153.73 +83,SP95,2012,1,158.83 +83,SP95,2012,2,162.87 +83,SP95,2012,3,167.27 +83,SP95,2012,4,170.12 +83,SP95,2012,5,163.73 +83,SP95,2012,6,157.88 +83,SP95,2012,7,158.86 +83,SP95,2012,8,165.74 +83,SP95,2012,9,162.59 +83,SP95,2012,10,159.79 +83,SP95,2012,11,154.89 +83,SP95,2012,12,155.61 +83,SP95,2013,1,159.45 +83,SP95,2013,2,165.68 +83,SP95,2013,3,165.11 +83,SP95,2013,4,160.62 +83,SP95,2013,5,157.63 +83,SP95,2013,6,158.46 +83,SP95,2013,7,158.65 +83,SP95,2013,8,159.03 +83,SP95,2013,9,158.81 +83,SP95,2013,10,154.54 +83,SP95,2013,11,153.56 +83,SP95,2013,12,154.99 +83,SP95,2014,1,152.94 +83,SP95,2014,2,154.05 +83,SP95,2014,3,155.46 +83,SP95,2014,4,155.81 +83,SP95,2014,5,155.98 +83,SP95,2014,6,156.39 +83,SP95,2014,7,156.92 +83,SP95,2014,8,155.07 +83,SP95,2014,9,153.97 +83,SP95,2014,10,151.55 +83,SP95,2014,11,148.18 +83,SP95,2014,12,140.64 +83,SP95,2015,1,131.98 +83,SP95,2015,2,136.58 +83,SP95,2015,3,141.7 +83,SP95,2015,4,142.94 +83,SP95,2015,5,145.92 +83,SP95,2015,6,146.45 +83,SP95,2015,7,145.46 +83,SP95,2015,8,139.79 +83,SP95,2015,9,134.61 +83,SP95,2015,10,133.72 +83,SP95,2015,11,133.11 +83,SP95,2015,12,131.78 +83,SP95,2016,1, +83,SP95,2016,2, +83,SP95,2016,3, +83,SP95,2016,4, +83,SP95,2016,5, +83,SP95,2016,6, +83,SP95,2016,7, +83,SP95,2016,8, +83,SP95,2016,9, +83,SP95,2016,10, +83,SP95,2016,11, +83,SP95,2016,12, +83,SP95,2017,1, +83,SP95,2017,2, +83,SP95,2017,3, +83,SP95,2017,4, +83,SP95,2017,5, +83,SP95,2017,6, +83,SP95,2017,7, +83,SP95,2017,8, +83,SP95,2017,9, +83,SP95,2017,10, +83,SP95,2017,11, +83,SP95,2017,12, +83,SP95,2018,1, +83,SP95,2018,2, +83,SP95,2018,3, +83,SP95,2018,4, +83,SP95,2018,5, +83,SP95,2018,6, +83,SP95,2018,7, +83,SP95,2018,8, +83,SP95,2018,9, +83,SP95,2018,10, +83,SP95,2018,11, +83,SP95,2018,12, +83,SP95,2019,1, +83,SP95,2019,2, +83,SP95,2019,3, +83,SP95,2019,4, +83,SP95,2019,5, +83,SP95,2019,6, +83,SP95,2019,7, +83,SP95,2019,8, +83,SP95,2019,9, +83,SP95,2019,10, +83,SP95,2019,11, +83,SP95,2019,12, +83,SP95,2020,1, +83,SP95,2020,2, +83,SP95,2020,3, +83,SP95,2020,4, +83,SP95,2020,5, +83,SP95,2020,6, +83,SP95,2020,7, +83,SP95,2020,8, +83,SP95,2020,9, +83,SP95,2020,10, +83,SP95,2020,11, +83,SP95,2020,12, +83,SP95,2021,1, +83,SP95,2021,2, +83,SP95,2021,3, +83,SP95,2021,4, +83,SP95,2021,5, +83,SP95,2021,6, +83,SP95,2021,7, +83,SP95,2021,8, +83,SP95,2021,9, +83,SP95,2021,10, +83,SP95,2021,11, +83,SP95,2021,12, +83,SP95,2022,1, +83,SP95,2022,2, +83,SP95,2022,3, +83,SP95,2022,4, +83,SP95,2022,5, +83,SP95,2022,6, +83,SP95,2022,7, +83,SP95,2022,8, +83,SP95,2022,9, +83,SP95,2022,10, +83,SP95,2022,11, +83,SP95,2022,12, +83,SP95,2023,1, +83,SP95,2023,2, +83,SP95,2023,3, +83,SP95,2023,4, +83,SP95,2023,5, +83,SP95,2023,6, +83,SP95,2023,7, +83,SP95,2023,8, +83,SP95,2023,9, +83,SP95,2023,10, +83,SP95,2023,11, +83,SP95,2023,12, +83,SP95,2024,1, +83,SP95,2024,2, +83,SP95,2024,3, +83,SP95,2024,4, +83,SP95,2024,5, +83,SP95,2024,6, +83,SP95,2024,7, +83,SP95,2024,8, +83,SP95,2024,9, +83,SP95,2024,10, +83,SP95,2024,11, +83,SP95,2024,12, +83,GPLc,2007,12,72.89 +83,GPLc,2007,11,71.58 +83,GPLc,2007,1, +83,GPLc,2007,2, +83,GPLc,2007,3, +83,GPLc,2007,4, +83,GPLc,2007,5, +83,GPLc,2007,6, +83,GPLc,2007,7, +83,GPLc,2007,8, +83,GPLc,2007,9, +83,GPLc,2007,10, +83,GPLc,2008,4,73.28 +83,GPLc,2008,6,75.67 +83,GPLc,2008,8,77.57 +83,GPLc,2008,12,73.41 +83,GPLc,2008,1,74.77 +83,GPLc,2008,2,73.95 +83,GPLc,2008,3,73.88 +83,GPLc,2008,5,74.24 +83,GPLc,2008,7,76.57 +83,GPLc,2008,9,77.85 +83,GPLc,2008,10,77.91 +83,GPLc,2008,11,76.83 +83,GPLc,2009,1,69.51 +83,GPLc,2009,2,69.42 +83,GPLc,2009,7,63.58 +83,GPLc,2009,10,64.72 +83,GPLc,2009,3,68.11 +83,GPLc,2009,4,65.03 +83,GPLc,2009,5,63.76 +83,GPLc,2009,6,64.18 +83,GPLc,2009,8,63.69 +83,GPLc,2009,9,64.69 +83,GPLc,2009,12,67.81 +83,GPLc,2009,11,66.71 +83,GPLc,2010,2,69.72 +83,GPLc,2010,6,72.66 +83,GPLc,2010,7,73.54 +83,GPLc,2010,10,75.38 +83,GPLc,2010,11,77.54 +83,GPLc,2010,12,80.24 +83,GPLc,2010,8,74.1 +83,GPLc,2010,3,68.94 +83,GPLc,2010,4,68.47 +83,GPLc,2010,9,74.26 +83,GPLc,2010,1,68.18 +83,GPLc,2010,5,71.78 +83,GPLc,2011,1,79.52 +83,GPLc,2011,3,80.12 +83,GPLc,2011,2,79.52 +83,GPLc,2011,4,80.54 +83,GPLc,2011,5,80.99 +83,GPLc,2011,6,81.38 +83,GPLc,2011,7,81.51 +83,GPLc,2011,8,81.5 +83,GPLc,2011,9,81.63 +83,GPLc,2011,10,81.41 +83,GPLc,2011,11,81.31 +83,GPLc,2011,12,81.28 +83,GPLc,2012,5,87.08 +83,GPLc,2012,7,85.44 +83,GPLc,2012,9,85.49 +83,GPLc,2012,10,86.12 +83,GPLc,2012,1,82.92 +83,GPLc,2012,2,84.46 +83,GPLc,2012,3,86.38 +83,GPLc,2012,4,86.77 +83,GPLc,2012,6,86.52 +83,GPLc,2012,8,85.5 +83,GPLc,2012,11,86.61 +83,GPLc,2012,12,86.74 +83,GPLc,2013,3,87.84 +83,GPLc,2013,4,87.64 +83,GPLc,2013,5,86.83 +83,GPLc,2013,12,85.1 +83,GPLc,2013,8,85.09 +83,GPLc,2013,9,85.27 +83,GPLc,2013,10,84.91 +83,GPLc,2013,11,84.9 +83,GPLc,2013,7,85.35 +83,GPLc,2013,1,86.22 +83,GPLc,2013,2,87.08 +83,GPLc,2013,6,85.92 +83,GPLc,2014,2,85.24 +83,GPLc,2014,5,85.11 +83,GPLc,2014,7,84.84 +83,GPLc,2014,11,84.53 +83,GPLc,2014,12,83.99 +83,GPLc,2014,1,84.1 +83,GPLc,2014,3,85.38 +83,GPLc,2014,4,85.32 +83,GPLc,2014,6,84.94 +83,GPLc,2014,8,84.89 +83,GPLc,2014,9,84.84 +83,GPLc,2014,10,84.98 +83,GPLc,2015,1,81.55 +83,GPLc,2015,2,80.65 +83,GPLc,2015,4,80.55 +83,GPLc,2015,5,80.92 +83,GPLc,2015,6,80.3 +83,GPLc,2015,7,78.7 +83,GPLc,2015,8,78.25 +83,GPLc,2015,9,77.31 +83,GPLc,2015,10,76.04 +83,GPLc,2015,11,75.53 +83,GPLc,2015,12,75.42 +83,GPLc,2015,3,80.28 +83,GPLc,2016,1, +83,GPLc,2016,2, +83,GPLc,2016,3, +83,GPLc,2016,4, +83,GPLc,2016,5, +83,GPLc,2016,6, +83,GPLc,2016,7, +83,GPLc,2016,8, +83,GPLc,2016,9, +83,GPLc,2016,10, +83,GPLc,2016,11, +83,GPLc,2016,12, +83,GPLc,2017,1, +83,GPLc,2017,2, +83,GPLc,2017,3, +83,GPLc,2017,4, +83,GPLc,2017,5, +83,GPLc,2017,6, +83,GPLc,2017,7, +83,GPLc,2017,8, +83,GPLc,2017,9, +83,GPLc,2017,10, +83,GPLc,2017,11, +83,GPLc,2017,12, +83,GPLc,2018,1, +83,GPLc,2018,2, +83,GPLc,2018,3, +83,GPLc,2018,4, +83,GPLc,2018,5, +83,GPLc,2018,6, +83,GPLc,2018,7, +83,GPLc,2018,8, +83,GPLc,2018,9, +83,GPLc,2018,10, +83,GPLc,2018,11, +83,GPLc,2018,12, +83,GPLc,2019,1, +83,GPLc,2019,2, +83,GPLc,2019,3, +83,GPLc,2019,4, +83,GPLc,2019,5, +83,GPLc,2019,6, +83,GPLc,2019,7, +83,GPLc,2019,8, +83,GPLc,2019,9, +83,GPLc,2019,10, +83,GPLc,2019,11, +83,GPLc,2019,12, +83,GPLc,2020,1, +83,GPLc,2020,2, +83,GPLc,2020,3, +83,GPLc,2020,4, +83,GPLc,2020,5, +83,GPLc,2020,6, +83,GPLc,2020,7, +83,GPLc,2020,8, +83,GPLc,2020,9, +83,GPLc,2020,10, +83,GPLc,2020,11, +83,GPLc,2020,12, +83,GPLc,2021,1, +83,GPLc,2021,2, +83,GPLc,2021,3, +83,GPLc,2021,4, +83,GPLc,2021,5, +83,GPLc,2021,6, +83,GPLc,2021,7, +83,GPLc,2021,8, +83,GPLc,2021,9, +83,GPLc,2021,10, +83,GPLc,2021,11, +83,GPLc,2021,12, +83,GPLc,2022,1, +83,GPLc,2022,2, +83,GPLc,2022,3, +83,GPLc,2022,4, +83,GPLc,2022,5, +83,GPLc,2022,6, +83,GPLc,2022,7, +83,GPLc,2022,8, +83,GPLc,2022,9, +83,GPLc,2022,10, +83,GPLc,2022,11, +83,GPLc,2022,12, +83,GPLc,2023,1, +83,GPLc,2023,2, +83,GPLc,2023,3, +83,GPLc,2023,4, +83,GPLc,2023,5, +83,GPLc,2023,6, +83,GPLc,2023,7, +83,GPLc,2023,8, +83,GPLc,2023,9, +83,GPLc,2023,10, +83,GPLc,2023,11, +83,GPLc,2023,12, +83,GPLc,2024,1, +83,GPLc,2024,2, +83,GPLc,2024,3, +83,GPLc,2024,4, +83,GPLc,2024,5, +83,GPLc,2024,6, +83,GPLc,2024,7, +83,GPLc,2024,8, +83,GPLc,2024,9, +83,GPLc,2024,10, +83,GPLc,2024,11, +83,GPLc,2024,12, +83,E85,2007,9,84.0 +83,E85,2007,1, +83,E85,2007,2, +83,E85,2007,3, +83,E85,2007,4, +83,E85,2007,5, +83,E85,2007,6, +83,E85,2007,7, +83,E85,2007,8, +83,E85,2007,10,84.0 +83,E85,2007,11,84.0 +83,E85,2007,12,84.0 +83,E85,2008,5,85.0 +83,E85,2008,6,85.0 +83,E85,2008,8,85.0 +83,E85,2008,9,85.0 +83,E85,2008,11,85.0 +83,E85,2008,12,84.33 +83,E85,2008,1, +83,E85,2008,2, +83,E85,2008,3, +83,E85,2008,4, +83,E85,2008,7,85.0 +83,E85,2008,10,85.0 +83,E85,2009,6,84.92 +83,E85,2009,11,106.54 +83,E85,2009,1,83.9 +83,E85,2009,4,80.83 +83,E85,2009,10,101.02 +83,E85,2009,7,100.08 +83,E85,2009,2,83.9 +83,E85,2009,3,83.9 +83,E85,2009,5,79.9 +83,E85,2009,8,101.17 +83,E85,2009,9,101.17 +83,E85,2009,12,100.23 +83,E85,2010,1,129.96 +83,E85,2010,9,134.79 +83,E85,2010,3,132.52 +83,E85,2010,7,134.22 +83,E85,2010,10,135.65 +83,E85,2010,4,133.96 +83,E85,2010,8,134.46 +83,E85,2010,5,134.06 +83,E85,2010,12,136.26 +83,E85,2010,2,130.5 +83,E85,2010,6,133.94 +83,E85,2010,11,136.06 +83,E85,2011,3,81.9 +83,E85,2011,4,82.23 +83,E85,2011,1, +83,E85,2011,2, +83,E85,2011,5,82.9 +83,E85,2011,6,82.9 +83,E85,2011,7,82.9 +83,E85,2011,8,82.9 +83,E85,2011,9,82.9 +83,E85,2011,10,82.9 +83,E85,2011,11,82.9 +83,E85,2011,12,82.9 +83,E85,2012,3,88.9 +83,E85,2012,7,89.86 +83,E85,2012,9,86.73 +83,E85,2012,12,81.25 +83,E85,2012,1, +83,E85,2012,2, +83,E85,2012,4,88.9 +83,E85,2012,5,88.9 +83,E85,2012,6,88.9 +83,E85,2012,8,90.2 +83,E85,2012,10,79.65 +83,E85,2012,11,79.65 +83,E85,2013,5,88.92 +83,E85,2013,7,88.19 +83,E85,2013,2,89.96 +83,E85,2013,9,88.31 +83,E85,2013,11,97.14 +83,E85,2013,1,89.9 +83,E85,2013,3,90.0 +83,E85,2013,4,90.0 +83,E85,2013,6,88.67 +83,E85,2013,10,96.62 +83,E85,2013,8,88.48 +83,E85,2013,12,97.14 +83,E85,2014,2,87.22 +83,E85,2014,3,86.41 +83,E85,2014,4,82.83 +83,E85,2014,5,81.56 +83,E85,2014,6,81.51 +83,E85,2014,7,80.35 +83,E85,2014,8,77.48 +83,E85,2014,9,76.35 +83,E85,2014,12,81.19 +83,E85,2014,1,86.9 +83,E85,2014,10,75.58 +83,E85,2014,11,74.87 +83,E85,2015,8,90.7 +83,E85,2015,1,80.7 +83,E85,2015,9,99.24 +83,E85,2015,10,102.18 +83,E85,2015,11,102.04 +83,E85,2015,12,101.35 +83,E85,2015,2,87.3 +83,E85,2015,3,85.6 +83,E85,2015,4,82.5 +83,E85,2015,5,90.63 +83,E85,2015,7,86.12 +83,E85,2015,6,88.18 +83,E85,2016,1, +83,E85,2016,2, +83,E85,2016,3, +83,E85,2016,4, +83,E85,2016,5, +83,E85,2016,6, +83,E85,2016,7, +83,E85,2016,8, +83,E85,2016,9, +83,E85,2016,10, +83,E85,2016,11, +83,E85,2016,12, +83,E85,2017,1, +83,E85,2017,2, +83,E85,2017,3, +83,E85,2017,4, +83,E85,2017,5, +83,E85,2017,6, +83,E85,2017,7, +83,E85,2017,8, +83,E85,2017,9, +83,E85,2017,10, +83,E85,2017,11, +83,E85,2017,12, +83,E85,2018,1, +83,E85,2018,2, +83,E85,2018,3, +83,E85,2018,4, +83,E85,2018,5, +83,E85,2018,6, +83,E85,2018,7, +83,E85,2018,8, +83,E85,2018,9, +83,E85,2018,10, +83,E85,2018,11, +83,E85,2018,12, +83,E85,2019,1, +83,E85,2019,2, +83,E85,2019,3, +83,E85,2019,4, +83,E85,2019,5, +83,E85,2019,6, +83,E85,2019,7, +83,E85,2019,8, +83,E85,2019,9, +83,E85,2019,10, +83,E85,2019,11, +83,E85,2019,12, +83,E85,2020,1, +83,E85,2020,2, +83,E85,2020,3, +83,E85,2020,4, +83,E85,2020,5, +83,E85,2020,6, +83,E85,2020,7, +83,E85,2020,8, +83,E85,2020,9, +83,E85,2020,10, +83,E85,2020,11, +83,E85,2020,12, +83,E85,2021,1, +83,E85,2021,2, +83,E85,2021,3, +83,E85,2021,4, +83,E85,2021,5, +83,E85,2021,6, +83,E85,2021,7, +83,E85,2021,8, +83,E85,2021,9, +83,E85,2021,10, +83,E85,2021,11, +83,E85,2021,12, +83,E85,2022,1, +83,E85,2022,2, +83,E85,2022,3, +83,E85,2022,4, +83,E85,2022,5, +83,E85,2022,6, +83,E85,2022,7, +83,E85,2022,8, +83,E85,2022,9, +83,E85,2022,10, +83,E85,2022,11, +83,E85,2022,12, +83,E85,2023,1, +83,E85,2023,2, +83,E85,2023,3, +83,E85,2023,4, +83,E85,2023,5, +83,E85,2023,6, +83,E85,2023,7, +83,E85,2023,8, +83,E85,2023,9, +83,E85,2023,10, +83,E85,2023,11, +83,E85,2023,12, +83,E85,2024,1, +83,E85,2024,2, +83,E85,2024,3, +83,E85,2024,4, +83,E85,2024,5, +83,E85,2024,6, +83,E85,2024,7, +83,E85,2024,8, +83,E85,2024,9, +83,E85,2024,10, +83,E85,2024,11, +83,E85,2024,12, +83,E10,2009,7,117.94 +83,E10,2009,8,122.68 +83,E10,2009,9,121.51 +83,E10,2009,10,120.38 +83,E10,2009,11,122.44 +83,E10,2009,12,124.2 +83,E10,2009,4,109.9 +83,E10,2009,5,112.42 +83,E10,2009,6,117.13 +83,E10,2009,1, +83,E10,2009,2, +83,E10,2009,3, +83,E10,2010,1,128.68 +83,E10,2010,2,129.96 +83,E10,2010,3,133.42 +83,E10,2010,4,137.23 +83,E10,2010,5,137.79 +83,E10,2010,6,136.46 +83,E10,2010,7,134.77 +83,E10,2010,8,134.65 +83,E10,2010,9,134.7 +83,E10,2010,10,135.8 +83,E10,2010,11,136.89 +83,E10,2010,12,141.07 +83,E10,2011,1,146.09 +83,E10,2011,2,147.1 +83,E10,2011,3,150.79 +83,E10,2011,4,152.49 +83,E10,2011,5,152.49 +83,E10,2011,6,150.7 +83,E10,2011,7,152.04 +83,E10,2011,8,151.52 +83,E10,2011,9,152.83 +83,E10,2011,10,150.94 +83,E10,2011,11,150.2 +83,E10,2011,12,150.04 +83,E10,2012,1,155.61 +83,E10,2012,2,158.74 +83,E10,2012,3,162.96 +83,E10,2012,4,166.01 +83,E10,2012,5,159.49 +83,E10,2012,6,153.84 +83,E10,2012,7,154.74 +83,E10,2012,8,161.08 +83,E10,2012,9,157.12 +83,E10,2012,10,153.86 +83,E10,2012,11,148.37 +83,E10,2012,12,149.87 +83,E10,2013,1,155.67 +83,E10,2013,2,161.9 +83,E10,2013,3,160.27 +83,E10,2013,4,155.88 +83,E10,2013,5,153.01 +83,E10,2013,6,154.24 +83,E10,2013,7,155.01 +83,E10,2013,8,155.38 +83,E10,2013,9,154.41 +83,E10,2013,10,150.01 +83,E10,2013,11,149.01 +83,E10,2013,12,150.83 +83,E10,2014,1,149.46 +83,E10,2014,2,150.7 +83,E10,2014,3,150.66 +83,E10,2014,4,151.17 +83,E10,2014,5,152.05 +83,E10,2014,6,153.16 +83,E10,2014,7,153.37 +83,E10,2014,8,150.78 +83,E10,2014,9,149.8 +83,E10,2014,10,147.21 +83,E10,2014,11,143.28 +83,E10,2014,12,135.19 +83,E10,2015,1,128.87 +83,E10,2015,2,134.14 +83,E10,2015,3,139.52 +83,E10,2015,4,140.7 +83,E10,2015,5,143.62 +83,E10,2015,6,144.2 +83,E10,2015,7,142.81 +83,E10,2015,8,136.84 +83,E10,2015,9,131.56 +83,E10,2015,10,130.64 +83,E10,2015,11,130.48 +83,E10,2015,12,129.07 +83,E10,2016,1, +83,E10,2016,2, +83,E10,2016,3, +83,E10,2016,4, +83,E10,2016,5, +83,E10,2016,6, +83,E10,2016,7, +83,E10,2016,8, +83,E10,2016,9, +83,E10,2016,10, +83,E10,2016,11, +83,E10,2016,12, +83,E10,2017,1, +83,E10,2017,2, +83,E10,2017,3, +83,E10,2017,4, +83,E10,2017,5, +83,E10,2017,6, +83,E10,2017,7, +83,E10,2017,8, +83,E10,2017,9, +83,E10,2017,10, +83,E10,2017,11, +83,E10,2017,12, +83,E10,2018,1, +83,E10,2018,2, +83,E10,2018,3, +83,E10,2018,4, +83,E10,2018,5, +83,E10,2018,6, +83,E10,2018,7, +83,E10,2018,8, +83,E10,2018,9, +83,E10,2018,10, +83,E10,2018,11, +83,E10,2018,12, +83,E10,2019,1, +83,E10,2019,2, +83,E10,2019,3, +83,E10,2019,4, +83,E10,2019,5, +83,E10,2019,6, +83,E10,2019,7, +83,E10,2019,8, +83,E10,2019,9, +83,E10,2019,10, +83,E10,2019,11, +83,E10,2019,12, +83,E10,2020,1, +83,E10,2020,2, +83,E10,2020,3, +83,E10,2020,4, +83,E10,2020,5, +83,E10,2020,6, +83,E10,2020,7, +83,E10,2020,8, +83,E10,2020,9, +83,E10,2020,10, +83,E10,2020,11, +83,E10,2020,12, +83,E10,2021,1, +83,E10,2021,2, +83,E10,2021,3, +83,E10,2021,4, +83,E10,2021,5, +83,E10,2021,6, +83,E10,2021,7, +83,E10,2021,8, +83,E10,2021,9, +83,E10,2021,10, +83,E10,2021,11, +83,E10,2021,12, +83,E10,2022,1, +83,E10,2022,2, +83,E10,2022,3, +83,E10,2022,4, +83,E10,2022,5, +83,E10,2022,6, +83,E10,2022,7, +83,E10,2022,8, +83,E10,2022,9, +83,E10,2022,10, +83,E10,2022,11, +83,E10,2022,12, +83,E10,2023,1, +83,E10,2023,2, +83,E10,2023,3, +83,E10,2023,4, +83,E10,2023,5, +83,E10,2023,6, +83,E10,2023,7, +83,E10,2023,8, +83,E10,2023,9, +83,E10,2023,10, +83,E10,2023,11, +83,E10,2023,12, +83,E10,2024,1, +83,E10,2024,2, +83,E10,2024,3, +83,E10,2024,4, +83,E10,2024,5, +83,E10,2024,6, +83,E10,2024,7, +83,E10,2024,8, +83,E10,2024,9, +83,E10,2024,10, +83,E10,2024,11, +83,E10,2024,12, +83,SP98,2013,6,158.94 +83,SP98,2013,7,161.64 +83,SP98,2013,8,162.77 +83,SP98,2013,9,162.56 +83,SP98,2013,10,158.1 +83,SP98,2013,11,156.74 +83,SP98,2013,12,158.2 +83,SP98,2013,1, +83,SP98,2013,2, +83,SP98,2013,3, +83,SP98,2013,4, +83,SP98,2013,5, +83,SP98,2014,2,157.65 +83,SP98,2014,3,158.52 +83,SP98,2014,4,158.94 +83,SP98,2014,5,159.41 +83,SP98,2014,6,159.76 +83,SP98,2014,7,160.33 +83,SP98,2014,8,158.25 +83,SP98,2014,9,157.12 +83,SP98,2014,10,154.82 +83,SP98,2014,11,151.02 +83,SP98,2014,12,143.4 +83,SP98,2014,1,156.45 +83,SP98,2015,1,136.54 +83,SP98,2015,2,140.48 +83,SP98,2015,3,145.77 +83,SP98,2015,4,147.09 +83,SP98,2015,5,150.08 +83,SP98,2015,6,150.51 +83,SP98,2015,7,149.46 +83,SP98,2015,8,143.85 +83,SP98,2015,9,138.13 +83,SP98,2015,10,137.07 +83,SP98,2015,11,136.52 +83,SP98,2015,12,135.19 +83,SP98,2016,1, +83,SP98,2016,2, +83,SP98,2016,3, +83,SP98,2016,4, +83,SP98,2016,5, +83,SP98,2016,6, +83,SP98,2016,7, +83,SP98,2016,8, +83,SP98,2016,9, +83,SP98,2016,10, +83,SP98,2016,11, +83,SP98,2016,12, +83,SP98,2017,1, +83,SP98,2017,2, +83,SP98,2017,3, +83,SP98,2017,4, +83,SP98,2017,5, +83,SP98,2017,6, +83,SP98,2017,7, +83,SP98,2017,8, +83,SP98,2017,9, +83,SP98,2017,10, +83,SP98,2017,11, +83,SP98,2017,12, +83,SP98,2018,1, +83,SP98,2018,2, +83,SP98,2018,3, +83,SP98,2018,4, +83,SP98,2018,5, +83,SP98,2018,6, +83,SP98,2018,7, +83,SP98,2018,8, +83,SP98,2018,9, +83,SP98,2018,10, +83,SP98,2018,11, +83,SP98,2018,12, +83,SP98,2019,1, +83,SP98,2019,2, +83,SP98,2019,3, +83,SP98,2019,4, +83,SP98,2019,5, +83,SP98,2019,6, +83,SP98,2019,7, +83,SP98,2019,8, +83,SP98,2019,9, +83,SP98,2019,10, +83,SP98,2019,11, +83,SP98,2019,12, +83,SP98,2020,1, +83,SP98,2020,2, +83,SP98,2020,3, +83,SP98,2020,4, +83,SP98,2020,5, +83,SP98,2020,6, +83,SP98,2020,7, +83,SP98,2020,8, +83,SP98,2020,9, +83,SP98,2020,10, +83,SP98,2020,11, +83,SP98,2020,12, +83,SP98,2021,1, +83,SP98,2021,2, +83,SP98,2021,3, +83,SP98,2021,4, +83,SP98,2021,5, +83,SP98,2021,6, +83,SP98,2021,7, +83,SP98,2021,8, +83,SP98,2021,9, +83,SP98,2021,10, +83,SP98,2021,11, +83,SP98,2021,12, +83,SP98,2022,1, +83,SP98,2022,2, +83,SP98,2022,3, +83,SP98,2022,4, +83,SP98,2022,5, +83,SP98,2022,6, +83,SP98,2022,7, +83,SP98,2022,8, +83,SP98,2022,9, +83,SP98,2022,10, +83,SP98,2022,11, +83,SP98,2022,12, +83,SP98,2023,1, +83,SP98,2023,2, +83,SP98,2023,3, +83,SP98,2023,4, +83,SP98,2023,5, +83,SP98,2023,6, +83,SP98,2023,7, +83,SP98,2023,8, +83,SP98,2023,9, +83,SP98,2023,10, +83,SP98,2023,11, +83,SP98,2023,12, +83,SP98,2024,1, +83,SP98,2024,2, +83,SP98,2024,3, +83,SP98,2024,4, +83,SP98,2024,5, +83,SP98,2024,6, +83,SP98,2024,7, +83,SP98,2024,8, +83,SP98,2024,9, +83,SP98,2024,10, +83,SP98,2024,11, +83,SP98,2024,12, +93,Gazole,2007,1,102.85 +93,Gazole,2007,2,103.04 +93,Gazole,2007,3,104.72 +93,Gazole,2007,4,107.57 +93,Gazole,2007,5,108.27 +93,Gazole,2007,6,109.3 +93,Gazole,2007,7,110.33 +93,Gazole,2007,8,110.21 +93,Gazole,2007,9,111.83 +93,Gazole,2007,10,113.59 +93,Gazole,2007,11,121.33 +93,Gazole,2007,12,122.25 +93,Gazole,2008,1,121.62 +93,Gazole,2008,2,122.21 +93,Gazole,2008,3,128.58 +93,Gazole,2008,4,131.39 +93,Gazole,2008,5,140.82 +93,Gazole,2008,6,146.58 +93,Gazole,2008,7,145.39 +93,Gazole,2008,8,136.69 +93,Gazole,2008,9,132.83 +93,Gazole,2008,10,124.85 +93,Gazole,2008,11,114.63 +93,Gazole,2008,12,104.1 +93,Gazole,2009,1,100.22 +93,Gazole,2009,2,98.9 +93,Gazole,2009,3,96.44 +93,Gazole,2009,4,98.8 +93,Gazole,2009,5,98.94 +93,Gazole,2009,6,103.37 +93,Gazole,2009,7,102.09 +93,Gazole,2009,8,105.05 +93,Gazole,2009,9,103.46 +93,Gazole,2009,10,104.01 +93,Gazole,2009,11,106.22 +93,Gazole,2009,12,105.77 +93,Gazole,2010,1,109.54 +93,Gazole,2010,2,110.01 +93,Gazole,2010,3,113.89 +93,Gazole,2010,4,117.18 +93,Gazole,2010,5,118.75 +93,Gazole,2010,6,118.34 +93,Gazole,2010,7,116.18 +93,Gazole,2010,8,116.07 +93,Gazole,2010,9,116.2 +93,Gazole,2010,10,119.32 +93,Gazole,2010,11,120.36 +93,Gazole,2010,12,124.02 +93,Gazole,2011,1,129.03 +93,Gazole,2011,2,132.27 +93,Gazole,2011,3,137.77 +93,Gazole,2011,4,139.02 +93,Gazole,2011,5,135.51 +93,Gazole,2011,6,134.22 +93,Gazole,2011,7,134.52 +93,Gazole,2011,8,133.66 +93,Gazole,2011,9,134.97 +93,Gazole,2011,10,135.96 +93,Gazole,2011,11,138.95 +93,Gazole,2011,12,139.29 +93,Gazole,2012,1,143.16 +93,Gazole,2012,2,145.16 +93,Gazole,2012,3,147.75 +93,Gazole,2012,4,146.54 +93,Gazole,2012,5,143.62 +93,Gazole,2012,6,138.12 +93,Gazole,2012,7,140.46 +93,Gazole,2012,8,146.01 +93,Gazole,2012,9,142.49 +93,Gazole,2012,10,141.63 +93,Gazole,2012,11,139.54 +93,Gazole,2012,12,139.26 +93,Gazole,2013,1,140.63 +93,Gazole,2013,2,143.89 +93,Gazole,2013,3,142.26 +93,Gazole,2013,4,138.23 +93,Gazole,2013,5,135.7 +93,Gazole,2013,6,136.05 +93,Gazole,2013,7,137.68 +93,Gazole,2013,8,138.16 +93,Gazole,2013,9,139.55 +93,Gazole,2013,10,136.2 +93,Gazole,2013,11,135.02 +93,Gazole,2013,12,136.55 +93,Gazole,2014,1,135.27 +93,Gazole,2014,2,135.57 +93,Gazole,2014,3,134.7 +93,Gazole,2014,4,134.16 +93,Gazole,2014,5,134.11 +93,Gazole,2014,6,134.33 +93,Gazole,2014,7,134.27 +93,Gazole,2014,8,133.52 +93,Gazole,2014,9,132.92 +93,Gazole,2014,10,130.22 +93,Gazole,2014,11,127.26 +93,Gazole,2014,12,119.01 +93,Gazole,2015,1,114.55 +93,Gazole,2015,2,120.13 +93,Gazole,2015,3,123.39 +93,Gazole,2015,4,123.21 +93,Gazole,2015,5,126.36 +93,Gazole,2015,6,124.86 +93,Gazole,2015,7,121.54 +93,Gazole,2015,8,116.13 +93,Gazole,2015,9,114.05 +93,Gazole,2015,10,113.41 +93,Gazole,2015,11,112.97 +93,Gazole,2015,12,107.1 +93,Gazole,2016,1,105.02 +93,Gazole,2016,2,104.5 +93,Gazole,2016,3,108.52 +93,Gazole,2016,4,109.28 +93,Gazole,2016,5,114.84 +93,Gazole,2016,6,119.01 +93,Gazole,2016,7,115.77 +93,Gazole,2016,8,113.44 +93,Gazole,2016,9,114.45 +93,Gazole,2016,10,118.16 +93,Gazole,2016,11,117.81 +93,Gazole,2016,12,122.09 +93,Gazole,2017,1,129.05 +93,Gazole,2017,2,129.36 +93,Gazole,2017,3,127.52 +93,Gazole,2017,4,127.09 +93,Gazole,2017,5,124.42 +93,Gazole,2017,6,121.48 +93,Gazole,2017,7,120.61 +93,Gazole,2017,8,122.58 +93,Gazole,2017,9,124.59 +93,Gazole,2017,10,126.79 +93,Gazole,2017,11,129.74 +93,Gazole,2017,12,130.83 +93,Gazole,2018,1,142.12 +93,Gazole,2018,2,140.82 +93,Gazole,2018,3,140.21 +93,Gazole,2018,4,142.58 +93,Gazole,2018,5,147.63 +93,Gazole,2018,6,149.15 +93,Gazole,2018,7,147.63 +93,Gazole,2018,8,147.78 +93,Gazole,2018,9,150.09 +93,Gazole,2018,10,154.52 +93,Gazole,2018,11,151.2 +93,Gazole,2018,12,146.85 +93,Gazole,2019,1,142.75 +93,Gazole,2019,2,146.24 +93,Gazole,2019,3,148.76 +93,Gazole,2019,4,149.75 +93,Gazole,2019,5,150.65 +93,Gazole,2019,6,145.67 +93,Gazole,2019,7,145.25 +93,Gazole,2019,8,144.18 +93,Gazole,2019,9,146.01 +93,Gazole,2019,10,146.77 +93,Gazole,2019,11,146.85 +93,Gazole,2019,12,149.2 +93,Gazole,2020,1,150.89 +93,Gazole,2020,2,144.45 +93,Gazole,2020,3,133.81 +93,Gazole,2020,4,125.75 +93,Gazole,2020,5,120.93 +93,Gazole,2020,6,124.08 +93,Gazole,2020,7,127.15 +93,Gazole,2020,8,126.85 +93,Gazole,2020,9,124.41 +93,Gazole,2020,10,123.55 +93,Gazole,2020,11,124.62 +93,Gazole,2020,12,128.5 +93,Gazole,2021,1,132.78 +93,Gazole,2021,2,136.79 +93,Gazole,2021,3,141.0 +93,Gazole,2021,4,140.39 +93,Gazole,2021,5,141.57 +93,Gazole,2021,6,143.92 +93,Gazole,2021,7,146.98 +93,Gazole,2021,8,146.12 +93,Gazole,2021,9,147.53 +93,Gazole,2021,10,156.67 +93,Gazole,2021,11,158.67 +93,Gazole,2021,12,155.71 +93,Gazole,2022,1,165.0 +93,Gazole,2022,2,173.0 +93,Gazole,2022,3,205.0 +93,Gazole,2022,4,188.0 +93,Gazole,2022,5,193.0 +93,Gazole,2022,6,210.0 +93,Gazole,2022,7,202.0 +93,Gazole,2022,8,190.0 +93,Gazole,2022,9,175.0 +93,Gazole,2022,10,188.0 +93,Gazole,2022,11,187.0 +93,Gazole,2022,12,179.0 +93,Gazole,2023,1,193.0 +93,Gazole,2023,2,186.0 +93,Gazole,2023,3,186.0 +93,Gazole,2023,4,183.0 +93,Gazole,2023,5,171.0 +93,Gazole,2023,6,172.0 +93,Gazole,2023,7,173.0 +93,Gazole,2023,8,186.0 +93,Gazole,2023,9,193.0 +93,Gazole,2023,10,191.0 +93,Gazole,2023,11,184.0 +93,Gazole,2023,12,178.0 +93,Gazole,2024,1,176.0 +93,Gazole,2024,2,183.0 +93,Gazole,2024,3,181.0 +93,Gazole,2024,4,180.0 +93,Gazole,2024,5,174.0 +93,Gazole,2024,6,173.0 +93,Gazole,2024,7,176.0 +93,Gazole,2024,8,176.0 +93,Gazole,2024,9,176.0 +93,Gazole,2024,10,176.0 +93,Gazole,2024,11,176.0 +93,Gazole,2024,12,176.0 +93,SP95,2007,1,118.11 +93,SP95,2007,2,119.09 +93,SP95,2007,3,123.93 +93,SP95,2007,4,128.32 +93,SP95,2007,5,132.44 +93,SP95,2007,6,132.96 +93,SP95,2007,7,132.19 +93,SP95,2007,8,128.97 +93,SP95,2007,9,129.29 +93,SP95,2007,10,129.59 +93,SP95,2007,11,134.84 +93,SP95,2007,12,134.64 +93,SP95,2008,1,136.79 +93,SP95,2008,2,136.57 +93,SP95,2008,3,138.61 +93,SP95,2008,4,140.41 +93,SP95,2008,5,146.42 +93,SP95,2008,6,151.49 +93,SP95,2008,7,150.11 +93,SP95,2008,8,144.36 +93,SP95,2008,9,143.7 +93,SP95,2008,10,134.21 +93,SP95,2008,11,121.5 +93,SP95,2008,12,113.04 +93,SP95,2009,1,112.54 +93,SP95,2009,2,116.21 +93,SP95,2009,3,116.37 +93,SP95,2009,4,119.16 +93,SP95,2009,5,122.25 +93,SP95,2009,6,127.84 +93,SP95,2009,7,125.6 +93,SP95,2009,8,128.56 +93,SP95,2009,9,126.08 +93,SP95,2009,10,125.62 +93,SP95,2009,11,127.98 +93,SP95,2009,12,127.47 +93,SP95,2010,1,131.83 +93,SP95,2010,2,133.01 +93,SP95,2010,3,137.13 +93,SP95,2010,4,139.35 +93,SP95,2010,5,139.36 +93,SP95,2010,6,138.04 +93,SP95,2010,7,136.22 +93,SP95,2010,8,135.21 +93,SP95,2010,9,135.38 +93,SP95,2010,10,138.04 +93,SP95,2010,11,139.34 +93,SP95,2010,12,143.46 +93,SP95,2011,1,148.22 +93,SP95,2011,2,149.34 +93,SP95,2011,3,153.36 +93,SP95,2011,4,155.44 +93,SP95,2011,5,155.2 +93,SP95,2011,6,152.36 +93,SP95,2011,7,152.83 +93,SP95,2011,8,152.19 +93,SP95,2011,9,153.53 +93,SP95,2011,10,152.31 +93,SP95,2011,11,151.7 +93,SP95,2011,12,151.11 +93,SP95,2012,1,156.7 +93,SP95,2012,2,160.9 +93,SP95,2012,3,165.29 +93,SP95,2012,4,167.82 +93,SP95,2012,5,162.02 +93,SP95,2012,6,156.52 +93,SP95,2012,7,157.76 +93,SP95,2012,8,164.16 +93,SP95,2012,9,160.56 +93,SP95,2012,10,157.97 +93,SP95,2012,11,153.77 +93,SP95,2012,12,154.68 +93,SP95,2013,1,158.5 +93,SP95,2013,2,164.72 +93,SP95,2013,3,163.45 +93,SP95,2013,4,159.06 +93,SP95,2013,5,156.03 +93,SP95,2013,6,157.02 +93,SP95,2013,7,157.82 +93,SP95,2013,8,158.24 +93,SP95,2013,9,157.51 +93,SP95,2013,10,153.52 +93,SP95,2013,11,152.36 +93,SP95,2013,12,153.95 +93,SP95,2014,1,152.23 +93,SP95,2014,2,153.45 +93,SP95,2014,3,154.12 +93,SP95,2014,4,154.83 +93,SP95,2014,5,155.31 +93,SP95,2014,6,155.89 +93,SP95,2014,7,156.58 +93,SP95,2014,8,154.44 +93,SP95,2014,9,153.29 +93,SP95,2014,10,150.69 +93,SP95,2014,11,147.2 +93,SP95,2014,12,139.68 +93,SP95,2015,1,131.66 +93,SP95,2015,2,137.06 +93,SP95,2015,3,142.0 +93,SP95,2015,4,143.17 +93,SP95,2015,5,146.02 +93,SP95,2015,6,146.56 +93,SP95,2015,7,145.71 +93,SP95,2015,8,140.09 +93,SP95,2015,9,135.0 +93,SP95,2015,10,133.96 +93,SP95,2015,11,133.48 +93,SP95,2015,12,132.03 +93,SP95,2016,1,129.71 +93,SP95,2016,2,127.89 +93,SP95,2016,3,129.84 +93,SP95,2016,4,132.35 +93,SP95,2016,5,135.5 +93,SP95,2016,6,138.39 +93,SP95,2016,7,134.23 +93,SP95,2016,8,132.19 +93,SP95,2016,9,133.56 +93,SP95,2016,10,136.32 +93,SP95,2016,11,136.37 +93,SP95,2016,12,139.65 +93,SP95,2017,1,145.07 +93,SP95,2017,2,145.43 +93,SP95,2017,3,143.3 +93,SP95,2017,4,143.63 +93,SP95,2017,5,141.44 +93,SP95,2017,6,138.5 +93,SP95,2017,7,136.78 +93,SP95,2017,8,138.14 +93,SP95,2017,9,140.21 +93,SP95,2017,10,140.45 +93,SP95,2017,11,142.83 +93,SP95,2017,12,143.9 +93,SP95,2018,1,151.38 +93,SP95,2018,2,151.12 +93,SP95,2018,3,150.6 +93,SP95,2018,4,152.3 +93,SP95,2018,5,156.06 +93,SP95,2018,6,157.79 +93,SP95,2018,7,156.94 +93,SP95,2018,8,156.91 +93,SP95,2018,9,157.59 +93,SP95,2018,10,159.05 +93,SP95,2018,11,153.78 +93,SP95,2018,12,150.63 +93,SP95,2019,1,146.06 +93,SP95,2019,2,148.64 +93,SP95,2019,3,152.59 +93,SP95,2019,4,157.72 +93,SP95,2019,5,158.87 +93,SP95,2019,6,155.24 +93,SP95,2019,7,155.11 +93,SP95,2019,8,153.57 +93,SP95,2019,9,153.62 +93,SP95,2019,10,153.79 +93,SP95,2019,11,154.43 +93,SP95,2019,12,156.1 +93,SP95,2020,1,157.62 +93,SP95,2020,2,154.77 +93,SP95,2020,3,145.81 +93,SP95,2020,4,136.31 +93,SP95,2020,5,132.32 +93,SP95,2020,6,135.68 +93,SP95,2020,7,138.28 +93,SP95,2020,8,138.39 +93,SP95,2020,9,138.82 +93,SP95,2020,11,138.03 +93,SP95,2020,12,139.71 +93,SP95,2020,10,138.43 +93,SP95,2021,1,143.56 +93,SP95,2021,2,148.39 +93,SP95,2021,3,153.69 +93,SP95,2021,4,154.95 +93,SP95,2021,5,155.62 +93,SP95,2021,6,156.76 +93,SP95,2021,7,160.24 +93,SP95,2021,8,161.05 +93,SP95,2021,9,161.73 +93,SP95,2021,10,166.03 +93,SP95,2021,11,167.83 +93,SP95,2021,12,166.14 +93,SP95,2022,1,173.0 +93,SP95,2022,2,182.0 +93,SP95,2022,3,203.0 +93,SP95,2022,4,185.0 +93,SP95,2022,5,193.0 +93,SP95,2022,6,208.0 +93,SP95,2022,7,201.0 +93,SP95,2022,8,183.0 +93,SP95,2022,9,160.0 +93,SP95,2022,10,172.0 +93,SP95,2022,11,177.0 +93,SP95,2022,12,174.0 +93,SP95,2023,1,189.0 +93,SP95,2023,2,192.0 +93,SP95,2023,3,194.0 +93,SP95,2023,4,197.0 +93,SP95,2023,5,190.0 +93,SP95,2023,6,190.0 +93,SP95,2023,7,190.0 +93,SP95,2023,8,195.0 +93,SP95,2023,9,198.0 +93,SP95,2023,10,191.0 +93,SP95,2023,11,189.0 +93,SP95,2023,12,186.0 +93,SP95,2024,1,183.0 +93,SP95,2024,2,188.0 +93,SP95,2024,3,191.0 +93,SP95,2024,4,195.0 +93,SP95,2024,5,194.0 +93,SP95,2024,6,189.0 +93,SP95,2024,7,190.0 +93,SP95,2024,8,190.0 +93,SP95,2024,9,190.0 +93,SP95,2024,10,190.0 +93,SP95,2024,11,190.0 +93,SP95,2024,12,190.0 +93,GPLc,2007,11,74.71 +93,GPLc,2007,12,73.73 +93,GPLc,2007,1, +93,GPLc,2007,2, +93,GPLc,2007,3, +93,GPLc,2007,4, +93,GPLc,2007,5, +93,GPLc,2007,6, +93,GPLc,2007,7, +93,GPLc,2007,8, +93,GPLc,2007,9, +93,GPLc,2007,10, +93,GPLc,2008,3,74.48 +93,GPLc,2008,5,75.46 +93,GPLc,2008,6,76.77 +93,GPLc,2008,12,74.5 +93,GPLc,2008,1,74.67 +93,GPLc,2008,7,77.49 +93,GPLc,2008,9,78.69 +93,GPLc,2008,4,74.36 +93,GPLc,2008,2,74.65 +93,GPLc,2008,8,78.42 +93,GPLc,2008,10,78.63 +93,GPLc,2008,11,77.65 +93,GPLc,2009,3,67.51 +93,GPLc,2009,5,64.62 +93,GPLc,2009,6,64.61 +93,GPLc,2009,12,67.17 +93,GPLc,2009,7,64.37 +93,GPLc,2009,8,64.32 +93,GPLc,2009,9,65.88 +93,GPLc,2009,10,65.65 +93,GPLc,2009,4,65.32 +93,GPLc,2009,11,66.03 +93,GPLc,2009,2,69.03 +93,GPLc,2009,1,69.45 +93,GPLc,2010,2,69.86 +93,GPLc,2010,4,69.24 +93,GPLc,2010,8,73.67 +93,GPLc,2010,10,74.74 +93,GPLc,2010,11,75.96 +93,GPLc,2010,12,78.97 +93,GPLc,2010,3,69.22 +93,GPLc,2010,9,74.05 +93,GPLc,2010,5,70.35 +93,GPLc,2010,1,69.52 +93,GPLc,2010,6,71.54 +93,GPLc,2010,7,73.08 +93,GPLc,2011,1,80.57 +93,GPLc,2011,4,83.34 +93,GPLc,2011,6,84.52 +93,GPLc,2011,8,84.97 +93,GPLc,2011,12,85.04 +93,GPLc,2011,3,81.91 +93,GPLc,2011,5,84.26 +93,GPLc,2011,7,84.69 +93,GPLc,2011,9,85.07 +93,GPLc,2011,10,84.97 +93,GPLc,2011,11,85.06 +93,GPLc,2011,2,81.28 +93,GPLc,2012,1,84.83 +93,GPLc,2012,3,87.62 +93,GPLc,2012,7,87.16 +93,GPLc,2012,10,87.76 +93,GPLc,2012,9,87.22 +93,GPLc,2012,2,85.93 +93,GPLc,2012,5,88.31 +93,GPLc,2012,6,88.18 +93,GPLc,2012,4,88.28 +93,GPLc,2012,8,87.14 +93,GPLc,2012,11,88.36 +93,GPLc,2012,12,88.62 +93,GPLc,2013,2,89.64 +93,GPLc,2013,7,87.28 +93,GPLc,2013,10,86.76 +93,GPLc,2013,3,89.87 +93,GPLc,2013,4,89.59 +93,GPLc,2013,5,88.17 +93,GPLc,2013,6,87.88 +93,GPLc,2013,1,89.84 +93,GPLc,2013,8,86.97 +93,GPLc,2013,9,87.35 +93,GPLc,2013,11,86.78 +93,GPLc,2013,12,87.16 +93,GPLc,2014,3,87.15 +93,GPLc,2014,4,86.93 +93,GPLc,2014,9,86.16 +93,GPLc,2014,10,86.14 +93,GPLc,2014,7,86.62 +93,GPLc,2014,8,86.34 +93,GPLc,2014,1,87.91 +93,GPLc,2014,2,87.36 +93,GPLc,2014,5,86.96 +93,GPLc,2014,6,86.86 +93,GPLc,2014,11,85.88 +93,GPLc,2014,12,85.61 +93,GPLc,2015,1,84.53 +93,GPLc,2015,6,81.44 +93,GPLc,2015,10,77.86 +93,GPLc,2015,11,77.42 +93,GPLc,2015,12,76.36 +93,GPLc,2015,7,80.34 +93,GPLc,2015,3,81.76 +93,GPLc,2015,4,81.86 +93,GPLc,2015,5,82.43 +93,GPLc,2015,8,80.2 +93,GPLc,2015,9,79.19 +93,GPLc,2015,2,82.8 +93,GPLc,2016,1,74.36 +93,GPLc,2016,3,72.14 +93,GPLc,2016,7,71.39 +93,GPLc,2016,11,71.47 +93,GPLc,2016,6,71.58 +93,GPLc,2016,9,70.96 +93,GPLc,2016,4,71.42 +93,GPLc,2016,8,70.98 +93,GPLc,2016,12,71.88 +93,GPLc,2016,2,73.78 +93,GPLc,2016,5,71.11 +93,GPLc,2016,10,70.98 +93,GPLc,2017,2,74.28 +93,GPLc,2017,7,74.85 +93,GPLc,2017,9,75.72 +93,GPLc,2017,10,76.47 +93,GPLc,2017,11,77.54 +93,GPLc,2017,1,72.37 +93,GPLc,2017,3,75.27 +93,GPLc,2017,4,75.73 +93,GPLc,2017,5,75.54 +93,GPLc,2017,6,75.48 +93,GPLc,2017,8,74.72 +93,GPLc,2017,12,78.53 +93,GPLc,2018,1,83.1 +93,GPLc,2018,8,82.48 +93,GPLc,2018,10,84.9 +93,GPLc,2018,3,81.94 +93,GPLc,2018,11,85.32 +93,GPLc,2018,2,82.66 +93,GPLc,2018,9,83.56 +93,GPLc,2018,6,83.59 +93,GPLc,2018,7,83.24 +93,GPLc,2018,12,86.48 +93,GPLc,2018,4,81.96 +93,GPLc,2018,5,82.52 +93,GPLc,2019,6,88.59 +93,GPLc,2019,10,87.87 +93,GPLc,2019,12,88.13 +93,GPLc,2019,5,87.57 +93,GPLc,2019,2,85.83 +93,GPLc,2019,3,85.92 +93,GPLc,2019,4,86.49 +93,GPLc,2019,7,88.11 +93,GPLc,2019,9,88.02 +93,GPLc,2019,11,87.81 +93,GPLc,2019,1,86.31 +93,GPLc,2019,8,87.95 +93,GPLc,2020,1,87.46 +93,GPLc,2020,9,86.41 +93,GPLc,2020,5,85.68 +93,GPLc,2020,8,86.06 +93,GPLc,2020,2,87.87 +93,GPLc,2020,3,87.04 +93,GPLc,2020,4,86.28 +93,GPLc,2020,6,85.83 +93,GPLc,2020,7,85.98 +93,GPLc,2020,10,87.15 +93,GPLc,2020,11,86.46 +93,GPLc,2020,12,87.01 +93,GPLc,2021,5,86.05 +93,GPLc,2021,10,88.56 +93,GPLc,2021,2,84.89 +93,GPLc,2021,8,87.02 +93,GPLc,2021,1,84.74 +93,GPLc,2021,3,85.49 +93,GPLc,2021,4,85.77 +93,GPLc,2021,6,86.19 +93,GPLc,2021,7,86.6 +93,GPLc,2021,9,87.38 +93,GPLc,2021,11,89.83 +93,GPLc,2021,12,90.87 +93,GPLc,2022,1,91.0 +93,GPLc,2022,3,96.0 +93,GPLc,2022,4,84.0 +93,GPLc,2022,5,85.0 +93,GPLc,2022,8,87.0 +93,GPLc,2022,9,78.0 +93,GPLc,2022,10,77.0 +93,GPLc,2022,11,83.0 +93,GPLc,2022,12,90.0 +93,GPLc,2022,2,92.0 +93,GPLc,2022,7,87.0 +93,GPLc,2022,6,86.0 +93,GPLc,2023,1,100.0 +93,GPLc,2023,2,100.0 +93,GPLc,2023,3,101.0 +93,GPLc,2023,4,102.0 +93,GPLc,2023,5,101.0 +93,GPLc,2023,7,100.0 +93,GPLc,2023,9,101.0 +93,GPLc,2023,10,101.0 +93,GPLc,2023,12,101.0 +93,GPLc,2023,8,101.0 +93,GPLc,2023,6,100.0 +93,GPLc,2023,11,101.0 +93,GPLc,2024,1,100.0 +93,GPLc,2024,3,101.0 +93,GPLc,2024,4,101.0 +93,GPLc,2024,6,100.0 +93,GPLc,2024,2,101.0 +93,GPLc,2024,5,101.0 +93,GPLc,2024,7,100.0 +93,GPLc,2024,8,100.0 +93,GPLc,2024,9,100.0 +93,GPLc,2024,10,100.0 +93,GPLc,2024,11,100.0 +93,GPLc,2024,12,100.0 +93,E85,2007,12,82.63 +93,E85,2007,4,80.93 +93,E85,2007,8,82.38 +93,E85,2007,10,81.89 +93,E85,2007,11,81.97 +93,E85,2007,6,81.36 +93,E85,2007,7,82.19 +93,E85,2007,9,81.98 +93,E85,2007,1,80.0 +93,E85,2007,2,80.0 +93,E85,2007,3,80.0 +93,E85,2007,5,80.74 +93,E85,2008,2,84.26 +93,E85,2008,11,87.74 +93,E85,2008,12,88.74 +93,E85,2008,3,84.28 +93,E85,2008,5,84.1 +93,E85,2008,7,86.45 +93,E85,2008,9,88.3 +93,E85,2008,1,83.26 +93,E85,2008,4,83.99 +93,E85,2008,6,84.7 +93,E85,2008,8,87.83 +93,E85,2008,10,88.23 +93,E85,2009,10,102.56 +93,E85,2009,7,93.61 +93,E85,2009,8,98.0 +93,E85,2009,9,99.54 +93,E85,2009,1,86.33 +93,E85,2009,2,85.46 +93,E85,2009,6,87.39 +93,E85,2009,3,87.0 +93,E85,2009,4,87.14 +93,E85,2009,5,87.26 +93,E85,2009,11,105.06 +93,E85,2009,12,106.52 +93,E85,2010,9,110.64 +93,E85,2010,4,100.52 +93,E85,2010,7,106.9 +93,E85,2010,8,108.54 +93,E85,2010,2,98.28 +93,E85,2010,3,97.84 +93,E85,2010,6,103.96 +93,E85,2010,1,98.09 +93,E85,2010,5,101.78 +93,E85,2010,11,112.51 +93,E85,2010,12,111.89 +93,E85,2010,10,111.44 +93,E85,2011,1,88.85 +93,E85,2011,3,91.28 +93,E85,2011,4,93.26 +93,E85,2011,7,92.66 +93,E85,2011,12,93.67 +93,E85,2011,2,88.85 +93,E85,2011,5,93.38 +93,E85,2011,6,93.04 +93,E85,2011,8,93.11 +93,E85,2011,9,94.08 +93,E85,2011,10,94.19 +93,E85,2011,11,94.03 +93,E85,2012,2,91.69 +93,E85,2012,3,92.31 +93,E85,2012,8,93.67 +93,E85,2012,9,93.21 +93,E85,2012,4,92.78 +93,E85,2012,1,91.63 +93,E85,2012,5,92.98 +93,E85,2012,6,92.4 +93,E85,2012,7,92.68 +93,E85,2012,10,93.62 +93,E85,2012,11,93.43 +93,E85,2012,12,93.25 +93,E85,2013,4,94.8 +93,E85,2013,1,93.92 +93,E85,2013,5,94.2 +93,E85,2013,7,94.21 +93,E85,2013,9,94.09 +93,E85,2013,10,93.21 +93,E85,2013,11,92.72 +93,E85,2013,12,92.65 +93,E85,2013,2,94.85 +93,E85,2013,3,94.88 +93,E85,2013,8,93.99 +93,E85,2013,6,94.26 +93,E85,2014,6,89.7 +93,E85,2014,9,89.79 +93,E85,2014,4,89.87 +93,E85,2014,7,90.06 +93,E85,2014,8,89.97 +93,E85,2014,1,92.19 +93,E85,2014,2,91.41 +93,E85,2014,3,91.04 +93,E85,2014,5,89.76 +93,E85,2014,10,89.63 +93,E85,2014,11,89.79 +93,E85,2014,12,90.51 +93,E85,2015,7,86.28 +93,E85,2015,10,85.0 +93,E85,2015,11,84.99 +93,E85,2015,12,84.06 +93,E85,2015,9,86.38 +93,E85,2015,8,86.87 +93,E85,2015,1,87.6 +93,E85,2015,2,87.11 +93,E85,2015,3,87.79 +93,E85,2015,4,87.3 +93,E85,2015,5,87.07 +93,E85,2015,6,86.69 +93,E85,2016,7,80.98 +93,E85,2016,1,74.59 +93,E85,2016,2,76.75 +93,E85,2016,3,76.86 +93,E85,2016,4,78.23 +93,E85,2016,5,79.6 +93,E85,2016,6,81.0 +93,E85,2016,8,81.64 +93,E85,2016,9,82.25 +93,E85,2016,10,82.17 +93,E85,2016,11,82.06 +93,E85,2016,12,82.25 +93,E85,2017,1,70.93 +93,E85,2017,2,70.85 +93,E85,2017,3,70.79 +93,E85,2017,4,70.08 +93,E85,2017,5,69.77 +93,E85,2017,6,70.08 +93,E85,2017,7,71.1 +93,E85,2017,8,71.76 +93,E85,2017,9,72.83 +93,E85,2017,10,72.92 +93,E85,2017,11,72.54 +93,E85,2017,12,72.22 +93,E85,2018,1,70.31 +93,E85,2018,2,70.64 +93,E85,2018,3,70.53 +93,E85,2018,4,71.52 +93,E85,2018,5,71.13 +93,E85,2018,6,71.54 +93,E85,2018,7,71.43 +93,E85,2018,8,71.01 +93,E85,2018,9,71.6 +93,E85,2018,10,72.73 +93,E85,2018,11,72.28 +93,E85,2018,12,72.78 +93,E85,2019,1,68.25 +93,E85,2019,2,67.62 +93,E85,2019,3,67.44 +93,E85,2019,4,67.57 +93,E85,2019,5,68.35 +93,E85,2019,6,68.28 +93,E85,2019,7,68.22 +93,E85,2019,8,68.24 +93,E85,2019,9,68.37 +93,E85,2019,10,68.17 +93,E85,2019,11,68.3 +93,E85,2019,12,68.9 +93,E85,2020,12,67.73 +93,E85,2020,9,67.84 +93,E85,2020,1,70.26 +93,E85,2020,2,69.61 +93,E85,2020,3,69.01 +93,E85,2020,4,68.71 +93,E85,2020,5,68.19 +93,E85,2020,6,68.21 +93,E85,2020,7,67.94 +93,E85,2020,8,67.84 +93,E85,2020,10,67.68 +93,E85,2020,11,67.57 +93,E85,2021,1,69.49 +93,E85,2021,5,69.94 +93,E85,2021,10,72.08 +93,E85,2021,11,73.18 +93,E85,2021,6,70.02 +93,E85,2021,9,71.18 +93,E85,2021,2,69.11 +93,E85,2021,3,69.47 +93,E85,2021,4,69.78 +93,E85,2021,7,70.66 +93,E85,2021,8,70.97 +93,E85,2021,12,73.56 +93,E85,2022,1,76.0 +93,E85,2022,2,79.0 +93,E85,2022,3,92.0 +93,E85,2022,4,79.0 +93,E85,2022,5,80.0 +93,E85,2022,6,85.0 +93,E85,2022,7,88.0 +93,E85,2022,8,84.0 +93,E85,2022,9,70.0 +93,E85,2022,10,75.0 +93,E85,2022,11,86.0 +93,E85,2022,12,90.0 +93,E85,2023,1,113.0 +93,E85,2023,2,115.0 +93,E85,2023,3,116.0 +93,E85,2023,4,116.0 +93,E85,2023,5,114.0 +93,E85,2023,7,108.0 +93,E85,2023,8,107.0 +93,E85,2023,9,107.0 +93,E85,2023,10,105.0 +93,E85,2023,11,105.0 +93,E85,2023,12,103.0 +93,E85,2023,6,112.0 +93,E85,2024,1,93.0 +93,E85,2024,2,92.0 +93,E85,2024,3,92.0 +93,E85,2024,4,92.0 +93,E85,2024,5,91.0 +93,E85,2024,6,89.0 +93,E85,2024,7,88.0 +93,E85,2024,8,88.0 +93,E85,2024,9,88.0 +93,E85,2024,10,88.0 +93,E85,2024,11,88.0 +93,E85,2024,12,88.0 +93,E10,2009,11,126.44 +93,E10,2009,12,125.77 +93,E10,2009,7,124.82 +93,E10,2009,8,127.53 +93,E10,2009,9,125.37 +93,E10,2009,10,124.78 +93,E10,2009,6,127.0 +93,E10,2009,5,119.97 +93,E10,2009,4,117.58 +93,E10,2009,1, +93,E10,2009,2, +93,E10,2009,3, +93,E10,2010,6,136.12 +93,E10,2010,1,129.99 +93,E10,2010,2,131.0 +93,E10,2010,3,134.85 +93,E10,2010,4,136.73 +93,E10,2010,5,136.78 +93,E10,2010,7,134.56 +93,E10,2010,8,133.46 +93,E10,2010,9,133.69 +93,E10,2010,10,135.73 +93,E10,2010,11,137.05 +93,E10,2010,12,140.19 +93,E10,2011,5,151.57 +93,E10,2011,6,149.05 +93,E10,2011,7,149.62 +93,E10,2011,8,149.15 +93,E10,2011,9,150.48 +93,E10,2011,10,149.12 +93,E10,2011,11,148.56 +93,E10,2011,12,148.78 +93,E10,2011,2,147.0 +93,E10,2011,3,150.64 +93,E10,2011,4,152.43 +93,E10,2011,1,145.9 +93,E10,2012,1,154.94 +93,E10,2012,2,159.12 +93,E10,2012,3,163.72 +93,E10,2012,4,166.32 +93,E10,2012,5,159.6 +93,E10,2012,6,153.23 +93,E10,2012,7,155.13 +93,E10,2012,8,161.49 +93,E10,2012,9,157.16 +93,E10,2012,10,154.32 +93,E10,2012,11,148.95 +93,E10,2012,12,150.18 +93,E10,2013,1,155.8 +93,E10,2013,2,162.29 +93,E10,2013,3,160.81 +93,E10,2013,4,156.41 +93,E10,2013,5,153.42 +93,E10,2013,6,154.28 +93,E10,2013,7,155.44 +93,E10,2013,8,155.68 +93,E10,2013,9,154.86 +93,E10,2013,10,150.43 +93,E10,2013,11,149.21 +93,E10,2013,12,151.02 +93,E10,2014,1,150.34 +93,E10,2014,2,151.24 +93,E10,2014,3,151.59 +93,E10,2014,4,152.35 +93,E10,2014,5,152.5 +93,E10,2014,6,153.3 +93,E10,2014,7,153.81 +93,E10,2014,8,151.76 +93,E10,2014,9,150.76 +93,E10,2014,10,148.0 +93,E10,2014,11,144.14 +93,E10,2014,12,136.21 +93,E10,2015,1,129.92 +93,E10,2015,2,134.98 +93,E10,2015,3,139.89 +93,E10,2015,4,141.22 +93,E10,2015,5,144.02 +93,E10,2015,6,144.49 +93,E10,2015,7,143.64 +93,E10,2015,8,137.1 +93,E10,2015,9,131.7 +93,E10,2015,10,130.39 +93,E10,2015,11,130.1 +93,E10,2015,12,128.44 +93,E10,2016,1,126.5 +93,E10,2016,2,123.66 +93,E10,2016,3,126.02 +93,E10,2016,4,128.74 +93,E10,2016,5,131.59 +93,E10,2016,6,133.74 +93,E10,2016,7,129.37 +93,E10,2016,8,127.66 +93,E10,2016,9,128.99 +93,E10,2016,10,132.0 +93,E10,2016,11,131.71 +93,E10,2016,12,135.77 +93,E10,2017,6,132.98 +93,E10,2017,1,140.31 +93,E10,2017,2,140.55 +93,E10,2017,3,137.99 +93,E10,2017,4,138.77 +93,E10,2017,5,136.36 +93,E10,2017,7,131.61 +93,E10,2017,8,133.27 +93,E10,2017,9,135.86 +93,E10,2017,10,135.81 +93,E10,2017,11,139.06 +93,E10,2017,12,139.91 +93,E10,2018,1,146.8 +93,E10,2018,2,145.99 +93,E10,2018,3,145.65 +93,E10,2018,4,147.84 +93,E10,2018,5,152.16 +93,E10,2018,6,153.62 +93,E10,2018,7,152.69 +93,E10,2018,8,152.46 +93,E10,2018,9,153.46 +93,E10,2018,10,155.2 +93,E10,2018,11,147.62 +93,E10,2018,12,143.96 +93,E10,2019,1,141.78 +93,E10,2019,2,144.29 +93,E10,2019,3,148.67 +93,E10,2019,4,154.48 +93,E10,2019,5,155.48 +93,E10,2019,6,150.66 +93,E10,2019,7,151.28 +93,E10,2019,8,149.02 +93,E10,2019,9,149.18 +93,E10,2019,10,149.05 +93,E10,2019,11,149.78 +93,E10,2019,12,152.25 +93,E10,2020,1,153.43 +93,E10,2020,2,149.87 +93,E10,2020,3,139.43 +93,E10,2020,4,129.17 +93,E10,2020,5,126.2 +93,E10,2020,6,131.39 +93,E10,2020,7,134.47 +93,E10,2020,8,134.1 +93,E10,2020,9,134.23 +93,E10,2020,10,133.91 +93,E10,2020,11,133.93 +93,E10,2020,12,136.03 +93,E10,2021,8,157.58 +93,E10,2021,9,158.18 +93,E10,2021,10,162.85 +93,E10,2021,11,164.01 +93,E10,2021,12,161.8 +93,E10,2021,1,141.25 +93,E10,2021,2,145.61 +93,E10,2021,3,151.25 +93,E10,2021,4,152.35 +93,E10,2021,5,152.6 +93,E10,2021,6,153.72 +93,E10,2021,7,157.59 +93,E10,2022,1,170.0 +93,E10,2022,2,178.0 +93,E10,2022,3,197.0 +93,E10,2022,4,176.0 +93,E10,2022,5,189.0 +93,E10,2022,6,204.0 +93,E10,2022,7,195.0 +93,E10,2022,8,176.0 +93,E10,2022,9,148.0 +93,E10,2022,10,160.0 +93,E10,2022,11,169.0 +93,E10,2022,12,166.0 +93,E10,2023,1,186.0 +93,E10,2023,2,188.0 +93,E10,2023,3,190.0 +93,E10,2023,4,194.0 +93,E10,2023,5,186.0 +93,E10,2023,6,186.0 +93,E10,2023,7,187.0 +93,E10,2023,8,194.0 +93,E10,2023,9,197.0 +93,E10,2023,10,187.0 +93,E10,2023,11,184.0 +93,E10,2023,12,181.0 +93,E10,2024,1,180.0 +93,E10,2024,2,184.0 +93,E10,2024,3,187.0 +93,E10,2024,4,192.0 +93,E10,2024,5,190.0 +93,E10,2024,6,184.0 +93,E10,2024,7,185.0 +93,E10,2024,8,185.0 +93,E10,2024,9,185.0 +93,E10,2024,10,185.0 +93,E10,2024,11,185.0 +93,E10,2024,12,185.0 +93,SP98,2013,6,159.02 +93,SP98,2013,7,161.78 +93,SP98,2013,8,162.28 +93,SP98,2013,9,161.74 +93,SP98,2013,10,157.43 +93,SP98,2013,11,156.17 +93,SP98,2013,12,157.82 +93,SP98,2013,1, +93,SP98,2013,2, +93,SP98,2013,3, +93,SP98,2013,4, +93,SP98,2013,5, +93,SP98,2014,1,156.93 +93,SP98,2014,2,157.93 +93,SP98,2014,3,158.53 +93,SP98,2014,4,159.1 +93,SP98,2014,5,159.56 +93,SP98,2014,6,160.21 +93,SP98,2014,7,160.9 +93,SP98,2014,8,158.84 +93,SP98,2014,9,157.78 +93,SP98,2014,10,155.28 +93,SP98,2014,11,151.69 +93,SP98,2014,12,143.93 +93,SP98,2015,1,136.48 +93,SP98,2015,2,141.35 +93,SP98,2015,3,146.31 +93,SP98,2015,4,147.73 +93,SP98,2015,5,150.79 +93,SP98,2015,6,151.43 +93,SP98,2015,7,150.75 +93,SP98,2015,8,144.72 +93,SP98,2015,9,138.95 +93,SP98,2015,10,137.78 +93,SP98,2015,11,137.54 +93,SP98,2015,12,136.17 +93,SP98,2016,1,134.92 +93,SP98,2016,2,132.35 +93,SP98,2016,3,133.96 +93,SP98,2016,4,136.53 +93,SP98,2016,5,139.57 +93,SP98,2016,7,138.78 +93,SP98,2016,8,136.82 +93,SP98,2016,9,138.09 +93,SP98,2016,10,140.9 +93,SP98,2016,11,140.9 +93,SP98,2016,12,144.66 +93,SP98,2016,6,142.73 +93,SP98,2017,1,149.9 +93,SP98,2017,2,150.38 +93,SP98,2017,3,147.99 +93,SP98,2017,4,148.51 +93,SP98,2017,5,146.29 +93,SP98,2017,6,143.2 +93,SP98,2017,7,141.32 +93,SP98,2017,8,142.56 +93,SP98,2017,9,145.01 +93,SP98,2017,11,148.38 +93,SP98,2017,12,149.44 +93,SP98,2017,10,145.21 +93,SP98,2018,1,156.36 +93,SP98,2018,2,155.84 +93,SP98,2018,3,155.39 +93,SP98,2018,4,157.39 +93,SP98,2018,5,161.88 +93,SP98,2018,6,163.69 +93,SP98,2018,7,162.58 +93,SP98,2018,8,162.36 +93,SP98,2018,9,163.35 +93,SP98,2018,10,165.19 +93,SP98,2018,11,157.62 +93,SP98,2018,12,153.81 +93,SP98,2019,1,150.88 +93,SP98,2019,2,153.35 +93,SP98,2019,3,157.58 +93,SP98,2019,4,163.3 +93,SP98,2019,5,164.56 +93,SP98,2019,6,160.17 +93,SP98,2019,7,160.32 +93,SP98,2019,8,158.11 +93,SP98,2019,9,158.17 +93,SP98,2019,10,158.25 +93,SP98,2019,11,158.84 +93,SP98,2019,12,161.22 +93,SP98,2020,1,162.46 +93,SP98,2020,2,159.2 +93,SP98,2020,3,149.49 +93,SP98,2020,4,139.36 +93,SP98,2020,5,135.6 +93,SP98,2020,6,139.97 +93,SP98,2020,7,143.22 +93,SP98,2020,8,143.26 +93,SP98,2020,9,143.79 +93,SP98,2020,11,143.17 +93,SP98,2020,12,144.94 +93,SP98,2020,10,143.18 +93,SP98,2021,1,149.82 +93,SP98,2021,2,154.09 +93,SP98,2021,3,160.1 +93,SP98,2021,4,161.17 +93,SP98,2021,5,161.53 +93,SP98,2021,6,162.49 +93,SP98,2021,7,166.74 +93,SP98,2021,8,167.12 +93,SP98,2021,9,168.0 +93,SP98,2021,10,172.84 +93,SP98,2021,11,174.04 +93,SP98,2021,12,171.99 +93,SP98,2022,1,180.0 +93,SP98,2022,2,188.0 +93,SP98,2022,3,207.0 +93,SP98,2022,4,187.0 +93,SP98,2022,5,200.0 +93,SP98,2022,6,215.0 +93,SP98,2022,7,207.0 +93,SP98,2022,8,187.0 +93,SP98,2022,9,160.0 +93,SP98,2022,10,171.0 +93,SP98,2022,11,181.0 +93,SP98,2022,12,178.0 +93,SP98,2023,1,195.0 +93,SP98,2023,2,197.0 +93,SP98,2023,3,199.0 +93,SP98,2023,4,202.0 +93,SP98,2023,5,195.0 +93,SP98,2023,6,195.0 +93,SP98,2023,7,195.0 +93,SP98,2023,8,201.0 +93,SP98,2023,9,203.0 +93,SP98,2023,10,196.0 +93,SP98,2023,11,193.0 +93,SP98,2023,12,189.0 +93,SP98,2024,1,189.0 +93,SP98,2024,2,193.0 +93,SP98,2024,3,196.0 +93,SP98,2024,4,200.0 +93,SP98,2024,5,198.0 +93,SP98,2024,6,194.0 +93,SP98,2024,7,195.0 +93,SP98,2024,8,195.0 +93,SP98,2024,9,195.0 +93,SP98,2024,10,195.0 +93,SP98,2024,11,195.0 +93,SP98,2024,12,195.0 +73,Gazole,2007,1,103.48 +73,Gazole,2007,2,103.69 +73,Gazole,2007,3,105.08 +73,Gazole,2007,8,110.56 +73,Gazole,2007,11,122.35 +73,Gazole,2007,12,122.76 +73,Gazole,2007,4,107.72 +73,Gazole,2007,5,108.46 +73,Gazole,2007,6,109.53 +73,Gazole,2007,7,110.38 +73,Gazole,2007,9,112.32 +73,Gazole,2007,10,114.03 +73,Gazole,2008,1,122.03 +73,Gazole,2008,2,122.5 +73,Gazole,2008,3,128.58 +73,Gazole,2008,4,131.23 +73,Gazole,2008,5,140.95 +73,Gazole,2008,6,146.74 +73,Gazole,2008,7,145.3 +73,Gazole,2008,8,136.17 +73,Gazole,2008,9,132.55 +73,Gazole,2008,10,124.57 +73,Gazole,2008,11,114.44 +73,Gazole,2008,12,103.17 +73,Gazole,2009,1,100.06 +73,Gazole,2009,2,98.86 +73,Gazole,2009,3,96.22 +73,Gazole,2009,4,98.62 +73,Gazole,2009,6,103.32 +73,Gazole,2009,7,101.89 +73,Gazole,2009,8,104.95 +73,Gazole,2009,10,104.0 +73,Gazole,2009,12,105.84 +73,Gazole,2009,5,98.96 +73,Gazole,2009,9,103.28 +73,Gazole,2009,11,106.42 +73,Gazole,2010,1,109.76 +73,Gazole,2010,2,110.28 +73,Gazole,2010,3,114.02 +73,Gazole,2010,4,117.49 +73,Gazole,2010,5,119.06 +73,Gazole,2010,6,118.55 +73,Gazole,2010,7,116.46 +73,Gazole,2010,8,116.26 +73,Gazole,2010,10,119.63 +73,Gazole,2010,11,120.45 +73,Gazole,2010,12,124.13 +73,Gazole,2010,9,116.55 +73,Gazole,2011,1,130.52 +73,Gazole,2011,2,133.73 +73,Gazole,2011,3,139.2 +73,Gazole,2011,4,139.95 +73,Gazole,2011,5,136.24 +73,Gazole,2011,7,135.79 +73,Gazole,2011,9,136.03 +73,Gazole,2011,10,137.2 +73,Gazole,2011,11,140.52 +73,Gazole,2011,12,140.55 +73,Gazole,2011,6,135.02 +73,Gazole,2011,8,134.85 +73,Gazole,2012,1,143.41 +73,Gazole,2012,2,144.83 +73,Gazole,2012,3,147.35 +73,Gazole,2012,4,146.04 +73,Gazole,2012,5,143.18 +73,Gazole,2012,6,137.47 +73,Gazole,2012,7,139.97 +73,Gazole,2012,8,145.92 +73,Gazole,2012,11,139.62 +73,Gazole,2012,12,139.07 +73,Gazole,2012,9,142.33 +73,Gazole,2012,10,141.73 +73,Gazole,2013,2,143.72 +73,Gazole,2013,3,142.43 +73,Gazole,2013,4,138.34 +73,Gazole,2013,5,135.98 +73,Gazole,2013,9,139.89 +73,Gazole,2013,10,136.26 +73,Gazole,2013,1,140.36 +73,Gazole,2013,6,136.03 +73,Gazole,2013,7,137.58 +73,Gazole,2013,8,138.15 +73,Gazole,2013,11,135.16 +73,Gazole,2013,12,136.67 +73,Gazole,2014,2,135.34 +73,Gazole,2014,3,134.41 +73,Gazole,2014,4,133.82 +73,Gazole,2014,6,133.9 +73,Gazole,2014,7,133.5 +73,Gazole,2014,10,129.47 +73,Gazole,2014,11,126.72 +73,Gazole,2014,12,117.82 +73,Gazole,2014,1,135.33 +73,Gazole,2014,5,133.87 +73,Gazole,2014,8,132.79 +73,Gazole,2014,9,132.24 +73,Gazole,2015,2,119.85 +73,Gazole,2015,4,123.29 +73,Gazole,2015,6,124.45 +73,Gazole,2015,8,115.46 +73,Gazole,2015,1,113.88 +73,Gazole,2015,3,123.39 +73,Gazole,2015,5,126.11 +73,Gazole,2015,7,120.96 +73,Gazole,2015,9,113.49 +73,Gazole,2015,11,112.8 +73,Gazole,2015,12,106.67 +73,Gazole,2015,10,113.08 +73,Gazole,2016,1, +73,Gazole,2016,2, +73,Gazole,2016,3, +73,Gazole,2016,4, +73,Gazole,2016,5, +73,Gazole,2016,6, +73,Gazole,2016,7, +73,Gazole,2016,8, +73,Gazole,2016,9, +73,Gazole,2016,10, +73,Gazole,2016,11, +73,Gazole,2016,12, +73,Gazole,2017,1, +73,Gazole,2017,2, +73,Gazole,2017,3, +73,Gazole,2017,4, +73,Gazole,2017,5, +73,Gazole,2017,6, +73,Gazole,2017,7, +73,Gazole,2017,8, +73,Gazole,2017,9, +73,Gazole,2017,10, +73,Gazole,2017,11, +73,Gazole,2017,12, +73,Gazole,2018,1, +73,Gazole,2018,2, +73,Gazole,2018,3, +73,Gazole,2018,4, +73,Gazole,2018,5, +73,Gazole,2018,6, +73,Gazole,2018,7, +73,Gazole,2018,8, +73,Gazole,2018,9, +73,Gazole,2018,10, +73,Gazole,2018,11, +73,Gazole,2018,12, +73,Gazole,2019,1, +73,Gazole,2019,2, +73,Gazole,2019,3, +73,Gazole,2019,4, +73,Gazole,2019,5, +73,Gazole,2019,6, +73,Gazole,2019,7, +73,Gazole,2019,8, +73,Gazole,2019,9, +73,Gazole,2019,10, +73,Gazole,2019,11, +73,Gazole,2019,12, +73,Gazole,2020,1, +73,Gazole,2020,2, +73,Gazole,2020,3, +73,Gazole,2020,4, +73,Gazole,2020,5, +73,Gazole,2020,6, +73,Gazole,2020,7, +73,Gazole,2020,8, +73,Gazole,2020,9, +73,Gazole,2020,10, +73,Gazole,2020,11, +73,Gazole,2020,12, +73,Gazole,2021,1, +73,Gazole,2021,2, +73,Gazole,2021,3, +73,Gazole,2021,4, +73,Gazole,2021,5, +73,Gazole,2021,6, +73,Gazole,2021,7, +73,Gazole,2021,8, +73,Gazole,2021,9, +73,Gazole,2021,10, +73,Gazole,2021,11, +73,Gazole,2021,12, +73,Gazole,2022,1, +73,Gazole,2022,2, +73,Gazole,2022,3, +73,Gazole,2022,4, +73,Gazole,2022,5, +73,Gazole,2022,6, +73,Gazole,2022,7, +73,Gazole,2022,8, +73,Gazole,2022,9, +73,Gazole,2022,10, +73,Gazole,2022,11, +73,Gazole,2022,12, +73,Gazole,2023,1, +73,Gazole,2023,2, +73,Gazole,2023,3, +73,Gazole,2023,4, +73,Gazole,2023,5, +73,Gazole,2023,6, +73,Gazole,2023,7, +73,Gazole,2023,8, +73,Gazole,2023,9, +73,Gazole,2023,10, +73,Gazole,2023,11, +73,Gazole,2023,12, +73,Gazole,2024,1, +73,Gazole,2024,2, +73,Gazole,2024,3, +73,Gazole,2024,4, +73,Gazole,2024,5, +73,Gazole,2024,6, +73,Gazole,2024,7, +73,Gazole,2024,8, +73,Gazole,2024,9, +73,Gazole,2024,10, +73,Gazole,2024,11, +73,Gazole,2024,12, +73,SP95,2007,1,119.87 +73,SP95,2007,2,120.6 +73,SP95,2007,3,124.99 +73,SP95,2007,8,129.7 +73,SP95,2007,11,136.25 +73,SP95,2007,12,135.76 +73,SP95,2007,4,129.36 +73,SP95,2007,5,133.22 +73,SP95,2007,6,133.39 +73,SP95,2007,7,132.81 +73,SP95,2007,9,130.02 +73,SP95,2007,10,130.43 +73,SP95,2008,1,137.81 +73,SP95,2008,2,137.52 +73,SP95,2008,4,141.14 +73,SP95,2008,5,147.06 +73,SP95,2008,6,152.34 +73,SP95,2008,7,151.06 +73,SP95,2008,8,145.27 +73,SP95,2008,9,144.51 +73,SP95,2008,10,135.19 +73,SP95,2008,11,122.41 +73,SP95,2008,12,113.46 +73,SP95,2008,3,139.52 +73,SP95,2009,1,113.16 +73,SP95,2009,2,117.11 +73,SP95,2009,4,119.75 +73,SP95,2009,5,123.13 +73,SP95,2009,6,129.07 +73,SP95,2009,7,126.55 +73,SP95,2009,8,129.64 +73,SP95,2009,10,126.51 +73,SP95,2009,12,128.62 +73,SP95,2009,3,117.15 +73,SP95,2009,9,127.04 +73,SP95,2009,11,129.04 +73,SP95,2010,1,132.54 +73,SP95,2010,2,133.93 +73,SP95,2010,3,138.19 +73,SP95,2010,5,140.53 +73,SP95,2010,6,139.18 +73,SP95,2010,7,137.5 +73,SP95,2010,10,139.21 +73,SP95,2010,11,140.48 +73,SP95,2010,12,144.73 +73,SP95,2010,4,140.52 +73,SP95,2010,8,136.35 +73,SP95,2010,9,136.45 +73,SP95,2011,1,149.9 +73,SP95,2011,3,155.0 +73,SP95,2011,4,156.75 +73,SP95,2011,5,156.99 +73,SP95,2011,6,154.67 +73,SP95,2011,7,154.78 +73,SP95,2011,9,155.45 +73,SP95,2011,10,154.29 +73,SP95,2011,12,153.29 +73,SP95,2011,2,151.02 +73,SP95,2011,8,154.35 +73,SP95,2011,11,153.8 +73,SP95,2012,1,157.67 +73,SP95,2012,2,161.88 +73,SP95,2012,3,166.38 +73,SP95,2012,4,169.19 +73,SP95,2012,5,163.28 +73,SP95,2012,6,157.3 +73,SP95,2012,7,158.47 +73,SP95,2012,8,165.21 +73,SP95,2012,11,154.77 +73,SP95,2012,12,155.11 +73,SP95,2012,9,161.99 +73,SP95,2012,10,159.46 +73,SP95,2013,1,158.83 +73,SP95,2013,2,164.9 +73,SP95,2013,3,164.18 +73,SP95,2013,4,159.96 +73,SP95,2013,5,157.04 +73,SP95,2013,9,158.48 +73,SP95,2013,10,154.19 +73,SP95,2013,8,158.68 +73,SP95,2013,12,154.48 +73,SP95,2013,6,157.86 +73,SP95,2013,7,158.32 +73,SP95,2013,11,152.88 +73,SP95,2014,2,154.01 +73,SP95,2014,3,154.35 +73,SP95,2014,6,156.11 +73,SP95,2014,7,156.43 +73,SP95,2014,10,150.67 +73,SP95,2014,11,146.88 +73,SP95,2014,12,138.5 +73,SP95,2014,1,153.27 +73,SP95,2014,5,155.54 +73,SP95,2014,9,153.1 +73,SP95,2014,4,155.04 +73,SP95,2014,8,154.1 +73,SP95,2015,2,136.99 +73,SP95,2015,4,143.39 +73,SP95,2015,6,146.7 +73,SP95,2015,8,139.97 +73,SP95,2015,3,141.96 +73,SP95,2015,7,145.85 +73,SP95,2015,9,134.33 +73,SP95,2015,10,133.45 +73,SP95,2015,12,131.69 +73,SP95,2015,1,131.42 +73,SP95,2015,11,133.13 +73,SP95,2015,5,146.25 +73,SP95,2016,1, +73,SP95,2016,2, +73,SP95,2016,3, +73,SP95,2016,4, +73,SP95,2016,5, +73,SP95,2016,6, +73,SP95,2016,7, +73,SP95,2016,8, +73,SP95,2016,9, +73,SP95,2016,10, +73,SP95,2016,11, +73,SP95,2016,12, +73,SP95,2017,1, +73,SP95,2017,2, +73,SP95,2017,3, +73,SP95,2017,4, +73,SP95,2017,5, +73,SP95,2017,6, +73,SP95,2017,7, +73,SP95,2017,8, +73,SP95,2017,9, +73,SP95,2017,10, +73,SP95,2017,11, +73,SP95,2017,12, +73,SP95,2018,1, +73,SP95,2018,2, +73,SP95,2018,3, +73,SP95,2018,4, +73,SP95,2018,5, +73,SP95,2018,6, +73,SP95,2018,7, +73,SP95,2018,8, +73,SP95,2018,9, +73,SP95,2018,10, +73,SP95,2018,11, +73,SP95,2018,12, +73,SP95,2019,1, +73,SP95,2019,2, +73,SP95,2019,3, +73,SP95,2019,4, +73,SP95,2019,5, +73,SP95,2019,6, +73,SP95,2019,7, +73,SP95,2019,8, +73,SP95,2019,9, +73,SP95,2019,10, +73,SP95,2019,11, +73,SP95,2019,12, +73,SP95,2020,1, +73,SP95,2020,2, +73,SP95,2020,3, +73,SP95,2020,4, +73,SP95,2020,5, +73,SP95,2020,6, +73,SP95,2020,7, +73,SP95,2020,8, +73,SP95,2020,9, +73,SP95,2020,10, +73,SP95,2020,11, +73,SP95,2020,12, +73,SP95,2021,1, +73,SP95,2021,2, +73,SP95,2021,3, +73,SP95,2021,4, +73,SP95,2021,5, +73,SP95,2021,6, +73,SP95,2021,7, +73,SP95,2021,8, +73,SP95,2021,9, +73,SP95,2021,10, +73,SP95,2021,11, +73,SP95,2021,12, +73,SP95,2022,1, +73,SP95,2022,2, +73,SP95,2022,3, +73,SP95,2022,4, +73,SP95,2022,5, +73,SP95,2022,6, +73,SP95,2022,7, +73,SP95,2022,8, +73,SP95,2022,9, +73,SP95,2022,10, +73,SP95,2022,11, +73,SP95,2022,12, +73,SP95,2023,1, +73,SP95,2023,2, +73,SP95,2023,3, +73,SP95,2023,4, +73,SP95,2023,5, +73,SP95,2023,6, +73,SP95,2023,7, +73,SP95,2023,8, +73,SP95,2023,9, +73,SP95,2023,10, +73,SP95,2023,11, +73,SP95,2023,12, +73,SP95,2024,1, +73,SP95,2024,2, +73,SP95,2024,3, +73,SP95,2024,4, +73,SP95,2024,5, +73,SP95,2024,6, +73,SP95,2024,7, +73,SP95,2024,8, +73,SP95,2024,9, +73,SP95,2024,10, +73,SP95,2024,11, +73,SP95,2024,12, +73,GPLc,2007,11,73.22 +73,GPLc,2007,12,72.24 +73,GPLc,2007,1, +73,GPLc,2007,2, +73,GPLc,2007,3, +73,GPLc,2007,4, +73,GPLc,2007,5, +73,GPLc,2007,6, +73,GPLc,2007,7, +73,GPLc,2007,8, +73,GPLc,2007,9, +73,GPLc,2007,10, +73,GPLc,2008,1,73.0 +73,GPLc,2008,2,72.66 +73,GPLc,2008,3,72.49 +73,GPLc,2008,4,72.45 +73,GPLc,2008,5,73.08 +73,GPLc,2008,6,74.42 +73,GPLc,2008,7,75.17 +73,GPLc,2008,8,76.5 +73,GPLc,2008,9,76.67 +73,GPLc,2008,10,76.67 +73,GPLc,2008,11,75.79 +73,GPLc,2008,12,72.77 +73,GPLc,2009,1,68.87 +73,GPLc,2009,2,68.19 +73,GPLc,2009,3,66.99 +73,GPLc,2009,4,64.96 +73,GPLc,2009,5,63.97 +73,GPLc,2009,6,63.9 +73,GPLc,2009,7,64.11 +73,GPLc,2009,8,64.05 +73,GPLc,2009,9,65.49 +73,GPLc,2009,10,65.14 +73,GPLc,2009,11,65.56 +73,GPLc,2009,12,66.11 +73,GPLc,2010,1,68.6 +73,GPLc,2010,2,68.62 +73,GPLc,2010,3,67.68 +73,GPLc,2010,4,67.45 +73,GPLc,2010,5,68.5 +73,GPLc,2010,6,69.23 +73,GPLc,2010,7,70.88 +73,GPLc,2010,8,72.17 +73,GPLc,2010,9,73.12 +73,GPLc,2010,10,73.92 +73,GPLc,2010,11,75.68 +73,GPLc,2010,12,78.43 +73,GPLc,2011,1,79.1 +73,GPLc,2011,2,78.93 +73,GPLc,2011,3,79.31 +73,GPLc,2011,4,79.8 +73,GPLc,2011,5,80.44 +73,GPLc,2011,6,81.3 +73,GPLc,2011,7,81.55 +73,GPLc,2011,8,81.81 +73,GPLc,2011,9,81.96 +73,GPLc,2011,10,81.95 +73,GPLc,2011,11,82.16 +73,GPLc,2011,12,82.16 +73,GPLc,2012,1,84.94 +73,GPLc,2012,2,85.1 +73,GPLc,2012,3,86.64 +73,GPLc,2012,4,87.22 +73,GPLc,2012,5,87.47 +73,GPLc,2012,6,87.43 +73,GPLc,2012,7,86.24 +73,GPLc,2012,8,86.17 +73,GPLc,2012,9,85.7 +73,GPLc,2012,10,86.37 +73,GPLc,2012,11,86.85 +73,GPLc,2012,12,87.09 +73,GPLc,2013,1,87.8 +73,GPLc,2013,2,88.37 +73,GPLc,2013,3,88.79 +73,GPLc,2013,4,88.55 +73,GPLc,2013,5,87.54 +73,GPLc,2013,6,87.13 +73,GPLc,2013,7,86.54 +73,GPLc,2013,8,86.31 +73,GPLc,2013,9,86.39 +73,GPLc,2013,10,85.7 +73,GPLc,2013,11,85.71 +73,GPLc,2013,12,86.16 +73,GPLc,2014,1,86.06 +73,GPLc,2014,2,85.71 +73,GPLc,2014,3,85.93 +73,GPLc,2014,4,85.63 +73,GPLc,2014,5,85.48 +73,GPLc,2014,6,85.31 +73,GPLc,2014,7,84.99 +73,GPLc,2014,8,84.99 +73,GPLc,2014,9,85.01 +73,GPLc,2014,10,85.03 +73,GPLc,2014,11,84.7 +73,GPLc,2014,12,83.91 +73,GPLc,2015,1,81.38 +73,GPLc,2015,2,80.53 +73,GPLc,2015,3,80.38 +73,GPLc,2015,4,81.05 +73,GPLc,2015,5,81.68 +73,GPLc,2015,6,81.22 +73,GPLc,2015,7,79.28 +73,GPLc,2015,8,78.91 +73,GPLc,2015,9,78.4 +73,GPLc,2015,11,77.58 +73,GPLc,2015,12,76.9 +73,GPLc,2015,10,77.81 +73,GPLc,2016,1, +73,GPLc,2016,2, +73,GPLc,2016,3, +73,GPLc,2016,4, +73,GPLc,2016,5, +73,GPLc,2016,6, +73,GPLc,2016,7, +73,GPLc,2016,8, +73,GPLc,2016,9, +73,GPLc,2016,10, +73,GPLc,2016,11, +73,GPLc,2016,12, +73,GPLc,2017,1, +73,GPLc,2017,2, +73,GPLc,2017,3, +73,GPLc,2017,4, +73,GPLc,2017,5, +73,GPLc,2017,6, +73,GPLc,2017,7, +73,GPLc,2017,8, +73,GPLc,2017,9, +73,GPLc,2017,10, +73,GPLc,2017,11, +73,GPLc,2017,12, +73,GPLc,2018,1, +73,GPLc,2018,2, +73,GPLc,2018,3, +73,GPLc,2018,4, +73,GPLc,2018,5, +73,GPLc,2018,6, +73,GPLc,2018,7, +73,GPLc,2018,8, +73,GPLc,2018,9, +73,GPLc,2018,10, +73,GPLc,2018,11, +73,GPLc,2018,12, +73,GPLc,2019,1, +73,GPLc,2019,2, +73,GPLc,2019,3, +73,GPLc,2019,4, +73,GPLc,2019,5, +73,GPLc,2019,6, +73,GPLc,2019,7, +73,GPLc,2019,8, +73,GPLc,2019,9, +73,GPLc,2019,10, +73,GPLc,2019,11, +73,GPLc,2019,12, +73,GPLc,2020,1, +73,GPLc,2020,2, +73,GPLc,2020,3, +73,GPLc,2020,4, +73,GPLc,2020,5, +73,GPLc,2020,6, +73,GPLc,2020,7, +73,GPLc,2020,8, +73,GPLc,2020,9, +73,GPLc,2020,10, +73,GPLc,2020,11, +73,GPLc,2020,12, +73,GPLc,2021,1, +73,GPLc,2021,2, +73,GPLc,2021,3, +73,GPLc,2021,4, +73,GPLc,2021,5, +73,GPLc,2021,6, +73,GPLc,2021,7, +73,GPLc,2021,8, +73,GPLc,2021,9, +73,GPLc,2021,10, +73,GPLc,2021,11, +73,GPLc,2021,12, +73,GPLc,2022,1, +73,GPLc,2022,2, +73,GPLc,2022,3, +73,GPLc,2022,4, +73,GPLc,2022,5, +73,GPLc,2022,6, +73,GPLc,2022,7, +73,GPLc,2022,8, +73,GPLc,2022,9, +73,GPLc,2022,10, +73,GPLc,2022,11, +73,GPLc,2022,12, +73,GPLc,2023,1, +73,GPLc,2023,2, +73,GPLc,2023,3, +73,GPLc,2023,4, +73,GPLc,2023,5, +73,GPLc,2023,6, +73,GPLc,2023,7, +73,GPLc,2023,8, +73,GPLc,2023,9, +73,GPLc,2023,10, +73,GPLc,2023,11, +73,GPLc,2023,12, +73,GPLc,2024,1, +73,GPLc,2024,2, +73,GPLc,2024,3, +73,GPLc,2024,4, +73,GPLc,2024,5, +73,GPLc,2024,6, +73,GPLc,2024,7, +73,GPLc,2024,8, +73,GPLc,2024,9, +73,GPLc,2024,10, +73,GPLc,2024,11, +73,GPLc,2024,12, +73,E85,2007,12,85.14 +73,E85,2007,8,83.03 +73,E85,2007,9,84.02 +73,E85,2007,10,84.33 +73,E85,2007,11,85.36 +73,E85,2007,5,79.93 +73,E85,2007,6,80.28 +73,E85,2007,7,81.05 +73,E85,2007,4,79.98 +73,E85,2007,1, +73,E85,2007,2, +73,E85,2007,3, +73,E85,2008,10,88.06 +73,E85,2008,7,87.2 +73,E85,2008,8,87.96 +73,E85,2008,11,87.92 +73,E85,2008,1,86.29 +73,E85,2008,2,85.25 +73,E85,2008,3,85.75 +73,E85,2008,4,85.98 +73,E85,2008,9,88.23 +73,E85,2008,5,85.72 +73,E85,2008,6,86.08 +73,E85,2008,12,87.86 +73,E85,2009,8,97.55 +73,E85,2009,11,102.12 +73,E85,2009,2,83.38 +73,E85,2009,4,82.53 +73,E85,2009,6,84.7 +73,E85,2009,1,85.2 +73,E85,2009,3,82.35 +73,E85,2009,7,90.53 +73,E85,2009,9,99.14 +73,E85,2009,10,99.83 +73,E85,2009,5,83.51 +73,E85,2009,12,103.82 +73,E85,2010,3,91.56 +73,E85,2010,4,92.77 +73,E85,2010,5,96.22 +73,E85,2010,7,99.19 +73,E85,2010,8,100.42 +73,E85,2010,9,99.5 +73,E85,2010,10,101.33 +73,E85,2010,6,97.68 +73,E85,2010,11,102.02 +73,E85,2010,2,91.24 +73,E85,2010,12,103.86 +73,E85,2010,1,92.17 +73,E85,2011,1,90.02 +73,E85,2011,2,89.81 +73,E85,2011,3,90.41 +73,E85,2011,4,91.11 +73,E85,2011,5,91.59 +73,E85,2011,6,91.63 +73,E85,2011,8,90.51 +73,E85,2011,9,90.95 +73,E85,2011,10,90.81 +73,E85,2011,11,92.01 +73,E85,2011,12,92.54 +73,E85,2011,7,90.99 +73,E85,2012,1,95.34 +73,E85,2012,2,95.2 +73,E85,2012,3,94.77 +73,E85,2012,5,94.12 +73,E85,2012,6,92.8 +73,E85,2012,7,93.04 +73,E85,2012,8,95.36 +73,E85,2012,9,95.04 +73,E85,2012,10,94.68 +73,E85,2012,11,94.12 +73,E85,2012,12,94.03 +73,E85,2012,4,95.18 +73,E85,2013,4,96.17 +73,E85,2013,11,94.02 +73,E85,2013,1,97.27 +73,E85,2013,2,97.14 +73,E85,2013,3,96.95 +73,E85,2013,5,95.76 +73,E85,2013,6,95.63 +73,E85,2013,7,95.42 +73,E85,2013,8,95.5 +73,E85,2013,9,95.53 +73,E85,2013,10,94.57 +73,E85,2013,12,94.92 +73,E85,2014,1,91.82 +73,E85,2014,2,91.84 +73,E85,2014,4,90.72 +73,E85,2014,10,89.72 +73,E85,2014,8,91.21 +73,E85,2014,9,90.57 +73,E85,2014,5,91.3 +73,E85,2014,6,91.47 +73,E85,2014,7,91.99 +73,E85,2014,11,89.52 +73,E85,2014,12,93.09 +73,E85,2014,3,91.13 +73,E85,2015,12,83.63 +73,E85,2015,2,88.14 +73,E85,2015,4,88.59 +73,E85,2015,6,86.58 +73,E85,2015,7,86.03 +73,E85,2015,9,88.62 +73,E85,2015,10,87.87 +73,E85,2015,11,86.5 +73,E85,2015,8,86.28 +73,E85,2015,1,88.62 +73,E85,2015,5,88.16 +73,E85,2015,3,87.81 +73,E85,2016,1, +73,E85,2016,2, +73,E85,2016,3, +73,E85,2016,4, +73,E85,2016,5, +73,E85,2016,6, +73,E85,2016,7, +73,E85,2016,8, +73,E85,2016,9, +73,E85,2016,10, +73,E85,2016,11, +73,E85,2016,12, +73,E85,2017,1, +73,E85,2017,2, +73,E85,2017,3, +73,E85,2017,4, +73,E85,2017,5, +73,E85,2017,6, +73,E85,2017,7, +73,E85,2017,8, +73,E85,2017,9, +73,E85,2017,10, +73,E85,2017,11, +73,E85,2017,12, +73,E85,2018,1, +73,E85,2018,2, +73,E85,2018,3, +73,E85,2018,4, +73,E85,2018,5, +73,E85,2018,6, +73,E85,2018,7, +73,E85,2018,8, +73,E85,2018,9, +73,E85,2018,10, +73,E85,2018,11, +73,E85,2018,12, +73,E85,2019,1, +73,E85,2019,2, +73,E85,2019,3, +73,E85,2019,4, +73,E85,2019,5, +73,E85,2019,6, +73,E85,2019,7, +73,E85,2019,8, +73,E85,2019,9, +73,E85,2019,10, +73,E85,2019,11, +73,E85,2019,12, +73,E85,2020,1, +73,E85,2020,2, +73,E85,2020,3, +73,E85,2020,4, +73,E85,2020,5, +73,E85,2020,6, +73,E85,2020,7, +73,E85,2020,8, +73,E85,2020,9, +73,E85,2020,10, +73,E85,2020,11, +73,E85,2020,12, +73,E85,2021,1, +73,E85,2021,2, +73,E85,2021,3, +73,E85,2021,4, +73,E85,2021,5, +73,E85,2021,6, +73,E85,2021,7, +73,E85,2021,8, +73,E85,2021,9, +73,E85,2021,10, +73,E85,2021,11, +73,E85,2021,12, +73,E85,2022,1, +73,E85,2022,2, +73,E85,2022,3, +73,E85,2022,4, +73,E85,2022,5, +73,E85,2022,6, +73,E85,2022,7, +73,E85,2022,8, +73,E85,2022,9, +73,E85,2022,10, +73,E85,2022,11, +73,E85,2022,12, +73,E85,2023,1, +73,E85,2023,2, +73,E85,2023,3, +73,E85,2023,4, +73,E85,2023,5, +73,E85,2023,6, +73,E85,2023,7, +73,E85,2023,8, +73,E85,2023,9, +73,E85,2023,10, +73,E85,2023,11, +73,E85,2023,12, +73,E85,2024,1, +73,E85,2024,2, +73,E85,2024,3, +73,E85,2024,4, +73,E85,2024,5, +73,E85,2024,6, +73,E85,2024,7, +73,E85,2024,8, +73,E85,2024,9, +73,E85,2024,10, +73,E85,2024,11, +73,E85,2024,12, +73,E10,2009,5,119.87 +73,E10,2009,6,125.41 +73,E10,2009,7,123.01 +73,E10,2009,8,123.78 +73,E10,2009,9,122.01 +73,E10,2009,10,121.47 +73,E10,2009,11,123.86 +73,E10,2009,12,123.22 +73,E10,2009,4,121.93 +73,E10,2009,1, +73,E10,2009,2, +73,E10,2009,3, +73,E10,2010,1,127.88 +73,E10,2010,2,129.22 +73,E10,2010,3,132.95 +73,E10,2010,4,135.95 +73,E10,2010,5,137.04 +73,E10,2010,6,136.56 +73,E10,2010,7,134.43 +73,E10,2010,8,132.63 +73,E10,2010,9,132.45 +73,E10,2010,10,134.54 +73,E10,2010,11,135.87 +73,E10,2010,12,139.06 +73,E10,2011,1,146.6 +73,E10,2011,2,147.49 +73,E10,2011,3,150.51 +73,E10,2011,4,153.35 +73,E10,2011,5,155.94 +73,E10,2011,6,152.99 +73,E10,2011,7,152.85 +73,E10,2011,8,152.18 +73,E10,2011,9,153.71 +73,E10,2011,10,152.53 +73,E10,2011,11,151.97 +73,E10,2011,12,151.66 +73,E10,2012,6,154.74 +73,E10,2012,7,155.6 +73,E10,2012,8,161.55 +73,E10,2012,9,157.4 +73,E10,2012,10,154.91 +73,E10,2012,11,149.89 +73,E10,2012,12,150.97 +73,E10,2012,3,164.61 +73,E10,2012,4,167.3 +73,E10,2012,5,161.14 +73,E10,2012,1,156.58 +73,E10,2012,2,159.86 +73,E10,2013,1,156.26 +73,E10,2013,2,162.58 +73,E10,2013,3,161.62 +73,E10,2013,4,157.66 +73,E10,2013,5,154.71 +73,E10,2013,6,155.25 +73,E10,2013,7,155.92 +73,E10,2013,8,156.33 +73,E10,2013,9,155.89 +73,E10,2013,10,151.68 +73,E10,2013,11,150.25 +73,E10,2013,12,151.79 +73,E10,2014,1,150.81 +73,E10,2014,2,151.56 +73,E10,2014,3,151.81 +73,E10,2014,4,152.51 +73,E10,2014,5,152.72 +73,E10,2014,6,153.28 +73,E10,2014,7,153.5 +73,E10,2014,8,151.27 +73,E10,2014,9,150.24 +73,E10,2014,10,148.24 +73,E10,2014,11,144.68 +73,E10,2014,12,136.94 +73,E10,2015,1,129.7 +73,E10,2015,2,134.67 +73,E10,2015,3,139.8 +73,E10,2015,4,141.1 +73,E10,2015,5,143.9 +73,E10,2015,6,144.28 +73,E10,2015,7,143.21 +73,E10,2015,8,137.35 +73,E10,2015,9,131.91 +73,E10,2015,11,130.79 +73,E10,2015,12,129.24 +73,E10,2015,10,130.88 +73,E10,2016,1, +73,E10,2016,2, +73,E10,2016,3, +73,E10,2016,4, +73,E10,2016,5, +73,E10,2016,6, +73,E10,2016,7, +73,E10,2016,8, +73,E10,2016,9, +73,E10,2016,10, +73,E10,2016,11, +73,E10,2016,12, +73,E10,2017,1, +73,E10,2017,2, +73,E10,2017,3, +73,E10,2017,4, +73,E10,2017,5, +73,E10,2017,6, +73,E10,2017,7, +73,E10,2017,8, +73,E10,2017,9, +73,E10,2017,10, +73,E10,2017,11, +73,E10,2017,12, +73,E10,2018,1, +73,E10,2018,2, +73,E10,2018,3, +73,E10,2018,4, +73,E10,2018,5, +73,E10,2018,6, +73,E10,2018,7, +73,E10,2018,8, +73,E10,2018,9, +73,E10,2018,10, +73,E10,2018,11, +73,E10,2018,12, +73,E10,2019,1, +73,E10,2019,2, +73,E10,2019,3, +73,E10,2019,4, +73,E10,2019,5, +73,E10,2019,6, +73,E10,2019,7, +73,E10,2019,8, +73,E10,2019,9, +73,E10,2019,10, +73,E10,2019,11, +73,E10,2019,12, +73,E10,2020,1, +73,E10,2020,2, +73,E10,2020,3, +73,E10,2020,4, +73,E10,2020,5, +73,E10,2020,6, +73,E10,2020,7, +73,E10,2020,8, +73,E10,2020,9, +73,E10,2020,10, +73,E10,2020,11, +73,E10,2020,12, +73,E10,2021,1, +73,E10,2021,2, +73,E10,2021,3, +73,E10,2021,4, +73,E10,2021,5, +73,E10,2021,6, +73,E10,2021,7, +73,E10,2021,8, +73,E10,2021,9, +73,E10,2021,10, +73,E10,2021,11, +73,E10,2021,12, +73,E10,2022,1, +73,E10,2022,2, +73,E10,2022,3, +73,E10,2022,4, +73,E10,2022,5, +73,E10,2022,6, +73,E10,2022,7, +73,E10,2022,8, +73,E10,2022,9, +73,E10,2022,10, +73,E10,2022,11, +73,E10,2022,12, +73,E10,2023,1, +73,E10,2023,2, +73,E10,2023,3, +73,E10,2023,4, +73,E10,2023,5, +73,E10,2023,6, +73,E10,2023,7, +73,E10,2023,8, +73,E10,2023,9, +73,E10,2023,10, +73,E10,2023,11, +73,E10,2023,12, +73,E10,2024,1, +73,E10,2024,2, +73,E10,2024,3, +73,E10,2024,4, +73,E10,2024,5, +73,E10,2024,6, +73,E10,2024,7, +73,E10,2024,8, +73,E10,2024,9, +73,E10,2024,10, +73,E10,2024,11, +73,E10,2024,12, +73,SP98,2013,7,161.8 +73,SP98,2013,8,162.41 +73,SP98,2013,9,162.58 +73,SP98,2013,10,158.68 +73,SP98,2013,11,157.07 +73,SP98,2013,12,158.24 +73,SP98,2013,6,160.67 +73,SP98,2013,1, +73,SP98,2013,2, +73,SP98,2013,3, +73,SP98,2013,4, +73,SP98,2013,5, +73,SP98,2014,1,157.55 +73,SP98,2014,2,157.99 +73,SP98,2014,3,158.34 +73,SP98,2014,4,158.74 +73,SP98,2014,5,159.25 +73,SP98,2014,6,159.76 +73,SP98,2014,7,160.33 +73,SP98,2014,8,158.09 +73,SP98,2014,9,156.94 +73,SP98,2014,10,154.95 +73,SP98,2014,11,151.51 +73,SP98,2014,12,143.96 +73,SP98,2015,1,136.42 +73,SP98,2015,2,140.51 +73,SP98,2015,3,145.64 +73,SP98,2015,4,147.31 +73,SP98,2015,5,150.24 +73,SP98,2015,6,150.88 +73,SP98,2015,7,150.11 +73,SP98,2015,8,144.72 +73,SP98,2015,9,138.87 +73,SP98,2015,11,136.96 +73,SP98,2015,12,135.68 +73,SP98,2015,10,137.54 +73,SP98,2016,1, +73,SP98,2016,2, +73,SP98,2016,3, +73,SP98,2016,4, +73,SP98,2016,5, +73,SP98,2016,6, +73,SP98,2016,7, +73,SP98,2016,8, +73,SP98,2016,9, +73,SP98,2016,10, +73,SP98,2016,11, +73,SP98,2016,12, +73,SP98,2017,1, +73,SP98,2017,2, +73,SP98,2017,3, +73,SP98,2017,4, +73,SP98,2017,5, +73,SP98,2017,6, +73,SP98,2017,7, +73,SP98,2017,8, +73,SP98,2017,9, +73,SP98,2017,10, +73,SP98,2017,11, +73,SP98,2017,12, +73,SP98,2018,1, +73,SP98,2018,2, +73,SP98,2018,3, +73,SP98,2018,4, +73,SP98,2018,5, +73,SP98,2018,6, +73,SP98,2018,7, +73,SP98,2018,8, +73,SP98,2018,9, +73,SP98,2018,10, +73,SP98,2018,11, +73,SP98,2018,12, +73,SP98,2019,1, +73,SP98,2019,2, +73,SP98,2019,3, +73,SP98,2019,4, +73,SP98,2019,5, +73,SP98,2019,6, +73,SP98,2019,7, +73,SP98,2019,8, +73,SP98,2019,9, +73,SP98,2019,10, +73,SP98,2019,11, +73,SP98,2019,12, +73,SP98,2020,1, +73,SP98,2020,2, +73,SP98,2020,3, +73,SP98,2020,4, +73,SP98,2020,5, +73,SP98,2020,6, +73,SP98,2020,7, +73,SP98,2020,8, +73,SP98,2020,9, +73,SP98,2020,10, +73,SP98,2020,11, +73,SP98,2020,12, +73,SP98,2021,1, +73,SP98,2021,2, +73,SP98,2021,3, +73,SP98,2021,4, +73,SP98,2021,5, +73,SP98,2021,6, +73,SP98,2021,7, +73,SP98,2021,8, +73,SP98,2021,9, +73,SP98,2021,10, +73,SP98,2021,11, +73,SP98,2021,12, +73,SP98,2022,1, +73,SP98,2022,2, +73,SP98,2022,3, +73,SP98,2022,4, +73,SP98,2022,5, +73,SP98,2022,6, +73,SP98,2022,7, +73,SP98,2022,8, +73,SP98,2022,9, +73,SP98,2022,10, +73,SP98,2022,11, +73,SP98,2022,12, +73,SP98,2023,1, +73,SP98,2023,2, +73,SP98,2023,3, +73,SP98,2023,4, +73,SP98,2023,5, +73,SP98,2023,6, +73,SP98,2023,7, +73,SP98,2023,8, +73,SP98,2023,9, +73,SP98,2023,10, +73,SP98,2023,11, +73,SP98,2023,12, +73,SP98,2024,1, +73,SP98,2024,2, +73,SP98,2024,3, +73,SP98,2024,4, +73,SP98,2024,5, +73,SP98,2024,6, +73,SP98,2024,7, +73,SP98,2024,8, +73,SP98,2024,9, +73,SP98,2024,10, +73,SP98,2024,11, +73,SP98,2024,12, +21,Gazole,2007,1,102.86 +21,Gazole,2007,2,102.98 +21,Gazole,2007,3,104.63 +21,Gazole,2007,4,107.22 +21,Gazole,2007,5,107.85 +21,Gazole,2007,6,108.96 +21,Gazole,2007,7,109.88 +21,Gazole,2007,8,110.18 +21,Gazole,2007,9,111.65 +21,Gazole,2007,10,113.55 +21,Gazole,2007,11,121.07 +21,Gazole,2007,12,121.51 +21,Gazole,2008,1,120.63 +21,Gazole,2008,2,121.63 +21,Gazole,2008,3,127.49 +21,Gazole,2008,4,130.22 +21,Gazole,2008,5,140.15 +21,Gazole,2008,6,145.74 +21,Gazole,2008,7,144.71 +21,Gazole,2008,8,135.8 +21,Gazole,2008,9,132.06 +21,Gazole,2008,10,123.97 +21,Gazole,2008,11,113.62 +21,Gazole,2008,12,101.85 +21,Gazole,2009,1,99.08 +21,Gazole,2009,2,98.09 +21,Gazole,2009,3,95.67 +21,Gazole,2009,4,98.12 +21,Gazole,2009,5,98.32 +21,Gazole,2009,6,102.77 +21,Gazole,2009,7,101.44 +21,Gazole,2009,8,104.15 +21,Gazole,2009,9,102.87 +21,Gazole,2009,10,103.54 +21,Gazole,2009,11,105.81 +21,Gazole,2009,12,104.89 +21,Gazole,2010,1,109.04 +21,Gazole,2010,2,109.25 +21,Gazole,2010,3,113.19 +21,Gazole,2010,4,116.92 +21,Gazole,2010,5,118.37 +21,Gazole,2010,6,117.78 +21,Gazole,2010,7,115.85 +21,Gazole,2010,8,115.39 +21,Gazole,2010,9,116.0 +21,Gazole,2010,10,118.48 +21,Gazole,2010,11,119.64 +21,Gazole,2010,12,123.66 +21,Gazole,2011,1,130.29 +21,Gazole,2011,2,133.12 +21,Gazole,2011,3,138.88 +21,Gazole,2011,4,139.69 +21,Gazole,2011,5,135.88 +21,Gazole,2011,6,134.74 +21,Gazole,2011,7,135.23 +21,Gazole,2011,8,134.44 +21,Gazole,2011,9,135.84 +21,Gazole,2011,10,137.38 +21,Gazole,2011,11,140.96 +21,Gazole,2011,12,140.52 +21,Gazole,2012,1,143.19 +21,Gazole,2012,2,144.58 +21,Gazole,2012,3,147.22 +21,Gazole,2012,4,146.37 +21,Gazole,2012,5,143.03 +21,Gazole,2012,6,137.22 +21,Gazole,2012,7,139.32 +21,Gazole,2012,8,145.24 +21,Gazole,2012,9,142.02 +21,Gazole,2012,10,141.94 +21,Gazole,2012,11,140.01 +21,Gazole,2012,12,138.61 +21,Gazole,2013,1,139.58 +21,Gazole,2013,2,142.74 +21,Gazole,2013,3,141.58 +21,Gazole,2013,4,137.82 +21,Gazole,2013,5,135.23 +21,Gazole,2013,6,134.99 +21,Gazole,2013,7,136.57 +21,Gazole,2013,8,137.14 +21,Gazole,2013,9,138.87 +21,Gazole,2013,10,135.5 +21,Gazole,2013,11,134.25 +21,Gazole,2013,12,135.68 +21,Gazole,2014,1,134.79 +21,Gazole,2014,2,135.04 +21,Gazole,2014,3,133.81 +21,Gazole,2014,4,133.32 +21,Gazole,2014,5,133.23 +21,Gazole,2014,6,133.46 +21,Gazole,2014,7,133.23 +21,Gazole,2014,8,132.49 +21,Gazole,2014,9,131.92 +21,Gazole,2014,10,128.98 +21,Gazole,2014,11,126.06 +21,Gazole,2014,12,117.13 +21,Gazole,2015,1,113.39 +21,Gazole,2015,2,119.0 +21,Gazole,2015,3,122.91 +21,Gazole,2015,4,122.5 +21,Gazole,2015,5,125.33 +21,Gazole,2015,6,123.79 +21,Gazole,2015,7,120.34 +21,Gazole,2015,8,114.62 +21,Gazole,2015,9,112.61 +21,Gazole,2015,10,112.47 +21,Gazole,2015,11,112.15 +21,Gazole,2015,12,105.86 +21,Gazole,2016,1, +21,Gazole,2016,2, +21,Gazole,2016,3, +21,Gazole,2016,4, +21,Gazole,2016,5, +21,Gazole,2016,6, +21,Gazole,2016,7, +21,Gazole,2016,8, +21,Gazole,2016,9, +21,Gazole,2016,10, +21,Gazole,2016,11, +21,Gazole,2016,12, +21,Gazole,2017,1, +21,Gazole,2017,2, +21,Gazole,2017,3, +21,Gazole,2017,4, +21,Gazole,2017,5, +21,Gazole,2017,6, +21,Gazole,2017,7, +21,Gazole,2017,8, +21,Gazole,2017,9, +21,Gazole,2017,10, +21,Gazole,2017,11, +21,Gazole,2017,12, +21,Gazole,2018,1, +21,Gazole,2018,2, +21,Gazole,2018,3, +21,Gazole,2018,4, +21,Gazole,2018,5, +21,Gazole,2018,6, +21,Gazole,2018,7, +21,Gazole,2018,8, +21,Gazole,2018,9, +21,Gazole,2018,10, +21,Gazole,2018,11, +21,Gazole,2018,12, +21,Gazole,2019,1, +21,Gazole,2019,2, +21,Gazole,2019,3, +21,Gazole,2019,4, +21,Gazole,2019,5, +21,Gazole,2019,6, +21,Gazole,2019,7, +21,Gazole,2019,8, +21,Gazole,2019,9, +21,Gazole,2019,10, +21,Gazole,2019,11, +21,Gazole,2019,12, +21,Gazole,2020,1, +21,Gazole,2020,2, +21,Gazole,2020,3, +21,Gazole,2020,4, +21,Gazole,2020,5, +21,Gazole,2020,6, +21,Gazole,2020,7, +21,Gazole,2020,8, +21,Gazole,2020,9, +21,Gazole,2020,10, +21,Gazole,2020,11, +21,Gazole,2020,12, +21,Gazole,2021,1, +21,Gazole,2021,2, +21,Gazole,2021,3, +21,Gazole,2021,4, +21,Gazole,2021,5, +21,Gazole,2021,6, +21,Gazole,2021,7, +21,Gazole,2021,8, +21,Gazole,2021,9, +21,Gazole,2021,10, +21,Gazole,2021,11, +21,Gazole,2021,12, +21,Gazole,2022,1, +21,Gazole,2022,2, +21,Gazole,2022,3, +21,Gazole,2022,4, +21,Gazole,2022,5, +21,Gazole,2022,6, +21,Gazole,2022,7, +21,Gazole,2022,8, +21,Gazole,2022,9, +21,Gazole,2022,10, +21,Gazole,2022,11, +21,Gazole,2022,12, +21,Gazole,2023,1, +21,Gazole,2023,2, +21,Gazole,2023,3, +21,Gazole,2023,4, +21,Gazole,2023,5, +21,Gazole,2023,6, +21,Gazole,2023,7, +21,Gazole,2023,8, +21,Gazole,2023,9, +21,Gazole,2023,10, +21,Gazole,2023,11, +21,Gazole,2023,12, +21,Gazole,2024,1, +21,Gazole,2024,2, +21,Gazole,2024,3, +21,Gazole,2024,4, +21,Gazole,2024,5, +21,Gazole,2024,6, +21,Gazole,2024,7, +21,Gazole,2024,8, +21,Gazole,2024,9, +21,Gazole,2024,10, +21,Gazole,2024,11, +21,Gazole,2024,12, +21,SP95,2007,1,118.83 +21,SP95,2007,2,119.68 +21,SP95,2007,3,124.79 +21,SP95,2007,4,129.39 +21,SP95,2007,5,133.53 +21,SP95,2007,6,133.94 +21,SP95,2007,7,133.27 +21,SP95,2007,8,130.18 +21,SP95,2007,9,130.51 +21,SP95,2007,10,130.46 +21,SP95,2007,11,135.53 +21,SP95,2007,12,135.05 +21,SP95,2008,1,136.79 +21,SP95,2008,2,136.96 +21,SP95,2008,3,139.17 +21,SP95,2008,4,140.69 +21,SP95,2008,5,145.92 +21,SP95,2008,6,151.02 +21,SP95,2008,7,150.48 +21,SP95,2008,8,145.05 +21,SP95,2008,9,144.0 +21,SP95,2008,10,134.73 +21,SP95,2008,11,121.08 +21,SP95,2008,12,111.61 +21,SP95,2009,1,110.98 +21,SP95,2009,2,115.66 +21,SP95,2009,3,116.27 +21,SP95,2009,4,118.86 +21,SP95,2009,5,122.24 +21,SP95,2009,6,128.53 +21,SP95,2009,7,125.54 +21,SP95,2009,8,128.09 +21,SP95,2009,9,126.08 +21,SP95,2009,10,125.09 +21,SP95,2009,11,127.61 +21,SP95,2009,12,126.89 +21,SP95,2010,1,131.12 +21,SP95,2010,2,132.57 +21,SP95,2010,3,136.79 +21,SP95,2010,4,139.27 +21,SP95,2010,5,139.53 +21,SP95,2010,6,138.33 +21,SP95,2010,7,136.02 +21,SP95,2010,8,135.12 +21,SP95,2010,9,135.13 +21,SP95,2010,10,136.5 +21,SP95,2010,11,137.91 +21,SP95,2010,12,142.62 +21,SP95,2011,1,148.25 +21,SP95,2011,2,149.0 +21,SP95,2011,3,153.39 +21,SP95,2011,4,155.61 +21,SP95,2011,5,156.03 +21,SP95,2011,6,153.3 +21,SP95,2011,7,152.68 +21,SP95,2011,8,152.48 +21,SP95,2011,9,154.08 +21,SP95,2011,10,152.49 +21,SP95,2011,11,151.98 +21,SP95,2011,12,151.65 +21,SP95,2012,1,156.42 +21,SP95,2012,2,160.23 +21,SP95,2012,3,165.13 +21,SP95,2012,4,167.61 +21,SP95,2012,5,162.33 +21,SP95,2012,6,157.19 +21,SP95,2012,7,157.5 +21,SP95,2012,8,162.74 +21,SP95,2012,9,160.43 +21,SP95,2012,10,158.36 +21,SP95,2012,11,153.9 +21,SP95,2012,12,153.61 +21,SP95,2013,1,156.32 +21,SP95,2013,2,161.75 +21,SP95,2013,3,161.86 +21,SP95,2013,4,159.19 +21,SP95,2013,5,155.74 +21,SP95,2013,6,155.92 +21,SP95,2013,7,156.62 +21,SP95,2013,8,157.11 +21,SP95,2013,9,156.63 +21,SP95,2013,10,151.78 +21,SP95,2013,11,150.47 +21,SP95,2013,12,152.04 +21,SP95,2014,1,151.69 +21,SP95,2014,2,152.36 +21,SP95,2014,3,152.61 +21,SP95,2014,4,153.71 +21,SP95,2014,5,154.36 +21,SP95,2014,6,155.61 +21,SP95,2014,7,156.27 +21,SP95,2014,8,153.68 +21,SP95,2014,9,152.71 +21,SP95,2014,10,150.08 +21,SP95,2014,11,145.81 +21,SP95,2014,12,137.62 +21,SP95,2015,1,129.29 +21,SP95,2015,2,134.68 +21,SP95,2015,3,140.05 +21,SP95,2015,4,142.47 +21,SP95,2015,5,145.41 +21,SP95,2015,6,146.05 +21,SP95,2015,7,145.54 +21,SP95,2015,8,140.83 +21,SP95,2015,9,134.5 +21,SP95,2015,10,132.75 +21,SP95,2015,11,132.38 +21,SP95,2015,12,130.37 +21,SP95,2016,1, +21,SP95,2016,2, +21,SP95,2016,3, +21,SP95,2016,4, +21,SP95,2016,5, +21,SP95,2016,6, +21,SP95,2016,7, +21,SP95,2016,8, +21,SP95,2016,9, +21,SP95,2016,10, +21,SP95,2016,11, +21,SP95,2016,12, +21,SP95,2017,1, +21,SP95,2017,2, +21,SP95,2017,3, +21,SP95,2017,4, +21,SP95,2017,5, +21,SP95,2017,6, +21,SP95,2017,7, +21,SP95,2017,8, +21,SP95,2017,9, +21,SP95,2017,10, +21,SP95,2017,11, +21,SP95,2017,12, +21,SP95,2018,1, +21,SP95,2018,2, +21,SP95,2018,3, +21,SP95,2018,4, +21,SP95,2018,5, +21,SP95,2018,6, +21,SP95,2018,7, +21,SP95,2018,8, +21,SP95,2018,9, +21,SP95,2018,10, +21,SP95,2018,11, +21,SP95,2018,12, +21,SP95,2019,1, +21,SP95,2019,2, +21,SP95,2019,3, +21,SP95,2019,4, +21,SP95,2019,5, +21,SP95,2019,6, +21,SP95,2019,7, +21,SP95,2019,8, +21,SP95,2019,9, +21,SP95,2019,10, +21,SP95,2019,11, +21,SP95,2019,12, +21,SP95,2020,1, +21,SP95,2020,2, +21,SP95,2020,3, +21,SP95,2020,4, +21,SP95,2020,5, +21,SP95,2020,6, +21,SP95,2020,7, +21,SP95,2020,8, +21,SP95,2020,9, +21,SP95,2020,10, +21,SP95,2020,11, +21,SP95,2020,12, +21,SP95,2021,1, +21,SP95,2021,2, +21,SP95,2021,3, +21,SP95,2021,4, +21,SP95,2021,5, +21,SP95,2021,6, +21,SP95,2021,7, +21,SP95,2021,8, +21,SP95,2021,9, +21,SP95,2021,10, +21,SP95,2021,11, +21,SP95,2021,12, +21,SP95,2022,1, +21,SP95,2022,2, +21,SP95,2022,3, +21,SP95,2022,4, +21,SP95,2022,5, +21,SP95,2022,6, +21,SP95,2022,7, +21,SP95,2022,8, +21,SP95,2022,9, +21,SP95,2022,10, +21,SP95,2022,11, +21,SP95,2022,12, +21,SP95,2023,1, +21,SP95,2023,2, +21,SP95,2023,3, +21,SP95,2023,4, +21,SP95,2023,5, +21,SP95,2023,6, +21,SP95,2023,7, +21,SP95,2023,8, +21,SP95,2023,9, +21,SP95,2023,10, +21,SP95,2023,11, +21,SP95,2023,12, +21,SP95,2024,1, +21,SP95,2024,2, +21,SP95,2024,3, +21,SP95,2024,4, +21,SP95,2024,5, +21,SP95,2024,6, +21,SP95,2024,7, +21,SP95,2024,8, +21,SP95,2024,9, +21,SP95,2024,10, +21,SP95,2024,11, +21,SP95,2024,12, +21,E85,2007,9,81.82 +21,E85,2007,10,81.14 +21,E85,2007,11,81.18 +21,E85,2007,12,81.25 +21,E85,2007,3,79.46 +21,E85,2007,7,80.75 +21,E85,2007,4,79.57 +21,E85,2007,6,80.53 +21,E85,2007,8,81.38 +21,E85,2007,5,80.0 +21,E85,2007,1,79.3 +21,E85,2007,2,79.3 +21,E85,2008,1,80.24 +21,E85,2008,2,80.2 +21,E85,2008,3,80.26 +21,E85,2008,4,80.21 +21,E85,2008,5,81.1 +21,E85,2008,6,81.75 +21,E85,2008,7,82.95 +21,E85,2008,8,83.78 +21,E85,2008,9,84.38 +21,E85,2008,10,85.58 +21,E85,2008,11,85.42 +21,E85,2008,12,84.93 +21,E85,2009,1,84.33 +21,E85,2009,2,84.55 +21,E85,2009,3,84.8 +21,E85,2009,4,85.0 +21,E85,2009,5,84.83 +21,E85,2009,6,84.96 +21,E85,2009,7,87.89 +21,E85,2009,8,95.0 +21,E85,2009,9,96.79 +21,E85,2009,10,96.97 +21,E85,2009,11,98.02 +21,E85,2009,12,99.46 +21,E85,2010,1,91.05 +21,E85,2010,2,90.87 +21,E85,2010,3,95.87 +21,E85,2010,4,93.65 +21,E85,2010,5,96.36 +21,E85,2010,6,96.41 +21,E85,2010,7,97.26 +21,E85,2010,8,97.99 +21,E85,2010,9,99.05 +21,E85,2010,10,101.02 +21,E85,2010,11,101.43 +21,E85,2010,12,101.21 +21,E85,2011,1,86.15 +21,E85,2011,2,86.52 +21,E85,2011,3,86.76 +21,E85,2011,4,87.41 +21,E85,2011,5,87.8 +21,E85,2011,6,87.65 +21,E85,2011,7,87.29 +21,E85,2011,8,87.98 +21,E85,2011,9,88.72 +21,E85,2011,10,88.81 +21,E85,2011,11,88.78 +21,E85,2011,12,88.69 +21,E85,2012,1,89.58 +21,E85,2012,2,90.68 +21,E85,2012,3,90.79 +21,E85,2012,4,91.44 +21,E85,2012,5,91.24 +21,E85,2012,6,90.64 +21,E85,2012,7,90.2 +21,E85,2012,8,90.18 +21,E85,2012,9,91.47 +21,E85,2012,10,92.88 +21,E85,2012,11,92.65 +21,E85,2012,12,89.67 +21,E85,2013,1,90.28 +21,E85,2013,2,89.76 +21,E85,2013,3,89.53 +21,E85,2013,4,89.18 +21,E85,2013,5,88.63 +21,E85,2013,6,87.57 +21,E85,2013,7,87.16 +21,E85,2013,8,86.96 +21,E85,2013,9,86.97 +21,E85,2013,10,87.23 +21,E85,2013,11,87.08 +21,E85,2013,12,87.02 +21,E85,2014,1,87.86 +21,E85,2014,2,87.19 +21,E85,2014,3,87.04 +21,E85,2014,4,85.72 +21,E85,2014,5,82.76 +21,E85,2014,6,80.86 +21,E85,2014,7,79.84 +21,E85,2014,8,81.61 +21,E85,2014,9,82.07 +21,E85,2014,10,82.85 +21,E85,2014,11,82.81 +21,E85,2014,12,82.49 +21,E85,2015,1,80.83 +21,E85,2015,2,79.32 +21,E85,2015,3,78.3 +21,E85,2015,4,80.04 +21,E85,2015,5,81.6 +21,E85,2015,6,81.15 +21,E85,2015,7,79.94 +21,E85,2015,8,79.3 +21,E85,2015,9,78.66 +21,E85,2015,10,76.84 +21,E85,2015,11,75.98 +21,E85,2015,12,75.35 +21,E85,2016,1, +21,E85,2016,2, +21,E85,2016,3, +21,E85,2016,4, +21,E85,2016,5, +21,E85,2016,6, +21,E85,2016,7, +21,E85,2016,8, +21,E85,2016,9, +21,E85,2016,10, +21,E85,2016,11, +21,E85,2016,12, +21,E85,2017,1, +21,E85,2017,2, +21,E85,2017,3, +21,E85,2017,4, +21,E85,2017,5, +21,E85,2017,6, +21,E85,2017,7, +21,E85,2017,8, +21,E85,2017,9, +21,E85,2017,10, +21,E85,2017,11, +21,E85,2017,12, +21,E85,2018,1, +21,E85,2018,2, +21,E85,2018,3, +21,E85,2018,4, +21,E85,2018,5, +21,E85,2018,6, +21,E85,2018,7, +21,E85,2018,8, +21,E85,2018,9, +21,E85,2018,10, +21,E85,2018,11, +21,E85,2018,12, +21,E85,2019,1, +21,E85,2019,2, +21,E85,2019,3, +21,E85,2019,4, +21,E85,2019,5, +21,E85,2019,6, +21,E85,2019,7, +21,E85,2019,8, +21,E85,2019,9, +21,E85,2019,10, +21,E85,2019,11, +21,E85,2019,12, +21,E85,2020,1, +21,E85,2020,2, +21,E85,2020,3, +21,E85,2020,4, +21,E85,2020,5, +21,E85,2020,6, +21,E85,2020,7, +21,E85,2020,8, +21,E85,2020,9, +21,E85,2020,10, +21,E85,2020,11, +21,E85,2020,12, +21,E85,2021,1, +21,E85,2021,2, +21,E85,2021,3, +21,E85,2021,4, +21,E85,2021,5, +21,E85,2021,6, +21,E85,2021,7, +21,E85,2021,8, +21,E85,2021,9, +21,E85,2021,10, +21,E85,2021,11, +21,E85,2021,12, +21,E85,2022,1, +21,E85,2022,2, +21,E85,2022,3, +21,E85,2022,4, +21,E85,2022,5, +21,E85,2022,6, +21,E85,2022,7, +21,E85,2022,8, +21,E85,2022,9, +21,E85,2022,10, +21,E85,2022,11, +21,E85,2022,12, +21,E85,2023,1, +21,E85,2023,2, +21,E85,2023,3, +21,E85,2023,4, +21,E85,2023,5, +21,E85,2023,6, +21,E85,2023,7, +21,E85,2023,8, +21,E85,2023,9, +21,E85,2023,10, +21,E85,2023,11, +21,E85,2023,12, +21,E85,2024,1, +21,E85,2024,2, +21,E85,2024,3, +21,E85,2024,4, +21,E85,2024,5, +21,E85,2024,6, +21,E85,2024,7, +21,E85,2024,8, +21,E85,2024,9, +21,E85,2024,10, +21,E85,2024,11, +21,E85,2024,12, +21,GPLc,2007,12,72.85 +21,GPLc,2007,11,71.27 +21,GPLc,2007,1, +21,GPLc,2007,2, +21,GPLc,2007,3, +21,GPLc,2007,4, +21,GPLc,2007,5, +21,GPLc,2007,6, +21,GPLc,2007,7, +21,GPLc,2007,8, +21,GPLc,2007,9, +21,GPLc,2007,10, +21,GPLc,2008,1,74.25 +21,GPLc,2008,2,73.5 +21,GPLc,2008,3,73.26 +21,GPLc,2008,4,73.13 +21,GPLc,2008,5,73.92 +21,GPLc,2008,6,75.35 +21,GPLc,2008,7,75.8 +21,GPLc,2008,8,76.27 +21,GPLc,2008,9,76.48 +21,GPLc,2008,11,77.63 +21,GPLc,2008,12,74.76 +21,GPLc,2008,10,78.41 +21,GPLc,2009,1,68.63 +21,GPLc,2009,2,69.54 +21,GPLc,2009,3,67.89 +21,GPLc,2009,4,64.48 +21,GPLc,2009,5,63.54 +21,GPLc,2009,6,63.42 +21,GPLc,2009,10,63.93 +21,GPLc,2009,11,65.38 +21,GPLc,2009,12,67.01 +21,GPLc,2009,7,62.8 +21,GPLc,2009,8,62.91 +21,GPLc,2009,9,64.35 +21,GPLc,2010,1,69.04 +21,GPLc,2010,2,71.83 +21,GPLc,2010,3,72.77 +21,GPLc,2010,4,72.57 +21,GPLc,2010,6,74.25 +21,GPLc,2010,8,76.57 +21,GPLc,2010,9,77.61 +21,GPLc,2010,10,79.23 +21,GPLc,2010,11,79.99 +21,GPLc,2010,12,82.86 +21,GPLc,2010,7,75.0 +21,GPLc,2010,5,73.62 +21,GPLc,2011,7,83.43 +21,GPLc,2011,1,80.32 +21,GPLc,2011,2,81.06 +21,GPLc,2011,3,81.19 +21,GPLc,2011,4,81.32 +21,GPLc,2011,5,82.14 +21,GPLc,2011,6,83.1 +21,GPLc,2011,8,83.88 +21,GPLc,2011,9,83.93 +21,GPLc,2011,10,84.12 +21,GPLc,2011,11,84.25 +21,GPLc,2011,12,84.06 +21,GPLc,2012,1,84.13 +21,GPLc,2012,2,86.39 +21,GPLc,2012,3,88.82 +21,GPLc,2012,4,89.77 +21,GPLc,2012,5,89.83 +21,GPLc,2012,6,89.65 +21,GPLc,2012,7,88.33 +21,GPLc,2012,8,88.39 +21,GPLc,2012,9,86.78 +21,GPLc,2012,10,88.53 +21,GPLc,2012,11,89.15 +21,GPLc,2012,12,89.28 +21,GPLc,2013,1,88.21 +21,GPLc,2013,2,88.93 +21,GPLc,2013,3,88.73 +21,GPLc,2013,4,88.39 +21,GPLc,2013,5,87.9 +21,GPLc,2013,6,87.99 +21,GPLc,2013,8,86.31 +21,GPLc,2013,9,86.3 +21,GPLc,2013,10,86.0 +21,GPLc,2013,11,85.88 +21,GPLc,2013,12,86.18 +21,GPLc,2013,7,87.07 +21,GPLc,2014,2,85.65 +21,GPLc,2014,4,85.14 +21,GPLc,2014,8,83.6 +21,GPLc,2014,11,83.83 +21,GPLc,2014,12,83.46 +21,GPLc,2014,6,84.16 +21,GPLc,2014,10,83.89 +21,GPLc,2014,1,85.43 +21,GPLc,2014,5,84.88 +21,GPLc,2014,7,83.8 +21,GPLc,2014,9,83.7 +21,GPLc,2014,3,85.35 +21,GPLc,2015,1,83.56 +21,GPLc,2015,2,82.59 +21,GPLc,2015,3,82.12 +21,GPLc,2015,4,81.71 +21,GPLc,2015,5,82.16 +21,GPLc,2015,6,81.42 +21,GPLc,2015,8,80.4 +21,GPLc,2015,12,77.29 +21,GPLc,2015,7,80.37 +21,GPLc,2015,9,79.29 +21,GPLc,2015,10,78.68 +21,GPLc,2015,11,78.12 +21,GPLc,2016,1, +21,GPLc,2016,2, +21,GPLc,2016,3, +21,GPLc,2016,4, +21,GPLc,2016,5, +21,GPLc,2016,6, +21,GPLc,2016,7, +21,GPLc,2016,8, +21,GPLc,2016,9, +21,GPLc,2016,10, +21,GPLc,2016,11, +21,GPLc,2016,12, +21,GPLc,2017,1, +21,GPLc,2017,2, +21,GPLc,2017,3, +21,GPLc,2017,4, +21,GPLc,2017,5, +21,GPLc,2017,6, +21,GPLc,2017,7, +21,GPLc,2017,8, +21,GPLc,2017,9, +21,GPLc,2017,10, +21,GPLc,2017,11, +21,GPLc,2017,12, +21,GPLc,2018,1, +21,GPLc,2018,2, +21,GPLc,2018,3, +21,GPLc,2018,4, +21,GPLc,2018,5, +21,GPLc,2018,6, +21,GPLc,2018,7, +21,GPLc,2018,8, +21,GPLc,2018,9, +21,GPLc,2018,10, +21,GPLc,2018,11, +21,GPLc,2018,12, +21,GPLc,2019,1, +21,GPLc,2019,2, +21,GPLc,2019,3, +21,GPLc,2019,4, +21,GPLc,2019,5, +21,GPLc,2019,6, +21,GPLc,2019,7, +21,GPLc,2019,8, +21,GPLc,2019,9, +21,GPLc,2019,10, +21,GPLc,2019,11, +21,GPLc,2019,12, +21,GPLc,2020,1, +21,GPLc,2020,2, +21,GPLc,2020,3, +21,GPLc,2020,4, +21,GPLc,2020,5, +21,GPLc,2020,6, +21,GPLc,2020,7, +21,GPLc,2020,8, +21,GPLc,2020,9, +21,GPLc,2020,10, +21,GPLc,2020,11, +21,GPLc,2020,12, +21,GPLc,2021,1, +21,GPLc,2021,2, +21,GPLc,2021,3, +21,GPLc,2021,4, +21,GPLc,2021,5, +21,GPLc,2021,6, +21,GPLc,2021,7, +21,GPLc,2021,8, +21,GPLc,2021,9, +21,GPLc,2021,10, +21,GPLc,2021,11, +21,GPLc,2021,12, +21,GPLc,2022,1, +21,GPLc,2022,2, +21,GPLc,2022,3, +21,GPLc,2022,4, +21,GPLc,2022,5, +21,GPLc,2022,6, +21,GPLc,2022,7, +21,GPLc,2022,8, +21,GPLc,2022,9, +21,GPLc,2022,10, +21,GPLc,2022,11, +21,GPLc,2022,12, +21,GPLc,2023,1, +21,GPLc,2023,2, +21,GPLc,2023,3, +21,GPLc,2023,4, +21,GPLc,2023,5, +21,GPLc,2023,6, +21,GPLc,2023,7, +21,GPLc,2023,8, +21,GPLc,2023,9, +21,GPLc,2023,10, +21,GPLc,2023,11, +21,GPLc,2023,12, +21,GPLc,2024,1, +21,GPLc,2024,2, +21,GPLc,2024,3, +21,GPLc,2024,4, +21,GPLc,2024,5, +21,GPLc,2024,6, +21,GPLc,2024,7, +21,GPLc,2024,8, +21,GPLc,2024,9, +21,GPLc,2024,10, +21,GPLc,2024,11, +21,GPLc,2024,12, +21,E10,2009,12,127.05 +21,E10,2009,5,120.03 +21,E10,2009,6,127.25 +21,E10,2009,7,124.52 +21,E10,2009,8,125.83 +21,E10,2009,9,124.7 +21,E10,2009,10,126.17 +21,E10,2009,11,128.86 +21,E10,2009,4,116.55 +21,E10,2009,1, +21,E10,2009,2, +21,E10,2009,3, +21,E10,2010,8,135.16 +21,E10,2010,9,134.79 +21,E10,2010,10,135.85 +21,E10,2010,11,136.26 +21,E10,2010,12,141.5 +21,E10,2010,1,130.4 +21,E10,2010,2,131.78 +21,E10,2010,3,136.32 +21,E10,2010,4,138.55 +21,E10,2010,5,139.04 +21,E10,2010,6,137.65 +21,E10,2010,7,136.17 +21,E10,2011,2,147.2 +21,E10,2011,3,151.84 +21,E10,2011,4,154.31 +21,E10,2011,5,155.23 +21,E10,2011,6,152.34 +21,E10,2011,7,152.39 +21,E10,2011,8,151.6 +21,E10,2011,9,153.4 +21,E10,2011,10,152.19 +21,E10,2011,11,151.87 +21,E10,2011,12,151.16 +21,E10,2011,1,146.76 +21,E10,2012,8,160.06 +21,E10,2012,10,154.45 +21,E10,2012,1,156.26 +21,E10,2012,2,158.76 +21,E10,2012,3,163.66 +21,E10,2012,4,166.3 +21,E10,2012,5,160.51 +21,E10,2012,6,154.91 +21,E10,2012,7,155.56 +21,E10,2012,9,157.24 +21,E10,2012,11,149.27 +21,E10,2012,12,149.12 +21,E10,2013,4,156.58 +21,E10,2013,1,153.54 +21,E10,2013,2,159.14 +21,E10,2013,3,159.09 +21,E10,2013,5,153.57 +21,E10,2013,6,153.61 +21,E10,2013,7,154.69 +21,E10,2013,8,155.21 +21,E10,2013,9,154.52 +21,E10,2013,10,149.68 +21,E10,2013,11,148.42 +21,E10,2013,12,149.54 +21,E10,2014,1,149.05 +21,E10,2014,2,149.88 +21,E10,2014,3,150.5 +21,E10,2014,4,151.45 +21,E10,2014,6,153.41 +21,E10,2014,8,151.42 +21,E10,2014,9,150.54 +21,E10,2014,10,147.86 +21,E10,2014,11,143.69 +21,E10,2014,12,135.54 +21,E10,2014,7,154.01 +21,E10,2014,5,152.08 +21,E10,2015,1,127.94 +21,E10,2015,2,132.59 +21,E10,2015,3,138.39 +21,E10,2015,4,140.77 +21,E10,2015,5,143.42 +21,E10,2015,6,144.1 +21,E10,2015,7,143.6 +21,E10,2015,8,138.48 +21,E10,2015,9,131.62 +21,E10,2015,10,129.89 +21,E10,2015,11,129.84 +21,E10,2015,12,127.83 +21,E10,2016,1, +21,E10,2016,2, +21,E10,2016,3, +21,E10,2016,4, +21,E10,2016,5, +21,E10,2016,6, +21,E10,2016,7, +21,E10,2016,8, +21,E10,2016,9, +21,E10,2016,10, +21,E10,2016,11, +21,E10,2016,12, +21,E10,2017,1, +21,E10,2017,2, +21,E10,2017,3, +21,E10,2017,4, +21,E10,2017,5, +21,E10,2017,6, +21,E10,2017,7, +21,E10,2017,8, +21,E10,2017,9, +21,E10,2017,10, +21,E10,2017,11, +21,E10,2017,12, +21,E10,2018,1, +21,E10,2018,2, +21,E10,2018,3, +21,E10,2018,4, +21,E10,2018,5, +21,E10,2018,6, +21,E10,2018,7, +21,E10,2018,8, +21,E10,2018,9, +21,E10,2018,10, +21,E10,2018,11, +21,E10,2018,12, +21,E10,2019,1, +21,E10,2019,2, +21,E10,2019,3, +21,E10,2019,4, +21,E10,2019,5, +21,E10,2019,6, +21,E10,2019,7, +21,E10,2019,8, +21,E10,2019,9, +21,E10,2019,10, +21,E10,2019,11, +21,E10,2019,12, +21,E10,2020,1, +21,E10,2020,2, +21,E10,2020,3, +21,E10,2020,4, +21,E10,2020,5, +21,E10,2020,6, +21,E10,2020,7, +21,E10,2020,8, +21,E10,2020,9, +21,E10,2020,10, +21,E10,2020,11, +21,E10,2020,12, +21,E10,2021,1, +21,E10,2021,2, +21,E10,2021,3, +21,E10,2021,4, +21,E10,2021,5, +21,E10,2021,6, +21,E10,2021,7, +21,E10,2021,8, +21,E10,2021,9, +21,E10,2021,10, +21,E10,2021,11, +21,E10,2021,12, +21,E10,2022,1, +21,E10,2022,2, +21,E10,2022,3, +21,E10,2022,4, +21,E10,2022,5, +21,E10,2022,6, +21,E10,2022,7, +21,E10,2022,8, +21,E10,2022,9, +21,E10,2022,10, +21,E10,2022,11, +21,E10,2022,12, +21,E10,2023,1, +21,E10,2023,2, +21,E10,2023,3, +21,E10,2023,4, +21,E10,2023,5, +21,E10,2023,6, +21,E10,2023,7, +21,E10,2023,8, +21,E10,2023,9, +21,E10,2023,10, +21,E10,2023,11, +21,E10,2023,12, +21,E10,2024,1, +21,E10,2024,2, +21,E10,2024,3, +21,E10,2024,4, +21,E10,2024,5, +21,E10,2024,6, +21,E10,2024,7, +21,E10,2024,8, +21,E10,2024,9, +21,E10,2024,10, +21,E10,2024,11, +21,E10,2024,12, +21,SP98,2013,7,161.25 +21,SP98,2013,8,161.86 +21,SP98,2013,9,161.52 +21,SP98,2013,10,156.96 +21,SP98,2013,11,155.46 +21,SP98,2013,12,156.52 +21,SP98,2013,6,158.86 +21,SP98,2013,1, +21,SP98,2013,2, +21,SP98,2013,3, +21,SP98,2013,4, +21,SP98,2013,5, +21,SP98,2014,1,156.12 +21,SP98,2014,2,156.66 +21,SP98,2014,3,157.05 +21,SP98,2014,4,157.88 +21,SP98,2014,5,158.47 +21,SP98,2014,6,159.58 +21,SP98,2014,7,160.58 +21,SP98,2014,8,158.24 +21,SP98,2014,9,157.05 +21,SP98,2014,10,154.84 +21,SP98,2014,11,150.69 +21,SP98,2014,12,142.6 +21,SP98,2015,1,134.53 +21,SP98,2015,2,138.81 +21,SP98,2015,3,144.25 +21,SP98,2015,4,146.9 +21,SP98,2015,5,150.11 +21,SP98,2015,6,150.92 +21,SP98,2015,7,150.54 +21,SP98,2015,8,145.8 +21,SP98,2015,9,139.09 +21,SP98,2015,10,137.02 +21,SP98,2015,11,136.56 +21,SP98,2015,12,134.57 +21,SP98,2016,1, +21,SP98,2016,2, +21,SP98,2016,3, +21,SP98,2016,4, +21,SP98,2016,5, +21,SP98,2016,6, +21,SP98,2016,7, +21,SP98,2016,8, +21,SP98,2016,9, +21,SP98,2016,10, +21,SP98,2016,11, +21,SP98,2016,12, +21,SP98,2017,1, +21,SP98,2017,2, +21,SP98,2017,3, +21,SP98,2017,4, +21,SP98,2017,5, +21,SP98,2017,6, +21,SP98,2017,7, +21,SP98,2017,8, +21,SP98,2017,9, +21,SP98,2017,10, +21,SP98,2017,11, +21,SP98,2017,12, +21,SP98,2018,1, +21,SP98,2018,2, +21,SP98,2018,3, +21,SP98,2018,4, +21,SP98,2018,5, +21,SP98,2018,6, +21,SP98,2018,7, +21,SP98,2018,8, +21,SP98,2018,9, +21,SP98,2018,10, +21,SP98,2018,11, +21,SP98,2018,12, +21,SP98,2019,1, +21,SP98,2019,2, +21,SP98,2019,3, +21,SP98,2019,4, +21,SP98,2019,5, +21,SP98,2019,6, +21,SP98,2019,7, +21,SP98,2019,8, +21,SP98,2019,9, +21,SP98,2019,10, +21,SP98,2019,11, +21,SP98,2019,12, +21,SP98,2020,1, +21,SP98,2020,2, +21,SP98,2020,3, +21,SP98,2020,4, +21,SP98,2020,5, +21,SP98,2020,6, +21,SP98,2020,7, +21,SP98,2020,8, +21,SP98,2020,9, +21,SP98,2020,10, +21,SP98,2020,11, +21,SP98,2020,12, +21,SP98,2021,1, +21,SP98,2021,2, +21,SP98,2021,3, +21,SP98,2021,4, +21,SP98,2021,5, +21,SP98,2021,6, +21,SP98,2021,7, +21,SP98,2021,8, +21,SP98,2021,9, +21,SP98,2021,10, +21,SP98,2021,11, +21,SP98,2021,12, +21,SP98,2022,1, +21,SP98,2022,2, +21,SP98,2022,3, +21,SP98,2022,4, +21,SP98,2022,5, +21,SP98,2022,6, +21,SP98,2022,7, +21,SP98,2022,8, +21,SP98,2022,9, +21,SP98,2022,10, +21,SP98,2022,11, +21,SP98,2022,12, +21,SP98,2023,1, +21,SP98,2023,2, +21,SP98,2023,3, +21,SP98,2023,4, +21,SP98,2023,5, +21,SP98,2023,6, +21,SP98,2023,7, +21,SP98,2023,8, +21,SP98,2023,9, +21,SP98,2023,10, +21,SP98,2023,11, +21,SP98,2023,12, +21,SP98,2024,1, +21,SP98,2024,2, +21,SP98,2024,3, +21,SP98,2024,4, +21,SP98,2024,5, +21,SP98,2024,6, +21,SP98,2024,7, +21,SP98,2024,8, +21,SP98,2024,9, +21,SP98,2024,10, +21,SP98,2024,11, +21,SP98,2024,12, +91,Gazole,2007,1,102.64 +91,Gazole,2007,2,102.79 +91,Gazole,2007,3,104.45 +91,Gazole,2007,4,107.35 +91,Gazole,2007,5,107.99 +91,Gazole,2007,6,109.0 +91,Gazole,2007,7,109.91 +91,Gazole,2007,8,109.95 +91,Gazole,2007,9,111.49 +91,Gazole,2007,10,112.96 +91,Gazole,2007,11,121.06 +91,Gazole,2007,12,121.97 +91,Gazole,2008,1,121.08 +91,Gazole,2008,2,121.6 +91,Gazole,2008,3,127.98 +91,Gazole,2008,4,130.63 +91,Gazole,2008,5,140.09 +91,Gazole,2008,6,146.09 +91,Gazole,2008,7,144.61 +91,Gazole,2008,8,136.04 +91,Gazole,2008,9,132.18 +91,Gazole,2008,10,124.21 +91,Gazole,2008,11,114.19 +91,Gazole,2008,12,103.3 +91,Gazole,2009,1,99.15 +91,Gazole,2009,2,98.22 +91,Gazole,2009,3,95.58 +91,Gazole,2009,4,97.7 +91,Gazole,2009,5,98.05 +91,Gazole,2009,6,102.26 +91,Gazole,2009,7,101.28 +91,Gazole,2009,8,104.2 +91,Gazole,2009,9,102.66 +91,Gazole,2009,10,103.31 +91,Gazole,2009,11,105.74 +91,Gazole,2009,12,105.13 +91,Gazole,2010,1,108.9 +91,Gazole,2010,2,109.42 +91,Gazole,2010,3,113.1 +91,Gazole,2010,4,116.48 +91,Gazole,2010,5,118.06 +91,Gazole,2010,6,117.62 +91,Gazole,2010,7,115.85 +91,Gazole,2010,8,115.55 +91,Gazole,2010,9,115.58 +91,Gazole,2010,10,119.15 +91,Gazole,2010,11,119.83 +91,Gazole,2010,12,123.18 +91,Gazole,2011,1,129.71 +91,Gazole,2011,2,132.83 +91,Gazole,2011,3,138.28 +91,Gazole,2011,4,139.38 +91,Gazole,2011,5,135.99 +91,Gazole,2011,6,134.82 +91,Gazole,2011,7,135.24 +91,Gazole,2011,8,134.4 +91,Gazole,2011,9,135.55 +91,Gazole,2011,10,136.27 +91,Gazole,2011,11,139.42 +91,Gazole,2011,12,139.89 +91,Gazole,2012,1,142.39 +91,Gazole,2012,2,144.22 +91,Gazole,2012,3,146.68 +91,Gazole,2012,4,145.59 +91,Gazole,2012,5,142.54 +91,Gazole,2012,6,136.92 +91,Gazole,2012,7,139.63 +91,Gazole,2012,8,145.49 +91,Gazole,2012,9,141.83 +91,Gazole,2012,10,140.95 +91,Gazole,2012,11,138.59 +91,Gazole,2012,12,138.36 +91,Gazole,2013,1,139.85 +91,Gazole,2013,2,143.16 +91,Gazole,2013,3,141.62 +91,Gazole,2013,4,137.47 +91,Gazole,2013,5,135.1 +91,Gazole,2013,6,135.35 +91,Gazole,2013,7,137.13 +91,Gazole,2013,8,137.61 +91,Gazole,2013,9,139.11 +91,Gazole,2013,10,135.7 +91,Gazole,2013,11,134.54 +91,Gazole,2013,12,135.9 +91,Gazole,2014,1,134.62 +91,Gazole,2014,2,134.71 +91,Gazole,2014,3,133.81 +91,Gazole,2014,5,133.33 +91,Gazole,2014,6,133.44 +91,Gazole,2014,7,133.26 +91,Gazole,2014,8,132.66 +91,Gazole,2014,9,132.02 +91,Gazole,2014,10,129.12 +91,Gazole,2014,11,126.36 +91,Gazole,2014,12,117.75 +91,Gazole,2014,4,133.32 +91,Gazole,2015,1,113.44 +91,Gazole,2015,2,119.27 +91,Gazole,2015,3,122.77 +91,Gazole,2015,4,122.63 +91,Gazole,2015,5,125.64 +91,Gazole,2015,6,124.14 +91,Gazole,2015,7,120.56 +91,Gazole,2015,8,115.05 +91,Gazole,2015,9,113.18 +91,Gazole,2015,10,112.6 +91,Gazole,2015,11,112.13 +91,Gazole,2015,12,105.99 +91,Gazole,2016,1, +91,Gazole,2016,2, +91,Gazole,2016,3, +91,Gazole,2016,4, +91,Gazole,2016,5, +91,Gazole,2016,6, +91,Gazole,2016,7, +91,Gazole,2016,8, +91,Gazole,2016,9, +91,Gazole,2016,10, +91,Gazole,2016,11, +91,Gazole,2016,12, +91,Gazole,2017,1, +91,Gazole,2017,2, +91,Gazole,2017,3, +91,Gazole,2017,4, +91,Gazole,2017,5, +91,Gazole,2017,6, +91,Gazole,2017,7, +91,Gazole,2017,8, +91,Gazole,2017,9, +91,Gazole,2017,10, +91,Gazole,2017,11, +91,Gazole,2017,12, +91,Gazole,2018,1, +91,Gazole,2018,2, +91,Gazole,2018,3, +91,Gazole,2018,4, +91,Gazole,2018,5, +91,Gazole,2018,6, +91,Gazole,2018,7, +91,Gazole,2018,8, +91,Gazole,2018,9, +91,Gazole,2018,10, +91,Gazole,2018,11, +91,Gazole,2018,12, +91,Gazole,2019,1, +91,Gazole,2019,2, +91,Gazole,2019,3, +91,Gazole,2019,4, +91,Gazole,2019,5, +91,Gazole,2019,6, +91,Gazole,2019,7, +91,Gazole,2019,8, +91,Gazole,2019,9, +91,Gazole,2019,10, +91,Gazole,2019,11, +91,Gazole,2019,12, +91,Gazole,2020,1, +91,Gazole,2020,2, +91,Gazole,2020,3, +91,Gazole,2020,4, +91,Gazole,2020,5, +91,Gazole,2020,6, +91,Gazole,2020,7, +91,Gazole,2020,8, +91,Gazole,2020,9, +91,Gazole,2020,10, +91,Gazole,2020,11, +91,Gazole,2020,12, +91,Gazole,2021,1, +91,Gazole,2021,2, +91,Gazole,2021,3, +91,Gazole,2021,4, +91,Gazole,2021,5, +91,Gazole,2021,6, +91,Gazole,2021,7, +91,Gazole,2021,8, +91,Gazole,2021,9, +91,Gazole,2021,10, +91,Gazole,2021,11, +91,Gazole,2021,12, +91,Gazole,2022,1, +91,Gazole,2022,2, +91,Gazole,2022,3, +91,Gazole,2022,4, +91,Gazole,2022,5, +91,Gazole,2022,6, +91,Gazole,2022,7, +91,Gazole,2022,8, +91,Gazole,2022,9, +91,Gazole,2022,10, +91,Gazole,2022,11, +91,Gazole,2022,12, +91,Gazole,2023,1, +91,Gazole,2023,2, +91,Gazole,2023,3, +91,Gazole,2023,4, +91,Gazole,2023,5, +91,Gazole,2023,6, +91,Gazole,2023,7, +91,Gazole,2023,8, +91,Gazole,2023,9, +91,Gazole,2023,10, +91,Gazole,2023,11, +91,Gazole,2023,12, +91,Gazole,2024,1, +91,Gazole,2024,2, +91,Gazole,2024,3, +91,Gazole,2024,4, +91,Gazole,2024,5, +91,Gazole,2024,6, +91,Gazole,2024,7, +91,Gazole,2024,8, +91,Gazole,2024,9, +91,Gazole,2024,10, +91,Gazole,2024,11, +91,Gazole,2024,12, +91,SP95,2007,1,118.82 +91,SP95,2007,2,119.7 +91,SP95,2007,3,124.53 +91,SP95,2007,4,129.05 +91,SP95,2007,5,132.93 +91,SP95,2007,6,133.14 +91,SP95,2007,7,132.36 +91,SP95,2007,8,129.23 +91,SP95,2007,9,129.64 +91,SP95,2007,10,129.81 +91,SP95,2007,11,135.38 +91,SP95,2007,12,135.13 +91,SP95,2008,1,137.0 +91,SP95,2008,2,136.56 +91,SP95,2008,3,138.65 +91,SP95,2008,4,140.38 +91,SP95,2008,5,146.45 +91,SP95,2008,6,151.56 +91,SP95,2008,7,150.17 +91,SP95,2008,8,144.69 +91,SP95,2008,9,143.91 +91,SP95,2008,10,134.57 +91,SP95,2008,11,122.23 +91,SP95,2008,12,113.28 +91,SP95,2009,1,112.29 +91,SP95,2009,2,116.2 +91,SP95,2009,3,116.3 +91,SP95,2009,4,118.92 +91,SP95,2009,5,122.05 +91,SP95,2009,6,127.67 +91,SP95,2009,7,125.79 +91,SP95,2009,8,128.81 +91,SP95,2009,9,126.43 +91,SP95,2009,10,125.88 +91,SP95,2009,12,127.87 +91,SP95,2009,11,128.29 +91,SP95,2010,1,131.7 +91,SP95,2010,2,133.05 +91,SP95,2010,3,137.33 +91,SP95,2010,4,139.47 +91,SP95,2010,5,139.55 +91,SP95,2010,6,138.23 +91,SP95,2010,7,136.76 +91,SP95,2010,8,135.75 +91,SP95,2010,9,135.69 +91,SP95,2010,10,138.59 +91,SP95,2010,11,139.89 +91,SP95,2010,12,143.68 +91,SP95,2011,1,149.08 +91,SP95,2011,2,150.05 +91,SP95,2011,3,153.9 +91,SP95,2011,4,155.86 +91,SP95,2011,5,156.07 +91,SP95,2011,6,153.38 +91,SP95,2011,7,153.62 +91,SP95,2011,8,153.16 +91,SP95,2011,9,154.49 +91,SP95,2011,10,153.17 +91,SP95,2011,11,152.68 +91,SP95,2011,12,152.16 +91,SP95,2012,1,157.2 +91,SP95,2012,2,161.45 +91,SP95,2012,3,165.87 +91,SP95,2012,4,168.8 +91,SP95,2012,5,162.75 +91,SP95,2012,6,156.61 +91,SP95,2012,7,157.99 +91,SP95,2012,8,164.78 +91,SP95,2012,9,161.29 +91,SP95,2012,10,158.56 +91,SP95,2012,11,153.93 +91,SP95,2012,12,154.55 +91,SP95,2013,1,158.51 +91,SP95,2013,2,164.48 +91,SP95,2013,3,163.41 +91,SP95,2013,4,159.02 +91,SP95,2013,5,156.38 +91,SP95,2013,6,157.27 +91,SP95,2013,7,157.92 +91,SP95,2013,8,158.33 +91,SP95,2013,9,157.68 +91,SP95,2013,10,153.65 +91,SP95,2013,11,152.43 +91,SP95,2013,12,153.81 +91,SP95,2014,1,152.73 +91,SP95,2014,2,153.35 +91,SP95,2014,4,154.57 +91,SP95,2014,5,155.06 +91,SP95,2014,6,155.55 +91,SP95,2014,7,156.05 +91,SP95,2014,8,154.04 +91,SP95,2014,9,153.02 +91,SP95,2014,10,150.3 +91,SP95,2014,11,146.63 +91,SP95,2014,12,138.52 +91,SP95,2014,3,153.78 +91,SP95,2015,1,130.85 +91,SP95,2015,2,136.56 +91,SP95,2015,3,141.8 +91,SP95,2015,4,142.93 +91,SP95,2015,5,145.81 +91,SP95,2015,6,146.41 +91,SP95,2015,7,145.29 +91,SP95,2015,8,139.15 +91,SP95,2015,9,133.92 +91,SP95,2015,10,133.12 +91,SP95,2015,11,132.66 +91,SP95,2015,12,131.12 +91,SP95,2016,1, +91,SP95,2016,2, +91,SP95,2016,3, +91,SP95,2016,4, +91,SP95,2016,5, +91,SP95,2016,6, +91,SP95,2016,7, +91,SP95,2016,8, +91,SP95,2016,9, +91,SP95,2016,10, +91,SP95,2016,11, +91,SP95,2016,12, +91,SP95,2017,1, +91,SP95,2017,2, +91,SP95,2017,3, +91,SP95,2017,4, +91,SP95,2017,5, +91,SP95,2017,6, +91,SP95,2017,7, +91,SP95,2017,8, +91,SP95,2017,9, +91,SP95,2017,10, +91,SP95,2017,11, +91,SP95,2017,12, +91,SP95,2018,1, +91,SP95,2018,2, +91,SP95,2018,3, +91,SP95,2018,4, +91,SP95,2018,5, +91,SP95,2018,6, +91,SP95,2018,7, +91,SP95,2018,8, +91,SP95,2018,9, +91,SP95,2018,10, +91,SP95,2018,11, +91,SP95,2018,12, +91,SP95,2019,1, +91,SP95,2019,2, +91,SP95,2019,3, +91,SP95,2019,4, +91,SP95,2019,5, +91,SP95,2019,6, +91,SP95,2019,7, +91,SP95,2019,8, +91,SP95,2019,9, +91,SP95,2019,10, +91,SP95,2019,11, +91,SP95,2019,12, +91,SP95,2020,1, +91,SP95,2020,2, +91,SP95,2020,3, +91,SP95,2020,4, +91,SP95,2020,5, +91,SP95,2020,6, +91,SP95,2020,7, +91,SP95,2020,8, +91,SP95,2020,9, +91,SP95,2020,10, +91,SP95,2020,11, +91,SP95,2020,12, +91,SP95,2021,1, +91,SP95,2021,2, +91,SP95,2021,3, +91,SP95,2021,4, +91,SP95,2021,5, +91,SP95,2021,6, +91,SP95,2021,7, +91,SP95,2021,8, +91,SP95,2021,9, +91,SP95,2021,10, +91,SP95,2021,11, +91,SP95,2021,12, +91,SP95,2022,1, +91,SP95,2022,2, +91,SP95,2022,3, +91,SP95,2022,4, +91,SP95,2022,5, +91,SP95,2022,6, +91,SP95,2022,7, +91,SP95,2022,8, +91,SP95,2022,9, +91,SP95,2022,10, +91,SP95,2022,11, +91,SP95,2022,12, +91,SP95,2023,1, +91,SP95,2023,2, +91,SP95,2023,3, +91,SP95,2023,4, +91,SP95,2023,5, +91,SP95,2023,6, +91,SP95,2023,7, +91,SP95,2023,8, +91,SP95,2023,9, +91,SP95,2023,10, +91,SP95,2023,11, +91,SP95,2023,12, +91,SP95,2024,1, +91,SP95,2024,2, +91,SP95,2024,3, +91,SP95,2024,4, +91,SP95,2024,5, +91,SP95,2024,6, +91,SP95,2024,7, +91,SP95,2024,8, +91,SP95,2024,9, +91,SP95,2024,10, +91,SP95,2024,11, +91,SP95,2024,12, +91,GPLc,2007,11,70.66 +91,GPLc,2007,12,73.18 +91,GPLc,2007,1, +91,GPLc,2007,2, +91,GPLc,2007,3, +91,GPLc,2007,4, +91,GPLc,2007,5, +91,GPLc,2007,6, +91,GPLc,2007,7, +91,GPLc,2007,8, +91,GPLc,2007,9, +91,GPLc,2007,10, +91,GPLc,2008,1,73.96 +91,GPLc,2008,2,73.88 +91,GPLc,2008,3,73.76 +91,GPLc,2008,4,73.22 +91,GPLc,2008,5,73.78 +91,GPLc,2008,6,74.54 +91,GPLc,2008,7,75.39 +91,GPLc,2008,9,76.63 +91,GPLc,2008,10,76.57 +91,GPLc,2008,11,75.58 +91,GPLc,2008,12,73.3 +91,GPLc,2008,8,76.6 +91,GPLc,2009,3,67.56 +91,GPLc,2009,4,64.54 +91,GPLc,2009,7,63.54 +91,GPLc,2009,8,63.29 +91,GPLc,2009,9,64.19 +91,GPLc,2009,10,64.18 +91,GPLc,2009,11,64.9 +91,GPLc,2009,2,69.89 +91,GPLc,2009,5,63.67 +91,GPLc,2009,6,63.51 +91,GPLc,2009,12,65.64 +91,GPLc,2009,1,71.35 +91,GPLc,2010,1,69.14 +91,GPLc,2010,2,69.47 +91,GPLc,2010,4,67.92 +91,GPLc,2010,5,69.4 +91,GPLc,2010,7,71.77 +91,GPLc,2010,8,72.48 +91,GPLc,2010,9,72.93 +91,GPLc,2010,10,73.85 +91,GPLc,2010,11,74.79 +91,GPLc,2010,12,77.55 +91,GPLc,2010,3,68.0 +91,GPLc,2010,6,70.44 +91,GPLc,2011,1,81.68 +91,GPLc,2011,3,81.58 +91,GPLc,2011,5,82.78 +91,GPLc,2011,9,83.78 +91,GPLc,2011,12,83.55 +91,GPLc,2011,4,81.33 +91,GPLc,2011,6,83.38 +91,GPLc,2011,7,83.45 +91,GPLc,2011,8,83.69 +91,GPLc,2011,10,83.6 +91,GPLc,2011,11,83.59 +91,GPLc,2011,2,81.86 +91,GPLc,2012,1,84.8 +91,GPLc,2012,2,86.53 +91,GPLc,2012,3,88.02 +91,GPLc,2012,6,88.72 +91,GPLc,2012,8,87.7 +91,GPLc,2012,7,87.81 +91,GPLc,2012,4,88.48 +91,GPLc,2012,5,88.66 +91,GPLc,2012,9,87.55 +91,GPLc,2012,10,88.42 +91,GPLc,2012,11,88.86 +91,GPLc,2012,12,89.06 +91,GPLc,2013,8,88.12 +91,GPLc,2013,10,87.5 +91,GPLc,2013,9,88.06 +91,GPLc,2013,11,87.13 +91,GPLc,2013,12,87.51 +91,GPLc,2013,1,90.26 +91,GPLc,2013,2,90.58 +91,GPLc,2013,3,90.85 +91,GPLc,2013,4,90.49 +91,GPLc,2013,5,89.55 +91,GPLc,2013,6,88.93 +91,GPLc,2013,7,88.36 +91,GPLc,2014,3,88.02 +91,GPLc,2014,6,87.0 +91,GPLc,2014,10,86.53 +91,GPLc,2014,1,88.32 +91,GPLc,2014,2,88.51 +91,GPLc,2014,4,87.51 +91,GPLc,2014,5,87.42 +91,GPLc,2014,7,86.73 +91,GPLc,2014,8,86.62 +91,GPLc,2014,9,86.47 +91,GPLc,2014,11,86.35 +91,GPLc,2014,12,85.51 +91,GPLc,2015,1,85.21 +91,GPLc,2015,6,82.17 +91,GPLc,2015,9,79.59 +91,GPLc,2015,12,76.35 +91,GPLc,2015,3,82.73 +91,GPLc,2015,4,82.66 +91,GPLc,2015,5,82.75 +91,GPLc,2015,7,80.99 +91,GPLc,2015,8,81.03 +91,GPLc,2015,10,77.96 +91,GPLc,2015,11,77.26 +91,GPLc,2015,2,83.02 +91,GPLc,2016,1, +91,GPLc,2016,2, +91,GPLc,2016,3, +91,GPLc,2016,4, +91,GPLc,2016,5, +91,GPLc,2016,6, +91,GPLc,2016,7, +91,GPLc,2016,8, +91,GPLc,2016,9, +91,GPLc,2016,10, +91,GPLc,2016,11, +91,GPLc,2016,12, +91,GPLc,2017,1, +91,GPLc,2017,2, +91,GPLc,2017,3, +91,GPLc,2017,4, +91,GPLc,2017,5, +91,GPLc,2017,6, +91,GPLc,2017,7, +91,GPLc,2017,8, +91,GPLc,2017,9, +91,GPLc,2017,10, +91,GPLc,2017,11, +91,GPLc,2017,12, +91,GPLc,2018,1, +91,GPLc,2018,2, +91,GPLc,2018,3, +91,GPLc,2018,4, +91,GPLc,2018,5, +91,GPLc,2018,6, +91,GPLc,2018,7, +91,GPLc,2018,8, +91,GPLc,2018,9, +91,GPLc,2018,10, +91,GPLc,2018,11, +91,GPLc,2018,12, +91,GPLc,2019,1, +91,GPLc,2019,2, +91,GPLc,2019,3, +91,GPLc,2019,4, +91,GPLc,2019,5, +91,GPLc,2019,6, +91,GPLc,2019,7, +91,GPLc,2019,8, +91,GPLc,2019,9, +91,GPLc,2019,10, +91,GPLc,2019,11, +91,GPLc,2019,12, +91,GPLc,2020,1, +91,GPLc,2020,2, +91,GPLc,2020,3, +91,GPLc,2020,4, +91,GPLc,2020,5, +91,GPLc,2020,6, +91,GPLc,2020,7, +91,GPLc,2020,8, +91,GPLc,2020,9, +91,GPLc,2020,10, +91,GPLc,2020,11, +91,GPLc,2020,12, +91,GPLc,2021,1, +91,GPLc,2021,2, +91,GPLc,2021,3, +91,GPLc,2021,4, +91,GPLc,2021,5, +91,GPLc,2021,6, +91,GPLc,2021,7, +91,GPLc,2021,8, +91,GPLc,2021,9, +91,GPLc,2021,10, +91,GPLc,2021,11, +91,GPLc,2021,12, +91,GPLc,2022,1, +91,GPLc,2022,2, +91,GPLc,2022,3, +91,GPLc,2022,4, +91,GPLc,2022,5, +91,GPLc,2022,6, +91,GPLc,2022,7, +91,GPLc,2022,8, +91,GPLc,2022,9, +91,GPLc,2022,10, +91,GPLc,2022,11, +91,GPLc,2022,12, +91,GPLc,2023,1, +91,GPLc,2023,2, +91,GPLc,2023,3, +91,GPLc,2023,4, +91,GPLc,2023,5, +91,GPLc,2023,6, +91,GPLc,2023,7, +91,GPLc,2023,8, +91,GPLc,2023,9, +91,GPLc,2023,10, +91,GPLc,2023,11, +91,GPLc,2023,12, +91,GPLc,2024,1, +91,GPLc,2024,2, +91,GPLc,2024,3, +91,GPLc,2024,4, +91,GPLc,2024,5, +91,GPLc,2024,6, +91,GPLc,2024,7, +91,GPLc,2024,8, +91,GPLc,2024,9, +91,GPLc,2024,10, +91,GPLc,2024,11, +91,GPLc,2024,12, +91,E85,2007,10,83.68 +91,E85,2007,6,81.39 +91,E85,2007,8,82.79 +91,E85,2007,11,84.01 +91,E85,2007,12,84.44 +91,E85,2007,5,79.5 +91,E85,2007,7,82.75 +91,E85,2007,9,83.06 +91,E85,2007,1, +91,E85,2007,2, +91,E85,2007,3, +91,E85,2007,4, +91,E85,2008,1,83.92 +91,E85,2008,2,86.88 +91,E85,2008,3,86.88 +91,E85,2008,4,86.93 +91,E85,2008,5,87.0 +91,E85,2008,6,87.06 +91,E85,2008,7,87.0 +91,E85,2008,8,87.9 +91,E85,2008,9,89.74 +91,E85,2008,10,89.75 +91,E85,2008,11,86.32 +91,E85,2008,12,83.22 +91,E85,2009,1,83.66 +91,E85,2009,2,85.08 +91,E85,2009,3,82.76 +91,E85,2009,4,82.8 +91,E85,2009,5,82.8 +91,E85,2009,6,82.72 +91,E85,2009,7,97.29 +91,E85,2009,8,104.97 +91,E85,2009,9,107.31 +91,E85,2009,10,108.79 +91,E85,2009,11,108.98 +91,E85,2009,12,109.0 +91,E85,2010,1,92.6 +91,E85,2010,2,96.66 +91,E85,2010,3,102.92 +91,E85,2010,4,106.85 +91,E85,2010,5,105.94 +91,E85,2010,6,104.21 +91,E85,2010,7,110.85 +91,E85,2010,8,112.22 +91,E85,2010,9,113.93 +91,E85,2010,10,114.77 +91,E85,2010,11,115.6 +91,E85,2010,12,115.71 +91,E85,2011,1,89.37 +91,E85,2011,2,92.31 +91,E85,2011,3,92.84 +91,E85,2011,4,93.09 +91,E85,2011,5,93.21 +91,E85,2011,6,93.24 +91,E85,2011,7,93.1 +91,E85,2011,8,93.04 +91,E85,2011,9,93.22 +91,E85,2011,10,93.42 +91,E85,2011,11,93.32 +91,E85,2011,12,93.85 +91,E85,2012,1,91.26 +91,E85,2012,2,92.15 +91,E85,2012,3,92.15 +91,E85,2012,4,92.14 +91,E85,2012,5,90.73 +91,E85,2012,6,90.4 +91,E85,2012,7,90.83 +91,E85,2012,8,91.9 +91,E85,2012,9,93.22 +91,E85,2012,10,93.95 +91,E85,2012,11,93.94 +91,E85,2012,12,93.79 +91,E85,2013,1,94.36 +91,E85,2013,2,94.47 +91,E85,2013,3,94.54 +91,E85,2013,4,94.71 +91,E85,2013,5,94.74 +91,E85,2013,6,94.74 +91,E85,2013,7,95.22 +91,E85,2013,8,95.06 +91,E85,2013,9,95.55 +91,E85,2013,10,95.56 +91,E85,2013,11,95.45 +91,E85,2013,12,95.53 +91,E85,2014,1,94.37 +91,E85,2014,2,94.14 +91,E85,2014,3,94.19 +91,E85,2014,4,94.27 +91,E85,2014,5,93.81 +91,E85,2014,6,94.0 +91,E85,2014,7,93.76 +91,E85,2014,8,92.38 +91,E85,2014,9,92.49 +91,E85,2014,10,91.79 +91,E85,2014,11,91.87 +91,E85,2014,12,92.96 +91,E85,2015,1,90.08 +91,E85,2015,2,88.6 +91,E85,2015,3,88.95 +91,E85,2015,4,88.7 +91,E85,2015,5,88.46 +91,E85,2015,6,87.97 +91,E85,2015,7,87.06 +91,E85,2015,8,86.95 +91,E85,2015,9,88.74 +91,E85,2015,10,89.15 +91,E85,2015,11,89.02 +91,E85,2015,12,89.19 +91,E85,2016,1, +91,E85,2016,2, +91,E85,2016,3, +91,E85,2016,4, +91,E85,2016,5, +91,E85,2016,6, +91,E85,2016,7, +91,E85,2016,8, +91,E85,2016,9, +91,E85,2016,10, +91,E85,2016,11, +91,E85,2016,12, +91,E85,2017,1, +91,E85,2017,2, +91,E85,2017,3, +91,E85,2017,4, +91,E85,2017,5, +91,E85,2017,6, +91,E85,2017,7, +91,E85,2017,8, +91,E85,2017,9, +91,E85,2017,10, +91,E85,2017,11, +91,E85,2017,12, +91,E85,2018,1, +91,E85,2018,2, +91,E85,2018,3, +91,E85,2018,4, +91,E85,2018,5, +91,E85,2018,6, +91,E85,2018,7, +91,E85,2018,8, +91,E85,2018,9, +91,E85,2018,10, +91,E85,2018,11, +91,E85,2018,12, +91,E85,2019,1, +91,E85,2019,2, +91,E85,2019,3, +91,E85,2019,4, +91,E85,2019,5, +91,E85,2019,6, +91,E85,2019,7, +91,E85,2019,8, +91,E85,2019,9, +91,E85,2019,10, +91,E85,2019,11, +91,E85,2019,12, +91,E85,2020,1, +91,E85,2020,2, +91,E85,2020,3, +91,E85,2020,4, +91,E85,2020,5, +91,E85,2020,6, +91,E85,2020,7, +91,E85,2020,8, +91,E85,2020,9, +91,E85,2020,10, +91,E85,2020,11, +91,E85,2020,12, +91,E85,2021,1, +91,E85,2021,2, +91,E85,2021,3, +91,E85,2021,4, +91,E85,2021,5, +91,E85,2021,6, +91,E85,2021,7, +91,E85,2021,8, +91,E85,2021,9, +91,E85,2021,10, +91,E85,2021,11, +91,E85,2021,12, +91,E85,2022,1, +91,E85,2022,2, +91,E85,2022,3, +91,E85,2022,4, +91,E85,2022,5, +91,E85,2022,6, +91,E85,2022,7, +91,E85,2022,8, +91,E85,2022,9, +91,E85,2022,10, +91,E85,2022,11, +91,E85,2022,12, +91,E85,2023,1, +91,E85,2023,2, +91,E85,2023,3, +91,E85,2023,4, +91,E85,2023,5, +91,E85,2023,6, +91,E85,2023,7, +91,E85,2023,8, +91,E85,2023,9, +91,E85,2023,10, +91,E85,2023,11, +91,E85,2023,12, +91,E85,2024,1, +91,E85,2024,2, +91,E85,2024,3, +91,E85,2024,4, +91,E85,2024,5, +91,E85,2024,6, +91,E85,2024,7, +91,E85,2024,8, +91,E85,2024,9, +91,E85,2024,10, +91,E85,2024,11, +91,E85,2024,12, +91,E10,2009,6,125.85 +91,E10,2009,7,124.01 +91,E10,2009,9,123.77 +91,E10,2009,10,123.59 +91,E10,2009,11,125.73 +91,E10,2009,12,125.89 +91,E10,2009,4,121.28 +91,E10,2009,5,121.03 +91,E10,2009,8,126.41 +91,E10,2009,1, +91,E10,2009,2, +91,E10,2009,3, +91,E10,2010,1,128.8 +91,E10,2010,2,130.4 +91,E10,2010,3,134.22 +91,E10,2010,4,136.4 +91,E10,2010,5,136.94 +91,E10,2010,6,135.89 +91,E10,2010,7,134.7 +91,E10,2010,8,133.52 +91,E10,2010,9,133.15 +91,E10,2010,10,135.37 +91,E10,2010,11,136.91 +91,E10,2010,12,140.82 +91,E10,2011,1,146.54 +91,E10,2011,2,147.34 +91,E10,2011,3,151.0 +91,E10,2011,4,152.28 +91,E10,2011,5,151.77 +91,E10,2011,6,149.31 +91,E10,2011,7,149.17 +91,E10,2011,8,148.63 +91,E10,2011,9,149.87 +91,E10,2011,10,148.88 +91,E10,2011,11,148.54 +91,E10,2011,12,148.22 +91,E10,2012,2,158.0 +91,E10,2012,3,162.41 +91,E10,2012,4,165.52 +91,E10,2012,5,158.5 +91,E10,2012,6,152.84 +91,E10,2012,7,154.54 +91,E10,2012,8,160.59 +91,E10,2012,9,156.23 +91,E10,2012,10,152.81 +91,E10,2012,11,147.68 +91,E10,2012,12,149.36 +91,E10,2012,1,154.03 +91,E10,2013,1,155.36 +91,E10,2013,2,161.82 +91,E10,2013,3,160.52 +91,E10,2013,4,156.2 +91,E10,2013,5,153.35 +91,E10,2013,6,154.29 +91,E10,2013,7,155.23 +91,E10,2013,8,155.57 +91,E10,2013,9,154.57 +91,E10,2013,10,150.53 +91,E10,2013,11,149.5 +91,E10,2013,12,150.82 +91,E10,2014,1,149.91 +91,E10,2014,5,151.87 +91,E10,2014,6,152.56 +91,E10,2014,7,153.11 +91,E10,2014,9,150.1 +91,E10,2014,10,147.29 +91,E10,2014,11,143.7 +91,E10,2014,12,135.64 +91,E10,2014,2,150.62 +91,E10,2014,3,150.86 +91,E10,2014,4,151.5 +91,E10,2014,8,151.14 +91,E10,2015,1,129.12 +91,E10,2015,2,134.58 +91,E10,2015,3,139.1 +91,E10,2015,4,140.4 +91,E10,2015,5,143.16 +91,E10,2015,6,143.83 +91,E10,2015,8,136.55 +91,E10,2015,9,131.34 +91,E10,2015,10,130.34 +91,E10,2015,11,129.93 +91,E10,2015,12,128.37 +91,E10,2015,7,142.91 +91,E10,2016,1, +91,E10,2016,2, +91,E10,2016,3, +91,E10,2016,4, +91,E10,2016,5, +91,E10,2016,6, +91,E10,2016,7, +91,E10,2016,8, +91,E10,2016,9, +91,E10,2016,10, +91,E10,2016,11, +91,E10,2016,12, +91,E10,2017,1, +91,E10,2017,2, +91,E10,2017,3, +91,E10,2017,4, +91,E10,2017,5, +91,E10,2017,6, +91,E10,2017,7, +91,E10,2017,8, +91,E10,2017,9, +91,E10,2017,10, +91,E10,2017,11, +91,E10,2017,12, +91,E10,2018,1, +91,E10,2018,2, +91,E10,2018,3, +91,E10,2018,4, +91,E10,2018,5, +91,E10,2018,6, +91,E10,2018,7, +91,E10,2018,8, +91,E10,2018,9, +91,E10,2018,10, +91,E10,2018,11, +91,E10,2018,12, +91,E10,2019,1, +91,E10,2019,2, +91,E10,2019,3, +91,E10,2019,4, +91,E10,2019,5, +91,E10,2019,6, +91,E10,2019,7, +91,E10,2019,8, +91,E10,2019,9, +91,E10,2019,10, +91,E10,2019,11, +91,E10,2019,12, +91,E10,2020,1, +91,E10,2020,2, +91,E10,2020,3, +91,E10,2020,4, +91,E10,2020,5, +91,E10,2020,6, +91,E10,2020,7, +91,E10,2020,8, +91,E10,2020,9, +91,E10,2020,10, +91,E10,2020,11, +91,E10,2020,12, +91,E10,2021,1, +91,E10,2021,2, +91,E10,2021,3, +91,E10,2021,4, +91,E10,2021,5, +91,E10,2021,6, +91,E10,2021,7, +91,E10,2021,8, +91,E10,2021,9, +91,E10,2021,10, +91,E10,2021,11, +91,E10,2021,12, +91,E10,2022,1, +91,E10,2022,2, +91,E10,2022,3, +91,E10,2022,4, +91,E10,2022,5, +91,E10,2022,6, +91,E10,2022,7, +91,E10,2022,8, +91,E10,2022,9, +91,E10,2022,10, +91,E10,2022,11, +91,E10,2022,12, +91,E10,2023,1, +91,E10,2023,2, +91,E10,2023,3, +91,E10,2023,4, +91,E10,2023,5, +91,E10,2023,6, +91,E10,2023,7, +91,E10,2023,8, +91,E10,2023,9, +91,E10,2023,10, +91,E10,2023,11, +91,E10,2023,12, +91,E10,2024,1, +91,E10,2024,2, +91,E10,2024,3, +91,E10,2024,4, +91,E10,2024,5, +91,E10,2024,6, +91,E10,2024,7, +91,E10,2024,8, +91,E10,2024,9, +91,E10,2024,10, +91,E10,2024,11, +91,E10,2024,12, +91,SP98,2013,7,161.31 +91,SP98,2013,8,161.83 +91,SP98,2013,9,161.36 +91,SP98,2013,10,157.43 +91,SP98,2013,11,155.99 +91,SP98,2013,12,157.15 +91,SP98,2013,6,159.0 +91,SP98,2013,1, +91,SP98,2013,2, +91,SP98,2013,3, +91,SP98,2013,4, +91,SP98,2013,5, +91,SP98,2014,1,156.47 +91,SP98,2014,2,157.02 +91,SP98,2014,4,158.22 +91,SP98,2014,5,158.57 +91,SP98,2014,6,159.34 +91,SP98,2014,7,159.96 +91,SP98,2014,8,157.98 +91,SP98,2014,9,156.93 +91,SP98,2014,10,154.37 +91,SP98,2014,11,150.78 +91,SP98,2014,12,143.04 +91,SP98,2014,3,157.5 +91,SP98,2015,1,135.35 +91,SP98,2015,2,140.44 +91,SP98,2015,3,145.32 +91,SP98,2015,4,146.92 +91,SP98,2015,5,149.83 +91,SP98,2015,6,150.61 +91,SP98,2015,7,149.88 +91,SP98,2015,8,143.87 +91,SP98,2015,9,138.25 +91,SP98,2015,10,137.3 +91,SP98,2015,11,136.75 +91,SP98,2015,12,135.48 +91,SP98,2016,1, +91,SP98,2016,2, +91,SP98,2016,3, +91,SP98,2016,4, +91,SP98,2016,5, +91,SP98,2016,6, +91,SP98,2016,7, +91,SP98,2016,8, +91,SP98,2016,9, +91,SP98,2016,10, +91,SP98,2016,11, +91,SP98,2016,12, +91,SP98,2017,1, +91,SP98,2017,2, +91,SP98,2017,3, +91,SP98,2017,4, +91,SP98,2017,5, +91,SP98,2017,6, +91,SP98,2017,7, +91,SP98,2017,8, +91,SP98,2017,9, +91,SP98,2017,10, +91,SP98,2017,11, +91,SP98,2017,12, +91,SP98,2018,1, +91,SP98,2018,2, +91,SP98,2018,3, +91,SP98,2018,4, +91,SP98,2018,5, +91,SP98,2018,6, +91,SP98,2018,7, +91,SP98,2018,8, +91,SP98,2018,9, +91,SP98,2018,10, +91,SP98,2018,11, +91,SP98,2018,12, +91,SP98,2019,1, +91,SP98,2019,2, +91,SP98,2019,3, +91,SP98,2019,4, +91,SP98,2019,5, +91,SP98,2019,6, +91,SP98,2019,7, +91,SP98,2019,8, +91,SP98,2019,9, +91,SP98,2019,10, +91,SP98,2019,11, +91,SP98,2019,12, +91,SP98,2020,1, +91,SP98,2020,2, +91,SP98,2020,3, +91,SP98,2020,4, +91,SP98,2020,5, +91,SP98,2020,6, +91,SP98,2020,7, +91,SP98,2020,8, +91,SP98,2020,9, +91,SP98,2020,10, +91,SP98,2020,11, +91,SP98,2020,12, +91,SP98,2021,1, +91,SP98,2021,2, +91,SP98,2021,3, +91,SP98,2021,4, +91,SP98,2021,5, +91,SP98,2021,6, +91,SP98,2021,7, +91,SP98,2021,8, +91,SP98,2021,9, +91,SP98,2021,10, +91,SP98,2021,11, +91,SP98,2021,12, +91,SP98,2022,1, +91,SP98,2022,2, +91,SP98,2022,3, +91,SP98,2022,4, +91,SP98,2022,5, +91,SP98,2022,6, +91,SP98,2022,7, +91,SP98,2022,8, +91,SP98,2022,9, +91,SP98,2022,10, +91,SP98,2022,11, +91,SP98,2022,12, +91,SP98,2023,1, +91,SP98,2023,2, +91,SP98,2023,3, +91,SP98,2023,4, +91,SP98,2023,5, +91,SP98,2023,6, +91,SP98,2023,7, +91,SP98,2023,8, +91,SP98,2023,9, +91,SP98,2023,10, +91,SP98,2023,11, +91,SP98,2023,12, +91,SP98,2024,1, +91,SP98,2024,2, +91,SP98,2024,3, +91,SP98,2024,4, +91,SP98,2024,5, +91,SP98,2024,6, +91,SP98,2024,7, +91,SP98,2024,8, +91,SP98,2024,9, +91,SP98,2024,10, +91,SP98,2024,11, +91,SP98,2024,12, +24,Gazole,2007,10,112.98 +24,Gazole,2007,11,120.99 +24,Gazole,2007,12,121.16 +24,Gazole,2007,1,102.17 +24,Gazole,2007,2,102.4 +24,Gazole,2007,3,103.97 +24,Gazole,2007,4,106.24 +24,Gazole,2007,5,106.71 +24,Gazole,2007,6,108.2 +24,Gazole,2007,7,109.51 +24,Gazole,2007,8,109.72 +24,Gazole,2007,9,111.3 +24,Gazole,2008,1,120.0 +24,Gazole,2008,2,120.6 +24,Gazole,2008,3,126.25 +24,Gazole,2008,4,129.13 +24,Gazole,2008,5,139.24 +24,Gazole,2008,6,144.35 +24,Gazole,2008,7,143.25 +24,Gazole,2008,8,134.65 +24,Gazole,2008,9,131.32 +24,Gazole,2008,10,122.95 +24,Gazole,2008,11,112.61 +24,Gazole,2008,12,100.97 +24,Gazole,2009,1,98.84 +24,Gazole,2009,2,97.57 +24,Gazole,2009,3,94.95 +24,Gazole,2009,4,97.07 +24,Gazole,2009,5,97.35 +24,Gazole,2009,6,102.02 +24,Gazole,2009,7,100.54 +24,Gazole,2009,8,103.57 +24,Gazole,2009,9,101.85 +24,Gazole,2009,10,102.72 +24,Gazole,2009,11,104.88 +24,Gazole,2009,12,104.13 +24,Gazole,2010,1,108.5 +24,Gazole,2010,2,108.83 +24,Gazole,2010,4,116.33 +24,Gazole,2010,5,117.58 +24,Gazole,2010,8,115.02 +24,Gazole,2010,9,115.54 +24,Gazole,2010,10,117.74 +24,Gazole,2010,11,118.96 +24,Gazole,2010,12,122.68 +24,Gazole,2010,3,112.62 +24,Gazole,2010,6,117.27 +24,Gazole,2010,7,115.19 +24,Gazole,2011,1,128.81 +24,Gazole,2011,2,131.94 +24,Gazole,2011,3,137.27 +24,Gazole,2011,4,138.02 +24,Gazole,2011,5,134.45 +24,Gazole,2011,7,134.06 +24,Gazole,2011,8,132.79 +24,Gazole,2011,9,134.41 +24,Gazole,2011,10,135.9 +24,Gazole,2011,11,139.51 +24,Gazole,2011,12,138.52 +24,Gazole,2011,6,133.5 +24,Gazole,2012,1,141.6 +24,Gazole,2012,2,143.12 +24,Gazole,2012,4,144.89 +24,Gazole,2012,5,141.78 +24,Gazole,2012,6,135.94 +24,Gazole,2012,7,138.53 +24,Gazole,2012,8,144.55 +24,Gazole,2012,9,140.98 +24,Gazole,2012,10,141.07 +24,Gazole,2012,11,138.95 +24,Gazole,2012,12,137.52 +24,Gazole,2012,3,145.77 +24,Gazole,2013,1,139.24 +24,Gazole,2013,2,142.21 +24,Gazole,2013,3,140.87 +24,Gazole,2013,4,136.97 +24,Gazole,2013,5,134.68 +24,Gazole,2013,6,134.42 +24,Gazole,2013,7,136.32 +24,Gazole,2013,8,136.91 +24,Gazole,2013,9,138.68 +24,Gazole,2013,10,134.95 +24,Gazole,2013,11,133.76 +24,Gazole,2013,12,135.19 +24,Gazole,2014,1,133.83 +24,Gazole,2014,3,132.75 +24,Gazole,2014,4,132.42 +24,Gazole,2014,5,132.31 +24,Gazole,2014,6,132.53 +24,Gazole,2014,7,131.94 +24,Gazole,2014,8,131.56 +24,Gazole,2014,9,131.03 +24,Gazole,2014,11,125.22 +24,Gazole,2014,12,115.88 +24,Gazole,2014,2,134.16 +24,Gazole,2014,10,127.9 +24,Gazole,2015,1,112.56 +24,Gazole,2015,2,118.4 +24,Gazole,2015,3,121.85 +24,Gazole,2015,4,121.5 +24,Gazole,2015,5,124.37 +24,Gazole,2015,6,122.51 +24,Gazole,2015,7,118.92 +24,Gazole,2015,8,113.41 +24,Gazole,2015,9,111.79 +24,Gazole,2015,10,111.59 +24,Gazole,2015,11,111.22 +24,Gazole,2015,12,104.6 +24,Gazole,2016,1,103.05 +24,Gazole,2016,2,102.65 +24,Gazole,2016,3,106.95 +24,Gazole,2016,4,107.79 +24,Gazole,2016,5,113.18 +24,Gazole,2016,6,117.01 +24,Gazole,2016,7,113.42 +24,Gazole,2016,8,111.33 +24,Gazole,2016,9,112.4 +24,Gazole,2016,10,116.5 +24,Gazole,2016,11,115.82 +24,Gazole,2016,12,120.51 +24,Gazole,2017,1,127.23 +24,Gazole,2017,2,127.23 +24,Gazole,2017,3,125.49 +24,Gazole,2017,4,125.27 +24,Gazole,2017,5,122.32 +24,Gazole,2017,6,119.34 +24,Gazole,2017,7,118.47 +24,Gazole,2017,8,120.54 +24,Gazole,2017,9,123.04 +24,Gazole,2017,10,125.18 +24,Gazole,2017,11,127.68 +24,Gazole,2017,12,128.23 +24,Gazole,2018,1,140.03 +24,Gazole,2018,2,138.25 +24,Gazole,2018,3,137.64 +24,Gazole,2018,4,140.54 +24,Gazole,2018,5,145.79 +24,Gazole,2018,6,147.04 +24,Gazole,2018,7,145.66 +24,Gazole,2018,8,145.72 +24,Gazole,2018,9,148.2 +24,Gazole,2018,10,152.94 +24,Gazole,2018,11,148.77 +24,Gazole,2018,12,142.62 +24,Gazole,2019,1,140.3 +24,Gazole,2019,2,144.0 +24,Gazole,2019,3,146.7 +24,Gazole,2019,4,147.88 +24,Gazole,2019,5,149.27 +24,Gazole,2019,6,143.92 +24,Gazole,2019,7,143.62 +24,Gazole,2019,8,142.94 +24,Gazole,2019,9,144.72 +24,Gazole,2019,10,145.37 +24,Gazole,2019,11,145.1 +24,Gazole,2019,12,146.82 +24,Gazole,2020,1,148.12 +24,Gazole,2020,2,141.3 +24,Gazole,2020,3,131.32 +24,Gazole,2020,4,123.76 +24,Gazole,2020,5,119.05 +24,Gazole,2020,6,122.15 +24,Gazole,2020,7,125.08 +24,Gazole,2020,8,124.57 +24,Gazole,2020,9,121.98 +24,Gazole,2020,10,121.41 +24,Gazole,2020,11,122.25 +24,Gazole,2020,12,126.79 +24,Gazole,2021,1,130.59 +24,Gazole,2021,2,135.39 +24,Gazole,2021,3,139.33 +24,Gazole,2021,4,138.41 +24,Gazole,2021,5,140.0 +24,Gazole,2021,6,142.52 +24,Gazole,2021,7,145.23 +24,Gazole,2021,8,144.6 +24,Gazole,2021,9,146.54 +24,Gazole,2021,10,155.68 +24,Gazole,2021,11,157.06 +24,Gazole,2021,12,154.16 +24,Gazole,2022,1,163.0 +24,Gazole,2022,2,172.0 +24,Gazole,2022,3,204.0 +24,Gazole,2022,4,186.0 +24,Gazole,2022,5,189.0 +24,Gazole,2022,6,209.0 +24,Gazole,2022,7,200.0 +24,Gazole,2022,8,188.0 +24,Gazole,2022,9,175.0 +24,Gazole,2022,10,189.0 +24,Gazole,2022,11,189.0 +24,Gazole,2022,12,179.0 +24,Gazole,2023,1,193.0 +24,Gazole,2023,2,186.0 +24,Gazole,2023,3,184.0 +24,Gazole,2023,4,180.0 +24,Gazole,2023,5,169.0 +24,Gazole,2023,6,170.0 +24,Gazole,2023,7,172.0 +24,Gazole,2023,8,186.0 +24,Gazole,2023,9,193.0 +24,Gazole,2023,10,191.0 +24,Gazole,2023,11,184.0 +24,Gazole,2023,12,177.0 +24,Gazole,2024,1,175.0 +24,Gazole,2024,2,182.0 +24,Gazole,2024,3,180.0 +24,Gazole,2024,4,180.0 +24,Gazole,2024,5,174.0 +24,Gazole,2024,6,172.0 +24,Gazole,2024,7,175.0 +24,Gazole,2024,8,175.0 +24,Gazole,2024,9,175.0 +24,Gazole,2024,10,175.0 +24,Gazole,2024,11,175.0 +24,Gazole,2024,12,175.0 +24,SP95,2007,10,130.2 +24,SP95,2007,11,135.69 +24,SP95,2007,1,118.9 +24,SP95,2007,2,119.74 +24,SP95,2007,3,124.55 +24,SP95,2007,4,128.8 +24,SP95,2007,5,132.73 +24,SP95,2007,6,133.26 +24,SP95,2007,7,132.93 +24,SP95,2007,8,129.8 +24,SP95,2007,9,130.2 +24,SP95,2007,12,135.03 +24,SP95,2008,1,136.53 +24,SP95,2008,2,136.49 +24,SP95,2008,4,139.93 +24,SP95,2008,5,145.05 +24,SP95,2008,6,150.11 +24,SP95,2008,7,149.02 +24,SP95,2008,8,144.02 +24,SP95,2008,9,143.18 +24,SP95,2008,10,133.25 +24,SP95,2008,12,110.61 +24,SP95,2008,3,138.19 +24,SP95,2008,11,119.61 +24,SP95,2009,1,110.67 +24,SP95,2009,4,117.62 +24,SP95,2009,5,121.53 +24,SP95,2009,6,127.59 +24,SP95,2009,7,124.3 +24,SP95,2009,8,127.24 +24,SP95,2009,9,124.68 +24,SP95,2009,10,123.66 +24,SP95,2009,11,126.26 +24,SP95,2009,2,115.16 +24,SP95,2009,3,115.21 +24,SP95,2009,12,125.62 +24,SP95,2010,1,129.53 +24,SP95,2010,2,131.03 +24,SP95,2010,4,137.48 +24,SP95,2010,5,137.59 +24,SP95,2010,8,133.77 +24,SP95,2010,9,133.69 +24,SP95,2010,10,135.17 +24,SP95,2010,11,136.75 +24,SP95,2010,12,140.92 +24,SP95,2010,3,135.34 +24,SP95,2010,6,136.54 +24,SP95,2010,7,134.23 +24,SP95,2011,1,145.73 +24,SP95,2011,2,146.84 +24,SP95,2011,3,151.18 +24,SP95,2011,4,153.77 +24,SP95,2011,5,154.28 +24,SP95,2011,7,151.05 +24,SP95,2011,8,150.35 +24,SP95,2011,9,152.21 +24,SP95,2011,10,150.76 +24,SP95,2011,11,149.8 +24,SP95,2011,12,149.82 +24,SP95,2011,6,151.46 +24,SP95,2012,1,154.94 +24,SP95,2012,2,158.93 +24,SP95,2012,4,166.03 +24,SP95,2012,5,160.4 +24,SP95,2012,6,155.41 +24,SP95,2012,7,156.39 +24,SP95,2012,8,161.9 +24,SP95,2012,9,159.09 +24,SP95,2012,11,152.09 +24,SP95,2012,12,152.21 +24,SP95,2012,3,163.77 +24,SP95,2012,10,156.81 +24,SP95,2013,1,155.46 +24,SP95,2013,2,160.79 +24,SP95,2013,3,160.51 +24,SP95,2013,4,157.64 +24,SP95,2013,5,154.36 +24,SP95,2013,6,154.49 +24,SP95,2013,7,155.67 +24,SP95,2013,8,156.32 +24,SP95,2013,9,155.67 +24,SP95,2013,10,150.64 +24,SP95,2013,11,149.82 +24,SP95,2013,12,151.57 +24,SP95,2014,1,150.47 +24,SP95,2014,3,151.55 +24,SP95,2014,4,152.58 +24,SP95,2014,5,153.18 +24,SP95,2014,6,154.53 +24,SP95,2014,7,154.63 +24,SP95,2014,8,151.73 +24,SP95,2014,9,151.07 +24,SP95,2014,11,143.95 +24,SP95,2014,12,134.77 +24,SP95,2014,2,151.33 +24,SP95,2014,10,148.08 +24,SP95,2015,1,127.67 +24,SP95,2015,2,133.49 +24,SP95,2015,3,139.15 +24,SP95,2015,4,141.69 +24,SP95,2015,5,144.28 +24,SP95,2015,6,145.04 +24,SP95,2015,7,144.43 +24,SP95,2015,8,139.42 +24,SP95,2015,9,132.26 +24,SP95,2015,10,130.62 +24,SP95,2015,11,130.84 +24,SP95,2015,12,128.46 +24,SP95,2016,1,127.61 +24,SP95,2016,2,125.44 +24,SP95,2016,3,126.92 +24,SP95,2016,4,131.54 +24,SP95,2016,5,134.22 +24,SP95,2016,6,136.45 +24,SP95,2016,7,132.05 +24,SP95,2016,8,129.49 +24,SP95,2016,9,130.68 +24,SP95,2016,10,133.69 +24,SP95,2016,11,133.18 +24,SP95,2016,12,136.7 +24,SP95,2017,1,141.78 +24,SP95,2017,2,142.29 +24,SP95,2017,3,140.43 +24,SP95,2017,4,141.29 +24,SP95,2017,5,139.04 +24,SP95,2017,6,136.59 +24,SP95,2017,7,134.28 +24,SP95,2017,8,135.35 +24,SP95,2017,9,138.2 +24,SP95,2017,10,137.5 +24,SP95,2017,11,141.42 +24,SP95,2017,12,141.32 +24,SP95,2018,1,147.74 +24,SP95,2018,2,147.42 +24,SP95,2018,3,146.5 +24,SP95,2018,4,149.6 +24,SP95,2018,5,154.35 +24,SP95,2018,6,155.79 +24,SP95,2018,7,154.83 +24,SP95,2018,8,155.86 +24,SP95,2018,9,156.84 +24,SP95,2018,10,156.85 +24,SP95,2018,11,150.55 +24,SP95,2018,12,145.15 +24,SP95,2019,1,143.19 +24,SP95,2019,2,145.55 +24,SP95,2019,3,149.24 +24,SP95,2019,4,156.87 +24,SP95,2019,5,159.87 +24,SP95,2019,6,154.84 +24,SP95,2019,7,153.24 +24,SP95,2019,8,151.92 +24,SP95,2019,10,151.44 +24,SP95,2019,11,152.27 +24,SP95,2019,12,153.26 +24,SP95,2019,9,151.35 +24,SP95,2020,1,154.58 +24,SP95,2020,2,150.73 +24,SP95,2020,3,140.88 +24,SP95,2020,4,130.1 +24,SP95,2020,5,127.33 +24,SP95,2020,6,132.58 +24,SP95,2020,7,136.05 +24,SP95,2020,8,134.84 +24,SP95,2020,9,134.48 +24,SP95,2020,10,134.91 +24,SP95,2020,11,134.26 +24,SP95,2020,12,136.52 +24,SP95,2021,1,141.14 +24,SP95,2021,2,145.95 +24,SP95,2021,3,151.64 +24,SP95,2021,4,152.68 +24,SP95,2021,5,153.63 +24,SP95,2021,6,154.74 +24,SP95,2021,7,158.34 +24,SP95,2021,8,159.16 +24,SP95,2021,9,159.55 +24,SP95,2021,10,165.6 +24,SP95,2021,11,168.17 +24,SP95,2021,12,164.57 +24,SP95,2022,1,172.0 +24,SP95,2022,2,180.0 +24,SP95,2022,3,201.0 +24,SP95,2022,4,184.0 +24,SP95,2022,5,193.0 +24,SP95,2022,6,214.0 +24,SP95,2022,7,202.0 +24,SP95,2022,8,185.0 +24,SP95,2022,9,164.0 +24,SP95,2022,10,172.0 +24,SP95,2022,11,175.0 +24,SP95,2022,12,171.0 +24,SP95,2023,1,190.0 +24,SP95,2023,2,193.0 +24,SP95,2023,3,193.0 +24,SP95,2023,4,196.0 +24,SP95,2023,5,190.0 +24,SP95,2023,6,189.0 +24,SP95,2023,7,186.0 +24,SP95,2023,8,193.0 +24,SP95,2023,9,196.0 +24,SP95,2023,10,190.0 +24,SP95,2023,11,187.0 +24,SP95,2023,12,182.0 +24,SP95,2024,1,181.0 +24,SP95,2024,2,185.0 +24,SP95,2024,3,188.0 +24,SP95,2024,4,193.0 +24,SP95,2024,5,191.0 +24,SP95,2024,6,187.0 +24,SP95,2024,7,187.0 +24,SP95,2024,8,187.0 +24,SP95,2024,9,187.0 +24,SP95,2024,10,187.0 +24,SP95,2024,11,187.0 +24,SP95,2024,12,187.0 +24,GPLc,2007,11,73.37 +24,GPLc,2007,12,73.54 +24,GPLc,2007,1, +24,GPLc,2007,2, +24,GPLc,2007,3, +24,GPLc,2007,4, +24,GPLc,2007,5, +24,GPLc,2007,6, +24,GPLc,2007,7, +24,GPLc,2007,8, +24,GPLc,2007,9, +24,GPLc,2007,10, +24,GPLc,2008,4,74.88 +24,GPLc,2008,6,76.68 +24,GPLc,2008,7,77.38 +24,GPLc,2008,11,78.21 +24,GPLc,2008,12,75.02 +24,GPLc,2008,1,74.58 +24,GPLc,2008,2,74.84 +24,GPLc,2008,3,74.78 +24,GPLc,2008,5,75.36 +24,GPLc,2008,8,78.61 +24,GPLc,2008,9,79.01 +24,GPLc,2008,10,79.53 +24,GPLc,2009,2,69.19 +24,GPLc,2009,3,68.24 +24,GPLc,2009,4,66.41 +24,GPLc,2009,5,65.76 +24,GPLc,2009,6,65.76 +24,GPLc,2009,7,65.4 +24,GPLc,2009,8,65.14 +24,GPLc,2009,9,66.24 +24,GPLc,2009,10,66.68 +24,GPLc,2009,11,68.9 +24,GPLc,2009,12,70.53 +24,GPLc,2009,1,70.6 +24,GPLc,2010,7,75.81 +24,GPLc,2010,1,69.49 +24,GPLc,2010,2,71.57 +24,GPLc,2010,3,71.05 +24,GPLc,2010,4,71.92 +24,GPLc,2010,5,72.83 +24,GPLc,2010,6,73.9 +24,GPLc,2010,8,76.91 +24,GPLc,2010,9,77.61 +24,GPLc,2010,10,78.96 +24,GPLc,2010,11,80.45 +24,GPLc,2010,12,82.96 +24,GPLc,2011,2,82.93 +24,GPLc,2011,1,82.12 +24,GPLc,2011,3,83.11 +24,GPLc,2011,4,83.12 +24,GPLc,2011,5,84.27 +24,GPLc,2011,6,84.65 +24,GPLc,2011,7,84.64 +24,GPLc,2011,8,84.5 +24,GPLc,2011,9,84.63 +24,GPLc,2011,10,84.28 +24,GPLc,2011,11,84.31 +24,GPLc,2011,12,84.78 +24,GPLc,2012,1,84.56 +24,GPLc,2012,2,85.96 +24,GPLc,2012,3,88.2 +24,GPLc,2012,4,88.81 +24,GPLc,2012,5,89.02 +24,GPLc,2012,6,88.94 +24,GPLc,2012,7,87.48 +24,GPLc,2012,8,87.1 +24,GPLc,2012,9,86.74 +24,GPLc,2012,10,87.48 +24,GPLc,2012,11,88.33 +24,GPLc,2012,12,88.58 +24,GPLc,2013,1,89.91 +24,GPLc,2013,2,89.73 +24,GPLc,2013,3,90.11 +24,GPLc,2013,4,90.08 +24,GPLc,2013,5,89.2 +24,GPLc,2013,6,88.69 +24,GPLc,2013,7,88.18 +24,GPLc,2013,8,87.92 +24,GPLc,2013,9,87.95 +24,GPLc,2013,10,87.32 +24,GPLc,2013,11,87.25 +24,GPLc,2013,12,87.65 +24,GPLc,2014,1,88.7 +24,GPLc,2014,2,88.76 +24,GPLc,2014,3,88.21 +24,GPLc,2014,4,87.94 +24,GPLc,2014,5,87.82 +24,GPLc,2014,6,87.5 +24,GPLc,2014,7,87.14 +24,GPLc,2014,8,86.93 +24,GPLc,2014,10,86.78 +24,GPLc,2014,12,85.38 +24,GPLc,2014,9,86.73 +24,GPLc,2014,11,86.54 +24,GPLc,2015,10,78.53 +24,GPLc,2015,3,82.93 +24,GPLc,2015,4,82.52 +24,GPLc,2015,5,82.83 +24,GPLc,2015,6,82.12 +24,GPLc,2015,7,80.73 +24,GPLc,2015,8,80.29 +24,GPLc,2015,9,79.64 +24,GPLc,2015,12,77.66 +24,GPLc,2015,2,84.37 +24,GPLc,2015,11,78.19 +24,GPLc,2015,1,85.98 +24,GPLc,2016,9,73.86 +24,GPLc,2016,10,73.65 +24,GPLc,2016,11,73.82 +24,GPLc,2016,12,74.33 +24,GPLc,2016,1,75.33 +24,GPLc,2016,2,75.47 +24,GPLc,2016,3,74.79 +24,GPLc,2016,4,74.43 +24,GPLc,2016,5,74.26 +24,GPLc,2016,6,74.43 +24,GPLc,2016,7,74.37 +24,GPLc,2016,8,73.88 +24,GPLc,2017,1,74.66 +24,GPLc,2017,2,75.46 +24,GPLc,2017,3,75.28 +24,GPLc,2017,4,75.57 +24,GPLc,2017,5,75.48 +24,GPLc,2017,6,75.35 +24,GPLc,2017,7,74.55 +24,GPLc,2017,8,74.08 +24,GPLc,2017,9,75.04 +24,GPLc,2017,10,76.03 +24,GPLc,2017,11,77.95 +24,GPLc,2017,12,78.88 +24,GPLc,2018,1,83.92 +24,GPLc,2018,2,83.58 +24,GPLc,2018,3,83.52 +24,GPLc,2018,4,83.7 +24,GPLc,2018,5,84.11 +24,GPLc,2018,6,84.63 +24,GPLc,2018,7,84.47 +24,GPLc,2018,8,84.53 +24,GPLc,2018,9,86.24 +24,GPLc,2018,10,87.65 +24,GPLc,2018,11,87.0 +24,GPLc,2018,12,87.34 +24,GPLc,2019,1,89.19 +24,GPLc,2019,2,87.62 +24,GPLc,2019,3,87.91 +24,GPLc,2019,4,88.25 +24,GPLc,2019,5,88.73 +24,GPLc,2019,6,88.68 +24,GPLc,2019,7,87.99 +24,GPLc,2019,8,88.0 +24,GPLc,2019,9,88.75 +24,GPLc,2019,10,88.26 +24,GPLc,2019,11,88.16 +24,GPLc,2019,12,88.37 +24,GPLc,2020,1,90.46 +24,GPLc,2020,2,89.44 +24,GPLc,2020,3,88.61 +24,GPLc,2020,7,87.87 +24,GPLc,2020,8,88.07 +24,GPLc,2020,4,88.31 +24,GPLc,2020,5,87.94 +24,GPLc,2020,6,87.76 +24,GPLc,2020,9,88.16 +24,GPLc,2020,10,88.23 +24,GPLc,2020,11,88.39 +24,GPLc,2020,12,88.22 +24,GPLc,2021,1,89.48 +24,GPLc,2021,2,89.37 +24,GPLc,2021,3,89.44 +24,GPLc,2021,4,89.15 +24,GPLc,2021,5,89.41 +24,GPLc,2021,6,89.26 +24,GPLc,2021,7,89.3 +24,GPLc,2021,8,89.41 +24,GPLc,2021,9,89.43 +24,GPLc,2021,10,90.36 +24,GPLc,2021,11,91.29 +24,GPLc,2021,12,92.15 +24,GPLc,2022,1,93.0 +24,GPLc,2022,2,93.0 +24,GPLc,2022,3,96.0 +24,GPLc,2022,4,85.0 +24,GPLc,2022,5,85.0 +24,GPLc,2022,6,85.0 +24,GPLc,2022,7,86.0 +24,GPLc,2022,8,86.0 +24,GPLc,2022,9,77.0 +24,GPLc,2022,10,77.0 +24,GPLc,2022,11,84.0 +24,GPLc,2022,12,92.0 +24,GPLc,2023,1,101.0 +24,GPLc,2023,2,100.0 +24,GPLc,2023,3,100.0 +24,GPLc,2023,4,101.0 +24,GPLc,2023,5,102.0 +24,GPLc,2023,6,101.0 +24,GPLc,2023,7,101.0 +24,GPLc,2023,8,101.0 +24,GPLc,2023,9,101.0 +24,GPLc,2023,10,100.0 +24,GPLc,2023,11,100.0 +24,GPLc,2023,12,100.0 +24,GPLc,2024,1,101.0 +24,GPLc,2024,2,100.0 +24,GPLc,2024,3,100.0 +24,GPLc,2024,4,100.0 +24,GPLc,2024,5,101.0 +24,GPLc,2024,6,102.0 +24,GPLc,2024,7,102.0 +24,GPLc,2024,8,102.0 +24,GPLc,2024,9,102.0 +24,GPLc,2024,10,102.0 +24,GPLc,2024,11,102.0 +24,GPLc,2024,12,102.0 +24,E85,2007,6,80.22 +24,E85,2007,7,81.84 +24,E85,2007,8,81.7 +24,E85,2007,9,81.97 +24,E85,2007,10,82.08 +24,E85,2007,11,82.24 +24,E85,2007,12,83.02 +24,E85,2007,1, +24,E85,2007,2, +24,E85,2007,3, +24,E85,2007,4, +24,E85,2007,5, +24,E85,2008,12,88.35 +24,E85,2008,1,81.93 +24,E85,2008,2,83.18 +24,E85,2008,3,83.32 +24,E85,2008,4,83.33 +24,E85,2008,5,83.68 +24,E85,2008,6,83.92 +24,E85,2008,7,84.49 +24,E85,2008,8,85.48 +24,E85,2008,9,86.89 +24,E85,2008,10,87.14 +24,E85,2008,11,86.99 +24,E85,2009,11,106.47 +24,E85,2009,12,108.62 +24,E85,2009,10,103.29 +24,E85,2009,1,82.75 +24,E85,2009,2,82.32 +24,E85,2009,3,83.67 +24,E85,2009,4,83.19 +24,E85,2009,5,83.43 +24,E85,2009,6,86.16 +24,E85,2009,7,95.16 +24,E85,2009,8,100.97 +24,E85,2009,9,100.26 +24,E85,2010,9,118.81 +24,E85,2010,2,113.2 +24,E85,2010,6,117.65 +24,E85,2010,5,117.0 +24,E85,2010,7,118.03 +24,E85,2010,1,102.06 +24,E85,2010,3,116.7 +24,E85,2010,4,116.29 +24,E85,2010,8,117.83 +24,E85,2010,10,120.07 +24,E85,2010,11,120.14 +24,E85,2010,12,120.18 +24,E85,2011,1,86.59 +24,E85,2011,2,87.8 +24,E85,2011,3,88.43 +24,E85,2011,4,89.02 +24,E85,2011,5,89.6 +24,E85,2011,6,89.41 +24,E85,2011,7,88.96 +24,E85,2011,8,89.06 +24,E85,2011,9,89.01 +24,E85,2011,10,89.34 +24,E85,2011,11,89.37 +24,E85,2011,12,89.48 +24,E85,2012,6,91.33 +24,E85,2012,1,91.64 +24,E85,2012,2,92.74 +24,E85,2012,3,93.02 +24,E85,2012,4,92.53 +24,E85,2012,5,91.91 +24,E85,2012,7,91.74 +24,E85,2012,8,92.71 +24,E85,2012,9,92.34 +24,E85,2012,10,92.55 +24,E85,2012,11,92.25 +24,E85,2012,12,92.45 +24,E85,2013,1,92.27 +24,E85,2013,2,93.88 +24,E85,2013,3,94.91 +24,E85,2013,4,95.35 +24,E85,2013,5,94.78 +24,E85,2013,6,94.58 +24,E85,2013,7,93.78 +24,E85,2013,8,93.57 +24,E85,2013,9,92.94 +24,E85,2013,10,92.45 +24,E85,2013,11,92.32 +24,E85,2013,12,93.69 +24,E85,2014,11,88.79 +24,E85,2014,10,87.07 +24,E85,2014,12,90.33 +24,E85,2014,5,88.61 +24,E85,2014,1,88.4 +24,E85,2014,2,88.43 +24,E85,2014,3,90.72 +24,E85,2014,4,90.08 +24,E85,2014,6,87.84 +24,E85,2014,7,84.91 +24,E85,2014,8,83.88 +24,E85,2014,9,85.57 +24,E85,2015,9,89.18 +24,E85,2015,10,88.08 +24,E85,2015,11,89.23 +24,E85,2015,12,89.59 +24,E85,2015,8,86.88 +24,E85,2015,5,89.15 +24,E85,2015,1,80.1 +24,E85,2015,2,84.4 +24,E85,2015,3,89.0 +24,E85,2015,6,88.74 +24,E85,2015,7,88.17 +24,E85,2015,4,88.45 +24,E85,2016,1,68.86 +24,E85,2016,2,70.38 +24,E85,2016,3,72.76 +24,E85,2016,4,73.77 +24,E85,2016,5,77.57 +24,E85,2016,6,78.44 +24,E85,2016,7,79.04 +24,E85,2016,8,79.29 +24,E85,2016,9,78.89 +24,E85,2016,10,79.26 +24,E85,2016,11,79.5 +24,E85,2016,12,79.52 +24,E85,2017,1,65.68 +24,E85,2017,2,67.52 +24,E85,2017,3,67.43 +24,E85,2017,4,69.07 +24,E85,2017,5,70.33 +24,E85,2017,6,72.61 +24,E85,2017,7,72.0 +24,E85,2017,8,71.88 +24,E85,2017,9,72.87 +24,E85,2017,10,74.15 +24,E85,2017,11,74.12 +24,E85,2017,12,73.73 +24,E85,2018,1,66.32 +24,E85,2018,2,66.1 +24,E85,2018,3,65.86 +24,E85,2018,4,66.6 +24,E85,2018,5,67.56 +24,E85,2018,6,67.33 +24,E85,2018,7,70.22 +24,E85,2018,8,72.63 +24,E85,2018,9,72.41 +24,E85,2018,10,71.92 +24,E85,2018,11,71.19 +24,E85,2018,12,72.5 +24,E85,2019,1,62.29 +24,E85,2019,2,62.32 +24,E85,2019,3,63.76 +24,E85,2019,4,64.94 +24,E85,2019,5,65.6 +24,E85,2019,6,65.54 +24,E85,2019,7,66.68 +24,E85,2019,8,67.18 +24,E85,2019,9,67.93 +24,E85,2019,10,67.84 +24,E85,2019,11,68.55 +24,E85,2019,12,69.57 +24,E85,2020,1,65.82 +24,E85,2020,2,65.46 +24,E85,2020,3,65.44 +24,E85,2020,4,65.09 +24,E85,2020,5,64.43 +24,E85,2020,6,64.5 +24,E85,2020,7,64.79 +24,E85,2020,8,65.37 +24,E85,2020,9,65.85 +24,E85,2020,10,65.12 +24,E85,2020,11,64.87 +24,E85,2020,12,64.37 +24,E85,2021,1,64.84 +24,E85,2021,2,65.39 +24,E85,2021,3,66.67 +24,E85,2021,4,65.88 +24,E85,2021,5,66.14 +24,E85,2021,6,66.36 +24,E85,2021,7,66.94 +24,E85,2021,8,67.99 +24,E85,2021,9,67.98 +24,E85,2021,10,70.19 +24,E85,2021,11,72.11 +24,E85,2021,12,72.27 +24,E85,2022,1,75.0 +24,E85,2022,2,77.0 +24,E85,2022,3,91.0 +24,E85,2022,4,78.0 +24,E85,2022,5,80.0 +24,E85,2022,6,88.0 +24,E85,2022,7,89.0 +24,E85,2022,8,84.0 +24,E85,2022,9,71.0 +24,E85,2022,10,79.0 +24,E85,2022,11,91.0 +24,E85,2022,12,93.0 +24,E85,2023,1,110.0 +24,E85,2023,2,112.0 +24,E85,2023,3,113.0 +24,E85,2023,4,113.0 +24,E85,2023,5,113.0 +24,E85,2023,6,110.0 +24,E85,2023,7,105.0 +24,E85,2023,8,106.0 +24,E85,2023,9,105.0 +24,E85,2023,10,104.0 +24,E85,2023,11,102.0 +24,E85,2023,12,100.0 +24,E85,2024,1,91.0 +24,E85,2024,2,90.0 +24,E85,2024,3,89.0 +24,E85,2024,4,89.0 +24,E85,2024,5,88.0 +24,E85,2024,6,86.0 +24,E85,2024,7,85.0 +24,E85,2024,8,85.0 +24,E85,2024,9,85.0 +24,E85,2024,10,85.0 +24,E85,2024,11,85.0 +24,E85,2024,12,85.0 +24,E10,2009,9,123.53 +24,E10,2009,10,125.54 +24,E10,2009,11,128.68 +24,E10,2009,12,128.28 +24,E10,2009,4,115.67 +24,E10,2009,5,120.76 +24,E10,2009,6,126.47 +24,E10,2009,7,124.59 +24,E10,2009,8,125.79 +24,E10,2009,1, +24,E10,2009,2, +24,E10,2009,3, +24,E10,2010,1,132.0 +24,E10,2010,2,133.39 +24,E10,2010,3,137.95 +24,E10,2010,4,140.26 +24,E10,2010,5,140.57 +24,E10,2010,6,139.83 +24,E10,2010,7,138.21 +24,E10,2010,8,137.13 +24,E10,2010,9,136.88 +24,E10,2010,10,137.37 +24,E10,2010,11,138.27 +24,E10,2010,12,142.84 +24,E10,2011,1,147.84 +24,E10,2011,2,148.39 +24,E10,2011,3,152.41 +24,E10,2011,4,154.95 +24,E10,2011,5,155.42 +24,E10,2011,6,152.6 +24,E10,2011,7,152.02 +24,E10,2011,8,151.0 +24,E10,2011,9,152.63 +24,E10,2011,10,150.9 +24,E10,2011,11,150.13 +24,E10,2011,12,149.54 +24,E10,2012,1,154.82 +24,E10,2012,2,158.24 +24,E10,2012,3,162.86 +24,E10,2012,4,164.97 +24,E10,2012,5,159.36 +24,E10,2012,6,154.0 +24,E10,2012,7,154.78 +24,E10,2012,8,159.91 +24,E10,2012,9,156.39 +24,E10,2012,10,153.78 +24,E10,2012,11,148.44 +24,E10,2012,12,149.23 +24,E10,2013,1,154.03 +24,E10,2013,2,159.52 +24,E10,2013,3,158.99 +24,E10,2013,4,156.45 +24,E10,2013,5,153.35 +24,E10,2013,6,153.57 +24,E10,2013,7,154.71 +24,E10,2013,8,155.32 +24,E10,2013,9,154.71 +24,E10,2013,10,149.89 +24,E10,2013,11,148.9 +24,E10,2013,12,150.1 +24,E10,2014,1,149.37 +24,E10,2014,2,149.93 +24,E10,2014,3,149.91 +24,E10,2014,4,151.07 +24,E10,2014,5,151.69 +24,E10,2014,6,153.04 +24,E10,2014,7,153.21 +24,E10,2014,8,150.32 +24,E10,2014,9,149.68 +24,E10,2014,10,146.86 +24,E10,2014,11,142.69 +24,E10,2014,12,133.81 +24,E10,2015,4,140.2 +24,E10,2015,1,126.34 +24,E10,2015,2,132.01 +24,E10,2015,3,137.49 +24,E10,2015,5,142.92 +24,E10,2015,6,143.56 +24,E10,2015,7,142.96 +24,E10,2015,8,137.63 +24,E10,2015,9,131.14 +24,E10,2015,10,129.45 +24,E10,2015,11,129.66 +24,E10,2015,12,127.12 +24,E10,2016,1,125.07 +24,E10,2016,2,122.94 +24,E10,2016,3,124.32 +24,E10,2016,4,128.95 +24,E10,2016,5,131.67 +24,E10,2016,6,134.56 +24,E10,2016,7,129.61 +24,E10,2016,8,126.97 +24,E10,2016,9,128.02 +24,E10,2016,10,131.06 +24,E10,2016,11,130.27 +24,E10,2016,12,134.16 +24,E10,2017,1,138.27 +24,E10,2017,2,138.91 +24,E10,2017,3,136.8 +24,E10,2017,4,137.83 +24,E10,2017,5,135.24 +24,E10,2017,6,133.14 +24,E10,2017,7,131.53 +24,E10,2017,8,132.79 +24,E10,2017,9,135.99 +24,E10,2017,10,135.05 +24,E10,2017,11,139.25 +24,E10,2017,12,138.84 +24,E10,2018,1,145.68 +24,E10,2018,2,145.07 +24,E10,2018,3,143.95 +24,E10,2018,4,147.44 +24,E10,2018,5,152.01 +24,E10,2018,6,153.12 +24,E10,2018,7,152.2 +24,E10,2018,8,153.02 +24,E10,2018,9,153.95 +24,E10,2018,10,154.1 +24,E10,2018,11,146.67 +24,E10,2018,12,141.07 +24,E10,2019,8,149.09 +24,E10,2019,9,148.5 +24,E10,2019,10,148.55 +24,E10,2019,1,140.59 +24,E10,2019,2,143.18 +24,E10,2019,3,146.78 +24,E10,2019,4,154.45 +24,E10,2019,5,157.48 +24,E10,2019,6,151.9 +24,E10,2019,7,150.66 +24,E10,2019,11,149.68 +24,E10,2019,12,150.8 +24,E10,2020,1,152.16 +24,E10,2020,2,148.0 +24,E10,2020,3,137.73 +24,E10,2020,4,127.49 +24,E10,2020,5,125.43 +24,E10,2020,6,130.68 +24,E10,2020,7,133.8 +24,E10,2020,8,132.33 +24,E10,2020,9,131.94 +24,E10,2020,10,132.47 +24,E10,2020,11,132.14 +24,E10,2020,12,134.77 +24,E10,2021,1,139.28 +24,E10,2021,2,143.95 +24,E10,2021,3,149.29 +24,E10,2021,4,150.11 +24,E10,2021,5,150.97 +24,E10,2021,6,152.34 +24,E10,2021,7,156.03 +24,E10,2021,8,156.72 +24,E10,2021,9,157.11 +24,E10,2021,10,163.36 +24,E10,2021,11,165.18 +24,E10,2021,12,160.88 +24,E10,2022,1,169.0 +24,E10,2022,2,177.0 +24,E10,2022,3,196.0 +24,E10,2022,4,177.0 +24,E10,2022,5,191.0 +24,E10,2022,6,211.0 +24,E10,2022,7,195.0 +24,E10,2022,8,179.0 +24,E10,2022,9,155.0 +24,E10,2022,10,166.0 +24,E10,2022,11,170.0 +24,E10,2022,12,166.0 +24,E10,2023,1,188.0 +24,E10,2023,2,190.0 +24,E10,2023,3,190.0 +24,E10,2023,4,193.0 +24,E10,2023,5,185.0 +24,E10,2023,6,186.0 +24,E10,2023,7,183.0 +24,E10,2023,8,193.0 +24,E10,2023,9,195.0 +24,E10,2023,10,187.0 +24,E10,2023,11,183.0 +24,E10,2023,12,178.0 +24,E10,2024,1,178.0 +24,E10,2024,2,183.0 +24,E10,2024,3,186.0 +24,E10,2024,4,191.0 +24,E10,2024,5,187.0 +24,E10,2024,6,182.0 +24,E10,2024,7,183.0 +24,E10,2024,8,183.0 +24,E10,2024,9,183.0 +24,E10,2024,10,183.0 +24,E10,2024,11,183.0 +24,E10,2024,12,183.0 +24,SP98,2013,7,160.24 +24,SP98,2013,8,160.75 +24,SP98,2013,9,160.23 +24,SP98,2013,10,155.19 +24,SP98,2013,11,154.22 +24,SP98,2013,12,155.77 +24,SP98,2013,6,157.61 +24,SP98,2013,1, +24,SP98,2013,2, +24,SP98,2013,3, +24,SP98,2013,4, +24,SP98,2013,5, +24,SP98,2014,1,155.19 +24,SP98,2014,2,155.83 +24,SP98,2014,3,156.04 +24,SP98,2014,4,157.03 +24,SP98,2014,5,157.71 +24,SP98,2014,6,159.11 +24,SP98,2014,7,159.5 +24,SP98,2014,8,156.39 +24,SP98,2014,9,155.6 +24,SP98,2014,10,152.77 +24,SP98,2014,11,148.38 +24,SP98,2014,12,139.48 +24,SP98,2015,10,135.3 +24,SP98,2015,1,132.37 +24,SP98,2015,2,137.68 +24,SP98,2015,3,143.5 +24,SP98,2015,4,146.35 +24,SP98,2015,5,149.22 +24,SP98,2015,6,150.03 +24,SP98,2015,7,149.32 +24,SP98,2015,8,144.28 +24,SP98,2015,9,137.18 +24,SP98,2015,11,135.35 +24,SP98,2015,12,132.8 +24,SP98,2016,1,132.19 +24,SP98,2016,2,129.93 +24,SP98,2016,3,131.15 +24,SP98,2016,4,135.92 +24,SP98,2016,5,138.7 +24,SP98,2016,6,141.7 +24,SP98,2016,7,137.19 +24,SP98,2016,8,134.48 +24,SP98,2016,9,135.56 +24,SP98,2016,10,138.68 +24,SP98,2016,11,138.17 +24,SP98,2016,12,141.91 +24,SP98,2017,1,146.58 +24,SP98,2017,2,147.03 +24,SP98,2017,3,145.1 +24,SP98,2017,4,145.93 +24,SP98,2017,5,143.57 +24,SP98,2017,6,141.22 +24,SP98,2017,7,139.12 +24,SP98,2017,8,140.07 +24,SP98,2017,9,143.14 +24,SP98,2017,10,142.44 +24,SP98,2017,11,146.76 +24,SP98,2017,12,146.79 +24,SP98,2018,1,153.29 +24,SP98,2018,2,152.71 +24,SP98,2018,3,151.58 +24,SP98,2018,4,154.65 +24,SP98,2018,5,159.47 +24,SP98,2018,6,160.96 +24,SP98,2018,7,159.88 +24,SP98,2018,8,160.88 +24,SP98,2018,9,161.98 +24,SP98,2018,10,161.93 +24,SP98,2018,11,155.08 +24,SP98,2018,12,149.54 +24,SP98,2019,1,148.23 +24,SP98,2019,2,150.57 +24,SP98,2019,3,154.26 +24,SP98,2019,4,162.17 +24,SP98,2019,5,165.46 +24,SP98,2019,6,160.24 +24,SP98,2019,7,158.4 +24,SP98,2019,8,157.04 +24,SP98,2019,9,156.39 +24,SP98,2019,10,156.49 +24,SP98,2019,11,157.33 +24,SP98,2019,12,158.37 +24,SP98,2020,1,159.82 +24,SP98,2020,2,155.62 +24,SP98,2020,3,145.89 +24,SP98,2020,4,134.72 +24,SP98,2020,5,132.16 +24,SP98,2020,6,137.51 +24,SP98,2020,7,140.96 +24,SP98,2020,8,139.7 +24,SP98,2020,9,139.38 +24,SP98,2020,10,139.91 +24,SP98,2020,11,139.46 +24,SP98,2020,12,141.78 +24,SP98,2021,1,146.38 +24,SP98,2021,2,150.85 +24,SP98,2021,3,156.83 +24,SP98,2021,4,158.07 +24,SP98,2021,5,159.1 +24,SP98,2021,6,160.36 +24,SP98,2021,7,164.21 +24,SP98,2021,8,165.12 +24,SP98,2021,9,165.51 +24,SP98,2021,10,172.01 +24,SP98,2021,11,174.53 +24,SP98,2021,12,170.26 +24,SP98,2022,1,177.0 +24,SP98,2022,2,185.0 +24,SP98,2022,3,206.0 +24,SP98,2022,4,187.0 +24,SP98,2022,5,200.0 +24,SP98,2022,6,221.0 +24,SP98,2022,7,207.0 +24,SP98,2022,8,189.0 +24,SP98,2022,9,165.0 +24,SP98,2022,10,176.0 +24,SP98,2022,12,176.0 +24,SP98,2022,11,180.0 +24,SP98,2023,1,196.0 +24,SP98,2023,2,198.0 +24,SP98,2023,3,198.0 +24,SP98,2023,4,200.0 +24,SP98,2023,5,193.0 +24,SP98,2023,6,193.0 +24,SP98,2023,7,191.0 +24,SP98,2023,8,199.0 +24,SP98,2023,9,201.0 +24,SP98,2023,10,195.0 +24,SP98,2023,11,191.0 +24,SP98,2023,12,186.0 +24,SP98,2024,1,187.0 +24,SP98,2024,2,191.0 +24,SP98,2024,3,194.0 +24,SP98,2024,4,199.0 +24,SP98,2024,5,197.0 +24,SP98,2024,6,192.0 +24,SP98,2024,7,193.0 +24,SP98,2024,8,193.0 +24,SP98,2024,9,193.0 +24,SP98,2024,10,193.0 +24,SP98,2024,11,193.0 +24,SP98,2024,12,193.0 +25,Gazole,2007,1,101.33 +25,Gazole,2007,2,102.0 +25,Gazole,2007,3,103.9 +25,Gazole,2007,5,107.0 +25,Gazole,2007,6,108.28 +25,Gazole,2007,7,109.2 +25,Gazole,2007,8,109.38 +25,Gazole,2007,9,111.1 +25,Gazole,2007,10,112.72 +25,Gazole,2007,11,120.38 +25,Gazole,2007,12,120.47 +25,Gazole,2007,4,106.51 +25,Gazole,2008,1,119.78 +25,Gazole,2008,2,120.72 +25,Gazole,2008,3,126.77 +25,Gazole,2008,4,129.51 +25,Gazole,2008,5,139.78 +25,Gazole,2008,6,144.54 +25,Gazole,2008,7,143.33 +25,Gazole,2008,8,134.26 +25,Gazole,2008,9,131.08 +25,Gazole,2008,10,122.37 +25,Gazole,2008,11,112.24 +25,Gazole,2008,12,100.38 +25,Gazole,2009,1,98.57 +25,Gazole,2009,2,97.28 +25,Gazole,2009,3,95.01 +25,Gazole,2009,4,97.48 +25,Gazole,2009,5,98.01 +25,Gazole,2009,6,102.7 +25,Gazole,2009,7,100.75 +25,Gazole,2009,8,103.92 +25,Gazole,2009,9,101.9 +25,Gazole,2009,10,103.08 +25,Gazole,2009,11,105.27 +25,Gazole,2009,12,104.44 +25,Gazole,2010,1,108.35 +25,Gazole,2010,2,108.6 +25,Gazole,2010,3,112.64 +25,Gazole,2010,4,116.79 +25,Gazole,2010,5,117.91 +25,Gazole,2010,6,117.68 +25,Gazole,2010,7,115.12 +25,Gazole,2010,8,114.89 +25,Gazole,2010,9,115.72 +25,Gazole,2010,10,117.92 +25,Gazole,2010,11,119.26 +25,Gazole,2010,12,123.15 +25,Gazole,2011,1,129.47 +25,Gazole,2011,2,132.22 +25,Gazole,2011,3,137.51 +25,Gazole,2011,4,138.28 +25,Gazole,2011,5,134.48 +25,Gazole,2011,6,133.64 +25,Gazole,2011,7,134.3 +25,Gazole,2011,8,132.9 +25,Gazole,2011,9,134.81 +25,Gazole,2011,10,136.13 +25,Gazole,2011,11,139.57 +25,Gazole,2011,12,138.64 +25,Gazole,2012,1,142.01 +25,Gazole,2012,2,143.37 +25,Gazole,2012,3,145.82 +25,Gazole,2012,4,144.72 +25,Gazole,2012,5,141.66 +25,Gazole,2012,6,135.64 +25,Gazole,2012,7,138.69 +25,Gazole,2012,8,145.0 +25,Gazole,2012,9,140.9 +25,Gazole,2012,10,141.34 +25,Gazole,2012,11,139.18 +25,Gazole,2012,12,137.26 +25,Gazole,2013,1,138.89 +25,Gazole,2013,2,142.06 +25,Gazole,2013,3,140.77 +25,Gazole,2013,4,136.89 +25,Gazole,2013,5,134.84 +25,Gazole,2013,6,134.38 +25,Gazole,2013,7,136.21 +25,Gazole,2013,8,136.91 +25,Gazole,2013,9,138.26 +25,Gazole,2013,10,134.76 +25,Gazole,2013,11,133.59 +25,Gazole,2013,12,134.93 +25,Gazole,2014,1,133.96 +25,Gazole,2014,2,134.21 +25,Gazole,2014,3,132.82 +25,Gazole,2014,4,132.34 +25,Gazole,2014,5,132.26 +25,Gazole,2014,6,132.46 +25,Gazole,2014,7,131.71 +25,Gazole,2014,8,131.21 +25,Gazole,2014,9,130.67 +25,Gazole,2014,10,127.42 +25,Gazole,2014,11,124.66 +25,Gazole,2014,12,115.29 +25,Gazole,2015,1,112.72 +25,Gazole,2015,2,118.79 +25,Gazole,2015,3,122.19 +25,Gazole,2015,4,121.97 +25,Gazole,2015,5,124.89 +25,Gazole,2015,6,122.92 +25,Gazole,2015,7,119.4 +25,Gazole,2015,8,113.44 +25,Gazole,2015,9,112.15 +25,Gazole,2015,10,111.92 +25,Gazole,2015,11,111.47 +25,Gazole,2015,12,104.47 +25,Gazole,2016,1, +25,Gazole,2016,2, +25,Gazole,2016,3, +25,Gazole,2016,4, +25,Gazole,2016,5, +25,Gazole,2016,6, +25,Gazole,2016,7, +25,Gazole,2016,8, +25,Gazole,2016,9, +25,Gazole,2016,10, +25,Gazole,2016,11, +25,Gazole,2016,12, +25,Gazole,2017,1, +25,Gazole,2017,2, +25,Gazole,2017,3, +25,Gazole,2017,4, +25,Gazole,2017,5, +25,Gazole,2017,6, +25,Gazole,2017,7, +25,Gazole,2017,8, +25,Gazole,2017,9, +25,Gazole,2017,10, +25,Gazole,2017,11, +25,Gazole,2017,12, +25,Gazole,2018,1, +25,Gazole,2018,2, +25,Gazole,2018,3, +25,Gazole,2018,4, +25,Gazole,2018,5, +25,Gazole,2018,6, +25,Gazole,2018,7, +25,Gazole,2018,8, +25,Gazole,2018,9, +25,Gazole,2018,10, +25,Gazole,2018,11, +25,Gazole,2018,12, +25,Gazole,2019,1, +25,Gazole,2019,2, +25,Gazole,2019,3, +25,Gazole,2019,4, +25,Gazole,2019,5, +25,Gazole,2019,6, +25,Gazole,2019,7, +25,Gazole,2019,8, +25,Gazole,2019,9, +25,Gazole,2019,10, +25,Gazole,2019,11, +25,Gazole,2019,12, +25,Gazole,2020,1, +25,Gazole,2020,2, +25,Gazole,2020,3, +25,Gazole,2020,4, +25,Gazole,2020,5, +25,Gazole,2020,6, +25,Gazole,2020,7, +25,Gazole,2020,8, +25,Gazole,2020,9, +25,Gazole,2020,10, +25,Gazole,2020,11, +25,Gazole,2020,12, +25,Gazole,2021,1, +25,Gazole,2021,2, +25,Gazole,2021,3, +25,Gazole,2021,4, +25,Gazole,2021,5, +25,Gazole,2021,6, +25,Gazole,2021,7, +25,Gazole,2021,8, +25,Gazole,2021,9, +25,Gazole,2021,10, +25,Gazole,2021,11, +25,Gazole,2021,12, +25,Gazole,2022,1, +25,Gazole,2022,2, +25,Gazole,2022,3, +25,Gazole,2022,4, +25,Gazole,2022,5, +25,Gazole,2022,6, +25,Gazole,2022,7, +25,Gazole,2022,8, +25,Gazole,2022,9, +25,Gazole,2022,10, +25,Gazole,2022,11, +25,Gazole,2022,12, +25,Gazole,2023,1, +25,Gazole,2023,2, +25,Gazole,2023,3, +25,Gazole,2023,4, +25,Gazole,2023,5, +25,Gazole,2023,6, +25,Gazole,2023,7, +25,Gazole,2023,8, +25,Gazole,2023,9, +25,Gazole,2023,10, +25,Gazole,2023,11, +25,Gazole,2023,12, +25,Gazole,2024,1, +25,Gazole,2024,2, +25,Gazole,2024,3, +25,Gazole,2024,4, +25,Gazole,2024,5, +25,Gazole,2024,6, +25,Gazole,2024,7, +25,Gazole,2024,8, +25,Gazole,2024,9, +25,Gazole,2024,10, +25,Gazole,2024,11, +25,Gazole,2024,12, +25,SP95,2007,1,117.8 +25,SP95,2007,2,119.37 +25,SP95,2007,3,124.48 +25,SP95,2007,4,128.7 +25,SP95,2007,5,133.27 +25,SP95,2007,6,133.24 +25,SP95,2007,7,132.61 +25,SP95,2007,8,129.17 +25,SP95,2007,9,129.57 +25,SP95,2007,10,129.41 +25,SP95,2007,11,134.52 +25,SP95,2007,12,133.73 +25,SP95,2008,1,136.21 +25,SP95,2008,2,136.3 +25,SP95,2008,3,138.45 +25,SP95,2008,4,140.07 +25,SP95,2008,5,145.55 +25,SP95,2008,6,150.64 +25,SP95,2008,7,149.37 +25,SP95,2008,8,143.55 +25,SP95,2008,9,142.54 +25,SP95,2008,10,131.97 +25,SP95,2008,11,118.66 +25,SP95,2008,12,109.8 +25,SP95,2009,1,110.23 +25,SP95,2009,2,115.25 +25,SP95,2009,3,115.48 +25,SP95,2009,4,118.23 +25,SP95,2009,5,122.39 +25,SP95,2009,6,128.48 +25,SP95,2009,7,124.39 +25,SP95,2009,8,127.74 +25,SP95,2009,9,124.76 +25,SP95,2009,10,124.02 +25,SP95,2009,11,127.21 +25,SP95,2009,12,126.35 +25,SP95,2010,1,130.64 +25,SP95,2010,2,132.02 +25,SP95,2010,3,136.57 +25,SP95,2010,4,138.9 +25,SP95,2010,5,138.81 +25,SP95,2010,6,137.83 +25,SP95,2010,7,135.42 +25,SP95,2010,8,134.78 +25,SP95,2010,9,134.69 +25,SP95,2010,10,136.12 +25,SP95,2010,11,137.69 +25,SP95,2010,12,142.48 +25,SP95,2011,1,146.91 +25,SP95,2011,2,147.77 +25,SP95,2011,3,152.26 +25,SP95,2011,4,154.94 +25,SP95,2011,5,155.64 +25,SP95,2011,6,152.58 +25,SP95,2011,7,152.32 +25,SP95,2011,8,151.23 +25,SP95,2011,9,153.5 +25,SP95,2011,10,151.34 +25,SP95,2011,11,150.44 +25,SP95,2011,12,150.62 +25,SP95,2012,1,156.32 +25,SP95,2012,2,160.27 +25,SP95,2012,3,165.21 +25,SP95,2012,4,167.54 +25,SP95,2012,5,161.27 +25,SP95,2012,6,156.15 +25,SP95,2012,7,157.4 +25,SP95,2012,8,163.51 +25,SP95,2012,9,160.43 +25,SP95,2012,10,158.27 +25,SP95,2012,11,153.52 +25,SP95,2012,12,153.38 +25,SP95,2013,1,155.29 +25,SP95,2013,2,160.83 +25,SP95,2013,3,160.98 +25,SP95,2013,4,158.13 +25,SP95,2013,5,154.89 +25,SP95,2013,6,155.0 +25,SP95,2013,7,156.17 +25,SP95,2013,8,157.03 +25,SP95,2013,9,155.76 +25,SP95,2013,10,150.75 +25,SP95,2013,11,150.03 +25,SP95,2013,12,151.47 +25,SP95,2014,1,150.86 +25,SP95,2014,2,151.54 +25,SP95,2014,3,151.81 +25,SP95,2014,4,152.96 +25,SP95,2014,5,153.7 +25,SP95,2014,6,155.09 +25,SP95,2014,7,155.19 +25,SP95,2014,8,151.89 +25,SP95,2014,9,151.44 +25,SP95,2014,10,148.45 +25,SP95,2014,11,144.21 +25,SP95,2014,12,135.05 +25,SP95,2015,1,127.97 +25,SP95,2015,2,134.04 +25,SP95,2015,3,139.7 +25,SP95,2015,4,142.34 +25,SP95,2015,5,145.34 +25,SP95,2015,6,146.23 +25,SP95,2015,7,145.75 +25,SP95,2015,8,139.8 +25,SP95,2015,9,132.84 +25,SP95,2015,10,131.09 +25,SP95,2015,11,131.11 +25,SP95,2015,12,128.48 +25,SP95,2016,1, +25,SP95,2016,2, +25,SP95,2016,3, +25,SP95,2016,4, +25,SP95,2016,5, +25,SP95,2016,6, +25,SP95,2016,7, +25,SP95,2016,8, +25,SP95,2016,9, +25,SP95,2016,10, +25,SP95,2016,11, +25,SP95,2016,12, +25,SP95,2017,1, +25,SP95,2017,2, +25,SP95,2017,3, +25,SP95,2017,4, +25,SP95,2017,5, +25,SP95,2017,6, +25,SP95,2017,7, +25,SP95,2017,8, +25,SP95,2017,9, +25,SP95,2017,10, +25,SP95,2017,11, +25,SP95,2017,12, +25,SP95,2018,1, +25,SP95,2018,2, +25,SP95,2018,3, +25,SP95,2018,4, +25,SP95,2018,5, +25,SP95,2018,6, +25,SP95,2018,7, +25,SP95,2018,8, +25,SP95,2018,9, +25,SP95,2018,10, +25,SP95,2018,11, +25,SP95,2018,12, +25,SP95,2019,1, +25,SP95,2019,2, +25,SP95,2019,3, +25,SP95,2019,4, +25,SP95,2019,5, +25,SP95,2019,6, +25,SP95,2019,7, +25,SP95,2019,8, +25,SP95,2019,9, +25,SP95,2019,10, +25,SP95,2019,11, +25,SP95,2019,12, +25,SP95,2020,1, +25,SP95,2020,2, +25,SP95,2020,3, +25,SP95,2020,4, +25,SP95,2020,5, +25,SP95,2020,6, +25,SP95,2020,7, +25,SP95,2020,8, +25,SP95,2020,9, +25,SP95,2020,10, +25,SP95,2020,11, +25,SP95,2020,12, +25,SP95,2021,1, +25,SP95,2021,2, +25,SP95,2021,3, +25,SP95,2021,4, +25,SP95,2021,5, +25,SP95,2021,6, +25,SP95,2021,7, +25,SP95,2021,8, +25,SP95,2021,9, +25,SP95,2021,10, +25,SP95,2021,11, +25,SP95,2021,12, +25,SP95,2022,1, +25,SP95,2022,2, +25,SP95,2022,3, +25,SP95,2022,4, +25,SP95,2022,5, +25,SP95,2022,6, +25,SP95,2022,7, +25,SP95,2022,8, +25,SP95,2022,9, +25,SP95,2022,10, +25,SP95,2022,11, +25,SP95,2022,12, +25,SP95,2023,1, +25,SP95,2023,2, +25,SP95,2023,3, +25,SP95,2023,4, +25,SP95,2023,5, +25,SP95,2023,6, +25,SP95,2023,7, +25,SP95,2023,8, +25,SP95,2023,9, +25,SP95,2023,10, +25,SP95,2023,11, +25,SP95,2023,12, +25,SP95,2024,1, +25,SP95,2024,2, +25,SP95,2024,3, +25,SP95,2024,4, +25,SP95,2024,5, +25,SP95,2024,6, +25,SP95,2024,7, +25,SP95,2024,8, +25,SP95,2024,9, +25,SP95,2024,10, +25,SP95,2024,11, +25,SP95,2024,12, +25,GPLc,2007,12,73.3 +25,GPLc,2007,11,73.85 +25,GPLc,2007,1, +25,GPLc,2007,2, +25,GPLc,2007,3, +25,GPLc,2007,4, +25,GPLc,2007,5, +25,GPLc,2007,6, +25,GPLc,2007,7, +25,GPLc,2007,8, +25,GPLc,2007,9, +25,GPLc,2007,10, +25,GPLc,2008,1,74.56 +25,GPLc,2008,5,74.81 +25,GPLc,2008,6,76.03 +25,GPLc,2008,7,77.04 +25,GPLc,2008,11,76.76 +25,GPLc,2008,12,73.05 +25,GPLc,2008,3,74.98 +25,GPLc,2008,4,74.55 +25,GPLc,2008,8,78.59 +25,GPLc,2008,2,74.9 +25,GPLc,2008,9,78.62 +25,GPLc,2008,10,78.83 +25,GPLc,2009,3,67.27 +25,GPLc,2009,4,64.26 +25,GPLc,2009,6,63.63 +25,GPLc,2009,7,63.95 +25,GPLc,2009,9,66.27 +25,GPLc,2009,10,67.0 +25,GPLc,2009,11,68.78 +25,GPLc,2009,1,69.96 +25,GPLc,2009,5,63.54 +25,GPLc,2009,8,65.63 +25,GPLc,2009,12,69.98 +25,GPLc,2009,2,69.27 +25,GPLc,2010,1,69.3 +25,GPLc,2010,3,68.53 +25,GPLc,2010,5,71.33 +25,GPLc,2010,6,72.28 +25,GPLc,2010,7,73.96 +25,GPLc,2010,11,77.82 +25,GPLc,2010,12,80.82 +25,GPLc,2010,2,70.06 +25,GPLc,2010,4,69.0 +25,GPLc,2010,8,74.58 +25,GPLc,2010,9,74.86 +25,GPLc,2010,10,76.36 +25,GPLc,2011,6,84.98 +25,GPLc,2011,8,87.36 +25,GPLc,2011,9,87.57 +25,GPLc,2011,10,87.46 +25,GPLc,2011,11,87.43 +25,GPLc,2011,12,87.18 +25,GPLc,2011,1,82.39 +25,GPLc,2011,2,81.69 +25,GPLc,2011,3,81.82 +25,GPLc,2011,4,81.99 +25,GPLc,2011,5,82.42 +25,GPLc,2011,7,87.32 +25,GPLc,2012,1,84.72 +25,GPLc,2012,2,86.23 +25,GPLc,2012,3,87.99 +25,GPLc,2012,4,88.68 +25,GPLc,2012,5,88.51 +25,GPLc,2012,6,88.46 +25,GPLc,2012,7,87.31 +25,GPLc,2012,8,87.1 +25,GPLc,2012,10,86.95 +25,GPLc,2012,11,87.81 +25,GPLc,2012,12,87.94 +25,GPLc,2012,9,86.08 +25,GPLc,2013,1,88.44 +25,GPLc,2013,2,88.44 +25,GPLc,2013,3,89.06 +25,GPLc,2013,4,88.91 +25,GPLc,2013,5,87.86 +25,GPLc,2013,6,87.04 +25,GPLc,2013,7,86.24 +25,GPLc,2013,8,85.93 +25,GPLc,2013,9,86.23 +25,GPLc,2013,10,86.0 +25,GPLc,2013,11,86.05 +25,GPLc,2013,12,86.34 +25,GPLc,2014,1,87.73 +25,GPLc,2014,2,87.62 +25,GPLc,2014,3,86.99 +25,GPLc,2014,4,86.24 +25,GPLc,2014,5,86.13 +25,GPLc,2014,6,85.89 +25,GPLc,2014,7,85.48 +25,GPLc,2014,8,85.34 +25,GPLc,2014,9,85.39 +25,GPLc,2014,10,85.33 +25,GPLc,2014,11,84.69 +25,GPLc,2014,12,84.11 +25,GPLc,2015,1,82.92 +25,GPLc,2015,2,80.86 +25,GPLc,2015,3,80.22 +25,GPLc,2015,4,79.94 +25,GPLc,2015,5,80.37 +25,GPLc,2015,6,79.53 +25,GPLc,2015,7,78.43 +25,GPLc,2015,9,77.34 +25,GPLc,2015,10,76.67 +25,GPLc,2015,11,76.38 +25,GPLc,2015,12,76.07 +25,GPLc,2015,8,78.1 +25,GPLc,2016,1, +25,GPLc,2016,2, +25,GPLc,2016,3, +25,GPLc,2016,4, +25,GPLc,2016,5, +25,GPLc,2016,6, +25,GPLc,2016,7, +25,GPLc,2016,8, +25,GPLc,2016,9, +25,GPLc,2016,10, +25,GPLc,2016,11, +25,GPLc,2016,12, +25,GPLc,2017,1, +25,GPLc,2017,2, +25,GPLc,2017,3, +25,GPLc,2017,4, +25,GPLc,2017,5, +25,GPLc,2017,6, +25,GPLc,2017,7, +25,GPLc,2017,8, +25,GPLc,2017,9, +25,GPLc,2017,10, +25,GPLc,2017,11, +25,GPLc,2017,12, +25,GPLc,2018,1, +25,GPLc,2018,2, +25,GPLc,2018,3, +25,GPLc,2018,4, +25,GPLc,2018,5, +25,GPLc,2018,6, +25,GPLc,2018,7, +25,GPLc,2018,8, +25,GPLc,2018,9, +25,GPLc,2018,10, +25,GPLc,2018,11, +25,GPLc,2018,12, +25,GPLc,2019,1, +25,GPLc,2019,2, +25,GPLc,2019,3, +25,GPLc,2019,4, +25,GPLc,2019,5, +25,GPLc,2019,6, +25,GPLc,2019,7, +25,GPLc,2019,8, +25,GPLc,2019,9, +25,GPLc,2019,10, +25,GPLc,2019,11, +25,GPLc,2019,12, +25,GPLc,2020,1, +25,GPLc,2020,2, +25,GPLc,2020,3, +25,GPLc,2020,4, +25,GPLc,2020,5, +25,GPLc,2020,6, +25,GPLc,2020,7, +25,GPLc,2020,8, +25,GPLc,2020,9, +25,GPLc,2020,10, +25,GPLc,2020,11, +25,GPLc,2020,12, +25,GPLc,2021,1, +25,GPLc,2021,2, +25,GPLc,2021,3, +25,GPLc,2021,4, +25,GPLc,2021,5, +25,GPLc,2021,6, +25,GPLc,2021,7, +25,GPLc,2021,8, +25,GPLc,2021,9, +25,GPLc,2021,10, +25,GPLc,2021,11, +25,GPLc,2021,12, +25,GPLc,2022,1, +25,GPLc,2022,2, +25,GPLc,2022,3, +25,GPLc,2022,4, +25,GPLc,2022,5, +25,GPLc,2022,6, +25,GPLc,2022,7, +25,GPLc,2022,8, +25,GPLc,2022,9, +25,GPLc,2022,10, +25,GPLc,2022,11, +25,GPLc,2022,12, +25,GPLc,2023,1, +25,GPLc,2023,2, +25,GPLc,2023,3, +25,GPLc,2023,4, +25,GPLc,2023,5, +25,GPLc,2023,6, +25,GPLc,2023,7, +25,GPLc,2023,8, +25,GPLc,2023,9, +25,GPLc,2023,10, +25,GPLc,2023,11, +25,GPLc,2023,12, +25,GPLc,2024,1, +25,GPLc,2024,2, +25,GPLc,2024,3, +25,GPLc,2024,4, +25,GPLc,2024,5, +25,GPLc,2024,6, +25,GPLc,2024,7, +25,GPLc,2024,8, +25,GPLc,2024,9, +25,GPLc,2024,10, +25,GPLc,2024,11, +25,GPLc,2024,12, +25,E85,2007,12,84.11 +25,E85,2007,9,82.88 +25,E85,2007,7,81.26 +25,E85,2007,8,82.32 +25,E85,2007,4,80.0 +25,E85,2007,5,79.71 +25,E85,2007,11,83.83 +25,E85,2007,1, +25,E85,2007,2, +25,E85,2007,3, +25,E85,2007,6,79.5 +25,E85,2007,10,83.88 +25,E85,2008,1,81.48 +25,E85,2008,2,81.61 +25,E85,2008,3,81.54 +25,E85,2008,4,81.49 +25,E85,2008,5,81.5 +25,E85,2008,6,81.15 +25,E85,2008,7,82.28 +25,E85,2008,8,83.46 +25,E85,2008,9,83.66 +25,E85,2008,10,83.72 +25,E85,2008,11,83.72 +25,E85,2008,12,82.49 +25,E85,2009,8,110.18 +25,E85,2009,1,103.62 +25,E85,2009,2,91.72 +25,E85,2009,3,90.96 +25,E85,2009,4,91.05 +25,E85,2009,5,91.72 +25,E85,2009,6,92.47 +25,E85,2009,7,103.85 +25,E85,2009,9,111.66 +25,E85,2009,10,111.56 +25,E85,2009,11,112.62 +25,E85,2009,12,112.66 +25,E85,2010,8,118.54 +25,E85,2010,1,87.81 +25,E85,2010,2,96.98 +25,E85,2010,3,97.77 +25,E85,2010,4,104.37 +25,E85,2010,5,107.96 +25,E85,2010,6,110.42 +25,E85,2010,7,114.99 +25,E85,2010,9,117.68 +25,E85,2010,11,117.67 +25,E85,2010,12,118.75 +25,E85,2010,10,118.82 +25,E85,2011,10,89.23 +25,E85,2011,1,87.88 +25,E85,2011,2,88.2 +25,E85,2011,3,92.07 +25,E85,2011,4,89.64 +25,E85,2011,5,90.35 +25,E85,2011,6,90.22 +25,E85,2011,7,89.3 +25,E85,2011,8,88.96 +25,E85,2011,9,88.54 +25,E85,2011,11,90.26 +25,E85,2011,12,89.99 +25,E85,2012,1,89.1 +25,E85,2012,2,92.98 +25,E85,2012,3,95.39 +25,E85,2012,4,95.54 +25,E85,2012,5,93.28 +25,E85,2012,6,92.5 +25,E85,2012,7,92.04 +25,E85,2012,8,92.85 +25,E85,2012,9,89.92 +25,E85,2012,10,90.52 +25,E85,2012,12,89.06 +25,E85,2012,11,89.83 +25,E85,2013,1,91.63 +25,E85,2013,2,92.82 +25,E85,2013,3,92.76 +25,E85,2013,4,91.93 +25,E85,2013,5,91.08 +25,E85,2013,6,89.59 +25,E85,2013,7,88.9 +25,E85,2013,9,89.24 +25,E85,2013,11,87.79 +25,E85,2013,12,87.28 +25,E85,2013,10,89.31 +25,E85,2013,8,89.47 +25,E85,2014,6,84.13 +25,E85,2014,7,82.68 +25,E85,2014,8,82.1 +25,E85,2014,9,82.27 +25,E85,2014,10,80.52 +25,E85,2014,11,81.0 +25,E85,2014,12,84.37 +25,E85,2014,1,83.85 +25,E85,2014,2,85.28 +25,E85,2014,3,87.19 +25,E85,2014,4,82.41 +25,E85,2014,5,85.78 +25,E85,2015,4,85.45 +25,E85,2015,5,84.24 +25,E85,2015,6,83.82 +25,E85,2015,9,90.02 +25,E85,2015,11,89.15 +25,E85,2015,2,78.24 +25,E85,2015,3,84.15 +25,E85,2015,7,83.71 +25,E85,2015,8,85.72 +25,E85,2015,10,89.84 +25,E85,2015,12,91.02 +25,E85,2015,1,76.59 +25,E85,2016,1, +25,E85,2016,2, +25,E85,2016,3, +25,E85,2016,4, +25,E85,2016,5, +25,E85,2016,6, +25,E85,2016,7, +25,E85,2016,8, +25,E85,2016,9, +25,E85,2016,10, +25,E85,2016,11, +25,E85,2016,12, +25,E85,2017,1, +25,E85,2017,2, +25,E85,2017,3, +25,E85,2017,4, +25,E85,2017,5, +25,E85,2017,6, +25,E85,2017,7, +25,E85,2017,8, +25,E85,2017,9, +25,E85,2017,10, +25,E85,2017,11, +25,E85,2017,12, +25,E85,2018,1, +25,E85,2018,2, +25,E85,2018,3, +25,E85,2018,4, +25,E85,2018,5, +25,E85,2018,6, +25,E85,2018,7, +25,E85,2018,8, +25,E85,2018,9, +25,E85,2018,10, +25,E85,2018,11, +25,E85,2018,12, +25,E85,2019,1, +25,E85,2019,2, +25,E85,2019,3, +25,E85,2019,4, +25,E85,2019,5, +25,E85,2019,6, +25,E85,2019,7, +25,E85,2019,8, +25,E85,2019,9, +25,E85,2019,10, +25,E85,2019,11, +25,E85,2019,12, +25,E85,2020,1, +25,E85,2020,2, +25,E85,2020,3, +25,E85,2020,4, +25,E85,2020,5, +25,E85,2020,6, +25,E85,2020,7, +25,E85,2020,8, +25,E85,2020,9, +25,E85,2020,10, +25,E85,2020,11, +25,E85,2020,12, +25,E85,2021,1, +25,E85,2021,2, +25,E85,2021,3, +25,E85,2021,4, +25,E85,2021,5, +25,E85,2021,6, +25,E85,2021,7, +25,E85,2021,8, +25,E85,2021,9, +25,E85,2021,10, +25,E85,2021,11, +25,E85,2021,12, +25,E85,2022,1, +25,E85,2022,2, +25,E85,2022,3, +25,E85,2022,4, +25,E85,2022,5, +25,E85,2022,6, +25,E85,2022,7, +25,E85,2022,8, +25,E85,2022,9, +25,E85,2022,10, +25,E85,2022,11, +25,E85,2022,12, +25,E85,2023,1, +25,E85,2023,2, +25,E85,2023,3, +25,E85,2023,4, +25,E85,2023,5, +25,E85,2023,6, +25,E85,2023,7, +25,E85,2023,8, +25,E85,2023,9, +25,E85,2023,10, +25,E85,2023,11, +25,E85,2023,12, +25,E85,2024,1, +25,E85,2024,2, +25,E85,2024,3, +25,E85,2024,4, +25,E85,2024,5, +25,E85,2024,6, +25,E85,2024,7, +25,E85,2024,8, +25,E85,2024,9, +25,E85,2024,10, +25,E85,2024,11, +25,E85,2024,12, +25,E10,2009,5,121.8 +25,E10,2009,6,126.19 +25,E10,2009,7,122.75 +25,E10,2009,8,124.38 +25,E10,2009,9,122.61 +25,E10,2009,10,121.61 +25,E10,2009,11,123.99 +25,E10,2009,12,123.78 +25,E10,2009,4,118.87 +25,E10,2009,1, +25,E10,2009,2, +25,E10,2009,3, +25,E10,2010,1,127.29 +25,E10,2010,2,128.58 +25,E10,2010,3,134.27 +25,E10,2010,4,137.21 +25,E10,2010,5,137.15 +25,E10,2010,6,135.96 +25,E10,2010,7,133.61 +25,E10,2010,8,133.45 +25,E10,2010,9,133.18 +25,E10,2010,10,134.33 +25,E10,2010,11,135.58 +25,E10,2010,12,141.15 +25,E10,2011,1,145.71 +25,E10,2011,2,146.06 +25,E10,2011,3,150.11 +25,E10,2011,4,153.29 +25,E10,2011,5,153.74 +25,E10,2011,6,151.23 +25,E10,2011,7,151.44 +25,E10,2011,8,150.36 +25,E10,2011,9,152.41 +25,E10,2011,10,150.25 +25,E10,2011,11,149.74 +25,E10,2011,12,149.35 +25,E10,2012,9,156.37 +25,E10,2012,10,153.99 +25,E10,2012,11,149.19 +25,E10,2012,12,149.48 +25,E10,2012,1,154.83 +25,E10,2012,2,158.12 +25,E10,2012,3,162.96 +25,E10,2012,4,164.76 +25,E10,2012,5,158.43 +25,E10,2012,6,153.15 +25,E10,2012,7,154.08 +25,E10,2012,8,159.2 +25,E10,2013,1,153.81 +25,E10,2013,2,159.49 +25,E10,2013,3,159.21 +25,E10,2013,4,156.74 +25,E10,2013,5,153.32 +25,E10,2013,6,153.23 +25,E10,2013,7,154.8 +25,E10,2013,8,155.34 +25,E10,2013,9,154.15 +25,E10,2013,10,149.77 +25,E10,2013,11,149.08 +25,E10,2013,12,150.21 +25,E10,2014,1,149.18 +25,E10,2014,2,149.93 +25,E10,2014,3,150.2 +25,E10,2014,4,151.47 +25,E10,2014,5,152.06 +25,E10,2014,6,153.53 +25,E10,2014,7,153.58 +25,E10,2014,8,150.26 +25,E10,2014,9,149.83 +25,E10,2014,10,147.35 +25,E10,2014,11,143.13 +25,E10,2014,12,134.97 +25,E10,2015,1,127.56 +25,E10,2015,2,133.49 +25,E10,2015,3,138.63 +25,E10,2015,4,141.03 +25,E10,2015,5,143.47 +25,E10,2015,6,144.51 +25,E10,2015,7,144.09 +25,E10,2015,8,138.49 +25,E10,2015,9,131.92 +25,E10,2015,10,130.65 +25,E10,2015,11,130.48 +25,E10,2015,12,127.88 +25,E10,2016,1, +25,E10,2016,2, +25,E10,2016,3, +25,E10,2016,4, +25,E10,2016,5, +25,E10,2016,6, +25,E10,2016,7, +25,E10,2016,8, +25,E10,2016,9, +25,E10,2016,10, +25,E10,2016,11, +25,E10,2016,12, +25,E10,2017,1, +25,E10,2017,2, +25,E10,2017,3, +25,E10,2017,4, +25,E10,2017,5, +25,E10,2017,6, +25,E10,2017,7, +25,E10,2017,8, +25,E10,2017,9, +25,E10,2017,10, +25,E10,2017,11, +25,E10,2017,12, +25,E10,2018,1, +25,E10,2018,2, +25,E10,2018,3, +25,E10,2018,4, +25,E10,2018,5, +25,E10,2018,6, +25,E10,2018,7, +25,E10,2018,8, +25,E10,2018,9, +25,E10,2018,10, +25,E10,2018,11, +25,E10,2018,12, +25,E10,2019,1, +25,E10,2019,2, +25,E10,2019,3, +25,E10,2019,4, +25,E10,2019,5, +25,E10,2019,6, +25,E10,2019,7, +25,E10,2019,8, +25,E10,2019,9, +25,E10,2019,10, +25,E10,2019,11, +25,E10,2019,12, +25,E10,2020,1, +25,E10,2020,2, +25,E10,2020,3, +25,E10,2020,4, +25,E10,2020,5, +25,E10,2020,6, +25,E10,2020,7, +25,E10,2020,8, +25,E10,2020,9, +25,E10,2020,10, +25,E10,2020,11, +25,E10,2020,12, +25,E10,2021,1, +25,E10,2021,2, +25,E10,2021,3, +25,E10,2021,4, +25,E10,2021,5, +25,E10,2021,6, +25,E10,2021,7, +25,E10,2021,8, +25,E10,2021,9, +25,E10,2021,10, +25,E10,2021,11, +25,E10,2021,12, +25,E10,2022,1, +25,E10,2022,2, +25,E10,2022,3, +25,E10,2022,4, +25,E10,2022,5, +25,E10,2022,6, +25,E10,2022,7, +25,E10,2022,8, +25,E10,2022,9, +25,E10,2022,10, +25,E10,2022,11, +25,E10,2022,12, +25,E10,2023,1, +25,E10,2023,2, +25,E10,2023,3, +25,E10,2023,4, +25,E10,2023,5, +25,E10,2023,6, +25,E10,2023,7, +25,E10,2023,8, +25,E10,2023,9, +25,E10,2023,10, +25,E10,2023,11, +25,E10,2023,12, +25,E10,2024,1, +25,E10,2024,2, +25,E10,2024,3, +25,E10,2024,4, +25,E10,2024,5, +25,E10,2024,6, +25,E10,2024,7, +25,E10,2024,8, +25,E10,2024,9, +25,E10,2024,10, +25,E10,2024,11, +25,E10,2024,12, +25,SP98,2013,6,157.95 +25,SP98,2013,7,160.54 +25,SP98,2013,8,161.31 +25,SP98,2013,9,160.77 +25,SP98,2013,10,155.89 +25,SP98,2013,11,154.65 +25,SP98,2013,12,155.96 +25,SP98,2013,1, +25,SP98,2013,2, +25,SP98,2013,3, +25,SP98,2013,4, +25,SP98,2013,5, +25,SP98,2014,1,155.29 +25,SP98,2014,2,156.02 +25,SP98,2014,3,156.36 +25,SP98,2014,4,157.3 +25,SP98,2014,5,158.21 +25,SP98,2014,6,159.55 +25,SP98,2014,7,159.88 +25,SP98,2014,8,156.88 +25,SP98,2014,9,156.23 +25,SP98,2014,10,153.64 +25,SP98,2014,11,149.23 +25,SP98,2014,12,140.76 +25,SP98,2015,1,132.79 +25,SP98,2015,2,138.46 +25,SP98,2015,3,144.38 +25,SP98,2015,4,147.3 +25,SP98,2015,5,150.26 +25,SP98,2015,6,151.06 +25,SP98,2015,7,150.7 +25,SP98,2015,8,145.39 +25,SP98,2015,9,138.08 +25,SP98,2015,10,136.33 +25,SP98,2015,11,136.3 +25,SP98,2015,12,133.99 +25,SP98,2016,1, +25,SP98,2016,2, +25,SP98,2016,3, +25,SP98,2016,4, +25,SP98,2016,5, +25,SP98,2016,6, +25,SP98,2016,7, +25,SP98,2016,8, +25,SP98,2016,9, +25,SP98,2016,10, +25,SP98,2016,11, +25,SP98,2016,12, +25,SP98,2017,1, +25,SP98,2017,2, +25,SP98,2017,3, +25,SP98,2017,4, +25,SP98,2017,5, +25,SP98,2017,6, +25,SP98,2017,7, +25,SP98,2017,8, +25,SP98,2017,9, +25,SP98,2017,10, +25,SP98,2017,11, +25,SP98,2017,12, +25,SP98,2018,1, +25,SP98,2018,2, +25,SP98,2018,3, +25,SP98,2018,4, +25,SP98,2018,5, +25,SP98,2018,6, +25,SP98,2018,7, +25,SP98,2018,8, +25,SP98,2018,9, +25,SP98,2018,10, +25,SP98,2018,11, +25,SP98,2018,12, +25,SP98,2019,1, +25,SP98,2019,2, +25,SP98,2019,3, +25,SP98,2019,4, +25,SP98,2019,5, +25,SP98,2019,6, +25,SP98,2019,7, +25,SP98,2019,8, +25,SP98,2019,9, +25,SP98,2019,10, +25,SP98,2019,11, +25,SP98,2019,12, +25,SP98,2020,1, +25,SP98,2020,2, +25,SP98,2020,3, +25,SP98,2020,4, +25,SP98,2020,5, +25,SP98,2020,6, +25,SP98,2020,7, +25,SP98,2020,8, +25,SP98,2020,9, +25,SP98,2020,10, +25,SP98,2020,11, +25,SP98,2020,12, +25,SP98,2021,1, +25,SP98,2021,2, +25,SP98,2021,3, +25,SP98,2021,4, +25,SP98,2021,5, +25,SP98,2021,6, +25,SP98,2021,7, +25,SP98,2021,8, +25,SP98,2021,9, +25,SP98,2021,10, +25,SP98,2021,11, +25,SP98,2021,12, +25,SP98,2022,1, +25,SP98,2022,2, +25,SP98,2022,3, +25,SP98,2022,4, +25,SP98,2022,5, +25,SP98,2022,6, +25,SP98,2022,7, +25,SP98,2022,8, +25,SP98,2022,9, +25,SP98,2022,10, +25,SP98,2022,11, +25,SP98,2022,12, +25,SP98,2023,1, +25,SP98,2023,2, +25,SP98,2023,3, +25,SP98,2023,4, +25,SP98,2023,5, +25,SP98,2023,6, +25,SP98,2023,7, +25,SP98,2023,8, +25,SP98,2023,9, +25,SP98,2023,10, +25,SP98,2023,11, +25,SP98,2023,12, +25,SP98,2024,1, +25,SP98,2024,2, +25,SP98,2024,3, +25,SP98,2024,4, +25,SP98,2024,5, +25,SP98,2024,6, +25,SP98,2024,7, +25,SP98,2024,8, +25,SP98,2024,9, +25,SP98,2024,10, +25,SP98,2024,11, +25,SP98,2024,12, +54,Gazole,2007,1,100.45 +54,Gazole,2007,2,101.0 +54,Gazole,2007,3,102.76 +54,Gazole,2007,4,105.37 +54,Gazole,2007,5,105.71 +54,Gazole,2007,6,107.29 +54,Gazole,2007,7,108.28 +54,Gazole,2007,8,108.23 +54,Gazole,2007,9,109.89 +54,Gazole,2007,10,111.56 +54,Gazole,2007,11,119.44 +54,Gazole,2007,12,119.25 +54,Gazole,2008,1,118.62 +54,Gazole,2008,2,119.3 +54,Gazole,2008,3,124.7 +54,Gazole,2008,4,127.55 +54,Gazole,2008,5,137.97 +54,Gazole,2008,6,143.08 +54,Gazole,2008,7,141.72 +54,Gazole,2008,8,132.62 +54,Gazole,2008,9,129.84 +54,Gazole,2008,10,121.4 +54,Gazole,2008,11,111.04 +54,Gazole,2008,12,99.26 +54,Gazole,2009,1,97.1 +54,Gazole,2009,2,95.98 +54,Gazole,2009,3,93.7 +54,Gazole,2009,4,96.0 +54,Gazole,2009,5,96.37 +54,Gazole,2009,6,101.01 +54,Gazole,2009,7,99.24 +54,Gazole,2009,8,102.5 +54,Gazole,2009,9,100.8 +54,Gazole,2009,10,101.6 +54,Gazole,2009,11,103.79 +54,Gazole,2009,12,103.0 +54,Gazole,2010,2,107.05 +54,Gazole,2010,3,111.02 +54,Gazole,2010,4,114.84 +54,Gazole,2010,5,115.78 +54,Gazole,2010,6,115.62 +54,Gazole,2010,7,113.1 +54,Gazole,2010,8,113.0 +54,Gazole,2010,9,113.7 +54,Gazole,2010,10,115.66 +54,Gazole,2010,11,116.85 +54,Gazole,2010,12,120.63 +54,Gazole,2010,1,106.98 +54,Gazole,2011,1,126.14 +54,Gazole,2011,2,128.98 +54,Gazole,2011,3,134.51 +54,Gazole,2011,4,134.7 +54,Gazole,2011,5,130.65 +54,Gazole,2011,6,130.02 +54,Gazole,2011,7,130.69 +54,Gazole,2011,8,129.53 +54,Gazole,2011,9,131.59 +54,Gazole,2011,10,132.91 +54,Gazole,2011,11,136.41 +54,Gazole,2011,12,135.62 +54,Gazole,2012,1,138.87 +54,Gazole,2012,2,140.32 +54,Gazole,2012,3,142.77 +54,Gazole,2012,4,141.73 +54,Gazole,2012,5,138.7 +54,Gazole,2012,6,132.62 +54,Gazole,2012,7,135.69 +54,Gazole,2012,8,141.67 +54,Gazole,2012,9,137.59 +54,Gazole,2012,10,137.99 +54,Gazole,2012,11,135.91 +54,Gazole,2012,12,134.34 +54,Gazole,2013,1,135.7 +54,Gazole,2013,2,139.25 +54,Gazole,2013,3,137.68 +54,Gazole,2013,4,133.72 +54,Gazole,2013,5,131.75 +54,Gazole,2013,6,131.17 +54,Gazole,2013,7,132.88 +54,Gazole,2013,8,133.55 +54,Gazole,2013,9,134.93 +54,Gazole,2013,10,131.45 +54,Gazole,2013,11,130.46 +54,Gazole,2013,12,131.78 +54,Gazole,2014,1,130.58 +54,Gazole,2014,2,131.04 +54,Gazole,2014,3,129.44 +54,Gazole,2014,4,129.26 +54,Gazole,2014,5,129.12 +54,Gazole,2014,6,129.26 +54,Gazole,2014,7,128.42 +54,Gazole,2014,8,128.16 +54,Gazole,2014,9,127.57 +54,Gazole,2014,10,124.45 +54,Gazole,2014,11,122.07 +54,Gazole,2014,12,112.01 +54,Gazole,2015,1,109.36 +54,Gazole,2015,2,115.96 +54,Gazole,2015,3,119.08 +54,Gazole,2015,4,118.8 +54,Gazole,2015,5,121.57 +54,Gazole,2015,6,119.68 +54,Gazole,2015,7,115.96 +54,Gazole,2015,8,110.16 +54,Gazole,2015,9,108.77 +54,Gazole,2015,10,108.62 +54,Gazole,2015,11,108.45 +54,Gazole,2015,12,101.46 +54,Gazole,2016,1, +54,Gazole,2016,2, +54,Gazole,2016,3, +54,Gazole,2016,4, +54,Gazole,2016,5, +54,Gazole,2016,6, +54,Gazole,2016,7, +54,Gazole,2016,8, +54,Gazole,2016,9, +54,Gazole,2016,10, +54,Gazole,2016,11, +54,Gazole,2016,12, +54,Gazole,2017,1, +54,Gazole,2017,2, +54,Gazole,2017,3, +54,Gazole,2017,4, +54,Gazole,2017,5, +54,Gazole,2017,6, +54,Gazole,2017,7, +54,Gazole,2017,8, +54,Gazole,2017,9, +54,Gazole,2017,10, +54,Gazole,2017,11, +54,Gazole,2017,12, +54,Gazole,2018,1, +54,Gazole,2018,2, +54,Gazole,2018,3, +54,Gazole,2018,4, +54,Gazole,2018,5, +54,Gazole,2018,6, +54,Gazole,2018,7, +54,Gazole,2018,8, +54,Gazole,2018,9, +54,Gazole,2018,10, +54,Gazole,2018,11, +54,Gazole,2018,12, +54,Gazole,2019,1, +54,Gazole,2019,2, +54,Gazole,2019,3, +54,Gazole,2019,4, +54,Gazole,2019,5, +54,Gazole,2019,6, +54,Gazole,2019,7, +54,Gazole,2019,8, +54,Gazole,2019,9, +54,Gazole,2019,10, +54,Gazole,2019,11, +54,Gazole,2019,12, +54,Gazole,2020,1, +54,Gazole,2020,2, +54,Gazole,2020,3, +54,Gazole,2020,4, +54,Gazole,2020,5, +54,Gazole,2020,6, +54,Gazole,2020,7, +54,Gazole,2020,8, +54,Gazole,2020,9, +54,Gazole,2020,10, +54,Gazole,2020,11, +54,Gazole,2020,12, +54,Gazole,2021,1, +54,Gazole,2021,2, +54,Gazole,2021,3, +54,Gazole,2021,4, +54,Gazole,2021,5, +54,Gazole,2021,6, +54,Gazole,2021,7, +54,Gazole,2021,8, +54,Gazole,2021,9, +54,Gazole,2021,10, +54,Gazole,2021,11, +54,Gazole,2021,12, +54,Gazole,2022,1, +54,Gazole,2022,2, +54,Gazole,2022,3, +54,Gazole,2022,4, +54,Gazole,2022,5, +54,Gazole,2022,6, +54,Gazole,2022,7, +54,Gazole,2022,8, +54,Gazole,2022,9, +54,Gazole,2022,10, +54,Gazole,2022,11, +54,Gazole,2022,12, +54,Gazole,2023,1, +54,Gazole,2023,2, +54,Gazole,2023,3, +54,Gazole,2023,4, +54,Gazole,2023,5, +54,Gazole,2023,6, +54,Gazole,2023,7, +54,Gazole,2023,8, +54,Gazole,2023,9, +54,Gazole,2023,10, +54,Gazole,2023,11, +54,Gazole,2023,12, +54,Gazole,2024,1, +54,Gazole,2024,2, +54,Gazole,2024,3, +54,Gazole,2024,4, +54,Gazole,2024,5, +54,Gazole,2024,6, +54,Gazole,2024,7, +54,Gazole,2024,8, +54,Gazole,2024,9, +54,Gazole,2024,10, +54,Gazole,2024,11, +54,Gazole,2024,12, +54,SP95,2007,1,117.42 +54,SP95,2007,2,118.26 +54,SP95,2007,3,123.39 +54,SP95,2007,4,127.79 +54,SP95,2007,5,131.9 +54,SP95,2007,6,131.8 +54,SP95,2007,7,131.3 +54,SP95,2007,8,127.71 +54,SP95,2007,9,128.25 +54,SP95,2007,10,128.11 +54,SP95,2007,11,133.84 +54,SP95,2007,12,132.99 +54,SP95,2008,1,135.21 +54,SP95,2008,2,135.0 +54,SP95,2008,3,136.82 +54,SP95,2008,4,138.71 +54,SP95,2008,5,143.67 +54,SP95,2008,6,148.57 +54,SP95,2008,7,147.25 +54,SP95,2008,8,141.9 +54,SP95,2008,9,141.26 +54,SP95,2008,10,131.03 +54,SP95,2008,11,117.73 +54,SP95,2008,12,108.93 +54,SP95,2009,1,109.45 +54,SP95,2009,2,113.82 +54,SP95,2009,3,114.1 +54,SP95,2009,4,116.99 +54,SP95,2009,5,121.02 +54,SP95,2009,6,126.76 +54,SP95,2009,7,122.91 +54,SP95,2009,8,126.31 +54,SP95,2009,9,123.56 +54,SP95,2009,10,122.74 +54,SP95,2009,11,125.77 +54,SP95,2009,12,124.96 +54,SP95,2010,2,129.83 +54,SP95,2010,3,134.51 +54,SP95,2010,4,136.96 +54,SP95,2010,5,136.97 +54,SP95,2010,6,135.71 +54,SP95,2010,7,133.09 +54,SP95,2010,8,132.49 +54,SP95,2010,9,132.36 +54,SP95,2010,10,133.51 +54,SP95,2010,11,135.33 +54,SP95,2010,12,139.91 +54,SP95,2010,1,128.94 +54,SP95,2011,1,144.55 +54,SP95,2011,2,144.84 +54,SP95,2011,3,149.31 +54,SP95,2011,4,151.83 +54,SP95,2011,5,151.85 +54,SP95,2011,6,148.8 +54,SP95,2011,7,148.79 +54,SP95,2011,8,148.07 +54,SP95,2011,9,150.22 +54,SP95,2011,10,148.15 +54,SP95,2011,11,147.17 +54,SP95,2011,12,147.36 +54,SP95,2012,1,153.46 +54,SP95,2012,2,157.25 +54,SP95,2012,3,162.12 +54,SP95,2012,4,164.23 +54,SP95,2012,5,158.54 +54,SP95,2012,6,153.64 +54,SP95,2012,7,155.2 +54,SP95,2012,8,160.67 +54,SP95,2012,9,157.36 +54,SP95,2012,10,155.5 +54,SP95,2012,11,150.29 +54,SP95,2012,12,150.31 +54,SP95,2013,1,153.3 +54,SP95,2013,2,158.9 +54,SP95,2013,3,158.6 +54,SP95,2013,4,155.66 +54,SP95,2013,5,152.77 +54,SP95,2013,6,152.85 +54,SP95,2013,7,153.89 +54,SP95,2013,8,154.48 +54,SP95,2013,9,153.46 +54,SP95,2013,10,148.77 +54,SP95,2013,11,148.11 +54,SP95,2013,12,149.52 +54,SP95,2014,1,148.9 +54,SP95,2014,2,149.57 +54,SP95,2014,3,149.7 +54,SP95,2014,4,151.0 +54,SP95,2014,5,151.51 +54,SP95,2014,6,152.95 +54,SP95,2014,7,152.77 +54,SP95,2014,8,149.67 +54,SP95,2014,9,149.08 +54,SP95,2014,10,146.18 +54,SP95,2014,11,142.38 +54,SP95,2014,12,133.12 +54,SP95,2015,1,125.69 +54,SP95,2015,2,132.2 +54,SP95,2015,3,137.9 +54,SP95,2015,4,140.58 +54,SP95,2015,5,143.33 +54,SP95,2015,6,144.19 +54,SP95,2015,7,143.59 +54,SP95,2015,8,137.72 +54,SP95,2015,9,130.36 +54,SP95,2015,10,128.97 +54,SP95,2015,11,129.43 +54,SP95,2015,12,126.92 +54,SP95,2016,1, +54,SP95,2016,2, +54,SP95,2016,3, +54,SP95,2016,4, +54,SP95,2016,5, +54,SP95,2016,6, +54,SP95,2016,7, +54,SP95,2016,8, +54,SP95,2016,9, +54,SP95,2016,10, +54,SP95,2016,11, +54,SP95,2016,12, +54,SP95,2017,1, +54,SP95,2017,2, +54,SP95,2017,3, +54,SP95,2017,4, +54,SP95,2017,5, +54,SP95,2017,6, +54,SP95,2017,7, +54,SP95,2017,8, +54,SP95,2017,9, +54,SP95,2017,10, +54,SP95,2017,11, +54,SP95,2017,12, +54,SP95,2018,1, +54,SP95,2018,2, +54,SP95,2018,3, +54,SP95,2018,4, +54,SP95,2018,5, +54,SP95,2018,6, +54,SP95,2018,7, +54,SP95,2018,8, +54,SP95,2018,9, +54,SP95,2018,10, +54,SP95,2018,11, +54,SP95,2018,12, +54,SP95,2019,1, +54,SP95,2019,2, +54,SP95,2019,3, +54,SP95,2019,4, +54,SP95,2019,5, +54,SP95,2019,6, +54,SP95,2019,7, +54,SP95,2019,8, +54,SP95,2019,9, +54,SP95,2019,10, +54,SP95,2019,11, +54,SP95,2019,12, +54,SP95,2020,1, +54,SP95,2020,2, +54,SP95,2020,3, +54,SP95,2020,4, +54,SP95,2020,5, +54,SP95,2020,6, +54,SP95,2020,7, +54,SP95,2020,8, +54,SP95,2020,9, +54,SP95,2020,10, +54,SP95,2020,11, +54,SP95,2020,12, +54,SP95,2021,1, +54,SP95,2021,2, +54,SP95,2021,3, +54,SP95,2021,4, +54,SP95,2021,5, +54,SP95,2021,6, +54,SP95,2021,7, +54,SP95,2021,8, +54,SP95,2021,9, +54,SP95,2021,10, +54,SP95,2021,11, +54,SP95,2021,12, +54,SP95,2022,1, +54,SP95,2022,2, +54,SP95,2022,3, +54,SP95,2022,4, +54,SP95,2022,5, +54,SP95,2022,6, +54,SP95,2022,7, +54,SP95,2022,8, +54,SP95,2022,9, +54,SP95,2022,10, +54,SP95,2022,11, +54,SP95,2022,12, +54,SP95,2023,1, +54,SP95,2023,2, +54,SP95,2023,3, +54,SP95,2023,4, +54,SP95,2023,5, +54,SP95,2023,6, +54,SP95,2023,7, +54,SP95,2023,8, +54,SP95,2023,9, +54,SP95,2023,10, +54,SP95,2023,11, +54,SP95,2023,12, +54,SP95,2024,1, +54,SP95,2024,2, +54,SP95,2024,3, +54,SP95,2024,4, +54,SP95,2024,5, +54,SP95,2024,6, +54,SP95,2024,7, +54,SP95,2024,8, +54,SP95,2024,9, +54,SP95,2024,10, +54,SP95,2024,11, +54,SP95,2024,12, +54,E85,2007,6,81.65 +54,E85,2007,7,82.6 +54,E85,2007,9,82.27 +54,E85,2007,11,82.11 +54,E85,2007,12,81.94 +54,E85,2007,1,78.0 +54,E85,2007,2,78.27 +54,E85,2007,3,79.25 +54,E85,2007,5,79.95 +54,E85,2007,8,82.72 +54,E85,2007,10,82.22 +54,E85,2007,4,79.45 +54,E85,2008,1,83.53 +54,E85,2008,2,82.77 +54,E85,2008,3,82.13 +54,E85,2008,4,82.79 +54,E85,2008,5,83.27 +54,E85,2008,6,83.64 +54,E85,2008,7,84.27 +54,E85,2008,8,84.9 +54,E85,2008,9,85.63 +54,E85,2008,11,85.46 +54,E85,2008,12,85.66 +54,E85,2008,10,85.57 +54,E85,2009,1,88.97 +54,E85,2009,3,91.96 +54,E85,2009,5,92.61 +54,E85,2009,6,93.34 +54,E85,2009,7,97.14 +54,E85,2009,8,100.53 +54,E85,2009,9,102.12 +54,E85,2009,10,103.45 +54,E85,2009,11,106.0 +54,E85,2009,12,106.23 +54,E85,2009,4,93.26 +54,E85,2009,2,90.59 +54,E85,2010,1,97.99 +54,E85,2010,2,101.04 +54,E85,2010,3,100.67 +54,E85,2010,4,104.43 +54,E85,2010,5,105.27 +54,E85,2010,6,109.07 +54,E85,2010,7,112.26 +54,E85,2010,8,113.35 +54,E85,2010,9,114.86 +54,E85,2010,11,116.18 +54,E85,2010,12,116.9 +54,E85,2010,10,116.79 +54,E85,2011,1,88.71 +54,E85,2011,2,93.41 +54,E85,2011,3,92.72 +54,E85,2011,4,92.4 +54,E85,2011,5,92.71 +54,E85,2011,6,92.65 +54,E85,2011,7,92.42 +54,E85,2011,8,92.07 +54,E85,2011,12,94.72 +54,E85,2011,9,91.98 +54,E85,2011,10,91.99 +54,E85,2011,11,92.11 +54,E85,2012,1,91.84 +54,E85,2012,5,95.22 +54,E85,2012,7,96.2 +54,E85,2012,8,96.68 +54,E85,2012,9,95.78 +54,E85,2012,10,96.75 +54,E85,2012,11,97.12 +54,E85,2012,12,96.55 +54,E85,2012,4,94.25 +54,E85,2012,2,94.13 +54,E85,2012,3,93.89 +54,E85,2012,6,96.28 +54,E85,2013,10,87.98 +54,E85,2013,11,87.87 +54,E85,2013,12,88.47 +54,E85,2013,1,94.56 +54,E85,2013,2,95.46 +54,E85,2013,3,95.61 +54,E85,2013,4,90.8 +54,E85,2013,5,86.56 +54,E85,2013,6,86.81 +54,E85,2013,7,86.81 +54,E85,2013,8,87.08 +54,E85,2013,9,87.0 +54,E85,2014,1,91.89 +54,E85,2014,2,92.26 +54,E85,2014,3,91.61 +54,E85,2014,4,91.62 +54,E85,2014,5,91.1 +54,E85,2014,6,90.1 +54,E85,2014,7,84.07 +54,E85,2014,8,82.35 +54,E85,2014,9,84.73 +54,E85,2014,10,85.67 +54,E85,2014,11,87.38 +54,E85,2014,12,91.98 +54,E85,2015,4,80.74 +54,E85,2015,2,80.58 +54,E85,2015,3,78.36 +54,E85,2015,5,80.0 +54,E85,2015,6,81.98 +54,E85,2015,7,81.51 +54,E85,2015,8,81.42 +54,E85,2015,9,81.56 +54,E85,2015,10,80.42 +54,E85,2015,11,79.93 +54,E85,2015,12,80.32 +54,E85,2015,1,83.02 +54,E85,2016,1, +54,E85,2016,2, +54,E85,2016,3, +54,E85,2016,4, +54,E85,2016,5, +54,E85,2016,6, +54,E85,2016,7, +54,E85,2016,8, +54,E85,2016,9, +54,E85,2016,10, +54,E85,2016,11, +54,E85,2016,12, +54,E85,2017,1, +54,E85,2017,2, +54,E85,2017,3, +54,E85,2017,4, +54,E85,2017,5, +54,E85,2017,6, +54,E85,2017,7, +54,E85,2017,8, +54,E85,2017,9, +54,E85,2017,10, +54,E85,2017,11, +54,E85,2017,12, +54,E85,2018,1, +54,E85,2018,2, +54,E85,2018,3, +54,E85,2018,4, +54,E85,2018,5, +54,E85,2018,6, +54,E85,2018,7, +54,E85,2018,8, +54,E85,2018,9, +54,E85,2018,10, +54,E85,2018,11, +54,E85,2018,12, +54,E85,2019,1, +54,E85,2019,2, +54,E85,2019,3, +54,E85,2019,4, +54,E85,2019,5, +54,E85,2019,6, +54,E85,2019,7, +54,E85,2019,8, +54,E85,2019,9, +54,E85,2019,10, +54,E85,2019,11, +54,E85,2019,12, +54,E85,2020,1, +54,E85,2020,2, +54,E85,2020,3, +54,E85,2020,4, +54,E85,2020,5, +54,E85,2020,6, +54,E85,2020,7, +54,E85,2020,8, +54,E85,2020,9, +54,E85,2020,10, +54,E85,2020,11, +54,E85,2020,12, +54,E85,2021,1, +54,E85,2021,2, +54,E85,2021,3, +54,E85,2021,4, +54,E85,2021,5, +54,E85,2021,6, +54,E85,2021,7, +54,E85,2021,8, +54,E85,2021,9, +54,E85,2021,10, +54,E85,2021,11, +54,E85,2021,12, +54,E85,2022,1, +54,E85,2022,2, +54,E85,2022,3, +54,E85,2022,4, +54,E85,2022,5, +54,E85,2022,6, +54,E85,2022,7, +54,E85,2022,8, +54,E85,2022,9, +54,E85,2022,10, +54,E85,2022,11, +54,E85,2022,12, +54,E85,2023,1, +54,E85,2023,2, +54,E85,2023,3, +54,E85,2023,4, +54,E85,2023,5, +54,E85,2023,6, +54,E85,2023,7, +54,E85,2023,8, +54,E85,2023,9, +54,E85,2023,10, +54,E85,2023,11, +54,E85,2023,12, +54,E85,2024,1, +54,E85,2024,2, +54,E85,2024,3, +54,E85,2024,4, +54,E85,2024,5, +54,E85,2024,6, +54,E85,2024,7, +54,E85,2024,8, +54,E85,2024,9, +54,E85,2024,10, +54,E85,2024,11, +54,E85,2024,12, +54,GPLc,2007,12,69.09 +54,GPLc,2007,11,69.77 +54,GPLc,2007,1, +54,GPLc,2007,2, +54,GPLc,2007,3, +54,GPLc,2007,4, +54,GPLc,2007,5, +54,GPLc,2007,6, +54,GPLc,2007,7, +54,GPLc,2007,8, +54,GPLc,2007,9, +54,GPLc,2007,10, +54,GPLc,2008,5,70.8 +54,GPLc,2008,7,72.67 +54,GPLc,2008,12,69.15 +54,GPLc,2008,2,70.04 +54,GPLc,2008,4,70.38 +54,GPLc,2008,11,73.04 +54,GPLc,2008,1,70.67 +54,GPLc,2008,3,70.12 +54,GPLc,2008,6,71.66 +54,GPLc,2008,8,73.64 +54,GPLc,2008,9,73.83 +54,GPLc,2008,10,74.1 +54,GPLc,2009,1,67.1 +54,GPLc,2009,7,61.54 +54,GPLc,2009,11,63.83 +54,GPLc,2009,3,64.77 +54,GPLc,2009,8,62.05 +54,GPLc,2009,9,62.99 +54,GPLc,2009,10,63.22 +54,GPLc,2009,12,64.73 +54,GPLc,2009,2,65.62 +54,GPLc,2009,4,62.54 +54,GPLc,2009,5,61.59 +54,GPLc,2009,6,61.49 +54,GPLc,2010,1,66.48 +54,GPLc,2010,2,66.96 +54,GPLc,2010,5,68.23 +54,GPLc,2010,7,69.8 +54,GPLc,2010,10,72.76 +54,GPLc,2010,11,74.15 +54,GPLc,2010,12,77.53 +54,GPLc,2010,4,67.06 +54,GPLc,2010,8,71.12 +54,GPLc,2010,9,72.18 +54,GPLc,2010,6,68.88 +54,GPLc,2010,3,67.1 +54,GPLc,2011,1,78.46 +54,GPLc,2011,6,81.42 +54,GPLc,2011,2,77.78 +54,GPLc,2011,7,81.38 +54,GPLc,2011,9,82.0 +54,GPLc,2011,11,81.91 +54,GPLc,2011,5,80.99 +54,GPLc,2011,3,78.73 +54,GPLc,2011,4,80.0 +54,GPLc,2011,8,81.58 +54,GPLc,2011,10,81.95 +54,GPLc,2011,12,81.75 +54,GPLc,2012,1,81.7 +54,GPLc,2012,4,86.22 +54,GPLc,2012,5,86.11 +54,GPLc,2012,7,83.31 +54,GPLc,2012,8,83.07 +54,GPLc,2012,2,82.86 +54,GPLc,2012,3,85.43 +54,GPLc,2012,6,85.38 +54,GPLc,2012,9,82.57 +54,GPLc,2012,10,84.32 +54,GPLc,2012,11,84.65 +54,GPLc,2012,12,84.55 +54,GPLc,2013,4,85.21 +54,GPLc,2013,6,83.65 +54,GPLc,2013,2,85.61 +54,GPLc,2013,8,83.01 +54,GPLc,2013,7,83.07 +54,GPLc,2013,9,83.21 +54,GPLc,2013,12,83.0 +54,GPLc,2013,1,85.62 +54,GPLc,2013,5,84.34 +54,GPLc,2013,3,85.6 +54,GPLc,2013,10,82.9 +54,GPLc,2013,11,82.83 +54,GPLc,2014,2,83.33 +54,GPLc,2014,10,82.47 +54,GPLc,2014,12,81.12 +54,GPLc,2014,6,83.14 +54,GPLc,2014,7,82.53 +54,GPLc,2014,8,82.3 +54,GPLc,2014,9,82.32 +54,GPLc,2014,4,83.12 +54,GPLc,2014,1,83.56 +54,GPLc,2014,3,83.18 +54,GPLc,2014,5,83.17 +54,GPLc,2014,11,82.22 +54,GPLc,2015,1,78.89 +54,GPLc,2015,2,78.36 +54,GPLc,2015,3,78.18 +54,GPLc,2015,4,78.26 +54,GPLc,2015,5,78.3 +54,GPLc,2015,7,76.5 +54,GPLc,2015,10,74.67 +54,GPLc,2015,12,73.4 +54,GPLc,2015,8,76.12 +54,GPLc,2015,11,74.32 +54,GPLc,2015,6,77.48 +54,GPLc,2015,9,75.41 +54,GPLc,2016,1, +54,GPLc,2016,2, +54,GPLc,2016,3, +54,GPLc,2016,4, +54,GPLc,2016,5, +54,GPLc,2016,6, +54,GPLc,2016,7, +54,GPLc,2016,8, +54,GPLc,2016,9, +54,GPLc,2016,10, +54,GPLc,2016,11, +54,GPLc,2016,12, +54,GPLc,2017,1, +54,GPLc,2017,2, +54,GPLc,2017,3, +54,GPLc,2017,4, +54,GPLc,2017,5, +54,GPLc,2017,6, +54,GPLc,2017,7, +54,GPLc,2017,8, +54,GPLc,2017,9, +54,GPLc,2017,10, +54,GPLc,2017,11, +54,GPLc,2017,12, +54,GPLc,2018,1, +54,GPLc,2018,2, +54,GPLc,2018,3, +54,GPLc,2018,4, +54,GPLc,2018,5, +54,GPLc,2018,6, +54,GPLc,2018,7, +54,GPLc,2018,8, +54,GPLc,2018,9, +54,GPLc,2018,10, +54,GPLc,2018,11, +54,GPLc,2018,12, +54,GPLc,2019,1, +54,GPLc,2019,2, +54,GPLc,2019,3, +54,GPLc,2019,4, +54,GPLc,2019,5, +54,GPLc,2019,6, +54,GPLc,2019,7, +54,GPLc,2019,8, +54,GPLc,2019,9, +54,GPLc,2019,10, +54,GPLc,2019,11, +54,GPLc,2019,12, +54,GPLc,2020,1, +54,GPLc,2020,2, +54,GPLc,2020,3, +54,GPLc,2020,4, +54,GPLc,2020,5, +54,GPLc,2020,6, +54,GPLc,2020,7, +54,GPLc,2020,8, +54,GPLc,2020,9, +54,GPLc,2020,10, +54,GPLc,2020,11, +54,GPLc,2020,12, +54,GPLc,2021,1, +54,GPLc,2021,2, +54,GPLc,2021,3, +54,GPLc,2021,4, +54,GPLc,2021,5, +54,GPLc,2021,6, +54,GPLc,2021,7, +54,GPLc,2021,8, +54,GPLc,2021,9, +54,GPLc,2021,10, +54,GPLc,2021,11, +54,GPLc,2021,12, +54,GPLc,2022,1, +54,GPLc,2022,2, +54,GPLc,2022,3, +54,GPLc,2022,4, +54,GPLc,2022,5, +54,GPLc,2022,6, +54,GPLc,2022,7, +54,GPLc,2022,8, +54,GPLc,2022,9, +54,GPLc,2022,10, +54,GPLc,2022,11, +54,GPLc,2022,12, +54,GPLc,2023,1, +54,GPLc,2023,2, +54,GPLc,2023,3, +54,GPLc,2023,4, +54,GPLc,2023,5, +54,GPLc,2023,6, +54,GPLc,2023,7, +54,GPLc,2023,8, +54,GPLc,2023,9, +54,GPLc,2023,10, +54,GPLc,2023,11, +54,GPLc,2023,12, +54,GPLc,2024,1, +54,GPLc,2024,2, +54,GPLc,2024,3, +54,GPLc,2024,4, +54,GPLc,2024,5, +54,GPLc,2024,6, +54,GPLc,2024,7, +54,GPLc,2024,8, +54,GPLc,2024,9, +54,GPLc,2024,10, +54,GPLc,2024,11, +54,GPLc,2024,12, +54,E10,2009,12,127.12 +54,E10,2009,10,124.95 +54,E10,2009,11,127.87 +54,E10,2009,9,124.58 +54,E10,2009,4,118.55 +54,E10,2009,5,121.66 +54,E10,2009,6,127.67 +54,E10,2009,7,126.86 +54,E10,2009,8,127.94 +54,E10,2009,1, +54,E10,2009,2, +54,E10,2009,3, +54,E10,2010,1,130.19 +54,E10,2010,2,131.27 +54,E10,2010,3,135.93 +54,E10,2010,4,138.82 +54,E10,2010,5,139.46 +54,E10,2010,6,138.03 +54,E10,2010,7,136.06 +54,E10,2010,8,134.9 +54,E10,2010,9,135.06 +54,E10,2010,10,135.58 +54,E10,2010,11,136.84 +54,E10,2010,12,141.17 +54,E10,2011,10,149.37 +54,E10,2011,11,148.34 +54,E10,2011,12,147.83 +54,E10,2011,1,145.8 +54,E10,2011,2,145.97 +54,E10,2011,3,149.94 +54,E10,2011,4,152.75 +54,E10,2011,5,153.27 +54,E10,2011,6,150.62 +54,E10,2011,7,150.27 +54,E10,2011,8,149.38 +54,E10,2011,9,151.64 +54,E10,2012,1,153.12 +54,E10,2012,2,156.08 +54,E10,2012,3,160.61 +54,E10,2012,4,162.22 +54,E10,2012,5,156.51 +54,E10,2012,6,151.41 +54,E10,2012,7,151.95 +54,E10,2012,8,156.54 +54,E10,2012,9,152.94 +54,E10,2012,10,150.39 +54,E10,2012,11,145.18 +54,E10,2012,12,145.78 +54,E10,2013,1,150.53 +54,E10,2013,2,156.39 +54,E10,2013,3,156.0 +54,E10,2013,4,153.44 +54,E10,2013,5,150.32 +54,E10,2013,6,150.34 +54,E10,2013,7,151.5 +54,E10,2013,8,152.3 +54,E10,2013,9,151.14 +54,E10,2013,10,146.56 +54,E10,2013,11,145.44 +54,E10,2013,12,146.58 +54,E10,2014,1,145.66 +54,E10,2014,2,146.06 +54,E10,2014,3,146.13 +54,E10,2014,4,147.43 +54,E10,2014,5,148.04 +54,E10,2014,6,149.44 +54,E10,2014,7,149.15 +54,E10,2014,8,146.13 +54,E10,2014,9,145.83 +54,E10,2014,10,143.06 +54,E10,2014,11,139.07 +54,E10,2014,12,129.78 +54,E10,2015,3,134.58 +54,E10,2015,4,137.04 +54,E10,2015,5,140.02 +54,E10,2015,6,140.73 +54,E10,2015,7,139.89 +54,E10,2015,8,133.91 +54,E10,2015,9,126.79 +54,E10,2015,10,125.31 +54,E10,2015,11,125.71 +54,E10,2015,12,123.02 +54,E10,2015,2,129.0 +54,E10,2015,1,122.95 +54,E10,2016,1, +54,E10,2016,2, +54,E10,2016,3, +54,E10,2016,4, +54,E10,2016,5, +54,E10,2016,6, +54,E10,2016,7, +54,E10,2016,8, +54,E10,2016,9, +54,E10,2016,10, +54,E10,2016,11, +54,E10,2016,12, +54,E10,2017,1, +54,E10,2017,2, +54,E10,2017,3, +54,E10,2017,4, +54,E10,2017,5, +54,E10,2017,6, +54,E10,2017,7, +54,E10,2017,8, +54,E10,2017,9, +54,E10,2017,10, +54,E10,2017,11, +54,E10,2017,12, +54,E10,2018,1, +54,E10,2018,2, +54,E10,2018,3, +54,E10,2018,4, +54,E10,2018,5, +54,E10,2018,6, +54,E10,2018,7, +54,E10,2018,8, +54,E10,2018,9, +54,E10,2018,10, +54,E10,2018,11, +54,E10,2018,12, +54,E10,2019,1, +54,E10,2019,2, +54,E10,2019,3, +54,E10,2019,4, +54,E10,2019,5, +54,E10,2019,6, +54,E10,2019,7, +54,E10,2019,8, +54,E10,2019,9, +54,E10,2019,10, +54,E10,2019,11, +54,E10,2019,12, +54,E10,2020,1, +54,E10,2020,2, +54,E10,2020,3, +54,E10,2020,4, +54,E10,2020,5, +54,E10,2020,6, +54,E10,2020,7, +54,E10,2020,8, +54,E10,2020,9, +54,E10,2020,10, +54,E10,2020,11, +54,E10,2020,12, +54,E10,2021,1, +54,E10,2021,2, +54,E10,2021,3, +54,E10,2021,4, +54,E10,2021,5, +54,E10,2021,6, +54,E10,2021,7, +54,E10,2021,8, +54,E10,2021,9, +54,E10,2021,10, +54,E10,2021,11, +54,E10,2021,12, +54,E10,2022,1, +54,E10,2022,2, +54,E10,2022,3, +54,E10,2022,4, +54,E10,2022,5, +54,E10,2022,6, +54,E10,2022,7, +54,E10,2022,8, +54,E10,2022,9, +54,E10,2022,10, +54,E10,2022,11, +54,E10,2022,12, +54,E10,2023,1, +54,E10,2023,2, +54,E10,2023,3, +54,E10,2023,4, +54,E10,2023,5, +54,E10,2023,6, +54,E10,2023,7, +54,E10,2023,8, +54,E10,2023,9, +54,E10,2023,10, +54,E10,2023,11, +54,E10,2023,12, +54,E10,2024,1, +54,E10,2024,2, +54,E10,2024,3, +54,E10,2024,4, +54,E10,2024,5, +54,E10,2024,6, +54,E10,2024,7, +54,E10,2024,8, +54,E10,2024,9, +54,E10,2024,10, +54,E10,2024,11, +54,E10,2024,12, +54,SP98,2013,6,154.32 +54,SP98,2013,7,157.12 +54,SP98,2013,8,158.0 +54,SP98,2013,9,157.0 +54,SP98,2013,10,152.18 +54,SP98,2013,11,150.88 +54,SP98,2013,12,152.39 +54,SP98,2013,1, +54,SP98,2013,2, +54,SP98,2013,3, +54,SP98,2013,4, +54,SP98,2013,5, +54,SP98,2014,1,152.5 +54,SP98,2014,2,152.76 +54,SP98,2014,3,152.56 +54,SP98,2014,4,153.78 +54,SP98,2014,5,154.41 +54,SP98,2014,6,155.8 +54,SP98,2014,7,155.79 +54,SP98,2014,8,152.62 +54,SP98,2014,9,152.18 +54,SP98,2014,10,149.5 +54,SP98,2014,11,145.58 +54,SP98,2014,12,136.68 +54,SP98,2015,1,129.68 +54,SP98,2015,2,135.2 +54,SP98,2015,3,141.03 +54,SP98,2015,4,143.95 +54,SP98,2015,5,146.78 +54,SP98,2015,6,147.67 +54,SP98,2015,7,147.27 +54,SP98,2015,8,141.89 +54,SP98,2015,9,134.29 +54,SP98,2015,10,132.81 +54,SP98,2015,11,133.19 +54,SP98,2015,12,130.79 +54,SP98,2016,1, +54,SP98,2016,2, +54,SP98,2016,3, +54,SP98,2016,4, +54,SP98,2016,5, +54,SP98,2016,6, +54,SP98,2016,7, +54,SP98,2016,8, +54,SP98,2016,9, +54,SP98,2016,10, +54,SP98,2016,11, +54,SP98,2016,12, +54,SP98,2017,1, +54,SP98,2017,2, +54,SP98,2017,3, +54,SP98,2017,4, +54,SP98,2017,5, +54,SP98,2017,6, +54,SP98,2017,7, +54,SP98,2017,8, +54,SP98,2017,9, +54,SP98,2017,10, +54,SP98,2017,11, +54,SP98,2017,12, +54,SP98,2018,1, +54,SP98,2018,2, +54,SP98,2018,3, +54,SP98,2018,4, +54,SP98,2018,5, +54,SP98,2018,6, +54,SP98,2018,7, +54,SP98,2018,8, +54,SP98,2018,9, +54,SP98,2018,10, +54,SP98,2018,11, +54,SP98,2018,12, +54,SP98,2019,1, +54,SP98,2019,2, +54,SP98,2019,3, +54,SP98,2019,4, +54,SP98,2019,5, +54,SP98,2019,6, +54,SP98,2019,7, +54,SP98,2019,8, +54,SP98,2019,9, +54,SP98,2019,10, +54,SP98,2019,11, +54,SP98,2019,12, +54,SP98,2020,1, +54,SP98,2020,2, +54,SP98,2020,3, +54,SP98,2020,4, +54,SP98,2020,5, +54,SP98,2020,6, +54,SP98,2020,7, +54,SP98,2020,8, +54,SP98,2020,9, +54,SP98,2020,10, +54,SP98,2020,11, +54,SP98,2020,12, +54,SP98,2021,1, +54,SP98,2021,2, +54,SP98,2021,3, +54,SP98,2021,4, +54,SP98,2021,5, +54,SP98,2021,6, +54,SP98,2021,7, +54,SP98,2021,8, +54,SP98,2021,9, +54,SP98,2021,10, +54,SP98,2021,11, +54,SP98,2021,12, +54,SP98,2022,1, +54,SP98,2022,2, +54,SP98,2022,3, +54,SP98,2022,4, +54,SP98,2022,5, +54,SP98,2022,6, +54,SP98,2022,7, +54,SP98,2022,8, +54,SP98,2022,9, +54,SP98,2022,10, +54,SP98,2022,11, +54,SP98,2022,12, +54,SP98,2023,1, +54,SP98,2023,2, +54,SP98,2023,3, +54,SP98,2023,4, +54,SP98,2023,5, +54,SP98,2023,6, +54,SP98,2023,7, +54,SP98,2023,8, +54,SP98,2023,9, +54,SP98,2023,10, +54,SP98,2023,11, +54,SP98,2023,12, +54,SP98,2024,1, +54,SP98,2024,2, +54,SP98,2024,3, +54,SP98,2024,4, +54,SP98,2024,5, +54,SP98,2024,6, +54,SP98,2024,7, +54,SP98,2024,8, +54,SP98,2024,9, +54,SP98,2024,10, +54,SP98,2024,11, +54,SP98,2024,12, +74,Gazole,2007,2,104.05 +74,Gazole,2007,3,105.72 +74,Gazole,2007,4,108.14 +74,Gazole,2007,5,108.4 +74,Gazole,2007,6,109.55 +74,Gazole,2007,7,110.85 +74,Gazole,2007,8,110.93 +74,Gazole,2007,9,112.6 +74,Gazole,2007,10,114.49 +74,Gazole,2007,11,122.57 +74,Gazole,2007,12,122.46 +74,Gazole,2007,1,103.32 +74,Gazole,2008,1,121.55 +74,Gazole,2008,2,122.06 +74,Gazole,2008,3,127.8 +74,Gazole,2008,4,130.51 +74,Gazole,2008,5,140.79 +74,Gazole,2008,6,145.96 +74,Gazole,2008,7,144.87 +74,Gazole,2008,8,135.93 +74,Gazole,2008,9,132.7 +74,Gazole,2008,10,124.67 +74,Gazole,2008,11,114.48 +74,Gazole,2008,12,102.57 +74,Gazole,2009,1,99.37 +74,Gazole,2009,2,98.49 +74,Gazole,2009,3,96.01 +74,Gazole,2009,4,98.7 +74,Gazole,2009,5,98.86 +74,Gazole,2009,6,103.32 +74,Gazole,2009,7,101.74 +74,Gazole,2009,8,104.98 +74,Gazole,2009,9,103.26 +74,Gazole,2009,10,103.81 +74,Gazole,2009,11,106.18 +74,Gazole,2009,12,105.5 +74,Gazole,2010,1,109.65 +74,Gazole,2010,2,109.84 +74,Gazole,2010,3,113.61 +74,Gazole,2010,4,117.12 +74,Gazole,2010,5,118.69 +74,Gazole,2010,6,118.28 +74,Gazole,2010,7,116.43 +74,Gazole,2010,8,116.14 +74,Gazole,2010,9,116.69 +74,Gazole,2010,10,118.64 +74,Gazole,2010,11,119.94 +74,Gazole,2010,12,123.67 +74,Gazole,2011,1,130.25 +74,Gazole,2011,2,133.24 +74,Gazole,2011,3,138.84 +74,Gazole,2011,4,139.43 +74,Gazole,2011,5,135.75 +74,Gazole,2011,6,134.9 +74,Gazole,2011,7,135.57 +74,Gazole,2011,8,134.44 +74,Gazole,2011,9,135.99 +74,Gazole,2011,10,137.42 +74,Gazole,2011,11,141.02 +74,Gazole,2011,12,140.5 +74,Gazole,2012,1,143.47 +74,Gazole,2012,2,144.74 +74,Gazole,2012,3,147.42 +74,Gazole,2012,4,146.38 +74,Gazole,2012,5,143.61 +74,Gazole,2012,6,137.93 +74,Gazole,2012,7,139.86 +74,Gazole,2012,8,145.82 +74,Gazole,2012,9,142.28 +74,Gazole,2012,10,142.46 +74,Gazole,2012,11,140.49 +74,Gazole,2012,12,139.04 +74,Gazole,2013,1,140.01 +74,Gazole,2013,2,143.43 +74,Gazole,2013,3,142.5 +74,Gazole,2013,4,138.76 +74,Gazole,2013,5,136.23 +74,Gazole,2013,6,135.97 +74,Gazole,2013,7,137.43 +74,Gazole,2013,8,138.09 +74,Gazole,2013,9,139.76 +74,Gazole,2013,10,136.48 +74,Gazole,2013,11,135.2 +74,Gazole,2013,12,136.63 +74,Gazole,2014,1,135.09 +74,Gazole,2014,2,135.63 +74,Gazole,2014,3,134.39 +74,Gazole,2014,4,133.93 +74,Gazole,2014,5,133.88 +74,Gazole,2014,6,134.01 +74,Gazole,2014,7,133.56 +74,Gazole,2014,8,133.08 +74,Gazole,2014,9,132.54 +74,Gazole,2014,10,129.86 +74,Gazole,2014,11,127.29 +74,Gazole,2014,12,117.9 +74,Gazole,2015,1,114.26 +74,Gazole,2015,2,120.2 +74,Gazole,2015,3,123.97 +74,Gazole,2015,4,123.47 +74,Gazole,2015,5,126.29 +74,Gazole,2015,6,124.63 +74,Gazole,2015,7,121.24 +74,Gazole,2015,8,115.44 +74,Gazole,2015,9,113.58 +74,Gazole,2015,10,113.46 +74,Gazole,2015,11,113.15 +74,Gazole,2015,12,106.54 +74,Gazole,2016,1, +74,Gazole,2016,2, +74,Gazole,2016,3, +74,Gazole,2016,4, +74,Gazole,2016,5, +74,Gazole,2016,6, +74,Gazole,2016,7, +74,Gazole,2016,8, +74,Gazole,2016,9, +74,Gazole,2016,10, +74,Gazole,2016,11, +74,Gazole,2016,12, +74,Gazole,2017,1, +74,Gazole,2017,2, +74,Gazole,2017,3, +74,Gazole,2017,4, +74,Gazole,2017,5, +74,Gazole,2017,6, +74,Gazole,2017,7, +74,Gazole,2017,8, +74,Gazole,2017,9, +74,Gazole,2017,10, +74,Gazole,2017,11, +74,Gazole,2017,12, +74,Gazole,2018,1, +74,Gazole,2018,2, +74,Gazole,2018,3, +74,Gazole,2018,4, +74,Gazole,2018,5, +74,Gazole,2018,6, +74,Gazole,2018,7, +74,Gazole,2018,8, +74,Gazole,2018,9, +74,Gazole,2018,10, +74,Gazole,2018,11, +74,Gazole,2018,12, +74,Gazole,2019,1, +74,Gazole,2019,2, +74,Gazole,2019,3, +74,Gazole,2019,4, +74,Gazole,2019,5, +74,Gazole,2019,6, +74,Gazole,2019,7, +74,Gazole,2019,8, +74,Gazole,2019,9, +74,Gazole,2019,10, +74,Gazole,2019,11, +74,Gazole,2019,12, +74,Gazole,2020,1, +74,Gazole,2020,2, +74,Gazole,2020,3, +74,Gazole,2020,4, +74,Gazole,2020,5, +74,Gazole,2020,6, +74,Gazole,2020,7, +74,Gazole,2020,8, +74,Gazole,2020,9, +74,Gazole,2020,10, +74,Gazole,2020,11, +74,Gazole,2020,12, +74,Gazole,2021,1, +74,Gazole,2021,2, +74,Gazole,2021,3, +74,Gazole,2021,4, +74,Gazole,2021,5, +74,Gazole,2021,6, +74,Gazole,2021,7, +74,Gazole,2021,8, +74,Gazole,2021,9, +74,Gazole,2021,10, +74,Gazole,2021,11, +74,Gazole,2021,12, +74,Gazole,2022,1, +74,Gazole,2022,2, +74,Gazole,2022,3, +74,Gazole,2022,4, +74,Gazole,2022,5, +74,Gazole,2022,6, +74,Gazole,2022,7, +74,Gazole,2022,8, +74,Gazole,2022,9, +74,Gazole,2022,10, +74,Gazole,2022,11, +74,Gazole,2022,12, +74,Gazole,2023,1, +74,Gazole,2023,2, +74,Gazole,2023,3, +74,Gazole,2023,4, +74,Gazole,2023,5, +74,Gazole,2023,6, +74,Gazole,2023,7, +74,Gazole,2023,8, +74,Gazole,2023,9, +74,Gazole,2023,10, +74,Gazole,2023,11, +74,Gazole,2023,12, +74,Gazole,2024,1, +74,Gazole,2024,2, +74,Gazole,2024,3, +74,Gazole,2024,4, +74,Gazole,2024,5, +74,Gazole,2024,6, +74,Gazole,2024,7, +74,Gazole,2024,8, +74,Gazole,2024,9, +74,Gazole,2024,10, +74,Gazole,2024,11, +74,Gazole,2024,12, +74,SP95,2007,2,122.4 +74,SP95,2007,3,126.99 +74,SP95,2007,4,131.36 +74,SP95,2007,5,135.24 +74,SP95,2007,6,135.32 +74,SP95,2007,7,134.9 +74,SP95,2007,8,131.49 +74,SP95,2007,9,132.06 +74,SP95,2007,10,131.87 +74,SP95,2007,11,137.73 +74,SP95,2007,12,136.69 +74,SP95,2007,1,121.28 +74,SP95,2008,1,138.49 +74,SP95,2008,2,138.49 +74,SP95,2008,3,140.36 +74,SP95,2008,4,141.86 +74,SP95,2008,5,147.27 +74,SP95,2008,6,152.21 +74,SP95,2008,7,150.95 +74,SP95,2008,8,145.3 +74,SP95,2008,9,144.76 +74,SP95,2008,10,135.06 +74,SP95,2008,11,122.16 +74,SP95,2008,12,112.99 +74,SP95,2009,1,112.5 +74,SP95,2009,2,116.89 +74,SP95,2009,3,117.16 +74,SP95,2009,4,120.16 +74,SP95,2009,5,123.85 +74,SP95,2009,6,129.8 +74,SP95,2009,7,126.31 +74,SP95,2009,8,129.55 +74,SP95,2009,9,126.89 +74,SP95,2009,10,125.92 +74,SP95,2009,11,129.13 +74,SP95,2009,12,128.55 +74,SP95,2010,1,132.47 +74,SP95,2010,2,133.66 +74,SP95,2010,3,138.07 +74,SP95,2010,4,140.11 +74,SP95,2010,5,140.47 +74,SP95,2010,6,139.05 +74,SP95,2010,7,136.92 +74,SP95,2010,8,136.07 +74,SP95,2010,9,136.09 +74,SP95,2010,10,137.48 +74,SP95,2010,11,139.14 +74,SP95,2010,12,143.79 +74,SP95,2011,1,149.13 +74,SP95,2011,2,149.8 +74,SP95,2011,3,154.25 +74,SP95,2011,4,156.62 +74,SP95,2011,5,156.92 +74,SP95,2011,6,154.06 +74,SP95,2011,7,154.19 +74,SP95,2011,8,153.23 +74,SP95,2011,9,155.38 +74,SP95,2011,10,153.69 +74,SP95,2011,11,152.7 +74,SP95,2011,12,152.77 +74,SP95,2012,1,158.78 +74,SP95,2012,2,162.23 +74,SP95,2012,3,167.23 +74,SP95,2012,4,168.85 +74,SP95,2012,5,163.36 +74,SP95,2012,6,158.84 +74,SP95,2012,7,159.93 +74,SP95,2012,8,165.03 +74,SP95,2012,9,162.27 +74,SP95,2012,10,160.26 +74,SP95,2012,11,155.3 +74,SP95,2012,12,155.34 +74,SP95,2013,1,157.71 +74,SP95,2013,2,163.24 +74,SP95,2013,3,163.13 +74,SP95,2013,4,160.34 +74,SP95,2013,5,157.29 +74,SP95,2013,6,157.48 +74,SP95,2013,7,158.29 +74,SP95,2013,8,158.98 +74,SP95,2013,9,158.06 +74,SP95,2013,10,153.31 +74,SP95,2013,11,152.31 +74,SP95,2013,12,153.85 +74,SP95,2014,1,152.97 +74,SP95,2014,2,154.11 +74,SP95,2014,3,154.23 +74,SP95,2014,4,155.24 +74,SP95,2014,5,156.0 +74,SP95,2014,6,157.23 +74,SP95,2014,7,157.29 +74,SP95,2014,8,154.6 +74,SP95,2014,9,153.98 +74,SP95,2014,10,151.42 +74,SP95,2014,11,147.36 +74,SP95,2014,12,138.48 +74,SP95,2015,1,130.51 +74,SP95,2015,2,136.3 +74,SP95,2015,3,141.9 +74,SP95,2015,4,144.43 +74,SP95,2015,5,147.09 +74,SP95,2015,6,147.85 +74,SP95,2015,7,147.46 +74,SP95,2015,8,141.75 +74,SP95,2015,9,134.45 +74,SP95,2015,10,133.39 +74,SP95,2015,11,133.54 +74,SP95,2015,12,131.12 +74,SP95,2016,1, +74,SP95,2016,2, +74,SP95,2016,3, +74,SP95,2016,4, +74,SP95,2016,5, +74,SP95,2016,6, +74,SP95,2016,7, +74,SP95,2016,8, +74,SP95,2016,9, +74,SP95,2016,10, +74,SP95,2016,11, +74,SP95,2016,12, +74,SP95,2017,1, +74,SP95,2017,2, +74,SP95,2017,3, +74,SP95,2017,4, +74,SP95,2017,5, +74,SP95,2017,6, +74,SP95,2017,7, +74,SP95,2017,8, +74,SP95,2017,9, +74,SP95,2017,10, +74,SP95,2017,11, +74,SP95,2017,12, +74,SP95,2018,1, +74,SP95,2018,2, +74,SP95,2018,3, +74,SP95,2018,4, +74,SP95,2018,5, +74,SP95,2018,6, +74,SP95,2018,7, +74,SP95,2018,8, +74,SP95,2018,9, +74,SP95,2018,10, +74,SP95,2018,11, +74,SP95,2018,12, +74,SP95,2019,1, +74,SP95,2019,2, +74,SP95,2019,3, +74,SP95,2019,4, +74,SP95,2019,5, +74,SP95,2019,6, +74,SP95,2019,7, +74,SP95,2019,8, +74,SP95,2019,9, +74,SP95,2019,10, +74,SP95,2019,11, +74,SP95,2019,12, +74,SP95,2020,1, +74,SP95,2020,2, +74,SP95,2020,3, +74,SP95,2020,4, +74,SP95,2020,5, +74,SP95,2020,6, +74,SP95,2020,7, +74,SP95,2020,8, +74,SP95,2020,9, +74,SP95,2020,10, +74,SP95,2020,11, +74,SP95,2020,12, +74,SP95,2021,1, +74,SP95,2021,2, +74,SP95,2021,3, +74,SP95,2021,4, +74,SP95,2021,5, +74,SP95,2021,6, +74,SP95,2021,7, +74,SP95,2021,8, +74,SP95,2021,9, +74,SP95,2021,10, +74,SP95,2021,11, +74,SP95,2021,12, +74,SP95,2022,1, +74,SP95,2022,2, +74,SP95,2022,3, +74,SP95,2022,4, +74,SP95,2022,5, +74,SP95,2022,6, +74,SP95,2022,7, +74,SP95,2022,8, +74,SP95,2022,9, +74,SP95,2022,10, +74,SP95,2022,11, +74,SP95,2022,12, +74,SP95,2023,1, +74,SP95,2023,2, +74,SP95,2023,3, +74,SP95,2023,4, +74,SP95,2023,5, +74,SP95,2023,6, +74,SP95,2023,7, +74,SP95,2023,8, +74,SP95,2023,9, +74,SP95,2023,10, +74,SP95,2023,11, +74,SP95,2023,12, +74,SP95,2024,1, +74,SP95,2024,2, +74,SP95,2024,3, +74,SP95,2024,4, +74,SP95,2024,5, +74,SP95,2024,6, +74,SP95,2024,7, +74,SP95,2024,8, +74,SP95,2024,9, +74,SP95,2024,10, +74,SP95,2024,11, +74,SP95,2024,12, +74,GPLc,2007,12,73.87 +74,GPLc,2007,11,73.47 +74,GPLc,2007,1, +74,GPLc,2007,2, +74,GPLc,2007,3, +74,GPLc,2007,4, +74,GPLc,2007,5, +74,GPLc,2007,6, +74,GPLc,2007,7, +74,GPLc,2007,8, +74,GPLc,2007,9, +74,GPLc,2007,10, +74,GPLc,2008,5,76.52 +74,GPLc,2008,6,77.68 +74,GPLc,2008,7,78.34 +74,GPLc,2008,8,79.21 +74,GPLc,2008,10,79.15 +74,GPLc,2008,11,78.11 +74,GPLc,2008,12,74.12 +74,GPLc,2008,1,79.7 +74,GPLc,2008,2,76.92 +74,GPLc,2008,4,75.78 +74,GPLc,2008,3,76.58 +74,GPLc,2008,9,79.49 +74,GPLc,2009,2,66.9 +74,GPLc,2009,5,65.35 +74,GPLc,2009,9,65.81 +74,GPLc,2009,3,67.43 +74,GPLc,2009,4,66.15 +74,GPLc,2009,6,65.2 +74,GPLc,2009,8,65.22 +74,GPLc,2009,10,65.38 +74,GPLc,2009,1,68.5 +74,GPLc,2009,12,68.27 +74,GPLc,2009,7,64.83 +74,GPLc,2009,11,66.32 +74,GPLc,2010,9,73.21 +74,GPLc,2010,10,74.05 +74,GPLc,2010,11,74.95 +74,GPLc,2010,12,78.25 +74,GPLc,2010,5,71.65 +74,GPLc,2010,6,72.04 +74,GPLc,2010,1,71.6 +74,GPLc,2010,4,70.88 +74,GPLc,2010,7,72.34 +74,GPLc,2010,8,72.48 +74,GPLc,2010,2,71.6 +74,GPLc,2010,3,70.85 +74,GPLc,2011,1,82.29 +74,GPLc,2011,2,79.81 +74,GPLc,2011,3,81.62 +74,GPLc,2011,4,82.01 +74,GPLc,2011,5,82.32 +74,GPLc,2011,6,82.85 +74,GPLc,2011,7,85.81 +74,GPLc,2011,8,87.99 +74,GPLc,2011,9,88.12 +74,GPLc,2011,10,88.01 +74,GPLc,2011,11,87.84 +74,GPLc,2011,12,87.81 +74,GPLc,2012,1,87.61 +74,GPLc,2012,2,86.04 +74,GPLc,2012,3,87.96 +74,GPLc,2012,4,88.55 +74,GPLc,2012,5,88.24 +74,GPLc,2012,6,87.93 +74,GPLc,2012,7,86.77 +74,GPLc,2012,8,86.22 +74,GPLc,2012,9,86.02 +74,GPLc,2012,10,87.25 +74,GPLc,2012,11,87.89 +74,GPLc,2012,12,88.08 +74,GPLc,2013,1,87.85 +74,GPLc,2013,2,88.23 +74,GPLc,2013,3,88.72 +74,GPLc,2013,4,88.63 +74,GPLc,2013,5,87.9 +74,GPLc,2013,6,87.53 +74,GPLc,2013,7,86.71 +74,GPLc,2013,8,85.42 +74,GPLc,2013,9,86.29 +74,GPLc,2013,10,85.91 +74,GPLc,2013,11,85.92 +74,GPLc,2013,12,86.36 +74,GPLc,2014,1,87.12 +74,GPLc,2014,2,88.09 +74,GPLc,2014,3,88.36 +74,GPLc,2014,4,88.3 +74,GPLc,2014,5,88.24 +74,GPLc,2014,6,87.95 +74,GPLc,2014,7,88.05 +74,GPLc,2014,8,88.02 +74,GPLc,2014,9,88.06 +74,GPLc,2014,11,87.64 +74,GPLc,2014,12,86.62 +74,GPLc,2014,10,87.93 +74,GPLc,2015,2,82.87 +74,GPLc,2015,3,81.3 +74,GPLc,2015,4,81.69 +74,GPLc,2015,5,82.48 +74,GPLc,2015,6,82.76 +74,GPLc,2015,7,82.99 +74,GPLc,2015,8,82.96 +74,GPLc,2015,9,81.36 +74,GPLc,2015,10,80.39 +74,GPLc,2015,11,79.88 +74,GPLc,2015,12,79.59 +74,GPLc,2015,1,84.91 +74,GPLc,2016,1, +74,GPLc,2016,2, +74,GPLc,2016,3, +74,GPLc,2016,4, +74,GPLc,2016,5, +74,GPLc,2016,6, +74,GPLc,2016,7, +74,GPLc,2016,8, +74,GPLc,2016,9, +74,GPLc,2016,10, +74,GPLc,2016,11, +74,GPLc,2016,12, +74,GPLc,2017,1, +74,GPLc,2017,2, +74,GPLc,2017,3, +74,GPLc,2017,4, +74,GPLc,2017,5, +74,GPLc,2017,6, +74,GPLc,2017,7, +74,GPLc,2017,8, +74,GPLc,2017,9, +74,GPLc,2017,10, +74,GPLc,2017,11, +74,GPLc,2017,12, +74,GPLc,2018,1, +74,GPLc,2018,2, +74,GPLc,2018,3, +74,GPLc,2018,4, +74,GPLc,2018,5, +74,GPLc,2018,6, +74,GPLc,2018,7, +74,GPLc,2018,8, +74,GPLc,2018,9, +74,GPLc,2018,10, +74,GPLc,2018,11, +74,GPLc,2018,12, +74,GPLc,2019,1, +74,GPLc,2019,2, +74,GPLc,2019,3, +74,GPLc,2019,4, +74,GPLc,2019,5, +74,GPLc,2019,6, +74,GPLc,2019,7, +74,GPLc,2019,8, +74,GPLc,2019,9, +74,GPLc,2019,10, +74,GPLc,2019,11, +74,GPLc,2019,12, +74,GPLc,2020,1, +74,GPLc,2020,2, +74,GPLc,2020,3, +74,GPLc,2020,4, +74,GPLc,2020,5, +74,GPLc,2020,6, +74,GPLc,2020,7, +74,GPLc,2020,8, +74,GPLc,2020,9, +74,GPLc,2020,10, +74,GPLc,2020,11, +74,GPLc,2020,12, +74,GPLc,2021,1, +74,GPLc,2021,2, +74,GPLc,2021,3, +74,GPLc,2021,4, +74,GPLc,2021,5, +74,GPLc,2021,6, +74,GPLc,2021,7, +74,GPLc,2021,8, +74,GPLc,2021,9, +74,GPLc,2021,10, +74,GPLc,2021,11, +74,GPLc,2021,12, +74,GPLc,2022,1, +74,GPLc,2022,2, +74,GPLc,2022,3, +74,GPLc,2022,4, +74,GPLc,2022,5, +74,GPLc,2022,6, +74,GPLc,2022,7, +74,GPLc,2022,8, +74,GPLc,2022,9, +74,GPLc,2022,10, +74,GPLc,2022,11, +74,GPLc,2022,12, +74,GPLc,2023,1, +74,GPLc,2023,2, +74,GPLc,2023,3, +74,GPLc,2023,4, +74,GPLc,2023,5, +74,GPLc,2023,6, +74,GPLc,2023,7, +74,GPLc,2023,8, +74,GPLc,2023,9, +74,GPLc,2023,10, +74,GPLc,2023,11, +74,GPLc,2023,12, +74,GPLc,2024,1, +74,GPLc,2024,2, +74,GPLc,2024,3, +74,GPLc,2024,4, +74,GPLc,2024,5, +74,GPLc,2024,6, +74,GPLc,2024,7, +74,GPLc,2024,8, +74,GPLc,2024,9, +74,GPLc,2024,10, +74,GPLc,2024,11, +74,GPLc,2024,12, +74,E85,2007,8,85.0 +74,E85,2007,12,85.0 +74,E85,2007,1, +74,E85,2007,2, +74,E85,2007,3, +74,E85,2007,4, +74,E85,2007,5, +74,E85,2007,6, +74,E85,2007,7, +74,E85,2007,9,85.0 +74,E85,2007,10,85.0 +74,E85,2007,11,85.0 +74,E85,2008,1,85.0 +74,E85,2008,2,85.0 +74,E85,2008,3,85.0 +74,E85,2008,4,85.0 +74,E85,2008,5,85.58 +74,E85,2008,6,87.0 +74,E85,2008,7,89.36 +74,E85,2008,8,89.14 +74,E85,2008,9,89.9 +74,E85,2008,10,89.29 +74,E85,2008,11,88.2 +74,E85,2008,12,84.42 +74,E85,2009,7,110.42 +74,E85,2009,10,118.45 +74,E85,2009,1,83.0 +74,E85,2009,2,83.0 +74,E85,2009,3,83.0 +74,E85,2009,4,83.93 +74,E85,2009,5,85.0 +74,E85,2009,6,92.98 +74,E85,2009,8,112.36 +74,E85,2009,9,115.36 +74,E85,2009,11,119.35 +74,E85,2009,12,119.91 +74,E85,2010,6,125.94 +74,E85,2010,1,95.67 +74,E85,2010,2,119.15 +74,E85,2010,3,122.91 +74,E85,2010,11,129.13 +74,E85,2010,8,130.34 +74,E85,2010,9,131.14 +74,E85,2010,12,128.22 +74,E85,2010,4,124.6 +74,E85,2010,7,129.28 +74,E85,2010,5,125.38 +74,E85,2010,10,131.22 +74,E85,2011,5,95.0 +74,E85,2011,6,95.0 +74,E85,2011,7,95.0 +74,E85,2011,8,95.0 +74,E85,2011,9,94.5 +74,E85,2011,10,95.0 +74,E85,2011,12,95.0 +74,E85,2011,3,95.0 +74,E85,2011,1, +74,E85,2011,2, +74,E85,2011,4,95.0 +74,E85,2011,11,95.0 +74,E85,2012,1,95.0 +74,E85,2012,3,95.0 +74,E85,2012,4,95.0 +74,E85,2012,5,95.0 +74,E85,2012,6,95.0 +74,E85,2012,7,95.0 +74,E85,2012,8,95.0 +74,E85,2012,9,95.0 +74,E85,2012,10,95.0 +74,E85,2012,11,95.0 +74,E85,2012,12,95.0 +74,E85,2012,2,95.0 +74,E85,2013,10,91.04 +74,E85,2013,12,93.54 +74,E85,2013,1,94.14 +74,E85,2013,2,94.82 +74,E85,2013,3,97.3 +74,E85,2013,4,98.5 +74,E85,2013,5,93.34 +74,E85,2013,6,91.3 +74,E85,2013,7,90.22 +74,E85,2013,8,89.5 +74,E85,2013,9,89.5 +74,E85,2013,11,93.5 +74,E85,2014,1,95.63 +74,E85,2014,3,91.33 +74,E85,2014,4,86.69 +74,E85,2014,5,86.15 +74,E85,2014,6,85.13 +74,E85,2014,7,83.85 +74,E85,2014,8,81.72 +74,E85,2014,10,101.08 +74,E85,2014,9,89.81 +74,E85,2014,11,107.04 +74,E85,2014,12,109.85 +74,E85,2014,2,93.2 +74,E85,2015,9,114.53 +74,E85,2015,2,87.12 +74,E85,2015,3,92.34 +74,E85,2015,4,109.56 +74,E85,2015,5,110.7 +74,E85,2015,6,110.67 +74,E85,2015,7,110.76 +74,E85,2015,8,112.35 +74,E85,2015,10,115.68 +74,E85,2015,11,117.51 +74,E85,2015,12,117.48 +74,E85,2015,1, +74,E85,2016,1, +74,E85,2016,2, +74,E85,2016,3, +74,E85,2016,4, +74,E85,2016,5, +74,E85,2016,6, +74,E85,2016,7, +74,E85,2016,8, +74,E85,2016,9, +74,E85,2016,10, +74,E85,2016,11, +74,E85,2016,12, +74,E85,2017,1, +74,E85,2017,2, +74,E85,2017,3, +74,E85,2017,4, +74,E85,2017,5, +74,E85,2017,6, +74,E85,2017,7, +74,E85,2017,8, +74,E85,2017,9, +74,E85,2017,10, +74,E85,2017,11, +74,E85,2017,12, +74,E85,2018,1, +74,E85,2018,2, +74,E85,2018,3, +74,E85,2018,4, +74,E85,2018,5, +74,E85,2018,6, +74,E85,2018,7, +74,E85,2018,8, +74,E85,2018,9, +74,E85,2018,10, +74,E85,2018,11, +74,E85,2018,12, +74,E85,2019,1, +74,E85,2019,2, +74,E85,2019,3, +74,E85,2019,4, +74,E85,2019,5, +74,E85,2019,6, +74,E85,2019,7, +74,E85,2019,8, +74,E85,2019,9, +74,E85,2019,10, +74,E85,2019,11, +74,E85,2019,12, +74,E85,2020,1, +74,E85,2020,2, +74,E85,2020,3, +74,E85,2020,4, +74,E85,2020,5, +74,E85,2020,6, +74,E85,2020,7, +74,E85,2020,8, +74,E85,2020,9, +74,E85,2020,10, +74,E85,2020,11, +74,E85,2020,12, +74,E85,2021,1, +74,E85,2021,2, +74,E85,2021,3, +74,E85,2021,4, +74,E85,2021,5, +74,E85,2021,6, +74,E85,2021,7, +74,E85,2021,8, +74,E85,2021,9, +74,E85,2021,10, +74,E85,2021,11, +74,E85,2021,12, +74,E85,2022,1, +74,E85,2022,2, +74,E85,2022,3, +74,E85,2022,4, +74,E85,2022,5, +74,E85,2022,6, +74,E85,2022,7, +74,E85,2022,8, +74,E85,2022,9, +74,E85,2022,10, +74,E85,2022,11, +74,E85,2022,12, +74,E85,2023,1, +74,E85,2023,2, +74,E85,2023,3, +74,E85,2023,4, +74,E85,2023,5, +74,E85,2023,6, +74,E85,2023,7, +74,E85,2023,8, +74,E85,2023,9, +74,E85,2023,10, +74,E85,2023,11, +74,E85,2023,12, +74,E85,2024,1, +74,E85,2024,2, +74,E85,2024,3, +74,E85,2024,4, +74,E85,2024,5, +74,E85,2024,6, +74,E85,2024,7, +74,E85,2024,8, +74,E85,2024,9, +74,E85,2024,10, +74,E85,2024,11, +74,E85,2024,12, +74,E10,2009,9,124.25 +74,E10,2009,10,125.55 +74,E10,2009,11,130.37 +74,E10,2009,12,130.47 +74,E10,2009,7,122.3 +74,E10,2009,8,124.73 +74,E10,2009,6,122.4 +74,E10,2009,1, +74,E10,2009,2, +74,E10,2009,3, +74,E10,2009,4, +74,E10,2009,5, +74,E10,2010,1,133.51 +74,E10,2010,2,135.01 +74,E10,2010,3,138.38 +74,E10,2010,5,141.95 +74,E10,2010,6,140.72 +74,E10,2010,7,138.0 +74,E10,2010,9,137.46 +74,E10,2010,10,138.1 +74,E10,2010,11,139.44 +74,E10,2010,12,143.43 +74,E10,2010,4,141.19 +74,E10,2010,8,137.84 +74,E10,2011,7,153.28 +74,E10,2011,8,152.24 +74,E10,2011,9,153.88 +74,E10,2011,11,152.27 +74,E10,2011,12,152.15 +74,E10,2011,1,148.5 +74,E10,2011,2,149.4 +74,E10,2011,3,153.2 +74,E10,2011,4,155.91 +74,E10,2011,5,156.63 +74,E10,2011,6,153.82 +74,E10,2011,10,152.38 +74,E10,2012,3,165.65 +74,E10,2012,4,168.91 +74,E10,2012,5,163.19 +74,E10,2012,6,157.94 +74,E10,2012,7,158.35 +74,E10,2012,8,162.59 +74,E10,2012,9,159.34 +74,E10,2012,10,157.05 +74,E10,2012,11,151.65 +74,E10,2012,12,152.16 +74,E10,2012,1,157.33 +74,E10,2012,2,160.07 +74,E10,2013,6,155.53 +74,E10,2013,7,156.65 +74,E10,2013,8,157.42 +74,E10,2013,9,156.38 +74,E10,2013,10,151.54 +74,E10,2013,11,150.29 +74,E10,2013,12,151.44 +74,E10,2013,1,156.73 +74,E10,2013,2,161.91 +74,E10,2013,3,161.55 +74,E10,2013,4,158.29 +74,E10,2013,5,155.37 +74,E10,2014,1,150.55 +74,E10,2014,2,151.43 +74,E10,2014,3,152.22 +74,E10,2014,4,153.08 +74,E10,2014,5,154.02 +74,E10,2014,6,155.05 +74,E10,2014,7,154.81 +74,E10,2014,8,152.43 +74,E10,2014,9,151.75 +74,E10,2014,10,149.55 +74,E10,2014,11,146.11 +74,E10,2014,12,138.04 +74,E10,2015,1,129.21 +74,E10,2015,2,134.1 +74,E10,2015,3,139.29 +74,E10,2015,4,142.14 +74,E10,2015,5,145.02 +74,E10,2015,6,145.87 +74,E10,2015,7,145.19 +74,E10,2015,8,139.92 +74,E10,2015,9,133.25 +74,E10,2015,10,131.75 +74,E10,2015,11,131.9 +74,E10,2015,12,129.66 +74,E10,2016,1, +74,E10,2016,2, +74,E10,2016,3, +74,E10,2016,4, +74,E10,2016,5, +74,E10,2016,6, +74,E10,2016,7, +74,E10,2016,8, +74,E10,2016,9, +74,E10,2016,10, +74,E10,2016,11, +74,E10,2016,12, +74,E10,2017,1, +74,E10,2017,2, +74,E10,2017,3, +74,E10,2017,4, +74,E10,2017,5, +74,E10,2017,6, +74,E10,2017,7, +74,E10,2017,8, +74,E10,2017,9, +74,E10,2017,10, +74,E10,2017,11, +74,E10,2017,12, +74,E10,2018,1, +74,E10,2018,2, +74,E10,2018,3, +74,E10,2018,4, +74,E10,2018,5, +74,E10,2018,6, +74,E10,2018,7, +74,E10,2018,8, +74,E10,2018,9, +74,E10,2018,10, +74,E10,2018,11, +74,E10,2018,12, +74,E10,2019,1, +74,E10,2019,2, +74,E10,2019,3, +74,E10,2019,4, +74,E10,2019,5, +74,E10,2019,6, +74,E10,2019,7, +74,E10,2019,8, +74,E10,2019,9, +74,E10,2019,10, +74,E10,2019,11, +74,E10,2019,12, +74,E10,2020,1, +74,E10,2020,2, +74,E10,2020,3, +74,E10,2020,4, +74,E10,2020,5, +74,E10,2020,6, +74,E10,2020,7, +74,E10,2020,8, +74,E10,2020,9, +74,E10,2020,10, +74,E10,2020,11, +74,E10,2020,12, +74,E10,2021,1, +74,E10,2021,2, +74,E10,2021,3, +74,E10,2021,4, +74,E10,2021,5, +74,E10,2021,6, +74,E10,2021,7, +74,E10,2021,8, +74,E10,2021,9, +74,E10,2021,10, +74,E10,2021,11, +74,E10,2021,12, +74,E10,2022,1, +74,E10,2022,2, +74,E10,2022,3, +74,E10,2022,4, +74,E10,2022,5, +74,E10,2022,6, +74,E10,2022,7, +74,E10,2022,8, +74,E10,2022,9, +74,E10,2022,10, +74,E10,2022,11, +74,E10,2022,12, +74,E10,2023,1, +74,E10,2023,2, +74,E10,2023,3, +74,E10,2023,4, +74,E10,2023,5, +74,E10,2023,6, +74,E10,2023,7, +74,E10,2023,8, +74,E10,2023,9, +74,E10,2023,10, +74,E10,2023,11, +74,E10,2023,12, +74,E10,2024,1, +74,E10,2024,2, +74,E10,2024,3, +74,E10,2024,4, +74,E10,2024,5, +74,E10,2024,6, +74,E10,2024,7, +74,E10,2024,8, +74,E10,2024,9, +74,E10,2024,10, +74,E10,2024,11, +74,E10,2024,12, +74,SP98,2013,6,161.64 +74,SP98,2013,7,162.26 +74,SP98,2013,8,163.43 +74,SP98,2013,9,162.74 +74,SP98,2013,10,158.27 +74,SP98,2013,11,156.94 +74,SP98,2013,12,158.23 +74,SP98,2013,1, +74,SP98,2013,2, +74,SP98,2013,3, +74,SP98,2013,4, +74,SP98,2013,5, +74,SP98,2014,1,157.15 +74,SP98,2014,2,157.53 +74,SP98,2014,3,157.84 +74,SP98,2014,4,158.51 +74,SP98,2014,5,159.25 +74,SP98,2014,6,160.41 +74,SP98,2014,7,160.87 +74,SP98,2014,8,158.32 +74,SP98,2014,9,157.68 +74,SP98,2014,10,155.31 +74,SP98,2014,11,151.25 +74,SP98,2014,12,142.94 +74,SP98,2015,1,134.82 +74,SP98,2015,2,139.92 +74,SP98,2015,3,145.36 +74,SP98,2015,4,148.11 +74,SP98,2015,5,151.28 +74,SP98,2015,6,152.02 +74,SP98,2015,7,151.75 +74,SP98,2015,8,146.65 +74,SP98,2015,9,139.58 +74,SP98,2015,10,138.07 +74,SP98,2015,11,138.0 +74,SP98,2015,12,135.56 +74,SP98,2016,1, +74,SP98,2016,2, +74,SP98,2016,3, +74,SP98,2016,4, +74,SP98,2016,5, +74,SP98,2016,6, +74,SP98,2016,7, +74,SP98,2016,8, +74,SP98,2016,9, +74,SP98,2016,10, +74,SP98,2016,11, +74,SP98,2016,12, +74,SP98,2017,1, +74,SP98,2017,2, +74,SP98,2017,3, +74,SP98,2017,4, +74,SP98,2017,5, +74,SP98,2017,6, +74,SP98,2017,7, +74,SP98,2017,8, +74,SP98,2017,9, +74,SP98,2017,10, +74,SP98,2017,11, +74,SP98,2017,12, +74,SP98,2018,1, +74,SP98,2018,2, +74,SP98,2018,3, +74,SP98,2018,4, +74,SP98,2018,5, +74,SP98,2018,6, +74,SP98,2018,7, +74,SP98,2018,8, +74,SP98,2018,9, +74,SP98,2018,10, +74,SP98,2018,11, +74,SP98,2018,12, +74,SP98,2019,1, +74,SP98,2019,2, +74,SP98,2019,3, +74,SP98,2019,4, +74,SP98,2019,5, +74,SP98,2019,6, +74,SP98,2019,7, +74,SP98,2019,8, +74,SP98,2019,9, +74,SP98,2019,10, +74,SP98,2019,11, +74,SP98,2019,12, +74,SP98,2020,1, +74,SP98,2020,2, +74,SP98,2020,3, +74,SP98,2020,4, +74,SP98,2020,5, +74,SP98,2020,6, +74,SP98,2020,7, +74,SP98,2020,8, +74,SP98,2020,9, +74,SP98,2020,10, +74,SP98,2020,11, +74,SP98,2020,12, +74,SP98,2021,1, +74,SP98,2021,2, +74,SP98,2021,3, +74,SP98,2021,4, +74,SP98,2021,5, +74,SP98,2021,6, +74,SP98,2021,7, +74,SP98,2021,8, +74,SP98,2021,9, +74,SP98,2021,10, +74,SP98,2021,11, +74,SP98,2021,12, +74,SP98,2022,1, +74,SP98,2022,2, +74,SP98,2022,3, +74,SP98,2022,4, +74,SP98,2022,5, +74,SP98,2022,6, +74,SP98,2022,7, +74,SP98,2022,8, +74,SP98,2022,9, +74,SP98,2022,10, +74,SP98,2022,11, +74,SP98,2022,12, +74,SP98,2023,1, +74,SP98,2023,2, +74,SP98,2023,3, +74,SP98,2023,4, +74,SP98,2023,5, +74,SP98,2023,6, +74,SP98,2023,7, +74,SP98,2023,8, +74,SP98,2023,9, +74,SP98,2023,10, +74,SP98,2023,11, +74,SP98,2023,12, +74,SP98,2024,1, +74,SP98,2024,2, +74,SP98,2024,3, +74,SP98,2024,4, +74,SP98,2024,5, +74,SP98,2024,6, +74,SP98,2024,7, +74,SP98,2024,8, +74,SP98,2024,9, +74,SP98,2024,10, +74,SP98,2024,11, +74,SP98,2024,12, +94,Gazole,2007,1,110.05 +94,Gazole,2007,2,109.67 +94,Gazole,2007,3,111.33 +94,Gazole,2007,5,115.11 +94,Gazole,2007,6,116.13 +94,Gazole,2007,7,116.86 +94,Gazole,2007,8,117.46 +94,Gazole,2007,9,118.31 +94,Gazole,2007,11,126.04 +94,Gazole,2007,12,128.61 +94,Gazole,2007,4,114.18 +94,Gazole,2007,10,119.89 +94,Gazole,2008,1,129.38 +94,Gazole,2008,2,129.01 +94,Gazole,2008,3,133.97 +94,Gazole,2008,4,135.95 +94,Gazole,2008,5,143.53 +94,Gazole,2008,6,150.47 +94,Gazole,2008,7,151.24 +94,Gazole,2008,8,143.89 +94,Gazole,2008,9,138.88 +94,Gazole,2008,10,131.88 +94,Gazole,2008,11,120.97 +94,Gazole,2008,12,113.08 +94,Gazole,2009,1,106.23 +94,Gazole,2009,3,104.63 +94,Gazole,2009,5,106.07 +94,Gazole,2009,6,109.12 +94,Gazole,2009,7,110.45 +94,Gazole,2009,8,111.76 +94,Gazole,2009,9,111.54 +94,Gazole,2009,10,110.65 +94,Gazole,2009,12,112.64 +94,Gazole,2009,2,107.27 +94,Gazole,2009,4,105.18 +94,Gazole,2009,11,112.52 +94,Gazole,2010,1,116.63 +94,Gazole,2010,3,118.83 +94,Gazole,2010,4,123.01 +94,Gazole,2010,6,123.65 +94,Gazole,2010,7,122.65 +94,Gazole,2010,8,121.42 +94,Gazole,2010,9,121.58 +94,Gazole,2010,10,123.69 +94,Gazole,2010,11,125.48 +94,Gazole,2010,12,127.78 +94,Gazole,2010,2,116.89 +94,Gazole,2010,5,124.92 +94,Gazole,2011,1,132.58 +94,Gazole,2011,2,135.3 +94,Gazole,2011,3,142.11 +94,Gazole,2011,4,144.54 +94,Gazole,2011,5,142.3 +94,Gazole,2011,6,139.4 +94,Gazole,2011,7,139.63 +94,Gazole,2011,8,139.8 +94,Gazole,2011,9,139.92 +94,Gazole,2011,10,140.33 +94,Gazole,2011,11,143.57 +94,Gazole,2011,12,146.44 +94,Gazole,2012,1,148.31 +94,Gazole,2012,2,150.2 +94,Gazole,2012,3,152.54 +94,Gazole,2012,4,152.54 +94,Gazole,2012,5,149.82 +94,Gazole,2012,6,144.72 +94,Gazole,2012,7,144.61 +94,Gazole,2012,8,151.37 +94,Gazole,2012,9,149.46 +94,Gazole,2012,10,147.38 +94,Gazole,2012,11,144.49 +94,Gazole,2012,12,144.24 +94,Gazole,2013,1,146.22 +94,Gazole,2013,2,149.29 +94,Gazole,2013,3,148.79 +94,Gazole,2013,4,145.09 +94,Gazole,2013,5,142.1 +94,Gazole,2013,6,143.04 +94,Gazole,2013,7,144.37 +94,Gazole,2013,8,145.35 +94,Gazole,2013,9,146.16 +94,Gazole,2013,10,142.9 +94,Gazole,2013,11,141.36 +94,Gazole,2013,12,142.64 +94,Gazole,2014,1,142.09 +94,Gazole,2014,2,141.23 +94,Gazole,2014,3,141.49 +94,Gazole,2014,4,140.58 +94,Gazole,2014,5,140.41 +94,Gazole,2014,6,140.36 +94,Gazole,2014,7,141.13 +94,Gazole,2014,8,139.63 +94,Gazole,2014,9,138.87 +94,Gazole,2014,10,137.12 +94,Gazole,2014,11,133.28 +94,Gazole,2014,12,125.5 +94,Gazole,2015,1,119.52 +94,Gazole,2015,2,125.3 +94,Gazole,2015,3,130.14 +94,Gazole,2015,4,130.11 +94,Gazole,2015,5,132.65 +94,Gazole,2015,6,132.37 +94,Gazole,2015,7,130.26 +94,Gazole,2015,8,124.52 +94,Gazole,2015,9,121.86 +94,Gazole,2015,10,121.11 +94,Gazole,2015,11,120.06 +94,Gazole,2015,12,116.86 +94,Gazole,2016,1,113.17 +94,Gazole,2016,2,112.7 +94,Gazole,2016,3,115.94 +94,Gazole,2016,4,117.59 +94,Gazole,2016,5,121.03 +94,Gazole,2016,6,124.99 +94,Gazole,2016,7,123.63 +94,Gazole,2016,8,121.07 +94,Gazole,2016,9,122.37 +94,Gazole,2016,10,124.39 +94,Gazole,2016,11,124.45 +94,Gazole,2016,12,127.02 +94,Gazole,2017,1,135.66 +94,Gazole,2017,2,136.69 +94,Gazole,2017,3,136.02 +94,Gazole,2017,4,135.56 +94,Gazole,2017,5,133.73 +94,Gazole,2017,6,131.23 +94,Gazole,2017,7,129.46 +94,Gazole,2017,8,130.94 +94,Gazole,2017,9,132.65 +94,Gazole,2017,11,137.23 +94,Gazole,2017,12,138.39 +94,Gazole,2017,10,134.47 +94,Gazole,2018,1,148.12 +94,Gazole,2018,2,148.94 +94,Gazole,2018,3,148.33 +94,Gazole,2018,4,150.07 +94,Gazole,2018,5,154.5 +94,Gazole,2018,6,156.79 +94,Gazole,2018,7,155.98 +94,Gazole,2018,8,155.87 +94,Gazole,2018,9,157.55 +94,Gazole,2018,10,161.54 +94,Gazole,2018,11,160.31 +94,Gazole,2018,12,152.79 +94,Gazole,2019,1,149.38 +94,Gazole,2019,2,153.16 +94,Gazole,2019,3,156.05 +94,Gazole,2019,4,156.56 +94,Gazole,2019,5,157.88 +94,Gazole,2019,6,153.93 +94,Gazole,2019,7,152.97 +94,Gazole,2019,8,152.44 +94,Gazole,2019,9,154.22 +94,Gazole,2019,10,155.32 +94,Gazole,2019,11,155.67 +94,Gazole,2019,12,156.02 +94,Gazole,2020,1,159.06 +94,Gazole,2020,2,153.59 +94,Gazole,2020,3,145.78 +94,Gazole,2020,4,137.57 +94,Gazole,2020,5,133.12 +94,Gazole,2020,6,135.12 +94,Gazole,2020,7,137.3 +94,Gazole,2020,8,137.49 +94,Gazole,2020,9,136.14 +94,Gazole,2020,11,135.18 +94,Gazole,2020,12,138.3 +94,Gazole,2020,10,134.99 +94,Gazole,2021,1,142.84 +94,Gazole,2021,2,146.13 +94,Gazole,2021,3,150.07 +94,Gazole,2021,4,150.39 +94,Gazole,2021,5,151.27 +94,Gazole,2021,6,152.9 +94,Gazole,2021,7,155.87 +94,Gazole,2021,8,156.49 +94,Gazole,2021,9,157.11 +94,Gazole,2021,10,164.13 +94,Gazole,2021,11,167.34 +94,Gazole,2021,12,164.89 +94,Gazole,2022,1,172.0 +94,Gazole,2022,2,180.0 +94,Gazole,2022,3,202.0 +94,Gazole,2022,4,191.0 +94,Gazole,2022,5,196.0 +94,Gazole,2022,6,215.0 +94,Gazole,2022,7,209.0 +94,Gazole,2022,8,198.0 +94,Gazole,2022,9,172.0 +94,Gazole,2022,10,178.0 +94,Gazole,2022,11,184.0 +94,Gazole,2022,12,182.0 +94,Gazole,2023,1,199.0 +94,Gazole,2023,2,195.0 +94,Gazole,2023,3,191.0 +94,Gazole,2023,4,188.0 +94,Gazole,2023,5,179.0 +94,Gazole,2023,6,179.0 +94,Gazole,2023,7,181.0 +94,Gazole,2023,8,193.0 +94,Gazole,2023,9,196.0 +94,Gazole,2023,10,196.0 +94,Gazole,2023,11,194.0 +94,Gazole,2023,12,189.0 +94,Gazole,2024,1,184.0 +94,Gazole,2024,2,191.0 +94,Gazole,2024,4,189.0 +94,Gazole,2024,5,185.0 +94,Gazole,2024,6,182.0 +94,Gazole,2024,7,184.0 +94,Gazole,2024,3,190.0 +94,Gazole,2024,8,184.0 +94,Gazole,2024,9,184.0 +94,Gazole,2024,10,184.0 +94,Gazole,2024,11,184.0 +94,Gazole,2024,12,184.0 +94,SP95,2007,1,123.01 +94,SP95,2007,2,123.34 +94,SP95,2007,3,127.49 +94,SP95,2007,5,135.69 +94,SP95,2007,6,137.99 +94,SP95,2007,7,137.89 +94,SP95,2007,8,136.54 +94,SP95,2007,9,135.74 +94,SP95,2007,11,138.25 +94,SP95,2007,12,138.98 +94,SP95,2007,4,132.18 +94,SP95,2007,10,135.1 +94,SP95,2008,1,140.58 +94,SP95,2008,2,140.28 +94,SP95,2008,3,142.75 +94,SP95,2008,4,143.33 +94,SP95,2008,5,148.18 +94,SP95,2008,6,153.37 +94,SP95,2008,7,154.12 +94,SP95,2008,8,148.26 +94,SP95,2008,9,146.59 +94,SP95,2008,10,140.24 +94,SP95,2008,11,128.08 +94,SP95,2008,12,119.02 +94,SP95,2009,1,116.35 +94,SP95,2009,2,120.5 +94,SP95,2009,3,121.42 +94,SP95,2009,4,123.56 +94,SP95,2009,5,126.11 +94,SP95,2009,6,130.6 +94,SP95,2009,7,131.48 +94,SP95,2009,8,132.98 +94,SP95,2009,9,132.48 +94,SP95,2009,10,130.93 +94,SP95,2009,12,132.33 +94,SP95,2009,11,132.25 +94,SP95,2010,1,136.55 +94,SP95,2010,3,138.7 +94,SP95,2010,4,143.22 +94,SP95,2010,6,142.36 +94,SP95,2010,7,141.11 +94,SP95,2010,8,139.8 +94,SP95,2010,9,139.55 +94,SP95,2010,10,141.01 +94,SP95,2010,11,143.08 +94,SP95,2010,12,145.53 +94,SP95,2010,2,136.31 +94,SP95,2010,5,144.37 +94,SP95,2011,1,150.59 +94,SP95,2011,2,151.88 +94,SP95,2011,3,156.39 +94,SP95,2011,4,158.41 +94,SP95,2011,5,158.95 +94,SP95,2011,6,157.75 +94,SP95,2011,7,157.63 +94,SP95,2011,8,157.84 +94,SP95,2011,9,158.18 +94,SP95,2011,10,157.38 +94,SP95,2011,12,157.86 +94,SP95,2011,11,158.14 +94,SP95,2012,1,161.34 +94,SP95,2012,2,163.99 +94,SP95,2012,3,168.91 +94,SP95,2012,4,173.84 +94,SP95,2012,5,169.94 +94,SP95,2012,6,163.42 +94,SP95,2012,7,162.74 +94,SP95,2012,8,170.43 +94,SP95,2012,9,168.64 +94,SP95,2012,10,164.12 +94,SP95,2012,11,158.57 +94,SP95,2012,12,158.32 +94,SP95,2013,1,163.33 +94,SP95,2013,2,169.27 +94,SP95,2013,3,169.42 +94,SP95,2013,4,165.22 +94,SP95,2013,5,162.14 +94,SP95,2013,6,163.47 +94,SP95,2013,7,164.23 +94,SP95,2013,8,164.83 +94,SP95,2013,9,164.64 +94,SP95,2013,10,159.94 +94,SP95,2013,11,157.57 +94,SP95,2013,12,159.39 +94,SP95,2014,1,158.9 +94,SP95,2014,2,158.9 +94,SP95,2014,3,159.93 +94,SP95,2014,4,160.51 +94,SP95,2014,5,160.62 +94,SP95,2014,6,160.78 +94,SP95,2014,7,162.4 +94,SP95,2014,8,160.02 +94,SP95,2014,9,158.62 +94,SP95,2014,10,156.43 +94,SP95,2014,11,151.88 +94,SP95,2014,12,143.94 +94,SP95,2015,1,136.53 +94,SP95,2015,2,142.09 +94,SP95,2015,3,147.19 +94,SP95,2015,4,148.78 +94,SP95,2015,5,152.1 +94,SP95,2015,6,152.72 +94,SP95,2015,7,152.44 +94,SP95,2015,8,146.85 +94,SP95,2015,9,140.91 +94,SP95,2015,10,139.62 +94,SP95,2015,11,138.42 +94,SP95,2015,12,137.54 +94,SP95,2016,1,136.72 +94,SP95,2016,2,134.81 +94,SP95,2016,3,135.33 +94,SP95,2016,4,137.84 +94,SP95,2016,5,140.9 +94,SP95,2016,6,143.74 +94,SP95,2016,7,140.79 +94,SP95,2016,8,138.02 +94,SP95,2016,9,139.5 +94,SP95,2016,10,141.64 +94,SP95,2016,11,141.94 +94,SP95,2016,12,144.4 +94,SP95,2017,1,152.52 +94,SP95,2017,2,153.22 +94,SP95,2017,3,151.84 +94,SP95,2017,4,151.68 +94,SP95,2017,5,150.26 +94,SP95,2017,6,147.38 +94,SP95,2017,7,145.26 +94,SP95,2017,8,146.72 +94,SP95,2017,9,149.02 +94,SP95,2017,11,151.74 +94,SP95,2017,12,152.79 +94,SP95,2017,10,149.53 +94,SP95,2018,1,158.29 +94,SP95,2018,2,158.53 +94,SP95,2018,3,158.08 +94,SP95,2018,4,160.39 +94,SP95,2018,5,164.5 +94,SP95,2018,6,166.81 +94,SP95,2018,7,166.08 +94,SP95,2018,8,165.88 +94,SP95,2018,9,166.86 +94,SP95,2018,10,168.32 +94,SP95,2018,11,163.31 +94,SP95,2018,12,155.5 +94,SP95,2019,1,153.45 +94,SP95,2019,2,156.34 +94,SP95,2019,3,160.53 +94,SP95,2019,4,166.12 +94,SP95,2019,5,168.06 +94,SP95,2019,6,163.91 +94,SP95,2019,7,163.28 +94,SP95,2019,8,162.35 +94,SP95,2019,9,162.39 +94,SP95,2019,10,162.8 +94,SP95,2019,11,163.18 +94,SP95,2019,12,163.94 +94,SP95,2020,1,165.36 +94,SP95,2020,2,162.03 +94,SP95,2020,3,154.45 +94,SP95,2020,4,142.99 +94,SP95,2020,5,138.9 +94,SP95,2020,6,143.62 +94,SP95,2020,7,146.25 +94,SP95,2020,8,146.31 +94,SP95,2020,9,146.11 +94,SP95,2020,11,145.26 +94,SP95,2020,12,147.19 +94,SP95,2020,10,145.68 +94,SP95,2021,1,152.25 +94,SP95,2021,2,155.78 +94,SP95,2021,3,160.55 +94,SP95,2021,4,162.42 +94,SP95,2021,5,163.14 +94,SP95,2021,6,163.82 +94,SP95,2021,7,167.45 +94,SP95,2021,8,168.96 +94,SP95,2021,9,169.6 +94,SP95,2021,10,173.37 +94,SP95,2021,11,175.8 +94,SP95,2021,12,173.74 +94,SP95,2022,1,181.0 +94,SP95,2022,2,188.0 +94,SP95,2022,3,200.0 +94,SP95,2022,4,185.0 +94,SP95,2022,5,199.0 +94,SP95,2022,6,219.0 +94,SP95,2022,7,209.0 +94,SP95,2022,8,190.0 +94,SP95,2022,9,154.0 +94,SP95,2022,10,158.0 +94,SP95,2022,11,174.0 +94,SP95,2022,12,173.0 +94,SP95,2023,1,193.0 +94,SP95,2023,2,197.0 +94,SP95,2023,3,197.0 +94,SP95,2023,4,198.0 +94,SP95,2023,5,193.0 +94,SP95,2023,6,195.0 +94,SP95,2023,7,195.0 +94,SP95,2023,8,198.0 +94,SP95,2023,9,198.0 +94,SP95,2023,10,195.0 +94,SP95,2023,11,193.0 +94,SP95,2023,12,190.0 +94,SP95,2024,1,187.0 +94,SP95,2024,2,193.0 +94,SP95,2024,4,197.0 +94,SP95,2024,5,197.0 +94,SP95,2024,6,196.0 +94,SP95,2024,7,196.0 +94,SP95,2024,3,196.0 +94,SP95,2024,8,196.0 +94,SP95,2024,9,196.0 +94,SP95,2024,10,196.0 +94,SP95,2024,11,196.0 +94,SP95,2024,12,196.0 +94,GPLc,2007,12,80.17 +94,GPLc,2007,1, +94,GPLc,2007,2, +94,GPLc,2007,3, +94,GPLc,2007,4, +94,GPLc,2007,5, +94,GPLc,2007,6, +94,GPLc,2007,7, +94,GPLc,2007,8, +94,GPLc,2007,9, +94,GPLc,2007,10, +94,GPLc,2007,11, +94,GPLc,2008,1,78.38 +94,GPLc,2008,2,80.02 +94,GPLc,2008,5,83.02 +94,GPLc,2008,7,84.85 +94,GPLc,2008,3,82.04 +94,GPLc,2008,4,88.6 +94,GPLc,2008,6,83.55 +94,GPLc,2008,8,85.85 +94,GPLc,2008,9,86.09 +94,GPLc,2008,10,86.43 +94,GPLc,2008,11,86.44 +94,GPLc,2008,12,86.86 +94,GPLc,2009,3,81.75 +94,GPLc,2009,4,80.13 +94,GPLc,2009,10,77.82 +94,GPLc,2009,1,81.71 +94,GPLc,2009,2,82.19 +94,GPLc,2009,6,77.37 +94,GPLc,2009,7,76.78 +94,GPLc,2009,8,76.79 +94,GPLc,2009,9,76.74 +94,GPLc,2009,11,77.95 +94,GPLc,2009,12,78.08 +94,GPLc,2009,5,77.18 +94,GPLc,2010,3,82.13 +94,GPLc,2010,7,79.9 +94,GPLc,2010,11,81.83 +94,GPLc,2010,1,88.16 +94,GPLc,2010,2,82.14 +94,GPLc,2010,4,79.04 +94,GPLc,2010,9,81.33 +94,GPLc,2010,10,81.04 +94,GPLc,2010,12,82.98 +94,GPLc,2010,8,81.05 +94,GPLc,2010,6,78.98 +94,GPLc,2010,5,78.98 +94,GPLc,2011,1,89.6 +94,GPLc,2011,2,87.41 +94,GPLc,2011,4,88.2 +94,GPLc,2011,7,88.63 +94,GPLc,2011,5,88.54 +94,GPLc,2011,6,88.57 +94,GPLc,2011,9,90.26 +94,GPLc,2011,10,90.22 +94,GPLc,2011,11,90.18 +94,GPLc,2011,12,90.14 +94,GPLc,2011,8,89.78 +94,GPLc,2011,3,87.09 +94,GPLc,2012,2,84.93 +94,GPLc,2012,5,93.23 +94,GPLc,2012,7,94.7 +94,GPLc,2012,9,96.13 +94,GPLc,2012,12,98.21 +94,GPLc,2012,1,84.31 +94,GPLc,2012,3,91.41 +94,GPLc,2012,4,92.09 +94,GPLc,2012,6,94.16 +94,GPLc,2012,8,95.81 +94,GPLc,2012,10,96.31 +94,GPLc,2012,11,96.8 +94,GPLc,2013,8,103.07 +94,GPLc,2013,12,102.39 +94,GPLc,2013,1,106.57 +94,GPLc,2013,2,102.75 +94,GPLc,2013,4,101.7 +94,GPLc,2013,6,102.87 +94,GPLc,2013,5,101.58 +94,GPLc,2013,7,103.81 +94,GPLc,2013,10,102.27 +94,GPLc,2013,9,102.31 +94,GPLc,2013,11,102.27 +94,GPLc,2013,3,102.22 +94,GPLc,2014,4,101.4 +94,GPLc,2014,5,101.61 +94,GPLc,2014,6,101.26 +94,GPLc,2014,7,101.32 +94,GPLc,2014,8,101.46 +94,GPLc,2014,9,101.49 +94,GPLc,2014,10,101.55 +94,GPLc,2014,11,102.06 +94,GPLc,2014,12,102.27 +94,GPLc,2014,1,103.62 +94,GPLc,2014,2,100.99 +94,GPLc,2014,3,101.89 +94,GPLc,2015,1,104.96 +94,GPLc,2015,2,102.59 +94,GPLc,2015,3,102.01 +94,GPLc,2015,4,101.34 +94,GPLc,2015,5,101.23 +94,GPLc,2015,6,101.8 +94,GPLc,2015,7,102.05 +94,GPLc,2015,8,102.11 +94,GPLc,2015,9,102.53 +94,GPLc,2015,10,102.69 +94,GPLc,2015,11,102.69 +94,GPLc,2015,12,102.32 +94,GPLc,2016,1,100.42 +94,GPLc,2016,2,100.46 +94,GPLc,2016,3,100.86 +94,GPLc,2016,4,101.2 +94,GPLc,2016,5,101.68 +94,GPLc,2016,6,102.23 +94,GPLc,2016,7,101.74 +94,GPLc,2016,8,101.32 +94,GPLc,2016,10,101.3 +94,GPLc,2016,11,100.78 +94,GPLc,2016,12,100.53 +94,GPLc,2016,9,101.43 +94,GPLc,2017,1,100.02 +94,GPLc,2017,2,100.07 +94,GPLc,2017,3,100.98 +94,GPLc,2017,4,101.41 +94,GPLc,2017,5,101.31 +94,GPLc,2017,6,101.31 +94,GPLc,2017,7,101.31 +94,GPLc,2017,8,101.87 +94,GPLc,2017,11,102.34 +94,GPLc,2017,12,102.52 +94,GPLc,2017,9,102.22 +94,GPLc,2017,10,102.26 +94,GPLc,2018,1,103.84 +94,GPLc,2018,3,101.85 +94,GPLc,2018,4,103.59 +94,GPLc,2018,5,103.89 +94,GPLc,2018,6,104.72 +94,GPLc,2018,7,105.08 +94,GPLc,2018,9,106.15 +94,GPLc,2018,10,106.3 +94,GPLc,2018,8,105.56 +94,GPLc,2018,11,106.62 +94,GPLc,2018,2,103.11 +94,GPLc,2018,12,107.31 +94,GPLc,2019,1,109.53 +94,GPLc,2019,2,109.6 +94,GPLc,2019,3,109.74 +94,GPLc,2019,4,109.91 +94,GPLc,2019,5,110.25 +94,GPLc,2019,7,110.43 +94,GPLc,2019,8,110.44 +94,GPLc,2019,9,110.68 +94,GPLc,2019,10,110.95 +94,GPLc,2019,11,111.11 +94,GPLc,2019,12,111.11 +94,GPLc,2019,6,110.4 +94,GPLc,2020,1,110.92 +94,GPLc,2020,2,111.0 +94,GPLc,2020,3,110.94 +94,GPLc,2020,4,110.98 +94,GPLc,2020,5,111.02 +94,GPLc,2020,6,110.95 +94,GPLc,2020,7,111.0 +94,GPLc,2020,8,111.25 +94,GPLc,2020,9,111.33 +94,GPLc,2020,11,111.3 +94,GPLc,2020,12,110.63 +94,GPLc,2020,10,111.4 +94,GPLc,2021,1,110.7 +94,GPLc,2021,2,111.32 +94,GPLc,2021,3,111.22 +94,GPLc,2021,4,111.16 +94,GPLc,2021,6,111.48 +94,GPLc,2021,8,111.49 +94,GPLc,2021,9,111.55 +94,GPLc,2021,10,111.78 +94,GPLc,2021,11,111.94 +94,GPLc,2021,12,112.5 +94,GPLc,2021,5,111.21 +94,GPLc,2021,7,111.4 +94,GPLc,2022,1,112.0 +94,GPLc,2022,3,116.0 +94,GPLc,2022,6,121.0 +94,GPLc,2022,8,122.0 +94,GPLc,2022,5,118.0 +94,GPLc,2022,7,126.0 +94,GPLc,2022,9,119.0 +94,GPLc,2022,10,119.0 +94,GPLc,2022,11,122.0 +94,GPLc,2022,12,122.0 +94,GPLc,2022,2,113.0 +94,GPLc,2022,4,116.0 +94,GPLc,2023,3,125.0 +94,GPLc,2023,5,126.0 +94,GPLc,2023,6,126.0 +94,GPLc,2023,1,123.0 +94,GPLc,2023,4,125.0 +94,GPLc,2023,7,126.0 +94,GPLc,2023,8,127.0 +94,GPLc,2023,10,128.0 +94,GPLc,2023,11,128.0 +94,GPLc,2023,12,128.0 +94,GPLc,2023,2,124.0 +94,GPLc,2023,9,128.0 +94,GPLc,2024,1,114.0 +94,GPLc,2024,2,127.0 +94,GPLc,2024,3,128.0 +94,GPLc,2024,5,128.0 +94,GPLc,2024,6,128.0 +94,GPLc,2024,4,128.0 +94,GPLc,2024,7,129.0 +94,GPLc,2024,8,129.0 +94,GPLc,2024,9,129.0 +94,GPLc,2024,10,129.0 +94,GPLc,2024,11,129.0 +94,GPLc,2024,12,129.0 +94,E85,2008,9,100.0 +94,E85,2008,1, +94,E85,2008,2, +94,E85,2008,3, +94,E85,2008,4, +94,E85,2008,5, +94,E85,2008,6, +94,E85,2008,7, +94,E85,2008,8, +94,E85,2008,10,100.0 +94,E85,2008,11,100.0 +94,E85,2008,12,100.0 +94,E85,2009,11,132.7 +94,E85,2009,9,134.0 +94,E85,2009,10,133.29 +94,E85,2009,1, +94,E85,2009,2, +94,E85,2009,3, +94,E85,2009,4, +94,E85,2009,5, +94,E85,2009,6, +94,E85,2009,7, +94,E85,2009,8, +94,E85,2009,12,133.0 +94,E85,2010,9,137.86 +94,E85,2010,11,124.38 +94,E85,2010,5,143.16 +94,E85,2010,4,143.0 +94,E85,2010,1, +94,E85,2010,2, +94,E85,2010,3, +94,E85,2010,6,143.5 +94,E85,2010,7,143.5 +94,E85,2010,8,143.5 +94,E85,2010,10,129.4 +94,E85,2010,12,115.7 +94,E85,2011,3,80.43 +94,E85,2011,2,86.88 +94,E85,2011,1,85.0 +94,E85,2011,11,78.37 +94,E85,2011,4,78.37 +94,E85,2011,5,78.37 +94,E85,2011,6,78.37 +94,E85,2011,7,78.37 +94,E85,2011,8,78.37 +94,E85,2011,9,78.37 +94,E85,2011,10,78.37 +94,E85,2011,12,78.37 +94,E85,2012,3,86.0 +94,E85,2012,1, +94,E85,2012,2, +94,E85,2012,4,86.0 +94,E85,2012,5,86.0 +94,E85,2012,6,86.0 +94,E85,2012,7,86.0 +94,E85,2012,8,86.0 +94,E85,2012,9,86.0 +94,E85,2012,10,86.0 +94,E85,2012,11,86.0 +94,E85,2012,12,86.0 +94,E85,2013,1, +94,E85,2013,2, +94,E85,2013,3, +94,E85,2013,4, +94,E85,2013,5, +94,E85,2013,6, +94,E85,2013,7, +94,E85,2013,8, +94,E85,2013,9, +94,E85,2013,10, +94,E85,2013,11, +94,E85,2013,12, +94,E85,2014,1, +94,E85,2014,2, +94,E85,2014,3, +94,E85,2014,4, +94,E85,2014,5, +94,E85,2014,6, +94,E85,2014,7, +94,E85,2014,8, +94,E85,2014,9, +94,E85,2014,10, +94,E85,2014,11, +94,E85,2014,12, +94,E85,2015,8,134.0 +94,E85,2015,12,115.64 +94,E85,2015,1, +94,E85,2015,2, +94,E85,2015,3, +94,E85,2015,4, +94,E85,2015,5, +94,E85,2015,6, +94,E85,2015,7, +94,E85,2015,9,134.0 +94,E85,2015,10,134.0 +94,E85,2015,11,134.0 +94,E85,2016,8,137.86 +94,E85,2016,7,136.8 +94,E85,2016,1, +94,E85,2016,2, +94,E85,2016,3, +94,E85,2016,4, +94,E85,2016,5, +94,E85,2016,6, +94,E85,2016,9,137.93 +94,E85,2016,10,137.93 +94,E85,2016,11,137.93 +94,E85,2016,12,137.93 +94,E85,2017,2,100.0 +94,E85,2017,1, +94,E85,2017,3,100.0 +94,E85,2017,4,100.0 +94,E85,2017,5,100.0 +94,E85,2017,6,100.0 +94,E85,2017,7,100.0 +94,E85,2017,8,100.0 +94,E85,2017,9,100.0 +94,E85,2017,10,100.0 +94,E85,2017,11,100.0 +94,E85,2017,12,100.0 +94,E85,2018,11,157.75 +94,E85,2018,1, +94,E85,2018,2, +94,E85,2018,3, +94,E85,2018,4, +94,E85,2018,5, +94,E85,2018,6, +94,E85,2018,7, +94,E85,2018,8, +94,E85,2018,9, +94,E85,2018,10, +94,E85,2018,12,157.0 +94,E85,2019,8,163.38 +94,E85,2019,7,164.0 +94,E85,2019,1, +94,E85,2019,2, +94,E85,2019,3, +94,E85,2019,4, +94,E85,2019,5, +94,E85,2019,6, +94,E85,2019,9,162.25 +94,E85,2019,10,162.25 +94,E85,2019,11,162.25 +94,E85,2019,12,162.25 +94,E85,2020,3,85.0 +94,E85,2020,12,123.28 +94,E85,2020,5,97.82 +94,E85,2020,1, +94,E85,2020,2, +94,E85,2020,4,85.0 +94,E85,2020,6,111.5 +94,E85,2020,7,111.5 +94,E85,2020,8,111.5 +94,E85,2020,9,111.5 +94,E85,2020,10,111.5 +94,E85,2020,11,111.5 +94,E85,2021,6,156.44 +94,E85,2021,1, +94,E85,2021,2, +94,E85,2021,3, +94,E85,2021,4, +94,E85,2021,5, +94,E85,2021,7,132.25 +94,E85,2021,8,132.25 +94,E85,2021,9,132.25 +94,E85,2021,10,132.25 +94,E85,2021,11,132.25 +94,E85,2021,12,132.25 +94,E85,2022,7,204.0 +94,E85,2022,3,199.0 +94,E85,2022,12,196.0 +94,E85,2022,1, +94,E85,2022,2, +94,E85,2022,4,199.0 +94,E85,2022,5,199.0 +94,E85,2022,6,199.0 +94,E85,2022,8,204.0 +94,E85,2022,9,204.0 +94,E85,2022,10,204.0 +94,E85,2022,11,204.0 +94,E85,2023,10,191.0 +94,E85,2023,7,188.0 +94,E85,2023,1,188.0 +94,E85,2023,2,188.0 +94,E85,2023,3,188.0 +94,E85,2023,4,188.0 +94,E85,2023,5,188.0 +94,E85,2023,6,188.0 +94,E85,2023,8,192.0 +94,E85,2023,9,192.0 +94,E85,2023,11,191.0 +94,E85,2023,12,191.0 +94,E85,2024,5,195.0 +94,E85,2024,3,195.0 +94,E85,2024,1, +94,E85,2024,2, +94,E85,2024,4,195.0 +94,E85,2024,6,196.0 +94,E85,2024,7,196.0 +94,E85,2024,8,196.0 +94,E85,2024,9,196.0 +94,E85,2024,10,196.0 +94,E85,2024,11,196.0 +94,E85,2024,12,196.0 +94,E10,2011,5,161.9 +94,E10,2011,1, +94,E10,2011,2, +94,E10,2011,3, +94,E10,2011,4, +94,E10,2011,6,161.9 +94,E10,2011,7,161.9 +94,E10,2011,8,161.9 +94,E10,2011,9,161.9 +94,E10,2011,10,161.9 +94,E10,2011,11,161.9 +94,E10,2011,12,161.9 +94,E10,2012,8,138.92 +94,E10,2012,12,139.58 +94,E10,2012,2,151.0 +94,E10,2012,5,148.96 +94,E10,2012,1, +94,E10,2012,3,151.0 +94,E10,2012,4,151.0 +94,E10,2012,6,138.67 +94,E10,2012,7,138.67 +94,E10,2012,9,146.45 +94,E10,2012,10,146.45 +94,E10,2012,11,146.45 +94,E10,2013,4,158.7 +94,E10,2013,8,163.25 +94,E10,2013,5,159.32 +94,E10,2013,12,162.08 +94,E10,2013,11,162.5 +94,E10,2013,7,160.9 +94,E10,2013,1, +94,E10,2013,2, +94,E10,2013,3, +94,E10,2013,6,160.85 +94,E10,2013,9,163.4 +94,E10,2013,10,163.4 +94,E10,2014,1,155.67 +94,E10,2014,10,158.28 +94,E10,2014,8,160.12 +94,E10,2014,2,157.66 +94,E10,2014,11,155.98 +94,E10,2014,5,159.31 +94,E10,2014,6,159.56 +94,E10,2014,3,159.25 +94,E10,2014,4,159.25 +94,E10,2014,7,160.2 +94,E10,2014,9,160.1 +94,E10,2014,12,155.96 +94,E10,2015,6,153.5 +94,E10,2015,1, +94,E10,2015,2, +94,E10,2015,3, +94,E10,2015,4, +94,E10,2015,5, +94,E10,2015,7,153.5 +94,E10,2015,8,153.5 +94,E10,2015,9,153.5 +94,E10,2015,10,153.5 +94,E10,2015,11,153.5 +94,E10,2015,12,153.5 +94,E10,2016,2,115.0 +94,E10,2016,3,122.75 +94,E10,2016,1, +94,E10,2016,4,122.75 +94,E10,2016,5,122.75 +94,E10,2016,6,122.75 +94,E10,2016,7,122.75 +94,E10,2016,8,122.75 +94,E10,2016,9,122.75 +94,E10,2016,10,122.75 +94,E10,2016,11,122.75 +94,E10,2016,12,122.75 +94,E10,2017,7,147.0 +94,E10,2017,1, +94,E10,2017,2, +94,E10,2017,3, +94,E10,2017,4, +94,E10,2017,5, +94,E10,2017,6, +94,E10,2017,8,147.0 +94,E10,2017,9,147.0 +94,E10,2017,10,147.0 +94,E10,2017,11,147.0 +94,E10,2017,12,147.0 +94,E10,2018,11,167.44 +94,E10,2018,5,169.0 +94,E10,2018,1, +94,E10,2018,2, +94,E10,2018,3, +94,E10,2018,4, +94,E10,2018,6,169.0 +94,E10,2018,7,169.0 +94,E10,2018,8,169.0 +94,E10,2018,9,169.0 +94,E10,2018,10,169.0 +94,E10,2018,12,162.33 +94,E10,2019,9,162.56 +94,E10,2019,5,170.0 +94,E10,2019,6,166.8 +94,E10,2019,8,163.9 +94,E10,2019,1, +94,E10,2019,2, +94,E10,2019,3, +94,E10,2019,4, +94,E10,2019,7,166.0 +94,E10,2019,10,164.35 +94,E10,2019,11,164.35 +94,E10,2019,12,164.35 +94,E10,2020,11,154.17 +94,E10,2020,12,153.74 +94,E10,2020,1,163.0 +94,E10,2020,5,159.75 +94,E10,2020,6,155.16 +94,E10,2020,3,160.9 +94,E10,2020,2,163.0 +94,E10,2020,4,160.5 +94,E10,2020,7,155.33 +94,E10,2020,8,155.33 +94,E10,2020,9,155.33 +94,E10,2020,10,155.33 +94,E10,2021,1,155.29 +94,E10,2021,3,157.74 +94,E10,2021,6,160.15 +94,E10,2021,8,163.07 +94,E10,2021,9,163.02 +94,E10,2021,10,164.69 +94,E10,2021,12,169.77 +94,E10,2021,2,155.55 +94,E10,2021,4,160.0 +94,E10,2021,5,160.0 +94,E10,2021,7,161.5 +94,E10,2021,11,169.97 +94,E10,2022,1,185.0 +94,E10,2022,2,192.0 +94,E10,2022,4,186.0 +94,E10,2022,5,195.0 +94,E10,2022,6,218.0 +94,E10,2022,7,216.0 +94,E10,2022,8,198.0 +94,E10,2022,9,190.0 +94,E10,2022,10,155.0 +94,E10,2022,11,162.0 +94,E10,2022,3,194.0 +94,E10,2022,12,181.0 +94,E10,2023,1,190.0 +94,E10,2023,2,196.0 +94,E10,2023,4,195.0 +94,E10,2023,5,194.0 +94,E10,2023,6,195.0 +94,E10,2023,7,195.0 +94,E10,2023,8,195.0 +94,E10,2023,11,194.0 +94,E10,2023,3,196.0 +94,E10,2023,9,195.0 +94,E10,2023,10,195.0 +94,E10,2023,12,194.0 +94,E10,2024,5,196.0 +94,E10,2024,4,197.0 +94,E10,2024,6,195.0 +94,E10,2024,1, +94,E10,2024,2, +94,E10,2024,3, +94,E10,2024,7,194.0 +94,E10,2024,8,194.0 +94,E10,2024,9,194.0 +94,E10,2024,10,194.0 +94,E10,2024,11,194.0 +94,E10,2024,12,194.0 +94,SP98,2014,10,151.8 +94,SP98,2014,1, +94,SP98,2014,2, +94,SP98,2014,3, +94,SP98,2014,4, +94,SP98,2014,5, +94,SP98,2014,6, +94,SP98,2014,7, +94,SP98,2014,8, +94,SP98,2014,9, +94,SP98,2014,11,151.8 +94,SP98,2014,12,151.8 +94,SP98,2015,10,142.0 +94,SP98,2015,12,121.07 +94,SP98,2015,1, +94,SP98,2015,2, +94,SP98,2015,3, +94,SP98,2015,4, +94,SP98,2015,5, +94,SP98,2015,6, +94,SP98,2015,7, +94,SP98,2015,8, +94,SP98,2015,9, +94,SP98,2015,11,142.0 +94,SP98,2016,1, +94,SP98,2016,2, +94,SP98,2016,3, +94,SP98,2016,4, +94,SP98,2016,5, +94,SP98,2016,6, +94,SP98,2016,7, +94,SP98,2016,8, +94,SP98,2016,9, +94,SP98,2016,10, +94,SP98,2016,11, +94,SP98,2016,12, +94,SP98,2017,2,154.5 +94,SP98,2017,1, +94,SP98,2017,3,154.5 +94,SP98,2017,4,154.5 +94,SP98,2017,5,154.5 +94,SP98,2017,6,154.5 +94,SP98,2017,7,154.5 +94,SP98,2017,8,154.5 +94,SP98,2017,9,154.5 +94,SP98,2017,10,154.5 +94,SP98,2017,11,154.5 +94,SP98,2017,12,154.5 +94,SP98,2018,1, +94,SP98,2018,2, +94,SP98,2018,3, +94,SP98,2018,4, +94,SP98,2018,5, +94,SP98,2018,6, +94,SP98,2018,7, +94,SP98,2018,8, +94,SP98,2018,9, +94,SP98,2018,10, +94,SP98,2018,11, +94,SP98,2018,12, +94,SP98,2019,9,164.0 +94,SP98,2019,1, +94,SP98,2019,2, +94,SP98,2019,3, +94,SP98,2019,4, +94,SP98,2019,5, +94,SP98,2019,6, +94,SP98,2019,7, +94,SP98,2019,8, +94,SP98,2019,10,164.0 +94,SP98,2019,11,164.0 +94,SP98,2019,12,164.0 +94,SP98,2020,11,147.0 +94,SP98,2020,1, +94,SP98,2020,2, +94,SP98,2020,3, +94,SP98,2020,4, +94,SP98,2020,5, +94,SP98,2020,6, +94,SP98,2020,7, +94,SP98,2020,8, +94,SP98,2020,9, +94,SP98,2020,10, +94,SP98,2020,12,147.0 +94,SP98,2021,10,163.04 +94,SP98,2021,3,156.2 +94,SP98,2021,1,152.0 +94,SP98,2021,2,153.57 +94,SP98,2021,4,159.05 +94,SP98,2021,5,159.05 +94,SP98,2021,6,159.05 +94,SP98,2021,7,159.05 +94,SP98,2021,8,159.05 +94,SP98,2021,9,159.05 +94,SP98,2021,11,164.2 +94,SP98,2021,12,164.2 +94,SP98,2022,10,150.0 +94,SP98,2022,1, +94,SP98,2022,2, +94,SP98,2022,3, +94,SP98,2022,4, +94,SP98,2022,5, +94,SP98,2022,6, +94,SP98,2022,7, +94,SP98,2022,8, +94,SP98,2022,9, +94,SP98,2022,11,150.0 +94,SP98,2022,12,150.0 +94,SP98,2023,5,195.0 +94,SP98,2023,1, +94,SP98,2023,2, +94,SP98,2023,3, +94,SP98,2023,4, +94,SP98,2023,6,195.0 +94,SP98,2023,7,195.0 +94,SP98,2023,8,195.0 +94,SP98,2023,9,195.0 +94,SP98,2023,10,195.0 +94,SP98,2023,11,195.0 +94,SP98,2023,12,195.0 +94,SP98,2024,1, +94,SP98,2024,2, +94,SP98,2024,3, +94,SP98,2024,4, +94,SP98,2024,5, +94,SP98,2024,6, +94,SP98,2024,7, +94,SP98,2024,8, +94,SP98,2024,9, +94,SP98,2024,10, +94,SP98,2024,11, +94,SP98,2024,12, +26,Gazole,2007,1,102.27 +26,Gazole,2007,2,102.59 +26,Gazole,2007,3,104.17 +26,Gazole,2007,4,106.77 +26,Gazole,2007,5,107.51 +26,Gazole,2007,6,108.71 +26,Gazole,2007,7,109.85 +26,Gazole,2007,8,109.86 +26,Gazole,2007,9,111.24 +26,Gazole,2007,10,113.03 +26,Gazole,2007,11,121.24 +26,Gazole,2007,12,122.07 +26,Gazole,2008,1,121.69 +26,Gazole,2008,2,121.61 +26,Gazole,2008,3,127.7 +26,Gazole,2008,4,130.35 +26,Gazole,2008,5,139.91 +26,Gazole,2008,6,145.6 +26,Gazole,2008,7,144.36 +26,Gazole,2008,8,135.65 +26,Gazole,2008,9,131.81 +26,Gazole,2008,10,123.9 +26,Gazole,2008,11,113.57 +26,Gazole,2008,12,102.24 +26,Gazole,2009,1,99.46 +26,Gazole,2009,2,98.15 +26,Gazole,2009,3,95.63 +26,Gazole,2009,4,98.02 +26,Gazole,2009,5,98.29 +26,Gazole,2009,6,102.76 +26,Gazole,2009,7,101.78 +26,Gazole,2009,8,104.41 +26,Gazole,2009,9,103.13 +26,Gazole,2009,10,103.64 +26,Gazole,2009,11,106.02 +26,Gazole,2009,12,105.19 +26,Gazole,2010,1,109.58 +26,Gazole,2010,2,109.9 +26,Gazole,2010,3,113.4 +26,Gazole,2010,4,116.96 +26,Gazole,2010,5,118.63 +26,Gazole,2010,6,118.08 +26,Gazole,2010,7,116.07 +26,Gazole,2010,8,115.8 +26,Gazole,2010,9,116.16 +26,Gazole,2010,10,118.36 +26,Gazole,2010,11,119.71 +26,Gazole,2010,12,123.36 +26,Gazole,2011,1,130.36 +26,Gazole,2011,2,133.11 +26,Gazole,2011,3,138.77 +26,Gazole,2011,4,139.74 +26,Gazole,2011,5,136.4 +26,Gazole,2011,6,135.12 +26,Gazole,2011,7,135.29 +26,Gazole,2011,8,134.92 +26,Gazole,2011,9,136.09 +26,Gazole,2011,10,137.28 +26,Gazole,2011,11,140.6 +26,Gazole,2011,12,140.55 +26,Gazole,2012,1,142.94 +26,Gazole,2012,2,144.65 +26,Gazole,2012,3,147.32 +26,Gazole,2012,4,146.27 +26,Gazole,2012,5,143.14 +26,Gazole,2012,6,137.71 +26,Gazole,2012,7,139.51 +26,Gazole,2012,8,145.28 +26,Gazole,2012,9,142.44 +26,Gazole,2012,10,141.73 +26,Gazole,2012,11,139.49 +26,Gazole,2012,12,138.79 +26,Gazole,2013,1,140.14 +26,Gazole,2013,2,143.29 +26,Gazole,2013,3,142.06 +26,Gazole,2013,4,138.18 +26,Gazole,2013,5,135.5 +26,Gazole,2013,6,135.65 +26,Gazole,2013,7,137.23 +26,Gazole,2013,8,137.85 +26,Gazole,2013,9,139.63 +26,Gazole,2013,10,136.02 +26,Gazole,2013,11,134.72 +26,Gazole,2013,12,136.35 +26,Gazole,2014,1,135.2 +26,Gazole,2014,2,135.56 +26,Gazole,2014,3,134.57 +26,Gazole,2014,4,133.8 +26,Gazole,2014,5,133.71 +26,Gazole,2014,6,134.01 +26,Gazole,2014,7,133.79 +26,Gazole,2014,8,133.06 +26,Gazole,2014,9,132.54 +26,Gazole,2014,10,129.64 +26,Gazole,2014,11,126.68 +26,Gazole,2014,12,118.35 +26,Gazole,2015,1,114.3 +26,Gazole,2015,2,119.41 +26,Gazole,2015,3,123.23 +26,Gazole,2015,4,123.03 +26,Gazole,2015,5,125.88 +26,Gazole,2015,6,124.42 +26,Gazole,2015,7,120.98 +26,Gazole,2015,8,115.63 +26,Gazole,2015,9,113.46 +26,Gazole,2015,10,112.95 +26,Gazole,2015,11,112.48 +26,Gazole,2015,12,106.57 +26,Gazole,2016,1, +26,Gazole,2016,2, +26,Gazole,2016,3, +26,Gazole,2016,4, +26,Gazole,2016,5, +26,Gazole,2016,6, +26,Gazole,2016,7, +26,Gazole,2016,8, +26,Gazole,2016,9, +26,Gazole,2016,10, +26,Gazole,2016,11, +26,Gazole,2016,12, +26,Gazole,2017,1, +26,Gazole,2017,2, +26,Gazole,2017,3, +26,Gazole,2017,4, +26,Gazole,2017,5, +26,Gazole,2017,6, +26,Gazole,2017,7, +26,Gazole,2017,8, +26,Gazole,2017,9, +26,Gazole,2017,10, +26,Gazole,2017,11, +26,Gazole,2017,12, +26,Gazole,2018,1, +26,Gazole,2018,2, +26,Gazole,2018,3, +26,Gazole,2018,4, +26,Gazole,2018,5, +26,Gazole,2018,6, +26,Gazole,2018,7, +26,Gazole,2018,8, +26,Gazole,2018,9, +26,Gazole,2018,10, +26,Gazole,2018,11, +26,Gazole,2018,12, +26,Gazole,2019,1, +26,Gazole,2019,2, +26,Gazole,2019,3, +26,Gazole,2019,4, +26,Gazole,2019,5, +26,Gazole,2019,6, +26,Gazole,2019,7, +26,Gazole,2019,8, +26,Gazole,2019,9, +26,Gazole,2019,10, +26,Gazole,2019,11, +26,Gazole,2019,12, +26,Gazole,2020,1, +26,Gazole,2020,2, +26,Gazole,2020,3, +26,Gazole,2020,4, +26,Gazole,2020,5, +26,Gazole,2020,6, +26,Gazole,2020,7, +26,Gazole,2020,8, +26,Gazole,2020,9, +26,Gazole,2020,10, +26,Gazole,2020,11, +26,Gazole,2020,12, +26,Gazole,2021,1, +26,Gazole,2021,2, +26,Gazole,2021,3, +26,Gazole,2021,4, +26,Gazole,2021,5, +26,Gazole,2021,6, +26,Gazole,2021,7, +26,Gazole,2021,8, +26,Gazole,2021,9, +26,Gazole,2021,10, +26,Gazole,2021,11, +26,Gazole,2021,12, +26,Gazole,2022,1, +26,Gazole,2022,2, +26,Gazole,2022,3, +26,Gazole,2022,4, +26,Gazole,2022,5, +26,Gazole,2022,6, +26,Gazole,2022,7, +26,Gazole,2022,8, +26,Gazole,2022,9, +26,Gazole,2022,10, +26,Gazole,2022,11, +26,Gazole,2022,12, +26,Gazole,2023,1, +26,Gazole,2023,2, +26,Gazole,2023,3, +26,Gazole,2023,4, +26,Gazole,2023,5, +26,Gazole,2023,6, +26,Gazole,2023,7, +26,Gazole,2023,8, +26,Gazole,2023,9, +26,Gazole,2023,10, +26,Gazole,2023,11, +26,Gazole,2023,12, +26,Gazole,2024,1, +26,Gazole,2024,2, +26,Gazole,2024,3, +26,Gazole,2024,4, +26,Gazole,2024,5, +26,Gazole,2024,6, +26,Gazole,2024,7, +26,Gazole,2024,8, +26,Gazole,2024,9, +26,Gazole,2024,10, +26,Gazole,2024,11, +26,Gazole,2024,12, +26,SP95,2007,1,118.32 +26,SP95,2007,2,119.15 +26,SP95,2007,3,123.93 +26,SP95,2007,4,128.15 +26,SP95,2007,5,131.76 +26,SP95,2007,6,132.57 +26,SP95,2007,7,132.26 +26,SP95,2007,8,128.71 +26,SP95,2007,9,129.02 +26,SP95,2007,10,129.39 +26,SP95,2007,11,135.14 +26,SP95,2007,12,134.75 +26,SP95,2008,1,137.47 +26,SP95,2008,2,136.79 +26,SP95,2008,3,138.74 +26,SP95,2008,4,140.43 +26,SP95,2008,5,145.86 +26,SP95,2008,6,151.07 +26,SP95,2008,7,150.04 +26,SP95,2008,8,144.29 +26,SP95,2008,9,143.56 +26,SP95,2008,10,134.14 +26,SP95,2008,11,121.1 +26,SP95,2008,12,112.13 +26,SP95,2009,1,111.94 +26,SP95,2009,2,115.91 +26,SP95,2009,3,116.25 +26,SP95,2009,4,118.9 +26,SP95,2009,5,122.09 +26,SP95,2009,6,128.61 +26,SP95,2009,7,126.22 +26,SP95,2009,8,128.68 +26,SP95,2009,9,126.52 +26,SP95,2009,10,125.75 +26,SP95,2009,11,128.47 +26,SP95,2009,12,127.89 +26,SP95,2010,1,131.99 +26,SP95,2010,2,133.19 +26,SP95,2010,3,137.3 +26,SP95,2010,4,139.38 +26,SP95,2010,5,139.4 +26,SP95,2010,6,138.04 +26,SP95,2010,7,136.24 +26,SP95,2010,8,135.11 +26,SP95,2010,9,135.27 +26,SP95,2010,10,137.17 +26,SP95,2010,11,138.65 +26,SP95,2010,12,142.9 +26,SP95,2011,1,148.79 +26,SP95,2011,2,149.47 +26,SP95,2011,3,153.53 +26,SP95,2011,4,155.39 +26,SP95,2011,5,155.62 +26,SP95,2011,6,153.03 +26,SP95,2011,7,152.68 +26,SP95,2011,8,152.65 +26,SP95,2011,9,153.79 +26,SP95,2011,10,152.78 +26,SP95,2011,11,152.17 +26,SP95,2011,12,151.78 +26,SP95,2012,1,156.45 +26,SP95,2012,2,160.98 +26,SP95,2012,3,165.66 +26,SP95,2012,4,168.41 +26,SP95,2012,5,162.26 +26,SP95,2012,6,156.65 +26,SP95,2012,7,157.15 +26,SP95,2012,8,163.52 +26,SP95,2012,9,160.98 +26,SP95,2012,10,158.51 +26,SP95,2012,11,153.44 +26,SP95,2012,12,153.73 +26,SP95,2013,1,157.18 +26,SP95,2013,2,163.18 +26,SP95,2013,3,162.88 +26,SP95,2013,4,159.11 +26,SP95,2013,5,155.7 +26,SP95,2013,6,156.52 +26,SP95,2013,7,157.05 +26,SP95,2013,8,157.41 +26,SP95,2013,9,157.05 +26,SP95,2013,10,152.43 +26,SP95,2013,11,151.2 +26,SP95,2013,12,152.85 +26,SP95,2014,1,152.16 +26,SP95,2014,2,152.85 +26,SP95,2014,3,153.34 +26,SP95,2014,4,153.94 +26,SP95,2014,5,154.28 +26,SP95,2014,6,154.99 +26,SP95,2014,7,155.63 +26,SP95,2014,8,153.3 +26,SP95,2014,9,152.34 +26,SP95,2014,10,149.85 +26,SP95,2014,11,146.17 +26,SP95,2014,12,138.28 +26,SP95,2015,1,130.74 +26,SP95,2015,2,135.18 +26,SP95,2015,3,140.35 +26,SP95,2015,4,142.25 +26,SP95,2015,5,145.07 +26,SP95,2015,6,145.77 +26,SP95,2015,7,144.87 +26,SP95,2015,8,139.62 +26,SP95,2015,9,133.6 +26,SP95,2015,10,132.14 +26,SP95,2015,11,131.41 +26,SP95,2015,12,129.92 +26,SP95,2016,1, +26,SP95,2016,2, +26,SP95,2016,3, +26,SP95,2016,4, +26,SP95,2016,5, +26,SP95,2016,6, +26,SP95,2016,7, +26,SP95,2016,8, +26,SP95,2016,9, +26,SP95,2016,10, +26,SP95,2016,11, +26,SP95,2016,12, +26,SP95,2017,1, +26,SP95,2017,2, +26,SP95,2017,3, +26,SP95,2017,4, +26,SP95,2017,5, +26,SP95,2017,6, +26,SP95,2017,7, +26,SP95,2017,8, +26,SP95,2017,9, +26,SP95,2017,10, +26,SP95,2017,11, +26,SP95,2017,12, +26,SP95,2018,1, +26,SP95,2018,2, +26,SP95,2018,3, +26,SP95,2018,4, +26,SP95,2018,5, +26,SP95,2018,6, +26,SP95,2018,7, +26,SP95,2018,8, +26,SP95,2018,9, +26,SP95,2018,10, +26,SP95,2018,11, +26,SP95,2018,12, +26,SP95,2019,1, +26,SP95,2019,2, +26,SP95,2019,3, +26,SP95,2019,4, +26,SP95,2019,5, +26,SP95,2019,6, +26,SP95,2019,7, +26,SP95,2019,8, +26,SP95,2019,9, +26,SP95,2019,10, +26,SP95,2019,11, +26,SP95,2019,12, +26,SP95,2020,1, +26,SP95,2020,2, +26,SP95,2020,3, +26,SP95,2020,4, +26,SP95,2020,5, +26,SP95,2020,6, +26,SP95,2020,7, +26,SP95,2020,8, +26,SP95,2020,9, +26,SP95,2020,10, +26,SP95,2020,11, +26,SP95,2020,12, +26,SP95,2021,1, +26,SP95,2021,2, +26,SP95,2021,3, +26,SP95,2021,4, +26,SP95,2021,5, +26,SP95,2021,6, +26,SP95,2021,7, +26,SP95,2021,8, +26,SP95,2021,9, +26,SP95,2021,10, +26,SP95,2021,11, +26,SP95,2021,12, +26,SP95,2022,1, +26,SP95,2022,2, +26,SP95,2022,3, +26,SP95,2022,4, +26,SP95,2022,5, +26,SP95,2022,6, +26,SP95,2022,7, +26,SP95,2022,8, +26,SP95,2022,9, +26,SP95,2022,10, +26,SP95,2022,11, +26,SP95,2022,12, +26,SP95,2023,1, +26,SP95,2023,2, +26,SP95,2023,3, +26,SP95,2023,4, +26,SP95,2023,5, +26,SP95,2023,6, +26,SP95,2023,7, +26,SP95,2023,8, +26,SP95,2023,9, +26,SP95,2023,10, +26,SP95,2023,11, +26,SP95,2023,12, +26,SP95,2024,1, +26,SP95,2024,2, +26,SP95,2024,3, +26,SP95,2024,4, +26,SP95,2024,5, +26,SP95,2024,6, +26,SP95,2024,7, +26,SP95,2024,8, +26,SP95,2024,9, +26,SP95,2024,10, +26,SP95,2024,11, +26,SP95,2024,12, +26,GPLc,2007,11,76.3 +26,GPLc,2007,12,74.65 +26,GPLc,2007,1, +26,GPLc,2007,2, +26,GPLc,2007,3, +26,GPLc,2007,4, +26,GPLc,2007,5, +26,GPLc,2007,6, +26,GPLc,2007,7, +26,GPLc,2007,8, +26,GPLc,2007,9, +26,GPLc,2007,10, +26,GPLc,2008,4,75.09 +26,GPLc,2008,6,76.84 +26,GPLc,2008,7,77.62 +26,GPLc,2008,11,77.27 +26,GPLc,2008,12,73.92 +26,GPLc,2008,5,75.35 +26,GPLc,2008,8,78.72 +26,GPLc,2008,9,78.8 +26,GPLc,2008,10,78.7 +26,GPLc,2008,1,74.79 +26,GPLc,2008,2,75.47 +26,GPLc,2008,3,75.65 +26,GPLc,2009,3,68.91 +26,GPLc,2009,4,66.45 +26,GPLc,2009,6,65.41 +26,GPLc,2009,7,65.35 +26,GPLc,2009,9,67.26 +26,GPLc,2009,10,67.59 +26,GPLc,2009,11,68.61 +26,GPLc,2009,12,70.94 +26,GPLc,2009,5,65.19 +26,GPLc,2009,8,65.14 +26,GPLc,2009,1,70.06 +26,GPLc,2009,2,70.06 +26,GPLc,2010,1,70.46 +26,GPLc,2010,2,71.23 +26,GPLc,2010,3,70.33 +26,GPLc,2010,4,70.06 +26,GPLc,2010,5,71.28 +26,GPLc,2010,6,72.1 +26,GPLc,2010,7,73.85 +26,GPLc,2010,8,74.51 +26,GPLc,2010,9,74.88 +26,GPLc,2010,10,75.47 +26,GPLc,2010,11,76.18 +26,GPLc,2010,12,79.53 +26,GPLc,2011,1,83.5 +26,GPLc,2011,2,84.31 +26,GPLc,2011,3,85.17 +26,GPLc,2011,4,84.09 +26,GPLc,2011,5,84.47 +26,GPLc,2011,6,84.84 +26,GPLc,2011,7,85.57 +26,GPLc,2011,8,86.29 +26,GPLc,2011,9,86.44 +26,GPLc,2011,10,86.37 +26,GPLc,2011,11,86.31 +26,GPLc,2011,12,86.31 +26,GPLc,2012,1,85.7 +26,GPLc,2012,2,87.73 +26,GPLc,2012,3,89.86 +26,GPLc,2012,4,90.15 +26,GPLc,2012,5,89.91 +26,GPLc,2012,6,89.6 +26,GPLc,2012,7,88.23 +26,GPLc,2012,8,88.05 +26,GPLc,2012,9,87.92 +26,GPLc,2012,10,88.75 +26,GPLc,2012,11,89.23 +26,GPLc,2012,12,89.31 +26,GPLc,2013,1,91.01 +26,GPLc,2013,2,90.82 +26,GPLc,2013,3,91.15 +26,GPLc,2013,4,90.94 +26,GPLc,2013,5,89.91 +26,GPLc,2013,6,89.56 +26,GPLc,2013,7,89.01 +26,GPLc,2013,8,88.63 +26,GPLc,2013,9,88.69 +26,GPLc,2013,10,88.26 +26,GPLc,2013,11,88.21 +26,GPLc,2013,12,88.6 +26,GPLc,2014,1,88.97 +26,GPLc,2014,2,89.47 +26,GPLc,2014,3,89.18 +26,GPLc,2014,4,89.12 +26,GPLc,2014,5,88.84 +26,GPLc,2014,6,87.81 +26,GPLc,2014,7,87.31 +26,GPLc,2014,8,87.08 +26,GPLc,2014,9,86.95 +26,GPLc,2014,10,86.75 +26,GPLc,2014,11,86.48 +26,GPLc,2014,12,85.77 +26,GPLc,2015,4,83.36 +26,GPLc,2015,6,82.76 +26,GPLc,2015,7,81.69 +26,GPLc,2015,8,81.42 +26,GPLc,2015,10,78.72 +26,GPLc,2015,12,77.21 +26,GPLc,2015,3,83.87 +26,GPLc,2015,5,83.6 +26,GPLc,2015,9,80.47 +26,GPLc,2015,11,77.83 +26,GPLc,2015,1,85.87 +26,GPLc,2015,2,84.51 +26,GPLc,2016,1, +26,GPLc,2016,2, +26,GPLc,2016,3, +26,GPLc,2016,4, +26,GPLc,2016,5, +26,GPLc,2016,6, +26,GPLc,2016,7, +26,GPLc,2016,8, +26,GPLc,2016,9, +26,GPLc,2016,10, +26,GPLc,2016,11, +26,GPLc,2016,12, +26,GPLc,2017,1, +26,GPLc,2017,2, +26,GPLc,2017,3, +26,GPLc,2017,4, +26,GPLc,2017,5, +26,GPLc,2017,6, +26,GPLc,2017,7, +26,GPLc,2017,8, +26,GPLc,2017,9, +26,GPLc,2017,10, +26,GPLc,2017,11, +26,GPLc,2017,12, +26,GPLc,2018,1, +26,GPLc,2018,2, +26,GPLc,2018,3, +26,GPLc,2018,4, +26,GPLc,2018,5, +26,GPLc,2018,6, +26,GPLc,2018,7, +26,GPLc,2018,8, +26,GPLc,2018,9, +26,GPLc,2018,10, +26,GPLc,2018,11, +26,GPLc,2018,12, +26,GPLc,2019,1, +26,GPLc,2019,2, +26,GPLc,2019,3, +26,GPLc,2019,4, +26,GPLc,2019,5, +26,GPLc,2019,6, +26,GPLc,2019,7, +26,GPLc,2019,8, +26,GPLc,2019,9, +26,GPLc,2019,10, +26,GPLc,2019,11, +26,GPLc,2019,12, +26,GPLc,2020,1, +26,GPLc,2020,2, +26,GPLc,2020,3, +26,GPLc,2020,4, +26,GPLc,2020,5, +26,GPLc,2020,6, +26,GPLc,2020,7, +26,GPLc,2020,8, +26,GPLc,2020,9, +26,GPLc,2020,10, +26,GPLc,2020,11, +26,GPLc,2020,12, +26,GPLc,2021,1, +26,GPLc,2021,2, +26,GPLc,2021,3, +26,GPLc,2021,4, +26,GPLc,2021,5, +26,GPLc,2021,6, +26,GPLc,2021,7, +26,GPLc,2021,8, +26,GPLc,2021,9, +26,GPLc,2021,10, +26,GPLc,2021,11, +26,GPLc,2021,12, +26,GPLc,2022,1, +26,GPLc,2022,2, +26,GPLc,2022,3, +26,GPLc,2022,4, +26,GPLc,2022,5, +26,GPLc,2022,6, +26,GPLc,2022,7, +26,GPLc,2022,8, +26,GPLc,2022,9, +26,GPLc,2022,10, +26,GPLc,2022,11, +26,GPLc,2022,12, +26,GPLc,2023,1, +26,GPLc,2023,2, +26,GPLc,2023,3, +26,GPLc,2023,4, +26,GPLc,2023,5, +26,GPLc,2023,6, +26,GPLc,2023,7, +26,GPLc,2023,8, +26,GPLc,2023,9, +26,GPLc,2023,10, +26,GPLc,2023,11, +26,GPLc,2023,12, +26,GPLc,2024,1, +26,GPLc,2024,2, +26,GPLc,2024,3, +26,GPLc,2024,4, +26,GPLc,2024,5, +26,GPLc,2024,6, +26,GPLc,2024,7, +26,GPLc,2024,8, +26,GPLc,2024,9, +26,GPLc,2024,10, +26,GPLc,2024,11, +26,GPLc,2024,12, +26,E85,2007,12,79.9 +26,E85,2007,1, +26,E85,2007,2, +26,E85,2007,3, +26,E85,2007,4, +26,E85,2007,5, +26,E85,2007,6, +26,E85,2007,7, +26,E85,2007,8, +26,E85,2007,9, +26,E85,2007,10, +26,E85,2007,11, +26,E85,2008,1,80.56 +26,E85,2008,2,81.04 +26,E85,2008,3,81.02 +26,E85,2008,4,81.13 +26,E85,2008,5,81.15 +26,E85,2008,6,81.03 +26,E85,2008,7,81.94 +26,E85,2008,8,82.02 +26,E85,2008,9,82.44 +26,E85,2008,10,83.56 +26,E85,2008,11,83.17 +26,E85,2008,12,81.91 +26,E85,2009,9,99.88 +26,E85,2009,3,88.35 +26,E85,2009,1,88.05 +26,E85,2009,2,90.24 +26,E85,2009,4,87.6 +26,E85,2009,5,87.89 +26,E85,2009,6,88.73 +26,E85,2009,7,93.96 +26,E85,2009,8,102.04 +26,E85,2009,10,102.23 +26,E85,2009,11,104.96 +26,E85,2009,12,108.51 +26,E85,2010,11,122.56 +26,E85,2010,1,110.71 +26,E85,2010,2,108.23 +26,E85,2010,3,112.71 +26,E85,2010,4,116.35 +26,E85,2010,6,119.51 +26,E85,2010,7,121.49 +26,E85,2010,8,122.58 +26,E85,2010,9,122.46 +26,E85,2010,10,122.48 +26,E85,2010,12,124.65 +26,E85,2010,5,117.87 +26,E85,2011,3,87.35 +26,E85,2011,1,85.04 +26,E85,2011,2,87.05 +26,E85,2011,4,89.01 +26,E85,2011,5,89.93 +26,E85,2011,6,90.66 +26,E85,2011,7,90.02 +26,E85,2011,8,89.65 +26,E85,2011,9,87.4 +26,E85,2011,11,87.46 +26,E85,2011,10,87.36 +26,E85,2011,12,87.88 +26,E85,2012,8,92.15 +26,E85,2012,2,90.48 +26,E85,2012,4,96.68 +26,E85,2012,5,94.07 +26,E85,2012,7,93.4 +26,E85,2012,9,90.42 +26,E85,2012,10,90.54 +26,E85,2012,12,89.83 +26,E85,2012,3,92.66 +26,E85,2012,1,87.77 +26,E85,2012,6,93.52 +26,E85,2012,11,90.77 +26,E85,2013,1,89.7 +26,E85,2013,2,91.54 +26,E85,2013,3,92.0 +26,E85,2013,4,91.87 +26,E85,2013,5,91.39 +26,E85,2013,7,90.67 +26,E85,2013,9,90.12 +26,E85,2013,10,90.09 +26,E85,2013,11,89.88 +26,E85,2013,12,89.05 +26,E85,2013,6,91.07 +26,E85,2013,8,91.07 +26,E85,2014,1,88.58 +26,E85,2014,2,89.48 +26,E85,2014,3,90.08 +26,E85,2014,4,89.54 +26,E85,2014,5,92.23 +26,E85,2014,6,86.74 +26,E85,2014,7,85.56 +26,E85,2014,8,84.54 +26,E85,2014,9,84.71 +26,E85,2014,10,84.71 +26,E85,2014,11,85.34 +26,E85,2014,12,90.24 +26,E85,2015,4,101.29 +26,E85,2015,1,96.29 +26,E85,2015,3,100.62 +26,E85,2015,7,107.26 +26,E85,2015,8,107.96 +26,E85,2015,9,106.97 +26,E85,2015,10,101.67 +26,E85,2015,11,100.4 +26,E85,2015,12,97.28 +26,E85,2015,2,96.82 +26,E85,2015,5,105.46 +26,E85,2015,6,106.07 +26,E85,2016,1, +26,E85,2016,2, +26,E85,2016,3, +26,E85,2016,4, +26,E85,2016,5, +26,E85,2016,6, +26,E85,2016,7, +26,E85,2016,8, +26,E85,2016,9, +26,E85,2016,10, +26,E85,2016,11, +26,E85,2016,12, +26,E85,2017,1, +26,E85,2017,2, +26,E85,2017,3, +26,E85,2017,4, +26,E85,2017,5, +26,E85,2017,6, +26,E85,2017,7, +26,E85,2017,8, +26,E85,2017,9, +26,E85,2017,10, +26,E85,2017,11, +26,E85,2017,12, +26,E85,2018,1, +26,E85,2018,2, +26,E85,2018,3, +26,E85,2018,4, +26,E85,2018,5, +26,E85,2018,6, +26,E85,2018,7, +26,E85,2018,8, +26,E85,2018,9, +26,E85,2018,10, +26,E85,2018,11, +26,E85,2018,12, +26,E85,2019,1, +26,E85,2019,2, +26,E85,2019,3, +26,E85,2019,4, +26,E85,2019,5, +26,E85,2019,6, +26,E85,2019,7, +26,E85,2019,8, +26,E85,2019,9, +26,E85,2019,10, +26,E85,2019,11, +26,E85,2019,12, +26,E85,2020,1, +26,E85,2020,2, +26,E85,2020,3, +26,E85,2020,4, +26,E85,2020,5, +26,E85,2020,6, +26,E85,2020,7, +26,E85,2020,8, +26,E85,2020,9, +26,E85,2020,10, +26,E85,2020,11, +26,E85,2020,12, +26,E85,2021,1, +26,E85,2021,2, +26,E85,2021,3, +26,E85,2021,4, +26,E85,2021,5, +26,E85,2021,6, +26,E85,2021,7, +26,E85,2021,8, +26,E85,2021,9, +26,E85,2021,10, +26,E85,2021,11, +26,E85,2021,12, +26,E85,2022,1, +26,E85,2022,2, +26,E85,2022,3, +26,E85,2022,4, +26,E85,2022,5, +26,E85,2022,6, +26,E85,2022,7, +26,E85,2022,8, +26,E85,2022,9, +26,E85,2022,10, +26,E85,2022,11, +26,E85,2022,12, +26,E85,2023,1, +26,E85,2023,2, +26,E85,2023,3, +26,E85,2023,4, +26,E85,2023,5, +26,E85,2023,6, +26,E85,2023,7, +26,E85,2023,8, +26,E85,2023,9, +26,E85,2023,10, +26,E85,2023,11, +26,E85,2023,12, +26,E85,2024,1, +26,E85,2024,2, +26,E85,2024,3, +26,E85,2024,4, +26,E85,2024,5, +26,E85,2024,6, +26,E85,2024,7, +26,E85,2024,8, +26,E85,2024,9, +26,E85,2024,10, +26,E85,2024,11, +26,E85,2024,12, +26,E10,2009,9,124.34 +26,E10,2009,10,125.47 +26,E10,2009,11,128.24 +26,E10,2009,12,127.52 +26,E10,2009,5,118.3 +26,E10,2009,6,124.24 +26,E10,2009,7,123.21 +26,E10,2009,8,125.54 +26,E10,2009,4,119.19 +26,E10,2009,1, +26,E10,2009,2, +26,E10,2009,3, +26,E10,2010,1,131.27 +26,E10,2010,2,133.29 +26,E10,2010,3,136.93 +26,E10,2010,4,138.88 +26,E10,2010,5,139.86 +26,E10,2010,6,139.02 +26,E10,2010,7,137.48 +26,E10,2010,8,135.96 +26,E10,2010,9,135.86 +26,E10,2010,10,137.08 +26,E10,2010,11,138.33 +26,E10,2010,12,141.99 +26,E10,2011,1,147.76 +26,E10,2011,2,149.22 +26,E10,2011,3,154.11 +26,E10,2011,4,156.35 +26,E10,2011,5,156.41 +26,E10,2011,6,154.08 +26,E10,2011,7,154.02 +26,E10,2011,8,153.28 +26,E10,2011,9,154.56 +26,E10,2011,10,153.12 +26,E10,2011,11,152.56 +26,E10,2011,12,151.98 +26,E10,2012,1,157.07 +26,E10,2012,2,160.61 +26,E10,2012,3,165.27 +26,E10,2012,4,167.43 +26,E10,2012,5,160.85 +26,E10,2012,6,155.07 +26,E10,2012,7,155.98 +26,E10,2012,8,161.81 +26,E10,2012,9,158.32 +26,E10,2012,10,155.2 +26,E10,2012,11,149.92 +26,E10,2012,12,151.1 +26,E10,2013,1,155.76 +26,E10,2013,2,161.8 +26,E10,2013,3,161.2 +26,E10,2013,4,157.64 +26,E10,2013,5,154.59 +26,E10,2013,6,155.31 +26,E10,2013,7,156.18 +26,E10,2013,8,156.44 +26,E10,2013,9,155.57 +26,E10,2013,10,151.3 +26,E10,2013,11,150.33 +26,E10,2013,12,151.57 +26,E10,2014,1,150.68 +26,E10,2014,2,151.44 +26,E10,2014,3,151.73 +26,E10,2014,4,152.52 +26,E10,2014,5,152.98 +26,E10,2014,6,153.78 +26,E10,2014,7,154.42 +26,E10,2014,8,152.34 +26,E10,2014,9,151.21 +26,E10,2014,10,148.85 +26,E10,2014,11,145.1 +26,E10,2014,12,137.5 +26,E10,2015,1,130.25 +26,E10,2015,2,134.91 +26,E10,2015,3,140.25 +26,E10,2015,4,142.03 +26,E10,2015,5,144.64 +26,E10,2015,6,145.36 +26,E10,2015,7,144.43 +26,E10,2015,8,138.59 +26,E10,2015,9,132.83 +26,E10,2015,10,131.48 +26,E10,2015,11,131.08 +26,E10,2015,12,129.17 +26,E10,2016,1, +26,E10,2016,2, +26,E10,2016,3, +26,E10,2016,4, +26,E10,2016,5, +26,E10,2016,6, +26,E10,2016,7, +26,E10,2016,8, +26,E10,2016,9, +26,E10,2016,10, +26,E10,2016,11, +26,E10,2016,12, +26,E10,2017,1, +26,E10,2017,2, +26,E10,2017,3, +26,E10,2017,4, +26,E10,2017,5, +26,E10,2017,6, +26,E10,2017,7, +26,E10,2017,8, +26,E10,2017,9, +26,E10,2017,10, +26,E10,2017,11, +26,E10,2017,12, +26,E10,2018,1, +26,E10,2018,2, +26,E10,2018,3, +26,E10,2018,4, +26,E10,2018,5, +26,E10,2018,6, +26,E10,2018,7, +26,E10,2018,8, +26,E10,2018,9, +26,E10,2018,10, +26,E10,2018,11, +26,E10,2018,12, +26,E10,2019,1, +26,E10,2019,2, +26,E10,2019,3, +26,E10,2019,4, +26,E10,2019,5, +26,E10,2019,6, +26,E10,2019,7, +26,E10,2019,8, +26,E10,2019,9, +26,E10,2019,10, +26,E10,2019,11, +26,E10,2019,12, +26,E10,2020,1, +26,E10,2020,2, +26,E10,2020,3, +26,E10,2020,4, +26,E10,2020,5, +26,E10,2020,6, +26,E10,2020,7, +26,E10,2020,8, +26,E10,2020,9, +26,E10,2020,10, +26,E10,2020,11, +26,E10,2020,12, +26,E10,2021,1, +26,E10,2021,2, +26,E10,2021,3, +26,E10,2021,4, +26,E10,2021,5, +26,E10,2021,6, +26,E10,2021,7, +26,E10,2021,8, +26,E10,2021,9, +26,E10,2021,10, +26,E10,2021,11, +26,E10,2021,12, +26,E10,2022,1, +26,E10,2022,2, +26,E10,2022,3, +26,E10,2022,4, +26,E10,2022,5, +26,E10,2022,6, +26,E10,2022,7, +26,E10,2022,8, +26,E10,2022,9, +26,E10,2022,10, +26,E10,2022,11, +26,E10,2022,12, +26,E10,2023,1, +26,E10,2023,2, +26,E10,2023,3, +26,E10,2023,4, +26,E10,2023,5, +26,E10,2023,6, +26,E10,2023,7, +26,E10,2023,8, +26,E10,2023,9, +26,E10,2023,10, +26,E10,2023,11, +26,E10,2023,12, +26,E10,2024,1, +26,E10,2024,2, +26,E10,2024,3, +26,E10,2024,4, +26,E10,2024,5, +26,E10,2024,6, +26,E10,2024,7, +26,E10,2024,8, +26,E10,2024,9, +26,E10,2024,10, +26,E10,2024,11, +26,E10,2024,12, +26,SP98,2013,6,159.5 +26,SP98,2013,7,161.25 +26,SP98,2013,8,161.81 +26,SP98,2013,9,161.67 +26,SP98,2013,10,157.45 +26,SP98,2013,11,155.83 +26,SP98,2013,12,157.1 +26,SP98,2013,1, +26,SP98,2013,2, +26,SP98,2013,3, +26,SP98,2013,4, +26,SP98,2013,5, +26,SP98,2014,1,156.67 +26,SP98,2014,2,157.29 +26,SP98,2014,3,157.6 +26,SP98,2014,4,158.17 +26,SP98,2014,5,158.61 +26,SP98,2014,6,159.22 +26,SP98,2014,7,159.79 +26,SP98,2014,8,157.76 +26,SP98,2014,9,156.78 +26,SP98,2014,10,154.73 +26,SP98,2014,11,151.24 +26,SP98,2014,12,143.74 +26,SP98,2015,1,136.44 +26,SP98,2015,2,139.85 +26,SP98,2015,3,145.0 +26,SP98,2015,4,147.07 +26,SP98,2015,5,149.81 +26,SP98,2015,6,150.64 +26,SP98,2015,7,149.95 +26,SP98,2015,8,144.99 +26,SP98,2015,9,138.67 +26,SP98,2015,10,136.97 +26,SP98,2015,11,136.36 +26,SP98,2015,12,134.77 +26,SP98,2016,1, +26,SP98,2016,2, +26,SP98,2016,3, +26,SP98,2016,4, +26,SP98,2016,5, +26,SP98,2016,6, +26,SP98,2016,7, +26,SP98,2016,8, +26,SP98,2016,9, +26,SP98,2016,10, +26,SP98,2016,11, +26,SP98,2016,12, +26,SP98,2017,1, +26,SP98,2017,2, +26,SP98,2017,3, +26,SP98,2017,4, +26,SP98,2017,5, +26,SP98,2017,6, +26,SP98,2017,7, +26,SP98,2017,8, +26,SP98,2017,9, +26,SP98,2017,10, +26,SP98,2017,11, +26,SP98,2017,12, +26,SP98,2018,1, +26,SP98,2018,2, +26,SP98,2018,3, +26,SP98,2018,4, +26,SP98,2018,5, +26,SP98,2018,6, +26,SP98,2018,7, +26,SP98,2018,8, +26,SP98,2018,9, +26,SP98,2018,10, +26,SP98,2018,11, +26,SP98,2018,12, +26,SP98,2019,1, +26,SP98,2019,2, +26,SP98,2019,3, +26,SP98,2019,4, +26,SP98,2019,5, +26,SP98,2019,6, +26,SP98,2019,7, +26,SP98,2019,8, +26,SP98,2019,9, +26,SP98,2019,10, +26,SP98,2019,11, +26,SP98,2019,12, +26,SP98,2020,1, +26,SP98,2020,2, +26,SP98,2020,3, +26,SP98,2020,4, +26,SP98,2020,5, +26,SP98,2020,6, +26,SP98,2020,7, +26,SP98,2020,8, +26,SP98,2020,9, +26,SP98,2020,10, +26,SP98,2020,11, +26,SP98,2020,12, +26,SP98,2021,1, +26,SP98,2021,2, +26,SP98,2021,3, +26,SP98,2021,4, +26,SP98,2021,5, +26,SP98,2021,6, +26,SP98,2021,7, +26,SP98,2021,8, +26,SP98,2021,9, +26,SP98,2021,10, +26,SP98,2021,11, +26,SP98,2021,12, +26,SP98,2022,1, +26,SP98,2022,2, +26,SP98,2022,3, +26,SP98,2022,4, +26,SP98,2022,5, +26,SP98,2022,6, +26,SP98,2022,7, +26,SP98,2022,8, +26,SP98,2022,9, +26,SP98,2022,10, +26,SP98,2022,11, +26,SP98,2022,12, +26,SP98,2023,1, +26,SP98,2023,2, +26,SP98,2023,3, +26,SP98,2023,4, +26,SP98,2023,5, +26,SP98,2023,6, +26,SP98,2023,7, +26,SP98,2023,8, +26,SP98,2023,9, +26,SP98,2023,10, +26,SP98,2023,11, +26,SP98,2023,12, +26,SP98,2024,1, +26,SP98,2024,2, +26,SP98,2024,3, +26,SP98,2024,4, +26,SP98,2024,5, +26,SP98,2024,6, +26,SP98,2024,7, +26,SP98,2024,8, +26,SP98,2024,9, +26,SP98,2024,10, +26,SP98,2024,11, +26,SP98,2024,12, +53,Gazole,2007,1,101.06 +53,Gazole,2007,2,101.86 +53,Gazole,2007,3,103.55 +53,Gazole,2007,4,105.9 +53,Gazole,2007,5,106.28 +53,Gazole,2007,6,107.87 +53,Gazole,2007,7,108.82 +53,Gazole,2007,8,108.68 +53,Gazole,2007,9,110.53 +53,Gazole,2007,10,112.28 +53,Gazole,2007,11,120.11 +53,Gazole,2007,12,119.89 +53,Gazole,2008,1,119.54 +53,Gazole,2008,2,120.17 +53,Gazole,2008,3,125.93 +53,Gazole,2008,4,128.69 +53,Gazole,2008,5,138.7 +53,Gazole,2008,6,143.86 +53,Gazole,2008,7,142.67 +53,Gazole,2008,8,133.42 +53,Gazole,2008,9,130.51 +53,Gazole,2008,10,122.2 +53,Gazole,2008,11,111.83 +53,Gazole,2008,12,100.25 +53,Gazole,2009,1,97.78 +53,Gazole,2009,2,96.59 +53,Gazole,2009,3,94.26 +53,Gazole,2009,4,96.7 +53,Gazole,2009,5,96.99 +53,Gazole,2009,6,101.63 +53,Gazole,2009,7,99.88 +53,Gazole,2009,8,103.31 +53,Gazole,2009,9,101.31 +53,Gazole,2009,10,102.15 +53,Gazole,2009,11,104.42 +53,Gazole,2009,12,103.65 +53,Gazole,2010,1,107.91 +53,Gazole,2010,2,108.05 +53,Gazole,2010,3,111.96 +53,Gazole,2010,4,115.99 +53,Gazole,2010,5,117.03 +53,Gazole,2010,6,116.92 +53,Gazole,2010,7,114.38 +53,Gazole,2010,8,114.25 +53,Gazole,2010,9,115.07 +53,Gazole,2010,10,117.05 +53,Gazole,2010,11,118.32 +53,Gazole,2010,12,122.03 +53,Gazole,2011,1,128.64 +53,Gazole,2011,2,131.63 +53,Gazole,2011,3,136.89 +53,Gazole,2011,4,137.58 +53,Gazole,2011,5,133.66 +53,Gazole,2011,6,133.0 +53,Gazole,2011,7,133.66 +53,Gazole,2011,8,132.64 +53,Gazole,2011,9,134.44 +53,Gazole,2011,10,135.7 +53,Gazole,2011,11,139.0 +53,Gazole,2011,12,138.2 +53,Gazole,2012,1,141.48 +53,Gazole,2012,2,142.54 +53,Gazole,2012,3,145.02 +53,Gazole,2012,4,144.04 +53,Gazole,2012,5,141.22 +53,Gazole,2012,6,135.4 +53,Gazole,2012,7,138.16 +53,Gazole,2012,8,144.08 +53,Gazole,2012,9,140.1 +53,Gazole,2012,10,140.55 +53,Gazole,2012,11,138.51 +53,Gazole,2012,12,136.86 +53,Gazole,2013,1,137.98 +53,Gazole,2013,2,141.36 +53,Gazole,2013,3,140.22 +53,Gazole,2013,4,136.29 +53,Gazole,2013,5,134.14 +53,Gazole,2013,6,133.69 +53,Gazole,2013,7,135.4 +53,Gazole,2013,8,136.13 +53,Gazole,2013,9,137.64 +53,Gazole,2013,10,133.9 +53,Gazole,2013,11,132.79 +53,Gazole,2013,12,134.06 +53,Gazole,2014,1,132.86 +53,Gazole,2014,2,133.39 +53,Gazole,2014,3,132.24 +53,Gazole,2014,4,131.78 +53,Gazole,2014,5,131.68 +53,Gazole,2014,6,131.84 +53,Gazole,2014,7,131.06 +53,Gazole,2014,8,130.6 +53,Gazole,2014,9,130.01 +53,Gazole,2014,10,126.79 +53,Gazole,2014,11,124.3 +53,Gazole,2014,12,114.94 +53,Gazole,2015,1,111.14 +53,Gazole,2015,2,117.4 +53,Gazole,2015,3,121.13 +53,Gazole,2015,4,120.78 +53,Gazole,2015,5,123.82 +53,Gazole,2015,6,122.13 +53,Gazole,2015,7,118.6 +53,Gazole,2015,8,112.8 +53,Gazole,2015,9,111.15 +53,Gazole,2015,10,110.87 +53,Gazole,2015,11,110.74 +53,Gazole,2015,12,103.64 +53,Gazole,2016,1,101.83 +53,Gazole,2016,2,101.78 +53,Gazole,2016,3,106.02 +53,Gazole,2016,4,106.61 +53,Gazole,2016,5,112.14 +53,Gazole,2016,6,115.63 +53,Gazole,2016,7,112.1 +53,Gazole,2016,8,110.02 +53,Gazole,2016,9,111.05 +53,Gazole,2016,10,114.96 +53,Gazole,2016,11,114.33 +53,Gazole,2016,12,119.01 +53,Gazole,2017,1,125.74 +53,Gazole,2017,2,125.88 +53,Gazole,2017,3,123.91 +53,Gazole,2017,4,123.71 +53,Gazole,2017,5,120.75 +53,Gazole,2017,6,118.01 +53,Gazole,2017,7,116.92 +53,Gazole,2017,8,118.94 +53,Gazole,2017,9,121.58 +53,Gazole,2017,10,123.47 +53,Gazole,2017,11,126.22 +53,Gazole,2017,12,126.65 +53,Gazole,2018,1,138.2 +53,Gazole,2018,2,136.35 +53,Gazole,2018,3,135.88 +53,Gazole,2018,4,138.97 +53,Gazole,2018,5,144.46 +53,Gazole,2018,6,145.32 +53,Gazole,2018,7,143.72 +53,Gazole,2018,8,144.26 +53,Gazole,2018,9,146.82 +53,Gazole,2018,10,151.21 +53,Gazole,2018,11,147.31 +53,Gazole,2018,12,141.13 +53,Gazole,2019,1,138.6 +53,Gazole,2019,2,142.51 +53,Gazole,2019,3,145.19 +53,Gazole,2019,4,146.11 +53,Gazole,2019,5,147.42 +53,Gazole,2019,6,141.75 +53,Gazole,2019,7,141.67 +53,Gazole,2019,8,140.69 +53,Gazole,2019,9,143.13 +53,Gazole,2019,10,143.65 +53,Gazole,2019,11,143.6 +53,Gazole,2019,12,145.77 +53,Gazole,2020,1,146.11 +53,Gazole,2020,2,139.17 +53,Gazole,2020,3,128.68 +53,Gazole,2020,4,121.03 +53,Gazole,2020,5,116.25 +53,Gazole,2020,6,120.0 +53,Gazole,2020,7,123.11 +53,Gazole,2020,8,122.64 +53,Gazole,2020,9,119.73 +53,Gazole,2020,10,119.46 +53,Gazole,2020,11,120.48 +53,Gazole,2020,12,124.97 +53,Gazole,2021,1,128.94 +53,Gazole,2021,2,133.48 +53,Gazole,2021,3,137.43 +53,Gazole,2021,4,136.49 +53,Gazole,2021,5,138.18 +53,Gazole,2021,6,140.7 +53,Gazole,2021,7,143.48 +53,Gazole,2021,8,142.48 +53,Gazole,2021,9,144.58 +53,Gazole,2021,10,153.33 +53,Gazole,2021,11,154.65 +53,Gazole,2021,12,151.81 +53,Gazole,2022,1,161.0 +53,Gazole,2022,2,169.0 +53,Gazole,2022,3,202.0 +53,Gazole,2022,4,185.0 +53,Gazole,2022,5,187.0 +53,Gazole,2022,6,207.0 +53,Gazole,2022,7,198.0 +53,Gazole,2022,8,186.0 +53,Gazole,2022,9,172.0 +53,Gazole,2022,10,185.0 +53,Gazole,2022,11,185.0 +53,Gazole,2022,12,176.0 +53,Gazole,2023,1,190.0 +53,Gazole,2023,2,183.0 +53,Gazole,2023,3,182.0 +53,Gazole,2023,4,177.0 +53,Gazole,2023,5,166.0 +53,Gazole,2023,6,168.0 +53,Gazole,2023,7,169.0 +53,Gazole,2023,8,183.0 +53,Gazole,2023,9,190.0 +53,Gazole,2023,10,188.0 +53,Gazole,2023,11,182.0 +53,Gazole,2023,12,175.0 +53,Gazole,2024,1,172.0 +53,Gazole,2024,2,180.0 +53,Gazole,2024,3,178.0 +53,Gazole,2024,4,177.0 +53,Gazole,2024,5,171.0 +53,Gazole,2024,6,169.0 +53,Gazole,2024,7,172.0 +53,Gazole,2024,8,172.0 +53,Gazole,2024,9,172.0 +53,Gazole,2024,10,172.0 +53,Gazole,2024,11,172.0 +53,Gazole,2024,12,172.0 +53,SP95,2007,1,117.82 +53,SP95,2007,2,119.2 +53,SP95,2007,3,124.26 +53,SP95,2007,4,128.93 +53,SP95,2007,5,132.85 +53,SP95,2007,6,132.76 +53,SP95,2007,7,132.03 +53,SP95,2007,8,128.45 +53,SP95,2007,9,129.03 +53,SP95,2007,10,128.88 +53,SP95,2007,11,134.36 +53,SP95,2007,12,133.4 +53,SP95,2008,1,136.32 +53,SP95,2008,2,136.08 +53,SP95,2008,3,137.93 +53,SP95,2008,4,139.49 +53,SP95,2008,5,144.91 +53,SP95,2008,6,150.23 +53,SP95,2008,7,148.98 +53,SP95,2008,8,143.51 +53,SP95,2008,9,143.16 +53,SP95,2008,10,133.09 +53,SP95,2008,11,119.6 +53,SP95,2008,12,110.49 +53,SP95,2009,1,110.77 +53,SP95,2009,2,115.82 +53,SP95,2009,3,115.96 +53,SP95,2009,4,118.64 +53,SP95,2009,5,122.49 +53,SP95,2009,6,128.51 +53,SP95,2009,7,124.68 +53,SP95,2009,8,127.83 +53,SP95,2009,9,125.14 +53,SP95,2009,10,124.16 +53,SP95,2009,11,127.33 +53,SP95,2009,12,126.47 +53,SP95,2010,1,130.99 +53,SP95,2010,2,132.05 +53,SP95,2010,3,136.52 +53,SP95,2010,4,138.76 +53,SP95,2010,5,138.84 +53,SP95,2010,6,137.8 +53,SP95,2010,7,135.5 +53,SP95,2010,8,134.92 +53,SP95,2010,9,134.8 +53,SP95,2010,10,135.86 +53,SP95,2010,11,137.26 +53,SP95,2010,12,141.93 +53,SP95,2011,1,147.05 +53,SP95,2011,2,148.04 +53,SP95,2011,3,152.35 +53,SP95,2011,4,154.79 +53,SP95,2011,5,155.36 +53,SP95,2011,6,152.52 +53,SP95,2011,7,152.18 +53,SP95,2011,8,151.37 +53,SP95,2011,9,153.42 +53,SP95,2011,10,151.46 +53,SP95,2011,11,150.5 +53,SP95,2011,12,150.57 +53,SP95,2012,1,155.92 +53,SP95,2012,2,159.64 +53,SP95,2012,3,164.56 +53,SP95,2012,4,167.17 +53,SP95,2012,5,161.37 +53,SP95,2012,6,156.47 +53,SP95,2012,7,157.62 +53,SP95,2012,8,163.12 +53,SP95,2012,9,159.97 +53,SP95,2012,10,157.78 +53,SP95,2012,11,152.3 +53,SP95,2012,12,152.1 +53,SP95,2013,1,155.54 +53,SP95,2013,2,161.13 +53,SP95,2013,3,161.21 +53,SP95,2013,4,158.64 +53,SP95,2013,5,155.41 +53,SP95,2013,6,155.53 +53,SP95,2013,7,156.42 +53,SP95,2013,8,157.1 +53,SP95,2013,9,156.23 +53,SP95,2013,10,151.13 +53,SP95,2013,11,150.25 +53,SP95,2013,12,151.64 +53,SP95,2014,1,151.34 +53,SP95,2014,2,151.65 +53,SP95,2014,3,151.92 +53,SP95,2014,4,153.02 +53,SP95,2014,5,153.84 +53,SP95,2014,6,155.34 +53,SP95,2014,7,155.21 +53,SP95,2014,8,152.02 +53,SP95,2014,9,151.4 +53,SP95,2014,10,148.43 +53,SP95,2014,11,144.22 +53,SP95,2014,12,135.0 +53,SP95,2015,1,127.75 +53,SP95,2015,2,133.72 +53,SP95,2015,3,139.45 +53,SP95,2015,4,142.01 +53,SP95,2015,5,145.29 +53,SP95,2015,6,146.05 +53,SP95,2015,7,145.51 +53,SP95,2015,8,140.23 +53,SP95,2015,9,132.7 +53,SP95,2015,10,131.19 +53,SP95,2015,11,131.35 +53,SP95,2015,12,128.71 +53,SP95,2016,1,127.74 +53,SP95,2016,2,125.83 +53,SP95,2016,3,127.21 +53,SP95,2016,4,132.15 +53,SP95,2016,5,134.83 +53,SP95,2016,6,137.08 +53,SP95,2016,7,132.14 +53,SP95,2016,8,129.83 +53,SP95,2016,9,130.88 +53,SP95,2016,10,133.7 +53,SP95,2016,11,132.75 +53,SP95,2016,12,136.39 +53,SP95,2017,1,141.39 +53,SP95,2017,2,141.74 +53,SP95,2017,3,139.68 +53,SP95,2017,4,140.75 +53,SP95,2017,5,138.34 +53,SP95,2017,6,136.25 +53,SP95,2017,7,133.66 +53,SP95,2017,8,135.03 +53,SP95,2017,9,137.82 +53,SP95,2017,10,136.85 +53,SP95,2017,11,140.7 +53,SP95,2017,12,140.5 +53,SP95,2018,1,146.65 +53,SP95,2018,2,146.54 +53,SP95,2018,3,145.47 +53,SP95,2018,4,148.94 +53,SP95,2018,5,153.84 +53,SP95,2018,6,154.78 +53,SP95,2018,7,153.78 +53,SP95,2018,8,155.29 +53,SP95,2018,9,156.82 +53,SP95,2018,10,155.83 +53,SP95,2018,11,149.57 +53,SP95,2018,12,144.22 +53,SP95,2019,1,141.93 +53,SP95,2019,2,144.74 +53,SP95,2019,3,148.44 +53,SP95,2019,4,156.29 +53,SP95,2019,5,159.33 +53,SP95,2019,6,154.34 +53,SP95,2019,7,152.92 +53,SP95,2019,8,151.26 +53,SP95,2019,9,150.85 +53,SP95,2019,10,150.83 +53,SP95,2019,11,151.77 +53,SP95,2019,12,152.82 +53,SP95,2020,2,149.77 +53,SP95,2020,3,139.89 +53,SP95,2020,4,128.99 +53,SP95,2020,5,126.48 +53,SP95,2020,6,131.73 +53,SP95,2020,7,135.38 +53,SP95,2020,8,134.12 +53,SP95,2020,9,133.72 +53,SP95,2020,10,134.45 +53,SP95,2020,11,133.75 +53,SP95,2020,12,136.09 +53,SP95,2020,1,153.49 +53,SP95,2021,1,140.44 +53,SP95,2021,2,144.93 +53,SP95,2021,3,150.63 +53,SP95,2021,4,151.54 +53,SP95,2021,5,152.24 +53,SP95,2021,6,153.26 +53,SP95,2021,7,157.08 +53,SP95,2021,8,157.9 +53,SP95,2021,9,158.37 +53,SP95,2021,10,163.74 +53,SP95,2021,11,166.11 +53,SP95,2021,12,162.47 +53,SP95,2022,1,170.0 +53,SP95,2022,2,178.0 +53,SP95,2022,3,200.0 +53,SP95,2022,4,182.0 +53,SP95,2022,5,192.0 +53,SP95,2022,6,214.0 +53,SP95,2022,7,201.0 +53,SP95,2022,8,184.0 +53,SP95,2022,9,162.0 +53,SP95,2022,10,170.0 +53,SP95,2022,11,171.0 +53,SP95,2022,12,168.0 +53,SP95,2023,1,187.0 +53,SP95,2023,2,191.0 +53,SP95,2023,3,191.0 +53,SP95,2023,4,194.0 +53,SP95,2023,5,186.0 +53,SP95,2023,6,187.0 +53,SP95,2023,7,184.0 +53,SP95,2023,8,192.0 +53,SP95,2023,9,195.0 +53,SP95,2023,10,188.0 +53,SP95,2023,11,185.0 +53,SP95,2023,12,180.0 +53,SP95,2024,1,178.0 +53,SP95,2024,2,183.0 +53,SP95,2024,3,186.0 +53,SP95,2024,4,191.0 +53,SP95,2024,5,189.0 +53,SP95,2024,6,184.0 +53,SP95,2024,7,184.0 +53,SP95,2024,8,184.0 +53,SP95,2024,9,184.0 +53,SP95,2024,10,184.0 +53,SP95,2024,11,184.0 +53,SP95,2024,12,184.0 +53,GPLc,2007,11,71.57 +53,GPLc,2007,12,72.62 +53,GPLc,2007,1, +53,GPLc,2007,2, +53,GPLc,2007,3, +53,GPLc,2007,4, +53,GPLc,2007,5, +53,GPLc,2007,6, +53,GPLc,2007,7, +53,GPLc,2007,8, +53,GPLc,2007,9, +53,GPLc,2007,10, +53,GPLc,2008,1,73.29 +53,GPLc,2008,2,73.14 +53,GPLc,2008,3,73.08 +53,GPLc,2008,8,76.55 +53,GPLc,2008,9,76.83 +53,GPLc,2008,12,72.79 +53,GPLc,2008,7,75.32 +53,GPLc,2008,4,72.93 +53,GPLc,2008,5,73.53 +53,GPLc,2008,6,74.22 +53,GPLc,2008,11,75.88 +53,GPLc,2008,10,76.91 +53,GPLc,2009,1,68.3 +53,GPLc,2009,4,63.88 +53,GPLc,2009,2,68.28 +53,GPLc,2009,3,66.46 +53,GPLc,2009,6,62.66 +53,GPLc,2009,5,62.63 +53,GPLc,2009,7,62.72 +53,GPLc,2009,8,62.78 +53,GPLc,2009,9,63.87 +53,GPLc,2009,10,63.85 +53,GPLc,2009,11,64.12 +53,GPLc,2009,12,65.06 +53,GPLc,2010,3,67.37 +53,GPLc,2010,4,67.39 +53,GPLc,2010,7,72.15 +53,GPLc,2010,8,72.43 +53,GPLc,2010,9,73.33 +53,GPLc,2010,11,76.14 +53,GPLc,2010,10,74.46 +53,GPLc,2010,6,70.2 +53,GPLc,2010,1,66.86 +53,GPLc,2010,2,67.42 +53,GPLc,2010,12,78.95 +53,GPLc,2010,5,69.53 +53,GPLc,2011,3,80.1 +53,GPLc,2011,4,80.38 +53,GPLc,2011,6,81.5 +53,GPLc,2011,8,83.43 +53,GPLc,2011,9,83.59 +53,GPLc,2011,10,83.38 +53,GPLc,2011,11,83.3 +53,GPLc,2011,12,83.23 +53,GPLc,2011,2,78.74 +53,GPLc,2011,5,81.06 +53,GPLc,2011,7,82.87 +53,GPLc,2011,1,79.64 +53,GPLc,2012,1,82.41 +53,GPLc,2012,2,82.99 +53,GPLc,2012,3,84.88 +53,GPLc,2012,8,84.32 +53,GPLc,2012,10,84.6 +53,GPLc,2012,12,86.29 +53,GPLc,2012,4,85.8 +53,GPLc,2012,5,85.76 +53,GPLc,2012,6,85.73 +53,GPLc,2012,7,84.56 +53,GPLc,2012,9,83.45 +53,GPLc,2012,11,85.49 +53,GPLc,2013,7,84.14 +53,GPLc,2013,10,83.24 +53,GPLc,2013,11,82.96 +53,GPLc,2013,1,87.28 +53,GPLc,2013,2,87.23 +53,GPLc,2013,3,87.32 +53,GPLc,2013,4,86.82 +53,GPLc,2013,5,85.68 +53,GPLc,2013,6,85.09 +53,GPLc,2013,8,83.8 +53,GPLc,2013,9,83.96 +53,GPLc,2013,12,83.29 +53,GPLc,2014,1,83.4 +53,GPLc,2014,3,83.76 +53,GPLc,2014,12,81.99 +53,GPLc,2014,2,84.06 +53,GPLc,2014,4,83.53 +53,GPLc,2014,5,83.4 +53,GPLc,2014,6,83.23 +53,GPLc,2014,7,82.98 +53,GPLc,2014,8,82.97 +53,GPLc,2014,9,82.86 +53,GPLc,2014,10,82.75 +53,GPLc,2014,11,82.51 +53,GPLc,2015,1,79.85 +53,GPLc,2015,3,79.04 +53,GPLc,2015,4,79.16 +53,GPLc,2015,7,76.94 +53,GPLc,2015,8,76.97 +53,GPLc,2015,11,73.93 +53,GPLc,2015,2,79.34 +53,GPLc,2015,5,79.61 +53,GPLc,2015,6,78.18 +53,GPLc,2015,9,76.2 +53,GPLc,2015,10,74.92 +53,GPLc,2015,12,72.78 +53,GPLc,2016,1,69.77 +53,GPLc,2016,3,68.6 +53,GPLc,2016,5,67.4 +53,GPLc,2016,6,67.71 +53,GPLc,2016,7,67.55 +53,GPLc,2016,9,66.88 +53,GPLc,2016,11,67.21 +53,GPLc,2016,12,67.47 +53,GPLc,2016,2,69.48 +53,GPLc,2016,4,67.44 +53,GPLc,2016,8,66.87 +53,GPLc,2016,10,66.86 +53,GPLc,2017,1,69.81 +53,GPLc,2017,2,71.14 +53,GPLc,2017,3,72.1 +53,GPLc,2017,7,72.31 +53,GPLc,2017,8,71.82 +53,GPLc,2017,9,72.35 +53,GPLc,2017,11,74.15 +53,GPLc,2017,12,75.35 +53,GPLc,2017,4,72.62 +53,GPLc,2017,5,72.62 +53,GPLc,2017,6,72.67 +53,GPLc,2017,10,73.03 +53,GPLc,2018,1,79.41 +53,GPLc,2018,2,79.26 +53,GPLc,2018,4,79.44 +53,GPLc,2018,6,80.18 +53,GPLc,2018,9,81.15 +53,GPLc,2018,11,82.7 +53,GPLc,2018,3,79.28 +53,GPLc,2018,5,79.32 +53,GPLc,2018,7,79.82 +53,GPLc,2018,8,80.2 +53,GPLc,2018,10,82.44 +53,GPLc,2018,12,83.57 +53,GPLc,2019,1,83.7 +53,GPLc,2019,2,83.35 +53,GPLc,2019,5,84.6 +53,GPLc,2019,6,84.73 +53,GPLc,2019,7,84.13 +53,GPLc,2019,9,84.02 +53,GPLc,2019,12,85.73 +53,GPLc,2019,3,84.19 +53,GPLc,2019,4,84.8 +53,GPLc,2019,8,84.02 +53,GPLc,2019,10,84.8 +53,GPLc,2019,11,85.47 +53,GPLc,2020,3,82.65 +53,GPLc,2020,4,82.14 +53,GPLc,2020,5,81.7 +53,GPLc,2020,6,81.69 +53,GPLc,2020,7,81.58 +53,GPLc,2020,9,81.4 +53,GPLc,2020,10,81.4 +53,GPLc,2020,1,83.34 +53,GPLc,2020,2,82.89 +53,GPLc,2020,8,81.52 +53,GPLc,2020,11,81.44 +53,GPLc,2020,12,81.46 +53,GPLc,2021,3,83.07 +53,GPLc,2021,6,84.12 +53,GPLc,2021,8,86.41 +53,GPLc,2021,10,87.24 +53,GPLc,2021,12,89.9 +53,GPLc,2021,1,82.95 +53,GPLc,2021,2,82.55 +53,GPLc,2021,4,83.54 +53,GPLc,2021,5,83.98 +53,GPLc,2021,7,84.46 +53,GPLc,2021,9,85.92 +53,GPLc,2021,11,88.61 +53,GPLc,2022,1,90.0 +53,GPLc,2022,2,90.0 +53,GPLc,2022,3,93.0 +53,GPLc,2022,4,84.0 +53,GPLc,2022,5,84.0 +53,GPLc,2022,6,83.0 +53,GPLc,2022,7,83.0 +53,GPLc,2022,8,84.0 +53,GPLc,2022,9,77.0 +53,GPLc,2022,10,78.0 +53,GPLc,2022,11,82.0 +53,GPLc,2022,12,88.0 +53,GPLc,2023,1,96.0 +53,GPLc,2023,2,97.0 +53,GPLc,2023,3,98.0 +53,GPLc,2023,4,99.0 +53,GPLc,2023,5,99.0 +53,GPLc,2023,6,99.0 +53,GPLc,2023,7,99.0 +53,GPLc,2023,8,99.0 +53,GPLc,2023,9,98.0 +53,GPLc,2023,10,97.0 +53,GPLc,2023,11,97.0 +53,GPLc,2023,12,97.0 +53,GPLc,2024,1,95.0 +53,GPLc,2024,2,96.0 +53,GPLc,2024,3,96.0 +53,GPLc,2024,4,97.0 +53,GPLc,2024,5,96.0 +53,GPLc,2024,6,96.0 +53,GPLc,2024,7,96.0 +53,GPLc,2024,8,96.0 +53,GPLc,2024,9,96.0 +53,GPLc,2024,10,96.0 +53,GPLc,2024,11,96.0 +53,GPLc,2024,12,96.0 +53,E85,2007,10,81.09 +53,E85,2007,9,81.6 +53,E85,2007,11,81.12 +53,E85,2007,12,81.79 +53,E85,2007,7,83.5 +53,E85,2007,8,83.08 +53,E85,2007,1, +53,E85,2007,2, +53,E85,2007,3, +53,E85,2007,4, +53,E85,2007,5, +53,E85,2007,6, +53,E85,2008,2,80.99 +53,E85,2008,6,82.83 +53,E85,2008,8,83.85 +53,E85,2008,9,84.58 +53,E85,2008,10,84.63 +53,E85,2008,11,84.57 +53,E85,2008,12,85.3 +53,E85,2008,1,79.89 +53,E85,2008,3,81.36 +53,E85,2008,4,82.05 +53,E85,2008,5,82.51 +53,E85,2008,7,83.28 +53,E85,2009,8,103.11 +53,E85,2009,1,86.93 +53,E85,2009,6,85.3 +53,E85,2009,7,98.25 +53,E85,2009,9,106.9 +53,E85,2009,12,111.16 +53,E85,2009,2,87.16 +53,E85,2009,3,85.23 +53,E85,2009,4,83.35 +53,E85,2009,5,83.32 +53,E85,2009,10,108.73 +53,E85,2009,11,110.68 +53,E85,2010,4,112.12 +53,E85,2010,10,119.57 +53,E85,2010,11,119.38 +53,E85,2010,7,118.9 +53,E85,2010,9,121.46 +53,E85,2010,8,120.54 +53,E85,2010,1,90.21 +53,E85,2010,2,93.92 +53,E85,2010,3,105.51 +53,E85,2010,5,114.0 +53,E85,2010,6,116.65 +53,E85,2010,12,120.02 +53,E85,2011,1,88.1 +53,E85,2011,6,91.52 +53,E85,2011,7,90.36 +53,E85,2011,8,89.75 +53,E85,2011,9,90.74 +53,E85,2011,2,89.3 +53,E85,2011,3,89.86 +53,E85,2011,4,91.07 +53,E85,2011,5,91.55 +53,E85,2011,10,93.51 +53,E85,2011,11,93.63 +53,E85,2011,12,93.62 +53,E85,2012,1,90.24 +53,E85,2012,2,92.08 +53,E85,2012,5,92.16 +53,E85,2012,7,91.05 +53,E85,2012,8,92.48 +53,E85,2012,9,92.69 +53,E85,2012,10,93.32 +53,E85,2012,11,96.44 +53,E85,2012,12,97.28 +53,E85,2012,3,92.36 +53,E85,2012,4,93.0 +53,E85,2012,6,91.57 +53,E85,2013,7,90.38 +53,E85,2013,8,90.96 +53,E85,2013,9,92.4 +53,E85,2013,10,92.98 +53,E85,2013,11,93.1 +53,E85,2013,12,93.27 +53,E85,2013,1,91.6 +53,E85,2013,2,93.74 +53,E85,2013,3,93.71 +53,E85,2013,4,92.16 +53,E85,2013,5,90.54 +53,E85,2013,6,90.64 +53,E85,2014,1,89.85 +53,E85,2014,2,89.26 +53,E85,2014,3,89.27 +53,E85,2014,4,88.52 +53,E85,2014,5,87.69 +53,E85,2014,6,88.75 +53,E85,2014,7,88.3 +53,E85,2014,8,87.05 +53,E85,2014,9,87.1 +53,E85,2014,10,85.78 +53,E85,2014,11,87.58 +53,E85,2014,12,89.02 +53,E85,2015,2,88.76 +53,E85,2015,3,88.17 +53,E85,2015,4,87.66 +53,E85,2015,5,89.02 +53,E85,2015,6,89.24 +53,E85,2015,7,89.78 +53,E85,2015,8,90.1 +53,E85,2015,9,89.54 +53,E85,2015,10,88.66 +53,E85,2015,11,88.34 +53,E85,2015,12,89.54 +53,E85,2015,1,87.27 +53,E85,2016,1,74.62 +53,E85,2016,2,78.52 +53,E85,2016,3,79.24 +53,E85,2016,4,78.58 +53,E85,2016,5,81.19 +53,E85,2016,6,84.13 +53,E85,2016,7,83.0 +53,E85,2016,8,82.48 +53,E85,2016,9,83.95 +53,E85,2016,10,85.33 +53,E85,2016,11,86.94 +53,E85,2016,12,87.26 +53,E85,2017,1,72.4 +53,E85,2017,2,74.25 +53,E85,2017,3,73.07 +53,E85,2017,4,72.79 +53,E85,2017,5,75.66 +53,E85,2017,6,76.5 +53,E85,2017,7,77.24 +53,E85,2017,8,77.52 +53,E85,2017,9,77.73 +53,E85,2017,10,79.19 +53,E85,2017,11,80.27 +53,E85,2017,12,80.15 +53,E85,2018,1,71.0 +53,E85,2018,2,69.91 +53,E85,2018,3,69.45 +53,E85,2018,4,71.25 +53,E85,2018,5,70.97 +53,E85,2018,6,73.61 +53,E85,2018,7,74.38 +53,E85,2018,8,75.26 +53,E85,2018,9,74.68 +53,E85,2018,10,74.79 +53,E85,2018,11,73.49 +53,E85,2018,12,77.21 +53,E85,2019,1,73.44 +53,E85,2019,2,70.57 +53,E85,2019,3,70.83 +53,E85,2019,4,74.56 +53,E85,2019,5,74.18 +53,E85,2019,6,72.84 +53,E85,2019,7,71.84 +53,E85,2019,8,71.35 +53,E85,2019,9,71.24 +53,E85,2019,10,70.71 +53,E85,2019,11,71.15 +53,E85,2019,12,70.53 +53,E85,2020,11,69.03 +53,E85,2020,12,69.05 +53,E85,2020,1,71.28 +53,E85,2020,2,71.6 +53,E85,2020,3,70.53 +53,E85,2020,4,70.01 +53,E85,2020,5,70.01 +53,E85,2020,6,69.34 +53,E85,2020,7,68.85 +53,E85,2020,8,68.6 +53,E85,2020,9,68.73 +53,E85,2020,10,68.82 +53,E85,2021,1,67.07 +53,E85,2021,2,66.92 +53,E85,2021,3,67.54 +53,E85,2021,4,67.85 +53,E85,2021,5,67.85 +53,E85,2021,6,67.82 +53,E85,2021,7,68.21 +53,E85,2021,8,68.35 +53,E85,2021,9,68.1 +53,E85,2021,10,69.77 +53,E85,2021,11,70.91 +53,E85,2021,12,72.04 +53,E85,2022,1,74.0 +53,E85,2022,2,76.0 +53,E85,2022,3,90.0 +53,E85,2022,4,78.0 +53,E85,2022,5,78.0 +53,E85,2022,6,85.0 +53,E85,2022,7,84.0 +53,E85,2022,8,80.0 +53,E85,2022,9,68.0 +53,E85,2022,10,76.0 +53,E85,2022,11,87.0 +53,E85,2022,12,89.0 +53,E85,2023,1,107.0 +53,E85,2023,2,111.0 +53,E85,2023,3,112.0 +53,E85,2023,4,112.0 +53,E85,2023,5,112.0 +53,E85,2023,6,109.0 +53,E85,2023,7,103.0 +53,E85,2023,8,104.0 +53,E85,2023,9,103.0 +53,E85,2023,10,102.0 +53,E85,2023,11,101.0 +53,E85,2023,12,99.0 +53,E85,2024,1,91.0 +53,E85,2024,2,90.0 +53,E85,2024,3,89.0 +53,E85,2024,4,88.0 +53,E85,2024,5,88.0 +53,E85,2024,6,85.0 +53,E85,2024,7,85.0 +53,E85,2024,8,85.0 +53,E85,2024,9,85.0 +53,E85,2024,10,85.0 +53,E85,2024,11,85.0 +53,E85,2024,12,85.0 +53,E10,2009,4,120.67 +53,E10,2009,5,124.39 +53,E10,2009,6,129.79 +53,E10,2009,7,125.79 +53,E10,2009,8,127.9 +53,E10,2009,9,125.86 +53,E10,2009,10,124.72 +53,E10,2009,11,127.79 +53,E10,2009,12,127.23 +53,E10,2009,1, +53,E10,2009,2, +53,E10,2009,3, +53,E10,2010,1,131.89 +53,E10,2010,2,133.42 +53,E10,2010,3,137.29 +53,E10,2010,4,140.07 +53,E10,2010,5,140.54 +53,E10,2010,6,139.35 +53,E10,2010,7,137.65 +53,E10,2010,8,136.74 +53,E10,2010,9,136.43 +53,E10,2010,10,137.27 +53,E10,2010,11,138.58 +53,E10,2010,12,143.43 +53,E10,2011,1,148.44 +53,E10,2011,2,149.46 +53,E10,2011,3,153.37 +53,E10,2011,4,156.8 +53,E10,2011,5,157.77 +53,E10,2011,6,154.73 +53,E10,2011,7,154.62 +53,E10,2011,8,153.46 +53,E10,2011,9,155.34 +53,E10,2011,10,153.26 +53,E10,2011,11,151.42 +53,E10,2011,12,151.82 +53,E10,2012,1,157.3 +53,E10,2012,2,160.87 +53,E10,2012,3,165.36 +53,E10,2012,4,167.3 +53,E10,2012,5,160.88 +53,E10,2012,6,155.24 +53,E10,2012,7,155.92 +53,E10,2012,8,160.16 +53,E10,2012,9,156.97 +53,E10,2012,10,154.07 +53,E10,2012,11,148.68 +53,E10,2012,12,149.02 +53,E10,2013,10,150.0 +53,E10,2013,11,148.81 +53,E10,2013,12,149.95 +53,E10,2013,1,153.66 +53,E10,2013,2,159.71 +53,E10,2013,3,159.38 +53,E10,2013,4,156.7 +53,E10,2013,5,153.93 +53,E10,2013,6,153.83 +53,E10,2013,7,154.84 +53,E10,2013,8,155.42 +53,E10,2013,9,154.53 +53,E10,2014,1,148.59 +53,E10,2014,2,149.54 +53,E10,2014,4,150.98 +53,E10,2014,6,153.06 +53,E10,2014,7,152.84 +53,E10,2014,8,150.06 +53,E10,2014,9,149.43 +53,E10,2014,10,146.53 +53,E10,2014,12,133.63 +53,E10,2014,3,149.86 +53,E10,2014,5,151.72 +53,E10,2014,11,142.34 +53,E10,2015,1,125.07 +53,E10,2015,2,131.0 +53,E10,2015,3,137.44 +53,E10,2015,4,140.05 +53,E10,2015,5,143.14 +53,E10,2015,6,143.73 +53,E10,2015,7,143.17 +53,E10,2015,8,137.6 +53,E10,2015,9,130.7 +53,E10,2015,10,128.93 +53,E10,2015,11,129.16 +53,E10,2015,12,126.24 +53,E10,2016,5,130.61 +53,E10,2016,6,132.99 +53,E10,2016,7,128.37 +53,E10,2016,8,125.98 +53,E10,2016,9,126.9 +53,E10,2016,10,129.69 +53,E10,2016,11,128.54 +53,E10,2016,12,132.42 +53,E10,2016,1,123.91 +53,E10,2016,2,121.54 +53,E10,2016,3,123.22 +53,E10,2016,4,127.97 +53,E10,2017,1,136.73 +53,E10,2017,2,137.44 +53,E10,2017,3,135.05 +53,E10,2017,4,136.28 +53,E10,2017,5,133.74 +53,E10,2017,6,131.81 +53,E10,2017,7,130.0 +53,E10,2017,8,131.37 +53,E10,2017,9,134.37 +53,E10,2017,10,133.21 +53,E10,2017,11,137.24 +53,E10,2017,12,136.52 +53,E10,2018,1,143.39 +53,E10,2018,2,142.72 +53,E10,2018,3,141.97 +53,E10,2018,4,145.38 +53,E10,2018,5,150.17 +53,E10,2018,6,150.94 +53,E10,2018,7,150.06 +53,E10,2018,8,151.67 +53,E10,2018,9,152.56 +53,E10,2018,10,152.18 +53,E10,2018,11,145.05 +53,E10,2018,12,139.71 +53,E10,2019,1,138.3 +53,E10,2019,2,140.92 +53,E10,2019,3,144.68 +53,E10,2019,4,152.47 +53,E10,2019,5,155.39 +53,E10,2019,6,149.75 +53,E10,2019,7,148.72 +53,E10,2019,8,147.19 +53,E10,2019,9,146.7 +53,E10,2019,10,146.74 +53,E10,2019,11,147.91 +53,E10,2019,12,149.29 +53,E10,2020,1,149.92 +53,E10,2020,2,145.55 +53,E10,2020,3,134.16 +53,E10,2020,4,123.3 +53,E10,2020,5,122.14 +53,E10,2020,6,128.43 +53,E10,2020,7,131.79 +53,E10,2020,8,130.25 +53,E10,2020,9,129.87 +53,E10,2020,10,130.34 +53,E10,2020,11,129.5 +53,E10,2020,12,132.29 +53,E10,2021,1,137.5 +53,E10,2021,2,141.49 +53,E10,2021,3,146.94 +53,E10,2021,4,147.76 +53,E10,2021,5,148.75 +53,E10,2021,6,150.13 +53,E10,2021,7,153.97 +53,E10,2021,8,154.38 +53,E10,2021,9,154.73 +53,E10,2021,10,160.87 +53,E10,2021,11,162.76 +53,E10,2021,12,158.2 +53,E10,2022,1,167.0 +53,E10,2022,2,174.0 +53,E10,2022,3,194.0 +53,E10,2022,4,175.0 +53,E10,2022,5,188.0 +53,E10,2022,6,210.0 +53,E10,2022,7,194.0 +53,E10,2022,8,177.0 +53,E10,2022,9,151.0 +53,E10,2022,10,162.0 +53,E10,2022,11,164.0 +53,E10,2022,12,162.0 +53,E10,2023,1,184.0 +53,E10,2023,2,186.0 +53,E10,2023,3,187.0 +53,E10,2023,4,189.0 +53,E10,2023,5,181.0 +53,E10,2023,6,182.0 +53,E10,2023,7,179.0 +53,E10,2023,8,189.0 +53,E10,2023,9,191.0 +53,E10,2023,10,184.0 +53,E10,2023,11,180.0 +53,E10,2023,12,175.0 +53,E10,2024,1,175.0 +53,E10,2024,2,179.0 +53,E10,2024,3,182.0 +53,E10,2024,4,188.0 +53,E10,2024,5,184.0 +53,E10,2024,6,179.0 +53,E10,2024,7,179.0 +53,E10,2024,8,179.0 +53,E10,2024,9,179.0 +53,E10,2024,10,179.0 +53,E10,2024,11,179.0 +53,E10,2024,12,179.0 +53,SP98,2013,7,160.27 +53,SP98,2013,8,161.24 +53,SP98,2013,9,160.78 +53,SP98,2013,10,155.98 +53,SP98,2013,11,154.64 +53,SP98,2013,12,155.83 +53,SP98,2013,6,157.89 +53,SP98,2013,1, +53,SP98,2013,2, +53,SP98,2013,3, +53,SP98,2013,4, +53,SP98,2013,5, +53,SP98,2014,1,155.35 +53,SP98,2014,2,155.89 +53,SP98,2014,3,156.37 +53,SP98,2014,4,157.33 +53,SP98,2014,5,158.03 +53,SP98,2014,6,159.35 +53,SP98,2014,7,159.56 +53,SP98,2014,8,156.68 +53,SP98,2014,9,156.1 +53,SP98,2014,10,153.62 +53,SP98,2014,11,149.48 +53,SP98,2014,12,141.11 +53,SP98,2015,1,133.17 +53,SP98,2015,2,137.78 +53,SP98,2015,3,143.81 +53,SP98,2015,4,146.68 +53,SP98,2015,5,149.86 +53,SP98,2015,6,150.65 +53,SP98,2015,7,150.34 +53,SP98,2015,8,145.14 +53,SP98,2015,9,137.7 +53,SP98,2015,10,135.84 +53,SP98,2015,11,135.66 +53,SP98,2015,12,133.22 +53,SP98,2016,1,132.04 +53,SP98,2016,2,129.86 +53,SP98,2016,3,130.88 +53,SP98,2016,4,135.55 +53,SP98,2016,5,138.38 +53,SP98,2016,6,141.03 +53,SP98,2016,7,136.44 +53,SP98,2016,8,133.84 +53,SP98,2016,9,134.86 +53,SP98,2016,10,137.72 +53,SP98,2016,11,137.12 +53,SP98,2016,12,140.53 +53,SP98,2017,1,145.42 +53,SP98,2017,2,146.05 +53,SP98,2017,3,144.17 +53,SP98,2017,4,144.99 +53,SP98,2017,5,142.78 +53,SP98,2017,6,140.87 +53,SP98,2017,7,138.32 +53,SP98,2017,8,139.18 +53,SP98,2017,9,142.22 +53,SP98,2017,10,141.34 +53,SP98,2017,11,145.44 +53,SP98,2017,12,145.33 +53,SP98,2018,1,151.71 +53,SP98,2018,2,151.19 +53,SP98,2018,3,150.22 +53,SP98,2018,4,153.29 +53,SP98,2018,5,158.44 +53,SP98,2018,6,159.72 +53,SP98,2018,7,158.62 +53,SP98,2018,8,160.28 +53,SP98,2018,9,161.13 +53,SP98,2018,10,160.94 +53,SP98,2018,11,153.8 +53,SP98,2018,12,148.37 +53,SP98,2019,1,146.51 +53,SP98,2019,2,149.04 +53,SP98,2019,3,152.8 +53,SP98,2019,4,160.8 +53,SP98,2019,5,163.86 +53,SP98,2019,6,159.26 +53,SP98,2019,7,157.42 +53,SP98,2019,8,155.63 +53,SP98,2019,9,155.31 +53,SP98,2019,10,155.25 +53,SP98,2019,11,156.11 +53,SP98,2019,12,157.33 +53,SP98,2020,1,158.23 +53,SP98,2020,2,154.43 +53,SP98,2020,3,144.24 +53,SP98,2020,4,133.06 +53,SP98,2020,5,130.4 +53,SP98,2020,6,135.76 +53,SP98,2020,7,139.43 +53,SP98,2020,8,138.22 +53,SP98,2020,9,138.2 +53,SP98,2020,10,138.37 +53,SP98,2020,11,137.73 +53,SP98,2020,12,139.94 +53,SP98,2021,1,144.59 +53,SP98,2021,2,148.45 +53,SP98,2021,3,154.69 +53,SP98,2021,4,155.96 +53,SP98,2021,5,156.98 +53,SP98,2021,6,158.42 +53,SP98,2021,7,162.63 +53,SP98,2021,8,163.25 +53,SP98,2021,9,163.45 +53,SP98,2021,10,169.52 +53,SP98,2021,11,171.92 +53,SP98,2021,12,167.8 +53,SP98,2022,1,175.0 +53,SP98,2022,2,182.0 +53,SP98,2022,3,203.0 +53,SP98,2022,4,185.0 +53,SP98,2022,5,197.0 +53,SP98,2022,6,219.0 +53,SP98,2022,7,205.0 +53,SP98,2022,8,187.0 +53,SP98,2022,9,162.0 +53,SP98,2022,10,172.0 +53,SP98,2022,11,175.0 +53,SP98,2022,12,172.0 +53,SP98,2023,1,192.0 +53,SP98,2023,2,196.0 +53,SP98,2023,3,195.0 +53,SP98,2023,4,197.0 +53,SP98,2023,5,190.0 +53,SP98,2023,6,190.0 +53,SP98,2023,7,188.0 +53,SP98,2023,8,196.0 +53,SP98,2023,9,199.0 +53,SP98,2023,10,192.0 +53,SP98,2023,11,188.0 +53,SP98,2023,12,183.0 +53,SP98,2024,1,183.0 +53,SP98,2024,2,187.0 +53,SP98,2024,3,190.0 +53,SP98,2024,4,196.0 +53,SP98,2024,5,194.0 +53,SP98,2024,6,189.0 +53,SP98,2024,7,190.0 +53,SP98,2024,8,190.0 +53,SP98,2024,9,190.0 +53,SP98,2024,10,190.0 +53,SP98,2024,11,190.0 +53,SP98,2024,12,190.0 +72,Gazole,2007,1,103.43 +72,Gazole,2007,2,103.3 +72,Gazole,2007,3,104.74 +72,Gazole,2007,7,110.08 +72,Gazole,2007,8,109.96 +72,Gazole,2007,10,113.41 +72,Gazole,2007,11,121.45 +72,Gazole,2007,12,121.81 +72,Gazole,2007,4,107.04 +72,Gazole,2007,5,107.61 +72,Gazole,2007,9,111.53 +72,Gazole,2007,6,108.85 +72,Gazole,2008,1,121.11 +72,Gazole,2008,2,121.52 +72,Gazole,2008,3,127.26 +72,Gazole,2008,4,129.86 +72,Gazole,2008,5,140.33 +72,Gazole,2008,6,145.56 +72,Gazole,2008,7,144.3 +72,Gazole,2008,8,135.22 +72,Gazole,2008,9,132.18 +72,Gazole,2008,10,123.8 +72,Gazole,2008,11,113.56 +72,Gazole,2008,12,101.71 +72,Gazole,2009,1,99.02 +72,Gazole,2009,2,98.2 +72,Gazole,2009,3,95.62 +72,Gazole,2009,4,98.22 +72,Gazole,2009,5,98.57 +72,Gazole,2009,6,102.99 +72,Gazole,2009,7,101.6 +72,Gazole,2009,8,104.75 +72,Gazole,2009,9,103.03 +72,Gazole,2009,10,103.72 +72,Gazole,2009,11,106.13 +72,Gazole,2009,12,105.38 +72,Gazole,2010,1,109.53 +72,Gazole,2010,2,110.01 +72,Gazole,2010,3,113.64 +72,Gazole,2010,4,117.35 +72,Gazole,2010,5,118.88 +72,Gazole,2010,6,118.28 +72,Gazole,2010,7,116.28 +72,Gazole,2010,8,115.92 +72,Gazole,2010,9,116.48 +72,Gazole,2010,10,118.54 +72,Gazole,2010,11,119.82 +72,Gazole,2010,12,123.72 +72,Gazole,2011,1,130.09 +72,Gazole,2011,2,133.22 +72,Gazole,2011,3,138.76 +72,Gazole,2011,4,139.4 +72,Gazole,2011,5,135.37 +72,Gazole,2011,6,134.51 +72,Gazole,2011,7,135.32 +72,Gazole,2011,8,134.13 +72,Gazole,2011,9,135.73 +72,Gazole,2011,10,137.2 +72,Gazole,2011,11,140.7 +72,Gazole,2011,12,139.97 +72,Gazole,2012,1,143.3 +72,Gazole,2012,2,144.54 +72,Gazole,2012,3,147.19 +72,Gazole,2012,4,146.25 +72,Gazole,2012,5,143.12 +72,Gazole,2012,6,137.19 +72,Gazole,2012,7,139.64 +72,Gazole,2012,8,145.81 +72,Gazole,2012,9,141.98 +72,Gazole,2012,10,142.08 +72,Gazole,2012,11,140.16 +72,Gazole,2012,12,138.87 +72,Gazole,2013,1,139.89 +72,Gazole,2013,2,143.24 +72,Gazole,2013,3,141.99 +72,Gazole,2013,4,138.02 +72,Gazole,2013,5,135.59 +72,Gazole,2013,6,135.34 +72,Gazole,2013,7,137.01 +72,Gazole,2013,8,137.69 +72,Gazole,2013,9,139.22 +72,Gazole,2013,10,135.82 +72,Gazole,2013,11,134.62 +72,Gazole,2013,12,136.15 +72,Gazole,2014,2,135.25 +72,Gazole,2014,3,133.74 +72,Gazole,2014,6,133.3 +72,Gazole,2014,7,132.66 +72,Gazole,2014,8,132.12 +72,Gazole,2014,9,131.62 +72,Gazole,2014,10,128.68 +72,Gazole,2014,11,125.98 +72,Gazole,2014,12,116.68 +72,Gazole,2014,1,134.64 +72,Gazole,2014,4,133.31 +72,Gazole,2014,5,133.21 +72,Gazole,2015,1,113.13 +72,Gazole,2015,2,119.43 +72,Gazole,2015,3,123.12 +72,Gazole,2015,4,122.85 +72,Gazole,2015,5,125.71 +72,Gazole,2015,7,120.52 +72,Gazole,2015,8,114.83 +72,Gazole,2015,9,112.92 +72,Gazole,2015,10,112.77 +72,Gazole,2015,11,112.49 +72,Gazole,2015,12,106.01 +72,Gazole,2015,6,124.0 +72,Gazole,2016,1, +72,Gazole,2016,2, +72,Gazole,2016,3, +72,Gazole,2016,4, +72,Gazole,2016,5, +72,Gazole,2016,6, +72,Gazole,2016,7, +72,Gazole,2016,8, +72,Gazole,2016,9, +72,Gazole,2016,10, +72,Gazole,2016,11, +72,Gazole,2016,12, +72,Gazole,2017,1, +72,Gazole,2017,2, +72,Gazole,2017,3, +72,Gazole,2017,4, +72,Gazole,2017,5, +72,Gazole,2017,6, +72,Gazole,2017,7, +72,Gazole,2017,8, +72,Gazole,2017,9, +72,Gazole,2017,10, +72,Gazole,2017,11, +72,Gazole,2017,12, +72,Gazole,2018,1, +72,Gazole,2018,2, +72,Gazole,2018,3, +72,Gazole,2018,4, +72,Gazole,2018,5, +72,Gazole,2018,6, +72,Gazole,2018,7, +72,Gazole,2018,8, +72,Gazole,2018,9, +72,Gazole,2018,10, +72,Gazole,2018,11, +72,Gazole,2018,12, +72,Gazole,2019,1, +72,Gazole,2019,2, +72,Gazole,2019,3, +72,Gazole,2019,4, +72,Gazole,2019,5, +72,Gazole,2019,6, +72,Gazole,2019,7, +72,Gazole,2019,8, +72,Gazole,2019,9, +72,Gazole,2019,10, +72,Gazole,2019,11, +72,Gazole,2019,12, +72,Gazole,2020,1, +72,Gazole,2020,2, +72,Gazole,2020,3, +72,Gazole,2020,4, +72,Gazole,2020,5, +72,Gazole,2020,6, +72,Gazole,2020,7, +72,Gazole,2020,8, +72,Gazole,2020,9, +72,Gazole,2020,10, +72,Gazole,2020,11, +72,Gazole,2020,12, +72,Gazole,2021,1, +72,Gazole,2021,2, +72,Gazole,2021,3, +72,Gazole,2021,4, +72,Gazole,2021,5, +72,Gazole,2021,6, +72,Gazole,2021,7, +72,Gazole,2021,8, +72,Gazole,2021,9, +72,Gazole,2021,10, +72,Gazole,2021,11, +72,Gazole,2021,12, +72,Gazole,2022,1, +72,Gazole,2022,2, +72,Gazole,2022,3, +72,Gazole,2022,4, +72,Gazole,2022,5, +72,Gazole,2022,6, +72,Gazole,2022,7, +72,Gazole,2022,8, +72,Gazole,2022,9, +72,Gazole,2022,10, +72,Gazole,2022,11, +72,Gazole,2022,12, +72,Gazole,2023,1, +72,Gazole,2023,2, +72,Gazole,2023,3, +72,Gazole,2023,4, +72,Gazole,2023,5, +72,Gazole,2023,6, +72,Gazole,2023,7, +72,Gazole,2023,8, +72,Gazole,2023,9, +72,Gazole,2023,10, +72,Gazole,2023,11, +72,Gazole,2023,12, +72,Gazole,2024,1, +72,Gazole,2024,2, +72,Gazole,2024,3, +72,Gazole,2024,4, +72,Gazole,2024,5, +72,Gazole,2024,6, +72,Gazole,2024,7, +72,Gazole,2024,8, +72,Gazole,2024,9, +72,Gazole,2024,10, +72,Gazole,2024,11, +72,Gazole,2024,12, +72,SP95,2007,1,120.42 +72,SP95,2007,2,120.84 +72,SP95,2007,3,125.48 +72,SP95,2007,7,133.43 +72,SP95,2007,8,129.86 +72,SP95,2007,10,130.36 +72,SP95,2007,11,135.77 +72,SP95,2007,12,135.18 +72,SP95,2007,4,129.67 +72,SP95,2007,5,133.77 +72,SP95,2007,9,130.37 +72,SP95,2007,6,133.98 +72,SP95,2008,1,137.55 +72,SP95,2008,2,137.41 +72,SP95,2008,3,139.4 +72,SP95,2008,4,141.08 +72,SP95,2008,5,146.52 +72,SP95,2008,6,151.72 +72,SP95,2008,7,150.51 +72,SP95,2008,9,144.35 +72,SP95,2008,10,134.38 +72,SP95,2008,11,121.22 +72,SP95,2008,12,112.23 +72,SP95,2008,8,145.04 +72,SP95,2009,1,111.85 +72,SP95,2009,2,116.7 +72,SP95,2009,3,117.19 +72,SP95,2009,4,120.03 +72,SP95,2009,5,123.83 +72,SP95,2009,6,129.78 +72,SP95,2009,7,126.29 +72,SP95,2009,8,129.39 +72,SP95,2009,9,126.93 +72,SP95,2009,10,126.07 +72,SP95,2009,11,129.4 +72,SP95,2009,12,128.43 +72,SP95,2010,1,131.98 +72,SP95,2010,2,133.23 +72,SP95,2010,3,137.48 +72,SP95,2010,4,139.78 +72,SP95,2010,5,140.06 +72,SP95,2010,6,138.8 +72,SP95,2010,7,136.6 +72,SP95,2010,8,135.97 +72,SP95,2010,9,135.78 +72,SP95,2010,10,137.15 +72,SP95,2010,11,138.58 +72,SP95,2010,12,143.1 +72,SP95,2011,1,148.68 +72,SP95,2011,2,149.61 +72,SP95,2011,3,153.86 +72,SP95,2011,4,156.42 +72,SP95,2011,5,156.79 +72,SP95,2011,6,153.96 +72,SP95,2011,7,153.63 +72,SP95,2011,8,153.07 +72,SP95,2011,9,154.8 +72,SP95,2011,10,153.14 +72,SP95,2011,11,152.28 +72,SP95,2011,12,152.28 +72,SP95,2012,1,157.76 +72,SP95,2012,2,161.75 +72,SP95,2012,3,166.54 +72,SP95,2012,4,168.72 +72,SP95,2012,5,163.09 +72,SP95,2012,6,158.09 +72,SP95,2012,7,159.12 +72,SP95,2012,8,164.69 +72,SP95,2012,9,161.7 +72,SP95,2012,10,159.48 +72,SP95,2012,11,154.37 +72,SP95,2012,12,154.45 +72,SP95,2013,1,157.24 +72,SP95,2013,2,162.92 +72,SP95,2013,3,162.7 +72,SP95,2013,4,160.12 +72,SP95,2013,5,157.04 +72,SP95,2013,6,157.12 +72,SP95,2013,7,157.9 +72,SP95,2013,8,158.63 +72,SP95,2013,9,157.88 +72,SP95,2013,10,153.22 +72,SP95,2013,11,152.17 +72,SP95,2013,12,153.89 +72,SP95,2014,4,154.68 +72,SP95,2014,5,155.42 +72,SP95,2014,6,156.47 +72,SP95,2014,7,156.58 +72,SP95,2014,8,153.88 +72,SP95,2014,9,153.06 +72,SP95,2014,10,150.25 +72,SP95,2014,11,146.08 +72,SP95,2014,12,137.01 +72,SP95,2014,1,152.81 +72,SP95,2014,2,153.36 +72,SP95,2014,3,153.53 +72,SP95,2015,1,130.07 +72,SP95,2015,2,135.48 +72,SP95,2015,3,141.08 +72,SP95,2015,4,143.77 +72,SP95,2015,5,146.73 +72,SP95,2015,6,147.31 +72,SP95,2015,7,146.9 +72,SP95,2015,8,141.81 +72,SP95,2015,9,134.34 +72,SP95,2015,10,133.01 +72,SP95,2015,11,133.3 +72,SP95,2015,12,130.89 +72,SP95,2016,1, +72,SP95,2016,2, +72,SP95,2016,3, +72,SP95,2016,4, +72,SP95,2016,5, +72,SP95,2016,6, +72,SP95,2016,7, +72,SP95,2016,8, +72,SP95,2016,9, +72,SP95,2016,10, +72,SP95,2016,11, +72,SP95,2016,12, +72,SP95,2017,1, +72,SP95,2017,2, +72,SP95,2017,3, +72,SP95,2017,4, +72,SP95,2017,5, +72,SP95,2017,6, +72,SP95,2017,7, +72,SP95,2017,8, +72,SP95,2017,9, +72,SP95,2017,10, +72,SP95,2017,11, +72,SP95,2017,12, +72,SP95,2018,1, +72,SP95,2018,2, +72,SP95,2018,3, +72,SP95,2018,4, +72,SP95,2018,5, +72,SP95,2018,6, +72,SP95,2018,7, +72,SP95,2018,8, +72,SP95,2018,9, +72,SP95,2018,10, +72,SP95,2018,11, +72,SP95,2018,12, +72,SP95,2019,1, +72,SP95,2019,2, +72,SP95,2019,3, +72,SP95,2019,4, +72,SP95,2019,5, +72,SP95,2019,6, +72,SP95,2019,7, +72,SP95,2019,8, +72,SP95,2019,9, +72,SP95,2019,10, +72,SP95,2019,11, +72,SP95,2019,12, +72,SP95,2020,1, +72,SP95,2020,2, +72,SP95,2020,3, +72,SP95,2020,4, +72,SP95,2020,5, +72,SP95,2020,6, +72,SP95,2020,7, +72,SP95,2020,8, +72,SP95,2020,9, +72,SP95,2020,10, +72,SP95,2020,11, +72,SP95,2020,12, +72,SP95,2021,1, +72,SP95,2021,2, +72,SP95,2021,3, +72,SP95,2021,4, +72,SP95,2021,5, +72,SP95,2021,6, +72,SP95,2021,7, +72,SP95,2021,8, +72,SP95,2021,9, +72,SP95,2021,10, +72,SP95,2021,11, +72,SP95,2021,12, +72,SP95,2022,1, +72,SP95,2022,2, +72,SP95,2022,3, +72,SP95,2022,4, +72,SP95,2022,5, +72,SP95,2022,6, +72,SP95,2022,7, +72,SP95,2022,8, +72,SP95,2022,9, +72,SP95,2022,10, +72,SP95,2022,11, +72,SP95,2022,12, +72,SP95,2023,1, +72,SP95,2023,2, +72,SP95,2023,3, +72,SP95,2023,4, +72,SP95,2023,5, +72,SP95,2023,6, +72,SP95,2023,7, +72,SP95,2023,8, +72,SP95,2023,9, +72,SP95,2023,10, +72,SP95,2023,11, +72,SP95,2023,12, +72,SP95,2024,1, +72,SP95,2024,2, +72,SP95,2024,3, +72,SP95,2024,4, +72,SP95,2024,5, +72,SP95,2024,6, +72,SP95,2024,7, +72,SP95,2024,8, +72,SP95,2024,9, +72,SP95,2024,10, +72,SP95,2024,11, +72,SP95,2024,12, +72,GPLc,2007,11,73.79 +72,GPLc,2007,12,73.21 +72,GPLc,2007,1, +72,GPLc,2007,2, +72,GPLc,2007,3, +72,GPLc,2007,4, +72,GPLc,2007,5, +72,GPLc,2007,6, +72,GPLc,2007,7, +72,GPLc,2007,8, +72,GPLc,2007,9, +72,GPLc,2007,10, +72,GPLc,2008,4,73.6 +72,GPLc,2008,6,75.35 +72,GPLc,2008,7,76.2 +72,GPLc,2008,11,76.12 +72,GPLc,2008,12,73.01 +72,GPLc,2008,1,73.78 +72,GPLc,2008,2,73.95 +72,GPLc,2008,3,73.89 +72,GPLc,2008,5,74.01 +72,GPLc,2008,8,77.2 +72,GPLc,2008,9,77.23 +72,GPLc,2008,10,77.24 +72,GPLc,2009,3,67.11 +72,GPLc,2009,4,64.81 +72,GPLc,2009,5,63.67 +72,GPLc,2009,6,63.75 +72,GPLc,2009,7,63.46 +72,GPLc,2009,8,63.65 +72,GPLc,2009,9,65.24 +72,GPLc,2009,11,66.94 +72,GPLc,2009,12,68.24 +72,GPLc,2009,1,69.76 +72,GPLc,2009,10,65.73 +72,GPLc,2009,2,69.14 +72,GPLc,2010,1,69.27 +72,GPLc,2010,3,69.83 +72,GPLc,2010,5,70.97 +72,GPLc,2010,6,71.83 +72,GPLc,2010,7,73.44 +72,GPLc,2010,8,74.18 +72,GPLc,2010,10,75.67 +72,GPLc,2010,11,77.06 +72,GPLc,2010,12,80.18 +72,GPLc,2010,2,69.76 +72,GPLc,2010,4,69.73 +72,GPLc,2010,9,74.86 +72,GPLc,2011,1,80.5 +72,GPLc,2011,2,80.85 +72,GPLc,2011,7,83.14 +72,GPLc,2011,3,80.89 +72,GPLc,2011,4,81.17 +72,GPLc,2011,5,81.82 +72,GPLc,2011,6,82.5 +72,GPLc,2011,8,83.43 +72,GPLc,2011,9,83.35 +72,GPLc,2011,10,83.35 +72,GPLc,2011,11,83.27 +72,GPLc,2011,12,83.22 +72,GPLc,2012,1,83.8 +72,GPLc,2012,2,84.94 +72,GPLc,2012,3,86.76 +72,GPLc,2012,7,85.83 +72,GPLc,2012,10,86.32 +72,GPLc,2012,11,86.99 +72,GPLc,2012,4,87.42 +72,GPLc,2012,5,87.3 +72,GPLc,2012,6,86.94 +72,GPLc,2012,8,85.99 +72,GPLc,2012,9,85.35 +72,GPLc,2012,12,87.19 +72,GPLc,2013,4,88.83 +72,GPLc,2013,5,87.48 +72,GPLc,2013,7,86.51 +72,GPLc,2013,8,86.51 +72,GPLc,2013,9,86.8 +72,GPLc,2013,1,88.73 +72,GPLc,2013,2,88.5 +72,GPLc,2013,3,89.25 +72,GPLc,2013,6,86.93 +72,GPLc,2013,10,86.39 +72,GPLc,2013,11,86.28 +72,GPLc,2013,12,86.48 +72,GPLc,2014,2,86.1 +72,GPLc,2014,6,85.4 +72,GPLc,2014,12,83.47 +72,GPLc,2014,1,86.14 +72,GPLc,2014,3,85.8 +72,GPLc,2014,4,85.48 +72,GPLc,2014,5,85.46 +72,GPLc,2014,7,85.05 +72,GPLc,2014,8,84.88 +72,GPLc,2014,9,84.76 +72,GPLc,2014,10,84.71 +72,GPLc,2014,11,84.27 +72,GPLc,2015,1,80.35 +72,GPLc,2015,4,79.98 +72,GPLc,2015,9,78.13 +72,GPLc,2015,10,77.25 +72,GPLc,2015,2,79.79 +72,GPLc,2015,3,79.38 +72,GPLc,2015,5,80.55 +72,GPLc,2015,6,79.85 +72,GPLc,2015,7,79.19 +72,GPLc,2015,8,79.1 +72,GPLc,2015,11,76.79 +72,GPLc,2015,12,76.3 +72,GPLc,2016,1, +72,GPLc,2016,2, +72,GPLc,2016,3, +72,GPLc,2016,4, +72,GPLc,2016,5, +72,GPLc,2016,6, +72,GPLc,2016,7, +72,GPLc,2016,8, +72,GPLc,2016,9, +72,GPLc,2016,10, +72,GPLc,2016,11, +72,GPLc,2016,12, +72,GPLc,2017,1, +72,GPLc,2017,2, +72,GPLc,2017,3, +72,GPLc,2017,4, +72,GPLc,2017,5, +72,GPLc,2017,6, +72,GPLc,2017,7, +72,GPLc,2017,8, +72,GPLc,2017,9, +72,GPLc,2017,10, +72,GPLc,2017,11, +72,GPLc,2017,12, +72,GPLc,2018,1, +72,GPLc,2018,2, +72,GPLc,2018,3, +72,GPLc,2018,4, +72,GPLc,2018,5, +72,GPLc,2018,6, +72,GPLc,2018,7, +72,GPLc,2018,8, +72,GPLc,2018,9, +72,GPLc,2018,10, +72,GPLc,2018,11, +72,GPLc,2018,12, +72,GPLc,2019,1, +72,GPLc,2019,2, +72,GPLc,2019,3, +72,GPLc,2019,4, +72,GPLc,2019,5, +72,GPLc,2019,6, +72,GPLc,2019,7, +72,GPLc,2019,8, +72,GPLc,2019,9, +72,GPLc,2019,10, +72,GPLc,2019,11, +72,GPLc,2019,12, +72,GPLc,2020,1, +72,GPLc,2020,2, +72,GPLc,2020,3, +72,GPLc,2020,4, +72,GPLc,2020,5, +72,GPLc,2020,6, +72,GPLc,2020,7, +72,GPLc,2020,8, +72,GPLc,2020,9, +72,GPLc,2020,10, +72,GPLc,2020,11, +72,GPLc,2020,12, +72,GPLc,2021,1, +72,GPLc,2021,2, +72,GPLc,2021,3, +72,GPLc,2021,4, +72,GPLc,2021,5, +72,GPLc,2021,6, +72,GPLc,2021,7, +72,GPLc,2021,8, +72,GPLc,2021,9, +72,GPLc,2021,10, +72,GPLc,2021,11, +72,GPLc,2021,12, +72,GPLc,2022,1, +72,GPLc,2022,2, +72,GPLc,2022,3, +72,GPLc,2022,4, +72,GPLc,2022,5, +72,GPLc,2022,6, +72,GPLc,2022,7, +72,GPLc,2022,8, +72,GPLc,2022,9, +72,GPLc,2022,10, +72,GPLc,2022,11, +72,GPLc,2022,12, +72,GPLc,2023,1, +72,GPLc,2023,2, +72,GPLc,2023,3, +72,GPLc,2023,4, +72,GPLc,2023,5, +72,GPLc,2023,6, +72,GPLc,2023,7, +72,GPLc,2023,8, +72,GPLc,2023,9, +72,GPLc,2023,10, +72,GPLc,2023,11, +72,GPLc,2023,12, +72,GPLc,2024,1, +72,GPLc,2024,2, +72,GPLc,2024,3, +72,GPLc,2024,4, +72,GPLc,2024,5, +72,GPLc,2024,6, +72,GPLc,2024,7, +72,GPLc,2024,8, +72,GPLc,2024,9, +72,GPLc,2024,10, +72,GPLc,2024,11, +72,GPLc,2024,12, +72,E85,2007,7,82.7 +72,E85,2007,9,82.58 +72,E85,2007,5,82.93 +72,E85,2007,6,82.78 +72,E85,2007,8,82.62 +72,E85,2007,10,82.66 +72,E85,2007,11,82.73 +72,E85,2007,12,83.46 +72,E85,2007,1, +72,E85,2007,2, +72,E85,2007,3, +72,E85,2007,4, +72,E85,2008,7,86.47 +72,E85,2008,8,88.05 +72,E85,2008,1,84.3 +72,E85,2008,4,85.14 +72,E85,2008,5,85.06 +72,E85,2008,6,85.39 +72,E85,2008,10,88.75 +72,E85,2008,11,88.3 +72,E85,2008,12,87.61 +72,E85,2008,9,88.67 +72,E85,2008,2,84.92 +72,E85,2008,3,84.92 +72,E85,2009,6,91.62 +72,E85,2009,7,100.04 +72,E85,2009,8,104.58 +72,E85,2009,9,107.48 +72,E85,2009,12,110.92 +72,E85,2009,1,86.63 +72,E85,2009,11,110.21 +72,E85,2009,3,89.38 +72,E85,2009,4,89.63 +72,E85,2009,5,89.37 +72,E85,2009,10,108.63 +72,E85,2009,2,88.32 +72,E85,2010,1,90.87 +72,E85,2010,8,117.2 +72,E85,2010,9,117.99 +72,E85,2010,10,118.61 +72,E85,2010,5,115.36 +72,E85,2010,7,117.93 +72,E85,2010,6,117.2 +72,E85,2010,11,119.34 +72,E85,2010,2,101.3 +72,E85,2010,3,111.5 +72,E85,2010,4,114.85 +72,E85,2010,12,120.18 +72,E85,2011,2,88.93 +72,E85,2011,7,87.69 +72,E85,2011,1,88.91 +72,E85,2011,9,89.77 +72,E85,2011,3,87.29 +72,E85,2011,4,88.09 +72,E85,2011,11,92.15 +72,E85,2011,12,92.08 +72,E85,2011,5,88.45 +72,E85,2011,10,90.25 +72,E85,2011,8,88.32 +72,E85,2011,6,88.23 +72,E85,2012,12,93.2 +72,E85,2012,1,94.95 +72,E85,2012,3,94.16 +72,E85,2012,6,92.76 +72,E85,2012,7,92.31 +72,E85,2012,8,93.3 +72,E85,2012,9,91.65 +72,E85,2012,10,92.65 +72,E85,2012,2,96.65 +72,E85,2012,5,93.54 +72,E85,2012,11,92.22 +72,E85,2012,4,94.56 +72,E85,2013,7,93.02 +72,E85,2013,1,96.2 +72,E85,2013,6,95.36 +72,E85,2013,10,93.97 +72,E85,2013,12,91.74 +72,E85,2013,8,92.9 +72,E85,2013,11,92.72 +72,E85,2013,3,96.19 +72,E85,2013,4,95.88 +72,E85,2013,5,95.51 +72,E85,2013,2,96.82 +72,E85,2013,9,92.84 +72,E85,2014,9,86.93 +72,E85,2014,10,85.97 +72,E85,2014,12,87.11 +72,E85,2014,4,89.47 +72,E85,2014,5,88.17 +72,E85,2014,8,87.46 +72,E85,2014,11,86.13 +72,E85,2014,2,91.57 +72,E85,2014,3,91.65 +72,E85,2014,7,87.47 +72,E85,2014,6,87.62 +72,E85,2014,1,91.59 +72,E85,2015,10,87.0 +72,E85,2015,11,87.22 +72,E85,2015,12,88.63 +72,E85,2015,1,86.89 +72,E85,2015,2,89.32 +72,E85,2015,7,89.18 +72,E85,2015,8,87.5 +72,E85,2015,4,92.41 +72,E85,2015,6,90.92 +72,E85,2015,3,89.69 +72,E85,2015,5,92.14 +72,E85,2015,9,87.92 +72,E85,2016,1, +72,E85,2016,2, +72,E85,2016,3, +72,E85,2016,4, +72,E85,2016,5, +72,E85,2016,6, +72,E85,2016,7, +72,E85,2016,8, +72,E85,2016,9, +72,E85,2016,10, +72,E85,2016,11, +72,E85,2016,12, +72,E85,2017,1, +72,E85,2017,2, +72,E85,2017,3, +72,E85,2017,4, +72,E85,2017,5, +72,E85,2017,6, +72,E85,2017,7, +72,E85,2017,8, +72,E85,2017,9, +72,E85,2017,10, +72,E85,2017,11, +72,E85,2017,12, +72,E85,2018,1, +72,E85,2018,2, +72,E85,2018,3, +72,E85,2018,4, +72,E85,2018,5, +72,E85,2018,6, +72,E85,2018,7, +72,E85,2018,8, +72,E85,2018,9, +72,E85,2018,10, +72,E85,2018,11, +72,E85,2018,12, +72,E85,2019,1, +72,E85,2019,2, +72,E85,2019,3, +72,E85,2019,4, +72,E85,2019,5, +72,E85,2019,6, +72,E85,2019,7, +72,E85,2019,8, +72,E85,2019,9, +72,E85,2019,10, +72,E85,2019,11, +72,E85,2019,12, +72,E85,2020,1, +72,E85,2020,2, +72,E85,2020,3, +72,E85,2020,4, +72,E85,2020,5, +72,E85,2020,6, +72,E85,2020,7, +72,E85,2020,8, +72,E85,2020,9, +72,E85,2020,10, +72,E85,2020,11, +72,E85,2020,12, +72,E85,2021,1, +72,E85,2021,2, +72,E85,2021,3, +72,E85,2021,4, +72,E85,2021,5, +72,E85,2021,6, +72,E85,2021,7, +72,E85,2021,8, +72,E85,2021,9, +72,E85,2021,10, +72,E85,2021,11, +72,E85,2021,12, +72,E85,2022,1, +72,E85,2022,2, +72,E85,2022,3, +72,E85,2022,4, +72,E85,2022,5, +72,E85,2022,6, +72,E85,2022,7, +72,E85,2022,8, +72,E85,2022,9, +72,E85,2022,10, +72,E85,2022,11, +72,E85,2022,12, +72,E85,2023,1, +72,E85,2023,2, +72,E85,2023,3, +72,E85,2023,4, +72,E85,2023,5, +72,E85,2023,6, +72,E85,2023,7, +72,E85,2023,8, +72,E85,2023,9, +72,E85,2023,10, +72,E85,2023,11, +72,E85,2023,12, +72,E85,2024,1, +72,E85,2024,2, +72,E85,2024,3, +72,E85,2024,4, +72,E85,2024,5, +72,E85,2024,6, +72,E85,2024,7, +72,E85,2024,8, +72,E85,2024,9, +72,E85,2024,10, +72,E85,2024,11, +72,E85,2024,12, +72,E10,2009,7,124.16 +72,E10,2009,8,125.27 +72,E10,2009,9,124.85 +72,E10,2009,10,124.02 +72,E10,2009,12,127.23 +72,E10,2009,5,121.71 +72,E10,2009,6,126.36 +72,E10,2009,11,126.56 +72,E10,2009,4,115.42 +72,E10,2009,1, +72,E10,2009,2, +72,E10,2009,3, +72,E10,2010,1,132.96 +72,E10,2010,2,134.07 +72,E10,2010,3,138.82 +72,E10,2010,4,141.6 +72,E10,2010,5,142.02 +72,E10,2010,6,140.82 +72,E10,2010,7,138.84 +72,E10,2010,8,137.6 +72,E10,2010,9,137.52 +72,E10,2010,10,138.64 +72,E10,2010,12,144.6 +72,E10,2010,11,139.76 +72,E10,2011,3,154.31 +72,E10,2011,4,156.94 +72,E10,2011,5,157.37 +72,E10,2011,6,154.16 +72,E10,2011,7,154.19 +72,E10,2011,8,153.15 +72,E10,2011,9,155.09 +72,E10,2011,10,153.68 +72,E10,2011,11,152.7 +72,E10,2011,12,152.27 +72,E10,2011,1,149.6 +72,E10,2011,2,150.22 +72,E10,2012,4,168.19 +72,E10,2012,5,161.88 +72,E10,2012,6,156.72 +72,E10,2012,7,157.53 +72,E10,2012,8,161.76 +72,E10,2012,9,158.28 +72,E10,2012,10,155.2 +72,E10,2012,11,150.54 +72,E10,2012,12,151.24 +72,E10,2012,1,157.99 +72,E10,2012,2,161.21 +72,E10,2012,3,166.26 +72,E10,2013,7,155.64 +72,E10,2013,8,156.29 +72,E10,2013,9,155.39 +72,E10,2013,10,150.94 +72,E10,2013,11,150.02 +72,E10,2013,12,151.42 +72,E10,2013,1,155.11 +72,E10,2013,2,160.85 +72,E10,2013,3,160.4 +72,E10,2013,4,157.74 +72,E10,2013,5,154.7 +72,E10,2013,6,154.48 +72,E10,2014,2,151.15 +72,E10,2014,3,151.3 +72,E10,2014,6,153.63 +72,E10,2014,7,153.84 +72,E10,2014,8,151.36 +72,E10,2014,9,150.6 +72,E10,2014,10,148.08 +72,E10,2014,11,144.29 +72,E10,2014,12,135.33 +72,E10,2014,1,150.56 +72,E10,2014,4,152.23 +72,E10,2014,5,152.57 +72,E10,2015,1,127.34 +72,E10,2015,2,132.68 +72,E10,2015,3,138.4 +72,E10,2015,4,141.26 +72,E10,2015,5,144.21 +72,E10,2015,7,144.47 +72,E10,2015,8,139.05 +72,E10,2015,9,131.76 +72,E10,2015,10,130.31 +72,E10,2015,11,130.68 +72,E10,2015,12,128.11 +72,E10,2015,6,144.85 +72,E10,2016,1, +72,E10,2016,2, +72,E10,2016,3, +72,E10,2016,4, +72,E10,2016,5, +72,E10,2016,6, +72,E10,2016,7, +72,E10,2016,8, +72,E10,2016,9, +72,E10,2016,10, +72,E10,2016,11, +72,E10,2016,12, +72,E10,2017,1, +72,E10,2017,2, +72,E10,2017,3, +72,E10,2017,4, +72,E10,2017,5, +72,E10,2017,6, +72,E10,2017,7, +72,E10,2017,8, +72,E10,2017,9, +72,E10,2017,10, +72,E10,2017,11, +72,E10,2017,12, +72,E10,2018,1, +72,E10,2018,2, +72,E10,2018,3, +72,E10,2018,4, +72,E10,2018,5, +72,E10,2018,6, +72,E10,2018,7, +72,E10,2018,8, +72,E10,2018,9, +72,E10,2018,10, +72,E10,2018,11, +72,E10,2018,12, +72,E10,2019,1, +72,E10,2019,2, +72,E10,2019,3, +72,E10,2019,4, +72,E10,2019,5, +72,E10,2019,6, +72,E10,2019,7, +72,E10,2019,8, +72,E10,2019,9, +72,E10,2019,10, +72,E10,2019,11, +72,E10,2019,12, +72,E10,2020,1, +72,E10,2020,2, +72,E10,2020,3, +72,E10,2020,4, +72,E10,2020,5, +72,E10,2020,6, +72,E10,2020,7, +72,E10,2020,8, +72,E10,2020,9, +72,E10,2020,10, +72,E10,2020,11, +72,E10,2020,12, +72,E10,2021,1, +72,E10,2021,2, +72,E10,2021,3, +72,E10,2021,4, +72,E10,2021,5, +72,E10,2021,6, +72,E10,2021,7, +72,E10,2021,8, +72,E10,2021,9, +72,E10,2021,10, +72,E10,2021,11, +72,E10,2021,12, +72,E10,2022,1, +72,E10,2022,2, +72,E10,2022,3, +72,E10,2022,4, +72,E10,2022,5, +72,E10,2022,6, +72,E10,2022,7, +72,E10,2022,8, +72,E10,2022,9, +72,E10,2022,10, +72,E10,2022,11, +72,E10,2022,12, +72,E10,2023,1, +72,E10,2023,2, +72,E10,2023,3, +72,E10,2023,4, +72,E10,2023,5, +72,E10,2023,6, +72,E10,2023,7, +72,E10,2023,8, +72,E10,2023,9, +72,E10,2023,10, +72,E10,2023,11, +72,E10,2023,12, +72,E10,2024,1, +72,E10,2024,2, +72,E10,2024,3, +72,E10,2024,4, +72,E10,2024,5, +72,E10,2024,6, +72,E10,2024,7, +72,E10,2024,8, +72,E10,2024,9, +72,E10,2024,10, +72,E10,2024,11, +72,E10,2024,12, +72,SP98,2013,7,161.75 +72,SP98,2013,8,162.67 +72,SP98,2013,9,162.34 +72,SP98,2013,10,157.98 +72,SP98,2013,11,156.58 +72,SP98,2013,12,158.12 +72,SP98,2013,6,159.73 +72,SP98,2013,1, +72,SP98,2013,2, +72,SP98,2013,3, +72,SP98,2013,4, +72,SP98,2013,5, +72,SP98,2014,1,157.39 +72,SP98,2014,2,157.89 +72,SP98,2014,4,158.91 +72,SP98,2014,5,159.45 +72,SP98,2014,6,160.42 +72,SP98,2014,7,160.76 +72,SP98,2014,9,157.31 +72,SP98,2014,10,154.9 +72,SP98,2014,11,150.81 +72,SP98,2014,12,142.31 +72,SP98,2014,3,158.01 +72,SP98,2014,8,158.16 +72,SP98,2015,1,134.46 +72,SP98,2015,2,139.21 +72,SP98,2015,3,144.85 +72,SP98,2015,4,147.85 +72,SP98,2015,5,150.69 +72,SP98,2015,6,151.32 +72,SP98,2015,7,151.05 +72,SP98,2015,8,146.37 +72,SP98,2015,9,139.02 +72,SP98,2015,10,137.36 +72,SP98,2015,11,137.47 +72,SP98,2015,12,135.16 +72,SP98,2016,1, +72,SP98,2016,2, +72,SP98,2016,3, +72,SP98,2016,4, +72,SP98,2016,5, +72,SP98,2016,6, +72,SP98,2016,7, +72,SP98,2016,8, +72,SP98,2016,9, +72,SP98,2016,10, +72,SP98,2016,11, +72,SP98,2016,12, +72,SP98,2017,1, +72,SP98,2017,2, +72,SP98,2017,3, +72,SP98,2017,4, +72,SP98,2017,5, +72,SP98,2017,6, +72,SP98,2017,7, +72,SP98,2017,8, +72,SP98,2017,9, +72,SP98,2017,10, +72,SP98,2017,11, +72,SP98,2017,12, +72,SP98,2018,1, +72,SP98,2018,2, +72,SP98,2018,3, +72,SP98,2018,4, +72,SP98,2018,5, +72,SP98,2018,6, +72,SP98,2018,7, +72,SP98,2018,8, +72,SP98,2018,9, +72,SP98,2018,10, +72,SP98,2018,11, +72,SP98,2018,12, +72,SP98,2019,1, +72,SP98,2019,2, +72,SP98,2019,3, +72,SP98,2019,4, +72,SP98,2019,5, +72,SP98,2019,6, +72,SP98,2019,7, +72,SP98,2019,8, +72,SP98,2019,9, +72,SP98,2019,10, +72,SP98,2019,11, +72,SP98,2019,12, +72,SP98,2020,1, +72,SP98,2020,2, +72,SP98,2020,3, +72,SP98,2020,4, +72,SP98,2020,5, +72,SP98,2020,6, +72,SP98,2020,7, +72,SP98,2020,8, +72,SP98,2020,9, +72,SP98,2020,10, +72,SP98,2020,11, +72,SP98,2020,12, +72,SP98,2021,1, +72,SP98,2021,2, +72,SP98,2021,3, +72,SP98,2021,4, +72,SP98,2021,5, +72,SP98,2021,6, +72,SP98,2021,7, +72,SP98,2021,8, +72,SP98,2021,9, +72,SP98,2021,10, +72,SP98,2021,11, +72,SP98,2021,12, +72,SP98,2022,1, +72,SP98,2022,2, +72,SP98,2022,3, +72,SP98,2022,4, +72,SP98,2022,5, +72,SP98,2022,6, +72,SP98,2022,7, +72,SP98,2022,8, +72,SP98,2022,9, +72,SP98,2022,10, +72,SP98,2022,11, +72,SP98,2022,12, +72,SP98,2023,1, +72,SP98,2023,2, +72,SP98,2023,3, +72,SP98,2023,4, +72,SP98,2023,5, +72,SP98,2023,6, +72,SP98,2023,7, +72,SP98,2023,8, +72,SP98,2023,9, +72,SP98,2023,10, +72,SP98,2023,11, +72,SP98,2023,12, +72,SP98,2024,1, +72,SP98,2024,2, +72,SP98,2024,3, +72,SP98,2024,4, +72,SP98,2024,5, +72,SP98,2024,6, +72,SP98,2024,7, +72,SP98,2024,8, +72,SP98,2024,9, +72,SP98,2024,10, +72,SP98,2024,11, +72,SP98,2024,12, +43,Gazole,2007,1,101.63 +43,Gazole,2007,2,102.19 +43,Gazole,2007,3,103.58 +43,Gazole,2007,4,106.12 +43,Gazole,2007,5,106.83 +43,Gazole,2007,6,107.95 +43,Gazole,2007,7,108.84 +43,Gazole,2007,8,108.64 +43,Gazole,2007,9,110.6 +43,Gazole,2007,10,112.44 +43,Gazole,2007,11,121.17 +43,Gazole,2007,12,121.88 +43,Gazole,2008,1,120.88 +43,Gazole,2008,2,120.78 +43,Gazole,2008,3,127.17 +43,Gazole,2008,4,129.53 +43,Gazole,2008,5,138.97 +43,Gazole,2008,6,144.28 +43,Gazole,2008,7,143.22 +43,Gazole,2008,8,134.36 +43,Gazole,2008,9,130.65 +43,Gazole,2008,10,122.64 +43,Gazole,2008,11,112.64 +43,Gazole,2008,12,101.73 +43,Gazole,2009,1,99.51 +43,Gazole,2009,2,97.7 +43,Gazole,2009,3,94.84 +43,Gazole,2009,5,97.23 +43,Gazole,2009,6,101.76 +43,Gazole,2009,7,100.43 +43,Gazole,2009,8,103.37 +43,Gazole,2009,9,101.94 +43,Gazole,2009,10,102.96 +43,Gazole,2009,11,105.45 +43,Gazole,2009,12,104.36 +43,Gazole,2009,4,97.03 +43,Gazole,2010,6,117.02 +43,Gazole,2010,7,114.72 +43,Gazole,2010,8,114.44 +43,Gazole,2010,9,114.72 +43,Gazole,2010,10,118.34 +43,Gazole,2010,11,119.39 +43,Gazole,2010,12,122.42 +43,Gazole,2010,1,108.72 +43,Gazole,2010,2,108.7 +43,Gazole,2010,3,112.34 +43,Gazole,2010,4,116.08 +43,Gazole,2010,5,117.47 +43,Gazole,2011,1,129.04 +43,Gazole,2011,2,131.81 +43,Gazole,2011,3,137.58 +43,Gazole,2011,4,138.6 +43,Gazole,2011,6,134.1 +43,Gazole,2011,7,134.41 +43,Gazole,2011,8,133.59 +43,Gazole,2011,9,135.0 +43,Gazole,2011,11,139.75 +43,Gazole,2011,12,139.72 +43,Gazole,2011,5,135.38 +43,Gazole,2011,10,136.31 +43,Gazole,2012,1,142.15 +43,Gazole,2012,2,143.89 +43,Gazole,2012,3,146.2 +43,Gazole,2012,5,141.81 +43,Gazole,2012,6,136.28 +43,Gazole,2012,7,139.0 +43,Gazole,2012,8,144.59 +43,Gazole,2012,9,141.39 +43,Gazole,2012,10,140.94 +43,Gazole,2012,11,138.91 +43,Gazole,2012,12,138.35 +43,Gazole,2012,4,144.96 +43,Gazole,2013,1,140.08 +43,Gazole,2013,2,142.96 +43,Gazole,2013,3,141.54 +43,Gazole,2013,4,137.61 +43,Gazole,2013,5,135.02 +43,Gazole,2013,6,135.23 +43,Gazole,2013,7,136.88 +43,Gazole,2013,8,137.2 +43,Gazole,2013,9,139.12 +43,Gazole,2013,10,135.87 +43,Gazole,2013,11,134.39 +43,Gazole,2013,12,135.83 +43,Gazole,2014,2,134.98 +43,Gazole,2014,3,133.64 +43,Gazole,2014,4,132.96 +43,Gazole,2014,5,132.96 +43,Gazole,2014,6,133.1 +43,Gazole,2014,7,132.77 +43,Gazole,2014,8,131.92 +43,Gazole,2014,9,131.38 +43,Gazole,2014,10,128.48 +43,Gazole,2014,11,125.78 +43,Gazole,2014,12,117.01 +43,Gazole,2014,1,134.76 +43,Gazole,2015,1,113.61 +43,Gazole,2015,2,119.03 +43,Gazole,2015,3,122.85 +43,Gazole,2015,4,122.45 +43,Gazole,2015,5,125.11 +43,Gazole,2015,6,123.59 +43,Gazole,2015,7,120.12 +43,Gazole,2015,8,114.84 +43,Gazole,2015,9,112.84 +43,Gazole,2015,10,112.69 +43,Gazole,2015,11,112.64 +43,Gazole,2015,12,106.32 +43,Gazole,2016,1, +43,Gazole,2016,2, +43,Gazole,2016,3, +43,Gazole,2016,4, +43,Gazole,2016,5, +43,Gazole,2016,6, +43,Gazole,2016,7, +43,Gazole,2016,8, +43,Gazole,2016,9, +43,Gazole,2016,10, +43,Gazole,2016,11, +43,Gazole,2016,12, +43,Gazole,2017,1, +43,Gazole,2017,2, +43,Gazole,2017,3, +43,Gazole,2017,4, +43,Gazole,2017,5, +43,Gazole,2017,6, +43,Gazole,2017,7, +43,Gazole,2017,8, +43,Gazole,2017,9, +43,Gazole,2017,10, +43,Gazole,2017,11, +43,Gazole,2017,12, +43,Gazole,2018,1, +43,Gazole,2018,2, +43,Gazole,2018,3, +43,Gazole,2018,4, +43,Gazole,2018,5, +43,Gazole,2018,6, +43,Gazole,2018,7, +43,Gazole,2018,8, +43,Gazole,2018,9, +43,Gazole,2018,10, +43,Gazole,2018,11, +43,Gazole,2018,12, +43,Gazole,2019,1, +43,Gazole,2019,2, +43,Gazole,2019,3, +43,Gazole,2019,4, +43,Gazole,2019,5, +43,Gazole,2019,6, +43,Gazole,2019,7, +43,Gazole,2019,8, +43,Gazole,2019,9, +43,Gazole,2019,10, +43,Gazole,2019,11, +43,Gazole,2019,12, +43,Gazole,2020,1, +43,Gazole,2020,2, +43,Gazole,2020,3, +43,Gazole,2020,4, +43,Gazole,2020,5, +43,Gazole,2020,6, +43,Gazole,2020,7, +43,Gazole,2020,8, +43,Gazole,2020,9, +43,Gazole,2020,10, +43,Gazole,2020,11, +43,Gazole,2020,12, +43,Gazole,2021,1, +43,Gazole,2021,2, +43,Gazole,2021,3, +43,Gazole,2021,4, +43,Gazole,2021,5, +43,Gazole,2021,6, +43,Gazole,2021,7, +43,Gazole,2021,8, +43,Gazole,2021,9, +43,Gazole,2021,10, +43,Gazole,2021,11, +43,Gazole,2021,12, +43,Gazole,2022,1, +43,Gazole,2022,2, +43,Gazole,2022,3, +43,Gazole,2022,4, +43,Gazole,2022,5, +43,Gazole,2022,6, +43,Gazole,2022,7, +43,Gazole,2022,8, +43,Gazole,2022,9, +43,Gazole,2022,10, +43,Gazole,2022,11, +43,Gazole,2022,12, +43,Gazole,2023,1, +43,Gazole,2023,2, +43,Gazole,2023,3, +43,Gazole,2023,4, +43,Gazole,2023,5, +43,Gazole,2023,6, +43,Gazole,2023,7, +43,Gazole,2023,8, +43,Gazole,2023,9, +43,Gazole,2023,10, +43,Gazole,2023,11, +43,Gazole,2023,12, +43,Gazole,2024,1, +43,Gazole,2024,2, +43,Gazole,2024,3, +43,Gazole,2024,4, +43,Gazole,2024,5, +43,Gazole,2024,6, +43,Gazole,2024,7, +43,Gazole,2024,8, +43,Gazole,2024,9, +43,Gazole,2024,10, +43,Gazole,2024,11, +43,Gazole,2024,12, +43,SP95,2007,1,118.15 +43,SP95,2007,2,119.09 +43,SP95,2007,3,123.48 +43,SP95,2007,4,127.65 +43,SP95,2007,5,131.84 +43,SP95,2007,6,132.47 +43,SP95,2007,7,131.62 +43,SP95,2007,8,128.13 +43,SP95,2007,9,128.38 +43,SP95,2007,10,128.85 +43,SP95,2007,11,134.82 +43,SP95,2007,12,134.39 +43,SP95,2008,1,136.45 +43,SP95,2008,2,135.76 +43,SP95,2008,3,137.51 +43,SP95,2008,4,138.93 +43,SP95,2008,5,144.61 +43,SP95,2008,6,149.58 +43,SP95,2008,7,148.76 +43,SP95,2008,8,143.06 +43,SP95,2008,9,142.56 +43,SP95,2008,10,133.3 +43,SP95,2008,11,120.47 +43,SP95,2008,12,111.78 +43,SP95,2009,1,112.32 +43,SP95,2009,2,116.0 +43,SP95,2009,3,115.74 +43,SP95,2009,4,118.32 +43,SP95,2009,5,121.54 +43,SP95,2009,6,127.97 +43,SP95,2009,7,125.47 +43,SP95,2009,8,128.08 +43,SP95,2009,10,125.83 +43,SP95,2009,11,128.57 +43,SP95,2009,12,127.56 +43,SP95,2009,9,126.23 +43,SP95,2010,6,138.07 +43,SP95,2010,7,135.91 +43,SP95,2010,8,134.79 +43,SP95,2010,9,134.94 +43,SP95,2010,10,137.31 +43,SP95,2010,12,143.25 +43,SP95,2010,1,131.99 +43,SP95,2010,2,133.0 +43,SP95,2010,3,137.0 +43,SP95,2010,4,139.37 +43,SP95,2010,5,139.32 +43,SP95,2010,11,139.08 +43,SP95,2011,1,148.7 +43,SP95,2011,2,149.5 +43,SP95,2011,3,153.46 +43,SP95,2011,4,155.48 +43,SP95,2011,6,153.38 +43,SP95,2011,7,153.01 +43,SP95,2011,8,152.68 +43,SP95,2011,9,153.87 +43,SP95,2011,11,152.72 +43,SP95,2011,12,152.08 +43,SP95,2011,5,155.71 +43,SP95,2011,10,152.98 +43,SP95,2012,1,156.31 +43,SP95,2012,2,160.61 +43,SP95,2012,3,165.23 +43,SP95,2012,5,161.57 +43,SP95,2012,6,155.5 +43,SP95,2012,7,157.12 +43,SP95,2012,8,163.68 +43,SP95,2012,9,161.08 +43,SP95,2012,10,158.38 +43,SP95,2012,11,153.38 +43,SP95,2012,12,153.99 +43,SP95,2012,4,168.05 +43,SP95,2013,1,158.57 +43,SP95,2013,2,164.59 +43,SP95,2013,3,163.5 +43,SP95,2013,4,158.98 +43,SP95,2013,5,155.75 +43,SP95,2013,6,156.68 +43,SP95,2013,7,157.16 +43,SP95,2013,8,157.35 +43,SP95,2013,9,157.32 +43,SP95,2013,10,152.92 +43,SP95,2013,11,151.59 +43,SP95,2013,12,153.27 +43,SP95,2014,2,153.32 +43,SP95,2014,3,153.28 +43,SP95,2014,4,154.0 +43,SP95,2014,5,154.4 +43,SP95,2014,6,155.09 +43,SP95,2014,7,155.75 +43,SP95,2014,8,153.29 +43,SP95,2014,9,152.58 +43,SP95,2014,10,149.94 +43,SP95,2014,11,145.96 +43,SP95,2014,12,137.88 +43,SP95,2014,1,153.07 +43,SP95,2015,1,130.93 +43,SP95,2015,2,135.76 +43,SP95,2015,3,141.21 +43,SP95,2015,4,142.61 +43,SP95,2015,5,145.34 +43,SP95,2015,6,145.8 +43,SP95,2015,7,144.95 +43,SP95,2015,8,139.75 +43,SP95,2015,9,133.89 +43,SP95,2015,10,132.15 +43,SP95,2015,11,131.71 +43,SP95,2015,12,130.26 +43,SP95,2016,1, +43,SP95,2016,2, +43,SP95,2016,3, +43,SP95,2016,4, +43,SP95,2016,5, +43,SP95,2016,6, +43,SP95,2016,7, +43,SP95,2016,8, +43,SP95,2016,9, +43,SP95,2016,10, +43,SP95,2016,11, +43,SP95,2016,12, +43,SP95,2017,1, +43,SP95,2017,2, +43,SP95,2017,3, +43,SP95,2017,4, +43,SP95,2017,5, +43,SP95,2017,6, +43,SP95,2017,7, +43,SP95,2017,8, +43,SP95,2017,9, +43,SP95,2017,10, +43,SP95,2017,11, +43,SP95,2017,12, +43,SP95,2018,1, +43,SP95,2018,2, +43,SP95,2018,3, +43,SP95,2018,4, +43,SP95,2018,5, +43,SP95,2018,6, +43,SP95,2018,7, +43,SP95,2018,8, +43,SP95,2018,9, +43,SP95,2018,10, +43,SP95,2018,11, +43,SP95,2018,12, +43,SP95,2019,1, +43,SP95,2019,2, +43,SP95,2019,3, +43,SP95,2019,4, +43,SP95,2019,5, +43,SP95,2019,6, +43,SP95,2019,7, +43,SP95,2019,8, +43,SP95,2019,9, +43,SP95,2019,10, +43,SP95,2019,11, +43,SP95,2019,12, +43,SP95,2020,1, +43,SP95,2020,2, +43,SP95,2020,3, +43,SP95,2020,4, +43,SP95,2020,5, +43,SP95,2020,6, +43,SP95,2020,7, +43,SP95,2020,8, +43,SP95,2020,9, +43,SP95,2020,10, +43,SP95,2020,11, +43,SP95,2020,12, +43,SP95,2021,1, +43,SP95,2021,2, +43,SP95,2021,3, +43,SP95,2021,4, +43,SP95,2021,5, +43,SP95,2021,6, +43,SP95,2021,7, +43,SP95,2021,8, +43,SP95,2021,9, +43,SP95,2021,10, +43,SP95,2021,11, +43,SP95,2021,12, +43,SP95,2022,1, +43,SP95,2022,2, +43,SP95,2022,3, +43,SP95,2022,4, +43,SP95,2022,5, +43,SP95,2022,6, +43,SP95,2022,7, +43,SP95,2022,8, +43,SP95,2022,9, +43,SP95,2022,10, +43,SP95,2022,11, +43,SP95,2022,12, +43,SP95,2023,1, +43,SP95,2023,2, +43,SP95,2023,3, +43,SP95,2023,4, +43,SP95,2023,5, +43,SP95,2023,6, +43,SP95,2023,7, +43,SP95,2023,8, +43,SP95,2023,9, +43,SP95,2023,10, +43,SP95,2023,11, +43,SP95,2023,12, +43,SP95,2024,1, +43,SP95,2024,2, +43,SP95,2024,3, +43,SP95,2024,4, +43,SP95,2024,5, +43,SP95,2024,6, +43,SP95,2024,7, +43,SP95,2024,8, +43,SP95,2024,9, +43,SP95,2024,10, +43,SP95,2024,11, +43,SP95,2024,12, +43,GPLc,2007,11,71.07 +43,GPLc,2007,12,71.72 +43,GPLc,2007,1, +43,GPLc,2007,2, +43,GPLc,2007,3, +43,GPLc,2007,4, +43,GPLc,2007,5, +43,GPLc,2007,6, +43,GPLc,2007,7, +43,GPLc,2007,8, +43,GPLc,2007,9, +43,GPLc,2007,10, +43,GPLc,2008,1,73.31 +43,GPLc,2008,2,73.34 +43,GPLc,2008,3,73.21 +43,GPLc,2008,4,73.06 +43,GPLc,2008,5,73.77 +43,GPLc,2008,6,74.86 +43,GPLc,2008,7,75.57 +43,GPLc,2008,8,76.3 +43,GPLc,2008,9,76.66 +43,GPLc,2008,10,76.5 +43,GPLc,2008,11,75.63 +43,GPLc,2008,12,73.88 +43,GPLc,2009,1,70.53 +43,GPLc,2009,2,70.07 +43,GPLc,2009,3,68.32 +43,GPLc,2009,4,66.2 +43,GPLc,2009,5,64.38 +43,GPLc,2009,6,63.84 +43,GPLc,2009,7,63.7 +43,GPLc,2009,8,63.99 +43,GPLc,2009,9,64.74 +43,GPLc,2009,12,65.97 +43,GPLc,2009,10,64.89 +43,GPLc,2009,11,65.2 +43,GPLc,2010,1,70.74 +43,GPLc,2010,3,70.34 +43,GPLc,2010,6,70.53 +43,GPLc,2010,7,71.64 +43,GPLc,2010,8,74.31 +43,GPLc,2010,9,74.86 +43,GPLc,2010,10,75.32 +43,GPLc,2010,11,75.8 +43,GPLc,2010,2,70.44 +43,GPLc,2010,12,78.34 +43,GPLc,2010,5,70.26 +43,GPLc,2010,4,70.03 +43,GPLc,2011,1,79.43 +43,GPLc,2011,2,79.06 +43,GPLc,2011,3,79.49 +43,GPLc,2011,5,80.68 +43,GPLc,2011,7,81.18 +43,GPLc,2011,9,81.79 +43,GPLc,2011,6,81.25 +43,GPLc,2011,8,81.42 +43,GPLc,2011,4,79.63 +43,GPLc,2011,10,81.73 +43,GPLc,2011,11,81.6 +43,GPLc,2011,12,81.6 +43,GPLc,2012,1,83.96 +43,GPLc,2012,2,83.82 +43,GPLc,2012,4,86.22 +43,GPLc,2012,3,85.42 +43,GPLc,2012,5,86.55 +43,GPLc,2012,6,86.5 +43,GPLc,2012,7,85.89 +43,GPLc,2012,10,86.84 +43,GPLc,2012,8,85.88 +43,GPLc,2012,9,85.17 +43,GPLc,2012,11,87.21 +43,GPLc,2012,12,87.43 +43,GPLc,2013,1,89.5 +43,GPLc,2013,2,89.22 +43,GPLc,2013,3,89.16 +43,GPLc,2013,4,88.72 +43,GPLc,2013,6,87.55 +43,GPLc,2013,7,86.48 +43,GPLc,2013,8,86.35 +43,GPLc,2013,9,86.38 +43,GPLc,2013,10,86.26 +43,GPLc,2013,11,85.89 +43,GPLc,2013,5,88.25 +43,GPLc,2013,12,86.86 +43,GPLc,2014,1,85.67 +43,GPLc,2014,3,87.06 +43,GPLc,2014,4,87.13 +43,GPLc,2014,5,87.1 +43,GPLc,2014,6,86.92 +43,GPLc,2014,7,86.7 +43,GPLc,2014,8,86.14 +43,GPLc,2014,9,86.08 +43,GPLc,2014,11,85.48 +43,GPLc,2014,12,84.69 +43,GPLc,2014,2,86.94 +43,GPLc,2014,10,85.94 +43,GPLc,2015,4,81.34 +43,GPLc,2015,6,79.79 +43,GPLc,2015,9,78.85 +43,GPLc,2015,10,78.11 +43,GPLc,2015,2,81.45 +43,GPLc,2015,3,81.75 +43,GPLc,2015,5,81.0 +43,GPLc,2015,7,79.16 +43,GPLc,2015,8,78.99 +43,GPLc,2015,11,77.33 +43,GPLc,2015,12,77.1 +43,GPLc,2015,1,82.84 +43,GPLc,2016,1, +43,GPLc,2016,2, +43,GPLc,2016,3, +43,GPLc,2016,4, +43,GPLc,2016,5, +43,GPLc,2016,6, +43,GPLc,2016,7, +43,GPLc,2016,8, +43,GPLc,2016,9, +43,GPLc,2016,10, +43,GPLc,2016,11, +43,GPLc,2016,12, +43,GPLc,2017,1, +43,GPLc,2017,2, +43,GPLc,2017,3, +43,GPLc,2017,4, +43,GPLc,2017,5, +43,GPLc,2017,6, +43,GPLc,2017,7, +43,GPLc,2017,8, +43,GPLc,2017,9, +43,GPLc,2017,10, +43,GPLc,2017,11, +43,GPLc,2017,12, +43,GPLc,2018,1, +43,GPLc,2018,2, +43,GPLc,2018,3, +43,GPLc,2018,4, +43,GPLc,2018,5, +43,GPLc,2018,6, +43,GPLc,2018,7, +43,GPLc,2018,8, +43,GPLc,2018,9, +43,GPLc,2018,10, +43,GPLc,2018,11, +43,GPLc,2018,12, +43,GPLc,2019,1, +43,GPLc,2019,2, +43,GPLc,2019,3, +43,GPLc,2019,4, +43,GPLc,2019,5, +43,GPLc,2019,6, +43,GPLc,2019,7, +43,GPLc,2019,8, +43,GPLc,2019,9, +43,GPLc,2019,10, +43,GPLc,2019,11, +43,GPLc,2019,12, +43,GPLc,2020,1, +43,GPLc,2020,2, +43,GPLc,2020,3, +43,GPLc,2020,4, +43,GPLc,2020,5, +43,GPLc,2020,6, +43,GPLc,2020,7, +43,GPLc,2020,8, +43,GPLc,2020,9, +43,GPLc,2020,10, +43,GPLc,2020,11, +43,GPLc,2020,12, +43,GPLc,2021,1, +43,GPLc,2021,2, +43,GPLc,2021,3, +43,GPLc,2021,4, +43,GPLc,2021,5, +43,GPLc,2021,6, +43,GPLc,2021,7, +43,GPLc,2021,8, +43,GPLc,2021,9, +43,GPLc,2021,10, +43,GPLc,2021,11, +43,GPLc,2021,12, +43,GPLc,2022,1, +43,GPLc,2022,2, +43,GPLc,2022,3, +43,GPLc,2022,4, +43,GPLc,2022,5, +43,GPLc,2022,6, +43,GPLc,2022,7, +43,GPLc,2022,8, +43,GPLc,2022,9, +43,GPLc,2022,10, +43,GPLc,2022,11, +43,GPLc,2022,12, +43,GPLc,2023,1, +43,GPLc,2023,2, +43,GPLc,2023,3, +43,GPLc,2023,4, +43,GPLc,2023,5, +43,GPLc,2023,6, +43,GPLc,2023,7, +43,GPLc,2023,8, +43,GPLc,2023,9, +43,GPLc,2023,10, +43,GPLc,2023,11, +43,GPLc,2023,12, +43,GPLc,2024,1, +43,GPLc,2024,2, +43,GPLc,2024,3, +43,GPLc,2024,4, +43,GPLc,2024,5, +43,GPLc,2024,6, +43,GPLc,2024,7, +43,GPLc,2024,8, +43,GPLc,2024,9, +43,GPLc,2024,10, +43,GPLc,2024,11, +43,GPLc,2024,12, +43,E85,2007,6,83.12 +43,E85,2007,7,83.0 +43,E85,2007,8,83.0 +43,E85,2007,9,83.0 +43,E85,2007,10,83.0 +43,E85,2007,11,83.0 +43,E85,2007,12,83.32 +43,E85,2007,1, +43,E85,2007,2, +43,E85,2007,3, +43,E85,2007,4, +43,E85,2007,5, +43,E85,2008,4,82.61 +43,E85,2008,5,87.69 +43,E85,2008,8,89.6 +43,E85,2008,9,89.6 +43,E85,2008,10,89.44 +43,E85,2008,11,89.4 +43,E85,2008,12,89.4 +43,E85,2008,3,81.87 +43,E85,2008,1,83.0 +43,E85,2008,2,83.0 +43,E85,2008,6,89.65 +43,E85,2008,7,89.55 +43,E85,2009,10,101.22 +43,E85,2009,1,91.0 +43,E85,2009,2,91.0 +43,E85,2009,3,91.0 +43,E85,2009,5,90.0 +43,E85,2009,7,91.83 +43,E85,2009,8,97.98 +43,E85,2009,9,97.98 +43,E85,2009,11,106.01 +43,E85,2009,4,90.03 +43,E85,2009,6,90.0 +43,E85,2009,12,107.68 +43,E85,2010,2,102.52 +43,E85,2010,8,114.42 +43,E85,2010,6,111.58 +43,E85,2010,4,108.14 +43,E85,2010,10,118.64 +43,E85,2010,12,118.54 +43,E85,2010,5,106.32 +43,E85,2010,9,118.36 +43,E85,2010,1,93.0 +43,E85,2010,3,108.9 +43,E85,2010,7,111.69 +43,E85,2010,11,118.51 +43,E85,2011,1,92.0 +43,E85,2011,2,91.92 +43,E85,2011,3,91.97 +43,E85,2011,5,92.91 +43,E85,2011,8,90.98 +43,E85,2011,11,91.68 +43,E85,2011,7,91.86 +43,E85,2011,12,92.19 +43,E85,2011,4,91.97 +43,E85,2011,6,92.63 +43,E85,2011,9,91.22 +43,E85,2011,10,91.22 +43,E85,2012,1,95.54 +43,E85,2012,3,97.32 +43,E85,2012,5,97.32 +43,E85,2012,7,97.21 +43,E85,2012,2,96.47 +43,E85,2012,8,97.22 +43,E85,2012,9,96.42 +43,E85,2012,11,97.15 +43,E85,2012,10,97.09 +43,E85,2012,4,97.32 +43,E85,2012,6,97.32 +43,E85,2012,12,97.15 +43,E85,2013,1,97.0 +43,E85,2013,2,99.47 +43,E85,2013,3,110.27 +43,E85,2013,11,105.05 +43,E85,2013,5,106.4 +43,E85,2013,12,103.86 +43,E85,2013,4,107.56 +43,E85,2013,7,107.45 +43,E85,2013,9,105.36 +43,E85,2013,10,105.18 +43,E85,2013,8,106.57 +43,E85,2013,6,107.45 +43,E85,2014,12,106.59 +43,E85,2014,11,90.0 +43,E85,2014,2,94.77 +43,E85,2014,7,94.39 +43,E85,2014,8,94.38 +43,E85,2014,9,94.16 +43,E85,2014,10,88.57 +43,E85,2014,3,94.56 +43,E85,2014,4,94.29 +43,E85,2014,1,95.0 +43,E85,2014,6,94.25 +43,E85,2014,5,94.25 +43,E85,2015,4,104.83 +43,E85,2015,9,101.89 +43,E85,2015,2,98.98 +43,E85,2015,10,104.07 +43,E85,2015,6,102.39 +43,E85,2015,7,101.38 +43,E85,2015,8,100.97 +43,E85,2015,11,104.09 +43,E85,2015,12,102.98 +43,E85,2015,1,111.5 +43,E85,2015,3,99.27 +43,E85,2015,5,103.86 +43,E85,2016,1, +43,E85,2016,2, +43,E85,2016,3, +43,E85,2016,4, +43,E85,2016,5, +43,E85,2016,6, +43,E85,2016,7, +43,E85,2016,8, +43,E85,2016,9, +43,E85,2016,10, +43,E85,2016,11, +43,E85,2016,12, +43,E85,2017,1, +43,E85,2017,2, +43,E85,2017,3, +43,E85,2017,4, +43,E85,2017,5, +43,E85,2017,6, +43,E85,2017,7, +43,E85,2017,8, +43,E85,2017,9, +43,E85,2017,10, +43,E85,2017,11, +43,E85,2017,12, +43,E85,2018,1, +43,E85,2018,2, +43,E85,2018,3, +43,E85,2018,4, +43,E85,2018,5, +43,E85,2018,6, +43,E85,2018,7, +43,E85,2018,8, +43,E85,2018,9, +43,E85,2018,10, +43,E85,2018,11, +43,E85,2018,12, +43,E85,2019,1, +43,E85,2019,2, +43,E85,2019,3, +43,E85,2019,4, +43,E85,2019,5, +43,E85,2019,6, +43,E85,2019,7, +43,E85,2019,8, +43,E85,2019,9, +43,E85,2019,10, +43,E85,2019,11, +43,E85,2019,12, +43,E85,2020,1, +43,E85,2020,2, +43,E85,2020,3, +43,E85,2020,4, +43,E85,2020,5, +43,E85,2020,6, +43,E85,2020,7, +43,E85,2020,8, +43,E85,2020,9, +43,E85,2020,10, +43,E85,2020,11, +43,E85,2020,12, +43,E85,2021,1, +43,E85,2021,2, +43,E85,2021,3, +43,E85,2021,4, +43,E85,2021,5, +43,E85,2021,6, +43,E85,2021,7, +43,E85,2021,8, +43,E85,2021,9, +43,E85,2021,10, +43,E85,2021,11, +43,E85,2021,12, +43,E85,2022,1, +43,E85,2022,2, +43,E85,2022,3, +43,E85,2022,4, +43,E85,2022,5, +43,E85,2022,6, +43,E85,2022,7, +43,E85,2022,8, +43,E85,2022,9, +43,E85,2022,10, +43,E85,2022,11, +43,E85,2022,12, +43,E85,2023,1, +43,E85,2023,2, +43,E85,2023,3, +43,E85,2023,4, +43,E85,2023,5, +43,E85,2023,6, +43,E85,2023,7, +43,E85,2023,8, +43,E85,2023,9, +43,E85,2023,10, +43,E85,2023,11, +43,E85,2023,12, +43,E85,2024,1, +43,E85,2024,2, +43,E85,2024,3, +43,E85,2024,4, +43,E85,2024,5, +43,E85,2024,6, +43,E85,2024,7, +43,E85,2024,8, +43,E85,2024,9, +43,E85,2024,10, +43,E85,2024,11, +43,E85,2024,12, +43,E10,2009,4,111.0 +43,E10,2009,5,114.8 +43,E10,2009,6,120.88 +43,E10,2009,7,120.25 +43,E10,2009,8,122.25 +43,E10,2009,9,121.2 +43,E10,2009,10,120.43 +43,E10,2009,11,122.83 +43,E10,2009,12,121.9 +43,E10,2009,1, +43,E10,2009,2, +43,E10,2009,3, +43,E10,2010,1,126.1 +43,E10,2010,2,127.23 +43,E10,2010,3,130.96 +43,E10,2010,4,133.98 +43,E10,2010,5,133.66 +43,E10,2010,6,132.38 +43,E10,2010,7,130.52 +43,E10,2010,8,129.56 +43,E10,2010,9,130.02 +43,E10,2010,10,131.78 +43,E10,2010,11,133.68 +43,E10,2010,12,137.09 +43,E10,2011,3,148.94 +43,E10,2011,4,152.57 +43,E10,2011,5,153.48 +43,E10,2011,6,151.98 +43,E10,2011,7,152.53 +43,E10,2011,8,151.72 +43,E10,2011,9,153.27 +43,E10,2011,10,152.38 +43,E10,2011,11,151.51 +43,E10,2011,12,151.94 +43,E10,2011,1,143.15 +43,E10,2011,2,144.05 +43,E10,2012,6,153.11 +43,E10,2012,7,154.81 +43,E10,2012,8,160.14 +43,E10,2012,9,157.37 +43,E10,2012,10,154.73 +43,E10,2012,11,149.97 +43,E10,2012,12,150.93 +43,E10,2012,1,155.86 +43,E10,2012,2,159.42 +43,E10,2012,3,163.69 +43,E10,2012,4,166.23 +43,E10,2012,5,159.56 +43,E10,2013,1,155.91 +43,E10,2013,2,161.91 +43,E10,2013,3,161.29 +43,E10,2013,4,157.26 +43,E10,2013,5,154.13 +43,E10,2013,6,154.9 +43,E10,2013,7,155.45 +43,E10,2013,8,155.68 +43,E10,2013,9,155.35 +43,E10,2013,10,151.65 +43,E10,2013,11,150.49 +43,E10,2013,12,151.45 +43,E10,2014,2,151.94 +43,E10,2014,3,151.83 +43,E10,2014,4,152.22 +43,E10,2014,5,152.97 +43,E10,2014,6,153.68 +43,E10,2014,7,154.03 +43,E10,2014,8,151.8 +43,E10,2014,9,151.12 +43,E10,2014,10,148.8 +43,E10,2014,11,144.75 +43,E10,2014,12,136.79 +43,E10,2014,1,150.95 +43,E10,2015,1,130.03 +43,E10,2015,2,134.17 +43,E10,2015,3,139.64 +43,E10,2015,4,140.91 +43,E10,2015,5,143.52 +43,E10,2015,6,144.04 +43,E10,2015,7,143.46 +43,E10,2015,8,138.36 +43,E10,2015,9,132.2 +43,E10,2015,10,130.96 +43,E10,2015,11,130.75 +43,E10,2015,12,128.76 +43,E10,2016,1, +43,E10,2016,2, +43,E10,2016,3, +43,E10,2016,4, +43,E10,2016,5, +43,E10,2016,6, +43,E10,2016,7, +43,E10,2016,8, +43,E10,2016,9, +43,E10,2016,10, +43,E10,2016,11, +43,E10,2016,12, +43,E10,2017,1, +43,E10,2017,2, +43,E10,2017,3, +43,E10,2017,4, +43,E10,2017,5, +43,E10,2017,6, +43,E10,2017,7, +43,E10,2017,8, +43,E10,2017,9, +43,E10,2017,10, +43,E10,2017,11, +43,E10,2017,12, +43,E10,2018,1, +43,E10,2018,2, +43,E10,2018,3, +43,E10,2018,4, +43,E10,2018,5, +43,E10,2018,6, +43,E10,2018,7, +43,E10,2018,8, +43,E10,2018,9, +43,E10,2018,10, +43,E10,2018,11, +43,E10,2018,12, +43,E10,2019,1, +43,E10,2019,2, +43,E10,2019,3, +43,E10,2019,4, +43,E10,2019,5, +43,E10,2019,6, +43,E10,2019,7, +43,E10,2019,8, +43,E10,2019,9, +43,E10,2019,10, +43,E10,2019,11, +43,E10,2019,12, +43,E10,2020,1, +43,E10,2020,2, +43,E10,2020,3, +43,E10,2020,4, +43,E10,2020,5, +43,E10,2020,6, +43,E10,2020,7, +43,E10,2020,8, +43,E10,2020,9, +43,E10,2020,10, +43,E10,2020,11, +43,E10,2020,12, +43,E10,2021,1, +43,E10,2021,2, +43,E10,2021,3, +43,E10,2021,4, +43,E10,2021,5, +43,E10,2021,6, +43,E10,2021,7, +43,E10,2021,8, +43,E10,2021,9, +43,E10,2021,10, +43,E10,2021,11, +43,E10,2021,12, +43,E10,2022,1, +43,E10,2022,2, +43,E10,2022,3, +43,E10,2022,4, +43,E10,2022,5, +43,E10,2022,6, +43,E10,2022,7, +43,E10,2022,8, +43,E10,2022,9, +43,E10,2022,10, +43,E10,2022,11, +43,E10,2022,12, +43,E10,2023,1, +43,E10,2023,2, +43,E10,2023,3, +43,E10,2023,4, +43,E10,2023,5, +43,E10,2023,6, +43,E10,2023,7, +43,E10,2023,8, +43,E10,2023,9, +43,E10,2023,10, +43,E10,2023,11, +43,E10,2023,12, +43,E10,2024,1, +43,E10,2024,2, +43,E10,2024,3, +43,E10,2024,4, +43,E10,2024,5, +43,E10,2024,6, +43,E10,2024,7, +43,E10,2024,8, +43,E10,2024,9, +43,E10,2024,10, +43,E10,2024,11, +43,E10,2024,12, +43,SP98,2013,7,161.32 +43,SP98,2013,8,161.51 +43,SP98,2013,9,161.79 +43,SP98,2013,10,157.97 +43,SP98,2013,11,156.41 +43,SP98,2013,12,157.55 +43,SP98,2013,6,159.95 +43,SP98,2013,1, +43,SP98,2013,2, +43,SP98,2013,3, +43,SP98,2013,4, +43,SP98,2013,5, +43,SP98,2014,1,157.59 +43,SP98,2014,2,157.92 +43,SP98,2014,3,157.91 +43,SP98,2014,4,158.4 +43,SP98,2014,6,159.62 +43,SP98,2014,7,160.36 +43,SP98,2014,8,158.21 +43,SP98,2014,9,157.4 +43,SP98,2014,10,155.22 +43,SP98,2014,11,151.48 +43,SP98,2014,12,144.1 +43,SP98,2014,5,159.08 +43,SP98,2015,1,136.98 +43,SP98,2015,2,140.38 +43,SP98,2015,3,145.38 +43,SP98,2015,4,147.01 +43,SP98,2015,6,150.17 +43,SP98,2015,8,145.15 +43,SP98,2015,11,137.23 +43,SP98,2015,12,135.73 +43,SP98,2015,5,149.53 +43,SP98,2015,7,149.63 +43,SP98,2015,9,139.49 +43,SP98,2015,10,137.76 +43,SP98,2016,1, +43,SP98,2016,2, +43,SP98,2016,3, +43,SP98,2016,4, +43,SP98,2016,5, +43,SP98,2016,6, +43,SP98,2016,7, +43,SP98,2016,8, +43,SP98,2016,9, +43,SP98,2016,10, +43,SP98,2016,11, +43,SP98,2016,12, +43,SP98,2017,1, +43,SP98,2017,2, +43,SP98,2017,3, +43,SP98,2017,4, +43,SP98,2017,5, +43,SP98,2017,6, +43,SP98,2017,7, +43,SP98,2017,8, +43,SP98,2017,9, +43,SP98,2017,10, +43,SP98,2017,11, +43,SP98,2017,12, +43,SP98,2018,1, +43,SP98,2018,2, +43,SP98,2018,3, +43,SP98,2018,4, +43,SP98,2018,5, +43,SP98,2018,6, +43,SP98,2018,7, +43,SP98,2018,8, +43,SP98,2018,9, +43,SP98,2018,10, +43,SP98,2018,11, +43,SP98,2018,12, +43,SP98,2019,1, +43,SP98,2019,2, +43,SP98,2019,3, +43,SP98,2019,4, +43,SP98,2019,5, +43,SP98,2019,6, +43,SP98,2019,7, +43,SP98,2019,8, +43,SP98,2019,9, +43,SP98,2019,10, +43,SP98,2019,11, +43,SP98,2019,12, +43,SP98,2020,1, +43,SP98,2020,2, +43,SP98,2020,3, +43,SP98,2020,4, +43,SP98,2020,5, +43,SP98,2020,6, +43,SP98,2020,7, +43,SP98,2020,8, +43,SP98,2020,9, +43,SP98,2020,10, +43,SP98,2020,11, +43,SP98,2020,12, +43,SP98,2021,1, +43,SP98,2021,2, +43,SP98,2021,3, +43,SP98,2021,4, +43,SP98,2021,5, +43,SP98,2021,6, +43,SP98,2021,7, +43,SP98,2021,8, +43,SP98,2021,9, +43,SP98,2021,10, +43,SP98,2021,11, +43,SP98,2021,12, +43,SP98,2022,1, +43,SP98,2022,2, +43,SP98,2022,3, +43,SP98,2022,4, +43,SP98,2022,5, +43,SP98,2022,6, +43,SP98,2022,7, +43,SP98,2022,8, +43,SP98,2022,9, +43,SP98,2022,10, +43,SP98,2022,11, +43,SP98,2022,12, +43,SP98,2023,1, +43,SP98,2023,2, +43,SP98,2023,3, +43,SP98,2023,4, +43,SP98,2023,5, +43,SP98,2023,6, +43,SP98,2023,7, +43,SP98,2023,8, +43,SP98,2023,9, +43,SP98,2023,10, +43,SP98,2023,11, +43,SP98,2023,12, +43,SP98,2024,1, +43,SP98,2024,2, +43,SP98,2024,3, +43,SP98,2024,4, +43,SP98,2024,5, +43,SP98,2024,6, +43,SP98,2024,7, +43,SP98,2024,8, +43,SP98,2024,9, +43,SP98,2024,10, +43,SP98,2024,11, +43,SP98,2024,12, +23,Gazole,2007,1,101.53 +23,Gazole,2007,2,102.03 +23,Gazole,2007,3,103.83 +23,Gazole,2007,4,106.38 +23,Gazole,2007,5,106.92 +23,Gazole,2007,6,108.23 +23,Gazole,2007,7,109.1 +23,Gazole,2007,8,109.21 +23,Gazole,2007,9,111.05 +23,Gazole,2007,10,112.84 +23,Gazole,2007,11,120.28 +23,Gazole,2007,12,120.46 +23,Gazole,2008,1,120.09 +23,Gazole,2008,2,120.72 +23,Gazole,2008,3,126.33 +23,Gazole,2008,4,129.08 +23,Gazole,2008,5,138.98 +23,Gazole,2008,6,144.19 +23,Gazole,2008,7,143.26 +23,Gazole,2008,8,134.47 +23,Gazole,2008,9,131.27 +23,Gazole,2008,10,122.54 +23,Gazole,2008,11,112.33 +23,Gazole,2008,12,100.48 +23,Gazole,2009,1,97.93 +23,Gazole,2009,2,97.0 +23,Gazole,2009,3,94.61 +23,Gazole,2009,4,96.91 +23,Gazole,2009,5,97.36 +23,Gazole,2009,6,101.92 +23,Gazole,2009,7,100.2 +23,Gazole,2009,8,103.36 +23,Gazole,2009,9,101.65 +23,Gazole,2009,10,102.69 +23,Gazole,2009,11,104.6 +23,Gazole,2009,12,104.0 +23,Gazole,2010,1,108.17 +23,Gazole,2010,2,108.29 +23,Gazole,2010,3,112.4 +23,Gazole,2010,4,116.29 +23,Gazole,2010,5,117.39 +23,Gazole,2010,6,117.2 +23,Gazole,2010,7,114.64 +23,Gazole,2010,8,114.38 +23,Gazole,2010,11,118.82 +23,Gazole,2010,12,122.85 +23,Gazole,2010,9,115.1 +23,Gazole,2010,10,117.26 +23,Gazole,2011,1,129.1 +23,Gazole,2011,2,131.96 +23,Gazole,2011,3,137.38 +23,Gazole,2011,4,138.15 +23,Gazole,2011,5,134.26 +23,Gazole,2011,6,133.45 +23,Gazole,2011,7,133.84 +23,Gazole,2011,8,132.8 +23,Gazole,2011,9,134.62 +23,Gazole,2011,10,135.9 +23,Gazole,2011,11,139.22 +23,Gazole,2011,12,138.35 +23,Gazole,2012,1,141.87 +23,Gazole,2012,2,143.06 +23,Gazole,2012,3,145.77 +23,Gazole,2012,4,144.84 +23,Gazole,2012,5,141.54 +23,Gazole,2012,6,135.56 +23,Gazole,2012,7,138.32 +23,Gazole,2012,8,144.36 +23,Gazole,2012,9,140.73 +23,Gazole,2012,10,140.8 +23,Gazole,2012,11,138.75 +23,Gazole,2012,12,137.23 +23,Gazole,2013,1,138.92 +23,Gazole,2013,2,142.14 +23,Gazole,2013,3,140.74 +23,Gazole,2013,4,136.81 +23,Gazole,2013,5,134.51 +23,Gazole,2013,6,133.99 +23,Gazole,2013,7,135.91 +23,Gazole,2013,8,136.56 +23,Gazole,2013,9,138.11 +23,Gazole,2013,10,134.56 +23,Gazole,2013,11,133.52 +23,Gazole,2013,12,134.75 +23,Gazole,2014,1,133.95 +23,Gazole,2014,2,134.14 +23,Gazole,2014,3,132.68 +23,Gazole,2014,4,132.33 +23,Gazole,2014,5,132.15 +23,Gazole,2014,6,132.46 +23,Gazole,2014,7,131.71 +23,Gazole,2014,8,131.25 +23,Gazole,2014,9,130.76 +23,Gazole,2014,10,127.41 +23,Gazole,2014,11,124.57 +23,Gazole,2014,12,115.18 +23,Gazole,2015,1,112.07 +23,Gazole,2015,2,118.32 +23,Gazole,2015,3,121.72 +23,Gazole,2015,4,121.72 +23,Gazole,2015,5,124.52 +23,Gazole,2015,6,122.67 +23,Gazole,2015,7,119.22 +23,Gazole,2015,8,113.44 +23,Gazole,2015,9,111.92 +23,Gazole,2015,10,111.68 +23,Gazole,2015,11,111.38 +23,Gazole,2015,12,104.46 +23,Gazole,2016,1, +23,Gazole,2016,2, +23,Gazole,2016,3, +23,Gazole,2016,4, +23,Gazole,2016,5, +23,Gazole,2016,6, +23,Gazole,2016,7, +23,Gazole,2016,8, +23,Gazole,2016,9, +23,Gazole,2016,10, +23,Gazole,2016,11, +23,Gazole,2016,12, +23,Gazole,2017,1, +23,Gazole,2017,2, +23,Gazole,2017,3, +23,Gazole,2017,4, +23,Gazole,2017,5, +23,Gazole,2017,6, +23,Gazole,2017,7, +23,Gazole,2017,8, +23,Gazole,2017,9, +23,Gazole,2017,10, +23,Gazole,2017,11, +23,Gazole,2017,12, +23,Gazole,2018,1, +23,Gazole,2018,2, +23,Gazole,2018,3, +23,Gazole,2018,4, +23,Gazole,2018,5, +23,Gazole,2018,6, +23,Gazole,2018,7, +23,Gazole,2018,8, +23,Gazole,2018,9, +23,Gazole,2018,10, +23,Gazole,2018,11, +23,Gazole,2018,12, +23,Gazole,2019,1, +23,Gazole,2019,2, +23,Gazole,2019,3, +23,Gazole,2019,4, +23,Gazole,2019,5, +23,Gazole,2019,6, +23,Gazole,2019,7, +23,Gazole,2019,8, +23,Gazole,2019,9, +23,Gazole,2019,10, +23,Gazole,2019,11, +23,Gazole,2019,12, +23,Gazole,2020,1, +23,Gazole,2020,2, +23,Gazole,2020,3, +23,Gazole,2020,4, +23,Gazole,2020,5, +23,Gazole,2020,6, +23,Gazole,2020,7, +23,Gazole,2020,8, +23,Gazole,2020,9, +23,Gazole,2020,10, +23,Gazole,2020,11, +23,Gazole,2020,12, +23,Gazole,2021,1, +23,Gazole,2021,2, +23,Gazole,2021,3, +23,Gazole,2021,4, +23,Gazole,2021,5, +23,Gazole,2021,6, +23,Gazole,2021,7, +23,Gazole,2021,8, +23,Gazole,2021,9, +23,Gazole,2021,10, +23,Gazole,2021,11, +23,Gazole,2021,12, +23,Gazole,2022,1, +23,Gazole,2022,2, +23,Gazole,2022,3, +23,Gazole,2022,4, +23,Gazole,2022,5, +23,Gazole,2022,6, +23,Gazole,2022,7, +23,Gazole,2022,8, +23,Gazole,2022,9, +23,Gazole,2022,10, +23,Gazole,2022,11, +23,Gazole,2022,12, +23,Gazole,2023,1, +23,Gazole,2023,2, +23,Gazole,2023,3, +23,Gazole,2023,4, +23,Gazole,2023,5, +23,Gazole,2023,6, +23,Gazole,2023,7, +23,Gazole,2023,8, +23,Gazole,2023,9, +23,Gazole,2023,10, +23,Gazole,2023,11, +23,Gazole,2023,12, +23,Gazole,2024,1, +23,Gazole,2024,2, +23,Gazole,2024,3, +23,Gazole,2024,4, +23,Gazole,2024,5, +23,Gazole,2024,6, +23,Gazole,2024,7, +23,Gazole,2024,8, +23,Gazole,2024,9, +23,Gazole,2024,10, +23,Gazole,2024,11, +23,Gazole,2024,12, +23,SP95,2007,1,118.7 +23,SP95,2007,2,119.66 +23,SP95,2007,3,124.88 +23,SP95,2007,4,129.34 +23,SP95,2007,5,133.38 +23,SP95,2007,7,133.03 +23,SP95,2007,8,129.57 +23,SP95,2007,9,130.33 +23,SP95,2007,10,130.21 +23,SP95,2007,11,135.23 +23,SP95,2007,12,134.26 +23,SP95,2007,6,133.59 +23,SP95,2008,1,136.52 +23,SP95,2008,2,136.42 +23,SP95,2008,3,138.38 +23,SP95,2008,4,139.97 +23,SP95,2008,5,145.04 +23,SP95,2008,6,150.43 +23,SP95,2008,7,149.32 +23,SP95,2008,8,143.67 +23,SP95,2008,9,142.84 +23,SP95,2008,10,132.63 +23,SP95,2008,11,118.86 +23,SP95,2008,12,110.09 +23,SP95,2009,1,110.05 +23,SP95,2009,2,115.01 +23,SP95,2009,3,115.04 +23,SP95,2009,4,117.62 +23,SP95,2009,5,121.24 +23,SP95,2009,6,127.26 +23,SP95,2009,7,124.3 +23,SP95,2009,8,127.25 +23,SP95,2009,9,124.98 +23,SP95,2009,10,124.37 +23,SP95,2009,11,127.22 +23,SP95,2009,12,126.45 +23,SP95,2010,1,130.86 +23,SP95,2010,2,132.1 +23,SP95,2010,3,136.74 +23,SP95,2010,4,138.92 +23,SP95,2010,5,138.84 +23,SP95,2010,6,137.68 +23,SP95,2010,7,135.18 +23,SP95,2010,8,134.58 +23,SP95,2010,11,137.58 +23,SP95,2010,12,142.61 +23,SP95,2010,9,134.5 +23,SP95,2010,10,135.86 +23,SP95,2011,1,147.25 +23,SP95,2011,2,147.9 +23,SP95,2011,3,152.33 +23,SP95,2011,4,154.77 +23,SP95,2011,5,155.25 +23,SP95,2011,6,152.27 +23,SP95,2011,7,151.9 +23,SP95,2011,8,151.1 +23,SP95,2011,9,153.22 +23,SP95,2011,10,151.03 +23,SP95,2011,11,150.4 +23,SP95,2011,12,150.57 +23,SP95,2012,1,156.4 +23,SP95,2012,2,160.02 +23,SP95,2012,3,165.0 +23,SP95,2012,4,167.42 +23,SP95,2012,5,161.2 +23,SP95,2012,6,156.08 +23,SP95,2012,7,157.26 +23,SP95,2012,8,162.6 +23,SP95,2012,9,159.97 +23,SP95,2012,10,157.73 +23,SP95,2012,11,153.13 +23,SP95,2012,12,153.07 +23,SP95,2013,1,155.68 +23,SP95,2013,2,161.27 +23,SP95,2013,3,161.42 +23,SP95,2013,4,158.81 +23,SP95,2013,5,155.43 +23,SP95,2013,6,155.43 +23,SP95,2013,7,156.43 +23,SP95,2013,8,157.13 +23,SP95,2013,9,156.6 +23,SP95,2013,10,152.06 +23,SP95,2013,11,151.22 +23,SP95,2013,12,152.26 +23,SP95,2014,1,150.52 +23,SP95,2014,2,151.42 +23,SP95,2014,3,151.78 +23,SP95,2014,4,152.85 +23,SP95,2014,5,153.46 +23,SP95,2014,6,154.99 +23,SP95,2014,7,155.01 +23,SP95,2014,8,151.89 +23,SP95,2014,9,151.27 +23,SP95,2014,10,148.32 +23,SP95,2014,11,144.19 +23,SP95,2014,12,135.48 +23,SP95,2015,1,127.45 +23,SP95,2015,2,133.96 +23,SP95,2015,3,139.33 +23,SP95,2015,4,141.98 +23,SP95,2015,5,144.95 +23,SP95,2015,6,145.88 +23,SP95,2015,7,145.13 +23,SP95,2015,8,139.56 +23,SP95,2015,9,132.5 +23,SP95,2015,10,130.84 +23,SP95,2015,11,131.16 +23,SP95,2015,12,128.45 +23,SP95,2016,1, +23,SP95,2016,2, +23,SP95,2016,3, +23,SP95,2016,4, +23,SP95,2016,5, +23,SP95,2016,6, +23,SP95,2016,7, +23,SP95,2016,8, +23,SP95,2016,9, +23,SP95,2016,10, +23,SP95,2016,11, +23,SP95,2016,12, +23,SP95,2017,1, +23,SP95,2017,2, +23,SP95,2017,3, +23,SP95,2017,4, +23,SP95,2017,5, +23,SP95,2017,6, +23,SP95,2017,7, +23,SP95,2017,8, +23,SP95,2017,9, +23,SP95,2017,10, +23,SP95,2017,11, +23,SP95,2017,12, +23,SP95,2018,1, +23,SP95,2018,2, +23,SP95,2018,3, +23,SP95,2018,4, +23,SP95,2018,5, +23,SP95,2018,6, +23,SP95,2018,7, +23,SP95,2018,8, +23,SP95,2018,9, +23,SP95,2018,10, +23,SP95,2018,11, +23,SP95,2018,12, +23,SP95,2019,1, +23,SP95,2019,2, +23,SP95,2019,3, +23,SP95,2019,4, +23,SP95,2019,5, +23,SP95,2019,6, +23,SP95,2019,7, +23,SP95,2019,8, +23,SP95,2019,9, +23,SP95,2019,10, +23,SP95,2019,11, +23,SP95,2019,12, +23,SP95,2020,1, +23,SP95,2020,2, +23,SP95,2020,3, +23,SP95,2020,4, +23,SP95,2020,5, +23,SP95,2020,6, +23,SP95,2020,7, +23,SP95,2020,8, +23,SP95,2020,9, +23,SP95,2020,10, +23,SP95,2020,11, +23,SP95,2020,12, +23,SP95,2021,1, +23,SP95,2021,2, +23,SP95,2021,3, +23,SP95,2021,4, +23,SP95,2021,5, +23,SP95,2021,6, +23,SP95,2021,7, +23,SP95,2021,8, +23,SP95,2021,9, +23,SP95,2021,10, +23,SP95,2021,11, +23,SP95,2021,12, +23,SP95,2022,1, +23,SP95,2022,2, +23,SP95,2022,3, +23,SP95,2022,4, +23,SP95,2022,5, +23,SP95,2022,6, +23,SP95,2022,7, +23,SP95,2022,8, +23,SP95,2022,9, +23,SP95,2022,10, +23,SP95,2022,11, +23,SP95,2022,12, +23,SP95,2023,1, +23,SP95,2023,2, +23,SP95,2023,3, +23,SP95,2023,4, +23,SP95,2023,5, +23,SP95,2023,6, +23,SP95,2023,7, +23,SP95,2023,8, +23,SP95,2023,9, +23,SP95,2023,10, +23,SP95,2023,11, +23,SP95,2023,12, +23,SP95,2024,1, +23,SP95,2024,2, +23,SP95,2024,3, +23,SP95,2024,4, +23,SP95,2024,5, +23,SP95,2024,6, +23,SP95,2024,7, +23,SP95,2024,8, +23,SP95,2024,9, +23,SP95,2024,10, +23,SP95,2024,11, +23,SP95,2024,12, +23,GPLc,2007,12,73.94 +23,GPLc,2007,11,73.63 +23,GPLc,2007,1, +23,GPLc,2007,2, +23,GPLc,2007,3, +23,GPLc,2007,4, +23,GPLc,2007,5, +23,GPLc,2007,6, +23,GPLc,2007,7, +23,GPLc,2007,8, +23,GPLc,2007,9, +23,GPLc,2007,10, +23,GPLc,2008,3,75.14 +23,GPLc,2008,5,74.72 +23,GPLc,2008,7,76.76 +23,GPLc,2008,8,78.16 +23,GPLc,2008,11,77.78 +23,GPLc,2008,12,74.95 +23,GPLc,2008,1,75.08 +23,GPLc,2008,4,74.39 +23,GPLc,2008,6,76.02 +23,GPLc,2008,9,78.51 +23,GPLc,2008,10,78.68 +23,GPLc,2008,2,75.4 +23,GPLc,2009,3,70.53 +23,GPLc,2009,5,67.93 +23,GPLc,2009,6,67.37 +23,GPLc,2009,8,69.86 +23,GPLc,2009,10,70.6 +23,GPLc,2009,11,71.19 +23,GPLc,2009,12,72.13 +23,GPLc,2009,1,71.2 +23,GPLc,2009,4,67.64 +23,GPLc,2009,7,69.31 +23,GPLc,2009,2,71.71 +23,GPLc,2009,9,70.88 +23,GPLc,2010,1,70.15 +23,GPLc,2010,5,70.56 +23,GPLc,2010,6,72.3 +23,GPLc,2010,7,74.24 +23,GPLc,2010,10,75.99 +23,GPLc,2010,11,77.02 +23,GPLc,2010,12,80.67 +23,GPLc,2010,3,69.63 +23,GPLc,2010,9,75.14 +23,GPLc,2010,2,70.74 +23,GPLc,2010,4,69.61 +23,GPLc,2010,8,74.74 +23,GPLc,2011,1,80.31 +23,GPLc,2011,3,80.63 +23,GPLc,2011,5,82.09 +23,GPLc,2011,8,84.8 +23,GPLc,2011,11,85.05 +23,GPLc,2011,2,80.51 +23,GPLc,2011,4,81.19 +23,GPLc,2011,6,82.88 +23,GPLc,2011,7,84.52 +23,GPLc,2011,9,84.73 +23,GPLc,2011,10,85.06 +23,GPLc,2011,12,85.06 +23,GPLc,2012,1,86.49 +23,GPLc,2012,3,88.74 +23,GPLc,2012,7,88.69 +23,GPLc,2012,8,88.41 +23,GPLc,2012,2,87.12 +23,GPLc,2012,11,89.13 +23,GPLc,2012,5,89.99 +23,GPLc,2012,6,89.9 +23,GPLc,2012,9,87.87 +23,GPLc,2012,10,88.42 +23,GPLc,2012,4,89.78 +23,GPLc,2012,12,89.22 +23,GPLc,2013,1,89.75 +23,GPLc,2013,4,90.5 +23,GPLc,2013,5,89.56 +23,GPLc,2013,8,88.53 +23,GPLc,2013,9,89.03 +23,GPLc,2013,3,90.71 +23,GPLc,2013,7,88.66 +23,GPLc,2013,10,88.33 +23,GPLc,2013,12,88.67 +23,GPLc,2013,6,89.32 +23,GPLc,2013,2,90.15 +23,GPLc,2013,11,88.34 +23,GPLc,2014,1,88.82 +23,GPLc,2014,2,88.09 +23,GPLc,2014,3,88.16 +23,GPLc,2014,4,88.2 +23,GPLc,2014,6,87.75 +23,GPLc,2014,7,87.57 +23,GPLc,2014,8,87.49 +23,GPLc,2014,9,87.48 +23,GPLc,2014,10,87.52 +23,GPLc,2014,12,86.36 +23,GPLc,2014,11,87.12 +23,GPLc,2014,5,87.95 +23,GPLc,2015,1,84.02 +23,GPLc,2015,2,82.98 +23,GPLc,2015,3,82.06 +23,GPLc,2015,4,81.96 +23,GPLc,2015,5,82.44 +23,GPLc,2015,6,82.08 +23,GPLc,2015,7,80.88 +23,GPLc,2015,8,80.5 +23,GPLc,2015,9,79.42 +23,GPLc,2015,10,78.44 +23,GPLc,2015,11,77.77 +23,GPLc,2015,12,77.58 +23,GPLc,2016,1, +23,GPLc,2016,2, +23,GPLc,2016,3, +23,GPLc,2016,4, +23,GPLc,2016,5, +23,GPLc,2016,6, +23,GPLc,2016,7, +23,GPLc,2016,8, +23,GPLc,2016,9, +23,GPLc,2016,10, +23,GPLc,2016,11, +23,GPLc,2016,12, +23,GPLc,2017,1, +23,GPLc,2017,2, +23,GPLc,2017,3, +23,GPLc,2017,4, +23,GPLc,2017,5, +23,GPLc,2017,6, +23,GPLc,2017,7, +23,GPLc,2017,8, +23,GPLc,2017,9, +23,GPLc,2017,10, +23,GPLc,2017,11, +23,GPLc,2017,12, +23,GPLc,2018,1, +23,GPLc,2018,2, +23,GPLc,2018,3, +23,GPLc,2018,4, +23,GPLc,2018,5, +23,GPLc,2018,6, +23,GPLc,2018,7, +23,GPLc,2018,8, +23,GPLc,2018,9, +23,GPLc,2018,10, +23,GPLc,2018,11, +23,GPLc,2018,12, +23,GPLc,2019,1, +23,GPLc,2019,2, +23,GPLc,2019,3, +23,GPLc,2019,4, +23,GPLc,2019,5, +23,GPLc,2019,6, +23,GPLc,2019,7, +23,GPLc,2019,8, +23,GPLc,2019,9, +23,GPLc,2019,10, +23,GPLc,2019,11, +23,GPLc,2019,12, +23,GPLc,2020,1, +23,GPLc,2020,2, +23,GPLc,2020,3, +23,GPLc,2020,4, +23,GPLc,2020,5, +23,GPLc,2020,6, +23,GPLc,2020,7, +23,GPLc,2020,8, +23,GPLc,2020,9, +23,GPLc,2020,10, +23,GPLc,2020,11, +23,GPLc,2020,12, +23,GPLc,2021,1, +23,GPLc,2021,2, +23,GPLc,2021,3, +23,GPLc,2021,4, +23,GPLc,2021,5, +23,GPLc,2021,6, +23,GPLc,2021,7, +23,GPLc,2021,8, +23,GPLc,2021,9, +23,GPLc,2021,10, +23,GPLc,2021,11, +23,GPLc,2021,12, +23,GPLc,2022,1, +23,GPLc,2022,2, +23,GPLc,2022,3, +23,GPLc,2022,4, +23,GPLc,2022,5, +23,GPLc,2022,6, +23,GPLc,2022,7, +23,GPLc,2022,8, +23,GPLc,2022,9, +23,GPLc,2022,10, +23,GPLc,2022,11, +23,GPLc,2022,12, +23,GPLc,2023,1, +23,GPLc,2023,2, +23,GPLc,2023,3, +23,GPLc,2023,4, +23,GPLc,2023,5, +23,GPLc,2023,6, +23,GPLc,2023,7, +23,GPLc,2023,8, +23,GPLc,2023,9, +23,GPLc,2023,10, +23,GPLc,2023,11, +23,GPLc,2023,12, +23,GPLc,2024,1, +23,GPLc,2024,2, +23,GPLc,2024,3, +23,GPLc,2024,4, +23,GPLc,2024,5, +23,GPLc,2024,6, +23,GPLc,2024,7, +23,GPLc,2024,8, +23,GPLc,2024,9, +23,GPLc,2024,10, +23,GPLc,2024,11, +23,GPLc,2024,12, +23,E85,2007,6,79.76 +23,E85,2007,7,80.28 +23,E85,2007,12,81.36 +23,E85,2007,1,79.13 +23,E85,2007,2,79.1 +23,E85,2007,3,79.1 +23,E85,2007,4,79.1 +23,E85,2007,5,79.1 +23,E85,2007,8,80.25 +23,E85,2007,9,80.25 +23,E85,2007,10,80.27 +23,E85,2007,11,80.67 +23,E85,2008,3,81.01 +23,E85,2008,1,80.28 +23,E85,2008,2,80.86 +23,E85,2008,4,81.09 +23,E85,2008,5,81.56 +23,E85,2008,6,81.61 +23,E85,2008,7,82.3 +23,E85,2008,8,82.98 +23,E85,2008,9,82.45 +23,E85,2008,10,83.29 +23,E85,2008,11,82.79 +23,E85,2008,12,84.18 +23,E85,2009,8,91.19 +23,E85,2009,1,81.04 +23,E85,2009,2,79.4 +23,E85,2009,3,83.36 +23,E85,2009,4,84.65 +23,E85,2009,5,84.42 +23,E85,2009,6,85.14 +23,E85,2009,7,85.38 +23,E85,2009,9,93.52 +23,E85,2009,10,94.45 +23,E85,2009,11,94.9 +23,E85,2009,12,98.9 +23,E85,2010,5,99.64 +23,E85,2010,10,108.93 +23,E85,2010,12,112.94 +23,E85,2010,9,105.93 +23,E85,2010,1,95.89 +23,E85,2010,2,96.53 +23,E85,2010,3,98.5 +23,E85,2010,4,97.83 +23,E85,2010,6,102.33 +23,E85,2010,7,103.11 +23,E85,2010,8,104.81 +23,E85,2010,11,111.21 +23,E85,2011,1,92.64 +23,E85,2011,2,92.34 +23,E85,2011,3,91.96 +23,E85,2011,4,92.79 +23,E85,2011,5,93.58 +23,E85,2011,6,93.8 +23,E85,2011,7,95.34 +23,E85,2011,8,97.82 +23,E85,2011,9,98.02 +23,E85,2011,10,98.11 +23,E85,2011,11,98.29 +23,E85,2011,12,98.14 +23,E85,2012,1,91.6 +23,E85,2012,2,92.05 +23,E85,2012,3,92.09 +23,E85,2012,4,92.31 +23,E85,2012,5,91.14 +23,E85,2012,6,90.58 +23,E85,2012,7,90.6 +23,E85,2012,8,91.31 +23,E85,2012,9,90.79 +23,E85,2012,10,90.13 +23,E85,2012,11,91.15 +23,E85,2012,12,91.69 +23,E85,2013,1,92.16 +23,E85,2013,2,93.06 +23,E85,2013,3,93.79 +23,E85,2013,4,93.85 +23,E85,2013,5,92.61 +23,E85,2013,6,92.28 +23,E85,2013,7,93.41 +23,E85,2013,8,94.3 +23,E85,2013,9,94.42 +23,E85,2013,10,93.7 +23,E85,2013,11,93.01 +23,E85,2013,12,92.21 +23,E85,2014,12,79.53 +23,E85,2014,9,78.41 +23,E85,2014,10,77.98 +23,E85,2014,11,76.9 +23,E85,2014,1,88.6 +23,E85,2014,2,87.34 +23,E85,2014,3,88.0 +23,E85,2014,4,88.04 +23,E85,2014,5,84.58 +23,E85,2014,6,82.49 +23,E85,2014,7,79.74 +23,E85,2014,8,79.3 +23,E85,2015,1,83.65 +23,E85,2015,10,94.66 +23,E85,2015,2,85.96 +23,E85,2015,3,91.48 +23,E85,2015,4,95.96 +23,E85,2015,7,93.48 +23,E85,2015,8,92.79 +23,E85,2015,11,94.49 +23,E85,2015,5,95.51 +23,E85,2015,6,95.12 +23,E85,2015,9,93.86 +23,E85,2015,12,92.92 +23,E85,2016,1, +23,E85,2016,2, +23,E85,2016,3, +23,E85,2016,4, +23,E85,2016,5, +23,E85,2016,6, +23,E85,2016,7, +23,E85,2016,8, +23,E85,2016,9, +23,E85,2016,10, +23,E85,2016,11, +23,E85,2016,12, +23,E85,2017,1, +23,E85,2017,2, +23,E85,2017,3, +23,E85,2017,4, +23,E85,2017,5, +23,E85,2017,6, +23,E85,2017,7, +23,E85,2017,8, +23,E85,2017,9, +23,E85,2017,10, +23,E85,2017,11, +23,E85,2017,12, +23,E85,2018,1, +23,E85,2018,2, +23,E85,2018,3, +23,E85,2018,4, +23,E85,2018,5, +23,E85,2018,6, +23,E85,2018,7, +23,E85,2018,8, +23,E85,2018,9, +23,E85,2018,10, +23,E85,2018,11, +23,E85,2018,12, +23,E85,2019,1, +23,E85,2019,2, +23,E85,2019,3, +23,E85,2019,4, +23,E85,2019,5, +23,E85,2019,6, +23,E85,2019,7, +23,E85,2019,8, +23,E85,2019,9, +23,E85,2019,10, +23,E85,2019,11, +23,E85,2019,12, +23,E85,2020,1, +23,E85,2020,2, +23,E85,2020,3, +23,E85,2020,4, +23,E85,2020,5, +23,E85,2020,6, +23,E85,2020,7, +23,E85,2020,8, +23,E85,2020,9, +23,E85,2020,10, +23,E85,2020,11, +23,E85,2020,12, +23,E85,2021,1, +23,E85,2021,2, +23,E85,2021,3, +23,E85,2021,4, +23,E85,2021,5, +23,E85,2021,6, +23,E85,2021,7, +23,E85,2021,8, +23,E85,2021,9, +23,E85,2021,10, +23,E85,2021,11, +23,E85,2021,12, +23,E85,2022,1, +23,E85,2022,2, +23,E85,2022,3, +23,E85,2022,4, +23,E85,2022,5, +23,E85,2022,6, +23,E85,2022,7, +23,E85,2022,8, +23,E85,2022,9, +23,E85,2022,10, +23,E85,2022,11, +23,E85,2022,12, +23,E85,2023,1, +23,E85,2023,2, +23,E85,2023,3, +23,E85,2023,4, +23,E85,2023,5, +23,E85,2023,6, +23,E85,2023,7, +23,E85,2023,8, +23,E85,2023,9, +23,E85,2023,10, +23,E85,2023,11, +23,E85,2023,12, +23,E85,2024,1, +23,E85,2024,2, +23,E85,2024,3, +23,E85,2024,4, +23,E85,2024,5, +23,E85,2024,6, +23,E85,2024,7, +23,E85,2024,8, +23,E85,2024,9, +23,E85,2024,10, +23,E85,2024,11, +23,E85,2024,12, +23,E10,2009,5,118.74 +23,E10,2009,6,124.89 +23,E10,2009,7,121.15 +23,E10,2009,8,124.16 +23,E10,2009,9,121.74 +23,E10,2009,10,121.12 +23,E10,2009,11,123.92 +23,E10,2009,12,123.51 +23,E10,2009,4,117.11 +23,E10,2009,1, +23,E10,2009,2, +23,E10,2009,3, +23,E10,2010,1,127.44 +23,E10,2010,2,128.78 +23,E10,2010,3,133.19 +23,E10,2010,4,136.37 +23,E10,2010,5,136.58 +23,E10,2010,6,134.92 +23,E10,2010,7,132.93 +23,E10,2010,8,131.84 +23,E10,2010,9,131.48 +23,E10,2010,10,132.61 +23,E10,2010,11,133.99 +23,E10,2010,12,138.67 +23,E10,2011,1,143.35 +23,E10,2011,2,143.93 +23,E10,2011,3,147.38 +23,E10,2011,4,150.24 +23,E10,2011,5,151.1 +23,E10,2011,6,148.27 +23,E10,2011,7,148.18 +23,E10,2011,8,147.42 +23,E10,2011,9,149.5 +23,E10,2011,10,147.64 +23,E10,2011,11,147.29 +23,E10,2011,12,147.03 +23,E10,2012,9,155.62 +23,E10,2012,10,153.0 +23,E10,2012,11,148.27 +23,E10,2012,12,148.11 +23,E10,2012,7,153.94 +23,E10,2012,8,159.03 +23,E10,2012,1,152.66 +23,E10,2012,2,156.14 +23,E10,2012,3,161.27 +23,E10,2012,4,163.8 +23,E10,2012,5,158.46 +23,E10,2012,6,152.88 +23,E10,2013,1,152.85 +23,E10,2013,2,158.88 +23,E10,2013,3,158.75 +23,E10,2013,4,156.28 +23,E10,2013,5,153.24 +23,E10,2013,6,153.1 +23,E10,2013,7,154.51 +23,E10,2013,8,154.98 +23,E10,2013,9,154.28 +23,E10,2013,10,149.87 +23,E10,2013,11,148.89 +23,E10,2013,12,149.72 +23,E10,2014,1,148.77 +23,E10,2014,2,149.75 +23,E10,2014,3,149.7 +23,E10,2014,4,150.94 +23,E10,2014,5,151.49 +23,E10,2014,6,153.28 +23,E10,2014,7,153.35 +23,E10,2014,8,150.2 +23,E10,2014,9,149.76 +23,E10,2014,10,146.5 +23,E10,2014,11,142.45 +23,E10,2014,12,133.2 +23,E10,2015,1,126.94 +23,E10,2015,2,132.81 +23,E10,2015,3,138.49 +23,E10,2015,4,141.05 +23,E10,2015,5,143.65 +23,E10,2015,6,144.5 +23,E10,2015,7,143.76 +23,E10,2015,8,137.98 +23,E10,2015,9,131.09 +23,E10,2015,10,129.23 +23,E10,2015,11,129.52 +23,E10,2015,12,127.07 +23,E10,2016,1, +23,E10,2016,2, +23,E10,2016,3, +23,E10,2016,4, +23,E10,2016,5, +23,E10,2016,6, +23,E10,2016,7, +23,E10,2016,8, +23,E10,2016,9, +23,E10,2016,10, +23,E10,2016,11, +23,E10,2016,12, +23,E10,2017,1, +23,E10,2017,2, +23,E10,2017,3, +23,E10,2017,4, +23,E10,2017,5, +23,E10,2017,6, +23,E10,2017,7, +23,E10,2017,8, +23,E10,2017,9, +23,E10,2017,10, +23,E10,2017,11, +23,E10,2017,12, +23,E10,2018,1, +23,E10,2018,2, +23,E10,2018,3, +23,E10,2018,4, +23,E10,2018,5, +23,E10,2018,6, +23,E10,2018,7, +23,E10,2018,8, +23,E10,2018,9, +23,E10,2018,10, +23,E10,2018,11, +23,E10,2018,12, +23,E10,2019,1, +23,E10,2019,2, +23,E10,2019,3, +23,E10,2019,4, +23,E10,2019,5, +23,E10,2019,6, +23,E10,2019,7, +23,E10,2019,8, +23,E10,2019,9, +23,E10,2019,10, +23,E10,2019,11, +23,E10,2019,12, +23,E10,2020,1, +23,E10,2020,2, +23,E10,2020,3, +23,E10,2020,4, +23,E10,2020,5, +23,E10,2020,6, +23,E10,2020,7, +23,E10,2020,8, +23,E10,2020,9, +23,E10,2020,10, +23,E10,2020,11, +23,E10,2020,12, +23,E10,2021,1, +23,E10,2021,2, +23,E10,2021,3, +23,E10,2021,4, +23,E10,2021,5, +23,E10,2021,6, +23,E10,2021,7, +23,E10,2021,8, +23,E10,2021,9, +23,E10,2021,10, +23,E10,2021,11, +23,E10,2021,12, +23,E10,2022,1, +23,E10,2022,2, +23,E10,2022,3, +23,E10,2022,4, +23,E10,2022,5, +23,E10,2022,6, +23,E10,2022,7, +23,E10,2022,8, +23,E10,2022,9, +23,E10,2022,10, +23,E10,2022,11, +23,E10,2022,12, +23,E10,2023,1, +23,E10,2023,2, +23,E10,2023,3, +23,E10,2023,4, +23,E10,2023,5, +23,E10,2023,6, +23,E10,2023,7, +23,E10,2023,8, +23,E10,2023,9, +23,E10,2023,10, +23,E10,2023,11, +23,E10,2023,12, +23,E10,2024,1, +23,E10,2024,2, +23,E10,2024,3, +23,E10,2024,4, +23,E10,2024,5, +23,E10,2024,6, +23,E10,2024,7, +23,E10,2024,8, +23,E10,2024,9, +23,E10,2024,10, +23,E10,2024,11, +23,E10,2024,12, +23,SP98,2013,6,158.18 +23,SP98,2013,7,160.06 +23,SP98,2013,8,160.93 +23,SP98,2013,9,160.73 +23,SP98,2013,10,155.82 +23,SP98,2013,11,154.88 +23,SP98,2013,12,156.05 +23,SP98,2013,1, +23,SP98,2013,2, +23,SP98,2013,3, +23,SP98,2013,4, +23,SP98,2013,5, +23,SP98,2014,1,155.23 +23,SP98,2014,2,155.95 +23,SP98,2014,3,156.16 +23,SP98,2014,4,157.08 +23,SP98,2014,5,157.97 +23,SP98,2014,6,159.47 +23,SP98,2014,7,159.82 +23,SP98,2014,8,156.96 +23,SP98,2014,9,156.24 +23,SP98,2014,10,153.34 +23,SP98,2014,11,149.09 +23,SP98,2014,12,140.11 +23,SP98,2015,1,132.5 +23,SP98,2015,2,138.31 +23,SP98,2015,3,144.13 +23,SP98,2015,4,147.0 +23,SP98,2015,5,149.99 +23,SP98,2015,6,151.0 +23,SP98,2015,7,150.43 +23,SP98,2015,8,144.79 +23,SP98,2015,9,137.65 +23,SP98,2015,10,135.86 +23,SP98,2015,11,136.06 +23,SP98,2015,12,133.46 +23,SP98,2016,1, +23,SP98,2016,2, +23,SP98,2016,3, +23,SP98,2016,4, +23,SP98,2016,5, +23,SP98,2016,6, +23,SP98,2016,7, +23,SP98,2016,8, +23,SP98,2016,9, +23,SP98,2016,10, +23,SP98,2016,11, +23,SP98,2016,12, +23,SP98,2017,1, +23,SP98,2017,2, +23,SP98,2017,3, +23,SP98,2017,4, +23,SP98,2017,5, +23,SP98,2017,6, +23,SP98,2017,7, +23,SP98,2017,8, +23,SP98,2017,9, +23,SP98,2017,10, +23,SP98,2017,11, +23,SP98,2017,12, +23,SP98,2018,1, +23,SP98,2018,2, +23,SP98,2018,3, +23,SP98,2018,4, +23,SP98,2018,5, +23,SP98,2018,6, +23,SP98,2018,7, +23,SP98,2018,8, +23,SP98,2018,9, +23,SP98,2018,10, +23,SP98,2018,11, +23,SP98,2018,12, +23,SP98,2019,1, +23,SP98,2019,2, +23,SP98,2019,3, +23,SP98,2019,4, +23,SP98,2019,5, +23,SP98,2019,6, +23,SP98,2019,7, +23,SP98,2019,8, +23,SP98,2019,9, +23,SP98,2019,10, +23,SP98,2019,11, +23,SP98,2019,12, +23,SP98,2020,1, +23,SP98,2020,2, +23,SP98,2020,3, +23,SP98,2020,4, +23,SP98,2020,5, +23,SP98,2020,6, +23,SP98,2020,7, +23,SP98,2020,8, +23,SP98,2020,9, +23,SP98,2020,10, +23,SP98,2020,11, +23,SP98,2020,12, +23,SP98,2021,1, +23,SP98,2021,2, +23,SP98,2021,3, +23,SP98,2021,4, +23,SP98,2021,5, +23,SP98,2021,6, +23,SP98,2021,7, +23,SP98,2021,8, +23,SP98,2021,9, +23,SP98,2021,10, +23,SP98,2021,11, +23,SP98,2021,12, +23,SP98,2022,1, +23,SP98,2022,2, +23,SP98,2022,3, +23,SP98,2022,4, +23,SP98,2022,5, +23,SP98,2022,6, +23,SP98,2022,7, +23,SP98,2022,8, +23,SP98,2022,9, +23,SP98,2022,10, +23,SP98,2022,11, +23,SP98,2022,12, +23,SP98,2023,1, +23,SP98,2023,2, +23,SP98,2023,3, +23,SP98,2023,4, +23,SP98,2023,5, +23,SP98,2023,6, +23,SP98,2023,7, +23,SP98,2023,8, +23,SP98,2023,9, +23,SP98,2023,10, +23,SP98,2023,11, +23,SP98,2023,12, +23,SP98,2024,1, +23,SP98,2024,2, +23,SP98,2024,3, +23,SP98,2024,4, +23,SP98,2024,5, +23,SP98,2024,6, +23,SP98,2024,7, +23,SP98,2024,8, +23,SP98,2024,9, +23,SP98,2024,10, +23,SP98,2024,11, +23,SP98,2024,12, +52,Gazole,2007,1,101.16 +52,Gazole,2007,2,102.21 +52,Gazole,2007,3,103.94 +52,Gazole,2007,4,106.19 +52,Gazole,2007,5,106.5 +52,Gazole,2007,6,108.09 +52,Gazole,2007,7,109.15 +52,Gazole,2007,8,109.05 +52,Gazole,2007,9,111.02 +52,Gazole,2007,10,112.78 +52,Gazole,2007,11,120.67 +52,Gazole,2007,12,120.27 +52,Gazole,2008,1,119.94 +52,Gazole,2008,2,120.67 +52,Gazole,2008,3,126.14 +52,Gazole,2008,4,129.25 +52,Gazole,2008,5,139.25 +52,Gazole,2008,6,144.14 +52,Gazole,2008,7,142.77 +52,Gazole,2008,8,133.79 +52,Gazole,2008,9,130.84 +52,Gazole,2008,10,122.23 +52,Gazole,2008,11,111.96 +52,Gazole,2008,12,100.28 +52,Gazole,2009,1,98.48 +52,Gazole,2009,2,97.3 +52,Gazole,2009,3,94.87 +52,Gazole,2009,4,97.42 +52,Gazole,2009,5,97.77 +52,Gazole,2009,6,102.41 +52,Gazole,2009,7,100.58 +52,Gazole,2009,8,103.76 +52,Gazole,2009,9,102.14 +52,Gazole,2009,10,102.95 +52,Gazole,2009,11,105.12 +52,Gazole,2009,12,104.46 +52,Gazole,2010,1,108.67 +52,Gazole,2010,2,108.88 +52,Gazole,2010,3,112.8 +52,Gazole,2010,4,116.69 +52,Gazole,2010,5,117.45 +52,Gazole,2010,6,117.46 +52,Gazole,2010,7,114.79 +52,Gazole,2010,8,114.45 +52,Gazole,2010,9,115.26 +52,Gazole,2010,10,117.54 +52,Gazole,2010,11,118.76 +52,Gazole,2010,12,122.38 +52,Gazole,2011,1,128.69 +52,Gazole,2011,2,131.9 +52,Gazole,2011,3,137.01 +52,Gazole,2011,4,137.62 +52,Gazole,2011,5,133.62 +52,Gazole,2011,6,132.95 +52,Gazole,2011,7,133.78 +52,Gazole,2011,8,132.62 +52,Gazole,2011,9,134.53 +52,Gazole,2011,10,135.95 +52,Gazole,2011,11,139.37 +52,Gazole,2011,12,138.49 +52,Gazole,2012,1,141.92 +52,Gazole,2012,2,143.03 +52,Gazole,2012,3,145.48 +52,Gazole,2012,4,144.56 +52,Gazole,2012,5,141.42 +52,Gazole,2012,6,135.37 +52,Gazole,2012,7,138.42 +52,Gazole,2012,8,144.28 +52,Gazole,2012,9,140.38 +52,Gazole,2012,10,140.99 +52,Gazole,2012,11,138.9 +52,Gazole,2012,12,137.09 +52,Gazole,2013,1,138.58 +52,Gazole,2013,2,141.98 +52,Gazole,2013,3,140.38 +52,Gazole,2013,4,136.52 +52,Gazole,2013,5,134.55 +52,Gazole,2013,6,133.9 +52,Gazole,2013,7,135.8 +52,Gazole,2013,8,136.54 +52,Gazole,2013,9,137.95 +52,Gazole,2013,10,134.2 +52,Gazole,2013,11,133.08 +52,Gazole,2013,12,134.38 +52,Gazole,2014,1,133.28 +52,Gazole,2014,2,133.77 +52,Gazole,2014,3,132.34 +52,Gazole,2014,4,131.91 +52,Gazole,2014,5,131.81 +52,Gazole,2014,6,132.07 +52,Gazole,2014,7,131.37 +52,Gazole,2014,8,130.98 +52,Gazole,2014,9,130.33 +52,Gazole,2014,10,127.19 +52,Gazole,2014,11,124.74 +52,Gazole,2014,12,114.92 +52,Gazole,2015,1,112.55 +52,Gazole,2015,2,118.52 +52,Gazole,2015,3,121.81 +52,Gazole,2015,4,121.42 +52,Gazole,2015,5,124.38 +52,Gazole,2015,6,122.56 +52,Gazole,2015,7,118.91 +52,Gazole,2015,8,113.16 +52,Gazole,2015,9,111.62 +52,Gazole,2015,10,111.41 +52,Gazole,2015,11,111.07 +52,Gazole,2015,12,103.97 +52,Gazole,2016,1,102.75 +52,Gazole,2016,2,102.5 +52,Gazole,2016,3,106.82 +52,Gazole,2016,4,107.43 +52,Gazole,2016,5,113.24 +52,Gazole,2016,6,116.87 +52,Gazole,2016,7,112.98 +52,Gazole,2016,8,110.83 +52,Gazole,2016,9,111.85 +52,Gazole,2016,10,116.03 +52,Gazole,2016,11,115.26 +52,Gazole,2016,12,120.21 +52,Gazole,2017,1,126.65 +52,Gazole,2017,2,126.76 +52,Gazole,2017,3,124.57 +52,Gazole,2017,4,124.66 +52,Gazole,2017,5,121.38 +52,Gazole,2017,6,118.5 +52,Gazole,2017,7,117.77 +52,Gazole,2017,8,119.78 +52,Gazole,2017,9,122.54 +52,Gazole,2017,10,124.64 +52,Gazole,2017,11,127.28 +52,Gazole,2017,12,127.67 +52,Gazole,2018,1,139.43 +52,Gazole,2018,2,137.21 +52,Gazole,2018,3,136.65 +52,Gazole,2018,4,140.02 +52,Gazole,2018,5,145.51 +52,Gazole,2018,6,146.55 +52,Gazole,2018,7,144.85 +52,Gazole,2018,8,145.17 +52,Gazole,2018,9,147.85 +52,Gazole,2018,10,152.31 +52,Gazole,2018,11,147.88 +52,Gazole,2018,12,141.77 +52,Gazole,2019,1,139.92 +52,Gazole,2019,2,143.6 +52,Gazole,2019,3,146.15 +52,Gazole,2019,5,148.5 +52,Gazole,2019,6,143.1 +52,Gazole,2019,7,142.73 +52,Gazole,2019,8,141.66 +52,Gazole,2019,9,143.94 +52,Gazole,2019,10,144.65 +52,Gazole,2019,12,146.77 +52,Gazole,2019,4,147.18 +52,Gazole,2019,11,144.52 +52,Gazole,2020,1,147.22 +52,Gazole,2020,2,140.29 +52,Gazole,2020,3,129.95 +52,Gazole,2020,4,122.31 +52,Gazole,2020,5,117.51 +52,Gazole,2020,6,121.28 +52,Gazole,2020,7,124.44 +52,Gazole,2020,8,123.88 +52,Gazole,2020,9,120.8 +52,Gazole,2020,10,120.69 +52,Gazole,2020,11,121.54 +52,Gazole,2020,12,126.12 +52,Gazole,2021,1,129.98 +52,Gazole,2021,2,134.7 +52,Gazole,2021,3,138.44 +52,Gazole,2021,4,137.46 +52,Gazole,2021,5,139.09 +52,Gazole,2021,6,141.78 +52,Gazole,2021,7,144.41 +52,Gazole,2021,8,143.54 +52,Gazole,2021,9,145.65 +52,Gazole,2021,10,154.73 +52,Gazole,2021,11,156.03 +52,Gazole,2021,12,152.97 +52,Gazole,2022,1,162.0 +52,Gazole,2022,2,170.0 +52,Gazole,2022,3,203.0 +52,Gazole,2022,4,185.0 +52,Gazole,2022,5,188.0 +52,Gazole,2022,6,208.0 +52,Gazole,2022,7,199.0 +52,Gazole,2022,8,187.0 +52,Gazole,2022,9,172.0 +52,Gazole,2022,10,186.0 +52,Gazole,2022,11,186.0 +52,Gazole,2022,12,177.0 +52,Gazole,2023,1,191.0 +52,Gazole,2023,2,184.0 +52,Gazole,2023,3,183.0 +52,Gazole,2023,4,178.0 +52,Gazole,2023,5,167.0 +52,Gazole,2023,6,168.0 +52,Gazole,2023,7,170.0 +52,Gazole,2023,8,184.0 +52,Gazole,2023,9,191.0 +52,Gazole,2023,10,189.0 +52,Gazole,2023,11,182.0 +52,Gazole,2023,12,176.0 +52,Gazole,2024,1,173.0 +52,Gazole,2024,2,181.0 +52,Gazole,2024,3,179.0 +52,Gazole,2024,4,178.0 +52,Gazole,2024,5,172.0 +52,Gazole,2024,6,170.0 +52,Gazole,2024,7,173.0 +52,Gazole,2024,8,173.0 +52,Gazole,2024,9,173.0 +52,Gazole,2024,10,173.0 +52,Gazole,2024,11,173.0 +52,Gazole,2024,12,173.0 +52,SP95,2007,1,117.87 +52,SP95,2007,2,119.33 +52,SP95,2007,3,124.56 +52,SP95,2007,4,128.68 +52,SP95,2007,5,132.72 +52,SP95,2007,6,132.79 +52,SP95,2007,7,132.21 +52,SP95,2007,8,128.57 +52,SP95,2007,9,129.27 +52,SP95,2007,10,129.11 +52,SP95,2007,11,134.65 +52,SP95,2007,12,133.57 +52,SP95,2008,1,136.37 +52,SP95,2008,2,136.22 +52,SP95,2008,3,138.04 +52,SP95,2008,4,140.01 +52,SP95,2008,5,145.24 +52,SP95,2008,6,150.4 +52,SP95,2008,7,148.88 +52,SP95,2008,8,143.54 +52,SP95,2008,9,142.74 +52,SP95,2008,10,132.16 +52,SP95,2008,11,118.76 +52,SP95,2008,12,110.06 +52,SP95,2009,1,111.0 +52,SP95,2009,2,115.86 +52,SP95,2009,3,116.0 +52,SP95,2009,4,118.78 +52,SP95,2009,5,122.89 +52,SP95,2009,6,128.77 +52,SP95,2009,7,124.64 +52,SP95,2009,8,127.94 +52,SP95,2009,9,125.38 +52,SP95,2009,10,124.62 +52,SP95,2009,11,127.77 +52,SP95,2009,12,126.93 +52,SP95,2010,1,130.67 +52,SP95,2010,2,131.77 +52,SP95,2010,3,135.98 +52,SP95,2010,4,138.15 +52,SP95,2010,5,138.2 +52,SP95,2010,6,137.14 +52,SP95,2010,7,134.74 +52,SP95,2010,8,133.98 +52,SP95,2010,9,134.04 +52,SP95,2010,10,135.32 +52,SP95,2010,11,136.71 +52,SP95,2010,12,140.77 +52,SP95,2011,1,146.21 +52,SP95,2011,2,146.99 +52,SP95,2011,3,151.28 +52,SP95,2011,4,154.08 +52,SP95,2011,5,154.07 +52,SP95,2011,6,150.68 +52,SP95,2011,7,150.82 +52,SP95,2011,8,150.2 +52,SP95,2011,9,152.58 +52,SP95,2011,10,150.45 +52,SP95,2011,11,149.59 +52,SP95,2011,12,149.85 +52,SP95,2012,1,155.66 +52,SP95,2012,2,159.32 +52,SP95,2012,3,164.25 +52,SP95,2012,4,166.43 +52,SP95,2012,5,160.4 +52,SP95,2012,6,155.23 +52,SP95,2012,7,156.57 +52,SP95,2012,8,162.12 +52,SP95,2012,9,158.95 +52,SP95,2012,10,156.93 +52,SP95,2012,11,151.72 +52,SP95,2012,12,151.67 +52,SP95,2013,1,155.41 +52,SP95,2013,2,160.92 +52,SP95,2013,3,160.58 +52,SP95,2013,4,157.71 +52,SP95,2013,5,154.7 +52,SP95,2013,6,154.69 +52,SP95,2013,7,155.79 +52,SP95,2013,8,156.48 +52,SP95,2013,9,155.53 +52,SP95,2013,10,150.61 +52,SP95,2013,11,149.71 +52,SP95,2013,12,151.28 +52,SP95,2014,1,150.65 +52,SP95,2014,2,151.46 +52,SP95,2014,3,151.63 +52,SP95,2014,4,152.69 +52,SP95,2014,5,153.6 +52,SP95,2014,6,155.03 +52,SP95,2014,7,154.85 +52,SP95,2014,8,151.78 +52,SP95,2014,9,151.27 +52,SP95,2014,10,148.63 +52,SP95,2014,11,144.59 +52,SP95,2014,12,135.92 +52,SP95,2015,1,128.31 +52,SP95,2015,2,134.2 +52,SP95,2015,3,139.97 +52,SP95,2015,4,142.54 +52,SP95,2015,5,145.53 +52,SP95,2015,6,146.26 +52,SP95,2015,7,145.67 +52,SP95,2015,8,140.27 +52,SP95,2015,9,132.85 +52,SP95,2015,10,131.16 +52,SP95,2015,11,131.39 +52,SP95,2015,12,128.86 +52,SP95,2016,1,128.44 +52,SP95,2016,2,126.1 +52,SP95,2016,3,127.54 +52,SP95,2016,4,132.35 +52,SP95,2016,5,135.12 +52,SP95,2016,6,137.52 +52,SP95,2016,7,132.64 +52,SP95,2016,8,130.23 +52,SP95,2016,9,131.35 +52,SP95,2016,10,134.22 +52,SP95,2016,11,133.36 +52,SP95,2016,12,137.22 +52,SP95,2017,1,142.15 +52,SP95,2017,2,142.8 +52,SP95,2017,3,140.35 +52,SP95,2017,4,141.65 +52,SP95,2017,5,138.9 +52,SP95,2017,6,136.61 +52,SP95,2017,7,134.25 +52,SP95,2017,8,135.64 +52,SP95,2017,9,138.63 +52,SP95,2017,10,137.67 +52,SP95,2017,11,141.64 +52,SP95,2017,12,141.3 +52,SP95,2018,1,148.16 +52,SP95,2018,2,147.74 +52,SP95,2018,3,146.65 +52,SP95,2018,4,150.21 +52,SP95,2018,5,154.92 +52,SP95,2018,6,155.87 +52,SP95,2018,7,154.93 +52,SP95,2018,8,156.31 +52,SP95,2018,9,157.04 +52,SP95,2018,10,156.82 +52,SP95,2018,11,150.29 +52,SP95,2018,12,145.36 +52,SP95,2019,1,143.23 +52,SP95,2019,2,146.09 +52,SP95,2019,3,149.91 +52,SP95,2019,4,157.73 +52,SP95,2019,5,160.62 +52,SP95,2019,6,155.63 +52,SP95,2019,7,154.0 +52,SP95,2019,8,152.34 +52,SP95,2019,9,151.77 +52,SP95,2019,10,151.97 +52,SP95,2019,11,152.92 +52,SP95,2019,12,154.18 +52,SP95,2020,1,155.15 +52,SP95,2020,2,150.94 +52,SP95,2020,3,141.25 +52,SP95,2020,4,130.13 +52,SP95,2020,5,127.66 +52,SP95,2020,6,133.19 +52,SP95,2020,7,136.42 +52,SP95,2020,8,135.3 +52,SP95,2020,9,134.97 +52,SP95,2020,10,134.9 +52,SP95,2020,11,134.46 +52,SP95,2020,12,137.24 +52,SP95,2021,1,142.16 +52,SP95,2021,2,146.36 +52,SP95,2021,3,151.96 +52,SP95,2021,4,152.98 +52,SP95,2021,5,153.53 +52,SP95,2021,6,154.88 +52,SP95,2021,7,158.72 +52,SP95,2021,8,159.51 +52,SP95,2021,9,159.63 +52,SP95,2021,10,165.61 +52,SP95,2021,11,168.21 +52,SP95,2021,12,164.34 +52,SP95,2022,1,172.0 +52,SP95,2022,2,180.0 +52,SP95,2022,3,200.0 +52,SP95,2022,4,184.0 +52,SP95,2022,5,193.0 +52,SP95,2022,6,214.0 +52,SP95,2022,7,203.0 +52,SP95,2022,8,187.0 +52,SP95,2022,9,164.0 +52,SP95,2022,10,171.0 +52,SP95,2022,11,172.0 +52,SP95,2022,12,170.0 +52,SP95,2023,1,189.0 +52,SP95,2023,2,193.0 +52,SP95,2023,3,193.0 +52,SP95,2023,4,195.0 +52,SP95,2023,5,189.0 +52,SP95,2023,6,188.0 +52,SP95,2023,7,186.0 +52,SP95,2023,8,193.0 +52,SP95,2023,9,196.0 +52,SP95,2023,10,190.0 +52,SP95,2023,11,187.0 +52,SP95,2023,12,183.0 +52,SP95,2024,1,180.0 +52,SP95,2024,2,185.0 +52,SP95,2024,3,188.0 +52,SP95,2024,4,193.0 +52,SP95,2024,5,190.0 +52,SP95,2024,6,186.0 +52,SP95,2024,7,186.0 +52,SP95,2024,8,186.0 +52,SP95,2024,9,186.0 +52,SP95,2024,10,186.0 +52,SP95,2024,11,186.0 +52,SP95,2024,12,186.0 +52,GPLc,2007,11,70.51 +52,GPLc,2007,12,71.98 +52,GPLc,2007,1, +52,GPLc,2007,2, +52,GPLc,2007,3, +52,GPLc,2007,4, +52,GPLc,2007,5, +52,GPLc,2007,6, +52,GPLc,2007,7, +52,GPLc,2007,8, +52,GPLc,2007,9, +52,GPLc,2007,10, +52,GPLc,2008,1,73.4 +52,GPLc,2008,2,73.68 +52,GPLc,2008,3,73.68 +52,GPLc,2008,4,73.48 +52,GPLc,2008,5,73.99 +52,GPLc,2008,6,75.12 +52,GPLc,2008,7,76.13 +52,GPLc,2008,8,77.46 +52,GPLc,2008,9,77.28 +52,GPLc,2008,10,77.3 +52,GPLc,2008,11,76.2 +52,GPLc,2008,12,73.01 +52,GPLc,2009,1,70.49 +52,GPLc,2009,2,69.27 +52,GPLc,2009,3,67.42 +52,GPLc,2009,4,64.87 +52,GPLc,2009,5,63.69 +52,GPLc,2009,6,63.37 +52,GPLc,2009,7,62.93 +52,GPLc,2009,8,62.75 +52,GPLc,2009,9,63.96 +52,GPLc,2009,10,63.9 +52,GPLc,2009,11,64.59 +52,GPLc,2009,12,65.52 +52,GPLc,2010,1,69.24 +52,GPLc,2010,2,68.88 +52,GPLc,2010,3,68.02 +52,GPLc,2010,4,67.85 +52,GPLc,2010,5,68.43 +52,GPLc,2010,6,69.08 +52,GPLc,2010,7,70.89 +52,GPLc,2010,8,72.68 +52,GPLc,2010,9,73.21 +52,GPLc,2010,10,73.86 +52,GPLc,2010,11,75.09 +52,GPLc,2010,12,77.26 +52,GPLc,2011,1,79.1 +52,GPLc,2011,2,78.95 +52,GPLc,2011,3,79.81 +52,GPLc,2011,4,80.48 +52,GPLc,2011,5,81.76 +52,GPLc,2011,6,81.88 +52,GPLc,2011,7,82.13 +52,GPLc,2011,8,82.35 +52,GPLc,2011,9,82.45 +52,GPLc,2011,10,82.39 +52,GPLc,2011,11,82.37 +52,GPLc,2011,12,82.19 +52,GPLc,2012,1,82.94 +52,GPLc,2012,2,83.58 +52,GPLc,2012,3,85.3 +52,GPLc,2012,4,86.2 +52,GPLc,2012,5,86.26 +52,GPLc,2012,6,86.14 +52,GPLc,2012,7,85.21 +52,GPLc,2012,8,84.9 +52,GPLc,2012,9,84.22 +52,GPLc,2012,10,85.13 +52,GPLc,2012,11,85.63 +52,GPLc,2012,12,85.87 +52,GPLc,2013,1,87.0 +52,GPLc,2013,2,87.05 +52,GPLc,2013,3,87.22 +52,GPLc,2013,4,86.98 +52,GPLc,2013,5,85.85 +52,GPLc,2013,6,85.0 +52,GPLc,2013,7,84.63 +52,GPLc,2013,8,84.69 +52,GPLc,2013,9,84.88 +52,GPLc,2013,10,84.42 +52,GPLc,2013,11,84.19 +52,GPLc,2013,12,84.34 +52,GPLc,2014,1,85.44 +52,GPLc,2014,2,85.23 +52,GPLc,2014,3,84.61 +52,GPLc,2014,4,84.32 +52,GPLc,2014,5,84.19 +52,GPLc,2014,6,84.1 +52,GPLc,2014,7,83.82 +52,GPLc,2014,8,83.65 +52,GPLc,2014,9,83.54 +52,GPLc,2014,10,83.54 +52,GPLc,2014,11,83.39 +52,GPLc,2014,12,82.84 +52,GPLc,2015,1,81.98 +52,GPLc,2015,2,80.26 +52,GPLc,2015,3,79.58 +52,GPLc,2015,4,79.35 +52,GPLc,2015,5,79.57 +52,GPLc,2015,6,78.65 +52,GPLc,2015,7,77.46 +52,GPLc,2015,8,77.08 +52,GPLc,2015,9,76.38 +52,GPLc,2015,10,75.33 +52,GPLc,2015,11,74.25 +52,GPLc,2015,12,73.33 +52,GPLc,2016,1,71.22 +52,GPLc,2016,2,70.73 +52,GPLc,2016,3,69.74 +52,GPLc,2016,4,69.06 +52,GPLc,2016,5,68.8 +52,GPLc,2016,6,69.56 +52,GPLc,2016,7,69.37 +52,GPLc,2016,8,69.08 +52,GPLc,2016,9,68.97 +52,GPLc,2016,10,68.9 +52,GPLc,2016,11,69.13 +52,GPLc,2016,12,69.45 +52,GPLc,2017,1,70.35 +52,GPLc,2017,2,71.17 +52,GPLc,2017,3,71.88 +52,GPLc,2017,4,72.55 +52,GPLc,2017,5,72.6 +52,GPLc,2017,6,72.87 +52,GPLc,2017,7,72.72 +52,GPLc,2017,8,72.35 +52,GPLc,2017,9,72.59 +52,GPLc,2017,10,72.69 +52,GPLc,2017,11,73.77 +52,GPLc,2017,12,74.7 +52,GPLc,2018,1,80.19 +52,GPLc,2018,2,80.28 +52,GPLc,2018,3,80.18 +52,GPLc,2018,4,79.92 +52,GPLc,2018,5,80.46 +52,GPLc,2018,6,81.19 +52,GPLc,2018,7,81.56 +52,GPLc,2018,8,81.91 +52,GPLc,2018,9,82.74 +52,GPLc,2018,10,83.93 +52,GPLc,2018,11,84.35 +52,GPLc,2018,12,85.01 +52,GPLc,2019,5,84.92 +52,GPLc,2019,1,85.72 +52,GPLc,2019,2,83.68 +52,GPLc,2019,3,83.49 +52,GPLc,2019,4,83.93 +52,GPLc,2019,7,85.11 +52,GPLc,2019,8,85.09 +52,GPLc,2019,9,85.37 +52,GPLc,2019,10,85.24 +52,GPLc,2019,11,85.53 +52,GPLc,2019,6,85.32 +52,GPLc,2019,12,85.88 +52,GPLc,2020,1,85.49 +52,GPLc,2020,2,85.68 +52,GPLc,2020,3,84.89 +52,GPLc,2020,4,84.39 +52,GPLc,2020,5,84.16 +52,GPLc,2020,6,83.91 +52,GPLc,2020,7,84.19 +52,GPLc,2020,8,84.26 +52,GPLc,2020,9,84.16 +52,GPLc,2020,10,84.07 +52,GPLc,2020,11,84.15 +52,GPLc,2020,12,83.84 +52,GPLc,2021,1,84.41 +52,GPLc,2021,2,83.7 +52,GPLc,2021,3,83.6 +52,GPLc,2021,4,83.68 +52,GPLc,2021,5,83.96 +52,GPLc,2021,6,84.57 +52,GPLc,2021,7,84.89 +52,GPLc,2021,8,85.16 +52,GPLc,2021,9,85.25 +52,GPLc,2021,10,85.71 +52,GPLc,2021,11,86.5 +52,GPLc,2021,12,87.41 +52,GPLc,2022,1,89.0 +52,GPLc,2022,2,89.0 +52,GPLc,2022,3,92.0 +52,GPLc,2022,4,83.0 +52,GPLc,2022,5,83.0 +52,GPLc,2022,6,82.0 +52,GPLc,2022,7,83.0 +52,GPLc,2022,8,83.0 +52,GPLc,2022,9,76.0 +52,GPLc,2022,10,74.0 +52,GPLc,2022,11,79.0 +52,GPLc,2022,12,87.0 +52,GPLc,2023,1,96.0 +52,GPLc,2023,2,97.0 +52,GPLc,2023,3,98.0 +52,GPLc,2023,4,98.0 +52,GPLc,2023,5,99.0 +52,GPLc,2023,6,99.0 +52,GPLc,2023,7,99.0 +52,GPLc,2023,8,99.0 +52,GPLc,2023,9,99.0 +52,GPLc,2023,10,98.0 +52,GPLc,2023,11,98.0 +52,GPLc,2023,12,98.0 +52,GPLc,2024,1,98.0 +52,GPLc,2024,2,98.0 +52,GPLc,2024,3,98.0 +52,GPLc,2024,4,98.0 +52,GPLc,2024,5,98.0 +52,GPLc,2024,6,98.0 +52,GPLc,2024,7,98.0 +52,GPLc,2024,8,98.0 +52,GPLc,2024,9,98.0 +52,GPLc,2024,10,98.0 +52,GPLc,2024,11,98.0 +52,GPLc,2024,12,98.0 +52,E85,2007,6,83.14 +52,E85,2007,7,83.66 +52,E85,2007,9,83.14 +52,E85,2007,11,82.78 +52,E85,2007,4,83.0 +52,E85,2007,10,82.79 +52,E85,2007,5,82.14 +52,E85,2007,8,83.76 +52,E85,2007,12,82.97 +52,E85,2007,1, +52,E85,2007,2, +52,E85,2007,3, +52,E85,2008,12,85.4 +52,E85,2008,1,82.12 +52,E85,2008,2,83.22 +52,E85,2008,3,83.21 +52,E85,2008,4,83.18 +52,E85,2008,5,83.54 +52,E85,2008,6,83.55 +52,E85,2008,7,83.39 +52,E85,2008,8,84.77 +52,E85,2008,9,85.54 +52,E85,2008,10,85.3 +52,E85,2008,11,84.33 +52,E85,2009,11,102.11 +52,E85,2009,12,104.89 +52,E85,2009,10,100.18 +52,E85,2009,1,84.49 +52,E85,2009,2,84.5 +52,E85,2009,3,85.46 +52,E85,2009,4,84.71 +52,E85,2009,5,84.08 +52,E85,2009,6,84.42 +52,E85,2009,7,89.17 +52,E85,2009,8,94.22 +52,E85,2009,9,97.88 +52,E85,2010,5,118.43 +52,E85,2010,7,121.1 +52,E85,2010,2,106.63 +52,E85,2010,3,115.07 +52,E85,2010,1,99.01 +52,E85,2010,6,120.29 +52,E85,2010,4,117.77 +52,E85,2010,10,120.57 +52,E85,2010,9,119.34 +52,E85,2010,11,120.12 +52,E85,2010,12,119.94 +52,E85,2010,8,120.06 +52,E85,2011,1,85.53 +52,E85,2011,3,92.86 +52,E85,2011,5,96.15 +52,E85,2011,6,96.73 +52,E85,2011,10,99.29 +52,E85,2011,4,93.23 +52,E85,2011,7,96.29 +52,E85,2011,8,97.64 +52,E85,2011,2,88.52 +52,E85,2011,11,98.49 +52,E85,2011,12,98.4 +52,E85,2011,9,99.16 +52,E85,2012,9,92.24 +52,E85,2012,10,92.42 +52,E85,2012,11,92.6 +52,E85,2012,12,92.24 +52,E85,2012,2,91.14 +52,E85,2012,4,90.53 +52,E85,2012,3,90.32 +52,E85,2012,7,92.01 +52,E85,2012,8,92.58 +52,E85,2012,1,91.27 +52,E85,2012,5,91.37 +52,E85,2012,6,92.4 +52,E85,2013,9,94.32 +52,E85,2013,10,95.02 +52,E85,2013,11,97.78 +52,E85,2013,12,97.08 +52,E85,2013,8,94.7 +52,E85,2013,1,93.28 +52,E85,2013,2,92.89 +52,E85,2013,3,92.81 +52,E85,2013,5,95.58 +52,E85,2013,6,95.42 +52,E85,2013,7,94.76 +52,E85,2013,4,93.88 +52,E85,2014,7,89.34 +52,E85,2014,1,92.87 +52,E85,2014,2,91.02 +52,E85,2014,3,89.19 +52,E85,2014,4,89.4 +52,E85,2014,5,90.64 +52,E85,2014,6,90.62 +52,E85,2014,9,86.72 +52,E85,2014,10,88.02 +52,E85,2014,11,89.85 +52,E85,2014,12,91.1 +52,E85,2014,8,87.58 +52,E85,2015,1,86.65 +52,E85,2015,2,84.95 +52,E85,2015,3,89.55 +52,E85,2015,4,93.26 +52,E85,2015,5,92.77 +52,E85,2015,6,91.09 +52,E85,2015,7,94.11 +52,E85,2015,8,95.8 +52,E85,2015,9,97.21 +52,E85,2015,10,94.96 +52,E85,2015,11,94.3 +52,E85,2015,12,94.33 +52,E85,2016,1,74.76 +52,E85,2016,2,73.39 +52,E85,2016,3,73.61 +52,E85,2016,4,74.27 +52,E85,2016,5,74.71 +52,E85,2016,6,77.57 +52,E85,2016,7,78.3 +52,E85,2016,8,80.0 +52,E85,2016,9,80.37 +52,E85,2016,10,78.7 +52,E85,2016,11,78.46 +52,E85,2016,12,77.91 +52,E85,2017,1,68.8 +52,E85,2017,2,66.82 +52,E85,2017,3,66.92 +52,E85,2017,4,67.05 +52,E85,2017,5,68.38 +52,E85,2017,6,70.41 +52,E85,2017,7,71.39 +52,E85,2017,8,73.22 +52,E85,2017,9,78.05 +52,E85,2017,10,77.68 +52,E85,2017,11,76.4 +52,E85,2017,12,76.21 +52,E85,2018,1,68.41 +52,E85,2018,2,67.56 +52,E85,2018,3,67.44 +52,E85,2018,4,67.45 +52,E85,2018,5,70.38 +52,E85,2018,6,73.05 +52,E85,2018,7,72.99 +52,E85,2018,8,72.59 +52,E85,2018,9,71.39 +52,E85,2018,10,71.14 +52,E85,2018,11,69.04 +52,E85,2018,12,70.03 +52,E85,2019,1,66.91 +52,E85,2019,2,65.53 +52,E85,2019,3,65.22 +52,E85,2019,4,67.13 +52,E85,2019,5,68.37 +52,E85,2019,6,68.01 +52,E85,2019,7,68.16 +52,E85,2019,8,67.25 +52,E85,2019,9,67.92 +52,E85,2019,10,67.46 +52,E85,2019,11,67.59 +52,E85,2019,12,69.46 +52,E85,2020,1,67.53 +52,E85,2020,2,66.85 +52,E85,2020,3,66.12 +52,E85,2020,4,65.43 +52,E85,2020,5,64.96 +52,E85,2020,6,64.41 +52,E85,2020,7,64.1 +52,E85,2020,9,63.78 +52,E85,2020,10,64.02 +52,E85,2020,11,63.57 +52,E85,2020,12,63.31 +52,E85,2020,8,63.82 +52,E85,2021,1,64.52 +52,E85,2021,2,64.94 +52,E85,2021,3,66.14 +52,E85,2021,4,66.1 +52,E85,2021,5,66.46 +52,E85,2021,6,66.75 +52,E85,2021,7,67.26 +52,E85,2021,8,67.64 +52,E85,2021,9,68.06 +52,E85,2021,10,70.62 +52,E85,2021,11,72.39 +52,E85,2021,12,72.0 +52,E85,2022,1,74.0 +52,E85,2022,2,77.0 +52,E85,2022,3,91.0 +52,E85,2022,4,78.0 +52,E85,2022,5,80.0 +52,E85,2022,6,88.0 +52,E85,2022,7,84.0 +52,E85,2022,8,81.0 +52,E85,2022,9,69.0 +52,E85,2022,10,78.0 +52,E85,2022,11,90.0 +52,E85,2022,12,88.0 +52,E85,2023,2,111.0 +52,E85,2023,1,108.0 +52,E85,2023,3,112.0 +52,E85,2023,4,111.0 +52,E85,2023,5,113.0 +52,E85,2023,6,109.0 +52,E85,2023,7,103.0 +52,E85,2023,8,104.0 +52,E85,2023,9,104.0 +52,E85,2023,10,102.0 +52,E85,2023,11,101.0 +52,E85,2023,12,99.0 +52,E85,2024,1,91.0 +52,E85,2024,2,89.0 +52,E85,2024,3,87.0 +52,E85,2024,4,86.0 +52,E85,2024,5,86.0 +52,E85,2024,6,85.0 +52,E85,2024,7,84.0 +52,E85,2024,8,84.0 +52,E85,2024,9,84.0 +52,E85,2024,10,84.0 +52,E85,2024,11,84.0 +52,E85,2024,12,84.0 +52,E10,2009,6,128.35 +52,E10,2009,7,123.06 +52,E10,2009,8,126.24 +52,E10,2009,9,124.29 +52,E10,2009,10,122.94 +52,E10,2009,11,126.87 +52,E10,2009,12,127.17 +52,E10,2009,4,120.48 +52,E10,2009,5,124.27 +52,E10,2009,1, +52,E10,2009,2, +52,E10,2009,3, +52,E10,2010,1,132.25 +52,E10,2010,2,133.78 +52,E10,2010,3,138.17 +52,E10,2010,4,140.38 +52,E10,2010,5,140.37 +52,E10,2010,6,139.14 +52,E10,2010,7,137.03 +52,E10,2010,8,135.69 +52,E10,2010,9,135.57 +52,E10,2010,10,136.37 +52,E10,2010,11,137.61 +52,E10,2010,12,142.48 +52,E10,2011,1,147.76 +52,E10,2011,2,148.52 +52,E10,2011,3,152.67 +52,E10,2011,4,155.45 +52,E10,2011,5,155.88 +52,E10,2011,6,152.82 +52,E10,2011,7,152.59 +52,E10,2011,8,151.54 +52,E10,2011,9,153.87 +52,E10,2011,10,151.87 +52,E10,2011,11,150.87 +52,E10,2011,12,150.57 +52,E10,2012,1,156.05 +52,E10,2012,2,159.34 +52,E10,2012,3,164.24 +52,E10,2012,4,166.49 +52,E10,2012,5,160.26 +52,E10,2012,6,154.98 +52,E10,2012,7,155.8 +52,E10,2012,8,160.35 +52,E10,2012,9,156.83 +52,E10,2012,10,154.25 +52,E10,2012,11,149.05 +52,E10,2012,12,149.3 +52,E10,2013,1,153.68 +52,E10,2013,2,159.7 +52,E10,2013,3,159.22 +52,E10,2013,4,156.45 +52,E10,2013,5,153.47 +52,E10,2013,6,153.44 +52,E10,2013,7,154.53 +52,E10,2013,8,155.22 +52,E10,2013,9,154.34 +52,E10,2013,10,149.66 +52,E10,2013,11,148.56 +52,E10,2013,12,149.76 +52,E10,2014,1,148.55 +52,E10,2014,2,149.57 +52,E10,2014,3,149.81 +52,E10,2014,4,150.68 +52,E10,2014,5,151.51 +52,E10,2014,6,152.88 +52,E10,2014,7,152.64 +52,E10,2014,8,149.25 +52,E10,2014,9,148.88 +52,E10,2014,10,146.09 +52,E10,2014,11,142.0 +52,E10,2014,12,132.86 +52,E10,2015,1,126.01 +52,E10,2015,2,131.51 +52,E10,2015,3,137.37 +52,E10,2015,4,139.9 +52,E10,2015,5,142.82 +52,E10,2015,6,143.44 +52,E10,2015,7,142.86 +52,E10,2015,8,137.49 +52,E10,2015,9,130.23 +52,E10,2015,10,128.35 +52,E10,2015,11,128.64 +52,E10,2015,12,125.6 +52,E10,2016,1,124.06 +52,E10,2016,2,121.48 +52,E10,2016,3,123.32 +52,E10,2016,4,128.1 +52,E10,2016,5,130.85 +52,E10,2016,6,133.77 +52,E10,2016,7,128.79 +52,E10,2016,8,126.41 +52,E10,2016,9,127.35 +52,E10,2016,10,130.31 +52,E10,2016,11,129.32 +52,E10,2016,12,133.37 +52,E10,2017,1,137.38 +52,E10,2017,2,138.03 +52,E10,2017,3,135.54 +52,E10,2017,4,137.04 +52,E10,2017,5,134.1 +52,E10,2017,6,132.15 +52,E10,2017,7,130.41 +52,E10,2017,8,131.82 +52,E10,2017,9,135.08 +52,E10,2017,10,133.99 +52,E10,2017,11,138.28 +52,E10,2017,12,137.5 +52,E10,2018,1,144.32 +52,E10,2018,2,143.58 +52,E10,2018,3,142.87 +52,E10,2018,4,146.44 +52,E10,2018,5,150.94 +52,E10,2018,6,151.91 +52,E10,2018,7,151.05 +52,E10,2018,8,152.5 +52,E10,2018,9,153.26 +52,E10,2018,10,152.95 +52,E10,2018,11,145.26 +52,E10,2018,12,140.06 +52,E10,2019,1,139.51 +52,E10,2019,2,142.01 +52,E10,2019,3,145.87 +52,E10,2019,4,153.84 +52,E10,2019,5,156.63 +52,E10,2019,7,149.8 +52,E10,2019,8,147.88 +52,E10,2019,9,147.31 +52,E10,2019,10,147.31 +52,E10,2019,11,148.52 +52,E10,2019,12,150.05 +52,E10,2019,6,151.11 +52,E10,2020,1,150.59 +52,E10,2020,2,146.3 +52,E10,2020,3,135.58 +52,E10,2020,4,124.93 +52,E10,2020,5,123.67 +52,E10,2020,6,129.62 +52,E10,2020,7,132.82 +52,E10,2020,8,131.41 +52,E10,2020,9,130.94 +52,E10,2020,10,131.35 +52,E10,2020,11,130.39 +52,E10,2020,12,133.55 +52,E10,2021,1,138.13 +52,E10,2021,2,142.56 +52,E10,2021,3,148.01 +52,E10,2021,4,148.84 +52,E10,2021,5,149.67 +52,E10,2021,6,151.29 +52,E10,2021,7,155.17 +52,E10,2021,8,155.5 +52,E10,2021,9,155.73 +52,E10,2021,10,162.22 +52,E10,2021,11,163.98 +52,E10,2021,12,159.14 +52,E10,2022,1,167.0 +52,E10,2022,2,175.0 +52,E10,2022,3,195.0 +52,E10,2022,4,176.0 +52,E10,2022,5,189.0 +52,E10,2022,6,209.0 +52,E10,2022,7,194.0 +52,E10,2022,8,178.0 +52,E10,2022,9,153.0 +52,E10,2022,10,163.0 +52,E10,2022,11,166.0 +52,E10,2022,12,163.0 +52,E10,2023,1,185.0 +52,E10,2023,2,187.0 +52,E10,2023,3,188.0 +52,E10,2023,4,191.0 +52,E10,2023,5,183.0 +52,E10,2023,6,183.0 +52,E10,2023,7,181.0 +52,E10,2023,8,190.0 +52,E10,2023,9,192.0 +52,E10,2023,10,185.0 +52,E10,2023,11,181.0 +52,E10,2023,12,176.0 +52,E10,2024,1,176.0 +52,E10,2024,2,180.0 +52,E10,2024,3,183.0 +52,E10,2024,4,189.0 +52,E10,2024,5,185.0 +52,E10,2024,6,180.0 +52,E10,2024,7,181.0 +52,E10,2024,8,181.0 +52,E10,2024,9,181.0 +52,E10,2024,10,181.0 +52,E10,2024,11,181.0 +52,E10,2024,12,181.0 +52,SP98,2013,7,159.98 +52,SP98,2013,8,160.97 +52,SP98,2013,9,160.24 +52,SP98,2013,10,155.27 +52,SP98,2013,11,153.91 +52,SP98,2013,12,155.45 +52,SP98,2013,6,157.12 +52,SP98,2013,1, +52,SP98,2013,2, +52,SP98,2013,3, +52,SP98,2013,4, +52,SP98,2013,5, +52,SP98,2014,1,155.02 +52,SP98,2014,2,155.73 +52,SP98,2014,3,155.89 +52,SP98,2014,4,156.74 +52,SP98,2014,5,157.58 +52,SP98,2014,6,159.08 +52,SP98,2014,7,159.06 +52,SP98,2014,8,155.74 +52,SP98,2014,9,155.19 +52,SP98,2014,10,152.61 +52,SP98,2014,11,148.56 +52,SP98,2014,12,139.82 +52,SP98,2015,3,143.91 +52,SP98,2015,4,146.71 +52,SP98,2015,5,149.8 +52,SP98,2015,6,150.56 +52,SP98,2015,7,150.07 +52,SP98,2015,8,144.88 +52,SP98,2015,9,137.26 +52,SP98,2015,10,135.27 +52,SP98,2015,11,135.54 +52,SP98,2015,12,133.03 +52,SP98,2015,2,138.01 +52,SP98,2015,1,132.58 +52,SP98,2016,8,134.03 +52,SP98,2016,1,132.21 +52,SP98,2016,2,129.8 +52,SP98,2016,3,131.16 +52,SP98,2016,4,135.96 +52,SP98,2016,5,138.7 +52,SP98,2016,6,141.64 +52,SP98,2016,7,136.92 +52,SP98,2016,9,135.12 +52,SP98,2016,10,138.06 +52,SP98,2016,11,137.35 +52,SP98,2016,12,141.32 +52,SP98,2017,1,145.87 +52,SP98,2017,2,146.54 +52,SP98,2017,3,144.28 +52,SP98,2017,4,145.65 +52,SP98,2017,5,143.01 +52,SP98,2017,6,140.9 +52,SP98,2017,7,138.52 +52,SP98,2017,8,139.44 +52,SP98,2017,9,142.78 +52,SP98,2017,10,141.93 +52,SP98,2017,11,146.36 +52,SP98,2017,12,145.95 +52,SP98,2018,1,152.59 +52,SP98,2018,2,152.02 +52,SP98,2018,3,150.97 +52,SP98,2018,4,154.47 +52,SP98,2018,5,159.42 +52,SP98,2018,6,160.65 +52,SP98,2018,7,159.49 +52,SP98,2018,8,161.02 +52,SP98,2018,9,161.96 +52,SP98,2018,10,161.72 +52,SP98,2018,11,154.25 +52,SP98,2018,12,148.85 +52,SP98,2019,1,147.82 +52,SP98,2019,2,150.27 +52,SP98,2019,3,154.07 +52,SP98,2019,4,162.18 +52,SP98,2019,5,165.22 +52,SP98,2019,6,160.19 +52,SP98,2019,7,158.36 +52,SP98,2019,8,156.67 +52,SP98,2019,9,156.13 +52,SP98,2019,10,156.17 +52,SP98,2019,11,157.02 +52,SP98,2019,12,158.31 +52,SP98,2020,1,158.85 +52,SP98,2020,2,154.78 +52,SP98,2020,3,144.86 +52,SP98,2020,4,133.76 +52,SP98,2020,5,131.45 +52,SP98,2020,6,137.19 +52,SP98,2020,7,140.7 +52,SP98,2020,8,139.43 +52,SP98,2020,9,139.14 +52,SP98,2020,10,139.55 +52,SP98,2020,11,138.54 +52,SP98,2020,12,141.15 +52,SP98,2021,6,159.51 +52,SP98,2021,7,163.82 +52,SP98,2021,8,164.16 +52,SP98,2021,9,164.25 +52,SP98,2021,10,170.84 +52,SP98,2021,11,172.92 +52,SP98,2021,12,168.54 +52,SP98,2021,1,145.42 +52,SP98,2021,2,149.85 +52,SP98,2021,3,155.94 +52,SP98,2021,4,157.1 +52,SP98,2021,5,157.94 +52,SP98,2022,1,175.0 +52,SP98,2022,2,183.0 +52,SP98,2022,3,204.0 +52,SP98,2022,4,186.0 +52,SP98,2022,5,198.0 +52,SP98,2022,6,219.0 +52,SP98,2022,7,206.0 +52,SP98,2022,8,188.0 +52,SP98,2022,9,164.0 +52,SP98,2022,10,173.0 +52,SP98,2022,11,176.0 +52,SP98,2022,12,173.0 +52,SP98,2023,8,197.0 +52,SP98,2023,9,200.0 +52,SP98,2023,11,190.0 +52,SP98,2023,12,184.0 +52,SP98,2023,1,194.0 +52,SP98,2023,2,197.0 +52,SP98,2023,3,197.0 +52,SP98,2023,4,199.0 +52,SP98,2023,5,192.0 +52,SP98,2023,6,191.0 +52,SP98,2023,7,189.0 +52,SP98,2023,10,193.0 +52,SP98,2024,1,184.0 +52,SP98,2024,2,189.0 +52,SP98,2024,3,192.0 +52,SP98,2024,6,190.0 +52,SP98,2024,7,191.0 +52,SP98,2024,4,197.0 +52,SP98,2024,5,195.0 +52,SP98,2024,8,191.0 +52,SP98,2024,9,191.0 +52,SP98,2024,10,191.0 +52,SP98,2024,11,191.0 +52,SP98,2024,12,191.0 +31,Gazole,2007,9,110.38 +31,Gazole,2007,10,112.15 +31,Gazole,2007,11,119.71 +31,Gazole,2007,12,120.17 +31,Gazole,2007,1,101.25 +31,Gazole,2007,2,101.89 +31,Gazole,2007,3,103.67 +31,Gazole,2007,4,106.08 +31,Gazole,2007,5,106.47 +31,Gazole,2007,6,107.79 +31,Gazole,2007,7,108.88 +31,Gazole,2007,8,108.94 +31,Gazole,2008,1,119.16 +31,Gazole,2008,2,119.71 +31,Gazole,2008,3,125.49 +31,Gazole,2008,4,128.2 +31,Gazole,2008,5,137.99 +31,Gazole,2008,6,143.24 +31,Gazole,2008,7,142.51 +31,Gazole,2008,8,133.93 +31,Gazole,2008,9,130.52 +31,Gazole,2008,10,122.26 +31,Gazole,2008,11,112.0 +31,Gazole,2008,12,100.18 +31,Gazole,2009,1,97.82 +31,Gazole,2009,2,96.84 +31,Gazole,2009,3,94.46 +31,Gazole,2009,4,96.68 +31,Gazole,2009,5,96.75 +31,Gazole,2009,6,101.46 +31,Gazole,2009,7,99.84 +31,Gazole,2009,8,102.9 +31,Gazole,2009,9,101.08 +31,Gazole,2009,10,102.06 +31,Gazole,2009,11,104.11 +31,Gazole,2009,12,103.25 +31,Gazole,2010,1,107.92 +31,Gazole,2010,2,108.09 +31,Gazole,2010,3,112.1 +31,Gazole,2010,4,115.89 +31,Gazole,2010,5,117.04 +31,Gazole,2010,6,116.62 +31,Gazole,2010,7,114.67 +31,Gazole,2010,8,114.38 +31,Gazole,2010,9,114.93 +31,Gazole,2010,10,117.07 +31,Gazole,2010,11,118.2 +31,Gazole,2010,12,122.45 +31,Gazole,2011,1,129.0 +31,Gazole,2011,2,131.68 +31,Gazole,2011,3,137.26 +31,Gazole,2011,4,138.1 +31,Gazole,2011,5,134.32 +31,Gazole,2011,6,133.36 +31,Gazole,2011,7,134.15 +31,Gazole,2011,8,133.0 +31,Gazole,2011,9,134.84 +31,Gazole,2011,10,136.2 +31,Gazole,2011,11,139.72 +31,Gazole,2011,12,138.74 +31,Gazole,2012,1,141.98 +31,Gazole,2012,2,143.13 +31,Gazole,2012,3,145.71 +31,Gazole,2012,4,144.65 +31,Gazole,2012,5,141.26 +31,Gazole,2012,6,135.42 +31,Gazole,2012,7,138.18 +31,Gazole,2012,8,144.35 +31,Gazole,2012,9,140.96 +31,Gazole,2012,10,140.82 +31,Gazole,2012,11,138.68 +31,Gazole,2012,12,137.32 +31,Gazole,2013,1,138.77 +31,Gazole,2013,2,142.1 +31,Gazole,2013,3,140.62 +31,Gazole,2013,4,136.73 +31,Gazole,2013,5,134.17 +31,Gazole,2013,6,133.93 +31,Gazole,2013,7,136.05 +31,Gazole,2013,8,136.45 +31,Gazole,2013,9,138.0 +31,Gazole,2013,10,134.13 +31,Gazole,2013,11,133.03 +31,Gazole,2013,12,134.7 +31,Gazole,2014,1,133.38 +31,Gazole,2014,2,133.94 +31,Gazole,2014,3,132.15 +31,Gazole,2014,6,131.78 +31,Gazole,2014,7,131.41 +31,Gazole,2014,9,130.24 +31,Gazole,2014,10,126.96 +31,Gazole,2014,11,124.21 +31,Gazole,2014,12,114.8 +31,Gazole,2014,4,131.6 +31,Gazole,2014,5,131.47 +31,Gazole,2014,8,130.79 +31,Gazole,2015,1,111.85 +31,Gazole,2015,2,117.93 +31,Gazole,2015,3,121.3 +31,Gazole,2015,4,121.04 +31,Gazole,2015,5,123.8 +31,Gazole,2015,6,122.01 +31,Gazole,2015,7,118.45 +31,Gazole,2015,8,112.8 +31,Gazole,2015,9,110.94 +31,Gazole,2015,10,110.55 +31,Gazole,2015,11,110.45 +31,Gazole,2015,12,103.6 +31,Gazole,2016,1, +31,Gazole,2016,2, +31,Gazole,2016,3, +31,Gazole,2016,4, +31,Gazole,2016,5, +31,Gazole,2016,6, +31,Gazole,2016,7, +31,Gazole,2016,8, +31,Gazole,2016,9, +31,Gazole,2016,10, +31,Gazole,2016,11, +31,Gazole,2016,12, +31,Gazole,2017,1, +31,Gazole,2017,2, +31,Gazole,2017,3, +31,Gazole,2017,4, +31,Gazole,2017,5, +31,Gazole,2017,6, +31,Gazole,2017,7, +31,Gazole,2017,8, +31,Gazole,2017,9, +31,Gazole,2017,10, +31,Gazole,2017,11, +31,Gazole,2017,12, +31,Gazole,2018,1, +31,Gazole,2018,2, +31,Gazole,2018,3, +31,Gazole,2018,4, +31,Gazole,2018,5, +31,Gazole,2018,6, +31,Gazole,2018,7, +31,Gazole,2018,8, +31,Gazole,2018,9, +31,Gazole,2018,10, +31,Gazole,2018,11, +31,Gazole,2018,12, +31,Gazole,2019,1, +31,Gazole,2019,2, +31,Gazole,2019,3, +31,Gazole,2019,4, +31,Gazole,2019,5, +31,Gazole,2019,6, +31,Gazole,2019,7, +31,Gazole,2019,8, +31,Gazole,2019,9, +31,Gazole,2019,10, +31,Gazole,2019,11, +31,Gazole,2019,12, +31,Gazole,2020,1, +31,Gazole,2020,2, +31,Gazole,2020,3, +31,Gazole,2020,4, +31,Gazole,2020,5, +31,Gazole,2020,6, +31,Gazole,2020,7, +31,Gazole,2020,8, +31,Gazole,2020,9, +31,Gazole,2020,10, +31,Gazole,2020,11, +31,Gazole,2020,12, +31,Gazole,2021,1, +31,Gazole,2021,2, +31,Gazole,2021,3, +31,Gazole,2021,4, +31,Gazole,2021,5, +31,Gazole,2021,6, +31,Gazole,2021,7, +31,Gazole,2021,8, +31,Gazole,2021,9, +31,Gazole,2021,10, +31,Gazole,2021,11, +31,Gazole,2021,12, +31,Gazole,2022,1, +31,Gazole,2022,2, +31,Gazole,2022,3, +31,Gazole,2022,4, +31,Gazole,2022,5, +31,Gazole,2022,6, +31,Gazole,2022,7, +31,Gazole,2022,8, +31,Gazole,2022,9, +31,Gazole,2022,10, +31,Gazole,2022,11, +31,Gazole,2022,12, +31,Gazole,2023,1, +31,Gazole,2023,2, +31,Gazole,2023,3, +31,Gazole,2023,4, +31,Gazole,2023,5, +31,Gazole,2023,6, +31,Gazole,2023,7, +31,Gazole,2023,8, +31,Gazole,2023,9, +31,Gazole,2023,10, +31,Gazole,2023,11, +31,Gazole,2023,12, +31,Gazole,2024,1, +31,Gazole,2024,2, +31,Gazole,2024,3, +31,Gazole,2024,4, +31,Gazole,2024,5, +31,Gazole,2024,6, +31,Gazole,2024,7, +31,Gazole,2024,8, +31,Gazole,2024,9, +31,Gazole,2024,10, +31,Gazole,2024,11, +31,Gazole,2024,12, +31,SP95,2007,9,129.29 +31,SP95,2007,10,129.37 +31,SP95,2007,11,134.6 +31,SP95,2007,12,134.06 +31,SP95,2007,1,118.41 +31,SP95,2007,2,119.51 +31,SP95,2007,3,124.67 +31,SP95,2007,4,128.72 +31,SP95,2007,5,133.07 +31,SP95,2007,6,133.13 +31,SP95,2007,7,132.58 +31,SP95,2007,8,129.02 +31,SP95,2008,1,135.67 +31,SP95,2008,2,135.75 +31,SP95,2008,3,137.77 +31,SP95,2008,4,139.44 +31,SP95,2008,5,144.37 +31,SP95,2008,6,149.58 +31,SP95,2008,7,148.93 +31,SP95,2008,8,143.66 +31,SP95,2008,9,142.59 +31,SP95,2008,10,132.89 +31,SP95,2008,11,119.1 +31,SP95,2008,12,110.25 +31,SP95,2009,1,110.07 +31,SP95,2009,2,114.79 +31,SP95,2009,3,115.22 +31,SP95,2009,4,117.55 +31,SP95,2009,5,120.6 +31,SP95,2009,6,125.96 +31,SP95,2009,7,122.85 +31,SP95,2009,8,125.5 +31,SP95,2009,9,123.35 +31,SP95,2009,10,122.79 +31,SP95,2009,12,124.67 +31,SP95,2009,11,125.29 +31,SP95,2010,1,129.93 +31,SP95,2010,2,131.12 +31,SP95,2010,3,135.53 +31,SP95,2010,4,137.55 +31,SP95,2010,5,137.42 +31,SP95,2010,6,136.5 +31,SP95,2010,7,134.6 +31,SP95,2010,8,134.01 +31,SP95,2010,9,133.89 +31,SP95,2010,10,134.99 +31,SP95,2010,11,136.23 +31,SP95,2010,12,140.93 +31,SP95,2011,1,146.94 +31,SP95,2011,2,147.28 +31,SP95,2011,3,151.9 +31,SP95,2011,4,154.4 +31,SP95,2011,5,154.69 +31,SP95,2011,6,151.97 +31,SP95,2011,7,151.61 +31,SP95,2011,8,151.06 +31,SP95,2011,9,153.16 +31,SP95,2011,10,151.4 +31,SP95,2011,11,150.72 +31,SP95,2011,12,150.58 +31,SP95,2012,1,156.05 +31,SP95,2012,2,159.85 +31,SP95,2012,3,164.54 +31,SP95,2012,4,166.87 +31,SP95,2012,5,160.91 +31,SP95,2012,6,156.14 +31,SP95,2012,7,157.0 +31,SP95,2012,8,162.59 +31,SP95,2012,9,159.75 +31,SP95,2012,10,157.2 +31,SP95,2012,11,152.41 +31,SP95,2012,12,152.63 +31,SP95,2013,1,156.18 +31,SP95,2013,2,161.62 +31,SP95,2013,3,161.41 +31,SP95,2013,4,158.69 +31,SP95,2013,5,155.25 +31,SP95,2013,6,155.38 +31,SP95,2013,7,156.44 +31,SP95,2013,8,156.94 +31,SP95,2013,9,155.89 +31,SP95,2013,10,151.21 +31,SP95,2013,11,150.49 +31,SP95,2013,12,151.82 +31,SP95,2014,1,150.96 +31,SP95,2014,2,151.78 +31,SP95,2014,3,151.72 +31,SP95,2014,6,154.92 +31,SP95,2014,7,155.12 +31,SP95,2014,8,152.06 +31,SP95,2014,9,151.45 +31,SP95,2014,10,148.38 +31,SP95,2014,11,144.3 +31,SP95,2014,12,135.59 +31,SP95,2014,4,152.77 +31,SP95,2014,5,153.35 +31,SP95,2015,1,128.38 +31,SP95,2015,2,133.99 +31,SP95,2015,3,139.46 +31,SP95,2015,4,142.11 +31,SP95,2015,5,144.79 +31,SP95,2015,6,145.51 +31,SP95,2015,7,145.16 +31,SP95,2015,8,139.92 +31,SP95,2015,9,132.86 +31,SP95,2015,10,131.07 +31,SP95,2015,11,131.28 +31,SP95,2015,12,128.77 +31,SP95,2016,1, +31,SP95,2016,2, +31,SP95,2016,3, +31,SP95,2016,4, +31,SP95,2016,5, +31,SP95,2016,6, +31,SP95,2016,7, +31,SP95,2016,8, +31,SP95,2016,9, +31,SP95,2016,10, +31,SP95,2016,11, +31,SP95,2016,12, +31,SP95,2017,1, +31,SP95,2017,2, +31,SP95,2017,3, +31,SP95,2017,4, +31,SP95,2017,5, +31,SP95,2017,6, +31,SP95,2017,7, +31,SP95,2017,8, +31,SP95,2017,9, +31,SP95,2017,10, +31,SP95,2017,11, +31,SP95,2017,12, +31,SP95,2018,1, +31,SP95,2018,2, +31,SP95,2018,3, +31,SP95,2018,4, +31,SP95,2018,5, +31,SP95,2018,6, +31,SP95,2018,7, +31,SP95,2018,8, +31,SP95,2018,9, +31,SP95,2018,10, +31,SP95,2018,11, +31,SP95,2018,12, +31,SP95,2019,1, +31,SP95,2019,2, +31,SP95,2019,3, +31,SP95,2019,4, +31,SP95,2019,5, +31,SP95,2019,6, +31,SP95,2019,7, +31,SP95,2019,8, +31,SP95,2019,9, +31,SP95,2019,10, +31,SP95,2019,11, +31,SP95,2019,12, +31,SP95,2020,1, +31,SP95,2020,2, +31,SP95,2020,3, +31,SP95,2020,4, +31,SP95,2020,5, +31,SP95,2020,6, +31,SP95,2020,7, +31,SP95,2020,8, +31,SP95,2020,9, +31,SP95,2020,10, +31,SP95,2020,11, +31,SP95,2020,12, +31,SP95,2021,1, +31,SP95,2021,2, +31,SP95,2021,3, +31,SP95,2021,4, +31,SP95,2021,5, +31,SP95,2021,6, +31,SP95,2021,7, +31,SP95,2021,8, +31,SP95,2021,9, +31,SP95,2021,10, +31,SP95,2021,11, +31,SP95,2021,12, +31,SP95,2022,1, +31,SP95,2022,2, +31,SP95,2022,3, +31,SP95,2022,4, +31,SP95,2022,5, +31,SP95,2022,6, +31,SP95,2022,7, +31,SP95,2022,8, +31,SP95,2022,9, +31,SP95,2022,10, +31,SP95,2022,11, +31,SP95,2022,12, +31,SP95,2023,1, +31,SP95,2023,2, +31,SP95,2023,3, +31,SP95,2023,4, +31,SP95,2023,5, +31,SP95,2023,6, +31,SP95,2023,7, +31,SP95,2023,8, +31,SP95,2023,9, +31,SP95,2023,10, +31,SP95,2023,11, +31,SP95,2023,12, +31,SP95,2024,1, +31,SP95,2024,2, +31,SP95,2024,3, +31,SP95,2024,4, +31,SP95,2024,5, +31,SP95,2024,6, +31,SP95,2024,7, +31,SP95,2024,8, +31,SP95,2024,9, +31,SP95,2024,10, +31,SP95,2024,11, +31,SP95,2024,12, +31,GPLc,2007,12,73.71 +31,GPLc,2007,11,73.05 +31,GPLc,2007,1, +31,GPLc,2007,2, +31,GPLc,2007,3, +31,GPLc,2007,4, +31,GPLc,2007,5, +31,GPLc,2007,6, +31,GPLc,2007,7, +31,GPLc,2007,8, +31,GPLc,2007,9, +31,GPLc,2007,10, +31,GPLc,2008,1,73.43 +31,GPLc,2008,2,73.54 +31,GPLc,2008,4,73.83 +31,GPLc,2008,6,75.45 +31,GPLc,2008,7,76.28 +31,GPLc,2008,8,77.55 +31,GPLc,2008,11,76.96 +31,GPLc,2008,12,73.75 +31,GPLc,2008,3,73.79 +31,GPLc,2008,5,74.26 +31,GPLc,2008,9,77.67 +31,GPLc,2008,10,77.58 +31,GPLc,2009,1,68.1 +31,GPLc,2009,2,67.49 +31,GPLc,2009,3,66.68 +31,GPLc,2009,4,64.23 +31,GPLc,2009,5,63.56 +31,GPLc,2009,6,63.59 +31,GPLc,2009,7,63.86 +31,GPLc,2009,8,65.15 +31,GPLc,2009,9,66.58 +31,GPLc,2009,10,65.99 +31,GPLc,2009,11,66.53 +31,GPLc,2009,12,67.53 +31,GPLc,2010,1,67.72 +31,GPLc,2010,2,67.98 +31,GPLc,2010,3,67.85 +31,GPLc,2010,4,68.12 +31,GPLc,2010,5,69.37 +31,GPLc,2010,6,70.23 +31,GPLc,2010,7,72.35 +31,GPLc,2010,8,72.83 +31,GPLc,2010,9,75.09 +31,GPLc,2010,10,77.09 +31,GPLc,2010,11,77.99 +31,GPLc,2010,12,81.32 +31,GPLc,2011,7,85.54 +31,GPLc,2011,1,80.36 +31,GPLc,2011,2,79.91 +31,GPLc,2011,3,81.5 +31,GPLc,2011,4,83.08 +31,GPLc,2011,5,83.85 +31,GPLc,2011,6,84.55 +31,GPLc,2011,8,85.92 +31,GPLc,2011,9,85.81 +31,GPLc,2011,10,85.78 +31,GPLc,2011,11,85.75 +31,GPLc,2011,12,85.61 +31,GPLc,2012,1,84.94 +31,GPLc,2012,2,85.67 +31,GPLc,2012,3,87.71 +31,GPLc,2012,4,88.38 +31,GPLc,2012,5,88.3 +31,GPLc,2012,6,88.0 +31,GPLc,2012,7,86.57 +31,GPLc,2012,8,86.07 +31,GPLc,2012,9,85.75 +31,GPLc,2012,10,86.29 +31,GPLc,2012,11,86.88 +31,GPLc,2012,12,86.99 +31,GPLc,2013,1,87.93 +31,GPLc,2013,2,87.88 +31,GPLc,2013,3,88.24 +31,GPLc,2013,4,88.09 +31,GPLc,2013,5,86.94 +31,GPLc,2013,6,86.28 +31,GPLc,2013,7,85.77 +31,GPLc,2013,8,85.62 +31,GPLc,2013,9,85.82 +31,GPLc,2013,10,85.28 +31,GPLc,2013,11,85.14 +31,GPLc,2013,12,85.7 +31,GPLc,2014,1,86.78 +31,GPLc,2014,2,86.67 +31,GPLc,2014,4,86.34 +31,GPLc,2014,7,85.08 +31,GPLc,2014,8,84.78 +31,GPLc,2014,9,84.65 +31,GPLc,2014,11,84.11 +31,GPLc,2014,12,83.37 +31,GPLc,2014,5,86.02 +31,GPLc,2014,6,85.66 +31,GPLc,2014,10,84.62 +31,GPLc,2014,3,86.86 +31,GPLc,2015,2,78.59 +31,GPLc,2015,3,78.43 +31,GPLc,2015,4,78.48 +31,GPLc,2015,5,79.08 +31,GPLc,2015,6,78.44 +31,GPLc,2015,7,77.24 +31,GPLc,2015,8,76.49 +31,GPLc,2015,9,75.02 +31,GPLc,2015,10,73.84 +31,GPLc,2015,11,73.41 +31,GPLc,2015,12,72.76 +31,GPLc,2015,1,80.97 +31,GPLc,2016,1, +31,GPLc,2016,2, +31,GPLc,2016,3, +31,GPLc,2016,4, +31,GPLc,2016,5, +31,GPLc,2016,6, +31,GPLc,2016,7, +31,GPLc,2016,8, +31,GPLc,2016,9, +31,GPLc,2016,10, +31,GPLc,2016,11, +31,GPLc,2016,12, +31,GPLc,2017,1, +31,GPLc,2017,2, +31,GPLc,2017,3, +31,GPLc,2017,4, +31,GPLc,2017,5, +31,GPLc,2017,6, +31,GPLc,2017,7, +31,GPLc,2017,8, +31,GPLc,2017,9, +31,GPLc,2017,10, +31,GPLc,2017,11, +31,GPLc,2017,12, +31,GPLc,2018,1, +31,GPLc,2018,2, +31,GPLc,2018,3, +31,GPLc,2018,4, +31,GPLc,2018,5, +31,GPLc,2018,6, +31,GPLc,2018,7, +31,GPLc,2018,8, +31,GPLc,2018,9, +31,GPLc,2018,10, +31,GPLc,2018,11, +31,GPLc,2018,12, +31,GPLc,2019,1, +31,GPLc,2019,2, +31,GPLc,2019,3, +31,GPLc,2019,4, +31,GPLc,2019,5, +31,GPLc,2019,6, +31,GPLc,2019,7, +31,GPLc,2019,8, +31,GPLc,2019,9, +31,GPLc,2019,10, +31,GPLc,2019,11, +31,GPLc,2019,12, +31,GPLc,2020,1, +31,GPLc,2020,2, +31,GPLc,2020,3, +31,GPLc,2020,4, +31,GPLc,2020,5, +31,GPLc,2020,6, +31,GPLc,2020,7, +31,GPLc,2020,8, +31,GPLc,2020,9, +31,GPLc,2020,10, +31,GPLc,2020,11, +31,GPLc,2020,12, +31,GPLc,2021,1, +31,GPLc,2021,2, +31,GPLc,2021,3, +31,GPLc,2021,4, +31,GPLc,2021,5, +31,GPLc,2021,6, +31,GPLc,2021,7, +31,GPLc,2021,8, +31,GPLc,2021,9, +31,GPLc,2021,10, +31,GPLc,2021,11, +31,GPLc,2021,12, +31,GPLc,2022,1, +31,GPLc,2022,2, +31,GPLc,2022,3, +31,GPLc,2022,4, +31,GPLc,2022,5, +31,GPLc,2022,6, +31,GPLc,2022,7, +31,GPLc,2022,8, +31,GPLc,2022,9, +31,GPLc,2022,10, +31,GPLc,2022,11, +31,GPLc,2022,12, +31,GPLc,2023,1, +31,GPLc,2023,2, +31,GPLc,2023,3, +31,GPLc,2023,4, +31,GPLc,2023,5, +31,GPLc,2023,6, +31,GPLc,2023,7, +31,GPLc,2023,8, +31,GPLc,2023,9, +31,GPLc,2023,10, +31,GPLc,2023,11, +31,GPLc,2023,12, +31,GPLc,2024,1, +31,GPLc,2024,2, +31,GPLc,2024,3, +31,GPLc,2024,4, +31,GPLc,2024,5, +31,GPLc,2024,6, +31,GPLc,2024,7, +31,GPLc,2024,8, +31,GPLc,2024,9, +31,GPLc,2024,10, +31,GPLc,2024,11, +31,GPLc,2024,12, +31,E85,2007,5,82.32 +31,E85,2007,6,82.5 +31,E85,2007,7,82.22 +31,E85,2007,8,82.22 +31,E85,2007,9,82.16 +31,E85,2007,10,82.19 +31,E85,2007,11,81.96 +31,E85,2007,12,81.04 +31,E85,2007,1, +31,E85,2007,2, +31,E85,2007,3, +31,E85,2007,4, +31,E85,2008,3,81.95 +31,E85,2008,7,84.43 +31,E85,2008,1,80.33 +31,E85,2008,2,80.75 +31,E85,2008,4,82.56 +31,E85,2008,5,82.89 +31,E85,2008,6,83.16 +31,E85,2008,8,85.97 +31,E85,2008,9,86.28 +31,E85,2008,10,86.54 +31,E85,2008,11,86.99 +31,E85,2008,12,86.89 +31,E85,2009,3,85.67 +31,E85,2009,4,85.81 +31,E85,2009,6,87.02 +31,E85,2009,9,97.03 +31,E85,2009,10,99.72 +31,E85,2009,11,100.81 +31,E85,2009,12,101.01 +31,E85,2009,1,82.96 +31,E85,2009,2,83.6 +31,E85,2009,5,85.32 +31,E85,2009,7,92.09 +31,E85,2009,8,95.5 +31,E85,2010,8,112.14 +31,E85,2010,1,95.92 +31,E85,2010,5,106.92 +31,E85,2010,7,109.63 +31,E85,2010,10,112.77 +31,E85,2010,11,113.23 +31,E85,2010,2,97.83 +31,E85,2010,3,100.62 +31,E85,2010,4,105.07 +31,E85,2010,6,107.7 +31,E85,2010,9,111.87 +31,E85,2010,12,113.95 +31,E85,2011,12,91.42 +31,E85,2011,1,88.55 +31,E85,2011,2,89.39 +31,E85,2011,3,90.6 +31,E85,2011,4,90.99 +31,E85,2011,6,91.29 +31,E85,2011,7,90.88 +31,E85,2011,8,91.07 +31,E85,2011,9,91.31 +31,E85,2011,5,91.32 +31,E85,2011,10,91.27 +31,E85,2011,11,91.26 +31,E85,2012,1,90.83 +31,E85,2012,2,91.44 +31,E85,2012,3,91.78 +31,E85,2012,5,91.83 +31,E85,2012,7,92.37 +31,E85,2012,8,92.82 +31,E85,2012,9,92.81 +31,E85,2012,10,92.82 +31,E85,2012,11,93.03 +31,E85,2012,4,92.19 +31,E85,2012,6,91.25 +31,E85,2012,12,92.98 +31,E85,2013,1,92.66 +31,E85,2013,2,93.13 +31,E85,2013,4,92.69 +31,E85,2013,5,92.11 +31,E85,2013,6,93.97 +31,E85,2013,7,93.89 +31,E85,2013,9,93.9 +31,E85,2013,11,93.41 +31,E85,2013,3,93.23 +31,E85,2013,8,93.83 +31,E85,2013,10,93.62 +31,E85,2013,12,93.12 +31,E85,2014,7,86.06 +31,E85,2014,8,84.68 +31,E85,2014,9,83.53 +31,E85,2014,10,82.67 +31,E85,2014,11,81.98 +31,E85,2014,12,81.32 +31,E85,2014,1,89.93 +31,E85,2014,3,88.73 +31,E85,2014,4,87.48 +31,E85,2014,5,86.41 +31,E85,2014,2,89.2 +31,E85,2014,6,86.08 +31,E85,2015,3,83.69 +31,E85,2015,4,86.33 +31,E85,2015,5,86.04 +31,E85,2015,6,85.61 +31,E85,2015,7,85.04 +31,E85,2015,8,84.98 +31,E85,2015,9,86.31 +31,E85,2015,10,83.81 +31,E85,2015,11,81.87 +31,E85,2015,12,82.87 +31,E85,2015,1,83.1 +31,E85,2015,2,81.63 +31,E85,2016,1, +31,E85,2016,2, +31,E85,2016,3, +31,E85,2016,4, +31,E85,2016,5, +31,E85,2016,6, +31,E85,2016,7, +31,E85,2016,8, +31,E85,2016,9, +31,E85,2016,10, +31,E85,2016,11, +31,E85,2016,12, +31,E85,2017,1, +31,E85,2017,2, +31,E85,2017,3, +31,E85,2017,4, +31,E85,2017,5, +31,E85,2017,6, +31,E85,2017,7, +31,E85,2017,8, +31,E85,2017,9, +31,E85,2017,10, +31,E85,2017,11, +31,E85,2017,12, +31,E85,2018,1, +31,E85,2018,2, +31,E85,2018,3, +31,E85,2018,4, +31,E85,2018,5, +31,E85,2018,6, +31,E85,2018,7, +31,E85,2018,8, +31,E85,2018,9, +31,E85,2018,10, +31,E85,2018,11, +31,E85,2018,12, +31,E85,2019,1, +31,E85,2019,2, +31,E85,2019,3, +31,E85,2019,4, +31,E85,2019,5, +31,E85,2019,6, +31,E85,2019,7, +31,E85,2019,8, +31,E85,2019,9, +31,E85,2019,10, +31,E85,2019,11, +31,E85,2019,12, +31,E85,2020,1, +31,E85,2020,2, +31,E85,2020,3, +31,E85,2020,4, +31,E85,2020,5, +31,E85,2020,6, +31,E85,2020,7, +31,E85,2020,8, +31,E85,2020,9, +31,E85,2020,10, +31,E85,2020,11, +31,E85,2020,12, +31,E85,2021,1, +31,E85,2021,2, +31,E85,2021,3, +31,E85,2021,4, +31,E85,2021,5, +31,E85,2021,6, +31,E85,2021,7, +31,E85,2021,8, +31,E85,2021,9, +31,E85,2021,10, +31,E85,2021,11, +31,E85,2021,12, +31,E85,2022,1, +31,E85,2022,2, +31,E85,2022,3, +31,E85,2022,4, +31,E85,2022,5, +31,E85,2022,6, +31,E85,2022,7, +31,E85,2022,8, +31,E85,2022,9, +31,E85,2022,10, +31,E85,2022,11, +31,E85,2022,12, +31,E85,2023,1, +31,E85,2023,2, +31,E85,2023,3, +31,E85,2023,4, +31,E85,2023,5, +31,E85,2023,6, +31,E85,2023,7, +31,E85,2023,8, +31,E85,2023,9, +31,E85,2023,10, +31,E85,2023,11, +31,E85,2023,12, +31,E85,2024,1, +31,E85,2024,2, +31,E85,2024,3, +31,E85,2024,4, +31,E85,2024,5, +31,E85,2024,6, +31,E85,2024,7, +31,E85,2024,8, +31,E85,2024,9, +31,E85,2024,10, +31,E85,2024,11, +31,E85,2024,12, +31,E10,2009,5,123.33 +31,E10,2009,6,129.09 +31,E10,2009,7,125.7 +31,E10,2009,8,128.92 +31,E10,2009,9,126.27 +31,E10,2009,10,125.32 +31,E10,2009,11,127.69 +31,E10,2009,12,126.61 +31,E10,2009,4,123.89 +31,E10,2009,1, +31,E10,2009,2, +31,E10,2009,3, +31,E10,2010,1,130.86 +31,E10,2010,2,132.89 +31,E10,2010,3,136.89 +31,E10,2010,4,139.16 +31,E10,2010,5,138.78 +31,E10,2010,6,137.07 +31,E10,2010,7,135.57 +31,E10,2010,8,134.84 +31,E10,2010,9,135.08 +31,E10,2010,10,136.07 +31,E10,2010,11,136.67 +31,E10,2010,12,142.29 +31,E10,2011,1,147.16 +31,E10,2011,2,147.86 +31,E10,2011,3,152.03 +31,E10,2011,4,154.68 +31,E10,2011,5,154.89 +31,E10,2011,6,152.28 +31,E10,2011,7,152.29 +31,E10,2011,8,151.31 +31,E10,2011,9,154.07 +31,E10,2011,10,152.47 +31,E10,2011,11,152.01 +31,E10,2011,12,150.72 +31,E10,2012,1,155.71 +31,E10,2012,2,158.92 +31,E10,2012,3,164.21 +31,E10,2012,4,166.99 +31,E10,2012,5,160.51 +31,E10,2012,6,155.49 +31,E10,2012,7,156.97 +31,E10,2012,8,162.11 +31,E10,2012,9,158.36 +31,E10,2012,10,155.68 +31,E10,2012,11,150.19 +31,E10,2012,12,150.69 +31,E10,2013,1,154.6 +31,E10,2013,2,160.4 +31,E10,2013,3,159.37 +31,E10,2013,4,157.4 +31,E10,2013,5,154.66 +31,E10,2013,6,154.84 +31,E10,2013,7,156.51 +31,E10,2013,8,157.02 +31,E10,2013,9,155.55 +31,E10,2013,10,151.04 +31,E10,2013,11,149.96 +31,E10,2013,12,151.23 +31,E10,2014,1,149.71 +31,E10,2014,2,150.72 +31,E10,2014,3,150.6 +31,E10,2014,4,151.91 +31,E10,2014,5,152.3 +31,E10,2014,6,153.72 +31,E10,2014,7,154.04 +31,E10,2014,8,151.16 +31,E10,2014,9,150.62 +31,E10,2014,10,147.69 +31,E10,2014,11,143.71 +31,E10,2014,12,135.08 +31,E10,2015,1,127.62 +31,E10,2015,2,133.24 +31,E10,2015,3,138.79 +31,E10,2015,4,141.36 +31,E10,2015,5,143.97 +31,E10,2015,6,144.48 +31,E10,2015,7,143.97 +31,E10,2015,8,139.06 +31,E10,2015,9,132.31 +31,E10,2015,10,130.0 +31,E10,2015,11,129.99 +31,E10,2015,12,127.35 +31,E10,2016,1, +31,E10,2016,2, +31,E10,2016,3, +31,E10,2016,4, +31,E10,2016,5, +31,E10,2016,6, +31,E10,2016,7, +31,E10,2016,8, +31,E10,2016,9, +31,E10,2016,10, +31,E10,2016,11, +31,E10,2016,12, +31,E10,2017,1, +31,E10,2017,2, +31,E10,2017,3, +31,E10,2017,4, +31,E10,2017,5, +31,E10,2017,6, +31,E10,2017,7, +31,E10,2017,8, +31,E10,2017,9, +31,E10,2017,10, +31,E10,2017,11, +31,E10,2017,12, +31,E10,2018,1, +31,E10,2018,2, +31,E10,2018,3, +31,E10,2018,4, +31,E10,2018,5, +31,E10,2018,6, +31,E10,2018,7, +31,E10,2018,8, +31,E10,2018,9, +31,E10,2018,10, +31,E10,2018,11, +31,E10,2018,12, +31,E10,2019,1, +31,E10,2019,2, +31,E10,2019,3, +31,E10,2019,4, +31,E10,2019,5, +31,E10,2019,6, +31,E10,2019,7, +31,E10,2019,8, +31,E10,2019,9, +31,E10,2019,10, +31,E10,2019,11, +31,E10,2019,12, +31,E10,2020,1, +31,E10,2020,2, +31,E10,2020,3, +31,E10,2020,4, +31,E10,2020,5, +31,E10,2020,6, +31,E10,2020,7, +31,E10,2020,8, +31,E10,2020,9, +31,E10,2020,10, +31,E10,2020,11, +31,E10,2020,12, +31,E10,2021,1, +31,E10,2021,2, +31,E10,2021,3, +31,E10,2021,4, +31,E10,2021,5, +31,E10,2021,6, +31,E10,2021,7, +31,E10,2021,8, +31,E10,2021,9, +31,E10,2021,10, +31,E10,2021,11, +31,E10,2021,12, +31,E10,2022,1, +31,E10,2022,2, +31,E10,2022,3, +31,E10,2022,4, +31,E10,2022,5, +31,E10,2022,6, +31,E10,2022,7, +31,E10,2022,8, +31,E10,2022,9, +31,E10,2022,10, +31,E10,2022,11, +31,E10,2022,12, +31,E10,2023,1, +31,E10,2023,2, +31,E10,2023,3, +31,E10,2023,4, +31,E10,2023,5, +31,E10,2023,6, +31,E10,2023,7, +31,E10,2023,8, +31,E10,2023,9, +31,E10,2023,10, +31,E10,2023,11, +31,E10,2023,12, +31,E10,2024,1, +31,E10,2024,2, +31,E10,2024,3, +31,E10,2024,4, +31,E10,2024,5, +31,E10,2024,6, +31,E10,2024,7, +31,E10,2024,8, +31,E10,2024,9, +31,E10,2024,10, +31,E10,2024,11, +31,E10,2024,12, +31,SP98,2013,7,161.66 +31,SP98,2013,8,162.23 +31,SP98,2013,9,161.06 +31,SP98,2013,10,156.07 +31,SP98,2013,11,155.01 +31,SP98,2013,12,156.43 +31,SP98,2013,6,158.67 +31,SP98,2013,1, +31,SP98,2013,2, +31,SP98,2013,3, +31,SP98,2013,4, +31,SP98,2013,5, +31,SP98,2014,1,155.62 +31,SP98,2014,2,156.48 +31,SP98,2014,3,156.47 +31,SP98,2014,6,159.5 +31,SP98,2014,7,159.98 +31,SP98,2014,8,157.01 +31,SP98,2014,9,156.34 +31,SP98,2014,10,153.44 +31,SP98,2014,11,149.16 +31,SP98,2014,12,140.28 +31,SP98,2014,4,157.56 +31,SP98,2014,5,157.96 +31,SP98,2015,1,132.62 +31,SP98,2015,2,138.05 +31,SP98,2015,3,144.11 +31,SP98,2015,4,147.14 +31,SP98,2015,5,149.94 +31,SP98,2015,6,150.75 +31,SP98,2015,7,150.34 +31,SP98,2015,8,145.06 +31,SP98,2015,9,137.56 +31,SP98,2015,10,135.32 +31,SP98,2015,11,135.38 +31,SP98,2015,12,132.8 +31,SP98,2016,1, +31,SP98,2016,2, +31,SP98,2016,3, +31,SP98,2016,4, +31,SP98,2016,5, +31,SP98,2016,6, +31,SP98,2016,7, +31,SP98,2016,8, +31,SP98,2016,9, +31,SP98,2016,10, +31,SP98,2016,11, +31,SP98,2016,12, +31,SP98,2017,1, +31,SP98,2017,2, +31,SP98,2017,3, +31,SP98,2017,4, +31,SP98,2017,5, +31,SP98,2017,6, +31,SP98,2017,7, +31,SP98,2017,8, +31,SP98,2017,9, +31,SP98,2017,10, +31,SP98,2017,11, +31,SP98,2017,12, +31,SP98,2018,1, +31,SP98,2018,2, +31,SP98,2018,3, +31,SP98,2018,4, +31,SP98,2018,5, +31,SP98,2018,6, +31,SP98,2018,7, +31,SP98,2018,8, +31,SP98,2018,9, +31,SP98,2018,10, +31,SP98,2018,11, +31,SP98,2018,12, +31,SP98,2019,1, +31,SP98,2019,2, +31,SP98,2019,3, +31,SP98,2019,4, +31,SP98,2019,5, +31,SP98,2019,6, +31,SP98,2019,7, +31,SP98,2019,8, +31,SP98,2019,9, +31,SP98,2019,10, +31,SP98,2019,11, +31,SP98,2019,12, +31,SP98,2020,1, +31,SP98,2020,2, +31,SP98,2020,3, +31,SP98,2020,4, +31,SP98,2020,5, +31,SP98,2020,6, +31,SP98,2020,7, +31,SP98,2020,8, +31,SP98,2020,9, +31,SP98,2020,10, +31,SP98,2020,11, +31,SP98,2020,12, +31,SP98,2021,1, +31,SP98,2021,2, +31,SP98,2021,3, +31,SP98,2021,4, +31,SP98,2021,5, +31,SP98,2021,6, +31,SP98,2021,7, +31,SP98,2021,8, +31,SP98,2021,9, +31,SP98,2021,10, +31,SP98,2021,11, +31,SP98,2021,12, +31,SP98,2022,1, +31,SP98,2022,2, +31,SP98,2022,3, +31,SP98,2022,4, +31,SP98,2022,5, +31,SP98,2022,6, +31,SP98,2022,7, +31,SP98,2022,8, +31,SP98,2022,9, +31,SP98,2022,10, +31,SP98,2022,11, +31,SP98,2022,12, +31,SP98,2023,1, +31,SP98,2023,2, +31,SP98,2023,3, +31,SP98,2023,4, +31,SP98,2023,5, +31,SP98,2023,6, +31,SP98,2023,7, +31,SP98,2023,8, +31,SP98,2023,9, +31,SP98,2023,10, +31,SP98,2023,11, +31,SP98,2023,12, +31,SP98,2024,1, +31,SP98,2024,2, +31,SP98,2024,3, +31,SP98,2024,4, +31,SP98,2024,5, +31,SP98,2024,6, +31,SP98,2024,7, +31,SP98,2024,8, +31,SP98,2024,9, +31,SP98,2024,10, +31,SP98,2024,11, +31,SP98,2024,12, +41,Gazole,2007,1,102.38 +41,Gazole,2007,2,103.34 +41,Gazole,2007,3,105.08 +41,Gazole,2007,4,107.33 +41,Gazole,2007,5,107.59 +41,Gazole,2007,6,108.98 +41,Gazole,2007,7,109.96 +41,Gazole,2007,8,109.89 +41,Gazole,2007,9,111.64 +41,Gazole,2007,10,113.58 +41,Gazole,2007,11,121.64 +41,Gazole,2007,12,121.95 +41,Gazole,2008,1,120.82 +41,Gazole,2008,2,121.45 +41,Gazole,2008,3,127.56 +41,Gazole,2008,4,130.05 +41,Gazole,2008,5,140.04 +41,Gazole,2008,6,145.38 +41,Gazole,2008,7,144.66 +41,Gazole,2008,8,135.65 +41,Gazole,2008,9,132.36 +41,Gazole,2008,10,124.36 +41,Gazole,2008,11,113.94 +41,Gazole,2008,12,102.09 +41,Gazole,2009,1,99.58 +41,Gazole,2009,2,98.7 +41,Gazole,2009,3,96.24 +41,Gazole,2009,4,98.42 +41,Gazole,2009,5,98.36 +41,Gazole,2009,6,102.96 +41,Gazole,2009,7,101.67 +41,Gazole,2009,8,104.58 +41,Gazole,2009,9,103.06 +41,Gazole,2009,10,104.31 +41,Gazole,2009,11,106.34 +41,Gazole,2009,12,105.35 +41,Gazole,2010,1,109.52 +41,Gazole,2010,2,109.66 +41,Gazole,2010,3,113.54 +41,Gazole,2010,4,117.44 +41,Gazole,2010,5,118.55 +41,Gazole,2010,6,117.94 +41,Gazole,2010,7,115.88 +41,Gazole,2010,8,115.5 +41,Gazole,2010,9,116.14 +41,Gazole,2010,10,118.52 +41,Gazole,2010,11,119.84 +41,Gazole,2010,12,123.52 +41,Gazole,2011,11,141.36 +41,Gazole,2011,12,140.84 +41,Gazole,2011,1,129.81 +41,Gazole,2011,2,132.66 +41,Gazole,2011,3,138.52 +41,Gazole,2011,4,139.32 +41,Gazole,2011,5,135.62 +41,Gazole,2011,6,134.62 +41,Gazole,2011,7,135.22 +41,Gazole,2011,8,134.17 +41,Gazole,2011,9,135.97 +41,Gazole,2011,10,137.75 +41,Gazole,2012,1,143.27 +41,Gazole,2012,2,144.74 +41,Gazole,2012,3,147.28 +41,Gazole,2012,4,146.28 +41,Gazole,2012,5,142.84 +41,Gazole,2012,6,137.34 +41,Gazole,2012,7,140.01 +41,Gazole,2012,8,145.85 +41,Gazole,2012,9,142.36 +41,Gazole,2012,10,142.17 +41,Gazole,2012,11,140.56 +41,Gazole,2012,12,138.9 +41,Gazole,2013,1,140.26 +41,Gazole,2013,2,143.47 +41,Gazole,2013,3,142.25 +41,Gazole,2013,4,138.54 +41,Gazole,2013,5,136.06 +41,Gazole,2013,7,137.28 +41,Gazole,2013,8,137.65 +41,Gazole,2013,9,139.36 +41,Gazole,2013,10,135.98 +41,Gazole,2013,11,134.66 +41,Gazole,2013,12,136.06 +41,Gazole,2013,6,135.64 +41,Gazole,2014,1,135.03 +41,Gazole,2014,2,135.45 +41,Gazole,2014,3,133.89 +41,Gazole,2014,4,133.47 +41,Gazole,2014,5,133.35 +41,Gazole,2014,6,133.59 +41,Gazole,2014,7,133.09 +41,Gazole,2014,8,132.42 +41,Gazole,2014,9,132.04 +41,Gazole,2014,10,129.04 +41,Gazole,2014,11,126.41 +41,Gazole,2014,12,117.55 +41,Gazole,2015,1,113.95 +41,Gazole,2015,2,119.39 +41,Gazole,2015,3,123.27 +41,Gazole,2015,4,122.9 +41,Gazole,2015,5,125.44 +41,Gazole,2015,6,123.93 +41,Gazole,2015,7,120.62 +41,Gazole,2015,8,115.24 +41,Gazole,2015,9,113.43 +41,Gazole,2015,10,113.39 +41,Gazole,2015,11,113.34 +41,Gazole,2015,12,106.66 +41,Gazole,2016,1, +41,Gazole,2016,2, +41,Gazole,2016,3, +41,Gazole,2016,4, +41,Gazole,2016,5, +41,Gazole,2016,6, +41,Gazole,2016,7, +41,Gazole,2016,8, +41,Gazole,2016,9, +41,Gazole,2016,10, +41,Gazole,2016,11, +41,Gazole,2016,12, +41,Gazole,2017,1, +41,Gazole,2017,2, +41,Gazole,2017,3, +41,Gazole,2017,4, +41,Gazole,2017,5, +41,Gazole,2017,6, +41,Gazole,2017,7, +41,Gazole,2017,8, +41,Gazole,2017,9, +41,Gazole,2017,10, +41,Gazole,2017,11, +41,Gazole,2017,12, +41,Gazole,2018,1, +41,Gazole,2018,2, +41,Gazole,2018,3, +41,Gazole,2018,4, +41,Gazole,2018,5, +41,Gazole,2018,6, +41,Gazole,2018,7, +41,Gazole,2018,8, +41,Gazole,2018,9, +41,Gazole,2018,10, +41,Gazole,2018,11, +41,Gazole,2018,12, +41,Gazole,2019,1, +41,Gazole,2019,2, +41,Gazole,2019,3, +41,Gazole,2019,4, +41,Gazole,2019,5, +41,Gazole,2019,6, +41,Gazole,2019,7, +41,Gazole,2019,8, +41,Gazole,2019,9, +41,Gazole,2019,10, +41,Gazole,2019,11, +41,Gazole,2019,12, +41,Gazole,2020,1, +41,Gazole,2020,2, +41,Gazole,2020,3, +41,Gazole,2020,4, +41,Gazole,2020,5, +41,Gazole,2020,6, +41,Gazole,2020,7, +41,Gazole,2020,8, +41,Gazole,2020,9, +41,Gazole,2020,10, +41,Gazole,2020,11, +41,Gazole,2020,12, +41,Gazole,2021,1, +41,Gazole,2021,2, +41,Gazole,2021,3, +41,Gazole,2021,4, +41,Gazole,2021,5, +41,Gazole,2021,6, +41,Gazole,2021,7, +41,Gazole,2021,8, +41,Gazole,2021,9, +41,Gazole,2021,10, +41,Gazole,2021,11, +41,Gazole,2021,12, +41,Gazole,2022,1, +41,Gazole,2022,2, +41,Gazole,2022,3, +41,Gazole,2022,4, +41,Gazole,2022,5, +41,Gazole,2022,6, +41,Gazole,2022,7, +41,Gazole,2022,8, +41,Gazole,2022,9, +41,Gazole,2022,10, +41,Gazole,2022,11, +41,Gazole,2022,12, +41,Gazole,2023,1, +41,Gazole,2023,2, +41,Gazole,2023,3, +41,Gazole,2023,4, +41,Gazole,2023,5, +41,Gazole,2023,6, +41,Gazole,2023,7, +41,Gazole,2023,8, +41,Gazole,2023,9, +41,Gazole,2023,10, +41,Gazole,2023,11, +41,Gazole,2023,12, +41,Gazole,2024,1, +41,Gazole,2024,2, +41,Gazole,2024,3, +41,Gazole,2024,4, +41,Gazole,2024,5, +41,Gazole,2024,6, +41,Gazole,2024,7, +41,Gazole,2024,8, +41,Gazole,2024,9, +41,Gazole,2024,10, +41,Gazole,2024,11, +41,Gazole,2024,12, +41,SP95,2007,1,118.8 +41,SP95,2007,2,120.07 +41,SP95,2007,3,125.66 +41,SP95,2007,4,129.9 +41,SP95,2007,5,133.96 +41,SP95,2007,6,134.08 +41,SP95,2007,7,133.26 +41,SP95,2007,8,129.72 +41,SP95,2007,9,130.45 +41,SP95,2007,10,130.41 +41,SP95,2007,11,135.85 +41,SP95,2007,12,135.09 +41,SP95,2008,1,137.08 +41,SP95,2008,2,136.96 +41,SP95,2008,3,138.82 +41,SP95,2008,4,140.66 +41,SP95,2008,5,145.95 +41,SP95,2008,6,151.13 +41,SP95,2008,7,150.37 +41,SP95,2008,8,144.85 +41,SP95,2008,9,143.98 +41,SP95,2008,10,134.3 +41,SP95,2008,11,120.48 +41,SP95,2008,12,111.66 +41,SP95,2009,1,111.22 +41,SP95,2009,2,116.11 +41,SP95,2009,3,116.38 +41,SP95,2009,4,118.81 +41,SP95,2009,5,122.3 +41,SP95,2009,6,128.62 +41,SP95,2009,7,125.31 +41,SP95,2009,8,128.21 +41,SP95,2009,9,125.81 +41,SP95,2009,10,125.2 +41,SP95,2009,11,128.19 +41,SP95,2009,12,127.35 +41,SP95,2010,1,131.48 +41,SP95,2010,2,132.89 +41,SP95,2010,3,137.33 +41,SP95,2010,4,139.66 +41,SP95,2010,5,139.58 +41,SP95,2010,6,138.08 +41,SP95,2010,7,136.1 +41,SP95,2010,8,135.07 +41,SP95,2010,9,135.05 +41,SP95,2010,10,136.77 +41,SP95,2010,11,138.24 +41,SP95,2010,12,142.8 +41,SP95,2011,1,148.37 +41,SP95,2011,2,148.88 +41,SP95,2011,3,153.18 +41,SP95,2011,4,155.77 +41,SP95,2011,5,156.2 +41,SP95,2011,6,153.29 +41,SP95,2011,7,152.85 +41,SP95,2011,8,152.33 +41,SP95,2011,9,153.96 +41,SP95,2011,10,152.73 +41,SP95,2011,11,152.23 +41,SP95,2011,12,152.24 +41,SP95,2012,1,157.18 +41,SP95,2012,2,160.95 +41,SP95,2012,3,166.11 +41,SP95,2012,4,168.01 +41,SP95,2012,5,161.87 +41,SP95,2012,6,157.21 +41,SP95,2012,7,158.37 +41,SP95,2012,8,163.63 +41,SP95,2012,9,161.28 +41,SP95,2012,10,158.83 +41,SP95,2012,11,153.88 +41,SP95,2012,12,154.18 +41,SP95,2013,1,157.38 +41,SP95,2013,2,163.32 +41,SP95,2013,3,162.98 +41,SP95,2013,4,159.97 +41,SP95,2013,5,156.77 +41,SP95,2013,6,157.14 +41,SP95,2013,7,157.81 +41,SP95,2013,8,158.07 +41,SP95,2013,9,157.08 +41,SP95,2013,10,152.43 +41,SP95,2013,11,151.37 +41,SP95,2013,12,153.04 +41,SP95,2014,1,151.78 +41,SP95,2014,2,152.61 +41,SP95,2014,3,152.55 +41,SP95,2014,4,154.08 +41,SP95,2014,5,154.72 +41,SP95,2014,6,155.92 +41,SP95,2014,7,156.11 +41,SP95,2014,8,153.18 +41,SP95,2014,9,153.06 +41,SP95,2014,10,150.0 +41,SP95,2014,11,145.55 +41,SP95,2014,12,136.77 +41,SP95,2015,1,129.26 +41,SP95,2015,2,134.82 +41,SP95,2015,3,140.69 +41,SP95,2015,4,142.99 +41,SP95,2015,5,145.55 +41,SP95,2015,6,146.28 +41,SP95,2015,7,145.96 +41,SP95,2015,8,141.21 +41,SP95,2015,9,134.57 +41,SP95,2015,10,132.76 +41,SP95,2015,11,133.01 +41,SP95,2015,12,130.43 +41,SP95,2016,1, +41,SP95,2016,2, +41,SP95,2016,3, +41,SP95,2016,4, +41,SP95,2016,5, +41,SP95,2016,6, +41,SP95,2016,7, +41,SP95,2016,8, +41,SP95,2016,9, +41,SP95,2016,10, +41,SP95,2016,11, +41,SP95,2016,12, +41,SP95,2017,1, +41,SP95,2017,2, +41,SP95,2017,3, +41,SP95,2017,4, +41,SP95,2017,5, +41,SP95,2017,6, +41,SP95,2017,7, +41,SP95,2017,8, +41,SP95,2017,9, +41,SP95,2017,10, +41,SP95,2017,11, +41,SP95,2017,12, +41,SP95,2018,1, +41,SP95,2018,2, +41,SP95,2018,3, +41,SP95,2018,4, +41,SP95,2018,5, +41,SP95,2018,6, +41,SP95,2018,7, +41,SP95,2018,8, +41,SP95,2018,9, +41,SP95,2018,10, +41,SP95,2018,11, +41,SP95,2018,12, +41,SP95,2019,1, +41,SP95,2019,2, +41,SP95,2019,3, +41,SP95,2019,4, +41,SP95,2019,5, +41,SP95,2019,6, +41,SP95,2019,7, +41,SP95,2019,8, +41,SP95,2019,9, +41,SP95,2019,10, +41,SP95,2019,11, +41,SP95,2019,12, +41,SP95,2020,1, +41,SP95,2020,2, +41,SP95,2020,3, +41,SP95,2020,4, +41,SP95,2020,5, +41,SP95,2020,6, +41,SP95,2020,7, +41,SP95,2020,8, +41,SP95,2020,9, +41,SP95,2020,10, +41,SP95,2020,11, +41,SP95,2020,12, +41,SP95,2021,1, +41,SP95,2021,2, +41,SP95,2021,3, +41,SP95,2021,4, +41,SP95,2021,5, +41,SP95,2021,6, +41,SP95,2021,7, +41,SP95,2021,8, +41,SP95,2021,9, +41,SP95,2021,10, +41,SP95,2021,11, +41,SP95,2021,12, +41,SP95,2022,1, +41,SP95,2022,2, +41,SP95,2022,3, +41,SP95,2022,4, +41,SP95,2022,5, +41,SP95,2022,6, +41,SP95,2022,7, +41,SP95,2022,8, +41,SP95,2022,9, +41,SP95,2022,10, +41,SP95,2022,11, +41,SP95,2022,12, +41,SP95,2023,1, +41,SP95,2023,2, +41,SP95,2023,3, +41,SP95,2023,4, +41,SP95,2023,5, +41,SP95,2023,6, +41,SP95,2023,7, +41,SP95,2023,8, +41,SP95,2023,9, +41,SP95,2023,10, +41,SP95,2023,11, +41,SP95,2023,12, +41,SP95,2024,1, +41,SP95,2024,2, +41,SP95,2024,3, +41,SP95,2024,4, +41,SP95,2024,5, +41,SP95,2024,6, +41,SP95,2024,7, +41,SP95,2024,8, +41,SP95,2024,9, +41,SP95,2024,10, +41,SP95,2024,11, +41,SP95,2024,12, +41,GPLc,2007,12,70.26 +41,GPLc,2007,11,72.23 +41,GPLc,2007,1, +41,GPLc,2007,2, +41,GPLc,2007,3, +41,GPLc,2007,4, +41,GPLc,2007,5, +41,GPLc,2007,6, +41,GPLc,2007,7, +41,GPLc,2007,8, +41,GPLc,2007,9, +41,GPLc,2007,10, +41,GPLc,2008,1,71.48 +41,GPLc,2008,2,72.01 +41,GPLc,2008,4,71.41 +41,GPLc,2008,6,73.79 +41,GPLc,2008,7,74.27 +41,GPLc,2008,8,75.8 +41,GPLc,2008,11,74.13 +41,GPLc,2008,12,71.15 +41,GPLc,2008,3,71.84 +41,GPLc,2008,5,72.29 +41,GPLc,2008,9,75.93 +41,GPLc,2008,10,75.53 +41,GPLc,2009,3,66.27 +41,GPLc,2009,4,64.58 +41,GPLc,2009,5,63.6 +41,GPLc,2009,6,63.55 +41,GPLc,2009,7,63.35 +41,GPLc,2009,9,64.54 +41,GPLc,2009,10,64.3 +41,GPLc,2009,12,65.96 +41,GPLc,2009,1,68.89 +41,GPLc,2009,2,68.08 +41,GPLc,2009,8,63.56 +41,GPLc,2009,11,65.08 +41,GPLc,2010,1,67.03 +41,GPLc,2010,3,65.67 +41,GPLc,2010,5,66.69 +41,GPLc,2010,6,67.32 +41,GPLc,2010,7,68.87 +41,GPLc,2010,11,72.13 +41,GPLc,2010,12,75.81 +41,GPLc,2010,4,65.56 +41,GPLc,2010,2,66.5 +41,GPLc,2010,8,69.37 +41,GPLc,2010,9,69.86 +41,GPLc,2010,10,71.37 +41,GPLc,2011,7,80.04 +41,GPLc,2011,9,80.5 +41,GPLc,2011,11,80.41 +41,GPLc,2011,12,80.56 +41,GPLc,2011,1,78.21 +41,GPLc,2011,2,78.4 +41,GPLc,2011,3,78.73 +41,GPLc,2011,4,79.1 +41,GPLc,2011,5,79.54 +41,GPLc,2011,6,80.34 +41,GPLc,2011,8,80.35 +41,GPLc,2011,10,80.42 +41,GPLc,2012,11,86.24 +41,GPLc,2012,4,86.41 +41,GPLc,2012,7,85.13 +41,GPLc,2012,1,83.32 +41,GPLc,2012,2,84.74 +41,GPLc,2012,3,85.95 +41,GPLc,2012,12,86.48 +41,GPLc,2012,5,86.49 +41,GPLc,2012,6,86.13 +41,GPLc,2012,8,85.06 +41,GPLc,2012,9,84.1 +41,GPLc,2012,10,85.78 +41,GPLc,2013,1,87.9 +41,GPLc,2013,4,87.04 +41,GPLc,2013,5,85.81 +41,GPLc,2013,11,82.86 +41,GPLc,2013,12,82.85 +41,GPLc,2013,2,87.26 +41,GPLc,2013,6,84.1 +41,GPLc,2013,3,87.79 +41,GPLc,2013,8,83.18 +41,GPLc,2013,10,82.86 +41,GPLc,2013,7,83.12 +41,GPLc,2013,9,83.41 +41,GPLc,2014,1,84.22 +41,GPLc,2014,2,84.81 +41,GPLc,2014,3,84.06 +41,GPLc,2014,4,83.88 +41,GPLc,2014,5,83.88 +41,GPLc,2014,6,83.57 +41,GPLc,2014,7,82.44 +41,GPLc,2014,8,82.24 +41,GPLc,2014,9,82.34 +41,GPLc,2014,10,82.24 +41,GPLc,2014,11,81.79 +41,GPLc,2014,12,80.91 +41,GPLc,2015,1,80.49 +41,GPLc,2015,2,78.98 +41,GPLc,2015,3,79.07 +41,GPLc,2015,4,78.94 +41,GPLc,2015,5,79.1 +41,GPLc,2015,6,78.61 +41,GPLc,2015,7,77.25 +41,GPLc,2015,8,76.94 +41,GPLc,2015,9,75.61 +41,GPLc,2015,10,74.24 +41,GPLc,2015,11,74.04 +41,GPLc,2015,12,73.54 +41,GPLc,2016,1, +41,GPLc,2016,2, +41,GPLc,2016,3, +41,GPLc,2016,4, +41,GPLc,2016,5, +41,GPLc,2016,6, +41,GPLc,2016,7, +41,GPLc,2016,8, +41,GPLc,2016,9, +41,GPLc,2016,10, +41,GPLc,2016,11, +41,GPLc,2016,12, +41,GPLc,2017,1, +41,GPLc,2017,2, +41,GPLc,2017,3, +41,GPLc,2017,4, +41,GPLc,2017,5, +41,GPLc,2017,6, +41,GPLc,2017,7, +41,GPLc,2017,8, +41,GPLc,2017,9, +41,GPLc,2017,10, +41,GPLc,2017,11, +41,GPLc,2017,12, +41,GPLc,2018,1, +41,GPLc,2018,2, +41,GPLc,2018,3, +41,GPLc,2018,4, +41,GPLc,2018,5, +41,GPLc,2018,6, +41,GPLc,2018,7, +41,GPLc,2018,8, +41,GPLc,2018,9, +41,GPLc,2018,10, +41,GPLc,2018,11, +41,GPLc,2018,12, +41,GPLc,2019,1, +41,GPLc,2019,2, +41,GPLc,2019,3, +41,GPLc,2019,4, +41,GPLc,2019,5, +41,GPLc,2019,6, +41,GPLc,2019,7, +41,GPLc,2019,8, +41,GPLc,2019,9, +41,GPLc,2019,10, +41,GPLc,2019,11, +41,GPLc,2019,12, +41,GPLc,2020,1, +41,GPLc,2020,2, +41,GPLc,2020,3, +41,GPLc,2020,4, +41,GPLc,2020,5, +41,GPLc,2020,6, +41,GPLc,2020,7, +41,GPLc,2020,8, +41,GPLc,2020,9, +41,GPLc,2020,10, +41,GPLc,2020,11, +41,GPLc,2020,12, +41,GPLc,2021,1, +41,GPLc,2021,2, +41,GPLc,2021,3, +41,GPLc,2021,4, +41,GPLc,2021,5, +41,GPLc,2021,6, +41,GPLc,2021,7, +41,GPLc,2021,8, +41,GPLc,2021,9, +41,GPLc,2021,10, +41,GPLc,2021,11, +41,GPLc,2021,12, +41,GPLc,2022,1, +41,GPLc,2022,2, +41,GPLc,2022,3, +41,GPLc,2022,4, +41,GPLc,2022,5, +41,GPLc,2022,6, +41,GPLc,2022,7, +41,GPLc,2022,8, +41,GPLc,2022,9, +41,GPLc,2022,10, +41,GPLc,2022,11, +41,GPLc,2022,12, +41,GPLc,2023,1, +41,GPLc,2023,2, +41,GPLc,2023,3, +41,GPLc,2023,4, +41,GPLc,2023,5, +41,GPLc,2023,6, +41,GPLc,2023,7, +41,GPLc,2023,8, +41,GPLc,2023,9, +41,GPLc,2023,10, +41,GPLc,2023,11, +41,GPLc,2023,12, +41,GPLc,2024,1, +41,GPLc,2024,2, +41,GPLc,2024,3, +41,GPLc,2024,4, +41,GPLc,2024,5, +41,GPLc,2024,6, +41,GPLc,2024,7, +41,GPLc,2024,8, +41,GPLc,2024,9, +41,GPLc,2024,10, +41,GPLc,2024,11, +41,GPLc,2024,12, +41,E85,2007,6,84.0 +41,E85,2007,10,85.04 +41,E85,2007,11,84.26 +41,E85,2007,12,85.66 +41,E85,2007,8,83.1 +41,E85,2007,9,86.0 +41,E85,2007,1, +41,E85,2007,2, +41,E85,2007,3, +41,E85,2007,4, +41,E85,2007,5, +41,E85,2007,7,83.0 +41,E85,2008,12,91.85 +41,E85,2008,1,87.81 +41,E85,2008,7,88.96 +41,E85,2008,8,89.67 +41,E85,2008,2,88.02 +41,E85,2008,3,87.93 +41,E85,2008,4,88.62 +41,E85,2008,5,88.7 +41,E85,2008,6,88.78 +41,E85,2008,9,90.38 +41,E85,2008,10,89.77 +41,E85,2008,11,89.16 +41,E85,2009,10,98.38 +41,E85,2009,3,87.88 +41,E85,2009,6,78.68 +41,E85,2009,9,92.5 +41,E85,2009,11,101.13 +41,E85,2009,1,79.01 +41,E85,2009,5,78.19 +41,E85,2009,7,80.52 +41,E85,2009,8,87.36 +41,E85,2009,12,101.39 +41,E85,2009,2,79.32 +41,E85,2009,4,83.44 +41,E85,2010,7,106.36 +41,E85,2010,1,81.45 +41,E85,2010,5,100.32 +41,E85,2010,6,103.3 +41,E85,2010,4,97.62 +41,E85,2010,2,89.61 +41,E85,2010,3,97.26 +41,E85,2010,8,106.72 +41,E85,2010,9,106.74 +41,E85,2010,10,107.86 +41,E85,2010,11,108.57 +41,E85,2010,12,108.84 +41,E85,2011,12,94.97 +41,E85,2011,1,87.57 +41,E85,2011,3,95.09 +41,E85,2011,4,96.1 +41,E85,2011,5,96.49 +41,E85,2011,6,96.12 +41,E85,2011,7,95.78 +41,E85,2011,2,93.61 +41,E85,2011,8,95.57 +41,E85,2011,9,95.01 +41,E85,2011,10,94.99 +41,E85,2011,11,94.91 +41,E85,2012,11,91.86 +41,E85,2012,1,91.93 +41,E85,2012,2,93.98 +41,E85,2012,3,91.83 +41,E85,2012,4,91.21 +41,E85,2012,5,90.67 +41,E85,2012,6,89.43 +41,E85,2012,7,89.22 +41,E85,2012,8,89.8 +41,E85,2012,9,88.99 +41,E85,2012,10,90.06 +41,E85,2012,12,92.0 +41,E85,2013,1,92.98 +41,E85,2013,2,93.96 +41,E85,2013,3,94.54 +41,E85,2013,4,93.18 +41,E85,2013,5,92.72 +41,E85,2013,6,93.07 +41,E85,2013,7,92.42 +41,E85,2013,9,92.23 +41,E85,2013,10,91.18 +41,E85,2013,12,88.87 +41,E85,2013,8,92.66 +41,E85,2013,11,90.35 +41,E85,2014,12,95.41 +41,E85,2014,4,90.3 +41,E85,2014,5,89.19 +41,E85,2014,6,88.56 +41,E85,2014,7,89.42 +41,E85,2014,8,90.53 +41,E85,2014,11,94.87 +41,E85,2014,1,86.3 +41,E85,2014,2,85.79 +41,E85,2014,9,89.86 +41,E85,2014,10,90.58 +41,E85,2014,3,89.54 +41,E85,2015,11,94.55 +41,E85,2015,3,88.37 +41,E85,2015,5,86.27 +41,E85,2015,6,85.97 +41,E85,2015,8,90.58 +41,E85,2015,9,93.27 +41,E85,2015,10,93.71 +41,E85,2015,4,86.6 +41,E85,2015,7,85.98 +41,E85,2015,12,95.19 +41,E85,2015,2,92.19 +41,E85,2015,1,87.63 +41,E85,2016,1, +41,E85,2016,2, +41,E85,2016,3, +41,E85,2016,4, +41,E85,2016,5, +41,E85,2016,6, +41,E85,2016,7, +41,E85,2016,8, +41,E85,2016,9, +41,E85,2016,10, +41,E85,2016,11, +41,E85,2016,12, +41,E85,2017,1, +41,E85,2017,2, +41,E85,2017,3, +41,E85,2017,4, +41,E85,2017,5, +41,E85,2017,6, +41,E85,2017,7, +41,E85,2017,8, +41,E85,2017,9, +41,E85,2017,10, +41,E85,2017,11, +41,E85,2017,12, +41,E85,2018,1, +41,E85,2018,2, +41,E85,2018,3, +41,E85,2018,4, +41,E85,2018,5, +41,E85,2018,6, +41,E85,2018,7, +41,E85,2018,8, +41,E85,2018,9, +41,E85,2018,10, +41,E85,2018,11, +41,E85,2018,12, +41,E85,2019,1, +41,E85,2019,2, +41,E85,2019,3, +41,E85,2019,4, +41,E85,2019,5, +41,E85,2019,6, +41,E85,2019,7, +41,E85,2019,8, +41,E85,2019,9, +41,E85,2019,10, +41,E85,2019,11, +41,E85,2019,12, +41,E85,2020,1, +41,E85,2020,2, +41,E85,2020,3, +41,E85,2020,4, +41,E85,2020,5, +41,E85,2020,6, +41,E85,2020,7, +41,E85,2020,8, +41,E85,2020,9, +41,E85,2020,10, +41,E85,2020,11, +41,E85,2020,12, +41,E85,2021,1, +41,E85,2021,2, +41,E85,2021,3, +41,E85,2021,4, +41,E85,2021,5, +41,E85,2021,6, +41,E85,2021,7, +41,E85,2021,8, +41,E85,2021,9, +41,E85,2021,10, +41,E85,2021,11, +41,E85,2021,12, +41,E85,2022,1, +41,E85,2022,2, +41,E85,2022,3, +41,E85,2022,4, +41,E85,2022,5, +41,E85,2022,6, +41,E85,2022,7, +41,E85,2022,8, +41,E85,2022,9, +41,E85,2022,10, +41,E85,2022,11, +41,E85,2022,12, +41,E85,2023,1, +41,E85,2023,2, +41,E85,2023,3, +41,E85,2023,4, +41,E85,2023,5, +41,E85,2023,6, +41,E85,2023,7, +41,E85,2023,8, +41,E85,2023,9, +41,E85,2023,10, +41,E85,2023,11, +41,E85,2023,12, +41,E85,2024,1, +41,E85,2024,2, +41,E85,2024,3, +41,E85,2024,4, +41,E85,2024,5, +41,E85,2024,6, +41,E85,2024,7, +41,E85,2024,8, +41,E85,2024,9, +41,E85,2024,10, +41,E85,2024,11, +41,E85,2024,12, +41,E10,2009,4,120.3 +41,E10,2009,5,122.91 +41,E10,2009,6,125.88 +41,E10,2009,8,124.7 +41,E10,2009,9,124.25 +41,E10,2009,10,123.81 +41,E10,2009,11,124.97 +41,E10,2009,12,124.61 +41,E10,2009,7,124.3 +41,E10,2009,1, +41,E10,2009,2, +41,E10,2009,3, +41,E10,2010,1,126.13 +41,E10,2010,2,129.37 +41,E10,2010,3,132.83 +41,E10,2010,4,136.44 +41,E10,2010,5,137.64 +41,E10,2010,6,136.7 +41,E10,2010,7,135.29 +41,E10,2010,8,133.97 +41,E10,2010,9,134.2 +41,E10,2010,10,135.31 +41,E10,2010,11,137.08 +41,E10,2010,12,139.18 +41,E10,2011,11,150.44 +41,E10,2011,12,150.51 +41,E10,2011,6,149.99 +41,E10,2011,7,151.78 +41,E10,2011,8,151.34 +41,E10,2011,9,152.92 +41,E10,2011,10,151.22 +41,E10,2011,3,150.5 +41,E10,2011,4,153.02 +41,E10,2011,5,153.51 +41,E10,2011,1,145.89 +41,E10,2011,2,147.06 +41,E10,2012,1,155.68 +41,E10,2012,2,158.77 +41,E10,2012,3,164.34 +41,E10,2012,4,166.42 +41,E10,2012,5,159.45 +41,E10,2012,6,154.66 +41,E10,2012,7,156.16 +41,E10,2012,8,160.84 +41,E10,2012,9,158.17 +41,E10,2012,10,155.04 +41,E10,2012,11,149.22 +41,E10,2012,12,149.8 +41,E10,2013,1,154.16 +41,E10,2013,2,160.34 +41,E10,2013,3,159.79 +41,E10,2013,4,157.03 +41,E10,2013,5,154.0 +41,E10,2013,6,154.44 +41,E10,2013,7,155.63 +41,E10,2013,8,156.05 +41,E10,2013,9,155.0 +41,E10,2013,10,150.14 +41,E10,2013,11,148.92 +41,E10,2013,12,150.19 +41,E10,2014,1,149.56 +41,E10,2014,2,151.0 +41,E10,2014,3,150.85 +41,E10,2014,4,151.9 +41,E10,2014,5,152.2 +41,E10,2014,6,153.59 +41,E10,2014,7,153.87 +41,E10,2014,8,150.95 +41,E10,2014,9,150.75 +41,E10,2014,10,148.0 +41,E10,2014,11,143.52 +41,E10,2014,12,134.72 +41,E10,2015,1,127.69 +41,E10,2015,2,132.9 +41,E10,2015,3,138.59 +41,E10,2015,4,141.02 +41,E10,2015,5,143.53 +41,E10,2015,6,144.16 +41,E10,2015,7,143.85 +41,E10,2015,8,139.01 +41,E10,2015,9,132.28 +41,E10,2015,10,130.51 +41,E10,2015,11,130.74 +41,E10,2015,12,128.09 +41,E10,2016,1, +41,E10,2016,2, +41,E10,2016,3, +41,E10,2016,4, +41,E10,2016,5, +41,E10,2016,6, +41,E10,2016,7, +41,E10,2016,8, +41,E10,2016,9, +41,E10,2016,10, +41,E10,2016,11, +41,E10,2016,12, +41,E10,2017,1, +41,E10,2017,2, +41,E10,2017,3, +41,E10,2017,4, +41,E10,2017,5, +41,E10,2017,6, +41,E10,2017,7, +41,E10,2017,8, +41,E10,2017,9, +41,E10,2017,10, +41,E10,2017,11, +41,E10,2017,12, +41,E10,2018,1, +41,E10,2018,2, +41,E10,2018,3, +41,E10,2018,4, +41,E10,2018,5, +41,E10,2018,6, +41,E10,2018,7, +41,E10,2018,8, +41,E10,2018,9, +41,E10,2018,10, +41,E10,2018,11, +41,E10,2018,12, +41,E10,2019,1, +41,E10,2019,2, +41,E10,2019,3, +41,E10,2019,4, +41,E10,2019,5, +41,E10,2019,6, +41,E10,2019,7, +41,E10,2019,8, +41,E10,2019,9, +41,E10,2019,10, +41,E10,2019,11, +41,E10,2019,12, +41,E10,2020,1, +41,E10,2020,2, +41,E10,2020,3, +41,E10,2020,4, +41,E10,2020,5, +41,E10,2020,6, +41,E10,2020,7, +41,E10,2020,8, +41,E10,2020,9, +41,E10,2020,10, +41,E10,2020,11, +41,E10,2020,12, +41,E10,2021,1, +41,E10,2021,2, +41,E10,2021,3, +41,E10,2021,4, +41,E10,2021,5, +41,E10,2021,6, +41,E10,2021,7, +41,E10,2021,8, +41,E10,2021,9, +41,E10,2021,10, +41,E10,2021,11, +41,E10,2021,12, +41,E10,2022,1, +41,E10,2022,2, +41,E10,2022,3, +41,E10,2022,4, +41,E10,2022,5, +41,E10,2022,6, +41,E10,2022,7, +41,E10,2022,8, +41,E10,2022,9, +41,E10,2022,10, +41,E10,2022,11, +41,E10,2022,12, +41,E10,2023,1, +41,E10,2023,2, +41,E10,2023,3, +41,E10,2023,4, +41,E10,2023,5, +41,E10,2023,6, +41,E10,2023,7, +41,E10,2023,8, +41,E10,2023,9, +41,E10,2023,10, +41,E10,2023,11, +41,E10,2023,12, +41,E10,2024,1, +41,E10,2024,2, +41,E10,2024,3, +41,E10,2024,4, +41,E10,2024,5, +41,E10,2024,6, +41,E10,2024,7, +41,E10,2024,8, +41,E10,2024,9, +41,E10,2024,10, +41,E10,2024,11, +41,E10,2024,12, +41,SP98,2013,6,159.61 +41,SP98,2013,7,161.69 +41,SP98,2013,8,162.08 +41,SP98,2013,9,161.4 +41,SP98,2013,10,156.86 +41,SP98,2013,11,155.48 +41,SP98,2013,12,156.8 +41,SP98,2013,1, +41,SP98,2013,2, +41,SP98,2013,3, +41,SP98,2013,4, +41,SP98,2013,5, +41,SP98,2014,1,156.39 +41,SP98,2014,2,157.13 +41,SP98,2014,3,157.14 +41,SP98,2014,4,158.2 +41,SP98,2014,5,158.79 +41,SP98,2014,6,159.93 +41,SP98,2014,7,160.48 +41,SP98,2014,8,157.65 +41,SP98,2014,9,157.25 +41,SP98,2014,10,154.81 +41,SP98,2014,11,150.31 +41,SP98,2014,12,141.72 +41,SP98,2015,1,134.39 +41,SP98,2015,2,138.53 +41,SP98,2015,3,144.66 +41,SP98,2015,4,147.19 +41,SP98,2015,5,150.12 +41,SP98,2015,6,150.97 +41,SP98,2015,7,150.79 +41,SP98,2015,8,145.98 +41,SP98,2015,9,138.78 +41,SP98,2015,10,136.9 +41,SP98,2015,11,136.99 +41,SP98,2015,12,134.51 +41,SP98,2016,1, +41,SP98,2016,2, +41,SP98,2016,3, +41,SP98,2016,4, +41,SP98,2016,5, +41,SP98,2016,6, +41,SP98,2016,7, +41,SP98,2016,8, +41,SP98,2016,9, +41,SP98,2016,10, +41,SP98,2016,11, +41,SP98,2016,12, +41,SP98,2017,1, +41,SP98,2017,2, +41,SP98,2017,3, +41,SP98,2017,4, +41,SP98,2017,5, +41,SP98,2017,6, +41,SP98,2017,7, +41,SP98,2017,8, +41,SP98,2017,9, +41,SP98,2017,10, +41,SP98,2017,11, +41,SP98,2017,12, +41,SP98,2018,1, +41,SP98,2018,2, +41,SP98,2018,3, +41,SP98,2018,4, +41,SP98,2018,5, +41,SP98,2018,6, +41,SP98,2018,7, +41,SP98,2018,8, +41,SP98,2018,9, +41,SP98,2018,10, +41,SP98,2018,11, +41,SP98,2018,12, +41,SP98,2019,1, +41,SP98,2019,2, +41,SP98,2019,3, +41,SP98,2019,4, +41,SP98,2019,5, +41,SP98,2019,6, +41,SP98,2019,7, +41,SP98,2019,8, +41,SP98,2019,9, +41,SP98,2019,10, +41,SP98,2019,11, +41,SP98,2019,12, +41,SP98,2020,1, +41,SP98,2020,2, +41,SP98,2020,3, +41,SP98,2020,4, +41,SP98,2020,5, +41,SP98,2020,6, +41,SP98,2020,7, +41,SP98,2020,8, +41,SP98,2020,9, +41,SP98,2020,10, +41,SP98,2020,11, +41,SP98,2020,12, +41,SP98,2021,1, +41,SP98,2021,2, +41,SP98,2021,3, +41,SP98,2021,4, +41,SP98,2021,5, +41,SP98,2021,6, +41,SP98,2021,7, +41,SP98,2021,8, +41,SP98,2021,9, +41,SP98,2021,10, +41,SP98,2021,11, +41,SP98,2021,12, +41,SP98,2022,1, +41,SP98,2022,2, +41,SP98,2022,3, +41,SP98,2022,4, +41,SP98,2022,5, +41,SP98,2022,6, +41,SP98,2022,7, +41,SP98,2022,8, +41,SP98,2022,9, +41,SP98,2022,10, +41,SP98,2022,11, +41,SP98,2022,12, +41,SP98,2023,1, +41,SP98,2023,2, +41,SP98,2023,3, +41,SP98,2023,4, +41,SP98,2023,5, +41,SP98,2023,6, +41,SP98,2023,7, +41,SP98,2023,8, +41,SP98,2023,9, +41,SP98,2023,10, +41,SP98,2023,11, +41,SP98,2023,12, +41,SP98,2024,1, +41,SP98,2024,2, +41,SP98,2024,3, +41,SP98,2024,4, +41,SP98,2024,5, +41,SP98,2024,6, +41,SP98,2024,7, +41,SP98,2024,8, +41,SP98,2024,9, +41,SP98,2024,10, +41,SP98,2024,11, +41,SP98,2024,12, +42,Gazole,2007,1,102.79 +42,Gazole,2007,2,103.94 +42,Gazole,2007,3,105.04 +42,Gazole,2007,4,107.09 +42,Gazole,2007,5,107.24 +42,Gazole,2007,6,108.72 +42,Gazole,2007,7,109.88 +42,Gazole,2007,8,109.24 +42,Gazole,2007,9,111.31 +42,Gazole,2007,10,113.69 +42,Gazole,2007,11,122.62 +42,Gazole,2007,12,122.24 +42,Gazole,2008,1,121.12 +42,Gazole,2008,2,121.94 +42,Gazole,2008,3,128.61 +42,Gazole,2008,4,130.58 +42,Gazole,2008,5,140.74 +42,Gazole,2008,6,145.12 +42,Gazole,2008,7,143.96 +42,Gazole,2008,8,135.11 +42,Gazole,2008,9,132.51 +42,Gazole,2008,10,125.13 +42,Gazole,2008,11,115.24 +42,Gazole,2008,12,102.32 +42,Gazole,2009,1,100.69 +42,Gazole,2009,2,99.65 +42,Gazole,2009,3,96.12 +42,Gazole,2009,4,97.84 +42,Gazole,2009,5,97.73 +42,Gazole,2009,6,102.38 +42,Gazole,2009,7,100.85 +42,Gazole,2009,8,103.76 +42,Gazole,2009,9,102.71 +42,Gazole,2009,10,105.23 +42,Gazole,2009,11,106.68 +42,Gazole,2009,12,105.04 +42,Gazole,2010,1,109.07 +42,Gazole,2010,2,109.0 +42,Gazole,2010,3,112.8 +42,Gazole,2010,4,116.69 +42,Gazole,2010,5,118.0 +42,Gazole,2010,6,117.45 +42,Gazole,2010,7,114.92 +42,Gazole,2010,8,114.54 +42,Gazole,2010,9,115.44 +42,Gazole,2010,10,118.32 +42,Gazole,2010,11,119.78 +42,Gazole,2010,12,123.43 +42,Gazole,2011,1,129.61 +42,Gazole,2011,2,132.39 +42,Gazole,2011,3,138.6 +42,Gazole,2011,4,139.3 +42,Gazole,2011,5,135.8 +42,Gazole,2011,6,134.75 +42,Gazole,2011,7,135.05 +42,Gazole,2011,8,133.5 +42,Gazole,2011,9,135.94 +42,Gazole,2011,10,138.03 +42,Gazole,2011,11,142.22 +42,Gazole,2011,12,141.22 +42,Gazole,2012,1,142.75 +42,Gazole,2012,2,144.73 +42,Gazole,2012,3,146.93 +42,Gazole,2012,4,145.55 +42,Gazole,2012,5,142.02 +42,Gazole,2012,6,136.59 +42,Gazole,2012,7,139.75 +42,Gazole,2012,8,145.55 +42,Gazole,2012,9,141.42 +42,Gazole,2012,10,142.07 +42,Gazole,2012,11,140.61 +42,Gazole,2012,12,138.61 +42,Gazole,2013,1,140.15 +42,Gazole,2013,2,143.09 +42,Gazole,2013,3,140.91 +42,Gazole,2013,4,137.25 +42,Gazole,2013,5,135.0 +42,Gazole,2013,6,134.61 +42,Gazole,2013,7,136.46 +42,Gazole,2013,8,136.81 +42,Gazole,2013,9,138.72 +42,Gazole,2013,10,135.43 +42,Gazole,2013,11,134.33 +42,Gazole,2013,12,135.52 +42,Gazole,2014,1,134.08 +42,Gazole,2014,2,134.59 +42,Gazole,2014,3,132.65 +42,Gazole,2014,4,132.69 +42,Gazole,2014,5,132.57 +42,Gazole,2014,6,132.82 +42,Gazole,2014,7,131.97 +42,Gazole,2014,8,131.26 +42,Gazole,2014,9,130.94 +42,Gazole,2014,10,127.77 +42,Gazole,2014,11,125.35 +42,Gazole,2014,12,115.91 +42,Gazole,2015,1,113.11 +42,Gazole,2015,2,119.15 +42,Gazole,2015,3,122.36 +42,Gazole,2015,4,121.93 +42,Gazole,2015,5,124.36 +42,Gazole,2015,6,122.39 +42,Gazole,2015,7,118.84 +42,Gazole,2015,8,114.27 +42,Gazole,2015,9,113.52 +42,Gazole,2015,10,113.71 +42,Gazole,2015,11,115.04 +42,Gazole,2015,12,106.24 +42,Gazole,2016,1, +42,Gazole,2016,2, +42,Gazole,2016,3, +42,Gazole,2016,4, +42,Gazole,2016,5, +42,Gazole,2016,6, +42,Gazole,2016,7, +42,Gazole,2016,8, +42,Gazole,2016,9, +42,Gazole,2016,10, +42,Gazole,2016,11, +42,Gazole,2016,12, +42,Gazole,2017,1, +42,Gazole,2017,2, +42,Gazole,2017,3, +42,Gazole,2017,4, +42,Gazole,2017,5, +42,Gazole,2017,6, +42,Gazole,2017,7, +42,Gazole,2017,8, +42,Gazole,2017,9, +42,Gazole,2017,10, +42,Gazole,2017,11, +42,Gazole,2017,12, +42,Gazole,2018,1, +42,Gazole,2018,2, +42,Gazole,2018,3, +42,Gazole,2018,4, +42,Gazole,2018,5, +42,Gazole,2018,6, +42,Gazole,2018,7, +42,Gazole,2018,8, +42,Gazole,2018,9, +42,Gazole,2018,10, +42,Gazole,2018,11, +42,Gazole,2018,12, +42,Gazole,2019,1, +42,Gazole,2019,2, +42,Gazole,2019,3, +42,Gazole,2019,4, +42,Gazole,2019,5, +42,Gazole,2019,6, +42,Gazole,2019,7, +42,Gazole,2019,8, +42,Gazole,2019,9, +42,Gazole,2019,10, +42,Gazole,2019,11, +42,Gazole,2019,12, +42,Gazole,2020,1, +42,Gazole,2020,2, +42,Gazole,2020,3, +42,Gazole,2020,4, +42,Gazole,2020,5, +42,Gazole,2020,6, +42,Gazole,2020,7, +42,Gazole,2020,8, +42,Gazole,2020,9, +42,Gazole,2020,10, +42,Gazole,2020,11, +42,Gazole,2020,12, +42,Gazole,2021,1, +42,Gazole,2021,2, +42,Gazole,2021,3, +42,Gazole,2021,4, +42,Gazole,2021,5, +42,Gazole,2021,6, +42,Gazole,2021,7, +42,Gazole,2021,8, +42,Gazole,2021,9, +42,Gazole,2021,10, +42,Gazole,2021,11, +42,Gazole,2021,12, +42,Gazole,2022,1, +42,Gazole,2022,2, +42,Gazole,2022,3, +42,Gazole,2022,4, +42,Gazole,2022,5, +42,Gazole,2022,6, +42,Gazole,2022,7, +42,Gazole,2022,8, +42,Gazole,2022,9, +42,Gazole,2022,10, +42,Gazole,2022,11, +42,Gazole,2022,12, +42,Gazole,2023,1, +42,Gazole,2023,2, +42,Gazole,2023,3, +42,Gazole,2023,4, +42,Gazole,2023,5, +42,Gazole,2023,6, +42,Gazole,2023,7, +42,Gazole,2023,8, +42,Gazole,2023,9, +42,Gazole,2023,10, +42,Gazole,2023,11, +42,Gazole,2023,12, +42,Gazole,2024,1, +42,Gazole,2024,2, +42,Gazole,2024,3, +42,Gazole,2024,4, +42,Gazole,2024,5, +42,Gazole,2024,6, +42,Gazole,2024,7, +42,Gazole,2024,8, +42,Gazole,2024,9, +42,Gazole,2024,10, +42,Gazole,2024,11, +42,Gazole,2024,12, +42,SP95,2007,1,117.96 +42,SP95,2007,2,119.63 +42,SP95,2007,3,124.77 +42,SP95,2007,4,128.55 +42,SP95,2007,5,132.84 +42,SP95,2007,6,132.98 +42,SP95,2007,7,131.84 +42,SP95,2007,8,127.83 +42,SP95,2007,9,129.15 +42,SP95,2007,10,129.47 +42,SP95,2007,11,134.99 +42,SP95,2007,12,134.48 +42,SP95,2008,1,136.56 +42,SP95,2008,2,136.46 +42,SP95,2008,3,138.33 +42,SP95,2008,4,140.55 +42,SP95,2008,5,145.59 +42,SP95,2008,6,150.41 +42,SP95,2008,7,149.24 +42,SP95,2008,8,144.08 +42,SP95,2008,9,144.15 +42,SP95,2008,10,133.72 +42,SP95,2008,11,119.83 +42,SP95,2008,12,111.28 +42,SP95,2009,1,112.52 +42,SP95,2009,2,116.64 +42,SP95,2009,3,116.12 +42,SP95,2009,4,118.47 +42,SP95,2009,5,122.22 +42,SP95,2009,6,128.43 +42,SP95,2009,7,124.36 +42,SP95,2009,8,127.85 +42,SP95,2009,9,125.67 +42,SP95,2009,10,126.05 +42,SP95,2009,11,128.76 +42,SP95,2009,12,127.55 +42,SP95,2010,1,131.79 +42,SP95,2010,2,132.97 +42,SP95,2010,3,137.42 +42,SP95,2010,4,139.07 +42,SP95,2010,5,138.75 +42,SP95,2010,6,137.72 +42,SP95,2010,7,135.72 +42,SP95,2010,8,134.93 +42,SP95,2010,9,135.09 +42,SP95,2010,10,137.1 +42,SP95,2010,11,138.36 +42,SP95,2010,12,142.82 +42,SP95,2011,1,148.07 +42,SP95,2011,2,147.98 +42,SP95,2011,3,152.45 +42,SP95,2011,4,155.98 +42,SP95,2011,5,156.32 +42,SP95,2011,6,152.67 +42,SP95,2011,7,152.45 +42,SP95,2011,8,151.42 +42,SP95,2011,9,154.17 +42,SP95,2011,10,152.59 +42,SP95,2011,11,152.23 +42,SP95,2011,12,152.55 +42,SP95,2012,1,155.66 +42,SP95,2012,2,159.75 +42,SP95,2012,3,164.95 +42,SP95,2012,4,167.0 +42,SP95,2012,5,159.93 +42,SP95,2012,6,155.19 +42,SP95,2012,7,157.5 +42,SP95,2012,8,163.42 +42,SP95,2012,9,160.22 +42,SP95,2012,10,157.49 +42,SP95,2012,11,152.29 +42,SP95,2012,12,153.73 +42,SP95,2013,1,157.97 +42,SP95,2013,2,163.84 +42,SP95,2013,3,161.58 +42,SP95,2013,4,157.52 +42,SP95,2013,5,154.86 +42,SP95,2013,6,155.73 +42,SP95,2013,7,156.34 +42,SP95,2013,8,156.52 +42,SP95,2013,9,155.57 +42,SP95,2013,10,151.07 +42,SP95,2013,11,150.41 +42,SP95,2013,12,152.16 +42,SP95,2014,1,151.05 +42,SP95,2014,2,151.58 +42,SP95,2014,3,150.85 +42,SP95,2014,4,153.13 +42,SP95,2014,5,153.17 +42,SP95,2014,6,154.39 +42,SP95,2014,7,154.51 +42,SP95,2014,8,151.7 +42,SP95,2014,9,152.74 +42,SP95,2014,10,149.7 +42,SP95,2014,11,144.71 +42,SP95,2014,12,134.78 +42,SP95,2015,1,128.84 +42,SP95,2015,2,134.24 +42,SP95,2015,3,139.68 +42,SP95,2015,4,141.42 +42,SP95,2015,5,143.79 +42,SP95,2015,6,144.42 +42,SP95,2015,7,144.42 +42,SP95,2015,8,139.99 +42,SP95,2015,9,134.02 +42,SP95,2015,10,131.7 +42,SP95,2015,11,132.99 +42,SP95,2015,12,128.65 +42,SP95,2016,1, +42,SP95,2016,2, +42,SP95,2016,3, +42,SP95,2016,4, +42,SP95,2016,5, +42,SP95,2016,6, +42,SP95,2016,7, +42,SP95,2016,8, +42,SP95,2016,9, +42,SP95,2016,10, +42,SP95,2016,11, +42,SP95,2016,12, +42,SP95,2017,1, +42,SP95,2017,2, +42,SP95,2017,3, +42,SP95,2017,4, +42,SP95,2017,5, +42,SP95,2017,6, +42,SP95,2017,7, +42,SP95,2017,8, +42,SP95,2017,9, +42,SP95,2017,10, +42,SP95,2017,11, +42,SP95,2017,12, +42,SP95,2018,1, +42,SP95,2018,2, +42,SP95,2018,3, +42,SP95,2018,4, +42,SP95,2018,5, +42,SP95,2018,6, +42,SP95,2018,7, +42,SP95,2018,8, +42,SP95,2018,9, +42,SP95,2018,10, +42,SP95,2018,11, +42,SP95,2018,12, +42,SP95,2019,1, +42,SP95,2019,2, +42,SP95,2019,3, +42,SP95,2019,4, +42,SP95,2019,5, +42,SP95,2019,6, +42,SP95,2019,7, +42,SP95,2019,8, +42,SP95,2019,9, +42,SP95,2019,10, +42,SP95,2019,11, +42,SP95,2019,12, +42,SP95,2020,1, +42,SP95,2020,2, +42,SP95,2020,3, +42,SP95,2020,4, +42,SP95,2020,5, +42,SP95,2020,6, +42,SP95,2020,7, +42,SP95,2020,8, +42,SP95,2020,9, +42,SP95,2020,10, +42,SP95,2020,11, +42,SP95,2020,12, +42,SP95,2021,1, +42,SP95,2021,2, +42,SP95,2021,3, +42,SP95,2021,4, +42,SP95,2021,5, +42,SP95,2021,6, +42,SP95,2021,7, +42,SP95,2021,8, +42,SP95,2021,9, +42,SP95,2021,10, +42,SP95,2021,11, +42,SP95,2021,12, +42,SP95,2022,1, +42,SP95,2022,2, +42,SP95,2022,3, +42,SP95,2022,4, +42,SP95,2022,5, +42,SP95,2022,6, +42,SP95,2022,7, +42,SP95,2022,8, +42,SP95,2022,9, +42,SP95,2022,10, +42,SP95,2022,11, +42,SP95,2022,12, +42,SP95,2023,1, +42,SP95,2023,2, +42,SP95,2023,3, +42,SP95,2023,4, +42,SP95,2023,5, +42,SP95,2023,6, +42,SP95,2023,7, +42,SP95,2023,8, +42,SP95,2023,9, +42,SP95,2023,10, +42,SP95,2023,11, +42,SP95,2023,12, +42,SP95,2024,1, +42,SP95,2024,2, +42,SP95,2024,3, +42,SP95,2024,4, +42,SP95,2024,5, +42,SP95,2024,6, +42,SP95,2024,7, +42,SP95,2024,8, +42,SP95,2024,9, +42,SP95,2024,10, +42,SP95,2024,11, +42,SP95,2024,12, +42,GPLc,2007,11,69.51 +42,GPLc,2007,12,72.27 +42,GPLc,2007,1, +42,GPLc,2007,2, +42,GPLc,2007,3, +42,GPLc,2007,4, +42,GPLc,2007,5, +42,GPLc,2007,6, +42,GPLc,2007,7, +42,GPLc,2007,8, +42,GPLc,2007,9, +42,GPLc,2007,10, +42,GPLc,2008,1,73.95 +42,GPLc,2008,2,73.39 +42,GPLc,2008,3,73.44 +42,GPLc,2008,4,72.87 +42,GPLc,2008,5,73.44 +42,GPLc,2008,6,74.86 +42,GPLc,2008,7,75.08 +42,GPLc,2008,9,76.76 +42,GPLc,2008,10,76.75 +42,GPLc,2008,11,75.41 +42,GPLc,2008,12,71.55 +42,GPLc,2008,8,76.55 +42,GPLc,2009,1,69.43 +42,GPLc,2009,3,66.35 +42,GPLc,2009,4,63.43 +42,GPLc,2009,5,62.72 +42,GPLc,2009,6,63.84 +42,GPLc,2009,8,63.81 +42,GPLc,2009,9,65.52 +42,GPLc,2009,10,65.74 +42,GPLc,2009,11,67.14 +42,GPLc,2009,12,68.47 +42,GPLc,2009,7,63.78 +42,GPLc,2009,2,68.76 +42,GPLc,2010,1,70.04 +42,GPLc,2010,5,69.29 +42,GPLc,2010,7,73.68 +42,GPLc,2010,9,74.11 +42,GPLc,2010,10,75.3 +42,GPLc,2010,11,76.38 +42,GPLc,2010,12,79.45 +42,GPLc,2010,2,70.39 +42,GPLc,2010,3,68.05 +42,GPLc,2010,4,68.03 +42,GPLc,2010,6,70.46 +42,GPLc,2010,8,73.8 +42,GPLc,2011,2,83.66 +42,GPLc,2011,6,85.66 +42,GPLc,2011,8,86.12 +42,GPLc,2011,9,86.13 +42,GPLc,2011,10,86.16 +42,GPLc,2011,1,81.88 +42,GPLc,2011,4,84.8 +42,GPLc,2011,5,85.21 +42,GPLc,2011,7,85.85 +42,GPLc,2011,12,86.17 +42,GPLc,2011,3,85.23 +42,GPLc,2011,11,86.27 +42,GPLc,2012,1,85.57 +42,GPLc,2012,2,86.2 +42,GPLc,2012,7,85.9 +42,GPLc,2012,10,86.64 +42,GPLc,2012,12,87.62 +42,GPLc,2012,5,87.72 +42,GPLc,2012,6,87.53 +42,GPLc,2012,8,85.75 +42,GPLc,2012,9,85.63 +42,GPLc,2012,3,87.68 +42,GPLc,2012,4,87.86 +42,GPLc,2012,11,87.16 +42,GPLc,2013,4,89.51 +42,GPLc,2013,5,87.99 +42,GPLc,2013,6,87.01 +42,GPLc,2013,3,89.7 +42,GPLc,2013,7,86.12 +42,GPLc,2013,8,86.2 +42,GPLc,2013,12,85.62 +42,GPLc,2013,1,89.7 +42,GPLc,2013,9,86.4 +42,GPLc,2013,10,85.46 +42,GPLc,2013,2,88.83 +42,GPLc,2013,11,85.53 +42,GPLc,2014,1,87.33 +42,GPLc,2014,2,86.53 +42,GPLc,2014,3,85.53 +42,GPLc,2014,4,85.44 +42,GPLc,2014,5,85.28 +42,GPLc,2014,6,84.98 +42,GPLc,2014,7,84.06 +42,GPLc,2014,8,84.03 +42,GPLc,2014,9,83.79 +42,GPLc,2014,10,83.5 +42,GPLc,2014,11,83.0 +42,GPLc,2014,12,82.24 +42,GPLc,2015,1,79.65 +42,GPLc,2015,2,78.53 +42,GPLc,2015,3,78.95 +42,GPLc,2015,4,78.93 +42,GPLc,2015,5,79.31 +42,GPLc,2015,6,78.62 +42,GPLc,2015,7,77.38 +42,GPLc,2015,8,76.76 +42,GPLc,2015,9,75.76 +42,GPLc,2015,10,74.79 +42,GPLc,2015,11,74.72 +42,GPLc,2015,12,74.37 +42,GPLc,2016,1, +42,GPLc,2016,2, +42,GPLc,2016,3, +42,GPLc,2016,4, +42,GPLc,2016,5, +42,GPLc,2016,6, +42,GPLc,2016,7, +42,GPLc,2016,8, +42,GPLc,2016,9, +42,GPLc,2016,10, +42,GPLc,2016,11, +42,GPLc,2016,12, +42,GPLc,2017,1, +42,GPLc,2017,2, +42,GPLc,2017,3, +42,GPLc,2017,4, +42,GPLc,2017,5, +42,GPLc,2017,6, +42,GPLc,2017,7, +42,GPLc,2017,8, +42,GPLc,2017,9, +42,GPLc,2017,10, +42,GPLc,2017,11, +42,GPLc,2017,12, +42,GPLc,2018,1, +42,GPLc,2018,2, +42,GPLc,2018,3, +42,GPLc,2018,4, +42,GPLc,2018,5, +42,GPLc,2018,6, +42,GPLc,2018,7, +42,GPLc,2018,8, +42,GPLc,2018,9, +42,GPLc,2018,10, +42,GPLc,2018,11, +42,GPLc,2018,12, +42,GPLc,2019,1, +42,GPLc,2019,2, +42,GPLc,2019,3, +42,GPLc,2019,4, +42,GPLc,2019,5, +42,GPLc,2019,6, +42,GPLc,2019,7, +42,GPLc,2019,8, +42,GPLc,2019,9, +42,GPLc,2019,10, +42,GPLc,2019,11, +42,GPLc,2019,12, +42,GPLc,2020,1, +42,GPLc,2020,2, +42,GPLc,2020,3, +42,GPLc,2020,4, +42,GPLc,2020,5, +42,GPLc,2020,6, +42,GPLc,2020,7, +42,GPLc,2020,8, +42,GPLc,2020,9, +42,GPLc,2020,10, +42,GPLc,2020,11, +42,GPLc,2020,12, +42,GPLc,2021,1, +42,GPLc,2021,2, +42,GPLc,2021,3, +42,GPLc,2021,4, +42,GPLc,2021,5, +42,GPLc,2021,6, +42,GPLc,2021,7, +42,GPLc,2021,8, +42,GPLc,2021,9, +42,GPLc,2021,10, +42,GPLc,2021,11, +42,GPLc,2021,12, +42,GPLc,2022,1, +42,GPLc,2022,2, +42,GPLc,2022,3, +42,GPLc,2022,4, +42,GPLc,2022,5, +42,GPLc,2022,6, +42,GPLc,2022,7, +42,GPLc,2022,8, +42,GPLc,2022,9, +42,GPLc,2022,10, +42,GPLc,2022,11, +42,GPLc,2022,12, +42,GPLc,2023,1, +42,GPLc,2023,2, +42,GPLc,2023,3, +42,GPLc,2023,4, +42,GPLc,2023,5, +42,GPLc,2023,6, +42,GPLc,2023,7, +42,GPLc,2023,8, +42,GPLc,2023,9, +42,GPLc,2023,10, +42,GPLc,2023,11, +42,GPLc,2023,12, +42,GPLc,2024,1, +42,GPLc,2024,2, +42,GPLc,2024,3, +42,GPLc,2024,4, +42,GPLc,2024,5, +42,GPLc,2024,6, +42,GPLc,2024,7, +42,GPLc,2024,8, +42,GPLc,2024,9, +42,GPLc,2024,10, +42,GPLc,2024,11, +42,GPLc,2024,12, +42,E85,2007,11,82.56 +42,E85,2007,12,83.51 +42,E85,2007,9,82.8 +42,E85,2007,7,84.1 +42,E85,2007,8,83.87 +42,E85,2007,10,82.56 +42,E85,2007,1, +42,E85,2007,2, +42,E85,2007,3, +42,E85,2007,4, +42,E85,2007,5, +42,E85,2007,6, +42,E85,2008,1,83.74 +42,E85,2008,2,85.48 +42,E85,2008,3,85.56 +42,E85,2008,10,87.22 +42,E85,2008,11,87.0 +42,E85,2008,12,86.66 +42,E85,2008,4,84.96 +42,E85,2008,5,84.69 +42,E85,2008,6,84.09 +42,E85,2008,7,85.62 +42,E85,2008,8,86.94 +42,E85,2008,9,87.1 +42,E85,2009,1,82.79 +42,E85,2009,10,98.27 +42,E85,2009,2,84.18 +42,E85,2009,3,85.32 +42,E85,2009,4,85.02 +42,E85,2009,5,84.17 +42,E85,2009,6,85.55 +42,E85,2009,7,91.57 +42,E85,2009,8,96.13 +42,E85,2009,9,98.78 +42,E85,2009,11,99.82 +42,E85,2009,12,101.45 +42,E85,2010,7,106.87 +42,E85,2010,2,92.48 +42,E85,2010,11,108.43 +42,E85,2010,10,107.26 +42,E85,2010,1,89.46 +42,E85,2010,3,93.23 +42,E85,2010,4,96.35 +42,E85,2010,5,100.32 +42,E85,2010,6,103.54 +42,E85,2010,8,106.38 +42,E85,2010,12,109.26 +42,E85,2010,9,105.91 +42,E85,2011,1,86.8 +42,E85,2011,2,87.33 +42,E85,2011,3,88.43 +42,E85,2011,8,88.92 +42,E85,2011,4,88.66 +42,E85,2011,5,89.08 +42,E85,2011,6,88.86 +42,E85,2011,7,88.8 +42,E85,2011,9,88.94 +42,E85,2011,10,88.93 +42,E85,2011,11,89.1 +42,E85,2011,12,89.01 +42,E85,2012,9,91.89 +42,E85,2012,1,91.04 +42,E85,2012,11,92.69 +42,E85,2012,12,93.31 +42,E85,2012,2,91.73 +42,E85,2012,3,92.1 +42,E85,2012,4,93.01 +42,E85,2012,5,93.0 +42,E85,2012,6,91.83 +42,E85,2012,7,91.78 +42,E85,2012,8,92.12 +42,E85,2012,10,92.34 +42,E85,2013,4,93.43 +42,E85,2013,1,93.38 +42,E85,2013,3,94.45 +42,E85,2013,5,92.66 +42,E85,2013,7,92.27 +42,E85,2013,8,92.98 +42,E85,2013,10,92.13 +42,E85,2013,11,92.1 +42,E85,2013,12,92.17 +42,E85,2013,2,94.55 +42,E85,2013,6,91.99 +42,E85,2013,9,92.56 +42,E85,2014,6,88.43 +42,E85,2014,1,90.16 +42,E85,2014,3,90.51 +42,E85,2014,7,87.95 +42,E85,2014,8,88.01 +42,E85,2014,11,89.1 +42,E85,2014,2,90.81 +42,E85,2014,4,90.32 +42,E85,2014,5,89.26 +42,E85,2014,9,88.11 +42,E85,2014,10,88.11 +42,E85,2014,12,93.65 +42,E85,2015,8,89.21 +42,E85,2015,2,91.6 +42,E85,2015,10,89.62 +42,E85,2015,12,93.53 +42,E85,2015,3,89.31 +42,E85,2015,5,87.78 +42,E85,2015,11,90.77 +42,E85,2015,1,90.05 +42,E85,2015,4,89.04 +42,E85,2015,6,87.94 +42,E85,2015,7,87.42 +42,E85,2015,9,89.87 +42,E85,2016,1, +42,E85,2016,2, +42,E85,2016,3, +42,E85,2016,4, +42,E85,2016,5, +42,E85,2016,6, +42,E85,2016,7, +42,E85,2016,8, +42,E85,2016,9, +42,E85,2016,10, +42,E85,2016,11, +42,E85,2016,12, +42,E85,2017,1, +42,E85,2017,2, +42,E85,2017,3, +42,E85,2017,4, +42,E85,2017,5, +42,E85,2017,6, +42,E85,2017,7, +42,E85,2017,8, +42,E85,2017,9, +42,E85,2017,10, +42,E85,2017,11, +42,E85,2017,12, +42,E85,2018,1, +42,E85,2018,2, +42,E85,2018,3, +42,E85,2018,4, +42,E85,2018,5, +42,E85,2018,6, +42,E85,2018,7, +42,E85,2018,8, +42,E85,2018,9, +42,E85,2018,10, +42,E85,2018,11, +42,E85,2018,12, +42,E85,2019,1, +42,E85,2019,2, +42,E85,2019,3, +42,E85,2019,4, +42,E85,2019,5, +42,E85,2019,6, +42,E85,2019,7, +42,E85,2019,8, +42,E85,2019,9, +42,E85,2019,10, +42,E85,2019,11, +42,E85,2019,12, +42,E85,2020,1, +42,E85,2020,2, +42,E85,2020,3, +42,E85,2020,4, +42,E85,2020,5, +42,E85,2020,6, +42,E85,2020,7, +42,E85,2020,8, +42,E85,2020,9, +42,E85,2020,10, +42,E85,2020,11, +42,E85,2020,12, +42,E85,2021,1, +42,E85,2021,2, +42,E85,2021,3, +42,E85,2021,4, +42,E85,2021,5, +42,E85,2021,6, +42,E85,2021,7, +42,E85,2021,8, +42,E85,2021,9, +42,E85,2021,10, +42,E85,2021,11, +42,E85,2021,12, +42,E85,2022,1, +42,E85,2022,2, +42,E85,2022,3, +42,E85,2022,4, +42,E85,2022,5, +42,E85,2022,6, +42,E85,2022,7, +42,E85,2022,8, +42,E85,2022,9, +42,E85,2022,10, +42,E85,2022,11, +42,E85,2022,12, +42,E85,2023,1, +42,E85,2023,2, +42,E85,2023,3, +42,E85,2023,4, +42,E85,2023,5, +42,E85,2023,6, +42,E85,2023,7, +42,E85,2023,8, +42,E85,2023,9, +42,E85,2023,10, +42,E85,2023,11, +42,E85,2023,12, +42,E85,2024,1, +42,E85,2024,2, +42,E85,2024,3, +42,E85,2024,4, +42,E85,2024,5, +42,E85,2024,6, +42,E85,2024,7, +42,E85,2024,8, +42,E85,2024,9, +42,E85,2024,10, +42,E85,2024,11, +42,E85,2024,12, +42,E10,2009,8,123.49 +42,E10,2009,5,118.21 +42,E10,2009,6,124.47 +42,E10,2009,7,120.34 +42,E10,2009,9,122.14 +42,E10,2009,10,122.65 +42,E10,2009,11,125.08 +42,E10,2009,12,124.69 +42,E10,2009,4,115.77 +42,E10,2009,1, +42,E10,2009,2, +42,E10,2009,3, +42,E10,2010,4,140.17 +42,E10,2010,5,139.72 +42,E10,2010,6,138.68 +42,E10,2010,7,136.49 +42,E10,2010,8,135.18 +42,E10,2010,9,135.3 +42,E10,2010,10,137.31 +42,E10,2010,11,138.69 +42,E10,2010,12,143.71 +42,E10,2010,3,134.65 +42,E10,2010,1,128.63 +42,E10,2010,2,129.93 +42,E10,2011,1,149.35 +42,E10,2011,2,148.91 +42,E10,2011,3,152.91 +42,E10,2011,4,156.07 +42,E10,2011,5,156.84 +42,E10,2011,6,154.23 +42,E10,2011,7,154.39 +42,E10,2011,8,153.0 +42,E10,2011,9,155.35 +42,E10,2011,10,154.04 +42,E10,2011,11,152.86 +42,E10,2011,12,153.72 +42,E10,2012,1,157.39 +42,E10,2012,2,160.74 +42,E10,2012,3,165.52 +42,E10,2012,4,167.59 +42,E10,2012,5,160.91 +42,E10,2012,6,156.14 +42,E10,2012,7,157.85 +42,E10,2012,8,163.03 +42,E10,2012,9,159.54 +42,E10,2012,10,156.14 +42,E10,2012,11,150.7 +42,E10,2012,12,152.69 +42,E10,2013,1,157.59 +42,E10,2013,2,163.2 +42,E10,2013,3,161.24 +42,E10,2013,4,157.32 +42,E10,2013,5,154.66 +42,E10,2013,6,155.3 +42,E10,2013,7,156.21 +42,E10,2013,8,156.37 +42,E10,2013,9,155.29 +42,E10,2013,10,150.48 +42,E10,2013,11,149.9 +42,E10,2013,12,151.52 +42,E10,2014,3,150.78 +42,E10,2014,1,149.9 +42,E10,2014,2,151.3 +42,E10,2014,4,152.65 +42,E10,2014,5,152.8 +42,E10,2014,6,153.77 +42,E10,2014,7,153.87 +42,E10,2014,8,151.22 +42,E10,2014,9,151.94 +42,E10,2014,10,149.22 +42,E10,2014,11,144.52 +42,E10,2014,12,135.66 +42,E10,2015,1,128.47 +42,E10,2015,2,133.72 +42,E10,2015,3,139.53 +42,E10,2015,4,141.3 +42,E10,2015,6,144.45 +42,E10,2015,7,144.22 +42,E10,2015,8,139.65 +42,E10,2015,9,133.53 +42,E10,2015,10,131.11 +42,E10,2015,11,132.26 +42,E10,2015,12,128.3 +42,E10,2015,5,143.73 +42,E10,2016,1, +42,E10,2016,2, +42,E10,2016,3, +42,E10,2016,4, +42,E10,2016,5, +42,E10,2016,6, +42,E10,2016,7, +42,E10,2016,8, +42,E10,2016,9, +42,E10,2016,10, +42,E10,2016,11, +42,E10,2016,12, +42,E10,2017,1, +42,E10,2017,2, +42,E10,2017,3, +42,E10,2017,4, +42,E10,2017,5, +42,E10,2017,6, +42,E10,2017,7, +42,E10,2017,8, +42,E10,2017,9, +42,E10,2017,10, +42,E10,2017,11, +42,E10,2017,12, +42,E10,2018,1, +42,E10,2018,2, +42,E10,2018,3, +42,E10,2018,4, +42,E10,2018,5, +42,E10,2018,6, +42,E10,2018,7, +42,E10,2018,8, +42,E10,2018,9, +42,E10,2018,10, +42,E10,2018,11, +42,E10,2018,12, +42,E10,2019,1, +42,E10,2019,2, +42,E10,2019,3, +42,E10,2019,4, +42,E10,2019,5, +42,E10,2019,6, +42,E10,2019,7, +42,E10,2019,8, +42,E10,2019,9, +42,E10,2019,10, +42,E10,2019,11, +42,E10,2019,12, +42,E10,2020,1, +42,E10,2020,2, +42,E10,2020,3, +42,E10,2020,4, +42,E10,2020,5, +42,E10,2020,6, +42,E10,2020,7, +42,E10,2020,8, +42,E10,2020,9, +42,E10,2020,10, +42,E10,2020,11, +42,E10,2020,12, +42,E10,2021,1, +42,E10,2021,2, +42,E10,2021,3, +42,E10,2021,4, +42,E10,2021,5, +42,E10,2021,6, +42,E10,2021,7, +42,E10,2021,8, +42,E10,2021,9, +42,E10,2021,10, +42,E10,2021,11, +42,E10,2021,12, +42,E10,2022,1, +42,E10,2022,2, +42,E10,2022,3, +42,E10,2022,4, +42,E10,2022,5, +42,E10,2022,6, +42,E10,2022,7, +42,E10,2022,8, +42,E10,2022,9, +42,E10,2022,10, +42,E10,2022,11, +42,E10,2022,12, +42,E10,2023,1, +42,E10,2023,2, +42,E10,2023,3, +42,E10,2023,4, +42,E10,2023,5, +42,E10,2023,6, +42,E10,2023,7, +42,E10,2023,8, +42,E10,2023,9, +42,E10,2023,10, +42,E10,2023,11, +42,E10,2023,12, +42,E10,2024,1, +42,E10,2024,2, +42,E10,2024,3, +42,E10,2024,4, +42,E10,2024,5, +42,E10,2024,6, +42,E10,2024,7, +42,E10,2024,8, +42,E10,2024,9, +42,E10,2024,10, +42,E10,2024,11, +42,E10,2024,12, +42,SP98,2013,7,161.96 +42,SP98,2013,8,162.28 +42,SP98,2013,9,161.54 +42,SP98,2013,10,156.49 +42,SP98,2013,11,155.5 +42,SP98,2013,12,157.37 +42,SP98,2013,6,159.56 +42,SP98,2013,1, +42,SP98,2013,2, +42,SP98,2013,3, +42,SP98,2013,4, +42,SP98,2013,5, +42,SP98,2014,1,156.4 +42,SP98,2014,2,157.27 +42,SP98,2014,3,156.65 +42,SP98,2014,4,158.39 +42,SP98,2014,5,158.78 +42,SP98,2014,6,159.68 +42,SP98,2014,7,159.85 +42,SP98,2014,8,157.06 +42,SP98,2014,9,157.94 +42,SP98,2014,10,155.24 +42,SP98,2014,11,150.18 +42,SP98,2014,12,140.78 +42,SP98,2015,1,134.36 +42,SP98,2015,2,139.46 +42,SP98,2015,3,145.51 +42,SP98,2015,4,147.38 +42,SP98,2015,5,149.8 +42,SP98,2015,6,150.73 +42,SP98,2015,7,150.63 +42,SP98,2015,8,146.08 +42,SP98,2015,9,139.77 +42,SP98,2015,10,137.4 +42,SP98,2015,11,138.48 +42,SP98,2015,12,134.27 +42,SP98,2016,1, +42,SP98,2016,2, +42,SP98,2016,3, +42,SP98,2016,4, +42,SP98,2016,5, +42,SP98,2016,6, +42,SP98,2016,7, +42,SP98,2016,8, +42,SP98,2016,9, +42,SP98,2016,10, +42,SP98,2016,11, +42,SP98,2016,12, +42,SP98,2017,1, +42,SP98,2017,2, +42,SP98,2017,3, +42,SP98,2017,4, +42,SP98,2017,5, +42,SP98,2017,6, +42,SP98,2017,7, +42,SP98,2017,8, +42,SP98,2017,9, +42,SP98,2017,10, +42,SP98,2017,11, +42,SP98,2017,12, +42,SP98,2018,1, +42,SP98,2018,2, +42,SP98,2018,3, +42,SP98,2018,4, +42,SP98,2018,5, +42,SP98,2018,6, +42,SP98,2018,7, +42,SP98,2018,8, +42,SP98,2018,9, +42,SP98,2018,10, +42,SP98,2018,11, +42,SP98,2018,12, +42,SP98,2019,1, +42,SP98,2019,2, +42,SP98,2019,3, +42,SP98,2019,4, +42,SP98,2019,5, +42,SP98,2019,6, +42,SP98,2019,7, +42,SP98,2019,8, +42,SP98,2019,9, +42,SP98,2019,10, +42,SP98,2019,11, +42,SP98,2019,12, +42,SP98,2020,1, +42,SP98,2020,2, +42,SP98,2020,3, +42,SP98,2020,4, +42,SP98,2020,5, +42,SP98,2020,6, +42,SP98,2020,7, +42,SP98,2020,8, +42,SP98,2020,9, +42,SP98,2020,10, +42,SP98,2020,11, +42,SP98,2020,12, +42,SP98,2021,1, +42,SP98,2021,2, +42,SP98,2021,3, +42,SP98,2021,4, +42,SP98,2021,5, +42,SP98,2021,6, +42,SP98,2021,7, +42,SP98,2021,8, +42,SP98,2021,9, +42,SP98,2021,10, +42,SP98,2021,11, +42,SP98,2021,12, +42,SP98,2022,1, +42,SP98,2022,2, +42,SP98,2022,3, +42,SP98,2022,4, +42,SP98,2022,5, +42,SP98,2022,6, +42,SP98,2022,7, +42,SP98,2022,8, +42,SP98,2022,9, +42,SP98,2022,10, +42,SP98,2022,11, +42,SP98,2022,12, +42,SP98,2023,1, +42,SP98,2023,2, +42,SP98,2023,3, +42,SP98,2023,4, +42,SP98,2023,5, +42,SP98,2023,6, +42,SP98,2023,7, +42,SP98,2023,8, +42,SP98,2023,9, +42,SP98,2023,10, +42,SP98,2023,11, +42,SP98,2023,12, +42,SP98,2024,1, +42,SP98,2024,2, +42,SP98,2024,3, +42,SP98,2024,4, +42,SP98,2024,5, +42,SP98,2024,6, +42,SP98,2024,7, +42,SP98,2024,8, +42,SP98,2024,9, +42,SP98,2024,10, +42,SP98,2024,11, +42,SP98,2024,12, +02,Gazole,2007,1,101.23 +02,Gazole,2007,2,100.85 +02,Gazole,2007,3,101.97 +02,Gazole,2007,4,105.31 +02,Gazole,2007,5,106.5 +02,Gazole,2007,6,107.26 +02,Gazole,2007,7,108.32 +02,Gazole,2007,8,108.62 +02,Gazole,2007,9,110.67 +02,Gazole,2007,10,112.09 +02,Gazole,2007,11,121.28 +02,Gazole,2007,12,121.76 +02,Gazole,2008,1,120.35 +02,Gazole,2008,2,120.07 +02,Gazole,2008,3,126.72 +02,Gazole,2008,4,129.6 +02,Gazole,2008,5,140.67 +02,Gazole,2008,6,145.77 +02,Gazole,2008,7,143.9 +02,Gazole,2008,8,134.29 +02,Gazole,2008,9,129.88 +02,Gazole,2008,10,122.38 +02,Gazole,2008,11,110.98 +02,Gazole,2008,12,99.48 +02,Gazole,2009,1,99.96 +02,Gazole,2009,2,96.97 +02,Gazole,2009,3,95.59 +02,Gazole,2009,4,97.67 +02,Gazole,2009,5,96.88 +02,Gazole,2009,6,101.52 +02,Gazole,2009,7,99.69 +02,Gazole,2009,8,103.63 +02,Gazole,2009,9,100.93 +02,Gazole,2009,10,102.8 +02,Gazole,2009,11,104.82 +02,Gazole,2009,12,103.74 +02,Gazole,2010,1,109.92 +02,Gazole,2010,2,109.56 +02,Gazole,2010,3,113.61 +02,Gazole,2010,4,116.95 +02,Gazole,2010,5,117.04 +02,Gazole,2010,6,117.4 +02,Gazole,2010,7,113.42 +02,Gazole,2010,8,115.79 +02,Gazole,2010,9,115.67 +02,Gazole,2010,10,118.37 +02,Gazole,2010,11,120.95 +02,Gazole,2010,12,125.82 +02,Gazole,2011,8,135.58 +02,Gazole,2011,9,138.43 +02,Gazole,2011,10,138.93 +02,Gazole,2011,11,142.95 +02,Gazole,2011,12,142.35 +02,Gazole,2011,1,131.35 +02,Gazole,2011,2,134.74 +02,Gazole,2011,3,140.33 +02,Gazole,2011,4,139.93 +02,Gazole,2011,5,135.38 +02,Gazole,2011,6,136.4 +02,Gazole,2011,7,136.61 +02,Gazole,2012,1,145.1 +02,Gazole,2012,2,146.65 +02,Gazole,2012,3,149.52 +02,Gazole,2012,4,147.5 +02,Gazole,2012,5,144.22 +02,Gazole,2012,6,138.43 +02,Gazole,2012,7,143.7 +02,Gazole,2012,8,148.73 +02,Gazole,2012,9,145.35 +02,Gazole,2012,10,144.78 +02,Gazole,2012,11,142.73 +02,Gazole,2012,12,141.79 +02,Gazole,2013,1,143.85 +02,Gazole,2013,2,147.18 +02,Gazole,2013,3,144.06 +02,Gazole,2013,4,140.18 +02,Gazole,2013,5,139.21 +02,Gazole,2013,6,138.61 +02,Gazole,2013,7,141.24 +02,Gazole,2013,8,141.22 +02,Gazole,2013,9,143.02 +02,Gazole,2013,10,138.63 +02,Gazole,2013,11,137.43 +02,Gazole,2013,12,139.68 +02,Gazole,2014,1,139.05 +02,Gazole,2014,3,136.51 +02,Gazole,2014,4,136.92 +02,Gazole,2014,5,136.31 +02,Gazole,2014,6,136.78 +02,Gazole,2014,7,135.83 +02,Gazole,2014,8,135.6 +02,Gazole,2014,9,135.29 +02,Gazole,2014,10,131.79 +02,Gazole,2014,11,129.12 +02,Gazole,2014,12,119.77 +02,Gazole,2014,2,139.01 +02,Gazole,2015,1, +02,Gazole,2015,2, +02,Gazole,2015,3, +02,Gazole,2015,4, +02,Gazole,2015,5, +02,Gazole,2015,6, +02,Gazole,2015,7, +02,Gazole,2015,8, +02,Gazole,2015,9, +02,Gazole,2015,10, +02,Gazole,2015,11, +02,Gazole,2015,12, +02,Gazole,2016,1, +02,Gazole,2016,2, +02,Gazole,2016,3, +02,Gazole,2016,4, +02,Gazole,2016,5, +02,Gazole,2016,6, +02,Gazole,2016,7, +02,Gazole,2016,8, +02,Gazole,2016,9, +02,Gazole,2016,10, +02,Gazole,2016,11, +02,Gazole,2016,12, +02,Gazole,2017,1, +02,Gazole,2017,2, +02,Gazole,2017,3, +02,Gazole,2017,4, +02,Gazole,2017,5, +02,Gazole,2017,6, +02,Gazole,2017,7, +02,Gazole,2017,8, +02,Gazole,2017,9, +02,Gazole,2017,10, +02,Gazole,2017,11, +02,Gazole,2017,12, +02,Gazole,2018,1, +02,Gazole,2018,2, +02,Gazole,2018,3, +02,Gazole,2018,4, +02,Gazole,2018,5, +02,Gazole,2018,6, +02,Gazole,2018,7, +02,Gazole,2018,8, +02,Gazole,2018,9, +02,Gazole,2018,10, +02,Gazole,2018,11, +02,Gazole,2018,12, +02,Gazole,2019,1, +02,Gazole,2019,2, +02,Gazole,2019,3, +02,Gazole,2019,4, +02,Gazole,2019,5, +02,Gazole,2019,6, +02,Gazole,2019,7, +02,Gazole,2019,8, +02,Gazole,2019,9, +02,Gazole,2019,10, +02,Gazole,2019,11, +02,Gazole,2019,12, +02,Gazole,2020,1, +02,Gazole,2020,2, +02,Gazole,2020,3, +02,Gazole,2020,4, +02,Gazole,2020,5, +02,Gazole,2020,6, +02,Gazole,2020,7, +02,Gazole,2020,8, +02,Gazole,2020,9, +02,Gazole,2020,10, +02,Gazole,2020,11, +02,Gazole,2020,12, +02,Gazole,2021,1, +02,Gazole,2021,2, +02,Gazole,2021,3, +02,Gazole,2021,4, +02,Gazole,2021,5, +02,Gazole,2021,6, +02,Gazole,2021,7, +02,Gazole,2021,8, +02,Gazole,2021,9, +02,Gazole,2021,10, +02,Gazole,2021,11, +02,Gazole,2021,12, +02,Gazole,2022,1, +02,Gazole,2022,2, +02,Gazole,2022,3, +02,Gazole,2022,4, +02,Gazole,2022,5, +02,Gazole,2022,6, +02,Gazole,2022,7, +02,Gazole,2022,8, +02,Gazole,2022,9, +02,Gazole,2022,10, +02,Gazole,2022,11, +02,Gazole,2022,12, +02,Gazole,2023,1, +02,Gazole,2023,2, +02,Gazole,2023,3, +02,Gazole,2023,4, +02,Gazole,2023,5, +02,Gazole,2023,6, +02,Gazole,2023,7, +02,Gazole,2023,8, +02,Gazole,2023,9, +02,Gazole,2023,10, +02,Gazole,2023,11, +02,Gazole,2023,12, +02,Gazole,2024,1, +02,Gazole,2024,2, +02,Gazole,2024,3, +02,Gazole,2024,4, +02,Gazole,2024,5, +02,Gazole,2024,6, +02,Gazole,2024,7, +02,Gazole,2024,8, +02,Gazole,2024,9, +02,Gazole,2024,10, +02,Gazole,2024,11, +02,Gazole,2024,12, +02,SP95,2007,1,118.46 +02,SP95,2007,2,118.84 +02,SP95,2007,3,124.14 +02,SP95,2007,4,128.29 +02,SP95,2007,5,131.0 +02,SP95,2007,6,133.33 +02,SP95,2007,7,133.49 +02,SP95,2007,8,129.93 +02,SP95,2007,9,130.23 +02,SP95,2007,10,130.93 +02,SP95,2007,11,137.58 +02,SP95,2007,12,136.77 +02,SP95,2008,1,137.97 +02,SP95,2008,2,138.88 +02,SP95,2008,3,139.4 +02,SP95,2008,4,141.0 +02,SP95,2008,5,147.76 +02,SP95,2008,6,153.0 +02,SP95,2008,7,150.96 +02,SP95,2008,8,145.46 +02,SP95,2008,9,142.73 +02,SP95,2008,10,133.17 +02,SP95,2008,11,119.58 +02,SP95,2008,12,111.47 +02,SP95,2009,1,115.15 +02,SP95,2009,2,117.22 +02,SP95,2009,3,116.71 +02,SP95,2009,4,119.75 +02,SP95,2009,5,121.4 +02,SP95,2009,6,121.4 +02,SP95,2009,7,121.4 +02,SP95,2009,8,121.4 +02,SP95,2009,9,121.4 +02,SP95,2009,10,121.4 +02,SP95,2009,11,121.4 +02,SP95,2009,12,121.4 +02,SP95,2010,1, +02,SP95,2010,2, +02,SP95,2010,3, +02,SP95,2010,4, +02,SP95,2010,5, +02,SP95,2010,6, +02,SP95,2010,7, +02,SP95,2010,8, +02,SP95,2010,9, +02,SP95,2010,10, +02,SP95,2010,11, +02,SP95,2010,12, +02,SP95,2011,8,154.08 +02,SP95,2011,9,158.13 +02,SP95,2011,10,157.39 +02,SP95,2011,11,157.7 +02,SP95,2011,12,157.42 +02,SP95,2011,1, +02,SP95,2011,2, +02,SP95,2011,3, +02,SP95,2011,4, +02,SP95,2011,5, +02,SP95,2011,6, +02,SP95,2011,7, +02,SP95,2012,1,159.59 +02,SP95,2012,2,164.79 +02,SP95,2012,3,169.71 +02,SP95,2012,4,172.33 +02,SP95,2012,5,164.9 +02,SP95,2012,6,159.37 +02,SP95,2012,7,163.16 +02,SP95,2012,8,168.97 +02,SP95,2012,9,166.13 +02,SP95,2012,10,163.58 +02,SP95,2012,11,157.47 +02,SP95,2012,12,159.32 +02,SP95,2013,1,163.93 +02,SP95,2013,2,169.71 +02,SP95,2013,3,167.71 +02,SP95,2013,4,164.0 +02,SP95,2013,5,161.32 +02,SP95,2013,6,160.93 +02,SP95,2013,7,162.26 +02,SP95,2013,8,163.52 +02,SP95,2013,9,161.7 +02,SP95,2013,10,157.48 +02,SP95,2013,11,156.4 +02,SP95,2013,12,158.26 +02,SP95,2014,1,158.65 +02,SP95,2014,2,158.36 +02,SP95,2014,3,158.32 +02,SP95,2014,4,159.7 +02,SP95,2014,5,159.23 +02,SP95,2014,6,160.2 +02,SP95,2014,7,160.71 +02,SP95,2014,8,158.03 +02,SP95,2014,9,158.5 +02,SP95,2014,10,155.68 +02,SP95,2014,11,150.97 +02,SP95,2014,12,142.71 +02,SP95,2015,1, +02,SP95,2015,2, +02,SP95,2015,3, +02,SP95,2015,4, +02,SP95,2015,5, +02,SP95,2015,6, +02,SP95,2015,7, +02,SP95,2015,8, +02,SP95,2015,9, +02,SP95,2015,10, +02,SP95,2015,11, +02,SP95,2015,12, +02,SP95,2016,1, +02,SP95,2016,2, +02,SP95,2016,3, +02,SP95,2016,4, +02,SP95,2016,5, +02,SP95,2016,6, +02,SP95,2016,7, +02,SP95,2016,8, +02,SP95,2016,9, +02,SP95,2016,10, +02,SP95,2016,11, +02,SP95,2016,12, +02,SP95,2017,1, +02,SP95,2017,2, +02,SP95,2017,3, +02,SP95,2017,4, +02,SP95,2017,5, +02,SP95,2017,6, +02,SP95,2017,7, +02,SP95,2017,8, +02,SP95,2017,9, +02,SP95,2017,10, +02,SP95,2017,11, +02,SP95,2017,12, +02,SP95,2018,1, +02,SP95,2018,2, +02,SP95,2018,3, +02,SP95,2018,4, +02,SP95,2018,5, +02,SP95,2018,6, +02,SP95,2018,7, +02,SP95,2018,8, +02,SP95,2018,9, +02,SP95,2018,10, +02,SP95,2018,11, +02,SP95,2018,12, +02,SP95,2019,1, +02,SP95,2019,2, +02,SP95,2019,3, +02,SP95,2019,4, +02,SP95,2019,5, +02,SP95,2019,6, +02,SP95,2019,7, +02,SP95,2019,8, +02,SP95,2019,9, +02,SP95,2019,10, +02,SP95,2019,11, +02,SP95,2019,12, +02,SP95,2020,1, +02,SP95,2020,2, +02,SP95,2020,3, +02,SP95,2020,4, +02,SP95,2020,5, +02,SP95,2020,6, +02,SP95,2020,7, +02,SP95,2020,8, +02,SP95,2020,9, +02,SP95,2020,10, +02,SP95,2020,11, +02,SP95,2020,12, +02,SP95,2021,1, +02,SP95,2021,2, +02,SP95,2021,3, +02,SP95,2021,4, +02,SP95,2021,5, +02,SP95,2021,6, +02,SP95,2021,7, +02,SP95,2021,8, +02,SP95,2021,9, +02,SP95,2021,10, +02,SP95,2021,11, +02,SP95,2021,12, +02,SP95,2022,1, +02,SP95,2022,2, +02,SP95,2022,3, +02,SP95,2022,4, +02,SP95,2022,5, +02,SP95,2022,6, +02,SP95,2022,7, +02,SP95,2022,8, +02,SP95,2022,9, +02,SP95,2022,10, +02,SP95,2022,11, +02,SP95,2022,12, +02,SP95,2023,1, +02,SP95,2023,2, +02,SP95,2023,3, +02,SP95,2023,4, +02,SP95,2023,5, +02,SP95,2023,6, +02,SP95,2023,7, +02,SP95,2023,8, +02,SP95,2023,9, +02,SP95,2023,10, +02,SP95,2023,11, +02,SP95,2023,12, +02,SP95,2024,1, +02,SP95,2024,2, +02,SP95,2024,3, +02,SP95,2024,4, +02,SP95,2024,5, +02,SP95,2024,6, +02,SP95,2024,7, +02,SP95,2024,8, +02,SP95,2024,9, +02,SP95,2024,10, +02,SP95,2024,11, +02,SP95,2024,12, +02,E10,2009,4,118.97 +02,E10,2009,5,119.92 +02,E10,2009,6,125.72 +02,E10,2009,7,123.48 +02,E10,2009,8,126.66 +02,E10,2009,9,122.33 +02,E10,2009,10,123.72 +02,E10,2009,11,126.07 +02,E10,2009,12,125.77 +02,E10,2009,1, +02,E10,2009,2, +02,E10,2009,3, +02,E10,2010,1,132.52 +02,E10,2010,2,133.44 +02,E10,2010,3,136.96 +02,E10,2010,4,138.53 +02,E10,2010,5,137.55 +02,E10,2010,6,135.73 +02,E10,2010,7,133.8 +02,E10,2010,8,133.09 +02,E10,2010,9,134.38 +02,E10,2010,10,137.77 +02,E10,2010,11,139.98 +02,E10,2010,12,145.48 +02,E10,2011,1,149.77 +02,E10,2011,2,150.86 +02,E10,2011,3,154.06 +02,E10,2011,4,155.97 +02,E10,2011,5,154.37 +02,E10,2011,6,152.15 +02,E10,2011,7,154.48 +02,E10,2011,8,153.72 +02,E10,2011,9,155.83 +02,E10,2011,10,153.11 +02,E10,2011,11,151.4 +02,E10,2011,12,152.69 +02,E10,2012,1,159.1 +02,E10,2012,2,163.76 +02,E10,2012,3,169.13 +02,E10,2012,4,171.5 +02,E10,2012,5,161.33 +02,E10,2012,6,155.02 +02,E10,2012,7,160.07 +02,E10,2012,8,168.13 +02,E10,2012,9,163.2 +02,E10,2012,10,158.8 +02,E10,2012,11,153.2 +02,E10,2012,12,155.22 +02,E10,2013,1,161.88 +02,E10,2013,2,168.28 +02,E10,2013,3,163.59 +02,E10,2013,4,160.15 +02,E10,2013,5,157.5 +02,E10,2013,6,159.67 +02,E10,2013,7,161.77 +02,E10,2013,8,161.16 +02,E10,2013,9,157.95 +02,E10,2013,10,153.16 +02,E10,2013,11,153.73 +02,E10,2013,12,156.03 +02,E10,2014,1,154.5 +02,E10,2014,2,156.4 +02,E10,2014,3,155.88 +02,E10,2014,4,158.2 +02,E10,2014,5,158.09 +02,E10,2014,6,160.52 +02,E10,2014,7,159.46 +02,E10,2014,8,156.61 +02,E10,2014,9,154.68 +02,E10,2014,10,149.45 +02,E10,2014,11,145.93 +02,E10,2014,12,134.66 +02,E10,2015,1, +02,E10,2015,2, +02,E10,2015,3, +02,E10,2015,4, +02,E10,2015,5, +02,E10,2015,6, +02,E10,2015,7, +02,E10,2015,8, +02,E10,2015,9, +02,E10,2015,10, +02,E10,2015,11, +02,E10,2015,12, +02,E10,2016,1, +02,E10,2016,2, +02,E10,2016,3, +02,E10,2016,4, +02,E10,2016,5, +02,E10,2016,6, +02,E10,2016,7, +02,E10,2016,8, +02,E10,2016,9, +02,E10,2016,10, +02,E10,2016,11, +02,E10,2016,12, +02,E10,2017,1, +02,E10,2017,2, +02,E10,2017,3, +02,E10,2017,4, +02,E10,2017,5, +02,E10,2017,6, +02,E10,2017,7, +02,E10,2017,8, +02,E10,2017,9, +02,E10,2017,10, +02,E10,2017,11, +02,E10,2017,12, +02,E10,2018,1, +02,E10,2018,2, +02,E10,2018,3, +02,E10,2018,4, +02,E10,2018,5, +02,E10,2018,6, +02,E10,2018,7, +02,E10,2018,8, +02,E10,2018,9, +02,E10,2018,10, +02,E10,2018,11, +02,E10,2018,12, +02,E10,2019,1, +02,E10,2019,2, +02,E10,2019,3, +02,E10,2019,4, +02,E10,2019,5, +02,E10,2019,6, +02,E10,2019,7, +02,E10,2019,8, +02,E10,2019,9, +02,E10,2019,10, +02,E10,2019,11, +02,E10,2019,12, +02,E10,2020,1, +02,E10,2020,2, +02,E10,2020,3, +02,E10,2020,4, +02,E10,2020,5, +02,E10,2020,6, +02,E10,2020,7, +02,E10,2020,8, +02,E10,2020,9, +02,E10,2020,10, +02,E10,2020,11, +02,E10,2020,12, +02,E10,2021,1, +02,E10,2021,2, +02,E10,2021,3, +02,E10,2021,4, +02,E10,2021,5, +02,E10,2021,6, +02,E10,2021,7, +02,E10,2021,8, +02,E10,2021,9, +02,E10,2021,10, +02,E10,2021,11, +02,E10,2021,12, +02,E10,2022,1, +02,E10,2022,2, +02,E10,2022,3, +02,E10,2022,4, +02,E10,2022,5, +02,E10,2022,6, +02,E10,2022,7, +02,E10,2022,8, +02,E10,2022,9, +02,E10,2022,10, +02,E10,2022,11, +02,E10,2022,12, +02,E10,2023,1, +02,E10,2023,2, +02,E10,2023,3, +02,E10,2023,4, +02,E10,2023,5, +02,E10,2023,6, +02,E10,2023,7, +02,E10,2023,8, +02,E10,2023,9, +02,E10,2023,10, +02,E10,2023,11, +02,E10,2023,12, +02,E10,2024,1, +02,E10,2024,2, +02,E10,2024,3, +02,E10,2024,4, +02,E10,2024,5, +02,E10,2024,6, +02,E10,2024,7, +02,E10,2024,8, +02,E10,2024,9, +02,E10,2024,10, +02,E10,2024,11, +02,E10,2024,12, +02,SP98,2013,7,167.96 +02,SP98,2013,8,168.69 +02,SP98,2013,9,167.42 +02,SP98,2013,10,165.64 +02,SP98,2013,11,164.65 +02,SP98,2013,12,165.58 +02,SP98,2013,1, +02,SP98,2013,2, +02,SP98,2013,3, +02,SP98,2013,4, +02,SP98,2013,5, +02,SP98,2013,6, +02,SP98,2014,1,162.64 +02,SP98,2014,2,162.36 +02,SP98,2014,3,161.77 +02,SP98,2014,4,162.87 +02,SP98,2014,5,163.23 +02,SP98,2014,6,164.2 +02,SP98,2014,7,164.71 +02,SP98,2014,8,162.03 +02,SP98,2014,10,160.0 +02,SP98,2014,11,155.97 +02,SP98,2014,12,148.68 +02,SP98,2014,9,162.0 +02,SP98,2015,1, +02,SP98,2015,2, +02,SP98,2015,3, +02,SP98,2015,4, +02,SP98,2015,5, +02,SP98,2015,6, +02,SP98,2015,7, +02,SP98,2015,8, +02,SP98,2015,9, +02,SP98,2015,10, +02,SP98,2015,11, +02,SP98,2015,12, +02,SP98,2016,1, +02,SP98,2016,2, +02,SP98,2016,3, +02,SP98,2016,4, +02,SP98,2016,5, +02,SP98,2016,6, +02,SP98,2016,7, +02,SP98,2016,8, +02,SP98,2016,9, +02,SP98,2016,10, +02,SP98,2016,11, +02,SP98,2016,12, +02,SP98,2017,1, +02,SP98,2017,2, +02,SP98,2017,3, +02,SP98,2017,4, +02,SP98,2017,5, +02,SP98,2017,6, +02,SP98,2017,7, +02,SP98,2017,8, +02,SP98,2017,9, +02,SP98,2017,10, +02,SP98,2017,11, +02,SP98,2017,12, +02,SP98,2018,1, +02,SP98,2018,2, +02,SP98,2018,3, +02,SP98,2018,4, +02,SP98,2018,5, +02,SP98,2018,6, +02,SP98,2018,7, +02,SP98,2018,8, +02,SP98,2018,9, +02,SP98,2018,10, +02,SP98,2018,11, +02,SP98,2018,12, +02,SP98,2019,1, +02,SP98,2019,2, +02,SP98,2019,3, +02,SP98,2019,4, +02,SP98,2019,5, +02,SP98,2019,6, +02,SP98,2019,7, +02,SP98,2019,8, +02,SP98,2019,9, +02,SP98,2019,10, +02,SP98,2019,11, +02,SP98,2019,12, +02,SP98,2020,1, +02,SP98,2020,2, +02,SP98,2020,3, +02,SP98,2020,4, +02,SP98,2020,5, +02,SP98,2020,6, +02,SP98,2020,7, +02,SP98,2020,8, +02,SP98,2020,9, +02,SP98,2020,10, +02,SP98,2020,11, +02,SP98,2020,12, +02,SP98,2021,1, +02,SP98,2021,2, +02,SP98,2021,3, +02,SP98,2021,4, +02,SP98,2021,5, +02,SP98,2021,6, +02,SP98,2021,7, +02,SP98,2021,8, +02,SP98,2021,9, +02,SP98,2021,10, +02,SP98,2021,11, +02,SP98,2021,12, +02,SP98,2022,1, +02,SP98,2022,2, +02,SP98,2022,3, +02,SP98,2022,4, +02,SP98,2022,5, +02,SP98,2022,6, +02,SP98,2022,7, +02,SP98,2022,8, +02,SP98,2022,9, +02,SP98,2022,10, +02,SP98,2022,11, +02,SP98,2022,12, +02,SP98,2023,1, +02,SP98,2023,2, +02,SP98,2023,3, +02,SP98,2023,4, +02,SP98,2023,5, +02,SP98,2023,6, +02,SP98,2023,7, +02,SP98,2023,8, +02,SP98,2023,9, +02,SP98,2023,10, +02,SP98,2023,11, +02,SP98,2023,12, +02,SP98,2024,1, +02,SP98,2024,2, +02,SP98,2024,3, +02,SP98,2024,4, +02,SP98,2024,5, +02,SP98,2024,6, +02,SP98,2024,7, +02,SP98,2024,8, +02,SP98,2024,9, +02,SP98,2024,10, +02,SP98,2024,11, +02,SP98,2024,12, +11,Gazole,2007,6,110.11 +11,Gazole,2007,11,122.42 +11,Gazole,2007,12,122.65 +11,Gazole,2007,1,103.47 +11,Gazole,2007,2,103.85 +11,Gazole,2007,3,105.69 +11,Gazole,2007,4,108.12 +11,Gazole,2007,5,108.7 +11,Gazole,2007,7,111.22 +11,Gazole,2007,10,114.78 +11,Gazole,2007,8,111.29 +11,Gazole,2007,9,112.77 +11,Gazole,2008,1,121.52 +11,Gazole,2008,3,127.98 +11,Gazole,2008,5,141.06 +11,Gazole,2008,9,132.81 +11,Gazole,2008,10,124.3 +11,Gazole,2008,11,114.09 +11,Gazole,2008,12,102.09 +11,Gazole,2008,2,122.29 +11,Gazole,2008,4,130.88 +11,Gazole,2008,6,146.18 +11,Gazole,2008,7,145.01 +11,Gazole,2008,8,136.27 +11,Gazole,2009,1,99.88 +11,Gazole,2009,2,98.67 +11,Gazole,2009,5,98.82 +11,Gazole,2009,6,103.79 +11,Gazole,2009,3,96.34 +11,Gazole,2009,4,98.73 +11,Gazole,2009,7,102.0 +11,Gazole,2009,9,103.24 +11,Gazole,2009,10,104.48 +11,Gazole,2009,11,106.42 +11,Gazole,2009,12,105.74 +11,Gazole,2009,8,105.35 +11,Gazole,2010,1,109.75 +11,Gazole,2010,4,118.12 +11,Gazole,2010,11,120.77 +11,Gazole,2010,12,124.94 +11,Gazole,2010,2,110.31 +11,Gazole,2010,3,114.28 +11,Gazole,2010,5,119.3 +11,Gazole,2010,6,118.96 +11,Gazole,2010,7,116.71 +11,Gazole,2010,8,116.63 +11,Gazole,2010,9,117.3 +11,Gazole,2010,10,119.32 +11,Gazole,2011,3,138.12 +11,Gazole,2011,1,129.81 +11,Gazole,2011,2,132.76 +11,Gazole,2011,4,138.92 +11,Gazole,2011,5,134.95 +11,Gazole,2011,6,134.15 +11,Gazole,2011,7,135.06 +11,Gazole,2011,8,133.78 +11,Gazole,2011,9,135.76 +11,Gazole,2011,10,137.07 +11,Gazole,2011,11,140.52 +11,Gazole,2011,12,139.74 +11,Gazole,2012,1,144.24 +11,Gazole,2012,2,145.71 +11,Gazole,2012,3,148.24 +11,Gazole,2012,9,143.33 +11,Gazole,2012,4,147.13 +11,Gazole,2012,5,143.66 +11,Gazole,2012,6,137.81 +11,Gazole,2012,7,141.12 +11,Gazole,2012,8,146.89 +11,Gazole,2012,10,143.06 +11,Gazole,2012,11,141.01 +11,Gazole,2012,12,139.36 +11,Gazole,2013,1,140.72 +11,Gazole,2013,2,144.12 +11,Gazole,2013,3,142.27 +11,Gazole,2013,4,138.32 +11,Gazole,2013,5,136.21 +11,Gazole,2013,6,135.94 +11,Gazole,2013,7,138.15 +11,Gazole,2013,8,138.52 +11,Gazole,2013,9,140.28 +11,Gazole,2013,10,136.52 +11,Gazole,2013,11,135.44 +11,Gazole,2013,12,137.01 +11,Gazole,2014,12,117.99 +11,Gazole,2014,2,136.07 +11,Gazole,2014,6,134.54 +11,Gazole,2014,1,135.63 +11,Gazole,2014,3,134.48 +11,Gazole,2014,4,134.23 +11,Gazole,2014,7,134.02 +11,Gazole,2014,5,134.14 +11,Gazole,2014,8,133.59 +11,Gazole,2014,9,133.1 +11,Gazole,2014,10,129.93 +11,Gazole,2014,11,127.3 +11,Gazole,2015,1,114.63 +11,Gazole,2015,2,120.8 +11,Gazole,2015,3,123.92 +11,Gazole,2015,4,123.85 +11,Gazole,2015,5,126.75 +11,Gazole,2015,6,124.99 +11,Gazole,2015,7,121.54 +11,Gazole,2015,8,115.88 +11,Gazole,2015,9,114.2 +11,Gazole,2015,10,113.82 +11,Gazole,2015,11,113.52 +11,Gazole,2015,12,106.87 +11,Gazole,2016,5,116.09 +11,Gazole,2016,6,119.31 +11,Gazole,2016,7,115.73 +11,Gazole,2016,8,113.96 +11,Gazole,2016,9,115.13 +11,Gazole,2016,10,119.31 +11,Gazole,2016,11,118.45 +11,Gazole,2016,12,123.57 +11,Gazole,2016,1,105.42 +11,Gazole,2016,2,105.02 +11,Gazole,2016,3,109.75 +11,Gazole,2016,4,110.31 +11,Gazole,2017,1,131.26 +11,Gazole,2017,3,129.7 +11,Gazole,2017,4,130.07 +11,Gazole,2017,5,127.16 +11,Gazole,2017,6,124.58 +11,Gazole,2017,7,123.63 +11,Gazole,2017,8,125.56 +11,Gazole,2017,9,128.54 +11,Gazole,2017,10,130.41 +11,Gazole,2017,11,133.1 +11,Gazole,2017,12,133.62 +11,Gazole,2017,2,131.45 +11,Gazole,2018,1,144.94 +11,Gazole,2018,10,157.74 +11,Gazole,2018,2,143.39 +11,Gazole,2018,4,145.51 +11,Gazole,2018,5,150.71 +11,Gazole,2018,6,152.04 +11,Gazole,2018,12,147.83 +11,Gazole,2018,3,142.7 +11,Gazole,2018,7,150.62 +11,Gazole,2018,8,150.7 +11,Gazole,2018,9,153.12 +11,Gazole,2018,11,153.33 +11,Gazole,2019,4,152.94 +11,Gazole,2019,5,154.51 +11,Gazole,2019,1,145.58 +11,Gazole,2019,2,149.15 +11,Gazole,2019,11,150.37 +11,Gazole,2019,3,151.56 +11,Gazole,2019,6,149.29 +11,Gazole,2019,7,148.78 +11,Gazole,2019,8,147.97 +11,Gazole,2019,9,149.74 +11,Gazole,2019,10,150.62 +11,Gazole,2019,12,152.3 +11,Gazole,2020,12,132.12 +11,Gazole,2020,3,136.61 +11,Gazole,2020,1,153.22 +11,Gazole,2020,2,146.53 +11,Gazole,2020,4,129.14 +11,Gazole,2020,5,124.79 +11,Gazole,2020,6,127.43 +11,Gazole,2020,7,130.38 +11,Gazole,2020,8,130.07 +11,Gazole,2020,9,127.31 +11,Gazole,2020,10,126.71 +11,Gazole,2020,11,128.03 +11,Gazole,2021,11,162.71 +11,Gazole,2021,1,136.37 +11,Gazole,2021,2,141.11 +11,Gazole,2021,3,145.17 +11,Gazole,2021,4,144.48 +11,Gazole,2021,5,145.77 +11,Gazole,2021,6,148.31 +11,Gazole,2021,7,151.07 +11,Gazole,2021,8,150.32 +11,Gazole,2021,9,152.05 +11,Gazole,2021,10,161.17 +11,Gazole,2021,12,159.51 +11,Gazole,2022,5,194.0 +11,Gazole,2022,6,216.0 +11,Gazole,2022,7,204.0 +11,Gazole,2022,8,194.0 +11,Gazole,2022,9,178.0 +11,Gazole,2022,10,193.0 +11,Gazole,2022,11,193.0 +11,Gazole,2022,12,184.0 +11,Gazole,2022,2,178.0 +11,Gazole,2022,3,209.0 +11,Gazole,2022,4,190.0 +11,Gazole,2022,1,169.0 +11,Gazole,2023,12,183.0 +11,Gazole,2023,1,200.0 +11,Gazole,2023,2,191.0 +11,Gazole,2023,3,191.0 +11,Gazole,2023,4,187.0 +11,Gazole,2023,5,176.0 +11,Gazole,2023,6,177.0 +11,Gazole,2023,7,180.0 +11,Gazole,2023,8,192.0 +11,Gazole,2023,9,199.0 +11,Gazole,2023,10,196.0 +11,Gazole,2023,11,190.0 +11,Gazole,2024,1,181.0 +11,Gazole,2024,2,189.0 +11,Gazole,2024,3,187.0 +11,Gazole,2024,4,186.0 +11,Gazole,2024,5,179.0 +11,Gazole,2024,6,177.0 +11,Gazole,2024,7,180.0 +11,Gazole,2024,8,180.0 +11,Gazole,2024,9,180.0 +11,Gazole,2024,10,180.0 +11,Gazole,2024,11,180.0 +11,Gazole,2024,12,180.0 +11,SP95,2007,6,134.49 +11,SP95,2007,11,136.28 +11,SP95,2007,12,135.45 +11,SP95,2007,1,119.2 +11,SP95,2007,2,120.19 +11,SP95,2007,3,125.47 +11,SP95,2007,4,129.78 +11,SP95,2007,5,134.03 +11,SP95,2007,7,133.96 +11,SP95,2007,10,131.08 +11,SP95,2007,8,130.31 +11,SP95,2007,9,130.88 +11,SP95,2008,1,136.7 +11,SP95,2008,3,138.98 +11,SP95,2008,5,145.8 +11,SP95,2008,9,143.37 +11,SP95,2008,10,133.24 +11,SP95,2008,11,119.37 +11,SP95,2008,12,110.44 +11,SP95,2008,2,136.89 +11,SP95,2008,4,140.64 +11,SP95,2008,6,150.93 +11,SP95,2008,7,149.7 +11,SP95,2008,8,144.33 +11,SP95,2009,1,111.04 +11,SP95,2009,2,115.5 +11,SP95,2009,5,120.71 +11,SP95,2009,6,125.61 +11,SP95,2009,3,115.83 +11,SP95,2009,12,124.31 +11,SP95,2009,4,118.07 +11,SP95,2009,7,123.01 +11,SP95,2009,8,125.34 +11,SP95,2009,9,123.23 +11,SP95,2009,10,122.68 +11,SP95,2009,11,124.58 +11,SP95,2010,1,130.63 +11,SP95,2010,4,137.66 +11,SP95,2010,12,141.01 +11,SP95,2010,3,135.83 +11,SP95,2010,7,134.65 +11,SP95,2010,10,135.49 +11,SP95,2010,2,131.83 +11,SP95,2010,5,137.7 +11,SP95,2010,6,136.82 +11,SP95,2010,8,134.07 +11,SP95,2010,9,134.05 +11,SP95,2010,11,136.86 +11,SP95,2011,3,150.98 +11,SP95,2011,1,146.14 +11,SP95,2011,2,146.71 +11,SP95,2011,4,153.19 +11,SP95,2011,7,150.78 +11,SP95,2011,8,150.08 +11,SP95,2011,9,151.79 +11,SP95,2011,10,150.37 +11,SP95,2011,11,149.61 +11,SP95,2011,12,149.63 +11,SP95,2011,5,153.2 +11,SP95,2011,6,150.57 +11,SP95,2012,1,156.45 +11,SP95,2012,2,160.33 +11,SP95,2012,3,165.04 +11,SP95,2012,9,159.87 +11,SP95,2012,4,166.97 +11,SP95,2012,5,161.01 +11,SP95,2012,6,156.43 +11,SP95,2012,7,157.55 +11,SP95,2012,8,162.59 +11,SP95,2012,10,157.39 +11,SP95,2012,11,152.89 +11,SP95,2012,12,153.11 +11,SP95,2013,1,156.27 +11,SP95,2013,2,161.67 +11,SP95,2013,4,158.3 +11,SP95,2013,5,155.21 +11,SP95,2013,6,155.28 +11,SP95,2013,7,156.41 +11,SP95,2013,8,156.81 +11,SP95,2013,10,151.49 +11,SP95,2013,3,161.2 +11,SP95,2013,9,155.87 +11,SP95,2013,11,150.93 +11,SP95,2013,12,152.37 +11,SP95,2014,2,151.87 +11,SP95,2014,6,155.13 +11,SP95,2014,12,136.21 +11,SP95,2014,4,153.14 +11,SP95,2014,5,153.64 +11,SP95,2014,7,155.35 +11,SP95,2014,10,149.06 +11,SP95,2014,11,145.14 +11,SP95,2014,3,151.99 +11,SP95,2014,8,152.5 +11,SP95,2014,9,152.07 +11,SP95,2014,1,150.93 +11,SP95,2015,12,130.25 +11,SP95,2015,8,140.17 +11,SP95,2015,9,133.61 +11,SP95,2015,11,132.43 +11,SP95,2015,10,132.07 +11,SP95,2015,1,128.05 +11,SP95,2015,2,134.71 +11,SP95,2015,3,140.08 +11,SP95,2015,4,142.23 +11,SP95,2015,6,145.84 +11,SP95,2015,7,145.2 +11,SP95,2015,5,145.01 +11,SP95,2016,7,133.14 +11,SP95,2016,1,128.65 +11,SP95,2016,4,133.27 +11,SP95,2016,5,135.88 +11,SP95,2016,3,128.62 +11,SP95,2016,6,138.03 +11,SP95,2016,9,132.31 +11,SP95,2016,12,138.31 +11,SP95,2016,2,126.27 +11,SP95,2016,8,131.13 +11,SP95,2016,10,135.38 +11,SP95,2016,11,134.38 +11,SP95,2017,4,142.98 +11,SP95,2017,9,141.03 +11,SP95,2017,1,143.0 +11,SP95,2017,2,143.82 +11,SP95,2017,3,141.71 +11,SP95,2017,5,140.85 +11,SP95,2017,6,138.77 +11,SP95,2017,7,136.87 +11,SP95,2017,8,137.96 +11,SP95,2017,10,140.22 +11,SP95,2017,11,144.34 +11,SP95,2017,12,144.12 +11,SP95,2018,1,150.24 +11,SP95,2018,10,159.33 +11,SP95,2018,2,149.85 +11,SP95,2018,5,157.2 +11,SP95,2018,6,158.48 +11,SP95,2018,12,147.8 +11,SP95,2018,3,149.24 +11,SP95,2018,4,152.32 +11,SP95,2018,7,157.37 +11,SP95,2018,8,158.35 +11,SP95,2018,9,159.24 +11,SP95,2018,11,152.39 +11,SP95,2019,4,159.64 +11,SP95,2019,5,162.55 +11,SP95,2019,1,145.81 +11,SP95,2019,2,148.24 +11,SP95,2019,11,154.92 +11,SP95,2019,3,151.85 +11,SP95,2019,6,157.28 +11,SP95,2019,7,155.85 +11,SP95,2019,8,154.55 +11,SP95,2019,9,153.93 +11,SP95,2019,10,153.86 +11,SP95,2019,12,155.88 +11,SP95,2020,3,141.72 +11,SP95,2020,12,139.24 +11,SP95,2020,1,156.56 +11,SP95,2020,2,152.27 +11,SP95,2020,4,131.33 +11,SP95,2020,5,129.45 +11,SP95,2020,6,134.94 +11,SP95,2020,7,138.28 +11,SP95,2020,8,137.21 +11,SP95,2020,9,136.77 +11,SP95,2020,10,137.05 +11,SP95,2020,11,136.56 +11,SP95,2021,11,169.25 +11,SP95,2021,1,142.99 +11,SP95,2021,2,147.7 +11,SP95,2021,9,160.92 +11,SP95,2021,10,166.92 +11,SP95,2021,3,153.44 +11,SP95,2021,4,154.46 +11,SP95,2021,5,155.51 +11,SP95,2021,6,156.69 +11,SP95,2021,7,160.32 +11,SP95,2021,8,160.73 +11,SP95,2021,12,165.67 +11,SP95,2022,2,183.0 +11,SP95,2022,3,203.0 +11,SP95,2022,4,184.0 +11,SP95,2022,5,196.0 +11,SP95,2022,6,216.0 +11,SP95,2022,7,203.0 +11,SP95,2022,9,167.0 +11,SP95,2022,11,178.0 +11,SP95,2022,12,174.0 +11,SP95,2022,1,174.0 +11,SP95,2022,10,178.0 +11,SP95,2022,8,188.0 +11,SP95,2023,12,187.0 +11,SP95,2023,1,193.0 +11,SP95,2023,4,199.0 +11,SP95,2023,8,198.0 +11,SP95,2023,11,191.0 +11,SP95,2023,2,196.0 +11,SP95,2023,3,197.0 +11,SP95,2023,5,194.0 +11,SP95,2023,6,193.0 +11,SP95,2023,7,191.0 +11,SP95,2023,9,200.0 +11,SP95,2023,10,193.0 +11,SP95,2024,1,183.0 +11,SP95,2024,2,189.0 +11,SP95,2024,3,191.0 +11,SP95,2024,4,196.0 +11,SP95,2024,5,193.0 +11,SP95,2024,6,188.0 +11,SP95,2024,7,189.0 +11,SP95,2024,8,189.0 +11,SP95,2024,9,189.0 +11,SP95,2024,10,189.0 +11,SP95,2024,11,189.0 +11,SP95,2024,12,189.0 +11,GPLc,2007,12,74.86 +11,GPLc,2007,11,73.46 +11,GPLc,2007,1, +11,GPLc,2007,2, +11,GPLc,2007,3, +11,GPLc,2007,4, +11,GPLc,2007,5, +11,GPLc,2007,6, +11,GPLc,2007,7, +11,GPLc,2007,8, +11,GPLc,2007,9, +11,GPLc,2007,10, +11,GPLc,2008,1,75.24 +11,GPLc,2008,2,75.35 +11,GPLc,2008,3,75.26 +11,GPLc,2008,4,74.65 +11,GPLc,2008,5,74.91 +11,GPLc,2008,6,76.26 +11,GPLc,2008,7,77.22 +11,GPLc,2008,11,77.36 +11,GPLc,2008,12,73.37 +11,GPLc,2008,8,78.18 +11,GPLc,2008,10,78.44 +11,GPLc,2008,9,78.33 +11,GPLc,2009,3,66.91 +11,GPLc,2009,4,64.68 +11,GPLc,2009,5,64.08 +11,GPLc,2009,6,64.68 +11,GPLc,2009,7,65.34 +11,GPLc,2009,8,65.39 +11,GPLc,2009,9,67.79 +11,GPLc,2009,10,67.1 +11,GPLc,2009,11,67.78 +11,GPLc,2009,12,69.51 +11,GPLc,2009,2,69.01 +11,GPLc,2009,1,68.86 +11,GPLc,2010,1,70.18 +11,GPLc,2010,2,71.92 +11,GPLc,2010,3,70.81 +11,GPLc,2010,4,70.72 +11,GPLc,2010,5,71.74 +11,GPLc,2010,6,72.38 +11,GPLc,2010,7,74.58 +11,GPLc,2010,8,75.46 +11,GPLc,2010,9,75.92 +11,GPLc,2010,10,76.51 +11,GPLc,2010,11,77.98 +11,GPLc,2010,12,81.95 +11,GPLc,2011,1,83.12 +11,GPLc,2011,2,83.65 +11,GPLc,2011,3,83.74 +11,GPLc,2011,4,83.44 +11,GPLc,2011,5,83.87 +11,GPLc,2011,6,84.83 +11,GPLc,2011,7,85.49 +11,GPLc,2011,8,85.72 +11,GPLc,2011,9,85.78 +11,GPLc,2011,10,85.85 +11,GPLc,2011,11,85.85 +11,GPLc,2011,12,85.8 +11,GPLc,2012,1,85.46 +11,GPLc,2012,2,87.09 +11,GPLc,2012,3,89.14 +11,GPLc,2012,4,89.57 +11,GPLc,2012,5,89.42 +11,GPLc,2012,6,89.32 +11,GPLc,2012,7,87.8 +11,GPLc,2012,8,87.72 +11,GPLc,2012,9,87.59 +11,GPLc,2012,10,87.8 +11,GPLc,2012,11,88.61 +11,GPLc,2012,12,88.87 +11,GPLc,2013,1,89.18 +11,GPLc,2013,2,89.29 +11,GPLc,2013,3,90.1 +11,GPLc,2013,4,89.94 +11,GPLc,2013,5,88.44 +11,GPLc,2013,6,87.78 +11,GPLc,2013,7,87.56 +11,GPLc,2013,8,87.58 +11,GPLc,2013,9,87.99 +11,GPLc,2013,10,87.14 +11,GPLc,2013,11,87.02 +11,GPLc,2013,12,87.56 +11,GPLc,2014,1,87.8 +11,GPLc,2014,2,87.96 +11,GPLc,2014,3,87.86 +11,GPLc,2014,4,87.72 +11,GPLc,2014,5,87.58 +11,GPLc,2014,6,87.41 +11,GPLc,2014,7,86.87 +11,GPLc,2014,8,86.67 +11,GPLc,2014,9,86.6 +11,GPLc,2014,10,86.55 +11,GPLc,2014,11,86.13 +11,GPLc,2014,12,85.8 +11,GPLc,2015,12,76.56 +11,GPLc,2015,1,85.65 +11,GPLc,2015,7,80.37 +11,GPLc,2015,3,81.81 +11,GPLc,2015,4,81.91 +11,GPLc,2015,5,82.42 +11,GPLc,2015,6,81.36 +11,GPLc,2015,8,80.35 +11,GPLc,2015,9,79.23 +11,GPLc,2015,10,77.91 +11,GPLc,2015,11,77.28 +11,GPLc,2015,2,82.78 +11,GPLc,2016,9,71.57 +11,GPLc,2016,11,72.65 +11,GPLc,2016,12,73.6 +11,GPLc,2016,2,74.05 +11,GPLc,2016,3,72.55 +11,GPLc,2016,4,71.69 +11,GPLc,2016,5,71.81 +11,GPLc,2016,7,71.99 +11,GPLc,2016,10,71.99 +11,GPLc,2016,1,74.63 +11,GPLc,2016,6,72.38 +11,GPLc,2016,8,71.45 +11,GPLc,2017,3,76.43 +11,GPLc,2017,5,76.6 +11,GPLc,2017,6,76.6 +11,GPLc,2017,11,78.04 +11,GPLc,2017,12,79.05 +11,GPLc,2017,1,73.12 +11,GPLc,2017,2,75.24 +11,GPLc,2017,4,76.66 +11,GPLc,2017,7,75.54 +11,GPLc,2017,8,75.16 +11,GPLc,2017,9,75.87 +11,GPLc,2017,10,76.31 +11,GPLc,2018,1,84.81 +11,GPLc,2018,2,84.36 +11,GPLc,2018,3,83.55 +11,GPLc,2018,4,82.68 +11,GPLc,2018,5,82.73 +11,GPLc,2018,6,84.13 +11,GPLc,2018,7,84.61 +11,GPLc,2018,8,84.83 +11,GPLc,2018,9,85.64 +11,GPLc,2018,10,87.59 +11,GPLc,2018,11,87.55 +11,GPLc,2018,12,88.78 +11,GPLc,2019,1,86.85 +11,GPLc,2019,2,86.1 +11,GPLc,2019,3,86.46 +11,GPLc,2019,4,87.26 +11,GPLc,2019,5,88.08 +11,GPLc,2019,6,88.37 +11,GPLc,2019,7,87.74 +11,GPLc,2019,8,87.63 +11,GPLc,2019,9,87.87 +11,GPLc,2019,10,87.46 +11,GPLc,2019,11,87.6 +11,GPLc,2019,12,87.76 +11,GPLc,2020,12,87.75 +11,GPLc,2020,1,88.28 +11,GPLc,2020,2,88.37 +11,GPLc,2020,3,87.62 +11,GPLc,2020,4,87.22 +11,GPLc,2020,5,86.73 +11,GPLc,2020,6,86.48 +11,GPLc,2020,7,86.54 +11,GPLc,2020,8,86.57 +11,GPLc,2020,9,86.62 +11,GPLc,2020,10,86.78 +11,GPLc,2020,11,87.71 +11,GPLc,2021,3,86.57 +11,GPLc,2021,4,86.54 +11,GPLc,2021,5,86.52 +11,GPLc,2021,6,86.54 +11,GPLc,2021,7,86.87 +11,GPLc,2021,8,87.39 +11,GPLc,2021,1,86.35 +11,GPLc,2021,2,86.31 +11,GPLc,2021,9,87.84 +11,GPLc,2021,10,89.59 +11,GPLc,2021,11,91.18 +11,GPLc,2021,12,91.82 +11,GPLc,2022,5,86.0 +11,GPLc,2022,6,87.0 +11,GPLc,2022,7,88.0 +11,GPLc,2022,8,88.0 +11,GPLc,2022,9,78.0 +11,GPLc,2022,10,77.0 +11,GPLc,2022,11,83.0 +11,GPLc,2022,12,90.0 +11,GPLc,2022,1,93.0 +11,GPLc,2022,2,94.0 +11,GPLc,2022,3,97.0 +11,GPLc,2022,4,85.0 +11,GPLc,2023,12,103.0 +11,GPLc,2023,1,100.0 +11,GPLc,2023,4,102.0 +11,GPLc,2023,5,102.0 +11,GPLc,2023,6,101.0 +11,GPLc,2023,7,101.0 +11,GPLc,2023,8,101.0 +11,GPLc,2023,9,101.0 +11,GPLc,2023,10,102.0 +11,GPLc,2023,11,103.0 +11,GPLc,2023,2,100.0 +11,GPLc,2023,3,101.0 +11,GPLc,2024,1,99.0 +11,GPLc,2024,2,100.0 +11,GPLc,2024,3,100.0 +11,GPLc,2024,4,100.0 +11,GPLc,2024,5,100.0 +11,GPLc,2024,6,100.0 +11,GPLc,2024,7,100.0 +11,GPLc,2024,8,100.0 +11,GPLc,2024,9,100.0 +11,GPLc,2024,10,100.0 +11,GPLc,2024,11,100.0 +11,GPLc,2024,12,100.0 +11,E85,2007,3,79.38 +11,E85,2007,4,80.12 +11,E85,2007,6,81.07 +11,E85,2007,7,81.95 +11,E85,2007,8,82.34 +11,E85,2007,10,82.33 +11,E85,2007,11,82.59 +11,E85,2007,12,83.49 +11,E85,2007,1,79.32 +11,E85,2007,2,79.29 +11,E85,2007,5,80.44 +11,E85,2007,9,82.23 +11,E85,2008,12,89.85 +11,E85,2008,1,84.16 +11,E85,2008,2,85.27 +11,E85,2008,5,85.25 +11,E85,2008,7,87.45 +11,E85,2008,10,89.75 +11,E85,2008,4,85.24 +11,E85,2008,6,85.33 +11,E85,2008,8,89.3 +11,E85,2008,9,89.44 +11,E85,2008,11,89.8 +11,E85,2008,3,85.18 +11,E85,2009,3,87.57 +11,E85,2009,4,87.38 +11,E85,2009,5,87.31 +11,E85,2009,6,87.93 +11,E85,2009,7,92.56 +11,E85,2009,8,95.85 +11,E85,2009,9,99.42 +11,E85,2009,10,101.97 +11,E85,2009,11,103.02 +11,E85,2009,12,104.69 +11,E85,2009,2,86.58 +11,E85,2009,1,87.0 +11,E85,2010,1,90.47 +11,E85,2010,2,95.91 +11,E85,2010,3,98.77 +11,E85,2010,4,102.16 +11,E85,2010,5,106.55 +11,E85,2010,6,108.47 +11,E85,2010,7,109.85 +11,E85,2010,8,110.98 +11,E85,2010,9,112.01 +11,E85,2010,11,112.4 +11,E85,2010,12,112.89 +11,E85,2010,10,112.14 +11,E85,2011,1,87.5 +11,E85,2011,2,87.63 +11,E85,2011,3,88.46 +11,E85,2011,4,90.06 +11,E85,2011,5,90.63 +11,E85,2011,6,90.56 +11,E85,2011,7,91.36 +11,E85,2011,8,91.44 +11,E85,2011,9,91.93 +11,E85,2011,10,91.86 +11,E85,2011,11,91.77 +11,E85,2011,12,91.69 +11,E85,2012,1,90.02 +11,E85,2012,2,90.98 +11,E85,2012,3,90.91 +11,E85,2012,4,91.19 +11,E85,2012,5,90.8 +11,E85,2012,6,90.76 +11,E85,2012,7,90.83 +11,E85,2012,8,92.01 +11,E85,2012,9,91.71 +11,E85,2012,10,91.69 +11,E85,2012,11,91.94 +11,E85,2012,12,92.24 +11,E85,2013,1,91.48 +11,E85,2013,2,91.78 +11,E85,2013,3,91.01 +11,E85,2013,4,90.82 +11,E85,2013,5,90.51 +11,E85,2013,6,90.1 +11,E85,2013,7,89.83 +11,E85,2013,8,89.82 +11,E85,2013,9,89.56 +11,E85,2013,10,89.53 +11,E85,2013,11,90.06 +11,E85,2013,12,89.9 +11,E85,2014,1,87.96 +11,E85,2014,2,88.54 +11,E85,2014,3,89.42 +11,E85,2014,4,87.97 +11,E85,2014,5,87.51 +11,E85,2014,6,87.25 +11,E85,2014,7,86.93 +11,E85,2014,8,86.26 +11,E85,2014,9,86.49 +11,E85,2014,10,86.37 +11,E85,2014,11,86.41 +11,E85,2014,12,87.84 +11,E85,2015,1,83.3 +11,E85,2015,2,84.94 +11,E85,2015,3,83.12 +11,E85,2015,4,82.77 +11,E85,2015,5,83.09 +11,E85,2015,10,81.45 +11,E85,2015,12,79.55 +11,E85,2015,6,82.74 +11,E85,2015,7,81.99 +11,E85,2015,8,82.02 +11,E85,2015,9,81.97 +11,E85,2015,11,80.59 +11,E85,2016,9,76.41 +11,E85,2016,4,75.0 +11,E85,2016,5,75.15 +11,E85,2016,6,76.29 +11,E85,2016,7,76.46 +11,E85,2016,8,76.22 +11,E85,2016,10,75.78 +11,E85,2016,11,76.08 +11,E85,2016,12,76.37 +11,E85,2016,1,72.25 +11,E85,2016,2,73.94 +11,E85,2016,3,74.99 +11,E85,2017,1,70.83 +11,E85,2017,2,71.22 +11,E85,2017,3,70.92 +11,E85,2017,4,70.92 +11,E85,2017,5,71.79 +11,E85,2017,7,72.92 +11,E85,2017,9,73.12 +11,E85,2017,10,73.1 +11,E85,2017,11,73.8 +11,E85,2017,12,74.09 +11,E85,2017,6,72.12 +11,E85,2017,8,72.84 +11,E85,2018,1,73.05 +11,E85,2018,2,72.67 +11,E85,2018,3,72.53 +11,E85,2018,4,72.41 +11,E85,2018,5,72.12 +11,E85,2018,6,71.89 +11,E85,2018,7,72.41 +11,E85,2018,8,72.61 +11,E85,2018,9,73.14 +11,E85,2018,10,72.75 +11,E85,2018,11,71.39 +11,E85,2018,12,74.12 +11,E85,2019,1,71.24 +11,E85,2019,2,70.1 +11,E85,2019,3,70.01 +11,E85,2019,4,70.85 +11,E85,2019,5,72.26 +11,E85,2019,6,73.09 +11,E85,2019,7,72.91 +11,E85,2019,8,72.99 +11,E85,2019,9,74.35 +11,E85,2019,10,74.26 +11,E85,2019,11,74.43 +11,E85,2019,12,74.92 +11,E85,2020,1,73.85 +11,E85,2020,2,73.18 +11,E85,2020,3,73.08 +11,E85,2020,4,73.16 +11,E85,2020,5,73.21 +11,E85,2020,6,72.61 +11,E85,2020,7,72.54 +11,E85,2020,8,72.34 +11,E85,2020,9,72.25 +11,E85,2020,10,72.19 +11,E85,2020,11,72.08 +11,E85,2020,12,72.24 +11,E85,2021,1,73.3 +11,E85,2021,2,73.0 +11,E85,2021,3,72.94 +11,E85,2021,4,72.8 +11,E85,2021,5,72.71 +11,E85,2021,6,72.78 +11,E85,2021,7,72.85 +11,E85,2021,8,72.95 +11,E85,2021,9,72.99 +11,E85,2021,10,73.35 +11,E85,2021,11,73.56 +11,E85,2021,12,73.62 +11,E85,2022,1,76.0 +11,E85,2022,2,78.0 +11,E85,2022,3,89.0 +11,E85,2022,4,75.0 +11,E85,2022,5,78.0 +11,E85,2022,6,85.0 +11,E85,2022,7,88.0 +11,E85,2022,8,86.0 +11,E85,2022,9,71.0 +11,E85,2022,10,75.0 +11,E85,2022,11,87.0 +11,E85,2022,12,92.0 +11,E85,2023,12,103.0 +11,E85,2023,1,116.0 +11,E85,2023,2,115.0 +11,E85,2023,3,115.0 +11,E85,2023,4,115.0 +11,E85,2023,5,114.0 +11,E85,2023,6,112.0 +11,E85,2023,7,108.0 +11,E85,2023,8,107.0 +11,E85,2023,9,106.0 +11,E85,2023,10,105.0 +11,E85,2023,11,105.0 +11,E85,2024,1,93.0 +11,E85,2024,2,91.0 +11,E85,2024,3,91.0 +11,E85,2024,4,90.0 +11,E85,2024,5,90.0 +11,E85,2024,6,87.0 +11,E85,2024,7,86.0 +11,E85,2024,8,86.0 +11,E85,2024,9,86.0 +11,E85,2024,10,86.0 +11,E85,2024,11,86.0 +11,E85,2024,12,86.0 +11,E10,2009,4,118.94 +11,E10,2009,5,122.3 +11,E10,2009,6,129.93 +11,E10,2009,7,126.21 +11,E10,2009,9,126.49 +11,E10,2009,10,125.62 +11,E10,2009,11,127.91 +11,E10,2009,12,126.92 +11,E10,2009,8,129.46 +11,E10,2009,1, +11,E10,2009,2, +11,E10,2009,3, +11,E10,2010,1,131.12 +11,E10,2010,2,132.54 +11,E10,2010,3,137.14 +11,E10,2010,4,139.34 +11,E10,2010,5,139.34 +11,E10,2010,6,138.26 +11,E10,2010,7,136.1 +11,E10,2010,8,135.0 +11,E10,2010,9,134.91 +11,E10,2010,10,136.32 +11,E10,2010,11,137.91 +11,E10,2010,12,142.98 +11,E10,2011,1,146.79 +11,E10,2011,2,147.6 +11,E10,2011,3,151.83 +11,E10,2011,4,154.46 +11,E10,2011,5,154.49 +11,E10,2011,6,151.5 +11,E10,2011,7,152.17 +11,E10,2011,8,150.9 +11,E10,2011,9,153.16 +11,E10,2011,10,151.5 +11,E10,2011,11,150.63 +11,E10,2011,12,150.28 +11,E10,2012,1,156.51 +11,E10,2012,2,159.76 +11,E10,2012,3,164.5 +11,E10,2012,4,166.89 +11,E10,2012,5,160.0 +11,E10,2012,6,155.04 +11,E10,2012,7,157.61 +11,E10,2012,8,162.45 +11,E10,2012,9,158.99 +11,E10,2012,10,155.91 +11,E10,2012,11,150.4 +11,E10,2012,12,150.48 +11,E10,2013,1,154.79 +11,E10,2013,2,160.65 +11,E10,2013,3,159.65 +11,E10,2013,4,157.12 +11,E10,2013,5,154.58 +11,E10,2013,6,154.51 +11,E10,2013,7,156.3 +11,E10,2013,8,156.71 +11,E10,2013,9,155.67 +11,E10,2013,10,150.36 +11,E10,2013,11,149.34 +11,E10,2013,12,150.95 +11,E10,2014,12,134.48 +11,E10,2014,1,150.18 +11,E10,2014,2,151.13 +11,E10,2014,3,151.16 +11,E10,2014,4,152.68 +11,E10,2014,7,155.04 +11,E10,2014,5,153.09 +11,E10,2014,6,154.82 +11,E10,2014,8,151.76 +11,E10,2014,9,151.46 +11,E10,2014,10,148.12 +11,E10,2014,11,143.75 +11,E10,2015,1,129.16 +11,E10,2015,2,135.27 +11,E10,2015,3,140.32 +11,E10,2015,4,143.09 +11,E10,2015,5,145.76 +11,E10,2015,6,146.56 +11,E10,2015,7,146.03 +11,E10,2015,8,140.01 +11,E10,2015,9,133.06 +11,E10,2015,10,130.83 +11,E10,2015,11,131.14 +11,E10,2015,12,128.52 +11,E10,2016,5,134.42 +11,E10,2016,6,136.75 +11,E10,2016,7,131.06 +11,E10,2016,8,129.04 +11,E10,2016,9,130.3 +11,E10,2016,10,133.48 +11,E10,2016,11,132.17 +11,E10,2016,12,136.7 +11,E10,2016,1,126.74 +11,E10,2016,2,124.14 +11,E10,2016,3,126.48 +11,E10,2016,4,131.42 +11,E10,2017,1,141.14 +11,E10,2017,2,142.1 +11,E10,2017,3,139.77 +11,E10,2017,4,141.7 +11,E10,2017,5,139.0 +11,E10,2017,6,136.63 +11,E10,2017,7,135.16 +11,E10,2017,8,136.66 +11,E10,2017,9,140.24 +11,E10,2017,10,138.84 +11,E10,2017,11,143.21 +11,E10,2017,12,142.84 +11,E10,2018,1,149.46 +11,E10,2018,2,148.45 +11,E10,2018,3,147.6 +11,E10,2018,4,150.92 +11,E10,2018,5,155.6 +11,E10,2018,6,156.65 +11,E10,2018,7,155.68 +11,E10,2018,8,156.76 +11,E10,2018,9,157.76 +11,E10,2018,10,157.81 +11,E10,2018,11,149.79 +11,E10,2018,12,144.77 +11,E10,2019,1,143.95 +11,E10,2019,2,146.77 +11,E10,2019,3,150.4 +11,E10,2019,4,158.33 +11,E10,2019,5,161.43 +11,E10,2019,6,156.1 +11,E10,2019,7,154.81 +11,E10,2019,8,153.27 +11,E10,2019,9,152.65 +11,E10,2019,10,152.59 +11,E10,2019,11,153.4 +11,E10,2019,12,154.88 +11,E10,2020,12,139.01 +11,E10,2020,1,155.54 +11,E10,2020,2,151.54 +11,E10,2020,3,141.46 +11,E10,2020,4,131.18 +11,E10,2020,5,129.22 +11,E10,2020,6,134.62 +11,E10,2020,7,138.21 +11,E10,2020,8,136.85 +11,E10,2020,9,136.13 +11,E10,2020,10,136.48 +11,E10,2020,11,136.47 +11,E10,2021,1,144.07 +11,E10,2021,2,148.73 +11,E10,2021,3,154.0 +11,E10,2021,4,155.05 +11,E10,2021,5,155.74 +11,E10,2021,6,157.26 +11,E10,2021,7,160.82 +11,E10,2021,8,161.12 +11,E10,2021,9,161.44 +11,E10,2021,12,165.08 +11,E10,2021,10,167.82 +11,E10,2021,11,169.52 +11,E10,2022,5,195.0 +11,E10,2022,6,215.0 +11,E10,2022,7,199.0 +11,E10,2022,8,183.0 +11,E10,2022,9,157.0 +11,E10,2022,10,168.0 +11,E10,2022,11,173.0 +11,E10,2022,12,169.0 +11,E10,2022,1,174.0 +11,E10,2022,2,182.0 +11,E10,2022,3,201.0 +11,E10,2022,4,179.0 +11,E10,2023,12,183.0 +11,E10,2023,1,193.0 +11,E10,2023,2,195.0 +11,E10,2023,3,195.0 +11,E10,2023,4,198.0 +11,E10,2023,5,192.0 +11,E10,2023,6,191.0 +11,E10,2023,7,190.0 +11,E10,2023,8,198.0 +11,E10,2023,9,199.0 +11,E10,2023,10,192.0 +11,E10,2023,11,188.0 +11,E10,2024,1,183.0 +11,E10,2024,2,188.0 +11,E10,2024,3,191.0 +11,E10,2024,4,195.0 +11,E10,2024,5,192.0 +11,E10,2024,6,187.0 +11,E10,2024,7,187.0 +11,E10,2024,8,187.0 +11,E10,2024,9,187.0 +11,E10,2024,10,187.0 +11,E10,2024,11,187.0 +11,E10,2024,12,187.0 +11,SP98,2013,8,162.84 +11,SP98,2013,6,158.17 +11,SP98,2013,7,161.99 +11,SP98,2013,9,162.02 +11,SP98,2013,10,157.18 +11,SP98,2013,11,156.29 +11,SP98,2013,12,157.79 +11,SP98,2013,1, +11,SP98,2013,2, +11,SP98,2013,3, +11,SP98,2013,4, +11,SP98,2013,5, +11,SP98,2014,12,140.89 +11,SP98,2014,2,157.11 +11,SP98,2014,6,160.41 +11,SP98,2014,1,155.94 +11,SP98,2014,3,157.31 +11,SP98,2014,4,158.51 +11,SP98,2014,7,160.81 +11,SP98,2014,5,159.08 +11,SP98,2014,8,157.69 +11,SP98,2014,9,157.32 +11,SP98,2014,10,154.3 +11,SP98,2014,11,150.1 +11,SP98,2015,1,133.08 +11,SP98,2015,2,139.64 +11,SP98,2015,3,145.79 +11,SP98,2015,4,148.56 +11,SP98,2015,5,151.43 +11,SP98,2015,6,152.33 +11,SP98,2015,7,151.71 +11,SP98,2015,8,146.14 +11,SP98,2015,9,138.82 +11,SP98,2015,10,136.74 +11,SP98,2015,11,137.0 +11,SP98,2015,12,134.63 +11,SP98,2016,5,141.2 +11,SP98,2016,6,143.58 +11,SP98,2016,7,139.14 +11,SP98,2016,8,137.35 +11,SP98,2016,9,138.57 +11,SP98,2016,10,141.64 +11,SP98,2016,11,140.79 +11,SP98,2016,12,144.65 +11,SP98,2016,1,134.06 +11,SP98,2016,2,131.37 +11,SP98,2016,3,133.58 +11,SP98,2016,4,138.36 +11,SP98,2017,1,149.75 +11,SP98,2017,2,150.51 +11,SP98,2017,3,148.16 +11,SP98,2017,4,149.7 +11,SP98,2017,5,147.26 +11,SP98,2017,6,144.91 +11,SP98,2017,7,142.9 +11,SP98,2017,8,144.04 +11,SP98,2017,9,147.34 +11,SP98,2017,10,146.37 +11,SP98,2017,11,151.01 +11,SP98,2017,12,150.77 +11,SP98,2018,1,157.28 +11,SP98,2018,10,165.96 +11,SP98,2018,2,156.56 +11,SP98,2018,12,152.92 +11,SP98,2018,3,155.37 +11,SP98,2018,4,158.48 +11,SP98,2018,5,163.35 +11,SP98,2018,6,164.77 +11,SP98,2018,7,163.93 +11,SP98,2018,8,164.84 +11,SP98,2018,9,165.91 +11,SP98,2018,11,158.1 +11,SP98,2019,4,166.04 +11,SP98,2019,5,169.3 +11,SP98,2019,1,151.72 +11,SP98,2019,2,154.49 +11,SP98,2019,11,161.83 +11,SP98,2019,3,158.07 +11,SP98,2019,6,164.24 +11,SP98,2019,7,162.89 +11,SP98,2019,8,161.5 +11,SP98,2019,9,160.85 +11,SP98,2019,10,160.9 +11,SP98,2019,12,163.14 +11,SP98,2020,12,147.76 +11,SP98,2020,3,150.37 +11,SP98,2020,1,163.57 +11,SP98,2020,2,159.5 +11,SP98,2020,4,139.87 +11,SP98,2020,5,137.5 +11,SP98,2020,6,142.9 +11,SP98,2020,7,146.55 +11,SP98,2020,8,145.43 +11,SP98,2020,9,144.78 +11,SP98,2020,10,145.24 +11,SP98,2020,11,145.35 +11,SP98,2021,1,152.36 +11,SP98,2021,2,156.93 +11,SP98,2021,3,162.73 +11,SP98,2021,4,163.89 +11,SP98,2021,5,164.7 +11,SP98,2021,6,166.13 +11,SP98,2021,7,169.93 +11,SP98,2021,8,170.45 +11,SP98,2021,9,170.64 +11,SP98,2021,10,177.04 +11,SP98,2021,11,179.19 +11,SP98,2021,12,175.13 +11,SP98,2022,5,205.0 +11,SP98,2022,6,227.0 +11,SP98,2022,7,211.0 +11,SP98,2022,8,194.0 +11,SP98,2022,9,167.0 +11,SP98,2022,10,180.0 +11,SP98,2022,11,184.0 +11,SP98,2022,12,180.0 +11,SP98,2022,2,191.0 +11,SP98,2022,3,211.0 +11,SP98,2022,4,190.0 +11,SP98,2022,1,183.0 +11,SP98,2023,12,193.0 +11,SP98,2023,1,203.0 +11,SP98,2023,2,204.0 +11,SP98,2023,3,205.0 +11,SP98,2023,4,206.0 +11,SP98,2023,5,200.0 +11,SP98,2023,6,200.0 +11,SP98,2023,7,199.0 +11,SP98,2023,8,205.0 +11,SP98,2023,9,206.0 +11,SP98,2023,10,200.0 +11,SP98,2023,11,197.0 +11,SP98,2024,1,192.0 +11,SP98,2024,2,196.0 +11,SP98,2024,3,199.0 +11,SP98,2024,4,203.0 +11,SP98,2024,5,200.0 +11,SP98,2024,6,196.0 +11,SP98,2024,7,197.0 +11,SP98,2024,8,197.0 +11,SP98,2024,9,197.0 +11,SP98,2024,10,197.0 +11,SP98,2024,11,197.0 +11,SP98,2024,12,197.0 +04,Gazole,2011,3,146.36 +04,Gazole,2011,5,142.84 +04,Gazole,2011,6,140.5 +04,Gazole,2011,7,141.68 +04,Gazole,2011,8,143.58 +04,Gazole,2011,9,146.3 +04,Gazole,2011,10,146.74 +04,Gazole,2011,11,148.73 +04,Gazole,2011,12,148.94 +04,Gazole,2011,1, +04,Gazole,2011,2, +04,Gazole,2011,4,147.0 +04,Gazole,2012,1,151.77 +04,Gazole,2012,2,152.45 +04,Gazole,2012,3,156.06 +04,Gazole,2012,4,154.57 +04,Gazole,2012,5,151.58 +04,Gazole,2012,6,146.0 +04,Gazole,2012,7,147.68 +04,Gazole,2012,8,153.9 +04,Gazole,2012,9,150.87 +04,Gazole,2012,10,150.74 +04,Gazole,2012,11,148.73 +04,Gazole,2012,12,149.19 +04,Gazole,2013,1,150.68 +04,Gazole,2013,2,153.21 +04,Gazole,2013,3,152.61 +04,Gazole,2013,4,148.47 +04,Gazole,2013,5,144.97 +04,Gazole,2013,6,145.63 +04,Gazole,2013,7,147.0 +04,Gazole,2013,8,147.7 +04,Gazole,2013,9,149.47 +04,Gazole,2013,10,146.45 +04,Gazole,2013,11,144.8 +04,Gazole,2013,12,146.29 +04,Gazole,2014,1,142.41 +04,Gazole,2014,3,140.19 +04,Gazole,2014,4,140.38 +04,Gazole,2014,5,139.96 +04,Gazole,2014,6,141.0 +04,Gazole,2014,7,140.11 +04,Gazole,2014,8,139.58 +04,Gazole,2014,9,139.42 +04,Gazole,2014,2,143.1 +04,Gazole,2014,10,137.35 +04,Gazole,2014,11,135.92 +04,Gazole,2014,12,131.03 +04,Gazole,2015,1,116.98 +04,Gazole,2015,2,124.26 +04,Gazole,2015,3,125.85 +04,Gazole,2015,4,126.07 +04,Gazole,2015,5,129.85 +04,Gazole,2015,6,127.32 +04,Gazole,2015,7,123.9 +04,Gazole,2015,8,117.8 +04,Gazole,2015,9,116.5 +04,Gazole,2015,10,115.82 +04,Gazole,2015,11,115.68 +04,Gazole,2015,12,108.16 +04,Gazole,2016,1,106.8 +04,Gazole,2016,2,107.73 +04,Gazole,2016,3,112.79 +04,Gazole,2016,4,113.65 +04,Gazole,2016,5,119.58 +04,Gazole,2016,6,119.13 +04,Gazole,2016,7,109.4 +04,Gazole,2016,8,108.53 +04,Gazole,2016,9,108.94 +04,Gazole,2016,10,115.27 +04,Gazole,2016,11,115.9 +04,Gazole,2016,12,120.53 +04,Gazole,2017,1,129.73 +04,Gazole,2017,2,131.86 +04,Gazole,2017,3,132.77 +04,Gazole,2017,4,134.65 +04,Gazole,2017,5,130.32 +04,Gazole,2017,6,127.98 +04,Gazole,2017,7,129.13 +04,Gazole,2017,9,135.12 +04,Gazole,2017,10,137.82 +04,Gazole,2017,11,141.17 +04,Gazole,2017,12,140.29 +04,Gazole,2017,8,129.9 +04,Gazole,2018,1, +04,Gazole,2018,2, +04,Gazole,2018,3, +04,Gazole,2018,4, +04,Gazole,2018,5, +04,Gazole,2018,6, +04,Gazole,2018,7, +04,Gazole,2018,8, +04,Gazole,2018,9, +04,Gazole,2018,10, +04,Gazole,2018,11, +04,Gazole,2018,12, +04,Gazole,2019,1, +04,Gazole,2019,2, +04,Gazole,2019,3, +04,Gazole,2019,4, +04,Gazole,2019,5, +04,Gazole,2019,6, +04,Gazole,2019,7, +04,Gazole,2019,8, +04,Gazole,2019,9, +04,Gazole,2019,10, +04,Gazole,2019,11, +04,Gazole,2019,12, +04,Gazole,2020,1, +04,Gazole,2020,2, +04,Gazole,2020,3, +04,Gazole,2020,4, +04,Gazole,2020,5, +04,Gazole,2020,6, +04,Gazole,2020,7, +04,Gazole,2020,8, +04,Gazole,2020,9, +04,Gazole,2020,10, +04,Gazole,2020,11, +04,Gazole,2020,12, +04,Gazole,2021,1, +04,Gazole,2021,2, +04,Gazole,2021,3, +04,Gazole,2021,4, +04,Gazole,2021,5, +04,Gazole,2021,6, +04,Gazole,2021,7, +04,Gazole,2021,8, +04,Gazole,2021,9, +04,Gazole,2021,10, +04,Gazole,2021,11, +04,Gazole,2021,12, +04,Gazole,2022,1, +04,Gazole,2022,2, +04,Gazole,2022,3, +04,Gazole,2022,4, +04,Gazole,2022,5, +04,Gazole,2022,6, +04,Gazole,2022,7, +04,Gazole,2022,8, +04,Gazole,2022,9, +04,Gazole,2022,10, +04,Gazole,2022,11, +04,Gazole,2022,12, +04,Gazole,2023,1, +04,Gazole,2023,2, +04,Gazole,2023,3, +04,Gazole,2023,4, +04,Gazole,2023,5, +04,Gazole,2023,6, +04,Gazole,2023,7, +04,Gazole,2023,8, +04,Gazole,2023,9, +04,Gazole,2023,10, +04,Gazole,2023,11, +04,Gazole,2023,12, +04,Gazole,2024,1, +04,Gazole,2024,2, +04,Gazole,2024,3, +04,Gazole,2024,4, +04,Gazole,2024,5, +04,Gazole,2024,6, +04,Gazole,2024,7, +04,Gazole,2024,8, +04,Gazole,2024,9, +04,Gazole,2024,10, +04,Gazole,2024,11, +04,Gazole,2024,12, +04,SP95,2011,3,160.5 +04,SP95,2011,4,160.47 +04,SP95,2011,5,160.74 +04,SP95,2011,6,158.73 +04,SP95,2011,7,160.42 +04,SP95,2011,8,161.42 +04,SP95,2011,9,162.43 +04,SP95,2011,10,160.42 +04,SP95,2011,11,159.63 +04,SP95,2011,12,159.06 +04,SP95,2011,1, +04,SP95,2011,2, +04,SP95,2012,1,164.88 +04,SP95,2012,2,165.97 +04,SP95,2012,3,170.71 +04,SP95,2012,4,173.57 +04,SP95,2012,5,168.32 +04,SP95,2012,6,161.87 +04,SP95,2012,7,163.13 +04,SP95,2012,8,170.39 +04,SP95,2012,9,168.37 +04,SP95,2012,10,164.68 +04,SP95,2012,11,159.3 +04,SP95,2012,12,161.0 +04,SP95,2013,1, +04,SP95,2013,2, +04,SP95,2013,3, +04,SP95,2013,4, +04,SP95,2013,5, +04,SP95,2013,6, +04,SP95,2013,7, +04,SP95,2013,8, +04,SP95,2013,9, +04,SP95,2013,10, +04,SP95,2013,11, +04,SP95,2013,12, +04,SP95,2014,1, +04,SP95,2014,2, +04,SP95,2014,3, +04,SP95,2014,4, +04,SP95,2014,5, +04,SP95,2014,6, +04,SP95,2014,7, +04,SP95,2014,8, +04,SP95,2014,9, +04,SP95,2014,10, +04,SP95,2014,11, +04,SP95,2014,12, +04,SP95,2015,1, +04,SP95,2015,2, +04,SP95,2015,3, +04,SP95,2015,4, +04,SP95,2015,5, +04,SP95,2015,6, +04,SP95,2015,7, +04,SP95,2015,8, +04,SP95,2015,9, +04,SP95,2015,10, +04,SP95,2015,11, +04,SP95,2015,12, +04,SP95,2016,1, +04,SP95,2016,2, +04,SP95,2016,3, +04,SP95,2016,4, +04,SP95,2016,5, +04,SP95,2016,6, +04,SP95,2016,7, +04,SP95,2016,8, +04,SP95,2016,9, +04,SP95,2016,10, +04,SP95,2016,11, +04,SP95,2016,12, +04,SP95,2017,1, +04,SP95,2017,2, +04,SP95,2017,3, +04,SP95,2017,4, +04,SP95,2017,5, +04,SP95,2017,6, +04,SP95,2017,7, +04,SP95,2017,8, +04,SP95,2017,9, +04,SP95,2017,10, +04,SP95,2017,11, +04,SP95,2017,12, +04,SP95,2018,1, +04,SP95,2018,2, +04,SP95,2018,3, +04,SP95,2018,4, +04,SP95,2018,5, +04,SP95,2018,6, +04,SP95,2018,7, +04,SP95,2018,8, +04,SP95,2018,9, +04,SP95,2018,10, +04,SP95,2018,11, +04,SP95,2018,12, +04,SP95,2019,1, +04,SP95,2019,2, +04,SP95,2019,3, +04,SP95,2019,4, +04,SP95,2019,5, +04,SP95,2019,6, +04,SP95,2019,7, +04,SP95,2019,8, +04,SP95,2019,9, +04,SP95,2019,10, +04,SP95,2019,11, +04,SP95,2019,12, +04,SP95,2020,1, +04,SP95,2020,2, +04,SP95,2020,3, +04,SP95,2020,4, +04,SP95,2020,5, +04,SP95,2020,6, +04,SP95,2020,7, +04,SP95,2020,8, +04,SP95,2020,9, +04,SP95,2020,10, +04,SP95,2020,11, +04,SP95,2020,12, +04,SP95,2021,1, +04,SP95,2021,2, +04,SP95,2021,3, +04,SP95,2021,4, +04,SP95,2021,5, +04,SP95,2021,6, +04,SP95,2021,7, +04,SP95,2021,8, +04,SP95,2021,9, +04,SP95,2021,10, +04,SP95,2021,11, +04,SP95,2021,12, +04,SP95,2022,1, +04,SP95,2022,2, +04,SP95,2022,3, +04,SP95,2022,4, +04,SP95,2022,5, +04,SP95,2022,6, +04,SP95,2022,7, +04,SP95,2022,8, +04,SP95,2022,9, +04,SP95,2022,10, +04,SP95,2022,11, +04,SP95,2022,12, +04,SP95,2023,1, +04,SP95,2023,2, +04,SP95,2023,3, +04,SP95,2023,4, +04,SP95,2023,5, +04,SP95,2023,6, +04,SP95,2023,7, +04,SP95,2023,8, +04,SP95,2023,9, +04,SP95,2023,10, +04,SP95,2023,11, +04,SP95,2023,12, +04,SP95,2024,1, +04,SP95,2024,2, +04,SP95,2024,3, +04,SP95,2024,4, +04,SP95,2024,5, +04,SP95,2024,6, +04,SP95,2024,7, +04,SP95,2024,8, +04,SP95,2024,9, +04,SP95,2024,10, +04,SP95,2024,11, +04,SP95,2024,12, +04,GPLc,2011,3,88.0 +04,GPLc,2011,4,88.33 +04,GPLc,2011,5,89.26 +04,GPLc,2011,6,88.97 +04,GPLc,2011,8,88.9 +04,GPLc,2011,10,90.0 +04,GPLc,2011,12,90.0 +04,GPLc,2011,1, +04,GPLc,2011,2, +04,GPLc,2011,7,88.0 +04,GPLc,2011,9,90.0 +04,GPLc,2011,11,90.0 +04,GPLc,2012,2,92.78 +04,GPLc,2012,3,95.1 +04,GPLc,2012,6,95.2 +04,GPLc,2012,9,94.0 +04,GPLc,2012,10,96.9 +04,GPLc,2012,11,97.0 +04,GPLc,2012,12,97.0 +04,GPLc,2012,1, +04,GPLc,2012,4,96.0 +04,GPLc,2012,5,96.0 +04,GPLc,2012,7,94.0 +04,GPLc,2012,8,94.0 +04,GPLc,2013,1,98.0 +04,GPLc,2013,3,97.23 +04,GPLc,2013,4,97.0 +04,GPLc,2013,5,96.94 +04,GPLc,2013,6,95.67 +04,GPLc,2013,7,93.94 +04,GPLc,2013,8,93.0 +04,GPLc,2013,9,93.0 +04,GPLc,2013,10,93.0 +04,GPLc,2013,11,93.0 +04,GPLc,2013,12,93.68 +04,GPLc,2013,2,98.0 +04,GPLc,2014,1,94.86 +04,GPLc,2014,3,93.19 +04,GPLc,2014,4,94.33 +04,GPLc,2014,5,94.23 +04,GPLc,2014,6,94.3 +04,GPLc,2014,7,94.0 +04,GPLc,2014,8,94.0 +04,GPLc,2014,9,94.0 +04,GPLc,2014,2,95.0 +04,GPLc,2014,10,94.0 +04,GPLc,2014,11,94.0 +04,GPLc,2014,12,94.0 +04,GPLc,2015,1, +04,GPLc,2015,2, +04,GPLc,2015,3, +04,GPLc,2015,4, +04,GPLc,2015,5, +04,GPLc,2015,6, +04,GPLc,2015,7, +04,GPLc,2015,8, +04,GPLc,2015,9, +04,GPLc,2015,10, +04,GPLc,2015,11, +04,GPLc,2015,12, +04,GPLc,2016,1, +04,GPLc,2016,2, +04,GPLc,2016,3, +04,GPLc,2016,4, +04,GPLc,2016,5, +04,GPLc,2016,6, +04,GPLc,2016,7, +04,GPLc,2016,8, +04,GPLc,2016,9, +04,GPLc,2016,10, +04,GPLc,2016,11, +04,GPLc,2016,12, +04,GPLc,2017,1, +04,GPLc,2017,2, +04,GPLc,2017,3, +04,GPLc,2017,4, +04,GPLc,2017,5, +04,GPLc,2017,6, +04,GPLc,2017,7, +04,GPLc,2017,8, +04,GPLc,2017,9, +04,GPLc,2017,10, +04,GPLc,2017,11, +04,GPLc,2017,12, +04,GPLc,2018,1, +04,GPLc,2018,2, +04,GPLc,2018,3, +04,GPLc,2018,4, +04,GPLc,2018,5, +04,GPLc,2018,6, +04,GPLc,2018,7, +04,GPLc,2018,8, +04,GPLc,2018,9, +04,GPLc,2018,10, +04,GPLc,2018,11, +04,GPLc,2018,12, +04,GPLc,2019,1, +04,GPLc,2019,2, +04,GPLc,2019,3, +04,GPLc,2019,4, +04,GPLc,2019,5, +04,GPLc,2019,6, +04,GPLc,2019,7, +04,GPLc,2019,8, +04,GPLc,2019,9, +04,GPLc,2019,10, +04,GPLc,2019,11, +04,GPLc,2019,12, +04,GPLc,2020,1, +04,GPLc,2020,2, +04,GPLc,2020,3, +04,GPLc,2020,4, +04,GPLc,2020,5, +04,GPLc,2020,6, +04,GPLc,2020,7, +04,GPLc,2020,8, +04,GPLc,2020,9, +04,GPLc,2020,10, +04,GPLc,2020,11, +04,GPLc,2020,12, +04,GPLc,2021,1, +04,GPLc,2021,2, +04,GPLc,2021,3, +04,GPLc,2021,4, +04,GPLc,2021,5, +04,GPLc,2021,6, +04,GPLc,2021,7, +04,GPLc,2021,8, +04,GPLc,2021,9, +04,GPLc,2021,10, +04,GPLc,2021,11, +04,GPLc,2021,12, +04,GPLc,2022,1, +04,GPLc,2022,2, +04,GPLc,2022,3, +04,GPLc,2022,4, +04,GPLc,2022,5, +04,GPLc,2022,6, +04,GPLc,2022,7, +04,GPLc,2022,8, +04,GPLc,2022,9, +04,GPLc,2022,10, +04,GPLc,2022,11, +04,GPLc,2022,12, +04,GPLc,2023,1, +04,GPLc,2023,2, +04,GPLc,2023,3, +04,GPLc,2023,4, +04,GPLc,2023,5, +04,GPLc,2023,6, +04,GPLc,2023,7, +04,GPLc,2023,8, +04,GPLc,2023,9, +04,GPLc,2023,10, +04,GPLc,2023,11, +04,GPLc,2023,12, +04,GPLc,2024,1, +04,GPLc,2024,2, +04,GPLc,2024,3, +04,GPLc,2024,4, +04,GPLc,2024,5, +04,GPLc,2024,6, +04,GPLc,2024,7, +04,GPLc,2024,8, +04,GPLc,2024,9, +04,GPLc,2024,10, +04,GPLc,2024,11, +04,GPLc,2024,12, +04,E10,2012,8,170.0 +04,E10,2012,9,170.0 +04,E10,2012,11,169.33 +04,E10,2012,12,160.0 +04,E10,2012,1, +04,E10,2012,2, +04,E10,2012,3, +04,E10,2012,4, +04,E10,2012,5, +04,E10,2012,6, +04,E10,2012,7, +04,E10,2012,10,170.0 +04,E10,2013,1,164.79 +04,E10,2013,2,169.79 +04,E10,2013,3,168.9 +04,E10,2013,4,166.2 +04,E10,2013,5,163.1 +04,E10,2013,6,164.47 +04,E10,2013,7,164.55 +04,E10,2013,8,165.13 +04,E10,2013,9,164.63 +04,E10,2013,10,159.45 +04,E10,2013,11,158.13 +04,E10,2013,12,159.16 +04,E10,2014,1,156.05 +04,E10,2014,2,157.08 +04,E10,2014,3,157.06 +04,E10,2014,4,158.93 +04,E10,2014,5,159.13 +04,E10,2014,6,161.05 +04,E10,2014,7,161.33 +04,E10,2014,8,157.62 +04,E10,2014,9,157.1 +04,E10,2014,10,155.03 +04,E10,2014,11,152.62 +04,E10,2014,12,147.11 +04,E10,2015,1,131.01 +04,E10,2015,2,138.36 +04,E10,2015,3,142.64 +04,E10,2015,4,146.38 +04,E10,2015,5,149.74 +04,E10,2015,6,149.85 +04,E10,2015,7,149.0 +04,E10,2015,8,142.13 +04,E10,2015,9,134.05 +04,E10,2015,10,132.98 +04,E10,2015,11,134.4 +04,E10,2015,12,130.77 +04,E10,2016,1,128.93 +04,E10,2016,2,127.54 +04,E10,2016,3,129.38 +04,E10,2016,4,134.73 +04,E10,2016,5,139.59 +04,E10,2016,6,140.42 +04,E10,2016,7,124.89 +04,E10,2016,8,123.51 +04,E10,2016,9,124.37 +04,E10,2016,10,129.3 +04,E10,2016,11,129.63 +04,E10,2016,12,134.21 +04,E10,2017,1,138.9 +04,E10,2017,2,141.86 +04,E10,2017,3,143.06 +04,E10,2017,4,145.85 +04,E10,2017,5,141.8 +04,E10,2017,6,139.95 +04,E10,2017,7,141.8 +04,E10,2017,9,146.53 +04,E10,2017,10,146.82 +04,E10,2017,11,151.7 +04,E10,2017,12,150.29 +04,E10,2017,8,142.9 +04,E10,2018,1, +04,E10,2018,2, +04,E10,2018,3, +04,E10,2018,4, +04,E10,2018,5, +04,E10,2018,6, +04,E10,2018,7, +04,E10,2018,8, +04,E10,2018,9, +04,E10,2018,10, +04,E10,2018,11, +04,E10,2018,12, +04,E10,2019,1, +04,E10,2019,2, +04,E10,2019,3, +04,E10,2019,4, +04,E10,2019,5, +04,E10,2019,6, +04,E10,2019,7, +04,E10,2019,8, +04,E10,2019,9, +04,E10,2019,10, +04,E10,2019,11, +04,E10,2019,12, +04,E10,2020,1, +04,E10,2020,2, +04,E10,2020,3, +04,E10,2020,4, +04,E10,2020,5, +04,E10,2020,6, +04,E10,2020,7, +04,E10,2020,8, +04,E10,2020,9, +04,E10,2020,10, +04,E10,2020,11, +04,E10,2020,12, +04,E10,2021,1, +04,E10,2021,2, +04,E10,2021,3, +04,E10,2021,4, +04,E10,2021,5, +04,E10,2021,6, +04,E10,2021,7, +04,E10,2021,8, +04,E10,2021,9, +04,E10,2021,10, +04,E10,2021,11, +04,E10,2021,12, +04,E10,2022,1, +04,E10,2022,2, +04,E10,2022,3, +04,E10,2022,4, +04,E10,2022,5, +04,E10,2022,6, +04,E10,2022,7, +04,E10,2022,8, +04,E10,2022,9, +04,E10,2022,10, +04,E10,2022,11, +04,E10,2022,12, +04,E10,2023,1, +04,E10,2023,2, +04,E10,2023,3, +04,E10,2023,4, +04,E10,2023,5, +04,E10,2023,6, +04,E10,2023,7, +04,E10,2023,8, +04,E10,2023,9, +04,E10,2023,10, +04,E10,2023,11, +04,E10,2023,12, +04,E10,2024,1, +04,E10,2024,2, +04,E10,2024,3, +04,E10,2024,4, +04,E10,2024,5, +04,E10,2024,6, +04,E10,2024,7, +04,E10,2024,8, +04,E10,2024,9, +04,E10,2024,10, +04,E10,2024,11, +04,E10,2024,12, +04,SP98,2013,7,169.8 +04,SP98,2013,8,170.55 +04,SP98,2013,9,169.98 +04,SP98,2013,10,166.29 +04,SP98,2013,11,164.97 +04,SP98,2013,12,167.64 +04,SP98,2013,1, +04,SP98,2013,2, +04,SP98,2013,3, +04,SP98,2013,4, +04,SP98,2013,5, +04,SP98,2013,6, +04,SP98,2014,1,167.9 +04,SP98,2014,3,167.0 +04,SP98,2014,4,168.23 +04,SP98,2014,5,168.32 +04,SP98,2014,6,167.93 +04,SP98,2014,7,168.54 +04,SP98,2014,8,166.32 +04,SP98,2014,9,166.6 +04,SP98,2014,2,167.9 +04,SP98,2014,10,165.9 +04,SP98,2014,11,165.9 +04,SP98,2014,12,165.9 +04,SP98,2015,1, +04,SP98,2015,2, +04,SP98,2015,3, +04,SP98,2015,4, +04,SP98,2015,5, +04,SP98,2015,6, +04,SP98,2015,7, +04,SP98,2015,8, +04,SP98,2015,9, +04,SP98,2015,10, +04,SP98,2015,11, +04,SP98,2015,12, +04,SP98,2016,7,132.14 +04,SP98,2016,1, +04,SP98,2016,2, +04,SP98,2016,3, +04,SP98,2016,4, +04,SP98,2016,5, +04,SP98,2016,6, +04,SP98,2016,8,131.9 +04,SP98,2016,9,131.9 +04,SP98,2016,10,131.9 +04,SP98,2016,11,131.9 +04,SP98,2016,12,131.9 +04,SP98,2017,1, +04,SP98,2017,2, +04,SP98,2017,3, +04,SP98,2017,4, +04,SP98,2017,5, +04,SP98,2017,6, +04,SP98,2017,7, +04,SP98,2017,8, +04,SP98,2017,9, +04,SP98,2017,10, +04,SP98,2017,11, +04,SP98,2017,12, +04,SP98,2018,1, +04,SP98,2018,2, +04,SP98,2018,3, +04,SP98,2018,4, +04,SP98,2018,5, +04,SP98,2018,6, +04,SP98,2018,7, +04,SP98,2018,8, +04,SP98,2018,9, +04,SP98,2018,10, +04,SP98,2018,11, +04,SP98,2018,12, +04,SP98,2019,1, +04,SP98,2019,2, +04,SP98,2019,3, +04,SP98,2019,4, +04,SP98,2019,5, +04,SP98,2019,6, +04,SP98,2019,7, +04,SP98,2019,8, +04,SP98,2019,9, +04,SP98,2019,10, +04,SP98,2019,11, +04,SP98,2019,12, +04,SP98,2020,1, +04,SP98,2020,2, +04,SP98,2020,3, +04,SP98,2020,4, +04,SP98,2020,5, +04,SP98,2020,6, +04,SP98,2020,7, +04,SP98,2020,8, +04,SP98,2020,9, +04,SP98,2020,10, +04,SP98,2020,11, +04,SP98,2020,12, +04,SP98,2021,1, +04,SP98,2021,2, +04,SP98,2021,3, +04,SP98,2021,4, +04,SP98,2021,5, +04,SP98,2021,6, +04,SP98,2021,7, +04,SP98,2021,8, +04,SP98,2021,9, +04,SP98,2021,10, +04,SP98,2021,11, +04,SP98,2021,12, +04,SP98,2022,1, +04,SP98,2022,2, +04,SP98,2022,3, +04,SP98,2022,4, +04,SP98,2022,5, +04,SP98,2022,6, +04,SP98,2022,7, +04,SP98,2022,8, +04,SP98,2022,9, +04,SP98,2022,10, +04,SP98,2022,11, +04,SP98,2022,12, +04,SP98,2023,1, +04,SP98,2023,2, +04,SP98,2023,3, +04,SP98,2023,4, +04,SP98,2023,5, +04,SP98,2023,6, +04,SP98,2023,7, +04,SP98,2023,8, +04,SP98,2023,9, +04,SP98,2023,10, +04,SP98,2023,11, +04,SP98,2023,12, +04,SP98,2024,1, +04,SP98,2024,2, +04,SP98,2024,3, +04,SP98,2024,4, +04,SP98,2024,5, +04,SP98,2024,6, +04,SP98,2024,7, +04,SP98,2024,8, +04,SP98,2024,9, +04,SP98,2024,10, +04,SP98,2024,11, +04,SP98,2024,12, +84,Gazole,2016,1,105.11 +84,Gazole,2016,2,104.64 +84,Gazole,2016,3,108.5 +84,Gazole,2016,4,109.17 +84,Gazole,2016,5,114.58 +84,Gazole,2016,6,118.67 +84,Gazole,2016,7,115.35 +84,Gazole,2016,8,112.82 +84,Gazole,2016,9,114.03 +84,Gazole,2016,10,117.84 +84,Gazole,2016,11,117.47 +84,Gazole,2016,12,122.03 +84,Gazole,2017,1,128.99 +84,Gazole,2017,2,129.15 +84,Gazole,2017,3,127.26 +84,Gazole,2017,4,126.93 +84,Gazole,2017,5,124.34 +84,Gazole,2017,6,121.1 +84,Gazole,2017,7,120.15 +84,Gazole,2017,8,122.14 +84,Gazole,2017,9,124.29 +84,Gazole,2017,10,126.52 +84,Gazole,2017,11,129.43 +84,Gazole,2017,12,130.35 +84,Gazole,2018,1,141.78 +84,Gazole,2018,2,140.49 +84,Gazole,2018,3,139.64 +84,Gazole,2018,4,142.3 +84,Gazole,2018,5,147.54 +84,Gazole,2018,6,148.78 +84,Gazole,2018,7,147.42 +84,Gazole,2018,8,147.41 +84,Gazole,2018,9,149.83 +84,Gazole,2018,10,154.21 +84,Gazole,2018,11,150.8 +84,Gazole,2018,12,145.11 +84,Gazole,2019,1,142.28 +84,Gazole,2019,2,145.88 +84,Gazole,2019,3,148.26 +84,Gazole,2019,4,149.12 +84,Gazole,2019,5,150.36 +84,Gazole,2019,6,145.11 +84,Gazole,2019,7,144.78 +84,Gazole,2019,8,143.72 +84,Gazole,2019,9,145.77 +84,Gazole,2019,10,146.14 +84,Gazole,2019,11,146.37 +84,Gazole,2019,12,148.46 +84,Gazole,2020,1,149.82 +84,Gazole,2020,2,143.11 +84,Gazole,2020,3,132.99 +84,Gazole,2020,4,124.73 +84,Gazole,2020,5,120.09 +84,Gazole,2020,6,123.58 +84,Gazole,2020,7,126.61 +84,Gazole,2020,8,126.07 +84,Gazole,2020,9,123.41 +84,Gazole,2020,10,122.96 +84,Gazole,2020,11,123.97 +84,Gazole,2020,12,128.2 +84,Gazole,2021,1,132.51 +84,Gazole,2021,2,136.75 +84,Gazole,2021,3,140.7 +84,Gazole,2021,4,139.91 +84,Gazole,2021,5,141.29 +84,Gazole,2021,6,143.61 +84,Gazole,2021,7,146.58 +84,Gazole,2021,8,145.94 +84,Gazole,2021,9,147.68 +84,Gazole,2021,10,156.91 +84,Gazole,2021,11,158.95 +84,Gazole,2021,12,155.8 +84,Gazole,2022,1,165.0 +84,Gazole,2022,2,173.0 +84,Gazole,2022,3,205.0 +84,Gazole,2022,4,188.0 +84,Gazole,2022,5,192.0 +84,Gazole,2022,6,210.0 +84,Gazole,2022,7,201.0 +84,Gazole,2022,8,190.0 +84,Gazole,2022,9,175.0 +84,Gazole,2022,10,187.0 +84,Gazole,2022,11,188.0 +84,Gazole,2022,12,180.0 +84,Gazole,2023,1,193.0 +84,Gazole,2023,5,170.0 +84,Gazole,2023,6,171.0 +84,Gazole,2023,7,174.0 +84,Gazole,2023,8,187.0 +84,Gazole,2023,9,193.0 +84,Gazole,2023,10,191.0 +84,Gazole,2023,11,184.0 +84,Gazole,2023,12,178.0 +84,Gazole,2023,2,187.0 +84,Gazole,2023,3,186.0 +84,Gazole,2023,4,181.0 +84,Gazole,2024,1,177.0 +84,Gazole,2024,2,184.0 +84,Gazole,2024,3,181.0 +84,Gazole,2024,4,180.0 +84,Gazole,2024,5,175.0 +84,Gazole,2024,6,173.0 +84,Gazole,2024,7,176.0 +84,Gazole,2024,8,176.0 +84,Gazole,2024,9,176.0 +84,Gazole,2024,10,176.0 +84,Gazole,2024,11,176.0 +84,Gazole,2024,12,176.0 +84,SP95,2016,1,130.1 +84,SP95,2016,2,128.0 +84,SP95,2016,3,129.67 +84,SP95,2016,4,132.06 +84,SP95,2016,5,134.81 +84,SP95,2016,6,137.24 +84,SP95,2016,7,133.18 +84,SP95,2016,8,131.14 +84,SP95,2016,9,132.5 +84,SP95,2016,10,135.66 +84,SP95,2016,11,135.7 +84,SP95,2016,12,139.45 +84,SP95,2017,1,144.8 +84,SP95,2017,2,144.94 +84,SP95,2017,3,142.62 +84,SP95,2017,4,143.02 +84,SP95,2017,5,140.85 +84,SP95,2017,6,137.46 +84,SP95,2017,7,135.42 +84,SP95,2017,8,136.8 +84,SP95,2017,9,139.11 +84,SP95,2017,10,139.32 +84,SP95,2017,11,142.18 +84,SP95,2017,12,143.01 +84,SP95,2018,1,150.24 +84,SP95,2018,2,149.71 +84,SP95,2018,3,149.02 +84,SP95,2018,4,151.2 +84,SP95,2018,5,155.23 +84,SP95,2018,6,156.7 +84,SP95,2018,7,155.92 +84,SP95,2018,8,155.7 +84,SP95,2018,9,156.62 +84,SP95,2018,10,158.4 +84,SP95,2018,11,152.29 +84,SP95,2018,12,147.96 +84,SP95,2019,1,145.06 +84,SP95,2019,2,147.8 +84,SP95,2019,3,152.17 +84,SP95,2019,4,157.77 +84,SP95,2019,5,159.02 +84,SP95,2019,6,154.38 +84,SP95,2019,7,154.67 +84,SP95,2019,8,152.84 +84,SP95,2019,9,152.8 +84,SP95,2019,10,152.94 +84,SP95,2019,11,153.63 +84,SP95,2019,12,155.54 +84,SP95,2020,1,156.54 +84,SP95,2020,2,153.39 +84,SP95,2020,3,143.78 +84,SP95,2020,4,132.83 +84,SP95,2020,5,129.51 +84,SP95,2020,6,134.1 +84,SP95,2020,7,136.94 +84,SP95,2020,8,136.59 +84,SP95,2020,9,136.63 +84,SP95,2020,10,136.54 +84,SP95,2020,11,136.16 +84,SP95,2020,12,138.56 +84,SP95,2021,1,143.48 +84,SP95,2021,2,148.37 +84,SP95,2021,3,153.49 +84,SP95,2021,4,154.49 +84,SP95,2021,5,155.15 +84,SP95,2021,6,156.04 +84,SP95,2021,7,159.67 +84,SP95,2021,8,160.4 +84,SP95,2021,9,161.11 +84,SP95,2021,10,165.68 +84,SP95,2021,11,167.67 +84,SP95,2021,12,165.77 +84,SP95,2022,1,173.0 +84,SP95,2022,2,181.0 +84,SP95,2022,3,202.0 +84,SP95,2022,4,183.0 +84,SP95,2022,5,192.0 +84,SP95,2022,6,208.0 +84,SP95,2022,7,201.0 +84,SP95,2022,8,182.0 +84,SP95,2022,9,159.0 +84,SP95,2022,10,168.0 +84,SP95,2022,11,177.0 +84,SP95,2022,12,174.0 +84,SP95,2023,1,190.0 +84,SP95,2023,5,189.0 +84,SP95,2023,6,190.0 +84,SP95,2023,7,189.0 +84,SP95,2023,8,195.0 +84,SP95,2023,9,198.0 +84,SP95,2023,10,191.0 +84,SP95,2023,11,188.0 +84,SP95,2023,12,186.0 +84,SP95,2023,2,193.0 +84,SP95,2023,3,194.0 +84,SP95,2023,4,196.0 +84,SP95,2024,1,183.0 +84,SP95,2024,2,189.0 +84,SP95,2024,3,191.0 +84,SP95,2024,4,195.0 +84,SP95,2024,5,194.0 +84,SP95,2024,6,189.0 +84,SP95,2024,7,189.0 +84,SP95,2024,8,189.0 +84,SP95,2024,9,189.0 +84,SP95,2024,10,189.0 +84,SP95,2024,11,189.0 +84,SP95,2024,12,189.0 +84,SP98,2016,1,135.04 +84,SP98,2016,2,132.52 +84,SP98,2016,3,133.9 +84,SP98,2016,4,136.28 +84,SP98,2016,5,138.98 +84,SP98,2016,6,141.72 +84,SP98,2016,7,138.03 +84,SP98,2016,8,135.82 +84,SP98,2016,9,137.11 +84,SP98,2016,10,140.28 +84,SP98,2016,11,140.38 +84,SP98,2016,12,144.21 +84,SP98,2017,1,149.45 +84,SP98,2017,2,149.74 +84,SP98,2017,3,147.58 +84,SP98,2017,4,147.87 +84,SP98,2017,5,145.86 +84,SP98,2017,6,142.42 +84,SP98,2017,7,140.34 +84,SP98,2017,8,141.57 +84,SP98,2017,9,143.95 +84,SP98,2017,10,144.14 +84,SP98,2017,11,147.23 +84,SP98,2017,12,148.22 +84,SP98,2018,1,155.16 +84,SP98,2018,2,154.73 +84,SP98,2018,3,154.05 +84,SP98,2018,4,156.13 +84,SP98,2018,5,160.44 +84,SP98,2018,6,162.37 +84,SP98,2018,7,161.46 +84,SP98,2018,8,161.21 +84,SP98,2018,9,162.29 +84,SP98,2018,10,164.31 +84,SP98,2018,11,157.34 +84,SP98,2018,12,152.5 +84,SP98,2019,1,150.24 +84,SP98,2019,2,152.44 +84,SP98,2019,3,156.78 +84,SP98,2019,4,162.59 +84,SP98,2019,5,163.85 +84,SP98,2019,6,159.06 +84,SP98,2019,7,159.4 +84,SP98,2019,8,157.36 +84,SP98,2019,9,157.3 +84,SP98,2019,10,157.44 +84,SP98,2019,11,158.07 +84,SP98,2019,12,160.06 +84,SP98,2020,1,161.35 +84,SP98,2020,2,158.14 +84,SP98,2020,3,148.97 +84,SP98,2020,4,138.42 +84,SP98,2020,5,134.78 +84,SP98,2020,6,139.05 +84,SP98,2020,7,141.95 +84,SP98,2020,8,141.85 +84,SP98,2020,9,142.12 +84,SP98,2020,10,141.94 +84,SP98,2020,11,141.8 +84,SP98,2020,12,143.87 +84,SP98,2021,1,148.92 +84,SP98,2021,2,153.26 +84,SP98,2021,3,158.93 +84,SP98,2021,4,160.07 +84,SP98,2021,5,160.65 +84,SP98,2021,6,161.5 +84,SP98,2021,7,165.37 +84,SP98,2021,8,165.98 +84,SP98,2021,9,166.96 +84,SP98,2021,10,172.02 +84,SP98,2021,11,173.8 +84,SP98,2021,12,171.74 +84,SP98,2022,1,179.0 +84,SP98,2022,2,187.0 +84,SP98,2022,3,206.0 +84,SP98,2022,4,187.0 +84,SP98,2022,5,199.0 +84,SP98,2022,6,215.0 +84,SP98,2022,7,205.0 +84,SP98,2022,8,186.0 +84,SP98,2022,9,161.0 +84,SP98,2022,10,169.0 +84,SP98,2022,11,180.0 +84,SP98,2022,12,179.0 +84,SP98,2023,1,196.0 +84,SP98,2023,5,194.0 +84,SP98,2023,6,195.0 +84,SP98,2023,7,195.0 +84,SP98,2023,8,201.0 +84,SP98,2023,9,204.0 +84,SP98,2023,10,196.0 +84,SP98,2023,11,193.0 +84,SP98,2023,12,190.0 +84,SP98,2023,2,198.0 +84,SP98,2023,3,200.0 +84,SP98,2023,4,201.0 +84,SP98,2024,1,190.0 +84,SP98,2024,2,194.0 +84,SP98,2024,3,197.0 +84,SP98,2024,4,201.0 +84,SP98,2024,5,199.0 +84,SP98,2024,6,195.0 +84,SP98,2024,7,195.0 +84,SP98,2024,8,195.0 +84,SP98,2024,9,195.0 +84,SP98,2024,10,195.0 +84,SP98,2024,11,195.0 +84,SP98,2024,12,195.0 +84,GPLc,2016,4,72.02 +84,GPLc,2016,1,73.9 +84,GPLc,2016,2,73.74 +84,GPLc,2016,3,72.7 +84,GPLc,2016,9,71.87 +84,GPLc,2016,12,72.85 +84,GPLc,2016,5,72.06 +84,GPLc,2016,6,72.61 +84,GPLc,2016,7,72.52 +84,GPLc,2016,8,71.96 +84,GPLc,2016,10,72.01 +84,GPLc,2016,11,72.27 +84,GPLc,2017,1,73.69 +84,GPLc,2017,3,76.69 +84,GPLc,2017,4,77.01 +84,GPLc,2017,6,77.02 +84,GPLc,2017,9,77.25 +84,GPLc,2017,10,78.2 +84,GPLc,2017,2,75.35 +84,GPLc,2017,7,76.84 +84,GPLc,2017,8,76.54 +84,GPLc,2017,11,79.37 +84,GPLc,2017,12,80.22 +84,GPLc,2017,5,76.94 +84,GPLc,2018,1,83.55 +84,GPLc,2018,2,83.99 +84,GPLc,2018,3,83.93 +84,GPLc,2018,4,83.28 +84,GPLc,2018,5,83.21 +84,GPLc,2018,6,84.3 +84,GPLc,2018,7,84.46 +84,GPLc,2018,8,84.55 +84,GPLc,2018,9,85.91 +84,GPLc,2018,10,87.91 +84,GPLc,2018,12,88.59 +84,GPLc,2018,11,88.35 +84,GPLc,2019,1,87.53 +84,GPLc,2019,2,86.39 +84,GPLc,2019,6,88.62 +84,GPLc,2019,12,90.51 +84,GPLc,2019,3,86.33 +84,GPLc,2019,4,87.46 +84,GPLc,2019,5,88.35 +84,GPLc,2019,7,88.56 +84,GPLc,2019,8,88.87 +84,GPLc,2019,9,89.45 +84,GPLc,2019,10,89.51 +84,GPLc,2019,11,90.24 +84,GPLc,2020,3,87.11 +84,GPLc,2020,7,86.43 +84,GPLc,2020,10,86.74 +84,GPLc,2020,11,86.92 +84,GPLc,2020,12,86.76 +84,GPLc,2020,2,88.47 +84,GPLc,2020,4,86.86 +84,GPLc,2020,5,85.95 +84,GPLc,2020,6,86.1 +84,GPLc,2020,8,86.3 +84,GPLc,2020,9,86.55 +84,GPLc,2020,1,89.38 +84,GPLc,2021,1,86.26 +84,GPLc,2021,2,86.09 +84,GPLc,2021,3,86.52 +84,GPLc,2021,7,87.41 +84,GPLc,2021,8,87.93 +84,GPLc,2021,11,90.0 +84,GPLc,2021,5,86.95 +84,GPLc,2021,6,86.84 +84,GPLc,2021,9,88.12 +84,GPLc,2021,10,89.0 +84,GPLc,2021,12,90.87 +84,GPLc,2021,4,86.75 +84,GPLc,2022,1,93.0 +84,GPLc,2022,2,94.0 +84,GPLc,2022,3,97.0 +84,GPLc,2022,4,85.0 +84,GPLc,2022,5,86.0 +84,GPLc,2022,6,87.0 +84,GPLc,2022,7,88.0 +84,GPLc,2022,8,90.0 +84,GPLc,2022,9,82.0 +84,GPLc,2022,10,82.0 +84,GPLc,2022,11,88.0 +84,GPLc,2022,12,94.0 +84,GPLc,2023,1,100.0 +84,GPLc,2023,11,103.0 +84,GPLc,2023,12,103.0 +84,GPLc,2023,2,102.0 +84,GPLc,2023,3,102.0 +84,GPLc,2023,4,104.0 +84,GPLc,2023,5,103.0 +84,GPLc,2023,6,103.0 +84,GPLc,2023,7,102.0 +84,GPLc,2023,8,102.0 +84,GPLc,2023,9,102.0 +84,GPLc,2023,10,103.0 +84,GPLc,2024,1,100.0 +84,GPLc,2024,3,102.0 +84,GPLc,2024,5,102.0 +84,GPLc,2024,2,101.0 +84,GPLc,2024,4,102.0 +84,GPLc,2024,6,103.0 +84,GPLc,2024,7,103.0 +84,GPLc,2024,8,103.0 +84,GPLc,2024,9,103.0 +84,GPLc,2024,10,103.0 +84,GPLc,2024,11,103.0 +84,GPLc,2024,12,103.0 +84,E10,2016,11,131.96 +84,E10,2016,1,127.63 +84,E10,2016,2,124.88 +84,E10,2016,3,126.67 +84,E10,2016,4,129.15 +84,E10,2016,5,131.82 +84,E10,2016,6,134.29 +84,E10,2016,7,130.23 +84,E10,2016,8,128.26 +84,E10,2016,9,129.32 +84,E10,2016,10,132.24 +84,E10,2016,12,136.07 +84,E10,2017,1,140.58 +84,E10,2017,2,140.88 +84,E10,2017,3,138.47 +84,E10,2017,4,139.05 +84,E10,2017,5,136.52 +84,E10,2017,6,133.2 +84,E10,2017,7,131.78 +84,E10,2017,8,133.35 +84,E10,2017,9,135.9 +84,E10,2017,10,135.74 +84,E10,2017,11,138.99 +84,E10,2017,12,139.77 +84,E10,2018,12,143.21 +84,E10,2018,2,146.05 +84,E10,2018,3,145.25 +84,E10,2018,4,147.66 +84,E10,2018,5,151.97 +84,E10,2018,6,153.33 +84,E10,2018,7,152.46 +84,E10,2018,9,153.1 +84,E10,2018,10,155.15 +84,E10,2018,11,147.71 +84,E10,2018,1,146.71 +84,E10,2018,8,152.05 +84,E10,2019,1,141.67 +84,E10,2019,2,144.24 +84,E10,2019,3,148.68 +84,E10,2019,4,154.4 +84,E10,2019,5,155.19 +84,E10,2019,6,149.94 +84,E10,2019,7,150.71 +84,E10,2019,8,148.49 +84,E10,2019,9,148.69 +84,E10,2019,10,148.62 +84,E10,2019,11,149.56 +84,E10,2019,12,151.7 +84,E10,2020,1,153.0 +84,E10,2020,2,149.69 +84,E10,2020,3,139.24 +84,E10,2020,4,128.82 +84,E10,2020,5,126.52 +84,E10,2020,6,131.68 +84,E10,2020,7,134.23 +84,E10,2020,8,133.38 +84,E10,2020,9,133.53 +84,E10,2020,10,133.55 +84,E10,2020,11,133.48 +84,E10,2020,12,135.83 +84,E10,2021,1,141.1 +84,E10,2021,2,145.47 +84,E10,2021,3,150.74 +84,E10,2021,4,151.61 +84,E10,2021,5,152.0 +84,E10,2021,6,152.93 +84,E10,2021,7,156.69 +84,E10,2021,8,156.82 +84,E10,2021,9,157.83 +84,E10,2021,10,162.75 +84,E10,2021,11,164.15 +84,E10,2021,12,161.89 +84,E10,2022,10,159.0 +84,E10,2022,11,170.0 +84,E10,2022,1,170.0 +84,E10,2022,2,178.0 +84,E10,2022,3,196.0 +84,E10,2022,4,176.0 +84,E10,2022,5,189.0 +84,E10,2022,6,204.0 +84,E10,2022,7,193.0 +84,E10,2022,8,174.0 +84,E10,2022,9,149.0 +84,E10,2022,12,167.0 +84,E10,2023,5,185.0 +84,E10,2023,6,186.0 +84,E10,2023,7,186.0 +84,E10,2023,8,194.0 +84,E10,2023,9,197.0 +84,E10,2023,10,187.0 +84,E10,2023,11,184.0 +84,E10,2023,12,181.0 +84,E10,2023,1,187.0 +84,E10,2023,2,189.0 +84,E10,2023,3,190.0 +84,E10,2023,4,193.0 +84,E10,2024,1,181.0 +84,E10,2024,2,185.0 +84,E10,2024,3,188.0 +84,E10,2024,4,192.0 +84,E10,2024,5,190.0 +84,E10,2024,6,184.0 +84,E10,2024,7,185.0 +84,E10,2024,8,185.0 +84,E10,2024,9,185.0 +84,E10,2024,10,185.0 +84,E10,2024,11,185.0 +84,E10,2024,12,185.0 +84,E85,2016,1,73.41 +84,E85,2016,2,74.95 +84,E85,2016,3,76.87 +84,E85,2016,4,79.65 +84,E85,2016,5,82.19 +84,E85,2016,6,84.01 +84,E85,2016,7,83.95 +84,E85,2016,8,84.7 +84,E85,2016,9,84.28 +84,E85,2016,10,84.48 +84,E85,2016,11,84.22 +84,E85,2016,12,84.56 +84,E85,2017,1,71.53 +84,E85,2017,2,70.98 +84,E85,2017,3,70.88 +84,E85,2017,4,71.71 +84,E85,2017,5,72.87 +84,E85,2017,6,74.32 +84,E85,2017,7,74.44 +84,E85,2017,8,74.74 +84,E85,2017,9,76.22 +84,E85,2017,10,76.34 +84,E85,2017,11,77.5 +84,E85,2017,12,77.84 +84,E85,2018,1,71.53 +84,E85,2018,2,71.15 +84,E85,2018,3,70.86 +84,E85,2018,4,70.53 +84,E85,2018,5,70.8 +84,E85,2018,6,71.45 +84,E85,2018,7,71.92 +84,E85,2018,8,72.42 +84,E85,2018,9,72.87 +84,E85,2018,10,73.03 +84,E85,2018,11,71.14 +84,E85,2018,12,71.92 +84,E85,2019,5,72.31 +84,E85,2019,6,71.82 +84,E85,2019,7,71.63 +84,E85,2019,8,71.58 +84,E85,2019,9,72.44 +84,E85,2019,10,71.95 +84,E85,2019,11,72.39 +84,E85,2019,12,72.61 +84,E85,2019,1,69.42 +84,E85,2019,2,68.38 +84,E85,2019,3,69.27 +84,E85,2019,4,71.14 +84,E85,2020,1,72.12 +84,E85,2020,2,71.76 +84,E85,2020,3,71.98 +84,E85,2020,4,71.93 +84,E85,2020,5,71.53 +84,E85,2020,6,71.06 +84,E85,2020,7,70.71 +84,E85,2020,8,70.33 +84,E85,2020,9,70.26 +84,E85,2020,10,69.92 +84,E85,2020,11,70.1 +84,E85,2020,12,70.28 +84,E85,2021,1,70.25 +84,E85,2021,2,70.32 +84,E85,2021,3,70.66 +84,E85,2021,4,70.54 +84,E85,2021,5,70.8 +84,E85,2021,6,71.12 +84,E85,2021,7,71.18 +84,E85,2021,8,71.54 +84,E85,2021,9,71.67 +84,E85,2021,10,72.57 +84,E85,2021,11,73.66 +84,E85,2021,12,73.61 +84,E85,2022,11,89.0 +84,E85,2022,8,86.0 +84,E85,2022,9,72.0 +84,E85,2022,12,94.0 +84,E85,2022,1,78.0 +84,E85,2022,2,80.0 +84,E85,2022,3,93.0 +84,E85,2022,4,81.0 +84,E85,2022,5,82.0 +84,E85,2022,6,88.0 +84,E85,2022,7,90.0 +84,E85,2022,10,77.0 +84,E85,2023,5,115.0 +84,E85,2023,6,114.0 +84,E85,2023,7,109.0 +84,E85,2023,8,109.0 +84,E85,2023,9,109.0 +84,E85,2023,10,107.0 +84,E85,2023,11,105.0 +84,E85,2023,12,103.0 +84,E85,2023,1,113.0 +84,E85,2023,2,116.0 +84,E85,2023,3,117.0 +84,E85,2023,4,116.0 +84,E85,2024,1,93.0 +84,E85,2024,2,92.0 +84,E85,2024,3,91.0 +84,E85,2024,4,91.0 +84,E85,2024,5,90.0 +84,E85,2024,6,87.0 +84,E85,2024,7,87.0 +84,E85,2024,8,87.0 +84,E85,2024,9,87.0 +84,E85,2024,10,87.0 +84,E85,2024,11,87.0 +84,E85,2024,12,87.0 +27,Gazole,2016,1,104.99 +27,Gazole,2016,2,103.78 +27,Gazole,2016,3,107.62 +27,Gazole,2016,4,108.52 +27,Gazole,2016,5,113.73 +27,Gazole,2016,7,114.74 +27,Gazole,2016,8,112.16 +27,Gazole,2016,9,113.36 +27,Gazole,2016,10,117.22 +27,Gazole,2016,11,117.3 +27,Gazole,2016,12,121.41 +27,Gazole,2016,6,117.8 +27,Gazole,2017,1,128.68 +27,Gazole,2017,2,128.78 +27,Gazole,2017,3,127.11 +27,Gazole,2017,4,126.52 +27,Gazole,2017,5,123.95 +27,Gazole,2017,6,120.86 +27,Gazole,2017,7,119.63 +27,Gazole,2017,8,121.42 +27,Gazole,2017,9,123.62 +27,Gazole,2017,10,126.29 +27,Gazole,2017,11,128.96 +27,Gazole,2017,12,129.95 +27,Gazole,2018,1,141.33 +27,Gazole,2018,2,140.3 +27,Gazole,2018,3,139.45 +27,Gazole,2018,4,142.04 +27,Gazole,2018,5,147.02 +27,Gazole,2018,6,148.74 +27,Gazole,2018,7,147.4 +27,Gazole,2018,8,147.53 +27,Gazole,2018,9,149.94 +27,Gazole,2018,10,154.27 +27,Gazole,2018,11,151.18 +27,Gazole,2018,12,145.59 +27,Gazole,2019,1,142.42 +27,Gazole,2019,2,145.94 +27,Gazole,2019,3,148.33 +27,Gazole,2019,4,149.19 +27,Gazole,2019,5,150.38 +27,Gazole,2019,6,145.62 +27,Gazole,2019,7,144.92 +27,Gazole,2019,8,144.0 +27,Gazole,2019,9,145.68 +27,Gazole,2019,10,146.58 +27,Gazole,2019,11,146.63 +27,Gazole,2019,12,148.5 +27,Gazole,2020,1,150.03 +27,Gazole,2020,2,143.68 +27,Gazole,2020,3,133.97 +27,Gazole,2020,4,125.61 +27,Gazole,2020,5,120.73 +27,Gazole,2020,6,123.31 +27,Gazole,2020,7,126.17 +27,Gazole,2020,8,125.91 +27,Gazole,2020,9,123.48 +27,Gazole,2020,10,122.82 +27,Gazole,2020,11,123.66 +27,Gazole,2020,12,127.93 +27,Gazole,2021,1,132.36 +27,Gazole,2021,2,136.48 +27,Gazole,2021,3,140.57 +27,Gazole,2021,4,140.03 +27,Gazole,2021,5,141.3 +27,Gazole,2021,6,143.52 +27,Gazole,2021,7,146.34 +27,Gazole,2021,8,145.87 +27,Gazole,2021,9,147.39 +27,Gazole,2021,10,156.55 +27,Gazole,2021,11,159.14 +27,Gazole,2021,12,156.38 +27,Gazole,2022,1,165.0 +27,Gazole,2022,2,173.0 +27,Gazole,2022,3,205.0 +27,Gazole,2022,4,189.0 +27,Gazole,2022,5,192.0 +27,Gazole,2022,6,209.0 +27,Gazole,2022,7,202.0 +27,Gazole,2022,8,191.0 +27,Gazole,2022,9,177.0 +27,Gazole,2022,10,190.0 +27,Gazole,2022,11,191.0 +27,Gazole,2022,12,180.0 +27,Gazole,2023,1,193.0 +27,Gazole,2023,2,188.0 +27,Gazole,2023,3,186.0 +27,Gazole,2023,4,182.0 +27,Gazole,2023,5,170.0 +27,Gazole,2023,6,171.0 +27,Gazole,2023,7,174.0 +27,Gazole,2023,8,186.0 +27,Gazole,2023,9,193.0 +27,Gazole,2023,10,192.0 +27,Gazole,2023,11,186.0 +27,Gazole,2023,12,180.0 +27,Gazole,2024,1,177.0 +27,Gazole,2024,2,184.0 +27,Gazole,2024,3,182.0 +27,Gazole,2024,4,180.0 +27,Gazole,2024,5,174.0 +27,Gazole,2024,6,172.0 +27,Gazole,2024,7,175.0 +27,Gazole,2024,8,175.0 +27,Gazole,2024,9,175.0 +27,Gazole,2024,10,175.0 +27,Gazole,2024,11,175.0 +27,Gazole,2024,12,175.0 +27,SP95,2016,1,129.61 +27,SP95,2016,2,127.34 +27,SP95,2016,3,128.33 +27,SP95,2016,4,131.48 +27,SP95,2016,5,134.44 +27,SP95,2016,7,133.21 +27,SP95,2016,8,130.57 +27,SP95,2016,9,131.96 +27,SP95,2016,10,134.99 +27,SP95,2016,11,135.08 +27,SP95,2016,12,138.5 +27,SP95,2016,6,137.36 +27,SP95,2017,1,143.93 +27,SP95,2017,2,144.01 +27,SP95,2017,3,142.06 +27,SP95,2017,4,142.04 +27,SP95,2017,5,140.11 +27,SP95,2017,6,137.3 +27,SP95,2017,7,135.01 +27,SP95,2017,8,135.9 +27,SP95,2017,9,138.36 +27,SP95,2017,10,138.72 +27,SP95,2017,11,141.5 +27,SP95,2017,12,142.38 +27,SP95,2018,1,149.2 +27,SP95,2018,2,149.2 +27,SP95,2018,3,148.52 +27,SP95,2018,4,150.75 +27,SP95,2018,5,154.9 +27,SP95,2018,6,156.7 +27,SP95,2018,7,155.88 +27,SP95,2018,8,156.04 +27,SP95,2018,9,157.29 +27,SP95,2018,10,158.73 +27,SP95,2018,11,153.34 +27,SP95,2018,12,148.55 +27,SP95,2019,1,144.41 +27,SP95,2019,2,147.06 +27,SP95,2019,3,150.86 +27,SP95,2019,4,156.97 +27,SP95,2019,6,155.26 +27,SP95,2019,7,154.44 +27,SP95,2019,8,152.93 +27,SP95,2019,9,152.5 +27,SP95,2019,10,152.71 +27,SP95,2019,11,153.31 +27,SP95,2019,12,155.13 +27,SP95,2019,5,159.17 +27,SP95,2020,1,156.07 +27,SP95,2020,2,152.97 +27,SP95,2020,3,144.6 +27,SP95,2020,4,134.34 +27,SP95,2020,5,129.91 +27,SP95,2020,6,133.34 +27,SP95,2020,7,136.39 +27,SP95,2020,8,136.26 +27,SP95,2020,9,136.18 +27,SP95,2020,10,136.2 +27,SP95,2020,11,135.97 +27,SP95,2020,12,138.11 +27,SP95,2021,1,142.77 +27,SP95,2021,2,147.71 +27,SP95,2021,3,152.9 +27,SP95,2021,4,154.43 +27,SP95,2021,5,155.33 +27,SP95,2021,6,156.35 +27,SP95,2021,7,159.61 +27,SP95,2021,8,160.48 +27,SP95,2021,9,161.03 +27,SP95,2021,10,166.44 +27,SP95,2021,11,169.24 +27,SP95,2021,12,167.01 +27,SP95,2022,1,173.0 +27,SP95,2022,2,181.0 +27,SP95,2022,3,202.0 +27,SP95,2022,4,184.0 +27,SP95,2022,5,192.0 +27,SP95,2022,6,210.0 +27,SP95,2022,7,203.0 +27,SP95,2022,8,187.0 +27,SP95,2022,9,166.0 +27,SP95,2022,10,176.0 +27,SP95,2022,11,183.0 +27,SP95,2022,12,178.0 +27,SP95,2023,1,189.0 +27,SP95,2023,2,193.0 +27,SP95,2023,3,193.0 +27,SP95,2023,4,195.0 +27,SP95,2023,5,188.0 +27,SP95,2023,6,189.0 +27,SP95,2023,7,189.0 +27,SP95,2023,8,196.0 +27,SP95,2023,9,199.0 +27,SP95,2023,10,193.0 +27,SP95,2023,11,190.0 +27,SP95,2023,12,186.0 +27,SP95,2024,1,183.0 +27,SP95,2024,2,189.0 +27,SP95,2024,3,190.0 +27,SP95,2024,4,194.0 +27,SP95,2024,5,193.0 +27,SP95,2024,6,188.0 +27,SP95,2024,7,188.0 +27,SP95,2024,8,188.0 +27,SP95,2024,9,188.0 +27,SP95,2024,10,188.0 +27,SP95,2024,11,188.0 +27,SP95,2024,12,188.0 +27,E10,2016,1,127.8 +27,E10,2016,2,124.88 +27,E10,2016,3,125.84 +27,E10,2016,4,128.87 +27,E10,2016,5,131.82 +27,E10,2016,7,130.04 +27,E10,2016,8,127.9 +27,E10,2016,9,129.26 +27,E10,2016,10,132.18 +27,E10,2016,11,132.01 +27,E10,2016,12,135.67 +27,E10,2016,6,134.56 +27,E10,2017,1,140.37 +27,E10,2017,2,140.65 +27,E10,2017,3,138.46 +27,E10,2017,4,138.55 +27,E10,2017,5,136.17 +27,E10,2017,6,133.27 +27,E10,2017,7,131.62 +27,E10,2017,8,132.94 +27,E10,2017,9,135.54 +27,E10,2017,10,135.64 +27,E10,2017,11,138.9 +27,E10,2017,12,139.48 +27,E10,2018,1,146.37 +27,E10,2018,2,145.88 +27,E10,2018,3,145.2 +27,E10,2018,4,147.65 +27,E10,2018,5,151.98 +27,E10,2018,6,153.56 +27,E10,2018,7,152.54 +27,E10,2018,8,152.78 +27,E10,2018,9,154.27 +27,E10,2018,10,155.74 +27,E10,2018,11,148.63 +27,E10,2018,12,143.73 +27,E10,2019,1,142.01 +27,E10,2019,2,144.29 +27,E10,2019,3,148.57 +27,E10,2019,4,154.87 +27,E10,2019,6,151.43 +27,E10,2019,7,151.14 +27,E10,2019,8,149.17 +27,E10,2019,9,149.15 +27,E10,2019,10,149.2 +27,E10,2019,11,150.09 +27,E10,2019,12,152.05 +27,E10,2019,5,156.37 +27,E10,2020,1,153.32 +27,E10,2020,2,149.56 +27,E10,2020,3,139.53 +27,E10,2020,4,129.21 +27,E10,2020,5,126.31 +27,E10,2020,6,131.07 +27,E10,2020,7,133.88 +27,E10,2020,8,133.2 +27,E10,2020,9,133.21 +27,E10,2020,10,133.31 +27,E10,2020,11,133.07 +27,E10,2020,12,135.52 +27,E10,2021,1,140.47 +27,E10,2021,2,144.95 +27,E10,2021,3,150.25 +27,E10,2021,4,151.33 +27,E10,2021,5,151.98 +27,E10,2021,6,152.88 +27,E10,2021,7,156.47 +27,E10,2021,8,156.86 +27,E10,2021,9,157.66 +27,E10,2021,10,163.33 +27,E10,2021,11,165.42 +27,E10,2021,12,162.72 +27,E10,2022,1,170.0 +27,E10,2022,2,177.0 +27,E10,2022,3,196.0 +27,E10,2022,4,176.0 +27,E10,2022,5,188.0 +27,E10,2022,6,205.0 +27,E10,2022,7,195.0 +27,E10,2022,8,178.0 +27,E10,2022,9,153.0 +27,E10,2022,10,163.0 +27,E10,2022,11,171.0 +27,E10,2022,12,168.0 +27,E10,2023,1,187.0 +27,E10,2023,2,189.0 +27,E10,2023,3,190.0 +27,E10,2023,4,192.0 +27,E10,2023,5,185.0 +27,E10,2023,6,186.0 +27,E10,2023,7,185.0 +27,E10,2023,8,193.0 +27,E10,2023,9,196.0 +27,E10,2023,10,188.0 +27,E10,2023,11,185.0 +27,E10,2023,12,181.0 +27,E10,2024,1,180.0 +27,E10,2024,2,184.0 +27,E10,2024,3,187.0 +27,E10,2024,4,191.0 +27,E10,2024,5,189.0 +27,E10,2024,6,183.0 +27,E10,2024,7,184.0 +27,E10,2024,8,184.0 +27,E10,2024,9,184.0 +27,E10,2024,10,184.0 +27,E10,2024,11,184.0 +27,E10,2024,12,184.0 +27,SP98,2016,1,134.67 +27,SP98,2016,2,131.89 +27,SP98,2016,3,132.6 +27,SP98,2016,4,135.68 +27,SP98,2016,5,138.6 +27,SP98,2016,6,141.68 +27,SP98,2016,7,137.96 +27,SP98,2016,8,135.26 +27,SP98,2016,9,136.52 +27,SP98,2016,10,139.49 +27,SP98,2016,11,139.8 +27,SP98,2016,12,143.02 +27,SP98,2017,1,148.69 +27,SP98,2017,2,148.95 +27,SP98,2017,3,147.19 +27,SP98,2017,4,147.04 +27,SP98,2017,5,145.16 +27,SP98,2017,6,142.38 +27,SP98,2017,7,140.15 +27,SP98,2017,8,140.79 +27,SP98,2017,9,143.29 +27,SP98,2017,10,143.77 +27,SP98,2017,11,146.86 +27,SP98,2017,12,147.88 +27,SP98,2018,1,154.48 +27,SP98,2018,2,154.25 +27,SP98,2018,3,153.68 +27,SP98,2018,4,155.78 +27,SP98,2018,5,160.05 +27,SP98,2018,6,162.09 +27,SP98,2018,7,161.25 +27,SP98,2018,8,161.23 +27,SP98,2018,9,162.58 +27,SP98,2018,10,164.22 +27,SP98,2018,11,158.25 +27,SP98,2018,12,153.28 +27,SP98,2019,1,150.0 +27,SP98,2019,2,152.02 +27,SP98,2019,3,155.83 +27,SP98,2019,4,162.13 +27,SP98,2019,5,164.28 +27,SP98,2019,6,160.33 +27,SP98,2019,7,159.4 +27,SP98,2019,8,157.88 +27,SP98,2019,9,157.49 +27,SP98,2019,10,157.68 +27,SP98,2019,11,158.22 +27,SP98,2019,12,159.94 +27,SP98,2020,1,161.31 +27,SP98,2020,2,158.01 +27,SP98,2020,3,149.87 +27,SP98,2020,4,140.13 +27,SP98,2020,5,135.73 +27,SP98,2020,6,138.85 +27,SP98,2020,7,141.8 +27,SP98,2020,8,141.69 +27,SP98,2020,9,141.71 +27,SP98,2020,10,141.6 +27,SP98,2020,11,141.39 +27,SP98,2020,12,143.23 +27,SP98,2021,1,148.03 +27,SP98,2021,2,152.3 +27,SP98,2021,3,158.03 +27,SP98,2021,4,159.53 +27,SP98,2021,5,160.37 +27,SP98,2021,6,161.28 +27,SP98,2021,7,164.95 +27,SP98,2021,8,165.68 +27,SP98,2021,9,166.38 +27,SP98,2021,10,171.94 +27,SP98,2021,11,174.89 +27,SP98,2021,12,172.62 +27,SP98,2022,1,179.0 +27,SP98,2022,2,186.0 +27,SP98,2022,3,206.0 +27,SP98,2022,4,189.0 +27,SP98,2022,5,198.0 +27,SP98,2022,6,216.0 +27,SP98,2022,7,207.0 +27,SP98,2022,8,189.0 +27,SP98,2022,9,165.0 +27,SP98,2022,10,176.0 +27,SP98,2022,11,185.0 +27,SP98,2022,12,180.0 +27,SP98,2023,1,196.0 +27,SP98,2023,2,198.0 +27,SP98,2023,3,199.0 +27,SP98,2023,4,200.0 +27,SP98,2023,5,194.0 +27,SP98,2023,6,195.0 +27,SP98,2023,7,194.0 +27,SP98,2023,8,201.0 +27,SP98,2023,9,203.0 +27,SP98,2023,10,197.0 +27,SP98,2023,11,194.0 +27,SP98,2023,12,191.0 +27,SP98,2024,1,189.0 +27,SP98,2024,2,193.0 +27,SP98,2024,3,195.0 +27,SP98,2024,4,199.0 +27,SP98,2024,5,198.0 +27,SP98,2024,6,194.0 +27,SP98,2024,7,194.0 +27,SP98,2024,8,194.0 +27,SP98,2024,9,194.0 +27,SP98,2024,10,194.0 +27,SP98,2024,11,194.0 +27,SP98,2024,12,194.0 +27,GPLc,2016,1,75.61 +27,GPLc,2016,2,74.03 +27,GPLc,2016,7,72.41 +27,GPLc,2016,8,72.15 +27,GPLc,2016,3,72.92 +27,GPLc,2016,4,72.19 +27,GPLc,2016,5,71.76 +27,GPLc,2016,6,72.54 +27,GPLc,2016,9,72.32 +27,GPLc,2016,10,72.48 +27,GPLc,2016,11,72.87 +27,GPLc,2016,12,73.43 +27,GPLc,2017,1,73.51 +27,GPLc,2017,2,74.95 +27,GPLc,2017,4,77.5 +27,GPLc,2017,6,77.15 +27,GPLc,2017,7,76.68 +27,GPLc,2017,10,77.74 +27,GPLc,2017,3,76.78 +27,GPLc,2017,5,77.33 +27,GPLc,2017,8,76.12 +27,GPLc,2017,9,76.67 +27,GPLc,2017,11,79.4 +27,GPLc,2017,12,80.55 +27,GPLc,2018,1,85.54 +27,GPLc,2018,4,86.14 +27,GPLc,2018,5,88.04 +27,GPLc,2018,6,88.95 +27,GPLc,2018,7,89.3 +27,GPLc,2018,9,90.49 +27,GPLc,2018,11,91.71 +27,GPLc,2018,12,92.24 +27,GPLc,2018,2,86.03 +27,GPLc,2018,3,86.09 +27,GPLc,2018,8,89.33 +27,GPLc,2018,10,91.67 +27,GPLc,2019,1,89.76 +27,GPLc,2019,2,88.38 +27,GPLc,2019,6,90.01 +27,GPLc,2019,7,89.34 +27,GPLc,2019,8,89.43 +27,GPLc,2019,9,89.42 +27,GPLc,2019,10,89.44 +27,GPLc,2019,11,89.4 +27,GPLc,2019,12,90.26 +27,GPLc,2019,3,88.05 +27,GPLc,2019,4,88.8 +27,GPLc,2019,5,90.06 +27,GPLc,2020,5,89.33 +27,GPLc,2020,7,89.08 +27,GPLc,2020,8,89.32 +27,GPLc,2020,1,91.22 +27,GPLc,2020,2,90.75 +27,GPLc,2020,3,90.09 +27,GPLc,2020,4,89.78 +27,GPLc,2020,6,89.04 +27,GPLc,2020,9,89.38 +27,GPLc,2020,10,89.79 +27,GPLc,2020,11,90.19 +27,GPLc,2020,12,90.39 +27,GPLc,2021,3,89.11 +27,GPLc,2021,7,89.87 +27,GPLc,2021,8,90.47 +27,GPLc,2021,10,90.94 +27,GPLc,2021,11,91.84 +27,GPLc,2021,12,92.19 +27,GPLc,2021,1,89.99 +27,GPLc,2021,2,88.62 +27,GPLc,2021,4,89.21 +27,GPLc,2021,5,89.1 +27,GPLc,2021,6,89.53 +27,GPLc,2021,9,90.55 +27,GPLc,2022,1,93.0 +27,GPLc,2022,2,94.0 +27,GPLc,2022,3,97.0 +27,GPLc,2022,4,88.0 +27,GPLc,2022,6,89.0 +27,GPLc,2022,7,90.0 +27,GPLc,2022,8,90.0 +27,GPLc,2022,9,82.0 +27,GPLc,2022,10,81.0 +27,GPLc,2022,11,86.0 +27,GPLc,2022,12,93.0 +27,GPLc,2022,5,88.0 +27,GPLc,2023,1,100.0 +27,GPLc,2023,2,100.0 +27,GPLc,2023,3,102.0 +27,GPLc,2023,6,103.0 +27,GPLc,2023,7,104.0 +27,GPLc,2023,8,104.0 +27,GPLc,2023,9,104.0 +27,GPLc,2023,10,104.0 +27,GPLc,2023,4,104.0 +27,GPLc,2023,5,104.0 +27,GPLc,2023,11,104.0 +27,GPLc,2023,12,104.0 +27,GPLc,2024,2,103.0 +27,GPLc,2024,4,103.0 +27,GPLc,2024,1,103.0 +27,GPLc,2024,3,103.0 +27,GPLc,2024,5,103.0 +27,GPLc,2024,6,102.0 +27,GPLc,2024,7,102.0 +27,GPLc,2024,8,102.0 +27,GPLc,2024,9,102.0 +27,GPLc,2024,10,102.0 +27,GPLc,2024,11,102.0 +27,GPLc,2024,12,102.0 +27,E85,2016,1,68.21 +27,E85,2016,7,88.95 +27,E85,2016,8,90.13 +27,E85,2016,11,90.69 +27,E85,2016,12,91.97 +27,E85,2016,2,79.31 +27,E85,2016,5,87.64 +27,E85,2016,6,89.78 +27,E85,2016,10,90.2 +27,E85,2016,9,91.94 +27,E85,2016,4,85.97 +27,E85,2016,3,82.01 +27,E85,2017,8,71.04 +27,E85,2017,6,71.94 +27,E85,2017,7,70.04 +27,E85,2017,9,72.14 +27,E85,2017,10,71.79 +27,E85,2017,11,71.72 +27,E85,2017,12,71.73 +27,E85,2017,1,68.75 +27,E85,2017,3,68.55 +27,E85,2017,4,74.13 +27,E85,2017,5,73.55 +27,E85,2017,2,68.45 +27,E85,2018,2,68.61 +27,E85,2018,3,68.25 +27,E85,2018,4,68.41 +27,E85,2018,5,73.3 +27,E85,2018,7,75.31 +27,E85,2018,8,75.72 +27,E85,2018,10,78.85 +27,E85,2018,12,81.3 +27,E85,2018,1,69.65 +27,E85,2018,9,78.28 +27,E85,2018,11,80.09 +27,E85,2018,6,75.86 +27,E85,2019,10,72.39 +27,E85,2019,11,72.19 +27,E85,2019,12,72.18 +27,E85,2019,1,68.86 +27,E85,2019,2,67.01 +27,E85,2019,3,69.29 +27,E85,2019,4,70.81 +27,E85,2019,5,70.3 +27,E85,2019,6,68.51 +27,E85,2019,7,69.65 +27,E85,2019,8,70.99 +27,E85,2019,9,72.04 +27,E85,2020,3,69.76 +27,E85,2020,4,68.94 +27,E85,2020,9,68.98 +27,E85,2020,11,69.95 +27,E85,2020,12,70.03 +27,E85,2020,1,70.18 +27,E85,2020,2,70.42 +27,E85,2020,5,69.33 +27,E85,2020,6,69.71 +27,E85,2020,7,69.66 +27,E85,2020,8,68.96 +27,E85,2020,10,69.7 +27,E85,2021,6,68.94 +27,E85,2021,7,70.11 +27,E85,2021,1,68.19 +27,E85,2021,2,68.6 +27,E85,2021,3,68.66 +27,E85,2021,4,68.58 +27,E85,2021,5,68.64 +27,E85,2021,8,69.83 +27,E85,2021,9,70.2 +27,E85,2021,10,71.06 +27,E85,2021,11,71.94 +27,E85,2021,12,72.09 +27,E85,2022,3,91.0 +27,E85,2022,4,79.0 +27,E85,2022,6,87.0 +27,E85,2022,7,89.0 +27,E85,2022,8,85.0 +27,E85,2022,9,71.0 +27,E85,2022,10,76.0 +27,E85,2022,11,86.0 +27,E85,2022,12,90.0 +27,E85,2022,1,76.0 +27,E85,2022,2,78.0 +27,E85,2022,5,81.0 +27,E85,2023,1,111.0 +27,E85,2023,2,114.0 +27,E85,2023,3,114.0 +27,E85,2023,4,114.0 +27,E85,2023,7,107.0 +27,E85,2023,8,107.0 +27,E85,2023,9,107.0 +27,E85,2023,10,105.0 +27,E85,2023,11,103.0 +27,E85,2023,12,102.0 +27,E85,2023,5,113.0 +27,E85,2023,6,111.0 +27,E85,2024,1,92.0 +27,E85,2024,2,91.0 +27,E85,2024,3,91.0 +27,E85,2024,5,89.0 +27,E85,2024,6,86.0 +27,E85,2024,4,90.0 +27,E85,2024,7,86.0 +27,E85,2024,8,86.0 +27,E85,2024,9,86.0 +27,E85,2024,10,86.0 +27,E85,2024,11,86.0 +27,E85,2024,12,86.0 +32,Gazole,2016,1,102.78 +32,Gazole,2016,3,106.67 +32,Gazole,2016,4,107.26 +32,Gazole,2016,5,112.77 +32,Gazole,2016,6,116.1 +32,Gazole,2016,7,112.81 +32,Gazole,2016,8,110.74 +32,Gazole,2016,9,111.81 +32,Gazole,2016,10,115.76 +32,Gazole,2016,11,115.22 +32,Gazole,2016,12,119.96 +32,Gazole,2016,2,102.27 +32,Gazole,2017,1,126.53 +32,Gazole,2017,2,126.6 +32,Gazole,2017,3,124.85 +32,Gazole,2017,4,124.8 +32,Gazole,2017,5,121.83 +32,Gazole,2017,6,118.78 +32,Gazole,2017,7,117.87 +32,Gazole,2017,8,119.81 +32,Gazole,2017,9,122.57 +32,Gazole,2017,10,124.63 +32,Gazole,2017,11,127.27 +32,Gazole,2017,12,128.09 +32,Gazole,2018,1,139.87 +32,Gazole,2018,2,138.28 +32,Gazole,2018,3,137.54 +32,Gazole,2018,4,140.24 +32,Gazole,2018,5,145.43 +32,Gazole,2018,6,146.83 +32,Gazole,2018,7,145.4 +32,Gazole,2018,8,145.49 +32,Gazole,2018,9,148.0 +32,Gazole,2018,10,152.37 +32,Gazole,2018,11,148.72 +32,Gazole,2018,12,142.66 +32,Gazole,2019,1,140.1 +32,Gazole,2019,2,143.89 +32,Gazole,2019,3,146.36 +32,Gazole,2019,4,147.54 +32,Gazole,2019,5,149.11 +32,Gazole,2019,6,143.43 +32,Gazole,2019,7,143.07 +32,Gazole,2019,8,142.2 +32,Gazole,2019,9,144.14 +32,Gazole,2019,10,145.0 +32,Gazole,2019,11,144.69 +32,Gazole,2019,12,146.23 +32,Gazole,2020,1,147.61 +32,Gazole,2020,2,141.19 +32,Gazole,2020,3,131.18 +32,Gazole,2020,4,123.24 +32,Gazole,2020,5,118.38 +32,Gazole,2020,6,121.46 +32,Gazole,2020,7,124.56 +32,Gazole,2020,8,124.13 +32,Gazole,2020,9,121.5 +32,Gazole,2020,10,120.83 +32,Gazole,2020,11,121.82 +32,Gazole,2020,12,126.07 +32,Gazole,2021,1,130.02 +32,Gazole,2021,2,134.69 +32,Gazole,2021,3,138.55 +32,Gazole,2021,4,137.6 +32,Gazole,2021,5,139.17 +32,Gazole,2021,6,141.64 +32,Gazole,2021,7,144.32 +32,Gazole,2021,8,143.7 +32,Gazole,2021,9,145.43 +32,Gazole,2021,10,154.65 +32,Gazole,2021,11,156.18 +32,Gazole,2021,12,153.05 +32,Gazole,2022,1,163.0 +32,Gazole,2022,2,171.0 +32,Gazole,2022,3,203.0 +32,Gazole,2022,4,185.0 +32,Gazole,2022,5,188.0 +32,Gazole,2022,6,209.0 +32,Gazole,2022,7,199.0 +32,Gazole,2022,8,188.0 +32,Gazole,2022,9,173.0 +32,Gazole,2022,10,187.0 +32,Gazole,2022,11,188.0 +32,Gazole,2022,12,178.0 +32,Gazole,2023,1,192.0 +32,Gazole,2023,2,185.0 +32,Gazole,2023,3,183.0 +32,Gazole,2023,4,179.0 +32,Gazole,2023,5,168.0 +32,Gazole,2023,6,169.0 +32,Gazole,2023,7,171.0 +32,Gazole,2023,8,185.0 +32,Gazole,2023,9,192.0 +32,Gazole,2023,10,190.0 +32,Gazole,2023,11,184.0 +32,Gazole,2023,12,177.0 +32,Gazole,2024,1,174.0 +32,Gazole,2024,2,181.0 +32,Gazole,2024,3,179.0 +32,Gazole,2024,4,179.0 +32,Gazole,2024,5,172.0 +32,Gazole,2024,6,170.0 +32,Gazole,2024,7,174.0 +32,Gazole,2024,8,174.0 +32,Gazole,2024,9,174.0 +32,Gazole,2024,10,174.0 +32,Gazole,2024,11,174.0 +32,Gazole,2024,12,174.0 +32,SP95,2016,1,127.9 +32,SP95,2016,3,126.98 +32,SP95,2016,4,131.55 +32,SP95,2016,6,136.16 +32,SP95,2016,7,131.89 +32,SP95,2016,8,129.38 +32,SP95,2016,10,133.6 +32,SP95,2016,11,132.74 +32,SP95,2016,12,136.5 +32,SP95,2016,2,125.57 +32,SP95,2016,5,134.24 +32,SP95,2016,9,130.48 +32,SP95,2017,1,140.98 +32,SP95,2017,2,141.68 +32,SP95,2017,3,139.46 +32,SP95,2017,4,140.64 +32,SP95,2017,5,138.26 +32,SP95,2017,6,135.89 +32,SP95,2017,7,134.0 +32,SP95,2017,8,135.04 +32,SP95,2017,9,138.1 +32,SP95,2017,10,137.22 +32,SP95,2017,11,141.1 +32,SP95,2017,12,141.25 +32,SP95,2018,1,147.8 +32,SP95,2018,2,147.24 +32,SP95,2018,3,146.26 +32,SP95,2018,4,149.39 +32,SP95,2018,5,154.19 +32,SP95,2018,6,155.47 +32,SP95,2018,7,154.56 +32,SP95,2018,8,155.73 +32,SP95,2018,9,156.88 +32,SP95,2018,10,156.99 +32,SP95,2018,11,150.17 +32,SP95,2018,12,144.42 +32,SP95,2019,1,143.14 +32,SP95,2019,2,145.73 +32,SP95,2019,3,149.24 +32,SP95,2019,4,157.0 +32,SP95,2019,5,160.15 +32,SP95,2019,6,155.19 +32,SP95,2019,7,153.44 +32,SP95,2019,8,152.05 +32,SP95,2019,9,151.27 +32,SP95,2019,10,151.17 +32,SP95,2019,11,151.97 +32,SP95,2019,12,152.71 +32,SP95,2020,1,154.15 +32,SP95,2020,2,150.77 +32,SP95,2020,3,140.51 +32,SP95,2020,4,129.27 +32,SP95,2020,5,126.74 +32,SP95,2020,6,132.23 +32,SP95,2020,7,135.6 +32,SP95,2020,8,134.63 +32,SP95,2020,9,134.06 +32,SP95,2020,10,134.35 +32,SP95,2020,11,133.78 +32,SP95,2020,12,136.01 +32,SP95,2021,1,140.67 +32,SP95,2021,2,145.36 +32,SP95,2021,3,150.89 +32,SP95,2021,4,151.95 +32,SP95,2021,5,152.94 +32,SP95,2021,6,154.07 +32,SP95,2021,7,157.57 +32,SP95,2021,8,158.25 +32,SP95,2021,9,158.41 +32,SP95,2021,10,164.55 +32,SP95,2021,11,167.02 +32,SP95,2021,12,163.25 +32,SP95,2022,1,171.0 +32,SP95,2022,2,180.0 +32,SP95,2022,3,200.0 +32,SP95,2022,4,182.0 +32,SP95,2022,5,193.0 +32,SP95,2022,6,214.0 +32,SP95,2022,7,202.0 +32,SP95,2022,8,186.0 +32,SP95,2022,9,165.0 +32,SP95,2022,10,172.0 +32,SP95,2022,11,174.0 +32,SP95,2022,12,171.0 +32,SP95,2023,1,189.0 +32,SP95,2023,2,193.0 +32,SP95,2023,3,192.0 +32,SP95,2023,4,195.0 +32,SP95,2023,5,188.0 +32,SP95,2023,6,188.0 +32,SP95,2023,7,186.0 +32,SP95,2023,8,194.0 +32,SP95,2023,9,195.0 +32,SP95,2023,10,190.0 +32,SP95,2023,11,187.0 +32,SP95,2023,12,183.0 +32,SP95,2024,1,180.0 +32,SP95,2024,2,185.0 +32,SP95,2024,3,188.0 +32,SP95,2024,4,193.0 +32,SP95,2024,5,190.0 +32,SP95,2024,6,185.0 +32,SP95,2024,7,185.0 +32,SP95,2024,8,185.0 +32,SP95,2024,9,185.0 +32,SP95,2024,10,185.0 +32,SP95,2024,11,185.0 +32,SP95,2024,12,185.0 +32,SP98,2016,1,132.52 +32,SP98,2016,3,131.41 +32,SP98,2016,4,136.09 +32,SP98,2016,6,141.28 +32,SP98,2016,7,136.96 +32,SP98,2016,10,138.6 +32,SP98,2016,11,137.89 +32,SP98,2016,12,141.68 +32,SP98,2016,2,130.03 +32,SP98,2016,5,139.08 +32,SP98,2016,8,134.41 +32,SP98,2016,9,135.41 +32,SP98,2017,1,146.25 +32,SP98,2017,2,146.88 +32,SP98,2017,3,144.73 +32,SP98,2017,4,145.84 +32,SP98,2017,5,143.46 +32,SP98,2017,6,141.06 +32,SP98,2017,7,139.03 +32,SP98,2017,8,139.93 +32,SP98,2017,9,143.12 +32,SP98,2017,10,142.17 +32,SP98,2017,11,146.62 +32,SP98,2017,12,146.79 +32,SP98,2018,1,153.27 +32,SP98,2018,2,152.52 +32,SP98,2018,3,151.26 +32,SP98,2018,4,154.29 +32,SP98,2018,5,159.28 +32,SP98,2018,6,160.91 +32,SP98,2018,7,159.93 +32,SP98,2018,8,160.9 +32,SP98,2018,9,162.15 +32,SP98,2018,10,162.07 +32,SP98,2018,11,154.9 +32,SP98,2018,12,148.91 +32,SP98,2019,1,147.33 +32,SP98,2019,2,149.9 +32,SP98,2019,3,153.46 +32,SP98,2019,4,161.56 +32,SP98,2019,5,164.94 +32,SP98,2019,6,160.06 +32,SP98,2019,7,158.18 +32,SP98,2019,8,156.87 +32,SP98,2019,9,156.11 +32,SP98,2019,10,155.95 +32,SP98,2019,11,156.77 +32,SP98,2019,12,157.68 +32,SP98,2020,1,158.92 +32,SP98,2020,2,155.0 +32,SP98,2020,3,145.83 +32,SP98,2020,4,135.0 +32,SP98,2020,5,131.51 +32,SP98,2020,6,136.68 +32,SP98,2020,7,140.29 +32,SP98,2020,8,139.18 +32,SP98,2020,9,138.87 +32,SP98,2020,10,139.24 +32,SP98,2020,11,138.85 +32,SP98,2020,12,141.14 +32,SP98,2021,1,145.55 +32,SP98,2021,2,150.11 +32,SP98,2021,3,155.92 +32,SP98,2021,4,157.02 +32,SP98,2021,5,158.16 +32,SP98,2021,6,159.4 +32,SP98,2021,7,163.25 +32,SP98,2021,8,164.22 +32,SP98,2021,9,164.32 +32,SP98,2021,10,170.72 +32,SP98,2021,11,173.01 +32,SP98,2021,12,168.88 +32,SP98,2022,1,177.0 +32,SP98,2022,2,185.0 +32,SP98,2022,3,204.0 +32,SP98,2022,4,185.0 +32,SP98,2022,5,199.0 +32,SP98,2022,6,221.0 +32,SP98,2022,7,206.0 +32,SP98,2022,8,189.0 +32,SP98,2022,9,164.0 +32,SP98,2022,10,173.0 +32,SP98,2022,11,178.0 +32,SP98,2022,12,175.0 +32,SP98,2023,1,194.0 +32,SP98,2023,2,197.0 +32,SP98,2023,3,197.0 +32,SP98,2023,4,199.0 +32,SP98,2023,5,192.0 +32,SP98,2023,6,192.0 +32,SP98,2023,7,190.0 +32,SP98,2023,8,198.0 +32,SP98,2023,9,200.0 +32,SP98,2023,10,194.0 +32,SP98,2023,11,191.0 +32,SP98,2023,12,186.0 +32,SP98,2024,1,186.0 +32,SP98,2024,2,191.0 +32,SP98,2024,3,194.0 +32,SP98,2024,4,198.0 +32,SP98,2024,5,196.0 +32,SP98,2024,6,191.0 +32,SP98,2024,7,192.0 +32,SP98,2024,8,192.0 +32,SP98,2024,9,192.0 +32,SP98,2024,10,192.0 +32,SP98,2024,11,192.0 +32,SP98,2024,12,192.0 +32,E10,2016,1,125.74 +32,E10,2016,2,123.3 +32,E10,2016,3,125.11 +32,E10,2016,4,129.82 +32,E10,2016,5,132.64 +32,E10,2016,6,134.74 +32,E10,2016,7,130.12 +32,E10,2016,8,127.93 +32,E10,2016,9,128.71 +32,E10,2016,10,131.56 +32,E10,2016,11,130.6 +32,E10,2016,12,134.36 +32,E10,2017,1,138.29 +32,E10,2017,2,139.18 +32,E10,2017,3,137.05 +32,E10,2017,4,138.22 +32,E10,2017,5,135.72 +32,E10,2017,6,133.4 +32,E10,2017,7,131.78 +32,E10,2017,8,133.07 +32,E10,2017,9,136.26 +32,E10,2017,10,135.05 +32,E10,2017,11,139.42 +32,E10,2017,12,139.6 +32,E10,2018,1,145.83 +32,E10,2018,2,145.27 +32,E10,2018,3,144.22 +32,E10,2018,4,147.38 +32,E10,2018,5,151.98 +32,E10,2018,6,153.24 +32,E10,2018,7,152.28 +32,E10,2018,8,153.3 +32,E10,2018,9,154.28 +32,E10,2018,10,154.21 +32,E10,2018,11,146.77 +32,E10,2018,12,141.29 +32,E10,2019,2,143.07 +32,E10,2019,1,140.2 +32,E10,2019,3,146.3 +32,E10,2019,4,154.13 +32,E10,2019,5,157.29 +32,E10,2019,6,152.0 +32,E10,2019,7,150.73 +32,E10,2019,8,149.34 +32,E10,2019,9,148.8 +32,E10,2019,10,148.78 +32,E10,2019,11,149.47 +32,E10,2019,12,150.41 +32,E10,2020,1,151.44 +32,E10,2020,2,147.63 +32,E10,2020,3,137.68 +32,E10,2020,4,127.49 +32,E10,2020,5,125.18 +32,E10,2020,6,130.61 +32,E10,2020,7,134.1 +32,E10,2020,8,132.85 +32,E10,2020,9,132.45 +32,E10,2020,10,132.73 +32,E10,2020,11,132.16 +32,E10,2020,12,134.62 +32,E10,2021,11,164.56 +32,E10,2021,12,159.83 +32,E10,2021,1,139.0 +32,E10,2021,2,143.66 +32,E10,2021,3,148.95 +32,E10,2021,4,149.87 +32,E10,2021,5,150.8 +32,E10,2021,6,152.12 +32,E10,2021,7,155.51 +32,E10,2021,8,156.15 +32,E10,2021,9,156.54 +32,E10,2021,10,162.73 +32,E10,2022,1,169.0 +32,E10,2022,2,177.0 +32,E10,2022,3,194.0 +32,E10,2022,4,175.0 +32,E10,2022,5,189.0 +32,E10,2022,6,210.0 +32,E10,2022,7,195.0 +32,E10,2022,8,178.0 +32,E10,2022,9,153.0 +32,E10,2022,10,163.0 +32,E10,2022,11,168.0 +32,E10,2022,12,165.0 +32,E10,2023,1,187.0 +32,E10,2023,2,189.0 +32,E10,2023,3,189.0 +32,E10,2023,4,192.0 +32,E10,2023,5,184.0 +32,E10,2023,6,185.0 +32,E10,2023,7,182.0 +32,E10,2023,8,192.0 +32,E10,2023,9,194.0 +32,E10,2023,10,187.0 +32,E10,2023,11,183.0 +32,E10,2023,12,178.0 +32,E10,2024,1,177.0 +32,E10,2024,2,182.0 +32,E10,2024,3,185.0 +32,E10,2024,4,190.0 +32,E10,2024,5,186.0 +32,E10,2024,6,181.0 +32,E10,2024,7,182.0 +32,E10,2024,8,182.0 +32,E10,2024,9,182.0 +32,E10,2024,10,182.0 +32,E10,2024,11,182.0 +32,E10,2024,12,182.0 +32,E85,2016,1,66.44 +32,E85,2016,6,74.87 +32,E85,2016,7,76.12 +32,E85,2016,8,76.77 +32,E85,2016,5,73.88 +32,E85,2016,12,76.65 +32,E85,2016,11,76.38 +32,E85,2016,4,72.1 +32,E85,2016,2,68.49 +32,E85,2016,3,69.89 +32,E85,2016,9,77.82 +32,E85,2016,10,76.94 +32,E85,2017,3,61.5 +32,E85,2017,7,60.9 +32,E85,2017,5,60.54 +32,E85,2017,1,63.74 +32,E85,2017,11,67.51 +32,E85,2017,12,67.97 +32,E85,2017,8,61.93 +32,E85,2017,2,62.43 +32,E85,2017,6,60.54 +32,E85,2017,9,66.67 +32,E85,2017,10,67.06 +32,E85,2017,4,61.27 +32,E85,2018,1,64.65 +32,E85,2018,7,66.28 +32,E85,2018,11,64.39 +32,E85,2018,12,65.58 +32,E85,2018,5,63.66 +32,E85,2018,2,64.32 +32,E85,2018,10,66.36 +32,E85,2018,3,63.7 +32,E85,2018,4,63.54 +32,E85,2018,6,65.16 +32,E85,2018,8,66.02 +32,E85,2018,9,65.76 +32,E85,2019,2,61.27 +32,E85,2019,4,62.3 +32,E85,2019,5,63.28 +32,E85,2019,8,64.2 +32,E85,2019,9,64.58 +32,E85,2019,10,65.0 +32,E85,2019,11,65.16 +32,E85,2019,1,62.88 +32,E85,2019,3,61.73 +32,E85,2019,6,64.75 +32,E85,2019,7,64.42 +32,E85,2019,12,65.28 +32,E85,2020,3,64.04 +32,E85,2020,11,63.58 +32,E85,2020,12,63.55 +32,E85,2020,1,65.14 +32,E85,2020,7,63.54 +32,E85,2020,8,63.42 +32,E85,2020,4,63.78 +32,E85,2020,5,64.1 +32,E85,2020,6,63.73 +32,E85,2020,9,63.77 +32,E85,2020,10,63.7 +32,E85,2020,2,64.34 +32,E85,2021,9,67.74 +32,E85,2021,10,68.74 +32,E85,2021,11,70.6 +32,E85,2021,12,70.64 +32,E85,2021,1,64.56 +32,E85,2021,2,65.17 +32,E85,2021,3,65.91 +32,E85,2021,8,67.66 +32,E85,2021,4,66.04 +32,E85,2021,6,66.29 +32,E85,2021,7,67.2 +32,E85,2021,5,66.08 +32,E85,2022,1,75.0 +32,E85,2022,2,78.0 +32,E85,2022,3,90.0 +32,E85,2022,4,77.0 +32,E85,2022,5,78.0 +32,E85,2022,6,85.0 +32,E85,2022,7,87.0 +32,E85,2022,8,83.0 +32,E85,2022,9,70.0 +32,E85,2022,10,77.0 +32,E85,2022,11,88.0 +32,E85,2022,12,91.0 +32,E85,2023,6,108.0 +32,E85,2023,1,111.0 +32,E85,2023,2,112.0 +32,E85,2023,3,113.0 +32,E85,2023,4,112.0 +32,E85,2023,5,111.0 +32,E85,2023,7,104.0 +32,E85,2023,8,104.0 +32,E85,2023,9,104.0 +32,E85,2023,10,103.0 +32,E85,2023,11,101.0 +32,E85,2023,12,100.0 +32,E85,2024,1,91.0 +32,E85,2024,2,90.0 +32,E85,2024,3,90.0 +32,E85,2024,4,89.0 +32,E85,2024,5,89.0 +32,E85,2024,6,86.0 +32,E85,2024,7,85.0 +32,E85,2024,8,85.0 +32,E85,2024,9,85.0 +32,E85,2024,10,85.0 +32,E85,2024,11,85.0 +32,E85,2024,12,85.0 +32,GPLc,2016,1,72.53 +32,GPLc,2016,2,72.01 +32,GPLc,2016,4,69.92 +32,GPLc,2016,5,69.92 +32,GPLc,2016,12,71.37 +32,GPLc,2016,3,70.69 +32,GPLc,2016,7,70.44 +32,GPLc,2016,9,70.18 +32,GPLc,2016,10,70.2 +32,GPLc,2016,11,70.54 +32,GPLc,2016,8,69.88 +32,GPLc,2016,6,70.59 +32,GPLc,2017,12,77.3 +32,GPLc,2017,1,71.16 +32,GPLc,2017,2,73.45 +32,GPLc,2017,3,74.5 +32,GPLc,2017,8,73.82 +32,GPLc,2017,11,76.33 +32,GPLc,2017,4,74.7 +32,GPLc,2017,6,74.8 +32,GPLc,2017,9,74.53 +32,GPLc,2017,7,74.26 +32,GPLc,2017,10,75.0 +32,GPLc,2017,5,74.53 +32,GPLc,2018,6,82.09 +32,GPLc,2018,1,82.04 +32,GPLc,2018,5,80.86 +32,GPLc,2018,10,85.41 +32,GPLc,2018,12,85.6 +32,GPLc,2018,3,81.56 +32,GPLc,2018,4,80.95 +32,GPLc,2018,7,82.48 +32,GPLc,2018,2,81.57 +32,GPLc,2018,9,83.74 +32,GPLc,2018,11,85.61 +32,GPLc,2018,8,82.82 +32,GPLc,2019,4,84.68 +32,GPLc,2019,11,85.14 +32,GPLc,2019,5,85.14 +32,GPLc,2019,6,85.44 +32,GPLc,2019,7,84.97 +32,GPLc,2019,10,85.24 +32,GPLc,2019,9,85.3 +32,GPLc,2019,8,84.94 +32,GPLc,2019,1,84.7 +32,GPLc,2019,2,84.45 +32,GPLc,2019,3,84.56 +32,GPLc,2019,12,85.71 +32,GPLc,2020,3,84.84 +32,GPLc,2020,1,85.51 +32,GPLc,2020,2,85.68 +32,GPLc,2020,4,84.4 +32,GPLc,2020,10,83.88 +32,GPLc,2020,5,83.62 +32,GPLc,2020,8,83.33 +32,GPLc,2020,6,83.36 +32,GPLc,2020,12,84.04 +32,GPLc,2020,7,83.23 +32,GPLc,2020,9,83.4 +32,GPLc,2020,11,84.39 +32,GPLc,2021,2,84.75 +32,GPLc,2021,3,84.54 +32,GPLc,2021,6,85.06 +32,GPLc,2021,8,85.07 +32,GPLc,2021,10,85.9 +32,GPLc,2021,7,84.95 +32,GPLc,2021,12,88.66 +32,GPLc,2021,4,84.29 +32,GPLc,2021,9,85.03 +32,GPLc,2021,1,84.56 +32,GPLc,2021,5,85.06 +32,GPLc,2021,11,87.32 +32,GPLc,2022,3,95.0 +32,GPLc,2022,4,83.0 +32,GPLc,2022,9,77.0 +32,GPLc,2022,10,78.0 +32,GPLc,2022,11,85.0 +32,GPLc,2022,12,94.0 +32,GPLc,2022,1,92.0 +32,GPLc,2022,2,92.0 +32,GPLc,2022,5,84.0 +32,GPLc,2022,6,85.0 +32,GPLc,2022,7,86.0 +32,GPLc,2022,8,86.0 +32,GPLc,2023,1,100.0 +32,GPLc,2023,5,103.0 +32,GPLc,2023,9,103.0 +32,GPLc,2023,11,103.0 +32,GPLc,2023,3,102.0 +32,GPLc,2023,7,103.0 +32,GPLc,2023,8,103.0 +32,GPLc,2023,6,103.0 +32,GPLc,2023,10,103.0 +32,GPLc,2023,12,103.0 +32,GPLc,2023,2,102.0 +32,GPLc,2023,4,103.0 +32,GPLc,2024,1,100.0 +32,GPLc,2024,3,100.0 +32,GPLc,2024,4,100.0 +32,GPLc,2024,2,100.0 +32,GPLc,2024,5,99.0 +32,GPLc,2024,6,99.0 +32,GPLc,2024,7,100.0 +32,GPLc,2024,8,100.0 +32,GPLc,2024,9,100.0 +32,GPLc,2024,10,100.0 +32,GPLc,2024,11,100.0 +32,GPLc,2024,12,100.0 +44,Gazole,2016,1,104.38 +44,Gazole,2016,2,103.53 +44,Gazole,2016,3,107.57 +44,Gazole,2016,4,108.3 +44,Gazole,2016,5,113.41 +44,Gazole,2016,6,116.85 +44,Gazole,2016,7,113.81 +44,Gazole,2016,8,111.59 +44,Gazole,2016,9,112.93 +44,Gazole,2016,10,117.21 +44,Gazole,2016,11,116.83 +44,Gazole,2016,12,121.46 +44,Gazole,2017,1,128.71 +44,Gazole,2017,2,128.45 +44,Gazole,2017,3,126.24 +44,Gazole,2017,4,125.92 +44,Gazole,2017,5,123.26 +44,Gazole,2017,6,120.13 +44,Gazole,2017,7,119.19 +44,Gazole,2017,8,121.09 +44,Gazole,2017,9,123.51 +44,Gazole,2017,10,125.92 +44,Gazole,2017,11,128.73 +44,Gazole,2017,12,129.46 +44,Gazole,2018,1,140.74 +44,Gazole,2018,2,139.22 +44,Gazole,2018,3,138.44 +44,Gazole,2018,4,141.19 +44,Gazole,2018,5,146.16 +44,Gazole,2018,6,147.62 +44,Gazole,2018,7,146.52 +44,Gazole,2018,8,147.27 +44,Gazole,2018,9,149.94 +44,Gazole,2018,10,154.33 +44,Gazole,2018,11,151.42 +44,Gazole,2018,12,145.83 +44,Gazole,2019,1,141.93 +44,Gazole,2019,2,145.29 +44,Gazole,2019,3,147.9 +44,Gazole,2019,4,148.68 +44,Gazole,2019,5,150.35 +44,Gazole,2019,6,145.02 +44,Gazole,2019,7,144.36 +44,Gazole,2019,8,143.82 +44,Gazole,2019,9,145.46 +44,Gazole,2019,10,146.38 +44,Gazole,2019,11,146.12 +44,Gazole,2019,12,147.57 +44,Gazole,2020,1,149.25 +44,Gazole,2020,2,142.83 +44,Gazole,2020,3,132.71 +44,Gazole,2020,4,124.82 +44,Gazole,2020,5,120.09 +44,Gazole,2020,6,122.95 +44,Gazole,2020,7,125.62 +44,Gazole,2020,8,125.13 +44,Gazole,2020,9,122.77 +44,Gazole,2020,10,122.04 +44,Gazole,2020,11,122.98 +44,Gazole,2020,12,127.12 +44,Gazole,2021,1,131.32 +44,Gazole,2021,2,135.68 +44,Gazole,2021,3,139.75 +44,Gazole,2021,4,139.18 +44,Gazole,2021,5,140.41 +44,Gazole,2021,6,142.8 +44,Gazole,2021,7,145.57 +44,Gazole,2021,8,144.88 +44,Gazole,2021,9,146.5 +44,Gazole,2021,10,156.06 +44,Gazole,2021,11,158.96 +44,Gazole,2021,12,155.79 +44,Gazole,2022,1,164.0 +44,Gazole,2022,2,172.0 +44,Gazole,2022,3,205.0 +44,Gazole,2022,4,188.0 +44,Gazole,2022,5,191.0 +44,Gazole,2022,6,208.0 +44,Gazole,2022,7,200.0 +44,Gazole,2022,8,192.0 +44,Gazole,2022,9,178.0 +44,Gazole,2022,10,190.0 +44,Gazole,2022,11,191.0 +44,Gazole,2022,12,181.0 +44,Gazole,2023,1,195.0 +44,Gazole,2023,2,188.0 +44,Gazole,2023,3,186.0 +44,Gazole,2023,4,181.0 +44,Gazole,2023,5,170.0 +44,Gazole,2023,6,170.0 +44,Gazole,2023,7,173.0 +44,Gazole,2023,8,186.0 +44,Gazole,2023,9,193.0 +44,Gazole,2023,10,192.0 +44,Gazole,2023,11,186.0 +44,Gazole,2023,12,179.0 +44,Gazole,2024,1,176.0 +44,Gazole,2024,2,183.0 +44,Gazole,2024,4,180.0 +44,Gazole,2024,3,181.0 +44,Gazole,2024,5,174.0 +44,Gazole,2024,6,172.0 +44,Gazole,2024,7,175.0 +44,Gazole,2024,8,175.0 +44,Gazole,2024,9,175.0 +44,Gazole,2024,10,175.0 +44,Gazole,2024,11,175.0 +44,Gazole,2024,12,175.0 +44,SP95,2016,1,128.46 +44,SP95,2016,2,125.87 +44,SP95,2016,3,127.38 +44,SP95,2016,4,131.95 +44,SP95,2016,5,134.85 +44,SP95,2016,6,137.03 +44,SP95,2016,7,132.53 +44,SP95,2016,8,130.11 +44,SP95,2016,9,131.8 +44,SP95,2016,10,134.93 +44,SP95,2016,11,134.13 +44,SP95,2016,12,137.48 +44,SP95,2017,1,143.04 +44,SP95,2017,2,143.03 +44,SP95,2017,3,140.45 +44,SP95,2017,4,141.27 +44,SP95,2017,5,139.33 +44,SP95,2017,6,136.91 +44,SP95,2017,7,135.02 +44,SP95,2017,8,135.94 +44,SP95,2017,9,138.87 +44,SP95,2017,10,138.38 +44,SP95,2017,11,141.84 +44,SP95,2017,12,141.98 +44,SP95,2018,1,148.33 +44,SP95,2018,2,148.05 +44,SP95,2018,3,147.19 +44,SP95,2018,4,149.76 +44,SP95,2018,5,153.82 +44,SP95,2018,6,155.18 +44,SP95,2018,7,154.57 +44,SP95,2018,8,155.91 +44,SP95,2018,9,157.24 +44,SP95,2018,10,157.22 +44,SP95,2018,11,152.45 +44,SP95,2018,12,147.4 +44,SP95,2019,1,143.91 +44,SP95,2019,2,146.04 +44,SP95,2019,3,149.89 +44,SP95,2019,4,157.48 +44,SP95,2019,5,160.59 +44,SP95,2019,6,155.92 +44,SP95,2019,7,154.22 +44,SP95,2019,8,153.15 +44,SP95,2019,9,152.76 +44,SP95,2019,10,152.62 +44,SP95,2019,11,153.0 +44,SP95,2019,12,154.1 +44,SP95,2020,1,155.56 +44,SP95,2020,2,151.58 +44,SP95,2020,3,141.82 +44,SP95,2020,4,130.95 +44,SP95,2020,5,127.77 +44,SP95,2020,6,132.66 +44,SP95,2020,7,135.69 +44,SP95,2020,8,135.31 +44,SP95,2020,9,135.16 +44,SP95,2020,10,135.45 +44,SP95,2020,11,134.92 +44,SP95,2020,12,137.15 +44,SP95,2021,1,141.97 +44,SP95,2021,2,146.67 +44,SP95,2021,3,152.32 +44,SP95,2021,4,153.52 +44,SP95,2021,5,154.52 +44,SP95,2021,6,155.77 +44,SP95,2021,7,159.06 +44,SP95,2021,8,159.7 +44,SP95,2021,9,160.33 +44,SP95,2021,10,166.52 +44,SP95,2021,11,169.74 +44,SP95,2021,12,166.04 +44,SP95,2022,1,173.0 +44,SP95,2022,2,180.0 +44,SP95,2022,3,201.0 +44,SP95,2022,4,184.0 +44,SP95,2022,5,192.0 +44,SP95,2022,6,211.0 +44,SP95,2022,7,201.0 +44,SP95,2022,8,185.0 +44,SP95,2022,9,165.0 +44,SP95,2022,10,172.0 +44,SP95,2022,11,176.0 +44,SP95,2022,12,173.0 +44,SP95,2023,1,189.0 +44,SP95,2023,2,193.0 +44,SP95,2023,4,194.0 +44,SP95,2023,5,188.0 +44,SP95,2023,8,194.0 +44,SP95,2023,9,196.0 +44,SP95,2023,10,191.0 +44,SP95,2023,3,192.0 +44,SP95,2023,6,188.0 +44,SP95,2023,7,187.0 +44,SP95,2023,11,188.0 +44,SP95,2023,12,185.0 +44,SP95,2024,2,186.0 +44,SP95,2024,3,188.0 +44,SP95,2024,4,193.0 +44,SP95,2024,5,191.0 +44,SP95,2024,1,182.0 +44,SP95,2024,6,186.0 +44,SP95,2024,7,186.0 +44,SP95,2024,8,186.0 +44,SP95,2024,9,186.0 +44,SP95,2024,10,186.0 +44,SP95,2024,11,186.0 +44,SP95,2024,12,186.0 +44,E85,2016,1,71.94 +44,E85,2016,2,71.8 +44,E85,2016,3,73.55 +44,E85,2016,4,73.39 +44,E85,2016,5,73.83 +44,E85,2016,6,73.63 +44,E85,2016,7,75.39 +44,E85,2016,8,78.26 +44,E85,2016,9,79.39 +44,E85,2016,10,79.48 +44,E85,2016,11,79.82 +44,E85,2016,12,79.64 +44,E85,2017,1,68.16 +44,E85,2017,2,68.97 +44,E85,2017,3,68.34 +44,E85,2017,4,68.29 +44,E85,2017,5,68.13 +44,E85,2017,6,66.68 +44,E85,2017,7,67.6 +44,E85,2017,8,69.2 +44,E85,2017,9,73.53 +44,E85,2017,10,74.54 +44,E85,2017,11,74.54 +44,E85,2017,12,74.4 +44,E85,2018,1,70.28 +44,E85,2018,2,70.33 +44,E85,2018,3,70.97 +44,E85,2018,4,71.02 +44,E85,2018,5,72.35 +44,E85,2018,6,71.98 +44,E85,2018,7,71.07 +44,E85,2018,8,72.38 +44,E85,2018,9,74.35 +44,E85,2018,10,76.42 +44,E85,2018,11,74.67 +44,E85,2018,12,75.14 +44,E85,2019,1,69.52 +44,E85,2019,2,68.52 +44,E85,2019,3,68.65 +44,E85,2019,4,68.98 +44,E85,2019,5,69.37 +44,E85,2019,6,70.63 +44,E85,2019,7,70.55 +44,E85,2019,8,70.83 +44,E85,2019,9,70.57 +44,E85,2019,10,70.47 +44,E85,2019,11,70.75 +44,E85,2019,12,70.9 +44,E85,2020,1,71.99 +44,E85,2020,2,70.81 +44,E85,2020,3,70.47 +44,E85,2020,4,70.05 +44,E85,2020,5,69.74 +44,E85,2020,6,69.59 +44,E85,2020,7,69.66 +44,E85,2020,8,69.4 +44,E85,2020,9,69.39 +44,E85,2020,10,68.94 +44,E85,2020,11,69.06 +44,E85,2020,12,69.1 +44,E85,2021,1,70.06 +44,E85,2021,2,69.84 +44,E85,2021,3,69.73 +44,E85,2021,4,69.6 +44,E85,2021,5,69.56 +44,E85,2021,6,69.58 +44,E85,2021,7,69.58 +44,E85,2021,8,69.74 +44,E85,2021,9,69.86 +44,E85,2021,10,70.44 +44,E85,2021,11,71.39 +44,E85,2021,12,71.97 +44,E85,2022,1,75.0 +44,E85,2022,2,76.0 +44,E85,2022,3,88.0 +44,E85,2022,4,75.0 +44,E85,2022,5,78.0 +44,E85,2022,6,85.0 +44,E85,2022,7,86.0 +44,E85,2022,8,83.0 +44,E85,2022,9,70.0 +44,E85,2022,10,76.0 +44,E85,2022,11,87.0 +44,E85,2022,12,91.0 +44,E85,2023,1,112.0 +44,E85,2023,2,114.0 +44,E85,2023,3,114.0 +44,E85,2023,4,114.0 +44,E85,2023,5,114.0 +44,E85,2023,6,110.0 +44,E85,2023,7,105.0 +44,E85,2023,8,105.0 +44,E85,2023,9,105.0 +44,E85,2023,10,103.0 +44,E85,2023,11,102.0 +44,E85,2023,12,101.0 +44,E85,2024,1,92.0 +44,E85,2024,2,93.0 +44,E85,2024,3,91.0 +44,E85,2024,4,90.0 +44,E85,2024,5,89.0 +44,E85,2024,6,86.0 +44,E85,2024,7,86.0 +44,E85,2024,8,86.0 +44,E85,2024,9,86.0 +44,E85,2024,10,86.0 +44,E85,2024,11,86.0 +44,E85,2024,12,86.0 +44,SP98,2016,1,133.36 +44,SP98,2016,2,130.56 +44,SP98,2016,3,131.62 +44,SP98,2016,4,136.22 +44,SP98,2016,5,139.1 +44,SP98,2016,6,141.54 +44,SP98,2016,7,137.43 +44,SP98,2016,8,134.86 +44,SP98,2016,9,136.42 +44,SP98,2016,10,139.57 +44,SP98,2016,11,139.09 +44,SP98,2016,12,142.43 +44,SP98,2017,1,148.02 +44,SP98,2017,2,148.37 +44,SP98,2017,3,145.8 +44,SP98,2017,4,146.52 +44,SP98,2017,5,144.58 +44,SP98,2017,6,142.04 +44,SP98,2017,7,139.94 +44,SP98,2017,8,140.78 +44,SP98,2017,9,144.04 +44,SP98,2017,10,143.54 +44,SP98,2017,11,147.53 +44,SP98,2017,12,147.8 +44,SP98,2018,1,153.74 +44,SP98,2018,2,153.39 +44,SP98,2018,3,152.37 +44,SP98,2018,4,155.12 +44,SP98,2018,5,159.46 +44,SP98,2018,6,160.97 +44,SP98,2018,7,160.28 +44,SP98,2018,8,161.56 +44,SP98,2018,9,163.01 +44,SP98,2018,10,163.21 +44,SP98,2018,11,157.39 +44,SP98,2018,12,151.51 +44,SP98,2019,1,149.01 +44,SP98,2019,2,150.88 +44,SP98,2019,3,154.52 +44,SP98,2019,4,162.42 +44,SP98,2019,5,165.78 +44,SP98,2019,6,160.97 +44,SP98,2019,7,159.08 +44,SP98,2019,8,157.91 +44,SP98,2019,9,157.19 +44,SP98,2019,10,157.15 +44,SP98,2019,11,157.78 +44,SP98,2019,12,158.88 +44,SP98,2020,1,160.57 +44,SP98,2020,2,156.52 +44,SP98,2020,3,147.14 +44,SP98,2020,4,136.31 +44,SP98,2020,5,132.87 +44,SP98,2020,6,137.71 +44,SP98,2020,7,140.76 +44,SP98,2020,8,140.19 +44,SP98,2020,9,140.05 +44,SP98,2020,10,140.25 +44,SP98,2020,11,139.74 +44,SP98,2020,12,141.93 +44,SP98,2021,1,146.84 +44,SP98,2021,2,151.15 +44,SP98,2021,3,156.84 +44,SP98,2021,4,158.41 +44,SP98,2021,5,159.26 +44,SP98,2021,6,160.44 +44,SP98,2021,7,163.99 +44,SP98,2021,8,164.69 +44,SP98,2021,9,165.12 +44,SP98,2021,10,171.45 +44,SP98,2021,11,175.03 +44,SP98,2021,12,171.07 +44,SP98,2022,1,178.0 +44,SP98,2022,2,185.0 +44,SP98,2022,3,205.0 +44,SP98,2022,4,187.0 +44,SP98,2022,5,198.0 +44,SP98,2022,6,218.0 +44,SP98,2022,7,206.0 +44,SP98,2022,8,190.0 +44,SP98,2022,9,166.0 +44,SP98,2022,10,175.0 +44,SP98,2022,11,180.0 +44,SP98,2022,12,176.0 +44,SP98,2023,1,195.0 +44,SP98,2023,2,198.0 +44,SP98,2023,3,197.0 +44,SP98,2023,4,198.0 +44,SP98,2023,5,193.0 +44,SP98,2023,6,193.0 +44,SP98,2023,7,191.0 +44,SP98,2023,8,199.0 +44,SP98,2023,9,201.0 +44,SP98,2023,10,195.0 +44,SP98,2023,11,192.0 +44,SP98,2023,12,188.0 +44,SP98,2024,1,187.0 +44,SP98,2024,2,191.0 +44,SP98,2024,3,193.0 +44,SP98,2024,4,198.0 +44,SP98,2024,5,196.0 +44,SP98,2024,6,192.0 +44,SP98,2024,7,192.0 +44,SP98,2024,8,192.0 +44,SP98,2024,9,192.0 +44,SP98,2024,10,192.0 +44,SP98,2024,11,192.0 +44,SP98,2024,12,192.0 +44,E10,2016,1,125.78 +44,E10,2016,2,123.01 +44,E10,2016,3,124.38 +44,E10,2016,4,129.07 +44,E10,2016,5,131.86 +44,E10,2016,6,133.99 +44,E10,2016,7,129.62 +44,E10,2016,8,127.41 +44,E10,2016,9,128.85 +44,E10,2016,10,131.84 +44,E10,2016,11,131.05 +44,E10,2016,12,134.63 +44,E10,2017,5,135.5 +44,E10,2017,6,132.98 +44,E10,2017,7,131.23 +44,E10,2017,8,132.6 +44,E10,2017,9,136.01 +44,E10,2017,10,135.12 +44,E10,2017,11,139.25 +44,E10,2017,12,139.37 +44,E10,2017,1,139.18 +44,E10,2017,2,139.68 +44,E10,2017,3,136.86 +44,E10,2017,4,137.7 +44,E10,2018,1,145.51 +44,E10,2018,2,145.15 +44,E10,2018,3,144.1 +44,E10,2018,4,146.92 +44,E10,2018,5,150.93 +44,E10,2018,6,152.09 +44,E10,2018,7,151.53 +44,E10,2018,8,152.94 +44,E10,2018,9,154.21 +44,E10,2018,10,154.36 +44,E10,2018,11,148.12 +44,E10,2018,12,142.2 +44,E10,2019,1,140.44 +44,E10,2019,2,142.68 +44,E10,2019,3,146.56 +44,E10,2019,4,154.32 +44,E10,2019,5,157.4 +44,E10,2019,6,152.04 +44,E10,2019,7,150.52 +44,E10,2019,8,149.4 +44,E10,2019,9,148.63 +44,E10,2019,10,148.58 +44,E10,2019,11,149.41 +44,E10,2019,12,150.56 +44,E10,2020,1,152.19 +44,E10,2020,2,148.14 +44,E10,2020,3,138.17 +44,E10,2020,4,127.58 +44,E10,2020,5,124.66 +44,E10,2020,6,130.13 +44,E10,2020,7,133.25 +44,E10,2020,8,132.38 +44,E10,2020,9,132.21 +44,E10,2020,10,132.57 +44,E10,2020,11,131.95 +44,E10,2020,12,134.43 +44,E10,2021,10,162.79 +44,E10,2021,11,165.97 +44,E10,2021,12,161.53 +44,E10,2021,1,139.28 +44,E10,2021,2,143.76 +44,E10,2021,3,149.03 +44,E10,2021,4,150.17 +44,E10,2021,5,151.06 +44,E10,2021,6,152.22 +44,E10,2021,7,155.51 +44,E10,2021,8,155.99 +44,E10,2021,9,156.46 +44,E10,2022,1,169.0 +44,E10,2022,2,176.0 +44,E10,2022,3,196.0 +44,E10,2022,4,176.0 +44,E10,2022,5,188.0 +44,E10,2022,6,207.0 +44,E10,2022,7,195.0 +44,E10,2022,8,180.0 +44,E10,2022,9,155.0 +44,E10,2022,10,164.0 +44,E10,2022,11,169.0 +44,E10,2022,12,167.0 +44,E10,2023,1,187.0 +44,E10,2023,2,190.0 +44,E10,2023,3,189.0 +44,E10,2023,4,191.0 +44,E10,2023,5,184.0 +44,E10,2023,6,184.0 +44,E10,2023,7,183.0 +44,E10,2023,8,192.0 +44,E10,2023,9,194.0 +44,E10,2023,10,188.0 +44,E10,2023,11,184.0 +44,E10,2023,12,180.0 +44,E10,2024,1,179.0 +44,E10,2024,2,183.0 +44,E10,2024,3,185.0 +44,E10,2024,4,190.0 +44,E10,2024,5,187.0 +44,E10,2024,6,182.0 +44,E10,2024,7,182.0 +44,E10,2024,8,182.0 +44,E10,2024,9,182.0 +44,E10,2024,10,182.0 +44,E10,2024,11,182.0 +44,E10,2024,12,182.0 +44,GPLc,2016,2,72.36 +44,GPLc,2016,9,69.57 +44,GPLc,2016,1,72.75 +44,GPLc,2016,3,71.13 +44,GPLc,2016,4,69.99 +44,GPLc,2016,5,69.78 +44,GPLc,2016,6,70.3 +44,GPLc,2016,7,69.95 +44,GPLc,2016,8,69.53 +44,GPLc,2016,10,69.41 +44,GPLc,2016,11,69.8 +44,GPLc,2016,12,70.46 +44,GPLc,2017,1,71.37 +44,GPLc,2017,9,73.66 +44,GPLc,2017,11,74.99 +44,GPLc,2017,2,73.1 +44,GPLc,2017,3,73.85 +44,GPLc,2017,4,73.9 +44,GPLc,2017,5,73.81 +44,GPLc,2017,6,73.79 +44,GPLc,2017,7,73.16 +44,GPLc,2017,8,72.67 +44,GPLc,2017,12,75.93 +44,GPLc,2017,10,74.1 +44,GPLc,2018,1,82.0 +44,GPLc,2018,2,81.78 +44,GPLc,2018,3,81.2 +44,GPLc,2018,6,81.56 +44,GPLc,2018,9,83.76 +44,GPLc,2018,11,84.66 +44,GPLc,2018,12,85.46 +44,GPLc,2018,4,80.46 +44,GPLc,2018,5,80.54 +44,GPLc,2018,7,82.04 +44,GPLc,2018,8,82.57 +44,GPLc,2018,10,85.08 +44,GPLc,2019,3,84.12 +44,GPLc,2019,1,86.3 +44,GPLc,2019,2,84.78 +44,GPLc,2019,4,85.06 +44,GPLc,2019,5,86.44 +44,GPLc,2019,6,86.37 +44,GPLc,2019,7,85.94 +44,GPLc,2019,8,85.88 +44,GPLc,2019,9,86.05 +44,GPLc,2019,10,86.14 +44,GPLc,2019,11,86.31 +44,GPLc,2019,12,86.52 +44,GPLc,2020,1,88.46 +44,GPLc,2020,2,87.54 +44,GPLc,2020,3,86.68 +44,GPLc,2020,4,86.15 +44,GPLc,2020,5,85.88 +44,GPLc,2020,6,85.6 +44,GPLc,2020,7,85.7 +44,GPLc,2020,8,85.35 +44,GPLc,2020,9,85.45 +44,GPLc,2020,10,85.6 +44,GPLc,2020,11,85.8 +44,GPLc,2020,12,85.77 +44,GPLc,2021,9,87.59 +44,GPLc,2021,11,89.65 +44,GPLc,2021,12,90.88 +44,GPLc,2021,1,85.53 +44,GPLc,2021,2,85.54 +44,GPLc,2021,3,85.5 +44,GPLc,2021,4,85.59 +44,GPLc,2021,5,86.02 +44,GPLc,2021,6,86.12 +44,GPLc,2021,7,86.91 +44,GPLc,2021,8,87.34 +44,GPLc,2021,10,88.65 +44,GPLc,2022,2,93.0 +44,GPLc,2022,3,97.0 +44,GPLc,2022,4,84.0 +44,GPLc,2022,5,86.0 +44,GPLc,2022,9,80.0 +44,GPLc,2022,10,79.0 +44,GPLc,2022,11,85.0 +44,GPLc,2022,12,91.0 +44,GPLc,2022,1,92.0 +44,GPLc,2022,6,86.0 +44,GPLc,2022,7,86.0 +44,GPLc,2022,8,87.0 +44,GPLc,2023,1,99.0 +44,GPLc,2023,2,100.0 +44,GPLc,2023,3,101.0 +44,GPLc,2023,4,101.0 +44,GPLc,2023,5,101.0 +44,GPLc,2023,6,101.0 +44,GPLc,2023,7,101.0 +44,GPLc,2023,8,102.0 +44,GPLc,2023,9,102.0 +44,GPLc,2023,10,102.0 +44,GPLc,2023,11,103.0 +44,GPLc,2023,12,102.0 +44,GPLc,2024,1,100.0 +44,GPLc,2024,2,100.0 +44,GPLc,2024,3,100.0 +44,GPLc,2024,4,100.0 +44,GPLc,2024,5,100.0 +44,GPLc,2024,6,100.0 +44,GPLc,2024,7,100.0 +44,GPLc,2024,8,100.0 +44,GPLc,2024,9,100.0 +44,GPLc,2024,10,100.0 +44,GPLc,2024,11,100.0 +44,GPLc,2024,12,100.0 +76,Gazole,2016,1,104.39 +76,Gazole,2016,2,104.08 +76,Gazole,2016,3,108.06 +76,Gazole,2016,4,108.7 +76,Gazole,2016,5,114.34 +76,Gazole,2016,6,118.02 +76,Gazole,2016,7,114.64 +76,Gazole,2016,8,112.38 +76,Gazole,2016,9,113.44 +76,Gazole,2016,10,117.22 +76,Gazole,2016,11,116.8 +76,Gazole,2016,12,121.1 +76,Gazole,2017,1,128.22 +76,Gazole,2017,2,128.46 +76,Gazole,2017,3,126.67 +76,Gazole,2017,4,126.36 +76,Gazole,2017,5,123.59 +76,Gazole,2017,6,120.46 +76,Gazole,2017,7,119.49 +76,Gazole,2017,8,121.45 +76,Gazole,2017,9,123.56 +76,Gazole,2017,10,125.87 +76,Gazole,2017,11,128.67 +76,Gazole,2017,12,129.69 +76,Gazole,2018,1,140.92 +76,Gazole,2018,2,139.53 +76,Gazole,2018,3,138.86 +76,Gazole,2018,4,141.72 +76,Gazole,2018,5,146.9 +76,Gazole,2018,6,148.02 +76,Gazole,2018,7,146.59 +76,Gazole,2018,8,146.68 +76,Gazole,2018,9,149.06 +76,Gazole,2018,10,153.43 +76,Gazole,2018,11,150.03 +76,Gazole,2018,12,144.27 +76,Gazole,2019,1,141.29 +76,Gazole,2019,2,145.13 +76,Gazole,2019,3,147.59 +76,Gazole,2019,4,148.53 +76,Gazole,2019,5,149.8 +76,Gazole,2019,6,144.46 +76,Gazole,2019,7,143.98 +76,Gazole,2019,8,143.01 +76,Gazole,2019,9,145.07 +76,Gazole,2019,10,145.62 +76,Gazole,2019,11,146.11 +76,Gazole,2019,12,148.0 +76,Gazole,2020,1,149.33 +76,Gazole,2020,2,142.42 +76,Gazole,2020,3,132.21 +76,Gazole,2020,4,123.85 +76,Gazole,2020,5,119.05 +76,Gazole,2020,6,122.73 +76,Gazole,2020,7,125.65 +76,Gazole,2020,8,125.29 +76,Gazole,2020,9,122.6 +76,Gazole,2020,10,122.01 +76,Gazole,2020,11,122.99 +76,Gazole,2020,12,127.33 +76,Gazole,2021,1,131.68 +76,Gazole,2021,2,135.89 +76,Gazole,2021,3,139.82 +76,Gazole,2021,4,139.13 +76,Gazole,2021,5,140.42 +76,Gazole,2021,6,142.84 +76,Gazole,2021,7,145.81 +76,Gazole,2021,8,145.12 +76,Gazole,2021,9,146.9 +76,Gazole,2021,10,156.15 +76,Gazole,2021,11,157.99 +76,Gazole,2021,12,155.09 +76,Gazole,2022,1,164.0 +76,Gazole,2022,2,172.0 +76,Gazole,2022,3,204.0 +76,Gazole,2022,4,188.0 +76,Gazole,2022,5,191.0 +76,Gazole,2022,6,209.0 +76,Gazole,2022,7,200.0 +76,Gazole,2022,8,188.0 +76,Gazole,2022,9,174.0 +76,Gazole,2022,10,187.0 +76,Gazole,2022,11,186.0 +76,Gazole,2022,12,178.0 +76,Gazole,2023,1,192.0 +76,Gazole,2023,2,186.0 +76,Gazole,2023,3,185.0 +76,Gazole,2023,4,180.0 +76,Gazole,2023,5,169.0 +76,Gazole,2023,6,170.0 +76,Gazole,2023,7,172.0 +76,Gazole,2023,8,185.0 +76,Gazole,2023,9,192.0 +76,Gazole,2023,10,190.0 +76,Gazole,2023,11,184.0 +76,Gazole,2023,12,178.0 +76,Gazole,2024,1,175.0 +76,Gazole,2024,2,182.0 +76,Gazole,2024,3,180.0 +76,Gazole,2024,4,179.0 +76,Gazole,2024,5,173.0 +76,Gazole,2024,6,172.0 +76,Gazole,2024,7,175.0 +76,Gazole,2024,8,175.0 +76,Gazole,2024,9,175.0 +76,Gazole,2024,10,175.0 +76,Gazole,2024,11,175.0 +76,Gazole,2024,12,175.0 +76,GPLc,2016,1,73.83 +76,GPLc,2016,2,73.89 +76,GPLc,2016,3,72.75 +76,GPLc,2016,4,71.78 +76,GPLc,2016,5,71.78 +76,GPLc,2016,6,72.25 +76,GPLc,2016,7,72.24 +76,GPLc,2016,8,72.06 +76,GPLc,2016,9,72.07 +76,GPLc,2016,10,72.08 +76,GPLc,2016,11,72.44 +76,GPLc,2016,12,72.91 +76,GPLc,2017,1,72.95 +76,GPLc,2017,2,74.12 +76,GPLc,2017,3,75.23 +76,GPLc,2017,4,75.63 +76,GPLc,2017,5,75.66 +76,GPLc,2017,6,75.81 +76,GPLc,2017,7,75.45 +76,GPLc,2017,8,75.34 +76,GPLc,2017,9,76.11 +76,GPLc,2017,10,76.65 +76,GPLc,2017,11,77.7 +76,GPLc,2017,12,78.52 +76,GPLc,2018,1,82.2 +76,GPLc,2018,2,82.7 +76,GPLc,2018,3,82.65 +76,GPLc,2018,4,82.36 +76,GPLc,2018,5,82.32 +76,GPLc,2018,6,83.12 +76,GPLc,2018,7,83.48 +76,GPLc,2018,8,84.21 +76,GPLc,2018,9,85.57 +76,GPLc,2018,10,86.48 +76,GPLc,2018,11,86.23 +76,GPLc,2018,12,86.99 +76,GPLc,2019,1,85.7 +76,GPLc,2019,2,84.82 +76,GPLc,2019,3,85.52 +76,GPLc,2019,4,86.29 +76,GPLc,2019,5,87.07 +76,GPLc,2019,6,86.92 +76,GPLc,2019,7,86.74 +76,GPLc,2019,8,86.97 +76,GPLc,2019,9,87.11 +76,GPLc,2019,10,86.4 +76,GPLc,2019,11,88.26 +76,GPLc,2019,12,88.87 +76,GPLc,2020,1,87.64 +76,GPLc,2020,2,87.63 +76,GPLc,2020,4,87.38 +76,GPLc,2020,5,87.14 +76,GPLc,2020,7,87.53 +76,GPLc,2020,9,87.1 +76,GPLc,2020,3,87.65 +76,GPLc,2020,6,87.18 +76,GPLc,2020,8,87.16 +76,GPLc,2020,11,87.08 +76,GPLc,2020,12,87.07 +76,GPLc,2020,10,86.97 +76,GPLc,2021,1,87.53 +76,GPLc,2021,4,87.73 +76,GPLc,2021,8,88.68 +76,GPLc,2021,11,90.65 +76,GPLc,2021,3,87.79 +76,GPLc,2021,7,88.37 +76,GPLc,2021,9,88.71 +76,GPLc,2021,10,89.46 +76,GPLc,2021,12,91.61 +76,GPLc,2021,2,87.48 +76,GPLc,2021,6,87.8 +76,GPLc,2021,5,87.79 +76,GPLc,2022,3,97.0 +76,GPLc,2022,4,88.0 +76,GPLc,2022,6,88.0 +76,GPLc,2022,8,89.0 +76,GPLc,2022,11,86.0 +76,GPLc,2022,1,92.0 +76,GPLc,2022,2,93.0 +76,GPLc,2022,5,88.0 +76,GPLc,2022,7,89.0 +76,GPLc,2022,9,82.0 +76,GPLc,2022,10,82.0 +76,GPLc,2022,12,93.0 +76,GPLc,2023,2,101.0 +76,GPLc,2023,4,103.0 +76,GPLc,2023,6,104.0 +76,GPLc,2023,8,104.0 +76,GPLc,2023,9,104.0 +76,GPLc,2023,1,99.0 +76,GPLc,2023,3,102.0 +76,GPLc,2023,5,104.0 +76,GPLc,2023,7,104.0 +76,GPLc,2023,10,104.0 +76,GPLc,2023,11,104.0 +76,GPLc,2023,12,104.0 +76,GPLc,2024,2,103.0 +76,GPLc,2024,1,103.0 +76,GPLc,2024,3,103.0 +76,GPLc,2024,4,103.0 +76,GPLc,2024,5,103.0 +76,GPLc,2024,6,102.0 +76,GPLc,2024,7,102.0 +76,GPLc,2024,8,102.0 +76,GPLc,2024,9,102.0 +76,GPLc,2024,10,102.0 +76,GPLc,2024,11,102.0 +76,GPLc,2024,12,102.0 +76,E10,2016,1,126.52 +76,E10,2016,2,123.7 +76,E10,2016,3,125.65 +76,E10,2016,4,128.34 +76,E10,2016,5,131.24 +76,E10,2016,6,133.79 +76,E10,2016,7,129.29 +76,E10,2016,8,127.52 +76,E10,2016,9,128.76 +76,E10,2016,10,131.57 +76,E10,2016,11,131.38 +76,E10,2016,12,135.22 +76,E10,2017,1,139.98 +76,E10,2017,2,140.28 +76,E10,2017,3,137.86 +76,E10,2017,4,138.5 +76,E10,2017,5,136.06 +76,E10,2017,6,132.87 +76,E10,2017,7,131.37 +76,E10,2017,8,132.89 +76,E10,2017,9,135.29 +76,E10,2017,10,135.19 +76,E10,2017,11,138.26 +76,E10,2017,12,139.03 +76,E10,2018,1,145.6 +76,E10,2018,2,144.88 +76,E10,2018,3,144.61 +76,E10,2018,4,147.0 +76,E10,2018,5,151.41 +76,E10,2018,6,152.48 +76,E10,2018,7,151.46 +76,E10,2018,8,151.25 +76,E10,2018,9,152.31 +76,E10,2018,10,154.26 +76,E10,2018,11,146.75 +76,E10,2018,12,142.27 +76,E10,2019,1,140.52 +76,E10,2019,2,143.16 +76,E10,2019,3,147.6 +76,E10,2019,4,153.5 +76,E10,2019,5,154.65 +76,E10,2019,6,149.58 +76,E10,2019,7,149.92 +76,E10,2019,8,147.72 +76,E10,2019,9,147.84 +76,E10,2019,10,147.72 +76,E10,2019,11,149.11 +76,E10,2019,12,150.93 +76,E10,2020,1,152.5 +76,E10,2020,2,148.76 +76,E10,2020,3,138.31 +76,E10,2020,4,127.66 +76,E10,2020,5,125.09 +76,E10,2020,6,130.49 +76,E10,2020,8,132.72 +76,E10,2020,9,132.88 +76,E10,2020,10,132.7 +76,E10,2020,7,133.07 +76,E10,2020,11,132.38 +76,E10,2020,12,134.97 +76,E10,2021,1,140.24 +76,E10,2021,2,144.44 +76,E10,2021,3,149.63 +76,E10,2021,4,150.57 +76,E10,2021,5,151.03 +76,E10,2021,6,152.06 +76,E10,2021,7,155.94 +76,E10,2021,8,156.21 +76,E10,2021,9,157.2 +76,E10,2021,10,162.04 +76,E10,2021,11,163.46 +76,E10,2021,12,161.23 +76,E10,2022,1,169.0 +76,E10,2022,2,177.0 +76,E10,2022,3,196.0 +76,E10,2022,4,176.0 +76,E10,2022,5,188.0 +76,E10,2022,6,204.0 +76,E10,2022,7,193.0 +76,E10,2022,8,174.0 +76,E10,2022,9,149.0 +76,E10,2022,10,160.0 +76,E10,2022,11,169.0 +76,E10,2022,12,166.0 +76,E10,2023,1,186.0 +76,E10,2023,2,189.0 +76,E10,2023,3,190.0 +76,E10,2023,4,192.0 +76,E10,2023,5,184.0 +76,E10,2023,6,185.0 +76,E10,2023,7,185.0 +76,E10,2023,8,192.0 +76,E10,2023,10,186.0 +76,E10,2023,11,183.0 +76,E10,2023,12,180.0 +76,E10,2023,9,195.0 +76,E10,2024,1,179.0 +76,E10,2024,2,184.0 +76,E10,2024,3,187.0 +76,E10,2024,4,191.0 +76,E10,2024,5,189.0 +76,E10,2024,6,183.0 +76,E10,2024,7,184.0 +76,E10,2024,8,184.0 +76,E10,2024,9,184.0 +76,E10,2024,10,184.0 +76,E10,2024,11,184.0 +76,E10,2024,12,184.0 +76,SP98,2016,1,134.35 +76,SP98,2016,2,132.03 +76,SP98,2016,3,133.29 +76,SP98,2016,4,135.93 +76,SP98,2016,5,138.94 +76,SP98,2016,6,141.79 +76,SP98,2016,7,137.71 +76,SP98,2016,8,135.58 +76,SP98,2016,9,136.88 +76,SP98,2016,10,139.68 +76,SP98,2016,11,139.73 +76,SP98,2016,12,143.32 +76,SP98,2017,1,149.04 +76,SP98,2017,2,149.26 +76,SP98,2017,3,147.1 +76,SP98,2017,4,147.49 +76,SP98,2017,5,145.37 +76,SP98,2017,6,142.16 +76,SP98,2017,7,139.92 +76,SP98,2017,8,141.03 +76,SP98,2017,9,143.45 +76,SP98,2017,10,143.65 +76,SP98,2017,11,146.56 +76,SP98,2017,12,147.51 +76,SP98,2018,1,153.99 +76,SP98,2018,2,153.61 +76,SP98,2018,3,152.9 +76,SP98,2018,4,155.23 +76,SP98,2018,5,159.94 +76,SP98,2018,6,161.72 +76,SP98,2018,7,160.61 +76,SP98,2018,8,160.42 +76,SP98,2018,9,161.34 +76,SP98,2018,10,163.3 +76,SP98,2018,11,156.39 +76,SP98,2018,12,151.57 +76,SP98,2019,1,149.22 +76,SP98,2019,2,151.35 +76,SP98,2019,3,155.58 +76,SP98,2019,4,161.62 +76,SP98,2019,5,163.22 +76,SP98,2019,6,158.64 +76,SP98,2019,7,158.5 +76,SP98,2019,8,156.4 +76,SP98,2019,9,156.34 +76,SP98,2019,10,156.53 +76,SP98,2019,11,157.5 +76,SP98,2019,12,159.24 +76,SP98,2020,1,160.72 +76,SP98,2020,2,157.12 +76,SP98,2020,3,147.83 +76,SP98,2020,4,137.26 +76,SP98,2020,5,133.5 +76,SP98,2020,6,137.76 +76,SP98,2020,8,140.54 +76,SP98,2020,9,140.9 +76,SP98,2020,10,140.59 +76,SP98,2020,7,140.47 +76,SP98,2020,11,140.22 +76,SP98,2020,12,142.33 +76,SP98,2021,1,147.46 +76,SP98,2021,2,151.8 +76,SP98,2021,3,157.56 +76,SP98,2021,4,158.76 +76,SP98,2021,5,159.23 +76,SP98,2021,6,160.27 +76,SP98,2021,7,164.36 +76,SP98,2021,8,164.92 +76,SP98,2021,9,165.9 +76,SP98,2021,10,170.89 +76,SP98,2021,11,172.58 +76,SP98,2021,12,170.63 +76,SP98,2022,1,178.0 +76,SP98,2022,2,186.0 +76,SP98,2022,3,206.0 +76,SP98,2022,4,187.0 +76,SP98,2022,5,198.0 +76,SP98,2022,6,214.0 +76,SP98,2022,7,205.0 +76,SP98,2022,8,185.0 +76,SP98,2022,9,160.0 +76,SP98,2022,10,170.0 +76,SP98,2022,11,179.0 +76,SP98,2022,12,177.0 +76,SP98,2023,1,194.0 +76,SP98,2023,2,197.0 +76,SP98,2023,3,198.0 +76,SP98,2023,4,200.0 +76,SP98,2023,5,192.0 +76,SP98,2023,12,188.0 +76,SP98,2023,6,193.0 +76,SP98,2023,7,192.0 +76,SP98,2023,8,199.0 +76,SP98,2023,9,202.0 +76,SP98,2023,10,195.0 +76,SP98,2023,11,191.0 +76,SP98,2024,1,188.0 +76,SP98,2024,5,198.0 +76,SP98,2024,6,193.0 +76,SP98,2024,2,192.0 +76,SP98,2024,3,195.0 +76,SP98,2024,4,199.0 +76,SP98,2024,7,194.0 +76,SP98,2024,8,194.0 +76,SP98,2024,9,194.0 +76,SP98,2024,10,194.0 +76,SP98,2024,11,194.0 +76,SP98,2024,12,194.0 +76,SP95,2016,1,129.96 +76,SP95,2016,2,127.6 +76,SP95,2016,3,129.53 +76,SP95,2016,4,132.21 +76,SP95,2016,5,135.36 +76,SP95,2016,6,137.85 +76,SP95,2016,7,133.1 +76,SP95,2016,8,131.33 +76,SP95,2016,9,132.65 +76,SP95,2016,10,135.69 +76,SP95,2016,11,135.53 +76,SP95,2016,12,139.26 +76,SP95,2017,1,144.7 +76,SP95,2017,3,142.48 +76,SP95,2017,4,143.06 +76,SP95,2017,5,140.72 +76,SP95,2017,6,137.62 +76,SP95,2017,7,135.74 +76,SP95,2017,9,139.24 +76,SP95,2017,10,139.34 +76,SP95,2017,11,142.15 +76,SP95,2017,8,137.04 +76,SP95,2017,12,142.92 +76,SP95,2017,2,144.7 +76,SP95,2018,1,150.04 +76,SP95,2018,2,149.56 +76,SP95,2018,3,148.82 +76,SP95,2018,5,155.93 +76,SP95,2018,6,157.21 +76,SP95,2018,7,156.22 +76,SP95,2018,9,156.96 +76,SP95,2018,10,158.55 +76,SP95,2018,11,152.52 +76,SP95,2018,12,147.88 +76,SP95,2018,4,151.34 +76,SP95,2018,8,156.12 +76,SP95,2019,1,145.27 +76,SP95,2019,2,147.57 +76,SP95,2019,3,151.81 +76,SP95,2019,4,157.38 +76,SP95,2019,5,158.81 +76,SP95,2019,6,154.31 +76,SP95,2019,7,154.24 +76,SP95,2019,8,152.39 +76,SP95,2019,9,152.58 +76,SP95,2019,10,152.59 +76,SP95,2019,11,153.67 +76,SP95,2019,12,155.11 +76,SP95,2020,1,157.14 +76,SP95,2020,2,153.41 +76,SP95,2020,3,143.68 +76,SP95,2020,4,132.92 +76,SP95,2020,5,129.96 +76,SP95,2020,6,134.66 +76,SP95,2020,7,137.24 +76,SP95,2020,8,137.18 +76,SP95,2020,9,137.34 +76,SP95,2020,10,137.19 +76,SP95,2020,11,136.5 +76,SP95,2020,12,138.96 +76,SP95,2021,1,143.79 +76,SP95,2021,2,148.49 +76,SP95,2021,3,153.71 +76,SP95,2021,4,154.69 +76,SP95,2021,5,155.34 +76,SP95,2021,6,156.36 +76,SP95,2021,7,159.98 +76,SP95,2021,8,160.43 +76,SP95,2021,9,161.31 +76,SP95,2021,10,165.9 +76,SP95,2021,11,167.69 +76,SP95,2021,12,165.78 +76,SP95,2022,1,173.0 +76,SP95,2022,2,181.0 +76,SP95,2022,3,202.0 +76,SP95,2022,4,184.0 +76,SP95,2022,5,193.0 +76,SP95,2022,6,209.0 +76,SP95,2022,7,201.0 +76,SP95,2022,8,183.0 +76,SP95,2022,9,160.0 +76,SP95,2022,10,170.0 +76,SP95,2022,11,176.0 +76,SP95,2022,12,174.0 +76,SP95,2023,1,190.0 +76,SP95,2023,2,193.0 +76,SP95,2023,3,194.0 +76,SP95,2023,4,196.0 +76,SP95,2023,5,189.0 +76,SP95,2023,6,189.0 +76,SP95,2023,7,189.0 +76,SP95,2023,8,195.0 +76,SP95,2023,9,198.0 +76,SP95,2023,10,191.0 +76,SP95,2023,11,188.0 +76,SP95,2023,12,186.0 +76,SP95,2024,1,184.0 +76,SP95,2024,2,188.0 +76,SP95,2024,3,191.0 +76,SP95,2024,4,195.0 +76,SP95,2024,5,193.0 +76,SP95,2024,6,189.0 +76,SP95,2024,7,189.0 +76,SP95,2024,8,189.0 +76,SP95,2024,9,189.0 +76,SP95,2024,10,189.0 +76,SP95,2024,11,189.0 +76,SP95,2024,12,189.0 +76,E85,2016,1,76.81 +76,E85,2016,2,76.83 +76,E85,2016,3,76.49 +76,E85,2016,4,77.14 +76,E85,2016,5,78.07 +76,E85,2016,6,78.08 +76,E85,2016,7,77.52 +76,E85,2016,8,77.92 +76,E85,2016,9,78.26 +76,E85,2016,10,77.82 +76,E85,2016,11,76.69 +76,E85,2016,12,76.7 +76,E85,2017,1,72.77 +76,E85,2017,3,73.01 +76,E85,2017,4,72.08 +76,E85,2017,5,71.5 +76,E85,2017,6,71.73 +76,E85,2017,7,72.1 +76,E85,2017,9,74.01 +76,E85,2017,10,73.29 +76,E85,2017,11,73.04 +76,E85,2017,8,72.47 +76,E85,2017,12,72.91 +76,E85,2017,2,72.68 +76,E85,2018,1,71.79 +76,E85,2018,2,71.36 +76,E85,2018,3,71.01 +76,E85,2018,5,72.05 +76,E85,2018,6,71.73 +76,E85,2018,7,71.36 +76,E85,2018,9,71.18 +76,E85,2018,10,71.23 +76,E85,2018,11,71.06 +76,E85,2018,12,72.11 +76,E85,2018,8,71.16 +76,E85,2018,4,70.83 +76,E85,2019,1,70.45 +76,E85,2019,2,68.53 +76,E85,2019,3,69.26 +76,E85,2019,4,69.78 +76,E85,2019,5,70.19 +76,E85,2019,6,70.5 +76,E85,2019,7,70.1 +76,E85,2019,8,69.66 +76,E85,2019,9,69.85 +76,E85,2019,10,69.66 +76,E85,2019,11,69.81 +76,E85,2019,12,70.04 +76,E85,2020,8,67.29 +76,E85,2020,9,67.14 +76,E85,2020,10,67.07 +76,E85,2020,1,69.54 +76,E85,2020,2,68.41 +76,E85,2020,3,68.41 +76,E85,2020,5,68.04 +76,E85,2020,6,67.97 +76,E85,2020,7,67.73 +76,E85,2020,11,67.19 +76,E85,2020,12,67.22 +76,E85,2020,4,67.96 +76,E85,2021,1,68.56 +76,E85,2021,2,68.44 +76,E85,2021,3,68.68 +76,E85,2021,8,69.96 +76,E85,2021,10,71.34 +76,E85,2021,11,72.23 +76,E85,2021,12,72.41 +76,E85,2021,4,68.64 +76,E85,2021,5,68.84 +76,E85,2021,6,68.94 +76,E85,2021,7,69.42 +76,E85,2021,9,70.22 +76,E85,2022,1,76.0 +76,E85,2022,2,80.0 +76,E85,2022,3,92.0 +76,E85,2022,4,80.0 +76,E85,2022,5,81.0 +76,E85,2022,6,87.0 +76,E85,2022,7,90.0 +76,E85,2022,8,86.0 +76,E85,2022,9,71.0 +76,E85,2022,10,76.0 +76,E85,2022,11,87.0 +76,E85,2022,12,90.0 +76,E85,2023,1,112.0 +76,E85,2023,3,116.0 +76,E85,2023,4,116.0 +76,E85,2023,6,112.0 +76,E85,2023,7,107.0 +76,E85,2023,9,107.0 +76,E85,2023,2,115.0 +76,E85,2023,5,114.0 +76,E85,2023,8,107.0 +76,E85,2023,10,105.0 +76,E85,2023,11,104.0 +76,E85,2023,12,102.0 +76,E85,2024,1,91.0 +76,E85,2024,3,91.0 +76,E85,2024,6,87.0 +76,E85,2024,2,91.0 +76,E85,2024,5,90.0 +76,E85,2024,7,86.0 +76,E85,2024,4,90.0 +76,E85,2024,8,86.0 +76,E85,2024,9,86.0 +76,E85,2024,10,86.0 +76,E85,2024,11,86.0 +76,E85,2024,12,86.0 +28,Gazole,2016,1,103.17 +28,Gazole,2016,2,102.79 +28,Gazole,2016,3,107.17 +28,Gazole,2016,4,107.81 +28,Gazole,2016,5,113.54 +28,Gazole,2016,6,116.67 +28,Gazole,2016,7,113.07 +28,Gazole,2016,8,111.12 +28,Gazole,2016,9,112.23 +28,Gazole,2016,10,116.37 +28,Gazole,2016,11,115.52 +28,Gazole,2016,12,120.49 +28,Gazole,2017,1,126.93 +28,Gazole,2017,2,127.0 +28,Gazole,2017,3,125.0 +28,Gazole,2017,4,124.95 +28,Gazole,2017,5,121.88 +28,Gazole,2017,6,118.83 +28,Gazole,2017,7,118.09 +28,Gazole,2017,8,120.2 +28,Gazole,2017,9,123.04 +28,Gazole,2017,10,124.99 +28,Gazole,2017,11,127.61 +28,Gazole,2017,12,128.07 +28,Gazole,2018,1,139.99 +28,Gazole,2018,2,138.06 +28,Gazole,2018,3,137.56 +28,Gazole,2018,4,140.53 +28,Gazole,2018,5,145.86 +28,Gazole,2018,6,146.76 +28,Gazole,2018,7,145.46 +28,Gazole,2018,8,145.88 +28,Gazole,2018,9,148.38 +28,Gazole,2018,10,152.62 +28,Gazole,2018,11,148.89 +28,Gazole,2018,12,142.72 +28,Gazole,2019,1,140.21 +28,Gazole,2019,2,144.18 +28,Gazole,2019,3,146.56 +28,Gazole,2019,4,147.59 +28,Gazole,2019,5,149.01 +28,Gazole,2019,6,143.24 +28,Gazole,2019,7,143.28 +28,Gazole,2019,8,142.22 +28,Gazole,2019,9,144.49 +28,Gazole,2019,10,145.18 +28,Gazole,2019,11,145.08 +28,Gazole,2019,12,147.19 +28,Gazole,2020,1,147.63 +28,Gazole,2020,2,141.08 +28,Gazole,2020,3,130.84 +28,Gazole,2020,4,122.82 +28,Gazole,2020,6,121.82 +28,Gazole,2020,7,124.89 +28,Gazole,2020,9,121.61 +28,Gazole,2020,10,121.16 +28,Gazole,2020,11,122.1 +28,Gazole,2020,12,126.45 +28,Gazole,2020,5,118.26 +28,Gazole,2020,8,124.29 +28,Gazole,2021,1,130.24 +28,Gazole,2021,2,134.95 +28,Gazole,2021,3,138.84 +28,Gazole,2021,4,137.88 +28,Gazole,2021,5,139.58 +28,Gazole,2021,6,142.16 +28,Gazole,2021,7,144.84 +28,Gazole,2021,8,144.01 +28,Gazole,2021,9,146.04 +28,Gazole,2021,10,154.97 +28,Gazole,2021,11,156.33 +28,Gazole,2021,12,153.36 +28,Gazole,2022,1,163.0 +28,Gazole,2022,2,171.0 +28,Gazole,2022,3,204.0 +28,Gazole,2022,4,186.0 +28,Gazole,2022,5,188.0 +28,Gazole,2022,6,209.0 +28,Gazole,2022,7,199.0 +28,Gazole,2022,8,188.0 +28,Gazole,2022,9,174.0 +28,Gazole,2022,10,187.0 +28,Gazole,2022,11,188.0 +28,Gazole,2022,12,178.0 +28,Gazole,2023,1,192.0 +28,Gazole,2023,2,185.0 +28,Gazole,2023,3,183.0 +28,Gazole,2023,4,179.0 +28,Gazole,2023,5,168.0 +28,Gazole,2023,6,169.0 +28,Gazole,2023,7,171.0 +28,Gazole,2023,8,185.0 +28,Gazole,2023,9,192.0 +28,Gazole,2023,10,190.0 +28,Gazole,2023,11,183.0 +28,Gazole,2023,12,177.0 +28,Gazole,2024,1,174.0 +28,Gazole,2024,2,181.0 +28,Gazole,2024,3,179.0 +28,Gazole,2024,4,179.0 +28,Gazole,2024,5,172.0 +28,Gazole,2024,6,171.0 +28,Gazole,2024,7,174.0 +28,Gazole,2024,8,174.0 +28,Gazole,2024,9,174.0 +28,Gazole,2024,10,174.0 +28,Gazole,2024,11,174.0 +28,Gazole,2024,12,174.0 +28,GPLc,2016,1,74.29 +28,GPLc,2016,2,74.24 +28,GPLc,2016,3,73.78 +28,GPLc,2016,4,72.64 +28,GPLc,2016,5,72.99 +28,GPLc,2016,6,73.38 +28,GPLc,2016,7,73.23 +28,GPLc,2016,8,73.1 +28,GPLc,2016,9,72.64 +28,GPLc,2016,10,72.58 +28,GPLc,2016,11,72.86 +28,GPLc,2016,12,73.51 +28,GPLc,2017,4,75.96 +28,GPLc,2017,5,76.02 +28,GPLc,2017,7,75.7 +28,GPLc,2017,9,76.0 +28,GPLc,2017,10,76.33 +28,GPLc,2017,12,78.09 +28,GPLc,2017,1,73.79 +28,GPLc,2017,2,75.24 +28,GPLc,2017,3,75.96 +28,GPLc,2017,6,76.17 +28,GPLc,2017,8,75.35 +28,GPLc,2017,11,77.38 +28,GPLc,2018,1,82.74 +28,GPLc,2018,4,82.63 +28,GPLc,2018,5,82.73 +28,GPLc,2018,7,83.6 +28,GPLc,2018,8,83.85 +28,GPLc,2018,9,84.51 +28,GPLc,2018,10,86.65 +28,GPLc,2018,2,83.13 +28,GPLc,2018,3,83.09 +28,GPLc,2018,6,83.74 +28,GPLc,2018,11,85.26 +28,GPLc,2018,12,86.51 +28,GPLc,2019,1,87.11 +28,GPLc,2019,2,86.07 +28,GPLc,2019,3,86.46 +28,GPLc,2019,4,87.33 +28,GPLc,2019,5,87.85 +28,GPLc,2019,6,87.95 +28,GPLc,2019,7,87.2 +28,GPLc,2019,8,87.15 +28,GPLc,2019,9,87.56 +28,GPLc,2019,10,86.83 +28,GPLc,2019,11,87.92 +28,GPLc,2019,12,88.34 +28,GPLc,2020,1,87.99 +28,GPLc,2020,2,87.56 +28,GPLc,2020,3,87.25 +28,GPLc,2020,4,87.42 +28,GPLc,2020,5,86.49 +28,GPLc,2020,6,86.3 +28,GPLc,2020,7,86.2 +28,GPLc,2020,8,86.36 +28,GPLc,2020,9,86.07 +28,GPLc,2020,10,86.25 +28,GPLc,2020,11,86.63 +28,GPLc,2020,12,86.72 +28,GPLc,2021,1,85.69 +28,GPLc,2021,2,85.75 +28,GPLc,2021,3,85.86 +28,GPLc,2021,4,86.3 +28,GPLc,2021,5,86.97 +28,GPLc,2021,6,86.62 +28,GPLc,2021,7,87.58 +28,GPLc,2021,8,88.19 +28,GPLc,2021,9,88.37 +28,GPLc,2021,10,88.55 +28,GPLc,2021,11,89.19 +28,GPLc,2021,12,90.67 +28,GPLc,2022,1,92.0 +28,GPLc,2022,2,93.0 +28,GPLc,2022,3,96.0 +28,GPLc,2022,4,85.0 +28,GPLc,2022,5,85.0 +28,GPLc,2022,6,85.0 +28,GPLc,2022,7,86.0 +28,GPLc,2022,8,85.0 +28,GPLc,2022,9,77.0 +28,GPLc,2022,10,78.0 +28,GPLc,2022,11,85.0 +28,GPLc,2022,12,92.0 +28,GPLc,2023,1,98.0 +28,GPLc,2023,2,99.0 +28,GPLc,2023,3,98.0 +28,GPLc,2023,4,98.0 +28,GPLc,2023,5,99.0 +28,GPLc,2023,6,99.0 +28,GPLc,2023,7,98.0 +28,GPLc,2023,8,99.0 +28,GPLc,2023,9,99.0 +28,GPLc,2023,10,99.0 +28,GPLc,2023,11,99.0 +28,GPLc,2023,12,99.0 +28,GPLc,2024,1,99.0 +28,GPLc,2024,2,100.0 +28,GPLc,2024,3,100.0 +28,GPLc,2024,4,100.0 +28,GPLc,2024,5,100.0 +28,GPLc,2024,6,100.0 +28,GPLc,2024,7,100.0 +28,GPLc,2024,8,100.0 +28,GPLc,2024,9,100.0 +28,GPLc,2024,10,100.0 +28,GPLc,2024,11,100.0 +28,GPLc,2024,12,100.0 +28,E10,2016,1,125.77 +28,E10,2016,2,123.18 +28,E10,2016,3,125.02 +28,E10,2016,4,129.58 +28,E10,2016,5,132.18 +28,E10,2016,6,134.35 +28,E10,2016,7,129.41 +28,E10,2016,8,127.09 +28,E10,2016,9,128.13 +28,E10,2016,10,131.31 +28,E10,2016,11,130.08 +28,E10,2016,12,134.12 +28,E10,2017,1,138.23 +28,E10,2017,2,138.82 +28,E10,2017,3,136.28 +28,E10,2017,4,137.74 +28,E10,2017,5,135.14 +28,E10,2017,6,133.04 +28,E10,2017,7,131.51 +28,E10,2017,8,132.98 +28,E10,2017,9,136.06 +28,E10,2017,10,134.81 +28,E10,2017,11,139.3 +28,E10,2017,12,139.0 +28,E10,2018,1,145.93 +28,E10,2018,2,145.2 +28,E10,2018,3,144.32 +28,E10,2018,4,147.44 +28,E10,2018,5,152.02 +28,E10,2018,6,152.76 +28,E10,2018,7,152.12 +28,E10,2018,8,153.64 +28,E10,2018,9,154.59 +28,E10,2018,10,154.27 +28,E10,2018,11,147.06 +28,E10,2018,12,141.67 +28,E10,2019,1,140.69 +28,E10,2019,2,143.39 +28,E10,2019,3,147.02 +28,E10,2019,4,154.63 +28,E10,2019,5,157.7 +28,E10,2019,6,152.14 +28,E10,2019,7,151.14 +28,E10,2019,8,149.42 +28,E10,2019,9,148.97 +28,E10,2019,10,149.01 +28,E10,2019,11,150.09 +28,E10,2019,12,151.23 +28,E10,2020,1,151.81 +28,E10,2020,2,147.96 +28,E10,2020,3,137.15 +28,E10,2020,4,126.73 +28,E10,2020,5,125.37 +28,E10,2020,6,130.82 +28,E10,2020,7,134.04 +28,E10,2020,8,132.73 +28,E10,2020,9,132.23 +28,E10,2020,10,132.66 +28,E10,2020,11,132.11 +28,E10,2020,12,134.71 +28,E10,2021,1,139.21 +28,E10,2021,2,143.69 +28,E10,2021,3,148.87 +28,E10,2021,4,149.62 +28,E10,2021,5,150.49 +28,E10,2021,6,152.03 +28,E10,2021,7,155.74 +28,E10,2021,8,156.18 +28,E10,2021,9,156.5 +28,E10,2021,10,162.72 +28,E10,2021,11,164.48 +28,E10,2021,12,160.11 +28,E10,2022,1,169.0 +28,E10,2022,2,176.0 +28,E10,2022,3,194.0 +28,E10,2022,4,175.0 +28,E10,2022,5,190.0 +28,E10,2022,6,211.0 +28,E10,2022,7,195.0 +28,E10,2022,8,178.0 +28,E10,2022,9,153.0 +28,E10,2022,10,163.0 +28,E10,2022,11,167.0 +28,E10,2022,12,164.0 +28,E10,2023,1,187.0 +28,E10,2023,2,189.0 +28,E10,2023,3,189.0 +28,E10,2023,4,192.0 +28,E10,2023,5,184.0 +28,E10,2023,6,184.0 +28,E10,2023,7,182.0 +28,E10,2023,8,192.0 +28,E10,2023,9,194.0 +28,E10,2023,10,186.0 +28,E10,2023,11,183.0 +28,E10,2023,12,178.0 +28,E10,2024,1,177.0 +28,E10,2024,2,182.0 +28,E10,2024,3,185.0 +28,E10,2024,4,190.0 +28,E10,2024,5,186.0 +28,E10,2024,6,181.0 +28,E10,2024,7,182.0 +28,E10,2024,8,182.0 +28,E10,2024,9,182.0 +28,E10,2024,10,182.0 +28,E10,2024,11,182.0 +28,E10,2024,12,182.0 +28,SP98,2016,1,132.98 +28,SP98,2016,2,130.43 +28,SP98,2016,3,131.96 +28,SP98,2016,4,136.61 +28,SP98,2016,5,139.38 +28,SP98,2016,6,141.67 +28,SP98,2016,7,137.19 +28,SP98,2016,8,134.7 +28,SP98,2016,9,135.89 +28,SP98,2016,10,139.07 +28,SP98,2016,11,138.22 +28,SP98,2016,12,142.09 +28,SP98,2017,1,146.84 +28,SP98,2017,2,147.32 +28,SP98,2017,3,145.18 +28,SP98,2017,4,146.31 +28,SP98,2017,5,143.83 +28,SP98,2017,6,141.71 +28,SP98,2017,7,139.66 +28,SP98,2017,8,140.63 +28,SP98,2017,9,143.83 +28,SP98,2017,10,142.63 +28,SP98,2017,11,147.14 +28,SP98,2017,12,146.93 +28,SP98,2018,1,153.73 +28,SP98,2018,2,153.02 +28,SP98,2018,3,151.98 +28,SP98,2018,4,155.19 +28,SP98,2018,5,160.07 +28,SP98,2018,6,161.36 +28,SP98,2018,7,160.47 +28,SP98,2018,8,161.9 +28,SP98,2018,9,162.96 +28,SP98,2018,10,162.61 +28,SP98,2018,11,155.87 +28,SP98,2018,12,150.08 +28,SP98,2019,1,148.18 +28,SP98,2019,2,150.71 +28,SP98,2019,3,154.42 +28,SP98,2019,4,162.34 +28,SP98,2019,5,165.74 +28,SP98,2019,6,160.56 +28,SP98,2019,7,159.14 +28,SP98,2019,8,157.44 +28,SP98,2019,9,156.79 +28,SP98,2019,10,156.77 +28,SP98,2019,11,157.64 +28,SP98,2019,12,158.66 +28,SP98,2020,1,159.62 +28,SP98,2020,2,155.93 +28,SP98,2020,3,146.05 +28,SP98,2020,4,134.96 +28,SP98,2020,5,132.19 +28,SP98,2020,6,137.54 +28,SP98,2020,7,141.11 +28,SP98,2020,8,140.08 +28,SP98,2020,9,139.64 +28,SP98,2020,10,140.13 +28,SP98,2020,11,139.46 +28,SP98,2020,12,141.7 +28,SP98,2021,1,145.96 +28,SP98,2021,2,150.32 +28,SP98,2021,3,156.21 +28,SP98,2021,4,157.37 +28,SP98,2021,5,158.41 +28,SP98,2021,6,159.78 +28,SP98,2021,7,164.04 +28,SP98,2021,8,164.71 +28,SP98,2021,9,164.97 +28,SP98,2021,10,171.23 +28,SP98,2021,11,173.35 +28,SP98,2021,12,169.34 +28,SP98,2022,1,177.0 +28,SP98,2022,2,184.0 +28,SP98,2022,3,204.0 +28,SP98,2022,4,186.0 +28,SP98,2022,5,199.0 +28,SP98,2022,6,221.0 +28,SP98,2022,7,207.0 +28,SP98,2022,8,189.0 +28,SP98,2022,9,165.0 +28,SP98,2022,10,174.0 +28,SP98,2022,11,178.0 +28,SP98,2022,12,175.0 +28,SP98,2023,1,195.0 +28,SP98,2023,2,197.0 +28,SP98,2023,3,197.0 +28,SP98,2023,4,199.0 +28,SP98,2023,5,192.0 +28,SP98,2023,6,192.0 +28,SP98,2023,7,190.0 +28,SP98,2023,8,198.0 +28,SP98,2023,9,200.0 +28,SP98,2023,10,194.0 +28,SP98,2023,11,190.0 +28,SP98,2023,12,186.0 +28,SP98,2024,1,185.0 +28,SP98,2024,2,190.0 +28,SP98,2024,3,193.0 +28,SP98,2024,4,198.0 +28,SP98,2024,5,195.0 +28,SP98,2024,6,191.0 +28,SP98,2024,7,192.0 +28,SP98,2024,8,192.0 +28,SP98,2024,9,192.0 +28,SP98,2024,10,192.0 +28,SP98,2024,11,192.0 +28,SP98,2024,12,192.0 +28,SP95,2016,1,128.16 +28,SP95,2016,2,125.68 +28,SP95,2016,3,127.42 +28,SP95,2016,4,132.25 +28,SP95,2016,5,135.02 +28,SP95,2016,6,136.88 +28,SP95,2016,7,132.03 +28,SP95,2016,8,129.78 +28,SP95,2016,9,131.05 +28,SP95,2016,10,134.24 +28,SP95,2016,11,133.18 +28,SP95,2016,12,137.15 +28,SP95,2017,1,141.83 +28,SP95,2017,2,142.24 +28,SP95,2017,3,139.82 +28,SP95,2017,4,141.1 +28,SP95,2017,5,138.4 +28,SP95,2017,6,135.97 +28,SP95,2017,7,133.82 +28,SP95,2017,8,135.24 +28,SP95,2017,9,138.46 +28,SP95,2017,10,137.3 +28,SP95,2017,11,141.79 +28,SP95,2017,12,141.54 +28,SP95,2018,1,148.1 +28,SP95,2018,2,147.34 +28,SP95,2018,3,146.48 +28,SP95,2018,4,149.81 +28,SP95,2018,5,154.65 +28,SP95,2018,6,155.63 +28,SP95,2018,7,154.78 +28,SP95,2018,8,156.29 +28,SP95,2018,9,157.15 +28,SP95,2018,10,156.86 +28,SP95,2018,11,150.7 +28,SP95,2018,12,145.29 +28,SP95,2019,1,143.09 +28,SP95,2019,2,145.82 +28,SP95,2019,3,149.65 +28,SP95,2019,4,157.41 +28,SP95,2019,5,160.65 +28,SP95,2019,6,155.09 +28,SP95,2019,7,153.83 +28,SP95,2019,8,152.27 +28,SP95,2019,9,151.62 +28,SP95,2019,10,151.7 +28,SP95,2019,11,152.56 +28,SP95,2019,12,153.6 +28,SP95,2020,1,154.54 +28,SP95,2020,2,150.84 +28,SP95,2020,3,140.11 +28,SP95,2020,4,128.87 +28,SP95,2020,5,126.76 +28,SP95,2020,6,132.4 +28,SP95,2020,7,135.92 +28,SP95,2020,8,134.79 +28,SP95,2020,9,134.5 +28,SP95,2020,10,134.93 +28,SP95,2020,11,134.19 +28,SP95,2020,12,136.56 +28,SP95,2021,1,141.28 +28,SP95,2021,2,145.89 +28,SP95,2021,3,151.46 +28,SP95,2021,4,152.58 +28,SP95,2021,5,153.59 +28,SP95,2021,6,154.8 +28,SP95,2021,7,158.57 +28,SP95,2021,8,159.23 +28,SP95,2021,9,159.46 +28,SP95,2021,10,165.18 +28,SP95,2021,11,167.5 +28,SP95,2021,12,163.72 +28,SP95,2022,9,165.0 +28,SP95,2022,1,172.0 +28,SP95,2022,2,180.0 +28,SP95,2022,3,201.0 +28,SP95,2022,4,183.0 +28,SP95,2022,5,193.0 +28,SP95,2022,6,214.0 +28,SP95,2022,7,202.0 +28,SP95,2022,8,186.0 +28,SP95,2022,10,173.0 +28,SP95,2022,11,175.0 +28,SP95,2022,12,172.0 +28,SP95,2023,1,190.0 +28,SP95,2023,2,193.0 +28,SP95,2023,3,193.0 +28,SP95,2023,4,196.0 +28,SP95,2023,5,188.0 +28,SP95,2023,6,188.0 +28,SP95,2023,7,186.0 +28,SP95,2023,8,194.0 +28,SP95,2023,9,196.0 +28,SP95,2023,10,190.0 +28,SP95,2023,11,187.0 +28,SP95,2023,12,183.0 +28,SP95,2024,1,180.0 +28,SP95,2024,2,185.0 +28,SP95,2024,3,188.0 +28,SP95,2024,4,193.0 +28,SP95,2024,5,190.0 +28,SP95,2024,6,185.0 +28,SP95,2024,7,186.0 +28,SP95,2024,8,186.0 +28,SP95,2024,9,186.0 +28,SP95,2024,10,186.0 +28,SP95,2024,11,186.0 +28,SP95,2024,12,186.0 +28,E85,2016,3,72.87 +28,E85,2016,5,80.53 +28,E85,2016,6,82.34 +28,E85,2016,7,82.84 +28,E85,2016,8,86.61 +28,E85,2016,9,87.1 +28,E85,2016,10,85.74 +28,E85,2016,11,84.67 +28,E85,2016,12,84.53 +28,E85,2016,1,69.4 +28,E85,2016,2,70.5 +28,E85,2016,4,77.21 +28,E85,2017,1,63.67 +28,E85,2017,4,62.81 +28,E85,2017,5,65.11 +28,E85,2017,6,66.16 +28,E85,2017,7,66.41 +28,E85,2017,9,71.39 +28,E85,2017,10,72.86 +28,E85,2017,12,74.79 +28,E85,2017,2,62.83 +28,E85,2017,3,62.79 +28,E85,2017,8,68.6 +28,E85,2017,11,72.67 +28,E85,2018,5,66.77 +28,E85,2018,7,67.19 +28,E85,2018,11,66.5 +28,E85,2018,12,70.11 +28,E85,2018,1,65.28 +28,E85,2018,2,65.08 +28,E85,2018,3,67.07 +28,E85,2018,4,66.98 +28,E85,2018,6,66.9 +28,E85,2018,8,67.82 +28,E85,2018,9,67.67 +28,E85,2018,10,67.55 +28,E85,2019,2,62.56 +28,E85,2019,5,70.92 +28,E85,2019,6,70.3 +28,E85,2019,7,70.63 +28,E85,2019,1,63.16 +28,E85,2019,3,64.1 +28,E85,2019,4,68.92 +28,E85,2019,8,69.42 +28,E85,2019,9,69.38 +28,E85,2019,10,68.86 +28,E85,2019,11,69.06 +28,E85,2019,12,69.91 +28,E85,2020,1,66.52 +28,E85,2020,9,63.68 +28,E85,2020,2,66.36 +28,E85,2020,3,65.5 +28,E85,2020,4,64.87 +28,E85,2020,5,64.8 +28,E85,2020,6,65.14 +28,E85,2020,7,64.27 +28,E85,2020,8,63.82 +28,E85,2020,10,63.78 +28,E85,2020,11,63.64 +28,E85,2020,12,63.53 +28,E85,2021,3,65.38 +28,E85,2021,6,65.57 +28,E85,2021,8,66.8 +28,E85,2021,10,68.13 +28,E85,2021,11,70.48 +28,E85,2021,12,70.78 +28,E85,2021,1,64.35 +28,E85,2021,2,64.49 +28,E85,2021,4,65.46 +28,E85,2021,5,65.66 +28,E85,2021,7,66.32 +28,E85,2021,9,66.47 +28,E85,2022,1,75.0 +28,E85,2022,3,89.0 +28,E85,2022,5,78.0 +28,E85,2022,6,86.0 +28,E85,2022,7,86.0 +28,E85,2022,8,83.0 +28,E85,2022,9,71.0 +28,E85,2022,10,79.0 +28,E85,2022,11,89.0 +28,E85,2022,12,91.0 +28,E85,2022,2,76.0 +28,E85,2022,4,76.0 +28,E85,2023,1,109.0 +28,E85,2023,2,112.0 +28,E85,2023,3,113.0 +28,E85,2023,4,113.0 +28,E85,2023,5,112.0 +28,E85,2023,7,104.0 +28,E85,2023,8,105.0 +28,E85,2023,9,104.0 +28,E85,2023,10,103.0 +28,E85,2023,11,102.0 +28,E85,2023,12,100.0 +28,E85,2023,6,108.0 +28,E85,2024,1,91.0 +28,E85,2024,2,90.0 +28,E85,2024,4,90.0 +28,E85,2024,5,89.0 +28,E85,2024,6,86.0 +28,E85,2024,3,90.0 +28,E85,2024,7,85.0 +28,E85,2024,8,85.0 +28,E85,2024,9,85.0 +28,E85,2024,10,85.0 +28,E85,2024,11,85.0 +28,E85,2024,12,85.0 +75,Gazole,2016,1,102.83 +75,Gazole,2016,2,102.64 +75,Gazole,2016,3,107.06 +75,Gazole,2016,4,107.73 +75,Gazole,2016,5,113.01 +75,Gazole,2016,6,116.53 +75,Gazole,2016,7,113.98 +75,Gazole,2016,8,112.02 +75,Gazole,2016,9,113.02 +75,Gazole,2016,10,117.11 +75,Gazole,2016,11,116.68 +75,Gazole,2016,12,121.32 +75,Gazole,2017,1,128.06 +75,Gazole,2017,2,128.26 +75,Gazole,2017,3,126.4 +75,Gazole,2017,4,125.98 +75,Gazole,2017,5,122.88 +75,Gazole,2017,6,120.04 +75,Gazole,2017,7,119.15 +75,Gazole,2017,8,121.27 +75,Gazole,2017,9,123.74 +75,Gazole,2017,10,125.83 +75,Gazole,2017,11,128.53 +75,Gazole,2017,12,129.11 +75,Gazole,2018,1,140.72 +75,Gazole,2018,2,139.04 +75,Gazole,2018,3,138.3 +75,Gazole,2018,4,141.28 +75,Gazole,2018,5,146.62 +75,Gazole,2018,6,147.61 +75,Gazole,2018,7,146.22 +75,Gazole,2018,8,146.46 +75,Gazole,2018,9,148.86 +75,Gazole,2018,10,153.24 +75,Gazole,2018,11,149.27 +75,Gazole,2018,12,142.67 +75,Gazole,2019,1,140.73 +75,Gazole,2019,2,144.56 +75,Gazole,2019,3,147.25 +75,Gazole,2019,4,148.42 +75,Gazole,2019,5,149.7 +75,Gazole,2019,6,144.32 +75,Gazole,2019,7,143.86 +75,Gazole,2019,8,142.98 +75,Gazole,2019,9,145.1 +75,Gazole,2019,10,145.7 +75,Gazole,2019,11,145.76 +75,Gazole,2019,12,147.54 +75,Gazole,2020,1,148.36 +75,Gazole,2020,2,141.66 +75,Gazole,2020,3,131.76 +75,Gazole,2020,4,123.72 +75,Gazole,2020,5,119.38 +75,Gazole,2020,6,122.74 +75,Gazole,2020,7,125.59 +75,Gazole,2020,8,125.07 +75,Gazole,2020,9,122.38 +75,Gazole,2020,10,121.87 +75,Gazole,2020,11,122.8 +75,Gazole,2020,12,126.99 +75,Gazole,2021,1,130.95 +75,Gazole,2021,2,135.45 +75,Gazole,2021,3,139.33 +75,Gazole,2021,4,138.51 +75,Gazole,2021,5,139.94 +75,Gazole,2021,6,142.48 +75,Gazole,2021,7,145.21 +75,Gazole,2021,8,144.43 +75,Gazole,2021,9,146.36 +75,Gazole,2021,10,155.2 +75,Gazole,2021,11,156.72 +75,Gazole,2021,12,153.93 +75,Gazole,2022,1,163.0 +75,Gazole,2022,2,172.0 +75,Gazole,2022,3,204.0 +75,Gazole,2022,4,186.0 +75,Gazole,2022,5,189.0 +75,Gazole,2022,6,209.0 +75,Gazole,2022,7,200.0 +75,Gazole,2022,8,188.0 +75,Gazole,2022,9,174.0 +75,Gazole,2022,10,187.0 +75,Gazole,2022,11,188.0 +75,Gazole,2022,12,178.0 +75,Gazole,2023,1,192.0 +75,Gazole,2023,2,185.0 +75,Gazole,2023,3,183.0 +75,Gazole,2023,4,179.0 +75,Gazole,2023,5,168.0 +75,Gazole,2023,6,169.0 +75,Gazole,2023,7,171.0 +75,Gazole,2023,8,185.0 +75,Gazole,2023,9,192.0 +75,Gazole,2023,10,190.0 +75,Gazole,2023,11,184.0 +75,Gazole,2023,12,177.0 +75,Gazole,2024,1,174.0 +75,Gazole,2024,2,182.0 +75,Gazole,2024,3,180.0 +75,Gazole,2024,4,179.0 +75,Gazole,2024,5,173.0 +75,Gazole,2024,6,171.0 +75,Gazole,2024,7,174.0 +75,Gazole,2024,8,174.0 +75,Gazole,2024,9,174.0 +75,Gazole,2024,10,174.0 +75,Gazole,2024,11,174.0 +75,Gazole,2024,12,174.0 +75,SP95,2016,1,128.72 +75,SP95,2016,2,126.54 +75,SP95,2016,3,128.03 +75,SP95,2016,4,132.69 +75,SP95,2016,5,135.49 +75,SP95,2016,6,137.48 +75,SP95,2016,7,133.5 +75,SP95,2016,8,131.53 +75,SP95,2016,9,132.5 +75,SP95,2016,10,135.6 +75,SP95,2016,11,134.99 +75,SP95,2016,12,138.74 +75,SP95,2017,1,143.24 +75,SP95,2017,2,143.76 +75,SP95,2017,3,141.78 +75,SP95,2017,4,142.73 +75,SP95,2017,5,140.15 +75,SP95,2017,6,137.75 +75,SP95,2017,7,135.61 +75,SP95,2017,8,136.86 +75,SP95,2017,9,139.54 +75,SP95,2017,10,138.7 +75,SP95,2017,11,142.87 +75,SP95,2017,12,142.88 +75,SP95,2018,1,149.13 +75,SP95,2018,2,148.79 +75,SP95,2018,3,147.72 +75,SP95,2018,4,151.03 +75,SP95,2018,5,155.8 +75,SP95,2018,6,156.99 +75,SP95,2018,7,155.96 +75,SP95,2018,8,157.36 +75,SP95,2018,9,158.04 +75,SP95,2018,10,157.89 +75,SP95,2018,11,151.36 +75,SP95,2018,12,146.14 +75,SP95,2019,1,144.26 +75,SP95,2019,2,146.7 +75,SP95,2019,3,150.43 +75,SP95,2019,4,157.89 +75,SP95,2019,5,160.79 +75,SP95,2019,6,156.01 +75,SP95,2019,7,154.57 +75,SP95,2019,8,153.16 +75,SP95,2019,9,152.59 +75,SP95,2019,10,152.63 +75,SP95,2019,11,153.53 +75,SP95,2019,12,154.36 +75,SP95,2020,1,155.68 +75,SP95,2020,2,151.93 +75,SP95,2020,3,142.16 +75,SP95,2020,4,131.05 +75,SP95,2020,5,129.01 +75,SP95,2020,6,134.3 +75,SP95,2020,7,137.5 +75,SP95,2020,8,136.4 +75,SP95,2020,9,136.24 +75,SP95,2020,10,136.5 +75,SP95,2020,11,135.87 +75,SP95,2020,12,138.04 +75,SP95,2021,1,142.04 +75,SP95,2021,2,146.73 +75,SP95,2021,3,152.27 +75,SP95,2021,4,153.32 +75,SP95,2021,5,154.31 +75,SP95,2021,6,155.57 +75,SP95,2021,7,159.13 +75,SP95,2021,8,159.84 +75,SP95,2021,9,160.16 +75,SP95,2021,10,165.7 +75,SP95,2021,11,167.99 +75,SP95,2021,12,164.44 +75,SP95,2022,1,172.0 +75,SP95,2022,2,181.0 +75,SP95,2022,3,201.0 +75,SP95,2022,4,183.0 +75,SP95,2022,5,194.0 +75,SP95,2022,6,214.0 +75,SP95,2022,7,202.0 +75,SP95,2022,8,186.0 +75,SP95,2022,9,164.0 +75,SP95,2022,10,172.0 +75,SP95,2022,11,174.0 +75,SP95,2022,12,171.0 +75,SP95,2023,1,190.0 +75,SP95,2023,2,193.0 +75,SP95,2023,3,192.0 +75,SP95,2023,4,195.0 +75,SP95,2023,5,189.0 +75,SP95,2023,6,189.0 +75,SP95,2023,7,186.0 +75,SP95,2023,8,194.0 +75,SP95,2023,9,196.0 +75,SP95,2023,10,190.0 +75,SP95,2023,11,187.0 +75,SP95,2023,12,183.0 +75,SP95,2024,1,181.0 +75,SP95,2024,2,186.0 +75,SP95,2024,5,191.0 +75,SP95,2024,6,187.0 +75,SP95,2024,7,187.0 +75,SP95,2024,3,189.0 +75,SP95,2024,4,193.0 +75,SP95,2024,8,187.0 +75,SP95,2024,9,187.0 +75,SP95,2024,10,187.0 +75,SP95,2024,11,187.0 +75,SP95,2024,12,187.0 +75,E85,2016,1,68.38 +75,E85,2016,3,71.21 +75,E85,2016,7,80.7 +75,E85,2016,2,69.18 +75,E85,2016,4,74.62 +75,E85,2016,5,79.1 +75,E85,2016,6,80.21 +75,E85,2016,8,81.93 +75,E85,2016,9,83.5 +75,E85,2016,10,83.43 +75,E85,2016,11,83.29 +75,E85,2016,12,83.57 +75,E85,2017,1,64.94 +75,E85,2017,2,65.8 +75,E85,2017,3,67.29 +75,E85,2017,4,67.47 +75,E85,2017,5,67.48 +75,E85,2017,6,68.04 +75,E85,2017,7,68.72 +75,E85,2017,8,69.8 +75,E85,2017,9,71.35 +75,E85,2017,10,71.57 +75,E85,2017,11,71.76 +75,E85,2017,12,71.57 +75,E85,2018,1,67.41 +75,E85,2018,2,66.42 +75,E85,2018,3,66.36 +75,E85,2018,4,66.29 +75,E85,2018,5,66.83 +75,E85,2018,6,68.18 +75,E85,2018,7,68.54 +75,E85,2018,8,69.44 +75,E85,2018,9,69.09 +75,E85,2018,10,69.24 +75,E85,2018,11,68.62 +75,E85,2018,12,71.61 +75,E85,2019,1,67.71 +75,E85,2019,2,67.85 +75,E85,2019,3,68.87 +75,E85,2019,4,69.89 +75,E85,2019,5,71.27 +75,E85,2019,6,72.11 +75,E85,2019,7,72.3 +75,E85,2019,8,73.24 +75,E85,2019,9,74.44 +75,E85,2019,10,73.83 +75,E85,2019,11,73.87 +75,E85,2019,12,73.91 +75,E85,2020,1,71.18 +75,E85,2020,2,69.71 +75,E85,2020,3,69.01 +75,E85,2020,4,68.5 +75,E85,2020,5,68.12 +75,E85,2020,6,68.0 +75,E85,2020,7,67.97 +75,E85,2020,8,67.38 +75,E85,2020,9,67.24 +75,E85,2020,10,67.06 +75,E85,2020,11,66.8 +75,E85,2020,12,66.92 +75,E85,2021,1,67.55 +75,E85,2021,2,67.57 +75,E85,2021,3,68.11 +75,E85,2021,4,68.52 +75,E85,2021,5,68.3 +75,E85,2021,6,68.74 +75,E85,2021,7,68.95 +75,E85,2021,8,69.26 +75,E85,2021,9,69.43 +75,E85,2021,10,70.44 +75,E85,2021,11,71.35 +75,E85,2021,12,71.32 +75,E85,2022,1,75.0 +75,E85,2022,2,78.0 +75,E85,2022,3,91.0 +75,E85,2022,4,78.0 +75,E85,2022,5,79.0 +75,E85,2022,6,87.0 +75,E85,2022,7,86.0 +75,E85,2022,8,82.0 +75,E85,2022,9,70.0 +75,E85,2022,10,78.0 +75,E85,2022,11,88.0 +75,E85,2022,12,89.0 +75,E85,2023,1,110.0 +75,E85,2023,2,113.0 +75,E85,2023,3,113.0 +75,E85,2023,4,112.0 +75,E85,2023,5,112.0 +75,E85,2023,6,108.0 +75,E85,2023,7,103.0 +75,E85,2023,8,104.0 +75,E85,2023,9,104.0 +75,E85,2023,10,102.0 +75,E85,2023,11,101.0 +75,E85,2023,12,100.0 +75,E85,2024,1,92.0 +75,E85,2024,2,90.0 +75,E85,2024,3,89.0 +75,E85,2024,4,89.0 +75,E85,2024,5,88.0 +75,E85,2024,6,86.0 +75,E85,2024,7,85.0 +75,E85,2024,8,85.0 +75,E85,2024,9,85.0 +75,E85,2024,10,85.0 +75,E85,2024,11,85.0 +75,E85,2024,12,85.0 +75,SP98,2016,1,132.72 +75,SP98,2016,2,130.36 +75,SP98,2016,3,131.52 +75,SP98,2016,4,136.12 +75,SP98,2016,5,138.96 +75,SP98,2016,6,141.5 +75,SP98,2016,7,137.82 +75,SP98,2016,8,135.48 +75,SP98,2016,9,136.4 +75,SP98,2016,10,139.43 +75,SP98,2016,11,138.97 +75,SP98,2016,12,142.69 +75,SP98,2017,1,147.46 +75,SP98,2017,2,148.13 +75,SP98,2017,3,146.2 +75,SP98,2017,4,146.95 +75,SP98,2017,5,144.49 +75,SP98,2017,6,142.23 +75,SP98,2017,7,140.13 +75,SP98,2017,8,141.08 +75,SP98,2017,9,143.96 +75,SP98,2017,10,143.18 +75,SP98,2017,11,147.55 +75,SP98,2017,12,147.66 +75,SP98,2018,1,153.8 +75,SP98,2018,2,153.45 +75,SP98,2018,3,152.37 +75,SP98,2018,4,155.38 +75,SP98,2018,5,160.31 +75,SP98,2018,6,161.77 +75,SP98,2018,7,160.84 +75,SP98,2018,8,162.21 +75,SP98,2018,9,162.99 +75,SP98,2018,10,162.96 +75,SP98,2018,11,155.82 +75,SP98,2018,12,150.15 +75,SP98,2019,1,148.94 +75,SP98,2019,2,151.21 +75,SP98,2019,3,154.94 +75,SP98,2019,4,162.83 +75,SP98,2019,5,165.98 +75,SP98,2019,6,161.4 +75,SP98,2019,7,159.55 +75,SP98,2019,8,158.05 +75,SP98,2019,9,157.36 +75,SP98,2019,10,157.36 +75,SP98,2019,11,158.2 +75,SP98,2019,12,159.25 +75,SP98,2020,1,160.24 +75,SP98,2020,2,156.25 +75,SP98,2020,3,146.39 +75,SP98,2020,4,135.1 +75,SP98,2020,5,132.65 +75,SP98,2020,6,137.9 +75,SP98,2020,7,141.33 +75,SP98,2020,8,140.11 +75,SP98,2020,9,139.89 +75,SP98,2020,10,140.19 +75,SP98,2020,11,139.65 +75,SP98,2020,12,142.03 +75,SP98,2021,1,146.75 +75,SP98,2021,2,150.63 +75,SP98,2021,3,156.65 +75,SP98,2021,4,157.86 +75,SP98,2021,5,158.84 +75,SP98,2021,6,160.24 +75,SP98,2021,7,164.23 +75,SP98,2021,8,164.86 +75,SP98,2021,9,165.45 +75,SP98,2021,10,171.37 +75,SP98,2021,11,173.58 +75,SP98,2021,12,169.74 +75,SP98,2022,1,177.0 +75,SP98,2022,2,185.0 +75,SP98,2022,3,205.0 +75,SP98,2022,4,187.0 +75,SP98,2022,5,199.0 +75,SP98,2022,6,221.0 +75,SP98,2022,7,207.0 +75,SP98,2022,8,189.0 +75,SP98,2022,9,165.0 +75,SP98,2022,10,175.0 +75,SP98,2022,11,178.0 +75,SP98,2022,12,175.0 +75,SP98,2023,1,194.0 +75,SP98,2023,2,197.0 +75,SP98,2023,3,197.0 +75,SP98,2023,4,199.0 +75,SP98,2023,5,192.0 +75,SP98,2023,6,192.0 +75,SP98,2023,7,190.0 +75,SP98,2023,8,198.0 +75,SP98,2023,9,200.0 +75,SP98,2023,10,194.0 +75,SP98,2023,11,191.0 +75,SP98,2023,12,186.0 +75,SP98,2024,1,185.0 +75,SP98,2024,2,190.0 +75,SP98,2024,3,193.0 +75,SP98,2024,4,198.0 +75,SP98,2024,5,196.0 +75,SP98,2024,6,191.0 +75,SP98,2024,7,192.0 +75,SP98,2024,8,192.0 +75,SP98,2024,9,192.0 +75,SP98,2024,10,192.0 +75,SP98,2024,11,192.0 +75,SP98,2024,12,192.0 +75,E10,2016,1,124.95 +75,E10,2016,2,122.34 +75,E10,2016,3,123.87 +75,E10,2016,4,128.41 +75,E10,2016,5,131.31 +75,E10,2016,6,133.43 +75,E10,2016,7,129.57 +75,E10,2016,8,127.65 +75,E10,2016,9,128.41 +75,E10,2016,10,131.38 +75,E10,2016,11,130.49 +75,E10,2016,12,134.37 +75,E10,2017,1,138.54 +75,E10,2017,2,139.33 +75,E10,2017,3,137.19 +75,E10,2017,4,138.12 +75,E10,2017,5,135.44 +75,E10,2017,6,133.3 +75,E10,2017,7,131.75 +75,E10,2017,8,133.13 +75,E10,2017,9,136.06 +75,E10,2017,10,135.11 +75,E10,2017,11,139.38 +75,E10,2017,12,139.14 +75,E10,2018,4,147.2 +75,E10,2018,5,151.94 +75,E10,2018,6,152.93 +75,E10,2018,7,151.97 +75,E10,2018,8,153.25 +75,E10,2018,9,154.05 +75,E10,2018,10,153.98 +75,E10,2018,11,146.29 +75,E10,2018,12,141.09 +75,E10,2018,1,145.56 +75,E10,2018,2,144.74 +75,E10,2018,3,143.81 +75,E10,2019,1,140.86 +75,E10,2019,2,143.19 +75,E10,2019,3,146.92 +75,E10,2019,4,154.68 +75,E10,2019,5,157.53 +75,E10,2019,6,152.36 +75,E10,2019,7,150.97 +75,E10,2019,8,149.36 +75,E10,2019,9,148.78 +75,E10,2019,10,148.7 +75,E10,2019,11,149.77 +75,E10,2019,12,151.07 +75,E10,2020,1,152.15 +75,E10,2020,2,147.85 +75,E10,2020,3,137.21 +75,E10,2020,4,126.23 +75,E10,2020,5,124.87 +75,E10,2020,6,130.53 +75,E10,2020,7,133.78 +75,E10,2020,8,132.38 +75,E10,2020,9,132.03 +75,E10,2020,10,132.35 +75,E10,2020,11,131.83 +75,E10,2020,12,134.54 +75,E10,2021,1,139.4 +75,E10,2021,2,143.48 +75,E10,2021,3,148.92 +75,E10,2021,4,149.8 +75,E10,2021,5,150.65 +75,E10,2021,6,152.1 +75,E10,2021,7,155.82 +75,E10,2021,8,156.35 +75,E10,2021,9,156.78 +75,E10,2021,10,162.84 +75,E10,2021,11,164.62 +75,E10,2021,12,160.3 +75,E10,2022,1,169.0 +75,E10,2022,2,176.0 +75,E10,2022,3,196.0 +75,E10,2022,4,176.0 +75,E10,2022,5,190.0 +75,E10,2022,6,210.0 +75,E10,2022,7,195.0 +75,E10,2022,8,179.0 +75,E10,2022,9,154.0 +75,E10,2022,10,165.0 +75,E10,2022,11,168.0 +75,E10,2022,12,165.0 +75,E10,2023,1,186.0 +75,E10,2023,2,188.0 +75,E10,2023,3,188.0 +75,E10,2023,4,191.0 +75,E10,2023,5,184.0 +75,E10,2023,6,184.0 +75,E10,2023,7,182.0 +75,E10,2023,8,191.0 +75,E10,2023,9,193.0 +75,E10,2023,10,186.0 +75,E10,2023,11,182.0 +75,E10,2023,12,177.0 +75,E10,2024,1,177.0 +75,E10,2024,2,182.0 +75,E10,2024,3,185.0 +75,E10,2024,4,190.0 +75,E10,2024,5,186.0 +75,E10,2024,6,181.0 +75,E10,2024,7,182.0 +75,E10,2024,8,182.0 +75,E10,2024,9,182.0 +75,E10,2024,10,182.0 +75,E10,2024,11,182.0 +75,E10,2024,12,182.0 +75,GPLc,2016,1,72.32 +75,GPLc,2016,4,70.57 +75,GPLc,2016,5,70.62 +75,GPLc,2016,6,71.37 +75,GPLc,2016,8,70.3 +75,GPLc,2016,11,70.23 +75,GPLc,2016,2,72.02 +75,GPLc,2016,3,71.6 +75,GPLc,2016,7,71.19 +75,GPLc,2016,9,69.88 +75,GPLc,2016,10,69.78 +75,GPLc,2016,12,70.98 +75,GPLc,2017,2,74.08 +75,GPLc,2017,5,75.06 +75,GPLc,2017,6,75.21 +75,GPLc,2017,11,77.34 +75,GPLc,2017,12,78.68 +75,GPLc,2017,9,74.96 +75,GPLc,2017,10,76.09 +75,GPLc,2017,4,75.14 +75,GPLc,2017,1,72.26 +75,GPLc,2017,3,74.73 +75,GPLc,2017,7,74.68 +75,GPLc,2017,8,74.25 +75,GPLc,2018,1,82.52 +75,GPLc,2018,7,83.77 +75,GPLc,2018,10,85.86 +75,GPLc,2018,6,83.3 +75,GPLc,2018,2,82.89 +75,GPLc,2018,3,82.79 +75,GPLc,2018,4,82.41 +75,GPLc,2018,9,84.46 +75,GPLc,2018,11,85.68 +75,GPLc,2018,5,82.32 +75,GPLc,2018,8,84.0 +75,GPLc,2018,12,86.15 +75,GPLc,2019,5,87.33 +75,GPLc,2019,12,87.85 +75,GPLc,2019,2,84.82 +75,GPLc,2019,4,86.5 +75,GPLc,2019,10,86.93 +75,GPLc,2019,11,87.13 +75,GPLc,2019,1,86.24 +75,GPLc,2019,3,85.51 +75,GPLc,2019,6,87.5 +75,GPLc,2019,7,86.99 +75,GPLc,2019,8,86.92 +75,GPLc,2019,9,87.16 +75,GPLc,2020,1,88.22 +75,GPLc,2020,3,88.3 +75,GPLc,2020,5,86.93 +75,GPLc,2020,7,86.73 +75,GPLc,2020,10,86.63 +75,GPLc,2020,6,86.51 +75,GPLc,2020,2,89.01 +75,GPLc,2020,4,87.97 +75,GPLc,2020,8,86.47 +75,GPLc,2020,9,86.8 +75,GPLc,2020,11,86.76 +75,GPLc,2020,12,86.58 +75,GPLc,2021,1,85.71 +75,GPLc,2021,10,89.01 +75,GPLc,2021,11,90.17 +75,GPLc,2021,12,91.15 +75,GPLc,2021,2,85.19 +75,GPLc,2021,5,85.55 +75,GPLc,2021,7,86.65 +75,GPLc,2021,8,87.26 +75,GPLc,2021,3,85.51 +75,GPLc,2021,4,85.63 +75,GPLc,2021,6,85.65 +75,GPLc,2021,9,87.52 +75,GPLc,2022,1,93.0 +75,GPLc,2022,3,96.0 +75,GPLc,2022,4,85.0 +75,GPLc,2022,5,86.0 +75,GPLc,2022,6,85.0 +75,GPLc,2022,8,86.0 +75,GPLc,2022,10,76.0 +75,GPLc,2022,11,83.0 +75,GPLc,2022,2,93.0 +75,GPLc,2022,9,78.0 +75,GPLc,2022,12,91.0 +75,GPLc,2022,7,86.0 +75,GPLc,2023,1,99.0 +75,GPLc,2023,3,100.0 +75,GPLc,2023,9,100.0 +75,GPLc,2023,2,100.0 +75,GPLc,2023,4,101.0 +75,GPLc,2023,7,99.0 +75,GPLc,2023,8,100.0 +75,GPLc,2023,10,99.0 +75,GPLc,2023,11,100.0 +75,GPLc,2023,12,100.0 +75,GPLc,2023,6,100.0 +75,GPLc,2023,5,101.0 +75,GPLc,2024,3,100.0 +75,GPLc,2024,1,99.0 +75,GPLc,2024,2,100.0 +75,GPLc,2024,4,100.0 +75,GPLc,2024,5,100.0 +75,GPLc,2024,6,100.0 +75,GPLc,2024,7,100.0 +75,GPLc,2024,8,100.0 +75,GPLc,2024,9,100.0 +75,GPLc,2024,10,100.0 +75,GPLc,2024,11,100.0 +75,GPLc,2024,12,100.0 diff --git a/openfisca_france_indirect_taxation/assets/prix/prix_par_carburant_annee_hectolitre.csv b/openfisca_france_indirect_taxation/assets/prix/prix_par_carburant_annee_hectolitre.csv new file mode 100644 index 00000000..2089219c --- /dev/null +++ b/openfisca_france_indirect_taxation/assets/prix/prix_par_carburant_annee_hectolitre.csv @@ -0,0 +1,101 @@ +carburant,annee,prix_moyen_par_hectolitre +E10,2009,123.95 +E10,2010,136.0 +E10,2011,151.87 +E10,2012,157.29 +E10,2013,155.62 +E10,2014,150.04 +E10,2015,136.87 +E10,2016,128.93 +E10,2017,137.64 +E10,2018,150.77 +E10,2019,150.62 +E10,2020,136.92 +E10,2021,154.69 +E10,2022,179.0 +E10,2023,187.85 +E10,2024,184.77 +E85,2007,82.24 +E85,2008,85.82 +E85,2009,95.36 +E85,2010,110.73 +E85,2011,90.32 +E85,2012,92.09 +E85,2013,93.14 +E85,2014,88.33 +E85,2015,91.36 +E85,2016,83.08 +E85,2017,73.15 +E85,2018,77.23 +E85,2019,76.46 +E85,2020,71.08 +E85,2021,74.54 +E85,2022,91.38 +E85,2023,114.46 +E85,2024,96.0 +GPLc,2007,73.27 +GPLc,2008,75.73 +GPLc,2009,66.64 +GPLc,2010,72.95 +GPLc,2011,83.52 +GPLc,2012,87.48 +GPLc,2013,88.3 +GPLc,2014,86.78 +GPLc,2015,80.59 +GPLc,2016,73.92 +GPLc,2017,77.31 +GPLc,2018,85.62 +GPLc,2019,88.46 +GPLc,2020,88.23 +GPLc,2021,89.15 +GPLc,2022,89.15 +GPLc,2023,102.77 +GPLc,2024,102.15 +Gazole,2007,110.09 +Gazole,2008,128.09 +Gazole,2009,101.35 +Gazole,2010,116.22 +Gazole,2011,136.25 +Gazole,2012,142.54 +Gazole,2013,138.21 +Gazole,2014,131.42 +Gazole,2015,117.3 +Gazole,2016,112.93 +Gazole,2017,126.14 +Gazole,2018,146.0 +Gazole,2019,146.38 +Gazole,2020,129.0 +Gazole,2021,145.62 +Gazole,2022,187.62 +Gazole,2023,182.85 +Gazole,2024,176.69 +SP95,2007,129.48 +SP95,2008,137.83 +SP95,2009,122.74 +SP95,2010,136.77 +SP95,2011,152.88 +SP95,2012,160.17 +SP95,2013,157.04 +SP95,2014,151.48 +SP95,2015,137.95 +SP95,2016,133.08 +SP95,2017,140.77 +SP95,2018,153.46 +SP95,2019,153.54 +SP95,2020,139.15 +SP95,2021,157.69 +SP95,2022,184.54 +SP95,2023,191.15 +SP95,2024,188.31 +SP98,2013,159.52 +SP98,2014,155.96 +SP98,2015,141.91 +SP98,2016,136.62 +SP98,2017,145.54 +SP98,2018,157.92 +SP98,2019,158.23 +SP98,2020,143.62 +SP98,2021,162.08 +SP98,2022,185.62 +SP98,2023,195.38 +SP98,2024,193.08 diff --git a/openfisca_france_indirect_taxation/assets/quantites/consommation_moyenne_carburant_france.csv b/openfisca_france_indirect_taxation/assets/quantites/consommation_moyenne_carburant_france.csv new file mode 100644 index 00000000..164cdd9d --- /dev/null +++ b/openfisca_france_indirect_taxation/assets/quantites/consommation_moyenne_carburant_france.csv @@ -0,0 +1,12 @@ +annee,voitures_particulieres_diesel,voitures_particulieres_essence,poids_lourds_diesel,bus_et_cars_diesel,vehicules_utilitaires_legers_diesel,vehicules_utilitaires_legers_essence,voitures_particulieres_gpl,vehicules_utilitaires_legers_gpl +2012-01-01,6.36,7.66,34.97,32.78,6.36,7.66,9.192,9.192 +2013-01-01,6.21,7.5,34.81,32.47,6.21,7.5,9.0,9.0 +2014-01-01,6.19,7.42,34.64,32.13,6.19,7.42,8.904,8.904 +2015-01-01,6.16,7.42,34.5,31.81,6.16,7.42,8.904,8.904 +2016-01-01,6.06,7.27,33.87,31.22,6.06,7.27,8.723999999999998,8.723999999999998 +2017-01-01,6.07,7.31,34.06,31.4,6.07,7.31,8.771999999999998,8.771999999999998 +2018-01-01,6.01,7.18,33.72,31.09,6.01,7.18,8.616,8.616 +2019-01-01,6.1,7.1,32.9,30.5,6.1,7.1,8.52,8.52 +2020-01-01,5.9,6.8,33.0,30.4,5.9,6.8,8.16,8.16 +2021-01-01,5.9,6.8,33.0,30.4,5.9,6.8,8.16,8.16 +2022-01-01,5.9,6.8,33.0,30.4,5.9,6.8,8.16,8.16 diff --git a/openfisca_france_indirect_taxation/assets/quantites/parc_moyen_vehicule_france.csv b/openfisca_france_indirect_taxation/assets/quantites/parc_moyen_vehicule_france.csv new file mode 100644 index 00000000..df869df7 --- /dev/null +++ b/openfisca_france_indirect_taxation/assets/quantites/parc_moyen_vehicule_france.csv @@ -0,0 +1,12 @@ +annee,voitures_particulieres_total,voitures_particulieres_diesel,voitures_particulieres_essence,voitures_particulieres_electrique,voitures_particulieres_gpl,vehicules_utilitaires_legers_total,vehicules_utilitaires_legers_diesel,vehicules_utilitaires_legers_essence,vehicules_utilitaires_legers_electrique,vehicules_utilitaires_legers_gpl,poids_lourds_total,poids_lourds_diesel,poids_lourds_gnv,bus_et_cars_total,bus_et_cars_diesel,bus_et_cars_gnv,parc_total +2012-01-01,34647000,21593000,12800000,7000,196000,5296000,4994000,276000,6000,19000,582000,581000,1000,86000,83000,3000,40611000 +2013-01-01,34986000,22153000,12547000,13000,185000,5430000,5140000,262000,10000,18000,573000,571000,1000,87000,84000,2000,41076000 +2014-01-01,35507000,22685000,12494000,21000,176000,5585000,5300000,254000,13000,17000,572000,571000,1000,88000,85000,3000,41752000 +2015-01-01,36021000,23058000,12579000,32000,172000,5676000,5399000,242000,17000,17000,569000,568000,1000,88000,85000,3000,42355000 +2016-01-01,36538000,23259000,12826000,51000,167000,5771000,5499000,232000,21000,16000,572000,570000,1000,89000,86000,3000,42970000 +2017-01-01,37059000,23316000,13213000,71000,160000,5906000,5635000,226000,26000,15000,577000,575000,2000,89000,86000,3000,43631000 +2018-01-01,37321000,22993000,13697000,91000,154000,6016000,5742000,225000,31000,15000,586000,583000,3000,90000,87000,3000,44014000 +2019-01-01,37549000,22498000,14292000,120000,148000,5930000,5661000,212000,37000,14000,591000,587000,4000,91000,87000,3000,44161000 +2020-01-01,37309000,21746000,14599000,180000,144000,5691000,5426000,201000,43000,13000,589000,583000,6000,90000,86000,4000,43679000 +2021-01-01,37309000,21746000,14599000,180000,144000,5691000,5426000,201000,43000,13000,589000,583000,6000,90000,86000,4000,43679000 +2022-01-01,37309000,21746000,14599000,180000,144000,5691000,5426000,201000,43000,13000,589000,583000,6000,90000,86000,4000,43679000 diff --git a/openfisca_france_indirect_taxation/assets/quantites/parcours_moyen_vehicule_france.csv b/openfisca_france_indirect_taxation/assets/quantites/parcours_moyen_vehicule_france.csv new file mode 100644 index 00000000..c8b3ccdb --- /dev/null +++ b/openfisca_france_indirect_taxation/assets/quantites/parcours_moyen_vehicule_france.csv @@ -0,0 +1,12 @@ +annee,voitures_particulieres_moyen,voitures_particulieres_diesel,voitures_particulieres_essence,voitures_particulieres_electrique,voitures_particulieres_gpl,vehicules_utilitaires_legers_moyen,vehicules_utilitaires_legers_diesel,vehicules_utilitaires_legers_essence,vehicules_utilitaires_legers_electrique,vehicules_utilitaires_legers_gpl,poids_lourds_moyen,poids_lourds_diesel,poids_lourds_gnv,bus_et_cars_moyen,bus_et_cars_diesel,bus_et_cars_gnv +2012-01-01,12335,14931,7938,8495,12661,14716,15276,5191,5204,9135,43899,43984,17783,34095,33725,46575 +2013-01-01,12321,14797,7924,8988,12540,14456,14960,5200,7119,8829,43545,43624,18586,34107,33752,46390 +2014-01-01,12338,14727,7969,9286,12124,14268,14736,5212,7632,8553,43000,43077,19716,34095,33716,47051 +2015-01-01,12359,14685,8054,9309,11757,14155,14591,5264,7695,8452,43414,43492,20607,34045,33705,46186 +2016-01-01,12392,14678,8198,9296,11518,14142,14556,5318,7763,8305,44047,44120,26482,34560,34255,45584 +2017-01-01,12259,14495,8271,9045,11115,14015,14408,5313,7724,8382,44322,44376,36012,34105,33807,44434 +2018-01-01,12103,14295,8385,8938,10875,13944,14321,5522,7695,8748,44526,44549,44078,34110,33809,45019 +2019-01-01,11924,14066,8519,9041,10594,14016,14367,6146,7550,9048,43689,43715,43178,33528,33222,44305 +2020-01-01,9882,11616,7282,8508,8715,12842,13160,5784,7340,7311,41498,41466,46971,25856,25324,39125 +2021-01-01,9882,11616,7282,8508,8715,12842,13160,5784,7340,7311,41498,41466,46971,25856,25324,39125 +2022-01-01,9882,11616,7282,8508,8715,12842,13160,5784,7340,7311,41498,41466,46971,25856,25324,39125 diff --git a/openfisca_france_indirect_taxation/build_survey_data/calibration_aliss.py b/openfisca_france_indirect_taxation/build_survey_data/calibration_aliss.py index b5d1fc80..8f4143f1 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/calibration_aliss.py +++ b/openfisca_france_indirect_taxation/build_survey_data/calibration_aliss.py @@ -44,11 +44,11 @@ def build_clean_aliss_data_frame(): 'Qm_f', 'Dm_f', 'pm_f', 'nomCOICOP', 'SomTpoids', 'DT_k', 'D_a' ] ) - assert (aliss['DT_k'] == aliss['DT_k'].unique()[0]).all(), "DT_k is not a unique total number" + assert (aliss['DT_k'] == aliss['DT_k'].unique()[0]).all(), 'DT_k is not a unique total number' # Lower case all variables but DT_k which is translated to 'Dt_k' aliss.columns = list(map(str.lower, aliss.columns[:-2])) + ['Dt_k', 'd_a'] - log.info("These columns contains nans {}".format( + log.info('These columns contains nans {}'.format( aliss.columns[aliss.isnull().any()].tolist() )) aliss.dropna(inplace = True) @@ -114,7 +114,7 @@ def complete_input_data_frame(input_data_frame, drop_dom = True): input_data_frame = input_data_frame.query('zeat != 0').copy() input_data_frame.eval( - "age = 0 + (agepr > 30) + (agepr > 45) + (agepr > 60)", + 'age = 0 + (agepr > 30) + (agepr > 45) + (agepr > 60)', inplace = True, # Remove comment for pandas 0.18 ) @@ -187,7 +187,7 @@ def compute_population_shares(drop_dom = True, display_plot = False): ['age', 'revenus']).apply( lambda df: (df.tpoids).sum() ).reset_index() - aliss_population_shares.rename(columns = {0: "aliss_population"}, inplace = True) + aliss_population_shares.rename(columns = {0: 'aliss_population'}, inplace = True) aliss_population_shares['aliss_population_share'] = ( aliss_population_shares.aliss_population / aliss_population_shares.aliss_population.sum() ) @@ -200,7 +200,7 @@ def compute_population_shares(drop_dom = True, display_plot = False): ['age', 'revenus']).apply( lambda df: (df.pondmen).sum() ).reset_index() - bdf_population_shares.rename(columns = {0: "bdf_population"}, inplace = True) + bdf_population_shares.rename(columns = {0: 'bdf_population'}, inplace = True) bdf_population_shares['bdf_population_share'] = ( bdf_population_shares.bdf_population / bdf_population_shares.bdf_population.sum() ) @@ -218,10 +218,10 @@ def compute_expenditures(drop_dom = True, display_plot = False): ['age', 'revenus', 'poste_coicop', 'nomc', 'nomk']).apply( lambda df: (df.dt_k).sum() ).reset_index() - aliss_expenditures.rename(columns = {0: "kantar_expenditures"}, inplace = True) + aliss_expenditures.rename(columns = {0: 'kantar_expenditures'}, inplace = True) - log.info("kantar_expenditures_total:", (aliss.dt_k).sum() / 1e9) - log.info("bdf_expenditures_total: ", (aliss.dt_c).drop_duplicates().sum() / 1e9) + log.info('kantar_expenditures_total:', (aliss.dt_k).sum() / 1e9) + log.info('bdf_expenditures_total: ', (aliss.dt_c).drop_duplicates().sum() / 1e9) aliss_expenditures['kantar_budget_share'] = aliss_expenditures.groupby( ['age', 'revenus'])['kantar_expenditures'].transform( @@ -240,9 +240,9 @@ def compute_expenditures(drop_dom = True, display_plot = False): ['age', 'revenus', 'variable']).apply( lambda df: (df.pondmen * df.value).sum() ).reset_index() - input_data_expenditures.rename(columns = {"variable": "poste_coicop", 0: "bdf_expenditures"}, inplace = True) + input_data_expenditures.rename(columns = {'variable': 'poste_coicop', 0: 'bdf_expenditures'}, inplace = True) - log.info("bdf_expenditures_total: ", input_data_expenditures.bdf_expenditures.sum() / 1e9) + log.info('bdf_expenditures_total: ', input_data_expenditures.bdf_expenditures.sum() / 1e9) input_data_expenditures['bdf_budget_share'] = input_data_expenditures.groupby( ['age', 'revenus'])['bdf_expenditures'].transform( @@ -333,7 +333,7 @@ def compute_kantar_elasticities(compute = False): ['age', 'revenus', 'nomk', 'dm_k', 'dm_f'] ] - assert len(extract.dm_f.unique()) == 1, f"Problem when extracting budget share for age = {age} and revenu = {revenus}" + assert len(extract.dm_f.unique()) == 1, f'Problem when extracting budget share for age = {age} and revenu = {revenus}' extract['budget_share_kf'] = extract.dm_k / extract.dm_f extract['nomf'] = nomf_by_dirty_nomf.get(nomf) @@ -403,7 +403,7 @@ def compute_kantar_elasticities(compute = False): nomk_cross_price_elasticity = nomk_cross_price_elasticity.combine_first(temp_nomk_cross_price_elasticity) # Some k-kprime elasticities are not found - log.info("{} k-kprime elasticities are not found".format(nomk_cross_price_elasticity.isnull().sum().sum())) + log.info('{} k-kprime elasticities are not found'.format(nomk_cross_price_elasticity.isnull().sum().sum())) nomk_cross_price_elasticity.fillna(0, inplace = True) nomk_cross_price_elasticity.to_csv(kantar_cross_price_elasticities_path) @@ -483,7 +483,7 @@ def compute_expenditures_coefficient(reform_key = None): matrix = kantar_elasticities.query('age == @age & revenus == @revenus').drop(['age', 'revenus'], axis =1) matrix.fillna(0, inplace = True) assert sorted(matrix.index.tolist()) == sorted(correction.nomk), \ - "Problem at age={} and revenus={}\n {}, {}".format( + 'Problem at age={} and revenus={}\n {}, {}'.format( age, revenus, len(matrix.index.tolist()), len(correction.nomk)) assert matrix.shape == (nomk_len, nomk_len) expense_factor = ( diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/choose_variables_prediction.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/choose_variables_prediction.py index b7e43b76..e4c20735 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/choose_variables_prediction.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/choose_variables_prediction.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -""" +''' Created on Tue Jul 04 16:36:58 2017 @author: Thomas -""" +''' import statsmodels.formula.api as smf @@ -26,9 +26,9 @@ data_enl['revtot_2'] = data_enl['revtot'] ** 2 -""" +''' Predict froid -""" +''' regression = smf.ols(formula = 'froid ~ \ aides_logement + agepr + bat_av_49 + bat_49_74 + log_indiv + \ @@ -48,9 +48,9 @@ print(probit.summary()) -""" +''' Predict froid_cout -""" +''' regression = smf.ols(formula = 'froid_cout ~ \ aides_logement + agepr + bat_av_49 + bat_49_74 + log_indiv + \ diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/homogeneisation_bdf_enl.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/homogeneisation_bdf_enl.py index 134f96dd..0cb2c0b2 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/homogeneisation_bdf_enl.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/homogeneisation_bdf_enl.py @@ -22,16 +22,16 @@ ) survey_enl = enl_survey_collection.get_survey('enquete_logement_{}'.format(year_enl)) -input_enl = survey_enl.get_values(table = "menlogfm_diff") +input_enl = survey_enl.get_values(table = 'menlogfm_diff') # Load BdF data : year_bdf = 2011 -openfisca_survey_collection = SurveyCollection.load(collection = "openfisca_indirect_taxation") -openfisca_survey = openfisca_survey_collection.get_survey("openfisca_indirect_taxation_data_{}".format(year_bdf)) -input_data_frame = openfisca_survey.get_values(table = "input") +openfisca_survey_collection = SurveyCollection.load(collection = 'openfisca_indirect_taxation') +openfisca_survey = openfisca_survey_collection.get_survey('openfisca_indirect_taxation_data_{}'.format(year_bdf)) +input_data_frame = openfisca_survey.get_values(table = 'input') input_data_frame.reset_index(inplace = True) diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_1_build_dataframes.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_1_build_dataframes.py index 89e1e4c6..be35c3d0 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_1_build_dataframes.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_1_build_dataframes.py @@ -32,7 +32,7 @@ def load_data_bdf_enl(year_data): # Create variable for total spending liste_variables = input_bdf.columns.tolist() postes_agreges = ['poste_{}'.format(index) for index in - ["0{}".format(i) for i in range(1, 10)] + ["10", "11", "12"] + ['0{}'.format(i) for i in range(1, 10)] + ['10', '11', '12'] ] input_bdf['depenses_tot'] = 0 for element in liste_variables: @@ -185,5 +185,5 @@ def load_data_bdf_enl(year_data): return menage_enl_keep, conso_bdf_keep -if __name__ == "__main__": +if __name__ == '__main__': data_enl, data_bdf = load_data_bdf_enl() diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_2_homogenize_variables.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_2_homogenize_variables.py index 16fc480f..6d7ad4ea 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_2_homogenize_variables.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_2_homogenize_variables.py @@ -208,7 +208,7 @@ def homogenize_variables_definition_bdf_enl(year_data): 'tu2010': 'tuu', } - assert set(renaming.keys()) < set(data_enl.columns), "Missing {} in data_enl".format( + assert set(renaming.keys()) < set(data_enl.columns), 'Missing {} in data_enl'.format( set(renaming.keys()).difference(set(data_enl.columns)) ) data_enl.rename( @@ -381,5 +381,5 @@ def create_niveau_vie_quantiles_(data): return create_niveau_vie_quantiles_(data_enl), create_niveau_vie_quantiles_(data_bdf) -if __name__ == "__main__": +if __name__ == '__main__': data_enl, data_bdf = create_niveau_vie_quantiles() diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_3_1_compute_hellinger_distance.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_3_1_compute_hellinger_distance.py index 3c447506..d801220f 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_3_1_compute_hellinger_distance.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_3_1_compute_hellinger_distance.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -""" +''' Computing the Hellinger distance between two discrete probability distributions -""" +''' from openfisca_france_indirect_taxation.build_survey_data.matching_bdf_enl.step_2_homogenize_variables import \ create_niveau_vie_quantiles diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_3_2_compare_distributions.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_3_2_compare_distributions.py index d97f6e95..1fed0b3f 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_3_2_compare_distributions.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_3_2_compare_distributions.py @@ -12,7 +12,7 @@ from openfisca_france_indirect_taxation.build_survey_data.matching_bdf_enl.step_2_homogenize_variables import \ create_niveau_vie_quantiles -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) data_enl, data_bdf = create_niveau_vie_quantiles() diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_4_1_clean_data.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_4_1_clean_data.py index 77527d58..dca443c0 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_4_1_clean_data.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_4_1_clean_data.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -"""Création deux fichiers csv pour les deux bases de données homogènes BDF et ENL. +'''Création deux fichiers csv pour les deux bases de données homogènes BDF et ENL. Ils seront ensuite importées dans R pour l'appariement. On effectue au préalable les corrections nécessaires pour avoir des bases homogènes. -""" +''' import os diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_4_2_select_independent_variables.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_4_2_select_independent_variables.py index 7cee191a..1e3c437c 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_4_2_select_independent_variables.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_4_2_select_independent_variables.py @@ -1,11 +1,11 @@ # -*- coding: utf-8 -*- -""" +''' In this script we run a stepwise regression for the prediction of the variables we want to match. The objective is to select the independent variables with the largest predictive power. -""" +''' import statsmodels.formula.api as smf diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_5_1_test_hellinger_distance.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_5_1_test_hellinger_distance.py index 8c31c1bf..07bb2f67 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_5_1_test_hellinger_distance.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_enl/step_5_1_test_hellinger_distance.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -""" +''' Computing the Hellinger distance between two discrete probability distributions -""" +''' # Dans ce script, on test la qualité de l'appariement. diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_1_build_dataframes_menages.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_1_build_dataframes_menages.py index fc218e56..caa82964 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_1_build_dataframes_menages.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_1_build_dataframes_menages.py @@ -34,7 +34,7 @@ def load_data_menages_bdf_entd(year_data): # Create variable for total spending liste_variables = input_bdf.columns.tolist() postes_agreges = ['poste_{}'.format(index) for index in - ["0{}".format(i) for i in range(1, 10)] + ["10", "11", "12"] + ['0{}'.format(i) for i in range(1, 10)] + ['10', '11', '12'] ] input_bdf['depenses_tot'] = 0 for element in liste_variables: @@ -111,5 +111,5 @@ def load_data_menages_bdf_entd(year_data): return data_entd, menage_bdf_keep -if __name__ == "__main__": +if __name__ == '__main__': data_entd, data_bdf = load_data_menages_bdf_entd() diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_2_build_dataframes_vehicles.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_2_build_dataframes_vehicles.py index bd6413d8..e68a01d4 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_2_build_dataframes_vehicles.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_2_build_dataframes_vehicles.py @@ -136,8 +136,17 @@ def merge_vehicule_menage(): data_entd.loc[data_entd['autre_carbu'] == 1, 'distance_autre_carbu'] = data_entd['v1_km_annu'] # Df avec le nombre de véhicule et les distances pour chaque type de carburant - data_vehicule_entd = data_entd.groupby(by = 'ident_men')['essence', - 'diesel', 'autre_carbu', 'distance_essence', 'distance_diesel', 'distance_autre_carbu'].sum() + data_vehicule_entd = data_entd[ + [ + 'essence', + 'diesel', + 'autre_carbu', + 'distance_essence', + 'distance_diesel', + 'distance_autre_carbu', + 'ident_men', + ] + ].groupby(by = 'ident_men').sum() data_vehicule_entd = data_vehicule_entd.reset_index() # Df avec les infos du véhicule principal @@ -163,9 +172,17 @@ def merge_vehicule_menage(): data_bdf.loc[data_bdf['autre_carbu'] == 1, 'km_autre_carbu'] = data_bdf['km_auto'] # Df avec le nombre de véhicule et les distances pour chaque type de carburant - data_vehicule_bdf = data_bdf.groupby(by = 'ident_men')[ - 'essence', 'diesel', 'autre_carbu', 'km_essence', 'km_diesel', 'km_autre_carbu' - ].sum() + data_vehicule_bdf = data_bdf[ + [ + 'essence', + 'diesel', + 'autre_carbu', + 'km_essence', + 'km_diesel', + 'km_autre_carbu', + 'ident_men', + ] + ].groupby(by = 'ident_men').sum() data_vehicule_bdf = data_vehicule_bdf.reset_index() # Df avec les infos du véhicule principal @@ -220,5 +237,5 @@ def build_df_menages_vehicles(year_data): return data_entd, data_bdf -if __name__ == "__main__": +if __name__ == '__main__': data_entd, data_bdf = build_df_menages_vehicles() diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_3_build_dataframes_indiv_teg.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_3_build_dataframes_indiv_teg.py index a21ebcfb..234da846 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_3_build_dataframes_indiv_teg.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_1_3_build_dataframes_indiv_teg.py @@ -21,7 +21,7 @@ def load_data_indiv_teg(): variables_indiv_teg = [ 'distrteg', # Distance routière domicile – lieu de TEG (source Odomatrix Inra-Insee) (en km) 'ident_men', - 'noi', # numero de l'indiv dans le menage + 'noi', # numero de l'indiv dans le ménage 'typlieu', # numéro du lieu de travail pour l'indiv 'v1_btravbarf', # Nb de jours/sem. où X se rend à son lieu de travail étude ou garde (TEG), en gral 'v1_btravdist', @@ -89,5 +89,5 @@ def merge_indiv_teg_menage(year_data): return data_entd, data_bdf -if __name__ == "__main__": +if __name__ == '__main__': data_entd, data_bdf = merge_indiv_teg_menage() diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_2_homogenize_variables.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_2_homogenize_variables.py index 34d2219f..fb7da943 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_2_homogenize_variables.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_2_homogenize_variables.py @@ -96,7 +96,7 @@ def create_new_variables_(data, option = None): inplace = True ) - if option == "entd": + if option == 'entd': data['distance'] = data.distance_diesel + data.distance_essence + data.distance_autre_carbu return data @@ -135,5 +135,5 @@ def create_niveau_vie_quantiles_(data, option = None): return create_niveau_vie_quantiles_(data_entd, option = 'entd'), create_niveau_vie_quantiles_(data_bdf, option = 'bdf') -if __name__ == "__main__": +if __name__ == '__main__': data_entd, data_bdf = create_niveau_vie_quantiles() diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_3_1_compute_hellinger_distance.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_3_1_compute_hellinger_distance.py index e0178806..c7392abb 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_3_1_compute_hellinger_distance.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_3_1_compute_hellinger_distance.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -""" +''' Computing the Hellinger distance between two discrete probability distributions -""" +''' # To be completed : add missing variables diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_4_2_select_independent_variables.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_4_2_select_independent_variables.py index e5d0b6e7..d6e24dbc 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_4_2_select_independent_variables.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_4_2_select_independent_variables.py @@ -1,11 +1,11 @@ # -*- coding: utf-8 -*- -""" +''' In this script we run a stepwise regression for the prediction of the variables we want to match. The objective is to select the independent variables with the largest predictive power. -""" +''' import statsmodels.formula.api as smf diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_5_1_test_hellinger_distance.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_5_1_test_hellinger_distance.py index 15942673..d1a0da81 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_5_1_test_hellinger_distance.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_5_1_test_hellinger_distance.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -""" +''' Computing the Hellinger distance between two discrete probability distributions -""" +''' # Dans ce script, on test la qualité de l'appariement. diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_5_3_histograms.py b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_5_3_histograms.py index 210c9862..1e64df3f 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_5_3_histograms.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_bdf_entd/step_5_3_histograms.py @@ -15,7 +15,7 @@ from openfisca_france_indirect_taxation.utils import assets_directory -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) # Importation des bases de données appariées et de la base de référence entd diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_1_build_dataframes.py b/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_1_build_dataframes.py index ff58791c..b179bee4 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_1_build_dataframes.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_1_build_dataframes.py @@ -140,5 +140,5 @@ def load_data_bdf_erfs(year_data): return menages_erfs, menages_bdf -if __name__ == "__main__": +if __name__ == '__main__': data_erfs, data_bdf = load_data_bdf_erfs() diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_2_homogenize_variables.py b/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_2_homogenize_variables.py index 40223e50..3cc63055 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_2_homogenize_variables.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_2_homogenize_variables.py @@ -53,5 +53,5 @@ def homogenize_definitions(year_data): return data_erfs, data_bdf -if __name__ == "__main__": +if __name__ == '__main__': data_erfs, data_bdf = homogenize_definitions() diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_3_1_compute_hellinger_distance.py b/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_3_1_compute_hellinger_distance.py index 3c7d0a45..35ae3dd0 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_3_1_compute_hellinger_distance.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_3_1_compute_hellinger_distance.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -""" +''' Computing the Hellinger distance between two discrete probability distributions -""" +''' from openfisca_france_indirect_taxation.build_survey_data.matching_erfs.step_2_homogenize_variables import \ homogenize_definitions diff --git a/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_4_1_clean_data.py b/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_4_1_clean_data.py index 6e1bf851..90fb7a1d 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_4_1_clean_data.py +++ b/openfisca_france_indirect_taxation/build_survey_data/matching_erfs/step_4_1_clean_data.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- -"""Prépapration de deux fichiers .csv homogénéiser pour l'appariement via R de BDF et ERFS -""" +'''Prépapration de deux fichiers .csv homogénéiser pour l'appariement via R de BDF et ERFS +''' import os diff --git a/openfisca_france_indirect_taxation/build_survey_data/run_all.py b/openfisca_france_indirect_taxation/build_survey_data/run_all.py index 9ff34b93..126eef3d 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/run_all.py +++ b/openfisca_france_indirect_taxation/build_survey_data/run_all.py @@ -17,6 +17,7 @@ from openfisca_france_indirect_taxation.build_survey_data.step_1_1_homogeneisation_donnees_depenses \ import build_depenses_homogenisees + from openfisca_france_indirect_taxation.build_survey_data.step_1_2_imputations_loyers_proprietaires \ import build_imputation_loyers_proprietaires @@ -52,7 +53,7 @@ def run_all_steps(temporary_store = None, year_calage = 2017, skip_matching = Fa build_depenses_homogenisees(year = year_data) build_imputation_loyers_proprietaires(year = year_data) temporary_store.open() - depenses = temporary_store["depenses_bdf_{}".format(year_calage)] + depenses = temporary_store['depenses_bdf_{}'.format(year_calage)] depenses.index = depenses.index.astype(ident_men_dtype) temporary_store.close() @@ -77,7 +78,7 @@ def run_all_steps(temporary_store = None, year_calage = 2017, skip_matching = Fa # 4. Gestion des variables revenus: build_homogeneisation_revenus_menages(year = year_data) temporary_store.open() - revenus = temporary_store["revenus_{}".format(year_calage)] + revenus = temporary_store['revenus_{}'.format(year_calage)] revenus.index = revenus.index.astype(ident_men_dtype) temporary_store.close() @@ -93,7 +94,7 @@ def run_all_steps(temporary_store = None, year_calage = 2017, skip_matching = Fa 'Index is labelled {} instead of ident_men in data frame {} for year {}'.format( preprocessed_data_frame.index.name, name, year_data) assert len(preprocessed_data_frame) != 0, 'Empty data frame {}'.format(name) - assert preprocessed_data_frame.index.dtype == numpy.dtype('O'), "index for {} is {}".format( + assert preprocessed_data_frame.index.dtype == numpy.dtype('O'), 'index for {} is {}'.format( name, preprocessed_data_frame.index.dtype) data_frame = pandas.concat( @@ -123,7 +124,7 @@ def run_all_steps(temporary_store = None, year_calage = 2017, skip_matching = Fa data_frame['ident_men'] = data_frame['ident_men'] + 200500000 data_frame = data_frame.set_index('ident_men') - data_frame.index.name = "ident_men" + data_frame.index.name = 'ident_men' # TODO: Homogénéiser: soit faire en sorte que ident_men existe pour toutes les années soit qu'elle soit en index pour toutes @@ -149,9 +150,9 @@ def run_all_steps(temporary_store = None, year_calage = 2017, skip_matching = Fa ), sep =',', decimal = '.' ) except FileNotFoundError as e: - log.debug("Matching data with ENL and ENTD are not present") + log.debug('Matching data with ENL and ENTD are not present') log.debug(e) - log.debug("Skipping this step") + log.debug('Skipping this step') from openfisca_france_indirect_taxation.build_survey_data import step_5_data_from_matching data_matched = step_5_data_from_matching.main(year_data) @@ -179,9 +180,9 @@ def save(data_frame, year_data, year_calage): name = 'openfisca_indirect_taxation', config_files_directory = config_files_directory) output_data_directory = openfisca_survey_collection.config.get('data', 'output_directory') - survey_name = "openfisca_indirect_taxation_data_{}".format(year_calage) - table = "input" - hdf5_file_path = os.path.join(output_data_directory, "{}.h5".format(survey_name)) + survey_name = 'openfisca_indirect_taxation_data_{}'.format(year_calage) + table = 'input' + hdf5_file_path = os.path.join(output_data_directory, '{}.h5'.format(survey_name)) survey = Survey( name = survey_name, hdf5_file_path = hdf5_file_path, @@ -195,9 +196,9 @@ def run(years_calage, skip_matching = False): import time for year_calage in years_calage: start = time.time() - log.info(f"Starting year = {year_calage}") + log.info(f'Starting year = {year_calage}') run_all_steps(year_calage = year_calage, skip_matching = skip_matching) - log.info(f"Finished in {(time.time() - start)} for year = {year_calage}") + log.info(f'Finished in {(time.time() - start)} for year = {year_calage}') if __name__ == '__main__': diff --git a/openfisca_france_indirect_taxation/build_survey_data/step_1_1_homogeneisation_donnees_depenses.py b/openfisca_france_indirect_taxation/build_survey_data/step_1_1_homogeneisation_donnees_depenses.py index ac430e58..aeba06d2 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/step_1_1_homogeneisation_donnees_depenses.py +++ b/openfisca_france_indirect_taxation/build_survey_data/step_1_1_homogeneisation_donnees_depenses.py @@ -15,8 +15,8 @@ @temporary_store_decorator(config_files_directory = config_files_directory, file_name = 'indirect_taxation_tmp') def build_depenses_homogenisees(temporary_store = None, year = None): - """Build menage consumption by categorie fiscale dataframe.""" - log.debug(f"Entering build_depenses_homogenisees for year={year}") + '''Build menage consumption by categorie fiscale dataframe.''' + log.debug(f'Entering build_depenses_homogenisees for year={year}') assert temporary_store is not None temporary_store.open() assert year is not None @@ -27,7 +27,7 @@ def build_depenses_homogenisees(temporary_store = None, year = None): # Homogénéisation des bases de données de dépenses if year == 1995: - socioscm = survey.get_values(table = "socioscm") + socioscm = survey.get_values(table = 'socioscm') poids = socioscm[['mena', 'ponderrd', 'exdep', 'exrev']] # cette étape de ne garder que les données dont on est sûr de la qualité et de la véracité # exdep = 1 si les données sont bien remplies pour les dépenses du ménage @@ -43,9 +43,9 @@ def build_depenses_homogenisees(temporary_store = None, year = None): ) poids.set_index('ident_men', inplace = True) - conso = survey.get_values(table = "depnom") - conso = conso[["valeur", "montant", "mena", "nomen5"]] - conso = conso.groupby(["mena", "nomen5"]).sum() + conso = survey.get_values(table = 'depnom') + conso = conso[['valeur', 'montant', 'mena', 'nomen5']] + conso = conso.groupby(['mena', 'nomen5']).sum() conso = conso.reset_index() conso.rename( columns = { @@ -73,7 +73,7 @@ def build_depenses_homogenisees(temporary_store = None, year = None): conso = conso.reset_index() if year == 2000: - conso = survey.get_values(table = "consomen") + conso = survey.get_values(table = 'consomen') conso.rename( columns = { 'ident': 'ident_men', @@ -81,15 +81,15 @@ def build_depenses_homogenisees(temporary_store = None, year = None): inplace = True, ) for variable in ['ctotale', 'c99', 'c99999'] + \ - ["c0{}".format(i) for i in range(1, 10)] + \ - ["c{}".format(i) for i in range(10, 14)]: + ['c0{}'.format(i) for i in range(1, 10)] + \ + ['c{}'.format(i) for i in range(10, 14)]: del conso[variable] if year == 2005: - conso = survey.get_values(table = "c05d") + conso = survey.get_values(table = 'c05d') if year == 2011 or year == 2017: - conso = survey.get_values(table = "c05", ignorecase = True) + conso = survey.get_values(table = 'c05', ignorecase = True) conso.rename( columns = { 'ident_me': 'ident_men', @@ -130,4 +130,4 @@ def build_depenses_homogenisees(temporary_store = None, year = None): deb = time.process_time()() year = 2017 build_depenses_homogenisees(year = year) - log.info("duration is {}".format(time.process_time()() - deb)) + log.info('duration is {}'.format(time.process_time()() - deb)) diff --git a/openfisca_france_indirect_taxation/build_survey_data/step_1_2_imputations_loyers_proprietaires.py b/openfisca_france_indirect_taxation/build_survey_data/step_1_2_imputations_loyers_proprietaires.py index ab9b3720..dda473fd 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/step_1_2_imputations_loyers_proprietaires.py +++ b/openfisca_france_indirect_taxation/build_survey_data/step_1_2_imputations_loyers_proprietaires.py @@ -18,7 +18,7 @@ @temporary_store_decorator(config_files_directory = config_files_directory, file_name = 'indirect_taxation_tmp') def build_imputation_loyers_proprietaires(temporary_store = None, year = None): - """Impute rent for owner""" + '''Impute rent for owner''' assert temporary_store is not None temporary_store.open() assert year is not None @@ -29,7 +29,7 @@ def build_imputation_loyers_proprietaires(temporary_store = None, year = None): survey = bdf_survey_collection.get_survey('budget_des_familles_{}'.format(year)) if year == 1995: - imput00 = survey.get_values(table = "socioscm") + imput00 = survey.get_values(table = 'socioscm') # cette étape permet de ne garder que les données dont on est sûr de la qualité et de la véracité # exdep = 1 si les données sont bien remplies pour les dépenses du ménage # exrev = 1 si les données sont bien remplies pour les revenus du ménage @@ -82,7 +82,7 @@ def build_imputation_loyers_proprietaires(temporary_store = None, year = None): config_ini = os.path.join(config_files_directory, 'config.ini') parser.read([config_ini]) directory_path = os.path.normpath( - parser.get("openfisca_france_indirect_taxation", "assets") + parser.get('openfisca_france_indirect_taxation', 'assets') ) hotdeck = pandas.read_stata(os.path.join(directory_path, 'hotdeck_result.dta')) except Exception: @@ -100,7 +100,7 @@ def build_imputation_loyers_proprietaires(temporary_store = None, year = None): # Pour bdf 2000 et 2005, on utilise les loyers imputes calcules par l'insee if year == 2000: # Garder les loyers imputés (disponibles dans la table sur les ménages) - loyers_imputes = survey.get_values(table = "menage", variables = ['ident', 'rev81']) + loyers_imputes = survey.get_values(table = 'menage', variables = ['ident', 'rev81']) loyers_imputes.rename( columns = { 'ident': 'ident_men', @@ -111,13 +111,13 @@ def build_imputation_loyers_proprietaires(temporary_store = None, year = None): if year == 2005: # Garder les loyers imputés (disponibles dans la table sur les ménages) - loyers_imputes = survey.get_values(table = "menage") + loyers_imputes = survey.get_values(table = 'menage') kept_variables = ['ident_men', 'rev801_d'] loyers_imputes = loyers_imputes[kept_variables] loyers_imputes.rename(columns = {'rev801_d': 'poste_04_2_1'}, inplace = True) if year in [2011, 2017]: - loyers_imputes = survey.get_values(table = "menage", ignorecase = True) + loyers_imputes = survey.get_values(table = 'menage', ignorecase = True) kept_variables = ['ident_men', 'rev801'] loyers_imputes = loyers_imputes[kept_variables].copy() @@ -155,4 +155,4 @@ def build_imputation_loyers_proprietaires(temporary_store = None, year = None): deb = time.process_time()() year = 1995 build_imputation_loyers_proprietaires(year = year) - log.info("step 0_1_2_build_imputation_loyers_proprietaires duration is {}".format(time.process_time()() - deb)) + log.info('step 0_1_2_build_imputation_loyers_proprietaires duration is {}'.format(time.process_time()() - deb)) diff --git a/openfisca_france_indirect_taxation/build_survey_data/step_1_enl.py b/openfisca_france_indirect_taxation/build_survey_data/step_1_enl.py index f8a328cb..03640a4f 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/step_1_enl.py +++ b/openfisca_france_indirect_taxation/build_survey_data/step_1_enl.py @@ -12,114 +12,114 @@ ) survey = bdf_survey_collection.get_survey('enquete_logement_{}'.format(year)) -menage = survey.get_values(table = "menlogfm_diff") +menage = survey.get_values(table = 'menlogfm_diff') variables_to_keep = [ - "aba", - "aenq", - "amr", - "cataeu2010", - "cceml", - "cfn2", - "coml", - "coml11", - "coml12", - "coml13", - "coml2", - "coml3", - "coml41", - "coml42", - "dep_idf", - "dom", - "enfhod", + 'aba', + 'aenq', + 'amr', + 'cataeu2010', + 'cceml', + 'cfn2', + 'coml', + 'coml11', + 'coml12', + 'coml13', + 'coml2', + 'coml3', + 'coml41', + 'coml42', + 'dep_idf', + 'dom', + 'enfhod', # "eq_chauf", # "eq_combu", # "eq_nb_vo", - "fchauf", - "fpbel", - "gchauf_1", - "gchauf_2", - "gchauf_3", - "gchauf_4", - "gchauf_5", - "gchauf_6", - "gchauf_7", - "gchauf_n", - "gchaufbis", - "gchaufs_1", - "gchaufs_2", - "gchaufs_3", - "gchaufs_4", - "gchaufs_5", - "gmoy1", - "gmoy2", - "gmur", - "gtoit2", - "gtt1", - "gtt2", - "gvit1", - "gvit1b", - "gzc2", - "hautb", - "hnph1", - "hsh1", - "htl", - "iaat", - "iaatcd", - "idlog", - "kair", - "kbst", - "kcui_1", - "kcui_2", - "kcui_3", - "kcui_4", - "kcui_5", - "kcui_6", - "kcui_n", - "kdep", - "kmod_p", - "kren", - "ktps", - "ktransb", - "lchauf", - "lmlm", - "lmobis", - "lpba", - "mag", - "mcs", - "mcs14", - "mcsc", - "mdiplo", - "mdiploc", - "menq", - "mne1", - "mpa", - "mrtota3", - "msitua", - "msituac", - "mtyad", - "muc1", - "qex", - "ren_n", - "rg", - "rmact", - "tau2010", - "tu2010", - "zeat", - "zus" + 'fchauf', + 'fpbel', + 'gchauf_1', + 'gchauf_2', + 'gchauf_3', + 'gchauf_4', + 'gchauf_5', + 'gchauf_6', + 'gchauf_7', + 'gchauf_n', + 'gchaufbis', + 'gchaufs_1', + 'gchaufs_2', + 'gchaufs_3', + 'gchaufs_4', + 'gchaufs_5', + 'gmoy1', + 'gmoy2', + 'gmur', + 'gtoit2', + 'gtt1', + 'gtt2', + 'gvit1', + 'gvit1b', + 'gzc2', + 'hautb', + 'hnph1', + 'hsh1', + 'htl', + 'iaat', + 'iaatcd', + 'idlog', + 'kair', + 'kbst', + 'kcui_1', + 'kcui_2', + 'kcui_3', + 'kcui_4', + 'kcui_5', + 'kcui_6', + 'kcui_n', + 'kdep', + 'kmod_p', + 'kren', + 'ktps', + 'ktransb', + 'lchauf', + 'lmlm', + 'lmobis', + 'lpba', + 'mag', + 'mcs', + 'mcs14', + 'mcsc', + 'mdiplo', + 'mdiploc', + 'menq', + 'mne1', + 'mpa', + 'mrtota3', + 'msitua', + 'msituac', + 'mtyad', + 'muc1', + 'qex', + 'ren_n', + 'rg', + 'rmact', + 'tau2010', + 'tu2010', + 'zeat', + 'zus' ] menage_to_keep = menage[variables_to_keep] -menage_comp = survey.get_values(table = "menlogfm_comp_diff") +menage_comp = survey.get_values(table = 'menlogfm_comp_diff') variables_to_keep_comp = [ - "eq_chauf", - "eq_combu", - "eq_nb_vo", - "idlog", + 'eq_chauf', + 'eq_combu', + 'eq_nb_vo', + 'idlog', # "rmact", - "totreven", + 'totreven', ] menage_comp_to_keep = menage_comp[variables_to_keep_comp] diff --git a/openfisca_france_indirect_taxation/build_survey_data/step_1_entd.py b/openfisca_france_indirect_taxation/build_survey_data/step_1_entd.py index 748e7288..2090655a 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/step_1_entd.py +++ b/openfisca_france_indirect_taxation/build_survey_data/step_1_entd.py @@ -10,4 +10,4 @@ collection = 'enquete_transports', config_files_directory = config_files_directory ) survey = bdf_survey_collection.get_survey('enquete_transports_{}'.format(year)) -menage_transports = survey.get_values(table = "q_menage") +menage_transports = survey.get_values(table = 'q_menage') diff --git a/openfisca_france_indirect_taxation/build_survey_data/step_2_homogeneisation_vehicules.py b/openfisca_france_indirect_taxation/build_survey_data/step_2_homogeneisation_vehicules.py index 26aea8f6..7077cf79 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/step_2_homogeneisation_vehicules.py +++ b/openfisca_france_indirect_taxation/build_survey_data/step_2_homogeneisation_vehicules.py @@ -22,7 +22,7 @@ @temporary_store_decorator(config_files_directory = config_files_directory, file_name = 'indirect_taxation_tmp') def build_homogeneisation_vehicules(temporary_store = None, year = None): - """Compute vehicule numbers by type""" + '''Compute vehicule numbers by type''' assert temporary_store is not None temporary_store.open() assert year is not None @@ -37,49 +37,49 @@ def build_homogeneisation_vehicules(temporary_store = None, year = None): # L'enquête BdF 1995 ne contient pas d'information sur le type de carburant utilisé par les véhicules. if year == 2000: - vehicule = survey.get_values(table = "depmen") + vehicule = survey.get_values(table = 'depmen') kept_variables = ['ident', 'carbu01', 'carbu02'] vehicule = vehicule[kept_variables].copy() vehicule.rename(columns = {'ident': 'ident_men'}, inplace = True) vehicule.rename(columns = {'carbu01': 'carbu1'}, inplace = True) vehicule.rename(columns = {'carbu02': 'carbu2'}, inplace = True) - vehicule["veh_tot"] = 1 - vehicule["veh_essence"] = 1 * (vehicule['carbu1'] == 1) + 1 * (vehicule['carbu2'] == 1) - vehicule["veh_diesel"] = 1 * (vehicule['carbu1'] == 2) + 1 * (vehicule['carbu2'] == 2) + vehicule['veh_tot'] = 1 + vehicule['veh_essence'] = 1 * (vehicule['carbu1'] == 1) + 1 * (vehicule['carbu2'] == 1) + vehicule['veh_diesel'] = 1 * (vehicule['carbu1'] == 2) + 1 * (vehicule['carbu2'] == 2) vehicule.index = vehicule.index.astype(ident_men_dtype) if year in [2005, 2011, 2017]: - vehicule = survey.get_values(table = "automobile", ignorecase = True) + vehicule = survey.get_values(table = 'automobile', ignorecase = True) if year == 2005: vehicule = vehicule[ ['ident_men', 'carbu'] ].copy() - vehicule["veh_tot"] = 1 - vehicule["veh_essence"] = vehicule['carbu'] == 1 - vehicule["veh_diesel"] = vehicule['carbu'] == 2 + vehicule['veh_tot'] = 1 + vehicule['veh_essence'] = vehicule['carbu'] == 1 + vehicule['veh_diesel'] = vehicule['carbu'] == 2 if year == 2011: kept_variables = ['ident_men', 'carbu'] vehicule = vehicule.rename( columns = {'ident_me': 'ident_men'}, )[kept_variables].copy() - vehicule["veh_tot"] = 1 - vehicule["veh_essence"] = vehicule['carbu'] == 1 - vehicule["veh_diesel"] = vehicule['carbu'] == 2 + vehicule['veh_tot'] = 1 + vehicule['veh_essence'] = vehicule['carbu'] == 1 + vehicule['veh_diesel'] = vehicule['carbu'] == 2 if year == 2017: - vehicule["veh_tot"] = 1 - vehicule["veh_essence"] = vehicule['carbu1'] == 1 - vehicule["veh_diesel"] = vehicule['carbu2'] == 1 - vehicule["veh_gpl"] = vehicule['carbu3'] == 1 - vehicule["veh_electrique"] = vehicule['carbu4'] == 1 - vehicule["veh_autre"] = vehicule['carbu5'] == 1 + vehicule['veh_tot'] = 1 + vehicule['veh_essence'] = vehicule['carbu1'] == 1 + vehicule['veh_diesel'] = vehicule['carbu2'] == 1 + vehicule['veh_gpl'] = vehicule['carbu3'] == 1 + vehicule['veh_electrique'] = vehicule['carbu4'] == 1 + vehicule['veh_autre'] = vehicule['carbu5'] == 1 # Compute the number of cars by category and save # Ignore GPL, electric and others than essence and diesel - vehicule = vehicule.groupby(by = 'ident_men')[["veh_tot", "veh_essence", "veh_diesel"]].sum() - vehicule["pourcentage_vehicule_essence"] = 0 + vehicule = vehicule.groupby(by = 'ident_men')[['veh_tot', 'veh_essence', 'veh_diesel']].sum() + vehicule['pourcentage_vehicule_essence'] = 0 vehicule.loc[vehicule.veh_tot != 0, 'pourcentage_vehicule_essence'] = vehicule.veh_essence / vehicule.veh_tot # Save in temporary store vehicule.index = vehicule.index.astype(ident_men_dtype) @@ -94,4 +94,4 @@ def build_homogeneisation_vehicules(temporary_store = None, year = None): deb = time.process_time()() year = 2005 build_homogeneisation_vehicules(year = year) - log.info("step 0_2_homogeneisation_vehicules duration is {}".format(time.process_time()() - deb)) + log.info('step 0_2_homogeneisation_vehicules duration is {}'.format(time.process_time()() - deb)) diff --git a/openfisca_france_indirect_taxation/build_survey_data/step_3_homogeneisation_caracteristiques_menages.py b/openfisca_france_indirect_taxation/build_survey_data/step_3_homogeneisation_caracteristiques_menages.py index c41e0b4c..0cffc453 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/step_3_homogeneisation_caracteristiques_menages.py +++ b/openfisca_france_indirect_taxation/build_survey_data/step_3_homogeneisation_caracteristiques_menages.py @@ -15,7 +15,7 @@ @temporary_store_decorator(config_files_directory = config_files_directory, file_name = 'indirect_taxation_tmp') def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year = None): - """Homogénéisation des caractéristiques sociales des ménages.""" + '''Homogénéisation des caractéristiques sociales des ménages.''' assert temporary_store is not None temporary_store.open() assert year is not None @@ -28,7 +28,7 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year kept_variables = ['exdep', 'exrev', 'mena', 'v', 'ponderrd', 'nbpers', 'nbenf', 'typmen1', 'cohabpr', 'sexepr', 'agepr', 'agecj', 'matripr', 'occuppr', 'occupcj', 'nbact', 'sitlog', 'stalog', 'mena', 'nm14a', 'typmen1'] menage = survey.get_values( - table = "socioscm", + table = 'socioscm', variables = kept_variables, ) # cette étape permet de ne garder que les données dont on est sûr de la qualité et de la véracité @@ -79,7 +79,7 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year # 2. Reformatage des variables (réattribution des catégories pour quelles soient identiques # pour les différentes années) - menage["situacj"] = 0 + menage['situacj'] = 0 menage.situacj[menage.occupcj == 1] = 1 menage.situacj[menage.occupcj == 3] = 3 menage.situacj[menage.occupcj == 2] = 4 @@ -89,7 +89,7 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year menage.situacj[menage.occupcj == 8] = 7 menage.situacj[menage.occupcj == 4] = 8 - menage["situapr"] = 0 + menage['situapr'] = 0 menage.situapr[menage.occuppr == 1] = 1 menage.situapr[menage.occuppr == 3] = 3 menage.situapr[menage.occuppr == 2] = 4 @@ -99,14 +99,14 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year menage.situapr[menage.occuppr == 8] = 7 menage.situapr[menage.occuppr == 4] = 8 - menage["typlog"] = 0 + menage['typlog'] = 0 menage.typlog[menage.sitlog == 1] = 1 menage.typlog[menage.sitlog != 1] = 2 menage['stalog'] = menage['stalog'].astype(int) individus = survey.get_values( - table = "individu", + table = 'individu', ) variables = ['mena', 'v'] individus.rename( @@ -117,7 +117,7 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year if year == 2000: menage = survey.get_values( - table = "menage", + table = 'menage', variables = [ 'ident', 'pondmen', 'nbact', 'nbenf1', 'nbpers', 'ocde10', 'sitlog', 'stalog', 'strate', 'typmen1', 'zeat', 'stalog', 'vag', 'sexepr', 'sexecj', 'agecj', 'napr', 'nacj', 'cs2pr', @@ -168,13 +168,13 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year del menage['typmen_'] menage.couplepr = menage.couplepr.astype('int') - menage["nadultes"] = menage['npers'] - menage['nenfants'] + menage['nadultes'] = menage['npers'] - menage['nenfants'] menage.typmen = menage.typmen.astype('int') # occupa : 1 si la personne travaille, 2 sinon. occupb : 1 si elle travaille effectivement, 2 si congé de # longue durée (négligé ici). occupc : de 2 à 8 selon le statut si ne travaille pas (étudiant, retraité, etc.) - menage["situacj"] = 0 + menage['situacj'] = 0 menage.situacj.loc[menage.occupacj == 1] = 1 menage.situacj.loc[menage.occupccj == 3] = 3 menage.situacj.loc[menage.occupccj == 2] = 4 @@ -184,7 +184,7 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year menage.situacj.loc[menage.occupccj == 8] = 7 menage.situacj.loc[menage.occupccj == 4] = 8 - menage["situapr"] = 0 + menage['situapr'] = 0 menage.situapr.loc[menage.occupapr == 1] = 1 menage.situapr.loc[menage.occupcpr == 3] = 3 menage.situapr.loc[menage.occupcpr == 2] = 4 @@ -194,8 +194,8 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year menage.situapr.loc[menage.occupcpr == 8] = 7 menage.situapr.loc[menage.occupcpr == 4] = 8 - menage["natiocj"] = 0 - menage["natiopr"] = 0 + menage['natiocj'] = 0 + menage['natiopr'] = 0 menage.natiocj.loc[menage.nacj == 1] = 1 menage.natiocj.loc[menage.nacj == 2] = 1 menage.natiocj.loc[menage.nacj == 3] = 2 @@ -203,12 +203,12 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year menage.natiopr.loc[menage.napr == 2] = 1 menage.natiopr.loc[menage.napr == 3] = 2 - menage["typlog"] = 0 + menage['typlog'] = 0 menage.typlog.loc[menage.sitlog == 1] = 1 menage.typlog.loc[menage.sitlog != 1] = 2 # Homogénéisation des diplômes, choix d'équivalence entre les diplômes - menage["dip14pr"] = 999999 + menage['dip14pr'] = 999999 menage.dip14pr.loc[menage.diegpr == 0] = 71 menage.dip14pr.loc[menage.diegpr == 2] = 70 menage.dip14pr.loc[menage.diegpr == 15] = 60 @@ -243,9 +243,9 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year assert menage.zeat.isin(list(range(1, 9))).all() try: - depmen = survey.get_values(table = "DEPMEN", ignorecase = True) + depmen = survey.get_values(table = 'DEPMEN', ignorecase = True) except Exception: - depmen = survey.get_values(table = "depmen") + depmen = survey.get_values(table = 'depmen') depmen.rename(columns = {'ident': 'ident_men'}, inplace = True) sourcp = depmen[['sourcp', 'ident_men']].copy() @@ -255,7 +255,7 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year menage = menage.merge(sourcp, left_index = True, right_index = True) individus = survey.get_values( - table = "individus", + table = 'individus', variables = ['ident', 'matri', 'lien', 'anais'] ) @@ -276,7 +276,7 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year menage = menage.merge(individus, left_index = True, right_index = True) if year == 2005: - menage = survey.get_values(table = "menage") + menage = survey.get_values(table = 'menage') # données socio-démographiques socio_demo_variables = [ 'agpr', @@ -308,9 +308,9 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year menage.rename( columns = { # "agpr": "agepr", - "agcj": "agecj", - "typmen5": "typmen", - "cs24pr": "cs_pr" + 'agcj': 'agecj', + 'typmen5': 'typmen', + 'cs24pr': 'cs_pr' }, inplace = True, ) @@ -347,7 +347,7 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year assert menage.zeat.isin(list(range(1, 9))).all() - stalog = survey.get_values(table = "depmen", variables = ['ident_men', 'stalog']) + stalog = survey.get_values(table = 'depmen', variables = ['ident_men', 'stalog']) stalog['stalog'] = stalog.stalog.astype('int').copy() stalog['new_stalog'] = 0 stalog.loc[stalog.stalog == 2, 'new_stalog'] = 1 @@ -366,7 +366,7 @@ def build_homogeneisation_caracteristiques_sociales(temporary_store = None, year assert menage.typlog.isin([1, 2]).all() del menage['htl'] - sourcp = survey.get_values(table = "depmen", variables = ['ident_men', 'sourcp']) + sourcp = survey.get_values(table = 'depmen', variables = ['ident_men', 'sourcp']) sourcp.set_index('ident_men', inplace = True) menage = menage.merge(sourcp, left_index = True, right_index = True) @@ -401,8 +401,8 @@ def add_col_numero(data_frame): return data_frame individus = individus.groupby(by = 'ident_men').apply(add_col_numero) - pivoted = individus.pivot(index = 'ident_men', columns = "numero", values = 'age') - pivoted.columns = ["age{}".format(column) for column in pivoted.columns] + pivoted = individus.pivot(index = 'ident_men', columns = 'numero', values = 'age') + pivoted.columns = ['age{}'.format(column) for column in pivoted.columns] menage = menage.merge(pivoted, left_index = True, right_index = True, how = 'outer') individus = survey.get_values( @@ -537,30 +537,30 @@ def add_col_numero(data_frame): menage['cs24pr'] = 0 csp42s_by_csp24 = { - 10: ["11", "12", "13"], - 21: ["21"], - 22: ["22"], - 23: ["23"], - 31: ["31"], - 32: ["32", "33", "34", "35"], - 36: ["37", "38"], - 41: ["42", "43", "44", "45"], - 46: ["46"], - 47: ["47"], - 48: ["48"], - 51: ["52", "53"], - 54: ["54"], - 55: ["55"], - 56: ["56"], - 61: ["62", "63", "64", "65"], - 66: ["67", "68"], - 69: ["69"], - 71: ["71"], - 72: ["72"], - 73: ["74", "75"], - 76: ["77", "78"], - 81: ["81"], - 82: ["83", "84", "85", "86", "**", "00"], + 10: ['11', '12', '13'], + 21: ['21'], + 22: ['22'], + 23: ['23'], + 31: ['31'], + 32: ['32', '33', '34', '35'], + 36: ['37', '38'], + 41: ['42', '43', '44', '45'], + 46: ['46'], + 47: ['47'], + 48: ['48'], + 51: ['52', '53'], + 54: ['54'], + 55: ['55'], + 56: ['56'], + 61: ['62', '63', '64', '65'], + 66: ['67', '68'], + 69: ['69'], + 71: ['71'], + 72: ['72'], + 73: ['74', '75'], + 76: ['77', '78'], + 81: ['81'], + 82: ['83', '84', '85', '86', '**', '00'], } for csp24, csp42s in list(csp42s_by_csp24.items()): menage.loc[menage.cs42pr.isin(csp42s), 'cs24pr'] = csp24 @@ -573,10 +573,10 @@ def add_col_numero(data_frame): 'pondmen', 'npers', 'nenfants', 'nenfhors', 'nadultes', 'nactifs', 'ocde10', 'typmen', 'sexepr', 'agepr', 'etamatri', 'couplepr', 'situapr', 'dip14pr', 'cs42pr', 'cs24pr', 'cs8pr', 'natiopr', 'sexecj', 'agecj', 'situacj', 'dip14cj', 'cs42cj', 'natiocj', 'typlog', 'stalog' - ] + ["age{}".format(age) for age in range(3, 14)] + ] + ['age{}'.format(age) for age in range(3, 14)] for variable in variables: - assert variable in menage.columns, "{} is not a column of menage data frame".format(variable) + assert variable in menage.columns, '{} is not a column of menage data frame'.format(variable) if year in [2011, 2017]: variables = [ @@ -610,7 +610,7 @@ def add_col_numero(data_frame): if year == 2017: variables.append('dnivie1') - menage = survey.get_values(table = "menage", variables = variables, ignorecase = True) + menage = survey.get_values(table = 'menage', variables = variables, ignorecase = True) menage.rename( columns = { @@ -660,12 +660,12 @@ def add_col_numero(data_frame): 'vag', ] - depmen = survey.get_values(table = "depmen", variables = variables_depmen, ignorecase = True) + depmen = survey.get_values(table = 'depmen', variables = variables_depmen, ignorecase = True) menage.set_index('ident_men', inplace = True) depmen.set_index('ident_men', inplace = True) variables_sante = ['ident_men', 'complentr'] - compl_sante = survey.get_values(table = "compl_sante", variables = variables_sante, ignorecase = True) + compl_sante = survey.get_values(table = 'compl_sante', variables = variables_sante, ignorecase = True) compl_sante.set_index('ident_men', inplace = True) @@ -752,4 +752,4 @@ def add_col_numero(data_frame): year = 2011 build_homogeneisation_caracteristiques_sociales(year = year) - log.info("step_3_homogeneisation_caracteristiques_sociales {}".format(time.process_time()() - deb)) + log.info('step_3_homogeneisation_caracteristiques_sociales {}'.format(time.process_time()() - deb)) diff --git a/openfisca_france_indirect_taxation/build_survey_data/step_4_homogeneisation_revenus_menages.py b/openfisca_france_indirect_taxation/build_survey_data/step_4_homogeneisation_revenus_menages.py index 0bb816f6..dfef2881 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/step_4_homogeneisation_revenus_menages.py +++ b/openfisca_france_indirect_taxation/build_survey_data/step_4_homogeneisation_revenus_menages.py @@ -16,7 +16,7 @@ @temporary_store_decorator(config_files_directory = config_files_directory, file_name = 'indirect_taxation_tmp') def build_homogeneisation_revenus_menages(temporary_store = None, year = None): - """Build menage consumption by categorie fiscale dataframe """ + '''Build menage consumption by categorie fiscale dataframe ''' assert temporary_store is not None temporary_store.open() @@ -35,7 +35,7 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): # La base 95 permet de distinguer taxe d'habitation et impôts fonciers. # On calcule leur montant relatif pour l'appliquer à 00 et 05 menrev = survey.get_values( - table = "menrev", + table = 'menrev', variables = [ 'impfon', 'imphab', @@ -58,7 +58,7 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): ], ) menage = survey.get_values( - table = "socioscm", + table = 'socioscm', variables = ['exdep', 'exrev', 'mena'] ) @@ -83,24 +83,24 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): menrev['revact'] = menrev['revsal'] + menrev['revind'] + menrev['revsec'] menrev.rename( columns = dict( - revpat = "revpat", - impfon = "impfon", - imphab = "imphab", - revaid = "somme_obl_recue", + revpat = 'revpat', + impfon = 'impfon', + imphab = 'imphab', + revaid = 'somme_obl_recue', ), inplace = True ) menrev['impot_revenu'] = menrev['ir'] + menrev['irbis'] rev_disp = survey.get_values( - table = "menrev", + table = 'menrev', variables = ['revtot', 'revret', 'revcho', 'revfam', 'revlog', 'revinv', 'revrmi', 'imphab', 'impfon', 'revaid', 'revsal', 'revind', 'revsec', 'revpat', 'mena', 'ponderr', 'ir', 'irbis'], ) rev_disp.set_index('mena', inplace=True) menage2 = survey.get_values( - table = "socioscm", + table = 'socioscm', variables = ['exdep', 'exrev', 'mena'] ) @@ -129,11 +129,11 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): rev_disp.rename( columns = dict( - ponderr = "pondmen", - mena = "ident_men", - revind = "act_indpt", - revsal = "salaires", - revsec = "autres_rev", + ponderr = 'pondmen', + mena = 'ident_men', + revind = 'act_indpt', + revsal = 'salaires', + revsec = 'autres_rev', ), inplace = True ) @@ -149,7 +149,7 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): rev_disp['rev_disponible'] = rev_disp.revtot - rev_disp.impot_revenu - rev_disp.imphab loyers_imputes = temporary_store['depenses_bdf_{}'.format(year)] loyers_imputes.rename( - columns = {"0411": "loyer_impute"}, + columns = {'0411': 'loyer_impute'}, inplace = True, ) @@ -160,36 +160,36 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): 'imphab', 'revsoc', 'revact', 'impot_revenu', 'revtot', 'rev_disp_loyerimput']: rev_disp[var] = rev_disp[var] / 6.55957 # CONVERSION EN EUROS - temporary_store["revenus_{}".format(year)] = rev_disp + temporary_store['revenus_{}'.format(year)] = rev_disp elif year == 2000: # TODO: récupérer plutôt les variables qui viennent de la table dépenses (dans temporary_store) rev_disp = survey.get_values( - table = "consomen", + table = 'consomen', variables = ['c13141', 'c13111', 'c13121', 'c13131', 'pondmen', 'ident'], ) menage = survey.get_values( - table = "menage", + table = 'menage', variables = ['ident', 'revtot', 'revact', 'revsoc', 'revpat', 'rev70', 'rev71', 'revt_d', 'pondmen', 'rev10', 'rev11', 'rev20', 'rev21'], ).sort_values(by = ['ident']) menage.index = menage.index.astype(ident_men_dtype) rev_disp.index = rev_disp.index.astype(ident_men_dtype) - revenus = menage.join(rev_disp, how = "outer", rsuffix = "rev_disp") + revenus = menage.join(rev_disp, how = 'outer', rsuffix = 'rev_disp') revenus.fillna(0, inplace = True) revenus.rename( columns = dict( - c13111 = "impot_res_ppal", - c13141 = "impot_revenu", - c13121 = "impot_autres_res", - rev70 = "somme_obl_recue", - rev71 = "somme_libre_recue", - revt_d = "autres_ress", - ident = "ident_men", - rev10 = "act_indpt", - rev11 = "autoverses", - rev20 = "salaires", - rev21 = "autres_rev", + c13111 = 'impot_res_ppal', + c13141 = 'impot_revenu', + c13121 = 'impot_autres_res', + rev70 = 'somme_obl_recue', + rev71 = 'somme_libre_recue', + revt_d = 'autres_ress', + ident = 'ident_men', + rev10 = 'act_indpt', + rev11 = 'autoverses', + rev20 = 'salaires', + rev21 = 'autres_rev', ), inplace = True ) @@ -202,16 +202,16 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): revenus['imphab'] = 0.65 * (revenus.impot_res_ppal + revenus.impot_autres_res) revenus['impfon'] = 0.35 * (revenus.impot_res_ppal + revenus.impot_autres_res) - loyers_imputes = temporary_store["depenses_bdf_{}".format(year)] - variables = ["poste_04_2_1"] + loyers_imputes = temporary_store['depenses_bdf_{}'.format(year)] + variables = ['poste_04_2_1'] loyers_imputes = loyers_imputes[variables] loyers_imputes.rename( - columns = {"poste_04_2_1": "loyer_impute"}, + columns = {'poste_04_2_1': 'loyer_impute'}, inplace = True, ) - temporary_store["loyers_imputes_{}".format(year)] = loyers_imputes + temporary_store['loyers_imputes_{}'.format(year)] = loyers_imputes loyers_imputes.index = loyers_imputes.index.astype(ident_men_dtype) revenus.set_index('ident_men', inplace = True) @@ -226,17 +226,17 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): for var_to_int in var_to_ints: revenus[var_to_int] = revenus[var_to_int].astype(int) - temporary_store["revenus_{}".format(year)] = revenus + temporary_store['revenus_{}'.format(year)] = revenus elif year == 2005: c05d = survey.get_values( - table = "c05d", + table = 'c05d', variables = ['c13111', 'c13121', 'c13141', 'pondmen', 'ident_men'], ) rev_disp = c05d.sort_values(by = ['ident_men']) del c05d menage = survey.get_values( - table = "menage", + table = 'menage', variables = ['ident_men', 'revtot', 'revact', 'revsoc', 'revpat', 'rev700_d', 'rev701_d', 'rev999_d', 'rev100_d', 'rev101_d', 'rev200_d', 'rev201_d'], ).sort_values(by = ['ident_men']) @@ -250,16 +250,16 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): assert len(menage.index) == len(revenus.index) revenus.rename( columns = dict( - rev100_d = "act_indpt", - rev101_d = "autoverses", - rev200_d = "salaires", - rev201_d = "autres_rev", - rev700_d = "somme_obl_recue", - rev701_d = "somme_libre_recue", - rev999_d = "autres_ress", - c13111 = "impot_res_ppal", - c13141 = "impot_revenu", - c13121 = "impot_autres_res", + rev100_d = 'act_indpt', + rev101_d = 'autoverses', + rev200_d = 'salaires', + rev201_d = 'autres_rev', + rev700_d = 'somme_obl_recue', + rev701_d = 'somme_libre_recue', + rev999_d = 'autres_ress', + c13111 = 'impot_res_ppal', + c13141 = 'impot_revenu', + c13121 = 'impot_autres_res', ), inplace = True ) @@ -274,14 +274,14 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): del revenus['impot_res_ppal'] # Calculer le revenu disponible avec et sans le loyer imputé - loyers_imputes = temporary_store["depenses_bdf_{}".format(year)] - variables = ["poste_04_2_1"] + loyers_imputes = temporary_store['depenses_bdf_{}'.format(year)] + variables = ['poste_04_2_1'] loyers_imputes = loyers_imputes[variables] loyers_imputes.rename( - columns = {"poste_04_2_1": "loyer_impute"}, + columns = {'poste_04_2_1': 'loyer_impute'}, inplace = True, ) - temporary_store["loyers_imputes_{}".format(year)] = loyers_imputes + temporary_store['loyers_imputes_{}'.format(year)] = loyers_imputes loyers_imputes.index = loyers_imputes.index.astype('str') assert revenus.index.dtype == loyers_imputes.index.dtype assert set(revenus.index) == set(loyers_imputes.index), '''revenus and loyers_imputes indexes are not equal. @@ -295,12 +295,12 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): revenus['rev_disponible'] = revenus['rev_disponible'] * (revenus['rev_disponible'] >= 0) revenus['rev_disp_loyerimput'] = revenus.rev_disponible + revenus.loyer_impute - temporary_store["revenus_{}".format(year)] = revenus + temporary_store['revenus_{}'.format(year)] = revenus elif year in [2011, 2017]: c05_variables = ['c13111', 'c13121', 'c13141', 'pondmen', 'ident_men'] c05 = survey.get_values( - table = "c05", + table = 'c05', variables = c05_variables, ignorecase = True, lowercase = True @@ -323,7 +323,7 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): ] menage = survey.get_values( - table = "menage", + table = 'menage', variables = menage_variables, ignorecase = True ) @@ -343,14 +343,14 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): # rev201_d = "autres_rev", revenus.rename( columns = dict( - revindep = "act_indpt", - salaires = "salaires", - rev700 = "somme_obl_recue", - rev701 = "somme_libre_recue", - rev999 = "autres_ress", - c13111 = "impot_res_ppal", - c13141 = "impot_revenu", - c13121 = "impot_autres_res", + revindep = 'act_indpt', + salaires = 'salaires', + rev700 = 'somme_obl_recue', + rev701 = 'somme_libre_recue', + rev999 = 'autres_ress', + c13111 = 'impot_res_ppal', + c13141 = 'impot_revenu', + c13121 = 'impot_autres_res', ), inplace = True ) @@ -359,17 +359,17 @@ def build_homogeneisation_revenus_menages(temporary_store = None, year = None): del revenus['impot_autres_res'] del revenus['impot_res_ppal'] - loyers_imputes = temporary_store["depenses_bdf_{}".format(year)] - variables = ["poste_04_2_1"] # loyers imputés + loyers_imputes = temporary_store['depenses_bdf_{}'.format(year)] + variables = ['poste_04_2_1'] # loyers imputés loyers_imputes = loyers_imputes[variables].copy() loyers_imputes.rename( - columns = {"poste_04_2_1": "loyer_impute"}, + columns = {'poste_04_2_1': 'loyer_impute'}, inplace = True, ) - temporary_store["loyers_imputes_{}".format(year)] = loyers_imputes + temporary_store['loyers_imputes_{}'.format(year)] = loyers_imputes revenus = revenus.merge(loyers_imputes, left_index = True, right_index = True) revenus['rev_disponible'] = revenus.revtot - revenus.impot_revenu - revenus.imphab revenus['rev_disponible'] = revenus['rev_disponible'] * (revenus['rev_disponible'] >= 0) revenus['rev_disp_loyerimput'] = revenus.rev_disponible + revenus.loyer_impute - temporary_store["revenus_{}".format(year)] = revenus + temporary_store['revenus_{}'.format(year)] = revenus temporary_store.close() diff --git a/openfisca_france_indirect_taxation/build_survey_data/step_5_data_from_matching.py b/openfisca_france_indirect_taxation/build_survey_data/step_5_data_from_matching.py index b498c631..d57b6cc2 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/step_5_data_from_matching.py +++ b/openfisca_france_indirect_taxation/build_survey_data/step_5_data_from_matching.py @@ -19,10 +19,10 @@ def check_load_config_ini(): - """ + ''' Check that assets option of section openfisca_france_indirect_taxation is set in openfisca-survey-manager config.ini file since that file is used by R - """ + ''' config_parser = ConfigParser() config_ini = os.path.join(config_files_directory, 'config.ini') config_parser.read(config_ini) @@ -30,19 +30,19 @@ def check_load_config_ini(): pass else: modifiedTime = os.path.getmtime(config_ini) - timestamp = datetime.datetime.fromtimestamp(modifiedTime).strftime("%b-%d-%Y_%H.%M.%S") - os.rename(config_ini, config_ini + "_" + timestamp) + timestamp = datetime.datetime.fromtimestamp(modifiedTime).strftime('%b-%d-%Y_%H.%M.%S') + os.rename(config_ini, config_ini + '_' + timestamp) try: - config_parser.add_section("openfisca_france_indirect_taxation") + config_parser.add_section('openfisca_france_indirect_taxation') finally: - config_parser.set("openfisca_france_indirect_taxation", "assets", assets_directory) + config_parser.set('openfisca_france_indirect_taxation', 'assets', assets_directory) with open(config_ini, 'w') as configfile: config_parser.write(configfile) if platform.system == 'Windows': - path_to_r_libs_user = os.path.normpath(config_parser.get("exe", "r_libs_user")) - path_to_rscript_exe = os.path.normpath(config_parser.get("exe", "Rscript")) + path_to_r_libs_user = os.path.normpath(config_parser.get('exe', 'r_libs_user')) + path_to_rscript_exe = os.path.normpath(config_parser.get('exe', 'Rscript')) else: path_to_rscript_exe = 'Rscript' path_to_r_libs_user = None diff --git a/openfisca_france_indirect_taxation/build_survey_data/utils.py b/openfisca_france_indirect_taxation/build_survey_data/utils.py index eb7051f4..598292a7 100644 --- a/openfisca_france_indirect_taxation/build_survey_data/utils.py +++ b/openfisca_france_indirect_taxation/build_survey_data/utils.py @@ -2,7 +2,7 @@ import numpy as np import seaborn -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) _SQRT2 = np.sqrt(2) # sqrt(2) with default precision np.float64 diff --git a/openfisca_france_indirect_taxation/calibration.py b/openfisca_france_indirect_taxation/calibration.py index 0d6672b6..7e14f18c 100644 --- a/openfisca_france_indirect_taxation/calibration.py +++ b/openfisca_france_indirect_taxation/calibration.py @@ -22,7 +22,7 @@ def get_bdf_aggregates_energy(data_year = None): # Construct depenses_tot for total consumption liste_variables = depenses.columns.tolist() postes_agreges = ['poste_{}'.format(index) for index in - ["0{}".format(i) for i in range(1, 10)] + ["10", "11", "12"]] + ['0{}'.format(i) for i in range(1, 10)] + ['10', '11', '12']] depenses['depenses_tot'] = 0 for element in liste_variables: for poste in postes_agreges: @@ -30,7 +30,7 @@ def get_bdf_aggregates_energy(data_year = None): depenses['depenses_tot'] += depenses[element] depenses_energie = pd.DataFrame() - if depenses['depenses_carburants'] is not None: # pas de matching avec ENTD + if depenses.get('depenses_carburants') is not None: # pas de matching avec ENTD variables_energie = ['poste_04_5_1_1_1_a', 'poste_04_5_1_1_1_b', 'poste_04_5_2_1_1', 'poste_04_5_3_1_1', 'poste_04_5_4_1_1', 'depenses_carburants', 'rev_disponible', 'loyer_impute', 'rev_disp_loyerimput', 'depenses_tot'] @@ -94,7 +94,7 @@ def get_cn_aggregates_energy(target_year = None): 'conso-eff-fonction.xls' ) - masses_cn_data_frame = pd.read_excel(parametres_fiscalite_file_path, sheet_name = "M€cour") + masses_cn_data_frame = pd.read_excel(parametres_fiscalite_file_path, sheet_name = 'M€cour') masses_cn_data_frame.columns = masses_cn_data_frame.iloc[2] masses_cn_data_frame = masses_cn_data_frame.loc[:, ['Code', target_year]].copy() @@ -126,7 +126,7 @@ def get_cn_aggregates_energy(target_year = None): 't_2101.xls' ) - revenus_cn = pd.read_excel(parametres_fiscalite_file_path, sheet_name = "2101") + revenus_cn = pd.read_excel(parametres_fiscalite_file_path, sheet_name = '2101') revenus_cn.iat[1, 1] = 'Code' revenus_cn = revenus_cn.drop(revenus_cn.columns[0], axis=1) revenus_cn.columns = revenus_cn.iloc[1] @@ -147,7 +147,7 @@ def get_cn_aggregates_energy(target_year = None): revenus_cn = revenus_cn * 1e9 # default_config_files_directory = os.path.join( - # pkg_resources.get_distribution('openfisca_france_indirect_taxation').location) + # openfisca_france_indirect_taxation_location) # parametres_fiscalite_file_path = os.path.join( # default_config_files_directory, # 'openfisca_france_indirect_taxation', diff --git a/openfisca_france_indirect_taxation/entities.py b/openfisca_france_indirect_taxation/entities.py index eeabafb8..d54f92a6 100644 --- a/openfisca_france_indirect_taxation/entities.py +++ b/openfisca_france_indirect_taxation/entities.py @@ -4,16 +4,16 @@ from openfisca_core.entities import build_entity Individu = build_entity( - key = "individu", - plural = "individus", + key = 'individu', + plural = 'individus', label = 'Individu', is_person = True ) Menage = build_entity( - key = "menage", - plural = "menages", + key = 'menage', + plural = 'menages', label = 'Ménage', roles = [ { diff --git a/openfisca_france_indirect_taxation/examples/aliss/utils.py b/openfisca_france_indirect_taxation/examples/aliss/utils.py index 0408e665..113a5e00 100644 --- a/openfisca_france_indirect_taxation/examples/aliss/utils.py +++ b/openfisca_france_indirect_taxation/examples/aliss/utils.py @@ -3,16 +3,15 @@ import numpy as np import os -import pkg_resources import pandas as pd - +from openfisca_france_indirect_taxation.location import openfisca_france_indirect_taxation_location from openfisca_france_indirect_taxation.surveys import SurveyScenario from openfisca_france_indirect_taxation.build_survey_data.calibration_aliss import get_adjusted_input_data_frame aliss_assets_reform_directory = os.path.join( - pkg_resources.get_distribution('openfisca_france_indirect_taxation').location, + openfisca_france_indirect_taxation_location, 'openfisca_france_indirect_taxation', 'reforms', 'aliss_assets', @@ -140,7 +139,7 @@ def set_adjustable_reform(dataframe): def run_reform(reform_key = None, aggfunc = 'mean'): survey_scenario, adjusted_survey_scenario = build_scenarios(reform_key = reform_key) alimentation_domicile_hors_alcool = [ - "depenses_ht_{}".format(key) for key in list(survey_scenario.tax_benefit_system.variables.keys()) + 'depenses_ht_{}'.format(key) for key in list(survey_scenario.tax_benefit_system.variables.keys()) if key.startswith('poste_01') ] alimentation_domicile = alimentation_domicile_hors_alcool + [ @@ -149,7 +148,7 @@ def run_reform(reform_key = None, aggfunc = 'mean'): 'depenses_alcools_forts' ] depenses_ht_tvas = [ - "depenses_ht_{}".format(key) for key in list(survey_scenario.tax_benefit_system.variables.keys()) + 'depenses_ht_{}'.format(key) for key in list(survey_scenario.tax_benefit_system.variables.keys()) if key.startswith('tva_taux_') ] tvas = [ diff --git a/openfisca_france_indirect_taxation/examples/all_consumptions/plot_consumption_distribution_1995_2011.py b/openfisca_france_indirect_taxation/examples/all_consumptions/plot_consumption_distribution_1995_2011.py index 8309fd7d..05360c0b 100644 --- a/openfisca_france_indirect_taxation/examples/all_consumptions/plot_consumption_distribution_1995_2011.py +++ b/openfisca_france_indirect_taxation/examples/all_consumptions/plot_consumption_distribution_1995_2011.py @@ -15,14 +15,14 @@ # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) if __name__ == '__main__': inflators_by_year = get_inflators_by_year(rebuild = False) # Liste des coicop agrégées en 12 postes - suffixes = ["0{}".format(i) for i in range(1, 10)] + ["10", "11", "12"] + suffixes = ['0{}'.format(i) for i in range(1, 10)] + ['10', '11', '12'] simulated_variables = ['poste_agrege_{}'.format(suffix) for suffix in suffixes] year = 2000 diff --git a/openfisca_france_indirect_taxation/examples/all_consumptions/plot_logement_decile.py b/openfisca_france_indirect_taxation/examples/all_consumptions/plot_logement_decile.py index 8e341c63..d2fa5e23 100644 --- a/openfisca_france_indirect_taxation/examples/all_consumptions/plot_logement_decile.py +++ b/openfisca_france_indirect_taxation/examples/all_consumptions/plot_logement_decile.py @@ -14,7 +14,7 @@ logging.basicConfig(level = logging.INFO, stream = sys.stdout) postes_agreges = ['poste_agrege_{}'.format(index) for index in - ["0{}".format(i) for i in range(1, 10)] + ["10", "11", "12"] + ['0{}'.format(i) for i in range(1, 10)] + ['10', '11', '12'] ] simulated_variables = [ diff --git a/openfisca_france_indirect_taxation/examples/all_indirect_taxes/plot_regressivite.py b/openfisca_france_indirect_taxation/examples/all_indirect_taxes/plot_regressivite.py index 691e75be..8ccf90af 100644 --- a/openfisca_france_indirect_taxation/examples/all_indirect_taxes/plot_regressivite.py +++ b/openfisca_france_indirect_taxation/examples/all_indirect_taxes/plot_regressivite.py @@ -11,7 +11,7 @@ from openfisca_france_indirect_taxation.surveys import SurveyScenario # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) if __name__ == '__main__': diff --git a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/criteria_for_fuel_poverty.py b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/criteria_for_fuel_poverty.py index 1281de17..982dc599 100644 --- a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/criteria_for_fuel_poverty.py +++ b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/criteria_for_fuel_poverty.py @@ -36,148 +36,148 @@ ) -""" +''' Part des ménages ayant eu froid pendant l'hiver -""" +''' print("Sur l'ensemble des ménages :") -print(" ") +print(' ') print((100 * sum(data_enl['pondmen'] * (data_enl['froid'] == 1)) / sum(data_enl['pondmen']))) -print(" ") -print("Par décile de niveau de vie :") -print(" ") +print(' ') +print('Par décile de niveau de vie :') +print(' ') for i in range(1, 11): data_enl_decile = data_enl.query('niveau_vie_decile == {}'.format(i)) - print(i, "-", 100 * sum(data_enl_decile['pondmen'] * (data_enl_decile['froid'] == 1)) / sum(data_enl_decile['pondmen'])) + print(i, '-', 100 * sum(data_enl_decile['pondmen'] * (data_enl_decile['froid'] == 1)) / sum(data_enl_decile['pondmen'])) -""" +''' Part des ménages ayant eu froid pendant l'hiver en raison du coût de l'énergie -""" +''' print("Sur l'ensemble des ménages :") -print(" ") +print(' ') print((100 * sum(data_enl['pondmen'] * (data_enl['froid_cout'] == 1)) / sum(data_enl['pondmen']))) -print(" ") -print("Par décile de niveau de vie :") -print(" ") +print(' ') +print('Par décile de niveau de vie :') +print(' ') for i in range(1, 11): data_enl_decile = data_enl.query('niveau_vie_decile == {}'.format(i)) - print((i, "-", 100 * sum(data_enl_decile['pondmen'] * (data_enl_decile['froid_cout'] == 1)) / sum(data_enl_decile['pondmen']))) + print((i, '-', 100 * sum(data_enl_decile['pondmen'] * (data_enl_decile['froid_cout'] == 1)) / sum(data_enl_decile['pondmen']))) -""" +''' Part des ménages ayant eu froid pendant l'hiver, et ayant des difficultés avec leur budget -""" +''' data_matched_random['aise_froid'] = 0 data_matched_random['aise_froid'] = \ (data_matched_random['froid'] == 1) * (data_matched_random['aise'] > 3) * 1 print("Sur l'ensemble des ménages :") -print(" ") +print(' ') print((100 * sum(data_matched_random['pondmen'] * (data_matched_random['aise_froid'] == 1)) / sum(data_matched_random['pondmen']))) -print(" ") -print("Par décile de niveau de vie :") -print(" ") +print(' ') +print('Par décile de niveau de vie :') +print(' ') for i in range(1, 11): data_matched_random_decile = data_matched_random.query('niveau_vie_decile == {}'.format(i)) - print((i, "-", 100 * sum(data_matched_random_decile['pondmen'] * (data_matched_random_decile['aise_froid'] == 1)) / sum(data_matched_random_decile['pondmen']))) + print((i, '-', 100 * sum(data_matched_random_decile['pondmen'] * (data_matched_random_decile['aise_froid'] == 1)) / sum(data_matched_random_decile['pondmen']))) -""" +''' Part des ménages ayant eu froid pendant l'hiver en raison du coût de l'énergie, et ayant des difficultés avec leur budget -""" +''' data_matched_random['aise_froid_cout'] = \ (data_matched_random['aise_froid'] == 1) * (data_matched_random['froid_cout'] == 1) * 1 print("Sur l'ensemble des ménages :") -print(" ") +print(' ') print((100 * sum(data_matched_random['pondmen'] * (data_matched_random['aise_froid_cout'] == 1)) / sum(data_matched_random['pondmen']))) -print(" ") -print("Par décile de niveau de vie :") -print(" ") +print(' ') +print('Par décile de niveau de vie :') +print(' ') for i in range(1, 11): data_matched_random_decile = data_matched_random.query('niveau_vie_decile == {}'.format(i)) - print((i, "-", ( + print((i, '-', ( 100 * sum(data_matched_random_decile['pondmen'] * (data_matched_random_decile['aise_froid_cout'] == 1)) / sum(data_matched_random_decile['pondmen']) ))) -""" +''' Part des ménages affectant plus de 15% de leurs revenus à l'énergie -""" +''' print("Sur l'ensemble des ménages :") -print(" ") +print(' ') print((100 * float(sum(data_matched_random['part_energies_revtot'] > 0.15)) / len(data_matched_random))) -print(" ") -print("Par décile de niveau de vie :") -print(" ") +print(' ') +print('Par décile de niveau de vie :') +print(' ') for i in range(1, 11): data_matched_random_decile = data_matched_random.query('niveau_vie_decile == {}'.format(i)) - print((i, "-", ( + print((i, '-', ( 100 * sum(data_matched_random_decile['pondmen'] * (data_matched_random_decile['part_energies_revtot'] > 0.15)) / sum(data_matched_random_decile['pondmen']) ))) -""" +''' Part des ménages affectant plus de 10% de leurs revenus à l'énergie -""" +''' print("Sur l'ensemble des ménages :") -print(" ") +print(' ') print((100 * float(sum(data_matched_random['part_energies_revtot'] > 0.1)) / len(data_matched_random))) -print(" ") -print("Par décile de niveau de vie :") -print(" ") +print(' ') +print('Par décile de niveau de vie :') +print(' ') for i in range(1, 11): data_matched_random_decile = data_matched_random.query('niveau_vie_decile == {}'.format(i)) - print((i, "-", ( + print((i, '-', ( 100 * sum(data_matched_random_decile['pondmen'] * (data_matched_random_decile['part_energies_revtot'] > 0.1)) / sum(data_matched_random_decile['pondmen']) ))) -""" +''' Part des ménages affectant plus de 15% de leurs dépenses à l'énergie -""" +''' print("Sur l'ensemble des ménages :") -print(" ") +print(' ') print((100 * float(sum(data_matched_random['part_energies_depenses_tot'] > 0.15)) / len(data_matched_random))) -print(" ") -print("Par décile de niveau de vie :") -print(" ") +print(' ') +print('Par décile de niveau de vie :') +print(' ') for i in range(1, 11): data_matched_random_decile = data_matched_random.query('niveau_vie_decile == {}'.format(i)) - print((i, "-", ( + print((i, '-', ( 100 * sum(data_matched_random_decile['pondmen'] * (data_matched_random_decile['part_energies_depenses_tot'] > 0.15)) / sum(data_matched_random_decile['pondmen']) ))) -""" +''' Part des ménages affectant plus de 10% de leurs dépenses à l'énergie -""" +''' print("Sur l'ensemble des ménages :") -print(" ") +print(' ') print((100 * float(sum(data_matched_random['part_energies_depenses_tot'] > 0.1)) / len(data_matched_random))) -print(" ") -print("Par décile de niveau de vie :") -print(" ") +print(' ') +print('Par décile de niveau de vie :') +print(' ') for i in range(1, 11): data_matched_random_decile = data_matched_random.query('niveau_vie_decile == {}'.format(i)) - print((i, "-", ( + print((i, '-', ( 100 * sum(data_matched_random_decile['pondmen'] * (data_matched_random_decile['part_energies_depenses_tot'] > 0.1)) / sum(data_matched_random_decile['pondmen']) diff --git a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/descriptive_statisctics_wip.py b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/descriptive_statisctics_wip.py index 62f86b01..7742d784 100644 --- a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/descriptive_statisctics_wip.py +++ b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/descriptive_statisctics_wip.py @@ -57,16 +57,16 @@ print("Parmi les personnes déclarant avoir eu froid à cause du prix de l'énergie, quelle est la part \ ayant des difficultés dans leur budget ?") -print(" ") +print(' ') for i in range(1, 11): print(float(len(data_matched_random.query('niveau_vie_decile == {}'.format(i)).query('aise_froid_cout == 1'))) / len(data_matched_random.query('niveau_vie_decile == {}'.format(i)).query('froid_cout == 1'))) -print(" ") +print(' ') print("Parmi les personnes ayant des difficultés dans leur budget, et ayant froid dans leur logement \ quelle est la part de ceux déclarant avoir eu froid à cause du prix de l'énergie ?") -print(" ") +print(' ') for i in range(1, 11): print(float(len(data_matched_random.query('niveau_vie_decile == {}'.format(i)).query('aise_froid_cout == 1'))) diff --git a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/indicators.py b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/indicators.py index ba9a0f94..65086f18 100644 --- a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/indicators.py +++ b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/indicators.py @@ -9,7 +9,7 @@ from openfisca_france_indirect_taxation.calibration import get_inflators_by_year_energy # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) simulated_variables_depenses_tot = [ 'precarite_energetique_depenses_tot', diff --git a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/plot_effets_reformes.py b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/plot_effets_reformes.py index 357d84da..1d60917f 100644 --- a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/plot_effets_reformes.py +++ b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/fuel_poverty/plot_effets_reformes.py @@ -11,7 +11,7 @@ from openfisca_france_indirect_taxation.examples.fuel_poverty.effets_reformes import effets_reformes_precarite from openfisca_france_indirect_taxation.examples.utils_example import graph_builder_bar_percent, save_dataframe_to_graph -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) def plot_precarite(indicateur): diff --git a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/contribution_reforms_after_green_cheques.py b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/contribution_reforms_after_green_cheques.py index 49a8cc7d..56531418 100644 --- a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/contribution_reforms_after_green_cheques.py +++ b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/contribution_reforms_after_green_cheques.py @@ -50,7 +50,7 @@ for category in ['niveau_vie_decile', 'age_group_pr', 'strate']: df_reform = \ dataframe_by_group(survey_scenario, category, simulated_variables, use_baseline =False) - df_reference =\ + df_reference = \ dataframe_by_group(survey_scenario, category, simulated_variables, use_baseline =True) df_reform['Cost of the reform after green cheques'] = ( diff --git a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/contribution_reforms_by_categories.py b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/contribution_reforms_by_categories.py index 04eddcbf..aa3d2fe8 100644 --- a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/contribution_reforms_by_categories.py +++ b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/contribution_reforms_by_categories.py @@ -32,7 +32,7 @@ for category in ['niveau_vie_decile', 'age_group_pr', 'strate']: df_reform = \ dataframe_by_group(survey_scenario, category, simulated_variables, use_baseline =False) - df_reference =\ + df_reference = \ dataframe_by_group(survey_scenario, category, simulated_variables, use_baseline =True) df_reform['Additional effort rate on TICPE reform - expenditures'] = ( diff --git a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/reduction_co2_reforms_by_categories.py b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/reduction_co2_reforms_by_categories.py index 535b6a59..44bac034 100644 --- a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/reduction_co2_reforms_by_categories.py +++ b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/reduction_co2_reforms_by_categories.py @@ -28,7 +28,7 @@ for category in ['niveau_vie_decile', 'age_group_pr', 'strate']: df_reform = \ dataframe_by_group(survey_scenario, category, simulated_variables, use_baseline =False) - df_reference =\ + df_reference = \ dataframe_by_group(survey_scenario, category, simulated_variables, use_baseline =True) df_reform['Reduction in carbon emissions from reform'] = \ diff --git a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/taux_effort_taxes_indirectes.py b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/taux_effort_taxes_indirectes.py index 088bc0b8..4bb63f75 100644 --- a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/taux_effort_taxes_indirectes.py +++ b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/taux_effort_taxes_indirectes.py @@ -11,7 +11,7 @@ from openfisca_france_indirect_taxation.surveys import SurveyScenario # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) if __name__ == '__main__': diff --git a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/taux_effort_ticpe.py b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/taux_effort_ticpe.py index a106ae6e..8ada973c 100644 --- a/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/taux_effort_ticpe.py +++ b/openfisca_france_indirect_taxation/examples/benjello_candidates_to_removal/master_thesis/taux_effort_ticpe.py @@ -11,7 +11,7 @@ from openfisca_france_indirect_taxation.surveys import SurveyScenario # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) def plot_taux_effort_ticpe(): diff --git a/openfisca_france_indirect_taxation/examples/calage_bdf_cn_bis.py b/openfisca_france_indirect_taxation/examples/calage_bdf_cn_bis.py index 155f4e3e..de9b1124 100644 --- a/openfisca_france_indirect_taxation/examples/calage_bdf_cn_bis.py +++ b/openfisca_france_indirect_taxation/examples/calage_bdf_cn_bis.py @@ -48,7 +48,7 @@ def get_cn_aggregates(target_year = None): 'legislation', 'Parametres fiscalite indirecte.xls' ) - masses_cn_data_frame = pandas.read_excel(parametres_fiscalite_file_path, sheet_name = "consommation_CN") + masses_cn_data_frame = pandas.read_excel(parametres_fiscalite_file_path, sheet_name = 'consommation_CN') masses_cn_12postes_data_frame = masses_cn_data_frame.loc[:, ['Code', target_year]] masses_cn_12postes_data_frame['code_unicode'] = masses_cn_12postes_data_frame.Code.astype(str) masses_cn_12postes_data_frame['len_code'] = masses_cn_12postes_data_frame['code_unicode'].apply(lambda x: len(x)) diff --git a/openfisca_france_indirect_taxation/examples/debug.py b/openfisca_france_indirect_taxation/examples/debug.py index 7e3b9cf7..166691c7 100644 --- a/openfisca_france_indirect_taxation/examples/debug.py +++ b/openfisca_france_indirect_taxation/examples/debug.py @@ -12,7 +12,7 @@ from openfisca_france_indirect_taxation.surveys import SurveyScenario # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) if __name__ == '__main__': diff --git a/openfisca_france_indirect_taxation/examples/loi_finance_2019/descriptive_statistics.py b/openfisca_france_indirect_taxation/examples/loi_finance_2019/descriptive_statistics.py index 5c8f0e64..15551266 100644 --- a/openfisca_france_indirect_taxation/examples/loi_finance_2019/descriptive_statistics.py +++ b/openfisca_france_indirect_taxation/examples/loi_finance_2019/descriptive_statistics.py @@ -55,8 +55,8 @@ df['poste_11_1_1_1_1'] + df['poste_11_1_1_1_2'] + df['poste_11_1_2_1_1'] + df['poste_11_1_3_1'] + df['poste_11_1_3_2'] + df['poste_11_2_1_1_1'] ) - df['poste_agrege_11'] - assert(df['check_poste_agrege_11'].min() > -1e-06) - assert(df['check_poste_agrege_11'].max() < 1e-06) + assert df['check_poste_agrege_11'].min() > -1e-06 + assert df['check_poste_agrege_11'].max() < 1e-06 df['part_poste_agrege_11_rev_disp_loyerimput'] = df['poste_agrege_11'] / df['rev_disp_loyerimput'] df['part_poste_agrege_11_depenses_tot'] = df['poste_agrege_11'] / df['depenses_tot'] diff --git a/openfisca_france_indirect_taxation/examples/notebooks/test_notebooks.py b/openfisca_france_indirect_taxation/examples/notebooks/test_notebooks.py index b4f985c2..752b4969 100644 --- a/openfisca_france_indirect_taxation/examples/notebooks/test_notebooks.py +++ b/openfisca_france_indirect_taxation/examples/notebooks/test_notebooks.py @@ -31,7 +31,7 @@ def is_notebook(file_path): - return file_path[-6:] == ".ipynb" + return file_path[-6:] == '.ipynb' def run(notebook_path): @@ -46,10 +46,10 @@ def run(notebook_path): try: # Execute all the cells in the notebook - ep = ExecutePreprocessor(timeout = 600, kernel_name = "python3") + ep = ExecutePreprocessor(timeout = 600, kernel_name = 'python3') ep.preprocess( notebook, - {"metadata": {"path": notebook_directory}} + {'metadata': {'path': notebook_directory}} ) except CellExecutionError: @@ -59,34 +59,34 @@ def run(notebook_path): raise finally: - with open(notebook_path, mode = "wt") as f: + with open(notebook_path, mode = 'wt') as f: write(notebook, f) # Check script target (file or directory) and test all notebooks -if __name__ == "__main__": +if __name__ == '__main__': try: target = sys.argv[1] if os.path.isdir(target): for file in os.listdir(target): if is_notebook(file): - log.debug("> " + file) + log.debug('> ' + file) run(os.path.join(target, file)) else: if not is_notebook(target): - raise Exception("Expected an .ipynb file. Got: {}".format(target)) + raise Exception('Expected an .ipynb file. Got: {}'.format(target)) run(target) - log.info("OK. No error detected in tested notebook(s).") + log.info('OK. No error detected in tested notebook(s).') except BaseException as e: if len(sys.argv) == 1: - log.error("Missing notebook or directory containing notebooks to test.") - log.warn("USAGE: python test_notebooks.py target") + log.error('Missing notebook or directory containing notebooks to test.') + log.warn('USAGE: python test_notebooks.py target') log.warn("where 'target' is directory containing notebooks, or a .ipynb notebook file.") else: - log.debug(str(e.__class__.__name__) + ": ") + log.debug(str(e.__class__.__name__) + ': ') if e.__class__ is CellExecutionError and e.from_cell_and_msg: log.debug(e.from_cell_and_msg) elif str(e): diff --git a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/compute_effect_on_cold_quantities.py b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/compute_effect_on_cold_quantities.py index 491148a0..943005ef 100644 --- a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/compute_effect_on_cold_quantities.py +++ b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/compute_effect_on_cold_quantities.py @@ -203,6 +203,6 @@ def effect_reform_cold(): return cold -if __name__ == "__main__": +if __name__ == '__main__': cold = effect_reform_cold() print(logit.summary()) diff --git a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/estimation_cold_enl.py b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/estimation_cold_enl.py index beb4249e..9a49de00 100644 --- a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/estimation_cold_enl.py +++ b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/estimation_cold_enl.py @@ -98,7 +98,7 @@ def estimate_froid(): return regression_ols, regression_logit -if __name__ == "__main__": +if __name__ == '__main__': estimations = estimate_froid() regression_ols = estimations[0] regression_logit = estimations[1] diff --git a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/heterogeneity_net_contributions.py b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/heterogeneity_net_contributions.py index cb8cffd3..b6460ad1 100644 --- a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/heterogeneity_net_contributions.py +++ b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/heterogeneity_net_contributions.py @@ -85,7 +85,7 @@ def net_transfers_by_sub_group(df_reforme, group): return df_to_plot -if __name__ == "__main__": +if __name__ == '__main__': df_to_plot_strate = net_transfers_by_sub_group(df_reforme, 'strate') df_to_plot_combustibles_liquides = net_transfers_by_sub_group(df_reforme, 'combustibles_liquides') diff --git a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/plot_fuel_poors.py b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/plot_fuel_poors.py index dbf68266..279ac6b2 100644 --- a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/plot_fuel_poors.py +++ b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/plot_fuel_poors.py @@ -17,7 +17,7 @@ from openfisca_france_indirect_taxation.reforms.officielle_2018_in_2016 import reforme_officielle_2018_in_2016 -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) def plot_effect_reform_fuel_poors(): diff --git a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/plot_matching.py b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/plot_matching.py index 8314fafe..507b7b78 100644 --- a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/plot_matching.py +++ b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/plot_matching.py @@ -17,7 +17,7 @@ from openfisca_france_indirect_taxation.utils import assets_directory -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) # Importation des bases de données appariées et de la base de référence entd diff --git a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/regress_net_transfers.py b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/regress_net_transfers.py index 6842211e..e8b3ec3b 100644 --- a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/regress_net_transfers.py +++ b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/regress_net_transfers.py @@ -156,7 +156,7 @@ data = df_reforme).fit() print(regression_ols.summary()) -""" +''' # Compute transfers by income params = regression_ols.params @@ -200,4 +200,4 @@ df_age['transfers'] = average_transfers_by_age + df_age['index'] * param_age + (df_age['index'] ** 2) * param_age_2 graph_builder_line(df_age['transfers']) -""" +''' diff --git a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/variation_in_cold.py b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/variation_in_cold.py index f183560f..7b2f22a7 100644 --- a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/variation_in_cold.py +++ b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/variation_in_cold.py @@ -157,7 +157,7 @@ def estimate_froid(): return regression_ols, regression_logit -if __name__ == "__main__": +if __name__ == '__main__': estimations = estimate_froid() regression_ols = estimations[0] regression_logit = estimations[1] diff --git a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/variation_in_cold_enl.py b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/variation_in_cold_enl.py index 780c45d5..0111594e 100644 --- a/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/variation_in_cold_enl.py +++ b/openfisca_france_indirect_taxation/examples/reforme_officielle_2018_in_2016/variation_in_cold_enl.py @@ -222,7 +222,7 @@ def estimate_froid(): return regression_logit -if __name__ == "__main__": +if __name__ == '__main__': regression_logit = estimate_froid() # print regression_logit.summary() print(regression_logit.get_margeff().summary()) diff --git a/openfisca_france_indirect_taxation/examples/results_matching/froid_4_criteres.py b/openfisca_france_indirect_taxation/examples/results_matching/froid_4_criteres.py index aef7d288..0e5e8dff 100644 --- a/openfisca_france_indirect_taxation/examples/results_matching/froid_4_criteres.py +++ b/openfisca_france_indirect_taxation/examples/results_matching/froid_4_criteres.py @@ -16,7 +16,7 @@ from openfisca_france_indirect_taxation.utils import assets_directory -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) # Importation des bases de données appariées et de la base de référence ENL diff --git a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_depenses.py b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_depenses.py index a203dac0..acff0b16 100644 --- a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_depenses.py +++ b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_depenses.py @@ -15,7 +15,7 @@ from openfisca_france_indirect_taxation.examples.utils_example import graph_builder_line from openfisca_france_indirect_taxation.utils import assets_directory # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) # Import des fichiers csv donnant les montants agrégés des dépenses répertoriées dans les enquêtes BdF. # Ces montants sont calculés dans compute_depenses_carburants @@ -44,7 +44,7 @@ 'legislation', 'Parametres fiscalite indirecte.xls' ) -masses_cn_data_frame = pd.read_excel(parametres_fiscalite_file_path, sheet_name = "consommation_CN") +masses_cn_data_frame = pd.read_excel(parametres_fiscalite_file_path, sheet_name = 'consommation_CN') masses_cn_carburants = masses_cn_data_frame[masses_cn_data_frame['Fonction'] == 'Carburants et lubrifiants'] masses_cn_carburants = masses_cn_carburants.transpose() diff --git a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_quantite.py b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_quantite.py index b8f5ae3c..57047b1b 100644 --- a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_quantite.py +++ b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_quantite.py @@ -18,7 +18,7 @@ # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) # Import des fichiers csv donnant les montants agrégés des quantités consommées répertoriées dans les enquêtes BdF. # Ces montants sont calculés dans compute_quantite_carburants diff --git a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_ticpe.py b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_ticpe.py index 430818fb..e42b90c7 100644 --- a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_ticpe.py +++ b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_ticpe.py @@ -18,9 +18,9 @@ from openfisca_france_indirect_taxation.utils import assets_directory -"""Ici on applique aux quantités de carburants consommées par des véhicules autres que les ménages +'''Ici on applique aux quantités de carburants consommées par des véhicules autres que les ménages la ticpe à taux plein. En réalité, un certain nombre d'exonération s'appliquent pour les professionels. -On calcul donc simplement une borne supérieure des recettes engendrées""" +On calcul donc simplement une borne supérieure des recettes engendrées''' # Import des fichiers csv donnant les montants agrégés des dépenses en TICPE d'après les enquêtes BdF. # Ces montants sont calculés dans compute_depenses_ticpe diff --git a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_vehicules.py b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_vehicules.py index 037c154c..17573219 100644 --- a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_vehicules.py +++ b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compare_comptes_des_transports_vehicules.py @@ -14,7 +14,7 @@ from openfisca_france_indirect_taxation.examples.utils_example import graph_builder_line # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) # Sélection des données des Compte des Transports utilisées et organisation de la dataframe comparaison_vehicules = g2_1[g2_1['categorie'] == 'Voitures particulières'] diff --git a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compute_ticpe_cas_type.py b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compute_ticpe_cas_type.py index e5e9fbaa..5e3c4645 100644 --- a/openfisca_france_indirect_taxation/examples/transports/compute_compare/compute_ticpe_cas_type.py +++ b/openfisca_france_indirect_taxation/examples/transports/compute_compare/compute_ticpe_cas_type.py @@ -6,9 +6,9 @@ from openfisca_france_indirect_taxation.tests import base from openfisca_france_indirect_taxation.examples.utils_example import graph_builder_line, save_dataframe_to_graph -"""Nous simulons les montants de ticpe payés par un ménage selon le type de véhicule dont il dispose +'''Nous simulons les montants de ticpe payés par un ménage selon le type de véhicule dont il dispose Nous prenons un ménage dont les dépenses annuelles en carburants s'élèveraient à 1000 euros -C'est en dessous de la moyenne de nos samples (plutôt autour de 1500)""" +C'est en dessous de la moyenne de nos samples (plutôt autour de 1500)''' index = list(range(2000, 2014)) columns = ['si une essence et une diesel', 'si seulement vehicules diesel', 'si seulement vehicules essence'] diff --git a/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_depenses_par_strate.py b/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_depenses_par_strate.py index c980192b..fe0689f9 100644 --- a/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_depenses_par_strate.py +++ b/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_depenses_par_strate.py @@ -15,7 +15,7 @@ from openfisca_france_indirect_taxation.surveys import SurveyScenario # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) if __name__ == '__main__': diff --git a/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_ticpe_depenses_par_decile.py b/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_ticpe_depenses_par_decile.py index eb6559ed..6ce93106 100644 --- a/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_ticpe_depenses_par_decile.py +++ b/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_ticpe_depenses_par_decile.py @@ -15,7 +15,7 @@ from openfisca_france_indirect_taxation.surveys import SurveyScenario # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) if __name__ == '__main__': import logging diff --git a/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_ticpe_part_depenses_par_decile.py b/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_ticpe_part_depenses_par_decile.py index fbba00db..75d27f99 100644 --- a/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_ticpe_part_depenses_par_decile.py +++ b/openfisca_france_indirect_taxation/examples/transports/depenses_par_categories/plot_ticpe_part_depenses_par_decile.py @@ -17,7 +17,7 @@ from openfisca_france_indirect_taxation.surveys import SurveyScenario # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) if __name__ == '__main__': diff --git a/openfisca_france_indirect_taxation/examples/transports/plot_legislation/plot_ticpe_accises.py b/openfisca_france_indirect_taxation/examples/transports/plot_legislation/plot_ticpe_accises.py index 64569b31..da0c5721 100644 --- a/openfisca_france_indirect_taxation/examples/transports/plot_legislation/plot_ticpe_accises.py +++ b/openfisca_france_indirect_taxation/examples/transports/plot_legislation/plot_ticpe_accises.py @@ -9,7 +9,7 @@ from openfisca_france_indirect_taxation.examples.dataframes_from_legislation.get_accises import \ get_accise_ticpe_majoree -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) # Recherche des paramètres de la législation liste = ['ticpe_gazole', 'super_95_98', 'super_plombe_ticpe'] diff --git a/openfisca_france_indirect_taxation/examples/transports/plot_legislation/plot_ticpe_taux_implicite.py b/openfisca_france_indirect_taxation/examples/transports/plot_legislation/plot_ticpe_taux_implicite.py index 067e6430..fc69f6fd 100644 --- a/openfisca_france_indirect_taxation/examples/transports/plot_legislation/plot_ticpe_taux_implicite.py +++ b/openfisca_france_indirect_taxation/examples/transports/plot_legislation/plot_ticpe_taux_implicite.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- -""" +''' TICPE: Taxe intérieure sur la consommation des produits énergétiques -""" +''' # L'objectif de ce script est d'illustrer graphiquement l'évolution du taux implicite de la TICPE depuis 1993. # On étudie ce taux pour le diesel, et pour les carburants sans plombs. @@ -18,7 +18,7 @@ from openfisca_france_indirect_taxation.examples.dataframes_from_legislation.get_prix_carburants import \ get_prix_carburants -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) # Appel des paramètres de la législation et des prix ticpe = ['ticpe_gazole', 'super_95_98'] diff --git a/openfisca_france_indirect_taxation/examples/tva/plot_depenses_tva_by_decile.py b/openfisca_france_indirect_taxation/examples/tva/plot_depenses_tva_by_decile.py index 3b431468..0b3f0b1e 100644 --- a/openfisca_france_indirect_taxation/examples/tva/plot_depenses_tva_by_decile.py +++ b/openfisca_france_indirect_taxation/examples/tva/plot_depenses_tva_by_decile.py @@ -11,7 +11,7 @@ from openfisca_france_indirect_taxation.surveys import SurveyScenario # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) if __name__ == '__main__': import logging diff --git a/openfisca_france_indirect_taxation/france_indirect_taxation_taxbenefitsystem.py b/openfisca_france_indirect_taxation/france_indirect_taxation_taxbenefitsystem.py index 0245bd62..b81a095c 100644 --- a/openfisca_france_indirect_taxation/france_indirect_taxation_taxbenefitsystem.py +++ b/openfisca_france_indirect_taxation/france_indirect_taxation_taxbenefitsystem.py @@ -16,8 +16,8 @@ class FranceIndirectTaxationTaxBenefitSystem(TaxBenefitSystem): - """French indirect taxation tax benefit system""" - CURRENCY = "€" + '''French indirect taxation tax benefit system''' + CURRENCY = '€' preprocess_legislation = staticmethod(preprocessing.preprocess_legislation) def __init__(self): @@ -31,8 +31,11 @@ def __init__(self): self.parameters = self.preprocess_legislation(self.parameters) def prefill_cache(self): - """Define poste_* and categorie fiscales variables""" + '''Load data for poste_*, categorie fiscales & prix carburants variables''' from openfisca_france_indirect_taxation.variables.consommation import postes_coicop postes_coicop.preload_postes_coicop_data_frame(self) from openfisca_france_indirect_taxation.variables.consommation import categories_fiscales categories_fiscales.preload_categories_fiscales_data_frame(self) + from .parameters import prix_carburants + prix_carburants.preload_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre() + prix_carburants.preload_prix_carburant_par_annee_par_carburant_en_hectolitre() diff --git a/openfisca_france_indirect_taxation/location.py b/openfisca_france_indirect_taxation/location.py new file mode 100644 index 00000000..56daff17 --- /dev/null +++ b/openfisca_france_indirect_taxation/location.py @@ -0,0 +1,3 @@ +from pathlib import Path + +openfisca_france_indirect_taxation_location = Path(__file__).parent.parent diff --git a/openfisca_france_indirect_taxation/non_working_tests/tests_aids_categ.py b/openfisca_france_indirect_taxation/non_working_tests/tests_aids_categ.py index c35a7e7b..c403443d 100644 --- a/openfisca_france_indirect_taxation/non_working_tests/tests_aids_categ.py +++ b/openfisca_france_indirect_taxation/non_working_tests/tests_aids_categ.py @@ -8,7 +8,7 @@ aggregates_data_frame, df, produits, data_frame_for_reg, year, df_indice_prix_produit, df_to_merge -""" Check if depenses_tot is equal to the sum of all expenses """ +''' Check if depenses_tot is equal to the sum of all expenses ''' aggregates_data_frame['dep_tot'] = 0 for i in range(1, 13): @@ -18,15 +18,15 @@ 'Issue in depenses_tot calculation' -""" Check if the dataframe used for the regression has the right number of observations, i.e. -one per person and per category of good for each year """ +''' Check if the dataframe used for the regression has the right number of observations, i.e. +one per person and per category of good for each year ''' assert (len(data_frame_for_reg) == (10305 + 10240 + 15797)), \ 'Dataframe does not have the good shape' -""" Check if the price index of all goods in aggregate_data_frame is filled in indice_prix_mensuel_98_15 -If this was not the case, we would have issues in the calculation of the price index for some people """ +''' Check if the price index of all goods in aggregate_data_frame is filled in indice_prix_mensuel_98_15 +If this was not the case, we would have issues in the calculation of the price index for some people ''' df_bien = df_indice_prix_produit[['bien']] df_bien = df_bien.astype(int) @@ -40,7 +40,7 @@ 'The price indexes is not filled for some goods in df_indice_prix_produit (or before)' -""" Check if indice_prix_produit has duplicates : hotherwise, this would distort our price indexes """ +''' Check if indice_prix_produit has duplicates : hotherwise, this would distort our price indexes ''' restricted_df = df.drop_duplicates(cols = 'indice_prix_produit', take_last = True) if year == [2005, 2011]: @@ -51,14 +51,14 @@ 'Some price indexes are duplicates' -""" Check if df_to_merge contains duplicates, to avoid mistakes in the merge with df """ +''' Check if df_to_merge contains duplicates, to avoid mistakes in the merge with df ''' restricted_df_to_merge = df_to_merge.drop_duplicates(cols = 'id', take_last = True) assert len(restricted_df_to_merge) == len(df_to_merge), \ 'df_to_merge contains some duplicates' -""" Check if the price index for each good is the same for everyone """ +''' Check if the price index for each good is the same for everyone ''' limited_df = df[['ident_men', 'indice_prix_produit', 'prix', 'vag']] limited_df = limited_df.astype(float) @@ -75,7 +75,7 @@ 'Everyone does not have the same price index for some goods' -""" Check part_bien_categ """ +''' Check part_bien_categ ''' limited_df_indice_prix_produit = df[['ident_men', 'part_bien_categ', 'numero_categ']] limited_df_indice_prix_produit['numero_categ'] = limited_df_indice_prix_produit['numero_categ'].astype(float) @@ -86,7 +86,7 @@ 'part_bien_categ does not sum up to 1' -""" Check if the sum of the expenditure shares wi adds up to 1 """ +''' Check if the sum of the expenditure shares wi adds up to 1 ''' data_frame_for_reg['somme_wi'] = 0 for i in range(1, 10): @@ -94,7 +94,7 @@ assert (data_frame_for_reg['somme_wi'] == 1).any(), 'The expenditure shares do not sum to 1' -""" Check if the sum of all monthly dummies adds up to 1 """ +''' Check if the sum of all monthly dummies adds up to 1 ''' data_frame_for_reg['somme_mi'] = 0 for i in range(1, 13): @@ -102,10 +102,10 @@ assert (data_frame_for_reg['somme_mi'] == 1).any(), 'The monthly dummies do not sum to 1' -""" | """ +''' | ''' assert 0.999 < sum(data_frame_for_reg['part_depenses_tot']) < 1.001, \ - "The sum of the weights is not equal to 1 for depenses_tot" + 'The sum of the weights is not equal to 1 for depenses_tot' for i in range(1, 10): assert 0.999 < sum(data_frame_for_reg['part_depenses_tot_{}'.format(i)]) < 1.001, \ - "The sum of the weights is not equal to 1 for some depenses_tot_i" + 'The sum of the weights is not equal to 1 for some depenses_tot_i' diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/index.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/index.yaml index 9cb2f9f8..b14ea405 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/index.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/index.yaml @@ -2,7 +2,7 @@ metadata: order: - tva - taxes_tabacs - - taxation_produits_energetiques + - produits_energetiques - taxes_alcools_autres_boissons - taxes_assurances - taxes_energie_dans_logement diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/biogaz_combustible_non_injecte.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/biogaz_combustible_non_injecte.yaml new file mode 100644 index 00000000..dcb5cbbd --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/biogaz_combustible_non_injecte.yaml @@ -0,0 +1,11 @@ +description: Tarif particulier du biogaz combustible non injecté dans le réseau, en €/Mwh +values: + 2022-01-01: + value: 0.00 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677 + title: Article L312-79 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/carbureacteurs.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/carbureacteurs.yaml new file mode 100644 index 00000000..59a648ec --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/carbureacteurs.yaml @@ -0,0 +1,21 @@ +description: Tarif normal des carburéacteurs, en €/Mwh +values: + 2022-01-01: + value: 42.131 + 2023-01-01: + value: 59.481 + 2024-01-01: + value: 76.826 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000048833665/2022-01-01/ + title: Code des impositions sur les biens et services - Art. L312-35 + 2023-01-01: + title: Code des impositions sur les biens et services - Art. L312-35 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000048833665/2023-01-01/ + 2024-01-01: + title: Code des impositions sur les biens et services - Art. L312-35 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000048833665/2023-12-31/ diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/charbons.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/charbons.yaml new file mode 100644 index 00000000..f8951841 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/charbons.yaml @@ -0,0 +1,11 @@ +description: Tarif des charbons, en €/Mwh +values: + 2022-01-01: + value: 14.62 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603785/2022-01-01/ + title: Article L312-36 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/enr_petites_instal_autoconso.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/enr_petites_instal_autoconso.yaml new file mode 100644 index 00000000..df2d97b4 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/enr_petites_instal_autoconso.yaml @@ -0,0 +1,11 @@ +description: Tarif particulier de l'électricité d'origine renouvelable produite par de petites installations et consommée par le producteur, en €/Mwh +values: + 2022-01-01: + value: 0.00 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677 + title: Article L312-79 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/essence_aviation.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/essence_aviation.yaml new file mode 100644 index 00000000..97299237 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/essence_aviation.yaml @@ -0,0 +1,19 @@ +description: Tarif particulier de l'essence d'aviation, en €/Mwh +values: + 2022-01-01: + value: 75.701 + 2024-01-01: + value: 74.576 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000046869423/2022-01-01/ + title: Code des impositions sur les biens et services - Art. L312-79 + 2024-01-01: + title: Code des impositions sur les biens et services - Art. L312-79 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000046869423/2024-01-01/ + notes: + 2024-01-01: + - title: A compter de 2024, l'essence d'aviation ne relève plus d'un tarif particulier mais du tarif normal de la catégorie fiscale des essences mentionné à l'article 2-5. diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/essence_sp95_e10.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/essence_sp95_e10.yaml new file mode 100644 index 00000000..fb04b8de --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/essence_sp95_e10.yaml @@ -0,0 +1,11 @@ +description: Tarif particulier de l'essence SP95-E10, en €/Mwh +values: + 2022-01-01: + value: 74.576 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677/2022-01-01/ + title: Article L312-79 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/essences.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/essences.yaml new file mode 100644 index 00000000..3719ffa1 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/essences.yaml @@ -0,0 +1,11 @@ +description: Tarif normal des essences, en €/Mwh +values: + 2022-01-01: + value: 76.826 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603787/2022-01-01/ + title: Article L312-35 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/ethanol_diesel_ed95.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/ethanol_diesel_ed95.yaml new file mode 100644 index 00000000..c899d4e7 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/ethanol_diesel_ed95.yaml @@ -0,0 +1,16 @@ +description: Tarif particulier de l'éthanol-diesel ED95, en €/Mwh +values: + 2022-01-01: + value: 12.157 + 2022-08-18: + value: 12.119 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677/2022-01-01/ + title: Article L312-79 du Code des impositions sur les biens et services + 2022-08-18: + title: Code des impositions sur les biens et services - Art. L312-79 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000046196768/2022-08-18/ diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/fiouls_domestiques.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/fiouls_domestiques.yaml new file mode 100644 index 00000000..e4e85640 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/fiouls_domestiques.yaml @@ -0,0 +1,11 @@ +description: Tarif des fiouls domestiques, en €/Mwh +values: + 2022-01-01: + value: 15.62 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603785/2022-01-01/ + title: Article L312-36 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/fiouls_lourds.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/fiouls_lourds.yaml new file mode 100644 index 00000000..8803ff9b --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/fiouls_lourds.yaml @@ -0,0 +1,11 @@ +description: Tarif des fiouls lourds, en €/Mwh +values: + 2022-01-01: + value: 12.555 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603785/2022-01-01/ + title: Article L312-36 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gazole_b100.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gazole_b100.yaml new file mode 100644 index 00000000..0f34055a --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gazole_b100.yaml @@ -0,0 +1,11 @@ +description: Tarif particulier du gazole B100, en €/Mwh +values: + 2022-01-01: + value: 12.905 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677/2022-01-01/ + title: Article L312-79 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gazoles.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gazoles.yaml new file mode 100644 index 00000000..e342b982 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gazoles.yaml @@ -0,0 +1,11 @@ +description: Tarif normal des gazoles, en €/Mwh +values: + 2022-01-01: + value: 59.40 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603787/2022-01-01/ + title: Article L312-35 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gazoles_travaux_statiques.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gazoles_travaux_statiques.yaml new file mode 100644 index 00000000..5ecd9ea2 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gazoles_travaux_statiques.yaml @@ -0,0 +1,38 @@ +description: Tarif du gazole utilisé pour les travaux statiques aux fins de la réalisation d’activités économiques et des moteurs de propulsion des engins qui ne circulent pas habituellement sur les voies ouvertes à la circulation publique, en €/Mwh +values: + 2022-01-01: + value: 18.82 + 2024-01-01: + value: 24.81 + 2025-01-01: + value: 30.8 + 2026-01-01: + value: 36.79 + 2027-01-01: + value: 42.78 + 2028-01-01: + value: 48.77 + 2029-01-01: + value: 54.76 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + title: Code des impositions sur les biens et services - Art. L312-35 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603787/2022-01-01/ + 2025-01-01: + title: Code des impositions sur les biens et services - Art. L312-35 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000048842220/2025-01-01/ + 2026-01-01: + title: Code des impositions sur les biens et services - Art. L312-35 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000048842249/2026-01-01/ + 2027-01-01: + title: Code des impositions sur les biens et services - Art. L312-35 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000048842266/2027-01-01/ + 2028-01-01: + title: Code des impositions sur les biens et services - Art. L312-35 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000048842281/2028-01-01/ + 2029-01-01: + title: Code des impositions sur les biens et services - Art. L312-35 + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000048842297/2029-01-01/ diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gn_carburant.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gn_carburant.yaml new file mode 100644 index 00000000..21cc353c --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gn_carburant.yaml @@ -0,0 +1,11 @@ +description: Tarif normal des gaz naturels carburant, en €/Mwh +values: + 2022-01-01: + value: 5.23 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603787/2022-01-01/ + title: Article L312-35 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gn_combustible.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gn_combustible.yaml new file mode 100644 index 00000000..6f6e0c09 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gn_combustible.yaml @@ -0,0 +1,11 @@ +description: Tarif des gaz naturels combustibles, en €/Mwh +values: + 2022-01-01: + value: 8.45 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603785/2022-01-01/ + title: Article L312-36 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gpl_carburant.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gpl_carburant.yaml new file mode 100644 index 00000000..2e3a6aa9 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gpl_carburant.yaml @@ -0,0 +1,11 @@ +description: Tarif normal des gaz de pétrole liquéfiés carburant, en €/Mwh +values: + 2022-01-01: + value: 16.208 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603787/2022-01-01/ + title: Article L312-35 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gpl_combustible.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gpl_combustible.yaml new file mode 100644 index 00000000..450112d9 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/gpl_combustible.yaml @@ -0,0 +1,11 @@ +description: Tarif des gaz de pétrole liquéfiés combustible, en €/Mwh +values: + 2022-01-01: + value: 5.189 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603785/2022-01-01/ + title: Article L312-36 du Code des impositions sur les biens et services diff --git "a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/grisou_et_gaz_assimil\303\251s.yaml" "b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/grisou_et_gaz_assimil\303\251s.yaml" new file mode 100644 index 00000000..f4dee449 --- /dev/null +++ "b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/grisou_et_gaz_assimil\303\251s.yaml" @@ -0,0 +1,11 @@ +description: Tarif particulier du grisou et gaz assimilés combustible, en €/Mwh +values: + 2022-01-01: + value: 0.00 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677/2022-01-01/ + title: Article L312-79 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/index.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/index.yaml new file mode 100644 index 00000000..3c4d8d52 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/index.yaml @@ -0,0 +1,7 @@ +description: Fraction perçue en métropole sur les produits énergétiques, autres que les gaz naturels et les charbons +documentation: | + Notes : + **ATTENTION** A partir de 2022, les valeurs sont en euro par Mwh et non plus en euro par hectolitre. + L’article L. 312-29 prévoit que des arrêtés conjoints du ministre chargé du budget et du ministre chargé de l’énergie déterminent les coefficients des conversions mentionnées aux articles L. 312 25 et L. 312 26 et constatent les tarifs qui en résultent. + Ces arrêtés devraient être publiés au cours de l’année 2022. + NB: tant que ces coeficient ne sont pas publié, des coeficients calculés manuelement sont présent dans "taux_conversion_euro_par_mwh_a_euro_par_hectolitre.yaml" diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/petroles_lampants.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/petroles_lampants.yaml new file mode 100644 index 00000000..dc19228f --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/petroles_lampants.yaml @@ -0,0 +1,11 @@ +description: Tarif du pétrole lampant, en €/Mwh +values: + 2022-01-01: + value: 15.686 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603785/2022-01-01/ + title: Article L312-36 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/superethanol_e85.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/superethanol_e85.yaml new file mode 100644 index 00000000..c4453f59 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/accise_energie_metropole/superethanol_e85.yaml @@ -0,0 +1,11 @@ +description: Tarif patriculier du superéthanol E85, en €/Mwh +values: + 2022-01-01: + value: 17.894 +metadata: + last_value_still_valid_on: "2024-05-21" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677/2022-01-01/ + title: Article L312-79 du Code des impositions sur les biens et services diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/affectation_regionale_ticpe_gazole.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/affectation_regionale_ticpe_gazole.yaml new file mode 100644 index 00000000..ffbdabad --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/affectation_regionale_ticpe_gazole.yaml @@ -0,0 +1,370 @@ +description: Affectation régionale accise gazole B7 +maximum_value_affectation: + description: Valeur maximale pouvant être affectée aux regions + values: + 2007-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2007-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044872354/2022-01-01/ + title: Article L4331-2 du Code général des collectivités territoriales +"11": + description: Affectation votée par l'Île-de-France + values: + 2007-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_idf + unit: currency +"21": + description: Affectation votée par la Champagne-Ardennes + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.83 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_ch_ar + unit: currency +"22": + description: Affectation votée par la Picardie + values: + 2017-01-01: + value: null + 2007-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_pic + unit: currency +"23": + description: Affectation votée par la Haute-Normandie + values: + 2017-01-01: + value: null + 2007-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_h_n + unit: currency +"24": + description: Affectation votée par le Centre-Val de Loire + values: + 2007-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cen + unit: currency + notes: Région Centre (avant 2016) / Centre-Val de Loire (après 2016) +"25": + description: Affectation votée par la Basse Normandie + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.97 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_b_n + unit: currency +"26": + description: Affectation votée par la Bourgogne + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.6 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bourg + unit: currency +"27": + description: Affectation votée par la Bourgogne-Franche-Comté + values: + 2017-01-01: + value: 1.15 +"28": + description: Affectation votée par la Normandie + values: + 2017-01-01: + value: 1.15 +"31": + description: Affectation votée par le Nord-Pas-de-Calais + values: + 2007-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_n_cal + unit: currency +"32": + description: Affectation votée par lesHauts-de-France + values: + 2017-01-01: + value: 1.15 +"41": + description: Affectation votée par la Lorraine + values: + 2017-01-01: + value: null + 2007-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lor + unit: currency +"42": + description: Affectation votée par l'Alsace + values: + 2017-01-01: + value: null + 2007-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_als + unit: currency +"43": + description: Affectation votée par la Franche-Comté + values: + 2017-01-01: + value: null + 2009-01-01: + value: 1.15 + 2007-01-01: + value: 0.95 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_f_c + unit: currency +"44": + description: Grand Est + values: + 2017-01-01: + value: 1.15 +"52": + description: Affectation votée par le Pays de la Loire + values: + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.71 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_loi + unit: currency +"53": + description: Affectation votée par la Bretagne + values: + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.78 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bre + unit: currency +"54": + description: Affectation votée par le Poitou-Charentes + values: + 2017-01-01: + value: null + 2016-07-01: + value: 1.15 + 2007-01-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_c + unit: currency +"72": + description: Affectation votée par l'Aquitaine + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.78 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_aqui + unit: currency +"73": + description: Affectation votée par le Midi-Pyrénées + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.79 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_m_p + unit: currency +"74": + description: Affectation votée par le Limousin + values: + 2017-01-01: + value: null + 2007-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lim + unit: currency +"75": + description: Affectation votée par la Nouvelle-Aquitaine + values: + 2017-01-01: + value: 1.15 +"76": + description: Affectation votée par l'Occitanie + values: + 2017-01-01: + value: 1.15 +"82": + description: Affectation votée par Rhône-Alpes + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.83 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_r_a + unit: currency +"83": + description: Affectation votée par l'Auvergne + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.85 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_auv + unit: currency +"84": + description: Affectation votée par l'Auvergne-Rhône-Alpes + values: + 2017-01-01: + value: 1.15 +"91": + description: Affectation votée par le Languedoc-Roussillon + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.9 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_l_r + unit: currency +"93": + description: Affectation votée par Provence-Alpes-Côte d'Azur + values: + 2008-01-01: + value: 1.15 + 2007-01-01: + value: 0.68 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_paca + unit: currency +"94": + description: Affectation votée par la Corse + values: + 2017-01-01: + value: 1.15 + 2010-01-01: + value: 0.0 + 2009-01-01: + value: 0.6 + 2007-01-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cor + unit: currency +"99": + description: Affectation appliquée à la France (paramètre par défaut si la région n'est pas précisée) + values: + 2017-01-01: + value: 1.15 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +metadata: + order: + - "11" + - "21" + - "22" + - "23" + - "24" + - "25" + - "26" + - "27" + - "28" + - "31" + - "32" + - "41" + - "42" + - "43" + - "44" + - "52" + - "53" + - "54" + - "72" + - "73" + - "74" + - "75" + - "76" + - "82" + - "83" + - "84" + - "91" + - "93" + - "94" + - "99" + label_en: regional affectation - gazole + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044872354/2022-01-01/ + title: Article L4331-2 du Code général des collectivités territoriales + 2007-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000033760682/2017-01-01#LEGIARTI000033760682 + title: Loi n°2006-1666 du 21 décembre 2006 - art. 23 () JORF 27 décembre 2006 - Article 23 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000006615108/2006-12-31/ + title: Article 265 du Code des douanes +documentation: | + Notes : + "Depuis le 1er janvier 2007, Il est affecté aux régions et à la collectivité territoriale de Corse une fraction de tarif applicable aux carburants vendus aux consommateurs finals sur leur territoire. + Une partie de la TIPCE du gazole (identification 22) de l'article Article 265 du Code des douanes revient donc aux régions et à la collectivité territoriale de Corse. + La valeur maximale pouvant être affecté est de 1,15€. + Toutes les régions ne prennent pas l'intégralité de cette affectation, ce qui réduit le montant de la TICPE dans ces dites régions. + Pour retrouver l'affectation votée par chaque région, qui peut être différentes chaques années, il faut se référer aux circulaires publiés aux bulletins officiels des douanes. + On peux les trouver ici: https://www.douane.gouv.fr/la-douane/informations/bulletins-officiels-des-douanes, en cherchant "Droits et taxes applicables aux produits" de l'année voulue" + En 2016, il y a eu une Réforme territoriale, qui commence à être pris en compte pour les affectation et majoration de la TICPE qu'à partir de 2017." + + Depuis 2022, cette affectation est dans l'article L4331-2 du Code général des collectivités territoriales et non plus dans l'Article 265 du Code des douanes. A la difference de tous ce qui touche au accise des taxations indirects, on est toujours en euro par hectolitre. diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/affectation_regionale_ticpe_sp95_e10.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/affectation_regionale_ticpe_sp95_e10.yaml new file mode 100644 index 00000000..9405c7df --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/affectation_regionale_ticpe_sp95_e10.yaml @@ -0,0 +1,365 @@ +description: Affectation régionale accise SP95 E10 +maximum_value_affectation: + description: Valeur maximale pouvant être affectée aux régions + values: + 2010-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2010-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044872354/2022-01-01/ + title: Article L4331-2 du Code général des collectivités territoriales +"11": + description: Affectation votée par l'Île-de-France + values: + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_idf + unit: currency +"21": + description: Affectation votée par la Champagne-Ardennes + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_ch_ar + unit: currency +"22": + description: Affectation votée par la Picardie + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_pic + unit: currency +"23": + description: Affectation votée par la Haute-Normandie + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_h_n + unit: currency +"24": + description: Affectation votée par le Centre-Val de Loire + values: + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cen + unit: currency + notes: Région Centre (avant 2016) / Centre-Val de Loire (après 2016) +"25": + description: Affectation votée par la Basse Normandie + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_b_n + unit: currency +"26": + description: Affectation votée par la Bourgogne + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bourg + unit: currency +"27": + description: Affectation votée par la Bourgogne-Franche-Comté + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"28": + description: Affectation votée par la Normandie + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"31": + description: Affectation votée par le Nord Pas-de-Calais + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_n_cal + unit: currency +"32": + description: Affectation votée par les Hauts-de-France + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"41": + description: Affectation votée par la Lorraine + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lor + unit: currency +"42": + description: Affectation votée par l'Alsace + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_als + unit: currency +"43": + description: Affectation votée par la Franche-Comté + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_f_c + unit: currency +"44": + description: Affectation votée par le Grand Est + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"52": + description: Affectation votée au Pays de la Loire + values: + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_loi + unit: currency +"53": + description: Affectation votée par la Bretagne + values: + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bre + unit: currency +"54": + description: Affectation votée en Poitou-Charentes + values: + 2017-01-01: + value: null + 2016-07-01: + value: 1.77 + 2010-03-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_c + unit: currency +"72": + description: Affectation votée par l'Aquitaine + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_aqui + unit: currency +"73": + description: Affectation votée par le Midi-Pyrénées + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_m_p + unit: currency +"74": + description: Affectation votée par le Limousin + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lim + unit: currency +"75": + description: Affectation votée par la Nouvelle-Aquitaine + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"76": + description: Affectation votée par l'Occitanie + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"82": + description: Affectation votée par Rhône-Alpes + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_r_a + unit: currency +"83": + description: Affectation votée par l'Auvergne + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_auv + unit: currency +"84": + description: Affectation votée par l'Auvergne-Rhône-Alpes + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"91": + description: Affectation votée par le Languedoc-Roussillon + values: + 2017-01-01: + value: null + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_l_r + unit: currency +"93": + description: Affectation votée par Provence-Alpes-Côte d'Azur + values: + 2010-03-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_paca + unit: currency +"94": + description: Affectation votée par la Corse + values: + 2017-01-01: + value: 1.77 + 2010-03-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cor + unit: currency +"99": + description: Affectation appliquée à la France (paramètre par défaut si la région n'est pas précisée) + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +metadata: + order: + - "11" + - "21" + - "22" + - "23" + - "24" + - "25" + - "26" + - "27" + - "28" + - "31" + - "32" + - "41" + - "42" + - "43" + - "44" + - "52" + - "53" + - "54" + - "72" + - "73" + - "74" + - "75" + - "76" + - "82" + - "83" + - "84" + - "91" + - "93" + - "94" + - "99" + label_en: Regional affectation - SP95 E10 + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044872354/2022-01-01/ + title: Article L4331-2 du Code général des collectivités territoriales + 2007-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000033760682/2017-01-01#LEGIARTI000033760682 + title: Loi n°2006-1666 du 21 décembre 2006 - art. 23 () JORF 27 décembre 2006 - Article 23 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000006615108/2006-12-31/ + title: Article 265 du Code des douanes +documentation: | + Notes : + "Depuis le 1er janvier 2007, Il est affecté aux régions et à la collectivité territoriale de Corse une fraction de tarif applicable aux carburants vendus aux consommateurs finals sur leur territoire. + Une partie de la TIPCE sur l'essence SP95 E10 (identification 11 ter) de l'article Article 265 du Code des douanes revient donc aux régions et à la collectivité territoriale de Corse. + La valeur maximale pouvant être affectée est de 1,77€. + Toutes les régions ne prennent pas l'intégralité de cette affectation, ce qui réduit le montant de la TICPE dans ces dites régions. + Pour retrouver l'affectation votée par chaque région, qui peut être différentes chaques années, il faut se référer aux circulaires publiés aux bulletins officiels des douanes. + On peux les trouver ici: https://www.douane.gouv.fr/la-douane/informations/bulletins-officiels-des-douanes, en cherchant "Droits et taxes applicables aux produits" de l'année voulue". + En 2016, il y a eu une Réforme territoriale, qui commence à être pris en compte pour les affectation et majoration de la TICPE qu'à partir de 2017." + + Depuis 2022, cette affectation est dans l'article L4331-2 du Code général des collectivités territoriales et non plus dans l'Article 265 du Code des douanes. A la difference de tous ce qui touche au accise des taxations indirects, on est toujours en euro par hectolitre. diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/affectation_regionale_ticpe_sp95_sp98.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/affectation_regionale_ticpe_sp95_sp98.yaml new file mode 100644 index 00000000..a4ec52fa --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/affectation_regionale_ticpe_sp95_sp98.yaml @@ -0,0 +1,397 @@ +description: Affectation régionale accise SP95 et SP98 +maximum_value_affectation: + description: Valeur maximale pouvant être affectée aux régions + values: + 2010-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2010-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044872354/2022-01-01/ + title: Article L4331-2 du Code général des collectivités territoriales +"11": + description: Affectation votée par l'Île-de-France + values: + 2007-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_idf + unit: currency +"21": + description: Affectation votée par la Champagne-Ardennes + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.17 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_ch_ar + unit: currency +"22": + description: Affectation votée par la Picardie + values: + 2017-01-01: + value: null + 2007-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_pic + unit: currency +"23": + description: Affectation votée par la Haute-Normandie + values: + 2017-01-01: + value: null + 2007-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_h_n + unit: currency +"24": + description: Affectation votée par le Centre-Val de Loire + values: + 2007-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cen + unit: currency + notes: Région Centre (avant 2016) / Centre-Val de Loire (après 2016) +"25": + description: Affectation votée par la Basse Normandie + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.39 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_b_n + unit: currency +"26": + description: Affectation votée par la Bourgogne + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 0.86 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bourg + unit: currency +"27": + description: Affectation votée par la Bourgogne-Franche-Comté + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"28": + description: Affectation votée par la Normandie + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"31": + description: Affectation votée par le Nord Pas-de-Calais + values: + 2017-01-01: + value: null + 2007-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_n_cal + unit: currency +"32": + description: Affectation votée par les Hauts-de-France + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"41": + description: Affectation votée par la Lorraine + values: + 2017-01-01: + value: null + 2007-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lor + unit: currency +"42": + description: Affectation votée par l'Alsace + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.4 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_als + unit: currency +"43": + description: Affectation votée par la Franche-Comté + values: + 2017-01-01: + value: null + 2009-01-01: + value: 1.77 + 2007-01-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_f_c + unit: currency +"44": + description: Affectation votée par le Grand Est + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"52": + description: Affectation votée au Pays de la Loire + values: + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.01 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_loi + unit: currency +"53": + description: Affectation votée par la Bretagne + values: + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.1 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bre + unit: currency +"54": + description: Affectation votée en Poitou-Charentes + values: + 2017-01-01: + value: null + 2016-07-01: + value: 1.77 + 2007-01-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_c + unit: currency +"72": + description: Affectation votée par l'Aquitaine + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.12 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_aqui + unit: currency +"73": + description: Affectation votée par le Midi-Pyrénées + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.11 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_m_p + unit: currency +"74": + description: Affectation votée par le Limousin + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.66 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lim + unit: currency +"75": + description: Affectation votée par la Nouvelle-Aquitaine + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"76": + description: Affectation votée par l'Occitanie + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"82": + description: Affectation votée par Rhône-Alpes + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.17 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_r_a + unit: currency +"83": + description: Affectation votée par l'Auvergne + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.22 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_auv + unit: currency +"84": + description: Affectation votée par l'Auvergne-Rhône-Alpes + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"91": + description: Affectation votée par le Languedoc-Roussillon + values: + 2017-01-01: + value: null + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 1.28 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_l_r + unit: currency +"93": + description: Affectation votée par Provence-Alpes-Côte d'Azur + values: + 2008-01-01: + value: 1.77 + 2007-01-01: + value: 0.98 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_paca + unit: currency +"94": + description: Affectation votée par la Corse + values: + 2017-01-01: + value: 1.77 + 2010-01-01: + value: 0.0 + 2009-01-01: + value: 1.01 + 2007-01-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cor + unit: currency +"99": + description: France (paramètre par défaut si la région n'est pas précisée) + values: + 2017-01-01: + value: 1.77 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +metadata: + order: + - "11" + - "21" + - "22" + - "23" + - "24" + - "25" + - "26" + - "27" + - "28" + - "31" + - "32" + - "41" + - "42" + - "43" + - "44" + - "52" + - "53" + - "54" + - "72" + - "73" + - "74" + - "75" + - "76" + - "82" + - "83" + - "84" + - "91" + - "93" + - "94" + - "99" + label_en: Regional surcharge - SP95 and SP98 + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044872354/2022-01-01/ + title: Article L4331-2 du Code général des collectivités territoriales + 2007-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000033760682/2017-01-01#LEGIARTI000033760682 + title: Loi n°2006-1666 du 21 décembre 2006 - art. 23 () JORF 27 décembre 2006 - Article 23 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000006615108/2006-12-31/ + title: Article 265 du Code des douanes +documentation: | + Notes : + "Depuis le 1er janvier 2007, Il est affecté aux régions et à la collectivité territoriale de Corse une fraction de tarif applicable aux carburants vendus aux consommateurs finals sur leur territoire. + Une partie de la TIPCE sur l'essence SP95 et SP98 (identification 11) de l'article Article 265 du Code des douanes revient donc aux régions et à la collectivité territoriale de Corse. + La valeur maximale pouvant être affectée est de 1,77€. + Toutes les régions ne prennent pas l'intégralité de cette affectation, ce qui réduit le montant de la TICPE dans ces dites régions. + Pour retrouver l'affectation votée par chaque région, qui peut être différentes chaques années, il faut se référer aux circulaires publiés aux bulletins officiels des douanes. + On peux les trouver ici: https://www.douane.gouv.fr/la-douane/informations/bulletins-officiels-des-douanes, en cherchant "Droits et taxes applicables aux produits" de l'année voulue". + En 2016, il y a eu une Réforme territoriale, qui commence à être pris en compte pour les affectation et majoration de la TICPE qu'à partir de 2017." + + Depuis 2022, cette affectation est dans l'article L4331-2 du Code général des collectivités territoriales et non plus dans l'Article 265 du Code des douanes. A la difference de tous ce qui touche au accise des taxations indirects, on est toujours en euro par hectolitre. diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/aide_exceptionnelle_carburant.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/aide_exceptionnelle_carburant.yaml new file mode 100644 index 00000000..b60da58b --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/aide_exceptionnelle_carburant.yaml @@ -0,0 +1,85 @@ +description: Aide exceptionnelle à l'acquisition de carburants +gazole_essence_hl: + description: Gazoles et essences (hl) + values: + 2022-01-01: + value: 15 + 2022-09-01: + value: 25 + 2022-11-16: + value: 8.33 + 2023-01-01: + value: null + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants + 2022-09-01: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants + 2022-11-16: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants + 2023-01-01: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants +gaz_naturels_carburant_mwh: + description: Gaz naturels carburant (MWh) + values: + 2022-01-01: + value: 15 + 2022-09-01: + value: 25 + 2022-11-16: + value: 8.33 + 2023-01-01: + value: null + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants + 2022-09-01: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants + 2022-11-16: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants + 2023-01-01: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants +gpl_carburant_100kg: + description: Aide en €/Mwh aux Supercarburants dont SP95 E10 (indice d'identification 11 ter) + values: + 2022-01-01: + value: 29.13 + 2022-09-01: + value: 48.55 + 2022-11-16: + value: 16.18 + 2023-01-01: + value: null + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants + 2022-09-01: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants + 2022-11-16: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants + 2023-01-01: + - href: https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000045415165 + title: Article 4 du Décret n° 2022-423 du 25 mars 2022 relatif à l'aide exceptionnelle à l'acquisition de carburants +documentation: | + Notes : Date exact de debut 27 mars 2022 jusque août 2022. + Pour le gpl_carburant_100kg : avant 2022 en €/hectolitre et après 2022 en €/Mwh diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/index.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/index.yaml index 5c449150..ebd4e7c9 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/index.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/index.yaml @@ -1,8 +1,16 @@ description: Taxation des produits énergétiques metadata: order: - - produits_energetiques + - accise_energie_metropole + - affectation_regionale_ticpe_gazole + - affectation_regionale_ticpe_sp95_e10 + - affectation_regionale_ticpe_sp95_sp98 + - aide_exceptionnelle_carburant + - majoration_ile_de_france_mobilites_ticpe + - majoration_regionale_ticpe_gazole + - majoration_regionale_ticpe_sp95_sp98_sp95_e10 + - refraction_corse_ticpe + - taux_conversion_euro_par_mwh_a_euro_par_hectolitre - tgap_carburants - - major_regionale_ticpe_gazole - - major_regionale_ticpe_super - description_en: Taxes and excises on energy products + - ticpe + label_en: Taxes and excises on energy products diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/major_regionale_ticpe_gazole.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/major_regionale_ticpe_gazole.yaml deleted file mode 100644 index 3924b357..00000000 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/major_regionale_ticpe_gazole.yaml +++ /dev/null @@ -1,283 +0,0 @@ -description: Major régionale TICPE gazole -alsace: - description: Alsace - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.15 - metadata: - ipp_csv_id: maj_ticpe_die_als - unit: currency-EUR -aquitaine: - description: Aquitaine - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.78 - metadata: - ipp_csv_id: maj_ticpe_die_aqui - unit: currency-EUR -auvergne: - description: Auvergne - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.85 - metadata: - ipp_csv_id: maj_ticpe_die_auv - unit: currency-EUR -basse_normandie: - description: Basse Normandie - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.97 - metadata: - ipp_csv_id: maj_ticpe_die_b_n - unit: currency-EUR -bourgogne: - description: Bourgogne - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.6 - metadata: - ipp_csv_id: maj_ticpe_die_bourg - unit: currency-EUR -bretagne: - description: Bretagne - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.78 - metadata: - ipp_csv_id: maj_ticpe_die_bre - unit: currency-EUR -centre: - description: Centre - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.15 - metadata: - ipp_csv_id: maj_ticpe_die_cen - unit: currency-EUR -champagne_ardennes: - description: Champagne Ardennes - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.83 - metadata: - ipp_csv_id: maj_ticpe_die_ch_ar - unit: currency-EUR -corse: - description: Corse - values: - 2017-01-01: - value: 1.15 - 2010-01-01: - value: 0.0 - 2009-01-01: - value: 0.6 - 2007-01-01: - value: 0.0 - metadata: - ipp_csv_id: maj_ticpe_die_cor - unit: currency-EUR -franche_comte: - description: Franche Comté - values: - 2011-01-01: - value: 2.5 - 2009-01-01: - value: 1.15 - 2007-01-01: - value: 0.95 - metadata: - ipp_csv_id: maj_ticpe_die_f_c - unit: currency-EUR -haute_normandie: - description: Haute Normandie - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.15 - metadata: - ipp_csv_id: maj_ticpe_die_h_n - unit: currency-EUR -ile_france: - description: Ile de France - values: - 2017-01-01: - value: 4.39 - 2012-01-01: - value: 2.5 - 2007-01-01: - value: 1.15 - metadata: - ipp_csv_id: maj_ticpe_die_idf - unit: currency-EUR -languedoc_roussillon: - description: Languedoc Roussillon - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.9 - metadata: - ipp_csv_id: maj_ticpe_die_l_r - unit: currency-EUR -limousin: - description: Limousin - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.15 - metadata: - ipp_csv_id: maj_ticpe_die_lim - unit: currency-EUR -lorraine: - description: Lorraine - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.15 - metadata: - ipp_csv_id: maj_ticpe_die_lor - unit: currency-EUR -midi_pyrenees: - description: Midi Pyrénées - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.79 - metadata: - ipp_csv_id: maj_ticpe_die_m_p - unit: currency-EUR -nord_pas_calais: - description: Nord Pas de Calais - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.15 - metadata: - ipp_csv_id: maj_ticpe_die_n_cal - unit: currency-EUR -pays_loire: - description: Pays de la Loire - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.71 - metadata: - ipp_csv_id: maj_ticpe_die_p_loi - unit: currency-EUR -picardie: - description: Picardie - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.15 - metadata: - ipp_csv_id: maj_ticpe_die_pic - unit: currency-EUR -poitou_charentes: - description: Poitou Charentes - values: - 2016-07-01: - value: 2.5 - 2007-01-01: - value: 0.0 - metadata: - ipp_csv_id: maj_ticpe_die_p_c - unit: currency-EUR -rhone_alpes: - description: Rhône Alpes - values: - 2014-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.83 - metadata: - ipp_csv_id: maj_ticpe_die_r_a - unit: currency-EUR -paca: - description: PACA - values: - 2012-01-01: - value: 2.5 - 2008-01-01: - value: 1.15 - 2007-01-01: - value: 0.68 - metadata: - ipp_csv_id: maj_ticpe_die_paca - unit: currency-EUR -metadata: - order: - - alsace - - aquitaine - - auvergne - - basse_normandie - - bourgogne - - bretagne - - centre - - champagne_ardennes - - corse - - franche_comte - - haute_normandie - - ile_france - - languedoc_roussillon - - limousin - - lorraine - - midi_pyrenees - - nord_pas_calais - - pays_loire - - picardie - - poitou_charentes - - rhone_alpes - - paca - description_en: Regional surcharge - diesel -documentation: | - Notes : - La source de ces données est la suivante : http://www.developpement-durable.gouv.fr/-La-fiscalite-dans-les-dernieres-.html - Pour 2010, la source précédente ne founit pas de table avec les informations. Elles peuvent toutefois être déduites ici : http://www.developpement-durable.gouv.fr/IMG/pdf/15_La_fiscalite_des_produits_petroliers_et_gaziers.pdf - A partir de 2017, la région Île-de-France est autorisée a augmenter sa majoration de 1,89€ pour financer le dézonage du Pass Navigo. - Au 1er juillet 2016, la majoration plafond est mise en application en Poitou-Charentes du fait de l'harmonisation avec l'Aquitaine et le Limousin avec lesquelles elle a fusionné - Pour l'augmentation en Corse en 2017, voir la circulaire du 30/12/2016 fixant les Taux de la Taxe Intérieure de Consommation régionalisés pour les supercarburants et les gazoles applicables au 1er janvier 2017 diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/major_regionale_ticpe_super.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/major_regionale_ticpe_super.yaml deleted file mode 100644 index ce78cbf1..00000000 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/major_regionale_ticpe_super.yaml +++ /dev/null @@ -1,287 +0,0 @@ -description: Major régionale TICPE super -alsace: - description: Alsace - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.4 - metadata: - ipp_csv_id: maj_ticpe_super_als - unit: currency-EUR -aquitaine: - description: Aquitaine - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.12 - metadata: - ipp_csv_id: maj_ticpe_super_aqui - unit: currency-EUR -auvergne: - description: Auvergne - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.22 - metadata: - ipp_csv_id: maj_ticpe_super_auv - unit: currency-EUR -basse_normandie: - description: Basse Normandie - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.39 - metadata: - ipp_csv_id: maj_ticpe_super_b_n - unit: currency-EUR -bourgogne: - description: Bourgogne - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 0.86 - metadata: - ipp_csv_id: maj_ticpe_super_bourg - unit: currency-EUR -bretagne: - description: Bretagne - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.1 - metadata: - ipp_csv_id: maj_ticpe_super_bre - unit: currency-EUR -centre: - description: Centre - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.77 - metadata: - ipp_csv_id: maj_ticpe_super_cen - unit: currency-EUR -champagne_ardennes: - description: Champagne Ardennes - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.17 - metadata: - ipp_csv_id: maj_ticpe_super_ch_ar - unit: currency-EUR -corse: - description: Corse - values: - 2017-01-01: - value: 0.77 - 2010-01-01: - value: 0.0 - 2009-01-01: - value: 1.01 - 2007-01-01: - value: 0.0 - metadata: - ipp_csv_id: maj_ticpe_super_cor - unit: currency-EUR -franche_comte: - description: Franche Comté - values: - 2011-01-01: - value: 2.5 - 2009-01-01: - value: 1.77 - 2007-01-01: - value: 1.35 - metadata: - ipp_csv_id: maj_ticpe_super_f_c - unit: currency-EUR -haute_normandie: - description: Haute Normandie - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.77 - metadata: - ipp_csv_id: maj_ticpe_super_h_n - unit: currency-EUR -ile_france: - description: Ile de France - values: - 2017-01-01: - value: 4.39 - 2012-01-01: - value: 2.5 - 2007-01-01: - value: 1.77 - metadata: - ipp_csv_id: maj_ticpe_super_idf - unit: currency-EUR -languedoc_roussillon: - description: Languedoc Roussillon - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.28 - metadata: - ipp_csv_id: maj_ticpe_super_l_r - unit: currency-EUR -limousin: - description: Limousin - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.66 - metadata: - ipp_csv_id: maj_ticpe_super_lim - unit: currency-EUR -lorraine: - description: Lorraine - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.77 - metadata: - ipp_csv_id: maj_ticpe_super_lor - unit: currency-EUR -midi_pyrenees: - description: Midi Pyrénées - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.11 - metadata: - ipp_csv_id: maj_ticpe_super_m_p - unit: currency-EUR -nord_pas_calais: - description: Nord Pas de Calais - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.77 - metadata: - ipp_csv_id: maj_ticpe_super_n_cal - unit: currency-EUR -pays_loire: - description: Pays de la Loire - values: - 2011-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.01 - metadata: - ipp_csv_id: maj_ticpe_super_p_loi - unit: currency-EUR -picardie: - description: Picardie - values: - 2011-01-01: - value: 2.5 - 2007-01-01: - value: 1.77 - metadata: - ipp_csv_id: maj_ticpe_super_pic - unit: currency-EUR -poitou_charentes: - description: Poitou Charentes - values: - 2016-07-01: - value: 2.5 - 2007-01-01: - value: 0.0 - metadata: - ipp_csv_id: maj_ticpe_super_p_c - unit: currency-EUR -rhone_alpes: - description: Rhône Alpes - values: - 2014-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 1.17 - metadata: - ipp_csv_id: maj_ticpe_super_r_a - unit: currency-EUR -paca: - description: PACA - values: - 2012-01-01: - value: 2.5 - 2008-01-01: - value: 1.77 - 2007-01-01: - value: 0.98 - metadata: - ipp_csv_id: maj_ticpe_super_paca - unit: currency-EUR -metadata: - order: - - alsace - - aquitaine - - auvergne - - basse_normandie - - bourgogne - - bretagne - - centre - - champagne_ardennes - - corse - - franche_comte - - haute_normandie - - ile_france - - languedoc_roussillon - - limousin - - lorraine - - midi_pyrenees - - nord_pas_calais - - pays_loire - - picardie - - poitou_charentes - - rhone_alpes - - paca - description_en: Regional surcharge - gasoline -documentation: | - Notes : - La source de ces données est la suivante : http://www.developpement-durable.gouv.fr/-La-fiscalite-dans-les-dernieres-.html - Pour 2010, la source précédente ne founit pas de table avec les informations. Elles peuvent toutefois être déduites ici : http://www.developpement-durable.gouv.fr/IMG/pdf/15_La_fiscalite_des_produits_petroliers_et_gaziers.pdf - A partir de 2017, la région Île-de-France est autorisée a augmenter sa majoration de 1,89€ pour financer le dézonage du Pass Navigo. - Au 1er juillet 2016, la majoration plafond est mise en application en Poitou-Charentes du fait de l'harmonisation avec l'Aquitaine et le Limousin avec lesquelles elle a fusionné - Pour l'augmentation en Corse en 2017, voir la circulaire du 30/12/2016 fixant les Taux de la Taxe Intérieure de Consommation régionalisés pour les supercarburants et les gazoles applicables au 1er janvier 2017 diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/majoration_ile_de_france_mobilites_ticpe.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/majoration_ile_de_france_mobilites_ticpe.yaml new file mode 100644 index 00000000..6a9c93b5 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/majoration_ile_de_france_mobilites_ticpe.yaml @@ -0,0 +1,69 @@ +description: Majoration en €/Mwh de l'accise en Île-de-France, par l'établissement "Île-de-France Mobilité" +major_mobilites_tipce_gazole: + description: Majoration des gazoles (indice d'identification 22) + values: + 2022-01-01: + value: 1.89 + 2017-01-01: + value: 1.89 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603775 + title: Article L312-40 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000044595168/2021-12-30/ + title: Ordonnance n° 2021-1843 du 22 décembre 2021 + 2017-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000033760682/2017-01-01#LEGIARTI000033760682 + title: LOI n° 2016-1917 du 29 décembre 2016 de finances pour 2017 (1) - Article 24 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000033777714/2017-01-01 + title: Article 265 A ter du Code des douanes +major_mobilites_tipce_sp95_sp98: + description: Majoration des supercarburants dont SP95 et SP98 (indice d'identification 11) + values: + 2022-01-01: + value: 1.148 + 2017-01-01: + value: 1.02 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603775 + title: Article L312-40 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000044595168/2021-12-30/ + title: Ordonnance n° 2021-1843 du 22 décembre 2021 + 2017-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000033760682/2017-01-01#LEGIARTI000033760682 + title: LOI n° 2016-1917 du 29 décembre 2016 de finances pour 2017 (1) - Article 24 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000033777714/2017-01-01 + title: Article 265 A ter du Code des douanes +major_mobilites_tipce_sp95_e10: + description: Majoration des supercarburants dont SP95 E10 (indice d'identification 11 ter) + values: + 2022-01-01: + value: 1.148 + 2017-01-01: + value: 1.02 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603775 + title: Article L312-40 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000044595168/2021-12-30/ + title: Ordonnance n° 2021-1843 du 22 décembre 2021 + 2017-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000033760682/2017-01-01#LEGIARTI000033760682 + title: LOI n° 2016-1917 du 29 décembre 2016 de finances pour 2017 (1) - Article 24 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000033777714/2017-01-01 + title: Article 265 A ter du Code des douanes +documentation: | + Notes : + + A partir de 2022: €/Mwh + Avant 2022: €/hectolitre diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/majoration_regionale_ticpe_gazole.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/majoration_regionale_ticpe_gazole.yaml new file mode 100644 index 00000000..97046674 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/majoration_regionale_ticpe_gazole.yaml @@ -0,0 +1,388 @@ +description: Majoration régionale de l'accise du gazole +"11": + description: Majoration déterminée par l'Île-de-France + values: + 2022-01-01: + value: 1.35 + 2012-01-01: + value: 1.35 + 2011-07-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_idf + unit: currency +"21": + description: Majoration déterminée par la Champagne-Ardennes + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_ch_ar + unit: currency +"22": + description: Majoration déterminée par la Picardie + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_pic + unit: currency +"23": + description: Majoration déterminée par la Haute-Normandie + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_h_n + unit: currency +"24": + description: Majoration déterminée par le Centre-Val de Loire + values: + 2022-01-01: + value: 1.35 + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cen + unit: currency + notes: Région Centre (avant 2016) / Centre-Val de Loire (après 2016) +"25": + description: Majoration déterminée par la Basse Normandie + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_b_n + unit: currency +"26": + description: Majoration déterminée par la Bourgogne + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bourg + unit: currency +"27": + description: Majoration déterminée par la Bourgogne-Franche-Comté + values: + 2022-01-01: + value: 1.35 + 2017-01-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"28": + description: Majoration déterminée par la Normandie + values: + 2022-01-01: + value: 1.35 + 2017-01-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"31": + description: Majoration déterminée par le Nord-Pas-de-Calais + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_n_cal + unit: currency +"32": + description: Majoration déterminée par les Hauts-de-France + values: + 2022-01-01: + value: 1.35 + 2017-01-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"41": + description: Majoration déterminée par la Lorraine + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lor + unit: currency +"42": + description: Majoration déterminée par l'Alsace + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_als + unit: currency +"43": + description: Majoration déterminée par la Franche-Comté + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_f_c + unit: currency +"44": + description: Majoration déterminée par le Grand Est + values: + 2022-01-01: + value: 1.35 + 2017-01-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"52": + description: Majoration déterminée par le Pays de la Loire + values: + 2022-01-01: + value: 1.35 + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_loi + unit: currency +"53": + description: Majoration déterminée par la Bretagne + values: + 2022-01-01: + value: 1.35 + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bre + unit: currency +"54": + description: Majoration déterminée par le Poitou-Charentes + values: + 2017-01-01: + value: null + 2016-07-01: + value: 1.35 + 2011-07-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_c + unit: currency +"72": + description: Majoration déterminée par l'Aquitaine + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_aqui + unit: currency +"73": + description: Majoration déterminée par le Midi-Pyrénées + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_m_p + unit: currency +"74": + description: Majoration déterminée par le Limousin + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lim + unit: currency +"75": + description: Majoration déterminée par la Nouvelle-Aquitaine + values: + 2022-01-01: + value: 1.35 + 2017-01-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"76": + description: Majoration déterminée par l'Occitanie + values: + 2022-01-01: + value: 1.35 + 2017-01-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"82": + description: Majoration déterminée par Rhône-Alpes + values: + 2017-01-01: + value: null + 2014-01-01: + value: 1.35 + 2011-07-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_r_a + unit: currency +"83": + description: Majoration déterminée par l'Auvergne + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_auv + unit: currency +"84": + description: Majoration déterminée par l'Auvergne-Rhône-Alpes + values: + 2022-01-01: + value: 1.08 + 2019-01-01: + value: 1.08 + 2017-01-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"91": + description: Majoration déterminée par le Languedoc-Roussillon + values: + 2017-01-01: + value: null + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_l_r + unit: currency +"93": + description: Majoration déterminée par la Provence-Alpes-Côte d'Azur + values: + 2022-01-01: + value: 1.35 + 2011-07-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_paca + unit: currency +"94": + description: Majoration déterminée par la Corse + values: + 2022-01-01: + value: 0.0 + 2011-07-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cor + unit: currency +"99": + description: Majoration appliquée à la France (paramètre par défaut si la région n'est pas précisée) + values: + 2022-01-01: + value: 1.35 + 2017-01-01: + value: 1.35 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +metadata: + order: + - "11" + - "21" + - "22" + - "23" + - "24" + - "25" + - "26" + - "27" + - "28" + - "31" + - "32" + - "41" + - "42" + - "43" + - "44" + - "52" + - "53" + - "54" + - "72" + - "73" + - "74" + - "75" + - "76" + - "82" + - "83" + - "84" + - "91" + - "93" + - "94" + - "99" + label_en: Regional surcharge - diesel + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000044595168/2021-12-30/ + title: Ordonnance n° 2021-1843 du 22 décembre 2021 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603775 + title: Article L312-39 du Code des impositions sur les biens et services + 2007-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000021575915/2010-01-01/ + title: LOI n° 2009-1673 du 30 décembre 2009 de finances pour 2010 (1) - Article 94 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000021642529/2010-07-01 + title: Article 265 A bis du Code des douanes +documentation: | + Notes : + "Depuis le 1er juillet 2010, les conseils régionaux et l'assemblée de Corse peuvent majorer le tarif de la taxe intérieure de consommation applicable aux carburants vendus aux consommateurs finals sur leur territoire. + Celle-ci s'ajoute à la TIPCE du gazole (identification 22) de l'article Article 265 du Code des douanes, et revient donc aux régions et à la collectivité territoriale de Corse. + La valeur maximale de la majoration est de 1,35€. + Toutes les régions ne prennent votent pas le montant maximum de cette majoration. + Pour retrouver la majoration votée par chaque région, qui peut être différentes chaques années, il faut se référer aux circulaires publiés aux bulletins officiels des douanes. + On peux les trouver ici: https://www.douane.gouv.fr/la-douane/informations/bulletins-officiels-des-douanes, en cherchant "Droits et taxes applicables aux produits" de l'année voulue" + En 2016, il y a eu une Réforme territoriale, qui commence à être pris en compte pour les affectation et majoration de la TICPE qu'à partir de 2017. + + A partir de 2022: €/Mwh + Avant 2022: €/hectolitre diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/majoration_regionale_ticpe_sp95_sp98_sp95_e10.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/majoration_regionale_ticpe_sp95_sp98_sp95_e10.yaml new file mode 100644 index 00000000..074b20b6 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/majoration_regionale_ticpe_sp95_sp98_sp95_e10.yaml @@ -0,0 +1,384 @@ +description: Majoration régionale de l'accise du SP95, SP98 et SP95 E10 +"11": + description: Majoration déterminée par l'Île-de-France + values: + 2022-01-01: + value: 0.821 + 2012-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_idf + unit: currency +"21": + description: Majoration déterminée par la Champagne-Ardennes + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_ch_ar + unit: currency +"22": + description: Majoration déterminée par la Picardie + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_pic + unit: currency +"23": + description: Majoration déterminée par la Haute-Normandie + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_h_n + unit: currency +"24": + description: Majoration déterminée par le Centre-Val de Loire + values: + 2022-01-01: + value: 0.821 + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cen + unit: currency + notes: Région Centre (avant 2016) / Centre-Val de Loire (après 2016) +"25": + description: Majoration déterminée par la Basse Normandie + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_b_n + unit: currency +"26": + description: Majoration déterminée par la Bourgogne + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bourg + unit: currency +"27": + description: Majoration déterminée par la Bourgogne-Franche-Comté + values: + 2022-01-01: + value: 0.821 + 2017-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"28": + description: Majoration déterminée par la Normandie + values: + 2022-01-01: + value: 0.821 + 2017-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"31": + description: Majoration déterminée par le Nord-Pas-de-Calais + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_n_cal + unit: currency +"32": + description: Majoration déterminée par les Hauts-de-France + values: + 2022-01-01: + value: 0.821 + 2017-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"41": + description: Majoration déterminée par la Lorraine + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lor + unit: currency +"42": + description: Majoration déterminée par l'Alsace + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_als + unit: currency +"43": + description: Majoration déterminée par la Franche-Comté + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_f_c + unit: currency +"44": + description: Majoration déterminée par le Grand Est + values: + 2022-01-01: + value: 0.821 + 2017-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"52": + description: Majoration déterminée par le Pays de la Loire + values: + 2022-01-01: + value: 0.821 + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_loi + unit: currency +"53": + description: Majoration déterminée par la Bretagne + values: + 2022-01-01: + value: 0.821 + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_bre + unit: currency +"54": + description: Majoration déterminée par le Poitou-Charentes + values: + 2017-01-01: + value: null + 2016-07-01: + value: 0.73 + 2007-01-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_p_c + unit: currency +"72": + description: Majoration déterminée par l'Aquitaine + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_aqui + unit: currency +"73": + description: Majoration déterminée par le Midi-Pyrénées + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_m_p + unit: currency +"74": + description: Majoration déterminée par le Limousin + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_lim + unit: currency +"75": + description: Majoration déterminée par la Nouvelle-Aquitaine + values: + 2022-01-01: + value: 0.821 + 2017-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"76": + description: Majoration déterminée par l'Occitanie + values: + 2022-01-01: + value: 0.821 + 2017-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"82": + description: Majoration déterminée par Rhône-Alpes + values: + 2017-01-01: + value: null + 2014-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_r_a + unit: currency +"83": + description: Majoration déterminée par l'Auvergne + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_auv + unit: currency +"84": + description: Majoration déterminée par l'Auvergne-Rhône-Alpes + values: + 2022-01-01: + value: 0.653 + 2019-01-01: + value: 0.58 + 2017-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +"91": + description: Majoration déterminée par le Languedoc-Roussillon + values: + 2017-01-01: + value: null + 2011-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_l_r + unit: currency +"93": + description: Majoration déterminée par la Provence-Alpes-Côte d'Azur + values: + 2022-01-01: + value: 0.821 + 2012-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_paca + unit: currency +"94": + description: Majoration déterminée par la Corse + values: + 2022-01-01: + value: 0.0 + 2011-01-01: + value: 0.0 + metadata: + last_value_still_valid_on: "2024-07-01" + ipp_csv_id: maj_ticpe_super_cor + unit: currency +"99": + description: Majoration appliquée à la France (paramètre par défaut si la région n'est pas précisée) + values: + 2022-01-01: + value: 0.821 + 2017-01-01: + value: 0.73 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency +metadata: + order: + - "11" + - "21" + - "22" + - "23" + - "24" + - "25" + - "26" + - "27" + - "28" + - "31" + - "32" + - "41" + - "42" + - "43" + - "44" + - "52" + - "53" + - "54" + - "72" + - "73" + - "74" + - "75" + - "76" + - "82" + - "83" + - "84" + - "91" + - "93" + - "94" + - "99" + label_en: Regional surcharge - SP95 and SP98 et SP95 E10 + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000044595168/2021-12-30/ + title: Ordonnance n° 2021-1843 du 22 décembre 2021 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603777 + title: Article L312-39 du Code des impositions sur les biens et services + 2007-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000021575915/2010-01-01/ + title: LOI n° 2009-1673 du 30 décembre 2009 de finances pour 2010 (1) - Article 94 + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000021642529/2010-07-01 + title: Article 265 A bis du Code des douanes +documentation: | + Notes : + "Depuis le 1er juillet 2010, les conseils régionaux et l'assemblée de Corse peuvent majorer le tarif de la taxe intérieure de consommation applicable aux carburants vendus aux consommateurs finals sur leur territoire. + Celle-ci s'ajoute à la TIPCE sur les essences SP95, SP98 et SP95 E10 (identification 11 et 11 ter) de l'article Article 265 du Code des douanes, et revient donc aux régions et à la collectivité territoriale de Corse. + La valeur maximale de la majoration est de 0,73€. + Toutes les régions ne prennent votent pas le montant maximum de cette majoration. + Pour retrouver la majoration votée par chaque région, qui peut être différentes chaques années, il faut se référer aux circulaires publiés aux bulletins officiels des douanes. + On peux les trouver ici: https://www.douane.gouv.fr/la-douane/informations/bulletins-officiels-des-douanes, en cherchant "Droits et taxes applicables aux produits" de l'année voulue" + En 2016, il y a eu une Réforme territoriale, qui commence à être pris en compte pour les affectation et majoration de la TICPE qu'à partir de 2017." + + A partir de 2022: €/Mwh + Avant 2022: €/hectolitre diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/refraction_corse_ticpe.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/refraction_corse_ticpe.yaml new file mode 100644 index 00000000..93f0d708 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/refraction_corse_ticpe.yaml @@ -0,0 +1,64 @@ +description: Réfraction en €/Mwh de l'accise en Corse +refraction_corse_tipce_sp95_sp98: + description: Minoration des supercarburants dont SP95 et SP98 (indice d'identification 11) + values: + 2022-01-01: + value: 1.125 + 2002-01-01: + value: 1.0 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603773 + title: Article L312-41 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000044595168/2021-12-30/ + title: Ordonnance n° 2021-1843 du 22 décembre 2021 + 2002-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000006716555/2002-01-01#LEGIARTI000006716555 + title: Ordonnance n° 2000-916 du 19 septembre 2000 portant adaptation de la valeur en euros de certains montants exprimé en francs dans les textes législatifs + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000021642529/2010-07-01 + title: Article 265 A bis du Code des douanes +refraction_corse_tipce_super_plombe: + description: Minoration des supercarburants contenant un additif (indice d'identification 11 bis) + values: + 2022-01-01: + value: null + 2002-01-01: + value: 1.0 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2002-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000021642529/2010-07-01 + title: Article 265 A bis du Code des douanes + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000006716555/2002-01-01#LEGIARTI000006716555 + title: Ordonnance n° 2000-916 du 19 septembre 2000 portant adaptation de la valeur en euros de certains montants exprimé en francs dans les textes législatifs +refraction_corse_tipce_sp95_e10: + description: Minoration des supercarburants SP95 E10 (indice d'identification 11 ter) + values: + 2022-01-01: + value: 1.125 + 2019-01-01: + value: 1.0 + metadata: + last_value_still_valid_on: "2024-07-01" + unit: currency + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603773 + title: Article L312-41 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000044595168/2021-12-30/ + title: Ordonnance n° 2021-1843 du 22 décembre 2021 + 2019-01-01: + - href: https://www.legifrance.gouv.fr/loda/id/LEGIARTI000037935724/2018-12-31/ + title: LOI n° 2018-1317 du 28 décembre 2018 de finances pour 2019 (1) - art. 66 (V) + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000037988891/2019-07-01/ + title: Article 265 A bis du Code des douanes +documentation: | + Notes : + + A partir de 2022: €/Mwh + Avant 2022: €/hectolitre diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/taux_conversion_euro_par_mwh_a_euro_par_hectolitre.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/taux_conversion_euro_par_mwh_a_euro_par_hectolitre.yaml new file mode 100644 index 00000000..4c0c9c90 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/taux_conversion_euro_par_mwh_a_euro_par_hectolitre.yaml @@ -0,0 +1,71 @@ +description: Taux de conversion des fractions perçues en métropole sur les produits énergétiques, autres que les gaz naturels et les charbons +taux_conversion_essences: + description: Taux de conversion des essences (€/Mwh vers €/hectolitre) + values: + 2022-01-01: + value: 0.889 + metadata: + unit: /1 + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677 + title: Articles L312-25 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000046196817 + title: Articles L312-6 du Code des impositions sur les biens et services +taux_conversion_essence_sp95_e10: + description: Taux de conversion des essences SP95-E10 (€/Mwh vers €/hectolitre) + values: + 2022-01-01: + value: 0.889 + metadata: + unit: /1 + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677 + title: Articles L312-25 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000046196817 + title: Articles L312-26 du Code des impositions sur les biens et services +taux_conversion_gazoles: + description: Taux de conversion des gazoles (€/Mwh vers €/hectolitre) + values: + 2022-01-01: + value: 1 + metadata: + unit: /1 + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677 + title: Articles L312-25 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000046196817 + title: Articles L312-26 du Code des impositions sur les biens et services +taux_conversion_gpl_carburant: + description: Taux de conversion des gaz de pétrole liquéfiés carburant (€/Mwh vers €/hectolitre) + values: + 2022-01-01: + value: 1.278 + metadata: + unit: /1 + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677 + title: Articles L312-25 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000046196817 + title: Articles L312-26 du Code des impositions sur les biens et services +taux_conversion_superethanol_e85: + description: Taux de conversion des superéthanol E85 (€/Mwh vers €/hectolitre) + values: + 2022-01-01: + value: 0.661 + metadata: + unit: /1 + reference: + 2022-01-01: + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000044603677 + title: Articles L312-25 du Code des impositions sur les biens et services + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000046196817 + title: Articles L312-26 du Code des impositions sur les biens et services +documentation: | + Notes : + L’article L. 312-29 prévoit que des arrêtés conjoints du ministre chargé du budget et du ministre chargé de l’énergie déterminent les coefficients des conversions mentionnées aux articles L. 312 25 et L. 312 26 et constatent les tarifs qui en résultent. + Ces arrêtés devraient être publiés au cours de l’année 2022. + NB: tant que ces coeficient ne sont pas publié, des coeficients calculés manuelement sont présent dans "taux_conversion_euro_par_mwh_a_euro_par_hectolitre.yaml" diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/tgap_carburants.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/tgap_carburants.yaml index 3164503f..7ad66fb3 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/tgap_carburants.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/tgap_carburants.yaml @@ -180,7 +180,7 @@ metadata: 2005-01-01: title: Loi 2004-1484 du 30/12/2004 (LF pour 2005) - art. 32 href: https://www.legifrance.gouv.fr/affichTexteArticle.do?idArticle=LEGIARTI000006322113&cidTexte=JORFTEXT000000789373 - date_parution_jo: + official_journal_date: 2019-01-01: 2018-12-30 2017-01-01: 2016-12-30 2014-01-01: 2013-12-30 @@ -190,7 +190,7 @@ metadata: 2007-01-01: 2005-12-31 2006-01-01: 2005-12-31 2005-01-01: 2004-12-31 - description_en: Tax on polluting activities - fuel + label_en: Tax on polluting activities - fuel documentation: | Notes : Données renseignées dans l'article 266 quindecies du code des douanes diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/ticpe.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/ticpe.yaml index 594bb6de..93e2818f 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/ticpe.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/produits_energetiques/ticpe.yaml @@ -36,9 +36,7 @@ goudrons_utilises_comme_combustibles_100kg: value: null metadata: ipp_csv_id: ticpe_goudron_combustible - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency white_spirit_utilise_comme_combustible_hectolitre: description: White Spirit utilisé comme combustible (hectolitre) values: @@ -60,9 +58,7 @@ white_spirit_utilise_comme_combustible_hectolitre: value: null metadata: ipp_csv_id: ticpe_white_spirit_combustible - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency essences_speciales_utilisees_comme_carburants_combustibles_hectolitre: description: Essences spéciales utilisées comme carburants et combustibles (hectolitre) values: @@ -102,9 +98,7 @@ essences_speciales_utilisees_comme_carburants_combustibles_hectolitre: value: null metadata: ipp_csv_id: ticpe_essences_speciales - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency huiles_legeres_preparation_essence_aviation_hectolitre: description: Huiles légères et préparation, essence d'aviation (hectolitre) values: @@ -140,11 +134,9 @@ huiles_legeres_preparation_essence_aviation_hectolitre: value: null metadata: ipp_csv_id: ticpe_huiles_legeres_ess_avion - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency super_95_98: - description: Supercarburants dont SP95 et SP98 (hectolitre)* + description: Supercarburants dont SP95 et SP98 (hectolitre)* (indice d'identification 11) values: 2018-01-01: value: 68.29 @@ -178,11 +170,9 @@ super_95_98: value: null metadata: ipp_csv_id: ticpe_sp95_sp98 - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency super_plombe: - description: Supercarburants contenant un additif (hectolitre) + description: Supercarburants contenant un additif (hectolitre) (indice d'identification 11 bis) values: 2018-01-01: value: 71.56 @@ -216,11 +206,9 @@ super_plombe: value: null metadata: ipp_csv_id: ticpe_super_additif - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency super_e10: - description: SuperE10 (hectolitre) * + description: SuperE10 (hectolitre) * (indice d'identification 11 ter) values: 2018-01-01: value: 66.29 @@ -236,7 +224,7 @@ super_e10: value: null metadata: ipp_csv_id: ticpe_super_e10 - unit: currency-EUR + unit: currency essence_normale_hectolitre: description: Essence normale (hectolitre) values: @@ -260,7 +248,7 @@ essence_normale_hectolitre: value: null metadata: ipp_csv_id: ticpe_essence_normale - unit: currency-FRF + unit: currency carburateurs_type_essence_sous_conditions_hectolitre: description: Carburateurs type essence, sous conditions (hectolitre) values: @@ -289,9 +277,7 @@ carburateurs_type_essence_sous_conditions_hectolitre: 1993-01-01: value: 11.97 metadata: - unit: - 2002-01-01: currency-EUR - 1993-01-01: currency-FRF + unit: currency carburateurs_type_essence_carburants_avion_hectolitre: description: Carburateurs type essence, carburants pour avion (hectolitre) values: @@ -330,9 +316,7 @@ carburateurs_type_essence_carburants_avion_hectolitre: 1993-01-01: value: null metadata: - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency carburateurs_type_essence_autres_hectolitre: description: Carburateurs type essence, autres (hectolitre) values: @@ -349,7 +333,7 @@ carburateurs_type_essence_autres_hectolitre: 1993-01-01: value: null metadata: - unit: currency-EUR + unit: currency autres_huiles_legeres_hectolitre: description: Autres huiles légères (hectolitre) values: @@ -388,9 +372,7 @@ autres_huiles_legeres_hectolitre: 1993-01-01: value: null metadata: - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency petrole_lampant_utilise_comme_combustible_hectolitre: description: Pétrole lampant utilisé comme combustible (hectolitre) values: @@ -411,9 +393,7 @@ petrole_lampant_utilise_comme_combustible_hectolitre: 1993-01-01: value: null metadata: - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency petrole_lampant_autre_hectolitre: description: Pétrole lampant, autre (hectolitre) values: @@ -440,9 +420,7 @@ petrole_lampant_autre_hectolitre: 1993-01-01: value: null metadata: - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency carbureacteurs_type_petrole_lampant_sous_conditions_hectolitre: description: Carburéacteurs, type pétrole lampant , sous conditions (hectolitre) values: @@ -472,9 +450,7 @@ carbureacteurs_type_petrole_lampant_sous_conditions_hectolitre: value: 11.97 metadata: ipp_csv_id: ticpe_carbu_petrole_lampant_cond - unit: - 2002-01-01: currency-EUR - 1993-01-01: currency-FRF + unit: currency carbureacteurs_type_petrole_lampant_carburant_moteurs_avion_hectolitre: description: Carburéacteurs, type pétrole lampant, carburant moteurs d'avion (hectolitre) values: @@ -502,9 +478,7 @@ carbureacteurs_type_petrole_lampant_carburant_moteurs_avion_hectolitre: value: null metadata: ipp_csv_id: ticpe_carbu_petrole_lampant - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency carbureacteurs_type_petrole_lampant_autres_hectolitre: description: Carburéacteurs, type pétrole lampant, autres (hectolitre) values: @@ -522,7 +496,7 @@ carbureacteurs_type_petrole_lampant_autres_hectolitre: value: null metadata: ipp_csv_id: ticpe_carbu_petrole_lampant_autres - unit: currency-EUR + unit: currency autres_huiles_moyennes_hectolitre: description: Autres huiles moyennes (hectolitre) values: @@ -550,9 +524,7 @@ autres_huiles_moyennes_hectolitre: value: null metadata: ipp_csv_id: ticpe_autres_huiles_moyennes - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency gazole_comme_carburants_sous_conditions_hectolitre: description: Gazole comme carburants sous conditions (hectolitre) values: @@ -592,9 +564,7 @@ gazole_comme_carburants_sous_conditions_hectolitre: value: null metadata: ipp_csv_id: ticpe_gazole_cond - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency gazole_fioul_domestique_hectolitre: description: Gazole, fioul domestique (hectolitre) values: @@ -612,9 +582,9 @@ gazole_fioul_domestique_hectolitre: value: null metadata: ipp_csv_id: ticpe_fioul_domestique - unit: currency-EUR + unit: currency gazole: - description: Gazole, autres (hectolitre) * + description: Gazole, autres (hectolitre) (indice d'identification 22) values: 2018-01-01: value: 59.4 @@ -652,11 +622,9 @@ gazole: value: null metadata: ipp_csv_id: ticpe_diesel - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency gazol_b_10_hectolitre: - description: Gazol B 10 (hectolitre) + description: Gazol B 10 (hectolitre) (indice d'identification 22 bis) values: 2018-01-01: value: 59.4 @@ -665,7 +633,7 @@ gazol_b_10_hectolitre: 1993-01-01: value: null metadata: - unit: currency-EUR + unit: currency fioul_lourd_100kg_net: description: Fioul lourd (100kg net) values: @@ -685,7 +653,7 @@ fioul_lourd_100kg_net: value: null metadata: ipp_csv_id: ticpe_fioul_lourd - unit: currency-EUR + unit: currency fioul_avec_point_eclair_inferieur_120deg_c_hectolitre: description: Fioul avec point d'éclair inférieur à 120° C (hectolitre) values: @@ -699,9 +667,7 @@ fioul_avec_point_eclair_inferieur_120deg_c_hectolitre: value: null metadata: ipp_csv_id: ticpe_fioul_lourd_cond - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency fioul_lourd_hts_100kg: description: Fioul lourd HTS (100kg) values: @@ -729,9 +695,7 @@ fioul_lourd_hts_100kg: value: null metadata: ipp_csv_id: ticpe_fioul_lourd_hts - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency fioul_lourd_bts_100kg: description: Fioul lourd BTS (100kg) values: @@ -759,9 +723,7 @@ fioul_lourd_bts_100kg: value: null metadata: ipp_csv_id: ticpe_fioul_lourd_bts - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency propane_utilise_comme_carburants_sous_conditions_100kg_nets: description: Propane utilisé comme carburants, sous conditions (100kg nets) values: @@ -783,9 +745,7 @@ propane_utilise_comme_carburants_sous_conditions_100kg_nets: value: null metadata: ipp_csv_id: ticpe_propane_cond - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency propane_utilise_comme_carburants_autres_100kg_nets: description: Propane utilisé comme carburants, autres (100kg nets) values: @@ -807,9 +767,7 @@ propane_utilise_comme_carburants_autres_100kg_nets: value: null metadata: ipp_csv_id: ticpe_propane_autres - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency propane_utilise_comme_carburants_usages_autres_que_comme_carburant_100kg_nets: description: Propane utilisé comme carburants, usages autres que comme carburant (100kg nets) values: @@ -818,7 +776,7 @@ propane_utilise_comme_carburants_usages_autres_que_comme_carburant_100kg_nets: 1993-01-01: value: null metadata: - unit: currency-EUR + unit: currency butanes_liquefies_sous_condition_100kg_nets: description: Butanes liquéfiés, sous condition (100kg nets) values: @@ -840,9 +798,7 @@ butanes_liquefies_sous_condition_100kg_nets: value: null metadata: ipp_csv_id: ticpe_butane_cond - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency butanes_liquefies_autres_100kg_nets: description: Butanes liquéfiés, autres (100kg nets) values: @@ -864,9 +820,7 @@ butanes_liquefies_autres_100kg_nets: value: null metadata: ipp_csv_id: ticpe_butane_autres - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency butanes_liquefies_usages_autres_que_comme_carburant_100kg_nets: description: Butanes liquéfiés, usages autres que comme carburant (100kg nets) values: @@ -875,7 +829,7 @@ butanes_liquefies_usages_autres_que_comme_carburant_100kg_nets: 1993-01-01: value: null metadata: - unit: currency-EUR + unit: currency autres_gaz_petrole_liquefies_utilises_comme_carburants_sous_conditions_100kg: description: Autres gaz de pétrole liquéfiés utilisés comme carburants, sous conditions (100kg) values: @@ -907,9 +861,7 @@ autres_gaz_petrole_liquefies_utilises_comme_carburants_sous_conditions_100kg: value: 53.43 metadata: ipp_csv_id: ticpe_autres_gaz_liq_cond - unit: - 2002-01-01: currency-EUR - 1993-01-01: currency-FRF + unit: currency autres_gaz_petrole_liquefies_utilises_comme_carburants_autres_100kg: description: Autres gaz de pétrole liquéfiés utilisés comme carburants, autres (100kg) values: @@ -943,9 +895,7 @@ autres_gaz_petrole_liquefies_utilises_comme_carburants_autres_100kg: value: 216.0 metadata: ipp_csv_id: ticpe_autres_gaz_liq_autres - unit: - 2002-01-01: currency-EUR - 1993-01-01: currency-FRF + unit: currency gaz_naturel_etat_gazeux_utilises_comme_carburants_100m3: description: Gaz naturel à l'état gazeux, utilisés comme carburants (100m3) values: @@ -981,9 +931,7 @@ gaz_naturel_etat_gazeux_utilises_comme_carburants_100m3: value: null metadata: ipp_csv_id: ticpe_gaz_naturels_gazeux - unit: - 2002-01-01: currency-EUR - 1993-04-15: currency-FRF + unit: currency gaz_naturel_etat_gazeux_utilise_sous_conditions_aux_moteurs_stationnaires_100m3: description: Gaz naturel à l'état gazeux, utilisé sous conditions aux moteurs stationnaires (100m3) values: @@ -1003,7 +951,7 @@ gaz_naturel_etat_gazeux_utilise_sous_conditions_aux_moteurs_stationnaires_100m3: value: null metadata: ipp_csv_id: ticpe_gaz_naturels_gazeux_cond - unit: currency-EUR + unit: currency emulsion_eau_dans_gazole_sous_conditions_hectolitre: description: Emulsion d'eau dans du gazole …, sous conditions (hectolitre) values: @@ -1025,9 +973,7 @@ emulsion_eau_dans_gazole_sous_conditions_hectolitre: value: null metadata: ipp_csv_id: ticpe_emulsion_eau_gazole_cond - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency emulsion_eau_dans_gazole_autres_hectolitre: description: Emulsion d'eau dans du gazole …, autres (hectolitre) values: @@ -1055,11 +1001,9 @@ emulsion_eau_dans_gazole_autres_hectolitre: value: null metadata: ipp_csv_id: ticpe_emulsion_eau_gazole_autres - unit: - 2002-01-01: currency-EUR - 2000-01-01: currency-FRF + unit: currency super_e_85_utilise_comme_carburant_hectolitre: - description: Super E 85 utilisé comme carburant (hectolitre) + description: Super E 85 utilisé comme carburant (hectolitre) (indice d'identification 55) values: 2018-01-01: value: 11.83 @@ -1083,7 +1027,7 @@ super_e_85_utilise_comme_carburant_hectolitre: value: null metadata: ipp_csv_id: ticpe_super_e85 - unit: currency-EUR + unit: currency carburant_constitue_minimum_90_alcool_ethylique_agricole_hectolitre: description: Carburant constitué d'au minimum 90% d'alcool éthylique agricole (hectolitre) values: @@ -1095,7 +1039,7 @@ carburant_constitue_minimum_90_alcool_ethylique_agricole_hectolitre: value: null metadata: ipp_csv_id: ticpe_carburant_ethanol_agricole - unit: currency-EUR + unit: currency carburant_constitue_100_estars_methyliques_acides_gras_hectolitre: description: Carburant constitué à 100% d'estars méthyliques d'acides gras (hectolitre) values: @@ -1104,7 +1048,7 @@ carburant_constitue_100_estars_methyliques_acides_gras_hectolitre: 1993-01-01: value: null metadata: - unit: currency-EUR + unit: currency metadata: order: - goudrons_utilises_comme_combustibles_100kg @@ -1113,7 +1057,7 @@ metadata: - huiles_legeres_preparation_essence_aviation_hectolitre - super_95_98 - super_plombe - - supere10_hectolitre + - super_e10 - essence_normale_hectolitre - carburateurs_type_essence_sous_conditions_hectolitre - carburateurs_type_essence_carburants_avion_hectolitre @@ -1127,7 +1071,7 @@ metadata: - autres_huiles_moyennes_hectolitre - gazole_comme_carburants_sous_conditions_hectolitre - gazole_fioul_domestique_hectolitre - - gazole_autres_hectolitre + - gazole - gazol_b_10_hectolitre - fioul_lourd_100kg_net - fioul_avec_point_eclair_inferieur_120deg_c_hectolitre @@ -1150,75 +1094,79 @@ metadata: - carburant_constitue_100_estars_methyliques_acides_gras_hectolitre reference: 2018-01-01: - title: Loi 2017-1837 du 30/12/2017 (LF pour 2018) - href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000036339197 + - href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000036339197 + title: Code des impositions sur les biens et services Chapitre II - ÉNERGIES (Articles L312-1 à L312-107) + - href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000036339197 + title: Loi 2017-1837 du 30/12/2017 (LF pour 2018) + - href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000036426683/2018-01-01/ + title: Article 265 du Code des douanes 2017-01-01: - title: Loi 2016-1918 du 29/12/2016 (LFR pour 2016) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000033734341 + title: Loi 2016-1918 du 29/12/2016 (LFR pour 2016) 2016-01-01: Loi 2015-1786 du 29/12/2015 (LFR pour 2015) - art. 14 et 17 2015-01-01: - title: Loi 2014-1654 du 29/12/2014 (LF pour 2015) - art. 36 href: https://www.legifrance.gouv.fr/affichTexteArticle.do?idArticle=LEGIARTI000029994876&cidTexte=JORFTEXT000029988857 + title: Loi 2014-1654 du 29/12/2014 (LF pour 2015) - art. 36 2014-04-01: - title: Loi 2013-1278 du 29/12/2013 (LF pour 2014) - art. 32 href: https://www.legifrance.gouv.fr/affichTexteArticle.do?idArticle=LEGIARTI000028402549&cidTexte=JORFTEXT000028399511 + title: Loi 2013-1278 du 29/12/2013 (LF pour 2014) - art. 32 2012-01-01: - title: Loi 2011-1977 du 28/12/2011 (LF pour 2012) - art. 21 href: https://www.legifrance.gouv.fr/affichTexteArticle.do?idArticle=LEGIARTI000025048278&cidTexte=JORFTEXT000025044460 + title: Loi 2011-1977 du 28/12/2011 (LF pour 2012) - art. 21 2011-01-01: - title: Loi 2010-1657 du 29/12/2010 (LF pour 2011) - art. 138 href: https://www.legifrance.gouv.fr/affichTexteArticle.do?idArticle=LEGIARTI000023347209&cidTexte=JORFTEXT000023314376 + title: Loi 2010-1657 du 29/12/2010 (LF pour 2011) - art. 138 2010-03-11: Loi 2010-237 du 09/03/2010 (LFR pour 2010) - art. 4 et 5 2010-01-01: - title: Loi 2009-1674 du 30/12/2009 (LFR pour 2009) - art. 76 href: https://www.legifrance.gouv.fr/affichTexteArticle.do?idArticle=LEGIARTI000021580225&cidTexte=JORFTEXT000021559075 + title: Loi 2009-1674 du 30/12/2009 (LFR pour 2009) - art. 76 2009-01-01: - title: Loi 2008-1443 du 30/12/2008 (LFR pour 2008) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000020014790 + title: Loi 2008-1443 du 30/12/2008 (LFR pour 2008) 2008-12-29: Loi 2008-1425 du 27/12/2008 (LF pour 2009)  - art. 16 et 17 2008-01-01: - title: Loi 2007-1822 du 24/12/2007 (LF pour 2008) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000017853368 + title: Loi 2007-1822 du 24/12/2007 (LF pour 2008) 2006-01-01: - title: Loi 2004-1484 du 30/12/2004 (LF pour 2005) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000789373 + title: Loi 2004-1484 du 30/12/2004 (LF pour 2005) 2004-01-01: - title: Loi 2003-1311 du 30/12/2003 (LF pour 2004) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000612133 + title: Loi 2003-1311 du 30/12/2003 (LF pour 2004) 2003-01-01: - title: Loi 2002-1575 du 30/12/2002 (LF pour 2003) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000234121 + title: Loi 2002-1575 du 30/12/2002 (LF pour 2003) 2002-01-01: - title: Loi 2001-1275 du 28/12/2001 (LF pour 2002) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000592233 + title: Loi 2001-1275 du 28/12/2001 (LF pour 2002) 2000-01-01: - title: Loi 99-1172 du 30/12/1999 (LF pour 2000) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000762233 + title: Loi 99-1172 du 30/12/1999 (LF pour 2000) 1999-01-01: - title: Loi 98-1266 du 30/12/1998 (LF pour 1999) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000209044 + title: Loi 98-1266 du 30/12/1998 (LF pour 1999) 1998-01-01: - title: Loi 97-1269 du 30/12/1997 (LF pour 1998) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000569621 + title: Loi 97-1269 du 30/12/1997 (LF pour 1998) 1997-01-01: - title: Loi 96-1181 du 30/12/1996 (LF pour 1997) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000380034 + title: Loi 96-1181 du 30/12/1996 (LF pour 1997) 1996-01-01: - title: Loi 95-1346 du 30/12/1995 (LF pour 1996) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000191068 + title: Loi 95-1346 du 30/12/1995 (LF pour 1996) 1995-01-01: - title: Loi 94-1162 du 29/12/1994 (LF pour 1995) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000367398 + title: Loi 94-1162 du 29/12/1994 (LF pour 1995) 1994-01-01: - title: Loi 93-1352 du 30/12/1993 (LF pour 1994) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000509319 + title: Loi 93-1352 du 30/12/1993 (LF pour 1994) 1993-04-15: - title: Loi 92-1376 du 30/12/1992 (LF pour 1993) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000178406 - 1993-01-01: title: Loi 92-1376 du 30/12/1992 (LF pour 1993) + 1993-01-01: href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000178406 - date_parution_jo: + title: Loi 92-1376 du 30/12/1992 (LF pour 1993) + official_journal_date: 2018-01-01: 2017-12-31 2017-01-01: 2016-12-30 2016-01-01: 2015-12-30 @@ -1244,14 +1192,14 @@ metadata: 1994-01-01: 1993-12-31 1993-04-15: 1992-12-31 1993-01-01: 1992-12-31 - description_en: TICPE - Energy products + label_en: TICPE - Energy products documentation: | Notes : - *ces barèmes font l'objet de majorations dans la plupart des régions de France : une première tranche de 1,77€/hl puis une seconde de 0,73€/hl (deuxième tranche destinée uniquement à des financements d'infrastructures spécifiques NB : données renseignées dans l'article 265 du code des douanes NB : les produits énergétiques sont rangés dans l'ordre de leur numérotation dans l'article 265 du code des douanes avec pour seul objectif la lisibilité. NB : en 2011 le nom de TIPP (taxe intérieure de consommation sur les produits pétroliers) change pour TICPE (taxe intérieure de consommation sur les produits énergétiques). L'objectif est de souligner le changement d'assiette récent qui incorpore désormais les biocarburants. Attention : 28 aout 2012, baisse de la TICPE sur les carburants de 3 centimes. La baisse est ramenée à 2 centimes le 1er décembre 2012, 1,5c le 11 décembre, 1c le 21 décembre et prend fin le 11 janvier 2013 + NB: en 2013, pendant les 10 premiers jours, il y a eu une diminution de 1euro pour les produits énergétiques 11, 11 ter et 22, qu'on peux trouver uniquement ici: https://www.douane.gouv.fr/la-douane/informations/bulletins-officiels-des-douanes, en cherchant "Droits et taxes applicables aux produits" de 2013, sans aucune explication dans la loi. Dans le code des douanes, les produits énergétiques sont désignés par les indices suivants : 1 - Goudrons utilisés comme combustibles 4 bis - White Spirit utilisé comme combustible @@ -1285,3 +1233,8 @@ documentation: | 53 - Emulsion d'eau dans du gazole …, autres 55 - Super E 85 utilisé comme carburant 56 - Carburant constitué d'un mélange d'au minimum 90 % d'alcool éthylique d'origine agricole, d'eau et d'additifs + + La TIPCE change de nom et devient "Fraction perçue en métropole sur les produits énergétiques", autres que les gaz naturels et les charbons, suite à l'article 4 de l’ordonnance n° 2021-1843 du 22 décembre 2021 précité. + Les dispositions législatives relatives aux accises ne sont plus dans le code des douanes, mais sont DEPUIS le 1er janvier 2022, dans le code des impositions sur les biens et services et sont prévues au titre Ier du livre III du CIBS 2 et + celles spécifiques à la fiscalité des énergies sont prévues au chapitre II de ce titre Ier, de l’article L. 312-1 à l’article L. 312-107. + NB: Les valeurs après 2022 sont dans "accise_energie_metropole" diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcool_cotisation_secu.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcool_cotisation_secu.yaml index 34891dc7..1b53943c 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcool_cotisation_secu.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcool_cotisation_secu.yaml @@ -14,9 +14,7 @@ cotisation_securite_sociale_eur_par_decilitre: value: 1.0 metadata: ipp_csv_id: cotis_secu_alcool - unit: - 2002-01-01: currency-EUR - 1983-04-01: currency-FRF + unit: currency cotisation_alcools_taux_plein_eur_hlap: description: Cotisation sur les alcools - Taux plein (€/hlap) values: @@ -42,7 +40,7 @@ cotisation_alcools_taux_plein_eur_hlap: value: null metadata: ipp_csv_id: coti_secu_alcool_tx_plein - unit: currency-EUR + unit: currency cotisation_produits_intermediaires_titrant_plus_18_vol_taux_plein_eur_hl: description: Cotisation sur les produits intermédiaires titrant plus de 18% vol. - Taux plein (€/hl) values: @@ -68,7 +66,7 @@ cotisation_produits_intermediaires_titrant_plus_18_vol_taux_plein_eur_hl: value: null metadata: ipp_csv_id: coti_secu_alcool_inter_tx_plein - unit: currency-EUR + unit: currency metadata: order: - cotisation_securite_sociale_eur_par_decilitre @@ -94,16 +92,16 @@ metadata: 1983-04-01: title: Loi 83-25 du 19/01/1983 - art. 26 href: https://www.legifrance.gouv.fr/affichTexteArticle.do?idArticle=LEGIARTI000006274080&cidTexte=JORFTEXT000000504452 - date_parution_jo: + official_journal_date: 2018-01-01: 2017-12-27 2017-01-01: 2016-12-31 - 2015-01-01: 26/12/2014 - 2014-01-01: 22/12/2011 - 2013-01-01: 22/12/2011 - 2011-12-23: 22/12/2011 - 2008-12-19: 18/12/2008 - 1983-04-01: 20/01/1983 - description_en: Alcoholic beverage contribution on Social Security + 2015-01-01: 2014-12-26 + 2014-01-01: 2011-12-22 + 2013-01-01: 2011-12-22 + 2011-12-23: 2011-12-22 + 2008-12-19: 2008-12-18 + 1983-04-01: 1983-01-20 + label_en: Alcoholic beverage contribution on Social Security documentation: | Notes : Données renseignées dans l'article L245-9 du code de la sécurité sociale diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcool_produits_intermediaires.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcool_produits_intermediaires.yaml index ce5b193a..ac0ad622 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcool_produits_intermediaires.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcool_produits_intermediaires.yaml @@ -32,9 +32,7 @@ vins_doux_naturels_vins_liqueurs_aop_mentionnes_aux_articles_417_417_bis_cgi_eur value: 350.0 metadata: ipp_csv_id: taxe_vdn_vdl - unit: - 2002-03-31: currency-EUR - 1993-07-01: currency-FRF + unit: currency autres_produits_intermediaires_eur_hl: description: Autres produits intermédiaires (€/hl) values: @@ -68,9 +66,7 @@ autres_produits_intermediaires_eur_hl: value: 1400.0 metadata: ipp_csv_id: taxe_autres_produits_inter_alcool - unit: - 2002-03-31: currency-EUR - 1993-07-01: currency-FRF + unit: currency metadata: order: - vins_doux_naturels_vins_liqueurs_aop_mentionnes_aux_articles_417_417_bis_cgi_eur_hl @@ -96,7 +92,7 @@ metadata: 2009-04-10: title: Décret 2009-389 du 07/04/2009 href: https://www.legifrance.gouv.fr/eli/decret/2009/4/7/2009-389/jo/texte - date_parution_jo: + official_journal_date: 2018-01-01: 2017-12-27 2017-01-01: 2016-12-31 2015-06-06: 2015-06-05 @@ -106,7 +102,7 @@ metadata: 2010-11-21: 2010-11-20 2010-05-01: 2010-04-30 2009-04-10: 2009-04-09 - description_en: Intermediary products (liquor wine, etc.) + label_en: Intermediary products (liquor wine, etc.) documentation: | Notes : Données renseignées dans l'article 402 bis du code général des impôts diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcools_fermentes.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcools_fermentes.yaml index 930b131c..2bf21b5d 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcools_fermentes.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/alcools_fermentes.yaml @@ -34,9 +34,7 @@ vins_mousseux_eur_hl: value: 54.8 metadata: ipp_csv_id: taxe_vins_mousseux - unit: - 2002-03-31: currency-EUR - 1982-01-01: currency-FRF + unit: currency vins_tranquilles_eur_hl: description: Vins tranquilles (€/hl) values: @@ -70,9 +68,7 @@ vins_tranquilles_eur_hl: value: 22.0 metadata: ipp_csv_id: taxe_vins_tranquilles - unit: - 2002-03-31: currency-EUR - 1982-01-01: currency-FRF + unit: currency boissons_fermentees_autres_que_vin_biere_eur_hl: description: Boissons fermentées autres que vin et bière (€/hl) values: @@ -106,9 +102,7 @@ boissons_fermentees_autres_que_vin_biere_eur_hl: value: 22.0 metadata: ipp_csv_id: taxe_boiss_fermen_sauf_vin_biere - unit: - 2002-03-31: currency-EUR - 1982-01-01: currency-FRF + unit: currency cidres_poires_hydromels_eur_hl: description: Cidres / Poirés / Hydromels (€/hl) values: @@ -140,9 +134,7 @@ cidres_poires_hydromels_eur_hl: value: 7.6 metadata: ipp_csv_id: taxe_cidre_poire_hydromel - unit: - 2002-03-31: currency-EUR - 1982-01-01: currency-FRF + unit: currency exoneration_ensemble_vins_eur_hl: description: Exonération pour l'ensemble des vins (€/hl) values: @@ -152,7 +144,7 @@ exoneration_ensemble_vins_eur_hl: value: 12.7 metadata: ipp_csv_id: exoneration_taxe_vins - unit: currency-FRF + unit: currency exoneration_petillants_voir_conditions_eur_hl: description: Exonération des pétillants (voir conditions) (€/hl) values: @@ -162,7 +154,7 @@ exoneration_petillants_voir_conditions_eur_hl: value: 5.4 metadata: ipp_csv_id: exoneration_taxe_petillants - unit: currency-FRF + unit: currency metadata: order: - vins_mousseux_eur_hl @@ -198,7 +190,7 @@ metadata: 1982-01-01: title: Loi 81-1160 du 30/12/1981 (LF pour 1982) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000515870 - date_parution_jo: + official_journal_date: 2018-01-01: 2017-12-27 2017-01-01: 2016-12-31 2015-06-06: 2015-06-05 @@ -210,7 +202,7 @@ metadata: 2009-04-10: 2009-04-09 1993-02-01: 1993-01-04 1982-01-01: 1981-12-31 - description_en: Fermented alcohols (wine, cider, etc.) + label_en: Fermented alcohols (wine, cider, etc.) documentation: | Notes : Données renseignées dans l'article 438 du code général des impôts diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/autres_alcools.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/autres_alcools.yaml index 76274636..7f50047a 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/autres_alcools.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/autres_alcools.yaml @@ -42,9 +42,7 @@ rhum_dom: value: 4150.0 metadata: ipp_csv_id: taxe_rhum_dom - unit: - 2002-03-31: currency-EUR - 1981-02-01: currency-FRF + unit: currency autres_alcools: description: Autres alcools values: @@ -86,9 +84,7 @@ autres_alcools: value: 8220.0 metadata: ipp_csv_id: taxe_autres_alcools - unit: - 2002-03-31: currency-EUR - 1981-02-01: currency-FRF + unit: currency bouilleurs_cru_t_q_definis_art_317: description: Bouilleurs de cru t.q. définis art 317 values: @@ -122,7 +118,7 @@ bouilleurs_cru_t_q_definis_art_317: value: null metadata: ipp_csv_id: taxe_bouilleurs_cru - unit: currency-EUR + unit: currency quantites_ajoutees_preparation_vins_mousseux_vins_doux_naturels_mentionnes_article_417: description: Quantités ajoutées pour la préparation des vins mousseux et des vins doux naturels mentionnés à l'article 417 values: @@ -136,7 +132,7 @@ quantites_ajoutees_preparation_vins_mousseux_vins_doux_naturels_mentionnes_artic value: 2395.0 metadata: ipp_csv_id: taxe_ajout_vins - unit: currency-FRF + unit: currency aperitifs_base_vin_cidre_poire_vermouth_vins_liqueurs_assimiles: description: Apéritifs à base de vin, cidre, poiré, vermouth, vins de liqueurs et assimilés values: @@ -150,7 +146,7 @@ aperitifs_base_vin_cidre_poire_vermouth_vins_liqueurs_assimiles: value: 6400.0 metadata: ipp_csv_id: taxe_aperitifs_base_divers_alcools - unit: currency-FRF + unit: currency metadata: order: - rhum_dom @@ -193,7 +189,7 @@ metadata: 1981-02-01: title: Loi 80-1094 du 30/12/1980 (LF pour 1981) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000339460 - date_parution_jo: + official_journal_date: 2018-01-01: 2017-12-27 2016-01-01: 2015-12-24 2015-06-06: 2015-06-05 @@ -209,7 +205,7 @@ metadata: 1993-02-01: 1993-01-04 1982-01-01: 1981-12-31 1981-02-01: 1980-12-31 - description_en: Other alcohols (specific rhums, etc.) + label_en: Other alcohols (specific rhums, etc.) documentation: | Notes : Données renseignées dans l'article 403 du code général des impôts diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/bieres.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/bieres.yaml index 92310f88..125a0b95 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/bieres.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/bieres.yaml @@ -34,9 +34,7 @@ bieres_moins_28_vol_eur_degre_hl: value: null metadata: ipp_csv_id: taxe_bieres_inf_28 - unit: - 2002-03-31: currency-EUR - 1993-01-01: currency-FRF + unit: currency bieres_plus_28_vol_eur_degre_hl: description: Bières plus de 2,8% vol. (€/degré/hl) values: @@ -68,9 +66,7 @@ bieres_plus_28_vol_eur_degre_hl: value: null metadata: ipp_csv_id: taxe_biere_sup_28 - unit: - 2002-03-31: currency-EUR - 1993-01-01: currency-FRF + unit: currency bieres_moins_46_vol_recipient_entre_65cl_1l: description: Bières moins de 4,6% vol ou récipient entre 65cL et 1L values: @@ -84,7 +80,7 @@ bieres_moins_46_vol_recipient_entre_65cl_1l: value: 4.5 metadata: ipp_csv_id: taxe_bieres_inf_46 - unit: currency-FRF + unit: currency bieres_non_comprises_dans_mention_precedente: description: Bières non comprises dans la mention précédente values: @@ -98,7 +94,7 @@ bieres_non_comprises_dans_mention_precedente: value: 8.0 metadata: ipp_csv_id: taxe_autres_bieres - unit: currency-FRF + unit: currency petites_brasseries_10_000hl_eur_degre_hl: description: Petites brasseries < 10 000hl (€/degré/hl) values: @@ -130,7 +126,7 @@ petites_brasseries_10_000hl_eur_degre_hl: value: null metadata: ipp_csv_id: taxe_brasserie_inf_10 - unit: currency-EUR + unit: currency 10_000hl_petites_brasseries_50_000hl_eur_degre_hl: description: 10 000hl < petites brasseries < 50 000hl (€/degré/hl) values: @@ -162,7 +158,7 @@ petites_brasseries_10_000hl_eur_degre_hl: value: null metadata: ipp_csv_id: taxe_brasserie_10_50 - unit: currency-EUR + unit: currency 50_000hl_petites_brasseries_200_000hl_eur_degre_hl: description: 50 000hl < petites brasseries < 200 000hl (€/degré/hl) values: @@ -194,7 +190,7 @@ petites_brasseries_10_000hl_eur_degre_hl: value: null metadata: ipp_csv_id: taxe_brasserie_50_200 - unit: currency-EUR + unit: currency metadata: order: - bieres_moins_28_vol_eur_degre_hl @@ -235,7 +231,7 @@ metadata: 1981-02-01: title: Loi 80-1094 du 30/12/1980 (LF pour 1981) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000339460 - date_parution_jo: + official_journal_date: 2018-01-01: 2017-12-27 2017-01-01: 2016-12-31 2015-10-09: 2015-10-08 @@ -249,7 +245,7 @@ metadata: 1993-01-01: 1992-12-31 1982-01-01: 1981-12-31 1981-02-01: 1980-12-31 - description_en: Biers + label_en: Biers documentation: | Notes : Données renseignées dans l'article 520A du code général des impôts diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/boissons_non_alcooliques.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/boissons_non_alcooliques.yaml index c9f0cbaa..be21e16b 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/boissons_non_alcooliques.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/boissons_non_alcooliques.yaml @@ -8,17 +8,15 @@ droit_specifique_boissons_non_alcooliques_eur_hl: value: 3.5 metadata: ipp_csv_id: droit_boiss_non_alcool - unit: - 2002-03-31: currency-EUR - 1979-07-01: currency-FRF + unit: currency metadata: order: - droit_specifique_boissons_non_alcooliques_eur_hl reference: 2002-03-31: Ordonnance 2000-916 du 19/09/2000 - date_parution_jo: + official_journal_date: 2002-03-31: 2000-09-22 - description_en: Non alcoholic beverages + label_en: Non alcoholic beverages documentation: | Notes : Données renseignées dans l'article 520A du code général des impôts diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/boissons_sucrees_energisantes.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/boissons_sucrees_energisantes.yaml index e68fa7be..7e32537f 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/boissons_sucrees_energisantes.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/boissons_sucrees_energisantes.yaml @@ -16,7 +16,7 @@ contribution_boissons_sucrees_edulcorees_eur_hl: value: 7.16 metadata: ipp_csv_id: taxe_boiss_sucrees_edulcorees - unit: currency-EUR + unit: currency contribution_boissons_sucrees_edulcorees_taux_applicables_uniquement_mayotte_eur_hl: description: Contribution sur les boissons sucrées ou édulcorées - Taux applicables uniquement à Mayotte (€/hl) values: @@ -34,7 +34,7 @@ contribution_boissons_sucrees_edulcorees_taux_applicables_uniquement_mayotte_eur value: null metadata: ipp_csv_id: taxe_boiss_sucrees_edulcorees_mayotte - unit: currency-EUR + unit: currency contribution_boissons_edulcorees_y_compris_mayotte: description: Contribution sur les boissons édulcorées, y compris à Mayotte values: @@ -52,7 +52,7 @@ contribution_boissons_edulcorees_y_compris_mayotte: value: null metadata: ipp_csv_id: taxe_boiss_edulcorees - unit: currency-EUR + unit: currency contribution_boissons_sucrees_y_compris_mayotte: description: Contribution sur les boissons sucrées y compris à Mayotte values: @@ -64,7 +64,7 @@ contribution_boissons_sucrees_y_compris_mayotte: value: null metadata: ipp_csv_id: taxe_boiss_sucrees - unit: currency-EUR + unit: currency boissons_energisantes: description: Boissons énergisantes values: @@ -80,7 +80,7 @@ boissons_energisantes: value: null metadata: ipp_csv_id: taxe_boiss_energie - unit: currency-EUR + unit: currency metadata: order: - contribution_boissons_sucrees_edulcorees_eur_hl @@ -112,21 +112,21 @@ metadata: - title: Loi 2011-1977 du 28/12/2011 - art. 26 href: https://www.legifrance.gouv.fr/affichTexteArticle.do?idArticle=LEGIARTI000025048305&cidTexte=JORFTEXT000025044460 - Décret 2012-653 du 4 mai 2012 - art. 1 - date_parution_jo: + official_journal_date: 2018-07-01: 2017-12-31 2018-01-01: 2017-12-27 2017-01-01: 2016-12-31 - 2016-01-01: 30/12/2012 - 2015-01-01: 30/12/2013 - 2014-05-30: 29/05/2014 - 2014-01-01: 30/12/2013 - 2013-06-07: 06/06/2013 - 2012-05-07: 06/05/2012 + 2016-01-01: 2015-12-30 + 2015-01-01: 2013-12-30 + 2014-05-30: 2014-05-29 + 2014-01-01: 2013-12-30 + 2013-06-07: 2013-06-06 + 2012-05-07: 2012-05-06 notes: 2018-07-01: La contribution sur les boissons sucrées se fait selon un barême à partir de juillet 2018, un nouvel onglet a été créé à cet effet 2018-01-01: A partir de 2018, plus de taux spécifique à Mayotte. Par ailleurs il n'y a plus de "contribution sur les boissons sucrées ou édulcorées" mais une "contribution sur les boissons sucrées" et une "contribution sur les boissons édulcorées" 2017-01-01: Abrogation de la taxe sur les boissons énergisantes par la Loi 2016-1917 du 29/12/2016 de finances pour 2017 (1), Article 83 - description_en: Energy drinks, sweet or sweetened beverages + label_en: Energy drinks, sweet or sweetened beverages documentation: | Notes : Données renseignées dans les articles 1613 bis A et 1613 ter du code général des impôts diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/contrib_sur_boissons_sucrees.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/contrib_sur_boissons_sucrees.yaml index 444fe147..a83d3962 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/contrib_sur_boissons_sucrees.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/contrib_sur_boissons_sucrees.yaml @@ -12,7 +12,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 3.0 metadata: ipp_csv_id: taxe_boiss_sucrees_1kg - unit: currency-EUR + unit: currency 2_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 2 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -26,7 +26,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 3.5 metadata: ipp_csv_id: taxe_boiss_sucrees_2kg - unit: currency-EUR + unit: currency 3_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 3 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -40,7 +40,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 4.0 metadata: ipp_csv_id: taxe_boiss_sucrees_3kg - unit: currency-EUR + unit: currency 4_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 4 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -54,7 +54,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 4.5 metadata: ipp_csv_id: taxe_boiss_sucrees_4kg - unit: currency-EUR + unit: currency 5_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 5 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -68,7 +68,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 5.5 metadata: ipp_csv_id: taxe_boiss_sucrees_5kg - unit: currency-EUR + unit: currency 6_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 6 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -82,7 +82,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 6.5 metadata: ipp_csv_id: taxe_boiss_sucrees_6kg - unit: currency-EUR + unit: currency 7_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 7 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -96,7 +96,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 7.5 metadata: ipp_csv_id: taxe_boiss_sucrees_7kg - unit: currency-EUR + unit: currency 8_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 8 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -110,7 +110,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 9.5 metadata: ipp_csv_id: taxe_boiss_sucrees_8kg - unit: currency-EUR + unit: currency 9_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 9 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -124,7 +124,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 11.5 metadata: ipp_csv_id: taxe_boiss_sucrees_9kg - unit: currency-EUR + unit: currency 10_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 10 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -138,7 +138,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 13.5 metadata: ipp_csv_id: taxe_boiss_sucrees_10kg - unit: currency-EUR + unit: currency 11_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 11 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -152,7 +152,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 15.5 metadata: ipp_csv_id: taxe_boiss_sucrees_11kg - unit: currency-EUR + unit: currency 12_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 12 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -166,7 +166,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 17.5 metadata: ipp_csv_id: taxe_boiss_sucrees_12kg - unit: currency-EUR + unit: currency 13_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 13 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -180,7 +180,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 19.5 metadata: ipp_csv_id: taxe_boiss_sucrees_13kg - unit: currency-EUR + unit: currency 14_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 14 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -194,7 +194,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 21.5 metadata: ipp_csv_id: taxe_boiss_sucrees_14kg - unit: currency-EUR + unit: currency 15_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: 15 kg de sucres ajoutéspar hl de boisson (€ / hl) values: @@ -208,7 +208,7 @@ description: Contribution sur les boissons sucrées (à partir de juillet 2018) value: 23.5 metadata: ipp_csv_id: taxe_boiss_sucrees_15kg - unit: currency-EUR + unit: currency tout_kg_dessus_15_kg_sucres_ajoutes_par_hl_boisson_eur_hl: description: Pour tout kg au-dessus de 15 kg de sucres ajoutés par hl de boisson (€/hl) values: @@ -222,7 +222,7 @@ tout_kg_dessus_15_kg_sucres_ajoutes_par_hl_boisson_eur_hl: value: 2.0 metadata: ipp_csv_id: taxe_boiss_sucrees_kg_sup_15kg - unit: currency-EUR + unit: currency metadata: order: - 1_kg_moins_sucres_ajoutes_par_hl_boisson_eur_hl @@ -246,8 +246,8 @@ metadata: 2018-07-01: title: Loi 2017-1836 du 30/12/2017 (LFSS pour 2018), art. 19 href: https://www.legifrance.gouv.fr/affichTexteArticle.do?idArticle=LEGIARTI000036358474&cidTexte=JORFTEXT000036339090 - date_parution_jo: + official_journal_date: 2018-07-01: 2017-12-31 notes: 2018-07-01: Article 1613 ter du CGI. Avant juillet 2018, cette contribution faisait partie de la "contribution sur les boissons sucrées ou édulcorées" - description_en: Contribution on sweetened beverages (from July, 2018) + label_en: Contribution on sweetened beverages (from July, 2018) diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/index.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/index.yaml index 7ed6f6a8..fd6e3d24 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/index.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/index.yaml @@ -10,4 +10,4 @@ metadata: - contrib_sur_boissons_sucrees - boissons_non_alcooliques - alcool_cotisation_secu - description_en: Excises on alcohol and other drinks + label_en: Excises on alcohol and other drinks diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/premix_contribution_secu.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/premix_contribution_secu.yaml index fc642cdf..f6fb595c 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/premix_contribution_secu.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_alcools_autres_boissons/premix_contribution_secu.yaml @@ -12,9 +12,7 @@ premix_eur_par_decilitre_alcool_pur: value: null metadata: ipp_csv_id: taxe_premix_decil_pur - unit: - 2002-03-31: currency-EUR - 1999-03-31: currency-FRF + unit: currency premix_eur_par_decilitre: description: Prémix (€ par décilitre ) values: @@ -24,7 +22,7 @@ premix_eur_par_decilitre: value: 1.5 metadata: ipp_csv_id: taxe_premix_decil_tot - unit: currency-FRF + unit: currency metadata: order: - premix_eur_par_decilitre_alcool_pur @@ -39,11 +37,11 @@ metadata: 1997-03-31: title: Loi 96-1160 du 27/12/1996 (LFSS pour 1997) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000198309 - date_parution_jo: - 2005-01-01: 11/08/2004 - 1999-03-31: 27/12/1998 - 1997-03-31: 29/12/1996 - description_en: Premix (alcohol plus soda) + official_journal_date: + 2005-01-01: 2004-08-11 + 1999-03-31: 1998-12-27 + 1997-03-31: 1996-12-29 + label_en: Premix (alcohol plus soda) documentation: | Notes : Données renseignées dans l'article 1613 bis du code général des impôts diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/fgao.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/fgao.yaml index 3349859c..d132cd66 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/fgao.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/fgao.yaml @@ -60,11 +60,11 @@ metadata: 2010-08-01: Arrêté du 09/06/2010 fixant contribution FGAO 2008-01-01: Arrêté du 07/11/2007 fixant contribution FGAO 2004-08-05: Arrêté du 16/07/2004 - date_parution_jo: + official_journal_date: 2010-08-01: 2010-07-08 2008-01-01: 2007-11-14 2004-08-05: 2004-08-05 - description_en: Tax on guarantee fund for compulsory insurance + label_en: Tax on guarantee fund for compulsory insurance documentation: | Notes : Données renseignées dans l'article A421-3 du code des assurances diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/index.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/index.yaml index 16836675..0913fac6 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/index.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/index.yaml @@ -3,4 +3,4 @@ metadata: order: - tsca - fgao - description_en: Taxes on insurances + label_en: Taxes on insurances diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/tsca.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/tsca.yaml index dd9e5e2f..33574eaa 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/tsca.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_assurances/tsca.yaml @@ -225,14 +225,14 @@ metadata: 1994-09-02: title: Loi 2001-1246 du 21/12/2001 (LFSS pour 2002) href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000396224 - date_parution_jo: + official_journal_date: 2016-01-01: 2014-12-24 2015-01-01: 2014-12-30 2014-01-01: 2013-12-24 2011-10-01: 2011-09-20 2011-01-01: 2010-12-30 1994-09-02: 2001-12-26 - description_en: Taxes on insurance contracts + label_en: Taxes on insurance contracts documentation: | Notes : Déductions pour les véhicules de plus de 3,5 tonnes diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_energie_dans_logement/index.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_energie_dans_logement/index.yaml index f7e1a182..e5606745 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_energie_dans_logement/index.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_energie_dans_logement/index.yaml @@ -2,4 +2,4 @@ description: Taxes sur l'énergie dans le logement metadata: order: - taxes_electricite_et_gaz - description_en: Taxes on housing energy + label_en: Taxes on housing energy diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_energie_dans_logement/taxes_electricite_et_gaz.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_energie_dans_logement/taxes_electricite_et_gaz.yaml index d1ea0f03..443cfd34 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_energie_dans_logement/taxes_electricite_et_gaz.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_energie_dans_logement/taxes_electricite_et_gaz.yaml @@ -22,7 +22,7 @@ cspe: value: null metadata: ipp_csv_id: cspe - unit: currency-EUR + unit: currency cta_electricite: description: CTA portant sur la distribution d'électricité values: @@ -66,7 +66,7 @@ ticgn_prix_par_mwh: value: 1.19 metadata: ipp_csv_id: ticgn - unit: currency-EUR + unit: currency ctssg_prix_par_mwh: description: CTSSG - prix par MWh values: @@ -86,7 +86,7 @@ ctssg_prix_par_mwh: value: null metadata: ipp_csv_id: ctssg - unit: currency-EUR + unit: currency plafonds_tcfe_compteurs_36_kva_en_euros_par_mwh: description: Plafonds TCFE pour compteurs < ou = à 36 kva - en euros par MWh values: @@ -104,7 +104,7 @@ plafonds_tcfe_compteurs_36_kva_en_euros_par_mwh: value: null metadata: ipp_csv_id: plafond_tcfe - unit: currency-EUR + unit: currency metadata: order: - cspe @@ -113,7 +113,7 @@ metadata: - ticgn_prix_par_mwh - ctssg_prix_par_mwh - plafonds_tcfe_compteurs_36_kva_en_euros_par_mwh - description_en: Taxes on electricity and gas + label_en: Taxes on electricity and gas documentation: | Source : http://www.gaznaturel-3frontieres.fr/upload/banque-image/Circulaire%20TICGN%2029%20avril%202014.pdf diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/index.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/index.yaml index 3a977b39..e9ec3ea5 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/index.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/index.yaml @@ -3,4 +3,4 @@ metadata: order: - taux_normaux_tabac - taux_specifique_tabac - description_en: Excises on tobacco + label_en: Excises on tobacco diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/prix_tabac.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/prix_tabac.yaml index 26d6b7f3..9963e2ab 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/prix_tabac.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/prix_tabac.yaml @@ -49,4 +49,3 @@ metadata: 2020-04-01: PLFSS 2018, Evaluations prealables, p. 150 2019-11-01: PLFSS 2018, Evaluations prealables, p. 150 2019-04-01: PLFSS 2018, Evaluations prealables, p. 150 - 2015-01-01: null \ No newline at end of file diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/taux_normaux_tabac.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/taux_normaux_tabac.yaml index 801f3f75..71f65235 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/taux_normaux_tabac.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/taux_normaux_tabac.yaml @@ -221,7 +221,7 @@ taux_normal: order: - cigarettes - cigares - - tabac_rouler + - tabac_a_rouler - autres_tabacs - tabacs_priser - tabacs_chiquer @@ -289,7 +289,7 @@ metadata: 1991-01-01: title: Loi 90-1168 du 29/12/1990 href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000717191 - date_parution_jo: + official_journal_date: 2020-11-01: 2018-12-30 2020-03-01: 2018-12-30 2019-11-01: 2018-12-30 @@ -310,7 +310,7 @@ metadata: 1992-04-20: 1991-12-31 1991-09-30: 1990-12-30 1991-01-01: 1990-12-30 - description_en: Tobacco usual rates + label_en: Tobacco usual rates documentation: | Notes : Voir aussi article 575 A du code général des impôts. diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/taux_specifique_tabac.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/taux_specifique_tabac.yaml index 9412c69c..2c71fa2d 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/taux_specifique_tabac.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/taxes_tabacs/taux_specifique_tabac.yaml @@ -30,9 +30,10 @@ taux_specifique: value: 0.05 metadata: ipp_csv_id: tx_spec_cigarettes - unit: - 2015-01-01: currency-EUR - 1979-01-01: /1 + notes: > + unit: + 2015-01-01: currency + 1979-01-01: /1 cigares: description: Cigares values: @@ -54,9 +55,10 @@ taux_specifique: value: null metadata: ipp_csv_id: tx_spec_cigares - unit: - 2015-01-01: currency-EUR - 2013-01-01: /1 + notes: > + unit: + 2015-01-01: currency + 2013-01-01: /1 tabac_rouler: description: Tabac à rouler values: @@ -78,9 +80,10 @@ taux_specifique: value: null metadata: ipp_csv_id: tx_spec_tabac_rouler - unit: - 2015-01-01: currency-EUR - 2013-01-01: /1 + notes: > + unit: + 2015-01-01: currency + 2013-01-01: /1 autres_tabacs: description: Autres tabacs values: @@ -102,9 +105,10 @@ taux_specifique: value: null metadata: ipp_csv_id: tx_spec_autres_tabac - unit: - 2015-01-01: currency-EUR - 2013-01-01: /1 + notes: > + unit: + 2015-01-01: currency + 2013-01-01: /1 tabacs_priser: description: Tabacs à priser values: @@ -114,9 +118,10 @@ taux_specifique: value: null metadata: ipp_csv_id: tx_spec_tabac_priser - unit: - 2015-01-01: currency-EUR - 2013-01-01: /1 + notes: > + unit: + 2015-01-01: currency + 2013-01-01: /1 tabacs_chiquer: description: Tabacs à chiquer values: @@ -126,9 +131,10 @@ taux_specifique: value: null metadata: ipp_csv_id: tx_spec_tabac_chiquer - unit: - 2015-01-01: currency-EUR - 2013-01-01: /1 + notes: > + unit: + 2015-01-01: currency + 2013-01-01: /1 metadata: order: - cigarettes @@ -175,7 +181,7 @@ metadata: title: Loi 2003-1311 du 30/12/2003 href: https://www.legifrance.gouv.fr/affichTexte.do?cidTexte=JORFTEXT000000612133 1979-01-01: Art. 575 CGI - date_parution_jo: + official_journal_date: 2020-11-01: 2017-12-31 2020-03-01: 2017-12-31 2019-11-01: 2017-12-31 @@ -187,7 +193,7 @@ metadata: 2012-01-01: 2011-12-29 2011-01-01: 2010-12-30 2004-01-05: 2003-12-31 - description_en: Tobacco specific rates + label_en: Tobacco specific rates documentation: | Notes : A partir de 2015 la part spécifique est en euro et non plus en pourcentage diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/index.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/index.yaml index 08556b67..0e20bfba 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/index.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/index.yaml @@ -2,5 +2,4 @@ description: TVA metadata: order: - taux_de_tva - - tva_par_produit - description_en: Value added tax (VAT) + label_en: Value added tax (VAT) diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/index.yaml similarity index 57% rename from openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva.yaml rename to openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/index.yaml index 7c177cda..75be8248 100644 --- a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva.yaml +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/index.yaml @@ -1,130 +1,4 @@ -description: Taux de TVA (1968-2016) -taux_reduit: - description: Taux réduit - values: - 1982-07-01: - value: 0.055 - 1972-01-01: - value: 0.07 - 1970-01-01: - value: 0.075 - 1968-12-01: - value: 0.07 - 1955-07-01: - value: 0.1 - 1954-07-01: - value: 0.075 - metadata: - ipp_csv_id: tx_reduit - unit: /1 -taux_intermediaire: - description: Taux intermédiaire - values: - 2014-01-01: - value: 0.1 - 2012-01-01: - value: 0.07 - 1991-07-29: - value: null - 1986-07-01: - value: 0.13 - 1977-01-01: - value: null - 1970-01-01: - value: 0.176 - 1968-12-01: - value: 0.15 - 1955-07-01: - value: 0.12 - 1954-07-01: - value: null - metadata: - ipp_csv_id: tx_inter - unit: /1 -taux_normal: - description: Taux normal - values: - 2014-01-01: - value: 0.2 - 2000-04-01: - value: 0.196 - 1995-08-01: - value: 0.206 - 1982-07-01: - value: 0.186 - 1977-01-01: - value: 0.176 - 1972-01-01: - value: 0.2 - 1970-01-01: - value: 0.23 - 1968-12-01: - value: 0.19 - 1955-07-01: - value: 0.195 - 1954-07-01: - value: 0.165 - metadata: - ipp_csv_id: tx_normal - unit: /1 -taux_majore: - description: Taux majoré - values: - 1993-01-01: - value: null - 1990-09-13: - value: 0.22 - 1990-01-01: - value: 0.25 - 1989-01-01: - value: 0.28 - 1970-01-01: - value: 0.3333 - 1968-12-01: - value: 0.25 - 1954-07-01: - value: null - metadata: - ipp_csv_id: tx_maj - unit: /1 -taux_particulier_super_reduit: - description: Taux particulier ("super réduit") - values: - 1986-07-01: - value: 0.021 - 1954-07-01: - value: null - metadata: - ipp_csv_id: tx_superreduit - unit: /1 -taux_reduit_2: - description: Taux réduit 2 - values: - 1989-01-01: - value: null - 1982-07-01: - value: 0.07 - 1954-07-01: - value: null - metadata: - ipp_csv_id: tx_reduit2 - unit: /1 -taux_normal_majore_temporaire: - description: Taux normal ou majoré temporaire - values: - 1990-01-01: - value: null - 1989-09-08: - value: 0.28 - 1989-01-01: - value: null - 1987-09-17: - value: 0.28 - 1954-07-01: - value: null - metadata: - ipp_csv_id: tx_majtempo - unit: /1 +description: TVA metadata: order: - taux_reduit @@ -134,6 +8,7 @@ metadata: - taux_particulier_super_reduit - taux_reduit_2 - taux_normal_majore_temporaire + label_en: Value added tax (VAT) reference: 2014-01-01: title: Loi 2012-1510 du 29/12/2012 @@ -179,7 +54,7 @@ metadata: 1968-12-01: Loi 68-1043 du 29/11/1968, art. 3 1955-07-01: Décret 55-465 du 30/04/1955 1954-07-01: Loi 54-404 du 10/04/1954 - date_parution_jo: + official_journal_date: 2014-01-01: 2012-12-30 2012-01-01: 2011-12-29 2000-04-01: 2000-07-14 @@ -189,14 +64,13 @@ metadata: 1990-09-13: 1990-12-30 1990-01-01: 1989-12-30 1989-01-01: 1998-12-28 - 1986-07-01: 31/12/1985 ; 15/03/1986 + 1986-07-01: 1985-12-31 ; 1986-03-15 1982-07-01: 1982-06-29 1977-01-01: 1976-12-30 1970-01-01: 1969-12-27 1968-12-01: 1968-11-30 - 1955-07-01: 03/05/1955 + 1955-07-01: 1955-05-03 1954-07-01: 1954-04-11 - description_en: TVA rates (1968-2016) documentation: | Notes : "Le montant de TVA est appliqué au prix TTC jusqu'au 1er janvier 1970, puis au prix hors taxe depuis." diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_intermediaire.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_intermediaire.yaml new file mode 100644 index 00000000..a9004e5a --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_intermediaire.yaml @@ -0,0 +1,29 @@ +description: Taux intermédiaire +values: + 2014-01-01: + value: 0.1 + 2012-01-01: + value: 0.07 + 1991-07-29: + value: + 1986-07-01: + value: 0.13 + 1977-01-01: + value: + 1970-01-01: + value: 0.176 + 1968-12-01: + value: 0.15 + 1955-07-01: + value: 0.12 + 1954-07-01: + value: +metadata: + last_value_still_valid_on: "2024-07-08" + ipp_csv_id: tx_inter + unit: /1 + reference: + 2014-01-01: + title: Article 278 bis du Code général des impôts + href: https://www.legifrance.gouv.fr/codes/article_lc/LEGIARTI000028417029/2014-01-01 + diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_majore.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_majore.yaml new file mode 100644 index 00000000..3ce9467d --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_majore.yaml @@ -0,0 +1,20 @@ +description: Taux majoré +values: + 1993-01-01: + value: + 1990-09-13: + value: 0.22 + 1990-01-01: + value: 0.25 + 1989-01-01: + value: 0.28 + 1970-01-01: + value: 0.3333 + 1968-12-01: + value: 0.25 + 1954-07-01: + value: +metadata: + last_value_still_valid_on: "2024-07-08" + ipp_csv_id: tx_maj + unit: /1 diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_normal.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_normal.yaml new file mode 100644 index 00000000..366da163 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_normal.yaml @@ -0,0 +1,30 @@ +description: Taux normal +values: + 2014-01-01: + value: 0.2 + 2000-04-01: + value: 0.196 + 1995-08-01: + value: 0.206 + 1982-07-01: + value: 0.186 + 1977-01-01: + value: 0.176 + 1972-01-01: + value: 0.2 + 1970-01-01: + value: 0.23 + 1968-12-01: + value: 0.19 + 1955-07-01: + value: 0.195 + 1954-07-01: + value: 0.165 +metadata: + last_value_still_valid_on: "2024-07-08" + ipp_csv_id: tx_normal + unit: /1 + reference: + 2014-01-01: + title: Article 278 du Code général des impôts + href: https://www.legifrance.gouv.fr/codes/id/LEGIARTI000026950057/2014-01-01/ diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_normal_majore_temporaire.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_normal_majore_temporaire.yaml new file mode 100644 index 00000000..6c7fec81 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_normal_majore_temporaire.yaml @@ -0,0 +1,15 @@ +description: Taux normal ou majoré temporaire +values: + 1990-01-01: + value: + 1989-09-08: + value: 0.28 + 1989-01-01: + value: + 1987-09-17: + value: 0.28 + 1954-07-01: + value: +metadata: + ipp_csv_id: tx_majtempo + unit: /1 diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_particulier_super_reduit.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_particulier_super_reduit.yaml new file mode 100644 index 00000000..31f6a678 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_particulier_super_reduit.yaml @@ -0,0 +1,14 @@ +description: Taux particulier ("super réduit") +values: + 1986-07-01: + value: 0.021 + 1954-07-01: + value: +metadata: + last_value_still_valid_on: "2024-07-08" + ipp_csv_id: tx_superreduit + unit: /1 + reference: + 1986-07-01: + title: Article 281 du Code général des impôts + href: https://www.legifrance.gouv.fr/codes/id/LEGISCTA000006191656/ diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_reduit.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_reduit.yaml new file mode 100644 index 00000000..d4c158f9 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_reduit.yaml @@ -0,0 +1,22 @@ +description: Taux réduit +values: + 1982-07-01: + value: 0.055 + 1972-01-01: + value: 0.07 + 1970-01-01: + value: 0.075 + 1968-12-01: + value: 0.07 + 1955-07-01: + value: 0.1 + 1954-07-01: + value: 0.075 +metadata: + last_value_still_valid_on: "2024-07-08" + ipp_csv_id: tx_reduit + unit: /1 + reference: + 1982-07-01: + title: Article 278-0 bis du Code général des impôts + href: https://www.legifrance.gouv.fr/codes/id/LEGIARTI000048852420/2025-01-01/ diff --git a/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_reduit_2.yaml b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_reduit_2.yaml new file mode 100644 index 00000000..e2f9fdd9 --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/imposition_indirecte/tva/taux_de_tva/taux_reduit_2.yaml @@ -0,0 +1,11 @@ +description: Taux réduit 2 +values: + 1989-01-01: + value: + 1982-07-01: + value: 0.07 + 1954-07-01: + value: +metadata: + ipp_csv_id: tx_reduit2 + unit: /1 diff --git a/openfisca_france_indirect_taxation/parameters/preprocessing.py b/openfisca_france_indirect_taxation/parameters/preprocessing.py index 03998117..46309f70 100644 --- a/openfisca_france_indirect_taxation/parameters/preprocessing.py +++ b/openfisca_france_indirect_taxation/parameters/preprocessing.py @@ -3,14 +3,13 @@ import os import pandas as pd -from openfisca_france_indirect_taxation.variables.base import ParameterNode +from openfisca_france_indirect_taxation.variables.base import Parameter, ParameterNode from openfisca_france_indirect_taxation.utils import assets_directory def preprocess_legislation(parameters): - ''' - Preprocess the legislation parameters to add prices and amounts from national accounts - ''' + """Preprocess the legislation parameters to add prices and amounts from national accounts.""" + prix_carburants = dict() prix_annuel_carburants = pd.read_csv( os.path.join( @@ -21,14 +20,33 @@ def preprocess_legislation(parameters): ) prix_annuel_carburants['Date'] = prix_annuel_carburants['Date'].astype(int) prix_annuel_carburants = prix_annuel_carburants.set_index('Date') - prix_carburants = dict() + # This CSV file refers to the prices (incl. VAT) provided by INSEE, the method of data retrieval is provided in the git: https://git.leximpact.dev/leximpact/simulateur-socio-fiscal/openfisca/prix-carburants + # For the current year, the annual average is calculated on the less already passed, + # it is necessary to turn again the script to update the following months when they are made available by the INSEE. + prix_litre_annuel_carburants = pd.read_csv( + os.path.join( + assets_directory, + 'prix', + 'prix_litre_annuel_carburants.csv' + ), sep =',' + ) + prix_litre_annuel_carburants['Date'] = prix_litre_annuel_carburants['Date'].astype(int) + prix_litre_annuel_carburants = prix_litre_annuel_carburants.set_index('Date') + + most_recent_year = prix_litre_annuel_carburants.index.max() # For super_95_e10, we need to use the price of super_95 between 2009 and 2012 included, # because we don't have the data. We use super_95 because it is very close and won't affect the results too much + prix_annuel = prix_litre_annuel_carburants['super_95_e10_ttc'] + years = list(range(2018, most_recent_year)) + years = sorted(years, key=int, reverse=True) + values = dict() + for year in years: + values['{}-01-01'.format(year)] = dict(value = prix_annuel[year] * 100) + prix_annuel = prix_annuel_carburants['super_95_e10_ttc'] years = list(range(2013, 2017)) years = sorted(years, key=int, reverse=True) - values = dict() for year in years: values['{}-01-01'.format(year)] = dict(value = prix_annuel[year] * 100) @@ -44,111 +62,214 @@ def preprocess_legislation(parameters): for year in years: values['{}-01-01'.format(year)] = dict(value = prix_annuel[year] * 100) + # We use data from prix_annuel_carburants.csv before 2017, the fact that some old prices are no longer available on the INSEE website, + # which means that the script that create prix_litre_annuel_carburants.csv does not retrieve them. + # So, we keep what is existing to not lose information. prix_carburants['super_95_e10_ttc'] = { - "description": 'super_95_e10_ttc'.replace('_', ' '), - "unit": "currency", - "values": values + 'description': 'super_95_e10_ttc'.replace('_', ' '), + 'unit': 'currency', + 'values': values } + autres_carburants = [ - 'diesel_ht', 'diesel_ttc', - 'gplc_ht', - 'gplc_ttc', - 'super_95_e10_ht', - 'super_95_ht', 'super_95_ttc', - 'super_98_ht', 'super_98_ttc', - 'super_plombe_ht', 'super_plombe_ttc', ] for element in autres_carburants: - assert element in prix_annuel_carburants.columns prix_annuel = prix_annuel_carburants[element] - years = list(range(1990, 2022)) + years = list(range(1990, 2017)) years = sorted(years, key=int, reverse=True) values = dict() for year in years: values['{}-01-01'.format(year)] = prix_annuel[year] * 100 + prix_annuel = prix_litre_annuel_carburants[element] + years = sorted(years, key=int, reverse=True) + years = list(range(2018, most_recent_year)) + for year in years: + values['{}-01-01'.format(year)] = prix_annuel[year] * 100 + prix_carburants[element] = { - "description": element.replace('_', ' '), - "unit": "currency", - "values": values + 'description': element.replace('_', ' '), + 'unit': 'currency', + 'values': values } - prix_carburants['description'] = "Prix des carburants" + + # After 2017, we use the data from prix_litre_annuel_carburants.cs + + prix_carburants['description'] = 'Prix des carburants' node_prix_carburants = ParameterNode( 'prix_carburants', data = prix_carburants, ) parameters.add_child('prix_carburants', node_prix_carburants) - # Add the number of vehicle in circulation to the tree - parc_annuel_moyen_vp = pd.read_csv( + # Ajout du nombre de vehicule en circulation en France métropolitaine (INSEE) + parc_moyen_vehicule_france = pd.read_csv( os.path.join( assets_directory, 'quantites', - 'parc_annuel_moyen_vp.csv' + 'parc_moyen_vehicule_france.csv' ), sep =',' ) - parc_annuel_moyen_vp = parc_annuel_moyen_vp.set_index('Unnamed: 0') - parc_vp = { - "description": "taille moyenne du parc automobile en France métropolitaine en milliers de véhicules", - } - for element in ['diesel', 'essence']: - taille_parc = parc_annuel_moyen_vp[element] - years = list(range(1990, 2017)) - years = sorted(years, key=int, reverse=True) + parc_moyen_vehicule_france = parc_moyen_vehicule_france.set_index('annee') + node_parc_moyen_vp = ParameterNode( + 'parc_moyen_vp', + data=dict( + description='taille moyenne du parc automobile en France métropolitaine', + )) + parameters.add_child('parc_moyen_vp', node_parc_moyen_vp) + + for element in ['voitures_particulieres_diesel', 'voitures_particulieres_essence', 'voitures_particulieres_gpl', 'voitures_particulieres_electrique']: + taille_parc_moyen = parc_moyen_vehicule_france[element] + years = list(range(2012, 2023)) values = dict() for year in years: - values['{}-01-01'.format(year)] = taille_parc[year] + complet_year = f'{year}-01-01' + values[complet_year] = float(taille_parc_moyen[complet_year]) - parc_vp[element] = { - "description": "nombre de véhicules particuliers immatriculés en France à motorisation " + element, - "unit": 1000, - "values": values, - } + node_parc_moyen_vp_element = Parameter( + element, + data=dict( + description= 'nombre de' + element + 'en France métropolitaine', + values=values, + )) + node_parc_moyen_vp.add_child(element, node_parc_moyen_vp_element) - node_parc_vp = ParameterNode( - 'parc_vp', - data = parc_vp, + # Ajout du parcours moyen des vehicules en circulation en France métropolitaine (INSEE) + parcours_moyen_vehicule_france = pd.read_csv( + os.path.join( + assets_directory, + 'quantites', + 'parcours_moyen_vehicule_france.csv' + ), sep =',' ) - parameters.add_child('parc_vp', node_parc_vp) - # Add the total quantity of fuel consumed per year to the tree - quantite_carbu_vp_france = pd.read_csv( + parcours_moyen_vehicule_france = parcours_moyen_vehicule_france.set_index('annee') + node_taille_parcours_moyen = ParameterNode( + 'taille_parcours_moyen', + data=dict( + description='Parcours moyen des vehicules en circulation en France métropolitaine en km', + )) + parameters.add_child('taille_parcours_moyen', node_taille_parcours_moyen) + + for element in ['voitures_particulieres_diesel', 'voitures_particulieres_essence', 'voitures_particulieres_gpl', 'voitures_particulieres_electrique']: + taille_parcours_moyen = parcours_moyen_vehicule_france[element] + years = list(range(2012, 2023)) + values = dict() + for year in years: + complet_year = f'{year}-01-01' + values[complet_year] = float(taille_parcours_moyen[complet_year]) + + node_taille_parcours_moyen_element = Parameter( + element, + data=dict( + description= 'parcours moyen de' + element + 'en France métropolitaine en km', + values=values, + )) + node_taille_parcours_moyen.add_child(element, node_taille_parcours_moyen_element) + + # Ajout de la consommation moyenne des carburants en France en l/100km + consommation_moyenne_carburant_france = pd.read_csv( os.path.join( assets_directory, 'quantites', - 'quantite_carbu_vp_france.csv' + 'consommation_moyenne_carburant_france.csv' ), sep =',' ) - quantite_carbu_vp_france = quantite_carbu_vp_france.set_index('Unnamed: 0') - quantite_carbu_vp = { - "description": "quantite de carburants consommés en France métropolitaine", - } - for element in ['diesel', 'essence']: - quantite_carburants = quantite_carbu_vp_france[element] - years = list(range(1990, 2017)) - years = sorted(years, key=int, reverse=True) + consommation_moyenne_carburant_france = consommation_moyenne_carburant_france.set_index('annee') + node_conso_vp_moyenne = ParameterNode( + 'conso_vp_moyenne', + data=dict( + description='Taille moyenne du parc automobile en France métropolitaine en milliers de véhicules en l/100km', + )) + parameters.add_child('conso_vp_moyenne', node_conso_vp_moyenne) + + for element in ['voitures_particulieres_diesel', 'voitures_particulieres_essence', 'voitures_particulieres_gpl']: + conso_vp_moyenne = consommation_moyenne_carburant_france[element] + years = list(range(2012, 2023)) values = dict() for year in years: - values['{}-01-01'.format(year)] = quantite_carburants[year] + complet_year = f'{year}-01-01' + values[complet_year] = float(conso_vp_moyenne[complet_year]) - quantite_carbu_vp[element] = { - "description": "consommation totale de " + element + " en France", - "values": values - } + node_conso_vp_moyenne_element = Parameter( + element, + data=dict( + description= 'Consommation moyenne de' + element + 'en France métropolitaine en l/100km', + values=values, + )) + node_conso_vp_moyenne.add_child(element, node_conso_vp_moyenne_element) - node_quantite_carbu_vp = ParameterNode( - 'quantite_carbu_vp', - data = quantite_carbu_vp, - ) - parameters.add_child('quantite_carbu_vp', node_quantite_carbu_vp) + # Add the number of vehicle in circulation to the tree + # parc_annuel_moyen_vp = pd.read_csv( + # os.path.join( + # assets_directory, + # 'quantites', + # 'parc_annuel_moyen_vp.csv' + # ), sep =',' + # ) + + # parc_annuel_moyen_vp = parc_annuel_moyen_vp.set_index('Unnamed: 0') + # parc_vp = { + # 'description': 'taille moyenne du parc automobile en France métropolitaine en milliers de véhicules', + # } + # for element in ['diesel', 'essence']: + # taille_parc = parc_annuel_moyen_vp[element] + # years = list(range(1990, 2017)) + # years = sorted(years, key=int, reverse=True) + # values = dict() + # for year in years: + # values['{}-01-01'.format(year)] = taille_parc[year] + + # parc_vp[element] = { + # 'description': 'nombre de véhicules particuliers immatriculés en France à motorisation ' + element, + # 'unit': '1000', + # 'values': values, + # } + + # node_parc_vp = ParameterNode( + # 'parc_vp', + # data = parc_vp, + # ) + # parameters.add_child('parc_vp', node_parc_vp) + + # # Add the total quantity of fuel consumed per year to the tree + # quantite_carbu_vp_france = pd.read_csv( + # os.path.join( + # assets_directory, + # 'quantites', + # 'quantite_carbu_vp_france.csv' + # ), sep =',' + # ) + + # quantite_carbu_vp_france = quantite_carbu_vp_france.set_index('Unnamed: 0') + # quantite_carbu_vp = { + # 'description': 'quantite de carburants consommés en France métropolitaine', + # } + # for element in ['diesel', 'essence']: + # quantite_carburants = quantite_carbu_vp_france[element] + # years = list(range(1990, 2017)) + # years = sorted(years, key=int, reverse=True) + # values = dict() + # for year in years: + # values['{}-01-01'.format(year)] = quantite_carburants[year] + + # quantite_carbu_vp[element] = { + # 'description': 'consommation totale de ' + element + ' en France', + # 'values': values + # } + + # node_quantite_carbu_vp = ParameterNode( + # 'quantite_carbu_vp', + # data = quantite_carbu_vp, + # ) + # parameters.add_child('quantite_carbu_vp', node_quantite_carbu_vp) - # Add the shares of each type of supercabrurant (SP95, SP98, E10, etc.) among supercarburants part_des_types_de_supercarburants = pd.read_csv( os.path.join( assets_directory, @@ -157,42 +278,36 @@ def preprocess_legislation(parameters): ) del part_des_types_de_supercarburants['Source'] - part_des_types_de_supercarburants = \ - part_des_types_de_supercarburants[part_des_types_de_supercarburants['annee'] > 0].copy() part_des_types_de_supercarburants['annee'] = part_des_types_de_supercarburants['annee'].astype(int) part_des_types_de_supercarburants = part_des_types_de_supercarburants.set_index('annee') - # delete share of e_85 because we have no data for its price - # When the sum of all shares is not one, need to multiply each share by the same coefficient - cols = part_des_types_de_supercarburants.columns - for element in cols: - part_des_types_de_supercarburants[element] = ( - part_des_types_de_supercarburants[element] - / (part_des_types_de_supercarburants['somme'] - part_des_types_de_supercarburants['sp_e85']) - ) - del part_des_types_de_supercarburants['sp_e85'] - del part_des_types_de_supercarburants['somme'] - cols = part_des_types_de_supercarburants.columns - part_des_types_de_supercarburants['somme'] = 0 - for element in cols: - part_des_types_de_supercarburants['somme'] += part_des_types_de_supercarburants[element] - assert (part_des_types_de_supercarburants['somme'] == 1).any(), "The weighting of the shares did not work" + # Add the shares of each type of supercabrurant (SP95, SP98, E10, etc.) among supercarburants + part_des_types_de_supercarburants = pd.read_csv( + os.path.join( + assets_directory, + 'part_des_types_de_supercarburants.csv' + ), sep =';' + ) + + del part_des_types_de_supercarburants['Source'] + # part_des_types_de_supercarburants['annee'] = part_des_types_de_supercarburants['annee'].astype(int) + part_des_types_de_supercarburants = part_des_types_de_supercarburants.set_index('annee') part_type_supercaburants = { - "description": "part de la consommation totale d'essence de chaque type supercarburant", + 'description': "part de la consommation totale d'essence de chaque type supercarburant", } - for element in ['super_plombe', 'sp_95', 'sp_98', 'sp_e10']: + for element in ['super_plombe', 'sp_95', 'sp_98', 'sp_e10', 'sp_e85']: part_par_carburant = part_des_types_de_supercarburants[element] - years = list(range(2000, 2017)) + years = list(range(2000, 2023)) years = sorted(years, key=int, reverse=True) values = dict() for year in years: values['{}-01-01'.format(year)] = part_par_carburant[year] part_type_supercaburants[element] = { - "description": "part de " + element + " dans la consommation totale d'essences", - "unit": "/1", - "values": values + 'description': 'part de ' + element + " dans la consommation totale d'essences", + 'unit': '/1', + 'values': values } node_part_type_supercaburants = ParameterNode( @@ -201,45 +316,84 @@ def preprocess_legislation(parameters): ) parameters.children['imposition_indirecte'].add_child('part_type_supercarburants', node_part_type_supercaburants) + # delete share of e_85 because we have no data for its price + # When the sum of all shares is not one, need to multiply each share by the same coefficient + # cols = part_des_types_de_supercarburants.columns + # for element in cols: + # part_des_types_de_supercarburants[element] = ( + # part_des_types_de_supercarburants[element] + # / (part_des_types_de_supercarburants['somme'] - part_des_types_de_supercarburants['sp_e85']) + # ) + # del part_des_types_de_supercarburants['sp_e85'] + # del part_des_types_de_supercarburants['somme'] + # cols = part_des_types_de_supercarburants.columns + # part_des_types_de_supercarburants['somme'] = 0 + # for element in cols: + # part_des_types_de_supercarburants['somme'] += part_des_types_de_supercarburants[element] + # assert (part_des_types_de_supercarburants['somme'] == 1).any(), 'The weighting of the shares did not work' + + # part_type_supercaburants = { + # 'description': "part de la consommation totale d'essence de chaque type supercarburant", + # } + # for element in ['super_plombe', 'sp_95', 'sp_98', 'sp_e10']: + # part_par_carburant = part_des_types_de_supercarburants[element] + # years = list(range(2000, 2017)) + # years = sorted(years, key=int, reverse=True) + # values = dict() + # for year in years: + # values['{}-01-01'.format(year)] = part_par_carburant[year] + + # part_type_supercaburants[element] = { + # 'description': 'part de ' + element + " dans la consommation totale d'essences", + # 'unit': '/1', + # 'values': values + # } + + # node_part_type_supercaburants = ParameterNode( + # 'part_type_supercaburants', + # data = part_type_supercaburants, + # ) + # parameters.children['imposition_indirecte'].add_child('part_type_supercarburants', node_part_type_supercaburants) + # Add CO2 emissions from energy (Source : Ademe) emissions_CO2 = { - "description": "émissions de CO2 des énergies", + 'description': 'émissions de CO2 des énergies', } emissions_CO2['carburants'] = { - "description": "émissions de CO2 des carburants", - "CO2_diesel": { - "description": "émissions de CO2 du diesel (en kg par litre)", + 'description': 'émissions de CO2 des carburants', + 'CO2_diesel': { + 'description': 'émissions de CO2 du diesel (en kg par litre)', # "unit": "kg/l", - "values": {'1990-01-01': 2.66} + 'values': {'1990-01-01': 2.66} }, - "CO2_essence": { - "description": "émissions de CO2 du diesel en kg par litre", + 'CO2_essence': { + 'description': 'émissions de CO2 du diesel en kg par litre', # "unit": "kg/l", - "values": {'1990-01-01': 2.42}, + 'values': {'1990-01-01': 2.42}, }, } emissions_CO2['energie_logement'] = { - "description": "émissions de CO2 de l'énergie dans le logement", - "CO2_electricite": { - "description": "émissions de CO2 de l'électricité (kg par kWh)", + 'description': "émissions de CO2 de l'énergie dans le logement", + 'CO2_electricite': { + 'description': "émissions de CO2 de l'électricité (kg par kWh)", # "unit": "kg/kWh", - "values": {'1990-01-01': 0.09}, + 'values': {'1990-01-01': 0.09}, }, - "CO2_gaz_ville": { - "description": "émissions de CO2 du gaz (kg par kWh)", + 'CO2_gaz_ville': { + 'description': 'émissions de CO2 du gaz (kg par kWh)', # "unit": "kg/kWh", - "values": {'1990-01-01': 0.241}, + 'values': {'1990-01-01': 0.241}, }, - "CO2_gaz_liquefie": { - "description": "émissions de CO2 du gaz (kg par kWh)", + 'CO2_gaz_liquefie': { + 'description': 'émissions de CO2 du gaz (kg par kWh)', # "unit": "kg/kWh", - "values": {'1990-01-01': 0.253}, + 'values': {'1990-01-01': 0.253}, }, - "CO2_combustibles_liquides": { - "description": "émissions de CO2 des combustibles liquides, (kg par litre)", + 'CO2_combustibles_liquides': { + 'description': 'émissions de CO2 des combustibles liquides, (kg par litre)', # "unit": "kg/l", - "values": {'1990-01-01': 3.24}, + 'values': {'1990-01-01': 3.24}, }, } node_emissions_CO2 = ParameterNode( @@ -250,14 +404,14 @@ def preprocess_legislation(parameters): # Add data from comptabilite national about alcohol alcool_conso_et_vin = { - "description": "alcools", + 'description': 'alcools', } alcool_conso_et_vin['vin'] = { - "description": "Pour calculer le taux de taxation implicite sur le vin", - "droit_cn_vin": { - "description": "Masse droit vin, vin mousseux, cidres et poirés selon comptabilité nationale", + 'description': 'Pour calculer le taux de taxation implicite sur le vin', + 'droit_cn_vin': { + 'description': 'Masse droit vin, vin mousseux, cidres et poirés selon comptabilité nationale', # TODO "unit": "currency" ? - "values": { + 'values': { '2013-01-01': 122, '2012-01-01': 120, '2011-01-01': 118, @@ -279,10 +433,10 @@ def preprocess_legislation(parameters): '1995-01-01': 129, }, }, - "masse_conso_cn_vin": { - "description": "Masse consommation vin, vin mousseux, cidres et poirés selon comptabilité nationale", + 'masse_conso_cn_vin': { + 'description': 'Masse consommation vin, vin mousseux, cidres et poirés selon comptabilité nationale', # TODO "unit": "currency" ? - "values": { + 'values': { '2013-01-01': 11515, '2012-01-01': 11407, '2011-01-01': 11387, @@ -308,11 +462,11 @@ def preprocess_legislation(parameters): } alcool_conso_et_vin['biere'] = { - "description": "Pour calculer le taux de taxation implicite sur la bière", - "droit_cn_biere": { - "description": "Masse droit biere selon comptabilité nationale", + 'description': 'Pour calculer le taux de taxation implicite sur la bière', + 'droit_cn_biere': { + 'description': 'Masse droit biere selon comptabilité nationale', # TODO "unit": "float", - "values": { + 'values': { '2013-01-01': 897, '2012-01-01': 783, '2011-01-01': 393, @@ -334,10 +488,10 @@ def preprocess_legislation(parameters): '1995-01-01': 361, } }, - "masse_conso_cn_biere": { - "description": "Masse consommation biere selon comptabilité nationale", + 'masse_conso_cn_biere': { + 'description': 'Masse consommation biere selon comptabilité nationale', # TODO "unit": "float", - "values": { + 'values': { '2013-01-01': 3321, '2012-01-01': 2868, '2011-01-01': 2769, @@ -362,11 +516,11 @@ def preprocess_legislation(parameters): } alcool_conso_et_vin['alcools_forts'] = { - "description": "Pour calculer le taux de taxation implicite sur alcools forts", - "droit_cn_alcools": { - "description": "Masse droit alcool selon comptabilité nationale sans droits sur les produits intermediaires et cotisation spéciale alcool fort", + 'description': 'Pour calculer le taux de taxation implicite sur alcools forts', + 'droit_cn_alcools': { + 'description': 'Masse droit alcool selon comptabilité nationale sans droits sur les produits intermediaires et cotisation spéciale alcool fort', # TODO "unit": "float", - "values": { + 'values': { '2012-01-01': 2225, '2011-01-01': 2150, '2010-01-01': 2111, @@ -383,10 +537,10 @@ def preprocess_legislation(parameters): # TODO: Problème pour les alcools forts chiffres différents entre les deux bases excel ! }, }, - "droit_cn_alcools_total": { - "description": "Masse droit alcool selon comptabilité nationale avec les differents droits", + 'droit_cn_alcools_total': { + 'description': 'Masse droit alcool selon comptabilité nationale avec les differents droits', # TODO "unit": "float", - "values": { + 'values': { '2013-01-01': 3022, '2012-01-01': 2718, '2011-01-01': 3078, @@ -408,10 +562,10 @@ def preprocess_legislation(parameters): '1995-01-01': 2337, }, }, - "masse_conso_cn_alcools": { - "description": "Masse consommation alcool selon comptabilité nationale", + 'masse_conso_cn_alcools': { + 'description': 'Masse consommation alcool selon comptabilité nationale', # TODO "unit": "float", - "values": { + 'values': { '2013-01-01': 7022, '2012-01-01': 6996, '2011-01-01': 6680, diff --git a/openfisca_france_indirect_taxation/parameters/prestations/cheque_energie.yaml b/openfisca_france_indirect_taxation/parameters/prestations/cheque_energie.yaml index 0a5fe1d7..23d83975 100644 --- a/openfisca_france_indirect_taxation/parameters/prestations/cheque_energie.yaml +++ b/openfisca_france_indirect_taxation/parameters/prestations/cheque_energie.yaml @@ -203,6 +203,6 @@ metadata: 2019-01-01: title: Arrêté du 26/12/2018 href: https://www.legifrance.gouv.fr/affichTexteArticle.do;jsessionid=D843FB5E734F86D5D73948595255E1EA.tplgfr27s_2?cidTexte=JORFTEXT000037864332&idArticle=LEGIARTI000038099971&dateTexte=20181228&categorieLien=cid#LEGIARTI000038099971 - description_en: Energy voucher + label_en: Energy voucher documentation: | Article R124-3 du Code de l'énergie diff --git a/openfisca_france_indirect_taxation/parameters/prix_carburants.py b/openfisca_france_indirect_taxation/parameters/prix_carburants.py new file mode 100644 index 00000000..21ac6cbf --- /dev/null +++ b/openfisca_france_indirect_taxation/parameters/prix_carburants.py @@ -0,0 +1,82 @@ +import csv +import os + +from openfisca_france_indirect_taxation.location import openfisca_france_indirect_taxation_location + +prix_carburant_par_annee_par_carburant_par_region_en_litre = None +prix_carburant_par_annee_par_carburant_par_region_en_hectolitre = None +prix_carburant_par_annee_par_carburant_en_hectolitre = None + + +def get_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre(): + global prix_carburant_par_annee_par_carburant_par_region_en_hectolitre + if prix_carburant_par_annee_par_carburant_par_region_en_hectolitre is None: + preload_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre() + return prix_carburant_par_annee_par_carburant_par_region_en_hectolitre + + +def get_prix_carburant_par_annee_par_carburant_par_region_en_litre(): + global prix_carburant_par_annee_par_carburant_par_region_en_litre + if prix_carburant_par_annee_par_carburant_par_region_en_litre is None: + preload_prix_carburant_par_annee_par_carburant_par_region_en_litre() + return prix_carburant_par_annee_par_carburant_par_region_en_litre + + +def get_prix_carburant_par_annee_par_carburant_en_hectolitre(): + global prix_carburant_par_annee_par_carburant_en_hectolitre + if prix_carburant_par_annee_par_carburant_en_hectolitre is None: + preload_prix_carburant_par_annee_par_carburant_en_hectolitre() + return prix_carburant_par_annee_par_carburant_en_hectolitre + + +def preload_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre(): + global prix_carburant_par_annee_par_carburant_par_region_en_hectolitre + csv_file_path = os.path.join( + openfisca_france_indirect_taxation_location, + 'openfisca_france_indirect_taxation', + 'assets', + 'prix', + 'prix_annuel_carburants_par_regions_hectolitre.csv' + ) + with open(csv_file_path, 'r') as csv_file: + csv_reader = csv.DictReader(csv_file) + prix_carburant_par_annee_par_carburant_par_region_en_hectolitre = {} + for row in csv_reader: + carburant = prix_carburant_par_annee_par_carburant_par_region_en_hectolitre.setdefault(row['region'], {}) + annee = carburant.setdefault(row['carburant'], {}) + annee[row['annee']] = row['prix_moyen_par_hectolitre'] + + +def preload_prix_carburant_par_annee_par_carburant_par_region_en_litre(): # On ne l'utilise par car choix arbitraire d'utiliser les prix par hectolitre + global prix_carburant_par_annee_par_carburant_par_region_en_litre + csv_file_path = os.path.join( + openfisca_france_indirect_taxation_location, + 'openfisca_france_indirect_taxation', + 'assets', + 'prix', + 'prix_annuel_carburants_par_regions_litre.csv' + ) + with open(csv_file_path, 'r') as csv_file: + csv_reader = csv.DictReader(csv_file) + prix_carburant_par_annee_par_carburant_par_region_en_litre = {} + for row in csv_reader: + carburant = prix_carburant_par_annee_par_carburant_par_region_en_litre.setdefault(row['region'], {}) + annee = carburant.setdefault(row['carburant'], {}) + annee[row['annee']] = row['prix_moyen_par_litre'] + + +def preload_prix_carburant_par_annee_par_carburant_en_hectolitre(): + global prix_carburant_par_annee_par_carburant_en_hectolitre + csv_file_path = os.path.join( + openfisca_france_indirect_taxation_location, + 'openfisca_france_indirect_taxation', + 'assets', + 'prix', + 'prix_par_carburant_annee_hectolitre.csv' + ) + with open(csv_file_path, 'r') as csv_file: + csv_reader = csv.DictReader(csv_file) + prix_carburant_par_annee_par_carburant_en_hectolitre = {} + for row in csv_reader: + annee = prix_carburant_par_annee_par_carburant_en_hectolitre.setdefault(row['carburant'], {}) + annee[row['annee']] = row['prix_moyen_par_hectolitre'] diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/prix_fioul_domestique.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/prix_fioul_domestique.yaml index 6132a687..df1f4d28 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/prix_fioul_domestique.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/prix_fioul_domestique.yaml @@ -58,7 +58,7 @@ prix_annuel_moyen_fioul_domestique_ttc_livraisons_2000_4999_litres_en_euro_par_l value: 0.3399 metadata: ipp_csv_id: prix_fuel_domestique_ttc - unit: currency-EUR + unit: currency prix_annuel_moyen_fioul_domestique_ht_livraisons_2000_4999_litres_en_euro_par_litre: description: Prix annuel moyen du fioul domestique HT - Livraisons de 2000 à 4999 litres - en euro par litre values: @@ -118,12 +118,12 @@ prix_annuel_moyen_fioul_domestique_ht_livraisons_2000_4999_litres_en_euro_par_li value: 0.2232 metadata: ipp_csv_id: prix_fuel_domestique_ht - unit: currency-EUR + unit: currency metadata: order: - prix_annuel_moyen_fioul_domestique_ttc_livraisons_2000_4999_litres_en_euro_par_litre - prix_annuel_moyen_fioul_domestique_ht_livraisons_2000_4999_litres_en_euro_par_litre - description_en: Domestic fuel price + label_en: Domestic fuel price documentation: | Source : http://www.prix-carburants.developpement-durable.gouv.fr/petrole/se_cons_fr.htm Moyenne annuelle diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/index.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/index.yaml index 4f1e8dfb..d47b386e 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/index.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/index.yaml @@ -5,4 +5,4 @@ metadata: - prix_unitaire_base_edf_ht - tarif_fixe_base_edf_ttc - prix_unitaire_base_edf_ttc - description_en: Regulated tariffs EDF + label_en: Regulated tariffs EDF diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/prix_unitaire_base_edf_ht.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/prix_unitaire_base_edf_ht.yaml index 7cadfeb2..08da0fff 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/prix_unitaire_base_edf_ht.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/prix_unitaire_base_edf_ht.yaml @@ -38,7 +38,7 @@ prix_kwh_3_kva: value: 0.095 metadata: ipp_csv_id: prix_unitaire_3kva_ht - unit: currency-EUR + unit: currency prix_kwh_6_kva: description: Prix du kWh - 6 kVA values: @@ -78,7 +78,7 @@ prix_kwh_6_kva: value: 0.0779 metadata: ipp_csv_id: prix_unitaire_6kva_ht - unit: currency-EUR + unit: currency prix_kwh_9_kva: description: Prix du kWh - 9 kVA values: @@ -116,7 +116,7 @@ prix_kwh_9_kva: value: 0.0779 metadata: ipp_csv_id: prix_unitaire_9kva_ht - unit: currency-EUR + unit: currency prix_kwh_12_kva: description: Prix du kWh - 12 kVA values: @@ -154,7 +154,7 @@ prix_kwh_12_kva: value: 0.0779 metadata: ipp_csv_id: prix_unitaire_12kva_ht - unit: currency-EUR + unit: currency prix_kwh_15_kva: description: Prix du kWh - 15 kVA values: @@ -192,7 +192,7 @@ prix_kwh_15_kva: value: 0.0779 metadata: ipp_csv_id: prix_unitaire_15kva_ht - unit: currency-EUR + unit: currency prix_kwh_18_kva: description: Prix du kWh - 18 kVA values: @@ -230,7 +230,7 @@ prix_kwh_18_kva: value: 0.0779 metadata: ipp_csv_id: prix_unitaire_18kva_ht - unit: currency-EUR + unit: currency prix_kwh_24_kva: description: Prix du kWh - 24 kVA values: @@ -268,7 +268,7 @@ prix_kwh_24_kva: value: 0.0779 metadata: ipp_csv_id: prix_unitaire_24kva_ht - unit: currency-EUR + unit: currency prix_kwh_30_kva: description: Prix du kWh - 30 kVA values: @@ -306,7 +306,7 @@ prix_kwh_30_kva: value: 0.0779 metadata: ipp_csv_id: prix_unitaire_30kva_ht - unit: currency-EUR + unit: currency prix_kwh_36_kva: description: Prix du kWh - 36 kVA values: @@ -344,7 +344,7 @@ prix_kwh_36_kva: value: 0.0779 metadata: ipp_csv_id: prix_unitaire_36kva_ht - unit: currency-EUR + unit: currency metadata: order: - prix_kwh_3_kva @@ -356,7 +356,7 @@ metadata: - prix_kwh_24_kva - prix_kwh_30_kva - prix_kwh_36_kva - description_en: Unitary price base tariff EDF (without taxes) + label_en: Unitary price base tariff EDF (without taxes) documentation: | Source : http://www.cre.fr/marches/marche-de-detail/marche-de-l-electricite#section2 CRE diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/prix_unitaire_base_edf_ttc.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/prix_unitaire_base_edf_ttc.yaml index 715d202a..29edf202 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/prix_unitaire_base_edf_ttc.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/prix_unitaire_base_edf_ttc.yaml @@ -74,7 +74,7 @@ prix_kwh_3_kva: value: 0.0891 metadata: ipp_csv_id: prix_unitaire_3kva_ttc - unit: currency-EUR + unit: currency prix_kwh_6_kva: description: Prix du kWh - 6 kVA values: @@ -150,11 +150,11 @@ prix_kwh_6_kva: value: 0.084 metadata: ipp_csv_id: prix_unitaire_6kva_ttc - unit: currency-EUR + unit: currency metadata: order: - prix_kwh_3_kva - prix_kwh_6_kva - description_en: Unitary price base tariff EDF (including taxes) + label_en: Unitary price base tariff EDF (including taxes) documentation: | Source : base Pégase, prix pour un ménage, tarif bleu option base, en euros TTC, données annuelles diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/tarif_fixe_base_edf_ht.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/tarif_fixe_base_edf_ht.yaml index 472489df..136c82be 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/tarif_fixe_base_edf_ht.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/tarif_fixe_base_edf_ht.yaml @@ -34,7 +34,7 @@ tarif_fixe_3_kva: value: 19.68 metadata: ipp_csv_id: tarif_fixe_base_3kva_ht - unit: currency-EUR + unit: currency tarif_fixe_6_kva: description: Tarif fixe - 6 kVA values: @@ -70,7 +70,7 @@ tarif_fixe_6_kva: value: 49.92 metadata: ipp_csv_id: tarif_fixe_base_6kva_ht - unit: currency-EUR + unit: currency tarif_fixe_9_kva: description: Tarif fixe - 9 kVA values: @@ -106,7 +106,7 @@ tarif_fixe_9_kva: value: 98.88 metadata: ipp_csv_id: tarif_fixe_base_9kva_ht - unit: currency-EUR + unit: currency tarif_fixe_12_kva: description: Tarif fixe - 12 kVA values: @@ -142,7 +142,7 @@ tarif_fixe_12_kva: value: 141.96 metadata: ipp_csv_id: tarif_fixe_base_12kva_ht - unit: currency-EUR + unit: currency tarif_fixe_15_kva: description: Tarif fixe - 15 kVA values: @@ -178,7 +178,7 @@ tarif_fixe_15_kva: value: 185.04 metadata: ipp_csv_id: tarif_fixe_base_15kva_ht - unit: currency-EUR + unit: currency tarif_fixe_18_kva: description: Tarif fixe - 18 kVA values: @@ -214,7 +214,7 @@ tarif_fixe_18_kva: value: 228.12 metadata: ipp_csv_id: tarif_fixe_base_18kva_ht - unit: currency-EUR + unit: currency tarif_fixe_24_kva: description: Tarif fixe - 24 kVA values: @@ -250,7 +250,7 @@ tarif_fixe_24_kva: value: 380.52 metadata: ipp_csv_id: tarif_fixe_base_24kva_ht - unit: currency-EUR + unit: currency tarif_fixe_30_kva: description: Tarif fixe - 30 kVA values: @@ -286,7 +286,7 @@ tarif_fixe_30_kva: value: 532.92 metadata: ipp_csv_id: tarif_fixe_base_30kva_ht - unit: currency-EUR + unit: currency tarif_fixe_36_kva: description: Tarif fixe - 36 kVA values: @@ -322,7 +322,7 @@ tarif_fixe_36_kva: value: 685.32 metadata: ipp_csv_id: tarif_fixe_base_36kva_ht - unit: currency-EUR + unit: currency metadata: order: - tarif_fixe_3_kva @@ -334,7 +334,7 @@ metadata: - tarif_fixe_24_kva - tarif_fixe_30_kva - tarif_fixe_36_kva - description_en: Fix fee base tariff EDF (without taxes) + label_en: Fix fee base tariff EDF (without taxes) documentation: | Source : http://www.cre.fr/marches/marche-de-detail/marche-de-l-electricite#section2 Commission de régulation de l'énergie (CRE) diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/tarif_fixe_base_edf_ttc.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/tarif_fixe_base_edf_ttc.yaml index c10bc2fb..91a93453 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/tarif_fixe_base_edf_ttc.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_edf/tarif_fixe_base_edf_ttc.yaml @@ -70,7 +70,7 @@ tarif_fixe_3_kva: value: 40.5 metadata: ipp_csv_id: tarif_fixe_base_3kva_ttc - unit: currency-EUR + unit: currency tarif_fixe_6_kva: description: Tarif fixe - 6 kVA values: @@ -140,7 +140,7 @@ tarif_fixe_6_kva: value: 80.36 metadata: ipp_csv_id: tarif_fixe_base_6kva_ttc - unit: currency-EUR + unit: currency tarif_fixe_9_kva: description: Tarif fixe - 9 kVA values: @@ -214,7 +214,7 @@ tarif_fixe_9_kva: value: 141.59 metadata: ipp_csv_id: tarif_fixe_base_9kva_ttc - unit: currency-EUR + unit: currency tarif_fixe_12_kva: description: Tarif fixe - 12 kVA values: @@ -290,7 +290,7 @@ tarif_fixe_12_kva: value: 205.0 metadata: ipp_csv_id: tarif_fixe_base_12kva_ttc - unit: currency-EUR + unit: currency tarif_fixe_15_kva: description: Tarif fixe - 15 kVA values: @@ -366,7 +366,7 @@ tarif_fixe_15_kva: value: 268.41 metadata: ipp_csv_id: tarif_fixe_base_15kva_ttc - unit: currency-EUR + unit: currency tarif_fixe_18_kva: description: Tarif fixe - 18 kVA values: @@ -440,7 +440,7 @@ tarif_fixe_18_kva: value: 331.82 metadata: ipp_csv_id: tarif_fixe_base_18kva_ttc - unit: currency-EUR + unit: currency metadata: order: - tarif_fixe_3_kva @@ -449,7 +449,7 @@ metadata: - tarif_fixe_12_kva - tarif_fixe_15_kva - tarif_fixe_18_kva - description_en: Fix fee base tariff EDF (including taxes) + label_en: Fix fee base tariff EDF (including taxes) documentation: | Source : base Pégase, prix pour un ménage, tarif bleu option base, en euros TTC, données annuelles Note : A partir de 2018 les tarifs de l'abonnement sont exprimés en euros par mois et non par an. Le prix mensuel est multiplié par 12 dans ce barème diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/index.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/index.yaml index e9a33580..6280d3b3 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/index.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/index.yaml @@ -5,4 +5,4 @@ metadata: - prix_unitaire_gdf_par_zone_ht - tarif_fixe_gdf_ttc - prix_unitaire_gdf_ttc - description_en: Regulated tariffs GDF + label_en: Regulated tariffs GDF diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/prix_unitaire_gdf_par_zone_ht.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/prix_unitaire_gdf_par_zone_ht.yaml index 0e331f33..9013bde9 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/prix_unitaire_gdf_par_zone_ht.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/prix_unitaire_gdf_par_zone_ht.yaml @@ -22,7 +22,7 @@ prix_kwh_base_zone_1_ht: value: 7.24 metadata: ipp_csv_id: prix_unitaire_gdf_zone1_base_ht - unit: currency-EUR + unit: currency prix_kwh_base_zone_2_ht: description: Prix kWh Base - zone 2 - HT values: @@ -46,7 +46,7 @@ prix_kwh_base_zone_2_ht: value: 7.24 metadata: ipp_csv_id: prix_unitaire_gdf_zone2_base_ht - unit: currency-EUR + unit: currency prix_kwh_base_zone_3_ht: description: Prix kWh Base - zone 3 - HT values: @@ -70,7 +70,7 @@ prix_kwh_base_zone_3_ht: value: 7.24 metadata: ipp_csv_id: prix_unitaire_gdf_zone3_base_ht - unit: currency-EUR + unit: currency prix_kwh_base_zone_4_ht_ht: description: Prix kWh Base - zone 4 - HT - HT values: @@ -94,7 +94,7 @@ prix_kwh_base_zone_4_ht_ht: value: 7.24 metadata: ipp_csv_id: prix_unitaire_gdf_zone4_base_ht - unit: currency-EUR + unit: currency prix_kwh_base_zone_5: description: Prix kWh Base - zone 5 values: @@ -118,7 +118,7 @@ prix_kwh_base_zone_5: value: 7.24 metadata: ipp_csv_id: prix_unitaire_gdf_zone5_base_ht - unit: currency-EUR + unit: currency prix_kwh_base_zone_6_ht: description: Prix kWh Base - zone 6 - HT values: @@ -142,7 +142,7 @@ prix_kwh_base_zone_6_ht: value: 7.24 metadata: ipp_csv_id: prix_unitaire_gdf_zone6_base_ht - unit: currency-EUR + unit: currency prix_kwh_b0_zone_1_ht: description: Prix kWh B0 - zone 1 - HT values: @@ -166,7 +166,7 @@ prix_kwh_b0_zone_1_ht: value: 6.2 metadata: ipp_csv_id: prix_unitaire_gdf_zone1_b0_ht - unit: currency-EUR + unit: currency prix_kwh_b0_zone_2_ht: description: Prix kWh B0 - zone 2 - HT values: @@ -190,7 +190,7 @@ prix_kwh_b0_zone_2_ht: value: 6.2 metadata: ipp_csv_id: prix_unitaire_gdf_zone2_b0_ht - unit: currency-EUR + unit: currency prix_kwh_b0_zone_3_ht: description: Prix kWh B0 - zone 3 - HT values: @@ -214,7 +214,7 @@ prix_kwh_b0_zone_3_ht: value: 6.2 metadata: ipp_csv_id: prix_unitaire_gdf_zone3_b0_ht - unit: currency-EUR + unit: currency prix_kwh_b0_zone_4_ht_ht: description: Prix kWh B0 - zone 4 - HT - HT values: @@ -238,7 +238,7 @@ prix_kwh_b0_zone_4_ht_ht: value: 6.2 metadata: ipp_csv_id: prix_unitaire_gdf_zone4_b0_ht - unit: currency-EUR + unit: currency prix_kwh_b0_zone_5: description: Prix kWh B0 - zone 5 values: @@ -262,7 +262,7 @@ prix_kwh_b0_zone_5: value: 6.2 metadata: ipp_csv_id: prix_unitaire_gdf_zone5_b0_ht - unit: currency-EUR + unit: currency prix_kwh_b0_zone_6_ht: description: Prix kWh B0 - zone 6 - HT values: @@ -286,7 +286,7 @@ prix_kwh_b0_zone_6_ht: value: 6.2 metadata: ipp_csv_id: prix_unitaire_gdf_zone6_b0_ht - unit: currency-EUR + unit: currency prix_kwh_b1_zone_1_ht: description: Prix kWh B1 - zone 1 - HT values: @@ -310,7 +310,7 @@ prix_kwh_b1_zone_1_ht: value: 4.17 metadata: ipp_csv_id: prix_unitaire_gdf_zone1_b1_ht - unit: currency-EUR + unit: currency prix_kwh_b1_zone_2_ht: description: Prix kWh B1 - zone 2 - HT values: @@ -334,7 +334,7 @@ prix_kwh_b1_zone_2_ht: value: 4.23 metadata: ipp_csv_id: prix_unitaire_gdf_zone2_b1_ht - unit: currency-EUR + unit: currency prix_kwh_b1_zone_3_ht: description: Prix kWh B1 - zone 3 - HT values: @@ -358,7 +358,7 @@ prix_kwh_b1_zone_3_ht: value: 4.29 metadata: ipp_csv_id: prix_unitaire_gdf_zone3_b1_ht - unit: currency-EUR + unit: currency prix_kwh_b1_zone_4_ht: description: Prix kWh B1 - zone 4 - HT values: @@ -382,7 +382,7 @@ prix_kwh_b1_zone_4_ht: value: 4.35 metadata: ipp_csv_id: prix_unitaire_gdf_zone4_b1_ht - unit: currency-EUR + unit: currency prix_kwh_b1_zone_5: description: Prix kWh B1 - zone 5 values: @@ -406,7 +406,7 @@ prix_kwh_b1_zone_5: value: 4.41 metadata: ipp_csv_id: prix_unitaire_gdf_zone5_b1_ht - unit: currency-EUR + unit: currency prix_kwh_b1_zone_6_ht: description: Prix kWh B1 - zone 6 - HT values: @@ -430,7 +430,7 @@ prix_kwh_b1_zone_6_ht: value: 4.47 metadata: ipp_csv_id: prix_unitaire_gdf_zone6_b1_ht - unit: currency-EUR + unit: currency prix_kwh_b2i_zone_1_ht: description: Prix kWh B2I - zone 1 - HT values: @@ -454,7 +454,7 @@ prix_kwh_b2i_zone_1_ht: value: 4.17 metadata: ipp_csv_id: prix_unitaire_gdf_zone1_b2i_ht - unit: currency-EUR + unit: currency prix_kwh_b2i_zone_2_ht: description: Prix kWh B2I - zone 2 - HT values: @@ -478,7 +478,7 @@ prix_kwh_b2i_zone_2_ht: value: 4.23 metadata: ipp_csv_id: prix_unitaire_gdf_zone2_b2i_ht - unit: currency-EUR + unit: currency prix_kwh_b2i_zone_3_ht: description: Prix kWh B2I - zone 3 - HT values: @@ -502,7 +502,7 @@ prix_kwh_b2i_zone_3_ht: value: 4.29 metadata: ipp_csv_id: prix_unitaire_gdf_zone3_b2i_ht - unit: currency-EUR + unit: currency prix_kwh_b2i_zone_4_ht: description: Prix kWh B2I - zone 4 - HT values: @@ -526,7 +526,7 @@ prix_kwh_b2i_zone_4_ht: value: 4.35 metadata: ipp_csv_id: prix_unitaire_gdf_zone4_b2i_ht - unit: currency-EUR + unit: currency prix_kwh_b2i_zone_5: description: Prix kWh B2I - zone 5 values: @@ -550,7 +550,7 @@ prix_kwh_b2i_zone_5: value: 4.41 metadata: ipp_csv_id: prix_unitaire_gdf_zone5_b2i_ht - unit: currency-EUR + unit: currency prix_kwh_b2i_zone_6_ht: description: Prix kWh B2I - zone 6 - HT values: @@ -574,7 +574,7 @@ prix_kwh_b2i_zone_6_ht: value: 4.47 metadata: ipp_csv_id: prix_unitaire_gdf_zone6_b2i_ht - unit: currency-EUR + unit: currency metadata: order: - prix_kwh_base_zone_1_ht @@ -606,4 +606,4 @@ metadata: 2013-07-01: Arrêté du 27/06/2013 2013-01-01: Arrêté du 27/06/2013 2012-01-01: Arrêté du 22/12/2011 - description_en: Unitary price regulated tariff GDF (without taxes) + label_en: Unitary price regulated tariff GDF (without taxes) diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/prix_unitaire_gdf_ttc.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/prix_unitaire_gdf_ttc.yaml index 65adfc14..1d21b733 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/prix_unitaire_gdf_ttc.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/prix_unitaire_gdf_ttc.yaml @@ -82,7 +82,7 @@ prix_kwh_base_ttc: value: 0.0537 metadata: ipp_csv_id: prix_unitaire_gdf_base_ttc - unit: currency-EUR + unit: currency prix_kwh_b0_ttc: description: Prix kWh B0 - TTC values: @@ -166,7 +166,7 @@ prix_kwh_b0_ttc: value: 0.0438 metadata: ipp_csv_id: prix_unitaire_gdf_b0_ttc - unit: currency-EUR + unit: currency prix_kwh_b1_ttc: description: Prix kWh B1 - TTC values: @@ -248,7 +248,7 @@ prix_kwh_b1_ttc: value: 0.0315 metadata: ipp_csv_id: prix_unitaire_gdf_b1_ttc - unit: currency-EUR + unit: currency prix_kwh_b2i_ttc: description: Prix kWh B2I - TTC values: @@ -330,16 +330,16 @@ prix_kwh_b2i_ttc: value: null metadata: ipp_csv_id: prix_unitaire_gdf_b2i_ttc - unit: currency-EUR + unit: currency metadata: order: - prix_kwh_base_ttc - prix_kwh_b0_ttc - prix_kwh_b1_ttc - prix_kwh_b2i_ttc - description_en: Unitary price regulated tariff GDF (including taxes) + label_en: Unitary price regulated tariff GDF (including taxes) documentation: | - Source : + Source : jusqu'à 2013 base Pégase, prix pour un ménage, en euros TTC, données annuelles depuis 2013, CRE "https://www.cre.fr/Pages-annexes/open-data" Pour les données à partir de 2013 pour les contrats B1 et B2I, les valeurs correspondent à celles en zone 1 diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/tarif_fixe_gdf_ht.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/tarif_fixe_gdf_ht.yaml index cba76f2b..058a8771 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/tarif_fixe_gdf_ht.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/tarif_fixe_gdf_ht.yaml @@ -20,7 +20,7 @@ base_0_1000_ht: value: 33.0 metadata: ipp_csv_id: tarif_fixe_gdf_base_ht - unit: currency-EUR + unit: currency b0_1000_6000_ht: description: B0 (1000-6000) - HT values: @@ -42,7 +42,7 @@ b0_1000_6000_ht: value: 45.84 metadata: ipp_csv_id: tarif_fixe_gdf_b0_ht - unit: currency-EUR + unit: currency b1_6_30000_ht: description: B1 (6-30000) - HT values: @@ -64,7 +64,7 @@ b1_6_30000_ht: value: 146.4 metadata: ipp_csv_id: tarif_fixe_gdf_b1_ht - unit: currency-EUR + unit: currency b2i_30000_ht: description: B2I (>30000) - HT values: @@ -86,7 +86,7 @@ b2i_30000_ht: value: 146.4 metadata: ipp_csv_id: tarif_fixe_gdf_b2i_ht - unit: currency-EUR + unit: currency metadata: order: - base_0_1000_ht @@ -98,4 +98,4 @@ metadata: 2013-07-01: Arrêté du 27/06/2013 2013-01-01: Arrêté du 21/12/2012 2012-01-01: Arrêté du 22/12/2011 - description_en: Fix fee regulated tariff GDF (without taxes) + label_en: Fix fee regulated tariff GDF (without taxes) diff --git a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/tarif_fixe_gdf_ttc.yaml b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/tarif_fixe_gdf_ttc.yaml index 2688844d..88552cc2 100644 --- a/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/tarif_fixe_gdf_ttc.yaml +++ b/openfisca_france_indirect_taxation/parameters/tarifs_energie/tarifs_reglementes_gdf/tarif_fixe_gdf_ttc.yaml @@ -72,7 +72,7 @@ base_0_1000: value: 22.09 metadata: ipp_csv_id: tarif_fixe_gdf_base_ttc - unit: currency-EUR + unit: currency b0_1000_6000: description: B0 (1000-6000) values: @@ -138,7 +138,7 @@ b0_1000_6000: value: 33.17 metadata: ipp_csv_id: tarif_fixe_gdf_b0_ttc - unit: currency-EUR + unit: currency b1_6_30000: description: B1 (6-30000) values: @@ -212,7 +212,7 @@ b1_6_30000: value: 223.77 metadata: ipp_csv_id: tarif_fixe_gdf_b1_ttc - unit: currency-EUR + unit: currency b2i_30000: description: B2I (>30000) values: @@ -284,13 +284,13 @@ b2i_30000: value: null metadata: ipp_csv_id: tarif_fixe_gdf_b2i_ttc - unit: currency-EUR + unit: currency metadata: order: - base_0_1000 - b0_1000_6000 - b1_6_30000 - b2i_30000 - description_en: Fix fee regulated tariff GDF (including taxes) + label_en: Fix fee regulated tariff GDF (including taxes) documentation: | Source : base Pégase, prix pour un ménage, en euros TTC, données annuelles diff --git a/openfisca_france_indirect_taxation/projects/budgets/cumule_17_22/simul_reforme_taxe_energie.py b/openfisca_france_indirect_taxation/projects/budgets/cumule_17_22/simul_reforme_taxe_energie.py index 9006a25e..27ad5ef3 100644 --- a/openfisca_france_indirect_taxation/projects/budgets/cumule_17_22/simul_reforme_taxe_energie.py +++ b/openfisca_france_indirect_taxation/projects/budgets/cumule_17_22/simul_reforme_taxe_energie.py @@ -17,10 +17,10 @@ log = logging.getLogger(__name__) -ident_men = pd.DataFrame(pd.HDFStore("C:/Users/c.lallemand/data_taxation_indirecte/data_collections/output/openfisca_indirect_taxation_data_2017.h5")['input']['ident_men']) +ident_men = pd.DataFrame(pd.HDFStore('C:/Users/c.lallemand/data_taxation_indirecte/data_collections/output/openfisca_indirect_taxation_data_2017.h5')['input']['ident_men']) ident_men['ident_men'] = ident_men.ident_men.astype(numpy.int64) -path = "Q:/Evaluation du budget/PLF2022/donnees_relance_note_mars_2022/fiscalite_indirecte" +path = 'Q:/Evaluation du budget/PLF2022/donnees_relance_note_mars_2022/fiscalite_indirecte' elasticite = True replique_gouv = True @@ -67,7 +67,7 @@ def simulate_reformes_energie(graph = True, replique_gouv = replique_gouv, elast ] baseline_tax_benefit_system = FranceIndirectTaxationTaxBenefitSystem() - asof(baseline_tax_benefit_system, "2017-12-31") + asof(baseline_tax_benefit_system, '2017-12-31') if elasticite: survey_scenario = SurveyScenario.create( elasticities = elasticities, @@ -136,7 +136,7 @@ def simulate_reformes_energie(graph = True, replique_gouv = replique_gouv, elast return df -if __name__ == "__main__": +if __name__ == '__main__': import sys logging.basicConfig(level = logging.INFO, stream = sys.stdout) df = simulate_reformes_energie(replique_gouv = replique_gouv, elasticite = elasticite, graph = False) diff --git a/openfisca_france_indirect_taxation/projects/budgets/cumule_17_22/simul_reformes_tabac.py b/openfisca_france_indirect_taxation/projects/budgets/cumule_17_22/simul_reformes_tabac.py index d9344091..598d2949 100644 --- a/openfisca_france_indirect_taxation/projects/budgets/cumule_17_22/simul_reformes_tabac.py +++ b/openfisca_france_indirect_taxation/projects/budgets/cumule_17_22/simul_reformes_tabac.py @@ -29,13 +29,13 @@ 2020: 20441000000, } -path = "Q:/Evaluation du budget/PLF2022/donnees_relance_note_mars_2022/fiscalite_indirecte" +path = 'Q:/Evaluation du budget/PLF2022/donnees_relance_note_mars_2022/fiscalite_indirecte' is_elasticite = True replique_gouv = True -if not(is_elasticite): +if not (is_elasticite): elas = 0 -elif not(replique_gouv): +elif not (replique_gouv): elas = -0.5 elif replique_gouv: elas = -0.635 @@ -172,4 +172,4 @@ def simulate_reforme_tabac(year, baseline_year, graph = True, elasticite = None) variation_relative_depenses_tabac, cout = simulate_reforme_tabac(year = year, baseline_year = baseline_year, elasticite = elas) - couts["{}_{}".format(baseline_year, str(year))] = cout + couts['{}_{}'.format(baseline_year, str(year))] = cout diff --git a/openfisca_france_indirect_taxation/projects/budgets/reforme_energie_budgets_2018_2019.py b/openfisca_france_indirect_taxation/projects/budgets/reforme_energie_budgets_2018_2019.py index b637ba9f..103710ce 100644 --- a/openfisca_france_indirect_taxation/projects/budgets/reforme_energie_budgets_2018_2019.py +++ b/openfisca_france_indirect_taxation/projects/budgets/reforme_energie_budgets_2018_2019.py @@ -38,26 +38,26 @@ def modify_parameters(parameters): node = ParameterNode( 'officielle_2019_in_2017', data = { - "description": "officielle_2019_in_2017", - "diesel_2019_in_2017": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", - "unit": 'currency', - "values": {'2016-01-01': 6.33} # 266 = valeur du contenu carbone du diesel (source : Ademe) + 'description': 'officielle_2019_in_2017', + 'diesel_2019_in_2017': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', + 'unit': 'currency', + 'values': {'2016-01-01': 6.33} # 266 = valeur du contenu carbone du diesel (source : Ademe) }, - "essence_2019_in_2017": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": 'currency', - "values": {'2016-01-01': 3.22}, + 'essence_2019_in_2017': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': {'2016-01-01': 3.22}, }, - "combustibles_liquides_2019_in_2017": { - "description": "Surcroît de prix du fioul domestique (en euros par litre)", - "unit": 'currency', - "values": {'2016-01-01': 0.0373}, + 'combustibles_liquides_2019_in_2017': { + 'description': 'Surcroît de prix du fioul domestique (en euros par litre)', + 'unit': 'currency', + 'values': {'2016-01-01': 0.0373}, }, - "gaz_ville_2019_in_2017": { - "description": "Surcroît de prix du gaz (en euros par kWh)", - "unit": 'currency', - "values": {'2016-01-01': 0.00257}, # 0.241 * (0.0446 - 0.0305) 0.00257 + 'gaz_ville_2019_in_2017': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', + 'unit': 'currency', + 'values': {'2016-01-01': 0.00257}, # 0.241 * (0.0446 - 0.0305) 0.00257 }, } ) @@ -70,12 +70,12 @@ def modify_parameters(parameters): class officielle_2019_in_2017(Reform): key = 'officielle_2019_in_2017', - name = "Réforme de la fiscalité des énergies de 2018 par rapport aux taux de 2016", + name = 'Réforme de la fiscalité des énergies de 2018 par rapport aux taux de 2016', class cheques_energie(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period, parameters): revenu_fiscal = numpy.maximum(0.0, menage('revdecm', period) / 1.22) @@ -100,7 +100,7 @@ def formula(menage, period, parameters): class combustibles_liquides_ticpe_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme" + label = 'Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -131,7 +131,7 @@ def formula(menage, period, parameters): class combustibles_liquides_ticpe_test(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme" + label = 'Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -160,7 +160,7 @@ def formula(menage, period, parameters): class quantite_combustibles_liquides_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme" + label = 'Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme' def formula(menage, period, parameters): reforme_combustibles_liquides = \ @@ -176,7 +176,7 @@ def formula(menage, period, parameters): class depenses_carburants_corrigees_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Depenses en carburants après reaction a la reforme" + label = 'Depenses en carburants après reaction a la reforme' def formula(menage, period, parameters): depenses_diesel_ajustees = menage('depenses_diesel_corrigees_officielle_2019_in_2017', period) @@ -188,7 +188,7 @@ def formula(menage, period, parameters): class depenses_combustibles_liquides_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en combustibles_liquides après réaction à la réforme" + label = 'Dépenses en combustibles_liquides après réaction à la réforme' def formula(menage, period, parameters): depenses_combustibles_liquides = menage('depenses_combustibles_liquides', period) @@ -208,7 +208,7 @@ def formula(menage, period, parameters): class depenses_diesel_corrigees_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel après réaction à la réforme" + label = 'Dépenses en diesel après réaction à la réforme' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -224,7 +224,7 @@ def formula(menage, period, parameters): class depenses_energies_logement_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en énergies dans le logement après la réforme" + label = 'Dépenses en énergies dans le logement après la réforme' def formula(menage, period): depenses_electricite = menage('depenses_electricite', period) @@ -244,7 +244,7 @@ def formula(menage, period): class depenses_essence_corrigees_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence après réaction à la réforme" + label = 'Dépenses en essence après réaction à la réforme' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -278,7 +278,7 @@ def formula(menage, period): class depenses_gaz_ville_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz après réaction à la réforme" + label = 'Dépenses en gaz après réaction à la réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -302,14 +302,14 @@ def formula(menage, period, parameters): class diesel_ticpe_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal # If the parameter does not have a defined value, it returns None majoration_ticpe_diesel = \ - parameters(period.start).imposition_indirecte.produits_energetiques.major_regionale_ticpe_gazole.alsace + parameters(period.start).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole[42] # alsace accise_diesel = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.gazole @@ -343,14 +343,14 @@ def formula(menage, period, parameters): class diesel_ticpe_test(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal # If the parameter does not have a defined value, it returns None majoration_ticpe_diesel = \ - parameters(period.start).imposition_indirecte.produits_energetiques.major_regionale_ticpe_gazole.alsace + parameters(period.start).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole[42] # alsace accise_diesel = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.gazole @@ -383,7 +383,7 @@ def formula(menage, period, parameters): class quantite_diesel_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): reforme_diesel = parameters(period.start).officielle_2019_in_2017.diesel_2019_in_2017 @@ -399,14 +399,14 @@ def formula(menage, period, parameters): class diesel_ticpe_rattrapage_integral(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal # If the parameter does not have a defined value, it returns None majoration_ticpe_diesel = \ - parameters(period.start).imposition_indirecte.produits_energetiques.major_regionale_ticpe_gazole.alsace + parameters(period.start).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole[42] # alsace accise_diesel = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.gazole @@ -442,7 +442,7 @@ def formula(menage, period, parameters): class essence_ticpe_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme' def formula_2009(menage, period): sp95_ticpe_ajustee = menage('sp95_ticpe_officielle_2019_in_2017', period) @@ -467,7 +467,7 @@ def formula_1990(menage, period, parameters): class essence_ticpe_test(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme' def formula_2009(menage, period): sp95_ticpe_ajustee = menage('sp95_ticpe_test', period) @@ -492,7 +492,7 @@ def formula_1990(menage, period, parameters): class quantite_essence_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme' def formula_2009(menage, period): quantite_sp95_ajustee = menage('quantite_sp95_officielle_2019_in_2017', period) @@ -517,7 +517,7 @@ def formula_1990(menage, period, parameters): class gains_tva_carburants_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Recettes en TVA sur les carburants de la réforme" + label = 'Recettes en TVA sur les carburants de la réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -546,7 +546,7 @@ def formula(menage, period, parameters): class gains_tva_combustibles_liquides_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la réforme en TVA sur les combustibles liquides" + label = 'Recettes de la réforme en TVA sur les combustibles liquides' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -571,7 +571,7 @@ def formula(menage, period, parameters): class gains_tva_gaz_ville_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la réforme en TVA sur le gaz naturel" + label = 'Recettes de la réforme en TVA sur le gaz naturel' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -597,7 +597,7 @@ def formula(menage, period, parameters): class gains_tva_total_energies_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la réforme en TVA sur toutes les énergies" + label = 'Recettes de la réforme en TVA sur toutes les énergies' def formula(menage, period): gains_carburants = menage('gains_tva_carburants_officielle_2019_in_2017', period) @@ -610,7 +610,7 @@ def formula(menage, period): class quantites_gaz_final_cale(YearlyVariable): value_type = float entity = Menage - label = "Quantités de gaz consommées après la réforme" + label = 'Quantités de gaz consommées après la réforme' def formula(menage, period, parameters): depenses_gaz_variables = menage('depenses_gaz_variables_cale', period) @@ -623,7 +623,7 @@ def formula(menage, period, parameters): class quantites_gaz_final_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Quantités de gaz consommées après la réforme" + label = 'Quantités de gaz consommées après la réforme' def formula(menage, period, parameters): depenses_gaz_ville_officielle_2019_in_2017 = menage('depenses_gaz_ville_officielle_2019_in_2017', period) @@ -641,7 +641,7 @@ def formula(menage, period, parameters): class revenu_reforme_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Revenu généré par la réforme officielle 2018 avant redistribution" + label = 'Revenu généré par la réforme officielle 2018 avant redistribution' def formula(menage, period): total_taxes_energies = menage('total_taxes_energies', period) @@ -660,7 +660,7 @@ def formula(menage, period): class sp_e10_ticpe_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le SP E10 après réforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -699,7 +699,7 @@ def formula(menage, period, parameters): class sp_e10_ticpe_test(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le SP E10 après réforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -737,7 +737,7 @@ def formula(menage, period, parameters): class quantite_sp_e10_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le SP E10 après réforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après réforme' def formula(menage, period, parameters): reforme_essence = parameters(period.start).officielle_2019_in_2017.essence_2019_in_2017 @@ -754,7 +754,7 @@ def formula(menage, period, parameters): class sp95_ticpe_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_95 après réforme" + label = 'Calcul du montant de TICPE sur le sp_95 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -792,7 +792,7 @@ def formula(menage, period, parameters): class sp95_ticpe_test(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_95 après réforme" + label = 'Calcul du montant de TICPE sur le sp_95 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -829,7 +829,7 @@ def formula(menage, period, parameters): class quantite_sp95_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_95 après réforme" + label = 'Calcul du montant de TICPE sur le sp_95 après réforme' def formula(menage, period, parameters): reforme_essence = parameters(period.start).officielle_2019_in_2017.essence_2019_in_2017 @@ -846,7 +846,7 @@ def formula(menage, period, parameters): class sp98_ticpe_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_98 après réforme" + label = 'Calcul du montant de TICPE sur le sp_98 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -884,7 +884,7 @@ def formula(menage, period, parameters): class sp98_ticpe_test(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_98 après réforme" + label = 'Calcul du montant de TICPE sur le sp_98 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -921,7 +921,7 @@ def formula(menage, period, parameters): class quantite_sp98_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_98 après réforme" + label = 'Calcul du montant de TICPE sur le sp_98 après réforme' def formula(menage, period, parameters): reforme_essence = parameters(period.start).officielle_2019_in_2017.essence_2019_in_2017 @@ -939,7 +939,7 @@ def formula(menage, period, parameters): class super_plombe_ticpe_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le super plombé après réforme" + label = 'Calcul du montant de la TICPE sur le super plombé après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -971,7 +971,7 @@ def formula(menage, period, parameters): class super_plombe_ticpe_test(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le super plombé après réforme" + label = 'Calcul du montant de la TICPE sur le super plombé après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -1002,7 +1002,7 @@ def formula(menage, period, parameters): class quantite_super_plombe_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le super plombé après réforme" + label = 'Calcul du montant de la TICPE sur le super plombé après réforme' def formula(menage, period, parameters): reforme_essence = parameters(period.start).officielle_2019_in_2017.essence_2019_in_2017 @@ -1019,7 +1019,7 @@ def formula(menage, period, parameters): class taxe_gaz_ville_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la taxe sur la consommation de gaz - ceteris paribus" + label = 'Recettes de la taxe sur la consommation de gaz - ceteris paribus' # On considère que les contributions sur les taxes précédentes ne sont pas affectées def formula(menage, period, parameters): @@ -1032,7 +1032,7 @@ def formula(menage, period, parameters): class ticgn(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la taxe sur la consommation de gaz - ceteris paribus" + label = 'Recettes de la taxe sur la consommation de gaz - ceteris paribus' # On considère que les contributions sur les taxes précédentes ne sont pas affectées def formula(menage, period, parameters): @@ -1045,7 +1045,7 @@ def formula(menage, period, parameters): class ticgn_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la taxe sur la consommation de gaz - ceteris paribus" + label = 'Recettes de la taxe sur la consommation de gaz - ceteris paribus' # On considère que les contributions sur les taxes précédentes ne sont pas affectées def formula(menage, period, parameters): @@ -1059,7 +1059,7 @@ def formula(menage, period, parameters): class ticpe_totale_officielle_2019_in_2017(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe_officielle_2019_in_2017', period) @@ -1071,7 +1071,7 @@ def formula(menage, period): class ticpe_totale_test(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe_test', period) diff --git a/openfisca_france_indirect_taxation/projects/budgets/simul_reformes_energie.py b/openfisca_france_indirect_taxation/projects/budgets/simul_reformes_energie.py index 51939b14..3026cbc2 100644 --- a/openfisca_france_indirect_taxation/projects/budgets/simul_reformes_energie.py +++ b/openfisca_france_indirect_taxation/projects/budgets/simul_reformes_energie.py @@ -37,7 +37,7 @@ def simulate_reformes_energie(graph = True): ] baseline_tax_benefit_system = FranceIndirectTaxationTaxBenefitSystem() - asof(baseline_tax_benefit_system, "2017-12-31") + asof(baseline_tax_benefit_system, '2017-12-31') survey_scenario = SurveyScenario.create( elasticities = elasticities, inflation_kwargs = inflation_kwargs, @@ -76,7 +76,7 @@ def simulate_reformes_energie(graph = True): return df -if __name__ == "__main__": +if __name__ == '__main__': import sys logging.basicConfig(level = logging.INFO, stream = sys.stdout) from openfisca_france_indirect_taxation.tests.budgets.budget_2019 import test_plf_2019_reformes_energie diff --git a/openfisca_france_indirect_taxation/projects/calage_depenses_cigarettes.py b/openfisca_france_indirect_taxation/projects/calage_depenses_cigarettes.py index d7f68f1f..751c5af7 100644 --- a/openfisca_france_indirect_taxation/projects/calage_depenses_cigarettes.py +++ b/openfisca_france_indirect_taxation/projects/calage_depenses_cigarettes.py @@ -17,7 +17,7 @@ def create_reforme_calage_depenses_cigarettes( class calage_depenses_cigarettes(Reform): key = 'calage_depenses_cigarettes', - name = "Réforme qui recale les dépenses de cigarettes pour atteindre un certain niveau agrégé", + name = 'Réforme qui recale les dépenses de cigarettes pour atteindre un certain niveau agrégé', if niveau_calage == 'individuel': class depenses_cigarettes(Variable): @@ -27,7 +27,7 @@ class depenses_cigarettes(Variable): set_input = set_input_divide_by_period def formula(menage, period, parameters): - prix_paquet = parameters("{}-12-31".format(year_calage)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_paquet_cigarettes + prix_paquet = parameters('{}-12-31'.format(year_calage)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_paquet_cigarettes paquets_par_menage = agregat_depenses / 12 / (menage('pondmen', period.this_year).sum()) nombre_paquets_imputes = ( paquets_par_menage @@ -44,7 +44,7 @@ class depenses_cigarettes(Variable): set_input = set_input_divide_by_period def formula(menage, period, parameters): - prix_paquet = parameters("{}-12-31".format(year_calage)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_paquet_cigarettes + prix_paquet = parameters('{}-12-31'.format(year_calage)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_paquet_cigarettes paquets_par_menage = agregat_depenses / 12 / (menage('pondmen', period.this_year).sum()) decile = menage('niveau_vie_decile', period.this_year) depenses_cigarettes_totales = (menage('poste_02_2_1', period, options = [DIVIDE]) * menage('pondmen', period.this_year)).sum() @@ -109,7 +109,7 @@ def create_reforme_calage_depenses_tabac( class calage_depenses(Reform): key = 'calage_depenses_cigarettes', - name = "Réforme qui recale les dépenses de cigarettes pour atteindre un certain niveau agrégé", + name = 'Réforme qui recale les dépenses de cigarettes pour atteindre un certain niveau agrégé', class depenses_cigarettes(Variable): value_type = float diff --git a/openfisca_france_indirect_taxation/reforms/aliss.py b/openfisca_france_indirect_taxation/reforms/aliss.py index ce2a2089..4587bdd9 100644 --- a/openfisca_france_indirect_taxation/reforms/aliss.py +++ b/openfisca_france_indirect_taxation/reforms/aliss.py @@ -1,18 +1,13 @@ -# -*- coding: utf-8 -*- - - import logging import numpy as np import os import pandas as pd -import pkg_resources from openfisca_core.reforms import Reform -from openfisca_france_indirect_taxation.yearly_variable import YearlyVariable - +from openfisca_france_indirect_taxation.location import openfisca_france_indirect_taxation_location +from openfisca_france_indirect_taxation.yearly_variable import YearlyVariable from openfisca_france_indirect_taxation.variables.base import get_legislation_data_frames, Menage - from openfisca_france_indirect_taxation.utils import assets_directory from openfisca_france_indirect_taxation.variables.consommation.postes_coicop import generate_postes_agreges_variables from openfisca_france_indirect_taxation.variables.consommation.categories_fiscales import generate_variables @@ -26,7 +21,7 @@ aliss_assets_reform_directory = os.path.join( - pkg_resources.get_distribution('openfisca_france_indirect_taxation').location, + openfisca_france_indirect_taxation_location, 'openfisca_france_indirect_taxation', 'reforms', 'aliss_assets', @@ -74,7 +69,7 @@ def build_aliss_reform(rebuild = False, ajustable = False): labels, axis = 1, ).groupby(['code_bdf']).filter( - lambda x: x[reform].nunique() > 1, + lambda x: x[reform].nunique() > 1, # noqa B023 ).sort_values('code_bdf') mismatch.nomc = mismatch.nomc.str.decode('latin-1').str.encode('utf-8') @@ -90,7 +85,7 @@ def build_aliss_reform(rebuild = False, ajustable = False): class aliss_ajustable(Reform): - name = "Réforme Aliss- Ajustable" + name = 'Réforme Aliss- Ajustable' key = 'aliss_ajustable' def apply(self): @@ -129,8 +124,8 @@ def apply(self): build_custom_aliss_reform(self, key = key, name = self.name) -def build_custom_aliss_reform(tax_benefit_system = None, key = None, name = None, missmatch_rates = "weighted"): - assert missmatch_rates in ["higher", "weighted"] # "lower"] +def build_custom_aliss_reform(tax_benefit_system = None, key = None, name = None, missmatch_rates = 'weighted'): + assert missmatch_rates in ['higher', 'weighted'] # "lower"] assert key is not None assert tax_benefit_system is not None taux_by_categorie_fiscale = None @@ -146,11 +141,11 @@ def build_custom_aliss_reform(tax_benefit_system = None, key = None, name = None lambda x: x[reform_key].nunique() > 1).copy().sort_values('code_bdf') if not reform_mismatch.empty: - if missmatch_rates == "weighted": + if missmatch_rates == 'weighted': categories_fiscales_reform, taux_by_categorie_fiscale = build_updated_categorie_fiscale( reform_key, categories_fiscales_reform) - elif missmatch_rates == "higher": + elif missmatch_rates == 'higher': categories_fiscales_reform[reform_key] = categories_fiscales_reform[reform_key].astype( 'category', categories = ['tva_taux_reduit', 'tva_taux_intermediaire', 'tva_taux_plein'], @@ -190,7 +185,7 @@ def build_custom_aliss_reform(tax_benefit_system = None, key = None, name = None categories_fiscales.loc[ categories_fiscales.code_bdf.isin(codes_bdf), 'categorie_fiscale'] = categorie_fiscale - assert not categories_fiscales.code_bdf.duplicated().any(), "there are {} duplicated entries".format( + assert not categories_fiscales.code_bdf.duplicated().any(), 'there are {} duplicated entries'.format( categories_fiscales.code_bdf.duplicated().sum()) generate_variables( @@ -225,7 +220,7 @@ def build_budget_shares(rebuild = False): ['poste_coicop', 'nomc', 'nomf']).apply( lambda df: (df.dt_k).sum() ).reset_index() - aliss_expenditures.rename(columns = {0: "expenditures"}, inplace = True) + aliss_expenditures.rename(columns = {0: 'expenditures'}, inplace = True) aliss_expenditures['budget_share'] = aliss_expenditures.groupby( ['poste_coicop'])['expenditures'].transform( @@ -273,13 +268,13 @@ def build_updated_categorie_fiscale(reform_key, categories_fiscales_reform): taux_by_categorie_fiscale) def weighted_mean(x): - return np.average(x, weights = weighted_categories_fiscales.loc[x.index, "budget_share"]) + return np.average(x, weights = weighted_categories_fiscales.loc[x.index, 'budget_share']) reform_rate = weighted_categories_fiscales.groupby(['code_bdf', 'poste_coicop'])['reform_rate'].agg( weighted_mean).reset_index() weighted_categories_fiscales = weighted_categories_fiscales.drop('reform_rate', axis = 1).merge(reform_rate) - weighted_categories_fiscales[reform_key] = "tva_taux_" + weighted_categories_fiscales.poste_coicop.str[6:] + weighted_categories_fiscales[reform_key] = 'tva_taux_' + weighted_categories_fiscales.poste_coicop.str[6:] # Updating taux_by_categorie_fiscale taux_by_categorie_fiscale_update = weighted_categories_fiscales[ @@ -320,7 +315,7 @@ def func(self, simulation, period, categorie_fiscale = categorie_fiscale, taux = simulation.calculate('depenses_ht_poste_{}'.format(categorie_fiscale[9:]), period) * (1 + taux) ) - func.__name__ = "formula" + func.__name__ = 'formula' return func @@ -333,7 +328,7 @@ def func(self, simulation, period, categorie_fiscale = categorie_fiscale, taux = simulation.calculate('depenses_ht_poste_{}'.format(categorie_fiscale[9:]), period) * taux ) - func.__name__ = "formula" + func.__name__ = 'formula' return func @@ -343,7 +338,7 @@ def func(self, simulation, period): simulation.calculate(categorie_fiscale, period) for categorie_fiscale in categories_fiscales ) - func.__name__ = "formula" + func.__name__ = 'formula' return func @@ -360,7 +355,7 @@ def generate_additional_tva_variables(tax_benefit_system, reform_key = None, tau definitions_by_name = dict( value_type = float, entity = Menage, - label = "Dépenses taxes comprises: {0}".format(categorie_fiscale), + label = 'Dépenses taxes comprises: {0}'.format(categorie_fiscale), formula = depenses_new_tva_func, ) depenses_variable_class = type(depenses_class_name, (YearlyVariable,), definitions_by_name) @@ -375,7 +370,7 @@ def generate_additional_tva_variables(tax_benefit_system, reform_key = None, tau definitions_by_name = dict( value_type = float, entity = Menage, - label = "Montant de la TVA acquitée à {0}".format(categorie_fiscale), + label = 'Montant de la TVA acquitée à {0}'.format(categorie_fiscale), formula = new_tva_func, ) tva_variable_class = type(tva_class_name, (YearlyVariable,), definitions_by_name) diff --git a/openfisca_france_indirect_taxation/reforms/cce_2015_in_2014.py b/openfisca_france_indirect_taxation/reforms/cce_2015_in_2014.py index 32ffbc01..c7b655fa 100644 --- a/openfisca_france_indirect_taxation/reforms/cce_2015_in_2014.py +++ b/openfisca_france_indirect_taxation/reforms/cce_2015_in_2014.py @@ -17,50 +17,50 @@ def modify_parameters(parameters): node = ParameterNode( - "cce_2015_in_2014", + 'cce_2015_in_2014', data = { - "description": "cce_2015_in_2014", - "diesel_2014_2015": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", + 'description': 'cce_2015_in_2014', + 'diesel_2014_2015': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2014-01-01': 3.857 - 1.862} + 'unit': 'currency', + 'values': {'2014-01-01': 3.857 - 1.862} }, - "essence_2014_2015": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": 'currency', - "values": {'2014-01-01': 3.509 - 1.694}, + 'essence_2014_2015': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': {'2014-01-01': 3.509 - 1.694}, }, - "combustibles_liquides_2014_2015": { - "description": "Surcroît de prix du combustibles_liquides domestique (en euros par litre)", - "unit": 'currency', - "values": {'2014-01-01': 0.04495 - 0.0217}, + 'combustibles_liquides_2014_2015': { + 'description': 'Surcroît de prix du combustibles_liquides domestique (en euros par litre)', + 'unit': 'currency', + 'values': {'2014-01-01': 0.04495 - 0.0217}, }, - "gaz_2014_2015": { - "description": "Surcroît de prix du gaz (en euros par kWh)", + 'gaz_2014_2015': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2014-01-01': 0.00348 - 0.00168}, + 'unit': 'currency', + 'values': {'2014-01-01': 0.00348 - 0.00168}, }, - "abaissement_tva_taux_plein_2014_2015": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein_2014_2015': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.004}, + 'values': {'2010-01-01': 0.004}, }, - "abaissement_tva_taux_plein_bis_2014_2015": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein_bis_2014_2015': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.002}, + 'values': {'2010-01-01': 0.002}, }, - "abaissement_tva_taux_reduit_2014_2015": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_reduit_2014_2015': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.004}, + 'values': {'2010-01-01': 0.004}, }, - "abaissement_tva_taux_super_reduit_2014_2015": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_super_reduit_2014_2015': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.004}, + 'values': {'2010-01-01': 0.004}, }, }, ) @@ -70,12 +70,12 @@ def modify_parameters(parameters): class cce_2015_in_2014(Reform): key = 'cce_2015_in_2014', - name = "Augmentation des taux de la contribution climat energie aux taux de 2015 sur les données de 2014", + name = 'Augmentation des taux de la contribution climat energie aux taux de 2015 sur les données de 2014', class cheques_energie(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie (indexés par uc) - taxe carbone" + label = 'Montant des chèques énergie (indexés par uc) - taxe carbone' def formula(menage, period): contribution = menage('contributions_reforme', period) @@ -92,7 +92,7 @@ def formula(menage, period): class contributions_reforme(YearlyVariable): value_type = float entity = Menage - label = "Changement de contribution aux taxes énergétiques suite à la réforme - taxe carbone" + label = 'Changement de contribution aux taxes énergétiques suite à la réforme - taxe carbone' def formula(menage, period): total_taxes_energies = menage('total_taxes_energies', period) @@ -105,7 +105,7 @@ def formula(menage, period): class depenses_carburants_corrigees_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Depenses en carburants après reaction a la reforme - taxes carburants" + label = 'Depenses en carburants après reaction a la reforme - taxes carburants' def formula(menage, period): depenses_diesel_ajustees = menage('depenses_diesel_corrigees_ajustees_cce_2015_in_2014', period) @@ -117,7 +117,7 @@ def formula(menage, period): class depenses_diesel_corrigees_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2015" + label = 'Dépenses en diesel après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2015' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -132,7 +132,7 @@ def formula(menage, period, parameters): class depenses_energies_logement_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité sans inclure dépenses jointes avec le gaz" + label = 'Dépenses en électricité sans inclure dépenses jointes avec le gaz' def formula(menage, period): depenses_electricite_ajustees = menage('depenses_electricite', period) @@ -151,7 +151,7 @@ def formula(menage, period): class depenses_essence_corrigees_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2015" + label = 'Dépenses en essence après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2015' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -166,7 +166,7 @@ def formula(menage, period, parameters): class depenses_combustibles_liquides_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en combustibles_liquides après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2015" + label = 'Dépenses en combustibles_liquides après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2015' def formula(menage, period, parameters): depenses_combustibles_liquides = menage('depenses_combustibles_liquides', period) @@ -183,7 +183,7 @@ def formula(menage, period, parameters): class depenses_gaz_ville_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2015" + label = 'Dépenses en gaz après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2015' def formula(menage, period, parameters): depenses_gaz_variables = menage('depenses_gaz_variables', period) @@ -203,7 +203,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux plein après réaction à la réforme - cce 2014-2015" + label = 'Dépenses sur les biens assujetis à la TVA à taux plein après réaction à la réforme - cce 2014-2015' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -220,7 +220,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_bis_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux plei bis après réaction à la réforme - cce 2014-2015" + label = 'Dépenses sur les biens assujetis à la TVA à taux plei bis après réaction à la réforme - cce 2014-2015' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -239,7 +239,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_reduit_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux reduit après réaction à la réforme - cce 2014-2015" + label = 'Dépenses sur les biens assujetis à la TVA à taux reduit après réaction à la réforme - cce 2014-2015' def formula(menage, period, parameters): depenses_tva_taux_reduit = menage('depenses_tva_taux_reduit', period) @@ -256,7 +256,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_super_reduit_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux super reduit après réaction à la réforme - cce 2014-2015" + label = 'Dépenses sur les biens assujetis à la TVA à taux super reduit après réaction à la réforme - cce 2014-2015' def formula(menage, period, parameters): depenses_tva_taux_super_reduit = menage('depenses_tva_taux_super_reduit', period) @@ -271,7 +271,7 @@ def formula(menage, period, parameters): return depenses_tva_taux_super_reduit_ajustees class diesel_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -310,7 +310,7 @@ def formula(menage, period, parameters): return montant_diesel_ticpe_ajuste class emissions_CO2_carburants(YearlyVariable): - label = "Emissions de CO2 des ménages via leur conso de carburants après réforme - cce 2014-2015 - en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de carburants après réforme - cce 2014-2015 - en kg de CO2' def formula(menage, period, parameters): quantites_diesel_ajustees = menage('quantites_diesel', period) @@ -343,7 +343,7 @@ def formula(menage, period, parameters): return emissions_energies_ajustees class emissions_CO2_combustibles_liquides(YearlyVariable): - label = "Emissions de CO2 des ménages via leur conso de fioul après réforme - hausse cce 2014-2015 - en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de fioul après réforme - hausse cce 2014-2015 - en kg de CO2' def formula(menage, period, parameters): quantites_combustibles_liquides_ajustees = menage('quantites_combustibles_liquides', period) @@ -354,7 +354,7 @@ def formula(menage, period, parameters): return emissions_ajustees class emissions_CO2_gaz_ville(YearlyVariable): - label = "Emissions de CO2 des ménages via leur conso de gaz après réforme - hausse cce 2014-2015 - en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de gaz après réforme - hausse cce 2014-2015 - en kg de CO2' def formula(menage, period, parameters): quantites_gaz_ajustees = menage('quantites_gaz_final_ajustees_cce_2015_in_2014', period) @@ -365,7 +365,7 @@ def formula(menage, period, parameters): return emissions_ajustees class essence_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme' definition_period = YEAR def formula_2009(menage, period): @@ -389,7 +389,7 @@ def formula_1990(menage, period): return essence_ticpe_ajustee class combustibles_liquides_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme - hausse cce 2014-2015" + label = 'Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme - hausse cce 2014-2015' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -418,7 +418,7 @@ def formula(menage, period, parameters): return montant_combustibles_liquides_ticpe_ajuste class quantites_diesel(YearlyVariable): - label = "Quantités de diesel consommées après la réforme - contribution climat énergie, hausse de 2014 à 2015" + label = 'Quantités de diesel consommées après la réforme - contribution climat énergie, hausse de 2014 à 2015' def formula(menage, period, parameters): depenses_diesel_ajustees_cce_2015_in_2014 = \ @@ -430,7 +430,7 @@ def formula(menage, period, parameters): return quantites_diesel_ajustees class quantites_combustibles_liquides(YearlyVariable): - label = "Quantités de combustibles_liquides consommées après la réforme - contribution climat énergie, hausse de 2014 à 2015 " + label = 'Quantités de combustibles_liquides consommées après la réforme - contribution climat énergie, hausse de 2014 à 2015 ' def formula(menage, period, parameters): depenses_combustibles_liquides_ajustees_cce_2015_in_2014 = \ @@ -446,7 +446,7 @@ def formula(menage, period, parameters): class quantites_gaz_final_ajustees_cce_2015_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Quantités de gaz consommées après la réforme - contribution climat énergie, hausse de 2014 à 2015" + label = 'Quantités de gaz consommées après la réforme - contribution climat énergie, hausse de 2014 à 2015' def formula(menage, period, parameters): depenses_gaz_ville_ajustees_cce_2015_in_2014 = menage('depenses_gaz_ville_ajustees_cce_2015_in_2014', period) @@ -462,7 +462,7 @@ def formula(menage, period, parameters): return quantites_gaz_ajustees class quantites_sp_e10(YearlyVariable): - label = "Quantités consommées de sans plomb e10 par les ménages après réforme - hausse cce 2014-2015" + label = 'Quantités consommées de sans plomb E10 par les ménages après réforme - hausse cce 2014-2015' def formula(menage, period, parameters): depenses_essence_ajustees_cce_2015_in_2014 = \ @@ -476,7 +476,7 @@ def formula(menage, period, parameters): return quantite_sp_e10 class quantites_sp95(YearlyVariable): - label = "Quantités consommées de sans plomb 95 par les ménages après réforme - hausse cce 2014-2015" + label = 'Quantités consommées de sans plomb 95 par les ménages après réforme - hausse cce 2014-2015' def formula(menage, period, parameters): depenses_essence_ajustees_cce_2015_in_2014 = \ @@ -490,7 +490,7 @@ def formula(menage, period, parameters): return quantites_sp95_ajustees class quantites_sp98(YearlyVariable): - label = "Quantités consommées de sans plomb 98 par les ménages - hausse cce 2014-2015" + label = 'Quantités consommées de sans plomb 98 par les ménages - hausse cce 2014-2015' def formula(menage, period, parameters): depenses_essence_ajustees_cce_2015_in_2014 = \ @@ -504,7 +504,7 @@ def formula(menage, period, parameters): return quantites_sp98_ajustees class quantites_super_plombe(YearlyVariable): - label = "Quantités consommées de super plombé par les ménages après réforme - hausse cce 2014-2015" + label = 'Quantités consommées de super plombé par les ménages après réforme - hausse cce 2014-2015' def formula(menage, period, parameters): depenses_essence_ajustees_cce_2015_in_2014 = \ @@ -547,7 +547,7 @@ def formula_1990(menage, period): return quantites_essence_ajustees class sp_e10_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur le SP E10 après réforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -583,7 +583,7 @@ def formula(menage, period, parameters): return montant_sp_e10_ticpe_ajuste class sp95_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le sp_95 après réforme" + label = 'Calcul du montant de TICPE sur le sp_95 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -618,7 +618,7 @@ def formula(menage, period, parameters): return montant_sp95_ticpe_ajuste class sp98_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le sp_98 après réforme" + label = 'Calcul du montant de TICPE sur le sp_98 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -654,7 +654,7 @@ def formula(menage, period, parameters): return montant_sp98_ticpe_ajuste class super_plombe_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur le super plombé après réforme" + label = 'Calcul du montant de la TICPE sur le super plombé après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -686,7 +686,7 @@ def formula(menage, period, parameters): class taxe_gaz_ville(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la hausse de cce 2014-2015 sur la consommation de gaz - ceteris paribus" + label = 'Recettes de la hausse de cce 2014-2015 sur la consommation de gaz - ceteris paribus' # On considère que les contributions sur les taxes précédentes ne sont pas affectées def formula(menage, period, parameters): @@ -697,7 +697,7 @@ def formula(menage, period, parameters): return recettes_gaz class ticpe_totale(YearlyVariable): - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe', period) @@ -724,7 +724,7 @@ def formula(menage, period, parameters): return total class tva_taux_plein(YearlyVariable): - label = "Contribution sur la TVA à taux plein après réaction à la réforme - cce 2014-2015" + label = 'Contribution sur la TVA à taux plein après réaction à la réforme - cce 2014-2015' def formula(menage, period, parameters): depenses_tva_taux_plein_ajustees = \ @@ -741,7 +741,7 @@ def formula(menage, period, parameters): class tva_taux_plein_bis(YearlyVariable): value_type = float entity = Menage - label = "Contribution sur la TVA à taux plein après réaction à la réforme - cce 2014-2015" + label = 'Contribution sur la TVA à taux plein après réaction à la réforme - cce 2014-2015' def formula(menage, period, parameters): depenses_tva_taux_plein_ajustees = \ @@ -756,7 +756,7 @@ def formula(menage, period, parameters): return tax_from_expense_including_tax(depenses_tva_taux_plein_ajustees, nouveau_taux_plein) class tva_taux_reduit(YearlyVariable): - label = "Contribution sur la TVA à taux reduit après réaction à la réforme - cce 2014-2015" + label = 'Contribution sur la TVA à taux reduit après réaction à la réforme - cce 2014-2015' def formula(menage, period, parameters): depenses_tva_taux_reduit_ajustees = \ @@ -770,7 +770,7 @@ def formula(menage, period, parameters): return tax_from_expense_including_tax(depenses_tva_taux_reduit_ajustees, nouveau_taux_reduit) class tva_taux_super_reduit(YearlyVariable): - label = "Contribution sur la TVA à taux super reduit après réaction à la réforme - cce 2014-2015" + label = 'Contribution sur la TVA à taux super reduit après réaction à la réforme - cce 2014-2015' def formula(menage, period, parameters): depenses_tva_taux_super_reduit_ajustees = \ @@ -785,7 +785,7 @@ def formula(menage, period, parameters): tax_from_expense_including_tax(depenses_tva_taux_super_reduit_ajustees, nouveau_taux_super_reduit) class tva_total(YearlyVariable): - label = "Différence de contribution sur la TVA après réaction à la réforme - taxes carburants" + label = 'Différence de contribution sur la TVA après réaction à la réforme - taxes carburants' def formula(menage, period): taux_plein = menage('tva_taux_plein_bis', period) diff --git a/openfisca_france_indirect_taxation/reforms/cce_2016_in_2014.py b/openfisca_france_indirect_taxation/reforms/cce_2016_in_2014.py index 99f6e15f..9143a51f 100644 --- a/openfisca_france_indirect_taxation/reforms/cce_2016_in_2014.py +++ b/openfisca_france_indirect_taxation/reforms/cce_2016_in_2014.py @@ -15,50 +15,50 @@ def modify_parameters(parameters): node = ParameterNode( - "cce_2016_in_2014", + 'cce_2016_in_2014', data = { - "description": "cce_2016_in_2014", - "diesel_2014_2016": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", + 'description': 'cce_2016_in_2014', + 'diesel_2014_2016': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2014-01-01': 5.852 - 1.862} + 'unit': 'currency', + 'values': {'2014-01-01': 5.852 - 1.862} }, - "essence_2014_2016": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": 'currency', - "values": {'2014-01-01': 5.324 - 1.694}, + 'essence_2014_2016': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': {'2014-01-01': 5.324 - 1.694}, }, - "combustibles_liquides_2014_2016": { - "description": "Surcroît de prix du fioul domestique (en euros par litre)", - "unit": 'currency', - "values": {'2014-01-01': 0.0682 - 0.0217}, + 'combustibles_liquides_2014_2016': { + 'description': 'Surcroît de prix du fioul domestique (en euros par litre)', + 'unit': 'currency', + 'values': {'2014-01-01': 0.0682 - 0.0217}, }, - "gaz_2014_2016": { - "description": "Surcroît de prix du gaz (en euros par kWh)", + 'gaz_2014_2016': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2014-01-01': 0.00528 - 0.00168}, + 'unit': 'currency', + 'values': {'2014-01-01': 0.00528 - 0.00168}, }, - "abaissement_tva_taux_plein_2014_2016": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein_2014_2016': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.008}, + 'values': {'2010-01-01': 0.008}, }, - "abaissement_tva_taux_plein_bis_2014_2016": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein_bis_2014_2016': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.005}, + 'values': {'2010-01-01': 0.005}, }, - "abaissement_tva_taux_reduit_2014_2016": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_reduit_2014_2016': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.006}, + 'values': {'2010-01-01': 0.006}, }, - "abaissement_tva_taux_super_reduit_2014_2016": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_super_reduit_2014_2016': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.006}, + 'values': {'2010-01-01': 0.006}, }, }, ) @@ -68,12 +68,12 @@ def modify_parameters(parameters): class cce_2016_in_2014(Reform): key = 'cce_2016_in_2014', - name = "Augmentation des taux de la contribution climat energie aux taux de 2016 sur les données de 2014", + name = 'Augmentation des taux de la contribution climat energie aux taux de 2016 sur les données de 2014', class cheques_energie(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie (indexés par uc) - taxe carbone" + label = 'Montant des chèques énergie (indexés par uc) - taxe carbone' def formula(menage, period): contribution = menage('contributions_reforme', period) @@ -90,7 +90,7 @@ def formula(menage, period): class contributions_reforme(YearlyVariable): value_type = float entity = Menage - label = "Changement de contribution aux taxes énergétiques suite à la réforme - taxe carbone" + label = 'Changement de contribution aux taxes énergétiques suite à la réforme - taxe carbone' def formula(menage, period): total_taxes_energies = menage('total_taxes_energies', period) @@ -103,7 +103,7 @@ def formula(menage, period): class depenses_carburants_corrigees_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Depenses en carburants après reaction a la reforme - taxes carburants" + label = 'Depenses en carburants après reaction a la reforme - taxes carburants' def formula(menage, period): depenses_diesel_ajustees = menage('depenses_diesel_corrigees_ajustees_cce_2016_in_2014', period) @@ -115,7 +115,7 @@ def formula(menage, period): class depenses_diesel_corrigees_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2016" + label = 'Dépenses en diesel après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2016' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -130,7 +130,7 @@ def formula(menage, period, parameters): class depenses_energies_logement_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité sans inclure dépenses jointes avec le gaz" + label = 'Dépenses en électricité sans inclure dépenses jointes avec le gaz' def formula(menage, period, parameters): depenses_electricite_ajustees = menage('depenses_electricite', period) @@ -149,7 +149,7 @@ def formula(menage, period, parameters): class depenses_essence_corrigees_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2016" + label = 'Dépenses en essence après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2016' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -164,7 +164,7 @@ def formula(menage, period, parameters): class depenses_combustibles_liquides_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en combustibles_liquides après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2016" + label = 'Dépenses en combustibles_liquides après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2016' def formula(menage, period, parameters): depenses_combustibles_liquides = menage('depenses_combustibles_liquides', period) @@ -181,7 +181,7 @@ def formula(menage, period, parameters): class depenses_gaz_ville_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2016" + label = 'Dépenses en gaz après réaction à la réforme - contribution climat énergie, hausse de 2014 à 2016' def formula(menage, period, parameters): depenses_gaz_variables = menage('depenses_gaz_variables', period) @@ -201,7 +201,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux plein après réaction à la réforme - cce 2014-2016" + label = 'Dépenses sur les biens assujetis à la TVA à taux plein après réaction à la réforme - cce 2014-2016' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -218,7 +218,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_bis_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux plei bis après réaction à la réforme - cce 2014-2016" + label = 'Dépenses sur les biens assujetis à la TVA à taux plei bis après réaction à la réforme - cce 2014-2016' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -237,7 +237,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_reduit_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux reduit après réaction à la réforme - cce 2014-2016" + label = 'Dépenses sur les biens assujetis à la TVA à taux reduit après réaction à la réforme - cce 2014-2016' def formula(menage, period, parameters): depenses_tva_taux_reduit = menage('depenses_tva_taux_reduit', period) @@ -254,7 +254,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_super_reduit_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux super reduit après réaction à la réforme - cce 2014-2016" + label = 'Dépenses sur les biens assujetis à la TVA à taux super reduit après réaction à la réforme - cce 2014-2016' def formula(menage, period, parameters): depenses_tva_taux_super_reduit = menage('depenses_tva_taux_super_reduit', period) @@ -269,7 +269,7 @@ def formula(menage, period, parameters): return depenses_tva_taux_super_reduit_ajustees class diesel_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -308,7 +308,7 @@ def formula(menage, period, parameters): return montant_diesel_ticpe_ajuste class emissions_CO2_carburants(YearlyVariable): - label = "Emissions de CO2 des ménages via leur conso de carburants après réforme - cce 2014-2016 - en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de carburants après réforme - cce 2014-2016 - en kg de CO2' def formula(menage, period, parameters): quantites_diesel_ajustees = menage('quantites_diesel', period) @@ -341,7 +341,7 @@ def formula(menage, period): return emissions_energies_ajustees class emissions_CO2_combustibles_liquides(YearlyVariable): - label = "Emissions de CO2 des ménages via leur conso de fioul après réforme - hausse cce 2014-2016 - en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de fioul après réforme - hausse cce 2014-2016 - en kg de CO2' def formula(menage, period, parameters): quantites_combustibles_liquides_ajustees = menage('quantites_combustibles_liquides', period) @@ -352,7 +352,7 @@ def formula(menage, period, parameters): return emissions_ajustees class emissions_CO2_gaz_ville(YearlyVariable): - label = "Emissions de CO2 des ménages via leur conso de gaz après réforme - hausse cce 2014-2016 - en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de gaz après réforme - hausse cce 2014-2016 - en kg de CO2' def formula(menage, period, parameters): quantites_gaz_ajustees = menage('quantites_gaz_final_ajustees_cce_2016_in_2014', period) @@ -363,7 +363,7 @@ def formula(menage, period, parameters): return emissions_ajustees class essence_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme' definition_period = YEAR def formula_2009(menage, period): @@ -387,7 +387,7 @@ def formula_1990(menage, period, parameters): return essence_ticpe_ajustee class combustibles_liquides_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme - hausse cce 2014-2016" + label = 'Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme - hausse cce 2014-2016' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -416,7 +416,7 @@ def formula(menage, period, parameters): return montant_combustibles_liquides_ticpe_ajuste class quantites_diesel(YearlyVariable): - label = "Quantités de diesel consommées après la réforme - contribution climat énergie, hausse de 2014 à 2016" + label = 'Quantités de diesel consommées après la réforme - contribution climat énergie, hausse de 2014 à 2016' def formula(menage, period, parameters): depenses_diesel_ajustees_cce_2016_in_2014 = \ @@ -428,7 +428,7 @@ def formula(menage, period, parameters): return quantites_diesel_ajustees class quantites_combustibles_liquides(YearlyVariable): - label = "Quantités de combustibles_liquides consommées après la réforme - contribution climat énergie, hausse de 2014 à 2016 " + label = 'Quantités de combustibles_liquides consommées après la réforme - contribution climat énergie, hausse de 2014 à 2016 ' def formula(menage, period, parameters): depenses_combustibles_liquides_ajustees_cce_2016_in_2014 = \ @@ -444,7 +444,7 @@ def formula(menage, period, parameters): class quantites_gaz_final_ajustees_cce_2016_in_2014(YearlyVariable): value_type = float entity = Menage - label = "Quantités de gaz consommées après la réforme - contribution climat énergie, hausse de 2014 à 2016" + label = 'Quantités de gaz consommées après la réforme - contribution climat énergie, hausse de 2014 à 2016' def formula(menage, period, parameters): depenses_gaz_ville_ajustees_cce_2016_in_2014 = menage('depenses_gaz_ville_ajustees_cce_2016_in_2014', period) @@ -460,7 +460,7 @@ def formula(menage, period, parameters): return quantites_gaz_ajustees class quantites_sp_e10(YearlyVariable): - label = "Quantités consommées de sans plomb e10 par les ménages après réforme - hausse cce 2014-2016" + label = 'Quantités consommées de sans plomb E10 par les ménages après réforme - hausse cce 2014-2016' def formula(menage, period, parameters): depenses_essence_ajustees_cce_2016_in_2014 = \ @@ -474,7 +474,7 @@ def formula(menage, period, parameters): return quantite_sp_e10 class quantites_sp95(YearlyVariable): - label = "Quantités consommées de sans plomb 95 par les ménages après réforme - hausse cce 2014-2016" + label = 'Quantités consommées de sans plomb 95 par les ménages après réforme - hausse cce 2014-2016' def formula(menage, period, parameters): depenses_essence_ajustees_cce_2016_in_2014 = \ @@ -488,7 +488,7 @@ def formula(menage, period, parameters): return quantites_sp95_ajustees class quantites_sp98(YearlyVariable): - label = "Quantités consommées de sans plomb 98 par les ménages - hausse cce 2014-2016" + label = 'Quantités consommées de sans plomb 98 par les ménages - hausse cce 2014-2016' def formula(menage, period, parameters): depenses_essence_ajustees_cce_2016_in_2014 = \ @@ -502,7 +502,7 @@ def formula(menage, period, parameters): return quantites_sp98_ajustees class quantites_super_plombe(YearlyVariable): - label = "Quantités consommées de super plombé par les ménages après réforme - hausse cce 2014-2016" + label = 'Quantités consommées de super plombé par les ménages après réforme - hausse cce 2014-2016' def formula(menage, period, parameters): depenses_essence_ajustees_cce_2016_in_2014 = \ @@ -545,7 +545,7 @@ def formula_1990(menage, period, parameters): return quantites_essence_ajustees class sp_e10_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur le SP E10 après réforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -581,7 +581,7 @@ def formula(menage, period, parameters): return montant_sp_e10_ticpe_ajuste class sp95_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le sp_95 après réforme" + label = 'Calcul du montant de TICPE sur le sp_95 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -616,7 +616,7 @@ def formula(menage, period, parameters): return montant_sp95_ticpe_ajuste class sp98_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le sp_98 après réforme" + label = 'Calcul du montant de TICPE sur le sp_98 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -652,7 +652,7 @@ def formula(menage, period, parameters): return montant_sp98_ticpe_ajuste class super_plombe_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur le super plombé après réforme" + label = 'Calcul du montant de la TICPE sur le super plombé après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -684,7 +684,7 @@ def formula(menage, period, parameters): class taxe_gaz_ville(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la hausse de cce 2014-2016 sur la consommation de gaz - ceteris paribus" + label = 'Recettes de la hausse de cce 2014-2016 sur la consommation de gaz - ceteris paribus' # On considère que les contributions sur les taxes précédentes ne sont pas affectées def formula(menage, period, parameters): @@ -695,7 +695,7 @@ def formula(menage, period, parameters): return recettes_gaz class ticpe_totale(YearlyVariable): - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe', period) @@ -722,7 +722,7 @@ def formula(menage, period): return total class tva_taux_plein(YearlyVariable): - label = "Contribution sur la TVA à taux plein après réaction à la réforme - cce 2014-2016" + label = 'Contribution sur la TVA à taux plein après réaction à la réforme - cce 2014-2016' def formula(menage, period, parameters): depenses_tva_taux_plein_ajustees = \ @@ -739,7 +739,7 @@ def formula(menage, period, parameters): class tva_taux_plein_bis(YearlyVariable): value_type = float entity = Menage - label = "Contribution sur la TVA à taux plein après réaction à la réforme - cce 2014-2016" + label = 'Contribution sur la TVA à taux plein après réaction à la réforme - cce 2014-2016' def formula(menage, period, parameters): depenses_tva_taux_plein_ajustees = \ @@ -754,7 +754,7 @@ def formula(menage, period, parameters): return tax_from_expense_including_tax(depenses_tva_taux_plein_ajustees, nouveau_taux_plein) class tva_taux_reduit(YearlyVariable): - label = "Contribution sur la TVA à taux reduit après réaction à la réforme - cce 2014-2016" + label = 'Contribution sur la TVA à taux reduit après réaction à la réforme - cce 2014-2016' def formula(menage, period, parameters): depenses_tva_taux_reduit_ajustees = \ @@ -768,7 +768,7 @@ def formula(menage, period, parameters): return tax_from_expense_including_tax(depenses_tva_taux_reduit_ajustees, nouveau_taux_reduit) class tva_taux_super_reduit(YearlyVariable): - label = "Contribution sur la TVA à taux super reduit après réaction à la réforme - cce 2014-2016" + label = 'Contribution sur la TVA à taux super reduit après réaction à la réforme - cce 2014-2016' def formula(menage, period, parameters): depenses_tva_taux_super_reduit_ajustees = \ @@ -783,7 +783,7 @@ def formula(menage, period, parameters): tax_from_expense_including_tax(depenses_tva_taux_super_reduit_ajustees, nouveau_taux_super_reduit) class tva_total(YearlyVariable): - label = "Différence de contribution sur la TVA après réaction à la réforme - taxes carburants" + label = 'Différence de contribution sur la TVA après réaction à la réforme - taxes carburants' def formula(menage, period): taux_plein = menage('tva_taux_plein_bis', period) diff --git a/openfisca_france_indirect_taxation/reforms/contribution_climat_energie.py b/openfisca_france_indirect_taxation/reforms/contribution_climat_energie.py index b80be446..96463b00 100644 --- a/openfisca_france_indirect_taxation/reforms/contribution_climat_energie.py +++ b/openfisca_france_indirect_taxation/reforms/contribution_climat_energie.py @@ -7,7 +7,7 @@ def build_reform(tax_benefit_system): Reform = reforms.make_reform( key = 'contribution_climat_energie', - name = "Réforme telle que prévue par la loi", + name = 'Réforme telle que prévue par la loi', use_baseline = tax_benefit_system, ) @@ -23,13 +23,13 @@ def build_reform(tax_benefit_system): def modify_parameters(parameters): node = ParameterNode( - "contribution_climat_energie", + 'contribution_climat_energie', data = { - "description": "contribution_climat_energie", - "essence": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": 'currency', - "values": { + 'description': 'contribution_climat_energie', + 'essence': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': { '2014-01-01': 1.694, '2015-01-01': 3.509, '2016-01-01': 5.324, @@ -38,10 +38,10 @@ def modify_parameters(parameters): '2019-01-01': 11.495, }, }, - "diesel": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", - "unit": 'currency', - "values": { + 'diesel': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', + 'unit': 'currency', + 'values': { '2014-01-01': 1.862, '2015-01-01': 3.857, '2016-01-01': 5.852, @@ -50,10 +50,10 @@ def modify_parameters(parameters): '2019-01-01': 12.635, }, }, - "gaz": { - "description": "Surcroît de prix du gaz (en euros par kWh)", - "unit": 'currency', - "values": { + 'gaz': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', + 'unit': 'currency', + 'values': { '2014-01-01': 0.00168, '2015-01-01': 0.00348, '2016-01-01': 0.00528, diff --git a/openfisca_france_indirect_taxation/reforms/contribution_climat_energie_officielle.py b/openfisca_france_indirect_taxation/reforms/contribution_climat_energie_officielle.py index 8c41714f..9b5c0e9f 100644 --- a/openfisca_france_indirect_taxation/reforms/contribution_climat_energie_officielle.py +++ b/openfisca_france_indirect_taxation/reforms/contribution_climat_energie_officielle.py @@ -8,7 +8,7 @@ def build_reform(tax_benefit_system): Reform = reforms.make_reform( key = 'contribution_climat_energie_officielle', - name = "Réforme telle que prévue par la loi", + name = 'Réforme telle que prévue par la loi', use_baseline =tax_benefit_system, ) @@ -24,14 +24,14 @@ def build_reform(tax_benefit_system): def modify_parameters(parameters): node = ParameterNode( - "contribution_climat_energie_officielle", + 'contribution_climat_energie_officielle', data = { - "description": "contribution_climat_energie_officielle", - "diesel": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", + 'description': 'contribution_climat_energie_officielle', + 'diesel': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', # TODO "unit": '?', - "unit": 'currency', - "values": { + 'unit': 'currency', + 'values': { '2014-01-01': 1.862, '2015-01-01': 3.857, '2016-01-01': 5.852, @@ -40,10 +40,10 @@ def modify_parameters(parameters): '2019-01-01': 12.635, }, }, - "essence": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": 'currency', - "values": { + 'essence': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': { '2014-01-01': 1.694, '2015-01-01': 3.509, '2016-01-01': 5.324, @@ -52,10 +52,10 @@ def modify_parameters(parameters): '2019-01-01': 11.495, }, }, - "fioul_domestique": { - "description": "Surcroît de prix du fioul domestique (en euros par litre)", - "unit": 'currency', - "values": { + 'fioul_domestique': { + 'description': 'Surcroît de prix du fioul domestique (en euros par litre)', + 'unit': 'currency', + 'values': { '2014-01-01': 0.0217, '2015-01-01': 0.04495, '2016-01-01': 0.0682, @@ -64,11 +64,11 @@ def modify_parameters(parameters): '2019-01-01': 0.14725, }, }, - "gaz": { - "description": "Surcroît de prix du gaz (en euros par kWh)", + 'gaz': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', # TODO "unit": '?', - "unit": 'currency', - "values": { + 'unit': 'currency', + 'values': { '2014-01-01': 0.00168, '2015-01-01': 0.00348, '2016-01-01': 0.00528, diff --git a/openfisca_france_indirect_taxation/reforms/contribution_climat_energie_reforme.py b/openfisca_france_indirect_taxation/reforms/contribution_climat_energie_reforme.py index 9ccaad0f..cab9c432 100644 --- a/openfisca_france_indirect_taxation/reforms/contribution_climat_energie_reforme.py +++ b/openfisca_france_indirect_taxation/reforms/contribution_climat_energie_reforme.py @@ -13,92 +13,92 @@ def modify_parameters(parameters): node = ParameterNode( - "contribution_climat_energie_reforme", + 'contribution_climat_energie_reforme', data = { - "description": "contribution_climat_energie_reforme", - "diesel_2014_2015": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", + 'description': 'contribution_climat_energie_reforme', + 'diesel_2014_2015': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2014-01-01': 3.857 - 1.862} + 'unit': 'currency', + 'values': {'2014-01-01': 3.857 - 1.862} }, - "diesel_2014_2016": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", + 'diesel_2014_2016': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2014-01-01': 5.852 - 1.862} - }, - "essence_2014_2015": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": 'currency', - "values": {'2014-01-01': 3.509 - 1.694} - }, - "essence_2014_2016": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": 'currency', - "values": {'2014-01-01': 5.324 - 1.694} - }, - "fioul_domestique_2014_2015": { - "description": "Surcroît de prix du fioul domestique (en euros par litre)", - "unit": 'currency', - "values": {'2014-01-01': 0.04495 - 0.0217} - }, - "fioul_domestique_2014_2016": { - "description": "Surcroît de prix du fioul domestique (en euros par litre)", - "unit": 'currency', - "values": {'2014-01-01': 0.0682 - 0.0217} - }, - "gaz_2014_2015": { - "description": "Surcroît de prix du gaz (en euros par kWh)", + 'unit': 'currency', + 'values': {'2014-01-01': 5.852 - 1.862} + }, + 'essence_2014_2015': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': {'2014-01-01': 3.509 - 1.694} + }, + 'essence_2014_2016': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': {'2014-01-01': 5.324 - 1.694} + }, + 'fioul_domestique_2014_2015': { + 'description': 'Surcroît de prix du fioul domestique (en euros par litre)', + 'unit': 'currency', + 'values': {'2014-01-01': 0.04495 - 0.0217} + }, + 'fioul_domestique_2014_2016': { + 'description': 'Surcroît de prix du fioul domestique (en euros par litre)', + 'unit': 'currency', + 'values': {'2014-01-01': 0.0682 - 0.0217} + }, + 'gaz_2014_2015': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2014-01-01': 0.00348 - 0.00168} + 'unit': 'currency', + 'values': {'2014-01-01': 0.00348 - 0.00168} }, - "gaz_2014_2016": { - "description": "Surcroît de prix du gaz (en euros par kWh)", + 'gaz_2014_2016': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2014-01-01': 0.00528 - 0.00168} + 'unit': 'currency', + 'values': {'2014-01-01': 0.00528 - 0.00168} }, - "abaissement_tva_taux_plein_2014_2015": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein_2014_2015': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.004} + 'values': {'2010-01-01': 0.004} }, - "abaissement_tva_taux_plein_2014_2016": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein_2014_2016': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.008} + 'values': {'2010-01-01': 0.008} }, - "abaissement_tva_taux_plein_bis_2014_2015": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein_bis_2014_2015': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.002} + 'values': {'2010-01-01': 0.002} }, - "abaissement_tva_taux_plein_bis_2014_2016": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein_bis_2014_2016': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.005} + 'values': {'2010-01-01': 0.005} }, - "abaissement_tva_taux_reduit_2014_2015": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_reduit_2014_2015': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.004} + 'values': {'2010-01-01': 0.004} }, - "abaissement_tva_taux_reduit_2014_2016": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_reduit_2014_2016': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.006} + 'values': {'2010-01-01': 0.006} }, - "abaissement_tva_taux_super_reduit_2014_2015": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_super_reduit_2014_2015': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.004} + 'values': {'2010-01-01': 0.004} }, - "abaissement_tva_taux_super_reduit_2014_2016": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_super_reduit_2014_2016': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.006} + 'values': {'2010-01-01': 0.006} }, }, ) @@ -108,7 +108,7 @@ def modify_parameters(parameters): class contribution_climat_energie_reforme(Reform): key = 'contribution_climat_energie_reforme', - name = "Réforme de la contribution climat energie anticipée simulée sur les données de 2014", + name = 'Réforme de la contribution climat energie anticipée simulée sur les données de 2014', def apply(self): self.modify_parameters(modifier_function = modify_parameters) diff --git a/openfisca_france_indirect_taxation/reforms/officielle_2018_in_2016.py b/openfisca_france_indirect_taxation/reforms/officielle_2018_in_2016.py index 39e0ef3b..82b7acfb 100644 --- a/openfisca_france_indirect_taxation/reforms/officielle_2018_in_2016.py +++ b/openfisca_france_indirect_taxation/reforms/officielle_2018_in_2016.py @@ -33,70 +33,70 @@ def modify_parameters(parameters): node = ParameterNode( 'officielle_2018_in_2016', data = { - "description": "officielle_2018_in_2016", - "diesel_2016_2018": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", - "unit": "currency", - "values": { - "2016-01-01": 2.6 + (44.6 - 22) / 1e3 * DIESEL_KG_CO2_PAR_HL + 'description': 'officielle_2018_in_2016', + 'diesel_2016_2018': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', + 'unit': 'currency', + 'values': { + '2016-01-01': 2.6 + (44.6 - 22) / 1e3 * DIESEL_KG_CO2_PAR_HL }, }, - "diesel_cce_seulement": { - "description": "Surcroît de prix du diesel (en euros par hectolitres) rattrapage exclut (i.e. cce seulement)", - "unit": "currency", - "values": { - "2016-01-01": (44.6 - 22) / 1e3 * DIESEL_KG_CO2_PAR_HL + 'diesel_cce_seulement': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres) rattrapage exclut (i.e. cce seulement)', + 'unit': 'currency', + 'values': { + '2016-01-01': (44.6 - 22) / 1e3 * DIESEL_KG_CO2_PAR_HL }, }, - "essence_2016_2018": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": "currency", - "values": { - "2016-01-01": (44.6 - 22) / 1e3 * ESSENCE_KG_CO2_PAR_HL + 'essence_2016_2018': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': { + '2016-01-01': (44.6 - 22) / 1e3 * ESSENCE_KG_CO2_PAR_HL } }, - "combustibles_liquides_2016_2018": { - "description": "Surcroît de prix du fioul domestique (en euros par litre)", - "unit": "currency", - "values": { - "2016-01-01": (44.6 - 22) / 1e3 * 3.24, + 'combustibles_liquides_2016_2018': { + 'description': 'Surcroît de prix du fioul domestique (en euros par litre)', + 'unit': 'currency', + 'values': { + '2016-01-01': (44.6 - 22) / 1e3 * 3.24, } }, - "electricite_cspe": { - "description": "Surcroît de prix de l'électricité (en euros par kWh) en ajoutant la différence avec un prix de 10€ sur le marché EU-ETS", - "unit": "currency", - "values": { - "2016-01-01": (44.6 - 10) / 1e3 * 0.09, # Différence entre prix de la réforme et prix (environ 10€) sur le marché EU-ETS + 'electricite_cspe': { + 'description': "Surcroît de prix de l'électricité (en euros par kWh) en ajoutant la différence avec un prix de 10€ sur le marché EU-ETS", + 'unit': 'currency', + 'values': { + '2016-01-01': (44.6 - 10) / 1e3 * 0.09, # Différence entre prix de la réforme et prix (environ 10€) sur le marché EU-ETS }, }, - "gaz_ville_2016_2018": { - "description": "Surcroît de prix du gaz (en euros par kWh)", - "unit": "currency", - "values": - {"2016-01-01": (44.6 - 22) / 1e3 * 0.241} + 'gaz_ville_2016_2018': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', + 'unit': 'currency', + 'values': + {'2016-01-01': (44.6 - 22) / 1e3 * 0.241} }, - "abaissement_tva_taux_plein_2016_2018": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constantœ", - "values": { - "2010-01-01": 0 + 'abaissement_tva_taux_plein_2016_2018': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constantœ', + 'values': { + '2010-01-01': 0 }, }, - "abaissement_tva_taux_plein_bis_2016_2018": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", - "values": { - "2010-01-01": 0 + 'abaissement_tva_taux_plein_bis_2016_2018': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', + 'values': { + '2010-01-01': 0 }, }, - "abaissement_tva_taux_reduit_2016_2018": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", - "values": { - "2010-01-01": 0 + 'abaissement_tva_taux_reduit_2016_2018': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', + 'values': { + '2010-01-01': 0 }, }, - "abaissement_tva_taux_super_reduit_2016_2018": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", - "values": { - "2010-01-01": 0 + 'abaissement_tva_taux_super_reduit_2016_2018': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', + 'values': { + '2010-01-01': 0 } } } @@ -107,12 +107,12 @@ def modify_parameters(parameters): class reforme_officielle_2018_in_2016(Reform): key = 'officielle_2018_in_2016', - name = "Réforme de la fiscalité des énergies de 2018 par rapport aux taux de 2016", + name = 'Réforme de la fiscalité des énergies de 2018 par rapport aux taux de 2016', class cheques_energie_integral_inconditionnel_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie (indexés par uc) avec redistribution intégrale et inconditionnelle" + label = 'Montant des chèques énergie (indexés par uc) avec redistribution intégrale et inconditionnelle' def formula(menage, period): revenu_reforme = \ @@ -130,7 +130,7 @@ def formula(menage, period): class cheques_energie_integral_inconditionnel_officielle_2018_in_2016_plus_cspe(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie (indexés par uc) avec redistribution intégrale et inconditionnelle" + label = 'Montant des chèques énergie (indexés par uc) avec redistribution intégrale et inconditionnelle' def formula(menage, period): revenu_reforme = \ @@ -148,7 +148,7 @@ def formula(menage, period): class cheques_energie_integral_inconditionnel_cce_seulement(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie (indexés par uc) avec redistribution intégrale et inconditionnelle" + label = 'Montant des chèques énergie (indexés par uc) avec redistribution intégrale et inconditionnelle' def formula(menage, period): revenu_reforme = \ @@ -166,7 +166,7 @@ def formula(menage, period): class cheques_energie_integral_inconditionnel_rattrapage_integral(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie (indexés par uc) avec redistribution intégrale et inconditionnelle" + label = 'Montant des chèques énergie (indexés par uc) avec redistribution intégrale et inconditionnelle' def formula(menage, period): revenu_reforme = \ @@ -184,7 +184,7 @@ def formula(menage, period): class cheques_energie_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period): revenu_fiscal = menage('revdecm', period) @@ -209,7 +209,7 @@ def formula(menage, period): class cheques_energie_ruraux_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period): revenu_fiscal = menage('revdecm', period) @@ -248,7 +248,7 @@ def formula(menage, period): class cheques_energie_by_energy_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period): revenu_fiscal = menage('revdecm', period) @@ -288,7 +288,7 @@ def formula(menage, period): class cheques_energie_ruraux_by_energy_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period): revenu_fiscal = menage('revdecm', period) @@ -340,7 +340,7 @@ def formula(menage, period): class combustibles_liquides_ticpe_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme" + label = 'Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -371,7 +371,7 @@ def formula(menage, period, parameters): class depenses_carburants_corrigees_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Depenses en carburants après reaction a la reforme" + label = 'Depenses en carburants après reaction a la reforme' def formula(menage, period): depenses_diesel_ajustees = menage('depenses_diesel_corrigees_officielle_2018_in_2016', period) @@ -383,7 +383,7 @@ def formula(menage, period): class depenses_combustibles_liquides_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en combustibles_liquides après réaction à la réforme" + label = 'Dépenses en combustibles_liquides après réaction à la réforme' def formula(menage, period, parameters): depenses_combustibles_liquides = menage('depenses_combustibles_liquides', period) @@ -400,7 +400,7 @@ def formula(menage, period, parameters): class depenses_diesel_corrigees_cce_seulement(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel après réaction à la réforme" + label = 'Dépenses en diesel après réaction à la réforme' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -415,7 +415,7 @@ def formula(menage, period, parameters): class depenses_diesel_corrigees_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel après réaction à la réforme" + label = 'Dépenses en diesel après réaction à la réforme' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -430,7 +430,7 @@ def formula(menage, period, parameters): class depenses_diesel_corrigees_rattrapage_integral(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel après réaction à la réforme" + label = 'Dépenses en diesel après réaction à la réforme' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -447,7 +447,7 @@ def formula(menage, period, parameters): class depenses_electricite_cspe(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité après réaction à la hausse de la CSPE" + label = 'Dépenses en électricité après réaction à la hausse de la CSPE' def formula(menage, period, parameters): depenses_electricite_variables = menage('depenses_electricite_variables', period) @@ -478,7 +478,7 @@ def formula(menage, period, parameters): class depenses_energies_logement_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en énergies dans le logement après la réforme" + label = 'Dépenses en énergies dans le logement après la réforme' def formula(menage, period): depenses_electricite = menage('depenses_electricite', period) @@ -498,7 +498,7 @@ def formula(menage, period): class depenses_energies_logement_officielle_2018_in_2016_plus_cspe(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en énergies logement après réforme avec hausse de la CSPE" + label = 'Dépenses en énergies logement après réforme avec hausse de la CSPE' def formula(menage, period): depenses_electricite_ajustees = menage('depenses_electricite_cspe', period) @@ -517,7 +517,7 @@ def formula(menage, period): class depenses_essence_corrigees_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence après réaction à la réforme" + label = 'Dépenses en essence après réaction à la réforme' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -532,7 +532,7 @@ def formula(menage, period, parameters): class depenses_gaz_ville_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz après réaction à la réforme" + label = 'Dépenses en gaz après réaction à la réforme' def formula(menage, period, parameters): depenses_gaz_variables = menage('depenses_gaz_variables', period) @@ -557,7 +557,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux plein après réaction à la réforme" + label = 'Dépenses sur les biens assujetis à la TVA à taux plein après réaction à la réforme' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -574,7 +574,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_bis_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux plein bis après réaction à la réforme" + label = 'Dépenses sur les biens assujetis à la TVA à taux plein bis après réaction à la réforme' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -593,7 +593,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_reduit_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux reduit après réaction à la réforme" + label = 'Dépenses sur les biens assujetis à la TVA à taux reduit après réaction à la réforme' def formula(menage, period, parameters): depenses_tva_taux_reduit = menage('depenses_tva_taux_reduit', period) @@ -610,7 +610,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_super_reduit_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux super reduit après réaction à la réforme" + label = 'Dépenses sur les biens assujetis à la TVA à taux super reduit après réaction à la réforme' def formula(menage, period, parameters): depenses_tva_taux_super_reduit = menage('depenses_tva_taux_super_reduit', period) @@ -627,7 +627,7 @@ def formula(menage, period, parameters): class diesel_ticpe_cce_seulement(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -668,7 +668,7 @@ def formula(menage, period, parameters): class diesel_ticpe_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -709,7 +709,7 @@ def formula(menage, period, parameters): class diesel_ticpe_rattrapage_integral(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -752,7 +752,7 @@ def formula(menage, period, parameters): class emissions_CO2_carburants_cce_seulement(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur conso de carburants après réforme CCE sans rattrapage diesel, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de carburants après réforme CCE sans rattrapage diesel, en kg de CO2' def formula(menage, period, parameters): quantites_diesel_ajustees = menage('quantites_diesel_cce_seulement', period) @@ -771,7 +771,7 @@ def formula(menage, period, parameters): class emissions_CO2_carburants_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur conso de carburants après réforme, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de carburants après réforme, en kg de CO2' def formula(menage, period, parameters): quantites_diesel_ajustees = menage('quantites_diesel_officielle_2018_in_2016', period) @@ -790,7 +790,7 @@ def formula(menage, period, parameters): class emissions_CO2_carburants_rattrapage_integral(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur conso de carburants après rattrapage intégral fisalité diesel, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de carburants après rattrapage intégral fisalité diesel, en kg de CO2' def formula(menage, period, parameters): quantites_diesel_ajustees = menage('quantites_diesel_rattrapage_integral', period) @@ -809,7 +809,7 @@ def formula(menage, period, parameters): class emissions_CO2_combustibles_liquides_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur conso de fioul après réforme - en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de fioul après réforme - en kg de CO2' def formula(menage, period, parameters): quantites_combustibles_liquides_ajustees = menage('quantites_combustibles_liquides_officielle_2018_in_2016', period) @@ -822,7 +822,7 @@ def formula(menage, period, parameters): class emissions_CO2_diesel_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur conso de diesel après réforme, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de diesel après réforme, en kg de CO2' def formula(menage, period, parameters): quantites_diesel_ajustees = menage('quantites_diesel_officielle_2018_in_2016', period) @@ -897,7 +897,7 @@ def formula(menage, period, parameters): class emissions_CO2_gaz_ville_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur conso de gaz après réforme - en kg de CO2" + label = 'Emissions de CO2 des ménages via leur conso de gaz après réforme - en kg de CO2' def formula(menage, period, parameters): quantites_gaz_ajustees = menage('quantites_gaz_final_officielle_2018_in_2016', period) @@ -910,7 +910,7 @@ def formula(menage, period, parameters): class essence_ticpe_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme' def formula_2009(menage, period): sp95_ticpe_ajustee = menage('sp95_ticpe_officielle_2018_in_2016', period) @@ -935,7 +935,7 @@ def formula_1990(menage, period): class gains_tva_carburants_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Recettes en TVA sur les carburants de la réforme" + label = 'Recettes en TVA sur les carburants de la réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -960,7 +960,7 @@ def formula(menage, period, parameters): class gains_tva_combustibles_liquides_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la réforme en TVA sur les combustibles liquides" + label = 'Recettes de la réforme en TVA sur les combustibles liquides' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -985,7 +985,7 @@ def formula(menage, period, parameters): class gains_tva_gaz_ville_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la réforme en TVA sur le gaz naturel" + label = 'Recettes de la réforme en TVA sur le gaz naturel' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -1011,7 +1011,7 @@ def formula(menage, period, parameters): class gains_tva_total_energies_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la réforme en TVA sur toutes les énergies" + label = 'Recettes de la réforme en TVA sur toutes les énergies' def formula(menage, period): gains_carburants = menage('gains_tva_carburants_officielle_2018_in_2016', period) @@ -1025,7 +1025,7 @@ def formula(menage, period): class pertes_financieres_avant_redistribution_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Montant total des pertes financières dues à la réforme, avant redistribution" + label = 'Montant total des pertes financières dues à la réforme, avant redistribution' def formula(menage, period): depenses_energies_totales = menage('depenses_energies_totales', period) @@ -1045,7 +1045,7 @@ def formula(menage, period): class pertes_financieres_avant_redistribution_officielle_2018_in_2016_plus_cspe(YearlyVariable): value_type = float entity = Menage - label = "Montant total des pertes financières dues à la réforme, avant redistribution" + label = 'Montant total des pertes financières dues à la réforme, avant redistribution' def formula(menage, period): depenses_energies_totales = menage('depenses_energies_totales', period) @@ -1065,7 +1065,7 @@ def formula(menage, period): class quantites_combustibles_liquides_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Quantités de combustibles_liquides consommées après la réforme" + label = 'Quantités de combustibles_liquides consommées après la réforme' def formula(menage, period, parameters): depenses_combustibles_liquides_officielle_2018_in_2016 = \ @@ -1081,7 +1081,7 @@ def formula(menage, period, parameters): class quantites_diesel_cce_seulement(YearlyVariable): value_type = float entity = Menage - label = "Quantités de diesel consommées après la réforme - contribution climat énergie, hausse de 2016 à 2018" + label = 'Quantités de diesel consommées après la réforme - contribution climat énergie, hausse de 2016 à 2018' def formula(menage, period, parameters): depenses_diesel_officielle_2018_in_2016 = \ @@ -1095,7 +1095,7 @@ def formula(menage, period, parameters): class quantites_diesel_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Quantités de diesel consommées après la réforme" + label = 'Quantités de diesel consommées après la réforme' def formula(menage, period, parameters): depenses_diesel_officielle_2018_in_2016 = \ @@ -1109,7 +1109,7 @@ def formula(menage, period, parameters): class quantites_diesel_rattrapage_integral(YearlyVariable): value_type = float entity = Menage - label = "Quantités de diesel consommées après la réforme" + label = 'Quantités de diesel consommées après la réforme' def formula(menage, period, parameters): depenses_diesel_officielle_2018_in_2016 = \ @@ -1179,7 +1179,7 @@ def formula_1990(menage, period): class quantites_gaz_final_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Quantités de gaz consommées après la réforme" + label = 'Quantités de gaz consommées après la réforme' def formula(menage, period, parameters): depenses_gaz_ville_officielle_2018_in_2016 = menage('depenses_gaz_ville_officielle_2018_in_2016', period) @@ -1197,7 +1197,7 @@ def formula(menage, period, parameters): class quantites_sp_e10_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb e10 par les ménages après réforme" + label = 'Quantités consommées de sans plomb E10 par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_officielle_2018_in_2016 = \ @@ -1213,7 +1213,7 @@ def formula(menage, period, parameters): class quantites_sp95_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb 95 par les ménages après réforme" + label = 'Quantités consommées de sans plomb 95 par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_officielle_2018_in_2016 = \ @@ -1229,7 +1229,7 @@ def formula(menage, period, parameters): class quantites_sp98_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb 98 par les ménages" + label = 'Quantités consommées de sans plomb 98 par les ménages' def formula(menage, period, parameters): depenses_essence_officielle_2018_in_2016 = \ @@ -1245,7 +1245,7 @@ def formula(menage, period, parameters): class quantites_super_plombe_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de super plombé par les ménages après réforme" + label = 'Quantités consommées de super plombé par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_officielle_2018_in_2016 = \ @@ -1263,7 +1263,7 @@ def formula(menage, period, parameters): class reste_transferts_neutre_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Montant des transferts additionnels à imputer pour avoir une réforme à budget neutre, sans biaiser les effets distributifs" + label = 'Montant des transferts additionnels à imputer pour avoir une réforme à budget neutre, sans biaiser les effets distributifs' def formula(menage, period): ocde10 = menage('ocde10', period) @@ -1284,7 +1284,7 @@ def formula(menage, period): class reste_transferts_neutre_officielle_2018_in_2016_plus_cspe(YearlyVariable): value_type = float entity = Menage - label = "Montant des transferts additionnels à imputer pour avoir une réforme à budget neutre, sans biaiser les effets distributifs" + label = 'Montant des transferts additionnels à imputer pour avoir une réforme à budget neutre, sans biaiser les effets distributifs' def formula(menage, period): ocde10 = menage('ocde10', period) @@ -1305,7 +1305,7 @@ def formula(menage, period): class revenu_reforme_cce_seulement(YearlyVariable): value_type = float entity = Menage - label = "Revenu généré par la réforme de la cce, avant redistribution" + label = 'Revenu généré par la réforme de la cce, avant redistribution' def formula(menage, period): total_taxes_energies = menage('total_taxes_energies', period) @@ -1324,7 +1324,7 @@ def formula(menage, period): class revenu_reforme_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Revenu généré par la réforme officielle 2018 avant redistribution" + label = 'Revenu généré par la réforme officielle 2018 avant redistribution' def formula(menage, period): total_taxes_energies = menage('total_taxes_energies', period) @@ -1344,7 +1344,7 @@ def formula(menage, period): class revenu_reforme_officielle_2018_in_2016_plus_cspe(YearlyVariable): value_type = float entity = Menage - label = "Revenu généré par la réforme officielle 2018 plus cspe, avant redistribution" + label = 'Revenu généré par la réforme officielle 2018 plus cspe, avant redistribution' def formula(menage, period): total_taxes_energies = menage('total_taxes_energies', period) @@ -1364,7 +1364,7 @@ def formula(menage, period): class revenu_reforme_rattrapage_integral(YearlyVariable): value_type = float entity = Menage - label = "Revenu généré par le rattrapage intégral, avant redistribution" + label = 'Revenu généré par le rattrapage intégral, avant redistribution' def formula(menage, period): total_taxes_energies = menage('total_taxes_energies', period) @@ -1384,7 +1384,7 @@ def formula(menage, period): class sp_e10_ticpe_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le SP E10 après réforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -1422,7 +1422,7 @@ def formula(menage, period, parameters): class sp95_ticpe_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_95 après réforme" + label = 'Calcul du montant de TICPE sur le sp_95 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -1459,7 +1459,7 @@ def formula(menage, period, parameters): class sp98_ticpe_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_98 après réforme" + label = 'Calcul du montant de TICPE sur le sp_98 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -1497,7 +1497,7 @@ def formula(menage, period, parameters): class super_plombe_ticpe_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le super plombé après réforme" + label = 'Calcul du montant de la TICPE sur le super plombé après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -1542,7 +1542,7 @@ def formula(menage, period, parameters): class taxe_gaz_ville_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la taxe sur la consommation de gaz - ceteris paribus" + label = 'Recettes de la taxe sur la consommation de gaz - ceteris paribus' # On considère que les contributions sur les taxes précédentes ne sont pas affectées def formula(menage, period, parameters): @@ -1555,7 +1555,7 @@ def formula(menage, period, parameters): class ticpe_totale_cce_seulement(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe_officielle_2018_in_2016', period) @@ -1567,7 +1567,7 @@ def formula(menage, period): class ticpe_totale_officielle_2018_in_2016(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe_officielle_2018_in_2016', period) @@ -1579,7 +1579,7 @@ def formula(menage, period): class ticpe_totale_rattrapage_integral(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe', period) diff --git a/openfisca_france_indirect_taxation/reforms/officielle_2019_in_2018.py b/openfisca_france_indirect_taxation/reforms/officielle_2019_in_2018.py index 655589a2..039e4f08 100644 --- a/openfisca_france_indirect_taxation/reforms/officielle_2019_in_2018.py +++ b/openfisca_france_indirect_taxation/reforms/officielle_2019_in_2018.py @@ -10,28 +10,28 @@ def modify_parameters(parameters): node = ParameterNode( - "officielle_2019_in_2018", + 'officielle_2019_in_2018', data = { - "description": "officielle_2019_in_2018", - "diesel_2019_in_2018": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", - "unit": 'currency', - "values": {'2016-01-01': 2.6 + 266 * (0.055 - 0.0446)} + 'description': 'officielle_2019_in_2018', + 'diesel_2019_in_2018': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', + 'unit': 'currency', + 'values': {'2016-01-01': 2.6 + 266 * (0.055 - 0.0446)} }, - "essence_2019_in_2018": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": 'currency', - "values": {'2016-01-01': 242 * (0.055 - 0.0446)} + 'essence_2019_in_2018': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': {'2016-01-01': 242 * (0.055 - 0.0446)} }, - "combustibles_liquides_2019_in_2018": { - "description": "Surcroît de prix du fioul domestique (en euros par litre)", - "unit": 'currency', - "values": {'2016-01-01': 3.24 * (0.055 - 0.0446)} + 'combustibles_liquides_2019_in_2018': { + 'description': 'Surcroît de prix du fioul domestique (en euros par litre)', + 'unit': 'currency', + 'values': {'2016-01-01': 3.24 * (0.055 - 0.0446)} }, - "gaz_ville_2019_in_2018": { - "description": "Surcroît de prix du gaz (en euros par kWh)", - "unit": 'currency', - "values": {'2016-01-01': 0.241 * (0.055 - 0.0446)} + 'gaz_ville_2019_in_2018': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', + 'unit': 'currency', + 'values': {'2016-01-01': 0.241 * (0.055 - 0.0446)} }, }, ) @@ -41,12 +41,12 @@ def modify_parameters(parameters): class officielle_2019_in_2018(Reform): key = 'officielle_2019_in_2018', - name = "Réforme de la fiscalité des énergies de 2018 par rapport aux taux de 2016", + name = 'Réforme de la fiscalité des énergies de 2018 par rapport aux taux de 2016', class cheques_energie_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period): revenu_fiscal = menage('revdecm', period) / 1.22 @@ -71,7 +71,7 @@ def formula(menage, period): class cheques_energie_augmente_proportionnel_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period): revenu_fiscal = menage('revdecm', period) / 1.22 @@ -96,7 +96,7 @@ def formula(menage, period): class cheques_energie_majore_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period): revenu_fiscal = menage('revdecm', period) / 1.22 @@ -121,7 +121,7 @@ def formula(menage, period): class cheques_energie_philippe_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period): revenu_fiscal = menage('revdecm', period) / 1.22 @@ -149,7 +149,7 @@ def formula(menage, period): class combustibles_liquides_ticpe_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme" + label = 'Calcul du montant de TICPE sur le combustibles_liquides domestique après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -180,7 +180,7 @@ def formula(menage, period, parameters): class depenses_carburants_corrigees_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Depenses en carburants après reaction a la reforme" + label = 'Depenses en carburants après reaction a la reforme' def formula(menage, period): depenses_diesel_ajustees = menage('depenses_diesel_corrigees_officielle_2019_in_2018', period) @@ -192,7 +192,7 @@ def formula(menage, period): class depenses_combustibles_liquides_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en combustibles_liquides après réaction à la réforme" + label = 'Dépenses en combustibles_liquides après réaction à la réforme' def formula(menage, period, parameters): depenses_combustibles_liquides = menage('depenses_combustibles_liquides', period) @@ -209,7 +209,7 @@ def formula(menage, period, parameters): class depenses_diesel_corrigees_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel après réaction à la réforme" + label = 'Dépenses en diesel après réaction à la réforme' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -224,7 +224,7 @@ def formula(menage, period, parameters): class depenses_energies_logement_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en énergies dans le logement après la réforme" + label = 'Dépenses en énergies dans le logement après la réforme' def formula(menage, period): depenses_electricite = menage('depenses_electricite', period) @@ -244,7 +244,7 @@ def formula(menage, period): class depenses_essence_corrigees_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence après réaction à la réforme" + label = 'Dépenses en essence après réaction à la réforme' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -259,7 +259,7 @@ def formula(menage, period, parameters): class depenses_gaz_ville_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz après réaction à la réforme" + label = 'Dépenses en gaz après réaction à la réforme' def formula(menage, period, parameters): depenses_gaz_variables = menage('depenses_gaz_variables', period) @@ -284,7 +284,7 @@ def formula(menage, period, parameters): class diesel_ticpe_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -325,7 +325,7 @@ def formula(menage, period, parameters): class essence_ticpe_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme' def formula_2009(menage, period): sp95_ticpe_ajustee = menage('sp95_ticpe_officielle_2019_in_2018', period) @@ -350,7 +350,7 @@ def formula_1990(menage, period, parameters): class gains_tva_carburants_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Recettes en TVA sur les carburants de la réforme" + label = 'Recettes en TVA sur les carburants de la réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -375,7 +375,7 @@ def formula(menage, period, parameters): class gains_tva_combustibles_liquides_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la réforme en TVA sur les combustibles liquides" + label = 'Recettes de la réforme en TVA sur les combustibles liquides' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -400,7 +400,7 @@ def formula(menage, period, parameters): class gains_tva_gaz_ville_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la réforme en TVA sur le gaz naturel" + label = 'Recettes de la réforme en TVA sur le gaz naturel' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -426,7 +426,7 @@ def formula(menage, period, parameters): class gains_tva_total_energies_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la réforme en TVA sur toutes les énergies" + label = 'Recettes de la réforme en TVA sur toutes les énergies' def formula(menage, period): gains_carburants = menage('gains_tva_carburants_officielle_2019_in_2018', period) @@ -440,7 +440,7 @@ def formula(menage, period): class pertes_financieres_avant_redistribution_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Montant total des pertes financières dues à la réforme, avant redistribution" + label = 'Montant total des pertes financières dues à la réforme, avant redistribution' def formula(menage, period): depenses_energies_totales = menage('depenses_energies_totales', period) @@ -460,7 +460,7 @@ def formula(menage, period): class quantites_combustibles_liquides_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Quantités de combustibles_liquides consommées après la réforme" + label = 'Quantités de combustibles_liquides consommées après la réforme' def formula(menage, period, parameters): depenses_combustibles_liquides_officielle_2019_in_2018 = \ @@ -476,7 +476,7 @@ def formula(menage, period, parameters): class quantites_diesel_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Quantités de diesel consommées après la réforme" + label = 'Quantités de diesel consommées après la réforme' def formula(menage, period, parameters): depenses_diesel_officielle_2019_in_2018 = \ @@ -519,7 +519,7 @@ def formula_1990(menage, period, parameters): class quantites_gaz_final_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Quantités de gaz consommées après la réforme" + label = 'Quantités de gaz consommées après la réforme' def formula(menage, period, parameters): depenses_gaz_ville_officielle_2019_in_2018 = menage('depenses_gaz_ville_officielle_2019_in_2018', period) @@ -537,7 +537,7 @@ def formula(menage, period, parameters): class quantites_sp_e10_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb e10 par les ménages après réforme" + label = 'Quantités consommées de sans plomb E10 par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_officielle_2019_in_2018 = \ @@ -553,7 +553,7 @@ def formula(menage, period, parameters): class quantites_sp95_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb 95 par les ménages après réforme" + label = 'Quantités consommées de sans plomb 95 par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_officielle_2019_in_2018 = \ @@ -569,7 +569,7 @@ def formula(menage, period, parameters): class quantites_sp98_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb 98 par les ménages" + label = 'Quantités consommées de sans plomb 98 par les ménages' def formula(menage, period, parameters): depenses_essence_officielle_2019_in_2018 = \ @@ -585,7 +585,7 @@ def formula(menage, period, parameters): class quantites_super_plombe_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de super plombé par les ménages après réforme" + label = 'Quantités consommées de super plombé par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_officielle_2019_in_2018 = \ @@ -603,7 +603,7 @@ def formula(menage, period, parameters): class reste_transferts_neutre_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Montant des transferts additionnels à imputer pour avoir une réforme à budget neutre, sans biaiser les effets distributifs" + label = 'Montant des transferts additionnels à imputer pour avoir une réforme à budget neutre, sans biaiser les effets distributifs' def formula(menage, period, parameters): ocde10 = menage('ocde10', period) @@ -624,7 +624,7 @@ def formula(menage, period, parameters): class revenu_reforme_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Revenu généré par la réforme officielle 2018 avant redistribution" + label = 'Revenu généré par la réforme officielle 2018 avant redistribution' def formula(menage, period, parameters): total_taxes_energies = menage('total_taxes_energies', period) @@ -644,7 +644,7 @@ def formula(menage, period, parameters): class sp_e10_ticpe_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le SP E10 après réforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -682,7 +682,7 @@ def formula(menage, period, parameters): class sp95_ticpe_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_95 après réforme" + label = 'Calcul du montant de TICPE sur le sp_95 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -719,7 +719,7 @@ def formula(menage, period, parameters): class sp98_ticpe_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_98 après réforme" + label = 'Calcul du montant de TICPE sur le sp_98 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -757,7 +757,7 @@ def formula(menage, period, parameters): class super_plombe_ticpe_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le super plombé après réforme" + label = 'Calcul du montant de la TICPE sur le super plombé après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -789,7 +789,7 @@ def formula(menage, period, parameters): class taxe_gaz_ville_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la taxe sur la consommation de gaz - ceteris paribus" + label = 'Recettes de la taxe sur la consommation de gaz - ceteris paribus' # On considère que les contributions sur les taxes précédentes ne sont pas affectées def formula(menage, period, parameters): @@ -802,7 +802,7 @@ def formula(menage, period, parameters): class ticpe_totale_officielle_2019_in_2018(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe_officielle_2019_in_2018', period) diff --git a/openfisca_france_indirect_taxation/reforms/rattrapage_diesel.py b/openfisca_france_indirect_taxation/reforms/rattrapage_diesel.py index 7cb2c201..8152903e 100644 --- a/openfisca_france_indirect_taxation/reforms/rattrapage_diesel.py +++ b/openfisca_france_indirect_taxation/reforms/rattrapage_diesel.py @@ -44,7 +44,7 @@ class reforme_rattrapage_diesel(Reform): class cheques_energie(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie (indexés par uc) - taxe carbone" + label = 'Montant des chèques énergie (indexés par uc) - taxe carbone' def formula(menage, period): contribution = menage('contributions_reforme', period) @@ -61,7 +61,7 @@ def formula(menage, period): class contributions_reforme(YearlyVariable): value_type = float entity = Menage - label = "Changement de contribution aux taxes énergétiques suite à la réforme - taxe carbone" + label = 'Changement de contribution aux taxes énergétiques suite à la réforme - taxe carbone' def formula(menage, period): total_taxes_energies = menage('total_taxes_energies', period) @@ -74,7 +74,7 @@ def formula(menage, period): class depenses_carburants_corrigees_ajustees_rattrapage_diesel(YearlyVariable): value_type = float entity = Menage - label = "Depenses en carburants après reaction a la reforme - taxes carburants" + label = 'Depenses en carburants après reaction a la reforme - taxes carburants' def formula(menage, period): depenses_diesel_ajustees = menage('depenses_diesel_corrigees_ajustees_rattrapage_diesel', period) @@ -101,7 +101,7 @@ def formula(menage, period): class depenses_diesel_corrigees_ajustees_rattrapage_diesel(YearlyVariable): value_type = float entity = Menage - label = "Depenses en diesel après reaction a la reforme - taxes carburants" + label = 'Depenses en diesel après reaction a la reforme - taxes carburants' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -116,7 +116,7 @@ def formula(menage, period, parameters): class depenses_essence_ajustees_rattrapage_diesel(YearlyVariable): value_type = float entity = Menage - label = "Depenses en essence après reaction a la reforme - taxes carburants" + label = 'Depenses en essence après reaction a la reforme - taxes carburants' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -131,7 +131,7 @@ def formula(menage, period, parameters): class depenses_essence_corrigees_ajustees_rattrapage_diesel(YearlyVariable): value_type = float entity = Menage - label = "Depenses en essence après reaction a la reforme - taxes carburants" + label = 'Depenses en essence après reaction a la reforme - taxes carburants' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -146,7 +146,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_ajustees_rattrapage_diesel(YearlyVariable): value_type = float entity = Menage - label = "Depenses sur les biens assujetis a la TVA a taux plein après reaction a la reforme - taxes carburants" + label = 'Depenses sur les biens assujetis a la TVA a taux plein après reaction a la reforme - taxes carburants' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -163,7 +163,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_bis_ajustees_rattrapage_diesel(YearlyVariable): value_type = float entity = Menage - label = "Depenses sur les biens assujetis a la TVA a taux plein après reaction a la reforme - taxes carburants" + label = 'Depenses sur les biens assujetis a la TVA a taux plein après reaction a la reforme - taxes carburants' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -179,7 +179,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_reduit_ajustees_rattrapage_diesel(YearlyVariable): value_type = float entity = Menage - label = "Depenses sur les biens assujetis a la TVA a taux reduit après reaction a la reforme - taxes carburants" + label = 'Depenses sur les biens assujetis a la TVA a taux reduit après reaction a la reforme - taxes carburants' def formula(menage, period, parameters): depenses_tva_taux_reduit = menage('depenses_tva_taux_reduit', period) @@ -195,7 +195,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_super_reduit_ajustees_rattrapage_diesel(YearlyVariable): value_type = float entity = Menage - label = "Depenses sur les biens assujetis a la TVA tx super reduit après reaction a la reforme - taxes carburants" + label = 'Depenses sur les biens assujetis a la TVA tx super reduit après reaction a la reforme - taxes carburants' def formula(menage, period, parameters): depenses_tva_taux_super_reduit = menage('depenses_tva_taux_super_reduit', period) @@ -210,8 +210,8 @@ def formula(menage, period, parameters): return depenses_tva_taux_super_reduit_ajustees class diesel_ticpe(YearlyVariable): - baseline_variable = ticpe.diesel_ticpe #  TODO réintégrer ou effacer car update - label = "Calcul du montant de TICPE sur le diesel après reforme" + baseline_variable = ticpe.diesel_ticpe # TODO réintégrer ou effacer car update + label = 'Calcul du montant de TICPE sur le diesel après reforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -250,7 +250,7 @@ def formula(menage, period, parameters): return montant_diesel_ticpe_ajuste class emissions_CO2_carburants(YearlyVariable): - label = "Emissions de CO2 des menages via leur consommation de carburants après reforme, en kg de CO2" + label = 'Emissions de CO2 des menages via leur consommation de carburants après reforme, en kg de CO2' baseline_variable = emissions_co2.emissions_CO2_carburants def formula(menage, period, parameters): @@ -268,7 +268,7 @@ def formula(menage, period, parameters): return emissions_ajustees class essence_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur toutes les essences cumulees, après reforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulees, après reforme' baseline_variable = ticpe.essence_ticpe def formula_2009(menage, period): @@ -292,7 +292,7 @@ def formula_1990(menage, period): return essence_ticpe_ajustee class quantites_diesel(YearlyVariable): - label = "Quantites de diesel consommees après la reforme - taxe carburants" + label = 'Quantites de diesel consommees après la reforme - taxe carburants' baseline_variable = quantites_energie.quantites_diesel def formula(menage, period, parameters): @@ -305,7 +305,7 @@ def formula(menage, period, parameters): return quantites_diesel_ajustees class quantites_sp_e10(YearlyVariable): - label = "Quantites consommees de sans plomb e10 par les menages après reforme - taxe carburants" + label = 'Quantites consommees de sans plomb E10 par les menages après reforme - taxe carburants' baseline_variable = quantites_energie.quantites_sp_e10 def formula(menage, period, parameters): @@ -320,7 +320,7 @@ def formula(menage, period, parameters): return quantite_sp_e10 class quantites_sp95(YearlyVariable): - label = "Quantites consommees de sans plomb 95 par les menages après reforme" + label = 'Quantites consommees de sans plomb 95 par les menages après reforme' baseline_variable = quantites_energie.quantites_sp95 def formula(menage, period, parameters): @@ -334,7 +334,7 @@ def formula(menage, period, parameters): return quantites_sp95_ajustees class quantites_sp98(YearlyVariable): - label = "Quantites consommees de sans plomb 98 par les menages" + label = 'Quantites consommees de sans plomb 98 par les menages' baseline_variable = quantites_energie.quantites_sp98 def formula(menage, period, parameters): @@ -348,7 +348,7 @@ def formula(menage, period, parameters): return quantites_sp98_ajustees class quantites_super_plombe(YearlyVariable): - label = "Quantites consommees de super plombe par les menages après reforme" + label = 'Quantites consommees de super plombe par les menages après reforme' baseline_variable = quantites_energie.quantites_super_plombe def formula(menage, period, parameters): @@ -391,7 +391,7 @@ def formula_1990(menage, period): return quantites_essence_ajustees class sp_e10_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur le SP E10 après reforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après reforme' baseline_variable = ticpe.sp_e10_ticpe def formula(menage, period, parameters): @@ -428,7 +428,7 @@ def formula(menage, period, parameters): return montant_sp_e10_ticpe_ajuste class sp95_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le sp_95 après reforme" + label = 'Calcul du montant de TICPE sur le sp_95 après reforme' baseline_variable = ticpe.sp95_ticpe def formula(menage, period, parameters): @@ -464,7 +464,7 @@ def formula(menage, period, parameters): return montant_sp95_ticpe_ajuste class sp98_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le sp_98 après reforme" + label = 'Calcul du montant de TICPE sur le sp_98 après reforme' baseline_variable = ticpe.sp98_ticpe def formula(menage, period, parameters): @@ -501,7 +501,7 @@ def formula(menage, period, parameters): return montant_sp98_ticpe_ajuste class super_plombe_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur le super plombe après reforme" + label = 'Calcul du montant de la TICPE sur le super plombe après reforme' baseline_variable = ticpe.super_plombe_ticpe def formula(menage, period, parameters): @@ -532,7 +532,7 @@ def formula(menage, period, parameters): return montant_super_plombe_ticpe_ajuste class ticpe_totale(YearlyVariable): - label = "Calcul du montant de la TICPE sur tous les carburants cumules, après reforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumules, après reforme' baseline_variable = ticpe.ticpe_totale def formula(menage, period): @@ -559,7 +559,7 @@ def formula(menage, period): return total class tva_taux_plein(YearlyVariable): - label = "Contribution sur la TVA a taux plein après reaction a la reforme - taxes carburants" + label = 'Contribution sur la TVA a taux plein après reaction a la reforme - taxes carburants' baseline_variable = tva.tva_taux_plein def formula(menage, period, parameters): @@ -575,7 +575,7 @@ def formula(menage, period, parameters): class tva_taux_plein_bis(YearlyVariable): value_type = float entity = Menage - label = "Contribution sur la TVA a taux plein après reaction a la reforme - taxes carburants" + label = 'Contribution sur la TVA a taux plein après reaction a la reforme - taxes carburants' def formula(menage, period, parameters): depenses_tva_taux_plein_ajustees = \ @@ -589,7 +589,7 @@ def formula(menage, period, parameters): return tax_from_expense_including_tax(depenses_tva_taux_plein_ajustees, nouveau_taux_plein) class tva_taux_reduit(YearlyVariable): - label = "Contribution sur la TVA a taux reduit après reaction a la reforme - taxes carburants" + label = 'Contribution sur la TVA a taux reduit après reaction a la reforme - taxes carburants' baseline_variable = tva.tva_taux_reduit def formula(menage, period, parameters): @@ -604,7 +604,7 @@ def formula(menage, period, parameters): return tax_from_expense_including_tax(depenses_tva_taux_reduit_ajustees, nouveau_taux_reduit) class tva_taux_super_reduit(YearlyVariable): - label = "Contribution sur la TVA a taux super reduit après reaction a la reforme - taxes carburants" + label = 'Contribution sur la TVA a taux super reduit après reaction a la reforme - taxes carburants' baseline_variable = tva.tva_taux_super_reduit def formula(menage, period, parameters): @@ -619,7 +619,7 @@ def formula(menage, period, parameters): return tax_from_expense_including_tax(depenses_tva_taux_super_reduit_ajustees, nouveau_taux_super_reduit) class tva_total(YearlyVariable): - label = "Difference de contribution sur la TVA après reaction a la reforme - rattrapage diesel" + label = 'Difference de contribution sur la TVA après reaction a la reforme - rattrapage diesel' baseline_variable = tva.tva_total def formula(menage, period): diff --git a/openfisca_france_indirect_taxation/reforms/reforme_tabac.py b/openfisca_france_indirect_taxation/reforms/reforme_tabac.py index b4d5595b..e2e346b5 100644 --- a/openfisca_france_indirect_taxation/reforms/reforme_tabac.py +++ b/openfisca_france_indirect_taxation/reforms/reforme_tabac.py @@ -27,7 +27,7 @@ class depenses_cigarettes(Variable): def formula(menage, period, parameters): baseline_depenses_cigarettes = formula_depenses_cigarettes(menage, period, parameters) - prix_paquet_baseline = parameters("{}-12-31".format(baseline_year)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_paquet_cigarettes + prix_paquet_baseline = parameters('{}-12-31'.format(baseline_year)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_paquet_cigarettes prix_paquet_reforme = parameters(period).imposition_indirecte.taxes_tabacs.prix_tabac.prix_paquet_cigarettes depenses_cigarettes = ( baseline_depenses_cigarettes @@ -50,7 +50,7 @@ class depenses_tabac_a_rouler(Variable): def formula(menage, period, parameters): baseline_depenses_tabac_a_rouler = formula_depenses_tabac_a_rouler(menage, period) - prix_baseline = parameters("{}-12-31".format(baseline_year)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_bague_tabac + prix_baseline = parameters('{}-12-31'.format(baseline_year)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_bague_tabac prix_reforme = parameters(period).imposition_indirecte.taxes_tabacs.prix_tabac.prix_bague_tabac depenses_tabac_a_rouler = ( baseline_depenses_tabac_a_rouler diff --git a/openfisca_france_indirect_taxation/reforms/reforme_tva_2019.py b/openfisca_france_indirect_taxation/reforms/reforme_tva_2019.py index 24c52e5c..70b0e65e 100644 --- a/openfisca_france_indirect_taxation/reforms/reforme_tva_2019.py +++ b/openfisca_france_indirect_taxation/reforms/reforme_tva_2019.py @@ -11,16 +11,16 @@ def modify_parameters(parameters): node = ParameterNode( 'reforme_tva_2019', data = { - "description": "reforme_tva_2019", - "nouveau_taux_tva_a_2019": { - "description": "Augmentation de la TVA prévue par la LF 2019", - "unit": '/1', - "values": {'2013-01-01': 0.2} + 'description': 'reforme_tva_2019', + 'nouveau_taux_tva_a_2019': { + 'description': 'Augmentation de la TVA prévue par la LF 2019', + 'unit': '/1', + 'values': {'2013-01-01': 0.2} }, - "nouveau_taux_tva_b_2019": { - "description": "Augmentation de la TVA prévue par la LF 2019", - "unit": '/1', - "values": {'2013-01-01': 0.2} + 'nouveau_taux_tva_b_2019': { + 'description': 'Augmentation de la TVA prévue par la LF 2019', + 'unit': '/1', + 'values': {'2013-01-01': 0.2} }, } ) @@ -30,12 +30,12 @@ def modify_parameters(parameters): class reforme_tva_2019(Reform): key = 'reforme_tva_2019', - name = "Réforme de la TVA prévue par la loi de finance 2019", + name = 'Réforme de la TVA prévue par la loi de finance 2019', class poste_11_1_1_1_1_reforme_tva_2019(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en restaurant augmentation de la TVA" + label = 'Dépenses en restaurant augmentation de la TVA' def formula(menage, period, parameters): poste_11_1_1_1_1 = menage('poste_11_1_1_1_1', period) @@ -57,7 +57,7 @@ def formula(menage, period, parameters): class poste_11_1_1_1_2_reforme_tva_2019(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en café/bars augmentation de la TVA" + label = 'Dépenses en café/bars augmentation de la TVA' def formula(menage, period, parameters): poste_11_1_1_1_2 = menage('poste_11_1_1_1_2', period) @@ -79,7 +79,7 @@ def formula(menage, period, parameters): class poste_11_1_2_1_1_reforme_tva_2019(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en cantine augmentation de la TVA" + label = 'Dépenses en cantine augmentation de la TVA' def formula(menage, period, parameters): poste_11_1_2_1_1 = menage('poste_11_1_2_1_1', period) @@ -101,7 +101,7 @@ def formula(menage, period, parameters): class poste_11_1_3_1_reforme_tva_2019(YearlyVariable): value_type = float entity = Menage - label = "Autres dépenses en restauration, augmentation de la TVA" + label = 'Autres dépenses en restauration, augmentation de la TVA' def formula(menage, period, parameters): poste_11_1_3_1 = menage('poste_11_1_3_1', period) @@ -123,7 +123,7 @@ def formula(menage, period, parameters): class poste_11_1_3_2_reforme_tva_2019(YearlyVariable): value_type = float entity = Menage - label = "Autres dépenses en restauration (cadeaux à autres ménages), augmentation de la TVA" + label = 'Autres dépenses en restauration (cadeaux à autres ménages), augmentation de la TVA' def formula(menage, period, parameters): poste_11_1_3_2 = menage('poste_11_1_3_2', period) @@ -145,7 +145,7 @@ def formula(menage, period, parameters): class poste_11_2_1_1_1_reforme_tva_2019(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en hébergements augmentation de la TVA" + label = 'Dépenses en hébergements augmentation de la TVA' def formula(menage, period, parameters): poste_11_2_1_1_1 = menage('poste_11_2_1_1_1', period) diff --git a/openfisca_france_indirect_taxation/reforms/taxe_carbone.py b/openfisca_france_indirect_taxation/reforms/taxe_carbone.py index 520325e7..53ab1961 100644 --- a/openfisca_france_indirect_taxation/reforms/taxe_carbone.py +++ b/openfisca_france_indirect_taxation/reforms/taxe_carbone.py @@ -10,57 +10,57 @@ def modify_parameters(parameters): node = ParameterNode( - "taxe_carbone", + 'taxe_carbone', data = { - "description": "taxe_carbone", - "electricite": { - "description": "Surcroît de prix de l'électricité (en euros par kWh)", + 'description': 'taxe_carbone', + 'electricite': { + 'description': "Surcroît de prix de l'électricité (en euros par kWh)", # TODO "unit": '?', - "unit": 'currency', - "values": {'2010-01-01': 0.0045}, + 'unit': 'currency', + 'values': {'2010-01-01': 0.0045}, }, - "essence": { - "description": "Surcroît de prix de l'essence (en euros par hectolitres)", - "unit": 'currency', - "values": {'2010-01-01': 12.1 - 1.694}, + 'essence': { + 'description': "Surcroît de prix de l'essence (en euros par hectolitres)", + 'unit': 'currency', + 'values': {'2010-01-01': 12.1 - 1.694}, }, - "diesel": { - "description": "Surcroît de prix du diesel (en euros par hectolitres)", + 'diesel': { + 'description': 'Surcroît de prix du diesel (en euros par hectolitres)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2010-01-01': 13.3 - 1.862}, + 'unit': 'currency', + 'values': {'2010-01-01': 13.3 - 1.862}, }, - "combustibles_liquides": { - "description": "Surcroît de prix du diesel (en euros par litre)", + 'combustibles_liquides': { + 'description': 'Surcroît de prix du diesel (en euros par litre)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2010-01-01': 0.155 - 0.0217}, + 'unit': 'currency', + 'values': {'2010-01-01': 0.155 - 0.0217}, }, - "gaz": { - "description": "Surcroît de prix du gaz (en euros par kWh)", + 'gaz': { + 'description': 'Surcroît de prix du gaz (en euros par kWh)', # TODO "unit": '?', - "unit": 'currency', - "values": {'2010-01-01': 0.012 - 0.00168}, + 'unit': 'currency', + 'values': {'2010-01-01': 0.012 - 0.00168}, }, - "abaissement_tva_taux_plein": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.026}, + 'values': {'2010-01-01': 0.026}, }, - "abaissement_tva_taux_plein_bis": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_plein_bis': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.01}, + 'values': {'2010-01-01': 0.01}, }, - "abaissement_tva_taux_reduit": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_reduit': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.03}, + 'values': {'2010-01-01': 0.03}, }, - "abaissement_tva_taux_super_reduit": { - "description": "Baisse de la TVA à taux plein pour obtenir un budget constant", + 'abaissement_tva_taux_super_reduit': { + 'description': 'Baisse de la TVA à taux plein pour obtenir un budget constant', # TODO "unit": '?', - "values": {'2010-01-01': 0.01}, + 'values': {'2010-01-01': 0.01}, }, }, ) @@ -75,7 +75,7 @@ class taxe_carbone(Reform): class cheques_energie(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie (indexés par uc) - taxe carbone" + label = 'Montant des chèques énergie (indexés par uc) - taxe carbone' def formula(menage, period): contribution = menage('contributions_reforme', period) @@ -92,7 +92,7 @@ def formula(menage, period): class contributions_reforme(YearlyVariable): value_type = float entity = Menage - label = "Changement de contribution aux taxes énergétiques suite à la réforme - taxe carbone" + label = 'Changement de contribution aux taxes énergétiques suite à la réforme - taxe carbone' def formula(menage, period): total_taxes_energies = menage('total_taxes_energies', period) @@ -105,7 +105,7 @@ def formula(menage, period): class depenses_carburants_corrigees_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en carburants après réaction à la réforme - taxe carbone" + label = 'Dépenses en carburants après réaction à la réforme - taxe carbone' def formula(menage, period): depenses_diesel_ajustees = menage('depenses_diesel_corrigees_ajustees_taxe_carbone', period) @@ -117,7 +117,7 @@ def formula(menage, period): class depenses_diesel_corrigees_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel après réaction à la réforme - taxe carbone" + label = 'Dépenses en diesel après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -132,7 +132,7 @@ def formula(menage, period, parameters): class depenses_electricite_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité après réaction à la réforme - taxe carbone" + label = 'Dépenses en électricité après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_electricite_variables = menage('depenses_electricite_variables', period) @@ -159,7 +159,7 @@ def formula(menage, period, parameters): class depenses_energies_logement_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité sans inclure dépenses jointes avec le gaz" + label = 'Dépenses en électricité sans inclure dépenses jointes avec le gaz' def formula(menage, period): depenses_electricite_ajustees = menage('depenses_electricite_ajustees_taxe_carbone', period) @@ -178,7 +178,7 @@ def formula(menage, period): class depenses_essence_corrigees_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence après réaction à la réforme - taxe carbone" + label = 'Dépenses en essence après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -193,7 +193,7 @@ def formula(menage, period, parameters): class depenses_combustibles_liquides_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en fioul domestique après réaction à la réforme - taxe carbone" + label = 'Dépenses en fioul domestique après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_combustibles_liquides = menage('depenses_combustibles_liquides', period) @@ -209,7 +209,7 @@ def formula(menage, period, parameters): class depenses_gaz_ville_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz après réaction à la réforme - taxe carbone" + label = 'Dépenses en gaz après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_gaz_variables = menage('depenses_gaz_variables', period) @@ -228,7 +228,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux plein après réaction à la réforme - taxe carbone" + label = 'Dépenses sur les biens assujetis à la TVA à taux plein après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -243,7 +243,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_plein_bis_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux plein bis après réaction à la réforme - taxe carbone" + label = 'Dépenses sur les biens assujetis à la TVA à taux plein bis après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_tva_taux_plein = menage('depenses_tva_taux_plein', period) @@ -260,7 +260,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_reduit_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux reduit après réaction à la réforme - taxe carbone" + label = 'Dépenses sur les biens assujetis à la TVA à taux reduit après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_tva_taux_reduit = menage('depenses_tva_taux_reduit', period) @@ -275,7 +275,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_super_reduit_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses sur les biens assujetis à la TVA à taux super reduit après réaction à la réforme - taxe carbone" + label = 'Dépenses sur les biens assujetis à la TVA à taux super reduit après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_tva_taux_super_reduit = menage('depenses_tva_taux_super_reduit', period) @@ -288,22 +288,11 @@ def formula(menage, period, parameters): return depenses_tva_taux_super_reduit_ajustees class diesel_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal - - # If the parameter does not have a defined value, it returns None - majoration_ticpe_diesel = \ - parameters(period.start).imposition_indirecte.produits_energetiques.major_regionale_ticpe_gazole.alsace - - accise_diesel = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.gazole - - accise_diesel_ticpe = ( - accise_diesel + majoration_ticpe_diesel - if majoration_ticpe_diesel is not None - else accise_diesel - ) + accise_diesel_ticpe = get_accise_diesel_ticpe(parameters, period) reforme_diesel = parameters(period.start).taxe_carbone.diesel accise_diesel_ticpe_ajustee = accise_diesel_ticpe + reforme_diesel @@ -327,7 +316,7 @@ def formula(menage, period, parameters): return montant_diesel_ticpe_ajuste class emissions_CO2_carburants(YearlyVariable): - label = "Emissions de CO2 des ménages via leur consommation de carburants après réforme, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de carburants après réforme, en kg de CO2' # use_baseline =emissions_co2.emissions_CO2_carburants def formula(menage, period, parameters): @@ -372,7 +361,7 @@ def formula(menage, period, parameters): return emissions_ajustees class emissions_CO2_combustibles_liquides(YearlyVariable): - label = "Emissions de CO2 des ménages via leur consommation de fioul après réforme, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de fioul après réforme, en kg de CO2' def formula(menage, period, parameters): quantites_combustibles_liquides_ajustees = menage('quantites_combustibles_liquides', period) @@ -383,7 +372,7 @@ def formula(menage, period, parameters): return emissions_ajustees class emissions_CO2_gaz_ville(YearlyVariable): - label = "Emissions de CO2 des ménages via leur consommation de gaz après réforme, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de gaz après réforme, en kg de CO2' def formula(menage, period, parameters): quantites_gaz_ajustees = menage('quantites_gaz_final_ajustees_taxe_carbone', period) @@ -394,7 +383,7 @@ def formula(menage, period, parameters): return emissions_ajustees class essence_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme' definition_period = YEAR @@ -419,7 +408,7 @@ def formula_1990(menage, period, parameters): return essence_ticpe_ajustee class combustibles_liquides_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le fioul domestique après réforme - taxe carbone" + label = 'Calcul du montant de TICPE sur le fioul domestique après réforme - taxe carbone' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -447,7 +436,7 @@ def formula(menage, period, parameters): return montant_fioul_ticpe_ajuste class quantites_diesel(YearlyVariable): - label = "Quantités de diesel consommées après la réforme - taxe carbone " + label = 'Quantités de diesel consommées après la réforme - taxe carbone ' def formula(menage, period, parameters): depenses_diesel_ajustees_taxe_carbone = \ @@ -459,7 +448,7 @@ def formula(menage, period, parameters): return quantites_diesel_ajustees class quantites_combustibles_liquides(YearlyVariable): - label = "Quantités de fioul domestique consommées après la réforme - taxe carbone " + label = 'Quantités de fioul domestique consommées après la réforme - taxe carbone ' def formula(menage, period, parameters): depenses_combustibles_liquides_ajustees_taxe_carbone = \ @@ -474,12 +463,12 @@ def formula(menage, period, parameters): class quantites_gaz_final_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Quantités de gaz consommées après la réforme - taxe carbone" + label = 'Quantités de gaz consommées après la réforme - taxe carbone' def formula(menage, period, parameters): - depenses_gaz_ajustees_taxe_carbone = menage('depenses_gaz_ville_ajustees_taxe_carbone', period) + depenses_gaz_ville_ajustees_taxe_carbone = menage('depenses_gaz_ville_ajustees_taxe_carbone', period) depenses_gaz_tarif_fixe = menage('depenses_gaz_tarif_fixe', period) - depenses_gaz_ajustees_variables = depenses_gaz_ajustees_taxe_carbone - depenses_gaz_tarif_fixe + depenses_gaz_ajustees_variables = depenses_gaz_ville_ajustees_taxe_carbone - depenses_gaz_tarif_fixe depenses_gaz_prix_unitaire = menage('depenses_gaz_prix_unitaire', period) reforme_gaz = parameters(period.start).taxe_carbone.gaz @@ -514,7 +503,7 @@ def formula(menage, period, parameters): return quantites_electricite_ajustees class quantites_sp_e10(YearlyVariable): - label = "Quantités consommées de sans plomb e10 par les ménages après réforme - taxe carbone" + label = 'Quantités consommées de sans plomb E10 par les ménages après réforme - taxe carbone' def formula(menage, period, parameters): depenses_essence_ajustees_taxe_carbone = menage('depenses_essence_corrigees_ajustees_taxe_carbone', period) @@ -527,7 +516,7 @@ def formula(menage, period, parameters): return quantite_sp_e10 class quantites_sp95(YearlyVariable): - label = "Quantités consommées de sans plomb 95 par les ménages après réforme" + label = 'Quantités consommées de sans plomb 95 par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_ajustees_taxe_carbone = menage('depenses_essence_corrigees_ajustees_taxe_carbone', period) @@ -540,7 +529,7 @@ def formula(menage, period, parameters): return quantites_sp95_ajustees class quantites_sp98(YearlyVariable): - label = "Quantités consommées de sans plomb 98 par les ménages" + label = 'Quantités consommées de sans plomb 98 par les ménages' def formula(menage, period, parameters): depenses_essence_ajustees_taxe_carbone = menage('depenses_essence_corrigees_ajustees_taxe_carbone', period) @@ -553,7 +542,7 @@ def formula(menage, period, parameters): return quantites_sp98_ajustees class quantites_super_plombe(YearlyVariable): - label = "Quantités consommées de super plombé par les ménages après réforme" + label = 'Quantités consommées de super plombé par les ménages après réforme' def formula(menage, period): depenses_essence_ajustees_taxe_carbone = menage('depenses_essence_corrigees_ajustees_taxe_carbone', period) @@ -595,7 +584,7 @@ def formula_1990(menage, period): return quantites_essence_ajustees class sp_e10_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur le SP E10 après réforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après réforme' def formula(menage, period): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -631,7 +620,7 @@ def formula(menage, period): return montant_sp_e10_ticpe_ajuste class sp95_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le sp_95 après réforme" + label = 'Calcul du montant de TICPE sur le sp_95 après réforme' def formula(menage, period): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -666,7 +655,7 @@ def formula(menage, period): return montant_sp95_ticpe_ajuste class sp98_ticpe(YearlyVariable): - label = "Calcul du montant de TICPE sur le sp_98 après réforme" + label = 'Calcul du montant de TICPE sur le sp_98 après réforme' def formula(menage, period): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -702,7 +691,7 @@ def formula(menage, period): return montant_sp98_ticpe_ajuste class super_plombe_ticpe(YearlyVariable): - label = "Calcul du montant de la TICPE sur le super plombé après réforme" + label = 'Calcul du montant de la TICPE sur le super plombé après réforme' def formula(menage, period): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -747,7 +736,7 @@ def formula(menage, period): class taxe_gaz(YearlyVariable): value_type = float entity = Menage - label = "Recettes de la taxe carbone sur la consommation de gaz - ceteris paribus" + label = 'Recettes de la taxe carbone sur la consommation de gaz - ceteris paribus' # On considère que les contributions sur les taxes précédentes ne sont pas affectées def formula(menage, period): @@ -758,7 +747,7 @@ def formula(menage, period): return recettes_gaz class ticpe_totale(YearlyVariable): - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe', period) @@ -786,7 +775,7 @@ def formula(menage, period): return total class tva_taux_plein(YearlyVariable): - label = "Contribution sur la TVA à taux plein après réaction à la réforme - taxe carbone" + label = 'Contribution sur la TVA à taux plein après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_tva_taux_plein_ajustees = \ @@ -801,7 +790,7 @@ def formula(menage, period, parameters): class tva_taux_plein_bis(YearlyVariable): value_type = float entity = Menage - label = "Contribution sur la TVA à taux plein après réaction à la réforme - taxe carbone" + label = 'Contribution sur la TVA à taux plein après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_tva_taux_plein_ajustees = \ @@ -815,7 +804,7 @@ def formula(menage, period, parameters): return tax_from_expense_including_tax(depenses_tva_taux_plein_ajustees, nouveau_taux_plein) class tva_taux_reduit(YearlyVariable): - label = "Contribution sur la TVA à taux reduit après réaction à la réforme - taxe carbone" + label = 'Contribution sur la TVA à taux reduit après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_tva_taux_reduit_ajustees = \ @@ -829,7 +818,7 @@ def formula(menage, period, parameters): return tax_from_expense_including_tax(depenses_tva_taux_reduit_ajustees, nouveau_taux_reduit) class tva_taux_super_reduit(YearlyVariable): - label = "Contribution sur la TVA à taux super reduit après réaction à la réforme - taxe carbone" + label = 'Contribution sur la TVA à taux super reduit après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_tva_taux_super_reduit_ajustees = \ @@ -844,7 +833,7 @@ def formula(menage, period, parameters): tax_from_expense_including_tax(depenses_tva_taux_super_reduit_ajustees, nouveau_taux_super_reduit) class tva_total(YearlyVariable): - label = "Différence de contribution sur la TVA après réaction à la réforme - taxes carburants" + label = 'Différence de contribution sur la TVA après réaction à la réforme - taxes carburants' def formula(menage, period): taux_plein = menage('tva_taux_plein_bis', period) diff --git a/openfisca_france_indirect_taxation/scenarios.py b/openfisca_france_indirect_taxation/scenarios.py index 83e65617..9bade4a8 100644 --- a/openfisca_france_indirect_taxation/scenarios.py +++ b/openfisca_france_indirect_taxation/scenarios.py @@ -34,7 +34,7 @@ def init_single_entity(scenario, autres = None, axes = None, conjoint = None, en menage_nth.setdefault('enfants', []).append(id) count_so_far += len(group) - menages["m{}".format(nth)] = menage_nth + menages['m{}'.format(nth)] = menage_nth dict = { 'period': period, diff --git a/openfisca_france_indirect_taxation/scripts/build_coicop_bdf.py b/openfisca_france_indirect_taxation/scripts/build_coicop_bdf.py index fcc9c3b5..d1332ea9 100644 --- a/openfisca_france_indirect_taxation/scripts/build_coicop_bdf.py +++ b/openfisca_france_indirect_taxation/scripts/build_coicop_bdf.py @@ -85,12 +85,16 @@ def merge_with_coicop_nomenclature(data_frame): df2 = coicop_nomenclature.merge(remaining_data_frame, on = 'code_coicop', how = 'outer', sort = True) - result = df1.append(df2, ignore_index = True) + result = pandas.concat([df1, df2], ignore_index = True) result = result.loc[~(result.poste_coicop.duplicated(keep = False) & result.label.isnull())].copy() - result = result.append( - coicop_nomenclature.loc[ - ~coicop_nomenclature.poste_coicop.isin(result.poste_coicop.unique())], + result = pandas.concat( + [ + result, + coicop_nomenclature.loc[ + ~coicop_nomenclature.poste_coicop.isin(result.poste_coicop.unique()) + ], + ], sort = True, ) result = result[[ @@ -217,7 +221,7 @@ def test_coicop_to_legislation(data_frame, adjust_coicop, year): '03.2.1.3': '03.2.1.1.3', # chaussures pour enfants '03.2.2.1': '03.2.1.2.3', # Réparation de chaussures '03.3.1.1': '03.3.1', # Autres dépenses d'habillement : cérémonie, séjours hors domicile, personnes viva - '03.3.1.2': '03.3.2', # Autres dépenses d'habillement : cadeau offert (à destination d'un autre ménage) + '03.3.1.2': '03.3.2', # Autres dépenses d'habillement : cadeau offert (à destination d'un autre ménage) '04.1.1.1': '04.1.1.1.1', # loyer en résidence principale '04.1.2.1': '04.1.1.2.1', # loyer autres résidence '04.3.1.1': '04.3.1.1.1', # Produits destinés aux travaux courants d’entretien et de réparation du logement @@ -275,7 +279,7 @@ def test_coicop_to_legislation(data_frame, adjust_coicop, year): '06.2.3.1': '06.2.3.1.1', # Services des laboratoires d’analyse médicale et des cabinets de radiologie '06.2.3.2': '06.2.3.1.2', # Services des auxiliaires médicaux (infirmier, kiné, laboratoire, etc.) '06.2.3.3': '06.2.3.1.3', # Services extra hospitaliers (ambulance, location matériel) - '06.3.1.1': '06.3', # Services et soins hospitaliers' + '06.3.1.1': '06.3', # Services et soins hospitaliers' '06.4.1.1': '06.4.1', # Autres dépenses de santé : personnes vivant hors du domicile au moins un jour pa '06.4.1.2': '06.4.2', # Autres dépenses de santé : cadeau offert (à destination d’un autre ménage) '07.1.1.1': '07.1.1.1.1', # Achats d'automobiles neuves diff --git a/openfisca_france_indirect_taxation/scripts/build_coicop_legislation.py b/openfisca_france_indirect_taxation/scripts/build_coicop_legislation.py index 7806500f..5d89da0d 100644 --- a/openfisca_france_indirect_taxation/scripts/build_coicop_legislation.py +++ b/openfisca_france_indirect_taxation/scripts/build_coicop_legislation.py @@ -92,7 +92,7 @@ def apply_modification(coicop_nomenclature = None, value = None, categorie_fisca origin = None, start = 1994, stop = 2014, label = ''): assert coicop_nomenclature is not None assert categorie_fiscale in list(taxe_by_categorie_fiscale_number.values()) - assert 1994 <= start < stop <= 2014, "Invalid start={} and/or stop={}".format(start, stop) + assert 1994 <= start < stop <= 2014, 'Invalid start={} and/or stop={}'.format(start, stop) if isinstance(value, int): value_str = '0' + str(value) if value < 10 else str(value) @@ -649,7 +649,7 @@ def test_coicop_legislation(): return coicop_nomenclature.loc[coicop_nomenclature.categorie_fiscale.isnull()] -if __name__ == "__main__": +if __name__ == '__main__': # extract_informations_from_coicop_to_categorie_fiscale() coicop_nomenclature = build_coicop_nomenclature.build_complete_coicop_nomenclature() coicop_nomenclature = add_fiscal_categories_to_coicop_nomenclature(coicop_nomenclature, to_csv = True) diff --git a/openfisca_france_indirect_taxation/scripts/build_coicop_nomenclature.py b/openfisca_france_indirect_taxation/scripts/build_coicop_nomenclature.py index 5038268f..c42f56a5 100644 --- a/openfisca_france_indirect_taxation/scripts/build_coicop_nomenclature.py +++ b/openfisca_france_indirect_taxation/scripts/build_coicop_nomenclature.py @@ -40,15 +40,15 @@ def build_complete_coicop_nomenclature(to_csv = True): coicop_nomenclature = build_raw_coicop_nomenclature() items = [ - ("Cigares et cigarillos", "02.2.1"), - ("Cigarettes", "02.2.2"), - ("Tabac sous d'autres formes et produits connexes", "02.2.3"), - ("Stupéfiants ", "02.3"), + ('Cigares et cigarillos', '02.2.1'), + ('Cigarettes', '02.2.2'), + ("Tabac sous d'autres formes et produits connexes", '02.2.3'), + ('Stupéfiants ', '02.3'), ] for label_poste, code_coicop in items: - label_division = "Boissons alcoolisées et tabac" - label_groupe = "Tabac" + label_division = 'Boissons alcoolisées et tabac' + label_groupe = 'Tabac' label_classe = label_sous_classe = label_poste data = dict( label_division = [label_division], @@ -58,11 +58,11 @@ def build_complete_coicop_nomenclature(to_csv = True): label_poste = [label_poste], code_coicop = [code_coicop], ) - coicop_nomenclature = coicop_nomenclature.append( - pd.DataFrame.from_dict(data, dtype = 'str'), + coicop_nomenclature = pd.concat( + [coicop_nomenclature, pd.DataFrame.from_dict(data, dtype = 'str')], ignore_index = True ) - coicop_nomenclature.sort_values("code_coicop", inplace = True) + coicop_nomenclature.sort_values('code_coicop', inplace = True) if to_csv: coicop_nomenclature.to_csv( @@ -73,6 +73,6 @@ def build_complete_coicop_nomenclature(to_csv = True): 'label_sous_classe', 'label_poste', 'code_coicop']].copy() -if __name__ == "__main__": +if __name__ == '__main__': coicop_nomenclature = build_complete_coicop_nomenclature(False) print(coicop_nomenclature.dtypes) diff --git a/openfisca_france_indirect_taxation/scripts/build_ponderation_conso_carburants.py b/openfisca_france_indirect_taxation/scripts/build_ponderation_conso_carburants.py index a9688e92..6b78f8df 100755 --- a/openfisca_france_indirect_taxation/scripts/build_ponderation_conso_carburants.py +++ b/openfisca_france_indirect_taxation/scripts/build_ponderation_conso_carburants.py @@ -15,7 +15,7 @@ parc_annuel_moyen_vp['check'] = \ parc_annuel_moyen_vp['dont essence'] + parc_annuel_moyen_vp['dont Diesel'] - parc_annuel_moyen_vp['Total'] -assert (parc_annuel_moyen_vp['check'] == 0).any(), "sum of diesel and super is not equal to total" +assert (parc_annuel_moyen_vp['check'] == 0).any(), 'sum of diesel and super is not equal to total' del parc_annuel_moyen_vp['Total'] del parc_annuel_moyen_vp['check'] parc_annuel_moyen_vp.columns = ['essence', 'diesel'] diff --git a/openfisca_france_indirect_taxation/scripts/build_prix_carburants_yaml.py b/openfisca_france_indirect_taxation/scripts/build_prix_carburants_yaml.py index 19c22d40..4836eba8 100755 --- a/openfisca_france_indirect_taxation/scripts/build_prix_carburants_yaml.py +++ b/openfisca_france_indirect_taxation/scripts/build_prix_carburants_yaml.py @@ -1,16 +1,15 @@ # -*- coding: utf-8 -*- -""" +''' Create yaml files for prix_carburants -""" +''' import os import pandas as pd -import pkg_resources from ruamel import yaml - +from openfisca_france_indirect_taxation.location import openfisca_france_indirect_taxation_location from openfisca_france_indirect_taxation.utils import assets_directory @@ -21,7 +20,7 @@ ) output_file_path = os.path.join( - pkg_resources.get_distribution('openfisca-france-indirect-taxation').location, + openfisca_france_indirect_taxation_location, 'openfisca_france_indirect_taxation', 'parameters', 'imposition_indirecte', @@ -29,8 +28,8 @@ ) df = pd.read_csv(file_path) -date = df.Date.str.split("/", n = 1, expand = True) -date[1] = date[1].where(date[1].str.len() == 2, "0" + date[1]) +date = df.Date.str.split('/', n = 1, expand = True) +date[1] = date[1].where(date[1].str.len() == 2, '0' + date[1]) date['date'] = date[0] + '-' + date[1] + '-01' df['date'] = date['date'] df.drop(columns = ['Date'], inplace = True) diff --git a/openfisca_france_indirect_taxation/scripts/build_survey_data.py b/openfisca_france_indirect_taxation/scripts/build_survey_data.py index 20d789c2..6ac17d50 100644 --- a/openfisca_france_indirect_taxation/scripts/build_survey_data.py +++ b/openfisca_france_indirect_taxation/scripts/build_survey_data.py @@ -1,4 +1,4 @@ -"""Build survey data.""" +'''Build survey data.''' import argparse @@ -23,9 +23,9 @@ def main(): parser = argparse.ArgumentParser() all_years = [2011, 2017] parser.add_argument('-y', '--years', nargs='+', help = "years of survey to build (default = {})'".format(all_years), default = all_years) - parser.add_argument('-v', '--verbose', action = 'store_true', default = False, help = "increase output verbosity") - parser.add_argument('-p', '--pdb', action = 'store_true', default = False, help = "use python debugger") - parser.add_argument('-s', '--skip-matching', action = 'store_true', default = False, help = "skip matching step") + parser.add_argument('-v', '--verbose', action = 'store_true', default = False, help = 'increase output verbosity') + parser.add_argument('-d', '--debug', action = 'store_true', default = False, help = 'use python debugger') + parser.add_argument('-s', '--skip-matching', action = 'store_true', default = False, help = 'skip matching step') args = parser.parse_args() logging.basicConfig(level = logging.DEBUG if args.verbose else logging.WARNING, stream = sys.stdout) @@ -36,13 +36,13 @@ def main(): try: run(years_calage, skip_matching = args.skip_matching) except Exception as e: - if args.pdb: + if args.debug: pdb.post_mortem(sys.exc_info()[2]) raise e - log.info("The program has been executed in {}".format(datetime.datetime.now() - start_time)) + log.info('The program has been executed in {}'.format(datetime.datetime.now() - start_time)) return 0 -if __name__ == "__main__": +if __name__ == '__main__': sys.exit(main()) diff --git a/openfisca_france_indirect_taxation/scripts/build_survey_data_collection.py b/openfisca_france_indirect_taxation/scripts/build_survey_data_collection.py index 1ef029ad..a6c01b11 100644 --- a/openfisca_france_indirect_taxation/scripts/build_survey_data_collection.py +++ b/openfisca_france_indirect_taxation/scripts/build_survey_data_collection.py @@ -5,24 +5,24 @@ import datetime import logging import os -import pkg_resources import sys - +from openfisca_france_indirect_taxation.location import openfisca_france_indirect_taxation_location from openfisca_survey_manager.scripts.build_collection import build_survey_collection + app_name = os.path.splitext(os.path.basename(__file__))[0] log = logging.getLogger(app_name) raw_data_ini = os.path.join( - pkg_resources.get_distribution('openfisca_survey_manager').location, + openfisca_france_indirect_taxation_location, 'raw_data.ini' ) def main(): parser = argparse.ArgumentParser() - parser.add_argument('config', default = raw_data_ini, help = "path of configuration file", nargs = '?') + parser.add_argument('config', default = raw_data_ini, help = 'path of configuration file', nargs = '?') parser.add_argument( '-c', '--collection', help = "name of collection to build or update ('budget_des_familles', 'aliss' or 'both')", @@ -30,10 +30,10 @@ def main(): default = 'both', ) parser.add_argument('-d', '--replace-data', action = 'store_true', default = True, - help = "erase existing survey data HDF5 file (instead of failing when HDF5 file already exists)") + help = 'erase existing survey data HDF5 file (instead of failing when HDF5 file already exists)') parser.add_argument('-m', '--replace-metadata', action = 'store_true', default = True, - help = "erase existing collection metadata JSON file (instead of just adding new surveys)") - parser.add_argument('-v', '--verbose', action = 'store_true', default = False, help = "increase output verbosity") + help = 'erase existing collection metadata JSON file (instead of just adding new surveys)') + parser.add_argument('-v', '--verbose', action = 'store_true', default = False, help = 'increase output verbosity') args = parser.parse_args() logging.basicConfig(level = logging.DEBUG if args.verbose else logging.WARNING, stream = sys.stdout) @@ -61,10 +61,10 @@ def main(): source_format = 'sas', ) - log.info("The program has been executed in {}".format(datetime.datetime.now() - start_time)) + log.info('The program has been executed in {}'.format(datetime.datetime.now() - start_time)) return 0 -if __name__ == "__main__": +if __name__ == '__main__': sys.exit(main()) diff --git a/openfisca_france_indirect_taxation/scripts/normalize_string_quotes.py b/openfisca_france_indirect_taxation/scripts/normalize_string_quotes.py new file mode 100755 index 00000000..c864f6a3 --- /dev/null +++ b/openfisca_france_indirect_taxation/scripts/normalize_string_quotes.py @@ -0,0 +1,45 @@ +#! /usr/bin/env python + +import os +import re +import tokenize + + +DOUBLE_QUOTE_DOCSTRING_RE = re.compile( + r'''^(?P[furbFURB]*)"""(?P.*?)"""$''', + re.DOTALL) +DOUBLE_QUOTE_STRING_RE = re.compile( + r'''^(?P[furbFURB]*)"(?P[^']*)"$''') +# SINGLE_QUOTE_DOCSTRING_RE = re.compile( +# r"""^(?P[furbFURB]*)'''(?P.*?)'''$""", +# re.DOTALL) +# SINGLE_QUOTE_STRING_RE = re.compile( +# r"""^(?P[furbFURB]*)'(?P[^"]*)'$""") + + +def iterate_tokens(file_path): + with open(file_path, encoding='utf-8') as python_file: + for token in tokenize.generate_tokens(python_file.readline): + if token.type == tokenize.STRING: + token = token._replace(string=DOUBLE_QUOTE_DOCSTRING_RE.sub( + "\g'''\g'''", # noqa: W605 + token.string)) + token = token._replace(string=DOUBLE_QUOTE_STRING_RE.sub( + "\g'\g'", # noqa: W605 + token.string)) + yield token + + +project_dir = os.path.dirname(os.path.dirname(os.path.dirname( + os.path.abspath(__file__)))) +for path, dirs, files in os.walk(project_dir): + for dir in dirs: + if dir.startswith('.') and dir != '.github': + dirs.remove(dir) + for file in files: + if file.startswith('.') or not file.endswith('.py'): + continue + file_path = os.path.join(path, file) + normalized_source_code = tokenize.untokenize(iterate_tokens(file_path)) + with open(file_path, 'w', encoding='utf-8') as python_file: + python_file.write(normalized_source_code) diff --git a/openfisca_france_indirect_taxation/scripts/read_aliss_elasticites.py b/openfisca_france_indirect_taxation/scripts/read_aliss_elasticites.py index e133f81c..ece0be33 100644 --- a/openfisca_france_indirect_taxation/scripts/read_aliss_elasticites.py +++ b/openfisca_france_indirect_taxation/scripts/read_aliss_elasticites.py @@ -25,7 +25,7 @@ revenus = None, skiprows = 4, sheetname = 'B.3', - parse_cols = "C:T", + parse_cols = 'C:T', name = 'Food Expenditure Elasticities' ), dict( @@ -33,7 +33,7 @@ revenus = None, skiprows = 6, sheetname = 'B.4', - parse_cols = "B:Y", + parse_cols = 'B:Y', name = 'Compensated Own-Price and Cross-Price Elasticities -- Full sample' ), dict( @@ -41,7 +41,7 @@ revenus = 3, skiprows = 5, sheetname = 'B5', - parse_cols = "B:Y", + parse_cols = 'B:Y', name = 'Compensated Own-Price and Cross-Price Elasticities -- Well off and less than 30 years old' ), dict( @@ -49,7 +49,7 @@ revenus = 3, skiprows = 4, sheetname = 'B6', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Well off and aged between 30 and 45' ), dict( @@ -57,7 +57,7 @@ revenus = 3, skiprows = 5, sheetname = 'B7', - parse_cols = "B:Y", + parse_cols = 'B:Y', name = 'Compensated Own-Price and Cross-Price Elasticities -- Well off and aged between 45 and 60' ), dict( @@ -65,7 +65,7 @@ revenus = 3, skiprows = 4, sheetname = 'B8', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Well off and more than 60' ), dict( @@ -73,7 +73,7 @@ revenus = 2, skiprows = 5, sheetname = 'B9', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Upper average and less than 30 years old' ), dict( @@ -81,7 +81,7 @@ revenus = 2, skiprows = 5, sheetname = 'B10', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Upper average and aged between 30 and 45' ), dict( @@ -89,7 +89,7 @@ revenus = 2, skiprows = 4, sheetname = 'B11', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Upper average and aged between 45 and 60' ), dict( @@ -97,7 +97,7 @@ revenus = 2, skiprows = 4, sheetname = 'B12', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Upper average and aged more than 60' ), dict( @@ -105,7 +105,7 @@ revenus = 1, skiprows = 4, sheetname = 'B13', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Lower average and less than 30 years old' ), dict( @@ -113,7 +113,7 @@ revenus = 1, skiprows = 4, sheetname = 'B14', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Lower average and aged between 30 and 45' ), dict( @@ -121,7 +121,7 @@ revenus = 1, skiprows = 4, sheetname = 'B15', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Lower average and aged between 45 and 60' ), dict( @@ -129,7 +129,7 @@ revenus = 1, skiprows = 4, sheetname = 'B16', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Lower average and aged more than 60' ), dict( @@ -137,7 +137,7 @@ revenus = 0, skiprows = 4, sheetname = 'B17', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Modest and less than 30 years old' ), dict( @@ -145,7 +145,7 @@ revenus = 0, skiprows = 4, sheetname = 'B18', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Modest and aged between 30 and 45' ), dict( @@ -153,7 +153,7 @@ revenus = 0, skiprows = 4, sheetname = 'B19', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Modest and aged between 45 and 60' ), dict( @@ -161,7 +161,7 @@ revenus = 0, skiprows = 4, sheetname = 'B20', - parse_cols = "C:Z", + parse_cols = 'C:Z', name = 'Compensated Own-Price and Cross-Price Elasticities -- Modest and aged more than 60' ), ] diff --git a/openfisca_france_indirect_taxation/surveys.py b/openfisca_france_indirect_taxation/surveys.py index 9c0a9878..b082099b 100644 --- a/openfisca_france_indirect_taxation/surveys.py +++ b/openfisca_france_indirect_taxation/surveys.py @@ -28,7 +28,7 @@ def create(cls, calibration_kwargs = None, data_year = None, elasticities = None assert year is not None if reform is None: - assert baseline_tax_benefit_system is None, "No need of reference_tax_benefit_system if no reform" + assert baseline_tax_benefit_system is None, 'No need of reference_tax_benefit_system if no reform' if tax_benefit_system is None: tax_benefit_system = FranceIndirectTaxationTaxBenefitSystem() else: @@ -53,7 +53,7 @@ def create(cls, calibration_kwargs = None, data_year = None, elasticities = None if elasticities is not None: assert 'ident_men' in elasticities.columns input_data_frame['ident_men'] = input_data_frame.ident_men.astype(numpy.int64) - input_data_frame = input_data_frame.merge(elasticities, how = "left", on = 'ident_men') + input_data_frame = input_data_frame.merge(elasticities, how = 'left', on = 'ident_men') for col in elasticities.columns: assert col in input_data_frame.columns diff --git a/openfisca_france_indirect_taxation/tests/budgets/budget_2019.py b/openfisca_france_indirect_taxation/tests/budgets/budget_2019.py index 304185b7..c4c544ec 100644 --- a/openfisca_france_indirect_taxation/tests/budgets/budget_2019.py +++ b/openfisca_france_indirect_taxation/tests/budgets/budget_2019.py @@ -4,10 +4,9 @@ # import numpy as np # import os # import pandas as pd -# import pkg_resources # import pytest - +# from openfisca_france_indirect_taxation.location import openfisca_france_indirect_taxation_location # from openfisca_france_indirect_taxation.projects.budgets.simul_reformes_tabac import simulate_reforme_tabac # from openfisca_france_indirect_taxation.projects.budgets.simul_reformes_energie import simulate_reformes_energie # from openfisca_france_indirect_taxation.assets.tests.resultats_reformes_energie_thomas_initial import results @@ -22,7 +21,7 @@ # if baseline_year == '2018': # reforme = "2019" # test_assets_directory = os.path.join( -# pkg_resources.get_distribution('openfisca_france_indirect_taxation').location, +# openfisca_france_indirect_taxation_location, # 'openfisca_france_indirect_taxation', # 'assets', # 'tests' diff --git a/openfisca_france_indirect_taxation/tests/budgets/budget_2020.py b/openfisca_france_indirect_taxation/tests/budgets/budget_2020.py index da2b05ac..a89a50c6 100644 --- a/openfisca_france_indirect_taxation/tests/budgets/budget_2020.py +++ b/openfisca_france_indirect_taxation/tests/budgets/budget_2020.py @@ -4,10 +4,9 @@ # import numpy as np # import os # import pandas as pd -# import pkg_resources # import pytest - +# from openfisca_france_indirect_taxation.location import openfisca_france_indirect_taxation_location # from openfisca_france_indirect_taxation.projects.budgets.simul_reformes_tabac import simulate_reforme_tabac @@ -20,7 +19,7 @@ # if baseline_year == '2019': # reforme = "2020" # test_assets_directory = os.path.join( -# pkg_resources.get_distribution('openfisca_france_indirect_taxation').location, +# openfisca_france_indirect_taxation_location, # 'openfisca_france_indirect_taxation', # 'assets', # 'tests' diff --git a/openfisca_france_indirect_taxation/tests/formulas/depense_carburants_ht.yaml b/openfisca_france_indirect_taxation/tests/formulas/depense_carburants_ht.yaml new file mode 100644 index 00000000..11df7192 --- /dev/null +++ b/openfisca_france_indirect_taxation/tests/formulas/depense_carburants_ht.yaml @@ -0,0 +1,128 @@ +# dépense gazole HT: + +## dépense gazole HT: + +- name: "Test depense_gazole_b7_ht" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b7: 100 + prix_gazole_b7_ht: 2.0 + output: + depense_gazole_b7_ht: 200 + +## dépense gazole HT: + +- name: "Test depense_gazole_b10_ht" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b10: 100 + prix_gazole_b10_ht: 2.0 + output: + depense_gazole_b10_ht: 200 + +## dépense total gazole HT + +- name: "Test depense_gazole_total_ht" + period: 2022 + absolute_error_margin: .01 + input: + depense_gazole_b7_ht: 200 + depense_gazole_b10_ht: 200 + output: + depense_gazole_total_ht: 400 + +# dépense essence HT + +## dépense essence SP95 E10 HT + +- name: "Test depense_essence_sp95_e10_ht" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp95_e10: 100 + prix_essence_sp95_e10_ht: 2.0 + output: + depense_essence_sp95_e10_ht: 200 + +## dépense essence SP95 HT + +- name: "Test depense_essence_sp95_ht" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp95: 100 + prix_essence_sp95_ht: 2.0 + output: + depense_essence_sp95_ht: 200 + +## dépense essence SP98 HT + +- name: "Test depense_essence_sp98_ht" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp98: 100 + prix_essence_sp98_ht: 2.0 + output: + depense_essence_sp98_ht: 200 + +## dépense essence super plombé HT + +- name: "Test depense_essence_super_plombe_ht" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_super_plombe: 100 + prix_essence_super_plombe_ht: 2.0 + output: + depense_essence_super_plombe_ht: 0 + +## dépense essence E85 HT + +- name: "Test depense_essence_e85_ht" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_e85: 100 + prix_essence_e85_ht: 2.0 + output: + depense_essence_e85_ht: 200 + +## dépense total essence HT + +- name: "Test depense_essence_total_ht" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp95_e10_ht: 200 + depense_essence_sp95_ht: 200 + depense_essence_sp98_ht: 200 + depense_essence_super_plombe_ht: 200 + depense_essence_e85_ht: 200 + output: + depense_essence_total_ht: 800 + +# dépense GPL HT + +- name: "Test depense_gpl_carburant_ht" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gpl_carburant: 100 + prix_gpl_carburant_ht: 2.0 + output: + depense_gpl_carburant_ht: 200 + + # TVA total carburant + +- name: "Test depense_carburant_total_ht" + period: 2022 + absolute_error_margin: .01 + input: + depense_gazole_total_ht: 400 + depense_essence_total_ht: 800 + depense_gpl_carburant_ht: 200 + output: + depense_carburant_total_ht: 1400 \ No newline at end of file diff --git a/openfisca_france_indirect_taxation/tests/formulas/depense_carburants_ttc.yaml b/openfisca_france_indirect_taxation/tests/formulas/depense_carburants_ttc.yaml new file mode 100644 index 00000000..d69f4544 --- /dev/null +++ b/openfisca_france_indirect_taxation/tests/formulas/depense_carburants_ttc.yaml @@ -0,0 +1,152 @@ +# dépense carburant gazole TTC: + +## dépense gazole B7 TTC: + +- name: "Test depense_gazole_b7_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_gazole_b7_ht: 80 + gazole_b7_ticpe: 20 + tva_sur_gazole_b7: 20 + output: + depense_gazole_b7_ttc: 120 + +## dépense gazole B10 TTC: + +- name: "Test depense_gazole_b10_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_gazole_b10_ht: 80 + gazole_b10_ticpe: 20 + tva_sur_gazole_b10: 20 + output: + depense_gazole_b10_ttc: 120 + +## dépense gazole total TTC: + +- name: "Test depense_gazole_total_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_gazole_b7_ttc: 1 + depense_gazole_b10_ttc: 1 + output: + depense_gazole_total_ttc: 2 + + +# dépense essence TTC: + +## dépense essence SP95 E10 TTC: + +- name: "Test depense_essence_sp95_e10_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_essence_sp95_e10_ht: 80 + essence_sp95_e10_ticpe: 20 + tva_sur_essence_sp95_e10: 20 + output: + depense_essence_sp95_e10_ttc: 120 + +## dépense essence SP95 TTC: + +- name: "Test depense_essence_sp95_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_essence_sp95_ht: 80 + essence_sp95_ticpe: 20 + tva_sur_essence_sp95: 20 + output: + depense_essence_sp95_ttc: 120 + +## dépense essence SP98 TTC: + +- name: "Test depense_essence_sp98_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_essence_sp98_ht: 80 + essence_sp98_ticpe: 20 + tva_sur_essence_sp98: 20 + output: + depense_essence_sp98_ttc: 120 + +## dépense essence super plombe TTC: + +- name: "Test depense_essence_super_plombe_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_essence_super_plombe_ht: 80 + essence_super_plombe_ticpe: 20 + tva_sur_essence_super_plombe: 20 + output: + depense_essence_super_plombe_ttc: 0 + +## dépense essence E85 TTC: + +- name: "Test depense_essence_e85_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_essence_e85_ht: 80 + essence_e85_ticpe: 20 + tva_sur_essence_e85: 20 + output: + depense_essence_e85_ttc: 120 + +## dépense essence total TTC + +- name: "Test depense_essence_total_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_essence_sp95_e10_ttc: 1 + depense_essence_sp95_ttc: 1 + depense_essence_sp98_ttc: 1 + depense_essence_super_plombe_ttc: 1 + depense_essence_e85_ttc: 1 + output: + depense_essence_total_ttc: 4 + +# dépense GPL TTC: + +- name: "Test depense_gpl_carburant_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_gpl_carburant_ht: 80 + gpl_carburant_ticpe: 20 + tva_sur_gpl_carburant: 20 + output: + depense_gpl_carburant_ttc: 120 + +# dépense carburant total + +- name: "Test depense_carburant_total_ttc" + period: 2021 + absolute_error_margin: .01 + input: + depense_gazole_total_ttc: 1 + depense_essence_total_ttc: 1 + depense_gpl_carburant_ttc: 1 + output: + depense_carburant_total_ttc: 3 + +- name: "Test depense_carburant_total_ttc_sans_distinction" + period: 2021 + absolute_error_margin: .01 + input: + depense_gazole_b7_ttc: 1 + depense_gazole_b10_ttc: 1 + depense_essence_sp95_e10_ttc: 1 + depense_essence_sp95_ttc: 1 + depense_essence_sp98_ttc: 1 + depense_essence_super_plombe_ttc: 1 + depense_essence_e85_ttc: 1 + depense_gpl_carburant_ttc: 1 + output: + depense_carburant_total_ttc_sans_distinction: 7 diff --git a/openfisca_france_indirect_taxation/tests/formulas/litre_carburants.yaml b/openfisca_france_indirect_taxation/tests/formulas/litre_carburants.yaml new file mode 100644 index 00000000..759ebc06 --- /dev/null +++ b/openfisca_france_indirect_taxation/tests/formulas/litre_carburants.yaml @@ -0,0 +1,201 @@ +# nombre litres carburant gazole: + +## nombre litres gazole B7: + +- name: "Test nombre_litres_gazole_b7" + period: 2022 + absolute_error_margin: .01 + input: + depense_gazole_b7_ttc_entree: 149.88 + prix_gazole_b7_ttc: 1.4988 + output: + nombre_litres_gazole_b7: 100 + +- name: "Test nombre_litres_gazole_b7" + period: 2022 + absolute_error_margin: .01 + input: + depense_gazole_b7_ttc_entree: 149.88 + prix_gazole_b7_ttc: 0 + output: + nombre_litres_gazole_b7: 0 + +## nombre litres gazole B10: + +- name: "Test nombre_litres_gazole_b10" + period: 2022 + absolute_error_margin: .01 + input: + depense_gazole_b10_ttc_entree: 149.88 + prix_gazole_b10_ttc: 1.4988 + output: + nombre_litres_gazole_b10: 100 + +- name: "Test nombre_litres_gazole_b10" + period: 2022 + absolute_error_margin: .01 + input: + depense_gazole_b10_ttc_entree: 149.88 + prix_gazole_b10_ttc: 0 + output: + nombre_litres_gazole_b10: 0 + +## nombre litres gazole total: + +- name: "Test nombre_litres_gazole_total" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b7: 1 + nombre_litres_gazole_b10: 1 + output: + nombre_litres_gazole_total: 2 + + +# nombre litres essence: + +## nombre litres essence SP95 E10: + +- name: "Test nombre_litres_essence_sp95_e10" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp95_e10_ttc_entree: 100 + prix_essence_sp95_e10_ttc: 1.0 + output: + nombre_litres_essence_sp95_e10: 100 + +- name: "Test nombre_litres_essence_sp95_e10" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp95_e10_ttc_entree: 100 + prix_essence_sp95_e10_ttc: 0 + output: + nombre_litres_essence_sp95_e10: 0 + +## nombre litres essence SP95: + +- name: "Test nombre_litres_essence_sp95" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp95_ttc_entree: 100 + prix_essence_sp95_ttc: 1.0 + output: + nombre_litres_essence_sp95: 100 + +- name: "Test nombre_litres_essence_sp95" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp95_ttc_entree: 100 + prix_essence_sp95_ttc: 0 + output: + nombre_litres_essence_sp95: 0 + +## nombre litres essence SP98: + +- name: "Test nombre_litres_essence_sp98" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp98_ttc_entree: 100 + prix_essence_sp98_ttc: 1.0 + output: + nombre_litres_essence_sp98: 100 + +- name: "Test nombre_litres_essence_sp98" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp98_ttc_entree: 100 + prix_essence_sp98_ttc: 0 + output: + nombre_litres_essence_sp98: 0 + +## nombre litres essence super plombe: + +- name: "Test nombre_litres_essence_super_plombe" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_super_plombe_ttc_entree: 100 + prix_essence_super_plombe_ttc: 1.0 + output: + nombre_litres_essence_super_plombe: 0 + +- name: "Test nombre_litres_essence_super_plombe" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_super_plombe_ttc_entree: 100 + prix_essence_super_plombe_ttc: 0 + output: + nombre_litres_essence_super_plombe: 0 + +## nombre litres essence E85: + +- name: "Test nombre_litres_essence_e85" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_e85_ttc_entree: 100 + prix_essence_e85_ttc: 1.0 + output: + nombre_litres_essence_e85: 100 + +- name: "Test nombre_litres_essence_e85" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_e85_ttc_entree: 100 + prix_essence_e85_ttc: 0 + output: + nombre_litres_essence_e85: 0 + +## nombre litres essence total: + +- name: "Test nombre_litres_essence_total" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp95_e10: 1 + nombre_litres_essence_sp95: 1 + nombre_litres_essence_sp98: 1 + nombre_litres_essence_super_plombe: 1 + nombre_litres_essence_e85: 1 + output: + nombre_litres_essence_total: 4 + +# nombre litres GPL: + +- name: "Test nombre_litres_gpl_carburant" + period: 2022 + absolute_error_margin: .01 + input: + depense_gpl_carburant_ttc_entree: 100 + prix_gpl_carburant_ttc: 1.0 + output: + nombre_litres_gpl_carburant: 100 + +- name: "Test nombre_litres_gpl_carburant" + period: 2022 + absolute_error_margin: .01 + input: + depense_gpl_carburant_ttc_entree: 100 + prix_gpl_carburant_ttc: 0 + output: + nombre_litres_gpl_carburant: 0 + +# nombre litres carburant total: + +- name: "Test nombre_litres_total" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_total: 1 + nombre_litres_essence_total: 1 + nombre_litres_gpl_carburant: 1 + output: + nombre_litres_total: 3 \ No newline at end of file diff --git a/openfisca_france_indirect_taxation/tests/formulas/prix_carburants_ht.yaml b/openfisca_france_indirect_taxation/tests/formulas/prix_carburants_ht.yaml new file mode 100644 index 00000000..8bf3072e --- /dev/null +++ b/openfisca_france_indirect_taxation/tests/formulas/prix_carburants_ht.yaml @@ -0,0 +1,236 @@ +# prix carburant gazole HT: + +## prix gazole B7 HT: + +- name: "Test prix_gazole_b7_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_gazole_b7_ttc: 1.4988 + output: + prix_gazole_b7_ht: 0.6226 + +- name: "Test prix_gazole_b7_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_gazole_b7_ttc: 1.4418 + output: + prix_gazole_b7_ht: 0.594 + +- name: "Test prix_gazole_b7_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_gazole_b7_ttc: 1.5504 + output: + prix_gazole_b7_ht: 0.698 + +## prix gazole B10 HT: + +- name: "Test prix_gazole_b10_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_gazole_b10_ttc: 1.4988 + output: + prix_gazole_b10_ht: 0.655 + +- name: "Test prix_gazole_b10_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_gazole_b10_ttc: 1.4418 + output: + prix_gazole_b10_ht: 0.6075 + +- name: "Test prix_gazole_b10_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_gazole_b10_ttc: 1.5504 + output: + prix_gazole_b10_ht: 0.698 + +# prix essence HT: + +## prix essence SP95 E10 HT: + +- name: "Test prix_essence_sp95_e10_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_sp95_e10_ttc: 1.5844 + output: + prix_essence_sp95_e10_ht: 0.634 + +- name: "Test prix_essence_sp95_e10_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_sp95_e10_ttc: 1.5382 + output: + prix_essence_sp95_e10_ht: 0.6116 + +- name: "Test prix_essence_sp95_e10_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_sp95_e10_ttc: 1.6208 + output: + prix_essence_sp95_e10_ht: 0.6977 + +## prix essence SP95 HT: + +- name: "Test prix_essence_sp95_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_sp95_ttc: 1.5794 + output: + prix_essence_sp95_ht: 0.6157 + +- name: "Test prix_essence_sp95_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_sp95_ttc: 1.5632 + output: + prix_essence_sp95_ht: 0.6124 + +- name: "Test prix_essence_sp95_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_sp95_ttc: 1.6567 + output: + prix_essence_sp95_ht: 0.7076 + +## prix essence SP98 HT: + +- name: "Test prix_essence_sp98_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_sp98_ttc: 1.6748 + output: + prix_essence_sp98_ht: 0.6952 + +- name: "Test prix_essence_sp98_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_sp98_ttc: 1.620 + output: + prix_essence_sp98_ht: 0.6598 + +- name: "Test prix_essence_sp98_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_sp98_ttc: 1.5933 + output: + prix_essence_sp98_ht: 0.6548 + +## prix essence super plombe HT: + +- name: "Test prix_essence_super_plombe_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_super_plombe_ttc: 0.0 + output: + prix_essence_super_plombe_ht: 0.0 + +- name: "Test prix_essence_super_plombe_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_super_plombe_ttc: 0.0 + output: + prix_essence_super_plombe_ht: 0.0 + +- name: "Test prix_essence_super_plombe_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_super_plombe_ttc: 0.0 + output: + prix_essence_super_plombe_ht: 0.0 + +## prix essence E85 HT: + +- name: "Test prix_essence_e85_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_e85_ttc: 0.7307 + output: + prix_essence_e85_ht: 0.4906 + +- name: "Test prix_essence_e85_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_e85_ttc: 0.6774 + output: + prix_essence_e85_ht: 0.4462 + +- name: "Test prix_essence_e85_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_e85_ttc: 1.3504 + output: + prix_essence_e85_ht: 1.007 + +# prix GPL HT: + +- name: "Test prix_gpl_carburant_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_gpl_carburant_ttc: 0.878 + output: + prix_gpl_carburant_ht: 0.5245 + +- name: "Test prix_gpl_carburant_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_gpl_carburant_ttc: 0.8984 + output: + prix_gpl_carburant_ht: 0.5415 + + +- name: "Test prix_gpl_carburant_ht" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_gpl_carburant_ttc: 1.1149 + output: + prix_gpl_carburant_ht: 0.722 diff --git a/openfisca_france_indirect_taxation/tests/formulas/prix_carburants_ttc.yaml b/openfisca_france_indirect_taxation/tests/formulas/prix_carburants_ttc.yaml new file mode 100644 index 00000000..49e6fe30 --- /dev/null +++ b/openfisca_france_indirect_taxation/tests/formulas/prix_carburants_ttc.yaml @@ -0,0 +1,228 @@ +# prix carburant gazole TTC: + +## prix gazole B7 TTC: + +- name: "Test prix_gazole_b7_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '11' + output: + prix_gazole_b7_ttc: 1.4988 + +- name: "Test prix_gazole_b7_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '24' + output: + prix_gazole_b7_ttc: 1.4418 + +- name: "Test prix_gazole_b7_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '94' + output: + prix_gazole_b7_ttc: 1.5504 + +- name: "Test prix_gazole_b7_ttc" + period: 2023 + absolute_error_margin: .01 + input: + code_region: '94' + output: + prix_gazole_b7_ttc: 1.9100 + +## prix gazole B10 TTC: + +- name: "Test prix_gazole_b10_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '11' + output: + prix_gazole_b10_ttc: 1.4988 + +- name: "Test prix_gazole_b10_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '24' + output: + prix_gazole_b10_ttc: 1.4418 + +- name: "Test prix_gazole_b10_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '94' + output: + prix_gazole_b10_ttc: 1.5504 + +# prix essence TTC: + +## prix essence SP95 E10 TTC: + +- name: "Test prix_essence_sp95_e10_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '11' + output: + prix_essence_sp95_e10_ttc: 1.5844 + +- name: "Test prix_essence_sp95_e10_ttc 2021 - région 24" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '24' + output: + prix_essence_sp95_e10_ttc: 1.5382 + +- name: "Test prix_essence_sp95_e10_ttc 2021" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '94' + output: + prix_essence_sp95_e10_ttc: 1.6208 + +- name: "Test prix_essence_sp95_e10_ttc 2023" + period: 2023 + absolute_error_margin: .01 + input: + code_region: '11' + output: + prix_essence_sp95_e10_ttc: 1.93 + +## prix essence SP95 TTC: + +- name: "Test prix_essence_sp95_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '11' + output: + prix_essence_sp95_ttc: 1.5794 + +- name: "Test prix_essence_sp95_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '24' + output: + prix_essence_sp95_ttc: 1.5632 + +- name: "Test prix_essence_sp95_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '94' + output: + prix_essence_sp95_ttc: 1.6567 + +## prix essence SP98 TTC: + +- name: "Test prix_essence_sp98_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '11' + output: + prix_essence_sp98_ttc: 1.6748 + +- name: "Test prix_essence_sp98_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '24' + output: + prix_essence_sp98_ttc: 1.620 + +- name: "Test prix_essence_sp98_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '94' + output: + prix_essence_sp98_ttc: 1.5933 + +## prix essence super plombe TTC: + +- name: "Test prix_essence_super_plombe_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '11' + output: + prix_essence_super_plombe_ttc: 0.0 + +- name: "Test prix_essence_super_plombe_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '24' + output: + prix_essence_super_plombe_ttc: 0.0 + +- name: "Test prix_essence_super_plombe_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '94' + output: + prix_essence_super_plombe_ttc: 0.0 + +## prix essence E85 TTC: + +- name: "Test prix_essence_e85_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '11' + output: + prix_essence_e85_ttc: 0.7307 + +- name: "Test prix_essence_e85_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '24' + output: + prix_essence_e85_ttc: 0.6774 + +- name: "Test prix_essence_e85_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '94' + output: + prix_essence_e85_ttc: 1.3504 + +# prix GPL TTC: + +- name: "Test prix_gpl_carburant_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '11' + output: + prix_gpl_carburant_ttc: 0.878 + +- name: "Test prix_gpl_carburant_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '24' + output: + prix_gpl_carburant_ttc: 0.8984 + + +- name: "Test prix_gpl_carburant_ttc" + period: 2021 + absolute_error_margin: .01 + input: + code_region: '94' + output: + prix_gpl_carburant_ttc: 1.1149 diff --git a/openfisca_france_indirect_taxation/tests/formulas/prix_carburants_ttc_sortie.yaml b/openfisca_france_indirect_taxation/tests/formulas/prix_carburants_ttc_sortie.yaml new file mode 100644 index 00000000..b7d41670 --- /dev/null +++ b/openfisca_france_indirect_taxation/tests/formulas/prix_carburants_ttc_sortie.yaml @@ -0,0 +1,300 @@ +# prix carburant gazole ttc_sortie: + +## prix gazole B7 ttc_sortie: + +- name: "Test prix_gazole_b7_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_gazole_b7_ht: 0.6226 + output: + prix_gazole_b7_ttc_sortie: 1.4988 + +- name: "Test prix_gazole_b7_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_gazole_b7_ht: 0.594 + output: + prix_gazole_b7_ttc_sortie: 1.4418 + +- name: "Test prix_gazole_b7_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_gazole_b7_ht: 0.698 + output: + prix_gazole_b7_ttc_sortie: 1.5504 + +## prix gazole B10 ttc_sortie: + +- name: "Test prix_gazole_b10_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_gazole_b10_ht: 0.655 + output: + prix_gazole_b10_ttc_sortie: 1.4988 + +- name: "Test prix_gazole_b10_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_gazole_b10_ht: 0.6075 + output: + prix_gazole_b10_ttc_sortie: 1.4418 + +- name: "Test prix_gazole_b10_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_gazole_b10_ht: 0.698 + output: + prix_gazole_b10_ttc_sortie: 1.5504 + +- name: "Test gazole_b10_ticpe 2019" + period: 2019 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b10: 100 + code_region: '84' + output: + gazole_b10_ticpe: 59.40 + prix_gazole_b10_ht_avant_remise: 0.625 + prix_gazole_b10_ttc_sortie: 1.463 + prix_gazole_b10_ttc: 1.463 + +- name: "Test gazole_b10_ticpe 2022" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b10: 100 + code_region: '84' + output: + gazole_b10_ticpe: 59.40 + prix_gazole_b10_ht_avant_remise: 1.122 + prix_gazole_b10_ttc_sortie: 1.88 + prix_gazole_b10_ttc: 1.88 + +- name: "Test gazole_b10_ticpe 2024" + period: 2024 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b10: 100 + code_region: '84' + output: + gazole_b10_ticpe: 59.40 + prix_gazole_b10_ht_avant_remise: 0.880 + prix_gazole_b10_hors_remise_ttc: 1.77 + prix_gazole_b10_ttc_sortie: 1.77 + prix_gazole_b10_ttc: 1.77 + +# prix essence ttc_sortie: + +## prix essence SP95 E10 ttc_sortie: + +- name: "Test prix_essence_sp95_e10_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_sp95_e10_ht: 0.634 + output: + prix_essence_sp95_e10_ttc_sortie: 1.5844 + +- name: "Test prix_essence_sp95_e10_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_sp95_e10_ht: 0.6116 + output: + prix_essence_sp95_e10_ttc_sortie: 1.5382 + +- name: "Test prix_essence_sp95_e10_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_sp95_e10_ht: 0.6977 + output: + prix_essence_sp95_e10_ttc_sortie: 1.6208 + +## prix essence SP95 ttc_sortie: + +- name: "Test prix_essence_sp95_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_sp95_ht: 0.6157 + output: + prix_essence_sp95_ttc_sortie: 1.5794 + +- name: "Test prix_essence_sp95_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_sp95_ht: 0.6124 + output: + prix_essence_sp95_ttc_sortie: 1.5632 + +- name: "Test prix_essence_sp95_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_sp95_ht: 0.7076 + output: + prix_essence_sp95_ttc_sortie: 1.6567 + +## prix essence SP98 ttc_sortie: + +- name: "Test prix_essence_sp98_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_sp98_ht: 0.6952 + output: + prix_essence_sp98_ttc_sortie: 1.6748 + +- name: "Test prix_essence_sp98_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_sp98_ht: 0.6598 + output: + prix_essence_sp98_ttc_sortie: 1.620 + +- name: "Test prix_essence_sp98_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_sp98_ht: 0.6548 + output: + prix_essence_sp98_ttc_sortie: 1.5933 + +## prix essence super plombe ttc_sortie: + +- name: "Test prix_essence_super_plombe_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_super_plombe_ht: 0.0 + output: + prix_essence_super_plombe_ttc_sortie: 0.0 + +- name: "Test prix_essence_super_plombe_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_super_plombe_ht: 0.0 + output: + prix_essence_super_plombe_ttc_sortie: 0.0 + +- name: "Test prix_essence_super_plombe_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_super_plombe_ht: 0.0 + output: + prix_essence_super_plombe_ttc_sortie: 0.0 + +## prix essence E85 ttc_sortie: + +- name: "Test prix_essence_e85_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_e85_ht: 0.4906 + output: + prix_essence_e85_ttc_sortie: 0.7307 + +- name: "Test prix_essence_e85_ttc_sortie" + period: 2023 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_e85_ht: 0.4906 + output: + prix_essence_e85_ttc_sortie: 0.7307 + +- name: "Test prix_essence_e85_ttc_sortie" + period: 2024 + absolute_error_margin: .01 + input: + code_region: '11' + prix_essence_e85_ht: 0.4906 + output: + prix_essence_e85_ttc_sortie: 0.7307 + +- name: "Test prix_essence_e85_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_essence_e85_ht: 0.4462 + output: + prix_essence_e85_ttc_sortie: 0.6774 + +- name: "Test prix_essence_e85_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_e85_ht: 1.007 + output: + prix_essence_e85_ttc_sortie: 1.3504 + +- name: "Test prix_essence_e85_ttc_sortie" + period: 2024 + absolute_error_margin: .01 + input: + code_region: '94' + prix_essence_e85_ht: 1.007 + output: + prix_essence_e85_ttc_sortie: 1.3504 + +# prix GPL ttc_sortie: + +- name: "Test prix_gpl_carburant_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '11' + prix_gpl_carburant_ht: 0.5245 + output: + prix_gpl_carburant_ttc_sortie: 0.878 + +- name: "Test prix_gpl_carburant_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '24' + prix_gpl_carburant_ht: 0.5415 + output: + prix_gpl_carburant_ttc_sortie: 0.8984 + + +- name: "Test prix_gpl_carburant_ttc_sortie" + period: 2022 + absolute_error_margin: .01 + input: + code_region: '94' + prix_gpl_carburant_ht: 0.722 + output: + prix_gpl_carburant_ttc_sortie: 1.1149 diff --git a/openfisca_france_indirect_taxation/tests/formulas/ticpe.yaml b/openfisca_france_indirect_taxation/tests/formulas/ticpe.yaml-outadted similarity index 66% rename from openfisca_france_indirect_taxation/tests/formulas/ticpe.yaml rename to openfisca_france_indirect_taxation/tests/formulas/ticpe.yaml-outadted index 4c06b5ca..42251229 100644 --- a/openfisca_france_indirect_taxation/tests/formulas/ticpe.yaml +++ b/openfisca_france_indirect_taxation/tests/formulas/ticpe.yaml-outadted @@ -1,43 +1,43 @@ -- name: "Test ventilation essence / diesel" - period: 2006 - absolute_error_margin: .01 - input: - poste_07_2_2_1_1: 100 - veh_diesel: 2 - veh_essence: 1 - output: - depenses_diesel: 75.075 +# - name: "Test ventilation essence / diesel" +# period: 2006 +# absolute_error_margin: .01 +# input: +# poste_07_2_2_1_1: 100 +# veh_diesel: 2 +# veh_essence: 1 +# output: +# depenses_diesel: 75.075 -- name: "Test ticpe diesel" - period: "2010" - absolute_error_margin: .001 - input: - veh_diesel: 1 - veh_essence: 0 - poste_07_2_2_1_1: 100 # Gazole et gpl - output: - depenses_ht_tva_taux_plein: 100 / (1.196) - depenses_sp_e10: 0 - sp_e10_ticpe: 0 - essence_ticpe: 0 - diesel_ticpe: > - 100 / (1.196) * - ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196)) - / (1 + ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196))) - ticpe_totale: > - 100 / (1.196) * - ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196)) - / (1 + ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196))) - # depenses_htva = 100 / (1.196) - # taux_implicite_diesel = ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196)) - # coefficient = taux_implicite_diesel / (1 + taux_implicite_diesel) - # - tva_taux_plein: 100 / (1.196) * 0.196 - poste_agrege_07: 100 - depenses_diesel_htva: 100 / (1.196) - depenses_diesel: 100 - depenses_diesel_ht: 100 / (1.196) - 38.36062 - depenses_diesel_recalculees: 100 +# - name: "Test ticpe diesel" +# period: "2010" +# absolute_error_margin: .001 +# input: +# veh_diesel: 1 +# veh_essence: 0 +# poste_07_2_2_1_1: 100 # Gazole et GPL +# output: +# depenses_ht_tva_taux_plein: 100 / (1.196) +# depenses_sp_e10: 0 +# sp_e10_ticpe: 0 +# essence_ticpe: 0 +# diesel_ticpe: > +# 100 / (1.196) * +# ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196)) +# / (1 + ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196))) +# ticpe_totale: > +# 100 / (1.196) * +# ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196)) +# / (1 + ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196))) +# # depenses_htva = 100 / (1.196) +# # taux_implicite_diesel = ((0.4284 + 0.0115) * 1.196) / (1.14675 - ((0.4284 + 0.0115) * 1.196)) +# # coefficient = taux_implicite_diesel / (1 + taux_implicite_diesel) +# # +# tva_taux_plein: 100 / (1.196) * 0.196 +# poste_agrege_07: 100 +# depenses_diesel_htva: 100 / (1.196) +# depenses_diesel: 100 +# depenses_diesel_ht: 100 / (1.196) - 38.36062 +# depenses_diesel_recalculees: 100 - name: "Test ticpe essence" period: 2013 diff --git a/openfisca_france_indirect_taxation/tests/formulas/ticpe_carburant.yaml b/openfisca_france_indirect_taxation/tests/formulas/ticpe_carburant.yaml new file mode 100644 index 00000000..a632684c --- /dev/null +++ b/openfisca_france_indirect_taxation/tests/formulas/ticpe_carburant.yaml @@ -0,0 +1,292 @@ +# TICPE gazole: + +## TICPE gazole B7: + +- name: "Test gazole_b7_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b7: 100 + code_region: '11' + output: + gazole_b7_ticpe: 62.64 + +- name: "Test gazole_b7_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b7: 100 + code_region: '24' + output: + gazole_b7_ticpe: 60.75 + +- name: "Test gazole_b7_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b7: 100 + code_region: '94' + output: + gazole_b7_ticpe: 59.4 + +## TICPE gazole B10: + +- name: "Test gazole_b10_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b10: 100 + code_region: '11' + output: + gazole_b10_ticpe: 59.40 + +- name: "Test gazole_b10_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b10: 100 + code_region: '24' + output: + gazole_b10_ticpe: 59.40 + +- name: "Test gazole_b10_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b10: 100 + code_region: '94' + output: + gazole_b10_ticpe: 59.40 + +- name: "Test gazole_b10_ticpe" + period: 2019 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b10: 100 + code_region: '84' + output: + gazole_b10_ticpe: 59.40 + +- name: "Test gazole_b10_ticpe" + period: 2024 + absolute_error_margin: .01 + input: + nombre_litres_gazole_b10: 100 + code_region: '84' + output: + gazole_b10_ticpe: 59.40 + +## TICPE gazole total: + +- name: "Test gazole_ticpe_total" + period: 2022 + absolute_error_margin: .01 + input: + gazole_b7_ticpe: 62.64 + gazole_b10_ticpe: 59.40 + output: + gazole_ticpe_total: 122.04 + + +# TICPE essence: + +## TICPE essence SP95 E10: + +- name: "Test essence_sp95_e10_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp95_e10: 100 + code_region: '11' + output: + essence_sp95_e10_ticpe: 68.04 + +- name: "Test essence_sp95_e10_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp95_e10: 100 + code_region: '24' + output: + essence_sp95_e10_ticpe: 67.02 + +- name: "Test essence_sp95_e10_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp95_e10: 100 + code_region: '94' + output: + essence_sp95_e10_ticpe: 65.29 + +## TICPE essence SP95: + +- name: "Test essence_sp95_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp95: 100 + code_region: '11' + output: + essence_sp95_ticpe: 70.04 + +- name: "Test essence_sp95_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp95: 100 + code_region: '24' + output: + essence_sp95_ticpe: 69.02 + +- name: "Test essence_sp95_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp95: 100 + code_region: '94' + output: + essence_sp95_ticpe: 67.29 + +## TICPE essence SP98: + +- name: "Test essence_sp98_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp98: 100 + code_region: '11' + output: + essence_sp98_ticpe: 70.04 + +- name: "Test essence_sp98_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp98: 100 + code_region: '24' + output: + essence_sp98_ticpe: 69.02 + +- name: "Test essence_sp98_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_sp98: 100 + code_region: '94' + output: + essence_sp98_ticpe: 67.29 + +## TICPE essence super plombe: + +- name: "Test essence_super_plombe_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_super_plombe: 100 + code_region: '11' + output: + essence_super_plombe_ticpe: 0.0 + +- name: "Test essence_super_plombe_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_super_plombe: 100 + code_region: '24' + output: + essence_super_plombe_ticpe: 0.0 + +- name: "Test essence_super_plombe_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_super_plombe: 100 + code_region: '94' + output: + essence_super_plombe_ticpe: 0.0 + +## TICPE essence E85: + +- name: "Test essence_e85_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_e85: 100 + code_region: '11' + output: + essence_e85_ticpe: 11.83 + +- name: "Test essence_e85_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_e85: 100 + code_region: '24' + output: + essence_e85_ticpe: 11.83 + +- name: "Test essence_e85_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_essence_e85: 100 + code_region: '94' + output: + essence_e85_ticpe: 11.83 + +## TICPE essence total + +- name: "Test essence_ticpe_total" + period: 2022 + absolute_error_margin: .01 + input: + essence_sp95_e10_ticpe: 68.04 + essence_sp95_ticpe: 70.04 + essence_sp98_ticpe: 70.04 + essence_super_plombe_ticpe: 10000.0 + essence_e85_ticpe: 11.83 + output: + essence_ticpe_total: 219.95 + +# TICPE GPL: + +- name: "Test gpl_carburant_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gpl_carburant: 100 + code_region: '11' + output: + gpl_carburant_ticpe: 20.71 + +- name: "Test gpl_carburant_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gpl_carburant: 100 + code_region: '24' + output: + gpl_carburant_ticpe: 20.71 + + +- name: "Test gpl_carburant_ticpe" + period: 2022 + absolute_error_margin: .01 + input: + nombre_litres_gpl_carburant: 100 + code_region: '94' + output: + gpl_carburant_ticpe: 20.71 + +# TICPE carbirant total + +- name: "Test ticpe_carburant_total" + period: 2022 + absolute_error_margin: .01 + input: + gazole_ticpe_total: 122.04 + essence_ticpe_total: 219.95 + gpl_carburant_ticpe: 20.71 + output: + ticpe_carburant_total: 362.7 \ No newline at end of file diff --git a/openfisca_france_indirect_taxation/tests/formulas/tva_carburants.yaml b/openfisca_france_indirect_taxation/tests/formulas/tva_carburants.yaml new file mode 100644 index 00000000..c3fe2cd1 --- /dev/null +++ b/openfisca_france_indirect_taxation/tests/formulas/tva_carburants.yaml @@ -0,0 +1,256 @@ +# TVA sur gazole: + +## TVA sur gazole B7: + +- name: "Test tva_sur_ht_gazole_b7" + period: 2022 + absolute_error_margin: .01 + input: + depense_gazole_b7_ht: 100 + output: + tva_sur_ht_gazole_b7: 20 + +- name: "Test tva_sur_ticpe_gazole_b7" + period: 2022 + absolute_error_margin: .01 + input: + gazole_b7_ticpe: 100 + output: + tva_sur_ticpe_gazole_b7: 20 + +- name: "tva_sur_gazole_b7" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_ht_gazole_b7: 20 + tva_sur_ticpe_gazole_b7: 20 + output: + tva_sur_gazole_b7: 40 + +## TVA sur gazole B10: + +- name: "Test tva_sur_ht_gazole_b10" + period: 2022 + absolute_error_margin: .01 + input: + depense_gazole_b10_ht: 100 + output: + tva_sur_ht_gazole_b10: 20 + +- name: "Test tva_sur_ticpe_gazole_b10" + period: 2022 + absolute_error_margin: .01 + input: + gazole_b10_ticpe: 100 + output: + tva_sur_ticpe_gazole_b10: 20 + +- name: "tva_sur_gazole_b10" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_ht_gazole_b10: 20 + tva_sur_ticpe_gazole_b10: 20 + output: + tva_sur_gazole_b10: 40 + +## TVA total gazole + +- name: "Test tva_sur_gazole_total" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_gazole_b7: 20 + tva_sur_gazole_b10: 20 + output: + tva_sur_gazole_total: 40 + +# TVA sur essence + +## TVA sur essence SP95 E10 + +- name: "Test tva_sur_ht_essence_sp95_e10" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp95_e10_ht: 100 + output: + tva_sur_ht_essence_sp95_e10: 20 + +- name: "Test tva_sur_ticpe_essence_sp95_e10" + period: 2022 + absolute_error_margin: .01 + input: + essence_sp95_e10_ticpe: 100 + output: + tva_sur_ticpe_essence_sp95_e10: 20 + +- name: "tva_sur_essence_sp95_e10" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_ht_essence_sp95_e10: 20 + tva_sur_ticpe_essence_sp95_e10: 20 + output: + tva_sur_essence_sp95_e10: 40 + +## TVA sur essence SP95 + +- name: "Test tva_sur_ht_essence_sp95" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp95_ht: 100 + output: + tva_sur_ht_essence_sp95: 20 + +- name: "Test tva_sur_ticpe_essence_sp95" + period: 2022 + absolute_error_margin: .01 + input: + essence_sp95_ticpe: 100 + output: + tva_sur_ticpe_essence_sp95: 20 + +- name: "tva_sur_essence_sp95" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_ht_essence_sp95: 20 + tva_sur_ticpe_essence_sp95: 20 + output: + tva_sur_essence_sp95: 40 + +## TVA sur essence SP98 + +- name: "Test tva_sur_ht_essence_sp98" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_sp98_ht: 100 + output: + tva_sur_ht_essence_sp98: 20 + +- name: "Test tva_sur_ticpe_essence_sp98" + period: 2022 + absolute_error_margin: .01 + input: + essence_sp98_ticpe: 100 + output: + tva_sur_ticpe_essence_sp98: 20 + +- name: "tva_sur_essence_sp98" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_ht_essence_sp98: 20 + tva_sur_ticpe_essence_sp98: 20 + output: + tva_sur_essence_sp98: 40 + +## TVA sur essence super plombé + +- name: "Test tva_sur_ht_essence_super_plombe" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_super_plombe_ht: 100 + output: + tva_sur_ht_essence_super_plombe: 0 + +- name: "Test tva_sur_ticpe_essence_super_plombe" + period: 2022 + absolute_error_margin: .01 + input: + essence_super_plombe_ticpe: 100 + output: + tva_sur_ticpe_essence_super_plombe: 0 + +- name: "tva_sur_essence_super_plombe" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_ht_essence_super_plombe: 20 + tva_sur_ticpe_essence_super_plombe: 20 + output: + tva_sur_essence_super_plombe: 0 + +## TVA sur essence E85 + +- name: "Test tva_sur_ht_essence_e85" + period: 2022 + absolute_error_margin: .01 + input: + depense_essence_e85_ht: 100 + output: + tva_sur_ht_essence_e85: 20 + +- name: "Test tva_sur_ticpe_essence_e85" + period: 2022 + absolute_error_margin: .01 + input: + essence_e85_ticpe: 100 + output: + tva_sur_ticpe_essence_e85: 20 + +- name: "tva_sur_essence_e85" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_ht_essence_e85: 20 + tva_sur_ticpe_essence_e85: 20 + output: + tva_sur_essence_e85: 40 + +## TVA total essence + +- name: "Test tva_sur_essence_total" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_essence_sp95_e10: 20 + tva_sur_essence_sp95: 20 + tva_sur_essence_sp98: 20 + tva_sur_essence_super_plombe: 20 + tva_sur_essence_e85: 20 + output: + tva_sur_essence_total: 80 + +# TVA sur GPL + +- name: "Test tva_sur_ht_gpl_carburant" + period: 2022 + absolute_error_margin: .01 + input: + depense_gpl_carburant_ht: 100 + output: + tva_sur_ht_gpl_carburant: 20 + +- name: "Test tva_sur_ticpe_gpl_carburant" + period: 2022 + absolute_error_margin: .01 + input: + gpl_carburant_ticpe: 100 + output: + tva_sur_ticpe_gpl_carburant: 20 + +- name: "tva_sur_gpl_carburant" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_ht_gpl_carburant: 20 + tva_sur_ticpe_gpl_carburant: 20 + output: + tva_sur_gpl_carburant: 40 + +# TVA total carburant + +- name: "Test tva_sur_carburant_total" + period: 2022 + absolute_error_margin: .01 + input: + tva_sur_gazole_total: 20 + tva_sur_essence_total: 80 + tva_sur_gpl_carburant: 20 + output: + tva_sur_carburant_total: 120 diff --git a/openfisca_france_indirect_taxation/tests/reforms/aliss_environnement/ticpe.yaml b/openfisca_france_indirect_taxation/tests/reforms/aliss_environnement/ticpe.yaml index b6281a34..4911fc19 100644 --- a/openfisca_france_indirect_taxation/tests/reforms/aliss_environnement/ticpe.yaml +++ b/openfisca_france_indirect_taxation/tests/reforms/aliss_environnement/ticpe.yaml @@ -4,7 +4,7 @@ reforms: - openfisca_france_indirect_taxation.reforms.aliss.aliss_environnement input: - poste_07_2_2_1_1: 100 # Gazole et gpl + poste_07_2_2_1_1: 100 # Gazole et GPL veh_diesel: 1 veh_essence: 0 output: diff --git a/openfisca_france_indirect_taxation/tests/reforms/aliss_sante/ticpe.yaml b/openfisca_france_indirect_taxation/tests/reforms/aliss_sante/ticpe.yaml index 08f4e886..347b93e4 100644 --- a/openfisca_france_indirect_taxation/tests/reforms/aliss_sante/ticpe.yaml +++ b/openfisca_france_indirect_taxation/tests/reforms/aliss_sante/ticpe.yaml @@ -5,7 +5,7 @@ - openfisca_france_indirect_taxation.reforms.aliss.aliss_sante input: - poste_07_2_2_1_1: 100 # Gazole et gpl + poste_07_2_2_1_1: 100 # Gazole et GPL veh_diesel: 1 veh_essence: 0 output: diff --git a/openfisca_france_indirect_taxation/tests/reforms/aliss_tva_sociale/ticpe.yaml b/openfisca_france_indirect_taxation/tests/reforms/aliss_tva_sociale/ticpe.yaml index bddbda28..68d41713 100644 --- a/openfisca_france_indirect_taxation/tests/reforms/aliss_tva_sociale/ticpe.yaml +++ b/openfisca_france_indirect_taxation/tests/reforms/aliss_tva_sociale/ticpe.yaml @@ -5,7 +5,7 @@ - openfisca_france_indirect_taxation.reforms.aliss.aliss_tva_sociale input: - poste_07_2_2_1_1: 100 # Gazole et gpl + poste_07_2_2_1_1: 100 # Gazole et GPL veh_diesel: 1 veh_essence: 0 output: diff --git a/openfisca_france_indirect_taxation/tests/test_aliss_survey_scenario.py b/openfisca_france_indirect_taxation/tests/test_aliss_survey_scenario.py index 874537f8..86711399 100644 --- a/openfisca_france_indirect_taxation/tests/test_aliss_survey_scenario.py +++ b/openfisca_france_indirect_taxation/tests/test_aliss_survey_scenario.py @@ -2,7 +2,7 @@ try: import seaborn # Import d'une nouvelle palette de couleurs - seaborn.set_palette(seaborn.color_palette("Set2", 12)) + seaborn.set_palette(seaborn.color_palette('Set2', 12)) except ImportError: seaborn = None @@ -29,7 +29,7 @@ def build_aliss_scenarios(reform = None): # Do not run on laptop msika -@pytest.mark.skip(reason = "Need to fix aliss .dta file problem with utf8") +@pytest.mark.skip(reason = 'Need to fix aliss .dta file problem with utf8') def test(): reform = aliss_tva_sociale survey_scenario, adjusted_survey_scenario = build_aliss_scenarios(reform = reform) diff --git a/openfisca_france_indirect_taxation/tests/test_carburants_builder.py b/openfisca_france_indirect_taxation/tests/test_carburants_builder.py index 9d1c328e..f1c215a7 100644 --- a/openfisca_france_indirect_taxation/tests/test_carburants_builder.py +++ b/openfisca_france_indirect_taxation/tests/test_carburants_builder.py @@ -8,7 +8,7 @@ # TODO 2005 is failing see https://github.com/openfisca/openfisca-france-indirect-taxation/issues/177 # TODO 200 is failing at IPP -@pytest.mark.parametrize("year", [2011]) +@pytest.mark.parametrize('year', [2011]) def test_carburants_builder(year): aggregates_data_frame = get_input_data_frame(year) postes_07 = [column for column in aggregates_data_frame.columns if column.startswith('poste_07')] @@ -24,9 +24,9 @@ def test_carburants_builder(year): ]) assert set(postes_07) == openfisca_postes, \ - """year {}: + '''year {}: - {} is not present in tax_benefit_system - - {} is not present in input data""".format( + - {} is not present in input data'''.format( year, set(postes_07).difference(openfisca_postes), set(openfisca_postes).difference(set(postes_07)), @@ -45,5 +45,4 @@ def test_carburants_builder(year): weighted_input_data = ((carburants).sum(axis = 1) * pondmen).sum() weighted_computed_aggregate = survey_scenario.compute_aggregate('poste_agrege_07', period = year) - assert_near(weighted_input_data, weighted_computed_aggregate, relative_error_margin = .001), \ - "the total of transport differs from the sum of its components" + assert_near(weighted_input_data, weighted_computed_aggregate, relative_error_margin = .001, message='the total of transport differs from the sum of its components') diff --git a/openfisca_france_indirect_taxation/tests/test_categorie_fiscale.py b/openfisca_france_indirect_taxation/tests/test_categorie_fiscale.py index 970732d2..7fa58336 100644 --- a/openfisca_france_indirect_taxation/tests/test_categorie_fiscale.py +++ b/openfisca_france_indirect_taxation/tests/test_categorie_fiscale.py @@ -36,7 +36,7 @@ ) -@pytest.mark.parametrize("member", [margarine, confiserie, alcools, vin, restauration_sur_place, restauration_sur_place_reforme_2010]) +@pytest.mark.parametrize('member', [margarine, confiserie, alcools, vin, restauration_sur_place, restauration_sur_place_reforme_2010]) def check_categorie_fiscale(member): computed_categorie_fiscale = get_categorie_fiscale(member['value'], year = member.get('year')) assert computed_categorie_fiscale == member['categorie_fiscale'], \ diff --git a/openfisca_france_indirect_taxation/tests/test_get_poste_categorie_fiscale.py b/openfisca_france_indirect_taxation/tests/test_get_poste_categorie_fiscale.py index 859edbe5..454cbf05 100644 --- a/openfisca_france_indirect_taxation/tests/test_get_poste_categorie_fiscale.py +++ b/openfisca_france_indirect_taxation/tests/test_get_poste_categorie_fiscale.py @@ -26,7 +26,7 @@ ) -@pytest.mark.parametrize("categorie", [confiserie, alcools, vin, biere]) +@pytest.mark.parametrize('categorie', [confiserie, alcools, vin, biere]) def test_categorie_fiscale(categorie): postes_coicop = categorie['value'] categorie_fiscale = categorie['categorie_fiscale'] @@ -40,5 +40,5 @@ def test_categorie_fiscale(categorie): def assert_categorie_fiscale(poste_coicop, categorie_fiscale): got = get_poste_categorie_fiscale(poste_coicop) assert categorie_fiscale == got, \ - "For poste coicop {} we have wrong categorie fiscale: \n got {} but should be {}".format( + 'For poste coicop {} we have wrong categorie fiscale: \n got {} but should be {}'.format( poste_coicop, got, categorie_fiscale) diff --git a/openfisca_france_indirect_taxation/tests/test_prix_carburants.py b/openfisca_france_indirect_taxation/tests/test_prix_carburants.py index 2a78e1fa..48a7762b 100644 --- a/openfisca_france_indirect_taxation/tests/test_prix_carburants.py +++ b/openfisca_france_indirect_taxation/tests/test_prix_carburants.py @@ -1,10 +1,13 @@ +import pytest + from openfisca_france_indirect_taxation import FranceIndirectTaxationTaxBenefitSystem +@pytest.mark.skip(reason = "Wrong price setting") def test_prix_carburants(): - """ + ''' This test is made to preprocessing of prix_carburants works as some indirect taxes on fuel - """ + ''' year = 2011 parameters = FranceIndirectTaxationTaxBenefitSystem().parameters(year) diff --git a/openfisca_france_indirect_taxation/tests/test_simulation.py b/openfisca_france_indirect_taxation/tests/test_simulation.py index e55318e6..959854d9 100644 --- a/openfisca_france_indirect_taxation/tests/test_simulation.py +++ b/openfisca_france_indirect_taxation/tests/test_simulation.py @@ -4,7 +4,7 @@ from openfisca_france_indirect_taxation.surveys import SurveyScenario -@pytest.mark.parametrize("year", [2011, 2017]) +@pytest.mark.parametrize('year', [2011, 2017]) def test_survey_simulation(year): data_year = year survey_scenario = SurveyScenario().create(year = year, data_year = data_year) diff --git a/openfisca_france_indirect_taxation/tests/test_survey_scenario.py b/openfisca_france_indirect_taxation/tests/test_survey_scenario.py index a260ce31..9e035036 100644 --- a/openfisca_france_indirect_taxation/tests/test_survey_scenario.py +++ b/openfisca_france_indirect_taxation/tests/test_survey_scenario.py @@ -15,14 +15,14 @@ # Import d'une nouvelle palette de couleurs -seaborn.set_palette(seaborn.color_palette("Set2", 12)) +seaborn.set_palette(seaborn.color_palette('Set2', 12)) def test(display_plot = False): # inflators_by_year = get_inflators_by_year() # Liste des coicop agrégées en 12 postes postes_agreges = ['poste_agrege_{}'.format(index) for index in - ["0{}".format(i) for i in range(1, 10)] + ["10", "11", "12"] + ['0{}'.format(i) for i in range(1, 10)] + ['10', '11', '12'] ] year = 2011 elasticities = get_elasticities(year) diff --git a/openfisca_france_indirect_taxation/utils.py b/openfisca_france_indirect_taxation/utils.py index 2200ce1f..d575360d 100644 --- a/openfisca_france_indirect_taxation/utils.py +++ b/openfisca_france_indirect_taxation/utils.py @@ -1,30 +1,26 @@ -# -*- coding: utf-8 -*- - - -import os - - import logging +import os import pandas -import pkg_resources try: from openfisca_survey_manager.survey_collections import SurveyCollection except ImportError: SurveyCollection = None -log = logging.getLogger(__name__) +from openfisca_france_indirect_taxation.location import openfisca_france_indirect_taxation_location +log = logging.getLogger(__name__) + assets_directory = os.path.join( - pkg_resources.get_distribution('openfisca_france_indirect_taxation').location, + openfisca_france_indirect_taxation_location, 'openfisca_france_indirect_taxation', 'assets', ) def get_input_data_frame(year, use_entd = True): - """Retrieve budget des familles (BDF) survey data from disk with the opportunity to use variables from enquête nationale transports et déplacements (ENTD). + '''Retrieve budget des familles (BDF) survey data from disk with the opportunity to use variables from enquête nationale transports et déplacements (ENTD). :param year: survey year :type year: int @@ -32,14 +28,14 @@ def get_input_data_frame(year, use_entd = True): :type use_entd: bool, optional :return: survey data :rtype: DataFrame - """ - openfisca_survey_collection = SurveyCollection.load(collection = "openfisca_indirect_taxation") - openfisca_survey = openfisca_survey_collection.get_survey("openfisca_indirect_taxation_data_{}".format(year)) - input_data_frame = openfisca_survey.get_values(table = "input") + ''' + openfisca_survey_collection = SurveyCollection.load(collection = 'openfisca_indirect_taxation') + openfisca_survey = openfisca_survey_collection.get_survey('openfisca_indirect_taxation_data_{}'.format(year)) + input_data_frame = openfisca_survey.get_values(table = 'input') input_data_frame.reset_index(inplace = True) if use_entd and (year == 2011 or year == 2017): - log.info("Using variables from ENTD") + log.info('Using variables from ENTD') input_data_frame.rename( columns = { @@ -97,7 +93,7 @@ def get_parametres_fiscalite_data_frame(year = None): 'Parametres fiscalite indirecte.xls', ) parametres_fiscalite_data_frame = pandas.read_excel(parametres_fiscalite_xls_file_path, - sheet_name = "categoriefiscale") + sheet_name = 'categoriefiscale') parametres_fiscalite_data_frame.to_csv(parametres_fiscalite_csv_file_path, encoding = 'utf-8') if year: diff --git a/openfisca_france_indirect_taxation/variables/base.py b/openfisca_france_indirect_taxation/variables/base.py index 4b0158cc..ed517b1a 100644 --- a/openfisca_france_indirect_taxation/variables/base.py +++ b/openfisca_france_indirect_taxation/variables/base.py @@ -4,13 +4,12 @@ import numpy as np import os import pandas as pd -import pkg_resources - from slugify import slugify - from openfisca_core.model_api import * # noqa analysis:ignore + +from openfisca_france_indirect_taxation.location import openfisca_france_indirect_taxation_location from openfisca_france_indirect_taxation.yearly_variable import YearlyVariable # noqa analysis:ignore from openfisca_france_indirect_taxation.entities import Individu, Menage # noqa analysis:ignore @@ -43,23 +42,23 @@ def get_tva(categorie_fiscale): def droit_d_accise(depense, droit_cn, consommation_cn, taux_plein_tva): - """ + ''' Calcule le montant de droit d'accise sur un volume de dépense payé pour le poste adéquat. - """ + ''' return depense * ((1 + taux_plein_tva) * droit_cn) / (consommation_cn - (1 + taux_plein_tva) * droit_cn) def taux_implicite(accise, tva, prix_ttc): - """Calcule le taux implicite sur les carburants : pttc = pht * (1+ti) * (1+tva), ici on obtient ti""" + '''Calcule le taux implicite sur les carburants : pttc = pht * (1+ti) * (1+tva), ici on obtient ti''' return (accise * (1 + tva)) / (prix_ttc - accise * (1 + tva)) def tax_from_expense_including_tax(expense = None, tax_rate = None): - """Compute the tax amount form the expense including tax + '''Compute the tax amount form the expense including tax if depense_ttc = (1 + t) * depense_ht, it returns t * depense_ht - """ - assert not np.isnan(tax_rate), "The tax rate should not be nan" + ''' + assert not np.isnan(tax_rate), 'The tax rate should not be nan' return expense * tax_rate / (1 + tax_rate) @@ -76,7 +75,7 @@ def insert_tva(categories_fiscales): def get_legislation_data_frames(): legislation_directory = os.path.join( - pkg_resources.get_distribution('openfisca_france_indirect_taxation').location, + openfisca_france_indirect_taxation_location, 'openfisca_france_indirect_taxation', 'assets', 'legislation', @@ -113,7 +112,7 @@ def func(entity, period_arg): return sum(entity( 'poste_' + slugify(poste, separator = '_'), period_arg) for poste in postes_coicop ) - func.__name__ = f"formula_{year_start}" + func.__name__ = f'formula_{year_start}' return func else: @@ -152,7 +151,7 @@ def func(entity, period_arg, parameters, categorie_fiscale_by_poste = categorie_ ) return poste_agrege - func.__name__ = "formula" + func.__name__ = 'formula' return func @@ -163,14 +162,14 @@ def func(entity, period_arg): 'depenses_ht_poste_' + slugify(poste, separator = '_'), period_arg) for poste in postes_coicop ) - func.__name__ = f"formula_{year_start}" + func.__name__ = f'formula_{year_start}' return func else: # To deal with Reform emptying some fiscal categories def func(entity, period_arg): return 0 - func.__name__ = f"formula_{year_start}".format(year_start = year_start) + func.__name__ = f'formula_{year_start}'.format(year_start = year_start) return func @@ -191,5 +190,5 @@ def func(entity, period_arg, parameters, categorie_fiscale = categorie_fiscale): return entity('poste_' + slugify(poste_coicop, separator = '_'), period_arg) / (1 + taux) - func.__name__ = f"formula_{year_start}" + func.__name__ = f'formula_{year_start}' return func diff --git a/openfisca_france_indirect_taxation/variables/caracteristiques_menages/autres_caracteristiques.py b/openfisca_france_indirect_taxation/variables/caracteristiques_menages/autres_caracteristiques.py index aea20def..6ac2f74a 100644 --- a/openfisca_france_indirect_taxation/variables/caracteristiques_menages/autres_caracteristiques.py +++ b/openfisca_france_indirect_taxation/variables/caracteristiques_menages/autres_caracteristiques.py @@ -7,19 +7,19 @@ class age_carte_grise(YearlyVariable): value_type = float entity = Menage - label = "âge de la carte grise du véhicule principal" + label = 'âge de la carte grise du véhicule principal' class age_vehicule(YearlyVariable): value_type = float entity = Menage - label = "âge du véhicule principal" + label = 'âge du véhicule principal' class aides_logement(YearlyVariable): value_type = float entity = Menage - label = "Le ménage touche des aides au logement" + label = 'Le ménage touche des aides au logement' class bat_av_49(YearlyVariable): @@ -43,19 +43,19 @@ class bat_ap_74(YearlyVariable): class cataeu(YearlyVariable): value_type = float entity = Menage - label = "catégorie de la commune de résidence 2011" + label = 'catégorie de la commune de résidence 2011' class dip14pr(YearlyVariable): value_type = float entity = Menage - label = "Diplôme de la personne de référence" + label = 'Diplôme de la personne de référence' class ident_men(YearlyVariable): value_type = str entity = Menage - label = "Identifiant du ménage" + label = 'Identifiant du ménage' class isolation_fenetres(YearlyVariable): @@ -79,25 +79,25 @@ class isolation_toit(YearlyVariable): class identifiant_menage(YearlyVariable): value_type = str entity = Menage - label = "Code identifiant le ménage" + label = 'Code identifiant le ménage' class log_indiv(YearlyVariable): value_type = float entity = Menage - label = "Le ménage vie dans un logement individuel" + label = 'Le ménage vie dans un logement individuel' class majorite_double_vitrage(YearlyVariable): value_type = int entity = Menage - label = "Majorité de double vitrage dans le logement" + label = 'Majorité de double vitrage dans le logement' class ocde10(YearlyVariable): value_type = float entity = Menage - label = "unités de consommation" + label = 'unités de consommation' class ouest_sud(YearlyVariable): @@ -109,73 +109,73 @@ class ouest_sud(YearlyVariable): class paris(YearlyVariable): value_type = int entity = Menage - label = "Le ménage vit en région parisienne" + label = 'Le ménage vit en région parisienne' class petite_ville(YearlyVariable): value_type = int entity = Menage - label = "Le ménage vit dans une petite ville" + label = 'Le ménage vit dans une petite ville' class pondmen(YearlyVariable): value_type = int entity = Menage - label = "Pondération du ménage" + label = 'Pondération du ménage' class rural(YearlyVariable): value_type = float entity = Menage - label = "Le ménage vit en milieu rural" + label = 'Le ménage vit en milieu rural' class situacj(YearlyVariable): value_type = float entity = Menage - label = "Situation du conjoint vis-à-vis du travail" + label = 'Situation du conjoint vis-à-vis du travail' class situapr(YearlyVariable): value_type = float entity = Menage - label = "Situation de la personne de référence vis-à-vis du travail" + label = 'Situation de la personne de référence vis-à-vis du travail' class surfhab_d(YearlyVariable): value_type = float entity = Menage - label = "Taille du logement en m2" + label = 'Taille du logement en m2' class strate(YearlyVariable): value_type = int entity = Menage - label = "catégorie de la commune de résidence" + label = 'catégorie de la commune de résidence' class stalog(YearlyVariable): value_type = int entity = Menage - label = "Statut du logement (1 = propriétaire)" + label = 'Statut du logement (1 = propriétaire)' class tchof(YearlyVariable): value_type = float entity = Menage - label = "unité urbaine" + label = 'unité urbaine' class tuu(YearlyVariable): value_type = float entity = Menage - label = "unité urbaine" + label = 'unité urbaine' class typmen(YearlyVariable): value_type = float entity = Menage - label = "type du ménage" + label = 'type du ménage' class vag(YearlyVariable): @@ -187,26 +187,26 @@ class vag(YearlyVariable): class vp_deplacements_pro(YearlyVariable): value_type = float entity = Menage - label = "Le ménage utilise son véhicule particulier pour ses déplacements pro" + label = 'Le ménage utilise son véhicule particulier pour ses déplacements pro' class vp_domicile_travail(YearlyVariable): value_type = float entity = Menage - label = "Le ménage utilise son véhicule particulier pour se rendre à son travail" + label = 'Le ménage utilise son véhicule particulier pour se rendre à son travail' class TypesZeat(Enum): __order__ = 'dom region_parisienne bassin_parisien nord est ouest sud centre mediterrannee' # Needed to keep the order in Python 2 - dom = "dom", - region_parisienne = "region_parisienne", - bassin_parisien = "bassin_parisien", - nord = "nord", - est = "est", - ouest = "ouest", - sud = "sud-ouest", - centre = "centre-est", - mediterrannee = "mediterrannee" + dom = 'dom', + region_parisienne = 'region_parisienne', + bassin_parisien = 'bassin_parisien', + nord = 'nord', + est = 'est', + ouest = 'ouest', + sud = 'sud-ouest', + centre = 'centre-est', + mediterrannee = 'mediterrannee' class zeat(YearlyVariable): diff --git a/openfisca_france_indirect_taxation/variables/caracteristiques_menages/demographie.py b/openfisca_france_indirect_taxation/variables/caracteristiques_menages/demographie.py index 2d37144c..6c12c799 100644 --- a/openfisca_france_indirect_taxation/variables/caracteristiques_menages/demographie.py +++ b/openfisca_france_indirect_taxation/variables/caracteristiques_menages/demographie.py @@ -19,7 +19,7 @@ def formula(individu, period): class agepr(YearlyVariable): value_type = int entity = Menage - label = "Age personne de référence" + label = 'Age personne de référence' class age_group_pr(YearlyVariable): @@ -45,7 +45,7 @@ def formula(menage, period): class birth(YearlyVariable): value_type = date entity = Individu - label = "Date de naissance" + label = 'Date de naissance' class nactifs(YearlyVariable): @@ -69,10 +69,10 @@ class nenfants(YearlyVariable): class npers(YearlyVariable): value_type = int entity = Menage - label = "Nombre de personnes dans le ménage" + label = 'Nombre de personnes dans le ménage' class role_menage(YearlyVariable): value_type = int entity = Individu - label = "Rôle dans le ménage" + label = 'Rôle dans le ménage' diff --git a/openfisca_france_indirect_taxation/variables/caracteristiques_menages/precarite_energetique.py b/openfisca_france_indirect_taxation/variables/caracteristiques_menages/precarite_energetique.py index 725baeca..47208be8 100644 --- a/openfisca_france_indirect_taxation/variables/caracteristiques_menages/precarite_energetique.py +++ b/openfisca_france_indirect_taxation/variables/caracteristiques_menages/precarite_energetique.py @@ -9,13 +9,13 @@ class cmu(YearlyVariable): value_type = float entity = Menage - label = "Le ménage touche la couverture maladie universelle complémentaire " + label = 'Le ménage touche la couverture maladie universelle complémentaire ' class brde_m2_depenses_tot(YearlyVariable): value_type = str entity = Menage - label = "bas revenu (depenses tot )dépenses élevées (énergies logement)" + label = 'bas revenu (depenses tot )dépenses élevées (énergies logement)' def formula(menage, period): depenses_tot = menage('depenses_tot', period) @@ -38,7 +38,7 @@ def formula(menage, period): class brde_m2_rev_disponible(YearlyVariable): value_type = int entity = Menage - label = "bas revenu (revenu disponible) dépenses élevées (énergies logement)" + label = 'bas revenu (revenu disponible) dépenses élevées (énergies logement)' def formula(menage, period): revenu = menage('rev_disponible', period) @@ -61,7 +61,7 @@ def formula(menage, period): class brde_transports_depenses_tot(YearlyVariable): value_type = str entity = Menage - label = "bas revenu (depenses tot) dépenses élevées (en carburants)" + label = 'bas revenu (depenses tot) dépenses élevées (en carburants)' def formula(menage, period): depenses_tot = menage('depenses_tot', period) @@ -83,7 +83,7 @@ def formula(menage, period): class brde_transports_rev_disponible(YearlyVariable): value_type = str entity = Menage - label = "bas revenu (revenu disponible) dépenses élevées (en carburants)" + label = 'bas revenu (revenu disponible) dépenses élevées (en carburants)' def formula(menage, period): revenu = menage('rev_disponible', period) @@ -186,7 +186,7 @@ def formula(menage, period): class froid_3_deciles(YearlyVariable): value_type = str entity = Menage - label = "Le ménage a éprouvé un sentiment de froid dans son logement - 3 premiers déciles" + label = 'Le ménage a éprouvé un sentiment de froid dans son logement - 3 premiers déciles' def formula(menage, period): froid = menage('froid', period) diff --git a/openfisca_france_indirect_taxation/variables/consommation/categories_fiscales.py b/openfisca_france_indirect_taxation/variables/consommation/categories_fiscales.py index cd8c304b..ef502905 100644 --- a/openfisca_france_indirect_taxation/variables/consommation/categories_fiscales.py +++ b/openfisca_france_indirect_taxation/variables/consommation/categories_fiscales.py @@ -52,7 +52,7 @@ def generate_variables(tax_benefit_system, categories_fiscales = None, reform_ke year_start = year_start, year_stop = year_stop, ) - dated_function_name = f"formula_{year_start}" + dated_function_name = f'formula_{year_start}' log.debug('Creating fiscal category {} ({}-{}) with the following products {}'.format( categorie_fiscale, year_start, year_stop, previous_postes_coicop)) @@ -69,7 +69,7 @@ def generate_variables(tax_benefit_system, categories_fiscales = None, reform_ke definitions_by_name = dict( value_type = float, entity = Menage, - label = "Dépenses hors taxes: {0}".format(categorie_fiscale), + label = 'Dépenses hors taxes: {0}'.format(categorie_fiscale), ) definitions_by_name.update(functions_by_name) tax_benefit_system.add_variable( @@ -90,7 +90,7 @@ def generate_variables(tax_benefit_system, categories_fiscales = None, reform_ke definitions_by_name = dict( value_type = float, entity = Menage, - label = "Dépenses hors taxes: {0}".format(categorie_fiscale), + label = 'Dépenses hors taxes: {0}'.format(categorie_fiscale), ) definitions_by_name.update(functions_by_name) # definitions_by_name['formulas'] = formulas diff --git a/openfisca_france_indirect_taxation/variables/consommation/consommation_menages.py b/openfisca_france_indirect_taxation/variables/consommation/consommation_menages.py index d9b4aa50..4f6b9f96 100644 --- a/openfisca_france_indirect_taxation/variables/consommation/consommation_menages.py +++ b/openfisca_france_indirect_taxation/variables/consommation/consommation_menages.py @@ -7,7 +7,7 @@ class depenses_assurance_sante(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en assurances liées aux transports" + label = 'Dépenses en assurances liées aux transports' def formula(menage, period): depenses_assurance_sante = menage('poste_12_5_3_1_1', period) @@ -17,7 +17,7 @@ def formula(menage, period): class depenses_assurance_transport(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en assurances liées aux transports" + label = 'Dépenses en assurances liées aux transports' def formula(menage, period): depenses_assurance_transport = menage('poste_12_5_4_1_1', period) @@ -27,7 +27,7 @@ def formula(menage, period): class depenses_autres_assurances(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en assurances liées aux transports" + label = 'Dépenses en assurances liées aux transports' def formula(menage, period): depenses_assurance_vie_deces = menage('poste_12_5_1_1_1', period) @@ -43,7 +43,7 @@ def formula(menage, period): class depenses_ticpe(YearlyVariable): value_type = float entity = Menage - label = "Consommation de carburants" + label = 'Consommation de carburants' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -54,7 +54,7 @@ def formula(menage, period, parameters): class depenses_essence_recalculees(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence recalculées à partir du prix ht" + label = 'Dépenses en essence recalculées à partir du prix HT' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -73,11 +73,11 @@ def formula(menage, period, parameters): class depenses_tot(YearlyVariable): value_type = float entity = Menage - label = "Somme des dépenses du ménage" + label = 'Somme des dépenses du ménage' def formula(menage, period): postes_agreges = ['poste_agrege_{}'.format(index) for index in - ["0{}".format(i) for i in range(1, 10)] + ["10", "11", "12"] + ['0{}'.format(i) for i in range(1, 10)] + ['10', '11', '12'] ] depenses_tot = 0 for poste in postes_agreges: @@ -89,7 +89,7 @@ def formula(menage, period): class depenses_totales(YearlyVariable): value_type = float entity = Menage - label = "Consommation totale du ménage" + label = 'Consommation totale du ménage' def formula(menage, period): depenses_tva_taux_super_reduit = menage('depenses_tva_taux_super_reduit', period) @@ -113,7 +113,7 @@ class distance(YearlyVariable): class distance_routiere_hebdomadaire_teg(YearlyVariable): value_type = float entity = Menage - label = "Distance routière parcourue par le ménage pour se rendre à son teg par semaine" + label = 'Distance routière parcourue par le ménage pour se rendre à son teg par semaine' class duree_moyenne_trajet_aller_retour_teg(YearlyVariable): @@ -131,4 +131,4 @@ class duree_moyenne_trajet_aller_retour_teg(YearlyVariable): class quantite_supercarburants(YearlyVariable): value_type = float entity = Menage - label = "Quantité de supercarburants (super 95, super98 et superE10) consommée (en hecto-litres)" + label = 'Quantité de supercarburants (super 95, super98 et superE10) consommée (en hecto-litres)' diff --git a/openfisca_france_indirect_taxation/variables/consommation/depenses_energies.py b/openfisca_france_indirect_taxation/variables/consommation/depenses_energies.py index f6f30e21..bba13b76 100644 --- a/openfisca_france_indirect_taxation/variables/consommation/depenses_energies.py +++ b/openfisca_france_indirect_taxation/variables/consommation/depenses_energies.py @@ -5,7 +5,7 @@ from openfisca_france_indirect_taxation.variables.base import * # noqa analysis:ignore - +from openfisca_france_indirect_taxation.variables.taxes_indirectes import get_accise_diesel_ticpe log = logging.getLogger(__name__) @@ -13,7 +13,7 @@ class depenses_carburants(YearlyVariable): value_type = float entity = Menage - label = "Consommation de carburants" + label = 'Consommation de carburants' def formula(menage, period): return menage('poste_07_2_2_1_1', period) @@ -22,7 +22,7 @@ def formula(menage, period): class depenses_combustibles_liquides(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en combustibles liquides" + label = 'Dépenses en combustibles liquides' def formula(menage, period): depenses_combustibles_liquides = menage('poste_04_5_3_1_1', period) @@ -33,7 +33,7 @@ def formula(menage, period): class depenses_combustibles_solides(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en combustibles solides" + label = 'Dépenses en combustibles solides' def formula(menage, period): depenses_combustibles_solides = menage('poste_04_5_4_1_1', period) @@ -43,37 +43,38 @@ def formula(menage, period): class depenses_diesel(YearlyVariable): value_type = float entity = Menage - label = "Construction par pondération des dépenses spécifiques au diesel" + label = 'Construction par pondération des dépenses spécifiques au diesel' def formula(menage, period, parameters): - conso_totale_vp_diesel = parameters(period.start).quantite_carbu_vp.diesel - conso_totale_vp_essence = parameters(period.start).quantite_carbu_vp.essence - taille_parc_diesel = parameters(period.start).parc_vp.diesel - taille_parc_essence = parameters(period.start).parc_vp.essence + conso_moyenne_vp_diesel = parameters(period.start).conso_vp_moyenne.voitures_particulieres_diesel + conso_moyenne_vp_essence = parameters(period.start).conso_vp_moyenne.voitures_particulieres_essence + conso_moyenne_vp_gpl = parameters(period.start).conso_vp_moyenne.voitures_particulieres_gpl + + parcours_moyenne_vp_diesel_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_diesel + parcours_moyenne_vp_essense_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_essence + parcours_moyenne_vp_gpl_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_gpl - conso_moyenne_vp_diesel = conso_totale_vp_diesel / taille_parc_diesel - conso_moyenne_vp_essence = conso_totale_vp_essence / taille_parc_essence + conso_moyenne_du_parcours_moyen_vp_diesel = parcours_moyenne_vp_diesel_en_km * conso_moyenne_vp_diesel / 100 + conso_moyenne_du_parcours_moyen_vp_essence = parcours_moyenne_vp_essense_en_km * conso_moyenne_vp_essence / 100 + conso_moyenne_du_parcours_moyen_vp_gpl = parcours_moyenne_vp_gpl_en_km * conso_moyenne_vp_gpl / 100 nombre_vehicules_diesel = menage('veh_diesel', period) nombre_vehicules_essence = menage('veh_essence', period) - nombre_vehicules_total = nombre_vehicules_diesel + nombre_vehicules_essence + nombre_vehicules_gpl = menage('veh_gpl', period) + nombre_vehicules_total = nombre_vehicules_diesel + nombre_vehicules_essence + nombre_vehicules_gpl + + depenses_carburants = menage('depenses_carburants', period) # to compute part_conso_diesel we need to avoid dividing by zero for those we do not have any vehicle # Thus, we choose arbitrarily to divide it by 1, but this choice won't affect the result as long as it is not 0 denominateur = ( - (nombre_vehicules_diesel * conso_moyenne_vp_diesel) + (nombre_vehicules_essence * conso_moyenne_vp_essence) - ) * (nombre_vehicules_total != 0) + 1 * (nombre_vehicules_total == 0) - - part_conso_diesel = (nombre_vehicules_diesel * conso_moyenne_vp_diesel) / denominateur + (nombre_vehicules_total != 0) * (nombre_vehicules_diesel * conso_moyenne_du_parcours_moyen_vp_diesel) + (nombre_vehicules_essence * conso_moyenne_du_parcours_moyen_vp_essence) + (nombre_vehicules_gpl * conso_moyenne_du_parcours_moyen_vp_gpl) + ) + (nombre_vehicules_total == 0) * 1 - depenses_carburants = menage('depenses_carburants', period) + part_conso_gazole = (nombre_vehicules_diesel * conso_moyenne_du_parcours_moyen_vp_diesel) / denominateur - depenses_diesel = depenses_carburants * ( - (nombre_vehicules_total == 0) * ( - conso_totale_vp_diesel / (conso_totale_vp_diesel + conso_totale_vp_essence) - ) - + (nombre_vehicules_total != 0) * part_conso_diesel - ) + depenses_gazole = depenses_carburants * part_conso_gazole + return depenses_gazole return depenses_diesel @@ -81,7 +82,7 @@ def formula(menage, period, parameters): class depenses_diesel_htva(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel htva (mais incluant toujours la TICPE)" + label = 'Dépenses en diesel htva (mais incluant toujours la TICPE)' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -94,19 +95,12 @@ def formula(menage, period, parameters): class depenses_diesel_ht(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel ht (prix brut sans TVA ni TICPE)" + label = 'Dépenses en diesel HT (prix brut sans TVA ni TICPE)' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal - majoration_ticpe_diesel = \ - parameters(period.start).imposition_indirecte.produits_energetiques.major_regionale_ticpe_gazole.alsace - accise_diesel = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.gazole - - accise_diesel_ticpe = ( - accise_diesel + majoration_ticpe_diesel - if majoration_ticpe_diesel is not None - else accise_diesel - ) + accise_diesel_ticpe = get_accise_diesel_ticpe(parameters, period) + prix_diesel_ttc = parameters(period.start).prix_carburants.diesel_ttc taux_implicite_diesel = ( (accise_diesel_ticpe * (1 + taux_plein_tva)) @@ -123,20 +117,13 @@ def formula(menage, period, parameters): class depenses_diesel_recalculees(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel recalculées à partir du prix ht" + label = 'Dépenses en diesel recalculées à partir du prix HT' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal depenses_diesel_ht = menage('depenses_diesel_ht', period) - majoration_ticpe_diesel = \ - parameters(period.start).imposition_indirecte.produits_energetiques.major_regionale_ticpe_gazole.alsace - accise_diesel = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.gazole - - accise_diesel_ticpe = ( - accise_diesel + majoration_ticpe_diesel - if majoration_ticpe_diesel is not None - else accise_diesel - ) + accise_diesel_ticpe = get_accise_diesel_ticpe(parameters, period) + prix_diesel_ttc = parameters(period.start).prix_carburants.diesel_ttc taux_implicite_diesel = ( (accise_diesel_ticpe * (1 + taux_plein_tva)) @@ -151,7 +138,7 @@ def formula(menage, period, parameters): class depenses_electricite(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité totale après imputation factures jointes" + label = 'Dépenses en électricité totale après imputation factures jointes' def formula(menage, period): depenses_electricite_seule = menage('depenses_electricite_seule', period) @@ -164,7 +151,7 @@ def formula(menage, period): class depenses_electricite_factures_jointes(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité estimées des factures jointes électricité et gaz" + label = 'Dépenses en électricité estimées des factures jointes électricité et gaz' def formula(menage, period): depenses_factures_jointes = menage('poste_04_5_1_1_1_a', period) @@ -221,7 +208,7 @@ def formula(menage, period, parameters): class depenses_electricite_seule(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité sans inclure dépenses jointes avec le gaz" + label = 'Dépenses en électricité sans inclure dépenses jointes avec le gaz' def formula(menage, period): depenses_electricite_seule = menage('poste_04_5_1_1_1_b', period) @@ -276,7 +263,7 @@ def formula(menage, period): class depenses_energies_logement(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité sans inclure dépenses jointes avec le gaz" + label = 'Dépenses en électricité sans inclure dépenses jointes avec le gaz' def formula(menage, period): depenses_electricite = menage('depenses_electricite', period) @@ -296,7 +283,7 @@ def formula(menage, period): class depenses_energie_thermique(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en énergie thermique" + label = 'Dépenses en énergie thermique' def formula(menage, period): depenses_energie_thermique = menage('poste_04_5_5_1_1', period) @@ -307,7 +294,7 @@ def formula(menage, period): class depenses_energies_totales(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité sans inclure dépenses jointes avec le gaz" + label = 'Dépenses en électricité sans inclure dépenses jointes avec le gaz' def formula(menage, period): depenses_energies_logement = menage('depenses_energies_logement', period) @@ -335,7 +322,7 @@ def formula(menage, period): class depenses_essence_ht(Variable): value_type = float entity = Menage - label = "Dépenses en essence hors taxes (HT, i.e. sans TVA ni TICPE)" + label = 'Dépenses en essence hors taxes (HT, i.e. sans TVA ni TICPE)' definition_period = YEAR def formula_2009(menage, period): @@ -362,7 +349,7 @@ def formula_1990(menage, period): class depenses_gaz_factures_jointes(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz estimées des factures jointes électricité et gaz" + label = 'Dépenses en gaz estimées des factures jointes électricité et gaz' def formula(menage, period): depenses_factures_jointes = menage('poste_04_5_1_1_1_a', period) @@ -375,7 +362,7 @@ def formula(menage, period): class depenses_gaz_liquefie(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz liquéfié" + label = 'Dépenses en gaz liquéfié' def formula(menage, period): depenses_gaz_liquefie = menage('poste_04_5_2_2_1', period) @@ -386,7 +373,7 @@ def formula(menage, period): class depenses_gaz_prix_unitaire(YearlyVariable): value_type = float entity = Menage - label = "Prix unitaire du gaz rencontré par les ménages" + label = 'Prix unitaire du gaz rencontré par les ménages' def formula(menage, period, parameters): quantite_base = menage('quantites_gaz_contrat_base', period) @@ -417,7 +404,7 @@ def formula(menage, period, parameters): class depenses_gaz_seul(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz de ville" + label = 'Dépenses en gaz de ville' def formula(menage, period): depenses_gaz_seul = menage('poste_04_5_2_1_1', period) @@ -474,7 +461,7 @@ def formula(menage, period): class depenses_gaz_ville(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz estimées des factures jointes électricité et gaz" + label = 'Dépenses en gaz estimées des factures jointes électricité et gaz' def formula(menage, period): depenses_gaz_seul = menage('depenses_gaz_seul', period) @@ -487,7 +474,7 @@ def formula(menage, period): class depenses_sp_e10(YearlyVariable): value_type = float entity = Menage - label = "Construction par pondération des dépenses spécifiques au sans plomb e10" + label = 'Construction par pondération des dépenses spécifiques au sans plomb E10' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -500,7 +487,7 @@ def formula(menage, period, parameters): class depenses_sp_e10_ht(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence sans plomb e10 hors taxes (HT, i.e. sans TVA ni TICPE)" + label = 'Dépenses en essence sans plomb E10 hors taxes (HT, i.e. sans TVA ni TICPE)' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -533,7 +520,7 @@ def formula(menage, period, parameters): class depenses_sp_95(YearlyVariable): value_type = float entity = Menage - label = "Construction par pondération des dépenses spécifiques au sans plomb 95" + label = 'Construction par pondération des dépenses spécifiques au sans plomb 95' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -546,7 +533,7 @@ def formula(menage, period, parameters): class depenses_sp_95_ht(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence sans plomb 95 hors taxes (HT, i.e. sans TVA ni TICPE)" + label = 'Dépenses en essence sans plomb 95 hors taxes (HT, i.e. sans TVA ni TICPE)' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -578,7 +565,7 @@ def formula(menage, period, parameters): class depenses_sp_98(YearlyVariable): value_type = float entity = Menage - label = "Construction par pondération des dépenses spécifiques au sans plomb 98" + label = 'Construction par pondération des dépenses spécifiques au sans plomb 98' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -591,7 +578,7 @@ def formula(menage, period, parameters): class depenses_sp_98_ht(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence sans plomb 98 hors taxes (HT, i.e. sans TVA ni TICPE)" + label = 'Dépenses en essence sans plomb 98 hors taxes (HT, i.e. sans TVA ni TICPE)' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -623,7 +610,7 @@ def formula(menage, period, parameters): class depenses_super_plombe(YearlyVariable): value_type = float entity = Menage - label = "Construction par pondération des dépenses spécifiques au super plombe" + label = 'Construction par pondération des dépenses spécifiques au super plombe' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -637,7 +624,7 @@ def formula(menage, period, parameters): class depenses_super_plombe_ht(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence super plombée hors taxes (HT, i.e. sans TVA ni TICPE)" + label = 'Dépenses en essence super plombée hors taxes (HT, i.e. sans TVA ni TICPE)' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -654,8 +641,10 @@ def formula(menage, period, parameters): depenses_super_plombe = depenses_essence * part_super_plombe depenses_super_plombe_htva = \ depenses_super_plombe - tax_from_expense_including_tax(depenses_super_plombe, taux_plein_tva) - depenses_super_plombe_ht = (depenses_super_plombe_htva -- tax_from_expense_including_tax(depenses_super_plombe_htva, taux_implicite_super_plombe)) + depenses_super_plombe_ht = ( + depenses_super_plombe_htva + - tax_from_expense_including_tax(depenses_super_plombe_htva, taux_implicite_super_plombe) + ) return depenses_super_plombe_ht @@ -663,7 +652,7 @@ def formula(menage, period, parameters): class combustibles_liquides(YearlyVariable): value_type = float entity = Menage - label = "=1 si le menage consomme des combustibles liquides" + label = '=1 si le ménage consomme des combustibles liquides' def formula(menage, period): depenses_combustibles_liquides = menage('depenses_combustibles_liquides', period) @@ -675,7 +664,7 @@ def formula(menage, period): class electricite(YearlyVariable): value_type = float entity = Menage - label = "=1 si le menage consomme de l'électricité" + label = "=1 si le ménage consomme de l'électricité" def formula(menage, period): depenses_electricite = menage('depenses_electricite', period) @@ -687,7 +676,7 @@ def formula(menage, period): class gaz_ville(YearlyVariable): value_type = float entity = Menage - label = "=1 si le menage consomme du gaz" + label = '=1 si le ménage consomme du gaz' def formula(menage, period): depenses_gaz_ville = menage('depenses_gaz_ville', period) diff --git a/openfisca_france_indirect_taxation/variables/consommation/emissions_co2.py b/openfisca_france_indirect_taxation/variables/consommation/emissions_co2.py index 1b38e202..02d7e396 100644 --- a/openfisca_france_indirect_taxation/variables/consommation/emissions_co2.py +++ b/openfisca_france_indirect_taxation/variables/consommation/emissions_co2.py @@ -10,7 +10,7 @@ class emissions_CO2_carburants(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur consommation de carburants, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de carburants, en kg de CO2' def formula(menage, period, parameters): quantites_diesel = menage('quantites_diesel', period) @@ -27,7 +27,7 @@ def formula(menage, period, parameters): class emissions_CO2_combustibles_liquides(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur consommation de combustibles liquides, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de combustibles liquides, en kg de CO2' def formula(menage, period, parameters): quantite_combustibles_liquides = menage('quantites_combustibles_liquides', period) @@ -41,7 +41,7 @@ def formula(menage, period, parameters): class emissions_CO2_diesel(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur consommation de diesel, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de diesel, en kg de CO2' def formula(menage, period, parameters): quantites_diesel = menage('quantites_diesel', period) @@ -97,7 +97,7 @@ def formula(menage, period): class emissions_CO2_essence(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur consommation de carburants, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de carburants, en kg de CO2' def formula(menage, period, parameters): quantites_essence = menage('quantites_essence', period) @@ -111,7 +111,7 @@ def formula(menage, period, parameters): class emissions_CO2_gaz_liquefie(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur consommation de gaz, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de gaz, en kg de CO2' def formula(menage, period, parameters): quantites_gaz = menage('quantites_gaz_liquefie', period) @@ -125,7 +125,7 @@ def formula(menage, period, parameters): class emissions_CO2_gaz_ville(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur consommation de gaz, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de gaz, en kg de CO2' def formula(menage, period, parameters): quantites_gaz = menage('quantites_gaz_final', period) diff --git a/openfisca_france_indirect_taxation/variables/consommation/postes_coicop.py b/openfisca_france_indirect_taxation/variables/consommation/postes_coicop.py index d2295b60..83f4403b 100644 --- a/openfisca_france_indirect_taxation/variables/consommation/postes_coicop.py +++ b/openfisca_france_indirect_taxation/variables/consommation/postes_coicop.py @@ -19,12 +19,12 @@ def generate_postes_variables(tax_benefit_system): codes_bdf = [element for element in codes_coicop_data_frame.code_bdf.unique()] for code_bdf in codes_bdf: label = codes_coicop_data_frame.query('code_bdf == @code_bdf')['label'].drop_duplicates().tolist() - assert len(label) == 1, "Too many labels for {}: {}".format(code_bdf, label) + assert len(label) == 1, 'Too many labels for {}: {}'.format(code_bdf, label) label = label[0] code_coicop = codes_coicop_data_frame.query('code_bdf == @code_bdf')['code_coicop'].drop_duplicates().tolist() - assert len(code_coicop) == 1, "Too many code_coicop for {}: {}".format(code_bdf, code_coicop) + assert len(code_coicop) == 1, 'Too many code_coicop for {}: {}'.format(code_bdf, code_coicop) code_coicop = code_coicop[0] - class_name = "poste_{}".format(slugify(code_coicop, separator = '_')) + class_name = 'poste_{}'.format(slugify(code_coicop, separator = '_')) log.debug('Creating variable {} with label {}'.format(class_name, label)) # Use type to create a class with a dynamic name tax_benefit_system.add_variable( @@ -69,7 +69,7 @@ def generate_depenses_ht_postes_variables(tax_benefit_system, categories_fiscale year_stop = year_stop ) - dated_function_name = f"formula_{year_start}" + dated_function_name = f'formula_{year_start}' log.debug('Creating fiscal category {} ({}-{}) with the following products {}'.format( categorie_fiscale, year_start, year_stop, postes_coicop)) @@ -90,7 +90,7 @@ def generate_depenses_ht_postes_variables(tax_benefit_system, categories_fiscale definitions_by_name = dict( value_type = float, entity = Menage, - label = "Dépenses hors taxe du poste_{0}".format(poste), + label = 'Dépenses hors taxe du poste_{0}'.format(poste), ) definitions_by_name.update(functions_by_name) tax_benefit_system.add_variable( @@ -102,12 +102,12 @@ def generate_depenses_ht_postes_variables(tax_benefit_system, categories_fiscale def generate_postes_agreges_variables(tax_benefit_system, categories_fiscales = None, reform_key = None, taux_by_categorie_fiscale = None): # codes_bdf = [element for element in codes_coicop_data_frame.code_bdf.unique()] - for num_prefix in ["0{}".format(i) for i in range(1, 10)] + ["10", "11", "12"]: + for num_prefix in ['0{}'.format(i) for i in range(1, 10)] + ['10', '11', '12']: codes_coicop = codes_coicop_data_frame.loc[ codes_coicop_data_frame.code_coicop.str.startswith(num_prefix) ]['code_coicop'].drop_duplicates().tolist() - class_name = "poste_agrege_{}".format(num_prefix) - label = "Poste agrégé {}".format(num_prefix) + class_name = 'poste_agrege_{}'.format(num_prefix) + label = 'Poste agrégé {}'.format(num_prefix) log.debug('Creating variable {} with label {} using {}'.format(class_name, label, codes_coicop)) # Trick to create a class with a dynamic name. diff --git a/openfisca_france_indirect_taxation/variables/consommation/quantites_energie.py b/openfisca_france_indirect_taxation/variables/consommation/quantites_energie.py index ceceb93f..eb037cf4 100644 --- a/openfisca_france_indirect_taxation/variables/consommation/quantites_energie.py +++ b/openfisca_france_indirect_taxation/variables/consommation/quantites_energie.py @@ -9,7 +9,7 @@ class quantites_combustibles_liquides(YearlyVariable): value_type = float entity = Menage - label = "Quantité de combustibles solides (en litres) consommée par les ménages" + label = 'Quantité de combustibles solides (en litres) consommée par les ménages' def formula(menage, period, parameters): depenses_combustibles_liquides = menage('depenses_combustibles_liquides', period) @@ -24,7 +24,7 @@ def formula(menage, period, parameters): class quantites_diesel(YearlyVariable): value_type = float entity = Menage - label = "Quantités de diesel consommées par les ménages" + label = 'Quantités de diesel consommées par les ménages' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -310,7 +310,7 @@ def formula(menage, period): class quantites_sp_e10(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb e10 par les ménages" + label = 'Quantités consommées de sans plomb E10 par les ménages' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -325,7 +325,7 @@ def formula(menage, period, parameters): class quantites_sp95(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb 95 par les ménages" + label = 'Quantités consommées de sans plomb 95 par les ménages' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -340,7 +340,7 @@ def formula(menage, period, parameters): class quantites_sp98(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb 98 par les ménages" + label = 'Quantités consommées de sans plomb 98 par les ménages' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -355,7 +355,7 @@ def formula(menage, period, parameters): class quantites_super_plombe(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de super plombé par les ménages" + label = 'Quantités consommées de super plombé par les ménages' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) diff --git a/openfisca_france_indirect_taxation/variables/prestations/cheque_energie.py b/openfisca_france_indirect_taxation/variables/prestations/cheque_energie.py index c5fe6388..5eea04bc 100644 --- a/openfisca_france_indirect_taxation/variables/prestations/cheque_energie.py +++ b/openfisca_france_indirect_taxation/variables/prestations/cheque_energie.py @@ -6,7 +6,7 @@ class cheques_energie(YearlyVariable): value_type = float entity = Menage - label = "Montant des chèques énergie tels que prévus par la loi" + label = 'Montant des chèques énergie tels que prévus par la loi' def formula(menage, period, parameters): revenu_fiscal = numpy.maximum(0.0, menage('revdecm', period) / 1.22) diff --git a/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/depenses_ajustees.py b/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/depenses_ajustees.py index fd8bc766..a0acaabd 100644 --- a/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/depenses_ajustees.py +++ b/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/depenses_ajustees.py @@ -9,7 +9,7 @@ class depenses_essence_ajustees(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en essence après réaction à la réforme des prix" + label = 'Dépenses en essence après réaction à la réforme des prix' def formula(menage, period, parameters): depenses_essence = menage('depenses_essence', period) @@ -25,7 +25,7 @@ def formula(menage, period, parameters): class depenses_diesel_ajustees(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en diesel après réaction à la réforme des prix" + label = 'Dépenses en diesel après réaction à la réforme des prix' def formula(menage, period, parameters): depenses_diesel = menage('depenses_diesel', period) @@ -41,7 +41,7 @@ def formula(menage, period, parameters): class depenses_gaz_ville_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en gaz après réaction à la réforme - taxe carbone" + label = 'Dépenses en gaz après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_gaz_variables = menage('depenses_gaz_variables', period) @@ -61,7 +61,7 @@ def formula(menage, period, parameters): class depenses_electricite_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Dépenses en électricité après réaction à la réforme - taxe carbone" + label = 'Dépenses en électricité après réaction à la réforme - taxe carbone' def formula(menage, period, parameters): depenses_electricite_variables = menage('depenses_electricite_variables', period) diff --git a/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/elasticites.py b/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/elasticites.py index 5d53afc8..36671634 100644 --- a/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/elasticites.py +++ b/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/elasticites.py @@ -7,70 +7,70 @@ class elas_exp_1(YearlyVariable): value_type = float entity = Menage - label = "Elasticité dépense carburants" + label = 'Elasticité dépense carburants' class elas_exp_2(YearlyVariable): value_type = float entity = Menage - label = "Elasticité dépense énergie logement" + label = 'Elasticité dépense énergie logement' class elas_exp_3(YearlyVariable): value_type = float entity = Menage - label = "Elasticité dépense autres biens non durables" + label = 'Elasticité dépense autres biens non durables' class elas_price_1_1(YearlyVariable): value_type = float entity = Menage - label = "Elasticité prix carburants" + label = 'Elasticité prix carburants' class elas_price_1_2(YearlyVariable): value_type = float entity = Menage - label = "Elasticité prix croisée carburants - énergie logement" + label = 'Elasticité prix croisée carburants - énergie logement' class elas_price_1_3(YearlyVariable): value_type = float entity = Menage - label = "Elasticité prix croisée carburants - autres biens non durables" + label = 'Elasticité prix croisée carburants - autres biens non durables' class elas_price_2_1(YearlyVariable): value_type = float entity = Menage - label = "Elasticité prix croisée énergie logement - carburants" + label = 'Elasticité prix croisée énergie logement - carburants' class elas_price_2_2(YearlyVariable): value_type = float entity = Menage - label = "Elasticité prix énergie logement" + label = 'Elasticité prix énergie logement' class elas_price_2_3(YearlyVariable): value_type = float entity = Menage - label = "Elasticité prix croisée énergie logement - autres biens non durables" + label = 'Elasticité prix croisée énergie logement - autres biens non durables' class elas_price_3_1(YearlyVariable): value_type = float entity = Menage - label = "Elasticité prix croisée autres biens non durables - carburants" + label = 'Elasticité prix croisée autres biens non durables - carburants' class elas_price_3_2(YearlyVariable): value_type = float entity = Menage - label = "Elasticité prix croisée autres biens non durables - énergie logement" + label = 'Elasticité prix croisée autres biens non durables - énergie logement' class elas_price_3_3(YearlyVariable): value_type = float entity = Menage - label = "Elasticité prix autres biens non durables" + label = 'Elasticité prix autres biens non durables' diff --git a/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/emissions_ajustees.py b/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/emissions_ajustees.py index 35368864..c33d4ddc 100644 --- a/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/emissions_ajustees.py +++ b/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/emissions_ajustees.py @@ -7,7 +7,7 @@ class emissions_CO2_carburants_ajustees(YearlyVariable): value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur consommation de carburants après réforme, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de carburants après réforme, en kg de CO2' def formula(menage, period, parameters): quantites_diesel_ajustees = menage('quantites_diesel_ajustees', period) @@ -41,7 +41,7 @@ def formula(menage, period, parameters): class emissions_CO2_gaz_ajustees: value_type = float entity = Menage - label = "Emissions de CO2 des ménages via leur consommation de gaz après réforme, en kg de CO2" + label = 'Emissions de CO2 des ménages via leur consommation de gaz après réforme, en kg de CO2' def formula(menage, period, parameters): quantites_gaz_ajustees = menage('quantites_gaz_ajustees_taxe_carbone', period) diff --git a/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/quantites_ajustees.py b/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/quantites_ajustees.py index 3ee7752b..5a29a2e5 100644 --- a/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/quantites_ajustees.py +++ b/openfisca_france_indirect_taxation/variables/reactions_comportementales_reforme/quantites_ajustees.py @@ -7,7 +7,7 @@ class quantites_diesel_ajustees(YearlyVariable): value_type = float entity = Menage - label = "Quantités de diesel consommées après la réforme des prix" + label = 'Quantités de diesel consommées après la réforme des prix' def formula(menage, period, parameters): depenses_diesel_ajustees = menage('depenses_diesel_ajustees', period) @@ -21,12 +21,12 @@ def formula(menage, period, parameters): class quantites_gaz_ajustees_taxe_carbone(YearlyVariable): value_type = float entity = Menage - label = "Quantités de gaz consommées après la réforme - taxe carbone" + label = 'Quantités de gaz consommées après la réforme - taxe carbone' def formula(menage, period, parameters): - depenses_gaz_ajustees_taxe_carbone = menage('depenses_gaz_ajustees_taxe_carbone', period) + depenses_gaz_ville_ajustees_taxe_carbone = menage('depenses_gaz_ville_ajustees_taxe_carbone', period) depenses_gaz_tarif_fixe = menage('depenses_gaz_tarif_fixe', period) - depenses_gaz_ajustees_variables = depenses_gaz_ajustees_taxe_carbone - depenses_gaz_tarif_fixe + depenses_gaz_ajustees_variables = depenses_gaz_ville_ajustees_taxe_carbone - depenses_gaz_tarif_fixe depenses_gaz_prix_unitaire = menage('depenses_gaz_prix_unitaire', period) reforme_gaz = parameters(period.start).taxe_carbone.gaz @@ -65,7 +65,7 @@ def formula(menage, period, parameters): class quantites_sp_e10_ajustees(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb e10 par les ménages après réforme" + label = 'Quantités consommées de sans plomb E10 par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_ajustees = menage('depenses_essence_ajustees', period) @@ -81,7 +81,7 @@ def formula(menage, period, parameters): class quantites_sp95_ajustees(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb 95 par les ménages après réforme" + label = 'Quantités consommées de sans plomb 95 par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_ajustees = menage('depenses_essence_ajustees', period) @@ -97,7 +97,7 @@ def formula(menage, period, parameters): class quantites_sp98_ajustees(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de sans plomb 98 par les ménages" + label = 'Quantités consommées de sans plomb 98 par les ménages' def formula(menage, period, parameters): depenses_essence_ajustees = menage('depenses_essence_ajustees', period) @@ -113,7 +113,7 @@ def formula(menage, period, parameters): class quantites_super_plombe_ajustees(YearlyVariable): value_type = float entity = Menage - label = "Quantités consommées de super plombé par les ménages après réforme" + label = 'Quantités consommées de super plombé par les ménages après réforme' def formula(menage, period, parameters): depenses_essence_ajustees = menage('depenses_essence_ajustees', period) diff --git a/openfisca_france_indirect_taxation/variables/revenus/revenus_menages.py b/openfisca_france_indirect_taxation/variables/revenus/revenus_menages.py index e74518e2..13c91bca 100644 --- a/openfisca_france_indirect_taxation/variables/revenus/revenus_menages.py +++ b/openfisca_france_indirect_taxation/variables/revenus/revenus_menages.py @@ -8,23 +8,23 @@ class Deciles(Enum): __order__ = 'hors_champs decile_1 decile_2 decile_3 decile_4 decile_5 decile_6 decile_7 decile_8 decile_9 decile_10' # Needed to keep the order in Python 2 - hors_champs = "Hors champ" - decile_1 = "1er décile" - decile_2 = "2nd décile" - decile_3 = "3e décile" - decile_4 = "4e décile" - decile_5 = "5e décile" - decile_6 = "6e décile" - decile_7 = "7e décile" - decile_8 = "8e décile" - decile_9 = "9e décile" - decile_10 = "10e décile" + hors_champs = 'Hors champ' + decile_1 = '1er décile' + decile_2 = '2nd décile' + decile_3 = '3e décile' + decile_4 = '4e décile' + decile_5 = '5e décile' + decile_6 = '6e décile' + decile_7 = '7e décile' + decile_8 = '8e décile' + decile_9 = '9e décile' + decile_10 = '10e décile' class decuc(YearlyVariable): value_type = float entity = Menage - label = "Décile de niveau de vie (revenu/unité de consommation)" + label = 'Décile de niveau de vie (revenu/unité de consommation)' class niveau_de_vie(YearlyVariable): @@ -43,7 +43,7 @@ class niveau_vie_decile(YearlyVariable): default_value = Deciles.hors_champs possible_values = Deciles entity = Menage - label = "Décile de niveau de vie" + label = 'Décile de niveau de vie' def formula(menage, period): niveau_de_vie = menage('niveau_de_vie', period) @@ -60,13 +60,13 @@ def formula(menage, period): class loyer_impute(YearlyVariable): value_type = float entity = Menage - label = "Loyer imputé du ménage" + label = 'Loyer imputé du ménage' class rev_apres_loyer(YearlyVariable): value_type = float entity = Menage - label = "Revenu disponible du ménage auquel on ajoute le loyer imputé" + label = 'Revenu disponible du ménage auquel on ajoute le loyer imputé' def formula(menage, period): revenu_disponible = menage('rev_disponible', period) @@ -80,13 +80,13 @@ def formula(menage, period): class rev_disp_loyerimput(YearlyVariable): value_type = float entity = Menage - label = "Revenu disponible du ménage auquel on ajoute le loyer imputé" + label = 'Revenu disponible du ménage auquel on ajoute le loyer imputé' class rev_disponible(YearlyVariable): value_type = float entity = Menage - label = "Revenu disponible du ménage" + label = 'Revenu disponible du ménage' class revdecm(YearlyVariable): @@ -98,10 +98,10 @@ class revdecm(YearlyVariable): class revtot(YearlyVariable): value_type = int entity = Menage - label = "Revenu total du ménage" + label = 'Revenu total du ménage' class revtotuc(YearlyVariable): value_type = int entity = Menage - label = "Revenu total par unité de consommation du ménage" + label = 'Revenu total par unité de consommation du ménage' diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/__init__.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/__init__.py index e69de29b..fcd131db 100644 --- a/openfisca_france_indirect_taxation/variables/taxes_indirectes/__init__.py +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/__init__.py @@ -0,0 +1,13 @@ +def get_accise_diesel_ticpe(parameters, period): + majoration_ticpe_diesel = \ + parameters(period.start).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + + accise_diesel = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.gazole + + accise_diesel_ticpe = ( + accise_diesel + if len(majoration_ticpe_diesel._children) == 0 # majoration_ticpe_diesel should return None + else accise_diesel + majoration_ticpe_diesel[42] # alsace + ) + + return accise_diesel_ticpe diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/alcools.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/alcools.py index b5824390..51bbc3a4 100644 --- a/openfisca_france_indirect_taxation/variables/taxes_indirectes/alcools.py +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/alcools.py @@ -48,7 +48,7 @@ def formula(menage, period, parameters): class depenses_biere(YearlyVariable): value_type = float entity = Menage - label = "Dépenses de bière" + label = 'Dépenses de bière' def formula(menage, period, parameters): depenses_ht_biere = menage('depenses_ht_biere', period) @@ -85,7 +85,7 @@ def formula(menage, period, parameters): class depenses_vin(YearlyVariable): value_type = float entity = Menage - label = "Dépenses de vin" + label = 'Dépenses de vin' def formula(menage, period, parameters): depenses_ht_vin = menage('depenses_ht_vin', period) diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/assurances.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/assurances.py index 4a7a89be..7ba5c920 100644 --- a/openfisca_france_indirect_taxation/variables/taxes_indirectes/assurances.py +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/assurances.py @@ -8,7 +8,7 @@ class assurance_sante_taxe(YearlyVariable): value_type = float entity = Menage label = "Montant des taxes sur l'assurance santé" - end = "2016-12-31" + end = '2016-12-31' def formula(menage, period, parameters): depenses_assurance_sante = menage('depenses_assurance_sante', period) @@ -50,7 +50,7 @@ def formula_2004(menage, period, parameters): class autres_assurances_taxe(YearlyVariable): value_type = float entity = Menage - label = "Montant des taxes sur les autres assurances" + label = 'Montant des taxes sur les autres assurances' def formula(menage, period, parameters): depenses_autres_assurances = menage('depenses_autres_assurances', period) @@ -61,7 +61,7 @@ def formula(menage, period, parameters): class total_assurances_taxe(YearlyVariable): value_type = float entity = Menage - label = "Montant des taxes sur les assurances" + label = 'Montant des taxes sur les assurances' def formula(menage, period): assurance_transport_taxe = menage('assurance_transport_taxe', period) diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/depense_carburant_ht.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/depense_carburant_ht.py new file mode 100644 index 00000000..982ed040 --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/depense_carburant_ht.py @@ -0,0 +1,192 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR + + +# dépense differents types de gazole HT: + + +class depense_gazole_b7_ht(Variable): + value_type = float + entity = Menage + label = 'dépense en gazole B7 HT' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + nombre_litres_gazole_b7 = menage('nombre_litres_gazole_b7', period) + prix_gazole_b7_ht = menage('prix_gazole_b7_ht', period) + depense_gazole_b7_ht = nombre_litres_gazole_b7 * prix_gazole_b7_ht + return depense_gazole_b7_ht + + +class depense_gazole_b10_ht(Variable): + value_type = float + entity = Menage + label = 'dépense en gazole B10 HT' + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period): + nombre_litres_gazole_b10 = menage('nombre_litres_gazole_b10', period) + prix_gazole_b10_ht = menage('prix_gazole_b10_ht', period) + depense_gazole_b10_ht = nombre_litres_gazole_b10 * prix_gazole_b10_ht + return depense_gazole_b10_ht + + +# dépense gazole total HT: + +class depense_gazole_total_ht(Variable): + value_type = float + entity = Menage + label = 'dépense totale en gazole HT' + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period): + depense_gazole_b7_ht = menage('depense_gazole_b7_ht', period) + depense_gazole_b10_ht = menage('depense_gazole_b10_ht', period) + depense_gazole_total_ht = (depense_gazole_b7_ht + depense_gazole_b10_ht) + return depense_gazole_total_ht + + def formula(menage, period): + depense_gazole_b7_ht = menage('depense_gazole_b7_ht', period) + depense_gazole_total_ht = depense_gazole_b7_ht + return depense_gazole_total_ht + + +# dépense differents types d'essence HT: + + +class depense_essence_sp95_e10_ht(Variable): + value_type = float + entity = Menage + label = "dépense en essence SP95 E10 HT" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period): + nombre_litres_essence_sp95_e10 = menage('nombre_litres_essence_sp95_e10', period) + prix_essence_sp95_e10_ht = menage('prix_essence_sp95_e10_ht', period) + depense_essence_sp95_e10_ht = nombre_litres_essence_sp95_e10 * prix_essence_sp95_e10_ht + return depense_essence_sp95_e10_ht + + +class depense_essence_sp95_ht(Variable): + value_type = float + entity = Menage + label = "dépense en essence SP95 HT" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + nombre_litres_essence_sp95 = menage('nombre_litres_essence_sp95', period) + prix_essence_sp95_ht = menage('prix_essence_sp95_ht', period) + depense_essence_sp95_ht = nombre_litres_essence_sp95 * prix_essence_sp95_ht + return depense_essence_sp95_ht + + +class depense_essence_sp98_ht(Variable): + value_type = float + entity = Menage + label = "dépense en essence SP98 HT" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + nombre_litres_essence_sp98 = menage('nombre_litres_essence_sp98', period) + prix_essence_sp98_ht = menage('prix_essence_sp98_ht', period) + depense_essence_sp98_ht = nombre_litres_essence_sp98 * prix_essence_sp98_ht + return depense_essence_sp98_ht + + +class depense_essence_super_plombe_ht(Variable): + value_type = float + entity = Menage + label = "dépense en essence super plombé HT" + definition_period = YEAR + default_value = 0 + end = "2017-01-01" + + def formula(menage, period): + nombre_litres_essence_super_plombe = menage('nombre_litres_essence_super_plombe', period) + prix_essence_super_plombe_ht = menage('prix_essence_super_plombe_ht', period) + depense_essence_super_plombe_ht = nombre_litres_essence_super_plombe * prix_essence_super_plombe_ht + return depense_essence_super_plombe_ht + + +class depense_essence_e85_ht(Variable): + value_type = float + entity = Menage + label = "dépense en essence E85 HT" + definition_period = YEAR + default_value = 0 + + def formula_2007(menage, period): + nombre_litres_essence_e85 = menage('nombre_litres_essence_e85', period) + prix_essence_e85_ht = menage('prix_essence_e85_ht', period) + depense_essence_e85_ht = nombre_litres_essence_e85 * prix_essence_e85_ht + return depense_essence_e85_ht + + +# dépense essence total HT: + +class depense_essence_total_ht(Variable): + value_type = float + entity = Menage + label = "Calcul du montant des dépenses sur tous les types d'essences cumulés HT" + definition_period = YEAR + + def formula_2009(menage, period): + depense_essence_sp95_ht = menage('depense_essence_sp95_ht', period) + depense_essence_sp98_ht = menage('depense_essence_sp98_ht', period) + depense_essence_e85_ht = menage('depense_essence_e85_ht', period) + depense_essence_sp95_e10_ht = menage('depense_essence_sp95_e10_ht', period) + depense_essence_total_ht = (depense_essence_sp95_ht + depense_essence_sp98_ht + depense_essence_e85_ht + depense_essence_sp95_e10_ht) + return depense_essence_total_ht + + def formula_2007(menage, period): + depense_essence_sp95_ht = menage('depense_essence_sp95_ht', period) + depense_essence_sp98_ht = menage('depense_essence_sp98_ht', period) + depense_essence_e85_ht = menage('depense_essence_e85_ht', period) + depense_essence_total_ht = (depense_essence_sp95_ht + depense_essence_sp98_ht + depense_essence_e85_ht) + return depense_essence_total_ht + + def formula_1990(menage, period): + depense_essence_sp95_ht = menage('depense_essence_sp95_ht', period) + depense_essence_sp98_ht = menage('depense_essence_sp98_ht', period) + depense_essence_super_plombe_ht = menage('depense_essence_super_plombe_ht', period) + depense_essence_total_ht = (depense_essence_sp95_ht + depense_essence_sp98_ht + depense_essence_super_plombe_ht) + return depense_essence_total_ht + + +# dépense gaz de pétrole liquéfié carburant HT: + + +class depense_gpl_carburant_ht(Variable): + value_type = float + entity = Menage + label = 'dépense en gaz de pétrole liquéfié - carburant HT' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + nombre_litres_gpl_carburant = menage('nombre_litres_gpl_carburant', period) + prix_gpl_carburant_ht = menage('prix_gpl_carburant_ht', period) + depense_gpl_carburant_ht = nombre_litres_gpl_carburant * prix_gpl_carburant_ht + return depense_gpl_carburant_ht + + +# dépense carburant total HT: + + +class depense_carburant_total_ht(Variable): + value_type = float + entity = Menage + label = 'Calcul du montant des dépenses sur tous les carburants cumulés HT' + definition_period = YEAR + + def formula(menage, period): + depense_essence_total_ht = menage('depense_essence_total_ht', period) + depense_gazole_total_ht = menage('depense_gazole_total_ht', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ht', period) + depense_carburant_total_ht = depense_gazole_total_ht + depense_essence_total_ht + depense_gpl_carburant_ht + return depense_carburant_total_ht diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/depense_carburant_ttc.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/depense_carburant_ttc.py new file mode 100644 index 00000000..103543e3 --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/depense_carburant_ttc.py @@ -0,0 +1,247 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR + +# dépense differents types de gazole TTC: + + +class depense_gazole_b7_ttc(Variable): + value_type = float + entity = Menage + label = 'dépense en gazole B7 TTC' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + depense_gazole_b7_ht = menage('depense_gazole_b7_ht', period) + gazole_b7_ticpe = menage('gazole_b7_ticpe', period) + tva_sur_gazole_b7 = menage('tva_sur_gazole_b7', period) + depense_gazole_b7_ttc = depense_gazole_b7_ht + gazole_b7_ticpe + tva_sur_gazole_b7 + return depense_gazole_b7_ttc + + +class depense_gazole_b10_ttc(Variable): + value_type = float + entity = Menage + label = 'dépense en gazole B10 TTC' + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period): + depense_gazole_b10_ht = menage('depense_gazole_b10_ht', period) + gazole_b10_ticpe = menage('gazole_b10_ticpe', period) + tva_sur_gazole_b10 = menage('tva_sur_gazole_b10', period) + depense_gazole_b10_ttc = depense_gazole_b10_ht + gazole_b10_ticpe + tva_sur_gazole_b10 + return depense_gazole_b10_ttc + + +# dépense gazole total HT: + + +class depense_gazole_total_ttc(Variable): + value_type = float + entity = Menage + label = 'dépense totale en gazole TTC' + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period): + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc', period) + depense_gazole_b10_ttc = menage('depense_gazole_b10_ttc', period) + depense_gazole_total_ttc = (depense_gazole_b7_ttc + depense_gazole_b10_ttc) + return depense_gazole_total_ttc + + def formula(menage, period): + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc', period) + depense_gazole_total_ttc = depense_gazole_b7_ttc + return depense_gazole_total_ttc + +# dépense differents types d'essence TTC: + + +class depense_essence_sp95_e10_ttc(Variable): + value_type = float + entity = Menage + label = "Dépense en essence SP95 E10 TTC" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period): + depense_essence_sp95_e10_ht = menage('depense_essence_sp95_e10_ht', period) + essence_sp95_e10_ticpe = menage('essence_sp95_e10_ticpe', period) + tva_sur_essence_sp95_e10 = menage('tva_sur_essence_sp95_e10', period) + depense_essence_sp95_e10_ttc = depense_essence_sp95_e10_ht + essence_sp95_e10_ticpe + tva_sur_essence_sp95_e10 + return depense_essence_sp95_e10_ttc + + +class depense_essence_sp95_ttc(Variable): + value_type = float + entity = Menage + label = "Dépense en essence SP95 TTC" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + depense_essence_sp95_ht = menage('depense_essence_sp95_ht', period) + essence_sp95_ticpe = menage('essence_sp95_ticpe', period) + tva_sur_essence_sp95 = menage('tva_sur_essence_sp95', period) + depense_essence_sp95_ttc = depense_essence_sp95_ht + essence_sp95_ticpe + tva_sur_essence_sp95 + return depense_essence_sp95_ttc + + +class depense_essence_sp98_ttc(Variable): + value_type = float + entity = Menage + label = "Dépense en essence SP98 TTC" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + depense_essence_sp98_ht = menage('depense_essence_sp98_ht', period) + essence_sp98_ticpe = menage('essence_sp98_ticpe', period) + tva_sur_essence_sp98 = menage('tva_sur_essence_sp98', period) + depense_essence_sp98_ttc = depense_essence_sp98_ht + essence_sp98_ticpe + tva_sur_essence_sp98 + return depense_essence_sp98_ttc + + +class depense_essence_super_plombe_ttc(Variable): + value_type = float + entity = Menage + label = "dépense en essence super plombé TTC" + definition_period = YEAR + default_value = 0 + end = "2007-01-01" + + def formula(menage, period): + depense_essence_super_plombe_ht = menage('depense_essence_super_plombe_ht', period) + essence_super_plombe_ticpe = menage('essence_super_plombe_ticpe', period) + tva_sur_essence_super_plombe = menage('tva_sur_essence_super_plombe', period) + depense_essence_super_plombe_ttc = depense_essence_super_plombe_ht + essence_super_plombe_ticpe + tva_sur_essence_super_plombe + return depense_essence_super_plombe_ttc + + +class depense_essence_e85_ttc(Variable): + value_type = float + entity = Menage + label = "dépense en essence E85 TTC" + definition_period = YEAR + default_value = 0 + + def formula_2007(menage, period): + depense_essence_e85_ht = menage('depense_essence_e85_ht', period) + essence_e85_ticpe = menage('essence_e85_ticpe', period) + tva_sur_essence_e85 = menage('tva_sur_essence_e85', period) + depense_essence_e85_ttc = depense_essence_e85_ht + essence_e85_ticpe + tva_sur_essence_e85 + return depense_essence_e85_ttc + + +# dépense essence total TTC: + +class depense_essence_total_ttc(Variable): + value_type = float + entity = Menage + label = "Calcul du montant des dépenses sur tous les types d'essences cumulés TTC" + definition_period = YEAR + + def formula_2009(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc', period) + depense_essence_e85_ttc = menage('depense_essence_e85_ttc', period) + depense_essence_sp95_e10_ttc = menage('depense_essence_sp95_e10_ttc', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_e85_ttc + depense_essence_sp95_e10_ttc) + return depense_essence_total_ttc + + def formula_2007(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc', period) + depense_essence_e85_ttc = menage('depense_essence_e85_ttc', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_e85_ttc) + return depense_essence_total_ttc + + def formula_1990(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc', period) + depense_essence_super_plombe_ttc = menage('depense_essence_super_plombe_ttc', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_super_plombe_ttc) + return depense_essence_total_ttc + +# dépense gaz de pétrole liquéfié carburant TTC: + + +class depense_gpl_carburant_ttc(Variable): + value_type = float + entity = Menage + label = 'dépense en gaz de pétrole liquéfié - carburant TTC' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ht', period) + gpl_carburant_ticpe = menage('gpl_carburant_ticpe', period) + tva_sur_gpl_carburant = menage('tva_sur_gpl_carburant', period) + depense_gpl_carburant_ttc = depense_gpl_carburant_ht + gpl_carburant_ticpe + tva_sur_gpl_carburant + return depense_gpl_carburant_ttc + + +# dépense carburant total TTC: + +class depense_carburant_total_ttc(Variable): + value_type = float + entity = Menage + label = 'Calcul du montant des dépenses sur tous les carburants cumulés TTC' + definition_period = YEAR + + def formula(menage, period): + depense_essence_total_ht = menage('depense_essence_total_ttc', period) + depense_gazole_total_ht = menage('depense_gazole_total_ttc', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ttc', period) + depense_carburant_total_ht = depense_gazole_total_ht + depense_essence_total_ht + depense_gpl_carburant_ht + return depense_carburant_total_ht + + +class depense_carburant_total_ttc_sans_distinction(Variable): + value_type = float + entity = Menage + label = 'Calcul du montant des dépenses sur tous les carburants cumulés TTC ' + definition_period = YEAR + + def formula_2017(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc', period) + depense_essence_e85_ttc = menage('depense_essence_e85_ttc', period) + depense_essence_sp95_e10_ttc = menage('depense_essence_sp95_e10_ttc', period) + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc', period) + depense_gazole_b10_ttc = menage('depense_gazole_b10_ttc', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ttc', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_e85_ttc + + depense_essence_sp95_e10_ttc + depense_gazole_b7_ttc + depense_gazole_b10_ttc + depense_gpl_carburant_ht) + return depense_essence_total_ttc + + def formula_2009(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc', period) + depense_essence_e85_ttc = menage('depense_essence_e85_ttc', period) + depense_essence_sp95_e10_ttc = menage('depense_essence_sp95_e10_ttc', period) + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ttc', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_e85_ttc + + depense_essence_sp95_e10_ttc + depense_gazole_b7_ttc + depense_gpl_carburant_ht) + return depense_essence_total_ttc + + def formula_2007(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc', period) + depense_essence_e85_ttc = menage('depense_essence_e85_ttc', period) + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ttc', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_e85_ttc + + depense_gazole_b7_ttc + depense_gpl_carburant_ht) + return depense_essence_total_ttc + + def formula_1990(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc', period) + depense_essence_super_plombe_ttc = menage('depense_essence_super_plombe_ttc', period) + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ttc', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_super_plombe_ttc + + depense_gazole_b7_ttc + depense_gpl_carburant_ht) + return depense_essence_total_ttc diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/depense_carburant_ttc_entree.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/depense_carburant_ttc_entree.py new file mode 100644 index 00000000..7f6cbd87 --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/depense_carburant_ttc_entree.py @@ -0,0 +1,285 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR + +# dépense differents types de gazole TTC: + + +class depense_gazole_b7_ttc_entree(Variable): + value_type = float + entity = Menage + label = 'dépense en gazole B7 TTC' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + part_depenses_B7 = 1.0 + depense_gazole_total_ttc_entree = menage('depense_gazole_total_ttc_entree', period) + depense_gazole_b7_ttc_entree = depense_gazole_total_ttc_entree * part_depenses_B7 + return depense_gazole_b7_ttc_entree + + +class depense_gazole_b10_ttc_entree(Variable): # Il n'y a pour le moment pas assez d'usages de ce carburant (et donc de données) + value_type = float + entity = Menage + label = 'dépense en gazole B10 TTC' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + part_depenses_B10 = 0.0 + depense_gazole_total_ttc_entree = menage('depense_gazole_total_ttc_entree', period) + depense_gazole_b10_ttc_entree = depense_gazole_total_ttc_entree * part_depenses_B10 + return depense_gazole_b10_ttc_entree + + +# dépense differents types d'essence TTC: + + +class depense_essence_sp95_e10_ttc_entree(Variable): + value_type = float + entity = Menage + label = "Dépense en essence SP95 E10 TTC" + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + depense_essence_total_ttc_entree = menage('depense_essence_total_ttc_entree', period) + sp_e10 = parameters(period.start).imposition_indirecte.part_type_supercarburants.sp_e10 + depense_essence_sp95_e10_ttc_entree = depense_essence_total_ttc_entree * sp_e10 + return depense_essence_sp95_e10_ttc_entree + + +class depense_essence_sp95_ttc_entree(Variable): + value_type = float + entity = Menage + label = "Dépense en essence SP95 TTC" + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + depense_essence_total_ttc_entree = menage('depense_essence_total_ttc_entree', period) + sp_95 = parameters(period.start).imposition_indirecte.part_type_supercarburants.sp_95 + depense_essence_sp95_ttc_entree = depense_essence_total_ttc_entree * sp_95 + return depense_essence_sp95_ttc_entree + + +class depense_essence_sp98_ttc_entree(Variable): + value_type = float + entity = Menage + label = "Dépense en essence SP98 TTC" + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + depense_essence_total_ttc_entree = menage('depense_essence_total_ttc_entree', period) + sp_98 = parameters(period.start).imposition_indirecte.part_type_supercarburants.sp_98 + depense_essence_sp98_ttc_entree = depense_essence_total_ttc_entree * sp_98 + return depense_essence_sp98_ttc_entree + + +class depense_essence_super_plombe_ttc_entree(Variable): + value_type = float + entity = Menage + label = "dépense en essence super plombé TTC" + definition_period = YEAR + default_value = 0 + end = "2007-01-01" + + def formula(menage, period, parameters): + depense_essence_total_ttc_entree = menage('depense_essence_total_ttc_entree', period) + super_plombe = parameters(period.start).imposition_indirecte.part_type_supercarburants.super_plombe + depense_essence_super_plombe_ttc_entree = depense_essence_total_ttc_entree * super_plombe + return depense_essence_super_plombe_ttc_entree + + +class depense_essence_e85_ttc_entree(Variable): + value_type = float + entity = Menage + label = "dépense en essence E85 TTC" + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + depense_essence_total_ttc_entree = menage('depense_essence_total_ttc_entree', period) + sp_e85 = parameters(period.start).imposition_indirecte.part_type_supercarburants.sp_e85 + depense_essence_e85_ttc_entree = depense_essence_total_ttc_entree * sp_e85 + return depense_essence_e85_ttc_entree + + +# dépense total TTC: + + +class depenses_carburants_entree(Variable): + value_type = float + entity = Menage + label = 'Consommation de carburants' + definition_period = YEAR + default_value = 0 + + +class depense_gazole_total_ttc_entree(Variable): + value_type = float + entity = Menage + label = 'Construction par pondération des dépenses spécifiques au diesel' + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + conso_moyenne_vp_diesel = parameters(period.start).conso_vp_moyenne.voitures_particulieres_diesel + conso_moyenne_vp_essence = parameters(period.start).conso_vp_moyenne.voitures_particulieres_essence + conso_moyenne_vp_gpl = parameters(period.start).conso_vp_moyenne.voitures_particulieres_gpl + + parcours_moyenne_vp_diesel_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_diesel + parcours_moyenne_vp_essense_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_essence + parcours_moyenne_vp_gpl_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_gpl + + conso_moyenne_du_parcours_moyen_vp_diesel = parcours_moyenne_vp_diesel_en_km * conso_moyenne_vp_diesel / 100 + conso_moyenne_du_parcours_moyen_vp_essence = parcours_moyenne_vp_essense_en_km * conso_moyenne_vp_essence / 100 + conso_moyenne_du_parcours_moyen_vp_gpl = parcours_moyenne_vp_gpl_en_km * conso_moyenne_vp_gpl / 100 + + nombre_vehicules_diesel = menage('veh_diesel', period) + nombre_vehicules_essence = menage('veh_essence', period) + nombre_vehicules_gpl = menage('veh_gpl', period) + nombre_vehicules_total = nombre_vehicules_diesel + nombre_vehicules_essence + nombre_vehicules_gpl + + depenses_carburants = menage('depenses_carburants_entree', period) + + # to compute part_conso_diesel we need to avoid dividing by zero for those we do not have any vehicle + # Thus, we choose arbitrarily to divide it by 1, but this choice won't affect the result as long as it is not 0 + denominateur = ( + (nombre_vehicules_total != 0) * (nombre_vehicules_diesel * conso_moyenne_du_parcours_moyen_vp_diesel) + (nombre_vehicules_essence * conso_moyenne_du_parcours_moyen_vp_essence) + (nombre_vehicules_gpl * conso_moyenne_du_parcours_moyen_vp_gpl) + ) + (nombre_vehicules_total == 0) * 1 + + part_conso_gazole = (nombre_vehicules_diesel * conso_moyenne_du_parcours_moyen_vp_diesel) / denominateur + + depenses_gazole = depenses_carburants * part_conso_gazole + return depenses_gazole + + +class depense_essence_total_ttc_entree(Variable): + value_type = float + entity = Menage + label = 'Construction par pondération des dépenses spécifiques au diesel' + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + conso_moyenne_vp_diesel = parameters(period.start).conso_vp_moyenne.voitures_particulieres_diesel + conso_moyenne_vp_essence = parameters(period.start).conso_vp_moyenne.voitures_particulieres_essence + conso_moyenne_vp_gpl = parameters(period.start).conso_vp_moyenne.voitures_particulieres_gpl + + parcours_moyenne_vp_diesel_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_diesel + parcours_moyenne_vp_essense_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_essence + parcours_moyenne_vp_gpl_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_gpl + + conso_moyenne_du_parcours_moyen_vp_diesel = parcours_moyenne_vp_diesel_en_km * conso_moyenne_vp_diesel / 100 + conso_moyenne_du_parcours_moyen_vp_essence = parcours_moyenne_vp_essense_en_km * conso_moyenne_vp_essence / 100 + conso_moyenne_du_parcours_moyen_vp_gpl = parcours_moyenne_vp_gpl_en_km * conso_moyenne_vp_gpl / 100 + + nombre_vehicules_diesel = menage('veh_diesel', period) + nombre_vehicules_essence = menage('veh_essence', period) + nombre_vehicules_gpl = menage('veh_gpl', period) + nombre_vehicules_total = nombre_vehicules_diesel + nombre_vehicules_essence + nombre_vehicules_gpl + + depenses_carburants = menage('depenses_carburants_entree', period) + + # to compute part_conso_diesel we need to avoid dividing by zero for those we do not have any vehicle + # Thus, we choose arbitrarily to divide it by 1, but this choice won't affect the result as long as it is not 0 + denominateur = ( + (nombre_vehicules_total != 0) * (nombre_vehicules_diesel * conso_moyenne_du_parcours_moyen_vp_diesel) + (nombre_vehicules_essence * conso_moyenne_du_parcours_moyen_vp_essence) + (nombre_vehicules_gpl * conso_moyenne_du_parcours_moyen_vp_gpl) + ) + (nombre_vehicules_total == 0) * 1 + + part_conso_essence = (nombre_vehicules_essence * conso_moyenne_du_parcours_moyen_vp_essence) / denominateur + + depenses_essence = depenses_carburants * part_conso_essence + return depenses_essence + +# dépense gaz de pétrole liquéfié carburant TTC: + + +class depense_gpl_carburant_ttc_entree(Variable): + value_type = float + entity = Menage + label = 'dépense en gaz de pétrole liquéfié - carburant TTC' + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + conso_moyenne_vp_diesel = parameters(period.start).conso_vp_moyenne.voitures_particulieres_diesel + conso_moyenne_vp_essence = parameters(period.start).conso_vp_moyenne.voitures_particulieres_essence + conso_moyenne_vp_gpl = parameters(period.start).conso_vp_moyenne.voitures_particulieres_gpl + + parcours_moyenne_vp_diesel_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_diesel + parcours_moyenne_vp_essense_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_essence + parcours_moyenne_vp_gpl_en_km = parameters(period.start).taille_parcours_moyen.voitures_particulieres_gpl + + conso_moyenne_du_parcours_moyen_vp_diesel = parcours_moyenne_vp_diesel_en_km * conso_moyenne_vp_diesel / 100 + conso_moyenne_du_parcours_moyen_vp_essence = parcours_moyenne_vp_essense_en_km * conso_moyenne_vp_essence / 100 + conso_moyenne_du_parcours_moyen_vp_gpl = parcours_moyenne_vp_gpl_en_km * conso_moyenne_vp_gpl / 100 + + nombre_vehicules_diesel = menage('veh_diesel', period) + nombre_vehicules_essence = menage('veh_essence', period) + nombre_vehicules_gpl = menage('veh_gpl', period) + nombre_vehicules_total = nombre_vehicules_diesel + nombre_vehicules_essence + nombre_vehicules_gpl + + depenses_carburants = menage('depenses_carburants_entree', period) + + # to compute part_conso_diesel we need to avoid dividing by zero for those we do not have any vehicle + # Thus, we choose arbitrarily to divide it by 1, but this choice won't affect the result as long as it is not 0 + denominateur = ( + (nombre_vehicules_total != 0) * (nombre_vehicules_diesel * conso_moyenne_du_parcours_moyen_vp_diesel) + (nombre_vehicules_essence * conso_moyenne_du_parcours_moyen_vp_essence) + (nombre_vehicules_gpl * conso_moyenne_du_parcours_moyen_vp_gpl) + ) + (nombre_vehicules_total == 0) * 1 + + part_conso_gpl = (nombre_vehicules_gpl * conso_moyenne_du_parcours_moyen_vp_gpl) / denominateur + + depenses_gpl = depenses_carburants * part_conso_gpl + return depenses_gpl + + +class depense_carburant_total_ttc_sans_distinction_entree(Variable): + value_type = float + entity = Menage + label = 'Calcul du montant des dépenses sur tous les carburants cumulés TTC ' + definition_period = YEAR + + def formula_2017(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc_entree', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc_entree', period) + depense_essence_e85_ttc = menage('depense_essence_e85_ttc_entree', period) + depense_essence_sp95_e10_ttc = menage('depense_essence_sp95_e10_ttc_entree', period) + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc_entree', period) + depense_gazole_b10_ttc = menage('depense_gazole_b10_ttc_entree', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ttc_entree', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_e85_ttc + + depense_essence_sp95_e10_ttc + depense_gazole_b7_ttc + depense_gazole_b10_ttc + depense_gpl_carburant_ht) + return depense_essence_total_ttc + + def formula_2009(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc_entree', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc_entree', period) + depense_essence_e85_ttc = menage('depense_essence_e85_ttc_entree', period) + depense_essence_sp95_e10_ttc = menage('depense_essence_sp95_e10_ttc_entree', period) + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc_entree', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ttc_entree', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_e85_ttc + + depense_essence_sp95_e10_ttc + depense_gazole_b7_ttc + depense_gpl_carburant_ht) + return depense_essence_total_ttc + + def formula_2007(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc_entree', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc_entree', period) + depense_essence_e85_ttc = menage('depense_essence_e85_ttc_entree', period) + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc_entree', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ttc_entree', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_e85_ttc + + depense_gazole_b7_ttc + depense_gpl_carburant_ht) + return depense_essence_total_ttc + + def formula_1990(menage, period): + depense_essence_sp95_ttc = menage('depense_essence_sp95_ttc_entree', period) + depense_essence_sp98_ttc = menage('depense_essence_sp98_ttc_entree', period) + depense_essence_super_plombe_ttc = menage('depense_essence_super_plombe_ttc_entree', period) + depense_gazole_b7_ttc = menage('depense_gazole_b7_ttc_entree', period) + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ttc_entree', period) + depense_essence_total_ttc = (depense_essence_sp95_ttc + depense_essence_sp98_ttc + depense_essence_super_plombe_ttc + + depense_gazole_b7_ttc + depense_gpl_carburant_ht) + return depense_essence_total_ttc diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/litre_carburants.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/litre_carburants.py new file mode 100644 index 00000000..0a71651e --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/litre_carburants.py @@ -0,0 +1,202 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR +import numpy as np + +# caracteristiques menages + + +class code_region(Variable): + value_type = str + entity = Menage + label = 'code region du menage' + definition_period = YEAR + + +# nombre de litres par type de gazole + +class nombre_litres_gazole_b7(Variable): + value_type = float + entity = Menage + label = 'nombre de litre de gazole B7 consommés par le ménage' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + depense_gazole_b7_ttc_entree = menage('depense_gazole_b7_ttc_entree', period) + prix_gazole_b7_ttc = menage('prix_gazole_b7_ttc', period) + nombre_litres_gazole_b7 = np.divide(depense_gazole_b7_ttc_entree, prix_gazole_b7_ttc, out=np.zeros_like(depense_gazole_b7_ttc_entree), where= prix_gazole_b7_ttc != 0) + return nombre_litres_gazole_b7 + + +class nombre_litres_gazole_b10(Variable): # ATTENTION: pas de prix disponible pour gazole B10, on utilise prix du gazole B7 + value_type = float + entity = Menage + label = 'nombre de litre de gazole B10 consommés par le ménage' + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period): + depense_gazole_b10_ttc_entree = menage('depense_gazole_b10_ttc_entree', period) + prix_gazole_b10_ttc = menage('prix_gazole_b10_ttc', period) + nombre_litres_gazole_b10 = np.divide(depense_gazole_b10_ttc_entree, prix_gazole_b10_ttc, out=np.zeros_like(depense_gazole_b10_ttc_entree), where= prix_gazole_b10_ttc != 0) + return nombre_litres_gazole_b10 + +# nombre de litre de gazole total: + + +class nombre_litres_gazole_total(Variable): + value_type = float + entity = Menage + label = 'nombre de litre de gazole total' + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period): + nombre_litres_gazole_b7 = menage('nombre_litres_gazole_b7', period) + nombre_litres_gazole_b10 = menage('nombre_litres_gazole_b10', period) + nombre_litres_gazole_total = (nombre_litres_gazole_b7 + nombre_litres_gazole_b10) + return nombre_litres_gazole_total + + def formula(menage, period): + nombre_litres_gazole_b7 = menage('nombre_litres_gazole_b7', period) + nombre_litres_gazole_total = nombre_litres_gazole_b7 + return nombre_litres_gazole_total + + +# nombre litres essence + + +class nombre_litres_essence_sp95_e10(Variable): + value_type = float + entity = Menage + label = "nombre de litre d'essence SP95 E10 consommés par le ménage" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period): + depense_essence_sp95_e10_ttc_entree = menage('depense_essence_sp95_e10_ttc_entree', period) + prix_essence_sp95_e10_ttc = menage('prix_essence_sp95_e10_ttc', period) + nombre_litres_essence_sp95_e10 = np.divide(depense_essence_sp95_e10_ttc_entree, prix_essence_sp95_e10_ttc, out=np.zeros_like(depense_essence_sp95_e10_ttc_entree), where= prix_essence_sp95_e10_ttc != 0) + return nombre_litres_essence_sp95_e10 + + +class nombre_litres_essence_sp95(Variable): + value_type = float + entity = Menage + label = "nombre de litre d'essence SP95 consommés par le ménage" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + depense_essence_sp95_ttc_entree = menage('depense_essence_sp95_ttc_entree', period) + prix_essence_sp95_ttc = menage('prix_essence_sp95_ttc', period) + nombre_litres_essence_sp95 = np.divide(depense_essence_sp95_ttc_entree, prix_essence_sp95_ttc, out=np.zeros_like(depense_essence_sp95_ttc_entree), where= prix_essence_sp95_ttc != 0) + return nombre_litres_essence_sp95 + + +class nombre_litres_essence_sp98(Variable): + value_type = float + entity = Menage + label = "nombre de litre d'essence SP98 consommés par le ménage" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + depense_essence_sp98_ttc_entree = menage('depense_essence_sp98_ttc_entree', period) + prix_essence_sp98_ttc = menage('prix_essence_sp98_ttc', period) + nombre_litres_essence_sp98 = np.divide(depense_essence_sp98_ttc_entree, prix_essence_sp98_ttc, out=np.zeros_like(depense_essence_sp98_ttc_entree), where= prix_essence_sp98_ttc != 0) + return nombre_litres_essence_sp98 + + +class nombre_litres_essence_super_plombe(Variable): + value_type = float + entity = Menage + label = 'nombre de litre de super plombé consommés par le ménage' + definition_period = YEAR + default_value = 0 + end = "2017-01-01" + + def formula(menage, period): + depense_essence_super_plombe_ttc_entree = menage('depense_essence_super_plombe_ttc_entree', period) + prix_essence_super_plombe_ttc = menage('prix_essence_super_plombe_ttc', period) + nombre_litres_essence_super_plombe = np.divide(depense_essence_super_plombe_ttc_entree, prix_essence_super_plombe_ttc, out=np.zeros_like(depense_essence_super_plombe_ttc_entree), where= prix_essence_super_plombe_ttc != 0) + return nombre_litres_essence_super_plombe + + +class nombre_litres_essence_e85(Variable): + value_type = float + entity = Menage + label = "nombre de litre d'essence E85 par le ménage" + definition_period = YEAR + default_value = 0 + + def formula_2007(menage, period): + depense_essence_e85_ttc_entree = menage('depense_essence_e85_ttc_entree', period) + prix_essence_e85_ttc = menage('prix_essence_e85_ttc', period) + nombre_litres_essence_e85 = depense_essence_e85_ttc_entree / prix_essence_e85_ttc + nombre_litres_essence_e85 = np.divide(depense_essence_e85_ttc_entree, prix_essence_e85_ttc, out=np.zeros_like(depense_essence_e85_ttc_entree), where= prix_essence_e85_ttc != 0) + return nombre_litres_essence_e85 + + +# montant TVA total sur l'essence + +class nombre_litres_essence_total(Variable): + value_type = float + entity = Menage + label = "nombre de litre d'essence total" + definition_period = YEAR + + def formula_2009(menage, period): + nombre_litres_essence_sp95 = menage('nombre_litres_essence_sp95', period) + nombre_litres_essence_sp98 = menage('nombre_litres_essence_sp98', period) + nombre_litres_essence_e85 = menage('nombre_litres_essence_e85', period) + nombre_litres_essence_sp95_e10 = menage('nombre_litres_essence_sp95_e10', period) + nombre_litres_essence_total = (nombre_litres_essence_sp95 + nombre_litres_essence_sp98 + nombre_litres_essence_e85 + nombre_litres_essence_sp95_e10) + return nombre_litres_essence_total + + def formula_2007(menage, period): + nombre_litres_essence_sp95 = menage('nombre_litres_essence_sp95', period) + nombre_litres_essence_sp98 = menage('nombre_litres_essence_sp98', period) + nombre_litres_essence_e85 = menage('nombre_litres_essence_e85', period) + nombre_litres_essence_total = (nombre_litres_essence_sp95 + nombre_litres_essence_sp98 + nombre_litres_essence_e85) + return nombre_litres_essence_total + + def formula_1990(menage, period): + nombre_litres_essence_sp95 = menage('nombre_litres_essence_sp95', period) + nombre_litres_essence_sp98 = menage('nombre_litres_essence_sp98', period) + nombre_litres_essence_super_plombe = menage('nombre_litres_essence_super_plombe', period) + nombre_litres_essence_total = (nombre_litres_essence_sp95 + nombre_litres_essence_sp98 + nombre_litres_essence_super_plombe) + return nombre_litres_essence_total + + +# nombre litres combustibles liquides + + +class nombre_litres_gpl_carburant(Variable): + value_type = float + entity = Menage + label = 'nombre de litre de gaz de pétrole liquéfié consommés par le ménage' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + depense_gpl_carburant_ttc_entree = menage('depense_gpl_carburant_ttc_entree', period) + prix_gpl_carburant_ttc = menage('prix_gpl_carburant_ttc', period) + nombre_litres_gpl_carburant = np.divide(depense_gpl_carburant_ttc_entree, prix_gpl_carburant_ttc, out=np.zeros_like(depense_gpl_carburant_ttc_entree), where= prix_gpl_carburant_ttc != 0) + return nombre_litres_gpl_carburant + + +# nombre de litre total: + + +class nombre_litres_total(Variable): + value_type = float + entity = Menage + label = 'nombre de litre total' + definition_period = YEAR + + def formula(menage, period): + nombre_litres_essence_total = menage('nombre_litres_essence_total', period) + nombre_litres_gazole_total = menage('nombre_litres_gazole_total', period) + nombre_litres_gpl_carburant = menage('nombre_litres_gpl_carburant', period) + nombre_litres_total = nombre_litres_gazole_total + nombre_litres_essence_total + nombre_litres_gpl_carburant + return nombre_litres_total diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/prix_carburants_ht.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/prix_carburants_ht.py new file mode 100644 index 00000000..0c8e7b15 --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/prix_carburants_ht.py @@ -0,0 +1,684 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR + +import numpy as np + + +class prix_gazole_b7_ht_avant_remise(Variable): + value_type = float + entity = Menage + label = 'prix du gazole B7 HT par litre avant remise' + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_gazole_b7_hors_remise_ttc = menage('prix_gazole_b7_hors_remise_ttc', period) + code_region = menage('code_region', period) + taux_conversion_gazoles = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_gazoles + + # On récupère l'accise en euro/mwh et on le converti en euro/hectolitre + accise_gazole_b7_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.gazoles + accise_gazole_b7_hectolitre = accise_gazole_b7_mwh * taux_conversion_gazoles + + # On récupère la majoration régionale de l'accise en euro/mwh pour toutes les régions, + # Pour chaque cellules du vecteur, on récupère la valeur regionale de la majoration et on la converti en euro/hectolitre + majoration_ticpe_gazole_b7_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + majoration_regionale_ticpe_gazole_b7_hectolitre = np.fromiter( + ( + getattr(majoration_ticpe_gazole_b7_mwh, region_cell, 0) * taux_conversion_gazoles + for region_cell in code_region), + dtype=np.float32) + + # On récupère la valeur maximale de la part de l'accise de base qui revient à la région, qui est déjà en euro/hectolitre + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole.maximum_value_affectation + # Pour chaque cellules du vecteur, on récupère la valeur regionale de l'affectation + affectation_ticpe_gazole_b7_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole + affectation_regionale_ticpe_gazole_b7_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_gazole_b7_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + # On récupère la majoration specifique mobilité de l'Île-de-France en euro/mwh et on le converti en euro/hectolitre + major_mobilites_tipce_gazole_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_gazole + major_mobilites_tipce_gazole_hectolitre = major_mobilites_tipce_gazole_mwh * taux_conversion_gazoles + + accise_gazole_b7_total = accise_gazole_b7_hectolitre + majoration_regionale_ticpe_gazole_b7_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_gazole_b7_hectolitre) + ((code_region == '11') * major_mobilites_tipce_gazole_hectolitre) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b7_hors_tva = prix_gazole_b7_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_gazole_b7_ht_avant_remise = prix_gazole_b7_hors_tva - (accise_gazole_b7_total / 100) + return prix_gazole_b7_ht_avant_remise + + def formula_2017(menage, period, parameters): + prix_gazole_b7_hors_remise_ttc = menage('prix_gazole_b7_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.gazole + majoration_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + majoration_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(majoration_ticpe_gazole_b7, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole.maximum_value_affectation + affectation_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole + affectation_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(affectation_ticpe_gazole_b7, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_gazole = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_gazole + accise_gazole_b7_total = accise_gazole_b7 + majoration_regionale_ticpe_gazole_b7 - (maximum_value_affectation - affectation_regionale_ticpe_gazole_b7) + ((code_region == '11') * major_mobilites_tipce_gazole) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b7_hors_tva = prix_gazole_b7_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_gazole_b7_ht_avant_remise = prix_gazole_b7_hors_tva - (accise_gazole_b7_total / 100) + return prix_gazole_b7_ht_avant_remise + + def formula(menage, period, parameters): + prix_gazole_b7_hors_remise_ttc = menage('prix_gazole_b7_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.gazole + majoration_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + majoration_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(majoration_ticpe_gazole_b7, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole.maximum_value_affectation + affectation_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole + affectation_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(affectation_ticpe_gazole_b7, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_gazole_b7_total = accise_gazole_b7 + majoration_regionale_ticpe_gazole_b7 - (maximum_value_affectation - affectation_regionale_ticpe_gazole_b7) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b7_hors_tva = prix_gazole_b7_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_gazole_b7_ht_avant_remise = prix_gazole_b7_hors_tva - (accise_gazole_b7_total / 100) + return prix_gazole_b7_ht_avant_remise + + +class prix_gazole_b7_ht(Variable): + value_type = float + entity = Menage + label = "prix du gazole B7 HT par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + reference = "https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000046489832/2022-10-27/" + + def formula(menage, period): + return menage('prix_gazole_b7_ht_avant_remise', period) + + def formula_2022(menage, period, parameters): + prix_gazole_b7_ht_avant_remise = menage('prix_gazole_b7_ht_avant_remise', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + prix_gazole_b7_ht = prix_gazole_b7_ht_avant_remise - (aide_exceptionnelle_gazole_essence_hl / 100) + return prix_gazole_b7_ht + + def formula_2023(menage, period): + return menage('prix_gazole_b7_ht_avant_remise', period) + + +class prix_gazole_b10_ht_avant_remise(Variable): + value_type = float + entity = Menage + label = 'prix du gazole B10 HT par litre avant remise' + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_gazole_b10_hors_remise_ttc = menage('prix_gazole_b10_hors_remise_ttc', period) + taux_conversion_gazoles = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_gazoles + accise_gazole_b10_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.gazoles + accise_gazole_b10_hectolitre = accise_gazole_b10_mwh * taux_conversion_gazoles + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b10_hors_tva = prix_gazole_b10_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_gazole_b10_ht_avant_remise = prix_gazole_b10_hors_tva - (accise_gazole_b10_hectolitre / 100) + return prix_gazole_b10_ht_avant_remise + + def formula_2017(menage, period, parameters): + prix_gazole_b10_hors_remise_ttc = menage('prix_gazole_b10_hors_remise_ttc', period) + accise_gazole_b10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.gazol_b_10_hectolitre + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b10_hors_tva = prix_gazole_b10_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_gazole_b10_ht_avant_remise = prix_gazole_b10_hors_tva - (accise_gazole_b10 / 100) + return prix_gazole_b10_ht_avant_remise + + +class prix_gazole_b10_ht(Variable): + value_type = float + entity = Menage + label = "prix du gazole B10 HT par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_gazole_b10_ht_avant_remise', period) + + def formula_2022(menage, period, parameters): + prix_gazole_b10_ht_avant_remise = menage('prix_gazole_b10_ht_avant_remise', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + prix_gazole_b10_ht = prix_gazole_b10_ht_avant_remise - (aide_exceptionnelle_gazole_essence_hl / 100) + return prix_gazole_b10_ht + + def formula_2023(menage, period): + return menage('prix_gazole_b10_ht_avant_remise', period) + + +class prix_essence_sp95_e10_ht_avant_remise(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 E10 HT par litre avant remise" + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_essence_sp95_e10_hors_remise_ttc = menage('prix_essence_sp95_e10_hors_remise_ttc', period) + code_region = menage('code_region', period) + taux_conversion_essence_sp95_e10 = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_essence_sp95_e10 + + accise_super_e10_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.essence_sp95_e10 + accise_super_e10_hectolitre = accise_super_e10_mwh * taux_conversion_essence_sp95_e10 + + major_regionale_ticpe_super_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super_hectolitre = np.fromiter( + ( + getattr(major_regionale_ticpe_super_mwh, region_cell, 0) * taux_conversion_essence_sp95_e10 + for region_cell in code_region), + dtype=np.float32) + + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + major_mobilites_tipce_sp95_e10_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_e10 + major_mobilites_tipce_sp95_e10_hectolitre = major_mobilites_tipce_sp95_e10_mwh * taux_conversion_essence_sp95_e10 + + refraction_corse_tipce_sp95_e10_mwh = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_e10 + refraction_corse_tipce_sp95_e10_hectolitre = refraction_corse_tipce_sp95_e10_mwh * taux_conversion_essence_sp95_e10 + + accise_sp_e10_ticpe = accise_super_e10_hectolitre + majoration_ticpe_super_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10_hectolitre) + ((code_region == '11') * major_mobilites_tipce_sp95_e10_hectolitre) - ((code_region == '94') * refraction_corse_tipce_sp95_e10_hectolitre) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_hors_tva = prix_essence_sp95_e10_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp95_e10_ht_avant_remise = prix_essence_sp95_e10_hors_tva - (accise_sp_e10_ticpe / 100) + return prix_essence_sp95_e10_ht_avant_remise + + def formula_2019(menage, period, parameters): + prix_essence_sp95_e10_hors_remise_ttc = menage('prix_essence_sp95_e10_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_super_e10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_e10 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_e10 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_e10 + refraction_corse_tipce_sp95_E10 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_e10 + accise_sp_e10_ticpe = accise_super_e10 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10) + ((code_region == '11') * major_mobilites_tipce_sp95_e10) - ((code_region == '94') * refraction_corse_tipce_sp95_E10) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_hors_tva = prix_essence_sp95_e10_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp95_e10_ht_avant_remise = prix_essence_sp95_e10_hors_tva - (accise_sp_e10_ticpe / 100) + return prix_essence_sp95_e10_ht_avant_remise + + def formula_2017(menage, period, parameters): + prix_essence_sp95_e10_hors_remise_ttc = menage('prix_essence_sp95_e10_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_super_e10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_e10 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_e10 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_e10 + accise_sp_e10_ticpe = accise_super_e10 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10) + ((code_region == '11') * major_mobilites_tipce_sp95_e10) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_hors_tva = prix_essence_sp95_e10_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp95_e10_ht_avant_remise = prix_essence_sp95_e10_hors_tva - (accise_sp_e10_ticpe / 100) + return prix_essence_sp95_e10_ht_avant_remise + + def formula_2009(menage, period, parameters): + prix_essence_sp95_e10_hors_remise_ttc = menage('prix_essence_sp95_e10_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_super_e10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_e10 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_sp_e10_ticpe = accise_super_e10 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_hors_tva = prix_essence_sp95_e10_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp95_e10_ht_avant_remise = prix_essence_sp95_e10_hors_tva - (accise_sp_e10_ticpe / 100) + return prix_essence_sp95_e10_ht_avant_remise + + +class prix_essence_sp95_e10_ht(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 E10 HT par litre " + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_sp95_e10_ht_avant_remise', period) + + def formula_2022(menage, period, parameters): + prix_essence_sp95_e10_ht_avant_remise = menage('prix_essence_sp95_e10_ht_avant_remise', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + prix_essence_sp95_e10_hors_remise_ttc = prix_essence_sp95_e10_ht_avant_remise - (aide_exceptionnelle_gazole_essence_hl / 100) + return prix_essence_sp95_e10_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_essence_sp95_e10_ht_avant_remise', period) + + +class prix_essence_sp95_ht_avant_remise(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 HT par litre avant remise" + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_essence_sp95_hors_remise_ttc = menage('prix_essence_sp95_hors_remise_ttc', period) + code_region = menage('code_region', period) + taux_conversion_essences = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_essences + + accise_essences_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.essences + accise_essences_hectolitre = accise_essences_mwh * taux_conversion_essences + + major_regionale_ticpe_super_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super_hectolitre = np.fromiter( + ( + getattr(major_regionale_ticpe_super_mwh, region_cell, 0) * taux_conversion_essences + for region_cell in code_region), + dtype=np.float32) + + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp95_sp98_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_sp95_sp98_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + major_mobilites_tipce_sp95_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + major_mobilites_tipce_sp95_hectolitre = major_mobilites_tipce_sp95_mwh * taux_conversion_essences + + refraction_corse_tipce_sp95_mwh = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + refraction_corse_tipce_sp95_hectolitre = refraction_corse_tipce_sp95_mwh * taux_conversion_essences + + accise_sp_95_ticpe = accise_essences_hectolitre + majoration_ticpe_super_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98_hectolitre) + ((code_region == '11') * major_mobilites_tipce_sp95_hectolitre) - ((code_region == '94') * refraction_corse_tipce_sp95_hectolitre) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_hors_tva = prix_essence_sp95_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp95_ht_avant_remise = prix_essence_sp95_hors_tva - (accise_sp_95_ticpe / 100) + return prix_essence_sp95_ht_avant_remise + + def formula_2017(menage, period, parameters): + prix_essence_sp95_hors_remise_ttc = menage('prix_essence_sp95_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_super95 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_95_ticpe = accise_super95 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + ((code_region == '11') * major_mobilites_tipce_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_hors_tva = prix_essence_sp95_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp95_ht_avant_remise = prix_essence_sp95_hors_tva - (accise_sp_95_ticpe / 100) + return prix_essence_sp95_ht_avant_remise + + def formula_2002(menage, period, parameters): + prix_essence_sp95_hors_remise_ttc = menage('prix_essence_sp95_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_super95 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_95_ticpe = accise_super95 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_hors_tva = prix_essence_sp95_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp95_ht_avant_remise = prix_essence_sp95_hors_tva - (accise_sp_95_ticpe / 100) + return prix_essence_sp95_ht_avant_remise + + def formula(menage, period, parameters): + prix_essence_sp95_hors_remise_ttc = menage('prix_essence_sp95_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_super95 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_sp_95_ticpe = accise_super95 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_hors_tva = prix_essence_sp95_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp95_ht_avant_remise = prix_essence_sp95_hors_tva - (accise_sp_95_ticpe / 100) + return prix_essence_sp95_ht_avant_remise + + +class prix_essence_sp95_ht(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 TTC par litre" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_sp95_ht_avant_remise', period) + + def formula_2022(menage, period, parameters): + prix_essence_sp95_ht_avant_remise = menage('prix_essence_sp95_ht_avant_remise', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + prix_essence_sp95_hors_remise_ttc = prix_essence_sp95_ht_avant_remise - (aide_exceptionnelle_gazole_essence_hl / 100) + return prix_essence_sp95_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_essence_sp95_ht_avant_remise', period) + + +class prix_essence_sp98_ht_avant_remise(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP98 HT par litre avant remise" + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_essence_sp98_hors_remise_ttc = menage('prix_essence_sp98_hors_remise_ttc', period) + code_region = menage('code_region', period) + taux_conversion_essences = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_essences + + accise_essences_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.essences + accise_essences_hectolitre = accise_essences_mwh * taux_conversion_essences + + major_regionale_ticpe_super_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super_hectolitre = np.fromiter( + ( + getattr(major_regionale_ticpe_super_mwh, region_cell, 0) * taux_conversion_essences + for region_cell in code_region), + dtype=np.float32) + + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp95_sp98_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_sp95_sp98_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + major_mobilites_tipce_sp98_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + major_mobilites_tipce_sp98_hectolitre = major_mobilites_tipce_sp98_mwh * taux_conversion_essences + + refraction_corse_tipce_sp98_mwh = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + refraction_corse_tipce_sp98_hectolitre = refraction_corse_tipce_sp98_mwh * taux_conversion_essences + + accise_sp_98_ticpe = accise_essences_hectolitre + majoration_ticpe_super_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98_hectolitre) + ((code_region == '11') * major_mobilites_tipce_sp98_hectolitre) - ((code_region == '94') * refraction_corse_tipce_sp98_hectolitre) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_hors_tva = prix_essence_sp98_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp98_ht_avant_remise = prix_essence_sp98_hors_tva - (accise_sp_98_ticpe / 100) + return prix_essence_sp98_ht_avant_remise + + def formula_2017(menage, period, parameters): + prix_essence_sp98_hors_remise_ttc = menage('prix_essence_sp98_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_super98 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_98_ticpe = accise_super98 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + ((code_region == '11') * major_mobilites_tipce_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_hors_tva = prix_essence_sp98_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp98_ht_avant_remise = prix_essence_sp98_hors_tva - (accise_sp_98_ticpe / 100) + return prix_essence_sp98_ht_avant_remise + + def formula_2002(menage, period, parameters): + prix_essence_sp98_hors_remise_ttc = menage('prix_essence_sp98_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_super98 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_98_ticpe = accise_super98 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_hors_tva = prix_essence_sp98_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp98_ht_avant_remise = prix_essence_sp98_hors_tva - (accise_sp_98_ticpe / 100) + return prix_essence_sp98_ht_avant_remise + + def formula(menage, period, parameters): + prix_essence_sp98_hors_remise_ttc = menage('prix_essence_sp98_hors_remise_ttc', period) + code_region = menage('code_region', period) + accise_super98 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_sp_98_ticpe = accise_super98 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_hors_tva = prix_essence_sp98_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_sp98_ht_avant_remise = prix_essence_sp98_hors_tva - (accise_sp_98_ticpe / 100) + return prix_essence_sp98_ht_avant_remise + + +class prix_essence_sp98_ht(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP98 HT par litre " + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_sp98_ht_avant_remise', period) + + def formula_2022(menage, period, parameters): + prix_essence_sp98_ht_avant_remise = menage('prix_essence_sp98_ht_avant_remise', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + prix_essence_sp98_hors_remise_ttc = prix_essence_sp98_ht_avant_remise - (aide_exceptionnelle_gazole_essence_hl / 100) + return prix_essence_sp98_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_essence_sp98_ht_avant_remise', period) + + +class prix_essence_super_plombe_ht(Variable): + value_type = float + entity = Menage + label = "prix de l'essence super plombé HT par litre" + definition_period = YEAR + default_value = 0 + end = "2017-01-01" + + def formula(menage, period, parameters): + prix_essence_super_plombe_ttc = menage('prix_essence_super_plombe_ttc', period) + code_region = menage('code_region', period) + accise_super_plombe_ticpe = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.super_plombe + refraction_corse_tipce_super_plombe = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_super_plombe + super_plombe_ticpe = (accise_super_plombe_ticpe / 100) - ((code_region == '94') * refraction_corse_tipce_super_plombe) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_super_plombe_hors_tva = prix_essence_super_plombe_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_super_plombe_ht_avant_remise = prix_essence_super_plombe_hors_tva - (super_plombe_ticpe / 100) + return prix_essence_super_plombe_ht_avant_remise + + +class prix_essence_e85_ht_avant_remise(Variable): + value_type = float + entity = Menage + label = "prix de l'essence E85 HT par litre avant remise" + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_essence_e85_hors_remise_ttc = menage('prix_essence_e85_hors_remise_ttc', period) + accise_e85_mwh = parameters(period.start).imposition_indirecte.produits_energetiques.accise_energie_metropole.superethanol_e85 + taux_conversion_superethanol_e85 = parameters(period.start).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_superethanol_e85 + accise_e85_hectolitre = accise_e85_mwh * taux_conversion_superethanol_e85 + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_e85_hors_tva = prix_essence_e85_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_e85_ht_avant_remise = prix_essence_e85_hors_tva - (accise_e85_hectolitre / 100) + return prix_essence_e85_ht_avant_remise + + def formula_2007(menage, period, parameters): + prix_essence_e85_hors_remise_ttc = menage('prix_essence_e85_hors_remise_ttc', period) + accise_e85 = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.super_e_85_utilise_comme_carburant_hectolitre + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + + prix_essence_e85_hors_tva = prix_essence_e85_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_essence_e85_ht_avant_remise = prix_essence_e85_hors_tva - (accise_e85 / 100) + return prix_essence_e85_ht_avant_remise + + +class prix_essence_e85_ht(Variable): + value_type = float + entity = Menage + label = "prix de l'essence E85 HT par litre" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_e85_ht_avant_remise', period) + + def formula_2022(menage, period, parameters): + prix_essence_e85_ht_avant_remise = menage('prix_essence_e85_ht_avant_remise', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + prix_essence_e85_ht = prix_essence_e85_ht_avant_remise - (aide_exceptionnelle_gazole_essence_hl / 100) + return prix_essence_e85_ht + + def formula_2023(menage, period): + return menage('prix_essence_e85_ht_avant_remise', period) + + +class prix_gpl_carburant_ht_avant_remise(Variable): + value_type = float + entity = Menage + label = 'prix du gaz de pétrole liquéfié - carburant HT par litre avant remise' + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_gpl_carburant_hors_remise_ttc = menage('prix_gpl_carburant_hors_remise_ttc', period) + accise_gpl_carburant_mwh = parameters(period.start).imposition_indirecte.produits_energetiques.accise_energie_metropole.gpl_carburant + taux_conversion_gpl_carburant = parameters(period.start).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_gpl_carburant + accise_gpl_carburant_hectolitre = accise_gpl_carburant_mwh * taux_conversion_gpl_carburant + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gpl_carburant_hors_tva = prix_gpl_carburant_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_gpl_carburant_ht_avant_remise = prix_gpl_carburant_hors_tva - (accise_gpl_carburant_hectolitre / 100) + return prix_gpl_carburant_ht_avant_remise + + def formula(menage, period, parameters): + prix_gpl_carburant_hors_remise_ttc = menage('prix_gpl_carburant_hors_remise_ttc', period) + accise_combustibles_liquides = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.autres_gaz_petrole_liquefies_utilises_comme_carburants_autres_100kg + coefficient_conversion_kg_vers_litre = (1 / 0.525) + accise_combustibles_liquides_euro_par_hectolitre = accise_combustibles_liquides * coefficient_conversion_kg_vers_litre + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gpl_carburant_hors_tva = prix_gpl_carburant_hors_remise_ttc * (1 / (1 + taux_plein_tva)) + prix_gpl_carburant_ht_avant_remise = prix_gpl_carburant_hors_tva - (accise_combustibles_liquides_euro_par_hectolitre / 100) + return prix_gpl_carburant_ht_avant_remise + + +class prix_gpl_carburant_ht(Variable): + value_type = float + entity = Menage + label = "prix du gaz de pétrole liquéfié - carburant HT par litre" + definition_period = YEAR + default_value = 0 + reference = "https://www.legifrance.gouv.fr/loda/article_lc/LEGIARTI000046489832/2022-10-27/" + + def formula(menage, period): + return menage('prix_gpl_carburant_ht_avant_remise', period) + + def formula_2022(menage, period, parameters): + prix_gpl_carburant_ht_avant_remise = menage('prix_gpl_carburant_ht_avant_remise', period) + aide_exceptionnelle_gpl_carburant_100kg = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gpl_carburant_100kg + prix_gpl_carburant_ht = prix_gpl_carburant_ht_avant_remise - (aide_exceptionnelle_gpl_carburant_100kg / 100) + return prix_gpl_carburant_ht + + def formula_2023(menage, period): + return menage('prix_gpl_carburant_ht_avant_remise', period) diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/prix_carburants_ttc.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/prix_carburants_ttc.py new file mode 100644 index 00000000..eab0fb62 --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/prix_carburants_ttc.py @@ -0,0 +1,292 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR +from openfisca_france_indirect_taxation.parameters.prix_carburants import get_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre +from openfisca_france_indirect_taxation.parameters.prix_carburants import get_prix_carburant_par_annee_par_carburant_en_hectolitre + +import numpy as np + + +class prix_gazole_b7_ttc(Variable): + value_type = float + entity = Menage + label = 'prix du gazole B7 TTC par litre' + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + code_region = menage('code_region', period) + prix_gazole_b7_hectolitre_ttc = np.fromiter( + ( + parameters(period.start).prix_carburants.diesel_ttc if region_cell == "99" else get_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre().get(f'{region_cell}', {}).get('Gazole', {}).get(f'{period}', 0) + for region_cell in code_region), + dtype=np.float32) + prix_gazole_b7_ttc = (prix_gazole_b7_hectolitre_ttc / 100) + return prix_gazole_b7_ttc + + +class prix_gazole_b7_hors_remise_ttc(Variable): + value_type = float + entity = Menage + label = "prix du gazole B7 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_gazole_b7_ttc', period) + + def formula_2022(menage, period, parameters): + prix_gazole_b7_ttc = menage('prix_gazole_b7_ttc', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b7_hors_remise_ttc = prix_gazole_b7_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_gazole_b7_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_gazole_b7_ttc', period) + + +class prix_gazole_b10_ttc(Variable): # ATTENTION: pas de prix disponible pour gazole B10, on utilise prix du gazole B7 + value_type = float + entity = Menage + label = 'prix du gazole B10 TTC par litre' + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period, parameters): + code_region = menage('code_region', period) + prix_gazole_b10_hectolitre_ttc = np.fromiter( + ( + parameters(period.start).prix_carburants.diesel_ttc if region_cell == "99" else get_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre().get(f'{region_cell}', {}).get('Gazole', {}).get(f'{period}', 0) + for region_cell in code_region), + dtype=np.float32) + prix_gazole_b10_ttc = (prix_gazole_b10_hectolitre_ttc / 100) + return prix_gazole_b10_ttc + + +class prix_gazole_b10_hors_remise_ttc(Variable): + value_type = float + entity = Menage + label = "prix du gazole B10 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_gazole_b10_ttc', period) + + def formula_2022(menage, period, parameters): + prix_gazole_b10_ttc = menage('prix_gazole_b10_ttc', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b10_hors_remise_ttc = prix_gazole_b10_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_gazole_b10_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_gazole_b10_ttc', period) + + +class prix_essence_sp95_e10_ttc(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 E10 TTC par litre" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + code_region = menage('code_region', period) + prix_essence_sp95_e10_hectolitre_ttc = np.fromiter( + ( + parameters(period.start).prix_carburants.super_95_e10_ttc if region_cell == "99" else get_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre().get(f'{region_cell}', {}).get('E10', {}).get(f'{period}', 0) + for region_cell in code_region), + dtype=np.float32) + prix_essence_sp95_e10_ttc = (prix_essence_sp95_e10_hectolitre_ttc / 100) + return prix_essence_sp95_e10_ttc + + +class prix_essence_sp95_e10_hors_remise_ttc(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 E10 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_sp95_e10_ttc', period) + + def formula_2022(menage, period, parameters): + prix_essence_sp95_e10_ttc = menage('prix_essence_sp95_e10_ttc', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_ttc = prix_essence_sp95_e10_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_essence_sp95_e10_ttc + + def formula_2023(menage, period): + return menage('prix_essence_sp95_e10_ttc', period) + + +class prix_essence_sp95_ttc(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 TTC par litre" + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + code_region = menage('code_region', period) + prix_essence_sp95_hectolitre_ttc = np.fromiter( + ( + parameters(period.start).prix_carburants.super_95_ttc if region_cell == "99" else get_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre().get(f'{region_cell}', {}).get('SP95', {}).get(f'{period}', 0) + for region_cell in code_region), + dtype=np.float32) + prix_essence_sp95_ttc = (prix_essence_sp95_hectolitre_ttc / 100) + return prix_essence_sp95_ttc + + +class prix_essence_sp95_hors_remise_ttc(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_sp95_ttc', period) + + def formula_2022(menage, period, parameters): + prix_essence_sp95_ttc = menage('prix_essence_sp95_ttc', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_ttc = prix_essence_sp95_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_essence_sp95_ttc + + def formula_2023(menage, period): + return menage('prix_essence_sp95_ttc', period) + + +class prix_essence_sp98_ttc(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP98 TTC par litre" + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + code_region = menage('code_region', period) + prix_essence_sp98_hectolitre_ttc = np.fromiter( + ( + parameters(period.start).prix_carburants.super_98_ttc if region_cell == "99" else get_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre().get(f'{region_cell}', {}).get('SP98', {}).get(f'{period}', 0) + for region_cell in code_region), + dtype=np.float32) + prix_essence_sp98_ttc = (prix_essence_sp98_hectolitre_ttc / 100) + return prix_essence_sp98_ttc + + +class prix_essence_sp98_hors_remise_ttc(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP98 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_sp98_ttc', period) + + def formula_2022(menage, period, parameters): + prix_essence_sp98_ttc = menage('prix_essence_sp98_ttc', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_ttc = prix_essence_sp98_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_essence_sp98_ttc + + def formula_2023(menage, period): + return menage('prix_essence_sp98_ttc', period) + + +class prix_essence_super_plombe_ttc(Variable): # ATTENTION: pas prix par région disponible, on garde les prix TTC général de l'IPP. (INSEE) + value_type = float + entity = Menage + label = "prix de l'essence super plombé TTC par litre" + definition_period = YEAR + default_value = 0 + end = "2007-01-01" + + def formula(menage, period, parameters): + prix_essence_essence_super_plombe_hectolitre_ttc = parameters(period).prix_carburants.super_plombe_ttc + prix_essence_super_plombe_ttc = (prix_essence_essence_super_plombe_hectolitre_ttc / 100) + return prix_essence_super_plombe_ttc + + +class prix_essence_e85_ttc(Variable): + value_type = float + entity = Menage + label = "prix de l'essence E85 TTC par litre" + definition_period = YEAR + default_value = 0 + + def formula_2007(menage, period): + code_region = menage('code_region', period) + prix_essence_e85_hectolitre_ttc = np.fromiter( + ( + get_prix_carburant_par_annee_par_carburant_en_hectolitre().get('E85', {}).get(f'{period}', 0) if region_cell == "99" else get_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre().get(f'{region_cell}', {}).get('E85', {}).get(f'{period}', 0) + for region_cell in code_region), + dtype=np.float32) + prix_essence_e85_ttc = (prix_essence_e85_hectolitre_ttc / 100) + return prix_essence_e85_ttc + + +class prix_essence_e85_hors_remise_ttc(Variable): + value_type = float + entity = Menage + label = "prix de l'essence E85 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_e85_ttc', period) + + def formula_2022(menage, period, parameters): + prix_essence_e85_ttc = menage('prix_essence_e85_ttc', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_e85_hors_remise_ttc = prix_essence_e85_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_essence_e85_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_essence_e85_ttc', period) + + +class prix_gpl_carburant_ttc(Variable): + value_type = float + entity = Menage + label = 'prix du gaz de pétrole liquéfié - carburant TTC' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + code_region = menage('code_region', period) + prix_gpl_carburant_hectolitre_ttc = np.fromiter( + ( + get_prix_carburant_par_annee_par_carburant_en_hectolitre().get('GPLc', {}).get(f'{period}', 0) if region_cell == "99" else get_prix_carburant_par_annee_par_carburant_par_region_en_hectolitre().get(f'{region_cell}', {}).get('GPLc', {}).get(f'{period}', 0) + for region_cell in code_region), + dtype=np.float32) + prix_gpl_carburant_ttc = (prix_gpl_carburant_hectolitre_ttc / 100) + return prix_gpl_carburant_ttc + + +class prix_gpl_carburant_hors_remise_ttc(Variable): + value_type = float + entity = Menage + label = "prix du GPL TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_gpl_carburant_ttc', period) + + def formula_2022(menage, period, parameters): + prix_gpl_carburant_ttc = menage('prix_gpl_carburant_ttc', period) + aide_exceptionnelle_gpl_carburant_100kg = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gpl_carburant_100kg + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gpl_carburant_hors_remise_ttc = prix_gpl_carburant_ttc + (aide_exceptionnelle_gpl_carburant_100kg / 100) * (1 + taux_plein_tva) + return prix_gpl_carburant_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_gpl_carburant_ttc', period) diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/prix_carburants_ttc_sortie.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/prix_carburants_ttc_sortie.py new file mode 100644 index 00000000..f15a3b7c --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/prix_carburants_ttc_sortie.py @@ -0,0 +1,690 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR + +import numpy as np + + +class prix_gazole_b7_ttc_sortie(Variable): + value_type = float + entity = Menage + label = 'prix du gazole B7 TTC par litre à la pompe' + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_gazole_b7_ht = menage('prix_gazole_b7_ht', period) + code_region = menage('code_region', period) + taux_conversion_gazoles = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_gazoles + + # On récupère l'accise en euro/mwh et on le converti en euro/hectolitre + accise_gazole_b7_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.gazoles + accise_gazole_b7_hectolitre = accise_gazole_b7_mwh * taux_conversion_gazoles + + # On récupère la majoration régionale de l'accise en euro/mwh pour toutes les régions, + # Pour chaque cellules du vecteur, on récupère la valeur regionale de la majoration et on la converti en euro/hectolitre + majoration_ticpe_gazole_b7_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + majoration_regionale_ticpe_gazole_b7_hectolitre = np.fromiter( + ( + getattr(majoration_ticpe_gazole_b7_mwh, region_cell, 0) * taux_conversion_gazoles + for region_cell in code_region), + dtype=np.float32) + + # On récupère la valeur maximale de la part de l'accise de base qui revient à la région, qui est déjà en euro/hectolitre + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole.maximum_value_affectation + # Pour chaque cellules du vecteur, on récupère la valeur regionale de l'affectation + affectation_ticpe_gazole_b7_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole + affectation_regionale_ticpe_gazole_b7_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_gazole_b7_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + # On récupère la majoration specifique mobilité de l'Île-de-France en euro/mwh et on le converti en euro/hectolitre + major_mobilites_tipce_gazole_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_gazole + major_mobilites_tipce_gazole_hectolitre = major_mobilites_tipce_gazole_mwh * taux_conversion_gazoles + + accise_gazole_b7_total = accise_gazole_b7_hectolitre + majoration_regionale_ticpe_gazole_b7_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_gazole_b7_hectolitre) + ((code_region == '11') * major_mobilites_tipce_gazole_hectolitre) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + + prix_gazole_b7_hors_tva = prix_gazole_b7_ht + (accise_gazole_b7_total / 100) + prix_gazole_b7_ttc = prix_gazole_b7_hors_tva * (1 + taux_plein_tva) + return prix_gazole_b7_ttc + + def formula_2017(menage, period, parameters): + prix_gazole_b7_ht = menage('prix_gazole_b7_ht', period) + code_region = menage('code_region', period) + accise_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.gazole + majoration_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + majoration_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(majoration_ticpe_gazole_b7, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole.maximum_value_affectation + affectation_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole + affectation_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(affectation_ticpe_gazole_b7, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_gazole = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_gazole + accise_gazole_b7_total = accise_gazole_b7 + majoration_regionale_ticpe_gazole_b7 - (maximum_value_affectation - affectation_regionale_ticpe_gazole_b7) + ((code_region == '11') * major_mobilites_tipce_gazole) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + + prix_gazole_b7_hors_tva = prix_gazole_b7_ht + (accise_gazole_b7_total / 100) + prix_gazole_b7_ttc = prix_gazole_b7_hors_tva * (1 + taux_plein_tva) + return prix_gazole_b7_ttc + + def formula(menage, period, parameters): + prix_gazole_b7_ht = menage('prix_gazole_b7_ht', period) + code_region = menage('code_region', period) + accise_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.gazole + majoration_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + majoration_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(majoration_ticpe_gazole_b7, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole.maximum_value_affectation + affectation_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole + affectation_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(affectation_ticpe_gazole_b7, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_gazole_b7_total = accise_gazole_b7 + majoration_regionale_ticpe_gazole_b7 - (maximum_value_affectation - affectation_regionale_ticpe_gazole_b7) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + + prix_gazole_b7_hors_tva = prix_gazole_b7_ht + (accise_gazole_b7_total / 100) + prix_gazole_b7_ttc = prix_gazole_b7_hors_tva * (1 + taux_plein_tva) + return prix_gazole_b7_ttc + + +class prix_gazole_b7_hors_remise_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix du gazole B7 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_gazole_b7_ttc_sortie', period) + + def formula_2022(menage, period, parameters): + prix_gazole_b7_ttc = menage('prix_gazole_b7_ttc_sortie', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b7_hors_remise_ttc = prix_gazole_b7_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_gazole_b7_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_gazole_b7_ttc_sortie', period) + + +class prix_gazole_b10_ttc_sortie(Variable): + value_type = float + entity = Menage + label = 'prix du gazole B10 TTC par litre à la pompe' + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_gazole_b10_ht = menage('prix_gazole_b10_ht', period) + taux_conversion_gazoles = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_gazoles + accise_gazole_b10_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.gazoles + accise_gazole_b10_hectolitre = accise_gazole_b10_mwh * taux_conversion_gazoles + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b10_hors_tva = prix_gazole_b10_ht + (accise_gazole_b10_hectolitre / 100) + prix_gazole_b10_ttc_sortie = prix_gazole_b10_hors_tva * (1 + taux_plein_tva) + return prix_gazole_b10_ttc_sortie + + def formula_2017(menage, period, parameters): + prix_gazole_b10_ht = menage('prix_gazole_b10_ht', period) + accise_gazole_b10_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.ticpe.gazol_b_10_hectolitre + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b10_hors_tva = prix_gazole_b10_ht + (accise_gazole_b10_hectolitre / 100) + prix_gazole_b10_ttc_sortie = prix_gazole_b10_hors_tva * (1 + taux_plein_tva) + return prix_gazole_b10_ttc_sortie + + +class prix_gazole_b10_hors_remise_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix du gazole B10 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_gazole_b10_ttc_sortie', period) + + def formula_2022(menage, period, parameters): + prix_gazole_b10_ttc = menage('prix_gazole_b10_ttc_sortie', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gazole_b10_hors_remise_ttc = prix_gazole_b10_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_gazole_b10_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_gazole_b10_ttc_sortie', period) + + +class prix_essence_sp95_e10_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 E10 TTC par litre à la pompe" + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_essence_sp95_e10_ht = menage('prix_essence_sp95_e10_ht', period) + code_region = menage('code_region', period) + taux_conversion_essence_sp95_e10 = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_essence_sp95_e10 + + accise_super_e10_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.essence_sp95_e10 + accise_super_e10_hectolitre = accise_super_e10_mwh * taux_conversion_essence_sp95_e10 + + major_regionale_ticpe_super_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super_hectolitre = np.fromiter( + ( + getattr(major_regionale_ticpe_super_mwh, region_cell, 0) * taux_conversion_essence_sp95_e10 + for region_cell in code_region), + dtype=np.float32) + + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + major_mobilites_tipce_sp95_e10_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_e10 + major_mobilites_tipce_sp95_e10_hectolitre = major_mobilites_tipce_sp95_e10_mwh * taux_conversion_essence_sp95_e10 + + refraction_corse_tipce_sp95_e10_mwh = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_e10 + refraction_corse_tipce_sp95_e10_hectolitre = refraction_corse_tipce_sp95_e10_mwh * taux_conversion_essence_sp95_e10 + + accise_sp_e10_ticpe = accise_super_e10_hectolitre + majoration_ticpe_super_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10_hectolitre) + ((code_region == '11') * major_mobilites_tipce_sp95_e10_hectolitre) - ((code_region == '94') * refraction_corse_tipce_sp95_e10_hectolitre) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_hors_tva = prix_essence_sp95_e10_ht + (accise_sp_e10_ticpe / 100) + prix_essence_sp95_e10_ttc_sortie = prix_essence_sp95_e10_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp95_e10_ttc_sortie + + def formula_2019(menage, period, parameters): + prix_essence_sp95_e10_ht = menage('prix_essence_sp95_e10_ht', period) + code_region = menage('code_region', period) + accise_super_e10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_e10 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_e10 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_e10 + refraction_corse_tipce_sp95_E10 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_e10 + accise_sp_e10_ticpe = accise_super_e10 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10) + ((code_region == '11') * major_mobilites_tipce_sp95_e10) - ((code_region == '94') * refraction_corse_tipce_sp95_E10) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_hors_tva = prix_essence_sp95_e10_ht + (accise_sp_e10_ticpe / 100) + prix_essence_sp95_e10_ttc_sortie = prix_essence_sp95_e10_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp95_e10_ttc_sortie + + def formula_2017(menage, period, parameters): + prix_essence_sp95_e10_ht = menage('prix_essence_sp95_e10_ht', period) + code_region = menage('code_region', period) + accise_super_e10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_e10 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_e10 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_e10 + accise_sp_e10_ticpe = accise_super_e10 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10) + ((code_region == '11') * major_mobilites_tipce_sp95_e10) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_hors_tva = prix_essence_sp95_e10_ht + (accise_sp_e10_ticpe / 100) + prix_essence_sp95_e10_ttc_sortie = prix_essence_sp95_e10_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp95_e10_ttc_sortie + + def formula_2009(menage, period, parameters): + prix_essence_sp95_e10_ht = menage('prix_essence_sp95_e10_ht', period) + code_region = menage('code_region', period) + accise_super_e10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_e10 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_sp_e10_ticpe = accise_super_e10 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_hors_tva = prix_essence_sp95_e10_ht + (accise_sp_e10_ticpe / 100) + prix_essence_sp95_e10_ttc_sortie = prix_essence_sp95_e10_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp95_e10_ttc_sortie + + +class prix_essence_sp95_e10_hors_remise_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 E10 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_sp95_e10_ttc_sortie', period) + + def formula_2022(menage, period, parameters): + prix_essence_sp95_e10_ttc = menage('prix_essence_sp95_e10_ttc_sortie', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_e10_ttc = prix_essence_sp95_e10_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_essence_sp95_e10_ttc + + def formula_2023(menage, period): + return menage('prix_essence_sp95_e10_ttc_sortie', period) + + +class prix_essence_sp95_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 TTC par litre à la pompe" + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_essence_sp95_ht = menage('prix_essence_sp95_ht', period) + code_region = menage('code_region', period) + taux_conversion_essences = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_essences + + accise_essences_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.essences + accise_essences_hectolitre = accise_essences_mwh * taux_conversion_essences + + major_regionale_ticpe_super_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super_hectolitre = np.fromiter( + ( + getattr(major_regionale_ticpe_super_mwh, region_cell, 0) * taux_conversion_essences + for region_cell in code_region), + dtype=np.float32) + + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp95_sp98_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_sp95_sp98_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + major_mobilites_tipce_sp95_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + major_mobilites_tipce_sp95_hectolitre = major_mobilites_tipce_sp95_mwh * taux_conversion_essences + + refraction_corse_tipce_sp95_mwh = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + refraction_corse_tipce_sp95_hectolitre = refraction_corse_tipce_sp95_mwh * taux_conversion_essences + + accise_sp_95_ticpe = accise_essences_hectolitre + majoration_ticpe_super_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98_hectolitre) + ((code_region == '11') * major_mobilites_tipce_sp95_hectolitre) - ((code_region == '94') * refraction_corse_tipce_sp95_hectolitre) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_hors_tva = prix_essence_sp95_ht + (accise_sp_95_ticpe / 100) + prix_essence_sp95_ttc_sortie = prix_essence_sp95_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp95_ttc_sortie + + def formula_2017(menage, period, parameters): + prix_essence_sp95_ht = menage('prix_essence_sp95_ht', period) + code_region = menage('code_region', period) + accise_super95 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_95_ticpe = accise_super95 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + ((code_region == '11') * major_mobilites_tipce_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_hors_tva = prix_essence_sp95_ht + (accise_sp_95_ticpe / 100) + prix_essence_sp95_ttc_sortie = prix_essence_sp95_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp95_ttc_sortie + + def formula_2002(menage, period, parameters): + prix_essence_sp95_ht = menage('prix_essence_sp95_ht', period) + code_region = menage('code_region', period) + accise_super95 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_95_ticpe = accise_super95 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_hors_tva = prix_essence_sp95_ht + (accise_sp_95_ticpe / 100) + prix_essence_sp95_ttc_sortie = prix_essence_sp95_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp95_ttc_sortie + + def formula(menage, period, parameters): + prix_essence_sp95_ht = menage('prix_essence_sp95_ht', period) + code_region = menage('code_region', period) + accise_super95 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_sp_95_ticpe = accise_super95 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_hors_tva = prix_essence_sp95_ht + (accise_sp_95_ticpe / 100) + prix_essence_sp95_ttc_sortie = prix_essence_sp95_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp95_ttc_sortie + + +class prix_essence_sp95_hors_remise_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP95 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_sp95_ttc_sortie', period) + + def formula_2022(menage, period, parameters): + prix_essence_sp95_ttc = menage('prix_essence_sp95_ttc_sortie', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp95_ttc = prix_essence_sp95_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_essence_sp95_ttc + + def formula_2023(menage, period): + return menage('prix_essence_sp95_ttc_sortie', period) + + +class prix_essence_sp98_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP98 TTC par litre à la pompe" + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_essence_sp98_ht = menage('prix_essence_sp98_ht', period) + code_region = menage('code_region', period) + taux_conversion_essences = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_essences + + accise_essences_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.essences + accise_essences_hectolitre = accise_essences_mwh * taux_conversion_essences + + major_regionale_ticpe_super_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super_hectolitre = np.fromiter( + ( + getattr(major_regionale_ticpe_super_mwh, region_cell, 0) * taux_conversion_essences + for region_cell in code_region), + dtype=np.float32) + + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp95_sp98_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_sp95_sp98_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + major_mobilites_tipce_sp98_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + major_mobilites_tipce_sp98_hectolitre = major_mobilites_tipce_sp98_mwh * taux_conversion_essences + + refraction_corse_tipce_sp98_mwh = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + refraction_corse_tipce_sp98_hectolitre = refraction_corse_tipce_sp98_mwh * taux_conversion_essences + + accise_sp_98_ticpe = accise_essences_hectolitre + majoration_ticpe_super_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98_hectolitre) + ((code_region == '11') * major_mobilites_tipce_sp98_hectolitre) - ((code_region == '94') * refraction_corse_tipce_sp98_hectolitre) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_hors_tva = prix_essence_sp98_ht + (accise_sp_98_ticpe / 100) + prix_essence_sp98_ttc_sortie = prix_essence_sp98_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp98_ttc_sortie + + def formula_2017(menage, period, parameters): + prix_essence_sp98_ht = menage('prix_essence_sp98_ht', period) + code_region = menage('code_region', period) + accise_super98 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_98_ticpe = accise_super98 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + ((code_region == '11') * major_mobilites_tipce_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_hors_tva = prix_essence_sp98_ht + (accise_sp_98_ticpe / 100) + prix_essence_sp98_ttc_sortie = prix_essence_sp98_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp98_ttc_sortie + + def formula_2002(menage, period, parameters): + prix_essence_sp98_ht = menage('prix_essence_sp98_ht', period) + code_region = menage('code_region', period) + accise_super98 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_98_ticpe = accise_super98 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_hors_tva = prix_essence_sp98_ht + (accise_sp_98_ticpe / 100) + prix_essence_sp98_ttc_sortie = prix_essence_sp98_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp98_ttc_sortie + + def formula(menage, period, parameters): + prix_essence_sp98_ht = menage('prix_essence_sp98_ht', period) + code_region = menage('code_region', period) + accise_super98 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_sp_98_ticpe = accise_super98 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_hors_tva = prix_essence_sp98_ht + (accise_sp_98_ticpe / 100) + prix_essence_sp98_ttc_sortie = prix_essence_sp98_hors_tva * (1 + taux_plein_tva) + return prix_essence_sp98_ttc_sortie + + +class prix_essence_sp98_hors_remise_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix de l'essence SP98 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_sp98_ttc_sortie', period) + + def formula_2022(menage, period, parameters): + prix_essence_sp98_ttc = menage('prix_essence_sp98_ttc_sortie', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_sp98_ttc = prix_essence_sp98_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_essence_sp98_ttc + + def formula_2023(menage, period): + return menage('prix_essence_sp98_ttc_sortie', period) + + +class prix_essence_super_plombe_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix de l'essence super plombé TTC par litre à la pompe" + definition_period = YEAR + default_value = 0 + end = "2017-01-01" + + def formula(menage, period, parameters): + prix_essence_super_plombe_ht = menage('prix_essence_super_plombe_ht', period) + code_region = menage('code_region', period) + accise_super_plombe_ticpe = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.super_plombe + refraction_corse_tipce_super_plombe = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_super_plombe + super_plombe_ticpe = (accise_super_plombe_ticpe / 100) - ((code_region == '94') * refraction_corse_tipce_super_plombe) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_super_plombe_hors_tva = prix_essence_super_plombe_ht + (super_plombe_ticpe / 100) + prix_essence_super_plombe_ttc_sortie = prix_essence_super_plombe_hors_tva * (1 + taux_plein_tva) + return prix_essence_super_plombe_ttc_sortie + + +class prix_essence_e85_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix de l'essence E85 TTC par litre à la pompe" + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_essence_e85_ht = menage('prix_essence_e85_ht', period) + accise_e85_mwh = parameters(period.start).imposition_indirecte.produits_energetiques.accise_energie_metropole.superethanol_e85 + taux_conversion_superethanol_e85 = parameters(period.start).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_superethanol_e85 + accise_e85_hectolitre = accise_e85_mwh * taux_conversion_superethanol_e85 + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_e85_hors_tva = prix_essence_e85_ht + (accise_e85_hectolitre / 100) + prix_essence_e85_ttc_sortie = prix_essence_e85_hors_tva * (1 + taux_plein_tva) + return prix_essence_e85_ttc_sortie + + def formula_2007(menage, period, parameters): + prix_essence_e85_ht = menage('prix_essence_e85_ht', period) + accise_e85_hectolitre = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.super_e_85_utilise_comme_carburant_hectolitre + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + + prix_essence_e85_hors_tva = prix_essence_e85_ht + (accise_e85_hectolitre / 100) + prix_essence_e85_ttc_sortie = prix_essence_e85_hors_tva * (1 + taux_plein_tva) + return prix_essence_e85_ttc_sortie + + +class prix_essence_e85_hors_remise_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix de l'essence E85 TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_essence_e85_ttc_sortie', period) + + def formula_2022(menage, period, parameters): + prix_essence_e85_ttc = menage('prix_essence_e85_ttc_sortie', period) + aide_exceptionnelle_gazole_essence_hl = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gazole_essence_hl + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_essence_e85_hors_remise_ttc = prix_essence_e85_ttc + (aide_exceptionnelle_gazole_essence_hl / 100) * (1 + taux_plein_tva) + return prix_essence_e85_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_essence_e85_ttc_sortie', period) + + +class prix_gpl_carburant_ttc_sortie(Variable): + value_type = float + entity = Menage + label = 'prix du gaz de pétrole liquéfié - carburant par litre à la pompe' + definition_period = YEAR + default_value = 0 + + def formula_2022(menage, period, parameters): + prix_gpl_carburant_ht = menage('prix_gpl_carburant_ht', period) + accise_gpl_carburant_mwh = parameters(period.start).imposition_indirecte.produits_energetiques.accise_energie_metropole.gpl_carburant + taux_conversion_gpl_carburant = parameters(period.start).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_gpl_carburant + accise_gpl_carburant_hectolitre = accise_gpl_carburant_mwh * taux_conversion_gpl_carburant + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gpl_carburant_hors_tva = prix_gpl_carburant_ht + (accise_gpl_carburant_hectolitre / 100) + prix_gpl_carburant_ttc_sortie = prix_gpl_carburant_hors_tva * (1 + taux_plein_tva) + return prix_gpl_carburant_ttc_sortie + + def formula(menage, period, parameters): + prix_gpl_carburant_ht = menage('prix_gpl_carburant_ht', period) + accise_gpl_carburant_hectolitre = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.autres_gaz_petrole_liquefies_utilises_comme_carburants_autres_100kg + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gpl_carburant_hors_tva = prix_gpl_carburant_ht + (accise_gpl_carburant_hectolitre / 100) + prix_gpl_carburant_ttc_sortie = prix_gpl_carburant_hors_tva * (1 + taux_plein_tva) + return prix_gpl_carburant_ttc_sortie + + +class prix_gpl_carburant_hors_remise_ttc_sortie(Variable): + value_type = float + entity = Menage + label = "prix du GPL TTC par litre si la remise n'avait pas eu lieu" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + return menage('prix_gpl_carburant_ttc_sortie', period) + + def formula_2022(menage, period, parameters): + prix_gpl_carburant_ttc = menage('prix_gpl_carburant_ttc_sortie', period) + aide_exceptionnelle_gpl_carburant_100kg = parameters(period.start).imposition_indirecte.produits_energetiques.aide_exceptionnelle_carburant.gpl_carburant_100kg + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + prix_gpl_carburant_hors_remise_ttc = prix_gpl_carburant_ttc + (aide_exceptionnelle_gpl_carburant_100kg / 100) * (1 + taux_plein_tva) + return prix_gpl_carburant_hors_remise_ttc + + def formula_2023(menage, period): + return menage('prix_gpl_carburant_ttc_sortie', period) diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/tabacs.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/tabacs.py index cdb3a753..312d9c3a 100644 --- a/openfisca_france_indirect_taxation/variables/taxes_indirectes/tabacs.py +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/tabacs.py @@ -13,7 +13,7 @@ def formula(menage, period, parameters): depenses_cigares = menage('depenses_cigares', period) taux_normal_cigare = parameters(period.start).imposition_indirecte.taxes_tabacs.taux_normaux_tabac.taux_normal.cigares taxe_part_normale_cigare = tax_from_expense_including_tax(depenses_cigares, taux_normal_cigare) - prix = parameters("{}-12-31".format(period)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_cigare + prix = parameters('{}-12-31'.format(period)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_cigare nombre = depenses_cigares / prix taux_special_cigare = parameters(period.start).imposition_indirecte.taxes_tabacs.taux_specifique_tabac.taux_specifique.cigares @@ -31,7 +31,7 @@ def formula(menage, period, parameters): taux_normal_cigarette = \ parameters(period.start).imposition_indirecte.taxes_tabacs.taux_normaux_tabac.taux_normal.cigarettes taxe_part_normale_cigarette = tax_from_expense_including_tax(depenses_cigarettes, taux_normal_cigarette) - prix_paquet = parameters("{}-12-31".format(period)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_paquet_cigarettes + prix_paquet = parameters('{}-12-31'.format(period)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_paquet_cigarettes nombre_paquets = depenses_cigarettes / prix_paquet taux_special_cigarette = parameters(period.start).imposition_indirecte.taxes_tabacs.taux_specifique_tabac.taux_specifique.cigarettes @@ -42,7 +42,7 @@ def formula(menage, period, parameters): class depenses_cigares(YearlyVariable): value_type = float entity = Menage - label = "Dépenses de cigares" + label = 'Dépenses de cigares' def formula(menage, period): return menage('poste_02_2_2', period) @@ -51,7 +51,7 @@ def formula(menage, period): class depenses_cigarettes(Variable): value_type = float entity = Menage - label = "Dépenses de cigarettes" + label = 'Dépenses de cigarettes' definition_period = MONTH set_input = set_input_divide_by_period @@ -62,7 +62,7 @@ def formula(menage, period): class depenses_tabac_a_rouler(Variable): value_type = float entity = Menage - label = "Dépenses de tabac à rouler et autres tabacs" + label = 'Dépenses de tabac à rouler et autres tabacs' definition_period = MONTH set_input = set_input_divide_by_period @@ -73,7 +73,7 @@ def formula(menage, period): class depenses_tabac(YearlyVariable): value_type = float entity = Menage - label = "Dépenses totales de tabac (tous types)" + label = 'Dépenses totales de tabac (tous types)' def formula(menage, period): return ( @@ -93,7 +93,7 @@ def formula(menage, period, parameters): taux_normal_tabac_a_rouler = \ parameters(period.start).imposition_indirecte.taxes_tabacs.taux_normaux_tabac.taux_normal.tabac_a_rouler taxe_part_normale_tabac_a_rouler = tax_from_expense_including_tax(depenses_tabac_a_rouler, taux_normal_tabac_a_rouler) - prix_bague = parameters("{}-12-31".format(period)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_bague_tabac + prix_bague = parameters('{}-12-31'.format(period)).imposition_indirecte.taxes_tabacs.prix_tabac.prix_bague_tabac nombre_paquets = depenses_tabac_a_rouler / prix_bague taux_special_tabac_a_rouler = parameters(period.start).imposition_indirecte.taxes_tabacs.taux_specifique_tabac.taux_specifique.tabac_rouler diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/taxes_carburants.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/taxes_carburants.py new file mode 100644 index 00000000..3c8d36cf --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/taxes_carburants.py @@ -0,0 +1,174 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR + + +# taxe sur type de gazole HT: + + +class taxes_gazole_b7(Variable): + value_type = float + entity = Menage + label = 'Taxes prélevées sur le diesel (gazole B7) en station service' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + gazole_b7_ticpe = menage('gazole_b7_ticpe', period) + tva_sur_gazole_b7 = menage('tva_sur_gazole_b7', period) + taxes_gazole_b7 = gazole_b7_ticpe + tva_sur_gazole_b7 + return taxes_gazole_b7 + + +class taxes_gazole_b10(Variable): + value_type = float + entity = Menage + label = 'Taxes prélevées sur le diesel (gazole B10) en station service' + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period): + gazole_b10_ticpe = menage('gazole_b10_ticpe', period) + tva_sur_gazole_b10 = menage('tva_sur_gazole_b10', period) + taxes_gazole_b10 = gazole_b10_ticpe + tva_sur_gazole_b10 + return taxes_gazole_b10 + + +# taxe sur different type d'essence: + + +class taxes_essence_sp95_e10(Variable): + value_type = float + entity = Menage + label = "Taxes prélevées sur l'essence sans plomb 95 E10 en station service" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period): + essence_sp95_e10_ticpe = menage('essence_sp95_e10_ticpe', period) + tva_sur_essence_sp95_e10 = menage('tva_sur_essence_sp95_e10', period) + taxes_essence_sp95_e10 = essence_sp95_e10_ticpe + tva_sur_essence_sp95_e10 + return taxes_essence_sp95_e10 + + +class taxes_essence_sp95(Variable): + value_type = float + entity = Menage + label = "Taxes prélevées sur l'essence sans plomb 95 en station service" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + essence_sp95_ticpe = menage('essence_sp95_ticpe', period) + tva_sur_essence_sp95 = menage('tva_sur_essence_sp95', period) + taxes_essence_sp95 = essence_sp95_ticpe + tva_sur_essence_sp95 + return taxes_essence_sp95 + + +class taxes_essence_sp98(Variable): + value_type = float + entity = Menage + label = "Taxes prélevées sur l'essence sans plomb 98 en station service" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + essence_sp98_ticpe = menage('essence_sp98_ticpe', period) + tva_sur_essence_sp98 = menage('tva_sur_essence_sp98', period) + taxes_essence_sp98 = essence_sp98_ticpe + tva_sur_essence_sp98 + return taxes_essence_sp98 + + +class taxes_essence_super_plombe(Variable): + value_type = float + entity = Menage + label = "Taxes prélevées sur l'essence super plombé en station service" + definition_period = YEAR + default_value = 0 + end = '2006-12-31' + + def formula(menage, period): + essence_super_plombe_ticpe = menage('essence_super_plombe_ticpe', period) + tva_sur_essence_super_plombe = menage('tva_sur_essence_super_plombe', period) + taxes_essence_super_plombe = essence_super_plombe_ticpe + tva_sur_essence_super_plombe + return taxes_essence_super_plombe + + +class taxes_essence_e85(Variable): + value_type = float + entity = Menage + label = "Taxes prélevées sur l'essence super ethanol 85 en station service" + definition_period = YEAR + default_value = 0 + + def formula_2007(menage, period): + essence_e85_ticpe = menage('essence_e85_ticpe', period) + tva_sur_essence_e85 = menage('tva_sur_essence_e85', period) + taxes_essence_e85 = essence_e85_ticpe + tva_sur_essence_e85 + return taxes_essence_e85 + + +# taxe sur GPL carburant: + + +class taxes_gpl_carburant(Variable): + value_type = float + entity = Menage + label = "Taxes prélevées sur le GPL carburant en station service" + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + gpl_carburant_ticpe = menage('gpl_carburant_ticpe', period) + tva_sur_gpl_carburant = menage('tva_sur_gpl_carburant', period) + taxes_gpl_carburant = gpl_carburant_ticpe + tva_sur_gpl_carburant + return taxes_gpl_carburant + + +# taxe total + + +class taxes_tous_carburants(Variable): + value_type = float + entity = Menage + label = "Taxes prélevées sur les carburants en station service" + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period): + taxes_gazole_b7 = menage('taxes_gazole_b7', period) + taxes_gazole_b10 = menage('taxes_gazole_b10', period) + taxes_essence_sp95_e10 = menage('taxes_essence_sp95_e10', period) + taxes_essence_sp95 = menage('taxes_essence_sp95', period) + taxes_essence_sp98 = menage('taxes_essence_sp98', period) + taxes_essence_e85 = menage('taxes_essence_e85', period) + taxes_gpl_carburant = menage('taxes_gpl_carburant', period) + taxes_tous_carburants = taxes_gazole_b7 + taxes_gazole_b10 + taxes_essence_sp95_e10 + taxes_essence_sp95 + taxes_essence_sp98 + taxes_essence_e85 + taxes_gpl_carburant + return taxes_tous_carburants + + def formula_2009(menage, period): + taxes_gazole_b7 = menage('taxes_gazole_b7', period) + taxes_essence_sp95_e10 = menage('taxes_essence_sp95_e10', period) + taxes_essence_sp95 = menage('taxes_essence_sp95', period) + taxes_essence_sp98 = menage('taxes_essence_sp98', period) + taxes_essence_e85 = menage('taxes_essence_e85', period) + taxes_gpl_carburant = menage('taxes_gpl_carburant', period) + taxes_tous_carburants = taxes_gazole_b7 + taxes_essence_sp95_e10 + taxes_essence_sp95 + taxes_essence_sp98 + taxes_essence_e85 + taxes_gpl_carburant + return taxes_tous_carburants + + def formula_2007(menage, period): + taxes_gazole_b7 = menage('taxes_gazole_b7', period) + taxes_essence_sp95 = menage('taxes_essence_sp95', period) + taxes_essence_sp98 = menage('taxes_essence_sp98', period) + taxes_essence_e85 = menage('taxes_essence_e85', period) + taxes_gpl_carburant = menage('taxes_gpl_carburant', period) + taxes_tous_carburants = taxes_gazole_b7 + taxes_essence_sp95 + taxes_essence_sp98 + taxes_essence_e85 + taxes_gpl_carburant + return taxes_tous_carburants + + def formula_1990(menage, period): + taxes_gazole_b7 = menage('taxes_gazole_b7', period) + taxes_essence_sp95 = menage('taxes_essence_sp95', period) + taxes_essence_sp98 = menage('taxes_essence_sp98', period) + taxes_essence_super_plombe = menage('taxes_essence_super_plombe', period) + taxes_essence_e85 = menage('taxes_essence_e85', period) + taxes_gpl_carburant = menage('taxes_gpl_carburant', period) + taxes_tous_carburants = taxes_gazole_b7 + taxes_essence_sp95 + taxes_essence_sp98 + taxes_essence_e85 + taxes_essence_super_plombe + taxes_gpl_carburant + return taxes_tous_carburants diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/ticpe.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/ticpe.py index 9735f909..876c612c 100644 --- a/openfisca_france_indirect_taxation/variables/taxes_indirectes/ticpe.py +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/ticpe.py @@ -2,12 +2,13 @@ from openfisca_france_indirect_taxation.variables.base import * # noqa analysis:ignore +from openfisca_france_indirect_taxation.variables.taxes_indirectes import get_accise_diesel_ticpe class combustibles_liquides_ticpe(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur les combustibles liquides" + label = 'Calcul du montant de TICPE sur les combustibles liquides' def formula(menage, period, parameters): quantites_combustibles_liquides = menage('quantites_combustibles_liquides', period) @@ -20,22 +21,11 @@ def formula(menage, period, parameters): class diesel_ticpe(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel" + label = 'Calcul du montant de TICPE sur le diesel' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal - - # If the parameter does not have a defined value, it returns None - majoration_ticpe_diesel = \ - parameters(period.start).imposition_indirecte.produits_energetiques.major_regionale_ticpe_gazole.alsace - - accise_diesel = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.gazole - - accise_diesel_ticpe = ( - accise_diesel + majoration_ticpe_diesel - if majoration_ticpe_diesel is not None - else accise_diesel - ) + accise_diesel_ticpe = get_accise_diesel_ticpe(parameters, period) prix_diesel_ttc = parameters(period.start).prix_carburants.diesel_ttc taux_implicite_diesel = ( @@ -52,7 +42,7 @@ def formula(menage, period, parameters): class quantite_diesel(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel" + label = 'Calcul du montant de TICPE sur le diesel' def formula(menage, period, parameters): @@ -65,20 +55,12 @@ def formula(menage, period, parameters): class diesel_ticpe_ajustee(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le diesel après réforme" + label = 'Calcul du montant de TICPE sur le diesel après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal - majoration_ticpe_diesel = \ - parameters(period.start).imposition_indirecte.produits_energetiques.major_regionale_ticpe_gazole.alsace - accise_diesel = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.gazole - - accise_diesel_ticpe = ( - accise_diesel + majoration_ticpe_diesel - if majoration_ticpe_diesel is not None - else accise_diesel - ) + accise_diesel_ticpe = get_accise_diesel_ticpe(parameters, period) reforme_diesel = parameters(period.start).rattrapage_diesel.diesel accise_diesel_ticpe_ajustee = accise_diesel_ticpe + reforme_diesel @@ -103,7 +85,7 @@ def formula(menage, period, parameters): class essence_ticpe(Variable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur toutes les essences cumulées" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées' definition_period = YEAR def formula_2009(menage, period): @@ -130,7 +112,7 @@ def formula_1990(menage, period): class quantite_essence(Variable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur toutes les essences cumulées" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées' definition_period = YEAR def formula_2009(menage, period): @@ -157,7 +139,7 @@ def formula_1990(menage, period): class essence_ticpe_ajustee(Variable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme" + label = 'Calcul du montant de la TICPE sur toutes les essences cumulées, après réforme' definition_period = YEAR def formula_2009(menage, period): @@ -184,7 +166,7 @@ def formula_1990(menage, period): class sp_e10_ticpe(Variable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le SP E10" + label = 'Calcul du montant de la TICPE sur le SP E10' definition_period = YEAR def formula_2009(menage, period, parameters): @@ -221,7 +203,7 @@ def formula(menage, period): class quantite_sp_e10(Variable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le SP E10" + label = 'Calcul du montant de la TICPE sur le SP E10' definition_period = YEAR def formula_2009(menage, period, parameters): @@ -239,7 +221,7 @@ def formula(menage, period): class sp_e10_ticpe_ajustee(Variable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le SP E10 après réforme" + label = 'Calcul du montant de la TICPE sur le SP E10 après réforme' definition_period = YEAR def formula_2009(menage, period, parameters): @@ -276,7 +258,7 @@ def formula_2009(menage, period, parameters): class sp95_ticpe(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_95" + label = 'Calcul du montant de TICPE sur le sp_95' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -305,7 +287,7 @@ def formula(menage, period, parameters): class quantite_sp95(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_95" + label = 'Calcul du montant de TICPE sur le sp_95' def formula(menage, period, parameters): super_95_ttc = parameters(period.start).prix_carburants.super_95_ttc @@ -317,7 +299,7 @@ def formula(menage, period, parameters): class sp95_ticpe_ajustee(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_95 après réforme" + label = 'Calcul du montant de TICPE sur le sp_95 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -355,7 +337,7 @@ def formula(menage, period, parameters): class sp98_ticpe(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_98" + label = 'Calcul du montant de TICPE sur le sp_98' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -385,7 +367,7 @@ def formula(menage, period, parameters): class quantite_sp98(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_98" + label = 'Calcul du montant de TICPE sur le sp_98' def formula(menage, period, parameters): super_98_ttc = parameters(period.start).prix_carburants.super_98_ttc @@ -397,7 +379,7 @@ def formula(menage, period, parameters): class sp98_ticpe_ajustee(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de TICPE sur le sp_98 après réforme" + label = 'Calcul du montant de TICPE sur le sp_98 après réforme' def formula(menage, period, parameters): taux_plein_tva = parameters(period.start).imposition_indirecte.tva.taux_de_tva.taux_normal @@ -435,7 +417,7 @@ def formula(menage, period, parameters): class super_plombe_ticpe(Variable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le super plombé" + label = 'Calcul du montant de la TICPE sur le super plombé' definition_period = YEAR def formula_2007(menage, period): @@ -463,7 +445,7 @@ def formula(menage, period, parameters): class quantite_super_plombe(Variable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le super plombé" + label = 'Calcul du montant de la TICPE sur le super plombé' definition_period = YEAR def formula_2007(menage, period): @@ -481,7 +463,7 @@ def formula(menage, period, parameters): class super_plombe_ticpe_ajustee(Variable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur le super plombé après réforme" + label = 'Calcul du montant de la TICPE sur le super plombé après réforme' definition_period = YEAR def formula_2007(menage, period): @@ -518,7 +500,7 @@ def formula(menage, period, parameters): class ticpe_totale(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur tous les carburants cumulés" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés' def formula(menage, period): essence_ticpe = menage('essence_ticpe', period) @@ -531,7 +513,7 @@ def formula(menage, period): class ticpe_totale_ajustee(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés, après réforme' def formula(menage, period): essence_ticpe_ajustee = menage('essence_ticpe_ajustee', period) @@ -544,7 +526,7 @@ def formula(menage, period): class total_taxes_energies(YearlyVariable): value_type = float entity = Menage - label = "Calcul du montant de la TICPE sur tous les carburants cumulés" + label = 'Calcul du montant de la TICPE sur tous les carburants cumulés' def formula(menage, period): essence_ticpe = menage('essence_ticpe', period) @@ -558,7 +540,7 @@ def formula(menage, period): class difference_ticpe_diesel_reforme(YearlyVariable): value_type = float entity = Menage - label = "Différence entre les contributions à la TICPE sur le diesel avant et après la réforme" + label = 'Différence entre les contributions à la TICPE sur le diesel avant et après la réforme' def formula(menage, period): diesel_ticpe_ajustee = menage('diesel_ticpe_ajustee', period) @@ -584,7 +566,7 @@ def formula(menage, period): class difference_ticpe_totale_reforme(YearlyVariable): value_type = float entity = Menage - label = "Différence entre les contributions à la TICPE avant et après la réforme" + label = 'Différence entre les contributions à la TICPE avant et après la réforme' def formula(menage, period): ticpe_totale_ajustee = menage('ticpe_totale_ajustee', period) diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/ticpe_carburants.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/ticpe_carburants.py new file mode 100644 index 00000000..2ca8302b --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/ticpe_carburants.py @@ -0,0 +1,577 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR + +import numpy as np + + +# TICPE carburant + + +# TICPE gazole: + + +class gazole_b7_ticpe(Variable): + value_type = float + entity = Menage + label = 'Accise (ex-TICPE) prélevée sur le diesel (gazole B7)' + definition_period = YEAR + + def formula_2022(menage, period, parameters): + code_region = menage('code_region', period) + taux_conversion_gazoles = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_gazoles + + # On récupère l'accise en euro/mwh et on le converti en euro/hectolitre + accise_gazole_b7_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.gazoles + accise_gazole_b7_hectolitre = accise_gazole_b7_mwh * taux_conversion_gazoles + + # On récupère la majoration régionale de l'accise en euro/mwh pour toutes les régions, + # Pour chaque cellules du vecteur, on récupère la valeur regionale de la majoration et on la converti en euro/hectolitre + majoration_ticpe_gazole_b7_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + majoration_regionale_ticpe_gazole_b7_hectolitre = np.fromiter( + ( + getattr(majoration_ticpe_gazole_b7_mwh, region_cell, 0) * taux_conversion_gazoles + for region_cell in code_region), + dtype=np.float32) + + # On récupère la valeur maximale de la part de l'accise de base qui revient à la région, qui est déjà en euro/hectolitre + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole.maximum_value_affectation + # Pour chaque cellules du vecteur, on récupère la valeur regionale de l'affectation + affectation_ticpe_gazole_b7_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole + affectation_regionale_ticpe_gazole_b7_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_gazole_b7_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + # On récupère la majoration specifique mobilité de l'Île-de-France en euro/mwh et on le converti en euro/hectolitre + major_mobilites_tipce_gazole_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_gazole + major_mobilites_tipce_gazole_hectolitre = major_mobilites_tipce_gazole_mwh * taux_conversion_gazoles + + accise_gazole_b7_total = accise_gazole_b7_hectolitre + majoration_regionale_ticpe_gazole_b7_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_gazole_b7_hectolitre) + ((code_region == '11') * major_mobilites_tipce_gazole_hectolitre) + nombre_litres_gazole_b7 = menage('nombre_litres_gazole_b7', period) + montant_gazole_b7_ticpe = nombre_litres_gazole_b7 * (accise_gazole_b7_total / 100) + return montant_gazole_b7_ticpe + + def formula_2017(menage, period, parameters): + code_region = menage('code_region', period) + accise_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.gazole + majoration_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + majoration_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(majoration_ticpe_gazole_b7, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole.maximum_value_affectation + affectation_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole + affectation_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(affectation_ticpe_gazole_b7, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_gazole = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_gazole + accise_gazole_b7_total = accise_gazole_b7 + majoration_regionale_ticpe_gazole_b7 - (maximum_value_affectation - affectation_regionale_ticpe_gazole_b7) + ((code_region == '11') * major_mobilites_tipce_gazole) + nombre_litres_gazole_b7 = menage('nombre_litres_gazole_b7', period) + montant_gazole_b7_ticpe = nombre_litres_gazole_b7 * (accise_gazole_b7_total / 100) + return montant_gazole_b7_ticpe + + def formula(menage, period, parameters): + code_region = menage('code_region', period) + accise_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.gazole + majoration_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_gazole + majoration_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(majoration_ticpe_gazole_b7, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole.maximum_value_affectation + affectation_ticpe_gazole_b7 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_gazole + affectation_regionale_ticpe_gazole_b7 = np.fromiter( + ( + getattr(affectation_ticpe_gazole_b7, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_gazole_b7_total = accise_gazole_b7 + majoration_regionale_ticpe_gazole_b7 - (maximum_value_affectation - affectation_regionale_ticpe_gazole_b7) + nombre_litres_gazole_b7 = menage('nombre_litres_gazole_b7', period) + montant_gazole_b7_ticpe = nombre_litres_gazole_b7 * (accise_gazole_b7_total / 100) + return montant_gazole_b7_ticpe + + +class gazole_b10_ticpe(Variable): + value_type = float + entity = Menage + label = 'Accise (ex-TICPE) prélevée sur le diesel (gazole B10)' + definition_period = YEAR + + def formula_2022(menage, period, parameters): + taux_conversion_gazoles = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_gazoles + accise_gazole_b10_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.gazoles + accise_gazole_b10_hectolitre = accise_gazole_b10_mwh * taux_conversion_gazoles + nombre_litres_gazole_b10 = menage('nombre_litres_gazole_b10', period) + montant_gazole_b10_ticpe = nombre_litres_gazole_b10 * (accise_gazole_b10_hectolitre / 100) + return montant_gazole_b10_ticpe + + def formula_2017(menage, period, parameters): + accise_gazole_b10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.gazol_b_10_hectolitre + nombre_litres_gazole_b10 = menage('nombre_litres_gazole_b10', period) + montant_gazole_b10_ticpe = nombre_litres_gazole_b10 * (accise_gazole_b10 / 100) + return montant_gazole_b10_ticpe + + +# TICPE gazole total: + + +class gazole_ticpe_total(Variable): + value_type = float + entity = Menage + label = 'Accise (ex-TICPE) prélevée sur les différents diesels' + definition_period = YEAR + + def formula_2017(menage, period): + gazole_B7_ticpe = menage('gazole_b7_ticpe', period) + gazole_B10_ticpe = menage('gazole_b10_ticpe', period) + gazole_ticpe = (gazole_B7_ticpe + gazole_B10_ticpe) + return gazole_ticpe + + def formula(menage, period): + gazole_B7_ticpe = menage('gazole_b7_ticpe', period) + gazole_ticpe = gazole_B7_ticpe + return gazole_ticpe + + +# TICPE essence: + + +class essence_sp95_e10_ticpe(Variable): # paru au Journal Officiel le 31 janvier 2009, a autorisé sa distribution sur le marché français depuis le 1er avril 2009. + value_type = float + entity = Menage + label = "Accise (ex-TICPE) prélevée sur l'essence sans plomb 95 E10 en station service" + definition_period = YEAR + + def formula_2022(menage, period, parameters): + code_region = menage('code_region', period) + taux_conversion_essence_sp95_e10 = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_essence_sp95_e10 + + accise_super_e10_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.essence_sp95_e10 + accise_super_e10_hectolitre = accise_super_e10_mwh * taux_conversion_essence_sp95_e10 + + major_regionale_ticpe_super_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super_hectolitre = np.fromiter( + ( + getattr(major_regionale_ticpe_super_mwh, region_cell, 0) * taux_conversion_essence_sp95_e10 + for region_cell in code_region), + dtype=np.float32) + + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + major_mobilites_tipce_sp95_e10_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_e10 + major_mobilites_tipce_sp95_e10_hectolitre = major_mobilites_tipce_sp95_e10_mwh * taux_conversion_essence_sp95_e10 + + refraction_corse_tipce_sp95_e10_mwh = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_e10 + refraction_corse_tipce_sp95_e10_hectolitre = refraction_corse_tipce_sp95_e10_mwh * taux_conversion_essence_sp95_e10 + + accise_sp_e10_ticpe = accise_super_e10_hectolitre + majoration_ticpe_super_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10_hectolitre) + ((code_region == '11') * major_mobilites_tipce_sp95_e10_hectolitre) - ((code_region == '94') * refraction_corse_tipce_sp95_e10_hectolitre) + nombre_litres_essence_sp95_e10 = menage('nombre_litres_essence_sp95_e10', period) + montant_sp_e10_ticpe = nombre_litres_essence_sp95_e10 * (accise_sp_e10_ticpe / 100) + return montant_sp_e10_ticpe + + def formula_2019(menage, period, parameters): + code_region = menage('code_region', period) + accise_super_e10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_e10 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_e10 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_e10 + refraction_corse_tipce_sp95_E10 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_e10 + accise_sp_e10_ticpe = accise_super_e10 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10) + ((code_region == '11') * major_mobilites_tipce_sp95_e10) - ((code_region == '94') * refraction_corse_tipce_sp95_E10) + nombre_litres_essence_sp95_e10 = menage('nombre_litres_essence_sp95_e10', period) + montant_sp_e10_ticpe = nombre_litres_essence_sp95_e10 * (accise_sp_e10_ticpe / 100) + return montant_sp_e10_ticpe + + def formula_2017(menage, period, parameters): + code_region = menage('code_region', period) + accise_super_e10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_e10 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_e10 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_e10 + accise_sp_e10_ticpe = accise_super_e10 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10) + ((code_region == '11') * major_mobilites_tipce_sp95_e10) + nombre_litres_essence_sp95_e10 = menage('nombre_litres_essence_sp95_e10', period) + montant_sp_e10_ticpe = nombre_litres_essence_sp95_e10 * (accise_sp_e10_ticpe / 100) + return montant_sp_e10_ticpe + + def formula_2009(menage, period, parameters): + code_region = menage('code_region', period) + accise_super_e10 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_e10 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10.maximum_value_affectation + affectation_ticpe_sp_95_e10 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_e10 + affectation_regionale_ticpe_sp95_e10 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_e10, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_sp_e10_ticpe = accise_super_e10 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_e10) + nombre_litres_essence_sp95_e10 = menage('nombre_litres_essence_sp95_e10', period) + montant_sp_e10_ticpe = nombre_litres_essence_sp95_e10 * (accise_sp_e10_ticpe / 100) + return montant_sp_e10_ticpe + + +class essence_sp95_ticpe(Variable): + value_type = float + entity = Menage + label = "Accise (ex-TICPE) prélevée sur l'essence sans plomb 95 en station service" + definition_period = YEAR + + def formula_2022(menage, period, parameters): + code_region = menage('code_region', period) + taux_conversion_essences = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_essences + + accise_essences_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.essences + accise_essences_hectolitre = accise_essences_mwh * taux_conversion_essences + + major_regionale_ticpe_super_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super_hectolitre = np.fromiter( + ( + getattr(major_regionale_ticpe_super_mwh, region_cell, 0) * taux_conversion_essences + for region_cell in code_region), + dtype=np.float32) + + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp95_sp98_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_sp95_sp98_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + major_mobilites_tipce_sp95_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + major_mobilites_tipce_sp95_hectolitre = major_mobilites_tipce_sp95_mwh * taux_conversion_essences + + refraction_corse_tipce_sp95_mwh = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + refraction_corse_tipce_sp95_hectolitre = refraction_corse_tipce_sp95_mwh * taux_conversion_essences + + accise_sp_95_ticpe = accise_essences_hectolitre + majoration_ticpe_super_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98_hectolitre) + ((code_region == '11') * major_mobilites_tipce_sp95_hectolitre) - ((code_region == '94') * refraction_corse_tipce_sp95_hectolitre) + nombre_litres_essence_sp95 = menage('nombre_litres_essence_sp95', period) + montant_sp95_ticpe = nombre_litres_essence_sp95 * (accise_sp_95_ticpe / 100) + return montant_sp95_ticpe + + def formula_2017(menage, period, parameters): + code_region = menage('code_region', period) + accise_super95 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_95_ticpe = accise_super95 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + ((code_region == '11') * major_mobilites_tipce_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + nombre_litres_essence_sp95 = menage('nombre_litres_essence_sp95', period) + montant_sp95_ticpe = nombre_litres_essence_sp95 * (accise_sp_95_ticpe / 100) + return montant_sp95_ticpe + + def formula_2002(menage, period, parameters): + code_region = menage('code_region', period) + accise_super95 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_95_ticpe = accise_super95 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + nombre_litres_essence_sp95 = menage('nombre_litres_essence_sp95', period) + montant_sp95_ticpe = nombre_litres_essence_sp95 * (accise_sp_95_ticpe / 100) + return montant_sp95_ticpe + + def formula(menage, period, parameters): + code_region = menage('code_region', period) + accise_super95 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_sp_95_ticpe = accise_super95 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + nombre_litres_essence_sp95 = menage('nombre_litres_essence_sp95', period) + montant_sp95_ticpe = nombre_litres_essence_sp95 * (accise_sp_95_ticpe / 100) + return montant_sp95_ticpe + + +class essence_sp98_ticpe(Variable): + value_type = float + entity = Menage + label = "Accise (ex-TICPE) prélevée sur l'essence sans plomb 98 en station service" + definition_period = YEAR + + def formula_2022(menage, period, parameters): + code_region = menage('code_region', period) + taux_conversion_essences = parameters(period).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_essences + + accise_essences_mwh = parameters(period).imposition_indirecte.produits_energetiques.accise_energie_metropole.essences + accise_essences_hectolitre = accise_essences_mwh * taux_conversion_essences + + major_regionale_ticpe_super_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super_hectolitre = np.fromiter( + ( + getattr(major_regionale_ticpe_super_mwh, region_cell, 0) * taux_conversion_essences + for region_cell in code_region), + dtype=np.float32) + + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp95_sp98_hectolitre = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98_hectolitre = np.fromiter( + ( + getattr(affectation_ticpe_sp95_sp98_hectolitre, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + + major_mobilites_tipce_sp98_mwh = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + major_mobilites_tipce_sp98_hectolitre = major_mobilites_tipce_sp98_mwh * taux_conversion_essences + + refraction_corse_tipce_sp98_mwh = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + refraction_corse_tipce_sp98_hectolitre = refraction_corse_tipce_sp98_mwh * taux_conversion_essences + + accise_sp_98_ticpe = accise_essences_hectolitre + majoration_ticpe_super_hectolitre - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98_hectolitre) + ((code_region == '11') * major_mobilites_tipce_sp98_hectolitre) - ((code_region == '94') * refraction_corse_tipce_sp98_hectolitre) + nombre_litres_essence_sp98 = menage('nombre_litres_essence_sp98', period) + montant_sp98_ticpe = nombre_litres_essence_sp98 * (accise_sp_98_ticpe / 100) + return montant_sp98_ticpe + + def formula_2017(menage, period, parameters): + code_region = menage('code_region', period) + accise_super98 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + major_mobilites_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.majoration_ile_de_france_mobilites_ticpe.major_mobilites_tipce_sp95_sp98 + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_98_ticpe = accise_super98 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + ((code_region == '11') * major_mobilites_tipce_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + nombre_litres_essence_sp98 = menage('nombre_litres_essence_sp98', period) + montant_sp98_ticpe = nombre_litres_essence_sp98 * (accise_sp_98_ticpe / 100) + return montant_sp98_ticpe + + def formula_2002(menage, period, parameters): + code_region = menage('code_region', period) + accise_super98 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + refraction_corse_tipce_sp95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_sp95_sp98 + accise_sp_98_ticpe = accise_super98 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) - ((code_region == '94') * refraction_corse_tipce_sp95_sp98) + nombre_litres_essence_sp98 = menage('nombre_litres_essence_sp98', period) + montant_sp98_ticpe = nombre_litres_essence_sp98 * (accise_sp_98_ticpe / 100) + return montant_sp98_ticpe + + def formula(menage, period, parameters): + code_region = menage('code_region', period) + accise_super98 = parameters(period).imposition_indirecte.produits_energetiques.ticpe.super_95_98 + major_regionale_ticpe_super = parameters(period).imposition_indirecte.produits_energetiques.majoration_regionale_ticpe_sp95_sp98_sp95_e10 + majoration_ticpe_super = np.fromiter( + ( + getattr(major_regionale_ticpe_super, region_cell, 0) + for region_cell in code_region), + dtype=np.float32) + maximum_value_affectation = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98.maximum_value_affectation + affectation_ticpe_sp_95_sp98 = parameters(period).imposition_indirecte.produits_energetiques.affectation_regionale_ticpe_sp95_sp98 + affectation_regionale_ticpe_sp95_sp98 = np.fromiter( + ( + getattr(affectation_ticpe_sp_95_sp98, region_cell, maximum_value_affectation) + for region_cell in code_region), + dtype=np.float32) + accise_sp_98_ticpe = accise_super98 + majoration_ticpe_super - (maximum_value_affectation - affectation_regionale_ticpe_sp95_sp98) + nombre_litres_essence_sp95 = menage('nombre_litres_essence_sp98', period) + montant_sp98_ticpe = nombre_litres_essence_sp95 * (accise_sp_98_ticpe / 100) + return montant_sp98_ticpe + + +class essence_super_plombe_ticpe(Variable): + value_type = float + entity = Menage + label = "Accise (ex-TICPE) prélevée sur l'essence super plombé en station service" + definition_period = YEAR + end = '2006-12-31' + + def formula_2002(menage, period, parameters): + code_region = menage('code_region', period) + accise_super_plombe_ticpe = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.super_plombe + refraction_corse_tipce_super_plombe = parameters(period).imposition_indirecte.produits_energetiques.refraction_corse_ticpe.refraction_corse_tipce_super_plombe + nombre_litres_essence_super_plombe = menage('nombre_litres_essence_super_plombe', period) + montant_super_plombe_ticpe = nombre_litres_essence_super_plombe * (accise_super_plombe_ticpe / 100) - ((code_region == '94') * refraction_corse_tipce_super_plombe) + return montant_super_plombe_ticpe + + def formula(menage, period, parameters): + accise_super_plombe_ticpe = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.super_plombe + nombre_litres_essence_super_plombe = menage('nombre_litres_essence_super_plombe', period) + montant_super_plombe_ticpe = nombre_litres_essence_super_plombe * (accise_super_plombe_ticpe / 100) + return montant_super_plombe_ticpe + + +class essence_e85_ticpe(Variable): # Il a été introduit en 2007 sur le marché français. + value_type = float + entity = Menage + label = "Accise (ex-TICPE) prélevée sur l'essence super ethanol 85 en station service" + definition_period = YEAR + + def formula_2022(menage, period, parameters): + accise_e85_mwh = parameters(period.start).imposition_indirecte.produits_energetiques.accise_energie_metropole.superethanol_e85 + taux_conversion_superethanol_e85 = parameters(period.start).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_superethanol_e85 + accise_e85_hectolitre = accise_e85_mwh * taux_conversion_superethanol_e85 + + nombre_litres_essence_e85 = menage('nombre_litres_essence_e85', period) + montant_e85_ticpe = nombre_litres_essence_e85 * (accise_e85_hectolitre / 100) + return montant_e85_ticpe + + def formula_2007(menage, period, parameters): + accise_e85 = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.super_e_85_utilise_comme_carburant_hectolitre + nombre_litres_essence_e85 = menage('nombre_litres_essence_e85', period) + montant_e85_ticpe = nombre_litres_essence_e85 * (accise_e85 / 100) + return montant_e85_ticpe + + +# TICPE essence total: + + +class essence_ticpe_total(Variable): + value_type = float + entity = Menage + label = "Accise (ex-TICPE) prélevée sur les différents essenses" + definition_period = YEAR + + def formula_2009(menage, period): + essence_sp95_ticpe = menage('essence_sp95_ticpe', period) + essence_sp98_ticpe = menage('essence_sp98_ticpe', period) + essence_e85_ticpe = menage('essence_e85_ticpe', period) + essence_sp95_E10_ticpe = menage('essence_sp95_e10_ticpe', period) + essence_ticpe = (essence_sp95_ticpe + essence_sp98_ticpe + essence_e85_ticpe + essence_sp95_E10_ticpe) + return essence_ticpe + + def formula_2007(menage, period): + essence_sp95_ticpe = menage('essence_sp95_ticpe', period) + essence_sp98_ticpe = menage('essence_sp98_ticpe', period) + essence_e85_ticpe = menage('essence_e85_ticpe', period) + essence_ticpe = (essence_sp95_ticpe + essence_sp98_ticpe + essence_e85_ticpe) + return essence_ticpe + + def formula_1990(menage, period): + essence_sp95_ticpe = menage('essence_sp95_ticpe', period) + essence_sp98_ticpe = menage('essence_sp98_ticpe', period) + super_plombe_ticpe = menage('essence_super_plombe_ticpe', period) + essence_ticpe = (essence_sp95_ticpe + essence_sp98_ticpe + super_plombe_ticpe) + return essence_ticpe + + +# TICPE combustibles liquides: + + +class gpl_carburant_ticpe(Variable): + value_type = float + entity = Menage + label = "Accise (ex-TICPE) prélevée sur le GPL carburant en station service" + definition_period = YEAR + + def formula_2022(menage, period, parameters): + accise_gpl_carburant_mwh = parameters(period.start).imposition_indirecte.produits_energetiques.accise_energie_metropole.gpl_carburant + taux_conversion_gpl_carburant = parameters(period.start).imposition_indirecte.produits_energetiques.taux_conversion_euro_par_mwh_a_euro_par_hectolitre.taux_conversion_gpl_carburant + accise_gpl_carburant_hectolitre = accise_gpl_carburant_mwh * taux_conversion_gpl_carburant + nombre_litres_gpl_carburant = menage('nombre_litres_gpl_carburant', period) + combustibles_liquides_ticpe = nombre_litres_gpl_carburant * (accise_gpl_carburant_hectolitre / 100) + + return combustibles_liquides_ticpe + + def formula(menage, period, parameters): + accise_combustibles_liquides = parameters(period.start).imposition_indirecte.produits_energetiques.ticpe.autres_gaz_petrole_liquefies_utilises_comme_carburants_autres_100kg + coefficient_conversion_kg_vers_litre = (1 / 0.525) + nombre_litres_gpl_carburant = menage('nombre_litres_gpl_carburant', period) + combustibles_liquides_ticpe = nombre_litres_gpl_carburant * (accise_combustibles_liquides / 100) * coefficient_conversion_kg_vers_litre + return combustibles_liquides_ticpe + + +# total taxes energies (ticpe diesel + ticpe essence + ticpe GPL-c) + + +class ticpe_carburant_total(Variable): + value_type = float + entity = Menage + label = 'Accise (ex-TICPE) prélevée sur les carburants en station service' + definition_period = YEAR + + def formula(menage, period): + essence_ticpe_total = menage('essence_ticpe_total', period) + gazole_ticpe_total = menage('gazole_ticpe_total', period) + gpl_carburant_ticpe = menage('gpl_carburant_ticpe', period) + ticpe_total_carburant = gazole_ticpe_total + essence_ticpe_total + gpl_carburant_ticpe + return ticpe_total_carburant diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/totaux.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/totaux.py index 0daaa315..dc6e14ab 100644 --- a/openfisca_france_indirect_taxation/variables/taxes_indirectes/totaux.py +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/totaux.py @@ -7,7 +7,7 @@ class taxes_indirectes_total(YearlyVariable): value_type = float entity = Menage - label = "Montant total de taxes indirectes payées" + label = 'Montant total de taxes indirectes payées' def formula(menage, period): tva_total = menage('tva_total', period) @@ -21,7 +21,7 @@ def formula(menage, period): class taxes_indirectes_total_hors_tva(YearlyVariable): value_type = float entity = Menage - label = "Montant total de taxes indirectes payées sans compter la TVA" + label = 'Montant total de taxes indirectes payées sans compter la TVA' def formula(menage, period): vin_droit_d_accise = menage('vin_droit_d_accise', period) diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/tva.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/tva.py index 148d67e8..57b6a1a0 100644 --- a/openfisca_france_indirect_taxation/variables/taxes_indirectes/tva.py +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/tva.py @@ -4,19 +4,19 @@ from openfisca_france_indirect_taxation.variables.base import * # noqa analysis:ignore -class depenses_tva_exonere(YearlyVariable): - value_type = float - entity = Menage - label = "Dépenses TTC des biens n'acquittant pas de TVA" +# class depenses_tva_exonere(YearlyVariable): +# value_type = float +# entity = Menage +# label = "Dépenses TTC des biens n'acquittant pas de TVA" - def formula(menage, period): - return menage('depenses_', period) +# def formula(menage, period): +# return menage('depenses_', period) class depenses_tva_taux_intermediaire(YearlyVariable): value_type = float entity = Menage - label = "Dépenses TTC des biens acquittant la TVA à taux intermediaire" + label = 'Dépenses TTC des biens acquittant la TVA à taux intermediaire' def formula_2012(menage, period, parameters): depenses_ht_tva_taux_intermediaire = menage('depenses_ht_tva_taux_intermediaire', period) @@ -27,7 +27,7 @@ def formula_2012(menage, period, parameters): class depenses_tva_taux_plein(YearlyVariable): value_type = float entity = Menage - label = "Dépenses TTC des biens acquittant la TVA acquitée à taux plein" + label = 'Dépenses TTC des biens acquittant la TVA acquitée à taux plein' def formula(menage, period, parameters): depenses_ht_tva_taux_plein = menage('depenses_ht_tva_taux_plein', period) @@ -38,7 +38,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_reduit(YearlyVariable): value_type = float entity = Menage - label = "Dépenses TTC des biens acquittant la TVA acquitée à taux reduit" + label = 'Dépenses TTC des biens acquittant la TVA acquitée à taux reduit' def formula(menage, period, parameters): depenses_ht_tva_taux_reduit = menage('depenses_ht_tva_taux_reduit', period) @@ -49,7 +49,7 @@ def formula(menage, period, parameters): class depenses_tva_taux_super_reduit(YearlyVariable): value_type = float entity = Menage - label = "Dépenses TTC des biens acquittant à taux super reduit" + label = 'Dépenses TTC des biens acquittant à taux super reduit' def formula(menage, period, parameters): depenses_ht_tva_taux_super_reduit = menage('depenses_ht_tva_taux_super_reduit', period) @@ -60,7 +60,7 @@ def formula(menage, period, parameters): class tva_taux_intermediaire(YearlyVariable): value_type = float entity = Menage - label = "Montant de la TVA acquitée à taux intermediaire" + label = 'Montant de la TVA acquitée à taux intermediaire' def formula_2012(menage, period, parameters): depenses_ht_tva_taux_intermediaire = menage('depenses_ht_tva_taux_intermediaire', period) @@ -71,7 +71,7 @@ def formula_2012(menage, period, parameters): class tva_taux_plein(YearlyVariable): value_type = float entity = Menage - label = "Montant de la TVA acquitée à taux plein" + label = 'Montant de la TVA acquitée à taux plein' def formula(menage, period, parameters): depenses_ht_tva_taux_plein = menage('depenses_ht_tva_taux_plein', period) @@ -82,7 +82,7 @@ def formula(menage, period, parameters): class tva_taux_reduit(YearlyVariable): value_type = float entity = Menage - label = "Montant de la TVA acquitée à taux reduit" + label = 'Montant de la TVA acquitée à taux reduit' def formula(menage, period, parameters): depenses_ht_tva_taux_reduit = menage('depenses_ht_tva_taux_reduit', period) @@ -93,7 +93,7 @@ def formula(menage, period, parameters): class tva_taux_super_reduit(YearlyVariable): value_type = float entity = Menage - label = "Montant de la TVA acquitée à taux super reduit" + label = 'Montant de la TVA acquitée à taux super reduit' def formula(menage, period, parameters): depenses_ht_tva_taux_super_reduit = menage('depenses_ht_tva_taux_super_reduit', period) @@ -104,7 +104,7 @@ def formula(menage, period, parameters): class tva_total(YearlyVariable): value_type = float entity = Menage - label = "Montant de la TVA acquitée" + label = 'Montant de la TVA acquitée' def formula(menage, period): tva_taux_super_reduit = menage('tva_taux_super_reduit', period) diff --git a/openfisca_france_indirect_taxation/variables/taxes_indirectes/tva_carburants.py b/openfisca_france_indirect_taxation/variables/taxes_indirectes/tva_carburants.py new file mode 100644 index 00000000..b4ada30d --- /dev/null +++ b/openfisca_france_indirect_taxation/variables/taxes_indirectes/tva_carburants.py @@ -0,0 +1,434 @@ +from openfisca_france_indirect_taxation.variables.base import Menage, Variable, YEAR + +# montant TVA sur different type de gazole: + + +# TVA sur gazole B7: + +class tva_sur_ht_gazole_b7(Variable): + value_type = float + entity = Menage + label = 'TVA sur la part hors taxe du diesel (gazole B7)' + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + depense_gazole_b7_ht = menage('depense_gazole_b7_ht', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = depense_gazole_b7_ht * taux_plein_tva + return tva + + +class tva_sur_ticpe_gazole_b7(Variable): + value_type = float + entity = Menage + label = "TVA sur la part de l'accise (ex-TICPE) du diesel (gazole B7)" + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + gazole_b7_ticpe = menage('gazole_b7_ticpe', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = gazole_b7_ticpe * taux_plein_tva + return tva + + +class tva_sur_gazole_b7(Variable): + value_type = float + entity = Menage + label = 'Taxes sur la valeur ajoutée (TVA) sur le diesel (gazole B7)' + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + tva_sur_ht_gazole_b7 = menage('tva_sur_ht_gazole_b7', period) + tva_sur_ticpe_gazole_b7 = menage('tva_sur_ticpe_gazole_b7', period) + tva = tva_sur_ht_gazole_b7 + tva_sur_ticpe_gazole_b7 + return tva + + +# TVA sur gazole B10 + +class tva_sur_ht_gazole_b10(Variable): + value_type = float + entity = Menage + label = "TVA sur la part de l'accise (ex-TICPE) du diesel (gazole B10)" + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + depense_gazole_b10_ht = menage('depense_gazole_b10_ht', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = depense_gazole_b10_ht * taux_plein_tva + return tva + + +class tva_sur_ticpe_gazole_b10(Variable): + value_type = float + entity = Menage + label = 'TVA sur la part TICPE de (ex-TICPE) du diesel (gazole B10)' + definition_period = YEAR + default_value = 0 + + def formula(menage, period, parameters): + gazole_b10_ticpe = menage('gazole_b10_ticpe', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = gazole_b10_ticpe * taux_plein_tva + return tva + + +class tva_sur_gazole_b10(Variable): + value_type = float + entity = Menage + label = 'Taxes sur la valeur ajoutée (TVA) sur le diesel (gazole B10)' + definition_period = YEAR + default_value = 0 + + def formula(menage, period): + tva_sur_ht_gazole_b10 = menage('tva_sur_ht_gazole_b10', period) + tva_sur_ticpe_gazole_b10 = menage('tva_sur_ticpe_gazole_b10', period) + tva = tva_sur_ht_gazole_b10 + tva_sur_ticpe_gazole_b10 + return tva + + +# montant TVA sur gazole total: + + +class tva_sur_gazole_total(Variable): + value_type = float + entity = Menage + label = 'Taxes sur la valeur ajoutée (TVA) sur les diesels' + definition_period = YEAR + default_value = 0 + + def formula_2017(menage, period): + tva_sur_gazole_b7 = menage('tva_sur_gazole_b7', period) + tva_sur_gazole_b10 = menage('tva_sur_gazole_b10', period) + tva_sur_gazole_total = (tva_sur_gazole_b7 + tva_sur_gazole_b10) + return tva_sur_gazole_total + + def formula(menage, period): + tva_sur_gazole_b7 = menage('tva_sur_gazole_b7', period) + tva_sur_gazole_total = tva_sur_gazole_b7 + return tva_sur_gazole_total + + +# montant TVA sur different type d'essence: + + +# montant TVA sur essence SP95 E10 + + +class tva_sur_ht_essence_sp95_e10(Variable): + value_type = float + entity = Menage + label = "TVA sur la part hors taxe de l'essence sans plomb 95 E10" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + depense_essence_sp95_e10_ht = menage('depense_essence_sp95_e10_ht', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = depense_essence_sp95_e10_ht * taux_plein_tva + return tva + + +class tva_sur_ticpe_essence_sp95_e10(Variable): + value_type = float + entity = Menage + label = "TVA sur la part de l'accise (ex-TICPE) de l'essence sans plomb 95 E10" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + essence_sp95_e10_ticpe = menage('essence_sp95_e10_ticpe', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = essence_sp95_e10_ticpe * taux_plein_tva + return tva + + +class tva_sur_essence_sp95_e10(Variable): + value_type = float + entity = Menage + label = "Taxes sur la valeur ajoutée (TVA) sur l'essence sans plomb 95 E10" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period): + tva_sur_ht_essence_sp95_e10 = menage('tva_sur_ht_essence_sp95_e10', period) + tva_sur_ticpe_essence_sp95_e10 = menage('tva_sur_ticpe_essence_sp95_e10', period) + tva = tva_sur_ht_essence_sp95_e10 + tva_sur_ticpe_essence_sp95_e10 + return tva + + +# montant TVA sur essence SP95 + +class tva_sur_ht_essence_sp95(Variable): + value_type = float + entity = Menage + label = "TVA sur la part hors taxe de l'essence sans plomb 95" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + depense_essence_sp95_ht = menage('depense_essence_sp95_ht', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = depense_essence_sp95_ht * taux_plein_tva + return tva + + +class tva_sur_ticpe_essence_sp95(Variable): + value_type = float + entity = Menage + label = "TVA sur la part de l'accise (ex-TICPE) de l'essence sans plomb 95" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + essence_sp95_ticpe = menage('essence_sp95_ticpe', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = essence_sp95_ticpe * taux_plein_tva + return tva + + +class tva_sur_essence_sp95(Variable): + value_type = float + entity = Menage + label = "Taxes sur la valeur ajoutée (TVA) sur l'essence sans plomb 95" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period): + tva_sur_ht_essence_sp95 = menage('tva_sur_ht_essence_sp95', period) + tva_sur_ticpe_essence_sp95 = menage('tva_sur_ticpe_essence_sp95', period) + tva = tva_sur_ht_essence_sp95 + tva_sur_ticpe_essence_sp95 + return tva + + +# montant TVA sur essence SP98: + + +class tva_sur_ht_essence_sp98(Variable): + value_type = float + entity = Menage + label = "TVA sur la part hors taxe de l'essence sans plomb 98" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + depense_essence_sp98_ht = menage('depense_essence_sp98_ht', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = depense_essence_sp98_ht * taux_plein_tva + return tva + + +class tva_sur_ticpe_essence_sp98(Variable): + value_type = float + entity = Menage + label = "TVA sur la part de l'accise (ex-TICPE) de l'essence sans plomb 98" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + essence_sp98_ticpe = menage('essence_sp98_ticpe', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = essence_sp98_ticpe * taux_plein_tva + return tva + + +class tva_sur_essence_sp98(Variable): + value_type = float + entity = Menage + label = "Taxes sur la valeur ajoutée (TVA) sur l'essence sans plomb 98" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period): + tva_sur_ht_essence_sp98 = menage('tva_sur_ht_essence_sp98', period) + tva_sur_ticpe_essence_sp98 = menage('tva_sur_ticpe_essence_sp98', period) + tva = tva_sur_ht_essence_sp98 + tva_sur_ticpe_essence_sp98 + return tva + + +# montant TVA sur essence super plombé: + + +class tva_sur_ht_essence_super_plombe(Variable): + value_type = float + entity = Menage + label = "TVA sur la part hors taxe de l'essence super plombé" + definition_period = YEAR + default_value = 0 + end = '2006-12-31' + + def formula(menage, period, parameters): + depense_essence_super_plombe_ht = menage('depense_essence_super_plombe_ht', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = depense_essence_super_plombe_ht * taux_plein_tva + return tva + + +class tva_sur_ticpe_essence_super_plombe(Variable): + value_type = float + entity = Menage + label = "TVA sur la part de l'accise (ex-TICPE) de l'essence super plombé" + definition_period = YEAR + default_value = 0 + end = '2006-12-31' + + def formula(menage, period, parameters): + essence_super_plombe_ticpe = menage('essence_super_plombe_ticpe', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = essence_super_plombe_ticpe * taux_plein_tva + return tva + + +class tva_sur_essence_super_plombe(Variable): + value_type = float + entity = Menage + label = "Taxes sur la valeur ajoutée (TVA) sur l'essence super plombé" + definition_period = YEAR + default_value = 0 + end = '2006-12-31' + + def formula(menage, period): + tva_sur_ht_essence_super_plombe = menage('tva_sur_ht_essence_super_plombe', period) + tva_sur_ticpe_essence_super_plombe = menage('tva_sur_ticpe_essence_super_plombe', period) + tva = tva_sur_ht_essence_super_plombe + tva_sur_ticpe_essence_super_plombe + return tva + + +# montant TVA sur essence E85: + +class tva_sur_ht_essence_e85(Variable): + value_type = float + entity = Menage + label = "TVA sur la part hors taxe de l'essence super ethanol 85" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + depense_essence_e85_ht = menage('depense_essence_e85_ht', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = depense_essence_e85_ht * taux_plein_tva + return tva + + +class tva_sur_ticpe_essence_e85(Variable): + value_type = float + entity = Menage + label = "TVA sur la part de l'accise (ex-TICPE) de l'essence super ethanol 85" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + essence_e85_ticpe = menage('essence_e85_ticpe', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = essence_e85_ticpe * taux_plein_tva + return tva + + +class tva_sur_essence_e85(Variable): + value_type = float + entity = Menage + label = "Taxes sur la valeur ajoutée (TVA) sur l'essence super ethanol 85" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period): + tva_sur_ht_essence_e85 = menage('tva_sur_ht_essence_e85', period) + tva_sur_ticpe_essence_e85 = menage('tva_sur_ticpe_essence_e85', period) + tva = tva_sur_ht_essence_e85 + tva_sur_ticpe_essence_e85 + return tva + + +# montant TVA total sur l'essence + +class tva_sur_essence_total(Variable): + value_type = float + entity = Menage + label = "Taxes sur la valeur ajoutée (TVA) sur les essences" + definition_period = YEAR + + def formula_2009(menage, period): + tva_sur_essence_sp95 = menage('tva_sur_essence_sp95', period) + tva_sur_essence_sp98 = menage('tva_sur_essence_sp98', period) + tva_sur_essence_e85 = menage('tva_sur_essence_e85', period) + tva_sur_essence_sp95_e10 = menage('tva_sur_essence_sp95_e10', period) + tva_sur_essence_total = (tva_sur_essence_sp95 + tva_sur_essence_sp98 + tva_sur_essence_e85 + tva_sur_essence_sp95_e10) + return tva_sur_essence_total + + def formula_2007(menage, period): + tva_sur_essence_sp95 = menage('tva_sur_essence_sp95', period) + tva_sur_essence_sp98 = menage('tva_sur_essence_sp98', period) + tva_sur_essence_e85 = menage('tva_sur_essence_e85', period) + tva_sur_essence_total = (tva_sur_essence_sp95 + tva_sur_essence_sp98 + tva_sur_essence_e85) + return tva_sur_essence_total + + def formula_1990(menage, period): + tva_sur_essence_sp95 = menage('tva_sur_essence_sp95', period) + tva_sur_essence_sp98 = menage('tva_sur_essence_sp98', period) + tva_sur_essence_super_plombe = menage('tva_sur_essence_super_plombe', period) + tva_sur_essence_total = (tva_sur_essence_sp95 + tva_sur_essence_sp98 + tva_sur_essence_super_plombe) + return tva_sur_essence_total + + +# montant TVA sur le gaz de pétrole liquéfié carburant: + + +class tva_sur_ht_gpl_carburant(Variable): + value_type = float + entity = Menage + label = "TVA sur la part hors taxe du GPL carburant" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + depense_gpl_carburant_ht = menage('depense_gpl_carburant_ht', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = depense_gpl_carburant_ht * taux_plein_tva + return tva + + +class tva_sur_ticpe_gpl_carburant(Variable): + value_type = float + entity = Menage + label = "TVA sur la part de l'accise (ex-TICPE) du GPL carburant" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period, parameters): + gpl_carburant_ticpe = menage('gpl_carburant_ticpe', period) + taux_plein_tva = parameters(period).imposition_indirecte.tva.taux_de_tva.taux_normal + tva = gpl_carburant_ticpe * taux_plein_tva + return tva + + +class tva_sur_gpl_carburant(Variable): + value_type = float + entity = Menage + label = "Taxes sur la valeur ajoutée (TVA) sur le GPL carburant" + definition_period = YEAR + default_value = 0 + + def formula_2009(menage, period): + tva_sur_ht_gpl_carburant = menage('tva_sur_ht_gpl_carburant', period) + tva_sur_ticpe_gpl_carburant = menage('tva_sur_ticpe_gpl_carburant', period) + tva = tva_sur_ht_gpl_carburant + tva_sur_ticpe_gpl_carburant + return tva + + +# montant carburant total: + +class tva_sur_carburant_total(Variable): + value_type = float + entity = Menage + label = 'Taxes sur la valeur ajoutée (TVA) sur les carburants' + definition_period = YEAR + + def formula(menage, period): + tva_sur_essence_total = menage('tva_sur_essence_total', period) + tva_sur_gazole_total = menage('tva_sur_gazole_total', period) + tva_sur_gpl_carburant = menage('tva_sur_gpl_carburant', period) + tva_sur_carburant_total = tva_sur_gazole_total + tva_sur_essence_total + tva_sur_gpl_carburant + return tva_sur_carburant_total diff --git a/openfisca_france_indirect_taxation/variables/vehicules/vehicules_menages.py b/openfisca_france_indirect_taxation/variables/vehicules/vehicules_menages.py index 195c0dd3..f6b84a40 100644 --- a/openfisca_france_indirect_taxation/variables/vehicules/vehicules_menages.py +++ b/openfisca_france_indirect_taxation/variables/vehicules/vehicules_menages.py @@ -7,22 +7,28 @@ class pourcentage_vehicule_essence(YearlyVariable): value_type = float entity = Menage - label = "Pourcentage de véhicules essence dans le ménage" + label = 'Pourcentage de véhicules essence dans le ménage' class veh_diesel(YearlyVariable): value_type = int entity = Menage - label = "Nombre de véhicules diesel dans le ménage" + label = 'Nombre de véhicules diesel dans le ménage' class veh_essence(YearlyVariable): value_type = int entity = Menage - label = "Nombre de véhicules essence dans le ménage" + label = 'Nombre de véhicules essence dans le ménage' + + +class veh_gpl(YearlyVariable): + value_type = int + entity = Menage + label = 'Nombre de véhicules essence dans le ménage' class veh_tot(YearlyVariable): value_type = int entity = Menage - label = "Nombre de véhicules total dans le ménage" + label = 'Nombre de véhicules total dans le ménage' diff --git a/openfisca_france_indirect_taxation/yearly_variable.py b/openfisca_france_indirect_taxation/yearly_variable.py index 0979f93f..93439880 100644 --- a/openfisca_france_indirect_taxation/yearly_variable.py +++ b/openfisca_france_indirect_taxation/yearly_variable.py @@ -13,13 +13,13 @@ def __init__(self, baseline_variable = None): except AttributeError: pass else: - print(("deleting class baseline_variable for {}".format(self.__class__.__name__))) + print(('deleting class baseline_variable for {}'.format(self.__class__.__name__))) try: delattr(self, 'baseline_variable') except AttributeError: pass else: - print(("deleting instance baseline_variable for {}".format(self.__class__.__name__))) + print(('deleting instance baseline_variable for {}'.format(self.__class__.__name__))) Variable.__init__(self, baseline_variable = baseline_variable) diff --git a/runner/openfisca_survey_manager_config.ini b/runner/openfisca_survey_manager_config.ini index 660a5bc9..4e94a4c4 100644 --- a/runner/openfisca_survey_manager_config.ini +++ b/runner/openfisca_survey_manager_config.ini @@ -2,8 +2,8 @@ # pour qu'il fonctionne avec oepnfisca-france-indirect-taxation # sur le runner piloté nomics.world [collections] -collections_directory = /home/ipp/data/openfisca-france-indirect-taxation/data_collections +collections_directory = /mnt/data-out/openfisca-france-indirect-taxation/data_collections [data] -output_directory = /home/ipp/data/openfisca-france-indirect-taxation/data_collections/output -tmp_directory = /root/ci-files/data_collections/tmp +output_directory = /mnt/data-out/openfisca-france-indirect-taxation/data_collections/output +tmp_directory = /mnt/data-out/openfisca-france-indirect-taxation/data_collections/tmp diff --git a/runner/openfisca_survey_manager_raw_data.ini b/runner/openfisca_survey_manager_raw_data.ini index 92b03be6..77a0d9c9 100644 --- a/runner/openfisca_survey_manager_raw_data.ini +++ b/runner/openfisca_survey_manager_raw_data.ini @@ -1,21 +1,21 @@ # Template du fichier raw_data.ini de openfisca-survey-manager # pour qu'il fonctionne avec oepnfisca-france-indirect-taxation # sur le runner piloté par nomics.world -[aliss] -2011 = /home/ipp/data/aliss +; [aliss] +; 2011 = /mnt/data-in/aliss [budget_des_familles] -2000 = /home/ipp/data/budget_des_familles/2000/stata -2005 = /home/ipp/data/budget_des_familles/2005/stata -2011 = /home/ipp/data/budget_des_familles/2011/stata -2017 = /home/ipp/data/budget_des_familles/2017/csv +2000 = /mnt/data-in/budget_familles/2000/stata +2005 = /mnt/data-in/budget_familles/2005/stata +2011 = /mnt/data-in/budget_familles/2011/stata +2017 = /mnt/data-in/budget_familles/2017/csv [enquete_logement] -2006 = /home/ipp/data/enquete_logement/2006/stata -2013 = /home/ipp/data/enquete_logement/2013/stata +2006 = /mnt/data-in/enquete_logement/2006/stata +2013 = /mnt/data-in/enquete_logement/2013/stata [enquete_transports] -2008 = /home/ipp/data/enquete_transports/2008/stata +2008 = /mnt/data-in/enquete_transports/2008/stata [erfs_fpr] -2013 = /home/ipp/data/erfs_fpr/2013/stata +2013 = /mnt/data-in/erfs-fpr/2013/stata diff --git a/setup.py b/setup.py index cb68c136..c0373225 100755 --- a/setup.py +++ b/setup.py @@ -1,19 +1,22 @@ #! /usr/bin/env python -"""France specific indirect taxation model for OpenFisca -- a versatile microsimulation free software.""" +'''France specific indirect taxation model for OpenFisca -- a versatile microsimulation free software.''' -from setuptools import setup, find_packages +from setuptools import setup, find_namespace_packages -classifiers = """\ +classifiers = ''' \ Development Status :: 3 - Alpha License :: OSI Approved :: GNU Affero General Public License v3 Operating System :: POSIX Programming Language :: Python +Programming Language :: Python :: 3.9 +Programming Language :: Python :: 3.10 +Programming Language :: Python :: 3.11 Topic :: Scientific/Engineering :: Information Analysis -""" +''' doc_lines = __doc__.split('\n') @@ -35,25 +38,26 @@ }, extras_require = dict( dev = [ - 'autopep8 >= 1.4.0, < 1.6.0', - 'flake8 >= 3.9.0, < 4.0.0', - 'flake8-bugbear >= 19.3.0, < 20.0.0', - 'ipdb >=0.13.9, < 1.0.0', - 'matplotlib <= 3.4.3, < 4.0.0', - 'nbconvert >= 5.5.0, < 6.0.0', - "pytest < 6.0", - 'ruamel.yaml >= 0.17.16, < 1.0.0', - 'seaborn >= 0.11.2, < 1.0.0', + 'autopep8 >= 2.0.2, < 3.0', + 'flake8 >= 6.0.0, < 7.0', + 'flake8-bugbear >= 23.3.12, < 24.0', + 'ipdb >= 0.13.13, < 0.14.0', + 'matplotlib >= 3.7.1, < 4.0', + 'nbconvert >= 7.2.10, < 8.0', + 'OpenFisca-Survey-Manager == 1.1.9', + 'pytest >= 7.2.2, < 8.0', + 'ruamel.yaml >= 0.17.21, < 0.18.0', + 'seaborn >= 0.12.2, < 0.13.0', + 'statsmodels >= 0.13.5, < 0.14.0', + 'xlrd >= 2.0.1, < 3.0', ], ), include_package_data = True, # Will read MANIFEST.in install_requires = [ - 'Babel >= 2.9.1, < 3.0.0', - 'OpenFisca-Core >= 35.8.0, < 36.0', - 'OpenFisca-Survey-Manager >= 0.46.11, < 1.0', - 'python-slugify >= 5.0.2, < 6.0.0', - 'xlrd >= 2.0.1, < 3.0.0', - "statsmodels >= 0.10.1, < 1.0", + 'numexpr <= 2.8.4', + 'OpenFisca-Core >= 41, < 42', + 'pandas >= 2.0.3, < 3.0', + 'python-slugify >= 8.0.1, < 9.0', ], - packages = find_packages(), + packages = find_namespace_packages(), )